diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..58461f2 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.ipynb_checkpoints \ No newline at end of file diff --git a/move.py b/move.py new file mode 100644 index 0000000..7e8072e --- /dev/null +++ b/move.py @@ -0,0 +1,7 @@ +import os +import shutil + +for file in os.listdir("/home/husain/Public/Data_Project/Pandas-Data-Science-Tasks"): + if os.path.isdir(file) == False and file.split(".")[1] == "csv": + shutil.move(f"/home/husain/Public/Data_Project/Pandas-Data-Science-Tasks/{file}", f"/home/husain/Public/Data_Project/Pandas-Data-Science-Tasks/sales_data/{file}") + continue \ No newline at end of file diff --git a/sales_analyze.ipynb b/sales_analyze.ipynb new file mode 100644 index 0000000..23d01fb --- /dev/null +++ b/sales_analyze.ipynb @@ -0,0 +1,688 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 81, + "id": "1408c2b5-9161-4005-8d24-f4f1a7a3e120", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "import os" + ] + }, + { + "cell_type": "markdown", + "id": "e72f47f1-8b70-4319-8c29-1f8ed19b7957", + "metadata": { + "jp-MarkdownHeadingCollapsed": true + }, + "source": [ + "#### Task 1: Merge 12 Months data into single CSV file" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "f8b3c6a1-af1a-47c5-9f75-51601e7d90d4", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv(\"./sales_data/Sales_April_2019.csv\")\n", + "\n", + "files = [file for file in os.listdir(\"./sales_data\")]\n", + "\n", + "all_months_data = pd.DataFrame()\n", + "\n", + "for file in files:\n", + " df = pd.read_csv(f\"./sales_data/{file}\")\n", + " all_months_data = pd.concat([all_months_data, df])\n", + "\n", + "all_months_data.to_csv(\"./sales_data/all_data.csv\", index=False)" + ] + }, + { + "cell_type": "markdown", + "id": "49e410e4-c637-4d55-b717-debb97a61e45", + "metadata": {}, + "source": [ + "### Clean up the data" + ] + }, + { + "cell_type": "markdown", + "id": "f3d2a39c-8da4-4e6d-8ebf-4439590d0d51", + "metadata": {}, + "source": [ + "#### Drop NA values" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "id": "54a74624-250b-46e6-88e0-1fcc1f118af3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Order IDProductQuantity OrderedPrice EachOrder DatePurchase AddressMonth
\n", + "
" + ], + "text/plain": [ + "Empty DataFrame\n", + "Columns: [Order ID, Product, Quantity Ordered, Price Each, Order Date, Purchase Address, Month]\n", + "Index: []" + ] + }, + "execution_count": 50, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "nan_df = all_data[all_data.isna().any(axis=1)]\n", + "\n", + "all_data = all_data.dropna(how='all')\n", + "\n", + "nan_df.head()" + ] + }, + { + "cell_type": "markdown", + "id": "d68d8e46-aa62-4d87-aa93-98ce37c4b0b4", + "metadata": {}, + "source": [ + "#### Drop the 'Or' value" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "id": "be6cb22d-b498-485c-8871-c7bc3761c2d0", + "metadata": {}, + "outputs": [], + "source": [ + "all_data = all_data[all_data['Order Date'].str[0:2] != 'Or']" + ] + }, + { + "cell_type": "markdown", + "id": "ab162b0b-952d-493b-9c6a-8addff883614", + "metadata": {}, + "source": [ + "#### Change the data types columns" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "id": "933160be-a332-4f53-b3e4-156089b773bd", + "metadata": {}, + "outputs": [], + "source": [ + "all_data['Quantity Ordered'] = all_data['Quantity Ordered'].astype('int64')\n", + "all_data['Price Each'] = all_data['Price Each'].astype('float64')" + ] + }, + { + "cell_type": "markdown", + "id": "5dbe8e04-32e9-42a7-abd1-3952e4469c93", + "metadata": {}, + "source": [ + "#### Task 2: Add months column" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "id": "cc3c920d-f43b-4e4f-9662-430b4a02dfa8", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Order IDProductQuantity OrderedPrice EachOrder DatePurchase AddressMonth
0197962Lightning Charging Cable214.9505/18/19 08:5210 2nd St, San Francisco, CA 940165
119796327in FHD Monitor1149.9905/30/19 20:01403 14th St, Los Angeles, CA 900015
2197964Lightning Charging Cable114.9505/09/19 13:08797 Sunset St, Seattle, WA 981015
3197965Wired Headphones111.9905/10/19 15:13238 Maple St, Atlanta, GA 303015
4197966Lightning Charging Cable114.9505/03/19 18:49677 Johnson St, New York City, NY 100015
\n", + "
" + ], + "text/plain": [ + " Order ID Product Quantity Ordered Price Each \\\n", + "0 197962 Lightning Charging Cable 2 14.95 \n", + "1 197963 27in FHD Monitor 1 149.99 \n", + "2 197964 Lightning Charging Cable 1 14.95 \n", + "3 197965 Wired Headphones 1 11.99 \n", + "4 197966 Lightning Charging Cable 1 14.95 \n", + "\n", + " Order Date Purchase Address Month \n", + "0 05/18/19 08:52 10 2nd St, San Francisco, CA 94016 5 \n", + "1 05/30/19 20:01 403 14th St, Los Angeles, CA 90001 5 \n", + "2 05/09/19 13:08 797 Sunset St, Seattle, WA 98101 5 \n", + "3 05/10/19 15:13 238 Maple St, Atlanta, GA 30301 5 \n", + "4 05/03/19 18:49 677 Johnson St, New York City, NY 10001 5 " + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "all_data['Month'] = all_data['Order Date'].str[0:2]\n", + "all_data['Month'] = all_data['Month'].astype('int32')\n", + "\n", + "all_data.head()" + ] + }, + { + "cell_type": "markdown", + "id": "7488f041-e0b0-4db9-b517-371d15d05877", + "metadata": {}, + "source": [ + "#### Task 3: Add sales column" + ] + }, + { + "cell_type": "code", + "execution_count": 70, + "id": "ce90ed4a-b115-4d76-8b8a-a2e89393952d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Order IDProductQuantity OrderedPrice EachOrder DatePurchase AddressMonthSales
0197962Lightning Charging Cable214.9505/18/19 08:5210 2nd St, San Francisco, CA 94016529.90
119796327in FHD Monitor1149.9905/30/19 20:01403 14th St, Los Angeles, CA 900015149.99
2197964Lightning Charging Cable114.9505/09/19 13:08797 Sunset St, Seattle, WA 98101514.95
3197965Wired Headphones111.9905/10/19 15:13238 Maple St, Atlanta, GA 30301511.99
4197966Lightning Charging Cable114.9505/03/19 18:49677 Johnson St, New York City, NY 10001514.95
\n", + "
" + ], + "text/plain": [ + " Order ID Product Quantity Ordered Price Each \\\n", + "0 197962 Lightning Charging Cable 2 14.95 \n", + "1 197963 27in FHD Monitor 1 149.99 \n", + "2 197964 Lightning Charging Cable 1 14.95 \n", + "3 197965 Wired Headphones 1 11.99 \n", + "4 197966 Lightning Charging Cable 1 14.95 \n", + "\n", + " Order Date Purchase Address Month Sales \n", + "0 05/18/19 08:52 10 2nd St, San Francisco, CA 94016 5 29.90 \n", + "1 05/30/19 20:01 403 14th St, Los Angeles, CA 90001 5 149.99 \n", + "2 05/09/19 13:08 797 Sunset St, Seattle, WA 98101 5 14.95 \n", + "3 05/10/19 15:13 238 Maple St, Atlanta, GA 30301 5 11.99 \n", + "4 05/03/19 18:49 677 Johnson St, New York City, NY 10001 5 14.95 " + ] + }, + "execution_count": 70, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "all_data['Sales'] = all_data['Quantity Ordered'] * all_data['Price Each']\n", + "\n", + "all_data.head()" + ] + }, + { + "cell_type": "markdown", + "id": "f556e55f-5d84-4874-ac2f-59434f6e9f58", + "metadata": {}, + "source": [ + "#### Task 4: Add city column" + ] + }, + { + "cell_type": "code", + "execution_count": 119, + "id": "959fbd48-f9c1-42f3-8d0e-33bed368e184", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Order IDProductQuantity OrderedPrice EachOrder DatePurchase AddressMonthSalesCity
0197962Lightning Charging Cable214.9505/18/19 08:5210 2nd St, San Francisco, CA 94016529.90San Francisco
119796327in FHD Monitor1149.9905/30/19 20:01403 14th St, Los Angeles, CA 900015149.99Los Angeles
2197964Lightning Charging Cable114.9505/09/19 13:08797 Sunset St, Seattle, WA 98101514.95Seattle
3197965Wired Headphones111.9905/10/19 15:13238 Maple St, Atlanta, GA 30301511.99Atlanta
4197966Lightning Charging Cable114.9505/03/19 18:49677 Johnson St, New York City, NY 10001514.95New York City
\n", + "
" + ], + "text/plain": [ + " Order ID Product Quantity Ordered Price Each \\\n", + "0 197962 Lightning Charging Cable 2 14.95 \n", + "1 197963 27in FHD Monitor 1 149.99 \n", + "2 197964 Lightning Charging Cable 1 14.95 \n", + "3 197965 Wired Headphones 1 11.99 \n", + "4 197966 Lightning Charging Cable 1 14.95 \n", + "\n", + " Order Date Purchase Address Month Sales \\\n", + "0 05/18/19 08:52 10 2nd St, San Francisco, CA 94016 5 29.90 \n", + "1 05/30/19 20:01 403 14th St, Los Angeles, CA 90001 5 149.99 \n", + "2 05/09/19 13:08 797 Sunset St, Seattle, WA 98101 5 14.95 \n", + "3 05/10/19 15:13 238 Maple St, Atlanta, GA 30301 5 11.99 \n", + "4 05/03/19 18:49 677 Johnson St, New York City, NY 10001 5 14.95 \n", + "\n", + " City \n", + "0 San Francisco \n", + "1 Los Angeles \n", + "2 Seattle \n", + "3 Atlanta \n", + "4 New York City " + ] + }, + "execution_count": 119, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "all_data['City'] = all_data['Purchase Address'].apply(lambda x: x.split(',')[1])\n", + "\n", + "all_data.head()" + ] + }, + { + "cell_type": "markdown", + "id": "55b7c218-09ee-4e7f-9d9c-757eff42cf10", + "metadata": { + "jp-MarkdownHeadingCollapsed": true + }, + "source": [ + "### Question 1: What was the best month for sales? How much was earned that month?" + ] + }, + { + "cell_type": "code", + "execution_count": 91, + "id": "d3e86c38-e412-4f99-883c-763cd8000c47", + "metadata": {}, + "outputs": [], + "source": [ + "results = all_data.groupby('Month').sum()" + ] + }, + { + "cell_type": "code", + "execution_count": 106, + "id": "ee11fbb7-2929-4ec6-a7f0-75406d1dc014", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA9wAAAIhCAYAAAC8K7JuAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAA7BElEQVR4nO3dd5RV9b028O8JZehVaVIVBQRBFEwQjCiKlEs0iS0QRTDX3AQVJFEhFiBRwALRSEKCGopGMQVNxKCiFI2+KIpEosQKyMXCVZDuCDP7/SOXuRkpzshszsz4+ax11pr92/vs/ZyfsJyHXU4mSZIkAAAAgBL1lWwHAAAAgPJI4QYAAIAUKNwAAACQAoUbAAAAUqBwAwAAQAoUbgAAAEiBwg0AAAApULgBAAAgBQo3AAAApEDhBoAUzZgxIzKZTKHXoYceGj179oy5c+ce9DwPP/xwDBgwIBo2bBiVK1eOevXqRa9eveJ3v/td7Ny5MyIiVq9eHZlMJm699daDkunZZ5+NsWPHxscff3xQjgcAB4vCDQAHwfTp0+P//b//F88++2xMmzYtKlSoEAMGDIiHH374oBw/SZIYMmRIfOMb34j8/PyYPHlyPPHEEzFz5szo1KlT/PCHP4xf/epXByXLZz377LMxbtw4hRuAcqditgMAwJdBhw4dokuXLgXLffr0ibp168b9998fAwYMKJFj7NixI6pWrbrXdbfcckvMmDEjxo0bF9dff32hdQMGDIirrroq3nzzzRLJUVQ7duyIKlWqHNRjAsDB5Aw3AGRBlSpVonLlylGpUqVC4+PGjYuvfvWrUa9evahVq1Ycd9xxcffdd0eSJIW2a9myZfzHf/xHzJkzJzp37hxVqlSJcePG7fVYO3fujJtuuinatm0b11133V63adSoUfTo0WOP8cmTJ0erVq2iRo0a0a1bt1iyZEmh9S+88EKcf/750bJly6hatWq0bNkyvvOd78SaNWsKbbf70vrHH388hg4dGoceemhUq1YtRo8eHVdeeWVERLRq1argsvtFixbtd/4AoCxwhhsADoK8vLzYtWtXJEkSH3zwQdxyyy2xbdu2GDhwYKHtVq9eHd///vejefPmERGxZMmSuOyyy2LdunV7nJletmxZrFy5Mq699tpo1apVVK9efa/HfuGFF2LDhg3xn//5n5HJZIqc+Ze//GW0bds2brvttoiIuO6666Jfv36xatWqqF27dkHeNm3axPnnnx/16tWL9957L6ZOnRpdu3aNV199NQ455JBC+xw6dGj0798/7rnnnti2bVt06dIltm/fHnfccUfMmTMnGjduHBERRx99dJFzAkBppXADwEHwta99rdByTk5OTJkyJc4444xC49OnTy/4OT8/P3r27BlJksTtt98e1113XaHCvH79+nj11VfjqKOO2u+x33nnnYj41xnk4qhZs2bMnTs3KlSoEBERTZo0iRNOOCHmzZsX559/fkREnH322XH22WcXvCcvLy/+4z/+Ixo2bBj33XdfXH755YX22atXr/jNb35TaGz3Py507tw5WrZsWayMAFCalZtLyp966qkYMGBANGnSJDKZTDz00EPF3keSJHHrrbfGUUcdFTk5OdGsWbMYP358yYcF4Etn1qxZsXTp0li6dGnMmzcvBg8eHMOGDYspU6YU2m7BggVx2mmnRe3ataNChQpRqVKluP766+Ojjz6K9evXF9q2Y8eOn1u2D0T//v0Lyvbu40VEocvFt27dGldffXW0bt06KlasGBUrVowaNWrEtm3bYuXKlXvs89vf/nZqeQGgtCk3Z7i3bdsWnTp1iiFDhnzh/5kPHz48Hn/88bj11lvjmGOOiU2bNsWHH35YwkkB+DJq167dHg9NW7NmTVx11VXx3e9+N+rUqRPPP/989O7dO3r27Bl33nlnNG3aNCpXrhwPPfRQ3HjjjbFjx45C+9x9+fXn2X0GedWqVcXKXL9+/ULLOTk5ERGFcgwcODCefPLJuO6666Jr165Rq1atyGQy0a9fvz3yFiczAJQH5aZw9+3bN/r27bvP9Z9++mlce+218bvf/S4+/vjj6NChQ9x0003Rs2fPiIhYuXJlTJ06Nf7xj39EmzZtDlJqAL7MOnbsGI899li8/vrrccIJJ8Ts2bOjUqVKMXfu3EJP797XVVtFvR+7S5cuUa9evfjzn/8cEyZMKNZ93PuzadOmmDt3bowZMyZGjRpVMJ6bmxsbNmw4oMwAUB6Um0vKP8+QIUPimWeeidmzZ8fLL78c55xzTvTp0yfeeOONiIh4+OGH4/DDD4+5c+dGq1atomXLlvG9731vn78wAMCBWr58eUREHHrooRHxrzJasWLFQpdx79ixI+65554DOk6lSpXi6quvjn/+85/xs5/9bK/brF+/Pp555pli7TeTyUSSJAVnvne76667Ii8vr8j72duZcwAoD8rNGe79eeutt+L++++P//7v/44mTZpERMSPf/zjePTRR2P69Okxfvz4ePvtt2PNmjXxhz/8IWbNmhV5eXlxxRVXxNlnnx0LFizI8icAoKz7xz/+Ebt27YqIiI8++ijmzJkT8+fPj29+85sFDzPr379/TJ48OQYOHBiXXHJJfPTRR3HrrbfuUWi/iCuvvDJWrlwZY8aMieeffz4GDhwYzZo1i02bNsVTTz0V06ZNi3HjxkX37t2LvM9atWrF17/+9bjlllvikEMOiZYtW8bixYvj7rvvjjp16hR5P8ccc0xERNx+++0xePDgqFSpUrRp0yZq1qxZ3I8JAKXKl6JwL1u2LJIk2ePBMrm5uQX3p+Xn50dubm7MmjWrYLu77747jj/++HjttddcZg7AARkyZEjBz7Vr145WrVrF5MmT44c//GHB+Kmnnhq//e1v46abbooBAwbEYYcdFv/5n/8ZDRo0iIsvvviAjp/JZGL69OnxzW9+M6ZNmxYjRoyIjRs3Rs2aNePYY4+Nm266qVDGorrvvvti+PDhcdVVV8WuXbuie/fuMX/+/Ojfv3+R99GzZ88YPXp0zJw5M+68887Iz8+PhQsXFtz2BQBlVSZJkiTbIUpaJpOJBx98MM4666yIiHjggQdi0KBB8corrxS6TC8iokaNGtGoUaMYM2ZMjB8/Pnbu3FmwbseOHVGtWrV4/PHH4/TTTz+YHwEAAIAy7ktxhrtz586Rl5cX69evj5NOOmmv23Tv3j127doVb731VhxxxBEREfH6669HRESLFi0OWlYAAADKh3Jzhnvr1q3x5ptvRsS/CvbkyZPjlFNOiXr16kXz5s3ju9/9bjzzzDMxadKk6Ny5c3z44YexYMGCOOaYY6Jfv36Rn58fXbt2jRo1asRtt90W+fn5MWzYsKhVq1Y8/vjjWf50AAAAlDXlpnAvWrQoTjnllD3GBw8eHDNmzIidO3fGDTfcELNmzYp169ZF/fr1o1u3bjFu3LiCh7W8++67cdlll8Xjjz8e1atXj759+8akSZOiXr16B/vjAAAAUMaVm8INAAAApcmX5nu4AQAA4GBSuAEAACAFZfop5fn5+fHuu+9GzZo1I5PJZDsOAAAA5VySJLFly5Zo0qRJfOUr+z+HXaYL97vvvhvNmjXLdgwAAAC+ZNauXRtNmzbd7zZlunDXrFkzIv71QWvVqpXlNAAAAJR3mzdvjmbNmhX00f0p04V792XktWrVUrgBAAA4aIpyW7OHpgEAAEAKFG4AAABIgcINAAAAKVC4AQAAIAUKNwAAAKRA4QYAAIAUKNwAAACQAoUbAAAAUqBwAwAAQAoUbgAAAEiBwg0AAAApULgBAAAgBQo3AAAApEDhBgAAgBQo3AAAAJAChRsAAABSoHADAABAChRuAAAASIHCDQAAACmomO0AAAAAfL6Wox7JdoTUrZ7YP9sRSpQz3AAAAJAChRsAAABSoHADAABAChRuAAAASIHCDQAAAClQuAEAACAFCjcAAACkQOEGAACAFCjcAAAAkAKFGwAAAFKgcAMAAEAKFG4AAABIgcINAAAAKVC4AQAAIAUKNwAAAKRA4QYAAIAUKNwAAACQAoUbAAAAUqBwAwAAQAoUbgAAAEiBwg0AAAApULgBAAAgBQo3AAAApEDhBgAAgBQo3AAAAJAChRsAAABSoHADAABAChRuAAAASIHCDQAAAClQuAEAACAFCjcAAACkQOEGAACAFCjcAAAAkAKFGwAAAFKgcAMAAEAKFG4AAABIgcINAAAAKVC4AQAAIAUKNwAAAKRA4QYAAIAUKNwAAACQglJTuCdMmBCZTCZGjBiR7SgAAABwwEpF4V66dGlMmzYtOnbsmO0oAAAAUCKyXri3bt0agwYNijvvvDPq1q2b7TgAAABQIrJeuIcNGxb9+/eP00477XO3zc3Njc2bNxd6AQAAQGlUMZsHnz17dixbtiyWLl1apO0nTJgQ48aNSzkVAAAAHLisneFeu3ZtDB8+PO69996oUqVKkd4zevTo2LRpU8Fr7dq1KacEAACALyZrZ7hffPHFWL9+fRx//PEFY3l5efHUU0/FlClTIjc3NypUqFDoPTk5OZGTk3OwowIAAECxZa1w9+rVK1asWFFobMiQIdG2bdu4+uqr9yjbAAAAUJZkrXDXrFkzOnToUGisevXqUb9+/T3GAQAAoKzJ+lPKAQAAoDzK6lPKP2vRokXZjgAAAAAlwhluAAAASIHCDQAAAClQuAEAACAFCjcAAACkQOEGAACAFCjcAAAAkAKFGwAAAFKgcAMAAEAKFG4AAABIgcINAAAAKVC4AQAAIAUKNwAAAKRA4QYAAIAUKNwAAACQAoUbAAAAUqBwAwAAQAoUbgAAAEiBwg0AAAApULgBAAAgBQo3AAAApEDhBgAAgBQo3AAAAJAChRsAAABSoHADAABAChRuAAAASIHCDQAAAClQuAEAACAFCjcAAACkQOEGAACAFCjcAAAAkIKK2Q7wZdFy1CPZjnBQrJ7YP9sRAAAASgVnuAEAACAFCjcAAACkQOEGAACAFCjcAAAAkAKFGwAAAFKgcAMAAEAKFG4AAABIgcINAAAAKVC4AQAAIAUKNwAAAKRA4QYAAIAUKNwAAACQAoUbAAAAUqBwAwAAQAoUbgAAAEiBwg0AAAApULgBAAAgBQo3AAAApEDhBgAAgBRUzHYAAACAiIiWox7JdoTUrZ7YP9sROIic4QYAAIAUKNwAAACQAoUbAAAAUqBwAwAAQAoUbgAAAEiBwg0AAAApULgBAAAgBQo3AAAApEDhBgAAgBQo3AAAAJAChRsAAABSoHADAABAChRuAAAASIHCDQAAAClQuAEAACAFCjcAAACkQOEGAACAFCjcAAAAkAKFGwAAAFKgcAMAAEAKFG4AAABIgcINAAAAKVC4AQAAIAUKNwAAAKSgYrYDAADAl0XLUY9kO8JBsXpi/2xHgFLBGW4AAABIgcINAAAAKVC4AQAAIAUKNwAAAKRA4QYAAIAUKNwAAACQAoUbAAAAUqBwAwAAQAoUbgAAAEiBwg0AAAApULgBAAAgBQo3AAAApKDige5g5cqVsWTJkujcuXMce+yxxXrv1KlTY+rUqbF69eqIiGjfvn1cf/310bdv3wONBQBAlrQc9Ui2I6Ru9cT+2Y4AlAHFKtw//elPo2rVqnHllVdGRMTChQujT58+UbNmzdi0aVPMmDEjBg0aVOT9NW3aNCZOnBitW7eOiIiZM2fGmWeeGS+99FK0b9++ONEAAACgVCnWJeV//OMf4+ijjy5YvvHGG+Pyyy+PDz/8MKZMmRLjx48v1sEHDBgQ/fr1i6OOOiqOOuqouPHGG6NGjRqxZMmSYu0HAAAASpsineGeNWtWJEkSq1evjuXLl8dHH30USZLEM888EyeddFLMmjUr8vPz4+23345Zs2ZFRMSFF15YrCB5eXnxhz/8IbZt2xbdunXb6za5ubmRm5tbsLx58+ZiHQMAAAAOliIV7hYtWkREROXKlaNhw4bRokWLWL58edSqVStOOeWUSJIkcnNzI5PJRMuWLSNJkiIHWLFiRXTr1i0++eSTqFGjRjz44IOFzqL/uwkTJsS4ceOKvG8AAADIliJdUn7yySfHySefHMcdd1w88sgjUbly5Xj00UejX79+8fWvfz1OPvnkaNy4cTRr1qxguajatGkTy5cvjyVLlsQPfvCDGDx4cLz66qt73Xb06NGxadOmgtfatWuLfBwAAAA4mIr10LRbbrklzjzzzOjevXu0bds2pk2bVrBuxowZ0adPn2IHqFy5csFD07p06RJLly6N22+/PX7zm9/ssW1OTk7k5OQU+xgAsDeepAwApKlYhbtTp06xevXq+Oijj6J+/fqF1v34xz+OWrVqHXCg3ZenAwAAQFn2hb6H+7NlOyKicePGxd7PT37yk+jbt280a9YstmzZErNnz45FixbFo48++kViAQAAQKnxhQp3Sfnggw/iggsuiPfeey9q164dHTt2jEcffTROP/30bMYCAACAA5bVwn333Xdn8/AAAACQmiI9pRwAAAAoHoUbAAAAUlDkS8rz8/MjPz8/Klb8v7d88MEH8etf/zq2bdsW3/jGN6JHjx6phAQAAICypsiF++KLL45KlSoVfPf2li1bomvXrvHJJ59E48aN4+c//3n8+c9/jn79+qUWFgAAAMqKIl9S/swzz8TZZ59dsDxr1qzYtWtXvPHGG/H3v/89Ro4cGbfccksqIQEAAKCsKXLhXrduXRx55JEFy08++WR8+9vfjtq1a0dExODBg+OVV14p+YQAAABQBhW5cFepUiV27NhRsLxkyZL42te+Vmj91q1bSzYdAAAAlFFFLtydOnWKe+65JyIinn766fjggw/i1FNPLVj/1ltvRZMmTUo+IQAAAJRBRX5o2nXXXRf9+vWL3//+9/Hee+/FRRddFI0bNy5Y/+CDD0b37t1TCQkAAABlTZEL9ymnnBIvvPBCPPHEE9GoUaM455xzCq0/9thj44QTTijxgAAAAFAWFblwR0S0b98+2rdvv9d1l1xySYkEAgAAgPKgyIV71qxZex2vXbt2tGnTJtq2bVtioQAAAKCsK3LhHj58+F7Ht27dGvn5+dGvX7+47777ombNmiUWDgAAAMqqIj+lfOPGjXt95ebmxpIlS+Kdd96JcePGpZkVAAAAyoxi3cO9N1/5yleia9euMWnSpBg2bFjceuutJZEL+DctRz2S7QipWz2xf7YjAABAiSryGe7P07p16/jv//7vktodAAAAlGklVrjfeuutaNq0aUntDgAAAMq0A76kPEmSeOmll+JHP/pRDBgwoCQyAQAAQJlX5MJdt27dyGQye4xv3bo18vLyok+fPjF27NiSzAYAAABlVpEL92233bbX8Vq1akXbtm2jXbt2JZUJAAAAyrwiF+7BgwenmQMAKEW+DN+OEOEbEgBIV4k9NA0AAAD4Pwo3AAAApEDhBgAAgBQo3AAAAJAChRsAAABSUOSnlO+2bdu2mDhxYjz55JOxfv36yM/PL7T+7bffLrFwAAAAUFYVu3B/73vfi8WLF8cFF1wQjRs3jkwmk0YuAAAAKNOKXbjnzZsXjzzySHTv3j2NPAAAAFAuFPse7rp160a9evXSyAIAAADlRrEL989+9rO4/vrrY/v27WnkAQAAgHKh2JeUT5o0Kd56661o2LBhtGzZMipVqlRo/bJly0osHABAadRy1CPZjpC61RP7ZzsCQJlX7MJ91llnpRADAAAAypdiF+4xY8akkQMAAADKlWIX7t1efPHFWLlyZWQymTj66KOjc+fOJZkLAAAAyrRiF+7169fH+eefH4sWLYo6depEkiSxadOmOOWUU2L27Nlx6KGHppETAAAAypRiP6X8sssui82bN8crr7wSGzZsiI0bN8Y//vGP2Lx5c1x++eVpZAQAAIAyp9hnuB999NF44oknol27dgVjRx99dPzyl7+M3r17l2g4AAAAKKuKfYY7Pz9/j68Ci4ioVKlS5Ofnl0goAAAAKOuKXbhPPfXUGD58eLz77rsFY+vWrYsrrrgievXqVaLhAAAAoKwqduGeMmVKbNmyJVq2bBlHHHFEtG7dOlq1ahVbtmyJO+64I42MAAAAUOYU+x7uZs2axbJly2L+/Pnxz3/+M5IkiaOPPjpOO+20NPIBAABAmfSFv4f79NNPj9NPP70ks/Al1nLUI9mOkLrVE/tnOwIAAHAQFalw/+IXv4hLLrkkqlSpEr/4xS/2u62vBgMAAIAiFu6f//znMWjQoKhSpUr8/Oc/3+d2mUxG4QYAAIAoYuFetWrVXn8GAAAA9q7YTykHAAAAPl+RznCPHDmyyDucPHnyFw4DAAAA5UWRCvdLL71UpJ1lMpkDCgMAAADlRZEK98KFC9POAQAAAOWKe7gBAAAgBUU6w/2tb32ryDucM2fOFw4DAAAA5UWRCnft2rXTzgEAAADlSpEK9/Tp09POAQAAAOWKe7gBAAAgBUU6w33cccfFk08+GXXr1o3OnTvv9+u/li1bVmLhAAAAoKwqUuE+88wzIycnJyIizjrrrDTzAAAAQLlQpMI9ZsyYvf4MAAAA7J17uAEAACAFRTrDHRFx+OGHF2m7t99++wuHAQAAgPKiyIV79erV0aJFixg4cGA0aNAgzUwAAABQ5hW5cM+ePTumT58ekydPjr59+8bQoUOjX79+8ZWvuCodAAAAPqvIbfncc8+NefPmxZtvvhnHH398XHHFFdG0adMYNWpUvPHGG2lmBAAAgDKn2KenDzvssLjmmmvijTfeiPvvvz+ee+65aNu2bWzcuDGNfAAAAFAmFfmS8n/3ySefxB//+Mf47W9/G88991ycc845Ua1atZLOBgAAAGVWsQr3c889F3fffXc88MADccQRR8TQoUPjT3/6U9StWzetfAAAAFAmFblwt2/fPtavXx8DBw6Mp59+Ojp27JhmLgAAACjTily4V65cGdWrV49Zs2bFPffcs8/tNmzYUCLBAAAAoCwrcuGePn16mjkAAACgXCly4R48eHCaOQAAAKBcKfbXggEAAACfT+EGAACAFCjcAAAAkAKFGwAAAFJQ5IemAZRGLUc9ku0IB8Xqif2zHQEAgGIqduHOy8uLGTNmxJNPPhnr16+P/Pz8QusXLFhQYuEAAACgrCp24R4+fHjMmDEj+vfvHx06dIhMJpNGLgAAACjTil24Z8+eHb///e+jX79+aeQBAACAcqHYD02rXLlytG7dOo0sAAAAUG4Uu3D/6Ec/ittvvz2SJEkjDwAAAJQLxb6k/G9/+1ssXLgw5s2bF+3bt49KlSoVWj9nzpwSCwcAAABlVbELd506deKb3/xmGlkAAACg3Ch24Z4+fXoaOQAAAKBcKfY93AAAAMDnK9IZ7uOOOy6efPLJqFu3bnTu3Hm/3729bNmyEgsHAAAAZVWRCveZZ54ZOTk5ERFx1llnpZkHAAAAyoUiFe4xY8bs9WcAAABg77J6D/eECROia9euUbNmzWjQoEGcddZZ8dprr2UzEgAAAJSIrBbuxYsXx7Bhw2LJkiUxf/782LVrV/Tu3Tu2bduWzVgAAABwwIr9tWAl6dFHHy20PH369GjQoEG8+OKL8fWvfz1LqQAAAODAZbVwf9amTZsiIqJevXp7XZ+bmxu5ubkFy5s3bz4ouQAAAKC4DviS8ry8vFi+fHls3LjxgPaTJEmMHDkyevToER06dNjrNhMmTIjatWsXvJo1a3ZAxwQAAIC0FLtwjxgxIu6+++6I+FfZPvnkk+O4446LZs2axaJFi75wkEsvvTRefvnluP/++/e5zejRo2PTpk0Fr7Vr137h4wEAAECail24//jHP0anTp0iIuLhhx+OVatWxT//+c8YMWJEXHPNNV8oxGWXXRZ/+ctfYuHChdG0adN9bpeTkxO1atUq9AIAAIDSqNiF+8MPP4xGjRpFRMRf//rXOOecc+Koo46Kiy++OFasWFGsfSVJEpdeemnMmTMnFixYEK1atSpuHAAAACiVil24GzZsGK+++mrk5eXFo48+GqeddlpERGzfvj0qVKhQrH0NGzYs7r333rjvvvuiZs2a8f7778f7778fO3bsKG4sAAAAKFWK/ZTyIUOGxLnnnhuNGzeOTCYTp59+ekREPPfcc9G2bdti7Wvq1KkREdGzZ89C49OnT4+LLrqouNEAAACg1Ch24R47dmx06NAh1q5dG+ecc07k5ORERESFChVi1KhRxdpXkiTFPTwAAACUCV/oe7jPPvvsiIj45JNPCsYGDx5cMokAAACgHCj2Pdx5eXnxs5/9LA477LCoUaNGvP322xERcd111xV8XRgAAAB82RW7cN94440xY8aMuPnmm6Ny5coF48ccc0zcddddJRoOAAAAyqpiF+5Zs2bFtGnTYtCgQYWeSt6xY8f45z//WaLhAAAAoKwqduFet25dtG7deo/x/Pz82LlzZ4mEAgAAgLKu2IW7ffv28fTTT+8x/oc//CE6d+5cIqEAAACgrCv2U8rHjBkTF1xwQaxbty7y8/Njzpw58dprr8WsWbNi7ty5aWQEAACAMqfYZ7gHDBgQDzzwQPz1r3+NTCYT119/faxcuTIefvjhOP3009PICAAAAGXOF/oe7jPOOCPOOOOMks4CAAAA5Uaxz3ADAAAAn69IZ7jr1q0bmUymSDvcsGHDAQUCAACA8qBIhfu2225LOQYAAACUL0Uq3IMHD047BwAAAJQrX+ihabvt2LEjdu7cWWisVq1aBxQIAAAAyoNiPzRt27Ztcemll0aDBg2iRo0aUbdu3UIvAAAA4AsU7quuuioWLFgQv/rVryInJyfuuuuuGDduXDRp0iRmzZqVRkYAAAAoc4p9SfnDDz8cs2bNip49e8bQoUPjpJNOitatW0eLFi3id7/7XQwaNCiNnAAAAFCmFPsM94YNG6JVq1YR8a/7tXd/DViPHj3iqaeeKtl0AAAAUEYVu3AffvjhsXr16oiIOProo+P3v/99RPzrzHedOnVKMhsAAACUWcUu3EOGDIm///3vERExevTognu5r7jiirjyyitLPCAAAACURcW+h/uKK64o+PmUU06JlStXxosvvhhHHHFEdOrUqUTDAQAAQFl1QN/DHRHRokWLaNGiRUlkAQAAgHKjyJeUP/fcczFv3rxCY7NmzYpWrVpFgwYN4pJLLonc3NwSDwgAAABlUZEL99ixY+Pll18uWF6xYkVcfPHFcdppp8WoUaPi4YcfjgkTJqQSEgAAAMqaIhfu5cuXR69evQqWZ8+eHV/96lfjzjvvjJEjR8YvfvGLgieWAwAAwJddkQv3xo0bo2HDhgXLixcvjj59+hQsd+3aNdauXVuy6QAAAKCMKnLhbtiwYaxatSoiIj799NNYtmxZdOvWrWD9li1bolKlSiWfEAAAAMqgIhfuPn36xKhRo+Lpp5+O0aNHR7Vq1eKkk04qWP/yyy/HEUcckUpIAAAAKGuK/LVgN9xwQ3zrW9+Kk08+OWrUqBEzZ86MypUrF6z/7W9/G717904lJAAAAJQ1RS7chx56aDz99NOxadOmqFGjRlSoUKHQ+j/84Q9Ro0aNEg8IwBfXctQj2Y6QutUT+2c7AgDAXhW5cO9Wu3btvY7Xq1fvgMMAAABAeVHke7gBAACAolO4AQAAIAUKNwAAAKRA4QYAAIAUKNwAAACQAoUbAAAAUqBwAwAAQAoUbgAAAEiBwg0AAAApULgBAAAgBQo3AAAApEDhBgAAgBQo3AAAAJAChRsAAABSoHADAABAChRuAAAASIHCDQAAAClQuAEAACAFCjcAAACkQOEGAACAFCjcAAAAkAKFGwAAAFKgcAMAAEAKFG4AAABIgcINAAAAKVC4AQAAIAUKNwAAAKRA4QYAAIAUKNwAAACQAoUbAAAAUqBwAwAAQAoUbgAAAEiBwg0AAAApULgBAAAgBQo3AAAApEDhBgAAgBQo3AAAAJAChRsAAABSoHADAABAChRuAAAASIHCDQAAAClQuAEAACAFCjcAAACkQOEGAACAFCjcAAAAkAKFGwAAAFKgcAMAAEAKFG4AAABIgcINAAAAKVC4AQAAIAUKNwAAAKRA4QYAAIAUKNwAAACQAoUbAAAAUqBwAwAAQAoUbgAAAEhBVgv3U089FQMGDIgmTZpEJpOJhx56KJtxAAAAoMRktXBv27YtOnXqFFOmTMlmDAAAAChxFbN58L59+0bfvn2zGQEAAABSkdXCXVy5ubmRm5tbsLx58+YspgEAAIB9K1MPTZswYULUrl274NWsWbNsRwIAAIC9KlOFe/To0bFp06aC19q1a7MdCQAAAPaqTF1SnpOTEzk5OdmOAQAAAJ+rTJ3hBgAAgLIiq2e4t27dGm+++WbB8qpVq2L58uVRr169aN68eRaTAQAAwIHJauF+4YUX4pRTTilYHjlyZEREDB48OGbMmJGlVAAAAHDgslq4e/bsGUmSZDMCAAAApMI93AAAAJAChRsAAABSoHADAABAChRuAAAASIHCDQAAAClQuAEAACAFCjcAAACkQOEGAACAFCjcAAAAkAKFGwAAAFKgcAMAAEAKFG4AAABIgcINAAAAKVC4AQAAIAUKNwAAAKRA4QYAAIAUKNwAAACQAoUbAAAAUqBwAwAAQAoUbgAAAEiBwg0AAAApULgBAAAgBQo3AAAApEDhBgAAgBQo3AAAAJAChRsAAABSoHADAABAChRuAAAASIHCDQAAAClQuAEAACAFCjcAAACkQOEGAACAFCjcAAAAkAKFGwAAAFKgcAMAAEAKFG4AAABIgcINAAAAKVC4AQAAIAUKNwAAAKRA4QYAAIAUKNwAAACQAoUbAAAAUqBwAwAAQAoUbgAAAEiBwg0AAAApULgBAAAgBQo3AAAApEDhBgAAgBQo3AAAAJAChRsAAABSoHADAABAChRuAAAASIHCDQAAAClQuAEAACAFCjcAAACkQOEGAACAFCjcAAAAkAKFGwAAAFKgcAMAAEAKFG4AAABIgcINAAAAKVC4AQAAIAUKNwAAAKRA4QYAAIAUKNwAAACQAoUbAAAAUqBwAwAAQAoUbgAAAEiBwg0AAAApULgBAAAgBQo3AAAApEDhBgAAgBQo3AAAAJAChRsAAABSoHADAABAChRuAAAASIHCDQAAAClQuAEAACAFCjcAAACkQOEGAACAFCjcAAAAkAKFGwAAAFKgcAMAAEAKFG4AAABIgcINAAAAKVC4AQAAIAUKNwAAAKRA4QYAAIAUZL1w/+pXv4pWrVpFlSpV4vjjj4+nn34625EAAADggGW1cD/wwAMxYsSIuOaaa+Kll16Kk046Kfr27RvvvPNONmMBAADAActq4Z48eXJcfPHF8b3vfS/atWsXt912WzRr1iymTp2azVgAAABwwCpm68CffvppvPjiizFq1KhC4717945nn312r+/Jzc2N3NzcguVNmzZFRMTmzZvTC1pC8nO3ZzvCQfFF/1t8GebnQP6cmp99+zLMTYT52R9/t/bPn539Mz/75u/W/vmzs3/mZ9/83dq/stDtdmdMkuRzt80kRdkqBe+++24cdthh8cwzz8SJJ55YMD5+/PiYOXNmvPbaa3u8Z+zYsTFu3LiDGRMAAAD2sHbt2mjatOl+t8naGe7dMplMoeUkSfYY22306NExcuTIguX8/PzYsGFD1K9ff5/v+bLavHlzNGvWLNauXRu1atXKdpxSx/zsm7nZP/Ozf+Zn38zN/pmf/TM/+2Zu9s/87J/52Tdzs29JksSWLVuiSZMmn7tt1gr3IYccEhUqVIj333+/0Pj69eujYcOGe31PTk5O5OTkFBqrU6dOWhHLhVq1avkLsh/mZ9/Mzf6Zn/0zP/tmbvbP/Oyf+dk3c7N/5mf/zM++mZu9q127dpG2y9pD0ypXrhzHH398zJ8/v9D4/PnzC11iDgAAAGVRVi8pHzlyZFxwwQXRpUuX6NatW0ybNi3eeeed+K//+q9sxgIAAIADltXCfd5558VHH30UP/3pT+O9996LDh06xF//+tdo0aJFNmOVCzk5OTFmzJg9LsHnX8zPvpmb/TM/+2d+9s3c7J/52T/zs2/mZv/Mz/6Zn30zNyUja08pBwAAgPIsa/dwAwAAQHmmcAMAAEAKFG4AAABIgcINAAAAKVC4y5mnnnoqBgwYEE2aNIlMJhMPPfRQtiOVGhMmTIiuXbtGzZo1o0GDBnHWWWfFa6+9lu1YpcbUqVOjY8eOUatWrahVq1Z069Yt5s2bl+1YpdKECRMik8nEiBEjsh2lVBg7dmxkMplCr0aNGmU7Vqmybt26+O53vxv169ePatWqxbHHHhsvvvhitmOVCi1bttzjz08mk4lhw4ZlO1rW7dq1K6699tpo1apVVK1aNQ4//PD46U9/Gvn5+dmOVmps2bIlRowYES1atIiqVavGiSeeGEuXLs12rKz4vN8BkySJsWPHRpMmTaJq1arRs2fPeOWVV7IT9iD7vLmZM2dOnHHGGXHIIYdEJpOJ5cuXZyVntuxvfnbu3BlXX311HHPMMVG9evVo0qRJXHjhhfHuu+9mL3AZo3CXM9u2bYtOnTrFlClTsh2l1Fm8eHEMGzYslixZEvPnz49du3ZF7969Y9u2bdmOVio0bdo0Jk6cGC+88EK88MILceqpp8aZZ575pfmfcVEtXbo0pk2bFh07dsx2lFKlffv28d577xW8VqxYke1IpcbGjRuje/fuUalSpZg3b168+uqrMWnSpKhTp062o5UKS5cuLfRnZ/78+RERcc4552Q5WfbddNNN8etf/zqmTJkSK1eujJtvvjluueWWuOOOO7IdrdT43ve+F/Pnz4977rknVqxYEb17947TTjst1q1bl+1oB93n/Q548803x+TJk2PKlCmxdOnSaNSoUZx++umxZcuWg5z04Pu8udm2bVt07949Jk6ceJCTlQ77m5/t27fHsmXL4rrrrotly5bFnDlz4vXXX49vfOMbWUhaRiWUWxGRPPjgg9mOUWqtX78+iYhk8eLF2Y5SatWtWze56667sh2j1NiyZUty5JFHJvPnz09OPvnkZPjw4dmOVCqMGTMm6dSpU7ZjlFpXX3110qNHj2zHKDOGDx+eHHHEEUl+fn62o2Rd//79k6FDhxYa+9a3vpV897vfzVKi0mX79u1JhQoVkrlz5xYa79SpU3LNNddkKVXp8NnfAfPz85NGjRolEydOLBj75JNPktq1aye//vWvs5Awe/b3+/GqVauSiEheeumlg5qpNClKf3j++eeTiEjWrFlzcEKVcc5w86W1adOmiIioV69elpOUPnl5eTF79uzYtm1bdOvWLdtxSo1hw4ZF//7947TTTst2lFLnjTfeiCZNmkSrVq3i/PPPj7fffjvbkUqNv/zlL9GlS5c455xzokGDBtG5c+e48847sx2rVPr000/j3nvvjaFDh0Ymk8l2nKzr0aNHPPnkk/H6669HRMTf//73+Nvf/hb9+vXLcrLSYdeuXZGXlxdVqlQpNF61atX429/+lqVUpdOqVavi/fffj969exeM5eTkxMknnxzPPvtsFpNRFm3atCkymYwrtYqoYrYDQDYkSRIjR46MHj16RIcOHbIdp9RYsWJFdOvWLT755JOoUaNGPPjgg3H00UdnO1apMHv27Fi2bNmX9t7A/fnqV78as2bNiqOOOio++OCDuOGGG+LEE0+MV155JerXr5/teFn39ttvx9SpU2PkyJHxk5/8JJ5//vm4/PLLIycnJy688MJsxytVHnroofj444/joosuynaUUuHqq6+OTZs2Rdu2baNChQqRl5cXN954Y3znO9/JdrRSoWbNmtGtW7f42c9+Fu3atYuGDRvG/fffH88991wceeSR2Y5Xqrz//vsREdGwYcNC4w0bNow1a9ZkIxJl1CeffBKjRo2KgQMHRq1atbIdp0xQuPlSuvTSS+Pll1/2L+Cf0aZNm1i+fHl8/PHH8ac//SkGDx4cixcv/tKX7rVr18bw4cPj8ccf3+NMChF9+/Yt+PmYY46Jbt26xRFHHBEzZ86MkSNHZjFZ6ZCfnx9dunSJ8ePHR0RE586d45VXXompU6cq3J9x9913R9++faNJkybZjlIqPPDAA3HvvffGfffdF+3bt4/ly5fHiBEjokmTJjF48OBsxysV7rnnnhg6dGgcdthhUaFChTjuuONi4MCBsWzZsmxHK5U+e+VIkiSuJqHIdu7cGeeff37k5+fHr371q2zHKTMUbr50LrvssvjLX/4STz31VDRt2jTbcUqVypUrR+vWrSMiokuXLrF06dK4/fbb4ze/+U2Wk2XXiy++GOvXr4/jjz++YCwvLy+eeuqpmDJlSuTm5kaFChWymLB0qV69ehxzzDHxxhtvZDtKqdC4ceM9/tGqXbt28ac//SlLiUqnNWvWxBNPPBFz5szJdpRS48orr4xRo0bF+eefHxH/+getNWvWxIQJExTu/3XEEUfE4sWLY9u2bbF58+Zo3LhxnHfeedGqVatsRytVdn9zxPvvvx+NGzcuGF+/fv0eZ71hb3bu3BnnnnturFq1KhYsWODsdjG4h5svjSRJ4tJLL405c+bEggUL/M+4CJIkidzc3GzHyLpevXrFihUrYvny5QWvLl26xKBBg2L58uXK9mfk5ubGypUrC/1S92XWvXv3Pb6C8PXXX48WLVpkKVHpNH369GjQoEH0798/21FKje3bt8dXvlL4V7UKFSr4WrC9qF69ejRu3Dg2btwYjz32WJx55pnZjlSqtGrVKho1alTwLQAR/3pmwuLFi+PEE0/MYjLKgt1l+4033ognnnjC7WLF5Ax3ObN169Z48803C5ZXrVoVy5cvj3r16kXz5s2zmCz7hg0bFvfdd1/8+c9/jpo1axbcz1S7du2oWrVqltNl309+8pPo27dvNGvWLLZs2RKzZ8+ORYsWxaOPPprtaFlXs2bNPe71r169etSvX98zACLixz/+cQwYMCCaN28e69evjxtuuCE2b97sDNz/uuKKK+LEE0+M8ePHx7nnnhvPP/98TJs2LaZNm5btaKVGfn5+TJ8+PQYPHhwVK/rVZLcBAwbEjTfeGM2bN4/27dvHSy+9FJMnT46hQ4dmO1qp8dhjj0WSJNGmTZt4880348orr4w2bdrEkCFDsh3toPu83wFHjBgR48ePjyOPPDKOPPLIGD9+fFSrVi0GDhyYxdQHx+fNzYYNG+Kdd94p+G7p3f9I2qhRo4KrA8qz/c1PkyZN4uyzz45ly5bF3LlzIy8vr+B36Hr16kXlypWzFbvsyOoz0ilxCxcuTCJij9fgwYOzHS3r9jYvEZFMnz4929FKhaFDhyYtWrRIKleunBx66KFJr169kscffzzbsUotXwv2f84777ykcePGSaVKlZImTZok3/rWt5JXXnkl27FKlYcffjjp0KFDkpOTk7Rt2zaZNm1atiOVKo899lgSEclrr72W7SilyubNm5Phw4cnzZs3T6pUqZIcfvjhyTXXXJPk5uZmO1qp8cADDySHH354Urly5aRRo0bJsGHDko8//jjbsbLi834HzM/PT8aMGZM0atQoycnJSb7+9a8nK1asyG7og+Tz5mb69Ol7XT9mzJis5j5Y9jc/u78qbW+vhQsXZjt6mZBJkiRJs9ADAADAl5F7uAEAACAFCjcAAACkQOEGAACAFCjcAAAAkAKFGwAAAFKgcAMAAEAKFG4AAABIgcINAAAAKVC4AaCMyWQy8dBDD2U7Rono2bNnjBgxItsxACAVCjcAFMFFF10UmUwm/uu//muPdT/84Q8jk8nERRddVKLHHDt2bBx77LEluk8A4OBRuAGgiJo1axazZ8+OHTt2FIx98skncf/990fz5s2zmIx/l5eXF/n5+dmOAQAKNwAU1XHHHRfNmzePOXPmFIzNmTMnmjVrFp07dy60bW5ublx++eXRoEGDqFKlSvTo0SOWLl1asH7RokWRyWTiySefjC5dukS1atXixBNPjNdeey0iImbMmBHjxo2Lv//975HJZCKTycSMGTMK3v/hhx/GN7/5zahWrVoceeSR8Ze//KVg3caNG2PQoEFx6KGHRtWqVePII4+M6dOn7/Nz9ezZMy6//PK46qqrol69etGoUaMYO3ZswfrVq1dHJpOJ5cuXF4x9/PHHkclkYtGiRYU+z2OPPRadO3eOqlWrxqmnnhrr16+PefPmRbt27aJWrVrxne98J7Zv317o+Lt27YpLL7006tSpE/Xr149rr702kiQpWP/pp5/GVVddFYcddlhUr149vvrVrxYcd/dc1alTJ+bOnRtHH3105OTkxJo1a/b5eQHgYFG4AaAYhgwZUqi8/va3v42hQ4fusd1VV10Vf/rTn2LmzJmxbNmyaN26dZxxxhmxYcOGQttdc801MWnSpHjhhReiYsWKBfs677zz4kc/+lG0b98+3nvvvXjvvffivPPOK3jfuHHj4txzz42XX345+vXrF4MGDSrY93XXXRevvvpqzJs3L1auXBlTp06NQw45ZL+fa+bMmVG9evV47rnn4uabb46f/vSnMX/+/GLPz9ixY2PKlCnx7LPPxtq1a+Pcc8+N2267Le6777545JFHYv78+XHHHXfsceyKFSvGc889F7/4xS/i5z//edx1110F64cMGRLPPPNMzJ49O15++eU455xzok+fPvHGG28UbLN9+/aYMGFC3HXXXfHKK69EgwYNip0dAEpcAgB8rsGDBydnnnlm8j//8z9JTk5OsmrVqmT16tVJlSpVkv/5n/9JzjzzzGTw4MFJkiTJ1q1bk0qVKiW/+93vCt7/6aefJk2aNEluvvnmJEmSZOHChUlEJE888UTBNo888kgSEcmOHTuSJEmSMWPGJJ06ddojS0Qk1157bcHy1q1bk0wmk8ybNy9JkiQZMGBAMmTIkCJ/tpNPPjnp0aNHobGuXbsmV199dZIkSbJq1aokIpKXXnqpYP3GjRuTiEgWLly4z88zYcKEJCKSt956q2Ds+9//fnLGGWcUOna7du2S/Pz8grGrr746adeuXZIkSfLmm28mmUwmWbduXaF8vXr1SkaPHp0kSZJMnz49iYhk+fLlRf7MAHAwVMxe1QeAsueQQw6J/v37x8yZMyNJkujfv/8eZ4/feuut2LlzZ3Tv3r1grFKlSnHCCSfEypUrC23bsWPHgp8bN24cERHr16//3HvC//191atXj5o1a8b69esjIuIHP/hBfPvb345ly5ZF796946yzzooTTzyxyPvbnWX3/orj3/fTsGHDqFatWhx++OGFxp5//vlC7/na174WmUymYLlbt24xadKkyMvLi2XLlkWSJHHUUUcVek9ubm7Ur1+/YLly5cp7fAYAyDaFGwCKaejQoXHppZdGRMQvf/nLPdYn/3v/8b+XyN3jnx2rVKlSwc+71xXlgV///r7d7939vr59+8aaNWvikUceiSeeeCJ69eoVw4YNi1tvvfUL7e8rX/lKoc8VEbFz587P3U8mk9nvfosiPz8/KlSoEC+++GJUqFCh0LoaNWoU/Fy1atU95hYAss093ABQTH369IlPP/00Pv300zjjjDP2WN+6deuoXLly/O1vfysY27lzZ7zwwgvRrl27Ih+ncuXKkZeX94UyHnrooXHRRRfFvffeG7fddltMmzbtC+1n974iIt57772CsX9/gNqBWrJkyR7LRx55ZFSoUCE6d+4ceXl5sX79+mjdunWhV6NGjUosAwCkwRluACimChUqFFwa/tmzrhH/usT7Bz/4QVx55ZVRr169aN68edx8882xffv2uPjii4t8nJYtW8aqVati+fLl0bRp06hZs2bk5OR87vuuv/76OP7446N9+/aRm5sbc+fOLVbR/6yqVavG1772tZg4cWK0bNkyPvzww7j22mu/8P4+a+3atTFy5Mj4/ve/H8uWLYs77rgjJk2aFBERRx11VAwaNCguvPDCmDRpUnTu3Dk+/PDDWLBgQRxzzDHRr1+/EssBACVN4QaAL6BWrVr7XT9x4sTIz8+PCy64ILZs2RJdunSJxx57LOrWrVvkY3z729+OOXPmxCmnnBIff/xxTJ8+PS666KLPfV/lypVj9OjRsXr16qhatWqcdNJJMXv27CIfd292P429S5cu0aZNm7j55pujd+/eB7TP3S688MLYsWNHnHDCCVGhQoW47LLL4pJLLilYP3369LjhhhviRz/6Uaxbty7q168f3bp1U7YBKPUyyb/fkAUAAACUCPdwAwAAQAoUbgAAAEiBwg0AAAApULgBAAAgBQo3AAAApEDhBgAAgBQo3AAAAJAChRsAAABSoHADAABAChRuAAAASIHCDQAAACn4/wUOkCizomN+AAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig, ax = plt.subplots(figsize=(12, 6))\n", + "\n", + "months = range(1, 13)\n", + "\n", + "plt.bar(months, results['Sales'])\n", + "plt.title(\"Bar Chart\")\n", + "plt.xticks(months)\n", + "plt.ylabel(\"Sales in Million US $\")\n", + "plt.xlabel(\"Months number\")\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "id": "3b6296c1-0701-4939-8007-c0f296fdd2d6", + "metadata": {}, + "source": [ + "### Question 2: What city sold the most product?" + ] + }, + { + "cell_type": "code", + "execution_count": 124, + "id": "8677acf4-ff16-4298-a8f1-99d4677ae4e9", + "metadata": {}, + "outputs": [], + "source": [ + "city_results = all_data.groupby('City').sum()" + ] + }, + { + "cell_type": "code", + "execution_count": 128, + "id": "2d6f4806-cf81-4925-8c97-b6c930fda343", + "metadata": {}, + "outputs": [ + { + "ename": "KeyError", + "evalue": "'City'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m~/anaconda3/lib/python3.12/site-packages/pandas/core/indexes/base.py:3805\u001b[0m, in \u001b[0;36mIndex.get_loc\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 3804\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m-> 3805\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_engine\u001b[38;5;241m.\u001b[39mget_loc(casted_key)\n\u001b[1;32m 3806\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m err:\n", + "File \u001b[0;32mindex.pyx:167\u001b[0m, in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32mindex.pyx:196\u001b[0m, in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32mpandas/_libs/hashtable_class_helper.pxi:7081\u001b[0m, in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32mpandas/_libs/hashtable_class_helper.pxi:7089\u001b[0m, in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[0;34m()\u001b[0m\n", + "\u001b[0;31mKeyError\u001b[0m: 'City'", + "\nThe above exception was the direct cause of the following exception:\n", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[128], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m plt\u001b[38;5;241m.\u001b[39mbar(city_results[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mCity\u001b[39m\u001b[38;5;124m'\u001b[39m], city_results[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mProduct\u001b[39m\u001b[38;5;124m'\u001b[39m])\n\u001b[1;32m 2\u001b[0m plt\u001b[38;5;241m.\u001b[39mtitle(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mBar Chart\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 3\u001b[0m plt\u001b[38;5;241m.\u001b[39mylabel(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mProduct\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n", + "File \u001b[0;32m~/anaconda3/lib/python3.12/site-packages/pandas/core/frame.py:4102\u001b[0m, in \u001b[0;36mDataFrame.__getitem__\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 4100\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcolumns\u001b[38;5;241m.\u001b[39mnlevels \u001b[38;5;241m>\u001b[39m \u001b[38;5;241m1\u001b[39m:\n\u001b[1;32m 4101\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_getitem_multilevel(key)\n\u001b[0;32m-> 4102\u001b[0m indexer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcolumns\u001b[38;5;241m.\u001b[39mget_loc(key)\n\u001b[1;32m 4103\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m is_integer(indexer):\n\u001b[1;32m 4104\u001b[0m indexer \u001b[38;5;241m=\u001b[39m [indexer]\n", + "File \u001b[0;32m~/anaconda3/lib/python3.12/site-packages/pandas/core/indexes/base.py:3812\u001b[0m, in \u001b[0;36mIndex.get_loc\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 3807\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(casted_key, \u001b[38;5;28mslice\u001b[39m) \u001b[38;5;129;01mor\u001b[39;00m (\n\u001b[1;32m 3808\u001b[0m \u001b[38;5;28misinstance\u001b[39m(casted_key, abc\u001b[38;5;241m.\u001b[39mIterable)\n\u001b[1;32m 3809\u001b[0m \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;28many\u001b[39m(\u001b[38;5;28misinstance\u001b[39m(x, \u001b[38;5;28mslice\u001b[39m) \u001b[38;5;28;01mfor\u001b[39;00m x \u001b[38;5;129;01min\u001b[39;00m casted_key)\n\u001b[1;32m 3810\u001b[0m ):\n\u001b[1;32m 3811\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m InvalidIndexError(key)\n\u001b[0;32m-> 3812\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m(key) \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01merr\u001b[39;00m\n\u001b[1;32m 3813\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mTypeError\u001b[39;00m:\n\u001b[1;32m 3814\u001b[0m \u001b[38;5;66;03m# If we have a listlike key, _check_indexing_error will raise\u001b[39;00m\n\u001b[1;32m 3815\u001b[0m \u001b[38;5;66;03m# InvalidIndexError. Otherwise we fall through and re-raise\u001b[39;00m\n\u001b[1;32m 3816\u001b[0m \u001b[38;5;66;03m# the TypeError.\u001b[39;00m\n\u001b[1;32m 3817\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_check_indexing_error(key)\n", + "\u001b[0;31mKeyError\u001b[0m: 'City'" + ] + } + ], + "source": [ + "plt.bar(city_results['City'], city_results['Product'])\n", + "plt.title(\"Bar Chart\")\n", + "plt.ylabel(\"Product\")\n", + "plt.xlabel(\"City\")\n", + "plt.show()" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.7" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/sales_data/Sales_April_2019.csv b/sales_data/Sales_April_2019.csv new file mode 100644 index 0000000..9a47784 --- /dev/null +++ b/sales_data/Sales_April_2019.csv @@ -0,0 +1,11656 @@ +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +186879,Google Phone,1,600.0,04/19/19 23:44,"344 Willow St, Los Angeles, CA 90001" +186879,USB-C Charging Cable,1,11.95,04/19/19 23:44,"344 Willow St, Los Angeles, CA 90001" +186880,AA Batteries (4-pack),1,3.84,04/26/19 16:21,"772 Ridge St, Portland, OR 97035" +186881,Apple Airpods Headphones,1,150.0,04/30/19 11:49,"979 Chestnut St, Portland, OR 97035" +186882,LG Washing Machine,1,600.0,04/06/19 20:33,"371 Center St, San Francisco, CA 94016" +186883,AA Batteries (4-pack),1,3.84,04/23/19 12:35,"447 West St, San Francisco, CA 94016" +186884,AA Batteries (4-pack),1,3.84,04/17/19 21:56,"503 4th St, Los Angeles, CA 90001" +186885,iPhone,1,700.0,04/07/19 20:29,"295 South St, New York City, NY 10001" +186886,Wired Headphones,2,11.99,04/20/19 23:49,"628 1st St, Portland, OR 97035" +186887,Wired Headphones,1,11.99,04/03/19 14:27,"734 Lakeview St, Portland, OR 97035" +186888,USB-C Charging Cable,1,11.95,04/09/19 00:14,"738 5th St, Los Angeles, CA 90001" +186889,AA Batteries (4-pack),3,3.84,04/24/19 08:52,"433 Meadow St, Los Angeles, CA 90001" +186890,USB-C Charging Cable,1,11.95,04/11/19 16:27,"459 Center St, Portland, OR 97035" +186891,Flatscreen TV,1,300.0,04/14/19 00:10,"28 Park St, San Francisco, CA 94016" +186892,iPhone,1,700.0,04/28/19 17:01,"622 Willow St, Atlanta, GA 30301" +186893,Vareebadd Phone,1,400.0,04/11/19 12:07,"833 Wilson St, Seattle, WA 98101" +186893,USB-C Charging Cable,1,11.95,04/11/19 12:07,"833 Wilson St, Seattle, WA 98101" +186894,USB-C Charging Cable,1,11.95,04/23/19 11:13,"203 Cherry St, Los Angeles, CA 90001" +186895,USB-C Charging Cable,1,11.95,04/19/19 23:21,"741 Spruce St, Boston, MA 02215" +186896,Lightning Charging Cable,1,14.95,04/18/19 08:40,"620 Park St, Atlanta, GA 30301" +186897,Bose SoundSport Headphones,1,99.99,04/11/19 19:33,"581 1st St, Los Angeles, CA 90001" +186898,Wired Headphones,1,11.99,04/02/19 19:11,"250 9th St, Austin, TX 73301" +186899,USB-C Charging Cable,1,11.95,04/25/19 09:00,"983 6th St, Boston, MA 02215" +186900,Lightning Charging Cable,2,14.95,04/18/19 13:35,"93 Dogwood St, Los Angeles, CA 90001" +186901,ThinkPad Laptop,1,999.99,04/24/19 00:36,"65 Madison St, Los Angeles, CA 90001" +186902,Lightning Charging Cable,1,14.95,04/27/19 09:38,"761 Pine St, Atlanta, GA 30301" +186903,USB-C Charging Cable,1,11.95,04/04/19 14:59,"332 River St, Seattle, WA 98101" +186904,Lightning Charging Cable,1,14.95,04/13/19 17:59,"493 4th St, New York City, NY 10001" +186905,Flatscreen TV,1,300.0,04/29/19 09:33,"550 Maple St, Los Angeles, CA 90001" +186906,Apple Airpods Headphones,1,150.0,04/08/19 00:25,"121 Meadow St, Seattle, WA 98101" +186907,Bose SoundSport Headphones,1,99.99,04/03/19 19:40,"835 8th St, Austin, TX 73301" +186908,AAA Batteries (4-pack),1,2.99,04/13/19 20:47,"166 Cherry St, Dallas, TX 75001" +186909,AA Batteries (4-pack),1,3.84,04/08/19 20:18,"304 West St, Los Angeles, CA 90001" +186910,AA Batteries (4-pack),1,3.84,04/21/19 08:56,"86 Pine St, Atlanta, GA 30301" +186911,Lightning Charging Cable,1,14.95,04/06/19 06:09,"481 Pine St, Dallas, TX 75001" +186912,Bose SoundSport Headphones,1,99.99,04/04/19 13:09,"245 13th St, Austin, TX 73301" +186913,27in FHD Monitor,1,149.99,04/18/19 13:21,"402 4th St, San Francisco, CA 94016" +186914,Wired Headphones,1,11.99,04/30/19 15:22,"494 Chestnut St, Seattle, WA 98101" +186915,AAA Batteries (4-pack),1,2.99,04/07/19 11:18,"154 8th St, New York City, NY 10001" +186916,USB-C Charging Cable,1,11.95,04/09/19 17:28,"186 Jackson St, San Francisco, CA 94016" +186917,AA Batteries (4-pack),1,3.84,04/09/19 15:50,"598 Adams St, Los Angeles, CA 90001" +186918,Bose SoundSport Headphones,1,99.99,04/21/19 17:58,"605 Madison St, New York City, NY 10001" +186919,Apple Airpods Headphones,1,150.0,04/05/19 22:03,"841 Sunset St, Seattle, WA 98101" +186920,USB-C Charging Cable,1,11.95,04/06/19 21:20,"705 Church St, Boston, MA 02215" +186921,AA Batteries (4-pack),2,3.84,04/21/19 13:40,"197 9th St, Los Angeles, CA 90001" +186922,Bose SoundSport Headphones,1,99.99,04/25/19 17:00,"53 Cedar St, San Francisco, CA 94016" +186923,Wired Headphones,1,11.99,04/21/19 13:45,"702 4th St, Boston, MA 02215" +186924,Apple Airpods Headphones,1,150.0,04/23/19 05:38,"994 Cherry St, San Francisco, CA 94016" +186925,AA Batteries (4-pack),1,3.84,04/09/19 00:15,"121 8th St, San Francisco, CA 94016" +186926,Bose SoundSport Headphones,1,99.99,04/08/19 06:38,"280 Pine St, Portland, OR 97035" +186927,AAA Batteries (4-pack),2,2.99,04/26/19 13:40,"59 4th St, San Francisco, CA 94016" +186928,USB-C Charging Cable,1,11.95,04/16/19 15:45,"112 South St, Austin, TX 73301" +186929,27in FHD Monitor,1,149.99,04/23/19 15:35,"926 Spruce St, Boston, MA 02215" +186930,AAA Batteries (4-pack),2,2.99,04/28/19 21:09,"880 Madison St, San Francisco, CA 94016" +186930,iPhone,1,700.0,04/28/19 21:09,"880 Madison St, San Francisco, CA 94016" +186931,34in Ultrawide Monitor,1,379.99,04/24/19 12:35,"601 Adams St, Los Angeles, CA 90001" +186932,Bose SoundSport Headphones,1,99.99,04/26/19 13:23,"721 Main St, Seattle, WA 98101" +186933,Bose SoundSport Headphones,1,99.99,04/07/19 04:11,"274 Forest St, New York City, NY 10001" +186934,AAA Batteries (4-pack),1,2.99,04/30/19 14:57,"644 10th St, San Francisco, CA 94016" +186935,20in Monitor,1,109.99,04/01/19 17:07,"520 Pine St, San Francisco, CA 94016" +186936,AAA Batteries (4-pack),2,2.99,04/04/19 07:05,"773 Lincoln St, Atlanta, GA 30301" +186937,Bose SoundSport Headphones,1,99.99,04/13/19 09:42,"291 Willow St, Seattle, WA 98101" +186938,34in Ultrawide Monitor,1,379.99,04/24/19 05:40,"749 Jefferson St, Los Angeles, CA 90001" +186939,Vareebadd Phone,1,400.0,04/18/19 15:07,"797 5th St, Los Angeles, CA 90001" +186940,USB-C Charging Cable,1,11.95,04/19/19 23:35,"993 Park St, New York City, NY 10001" +186941,AAA Batteries (4-pack),1,2.99,04/20/19 13:23,"262 Sunset St, New York City, NY 10001" +186942,USB-C Charging Cable,1,11.95,04/04/19 23:50,"428 Spruce St, San Francisco, CA 94016" +186943,AAA Batteries (4-pack),1,2.99,04/29/19 18:09,"435 5th St, Boston, MA 02215" +186944,27in 4K Gaming Monitor,1,389.99,04/27/19 10:47,"164 9th St, Los Angeles, CA 90001" +186945,Apple Airpods Headphones,1,150.0,04/27/19 11:02,"634 Spruce St, New York City, NY 10001" +186946,AAA Batteries (4-pack),1,2.99,04/16/19 20:31,"873 14th St, New York City, NY 10001" +186947,AAA Batteries (4-pack),1,2.99,04/24/19 13:05,"426 2nd St, San Francisco, CA 94016" +186948,Bose SoundSport Headphones,1,99.99,04/09/19 22:12,"483 North St, Dallas, TX 75001" +186949,AA Batteries (4-pack),2,3.84,04/14/19 20:12,"471 Jackson St, Dallas, TX 75001" +186950,Lightning Charging Cable,1,14.95,04/30/19 00:34,"50 Ridge St, Seattle, WA 98101" +186951,Lightning Charging Cable,1,14.95,04/03/19 17:05,"102 Park St, Atlanta, GA 30301" +186952,AA Batteries (4-pack),1,3.84,04/13/19 06:15,"731 11th St, Los Angeles, CA 90001" +186953,Google Phone,1,600.0,04/03/19 11:42,"925 River St, Austin, TX 73301" +186953,Bose SoundSport Headphones,1,99.99,04/03/19 11:42,"925 River St, Austin, TX 73301" +186954,Apple Airpods Headphones,1,150.0,04/15/19 11:56,"838 14th St, Atlanta, GA 30301" +186955,ThinkPad Laptop,1,999.99,04/02/19 10:20,"809 5th St, Boston, MA 02215" +186956,iPhone,1,700.0,04/08/19 22:48,"64 Hill St, Seattle, WA 98101" +186956,Apple Airpods Headphones,1,150.0,04/08/19 22:48,"64 Hill St, Seattle, WA 98101" +186957,Apple Airpods Headphones,1,150.0,04/15/19 08:03,"815 Forest St, Dallas, TX 75001" +186958,AA Batteries (4-pack),1,3.84,04/14/19 23:06,"61 Lakeview St, Portland, OR 97035" +186959,Bose SoundSport Headphones,1,99.99,04/27/19 11:55,"878 7th St, San Francisco, CA 94016" +186960,20in Monitor,1,109.99,04/26/19 16:15,"483 4th St, Portland, OR 97035" +186961,ThinkPad Laptop,1,999.99,04/01/19 12:04,"921 Hill St, San Francisco, CA 94016" +186962,Wired Headphones,1,11.99,04/03/19 16:24,"246 Meadow St, Seattle, WA 98101" +186963,Apple Airpods Headphones,1,150.0,04/07/19 11:31,"869 9th St, San Francisco, CA 94016" +186964,27in FHD Monitor,1,149.99,04/02/19 18:32,"540 Washington St, Portland, OR 97035" +186965,Macbook Pro Laptop,1,1700.0,04/08/19 17:24,"185 Spruce St, Dallas, TX 75001" +186966,AAA Batteries (4-pack),1,2.99,04/20/19 16:16,"134 Main St, San Francisco, CA 94016" +186967,27in 4K Gaming Monitor,1,389.99,04/11/19 09:52,"895 5th St, San Francisco, CA 94016" +186968,Lightning Charging Cable,1,14.95,04/09/19 14:23,"831 Ridge St, Atlanta, GA 30301" +186969,Apple Airpods Headphones,1,150.0,04/04/19 20:55,"221 Adams St, Dallas, TX 75001" +186970,Apple Airpods Headphones,1,150.0,04/14/19 13:23,"606 9th St, San Francisco, CA 94016" +186971,27in FHD Monitor,1,149.99,04/02/19 22:21,"85 Dogwood St, Dallas, TX 75001" +186972,Macbook Pro Laptop,1,1700.0,04/25/19 20:30,"754 Ridge St, New York City, NY 10001" +186973,Bose SoundSport Headphones,1,99.99,04/27/19 12:22,"989 Church St, San Francisco, CA 94016" +186974,USB-C Charging Cable,1,11.95,04/09/19 15:56,"514 Ridge St, Los Angeles, CA 90001" +186975,Wired Headphones,1,11.99,04/08/19 21:00,"465 Cedar St, Atlanta, GA 30301" +186976,Bose SoundSport Headphones,1,99.99,04/28/19 17:40,"927 Lake St, Atlanta, GA 30301" +186977,Wired Headphones,1,11.99,04/23/19 13:44,"569 1st St, San Francisco, CA 94016" +186978,Bose SoundSport Headphones,1,99.99,04/12/19 06:28,"809 Madison St, Boston, MA 02215" +186979,iPhone,1,700.0,04/28/19 11:34,"609 Washington St, Portland, ME 04101" +186980,AA Batteries (4-pack),1,3.84,04/20/19 01:08,"36 Maple St, Portland, OR 97035" +186981,Bose SoundSport Headphones,1,99.99,04/14/19 09:05,"119 Center St, New York City, NY 10001" +186982,Lightning Charging Cable,1,14.95,04/30/19 00:19,"610 Lake St, Los Angeles, CA 90001" +186983,Lightning Charging Cable,1,14.95,04/25/19 18:18,"705 Lincoln St, New York City, NY 10001" +186984,Wired Headphones,1,11.99,04/07/19 18:34,"173 12th St, Los Angeles, CA 90001" +186985,Wired Headphones,1,11.99,04/03/19 17:53,"182 2nd St, Atlanta, GA 30301" +186986,Apple Airpods Headphones,1,150.0,04/11/19 18:48,"677 South St, Seattle, WA 98101" +186987,ThinkPad Laptop,1,999.99,04/06/19 18:48,"651 Adams St, Atlanta, GA 30301" +186988,USB-C Charging Cable,1,11.95,05/01/19 01:07,"726 13th St, Seattle, WA 98101" +186989,USB-C Charging Cable,1,11.95,04/19/19 17:39,"974 13th St, Boston, MA 02215" +186990,Bose SoundSport Headphones,1,99.99,04/16/19 14:40,"678 9th St, Atlanta, GA 30301" +186991,Bose SoundSport Headphones,1,99.99,04/05/19 22:28,"42 Ridge St, Portland, OR 97035" +186992,ThinkPad Laptop,1,999.99,04/17/19 19:43,"283 Lakeview St, Austin, TX 73301" +186993,AA Batteries (4-pack),1,3.84,04/05/19 19:48,"877 Lakeview St, Seattle, WA 98101" +186994,USB-C Charging Cable,1,11.95,04/08/19 18:43,"782 Jefferson St, New York City, NY 10001" +186995,Apple Airpods Headphones,1,150.0,04/13/19 02:45,"800 8th St, Dallas, TX 75001" +186996,AAA Batteries (4-pack),1,2.99,04/27/19 15:32,"239 Pine St, Austin, TX 73301" +186997,Lightning Charging Cable,1,14.95,04/24/19 15:12,"777 Elm St, Dallas, TX 75001" +186998,iPhone,1,700.0,04/03/19 01:51,"126 12th St, San Francisco, CA 94016" +186999,AAA Batteries (4-pack),1,2.99,04/29/19 16:32,"842 Pine St, Boston, MA 02215" +187000,Wired Headphones,1,11.99,04/10/19 18:53,"412 Church St, Dallas, TX 75001" +187001,34in Ultrawide Monitor,1,379.99,04/28/19 20:02,"529 Meadow St, New York City, NY 10001" +187002,Apple Airpods Headphones,1,150.0,04/01/19 23:24,"372 Jackson St, Los Angeles, CA 90001" +187003,Bose SoundSport Headphones,1,99.99,04/15/19 10:44,"348 Meadow St, Atlanta, GA 30301" +187004,AAA Batteries (4-pack),2,2.99,04/03/19 16:42,"763 Lake St, New York City, NY 10001" +187005,27in FHD Monitor,1,149.99,04/05/19 19:40,"945 12th St, Portland, OR 97035" +187006,Lightning Charging Cable,1,14.95,04/20/19 00:27,"32 Ridge St, Boston, MA 02215" +187007,34in Ultrawide Monitor,1,379.99,04/08/19 21:31,"183 North St, Boston, MA 02215" +187008,Apple Airpods Headphones,1,150.0,04/04/19 10:45,"740 North St, San Francisco, CA 94016" +187009,AAA Batteries (4-pack),1,2.99,04/15/19 11:47,"994 Pine St, Atlanta, GA 30301" +187010,Bose SoundSport Headphones,1,99.99,04/18/19 19:45,"812 Center St, San Francisco, CA 94016" +187011,Vareebadd Phone,1,400.0,04/25/19 19:32,"876 Dogwood St, New York City, NY 10001" +187011,USB-C Charging Cable,1,11.95,04/25/19 19:32,"876 Dogwood St, New York City, NY 10001" +187012,Bose SoundSport Headphones,2,99.99,04/02/19 21:38,"857 4th St, New York City, NY 10001" +187013,Flatscreen TV,1,300.0,04/11/19 21:35,"939 Wilson St, Atlanta, GA 30301" +187014,iPhone,1,700.0,04/27/19 09:20,"975 6th St, San Francisco, CA 94016" +187015,Google Phone,1,600.0,04/03/19 10:32,"191 Dogwood St, San Francisco, CA 94016" +187016,AA Batteries (4-pack),1,3.84,04/06/19 20:04,"61 Walnut St, Boston, MA 02215" +187017,27in FHD Monitor,1,149.99,04/24/19 12:47,"813 10th St, San Francisco, CA 94016" +187018,Wired Headphones,1,11.99,04/21/19 09:40,"936 Cedar St, Austin, TX 73301" +187019,Apple Airpods Headphones,1,150.0,04/05/19 19:18,"375 Ridge St, Los Angeles, CA 90001" +187020,USB-C Charging Cable,2,11.95,04/07/19 21:23,"703 1st St, Austin, TX 73301" +187021,34in Ultrawide Monitor,1,379.99,04/18/19 20:44,"743 Church St, Los Angeles, CA 90001" +187022,AA Batteries (4-pack),1,3.84,04/10/19 18:44,"335 Jackson St, San Francisco, CA 94016" +187023,20in Monitor,1,109.99,04/13/19 17:26,"669 Johnson St, Los Angeles, CA 90001" +187024,USB-C Charging Cable,1,11.95,04/05/19 13:40,"216 Ridge St, Seattle, WA 98101" +187024,Apple Airpods Headphones,1,150.0,04/05/19 13:40,"216 Ridge St, Seattle, WA 98101" +187025,AAA Batteries (4-pack),1,2.99,04/02/19 22:30,"180 6th St, New York City, NY 10001" +187026,ThinkPad Laptop,1,999.99,04/23/19 17:55,"457 Main St, New York City, NY 10001" +187027,AAA Batteries (4-pack),5,2.99,04/30/19 19:41,"845 River St, Los Angeles, CA 90001" +187028,Wired Headphones,1,11.99,04/05/19 09:57,"941 Willow St, Seattle, WA 98101" +187029,USB-C Charging Cable,1,11.95,04/06/19 12:54,"227 Cedar St, New York City, NY 10001" +187030,USB-C Charging Cable,1,11.95,04/14/19 09:49,"543 Cedar St, Seattle, WA 98101" +187031,AAA Batteries (4-pack),1,2.99,04/22/19 12:42,"926 5th St, Dallas, TX 75001" +187032,AA Batteries (4-pack),1,3.84,04/14/19 12:04,"654 Chestnut St, Dallas, TX 75001" +187033,USB-C Charging Cable,1,11.95,04/20/19 19:41,"941 Center St, Austin, TX 73301" +187034,Wired Headphones,1,11.99,04/03/19 16:50,"819 West St, Portland, OR 97035" +187035,Lightning Charging Cable,1,14.95,04/06/19 21:56,"180 Church St, New York City, NY 10001" +187036,AAA Batteries (4-pack),1,2.99,04/26/19 20:03,"390 4th St, Los Angeles, CA 90001" +187037,USB-C Charging Cable,1,11.95,04/28/19 18:46,"30 Adams St, New York City, NY 10001" +187038,Lightning Charging Cable,1,14.95,04/01/19 16:43,"780 Jackson St, Dallas, TX 75001" +187039,AA Batteries (4-pack),1,3.84,04/15/19 23:40,"98 10th St, New York City, NY 10001" +187039,AA Batteries (4-pack),1,3.84,04/15/19 23:40,"98 10th St, New York City, NY 10001" +187040,Lightning Charging Cable,1,14.95,04/01/19 19:48,"794 Forest St, Dallas, TX 75001" +187041,Wired Headphones,1,11.99,04/14/19 11:21,"654 Sunset St, Austin, TX 73301" +187042,AA Batteries (4-pack),1,3.84,04/03/19 12:12,"48 Adams St, Los Angeles, CA 90001" +187043,LG Washing Machine,2,600.0,04/13/19 12:55,"433 North St, Boston, MA 02215" +187044,Lightning Charging Cable,2,14.95,04/03/19 12:46,"297 7th St, New York City, NY 10001" +187045,Bose SoundSport Headphones,1,99.99,04/22/19 10:48,"943 Forest St, Seattle, WA 98101" +187046,AA Batteries (4-pack),1,3.84,04/16/19 23:02,"984 13th St, Boston, MA 02215" +187047,Bose SoundSport Headphones,1,99.99,04/02/19 16:15,"546 11th St, Boston, MA 02215" +187048,AAA Batteries (4-pack),1,2.99,04/21/19 19:42,"577 Washington St, Boston, MA 02215" +187049,27in 4K Gaming Monitor,1,389.99,04/10/19 00:57,"703 Main St, Portland, ME 04101" +187050,Lightning Charging Cable,1,14.95,04/19/19 14:42,"892 Ridge St, Seattle, WA 98101" +187051,USB-C Charging Cable,1,11.95,04/18/19 23:42,"604 Hill St, San Francisco, CA 94016" +187052,iPhone,1,700.0,04/11/19 18:49,"575 Walnut St, Los Angeles, CA 90001" +187053,Wired Headphones,1,11.99,04/01/19 20:49,"154 Hickory St, San Francisco, CA 94016" +187054,USB-C Charging Cable,1,11.95,04/21/19 15:02,"878 River St, Portland, OR 97035" +187055,Flatscreen TV,1,300.0,04/22/19 01:12,"281 Forest St, Boston, MA 02215" +187056,34in Ultrawide Monitor,1,379.99,04/27/19 18:18,"687 Church St, Seattle, WA 98101" +187057,USB-C Charging Cable,1,11.95,04/11/19 13:30,"104 4th St, Dallas, TX 75001" +187058,AAA Batteries (4-pack),1,2.99,04/24/19 20:52,"451 Walnut St, San Francisco, CA 94016" +187059,USB-C Charging Cable,1,11.95,04/07/19 17:29,"30 Forest St, Los Angeles, CA 90001" +187060,34in Ultrawide Monitor,1,379.99,04/29/19 11:19,"805 River St, Dallas, TX 75001" +187061,iPhone,1,700.0,04/04/19 08:16,"98 Park St, New York City, NY 10001" +187061,Lightning Charging Cable,2,14.95,04/04/19 08:16,"98 Park St, New York City, NY 10001" +187062,Apple Airpods Headphones,1,150.0,04/28/19 13:33,"353 Willow St, San Francisco, CA 94016" +187063,Lightning Charging Cable,1,14.95,04/21/19 13:39,"627 Chestnut St, Los Angeles, CA 90001" +187064,Wired Headphones,1,11.99,04/01/19 12:11,"705 Sunset St, Atlanta, GA 30301" +187065,iPhone,1,700.0,04/19/19 01:32,"892 Washington St, New York City, NY 10001" +187066,AAA Batteries (4-pack),1,2.99,04/23/19 07:14,"739 Park St, Seattle, WA 98101" +187067,AA Batteries (4-pack),1,3.84,04/02/19 14:58,"819 Main St, New York City, NY 10001" +187068,27in FHD Monitor,1,149.99,04/27/19 08:38,"915 Meadow St, Seattle, WA 98101" +187069,AAA Batteries (4-pack),2,2.99,04/18/19 12:36,"585 Dogwood St, Los Angeles, CA 90001" +187070,AA Batteries (4-pack),2,3.84,04/04/19 18:31,"357 Highland St, Los Angeles, CA 90001" +187071,AA Batteries (4-pack),1,3.84,04/02/19 19:55,"766 Lakeview St, Austin, TX 73301" +187072,Apple Airpods Headphones,1,150.0,04/17/19 00:53,"59 Meadow St, New York City, NY 10001" +187073,AAA Batteries (4-pack),1,2.99,04/19/19 01:30,"596 Cedar St, Dallas, TX 75001" +187074,AAA Batteries (4-pack),2,2.99,04/03/19 21:25,"997 Hickory St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +187075,27in FHD Monitor,1,149.99,04/23/19 07:48,"52 2nd St, Portland, OR 97035" +187076,20in Monitor,1,109.99,04/12/19 21:11,"289 Meadow St, Los Angeles, CA 90001" +187077,AA Batteries (4-pack),1,3.84,04/13/19 21:40,"915 Lakeview St, San Francisco, CA 94016" +187078,AAA Batteries (4-pack),1,2.99,04/11/19 14:47,"928 Washington St, Atlanta, GA 30301" +187079,iPhone,1,700,04/08/19 13:56,"517 Center St, Seattle, WA 98101" +187080,AA Batteries (4-pack),1,3.84,04/20/19 01:09,"93 Cherry St, Los Angeles, CA 90001" +187081,20in Monitor,1,109.99,04/14/19 12:00,"278 Park St, Austin, TX 73301" +187082,AA Batteries (4-pack),2,3.84,04/30/19 20:34,"676 Hill St, Portland, OR 97035" +187083,USB-C Charging Cable,1,11.95,04/03/19 18:21,"938 11th St, Boston, MA 02215" +187084,Lightning Charging Cable,1,14.95,04/02/19 22:47,"761 Walnut St, Austin, TX 73301" +187085,AAA Batteries (4-pack),1,2.99,04/04/19 16:51,"991 5th St, Atlanta, GA 30301" +187086,Bose SoundSport Headphones,1,99.99,04/15/19 09:29,"28 Maple St, San Francisco, CA 94016" +187087,27in FHD Monitor,1,149.99,04/06/19 13:22,"371 11th St, Portland, OR 97035" +187088,34in Ultrawide Monitor,1,379.99,04/01/19 15:37,"150 Washington St, San Francisco, CA 94016" +187089,AAA Batteries (4-pack),1,2.99,04/28/19 16:39,"334 Wilson St, Boston, MA 02215" +187090,Bose SoundSport Headphones,1,99.99,04/23/19 13:01,"635 Walnut St, New York City, NY 10001" +187091,Google Phone,1,600,04/05/19 10:18,"750 West St, Los Angeles, CA 90001" +187092,Wired Headphones,1,11.99,04/17/19 10:58,"210 Church St, New York City, NY 10001" +187093,27in 4K Gaming Monitor,1,389.99,04/01/19 20:16,"945 North St, Austin, TX 73301" +187094,Wired Headphones,1,11.99,04/17/19 19:33,"103 Walnut St, Boston, MA 02215" +187095,USB-C Charging Cable,1,11.95,04/23/19 15:34,"195 Lincoln St, San Francisco, CA 94016" +187096,Google Phone,1,600,04/12/19 07:47,"724 Lincoln St, San Francisco, CA 94016" +187097,ThinkPad Laptop,1,999.99,04/05/19 11:37,"745 Maple St, Boston, MA 02215" +187098,AA Batteries (4-pack),1,3.84,04/02/19 21:00,"607 Wilson St, Atlanta, GA 30301" +187099,Vareebadd Phone,1,400,04/08/19 06:51,"537 Sunset St, Boston, MA 02215" +187100,Lightning Charging Cable,1,14.95,04/15/19 11:17,"638 Maple St, Boston, MA 02215" +187101,Apple Airpods Headphones,1,150,04/25/19 09:42,"587 Cedar St, Boston, MA 02215" +187102,34in Ultrawide Monitor,1,379.99,04/03/19 09:53,"113 Forest St, Los Angeles, CA 90001" +187103,AA Batteries (4-pack),1,3.84,04/09/19 12:26,"164 Lake St, Portland, OR 97035" +187104,Apple Airpods Headphones,1,150,04/20/19 22:05,"374 Forest St, San Francisco, CA 94016" +187105,Bose SoundSport Headphones,1,99.99,04/18/19 20:45,"114 River St, San Francisco, CA 94016" +187106,Lightning Charging Cable,1,14.95,04/28/19 16:07,"355 Spruce St, Dallas, TX 75001" +187107,USB-C Charging Cable,1,11.95,04/21/19 16:52,"268 Dogwood St, New York City, NY 10001" +187107,Google Phone,1,600,04/21/19 16:52,"268 Dogwood St, New York City, NY 10001" +187108,Apple Airpods Headphones,1,150,04/28/19 07:03,"138 9th St, New York City, NY 10001" +187109,Apple Airpods Headphones,1,150,04/01/19 16:28,"915 Madison St, Dallas, TX 75001" +187110,Bose SoundSport Headphones,1,99.99,04/18/19 17:22,"774 North St, Boston, MA 02215" +187111,Wired Headphones,1,11.99,04/14/19 18:38,"113 Ridge St, Dallas, TX 75001" +187112,Bose SoundSport Headphones,1,99.99,04/11/19 19:40,"875 12th St, Dallas, TX 75001" +187113,34in Ultrawide Monitor,1,379.99,04/17/19 13:21,"224 Cherry St, Los Angeles, CA 90001" +187114,Apple Airpods Headphones,1,150,04/10/19 15:58,"882 Spruce St, New York City, NY 10001" +187115,AA Batteries (4-pack),1,3.84,04/03/19 15:42,"421 Walnut St, San Francisco, CA 94016" +187116,Lightning Charging Cable,1,14.95,04/03/19 22:29,"170 Spruce St, Boston, MA 02215" +187117,Apple Airpods Headphones,1,150,04/22/19 17:24,"179 Pine St, New York City, NY 10001" +187118,ThinkPad Laptop,1,999.99,04/16/19 14:21,"721 Hill St, San Francisco, CA 94016" +187119,27in FHD Monitor,1,149.99,04/10/19 20:26,"299 12th St, San Francisco, CA 94016" +187120,AAA Batteries (4-pack),1,2.99,04/28/19 21:36,"831 Cedar St, Boston, MA 02215" +187121,Lightning Charging Cable,1,14.95,04/10/19 15:51,"498 Ridge St, Dallas, TX 75001" +187122,USB-C Charging Cable,1,11.95,04/24/19 22:37,"704 12th St, New York City, NY 10001" +187123,AA Batteries (4-pack),1,3.84,04/13/19 18:38,"561 Wilson St, San Francisco, CA 94016" +187124,Wired Headphones,1,11.99,04/10/19 16:59,"97 Cherry St, Atlanta, GA 30301" +187125,LG Dryer,1,600.0,04/14/19 08:16,"610 14th St, San Francisco, CA 94016" +187126,Bose SoundSport Headphones,1,99.99,04/30/19 18:47,"561 Cedar St, San Francisco, CA 94016" +187126,Bose SoundSport Headphones,1,99.99,04/30/19 18:47,"561 Cedar St, San Francisco, CA 94016" +187127,AAA Batteries (4-pack),2,2.99,04/21/19 09:50,"863 4th St, San Francisco, CA 94016" +187128,Lightning Charging Cable,1,14.95,04/23/19 10:31,"941 Lincoln St, San Francisco, CA 94016" +187129,Apple Airpods Headphones,1,150,04/29/19 17:54,"151 Willow St, New York City, NY 10001" +187130,Lightning Charging Cable,1,14.95,04/11/19 09:37,"405 6th St, Boston, MA 02215" +187131,34in Ultrawide Monitor,1,379.99,04/18/19 08:04,"701 Lincoln St, San Francisco, CA 94016" +187132,34in Ultrawide Monitor,1,379.99,04/17/19 12:29,"953 Hill St, Boston, MA 02215" +187133,ThinkPad Laptop,1,999.99,04/14/19 13:55,"900 Pine St, Austin, TX 73301" +187134,AA Batteries (4-pack),1,3.84,04/04/19 23:38,"91 Center St, San Francisco, CA 94016" +187135,USB-C Charging Cable,2,11.95,04/23/19 12:51,"216 Hickory St, New York City, NY 10001" +187136,Lightning Charging Cable,1,14.95,04/01/19 14:16,"494 11th St, San Francisco, CA 94016" +187137,ThinkPad Laptop,1,999.99,04/21/19 04:07,"363 South St, Atlanta, GA 30301" +187138,Macbook Pro Laptop,1,1700,04/22/19 17:01,"515 7th St, Atlanta, GA 30301" +187139,iPhone,1,700,04/11/19 10:03,"631 Highland St, Portland, OR 97035" +187140,Apple Airpods Headphones,1,150,04/01/19 12:05,"832 Lakeview St, New York City, NY 10001" +187141,27in FHD Monitor,1,149.99,04/09/19 08:06,"579 Main St, San Francisco, CA 94016" +187142,USB-C Charging Cable,1,11.95,04/08/19 06:53,"573 Madison St, Dallas, TX 75001" +187143,Wired Headphones,1,11.99,04/11/19 18:14,"356 Johnson St, Los Angeles, CA 90001" +187144,Bose SoundSport Headphones,1,99.99,04/11/19 00:45,"765 Lincoln St, Seattle, WA 98101" +187145,AA Batteries (4-pack),1,3.84,04/04/19 12:22,"8 14th St, Atlanta, GA 30301" +187146,ThinkPad Laptop,1,999.99,04/25/19 19:20,"130 Church St, San Francisco, CA 94016" +187147,Apple Airpods Headphones,1,150,04/26/19 21:22,"228 5th St, Portland, ME 04101" +187148,Apple Airpods Headphones,1,150,04/26/19 12:53,"917 Madison St, Dallas, TX 75001" +187149,34in Ultrawide Monitor,1,379.99,04/22/19 20:16,"411 West St, Los Angeles, CA 90001" +187150,Apple Airpods Headphones,1,150,04/15/19 09:30,"271 Willow St, San Francisco, CA 94016" +187151,Apple Airpods Headphones,1,150,04/27/19 15:32,"719 Lake St, Seattle, WA 98101" +187152,AA Batteries (4-pack),2,3.84,04/09/19 08:55,"828 Hickory St, New York City, NY 10001" +187153,USB-C Charging Cable,1,11.95,04/08/19 19:35,"842 1st St, San Francisco, CA 94016" +187154,Lightning Charging Cable,1,14.95,04/14/19 05:56,"446 Spruce St, San Francisco, CA 94016" +187155,LG Dryer,1,600.0,04/02/19 18:47,"174 River St, San Francisco, CA 94016" +187156,USB-C Charging Cable,1,11.95,04/01/19 17:20,"161 Highland St, Atlanta, GA 30301" +187157,Wired Headphones,1,11.99,04/08/19 19:09,"930 Hill St, Atlanta, GA 30301" +187158,Flatscreen TV,1,300,04/20/19 15:31,"30 West St, Los Angeles, CA 90001" +187159,AAA Batteries (4-pack),2,2.99,04/16/19 20:54,"194 14th St, New York City, NY 10001" +187160,iPhone,1,700,04/28/19 17:02,"306 Walnut St, Seattle, WA 98101" +187161,AA Batteries (4-pack),1,3.84,04/13/19 13:10,"330 Lake St, Los Angeles, CA 90001" +187162,27in FHD Monitor,1,149.99,04/18/19 19:48,"30 Washington St, New York City, NY 10001" +187163,Wired Headphones,1,11.99,04/10/19 18:15,"671 4th St, Portland, OR 97035" +187164,Lightning Charging Cable,1,14.95,04/03/19 18:49,"381 Jackson St, San Francisco, CA 94016" +187165,Bose SoundSport Headphones,1,99.99,05/01/19 00:02,"488 Adams St, Boston, MA 02215" +187166,27in FHD Monitor,1,149.99,04/06/19 21:09,"163 Chestnut St, Boston, MA 02215" +187167,34in Ultrawide Monitor,1,379.99,04/08/19 00:19,"136 Highland St, Los Angeles, CA 90001" +187168,Wired Headphones,1,11.99,04/19/19 22:49,"857 Elm St, Los Angeles, CA 90001" +187168,USB-C Charging Cable,1,11.95,04/19/19 22:49,"857 Elm St, Los Angeles, CA 90001" +187169,34in Ultrawide Monitor,1,379.99,04/07/19 21:28,"227 Cherry St, Portland, OR 97035" +187170,27in FHD Monitor,1,149.99,04/23/19 17:15,"987 Main St, Seattle, WA 98101" +187171,Lightning Charging Cable,2,14.95,04/30/19 09:06,"285 9th St, Los Angeles, CA 90001" +187172,Bose SoundSport Headphones,1,99.99,04/04/19 19:33,"76 Main St, Dallas, TX 75001" +187173,34in Ultrawide Monitor,1,379.99,04/10/19 08:13,"608 12th St, Atlanta, GA 30301" +187174,Bose SoundSport Headphones,1,99.99,04/20/19 14:33,"773 9th St, Seattle, WA 98101" +187175,Bose SoundSport Headphones,1,99.99,04/25/19 23:04,"141 Lincoln St, Austin, TX 73301" +187176,AA Batteries (4-pack),3,3.84,04/05/19 12:33,"866 Wilson St, San Francisco, CA 94016" +187177,Lightning Charging Cable,1,14.95,04/16/19 00:10,"573 9th St, Portland, OR 97035" +187178,USB-C Charging Cable,1,11.95,04/12/19 19:35,"392 11th St, San Francisco, CA 94016" +187179,AA Batteries (4-pack),2,3.84,04/02/19 10:25,"136 Pine St, Atlanta, GA 30301" +187180,Apple Airpods Headphones,1,150,04/21/19 20:50,"601 Main St, Los Angeles, CA 90001" +187181,AA Batteries (4-pack),2,3.84,04/15/19 10:07,"990 Sunset St, Seattle, WA 98101" +187182,AA Batteries (4-pack),1,3.84,04/22/19 21:19,"192 Chestnut St, Atlanta, GA 30301" +187183,AAA Batteries (4-pack),2,2.99,04/28/19 13:51,"687 Ridge St, Los Angeles, CA 90001" +187184,ThinkPad Laptop,1,999.99,04/24/19 21:42,"416 14th St, Los Angeles, CA 90001" +187185,Bose SoundSport Headphones,1,99.99,04/02/19 05:52,"714 Madison St, Los Angeles, CA 90001" +187186,ThinkPad Laptop,1,999.99,04/06/19 12:57,"691 Sunset St, Austin, TX 73301" +187187,USB-C Charging Cable,1,11.95,04/23/19 11:00,"560 Hill St, New York City, NY 10001" +187188,27in FHD Monitor,1,149.99,04/15/19 23:46,"709 4th St, New York City, NY 10001" +187188,Apple Airpods Headphones,1,150,04/15/19 23:46,"709 4th St, New York City, NY 10001" +187189,AAA Batteries (4-pack),1,2.99,04/29/19 09:13,"840 Forest St, Dallas, TX 75001" +187190,27in 4K Gaming Monitor,1,389.99,04/14/19 10:25,"811 Jefferson St, Boston, MA 02215" +187191,AA Batteries (4-pack),2,3.84,04/13/19 12:49,"735 Lakeview St, Boston, MA 02215" +187192,Flatscreen TV,1,300,04/15/19 14:06,"119 Sunset St, Boston, MA 02215" +187193,27in 4K Gaming Monitor,1,389.99,04/19/19 09:58,"600 Dogwood St, San Francisco, CA 94016" +187194,Google Phone,1,600,04/27/19 15:40,"747 Jefferson St, Atlanta, GA 30301" +187195,20in Monitor,1,109.99,04/04/19 16:51,"744 River St, Portland, OR 97035" +187196,27in FHD Monitor,1,149.99,04/15/19 19:25,"93 Center St, Seattle, WA 98101" +187197,AA Batteries (4-pack),1,3.84,04/07/19 13:16,"797 Jackson St, New York City, NY 10001" +187198,Bose SoundSport Headphones,1,99.99,04/28/19 19:05,"754 Cherry St, Austin, TX 73301" +187199,iPhone,1,700,04/11/19 05:33,"125 North St, New York City, NY 10001" +187199,Lightning Charging Cable,1,14.95,04/11/19 05:33,"125 North St, New York City, NY 10001" +187199,Wired Headphones,1,11.99,04/11/19 05:33,"125 North St, New York City, NY 10001" +187200,USB-C Charging Cable,1,11.95,04/12/19 12:24,"251 Maple St, San Francisco, CA 94016" +187201,USB-C Charging Cable,1,11.95,04/27/19 18:58,"688 Willow St, Portland, ME 04101" +187202,Apple Airpods Headphones,1,150,04/25/19 06:58,"710 Jefferson St, Boston, MA 02215" +187203,Bose SoundSport Headphones,1,99.99,04/13/19 22:32,"58 2nd St, Boston, MA 02215" +187204,AAA Batteries (4-pack),1,2.99,04/10/19 08:11,"411 Lincoln St, San Francisco, CA 94016" +187205,USB-C Charging Cable,1,11.95,04/11/19 11:42,"154 Jackson St, Austin, TX 73301" +187206,Lightning Charging Cable,1,14.95,04/07/19 22:03,"946 7th St, New York City, NY 10001" +187207,Google Phone,1,600,04/29/19 20:46,"963 West St, San Francisco, CA 94016" +187208,Lightning Charging Cable,1,14.95,04/03/19 16:59,"851 Sunset St, New York City, NY 10001" +187209,Lightning Charging Cable,1,14.95,04/12/19 22:10,"250 Lincoln St, San Francisco, CA 94016" +187209,AA Batteries (4-pack),1,3.84,04/12/19 22:10,"250 Lincoln St, San Francisco, CA 94016" +187210,AAA Batteries (4-pack),1,2.99,04/10/19 12:36,"983 Main St, Dallas, TX 75001" +187211,Wired Headphones,1,11.99,04/28/19 01:14,"240 12th St, San Francisco, CA 94016" +187212,AAA Batteries (4-pack),1,2.99,04/16/19 09:27,"233 Hickory St, Portland, OR 97035" +187213,Bose SoundSport Headphones,1,99.99,04/08/19 18:56,"795 Sunset St, Portland, OR 97035" +187214,Bose SoundSport Headphones,1,99.99,04/22/19 10:56,"327 Cherry St, Los Angeles, CA 90001" +187215,AA Batteries (4-pack),1,3.84,04/03/19 19:08,"243 Jackson St, Portland, OR 97035" +187216,Flatscreen TV,1,300,04/10/19 10:25,"106 Sunset St, Atlanta, GA 30301" +187217,Wired Headphones,1,11.99,04/07/19 16:45,"394 12th St, San Francisco, CA 94016" +187218,AA Batteries (4-pack),1,3.84,04/06/19 22:26,"568 Lakeview St, New York City, NY 10001" +187219,34in Ultrawide Monitor,1,379.99,04/06/19 19:02,"108 North St, Austin, TX 73301" +187220,USB-C Charging Cable,1,11.95,04/02/19 14:46,"799 14th St, Dallas, TX 75001" +187221,Apple Airpods Headphones,1,150,04/23/19 18:51,"782 Wilson St, Los Angeles, CA 90001" +187222,Bose SoundSport Headphones,1,99.99,04/06/19 23:28,"921 South St, Boston, MA 02215" +187223,Apple Airpods Headphones,1,150,04/18/19 15:22,"321 11th St, Dallas, TX 75001" +187224,Lightning Charging Cable,1,14.95,04/28/19 13:48,"622 Chestnut St, Boston, MA 02215" +187225,Apple Airpods Headphones,1,150,04/16/19 12:53,"484 Church St, Los Angeles, CA 90001" +187226,27in FHD Monitor,1,149.99,04/14/19 17:03,"869 River St, Los Angeles, CA 90001" +187227,USB-C Charging Cable,1,11.95,04/13/19 19:05,"908 Madison St, New York City, NY 10001" +187228,Apple Airpods Headphones,1,150,04/30/19 07:04,"99 12th St, Portland, OR 97035" +187229,AAA Batteries (4-pack),5,2.99,04/01/19 13:38,"200 Forest St, San Francisco, CA 94016" +187230,20in Monitor,1,109.99,04/30/19 22:44,"142 North St, San Francisco, CA 94016" +187231,27in 4K Gaming Monitor,1,389.99,04/18/19 20:39,"382 10th St, Los Angeles, CA 90001" +187232,Wired Headphones,1,11.99,04/25/19 11:28,"764 Cherry St, Seattle, WA 98101" +187233,AAA Batteries (4-pack),1,2.99,04/09/19 16:10,"681 Ridge St, San Francisco, CA 94016" +187234,Apple Airpods Headphones,1,150,04/21/19 20:42,"874 13th St, Atlanta, GA 30301" +187235,Lightning Charging Cable,1,14.95,04/04/19 21:56,"734 Washington St, Boston, MA 02215" +187236,Apple Airpods Headphones,1,150,04/05/19 21:13,"346 Elm St, Seattle, WA 98101" +187237,Macbook Pro Laptop,1,1700,04/09/19 18:17,"163 Jackson St, Los Angeles, CA 90001" +187238,Lightning Charging Cable,1,14.95,04/28/19 03:10,"264 Highland St, San Francisco, CA 94016" +187239,34in Ultrawide Monitor,1,379.99,04/20/19 15:46,"783 Adams St, Portland, ME 04101" +187240,Google Phone,1,600,04/29/19 13:35,"717 4th St, Los Angeles, CA 90001" +187241,27in FHD Monitor,1,149.99,04/24/19 18:47,"335 Maple St, San Francisco, CA 94016" +187242,USB-C Charging Cable,2,11.95,04/08/19 23:53,"324 12th St, New York City, NY 10001" +187243,Wired Headphones,1,11.99,04/01/19 08:39,"312 Adams St, New York City, NY 10001" +187244,Wired Headphones,1,11.99,04/22/19 09:28,"96 Highland St, New York City, NY 10001" +187245,27in FHD Monitor,1,149.99,04/30/19 20:37,"143 Jackson St, Atlanta, GA 30301" +187246,Lightning Charging Cable,1,14.95,04/07/19 06:32,"742 Lake St, Seattle, WA 98101" +187247,AAA Batteries (4-pack),6,2.99,04/26/19 17:57,"802 Dogwood St, San Francisco, CA 94016" +187248,27in 4K Gaming Monitor,1,389.99,04/26/19 11:22,"592 Center St, San Francisco, CA 94016" +187249,USB-C Charging Cable,2,11.95,04/21/19 16:59,"676 6th St, New York City, NY 10001" +187250,Google Phone,1,600,04/25/19 23:04,"778 Lake St, Dallas, TX 75001" +187250,USB-C Charging Cable,1,11.95,04/25/19 23:04,"778 Lake St, Dallas, TX 75001" +187251,AA Batteries (4-pack),1,3.84,04/20/19 16:51,"482 Adams St, Seattle, WA 98101" +187252,AAA Batteries (4-pack),1,2.99,04/26/19 11:39,"172 Washington St, Dallas, TX 75001" +187253,Lightning Charging Cable,1,14.95,04/23/19 13:38,"992 Lakeview St, Los Angeles, CA 90001" +187254,27in FHD Monitor,1,149.99,04/26/19 11:26,"793 Johnson St, Portland, OR 97035" +187255,Flatscreen TV,1,300,04/18/19 12:17,"857 4th St, San Francisco, CA 94016" +187256,Bose SoundSport Headphones,1,99.99,04/02/19 21:11,"166 Wilson St, Boston, MA 02215" +187257,Wired Headphones,1,11.99,04/04/19 01:27,"430 Willow St, Austin, TX 73301" +187258,Flatscreen TV,1,300,04/02/19 20:05,"758 11th St, Austin, TX 73301" +187259,Flatscreen TV,1,300,04/01/19 14:23,"380 Pine St, San Francisco, CA 94016" +187260,Wired Headphones,1,11.99,04/10/19 20:28,"341 2nd St, Atlanta, GA 30301" +187261,Lightning Charging Cable,2,14.95,04/25/19 13:18,"126 Madison St, Boston, MA 02215" +187262,AAA Batteries (4-pack),1,2.99,04/29/19 13:08,"671 Madison St, New York City, NY 10001" +187263,Flatscreen TV,1,300,04/29/19 08:10,"572 14th St, New York City, NY 10001" +187264,Lightning Charging Cable,1,14.95,04/21/19 12:11,"963 Madison St, San Francisco, CA 94016" +187265,Apple Airpods Headphones,1,150,04/04/19 11:31,"642 6th St, Boston, MA 02215" +187266,Apple Airpods Headphones,1,150,04/08/19 16:06,"750 Chestnut St, Los Angeles, CA 90001" +187267,AA Batteries (4-pack),2,3.84,04/23/19 15:23,"927 Jackson St, Dallas, TX 75001" +187268,Macbook Pro Laptop,1,1700,04/28/19 16:41,"14 Pine St, Boston, MA 02215" +187269,AA Batteries (4-pack),1,3.84,04/13/19 00:17,"246 2nd St, San Francisco, CA 94016" +187270,Wired Headphones,1,11.99,04/08/19 13:42,"314 4th St, Los Angeles, CA 90001" +187271,Lightning Charging Cable,1,14.95,04/14/19 00:28,"564 2nd St, Atlanta, GA 30301" +187272,27in FHD Monitor,1,149.99,04/23/19 16:19,"960 Main St, Boston, MA 02215" +187273,AA Batteries (4-pack),4,3.84,04/01/19 17:48,"306 9th St, San Francisco, CA 94016" +187274,27in 4K Gaming Monitor,1,389.99,04/17/19 21:29,"588 North St, Los Angeles, CA 90001" +187275,Macbook Pro Laptop,1,1700,04/08/19 20:11,"877 Cedar St, New York City, NY 10001" +187276,Wired Headphones,1,11.99,04/06/19 21:53,"881 Chestnut St, San Francisco, CA 94016" +187277,27in 4K Gaming Monitor,1,389.99,04/28/19 11:33,"766 Ridge St, San Francisco, CA 94016" +187278,Flatscreen TV,1,300,04/06/19 13:23,"348 Madison St, New York City, NY 10001" +187279,Lightning Charging Cable,1,14.95,04/10/19 12:20,"858 Elm St, Dallas, TX 75001" +187280,USB-C Charging Cable,1,11.95,04/23/19 20:44,"444 Center St, Seattle, WA 98101" +187281,AAA Batteries (4-pack),2,2.99,04/11/19 21:51,"604 Pine St, New York City, NY 10001" +187282,AA Batteries (4-pack),1,3.84,04/13/19 14:50,"960 2nd St, San Francisco, CA 94016" +187283,27in FHD Monitor,1,149.99,04/18/19 10:59,"350 6th St, New York City, NY 10001" +187284,AA Batteries (4-pack),1,3.84,04/17/19 17:36,"117 North St, Dallas, TX 75001" +187285,LG Dryer,1,600.0,04/28/19 00:48,"740 Maple St, San Francisco, CA 94016" +187286,34in Ultrawide Monitor,1,379.99,04/20/19 05:12,"713 2nd St, Seattle, WA 98101" +187287,Lightning Charging Cable,1,14.95,04/30/19 10:29,"171 4th St, Los Angeles, CA 90001" +187288,34in Ultrawide Monitor,1,379.99,04/29/19 20:19,"884 4th St, San Francisco, CA 94016" +187288,AAA Batteries (4-pack),1,2.99,04/29/19 20:19,"884 4th St, San Francisco, CA 94016" +187289,Wired Headphones,1,11.99,04/05/19 22:27,"696 Hickory St, New York City, NY 10001" +187290,27in 4K Gaming Monitor,1,389.99,04/12/19 14:53,"828 Park St, Austin, TX 73301" +187291,Bose SoundSport Headphones,1,99.99,04/03/19 13:00,"635 Walnut St, San Francisco, CA 94016" +187292,AAA Batteries (4-pack),2,2.99,04/13/19 15:40,"555 7th St, Boston, MA 02215" +187293,ThinkPad Laptop,1,999.99,04/13/19 14:53,"670 12th St, Atlanta, GA 30301" +187294,AAA Batteries (4-pack),2,2.99,04/22/19 17:19,"883 12th St, San Francisco, CA 94016" +187295,27in FHD Monitor,1,149.99,04/25/19 16:21,"720 Sunset St, San Francisco, CA 94016" +187296,Google Phone,1,600,04/05/19 15:46,"196 12th St, Dallas, TX 75001" +187297,Bose SoundSport Headphones,1,99.99,04/12/19 14:41,"669 Cedar St, Atlanta, GA 30301" +187298,ThinkPad Laptop,1,999.99,04/12/19 01:53,"60 Cherry St, San Francisco, CA 94016" +187299,AAA Batteries (4-pack),2,2.99,04/29/19 18:46,"787 Lincoln St, Los Angeles, CA 90001" +187300,Lightning Charging Cable,1,14.95,04/28/19 15:23,"329 Church St, Dallas, TX 75001" +187301,Lightning Charging Cable,1,14.95,04/18/19 11:50,"520 Hill St, New York City, NY 10001" +187302,Apple Airpods Headphones,1,150,04/25/19 12:48,"706 Church St, Los Angeles, CA 90001" +187303,Bose SoundSport Headphones,1,99.99,04/15/19 12:10,"223 14th St, Austin, TX 73301" +187304,USB-C Charging Cable,1,11.95,04/23/19 22:02,"393 2nd St, Los Angeles, CA 90001" +187305,Apple Airpods Headphones,1,150,04/06/19 14:32,"881 Maple St, San Francisco, CA 94016" +187306,AA Batteries (4-pack),2,3.84,04/04/19 09:33,"607 14th St, New York City, NY 10001" +187307,Apple Airpods Headphones,1,150,04/05/19 23:50,"854 Center St, Austin, TX 73301" +187308,Lightning Charging Cable,1,14.95,04/28/19 16:07,"406 Dogwood St, New York City, NY 10001" +187309,USB-C Charging Cable,1,11.95,04/22/19 12:27,"539 Highland St, New York City, NY 10001" +187310,USB-C Charging Cable,1,11.95,04/27/19 20:31,"151 5th St, San Francisco, CA 94016" +187311,Flatscreen TV,1,300,04/19/19 11:13,"70 5th St, San Francisco, CA 94016" +187312,AA Batteries (4-pack),1,3.84,04/21/19 15:58,"152 Hill St, Portland, OR 97035" +187313,Bose SoundSport Headphones,1,99.99,04/28/19 15:34,"249 Johnson St, Portland, OR 97035" +187314,Lightning Charging Cable,1,14.95,04/29/19 22:03,"121 Dogwood St, Seattle, WA 98101" +187315,Vareebadd Phone,1,400,04/13/19 20:50,"469 Sunset St, Boston, MA 02215" +187316,iPhone,1,700,04/08/19 09:59,"533 5th St, Portland, ME 04101" +187316,Lightning Charging Cable,1,14.95,04/08/19 09:59,"533 5th St, Portland, ME 04101" +187317,Lightning Charging Cable,1,14.95,04/23/19 12:51,"822 Ridge St, New York City, NY 10001" +187318,Macbook Pro Laptop,1,1700,04/17/19 09:36,"695 Cherry St, Austin, TX 73301" +187319,Google Phone,1,600,04/24/19 12:34,"358 11th St, Los Angeles, CA 90001" +187319,USB-C Charging Cable,1,11.95,04/24/19 12:34,"358 11th St, Los Angeles, CA 90001" +187320,Wired Headphones,1,11.99,04/02/19 09:03,"832 South St, San Francisco, CA 94016" +187321,Flatscreen TV,1,300,04/14/19 21:55,"529 Chestnut St, Seattle, WA 98101" +187322,AA Batteries (4-pack),1,3.84,04/18/19 21:58,"717 Hickory St, Atlanta, GA 30301" +187323,AAA Batteries (4-pack),1,2.99,04/10/19 22:47,"131 North St, Atlanta, GA 30301" +187324,Macbook Pro Laptop,1,1700,04/15/19 16:27,"617 Lake St, Los Angeles, CA 90001" +187325,AAA Batteries (4-pack),1,2.99,04/12/19 08:41,"768 Jackson St, San Francisco, CA 94016" +187326,AAA Batteries (4-pack),2,2.99,04/28/19 11:06,"589 Cherry St, Boston, MA 02215" +187327,27in FHD Monitor,1,149.99,04/13/19 17:03,"789 Highland St, Boston, MA 02215" +187328,iPhone,1,700,04/14/19 15:02,"294 Dogwood St, San Francisco, CA 94016" +187329,AA Batteries (4-pack),1,3.84,04/20/19 00:56,"316 6th St, Portland, OR 97035" +187329,Lightning Charging Cable,1,14.95,04/20/19 00:56,"316 6th St, Portland, OR 97035" +187330,iPhone,1,700,04/09/19 15:09,"414 Ridge St, Portland, OR 97035" +187331,20in Monitor,1,109.99,04/13/19 09:52,"649 Church St, Seattle, WA 98101" +187332,Lightning Charging Cable,1,14.95,04/28/19 15:06,"139 Lake St, Seattle, WA 98101" +187333,AA Batteries (4-pack),2,3.84,04/30/19 18:48,"226 Forest St, Portland, OR 97035" +187334,34in Ultrawide Monitor,1,379.99,04/19/19 13:38,"250 Lake St, San Francisco, CA 94016" +187335,AA Batteries (4-pack),3,3.84,04/12/19 00:41,"620 Sunset St, San Francisco, CA 94016" +187336,Google Phone,1,600,04/09/19 17:16,"661 North St, San Francisco, CA 94016" +187336,Bose SoundSport Headphones,1,99.99,04/09/19 17:16,"661 North St, San Francisco, CA 94016" +187337,AAA Batteries (4-pack),2,2.99,04/24/19 15:19,"295 14th St, San Francisco, CA 94016" +187338,USB-C Charging Cable,1,11.95,04/13/19 22:52,"359 9th St, Atlanta, GA 30301" +187339,20in Monitor,1,109.99,04/08/19 16:13,"73 Pine St, Boston, MA 02215" +187340,USB-C Charging Cable,1,11.95,04/16/19 15:57,"654 6th St, Portland, ME 04101" +187341,Wired Headphones,1,11.99,04/29/19 23:35,"439 Maple St, San Francisco, CA 94016" +187342,27in FHD Monitor,1,149.99,04/08/19 14:44,"475 Elm St, Los Angeles, CA 90001" +187343,ThinkPad Laptop,1,999.99,04/11/19 22:36,"895 Willow St, Dallas, TX 75001" +187344,Lightning Charging Cable,1,14.95,04/09/19 08:19,"580 Elm St, Los Angeles, CA 90001" +187345,AA Batteries (4-pack),1,3.84,04/14/19 12:00,"556 North St, San Francisco, CA 94016" +187346,Wired Headphones,1,11.99,04/03/19 15:40,"360 Dogwood St, Atlanta, GA 30301" +187347,AAA Batteries (4-pack),2,2.99,04/21/19 10:39,"440 Jefferson St, Austin, TX 73301" +187348,Wired Headphones,1,11.99,04/16/19 11:26,"291 Forest St, San Francisco, CA 94016" +187349,iPhone,1,700,04/15/19 17:39,"120 Ridge St, Seattle, WA 98101" +187350,Wired Headphones,1,11.99,04/01/19 12:35,"320 Highland St, Boston, MA 02215" +187351,Vareebadd Phone,1,400,04/13/19 13:54,"841 Park St, San Francisco, CA 94016" +187352,20in Monitor,1,109.99,04/30/19 07:05,"24 Johnson St, Boston, MA 02215" +187353,34in Ultrawide Monitor,1,379.99,04/20/19 17:21,"91 6th St, San Francisco, CA 94016" +187354,Bose SoundSport Headphones,1,99.99,04/26/19 12:58,"768 Lake St, New York City, NY 10001" +187355,27in FHD Monitor,1,149.99,04/09/19 07:59,"52 Forest St, Los Angeles, CA 90001" +187356,USB-C Charging Cable,1,11.95,04/08/19 07:55,"324 Jefferson St, Boston, MA 02215" +187357,AAA Batteries (4-pack),3,2.99,04/07/19 17:36,"320 Highland St, New York City, NY 10001" +187358,Wired Headphones,2,11.99,04/26/19 11:26,"449 Pine St, San Francisco, CA 94016" +187359,Flatscreen TV,1,300,04/27/19 23:51,"865 Lakeview St, Seattle, WA 98101" +187360,iPhone,1,700,04/01/19 23:54,"770 Center St, Portland, OR 97035" +187361,USB-C Charging Cable,1,11.95,04/06/19 19:06,"841 North St, San Francisco, CA 94016" +187362,Macbook Pro Laptop,1,1700,04/11/19 19:59,"352 1st St, Dallas, TX 75001" +187363,USB-C Charging Cable,1,11.95,04/03/19 23:13,"176 North St, San Francisco, CA 94016" +187364,27in 4K Gaming Monitor,1,389.99,04/13/19 14:32,"809 9th St, New York City, NY 10001" +187365,Flatscreen TV,1,300,04/07/19 15:51,"757 Willow St, Portland, OR 97035" +187366,AAA Batteries (4-pack),1,2.99,04/08/19 00:18,"58 9th St, New York City, NY 10001" +187366,AAA Batteries (4-pack),1,2.99,04/08/19 00:18,"58 9th St, New York City, NY 10001" +187367,iPhone,1,700,04/23/19 19:38,"275 North St, Seattle, WA 98101" +187367,Apple Airpods Headphones,1,150,04/23/19 19:38,"275 North St, Seattle, WA 98101" +187368,20in Monitor,1,109.99,04/30/19 21:35,"588 Forest St, San Francisco, CA 94016" +187369,Macbook Pro Laptop,1,1700,04/22/19 15:01,"745 Walnut St, Boston, MA 02215" +187370,AAA Batteries (4-pack),4,2.99,04/26/19 12:18,"145 Spruce St, San Francisco, CA 94016" +187371,Apple Airpods Headphones,1,150,04/04/19 18:54,"673 Sunset St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +187372,AA Batteries (4-pack),1,3.84,04/20/19 14:20,"234 Cherry St, San Francisco, CA 94016" +187373,USB-C Charging Cable,1,11.95,04/16/19 21:48,"371 12th St, San Francisco, CA 94016" +187374,Apple Airpods Headphones,1,150,04/07/19 17:15,"772 Willow St, San Francisco, CA 94016" +187375,USB-C Charging Cable,1,11.95,04/23/19 18:16,"913 Lakeview St, Austin, TX 73301" +187376,iPhone,1,700,04/26/19 23:08,"351 Park St, San Francisco, CA 94016" +187377,iPhone,1,700,04/08/19 11:14,"300 Lake St, Austin, TX 73301" +187378,Flatscreen TV,1,300,04/22/19 13:03,"105 Park St, Atlanta, GA 30301" +187379,27in 4K Gaming Monitor,1,389.99,04/13/19 06:02,"867 Washington St, Boston, MA 02215" +187380,27in 4K Gaming Monitor,1,389.99,04/14/19 11:22,"230 Maple St, Atlanta, GA 30301" +187381,AA Batteries (4-pack),1,3.84,04/07/19 15:53,"772 Hill St, Los Angeles, CA 90001" +187382,27in FHD Monitor,1,149.99,04/21/19 18:17,"98 Walnut St, San Francisco, CA 94016" +187383,Wired Headphones,1,11.99,04/19/19 19:58,"812 Wilson St, San Francisco, CA 94016" +187384,27in FHD Monitor,1,149.99,04/26/19 17:20,"140 Walnut St, Boston, MA 02215" +187385,USB-C Charging Cable,1,11.95,04/30/19 21:57,"275 Adams St, Atlanta, GA 30301" +187386,Lightning Charging Cable,1,14.95,04/06/19 18:14,"288 South St, Los Angeles, CA 90001" +187387,AA Batteries (4-pack),1,3.84,04/04/19 18:39,"26 10th St, San Francisco, CA 94016" +187388,AAA Batteries (4-pack),1,2.99,04/27/19 17:04,"725 Dogwood St, Los Angeles, CA 90001" +187389,Wired Headphones,1,11.99,04/10/19 10:41,"402 Center St, New York City, NY 10001" +187390,AA Batteries (4-pack),1,3.84,04/02/19 18:24,"436 Walnut St, Dallas, TX 75001" +187391,Flatscreen TV,1,300,04/08/19 10:50,"184 Lincoln St, Seattle, WA 98101" +187392,Wired Headphones,1,11.99,04/12/19 17:49,"644 10th St, New York City, NY 10001" +187393,AAA Batteries (4-pack),3,2.99,04/22/19 11:56,"99 Adams St, Boston, MA 02215" +187394,Apple Airpods Headphones,1,150,04/08/19 14:12,"410 River St, Los Angeles, CA 90001" +187395,Wired Headphones,1,11.99,04/20/19 17:03,"263 Dogwood St, San Francisco, CA 94016" +187396,USB-C Charging Cable,1,11.95,04/05/19 22:22,"129 Lakeview St, San Francisco, CA 94016" +187397,iPhone,1,700,04/24/19 06:28,"26 North St, Los Angeles, CA 90001" +187398,Lightning Charging Cable,1,14.95,04/20/19 13:28,"194 Hill St, Boston, MA 02215" +187399,Lightning Charging Cable,1,14.95,04/27/19 07:44,"48 10th St, Seattle, WA 98101" +187400,Lightning Charging Cable,1,14.95,04/10/19 19:54,"460 Lake St, San Francisco, CA 94016" +187401,Wired Headphones,1,11.99,04/26/19 19:04,"911 Dogwood St, Seattle, WA 98101" +187402,ThinkPad Laptop,1,999.99,04/15/19 14:24,"251 9th St, San Francisco, CA 94016" +187403,Apple Airpods Headphones,1,150,04/28/19 17:45,"236 12th St, San Francisco, CA 94016" +187404,LG Dryer,1,600.0,04/13/19 19:34,"166 Spruce St, Atlanta, GA 30301" +187404,Bose SoundSport Headphones,1,99.99,04/13/19 19:34,"166 Spruce St, Atlanta, GA 30301" +187405,Macbook Pro Laptop,1,1700,04/03/19 15:04,"946 North St, San Francisco, CA 94016" +187406,USB-C Charging Cable,1,11.95,04/02/19 15:53,"32 4th St, Los Angeles, CA 90001" +187407,Flatscreen TV,1,300,04/02/19 20:25,"704 Washington St, New York City, NY 10001" +187408,Wired Headphones,1,11.99,04/01/19 10:08,"695 7th St, Boston, MA 02215" +187409,Wired Headphones,1,11.99,04/21/19 20:44,"811 Adams St, New York City, NY 10001" +187410,USB-C Charging Cable,1,11.95,04/13/19 09:29,"855 5th St, Dallas, TX 75001" +187411,ThinkPad Laptop,1,999.99,04/29/19 19:08,"363 Lincoln St, Boston, MA 02215" +187412,Flatscreen TV,1,300,04/14/19 20:45,"327 Dogwood St, Portland, OR 97035" +187413,Google Phone,1,600,04/22/19 17:50,"229 Lake St, New York City, NY 10001" +187414,Wired Headphones,2,11.99,04/23/19 09:16,"462 Center St, Austin, TX 73301" +187415,Vareebadd Phone,1,400,04/26/19 18:22,"903 4th St, Dallas, TX 75001" +187416,34in Ultrawide Monitor,1,379.99,04/17/19 06:21,"789 Cedar St, San Francisco, CA 94016" +187417,AAA Batteries (4-pack),1,2.99,04/07/19 13:00,"939 8th St, Atlanta, GA 30301" +187418,Bose SoundSport Headphones,1,99.99,04/07/19 19:11,"528 9th St, Dallas, TX 75001" +187419,AA Batteries (4-pack),1,3.84,04/15/19 14:39,"857 12th St, San Francisco, CA 94016" +187420,Bose SoundSport Headphones,1,99.99,04/06/19 18:02,"587 12th St, New York City, NY 10001" +187421,27in FHD Monitor,1,149.99,04/08/19 21:47,"163 2nd St, Atlanta, GA 30301" +187422,34in Ultrawide Monitor,1,379.99,04/23/19 15:12,"117 North St, New York City, NY 10001" +187422,Flatscreen TV,1,300,04/23/19 15:12,"117 North St, New York City, NY 10001" +187423,Macbook Pro Laptop,1,1700,04/20/19 11:16,"19 Elm St, New York City, NY 10001" +187424,Lightning Charging Cable,1,14.95,04/08/19 16:20,"418 11th St, San Francisco, CA 94016" +187425,AAA Batteries (4-pack),1,2.99,04/22/19 18:48,"276 Dogwood St, Dallas, TX 75001" +187426,Apple Airpods Headphones,1,150,04/23/19 13:51,"326 8th St, Los Angeles, CA 90001" +187427,USB-C Charging Cable,1,11.95,04/02/19 16:15,"902 14th St, Dallas, TX 75001" +187428,27in 4K Gaming Monitor,1,389.99,04/28/19 11:48,"702 Pine St, San Francisco, CA 94016" +187429,Apple Airpods Headphones,1,150,04/03/19 14:48,"736 Lincoln St, San Francisco, CA 94016" +187430,Lightning Charging Cable,2,14.95,04/11/19 10:34,"207 Sunset St, San Francisco, CA 94016" +187431,Apple Airpods Headphones,1,150,04/20/19 20:08,"80 7th St, Dallas, TX 75001" +187432,Wired Headphones,1,11.99,04/25/19 21:47,"287 Hickory St, Atlanta, GA 30301" +187433,Google Phone,1,600,04/24/19 13:29,"35 Washington St, Boston, MA 02215" +187434,27in 4K Gaming Monitor,1,389.99,04/02/19 19:27,"513 Walnut St, Los Angeles, CA 90001" +187435,Vareebadd Phone,1,400,04/26/19 14:50,"159 13th St, Los Angeles, CA 90001" +187436,Lightning Charging Cable,1,14.95,04/30/19 12:07,"10 Pine St, Atlanta, GA 30301" +187437,Macbook Pro Laptop,1,1700,04/14/19 12:31,"596 12th St, Los Angeles, CA 90001" +187438,27in FHD Monitor,1,149.99,04/19/19 13:06,"519 Wilson St, San Francisco, CA 94016" +187439,Apple Airpods Headphones,1,150,04/29/19 14:49,"509 North St, Portland, OR 97035" +187440,AA Batteries (4-pack),2,3.84,04/09/19 19:46,"813 12th St, San Francisco, CA 94016" +187441,Wired Headphones,1,11.99,04/25/19 16:26,"171 Lincoln St, Boston, MA 02215" +187442,Lightning Charging Cable,1,14.95,04/10/19 13:45,"645 Highland St, Los Angeles, CA 90001" +187443,Flatscreen TV,1,300,04/18/19 01:59,"978 Forest St, San Francisco, CA 94016" +187444,27in 4K Gaming Monitor,1,389.99,04/04/19 21:57,"923 Lincoln St, Los Angeles, CA 90001" +187445,Macbook Pro Laptop,1,1700,04/07/19 15:21,"456 Chestnut St, Austin, TX 73301" +187446,27in 4K Gaming Monitor,1,389.99,04/08/19 09:36,"443 Wilson St, San Francisco, CA 94016" +187447,Wired Headphones,1,11.99,04/11/19 00:58,"787 Forest St, Boston, MA 02215" +187448,AAA Batteries (4-pack),2,2.99,04/18/19 17:55,"740 Pine St, Atlanta, GA 30301" +187449,Apple Airpods Headphones,1,150,04/13/19 13:15,"146 7th St, Atlanta, GA 30301" +187450,Apple Airpods Headphones,1,150,04/02/19 09:30,"556 Hickory St, San Francisco, CA 94016" +187451,Flatscreen TV,1,300,04/14/19 16:11,"75 Lakeview St, Dallas, TX 75001" +187452,Lightning Charging Cable,1,14.95,04/23/19 02:04,"956 Main St, Los Angeles, CA 90001" +187453,AA Batteries (4-pack),1,3.84,04/25/19 11:52,"416 5th St, Seattle, WA 98101" +187454,AA Batteries (4-pack),1,3.84,04/09/19 21:53,"922 Johnson St, San Francisco, CA 94016" +187455,Wired Headphones,1,11.99,04/02/19 12:00,"130 Cedar St, Portland, OR 97035" +187456,Google Phone,1,600,04/09/19 09:59,"69 7th St, Atlanta, GA 30301" +187457,20in Monitor,1,109.99,04/21/19 12:50,"772 4th St, Los Angeles, CA 90001" +187458,iPhone,1,700,04/16/19 13:14,"760 8th St, New York City, NY 10001" +187459,Wired Headphones,1,11.99,04/16/19 13:45,"202 Willow St, San Francisco, CA 94016" +187460,AAA Batteries (4-pack),1,2.99,04/15/19 21:38,"327 Park St, San Francisco, CA 94016" +187461,USB-C Charging Cable,1,11.95,04/04/19 13:09,"879 7th St, Seattle, WA 98101" +187462,iPhone,1,700,04/03/19 11:11,"451 2nd St, San Francisco, CA 94016" +187462,Apple Airpods Headphones,1,150,04/03/19 11:11,"451 2nd St, San Francisco, CA 94016" +187463,34in Ultrawide Monitor,1,379.99,04/12/19 10:38,"894 Maple St, Portland, OR 97035" +187464,Bose SoundSport Headphones,1,99.99,04/17/19 17:43,"852 9th St, Portland, OR 97035" +187465,Apple Airpods Headphones,1,150,04/19/19 11:06,"361 Meadow St, Austin, TX 73301" +187466,AAA Batteries (4-pack),2,2.99,04/16/19 12:39,"968 Dogwood St, Portland, OR 97035" +187467,Lightning Charging Cable,1,14.95,04/08/19 15:26,"671 8th St, Dallas, TX 75001" +187468,AA Batteries (4-pack),2,3.84,04/01/19 09:53,"460 Lincoln St, Seattle, WA 98101" +187469,Lightning Charging Cable,1,14.95,04/26/19 19:13,"555 Main St, San Francisco, CA 94016" +187470,Flatscreen TV,1,300,04/03/19 18:13,"462 Maple St, Austin, TX 73301" +187471,Wired Headphones,1,11.99,04/22/19 14:19,"668 Pine St, New York City, NY 10001" +187472,Apple Airpods Headphones,1,150,04/05/19 15:44,"230 Sunset St, Portland, OR 97035" +187473,Macbook Pro Laptop,1,1700,04/05/19 12:43,"826 12th St, Los Angeles, CA 90001" +187474,AA Batteries (4-pack),1,3.84,04/05/19 14:52,"368 North St, San Francisco, CA 94016" +187475,AAA Batteries (4-pack),3,2.99,04/24/19 19:18,"78 Meadow St, Boston, MA 02215" +187476,Apple Airpods Headphones,1,150,04/19/19 19:51,"391 South St, New York City, NY 10001" +187477,AAA Batteries (4-pack),4,2.99,04/25/19 22:02,"175 7th St, San Francisco, CA 94016" +187478,USB-C Charging Cable,1,11.95,04/20/19 11:29,"412 Meadow St, Seattle, WA 98101" +187479,Lightning Charging Cable,1,14.95,04/28/19 15:34,"909 Highland St, San Francisco, CA 94016" +187480,Lightning Charging Cable,1,14.95,04/29/19 09:12,"162 Main St, Boston, MA 02215" +187481,Lightning Charging Cable,1,14.95,04/06/19 21:20,"72 9th St, San Francisco, CA 94016" +187482,Wired Headphones,1,11.99,04/18/19 20:59,"211 9th St, Boston, MA 02215" +187483,Google Phone,1,600,04/22/19 00:55,"809 Park St, Seattle, WA 98101" +187484,Bose SoundSport Headphones,1,99.99,04/03/19 08:39,"473 Hickory St, San Francisco, CA 94016" +187485,Lightning Charging Cable,1,14.95,04/08/19 13:33,"486 Washington St, Dallas, TX 75001" +187486,Google Phone,1,600,04/18/19 13:38,"973 Lake St, Seattle, WA 98101" +187486,USB-C Charging Cable,1,11.95,04/18/19 13:38,"973 Lake St, Seattle, WA 98101" +187487,Lightning Charging Cable,1,14.95,04/15/19 15:33,"882 14th St, Los Angeles, CA 90001" +187488,20in Monitor,1,109.99,04/16/19 04:00,"590 1st St, San Francisco, CA 94016" +187489,AAA Batteries (4-pack),4,2.99,04/27/19 06:45,"475 Highland St, San Francisco, CA 94016" +187490,AAA Batteries (4-pack),2,2.99,04/10/19 20:13,"739 Main St, San Francisco, CA 94016" +187491,AA Batteries (4-pack),2,3.84,04/16/19 08:59,"11 14th St, San Francisco, CA 94016" +187492,Wired Headphones,1,11.99,04/24/19 14:14,"186 Jefferson St, New York City, NY 10001" +187493,Wired Headphones,2,11.99,04/28/19 09:55,"304 Main St, Seattle, WA 98101" +187494,AAA Batteries (4-pack),1,2.99,04/12/19 16:00,"167 5th St, Los Angeles, CA 90001" +187495,AAA Batteries (4-pack),1,2.99,04/25/19 14:47,"374 Hickory St, New York City, NY 10001" +187496,Apple Airpods Headphones,1,150,04/29/19 22:06,"391 North St, Dallas, TX 75001" +187497,Wired Headphones,1,11.99,04/18/19 07:49,"502 Washington St, Seattle, WA 98101" +187498,Bose SoundSport Headphones,1,99.99,04/16/19 15:15,"981 Jefferson St, Los Angeles, CA 90001" +187499,Lightning Charging Cable,1,14.95,04/10/19 22:54,"542 2nd St, Atlanta, GA 30301" +187500,ThinkPad Laptop,1,999.99,04/24/19 11:21,"160 South St, Los Angeles, CA 90001" +187501,Lightning Charging Cable,1,14.95,04/30/19 23:41,"872 14th St, San Francisco, CA 94016" +187502,Apple Airpods Headphones,1,150,04/30/19 04:02,"290 North St, Boston, MA 02215" +187503,Apple Airpods Headphones,1,150,04/23/19 17:33,"242 Cherry St, New York City, NY 10001" +187504,USB-C Charging Cable,1,11.95,04/08/19 11:07,"980 Johnson St, Austin, TX 73301" +187505,Wired Headphones,1,11.99,04/27/19 15:07,"372 Meadow St, Portland, OR 97035" +187506,27in FHD Monitor,1,149.99,04/11/19 22:18,"433 Forest St, Los Angeles, CA 90001" +187507,Wired Headphones,1,11.99,04/10/19 17:54,"238 Adams St, Dallas, TX 75001" +187508,iPhone,1,700,04/05/19 19:07,"749 Cedar St, Atlanta, GA 30301" +187508,Lightning Charging Cable,1,14.95,04/05/19 19:07,"749 Cedar St, Atlanta, GA 30301" +187509,USB-C Charging Cable,1,11.95,04/22/19 23:11,"909 Johnson St, San Francisco, CA 94016" +187510,27in FHD Monitor,1,149.99,04/29/19 19:59,"172 Ridge St, San Francisco, CA 94016" +187511,Apple Airpods Headphones,1,150,04/15/19 13:57,"272 Madison St, New York City, NY 10001" +187512,Wired Headphones,1,11.99,04/24/19 11:08,"383 Madison St, Los Angeles, CA 90001" +187513,USB-C Charging Cable,1,11.95,04/22/19 22:39,"253 Adams St, Boston, MA 02215" +187514,27in 4K Gaming Monitor,1,389.99,04/19/19 13:03,"471 6th St, Seattle, WA 98101" +187515,Google Phone,1,600,04/13/19 21:02,"457 River St, San Francisco, CA 94016" +187516,USB-C Charging Cable,1,11.95,04/07/19 20:16,"950 Pine St, San Francisco, CA 94016" +187517,AA Batteries (4-pack),1,3.84,04/26/19 21:05,"227 Cherry St, Boston, MA 02215" +187518,AA Batteries (4-pack),1,3.84,04/12/19 23:37,"639 South St, Austin, TX 73301" +187519,Wired Headphones,1,11.99,04/15/19 11:18,"544 Highland St, Los Angeles, CA 90001" +187520,Bose SoundSport Headphones,1,99.99,04/18/19 11:51,"225 Lincoln St, New York City, NY 10001" +187521,USB-C Charging Cable,1,11.95,04/11/19 05:34,"478 Spruce St, Los Angeles, CA 90001" +187522,27in 4K Gaming Monitor,1,389.99,04/11/19 20:33,"624 11th St, Los Angeles, CA 90001" +187523,34in Ultrawide Monitor,1,379.99,04/03/19 11:57,"484 5th St, Portland, OR 97035" +187524,AA Batteries (4-pack),1,3.84,04/20/19 23:05,"567 Cedar St, San Francisco, CA 94016" +187525,Lightning Charging Cable,1,14.95,04/09/19 11:56,"866 7th St, Dallas, TX 75001" +187526,USB-C Charging Cable,1,11.95,04/01/19 10:56,"161 Hill St, Los Angeles, CA 90001" +187527,Lightning Charging Cable,1,14.95,04/25/19 11:43,"434 Highland St, Dallas, TX 75001" +187528,USB-C Charging Cable,1,11.95,04/27/19 09:14,"265 Washington St, San Francisco, CA 94016" +187529,Bose SoundSport Headphones,1,99.99,04/05/19 15:21,"227 Walnut St, Dallas, TX 75001" +187530,27in 4K Gaming Monitor,1,389.99,04/08/19 22:20,"532 West St, Dallas, TX 75001" +187531,AA Batteries (4-pack),1,3.84,04/12/19 11:27,"965 12th St, New York City, NY 10001" +187532,AAA Batteries (4-pack),1,2.99,04/21/19 10:28,"372 14th St, Seattle, WA 98101" +187533,34in Ultrawide Monitor,1,379.99,04/14/19 19:37,"602 Elm St, Los Angeles, CA 90001" +187534,Wired Headphones,2,11.99,04/21/19 04:04,"163 Cedar St, San Francisco, CA 94016" +187535,27in FHD Monitor,1,149.99,04/23/19 06:12,"933 1st St, Los Angeles, CA 90001" +187536,Macbook Pro Laptop,1,1700,04/20/19 16:48,"694 Main St, Seattle, WA 98101" +187537,Wired Headphones,1,11.99,04/07/19 07:37,"645 Park St, Los Angeles, CA 90001" +187538,34in Ultrawide Monitor,1,379.99,04/01/19 06:16,"882 Center St, Los Angeles, CA 90001" +187539,iPhone,1,700,04/16/19 01:56,"760 2nd St, Dallas, TX 75001" +187539,Lightning Charging Cable,1,14.95,04/16/19 01:56,"760 2nd St, Dallas, TX 75001" +187540,27in FHD Monitor,1,149.99,04/26/19 21:12,"337 Washington St, New York City, NY 10001" +187541,34in Ultrawide Monitor,1,379.99,04/20/19 12:21,"714 Lake St, Atlanta, GA 30301" +187542,USB-C Charging Cable,1,11.95,04/21/19 20:16,"773 South St, Los Angeles, CA 90001" +187543,Google Phone,1,600,04/22/19 12:07,"785 Pine St, Los Angeles, CA 90001" +187544,Wired Headphones,2,11.99,04/16/19 12:55,"431 Highland St, Atlanta, GA 30301" +187545,Wired Headphones,1,11.99,04/11/19 20:06,"742 Dogwood St, Austin, TX 73301" +187546,Wired Headphones,1,11.99,04/24/19 21:16,"884 Hickory St, Austin, TX 73301" +187547,Wired Headphones,1,11.99,04/12/19 16:38,"137 Pine St, Austin, TX 73301" +187548,AAA Batteries (4-pack),2,2.99,04/20/19 16:37,"233 10th St, San Francisco, CA 94016" +187549,34in Ultrawide Monitor,1,379.99,04/28/19 18:41,"413 Hickory St, Los Angeles, CA 90001" +187550,AA Batteries (4-pack),1,3.84,04/04/19 14:54,"679 Spruce St, Austin, TX 73301" +187551,AAA Batteries (4-pack),1,2.99,04/16/19 22:31,"769 River St, San Francisco, CA 94016" +187552,Bose SoundSport Headphones,1,99.99,04/16/19 19:10,"541 Madison St, New York City, NY 10001" +187553,Bose SoundSport Headphones,1,99.99,04/07/19 06:22,"591 Hill St, New York City, NY 10001" +187554,27in 4K Gaming Monitor,1,389.99,04/26/19 21:59,"173 Jefferson St, Atlanta, GA 30301" +187555,AA Batteries (4-pack),1,3.84,04/10/19 17:37,"114 Elm St, Boston, MA 02215" +187556,AA Batteries (4-pack),2,3.84,04/29/19 16:46,"257 Spruce St, San Francisco, CA 94016" +187557,AAA Batteries (4-pack),1,2.99,04/08/19 17:07,"273 Center St, Los Angeles, CA 90001" +187558,Apple Airpods Headphones,1,150,04/19/19 15:30,"330 Main St, Portland, OR 97035" +187559,USB-C Charging Cable,1,11.95,04/20/19 16:12,"84 Jackson St, Dallas, TX 75001" +187560,USB-C Charging Cable,1,11.95,04/02/19 23:24,"349 11th St, Boston, MA 02215" +187561,USB-C Charging Cable,1,11.95,04/02/19 12:59,"422 Jackson St, Los Angeles, CA 90001" +187562,LG Dryer,1,600.0,04/30/19 22:13,"305 7th St, San Francisco, CA 94016" +187563,20in Monitor,1,109.99,04/01/19 17:08,"238 10th St, Atlanta, GA 30301" +187564,Apple Airpods Headphones,1,150,04/08/19 13:33,"530 Johnson St, San Francisco, CA 94016" +187565,34in Ultrawide Monitor,1,379.99,04/04/19 16:33,"186 Maple St, Los Angeles, CA 90001" +187566,Apple Airpods Headphones,1,150,04/23/19 12:17,"619 South St, Los Angeles, CA 90001" +187567,LG Washing Machine,1,600.0,04/29/19 14:09,"582 Johnson St, Los Angeles, CA 90001" +187568,Wired Headphones,1,11.99,04/28/19 18:41,"945 River St, San Francisco, CA 94016" +187569,USB-C Charging Cable,1,11.95,04/07/19 12:41,"29 9th St, Seattle, WA 98101" +187569,Wired Headphones,1,11.99,04/07/19 12:41,"29 9th St, Seattle, WA 98101" +187570,34in Ultrawide Monitor,1,379.99,04/14/19 14:17,"525 4th St, New York City, NY 10001" +187571,Flatscreen TV,1,300,04/09/19 00:12,"831 Lincoln St, Los Angeles, CA 90001" +187572,AA Batteries (4-pack),1,3.84,04/05/19 10:08,"290 Church St, Los Angeles, CA 90001" +187573,Bose SoundSport Headphones,1,99.99,04/06/19 13:24,"200 Willow St, San Francisco, CA 94016" +187574,Lightning Charging Cable,1,14.95,04/27/19 23:24,"158 1st St, San Francisco, CA 94016" +187575,Lightning Charging Cable,1,14.95,04/19/19 12:06,"963 Meadow St, Dallas, TX 75001" +187576,Wired Headphones,1,11.99,04/28/19 11:26,"207 Washington St, Boston, MA 02215" +187577,Macbook Pro Laptop,1,1700,04/18/19 18:21,"582 9th St, New York City, NY 10001" +187578,Apple Airpods Headphones,1,150,04/05/19 15:59,"676 Wilson St, Los Angeles, CA 90001" +187579,Lightning Charging Cable,1,14.95,04/27/19 08:23,"293 Hill St, Portland, ME 04101" +187580,20in Monitor,1,109.99,04/30/19 18:53,"596 Church St, San Francisco, CA 94016" +187581,AAA Batteries (4-pack),1,2.99,04/09/19 10:07,"714 Jefferson St, San Francisco, CA 94016" +187582,27in FHD Monitor,1,149.99,04/24/19 17:50,"745 Ridge St, New York City, NY 10001" +187583,Wired Headphones,1,11.99,04/14/19 09:47,"618 Wilson St, San Francisco, CA 94016" +187584,20in Monitor,1,109.99,04/20/19 12:13,"155 West St, Austin, TX 73301" +187585,Lightning Charging Cable,1,14.95,04/09/19 00:32,"131 Church St, Los Angeles, CA 90001" +187586,Macbook Pro Laptop,1,1700,04/06/19 12:29,"749 Forest St, Dallas, TX 75001" +187587,Wired Headphones,1,11.99,04/22/19 17:16,"427 Ridge St, New York City, NY 10001" +187588,USB-C Charging Cable,1,11.95,04/22/19 09:07,"280 Johnson St, San Francisco, CA 94016" +187589,Lightning Charging Cable,1,14.95,04/04/19 14:40,"369 Lakeview St, San Francisco, CA 94016" +187590,27in 4K Gaming Monitor,1,389.99,04/25/19 17:31,"266 Lincoln St, San Francisco, CA 94016" +187591,Wired Headphones,1,11.99,04/14/19 06:31,"594 Madison St, Portland, OR 97035" +187592,Wired Headphones,1,11.99,04/23/19 20:42,"380 Willow St, Atlanta, GA 30301" +187593,LG Dryer,1,600.0,04/05/19 17:26,"984 Sunset St, Los Angeles, CA 90001" +187594,AA Batteries (4-pack),2,3.84,04/01/19 14:19,"423 7th St, New York City, NY 10001" +187595,iPhone,1,700,04/23/19 14:15,"417 7th St, Los Angeles, CA 90001" +187596,Lightning Charging Cable,1,14.95,04/20/19 05:14,"280 Wilson St, Seattle, WA 98101" +187597,AA Batteries (4-pack),1,3.84,04/11/19 15:50,"277 Sunset St, Portland, OR 97035" +187598,Bose SoundSport Headphones,1,99.99,04/13/19 11:16,"631 9th St, Dallas, TX 75001" +187599,Wired Headphones,2,11.99,04/14/19 00:42,"695 Lincoln St, Los Angeles, CA 90001" +187600,iPhone,1,700,04/12/19 22:42,"931 14th St, Atlanta, GA 30301" +187600,Lightning Charging Cable,1,14.95,04/12/19 22:42,"931 14th St, Atlanta, GA 30301" +187600,USB-C Charging Cable,1,11.95,04/12/19 22:42,"931 14th St, Atlanta, GA 30301" +187601,27in 4K Gaming Monitor,1,389.99,04/02/19 15:12,"563 Church St, Los Angeles, CA 90001" +187602,AA Batteries (4-pack),2,3.84,04/03/19 18:05,"112 Elm St, San Francisco, CA 94016" +187603,USB-C Charging Cable,1,11.95,04/11/19 20:53,"827 Dogwood St, San Francisco, CA 94016" +187604,Apple Airpods Headphones,1,150,04/30/19 13:29,"530 Madison St, Seattle, WA 98101" +187605,Wired Headphones,1,11.99,04/28/19 17:57,"575 Johnson St, New York City, NY 10001" +187606,USB-C Charging Cable,2,11.95,04/30/19 09:03,"255 6th St, New York City, NY 10001" +187607,AAA Batteries (4-pack),1,2.99,04/17/19 17:45,"80 1st St, New York City, NY 10001" +187608,Apple Airpods Headphones,1,150,04/21/19 21:49,"328 11th St, Boston, MA 02215" +187609,AAA Batteries (4-pack),1,2.99,04/14/19 13:33,"116 9th St, Boston, MA 02215" +187610,AAA Batteries (4-pack),1,2.99,04/04/19 16:33,"849 Lake St, San Francisco, CA 94016" +187611,Bose SoundSport Headphones,1,99.99,04/16/19 09:17,"454 7th St, Atlanta, GA 30301" +187612,Apple Airpods Headphones,1,150,04/15/19 22:56,"920 Wilson St, New York City, NY 10001" +187613,AAA Batteries (4-pack),2,2.99,04/02/19 12:54,"768 Elm St, Portland, OR 97035" +187613,AAA Batteries (4-pack),2,2.99,04/02/19 12:54,"768 Elm St, Portland, OR 97035" +187614,AAA Batteries (4-pack),1,2.99,04/09/19 20:21,"45 Johnson St, Boston, MA 02215" +187615,USB-C Charging Cable,1,11.95,04/12/19 09:42,"366 Hickory St, San Francisco, CA 94016" +187616,AAA Batteries (4-pack),1,2.99,04/08/19 10:02,"242 South St, San Francisco, CA 94016" +187617,Apple Airpods Headphones,1,150,04/06/19 23:19,"874 Johnson St, Los Angeles, CA 90001" +187618,Flatscreen TV,1,300,04/25/19 18:50,"681 2nd St, Dallas, TX 75001" +187619,Macbook Pro Laptop,1,1700,04/15/19 16:09,"343 Park St, San Francisco, CA 94016" +187620,Wired Headphones,1,11.99,04/10/19 09:53,"21 Jefferson St, Austin, TX 73301" +187621,Lightning Charging Cable,1,14.95,04/27/19 10:09,"859 Jefferson St, Portland, OR 97035" +187622,Bose SoundSport Headphones,1,99.99,04/08/19 17:34,"538 7th St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +187623,27in FHD Monitor,1,149.99,04/29/19 11:41,"499 West St, San Francisco, CA 94016" +187624,Apple Airpods Headphones,1,150,04/20/19 22:24,"311 Spruce St, New York City, NY 10001" +187625,Wired Headphones,1,11.99,04/20/19 11:40,"89 South St, San Francisco, CA 94016" +187626,AAA Batteries (4-pack),2,2.99,04/16/19 10:14,"476 Maple St, Seattle, WA 98101" +187627,34in Ultrawide Monitor,1,379.99,04/11/19 11:01,"820 1st St, San Francisco, CA 94016" +187628,Wired Headphones,1,11.99,04/04/19 21:50,"649 Lincoln St, Atlanta, GA 30301" +187629,AA Batteries (4-pack),1,3.84,04/21/19 11:33,"578 Madison St, Boston, MA 02215" +187630,USB-C Charging Cable,1,11.95,04/21/19 21:21,"461 Washington St, San Francisco, CA 94016" +187631,AA Batteries (4-pack),1,3.84,04/02/19 22:43,"984 Maple St, Austin, TX 73301" +187632,27in 4K Gaming Monitor,1,389.99,04/05/19 17:17,"55 Park St, Austin, TX 73301" +187633,USB-C Charging Cable,1,11.95,04/17/19 13:11,"372 Ridge St, San Francisco, CA 94016" +187633,Wired Headphones,2,11.99,04/17/19 13:11,"372 Ridge St, San Francisco, CA 94016" +187634,Wired Headphones,1,11.99,04/16/19 17:03,"646 Center St, Los Angeles, CA 90001" +187635,Wired Headphones,1,11.99,04/08/19 06:27,"920 Hickory St, Los Angeles, CA 90001" +187636,AAA Batteries (4-pack),3,2.99,04/14/19 15:20,"281 11th St, San Francisco, CA 94016" +187637,Apple Airpods Headphones,1,150,04/25/19 07:32,"955 Cherry St, San Francisco, CA 94016" +187638,Bose SoundSport Headphones,1,99.99,04/05/19 00:07,"243 Center St, Los Angeles, CA 90001" +187639,Lightning Charging Cable,1,14.95,04/03/19 11:21,"667 13th St, New York City, NY 10001" +187640,iPhone,1,700,04/26/19 12:48,"124 Johnson St, Atlanta, GA 30301" +187641,AA Batteries (4-pack),1,3.84,04/30/19 14:39,"964 Highland St, New York City, NY 10001" +187642,AAA Batteries (4-pack),1,2.99,04/12/19 08:07,"184 North St, Atlanta, GA 30301" +187643,AA Batteries (4-pack),1,3.84,04/10/19 18:42,"18 Ridge St, Seattle, WA 98101" +187644,AA Batteries (4-pack),1,3.84,04/07/19 18:39,"576 River St, San Francisco, CA 94016" +187645,27in FHD Monitor,1,149.99,04/02/19 11:08,"861 5th St, Atlanta, GA 30301" +187646,Lightning Charging Cable,1,14.95,04/28/19 17:52,"3 11th St, Atlanta, GA 30301" +187647,AAA Batteries (4-pack),2,2.99,04/23/19 13:48,"406 Willow St, San Francisco, CA 94016" +187648,Apple Airpods Headphones,1,150,04/25/19 15:09,"505 Forest St, San Francisco, CA 94016" +187649,AA Batteries (4-pack),1,3.84,04/25/19 11:14,"251 Chestnut St, Atlanta, GA 30301" +187650,Lightning Charging Cable,1,14.95,04/21/19 12:06,"309 7th St, San Francisco, CA 94016" +187651,AA Batteries (4-pack),2,3.84,04/20/19 21:59,"993 8th St, San Francisco, CA 94016" +187652,27in FHD Monitor,1,149.99,04/13/19 15:00,"108 Maple St, San Francisco, CA 94016" +187653,Bose SoundSport Headphones,1,99.99,04/15/19 23:58,"40 Chestnut St, San Francisco, CA 94016" +187654,27in 4K Gaming Monitor,1,389.99,04/06/19 18:21,"852 Lake St, Los Angeles, CA 90001" +187655,Wired Headphones,1,11.99,04/19/19 10:28,"388 6th St, Atlanta, GA 30301" +187656,27in FHD Monitor,1,149.99,04/05/19 12:04,"27 Sunset St, Seattle, WA 98101" +187657,AAA Batteries (4-pack),1,2.99,04/21/19 15:01,"717 7th St, Atlanta, GA 30301" +187658,Bose SoundSport Headphones,1,99.99,04/04/19 12:18,"252 Sunset St, San Francisco, CA 94016" +187659,AAA Batteries (4-pack),1,2.99,04/20/19 17:56,"188 South St, New York City, NY 10001" +187660,AA Batteries (4-pack),3,3.84,04/13/19 12:43,"447 Jefferson St, Dallas, TX 75001" +187661,Flatscreen TV,1,300,04/16/19 16:13,"180 4th St, Atlanta, GA 30301" +187662,Wired Headphones,1,11.99,04/21/19 13:47,"656 Adams St, San Francisco, CA 94016" +187663,AAA Batteries (4-pack),1,2.99,04/13/19 17:44,"325 Lincoln St, Portland, ME 04101" +187664,Flatscreen TV,1,300,04/11/19 23:59,"77 West St, San Francisco, CA 94016" +187665,Lightning Charging Cable,1,14.95,04/10/19 12:05,"421 Pine St, New York City, NY 10001" +187666,Google Phone,1,600,04/05/19 09:07,"107 4th St, Los Angeles, CA 90001" +187667,Google Phone,1,600,04/29/19 10:15,"989 Cherry St, Seattle, WA 98101" +187668,ThinkPad Laptop,1,999.99,04/29/19 09:55,"545 Highland St, San Francisco, CA 94016" +187669,USB-C Charging Cable,1,11.95,04/23/19 21:02,"833 Hill St, Austin, TX 73301" +187670,Macbook Pro Laptop,1,1700,04/28/19 07:46,"240 Lakeview St, Boston, MA 02215" +187671,Apple Airpods Headphones,1,150,04/15/19 21:27,"253 2nd St, Seattle, WA 98101" +187672,Bose SoundSport Headphones,1,99.99,04/24/19 20:06,"450 Wilson St, San Francisco, CA 94016" +187673,Lightning Charging Cable,1,14.95,04/05/19 15:40,"942 10th St, New York City, NY 10001" +187674,Macbook Pro Laptop,1,1700,04/26/19 15:14,"635 Wilson St, Los Angeles, CA 90001" +187675,ThinkPad Laptop,1,999.99,04/30/19 11:00,"11 Sunset St, San Francisco, CA 94016" +187676,Lightning Charging Cable,1,14.95,04/19/19 10:49,"869 14th St, Los Angeles, CA 90001" +187677,AA Batteries (4-pack),1,3.84,04/01/19 16:55,"111 Jackson St, New York City, NY 10001" +187678,Bose SoundSport Headphones,1,99.99,04/16/19 16:54,"269 Lakeview St, San Francisco, CA 94016" +187679,AAA Batteries (4-pack),3,2.99,04/25/19 17:15,"162 6th St, San Francisco, CA 94016" +187680,iPhone,1,700,04/30/19 06:54,"3 Jefferson St, New York City, NY 10001" +187681,AAA Batteries (4-pack),2,2.99,04/08/19 08:55,"464 North St, New York City, NY 10001" +187682,27in FHD Monitor,1,149.99,04/21/19 23:05,"802 Dogwood St, Los Angeles, CA 90001" +187683,Google Phone,1,600,04/25/19 08:58,"58 Walnut St, New York City, NY 10001" +187684,20in Monitor,1,109.99,04/25/19 02:33,"251 12th St, Boston, MA 02215" +187685,USB-C Charging Cable,1,11.95,04/18/19 09:33,"547 Lincoln St, San Francisco, CA 94016" +187686,Apple Airpods Headphones,1,150,04/20/19 16:45,"525 1st St, Boston, MA 02215" +187687,Vareebadd Phone,1,400,04/08/19 00:19,"663 2nd St, Los Angeles, CA 90001" +187688,Wired Headphones,1,11.99,04/26/19 19:50,"777 Chestnut St, San Francisco, CA 94016" +187689,USB-C Charging Cable,1,11.95,04/26/19 15:12,"476 2nd St, San Francisco, CA 94016" +187690,AA Batteries (4-pack),1,3.84,04/08/19 09:15,"26 1st St, Boston, MA 02215" +187691,USB-C Charging Cable,1,11.95,04/22/19 08:47,"596 Meadow St, Atlanta, GA 30301" +187692,20in Monitor,1,109.99,04/05/19 21:20,"161 4th St, Seattle, WA 98101" +187693,27in FHD Monitor,1,149.99,04/17/19 21:14,"755 Elm St, New York City, NY 10001" +187694,Lightning Charging Cable,1,14.95,04/01/19 17:31,"635 Sunset St, Portland, OR 97035" +187695,34in Ultrawide Monitor,1,379.99,04/26/19 09:11,"93 6th St, San Francisco, CA 94016" +187696,Flatscreen TV,1,300,04/09/19 12:27,"147 4th St, San Francisco, CA 94016" +187697,AAA Batteries (4-pack),1,2.99,04/17/19 14:05,"868 Cedar St, Seattle, WA 98101" +187698,AA Batteries (4-pack),1,3.84,04/26/19 20:58,"534 South St, Los Angeles, CA 90001" +187699,Lightning Charging Cable,1,14.95,04/10/19 21:16,"627 Forest St, Dallas, TX 75001" +187700,iPhone,1,700,04/03/19 13:29,"874 Hickory St, Boston, MA 02215" +187701,AAA Batteries (4-pack),2,2.99,04/25/19 20:45,"829 Chestnut St, Boston, MA 02215" +187702,AA Batteries (4-pack),2,3.84,04/18/19 14:41,"18 Washington St, San Francisco, CA 94016" +187703,Bose SoundSport Headphones,1,99.99,04/12/19 21:13,"890 Park St, San Francisco, CA 94016" +187704,20in Monitor,1,109.99,04/03/19 10:51,"826 Sunset St, New York City, NY 10001" +187705,Apple Airpods Headphones,1,150,04/18/19 20:50,"295 Meadow St, New York City, NY 10001" +187706,27in FHD Monitor,1,149.99,04/18/19 18:23,"989 2nd St, Dallas, TX 75001" +187707,Wired Headphones,1,11.99,04/30/19 10:25,"655 7th St, San Francisco, CA 94016" +187708,Bose SoundSport Headphones,1,99.99,04/25/19 21:45,"595 North St, Atlanta, GA 30301" +187709,Vareebadd Phone,1,400,04/06/19 12:43,"631 Jackson St, Boston, MA 02215" +187710,USB-C Charging Cable,2,11.95,04/23/19 22:05,"624 Lake St, Los Angeles, CA 90001" +187711,Lightning Charging Cable,1,14.95,04/18/19 08:04,"981 South St, San Francisco, CA 94016" +187712,Google Phone,1,600,04/29/19 14:45,"20 8th St, Dallas, TX 75001" +187713,USB-C Charging Cable,1,11.95,04/20/19 15:31,"57 12th St, Dallas, TX 75001" +187714,USB-C Charging Cable,2,11.95,04/04/19 16:59,"246 Dogwood St, San Francisco, CA 94016" +187715,20in Monitor,1,109.99,04/26/19 20:28,"301 Lake St, Portland, OR 97035" +187716,20in Monitor,1,109.99,04/14/19 16:39,"471 Cherry St, Boston, MA 02215" +187717,27in 4K Gaming Monitor,1,389.99,04/12/19 18:03,"972 North St, Los Angeles, CA 90001" +187718,Lightning Charging Cable,1,14.95,04/24/19 09:15,"166 Maple St, Boston, MA 02215" +187719,Lightning Charging Cable,1,14.95,04/25/19 11:30,"260 11th St, Boston, MA 02215" +187720,Apple Airpods Headphones,1,150,04/28/19 18:29,"580 2nd St, Boston, MA 02215" +187721,Lightning Charging Cable,1,14.95,04/13/19 16:28,"763 Maple St, Seattle, WA 98101" +187722,USB-C Charging Cable,1,11.95,04/04/19 08:52,"441 Meadow St, Atlanta, GA 30301" +187723,USB-C Charging Cable,1,11.95,04/02/19 22:37,"638 Park St, Los Angeles, CA 90001" +187724,iPhone,1,700,04/01/19 19:34,"383 Walnut St, Los Angeles, CA 90001" +187725,Google Phone,1,600,04/22/19 22:18,"74 Hill St, New York City, NY 10001" +187725,USB-C Charging Cable,2,11.95,04/22/19 22:18,"74 Hill St, New York City, NY 10001" +187726,AA Batteries (4-pack),1,3.84,04/12/19 11:56,"493 Forest St, Portland, OR 97035" +187727,USB-C Charging Cable,1,11.95,04/12/19 20:53,"161 North St, Boston, MA 02215" +187728,Lightning Charging Cable,1,14.95,04/24/19 12:33,"227 Washington St, Austin, TX 73301" +187729,Bose SoundSport Headphones,1,99.99,04/07/19 10:51,"822 Spruce St, Portland, OR 97035" +187730,Macbook Pro Laptop,1,1700,04/20/19 01:05,"247 Sunset St, Boston, MA 02215" +187731,AA Batteries (4-pack),1,3.84,04/11/19 18:09,"72 Dogwood St, Boston, MA 02215" +187732,USB-C Charging Cable,1,11.95,04/03/19 13:13,"333 12th St, San Francisco, CA 94016" +187733,Apple Airpods Headphones,1,150,04/05/19 23:41,"666 Park St, Seattle, WA 98101" +187734,Wired Headphones,1,11.99,04/12/19 20:35,"562 Wilson St, Seattle, WA 98101" +187735,Apple Airpods Headphones,1,150,04/27/19 18:25,"915 2nd St, Los Angeles, CA 90001" +187736,Bose SoundSport Headphones,1,99.99,04/13/19 20:43,"676 West St, Dallas, TX 75001" +187737,AAA Batteries (4-pack),2,2.99,04/01/19 19:14,"293 River St, San Francisco, CA 94016" +187738,AAA Batteries (4-pack),1,2.99,04/18/19 09:20,"692 Main St, Dallas, TX 75001" +187739,iPhone,1,700,04/04/19 21:27,"50 2nd St, Seattle, WA 98101" +187740,Wired Headphones,1,11.99,04/23/19 19:46,"313 Johnson St, Boston, MA 02215" +187741,AAA Batteries (4-pack),1,2.99,04/02/19 11:48,"86 Lakeview St, San Francisco, CA 94016" +187742,Apple Airpods Headphones,1,150,04/06/19 18:37,"875 10th St, Atlanta, GA 30301" +187743,Apple Airpods Headphones,1,150,04/18/19 19:44,"575 Johnson St, Seattle, WA 98101" +187744,AAA Batteries (4-pack),1,2.99,04/18/19 22:54,"466 8th St, Dallas, TX 75001" +187745,AAA Batteries (4-pack),1,2.99,04/07/19 10:52,"512 Jackson St, San Francisco, CA 94016" +187746,Apple Airpods Headphones,1,150,04/25/19 10:19,"273 Cedar St, New York City, NY 10001" +187747,AAA Batteries (4-pack),1,2.99,04/23/19 12:14,"313 Washington St, Seattle, WA 98101" +187748,27in 4K Gaming Monitor,1,389.99,04/06/19 18:35,"834 Hill St, San Francisco, CA 94016" +187749,AAA Batteries (4-pack),1,2.99,04/25/19 10:21,"125 8th St, Boston, MA 02215" +187750,Wired Headphones,1,11.99,04/04/19 15:07,"768 11th St, San Francisco, CA 94016" +187751,iPhone,1,700,04/20/19 09:50,"492 Lake St, Portland, OR 97035" +187752,AAA Batteries (4-pack),1,2.99,04/22/19 17:12,"175 Pine St, Boston, MA 02215" +187753,Bose SoundSport Headphones,1,99.99,04/21/19 01:00,"221 Cherry St, New York City, NY 10001" +187754,34in Ultrawide Monitor,1,379.99,04/16/19 20:11,"103 Maple St, Los Angeles, CA 90001" +187755,Lightning Charging Cable,1,14.95,04/08/19 11:08,"724 Hickory St, Los Angeles, CA 90001" +187756,27in FHD Monitor,1,149.99,04/20/19 02:41,"662 Sunset St, New York City, NY 10001" +187757,Bose SoundSport Headphones,1,99.99,04/20/19 13:25,"336 Johnson St, New York City, NY 10001" +187758,Google Phone,1,600,04/13/19 22:04,"687 7th St, Portland, OR 97035" +187759,Lightning Charging Cable,1,14.95,04/12/19 11:41,"697 Jackson St, New York City, NY 10001" +187760,27in FHD Monitor,1,149.99,04/16/19 21:39,"563 13th St, Boston, MA 02215" +187761,USB-C Charging Cable,1,11.95,04/12/19 09:58,"314 Johnson St, San Francisco, CA 94016" +187762,AA Batteries (4-pack),1,3.84,04/30/19 07:51,"165 Lakeview St, Boston, MA 02215" +187763,Lightning Charging Cable,1,14.95,04/15/19 19:34,"183 6th St, New York City, NY 10001" +187764,Wired Headphones,1,11.99,04/06/19 17:01,"571 South St, Austin, TX 73301" +187765,Lightning Charging Cable,1,14.95,04/02/19 10:54,"234 Jefferson St, Austin, TX 73301" +187766,34in Ultrawide Monitor,1,379.99,04/06/19 22:35,"708 Lincoln St, Dallas, TX 75001" +187767,AAA Batteries (4-pack),3,2.99,04/27/19 17:18,"738 Lake St, Atlanta, GA 30301" +187768,27in 4K Gaming Monitor,1,389.99,04/04/19 21:53,"780 Willow St, Boston, MA 02215" +187769,27in FHD Monitor,1,149.99,04/04/19 01:23,"299 1st St, Dallas, TX 75001" +187770,AAA Batteries (4-pack),1,2.99,04/14/19 07:30,"469 West St, San Francisco, CA 94016" +187771,iPhone,1,700,04/05/19 00:29,"819 North St, San Francisco, CA 94016" +187772,USB-C Charging Cable,1,11.95,04/11/19 13:45,"304 Willow St, Portland, OR 97035" +187773,34in Ultrawide Monitor,1,379.99,04/12/19 11:41,"595 Chestnut St, Seattle, WA 98101" +187773,AA Batteries (4-pack),1,3.84,04/12/19 11:41,"595 Chestnut St, Seattle, WA 98101" +187774,27in 4K Gaming Monitor,1,389.99,04/22/19 09:26,"224 Ridge St, Austin, TX 73301" +187775,Lightning Charging Cable,1,14.95,04/03/19 16:40,"132 Ridge St, Atlanta, GA 30301" +187776,USB-C Charging Cable,1,11.95,04/15/19 09:00,"450 Wilson St, Portland, OR 97035" +187777,AA Batteries (4-pack),1,3.84,04/16/19 15:45,"790 Forest St, Los Angeles, CA 90001" +187778,USB-C Charging Cable,1,11.95,04/19/19 18:01,"319 1st St, Boston, MA 02215" +187779,AAA Batteries (4-pack),4,2.99,04/04/19 20:35,"836 Chestnut St, Los Angeles, CA 90001" +187780,Wired Headphones,1,11.99,04/10/19 14:17,"917 Hickory St, San Francisco, CA 94016" +187781,AA Batteries (4-pack),1,3.84,04/20/19 12:57,"163 Cedar St, Boston, MA 02215" +187782,34in Ultrawide Monitor,1,379.99,04/04/19 12:27,"36 Center St, Seattle, WA 98101" +187783,Wired Headphones,1,11.99,04/29/19 08:28,"109 Lake St, San Francisco, CA 94016" +187784,Bose SoundSport Headphones,1,99.99,04/25/19 00:29,"880 West St, New York City, NY 10001" +187785,AAA Batteries (4-pack),2,2.99,04/12/19 10:49,"279 North St, Seattle, WA 98101" +187786,USB-C Charging Cable,1,11.95,04/26/19 21:04,"801 8th St, Austin, TX 73301" +187787,Wired Headphones,1,11.99,04/15/19 09:34,"505 South St, New York City, NY 10001" +187788,Wired Headphones,1,11.99,04/02/19 18:24,"808 12th St, San Francisco, CA 94016" +187789,Google Phone,1,600,04/04/19 12:51,"521 Lincoln St, Seattle, WA 98101" +187790,USB-C Charging Cable,1,11.95,04/06/19 19:15,"920 Dogwood St, San Francisco, CA 94016" +187791,iPhone,1,700,04/24/19 21:53,"299 5th St, New York City, NY 10001" +187791,Apple Airpods Headphones,1,150,04/24/19 21:53,"299 5th St, New York City, NY 10001" +187792,27in FHD Monitor,1,149.99,04/30/19 23:05,"810 11th St, Boston, MA 02215" +187793,34in Ultrawide Monitor,1,379.99,04/26/19 21:24,"601 South St, Los Angeles, CA 90001" +187794,20in Monitor,1,109.99,04/19/19 10:20,"175 Lakeview St, Los Angeles, CA 90001" +187795,Lightning Charging Cable,1,14.95,04/23/19 09:45,"180 Madison St, Boston, MA 02215" +187796,USB-C Charging Cable,1,11.95,04/08/19 12:41,"237 11th St, San Francisco, CA 94016" +187797,Lightning Charging Cable,1,14.95,04/21/19 02:00,"761 Highland St, San Francisco, CA 94016" +187798,Flatscreen TV,1,300,04/16/19 14:55,"174 Main St, Boston, MA 02215" +187799,Wired Headphones,1,11.99,04/13/19 07:30,"535 11th St, Atlanta, GA 30301" +187800,27in 4K Gaming Monitor,1,389.99,04/13/19 10:53,"732 South St, Atlanta, GA 30301" +187801,Lightning Charging Cable,1,14.95,04/30/19 18:21,"119 Lincoln St, Portland, ME 04101" +187802,Google Phone,1,600,04/25/19 09:40,"769 Jefferson St, Los Angeles, CA 90001" +187803,Lightning Charging Cable,1,14.95,04/30/19 12:43,"179 Lake St, Los Angeles, CA 90001" +187804,Wired Headphones,2,11.99,04/07/19 14:11,"688 Forest St, Seattle, WA 98101" +187805,USB-C Charging Cable,1,11.95,04/26/19 23:07,"276 Lincoln St, Seattle, WA 98101" +187805,USB-C Charging Cable,1,11.95,04/26/19 23:07,"276 Lincoln St, Seattle, WA 98101" +187806,LG Washing Machine,1,600.0,04/30/19 13:49,"279 Willow St, Seattle, WA 98101" +187807,AAA Batteries (4-pack),3,2.99,04/25/19 23:27,"439 4th St, New York City, NY 10001" +187808,27in FHD Monitor,1,149.99,04/16/19 19:04,"649 Washington St, New York City, NY 10001" +187809,34in Ultrawide Monitor,1,379.99,04/03/19 15:07,"366 7th St, Portland, OR 97035" +187810,USB-C Charging Cable,1,11.95,04/12/19 07:23,"573 Highland St, Portland, OR 97035" +187811,Bose SoundSport Headphones,1,99.99,04/16/19 15:11,"443 Lincoln St, San Francisco, CA 94016" +187812,USB-C Charging Cable,1,11.95,04/24/19 23:04,"474 Hill St, San Francisco, CA 94016" +187813,Lightning Charging Cable,1,14.95,04/05/19 03:37,"425 Madison St, San Francisco, CA 94016" +187814,Apple Airpods Headphones,1,150,04/03/19 02:06,"394 West St, New York City, NY 10001" +187815,AA Batteries (4-pack),1,3.84,04/19/19 17:21,"463 North St, Los Angeles, CA 90001" +187816,Flatscreen TV,1,300,04/16/19 18:19,"32 Elm St, New York City, NY 10001" +187817,AAA Batteries (4-pack),1,2.99,04/13/19 20:59,"867 1st St, New York City, NY 10001" +187818,USB-C Charging Cable,1,11.95,04/29/19 03:34,"757 Hill St, Boston, MA 02215" +187819,Bose SoundSport Headphones,1,99.99,04/19/19 14:54,"941 Center St, Atlanta, GA 30301" +187820,Wired Headphones,1,11.99,04/24/19 13:52,"919 Hickory St, Atlanta, GA 30301" +187821,AA Batteries (4-pack),1,3.84,04/07/19 22:28,"365 Dogwood St, Los Angeles, CA 90001" +187822,20in Monitor,1,109.99,04/02/19 19:30,"924 Cedar St, San Francisco, CA 94016" +187823,USB-C Charging Cable,1,11.95,04/02/19 17:08,"211 Dogwood St, Seattle, WA 98101" +187824,27in 4K Gaming Monitor,1,389.99,04/16/19 06:02,"539 9th St, Dallas, TX 75001" +187825,AA Batteries (4-pack),3,3.84,04/26/19 20:02,"948 9th St, Dallas, TX 75001" +187826,Apple Airpods Headphones,1,150,04/05/19 16:49,"174 7th St, Portland, OR 97035" +187827,iPhone,1,700,04/15/19 13:43,"697 Ridge St, San Francisco, CA 94016" +187828,20in Monitor,1,109.99,04/23/19 10:00,"60 South St, Boston, MA 02215" +187829,USB-C Charging Cable,1,11.95,04/10/19 21:25,"451 Lakeview St, San Francisco, CA 94016" +187830,USB-C Charging Cable,1,11.95,04/30/19 21:06,"426 Maple St, Dallas, TX 75001" +187831,Lightning Charging Cable,1,14.95,04/14/19 23:08,"778 Hickory St, Portland, OR 97035" +187832,Wired Headphones,1,11.99,04/26/19 13:05,"967 10th St, Los Angeles, CA 90001" +187833,USB-C Charging Cable,1,11.95,04/21/19 15:13,"583 Lincoln St, Austin, TX 73301" +187834,34in Ultrawide Monitor,1,379.99,04/12/19 17:42,"106 Adams St, Boston, MA 02215" +187835,AA Batteries (4-pack),1,3.84,04/03/19 17:22,"571 2nd St, New York City, NY 10001" +187836,AA Batteries (4-pack),1,3.84,04/13/19 08:58,"529 9th St, Portland, ME 04101" +187837,USB-C Charging Cable,1,11.95,04/28/19 11:44,"488 West St, Seattle, WA 98101" +187838,Wired Headphones,1,11.99,04/25/19 00:20,"900 Madison St, New York City, NY 10001" +187839,34in Ultrawide Monitor,1,379.99,04/07/19 12:00,"994 Hill St, Dallas, TX 75001" +187840,AA Batteries (4-pack),1,3.84,04/28/19 20:23,"878 13th St, San Francisco, CA 94016" +187841,Apple Airpods Headphones,1,150,04/09/19 15:04,"963 Highland St, Seattle, WA 98101" +187842,Wired Headphones,1,11.99,04/28/19 09:55,"242 Dogwood St, Los Angeles, CA 90001" +187843,27in FHD Monitor,1,149.99,04/25/19 17:35,"662 5th St, San Francisco, CA 94016" +187844,AA Batteries (4-pack),1,3.84,04/27/19 15:07,"126 Lincoln St, San Francisco, CA 94016" +187845,Google Phone,1,600,04/15/19 07:47,"236 Adams St, Dallas, TX 75001" +187845,USB-C Charging Cable,1,11.95,04/15/19 07:47,"236 Adams St, Dallas, TX 75001" +187846,Bose SoundSport Headphones,1,99.99,04/24/19 19:03,"598 Hill St, New York City, NY 10001" +187847,27in 4K Gaming Monitor,1,389.99,04/06/19 16:25,"146 North St, Atlanta, GA 30301" +187848,AA Batteries (4-pack),1,3.84,04/06/19 06:59,"478 12th St, Los Angeles, CA 90001" +187849,20in Monitor,1,109.99,04/14/19 10:59,"84 Pine St, Boston, MA 02215" +187850,Lightning Charging Cable,1,14.95,04/24/19 19:37,"356 1st St, New York City, NY 10001" +187851,AAA Batteries (4-pack),1,2.99,04/01/19 21:59,"492 12th St, San Francisco, CA 94016" +187852,34in Ultrawide Monitor,1,379.99,04/10/19 10:48,"280 Center St, Boston, MA 02215" +187853,USB-C Charging Cable,1,11.95,04/12/19 20:24,"305 14th St, San Francisco, CA 94016" +187854,Lightning Charging Cable,1,14.95,04/26/19 10:55,"462 Park St, New York City, NY 10001" +187855,Wired Headphones,1,11.99,04/15/19 22:07,"417 8th St, Seattle, WA 98101" +187856,Google Phone,1,600,04/04/19 21:26,"387 6th St, Portland, ME 04101" +187857,USB-C Charging Cable,1,11.95,04/11/19 23:15,"907 13th St, New York City, NY 10001" +187858,LG Washing Machine,1,600.0,04/14/19 07:37,"239 5th St, San Francisco, CA 94016" +187859,Flatscreen TV,1,300,04/01/19 13:21,"707 Hickory St, Los Angeles, CA 90001" +187860,Apple Airpods Headphones,1,150,04/21/19 23:47,"961 South St, Los Angeles, CA 90001" +187861,20in Monitor,1,109.99,04/18/19 18:57,"261 Walnut St, Portland, OR 97035" +187862,Lightning Charging Cable,1,14.95,04/13/19 08:45,"987 Highland St, Los Angeles, CA 90001" +187863,AAA Batteries (4-pack),2,2.99,04/06/19 20:42,"838 Walnut St, Dallas, TX 75001" +187864,27in 4K Gaming Monitor,1,389.99,04/05/19 19:42,"177 1st St, Atlanta, GA 30301" +187865,Lightning Charging Cable,1,14.95,04/03/19 21:16,"824 8th St, Boston, MA 02215" +187866,AA Batteries (4-pack),2,3.84,04/02/19 14:09,"169 West St, Dallas, TX 75001" +187867,USB-C Charging Cable,1,11.95,04/11/19 16:28,"320 Chestnut St, Portland, OR 97035" +187868,Apple Airpods Headphones,1,150,04/05/19 13:48,"98 5th St, Dallas, TX 75001" +187869,20in Monitor,1,109.99,04/28/19 12:51,"933 4th St, Seattle, WA 98101" +187870,USB-C Charging Cable,1,11.95,04/19/19 18:48,"541 Walnut St, New York City, NY 10001" +187871,Wired Headphones,2,11.99,04/14/19 19:41,"705 9th St, Seattle, WA 98101" +187872,AA Batteries (4-pack),1,3.84,04/28/19 18:46,"610 7th St, Atlanta, GA 30301" +187873,AAA Batteries (4-pack),1,2.99,04/27/19 14:34,"860 12th St, Portland, OR 97035" +187874,Lightning Charging Cable,1,14.95,04/10/19 10:24,"505 4th St, Dallas, TX 75001" +187875,AA Batteries (4-pack),1,3.84,04/23/19 10:25,"386 Madison St, Seattle, WA 98101" +187876,Wired Headphones,1,11.99,04/03/19 15:07,"891 Highland St, Los Angeles, CA 90001" +187877,20in Monitor,1,109.99,04/16/19 15:55,"52 Meadow St, Los Angeles, CA 90001" +187878,iPhone,1,700,04/11/19 20:25,"917 Elm St, Austin, TX 73301" +187879,Lightning Charging Cable,1,14.95,04/28/19 22:37,"242 Meadow St, Atlanta, GA 30301" +187880,iPhone,1,700,04/20/19 18:16,"114 Walnut St, Seattle, WA 98101" +187881,27in FHD Monitor,1,149.99,04/21/19 14:46,"517 Madison St, New York City, NY 10001" +187882,AAA Batteries (4-pack),1,2.99,04/06/19 21:24,"678 Chestnut St, Los Angeles, CA 90001" +187883,AAA Batteries (4-pack),1,2.99,04/12/19 10:23,"948 13th St, New York City, NY 10001" +187884,ThinkPad Laptop,1,999.99,04/08/19 18:38,"216 Church St, Los Angeles, CA 90001" +187885,27in 4K Gaming Monitor,1,389.99,04/12/19 08:35,"578 North St, Dallas, TX 75001" +187886,Wired Headphones,1,11.99,04/11/19 14:52,"558 Center St, Los Angeles, CA 90001" +187887,27in 4K Gaming Monitor,1,389.99,04/13/19 22:35,"728 Washington St, New York City, NY 10001" +187888,Macbook Pro Laptop,1,1700,04/25/19 16:14,"222 Forest St, Los Angeles, CA 90001" +187889,AAA Batteries (4-pack),2,2.99,04/23/19 11:07,"869 West St, San Francisco, CA 94016" +187890,AAA Batteries (4-pack),2,2.99,04/06/19 13:16,"615 Sunset St, New York City, NY 10001" +187891,Lightning Charging Cable,1,14.95,04/11/19 18:05,"747 North St, Atlanta, GA 30301" +187892,USB-C Charging Cable,1,11.95,04/13/19 13:09,"583 Jackson St, Austin, TX 73301" +187893,AAA Batteries (4-pack),2,2.99,04/13/19 16:51,"147 Ridge St, Los Angeles, CA 90001" +187893,Wired Headphones,1,11.99,04/13/19 16:51,"147 Ridge St, Los Angeles, CA 90001" +187894,ThinkPad Laptop,1,999.99,04/12/19 22:47,"724 Jefferson St, San Francisco, CA 94016" +187895,Flatscreen TV,1,300,04/08/19 12:13,"192 Spruce St, Atlanta, GA 30301" +187896,Lightning Charging Cable,1,14.95,04/28/19 19:38,"596 Meadow St, Dallas, TX 75001" +187897,USB-C Charging Cable,1,11.95,04/12/19 17:21,"534 Maple St, Austin, TX 73301" +187898,Wired Headphones,1,11.99,04/04/19 12:39,"834 Willow St, Boston, MA 02215" +187899,Wired Headphones,1,11.99,04/21/19 23:43,"390 Washington St, Atlanta, GA 30301" +187900,USB-C Charging Cable,1,11.95,04/22/19 17:08,"572 Adams St, San Francisco, CA 94016" +187901,ThinkPad Laptop,1,999.99,04/23/19 21:19,"788 Cedar St, San Francisco, CA 94016" +187902,Lightning Charging Cable,1,14.95,04/12/19 16:38,"137 Johnson St, San Francisco, CA 94016" +187903,Lightning Charging Cable,1,14.95,04/08/19 17:54,"898 13th St, Portland, OR 97035" +187904,27in FHD Monitor,1,149.99,04/05/19 11:17,"687 Spruce St, Atlanta, GA 30301" +187905,34in Ultrawide Monitor,1,379.99,04/09/19 16:56,"566 Cedar St, Portland, OR 97035" +187906,AAA Batteries (4-pack),1,2.99,04/27/19 16:56,"496 Willow St, San Francisco, CA 94016" +187907,20in Monitor,1,109.99,04/17/19 13:55,"664 5th St, San Francisco, CA 94016" +187908,iPhone,1,700,04/03/19 17:21,"554 14th St, New York City, NY 10001" +187908,Lightning Charging Cable,1,14.95,04/03/19 17:21,"554 14th St, New York City, NY 10001" +187909,AA Batteries (4-pack),1,3.84,04/14/19 16:05,"843 Center St, San Francisco, CA 94016" +187910,Wired Headphones,1,11.99,04/26/19 14:48,"652 Madison St, New York City, NY 10001" +187911,Wired Headphones,1,11.99,04/22/19 22:08,"383 Ridge St, San Francisco, CA 94016" +187912,AAA Batteries (4-pack),1,2.99,04/18/19 12:44,"647 Johnson St, New York City, NY 10001" +187913,AA Batteries (4-pack),1,3.84,04/15/19 00:03,"125 6th St, New York City, NY 10001" +187914,Google Phone,1,600,04/16/19 14:27,"455 Cedar St, Los Angeles, CA 90001" +187915,34in Ultrawide Monitor,1,379.99,04/13/19 11:18,"723 Highland St, Los Angeles, CA 90001" +187916,AAA Batteries (4-pack),1,2.99,04/20/19 10:56,"27 Ridge St, Portland, OR 97035" +187917,AAA Batteries (4-pack),3,2.99,04/11/19 08:24,"54 2nd St, New York City, NY 10001" +187918,USB-C Charging Cable,1,11.95,04/15/19 11:52,"75 14th St, San Francisco, CA 94016" +187919,27in FHD Monitor,1,149.99,04/06/19 20:36,"182 Meadow St, San Francisco, CA 94016" +187920,Macbook Pro Laptop,1,1700,04/19/19 12:14,"327 Ridge St, San Francisco, CA 94016" +187921,Bose SoundSport Headphones,1,99.99,04/17/19 12:02,"521 Dogwood St, New York City, NY 10001" +187922,Google Phone,1,600,04/25/19 00:51,"749 Johnson St, Boston, MA 02215" +187922,Bose SoundSport Headphones,1,99.99,04/25/19 00:51,"749 Johnson St, Boston, MA 02215" +187923,AAA Batteries (4-pack),2,2.99,04/11/19 09:28,"695 Spruce St, Seattle, WA 98101" +187924,Lightning Charging Cable,1,14.95,04/03/19 15:06,"935 River St, Boston, MA 02215" +187925,iPhone,1,700,04/20/19 11:11,"147 2nd St, San Francisco, CA 94016" +187926,Wired Headphones,1,11.99,04/23/19 19:03,"987 9th St, New York City, NY 10001" +187927,Lightning Charging Cable,2,14.95,04/10/19 14:50,"662 Willow St, Seattle, WA 98101" +187928,AA Batteries (4-pack),1,3.84,04/10/19 18:51,"527 Walnut St, Atlanta, GA 30301" +187929,Wired Headphones,1,11.99,04/21/19 16:07,"503 Lake St, Dallas, TX 75001" +187930,Apple Airpods Headphones,1,150,04/11/19 16:15,"849 11th St, San Francisco, CA 94016" +187931,AAA Batteries (4-pack),1,2.99,04/08/19 10:35,"938 River St, San Francisco, CA 94016" +187932,USB-C Charging Cable,1,11.95,04/25/19 11:01,"639 14th St, Dallas, TX 75001" +187933,34in Ultrawide Monitor,1,379.99,04/13/19 10:51,"474 Meadow St, New York City, NY 10001" +187934,AAA Batteries (4-pack),1,2.99,04/07/19 06:37,"956 Jefferson St, San Francisco, CA 94016" +187935,iPhone,1,700,04/22/19 13:30,"275 14th St, Boston, MA 02215" +187936,AA Batteries (4-pack),1,3.84,04/08/19 13:34,"909 Pine St, Seattle, WA 98101" +187937,27in FHD Monitor,1,149.99,04/26/19 20:40,"560 Willow St, Boston, MA 02215" +187938,Wired Headphones,1,11.99,04/24/19 13:21,"970 Maple St, New York City, NY 10001" +187939,AAA Batteries (4-pack),1,2.99,04/05/19 14:01,"308 Dogwood St, San Francisco, CA 94016" +187940,AAA Batteries (4-pack),1,2.99,04/20/19 21:17,"371 Hill St, Los Angeles, CA 90001" +187941,Wired Headphones,1,11.99,04/02/19 22:11,"265 Main St, New York City, NY 10001" +187942,USB-C Charging Cable,1,11.95,04/05/19 10:10,"905 Elm St, San Francisco, CA 94016" +187943,AA Batteries (4-pack),1,3.84,04/08/19 11:17,"902 5th St, Atlanta, GA 30301" +187944,ThinkPad Laptop,1,999.99,04/08/19 21:33,"707 Highland St, San Francisco, CA 94016" +187945,AAA Batteries (4-pack),1,2.99,04/06/19 18:31,"385 South St, New York City, NY 10001" +187946,27in FHD Monitor,1,149.99,04/29/19 12:32,"524 Pine St, Boston, MA 02215" +187947,AAA Batteries (4-pack),1,2.99,04/26/19 20:06,"688 South St, San Francisco, CA 94016" +187948,34in Ultrawide Monitor,1,379.99,04/21/19 20:58,"849 Wilson St, Portland, ME 04101" +187949,20in Monitor,1,109.99,04/16/19 10:09,"254 Jackson St, Dallas, TX 75001" +187950,27in FHD Monitor,1,149.99,04/05/19 14:59,"54 13th St, Boston, MA 02215" +187951,AA Batteries (4-pack),1,3.84,04/29/19 00:41,"65 Dogwood St, San Francisco, CA 94016" +187952,AAA Batteries (4-pack),1,2.99,04/12/19 11:51,"886 Chestnut St, Austin, TX 73301" +187952,AAA Batteries (4-pack),2,2.99,04/12/19 11:51,"886 Chestnut St, Austin, TX 73301" +187953,Wired Headphones,1,11.99,04/16/19 16:04,"182 Elm St, Boston, MA 02215" +187954,AAA Batteries (4-pack),1,2.99,04/24/19 10:05,"273 Lakeview St, San Francisco, CA 94016" +187955,Lightning Charging Cable,1,14.95,04/22/19 08:16,"944 12th St, San Francisco, CA 94016" +187956,Lightning Charging Cable,1,14.95,04/11/19 14:00,"505 Jackson St, Los Angeles, CA 90001" +187957,USB-C Charging Cable,2,11.95,04/02/19 21:40,"786 8th St, Los Angeles, CA 90001" +187958,USB-C Charging Cable,1,11.95,04/03/19 05:34,"420 West St, Portland, OR 97035" +187959,AA Batteries (4-pack),1,3.84,04/13/19 14:31,"22 Maple St, San Francisco, CA 94016" +187960,Apple Airpods Headphones,1,150,04/21/19 10:01,"467 Church St, Austin, TX 73301" +187961,34in Ultrawide Monitor,1,379.99,04/04/19 09:55,"416 Lincoln St, New York City, NY 10001" +187961,Wired Headphones,1,11.99,04/04/19 09:55,"416 Lincoln St, New York City, NY 10001" +187962,USB-C Charging Cable,1,11.95,04/27/19 21:45,"203 Madison St, New York City, NY 10001" +187963,Bose SoundSport Headphones,1,99.99,04/18/19 21:54,"609 13th St, Dallas, TX 75001" +187964,Wired Headphones,1,11.99,04/19/19 00:25,"724 Cherry St, San Francisco, CA 94016" +187965,Wired Headphones,1,11.99,04/21/19 09:48,"834 13th St, Austin, TX 73301" +187966,Google Phone,1,600,04/08/19 22:18,"275 North St, Dallas, TX 75001" +187967,Lightning Charging Cable,1,14.95,04/02/19 08:29,"855 Lakeview St, Dallas, TX 75001" +187968,USB-C Charging Cable,1,11.95,04/07/19 19:11,"667 1st St, Boston, MA 02215" +187969,USB-C Charging Cable,1,11.95,04/15/19 10:14,"267 Walnut St, Atlanta, GA 30301" +187970,Google Phone,1,600,04/21/19 16:55,"388 Wilson St, San Francisco, CA 94016" +187971,Lightning Charging Cable,1,14.95,04/15/19 11:30,"839 Jefferson St, Boston, MA 02215" +187972,Wired Headphones,1,11.99,04/22/19 16:28,"21 Lake St, New York City, NY 10001" +187973,USB-C Charging Cable,1,11.95,04/25/19 08:52,"563 Elm St, San Francisco, CA 94016" +187974,27in FHD Monitor,1,149.99,04/13/19 15:17,"90 Jackson St, New York City, NY 10001" +187974,AA Batteries (4-pack),1,3.84,04/13/19 15:17,"90 Jackson St, New York City, NY 10001" +187975,Bose SoundSport Headphones,1,99.99,04/25/19 02:03,"408 Spruce St, Boston, MA 02215" +187976,ThinkPad Laptop,1,999.99,04/04/19 19:24,"929 5th St, Boston, MA 02215" +187977,USB-C Charging Cable,1,11.95,04/14/19 10:18,"542 Church St, San Francisco, CA 94016" +187978,AAA Batteries (4-pack),2,2.99,04/17/19 22:20,"930 1st St, Portland, OR 97035" +187979,Bose SoundSport Headphones,1,99.99,04/04/19 20:59,"447 Pine St, Portland, OR 97035" +187980,AAA Batteries (4-pack),1,2.99,04/18/19 22:23,"841 Church St, San Francisco, CA 94016" +187981,USB-C Charging Cable,1,11.95,04/03/19 16:52,"492 Willow St, San Francisco, CA 94016" +187982,USB-C Charging Cable,1,11.95,04/20/19 19:51,"583 Hill St, Los Angeles, CA 90001" +187983,ThinkPad Laptop,1,999.99,04/07/19 17:55,"271 Pine St, San Francisco, CA 94016" +187984,Lightning Charging Cable,1,14.95,04/26/19 08:57,"533 North St, New York City, NY 10001" +187985,iPhone,1,700,04/28/19 10:52,"61 Madison St, Los Angeles, CA 90001" +187986,USB-C Charging Cable,1,11.95,04/28/19 11:39,"656 Hill St, San Francisco, CA 94016" +187987,AA Batteries (4-pack),1,3.84,04/03/19 21:44,"327 Hill St, Dallas, TX 75001" +187988,AA Batteries (4-pack),1,3.84,04/03/19 20:54,"328 Madison St, Dallas, TX 75001" +187989,AA Batteries (4-pack),2,3.84,04/24/19 20:41,"212 Highland St, Dallas, TX 75001" +187990,Wired Headphones,2,11.99,04/10/19 01:39,"514 4th St, Boston, MA 02215" +187991,34in Ultrawide Monitor,1,379.99,04/25/19 21:21,"461 Highland St, Seattle, WA 98101" +187992,LG Washing Machine,1,600.0,04/06/19 12:16,"368 Main St, New York City, NY 10001" +187993,Wired Headphones,1,11.99,04/28/19 10:40,"553 Lakeview St, San Francisco, CA 94016" +187994,USB-C Charging Cable,1,11.95,04/22/19 19:50,"228 Center St, Portland, OR 97035" +187995,Bose SoundSport Headphones,1,99.99,04/23/19 13:16,"384 7th St, Los Angeles, CA 90001" +187996,USB-C Charging Cable,1,11.95,04/09/19 00:15,"19 Chestnut St, Seattle, WA 98101" +187997,AA Batteries (4-pack),1,3.84,04/30/19 11:55,"247 Lake St, Los Angeles, CA 90001" +187998,AA Batteries (4-pack),5,3.84,04/08/19 18:40,"234 Forest St, San Francisco, CA 94016" +187999,27in FHD Monitor,1,149.99,04/20/19 09:17,"808 Madison St, Dallas, TX 75001" +188000,Bose SoundSport Headphones,1,99.99,04/13/19 19:43,"577 Adams St, Dallas, TX 75001" +188001,27in 4K Gaming Monitor,1,389.99,04/10/19 20:55,"521 Hickory St, San Francisco, CA 94016" +188002,iPhone,1,700,04/13/19 15:07,"301 Spruce St, New York City, NY 10001" +188002,Lightning Charging Cable,1,14.95,04/13/19 15:07,"301 Spruce St, New York City, NY 10001" +188003,AA Batteries (4-pack),2,3.84,04/22/19 15:49,"709 Adams St, Seattle, WA 98101" +188004,USB-C Charging Cable,1,11.95,04/06/19 21:58,"426 Washington St, Boston, MA 02215" +188005,27in FHD Monitor,1,149.99,04/05/19 18:33,"262 1st St, San Francisco, CA 94016" +188006,27in FHD Monitor,1,149.99,04/12/19 23:31,"246 2nd St, Seattle, WA 98101" +188007,AA Batteries (4-pack),1,3.84,04/18/19 08:02,"645 Madison St, Los Angeles, CA 90001" +188008,USB-C Charging Cable,1,11.95,04/14/19 11:11,"988 South St, New York City, NY 10001" +188009,Google Phone,1,600,04/06/19 11:43,"325 Center St, San Francisco, CA 94016" +188009,USB-C Charging Cable,1,11.95,04/06/19 11:43,"325 Center St, San Francisco, CA 94016" +188010,Apple Airpods Headphones,1,150,04/30/19 20:56,"913 Church St, New York City, NY 10001" +188011,27in 4K Gaming Monitor,1,389.99,04/21/19 16:59,"688 Spruce St, San Francisco, CA 94016" +188012,Apple Airpods Headphones,1,150,04/10/19 21:37,"816 Washington St, Los Angeles, CA 90001" +188013,USB-C Charging Cable,1,11.95,04/15/19 20:05,"29 8th St, Boston, MA 02215" +188014,Bose SoundSport Headphones,1,99.99,04/07/19 15:41,"459 Center St, New York City, NY 10001" +188015,AAA Batteries (4-pack),1,2.99,04/28/19 20:10,"387 Forest St, Seattle, WA 98101" +188016,Apple Airpods Headphones,1,150,04/04/19 09:44,"695 Church St, Austin, TX 73301" +188017,Wired Headphones,1,11.99,04/14/19 18:12,"688 Adams St, Atlanta, GA 30301" +188018,Lightning Charging Cable,1,14.95,04/26/19 14:04,"722 Jackson St, Austin, TX 73301" +188019,USB-C Charging Cable,1,11.95,04/21/19 20:27,"620 Hill St, San Francisco, CA 94016" +188020,Bose SoundSport Headphones,1,99.99,04/03/19 18:35,"999 5th St, New York City, NY 10001" +188021,iPhone,1,700,04/13/19 21:42,"576 Johnson St, Atlanta, GA 30301" +188022,Apple Airpods Headphones,1,150,04/12/19 14:36,"700 9th St, San Francisco, CA 94016" +188023,iPhone,1,700,04/28/19 06:46,"97 Dogwood St, Seattle, WA 98101" +188024,AA Batteries (4-pack),3,3.84,04/24/19 10:27,"803 13th St, San Francisco, CA 94016" +188025,USB-C Charging Cable,1,11.95,04/28/19 09:18,"944 Madison St, San Francisco, CA 94016" +188026,AA Batteries (4-pack),1,3.84,04/11/19 10:26,"176 Willow St, Boston, MA 02215" +188027,Wired Headphones,1,11.99,04/03/19 10:28,"275 Pine St, Dallas, TX 75001" +188028,AA Batteries (4-pack),1,3.84,04/13/19 11:37,"156 Washington St, San Francisco, CA 94016" +188029,AA Batteries (4-pack),1,3.84,04/26/19 11:48,"124 5th St, Austin, TX 73301" +188030,Lightning Charging Cable,1,14.95,04/28/19 00:46,"431 Adams St, Portland, OR 97035" +188031,20in Monitor,1,109.99,04/20/19 21:58,"766 Lake St, Boston, MA 02215" +188032,Lightning Charging Cable,1,14.95,04/06/19 17:53,"718 14th St, New York City, NY 10001" +188033,USB-C Charging Cable,2,11.95,04/24/19 08:03,"451 Hill St, San Francisco, CA 94016" +188034,AA Batteries (4-pack),2,3.84,04/25/19 08:28,"75 River St, Los Angeles, CA 90001" +188035,34in Ultrawide Monitor,1,379.99,04/28/19 18:57,"780 4th St, Atlanta, GA 30301" +188036,ThinkPad Laptop,1,999.99,04/22/19 20:03,"871 Church St, Los Angeles, CA 90001" +188037,Bose SoundSport Headphones,1,99.99,04/02/19 13:38,"416 Wilson St, New York City, NY 10001" +188038,Apple Airpods Headphones,1,150,04/26/19 18:08,"348 Jefferson St, Dallas, TX 75001" +188039,AAA Batteries (4-pack),1,2.99,04/07/19 20:57,"7 North St, San Francisco, CA 94016" +188040,Apple Airpods Headphones,1,150,04/28/19 15:39,"356 Chestnut St, Boston, MA 02215" +188041,Flatscreen TV,1,300,04/06/19 18:31,"238 Highland St, Boston, MA 02215" +188042,USB-C Charging Cable,1,11.95,04/18/19 12:05,"860 8th St, New York City, NY 10001" +188043,Wired Headphones,1,11.99,04/25/19 21:18,"997 9th St, Portland, OR 97035" +188044,Bose SoundSport Headphones,1,99.99,04/16/19 20:50,"225 Madison St, New York City, NY 10001" +188045,Lightning Charging Cable,1,14.95,04/25/19 20:01,"219 Lake St, Dallas, TX 75001" +188046,AA Batteries (4-pack),3,3.84,04/29/19 20:11,"18 Hill St, Boston, MA 02215" +188047,AA Batteries (4-pack),1,3.84,04/08/19 20:38,"126 6th St, Dallas, TX 75001" +188048,USB-C Charging Cable,1,11.95,04/27/19 18:51,"436 Spruce St, Austin, TX 73301" +188049,Bose SoundSport Headphones,1,99.99,04/02/19 13:59,"743 5th St, Dallas, TX 75001" +188050,27in 4K Gaming Monitor,1,389.99,04/26/19 08:41,"760 14th St, Seattle, WA 98101" +188051,Lightning Charging Cable,1,14.95,04/05/19 21:38,"359 Cedar St, San Francisco, CA 94016" +188052,AAA Batteries (4-pack),1,2.99,04/21/19 11:58,"953 14th St, Portland, OR 97035" +188053,USB-C Charging Cable,1,11.95,04/21/19 12:57,"583 5th St, Los Angeles, CA 90001" +188054,34in Ultrawide Monitor,1,379.99,04/01/19 15:14,"505 Johnson St, Boston, MA 02215" +188055,Lightning Charging Cable,1,14.95,04/08/19 15:11,"362 8th St, San Francisco, CA 94016" +188056,Apple Airpods Headphones,1,150,04/01/19 18:02,"604 Elm St, San Francisco, CA 94016" +188056,AAA Batteries (4-pack),1,2.99,04/01/19 18:02,"604 Elm St, San Francisco, CA 94016" +188057,27in 4K Gaming Monitor,1,389.99,04/05/19 15:32,"29 Hill St, Seattle, WA 98101" +188058,USB-C Charging Cable,1,11.95,04/01/19 14:35,"679 Washington St, Seattle, WA 98101" +188059,Apple Airpods Headphones,1,150,04/25/19 17:52,"553 Main St, San Francisco, CA 94016" +188060,AAA Batteries (4-pack),1,2.99,04/17/19 13:34,"977 Hickory St, Portland, OR 97035" +188061,iPhone,1,700,04/28/19 09:16,"475 6th St, San Francisco, CA 94016" +188062,USB-C Charging Cable,1,11.95,04/01/19 12:26,"688 Wilson St, New York City, NY 10001" +188063,AA Batteries (4-pack),1,3.84,04/04/19 08:44,"545 Ridge St, Atlanta, GA 30301" +188064,Wired Headphones,1,11.99,04/27/19 09:58,"700 Lake St, Los Angeles, CA 90001" +188065,Apple Airpods Headphones,1,150,04/10/19 11:50,"329 Pine St, Seattle, WA 98101" +188066,Wired Headphones,1,11.99,04/13/19 19:01,"321 Spruce St, Los Angeles, CA 90001" +188067,AAA Batteries (4-pack),3,2.99,04/21/19 19:59,"825 8th St, Boston, MA 02215" +188068,iPhone,1,700,04/27/19 18:27,"801 West St, Dallas, TX 75001" +188069,AAA Batteries (4-pack),2,2.99,04/01/19 20:16,"910 4th St, New York City, NY 10001" +188070,Lightning Charging Cable,1,14.95,04/03/19 21:31,"760 10th St, San Francisco, CA 94016" +188071,27in FHD Monitor,1,149.99,04/12/19 20:27,"93 Chestnut St, Austin, TX 73301" +188072,Lightning Charging Cable,1,14.95,04/05/19 16:39,"46 Johnson St, New York City, NY 10001" +188073,USB-C Charging Cable,1,11.95,04/26/19 18:58,"342 Johnson St, Portland, OR 97035" +188074,Wired Headphones,1,11.99,04/23/19 15:37,"999 13th St, Seattle, WA 98101" +188075,USB-C Charging Cable,1,11.95,04/03/19 16:35,"71 Church St, Boston, MA 02215" +188076,Bose SoundSport Headphones,1,99.99,04/22/19 14:29,"468 Lincoln St, Los Angeles, CA 90001" +188077,USB-C Charging Cable,1,11.95,04/24/19 00:12,"350 Lincoln St, Portland, OR 97035" +188078,27in 4K Gaming Monitor,1,389.99,04/20/19 23:21,"673 Pine St, Boston, MA 02215" +188079,AA Batteries (4-pack),1,3.84,04/10/19 20:58,"164 7th St, Dallas, TX 75001" +188080,27in FHD Monitor,1,149.99,04/24/19 15:10,"619 5th St, Seattle, WA 98101" +188081,Wired Headphones,1,11.99,04/13/19 19:01,"358 Wilson St, Austin, TX 73301" +188082,Wired Headphones,1,11.99,04/23/19 20:15,"520 Adams St, Boston, MA 02215" +188083,USB-C Charging Cable,1,11.95,04/23/19 08:28,"463 Jackson St, San Francisco, CA 94016" +188084,USB-C Charging Cable,1,11.95,04/15/19 09:56,"207 River St, Austin, TX 73301" +188085,Lightning Charging Cable,1,14.95,04/15/19 21:06,"14 Washington St, Boston, MA 02215" +188086,Lightning Charging Cable,1,14.95,04/19/19 00:05,"87 Lakeview St, Portland, OR 97035" +188087,Bose SoundSport Headphones,1,99.99,04/21/19 20:31,"696 Cherry St, Dallas, TX 75001" +188088,USB-C Charging Cable,1,11.95,04/24/19 10:04,"760 Meadow St, New York City, NY 10001" +188089,Wired Headphones,1,11.99,04/19/19 15:33,"58 2nd St, Los Angeles, CA 90001" +188090,27in 4K Gaming Monitor,1,389.99,04/18/19 16:05,"291 11th St, San Francisco, CA 94016" +188091,Bose SoundSport Headphones,1,99.99,04/25/19 17:00,"631 13th St, Seattle, WA 98101" +188092,Wired Headphones,1,11.99,04/11/19 20:02,"611 Lincoln St, San Francisco, CA 94016" +188093,USB-C Charging Cable,1,11.95,04/18/19 16:33,"130 Cherry St, San Francisco, CA 94016" +188094,Wired Headphones,1,11.99,04/20/19 12:26,"747 4th St, San Francisco, CA 94016" +188095,AA Batteries (4-pack),1,3.84,04/08/19 03:47,"799 Hill St, Dallas, TX 75001" +188096,Lightning Charging Cable,1,14.95,04/28/19 05:27,"656 Church St, San Francisco, CA 94016" +188097,Flatscreen TV,1,300,04/02/19 06:44,"285 West St, Boston, MA 02215" +188098,AAA Batteries (4-pack),1,2.99,04/23/19 15:18,"201 Lincoln St, Austin, TX 73301" +188099,USB-C Charging Cable,1,11.95,04/10/19 20:01,"399 Willow St, New York City, NY 10001" +188100,Wired Headphones,1,11.99,04/29/19 12:47,"163 Main St, San Francisco, CA 94016" +188101,Bose SoundSport Headphones,1,99.99,04/26/19 11:34,"315 Hill St, Austin, TX 73301" +188102,AAA Batteries (4-pack),1,2.99,04/08/19 21:07,"452 Cherry St, Seattle, WA 98101" +188103,Bose SoundSport Headphones,1,99.99,04/10/19 15:55,"627 Elm St, Seattle, WA 98101" +188104,Wired Headphones,1,11.99,04/15/19 17:37,"7 Center St, Portland, OR 97035" +188105,USB-C Charging Cable,1,11.95,04/10/19 01:51,"63 Washington St, Boston, MA 02215" +188106,AAA Batteries (4-pack),1,2.99,04/21/19 22:56,"118 7th St, Seattle, WA 98101" +188107,Lightning Charging Cable,1,14.95,04/09/19 19:44,"352 4th St, Boston, MA 02215" +188108,iPhone,1,700,04/28/19 14:39,"206 Lake St, Boston, MA 02215" +188109,Apple Airpods Headphones,1,150,04/08/19 18:20,"122 8th St, Dallas, TX 75001" +188110,USB-C Charging Cable,2,11.95,04/20/19 15:49,"986 Willow St, San Francisco, CA 94016" +188111,AA Batteries (4-pack),1,3.84,04/07/19 19:46,"838 Maple St, San Francisco, CA 94016" +188112,AAA Batteries (4-pack),1,2.99,04/01/19 13:32,"473 13th St, Atlanta, GA 30301" +188113,20in Monitor,1,109.99,04/06/19 16:26,"909 11th St, Atlanta, GA 30301" +188114,34in Ultrawide Monitor,1,379.99,04/19/19 08:36,"278 Johnson St, Atlanta, GA 30301" +188115,Apple Airpods Headphones,1,150,04/06/19 09:06,"425 8th St, Los Angeles, CA 90001" +188116,Wired Headphones,1,11.99,04/19/19 13:34,"317 Pine St, New York City, NY 10001" +188116,iPhone,1,700,04/19/19 13:34,"317 Pine St, New York City, NY 10001" +188117,Bose SoundSport Headphones,1,99.99,04/05/19 22:50,"239 Ridge St, Los Angeles, CA 90001" +188118,Wired Headphones,1,11.99,04/30/19 11:24,"339 Lake St, Los Angeles, CA 90001" +188119,AAA Batteries (4-pack),1,2.99,04/21/19 10:02,"475 Maple St, Los Angeles, CA 90001" +188120,AA Batteries (4-pack),1,3.84,04/13/19 13:16,"494 Adams St, Boston, MA 02215" +188121,27in FHD Monitor,1,149.99,04/13/19 15:28,"512 Cherry St, San Francisco, CA 94016" +188122,Wired Headphones,1,11.99,04/21/19 12:06,"806 9th St, Boston, MA 02215" +188123,Lightning Charging Cable,1,14.95,04/12/19 16:36,"218 Spruce St, San Francisco, CA 94016" +188124,Flatscreen TV,1,300,04/27/19 03:55,"171 North St, Dallas, TX 75001" +188125,AA Batteries (4-pack),1,3.84,04/24/19 16:16,"470 Wilson St, New York City, NY 10001" +188126,USB-C Charging Cable,1,11.95,04/21/19 14:04,"916 12th St, Portland, OR 97035" +188127,Bose SoundSport Headphones,1,99.99,04/06/19 09:31,"159 8th St, Los Angeles, CA 90001" +188128,Apple Airpods Headphones,1,150,04/04/19 21:15,"287 Lincoln St, Seattle, WA 98101" +188129,AA Batteries (4-pack),1,3.84,04/26/19 18:58,"581 7th St, Boston, MA 02215" +188130,AAA Batteries (4-pack),1,2.99,04/06/19 07:20,"386 2nd St, Los Angeles, CA 90001" +188131,Lightning Charging Cable,1,14.95,04/09/19 13:37,"217 Lincoln St, Boston, MA 02215" +188132,Flatscreen TV,1,300,04/17/19 10:50,"176 Willow St, Boston, MA 02215" +188133,AAA Batteries (4-pack),2,2.99,04/16/19 21:17,"114 Maple St, San Francisco, CA 94016" +188134,Bose SoundSport Headphones,1,99.99,04/12/19 16:35,"362 Willow St, San Francisco, CA 94016" +188135,Wired Headphones,2,11.99,04/18/19 11:37,"710 South St, Atlanta, GA 30301" +188136,Wired Headphones,1,11.99,04/23/19 09:12,"254 Hickory St, New York City, NY 10001" +188137,Lightning Charging Cable,1,14.95,04/28/19 16:38,"444 Sunset St, Los Angeles, CA 90001" +188138,USB-C Charging Cable,1,11.95,04/27/19 13:04,"95 12th St, Los Angeles, CA 90001" +188139,AAA Batteries (4-pack),1,2.99,04/21/19 13:00,"197 Highland St, Los Angeles, CA 90001" +188140,AAA Batteries (4-pack),1,2.99,04/25/19 21:06,"989 Meadow St, Seattle, WA 98101" +188141,AA Batteries (4-pack),1,3.84,04/22/19 13:39,"250 Spruce St, Portland, OR 97035" +188142,Bose SoundSport Headphones,1,99.99,04/28/19 20:09,"708 Madison St, Austin, TX 73301" +188143,Flatscreen TV,1,300,04/14/19 07:37,"649 4th St, Los Angeles, CA 90001" +188144,Apple Airpods Headphones,1,150,04/24/19 13:13,"110 Walnut St, San Francisco, CA 94016" +188145,AAA Batteries (4-pack),2,2.99,05/01/19 00:02,"791 1st St, Boston, MA 02215" +188146,Wired Headphones,1,11.99,04/11/19 09:42,"382 Hill St, Dallas, TX 75001" +188147,Bose SoundSport Headphones,1,99.99,04/22/19 15:51,"799 Spruce St, Atlanta, GA 30301" +188148,Macbook Pro Laptop,1,1700,04/17/19 18:28,"10 12th St, Seattle, WA 98101" +188149,27in FHD Monitor,1,149.99,04/14/19 17:46,"697 Sunset St, Seattle, WA 98101" +188150,AAA Batteries (4-pack),1,2.99,04/03/19 16:37,"149 Elm St, Boston, MA 02215" +188151,Macbook Pro Laptop,1,1700,04/12/19 14:00,"257 4th St, New York City, NY 10001" +188152,Apple Airpods Headphones,1,150,04/18/19 20:56,"898 Center St, San Francisco, CA 94016" +,,,,, +188153,AA Batteries (4-pack),2,3.84,04/29/19 08:32,"193 Highland St, Los Angeles, CA 90001" +188154,AA Batteries (4-pack),1,3.84,04/03/19 21:48,"883 Jefferson St, San Francisco, CA 94016" +188155,Lightning Charging Cable,1,14.95,04/09/19 11:44,"800 Center St, Seattle, WA 98101" +188155,Bose SoundSport Headphones,1,99.99,04/09/19 11:44,"800 Center St, Seattle, WA 98101" +188156,Bose SoundSport Headphones,1,99.99,04/27/19 12:48,"139 Willow St, San Francisco, CA 94016" +188157,Wired Headphones,1,11.99,04/28/19 13:54,"885 Hickory St, Boston, MA 02215" +188158,Lightning Charging Cable,1,14.95,04/22/19 12:58,"549 Church St, New York City, NY 10001" +188159,USB-C Charging Cable,1,11.95,04/28/19 11:54,"877 7th St, San Francisco, CA 94016" +188160,Macbook Pro Laptop,1,1700,04/27/19 14:22,"791 River St, Atlanta, GA 30301" +188161,AA Batteries (4-pack),2,3.84,04/14/19 16:49,"322 Dogwood St, Seattle, WA 98101" +188162,Lightning Charging Cable,1,14.95,04/24/19 21:57,"659 Park St, New York City, NY 10001" +188163,iPhone,1,700,04/30/19 07:45,"347 Washington St, Los Angeles, CA 90001" +188164,Flatscreen TV,1,300,04/12/19 00:13,"902 Pine St, Austin, TX 73301" +188165,AAA Batteries (4-pack),1,2.99,04/15/19 09:44,"500 1st St, Los Angeles, CA 90001" +188166,Apple Airpods Headphones,1,150,04/04/19 03:02,"868 Maple St, New York City, NY 10001" +188167,Flatscreen TV,1,300,04/25/19 10:50,"6 Highland St, Seattle, WA 98101" +188168,Lightning Charging Cable,1,14.95,04/02/19 16:40,"943 Elm St, San Francisco, CA 94016" +188169,iPhone,1,700,04/13/19 12:49,"284 Forest St, Portland, OR 97035" +188170,Bose SoundSport Headphones,1,99.99,04/07/19 23:16,"721 Johnson St, San Francisco, CA 94016" +188171,Flatscreen TV,1,300,04/10/19 01:24,"985 Sunset St, New York City, NY 10001" +188172,Apple Airpods Headphones,1,150,04/22/19 22:52,"965 Willow St, Los Angeles, CA 90001" +188173,Flatscreen TV,1,300,04/04/19 15:32,"164 7th St, Los Angeles, CA 90001" +188174,Wired Headphones,1,11.99,04/02/19 18:36,"538 Lakeview St, San Francisco, CA 94016" +188175,USB-C Charging Cable,1,11.95,04/06/19 20:20,"2 Church St, Los Angeles, CA 90001" +188176,iPhone,1,700,04/24/19 15:20,"23 7th St, New York City, NY 10001" +188176,Wired Headphones,1,11.99,04/24/19 15:20,"23 7th St, New York City, NY 10001" +188177,AAA Batteries (4-pack),1,2.99,04/24/19 18:21,"858 Wilson St, New York City, NY 10001" +188178,AAA Batteries (4-pack),2,2.99,04/04/19 23:38,"53 5th St, Portland, ME 04101" +188179,iPhone,1,700,04/04/19 16:34,"129 10th St, San Francisco, CA 94016" +188180,Wired Headphones,1,11.99,04/26/19 11:08,"813 Walnut St, Boston, MA 02215" +188181,Apple Airpods Headphones,1,150,04/02/19 10:02,"317 River St, San Francisco, CA 94016" +188182,AA Batteries (4-pack),2,3.84,04/21/19 20:28,"573 North St, Portland, OR 97035" +188183,27in 4K Gaming Monitor,1,389.99,04/19/19 19:55,"190 Cherry St, Dallas, TX 75001" +188184,Flatscreen TV,1,300,04/04/19 13:07,"32 6th St, Boston, MA 02215" +188185,iPhone,1,700,04/24/19 17:37,"243 Hickory St, San Francisco, CA 94016" +188186,AAA Batteries (4-pack),1,2.99,04/05/19 21:20,"48 Chestnut St, San Francisco, CA 94016" +188187,USB-C Charging Cable,1,11.95,04/21/19 21:36,"142 Jackson St, New York City, NY 10001" +188188,27in 4K Gaming Monitor,1,389.99,04/23/19 09:36,"480 Meadow St, San Francisco, CA 94016" +188189,Lightning Charging Cable,1,14.95,04/07/19 06:14,"667 West St, San Francisco, CA 94016" +188190,Apple Airpods Headphones,1,150,04/11/19 16:45,"884 14th St, San Francisco, CA 94016" +188191,Bose SoundSport Headphones,1,99.99,04/01/19 16:40,"124 Meadow St, Atlanta, GA 30301" +188192,27in 4K Gaming Monitor,1,389.99,04/03/19 18:03,"956 Main St, Los Angeles, CA 90001" +188193,27in FHD Monitor,1,149.99,04/06/19 11:55,"68 Willow St, Los Angeles, CA 90001" +188194,Lightning Charging Cable,2,14.95,04/17/19 13:22,"230 Maple St, San Francisco, CA 94016" +188195,Google Phone,1,600,04/04/19 11:29,"279 Church St, Dallas, TX 75001" +188196,Lightning Charging Cable,1,14.95,04/29/19 23:31,"758 14th St, San Francisco, CA 94016" +188197,Wired Headphones,1,11.99,04/16/19 12:53,"768 Lake St, Los Angeles, CA 90001" +188198,Bose SoundSport Headphones,1,99.99,04/10/19 16:38,"83 Ridge St, Los Angeles, CA 90001" +188199,Flatscreen TV,1,300,04/20/19 08:14,"986 Jackson St, Seattle, WA 98101" +188200,Bose SoundSport Headphones,1,99.99,04/21/19 16:47,"75 9th St, San Francisco, CA 94016" +188201,AAA Batteries (4-pack),1,2.99,04/09/19 11:21,"770 Meadow St, Boston, MA 02215" +188202,AAA Batteries (4-pack),1,2.99,04/09/19 15:07,"892 West St, Seattle, WA 98101" +188203,20in Monitor,1,109.99,04/28/19 14:14,"295 Madison St, San Francisco, CA 94016" +188204,Apple Airpods Headphones,1,150,04/23/19 09:12,"163 8th St, New York City, NY 10001" +188205,Bose SoundSport Headphones,1,99.99,04/08/19 16:05,"986 Church St, San Francisco, CA 94016" +188206,Lightning Charging Cable,1,14.95,04/26/19 15:51,"463 Adams St, Seattle, WA 98101" +188207,Wired Headphones,1,11.99,04/24/19 13:59,"354 Hill St, Austin, TX 73301" +188208,USB-C Charging Cable,1,11.95,04/07/19 14:50,"126 Center St, Seattle, WA 98101" +188209,AA Batteries (4-pack),1,3.84,04/17/19 14:41,"153 Walnut St, San Francisco, CA 94016" +188210,AA Batteries (4-pack),1,3.84,04/17/19 00:24,"222 5th St, New York City, NY 10001" +188211,USB-C Charging Cable,1,11.95,04/17/19 09:14,"962 Lincoln St, San Francisco, CA 94016" +188212,27in FHD Monitor,1,149.99,04/02/19 14:22,"668 Lakeview St, Atlanta, GA 30301" +188213,Bose SoundSport Headphones,1,99.99,04/16/19 10:41,"741 12th St, Atlanta, GA 30301" +188214,USB-C Charging Cable,1,11.95,04/29/19 12:18,"765 1st St, Portland, ME 04101" +188215,AA Batteries (4-pack),1,3.84,04/23/19 19:20,"511 Adams St, New York City, NY 10001" +188216,AA Batteries (4-pack),1,3.84,04/06/19 17:14,"938 Wilson St, New York City, NY 10001" +188217,AAA Batteries (4-pack),1,2.99,04/28/19 12:19,"860 Madison St, Austin, TX 73301" +188218,AAA Batteries (4-pack),3,2.99,04/29/19 16:48,"198 Willow St, New York City, NY 10001" +188219,20in Monitor,1,109.99,04/13/19 19:40,"113 5th St, Boston, MA 02215" +188220,AAA Batteries (4-pack),2,2.99,04/04/19 19:20,"476 Lincoln St, San Francisco, CA 94016" +188221,Wired Headphones,1,11.99,04/05/19 19:39,"991 8th St, San Francisco, CA 94016" +188222,Lightning Charging Cable,1,14.95,04/09/19 18:17,"879 Highland St, Atlanta, GA 30301" +188223,USB-C Charging Cable,1,11.95,04/08/19 18:29,"342 Madison St, San Francisco, CA 94016" +188224,Apple Airpods Headphones,1,150,04/11/19 13:44,"658 11th St, Portland, OR 97035" +188225,Lightning Charging Cable,1,14.95,04/13/19 18:50,"719 Maple St, Portland, OR 97035" +188226,Lightning Charging Cable,1,14.95,04/28/19 16:58,"98 Sunset St, Los Angeles, CA 90001" +188227,Wired Headphones,1,11.99,04/01/19 22:12,"142 Pine St, San Francisco, CA 94016" +188228,AAA Batteries (4-pack),2,2.99,04/24/19 18:28,"284 Main St, Los Angeles, CA 90001" +188229,AA Batteries (4-pack),1,3.84,04/28/19 11:35,"679 South St, Austin, TX 73301" +188230,Wired Headphones,1,11.99,04/27/19 12:00,"372 River St, San Francisco, CA 94016" +188231,27in FHD Monitor,1,149.99,04/15/19 14:17,"261 Washington St, Boston, MA 02215" +188232,27in 4K Gaming Monitor,1,389.99,04/19/19 04:01,"771 Center St, Los Angeles, CA 90001" +188233,AA Batteries (4-pack),1,3.84,04/18/19 19:51,"273 Cedar St, Dallas, TX 75001" +188234,Bose SoundSport Headphones,1,99.99,04/26/19 12:17,"37 Church St, Portland, OR 97035" +188235,20in Monitor,1,109.99,04/26/19 22:36,"121 Adams St, New York City, NY 10001" +188236,34in Ultrawide Monitor,1,379.99,04/28/19 11:54,"132 Jackson St, San Francisco, CA 94016" +188237,Wired Headphones,1,11.99,04/03/19 19:54,"730 West St, San Francisco, CA 94016" +188238,AA Batteries (4-pack),1,3.84,04/24/19 07:41,"148 14th St, Seattle, WA 98101" +188239,27in FHD Monitor,1,149.99,04/18/19 15:02,"946 6th St, Seattle, WA 98101" +188240,Macbook Pro Laptop,1,1700,04/25/19 20:51,"113 4th St, San Francisco, CA 94016" +188241,Macbook Pro Laptop,1,1700,04/13/19 12:57,"589 4th St, New York City, NY 10001" +188242,AAA Batteries (4-pack),1,2.99,04/19/19 15:25,"409 Adams St, Los Angeles, CA 90001" +188243,Bose SoundSport Headphones,1,99.99,04/15/19 17:54,"357 9th St, San Francisco, CA 94016" +188244,20in Monitor,1,109.99,04/05/19 09:32,"683 11th St, New York City, NY 10001" +188245,Apple Airpods Headphones,1,150,04/27/19 20:12,"374 South St, Los Angeles, CA 90001" +188246,USB-C Charging Cable,1,11.95,04/20/19 11:54,"866 Adams St, Portland, OR 97035" +188247,USB-C Charging Cable,1,11.95,04/17/19 18:35,"237 12th St, Seattle, WA 98101" +188248,ThinkPad Laptop,1,999.99,04/12/19 21:48,"983 Lake St, Portland, OR 97035" +188249,USB-C Charging Cable,1,11.95,04/30/19 02:06,"194 Lake St, San Francisco, CA 94016" +188250,ThinkPad Laptop,1,999.99,04/09/19 10:38,"447 Highland St, Austin, TX 73301" +188251,AA Batteries (4-pack),1,3.84,04/13/19 21:30,"965 9th St, Austin, TX 73301" +188252,USB-C Charging Cable,1,11.95,04/15/19 14:47,"554 Highland St, Dallas, TX 75001" +188253,20in Monitor,1,109.99,04/10/19 00:19,"829 11th St, Boston, MA 02215" +188254,Wired Headphones,1,11.99,04/22/19 20:12,"827 5th St, Boston, MA 02215" +188255,Google Phone,1,600,04/05/19 15:33,"26 Jackson St, Boston, MA 02215" +188256,Google Phone,1,600,04/17/19 13:49,"360 Cherry St, Dallas, TX 75001" +188256,USB-C Charging Cable,1,11.95,04/17/19 13:49,"360 Cherry St, Dallas, TX 75001" +188257,Wired Headphones,1,11.99,04/14/19 01:00,"852 North St, San Francisco, CA 94016" +188257,AA Batteries (4-pack),1,3.84,04/14/19 01:00,"852 North St, San Francisco, CA 94016" +188258,20in Monitor,1,109.99,04/28/19 16:03,"483 Chestnut St, San Francisco, CA 94016" +188259,Bose SoundSport Headphones,1,99.99,04/08/19 21:13,"329 River St, Portland, OR 97035" +188260,Wired Headphones,1,11.99,04/11/19 12:56,"561 West St, Boston, MA 02215" +188261,27in 4K Gaming Monitor,1,389.99,04/23/19 09:26,"316 12th St, San Francisco, CA 94016" +188262,34in Ultrawide Monitor,1,379.99,04/29/19 17:07,"338 Maple St, Seattle, WA 98101" +188263,Apple Airpods Headphones,1,150,04/25/19 09:33,"874 Pine St, Portland, OR 97035" +188264,Flatscreen TV,1,300,04/06/19 19:29,"198 River St, Los Angeles, CA 90001" +188265,34in Ultrawide Monitor,1,379.99,04/05/19 10:23,"272 North St, San Francisco, CA 94016" +188266,Apple Airpods Headphones,1,150,04/14/19 12:29,"908 Ridge St, Los Angeles, CA 90001" +188267,AAA Batteries (4-pack),1,2.99,04/06/19 13:02,"322 Lincoln St, Austin, TX 73301" +188268,USB-C Charging Cable,2,11.95,04/28/19 08:12,"208 Spruce St, San Francisco, CA 94016" +188269,AAA Batteries (4-pack),1,2.99,04/30/19 14:16,"998 North St, New York City, NY 10001" +188270,27in FHD Monitor,1,149.99,04/12/19 13:32,"489 Lakeview St, Portland, ME 04101" +188271,Bose SoundSport Headphones,1,99.99,04/19/19 10:46,"77 Forest St, Atlanta, GA 30301" +188272,Lightning Charging Cable,1,14.95,04/20/19 09:49,"880 River St, San Francisco, CA 94016" +188273,Lightning Charging Cable,1,14.95,04/20/19 13:07,"591 10th St, San Francisco, CA 94016" +188274,Lightning Charging Cable,1,14.95,04/11/19 21:29,"763 6th St, Los Angeles, CA 90001" +188275,Vareebadd Phone,1,400,04/24/19 16:39,"571 Lincoln St, Austin, TX 73301" +188276,AAA Batteries (4-pack),1,2.99,04/19/19 17:02,"133 Forest St, New York City, NY 10001" +188277,Wired Headphones,1,11.99,04/26/19 19:03,"515 Spruce St, San Francisco, CA 94016" +188278,Wired Headphones,1,11.99,04/02/19 11:49,"563 10th St, San Francisco, CA 94016" +188279,Apple Airpods Headphones,1,150,04/27/19 14:30,"559 9th St, New York City, NY 10001" +188280,iPhone,1,700,04/14/19 20:47,"542 6th St, Atlanta, GA 30301" +188281,AA Batteries (4-pack),3,3.84,04/03/19 14:19,"296 West St, San Francisco, CA 94016" +188282,USB-C Charging Cable,1,11.95,04/07/19 16:24,"360 North St, New York City, NY 10001" +188283,Lightning Charging Cable,2,14.95,04/21/19 12:59,"976 Park St, Austin, TX 73301" +188284,Google Phone,1,600,04/14/19 21:19,"825 Pine St, San Francisco, CA 94016" +188285,Lightning Charging Cable,1,14.95,04/28/19 21:56,"494 12th St, New York City, NY 10001" +188286,Bose SoundSport Headphones,1,99.99,04/24/19 20:18,"25 13th St, Seattle, WA 98101" +188287,AA Batteries (4-pack),1,3.84,04/26/19 21:21,"846 Walnut St, Dallas, TX 75001" +188288,USB-C Charging Cable,2,11.95,04/19/19 11:31,"384 Forest St, Dallas, TX 75001" +188289,AAA Batteries (4-pack),1,2.99,04/21/19 23:26,"190 2nd St, Atlanta, GA 30301" +188290,Bose SoundSport Headphones,1,99.99,04/25/19 13:22,"14 Lake St, Los Angeles, CA 90001" +188291,Lightning Charging Cable,2,14.95,04/12/19 13:23,"304 11th St, San Francisco, CA 94016" +188292,iPhone,1,700,04/09/19 09:52,"500 Jackson St, San Francisco, CA 94016" +188293,Lightning Charging Cable,1,14.95,04/20/19 22:29,"557 Maple St, New York City, NY 10001" +188294,Lightning Charging Cable,1,14.95,04/24/19 11:10,"847 11th St, Los Angeles, CA 90001" +188295,USB-C Charging Cable,1,11.95,04/26/19 18:49,"198 Cedar St, San Francisco, CA 94016" +188296,AAA Batteries (4-pack),1,2.99,04/06/19 14:46,"515 Elm St, Austin, TX 73301" +188297,AAA Batteries (4-pack),1,2.99,04/12/19 12:13,"87 Highland St, Seattle, WA 98101" +188298,Bose SoundSport Headphones,1,99.99,04/14/19 18:05,"564 Washington St, Seattle, WA 98101" +188299,27in FHD Monitor,1,149.99,04/14/19 18:22,"727 Cedar St, Boston, MA 02215" +188300,Apple Airpods Headphones,1,150,04/28/19 13:14,"517 1st St, Los Angeles, CA 90001" +188301,AAA Batteries (4-pack),1,2.99,04/02/19 10:39,"546 Willow St, San Francisco, CA 94016" +188302,Wired Headphones,1,11.99,04/30/19 13:05,"568 Forest St, Los Angeles, CA 90001" +188303,AA Batteries (4-pack),2,3.84,04/27/19 15:27,"280 Hill St, Seattle, WA 98101" +188304,AA Batteries (4-pack),1,3.84,04/24/19 21:17,"480 Maple St, Seattle, WA 98101" +188305,Apple Airpods Headphones,1,150,04/25/19 14:03,"568 Sunset St, Los Angeles, CA 90001" +188306,LG Dryer,1,600.0,04/09/19 06:50,"408 Highland St, Seattle, WA 98101" +188307,Apple Airpods Headphones,1,150,04/11/19 17:25,"135 8th St, Dallas, TX 75001" +188308,27in FHD Monitor,1,149.99,04/14/19 09:22,"479 11th St, Seattle, WA 98101" +188309,Wired Headphones,1,11.99,04/24/19 19:07,"656 Spruce St, Los Angeles, CA 90001" +188310,AA Batteries (4-pack),1,3.84,04/09/19 08:06,"554 West St, Portland, OR 97035" +188311,AA Batteries (4-pack),1,3.84,04/09/19 17:10,"920 Willow St, Portland, OR 97035" +188312,34in Ultrawide Monitor,1,379.99,04/15/19 10:19,"483 Lake St, Boston, MA 02215" +188313,USB-C Charging Cable,1,11.95,04/30/19 00:27,"742 Lakeview St, San Francisco, CA 94016" +188314,Wired Headphones,1,11.99,04/27/19 22:27,"784 4th St, Seattle, WA 98101" +188315,AAA Batteries (4-pack),1,2.99,04/19/19 13:17,"595 Washington St, New York City, NY 10001" +188316,USB-C Charging Cable,3,11.95,04/19/19 08:45,"892 Main St, San Francisco, CA 94016" +188317,AA Batteries (4-pack),3,3.84,04/23/19 13:07,"727 8th St, Seattle, WA 98101" +188318,Lightning Charging Cable,1,14.95,04/05/19 12:41,"46 Wilson St, Atlanta, GA 30301" +188319,Wired Headphones,1,11.99,04/25/19 19:10,"584 Spruce St, Los Angeles, CA 90001" +188320,USB-C Charging Cable,1,11.95,04/14/19 09:40,"752 River St, Los Angeles, CA 90001" +188321,AAA Batteries (4-pack),3,2.99,04/19/19 14:46,"958 Ridge St, Seattle, WA 98101" +188322,Lightning Charging Cable,1,14.95,04/01/19 21:09,"920 2nd St, Dallas, TX 75001" +188323,Lightning Charging Cable,1,14.95,04/16/19 19:22,"700 4th St, Dallas, TX 75001" +188324,20in Monitor,1,109.99,04/23/19 06:22,"658 Washington St, Los Angeles, CA 90001" +188325,USB-C Charging Cable,1,11.95,04/28/19 17:50,"558 Church St, Austin, TX 73301" +188326,AAA Batteries (4-pack),1,2.99,04/14/19 16:46,"106 Cherry St, New York City, NY 10001" +188327,27in 4K Gaming Monitor,1,389.99,04/07/19 18:13,"236 1st St, Boston, MA 02215" +188328,Bose SoundSport Headphones,1,99.99,04/21/19 21:24,"240 Church St, Austin, TX 73301" +188329,Lightning Charging Cable,1,14.95,04/29/19 16:16,"948 Chestnut St, Portland, OR 97035" +188330,Google Phone,1,600,04/19/19 09:29,"912 Highland St, Dallas, TX 75001" +188331,27in FHD Monitor,1,149.99,04/12/19 06:18,"740 5th St, Los Angeles, CA 90001" +188332,Apple Airpods Headphones,1,150,04/06/19 14:32,"17 Center St, San Francisco, CA 94016" +188333,27in FHD Monitor,1,149.99,04/09/19 12:12,"770 Johnson St, Atlanta, GA 30301" +188334,Lightning Charging Cable,1,14.95,04/10/19 17:44,"981 10th St, Los Angeles, CA 90001" +188335,Lightning Charging Cable,1,14.95,04/10/19 13:21,"567 Adams St, Dallas, TX 75001" +188336,Macbook Pro Laptop,1,1700,04/25/19 21:15,"322 Chestnut St, Boston, MA 02215" +188337,Flatscreen TV,1,300,04/29/19 23:31,"848 North St, San Francisco, CA 94016" +188338,Apple Airpods Headphones,1,150,04/29/19 18:32,"507 Meadow St, Austin, TX 73301" +188339,USB-C Charging Cable,1,11.95,04/06/19 17:28,"368 Elm St, San Francisco, CA 94016" +188340,AAA Batteries (4-pack),1,2.99,04/22/19 12:33,"961 Church St, New York City, NY 10001" +188341,ThinkPad Laptop,1,999.99,04/11/19 08:35,"420 Dogwood St, Los Angeles, CA 90001" +188342,Apple Airpods Headphones,1,150,04/02/19 20:34,"119 Center St, Boston, MA 02215" +188343,AAA Batteries (4-pack),1,2.99,04/04/19 22:46,"988 Elm St, Seattle, WA 98101" +188344,Bose SoundSport Headphones,1,99.99,04/23/19 17:22,"199 7th St, San Francisco, CA 94016" +188345,Wired Headphones,1,11.99,04/24/19 15:20,"58 14th St, San Francisco, CA 94016" +188346,USB-C Charging Cable,1,11.95,04/26/19 07:47,"235 Jackson St, San Francisco, CA 94016" +188347,Vareebadd Phone,1,400,04/29/19 21:21,"915 13th St, New York City, NY 10001" +188348,Bose SoundSport Headphones,1,99.99,04/23/19 12:56,"831 Jackson St, Los Angeles, CA 90001" +188349,Wired Headphones,1,11.99,04/29/19 22:17,"756 Washington St, New York City, NY 10001" +188350,Flatscreen TV,1,300,04/15/19 21:29,"648 Main St, Boston, MA 02215" +188351,Lightning Charging Cable,1,14.95,04/17/19 15:24,"514 Forest St, Austin, TX 73301" +188352,Lightning Charging Cable,1,14.95,04/26/19 13:44,"383 Willow St, New York City, NY 10001" +188353,Google Phone,1,600,04/08/19 06:44,"232 Cedar St, San Francisco, CA 94016" +188354,Lightning Charging Cable,2,14.95,04/14/19 13:18,"42 1st St, New York City, NY 10001" +188355,AA Batteries (4-pack),3,3.84,04/08/19 04:56,"752 Jefferson St, Seattle, WA 98101" +188356,AAA Batteries (4-pack),1,2.99,04/20/19 11:35,"303 North St, San Francisco, CA 94016" +188357,AA Batteries (4-pack),1,3.84,04/21/19 14:16,"840 Maple St, New York City, NY 10001" +188358,AAA Batteries (4-pack),1,2.99,04/06/19 15:25,"538 10th St, Los Angeles, CA 90001" +188359,USB-C Charging Cable,1,11.95,04/06/19 16:18,"795 Cedar St, Los Angeles, CA 90001" +188360,Lightning Charging Cable,1,14.95,04/20/19 23:34,"406 Willow St, San Francisco, CA 94016" +188361,AA Batteries (4-pack),1,3.84,04/17/19 21:58,"295 10th St, New York City, NY 10001" +188362,AAA Batteries (4-pack),3,2.99,04/08/19 14:24,"29 Lincoln St, Los Angeles, CA 90001" +188363,Flatscreen TV,1,300,04/30/19 20:18,"373 Maple St, Boston, MA 02215" +188364,27in FHD Monitor,1,149.99,04/13/19 10:12,"651 Pine St, Seattle, WA 98101" +188365,Lightning Charging Cable,1,14.95,04/20/19 08:44,"31 13th St, San Francisco, CA 94016" +188366,AA Batteries (4-pack),1,3.84,04/01/19 08:55,"870 Cedar St, Austin, TX 73301" +188367,34in Ultrawide Monitor,1,379.99,04/05/19 23:00,"135 Meadow St, Seattle, WA 98101" +188368,AA Batteries (4-pack),1,3.84,04/07/19 14:59,"157 Johnson St, San Francisco, CA 94016" +188369,Flatscreen TV,1,300,04/24/19 10:49,"31 Lakeview St, Atlanta, GA 30301" +188370,USB-C Charging Cable,1,11.95,04/15/19 14:09,"628 2nd St, San Francisco, CA 94016" +188371,Google Phone,1,600,04/17/19 17:55,"732 Lake St, Austin, TX 73301" +188371,USB-C Charging Cable,1,11.95,04/17/19 17:55,"732 Lake St, Austin, TX 73301" +188372,AA Batteries (4-pack),1,3.84,04/10/19 20:06,"499 8th St, Dallas, TX 75001" +188373,Bose SoundSport Headphones,1,99.99,04/12/19 20:13,"149 Pine St, Los Angeles, CA 90001" +188374,AA Batteries (4-pack),2,3.84,04/06/19 16:52,"251 Ridge St, New York City, NY 10001" +188375,USB-C Charging Cable,1,11.95,04/22/19 08:55,"750 Cherry St, New York City, NY 10001" +188376,Google Phone,1,600,04/14/19 19:42,"346 Hickory St, Los Angeles, CA 90001" +188377,Bose SoundSport Headphones,1,99.99,04/29/19 13:59,"205 Lakeview St, San Francisco, CA 94016" +188378,Apple Airpods Headphones,1,150,04/18/19 17:34,"436 Sunset St, Dallas, TX 75001" +188379,Lightning Charging Cable,1,14.95,04/12/19 20:13,"900 Madison St, Austin, TX 73301" +188380,27in 4K Gaming Monitor,1,389.99,04/28/19 23:03,"6 North St, San Francisco, CA 94016" +188381,Bose SoundSport Headphones,1,99.99,04/01/19 17:38,"848 Main St, Boston, MA 02215" +188382,iPhone,1,700,04/26/19 19:57,"256 Chestnut St, New York City, NY 10001" +188382,Apple Airpods Headphones,1,150,04/26/19 19:57,"256 Chestnut St, New York City, NY 10001" +188383,Bose SoundSport Headphones,1,99.99,04/22/19 22:25,"770 5th St, New York City, NY 10001" +188384,iPhone,1,700,04/17/19 07:48,"192 Wilson St, Atlanta, GA 30301" +188385,AAA Batteries (4-pack),1,2.99,04/28/19 13:33,"264 10th St, Los Angeles, CA 90001" +188386,Lightning Charging Cable,1,14.95,04/13/19 14:16,"831 Wilson St, New York City, NY 10001" +188387,AA Batteries (4-pack),1,3.84,04/11/19 23:50,"733 Lake St, New York City, NY 10001" +188388,Flatscreen TV,1,300,04/25/19 17:32,"75 Elm St, New York City, NY 10001" +188389,34in Ultrawide Monitor,1,379.99,04/25/19 06:54,"270 Spruce St, Boston, MA 02215" +188390,USB-C Charging Cable,1,11.95,04/09/19 15:15,"699 Spruce St, Boston, MA 02215" +188391,27in 4K Gaming Monitor,1,389.99,04/21/19 12:09,"983 Walnut St, San Francisco, CA 94016" +188392,27in FHD Monitor,1,149.99,04/22/19 10:05,"550 Willow St, Boston, MA 02215" +188393,USB-C Charging Cable,1,11.95,04/25/19 09:02,"965 5th St, Atlanta, GA 30301" +188394,AAA Batteries (4-pack),1,2.99,04/15/19 22:36,"867 Park St, Los Angeles, CA 90001" +188395,Apple Airpods Headphones,1,150,04/01/19 12:16,"568 Park St, Los Angeles, CA 90001" +188396,Bose SoundSport Headphones,1,99.99,04/14/19 15:42,"689 Cherry St, New York City, NY 10001" +188397,27in FHD Monitor,1,149.99,04/28/19 23:36,"295 Main St, Los Angeles, CA 90001" +188398,Google Phone,1,600,04/17/19 19:16,"97 Lincoln St, Seattle, WA 98101" +188399,AA Batteries (4-pack),1,3.84,04/28/19 23:36,"472 Hickory St, New York City, NY 10001" +188400,AAA Batteries (4-pack),1,2.99,04/14/19 11:15,"238 6th St, Atlanta, GA 30301" +188401,Lightning Charging Cable,1,14.95,04/08/19 19:19,"312 Spruce St, San Francisco, CA 94016" +188402,Apple Airpods Headphones,1,150,04/14/19 10:31,"864 Pine St, New York City, NY 10001" +188403,Apple Airpods Headphones,1,150,04/05/19 14:45,"777 Johnson St, New York City, NY 10001" +188404,USB-C Charging Cable,2,11.95,04/29/19 09:48,"905 8th St, Seattle, WA 98101" +188405,Bose SoundSport Headphones,1,99.99,04/06/19 20:47,"905 Main St, Portland, OR 97035" +188406,Wired Headphones,1,11.99,04/27/19 17:12,"789 Cedar St, San Francisco, CA 94016" +188407,27in 4K Gaming Monitor,1,389.99,04/26/19 14:45,"343 14th St, San Francisco, CA 94016" +188408,USB-C Charging Cable,1,11.95,04/05/19 14:14,"126 Adams St, Atlanta, GA 30301" +188409,USB-C Charging Cable,1,11.95,04/13/19 18:24,"779 Cedar St, Seattle, WA 98101" +188410,34in Ultrawide Monitor,1,379.99,04/16/19 21:39,"426 Jefferson St, New York City, NY 10001" +188410,USB-C Charging Cable,2,11.95,04/16/19 21:39,"426 Jefferson St, New York City, NY 10001" +188411,USB-C Charging Cable,1,11.95,04/23/19 14:08,"303 2nd St, New York City, NY 10001" +188412,27in FHD Monitor,1,149.99,04/13/19 09:47,"887 Dogwood St, San Francisco, CA 94016" +188413,Google Phone,1,600,04/17/19 13:02,"75 Lincoln St, Atlanta, GA 30301" +188414,AA Batteries (4-pack),1,3.84,04/28/19 19:36,"37 Lincoln St, New York City, NY 10001" +188415,Lightning Charging Cable,1,14.95,04/04/19 00:06,"489 Willow St, Seattle, WA 98101" +188416,AA Batteries (4-pack),1,3.84,04/01/19 14:11,"513 Cedar St, New York City, NY 10001" +188417,Lightning Charging Cable,1,14.95,04/10/19 19:28,"130 Chestnut St, San Francisco, CA 94016" +188418,Macbook Pro Laptop,1,1700,04/18/19 13:37,"685 Dogwood St, San Francisco, CA 94016" +188419,Wired Headphones,1,11.99,04/17/19 12:36,"621 7th St, Seattle, WA 98101" +188420,USB-C Charging Cable,1,11.95,04/05/19 10:03,"931 7th St, San Francisco, CA 94016" +188421,Flatscreen TV,1,300,04/20/19 08:09,"298 Hickory St, Los Angeles, CA 90001" +188422,34in Ultrawide Monitor,1,379.99,04/22/19 13:29,"462 4th St, Austin, TX 73301" +188423,USB-C Charging Cable,1,11.95,04/10/19 17:47,"228 Lincoln St, Los Angeles, CA 90001" +188424,Bose SoundSport Headphones,1,99.99,04/21/19 12:21,"267 14th St, New York City, NY 10001" +188425,AA Batteries (4-pack),1,3.84,04/19/19 18:00,"164 13th St, New York City, NY 10001" +188426,Lightning Charging Cable,1,14.95,04/13/19 17:10,"976 9th St, San Francisco, CA 94016" +188427,AAA Batteries (4-pack),3,2.99,04/30/19 14:08,"360 9th St, San Francisco, CA 94016" +188428,Lightning Charging Cable,1,14.95,04/26/19 20:14,"121 West St, Austin, TX 73301" +188428,AAA Batteries (4-pack),2,2.99,04/26/19 20:14,"121 West St, Austin, TX 73301" +188429,20in Monitor,1,109.99,04/27/19 00:50,"315 1st St, Seattle, WA 98101" +188430,AA Batteries (4-pack),1,3.84,04/03/19 15:53,"491 13th St, Los Angeles, CA 90001" +188431,Apple Airpods Headphones,1,150,04/01/19 20:25,"552 7th St, San Francisco, CA 94016" +188432,Macbook Pro Laptop,1,1700,04/10/19 09:40,"670 Ridge St, Portland, OR 97035" +188433,Bose SoundSport Headphones,1,99.99,04/30/19 22:15,"852 Hill St, New York City, NY 10001" +188434,USB-C Charging Cable,2,11.95,04/07/19 10:58,"364 Lake St, San Francisco, CA 94016" +188435,Apple Airpods Headphones,1,150,04/29/19 16:27,"101 Church St, Portland, OR 97035" +188436,AAA Batteries (4-pack),3,2.99,04/10/19 16:03,"684 Lake St, Boston, MA 02215" +188437,Lightning Charging Cable,1,14.95,04/14/19 11:48,"780 9th St, San Francisco, CA 94016" +188438,Lightning Charging Cable,1,14.95,04/17/19 22:06,"239 Lakeview St, New York City, NY 10001" +188439,AA Batteries (4-pack),2,3.84,04/05/19 00:39,"789 Adams St, New York City, NY 10001" +188440,AA Batteries (4-pack),1,3.84,04/20/19 06:33,"103 Cedar St, Los Angeles, CA 90001" +188441,ThinkPad Laptop,1,999.99,04/28/19 15:15,"446 13th St, Austin, TX 73301" +188442,USB-C Charging Cable,1,11.95,04/11/19 17:11,"969 Cherry St, San Francisco, CA 94016" +188443,AAA Batteries (4-pack),2,2.99,04/08/19 11:33,"458 Wilson St, San Francisco, CA 94016" +188444,AAA Batteries (4-pack),2,2.99,04/28/19 21:22,"539 Chestnut St, Boston, MA 02215" +188445,ThinkPad Laptop,1,999.99,04/11/19 15:13,"833 South St, Seattle, WA 98101" +188446,Lightning Charging Cable,1,14.95,04/11/19 18:38,"676 West St, San Francisco, CA 94016" +188447,Wired Headphones,1,11.99,04/04/19 09:36,"567 Park St, Austin, TX 73301" +188448,Wired Headphones,2,11.99,04/13/19 18:42,"465 Hill St, Dallas, TX 75001" +188449,AAA Batteries (4-pack),1,2.99,04/08/19 20:02,"125 Jefferson St, San Francisco, CA 94016" +188450,34in Ultrawide Monitor,1,379.99,04/07/19 12:17,"267 North St, Dallas, TX 75001" +188451,Bose SoundSport Headphones,1,99.99,04/18/19 12:22,"773 Lincoln St, Los Angeles, CA 90001" +188452,Wired Headphones,1,11.99,04/20/19 22:53,"449 Hickory St, Portland, OR 97035" +188453,27in FHD Monitor,1,149.99,04/28/19 13:35,"276 Chestnut St, Dallas, TX 75001" +188454,AA Batteries (4-pack),1,3.84,04/11/19 09:40,"892 5th St, Dallas, TX 75001" +188455,Lightning Charging Cable,1,14.95,04/06/19 12:10,"769 River St, Atlanta, GA 30301" +188456,AA Batteries (4-pack),1,3.84,04/05/19 06:40,"629 Hickory St, Los Angeles, CA 90001" +188456,ThinkPad Laptop,1,999.99,04/05/19 06:40,"629 Hickory St, Los Angeles, CA 90001" +188457,LG Washing Machine,1,600.0,04/11/19 12:44,"764 Madison St, Austin, TX 73301" +188458,Lightning Charging Cable,1,14.95,04/10/19 17:14,"412 6th St, San Francisco, CA 94016" +188459,Lightning Charging Cable,1,14.95,04/21/19 09:54,"87 West St, Seattle, WA 98101" +188460,Apple Airpods Headphones,1,150,04/18/19 11:52,"428 14th St, San Francisco, CA 94016" +188461,27in 4K Gaming Monitor,1,389.99,04/04/19 22:53,"678 Willow St, New York City, NY 10001" +188462,AA Batteries (4-pack),2,3.84,04/19/19 13:02,"216 Church St, Boston, MA 02215" +188463,Apple Airpods Headphones,1,150,04/03/19 18:10,"171 Hickory St, New York City, NY 10001" +188464,Flatscreen TV,1,300,04/01/19 15:58,"680 River St, Atlanta, GA 30301" +188465,Flatscreen TV,1,300,04/05/19 10:27,"79 6th St, New York City, NY 10001" +188466,AAA Batteries (4-pack),1,2.99,04/22/19 20:40,"773 Spruce St, Boston, MA 02215" +188467,ThinkPad Laptop,1,999.99,04/17/19 20:44,"666 Hill St, Dallas, TX 75001" +188468,AA Batteries (4-pack),1,3.84,04/24/19 20:06,"749 Spruce St, Los Angeles, CA 90001" +188469,Flatscreen TV,1,300,04/14/19 23:13,"465 South St, San Francisco, CA 94016" +188470,Google Phone,1,600,04/15/19 20:06,"688 Forest St, Atlanta, GA 30301" +188471,AAA Batteries (4-pack),1,2.99,04/16/19 18:14,"509 14th St, San Francisco, CA 94016" +188472,USB-C Charging Cable,1,11.95,04/08/19 20:44,"215 Johnson St, New York City, NY 10001" +188473,Bose SoundSport Headphones,1,99.99,04/22/19 18:15,"916 Cedar St, New York City, NY 10001" +188474,Apple Airpods Headphones,1,150,04/18/19 22:29,"573 Pine St, New York City, NY 10001" +188475,Flatscreen TV,1,300,04/21/19 13:21,"420 Main St, Dallas, TX 75001" +188476,USB-C Charging Cable,2,11.95,04/05/19 18:11,"114 Church St, San Francisco, CA 94016" +188477,AA Batteries (4-pack),1,3.84,04/21/19 07:15,"449 Hickory St, Seattle, WA 98101" +188478,Flatscreen TV,1,300,04/09/19 12:57,"16 11th St, San Francisco, CA 94016" +188479,AA Batteries (4-pack),1,3.84,04/25/19 13:39,"680 South St, Dallas, TX 75001" +188480,USB-C Charging Cable,2,11.95,04/13/19 21:17,"214 Spruce St, Boston, MA 02215" +188481,USB-C Charging Cable,1,11.95,04/14/19 19:03,"667 Adams St, Dallas, TX 75001" +188482,AA Batteries (4-pack),1,3.84,04/16/19 14:29,"486 5th St, Atlanta, GA 30301" +188482,Macbook Pro Laptop,1,1700,04/16/19 14:29,"486 5th St, Atlanta, GA 30301" +188483,ThinkPad Laptop,1,999.99,04/20/19 19:26,"719 West St, Los Angeles, CA 90001" +188484,AA Batteries (4-pack),1,3.84,04/27/19 22:08,"436 1st St, Portland, OR 97035" +188485,AAA Batteries (4-pack),1,2.99,04/03/19 21:53,"310 12th St, Atlanta, GA 30301" +188486,ThinkPad Laptop,1,999.99,04/17/19 21:49,"366 Lakeview St, San Francisco, CA 94016" +188487,AAA Batteries (4-pack),1,2.99,04/04/19 14:45,"229 Pine St, Boston, MA 02215" +188488,iPhone,1,700,04/21/19 14:15,"474 Highland St, Boston, MA 02215" +188488,Apple Airpods Headphones,1,150,04/21/19 14:15,"474 Highland St, Boston, MA 02215" +188489,Apple Airpods Headphones,1,150,04/12/19 20:10,"49 11th St, New York City, NY 10001" +188490,Bose SoundSport Headphones,1,99.99,04/25/19 12:38,"986 Pine St, San Francisco, CA 94016" +188491,Google Phone,1,600,04/08/19 22:43,"630 Spruce St, Dallas, TX 75001" +188492,AA Batteries (4-pack),1,3.84,04/03/19 17:14,"736 Cedar St, San Francisco, CA 94016" +,,,,, +188493,AA Batteries (4-pack),1,3.84,04/26/19 20:08,"692 Lincoln St, Seattle, WA 98101" +188493,27in 4K Gaming Monitor,1,389.99,04/26/19 20:08,"692 Lincoln St, Seattle, WA 98101" +188494,27in FHD Monitor,1,149.99,04/09/19 11:32,"792 Highland St, Boston, MA 02215" +188495,USB-C Charging Cable,1,11.95,04/25/19 18:20,"433 Lakeview St, Los Angeles, CA 90001" +188496,27in FHD Monitor,1,149.99,04/13/19 19:22,"206 Highland St, San Francisco, CA 94016" +188497,Lightning Charging Cable,1,14.95,04/10/19 12:13,"215 Lakeview St, San Francisco, CA 94016" +188498,AAA Batteries (4-pack),2,2.99,04/13/19 00:22,"966 Forest St, San Francisco, CA 94016" +188499,AA Batteries (4-pack),1,3.84,04/27/19 13:08,"481 Elm St, New York City, NY 10001" +188500,Wired Headphones,1,11.99,04/17/19 12:14,"735 13th St, Atlanta, GA 30301" +188501,AAA Batteries (4-pack),1,2.99,04/07/19 17:32,"268 7th St, Boston, MA 02215" +188502,Apple Airpods Headphones,1,150,04/05/19 18:15,"304 8th St, Austin, TX 73301" +188503,Lightning Charging Cable,3,14.95,04/17/19 11:33,"266 Wilson St, Atlanta, GA 30301" +188504,USB-C Charging Cable,1,11.95,04/08/19 12:28,"632 Walnut St, Boston, MA 02215" +188505,Flatscreen TV,1,300,04/25/19 12:48,"242 Cherry St, Los Angeles, CA 90001" +188506,USB-C Charging Cable,1,11.95,04/24/19 20:01,"472 8th St, San Francisco, CA 94016" +188507,Wired Headphones,1,11.99,04/01/19 23:33,"167 Willow St, Atlanta, GA 30301" +188508,iPhone,1,700,04/26/19 18:01,"96 Jackson St, San Francisco, CA 94016" +188509,Flatscreen TV,1,300,04/29/19 12:45,"182 Madison St, Seattle, WA 98101" +188510,Bose SoundSport Headphones,1,99.99,04/08/19 19:44,"693 Wilson St, Dallas, TX 75001" +188511,Lightning Charging Cable,1,14.95,04/06/19 14:16,"40 8th St, New York City, NY 10001" +188512,AA Batteries (4-pack),1,3.84,04/21/19 21:54,"512 Washington St, Seattle, WA 98101" +188513,Lightning Charging Cable,1,14.95,04/24/19 12:48,"704 Pine St, Atlanta, GA 30301" +188514,Lightning Charging Cable,1,14.95,04/04/19 20:56,"752 9th St, Los Angeles, CA 90001" +188515,AA Batteries (4-pack),1,3.84,04/12/19 20:39,"981 Elm St, Portland, OR 97035" +188516,20in Monitor,1,109.99,04/21/19 00:22,"561 Washington St, Los Angeles, CA 90001" +188517,AAA Batteries (4-pack),1,2.99,04/24/19 10:57,"667 Elm St, Dallas, TX 75001" +188518,Bose SoundSport Headphones,1,99.99,04/08/19 09:00,"104 13th St, Portland, OR 97035" +188519,Bose SoundSport Headphones,1,99.99,04/30/19 12:45,"653 Hickory St, San Francisco, CA 94016" +188520,Wired Headphones,1,11.99,04/17/19 13:19,"201 Lakeview St, New York City, NY 10001" +188521,Apple Airpods Headphones,1,150,04/14/19 14:16,"666 Dogwood St, Atlanta, GA 30301" +188522,ThinkPad Laptop,1,999.99,04/29/19 12:19,"927 North St, New York City, NY 10001" +188523,Apple Airpods Headphones,1,150,04/05/19 10:30,"618 9th St, New York City, NY 10001" +188524,Lightning Charging Cable,1,14.95,04/05/19 07:21,"791 North St, Los Angeles, CA 90001" +188525,Bose SoundSport Headphones,1,99.99,04/07/19 14:21,"651 Spruce St, San Francisco, CA 94016" +188526,AAA Batteries (4-pack),1,2.99,04/18/19 01:02,"702 2nd St, San Francisco, CA 94016" +188527,Wired Headphones,1,11.99,04/02/19 17:15,"327 Hill St, Atlanta, GA 30301" +188528,Macbook Pro Laptop,1,1700,04/07/19 13:31,"587 Meadow St, Los Angeles, CA 90001" +188529,Apple Airpods Headphones,1,150,04/13/19 21:30,"826 Forest St, Boston, MA 02215" +188530,Vareebadd Phone,1,400,04/14/19 17:03,"210 North St, New York City, NY 10001" +188531,AA Batteries (4-pack),1,3.84,04/29/19 14:43,"851 Sunset St, San Francisco, CA 94016" +188532,ThinkPad Laptop,1,999.99,04/20/19 18:49,"28 Ridge St, San Francisco, CA 94016" +188533,Lightning Charging Cable,1,14.95,04/05/19 18:38,"954 Cherry St, San Francisco, CA 94016" +188534,Vareebadd Phone,1,400,04/28/19 11:14,"44 Adams St, Austin, TX 73301" +188535,27in FHD Monitor,1,149.99,04/26/19 13:35,"198 Main St, New York City, NY 10001" +188536,AAA Batteries (4-pack),1,2.99,04/27/19 13:01,"496 5th St, San Francisco, CA 94016" +188537,USB-C Charging Cable,1,11.95,04/14/19 09:40,"591 4th St, Dallas, TX 75001" +188538,AA Batteries (4-pack),1,3.84,04/29/19 09:09,"573 Jackson St, Dallas, TX 75001" +188539,iPhone,1,700,04/17/19 13:31,"977 Hickory St, Los Angeles, CA 90001" +188540,20in Monitor,1,109.99,04/17/19 12:21,"114 1st St, New York City, NY 10001" +188541,AAA Batteries (4-pack),1,2.99,04/28/19 07:32,"410 Cedar St, Los Angeles, CA 90001" +188542,AAA Batteries (4-pack),1,2.99,04/10/19 09:47,"231 Spruce St, Boston, MA 02215" +188543,Flatscreen TV,1,300,04/08/19 09:43,"132 Park St, Boston, MA 02215" +188544,Lightning Charging Cable,1,14.95,04/05/19 21:35,"630 River St, Los Angeles, CA 90001" +188545,Lightning Charging Cable,1,14.95,04/22/19 21:40,"919 Chestnut St, New York City, NY 10001" +188546,Apple Airpods Headphones,1,150,04/30/19 21:11,"808 Forest St, Atlanta, GA 30301" +188547,Wired Headphones,1,11.99,04/04/19 13:53,"811 7th St, San Francisco, CA 94016" +188548,USB-C Charging Cable,1,11.95,04/07/19 17:49,"474 Main St, San Francisco, CA 94016" +188549,34in Ultrawide Monitor,1,379.99,04/14/19 15:33,"949 2nd St, Boston, MA 02215" +188550,AAA Batteries (4-pack),1,2.99,04/02/19 17:28,"327 Cedar St, Boston, MA 02215" +188551,Apple Airpods Headphones,1,150,04/30/19 21:37,"362 Wilson St, San Francisco, CA 94016" +188552,Lightning Charging Cable,1,14.95,04/10/19 21:15,"54 Ridge St, Dallas, TX 75001" +188553,USB-C Charging Cable,1,11.95,04/04/19 22:59,"389 12th St, Dallas, TX 75001" +188554,AA Batteries (4-pack),1,3.84,04/23/19 08:30,"312 Center St, Boston, MA 02215" +188555,AAA Batteries (4-pack),3,2.99,04/24/19 20:51,"98 7th St, Austin, TX 73301" +188556,Apple Airpods Headphones,1,150,04/30/19 23:22,"321 Cherry St, Atlanta, GA 30301" +188557,USB-C Charging Cable,1,11.95,04/18/19 22:01,"784 Adams St, Atlanta, GA 30301" +188558,USB-C Charging Cable,1,11.95,04/01/19 11:54,"858 Washington St, San Francisco, CA 94016" +188559,27in 4K Gaming Monitor,1,389.99,04/02/19 06:55,"517 13th St, San Francisco, CA 94016" +188560,Flatscreen TV,1,300,04/10/19 12:33,"860 Jackson St, New York City, NY 10001" +188561,Lightning Charging Cable,1,14.95,04/09/19 09:38,"815 Church St, Atlanta, GA 30301" +188562,Apple Airpods Headphones,1,150,04/29/19 22:29,"360 Wilson St, Atlanta, GA 30301" +188563,Google Phone,1,600,04/17/19 11:41,"585 Lakeview St, San Francisco, CA 94016" +188563,USB-C Charging Cable,1,11.95,04/17/19 11:41,"585 Lakeview St, San Francisco, CA 94016" +188564,Wired Headphones,2,11.99,04/13/19 13:06,"251 12th St, Atlanta, GA 30301" +188565,Apple Airpods Headphones,1,150,04/25/19 21:42,"306 Meadow St, Boston, MA 02215" +188566,AA Batteries (4-pack),1,3.84,04/06/19 12:40,"279 Elm St, Los Angeles, CA 90001" +188567,Wired Headphones,1,11.99,04/10/19 23:35,"257 Wilson St, Los Angeles, CA 90001" +188568,AA Batteries (4-pack),1,3.84,04/09/19 16:13,"161 Cedar St, New York City, NY 10001" +188569,AAA Batteries (4-pack),1,2.99,04/06/19 19:11,"572 Ridge St, Los Angeles, CA 90001" +188570,Apple Airpods Headphones,1,150,04/13/19 10:01,"1 South St, Los Angeles, CA 90001" +188571,Macbook Pro Laptop,1,1700,04/21/19 05:04,"783 Ridge St, San Francisco, CA 94016" +188572,iPhone,1,700,04/05/19 11:10,"595 Park St, San Francisco, CA 94016" +188572,Lightning Charging Cable,1,14.95,04/05/19 11:10,"595 Park St, San Francisco, CA 94016" +188573,AA Batteries (4-pack),1,3.84,04/30/19 22:05,"324 Highland St, Los Angeles, CA 90001" +188574,Lightning Charging Cable,1,14.95,04/06/19 12:30,"742 Hickory St, Boston, MA 02215" +188575,Apple Airpods Headphones,1,150,04/29/19 17:29,"232 River St, Boston, MA 02215" +188576,Google Phone,1,600,04/24/19 09:20,"20 Lake St, San Francisco, CA 94016" +188577,Wired Headphones,1,11.99,04/11/19 16:02,"416 13th St, Seattle, WA 98101" +188578,AA Batteries (4-pack),1,3.84,04/14/19 19:13,"197 Chestnut St, San Francisco, CA 94016" +188579,Lightning Charging Cable,1,14.95,04/25/19 21:11,"450 Jefferson St, New York City, NY 10001" +188580,27in 4K Gaming Monitor,1,389.99,04/21/19 14:21,"562 10th St, San Francisco, CA 94016" +188581,AA Batteries (4-pack),1,3.84,04/16/19 15:09,"399 1st St, Los Angeles, CA 90001" +188582,Google Phone,1,600,04/29/19 11:03,"602 Willow St, New York City, NY 10001" +188583,USB-C Charging Cable,1,11.95,04/08/19 22:15,"960 13th St, Los Angeles, CA 90001" +188584,Wired Headphones,1,11.99,04/14/19 21:18,"58 Pine St, Atlanta, GA 30301" +188585,Google Phone,1,600,04/07/19 23:48,"593 6th St, San Francisco, CA 94016" +188585,USB-C Charging Cable,1,11.95,04/07/19 23:48,"593 6th St, San Francisco, CA 94016" +188585,Wired Headphones,1,11.99,04/07/19 23:48,"593 6th St, San Francisco, CA 94016" +188586,Lightning Charging Cable,1,14.95,04/08/19 22:14,"46 13th St, Portland, OR 97035" +188587,20in Monitor,1,109.99,04/09/19 11:04,"50 Madison St, Seattle, WA 98101" +188588,Lightning Charging Cable,1,14.95,04/17/19 01:21,"341 9th St, San Francisco, CA 94016" +188589,Bose SoundSport Headphones,1,99.99,04/04/19 06:58,"204 12th St, Austin, TX 73301" +188590,20in Monitor,1,109.99,04/13/19 15:58,"46 9th St, New York City, NY 10001" +188591,20in Monitor,1,109.99,04/17/19 00:36,"370 6th St, Boston, MA 02215" +188592,Bose SoundSport Headphones,1,99.99,04/27/19 13:34,"923 Walnut St, Portland, ME 04101" +188593,Bose SoundSport Headphones,1,99.99,04/04/19 12:50,"765 Spruce St, Boston, MA 02215" +188594,AA Batteries (4-pack),1,3.84,04/03/19 10:27,"15 South St, New York City, NY 10001" +188595,AAA Batteries (4-pack),1,2.99,04/03/19 06:20,"71 Willow St, San Francisco, CA 94016" +188596,34in Ultrawide Monitor,1,379.99,04/26/19 18:27,"515 7th St, Dallas, TX 75001" +188597,Apple Airpods Headphones,1,150,04/05/19 16:13,"755 Spruce St, San Francisco, CA 94016" +188598,27in 4K Gaming Monitor,1,389.99,04/01/19 12:20,"114 12th St, Boston, MA 02215" +188599,Flatscreen TV,1,300,04/25/19 06:23,"954 Jackson St, New York City, NY 10001" +188600,Bose SoundSport Headphones,1,99.99,04/05/19 22:41,"264 Johnson St, Los Angeles, CA 90001" +188601,Lightning Charging Cable,1,14.95,04/18/19 11:22,"214 Forest St, New York City, NY 10001" +188602,Lightning Charging Cable,1,14.95,04/13/19 12:41,"440 Pine St, Los Angeles, CA 90001" +188603,iPhone,1,700,04/29/19 02:06,"658 Elm St, Los Angeles, CA 90001" +188604,20in Monitor,1,109.99,04/10/19 13:50,"346 South St, Los Angeles, CA 90001" +188605,Google Phone,1,600,04/03/19 19:48,"57 Lakeview St, Seattle, WA 98101" +188605,USB-C Charging Cable,1,11.95,04/03/19 19:48,"57 Lakeview St, Seattle, WA 98101" +188606,Apple Airpods Headphones,1,150,04/06/19 11:52,"581 Meadow St, Los Angeles, CA 90001" +188607,iPhone,1,700,04/10/19 18:45,"826 9th St, Atlanta, GA 30301" +188608,34in Ultrawide Monitor,1,379.99,04/27/19 18:14,"76 Forest St, Dallas, TX 75001" +188609,Lightning Charging Cable,1,14.95,04/12/19 13:27,"658 7th St, Dallas, TX 75001" +188610,34in Ultrawide Monitor,1,379.99,04/25/19 18:59,"937 Cedar St, New York City, NY 10001" +188611,27in 4K Gaming Monitor,1,389.99,04/03/19 21:00,"662 Chestnut St, Los Angeles, CA 90001" +188612,USB-C Charging Cable,1,11.95,04/23/19 18:44,"988 Hickory St, Seattle, WA 98101" +188613,Apple Airpods Headphones,1,150,04/30/19 15:38,"848 Forest St, San Francisco, CA 94016" +188614,USB-C Charging Cable,1,11.95,04/25/19 18:36,"607 Meadow St, San Francisco, CA 94016" +188615,USB-C Charging Cable,1,11.95,04/09/19 10:08,"700 Jefferson St, New York City, NY 10001" +188616,Wired Headphones,1,11.99,04/26/19 18:23,"749 12th St, Austin, TX 73301" +188617,Wired Headphones,1,11.99,04/01/19 19:47,"568 Adams St, New York City, NY 10001" +188618,Apple Airpods Headphones,1,150,04/30/19 06:22,"888 13th St, Los Angeles, CA 90001" +188619,Flatscreen TV,1,300,04/06/19 00:11,"851 Hickory St, Seattle, WA 98101" +188620,Lightning Charging Cable,1,14.95,04/09/19 16:10,"81 11th St, Atlanta, GA 30301" +188621,Bose SoundSport Headphones,1,99.99,04/03/19 06:43,"531 4th St, New York City, NY 10001" +188622,USB-C Charging Cable,1,11.95,04/15/19 14:58,"473 8th St, San Francisco, CA 94016" +188623,Flatscreen TV,1,300,04/11/19 19:46,"794 6th St, Dallas, TX 75001" +188624,AA Batteries (4-pack),1,3.84,04/12/19 03:09,"685 11th St, New York City, NY 10001" +188625,AA Batteries (4-pack),1,3.84,04/24/19 15:00,"344 Chestnut St, Los Angeles, CA 90001" +188626,iPhone,1,700,04/19/19 13:59,"343 Chestnut St, Los Angeles, CA 90001" +188626,Apple Airpods Headphones,1,150,04/19/19 13:59,"343 Chestnut St, Los Angeles, CA 90001" +188627,USB-C Charging Cable,1,11.95,04/10/19 09:26,"874 Washington St, Boston, MA 02215" +188628,Bose SoundSport Headphones,1,99.99,04/04/19 17:41,"481 Wilson St, San Francisco, CA 94016" +188629,iPhone,1,700,04/10/19 20:25,"246 Lakeview St, San Francisco, CA 94016" +188630,USB-C Charging Cable,2,11.95,04/02/19 09:53,"378 5th St, Los Angeles, CA 90001" +188631,Apple Airpods Headphones,1,150,04/30/19 22:30,"99 Elm St, Los Angeles, CA 90001" +188632,Lightning Charging Cable,1,14.95,04/03/19 12:17,"136 Wilson St, San Francisco, CA 94016" +188633,AA Batteries (4-pack),1,3.84,04/01/19 19:07,"654 Maple St, Dallas, TX 75001" +188634,Wired Headphones,1,11.99,04/22/19 14:32,"974 Adams St, New York City, NY 10001" +188635,USB-C Charging Cable,1,11.95,04/06/19 08:24,"358 Meadow St, Portland, OR 97035" +188636,USB-C Charging Cable,2,11.95,04/10/19 19:05,"456 4th St, San Francisco, CA 94016" +188636,USB-C Charging Cable,1,11.95,04/10/19 19:05,"456 4th St, San Francisco, CA 94016" +188637,AA Batteries (4-pack),1,3.84,04/03/19 17:25,"359 Spruce St, New York City, NY 10001" +188638,Wired Headphones,1,11.99,04/24/19 16:55,"852 4th St, San Francisco, CA 94016" +188639,AA Batteries (4-pack),1,3.84,04/04/19 20:44,"356 Ridge St, Atlanta, GA 30301" +188640,27in FHD Monitor,1,149.99,04/03/19 15:40,"32 Hill St, Dallas, TX 75001" +188641,Bose SoundSport Headphones,1,99.99,04/16/19 14:41,"43 Pine St, Boston, MA 02215" +188642,27in FHD Monitor,1,149.99,04/15/19 22:33,"527 Washington St, Los Angeles, CA 90001" +188643,AA Batteries (4-pack),1,3.84,04/01/19 23:41,"464 Jackson St, San Francisco, CA 94016" +188644,AAA Batteries (4-pack),1,2.99,04/08/19 21:43,"187 Center St, Seattle, WA 98101" +188645,27in FHD Monitor,1,149.99,04/06/19 11:22,"51 River St, San Francisco, CA 94016" +188646,27in 4K Gaming Monitor,1,389.99,04/17/19 22:24,"542 Jackson St, Atlanta, GA 30301" +188647,Apple Airpods Headphones,1,150,04/20/19 14:40,"936 11th St, Seattle, WA 98101" +188648,AAA Batteries (4-pack),2,2.99,04/20/19 20:59,"500 Spruce St, San Francisco, CA 94016" +188649,Apple Airpods Headphones,1,150,04/28/19 18:32,"471 Chestnut St, New York City, NY 10001" +188650,AA Batteries (4-pack),2,3.84,04/25/19 18:33,"359 1st St, Los Angeles, CA 90001" +188651,Macbook Pro Laptop,1,1700,04/02/19 14:25,"38 Spruce St, San Francisco, CA 94016" +188652,AA Batteries (4-pack),1,3.84,04/23/19 20:21,"115 Dogwood St, Portland, OR 97035" +188653,Lightning Charging Cable,1,14.95,04/27/19 22:33,"570 Center St, Seattle, WA 98101" +188654,Google Phone,1,600,04/01/19 15:51,"137 4th St, Los Angeles, CA 90001" +188655,Lightning Charging Cable,1,14.95,04/17/19 00:44,"197 Meadow St, Atlanta, GA 30301" +188656,Wired Headphones,2,11.99,04/30/19 01:24,"710 Center St, Seattle, WA 98101" +188657,Lightning Charging Cable,1,14.95,04/06/19 16:55,"361 Hill St, San Francisco, CA 94016" +188658,Lightning Charging Cable,1,14.95,04/07/19 20:04,"852 Church St, Dallas, TX 75001" +188659,Bose SoundSport Headphones,1,99.99,04/02/19 14:07,"338 10th St, Los Angeles, CA 90001" +188660,USB-C Charging Cable,1,11.95,04/20/19 09:30,"609 4th St, New York City, NY 10001" +188661,27in FHD Monitor,1,149.99,04/18/19 06:53,"965 10th St, Atlanta, GA 30301" +188662,ThinkPad Laptop,1,999.99,04/22/19 12:09,"650 Center St, San Francisco, CA 94016" +188663,Lightning Charging Cable,1,14.95,04/27/19 10:44,"939 Lincoln St, Seattle, WA 98101" +188664,Macbook Pro Laptop,1,1700,04/17/19 17:49,"422 Center St, Boston, MA 02215" +188665,Apple Airpods Headphones,1,150,04/18/19 14:18,"205 Jackson St, Los Angeles, CA 90001" +188666,USB-C Charging Cable,1,11.95,04/03/19 09:04,"367 Johnson St, New York City, NY 10001" +188667,AA Batteries (4-pack),1,3.84,04/13/19 16:33,"737 Park St, Dallas, TX 75001" +188668,USB-C Charging Cable,2,11.95,04/18/19 16:58,"560 Dogwood St, Dallas, TX 75001" +188669,Lightning Charging Cable,1,14.95,04/23/19 14:23,"42 Washington St, Los Angeles, CA 90001" +188670,Wired Headphones,1,11.99,04/08/19 13:59,"548 Park St, Boston, MA 02215" +188671,AA Batteries (4-pack),1,3.84,04/28/19 10:23,"215 7th St, New York City, NY 10001" +188672,Google Phone,1,600,04/06/19 21:28,"634 Dogwood St, Seattle, WA 98101" +188672,USB-C Charging Cable,1,11.95,04/06/19 21:28,"634 Dogwood St, Seattle, WA 98101" +188672,Wired Headphones,1,11.99,04/06/19 21:28,"634 Dogwood St, Seattle, WA 98101" +188673,AA Batteries (4-pack),3,3.84,04/15/19 14:42,"197 Cherry St, Atlanta, GA 30301" +188674,USB-C Charging Cable,1,11.95,04/25/19 10:55,"453 1st St, Boston, MA 02215" +188675,AA Batteries (4-pack),1,3.84,04/19/19 14:41,"35 Walnut St, San Francisco, CA 94016" +188676,Lightning Charging Cable,1,14.95,04/08/19 11:55,"563 6th St, New York City, NY 10001" +188677,AAA Batteries (4-pack),1,2.99,04/29/19 14:32,"430 Park St, San Francisco, CA 94016" +188678,34in Ultrawide Monitor,1,379.99,04/24/19 21:59,"454 2nd St, San Francisco, CA 94016" +188679,Lightning Charging Cable,1,14.95,04/24/19 19:18,"106 Adams St, San Francisco, CA 94016" +188680,USB-C Charging Cable,2,11.95,04/14/19 11:59,"994 Cherry St, Portland, OR 97035" +188681,Wired Headphones,1,11.99,04/06/19 21:19,"574 Pine St, Los Angeles, CA 90001" +188682,Apple Airpods Headphones,1,150,04/02/19 19:35,"93 Maple St, Los Angeles, CA 90001" +188683,Flatscreen TV,1,300,04/29/19 13:43,"185 Dogwood St, Atlanta, GA 30301" +188684,Macbook Pro Laptop,1,1700,04/18/19 21:51,"84 Madison St, Portland, OR 97035" +188685,Lightning Charging Cable,1,14.95,04/26/19 10:31,"283 Dogwood St, Portland, OR 97035" +188686,ThinkPad Laptop,1,999.99,04/04/19 21:48,"598 Jefferson St, San Francisco, CA 94016" +188687,Lightning Charging Cable,1,14.95,04/16/19 08:04,"970 5th St, New York City, NY 10001" +188688,Lightning Charging Cable,2,14.95,04/19/19 20:01,"387 West St, San Francisco, CA 94016" +188689,ThinkPad Laptop,1,999.99,04/04/19 17:30,"676 Washington St, New York City, NY 10001" +188690,AA Batteries (4-pack),6,3.84,04/21/19 12:46,"249 North St, Austin, TX 73301" +188691,LG Dryer,1,600.0,04/10/19 14:41,"979 Spruce St, Boston, MA 02215" +188692,Apple Airpods Headphones,1,150,04/18/19 22:41,"189 6th St, Dallas, TX 75001" +188693,Apple Airpods Headphones,1,150,04/02/19 10:40,"618 Forest St, San Francisco, CA 94016" +188694,Wired Headphones,1,11.99,04/15/19 16:40,"906 11th St, Dallas, TX 75001" +188695,iPhone,1,700,04/29/19 20:46,"19 West St, San Francisco, CA 94016" +188695,Wired Headphones,1,11.99,04/29/19 20:46,"19 West St, San Francisco, CA 94016" +188696,27in FHD Monitor,1,149.99,04/25/19 17:21,"449 Center St, Dallas, TX 75001" +188697,20in Monitor,1,109.99,04/16/19 23:17,"357 Lincoln St, San Francisco, CA 94016" +188698,Macbook Pro Laptop,1,1700,04/30/19 12:54,"43 Dogwood St, New York City, NY 10001" +188699,Flatscreen TV,1,300,04/24/19 04:57,"386 Church St, Austin, TX 73301" +188700,Lightning Charging Cable,1,14.95,04/20/19 15:19,"874 North St, Dallas, TX 75001" +188701,Apple Airpods Headphones,1,150,04/09/19 00:29,"601 Adams St, Los Angeles, CA 90001" +188702,Google Phone,1,600,04/29/19 11:54,"903 11th St, Dallas, TX 75001" +188702,USB-C Charging Cable,1,11.95,04/29/19 11:54,"903 11th St, Dallas, TX 75001" +188703,Bose SoundSport Headphones,1,99.99,04/17/19 13:33,"584 Pine St, San Francisco, CA 94016" +188704,AAA Batteries (4-pack),1,2.99,04/22/19 19:38,"221 Hickory St, New York City, NY 10001" +188705,USB-C Charging Cable,1,11.95,04/17/19 11:15,"105 2nd St, Los Angeles, CA 90001" +188706,Vareebadd Phone,1,400,04/06/19 21:56,"822 Chestnut St, Seattle, WA 98101" +188707,iPhone,1,700,04/24/19 19:40,"584 Jefferson St, Portland, OR 97035" +188707,Lightning Charging Cable,1,14.95,04/24/19 19:40,"584 Jefferson St, Portland, OR 97035" +188708,USB-C Charging Cable,1,11.95,04/07/19 11:25,"230 North St, Seattle, WA 98101" +188709,Wired Headphones,1,11.99,04/13/19 14:26,"471 Hill St, Seattle, WA 98101" +188710,Wired Headphones,1,11.99,04/02/19 21:33,"295 Elm St, New York City, NY 10001" +188711,Wired Headphones,1,11.99,04/10/19 10:44,"92 14th St, New York City, NY 10001" +188712,Bose SoundSport Headphones,1,99.99,04/23/19 09:45,"942 1st St, Boston, MA 02215" +188713,20in Monitor,1,109.99,04/02/19 11:12,"910 Center St, Los Angeles, CA 90001" +188714,Google Phone,1,600,04/11/19 10:50,"376 Spruce St, Boston, MA 02215" +188714,USB-C Charging Cable,1,11.95,04/11/19 10:50,"376 Spruce St, Boston, MA 02215" +188714,AA Batteries (4-pack),2,3.84,04/11/19 10:50,"376 Spruce St, Boston, MA 02215" +188715,27in FHD Monitor,1,149.99,04/17/19 10:23,"37 Lincoln St, Seattle, WA 98101" +188716,Macbook Pro Laptop,1,1700,04/16/19 15:37,"892 Pine St, Dallas, TX 75001" +188717,USB-C Charging Cable,1,11.95,04/13/19 20:42,"178 South St, San Francisco, CA 94016" +188718,34in Ultrawide Monitor,1,379.99,04/09/19 15:21,"657 Lake St, Dallas, TX 75001" +188719,AAA Batteries (4-pack),1,2.99,04/18/19 16:30,"116 Main St, New York City, NY 10001" +188720,Macbook Pro Laptop,1,1700,04/22/19 18:37,"367 Meadow St, San Francisco, CA 94016" +188721,AAA Batteries (4-pack),1,2.99,04/30/19 22:12,"835 South St, Atlanta, GA 30301" +188722,27in 4K Gaming Monitor,1,389.99,04/30/19 18:29,"866 Forest St, Boston, MA 02215" +188723,Apple Airpods Headphones,1,150,04/29/19 18:02,"166 Ridge St, Los Angeles, CA 90001" +188724,Bose SoundSport Headphones,1,99.99,04/28/19 12:50,"488 West St, New York City, NY 10001" +188725,AA Batteries (4-pack),1,3.84,04/28/19 17:11,"173 4th St, New York City, NY 10001" +188726,AAA Batteries (4-pack),2,2.99,04/10/19 16:46,"986 Jefferson St, New York City, NY 10001" +188727,Lightning Charging Cable,1,14.95,04/03/19 10:28,"283 Park St, Austin, TX 73301" +188728,USB-C Charging Cable,1,11.95,04/04/19 14:55,"274 Highland St, Atlanta, GA 30301" +188729,Wired Headphones,1,11.99,04/24/19 11:17,"102 Walnut St, New York City, NY 10001" +188730,AA Batteries (4-pack),1,3.84,04/06/19 13:13,"972 Lake St, Portland, OR 97035" +188731,Wired Headphones,1,11.99,04/01/19 09:21,"939 2nd St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +188732,AA Batteries (4-pack),1,3.84,04/15/19 19:18,"273 Cedar St, Los Angeles, CA 90001" +188733,Bose SoundSport Headphones,1,99.99,04/13/19 19:30,"388 Meadow St, Portland, ME 04101" +188734,AAA Batteries (4-pack),1,2.99,04/17/19 12:43,"803 11th St, Dallas, TX 75001" +188735,AAA Batteries (4-pack),1,2.99,04/26/19 20:25,"545 11th St, Boston, MA 02215" +188736,AAA Batteries (4-pack),1,2.99,04/28/19 22:33,"996 Adams St, San Francisco, CA 94016" +188737,Bose SoundSport Headphones,1,99.99,04/14/19 18:12,"942 13th St, Seattle, WA 98101" +,,,,, +188738,27in 4K Gaming Monitor,1,389.99,04/21/19 16:50,"527 12th St, Atlanta, GA 30301" +188739,AA Batteries (4-pack),1,3.84,04/29/19 11:40,"484 Lincoln St, San Francisco, CA 94016" +188740,Bose SoundSport Headphones,1,99.99,04/11/19 21:20,"440 8th St, Austin, TX 73301" +188741,AA Batteries (4-pack),2,3.84,04/26/19 12:56,"847 1st St, San Francisco, CA 94016" +188742,AA Batteries (4-pack),1,3.84,04/21/19 19:09,"32 Lake St, Dallas, TX 75001" +188743,AAA Batteries (4-pack),2,2.99,04/14/19 21:22,"120 Jefferson St, San Francisco, CA 94016" +188744,Wired Headphones,1,11.99,04/17/19 13:24,"251 West St, Seattle, WA 98101" +188745,27in FHD Monitor,1,149.99,04/18/19 16:05,"795 Lakeview St, Boston, MA 02215" +188746,Google Phone,1,600,04/02/19 16:01,"475 Jackson St, Dallas, TX 75001" +188746,USB-C Charging Cable,2,11.95,04/02/19 16:01,"475 Jackson St, Dallas, TX 75001" +188746,Wired Headphones,1,11.99,04/02/19 16:01,"475 Jackson St, Dallas, TX 75001" +188747,USB-C Charging Cable,1,11.95,04/18/19 13:39,"157 Madison St, Los Angeles, CA 90001" +188748,AA Batteries (4-pack),1,3.84,04/10/19 21:15,"404 12th St, Dallas, TX 75001" +188749,Lightning Charging Cable,1,14.95,04/10/19 15:53,"635 8th St, Seattle, WA 98101" +188750,Google Phone,1,600,04/05/19 13:23,"469 Dogwood St, Portland, OR 97035" +188750,USB-C Charging Cable,1,11.95,04/05/19 13:23,"469 Dogwood St, Portland, OR 97035" +188751,Macbook Pro Laptop,1,1700,04/07/19 22:49,"296 Jackson St, Boston, MA 02215" +188752,Lightning Charging Cable,1,14.95,04/01/19 11:59,"58 Johnson St, Portland, OR 97035" +188753,Flatscreen TV,1,300,04/10/19 20:03,"516 Hickory St, Los Angeles, CA 90001" +188754,USB-C Charging Cable,2,11.95,04/07/19 08:09,"266 9th St, San Francisco, CA 94016" +188755,Apple Airpods Headphones,1,150,04/15/19 18:39,"394 South St, Dallas, TX 75001" +188756,27in 4K Gaming Monitor,1,389.99,04/08/19 17:37,"415 12th St, San Francisco, CA 94016" +188757,Lightning Charging Cable,1,14.95,04/16/19 23:56,"417 1st St, Boston, MA 02215" +188758,iPhone,1,700,04/01/19 23:54,"177 Wilson St, San Francisco, CA 94016" +188759,AA Batteries (4-pack),1,3.84,04/23/19 16:16,"761 1st St, San Francisco, CA 94016" +188760,Bose SoundSport Headphones,1,99.99,04/05/19 13:36,"574 14th St, San Francisco, CA 94016" +188761,20in Monitor,1,109.99,04/13/19 21:30,"658 Center St, Atlanta, GA 30301" +188762,27in FHD Monitor,1,149.99,04/14/19 11:56,"243 Park St, New York City, NY 10001" +188763,AAA Batteries (4-pack),1,2.99,04/29/19 22:41,"557 1st St, Atlanta, GA 30301" +188764,Apple Airpods Headphones,1,150,04/15/19 19:49,"881 North St, San Francisco, CA 94016" +188765,USB-C Charging Cable,1,11.95,04/29/19 14:25,"119 2nd St, Boston, MA 02215" +188766,AAA Batteries (4-pack),1,2.99,04/09/19 19:25,"179 Chestnut St, Atlanta, GA 30301" +188767,AAA Batteries (4-pack),2,2.99,04/27/19 08:09,"37 Ridge St, Austin, TX 73301" +188768,Flatscreen TV,1,300,04/23/19 11:22,"213 Forest St, Seattle, WA 98101" +188769,Wired Headphones,1,11.99,04/20/19 20:16,"339 Spruce St, New York City, NY 10001" +188769,Google Phone,1,600,04/20/19 20:16,"339 Spruce St, New York City, NY 10001" +188770,Bose SoundSport Headphones,1,99.99,04/19/19 01:48,"110 Sunset St, Boston, MA 02215" +188771,Wired Headphones,1,11.99,04/14/19 22:39,"556 4th St, Dallas, TX 75001" +188772,Apple Airpods Headphones,1,150,04/01/19 22:48,"669 River St, San Francisco, CA 94016" +188772,USB-C Charging Cable,1,11.95,04/01/19 22:48,"669 River St, San Francisco, CA 94016" +188773,AAA Batteries (4-pack),2,2.99,04/20/19 10:08,"905 Lincoln St, New York City, NY 10001" +188774,AAA Batteries (4-pack),2,2.99,04/04/19 06:28,"813 Hickory St, San Francisco, CA 94016" +188775,USB-C Charging Cable,1,11.95,04/21/19 08:38,"616 North St, Atlanta, GA 30301" +188776,Wired Headphones,1,11.99,04/22/19 21:32,"175 Jefferson St, San Francisco, CA 94016" +188777,Google Phone,1,600,04/20/19 10:10,"223 Madison St, Atlanta, GA 30301" +188778,27in FHD Monitor,1,149.99,04/03/19 17:13,"626 Hickory St, Austin, TX 73301" +188779,34in Ultrawide Monitor,1,379.99,04/22/19 10:31,"410 Madison St, Boston, MA 02215" +188780,USB-C Charging Cable,1,11.95,04/14/19 10:43,"28 2nd St, San Francisco, CA 94016" +188781,Wired Headphones,1,11.99,04/10/19 13:45,"731 10th St, Portland, OR 97035" +188782,USB-C Charging Cable,1,11.95,04/02/19 10:08,"660 Washington St, Los Angeles, CA 90001" +188783,Wired Headphones,1,11.99,04/29/19 07:59,"737 Chestnut St, Boston, MA 02215" +188784,Bose SoundSport Headphones,1,99.99,04/06/19 17:07,"50 Park St, Boston, MA 02215" +188785,Apple Airpods Headphones,1,150,04/02/19 12:07,"65 Lakeview St, New York City, NY 10001" +188786,Lightning Charging Cable,1,14.95,04/02/19 12:24,"111 Main St, New York City, NY 10001" +188787,27in FHD Monitor,1,149.99,04/24/19 18:08,"345 12th St, San Francisco, CA 94016" +188788,ThinkPad Laptop,1,999.99,04/16/19 19:14,"671 4th St, Portland, OR 97035" +188789,Lightning Charging Cable,1,14.95,04/01/19 07:44,"871 Spruce St, Boston, MA 02215" +188790,iPhone,1,700,04/17/19 17:04,"623 Wilson St, Portland, OR 97035" +188791,Flatscreen TV,1,300,04/24/19 17:59,"374 Spruce St, Portland, OR 97035" +188792,Wired Headphones,1,11.99,04/20/19 15:59,"489 Madison St, San Francisco, CA 94016" +188793,ThinkPad Laptop,1,999.99,04/18/19 20:09,"670 11th St, Austin, TX 73301" +188794,USB-C Charging Cable,1,11.95,04/27/19 16:06,"662 West St, San Francisco, CA 94016" +188795,ThinkPad Laptop,1,999.99,04/11/19 10:22,"631 Hill St, Dallas, TX 75001" +188796,USB-C Charging Cable,1,11.95,04/28/19 10:08,"805 Sunset St, Portland, OR 97035" +188797,27in 4K Gaming Monitor,1,389.99,04/07/19 12:27,"465 Lake St, San Francisco, CA 94016" +188798,AAA Batteries (4-pack),2,2.99,04/06/19 11:57,"632 Madison St, San Francisco, CA 94016" +188799,Google Phone,1,600,04/15/19 11:15,"379 Hill St, New York City, NY 10001" +188800,Lightning Charging Cable,1,14.95,04/11/19 11:09,"75 13th St, Los Angeles, CA 90001" +188801,Wired Headphones,1,11.99,04/21/19 21:15,"525 10th St, Seattle, WA 98101" +188802,ThinkPad Laptop,1,999.99,04/20/19 17:12,"862 Wilson St, Boston, MA 02215" +188803,Apple Airpods Headphones,1,150,04/13/19 19:54,"340 12th St, San Francisco, CA 94016" +188804,AA Batteries (4-pack),1,3.84,04/27/19 23:13,"708 Meadow St, Los Angeles, CA 90001" +188805,AAA Batteries (4-pack),1,2.99,04/20/19 07:45,"812 11th St, San Francisco, CA 94016" +188806,AAA Batteries (4-pack),1,2.99,04/18/19 22:19,"664 12th St, New York City, NY 10001" +188807,Apple Airpods Headphones,1,150,04/13/19 08:27,"968 Park St, San Francisco, CA 94016" +188808,AA Batteries (4-pack),2,3.84,04/30/19 09:45,"262 Jefferson St, Austin, TX 73301" +188809,Wired Headphones,1,11.99,04/04/19 19:53,"12 11th St, San Francisco, CA 94016" +188810,Lightning Charging Cable,1,14.95,04/14/19 22:58,"915 Cherry St, San Francisco, CA 94016" +188811,Lightning Charging Cable,1,14.95,04/05/19 10:23,"268 Sunset St, San Francisco, CA 94016" +188812,Macbook Pro Laptop,1,1700,04/17/19 10:19,"969 4th St, Los Angeles, CA 90001" +188813,ThinkPad Laptop,1,999.99,04/24/19 15:34,"876 Walnut St, Atlanta, GA 30301" +188813,Wired Headphones,1,11.99,04/24/19 15:34,"876 Walnut St, Atlanta, GA 30301" +188814,USB-C Charging Cable,1,11.95,04/24/19 18:38,"80 5th St, Austin, TX 73301" +188815,Bose SoundSport Headphones,1,99.99,04/20/19 10:19,"825 Madison St, San Francisco, CA 94016" +188816,AAA Batteries (4-pack),2,2.99,04/21/19 14:04,"639 10th St, Boston, MA 02215" +188817,AAA Batteries (4-pack),2,2.99,04/06/19 17:41,"41 Church St, Boston, MA 02215" +188818,34in Ultrawide Monitor,1,379.99,04/11/19 10:52,"509 Wilson St, Boston, MA 02215" +188819,USB-C Charging Cable,2,11.95,04/26/19 17:06,"575 Center St, San Francisco, CA 94016" +188820,Wired Headphones,1,11.99,04/22/19 07:43,"875 5th St, Austin, TX 73301" +188821,Flatscreen TV,1,300,04/19/19 05:18,"444 Jackson St, Austin, TX 73301" +188822,Wired Headphones,1,11.99,04/25/19 12:14,"99 South St, New York City, NY 10001" +188823,AA Batteries (4-pack),1,3.84,04/28/19 15:22,"960 14th St, Los Angeles, CA 90001" +188824,27in FHD Monitor,1,149.99,04/26/19 22:27,"203 10th St, Boston, MA 02215" +188825,20in Monitor,1,109.99,04/03/19 09:42,"510 Maple St, Boston, MA 02215" +188826,Vareebadd Phone,1,400,04/12/19 15:19,"193 12th St, New York City, NY 10001" +188826,Wired Headphones,1,11.99,04/12/19 15:19,"193 12th St, New York City, NY 10001" +188827,AA Batteries (4-pack),5,3.84,04/05/19 16:12,"924 Ridge St, Dallas, TX 75001" +188828,USB-C Charging Cable,1,11.95,04/07/19 13:30,"655 Johnson St, Boston, MA 02215" +188829,Bose SoundSport Headphones,1,99.99,04/19/19 10:35,"346 Meadow St, Atlanta, GA 30301" +188830,Vareebadd Phone,1,400,04/09/19 18:51,"494 1st St, San Francisco, CA 94016" +188831,ThinkPad Laptop,1,999.99,04/27/19 19:56,"823 Center St, San Francisco, CA 94016" +188832,27in 4K Gaming Monitor,1,389.99,04/23/19 19:36,"789 1st St, Dallas, TX 75001" +188833,AAA Batteries (4-pack),1,2.99,04/02/19 00:42,"891 Chestnut St, Los Angeles, CA 90001" +188834,AAA Batteries (4-pack),2,2.99,04/26/19 20:59,"731 Johnson St, Los Angeles, CA 90001" +188835,27in 4K Gaming Monitor,1,389.99,04/26/19 14:22,"506 Hickory St, Austin, TX 73301" +188836,Vareebadd Phone,1,400,04/23/19 18:36,"222 Cedar St, New York City, NY 10001" +188837,Lightning Charging Cable,1,14.95,04/18/19 09:45,"728 Church St, Portland, ME 04101" +188838,AAA Batteries (4-pack),1,2.99,04/09/19 13:39,"871 Lincoln St, New York City, NY 10001" +188839,27in 4K Gaming Monitor,1,389.99,04/29/19 15:14,"652 Jefferson St, Austin, TX 73301" +188839,Bose SoundSport Headphones,1,99.99,04/29/19 15:14,"652 Jefferson St, Austin, TX 73301" +188840,Wired Headphones,1,11.99,04/19/19 18:42,"586 Main St, San Francisco, CA 94016" +188841,Apple Airpods Headphones,1,150,04/06/19 17:22,"682 Hickory St, Portland, OR 97035" +188842,USB-C Charging Cable,1,11.95,04/13/19 12:16,"670 Meadow St, Portland, ME 04101" +188843,27in 4K Gaming Monitor,1,389.99,04/26/19 08:03,"655 Jackson St, San Francisco, CA 94016" +188844,AAA Batteries (4-pack),1,2.99,04/05/19 14:22,"237 12th St, San Francisco, CA 94016" +188845,Bose SoundSport Headphones,1,99.99,04/24/19 20:05,"661 Pine St, Boston, MA 02215" +188846,AA Batteries (4-pack),1,3.84,04/26/19 17:32,"910 Park St, Portland, ME 04101" +188847,Macbook Pro Laptop,1,1700,04/03/19 12:41,"275 Wilson St, Seattle, WA 98101" +188848,Bose SoundSport Headphones,1,99.99,04/23/19 06:23,"354 Washington St, Boston, MA 02215" +188849,AAA Batteries (4-pack),1,2.99,04/19/19 22:04,"845 Wilson St, Los Angeles, CA 90001" +188850,Lightning Charging Cable,1,14.95,04/19/19 23:10,"705 Lakeview St, Atlanta, GA 30301" +188851,AA Batteries (4-pack),2,3.84,04/27/19 14:07,"886 Walnut St, Seattle, WA 98101" +188852,Wired Headphones,1,11.99,04/03/19 16:10,"673 Maple St, New York City, NY 10001" +188853,AAA Batteries (4-pack),2,2.99,04/03/19 20:00,"839 Elm St, Portland, OR 97035" +188854,27in FHD Monitor,1,149.99,04/02/19 22:15,"897 2nd St, Los Angeles, CA 90001" +188855,20in Monitor,1,109.99,04/10/19 13:12,"74 North St, Portland, OR 97035" +188856,Bose SoundSport Headphones,1,99.99,04/07/19 15:52,"250 Church St, Atlanta, GA 30301" +188857,AA Batteries (4-pack),1,3.84,04/19/19 21:13,"826 6th St, San Francisco, CA 94016" +188858,USB-C Charging Cable,1,11.95,04/07/19 22:02,"507 Lakeview St, San Francisco, CA 94016" +,,,,, +188859,Wired Headphones,1,11.99,04/06/19 19:58,"246 Hickory St, Seattle, WA 98101" +188860,Lightning Charging Cable,1,14.95,04/17/19 17:09,"851 13th St, San Francisco, CA 94016" +188861,iPhone,1,700,04/23/19 09:27,"468 Hill St, Los Angeles, CA 90001" +188862,AAA Batteries (4-pack),1,2.99,04/18/19 19:09,"590 Johnson St, New York City, NY 10001" +188863,USB-C Charging Cable,1,11.95,04/01/19 10:26,"574 River St, Dallas, TX 75001" +188864,Lightning Charging Cable,1,14.95,04/02/19 21:32,"811 South St, Portland, ME 04101" +188864,Bose SoundSport Headphones,1,99.99,04/02/19 21:32,"811 South St, Portland, ME 04101" +188865,iPhone,1,700,04/30/19 09:52,"970 River St, San Francisco, CA 94016" +188866,AA Batteries (4-pack),1,3.84,04/17/19 11:49,"934 2nd St, Los Angeles, CA 90001" +188867,USB-C Charging Cable,1,11.95,04/17/19 00:22,"601 Lincoln St, New York City, NY 10001" +188868,Wired Headphones,1,11.99,04/14/19 17:47,"285 Highland St, Austin, TX 73301" +188869,AAA Batteries (4-pack),2,2.99,04/28/19 16:49,"167 Johnson St, San Francisco, CA 94016" +188870,AA Batteries (4-pack),3,3.84,04/14/19 19:49,"431 Lakeview St, Los Angeles, CA 90001" +188871,Flatscreen TV,1,300,04/13/19 22:03,"817 Johnson St, Seattle, WA 98101" +188872,AAA Batteries (4-pack),1,2.99,04/18/19 23:32,"698 Jackson St, Boston, MA 02215" +188873,34in Ultrawide Monitor,1,379.99,04/07/19 11:59,"710 Ridge St, Dallas, TX 75001" +188874,AAA Batteries (4-pack),1,2.99,04/28/19 23:58,"853 4th St, New York City, NY 10001" +188875,iPhone,1,700,04/27/19 11:26,"148 Madison St, Seattle, WA 98101" +188875,Apple Airpods Headphones,1,150,04/27/19 11:26,"148 Madison St, Seattle, WA 98101" +188876,Wired Headphones,1,11.99,04/19/19 07:57,"60 11th St, Portland, ME 04101" +188877,Lightning Charging Cable,1,14.95,04/30/19 21:52,"177 Forest St, San Francisco, CA 94016" +188878,USB-C Charging Cable,1,11.95,04/23/19 11:28,"33 Maple St, Los Angeles, CA 90001" +188879,iPhone,1,700,04/17/19 15:23,"170 Walnut St, Los Angeles, CA 90001" +188880,ThinkPad Laptop,1,999.99,04/11/19 10:59,"86 Hill St, Los Angeles, CA 90001" +188881,AAA Batteries (4-pack),1,2.99,04/16/19 21:03,"353 Hickory St, New York City, NY 10001" +188882,Wired Headphones,1,11.99,04/13/19 07:24,"757 Sunset St, Austin, TX 73301" +188883,20in Monitor,1,109.99,04/02/19 10:42,"283 Willow St, Los Angeles, CA 90001" +188884,AAA Batteries (4-pack),1,2.99,04/21/19 16:08,"227 Chestnut St, Los Angeles, CA 90001" +188885,iPhone,1,700,04/19/19 08:34,"531 Maple St, New York City, NY 10001" +188885,Lightning Charging Cable,1,14.95,04/19/19 08:34,"531 Maple St, New York City, NY 10001" +188886,AAA Batteries (4-pack),2,2.99,04/15/19 16:10,"542 Lakeview St, Boston, MA 02215" +188887,USB-C Charging Cable,1,11.95,04/03/19 13:09,"127 Madison St, Boston, MA 02215" +188888,Lightning Charging Cable,1,14.95,04/01/19 12:29,"306 8th St, Dallas, TX 75001" +188889,USB-C Charging Cable,1,11.95,04/13/19 20:39,"418 Highland St, Austin, TX 73301" +188890,Google Phone,1,600,04/19/19 18:02,"324 Cedar St, New York City, NY 10001" +188891,AAA Batteries (4-pack),1,2.99,04/23/19 12:33,"684 Maple St, Seattle, WA 98101" +188892,Lightning Charging Cable,1,14.95,04/01/19 12:07,"580 Adams St, Dallas, TX 75001" +188893,AAA Batteries (4-pack),1,2.99,04/19/19 10:25,"882 Forest St, San Francisco, CA 94016" +188893,Wired Headphones,1,11.99,04/19/19 10:25,"882 Forest St, San Francisco, CA 94016" +188894,Apple Airpods Headphones,1,150,04/25/19 23:42,"586 2nd St, San Francisco, CA 94016" +188895,AA Batteries (4-pack),1,3.84,04/22/19 19:35,"851 Jefferson St, New York City, NY 10001" +188896,AAA Batteries (4-pack),2,2.99,04/14/19 10:16,"216 8th St, New York City, NY 10001" +188897,20in Monitor,1,109.99,04/06/19 08:34,"621 2nd St, Dallas, TX 75001" +188898,27in FHD Monitor,1,149.99,04/04/19 01:02,"142 1st St, Los Angeles, CA 90001" +188899,Wired Headphones,1,11.99,04/17/19 23:17,"818 Lakeview St, Boston, MA 02215" +188900,AAA Batteries (4-pack),1,2.99,04/29/19 11:39,"858 Spruce St, Los Angeles, CA 90001" +188901,34in Ultrawide Monitor,1,379.99,04/25/19 22:41,"326 Meadow St, New York City, NY 10001" +188902,Flatscreen TV,1,300,04/11/19 22:13,"64 Dogwood St, Atlanta, GA 30301" +188903,Apple Airpods Headphones,1,150,04/27/19 00:21,"589 Church St, Los Angeles, CA 90001" +188904,Macbook Pro Laptop,1,1700,04/27/19 14:28,"702 Dogwood St, Portland, OR 97035" +188905,iPhone,1,700,04/07/19 14:47,"246 Center St, San Francisco, CA 94016" +188906,27in 4K Gaming Monitor,1,389.99,04/25/19 13:22,"991 5th St, San Francisco, CA 94016" +,,,,, +188907,34in Ultrawide Monitor,1,379.99,04/30/19 08:43,"937 8th St, New York City, NY 10001" +188908,ThinkPad Laptop,1,999.99,04/16/19 13:22,"71 12th St, San Francisco, CA 94016" +188909,AAA Batteries (4-pack),1,2.99,04/29/19 21:53,"781 Forest St, Atlanta, GA 30301" +188910,Flatscreen TV,1,300,04/20/19 14:12,"48 Washington St, Boston, MA 02215" +188911,Bose SoundSport Headphones,1,99.99,04/28/19 23:24,"473 Meadow St, Los Angeles, CA 90001" +188912,Lightning Charging Cable,1,14.95,04/02/19 09:56,"632 Forest St, Dallas, TX 75001" +188913,AAA Batteries (4-pack),2,2.99,04/01/19 19:29,"711 North St, Boston, MA 02215" +188914,USB-C Charging Cable,1,11.95,04/29/19 17:15,"729 Madison St, Seattle, WA 98101" +188915,AA Batteries (4-pack),1,3.84,04/22/19 15:27,"940 6th St, Los Angeles, CA 90001" +188916,Google Phone,1,600,04/21/19 21:03,"400 7th St, Boston, MA 02215" +188916,USB-C Charging Cable,1,11.95,04/21/19 21:03,"400 7th St, Boston, MA 02215" +188917,AA Batteries (4-pack),2,3.84,04/24/19 08:52,"650 Sunset St, San Francisco, CA 94016" +188918,Wired Headphones,1,11.99,04/07/19 15:43,"568 Lake St, San Francisco, CA 94016" +188919,USB-C Charging Cable,1,11.95,04/15/19 12:36,"618 River St, New York City, NY 10001" +188920,Lightning Charging Cable,1,14.95,04/27/19 06:17,"497 8th St, San Francisco, CA 94016" +188921,20in Monitor,1,109.99,04/20/19 10:48,"353 7th St, San Francisco, CA 94016" +188922,AA Batteries (4-pack),1,3.84,04/25/19 18:39,"109 Maple St, Atlanta, GA 30301" +188923,Vareebadd Phone,1,400,04/08/19 14:54,"843 Lake St, San Francisco, CA 94016" +188923,Bose SoundSport Headphones,1,99.99,04/08/19 14:54,"843 Lake St, San Francisco, CA 94016" +188924,LG Washing Machine,1,600.0,04/11/19 05:52,"31 12th St, Atlanta, GA 30301" +188925,27in 4K Gaming Monitor,1,389.99,04/30/19 16:22,"368 Elm St, Los Angeles, CA 90001" +188926,27in FHD Monitor,1,149.99,04/04/19 07:00,"624 Jefferson St, Dallas, TX 75001" +188927,Lightning Charging Cable,1,14.95,04/05/19 05:47,"561 Maple St, Dallas, TX 75001" +188928,USB-C Charging Cable,1,11.95,04/26/19 18:14,"494 Washington St, San Francisco, CA 94016" +188929,27in FHD Monitor,1,149.99,04/21/19 07:53,"359 2nd St, San Francisco, CA 94016" +188930,Macbook Pro Laptop,1,1700,04/13/19 22:12,"265 Willow St, San Francisco, CA 94016" +188931,Apple Airpods Headphones,1,150,04/21/19 22:07,"699 Meadow St, Portland, OR 97035" +188932,USB-C Charging Cable,1,11.95,04/17/19 07:59,"630 Madison St, San Francisco, CA 94016" +188933,USB-C Charging Cable,1,11.95,04/17/19 10:09,"184 Madison St, Austin, TX 73301" +188934,Wired Headphones,1,11.99,04/15/19 10:48,"644 12th St, Los Angeles, CA 90001" +188935,Apple Airpods Headphones,1,150,04/29/19 11:08,"896 Lake St, San Francisco, CA 94016" +188936,Wired Headphones,1,11.99,04/17/19 18:43,"11 Washington St, Dallas, TX 75001" +188937,Wired Headphones,1,11.99,04/05/19 10:50,"259 Cherry St, Los Angeles, CA 90001" +188938,USB-C Charging Cable,1,11.95,04/29/19 20:20,"285 10th St, New York City, NY 10001" +188939,AAA Batteries (4-pack),2,2.99,04/02/19 13:07,"428 Sunset St, New York City, NY 10001" +188940,USB-C Charging Cable,2,11.95,04/30/19 22:12,"570 Maple St, Seattle, WA 98101" +188941,USB-C Charging Cable,1,11.95,04/11/19 22:22,"408 Main St, Los Angeles, CA 90001" +188942,AA Batteries (4-pack),3,3.84,04/12/19 10:28,"853 Jackson St, New York City, NY 10001" +188943,AAA Batteries (4-pack),1,2.99,04/19/19 19:52,"600 Cherry St, Dallas, TX 75001" +188944,Lightning Charging Cable,1,14.95,04/04/19 20:23,"214 Dogwood St, Atlanta, GA 30301" +188945,Apple Airpods Headphones,1,150,04/01/19 16:54,"492 Spruce St, New York City, NY 10001" +188946,Apple Airpods Headphones,1,150,04/16/19 11:46,"445 South St, San Francisco, CA 94016" +188947,AA Batteries (4-pack),1,3.84,04/09/19 22:50,"545 Center St, Dallas, TX 75001" +188948,AA Batteries (4-pack),1,3.84,04/17/19 15:48,"835 Jackson St, Seattle, WA 98101" +188949,AA Batteries (4-pack),1,3.84,04/16/19 16:43,"730 Center St, San Francisco, CA 94016" +188950,USB-C Charging Cable,1,11.95,04/30/19 12:15,"852 7th St, San Francisco, CA 94016" +188951,AA Batteries (4-pack),1,3.84,04/26/19 21:08,"351 Dogwood St, Los Angeles, CA 90001" +188952,Wired Headphones,1,11.99,04/09/19 08:40,"355 Lincoln St, San Francisco, CA 94016" +188953,27in FHD Monitor,1,149.99,04/19/19 20:14,"996 South St, Los Angeles, CA 90001" +188954,AA Batteries (4-pack),2,3.84,04/25/19 21:21,"991 Hickory St, Los Angeles, CA 90001" +188955,AA Batteries (4-pack),1,3.84,04/10/19 05:06,"217 Ridge St, San Francisco, CA 94016" +188956,Lightning Charging Cable,1,14.95,04/05/19 14:19,"21 South St, San Francisco, CA 94016" +188957,Bose SoundSport Headphones,1,99.99,04/17/19 07:34,"302 5th St, Los Angeles, CA 90001" +188958,34in Ultrawide Monitor,1,379.99,04/08/19 09:32,"537 Church St, Los Angeles, CA 90001" +188959,Vareebadd Phone,1,400,04/04/19 11:45,"570 Main St, New York City, NY 10001" +188960,Wired Headphones,1,11.99,04/19/19 12:01,"975 14th St, Los Angeles, CA 90001" +188961,Wired Headphones,1,11.99,04/01/19 10:38,"124 Pine St, Dallas, TX 75001" +188962,Flatscreen TV,1,300,04/04/19 15:07,"668 12th St, Boston, MA 02215" +188963,Lightning Charging Cable,1,14.95,04/06/19 14:23,"58 Maple St, Los Angeles, CA 90001" +188964,Apple Airpods Headphones,1,150,04/27/19 16:36,"798 Jefferson St, Dallas, TX 75001" +188965,USB-C Charging Cable,1,11.95,04/23/19 21:36,"189 Spruce St, New York City, NY 10001" +188966,Flatscreen TV,1,300,04/24/19 22:25,"864 Willow St, Los Angeles, CA 90001" +188967,AAA Batteries (4-pack),1,2.99,04/22/19 21:46,"457 1st St, Seattle, WA 98101" +188968,AAA Batteries (4-pack),2,2.99,04/10/19 11:14,"294 6th St, Boston, MA 02215" +188968,Lightning Charging Cable,1,14.95,04/10/19 11:14,"294 6th St, Boston, MA 02215" +188969,Apple Airpods Headphones,1,150,04/03/19 12:05,"916 11th St, New York City, NY 10001" +188970,Macbook Pro Laptop,1,1700,04/20/19 20:51,"697 Main St, Atlanta, GA 30301" +188971,27in FHD Monitor,1,149.99,04/20/19 11:33,"365 4th St, Seattle, WA 98101" +188972,AAA Batteries (4-pack),1,2.99,04/10/19 20:58,"963 14th St, Los Angeles, CA 90001" +188973,Lightning Charging Cable,1,14.95,04/14/19 11:07,"643 2nd St, Los Angeles, CA 90001" +188974,Google Phone,1,600,04/17/19 18:14,"598 Lakeview St, Dallas, TX 75001" +188975,AAA Batteries (4-pack),1,2.99,04/22/19 02:19,"104 9th St, San Francisco, CA 94016" +188976,Lightning Charging Cable,2,14.95,04/09/19 14:13,"261 Sunset St, Portland, ME 04101" +188977,Lightning Charging Cable,1,14.95,04/28/19 20:35,"422 River St, Seattle, WA 98101" +188978,USB-C Charging Cable,1,11.95,04/29/19 11:11,"474 Wilson St, San Francisco, CA 94016" +188979,iPhone,1,700,04/07/19 21:18,"797 Dogwood St, Dallas, TX 75001" +188980,Bose SoundSport Headphones,1,99.99,04/19/19 16:12,"561 Chestnut St, Portland, OR 97035" +188981,27in FHD Monitor,1,149.99,04/11/19 06:34,"689 Maple St, New York City, NY 10001" +188982,Bose SoundSport Headphones,1,99.99,04/30/19 15:10,"31 Cedar St, Boston, MA 02215" +188983,AA Batteries (4-pack),1,3.84,04/24/19 12:59,"26 Madison St, San Francisco, CA 94016" +188984,34in Ultrawide Monitor,1,379.99,04/06/19 11:51,"891 Center St, Seattle, WA 98101" +188985,Google Phone,1,600,04/22/19 16:02,"394 Johnson St, Boston, MA 02215" +188986,Bose SoundSport Headphones,1,99.99,04/19/19 19:59,"169 Dogwood St, Seattle, WA 98101" +188987,Apple Airpods Headphones,1,150,04/10/19 20:05,"913 8th St, San Francisco, CA 94016" +188988,AA Batteries (4-pack),1,3.84,04/07/19 18:52,"78 11th St, Los Angeles, CA 90001" +188989,Wired Headphones,1,11.99,04/09/19 14:19,"84 Park St, Austin, TX 73301" +188990,Bose SoundSport Headphones,1,99.99,04/01/19 19:46,"604 Adams St, Seattle, WA 98101" +188991,Macbook Pro Laptop,1,1700,04/25/19 18:09,"456 10th St, Los Angeles, CA 90001" +188992,Apple Airpods Headphones,1,150,04/11/19 11:59,"553 Walnut St, New York City, NY 10001" +188993,Bose SoundSport Headphones,1,99.99,04/26/19 18:40,"225 Ridge St, New York City, NY 10001" +188994,AAA Batteries (4-pack),3,2.99,04/26/19 11:12,"856 Highland St, Los Angeles, CA 90001" +188995,Wired Headphones,1,11.99,04/29/19 00:01,"802 8th St, Dallas, TX 75001" +188996,AAA Batteries (4-pack),1,2.99,04/28/19 00:26,"9 Chestnut St, San Francisco, CA 94016" +188997,USB-C Charging Cable,1,11.95,04/13/19 13:14,"267 Lincoln St, San Francisco, CA 94016" +188998,Wired Headphones,1,11.99,04/14/19 09:43,"577 Church St, Dallas, TX 75001" +188999,iPhone,1,700,04/29/19 09:42,"686 Adams St, New York City, NY 10001" +189000,Lightning Charging Cable,1,14.95,04/18/19 19:49,"299 14th St, Atlanta, GA 30301" +189001,AAA Batteries (4-pack),1,2.99,04/04/19 16:41,"694 Willow St, Seattle, WA 98101" +189002,USB-C Charging Cable,1,11.95,04/15/19 23:45,"212 7th St, New York City, NY 10001" +189003,AA Batteries (4-pack),1,3.84,04/13/19 08:26,"774 West St, Dallas, TX 75001" +189004,Apple Airpods Headphones,1,150,04/23/19 23:04,"662 Church St, New York City, NY 10001" +189005,AA Batteries (4-pack),1,3.84,04/10/19 13:14,"214 2nd St, Austin, TX 73301" +189006,AA Batteries (4-pack),1,3.84,04/26/19 17:56,"923 Meadow St, San Francisco, CA 94016" +189007,27in FHD Monitor,1,149.99,04/26/19 13:52,"256 South St, Seattle, WA 98101" +189008,Lightning Charging Cable,1,14.95,04/19/19 12:01,"956 Meadow St, San Francisco, CA 94016" +189009,Wired Headphones,1,11.99,04/09/19 15:57,"2 Dogwood St, San Francisco, CA 94016" +189010,20in Monitor,1,109.99,04/22/19 05:53,"511 6th St, San Francisco, CA 94016" +189011,Wired Headphones,1,11.99,05/01/19 01:22,"330 12th St, Seattle, WA 98101" +189012,iPhone,1,700,04/19/19 16:53,"541 Ridge St, San Francisco, CA 94016" +189013,USB-C Charging Cable,1,11.95,04/18/19 19:27,"380 Park St, Portland, OR 97035" +189014,27in 4K Gaming Monitor,1,389.99,04/21/19 09:37,"423 Cedar St, Austin, TX 73301" +189015,AA Batteries (4-pack),1,3.84,05/01/19 00:40,"886 13th St, Boston, MA 02215" +189016,iPhone,1,700,04/14/19 16:21,"158 11th St, Seattle, WA 98101" +189017,LG Dryer,1,600.0,04/11/19 09:51,"87 7th St, San Francisco, CA 94016" +189018,Apple Airpods Headphones,1,150,04/30/19 13:39,"316 Jefferson St, Boston, MA 02215" +189019,34in Ultrawide Monitor,1,379.99,04/05/19 13:14,"192 Ridge St, Atlanta, GA 30301" +189020,USB-C Charging Cable,1,11.95,04/22/19 20:46,"329 Church St, San Francisco, CA 94016" +189021,AAA Batteries (4-pack),1,2.99,04/13/19 11:06,"798 10th St, New York City, NY 10001" +189022,USB-C Charging Cable,1,11.95,04/21/19 14:11,"475 Elm St, San Francisco, CA 94016" +189023,LG Dryer,1,600.0,04/19/19 11:40,"54 Maple St, Los Angeles, CA 90001" +189024,USB-C Charging Cable,1,11.95,04/05/19 20:55,"679 Hill St, San Francisco, CA 94016" +189025,AAA Batteries (4-pack),1,2.99,04/12/19 18:10,"994 Lake St, Boston, MA 02215" +189026,27in FHD Monitor,1,149.99,04/21/19 14:56,"741 Ridge St, San Francisco, CA 94016" +189027,Apple Airpods Headphones,1,150,04/05/19 15:17,"115 Lakeview St, Portland, OR 97035" +189028,USB-C Charging Cable,1,11.95,04/08/19 18:43,"941 Ridge St, New York City, NY 10001" +189029,iPhone,1,700,04/10/19 11:47,"68 Lakeview St, San Francisco, CA 94016" +189030,Bose SoundSport Headphones,1,99.99,04/06/19 23:57,"804 Pine St, Seattle, WA 98101" +189031,Apple Airpods Headphones,1,150,04/18/19 17:09,"99 9th St, New York City, NY 10001" +189032,Wired Headphones,1,11.99,04/29/19 16:15,"371 South St, San Francisco, CA 94016" +189033,AAA Batteries (4-pack),3,2.99,04/27/19 19:09,"996 Sunset St, San Francisco, CA 94016" +189034,USB-C Charging Cable,2,11.95,04/27/19 22:22,"848 Ridge St, New York City, NY 10001" +189035,Bose SoundSport Headphones,1,99.99,04/18/19 20:08,"942 Maple St, New York City, NY 10001" +189036,USB-C Charging Cable,2,11.95,04/28/19 14:17,"130 Main St, Seattle, WA 98101" +189037,27in FHD Monitor,1,149.99,04/15/19 12:23,"167 Main St, San Francisco, CA 94016" +189038,Lightning Charging Cable,1,14.95,04/27/19 15:10,"974 Spruce St, New York City, NY 10001" +189039,AAA Batteries (4-pack),2,2.99,04/13/19 09:50,"552 Jackson St, San Francisco, CA 94016" +189040,ThinkPad Laptop,1,999.99,04/05/19 15:01,"153 Maple St, Los Angeles, CA 90001" +189041,34in Ultrawide Monitor,1,379.99,04/20/19 10:24,"444 Madison St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +189042,27in FHD Monitor,1,149.99,04/12/19 17:18,"728 Walnut St, Los Angeles, CA 90001" +189043,Google Phone,1,600,04/20/19 00:08,"99 Church St, Dallas, TX 75001" +189043,Wired Headphones,1,11.99,04/20/19 00:08,"99 Church St, Dallas, TX 75001" +189044,AA Batteries (4-pack),1,3.84,04/08/19 21:49,"43 Main St, Boston, MA 02215" +189045,Macbook Pro Laptop,1,1700,04/11/19 16:44,"571 Pine St, Atlanta, GA 30301" +189046,USB-C Charging Cable,1,11.95,04/19/19 20:07,"80 Lincoln St, Seattle, WA 98101" +189047,ThinkPad Laptop,1,999.99,04/18/19 20:37,"468 Pine St, San Francisco, CA 94016" +189048,LG Washing Machine,1,600.0,04/03/19 07:32,"374 Washington St, Dallas, TX 75001" +189049,AA Batteries (4-pack),1,3.84,04/30/19 16:22,"877 Lakeview St, San Francisco, CA 94016" +189050,AAA Batteries (4-pack),1,2.99,04/04/19 12:22,"413 Walnut St, San Francisco, CA 94016" +189051,AAA Batteries (4-pack),2,2.99,04/15/19 19:11,"969 1st St, Seattle, WA 98101" +189052,Lightning Charging Cable,1,14.95,04/21/19 19:06,"399 Jackson St, Los Angeles, CA 90001" +189053,34in Ultrawide Monitor,1,379.99,04/18/19 17:02,"841 Chestnut St, Boston, MA 02215" +189054,Flatscreen TV,1,300,04/02/19 14:50,"382 10th St, Boston, MA 02215" +189055,LG Washing Machine,1,600.0,04/26/19 08:21,"269 Main St, Los Angeles, CA 90001" +189056,27in 4K Gaming Monitor,1,389.99,04/29/19 09:51,"609 Highland St, San Francisco, CA 94016" +189057,27in 4K Gaming Monitor,1,389.99,04/06/19 14:20,"105 Walnut St, San Francisco, CA 94016" +189058,Wired Headphones,1,11.99,04/18/19 14:01,"434 Jefferson St, New York City, NY 10001" +189059,AAA Batteries (4-pack),1,2.99,04/27/19 23:38,"235 River St, New York City, NY 10001" +189060,20in Monitor,1,109.99,04/04/19 13:59,"103 10th St, Los Angeles, CA 90001" +189061,Wired Headphones,2,11.99,04/16/19 10:00,"440 7th St, Seattle, WA 98101" +189062,AAA Batteries (4-pack),1,2.99,04/04/19 22:39,"55 Spruce St, Boston, MA 02215" +189063,AAA Batteries (4-pack),1,2.99,04/27/19 23:01,"967 Main St, Los Angeles, CA 90001" +189064,USB-C Charging Cable,1,11.95,04/28/19 11:05,"409 Main St, San Francisco, CA 94016" +189065,Wired Headphones,1,11.99,04/20/19 10:40,"263 Cherry St, New York City, NY 10001" +189066,27in 4K Gaming Monitor,1,389.99,04/20/19 14:29,"294 Highland St, San Francisco, CA 94016" +189067,27in 4K Gaming Monitor,1,389.99,04/11/19 15:16,"332 Adams St, Boston, MA 02215" +189068,27in 4K Gaming Monitor,1,389.99,04/09/19 15:36,"848 11th St, Los Angeles, CA 90001" +189069,Wired Headphones,1,11.99,04/24/19 19:44,"330 Maple St, Boston, MA 02215" +189070,Bose SoundSport Headphones,1,99.99,04/28/19 13:56,"232 2nd St, Los Angeles, CA 90001" +189071,AA Batteries (4-pack),1,3.84,04/23/19 16:45,"84 Johnson St, Seattle, WA 98101" +189072,Bose SoundSport Headphones,1,99.99,04/28/19 08:50,"43 River St, Atlanta, GA 30301" +189073,USB-C Charging Cable,1,11.95,04/23/19 13:18,"87 Highland St, Los Angeles, CA 90001" +189074,Google Phone,1,600,04/06/19 22:36,"106 5th St, Dallas, TX 75001" +189075,AAA Batteries (4-pack),1,2.99,04/29/19 14:24,"833 Ridge St, Atlanta, GA 30301" +189076,Macbook Pro Laptop,1,1700,04/02/19 20:43,"493 6th St, Los Angeles, CA 90001" +189077,27in 4K Gaming Monitor,1,389.99,04/29/19 11:55,"491 Center St, New York City, NY 10001" +189078,USB-C Charging Cable,1,11.95,04/29/19 21:41,"565 Ridge St, Boston, MA 02215" +189079,LG Washing Machine,1,600.0,04/09/19 23:11,"972 Madison St, Los Angeles, CA 90001" +189080,AA Batteries (4-pack),1,3.84,04/26/19 23:11,"971 Pine St, Seattle, WA 98101" +189081,27in FHD Monitor,1,149.99,04/12/19 21:05,"75 14th St, Boston, MA 02215" +189082,27in 4K Gaming Monitor,1,389.99,04/23/19 16:04,"175 Willow St, San Francisco, CA 94016" +189083,AA Batteries (4-pack),1,3.84,04/10/19 20:38,"199 South St, Atlanta, GA 30301" +189084,Wired Headphones,1,11.99,04/25/19 20:40,"782 2nd St, Los Angeles, CA 90001" +189085,Apple Airpods Headphones,1,150,04/13/19 20:28,"726 Walnut St, Atlanta, GA 30301" +189086,Lightning Charging Cable,1,14.95,04/23/19 16:29,"310 Madison St, Portland, ME 04101" +189087,iPhone,1,700,04/27/19 12:07,"282 Hickory St, San Francisco, CA 94016" +189088,Vareebadd Phone,1,400,04/04/19 20:17,"926 West St, Portland, OR 97035" +189089,Apple Airpods Headphones,1,150,04/04/19 21:08,"21 Park St, Portland, OR 97035" +189090,iPhone,1,700,04/21/19 01:32,"689 2nd St, Portland, OR 97035" +189091,Wired Headphones,1,11.99,04/12/19 09:51,"64 Meadow St, San Francisco, CA 94016" +189092,AA Batteries (4-pack),1,3.84,04/13/19 22:29,"959 8th St, San Francisco, CA 94016" +189093,Wired Headphones,1,11.99,04/06/19 17:02,"589 2nd St, New York City, NY 10001" +189094,Lightning Charging Cable,1,14.95,04/03/19 18:31,"252 13th St, Portland, OR 97035" +189095,Wired Headphones,1,11.99,04/19/19 20:42,"55 Hill St, Austin, TX 73301" +189096,Apple Airpods Headphones,1,150,04/08/19 20:58,"923 1st St, Austin, TX 73301" +189097,27in 4K Gaming Monitor,1,389.99,04/14/19 23:27,"274 Chestnut St, San Francisco, CA 94016" +189098,34in Ultrawide Monitor,1,379.99,04/15/19 21:42,"86 Hickory St, Seattle, WA 98101" +189098,Bose SoundSport Headphones,1,99.99,04/15/19 21:42,"86 Hickory St, Seattle, WA 98101" +189099,Wired Headphones,1,11.99,04/01/19 16:29,"135 Walnut St, San Francisco, CA 94016" +189100,USB-C Charging Cable,1,11.95,04/06/19 05:25,"718 Cherry St, San Francisco, CA 94016" +189101,Bose SoundSport Headphones,1,99.99,04/09/19 05:26,"831 Highland St, Seattle, WA 98101" +189102,Wired Headphones,1,11.99,04/24/19 15:11,"847 Main St, Los Angeles, CA 90001" +189103,ThinkPad Laptop,1,999.99,04/01/19 13:32,"378 11th St, Boston, MA 02215" +189104,AA Batteries (4-pack),2,3.84,04/15/19 13:03,"490 Highland St, Dallas, TX 75001" +189104,34in Ultrawide Monitor,1,379.99,04/15/19 13:03,"490 Highland St, Dallas, TX 75001" +189105,27in FHD Monitor,1,149.99,04/30/19 00:09,"864 Jefferson St, Boston, MA 02215" +189106,Wired Headphones,1,11.99,04/28/19 23:59,"780 Lincoln St, Portland, OR 97035" +189107,iPhone,1,700,04/25/19 10:19,"607 7th St, Boston, MA 02215" +189107,Lightning Charging Cable,1,14.95,04/25/19 10:19,"607 7th St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +189108,Flatscreen TV,1,300,04/29/19 12:16,"234 Main St, New York City, NY 10001" +189109,Bose SoundSport Headphones,1,99.99,04/13/19 21:10,"238 12th St, New York City, NY 10001" +189110,ThinkPad Laptop,1,999.99,04/18/19 01:47,"109 6th St, Los Angeles, CA 90001" +189111,USB-C Charging Cable,2,11.95,04/04/19 17:57,"925 12th St, Portland, OR 97035" +189112,Wired Headphones,1,11.99,04/03/19 14:12,"338 Johnson St, San Francisco, CA 94016" +189113,AAA Batteries (4-pack),3,2.99,04/28/19 11:47,"418 Willow St, New York City, NY 10001" +189114,AAA Batteries (4-pack),1,2.99,04/25/19 12:22,"66 Cedar St, Portland, OR 97035" +189115,20in Monitor,1,109.99,04/19/19 17:36,"337 Jefferson St, Boston, MA 02215" +189116,Bose SoundSport Headphones,1,99.99,04/12/19 21:29,"881 Meadow St, Boston, MA 02215" +189117,AAA Batteries (4-pack),1,2.99,04/10/19 07:52,"605 Lincoln St, Seattle, WA 98101" +189117,AAA Batteries (4-pack),1,2.99,04/10/19 07:52,"605 Lincoln St, Seattle, WA 98101" +189118,Wired Headphones,1,11.99,04/27/19 00:04,"787 Lincoln St, Boston, MA 02215" +189119,USB-C Charging Cable,1,11.95,04/08/19 20:55,"4 11th St, New York City, NY 10001" +189120,USB-C Charging Cable,1,11.95,04/22/19 21:58,"279 5th St, San Francisco, CA 94016" +189121,Wired Headphones,2,11.99,04/03/19 23:10,"127 Jackson St, Los Angeles, CA 90001" +189122,20in Monitor,1,109.99,04/21/19 09:48,"958 Forest St, Seattle, WA 98101" +189123,AA Batteries (4-pack),1,3.84,04/17/19 10:40,"452 Dogwood St, Los Angeles, CA 90001" +189124,Apple Airpods Headphones,1,150,04/02/19 15:20,"839 Chestnut St, Atlanta, GA 30301" +189125,iPhone,1,700,04/08/19 14:23,"792 Cherry St, Los Angeles, CA 90001" +189126,Flatscreen TV,1,300,04/24/19 19:45,"591 Lake St, Los Angeles, CA 90001" +189127,Macbook Pro Laptop,1,1700,04/20/19 07:45,"648 Forest St, San Francisco, CA 94016" +189128,AAA Batteries (4-pack),1,2.99,04/12/19 16:12,"944 Center St, Boston, MA 02215" +189129,ThinkPad Laptop,1,999.99,04/11/19 20:23,"607 Lake St, Atlanta, GA 30301" +189130,Wired Headphones,1,11.99,04/04/19 19:37,"518 5th St, Portland, OR 97035" +189131,Wired Headphones,1,11.99,04/10/19 23:33,"573 4th St, Atlanta, GA 30301" +189132,AAA Batteries (4-pack),1,2.99,04/04/19 23:02,"75 Lakeview St, New York City, NY 10001" +189133,ThinkPad Laptop,1,999.99,04/10/19 19:18,"585 West St, New York City, NY 10001" +189134,AA Batteries (4-pack),1,3.84,04/30/19 01:08,"87 South St, Austin, TX 73301" +189134,Lightning Charging Cable,1,14.95,04/30/19 01:08,"87 South St, Austin, TX 73301" +189135,AA Batteries (4-pack),1,3.84,04/15/19 14:12,"902 South St, Dallas, TX 75001" +189136,Google Phone,1,600,04/22/19 19:38,"167 Elm St, New York City, NY 10001" +189137,Bose SoundSport Headphones,1,99.99,04/10/19 10:25,"219 8th St, San Francisco, CA 94016" +189138,27in 4K Gaming Monitor,1,389.99,04/17/19 14:47,"602 Jackson St, New York City, NY 10001" +189139,LG Washing Machine,1,600.0,04/30/19 13:42,"697 7th St, Atlanta, GA 30301" +189140,USB-C Charging Cable,2,11.95,04/06/19 01:13,"838 Hickory St, Los Angeles, CA 90001" +189141,USB-C Charging Cable,1,11.95,04/27/19 01:43,"622 Spruce St, San Francisco, CA 94016" +189142,LG Washing Machine,1,600.0,04/17/19 07:51,"421 Main St, San Francisco, CA 94016" +189143,AAA Batteries (4-pack),1,2.99,04/17/19 09:29,"403 5th St, Dallas, TX 75001" +189144,Bose SoundSport Headphones,1,99.99,04/04/19 18:34,"35 10th St, San Francisco, CA 94016" +189145,34in Ultrawide Monitor,1,379.99,04/28/19 11:02,"356 Main St, San Francisco, CA 94016" +189146,Apple Airpods Headphones,1,150,04/09/19 01:14,"754 13th St, Austin, TX 73301" +189147,27in FHD Monitor,1,149.99,04/17/19 11:42,"531 Adams St, San Francisco, CA 94016" +189148,AA Batteries (4-pack),2,3.84,04/23/19 09:24,"782 6th St, Atlanta, GA 30301" +189149,iPhone,1,700,04/01/19 15:21,"17 Wilson St, Los Angeles, CA 90001" +189150,Apple Airpods Headphones,1,150,04/25/19 16:51,"837 South St, San Francisco, CA 94016" +189151,iPhone,1,700,04/14/19 08:46,"339 Church St, Los Angeles, CA 90001" +189152,34in Ultrawide Monitor,1,379.99,04/05/19 12:41,"210 2nd St, Boston, MA 02215" +189153,USB-C Charging Cable,1,11.95,04/17/19 12:10,"154 Sunset St, Portland, OR 97035" +189154,34in Ultrawide Monitor,1,379.99,04/07/19 09:20,"777 9th St, Los Angeles, CA 90001" +189155,20in Monitor,1,109.99,04/30/19 12:54,"53 Washington St, Atlanta, GA 30301" +189156,USB-C Charging Cable,1,11.95,04/07/19 19:39,"339 7th St, Portland, OR 97035" +189157,Apple Airpods Headphones,1,150,04/13/19 07:48,"849 Park St, Boston, MA 02215" +189158,AA Batteries (4-pack),3,3.84,04/30/19 00:36,"543 5th St, Portland, OR 97035" +189159,AA Batteries (4-pack),1,3.84,04/10/19 14:26,"159 Lakeview St, Boston, MA 02215" +189159,AAA Batteries (4-pack),2,2.99,04/10/19 14:26,"159 Lakeview St, Boston, MA 02215" +189160,20in Monitor,1,109.99,04/21/19 19:34,"481 Jefferson St, San Francisco, CA 94016" +189161,USB-C Charging Cable,1,11.95,04/13/19 00:22,"219 10th St, San Francisco, CA 94016" +189162,34in Ultrawide Monitor,1,379.99,04/23/19 12:10,"703 Cedar St, San Francisco, CA 94016" +189163,Bose SoundSport Headphones,1,99.99,04/05/19 15:43,"832 Jackson St, New York City, NY 10001" +189164,Apple Airpods Headphones,1,150,04/22/19 20:31,"73 Jackson St, Los Angeles, CA 90001" +189165,27in 4K Gaming Monitor,1,389.99,04/22/19 20:41,"173 South St, Boston, MA 02215" +189166,27in FHD Monitor,1,149.99,04/13/19 13:15,"324 Madison St, Boston, MA 02215" +189167,Lightning Charging Cable,1,14.95,04/25/19 17:52,"751 Pine St, New York City, NY 10001" +189168,Wired Headphones,1,11.99,04/04/19 10:56,"599 14th St, Los Angeles, CA 90001" +189169,AAA Batteries (4-pack),2,2.99,04/11/19 16:05,"305 4th St, Dallas, TX 75001" +189170,27in 4K Gaming Monitor,1,389.99,04/28/19 17:25,"347 North St, San Francisco, CA 94016" +189171,ThinkPad Laptop,1,999.99,04/14/19 00:29,"232 Chestnut St, Austin, TX 73301" +189172,Apple Airpods Headphones,1,150,04/01/19 20:11,"962 Hickory St, Los Angeles, CA 90001" +189173,34in Ultrawide Monitor,1,379.99,04/10/19 10:53,"612 River St, San Francisco, CA 94016" +189174,USB-C Charging Cable,1,11.95,04/22/19 09:10,"201 North St, San Francisco, CA 94016" +189175,Macbook Pro Laptop,1,1700,04/22/19 21:46,"400 1st St, San Francisco, CA 94016" +189176,Lightning Charging Cable,1,14.95,04/10/19 14:02,"183 5th St, San Francisco, CA 94016" +189177,Lightning Charging Cable,1,14.95,04/05/19 18:57,"504 10th St, New York City, NY 10001" +189178,Apple Airpods Headphones,1,150,04/20/19 19:07,"417 Hickory St, Portland, OR 97035" +189179,Wired Headphones,1,11.99,04/29/19 10:02,"228 Cedar St, Seattle, WA 98101" +189180,Lightning Charging Cable,1,14.95,04/19/19 20:01,"620 Johnson St, San Francisco, CA 94016" +189181,Google Phone,1,600,04/20/19 07:53,"287 Wilson St, San Francisco, CA 94016" +189181,Bose SoundSport Headphones,1,99.99,04/20/19 07:53,"287 Wilson St, San Francisco, CA 94016" +189182,Wired Headphones,1,11.99,04/11/19 09:55,"671 7th St, Boston, MA 02215" +189183,27in FHD Monitor,1,149.99,05/01/19 01:52,"166 Park St, New York City, NY 10001" +189184,27in FHD Monitor,1,149.99,04/20/19 16:58,"156 Wilson St, San Francisco, CA 94016" +189185,Lightning Charging Cable,1,14.95,04/02/19 14:39,"627 Spruce St, New York City, NY 10001" +189186,Wired Headphones,1,11.99,04/16/19 03:03,"219 Maple St, San Francisco, CA 94016" +189187,AAA Batteries (4-pack),1,2.99,04/18/19 21:16,"593 Lincoln St, Austin, TX 73301" +189188,LG Washing Machine,1,600.0,04/24/19 19:41,"147 Hill St, Atlanta, GA 30301" +189189,Apple Airpods Headphones,1,150,04/20/19 02:00,"734 Hickory St, San Francisco, CA 94016" +189190,27in 4K Gaming Monitor,1,389.99,04/21/19 15:19,"890 Hill St, Austin, TX 73301" +189191,AAA Batteries (4-pack),1,2.99,04/30/19 11:18,"32 Adams St, Seattle, WA 98101" +189192,AA Batteries (4-pack),1,3.84,04/18/19 21:47,"200 Walnut St, Los Angeles, CA 90001" +189193,Apple Airpods Headphones,1,150,04/11/19 19:48,"461 Wilson St, Portland, OR 97035" +189194,Lightning Charging Cable,1,14.95,04/13/19 20:36,"438 14th St, Boston, MA 02215" +189195,Wired Headphones,1,11.99,04/30/19 17:35,"531 Maple St, Los Angeles, CA 90001" +189196,AA Batteries (4-pack),1,3.84,04/11/19 16:52,"206 Cedar St, Boston, MA 02215" +189197,AA Batteries (4-pack),1,3.84,04/19/19 21:38,"607 2nd St, Boston, MA 02215" +189198,ThinkPad Laptop,1,999.99,04/19/19 08:04,"560 11th St, New York City, NY 10001" +189199,Apple Airpods Headphones,1,150,04/17/19 20:59,"478 Park St, Seattle, WA 98101" +189200,Lightning Charging Cable,2,14.95,04/09/19 22:27,"483 Chestnut St, Seattle, WA 98101" +189201,Flatscreen TV,1,300,04/29/19 11:04,"100 Lincoln St, San Francisco, CA 94016" +189202,Lightning Charging Cable,1,14.95,04/07/19 01:11,"198 9th St, Boston, MA 02215" +189203,Vareebadd Phone,1,400,04/02/19 08:23,"672 9th St, Los Angeles, CA 90001" +189204,AA Batteries (4-pack),1,3.84,04/25/19 18:12,"745 Lincoln St, Boston, MA 02215" +189205,Bose SoundSport Headphones,1,99.99,04/07/19 22:26,"93 4th St, Portland, OR 97035" +189206,Flatscreen TV,1,300,04/27/19 21:31,"391 Wilson St, San Francisco, CA 94016" +189207,Bose SoundSport Headphones,1,99.99,04/12/19 13:38,"509 5th St, Austin, TX 73301" +189208,iPhone,1,700,04/27/19 21:33,"482 7th St, Portland, ME 04101" +189209,AA Batteries (4-pack),2,3.84,04/01/19 17:43,"122 North St, San Francisco, CA 94016" +189209,AAA Batteries (4-pack),1,2.99,04/01/19 17:43,"122 North St, San Francisco, CA 94016" +189210,USB-C Charging Cable,1,11.95,04/21/19 23:17,"641 Adams St, Los Angeles, CA 90001" +189211,AA Batteries (4-pack),1,3.84,04/19/19 22:14,"706 Wilson St, Los Angeles, CA 90001" +189212,34in Ultrawide Monitor,1,379.99,04/13/19 15:36,"206 North St, San Francisco, CA 94016" +189213,USB-C Charging Cable,1,11.95,04/14/19 12:29,"66 2nd St, San Francisco, CA 94016" +189214,Flatscreen TV,1,300,04/21/19 20:44,"786 8th St, Los Angeles, CA 90001" +189215,AAA Batteries (4-pack),1,2.99,04/11/19 17:49,"650 Jefferson St, San Francisco, CA 94016" +189216,Apple Airpods Headphones,1,150,04/06/19 14:20,"344 Highland St, San Francisco, CA 94016" +189217,USB-C Charging Cable,1,11.95,04/18/19 22:40,"462 11th St, Los Angeles, CA 90001" +189217,34in Ultrawide Monitor,1,379.99,04/18/19 22:40,"462 11th St, Los Angeles, CA 90001" +189218,AA Batteries (4-pack),1,3.84,04/25/19 17:39,"136 Elm St, Atlanta, GA 30301" +189219,USB-C Charging Cable,1,11.95,04/25/19 12:56,"391 West St, San Francisco, CA 94016" +189220,27in 4K Gaming Monitor,1,389.99,04/08/19 19:43,"271 North St, San Francisco, CA 94016" +189221,Lightning Charging Cable,1,14.95,04/14/19 13:25,"886 Park St, Austin, TX 73301" +189222,Vareebadd Phone,1,400,04/26/19 14:10,"990 Willow St, San Francisco, CA 94016" +189223,USB-C Charging Cable,1,11.95,04/11/19 14:15,"717 Park St, San Francisco, CA 94016" +189224,AA Batteries (4-pack),2,3.84,04/20/19 10:00,"774 7th St, San Francisco, CA 94016" +189225,Lightning Charging Cable,1,14.95,04/13/19 17:43,"961 Meadow St, Boston, MA 02215" +189226,AAA Batteries (4-pack),3,2.99,04/09/19 06:48,"465 Pine St, Los Angeles, CA 90001" +189227,Lightning Charging Cable,1,14.95,04/27/19 18:55,"41 Sunset St, San Francisco, CA 94016" +189228,USB-C Charging Cable,1,11.95,04/14/19 17:46,"629 Sunset St, Portland, OR 97035" +189229,Apple Airpods Headphones,1,150,04/19/19 16:30,"108 Madison St, San Francisco, CA 94016" +189230,27in 4K Gaming Monitor,1,389.99,04/06/19 07:30,"36 Highland St, San Francisco, CA 94016" +189231,USB-C Charging Cable,1,11.95,04/26/19 10:49,"817 Hill St, San Francisco, CA 94016" +189232,Bose SoundSport Headphones,1,99.99,04/21/19 07:43,"392 Hickory St, San Francisco, CA 94016" +189233,Apple Airpods Headphones,1,150,04/10/19 02:25,"860 Dogwood St, Seattle, WA 98101" +189234,Bose SoundSport Headphones,1,99.99,04/11/19 13:33,"950 14th St, Austin, TX 73301" +189235,Macbook Pro Laptop,1,1700,04/09/19 15:13,"748 South St, San Francisco, CA 94016" +189236,27in FHD Monitor,1,149.99,04/20/19 17:34,"517 Wilson St, Austin, TX 73301" +189237,Bose SoundSport Headphones,1,99.99,04/13/19 17:06,"40 Highland St, San Francisco, CA 94016" +189238,Lightning Charging Cable,1,14.95,04/10/19 10:15,"53 Hill St, San Francisco, CA 94016" +189239,Google Phone,1,600,04/10/19 18:52,"939 Park St, San Francisco, CA 94016" +189240,AAA Batteries (4-pack),1,2.99,04/29/19 19:55,"812 Willow St, Dallas, TX 75001" +189241,AAA Batteries (4-pack),1,2.99,04/18/19 22:19,"454 Cherry St, San Francisco, CA 94016" +189242,Bose SoundSport Headphones,1,99.99,04/16/19 18:32,"185 Pine St, Seattle, WA 98101" +189243,AA Batteries (4-pack),2,3.84,04/23/19 20:56,"451 River St, Atlanta, GA 30301" +189244,iPhone,1,700,04/07/19 17:22,"611 Ridge St, New York City, NY 10001" +189244,Lightning Charging Cable,1,14.95,04/07/19 17:22,"611 Ridge St, New York City, NY 10001" +189244,Wired Headphones,1,11.99,04/07/19 17:22,"611 Ridge St, New York City, NY 10001" +189245,Macbook Pro Laptop,1,1700,04/04/19 12:48,"644 Walnut St, San Francisco, CA 94016" +189246,AAA Batteries (4-pack),2,2.99,04/17/19 21:25,"241 Jefferson St, Seattle, WA 98101" +189246,USB-C Charging Cable,1,11.95,04/17/19 21:25,"241 Jefferson St, Seattle, WA 98101" +189247,Wired Headphones,1,11.99,04/12/19 10:41,"453 Church St, New York City, NY 10001" +189248,USB-C Charging Cable,1,11.95,04/24/19 19:27,"383 Pine St, Portland, OR 97035" +189249,Wired Headphones,1,11.99,04/25/19 16:46,"756 Washington St, Boston, MA 02215" +189250,AA Batteries (4-pack),1,3.84,04/19/19 15:24,"159 11th St, Los Angeles, CA 90001" +189251,USB-C Charging Cable,1,11.95,04/08/19 13:05,"999 Lincoln St, New York City, NY 10001" +189252,Lightning Charging Cable,1,14.95,04/25/19 23:12,"654 Church St, Boston, MA 02215" +189253,Wired Headphones,1,11.99,04/02/19 13:21,"60 Ridge St, San Francisco, CA 94016" +189254,AA Batteries (4-pack),2,3.84,04/18/19 16:02,"224 Hickory St, Los Angeles, CA 90001" +189255,AA Batteries (4-pack),2,3.84,04/03/19 11:52,"568 Johnson St, Los Angeles, CA 90001" +189256,AA Batteries (4-pack),2,3.84,04/25/19 11:11,"259 Madison St, New York City, NY 10001" +189257,AAA Batteries (4-pack),2,2.99,04/09/19 03:19,"630 Washington St, Seattle, WA 98101" +189258,Bose SoundSport Headphones,1,99.99,04/22/19 12:13,"497 Wilson St, San Francisco, CA 94016" +189259,Bose SoundSport Headphones,1,99.99,04/20/19 15:02,"180 Willow St, San Francisco, CA 94016" +189260,27in 4K Gaming Monitor,1,389.99,04/20/19 09:58,"531 2nd St, Boston, MA 02215" +189261,Flatscreen TV,1,300,04/05/19 12:20,"483 Johnson St, Dallas, TX 75001" +189262,USB-C Charging Cable,1,11.95,04/16/19 12:46,"939 10th St, Portland, OR 97035" +189263,Wired Headphones,1,11.99,04/02/19 08:48,"953 4th St, San Francisco, CA 94016" +189264,Lightning Charging Cable,1,14.95,04/06/19 21:18,"483 Cedar St, San Francisco, CA 94016" +189265,Lightning Charging Cable,1,14.95,04/03/19 17:29,"769 Wilson St, Seattle, WA 98101" +189266,AAA Batteries (4-pack),2,2.99,04/20/19 22:16,"873 Maple St, New York City, NY 10001" +189267,Macbook Pro Laptop,1,1700,04/07/19 13:58,"113 Wilson St, Boston, MA 02215" +189268,Lightning Charging Cable,1,14.95,04/02/19 14:12,"497 Pine St, New York City, NY 10001" +189269,Apple Airpods Headphones,1,150,04/05/19 19:31,"569 Cherry St, Boston, MA 02215" +189270,Bose SoundSport Headphones,1,99.99,04/27/19 09:47,"971 Pine St, Los Angeles, CA 90001" +189271,Wired Headphones,1,11.99,04/30/19 20:24,"997 Sunset St, Seattle, WA 98101" +189272,27in FHD Monitor,1,149.99,04/11/19 07:37,"306 West St, Los Angeles, CA 90001" +189273,Google Phone,1,600,04/10/19 21:05,"435 Chestnut St, San Francisco, CA 94016" +189274,Lightning Charging Cable,1,14.95,04/23/19 21:33,"565 Maple St, San Francisco, CA 94016" +189275,LG Dryer,1,600.0,04/08/19 08:15,"20 6th St, New York City, NY 10001" +189276,AA Batteries (4-pack),1,3.84,04/24/19 08:56,"711 Highland St, New York City, NY 10001" +189277,Lightning Charging Cable,1,14.95,04/02/19 20:26,"134 Elm St, San Francisco, CA 94016" +189278,Wired Headphones,1,11.99,04/16/19 12:25,"349 Lakeview St, Los Angeles, CA 90001" +189279,Lightning Charging Cable,1,14.95,04/29/19 07:45,"332 Elm St, Boston, MA 02215" +189280,Bose SoundSport Headphones,1,99.99,04/20/19 13:52,"26 Jackson St, Boston, MA 02215" +189281,AA Batteries (4-pack),1,3.84,04/18/19 22:53,"981 8th St, San Francisco, CA 94016" +189282,USB-C Charging Cable,1,11.95,04/25/19 16:49,"682 Spruce St, Boston, MA 02215" +189283,Wired Headphones,1,11.99,04/27/19 10:05,"861 Hill St, Boston, MA 02215" +189284,Lightning Charging Cable,1,14.95,04/11/19 11:17,"701 Wilson St, San Francisco, CA 94016" +189285,Wired Headphones,1,11.99,04/16/19 01:21,"690 River St, New York City, NY 10001" +189286,Apple Airpods Headphones,1,150,04/20/19 14:24,"1 Madison St, Boston, MA 02215" +189287,AA Batteries (4-pack),1,3.84,04/11/19 14:13,"851 North St, New York City, NY 10001" +189288,Wired Headphones,1,11.99,04/25/19 07:26,"266 Washington St, San Francisco, CA 94016" +189289,Wired Headphones,2,11.99,04/14/19 23:15,"4 Ridge St, San Francisco, CA 94016" +189290,20in Monitor,1,109.99,04/17/19 22:34,"126 Church St, San Francisco, CA 94016" +189291,Wired Headphones,1,11.99,04/02/19 08:44,"863 Adams St, New York City, NY 10001" +189292,AA Batteries (4-pack),1,3.84,04/04/19 20:45,"921 11th St, San Francisco, CA 94016" +189293,USB-C Charging Cable,1,11.95,04/19/19 13:40,"454 11th St, Dallas, TX 75001" +189294,34in Ultrawide Monitor,1,379.99,04/26/19 11:53,"272 Dogwood St, San Francisco, CA 94016" +189295,27in 4K Gaming Monitor,1,389.99,04/29/19 11:43,"347 Cedar St, San Francisco, CA 94016" +189296,Lightning Charging Cable,1,14.95,04/05/19 03:33,"569 Lake St, Portland, ME 04101" +189297,Bose SoundSport Headphones,1,99.99,04/04/19 11:33,"262 Sunset St, Atlanta, GA 30301" +189298,ThinkPad Laptop,1,999.99,04/26/19 12:04,"333 7th St, Los Angeles, CA 90001" +189299,AAA Batteries (4-pack),1,2.99,04/16/19 14:39,"782 Hickory St, San Francisco, CA 94016" +189300,27in FHD Monitor,1,149.99,04/06/19 16:18,"741 Cedar St, Portland, OR 97035" +189301,Apple Airpods Headphones,1,150,04/17/19 19:01,"883 Church St, Los Angeles, CA 90001" +189302,USB-C Charging Cable,1,11.95,04/21/19 19:07,"336 Pine St, San Francisco, CA 94016" +189303,ThinkPad Laptop,1,999.99,04/29/19 19:20,"28 2nd St, Boston, MA 02215" +189304,Google Phone,1,600,04/21/19 20:18,"636 North St, New York City, NY 10001" +189305,Macbook Pro Laptop,1,1700,04/05/19 23:42,"123 Madison St, Seattle, WA 98101" +189306,ThinkPad Laptop,1,999.99,04/25/19 21:41,"252 Hickory St, New York City, NY 10001" +189307,AA Batteries (4-pack),1,3.84,04/19/19 16:37,"152 Lincoln St, San Francisco, CA 94016" +189308,Lightning Charging Cable,1,14.95,04/17/19 17:37,"815 4th St, Atlanta, GA 30301" +189309,AAA Batteries (4-pack),1,2.99,04/07/19 13:16,"11 7th St, Portland, OR 97035" +189310,Bose SoundSport Headphones,1,99.99,04/05/19 17:09,"298 12th St, Portland, ME 04101" +189311,Apple Airpods Headphones,1,150,04/21/19 12:34,"838 Lake St, Atlanta, GA 30301" +189312,AAA Batteries (4-pack),1,2.99,04/30/19 14:55,"6 West St, Seattle, WA 98101" +189313,27in 4K Gaming Monitor,1,389.99,04/04/19 22:29,"779 9th St, San Francisco, CA 94016" +189314,Google Phone,1,600,04/02/19 07:38,"321 9th St, San Francisco, CA 94016" +189315,27in FHD Monitor,1,149.99,04/20/19 05:18,"603 9th St, Portland, OR 97035" +189316,Bose SoundSport Headphones,1,99.99,04/09/19 08:09,"89 North St, Portland, ME 04101" +189317,Lightning Charging Cable,1,14.95,04/16/19 19:25,"288 11th St, Atlanta, GA 30301" +189318,AAA Batteries (4-pack),4,2.99,04/29/19 22:55,"644 12th St, San Francisco, CA 94016" +189319,Lightning Charging Cable,1,14.95,04/15/19 20:02,"263 Adams St, Seattle, WA 98101" +189320,AA Batteries (4-pack),2,3.84,04/28/19 08:57,"948 Elm St, San Francisco, CA 94016" +189321,AAA Batteries (4-pack),2,2.99,04/09/19 09:27,"522 Highland St, Boston, MA 02215" +189322,AA Batteries (4-pack),1,3.84,04/14/19 11:33,"197 8th St, New York City, NY 10001" +189323,Bose SoundSport Headphones,1,99.99,04/22/19 05:30,"379 Sunset St, Seattle, WA 98101" +189324,AAA Batteries (4-pack),1,2.99,04/01/19 13:02,"441 Highland St, New York City, NY 10001" +189325,Wired Headphones,1,11.99,04/19/19 12:19,"327 Willow St, Atlanta, GA 30301" +189326,Flatscreen TV,1,300,04/27/19 11:46,"972 9th St, Atlanta, GA 30301" +189327,USB-C Charging Cable,1,11.95,04/13/19 14:24,"177 Forest St, San Francisco, CA 94016" +189328,20in Monitor,1,109.99,04/28/19 12:16,"262 4th St, San Francisco, CA 94016" +189329,Bose SoundSport Headphones,1,99.99,04/05/19 21:38,"154 6th St, Boston, MA 02215" +189330,AA Batteries (4-pack),2,3.84,04/12/19 11:49,"709 Adams St, Los Angeles, CA 90001" +189331,Lightning Charging Cable,1,14.95,04/19/19 18:57,"999 5th St, Dallas, TX 75001" +189332,Lightning Charging Cable,1,14.95,04/07/19 22:48,"376 Wilson St, San Francisco, CA 94016" +189333,AAA Batteries (4-pack),3,2.99,04/20/19 09:01,"198 7th St, Dallas, TX 75001" +189334,AAA Batteries (4-pack),1,2.99,04/15/19 09:47,"435 Sunset St, Boston, MA 02215" +189335,USB-C Charging Cable,1,11.95,04/21/19 15:41,"160 Hickory St, San Francisco, CA 94016" +189336,Lightning Charging Cable,1,14.95,04/14/19 17:45,"798 West St, Los Angeles, CA 90001" +189337,iPhone,1,700,04/30/19 09:12,"562 13th St, San Francisco, CA 94016" +189338,Wired Headphones,1,11.99,04/30/19 20:55,"775 Chestnut St, Los Angeles, CA 90001" +189339,27in FHD Monitor,1,149.99,04/04/19 12:24,"381 Church St, Portland, OR 97035" +189340,USB-C Charging Cable,1,11.95,04/24/19 20:38,"76 South St, Austin, TX 73301" +189341,USB-C Charging Cable,1,11.95,04/29/19 09:19,"272 Maple St, Portland, ME 04101" +189342,Wired Headphones,1,11.99,04/14/19 18:07,"661 Meadow St, Los Angeles, CA 90001" +189343,USB-C Charging Cable,1,11.95,04/13/19 21:13,"432 12th St, San Francisco, CA 94016" +189344,27in FHD Monitor,1,149.99,04/11/19 08:56,"447 10th St, Austin, TX 73301" +189345,20in Monitor,1,109.99,04/19/19 14:14,"781 Main St, San Francisco, CA 94016" +189346,Lightning Charging Cable,1,14.95,04/30/19 10:03,"107 5th St, San Francisco, CA 94016" +189347,Wired Headphones,1,11.99,04/23/19 17:15,"452 Cherry St, Los Angeles, CA 90001" +189348,AAA Batteries (4-pack),1,2.99,04/25/19 18:16,"775 Lake St, San Francisco, CA 94016" +189349,iPhone,1,700,04/23/19 10:07,"57 Lakeview St, Portland, OR 97035" +189350,Bose SoundSport Headphones,1,99.99,04/28/19 22:41,"960 Church St, Seattle, WA 98101" +189351,iPhone,1,700,04/22/19 22:41,"405 Cedar St, Los Angeles, CA 90001" +189352,Wired Headphones,1,11.99,04/16/19 06:18,"971 South St, Atlanta, GA 30301" +189353,Macbook Pro Laptop,1,1700,04/12/19 05:18,"439 10th St, New York City, NY 10001" +189354,AA Batteries (4-pack),1,3.84,04/30/19 19:43,"168 8th St, Seattle, WA 98101" +189355,Lightning Charging Cable,1,14.95,04/28/19 10:23,"758 Johnson St, San Francisco, CA 94016" +189356,AAA Batteries (4-pack),1,2.99,04/13/19 22:27,"292 Main St, San Francisco, CA 94016" +189357,USB-C Charging Cable,1,11.95,04/03/19 19:44,"819 Pine St, Dallas, TX 75001" +189358,iPhone,1,700,04/20/19 17:24,"551 8th St, Portland, OR 97035" +189359,AA Batteries (4-pack),1,3.84,04/05/19 20:23,"766 Hill St, San Francisco, CA 94016" +189360,Vareebadd Phone,1,400,04/11/19 20:49,"76 13th St, Portland, OR 97035" +189361,USB-C Charging Cable,1,11.95,04/21/19 18:38,"45 1st St, Los Angeles, CA 90001" +189362,Wired Headphones,1,11.99,04/29/19 20:52,"109 Center St, San Francisco, CA 94016" +189363,iPhone,1,700,04/10/19 18:18,"384 Washington St, San Francisco, CA 94016" +189363,Lightning Charging Cable,1,14.95,04/10/19 18:18,"384 Washington St, San Francisco, CA 94016" +189364,iPhone,1,700,04/26/19 18:10,"610 12th St, San Francisco, CA 94016" +189365,AAA Batteries (4-pack),1,2.99,04/22/19 22:13,"312 11th St, Portland, OR 97035" +189366,Apple Airpods Headphones,1,150,04/11/19 10:05,"893 Lakeview St, Atlanta, GA 30301" +189367,AAA Batteries (4-pack),1,2.99,04/19/19 19:51,"427 1st St, Dallas, TX 75001" +189368,USB-C Charging Cable,1,11.95,04/01/19 12:08,"678 Chestnut St, San Francisco, CA 94016" +189369,27in FHD Monitor,1,149.99,04/09/19 07:24,"568 6th St, New York City, NY 10001" +189370,Google Phone,1,600,04/25/19 13:13,"525 Pine St, Atlanta, GA 30301" +189371,AA Batteries (4-pack),1,3.84,04/14/19 16:58,"98 1st St, Boston, MA 02215" +189372,Google Phone,1,600,04/27/19 22:36,"810 8th St, San Francisco, CA 94016" +189372,Wired Headphones,1,11.99,04/27/19 22:36,"810 8th St, San Francisco, CA 94016" +189373,20in Monitor,1,109.99,04/14/19 05:19,"332 1st St, New York City, NY 10001" +189374,Flatscreen TV,1,300,04/15/19 08:25,"609 9th St, Los Angeles, CA 90001" +189375,AA Batteries (4-pack),2,3.84,04/18/19 19:54,"615 Park St, Austin, TX 73301" +189376,Macbook Pro Laptop,1,1700,04/17/19 00:06,"69 Wilson St, San Francisco, CA 94016" +189377,Lightning Charging Cable,1,14.95,04/18/19 15:58,"468 6th St, Seattle, WA 98101" +189378,Lightning Charging Cable,1,14.95,04/06/19 09:00,"33 Willow St, Boston, MA 02215" +189379,27in FHD Monitor,1,149.99,04/18/19 10:23,"867 West St, Los Angeles, CA 90001" +189380,AA Batteries (4-pack),1,3.84,04/02/19 10:03,"731 4th St, Dallas, TX 75001" +189381,Wired Headphones,1,11.99,04/26/19 12:24,"994 West St, New York City, NY 10001" +189382,Lightning Charging Cable,1,14.95,04/30/19 09:26,"219 Spruce St, Boston, MA 02215" +189383,USB-C Charging Cable,1,11.95,04/09/19 21:07,"480 West St, New York City, NY 10001" +189384,USB-C Charging Cable,1,11.95,04/01/19 21:54,"267 8th St, Boston, MA 02215" +189385,20in Monitor,1,109.99,04/19/19 20:54,"986 West St, Atlanta, GA 30301" +189386,Bose SoundSport Headphones,1,99.99,04/15/19 17:40,"626 North St, Portland, OR 97035" +189387,20in Monitor,1,109.99,04/21/19 22:07,"24 9th St, Austin, TX 73301" +189388,Bose SoundSport Headphones,1,99.99,04/24/19 14:23,"690 6th St, New York City, NY 10001" +189389,Wired Headphones,1,11.99,04/24/19 08:45,"484 9th St, Dallas, TX 75001" +189390,27in FHD Monitor,1,149.99,04/04/19 21:31,"644 Washington St, Dallas, TX 75001" +189391,Wired Headphones,1,11.99,04/21/19 10:55,"59 Spruce St, Los Angeles, CA 90001" +189392,27in FHD Monitor,1,149.99,04/04/19 20:00,"685 Ridge St, Los Angeles, CA 90001" +189392,20in Monitor,1,109.99,04/04/19 20:00,"685 Ridge St, Los Angeles, CA 90001" +189393,iPhone,1,700,04/06/19 16:54,"511 9th St, San Francisco, CA 94016" +189393,Lightning Charging Cable,1,14.95,04/06/19 16:54,"511 9th St, San Francisco, CA 94016" +189393,Wired Headphones,2,11.99,04/06/19 16:54,"511 9th St, San Francisco, CA 94016" +189394,Lightning Charging Cable,1,14.95,04/20/19 10:16,"274 11th St, San Francisco, CA 94016" +189395,27in FHD Monitor,1,149.99,04/27/19 16:08,"358 Elm St, San Francisco, CA 94016" +189396,Wired Headphones,1,11.99,04/28/19 19:00,"275 Maple St, Dallas, TX 75001" +189397,AA Batteries (4-pack),3,3.84,04/01/19 13:18,"183 9th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +189398,AA Batteries (4-pack),1,3.84,04/01/19 09:59,"853 6th St, New York City, NY 10001" +189399,AA Batteries (4-pack),2,3.84,04/23/19 10:12,"179 12th St, Los Angeles, CA 90001" +189400,Bose SoundSport Headphones,1,99.99,04/18/19 13:35,"764 2nd St, Los Angeles, CA 90001" +189401,AA Batteries (4-pack),2,3.84,04/27/19 15:56,"741 Lincoln St, Los Angeles, CA 90001" +189402,Lightning Charging Cable,1,14.95,04/11/19 21:43,"874 Lincoln St, San Francisco, CA 94016" +189403,27in FHD Monitor,1,149.99,04/04/19 07:06,"463 Main St, Austin, TX 73301" +189404,Apple Airpods Headphones,1,150,04/07/19 19:10,"143 Johnson St, Dallas, TX 75001" +189405,USB-C Charging Cable,1,11.95,04/01/19 21:00,"122 Hickory St, Los Angeles, CA 90001" +189406,Lightning Charging Cable,1,14.95,04/29/19 16:14,"894 Jackson St, Dallas, TX 75001" +189407,Flatscreen TV,1,300,04/28/19 11:38,"43 Sunset St, Boston, MA 02215" +189408,Bose SoundSport Headphones,1,99.99,04/02/19 14:52,"67 Madison St, San Francisco, CA 94016" +189409,Lightning Charging Cable,1,14.95,04/20/19 04:28,"534 Maple St, Seattle, WA 98101" +189410,Bose SoundSport Headphones,1,99.99,04/20/19 17:00,"995 Wilson St, Portland, OR 97035" +189411,Flatscreen TV,1,300,04/03/19 21:19,"297 Meadow St, San Francisco, CA 94016" +189412,Flatscreen TV,1,300,04/16/19 17:06,"456 Willow St, New York City, NY 10001" +189413,27in FHD Monitor,1,149.99,04/25/19 23:28,"733 8th St, San Francisco, CA 94016" +189414,AA Batteries (4-pack),1,3.84,04/29/19 11:13,"399 11th St, San Francisco, CA 94016" +189415,Wired Headphones,1,11.99,04/09/19 18:46,"931 Sunset St, San Francisco, CA 94016" +189416,AAA Batteries (4-pack),2,2.99,04/01/19 13:37,"127 South St, Los Angeles, CA 90001" +189417,Flatscreen TV,1,300,04/23/19 16:04,"513 12th St, Boston, MA 02215" +189418,Wired Headphones,1,11.99,04/23/19 21:58,"25 Cherry St, Boston, MA 02215" +189419,LG Dryer,1,600.0,04/25/19 09:28,"33 12th St, New York City, NY 10001" +189420,AAA Batteries (4-pack),2,2.99,04/09/19 15:11,"469 6th St, Dallas, TX 75001" +189421,Lightning Charging Cable,1,14.95,04/27/19 19:54,"829 5th St, Seattle, WA 98101" +189422,iPhone,1,700,04/25/19 00:53,"368 Highland St, San Francisco, CA 94016" +189423,Bose SoundSport Headphones,1,99.99,04/10/19 07:36,"531 Walnut St, New York City, NY 10001" +189424,27in FHD Monitor,1,149.99,04/07/19 12:42,"564 South St, Dallas, TX 75001" +189425,USB-C Charging Cable,1,11.95,04/01/19 11:54,"343 Elm St, Los Angeles, CA 90001" +189426,USB-C Charging Cable,1,11.95,04/11/19 12:31,"3 Washington St, Austin, TX 73301" +189427,Lightning Charging Cable,1,14.95,04/14/19 09:09,"610 Church St, New York City, NY 10001" +189428,AAA Batteries (4-pack),1,2.99,04/24/19 00:21,"816 West St, Boston, MA 02215" +189429,AA Batteries (4-pack),1,3.84,04/10/19 10:38,"890 Cedar St, Seattle, WA 98101" +189430,Lightning Charging Cable,1,14.95,04/11/19 00:20,"50 Washington St, Seattle, WA 98101" +189431,AAA Batteries (4-pack),1,2.99,04/05/19 15:21,"438 Church St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +189432,Google Phone,1,600,04/03/19 18:06,"499 Willow St, New York City, NY 10001" +189432,USB-C Charging Cable,1,11.95,04/03/19 18:06,"499 Willow St, New York City, NY 10001" +189433,USB-C Charging Cable,1,11.95,04/27/19 07:11,"873 Center St, Los Angeles, CA 90001" +189434,USB-C Charging Cable,1,11.95,04/17/19 16:31,"669 Lincoln St, New York City, NY 10001" +189435,Wired Headphones,1,11.99,04/10/19 13:01,"553 4th St, Los Angeles, CA 90001" +189436,Apple Airpods Headphones,1,150,04/25/19 17:03,"368 6th St, Boston, MA 02215" +189437,Wired Headphones,1,11.99,04/25/19 13:17,"417 Wilson St, Los Angeles, CA 90001" +189438,Vareebadd Phone,1,400,04/22/19 22:58,"67 2nd St, Dallas, TX 75001" +189438,USB-C Charging Cable,1,11.95,04/22/19 22:58,"67 2nd St, Dallas, TX 75001" +189439,iPhone,1,700,04/23/19 14:28,"88 Lake St, New York City, NY 10001" +189440,Wired Headphones,1,11.99,04/20/19 11:19,"926 Center St, Los Angeles, CA 90001" +189441,USB-C Charging Cable,1,11.95,04/13/19 14:18,"580 Hill St, San Francisco, CA 94016" +189442,27in 4K Gaming Monitor,1,389.99,04/16/19 12:07,"182 Church St, San Francisco, CA 94016" +189443,AAA Batteries (4-pack),1,2.99,04/08/19 23:20,"373 Johnson St, San Francisco, CA 94016" +189444,LG Dryer,1,600.0,04/13/19 11:31,"538 Spruce St, San Francisco, CA 94016" +189445,Google Phone,1,600,04/01/19 23:08,"888 Pine St, Dallas, TX 75001" +189445,USB-C Charging Cable,1,11.95,04/01/19 23:08,"888 Pine St, Dallas, TX 75001" +189446,27in FHD Monitor,1,149.99,04/01/19 14:32,"677 11th St, Los Angeles, CA 90001" +189447,Lightning Charging Cable,1,14.95,04/12/19 21:23,"524 South St, Dallas, TX 75001" +189448,Bose SoundSport Headphones,1,99.99,04/28/19 20:46,"658 9th St, Los Angeles, CA 90001" +189449,AAA Batteries (4-pack),2,2.99,04/19/19 10:19,"290 Highland St, San Francisco, CA 94016" +189450,Lightning Charging Cable,1,14.95,04/22/19 06:08,"141 South St, Seattle, WA 98101" +189451,Bose SoundSport Headphones,1,99.99,04/05/19 14:25,"758 12th St, Austin, TX 73301" +189452,Wired Headphones,1,11.99,04/11/19 21:20,"110 Hickory St, New York City, NY 10001" +189453,27in FHD Monitor,1,149.99,04/18/19 23:36,"885 13th St, Atlanta, GA 30301" +189454,AAA Batteries (4-pack),1,2.99,04/16/19 15:34,"966 Jackson St, New York City, NY 10001" +189455,AA Batteries (4-pack),2,3.84,04/09/19 17:22,"530 6th St, San Francisco, CA 94016" +189456,USB-C Charging Cable,1,11.95,04/30/19 10:12,"632 14th St, New York City, NY 10001" +189457,Lightning Charging Cable,1,14.95,04/18/19 11:18,"796 River St, Los Angeles, CA 90001" +189458,AA Batteries (4-pack),2,3.84,04/21/19 20:18,"856 South St, Boston, MA 02215" +189459,27in FHD Monitor,1,149.99,04/24/19 18:36,"809 10th St, Dallas, TX 75001" +189460,USB-C Charging Cable,1,11.95,04/13/19 14:14,"759 Lake St, Boston, MA 02215" +189461,AAA Batteries (4-pack),2,2.99,04/12/19 20:04,"696 Main St, Atlanta, GA 30301" +189462,AAA Batteries (4-pack),1,2.99,04/11/19 18:28,"708 7th St, New York City, NY 10001" +189463,27in 4K Gaming Monitor,1,389.99,04/20/19 11:29,"892 River St, San Francisco, CA 94016" +189464,AA Batteries (4-pack),1,3.84,04/15/19 21:40,"124 11th St, Atlanta, GA 30301" +189465,Lightning Charging Cable,1,14.95,04/24/19 16:22,"17 Washington St, Los Angeles, CA 90001" +189466,27in 4K Gaming Monitor,1,389.99,04/12/19 23:15,"813 Cedar St, San Francisco, CA 94016" +189467,USB-C Charging Cable,1,11.95,04/08/19 16:59,"137 North St, New York City, NY 10001" +189468,AAA Batteries (4-pack),1,2.99,04/19/19 20:37,"368 1st St, Atlanta, GA 30301" +189469,Bose SoundSport Headphones,1,99.99,04/29/19 18:22,"863 7th St, San Francisco, CA 94016" +189470,Apple Airpods Headphones,1,150,04/10/19 11:16,"706 Highland St, Seattle, WA 98101" +189471,USB-C Charging Cable,1,11.95,04/30/19 11:51,"691 Adams St, Boston, MA 02215" +189472,Google Phone,1,600,04/28/19 22:36,"609 Maple St, Portland, OR 97035" +189473,AA Batteries (4-pack),2,3.84,04/01/19 10:59,"424 Pine St, Portland, OR 97035" +189474,Bose SoundSport Headphones,1,99.99,04/23/19 09:14,"848 Johnson St, Portland, OR 97035" +189475,AA Batteries (4-pack),2,3.84,04/04/19 20:25,"155 Walnut St, Portland, OR 97035" +189476,Vareebadd Phone,1,400,04/22/19 20:47,"49 Hickory St, Dallas, TX 75001" +189476,USB-C Charging Cable,1,11.95,04/22/19 20:47,"49 Hickory St, Dallas, TX 75001" +189477,AAA Batteries (4-pack),2,2.99,04/23/19 14:08,"836 Johnson St, New York City, NY 10001" +189478,Macbook Pro Laptop,1,1700,04/04/19 14:23,"680 1st St, New York City, NY 10001" +189479,Lightning Charging Cable,1,14.95,04/29/19 12:55,"373 South St, Los Angeles, CA 90001" +189480,27in 4K Gaming Monitor,1,389.99,04/25/19 17:31,"157 Park St, Atlanta, GA 30301" +189481,USB-C Charging Cable,1,11.95,04/05/19 12:30,"796 4th St, Seattle, WA 98101" +189482,Wired Headphones,2,11.99,04/04/19 21:21,"231 14th St, Boston, MA 02215" +189483,20in Monitor,1,109.99,04/19/19 15:58,"121 10th St, San Francisco, CA 94016" +189484,AA Batteries (4-pack),1,3.84,04/10/19 21:05,"621 Cherry St, Dallas, TX 75001" +189485,Google Phone,1,600,04/19/19 14:22,"179 Main St, San Francisco, CA 94016" +189486,USB-C Charging Cable,1,11.95,04/17/19 16:40,"685 Maple St, Seattle, WA 98101" +189487,AA Batteries (4-pack),3,3.84,04/30/19 20:19,"619 14th St, Seattle, WA 98101" +189488,Bose SoundSport Headphones,1,99.99,04/01/19 22:26,"746 Wilson St, Austin, TX 73301" +189489,27in FHD Monitor,1,149.99,04/12/19 20:38,"328 Main St, New York City, NY 10001" +189490,Lightning Charging Cable,1,14.95,04/14/19 07:17,"711 12th St, San Francisco, CA 94016" +189491,AA Batteries (4-pack),1,3.84,04/09/19 16:10,"336 Lake St, Seattle, WA 98101" +189492,Lightning Charging Cable,1,14.95,04/11/19 21:14,"617 Park St, San Francisco, CA 94016" +189493,20in Monitor,1,109.99,04/04/19 20:48,"156 Adams St, San Francisco, CA 94016" +189494,iPhone,1,700,04/08/19 09:33,"614 Washington St, Los Angeles, CA 90001" +189494,Lightning Charging Cable,1,14.95,04/08/19 09:33,"614 Washington St, Los Angeles, CA 90001" +189495,Apple Airpods Headphones,1,150,04/07/19 17:05,"289 Highland St, San Francisco, CA 94016" +189496,Apple Airpods Headphones,1,150,04/23/19 21:16,"999 2nd St, Boston, MA 02215" +189497,Bose SoundSport Headphones,1,99.99,04/08/19 12:06,"750 River St, San Francisco, CA 94016" +189498,Apple Airpods Headphones,1,150,04/14/19 18:06,"278 Park St, San Francisco, CA 94016" +189499,27in FHD Monitor,1,149.99,04/16/19 22:15,"546 6th St, Atlanta, GA 30301" +189500,AA Batteries (4-pack),1,3.84,04/01/19 18:55,"619 Hickory St, New York City, NY 10001" +189501,Bose SoundSport Headphones,1,99.99,04/26/19 13:01,"728 Sunset St, Los Angeles, CA 90001" +189502,AAA Batteries (4-pack),1,2.99,04/04/19 20:47,"500 Lincoln St, New York City, NY 10001" +189503,Lightning Charging Cable,1,14.95,04/12/19 11:06,"784 Highland St, San Francisco, CA 94016" +189504,USB-C Charging Cable,1,11.95,04/10/19 23:01,"576 Washington St, New York City, NY 10001" +189505,AAA Batteries (4-pack),2,2.99,04/13/19 18:26,"233 14th St, Los Angeles, CA 90001" +189506,Lightning Charging Cable,1,14.95,04/22/19 23:47,"16 Cedar St, Portland, ME 04101" +189507,27in 4K Gaming Monitor,1,389.99,04/30/19 18:35,"260 Elm St, Atlanta, GA 30301" +189508,Lightning Charging Cable,1,14.95,04/22/19 09:10,"376 7th St, Los Angeles, CA 90001" +189509,27in FHD Monitor,1,149.99,04/15/19 09:23,"151 Dogwood St, Los Angeles, CA 90001" +189510,AAA Batteries (4-pack),1,2.99,04/11/19 18:58,"753 Elm St, Los Angeles, CA 90001" +189511,27in 4K Gaming Monitor,1,389.99,04/06/19 17:16,"455 Spruce St, Portland, ME 04101" +189512,Macbook Pro Laptop,1,1700,04/27/19 09:57,"474 Madison St, San Francisco, CA 94016" +189513,AA Batteries (4-pack),1,3.84,04/29/19 12:44,"360 2nd St, Boston, MA 02215" +189514,Wired Headphones,1,11.99,04/18/19 12:36,"119 Cherry St, New York City, NY 10001" +189515,USB-C Charging Cable,1,11.95,04/22/19 16:19,"20 Ridge St, Dallas, TX 75001" +189516,USB-C Charging Cable,1,11.95,04/28/19 15:19,"547 Lincoln St, Los Angeles, CA 90001" +189517,34in Ultrawide Monitor,1,379.99,04/08/19 13:34,"523 Elm St, New York City, NY 10001" +189518,AAA Batteries (4-pack),2,2.99,04/22/19 14:17,"273 Jackson St, Boston, MA 02215" +189519,Lightning Charging Cable,1,14.95,04/25/19 19:08,"668 Lakeview St, San Francisco, CA 94016" +189520,Wired Headphones,1,11.99,04/27/19 22:43,"891 Lincoln St, San Francisco, CA 94016" +189521,Lightning Charging Cable,2,14.95,04/08/19 21:03,"540 Chestnut St, Dallas, TX 75001" +189522,Bose SoundSport Headphones,1,99.99,04/08/19 10:14,"305 Walnut St, Dallas, TX 75001" +189523,iPhone,1,700,04/28/19 10:13,"242 Sunset St, New York City, NY 10001" +189524,20in Monitor,1,109.99,04/15/19 01:22,"784 Highland St, San Francisco, CA 94016" +189525,iPhone,1,700,04/18/19 15:18,"303 River St, San Francisco, CA 94016" +189526,USB-C Charging Cable,1,11.95,04/22/19 15:51,"765 Dogwood St, Boston, MA 02215" +189526,27in FHD Monitor,1,149.99,04/22/19 15:51,"765 Dogwood St, Boston, MA 02215" +189527,AAA Batteries (4-pack),1,2.99,04/06/19 08:30,"939 Jefferson St, Los Angeles, CA 90001" +189528,AAA Batteries (4-pack),2,2.99,04/26/19 17:41,"137 Sunset St, San Francisco, CA 94016" +189529,Lightning Charging Cable,1,14.95,04/10/19 12:07,"640 11th St, San Francisco, CA 94016" +189530,AA Batteries (4-pack),1,3.84,04/23/19 22:27,"295 Dogwood St, Boston, MA 02215" +189531,AA Batteries (4-pack),1,3.84,04/02/19 14:24,"430 Main St, Dallas, TX 75001" +189531,27in 4K Gaming Monitor,1,389.99,04/02/19 14:24,"430 Main St, Dallas, TX 75001" +189532,Wired Headphones,1,11.99,04/27/19 19:34,"752 7th St, Seattle, WA 98101" +189533,USB-C Charging Cable,1,11.95,04/27/19 12:41,"553 10th St, Seattle, WA 98101" +189534,AA Batteries (4-pack),1,3.84,04/16/19 18:55,"538 5th St, Atlanta, GA 30301" +189535,Apple Airpods Headphones,1,150,04/01/19 18:44,"233 2nd St, Portland, OR 97035" +189536,AAA Batteries (4-pack),2,2.99,04/14/19 18:13,"800 14th St, Seattle, WA 98101" +189537,Wired Headphones,1,11.99,04/15/19 18:31,"426 Chestnut St, Atlanta, GA 30301" +189538,Apple Airpods Headphones,1,150,04/13/19 16:11,"196 5th St, New York City, NY 10001" +189539,Lightning Charging Cable,1,14.95,04/22/19 09:43,"195 South St, Los Angeles, CA 90001" +189540,AA Batteries (4-pack),2,3.84,04/20/19 19:16,"542 Ridge St, San Francisco, CA 94016" +189541,AA Batteries (4-pack),1,3.84,04/26/19 13:41,"447 Willow St, Los Angeles, CA 90001" +189542,34in Ultrawide Monitor,1,379.99,04/02/19 10:18,"17 North St, Los Angeles, CA 90001" +189543,Apple Airpods Headphones,1,150,04/02/19 16:44,"77 8th St, Los Angeles, CA 90001" +189544,USB-C Charging Cable,1,11.95,04/14/19 13:56,"57 Center St, Los Angeles, CA 90001" +189545,iPhone,1,700,04/12/19 23:31,"832 Main St, San Francisco, CA 94016" +189545,Lightning Charging Cable,1,14.95,04/12/19 23:31,"832 Main St, San Francisco, CA 94016" +189546,Lightning Charging Cable,1,14.95,04/21/19 13:24,"655 Dogwood St, Los Angeles, CA 90001" +189547,AAA Batteries (4-pack),1,2.99,04/26/19 17:07,"799 Cedar St, Seattle, WA 98101" +189548,Apple Airpods Headphones,1,150,04/20/19 17:52,"371 Ridge St, Dallas, TX 75001" +189548,AA Batteries (4-pack),1,3.84,04/20/19 17:52,"371 Ridge St, Dallas, TX 75001" +189549,AAA Batteries (4-pack),4,2.99,04/06/19 11:38,"952 Adams St, Atlanta, GA 30301" +189550,Bose SoundSport Headphones,1,99.99,04/02/19 05:21,"330 Lake St, Portland, OR 97035" +189551,USB-C Charging Cable,1,11.95,04/21/19 21:03,"96 14th St, Atlanta, GA 30301" +189552,Lightning Charging Cable,2,14.95,04/09/19 15:08,"388 Hickory St, Atlanta, GA 30301" +189553,AA Batteries (4-pack),1,3.84,04/17/19 16:48,"969 River St, Boston, MA 02215" +189554,27in 4K Gaming Monitor,1,389.99,04/06/19 10:09,"909 Spruce St, Los Angeles, CA 90001" +189555,iPhone,1,700,04/27/19 12:31,"576 West St, New York City, NY 10001" +189556,ThinkPad Laptop,1,999.99,04/14/19 02:53,"522 12th St, San Francisco, CA 94016" +189557,AAA Batteries (4-pack),3,2.99,04/13/19 20:38,"694 Forest St, Los Angeles, CA 90001" +189558,Wired Headphones,1,11.99,04/26/19 13:37,"746 11th St, Boston, MA 02215" +189559,Bose SoundSport Headphones,1,99.99,04/11/19 15:58,"547 12th St, San Francisco, CA 94016" +189560,Flatscreen TV,1,300,04/05/19 12:00,"14 Sunset St, San Francisco, CA 94016" +189561,Bose SoundSport Headphones,1,99.99,04/22/19 00:48,"381 Johnson St, New York City, NY 10001" +189562,AAA Batteries (4-pack),1,2.99,04/13/19 14:09,"916 Adams St, Austin, TX 73301" +189563,USB-C Charging Cable,1,11.95,04/29/19 16:00,"845 Willow St, San Francisco, CA 94016" +189564,Google Phone,1,600,04/15/19 21:53,"350 Lakeview St, Boston, MA 02215" +189565,Apple Airpods Headphones,1,150,04/07/19 11:20,"85 Pine St, Seattle, WA 98101" +189566,USB-C Charging Cable,1,11.95,04/04/19 21:36,"726 West St, San Francisco, CA 94016" +189567,USB-C Charging Cable,1,11.95,04/26/19 12:08,"162 Church St, Seattle, WA 98101" +189568,Bose SoundSport Headphones,1,99.99,04/04/19 17:14,"281 Lakeview St, San Francisco, CA 94016" +189569,34in Ultrawide Monitor,1,379.99,04/08/19 23:22,"566 Madison St, San Francisco, CA 94016" +189570,27in 4K Gaming Monitor,1,389.99,04/28/19 17:36,"638 Ridge St, Dallas, TX 75001" +189571,Macbook Pro Laptop,1,1700,04/24/19 13:51,"570 Cedar St, San Francisco, CA 94016" +189572,AA Batteries (4-pack),1,3.84,04/15/19 19:45,"560 Main St, New York City, NY 10001" +189573,Apple Airpods Headphones,1,150,04/12/19 16:32,"692 Johnson St, Austin, TX 73301" +189574,Lightning Charging Cable,1,14.95,04/17/19 15:12,"830 Jefferson St, San Francisco, CA 94016" +189575,Bose SoundSport Headphones,1,99.99,04/23/19 13:18,"794 14th St, Atlanta, GA 30301" +189576,AA Batteries (4-pack),3,3.84,04/16/19 17:08,"107 Hickory St, San Francisco, CA 94016" +189577,AAA Batteries (4-pack),1,2.99,04/07/19 19:27,"960 Dogwood St, Atlanta, GA 30301" +189578,Bose SoundSport Headphones,1,99.99,04/04/19 09:39,"998 Madison St, San Francisco, CA 94016" +189579,Wired Headphones,1,11.99,04/23/19 12:14,"843 13th St, San Francisco, CA 94016" +189580,Lightning Charging Cable,1,14.95,04/28/19 13:08,"339 Center St, Seattle, WA 98101" +189581,Apple Airpods Headphones,1,150,04/02/19 11:34,"204 Wilson St, San Francisco, CA 94016" +189582,Lightning Charging Cable,1,14.95,04/16/19 18:28,"4 Elm St, San Francisco, CA 94016" +189583,USB-C Charging Cable,1,11.95,04/27/19 22:54,"576 2nd St, New York City, NY 10001" +189584,Lightning Charging Cable,1,14.95,04/17/19 14:46,"665 Pine St, Boston, MA 02215" +189585,AA Batteries (4-pack),1,3.84,04/24/19 07:16,"327 Center St, New York City, NY 10001" +189586,AAA Batteries (4-pack),1,2.99,04/11/19 10:24,"389 7th St, San Francisco, CA 94016" +189587,Apple Airpods Headphones,1,150,04/22/19 19:53,"287 4th St, San Francisco, CA 94016" +189588,AA Batteries (4-pack),1,3.84,04/22/19 08:53,"83 Lincoln St, Los Angeles, CA 90001" +189589,AA Batteries (4-pack),2,3.84,04/15/19 20:00,"10 Lincoln St, Austin, TX 73301" +189590,AA Batteries (4-pack),7,3.84,04/02/19 20:45,"167 Johnson St, San Francisco, CA 94016" +189591,27in FHD Monitor,1,149.99,04/21/19 22:26,"962 Sunset St, Atlanta, GA 30301" +189592,27in 4K Gaming Monitor,1,389.99,04/22/19 08:47,"278 Hill St, Atlanta, GA 30301" +189593,iPhone,1,700,04/08/19 14:33,"44 Lakeview St, Atlanta, GA 30301" +189594,USB-C Charging Cable,1,11.95,04/03/19 07:51,"417 Main St, Boston, MA 02215" +189595,Wired Headphones,1,11.99,04/20/19 17:09,"329 Meadow St, Dallas, TX 75001" +189596,USB-C Charging Cable,1,11.95,04/03/19 23:21,"638 Church St, Los Angeles, CA 90001" +189597,Flatscreen TV,1,300,04/14/19 15:39,"685 Forest St, Portland, OR 97035" +189598,AAA Batteries (4-pack),1,2.99,04/29/19 15:08,"435 Ridge St, San Francisco, CA 94016" +189599,AAA Batteries (4-pack),1,2.99,04/08/19 11:14,"934 5th St, New York City, NY 10001" +189600,LG Washing Machine,1,600.0,04/21/19 11:46,"826 Madison St, Los Angeles, CA 90001" +189601,27in 4K Gaming Monitor,1,389.99,04/04/19 21:42,"664 Walnut St, Seattle, WA 98101" +189602,iPhone,1,700,04/30/19 09:03,"680 Adams St, Seattle, WA 98101" +189602,Lightning Charging Cable,1,14.95,04/30/19 09:03,"680 Adams St, Seattle, WA 98101" +189603,Flatscreen TV,1,300,04/02/19 15:37,"946 Lakeview St, Dallas, TX 75001" +189604,Apple Airpods Headphones,1,150,04/11/19 11:28,"4 South St, Los Angeles, CA 90001" +189605,Macbook Pro Laptop,1,1700,04/22/19 17:18,"904 Madison St, Seattle, WA 98101" +189606,27in FHD Monitor,1,149.99,04/23/19 10:55,"371 Park St, Los Angeles, CA 90001" +189607,Macbook Pro Laptop,1,1700,04/04/19 19:22,"309 Pine St, Austin, TX 73301" +189608,34in Ultrawide Monitor,1,379.99,04/20/19 22:46,"155 9th St, Atlanta, GA 30301" +189609,34in Ultrawide Monitor,1,379.99,04/12/19 13:48,"988 Church St, San Francisco, CA 94016" +189610,Bose SoundSport Headphones,1,99.99,04/14/19 17:11,"354 Washington St, Los Angeles, CA 90001" +189611,iPhone,1,700,04/11/19 05:06,"209 Maple St, Austin, TX 73301" +189612,Google Phone,1,600,04/15/19 13:21,"220 Main St, Portland, ME 04101" +189612,USB-C Charging Cable,1,11.95,04/15/19 13:21,"220 Main St, Portland, ME 04101" +189612,Wired Headphones,1,11.99,04/15/19 13:21,"220 Main St, Portland, ME 04101" +189613,USB-C Charging Cable,1,11.95,04/19/19 19:58,"590 4th St, Atlanta, GA 30301" +189614,Bose SoundSport Headphones,1,99.99,04/24/19 19:03,"343 Spruce St, New York City, NY 10001" +189615,USB-C Charging Cable,2,11.95,04/17/19 15:24,"314 11th St, Dallas, TX 75001" +189616,AAA Batteries (4-pack),2,2.99,04/30/19 12:04,"681 Center St, San Francisco, CA 94016" +189617,Wired Headphones,1,11.99,04/01/19 06:57,"180 7th St, New York City, NY 10001" +189618,Bose SoundSport Headphones,1,99.99,04/17/19 19:04,"434 West St, Los Angeles, CA 90001" +189619,AA Batteries (4-pack),1,3.84,04/13/19 22:01,"863 4th St, San Francisco, CA 94016" +189620,27in 4K Gaming Monitor,1,389.99,04/28/19 12:33,"644 10th St, San Francisco, CA 94016" +189621,Apple Airpods Headphones,1,150,04/20/19 23:36,"496 Dogwood St, Los Angeles, CA 90001" +189622,AA Batteries (4-pack),2,3.84,04/30/19 08:58,"603 5th St, Los Angeles, CA 90001" +189623,ThinkPad Laptop,1,999.99,04/18/19 12:24,"794 Washington St, Seattle, WA 98101" +189624,AAA Batteries (4-pack),1,2.99,04/28/19 18:40,"392 1st St, Dallas, TX 75001" +189625,AA Batteries (4-pack),1,3.84,04/19/19 22:02,"173 Walnut St, San Francisco, CA 94016" +189626,34in Ultrawide Monitor,1,379.99,04/22/19 09:28,"114 Highland St, Austin, TX 73301" +189627,Lightning Charging Cable,1,14.95,04/07/19 18:22,"37 Lincoln St, Los Angeles, CA 90001" +189628,AAA Batteries (4-pack),1,2.99,04/15/19 19:36,"918 8th St, New York City, NY 10001" +189629,AA Batteries (4-pack),1,3.84,04/28/19 13:24,"862 South St, Portland, OR 97035" +189630,34in Ultrawide Monitor,1,379.99,04/17/19 13:57,"383 4th St, New York City, NY 10001" +189631,Flatscreen TV,1,300,04/21/19 01:23,"83 1st St, New York City, NY 10001" +189632,Lightning Charging Cable,1,14.95,04/23/19 12:44,"914 Lincoln St, Boston, MA 02215" +189633,Vareebadd Phone,1,400,04/21/19 17:55,"77 Jefferson St, Austin, TX 73301" +189634,Wired Headphones,1,11.99,04/01/19 05:08,"249 Chestnut St, San Francisco, CA 94016" +189635,Lightning Charging Cable,1,14.95,04/03/19 16:08,"970 Highland St, San Francisco, CA 94016" +189636,AA Batteries (4-pack),1,3.84,04/06/19 20:56,"416 Spruce St, San Francisco, CA 94016" +189637,Apple Airpods Headphones,1,150,04/17/19 10:22,"493 Cedar St, Dallas, TX 75001" +189638,AA Batteries (4-pack),1,3.84,04/19/19 08:45,"487 Hickory St, San Francisco, CA 94016" +189639,Lightning Charging Cable,1,14.95,04/23/19 09:37,"105 Church St, Portland, ME 04101" +189640,Lightning Charging Cable,1,14.95,04/16/19 20:25,"790 Adams St, Portland, ME 04101" +189641,USB-C Charging Cable,1,11.95,04/22/19 01:34,"408 Jefferson St, Los Angeles, CA 90001" +189642,Apple Airpods Headphones,1,150,04/02/19 13:59,"40 Jackson St, San Francisco, CA 94016" +189643,Flatscreen TV,1,300,04/17/19 21:36,"712 Adams St, Boston, MA 02215" +189644,ThinkPad Laptop,1,999.99,04/14/19 21:51,"829 Willow St, Boston, MA 02215" +189645,Apple Airpods Headphones,1,150,04/21/19 14:59,"4 Center St, Portland, ME 04101" +189646,Macbook Pro Laptop,1,1700,04/02/19 05:58,"60 Wilson St, San Francisco, CA 94016" +189647,Bose SoundSport Headphones,1,99.99,04/29/19 19:53,"144 Highland St, Atlanta, GA 30301" +189648,AAA Batteries (4-pack),1,2.99,04/02/19 20:35,"357 7th St, Seattle, WA 98101" +189649,ThinkPad Laptop,1,999.99,04/29/19 16:29,"424 12th St, San Francisco, CA 94016" +189650,Lightning Charging Cable,1,14.95,04/02/19 22:55,"928 2nd St, Dallas, TX 75001" +189651,AA Batteries (4-pack),1,3.84,04/14/19 20:27,"190 Highland St, New York City, NY 10001" +189652,Lightning Charging Cable,1,14.95,04/26/19 14:41,"241 Ridge St, San Francisco, CA 94016" +189653,AAA Batteries (4-pack),1,2.99,04/11/19 00:28,"574 Chestnut St, San Francisco, CA 94016" +189654,iPhone,1,700,04/25/19 12:37,"362 12th St, Seattle, WA 98101" +189655,27in 4K Gaming Monitor,1,389.99,04/20/19 23:59,"91 Madison St, Austin, TX 73301" +189656,34in Ultrawide Monitor,1,379.99,04/12/19 12:51,"605 Wilson St, Los Angeles, CA 90001" +189657,USB-C Charging Cable,1,11.95,04/07/19 21:39,"470 9th St, Atlanta, GA 30301" +189658,AA Batteries (4-pack),1,3.84,04/27/19 17:17,"758 Lakeview St, Atlanta, GA 30301" +189659,20in Monitor,1,109.99,04/02/19 00:44,"961 Maple St, San Francisco, CA 94016" +189660,AAA Batteries (4-pack),2,2.99,04/25/19 19:44,"531 9th St, San Francisco, CA 94016" +189661,Vareebadd Phone,1,400,04/29/19 15:17,"471 Jackson St, Seattle, WA 98101" +189662,AAA Batteries (4-pack),1,2.99,04/02/19 16:39,"161 Willow St, Seattle, WA 98101" +189663,AA Batteries (4-pack),2,3.84,04/21/19 10:22,"120 Cedar St, Los Angeles, CA 90001" +189664,Lightning Charging Cable,1,14.95,04/14/19 10:50,"808 Spruce St, New York City, NY 10001" +189665,Bose SoundSport Headphones,1,99.99,04/13/19 20:31,"263 West St, Austin, TX 73301" +189666,Lightning Charging Cable,1,14.95,04/07/19 00:10,"285 Madison St, San Francisco, CA 94016" +189667,AAA Batteries (4-pack),1,2.99,04/18/19 09:46,"366 4th St, New York City, NY 10001" +189668,AA Batteries (4-pack),1,3.84,04/15/19 13:25,"73 7th St, Los Angeles, CA 90001" +189669,AA Batteries (4-pack),3,3.84,04/12/19 12:10,"768 Highland St, Los Angeles, CA 90001" +189670,AA Batteries (4-pack),1,3.84,04/23/19 14:28,"501 Pine St, San Francisco, CA 94016" +189671,iPhone,1,700,04/12/19 23:03,"296 Johnson St, San Francisco, CA 94016" +189672,AAA Batteries (4-pack),1,2.99,04/25/19 10:34,"41 Hickory St, Boston, MA 02215" +189672,AAA Batteries (4-pack),1,2.99,04/25/19 10:34,"41 Hickory St, Boston, MA 02215" +189673,Lightning Charging Cable,1,14.95,04/07/19 17:11,"939 Main St, San Francisco, CA 94016" +189674,Wired Headphones,1,11.99,04/07/19 14:15,"483 13th St, Portland, OR 97035" +189675,USB-C Charging Cable,1,11.95,04/12/19 13:42,"743 1st St, Atlanta, GA 30301" +189676,Google Phone,1,600,04/25/19 17:17,"337 Hickory St, Boston, MA 02215" +189677,Lightning Charging Cable,1,14.95,04/03/19 14:23,"343 Adams St, Boston, MA 02215" +189678,USB-C Charging Cable,1,11.95,04/30/19 22:58,"969 Pine St, Boston, MA 02215" +189679,Wired Headphones,1,11.99,04/26/19 00:09,"892 Wilson St, San Francisco, CA 94016" +189680,AA Batteries (4-pack),1,3.84,04/03/19 12:42,"749 Forest St, San Francisco, CA 94016" +189681,Bose SoundSport Headphones,1,99.99,04/13/19 22:45,"445 Willow St, Los Angeles, CA 90001" +189682,AAA Batteries (4-pack),1,2.99,04/05/19 18:28,"348 4th St, Los Angeles, CA 90001" +189683,34in Ultrawide Monitor,1,379.99,04/16/19 14:41,"975 Maple St, Boston, MA 02215" +189684,27in 4K Gaming Monitor,1,389.99,04/16/19 20:12,"593 2nd St, San Francisco, CA 94016" +189685,Vareebadd Phone,1,400,04/14/19 14:36,"473 8th St, Portland, ME 04101" +189686,Apple Airpods Headphones,1,150,04/19/19 10:43,"738 Hickory St, San Francisco, CA 94016" +189687,Wired Headphones,1,11.99,04/06/19 20:39,"588 Hill St, Austin, TX 73301" +189687,USB-C Charging Cable,1,11.95,04/06/19 20:39,"588 Hill St, Austin, TX 73301" +189688,AA Batteries (4-pack),1,3.84,04/08/19 15:17,"690 2nd St, Atlanta, GA 30301" +189689,Lightning Charging Cable,1,14.95,04/10/19 21:46,"503 Meadow St, Boston, MA 02215" +189690,USB-C Charging Cable,1,11.95,04/04/19 17:48,"84 Spruce St, Los Angeles, CA 90001" +189691,Lightning Charging Cable,1,14.95,04/09/19 15:37,"62 7th St, Boston, MA 02215" +189692,AAA Batteries (4-pack),1,2.99,04/06/19 09:18,"537 Main St, Los Angeles, CA 90001" +189693,Wired Headphones,1,11.99,04/27/19 08:17,"670 6th St, San Francisco, CA 94016" +189694,Apple Airpods Headphones,1,150,04/27/19 07:49,"67 Chestnut St, Boston, MA 02215" +189695,27in FHD Monitor,1,149.99,04/08/19 12:44,"507 Elm St, San Francisco, CA 94016" +189696,AAA Batteries (4-pack),1,2.99,04/25/19 16:19,"937 Adams St, Austin, TX 73301" +189697,ThinkPad Laptop,1,999.99,04/27/19 02:46,"331 Church St, Los Angeles, CA 90001" +189698,USB-C Charging Cable,2,11.95,04/17/19 18:06,"447 Washington St, Los Angeles, CA 90001" +189699,Apple Airpods Headphones,1,150,04/17/19 10:08,"454 10th St, San Francisco, CA 94016" +189700,AA Batteries (4-pack),1,3.84,04/21/19 16:12,"671 River St, Seattle, WA 98101" +189701,Lightning Charging Cable,1,14.95,04/27/19 12:19,"919 Pine St, Atlanta, GA 30301" +189702,AAA Batteries (4-pack),1,2.99,04/02/19 10:44,"155 1st St, Boston, MA 02215" +189703,Lightning Charging Cable,1,14.95,04/08/19 16:30,"353 13th St, Los Angeles, CA 90001" +189704,Wired Headphones,1,11.99,04/21/19 18:30,"867 Main St, Seattle, WA 98101" +189705,USB-C Charging Cable,1,11.95,04/11/19 18:35,"813 Church St, Boston, MA 02215" +189706,AAA Batteries (4-pack),1,2.99,04/05/19 15:42,"879 Main St, San Francisco, CA 94016" +189707,AAA Batteries (4-pack),3,2.99,04/17/19 16:25,"294 Park St, Los Angeles, CA 90001" +189708,USB-C Charging Cable,1,11.95,04/24/19 16:07,"340 Adams St, New York City, NY 10001" +189709,20in Monitor,1,109.99,04/17/19 17:57,"651 Chestnut St, San Francisco, CA 94016" +189710,AAA Batteries (4-pack),2,2.99,04/15/19 19:33,"788 6th St, San Francisco, CA 94016" +189711,Google Phone,1,600,04/04/19 13:16,"401 Ridge St, Dallas, TX 75001" +189712,USB-C Charging Cable,1,11.95,04/09/19 00:12,"320 5th St, Los Angeles, CA 90001" +189713,Wired Headphones,1,11.99,04/13/19 21:00,"800 9th St, Boston, MA 02215" +189714,Apple Airpods Headphones,1,150,04/21/19 11:47,"443 Hickory St, Boston, MA 02215" +189715,Lightning Charging Cable,1,14.95,04/08/19 16:47,"568 Lakeview St, Los Angeles, CA 90001" +189716,Bose SoundSport Headphones,1,99.99,04/24/19 21:00,"238 Sunset St, Seattle, WA 98101" +189717,27in 4K Gaming Monitor,1,389.99,04/17/19 22:08,"10 9th St, New York City, NY 10001" +189718,AAA Batteries (4-pack),1,2.99,04/07/19 13:32,"633 5th St, Los Angeles, CA 90001" +189719,Bose SoundSport Headphones,1,99.99,04/22/19 12:12,"583 4th St, Boston, MA 02215" +189720,27in FHD Monitor,1,149.99,04/18/19 18:37,"780 Lakeview St, Seattle, WA 98101" +189721,AA Batteries (4-pack),1,3.84,04/12/19 13:27,"782 Hickory St, New York City, NY 10001" +189722,Lightning Charging Cable,2,14.95,04/29/19 16:51,"49 Maple St, Portland, OR 97035" +189723,Apple Airpods Headphones,1,150,04/10/19 22:30,"627 Jefferson St, Seattle, WA 98101" +189724,AA Batteries (4-pack),1,3.84,04/17/19 11:01,"29 4th St, Dallas, TX 75001" +189725,USB-C Charging Cable,1,11.95,04/29/19 13:56,"594 7th St, Los Angeles, CA 90001" +189726,AAA Batteries (4-pack),1,2.99,04/15/19 20:25,"411 Pine St, Dallas, TX 75001" +189727,Lightning Charging Cable,1,14.95,04/04/19 13:29,"723 9th St, Seattle, WA 98101" +189728,Bose SoundSport Headphones,1,99.99,04/07/19 11:58,"725 South St, Los Angeles, CA 90001" +189729,AA Batteries (4-pack),1,3.84,04/29/19 02:09,"971 West St, Portland, ME 04101" +189730,AA Batteries (4-pack),1,3.84,04/21/19 05:15,"561 12th St, San Francisco, CA 94016" +189731,Apple Airpods Headphones,1,150,04/15/19 17:56,"848 Spruce St, New York City, NY 10001" +189732,AA Batteries (4-pack),1,3.84,04/15/19 22:16,"56 Forest St, Boston, MA 02215" +189733,Wired Headphones,1,11.99,04/09/19 22:41,"569 Highland St, San Francisco, CA 94016" +189734,USB-C Charging Cable,1,11.95,04/08/19 19:58,"550 Cherry St, Austin, TX 73301" +189735,Wired Headphones,1,11.99,04/29/19 21:16,"467 Cedar St, Austin, TX 73301" +189736,AAA Batteries (4-pack),1,2.99,04/10/19 16:50,"760 Adams St, Atlanta, GA 30301" +189737,Lightning Charging Cable,1,14.95,04/29/19 19:28,"551 Washington St, New York City, NY 10001" +189738,AA Batteries (4-pack),1,3.84,04/03/19 19:25,"97 7th St, Los Angeles, CA 90001" +189739,Lightning Charging Cable,1,14.95,04/22/19 12:23,"415 Lake St, Los Angeles, CA 90001" +189740,Wired Headphones,1,11.99,04/19/19 19:47,"150 Meadow St, New York City, NY 10001" +189741,USB-C Charging Cable,1,11.95,04/24/19 23:06,"973 Center St, San Francisco, CA 94016" +189742,Wired Headphones,1,11.99,04/20/19 14:08,"796 7th St, New York City, NY 10001" +189743,Google Phone,1,600,04/10/19 17:11,"861 Chestnut St, Los Angeles, CA 90001" +189744,Macbook Pro Laptop,1,1700,04/20/19 17:20,"955 West St, New York City, NY 10001" +189745,Lightning Charging Cable,1,14.95,04/30/19 15:07,"621 6th St, New York City, NY 10001" +189746,Apple Airpods Headphones,1,150,04/12/19 16:54,"303 Chestnut St, New York City, NY 10001" +189747,USB-C Charging Cable,1,11.95,04/22/19 11:38,"200 Highland St, Los Angeles, CA 90001" +189748,AAA Batteries (4-pack),1,2.99,04/21/19 07:05,"538 Maple St, San Francisco, CA 94016" +189749,USB-C Charging Cable,1,11.95,04/30/19 14:38,"485 7th St, New York City, NY 10001" +189750,Flatscreen TV,1,300,04/20/19 12:58,"833 12th St, Los Angeles, CA 90001" +189751,AA Batteries (4-pack),3,3.84,04/26/19 14:25,"587 7th St, New York City, NY 10001" +189752,iPhone,1,700,04/05/19 15:05,"159 11th St, Austin, TX 73301" +189753,Wired Headphones,1,11.99,04/12/19 09:19,"18 Cedar St, San Francisco, CA 94016" +189754,AA Batteries (4-pack),1,3.84,04/24/19 17:19,"400 Meadow St, San Francisco, CA 94016" +189755,Wired Headphones,1,11.99,04/15/19 11:52,"382 2nd St, Boston, MA 02215" +189756,Bose SoundSport Headphones,1,99.99,04/13/19 12:23,"556 11th St, Seattle, WA 98101" +189757,AAA Batteries (4-pack),2,2.99,04/08/19 17:30,"536 12th St, Los Angeles, CA 90001" +189758,Wired Headphones,1,11.99,04/18/19 17:20,"932 Dogwood St, Seattle, WA 98101" +189759,34in Ultrawide Monitor,1,379.99,04/08/19 07:31,"671 Hickory St, New York City, NY 10001" +189760,Flatscreen TV,1,300,04/22/19 14:50,"924 West St, San Francisco, CA 94016" +189761,Macbook Pro Laptop,1,1700,04/29/19 14:01,"577 Center St, Portland, OR 97035" +189762,Bose SoundSport Headphones,1,99.99,04/10/19 10:44,"461 Walnut St, Dallas, TX 75001" +189763,Google Phone,1,600,04/17/19 22:50,"342 Jefferson St, Boston, MA 02215" +189764,Macbook Pro Laptop,1,1700,04/25/19 10:08,"402 River St, San Francisco, CA 94016" +189765,27in FHD Monitor,1,149.99,04/28/19 23:08,"312 Meadow St, Portland, OR 97035" +189766,AAA Batteries (4-pack),2,2.99,04/25/19 02:57,"694 Cherry St, San Francisco, CA 94016" +189767,Google Phone,1,600,04/19/19 15:44,"589 1st St, Los Angeles, CA 90001" +189768,Bose SoundSport Headphones,1,99.99,04/20/19 11:51,"805 5th St, Boston, MA 02215" +189769,Lightning Charging Cable,1,14.95,04/28/19 02:16,"599 Cedar St, New York City, NY 10001" +189770,AA Batteries (4-pack),2,3.84,04/18/19 20:55,"626 Johnson St, Boston, MA 02215" +189771,Bose SoundSport Headphones,1,99.99,04/03/19 20:59,"252 13th St, Boston, MA 02215" +189772,AA Batteries (4-pack),1,3.84,04/05/19 10:05,"25 Hickory St, San Francisco, CA 94016" +189773,20in Monitor,1,109.99,04/28/19 16:37,"491 10th St, San Francisco, CA 94016" +189774,Lightning Charging Cable,1,14.95,04/09/19 17:31,"988 13th St, New York City, NY 10001" +189775,Wired Headphones,2,11.99,04/13/19 19:05,"945 Forest St, New York City, NY 10001" +189776,Flatscreen TV,1,300,04/18/19 10:53,"385 Maple St, San Francisco, CA 94016" +189777,Macbook Pro Laptop,1,1700,04/08/19 20:00,"553 6th St, Los Angeles, CA 90001" +189778,AA Batteries (4-pack),1,3.84,04/24/19 13:08,"186 9th St, Dallas, TX 75001" +189779,AA Batteries (4-pack),1,3.84,04/23/19 11:58,"893 Lakeview St, Dallas, TX 75001" +189780,Wired Headphones,1,11.99,04/16/19 19:12,"586 Madison St, Austin, TX 73301" +189781,Google Phone,1,600,04/11/19 19:23,"548 Meadow St, Dallas, TX 75001" +189782,USB-C Charging Cable,1,11.95,04/21/19 12:47,"568 Adams St, San Francisco, CA 94016" +189783,Bose SoundSport Headphones,1,99.99,04/30/19 11:54,"803 2nd St, New York City, NY 10001" +189784,Wired Headphones,1,11.99,04/20/19 12:38,"344 11th St, San Francisco, CA 94016" +189785,AAA Batteries (4-pack),1,2.99,05/01/19 02:35,"996 River St, San Francisco, CA 94016" +189786,AAA Batteries (4-pack),1,2.99,04/23/19 18:53,"889 10th St, Portland, ME 04101" +189787,Lightning Charging Cable,1,14.95,04/24/19 12:36,"912 Center St, San Francisco, CA 94016" +189788,AA Batteries (4-pack),1,3.84,04/11/19 17:33,"63 Adams St, Los Angeles, CA 90001" +189789,Apple Airpods Headphones,1,150,04/19/19 13:15,"317 Sunset St, New York City, NY 10001" +189790,Wired Headphones,1,11.99,04/28/19 22:10,"860 Maple St, New York City, NY 10001" +189791,AA Batteries (4-pack),1,3.84,04/29/19 12:35,"914 13th St, Los Angeles, CA 90001" +189792,Bose SoundSport Headphones,1,99.99,04/20/19 12:27,"859 8th St, Los Angeles, CA 90001" +189793,Wired Headphones,1,11.99,04/16/19 21:35,"635 Pine St, Seattle, WA 98101" +189794,Wired Headphones,1,11.99,04/25/19 13:02,"729 North St, New York City, NY 10001" +189794,34in Ultrawide Monitor,1,379.99,04/25/19 13:02,"729 North St, New York City, NY 10001" +189795,AAA Batteries (4-pack),4,2.99,04/23/19 12:14,"542 Willow St, San Francisco, CA 94016" +189796,Google Phone,1,600,04/02/19 08:52,"313 Lincoln St, Los Angeles, CA 90001" +189797,Lightning Charging Cable,1,14.95,04/21/19 08:07,"243 5th St, New York City, NY 10001" +189798,AA Batteries (4-pack),1,3.84,04/06/19 20:58,"194 14th St, Boston, MA 02215" +189799,AA Batteries (4-pack),1,3.84,04/19/19 07:16,"261 2nd St, Los Angeles, CA 90001" +189800,ThinkPad Laptop,1,999.99,04/07/19 08:00,"788 Forest St, Dallas, TX 75001" +189801,AA Batteries (4-pack),1,3.84,04/20/19 21:15,"494 West St, Boston, MA 02215" +189802,LG Washing Machine,1,600.0,04/01/19 18:33,"680 14th St, Boston, MA 02215" +189803,AAA Batteries (4-pack),4,2.99,04/13/19 19:37,"736 Johnson St, San Francisco, CA 94016" +189804,Lightning Charging Cable,2,14.95,04/25/19 09:00,"148 Main St, Boston, MA 02215" +189805,Wired Headphones,1,11.99,04/11/19 23:54,"148 Wilson St, New York City, NY 10001" +189806,AA Batteries (4-pack),1,3.84,04/30/19 10:38,"668 Cherry St, Atlanta, GA 30301" +189807,AA Batteries (4-pack),1,3.84,04/16/19 18:51,"204 4th St, Boston, MA 02215" +189808,USB-C Charging Cable,1,11.95,04/27/19 14:40,"494 Church St, Austin, TX 73301" +189809,Lightning Charging Cable,1,14.95,04/20/19 19:59,"797 Jackson St, Los Angeles, CA 90001" +189810,USB-C Charging Cable,2,11.95,04/09/19 17:36,"834 Pine St, San Francisco, CA 94016" +189811,AA Batteries (4-pack),1,3.84,04/13/19 12:17,"17 13th St, Los Angeles, CA 90001" +189812,Bose SoundSport Headphones,1,99.99,04/07/19 13:31,"123 West St, San Francisco, CA 94016" +189813,AA Batteries (4-pack),1,3.84,04/04/19 20:10,"331 Center St, San Francisco, CA 94016" +189814,iPhone,1,700,04/19/19 09:29,"910 Highland St, Dallas, TX 75001" +189815,Apple Airpods Headphones,1,150,04/06/19 17:46,"366 Hill St, Los Angeles, CA 90001" +189816,Wired Headphones,1,11.99,04/30/19 20:12,"325 West St, Boston, MA 02215" +189817,AAA Batteries (4-pack),1,2.99,04/18/19 12:58,"224 Cedar St, Atlanta, GA 30301" +189818,AAA Batteries (4-pack),1,2.99,04/13/19 15:12,"653 14th St, New York City, NY 10001" +189819,27in 4K Gaming Monitor,1,389.99,04/08/19 23:03,"790 Spruce St, Los Angeles, CA 90001" +189820,34in Ultrawide Monitor,1,379.99,04/08/19 08:50,"221 North St, Boston, MA 02215" +189821,ThinkPad Laptop,1,999.99,04/25/19 10:11,"78 Park St, San Francisco, CA 94016" +189822,AAA Batteries (4-pack),1,2.99,04/23/19 23:20,"231 Willow St, Seattle, WA 98101" +189823,34in Ultrawide Monitor,1,379.99,04/16/19 22:31,"380 14th St, San Francisco, CA 94016" +189824,AAA Batteries (4-pack),2,2.99,04/13/19 12:57,"228 Adams St, Dallas, TX 75001" +189825,AA Batteries (4-pack),1,3.84,04/30/19 19:14,"178 7th St, Austin, TX 73301" +189826,34in Ultrawide Monitor,1,379.99,04/21/19 21:35,"129 Highland St, San Francisco, CA 94016" +189827,Lightning Charging Cable,1,14.95,04/23/19 00:15,"706 Hill St, Los Angeles, CA 90001" +189828,20in Monitor,1,109.99,04/01/19 11:29,"658 Lincoln St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +189829,34in Ultrawide Monitor,1,379.99,04/06/19 08:41,"88 14th St, Atlanta, GA 30301" +189830,USB-C Charging Cable,1,11.95,04/09/19 11:42,"772 13th St, San Francisco, CA 94016" +189831,34in Ultrawide Monitor,1,379.99,04/06/19 22:16,"984 7th St, Atlanta, GA 30301" +189832,ThinkPad Laptop,1,999.99,04/09/19 14:14,"341 Walnut St, Portland, ME 04101" +189833,ThinkPad Laptop,1,999.99,04/16/19 10:07,"503 Main St, San Francisco, CA 94016" +189834,27in 4K Gaming Monitor,1,389.99,04/12/19 16:22,"339 7th St, San Francisco, CA 94016" +189835,USB-C Charging Cable,1,11.95,04/23/19 22:55,"141 7th St, Los Angeles, CA 90001" +189835,Bose SoundSport Headphones,1,99.99,04/23/19 22:55,"141 7th St, Los Angeles, CA 90001" +189836,iPhone,1,700,04/11/19 16:40,"898 Dogwood St, San Francisco, CA 94016" +189836,Apple Airpods Headphones,1,150,04/11/19 16:40,"898 Dogwood St, San Francisco, CA 94016" +189837,Lightning Charging Cable,1,14.95,04/14/19 00:34,"442 14th St, Boston, MA 02215" +189838,Apple Airpods Headphones,1,150,04/23/19 22:45,"593 Johnson St, Los Angeles, CA 90001" +189839,AA Batteries (4-pack),1,3.84,04/16/19 06:49,"203 Lake St, Atlanta, GA 30301" +189840,Google Phone,1,600,04/12/19 11:02,"899 12th St, San Francisco, CA 94016" +189841,USB-C Charging Cable,1,11.95,04/23/19 15:03,"626 Adams St, Boston, MA 02215" +189842,Bose SoundSport Headphones,1,99.99,04/01/19 19:38,"473 13th St, San Francisco, CA 94016" +189843,20in Monitor,1,109.99,04/02/19 19:23,"132 North St, Portland, ME 04101" +189844,Bose SoundSport Headphones,1,99.99,04/14/19 08:37,"439 9th St, Seattle, WA 98101" +189845,Wired Headphones,1,11.99,04/07/19 13:19,"357 Cedar St, Dallas, TX 75001" +189846,27in FHD Monitor,1,149.99,04/27/19 18:37,"447 West St, Atlanta, GA 30301" +189847,27in FHD Monitor,1,149.99,04/28/19 15:11,"524 Spruce St, Atlanta, GA 30301" +189848,USB-C Charging Cable,2,11.95,04/06/19 15:36,"818 Hill St, San Francisco, CA 94016" +189849,USB-C Charging Cable,1,11.95,04/03/19 00:44,"702 Walnut St, New York City, NY 10001" +189850,Lightning Charging Cable,1,14.95,04/07/19 13:51,"658 Spruce St, Austin, TX 73301" +189851,Lightning Charging Cable,1,14.95,04/04/19 17:29,"326 Jefferson St, Boston, MA 02215" +189852,AA Batteries (4-pack),1,3.84,04/18/19 09:51,"21 Park St, Seattle, WA 98101" +189853,Apple Airpods Headphones,2,150,04/30/19 14:19,"761 Wilson St, New York City, NY 10001" +189854,27in FHD Monitor,1,149.99,04/28/19 18:18,"2 13th St, New York City, NY 10001" +189855,AA Batteries (4-pack),2,3.84,04/15/19 20:20,"340 2nd St, Dallas, TX 75001" +189856,AAA Batteries (4-pack),3,2.99,04/06/19 19:17,"584 14th St, San Francisco, CA 94016" +189857,Lightning Charging Cable,1,14.95,04/29/19 11:59,"778 Park St, Atlanta, GA 30301" +189858,Lightning Charging Cable,2,14.95,04/21/19 06:27,"939 Forest St, Los Angeles, CA 90001" +189859,iPhone,1,700,04/04/19 15:13,"455 Walnut St, Atlanta, GA 30301" +189860,AAA Batteries (4-pack),1,2.99,04/20/19 17:31,"721 8th St, Portland, OR 97035" +189861,AAA Batteries (4-pack),1,2.99,04/29/19 09:28,"655 Cherry St, San Francisco, CA 94016" +189862,USB-C Charging Cable,1,11.95,04/01/19 22:00,"570 Park St, Portland, OR 97035" +189863,Wired Headphones,1,11.99,04/25/19 12:37,"14 6th St, Los Angeles, CA 90001" +189864,USB-C Charging Cable,1,11.95,04/20/19 19:52,"377 Willow St, Portland, OR 97035" +189865,Lightning Charging Cable,1,14.95,04/16/19 20:45,"469 4th St, San Francisco, CA 94016" +189866,USB-C Charging Cable,3,11.95,04/17/19 17:36,"273 Washington St, Austin, TX 73301" +189867,AA Batteries (4-pack),1,3.84,04/13/19 09:21,"132 Hickory St, New York City, NY 10001" +189868,USB-C Charging Cable,1,11.95,04/25/19 18:17,"699 Lakeview St, San Francisco, CA 94016" +189869,20in Monitor,1,109.99,04/08/19 12:30,"151 Spruce St, New York City, NY 10001" +189869,27in 4K Gaming Monitor,1,389.99,04/08/19 12:30,"151 Spruce St, New York City, NY 10001" +189870,USB-C Charging Cable,1,11.95,04/15/19 17:34,"490 Lake St, San Francisco, CA 94016" +189871,Bose SoundSport Headphones,1,99.99,04/28/19 11:48,"891 2nd St, New York City, NY 10001" +189872,Lightning Charging Cable,1,14.95,04/27/19 11:53,"207 Spruce St, Portland, OR 97035" +189873,USB-C Charging Cable,1,11.95,04/15/19 20:34,"426 Elm St, Boston, MA 02215" +189874,Lightning Charging Cable,2,14.95,04/27/19 23:10,"356 Maple St, Dallas, TX 75001" +189875,USB-C Charging Cable,1,11.95,04/04/19 10:14,"226 Meadow St, San Francisco, CA 94016" +189876,AA Batteries (4-pack),1,3.84,04/04/19 14:56,"559 South St, Los Angeles, CA 90001" +189877,AA Batteries (4-pack),1,3.84,04/05/19 21:48,"36 Johnson St, San Francisco, CA 94016" +189878,AA Batteries (4-pack),1,3.84,04/23/19 20:51,"996 Adams St, Dallas, TX 75001" +189879,Bose SoundSport Headphones,1,99.99,04/12/19 13:56,"142 Lincoln St, Los Angeles, CA 90001" +189880,USB-C Charging Cable,1,11.95,04/13/19 18:47,"309 Washington St, Portland, OR 97035" +189881,Wired Headphones,1,11.99,04/26/19 17:52,"822 Ridge St, San Francisco, CA 94016" +189882,AA Batteries (4-pack),1,3.84,04/25/19 20:51,"814 10th St, San Francisco, CA 94016" +189883,AAA Batteries (4-pack),1,2.99,04/05/19 22:36,"829 11th St, Dallas, TX 75001" +189884,USB-C Charging Cable,1,11.95,04/18/19 20:30,"595 Spruce St, Los Angeles, CA 90001" +189885,Wired Headphones,1,11.99,04/30/19 00:24,"459 West St, Los Angeles, CA 90001" +189886,Lightning Charging Cable,1,14.95,04/27/19 12:24,"249 North St, New York City, NY 10001" +189887,ThinkPad Laptop,1,999.99,04/12/19 13:54,"909 2nd St, Seattle, WA 98101" +189888,Lightning Charging Cable,1,14.95,04/14/19 12:49,"363 Lake St, Atlanta, GA 30301" +189889,34in Ultrawide Monitor,1,379.99,04/19/19 17:23,"379 Jackson St, San Francisco, CA 94016" +189890,Apple Airpods Headphones,1,150,04/26/19 13:45,"379 9th St, Boston, MA 02215" +189891,USB-C Charging Cable,2,11.95,04/03/19 14:00,"725 Park St, Los Angeles, CA 90001" +189892,Lightning Charging Cable,1,14.95,04/12/19 13:40,"205 Lakeview St, Dallas, TX 75001" +189893,Apple Airpods Headphones,1,150,04/03/19 02:04,"322 Cedar St, Seattle, WA 98101" +189894,AA Batteries (4-pack),2,3.84,04/21/19 10:34,"383 Meadow St, Boston, MA 02215" +189895,ThinkPad Laptop,1,999.99,04/03/19 20:00,"340 Highland St, New York City, NY 10001" +189896,34in Ultrawide Monitor,1,379.99,04/11/19 18:04,"65 6th St, San Francisco, CA 94016" +189897,Wired Headphones,1,11.99,04/03/19 02:28,"207 Jefferson St, San Francisco, CA 94016" +189898,iPhone,1,700,04/04/19 11:22,"20 Walnut St, Atlanta, GA 30301" +189899,Wired Headphones,1,11.99,04/12/19 12:27,"771 Lake St, New York City, NY 10001" +189900,Lightning Charging Cable,1,14.95,04/25/19 21:11,"762 4th St, Dallas, TX 75001" +189901,Apple Airpods Headphones,1,150,04/15/19 10:17,"745 Adams St, Dallas, TX 75001" +189902,Apple Airpods Headphones,1,150,04/17/19 11:40,"80 Meadow St, Seattle, WA 98101" +189903,Apple Airpods Headphones,1,150,04/19/19 13:33,"188 Lakeview St, San Francisco, CA 94016" +189904,AA Batteries (4-pack),1,3.84,04/16/19 13:42,"894 Jefferson St, Austin, TX 73301" +189905,Wired Headphones,2,11.99,04/19/19 22:01,"601 North St, Portland, OR 97035" +189906,ThinkPad Laptop,1,999.99,04/10/19 01:42,"960 Jackson St, Austin, TX 73301" +189907,Flatscreen TV,1,300,04/24/19 17:50,"47 8th St, San Francisco, CA 94016" +189908,27in 4K Gaming Monitor,1,389.99,04/03/19 09:22,"222 South St, San Francisco, CA 94016" +189909,AAA Batteries (4-pack),1,2.99,04/12/19 09:37,"447 Johnson St, Atlanta, GA 30301" +189910,Vareebadd Phone,1,400,04/12/19 15:14,"858 Madison St, San Francisco, CA 94016" +189910,USB-C Charging Cable,1,11.95,04/12/19 15:14,"858 Madison St, San Francisco, CA 94016" +189911,Google Phone,1,600,04/07/19 18:27,"921 Forest St, Austin, TX 73301" +189912,Wired Headphones,1,11.99,04/24/19 14:26,"502 1st St, San Francisco, CA 94016" +189913,Apple Airpods Headphones,1,150,04/09/19 15:36,"537 11th St, Austin, TX 73301" +189914,AA Batteries (4-pack),1,3.84,04/13/19 23:42,"888 Highland St, Portland, OR 97035" +189915,Lightning Charging Cable,1,14.95,04/01/19 10:50,"197 River St, New York City, NY 10001" +189916,Apple Airpods Headphones,1,150,04/26/19 08:58,"665 River St, Atlanta, GA 30301" +189917,Wired Headphones,1,11.99,04/10/19 12:33,"348 Johnson St, Los Angeles, CA 90001" +189918,27in FHD Monitor,1,149.99,04/14/19 18:03,"240 Spruce St, San Francisco, CA 94016" +189919,Bose SoundSport Headphones,1,99.99,04/25/19 09:12,"178 Sunset St, San Francisco, CA 94016" +189920,Bose SoundSport Headphones,1,99.99,04/30/19 14:03,"135 South St, Austin, TX 73301" +189921,Lightning Charging Cable,1,14.95,04/11/19 07:46,"288 Pine St, Austin, TX 73301" +189922,AAA Batteries (4-pack),2,2.99,04/24/19 16:58,"215 14th St, Boston, MA 02215" +189923,AAA Batteries (4-pack),1,2.99,04/19/19 09:16,"240 Chestnut St, Los Angeles, CA 90001" +189924,USB-C Charging Cable,1,11.95,04/08/19 10:40,"472 Lake St, San Francisco, CA 94016" +189925,Lightning Charging Cable,1,14.95,04/16/19 15:30,"545 Maple St, Portland, OR 97035" +189926,Apple Airpods Headphones,1,150,04/01/19 22:44,"17 Lakeview St, Dallas, TX 75001" +189927,27in FHD Monitor,1,149.99,04/13/19 00:04,"243 7th St, Portland, OR 97035" +189928,Google Phone,1,600,04/15/19 17:45,"38 Elm St, San Francisco, CA 94016" +189929,Flatscreen TV,1,300,04/01/19 11:34,"737 Elm St, Seattle, WA 98101" +189930,USB-C Charging Cable,2,11.95,04/19/19 13:53,"885 10th St, Portland, OR 97035" +189931,Wired Headphones,1,11.99,04/13/19 12:47,"109 1st St, Atlanta, GA 30301" +189932,Apple Airpods Headphones,1,150,04/13/19 21:21,"493 West St, Los Angeles, CA 90001" +189933,AAA Batteries (4-pack),1,2.99,04/08/19 16:51,"80 Highland St, Seattle, WA 98101" +189934,ThinkPad Laptop,1,999.99,04/28/19 09:11,"93 9th St, Los Angeles, CA 90001" +189935,Lightning Charging Cable,1,14.95,04/27/19 21:25,"666 Chestnut St, New York City, NY 10001" +189936,AAA Batteries (4-pack),1,2.99,04/02/19 10:14,"203 Dogwood St, Los Angeles, CA 90001" +189937,Macbook Pro Laptop,1,1700,04/20/19 08:57,"154 Lincoln St, Dallas, TX 75001" +189938,iPhone,1,700,04/11/19 21:41,"565 7th St, Seattle, WA 98101" +189939,Bose SoundSport Headphones,1,99.99,04/25/19 18:27,"939 Jefferson St, Seattle, WA 98101" +189940,Bose SoundSport Headphones,1,99.99,04/30/19 12:55,"474 Willow St, Seattle, WA 98101" +189941,ThinkPad Laptop,1,999.99,04/01/19 10:15,"741 Main St, Los Angeles, CA 90001" +189942,USB-C Charging Cable,1,11.95,04/15/19 11:25,"377 Cherry St, Los Angeles, CA 90001" +189943,Apple Airpods Headphones,1,150,04/22/19 14:47,"71 North St, Portland, OR 97035" +189944,Apple Airpods Headphones,1,150,04/17/19 09:56,"345 Pine St, Portland, OR 97035" +189945,27in 4K Gaming Monitor,1,389.99,04/14/19 21:40,"419 2nd St, San Francisco, CA 94016" +189946,Macbook Pro Laptop,1,1700,04/23/19 08:34,"671 Park St, Dallas, TX 75001" +189947,Macbook Pro Laptop,1,1700,04/30/19 12:52,"664 North St, New York City, NY 10001" +189948,34in Ultrawide Monitor,1,379.99,04/29/19 11:41,"922 Hill St, San Francisco, CA 94016" +189949,Lightning Charging Cable,1,14.95,04/04/19 20:31,"904 Lincoln St, San Francisco, CA 94016" +189950,ThinkPad Laptop,1,999.99,04/13/19 18:18,"221 Spruce St, Boston, MA 02215" +189951,Lightning Charging Cable,1,14.95,04/24/19 11:57,"361 Lake St, Los Angeles, CA 90001" +189952,iPhone,1,700,04/12/19 15:55,"792 Johnson St, San Francisco, CA 94016" +189953,Wired Headphones,1,11.99,04/27/19 00:08,"791 Washington St, New York City, NY 10001" +189954,USB-C Charging Cable,1,11.95,04/13/19 18:52,"824 South St, Los Angeles, CA 90001" +189955,27in FHD Monitor,1,149.99,04/24/19 14:54,"876 14th St, Los Angeles, CA 90001" +189956,Lightning Charging Cable,1,14.95,04/21/19 23:51,"839 Adams St, Boston, MA 02215" +189957,27in FHD Monitor,1,149.99,04/22/19 18:12,"852 River St, Seattle, WA 98101" +189958,AAA Batteries (4-pack),2,2.99,04/25/19 11:53,"123 14th St, San Francisco, CA 94016" +189959,Bose SoundSport Headphones,1,99.99,04/30/19 10:52,"132 Johnson St, San Francisco, CA 94016" +189960,USB-C Charging Cable,1,11.95,04/13/19 07:53,"567 Forest St, Seattle, WA 98101" +189961,AAA Batteries (4-pack),3,2.99,04/04/19 12:35,"68 Jefferson St, San Francisco, CA 94016" +189962,Lightning Charging Cable,1,14.95,04/13/19 10:48,"353 Wilson St, New York City, NY 10001" +189963,AA Batteries (4-pack),2,3.84,04/22/19 16:37,"968 4th St, Boston, MA 02215" +189964,USB-C Charging Cable,1,11.95,04/26/19 13:28,"592 Hill St, San Francisco, CA 94016" +189965,AAA Batteries (4-pack),3,2.99,04/27/19 09:56,"289 11th St, Los Angeles, CA 90001" +189966,AA Batteries (4-pack),1,3.84,04/18/19 09:05,"402 Chestnut St, Austin, TX 73301" +189967,Apple Airpods Headphones,1,150,04/27/19 12:09,"89 North St, Los Angeles, CA 90001" +189968,Macbook Pro Laptop,1,1700,04/20/19 18:28,"201 Madison St, Los Angeles, CA 90001" +189969,iPhone,1,700,04/15/19 11:29,"199 13th St, Portland, OR 97035" +189970,Bose SoundSport Headphones,1,99.99,04/14/19 11:57,"968 6th St, Austin, TX 73301" +189971,Flatscreen TV,1,300,04/03/19 15:27,"890 Pine St, Seattle, WA 98101" +189972,Bose SoundSport Headphones,1,99.99,04/01/19 15:39,"289 Dogwood St, Los Angeles, CA 90001" +189973,Apple Airpods Headphones,1,150,04/12/19 23:11,"360 Washington St, Los Angeles, CA 90001" +189974,Wired Headphones,1,11.99,04/03/19 14:29,"312 North St, Boston, MA 02215" +189975,AA Batteries (4-pack),2,3.84,04/27/19 15:52,"903 Ridge St, San Francisco, CA 94016" +189976,AA Batteries (4-pack),1,3.84,04/09/19 20:36,"721 Cedar St, Dallas, TX 75001" +189977,Wired Headphones,1,11.99,04/17/19 20:31,"633 Meadow St, Dallas, TX 75001" +189978,AA Batteries (4-pack),1,3.84,04/29/19 21:35,"406 Lakeview St, Portland, OR 97035" +189979,Apple Airpods Headphones,1,150,04/28/19 19:23,"615 Highland St, Los Angeles, CA 90001" +189980,iPhone,1,700,04/03/19 16:32,"733 Meadow St, San Francisco, CA 94016" +189981,34in Ultrawide Monitor,1,379.99,04/09/19 17:26,"632 Spruce St, Boston, MA 02215" +189982,27in 4K Gaming Monitor,1,389.99,04/08/19 14:41,"907 Spruce St, Portland, OR 97035" +189983,Apple Airpods Headphones,1,150,04/08/19 22:55,"269 Lincoln St, New York City, NY 10001" +189984,27in 4K Gaming Monitor,1,389.99,04/15/19 17:13,"896 6th St, Los Angeles, CA 90001" +189985,USB-C Charging Cable,1,11.95,04/09/19 22:12,"766 Main St, New York City, NY 10001" +189986,Bose SoundSport Headphones,1,99.99,04/10/19 15:49,"914 13th St, Portland, ME 04101" +189987,Lightning Charging Cable,1,14.95,04/26/19 12:24,"350 Dogwood St, Los Angeles, CA 90001" +189988,Wired Headphones,1,11.99,04/05/19 09:24,"561 Main St, Atlanta, GA 30301" +189989,USB-C Charging Cable,1,11.95,04/13/19 21:27,"390 Pine St, Dallas, TX 75001" +189990,AA Batteries (4-pack),1,3.84,04/13/19 22:14,"581 Highland St, San Francisco, CA 94016" +189991,AAA Batteries (4-pack),2,2.99,04/02/19 21:18,"324 7th St, Seattle, WA 98101" +189992,USB-C Charging Cable,1,11.95,04/21/19 13:00,"630 9th St, New York City, NY 10001" +189993,Bose SoundSport Headphones,1,99.99,04/04/19 09:19,"673 Lakeview St, Dallas, TX 75001" +189994,27in 4K Gaming Monitor,1,389.99,04/08/19 13:32,"539 Chestnut St, Los Angeles, CA 90001" +189995,34in Ultrawide Monitor,1,379.99,04/09/19 12:16,"321 14th St, Los Angeles, CA 90001" +189996,AAA Batteries (4-pack),1,2.99,04/16/19 18:26,"153 Ridge St, Seattle, WA 98101" +189997,AA Batteries (4-pack),1,3.84,04/28/19 07:58,"900 Main St, New York City, NY 10001" +189998,27in 4K Gaming Monitor,1,389.99,04/24/19 19:45,"378 Hill St, San Francisco, CA 94016" +189999,iPhone,1,700,04/21/19 11:38,"34 Cherry St, New York City, NY 10001" +190000,AAA Batteries (4-pack),2,2.99,04/11/19 13:25,"426 Washington St, Los Angeles, CA 90001" +190001,Apple Airpods Headphones,1,150,04/04/19 11:25,"50 Dogwood St, San Francisco, CA 94016" +190002,Bose SoundSport Headphones,1,99.99,04/04/19 21:18,"990 Highland St, Dallas, TX 75001" +190003,Wired Headphones,2,11.99,04/13/19 15:49,"559 Washington St, Atlanta, GA 30301" +190004,Lightning Charging Cable,2,14.95,04/02/19 16:58,"893 Lincoln St, Boston, MA 02215" +190005,Google Phone,1,600,04/21/19 18:23,"881 Center St, Austin, TX 73301" +190005,USB-C Charging Cable,2,11.95,04/21/19 18:23,"881 Center St, Austin, TX 73301" +190006,Bose SoundSport Headphones,1,99.99,04/07/19 14:26,"695 Hill St, San Francisco, CA 94016" +190007,Google Phone,1,600,04/23/19 08:59,"344 14th St, Boston, MA 02215" +190008,iPhone,1,700,04/16/19 13:53,"308 Park St, Atlanta, GA 30301" +190009,AAA Batteries (4-pack),2,2.99,04/08/19 21:34,"529 Cherry St, New York City, NY 10001" +190010,Bose SoundSport Headphones,1,99.99,04/30/19 20:26,"448 Chestnut St, Los Angeles, CA 90001" +190011,Google Phone,1,600,04/24/19 19:20,"894 6th St, Los Angeles, CA 90001" +190012,LG Washing Machine,1,600.0,04/23/19 15:28,"32 Spruce St, New York City, NY 10001" +190013,Apple Airpods Headphones,1,150,04/08/19 17:12,"810 Ridge St, Portland, OR 97035" +190014,Wired Headphones,2,11.99,04/09/19 16:51,"77 Pine St, Los Angeles, CA 90001" +190015,Wired Headphones,1,11.99,04/18/19 09:26,"61 Dogwood St, New York City, NY 10001" +190016,Lightning Charging Cable,2,14.95,04/20/19 17:54,"29 Jackson St, San Francisco, CA 94016" +190017,Wired Headphones,1,11.99,04/12/19 17:46,"120 13th St, Portland, OR 97035" +190018,27in FHD Monitor,1,149.99,04/01/19 14:26,"168 Meadow St, San Francisco, CA 94016" +190019,Apple Airpods Headphones,1,150,04/27/19 20:05,"848 Hill St, Los Angeles, CA 90001" +190020,20in Monitor,1,109.99,04/20/19 13:36,"528 Lakeview St, San Francisco, CA 94016" +190021,Apple Airpods Headphones,1,150,04/16/19 07:30,"897 11th St, Portland, ME 04101" +190022,27in 4K Gaming Monitor,1,389.99,04/18/19 13:51,"362 Elm St, New York City, NY 10001" +190023,27in FHD Monitor,1,149.99,04/27/19 13:20,"180 Main St, Portland, ME 04101" +190024,Wired Headphones,1,11.99,04/20/19 08:39,"263 14th St, Boston, MA 02215" +190025,27in 4K Gaming Monitor,1,389.99,04/11/19 09:58,"32 Johnson St, Seattle, WA 98101" +190026,Wired Headphones,1,11.99,04/02/19 13:30,"898 4th St, Boston, MA 02215" +190027,Lightning Charging Cable,1,14.95,04/26/19 18:51,"6 Chestnut St, Boston, MA 02215" +190028,27in FHD Monitor,1,149.99,04/20/19 12:03,"31 2nd St, San Francisco, CA 94016" +190029,Flatscreen TV,1,300,04/26/19 18:13,"94 1st St, Los Angeles, CA 90001" +190030,Lightning Charging Cable,1,14.95,04/01/19 17:20,"815 Center St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +190031,Bose SoundSport Headphones,1,99.99,04/10/19 22:46,"251 South St, Dallas, TX 75001" +190032,Flatscreen TV,1,300,04/21/19 08:35,"658 Elm St, Boston, MA 02215" +190033,34in Ultrawide Monitor,1,379.99,04/12/19 23:32,"807 Johnson St, New York City, NY 10001" +190034,AAA Batteries (4-pack),3,2.99,04/23/19 10:45,"918 13th St, Seattle, WA 98101" +190035,27in FHD Monitor,1,149.99,04/30/19 01:01,"617 Main St, San Francisco, CA 94016" +190036,20in Monitor,1,109.99,04/03/19 12:37,"392 Maple St, San Francisco, CA 94016" +190037,AAA Batteries (4-pack),2,2.99,04/08/19 11:42,"404 13th St, San Francisco, CA 94016" +190038,AA Batteries (4-pack),1,3.84,04/08/19 16:15,"456 4th St, San Francisco, CA 94016" +190039,Apple Airpods Headphones,1,150,04/06/19 13:25,"229 Spruce St, Boston, MA 02215" +190040,Google Phone,1,600,04/29/19 09:31,"253 Maple St, Austin, TX 73301" +190041,Macbook Pro Laptop,1,1700,04/20/19 02:18,"313 Chestnut St, New York City, NY 10001" +190042,27in 4K Gaming Monitor,1,389.99,04/24/19 00:07,"400 Willow St, Boston, MA 02215" +190043,34in Ultrawide Monitor,1,379.99,04/13/19 13:14,"769 Ridge St, San Francisco, CA 94016" +190044,USB-C Charging Cable,1,11.95,04/15/19 00:14,"271 Sunset St, Austin, TX 73301" +190045,Flatscreen TV,1,300,04/24/19 20:28,"166 9th St, San Francisco, CA 94016" +190046,Lightning Charging Cable,1,14.95,04/12/19 16:34,"232 12th St, Austin, TX 73301" +190047,USB-C Charging Cable,1,11.95,04/17/19 00:05,"423 Meadow St, Boston, MA 02215" +190048,Google Phone,1,600,04/19/19 18:31,"263 Lake St, New York City, NY 10001" +190048,USB-C Charging Cable,1,11.95,04/19/19 18:31,"263 Lake St, New York City, NY 10001" +190048,Wired Headphones,1,11.99,04/19/19 18:31,"263 Lake St, New York City, NY 10001" +190049,USB-C Charging Cable,1,11.95,04/14/19 11:56,"139 Hickory St, Seattle, WA 98101" +190050,AAA Batteries (4-pack),1,2.99,04/20/19 17:42,"30 2nd St, Boston, MA 02215" +190051,Wired Headphones,1,11.99,04/12/19 19:24,"297 Chestnut St, Los Angeles, CA 90001" +190052,Lightning Charging Cable,2,14.95,04/03/19 12:02,"647 Lincoln St, Seattle, WA 98101" +190053,Apple Airpods Headphones,1,150,04/03/19 08:11,"612 West St, Dallas, TX 75001" +190054,Bose SoundSport Headphones,1,99.99,04/12/19 15:09,"293 Walnut St, Seattle, WA 98101" +190055,Wired Headphones,1,11.99,04/07/19 14:45,"471 Main St, Los Angeles, CA 90001" +190056,USB-C Charging Cable,1,11.95,04/30/19 13:02,"880 Lake St, Seattle, WA 98101" +190057,Bose SoundSport Headphones,1,99.99,04/19/19 09:56,"131 Main St, Austin, TX 73301" +190058,iPhone,1,700,04/15/19 20:24,"525 Highland St, Boston, MA 02215" +190059,iPhone,1,700,04/01/19 10:09,"632 11th St, San Francisco, CA 94016" +190060,Apple Airpods Headphones,1,150,04/30/19 20:54,"337 Johnson St, Austin, TX 73301" +190061,AA Batteries (4-pack),2,3.84,04/29/19 18:50,"866 North St, Los Angeles, CA 90001" +190062,AA Batteries (4-pack),1,3.84,04/30/19 08:24,"204 4th St, San Francisco, CA 94016" +190063,AAA Batteries (4-pack),2,2.99,04/08/19 09:41,"64 6th St, New York City, NY 10001" +190064,Wired Headphones,1,11.99,04/04/19 21:23,"807 North St, Dallas, TX 75001" +190065,Macbook Pro Laptop,1,1700,04/05/19 17:52,"534 8th St, Dallas, TX 75001" +190066,Bose SoundSport Headphones,1,99.99,04/10/19 10:35,"333 Spruce St, Los Angeles, CA 90001" +190067,AA Batteries (4-pack),1,3.84,04/23/19 15:48,"633 Meadow St, Austin, TX 73301" +190068,Google Phone,1,600,04/11/19 11:51,"640 2nd St, New York City, NY 10001" +190069,34in Ultrawide Monitor,1,379.99,04/04/19 18:34,"800 Main St, San Francisco, CA 94016" +190070,USB-C Charging Cable,1,11.95,04/14/19 18:32,"993 12th St, New York City, NY 10001" +190071,27in 4K Gaming Monitor,1,389.99,04/25/19 00:01,"624 Lakeview St, New York City, NY 10001" +190072,27in FHD Monitor,1,149.99,04/24/19 11:05,"980 Sunset St, Austin, TX 73301" +190073,34in Ultrawide Monitor,1,379.99,04/19/19 01:44,"433 River St, Dallas, TX 75001" +190074,Wired Headphones,1,11.99,04/24/19 01:19,"153 Hill St, Los Angeles, CA 90001" +190075,Lightning Charging Cable,1,14.95,04/13/19 09:31,"763 Wilson St, San Francisco, CA 94016" +190076,Wired Headphones,1,11.99,04/21/19 18:08,"518 6th St, Atlanta, GA 30301" +190077,27in 4K Gaming Monitor,1,389.99,04/06/19 22:01,"401 Hickory St, San Francisco, CA 94016" +190078,AAA Batteries (4-pack),1,2.99,04/15/19 22:30,"66 Church St, Los Angeles, CA 90001" +190079,USB-C Charging Cable,1,11.95,04/04/19 17:15,"662 12th St, Boston, MA 02215" +190080,Lightning Charging Cable,1,14.95,04/09/19 21:20,"80 14th St, Atlanta, GA 30301" +190081,AAA Batteries (4-pack),3,2.99,04/13/19 19:51,"250 Forest St, Atlanta, GA 30301" +190082,27in 4K Gaming Monitor,1,389.99,04/18/19 17:44,"674 Spruce St, New York City, NY 10001" +190082,20in Monitor,1,109.99,04/18/19 17:44,"674 Spruce St, New York City, NY 10001" +190083,Bose SoundSport Headphones,1,99.99,04/07/19 21:17,"825 Madison St, Atlanta, GA 30301" +190084,34in Ultrawide Monitor,1,379.99,04/17/19 21:13,"546 Dogwood St, Los Angeles, CA 90001" +190085,USB-C Charging Cable,1,11.95,04/03/19 15:25,"637 Sunset St, Los Angeles, CA 90001" +190086,AA Batteries (4-pack),1,3.84,04/06/19 11:59,"633 Jackson St, Dallas, TX 75001" +190087,AAA Batteries (4-pack),1,2.99,04/19/19 17:25,"674 Jackson St, San Francisco, CA 94016" +190088,USB-C Charging Cable,1,11.95,04/12/19 19:59,"520 Highland St, San Francisco, CA 94016" +190089,Apple Airpods Headphones,1,150,04/29/19 18:03,"408 10th St, Austin, TX 73301" +190090,AAA Batteries (4-pack),1,2.99,04/17/19 17:20,"569 9th St, Boston, MA 02215" +190091,Lightning Charging Cable,1,14.95,04/27/19 20:45,"594 Hickory St, Atlanta, GA 30301" +190092,Bose SoundSport Headphones,1,99.99,04/13/19 20:41,"196 5th St, San Francisco, CA 94016" +190093,Wired Headphones,1,11.99,04/27/19 15:13,"137 Adams St, San Francisco, CA 94016" +190094,iPhone,1,700,04/23/19 08:57,"317 Washington St, Boston, MA 02215" +190095,AA Batteries (4-pack),1,3.84,04/29/19 13:40,"828 Highland St, Boston, MA 02215" +190096,Apple Airpods Headphones,1,150,04/26/19 07:53,"158 12th St, Portland, OR 97035" +190097,ThinkPad Laptop,1,999.99,04/19/19 16:36,"601 Spruce St, Dallas, TX 75001" +190098,Bose SoundSport Headphones,1,99.99,04/25/19 18:21,"692 7th St, Boston, MA 02215" +190099,27in FHD Monitor,1,149.99,04/05/19 19:37,"135 Hill St, Dallas, TX 75001" +190100,AA Batteries (4-pack),1,3.84,04/17/19 08:56,"655 Wilson St, Austin, TX 73301" +190101,USB-C Charging Cable,1,11.95,04/15/19 17:39,"507 Jefferson St, Boston, MA 02215" +190102,USB-C Charging Cable,1,11.95,04/06/19 09:39,"450 Dogwood St, San Francisco, CA 94016" +190103,Bose SoundSport Headphones,1,99.99,04/29/19 16:15,"889 Hickory St, New York City, NY 10001" +190104,27in FHD Monitor,1,149.99,04/22/19 05:21,"476 Cherry St, Seattle, WA 98101" +190105,Lightning Charging Cable,1,14.95,04/01/19 17:50,"956 Ridge St, Seattle, WA 98101" +190106,iPhone,1,700,04/09/19 18:10,"946 4th St, Los Angeles, CA 90001" +190106,Lightning Charging Cable,1,14.95,04/09/19 18:10,"946 4th St, Los Angeles, CA 90001" +190106,Wired Headphones,2,11.99,04/09/19 18:10,"946 4th St, Los Angeles, CA 90001" +190107,Bose SoundSport Headphones,1,99.99,04/24/19 14:22,"619 Spruce St, Los Angeles, CA 90001" +190108,AA Batteries (4-pack),1,3.84,04/09/19 18:22,"982 10th St, New York City, NY 10001" +190109,Macbook Pro Laptop,1,1700,04/18/19 13:07,"885 Jackson St, Atlanta, GA 30301" +190110,27in 4K Gaming Monitor,1,389.99,04/25/19 18:54,"64 13th St, Los Angeles, CA 90001" +190111,27in 4K Gaming Monitor,1,389.99,04/15/19 14:51,"548 Main St, Los Angeles, CA 90001" +190112,USB-C Charging Cable,1,11.95,04/09/19 08:03,"380 Center St, Los Angeles, CA 90001" +190113,34in Ultrawide Monitor,1,379.99,04/10/19 18:15,"704 Church St, Los Angeles, CA 90001" +190114,27in FHD Monitor,1,149.99,04/22/19 12:38,"163 West St, Portland, ME 04101" +190115,Wired Headphones,1,11.99,04/01/19 23:58,"194 13th St, San Francisco, CA 94016" +190116,AA Batteries (4-pack),1,3.84,04/17/19 14:45,"284 South St, Dallas, TX 75001" +190117,Wired Headphones,1,11.99,04/29/19 16:05,"801 West St, Boston, MA 02215" +190118,Wired Headphones,1,11.99,04/16/19 00:13,"672 Park St, San Francisco, CA 94016" +190119,34in Ultrawide Monitor,1,379.99,04/12/19 08:37,"67 Highland St, Los Angeles, CA 90001" +190120,27in FHD Monitor,1,149.99,04/11/19 13:54,"976 12th St, San Francisco, CA 94016" +190121,Flatscreen TV,1,300,04/19/19 17:34,"835 Church St, San Francisco, CA 94016" +190122,ThinkPad Laptop,1,999.99,04/17/19 07:57,"863 2nd St, Los Angeles, CA 90001" +190123,USB-C Charging Cable,1,11.95,04/30/19 17:12,"168 7th St, Atlanta, GA 30301" +190124,USB-C Charging Cable,1,11.95,04/25/19 01:23,"522 8th St, Atlanta, GA 30301" +190125,Wired Headphones,1,11.99,04/24/19 09:42,"371 4th St, Los Angeles, CA 90001" +190126,iPhone,1,700,04/07/19 16:49,"282 South St, Portland, OR 97035" +190127,AAA Batteries (4-pack),1,2.99,04/27/19 13:10,"753 Walnut St, Boston, MA 02215" +190128,AA Batteries (4-pack),5,3.84,04/28/19 08:29,"193 10th St, Los Angeles, CA 90001" +190129,20in Monitor,1,109.99,04/18/19 13:47,"484 Adams St, Austin, TX 73301" +190130,Flatscreen TV,1,300,04/21/19 10:24,"894 Sunset St, New York City, NY 10001" +190131,Apple Airpods Headphones,1,150,04/21/19 13:43,"52 Madison St, Portland, OR 97035" +190132,ThinkPad Laptop,1,999.99,04/26/19 20:11,"265 Main St, Boston, MA 02215" +190133,Bose SoundSport Headphones,1,99.99,04/10/19 07:11,"874 Hickory St, Boston, MA 02215" +190134,AA Batteries (4-pack),2,3.84,04/18/19 11:01,"9 1st St, San Francisco, CA 94016" +190135,Bose SoundSport Headphones,1,99.99,04/06/19 08:42,"145 River St, San Francisco, CA 94016" +190136,Apple Airpods Headphones,1,150,04/08/19 23:05,"111 10th St, New York City, NY 10001" +190137,AA Batteries (4-pack),2,3.84,04/30/19 21:09,"229 River St, San Francisco, CA 94016" +190138,Wired Headphones,1,11.99,04/03/19 19:40,"389 Walnut St, San Francisco, CA 94016" +190139,Lightning Charging Cable,1,14.95,04/17/19 14:36,"23 8th St, Boston, MA 02215" +190140,Lightning Charging Cable,1,14.95,04/14/19 17:17,"233 South St, Austin, TX 73301" +190141,Lightning Charging Cable,1,14.95,04/17/19 12:10,"68 Adams St, Boston, MA 02215" +190142,Lightning Charging Cable,1,14.95,04/01/19 20:27,"548 Highland St, Atlanta, GA 30301" +190143,Bose SoundSport Headphones,1,99.99,04/24/19 21:04,"207 Adams St, Los Angeles, CA 90001" +190144,Lightning Charging Cable,1,14.95,04/29/19 21:08,"177 13th St, San Francisco, CA 94016" +190145,Apple Airpods Headphones,1,150,04/13/19 16:31,"153 Sunset St, Boston, MA 02215" +190146,USB-C Charging Cable,3,11.95,04/07/19 10:42,"286 Jefferson St, Atlanta, GA 30301" +190147,27in 4K Gaming Monitor,1,389.99,04/20/19 21:48,"722 Lakeview St, Dallas, TX 75001" +190148,Macbook Pro Laptop,1,1700,04/09/19 09:46,"915 Lakeview St, Boston, MA 02215" +190149,Flatscreen TV,1,300,04/04/19 20:31,"371 Maple St, Boston, MA 02215" +190150,Lightning Charging Cable,1,14.95,04/14/19 11:47,"514 Lincoln St, Portland, ME 04101" +190151,Lightning Charging Cable,1,14.95,04/11/19 17:25,"381 Park St, Boston, MA 02215" +190152,Apple Airpods Headphones,1,150,04/15/19 17:17,"585 1st St, Portland, OR 97035" +190152,20in Monitor,1,109.99,04/15/19 17:17,"585 1st St, Portland, OR 97035" +190153,AA Batteries (4-pack),2,3.84,04/03/19 13:55,"998 Highland St, San Francisco, CA 94016" +190154,Bose SoundSport Headphones,1,99.99,04/24/19 22:13,"641 Pine St, Los Angeles, CA 90001" +190155,AA Batteries (4-pack),3,3.84,04/30/19 01:42,"861 1st St, Dallas, TX 75001" +190156,Lightning Charging Cable,1,14.95,04/11/19 16:31,"193 Sunset St, Seattle, WA 98101" +190157,Lightning Charging Cable,1,14.95,04/21/19 13:16,"942 Maple St, Atlanta, GA 30301" +190158,Apple Airpods Headphones,1,150,04/27/19 10:43,"695 Lincoln St, Boston, MA 02215" +190159,USB-C Charging Cable,1,11.95,04/26/19 21:41,"561 North St, Portland, OR 97035" +190160,AAA Batteries (4-pack),1,2.99,04/30/19 20:23,"822 Lakeview St, San Francisco, CA 94016" +190161,LG Washing Machine,1,600.0,04/19/19 18:48,"350 2nd St, San Francisco, CA 94016" +190162,AAA Batteries (4-pack),1,2.99,04/30/19 19:47,"415 Park St, Seattle, WA 98101" +190163,20in Monitor,1,109.99,04/11/19 10:28,"386 9th St, Los Angeles, CA 90001" +190164,Apple Airpods Headphones,1,150,04/21/19 07:50,"502 Highland St, Portland, OR 97035" +190165,Bose SoundSport Headphones,1,99.99,04/02/19 09:43,"684 Willow St, Atlanta, GA 30301" +190166,Lightning Charging Cable,1,14.95,04/29/19 16:13,"293 4th St, San Francisco, CA 94016" +190167,Lightning Charging Cable,1,14.95,04/18/19 11:53,"746 Center St, Los Angeles, CA 90001" +190168,Flatscreen TV,1,300,04/27/19 17:26,"635 Washington St, Portland, OR 97035" +190169,Apple Airpods Headphones,1,150,04/15/19 11:06,"455 6th St, New York City, NY 10001" +190170,27in FHD Monitor,1,149.99,04/23/19 07:25,"758 North St, Boston, MA 02215" +190171,27in FHD Monitor,1,149.99,04/26/19 23:45,"702 Hill St, San Francisco, CA 94016" +190172,27in 4K Gaming Monitor,1,389.99,04/10/19 17:25,"684 Cherry St, Boston, MA 02215" +190173,USB-C Charging Cable,1,11.95,04/05/19 18:51,"83 8th St, Los Angeles, CA 90001" +190174,AA Batteries (4-pack),1,3.84,04/14/19 21:27,"213 South St, Boston, MA 02215" +190175,USB-C Charging Cable,1,11.95,04/01/19 18:19,"398 Madison St, New York City, NY 10001" +190176,Wired Headphones,1,11.99,04/06/19 20:57,"531 Elm St, San Francisco, CA 94016" +190177,iPhone,1,700,04/20/19 21:16,"316 Willow St, Los Angeles, CA 90001" +190178,Apple Airpods Headphones,1,150,04/26/19 11:22,"194 Johnson St, Seattle, WA 98101" +190179,27in 4K Gaming Monitor,1,389.99,04/18/19 12:34,"570 Maple St, Dallas, TX 75001" +190180,Lightning Charging Cable,1,14.95,04/19/19 00:42,"6 Jackson St, San Francisco, CA 94016" +190181,Flatscreen TV,1,300,04/06/19 17:27,"6 Sunset St, Atlanta, GA 30301" +190182,Bose SoundSport Headphones,1,99.99,04/24/19 18:27,"465 10th St, Portland, ME 04101" +190183,Macbook Pro Laptop,1,1700,04/09/19 12:08,"101 10th St, Austin, TX 73301" +190184,Lightning Charging Cable,2,14.95,04/07/19 00:54,"129 Madison St, San Francisco, CA 94016" +190185,iPhone,1,700,04/25/19 19:40,"185 10th St, Seattle, WA 98101" +190186,Apple Airpods Headphones,1,150,04/01/19 19:10,"13 Madison St, Austin, TX 73301" +190187,AAA Batteries (4-pack),1,2.99,04/13/19 19:47,"624 6th St, New York City, NY 10001" +190188,AAA Batteries (4-pack),1,2.99,04/06/19 23:48,"912 West St, Los Angeles, CA 90001" +190189,USB-C Charging Cable,1,11.95,04/24/19 13:08,"881 Ridge St, Dallas, TX 75001" +190190,AA Batteries (4-pack),1,3.84,04/16/19 13:19,"651 9th St, San Francisco, CA 94016" +190191,20in Monitor,1,109.99,04/09/19 17:35,"334 Washington St, San Francisco, CA 94016" +190192,Wired Headphones,1,11.99,04/27/19 07:15,"597 Willow St, Boston, MA 02215" +190193,AAA Batteries (4-pack),1,2.99,04/01/19 12:50,"316 10th St, Los Angeles, CA 90001" +190194,LG Washing Machine,1,600.0,04/02/19 21:19,"414 Center St, Dallas, TX 75001" +190195,AA Batteries (4-pack),1,3.84,04/28/19 19:46,"245 Lakeview St, Los Angeles, CA 90001" +190196,AA Batteries (4-pack),1,3.84,04/24/19 20:04,"168 Johnson St, Los Angeles, CA 90001" +190197,Lightning Charging Cable,1,14.95,04/29/19 19:43,"505 Dogwood St, San Francisco, CA 94016" +190198,Lightning Charging Cable,1,14.95,04/03/19 10:40,"652 Ridge St, Seattle, WA 98101" +190199,Macbook Pro Laptop,1,1700,04/03/19 07:13,"351 9th St, San Francisco, CA 94016" +190200,20in Monitor,1,109.99,04/26/19 17:39,"778 Highland St, New York City, NY 10001" +190201,Bose SoundSport Headphones,1,99.99,04/04/19 08:18,"225 Cherry St, Los Angeles, CA 90001" +190202,Apple Airpods Headphones,1,150,04/22/19 13:29,"541 Washington St, Seattle, WA 98101" +190203,Wired Headphones,1,11.99,04/22/19 13:10,"859 7th St, Los Angeles, CA 90001" +190204,USB-C Charging Cable,1,11.95,04/23/19 23:31,"954 13th St, Los Angeles, CA 90001" +190204,27in FHD Monitor,1,149.99,04/23/19 23:31,"954 13th St, Los Angeles, CA 90001" +190205,ThinkPad Laptop,1,999.99,04/24/19 12:23,"614 Main St, San Francisco, CA 94016" +190206,USB-C Charging Cable,1,11.95,04/25/19 11:15,"346 Walnut St, Atlanta, GA 30301" +190207,USB-C Charging Cable,1,11.95,04/30/19 23:03,"252 Forest St, Boston, MA 02215" +190208,Flatscreen TV,1,300,04/29/19 10:01,"11 11th St, Boston, MA 02215" +190209,USB-C Charging Cable,1,11.95,04/12/19 19:34,"430 Chestnut St, Seattle, WA 98101" +190210,AA Batteries (4-pack),2,3.84,04/29/19 20:31,"588 Lincoln St, Boston, MA 02215" +190211,AA Batteries (4-pack),1,3.84,04/24/19 10:25,"272 Jackson St, Portland, OR 97035" +190212,Apple Airpods Headphones,1,150,04/20/19 22:57,"661 Elm St, San Francisco, CA 94016" +190213,AA Batteries (4-pack),1,3.84,04/17/19 23:48,"521 10th St, Boston, MA 02215" +190214,Lightning Charging Cable,1,14.95,04/20/19 05:21,"694 Highland St, San Francisco, CA 94016" +190215,Bose SoundSport Headphones,1,99.99,04/25/19 14:33,"321 Maple St, Los Angeles, CA 90001" +190216,27in 4K Gaming Monitor,1,389.99,04/10/19 09:11,"236 Park St, San Francisco, CA 94016" +190217,Google Phone,1,600,04/11/19 21:51,"655 8th St, Los Angeles, CA 90001" +190218,USB-C Charging Cable,2,11.95,04/26/19 15:50,"979 Willow St, Seattle, WA 98101" +190219,34in Ultrawide Monitor,1,379.99,04/21/19 18:59,"741 Park St, San Francisco, CA 94016" +190220,Lightning Charging Cable,1,14.95,04/09/19 09:03,"758 Ridge St, Los Angeles, CA 90001" +190221,Wired Headphones,1,11.99,04/21/19 04:50,"421 Lincoln St, Austin, TX 73301" +190222,34in Ultrawide Monitor,1,379.99,04/01/19 22:17,"670 2nd St, New York City, NY 10001" +190223,Apple Airpods Headphones,1,150,04/20/19 03:26,"732 6th St, San Francisco, CA 94016" +190224,Apple Airpods Headphones,1,150,04/03/19 13:18,"492 Meadow St, Boston, MA 02215" +190225,20in Monitor,1,109.99,04/28/19 21:44,"494 River St, Dallas, TX 75001" +190226,Macbook Pro Laptop,1,1700,04/28/19 06:34,"365 6th St, New York City, NY 10001" +190227,AAA Batteries (4-pack),1,2.99,04/02/19 20:33,"926 Main St, Los Angeles, CA 90001" +190228,Lightning Charging Cable,1,14.95,04/12/19 17:56,"970 Lake St, Boston, MA 02215" +190229,27in FHD Monitor,1,149.99,04/24/19 12:44,"686 Meadow St, Boston, MA 02215" +190230,Google Phone,1,600,04/24/19 18:39,"664 West St, San Francisco, CA 94016" +190230,Wired Headphones,1,11.99,04/24/19 18:39,"664 West St, San Francisco, CA 94016" +190231,USB-C Charging Cable,1,11.95,04/02/19 20:13,"981 6th St, Los Angeles, CA 90001" +190232,Macbook Pro Laptop,1,1700,04/19/19 14:32,"314 1st St, Los Angeles, CA 90001" +190233,27in 4K Gaming Monitor,1,389.99,04/29/19 23:23,"180 Center St, San Francisco, CA 94016" +190233,20in Monitor,1,109.99,04/29/19 23:23,"180 Center St, San Francisco, CA 94016" +190234,Lightning Charging Cable,1,14.95,04/01/19 13:52,"208 11th St, San Francisco, CA 94016" +190235,ThinkPad Laptop,1,999.99,04/08/19 15:16,"837 Walnut St, Boston, MA 02215" +190236,USB-C Charging Cable,1,11.95,04/13/19 11:50,"87 Dogwood St, Los Angeles, CA 90001" +190237,34in Ultrawide Monitor,1,379.99,04/13/19 21:39,"530 Church St, San Francisco, CA 94016" +190238,Google Phone,1,600,04/20/19 17:46,"512 South St, New York City, NY 10001" +190239,AA Batteries (4-pack),3,3.84,04/17/19 11:33,"494 River St, San Francisco, CA 94016" +190240,Lightning Charging Cable,1,14.95,04/17/19 23:05,"395 Chestnut St, Atlanta, GA 30301" +190241,AAA Batteries (4-pack),1,2.99,04/04/19 11:11,"496 Elm St, Portland, OR 97035" +190242,27in 4K Gaming Monitor,1,389.99,04/06/19 11:24,"5 Ridge St, Los Angeles, CA 90001" +190243,27in 4K Gaming Monitor,1,389.99,04/19/19 04:11,"834 Adams St, Boston, MA 02215" +190244,ThinkPad Laptop,1,999.99,04/26/19 15:17,"593 Church St, Boston, MA 02215" +190245,Google Phone,1,600,04/12/19 21:10,"651 Hill St, Boston, MA 02215" +190245,Bose SoundSport Headphones,1,99.99,04/12/19 21:10,"651 Hill St, Boston, MA 02215" +190246,AAA Batteries (4-pack),1,2.99,04/04/19 10:28,"202 14th St, Los Angeles, CA 90001" +190247,27in FHD Monitor,1,149.99,04/02/19 17:52,"379 Chestnut St, San Francisco, CA 94016" +190248,Wired Headphones,1,11.99,04/12/19 15:32,"53 Lakeview St, Seattle, WA 98101" +190249,Wired Headphones,1,11.99,04/27/19 19:57,"244 North St, Los Angeles, CA 90001" +190250,27in 4K Gaming Monitor,1,389.99,04/28/19 20:09,"2 Park St, Dallas, TX 75001" +190251,USB-C Charging Cable,1,11.95,04/01/19 18:20,"285 Dogwood St, San Francisco, CA 94016" +190252,34in Ultrawide Monitor,1,379.99,04/20/19 13:47,"184 13th St, San Francisco, CA 94016" +190253,AAA Batteries (4-pack),1,2.99,04/09/19 16:35,"602 12th St, New York City, NY 10001" +190254,Wired Headphones,1,11.99,04/08/19 13:52,"686 8th St, Boston, MA 02215" +190254,Wired Headphones,1,11.99,04/08/19 13:52,"686 8th St, Boston, MA 02215" +190255,USB-C Charging Cable,1,11.95,04/03/19 18:32,"370 Jefferson St, New York City, NY 10001" +190256,AAA Batteries (4-pack),1,2.99,04/14/19 20:49,"963 Hill St, Austin, TX 73301" +190257,AA Batteries (4-pack),1,3.84,04/23/19 09:00,"644 Dogwood St, New York City, NY 10001" +190258,Lightning Charging Cable,1,14.95,04/17/19 10:11,"860 Willow St, Atlanta, GA 30301" +190259,USB-C Charging Cable,1,11.95,04/04/19 16:16,"330 13th St, Seattle, WA 98101" +190260,27in FHD Monitor,1,149.99,04/25/19 15:28,"457 Sunset St, Los Angeles, CA 90001" +190261,Wired Headphones,2,11.99,04/08/19 16:12,"506 Madison St, Seattle, WA 98101" +190262,Bose SoundSport Headphones,1,99.99,04/16/19 16:08,"874 Spruce St, Los Angeles, CA 90001" +190263,AAA Batteries (4-pack),1,2.99,04/20/19 22:08,"479 Lakeview St, Boston, MA 02215" +190264,Lightning Charging Cable,1,14.95,04/14/19 02:17,"389 Sunset St, Portland, OR 97035" +190265,Wired Headphones,2,11.99,04/01/19 12:07,"207 Johnson St, San Francisco, CA 94016" +190266,Google Phone,1,600,04/13/19 18:14,"933 10th St, Boston, MA 02215" +190266,USB-C Charging Cable,1,11.95,04/13/19 18:14,"933 10th St, Boston, MA 02215" +190267,Bose SoundSport Headphones,1,99.99,04/21/19 19:18,"435 Lakeview St, Los Angeles, CA 90001" +190267,AA Batteries (4-pack),1,3.84,04/21/19 19:18,"435 Lakeview St, Los Angeles, CA 90001" +190268,USB-C Charging Cable,1,11.95,04/16/19 01:54,"993 North St, San Francisco, CA 94016" +190269,Bose SoundSport Headphones,1,99.99,04/01/19 08:46,"538 Johnson St, Los Angeles, CA 90001" +190270,USB-C Charging Cable,1,11.95,04/26/19 22:34,"505 Lake St, New York City, NY 10001" +190271,AAA Batteries (4-pack),1,2.99,04/09/19 16:30,"901 Cedar St, San Francisco, CA 94016" +190272,Wired Headphones,1,11.99,04/19/19 16:26,"958 Maple St, Boston, MA 02215" +190273,AA Batteries (4-pack),1,3.84,04/28/19 17:19,"246 Center St, San Francisco, CA 94016" +190274,Apple Airpods Headphones,1,150,04/12/19 14:41,"651 Lakeview St, San Francisco, CA 94016" +190275,27in 4K Gaming Monitor,1,389.99,04/12/19 21:07,"590 Cedar St, Atlanta, GA 30301" +190276,Apple Airpods Headphones,1,150,04/05/19 11:33,"258 4th St, New York City, NY 10001" +190277,Wired Headphones,1,11.99,04/07/19 09:47,"900 Elm St, Seattle, WA 98101" +190278,AA Batteries (4-pack),1,3.84,04/14/19 22:37,"544 Lakeview St, Los Angeles, CA 90001" +190279,27in FHD Monitor,1,149.99,04/12/19 10:52,"775 Madison St, San Francisco, CA 94016" +190280,Lightning Charging Cable,1,14.95,04/08/19 22:01,"224 Willow St, Boston, MA 02215" +190281,Lightning Charging Cable,1,14.95,04/07/19 09:55,"93 Main St, San Francisco, CA 94016" +190282,USB-C Charging Cable,1,11.95,04/27/19 21:46,"986 Walnut St, Austin, TX 73301" +190283,Bose SoundSport Headphones,1,99.99,04/29/19 15:48,"706 Cherry St, Austin, TX 73301" +190284,Google Phone,1,600,04/05/19 12:29,"297 6th St, Boston, MA 02215" +190285,AA Batteries (4-pack),3,3.84,04/25/19 18:22,"473 Center St, San Francisco, CA 94016" +190286,AAA Batteries (4-pack),3,2.99,04/18/19 18:58,"433 Adams St, San Francisco, CA 94016" +190287,AAA Batteries (4-pack),3,2.99,04/03/19 22:07,"441 Highland St, Boston, MA 02215" +190288,Macbook Pro Laptop,1,1700,04/16/19 11:16,"840 Jefferson St, San Francisco, CA 94016" +190289,Apple Airpods Headphones,1,150,04/30/19 20:54,"826 Forest St, Boston, MA 02215" +190290,AAA Batteries (4-pack),4,2.99,04/03/19 19:44,"74 Dogwood St, Los Angeles, CA 90001" +190291,Lightning Charging Cable,1,14.95,04/04/19 11:02,"690 Cherry St, Portland, OR 97035" +190292,27in FHD Monitor,1,149.99,04/02/19 17:37,"109 Lakeview St, Dallas, TX 75001" +190293,Macbook Pro Laptop,1,1700,04/04/19 16:06,"586 4th St, Austin, TX 73301" +190294,Bose SoundSport Headphones,1,99.99,04/22/19 21:04,"11 Sunset St, Los Angeles, CA 90001" +190295,34in Ultrawide Monitor,1,379.99,04/14/19 15:30,"467 Washington St, San Francisco, CA 94016" +190296,AAA Batteries (4-pack),2,2.99,04/30/19 14:52,"764 2nd St, San Francisco, CA 94016" +190297,iPhone,1,700,04/10/19 18:46,"751 Park St, Boston, MA 02215" +190298,Apple Airpods Headphones,1,150,04/29/19 20:22,"409 7th St, Dallas, TX 75001" +190299,34in Ultrawide Monitor,1,379.99,04/25/19 03:41,"371 Walnut St, San Francisco, CA 94016" +190300,Lightning Charging Cable,1,14.95,04/23/19 14:06,"414 Hill St, Seattle, WA 98101" +190301,Wired Headphones,1,11.99,04/21/19 20:21,"386 Center St, Dallas, TX 75001" +190302,27in 4K Gaming Monitor,1,389.99,04/01/19 11:40,"669 Center St, Los Angeles, CA 90001" +190303,Vareebadd Phone,1,400,04/07/19 07:43,"887 1st St, Seattle, WA 98101" +190304,Lightning Charging Cable,1,14.95,04/07/19 13:32,"72 Maple St, New York City, NY 10001" +190305,Apple Airpods Headphones,1,150,04/13/19 20:01,"255 Chestnut St, Los Angeles, CA 90001" +190305,27in FHD Monitor,1,149.99,04/13/19 20:01,"255 Chestnut St, Los Angeles, CA 90001" +190306,Lightning Charging Cable,1,14.95,04/07/19 12:30,"551 4th St, New York City, NY 10001" +190307,USB-C Charging Cable,1,11.95,04/17/19 17:45,"551 Willow St, Seattle, WA 98101" +190308,Lightning Charging Cable,1,14.95,04/03/19 17:38,"710 1st St, Austin, TX 73301" +190309,27in 4K Gaming Monitor,1,389.99,04/24/19 21:37,"73 2nd St, Los Angeles, CA 90001" +190310,20in Monitor,1,109.99,04/05/19 09:04,"967 Washington St, New York City, NY 10001" +190311,USB-C Charging Cable,1,11.95,04/25/19 20:49,"878 2nd St, San Francisco, CA 94016" +190312,Lightning Charging Cable,1,14.95,04/04/19 17:20,"332 Pine St, Boston, MA 02215" +190313,AAA Batteries (4-pack),1,2.99,04/17/19 03:29,"173 Cedar St, New York City, NY 10001" +190314,iPhone,1,700,04/11/19 13:37,"290 Center St, New York City, NY 10001" +190315,27in FHD Monitor,1,149.99,04/19/19 14:25,"109 Hickory St, Atlanta, GA 30301" +190316,27in FHD Monitor,1,149.99,04/15/19 19:21,"90 10th St, Portland, OR 97035" +190317,AA Batteries (4-pack),1,3.84,04/27/19 21:25,"634 Washington St, New York City, NY 10001" +190318,27in FHD Monitor,1,149.99,04/21/19 18:56,"569 Maple St, New York City, NY 10001" +190319,27in 4K Gaming Monitor,1,389.99,04/13/19 20:22,"637 Ridge St, Los Angeles, CA 90001" +190320,AA Batteries (4-pack),1,3.84,04/15/19 19:24,"31 Chestnut St, New York City, NY 10001" +190321,34in Ultrawide Monitor,1,379.99,04/06/19 18:10,"109 Wilson St, New York City, NY 10001" +190322,Wired Headphones,2,11.99,04/13/19 00:13,"350 12th St, San Francisco, CA 94016" +190323,USB-C Charging Cable,1,11.95,04/28/19 16:55,"72 Madison St, San Francisco, CA 94016" +190324,Flatscreen TV,1,300,04/14/19 18:27,"363 13th St, Portland, OR 97035" +190325,iPhone,1,700,04/26/19 16:38,"582 Lincoln St, San Francisco, CA 94016" +190326,Bose SoundSport Headphones,1,99.99,04/01/19 15:31,"502 Hickory St, San Francisco, CA 94016" +190327,AAA Batteries (4-pack),1,2.99,04/07/19 19:09,"909 North St, Seattle, WA 98101" +190328,Apple Airpods Headphones,1,150,04/21/19 16:55,"280 5th St, Atlanta, GA 30301" +190329,Wired Headphones,1,11.99,04/12/19 20:06,"605 Pine St, Austin, TX 73301" +190330,Wired Headphones,1,11.99,04/04/19 11:08,"919 Main St, Austin, TX 73301" +190331,Bose SoundSport Headphones,1,99.99,04/14/19 07:02,"352 Cherry St, Atlanta, GA 30301" +190332,Apple Airpods Headphones,1,150,04/27/19 17:56,"110 Spruce St, Los Angeles, CA 90001" +190333,Lightning Charging Cable,1,14.95,04/07/19 10:31,"768 Pine St, New York City, NY 10001" +190334,Bose SoundSport Headphones,1,99.99,04/29/19 10:09,"7 14th St, Boston, MA 02215" +190335,Lightning Charging Cable,2,14.95,04/28/19 13:34,"810 Madison St, Dallas, TX 75001" +190336,Bose SoundSport Headphones,1,99.99,04/10/19 18:58,"722 Cherry St, San Francisco, CA 94016" +190337,AAA Batteries (4-pack),1,2.99,04/15/19 12:01,"906 Jackson St, Los Angeles, CA 90001" +190338,27in FHD Monitor,1,149.99,04/15/19 14:02,"496 Lake St, Boston, MA 02215" +190339,Lightning Charging Cable,1,14.95,04/08/19 21:05,"564 Jefferson St, Los Angeles, CA 90001" +190340,Lightning Charging Cable,1,14.95,04/17/19 14:32,"266 River St, Los Angeles, CA 90001" +190341,AAA Batteries (4-pack),3,2.99,04/13/19 14:23,"935 11th St, San Francisco, CA 94016" +190342,27in FHD Monitor,1,149.99,04/19/19 18:33,"160 Forest St, San Francisco, CA 94016" +190343,ThinkPad Laptop,1,999.99,04/28/19 11:33,"357 6th St, Boston, MA 02215" +190344,AA Batteries (4-pack),1,3.84,04/18/19 21:06,"526 Maple St, Dallas, TX 75001" +190345,34in Ultrawide Monitor,1,379.99,04/08/19 19:11,"670 Willow St, San Francisco, CA 94016" +190346,AAA Batteries (4-pack),2,2.99,04/09/19 08:57,"349 12th St, San Francisco, CA 94016" +190347,Lightning Charging Cable,1,14.95,04/17/19 17:06,"835 Cherry St, San Francisco, CA 94016" +190348,Wired Headphones,1,11.99,04/22/19 11:48,"352 Pine St, San Francisco, CA 94016" +190349,Apple Airpods Headphones,1,150,04/18/19 12:21,"672 12th St, San Francisco, CA 94016" +190350,AAA Batteries (4-pack),2,2.99,04/29/19 14:13,"541 Pine St, San Francisco, CA 94016" +190351,Lightning Charging Cable,1,14.95,04/12/19 11:28,"414 4th St, Austin, TX 73301" +190352,ThinkPad Laptop,1,999.99,04/27/19 06:22,"944 Lake St, San Francisco, CA 94016" +190353,USB-C Charging Cable,1,11.95,04/27/19 13:10,"350 West St, Los Angeles, CA 90001" +190354,USB-C Charging Cable,1,11.95,04/24/19 12:43,"581 Lakeview St, Boston, MA 02215" +190355,27in FHD Monitor,1,149.99,04/30/19 07:45,"291 5th St, Los Angeles, CA 90001" +190356,AA Batteries (4-pack),1,3.84,04/09/19 16:49,"589 Forest St, New York City, NY 10001" +190357,Wired Headphones,1,11.99,04/23/19 23:59,"485 12th St, San Francisco, CA 94016" +190358,27in 4K Gaming Monitor,1,389.99,04/30/19 11:55,"545 Lake St, Seattle, WA 98101" +190359,Bose SoundSport Headphones,1,99.99,04/06/19 09:16,"383 14th St, Boston, MA 02215" +190360,Wired Headphones,1,11.99,04/12/19 20:52,"864 Adams St, San Francisco, CA 94016" +190361,Lightning Charging Cable,1,14.95,04/24/19 18:57,"220 Sunset St, Austin, TX 73301" +190362,27in FHD Monitor,1,149.99,04/03/19 21:08,"248 Highland St, San Francisco, CA 94016" +190363,AA Batteries (4-pack),1,3.84,04/23/19 17:26,"378 6th St, Dallas, TX 75001" +190364,Flatscreen TV,1,300,04/11/19 17:36,"356 4th St, Boston, MA 02215" +190365,Lightning Charging Cable,2,14.95,04/29/19 13:00,"275 Washington St, San Francisco, CA 94016" +190366,Wired Headphones,1,11.99,04/13/19 21:53,"498 Church St, New York City, NY 10001" +190367,AA Batteries (4-pack),2,3.84,04/22/19 01:59,"15 9th St, Atlanta, GA 30301" +190368,27in FHD Monitor,1,149.99,04/28/19 19:41,"175 Jackson St, Los Angeles, CA 90001" +190369,AAA Batteries (4-pack),1,2.99,04/05/19 15:04,"21 Ridge St, New York City, NY 10001" +190370,27in FHD Monitor,1,149.99,04/11/19 16:34,"545 4th St, Portland, OR 97035" +190371,AAA Batteries (4-pack),1,2.99,04/01/19 15:57,"713 Hickory St, Boston, MA 02215" +190372,AAA Batteries (4-pack),2,2.99,04/10/19 17:51,"765 Park St, Boston, MA 02215" +190373,Macbook Pro Laptop,1,1700,04/03/19 23:11,"962 West St, Atlanta, GA 30301" +190374,Lightning Charging Cable,1,14.95,04/13/19 09:35,"500 Cherry St, Portland, OR 97035" +190375,iPhone,1,700,04/12/19 18:23,"348 12th St, Los Angeles, CA 90001" +190375,Lightning Charging Cable,2,14.95,04/12/19 18:23,"348 12th St, Los Angeles, CA 90001" +190376,Lightning Charging Cable,1,14.95,04/07/19 12:14,"409 Cedar St, Seattle, WA 98101" +190377,AAA Batteries (4-pack),1,2.99,04/17/19 17:32,"464 Forest St, San Francisco, CA 94016" +190378,Bose SoundSport Headphones,1,99.99,04/03/19 17:21,"826 Highland St, Seattle, WA 98101" +190379,AAA Batteries (4-pack),2,2.99,04/10/19 14:11,"745 Lincoln St, Los Angeles, CA 90001" +190380,AAA Batteries (4-pack),1,2.99,04/23/19 09:22,"893 12th St, Los Angeles, CA 90001" +190381,Apple Airpods Headphones,1,150,04/15/19 00:51,"402 Walnut St, New York City, NY 10001" +190382,Wired Headphones,1,11.99,04/28/19 02:58,"61 Hickory St, Dallas, TX 75001" +190383,Bose SoundSport Headphones,1,99.99,04/06/19 11:44,"270 Pine St, San Francisco, CA 94016" +190384,Wired Headphones,1,11.99,04/11/19 17:21,"701 Lakeview St, Atlanta, GA 30301" +190385,USB-C Charging Cable,1,11.95,04/11/19 12:25,"795 Wilson St, Dallas, TX 75001" +190386,Flatscreen TV,1,300,04/26/19 19:37,"442 Park St, Boston, MA 02215" +190387,Lightning Charging Cable,1,14.95,04/04/19 23:01,"473 7th St, Los Angeles, CA 90001" +190388,ThinkPad Laptop,1,999.99,04/25/19 09:46,"859 Washington St, San Francisco, CA 94016" +190389,USB-C Charging Cable,1,11.95,04/04/19 17:23,"376 Chestnut St, Los Angeles, CA 90001" +190390,Bose SoundSport Headphones,1,99.99,04/12/19 15:49,"382 Spruce St, San Francisco, CA 94016" +190391,Apple Airpods Headphones,1,150,04/05/19 13:34,"289 7th St, San Francisco, CA 94016" +190392,AAA Batteries (4-pack),1,2.99,04/06/19 21:52,"569 Dogwood St, San Francisco, CA 94016" +190393,20in Monitor,1,109.99,04/19/19 16:13,"226 Lakeview St, San Francisco, CA 94016" +190394,34in Ultrawide Monitor,1,379.99,04/01/19 13:32,"343 Highland St, New York City, NY 10001" +190395,USB-C Charging Cable,1,11.95,04/20/19 22:14,"503 Wilson St, San Francisco, CA 94016" +190396,USB-C Charging Cable,2,11.95,04/13/19 12:56,"160 Spruce St, Portland, OR 97035" +190397,AA Batteries (4-pack),1,3.84,04/04/19 14:31,"1 Ridge St, Dallas, TX 75001" +190398,AAA Batteries (4-pack),1,2.99,04/28/19 18:14,"883 Wilson St, San Francisco, CA 94016" +190399,Wired Headphones,1,11.99,04/15/19 21:01,"250 Dogwood St, Los Angeles, CA 90001" +190400,Apple Airpods Headphones,1,150,04/16/19 14:42,"665 Madison St, Boston, MA 02215" +190401,USB-C Charging Cable,1,11.95,04/10/19 07:49,"293 Highland St, Los Angeles, CA 90001" +190402,Vareebadd Phone,1,400,04/12/19 15:58,"821 Hickory St, Los Angeles, CA 90001" +190402,Wired Headphones,1,11.99,04/12/19 15:58,"821 Hickory St, Los Angeles, CA 90001" +190403,AAA Batteries (4-pack),1,2.99,04/03/19 11:42,"284 14th St, Boston, MA 02215" +190404,AAA Batteries (4-pack),1,2.99,04/06/19 20:09,"1 10th St, Portland, ME 04101" +190405,AA Batteries (4-pack),1,3.84,04/04/19 22:18,"144 Walnut St, Atlanta, GA 30301" +190406,AAA Batteries (4-pack),1,2.99,04/29/19 21:07,"879 13th St, New York City, NY 10001" +190407,ThinkPad Laptop,1,999.99,04/28/19 12:28,"659 Willow St, New York City, NY 10001" +190408,USB-C Charging Cable,1,11.95,04/23/19 21:05,"154 Willow St, Boston, MA 02215" +190408,AA Batteries (4-pack),2,3.84,04/23/19 21:05,"154 Willow St, Boston, MA 02215" +190409,iPhone,1,700,04/18/19 10:03,"30 4th St, San Francisco, CA 94016" +190409,Wired Headphones,1,11.99,04/18/19 10:03,"30 4th St, San Francisco, CA 94016" +190410,AAA Batteries (4-pack),1,2.99,04/08/19 19:06,"570 West St, Los Angeles, CA 90001" +190411,AA Batteries (4-pack),2,3.84,04/13/19 09:01,"904 Ridge St, Atlanta, GA 30301" +190412,Bose SoundSport Headphones,1,99.99,04/29/19 15:19,"365 Hickory St, Los Angeles, CA 90001" +190413,Apple Airpods Headphones,1,150,04/14/19 09:20,"930 Jefferson St, Atlanta, GA 30301" +190413,27in FHD Monitor,1,149.99,04/14/19 09:20,"930 Jefferson St, Atlanta, GA 30301" +190414,Apple Airpods Headphones,1,150,04/08/19 22:38,"818 Main St, New York City, NY 10001" +190415,AA Batteries (4-pack),1,3.84,04/08/19 19:46,"220 Elm St, New York City, NY 10001" +190416,AAA Batteries (4-pack),1,2.99,04/25/19 10:37,"761 Madison St, San Francisco, CA 94016" +190417,AAA Batteries (4-pack),2,2.99,04/15/19 20:59,"647 Maple St, Boston, MA 02215" +190417,USB-C Charging Cable,1,11.95,04/15/19 20:59,"647 Maple St, Boston, MA 02215" +190418,ThinkPad Laptop,1,999.99,04/19/19 01:19,"383 5th St, Dallas, TX 75001" +190419,Wired Headphones,1,11.99,04/14/19 15:17,"511 Cherry St, Boston, MA 02215" +190420,Lightning Charging Cable,1,14.95,04/08/19 22:39,"168 Walnut St, Seattle, WA 98101" +190421,34in Ultrawide Monitor,1,379.99,04/08/19 09:22,"493 Elm St, Atlanta, GA 30301" +190422,Bose SoundSport Headphones,1,99.99,04/02/19 17:06,"976 Maple St, Los Angeles, CA 90001" +190423,AA Batteries (4-pack),2,3.84,04/07/19 10:53,"723 Meadow St, Los Angeles, CA 90001" +190424,Apple Airpods Headphones,1,150,04/30/19 20:54,"900 Maple St, Austin, TX 73301" +190425,iPhone,1,700,04/03/19 15:15,"224 South St, Portland, ME 04101" +190426,Bose SoundSport Headphones,1,99.99,04/25/19 15:23,"849 Maple St, Portland, OR 97035" +190427,Bose SoundSport Headphones,1,99.99,04/29/19 06:35,"247 Park St, San Francisco, CA 94016" +190428,20in Monitor,1,109.99,04/16/19 11:26,"591 Hickory St, Los Angeles, CA 90001" +190429,Bose SoundSport Headphones,1,99.99,04/05/19 15:52,"344 Johnson St, New York City, NY 10001" +190430,iPhone,1,700,04/07/19 14:47,"290 Meadow St, Dallas, TX 75001" +190431,AAA Batteries (4-pack),2,2.99,04/23/19 00:51,"616 Lakeview St, Seattle, WA 98101" +190432,34in Ultrawide Monitor,1,379.99,04/28/19 16:01,"442 Hickory St, Los Angeles, CA 90001" +190433,Wired Headphones,1,11.99,04/21/19 03:43,"98 Park St, Boston, MA 02215" +190434,Bose SoundSport Headphones,1,99.99,04/12/19 23:19,"228 Cherry St, Dallas, TX 75001" +190435,USB-C Charging Cable,1,11.95,04/06/19 08:35,"736 Madison St, San Francisco, CA 94016" +190436,Lightning Charging Cable,1,14.95,04/18/19 09:52,"713 8th St, New York City, NY 10001" +190437,AA Batteries (4-pack),1,3.84,04/13/19 22:25,"130 Forest St, New York City, NY 10001" +190438,27in 4K Gaming Monitor,1,389.99,04/06/19 14:08,"607 Chestnut St, San Francisco, CA 94016" +190439,Flatscreen TV,1,300,04/10/19 15:46,"298 12th St, Los Angeles, CA 90001" +190440,Lightning Charging Cable,1,14.95,04/04/19 21:11,"699 Madison St, San Francisco, CA 94016" +190441,AA Batteries (4-pack),1,3.84,04/01/19 22:50,"290 2nd St, Atlanta, GA 30301" +190442,Vareebadd Phone,1,400,04/15/19 13:44,"718 River St, Portland, ME 04101" +190443,27in 4K Gaming Monitor,1,389.99,04/17/19 22:21,"573 Hickory St, San Francisco, CA 94016" +190444,AA Batteries (4-pack),1,3.84,04/27/19 22:38,"671 Main St, Los Angeles, CA 90001" +190445,USB-C Charging Cable,1,11.95,04/08/19 14:54,"619 Sunset St, Boston, MA 02215" +190446,AA Batteries (4-pack),1,3.84,04/24/19 11:40,"576 North St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +190447,27in FHD Monitor,1,149.99,04/06/19 00:37,"979 Main St, Seattle, WA 98101" +190448,AA Batteries (4-pack),1,3.84,04/14/19 17:52,"478 Highland St, New York City, NY 10001" +190449,AA Batteries (4-pack),1,3.84,04/23/19 20:52,"830 Forest St, Dallas, TX 75001" +190450,AAA Batteries (4-pack),4,2.99,04/02/19 16:34,"117 Elm St, San Francisco, CA 94016" +190451,USB-C Charging Cable,1,11.95,04/04/19 11:02,"163 1st St, San Francisco, CA 94016" +190452,USB-C Charging Cable,1,11.95,04/04/19 13:58,"556 Center St, New York City, NY 10001" +190453,Lightning Charging Cable,1,14.95,04/19/19 11:25,"692 Spruce St, San Francisco, CA 94016" +190454,AA Batteries (4-pack),1,3.84,04/26/19 23:51,"840 Pine St, San Francisco, CA 94016" +190455,Macbook Pro Laptop,1,1700,04/23/19 17:24,"579 Washington St, Atlanta, GA 30301" +190456,USB-C Charging Cable,1,11.95,04/17/19 10:21,"205 Jefferson St, Boston, MA 02215" +190457,AA Batteries (4-pack),1,3.84,04/13/19 12:15,"705 Cherry St, Austin, TX 73301" +190458,Wired Headphones,1,11.99,04/07/19 11:39,"221 14th St, Atlanta, GA 30301" +190459,Lightning Charging Cable,1,14.95,04/11/19 13:53,"205 Forest St, Atlanta, GA 30301" +190460,Apple Airpods Headphones,1,150,04/23/19 14:20,"477 Jackson St, New York City, NY 10001" +190461,AAA Batteries (4-pack),1,2.99,04/05/19 09:46,"944 Willow St, Seattle, WA 98101" +190462,Apple Airpods Headphones,1,150,04/06/19 20:03,"229 Center St, Boston, MA 02215" +190463,USB-C Charging Cable,1,11.95,04/30/19 11:39,"493 Maple St, San Francisco, CA 94016" +190464,USB-C Charging Cable,1,11.95,04/25/19 21:09,"838 5th St, New York City, NY 10001" +190464,AAA Batteries (4-pack),1,2.99,04/25/19 21:09,"838 5th St, New York City, NY 10001" +190465,Apple Airpods Headphones,1,150,04/18/19 17:09,"132 6th St, Los Angeles, CA 90001" +190466,27in FHD Monitor,1,149.99,04/03/19 20:05,"348 Wilson St, Austin, TX 73301" +190467,Wired Headphones,1,11.99,04/11/19 20:43,"670 Hickory St, Austin, TX 73301" +190468,AA Batteries (4-pack),1,3.84,04/05/19 19:48,"691 Highland St, Portland, OR 97035" +190469,AA Batteries (4-pack),1,3.84,04/04/19 14:33,"399 Madison St, Atlanta, GA 30301" +190470,Wired Headphones,1,11.99,04/08/19 19:01,"104 Cherry St, San Francisco, CA 94016" +190471,AAA Batteries (4-pack),2,2.99,04/18/19 13:58,"383 Hickory St, Boston, MA 02215" +190472,USB-C Charging Cable,1,11.95,04/14/19 15:33,"559 Wilson St, Seattle, WA 98101" +190473,27in 4K Gaming Monitor,1,389.99,04/03/19 16:12,"93 2nd St, Los Angeles, CA 90001" +190474,AAA Batteries (4-pack),2,2.99,04/21/19 15:43,"194 Elm St, San Francisco, CA 94016" +190475,USB-C Charging Cable,1,11.95,04/11/19 22:25,"203 Meadow St, San Francisco, CA 94016" +190476,27in FHD Monitor,1,149.99,04/12/19 02:09,"737 Lincoln St, San Francisco, CA 94016" +190477,Wired Headphones,1,11.99,04/28/19 18:41,"530 7th St, Atlanta, GA 30301" +190478,AAA Batteries (4-pack),3,2.99,04/06/19 19:02,"617 Dogwood St, Portland, OR 97035" +190479,AAA Batteries (4-pack),1,2.99,04/21/19 11:01,"533 South St, San Francisco, CA 94016" +190480,Lightning Charging Cable,1,14.95,04/29/19 11:24,"90 Hickory St, Dallas, TX 75001" +190481,Flatscreen TV,1,300,04/07/19 21:57,"300 7th St, Dallas, TX 75001" +190482,AAA Batteries (4-pack),2,2.99,04/17/19 18:20,"13 6th St, Atlanta, GA 30301" +190483,AAA Batteries (4-pack),1,2.99,04/03/19 16:17,"996 13th St, San Francisco, CA 94016" +190484,USB-C Charging Cable,1,11.95,04/17/19 19:11,"98 Chestnut St, Boston, MA 02215" +190485,Macbook Pro Laptop,1,1700,04/16/19 15:48,"486 Wilson St, New York City, NY 10001" +190486,AA Batteries (4-pack),1,3.84,04/14/19 16:24,"470 6th St, Los Angeles, CA 90001" +190487,27in 4K Gaming Monitor,1,389.99,04/17/19 11:20,"502 13th St, Dallas, TX 75001" +190488,Bose SoundSport Headphones,1,99.99,04/30/19 10:52,"463 Maple St, New York City, NY 10001" +190489,AA Batteries (4-pack),2,3.84,04/07/19 01:47,"211 Ridge St, Los Angeles, CA 90001" +190490,34in Ultrawide Monitor,1,379.99,04/02/19 23:17,"241 Elm St, Atlanta, GA 30301" +190491,USB-C Charging Cable,1,11.95,04/16/19 18:10,"429 Adams St, Los Angeles, CA 90001" +190492,USB-C Charging Cable,1,11.95,04/05/19 16:54,"518 Center St, San Francisco, CA 94016" +190493,USB-C Charging Cable,1,11.95,04/26/19 18:44,"35 Spruce St, Seattle, WA 98101" +190494,AAA Batteries (4-pack),2,2.99,04/20/19 18:37,"376 Sunset St, Atlanta, GA 30301" +190495,Bose SoundSport Headphones,1,99.99,04/25/19 19:10,"691 Pine St, Boston, MA 02215" +190496,AA Batteries (4-pack),1,3.84,04/24/19 10:23,"338 4th St, Boston, MA 02215" +190497,Lightning Charging Cable,1,14.95,04/28/19 14:17,"719 Main St, San Francisco, CA 94016" +190498,USB-C Charging Cable,1,11.95,04/14/19 20:02,"954 Johnson St, San Francisco, CA 94016" +190499,20in Monitor,1,109.99,04/21/19 15:35,"127 10th St, New York City, NY 10001" +190500,Lightning Charging Cable,1,14.95,04/21/19 19:31,"314 West St, Atlanta, GA 30301" +190501,Lightning Charging Cable,1,14.95,04/02/19 09:02,"754 11th St, New York City, NY 10001" +190502,Wired Headphones,1,11.99,04/12/19 19:03,"98 Johnson St, San Francisco, CA 94016" +190503,Vareebadd Phone,1,400,04/27/19 15:30,"14 Johnson St, Los Angeles, CA 90001" +190503,Bose SoundSport Headphones,1,99.99,04/27/19 15:30,"14 Johnson St, Los Angeles, CA 90001" +190504,Wired Headphones,1,11.99,04/26/19 12:14,"849 North St, Dallas, TX 75001" +190505,iPhone,1,700,04/12/19 09:40,"356 West St, Austin, TX 73301" +190506,27in 4K Gaming Monitor,1,389.99,04/28/19 11:48,"288 4th St, San Francisco, CA 94016" +190507,AA Batteries (4-pack),2,3.84,04/17/19 12:45,"516 Highland St, New York City, NY 10001" +190508,AAA Batteries (4-pack),1,2.99,04/30/19 08:21,"635 Cherry St, Boston, MA 02215" +190509,AAA Batteries (4-pack),1,2.99,04/11/19 17:27,"541 Jefferson St, Portland, OR 97035" +190510,Wired Headphones,1,11.99,04/02/19 17:37,"86 North St, San Francisco, CA 94016" +190510,Lightning Charging Cable,1,14.95,04/02/19 17:37,"86 North St, San Francisco, CA 94016" +190511,AA Batteries (4-pack),1,3.84,04/13/19 21:17,"415 Dogwood St, Los Angeles, CA 90001" +190512,Wired Headphones,1,11.99,04/04/19 18:17,"153 6th St, San Francisco, CA 94016" +190513,Google Phone,1,600,04/10/19 13:08,"111 13th St, San Francisco, CA 94016" +190514,Wired Headphones,1,11.99,04/22/19 17:35,"287 River St, Portland, OR 97035" +190515,ThinkPad Laptop,1,999.99,04/15/19 19:03,"9 10th St, Los Angeles, CA 90001" +190516,Bose SoundSport Headphones,1,99.99,04/09/19 20:49,"932 Maple St, Austin, TX 73301" +190517,34in Ultrawide Monitor,1,379.99,04/18/19 13:39,"961 14th St, San Francisco, CA 94016" +190518,USB-C Charging Cable,1,11.95,04/12/19 13:51,"555 Lincoln St, New York City, NY 10001" +190519,Apple Airpods Headphones,1,150,04/19/19 01:21,"263 Sunset St, Seattle, WA 98101" +190520,Wired Headphones,1,11.99,04/01/19 16:48,"397 Main St, Atlanta, GA 30301" +190521,Google Phone,1,600,04/26/19 22:31,"749 Pine St, Boston, MA 02215" +190521,Wired Headphones,1,11.99,04/26/19 22:31,"749 Pine St, Boston, MA 02215" +190522,ThinkPad Laptop,1,999.99,04/24/19 18:37,"987 Washington St, San Francisco, CA 94016" +190523,USB-C Charging Cable,1,11.95,04/30/19 08:03,"260 Pine St, Los Angeles, CA 90001" +190524,AAA Batteries (4-pack),1,2.99,04/17/19 07:34,"497 Forest St, Los Angeles, CA 90001" +190525,iPhone,1,700,04/28/19 14:48,"45 Cedar St, Dallas, TX 75001" +190526,ThinkPad Laptop,1,999.99,04/14/19 22:27,"107 Highland St, Los Angeles, CA 90001" +190527,Wired Headphones,1,11.99,04/28/19 23:50,"940 11th St, San Francisco, CA 94016" +190528,Apple Airpods Headphones,1,150,04/11/19 13:08,"76 Sunset St, Austin, TX 73301" +190529,Flatscreen TV,1,300,04/10/19 12:31,"823 5th St, Austin, TX 73301" +190530,Apple Airpods Headphones,1,150,04/07/19 01:51,"35 14th St, Los Angeles, CA 90001" +190531,iPhone,1,700,04/20/19 15:13,"969 Maple St, Dallas, TX 75001" +190531,Lightning Charging Cable,1,14.95,04/20/19 15:13,"969 Maple St, Dallas, TX 75001" +190532,Wired Headphones,1,11.99,04/06/19 23:38,"272 Willow St, Atlanta, GA 30301" +190533,Flatscreen TV,1,300,04/22/19 19:43,"496 Main St, Dallas, TX 75001" +190534,AA Batteries (4-pack),1,3.84,04/13/19 04:31,"276 14th St, Atlanta, GA 30301" +190535,Lightning Charging Cable,1,14.95,04/11/19 07:37,"275 5th St, San Francisco, CA 94016" +190536,Bose SoundSport Headphones,1,99.99,04/15/19 18:58,"446 Hickory St, Atlanta, GA 30301" +190537,Wired Headphones,1,11.99,04/15/19 15:22,"950 Pine St, San Francisco, CA 94016" +190538,Google Phone,1,600,04/29/19 20:09,"367 8th St, Boston, MA 02215" +190539,Apple Airpods Headphones,1,150,04/08/19 18:40,"163 4th St, Los Angeles, CA 90001" +190540,Bose SoundSport Headphones,1,99.99,04/06/19 15:31,"327 Chestnut St, Seattle, WA 98101" +190541,Lightning Charging Cable,1,14.95,04/13/19 10:38,"709 Willow St, San Francisco, CA 94016" +190542,USB-C Charging Cable,1,11.95,04/23/19 16:03,"612 Maple St, Austin, TX 73301" +190543,Lightning Charging Cable,1,14.95,04/15/19 18:47,"746 Cedar St, Boston, MA 02215" +190544,Bose SoundSport Headphones,1,99.99,04/01/19 22:01,"395 Wilson St, New York City, NY 10001" +190544,AA Batteries (4-pack),1,3.84,04/01/19 22:01,"395 Wilson St, New York City, NY 10001" +190545,Vareebadd Phone,1,400,04/24/19 20:08,"150 14th St, Los Angeles, CA 90001" +190546,AAA Batteries (4-pack),1,2.99,04/30/19 11:37,"716 Washington St, New York City, NY 10001" +190547,USB-C Charging Cable,1,11.95,04/14/19 13:16,"818 Forest St, San Francisco, CA 94016" +190548,iPhone,1,700,04/15/19 23:34,"745 Maple St, Atlanta, GA 30301" +190549,Wired Headphones,1,11.99,04/25/19 08:36,"194 Walnut St, San Francisco, CA 94016" +190550,Apple Airpods Headphones,1,150,04/21/19 22:30,"342 Church St, Los Angeles, CA 90001" +190551,AAA Batteries (4-pack),1,2.99,04/26/19 10:19,"326 Johnson St, San Francisco, CA 94016" +190552,AA Batteries (4-pack),1,3.84,04/28/19 20:11,"269 North St, Los Angeles, CA 90001" +190553,ThinkPad Laptop,1,999.99,04/20/19 12:11,"379 Jackson St, Boston, MA 02215" +190554,iPhone,1,700,04/20/19 11:34,"774 Sunset St, San Francisco, CA 94016" +190554,Lightning Charging Cable,1,14.95,04/20/19 11:34,"774 Sunset St, San Francisco, CA 94016" +190555,AA Batteries (4-pack),1,3.84,04/29/19 21:03,"686 6th St, Seattle, WA 98101" +190556,Wired Headphones,1,11.99,04/11/19 12:37,"980 13th St, San Francisco, CA 94016" +190557,AAA Batteries (4-pack),1,2.99,04/14/19 22:29,"576 Highland St, San Francisco, CA 94016" +190558,AAA Batteries (4-pack),2,2.99,04/04/19 14:49,"847 Walnut St, Boston, MA 02215" +190559,Macbook Pro Laptop,1,1700,04/01/19 12:19,"776 10th St, Atlanta, GA 30301" +190560,AA Batteries (4-pack),1,3.84,04/05/19 09:35,"936 Elm St, Seattle, WA 98101" +190561,Google Phone,1,600,04/02/19 23:01,"726 Jackson St, Los Angeles, CA 90001" +190562,AAA Batteries (4-pack),1,2.99,04/23/19 14:13,"669 Pine St, San Francisco, CA 94016" +190563,USB-C Charging Cable,1,11.95,04/14/19 17:20,"829 12th St, San Francisco, CA 94016" +190564,Bose SoundSport Headphones,1,99.99,04/26/19 18:03,"646 West St, San Francisco, CA 94016" +190564,iPhone,1,700,04/26/19 18:03,"646 West St, San Francisco, CA 94016" +190565,AA Batteries (4-pack),2,3.84,04/10/19 23:43,"743 12th St, Los Angeles, CA 90001" +190566,Lightning Charging Cable,1,14.95,04/07/19 18:31,"65 Jackson St, Los Angeles, CA 90001" +190567,Lightning Charging Cable,2,14.95,04/01/19 12:22,"832 Wilson St, New York City, NY 10001" +190568,Lightning Charging Cable,1,14.95,04/03/19 11:46,"139 Willow St, Dallas, TX 75001" +190569,27in FHD Monitor,1,149.99,04/01/19 15:09,"445 Park St, New York City, NY 10001" +190570,Lightning Charging Cable,1,14.95,04/08/19 19:09,"526 4th St, Los Angeles, CA 90001" +190571,Wired Headphones,2,11.99,04/19/19 08:45,"467 12th St, Boston, MA 02215" +190572,AA Batteries (4-pack),2,3.84,04/13/19 11:12,"934 Meadow St, New York City, NY 10001" +190573,AA Batteries (4-pack),2,3.84,04/30/19 22:00,"331 River St, San Francisco, CA 94016" +190574,Vareebadd Phone,1,400,04/21/19 07:37,"645 Sunset St, Los Angeles, CA 90001" +190575,Apple Airpods Headphones,1,150,04/27/19 10:34,"940 14th St, Atlanta, GA 30301" +190576,Lightning Charging Cable,1,14.95,04/12/19 22:56,"815 Cherry St, Boston, MA 02215" +190577,Macbook Pro Laptop,1,1700,04/25/19 18:03,"224 South St, New York City, NY 10001" +190578,Vareebadd Phone,1,400,04/05/19 19:44,"274 Jackson St, Seattle, WA 98101" +190579,20in Monitor,1,109.99,04/16/19 09:34,"991 Lakeview St, Seattle, WA 98101" +190580,Apple Airpods Headphones,1,150,04/16/19 06:10,"440 Elm St, Seattle, WA 98101" +190581,USB-C Charging Cable,1,11.95,04/20/19 12:43,"891 Park St, Seattle, WA 98101" +190582,Macbook Pro Laptop,1,1700,04/27/19 17:26,"396 Elm St, Seattle, WA 98101" +190583,USB-C Charging Cable,2,11.95,04/05/19 07:48,"449 6th St, San Francisco, CA 94016" +190584,Apple Airpods Headphones,1,150,04/06/19 12:27,"3 12th St, Boston, MA 02215" +190585,Flatscreen TV,1,300,04/11/19 16:21,"304 Lakeview St, New York City, NY 10001" +190586,Lightning Charging Cable,1,14.95,04/09/19 22:12,"869 Center St, Los Angeles, CA 90001" +190587,Google Phone,1,600,04/03/19 15:15,"584 Hickory St, New York City, NY 10001" +190588,USB-C Charging Cable,1,11.95,04/02/19 15:23,"559 Washington St, Boston, MA 02215" +190588,20in Monitor,1,109.99,04/02/19 15:23,"559 Washington St, Boston, MA 02215" +190589,AA Batteries (4-pack),2,3.84,04/27/19 23:31,"421 Adams St, San Francisco, CA 94016" +190590,AAA Batteries (4-pack),1,2.99,04/13/19 09:13,"349 Meadow St, Atlanta, GA 30301" +190591,34in Ultrawide Monitor,1,379.99,04/11/19 10:56,"910 Forest St, Austin, TX 73301" +190592,Wired Headphones,1,11.99,04/16/19 09:20,"412 Willow St, Atlanta, GA 30301" +190593,Flatscreen TV,1,300,04/30/19 22:40,"468 North St, San Francisco, CA 94016" +190594,27in 4K Gaming Monitor,1,389.99,04/15/19 11:44,"815 Forest St, San Francisco, CA 94016" +190595,AAA Batteries (4-pack),4,2.99,04/19/19 20:53,"488 14th St, Atlanta, GA 30301" +190596,Wired Headphones,1,11.99,04/06/19 19:56,"176 Maple St, Los Angeles, CA 90001" +190597,27in FHD Monitor,1,149.99,04/29/19 03:25,"565 Washington St, Portland, OR 97035" +190598,USB-C Charging Cable,1,11.95,04/27/19 10:19,"624 Park St, New York City, NY 10001" +190599,iPhone,1,700,04/27/19 09:39,"509 7th St, Portland, ME 04101" +190600,Lightning Charging Cable,1,14.95,04/01/19 19:57,"972 North St, Los Angeles, CA 90001" +190601,USB-C Charging Cable,1,11.95,04/08/19 10:14,"873 Spruce St, Austin, TX 73301" +190602,USB-C Charging Cable,1,11.95,04/24/19 10:22,"542 6th St, Austin, TX 73301" +190603,Flatscreen TV,1,300,04/18/19 17:05,"926 2nd St, Los Angeles, CA 90001" +190604,Bose SoundSport Headphones,1,99.99,04/22/19 15:42,"329 Cherry St, Los Angeles, CA 90001" +190605,USB-C Charging Cable,1,11.95,04/25/19 21:15,"102 12th St, San Francisco, CA 94016" +190606,AAA Batteries (4-pack),1,2.99,04/27/19 19:39,"977 8th St, Boston, MA 02215" +190607,AA Batteries (4-pack),1,3.84,04/12/19 12:45,"758 Park St, New York City, NY 10001" +190608,AAA Batteries (4-pack),1,2.99,04/26/19 11:14,"703 River St, Austin, TX 73301" +190609,Wired Headphones,1,11.99,04/30/19 22:35,"280 10th St, San Francisco, CA 94016" +190610,27in FHD Monitor,1,149.99,04/21/19 21:41,"656 Lakeview St, Atlanta, GA 30301" +190611,USB-C Charging Cable,1,11.95,04/12/19 20:57,"61 Madison St, San Francisco, CA 94016" +190612,AA Batteries (4-pack),1,3.84,04/20/19 16:37,"854 Sunset St, New York City, NY 10001" +190613,ThinkPad Laptop,1,999.99,04/24/19 01:15,"947 4th St, New York City, NY 10001" +190614,Lightning Charging Cable,1,14.95,04/20/19 02:10,"18 Sunset St, Los Angeles, CA 90001" +190615,Wired Headphones,1,11.99,04/27/19 18:45,"160 Forest St, Seattle, WA 98101" +,,,,, +190616,iPhone,1,700,04/07/19 17:35,"841 Maple St, Portland, OR 97035" +190617,Lightning Charging Cable,1,14.95,04/29/19 13:45,"385 12th St, San Francisco, CA 94016" +190618,20in Monitor,1,109.99,04/07/19 02:13,"564 Johnson St, Atlanta, GA 30301" +190619,AAA Batteries (4-pack),1,2.99,04/07/19 19:56,"575 4th St, Los Angeles, CA 90001" +190620,AAA Batteries (4-pack),2,2.99,04/26/19 11:39,"386 Chestnut St, Atlanta, GA 30301" +190621,Lightning Charging Cable,1,14.95,04/04/19 13:51,"57 Cedar St, Portland, ME 04101" +190622,Wired Headphones,2,11.99,04/14/19 13:57,"107 Walnut St, Atlanta, GA 30301" +190623,USB-C Charging Cable,1,11.95,04/10/19 21:39,"793 4th St, Dallas, TX 75001" +190624,USB-C Charging Cable,1,11.95,04/24/19 12:19,"351 9th St, San Francisco, CA 94016" +190625,Lightning Charging Cable,3,14.95,04/25/19 16:50,"713 Elm St, Boston, MA 02215" +190626,27in FHD Monitor,1,149.99,04/05/19 13:42,"431 West St, Boston, MA 02215" +190627,AA Batteries (4-pack),3,3.84,04/12/19 09:39,"874 Church St, San Francisco, CA 94016" +190628,AAA Batteries (4-pack),1,2.99,04/08/19 17:03,"334 Highland St, Boston, MA 02215" +190629,USB-C Charging Cable,1,11.95,04/13/19 15:18,"710 4th St, Los Angeles, CA 90001" +190630,AA Batteries (4-pack),1,3.84,04/05/19 10:28,"106 Center St, Los Angeles, CA 90001" +190631,ThinkPad Laptop,1,999.99,04/12/19 17:40,"144 Wilson St, Los Angeles, CA 90001" +190632,Wired Headphones,1,11.99,04/27/19 08:29,"674 Chestnut St, Atlanta, GA 30301" +190633,AAA Batteries (4-pack),2,2.99,04/23/19 09:52,"62 Center St, Seattle, WA 98101" +190634,Wired Headphones,1,11.99,04/01/19 09:03,"939 Washington St, Seattle, WA 98101" +190635,AA Batteries (4-pack),1,3.84,04/12/19 09:46,"88 Walnut St, Atlanta, GA 30301" +190636,20in Monitor,1,109.99,04/03/19 15:31,"67 Cherry St, Atlanta, GA 30301" +190637,Wired Headphones,1,11.99,04/22/19 10:55,"145 Sunset St, San Francisco, CA 94016" +190638,Macbook Pro Laptop,1,1700,04/21/19 16:40,"546 8th St, San Francisco, CA 94016" +190639,34in Ultrawide Monitor,1,379.99,04/25/19 18:06,"353 Sunset St, Los Angeles, CA 90001" +190640,27in FHD Monitor,1,149.99,04/22/19 01:17,"116 8th St, Boston, MA 02215" +190641,Apple Airpods Headphones,1,150,04/23/19 18:59,"106 Park St, New York City, NY 10001" +190642,Apple Airpods Headphones,1,150,04/27/19 19:10,"386 Dogwood St, Seattle, WA 98101" +190643,AAA Batteries (4-pack),2,2.99,04/21/19 13:17,"721 Chestnut St, New York City, NY 10001" +190644,Vareebadd Phone,1,400,04/09/19 23:13,"195 Willow St, San Francisco, CA 94016" +190644,USB-C Charging Cable,1,11.95,04/09/19 23:13,"195 Willow St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +190645,27in FHD Monitor,1,149.99,04/18/19 16:34,"444 Ridge St, Seattle, WA 98101" +190646,Wired Headphones,1,11.99,04/24/19 23:38,"514 Forest St, Atlanta, GA 30301" +190647,AAA Batteries (4-pack),2,2.99,04/23/19 18:05,"271 Lake St, San Francisco, CA 94016" +190648,34in Ultrawide Monitor,1,379.99,04/19/19 19:27,"713 Cedar St, Seattle, WA 98101" +190649,AAA Batteries (4-pack),3,2.99,04/15/19 12:12,"27 Forest St, Dallas, TX 75001" +190650,Wired Headphones,1,11.99,04/30/19 19:39,"640 Wilson St, San Francisco, CA 94016" +190651,AAA Batteries (4-pack),1,2.99,04/30/19 16:26,"541 Church St, San Francisco, CA 94016" +190652,Google Phone,1,600,04/03/19 17:29,"301 Chestnut St, San Francisco, CA 94016" +190652,USB-C Charging Cable,1,11.95,04/03/19 17:29,"301 Chestnut St, San Francisco, CA 94016" +190653,27in 4K Gaming Monitor,1,389.99,04/07/19 08:28,"524 Lincoln St, Los Angeles, CA 90001" +190654,Apple Airpods Headphones,1,150,04/27/19 20:48,"165 North St, Seattle, WA 98101" +190655,AA Batteries (4-pack),2,3.84,04/25/19 13:27,"550 South St, San Francisco, CA 94016" +190656,AA Batteries (4-pack),1,3.84,04/27/19 10:22,"460 Sunset St, Dallas, TX 75001" +190657,Flatscreen TV,1,300,04/07/19 10:10,"293 7th St, San Francisco, CA 94016" +190658,AA Batteries (4-pack),1,3.84,04/04/19 21:55,"481 Willow St, Los Angeles, CA 90001" +190659,AAA Batteries (4-pack),2,2.99,04/20/19 21:54,"160 Pine St, Los Angeles, CA 90001" +190660,Apple Airpods Headphones,1,150,04/22/19 12:04,"755 Church St, San Francisco, CA 94016" +190661,Bose SoundSport Headphones,1,99.99,04/16/19 23:35,"351 Hickory St, San Francisco, CA 94016" +190662,AA Batteries (4-pack),1,3.84,04/04/19 18:22,"94 13th St, Austin, TX 73301" +190663,Apple Airpods Headphones,1,150,04/01/19 17:50,"43 Cedar St, San Francisco, CA 94016" +190664,34in Ultrawide Monitor,1,379.99,04/10/19 15:58,"80 Madison St, Atlanta, GA 30301" +190665,Apple Airpods Headphones,1,150,04/22/19 17:51,"581 Johnson St, San Francisco, CA 94016" +190666,Apple Airpods Headphones,1,150,04/22/19 22:40,"136 Cherry St, San Francisco, CA 94016" +190667,USB-C Charging Cable,1,11.95,04/12/19 16:26,"626 Park St, Seattle, WA 98101" +190668,20in Monitor,1,109.99,04/27/19 22:22,"535 River St, San Francisco, CA 94016" +190669,27in FHD Monitor,1,149.99,04/07/19 17:41,"540 Meadow St, Austin, TX 73301" +190670,20in Monitor,1,109.99,04/22/19 11:33,"43 Jackson St, New York City, NY 10001" +190671,Lightning Charging Cable,1,14.95,04/03/19 10:15,"82 Forest St, Los Angeles, CA 90001" +190672,Vareebadd Phone,1,400,04/22/19 15:09,"545 Dogwood St, Atlanta, GA 30301" +190672,USB-C Charging Cable,1,11.95,04/22/19 15:09,"545 Dogwood St, Atlanta, GA 30301" +190673,AA Batteries (4-pack),1,3.84,04/30/19 18:07,"361 13th St, Dallas, TX 75001" +190674,USB-C Charging Cable,1,11.95,04/25/19 19:41,"705 Jackson St, Dallas, TX 75001" +190675,Lightning Charging Cable,1,14.95,04/25/19 22:13,"608 2nd St, New York City, NY 10001" +190676,Wired Headphones,1,11.99,04/28/19 20:23,"237 South St, San Francisco, CA 94016" +190677,Apple Airpods Headphones,1,150,04/09/19 14:23,"599 Walnut St, San Francisco, CA 94016" +190678,AA Batteries (4-pack),1,3.84,04/29/19 07:41,"846 Maple St, San Francisco, CA 94016" +190679,Google Phone,1,600,04/02/19 11:22,"980 Lake St, Boston, MA 02215" +190679,USB-C Charging Cable,1,11.95,04/02/19 11:22,"980 Lake St, Boston, MA 02215" +190680,27in 4K Gaming Monitor,1,389.99,04/29/19 20:25,"235 Sunset St, San Francisco, CA 94016" +190681,Wired Headphones,1,11.99,04/06/19 16:27,"949 6th St, Boston, MA 02215" +190682,iPhone,1,700,04/02/19 21:39,"474 Maple St, Dallas, TX 75001" +190682,Wired Headphones,1,11.99,04/02/19 21:39,"474 Maple St, Dallas, TX 75001" +190683,AA Batteries (4-pack),1,3.84,04/07/19 09:29,"769 Hill St, San Francisco, CA 94016" +190684,Wired Headphones,1,11.99,04/22/19 10:31,"149 Willow St, Portland, OR 97035" +190685,Lightning Charging Cable,1,14.95,04/14/19 19:55,"775 4th St, Los Angeles, CA 90001" +190686,USB-C Charging Cable,1,11.95,04/30/19 22:11,"489 7th St, Portland, OR 97035" +190687,USB-C Charging Cable,1,11.95,04/12/19 13:01,"188 Cedar St, New York City, NY 10001" +190688,USB-C Charging Cable,1,11.95,04/13/19 16:48,"721 South St, San Francisco, CA 94016" +190689,iPhone,1,700,04/20/19 19:44,"867 River St, New York City, NY 10001" +190690,Lightning Charging Cable,1,14.95,04/19/19 18:46,"869 2nd St, Boston, MA 02215" +190691,ThinkPad Laptop,1,999.99,04/06/19 18:35,"705 Main St, Atlanta, GA 30301" +190692,AA Batteries (4-pack),1,3.84,04/02/19 16:47,"539 1st St, Los Angeles, CA 90001" +190693,AA Batteries (4-pack),1,3.84,04/10/19 10:41,"217 13th St, Los Angeles, CA 90001" +190694,Lightning Charging Cable,1,14.95,04/05/19 18:30,"957 8th St, Seattle, WA 98101" +190695,LG Dryer,1,600.0,04/15/19 10:13,"506 Meadow St, Atlanta, GA 30301" +190696,Macbook Pro Laptop,1,1700,04/05/19 12:02,"290 Lincoln St, Austin, TX 73301" +190697,Lightning Charging Cable,1,14.95,04/11/19 23:02,"929 Walnut St, Seattle, WA 98101" +190698,34in Ultrawide Monitor,1,379.99,04/12/19 20:11,"465 Center St, Seattle, WA 98101" +190699,AAA Batteries (4-pack),1,2.99,04/29/19 00:19,"507 Hickory St, San Francisco, CA 94016" +190700,AA Batteries (4-pack),1,3.84,04/30/19 16:07,"173 Church St, San Francisco, CA 94016" +190701,27in FHD Monitor,1,149.99,04/04/19 09:56,"8 Ridge St, Seattle, WA 98101" +190702,AAA Batteries (4-pack),1,2.99,04/23/19 21:12,"596 Sunset St, Los Angeles, CA 90001" +190703,AA Batteries (4-pack),1,3.84,04/04/19 19:34,"573 Forest St, Los Angeles, CA 90001" +190704,AA Batteries (4-pack),1,3.84,04/12/19 12:25,"373 Washington St, New York City, NY 10001" +190705,Lightning Charging Cable,1,14.95,04/20/19 14:54,"785 8th St, Seattle, WA 98101" +190706,AA Batteries (4-pack),3,3.84,04/02/19 16:38,"514 Chestnut St, San Francisco, CA 94016" +190707,ThinkPad Laptop,1,999.99,04/16/19 20:15,"298 Church St, New York City, NY 10001" +190708,AAA Batteries (4-pack),1,2.99,04/25/19 08:39,"617 Ridge St, Boston, MA 02215" +190709,20in Monitor,1,109.99,04/11/19 16:30,"708 6th St, Atlanta, GA 30301" +190710,AAA Batteries (4-pack),1,2.99,04/01/19 11:45,"900 Cherry St, Atlanta, GA 30301" +190711,Bose SoundSport Headphones,1,99.99,04/29/19 14:25,"677 10th St, Los Angeles, CA 90001" +190712,AA Batteries (4-pack),1,3.84,04/24/19 18:31,"100 Meadow St, San Francisco, CA 94016" +190713,iPhone,1,700,04/08/19 12:42,"116 1st St, Dallas, TX 75001" +190714,AA Batteries (4-pack),2,3.84,04/21/19 22:48,"550 Cherry St, San Francisco, CA 94016" +190715,Lightning Charging Cable,1,14.95,04/06/19 09:57,"911 Johnson St, New York City, NY 10001" +190716,27in FHD Monitor,1,149.99,04/08/19 13:57,"708 Park St, Seattle, WA 98101" +190717,USB-C Charging Cable,1,11.95,04/01/19 13:53,"841 Meadow St, Los Angeles, CA 90001" +190718,AAA Batteries (4-pack),2,2.99,04/06/19 20:16,"182 Cherry St, Boston, MA 02215" +190719,AA Batteries (4-pack),1,3.84,04/25/19 06:20,"25 Spruce St, Portland, OR 97035" +190720,USB-C Charging Cable,1,11.95,04/05/19 20:27,"68 Elm St, Los Angeles, CA 90001" +190721,34in Ultrawide Monitor,1,379.99,04/06/19 11:51,"244 6th St, Seattle, WA 98101" +190722,AA Batteries (4-pack),1,3.84,04/25/19 18:43,"621 Adams St, Seattle, WA 98101" +190723,Apple Airpods Headphones,1,150,04/19/19 11:52,"590 13th St, Portland, OR 97035" +190724,AAA Batteries (4-pack),1,2.99,04/19/19 15:03,"575 Lincoln St, Atlanta, GA 30301" +190725,Bose SoundSport Headphones,1,99.99,04/22/19 13:44,"206 Walnut St, Seattle, WA 98101" +190726,AA Batteries (4-pack),1,3.84,04/03/19 19:33,"725 Wilson St, Dallas, TX 75001" +190727,USB-C Charging Cable,1,11.95,04/29/19 15:17,"460 Sunset St, Dallas, TX 75001" +190728,AA Batteries (4-pack),1,3.84,04/19/19 16:39,"32 10th St, Atlanta, GA 30301" +190729,Flatscreen TV,1,300,04/19/19 17:01,"217 Cedar St, Atlanta, GA 30301" +190730,Wired Headphones,1,11.99,04/10/19 13:22,"829 6th St, San Francisco, CA 94016" +190731,AA Batteries (4-pack),2,3.84,04/01/19 16:15,"354 Dogwood St, Dallas, TX 75001" +190732,LG Dryer,1,600.0,04/10/19 16:27,"923 5th St, Los Angeles, CA 90001" +190733,AAA Batteries (4-pack),1,2.99,04/18/19 13:52,"830 West St, Seattle, WA 98101" +190734,Lightning Charging Cable,1,14.95,04/29/19 11:59,"471 Cherry St, Boston, MA 02215" +190735,AAA Batteries (4-pack),5,2.99,04/24/19 18:02,"178 Washington St, Los Angeles, CA 90001" +190735,Lightning Charging Cable,1,14.95,04/24/19 18:02,"178 Washington St, Los Angeles, CA 90001" +190736,USB-C Charging Cable,1,11.95,04/06/19 11:17,"576 Madison St, San Francisco, CA 94016" +190737,Bose SoundSport Headphones,1,99.99,04/17/19 13:12,"938 4th St, San Francisco, CA 94016" +190738,USB-C Charging Cable,1,11.95,04/04/19 10:59,"856 Chestnut St, Portland, OR 97035" +190739,Lightning Charging Cable,1,14.95,04/23/19 17:22,"194 Jackson St, Los Angeles, CA 90001" +190740,USB-C Charging Cable,1,11.95,04/20/19 18:53,"243 Cedar St, New York City, NY 10001" +190741,Wired Headphones,1,11.99,04/05/19 20:25,"11 South St, San Francisco, CA 94016" +190742,USB-C Charging Cable,1,11.95,04/07/19 11:09,"846 12th St, New York City, NY 10001" +190743,ThinkPad Laptop,1,999.99,04/25/19 12:08,"797 Spruce St, New York City, NY 10001" +190744,Wired Headphones,1,11.99,04/11/19 00:10,"254 5th St, San Francisco, CA 94016" +190745,34in Ultrawide Monitor,1,379.99,04/05/19 20:48,"460 Dogwood St, Los Angeles, CA 90001" +190746,ThinkPad Laptop,1,999.99,04/30/19 22:02,"328 Church St, Atlanta, GA 30301" +190747,USB-C Charging Cable,1,11.95,04/19/19 15:30,"671 10th St, San Francisco, CA 94016" +190748,AAA Batteries (4-pack),2,2.99,04/18/19 18:10,"337 Pine St, Portland, OR 97035" +190749,Wired Headphones,2,11.99,04/08/19 17:43,"397 6th St, Dallas, TX 75001" +190750,AAA Batteries (4-pack),1,2.99,04/23/19 12:21,"118 Cherry St, San Francisco, CA 94016" +190751,Google Phone,1,600,04/06/19 14:50,"892 Forest St, San Francisco, CA 94016" +190752,AA Batteries (4-pack),1,3.84,04/08/19 17:27,"528 Ridge St, Seattle, WA 98101" +190753,Google Phone,1,600,04/18/19 18:51,"826 Hickory St, San Francisco, CA 94016" +190754,27in FHD Monitor,1,149.99,04/23/19 13:21,"980 North St, Boston, MA 02215" +190755,USB-C Charging Cable,1,11.95,04/14/19 22:43,"590 5th St, New York City, NY 10001" +190756,AA Batteries (4-pack),2,3.84,04/02/19 11:15,"334 12th St, Los Angeles, CA 90001" +190757,Lightning Charging Cable,1,14.95,04/28/19 15:51,"690 Jefferson St, Austin, TX 73301" +190758,AA Batteries (4-pack),1,3.84,04/13/19 08:02,"598 6th St, New York City, NY 10001" +190759,USB-C Charging Cable,1,11.95,04/14/19 18:34,"372 6th St, New York City, NY 10001" +190760,Apple Airpods Headphones,1,150,04/13/19 11:29,"554 Park St, Dallas, TX 75001" +190761,ThinkPad Laptop,1,999.99,04/16/19 12:34,"400 Ridge St, San Francisco, CA 94016" +190762,Bose SoundSport Headphones,1,99.99,04/02/19 20:35,"328 Forest St, Seattle, WA 98101" +190763,Wired Headphones,1,11.99,04/29/19 17:56,"596 Adams St, Portland, OR 97035" +190764,ThinkPad Laptop,1,999.99,04/23/19 07:41,"732 11th St, New York City, NY 10001" +190765,AA Batteries (4-pack),1,3.84,04/01/19 11:24,"604 Johnson St, San Francisco, CA 94016" +190766,Apple Airpods Headphones,1,150,04/23/19 11:58,"898 8th St, New York City, NY 10001" +190767,iPhone,1,700,04/12/19 06:02,"656 1st St, Los Angeles, CA 90001" +190768,Bose SoundSport Headphones,1,99.99,04/26/19 15:44,"665 Adams St, New York City, NY 10001" +190769,27in FHD Monitor,1,149.99,04/19/19 08:24,"628 Sunset St, San Francisco, CA 94016" +190770,Bose SoundSport Headphones,1,99.99,04/20/19 18:28,"395 North St, Boston, MA 02215" +190771,AA Batteries (4-pack),1,3.84,04/20/19 16:10,"540 Hickory St, Atlanta, GA 30301" +190772,Lightning Charging Cable,1,14.95,04/01/19 08:21,"823 Wilson St, Los Angeles, CA 90001" +190773,Wired Headphones,1,11.99,04/30/19 20:13,"477 Sunset St, San Francisco, CA 94016" +190774,Wired Headphones,1,11.99,04/28/19 18:56,"773 Ridge St, Boston, MA 02215" +190775,AAA Batteries (4-pack),1,2.99,04/10/19 11:17,"697 13th St, San Francisco, CA 94016" +190776,Bose SoundSport Headphones,1,99.99,04/02/19 18:18,"963 Cherry St, Seattle, WA 98101" +190777,USB-C Charging Cable,1,11.95,04/22/19 11:21,"49 Ridge St, Los Angeles, CA 90001" +190778,AA Batteries (4-pack),1,3.84,04/25/19 10:59,"773 Walnut St, San Francisco, CA 94016" +190779,Lightning Charging Cable,1,14.95,04/01/19 20:59,"195 Jackson St, San Francisco, CA 94016" +190780,Google Phone,1,600,04/09/19 19:17,"155 2nd St, San Francisco, CA 94016" +190781,iPhone,1,700,04/21/19 17:33,"16 4th St, Dallas, TX 75001" +190782,AAA Batteries (4-pack),1,2.99,04/17/19 23:03,"96 14th St, Dallas, TX 75001" +190782,AAA Batteries (4-pack),1,2.99,04/17/19 23:03,"96 14th St, Dallas, TX 75001" +190783,Lightning Charging Cable,1,14.95,04/22/19 14:45,"599 9th St, Austin, TX 73301" +190784,AA Batteries (4-pack),1,3.84,04/30/19 18:26,"354 Park St, San Francisco, CA 94016" +190785,Bose SoundSport Headphones,1,99.99,04/04/19 07:25,"40 Chestnut St, Los Angeles, CA 90001" +190786,Lightning Charging Cable,1,14.95,04/23/19 12:26,"47 6th St, Dallas, TX 75001" +190787,Flatscreen TV,1,300,04/06/19 15:24,"721 Jackson St, San Francisco, CA 94016" +190788,AAA Batteries (4-pack),4,2.99,04/29/19 06:19,"964 8th St, Los Angeles, CA 90001" +190789,34in Ultrawide Monitor,1,379.99,04/16/19 12:12,"42 Ridge St, Boston, MA 02215" +190790,USB-C Charging Cable,1,11.95,04/18/19 16:28,"78 River St, New York City, NY 10001" +190791,Lightning Charging Cable,1,14.95,04/22/19 14:20,"672 Walnut St, Portland, OR 97035" +190792,27in FHD Monitor,1,149.99,04/29/19 17:33,"144 Maple St, San Francisco, CA 94016" +190793,USB-C Charging Cable,1,11.95,04/29/19 02:38,"622 Sunset St, Seattle, WA 98101" +190794,Lightning Charging Cable,2,14.95,04/27/19 17:55,"46 Dogwood St, Los Angeles, CA 90001" +190795,ThinkPad Laptop,1,999.99,04/01/19 23:19,"564 Washington St, Seattle, WA 98101" +190796,Macbook Pro Laptop,1,1700,04/06/19 15:35,"508 10th St, Boston, MA 02215" +190797,27in FHD Monitor,1,149.99,04/28/19 18:53,"530 Lakeview St, Atlanta, GA 30301" +190798,Lightning Charging Cable,1,14.95,04/01/19 12:10,"436 1st St, Boston, MA 02215" +190799,AA Batteries (4-pack),1,3.84,04/04/19 20:44,"95 14th St, Portland, OR 97035" +190800,iPhone,1,700,04/27/19 21:06,"112 Park St, Los Angeles, CA 90001" +190800,Wired Headphones,1,11.99,04/27/19 21:06,"112 Park St, Los Angeles, CA 90001" +190801,iPhone,1,700,04/17/19 19:45,"294 Highland St, San Francisco, CA 94016" +190802,USB-C Charging Cable,1,11.95,04/04/19 20:44,"322 Forest St, Portland, OR 97035" +190803,Wired Headphones,1,11.99,04/22/19 08:17,"793 Ridge St, Atlanta, GA 30301" +190804,34in Ultrawide Monitor,1,379.99,04/28/19 11:18,"52 Center St, San Francisco, CA 94016" +190805,27in FHD Monitor,1,149.99,04/16/19 15:32,"280 Washington St, San Francisco, CA 94016" +190806,34in Ultrawide Monitor,1,379.99,04/18/19 19:33,"158 Forest St, San Francisco, CA 94016" +190807,USB-C Charging Cable,2,11.95,04/08/19 10:35,"931 Ridge St, Boston, MA 02215" +190808,AAA Batteries (4-pack),1,2.99,04/28/19 18:53,"727 Center St, San Francisco, CA 94016" +190809,USB-C Charging Cable,1,11.95,04/25/19 15:53,"999 Hickory St, Boston, MA 02215" +190810,AAA Batteries (4-pack),1,2.99,04/14/19 10:07,"996 Ridge St, Dallas, TX 75001" +190811,Apple Airpods Headphones,1,150,04/19/19 17:40,"490 4th St, Portland, OR 97035" +190812,Bose SoundSport Headphones,1,99.99,04/11/19 12:37,"385 14th St, Atlanta, GA 30301" +190813,Lightning Charging Cable,1,14.95,04/03/19 23:02,"392 13th St, New York City, NY 10001" +190814,AA Batteries (4-pack),1,3.84,04/10/19 18:30,"658 Johnson St, Los Angeles, CA 90001" +190815,27in 4K Gaming Monitor,1,389.99,04/22/19 22:29,"528 Center St, Austin, TX 73301" +190816,USB-C Charging Cable,1,11.95,04/05/19 23:29,"984 Jackson St, Austin, TX 73301" +190817,Lightning Charging Cable,1,14.95,04/13/19 18:44,"75 Park St, San Francisco, CA 94016" +190818,AA Batteries (4-pack),2,3.84,04/10/19 16:27,"745 Ridge St, Seattle, WA 98101" +190819,AA Batteries (4-pack),1,3.84,04/20/19 18:53,"241 Hill St, San Francisco, CA 94016" +190820,Google Phone,1,600,04/07/19 11:58,"82 Jackson St, San Francisco, CA 94016" +190821,ThinkPad Laptop,1,999.99,04/02/19 00:10,"256 Main St, San Francisco, CA 94016" +190822,Flatscreen TV,1,300,04/03/19 03:33,"913 2nd St, Boston, MA 02215" +190823,Lightning Charging Cable,1,14.95,04/09/19 21:32,"989 Park St, Seattle, WA 98101" +190824,27in FHD Monitor,1,149.99,04/07/19 14:13,"711 Elm St, Atlanta, GA 30301" +190825,AAA Batteries (4-pack),2,2.99,04/03/19 15:35,"647 Wilson St, Los Angeles, CA 90001" +190826,iPhone,1,700,04/30/19 21:36,"962 Lakeview St, Austin, TX 73301" +190827,Wired Headphones,2,11.99,04/24/19 23:28,"936 10th St, Dallas, TX 75001" +190828,Google Phone,1,600,04/25/19 13:46,"669 5th St, Los Angeles, CA 90001" +190829,Google Phone,1,600,04/05/19 22:34,"658 Jackson St, San Francisco, CA 94016" +190830,USB-C Charging Cable,2,11.95,04/07/19 21:42,"141 Hickory St, Portland, OR 97035" +190831,Vareebadd Phone,1,400,04/16/19 16:30,"610 Cedar St, Portland, OR 97035" +190832,27in 4K Gaming Monitor,1,389.99,04/25/19 09:24,"28 Hickory St, New York City, NY 10001" +190833,27in 4K Gaming Monitor,1,389.99,04/22/19 16:05,"554 Maple St, San Francisco, CA 94016" +190834,27in FHD Monitor,1,149.99,04/25/19 16:45,"349 Willow St, Boston, MA 02215" +190835,Bose SoundSport Headphones,1,99.99,04/04/19 14:36,"873 7th St, Los Angeles, CA 90001" +190836,Google Phone,1,600,04/30/19 19:01,"92 5th St, Los Angeles, CA 90001" +190837,USB-C Charging Cable,1,11.95,04/04/19 09:08,"1 Hickory St, New York City, NY 10001" +190838,USB-C Charging Cable,1,11.95,04/13/19 22:39,"906 11th St, Austin, TX 73301" +190839,Lightning Charging Cable,1,14.95,04/02/19 13:21,"417 Center St, New York City, NY 10001" +190840,Wired Headphones,1,11.99,04/16/19 14:40,"220 5th St, San Francisco, CA 94016" +190841,Apple Airpods Headphones,1,150,04/07/19 17:02,"518 Washington St, Atlanta, GA 30301" +190842,AAA Batteries (4-pack),1,2.99,04/23/19 15:17,"547 Center St, Seattle, WA 98101" +190843,Apple Airpods Headphones,1,150,04/26/19 20:38,"643 Lakeview St, Dallas, TX 75001" +190844,Apple Airpods Headphones,1,150,04/15/19 09:34,"292 9th St, New York City, NY 10001" +190845,34in Ultrawide Monitor,1,379.99,04/18/19 06:21,"980 Lincoln St, San Francisco, CA 94016" +190846,AA Batteries (4-pack),2,3.84,04/18/19 10:43,"81 8th St, Seattle, WA 98101" +190847,27in 4K Gaming Monitor,1,389.99,04/03/19 22:08,"903 Maple St, San Francisco, CA 94016" +190848,AAA Batteries (4-pack),3,2.99,04/13/19 13:52,"236 Wilson St, San Francisco, CA 94016" +190849,Google Phone,1,600,04/23/19 19:32,"868 Chestnut St, Atlanta, GA 30301" +190850,Apple Airpods Headphones,1,150,04/19/19 20:29,"34 Johnson St, Los Angeles, CA 90001" +190851,Google Phone,1,600,04/19/19 11:49,"973 9th St, Los Angeles, CA 90001" +190852,Bose SoundSport Headphones,1,99.99,04/08/19 17:33,"60 Wilson St, Austin, TX 73301" +190853,USB-C Charging Cable,1,11.95,04/19/19 06:12,"952 Johnson St, Seattle, WA 98101" +190854,Google Phone,1,600,04/05/19 21:34,"206 Sunset St, San Francisco, CA 94016" +190855,AAA Batteries (4-pack),1,2.99,04/04/19 11:41,"529 8th St, San Francisco, CA 94016" +190856,AA Batteries (4-pack),1,3.84,04/11/19 22:15,"570 Pine St, Seattle, WA 98101" +190857,AAA Batteries (4-pack),3,2.99,04/04/19 17:02,"197 Meadow St, Los Angeles, CA 90001" +190858,AA Batteries (4-pack),1,3.84,04/20/19 21:43,"800 Park St, San Francisco, CA 94016" +190859,AA Batteries (4-pack),1,3.84,04/21/19 10:08,"731 Jefferson St, Seattle, WA 98101" +190860,Lightning Charging Cable,1,14.95,04/28/19 11:47,"692 5th St, Los Angeles, CA 90001" +190861,USB-C Charging Cable,1,11.95,04/22/19 13:15,"758 Pine St, New York City, NY 10001" +190862,Wired Headphones,1,11.99,04/02/19 23:19,"968 Main St, Seattle, WA 98101" +190863,USB-C Charging Cable,1,11.95,04/08/19 20:52,"601 Walnut St, San Francisco, CA 94016" +190864,Apple Airpods Headphones,1,150,04/13/19 17:16,"740 Main St, Atlanta, GA 30301" +190865,iPhone,1,700,04/05/19 10:07,"652 Park St, Boston, MA 02215" +190866,Wired Headphones,1,11.99,04/13/19 13:03,"582 12th St, Boston, MA 02215" +190867,AA Batteries (4-pack),1,3.84,04/05/19 20:00,"231 Maple St, Los Angeles, CA 90001" +190868,AAA Batteries (4-pack),1,2.99,04/14/19 21:39,"211 Walnut St, New York City, NY 10001" +190869,Wired Headphones,1,11.99,04/24/19 12:19,"877 Lake St, Atlanta, GA 30301" +190870,USB-C Charging Cable,1,11.95,04/30/19 14:51,"568 North St, Seattle, WA 98101" +190871,AAA Batteries (4-pack),1,2.99,04/28/19 07:22,"778 Highland St, San Francisco, CA 94016" +190872,Google Phone,1,600,04/10/19 10:35,"756 Ridge St, Austin, TX 73301" +190873,Lightning Charging Cable,1,14.95,04/14/19 15:08,"343 Maple St, Austin, TX 73301" +190874,34in Ultrawide Monitor,1,379.99,04/21/19 18:53,"104 Sunset St, Atlanta, GA 30301" +190875,Bose SoundSport Headphones,1,99.99,04/21/19 09:28,"127 West St, Atlanta, GA 30301" +190876,USB-C Charging Cable,1,11.95,04/20/19 23:47,"363 Main St, Boston, MA 02215" +190877,Google Phone,1,600,04/28/19 20:26,"442 13th St, Atlanta, GA 30301" +190877,USB-C Charging Cable,1,11.95,04/28/19 20:26,"442 13th St, Atlanta, GA 30301" +190878,Apple Airpods Headphones,1,150,04/06/19 17:34,"465 Sunset St, Portland, OR 97035" +190879,ThinkPad Laptop,1,999.99,04/14/19 20:14,"878 Chestnut St, Los Angeles, CA 90001" +190880,Bose SoundSport Headphones,1,99.99,04/21/19 13:02,"37 Walnut St, San Francisco, CA 94016" +190881,USB-C Charging Cable,1,11.95,04/27/19 17:50,"129 2nd St, New York City, NY 10001" +190882,Lightning Charging Cable,1,14.95,04/28/19 00:05,"176 1st St, Los Angeles, CA 90001" +190883,iPhone,1,700,04/21/19 23:14,"430 Dogwood St, Atlanta, GA 30301" +190884,Bose SoundSport Headphones,1,99.99,04/22/19 11:58,"64 10th St, Portland, OR 97035" +190885,34in Ultrawide Monitor,1,379.99,04/16/19 15:27,"236 North St, Los Angeles, CA 90001" +190886,27in FHD Monitor,1,149.99,04/24/19 17:05,"358 River St, Los Angeles, CA 90001" +190887,Wired Headphones,1,11.99,04/06/19 15:52,"818 1st St, San Francisco, CA 94016" +190888,AA Batteries (4-pack),5,3.84,04/02/19 22:34,"558 Park St, Los Angeles, CA 90001" +190889,AA Batteries (4-pack),1,3.84,04/29/19 19:57,"428 2nd St, Los Angeles, CA 90001" +190890,Lightning Charging Cable,1,14.95,04/12/19 20:08,"776 Main St, Boston, MA 02215" +190891,USB-C Charging Cable,1,11.95,04/08/19 19:45,"854 Pine St, Atlanta, GA 30301" +190892,USB-C Charging Cable,1,11.95,04/15/19 12:24,"49 Forest St, Los Angeles, CA 90001" +190893,AA Batteries (4-pack),1,3.84,04/21/19 12:56,"587 Chestnut St, New York City, NY 10001" +190894,Apple Airpods Headphones,1,150,04/02/19 10:17,"345 Madison St, Boston, MA 02215" +190895,AA Batteries (4-pack),3,3.84,04/02/19 09:43,"615 Center St, Atlanta, GA 30301" +190896,Lightning Charging Cable,1,14.95,04/29/19 09:09,"754 Maple St, Atlanta, GA 30301" +190897,Vareebadd Phone,1,400,04/17/19 10:03,"470 6th St, Dallas, TX 75001" +190898,AAA Batteries (4-pack),1,2.99,04/26/19 09:36,"800 Forest St, San Francisco, CA 94016" +190899,34in Ultrawide Monitor,1,379.99,04/06/19 16:00,"189 Lake St, San Francisco, CA 94016" +190900,USB-C Charging Cable,1,11.95,04/21/19 11:36,"84 Sunset St, New York City, NY 10001" +190901,ThinkPad Laptop,1,999.99,04/03/19 08:51,"243 5th St, Los Angeles, CA 90001" +190902,USB-C Charging Cable,1,11.95,04/18/19 18:09,"437 11th St, Boston, MA 02215" +190903,AA Batteries (4-pack),1,3.84,04/21/19 21:06,"192 Church St, Boston, MA 02215" +190904,iPhone,1,700,04/24/19 12:38,"763 Spruce St, San Francisco, CA 94016" +190905,Apple Airpods Headphones,1,150,04/28/19 21:35,"262 Spruce St, Seattle, WA 98101" +190906,iPhone,1,700,04/16/19 20:17,"794 Main St, Los Angeles, CA 90001" +190907,AA Batteries (4-pack),1,3.84,04/26/19 23:46,"395 Sunset St, Boston, MA 02215" +190908,Apple Airpods Headphones,1,150,04/03/19 05:56,"201 Jackson St, Austin, TX 73301" +190909,Lightning Charging Cable,2,14.95,04/17/19 19:25,"956 Center St, New York City, NY 10001" +190910,Apple Airpods Headphones,1,150,04/11/19 23:14,"355 Ridge St, San Francisco, CA 94016" +190911,AA Batteries (4-pack),1,3.84,04/26/19 21:53,"716 Cherry St, New York City, NY 10001" +190912,Macbook Pro Laptop,1,1700,04/17/19 11:19,"331 Cherry St, San Francisco, CA 94016" +190913,27in 4K Gaming Monitor,1,389.99,04/23/19 15:25,"922 6th St, Austin, TX 73301" +190914,iPhone,1,700,04/29/19 16:12,"256 7th St, New York City, NY 10001" +190915,Google Phone,1,600,04/13/19 00:06,"526 Washington St, Dallas, TX 75001" +190916,Bose SoundSport Headphones,1,99.99,04/04/19 17:21,"773 1st St, Atlanta, GA 30301" +190917,AA Batteries (4-pack),1,3.84,04/23/19 12:59,"98 Forest St, Austin, TX 73301" +190918,AA Batteries (4-pack),2,3.84,04/03/19 10:27,"923 9th St, Austin, TX 73301" +190919,AAA Batteries (4-pack),4,2.99,04/13/19 19:19,"170 Walnut St, San Francisco, CA 94016" +190920,AA Batteries (4-pack),1,3.84,04/25/19 22:47,"979 Pine St, San Francisco, CA 94016" +190921,Apple Airpods Headphones,1,150,04/22/19 20:56,"929 Main St, Seattle, WA 98101" +190922,Bose SoundSport Headphones,1,99.99,04/10/19 18:28,"249 1st St, Seattle, WA 98101" +190923,AAA Batteries (4-pack),5,2.99,04/21/19 09:16,"468 9th St, San Francisco, CA 94016" +190924,AA Batteries (4-pack),1,3.84,04/12/19 22:12,"15 Hill St, New York City, NY 10001" +190925,AAA Batteries (4-pack),1,2.99,04/15/19 06:33,"548 Jefferson St, Los Angeles, CA 90001" +190926,Vareebadd Phone,1,400,04/18/19 11:21,"795 Adams St, New York City, NY 10001" +190927,Wired Headphones,1,11.99,04/27/19 14:10,"433 11th St, Boston, MA 02215" +190928,20in Monitor,1,109.99,04/29/19 11:34,"550 Center St, Los Angeles, CA 90001" +190929,USB-C Charging Cable,2,11.95,04/29/19 11:35,"103 13th St, New York City, NY 10001" +190930,USB-C Charging Cable,1,11.95,04/09/19 10:08,"482 Cherry St, Seattle, WA 98101" +190931,27in 4K Gaming Monitor,1,389.99,04/19/19 09:39,"309 11th St, Portland, OR 97035" +190932,AA Batteries (4-pack),1,3.84,04/03/19 20:31,"211 11th St, Los Angeles, CA 90001" +190933,AA Batteries (4-pack),2,3.84,04/29/19 11:54,"669 Johnson St, New York City, NY 10001" +190934,LG Washing Machine,1,600.0,04/25/19 16:18,"119 Elm St, San Francisco, CA 94016" +190935,AA Batteries (4-pack),3,3.84,04/22/19 17:35,"940 Hill St, San Francisco, CA 94016" +190936,USB-C Charging Cable,1,11.95,04/09/19 14:57,"93 Sunset St, New York City, NY 10001" +190937,ThinkPad Laptop,1,999.99,04/27/19 16:20,"911 9th St, Los Angeles, CA 90001" +190938,Lightning Charging Cable,1,14.95,04/25/19 16:02,"340 Hickory St, New York City, NY 10001" +190939,Apple Airpods Headphones,1,150,04/04/19 08:55,"111 Lincoln St, Austin, TX 73301" +190940,27in 4K Gaming Monitor,1,389.99,04/14/19 19:30,"459 2nd St, New York City, NY 10001" +190941,AA Batteries (4-pack),1,3.84,04/04/19 18:40,"769 Chestnut St, Dallas, TX 75001" +190942,AAA Batteries (4-pack),3,2.99,04/10/19 14:13,"407 Wilson St, Boston, MA 02215" +190943,Lightning Charging Cable,1,14.95,04/29/19 11:43,"964 Ridge St, New York City, NY 10001" +190944,Lightning Charging Cable,1,14.95,04/05/19 11:15,"261 Lake St, Atlanta, GA 30301" +190945,Bose SoundSport Headphones,1,99.99,04/27/19 09:11,"340 Jefferson St, Seattle, WA 98101" +190945,Wired Headphones,1,11.99,04/27/19 09:11,"340 Jefferson St, Seattle, WA 98101" +190946,Google Phone,1,600,04/22/19 17:18,"437 Johnson St, New York City, NY 10001" +190947,27in 4K Gaming Monitor,1,389.99,04/03/19 01:10,"605 10th St, San Francisco, CA 94016" +190948,AA Batteries (4-pack),1,3.84,04/01/19 14:31,"763 Ridge St, Seattle, WA 98101" +190949,27in FHD Monitor,1,149.99,04/29/19 00:12,"173 Chestnut St, Seattle, WA 98101" +190950,USB-C Charging Cable,1,11.95,04/25/19 13:29,"875 5th St, Seattle, WA 98101" +190951,Apple Airpods Headphones,1,150,04/27/19 18:43,"684 South St, San Francisco, CA 94016" +190952,AA Batteries (4-pack),1,3.84,04/15/19 12:57,"885 Wilson St, Austin, TX 73301" +190953,USB-C Charging Cable,1,11.95,04/20/19 09:43,"703 12th St, Atlanta, GA 30301" +190954,iPhone,1,700,04/27/19 21:02,"356 8th St, Los Angeles, CA 90001" +190954,AA Batteries (4-pack),1,3.84,04/27/19 21:02,"356 8th St, Los Angeles, CA 90001" +190955,LG Dryer,1,600.0,04/17/19 15:00,"716 Pine St, Dallas, TX 75001" +190956,iPhone,1,700,04/30/19 14:35,"792 Jackson St, Dallas, TX 75001" +190957,Bose SoundSport Headphones,1,99.99,04/24/19 15:57,"551 Elm St, Seattle, WA 98101" +190958,Lightning Charging Cable,2,14.95,04/14/19 00:31,"325 Main St, San Francisco, CA 94016" +190959,Lightning Charging Cable,1,14.95,04/15/19 18:47,"507 Johnson St, San Francisco, CA 94016" +190960,Apple Airpods Headphones,1,150,04/09/19 12:35,"104 9th St, Austin, TX 73301" +190961,34in Ultrawide Monitor,1,379.99,04/14/19 11:43,"908 6th St, New York City, NY 10001" +190962,Wired Headphones,1,11.99,04/25/19 10:48,"512 Cedar St, Seattle, WA 98101" +190963,27in 4K Gaming Monitor,1,389.99,04/18/19 17:20,"63 Chestnut St, Portland, OR 97035" +190964,27in FHD Monitor,1,149.99,04/25/19 09:23,"513 South St, San Francisco, CA 94016" +190965,Lightning Charging Cable,1,14.95,04/14/19 15:39,"321 Cedar St, San Francisco, CA 94016" +190966,Macbook Pro Laptop,1,1700,04/04/19 12:55,"215 8th St, San Francisco, CA 94016" +190967,Lightning Charging Cable,2,14.95,04/03/19 18:05,"6 Wilson St, Seattle, WA 98101" +190968,Wired Headphones,1,11.99,04/08/19 19:53,"640 South St, New York City, NY 10001" +190969,USB-C Charging Cable,1,11.95,04/21/19 14:20,"11 8th St, San Francisco, CA 94016" +190970,AAA Batteries (4-pack),1,2.99,04/30/19 02:47,"870 Washington St, New York City, NY 10001" +190971,AAA Batteries (4-pack),1,2.99,04/28/19 20:03,"799 Johnson St, Boston, MA 02215" +190972,Wired Headphones,1,11.99,04/24/19 11:54,"517 11th St, New York City, NY 10001" +190973,27in 4K Gaming Monitor,1,389.99,04/14/19 10:22,"523 Chestnut St, San Francisco, CA 94016" +190974,USB-C Charging Cable,1,11.95,04/19/19 15:12,"2 River St, San Francisco, CA 94016" +190975,Wired Headphones,1,11.99,04/19/19 19:55,"995 Church St, New York City, NY 10001" +190976,34in Ultrawide Monitor,1,379.99,04/26/19 06:39,"685 Elm St, San Francisco, CA 94016" +190977,Lightning Charging Cable,1,14.95,04/11/19 00:35,"149 6th St, New York City, NY 10001" +190978,ThinkPad Laptop,1,999.99,04/20/19 10:45,"721 14th St, Los Angeles, CA 90001" +190979,Vareebadd Phone,1,400,04/07/19 23:00,"174 Hill St, Los Angeles, CA 90001" +190980,AA Batteries (4-pack),1,3.84,04/30/19 17:21,"157 Jackson St, Seattle, WA 98101" +190981,Vareebadd Phone,1,400,04/03/19 18:09,"229 Johnson St, Portland, ME 04101" +190982,Bose SoundSport Headphones,1,99.99,04/10/19 16:39,"973 7th St, San Francisco, CA 94016" +190983,Google Phone,1,600,04/30/19 16:04,"951 Spruce St, Austin, TX 73301" +190984,AAA Batteries (4-pack),2,2.99,04/29/19 06:01,"945 Elm St, San Francisco, CA 94016" +190985,AA Batteries (4-pack),1,3.84,04/05/19 12:51,"245 South St, Portland, OR 97035" +190986,Macbook Pro Laptop,1,1700,04/08/19 05:50,"759 12th St, Los Angeles, CA 90001" +190987,Google Phone,1,600,04/20/19 18:35,"767 Maple St, Atlanta, GA 30301" +190987,USB-C Charging Cable,1,11.95,04/20/19 18:35,"767 Maple St, Atlanta, GA 30301" +190987,Google Phone,1,600,04/20/19 18:35,"767 Maple St, Atlanta, GA 30301" +190988,34in Ultrawide Monitor,1,379.99,04/10/19 11:23,"742 Highland St, Los Angeles, CA 90001" +190989,Wired Headphones,1,11.99,04/17/19 09:18,"285 River St, New York City, NY 10001" +190990,AA Batteries (4-pack),2,3.84,04/18/19 06:05,"118 Hickory St, San Francisco, CA 94016" +190991,Lightning Charging Cable,1,14.95,04/29/19 20:06,"975 Elm St, Seattle, WA 98101" +190992,27in 4K Gaming Monitor,1,389.99,04/12/19 13:33,"179 Pine St, Boston, MA 02215" +190993,AA Batteries (4-pack),4,3.84,04/12/19 07:48,"380 12th St, San Francisco, CA 94016" +190994,34in Ultrawide Monitor,1,379.99,04/14/19 15:37,"634 Wilson St, Boston, MA 02215" +190995,USB-C Charging Cable,1,11.95,04/18/19 16:19,"762 Cedar St, San Francisco, CA 94016" +190996,USB-C Charging Cable,1,11.95,04/13/19 22:34,"348 Cedar St, New York City, NY 10001" +190997,Apple Airpods Headphones,1,150,04/02/19 18:51,"673 Cedar St, New York City, NY 10001" +190998,Bose SoundSport Headphones,1,99.99,04/23/19 18:17,"27 6th St, Atlanta, GA 30301" +190999,AA Batteries (4-pack),1,3.84,04/09/19 22:16,"778 Sunset St, Portland, OR 97035" +191000,AA Batteries (4-pack),1,3.84,04/29/19 20:15,"323 4th St, Boston, MA 02215" +191001,USB-C Charging Cable,1,11.95,04/13/19 09:04,"408 Church St, San Francisco, CA 94016" +191001,Flatscreen TV,1,300,04/13/19 09:04,"408 Church St, San Francisco, CA 94016" +191002,Wired Headphones,1,11.99,04/24/19 08:51,"38 8th St, Boston, MA 02215" +191003,Apple Airpods Headphones,1,150,04/21/19 18:23,"747 Spruce St, Dallas, TX 75001" +191004,AAA Batteries (4-pack),1,2.99,04/26/19 18:39,"283 Pine St, Dallas, TX 75001" +191005,Apple Airpods Headphones,1,150,04/19/19 16:11,"224 10th St, Los Angeles, CA 90001" +191006,27in 4K Gaming Monitor,1,389.99,04/26/19 11:12,"251 9th St, San Francisco, CA 94016" +191007,USB-C Charging Cable,1,11.95,04/18/19 18:46,"668 14th St, Los Angeles, CA 90001" +191008,Wired Headphones,1,11.99,04/20/19 09:53,"109 Church St, Portland, OR 97035" +191009,USB-C Charging Cable,1,11.95,04/21/19 09:29,"877 Walnut St, Los Angeles, CA 90001" +191010,Lightning Charging Cable,1,14.95,04/18/19 02:24,"55 Chestnut St, Seattle, WA 98101" +191011,AAA Batteries (4-pack),1,2.99,04/05/19 22:06,"582 Ridge St, San Francisco, CA 94016" +191012,Apple Airpods Headphones,1,150,04/12/19 20:25,"679 Meadow St, Boston, MA 02215" +191013,ThinkPad Laptop,1,999.99,04/28/19 18:09,"79 Center St, San Francisco, CA 94016" +191014,Wired Headphones,1,11.99,04/29/19 14:24,"724 9th St, Seattle, WA 98101" +191015,Flatscreen TV,1,300,04/22/19 17:07,"928 7th St, San Francisco, CA 94016" +191016,Macbook Pro Laptop,1,1700,04/29/19 21:25,"123 Cherry St, Portland, ME 04101" +191017,Lightning Charging Cable,1,14.95,04/18/19 11:37,"592 6th St, New York City, NY 10001" +191018,Lightning Charging Cable,1,14.95,04/24/19 10:25,"40 South St, Portland, OR 97035" +191019,USB-C Charging Cable,1,11.95,04/05/19 22:41,"56 Washington St, San Francisco, CA 94016" +191020,Flatscreen TV,1,300,04/29/19 21:46,"439 Ridge St, San Francisco, CA 94016" +191021,ThinkPad Laptop,1,999.99,04/26/19 07:52,"703 11th St, Los Angeles, CA 90001" +191022,iPhone,1,700,04/30/19 12:45,"39 14th St, Austin, TX 73301" +191022,Lightning Charging Cable,1,14.95,04/30/19 12:45,"39 14th St, Austin, TX 73301" +191023,Apple Airpods Headphones,1,150,04/19/19 08:04,"332 7th St, New York City, NY 10001" +191024,Wired Headphones,1,11.99,04/22/19 18:50,"984 10th St, Dallas, TX 75001" +191025,Macbook Pro Laptop,1,1700,04/04/19 19:10,"816 Pine St, Dallas, TX 75001" +191026,Wired Headphones,1,11.99,04/30/19 12:35,"196 12th St, San Francisco, CA 94016" +191027,Lightning Charging Cable,1,14.95,04/17/19 19:00,"274 10th St, Seattle, WA 98101" +191028,Apple Airpods Headphones,1,150,04/13/19 18:28,"921 Cedar St, Boston, MA 02215" +191029,27in FHD Monitor,1,149.99,04/06/19 11:23,"309 Park St, San Francisco, CA 94016" +191030,Wired Headphones,1,11.99,04/16/19 09:40,"199 River St, Seattle, WA 98101" +191031,Google Phone,1,600,04/19/19 10:58,"979 Sunset St, Seattle, WA 98101" +191031,USB-C Charging Cable,1,11.95,04/19/19 10:58,"979 Sunset St, Seattle, WA 98101" +191032,Vareebadd Phone,1,400,04/19/19 09:04,"345 7th St, Dallas, TX 75001" +191033,Wired Headphones,2,11.99,04/21/19 16:57,"499 Ridge St, Los Angeles, CA 90001" +191034,Lightning Charging Cable,1,14.95,04/07/19 13:16,"197 Adams St, New York City, NY 10001" +191034,Lightning Charging Cable,1,14.95,04/07/19 13:16,"197 Adams St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +191035,ThinkPad Laptop,1,999.99,04/01/19 09:27,"687 Lake St, Austin, TX 73301" +191036,USB-C Charging Cable,2,11.95,04/18/19 08:51,"692 Hill St, Los Angeles, CA 90001" +191037,Apple Airpods Headphones,1,150,04/30/19 21:17,"748 South St, Atlanta, GA 30301" +191038,Apple Airpods Headphones,1,150,04/28/19 11:43,"559 Willow St, Dallas, TX 75001" +191039,USB-C Charging Cable,1,11.95,04/28/19 04:07,"702 Walnut St, Austin, TX 73301" +191040,Macbook Pro Laptop,1,1700,04/12/19 02:14,"495 10th St, New York City, NY 10001" +191041,AAA Batteries (4-pack),1,2.99,04/26/19 09:35,"911 Maple St, San Francisco, CA 94016" +191042,Bose SoundSport Headphones,1,99.99,04/04/19 10:54,"115 Cedar St, Boston, MA 02215" +191043,USB-C Charging Cable,1,11.95,04/09/19 14:22,"935 Ridge St, Portland, OR 97035" +191044,AA Batteries (4-pack),1,3.84,04/02/19 19:06,"260 Jefferson St, New York City, NY 10001" +191045,Macbook Pro Laptop,1,1700,04/11/19 15:47,"49 Meadow St, San Francisco, CA 94016" +191046,USB-C Charging Cable,1,11.95,04/28/19 13:05,"880 Lake St, Austin, TX 73301" +191047,AAA Batteries (4-pack),1,2.99,04/02/19 22:43,"300 Sunset St, Dallas, TX 75001" +191048,AA Batteries (4-pack),1,3.84,04/07/19 19:21,"221 Jackson St, Atlanta, GA 30301" +191049,AAA Batteries (4-pack),1,2.99,04/23/19 06:38,"531 Maple St, New York City, NY 10001" +191050,Apple Airpods Headphones,1,150,04/23/19 10:14,"988 West St, Portland, OR 97035" +191051,AAA Batteries (4-pack),1,2.99,04/29/19 20:12,"706 River St, Boston, MA 02215" +191052,Lightning Charging Cable,1,14.95,04/14/19 20:20,"568 Lake St, Los Angeles, CA 90001" +191053,AA Batteries (4-pack),1,3.84,04/30/19 10:55,"593 Madison St, Dallas, TX 75001" +191054,AA Batteries (4-pack),1,3.84,04/22/19 20:51,"676 Park St, Austin, TX 73301" +191055,Apple Airpods Headphones,1,150,04/29/19 10:32,"966 Forest St, Austin, TX 73301" +191056,ThinkPad Laptop,1,999.99,04/12/19 22:30,"920 Sunset St, Seattle, WA 98101" +191057,34in Ultrawide Monitor,1,379.99,04/20/19 16:34,"49 Willow St, San Francisco, CA 94016" +191058,Wired Headphones,1,11.99,04/08/19 22:36,"202 Hill St, New York City, NY 10001" +191059,AA Batteries (4-pack),1,3.84,04/27/19 19:06,"836 Forest St, San Francisco, CA 94016" +191060,Apple Airpods Headphones,1,150,04/08/19 09:02,"835 Spruce St, San Francisco, CA 94016" +191061,LG Dryer,1,600.0,04/04/19 12:14,"538 Center St, Boston, MA 02215" +191062,Apple Airpods Headphones,1,150,04/08/19 11:51,"205 1st St, Los Angeles, CA 90001" +191063,Lightning Charging Cable,1,14.95,04/27/19 19:49,"509 Lincoln St, San Francisco, CA 94016" +191064,Wired Headphones,1,11.99,04/07/19 08:56,"805 Jackson St, Seattle, WA 98101" +191065,Wired Headphones,1,11.99,04/06/19 23:22,"172 Johnson St, New York City, NY 10001" +191066,Wired Headphones,1,11.99,04/07/19 01:42,"299 South St, Dallas, TX 75001" +191067,27in FHD Monitor,1,149.99,04/02/19 22:06,"290 Jackson St, Seattle, WA 98101" +191068,20in Monitor,1,109.99,04/14/19 17:31,"734 Lake St, San Francisco, CA 94016" +191069,Wired Headphones,1,11.99,04/01/19 15:39,"315 1st St, San Francisco, CA 94016" +191070,AAA Batteries (4-pack),2,2.99,04/07/19 12:53,"78 Lake St, Dallas, TX 75001" +191071,ThinkPad Laptop,1,999.99,04/20/19 00:11,"131 Ridge St, Los Angeles, CA 90001" +191072,AA Batteries (4-pack),1,3.84,04/25/19 14:06,"641 South St, San Francisco, CA 94016" +191073,Bose SoundSport Headphones,1,99.99,04/12/19 08:23,"921 North St, Portland, OR 97035" +191074,Wired Headphones,1,11.99,04/18/19 06:42,"46 Jackson St, Atlanta, GA 30301" +191075,USB-C Charging Cable,1,11.95,04/06/19 11:54,"584 Forest St, Los Angeles, CA 90001" +191076,AAA Batteries (4-pack),2,2.99,04/09/19 19:55,"531 Center St, Portland, OR 97035" +191077,Wired Headphones,1,11.99,04/06/19 22:22,"98 Chestnut St, San Francisco, CA 94016" +191078,AAA Batteries (4-pack),1,2.99,04/21/19 19:37,"724 Jefferson St, Seattle, WA 98101" +191079,USB-C Charging Cable,1,11.95,04/03/19 21:53,"943 Highland St, Austin, TX 73301" +191080,USB-C Charging Cable,1,11.95,04/26/19 07:09,"207 Center St, Portland, OR 97035" +191080,Wired Headphones,1,11.99,04/26/19 07:09,"207 Center St, Portland, OR 97035" +191081,Lightning Charging Cable,1,14.95,04/20/19 14:47,"623 South St, Boston, MA 02215" +191082,ThinkPad Laptop,1,999.99,04/06/19 18:21,"769 Main St, Los Angeles, CA 90001" +191083,Bose SoundSport Headphones,1,99.99,04/02/19 19:58,"438 Highland St, Austin, TX 73301" +191084,Apple Airpods Headphones,1,150,04/14/19 18:54,"847 Cedar St, Seattle, WA 98101" +191085,AA Batteries (4-pack),1,3.84,04/19/19 23:39,"545 Spruce St, New York City, NY 10001" +191086,USB-C Charging Cable,1,11.95,04/25/19 16:43,"548 Washington St, Los Angeles, CA 90001" +191087,Wired Headphones,1,11.99,04/17/19 18:48,"208 Church St, Dallas, TX 75001" +191088,AA Batteries (4-pack),1,3.84,04/27/19 14:15,"11 South St, New York City, NY 10001" +191089,20in Monitor,1,109.99,04/30/19 21:07,"198 2nd St, Seattle, WA 98101" +191090,27in 4K Gaming Monitor,1,389.99,04/08/19 18:57,"745 1st St, Dallas, TX 75001" +191091,iPhone,1,700,04/10/19 09:52,"959 Willow St, Atlanta, GA 30301" +191092,Wired Headphones,1,11.99,04/11/19 15:06,"374 12th St, San Francisco, CA 94016" +191093,USB-C Charging Cable,1,11.95,04/24/19 07:30,"145 North St, San Francisco, CA 94016" +191094,AA Batteries (4-pack),1,3.84,04/03/19 16:36,"423 Hickory St, San Francisco, CA 94016" +191095,Wired Headphones,1,11.99,04/28/19 13:31,"414 Willow St, Portland, OR 97035" +191096,Vareebadd Phone,1,400,04/01/19 13:21,"976 Willow St, Dallas, TX 75001" +191097,Lightning Charging Cable,2,14.95,04/09/19 12:02,"23 Jefferson St, Boston, MA 02215" +191098,Wired Headphones,1,11.99,04/14/19 19:53,"483 Hill St, Los Angeles, CA 90001" +191099,Wired Headphones,1,11.99,04/10/19 20:28,"56 Johnson St, Los Angeles, CA 90001" +191100,Bose SoundSport Headphones,1,99.99,04/15/19 08:07,"136 Dogwood St, Los Angeles, CA 90001" +191101,Wired Headphones,1,11.99,04/20/19 12:43,"619 Dogwood St, New York City, NY 10001" +191102,Bose SoundSport Headphones,1,99.99,04/17/19 17:47,"995 10th St, Los Angeles, CA 90001" +191103,AA Batteries (4-pack),1,3.84,04/23/19 16:53,"321 7th St, Dallas, TX 75001" +191104,Google Phone,1,600,04/26/19 03:31,"738 Park St, Boston, MA 02215" +191105,27in 4K Gaming Monitor,1,389.99,04/13/19 06:15,"613 Ridge St, Dallas, TX 75001" +191106,USB-C Charging Cable,1,11.95,04/17/19 08:41,"667 10th St, Austin, TX 73301" +191107,Flatscreen TV,1,300,04/03/19 15:04,"779 Elm St, New York City, NY 10001" +191108,AAA Batteries (4-pack),1,2.99,04/10/19 12:16,"994 Meadow St, San Francisco, CA 94016" +191109,Lightning Charging Cable,1,14.95,04/30/19 17:43,"898 South St, Seattle, WA 98101" +191110,Lightning Charging Cable,1,14.95,04/27/19 18:45,"609 Madison St, Seattle, WA 98101" +191111,Flatscreen TV,1,300,04/12/19 15:25,"211 West St, Boston, MA 02215" +191112,Apple Airpods Headphones,1,150,04/01/19 19:22,"683 Lake St, Los Angeles, CA 90001" +191113,Wired Headphones,2,11.99,04/25/19 21:56,"647 North St, Atlanta, GA 30301" +191113,USB-C Charging Cable,1,11.95,04/25/19 21:56,"647 North St, Atlanta, GA 30301" +191114,Google Phone,1,600,04/14/19 07:51,"197 Spruce St, Austin, TX 73301" +191115,27in FHD Monitor,1,149.99,04/14/19 19:55,"167 4th St, San Francisco, CA 94016" +191116,Apple Airpods Headphones,1,150,04/19/19 11:11,"632 11th St, San Francisco, CA 94016" +191117,Vareebadd Phone,1,400,04/28/19 12:47,"555 Walnut St, Boston, MA 02215" +191118,Google Phone,1,600,04/02/19 10:54,"295 12th St, Portland, ME 04101" +191119,USB-C Charging Cable,1,11.95,04/06/19 21:40,"927 West St, Los Angeles, CA 90001" +191120,iPhone,1,700,04/27/19 20:35,"977 Washington St, Boston, MA 02215" +191121,Apple Airpods Headphones,1,150,04/10/19 15:20,"447 Elm St, Los Angeles, CA 90001" +191122,Lightning Charging Cable,1,14.95,04/22/19 10:27,"879 Willow St, San Francisco, CA 94016" +191123,Wired Headphones,1,11.99,04/10/19 16:14,"987 Forest St, Dallas, TX 75001" +191124,Macbook Pro Laptop,1,1700,04/25/19 18:34,"828 Church St, San Francisco, CA 94016" +191125,20in Monitor,1,109.99,04/28/19 13:52,"74 Hickory St, San Francisco, CA 94016" +191126,Lightning Charging Cable,1,14.95,04/10/19 23:41,"87 Wilson St, Los Angeles, CA 90001" +191127,Wired Headphones,1,11.99,04/07/19 16:45,"645 Pine St, Boston, MA 02215" +191128,Wired Headphones,1,11.99,04/15/19 18:50,"718 West St, Portland, OR 97035" +191129,Lightning Charging Cable,1,14.95,04/10/19 09:56,"564 11th St, Los Angeles, CA 90001" +191130,USB-C Charging Cable,1,11.95,04/18/19 18:59,"838 1st St, New York City, NY 10001" +191131,Lightning Charging Cable,1,14.95,04/05/19 10:14,"403 River St, San Francisco, CA 94016" +191132,AAA Batteries (4-pack),1,2.99,04/16/19 19:08,"40 Lincoln St, Boston, MA 02215" +191133,iPhone,1,700,04/19/19 22:09,"360 Main St, Austin, TX 73301" +191134,Bose SoundSport Headphones,1,99.99,04/04/19 23:45,"138 Dogwood St, San Francisco, CA 94016" +191135,Google Phone,1,600,04/15/19 15:28,"906 Highland St, Atlanta, GA 30301" +191136,27in FHD Monitor,1,149.99,04/25/19 08:45,"369 Church St, Austin, TX 73301" +191137,Vareebadd Phone,1,400,04/23/19 14:17,"141 North St, Boston, MA 02215" +191138,USB-C Charging Cable,1,11.95,04/27/19 12:22,"131 Lakeview St, San Francisco, CA 94016" +191139,Bose SoundSport Headphones,1,99.99,04/19/19 23:03,"695 Center St, San Francisco, CA 94016" +191140,27in 4K Gaming Monitor,1,389.99,04/09/19 17:41,"566 6th St, New York City, NY 10001" +191141,Apple Airpods Headphones,1,150,04/16/19 22:01,"800 Spruce St, San Francisco, CA 94016" +191142,27in FHD Monitor,1,149.99,04/08/19 22:39,"545 11th St, New York City, NY 10001" +191143,USB-C Charging Cable,1,11.95,04/15/19 09:42,"204 Hill St, New York City, NY 10001" +191144,Wired Headphones,1,11.99,04/01/19 23:49,"126 14th St, New York City, NY 10001" +191145,USB-C Charging Cable,1,11.95,04/30/19 00:55,"864 12th St, Portland, OR 97035" +191146,USB-C Charging Cable,1,11.95,04/10/19 19:40,"473 Elm St, Dallas, TX 75001" +191147,iPhone,1,700,04/30/19 17:45,"70 South St, Dallas, TX 75001" +191148,Bose SoundSport Headphones,1,99.99,04/03/19 21:05,"541 5th St, San Francisco, CA 94016" +191149,Wired Headphones,1,11.99,04/20/19 11:50,"915 Johnson St, Dallas, TX 75001" +191150,27in FHD Monitor,1,149.99,04/10/19 09:05,"98 Lake St, Austin, TX 73301" +191151,USB-C Charging Cable,1,11.95,04/02/19 22:40,"799 6th St, Atlanta, GA 30301" +191151,Apple Airpods Headphones,1,150,04/02/19 22:40,"799 6th St, Atlanta, GA 30301" +191152,Lightning Charging Cable,1,14.95,04/03/19 17:50,"593 Hill St, Los Angeles, CA 90001" +191153,Apple Airpods Headphones,1,150,04/12/19 12:06,"762 Cherry St, Portland, OR 97035" +191154,AAA Batteries (4-pack),3,2.99,04/24/19 13:06,"380 13th St, San Francisco, CA 94016" +191155,Wired Headphones,1,11.99,04/23/19 07:52,"717 10th St, San Francisco, CA 94016" +191156,27in FHD Monitor,1,149.99,04/19/19 21:25,"720 Church St, Dallas, TX 75001" +191157,AA Batteries (4-pack),2,3.84,04/13/19 10:02,"46 Wilson St, Atlanta, GA 30301" +191158,USB-C Charging Cable,1,11.95,04/25/19 23:04,"355 North St, Los Angeles, CA 90001" +191159,AAA Batteries (4-pack),2,2.99,04/03/19 08:21,"775 6th St, Atlanta, GA 30301" +191160,34in Ultrawide Monitor,1,379.99,04/21/19 23:42,"731 14th St, San Francisco, CA 94016" +191161,34in Ultrawide Monitor,1,379.99,04/23/19 21:21,"597 13th St, Dallas, TX 75001" +191162,20in Monitor,1,109.99,04/05/19 15:44,"681 Lincoln St, Austin, TX 73301" +191163,Apple Airpods Headphones,1,150,04/20/19 19:31,"662 9th St, Dallas, TX 75001" +191164,ThinkPad Laptop,1,999.99,04/20/19 21:03,"455 Church St, San Francisco, CA 94016" +191165,AA Batteries (4-pack),1,3.84,04/08/19 09:51,"83 Hickory St, Boston, MA 02215" +191166,iPhone,1,700,04/22/19 12:22,"809 Park St, Boston, MA 02215" +191167,Wired Headphones,1,11.99,04/30/19 20:15,"603 Spruce St, Los Angeles, CA 90001" +191168,34in Ultrawide Monitor,1,379.99,04/18/19 10:38,"892 Johnson St, New York City, NY 10001" +191169,USB-C Charging Cable,1,11.95,04/05/19 09:33,"670 Main St, New York City, NY 10001" +191170,AAA Batteries (4-pack),1,2.99,04/20/19 12:59,"172 South St, Boston, MA 02215" +191171,Flatscreen TV,1,300,04/02/19 08:15,"726 Washington St, Boston, MA 02215" +191172,Google Phone,1,600,04/18/19 12:12,"236 Adams St, Portland, ME 04101" +191173,AA Batteries (4-pack),1,3.84,04/25/19 10:45,"722 Johnson St, Austin, TX 73301" +191174,20in Monitor,1,109.99,04/20/19 09:56,"349 Lakeview St, Seattle, WA 98101" +191175,AA Batteries (4-pack),2,3.84,04/03/19 14:53,"718 Center St, Austin, TX 73301" +191176,27in FHD Monitor,1,149.99,04/26/19 18:40,"218 10th St, San Francisco, CA 94016" +191177,Lightning Charging Cable,1,14.95,04/07/19 11:45,"107 Church St, Dallas, TX 75001" +191178,20in Monitor,1,109.99,04/26/19 22:11,"521 Dogwood St, San Francisco, CA 94016" +191179,Flatscreen TV,1,300,04/23/19 20:22,"849 Elm St, San Francisco, CA 94016" +191180,Apple Airpods Headphones,1,150,04/06/19 22:56,"137 Washington St, New York City, NY 10001" +191181,Bose SoundSport Headphones,1,99.99,04/09/19 23:18,"700 1st St, New York City, NY 10001" +191182,AAA Batteries (4-pack),1,2.99,04/08/19 17:22,"841 Lincoln St, Los Angeles, CA 90001" +191183,AA Batteries (4-pack),1,3.84,04/18/19 23:19,"340 Main St, San Francisco, CA 94016" +191184,USB-C Charging Cable,1,11.95,04/15/19 19:28,"347 Lake St, Seattle, WA 98101" +191185,34in Ultrawide Monitor,1,379.99,04/30/19 22:05,"74 8th St, San Francisco, CA 94016" +191186,Lightning Charging Cable,1,14.95,04/08/19 18:41,"853 Forest St, Seattle, WA 98101" +191187,AAA Batteries (4-pack),2,2.99,04/07/19 01:38,"542 11th St, Boston, MA 02215" +191188,Apple Airpods Headphones,1,150,04/24/19 12:33,"867 Hill St, San Francisco, CA 94016" +191189,AA Batteries (4-pack),3,3.84,04/12/19 22:33,"998 Church St, Austin, TX 73301" +191190,AA Batteries (4-pack),1,3.84,04/03/19 05:05,"529 Forest St, Boston, MA 02215" +191191,27in 4K Gaming Monitor,1,389.99,04/22/19 11:26,"523 13th St, Austin, TX 73301" +191192,ThinkPad Laptop,1,999.99,04/19/19 20:22,"596 Lake St, Atlanta, GA 30301" +191193,USB-C Charging Cable,2,11.95,04/02/19 18:25,"46 10th St, Los Angeles, CA 90001" +191194,AA Batteries (4-pack),1,3.84,04/30/19 09:41,"869 Center St, Atlanta, GA 30301" +191195,AAA Batteries (4-pack),1,2.99,04/27/19 21:24,"295 1st St, Los Angeles, CA 90001" +191195,27in 4K Gaming Monitor,1,389.99,04/27/19 21:24,"295 1st St, Los Angeles, CA 90001" +191196,Wired Headphones,1,11.99,04/19/19 11:34,"956 Johnson St, San Francisco, CA 94016" +191197,27in FHD Monitor,1,149.99,04/28/19 11:36,"579 Walnut St, Boston, MA 02215" +191198,USB-C Charging Cable,2,11.95,04/10/19 19:43,"28 9th St, New York City, NY 10001" +191199,Lightning Charging Cable,1,14.95,04/18/19 19:20,"21 11th St, Austin, TX 73301" +191200,Bose SoundSport Headphones,1,99.99,04/29/19 19:20,"423 Sunset St, Los Angeles, CA 90001" +191201,AA Batteries (4-pack),2,3.84,04/19/19 04:54,"560 6th St, New York City, NY 10001" +191202,AAA Batteries (4-pack),1,2.99,04/22/19 17:01,"351 Sunset St, Seattle, WA 98101" +191203,AAA Batteries (4-pack),1,2.99,04/21/19 16:53,"806 Hickory St, Los Angeles, CA 90001" +191204,Google Phone,1,600,04/22/19 10:54,"74 Main St, Seattle, WA 98101" +191204,USB-C Charging Cable,1,11.95,04/22/19 10:54,"74 Main St, Seattle, WA 98101" +191205,27in 4K Gaming Monitor,1,389.99,04/03/19 09:16,"934 Dogwood St, New York City, NY 10001" +191206,Wired Headphones,1,11.99,04/04/19 16:17,"254 6th St, Atlanta, GA 30301" +191207,AA Batteries (4-pack),2,3.84,04/07/19 21:55,"681 1st St, Portland, OR 97035" +191208,Wired Headphones,1,11.99,04/29/19 11:51,"28 Meadow St, Los Angeles, CA 90001" +191209,Lightning Charging Cable,1,14.95,04/10/19 10:31,"485 8th St, New York City, NY 10001" +191210,USB-C Charging Cable,1,11.95,04/29/19 19:41,"832 Hickory St, Portland, OR 97035" +191211,Wired Headphones,1,11.99,04/13/19 21:44,"346 Highland St, New York City, NY 10001" +191212,ThinkPad Laptop,1,999.99,04/17/19 10:37,"185 River St, Boston, MA 02215" +191213,Wired Headphones,1,11.99,04/15/19 06:20,"143 Hickory St, Austin, TX 73301" +191214,USB-C Charging Cable,1,11.95,04/14/19 20:25,"301 Jackson St, Boston, MA 02215" +191215,Apple Airpods Headphones,1,150,04/22/19 18:29,"814 Willow St, Portland, OR 97035" +191216,27in FHD Monitor,1,149.99,04/27/19 22:33,"319 Jefferson St, San Francisco, CA 94016" +191217,27in FHD Monitor,1,149.99,04/05/19 20:21,"627 Sunset St, Seattle, WA 98101" +191218,Lightning Charging Cable,1,14.95,04/27/19 21:13,"762 Willow St, San Francisco, CA 94016" +191219,27in 4K Gaming Monitor,1,389.99,04/25/19 19:20,"714 Ridge St, Austin, TX 73301" +191220,Bose SoundSport Headphones,1,99.99,04/25/19 14:25,"368 9th St, San Francisco, CA 94016" +191221,Bose SoundSport Headphones,2,99.99,04/04/19 07:30,"109 Hickory St, San Francisco, CA 94016" +191222,AA Batteries (4-pack),1,3.84,04/19/19 12:52,"554 7th St, San Francisco, CA 94016" +191223,Wired Headphones,1,11.99,04/23/19 18:24,"798 Main St, San Francisco, CA 94016" +191224,AAA Batteries (4-pack),1,2.99,04/12/19 09:12,"953 Walnut St, New York City, NY 10001" +191225,iPhone,1,700,04/03/19 12:31,"402 9th St, Seattle, WA 98101" +191226,AAA Batteries (4-pack),1,2.99,04/21/19 19:10,"904 Church St, New York City, NY 10001" +191227,USB-C Charging Cable,1,11.95,04/13/19 12:03,"463 Cedar St, San Francisco, CA 94016" +191228,Bose SoundSport Headphones,1,99.99,04/06/19 11:04,"790 13th St, San Francisco, CA 94016" +191229,Apple Airpods Headphones,1,150,04/26/19 20:28,"396 Highland St, Boston, MA 02215" +191230,Wired Headphones,1,11.99,04/16/19 13:56,"327 Lincoln St, Atlanta, GA 30301" +191231,Vareebadd Phone,1,400,04/19/19 15:56,"463 Center St, Austin, TX 73301" +191232,Wired Headphones,1,11.99,04/18/19 19:54,"579 Church St, Los Angeles, CA 90001" +191233,Wired Headphones,1,11.99,04/22/19 11:08,"131 Center St, Seattle, WA 98101" +191234,AA Batteries (4-pack),1,3.84,04/12/19 18:34,"830 Lakeview St, Los Angeles, CA 90001" +191235,iPhone,1,700,04/25/19 10:00,"886 Lincoln St, San Francisco, CA 94016" +191235,Lightning Charging Cable,1,14.95,04/25/19 10:00,"886 Lincoln St, San Francisco, CA 94016" +191236,USB-C Charging Cable,1,11.95,04/18/19 16:45,"376 Cherry St, Dallas, TX 75001" +191237,Wired Headphones,1,11.99,04/03/19 18:17,"584 Jackson St, Los Angeles, CA 90001" +191238,27in FHD Monitor,1,149.99,04/19/19 21:15,"94 Highland St, Los Angeles, CA 90001" +191239,AA Batteries (4-pack),2,3.84,04/01/19 11:32,"483 6th St, Seattle, WA 98101" +191240,Lightning Charging Cable,1,14.95,04/13/19 21:34,"200 Sunset St, San Francisco, CA 94016" +191241,Wired Headphones,1,11.99,04/04/19 23:49,"209 1st St, San Francisco, CA 94016" +191242,USB-C Charging Cable,1,11.95,04/14/19 17:22,"422 Lake St, Seattle, WA 98101" +191243,Macbook Pro Laptop,1,1700,04/30/19 20:25,"633 11th St, Dallas, TX 75001" +191244,USB-C Charging Cable,1,11.95,04/01/19 19:38,"152 Cedar St, Dallas, TX 75001" +191245,Lightning Charging Cable,1,14.95,04/21/19 20:06,"761 Church St, Boston, MA 02215" +191246,iPhone,1,700,04/02/19 17:27,"633 Pine St, Los Angeles, CA 90001" +191246,Lightning Charging Cable,2,14.95,04/02/19 17:27,"633 Pine St, Los Angeles, CA 90001" +191247,Macbook Pro Laptop,1,1700,04/11/19 16:51,"310 Pine St, Seattle, WA 98101" +191248,Bose SoundSport Headphones,1,99.99,04/25/19 13:09,"618 Jackson St, San Francisco, CA 94016" +191249,iPhone,1,700,04/24/19 10:09,"676 8th St, Seattle, WA 98101" +191250,Bose SoundSport Headphones,1,99.99,04/09/19 09:56,"482 7th St, San Francisco, CA 94016" +191251,iPhone,1,700,04/24/19 21:21,"656 4th St, Austin, TX 73301" +191251,Apple Airpods Headphones,1,150,04/24/19 21:21,"656 4th St, Austin, TX 73301" +191251,AAA Batteries (4-pack),1,2.99,04/24/19 21:21,"656 4th St, Austin, TX 73301" +191252,AA Batteries (4-pack),1,3.84,04/03/19 13:17,"457 11th St, Dallas, TX 75001" +191253,AA Batteries (4-pack),1,3.84,04/20/19 19:03,"590 14th St, San Francisco, CA 94016" +191254,27in 4K Gaming Monitor,1,389.99,04/02/19 19:35,"305 Maple St, Los Angeles, CA 90001" +191255,AAA Batteries (4-pack),1,2.99,04/17/19 10:58,"23 Main St, Atlanta, GA 30301" +191256,AAA Batteries (4-pack),2,2.99,04/06/19 11:16,"928 9th St, Los Angeles, CA 90001" +191257,Bose SoundSport Headphones,1,99.99,04/09/19 14:50,"897 5th St, San Francisco, CA 94016" +191258,Wired Headphones,1,11.99,04/27/19 21:11,"622 Lakeview St, New York City, NY 10001" +191259,AAA Batteries (4-pack),3,2.99,04/15/19 11:44,"328 9th St, New York City, NY 10001" +191260,AA Batteries (4-pack),1,3.84,04/04/19 17:48,"50 11th St, Dallas, TX 75001" +191261,LG Washing Machine,1,600.0,04/20/19 19:20,"566 River St, New York City, NY 10001" +191262,USB-C Charging Cable,1,11.95,04/25/19 12:02,"335 Center St, Boston, MA 02215" +191263,USB-C Charging Cable,1,11.95,04/09/19 21:17,"452 Church St, Portland, OR 97035" +191264,Apple Airpods Headphones,1,150,04/20/19 13:28,"570 North St, San Francisco, CA 94016" +191265,ThinkPad Laptop,1,999.99,04/12/19 17:38,"782 Jackson St, Boston, MA 02215" +191266,Google Phone,1,600,04/22/19 10:06,"169 Madison St, Los Angeles, CA 90001" +191267,Wired Headphones,1,11.99,04/17/19 22:33,"831 Park St, Seattle, WA 98101" +191268,Wired Headphones,1,11.99,04/25/19 08:57,"975 Maple St, Los Angeles, CA 90001" +191269,ThinkPad Laptop,1,999.99,04/19/19 11:27,"663 2nd St, Atlanta, GA 30301" +191269,AAA Batteries (4-pack),2,2.99,04/19/19 11:27,"663 2nd St, Atlanta, GA 30301" +191270,Bose SoundSport Headphones,1,99.99,04/23/19 14:31,"364 Main St, Dallas, TX 75001" +191271,iPhone,1,700,04/18/19 21:55,"757 11th St, Seattle, WA 98101" +191272,Wired Headphones,1,11.99,04/04/19 23:10,"547 Maple St, Los Angeles, CA 90001" +191273,AA Batteries (4-pack),2,3.84,04/29/19 14:01,"740 12th St, Seattle, WA 98101" +191274,Wired Headphones,1,11.99,04/01/19 19:07,"53 4th St, Boston, MA 02215" +191275,ThinkPad Laptop,1,999.99,04/05/19 22:31,"563 Highland St, Dallas, TX 75001" +191276,27in 4K Gaming Monitor,1,389.99,04/02/19 11:30,"960 Elm St, San Francisco, CA 94016" +191277,Lightning Charging Cable,1,14.95,04/03/19 20:30,"673 Church St, Dallas, TX 75001" +191278,iPhone,1,700,04/05/19 11:21,"100 Sunset St, San Francisco, CA 94016" +191279,Wired Headphones,1,11.99,04/24/19 10:59,"325 Hickory St, Los Angeles, CA 90001" +191280,USB-C Charging Cable,1,11.95,04/07/19 18:32,"488 11th St, San Francisco, CA 94016" +191281,Wired Headphones,1,11.99,04/12/19 18:56,"311 Center St, Portland, OR 97035" +191282,AAA Batteries (4-pack),3,2.99,04/26/19 11:25,"381 1st St, Los Angeles, CA 90001" +191283,USB-C Charging Cable,1,11.95,04/05/19 16:06,"20 Wilson St, San Francisco, CA 94016" +191284,Apple Airpods Headphones,1,150,04/15/19 22:14,"536 8th St, San Francisco, CA 94016" +191285,Wired Headphones,1,11.99,04/26/19 18:45,"819 Highland St, San Francisco, CA 94016" +191286,ThinkPad Laptop,1,999.99,04/11/19 09:58,"433 Wilson St, San Francisco, CA 94016" +191287,Wired Headphones,1,11.99,04/13/19 11:32,"101 Elm St, Seattle, WA 98101" +191288,USB-C Charging Cable,1,11.95,04/27/19 14:38,"412 Hill St, San Francisco, CA 94016" +191289,AA Batteries (4-pack),2,3.84,04/01/19 11:21,"781 5th St, San Francisco, CA 94016" +191290,Wired Headphones,1,11.99,04/16/19 17:02,"253 Hickory St, New York City, NY 10001" +191291,Macbook Pro Laptop,1,1700,04/16/19 11:39,"881 Hickory St, New York City, NY 10001" +191292,USB-C Charging Cable,1,11.95,04/16/19 16:00,"368 Jefferson St, Seattle, WA 98101" +191293,Wired Headphones,1,11.99,04/27/19 19:54,"388 Hill St, San Francisco, CA 94016" +191294,Lightning Charging Cable,1,14.95,04/06/19 19:17,"234 Willow St, Boston, MA 02215" +191295,AAA Batteries (4-pack),2,2.99,04/15/19 21:45,"968 7th St, Boston, MA 02215" +191296,AA Batteries (4-pack),1,3.84,04/25/19 12:23,"353 Lakeview St, Los Angeles, CA 90001" +191297,AAA Batteries (4-pack),1,2.99,04/09/19 15:30,"728 Pine St, San Francisco, CA 94016" +191298,USB-C Charging Cable,1,11.95,04/09/19 11:53,"555 Jefferson St, Atlanta, GA 30301" +191299,Wired Headphones,1,11.99,04/22/19 21:38,"226 13th St, Los Angeles, CA 90001" +191300,Apple Airpods Headphones,1,150,04/04/19 12:52,"136 Lincoln St, Atlanta, GA 30301" +191301,Google Phone,1,600,04/03/19 10:39,"41 South St, Los Angeles, CA 90001" +191302,Lightning Charging Cable,1,14.95,04/10/19 20:02,"155 Cherry St, Atlanta, GA 30301" +191303,AA Batteries (4-pack),1,3.84,04/24/19 07:10,"715 Hickory St, Portland, ME 04101" +191304,27in FHD Monitor,1,149.99,04/09/19 12:31,"987 11th St, Austin, TX 73301" +191305,27in 4K Gaming Monitor,1,389.99,04/13/19 18:32,"547 Lincoln St, Boston, MA 02215" +191306,Bose SoundSport Headphones,1,99.99,04/04/19 09:07,"21 10th St, Boston, MA 02215" +191307,Lightning Charging Cable,1,14.95,04/10/19 19:47,"954 Dogwood St, San Francisco, CA 94016" +191308,AAA Batteries (4-pack),4,2.99,04/08/19 12:55,"941 Jefferson St, San Francisco, CA 94016" +191309,USB-C Charging Cable,1,11.95,04/06/19 14:49,"340 8th St, San Francisco, CA 94016" +191310,AAA Batteries (4-pack),1,2.99,04/10/19 11:40,"352 Church St, Dallas, TX 75001" +191311,Google Phone,1,600,04/10/19 09:47,"846 Cedar St, New York City, NY 10001" +191311,Bose SoundSport Headphones,1,99.99,04/10/19 09:47,"846 Cedar St, New York City, NY 10001" +191312,Lightning Charging Cable,2,14.95,04/05/19 19:13,"931 2nd St, San Francisco, CA 94016" +191313,Google Phone,1,600,04/13/19 13:15,"654 Sunset St, Los Angeles, CA 90001" +191313,USB-C Charging Cable,1,11.95,04/13/19 13:15,"654 Sunset St, Los Angeles, CA 90001" +191314,iPhone,1,700,04/01/19 13:05,"137 Church St, San Francisco, CA 94016" +191314,Wired Headphones,1,11.99,04/01/19 13:05,"137 Church St, San Francisco, CA 94016" +191315,USB-C Charging Cable,1,11.95,04/30/19 20:56,"626 Cherry St, Los Angeles, CA 90001" +191316,Apple Airpods Headphones,1,150,04/18/19 14:49,"932 6th St, San Francisco, CA 94016" +191317,Lightning Charging Cable,1,14.95,04/13/19 12:06,"343 Washington St, Boston, MA 02215" +191318,Apple Airpods Headphones,1,150,04/05/19 11:42,"647 Lakeview St, Boston, MA 02215" +191319,ThinkPad Laptop,1,999.99,04/10/19 22:16,"181 13th St, San Francisco, CA 94016" +191320,Lightning Charging Cable,1,14.95,04/28/19 15:16,"475 Hickory St, Portland, OR 97035" +191321,Wired Headphones,1,11.99,04/07/19 14:57,"415 13th St, San Francisco, CA 94016" +191322,34in Ultrawide Monitor,1,379.99,04/26/19 11:06,"455 Main St, New York City, NY 10001" +191323,AA Batteries (4-pack),3,3.84,04/27/19 16:48,"55 7th St, New York City, NY 10001" +191324,USB-C Charging Cable,1,11.95,04/22/19 21:18,"876 North St, New York City, NY 10001" +191325,ThinkPad Laptop,1,999.99,04/22/19 11:40,"637 Center St, Los Angeles, CA 90001" +191326,20in Monitor,1,109.99,04/29/19 21:11,"552 Park St, Seattle, WA 98101" +191327,USB-C Charging Cable,1,11.95,04/11/19 21:06,"923 Lincoln St, San Francisco, CA 94016" +191328,AAA Batteries (4-pack),2,2.99,04/18/19 18:03,"528 Hill St, Dallas, TX 75001" +191329,AA Batteries (4-pack),1,3.84,04/08/19 10:08,"879 Maple St, Boston, MA 02215" +191330,USB-C Charging Cable,1,11.95,04/25/19 18:20,"996 Lakeview St, Seattle, WA 98101" +191331,Wired Headphones,1,11.99,04/28/19 00:03,"337 Washington St, San Francisco, CA 94016" +191332,Google Phone,1,600,04/13/19 15:52,"485 Wilson St, Los Angeles, CA 90001" +191333,Google Phone,1,600,04/30/19 11:32,"595 Sunset St, New York City, NY 10001" +191333,USB-C Charging Cable,2,11.95,04/30/19 11:32,"595 Sunset St, New York City, NY 10001" +191334,27in 4K Gaming Monitor,2,389.99,04/01/19 20:57,"677 Pine St, Dallas, TX 75001" +191335,Bose SoundSport Headphones,1,99.99,04/05/19 15:21,"65 Willow St, San Francisco, CA 94016" +191336,Wired Headphones,1,11.99,04/11/19 14:00,"721 Jackson St, Dallas, TX 75001" +191337,AAA Batteries (4-pack),1,2.99,04/12/19 18:41,"210 12th St, San Francisco, CA 94016" +191338,Macbook Pro Laptop,1,1700,04/09/19 14:24,"274 Ridge St, Austin, TX 73301" +191339,Lightning Charging Cable,1,14.95,04/18/19 10:37,"405 2nd St, Seattle, WA 98101" +191340,AAA Batteries (4-pack),2,2.99,04/10/19 07:46,"614 Cherry St, Los Angeles, CA 90001" +191341,Lightning Charging Cable,1,14.95,04/21/19 18:20,"976 6th St, Los Angeles, CA 90001" +191342,AAA Batteries (4-pack),2,2.99,04/24/19 17:03,"779 Wilson St, Los Angeles, CA 90001" +191343,Lightning Charging Cable,1,14.95,04/15/19 16:28,"413 Elm St, Los Angeles, CA 90001" +191344,AAA Batteries (4-pack),2,2.99,04/16/19 19:17,"783 13th St, Boston, MA 02215" +191345,Google Phone,1,600,04/20/19 10:08,"524 6th St, Portland, OR 97035" +191345,USB-C Charging Cable,1,11.95,04/20/19 10:08,"524 6th St, Portland, OR 97035" +191346,Bose SoundSport Headphones,1,99.99,04/17/19 20:36,"417 Sunset St, Dallas, TX 75001" +191347,AA Batteries (4-pack),1,3.84,04/20/19 09:27,"39 West St, San Francisco, CA 94016" +191348,USB-C Charging Cable,1,11.95,04/19/19 06:55,"395 Chestnut St, New York City, NY 10001" +191349,Wired Headphones,1,11.99,04/19/19 09:48,"852 Adams St, New York City, NY 10001" +191350,Lightning Charging Cable,1,14.95,04/10/19 07:40,"558 Dogwood St, New York City, NY 10001" +191351,Flatscreen TV,1,300,04/10/19 22:06,"583 11th St, Portland, OR 97035" +191352,AA Batteries (4-pack),4,3.84,04/20/19 13:05,"139 6th St, San Francisco, CA 94016" +191353,AAA Batteries (4-pack),1,2.99,04/05/19 15:50,"498 Lake St, Los Angeles, CA 90001" +191354,Apple Airpods Headphones,1,150,04/21/19 09:31,"772 Lincoln St, San Francisco, CA 94016" +191355,AA Batteries (4-pack),2,3.84,04/15/19 14:41,"247 12th St, Los Angeles, CA 90001" +191356,AAA Batteries (4-pack),1,2.99,04/11/19 13:39,"1 7th St, Atlanta, GA 30301" +191357,34in Ultrawide Monitor,1,379.99,04/10/19 07:13,"874 Center St, Portland, OR 97035" +191358,27in FHD Monitor,1,149.99,04/03/19 14:53,"462 Jefferson St, New York City, NY 10001" +191359,iPhone,1,700,04/19/19 13:31,"201 Hickory St, New York City, NY 10001" +191359,Lightning Charging Cable,1,14.95,04/19/19 13:31,"201 Hickory St, New York City, NY 10001" +191360,USB-C Charging Cable,1,11.95,04/10/19 18:03,"16 6th St, Austin, TX 73301" +191361,Apple Airpods Headphones,1,150,04/13/19 18:34,"558 6th St, Los Angeles, CA 90001" +191362,Lightning Charging Cable,1,14.95,04/15/19 03:05,"35 Washington St, Boston, MA 02215" +191363,Wired Headphones,2,11.99,04/14/19 18:43,"546 Ridge St, Atlanta, GA 30301" +191364,AAA Batteries (4-pack),2,2.99,04/01/19 21:35,"203 Jefferson St, Portland, ME 04101" +191365,20in Monitor,1,109.99,04/17/19 22:29,"174 Pine St, Dallas, TX 75001" +191366,Wired Headphones,1,11.99,04/28/19 15:54,"90 Jefferson St, Los Angeles, CA 90001" +191367,AAA Batteries (4-pack),2,2.99,04/16/19 07:29,"144 Washington St, New York City, NY 10001" +191368,Wired Headphones,1,11.99,04/09/19 08:53,"94 Johnson St, New York City, NY 10001" +191369,AAA Batteries (4-pack),1,2.99,04/06/19 21:21,"635 Jackson St, Austin, TX 73301" +191370,Google Phone,1,600,04/28/19 12:07,"706 Cherry St, Seattle, WA 98101" +191371,Lightning Charging Cable,1,14.95,04/06/19 14:15,"701 Ridge St, Atlanta, GA 30301" +191372,USB-C Charging Cable,1,11.95,04/30/19 18:19,"76 Meadow St, Los Angeles, CA 90001" +191373,Flatscreen TV,1,300,04/02/19 16:05,"882 Sunset St, Los Angeles, CA 90001" +191374,27in 4K Gaming Monitor,1,389.99,04/21/19 19:59,"94 Church St, Los Angeles, CA 90001" +191375,AAA Batteries (4-pack),1,2.99,04/02/19 12:35,"932 Johnson St, Atlanta, GA 30301" +191376,Bose SoundSport Headphones,1,99.99,04/29/19 18:52,"304 7th St, Seattle, WA 98101" +191377,Wired Headphones,1,11.99,04/18/19 08:26,"675 Hickory St, Los Angeles, CA 90001" +191378,Wired Headphones,1,11.99,04/28/19 00:44,"71 Johnson St, Seattle, WA 98101" +191379,USB-C Charging Cable,1,11.95,04/20/19 22:43,"395 Highland St, Atlanta, GA 30301" +191380,AA Batteries (4-pack),1,3.84,04/27/19 11:01,"236 Lincoln St, Austin, TX 73301" +191381,Google Phone,1,600,04/26/19 20:27,"561 Madison St, New York City, NY 10001" +191382,27in 4K Gaming Monitor,1,389.99,04/19/19 07:34,"17 Lakeview St, Atlanta, GA 30301" +191383,AA Batteries (4-pack),1,3.84,04/08/19 10:48,"899 11th St, New York City, NY 10001" +191384,27in FHD Monitor,1,149.99,04/02/19 19:42,"677 Park St, Boston, MA 02215" +191385,AAA Batteries (4-pack),2,2.99,04/28/19 20:20,"805 Jefferson St, Boston, MA 02215" +191386,Google Phone,1,600,04/23/19 11:04,"784 Pine St, New York City, NY 10001" +191387,AA Batteries (4-pack),1,3.84,04/19/19 18:05,"491 Willow St, San Francisco, CA 94016" +191388,AA Batteries (4-pack),1,3.84,04/19/19 18:20,"234 Lakeview St, San Francisco, CA 94016" +191389,Lightning Charging Cable,1,14.95,04/26/19 09:14,"521 Maple St, Atlanta, GA 30301" +191389,USB-C Charging Cable,1,11.95,04/26/19 09:14,"521 Maple St, Atlanta, GA 30301" +191390,Apple Airpods Headphones,1,150,04/04/19 12:57,"69 11th St, New York City, NY 10001" +191391,27in 4K Gaming Monitor,1,389.99,04/07/19 21:59,"230 Meadow St, San Francisco, CA 94016" +191392,27in FHD Monitor,1,149.99,04/30/19 07:17,"49 Sunset St, San Francisco, CA 94016" +191393,iPhone,1,700,04/28/19 19:36,"865 Lakeview St, Portland, OR 97035" +191394,AAA Batteries (4-pack),1,2.99,04/06/19 22:07,"101 Walnut St, New York City, NY 10001" +191395,Apple Airpods Headphones,1,150,04/08/19 18:54,"710 Maple St, San Francisco, CA 94016" +191396,Lightning Charging Cable,1,14.95,04/25/19 09:01,"377 8th St, Boston, MA 02215" +191397,USB-C Charging Cable,1,11.95,04/30/19 00:55,"602 Lake St, Atlanta, GA 30301" +191398,AA Batteries (4-pack),1,3.84,04/24/19 11:36,"733 14th St, Seattle, WA 98101" +191399,USB-C Charging Cable,2,11.95,04/29/19 00:24,"359 Elm St, Seattle, WA 98101" +191400,Bose SoundSport Headphones,1,99.99,04/02/19 15:31,"806 Church St, Seattle, WA 98101" +191401,Lightning Charging Cable,1,14.95,04/05/19 14:52,"888 Madison St, Atlanta, GA 30301" +191402,27in 4K Gaming Monitor,1,389.99,04/04/19 19:19,"816 Dogwood St, Dallas, TX 75001" +191403,27in 4K Gaming Monitor,1,389.99,04/13/19 23:55,"532 Center St, Los Angeles, CA 90001" +191404,AA Batteries (4-pack),2,3.84,04/25/19 18:48,"905 Adams St, Atlanta, GA 30301" +191405,USB-C Charging Cable,1,11.95,04/26/19 10:31,"112 5th St, New York City, NY 10001" +191406,USB-C Charging Cable,1,11.95,04/07/19 14:24,"886 10th St, New York City, NY 10001" +191407,AAA Batteries (4-pack),1,2.99,04/15/19 22:33,"935 Hill St, New York City, NY 10001" +191408,Bose SoundSport Headphones,1,99.99,04/02/19 19:07,"129 North St, New York City, NY 10001" +191409,Bose SoundSport Headphones,1,99.99,04/22/19 10:03,"33 Park St, Boston, MA 02215" +191410,Apple Airpods Headphones,1,150,04/01/19 17:58,"198 Church St, San Francisco, CA 94016" +191411,Apple Airpods Headphones,1,150,04/17/19 14:41,"914 Jackson St, Portland, OR 97035" +191412,ThinkPad Laptop,1,999.99,04/30/19 12:27,"107 Main St, San Francisco, CA 94016" +191413,27in 4K Gaming Monitor,1,389.99,04/06/19 06:13,"177 Jefferson St, San Francisco, CA 94016" +191414,Lightning Charging Cable,1,14.95,04/25/19 18:16,"584 South St, San Francisco, CA 94016" +191415,USB-C Charging Cable,1,11.95,04/13/19 19:40,"181 10th St, New York City, NY 10001" +191416,Lightning Charging Cable,1,14.95,04/04/19 22:17,"94 9th St, Seattle, WA 98101" +191417,Macbook Pro Laptop,1,1700,04/01/19 18:54,"526 Cherry St, Dallas, TX 75001" +191418,Bose SoundSport Headphones,1,99.99,04/12/19 10:32,"431 Lincoln St, Seattle, WA 98101" +191419,20in Monitor,1,109.99,04/18/19 19:01,"523 Cherry St, Los Angeles, CA 90001" +191420,AAA Batteries (4-pack),1,2.99,04/07/19 15:23,"812 6th St, Los Angeles, CA 90001" +191421,iPhone,1,700,04/23/19 02:07,"147 4th St, Dallas, TX 75001" +191421,Apple Airpods Headphones,1,150,04/23/19 02:07,"147 4th St, Dallas, TX 75001" +191422,Bose SoundSport Headphones,1,99.99,04/19/19 10:22,"495 Hickory St, Atlanta, GA 30301" +191423,AA Batteries (4-pack),1,3.84,04/12/19 10:07,"978 Wilson St, Portland, ME 04101" +191424,Bose SoundSport Headphones,1,99.99,04/26/19 16:54,"409 11th St, San Francisco, CA 94016" +191424,AAA Batteries (4-pack),1,2.99,04/26/19 16:54,"409 11th St, San Francisco, CA 94016" +191425,27in 4K Gaming Monitor,1,389.99,04/05/19 14:26,"741 Chestnut St, New York City, NY 10001" +191425,USB-C Charging Cable,1,11.95,04/05/19 14:26,"741 Chestnut St, New York City, NY 10001" +191426,27in FHD Monitor,1,149.99,04/17/19 20:00,"244 11th St, San Francisco, CA 94016" +191427,Macbook Pro Laptop,1,1700,04/10/19 06:54,"608 8th St, Portland, OR 97035" +191428,Wired Headphones,1,11.99,04/20/19 10:22,"981 Forest St, New York City, NY 10001" +191429,AAA Batteries (4-pack),1,2.99,04/29/19 13:44,"381 Lakeview St, New York City, NY 10001" +191430,Flatscreen TV,1,300,04/24/19 21:44,"469 14th St, Seattle, WA 98101" +191431,AA Batteries (4-pack),1,3.84,04/07/19 23:22,"562 9th St, Atlanta, GA 30301" +191432,AA Batteries (4-pack),1,3.84,04/03/19 08:30,"626 Ridge St, New York City, NY 10001" +191433,Google Phone,1,600,04/27/19 21:52,"870 Adams St, New York City, NY 10001" +191433,USB-C Charging Cable,1,11.95,04/27/19 21:52,"870 Adams St, New York City, NY 10001" +191434,34in Ultrawide Monitor,1,379.99,04/16/19 23:21,"723 8th St, Los Angeles, CA 90001" +191435,AA Batteries (4-pack),1,3.84,04/02/19 21:23,"75 Cherry St, Portland, OR 97035" +191436,Lightning Charging Cable,1,14.95,04/25/19 16:47,"401 South St, Boston, MA 02215" +191437,iPhone,1,700,04/21/19 11:27,"645 Center St, Portland, OR 97035" +191438,Lightning Charging Cable,1,14.95,04/20/19 18:16,"226 9th St, Dallas, TX 75001" +191439,Lightning Charging Cable,1,14.95,04/27/19 10:32,"562 Washington St, San Francisco, CA 94016" +191440,Apple Airpods Headphones,1,150,04/13/19 18:11,"727 West St, Seattle, WA 98101" +191441,Lightning Charging Cable,1,14.95,04/19/19 15:40,"250 Hill St, Boston, MA 02215" +191442,Bose SoundSport Headphones,1,99.99,04/18/19 21:25,"204 Jackson St, Dallas, TX 75001" +191443,AA Batteries (4-pack),1,3.84,04/27/19 17:41,"430 Washington St, Atlanta, GA 30301" +191444,34in Ultrawide Monitor,1,379.99,04/15/19 07:10,"503 Sunset St, San Francisco, CA 94016" +191445,AA Batteries (4-pack),3,3.84,04/02/19 14:25,"463 Lakeview St, Atlanta, GA 30301" +191446,AA Batteries (4-pack),1,3.84,04/06/19 22:55,"456 Walnut St, New York City, NY 10001" +191447,Google Phone,1,600,04/04/19 17:46,"393 Johnson St, San Francisco, CA 94016" +191448,Apple Airpods Headphones,1,150,04/20/19 10:14,"391 Walnut St, San Francisco, CA 94016" +191449,Lightning Charging Cable,1,14.95,04/28/19 10:44,"700 West St, New York City, NY 10001" +191450,AAA Batteries (4-pack),2,2.99,04/25/19 09:34,"77 Madison St, Los Angeles, CA 90001" +191451,Lightning Charging Cable,1,14.95,04/14/19 21:26,"49 Ridge St, Austin, TX 73301" +191452,Bose SoundSport Headphones,1,99.99,04/18/19 06:48,"340 Meadow St, Seattle, WA 98101" +191453,USB-C Charging Cable,1,11.95,04/19/19 11:54,"826 7th St, Seattle, WA 98101" +191454,AAA Batteries (4-pack),1,2.99,04/02/19 11:50,"247 Sunset St, San Francisco, CA 94016" +191455,Bose SoundSport Headphones,1,99.99,04/10/19 15:35,"39 Wilson St, Boston, MA 02215" +191456,Flatscreen TV,1,300,04/17/19 13:01,"303 14th St, San Francisco, CA 94016" +191457,AAA Batteries (4-pack),1,2.99,04/25/19 12:15,"443 Hill St, Boston, MA 02215" +191458,iPhone,1,700,04/17/19 03:13,"383 Sunset St, Boston, MA 02215" +191459,Apple Airpods Headphones,1,150,04/05/19 15:50,"528 Hickory St, Seattle, WA 98101" +191460,AA Batteries (4-pack),1,3.84,04/05/19 11:41,"1 Spruce St, Dallas, TX 75001" +191461,Wired Headphones,1,11.99,04/22/19 19:27,"673 12th St, Austin, TX 73301" +191462,Lightning Charging Cable,1,14.95,04/24/19 17:41,"796 8th St, New York City, NY 10001" +191463,AAA Batteries (4-pack),1,2.99,04/13/19 19:10,"233 Wilson St, San Francisco, CA 94016" +191464,AA Batteries (4-pack),1,3.84,04/21/19 13:12,"41 Center St, New York City, NY 10001" +191465,Apple Airpods Headphones,1,150,04/22/19 20:49,"491 Chestnut St, Seattle, WA 98101" +191466,Lightning Charging Cable,1,14.95,04/10/19 13:39,"468 Willow St, Seattle, WA 98101" +191467,Bose SoundSport Headphones,1,99.99,04/21/19 06:19,"953 Madison St, Los Angeles, CA 90001" +191468,AAA Batteries (4-pack),2,2.99,04/30/19 10:25,"209 Maple St, San Francisco, CA 94016" +191469,AA Batteries (4-pack),1,3.84,04/23/19 01:02,"374 11th St, Boston, MA 02215" +191470,Wired Headphones,1,11.99,04/04/19 10:06,"326 1st St, Los Angeles, CA 90001" +191471,Lightning Charging Cable,1,14.95,04/29/19 13:47,"792 Lakeview St, Atlanta, GA 30301" +191472,AAA Batteries (4-pack),1,2.99,04/10/19 16:55,"505 North St, Boston, MA 02215" +191473,27in FHD Monitor,1,149.99,04/28/19 23:55,"607 Center St, Los Angeles, CA 90001" +191474,Apple Airpods Headphones,1,150,04/30/19 16:17,"742 Lincoln St, Boston, MA 02215" +191475,Macbook Pro Laptop,1,1700,04/17/19 12:22,"415 South St, Atlanta, GA 30301" +191476,Apple Airpods Headphones,1,150,04/15/19 19:21,"703 Madison St, Portland, OR 97035" +191477,34in Ultrawide Monitor,1,379.99,04/05/19 08:28,"371 Madison St, Portland, OR 97035" +191478,Vareebadd Phone,1,400,04/30/19 11:12,"74 South St, Los Angeles, CA 90001" +191479,34in Ultrawide Monitor,1,379.99,04/28/19 10:42,"859 Cherry St, Seattle, WA 98101" +191480,USB-C Charging Cable,1,11.95,04/12/19 01:14,"251 West St, Los Angeles, CA 90001" +191481,Apple Airpods Headphones,1,150,04/02/19 00:20,"197 6th St, San Francisco, CA 94016" +191482,Lightning Charging Cable,2,14.95,04/15/19 11:49,"841 Washington St, San Francisco, CA 94016" +191483,Macbook Pro Laptop,1,1700,04/05/19 22:00,"688 Lake St, San Francisco, CA 94016" +191484,AAA Batteries (4-pack),1,2.99,04/13/19 13:47,"281 Sunset St, Los Angeles, CA 90001" +191485,27in 4K Gaming Monitor,1,389.99,04/21/19 20:28,"757 Hickory St, Boston, MA 02215" +191486,27in FHD Monitor,1,149.99,04/13/19 15:21,"9 West St, Austin, TX 73301" +191487,AAA Batteries (4-pack),3,2.99,04/08/19 11:54,"588 Jefferson St, Portland, ME 04101" +191488,AAA Batteries (4-pack),1,2.99,04/09/19 23:12,"346 Hickory St, San Francisco, CA 94016" +191489,AAA Batteries (4-pack),1,2.99,04/15/19 11:48,"829 Forest St, San Francisco, CA 94016" +191489,Lightning Charging Cable,2,14.95,04/15/19 11:48,"829 Forest St, San Francisco, CA 94016" +191490,Google Phone,1,600,04/10/19 10:23,"993 4th St, Los Angeles, CA 90001" +191490,USB-C Charging Cable,1,11.95,04/10/19 10:23,"993 4th St, Los Angeles, CA 90001" +191490,Bose SoundSport Headphones,1,99.99,04/10/19 10:23,"993 4th St, Los Angeles, CA 90001" +191491,Apple Airpods Headphones,1,150,04/07/19 12:34,"929 Lincoln St, Boston, MA 02215" +191492,Vareebadd Phone,1,400,04/04/19 11:50,"469 South St, Los Angeles, CA 90001" +191492,USB-C Charging Cable,1,11.95,04/04/19 11:50,"469 South St, Los Angeles, CA 90001" +191492,Wired Headphones,1,11.99,04/04/19 11:50,"469 South St, Los Angeles, CA 90001" +191493,27in 4K Gaming Monitor,1,389.99,04/20/19 16:49,"377 12th St, Boston, MA 02215" +191494,Lightning Charging Cable,1,14.95,04/12/19 12:10,"117 9th St, Boston, MA 02215" +191495,27in 4K Gaming Monitor,1,389.99,04/04/19 17:34,"562 7th St, Seattle, WA 98101" +191496,Lightning Charging Cable,1,14.95,04/23/19 11:07,"499 Pine St, Dallas, TX 75001" +191497,iPhone,2,700,04/14/19 12:07,"119 Pine St, San Francisco, CA 94016" +191497,Lightning Charging Cable,1,14.95,04/14/19 12:07,"119 Pine St, San Francisco, CA 94016" +191498,Wired Headphones,1,11.99,04/17/19 15:01,"305 Park St, San Francisco, CA 94016" +191499,Apple Airpods Headphones,1,150,04/13/19 08:05,"94 8th St, Boston, MA 02215" +191500,Bose SoundSport Headphones,1,99.99,04/10/19 16:12,"527 South St, Seattle, WA 98101" +191501,Lightning Charging Cable,1,14.95,04/08/19 02:58,"848 8th St, New York City, NY 10001" +191502,AAA Batteries (4-pack),1,2.99,04/30/19 20:19,"184 Elm St, San Francisco, CA 94016" +191503,USB-C Charging Cable,1,11.95,04/07/19 08:28,"755 6th St, Dallas, TX 75001" +191504,34in Ultrawide Monitor,1,379.99,04/07/19 10:40,"127 Lincoln St, Los Angeles, CA 90001" +191505,Bose SoundSport Headphones,1,99.99,04/27/19 22:58,"566 Jefferson St, Dallas, TX 75001" +191506,27in FHD Monitor,1,149.99,04/27/19 21:10,"776 Lincoln St, Seattle, WA 98101" +191507,AAA Batteries (4-pack),4,2.99,04/15/19 15:19,"722 Forest St, San Francisco, CA 94016" +191508,Lightning Charging Cable,1,14.95,04/06/19 07:20,"648 Highland St, Boston, MA 02215" +191509,AA Batteries (4-pack),1,3.84,04/04/19 12:42,"212 Dogwood St, New York City, NY 10001" +191510,Apple Airpods Headphones,1,150,04/16/19 22:51,"163 Highland St, Dallas, TX 75001" +191511,USB-C Charging Cable,1,11.95,04/08/19 18:06,"950 7th St, New York City, NY 10001" +191512,USB-C Charging Cable,1,11.95,04/11/19 13:40,"578 6th St, New York City, NY 10001" +191513,20in Monitor,1,109.99,04/22/19 17:50,"986 1st St, San Francisco, CA 94016" +191514,Bose SoundSport Headphones,1,99.99,04/21/19 17:59,"868 Highland St, Dallas, TX 75001" +191515,Vareebadd Phone,1,400,04/27/19 09:13,"124 South St, New York City, NY 10001" +191516,Bose SoundSport Headphones,1,99.99,04/21/19 09:55,"388 2nd St, Dallas, TX 75001" +191517,Lightning Charging Cable,1,14.95,04/07/19 14:24,"324 Johnson St, San Francisco, CA 94016" +191518,ThinkPad Laptop,1,999.99,04/17/19 23:02,"920 12th St, Seattle, WA 98101" +191519,Apple Airpods Headphones,1,150,04/01/19 16:24,"253 Wilson St, Seattle, WA 98101" +191520,AAA Batteries (4-pack),2,2.99,04/08/19 21:25,"426 Willow St, Los Angeles, CA 90001" +191521,27in 4K Gaming Monitor,1,389.99,04/27/19 05:52,"973 Spruce St, Austin, TX 73301" +191522,Macbook Pro Laptop,1,1700,04/02/19 22:52,"418 Willow St, Atlanta, GA 30301" +191523,Macbook Pro Laptop,1,1700,04/01/19 15:53,"685 Meadow St, Los Angeles, CA 90001" +191524,iPhone,1,700,04/14/19 21:41,"681 Jackson St, San Francisco, CA 94016" +191525,AA Batteries (4-pack),2,3.84,04/25/19 19:14,"345 Jefferson St, Los Angeles, CA 90001" +191526,Wired Headphones,1,11.99,04/20/19 12:07,"563 Jefferson St, Los Angeles, CA 90001" +191527,34in Ultrawide Monitor,1,379.99,04/28/19 20:37,"374 6th St, San Francisco, CA 94016" +191528,Bose SoundSport Headphones,1,99.99,04/01/19 23:01,"388 1st St, Los Angeles, CA 90001" +191529,Lightning Charging Cable,1,14.95,04/15/19 08:21,"462 Spruce St, New York City, NY 10001" +191530,Vareebadd Phone,1,400,04/21/19 07:27,"961 11th St, Dallas, TX 75001" +191531,Bose SoundSport Headphones,1,99.99,04/26/19 17:38,"60 10th St, Dallas, TX 75001" +191532,Flatscreen TV,1,300,04/10/19 12:22,"204 Elm St, San Francisco, CA 94016" +191533,Bose SoundSport Headphones,1,99.99,04/01/19 21:00,"180 Church St, Seattle, WA 98101" +191534,34in Ultrawide Monitor,1,379.99,04/01/19 10:52,"63 North St, Boston, MA 02215" +191535,Bose SoundSport Headphones,1,99.99,04/08/19 17:28,"188 Hickory St, New York City, NY 10001" +191536,27in FHD Monitor,1,149.99,04/20/19 10:59,"297 Maple St, San Francisco, CA 94016" +191537,27in FHD Monitor,1,149.99,04/10/19 18:33,"965 River St, Los Angeles, CA 90001" +191538,ThinkPad Laptop,1,999.99,04/02/19 13:07,"366 6th St, San Francisco, CA 94016" +191539,27in 4K Gaming Monitor,1,389.99,04/12/19 21:02,"669 Cedar St, Dallas, TX 75001" +191540,Flatscreen TV,1,300,04/22/19 22:26,"301 Pine St, San Francisco, CA 94016" +191541,AA Batteries (4-pack),2,3.84,04/06/19 15:33,"130 West St, Los Angeles, CA 90001" +191542,Bose SoundSport Headphones,1,99.99,04/17/19 19:37,"84 Main St, New York City, NY 10001" +191543,Apple Airpods Headphones,1,150,04/26/19 12:58,"383 Center St, Los Angeles, CA 90001" +191544,AAA Batteries (4-pack),1,2.99,04/24/19 18:21,"551 Center St, Los Angeles, CA 90001" +191545,Macbook Pro Laptop,1,1700,04/02/19 02:32,"713 Cherry St, San Francisco, CA 94016" +191546,Lightning Charging Cable,2,14.95,04/06/19 21:34,"486 Pine St, New York City, NY 10001" +191547,AA Batteries (4-pack),1,3.84,04/04/19 23:15,"326 Johnson St, Seattle, WA 98101" +191548,USB-C Charging Cable,1,11.95,04/23/19 08:20,"301 12th St, Austin, TX 73301" +191549,Lightning Charging Cable,1,14.95,04/17/19 19:21,"896 Jackson St, Seattle, WA 98101" +191550,ThinkPad Laptop,1,999.99,04/18/19 09:53,"755 Dogwood St, Dallas, TX 75001" +191551,Bose SoundSport Headphones,1,99.99,04/02/19 13:36,"747 Sunset St, Los Angeles, CA 90001" +191552,Bose SoundSport Headphones,1,99.99,04/05/19 22:40,"871 Meadow St, Los Angeles, CA 90001" +191553,Flatscreen TV,1,300,04/20/19 20:46,"651 West St, Atlanta, GA 30301" +191554,Wired Headphones,1,11.99,04/07/19 14:39,"279 1st St, San Francisco, CA 94016" +191555,AA Batteries (4-pack),1,3.84,04/14/19 22:21,"639 Dogwood St, Dallas, TX 75001" +191556,Wired Headphones,2,11.99,04/27/19 16:23,"783 Forest St, Los Angeles, CA 90001" +191557,AAA Batteries (4-pack),2,2.99,04/17/19 07:31,"802 Cedar St, Atlanta, GA 30301" +191558,Lightning Charging Cable,1,14.95,04/09/19 23:00,"315 Center St, Boston, MA 02215" +191559,Google Phone,1,600,04/01/19 16:39,"281 Willow St, Dallas, TX 75001" +191559,Wired Headphones,1,11.99,04/01/19 16:39,"281 Willow St, Dallas, TX 75001" +191560,Flatscreen TV,1,300,04/14/19 15:26,"989 12th St, Dallas, TX 75001" +191561,Lightning Charging Cable,1,14.95,04/21/19 17:43,"1 Maple St, Los Angeles, CA 90001" +191562,AA Batteries (4-pack),1,3.84,04/10/19 09:58,"603 North St, Seattle, WA 98101" +191563,iPhone,1,700,04/03/19 10:31,"136 4th St, Austin, TX 73301" +191564,Lightning Charging Cable,1,14.95,04/04/19 14:02,"242 Park St, San Francisco, CA 94016" +191565,USB-C Charging Cable,1,11.95,04/25/19 21:21,"418 Park St, Seattle, WA 98101" +191566,34in Ultrawide Monitor,1,379.99,04/14/19 15:41,"906 West St, Austin, TX 73301" +191567,AAA Batteries (4-pack),1,2.99,04/18/19 16:53,"214 Pine St, Los Angeles, CA 90001" +191568,AAA Batteries (4-pack),1,2.99,04/17/19 17:51,"781 Hickory St, Portland, OR 97035" +191569,Apple Airpods Headphones,1,150,04/02/19 22:08,"788 Cherry St, New York City, NY 10001" +191570,USB-C Charging Cable,1,11.95,04/27/19 09:49,"240 Park St, Atlanta, GA 30301" +191571,AAA Batteries (4-pack),2,2.99,04/27/19 18:01,"817 Sunset St, Austin, TX 73301" +191572,ThinkPad Laptop,1,999.99,04/25/19 10:03,"143 14th St, Los Angeles, CA 90001" +191573,iPhone,1,700,04/17/19 12:56,"401 Lincoln St, Seattle, WA 98101" +191574,Bose SoundSport Headphones,1,99.99,04/01/19 17:13,"661 10th St, Los Angeles, CA 90001" +191575,AAA Batteries (4-pack),1,2.99,04/22/19 19:54,"853 9th St, San Francisco, CA 94016" +191576,Google Phone,1,600,04/04/19 15:59,"338 5th St, Los Angeles, CA 90001" +191577,USB-C Charging Cable,1,11.95,04/24/19 09:54,"990 Ridge St, Atlanta, GA 30301" +191578,Flatscreen TV,1,300,04/18/19 18:11,"995 Park St, New York City, NY 10001" +191579,Bose SoundSport Headphones,1,99.99,04/24/19 08:23,"689 Dogwood St, Boston, MA 02215" +191580,Wired Headphones,1,11.99,04/18/19 13:45,"457 Hill St, San Francisco, CA 94016" +191581,Apple Airpods Headphones,1,150,04/12/19 12:47,"617 Spruce St, San Francisco, CA 94016" +191582,Bose SoundSport Headphones,1,99.99,04/17/19 00:06,"392 Cedar St, Seattle, WA 98101" +191583,Apple Airpods Headphones,1,150,04/08/19 19:02,"468 5th St, Dallas, TX 75001" +191584,34in Ultrawide Monitor,1,379.99,04/01/19 18:21,"835 9th St, Seattle, WA 98101" +191585,Wired Headphones,1,11.99,04/14/19 17:50,"258 Walnut St, Boston, MA 02215" +191586,Bose SoundSport Headphones,1,99.99,04/26/19 13:55,"744 Forest St, Boston, MA 02215" +191587,Wired Headphones,1,11.99,04/21/19 19:40,"98 7th St, Portland, ME 04101" +191588,Lightning Charging Cable,1,14.95,04/29/19 23:22,"267 Washington St, Boston, MA 02215" +191589,Apple Airpods Headphones,1,150,04/15/19 17:11,"333 Johnson St, New York City, NY 10001" +191590,27in 4K Gaming Monitor,1,389.99,04/27/19 01:47,"135 Church St, Portland, OR 97035" +191591,AAA Batteries (4-pack),1,2.99,04/14/19 05:46,"212 Maple St, San Francisco, CA 94016" +191592,Wired Headphones,1,11.99,04/29/19 21:51,"11 Main St, Dallas, TX 75001" +191593,Apple Airpods Headphones,1,150,04/17/19 19:45,"232 Cedar St, Portland, OR 97035" +191594,AA Batteries (4-pack),1,3.84,04/05/19 14:47,"825 1st St, Los Angeles, CA 90001" +191595,Apple Airpods Headphones,1,150,04/04/19 11:21,"162 9th St, San Francisco, CA 94016" +191596,Bose SoundSport Headphones,1,99.99,04/04/19 21:11,"426 12th St, Los Angeles, CA 90001" +191597,Lightning Charging Cable,1,14.95,04/14/19 21:30,"776 South St, Portland, ME 04101" +191598,AAA Batteries (4-pack),3,2.99,04/17/19 18:59,"692 11th St, Los Angeles, CA 90001" +191599,AAA Batteries (4-pack),2,2.99,04/19/19 21:02,"822 Chestnut St, Dallas, TX 75001" +191600,LG Dryer,1,600.0,04/10/19 17:02,"212 Johnson St, San Francisco, CA 94016" +191601,Google Phone,1,600,04/15/19 05:36,"273 Park St, New York City, NY 10001" +191602,Wired Headphones,1,11.99,04/02/19 11:00,"776 5th St, Portland, ME 04101" +191603,Flatscreen TV,1,300,04/15/19 16:50,"302 Hickory St, Atlanta, GA 30301" +191604,AAA Batteries (4-pack),1,2.99,04/24/19 11:32,"290 Walnut St, Dallas, TX 75001" +191605,AAA Batteries (4-pack),1,2.99,04/12/19 21:16,"296 West St, Boston, MA 02215" +191606,Lightning Charging Cable,1,14.95,04/19/19 23:16,"142 Elm St, San Francisco, CA 94016" +191607,Lightning Charging Cable,1,14.95,04/01/19 10:09,"2 Church St, Boston, MA 02215" +191608,27in FHD Monitor,1,149.99,04/30/19 17:58,"211 12th St, Dallas, TX 75001" +191609,Flatscreen TV,1,300,04/10/19 23:22,"553 Elm St, San Francisco, CA 94016" +191610,Lightning Charging Cable,1,14.95,04/13/19 10:11,"696 Lake St, Seattle, WA 98101" +191611,Wired Headphones,1,11.99,04/22/19 12:15,"146 13th St, Los Angeles, CA 90001" +191612,34in Ultrawide Monitor,1,379.99,04/21/19 20:30,"832 Madison St, New York City, NY 10001" +191613,Google Phone,1,600,04/17/19 13:48,"460 Walnut St, Los Angeles, CA 90001" +191614,USB-C Charging Cable,1,11.95,04/23/19 09:46,"189 5th St, San Francisco, CA 94016" +191615,27in 4K Gaming Monitor,1,389.99,04/20/19 13:29,"630 Walnut St, San Francisco, CA 94016" +191616,AAA Batteries (4-pack),1,2.99,04/14/19 14:14,"638 Lake St, New York City, NY 10001" +191617,Lightning Charging Cable,1,14.95,04/20/19 11:32,"674 Elm St, San Francisco, CA 94016" +191618,AAA Batteries (4-pack),2,2.99,04/25/19 19:09,"776 Madison St, San Francisco, CA 94016" +191619,AA Batteries (4-pack),1,3.84,04/29/19 09:45,"387 8th St, San Francisco, CA 94016" +191620,AAA Batteries (4-pack),1,2.99,04/13/19 09:29,"920 River St, San Francisco, CA 94016" +191621,27in 4K Gaming Monitor,1,389.99,04/20/19 17:09,"720 Meadow St, Dallas, TX 75001" +191622,Bose SoundSport Headphones,1,99.99,04/23/19 13:24,"750 Jackson St, Atlanta, GA 30301" +191623,AAA Batteries (4-pack),1,2.99,04/06/19 08:15,"219 Hill St, San Francisco, CA 94016" +191624,ThinkPad Laptop,1,999.99,04/15/19 20:03,"839 Jefferson St, Los Angeles, CA 90001" +191625,Flatscreen TV,1,300,04/26/19 15:39,"735 7th St, New York City, NY 10001" +191626,Wired Headphones,1,11.99,04/14/19 15:15,"547 Chestnut St, Los Angeles, CA 90001" +191627,Bose SoundSport Headphones,1,99.99,04/23/19 21:16,"542 Cedar St, Dallas, TX 75001" +191628,Google Phone,1,600,04/27/19 13:09,"396 Lakeview St, Boston, MA 02215" +191629,USB-C Charging Cable,1,11.95,04/29/19 23:00,"269 Main St, San Francisco, CA 94016" +191630,Apple Airpods Headphones,1,150,04/03/19 20:29,"332 Hickory St, Los Angeles, CA 90001" +191631,AA Batteries (4-pack),1,3.84,04/26/19 21:11,"513 Lake St, San Francisco, CA 94016" +191632,34in Ultrawide Monitor,1,379.99,04/10/19 00:44,"490 Forest St, San Francisco, CA 94016" +191633,Vareebadd Phone,1,400,04/03/19 20:43,"369 North St, San Francisco, CA 94016" +191633,USB-C Charging Cable,1,11.95,04/03/19 20:43,"369 North St, San Francisco, CA 94016" +191633,Wired Headphones,1,11.99,04/03/19 20:43,"369 North St, San Francisco, CA 94016" +191634,Lightning Charging Cable,2,14.95,04/13/19 00:02,"387 Wilson St, Boston, MA 02215" +191635,AA Batteries (4-pack),1,3.84,04/16/19 00:34,"444 West St, Boston, MA 02215" +191636,Wired Headphones,1,11.99,04/16/19 11:18,"361 Maple St, Boston, MA 02215" +191637,Google Phone,1,600,04/28/19 05:55,"904 1st St, Portland, OR 97035" +191637,Wired Headphones,1,11.99,04/28/19 05:55,"904 1st St, Portland, OR 97035" +191638,Apple Airpods Headphones,1,150,04/30/19 09:26,"551 4th St, New York City, NY 10001" +191639,Google Phone,1,600,04/14/19 20:17,"897 Ridge St, San Francisco, CA 94016" +191640,Lightning Charging Cable,1,14.95,04/08/19 15:25,"260 8th St, Boston, MA 02215" +191641,iPhone,1,700,04/08/19 18:29,"941 Lake St, San Francisco, CA 94016" +191642,Flatscreen TV,1,300,04/11/19 06:35,"165 Johnson St, Boston, MA 02215" +191643,27in 4K Gaming Monitor,1,389.99,04/24/19 08:14,"593 Ridge St, Los Angeles, CA 90001" +191644,27in 4K Gaming Monitor,1,389.99,04/17/19 10:28,"13 8th St, Boston, MA 02215" +191645,USB-C Charging Cable,1,11.95,04/15/19 12:30,"200 Spruce St, San Francisco, CA 94016" +191646,AA Batteries (4-pack),1,3.84,04/15/19 12:55,"624 6th St, San Francisco, CA 94016" +191647,Lightning Charging Cable,1,14.95,04/20/19 19:08,"969 Lake St, Los Angeles, CA 90001" +191648,Google Phone,1,600,04/02/19 15:02,"755 Madison St, Los Angeles, CA 90001" +191648,USB-C Charging Cable,1,11.95,04/02/19 15:02,"755 Madison St, Los Angeles, CA 90001" +191649,iPhone,1,700,04/05/19 12:44,"227 Ridge St, Los Angeles, CA 90001" +191649,USB-C Charging Cable,1,11.95,04/05/19 12:44,"227 Ridge St, Los Angeles, CA 90001" +191650,Apple Airpods Headphones,1,150,04/09/19 12:44,"793 Hickory St, Atlanta, GA 30301" +191651,USB-C Charging Cable,1,11.95,04/20/19 13:33,"500 Elm St, Los Angeles, CA 90001" +191652,AA Batteries (4-pack),1,3.84,04/05/19 20:47,"369 9th St, Seattle, WA 98101" +191653,USB-C Charging Cable,1,11.95,04/27/19 13:04,"218 Hill St, Seattle, WA 98101" +191654,AA Batteries (4-pack),1,3.84,04/05/19 19:22,"393 5th St, Seattle, WA 98101" +191655,Lightning Charging Cable,1,14.95,04/01/19 15:14,"854 Main St, Dallas, TX 75001" +191656,Lightning Charging Cable,1,14.95,04/12/19 05:08,"895 Jefferson St, San Francisco, CA 94016" +191657,USB-C Charging Cable,1,11.95,04/21/19 17:16,"95 Madison St, San Francisco, CA 94016" +191658,USB-C Charging Cable,1,11.95,04/21/19 13:22,"765 Forest St, Austin, TX 73301" +191659,Apple Airpods Headphones,1,150,04/06/19 17:56,"500 Jefferson St, Seattle, WA 98101" +,,,,, +191660,Vareebadd Phone,1,400,04/16/19 18:11,"653 Center St, Atlanta, GA 30301" +191661,20in Monitor,1,109.99,04/12/19 17:36,"221 Adams St, Seattle, WA 98101" +191662,Wired Headphones,1,11.99,04/15/19 09:26,"550 North St, San Francisco, CA 94016" +191662,Wired Headphones,1,11.99,04/15/19 09:26,"550 North St, San Francisco, CA 94016" +191663,Bose SoundSport Headphones,1,99.99,04/29/19 13:54,"112 Lakeview St, New York City, NY 10001" +191664,27in FHD Monitor,1,149.99,04/08/19 05:08,"466 12th St, Portland, OR 97035" +191665,Lightning Charging Cable,1,14.95,04/22/19 22:01,"902 Cherry St, Austin, TX 73301" +191666,Bose SoundSport Headphones,1,99.99,04/01/19 16:15,"185 River St, Seattle, WA 98101" +191667,Apple Airpods Headphones,1,150,04/26/19 23:22,"503 Chestnut St, Los Angeles, CA 90001" +191668,AAA Batteries (4-pack),1,2.99,04/27/19 12:18,"588 Dogwood St, Boston, MA 02215" +191669,27in 4K Gaming Monitor,1,389.99,04/06/19 06:17,"415 Church St, San Francisco, CA 94016" +191670,USB-C Charging Cable,1,11.95,04/30/19 23:39,"942 River St, New York City, NY 10001" +191671,Wired Headphones,1,11.99,04/11/19 18:03,"644 1st St, Boston, MA 02215" +191672,Apple Airpods Headphones,1,150,04/25/19 14:53,"382 2nd St, Los Angeles, CA 90001" +191673,Lightning Charging Cable,1,14.95,04/16/19 10:08,"259 Chestnut St, New York City, NY 10001" +191674,Apple Airpods Headphones,1,150,04/23/19 19:11,"654 Meadow St, Atlanta, GA 30301" +191675,LG Dryer,1,600.0,04/23/19 09:35,"491 Spruce St, Portland, OR 97035" +191676,AAA Batteries (4-pack),1,2.99,04/27/19 19:48,"369 5th St, San Francisco, CA 94016" +191677,AA Batteries (4-pack),2,3.84,04/30/19 16:19,"309 Church St, New York City, NY 10001" +191678,Bose SoundSport Headphones,1,99.99,04/21/19 14:06,"137 Pine St, Boston, MA 02215" +191679,34in Ultrawide Monitor,1,379.99,04/13/19 10:07,"644 Lincoln St, Dallas, TX 75001" +191680,AA Batteries (4-pack),2,3.84,04/16/19 12:48,"379 Hill St, San Francisco, CA 94016" +191681,34in Ultrawide Monitor,1,379.99,04/04/19 15:01,"156 River St, San Francisco, CA 94016" +191682,Google Phone,1,600,04/21/19 20:24,"1 11th St, Los Angeles, CA 90001" +191683,Wired Headphones,1,11.99,04/15/19 11:12,"765 Cedar St, San Francisco, CA 94016" +191684,AA Batteries (4-pack),1,3.84,04/02/19 10:20,"950 7th St, Seattle, WA 98101" +191685,Wired Headphones,1,11.99,04/26/19 11:39,"246 Johnson St, Los Angeles, CA 90001" +191686,AAA Batteries (4-pack),2,2.99,04/21/19 18:08,"61 7th St, Los Angeles, CA 90001" +191687,Lightning Charging Cable,1,14.95,04/13/19 23:24,"645 Center St, Atlanta, GA 30301" +191688,USB-C Charging Cable,1,11.95,04/07/19 11:16,"815 Spruce St, Atlanta, GA 30301" +191689,AA Batteries (4-pack),1,3.84,04/21/19 00:10,"342 7th St, New York City, NY 10001" +191690,AA Batteries (4-pack),1,3.84,04/16/19 18:33,"559 Dogwood St, Boston, MA 02215" +191691,USB-C Charging Cable,1,11.95,04/20/19 12:28,"482 Dogwood St, Portland, OR 97035" +191692,Bose SoundSport Headphones,1,99.99,04/21/19 05:54,"785 Center St, New York City, NY 10001" +191693,AAA Batteries (4-pack),1,2.99,04/03/19 20:08,"516 5th St, Boston, MA 02215" +191694,USB-C Charging Cable,1,11.95,04/13/19 10:05,"502 4th St, San Francisco, CA 94016" +191695,27in FHD Monitor,1,149.99,04/09/19 12:29,"609 6th St, Seattle, WA 98101" +191696,Wired Headphones,2,11.99,04/01/19 19:33,"757 Hickory St, Dallas, TX 75001" +191697,Wired Headphones,1,11.99,04/06/19 10:15,"810 Washington St, San Francisco, CA 94016" +191698,Bose SoundSport Headphones,1,99.99,04/30/19 16:24,"122 6th St, San Francisco, CA 94016" +191699,AA Batteries (4-pack),2,3.84,04/06/19 16:37,"786 Washington St, New York City, NY 10001" +191700,AAA Batteries (4-pack),1,2.99,04/04/19 21:09,"339 Forest St, San Francisco, CA 94016" +191701,27in FHD Monitor,1,149.99,04/12/19 22:40,"566 Hill St, Seattle, WA 98101" +191702,AA Batteries (4-pack),1,3.84,04/27/19 15:17,"371 South St, Los Angeles, CA 90001" +191703,iPhone,1,700,04/27/19 18:02,"265 Sunset St, Boston, MA 02215" +191704,ThinkPad Laptop,1,999.99,04/25/19 09:58,"220 Jackson St, New York City, NY 10001" +191705,Wired Headphones,1,11.99,04/24/19 21:19,"944 Main St, San Francisco, CA 94016" +191706,Bose SoundSport Headphones,1,99.99,04/01/19 11:57,"166 7th St, New York City, NY 10001" +191707,Bose SoundSport Headphones,1,99.99,04/15/19 21:59,"220 Main St, Seattle, WA 98101" +191708,AAA Batteries (4-pack),1,2.99,04/03/19 21:36,"670 Willow St, Boston, MA 02215" +191709,USB-C Charging Cable,1,11.95,04/27/19 08:18,"820 Jackson St, New York City, NY 10001" +191710,27in FHD Monitor,1,149.99,04/23/19 04:21,"493 14th St, San Francisco, CA 94016" +191711,34in Ultrawide Monitor,1,379.99,04/20/19 16:30,"250 Meadow St, New York City, NY 10001" +191712,20in Monitor,1,109.99,04/13/19 18:33,"829 Jefferson St, Austin, TX 73301" +191713,Lightning Charging Cable,1,14.95,04/21/19 19:47,"421 Sunset St, Austin, TX 73301" +191714,20in Monitor,1,109.99,04/21/19 18:58,"183 Main St, Portland, ME 04101" +191715,Macbook Pro Laptop,1,1700,04/20/19 20:12,"276 Jackson St, New York City, NY 10001" +191716,Bose SoundSport Headphones,1,99.99,04/02/19 18:23,"790 6th St, Portland, OR 97035" +191717,Lightning Charging Cable,2,14.95,04/10/19 21:41,"730 Lincoln St, Seattle, WA 98101" +191718,Lightning Charging Cable,1,14.95,04/30/19 17:44,"392 Johnson St, San Francisco, CA 94016" +191719,USB-C Charging Cable,1,11.95,04/05/19 14:48,"314 Chestnut St, Seattle, WA 98101" +191720,Lightning Charging Cable,1,14.95,04/25/19 08:09,"782 North St, San Francisco, CA 94016" +191721,Bose SoundSport Headphones,1,99.99,04/20/19 10:31,"17 Lincoln St, San Francisco, CA 94016" +191722,AAA Batteries (4-pack),3,2.99,04/07/19 18:27,"156 Park St, San Francisco, CA 94016" +191723,iPhone,1,700,04/20/19 12:10,"872 Pine St, San Francisco, CA 94016" +191724,Wired Headphones,1,11.99,04/06/19 07:48,"827 Ridge St, San Francisco, CA 94016" +191725,Bose SoundSport Headphones,1,99.99,04/05/19 09:14,"430 Dogwood St, New York City, NY 10001" +191726,Macbook Pro Laptop,1,1700,04/12/19 06:38,"557 Adams St, Boston, MA 02215" +191727,Wired Headphones,1,11.99,04/26/19 13:56,"896 7th St, Austin, TX 73301" +191728,AA Batteries (4-pack),1,3.84,04/20/19 07:17,"763 9th St, San Francisco, CA 94016" +191729,LG Washing Machine,1,600.0,04/21/19 13:20,"430 Madison St, Atlanta, GA 30301" +191730,Lightning Charging Cable,1,14.95,04/20/19 17:37,"318 West St, Austin, TX 73301" +191731,Lightning Charging Cable,1,14.95,04/30/19 09:41,"285 Walnut St, San Francisco, CA 94016" +191732,34in Ultrawide Monitor,1,379.99,04/16/19 14:58,"720 Jefferson St, Portland, OR 97035" +191733,Flatscreen TV,1,300,04/13/19 21:46,"108 4th St, Seattle, WA 98101" +191734,34in Ultrawide Monitor,1,379.99,04/23/19 09:07,"919 13th St, Los Angeles, CA 90001" +191735,AA Batteries (4-pack),1,3.84,04/11/19 11:47,"138 Main St, San Francisco, CA 94016" +191736,Apple Airpods Headphones,1,150,04/30/19 19:58,"449 Jackson St, Portland, ME 04101" +191737,Macbook Pro Laptop,1,1700,04/15/19 09:27,"410 14th St, San Francisco, CA 94016" +191738,Flatscreen TV,1,300,04/08/19 10:44,"80 12th St, New York City, NY 10001" +191739,Apple Airpods Headphones,1,150,04/10/19 22:00,"904 Jefferson St, San Francisco, CA 94016" +191740,Lightning Charging Cable,1,14.95,04/27/19 13:48,"218 River St, Dallas, TX 75001" +191741,Bose SoundSport Headphones,1,99.99,04/14/19 18:41,"48 Highland St, Austin, TX 73301" +191742,Vareebadd Phone,1,400,04/26/19 12:01,"566 West St, Portland, ME 04101" +191743,Apple Airpods Headphones,1,150,04/06/19 10:42,"983 Spruce St, New York City, NY 10001" +191744,Lightning Charging Cable,1,14.95,04/01/19 12:27,"3 5th St, New York City, NY 10001" +191745,AA Batteries (4-pack),2,3.84,04/02/19 21:23,"480 Hickory St, Austin, TX 73301" +191746,AA Batteries (4-pack),1,3.84,04/13/19 21:17,"946 Cedar St, New York City, NY 10001" +191747,USB-C Charging Cable,1,11.95,04/20/19 23:19,"464 Lincoln St, San Francisco, CA 94016" +191748,AA Batteries (4-pack),2,3.84,04/25/19 09:30,"210 10th St, New York City, NY 10001" +191749,USB-C Charging Cable,1,11.95,04/09/19 19:07,"153 Cedar St, Los Angeles, CA 90001" +191750,USB-C Charging Cable,2,11.95,04/02/19 11:59,"86 Jefferson St, Atlanta, GA 30301" +191751,Google Phone,1,600,04/23/19 14:20,"701 Hill St, Los Angeles, CA 90001" +191752,ThinkPad Laptop,1,999.99,04/20/19 19:39,"780 Pine St, Los Angeles, CA 90001" +191753,AA Batteries (4-pack),1,3.84,04/09/19 21:43,"234 Chestnut St, Boston, MA 02215" +191754,Wired Headphones,1,11.99,04/03/19 10:18,"140 7th St, New York City, NY 10001" +191755,USB-C Charging Cable,1,11.95,04/27/19 17:35,"318 Spruce St, San Francisco, CA 94016" +191756,USB-C Charging Cable,1,11.95,04/14/19 11:37,"16 Hill St, Los Angeles, CA 90001" +191757,Vareebadd Phone,1,400,04/11/19 18:23,"48 Main St, San Francisco, CA 94016" +191757,USB-C Charging Cable,1,11.95,04/11/19 18:23,"48 Main St, San Francisco, CA 94016" +191758,Flatscreen TV,1,300,04/20/19 17:51,"591 Elm St, San Francisco, CA 94016" +191759,AAA Batteries (4-pack),1,2.99,05/01/19 00:56,"256 Park St, Boston, MA 02215" +191760,Wired Headphones,1,11.99,04/25/19 14:54,"589 6th St, San Francisco, CA 94016" +191761,Bose SoundSport Headphones,1,99.99,04/19/19 06:57,"871 11th St, Seattle, WA 98101" +191762,Apple Airpods Headphones,1,150,04/22/19 23:15,"938 Walnut St, Dallas, TX 75001" +191763,Wired Headphones,1,11.99,04/11/19 18:49,"301 Dogwood St, Los Angeles, CA 90001" +191764,Wired Headphones,2,11.99,04/03/19 07:31,"455 2nd St, San Francisco, CA 94016" +191765,Lightning Charging Cable,1,14.95,04/04/19 15:40,"870 5th St, San Francisco, CA 94016" +191766,Lightning Charging Cable,1,14.95,04/20/19 19:28,"847 Lake St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +191767,AAA Batteries (4-pack),1,2.99,04/25/19 21:56,"560 Maple St, Boston, MA 02215" +191768,USB-C Charging Cable,1,11.95,04/28/19 17:23,"841 Spruce St, Boston, MA 02215" +191769,Apple Airpods Headphones,1,150,04/10/19 10:39,"870 Wilson St, San Francisco, CA 94016" +191770,AA Batteries (4-pack),1,3.84,04/27/19 12:49,"437 Wilson St, Seattle, WA 98101" +191771,Macbook Pro Laptop,1,1700,04/25/19 13:33,"732 Elm St, Los Angeles, CA 90001" +191772,Wired Headphones,1,11.99,04/12/19 09:54,"56 Main St, Los Angeles, CA 90001" +191773,AA Batteries (4-pack),2,3.84,04/20/19 19:23,"110 Highland St, San Francisco, CA 94016" +191774,Wired Headphones,1,11.99,04/02/19 08:41,"191 Spruce St, New York City, NY 10001" +191775,Lightning Charging Cable,1,14.95,04/22/19 22:53,"496 12th St, Atlanta, GA 30301" +191776,AAA Batteries (4-pack),1,2.99,04/23/19 19:47,"42 Meadow St, New York City, NY 10001" +191776,Lightning Charging Cable,2,14.95,04/23/19 19:47,"42 Meadow St, New York City, NY 10001" +191777,Wired Headphones,1,11.99,04/26/19 21:24,"109 Center St, Dallas, TX 75001" +191778,Vareebadd Phone,1,400,04/09/19 00:45,"184 Maple St, Los Angeles, CA 90001" +191778,USB-C Charging Cable,1,11.95,04/09/19 00:45,"184 Maple St, Los Angeles, CA 90001" +191779,Macbook Pro Laptop,1,1700,04/01/19 09:30,"122 Jackson St, Austin, TX 73301" +191780,LG Washing Machine,1,600.0,04/28/19 20:48,"985 South St, San Francisco, CA 94016" +191781,AA Batteries (4-pack),2,3.84,04/17/19 10:27,"754 Dogwood St, Seattle, WA 98101" +191782,AA Batteries (4-pack),1,3.84,05/01/19 00:33,"821 Church St, Los Angeles, CA 90001" +191783,Lightning Charging Cable,1,14.95,04/13/19 01:34,"795 Highland St, San Francisco, CA 94016" +191784,Bose SoundSport Headphones,1,99.99,04/01/19 13:12,"19 1st St, San Francisco, CA 94016" +191785,Flatscreen TV,1,300,04/02/19 08:21,"86 Church St, Austin, TX 73301" +191786,AAA Batteries (4-pack),1,2.99,04/18/19 11:38,"895 1st St, San Francisco, CA 94016" +191787,USB-C Charging Cable,1,11.95,04/16/19 10:25,"855 4th St, Austin, TX 73301" +191788,27in FHD Monitor,1,149.99,04/17/19 10:28,"336 West St, Austin, TX 73301" +191789,AAA Batteries (4-pack),2,2.99,04/12/19 20:06,"652 Wilson St, Dallas, TX 75001" +191790,Macbook Pro Laptop,1,1700,04/11/19 19:10,"531 Maple St, Portland, ME 04101" +191791,Macbook Pro Laptop,1,1700,04/05/19 10:51,"917 Madison St, Boston, MA 02215" +191792,27in FHD Monitor,2,149.99,04/29/19 21:13,"63 Highland St, Los Angeles, CA 90001" +191793,USB-C Charging Cable,1,11.95,04/11/19 12:55,"822 Forest St, Portland, ME 04101" +191794,USB-C Charging Cable,2,11.95,04/29/19 09:58,"358 Lake St, San Francisco, CA 94016" +191795,USB-C Charging Cable,1,11.95,04/28/19 18:52,"462 Cedar St, San Francisco, CA 94016" +191796,USB-C Charging Cable,1,11.95,04/18/19 12:57,"775 Wilson St, Dallas, TX 75001" +191797,27in FHD Monitor,1,149.99,04/12/19 19:18,"571 Washington St, New York City, NY 10001" +191798,Lightning Charging Cable,1,14.95,04/23/19 19:00,"892 6th St, San Francisco, CA 94016" +191799,Lightning Charging Cable,1,14.95,04/09/19 12:22,"175 11th St, San Francisco, CA 94016" +191800,34in Ultrawide Monitor,1,379.99,04/12/19 16:16,"837 Hill St, Atlanta, GA 30301" +191801,Lightning Charging Cable,1,14.95,04/24/19 10:57,"497 Walnut St, New York City, NY 10001" +191802,AAA Batteries (4-pack),2,2.99,04/02/19 13:54,"190 Main St, New York City, NY 10001" +191803,Bose SoundSport Headphones,1,99.99,04/07/19 11:22,"652 Washington St, Los Angeles, CA 90001" +191804,USB-C Charging Cable,2,11.95,04/28/19 19:57,"383 Madison St, Boston, MA 02215" +191805,ThinkPad Laptop,1,999.99,04/09/19 16:05,"532 Cherry St, San Francisco, CA 94016" +191806,USB-C Charging Cable,1,11.95,04/03/19 18:42,"353 Wilson St, Dallas, TX 75001" +191807,Lightning Charging Cable,1,14.95,04/24/19 20:35,"334 Wilson St, San Francisco, CA 94016" +191808,27in 4K Gaming Monitor,1,389.99,04/12/19 11:17,"793 Lincoln St, Boston, MA 02215" +191809,USB-C Charging Cable,1,11.95,04/07/19 15:29,"628 Willow St, Portland, OR 97035" +191810,Apple Airpods Headphones,1,150,04/24/19 11:11,"338 Dogwood St, Los Angeles, CA 90001" +191811,AA Batteries (4-pack),2,3.84,04/11/19 11:44,"290 11th St, San Francisco, CA 94016" +191812,AAA Batteries (4-pack),2,2.99,04/06/19 21:53,"329 8th St, New York City, NY 10001" +191813,Apple Airpods Headphones,1,150,04/10/19 12:16,"107 Main St, San Francisco, CA 94016" +191814,Lightning Charging Cable,1,14.95,04/14/19 20:14,"466 2nd St, New York City, NY 10001" +191815,AA Batteries (4-pack),2,3.84,04/14/19 18:46,"311 Johnson St, New York City, NY 10001" +191816,Wired Headphones,1,11.99,04/19/19 23:10,"987 Elm St, Portland, ME 04101" +191817,USB-C Charging Cable,1,11.95,04/14/19 09:52,"524 North St, San Francisco, CA 94016" +191818,iPhone,1,700,04/16/19 18:04,"327 8th St, Los Angeles, CA 90001" +191819,Google Phone,1,600,04/27/19 13:26,"344 Sunset St, San Francisco, CA 94016" +191819,USB-C Charging Cable,1,11.95,04/27/19 13:26,"344 Sunset St, San Francisco, CA 94016" +191820,Vareebadd Phone,1,400,04/17/19 19:38,"680 Lincoln St, Seattle, WA 98101" +191820,USB-C Charging Cable,1,11.95,04/17/19 19:38,"680 Lincoln St, Seattle, WA 98101" +191821,Lightning Charging Cable,1,14.95,04/16/19 18:39,"660 Church St, Atlanta, GA 30301" +191822,20in Monitor,1,109.99,04/14/19 14:00,"33 Jefferson St, San Francisco, CA 94016" +191823,27in FHD Monitor,1,149.99,04/22/19 20:21,"3 10th St, Atlanta, GA 30301" +191824,Apple Airpods Headphones,1,150,04/20/19 23:43,"567 Lincoln St, Los Angeles, CA 90001" +191825,34in Ultrawide Monitor,1,379.99,04/23/19 16:59,"581 13th St, San Francisco, CA 94016" +191826,USB-C Charging Cable,1,11.95,04/29/19 09:48,"546 Wilson St, San Francisco, CA 94016" +191827,Vareebadd Phone,1,400,04/22/19 08:34,"392 Elm St, San Francisco, CA 94016" +191828,Macbook Pro Laptop,1,1700,04/04/19 23:41,"561 Lakeview St, Los Angeles, CA 90001" +191829,Wired Headphones,1,11.99,04/06/19 04:39,"478 Sunset St, New York City, NY 10001" +191830,AA Batteries (4-pack),2,3.84,04/08/19 08:56,"76 Jefferson St, New York City, NY 10001" +191831,USB-C Charging Cable,1,11.95,04/29/19 15:50,"835 Elm St, Boston, MA 02215" +191832,AA Batteries (4-pack),1,3.84,04/06/19 20:22,"60 Hickory St, Los Angeles, CA 90001" +191833,Macbook Pro Laptop,1,1700,04/09/19 20:15,"887 Highland St, San Francisco, CA 94016" +191834,Wired Headphones,1,11.99,04/22/19 21:05,"671 Sunset St, New York City, NY 10001" +191835,Lightning Charging Cable,2,14.95,04/23/19 12:01,"569 Sunset St, Austin, TX 73301" +191836,iPhone,1,700,04/19/19 17:14,"157 Washington St, Portland, OR 97035" +191837,USB-C Charging Cable,1,11.95,04/16/19 15:49,"432 Dogwood St, Dallas, TX 75001" +191838,AA Batteries (4-pack),1,3.84,04/24/19 19:48,"429 West St, New York City, NY 10001" +191839,Bose SoundSport Headphones,1,99.99,04/16/19 16:17,"831 Forest St, San Francisco, CA 94016" +191840,Google Phone,1,600,04/27/19 23:41,"785 1st St, San Francisco, CA 94016" +191840,USB-C Charging Cable,1,11.95,04/27/19 23:41,"785 1st St, San Francisco, CA 94016" +191841,Flatscreen TV,1,300,04/06/19 00:31,"948 Highland St, New York City, NY 10001" +191842,USB-C Charging Cable,1,11.95,04/16/19 04:39,"938 Ridge St, Atlanta, GA 30301" +191843,Google Phone,1,600,04/12/19 14:09,"609 5th St, San Francisco, CA 94016" +191844,Wired Headphones,1,11.99,04/17/19 21:49,"596 Ridge St, San Francisco, CA 94016" +191845,Bose SoundSport Headphones,1,99.99,04/15/19 10:31,"571 Jefferson St, Seattle, WA 98101" +191846,AAA Batteries (4-pack),1,2.99,04/23/19 17:08,"640 Highland St, Los Angeles, CA 90001" +191847,Wired Headphones,1,11.99,04/09/19 01:07,"295 Washington St, Boston, MA 02215" +191848,Wired Headphones,2,11.99,04/16/19 14:22,"65 Elm St, Boston, MA 02215" +191849,Lightning Charging Cable,1,14.95,04/01/19 17:28,"247 Ridge St, Boston, MA 02215" +191850,USB-C Charging Cable,1,11.95,04/13/19 11:26,"988 14th St, Dallas, TX 75001" +191851,Apple Airpods Headphones,1,150,04/22/19 14:48,"749 8th St, Atlanta, GA 30301" +191852,AA Batteries (4-pack),2,3.84,04/05/19 18:55,"222 Chestnut St, Seattle, WA 98101" +191853,Wired Headphones,1,11.99,04/24/19 13:52,"634 Jackson St, Los Angeles, CA 90001" +191854,AAA Batteries (4-pack),1,2.99,04/13/19 03:03,"991 6th St, San Francisco, CA 94016" +191855,34in Ultrawide Monitor,1,379.99,04/19/19 11:51,"922 Willow St, Portland, OR 97035" +191856,Lightning Charging Cable,1,14.95,04/12/19 17:36,"505 Park St, San Francisco, CA 94016" +191857,Macbook Pro Laptop,1,1700,04/20/19 07:52,"413 10th St, New York City, NY 10001" +191858,AA Batteries (4-pack),1,3.84,04/17/19 10:37,"948 Park St, Boston, MA 02215" +191859,USB-C Charging Cable,1,11.95,04/08/19 00:22,"367 Willow St, San Francisco, CA 94016" +191860,Apple Airpods Headphones,1,150,04/11/19 19:33,"174 Lincoln St, Atlanta, GA 30301" +191861,Bose SoundSport Headphones,2,99.99,04/10/19 15:19,"185 Ridge St, San Francisco, CA 94016" +191862,AA Batteries (4-pack),2,3.84,04/24/19 15:22,"740 14th St, Atlanta, GA 30301" +191863,USB-C Charging Cable,1,11.95,04/21/19 16:28,"326 Jefferson St, Seattle, WA 98101" +191864,AA Batteries (4-pack),1,3.84,04/23/19 17:24,"897 South St, Boston, MA 02215" +191865,Lightning Charging Cable,1,14.95,04/10/19 07:31,"498 Willow St, Portland, OR 97035" +191866,Bose SoundSport Headphones,1,99.99,04/09/19 11:31,"779 Lincoln St, New York City, NY 10001" +191867,20in Monitor,1,109.99,04/26/19 21:40,"773 11th St, Seattle, WA 98101" +191868,Wired Headphones,1,11.99,04/09/19 16:03,"529 13th St, Boston, MA 02215" +191869,AA Batteries (4-pack),1,3.84,04/08/19 16:03,"315 Lakeview St, New York City, NY 10001" +191870,ThinkPad Laptop,1,999.99,04/06/19 08:16,"409 Johnson St, Austin, TX 73301" +191871,Wired Headphones,1,11.99,04/24/19 21:20,"298 13th St, Seattle, WA 98101" +191871,34in Ultrawide Monitor,1,379.99,04/24/19 21:20,"298 13th St, Seattle, WA 98101" +191872,USB-C Charging Cable,1,11.95,04/04/19 04:05,"880 Forest St, San Francisco, CA 94016" +191873,Apple Airpods Headphones,1,150,04/29/19 14:01,"777 Sunset St, Seattle, WA 98101" +191874,AAA Batteries (4-pack),1,2.99,04/25/19 12:35,"40 Jefferson St, Atlanta, GA 30301" +191875,Wired Headphones,1,11.99,04/23/19 14:20,"616 Ridge St, San Francisco, CA 94016" +191876,20in Monitor,1,109.99,04/17/19 16:36,"580 7th St, Boston, MA 02215" +191877,Lightning Charging Cable,1,14.95,04/24/19 20:58,"369 Elm St, Atlanta, GA 30301" +191878,USB-C Charging Cable,1,11.95,04/10/19 16:20,"880 Meadow St, San Francisco, CA 94016" +191879,AAA Batteries (4-pack),2,2.99,04/08/19 13:04,"110 Adams St, Boston, MA 02215" +191880,Wired Headphones,1,11.99,04/01/19 12:10,"495 Madison St, Los Angeles, CA 90001" +191881,27in 4K Gaming Monitor,1,389.99,04/30/19 14:10,"447 Pine St, San Francisco, CA 94016" +191882,Wired Headphones,1,11.99,04/15/19 21:06,"846 Willow St, San Francisco, CA 94016" +191883,34in Ultrawide Monitor,1,379.99,04/24/19 22:26,"36 Maple St, Dallas, TX 75001" +191884,27in FHD Monitor,1,149.99,04/24/19 13:50,"477 Johnson St, San Francisco, CA 94016" +191885,ThinkPad Laptop,1,999.99,04/11/19 19:11,"655 West St, Dallas, TX 75001" +191886,LG Dryer,1,600.0,04/19/19 15:31,"743 Elm St, San Francisco, CA 94016" +191887,LG Washing Machine,1,600.0,04/17/19 16:12,"467 10th St, San Francisco, CA 94016" +191888,Lightning Charging Cable,1,14.95,04/13/19 19:08,"633 Maple St, Boston, MA 02215" +191889,AAA Batteries (4-pack),1,2.99,04/14/19 15:40,"766 Church St, New York City, NY 10001" +191890,ThinkPad Laptop,1,999.99,04/05/19 12:46,"454 6th St, Seattle, WA 98101" +191891,iPhone,1,700,04/29/19 11:18,"863 Cedar St, Dallas, TX 75001" +191891,Apple Airpods Headphones,1,150,04/29/19 11:18,"863 Cedar St, Dallas, TX 75001" +191892,AA Batteries (4-pack),4,3.84,04/03/19 16:36,"603 11th St, Atlanta, GA 30301" +191893,27in FHD Monitor,1,149.99,04/07/19 08:40,"928 Hickory St, Portland, OR 97035" +191894,Wired Headphones,1,11.99,04/24/19 10:01,"347 6th St, Austin, TX 73301" +191895,Bose SoundSport Headphones,1,99.99,04/03/19 13:45,"620 Willow St, New York City, NY 10001" +191896,Macbook Pro Laptop,1,1700,04/06/19 10:30,"992 Dogwood St, Boston, MA 02215" +191897,Google Phone,1,600,04/09/19 17:18,"716 Jefferson St, Los Angeles, CA 90001" +191897,Wired Headphones,1,11.99,04/09/19 17:18,"716 Jefferson St, Los Angeles, CA 90001" +191898,USB-C Charging Cable,1,11.95,04/21/19 08:30,"229 Lakeview St, Portland, OR 97035" +191899,USB-C Charging Cable,1,11.95,04/18/19 15:49,"306 14th St, San Francisco, CA 94016" +191900,AAA Batteries (4-pack),2,2.99,04/20/19 16:40,"125 Willow St, Los Angeles, CA 90001" +191901,Google Phone,1,600,04/13/19 12:38,"224 7th St, Austin, TX 73301" +191901,Bose SoundSport Headphones,1,99.99,04/13/19 12:38,"224 7th St, Austin, TX 73301" +191902,AA Batteries (4-pack),2,3.84,04/12/19 10:29,"223 13th St, Seattle, WA 98101" +191903,USB-C Charging Cable,1,11.95,04/09/19 21:46,"41 Walnut St, Los Angeles, CA 90001" +191904,Bose SoundSport Headphones,1,99.99,04/20/19 11:29,"680 Church St, New York City, NY 10001" +191905,AA Batteries (4-pack),1,3.84,04/29/19 12:08,"612 Jackson St, Austin, TX 73301" +191906,Bose SoundSport Headphones,1,99.99,04/18/19 11:05,"281 Spruce St, Seattle, WA 98101" +191907,AAA Batteries (4-pack),3,2.99,04/21/19 08:49,"229 Pine St, Los Angeles, CA 90001" +191908,iPhone,1,700,04/12/19 18:37,"95 5th St, Austin, TX 73301" +191909,USB-C Charging Cable,1,11.95,04/14/19 00:58,"698 Jefferson St, San Francisco, CA 94016" +191910,Bose SoundSport Headphones,1,99.99,04/19/19 16:18,"717 Adams St, San Francisco, CA 94016" +191911,Macbook Pro Laptop,1,1700,05/01/19 00:25,"373 Hill St, Los Angeles, CA 90001" +191912,Wired Headphones,1,11.99,04/11/19 19:39,"286 Hickory St, San Francisco, CA 94016" +191913,AA Batteries (4-pack),1,3.84,04/30/19 17:34,"448 10th St, New York City, NY 10001" +191914,ThinkPad Laptop,1,999.99,04/28/19 20:25,"685 Hill St, Seattle, WA 98101" +191915,27in FHD Monitor,1,149.99,04/25/19 11:01,"28 Sunset St, Boston, MA 02215" +191916,USB-C Charging Cable,1,11.95,04/11/19 16:27,"986 Forest St, Atlanta, GA 30301" +191917,AAA Batteries (4-pack),1,2.99,04/13/19 17:52,"634 Johnson St, New York City, NY 10001" +191918,USB-C Charging Cable,1,11.95,04/14/19 21:36,"30 Chestnut St, Los Angeles, CA 90001" +191919,USB-C Charging Cable,1,11.95,04/26/19 18:21,"90 Meadow St, San Francisco, CA 94016" +191920,Wired Headphones,1,11.99,04/29/19 16:20,"203 8th St, Atlanta, GA 30301" +191921,Wired Headphones,1,11.99,04/19/19 19:49,"639 9th St, Los Angeles, CA 90001" +191922,Lightning Charging Cable,1,14.95,04/26/19 18:23,"949 14th St, Seattle, WA 98101" +191923,Bose SoundSport Headphones,1,99.99,04/17/19 23:14,"341 Hill St, New York City, NY 10001" +191924,Apple Airpods Headphones,1,150,04/16/19 11:13,"59 Hill St, Los Angeles, CA 90001" +191925,AA Batteries (4-pack),1,3.84,04/08/19 17:25,"731 Meadow St, Portland, OR 97035" +191926,27in FHD Monitor,1,149.99,04/15/19 09:47,"66 Chestnut St, San Francisco, CA 94016" +191927,27in 4K Gaming Monitor,1,389.99,04/15/19 17:57,"239 West St, Seattle, WA 98101" +191928,AAA Batteries (4-pack),3,2.99,04/29/19 08:27,"27 Cedar St, Seattle, WA 98101" +191929,iPhone,1,700,04/21/19 12:49,"233 Cherry St, San Francisco, CA 94016" +191929,Lightning Charging Cable,1,14.95,04/21/19 12:49,"233 Cherry St, San Francisco, CA 94016" +191930,AA Batteries (4-pack),1,3.84,04/25/19 10:52,"846 Lake St, San Francisco, CA 94016" +191931,Lightning Charging Cable,1,14.95,04/20/19 21:16,"973 Park St, San Francisco, CA 94016" +191932,27in FHD Monitor,1,149.99,04/03/19 21:00,"533 Meadow St, Dallas, TX 75001" +191933,Bose SoundSport Headphones,1,99.99,04/26/19 18:21,"243 West St, Atlanta, GA 30301" +191934,Macbook Pro Laptop,1,1700,04/17/19 16:18,"920 Elm St, Los Angeles, CA 90001" +191935,AA Batteries (4-pack),1,3.84,04/23/19 09:37,"249 Hickory St, San Francisco, CA 94016" +191936,34in Ultrawide Monitor,1,379.99,04/06/19 11:04,"532 5th St, Dallas, TX 75001" +191937,AA Batteries (4-pack),2,3.84,04/28/19 19:41,"430 Wilson St, Dallas, TX 75001" +191938,USB-C Charging Cable,1,11.95,04/20/19 20:29,"232 Lincoln St, Los Angeles, CA 90001" +191939,Lightning Charging Cable,1,14.95,04/22/19 13:17,"376 Lake St, San Francisco, CA 94016" +191939,AA Batteries (4-pack),1,3.84,04/22/19 13:17,"376 Lake St, San Francisco, CA 94016" +191940,Apple Airpods Headphones,1,150,04/01/19 12:09,"155 10th St, Atlanta, GA 30301" +191941,Bose SoundSport Headphones,1,99.99,04/29/19 10:01,"166 Cherry St, Boston, MA 02215" +191942,AA Batteries (4-pack),1,3.84,04/21/19 19:38,"36 10th St, Boston, MA 02215" +191943,iPhone,1,700,04/07/19 22:39,"575 Madison St, Seattle, WA 98101" +191944,USB-C Charging Cable,1,11.95,04/22/19 20:28,"370 1st St, Seattle, WA 98101" +191945,Apple Airpods Headphones,1,150,04/08/19 14:02,"551 North St, San Francisco, CA 94016" +191946,Vareebadd Phone,1,400,04/30/19 08:02,"380 1st St, Los Angeles, CA 90001" +191947,Apple Airpods Headphones,1,150,04/06/19 07:41,"844 Madison St, Los Angeles, CA 90001" +191948,27in 4K Gaming Monitor,1,389.99,04/24/19 19:40,"966 River St, Seattle, WA 98101" +191949,AAA Batteries (4-pack),1,2.99,04/21/19 17:40,"175 Hill St, Seattle, WA 98101" +191950,USB-C Charging Cable,1,11.95,04/22/19 12:56,"960 Chestnut St, Los Angeles, CA 90001" +191951,AA Batteries (4-pack),1,3.84,04/16/19 21:31,"313 9th St, New York City, NY 10001" +191952,AAA Batteries (4-pack),1,2.99,04/19/19 18:59,"616 North St, San Francisco, CA 94016" +191953,AA Batteries (4-pack),2,3.84,04/27/19 16:59,"400 Highland St, New York City, NY 10001" +191954,27in 4K Gaming Monitor,1,389.99,04/20/19 17:35,"720 9th St, San Francisco, CA 94016" +191955,Wired Headphones,1,11.99,04/17/19 13:39,"312 5th St, San Francisco, CA 94016" +191956,Vareebadd Phone,1,400,04/18/19 19:19,"338 Dogwood St, San Francisco, CA 94016" +191957,Google Phone,1,600,04/08/19 14:58,"210 Forest St, Los Angeles, CA 90001" +191958,AA Batteries (4-pack),1,3.84,04/12/19 18:12,"472 Maple St, New York City, NY 10001" +191959,AA Batteries (4-pack),1,3.84,04/25/19 13:49,"536 Lincoln St, Portland, ME 04101" +191960,34in Ultrawide Monitor,1,379.99,04/24/19 06:47,"976 Maple St, Dallas, TX 75001" +191961,iPhone,1,700,04/26/19 15:15,"640 Walnut St, San Francisco, CA 94016" +191961,Lightning Charging Cable,1,14.95,04/26/19 15:15,"640 Walnut St, San Francisco, CA 94016" +191962,Apple Airpods Headphones,1,150,04/13/19 19:44,"537 Washington St, Boston, MA 02215" +191963,27in FHD Monitor,1,149.99,04/19/19 13:31,"59 North St, Austin, TX 73301" +191964,AA Batteries (4-pack),1,3.84,04/11/19 09:55,"77 Wilson St, San Francisco, CA 94016" +191965,27in 4K Gaming Monitor,1,389.99,04/24/19 16:25,"651 North St, San Francisco, CA 94016" +191966,iPhone,1,700,04/12/19 13:20,"61 14th St, Seattle, WA 98101" +191966,Wired Headphones,1,11.99,04/12/19 13:20,"61 14th St, Seattle, WA 98101" +191967,Apple Airpods Headphones,1,150,04/03/19 18:16,"90 Spruce St, Seattle, WA 98101" +191968,AAA Batteries (4-pack),1,2.99,04/28/19 15:03,"606 Chestnut St, San Francisco, CA 94016" +191969,27in 4K Gaming Monitor,1,389.99,04/12/19 17:36,"740 Wilson St, San Francisco, CA 94016" +191970,20in Monitor,1,109.99,04/02/19 11:03,"715 Adams St, San Francisco, CA 94016" +191971,Lightning Charging Cable,1,14.95,04/05/19 12:47,"360 5th St, New York City, NY 10001" +191972,Macbook Pro Laptop,1,1700,04/09/19 00:17,"688 14th St, San Francisco, CA 94016" +191973,Bose SoundSport Headphones,1,99.99,04/14/19 14:33,"608 Jefferson St, Boston, MA 02215" +191974,Bose SoundSport Headphones,1,99.99,04/27/19 19:28,"223 River St, San Francisco, CA 94016" +191975,Wired Headphones,1,11.99,04/30/19 11:06,"263 Jefferson St, New York City, NY 10001" +191976,Wired Headphones,1,11.99,04/01/19 18:36,"174 4th St, San Francisco, CA 94016" +191977,Lightning Charging Cable,1,14.95,04/04/19 15:55,"736 6th St, San Francisco, CA 94016" +191978,Apple Airpods Headphones,1,150,04/21/19 12:34,"481 Pine St, San Francisco, CA 94016" +191979,USB-C Charging Cable,1,11.95,04/02/19 18:14,"540 12th St, Atlanta, GA 30301" +191980,iPhone,1,700,04/18/19 02:59,"209 Madison St, Los Angeles, CA 90001" +191981,Lightning Charging Cable,1,14.95,04/25/19 18:51,"548 Washington St, Boston, MA 02215" +191982,Bose SoundSport Headphones,1,99.99,04/18/19 23:39,"561 Adams St, Los Angeles, CA 90001" +191983,AA Batteries (4-pack),1,3.84,04/05/19 18:40,"80 Adams St, San Francisco, CA 94016" +191984,Wired Headphones,1,11.99,04/29/19 08:01,"312 Ridge St, Portland, OR 97035" +191985,iPhone,1,700,04/24/19 17:08,"522 12th St, Dallas, TX 75001" +191985,Lightning Charging Cable,1,14.95,04/24/19 17:08,"522 12th St, Dallas, TX 75001" +191986,27in FHD Monitor,1,149.99,04/23/19 13:51,"242 River St, New York City, NY 10001" +191987,USB-C Charging Cable,1,11.95,04/18/19 13:30,"155 Ridge St, Boston, MA 02215" +191988,ThinkPad Laptop,1,999.99,04/07/19 18:24,"645 13th St, New York City, NY 10001" +191989,Flatscreen TV,1,300,04/25/19 14:32,"12 Maple St, Boston, MA 02215" +191990,Flatscreen TV,1,300,04/23/19 21:10,"564 Walnut St, Los Angeles, CA 90001" +191991,Lightning Charging Cable,1,14.95,04/29/19 10:24,"530 7th St, New York City, NY 10001" +191992,iPhone,1,700,04/02/19 22:09,"956 Lincoln St, Los Angeles, CA 90001" +191993,Bose SoundSport Headphones,1,99.99,04/16/19 11:48,"118 1st St, Seattle, WA 98101" +191994,Lightning Charging Cable,1,14.95,04/13/19 18:46,"723 Cherry St, Dallas, TX 75001" +191995,34in Ultrawide Monitor,1,379.99,04/21/19 11:34,"727 South St, Portland, OR 97035" +191996,USB-C Charging Cable,1,11.95,04/16/19 13:48,"366 Hickory St, Atlanta, GA 30301" +191996,USB-C Charging Cable,1,11.95,04/16/19 13:48,"366 Hickory St, Atlanta, GA 30301" +191997,AA Batteries (4-pack),1,3.84,04/30/19 16:46,"284 South St, San Francisco, CA 94016" +191998,Wired Headphones,1,11.99,04/24/19 09:26,"953 River St, Seattle, WA 98101" +191999,USB-C Charging Cable,1,11.95,04/17/19 12:56,"817 Maple St, San Francisco, CA 94016" +192000,Apple Airpods Headphones,1,150,04/20/19 21:42,"238 Washington St, San Francisco, CA 94016" +192001,USB-C Charging Cable,1,11.95,04/07/19 23:34,"381 Cedar St, Dallas, TX 75001" +192002,AA Batteries (4-pack),1,3.84,04/25/19 19:36,"238 West St, Atlanta, GA 30301" +192003,USB-C Charging Cable,1,11.95,04/17/19 14:20,"374 Maple St, Seattle, WA 98101" +192004,USB-C Charging Cable,1,11.95,04/29/19 14:15,"990 Pine St, New York City, NY 10001" +192005,27in FHD Monitor,1,149.99,04/12/19 19:23,"472 Hickory St, Seattle, WA 98101" +192006,AA Batteries (4-pack),1,3.84,04/27/19 22:17,"336 Washington St, New York City, NY 10001" +192007,Flatscreen TV,1,300,04/19/19 22:29,"824 Sunset St, Boston, MA 02215" +192008,Apple Airpods Headphones,1,150,04/14/19 16:39,"967 8th St, San Francisco, CA 94016" +192009,USB-C Charging Cable,2,11.95,04/21/19 11:12,"637 Lincoln St, Boston, MA 02215" +192010,Apple Airpods Headphones,1,150,04/23/19 16:56,"882 4th St, Los Angeles, CA 90001" +192011,AAA Batteries (4-pack),1,2.99,04/27/19 10:08,"620 Main St, Seattle, WA 98101" +192012,27in FHD Monitor,1,149.99,04/08/19 20:37,"473 Madison St, Dallas, TX 75001" +192013,USB-C Charging Cable,1,11.95,04/16/19 09:51,"339 Hickory St, Austin, TX 73301" +192014,Lightning Charging Cable,1,14.95,04/02/19 19:25,"576 Elm St, Atlanta, GA 30301" +192015,Lightning Charging Cable,1,14.95,04/03/19 22:29,"683 14th St, Atlanta, GA 30301" +192016,Lightning Charging Cable,1,14.95,04/07/19 11:53,"87 Dogwood St, New York City, NY 10001" +192017,AA Batteries (4-pack),1,3.84,04/04/19 22:14,"110 Ridge St, Dallas, TX 75001" +192018,Lightning Charging Cable,1,14.95,04/01/19 09:33,"262 Elm St, Atlanta, GA 30301" +192019,AA Batteries (4-pack),1,3.84,04/19/19 07:58,"388 Jefferson St, New York City, NY 10001" +192020,20in Monitor,1,109.99,04/23/19 22:00,"957 5th St, San Francisco, CA 94016" +192021,USB-C Charging Cable,1,11.95,04/04/19 20:59,"236 Lakeview St, San Francisco, CA 94016" +192022,Vareebadd Phone,1,400,04/04/19 17:19,"440 Jefferson St, Boston, MA 02215" +192022,Bose SoundSport Headphones,1,99.99,04/04/19 17:19,"440 Jefferson St, Boston, MA 02215" +192023,Bose SoundSport Headphones,1,99.99,04/21/19 15:29,"683 7th St, San Francisco, CA 94016" +192024,Bose SoundSport Headphones,1,99.99,04/08/19 22:16,"41 North St, Dallas, TX 75001" +192025,Google Phone,1,600,04/05/19 21:38,"197 Lakeview St, Boston, MA 02215" +192025,USB-C Charging Cable,1,11.95,04/05/19 21:38,"197 Lakeview St, Boston, MA 02215" +192026,Bose SoundSport Headphones,1,99.99,04/23/19 14:40,"18 Church St, Austin, TX 73301" +192027,iPhone,1,700,04/16/19 17:43,"92 13th St, San Francisco, CA 94016" +192028,Apple Airpods Headphones,1,150,04/29/19 23:10,"582 South St, New York City, NY 10001" +192029,20in Monitor,1,109.99,04/24/19 10:29,"759 Lincoln St, San Francisco, CA 94016" +192030,20in Monitor,1,109.99,04/07/19 00:07,"755 13th St, Los Angeles, CA 90001" +192031,AA Batteries (4-pack),1,3.84,04/18/19 13:34,"395 Dogwood St, San Francisco, CA 94016" +192032,Apple Airpods Headphones,1,150,04/17/19 15:08,"600 10th St, Portland, OR 97035" +192033,Apple Airpods Headphones,1,150,04/25/19 19:27,"828 Sunset St, New York City, NY 10001" +192034,Bose SoundSport Headphones,1,99.99,04/10/19 13:44,"632 Ridge St, Los Angeles, CA 90001" +192035,AA Batteries (4-pack),1,3.84,04/17/19 17:09,"934 Washington St, Los Angeles, CA 90001" +192036,Apple Airpods Headphones,1,150,04/10/19 11:50,"461 2nd St, Portland, OR 97035" +192037,Lightning Charging Cable,1,14.95,05/01/19 00:09,"656 1st St, San Francisco, CA 94016" +192038,34in Ultrawide Monitor,1,379.99,04/01/19 22:48,"809 Washington St, Boston, MA 02215" +192039,USB-C Charging Cable,1,11.95,04/27/19 10:34,"397 West St, San Francisco, CA 94016" +192040,AAA Batteries (4-pack),1,2.99,04/25/19 22:18,"530 Chestnut St, New York City, NY 10001" +192041,USB-C Charging Cable,1,11.95,04/05/19 19:29,"799 Washington St, Seattle, WA 98101" +192042,27in 4K Gaming Monitor,1,389.99,04/28/19 23:18,"756 Jefferson St, San Francisco, CA 94016" +192043,Apple Airpods Headphones,1,150,04/07/19 17:33,"968 Dogwood St, San Francisco, CA 94016" +192044,iPhone,1,700,04/19/19 20:01,"524 Lakeview St, Los Angeles, CA 90001" +192045,AAA Batteries (4-pack),3,2.99,04/30/19 00:56,"405 Cherry St, Boston, MA 02215" +192046,Vareebadd Phone,1,400,04/08/19 21:26,"704 Spruce St, San Francisco, CA 94016" +192047,Wired Headphones,1,11.99,04/12/19 12:00,"528 Main St, Boston, MA 02215" +192048,AAA Batteries (4-pack),4,2.99,04/04/19 14:26,"757 Washington St, Austin, TX 73301" +192049,AAA Batteries (4-pack),1,2.99,04/06/19 20:42,"682 Ridge St, Portland, OR 97035" +192050,Google Phone,1,600,04/12/19 12:38,"290 Cherry St, Atlanta, GA 30301" +192051,Lightning Charging Cable,1,14.95,04/04/19 18:27,"920 Walnut St, Los Angeles, CA 90001" +192052,Wired Headphones,1,11.99,04/01/19 21:35,"19 Forest St, Los Angeles, CA 90001" +192053,Lightning Charging Cable,1,14.95,04/09/19 14:49,"528 9th St, San Francisco, CA 94016" +192054,AA Batteries (4-pack),1,3.84,04/13/19 20:05,"690 North St, New York City, NY 10001" +192055,Lightning Charging Cable,1,14.95,04/10/19 17:11,"67 6th St, Dallas, TX 75001" +192056,AA Batteries (4-pack),2,3.84,04/22/19 18:56,"207 2nd St, Austin, TX 73301" +192057,AA Batteries (4-pack),1,3.84,04/27/19 00:47,"884 13th St, New York City, NY 10001" +192058,Lightning Charging Cable,1,14.95,04/19/19 20:21,"662 4th St, Seattle, WA 98101" +192059,USB-C Charging Cable,1,11.95,04/22/19 19:15,"508 10th St, San Francisco, CA 94016" +192060,AA Batteries (4-pack),1,3.84,04/20/19 20:00,"877 Walnut St, San Francisco, CA 94016" +192061,Bose SoundSport Headphones,2,99.99,04/21/19 18:55,"741 North St, San Francisco, CA 94016" +192062,USB-C Charging Cable,1,11.95,04/30/19 00:31,"903 2nd St, Atlanta, GA 30301" +192063,Wired Headphones,1,11.99,04/10/19 10:42,"859 River St, Los Angeles, CA 90001" +192064,Apple Airpods Headphones,1,150,04/17/19 08:59,"977 13th St, Seattle, WA 98101" +192065,Apple Airpods Headphones,1,150,04/16/19 20:06,"44 Ridge St, Seattle, WA 98101" +192066,AAA Batteries (4-pack),1,2.99,04/26/19 06:00,"242 6th St, New York City, NY 10001" +192066,Bose SoundSport Headphones,1,99.99,04/26/19 06:00,"242 6th St, New York City, NY 10001" +192067,USB-C Charging Cable,2,11.95,04/15/19 23:11,"144 Pine St, San Francisco, CA 94016" +192068,Lightning Charging Cable,1,14.95,04/28/19 06:28,"966 West St, Dallas, TX 75001" +192069,Lightning Charging Cable,1,14.95,04/26/19 18:08,"26 Jackson St, Los Angeles, CA 90001" +192070,ThinkPad Laptop,1,999.99,04/02/19 20:35,"611 7th St, New York City, NY 10001" +192071,Wired Headphones,1,11.99,04/19/19 18:24,"328 Adams St, San Francisco, CA 94016" +192072,Wired Headphones,1,11.99,04/18/19 09:31,"174 7th St, Portland, OR 97035" +192073,AAA Batteries (4-pack),4,2.99,04/18/19 03:16,"612 10th St, Boston, MA 02215" +192074,Lightning Charging Cable,1,14.95,04/12/19 02:18,"428 Lakeview St, Seattle, WA 98101" +192075,27in FHD Monitor,1,149.99,04/12/19 17:48,"836 Hill St, Dallas, TX 75001" +192076,Flatscreen TV,1,300,04/08/19 11:40,"565 South St, Los Angeles, CA 90001" +192077,Vareebadd Phone,1,400,04/23/19 23:53,"716 8th St, Seattle, WA 98101" +192078,Google Phone,1,600,04/12/19 14:45,"275 Spruce St, San Francisco, CA 94016" +192078,USB-C Charging Cable,1,11.95,04/12/19 14:45,"275 Spruce St, San Francisco, CA 94016" +192079,Bose SoundSport Headphones,1,99.99,04/16/19 19:44,"679 Church St, San Francisco, CA 94016" +192080,Bose SoundSport Headphones,1,99.99,04/06/19 21:39,"69 5th St, San Francisco, CA 94016" +192081,27in FHD Monitor,1,149.99,04/16/19 15:50,"245 Maple St, New York City, NY 10001" +192082,Google Phone,1,600,04/18/19 19:18,"391 Ridge St, San Francisco, CA 94016" +192083,AAA Batteries (4-pack),2,2.99,04/19/19 10:13,"180 Lakeview St, Atlanta, GA 30301" +192084,34in Ultrawide Monitor,1,379.99,04/20/19 16:51,"48 6th St, Portland, OR 97035" +192084,27in FHD Monitor,1,149.99,04/20/19 16:51,"48 6th St, Portland, OR 97035" +192085,USB-C Charging Cable,1,11.95,04/21/19 08:19,"995 Maple St, San Francisco, CA 94016" +192086,20in Monitor,1,109.99,05/01/19 01:40,"400 10th St, Los Angeles, CA 90001" +192087,Apple Airpods Headphones,1,150,04/13/19 01:12,"609 Main St, San Francisco, CA 94016" +192088,34in Ultrawide Monitor,1,379.99,04/26/19 16:19,"901 Elm St, San Francisco, CA 94016" +192089,USB-C Charging Cable,1,11.95,04/17/19 22:20,"26 Adams St, San Francisco, CA 94016" +192090,27in FHD Monitor,1,149.99,04/02/19 19:55,"312 7th St, Seattle, WA 98101" +192091,Wired Headphones,1,11.99,04/02/19 18:06,"900 Jefferson St, Boston, MA 02215" +192092,27in FHD Monitor,1,149.99,04/02/19 11:34,"256 River St, Los Angeles, CA 90001" +192093,AAA Batteries (4-pack),1,2.99,04/29/19 22:23,"180 Spruce St, Atlanta, GA 30301" +192094,Bose SoundSport Headphones,1,99.99,04/28/19 12:38,"976 Willow St, New York City, NY 10001" +192095,Bose SoundSport Headphones,1,99.99,04/19/19 21:06,"722 Walnut St, San Francisco, CA 94016" +192096,Wired Headphones,1,11.99,04/07/19 19:07,"811 Lincoln St, New York City, NY 10001" +192097,Wired Headphones,1,11.99,04/09/19 00:12,"113 Walnut St, New York City, NY 10001" +192098,Apple Airpods Headphones,1,150,04/08/19 23:04,"915 Madison St, Los Angeles, CA 90001" +192098,Macbook Pro Laptop,1,1700,04/08/19 23:04,"915 Madison St, Los Angeles, CA 90001" +192099,AA Batteries (4-pack),1,3.84,04/03/19 17:47,"11 Adams St, Atlanta, GA 30301" +192100,Lightning Charging Cable,1,14.95,04/23/19 16:14,"658 Park St, San Francisco, CA 94016" +192101,USB-C Charging Cable,1,11.95,04/15/19 10:53,"263 Meadow St, Boston, MA 02215" +192102,Apple Airpods Headphones,1,150,04/04/19 09:54,"341 Main St, New York City, NY 10001" +192103,ThinkPad Laptop,1,999.99,04/23/19 10:33,"771 12th St, San Francisco, CA 94016" +192104,USB-C Charging Cable,1,11.95,04/29/19 21:41,"538 13th St, New York City, NY 10001" +192105,AAA Batteries (4-pack),1,2.99,04/22/19 20:30,"279 Main St, Los Angeles, CA 90001" +192106,Apple Airpods Headphones,1,150,04/29/19 19:36,"720 5th St, San Francisco, CA 94016" +192107,Bose SoundSport Headphones,1,99.99,04/09/19 18:42,"377 Elm St, Austin, TX 73301" +192108,ThinkPad Laptop,1,999.99,04/21/19 13:40,"30 Dogwood St, Austin, TX 73301" +192109,Google Phone,1,600,04/09/19 03:10,"269 4th St, San Francisco, CA 94016" +192110,iPhone,1,700,04/15/19 14:19,"311 South St, Boston, MA 02215" +192111,20in Monitor,1,109.99,04/22/19 16:34,"948 2nd St, Boston, MA 02215" +192112,USB-C Charging Cable,2,11.95,04/27/19 15:34,"553 Cherry St, New York City, NY 10001" +192113,AAA Batteries (4-pack),1,2.99,04/26/19 18:50,"928 Hickory St, San Francisco, CA 94016" +192114,Wired Headphones,1,11.99,04/01/19 20:35,"418 Spruce St, Portland, ME 04101" +192115,27in FHD Monitor,1,149.99,04/17/19 12:38,"564 Hill St, San Francisco, CA 94016" +192116,27in FHD Monitor,1,149.99,04/17/19 13:43,"815 Meadow St, Dallas, TX 75001" +192117,Bose SoundSport Headphones,1,99.99,04/20/19 10:31,"561 Spruce St, Los Angeles, CA 90001" +192118,34in Ultrawide Monitor,1,379.99,04/17/19 20:50,"457 6th St, New York City, NY 10001" +192119,Vareebadd Phone,1,400,04/27/19 10:07,"272 Ridge St, San Francisco, CA 94016" +192120,Lightning Charging Cable,1,14.95,04/17/19 23:47,"655 10th St, Atlanta, GA 30301" +192121,Wired Headphones,1,11.99,04/10/19 09:06,"236 Pine St, San Francisco, CA 94016" +192122,Apple Airpods Headphones,1,150,04/12/19 20:52,"770 Ridge St, Atlanta, GA 30301" +192123,AAA Batteries (4-pack),1,2.99,04/29/19 15:13,"50 12th St, New York City, NY 10001" +192124,USB-C Charging Cable,1,11.95,04/02/19 09:21,"744 14th St, New York City, NY 10001" +192125,27in FHD Monitor,1,149.99,04/24/19 16:40,"666 South St, Los Angeles, CA 90001" +192126,27in 4K Gaming Monitor,1,389.99,04/21/19 19:45,"512 Highland St, Portland, OR 97035" +192127,Wired Headphones,1,11.99,04/27/19 11:35,"604 Johnson St, Portland, OR 97035" +192128,ThinkPad Laptop,1,999.99,04/13/19 15:08,"161 Dogwood St, New York City, NY 10001" +192129,Lightning Charging Cable,1,14.95,04/10/19 19:26,"234 7th St, Atlanta, GA 30301" +192130,Wired Headphones,2,11.99,04/12/19 14:25,"63 Willow St, Los Angeles, CA 90001" +192131,iPhone,1,700,04/12/19 22:22,"688 South St, Dallas, TX 75001" +192132,Apple Airpods Headphones,1,150,04/21/19 16:59,"183 Cherry St, San Francisco, CA 94016" +192133,AAA Batteries (4-pack),1,2.99,04/12/19 09:30,"421 13th St, Los Angeles, CA 90001" +192134,Lightning Charging Cable,1,14.95,04/02/19 18:04,"730 Dogwood St, Atlanta, GA 30301" +192135,27in FHD Monitor,1,149.99,04/25/19 11:28,"749 Cedar St, San Francisco, CA 94016" +192136,AA Batteries (4-pack),2,3.84,04/03/19 13:22,"276 Spruce St, San Francisco, CA 94016" +192137,AA Batteries (4-pack),2,3.84,04/07/19 19:40,"141 Walnut St, Los Angeles, CA 90001" +192138,AAA Batteries (4-pack),2,2.99,04/20/19 09:09,"765 Walnut St, New York City, NY 10001" +192139,AAA Batteries (4-pack),1,2.99,04/05/19 12:09,"734 Wilson St, Austin, TX 73301" +192140,AA Batteries (4-pack),1,3.84,04/17/19 20:36,"238 Hickory St, Boston, MA 02215" +192141,Apple Airpods Headphones,1,150,04/26/19 20:01,"70 14th St, New York City, NY 10001" +192142,27in 4K Gaming Monitor,1,389.99,04/21/19 18:35,"624 Pine St, San Francisco, CA 94016" +192143,Bose SoundSport Headphones,1,99.99,04/07/19 09:27,"852 Willow St, Atlanta, GA 30301" +192144,Lightning Charging Cable,1,14.95,04/11/19 18:34,"339 Church St, Los Angeles, CA 90001" +192145,AAA Batteries (4-pack),1,2.99,04/02/19 14:08,"316 Forest St, Seattle, WA 98101" +192146,USB-C Charging Cable,1,11.95,04/12/19 19:45,"340 5th St, Los Angeles, CA 90001" +192147,Wired Headphones,1,11.99,04/01/19 06:53,"580 Sunset St, Seattle, WA 98101" +192148,Apple Airpods Headphones,1,150,04/11/19 10:26,"56 12th St, Los Angeles, CA 90001" +192149,USB-C Charging Cable,1,11.95,04/27/19 11:12,"42 Park St, Seattle, WA 98101" +192150,Bose SoundSport Headphones,1,99.99,04/06/19 06:30,"386 Jackson St, Boston, MA 02215" +192151,27in 4K Gaming Monitor,1,389.99,04/25/19 16:24,"462 Walnut St, Boston, MA 02215" +192152,Vareebadd Phone,1,400,04/16/19 13:46,"648 Cherry St, Boston, MA 02215" +192153,AAA Batteries (4-pack),3,2.99,04/16/19 13:58,"582 8th St, Seattle, WA 98101" +192154,Bose SoundSport Headphones,1,99.99,04/07/19 15:07,"870 Cedar St, San Francisco, CA 94016" +192155,AAA Batteries (4-pack),1,2.99,04/14/19 08:39,"852 4th St, Portland, OR 97035" +192156,27in FHD Monitor,1,149.99,04/02/19 17:20,"113 Main St, New York City, NY 10001" +192157,USB-C Charging Cable,1,11.95,04/30/19 11:33,"434 Chestnut St, San Francisco, CA 94016" +192158,AAA Batteries (4-pack),2,2.99,04/06/19 17:17,"278 13th St, Seattle, WA 98101" +192159,Macbook Pro Laptop,1,1700,04/28/19 17:09,"172 Meadow St, San Francisco, CA 94016" +192160,27in FHD Monitor,1,149.99,04/10/19 12:21,"337 6th St, New York City, NY 10001" +192161,Bose SoundSport Headphones,1,99.99,04/20/19 04:11,"984 Lincoln St, San Francisco, CA 94016" +192162,Bose SoundSport Headphones,1,99.99,04/02/19 21:31,"640 12th St, Atlanta, GA 30301" +192163,27in FHD Monitor,1,149.99,04/12/19 13:59,"391 6th St, Boston, MA 02215" +192164,Lightning Charging Cable,1,14.95,04/08/19 18:52,"23 12th St, New York City, NY 10001" +192165,AAA Batteries (4-pack),1,2.99,04/02/19 18:18,"704 Pine St, San Francisco, CA 94016" +192166,Lightning Charging Cable,1,14.95,04/12/19 10:51,"343 Center St, Austin, TX 73301" +192167,Apple Airpods Headphones,1,150,04/02/19 15:05,"367 Park St, New York City, NY 10001" +192168,AA Batteries (4-pack),1,3.84,04/21/19 00:07,"712 North St, Los Angeles, CA 90001" +192169,AA Batteries (4-pack),1,3.84,04/08/19 12:19,"144 Dogwood St, Dallas, TX 75001" +192170,AA Batteries (4-pack),1,3.84,04/06/19 10:49,"234 Church St, New York City, NY 10001" +192171,27in 4K Gaming Monitor,1,389.99,04/18/19 12:54,"392 West St, Portland, OR 97035" +192172,27in 4K Gaming Monitor,1,389.99,04/22/19 15:50,"490 Main St, Seattle, WA 98101" +192173,AAA Batteries (4-pack),3,2.99,04/01/19 13:11,"20 Lincoln St, Los Angeles, CA 90001" +192174,AAA Batteries (4-pack),1,2.99,04/24/19 12:56,"282 6th St, New York City, NY 10001" +192175,27in 4K Gaming Monitor,1,389.99,04/27/19 10:55,"325 South St, San Francisco, CA 94016" +192176,USB-C Charging Cable,1,11.95,04/07/19 13:24,"78 7th St, San Francisco, CA 94016" +192177,Apple Airpods Headphones,1,150,04/23/19 12:50,"506 Highland St, Dallas, TX 75001" +192178,AA Batteries (4-pack),1,3.84,04/16/19 18:46,"648 Willow St, Portland, ME 04101" +192179,AAA Batteries (4-pack),1,2.99,04/12/19 19:33,"407 2nd St, Austin, TX 73301" +192180,Lightning Charging Cable,1,14.95,04/16/19 08:47,"288 Willow St, Los Angeles, CA 90001" +192181,AAA Batteries (4-pack),3,2.99,04/12/19 07:34,"331 Center St, Los Angeles, CA 90001" +192182,Lightning Charging Cable,1,14.95,04/16/19 15:38,"612 Jackson St, San Francisco, CA 94016" +192183,27in FHD Monitor,1,149.99,04/20/19 14:45,"886 Cedar St, New York City, NY 10001" +192184,USB-C Charging Cable,1,11.95,04/08/19 20:11,"91 Walnut St, Portland, OR 97035" +192185,AA Batteries (4-pack),1,3.84,04/03/19 11:19,"87 Johnson St, New York City, NY 10001" +192186,USB-C Charging Cable,1,11.95,04/18/19 22:16,"269 Elm St, Dallas, TX 75001" +192187,Wired Headphones,1,11.99,04/22/19 11:58,"807 Maple St, Los Angeles, CA 90001" +192188,USB-C Charging Cable,1,11.95,04/16/19 09:38,"546 Forest St, San Francisco, CA 94016" +192189,Wired Headphones,1,11.99,04/05/19 18:11,"845 12th St, New York City, NY 10001" +192190,USB-C Charging Cable,1,11.95,04/22/19 20:24,"427 Walnut St, San Francisco, CA 94016" +192191,USB-C Charging Cable,1,11.95,04/01/19 19:45,"631 Chestnut St, Dallas, TX 75001" +192192,iPhone,1,700,04/18/19 21:12,"952 10th St, Atlanta, GA 30301" +192193,Apple Airpods Headphones,1,150,04/03/19 20:20,"634 Johnson St, San Francisco, CA 94016" +192194,Flatscreen TV,1,300,04/28/19 10:08,"811 Spruce St, Atlanta, GA 30301" +192195,Wired Headphones,1,11.99,04/17/19 12:15,"531 Lake St, Austin, TX 73301" +192196,USB-C Charging Cable,2,11.95,04/18/19 10:15,"449 West St, San Francisco, CA 94016" +192197,34in Ultrawide Monitor,1,379.99,04/02/19 13:50,"475 Maple St, Seattle, WA 98101" +192198,Bose SoundSport Headphones,1,99.99,04/05/19 11:24,"910 Washington St, Los Angeles, CA 90001" +192199,34in Ultrawide Monitor,1,379.99,04/18/19 14:30,"412 2nd St, San Francisco, CA 94016" +192200,USB-C Charging Cable,1,11.95,04/24/19 11:16,"139 North St, San Francisco, CA 94016" +192201,USB-C Charging Cable,1,11.95,04/15/19 13:34,"147 Sunset St, Atlanta, GA 30301" +192202,34in Ultrawide Monitor,1,379.99,04/09/19 11:34,"814 Lincoln St, Boston, MA 02215" +192203,Wired Headphones,1,11.99,04/11/19 10:19,"5 Pine St, Los Angeles, CA 90001" +192204,AA Batteries (4-pack),2,3.84,04/29/19 21:32,"89 West St, San Francisco, CA 94016" +192205,Lightning Charging Cable,1,14.95,04/17/19 08:46,"309 8th St, Dallas, TX 75001" +192206,Apple Airpods Headphones,1,150,04/10/19 17:11,"687 Johnson St, Boston, MA 02215" +192207,Apple Airpods Headphones,1,150,04/30/19 20:52,"971 Ridge St, New York City, NY 10001" +192208,34in Ultrawide Monitor,1,379.99,04/11/19 22:52,"817 Washington St, New York City, NY 10001" +192209,Bose SoundSport Headphones,1,99.99,04/28/19 20:28,"887 Park St, San Francisco, CA 94016" +192210,34in Ultrawide Monitor,1,379.99,04/04/19 16:24,"150 South St, Los Angeles, CA 90001" +192211,AAA Batteries (4-pack),3,2.99,04/05/19 15:45,"804 13th St, San Francisco, CA 94016" +192212,Wired Headphones,1,11.99,04/01/19 20:02,"8 13th St, Los Angeles, CA 90001" +,,,,, +192213,USB-C Charging Cable,1,11.95,04/01/19 10:26,"892 Lincoln St, San Francisco, CA 94016" +192214,Bose SoundSport Headphones,1,99.99,04/25/19 13:01,"913 5th St, Boston, MA 02215" +192215,AAA Batteries (4-pack),1,2.99,04/20/19 06:23,"542 Johnson St, Seattle, WA 98101" +192216,ThinkPad Laptop,1,999.99,04/17/19 16:37,"460 Meadow St, Los Angeles, CA 90001" +192217,AAA Batteries (4-pack),1,2.99,04/08/19 23:42,"3 West St, New York City, NY 10001" +192218,Lightning Charging Cable,1,14.95,04/03/19 15:45,"337 5th St, New York City, NY 10001" +192218,Lightning Charging Cable,1,14.95,04/03/19 15:45,"337 5th St, New York City, NY 10001" +192219,ThinkPad Laptop,1,999.99,04/12/19 18:24,"602 Walnut St, San Francisco, CA 94016" +192220,Bose SoundSport Headphones,1,99.99,04/27/19 17:21,"546 Highland St, New York City, NY 10001" +192221,Wired Headphones,1,11.99,04/14/19 12:41,"985 5th St, San Francisco, CA 94016" +192222,27in FHD Monitor,1,149.99,04/29/19 12:00,"340 11th St, Dallas, TX 75001" +192223,Apple Airpods Headphones,1,150,04/11/19 21:43,"266 Center St, Dallas, TX 75001" +192224,Wired Headphones,1,11.99,04/11/19 19:55,"340 Cherry St, Atlanta, GA 30301" +192225,Lightning Charging Cable,1,14.95,04/28/19 07:37,"236 4th St, Portland, OR 97035" +192226,Macbook Pro Laptop,1,1700,04/03/19 14:16,"455 6th St, Boston, MA 02215" +192227,USB-C Charging Cable,1,11.95,04/23/19 11:50,"578 Hickory St, San Francisco, CA 94016" +192228,AAA Batteries (4-pack),1,2.99,04/14/19 20:09,"658 5th St, Atlanta, GA 30301" +192229,USB-C Charging Cable,1,11.95,04/23/19 11:17,"288 5th St, San Francisco, CA 94016" +192230,Wired Headphones,1,11.99,04/18/19 11:52,"542 Cherry St, San Francisco, CA 94016" +192231,USB-C Charging Cable,1,11.95,04/27/19 12:39,"998 Dogwood St, Boston, MA 02215" +192232,27in 4K Gaming Monitor,1,389.99,04/05/19 17:28,"821 12th St, Boston, MA 02215" +192233,Lightning Charging Cable,1,14.95,04/14/19 17:38,"535 14th St, Seattle, WA 98101" +192234,Wired Headphones,1,11.99,04/17/19 23:44,"638 Dogwood St, Los Angeles, CA 90001" +192235,Wired Headphones,1,11.99,04/19/19 12:07,"491 Center St, Dallas, TX 75001" +192236,34in Ultrawide Monitor,1,379.99,04/15/19 21:33,"274 River St, Dallas, TX 75001" +192237,Wired Headphones,1,11.99,04/30/19 16:51,"313 Johnson St, Austin, TX 73301" +192238,AA Batteries (4-pack),1,3.84,04/22/19 20:12,"746 8th St, Boston, MA 02215" +192239,LG Dryer,1,600.0,04/04/19 18:55,"900 River St, San Francisco, CA 94016" +192240,AAA Batteries (4-pack),5,2.99,04/28/19 11:54,"749 South St, Boston, MA 02215" +192241,Apple Airpods Headphones,1,150,04/08/19 22:20,"369 Hickory St, Austin, TX 73301" +192242,Wired Headphones,1,11.99,04/03/19 20:32,"245 Adams St, Boston, MA 02215" +192243,AA Batteries (4-pack),1,3.84,04/08/19 15:53,"639 Walnut St, San Francisco, CA 94016" +192244,Apple Airpods Headphones,1,150,04/17/19 18:33,"585 Willow St, San Francisco, CA 94016" +192245,AAA Batteries (4-pack),1,2.99,04/08/19 11:13,"740 Adams St, New York City, NY 10001" +192246,Wired Headphones,1,11.99,04/10/19 12:01,"994 10th St, Boston, MA 02215" +192247,Wired Headphones,1,11.99,04/07/19 15:53,"332 Jefferson St, Los Angeles, CA 90001" +192248,Bose SoundSport Headphones,1,99.99,04/09/19 19:56,"715 Ridge St, New York City, NY 10001" +192249,Lightning Charging Cable,1,14.95,04/14/19 23:52,"683 Meadow St, Austin, TX 73301" +192250,Apple Airpods Headphones,1,150,04/10/19 21:15,"78 Highland St, Los Angeles, CA 90001" +192251,Macbook Pro Laptop,1,1700,04/14/19 11:31,"367 14th St, Atlanta, GA 30301" +192252,Bose SoundSport Headphones,1,99.99,04/24/19 14:01,"127 South St, Atlanta, GA 30301" +192253,USB-C Charging Cable,1,11.95,04/18/19 13:01,"998 8th St, New York City, NY 10001" +192254,27in FHD Monitor,1,149.99,04/10/19 18:02,"623 Maple St, San Francisco, CA 94016" +192255,Apple Airpods Headphones,1,150,04/03/19 14:44,"811 Dogwood St, New York City, NY 10001" +192256,27in 4K Gaming Monitor,1,389.99,04/24/19 10:09,"292 Sunset St, New York City, NY 10001" +192257,Bose SoundSport Headphones,1,99.99,04/19/19 09:17,"368 Lake St, Boston, MA 02215" +192258,USB-C Charging Cable,1,11.95,04/06/19 12:01,"310 River St, Atlanta, GA 30301" +192259,ThinkPad Laptop,1,999.99,04/22/19 13:48,"106 Lincoln St, Atlanta, GA 30301" +192260,Wired Headphones,1,11.99,04/20/19 17:14,"799 Cherry St, Los Angeles, CA 90001" +192261,Lightning Charging Cable,3,14.95,04/22/19 21:33,"721 Washington St, Dallas, TX 75001" +192262,Apple Airpods Headphones,1,150,04/10/19 16:09,"24 Meadow St, New York City, NY 10001" +192263,Apple Airpods Headphones,1,150,04/08/19 14:28,"917 Walnut St, San Francisco, CA 94016" +192264,27in FHD Monitor,1,149.99,04/16/19 17:43,"808 Forest St, San Francisco, CA 94016" +192265,ThinkPad Laptop,1,999.99,04/18/19 18:00,"457 Willow St, San Francisco, CA 94016" +192266,AA Batteries (4-pack),1,3.84,04/11/19 12:07,"126 Jackson St, Atlanta, GA 30301" +192267,Wired Headphones,1,11.99,04/09/19 19:00,"636 Ridge St, San Francisco, CA 94016" +192268,Vareebadd Phone,1,400,04/15/19 04:54,"942 5th St, Atlanta, GA 30301" +192269,Lightning Charging Cable,1,14.95,04/15/19 16:07,"860 Sunset St, San Francisco, CA 94016" +192270,iPhone,1,700,04/05/19 21:04,"700 Park St, Atlanta, GA 30301" +192270,Lightning Charging Cable,1,14.95,04/05/19 21:04,"700 Park St, Atlanta, GA 30301" +192271,Bose SoundSport Headphones,1,99.99,04/03/19 11:02,"350 8th St, San Francisco, CA 94016" +192272,34in Ultrawide Monitor,1,379.99,04/22/19 11:17,"436 Hickory St, Boston, MA 02215" +192273,iPhone,1,700,04/26/19 20:35,"606 Walnut St, Portland, OR 97035" +192274,Flatscreen TV,1,300,04/11/19 11:37,"883 Highland St, Boston, MA 02215" +192275,Bose SoundSport Headphones,1,99.99,04/30/19 21:44,"581 Maple St, New York City, NY 10001" +192276,Wired Headphones,1,11.99,04/24/19 17:40,"865 Cedar St, Austin, TX 73301" +192277,Apple Airpods Headphones,1,150,04/29/19 11:23,"625 Elm St, San Francisco, CA 94016" +192278,Macbook Pro Laptop,1,1700,04/02/19 16:06,"414 Willow St, San Francisco, CA 94016" +192279,Wired Headphones,1,11.99,04/24/19 22:20,"139 13th St, Boston, MA 02215" +192280,AAA Batteries (4-pack),2,2.99,04/07/19 19:55,"503 5th St, Los Angeles, CA 90001" +192281,AA Batteries (4-pack),3,3.84,04/09/19 21:04,"556 Chestnut St, Boston, MA 02215" +192282,Bose SoundSport Headphones,1,99.99,04/06/19 09:03,"607 Forest St, San Francisco, CA 94016" +192283,Wired Headphones,1,11.99,04/17/19 16:57,"852 Madison St, Atlanta, GA 30301" +192284,27in 4K Gaming Monitor,1,389.99,04/25/19 20:54,"510 10th St, Los Angeles, CA 90001" +192285,Lightning Charging Cable,1,14.95,04/14/19 18:59,"274 Lake St, Portland, OR 97035" +192286,Bose SoundSport Headphones,1,99.99,04/11/19 02:09,"170 Park St, San Francisco, CA 94016" +192287,Apple Airpods Headphones,1,150,04/08/19 17:48,"597 Lincoln St, Atlanta, GA 30301" +192288,27in FHD Monitor,1,149.99,04/10/19 13:59,"506 Lake St, Boston, MA 02215" +192289,Google Phone,1,600,04/12/19 10:30,"360 13th St, Los Angeles, CA 90001" +192290,USB-C Charging Cable,2,11.95,04/25/19 11:32,"622 Maple St, Portland, OR 97035" +192291,USB-C Charging Cable,1,11.95,04/12/19 12:32,"532 West St, Portland, OR 97035" +192292,Apple Airpods Headphones,1,150,04/28/19 16:40,"968 9th St, Atlanta, GA 30301" +192293,34in Ultrawide Monitor,1,379.99,04/26/19 22:48,"954 River St, New York City, NY 10001" +192294,27in 4K Gaming Monitor,1,389.99,04/12/19 21:09,"175 6th St, San Francisco, CA 94016" +192295,USB-C Charging Cable,2,11.95,04/20/19 13:06,"100 12th St, Seattle, WA 98101" +192296,Lightning Charging Cable,1,14.95,04/24/19 18:43,"652 Church St, Atlanta, GA 30301" +192297,27in 4K Gaming Monitor,1,389.99,04/15/19 19:00,"274 9th St, Austin, TX 73301" +192298,AAA Batteries (4-pack),1,2.99,04/01/19 08:33,"202 River St, New York City, NY 10001" +192299,27in FHD Monitor,1,149.99,04/03/19 18:36,"790 Jackson St, Los Angeles, CA 90001" +192300,27in 4K Gaming Monitor,1,389.99,04/22/19 15:09,"646 Wilson St, Los Angeles, CA 90001" +192301,Macbook Pro Laptop,1,1700,04/09/19 16:27,"594 Johnson St, Los Angeles, CA 90001" +192302,USB-C Charging Cable,1,11.95,04/17/19 21:13,"817 Adams St, Dallas, TX 75001" +192303,Bose SoundSport Headphones,1,99.99,04/06/19 13:00,"325 Center St, Los Angeles, CA 90001" +192304,USB-C Charging Cable,1,11.95,04/28/19 22:26,"949 West St, Portland, ME 04101" +192305,AA Batteries (4-pack),1,3.84,04/25/19 07:22,"302 South St, Boston, MA 02215" +192306,Wired Headphones,1,11.99,04/03/19 18:34,"266 Walnut St, Seattle, WA 98101" +192307,AA Batteries (4-pack),1,3.84,04/25/19 18:17,"356 Dogwood St, Los Angeles, CA 90001" +192308,Lightning Charging Cable,1,14.95,04/04/19 15:58,"76 Highland St, New York City, NY 10001" +192309,Wired Headphones,2,11.99,04/27/19 00:17,"22 9th St, Los Angeles, CA 90001" +192310,Google Phone,1,600,04/25/19 17:17,"508 Jackson St, Portland, OR 97035" +192311,Lightning Charging Cable,2,14.95,04/23/19 19:15,"153 11th St, Los Angeles, CA 90001" +192312,AAA Batteries (4-pack),2,2.99,04/11/19 15:08,"802 8th St, San Francisco, CA 94016" +192313,AA Batteries (4-pack),1,3.84,04/27/19 00:44,"763 Cherry St, New York City, NY 10001" +192314,Bose SoundSport Headphones,1,99.99,04/02/19 22:05,"930 Sunset St, Los Angeles, CA 90001" +192315,Bose SoundSport Headphones,1,99.99,04/11/19 16:10,"260 Willow St, Atlanta, GA 30301" +192316,Apple Airpods Headphones,1,150,04/09/19 22:25,"118 Madison St, Seattle, WA 98101" +192317,27in FHD Monitor,1,149.99,04/27/19 21:57,"850 6th St, Seattle, WA 98101" +192318,AA Batteries (4-pack),2,3.84,04/12/19 05:09,"547 12th St, San Francisco, CA 94016" +192319,AAA Batteries (4-pack),1,2.99,04/21/19 18:28,"36 Lake St, Los Angeles, CA 90001" +192320,USB-C Charging Cable,1,11.95,04/28/19 11:44,"598 Spruce St, San Francisco, CA 94016" +192321,Macbook Pro Laptop,1,1700,04/03/19 09:28,"393 Hill St, Los Angeles, CA 90001" +192322,USB-C Charging Cable,1,11.95,04/20/19 14:32,"29 14th St, Boston, MA 02215" +192323,Lightning Charging Cable,1,14.95,04/03/19 14:40,"757 Dogwood St, Portland, OR 97035" +192324,AAA Batteries (4-pack),1,2.99,04/27/19 16:02,"251 4th St, Los Angeles, CA 90001" +192325,USB-C Charging Cable,1,11.95,04/03/19 19:04,"791 Forest St, New York City, NY 10001" +192326,AA Batteries (4-pack),2,3.84,04/03/19 19:17,"423 6th St, Austin, TX 73301" +192327,AA Batteries (4-pack),2,3.84,04/13/19 10:01,"966 Center St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +192328,Lightning Charging Cable,1,14.95,04/21/19 07:25,"687 Cherry St, San Francisco, CA 94016" +192329,Macbook Pro Laptop,1,1700,04/11/19 10:13,"66 Adams St, Seattle, WA 98101" +192330,Lightning Charging Cable,1,14.95,04/26/19 13:10,"59 Willow St, Dallas, TX 75001" +192331,Lightning Charging Cable,1,14.95,04/20/19 09:16,"949 Hill St, Los Angeles, CA 90001" +192332,USB-C Charging Cable,1,11.95,04/23/19 21:08,"599 Forest St, San Francisco, CA 94016" +192333,Wired Headphones,1,11.99,04/04/19 10:43,"450 9th St, Dallas, TX 75001" +192334,USB-C Charging Cable,1,11.95,04/23/19 09:23,"694 Adams St, San Francisco, CA 94016" +192335,Flatscreen TV,1,300,04/22/19 19:27,"657 2nd St, Los Angeles, CA 90001" +192336,34in Ultrawide Monitor,1,379.99,04/20/19 11:42,"970 Hickory St, Seattle, WA 98101" +192337,AAA Batteries (4-pack),1,2.99,04/24/19 13:18,"917 Cedar St, New York City, NY 10001" +192338,iPhone,1,700,04/28/19 10:19,"603 Johnson St, San Francisco, CA 94016" +192338,Wired Headphones,1,11.99,04/28/19 10:19,"603 Johnson St, San Francisco, CA 94016" +192339,Macbook Pro Laptop,1,1700,04/19/19 21:44,"120 13th St, Austin, TX 73301" +192340,34in Ultrawide Monitor,1,379.99,04/09/19 17:54,"301 North St, New York City, NY 10001" +192341,Lightning Charging Cable,1,14.95,04/23/19 14:07,"710 Cedar St, Atlanta, GA 30301" +192342,iPhone,1,700,04/29/19 15:19,"763 West St, New York City, NY 10001" +192342,Bose SoundSport Headphones,1,99.99,04/29/19 15:19,"763 West St, New York City, NY 10001" +192343,Bose SoundSport Headphones,1,99.99,04/18/19 17:24,"321 Cherry St, San Francisco, CA 94016" +192344,USB-C Charging Cable,1,11.95,04/08/19 18:54,"154 Park St, New York City, NY 10001" +192345,iPhone,1,700,04/10/19 20:47,"412 Lake St, Dallas, TX 75001" +192346,ThinkPad Laptop,1,999.99,04/15/19 21:00,"210 Sunset St, Boston, MA 02215" +192347,iPhone,1,700,04/13/19 13:45,"519 Chestnut St, Atlanta, GA 30301" +192347,Lightning Charging Cable,1,14.95,04/13/19 13:45,"519 Chestnut St, Atlanta, GA 30301" +192348,Macbook Pro Laptop,1,1700,04/18/19 18:35,"245 Willow St, Portland, OR 97035" +192349,Apple Airpods Headphones,1,150,04/19/19 13:05,"666 River St, Atlanta, GA 30301" +192350,Wired Headphones,1,11.99,04/29/19 19:23,"61 North St, Portland, OR 97035" +192351,Lightning Charging Cable,1,14.95,04/04/19 08:15,"326 Jackson St, Los Angeles, CA 90001" +192352,USB-C Charging Cable,1,11.95,04/12/19 17:15,"567 Forest St, Los Angeles, CA 90001" +192353,Vareebadd Phone,1,400,04/28/19 12:09,"334 Park St, Los Angeles, CA 90001" +192354,27in 4K Gaming Monitor,1,389.99,04/26/19 21:09,"658 Chestnut St, Portland, ME 04101" +192355,iPhone,1,700,04/09/19 02:53,"324 Pine St, San Francisco, CA 94016" +192355,Lightning Charging Cable,1,14.95,04/09/19 02:53,"324 Pine St, San Francisco, CA 94016" +192356,USB-C Charging Cable,1,11.95,04/02/19 10:13,"744 Meadow St, Atlanta, GA 30301" +192357,AA Batteries (4-pack),1,3.84,04/18/19 19:25,"974 River St, Austin, TX 73301" +192358,Vareebadd Phone,1,400,04/20/19 13:38,"329 7th St, Seattle, WA 98101" +192359,Wired Headphones,1,11.99,04/12/19 12:38,"847 West St, Dallas, TX 75001" +192360,AAA Batteries (4-pack),1,2.99,04/06/19 19:54,"726 Adams St, Portland, OR 97035" +192361,USB-C Charging Cable,1,11.95,04/25/19 16:53,"214 Lake St, Los Angeles, CA 90001" +192362,Macbook Pro Laptop,1,1700,04/23/19 00:47,"631 Meadow St, Seattle, WA 98101" +192363,Bose SoundSport Headphones,1,99.99,04/15/19 08:32,"424 Jefferson St, San Francisco, CA 94016" +192364,Lightning Charging Cable,1,14.95,04/24/19 08:46,"300 River St, Boston, MA 02215" +192365,iPhone,1,700,04/07/19 19:33,"879 4th St, Portland, OR 97035" +192366,Macbook Pro Laptop,1,1700,04/15/19 13:59,"874 Hickory St, San Francisco, CA 94016" +192367,Apple Airpods Headphones,1,150,04/03/19 21:06,"186 North St, New York City, NY 10001" +192368,Bose SoundSport Headphones,1,99.99,04/13/19 20:45,"329 Forest St, Los Angeles, CA 90001" +192369,AAA Batteries (4-pack),1,2.99,04/22/19 16:51,"688 North St, San Francisco, CA 94016" +192370,ThinkPad Laptop,1,999.99,04/09/19 16:29,"674 South St, Atlanta, GA 30301" +192371,Apple Airpods Headphones,1,150,04/12/19 14:11,"347 Chestnut St, Los Angeles, CA 90001" +192372,USB-C Charging Cable,1,11.95,04/10/19 18:56,"137 Chestnut St, Boston, MA 02215" +192373,USB-C Charging Cable,1,11.95,04/01/19 11:04,"453 Chestnut St, Seattle, WA 98101" +192374,27in 4K Gaming Monitor,1,389.99,04/04/19 06:50,"304 4th St, Boston, MA 02215" +192375,AAA Batteries (4-pack),1,2.99,04/14/19 17:28,"11 Spruce St, San Francisco, CA 94016" +192376,ThinkPad Laptop,1,999.99,04/20/19 15:20,"701 1st St, Los Angeles, CA 90001" +192377,Bose SoundSport Headphones,1,99.99,04/13/19 23:02,"529 Church St, San Francisco, CA 94016" +192378,Bose SoundSport Headphones,1,99.99,04/09/19 18:24,"290 Cedar St, Los Angeles, CA 90001" +192379,Macbook Pro Laptop,1,1700,04/13/19 06:21,"100 Elm St, Dallas, TX 75001" +192380,20in Monitor,1,109.99,04/28/19 09:18,"709 Johnson St, Portland, ME 04101" +192381,USB-C Charging Cable,1,11.95,04/24/19 21:31,"120 13th St, San Francisco, CA 94016" +192382,AA Batteries (4-pack),2,3.84,04/29/19 12:32,"461 Main St, Los Angeles, CA 90001" +192383,AAA Batteries (4-pack),1,2.99,04/20/19 12:26,"256 Dogwood St, San Francisco, CA 94016" +192384,Lightning Charging Cable,1,14.95,04/30/19 22:59,"718 Hickory St, New York City, NY 10001" +192385,Bose SoundSport Headphones,1,99.99,04/25/19 13:09,"195 Lincoln St, Los Angeles, CA 90001" +192386,Wired Headphones,1,11.99,04/27/19 11:38,"503 6th St, Portland, ME 04101" +192387,20in Monitor,1,109.99,04/19/19 10:06,"26 Sunset St, New York City, NY 10001" +192388,AAA Batteries (4-pack),4,2.99,04/11/19 19:18,"349 River St, Los Angeles, CA 90001" +192389,34in Ultrawide Monitor,1,379.99,04/02/19 10:48,"22 Walnut St, San Francisco, CA 94016" +192390,Wired Headphones,1,11.99,04/25/19 18:41,"84 5th St, Los Angeles, CA 90001" +192391,iPhone,1,700,04/03/19 18:05,"36 Highland St, Los Angeles, CA 90001" +192392,Apple Airpods Headphones,1,150,04/06/19 14:53,"773 Church St, Los Angeles, CA 90001" +192393,AA Batteries (4-pack),1,3.84,04/01/19 22:45,"674 12th St, San Francisco, CA 94016" +192394,20in Monitor,1,109.99,04/10/19 22:01,"142 Washington St, Boston, MA 02215" +192395,Lightning Charging Cable,1,14.95,04/28/19 13:43,"136 6th St, New York City, NY 10001" +192396,AA Batteries (4-pack),1,3.84,04/01/19 09:30,"812 4th St, New York City, NY 10001" +192397,AAA Batteries (4-pack),1,2.99,04/24/19 14:43,"884 14th St, San Francisco, CA 94016" +192398,AAA Batteries (4-pack),1,2.99,04/22/19 22:25,"484 6th St, Boston, MA 02215" +192399,27in FHD Monitor,1,149.99,04/22/19 18:26,"36 Madison St, Portland, ME 04101" +192400,27in 4K Gaming Monitor,1,389.99,04/17/19 12:21,"359 14th St, Dallas, TX 75001" +192401,Wired Headphones,1,11.99,04/22/19 15:45,"369 8th St, San Francisco, CA 94016" +192402,20in Monitor,1,109.99,04/30/19 20:27,"243 1st St, Atlanta, GA 30301" +192403,USB-C Charging Cable,1,11.95,04/28/19 11:52,"751 Johnson St, New York City, NY 10001" +192404,AA Batteries (4-pack),1,3.84,04/26/19 23:22,"145 Sunset St, San Francisco, CA 94016" +192405,AAA Batteries (4-pack),5,2.99,04/20/19 12:43,"221 Lake St, New York City, NY 10001" +192406,Wired Headphones,1,11.99,04/03/19 20:57,"40 Lake St, Los Angeles, CA 90001" +192407,iPhone,1,700,04/10/19 06:48,"770 West St, Boston, MA 02215" +192408,AAA Batteries (4-pack),2,2.99,04/27/19 20:28,"846 Forest St, Boston, MA 02215" +192409,Lightning Charging Cable,1,14.95,04/04/19 09:37,"790 Highland St, Los Angeles, CA 90001" +192410,USB-C Charging Cable,1,11.95,04/28/19 20:03,"886 West St, San Francisco, CA 94016" +192411,Apple Airpods Headphones,1,150,04/16/19 00:54,"123 Church St, Boston, MA 02215" +192412,AAA Batteries (4-pack),1,2.99,04/03/19 08:47,"262 9th St, Los Angeles, CA 90001" +192413,27in FHD Monitor,1,149.99,04/30/19 21:51,"301 Meadow St, Boston, MA 02215" +192414,ThinkPad Laptop,1,999.99,04/06/19 09:18,"909 14th St, Atlanta, GA 30301" +192415,AA Batteries (4-pack),3,3.84,04/10/19 12:32,"15 Lake St, Los Angeles, CA 90001" +192416,iPhone,1,700,04/25/19 11:25,"776 Lakeview St, San Francisco, CA 94016" +192417,Bose SoundSport Headphones,1,99.99,04/30/19 07:01,"941 Jackson St, New York City, NY 10001" +192418,Bose SoundSport Headphones,1,99.99,04/28/19 17:42,"556 Madison St, New York City, NY 10001" +192419,Lightning Charging Cable,1,14.95,04/04/19 21:57,"914 Center St, Dallas, TX 75001" +192420,Bose SoundSport Headphones,1,99.99,04/14/19 17:56,"584 Lakeview St, Portland, OR 97035" +192421,AA Batteries (4-pack),1,3.84,04/24/19 11:49,"935 1st St, Los Angeles, CA 90001" +192422,Bose SoundSport Headphones,1,99.99,04/14/19 19:46,"487 North St, New York City, NY 10001" +192423,AAA Batteries (4-pack),1,2.99,04/07/19 09:23,"785 Meadow St, Austin, TX 73301" +192424,AA Batteries (4-pack),2,3.84,04/08/19 13:13,"695 Meadow St, Dallas, TX 75001" +192425,AA Batteries (4-pack),2,3.84,04/23/19 17:15,"113 Willow St, San Francisco, CA 94016" +192426,Wired Headphones,2,11.99,04/01/19 11:09,"444 South St, San Francisco, CA 94016" +192427,AA Batteries (4-pack),1,3.84,04/13/19 15:34,"745 Lakeview St, Dallas, TX 75001" +192428,Wired Headphones,1,11.99,04/04/19 12:44,"548 Lakeview St, San Francisco, CA 94016" +192429,Lightning Charging Cable,1,14.95,04/03/19 12:28,"333 8th St, Austin, TX 73301" +192430,USB-C Charging Cable,1,11.95,04/11/19 09:15,"219 5th St, Dallas, TX 75001" +192431,Wired Headphones,2,11.99,04/07/19 18:37,"536 Jefferson St, Boston, MA 02215" +192432,27in FHD Monitor,1,149.99,04/07/19 19:26,"232 Chestnut St, Atlanta, GA 30301" +192433,AA Batteries (4-pack),1,3.84,04/22/19 12:52,"537 Church St, Boston, MA 02215" +192434,Wired Headphones,1,11.99,04/22/19 22:40,"942 Hill St, San Francisco, CA 94016" +192435,Apple Airpods Headphones,1,150,04/07/19 11:03,"160 8th St, Los Angeles, CA 90001" +192436,AAA Batteries (4-pack),3,2.99,04/09/19 18:45,"674 North St, Los Angeles, CA 90001" +192437,Apple Airpods Headphones,1,150,04/13/19 21:44,"853 12th St, Dallas, TX 75001" +192438,34in Ultrawide Monitor,1,379.99,04/23/19 22:02,"353 Willow St, San Francisco, CA 94016" +192439,AAA Batteries (4-pack),2,2.99,04/11/19 15:31,"480 Spruce St, Atlanta, GA 30301" +192440,Lightning Charging Cable,1,14.95,04/27/19 19:57,"845 5th St, Los Angeles, CA 90001" +192441,Macbook Pro Laptop,1,1700,04/13/19 14:50,"910 6th St, Austin, TX 73301" +192442,27in FHD Monitor,1,149.99,04/05/19 01:38,"310 Forest St, Seattle, WA 98101" +192443,Lightning Charging Cable,1,14.95,04/28/19 16:23,"720 Wilson St, Los Angeles, CA 90001" +192444,AAA Batteries (4-pack),1,2.99,04/29/19 14:13,"950 Sunset St, San Francisco, CA 94016" +192445,Wired Headphones,1,11.99,04/27/19 15:59,"498 6th St, Dallas, TX 75001" +192446,Apple Airpods Headphones,1,150,04/22/19 09:21,"948 Chestnut St, Seattle, WA 98101" +192447,Lightning Charging Cable,1,14.95,04/14/19 17:17,"641 Madison St, Austin, TX 73301" +192448,Lightning Charging Cable,2,14.95,04/16/19 05:11,"236 Main St, Seattle, WA 98101" +192449,AA Batteries (4-pack),1,3.84,04/11/19 14:20,"121 Chestnut St, San Francisco, CA 94016" +192450,AAA Batteries (4-pack),3,2.99,04/01/19 23:56,"331 Ridge St, San Francisco, CA 94016" +192451,USB-C Charging Cable,1,11.95,04/08/19 09:42,"532 13th St, Boston, MA 02215" +192452,Bose SoundSport Headphones,1,99.99,04/06/19 10:40,"705 Center St, Atlanta, GA 30301" +192453,34in Ultrawide Monitor,1,379.99,04/10/19 12:41,"421 Walnut St, Austin, TX 73301" +192454,Lightning Charging Cable,1,14.95,04/30/19 23:17,"113 Cherry St, Seattle, WA 98101" +192455,AAA Batteries (4-pack),2,2.99,04/05/19 22:13,"229 6th St, New York City, NY 10001" +192456,Apple Airpods Headphones,1,150,04/22/19 17:39,"251 1st St, Seattle, WA 98101" +192457,iPhone,1,700,04/23/19 22:39,"607 Lakeview St, San Francisco, CA 94016" +192457,Wired Headphones,1,11.99,04/23/19 22:39,"607 Lakeview St, San Francisco, CA 94016" +192458,27in FHD Monitor,1,149.99,04/22/19 22:48,"66 6th St, Atlanta, GA 30301" +192459,Lightning Charging Cable,1,14.95,04/29/19 20:38,"546 Hickory St, Austin, TX 73301" +192460,Lightning Charging Cable,1,14.95,04/03/19 08:25,"426 Spruce St, Los Angeles, CA 90001" +192461,27in 4K Gaming Monitor,1,389.99,04/17/19 23:41,"514 Hill St, Atlanta, GA 30301" +192462,AA Batteries (4-pack),1,3.84,04/14/19 21:20,"573 North St, Seattle, WA 98101" +192463,27in FHD Monitor,1,149.99,04/16/19 21:21,"807 Lake St, San Francisco, CA 94016" +192464,USB-C Charging Cable,1,11.95,04/01/19 13:56,"814 Hickory St, San Francisco, CA 94016" +192465,AA Batteries (4-pack),1,3.84,04/25/19 00:29,"888 11th St, Los Angeles, CA 90001" +192466,Apple Airpods Headphones,1,150,04/19/19 17:58,"923 Wilson St, Boston, MA 02215" +192467,27in 4K Gaming Monitor,1,389.99,04/07/19 23:18,"400 North St, Dallas, TX 75001" +192468,Bose SoundSport Headphones,1,99.99,04/15/19 11:08,"386 Lincoln St, Seattle, WA 98101" +192469,USB-C Charging Cable,1,11.95,04/08/19 22:12,"671 Meadow St, San Francisco, CA 94016" +192470,USB-C Charging Cable,1,11.95,04/19/19 15:16,"680 11th St, Austin, TX 73301" +192471,AA Batteries (4-pack),2,3.84,04/21/19 12:09,"600 Lakeview St, San Francisco, CA 94016" +192472,Wired Headphones,1,11.99,04/01/19 10:43,"287 Lake St, Atlanta, GA 30301" +192473,AA Batteries (4-pack),1,3.84,04/14/19 22:04,"902 Main St, Los Angeles, CA 90001" +,,,,, +192474,Bose SoundSport Headphones,1,99.99,04/24/19 16:27,"960 11th St, New York City, NY 10001" +192475,AAA Batteries (4-pack),1,2.99,04/11/19 20:15,"318 2nd St, New York City, NY 10001" +192476,USB-C Charging Cable,1,11.95,04/16/19 14:52,"641 Sunset St, Dallas, TX 75001" +192477,Wired Headphones,1,11.99,04/10/19 13:06,"413 14th St, San Francisco, CA 94016" +192477,Apple Airpods Headphones,1,150,04/10/19 13:06,"413 14th St, San Francisco, CA 94016" +192478,AAA Batteries (4-pack),1,2.99,04/27/19 20:27,"421 12th St, Portland, OR 97035" +192479,Apple Airpods Headphones,1,150,04/10/19 21:48,"707 Hickory St, Boston, MA 02215" +192480,Apple Airpods Headphones,1,150,04/02/19 22:47,"656 11th St, New York City, NY 10001" +192481,Flatscreen TV,1,300,04/10/19 17:21,"391 North St, San Francisco, CA 94016" +192482,27in FHD Monitor,1,149.99,04/26/19 11:57,"68 6th St, San Francisco, CA 94016" +192483,Wired Headphones,1,11.99,04/08/19 10:28,"4 Sunset St, San Francisco, CA 94016" +192484,iPhone,1,700,04/12/19 20:33,"35 Hickory St, New York City, NY 10001" +192485,27in FHD Monitor,1,149.99,04/22/19 19:22,"244 Walnut St, San Francisco, CA 94016" +192486,USB-C Charging Cable,1,11.95,04/05/19 21:52,"775 Cherry St, Atlanta, GA 30301" +192487,27in 4K Gaming Monitor,1,389.99,04/03/19 07:25,"920 Adams St, Los Angeles, CA 90001" +192488,AA Batteries (4-pack),3,3.84,04/20/19 10:13,"111 Wilson St, Atlanta, GA 30301" +192489,Apple Airpods Headphones,1,150,04/07/19 12:01,"524 Highland St, Los Angeles, CA 90001" +192490,AA Batteries (4-pack),2,3.84,04/25/19 22:04,"714 Chestnut St, Austin, TX 73301" +192491,AA Batteries (4-pack),2,3.84,04/10/19 22:46,"328 River St, San Francisco, CA 94016" +192492,USB-C Charging Cable,1,11.95,04/13/19 13:54,"993 Lakeview St, Los Angeles, CA 90001" +192493,AA Batteries (4-pack),1,3.84,04/03/19 23:35,"607 Park St, New York City, NY 10001" +192494,USB-C Charging Cable,2,11.95,04/05/19 10:24,"455 Church St, Los Angeles, CA 90001" +192495,27in FHD Monitor,1,149.99,04/16/19 13:55,"801 Highland St, Boston, MA 02215" +192496,USB-C Charging Cable,1,11.95,04/24/19 15:50,"866 7th St, Portland, OR 97035" +192497,Macbook Pro Laptop,1,1700,04/12/19 08:12,"577 Main St, Austin, TX 73301" +192498,Wired Headphones,1,11.99,04/29/19 17:43,"69 Center St, Los Angeles, CA 90001" +192499,Wired Headphones,1,11.99,04/07/19 15:03,"204 Dogwood St, Los Angeles, CA 90001" +192500,USB-C Charging Cable,1,11.95,04/03/19 06:57,"70 4th St, San Francisco, CA 94016" +192501,AAA Batteries (4-pack),1,2.99,04/28/19 03:12,"709 Jefferson St, New York City, NY 10001" +192502,Flatscreen TV,1,300,05/01/19 03:30,"583 Highland St, Atlanta, GA 30301" +192503,Apple Airpods Headphones,1,150,04/17/19 16:54,"478 North St, Seattle, WA 98101" +192504,Lightning Charging Cable,1,14.95,04/12/19 19:00,"783 Elm St, San Francisco, CA 94016" +192505,Wired Headphones,1,11.99,04/23/19 12:57,"860 Maple St, Seattle, WA 98101" +192506,AA Batteries (4-pack),1,3.84,04/05/19 11:09,"23 2nd St, Boston, MA 02215" +192507,Flatscreen TV,1,300,04/10/19 20:53,"117 Lincoln St, San Francisco, CA 94016" +192508,Apple Airpods Headphones,1,150,04/02/19 10:43,"740 Jackson St, Los Angeles, CA 90001" +192509,USB-C Charging Cable,1,11.95,04/20/19 20:16,"648 Maple St, Boston, MA 02215" +192510,AAA Batteries (4-pack),1,2.99,04/13/19 09:48,"822 Pine St, San Francisco, CA 94016" +192511,USB-C Charging Cable,1,11.95,04/04/19 23:28,"913 Hill St, San Francisco, CA 94016" +192512,AAA Batteries (4-pack),3,2.99,04/24/19 11:17,"209 Center St, Seattle, WA 98101" +192513,AAA Batteries (4-pack),1,2.99,04/11/19 10:55,"151 North St, San Francisco, CA 94016" +192514,AA Batteries (4-pack),1,3.84,04/23/19 20:05,"4 10th St, Atlanta, GA 30301" +192515,Bose SoundSport Headphones,1,99.99,04/26/19 09:18,"38 Highland St, Boston, MA 02215" +192516,Google Phone,1,600,04/14/19 11:34,"108 Cedar St, Dallas, TX 75001" +192516,Wired Headphones,1,11.99,04/14/19 11:34,"108 Cedar St, Dallas, TX 75001" +192517,Bose SoundSport Headphones,1,99.99,04/20/19 18:22,"439 Hickory St, Atlanta, GA 30301" +192518,Wired Headphones,1,11.99,04/05/19 08:21,"294 River St, San Francisco, CA 94016" +192519,USB-C Charging Cable,1,11.95,04/18/19 18:25,"564 Johnson St, San Francisco, CA 94016" +192520,Bose SoundSport Headphones,1,99.99,04/08/19 14:30,"335 Jefferson St, San Francisco, CA 94016" +192521,USB-C Charging Cable,1,11.95,04/20/19 20:32,"606 Adams St, Atlanta, GA 30301" +192522,Lightning Charging Cable,1,14.95,04/13/19 06:15,"635 5th St, Austin, TX 73301" +192523,Macbook Pro Laptop,1,1700,04/15/19 10:07,"663 Lincoln St, Atlanta, GA 30301" +192524,Lightning Charging Cable,2,14.95,04/05/19 23:22,"215 Cedar St, Los Angeles, CA 90001" +192525,USB-C Charging Cable,1,11.95,04/30/19 22:56,"667 Lake St, New York City, NY 10001" +192526,USB-C Charging Cable,1,11.95,04/12/19 16:45,"227 North St, Austin, TX 73301" +192527,Apple Airpods Headphones,1,150,04/08/19 08:35,"439 West St, Boston, MA 02215" +192528,Apple Airpods Headphones,1,150,04/04/19 05:04,"457 6th St, Los Angeles, CA 90001" +192529,Bose SoundSport Headphones,1,99.99,04/05/19 10:37,"187 Spruce St, New York City, NY 10001" +192530,Wired Headphones,1,11.99,04/24/19 21:00,"694 6th St, New York City, NY 10001" +192531,Vareebadd Phone,1,400,04/15/19 21:22,"765 12th St, New York City, NY 10001" +192531,USB-C Charging Cable,1,11.95,04/15/19 21:22,"765 12th St, New York City, NY 10001" +192532,Bose SoundSport Headphones,1,99.99,04/20/19 18:47,"341 1st St, Dallas, TX 75001" +192533,Lightning Charging Cable,1,14.95,04/22/19 02:38,"446 Chestnut St, Atlanta, GA 30301" +192534,34in Ultrawide Monitor,1,379.99,04/03/19 09:06,"119 1st St, New York City, NY 10001" +192535,AA Batteries (4-pack),1,3.84,04/25/19 03:16,"130 Elm St, Portland, ME 04101" +192536,Flatscreen TV,1,300,04/02/19 18:36,"989 Church St, San Francisco, CA 94016" +192537,Macbook Pro Laptop,1,1700,04/19/19 09:48,"798 Forest St, Austin, TX 73301" +192538,Apple Airpods Headphones,1,150,04/18/19 15:22,"51 South St, New York City, NY 10001" +192539,AA Batteries (4-pack),1,3.84,04/17/19 15:03,"74 South St, San Francisco, CA 94016" +192540,Lightning Charging Cable,1,14.95,04/05/19 21:09,"143 Sunset St, Seattle, WA 98101" +192541,Wired Headphones,2,11.99,04/09/19 00:55,"148 Church St, San Francisco, CA 94016" +192542,AAA Batteries (4-pack),2,2.99,04/07/19 21:27,"408 11th St, Boston, MA 02215" +192543,AAA Batteries (4-pack),1,2.99,04/05/19 17:41,"4 South St, Los Angeles, CA 90001" +192544,AAA Batteries (4-pack),1,2.99,04/28/19 13:03,"291 Johnson St, Atlanta, GA 30301" +192545,USB-C Charging Cable,1,11.95,04/23/19 23:34,"355 1st St, Atlanta, GA 30301" +192546,AA Batteries (4-pack),1,3.84,04/27/19 12:43,"536 6th St, San Francisco, CA 94016" +192547,Macbook Pro Laptop,1,1700,04/03/19 19:06,"663 Cedar St, Atlanta, GA 30301" +192548,Bose SoundSport Headphones,1,99.99,04/03/19 12:51,"421 North St, Atlanta, GA 30301" +192549,Wired Headphones,1,11.99,04/26/19 20:08,"100 Chestnut St, Dallas, TX 75001" +192550,Lightning Charging Cable,1,14.95,04/11/19 22:31,"129 5th St, Dallas, TX 75001" +192551,Apple Airpods Headphones,1,150,04/09/19 20:11,"428 Jefferson St, Los Angeles, CA 90001" +192552,USB-C Charging Cable,1,11.95,04/01/19 21:24,"37 Dogwood St, Los Angeles, CA 90001" +192553,AAA Batteries (4-pack),1,2.99,04/26/19 23:36,"753 Madison St, Los Angeles, CA 90001" +192554,AAA Batteries (4-pack),1,2.99,04/06/19 11:01,"870 Sunset St, Los Angeles, CA 90001" +192555,AAA Batteries (4-pack),1,2.99,04/08/19 14:31,"594 Chestnut St, New York City, NY 10001" +192556,Wired Headphones,1,11.99,04/14/19 12:55,"978 7th St, Atlanta, GA 30301" +192557,USB-C Charging Cable,1,11.95,04/03/19 10:59,"913 Ridge St, San Francisco, CA 94016" +192558,Lightning Charging Cable,1,14.95,04/25/19 20:14,"867 Ridge St, San Francisco, CA 94016" +192559,Bose SoundSport Headphones,1,99.99,04/12/19 18:45,"376 Highland St, San Francisco, CA 94016" +192560,Bose SoundSport Headphones,1,99.99,04/23/19 08:20,"857 Main St, Boston, MA 02215" +192561,Apple Airpods Headphones,1,150,04/26/19 22:15,"874 Sunset St, Boston, MA 02215" +192562,Wired Headphones,1,11.99,04/26/19 11:57,"908 5th St, Atlanta, GA 30301" +192563,AA Batteries (4-pack),1,3.84,04/11/19 07:52,"388 Johnson St, Atlanta, GA 30301" +192564,AA Batteries (4-pack),1,3.84,04/10/19 19:33,"703 Meadow St, San Francisco, CA 94016" +192565,Wired Headphones,1,11.99,04/05/19 23:49,"968 Pine St, Portland, OR 97035" +192566,Wired Headphones,2,11.99,04/12/19 18:48,"672 Adams St, San Francisco, CA 94016" +192567,27in FHD Monitor,1,149.99,04/11/19 11:21,"74 4th St, San Francisco, CA 94016" +192568,AA Batteries (4-pack),1,3.84,04/23/19 12:07,"408 Walnut St, Austin, TX 73301" +192569,Bose SoundSport Headphones,1,99.99,04/25/19 19:03,"802 Cedar St, Seattle, WA 98101" +192570,Lightning Charging Cable,1,14.95,04/12/19 16:25,"942 Pine St, New York City, NY 10001" +192571,AAA Batteries (4-pack),1,2.99,04/27/19 12:08,"998 4th St, San Francisco, CA 94016" +192572,Wired Headphones,1,11.99,04/20/19 21:17,"947 10th St, Boston, MA 02215" +192573,27in FHD Monitor,1,149.99,04/11/19 16:40,"349 Hickory St, San Francisco, CA 94016" +192574,Bose SoundSport Headphones,1,99.99,04/03/19 14:20,"616 Elm St, Dallas, TX 75001" +192575,Macbook Pro Laptop,1,1700,04/22/19 23:59,"890 Lincoln St, Los Angeles, CA 90001" +192576,USB-C Charging Cable,3,11.95,04/04/19 04:49,"17 Lake St, San Francisco, CA 94016" +192577,AAA Batteries (4-pack),1,2.99,04/20/19 10:44,"127 6th St, Dallas, TX 75001" +192578,Bose SoundSport Headphones,1,99.99,04/24/19 12:42,"581 Hickory St, New York City, NY 10001" +192579,USB-C Charging Cable,2,11.95,04/17/19 08:57,"712 Maple St, New York City, NY 10001" +192580,Flatscreen TV,1,300,04/05/19 14:47,"853 14th St, New York City, NY 10001" +,,,,, +192581,ThinkPad Laptop,1,999.99,04/16/19 19:31,"844 Lincoln St, Boston, MA 02215" +192582,20in Monitor,1,109.99,04/29/19 13:33,"154 4th St, New York City, NY 10001" +192583,AA Batteries (4-pack),2,3.84,04/11/19 19:19,"774 Wilson St, New York City, NY 10001" +192584,Bose SoundSport Headphones,1,99.99,04/13/19 13:32,"813 Cherry St, Seattle, WA 98101" +192585,AA Batteries (4-pack),2,3.84,04/10/19 19:03,"641 Lakeview St, Atlanta, GA 30301" +192586,Bose SoundSport Headphones,1,99.99,04/24/19 13:52,"16 14th St, Los Angeles, CA 90001" +192587,USB-C Charging Cable,2,11.95,04/11/19 16:43,"81 Wilson St, New York City, NY 10001" +192588,27in FHD Monitor,1,149.99,04/22/19 22:50,"237 South St, Seattle, WA 98101" +192589,Wired Headphones,1,11.99,04/27/19 16:32,"474 Lakeview St, Dallas, TX 75001" +192590,34in Ultrawide Monitor,1,379.99,04/15/19 20:57,"744 Lake St, Austin, TX 73301" +192591,Lightning Charging Cable,1,14.95,04/09/19 05:44,"828 7th St, San Francisco, CA 94016" +192592,iPhone,1,700,04/14/19 10:31,"562 2nd St, San Francisco, CA 94016" +192592,Lightning Charging Cable,1,14.95,04/14/19 10:31,"562 2nd St, San Francisco, CA 94016" +192592,AAA Batteries (4-pack),2,2.99,04/14/19 10:31,"562 2nd St, San Francisco, CA 94016" +192593,AAA Batteries (4-pack),1,2.99,04/17/19 00:16,"986 10th St, Seattle, WA 98101" +192594,Apple Airpods Headphones,1,150,04/03/19 22:52,"919 5th St, New York City, NY 10001" +192595,Lightning Charging Cable,1,14.95,04/30/19 18:29,"419 6th St, Los Angeles, CA 90001" +192596,Lightning Charging Cable,1,14.95,04/13/19 19:59,"559 Hill St, Boston, MA 02215" +192597,USB-C Charging Cable,1,11.95,04/14/19 16:46,"374 Willow St, Los Angeles, CA 90001" +192598,AAA Batteries (4-pack),3,2.99,04/21/19 13:25,"261 North St, Austin, TX 73301" +192599,AA Batteries (4-pack),1,3.84,04/12/19 08:10,"871 Sunset St, Los Angeles, CA 90001" +192600,Flatscreen TV,1,300,04/04/19 01:30,"110 Maple St, Austin, TX 73301" +192601,27in FHD Monitor,1,149.99,04/16/19 10:00,"560 Highland St, New York City, NY 10001" +192602,AA Batteries (4-pack),1,3.84,04/11/19 21:20,"786 Jackson St, San Francisco, CA 94016" +192603,AAA Batteries (4-pack),1,2.99,04/06/19 17:45,"135 North St, Dallas, TX 75001" +192604,Apple Airpods Headphones,1,150,04/14/19 08:10,"492 Johnson St, Portland, OR 97035" +192605,USB-C Charging Cable,1,11.95,04/30/19 07:49,"25 Willow St, New York City, NY 10001" +192606,Wired Headphones,1,11.99,04/28/19 21:28,"245 6th St, San Francisco, CA 94016" +192607,27in 4K Gaming Monitor,1,389.99,04/11/19 11:28,"500 12th St, Atlanta, GA 30301" +192608,Bose SoundSport Headphones,1,99.99,04/21/19 21:17,"83 10th St, Austin, TX 73301" +192609,USB-C Charging Cable,1,11.95,04/05/19 19:07,"595 Lake St, Atlanta, GA 30301" +192610,LG Washing Machine,1,600.0,04/15/19 13:08,"637 Adams St, Los Angeles, CA 90001" +192611,ThinkPad Laptop,1,999.99,04/27/19 15:29,"864 Meadow St, New York City, NY 10001" +192612,Lightning Charging Cable,1,14.95,04/25/19 16:33,"367 Highland St, San Francisco, CA 94016" +192613,34in Ultrawide Monitor,1,379.99,04/27/19 10:56,"275 Hickory St, New York City, NY 10001" +192614,Wired Headphones,1,11.99,04/15/19 18:35,"288 1st St, Los Angeles, CA 90001" +192615,iPhone,1,700,04/15/19 21:11,"544 1st St, Portland, OR 97035" +192616,Bose SoundSport Headphones,1,99.99,04/18/19 10:12,"898 Park St, New York City, NY 10001" +192617,AA Batteries (4-pack),1,3.84,04/14/19 18:01,"925 1st St, San Francisco, CA 94016" +192618,Google Phone,1,600,04/23/19 17:39,"436 Cherry St, Boston, MA 02215" +192619,Flatscreen TV,1,300,04/03/19 07:29,"428 Willow St, San Francisco, CA 94016" +192620,Wired Headphones,1,11.99,04/15/19 14:04,"348 Ridge St, Boston, MA 02215" +192621,Wired Headphones,1,11.99,04/20/19 10:09,"437 7th St, San Francisco, CA 94016" +192622,Lightning Charging Cable,1,14.95,04/04/19 23:22,"526 North St, San Francisco, CA 94016" +192623,27in 4K Gaming Monitor,1,389.99,04/10/19 22:05,"299 Pine St, San Francisco, CA 94016" +192624,27in 4K Gaming Monitor,1,389.99,04/09/19 16:38,"810 Sunset St, Portland, OR 97035" +192625,AA Batteries (4-pack),1,3.84,04/05/19 09:59,"751 Forest St, Seattle, WA 98101" +192626,USB-C Charging Cable,2,11.95,04/04/19 07:28,"42 River St, New York City, NY 10001" +192627,Bose SoundSport Headphones,1,99.99,04/06/19 01:36,"796 Church St, San Francisco, CA 94016" +192628,Google Phone,1,600,04/29/19 09:10,"125 Forest St, Dallas, TX 75001" +192628,Wired Headphones,1,11.99,04/29/19 09:10,"125 Forest St, Dallas, TX 75001" +192629,Bose SoundSport Headphones,1,99.99,04/18/19 14:23,"345 Hill St, Boston, MA 02215" +192630,Google Phone,1,600,04/10/19 17:00,"3 5th St, Atlanta, GA 30301" +192631,Apple Airpods Headphones,1,150,04/29/19 17:19,"445 Dogwood St, Atlanta, GA 30301" +192632,Apple Airpods Headphones,1,150,04/20/19 20:25,"391 4th St, San Francisco, CA 94016" +192633,27in FHD Monitor,1,149.99,04/14/19 19:42,"37 Ridge St, New York City, NY 10001" +192634,USB-C Charging Cable,1,11.95,04/30/19 11:15,"390 10th St, Atlanta, GA 30301" +192635,Lightning Charging Cable,1,14.95,04/25/19 14:08,"583 Main St, Los Angeles, CA 90001" +192636,AAA Batteries (4-pack),1,2.99,04/19/19 15:24,"740 Johnson St, New York City, NY 10001" +192637,AAA Batteries (4-pack),2,2.99,04/02/19 14:18,"536 Madison St, San Francisco, CA 94016" +192638,iPhone,1,700,04/29/19 00:32,"526 14th St, Boston, MA 02215" +192639,AA Batteries (4-pack),1,3.84,04/18/19 07:42,"425 Adams St, Los Angeles, CA 90001" +192640,20in Monitor,1,109.99,04/18/19 21:31,"269 Lakeview St, Atlanta, GA 30301" +192641,AAA Batteries (4-pack),1,2.99,04/26/19 10:17,"212 Madison St, Austin, TX 73301" +192642,34in Ultrawide Monitor,1,379.99,04/06/19 20:22,"11 Hill St, Boston, MA 02215" +192643,LG Dryer,1,600.0,04/01/19 14:31,"597 7th St, New York City, NY 10001" +192644,iPhone,1,700,04/25/19 23:15,"777 Forest St, Atlanta, GA 30301" +192645,27in 4K Gaming Monitor,1,389.99,04/02/19 23:00,"917 Willow St, Dallas, TX 75001" +192646,Apple Airpods Headphones,1,150,04/25/19 11:22,"653 River St, Boston, MA 02215" +192647,Apple Airpods Headphones,1,150,04/02/19 20:01,"730 Park St, Dallas, TX 75001" +192648,27in FHD Monitor,1,149.99,04/24/19 20:47,"226 River St, Boston, MA 02215" +192649,USB-C Charging Cable,1,11.95,04/04/19 21:40,"145 Meadow St, Dallas, TX 75001" +192650,Flatscreen TV,1,300,04/08/19 20:43,"167 8th St, Atlanta, GA 30301" +192651,USB-C Charging Cable,1,11.95,04/21/19 19:25,"837 Park St, San Francisco, CA 94016" +192651,Macbook Pro Laptop,1,1700,04/21/19 19:25,"837 Park St, San Francisco, CA 94016" +192652,Lightning Charging Cable,1,14.95,04/11/19 21:17,"118 Lincoln St, San Francisco, CA 94016" +192653,USB-C Charging Cable,1,11.95,04/12/19 13:05,"42 Pine St, San Francisco, CA 94016" +192654,Wired Headphones,1,11.99,04/15/19 19:39,"820 North St, Atlanta, GA 30301" +192655,USB-C Charging Cable,1,11.95,04/08/19 10:21,"749 Dogwood St, San Francisco, CA 94016" +192655,Lightning Charging Cable,1,14.95,04/08/19 10:21,"749 Dogwood St, San Francisco, CA 94016" +192656,AAA Batteries (4-pack),2,2.99,04/03/19 16:36,"841 8th St, Seattle, WA 98101" +192657,Bose SoundSport Headphones,1,99.99,04/14/19 19:54,"558 13th St, New York City, NY 10001" +192658,USB-C Charging Cable,1,11.95,04/26/19 19:17,"558 14th St, New York City, NY 10001" +192659,AAA Batteries (4-pack),1,2.99,04/27/19 09:30,"432 Pine St, Boston, MA 02215" +192660,AA Batteries (4-pack),1,3.84,04/01/19 12:35,"425 Hill St, Atlanta, GA 30301" +192661,USB-C Charging Cable,1,11.95,04/17/19 09:14,"571 Meadow St, New York City, NY 10001" +192662,Wired Headphones,1,11.99,04/08/19 20:37,"986 South St, Boston, MA 02215" +192663,AAA Batteries (4-pack),2,2.99,04/02/19 15:01,"518 Cherry St, Portland, OR 97035" +192664,AAA Batteries (4-pack),1,2.99,04/23/19 13:55,"714 Church St, San Francisco, CA 94016" +192665,Lightning Charging Cable,1,14.95,04/23/19 21:53,"31 Cedar St, New York City, NY 10001" +192666,Lightning Charging Cable,1,14.95,04/24/19 20:57,"980 Spruce St, Seattle, WA 98101" +192667,iPhone,1,700,04/18/19 12:20,"587 River St, New York City, NY 10001" +192667,Lightning Charging Cable,1,14.95,04/18/19 12:20,"587 River St, New York City, NY 10001" +192668,iPhone,1,700,04/24/19 00:51,"638 North St, San Francisco, CA 94016" +192669,USB-C Charging Cable,1,11.95,04/03/19 00:15,"931 Adams St, Boston, MA 02215" +192670,AAA Batteries (4-pack),1,2.99,04/19/19 20:46,"192 Chestnut St, San Francisco, CA 94016" +192671,Wired Headphones,1,11.99,04/13/19 16:52,"88 Lake St, Austin, TX 73301" +192672,Lightning Charging Cable,1,14.95,04/17/19 23:05,"922 Sunset St, Portland, OR 97035" +192673,iPhone,1,700,04/19/19 16:05,"776 Johnson St, Los Angeles, CA 90001" +192673,Lightning Charging Cable,1,14.95,04/19/19 16:05,"776 Johnson St, Los Angeles, CA 90001" +192673,Wired Headphones,1,11.99,04/19/19 16:05,"776 Johnson St, Los Angeles, CA 90001" +192674,Lightning Charging Cable,1,14.95,04/12/19 12:09,"346 Jackson St, San Francisco, CA 94016" +192675,USB-C Charging Cable,1,11.95,04/27/19 19:34,"694 Spruce St, San Francisco, CA 94016" +192676,AA Batteries (4-pack),1,3.84,04/19/19 19:37,"802 Wilson St, Los Angeles, CA 90001" +192677,AA Batteries (4-pack),1,3.84,04/24/19 22:05,"355 Meadow St, Boston, MA 02215" +192678,Flatscreen TV,1,300,04/27/19 00:15,"861 Pine St, Dallas, TX 75001" +192679,Macbook Pro Laptop,1,1700,04/12/19 12:51,"854 South St, Portland, OR 97035" +192680,Lightning Charging Cable,1,14.95,04/24/19 15:00,"955 Hickory St, Atlanta, GA 30301" +192681,AA Batteries (4-pack),1,3.84,04/11/19 10:40,"179 Jefferson St, Los Angeles, CA 90001" +192682,Flatscreen TV,1,300,04/04/19 19:39,"783 Highland St, Los Angeles, CA 90001" +192683,AA Batteries (4-pack),1,3.84,04/20/19 13:04,"975 14th St, Boston, MA 02215" +192684,Apple Airpods Headphones,1,150,04/18/19 14:26,"938 Madison St, San Francisco, CA 94016" +192685,USB-C Charging Cable,1,11.95,04/07/19 22:57,"293 5th St, San Francisco, CA 94016" +192686,Lightning Charging Cable,1,14.95,04/23/19 20:44,"496 Willow St, Atlanta, GA 30301" +192687,27in FHD Monitor,1,149.99,04/12/19 18:34,"245 9th St, New York City, NY 10001" +192688,Flatscreen TV,1,300,04/04/19 20:27,"243 Forest St, San Francisco, CA 94016" +192689,AAA Batteries (4-pack),1,2.99,04/16/19 06:27,"874 Jefferson St, Atlanta, GA 30301" +192690,AAA Batteries (4-pack),1,2.99,04/16/19 18:49,"233 West St, Boston, MA 02215" +192691,Wired Headphones,1,11.99,04/17/19 02:20,"198 River St, Los Angeles, CA 90001" +192692,AAA Batteries (4-pack),1,2.99,04/16/19 21:57,"680 5th St, Seattle, WA 98101" +192693,Lightning Charging Cable,1,14.95,04/09/19 23:11,"356 Park St, New York City, NY 10001" +192694,Bose SoundSport Headphones,1,99.99,04/20/19 07:12,"547 North St, Los Angeles, CA 90001" +192695,Lightning Charging Cable,1,14.95,04/03/19 10:12,"917 1st St, Atlanta, GA 30301" +192696,AAA Batteries (4-pack),1,2.99,04/09/19 00:02,"132 2nd St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +192697,Bose SoundSport Headphones,1,99.99,04/21/19 17:37,"759 South St, Boston, MA 02215" +192698,Lightning Charging Cable,1,14.95,04/03/19 11:33,"351 Chestnut St, Atlanta, GA 30301" +192699,iPhone,1,700,04/16/19 14:34,"702 Washington St, Austin, TX 73301" +192700,20in Monitor,1,109.99,04/18/19 11:00,"145 Willow St, Boston, MA 02215" +192701,Lightning Charging Cable,1,14.95,04/25/19 09:32,"358 14th St, Portland, OR 97035" +192702,USB-C Charging Cable,1,11.95,04/18/19 21:02,"310 Hill St, Boston, MA 02215" +192703,Lightning Charging Cable,1,14.95,04/15/19 20:37,"25 West St, Los Angeles, CA 90001" +192704,USB-C Charging Cable,1,11.95,04/30/19 11:30,"244 Willow St, San Francisco, CA 94016" +192705,Lightning Charging Cable,1,14.95,04/24/19 20:02,"591 North St, Los Angeles, CA 90001" +192706,Lightning Charging Cable,1,14.95,04/22/19 21:34,"369 Johnson St, San Francisco, CA 94016" +192707,Lightning Charging Cable,1,14.95,04/26/19 17:40,"571 11th St, Dallas, TX 75001" +192708,Apple Airpods Headphones,1,150,04/21/19 21:35,"240 7th St, Los Angeles, CA 90001" +192709,34in Ultrawide Monitor,1,379.99,04/04/19 01:35,"241 Highland St, San Francisco, CA 94016" +192710,Lightning Charging Cable,1,14.95,04/04/19 19:25,"596 11th St, Atlanta, GA 30301" +192711,AAA Batteries (4-pack),1,2.99,04/22/19 11:03,"126 Forest St, Seattle, WA 98101" +192712,Flatscreen TV,1,300,04/24/19 22:58,"412 Lake St, Atlanta, GA 30301" +192713,USB-C Charging Cable,1,11.95,04/24/19 00:09,"244 13th St, Dallas, TX 75001" +192714,USB-C Charging Cable,1,11.95,04/08/19 17:46,"726 10th St, New York City, NY 10001" +192715,Lightning Charging Cable,1,14.95,04/29/19 21:36,"619 Spruce St, Los Angeles, CA 90001" +192716,Apple Airpods Headphones,1,150,04/08/19 14:16,"188 Park St, Los Angeles, CA 90001" +192717,AAA Batteries (4-pack),1,2.99,04/25/19 08:12,"925 West St, New York City, NY 10001" +192718,AA Batteries (4-pack),1,3.84,04/26/19 13:14,"499 Main St, New York City, NY 10001" +192719,AAA Batteries (4-pack),1,2.99,04/22/19 18:50,"624 8th St, San Francisco, CA 94016" +192720,AAA Batteries (4-pack),1,2.99,04/05/19 23:53,"168 Church St, San Francisco, CA 94016" +192721,AA Batteries (4-pack),1,3.84,04/06/19 22:54,"114 Jefferson St, New York City, NY 10001" +192721,27in FHD Monitor,1,149.99,04/06/19 22:54,"114 Jefferson St, New York City, NY 10001" +192722,AA Batteries (4-pack),2,3.84,04/13/19 07:50,"917 Cedar St, Dallas, TX 75001" +192723,AAA Batteries (4-pack),2,2.99,04/02/19 13:25,"311 10th St, Dallas, TX 75001" +192724,USB-C Charging Cable,1,11.95,04/18/19 07:33,"729 Elm St, San Francisco, CA 94016" +192725,27in FHD Monitor,1,149.99,04/05/19 21:12,"895 Dogwood St, San Francisco, CA 94016" +192726,Apple Airpods Headphones,1,150,04/01/19 17:05,"817 2nd St, San Francisco, CA 94016" +192727,34in Ultrawide Monitor,1,379.99,04/30/19 15:25,"255 Spruce St, Dallas, TX 75001" +192728,Bose SoundSport Headphones,1,99.99,04/17/19 20:01,"807 Pine St, New York City, NY 10001" +192729,AA Batteries (4-pack),2,3.84,04/21/19 23:28,"708 Walnut St, Los Angeles, CA 90001" +192730,AA Batteries (4-pack),2,3.84,04/09/19 17:33,"635 Lake St, Boston, MA 02215" +192731,Wired Headphones,1,11.99,04/15/19 20:18,"258 Elm St, San Francisco, CA 94016" +192732,AAA Batteries (4-pack),2,2.99,04/26/19 15:24,"220 West St, New York City, NY 10001" +192733,Google Phone,1,600,04/04/19 17:42,"228 5th St, New York City, NY 10001" +192734,Lightning Charging Cable,1,14.95,04/11/19 20:13,"176 Cedar St, New York City, NY 10001" +192735,Lightning Charging Cable,1,14.95,04/29/19 20:23,"117 West St, Portland, ME 04101" +192736,Lightning Charging Cable,1,14.95,04/01/19 22:03,"33 Spruce St, Dallas, TX 75001" +192737,iPhone,1,700,04/19/19 13:51,"642 Hickory St, Boston, MA 02215" +192738,USB-C Charging Cable,1,11.95,04/15/19 10:00,"132 8th St, Atlanta, GA 30301" +192739,20in Monitor,1,109.99,04/11/19 08:01,"834 9th St, San Francisco, CA 94016" +192740,AA Batteries (4-pack),1,3.84,04/06/19 06:34,"56 Meadow St, New York City, NY 10001" +192741,Flatscreen TV,1,300,04/04/19 16:27,"402 7th St, Los Angeles, CA 90001" +192742,Wired Headphones,1,11.99,04/04/19 17:51,"398 4th St, Los Angeles, CA 90001" +192743,Lightning Charging Cable,1,14.95,04/10/19 14:45,"498 Jefferson St, Austin, TX 73301" +192744,Apple Airpods Headphones,1,150,04/06/19 23:23,"159 West St, Dallas, TX 75001" +192745,AA Batteries (4-pack),5,3.84,04/29/19 11:53,"422 2nd St, Portland, OR 97035" +192746,Lightning Charging Cable,1,14.95,04/20/19 20:33,"616 Highland St, Seattle, WA 98101" +192747,Apple Airpods Headphones,1,150,04/26/19 16:32,"708 11th St, Dallas, TX 75001" +192748,AAA Batteries (4-pack),1,2.99,04/11/19 01:28,"874 Sunset St, Los Angeles, CA 90001" +192749,Lightning Charging Cable,1,14.95,04/12/19 19:39,"738 Elm St, San Francisco, CA 94016" +192750,27in FHD Monitor,1,149.99,04/30/19 23:36,"833 Hill St, Dallas, TX 75001" +192751,USB-C Charging Cable,1,11.95,04/04/19 20:58,"847 2nd St, Los Angeles, CA 90001" +192752,AA Batteries (4-pack),1,3.84,04/26/19 07:12,"801 South St, New York City, NY 10001" +192753,USB-C Charging Cable,1,11.95,04/03/19 11:58,"247 14th St, Los Angeles, CA 90001" +192754,Bose SoundSport Headphones,1,99.99,04/02/19 16:02,"329 Cedar St, Atlanta, GA 30301" +192755,Bose SoundSport Headphones,1,99.99,04/28/19 10:07,"796 Cedar St, Los Angeles, CA 90001" +192756,USB-C Charging Cable,1,11.95,04/01/19 08:16,"40 North St, San Francisco, CA 94016" +192757,ThinkPad Laptop,1,999.99,04/21/19 09:17,"617 South St, San Francisco, CA 94016" +192758,iPhone,1,700,04/06/19 14:14,"510 12th St, Los Angeles, CA 90001" +192758,Apple Airpods Headphones,1,150,04/06/19 14:14,"510 12th St, Los Angeles, CA 90001" +192759,Apple Airpods Headphones,1,150,04/06/19 11:33,"394 4th St, Seattle, WA 98101" +192760,AAA Batteries (4-pack),1,2.99,04/04/19 19:58,"985 Meadow St, Atlanta, GA 30301" +192761,Macbook Pro Laptop,1,1700,04/17/19 12:20,"696 Jefferson St, San Francisco, CA 94016" +192762,Lightning Charging Cable,1,14.95,04/05/19 11:58,"565 Main St, New York City, NY 10001" +192763,Lightning Charging Cable,1,14.95,04/15/19 11:27,"529 Johnson St, Portland, OR 97035" +192764,27in FHD Monitor,1,149.99,04/24/19 11:40,"11 Main St, San Francisco, CA 94016" +192765,Wired Headphones,1,11.99,04/28/19 20:49,"93 Wilson St, Dallas, TX 75001" +192766,AAA Batteries (4-pack),1,2.99,04/28/19 13:38,"952 Highland St, Los Angeles, CA 90001" +192767,Macbook Pro Laptop,1,1700,04/05/19 09:18,"220 Chestnut St, Austin, TX 73301" +192768,Apple Airpods Headphones,1,150,04/06/19 11:58,"426 Ridge St, Atlanta, GA 30301" +192769,AAA Batteries (4-pack),1,2.99,04/16/19 10:13,"400 14th St, San Francisco, CA 94016" +192770,AA Batteries (4-pack),1,3.84,04/04/19 00:17,"475 4th St, Portland, ME 04101" +192771,Flatscreen TV,1,300,04/20/19 00:14,"591 Hickory St, Seattle, WA 98101" +192772,20in Monitor,1,109.99,04/09/19 07:31,"333 Adams St, San Francisco, CA 94016" +192773,USB-C Charging Cable,1,11.95,04/29/19 21:53,"182 Washington St, Boston, MA 02215" +192774,iPhone,1,700,04/23/19 18:33,"36 6th St, San Francisco, CA 94016" +192775,Bose SoundSport Headphones,1,99.99,04/21/19 16:53,"960 Sunset St, San Francisco, CA 94016" +192776,27in 4K Gaming Monitor,1,389.99,04/21/19 15:36,"199 9th St, Seattle, WA 98101" +192777,ThinkPad Laptop,1,999.99,04/14/19 12:37,"34 North St, San Francisco, CA 94016" +192778,Apple Airpods Headphones,1,150,04/27/19 12:05,"620 Madison St, Los Angeles, CA 90001" +192779,Bose SoundSport Headphones,1,99.99,04/27/19 16:44,"948 13th St, Los Angeles, CA 90001" +192780,AAA Batteries (4-pack),1,2.99,04/14/19 13:12,"533 North St, San Francisco, CA 94016" +192781,AAA Batteries (4-pack),2,2.99,04/18/19 16:30,"727 10th St, Los Angeles, CA 90001" +192782,USB-C Charging Cable,1,11.95,04/07/19 18:00,"272 Madison St, New York City, NY 10001" +192783,AAA Batteries (4-pack),1,2.99,04/06/19 14:05,"535 Elm St, Boston, MA 02215" +192784,27in 4K Gaming Monitor,1,389.99,04/03/19 22:04,"312 5th St, Atlanta, GA 30301" +192785,Wired Headphones,2,11.99,04/02/19 12:59,"221 Center St, San Francisco, CA 94016" +192786,Bose SoundSport Headphones,1,99.99,04/22/19 23:56,"45 Dogwood St, San Francisco, CA 94016" +192787,AA Batteries (4-pack),1,3.84,04/24/19 01:45,"490 Lake St, Los Angeles, CA 90001" +192788,AA Batteries (4-pack),1,3.84,04/05/19 21:31,"14 Church St, Los Angeles, CA 90001" +192789,Google Phone,1,600,04/08/19 15:07,"605 Jefferson St, Seattle, WA 98101" +192789,Bose SoundSport Headphones,1,99.99,04/08/19 15:07,"605 Jefferson St, Seattle, WA 98101" +192790,Lightning Charging Cable,1,14.95,04/27/19 18:23,"154 Center St, Portland, OR 97035" +192791,USB-C Charging Cable,1,11.95,04/11/19 22:07,"163 Spruce St, Dallas, TX 75001" +192792,27in 4K Gaming Monitor,1,389.99,04/12/19 20:50,"617 Cherry St, Los Angeles, CA 90001" +192793,Lightning Charging Cable,1,14.95,04/08/19 16:00,"555 Washington St, Dallas, TX 75001" +192794,AA Batteries (4-pack),2,3.84,04/04/19 01:52,"311 Johnson St, San Francisco, CA 94016" +192795,AAA Batteries (4-pack),3,2.99,04/05/19 20:32,"677 Lincoln St, Seattle, WA 98101" +192796,Apple Airpods Headphones,1,150,04/06/19 23:44,"212 Madison St, San Francisco, CA 94016" +192797,Wired Headphones,1,11.99,04/23/19 23:45,"541 2nd St, Los Angeles, CA 90001" +192798,27in 4K Gaming Monitor,1,389.99,04/28/19 23:11,"237 Jefferson St, Atlanta, GA 30301" +192799,USB-C Charging Cable,1,11.95,04/05/19 10:08,"545 Wilson St, Boston, MA 02215" +192800,USB-C Charging Cable,1,11.95,04/14/19 16:50,"294 Spruce St, Los Angeles, CA 90001" +192801,AAA Batteries (4-pack),2,2.99,04/08/19 01:34,"742 Adams St, Boston, MA 02215" +192802,Bose SoundSport Headphones,1,99.99,04/08/19 12:13,"831 6th St, Austin, TX 73301" +192803,AA Batteries (4-pack),1,3.84,04/12/19 12:10,"708 Hickory St, Boston, MA 02215" +192804,Apple Airpods Headphones,1,150,04/24/19 15:46,"114 1st St, San Francisco, CA 94016" +192805,ThinkPad Laptop,1,999.99,04/16/19 15:59,"295 Willow St, Boston, MA 02215" +192806,AAA Batteries (4-pack),1,2.99,04/08/19 10:05,"25 1st St, San Francisco, CA 94016" +192807,AAA Batteries (4-pack),2,2.99,04/03/19 10:19,"256 Jackson St, Portland, ME 04101" +192808,USB-C Charging Cable,1,11.95,04/28/19 11:51,"690 Jackson St, Portland, ME 04101" +192809,Apple Airpods Headphones,1,150,04/16/19 22:43,"560 1st St, Austin, TX 73301" +192810,27in FHD Monitor,1,149.99,04/20/19 15:27,"531 8th St, New York City, NY 10001" +192811,34in Ultrawide Monitor,1,379.99,04/25/19 20:10,"260 5th St, Portland, OR 97035" +192812,Wired Headphones,1,11.99,04/12/19 17:31,"51 Cedar St, San Francisco, CA 94016" +192813,Lightning Charging Cable,1,14.95,04/23/19 20:13,"593 6th St, Dallas, TX 75001" +192814,Wired Headphones,1,11.99,04/30/19 22:34,"585 1st St, Los Angeles, CA 90001" +192815,USB-C Charging Cable,1,11.95,04/15/19 00:29,"698 14th St, Dallas, TX 75001" +192815,USB-C Charging Cable,1,11.95,04/15/19 00:29,"698 14th St, Dallas, TX 75001" +192816,27in 4K Gaming Monitor,1,389.99,04/29/19 23:24,"489 11th St, Boston, MA 02215" +192817,AA Batteries (4-pack),1,3.84,04/16/19 13:18,"652 Cherry St, Dallas, TX 75001" +192818,Wired Headphones,1,11.99,04/28/19 08:19,"309 South St, New York City, NY 10001" +192819,27in FHD Monitor,1,149.99,04/13/19 16:54,"593 Park St, Boston, MA 02215" +192820,AA Batteries (4-pack),1,3.84,04/10/19 19:59,"505 9th St, Portland, OR 97035" +192821,iPhone,1,700,04/21/19 18:33,"272 4th St, Los Angeles, CA 90001" +192821,Lightning Charging Cable,1,14.95,04/21/19 18:33,"272 4th St, Los Angeles, CA 90001" +192822,20in Monitor,1,109.99,04/19/19 18:32,"12 Park St, Dallas, TX 75001" +192823,34in Ultrawide Monitor,1,379.99,04/05/19 06:57,"393 Lakeview St, San Francisco, CA 94016" +192824,Apple Airpods Headphones,1,150,04/02/19 22:25,"274 Washington St, San Francisco, CA 94016" +192825,Wired Headphones,2,11.99,04/18/19 06:33,"33 1st St, New York City, NY 10001" +192826,27in FHD Monitor,1,149.99,04/28/19 23:19,"621 10th St, San Francisco, CA 94016" +192827,iPhone,1,700,04/11/19 18:15,"851 Jackson St, San Francisco, CA 94016" +192828,Wired Headphones,1,11.99,04/14/19 18:33,"429 4th St, New York City, NY 10001" +192829,AAA Batteries (4-pack),3,2.99,04/27/19 01:42,"832 Lakeview St, San Francisco, CA 94016" +192830,AAA Batteries (4-pack),1,2.99,04/06/19 11:19,"275 Lincoln St, Atlanta, GA 30301" +192831,Wired Headphones,1,11.99,04/04/19 14:12,"109 9th St, San Francisco, CA 94016" +192832,Lightning Charging Cable,2,14.95,04/27/19 06:53,"289 Pine St, Los Angeles, CA 90001" +192833,AA Batteries (4-pack),1,3.84,04/28/19 00:44,"452 Jefferson St, Dallas, TX 75001" +192834,ThinkPad Laptop,1,999.99,04/12/19 21:38,"857 Adams St, Dallas, TX 75001" +192835,20in Monitor,1,109.99,04/17/19 20:05,"508 Lake St, San Francisco, CA 94016" +192836,Apple Airpods Headphones,1,150,04/14/19 09:08,"603 Dogwood St, Austin, TX 73301" +192837,27in 4K Gaming Monitor,1,389.99,04/15/19 13:38,"188 Adams St, New York City, NY 10001" +192838,34in Ultrawide Monitor,1,379.99,04/27/19 15:36,"482 Highland St, Austin, TX 73301" +192839,Bose SoundSport Headphones,1,99.99,04/12/19 14:17,"459 5th St, Boston, MA 02215" +192840,Lightning Charging Cable,1,14.95,04/10/19 11:18,"540 Pine St, Boston, MA 02215" +192841,Bose SoundSport Headphones,1,99.99,04/02/19 10:17,"224 Center St, Boston, MA 02215" +192842,Wired Headphones,1,11.99,04/05/19 12:16,"453 Main St, Seattle, WA 98101" +192843,27in 4K Gaming Monitor,1,389.99,04/13/19 18:27,"353 Wilson St, Seattle, WA 98101" +192844,AA Batteries (4-pack),1,3.84,04/01/19 12:08,"759 14th St, Dallas, TX 75001" +192845,Bose SoundSport Headphones,1,99.99,04/26/19 21:29,"547 Wilson St, San Francisco, CA 94016" +192846,27in 4K Gaming Monitor,1,389.99,04/19/19 15:54,"48 Meadow St, Seattle, WA 98101" +192847,27in 4K Gaming Monitor,1,389.99,04/13/19 15:31,"232 Johnson St, Los Angeles, CA 90001" +192848,Lightning Charging Cable,1,14.95,04/20/19 16:47,"9 North St, Portland, OR 97035" +192849,AAA Batteries (4-pack),1,2.99,04/25/19 21:45,"326 4th St, Boston, MA 02215" +192850,USB-C Charging Cable,1,11.95,04/30/19 13:01,"973 14th St, Seattle, WA 98101" +192851,Bose SoundSport Headphones,1,99.99,04/09/19 01:38,"314 8th St, New York City, NY 10001" +192852,27in 4K Gaming Monitor,1,389.99,04/03/19 16:38,"416 Spruce St, Seattle, WA 98101" +192853,Wired Headphones,1,11.99,04/15/19 14:29,"136 Willow St, San Francisco, CA 94016" +192854,USB-C Charging Cable,1,11.95,04/09/19 20:11,"155 Hickory St, Boston, MA 02215" +192855,AA Batteries (4-pack),2,3.84,04/02/19 18:15,"775 9th St, San Francisco, CA 94016" +192856,Wired Headphones,1,11.99,04/24/19 20:26,"451 Forest St, Seattle, WA 98101" +192857,20in Monitor,1,109.99,04/12/19 23:07,"616 12th St, Seattle, WA 98101" +192858,AA Batteries (4-pack),1,3.84,04/28/19 15:05,"49 Spruce St, Seattle, WA 98101" +192859,iPhone,1,700,04/08/19 17:40,"575 Cedar St, San Francisco, CA 94016" +192860,Lightning Charging Cable,1,14.95,04/13/19 13:43,"350 Willow St, Portland, OR 97035" +192861,Bose SoundSport Headphones,1,99.99,04/26/19 16:33,"688 Willow St, Dallas, TX 75001" +192862,USB-C Charging Cable,1,11.95,04/03/19 21:49,"550 Lincoln St, Portland, OR 97035" +192863,Macbook Pro Laptop,1,1700,04/24/19 21:55,"77 6th St, Dallas, TX 75001" +192864,USB-C Charging Cable,1,11.95,04/04/19 12:25,"266 Jackson St, Seattle, WA 98101" +192865,AAA Batteries (4-pack),2,2.99,04/26/19 07:55,"234 11th St, Seattle, WA 98101" +192866,AA Batteries (4-pack),1,3.84,04/03/19 15:55,"108 Adams St, Portland, OR 97035" +192867,iPhone,1,700,04/01/19 18:51,"772 Sunset St, Austin, TX 73301" +192867,Wired Headphones,1,11.99,04/01/19 18:51,"772 Sunset St, Austin, TX 73301" +192868,AA Batteries (4-pack),1,3.84,04/22/19 08:59,"695 Willow St, Los Angeles, CA 90001" +192869,Lightning Charging Cable,2,14.95,04/10/19 17:38,"506 Main St, Atlanta, GA 30301" +192870,Lightning Charging Cable,1,14.95,04/29/19 19:41,"682 Main St, Boston, MA 02215" +192871,Lightning Charging Cable,1,14.95,04/29/19 17:48,"302 Maple St, Boston, MA 02215" +192872,Bose SoundSport Headphones,1,99.99,04/03/19 08:13,"55 Church St, Los Angeles, CA 90001" +192873,AAA Batteries (4-pack),1,2.99,04/03/19 09:04,"666 Center St, San Francisco, CA 94016" +192874,USB-C Charging Cable,1,11.95,04/13/19 13:23,"617 Cedar St, Seattle, WA 98101" +192875,USB-C Charging Cable,1,11.95,04/14/19 10:48,"232 Chestnut St, Boston, MA 02215" +192876,Lightning Charging Cable,1,14.95,04/17/19 15:03,"568 South St, Boston, MA 02215" +192877,Lightning Charging Cable,2,14.95,04/25/19 19:01,"585 Chestnut St, Los Angeles, CA 90001" +192878,34in Ultrawide Monitor,1,379.99,04/29/19 21:46,"329 West St, San Francisco, CA 94016" +192879,34in Ultrawide Monitor,1,379.99,04/23/19 14:30,"908 Park St, San Francisco, CA 94016" +192880,Lightning Charging Cable,1,14.95,04/06/19 07:59,"52 Madison St, Austin, TX 73301" +192881,USB-C Charging Cable,1,11.95,04/09/19 19:24,"654 11th St, San Francisco, CA 94016" +192882,Bose SoundSport Headphones,1,99.99,04/09/19 00:02,"606 Cherry St, San Francisco, CA 94016" +192883,Google Phone,1,600,04/24/19 11:44,"625 Hill St, Los Angeles, CA 90001" +192883,USB-C Charging Cable,2,11.95,04/24/19 11:44,"625 Hill St, Los Angeles, CA 90001" +192883,Wired Headphones,1,11.99,04/24/19 11:44,"625 Hill St, Los Angeles, CA 90001" +192884,AA Batteries (4-pack),1,3.84,04/10/19 13:31,"70 Chestnut St, San Francisco, CA 94016" +192884,Lightning Charging Cable,1,14.95,04/10/19 13:31,"70 Chestnut St, San Francisco, CA 94016" +192885,AAA Batteries (4-pack),1,2.99,04/05/19 13:37,"280 Dogwood St, Boston, MA 02215" +192886,Apple Airpods Headphones,1,150,04/07/19 13:12,"451 10th St, Los Angeles, CA 90001" +192887,Bose SoundSport Headphones,1,99.99,04/06/19 16:32,"551 Sunset St, Dallas, TX 75001" +192888,Wired Headphones,1,11.99,04/20/19 16:32,"655 Walnut St, Seattle, WA 98101" +192889,Apple Airpods Headphones,1,150,04/17/19 20:35,"203 2nd St, Boston, MA 02215" +192890,AA Batteries (4-pack),1,3.84,04/08/19 14:40,"887 Church St, Austin, TX 73301" +192891,20in Monitor,1,109.99,04/22/19 20:51,"953 Pine St, San Francisco, CA 94016" +192892,Apple Airpods Headphones,1,150,04/11/19 11:13,"982 9th St, New York City, NY 10001" +192893,AAA Batteries (4-pack),1,2.99,04/12/19 20:43,"266 Meadow St, Austin, TX 73301" +192894,AAA Batteries (4-pack),1,2.99,04/15/19 21:20,"286 Cherry St, Los Angeles, CA 90001" +192894,Lightning Charging Cable,1,14.95,04/15/19 21:20,"286 Cherry St, Los Angeles, CA 90001" +192895,27in FHD Monitor,1,149.99,04/14/19 12:05,"27 Spruce St, Atlanta, GA 30301" +192896,AA Batteries (4-pack),2,3.84,04/04/19 17:47,"925 Park St, Los Angeles, CA 90001" +192897,27in FHD Monitor,1,149.99,04/07/19 15:05,"49 Cherry St, San Francisco, CA 94016" +192898,USB-C Charging Cable,1,11.95,04/10/19 21:36,"674 1st St, Los Angeles, CA 90001" +192899,Wired Headphones,1,11.99,04/14/19 17:35,"134 Ridge St, Dallas, TX 75001" +192900,27in 4K Gaming Monitor,1,389.99,04/10/19 18:26,"117 9th St, Los Angeles, CA 90001" +192901,Lightning Charging Cable,1,14.95,04/29/19 09:29,"645 Adams St, Los Angeles, CA 90001" +192902,USB-C Charging Cable,1,11.95,04/29/19 12:36,"602 Park St, New York City, NY 10001" +192903,USB-C Charging Cable,1,11.95,04/20/19 07:31,"570 Highland St, San Francisco, CA 94016" +192904,Bose SoundSport Headphones,1,99.99,04/21/19 20:37,"613 South St, Portland, OR 97035" +192905,AA Batteries (4-pack),1,3.84,04/07/19 17:18,"211 Meadow St, Dallas, TX 75001" +192906,Google Phone,1,600,04/04/19 22:13,"468 Madison St, San Francisco, CA 94016" +192907,Google Phone,1,600,04/10/19 20:49,"78 Lakeview St, San Francisco, CA 94016" +192907,USB-C Charging Cable,1,11.95,04/10/19 20:49,"78 Lakeview St, San Francisco, CA 94016" +192908,ThinkPad Laptop,1,999.99,04/15/19 17:20,"570 Spruce St, San Francisco, CA 94016" +192909,Lightning Charging Cable,1,14.95,04/21/19 21:37,"170 Meadow St, Los Angeles, CA 90001" +192910,Lightning Charging Cable,1,14.95,04/26/19 00:25,"967 12th St, Dallas, TX 75001" +192910,AA Batteries (4-pack),3,3.84,04/26/19 00:25,"967 12th St, Dallas, TX 75001" +192911,ThinkPad Laptop,1,999.99,04/24/19 22:08,"25 1st St, Los Angeles, CA 90001" +192912,AAA Batteries (4-pack),1,2.99,04/06/19 15:55,"712 Johnson St, New York City, NY 10001" +192913,ThinkPad Laptop,1,999.99,04/18/19 22:44,"51 Pine St, Austin, TX 73301" +192914,AA Batteries (4-pack),2,3.84,04/09/19 08:59,"971 Forest St, Atlanta, GA 30301" +192914,AAA Batteries (4-pack),1,2.99,04/09/19 08:59,"971 Forest St, Atlanta, GA 30301" +192915,Apple Airpods Headphones,1,150,04/24/19 23:17,"418 Jefferson St, Boston, MA 02215" +192916,AA Batteries (4-pack),1,3.84,04/09/19 15:51,"236 Walnut St, Los Angeles, CA 90001" +192917,Apple Airpods Headphones,1,150,04/17/19 23:10,"551 Willow St, Seattle, WA 98101" +192918,Apple Airpods Headphones,1,150,04/04/19 16:32,"980 Walnut St, Dallas, TX 75001" +192919,AAA Batteries (4-pack),1,2.99,04/30/19 22:37,"296 12th St, Los Angeles, CA 90001" +192920,Apple Airpods Headphones,1,150,04/10/19 13:23,"382 10th St, Los Angeles, CA 90001" +192921,Wired Headphones,1,11.99,04/04/19 01:41,"852 Cedar St, Boston, MA 02215" +192922,AA Batteries (4-pack),1,3.84,04/12/19 00:59,"554 South St, Austin, TX 73301" +192923,Bose SoundSport Headphones,1,99.99,04/06/19 10:32,"439 Jackson St, Dallas, TX 75001" +192924,AA Batteries (4-pack),1,3.84,04/13/19 21:25,"733 11th St, New York City, NY 10001" +192925,34in Ultrawide Monitor,1,379.99,04/17/19 19:43,"739 Spruce St, Los Angeles, CA 90001" +192926,AA Batteries (4-pack),3,3.84,04/25/19 10:04,"349 8th St, Boston, MA 02215" +192927,Flatscreen TV,1,300,04/04/19 21:51,"898 Wilson St, New York City, NY 10001" +192928,USB-C Charging Cable,2,11.95,04/29/19 14:12,"485 Jefferson St, San Francisco, CA 94016" +192929,Vareebadd Phone,1,400,04/08/19 09:32,"158 Lincoln St, San Francisco, CA 94016" +192929,USB-C Charging Cable,1,11.95,04/08/19 09:32,"158 Lincoln St, San Francisco, CA 94016" +192929,Bose SoundSport Headphones,1,99.99,04/08/19 09:32,"158 Lincoln St, San Francisco, CA 94016" +192930,iPhone,1,700,04/01/19 13:25,"762 Chestnut St, Boston, MA 02215" +192931,Flatscreen TV,1,300,04/27/19 15:01,"809 Meadow St, Boston, MA 02215" +192931,AAA Batteries (4-pack),1,2.99,04/27/19 15:01,"809 Meadow St, Boston, MA 02215" +192932,Vareebadd Phone,1,400,04/07/19 10:19,"740 Meadow St, Los Angeles, CA 90001" +192933,Wired Headphones,1,11.99,04/18/19 15:50,"67 Hill St, Atlanta, GA 30301" +192934,Apple Airpods Headphones,1,150,04/11/19 22:51,"356 South St, Seattle, WA 98101" +192935,Bose SoundSport Headphones,1,99.99,04/20/19 19:14,"973 Center St, Portland, OR 97035" +192936,Apple Airpods Headphones,1,150,04/07/19 10:39,"715 Sunset St, Dallas, TX 75001" +192937,AAA Batteries (4-pack),1,2.99,04/18/19 09:27,"556 Sunset St, San Francisco, CA 94016" +192938,iPhone,1,700,04/24/19 13:49,"77 Church St, San Francisco, CA 94016" +192939,Lightning Charging Cable,1,14.95,04/18/19 09:24,"468 Madison St, San Francisco, CA 94016" +192940,Apple Airpods Headphones,1,150,04/14/19 15:25,"173 Jefferson St, Portland, OR 97035" +192941,27in FHD Monitor,1,149.99,04/15/19 08:32,"785 Park St, Los Angeles, CA 90001" +192942,Wired Headphones,1,11.99,04/29/19 17:11,"909 6th St, San Francisco, CA 94016" +192943,Wired Headphones,1,11.99,04/18/19 16:07,"309 9th St, San Francisco, CA 94016" +192944,Lightning Charging Cable,1,14.95,04/02/19 09:52,"14 13th St, Dallas, TX 75001" +192945,27in FHD Monitor,1,149.99,04/02/19 09:18,"379 Madison St, Los Angeles, CA 90001" +192946,Wired Headphones,2,11.99,04/08/19 10:02,"997 Walnut St, San Francisco, CA 94016" +192947,Macbook Pro Laptop,1,1700,04/08/19 22:14,"491 Main St, Dallas, TX 75001" +192948,AAA Batteries (4-pack),4,2.99,04/02/19 17:03,"770 Meadow St, Boston, MA 02215" +192949,USB-C Charging Cable,1,11.95,04/12/19 15:41,"381 Dogwood St, New York City, NY 10001" +192950,Google Phone,1,600,04/05/19 13:04,"538 River St, San Francisco, CA 94016" +192950,USB-C Charging Cable,1,11.95,04/05/19 13:04,"538 River St, San Francisco, CA 94016" +192951,USB-C Charging Cable,1,11.95,04/28/19 23:28,"801 Willow St, Los Angeles, CA 90001" +192952,Lightning Charging Cable,1,14.95,04/04/19 17:40,"45 Spruce St, Los Angeles, CA 90001" +192953,USB-C Charging Cable,1,11.95,04/10/19 15:53,"516 Washington St, San Francisco, CA 94016" +192954,AAA Batteries (4-pack),2,2.99,04/16/19 17:25,"969 Park St, San Francisco, CA 94016" +192955,34in Ultrawide Monitor,1,379.99,04/22/19 18:35,"472 Maple St, Los Angeles, CA 90001" +192956,AA Batteries (4-pack),2,3.84,04/30/19 17:00,"787 10th St, San Francisco, CA 94016" +192957,USB-C Charging Cable,1,11.95,04/19/19 09:36,"838 Cedar St, Boston, MA 02215" +192958,iPhone,1,700,04/30/19 13:16,"941 5th St, Dallas, TX 75001" +192959,Lightning Charging Cable,1,14.95,04/07/19 11:04,"610 North St, New York City, NY 10001" +192960,iPhone,1,700,04/21/19 08:20,"819 Center St, Boston, MA 02215" +192961,AA Batteries (4-pack),2,3.84,04/15/19 14:53,"895 7th St, Seattle, WA 98101" +192962,AA Batteries (4-pack),1,3.84,04/03/19 21:16,"591 Church St, Portland, OR 97035" +192962,34in Ultrawide Monitor,1,379.99,04/03/19 21:16,"591 Church St, Portland, OR 97035" +192963,Apple Airpods Headphones,1,150,04/21/19 11:44,"665 Spruce St, Dallas, TX 75001" +192964,AAA Batteries (4-pack),2,2.99,04/21/19 10:45,"346 14th St, Atlanta, GA 30301" +192965,AAA Batteries (4-pack),3,2.99,04/10/19 21:32,"79 9th St, Portland, ME 04101" +192966,Google Phone,1,600,04/19/19 14:58,"968 1st St, Los Angeles, CA 90001" +192966,USB-C Charging Cable,1,11.95,04/19/19 14:58,"968 1st St, Los Angeles, CA 90001" +192967,AAA Batteries (4-pack),1,2.99,04/01/19 14:21,"879 Highland St, Atlanta, GA 30301" +192968,34in Ultrawide Monitor,1,379.99,04/20/19 11:50,"371 Wilson St, New York City, NY 10001" +192969,Apple Airpods Headphones,1,150,04/19/19 14:01,"171 9th St, New York City, NY 10001" +192970,27in FHD Monitor,1,149.99,04/14/19 18:29,"809 4th St, Seattle, WA 98101" +192971,27in 4K Gaming Monitor,1,389.99,04/24/19 20:14,"461 2nd St, Atlanta, GA 30301" +192972,Flatscreen TV,1,300,04/03/19 09:43,"103 Spruce St, Los Angeles, CA 90001" +192973,LG Dryer,1,600.0,04/19/19 05:53,"71 6th St, Los Angeles, CA 90001" +192973,AAA Batteries (4-pack),1,2.99,04/19/19 05:53,"71 6th St, Los Angeles, CA 90001" +192974,Bose SoundSport Headphones,1,99.99,04/04/19 11:22,"224 6th St, Portland, OR 97035" +192975,Bose SoundSport Headphones,1,99.99,04/23/19 22:09,"946 11th St, Boston, MA 02215" +192976,Wired Headphones,1,11.99,04/27/19 01:04,"129 13th St, New York City, NY 10001" +192977,Apple Airpods Headphones,1,150,04/28/19 17:03,"535 10th St, San Francisco, CA 94016" +192978,USB-C Charging Cable,1,11.95,04/05/19 13:22,"118 Hill St, Boston, MA 02215" +192979,AAA Batteries (4-pack),1,2.99,04/09/19 15:38,"699 Lake St, Dallas, TX 75001" +192980,USB-C Charging Cable,1,11.95,04/16/19 14:46,"392 Chestnut St, Boston, MA 02215" +192981,34in Ultrawide Monitor,1,379.99,04/26/19 12:18,"881 Maple St, Atlanta, GA 30301" +192982,Apple Airpods Headphones,2,150,04/14/19 09:59,"240 Chestnut St, New York City, NY 10001" +192983,iPhone,1,700,04/05/19 13:06,"784 12th St, Boston, MA 02215" +192984,Lightning Charging Cable,1,14.95,04/22/19 18:09,"450 Church St, New York City, NY 10001" +192985,Bose SoundSport Headphones,1,99.99,04/02/19 09:17,"402 1st St, Boston, MA 02215" +192986,iPhone,1,700,04/01/19 10:10,"53 5th St, San Francisco, CA 94016" +192987,Macbook Pro Laptop,1,1700,04/07/19 08:18,"137 Maple St, San Francisco, CA 94016" +192988,AAA Batteries (4-pack),1,2.99,04/07/19 10:15,"343 5th St, Atlanta, GA 30301" +192989,Lightning Charging Cable,1,14.95,04/01/19 11:08,"287 Main St, Los Angeles, CA 90001" +192990,Lightning Charging Cable,1,14.95,04/10/19 15:36,"357 Spruce St, San Francisco, CA 94016" +192991,Macbook Pro Laptop,1,1700,04/14/19 14:10,"380 Cherry St, New York City, NY 10001" +192992,USB-C Charging Cable,1,11.95,04/28/19 20:36,"60 Park St, Los Angeles, CA 90001" +192992,Bose SoundSport Headphones,1,99.99,04/28/19 20:36,"60 Park St, Los Angeles, CA 90001" +192993,27in FHD Monitor,1,149.99,04/10/19 18:38,"259 Jefferson St, San Francisco, CA 94016" +192994,Lightning Charging Cable,1,14.95,04/03/19 09:31,"194 West St, San Francisco, CA 94016" +192995,Bose SoundSport Headphones,1,99.99,04/17/19 14:48,"596 10th St, Boston, MA 02215" +192996,Lightning Charging Cable,1,14.95,04/03/19 01:20,"941 Lincoln St, San Francisco, CA 94016" +192997,Vareebadd Phone,1,400,04/18/19 08:08,"237 Madison St, Boston, MA 02215" +192997,Wired Headphones,1,11.99,04/18/19 08:08,"237 Madison St, Boston, MA 02215" +192998,Wired Headphones,1,11.99,04/02/19 14:00,"46 9th St, Atlanta, GA 30301" +192998,AA Batteries (4-pack),1,3.84,04/02/19 14:00,"46 9th St, Atlanta, GA 30301" +192999,AA Batteries (4-pack),2,3.84,04/30/19 12:11,"520 Willow St, New York City, NY 10001" +193000,USB-C Charging Cable,1,11.95,04/03/19 09:46,"650 Walnut St, Atlanta, GA 30301" +193001,Lightning Charging Cable,1,14.95,04/28/19 12:32,"386 Washington St, New York City, NY 10001" +193002,Macbook Pro Laptop,1,1700,04/02/19 21:24,"710 14th St, Boston, MA 02215" +193003,LG Dryer,1,600.0,04/28/19 11:40,"521 Jackson St, Portland, ME 04101" +193004,Wired Headphones,1,11.99,04/25/19 15:47,"130 13th St, Portland, OR 97035" +193005,USB-C Charging Cable,1,11.95,04/20/19 18:30,"923 Cherry St, Los Angeles, CA 90001" +193006,AA Batteries (4-pack),1,3.84,04/20/19 11:38,"447 12th St, Los Angeles, CA 90001" +193007,AAA Batteries (4-pack),1,2.99,04/29/19 23:43,"990 Johnson St, Portland, OR 97035" +193008,AAA Batteries (4-pack),1,2.99,04/13/19 12:26,"395 Jefferson St, Austin, TX 73301" +193009,Lightning Charging Cable,2,14.95,04/07/19 12:36,"231 Washington St, Boston, MA 02215" +193010,USB-C Charging Cable,2,11.95,04/11/19 13:46,"793 Chestnut St, Austin, TX 73301" +193011,USB-C Charging Cable,1,11.95,04/01/19 12:10,"35 Center St, Austin, TX 73301" +193012,Google Phone,1,600,04/02/19 18:13,"176 Church St, New York City, NY 10001" +193013,Macbook Pro Laptop,1,1700,04/10/19 23:14,"634 Cherry St, New York City, NY 10001" +193013,AAA Batteries (4-pack),1,2.99,04/10/19 23:14,"634 Cherry St, New York City, NY 10001" +193014,AA Batteries (4-pack),2,3.84,04/07/19 23:06,"348 Hill St, New York City, NY 10001" +193015,Wired Headphones,1,11.99,04/07/19 17:31,"453 5th St, Los Angeles, CA 90001" +193016,Wired Headphones,2,11.99,04/24/19 12:30,"518 8th St, San Francisco, CA 94016" +193017,Macbook Pro Laptop,1,1700,04/25/19 00:44,"342 Jefferson St, New York City, NY 10001" +193018,Wired Headphones,1,11.99,04/26/19 06:25,"387 5th St, San Francisco, CA 94016" +193019,USB-C Charging Cable,2,11.95,04/17/19 12:08,"28 Church St, Boston, MA 02215" +193020,AAA Batteries (4-pack),1,2.99,04/08/19 22:46,"314 Main St, Boston, MA 02215" +193021,AAA Batteries (4-pack),1,2.99,04/21/19 08:46,"313 9th St, Portland, ME 04101" +193022,Apple Airpods Headphones,1,150,04/24/19 03:00,"192 Maple St, San Francisco, CA 94016" +193023,ThinkPad Laptop,1,999.99,04/25/19 18:16,"649 Maple St, Boston, MA 02215" +193024,Bose SoundSport Headphones,1,99.99,04/27/19 13:55,"891 Lincoln St, Los Angeles, CA 90001" +193025,Wired Headphones,1,11.99,04/23/19 22:22,"851 Park St, San Francisco, CA 94016" +193026,27in FHD Monitor,1,149.99,04/23/19 21:57,"366 Church St, San Francisco, CA 94016" +193027,Apple Airpods Headphones,1,150,04/21/19 18:49,"302 Hickory St, Los Angeles, CA 90001" +193028,20in Monitor,1,109.99,04/01/19 17:20,"117 9th St, New York City, NY 10001" +193029,Wired Headphones,1,11.99,04/05/19 00:43,"599 1st St, San Francisco, CA 94016" +193030,USB-C Charging Cable,1,11.95,04/25/19 16:04,"763 Highland St, New York City, NY 10001" +193031,AA Batteries (4-pack),1,3.84,04/11/19 22:54,"201 Ridge St, Dallas, TX 75001" +193032,AA Batteries (4-pack),1,3.84,04/05/19 19:10,"727 Meadow St, New York City, NY 10001" +193033,AA Batteries (4-pack),1,3.84,04/29/19 20:17,"263 7th St, New York City, NY 10001" +193034,AA Batteries (4-pack),1,3.84,04/29/19 19:02,"750 1st St, San Francisco, CA 94016" +193035,Vareebadd Phone,1,400,04/24/19 23:59,"609 Jackson St, San Francisco, CA 94016" +193035,USB-C Charging Cable,1,11.95,04/24/19 23:59,"609 Jackson St, San Francisco, CA 94016" +193036,USB-C Charging Cable,1,11.95,04/23/19 09:10,"981 6th St, Seattle, WA 98101" +193037,iPhone,1,700,04/12/19 16:59,"782 Church St, New York City, NY 10001" +193038,USB-C Charging Cable,1,11.95,04/04/19 13:06,"515 Forest St, San Francisco, CA 94016" +193039,Bose SoundSport Headphones,1,99.99,04/06/19 13:23,"116 13th St, San Francisco, CA 94016" +193040,27in FHD Monitor,1,149.99,04/06/19 09:26,"277 Cherry St, Boston, MA 02215" +193041,AA Batteries (4-pack),1,3.84,04/12/19 15:28,"74 Lincoln St, New York City, NY 10001" +193041,Macbook Pro Laptop,1,1700,04/12/19 15:28,"74 Lincoln St, New York City, NY 10001" +193042,Bose SoundSport Headphones,1,99.99,04/17/19 02:16,"404 Meadow St, San Francisco, CA 94016" +193043,AAA Batteries (4-pack),1,2.99,04/30/19 20:16,"790 Spruce St, Boston, MA 02215" +193044,AA Batteries (4-pack),2,3.84,04/09/19 09:14,"799 Lakeview St, San Francisco, CA 94016" +193045,Lightning Charging Cable,1,14.95,04/09/19 20:23,"224 2nd St, Boston, MA 02215" +193046,USB-C Charging Cable,1,11.95,04/02/19 11:45,"2 Lincoln St, San Francisco, CA 94016" +193047,AAA Batteries (4-pack),1,2.99,04/11/19 08:36,"687 9th St, Los Angeles, CA 90001" +193048,27in 4K Gaming Monitor,1,389.99,04/07/19 12:43,"793 Wilson St, San Francisco, CA 94016" +193049,AA Batteries (4-pack),1,3.84,04/12/19 11:30,"503 Highland St, Seattle, WA 98101" +193050,USB-C Charging Cable,1,11.95,04/10/19 15:56,"284 10th St, Los Angeles, CA 90001" +193050,LG Dryer,1,600.0,04/10/19 15:56,"284 10th St, Los Angeles, CA 90001" +193051,ThinkPad Laptop,1,999.99,04/07/19 18:05,"696 Spruce St, Atlanta, GA 30301" +193052,Wired Headphones,1,11.99,04/10/19 12:34,"835 Sunset St, Boston, MA 02215" +193053,AA Batteries (4-pack),1,3.84,04/27/19 15:53,"845 Lincoln St, New York City, NY 10001" +193054,34in Ultrawide Monitor,1,379.99,04/10/19 19:05,"2 Lake St, San Francisco, CA 94016" +193055,Apple Airpods Headphones,1,150,04/20/19 14:40,"936 4th St, Portland, OR 97035" +193055,Lightning Charging Cable,1,14.95,04/20/19 14:40,"936 4th St, Portland, OR 97035" +193056,AAA Batteries (4-pack),1,2.99,04/04/19 22:27,"680 14th St, Seattle, WA 98101" +193057,27in FHD Monitor,1,149.99,04/14/19 21:07,"479 8th St, Seattle, WA 98101" +193058,27in 4K Gaming Monitor,1,389.99,04/22/19 07:35,"411 Elm St, San Francisco, CA 94016" +193059,AAA Batteries (4-pack),5,2.99,04/15/19 09:55,"780 9th St, Seattle, WA 98101" +193060,27in FHD Monitor,1,149.99,04/02/19 08:43,"364 Pine St, Seattle, WA 98101" +193061,AAA Batteries (4-pack),2,2.99,04/05/19 23:42,"732 Jefferson St, Los Angeles, CA 90001" +193061,Lightning Charging Cable,1,14.95,04/05/19 23:42,"732 Jefferson St, Los Angeles, CA 90001" +193062,27in FHD Monitor,1,149.99,04/09/19 13:04,"210 Main St, Dallas, TX 75001" +193063,AA Batteries (4-pack),1,3.84,04/14/19 15:52,"556 4th St, Atlanta, GA 30301" +193064,27in 4K Gaming Monitor,1,389.99,04/16/19 09:01,"329 Pine St, Los Angeles, CA 90001" +193065,Flatscreen TV,1,300,04/20/19 12:29,"62 10th St, Seattle, WA 98101" +193066,AA Batteries (4-pack),2,3.84,04/23/19 23:58,"141 Maple St, Portland, OR 97035" +193067,Lightning Charging Cable,1,14.95,04/18/19 14:50,"794 7th St, San Francisco, CA 94016" +193068,AA Batteries (4-pack),2,3.84,04/30/19 13:45,"54 Center St, Seattle, WA 98101" +193068,Google Phone,1,600,04/30/19 13:45,"54 Center St, Seattle, WA 98101" +193069,Lightning Charging Cable,1,14.95,04/02/19 12:17,"900 Ridge St, Austin, TX 73301" +193070,AAA Batteries (4-pack),1,2.99,04/07/19 01:15,"47 6th St, San Francisco, CA 94016" +193071,Bose SoundSport Headphones,1,99.99,04/04/19 11:32,"87 Lakeview St, Boston, MA 02215" +193072,Apple Airpods Headphones,1,150,04/14/19 16:21,"395 Johnson St, San Francisco, CA 94016" +193073,27in 4K Gaming Monitor,1,389.99,04/30/19 22:59,"125 Dogwood St, Los Angeles, CA 90001" +193074,AAA Batteries (4-pack),2,2.99,04/12/19 10:07,"789 4th St, Austin, TX 73301" +193075,Wired Headphones,2,11.99,04/08/19 18:53,"726 Dogwood St, Dallas, TX 75001" +193076,USB-C Charging Cable,1,11.95,04/18/19 14:53,"2 Spruce St, Los Angeles, CA 90001" +193077,Lightning Charging Cable,1,14.95,04/17/19 18:02,"826 Ridge St, Portland, OR 97035" +193078,Lightning Charging Cable,1,14.95,04/24/19 22:49,"34 River St, New York City, NY 10001" +193079,Google Phone,1,600,04/07/19 19:33,"206 Park St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +193080,USB-C Charging Cable,1,11.95,04/12/19 07:11,"150 7th St, New York City, NY 10001" +193081,Google Phone,1,600,04/21/19 14:17,"695 Cedar St, Atlanta, GA 30301" +193082,27in FHD Monitor,1,149.99,04/06/19 20:07,"16 13th St, New York City, NY 10001" +193083,Lightning Charging Cable,1,14.95,04/10/19 16:16,"822 Center St, San Francisco, CA 94016" +193084,Wired Headphones,1,11.99,04/30/19 20:07,"65 North St, Los Angeles, CA 90001" +193085,34in Ultrawide Monitor,1,379.99,04/01/19 17:04,"608 5th St, New York City, NY 10001" +193086,Wired Headphones,1,11.99,04/08/19 21:31,"865 Highland St, Seattle, WA 98101" +193087,Wired Headphones,1,11.99,04/11/19 13:41,"265 5th St, Dallas, TX 75001" +193088,ThinkPad Laptop,1,999.99,04/16/19 18:58,"130 Elm St, Los Angeles, CA 90001" +193089,USB-C Charging Cable,1,11.95,04/04/19 09:17,"251 Pine St, San Francisco, CA 94016" +193090,27in FHD Monitor,1,149.99,04/13/19 23:40,"503 Lincoln St, San Francisco, CA 94016" +193091,Macbook Pro Laptop,1,1700,04/05/19 20:02,"204 West St, San Francisco, CA 94016" +193092,Lightning Charging Cable,1,14.95,04/23/19 09:29,"885 South St, Seattle, WA 98101" +193093,Bose SoundSport Headphones,1,99.99,04/12/19 21:59,"284 Pine St, Atlanta, GA 30301" +193094,ThinkPad Laptop,1,999.99,04/11/19 12:07,"400 Lake St, Boston, MA 02215" +193095,Apple Airpods Headphones,1,150,04/05/19 22:59,"76 Spruce St, Boston, MA 02215" +193096,Wired Headphones,1,11.99,04/17/19 17:41,"425 2nd St, San Francisco, CA 94016" +193097,Wired Headphones,1,11.99,05/01/19 00:50,"50 Church St, Dallas, TX 75001" +193098,AA Batteries (4-pack),1,3.84,04/10/19 21:37,"828 8th St, Dallas, TX 75001" +193099,Bose SoundSport Headphones,1,99.99,04/28/19 07:07,"814 Walnut St, New York City, NY 10001" +193100,Lightning Charging Cable,1,14.95,04/03/19 21:14,"143 Walnut St, San Francisco, CA 94016" +193101,Lightning Charging Cable,1,14.95,04/06/19 01:55,"525 Forest St, Boston, MA 02215" +193102,Lightning Charging Cable,1,14.95,04/06/19 06:10,"459 Lake St, San Francisco, CA 94016" +193103,Wired Headphones,2,11.99,04/12/19 20:25,"849 Walnut St, Atlanta, GA 30301" +193104,USB-C Charging Cable,1,11.95,04/04/19 19:52,"169 Spruce St, Los Angeles, CA 90001" +193105,Apple Airpods Headphones,1,150,04/29/19 22:14,"867 1st St, Boston, MA 02215" +193106,ThinkPad Laptop,1,999.99,04/15/19 20:31,"318 Wilson St, San Francisco, CA 94016" +193107,20in Monitor,1,109.99,04/07/19 18:35,"251 Wilson St, Los Angeles, CA 90001" +193108,Wired Headphones,1,11.99,04/20/19 15:56,"555 5th St, Atlanta, GA 30301" +193109,27in 4K Gaming Monitor,1,389.99,04/07/19 06:56,"717 Forest St, New York City, NY 10001" +193110,Lightning Charging Cable,1,14.95,04/26/19 21:31,"269 Meadow St, San Francisco, CA 94016" +193111,Macbook Pro Laptop,1,1700,04/27/19 02:17,"691 2nd St, Boston, MA 02215" +193112,Apple Airpods Headphones,1,150,04/25/19 08:14,"758 South St, Los Angeles, CA 90001" +193113,USB-C Charging Cable,1,11.95,04/26/19 18:07,"873 South St, New York City, NY 10001" +193114,AAA Batteries (4-pack),1,2.99,04/22/19 10:48,"453 1st St, Dallas, TX 75001" +193115,AA Batteries (4-pack),1,3.84,04/05/19 14:15,"151 West St, Seattle, WA 98101" +193116,Bose SoundSport Headphones,1,99.99,04/10/19 15:46,"189 Cherry St, Atlanta, GA 30301" +193117,AAA Batteries (4-pack),3,2.99,04/09/19 22:48,"306 Washington St, Los Angeles, CA 90001" +193118,AA Batteries (4-pack),2,3.84,04/15/19 06:28,"806 Church St, San Francisco, CA 94016" +193119,Lightning Charging Cable,1,14.95,04/05/19 00:44,"139 Chestnut St, Atlanta, GA 30301" +193120,27in 4K Gaming Monitor,1,389.99,04/10/19 23:03,"314 Spruce St, Dallas, TX 75001" +193121,Lightning Charging Cable,1,14.95,04/20/19 10:25,"45 West St, San Francisco, CA 94016" +193122,AA Batteries (4-pack),1,3.84,04/05/19 16:21,"55 River St, Seattle, WA 98101" +193123,34in Ultrawide Monitor,1,379.99,04/30/19 13:45,"892 Wilson St, Boston, MA 02215" +193124,Apple Airpods Headphones,1,150,04/03/19 20:17,"151 Wilson St, San Francisco, CA 94016" +193125,AAA Batteries (4-pack),3,2.99,04/22/19 14:56,"879 8th St, Atlanta, GA 30301" +193126,iPhone,1,700,04/27/19 09:41,"997 Main St, Portland, OR 97035" +193126,Apple Airpods Headphones,1,150,04/27/19 09:41,"997 Main St, Portland, OR 97035" +193127,27in 4K Gaming Monitor,1,389.99,04/09/19 14:40,"428 Willow St, Atlanta, GA 30301" +193128,AAA Batteries (4-pack),1,2.99,04/23/19 14:51,"840 13th St, Los Angeles, CA 90001" +193129,Macbook Pro Laptop,1,1700,04/22/19 09:15,"592 Wilson St, Seattle, WA 98101" +193130,AAA Batteries (4-pack),2,2.99,04/10/19 12:42,"6 Lakeview St, San Francisco, CA 94016" +193131,AA Batteries (4-pack),1,3.84,04/28/19 17:48,"183 Park St, New York City, NY 10001" +193132,Wired Headphones,1,11.99,04/02/19 20:57,"524 Hickory St, New York City, NY 10001" +193133,ThinkPad Laptop,1,999.99,04/07/19 19:45,"484 2nd St, New York City, NY 10001" +193134,AA Batteries (4-pack),1,3.84,04/02/19 09:45,"390 Spruce St, San Francisco, CA 94016" +193135,USB-C Charging Cable,1,11.95,04/29/19 17:04,"99 Walnut St, Seattle, WA 98101" +193136,USB-C Charging Cable,1,11.95,04/16/19 21:57,"331 14th St, Atlanta, GA 30301" +193137,Lightning Charging Cable,1,14.95,04/14/19 12:15,"477 Church St, Seattle, WA 98101" +193138,AA Batteries (4-pack),1,3.84,04/20/19 12:32,"907 12th St, San Francisco, CA 94016" +193139,iPhone,1,700,04/21/19 21:15,"506 6th St, Austin, TX 73301" +193140,Bose SoundSport Headphones,1,99.99,04/23/19 00:11,"454 Dogwood St, Dallas, TX 75001" +193141,Lightning Charging Cable,1,14.95,04/13/19 17:14,"553 Lincoln St, Los Angeles, CA 90001" +193142,iPhone,1,700,04/01/19 11:10,"377 2nd St, San Francisco, CA 94016" +193143,27in 4K Gaming Monitor,1,389.99,04/27/19 18:45,"843 Cedar St, Portland, OR 97035" +193144,AA Batteries (4-pack),1,3.84,04/09/19 20:23,"778 7th St, Boston, MA 02215" +193145,20in Monitor,1,109.99,04/09/19 08:22,"96 Chestnut St, San Francisco, CA 94016" +193146,AAA Batteries (4-pack),2,2.99,04/23/19 19:28,"36 Walnut St, Seattle, WA 98101" +193147,27in FHD Monitor,1,149.99,04/12/19 10:00,"158 Hickory St, New York City, NY 10001" +193148,AA Batteries (4-pack),3,3.84,04/30/19 11:59,"888 Forest St, Portland, OR 97035" +193149,Flatscreen TV,1,300,04/02/19 22:00,"666 Washington St, Atlanta, GA 30301" +193150,Lightning Charging Cable,1,14.95,04/30/19 13:38,"650 Chestnut St, San Francisco, CA 94016" +193151,Bose SoundSport Headphones,1,99.99,04/20/19 13:17,"43 Meadow St, New York City, NY 10001" +193152,Apple Airpods Headphones,1,150,04/12/19 17:21,"731 Elm St, San Francisco, CA 94016" +193153,Apple Airpods Headphones,1,150,04/19/19 14:32,"677 Washington St, San Francisco, CA 94016" +193154,Lightning Charging Cable,1,14.95,04/10/19 22:52,"609 Chestnut St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +193155,Lightning Charging Cable,1,14.95,04/17/19 16:32,"907 Cherry St, New York City, NY 10001" +193156,Wired Headphones,1,11.99,04/27/19 16:47,"395 Main St, Boston, MA 02215" +193157,USB-C Charging Cable,1,11.95,04/10/19 21:21,"313 Pine St, Dallas, TX 75001" +193158,Wired Headphones,1,11.99,04/20/19 11:48,"301 Hickory St, Dallas, TX 75001" +193159,AA Batteries (4-pack),3,3.84,04/04/19 12:03,"188 Cedar St, Atlanta, GA 30301" +193160,AAA Batteries (4-pack),1,2.99,04/10/19 07:36,"686 Maple St, Boston, MA 02215" +193161,34in Ultrawide Monitor,1,379.99,04/28/19 21:23,"823 Pine St, Atlanta, GA 30301" +193162,Flatscreen TV,1,300,04/29/19 11:20,"113 Ridge St, Los Angeles, CA 90001" +193163,LG Washing Machine,1,600.0,04/28/19 23:08,"612 Center St, Atlanta, GA 30301" +193164,AAA Batteries (4-pack),1,2.99,04/26/19 09:10,"319 Cedar St, Los Angeles, CA 90001" +193165,Bose SoundSport Headphones,1,99.99,04/25/19 18:19,"305 Sunset St, New York City, NY 10001" +193166,Wired Headphones,2,11.99,04/22/19 17:05,"450 Chestnut St, Dallas, TX 75001" +193167,27in 4K Gaming Monitor,1,389.99,04/05/19 19:12,"908 Lincoln St, San Francisco, CA 94016" +193168,Google Phone,1,600,04/11/19 21:37,"145 12th St, San Francisco, CA 94016" +193168,USB-C Charging Cable,1,11.95,04/11/19 21:37,"145 12th St, San Francisco, CA 94016" +193169,Flatscreen TV,1,300,04/13/19 11:32,"291 Meadow St, New York City, NY 10001" +193170,iPhone,1,700,04/02/19 18:07,"766 11th St, New York City, NY 10001" +193170,Wired Headphones,1,11.99,04/02/19 18:07,"766 11th St, New York City, NY 10001" +193171,Flatscreen TV,1,300,04/21/19 20:29,"850 Adams St, Seattle, WA 98101" +193172,20in Monitor,1,109.99,04/06/19 12:04,"229 Center St, Boston, MA 02215" +193173,27in 4K Gaming Monitor,1,389.99,04/11/19 09:58,"359 5th St, San Francisco, CA 94016" +193174,AAA Batteries (4-pack),2,2.99,04/17/19 08:17,"331 Madison St, Boston, MA 02215" +193175,Bose SoundSport Headphones,1,99.99,04/30/19 19:56,"88 Park St, Boston, MA 02215" +193176,Wired Headphones,1,11.99,04/12/19 23:39,"445 14th St, San Francisco, CA 94016" +193177,Bose SoundSport Headphones,1,99.99,04/05/19 10:59,"787 Park St, New York City, NY 10001" +193178,AA Batteries (4-pack),1,3.84,04/05/19 21:10,"9 West St, San Francisco, CA 94016" +193179,20in Monitor,1,109.99,04/14/19 14:04,"562 8th St, San Francisco, CA 94016" +193180,AAA Batteries (4-pack),1,2.99,04/19/19 12:20,"510 Park St, San Francisco, CA 94016" +193181,20in Monitor,1,109.99,04/21/19 20:14,"301 Jackson St, Seattle, WA 98101" +193182,AA Batteries (4-pack),1,3.84,04/30/19 12:05,"387 North St, Boston, MA 02215" +193183,27in FHD Monitor,1,149.99,04/06/19 16:04,"564 Maple St, Austin, TX 73301" +193184,Flatscreen TV,1,300,04/25/19 15:15,"411 Maple St, San Francisco, CA 94016" +193185,Flatscreen TV,1,300,04/26/19 14:46,"98 14th St, Austin, TX 73301" +193186,34in Ultrawide Monitor,1,379.99,04/27/19 13:39,"349 North St, Los Angeles, CA 90001" +193187,Lightning Charging Cable,1,14.95,04/08/19 18:53,"193 Park St, Los Angeles, CA 90001" +193188,AAA Batteries (4-pack),1,2.99,04/27/19 06:56,"959 4th St, Boston, MA 02215" +193189,USB-C Charging Cable,1,11.95,04/02/19 11:31,"591 2nd St, Los Angeles, CA 90001" +193190,Apple Airpods Headphones,1,150,04/01/19 19:51,"154 Willow St, Boston, MA 02215" +193191,USB-C Charging Cable,1,11.95,04/26/19 12:10,"637 9th St, New York City, NY 10001" +193192,27in 4K Gaming Monitor,1,389.99,04/09/19 00:54,"929 West St, Boston, MA 02215" +193193,Apple Airpods Headphones,1,150,04/11/19 15:09,"72 West St, Seattle, WA 98101" +193194,Apple Airpods Headphones,1,150,04/07/19 19:52,"351 14th St, Los Angeles, CA 90001" +193195,AAA Batteries (4-pack),2,2.99,04/26/19 10:55,"478 West St, Los Angeles, CA 90001" +193196,USB-C Charging Cable,2,11.95,04/24/19 01:34,"521 2nd St, Portland, OR 97035" +193197,Macbook Pro Laptop,1,1700,04/21/19 09:46,"137 Wilson St, San Francisco, CA 94016" +193198,Lightning Charging Cable,1,14.95,04/28/19 17:11,"320 River St, San Francisco, CA 94016" +193199,20in Monitor,1,109.99,04/30/19 20:07,"842 Jackson St, Boston, MA 02215" +193200,Google Phone,1,600,04/25/19 11:04,"514 Willow St, Seattle, WA 98101" +193201,Lightning Charging Cable,1,14.95,04/10/19 00:09,"134 13th St, New York City, NY 10001" +193202,iPhone,1,700,04/21/19 21:12,"455 14th St, New York City, NY 10001" +193202,Lightning Charging Cable,1,14.95,04/21/19 21:12,"455 14th St, New York City, NY 10001" +193203,iPhone,1,700,04/29/19 13:02,"881 6th St, Dallas, TX 75001" +193204,Bose SoundSport Headphones,1,99.99,04/12/19 11:13,"773 9th St, Portland, OR 97035" +193205,20in Monitor,1,109.99,04/02/19 12:22,"942 Chestnut St, Atlanta, GA 30301" +193206,AA Batteries (4-pack),1,3.84,04/13/19 22:50,"794 Hickory St, New York City, NY 10001" +193207,Apple Airpods Headphones,1,150,04/30/19 12:33,"438 Sunset St, Dallas, TX 75001" +193208,Wired Headphones,1,11.99,04/08/19 12:02,"662 Washington St, San Francisco, CA 94016" +193209,20in Monitor,1,109.99,04/19/19 20:17,"460 4th St, San Francisco, CA 94016" +193210,Google Phone,1,600,04/07/19 18:33,"229 Main St, Portland, OR 97035" +193211,Lightning Charging Cable,1,14.95,04/16/19 06:50,"369 Center St, San Francisco, CA 94016" +193212,USB-C Charging Cable,1,11.95,04/24/19 21:09,"530 Ridge St, San Francisco, CA 94016" +193213,Wired Headphones,1,11.99,04/17/19 17:22,"765 Hickory St, San Francisco, CA 94016" +193214,Macbook Pro Laptop,1,1700,04/06/19 20:57,"244 Chestnut St, San Francisco, CA 94016" +193215,ThinkPad Laptop,1,999.99,04/27/19 18:39,"393 12th St, Portland, ME 04101" +193216,AA Batteries (4-pack),1,3.84,04/29/19 10:17,"486 8th St, Austin, TX 73301" +193217,Apple Airpods Headphones,1,150,04/04/19 10:43,"704 4th St, Atlanta, GA 30301" +193218,AA Batteries (4-pack),1,3.84,04/10/19 05:22,"201 Madison St, New York City, NY 10001" +193219,Vareebadd Phone,1,400,04/19/19 09:28,"143 Main St, Los Angeles, CA 90001" +193219,Wired Headphones,1,11.99,04/19/19 09:28,"143 Main St, Los Angeles, CA 90001" +193220,AA Batteries (4-pack),2,3.84,04/10/19 14:07,"796 Elm St, Boston, MA 02215" +193221,AA Batteries (4-pack),1,3.84,04/23/19 20:36,"379 Jefferson St, New York City, NY 10001" +193222,AA Batteries (4-pack),1,3.84,04/17/19 21:08,"284 Ridge St, Boston, MA 02215" +193223,27in 4K Gaming Monitor,2,389.99,04/23/19 16:12,"281 Johnson St, San Francisco, CA 94016" +193224,Bose SoundSport Headphones,1,99.99,04/06/19 12:24,"518 12th St, Atlanta, GA 30301" +193225,Bose SoundSport Headphones,1,99.99,04/26/19 19:41,"628 Walnut St, Seattle, WA 98101" +193226,Apple Airpods Headphones,1,150,04/24/19 09:09,"152 North St, Los Angeles, CA 90001" +193227,iPhone,1,700,04/01/19 23:59,"87 Washington St, Atlanta, GA 30301" +193228,AAA Batteries (4-pack),1,2.99,04/09/19 23:15,"164 Lakeview St, Seattle, WA 98101" +193229,Google Phone,1,600,04/07/19 18:19,"251 South St, New York City, NY 10001" +193229,USB-C Charging Cable,1,11.95,04/07/19 18:19,"251 South St, New York City, NY 10001" +193230,Lightning Charging Cable,1,14.95,04/16/19 21:03,"545 6th St, Portland, OR 97035" +193231,Lightning Charging Cable,1,14.95,04/04/19 15:43,"21 Highland St, San Francisco, CA 94016" +193232,Wired Headphones,1,11.99,04/07/19 12:48,"521 Park St, Los Angeles, CA 90001" +193233,Macbook Pro Laptop,1,1700,04/18/19 14:43,"26 Chestnut St, San Francisco, CA 94016" +193234,AAA Batteries (4-pack),1,2.99,04/27/19 08:25,"933 Madison St, New York City, NY 10001" +193235,Lightning Charging Cable,1,14.95,04/01/19 18:58,"479 5th St, Los Angeles, CA 90001" +193236,Wired Headphones,1,11.99,04/24/19 13:39,"196 Church St, Los Angeles, CA 90001" +193237,34in Ultrawide Monitor,1,379.99,04/30/19 22:27,"247 Spruce St, New York City, NY 10001" +193238,27in 4K Gaming Monitor,1,389.99,04/17/19 12:18,"524 Meadow St, New York City, NY 10001" +193239,Wired Headphones,1,11.99,04/14/19 05:47,"939 Spruce St, New York City, NY 10001" +193240,AAA Batteries (4-pack),2,2.99,04/03/19 10:28,"174 Center St, San Francisco, CA 94016" +193241,USB-C Charging Cable,1,11.95,04/06/19 12:14,"978 Meadow St, Los Angeles, CA 90001" +193242,27in 4K Gaming Monitor,1,389.99,04/25/19 17:27,"167 4th St, Atlanta, GA 30301" +193243,AAA Batteries (4-pack),1,2.99,04/18/19 15:14,"118 2nd St, Seattle, WA 98101" +193243,Apple Airpods Headphones,1,150,04/18/19 15:14,"118 2nd St, Seattle, WA 98101" +193244,AA Batteries (4-pack),1,3.84,05/01/19 02:11,"544 Meadow St, Los Angeles, CA 90001" +193245,iPhone,1,700,04/20/19 17:35,"639 Spruce St, Seattle, WA 98101" +193246,Macbook Pro Laptop,1,1700,04/16/19 11:45,"752 Cedar St, Boston, MA 02215" +193247,AAA Batteries (4-pack),2,2.99,04/06/19 12:05,"898 4th St, San Francisco, CA 94016" +193248,Lightning Charging Cable,1,14.95,04/26/19 21:50,"96 Forest St, Atlanta, GA 30301" +193249,27in 4K Gaming Monitor,1,389.99,04/26/19 13:26,"626 Johnson St, Boston, MA 02215" +193250,ThinkPad Laptop,1,999.99,04/23/19 12:00,"874 Cedar St, Austin, TX 73301" +193251,AA Batteries (4-pack),1,3.84,04/23/19 07:36,"354 Chestnut St, San Francisco, CA 94016" +193252,iPhone,1,700,04/17/19 13:34,"703 Center St, Portland, OR 97035" +193252,Lightning Charging Cable,2,14.95,04/17/19 13:34,"703 Center St, Portland, OR 97035" +193252,Apple Airpods Headphones,1,150,04/17/19 13:34,"703 Center St, Portland, OR 97035" +193253,ThinkPad Laptop,1,999.99,04/16/19 10:59,"65 Madison St, Atlanta, GA 30301" +193254,20in Monitor,1,109.99,04/20/19 17:41,"31 2nd St, Austin, TX 73301" +193255,AA Batteries (4-pack),1,3.84,04/21/19 09:15,"910 West St, San Francisco, CA 94016" +193256,27in FHD Monitor,1,149.99,04/20/19 23:04,"516 Jefferson St, Boston, MA 02215" +193257,Bose SoundSport Headphones,1,99.99,04/25/19 18:51,"342 Cherry St, Boston, MA 02215" +193258,Wired Headphones,1,11.99,04/15/19 10:24,"525 Wilson St, New York City, NY 10001" +193259,Macbook Pro Laptop,1,1700,04/12/19 10:25,"361 Hickory St, Seattle, WA 98101" +193260,Bose SoundSport Headphones,1,99.99,04/24/19 13:03,"618 North St, Portland, OR 97035" +193261,AAA Batteries (4-pack),2,2.99,05/01/19 00:39,"505 Lakeview St, Portland, OR 97035" +193262,Lightning Charging Cable,1,14.95,04/20/19 14:08,"367 Jefferson St, Portland, OR 97035" +193263,Google Phone,1,600,04/12/19 12:08,"565 River St, Los Angeles, CA 90001" +193264,Apple Airpods Headphones,1,150,04/17/19 18:08,"398 11th St, Dallas, TX 75001" +193265,Macbook Pro Laptop,1,1700,04/14/19 08:49,"332 Chestnut St, Boston, MA 02215" +193266,Bose SoundSport Headphones,1,99.99,04/16/19 22:17,"727 13th St, San Francisco, CA 94016" +193267,iPhone,1,700,04/02/19 22:47,"992 Center St, Dallas, TX 75001" +193268,34in Ultrawide Monitor,1,379.99,04/06/19 14:58,"402 Park St, New York City, NY 10001" +193269,AA Batteries (4-pack),1,3.84,04/21/19 10:56,"832 2nd St, Los Angeles, CA 90001" +193270,Bose SoundSport Headphones,1,99.99,04/28/19 17:51,"550 Lakeview St, New York City, NY 10001" +193271,Apple Airpods Headphones,1,150,04/21/19 09:33,"341 Wilson St, Dallas, TX 75001" +193272,USB-C Charging Cable,1,11.95,04/24/19 13:22,"235 10th St, Austin, TX 73301" +193273,Macbook Pro Laptop,1,1700,04/16/19 10:50,"904 2nd St, Seattle, WA 98101" +193274,Google Phone,1,600,04/28/19 14:12,"716 West St, Dallas, TX 75001" +193275,Vareebadd Phone,1,400,04/12/19 16:52,"485 1st St, New York City, NY 10001" +193275,Wired Headphones,1,11.99,04/12/19 16:52,"485 1st St, New York City, NY 10001" +193276,27in FHD Monitor,1,149.99,04/11/19 10:02,"376 7th St, Dallas, TX 75001" +193277,AA Batteries (4-pack),2,3.84,04/29/19 12:08,"717 Adams St, Los Angeles, CA 90001" +193278,Wired Headphones,2,11.99,04/15/19 13:43,"463 Spruce St, Dallas, TX 75001" +193279,USB-C Charging Cable,2,11.95,04/23/19 12:36,"324 North St, Seattle, WA 98101" +193280,27in FHD Monitor,1,149.99,04/12/19 16:27,"408 Maple St, Boston, MA 02215" +193281,Wired Headphones,1,11.99,04/02/19 06:53,"408 Park St, Austin, TX 73301" +193282,Flatscreen TV,1,300,04/16/19 20:12,"260 Willow St, Boston, MA 02215" +193283,34in Ultrawide Monitor,1,379.99,04/04/19 17:33,"869 7th St, New York City, NY 10001" +193283,Bose SoundSport Headphones,1,99.99,04/04/19 17:33,"869 7th St, New York City, NY 10001" +193284,AA Batteries (4-pack),1,3.84,04/26/19 06:44,"933 7th St, San Francisco, CA 94016" +193285,Wired Headphones,1,11.99,04/30/19 13:03,"465 13th St, San Francisco, CA 94016" +193286,20in Monitor,1,109.99,04/26/19 21:36,"978 Meadow St, Los Angeles, CA 90001" +193287,Wired Headphones,1,11.99,04/22/19 23:24,"717 8th St, New York City, NY 10001" +193288,USB-C Charging Cable,2,11.95,04/16/19 16:31,"4 North St, Los Angeles, CA 90001" +193289,Apple Airpods Headphones,1,150,04/20/19 19:27,"401 Lakeview St, New York City, NY 10001" +193290,AAA Batteries (4-pack),3,2.99,04/01/19 17:18,"115 Hickory St, San Francisco, CA 94016" +193291,USB-C Charging Cable,1,11.95,04/16/19 13:52,"115 12th St, Los Angeles, CA 90001" +193292,Macbook Pro Laptop,1,1700,04/05/19 13:53,"608 Elm St, Portland, OR 97035" +193293,34in Ultrawide Monitor,1,379.99,04/22/19 17:13,"431 Sunset St, San Francisco, CA 94016" +193294,AA Batteries (4-pack),2,3.84,04/02/19 15:15,"540 Park St, Los Angeles, CA 90001" +193295,Apple Airpods Headphones,1,150,04/08/19 16:10,"281 Ridge St, Los Angeles, CA 90001" +193296,Wired Headphones,1,11.99,04/12/19 11:25,"6 8th St, Boston, MA 02215" +193297,Lightning Charging Cable,1,14.95,04/20/19 10:04,"104 North St, Boston, MA 02215" +193298,Macbook Pro Laptop,1,1700,04/24/19 03:37,"494 Jackson St, Atlanta, GA 30301" +193299,AA Batteries (4-pack),1,3.84,04/30/19 12:15,"731 Madison St, Los Angeles, CA 90001" +193300,Flatscreen TV,1,300,04/01/19 21:38,"633 Lakeview St, San Francisco, CA 94016" +193301,27in 4K Gaming Monitor,1,389.99,04/13/19 18:59,"861 Maple St, Los Angeles, CA 90001" +193302,Flatscreen TV,1,300,04/15/19 18:19,"529 Pine St, Seattle, WA 98101" +193303,Bose SoundSport Headphones,2,99.99,04/18/19 00:55,"529 Cedar St, Seattle, WA 98101" +193304,Lightning Charging Cable,1,14.95,04/24/19 12:17,"639 Adams St, Seattle, WA 98101" +193305,AA Batteries (4-pack),1,3.84,04/25/19 08:02,"130 Hickory St, Atlanta, GA 30301" +193306,Lightning Charging Cable,1,14.95,04/18/19 21:55,"184 Adams St, Atlanta, GA 30301" +193307,Lightning Charging Cable,1,14.95,04/10/19 12:12,"745 North St, Seattle, WA 98101" +193308,27in 4K Gaming Monitor,1,389.99,04/04/19 12:47,"909 Hill St, San Francisco, CA 94016" +193309,Vareebadd Phone,1,400,04/28/19 18:34,"765 Hill St, Boston, MA 02215" +193309,USB-C Charging Cable,1,11.95,04/28/19 18:34,"765 Hill St, Boston, MA 02215" +193310,USB-C Charging Cable,1,11.95,04/03/19 16:53,"872 Lake St, Dallas, TX 75001" +193311,Lightning Charging Cable,1,14.95,04/10/19 07:37,"46 7th St, Boston, MA 02215" +193312,Bose SoundSport Headphones,1,99.99,04/04/19 19:48,"969 Maple St, New York City, NY 10001" +193313,Lightning Charging Cable,1,14.95,04/27/19 20:56,"326 Cherry St, Los Angeles, CA 90001" +193314,AA Batteries (4-pack),1,3.84,04/20/19 11:00,"977 Jackson St, San Francisco, CA 94016" +193315,27in 4K Gaming Monitor,1,389.99,04/11/19 07:42,"435 Sunset St, Portland, ME 04101" +193316,Wired Headphones,1,11.99,04/07/19 21:48,"538 Church St, San Francisco, CA 94016" +193317,Lightning Charging Cable,1,14.95,04/10/19 23:06,"19 Park St, San Francisco, CA 94016" +193318,Apple Airpods Headphones,1,150,04/26/19 11:18,"884 Hickory St, Dallas, TX 75001" +193319,Lightning Charging Cable,1,14.95,04/20/19 13:02,"638 Spruce St, Boston, MA 02215" +193320,Flatscreen TV,1,300,04/24/19 23:45,"464 North St, Portland, OR 97035" +193321,27in 4K Gaming Monitor,1,389.99,04/16/19 20:31,"243 Walnut St, San Francisco, CA 94016" +193322,27in 4K Gaming Monitor,1,389.99,04/08/19 17:06,"760 Meadow St, Seattle, WA 98101" +193323,Flatscreen TV,1,300,04/22/19 12:35,"559 Lake St, Boston, MA 02215" +193324,AAA Batteries (4-pack),2,2.99,04/24/19 07:49,"246 5th St, New York City, NY 10001" +193325,Bose SoundSport Headphones,1,99.99,04/29/19 11:00,"309 Chestnut St, Portland, ME 04101" +193326,USB-C Charging Cable,1,11.95,04/08/19 05:07,"338 9th St, Los Angeles, CA 90001" +193327,Google Phone,1,600,04/25/19 14:48,"861 14th St, New York City, NY 10001" +,,,,, +193328,27in 4K Gaming Monitor,1,389.99,04/14/19 22:38,"871 5th St, San Francisco, CA 94016" +193329,USB-C Charging Cable,1,11.95,04/28/19 10:55,"647 Cedar St, Los Angeles, CA 90001" +193330,27in 4K Gaming Monitor,1,389.99,04/18/19 15:46,"488 Washington St, Seattle, WA 98101" +193331,AAA Batteries (4-pack),2,2.99,04/05/19 18:43,"310 2nd St, Austin, TX 73301" +193332,USB-C Charging Cable,1,11.95,04/19/19 21:29,"4 Hickory St, Boston, MA 02215" +193333,Flatscreen TV,1,300,04/17/19 11:24,"291 North St, Los Angeles, CA 90001" +193334,34in Ultrawide Monitor,1,379.99,04/20/19 09:28,"692 Jefferson St, New York City, NY 10001" +193335,Lightning Charging Cable,1,14.95,04/13/19 21:09,"907 Jackson St, Seattle, WA 98101" +193336,Wired Headphones,1,11.99,04/08/19 13:25,"178 8th St, San Francisco, CA 94016" +193337,Apple Airpods Headphones,1,150,04/28/19 23:34,"638 Church St, New York City, NY 10001" +193338,Lightning Charging Cable,1,14.95,04/06/19 18:22,"323 6th St, New York City, NY 10001" +193339,AA Batteries (4-pack),2,3.84,04/02/19 23:41,"690 Cherry St, Los Angeles, CA 90001" +193340,Wired Headphones,1,11.99,04/05/19 14:13,"384 Forest St, Atlanta, GA 30301" +193341,Apple Airpods Headphones,1,150,04/14/19 20:12,"446 Chestnut St, San Francisco, CA 94016" +193342,AAA Batteries (4-pack),3,2.99,04/07/19 18:38,"607 Main St, Boston, MA 02215" +193342,Apple Airpods Headphones,1,150,04/07/19 18:38,"607 Main St, Boston, MA 02215" +193343,USB-C Charging Cable,1,11.95,04/20/19 11:36,"385 5th St, San Francisco, CA 94016" +193344,AA Batteries (4-pack),1,3.84,04/12/19 17:25,"302 Hickory St, Portland, OR 97035" +193345,Apple Airpods Headphones,1,150,04/06/19 14:55,"683 13th St, Boston, MA 02215" +193346,27in 4K Gaming Monitor,1,389.99,04/28/19 10:32,"813 Hill St, Portland, OR 97035" +193347,Apple Airpods Headphones,1,150,04/22/19 12:26,"405 Hill St, New York City, NY 10001" +193348,AA Batteries (4-pack),1,3.84,04/10/19 14:03,"246 Forest St, New York City, NY 10001" +193349,USB-C Charging Cable,1,11.95,04/25/19 09:24,"667 4th St, San Francisco, CA 94016" +193350,34in Ultrawide Monitor,1,379.99,04/26/19 22:35,"519 Lakeview St, San Francisco, CA 94016" +193351,AA Batteries (4-pack),1,3.84,04/20/19 16:46,"550 Dogwood St, Portland, OR 97035" +193352,Google Phone,1,600,04/27/19 22:04,"203 Jackson St, Austin, TX 73301" +193353,27in 4K Gaming Monitor,1,389.99,04/22/19 21:28,"535 8th St, Los Angeles, CA 90001" +193354,Apple Airpods Headphones,1,150,04/19/19 12:14,"87 Church St, Portland, OR 97035" +193355,27in 4K Gaming Monitor,1,389.99,04/18/19 13:52,"137 Adams St, Atlanta, GA 30301" +193356,Google Phone,1,600,04/03/19 10:15,"322 Jefferson St, San Francisco, CA 94016" +193356,USB-C Charging Cable,1,11.95,04/03/19 10:15,"322 Jefferson St, San Francisco, CA 94016" +193356,Bose SoundSport Headphones,1,99.99,04/03/19 10:15,"322 Jefferson St, San Francisco, CA 94016" +193356,Wired Headphones,1,11.99,04/03/19 10:15,"322 Jefferson St, San Francisco, CA 94016" +193357,20in Monitor,1,109.99,04/28/19 23:30,"887 Maple St, Austin, TX 73301" +193358,34in Ultrawide Monitor,1,379.99,04/28/19 21:56,"876 South St, San Francisco, CA 94016" +193359,AA Batteries (4-pack),1,3.84,04/10/19 18:36,"173 14th St, Portland, OR 97035" +193360,27in 4K Gaming Monitor,1,389.99,04/29/19 22:43,"740 Lake St, San Francisco, CA 94016" +193361,Macbook Pro Laptop,1,1700,04/24/19 07:38,"478 Spruce St, San Francisco, CA 94016" +193362,Wired Headphones,1,11.99,04/28/19 12:45,"898 9th St, Portland, ME 04101" +193363,27in 4K Gaming Monitor,1,389.99,04/24/19 20:40,"676 Dogwood St, Portland, OR 97035" +193364,AA Batteries (4-pack),2,3.84,04/05/19 02:55,"195 Willow St, Austin, TX 73301" +193365,Wired Headphones,1,11.99,04/22/19 17:55,"604 Dogwood St, Portland, OR 97035" +193366,Wired Headphones,1,11.99,04/25/19 18:57,"544 Madison St, Austin, TX 73301" +193367,Google Phone,1,600,04/07/19 13:03,"563 Lake St, Portland, OR 97035" +193368,Bose SoundSport Headphones,1,99.99,04/01/19 19:30,"294 Ridge St, Boston, MA 02215" +193369,AA Batteries (4-pack),1,3.84,04/11/19 18:43,"242 8th St, Los Angeles, CA 90001" +193370,Bose SoundSport Headphones,1,99.99,04/26/19 09:22,"493 Dogwood St, Los Angeles, CA 90001" +193371,USB-C Charging Cable,1,11.95,04/01/19 22:28,"918 6th St, Dallas, TX 75001" +193372,Wired Headphones,1,11.99,04/26/19 09:34,"135 Spruce St, San Francisco, CA 94016" +193373,AAA Batteries (4-pack),1,2.99,04/08/19 06:06,"213 Center St, San Francisco, CA 94016" +193374,Lightning Charging Cable,1,14.95,04/04/19 13:55,"156 South St, Dallas, TX 75001" +193375,AAA Batteries (4-pack),2,2.99,04/30/19 00:08,"395 Highland St, San Francisco, CA 94016" +193376,20in Monitor,1,109.99,04/17/19 19:15,"219 West St, San Francisco, CA 94016" +193377,USB-C Charging Cable,1,11.95,04/15/19 19:51,"520 River St, Boston, MA 02215" +193378,Lightning Charging Cable,1,14.95,04/29/19 09:48,"41 Forest St, San Francisco, CA 94016" +193379,Lightning Charging Cable,1,14.95,04/05/19 19:10,"797 Dogwood St, Boston, MA 02215" +193380,AA Batteries (4-pack),1,3.84,04/30/19 14:14,"494 Cherry St, Dallas, TX 75001" +193381,USB-C Charging Cable,1,11.95,04/06/19 16:08,"575 8th St, Boston, MA 02215" +193382,Apple Airpods Headphones,1,150,04/24/19 16:37,"348 River St, New York City, NY 10001" +193383,Lightning Charging Cable,1,14.95,04/11/19 09:42,"363 13th St, Boston, MA 02215" +193384,USB-C Charging Cable,2,11.95,04/08/19 13:11,"160 7th St, San Francisco, CA 94016" +193385,USB-C Charging Cable,1,11.95,04/04/19 13:46,"555 2nd St, Los Angeles, CA 90001" +193386,USB-C Charging Cable,1,11.95,04/04/19 15:36,"976 Madison St, Portland, OR 97035" +193387,AAA Batteries (4-pack),2,2.99,04/24/19 11:19,"702 11th St, Portland, OR 97035" +193388,AA Batteries (4-pack),3,3.84,04/04/19 21:19,"458 Washington St, Los Angeles, CA 90001" +193389,Wired Headphones,1,11.99,04/06/19 15:31,"412 7th St, San Francisco, CA 94016" +193390,AA Batteries (4-pack),2,3.84,04/01/19 08:46,"983 Cedar St, Los Angeles, CA 90001" +193391,Wired Headphones,1,11.99,04/11/19 21:30,"185 Spruce St, San Francisco, CA 94016" +193392,ThinkPad Laptop,1,999.99,04/18/19 20:20,"892 Highland St, Dallas, TX 75001" +193393,Apple Airpods Headphones,1,150,04/28/19 23:49,"561 Johnson St, Atlanta, GA 30301" +193394,USB-C Charging Cable,1,11.95,04/16/19 16:48,"522 Pine St, New York City, NY 10001" +193395,USB-C Charging Cable,1,11.95,04/10/19 18:42,"356 Maple St, Los Angeles, CA 90001" +193396,AAA Batteries (4-pack),1,2.99,04/18/19 19:22,"159 13th St, San Francisco, CA 94016" +193397,Wired Headphones,1,11.99,04/18/19 15:50,"724 4th St, Boston, MA 02215" +193398,iPhone,1,700,04/10/19 18:18,"516 Lincoln St, Dallas, TX 75001" +193399,34in Ultrawide Monitor,1,379.99,04/05/19 11:58,"562 5th St, New York City, NY 10001" +193400,Google Phone,1,600,04/18/19 11:30,"777 Willow St, New York City, NY 10001" +193400,Wired Headphones,1,11.99,04/18/19 11:30,"777 Willow St, New York City, NY 10001" +193401,AA Batteries (4-pack),1,3.84,04/02/19 17:24,"126 Main St, San Francisco, CA 94016" +193402,AA Batteries (4-pack),1,3.84,04/27/19 20:10,"992 Washington St, San Francisco, CA 94016" +193403,27in 4K Gaming Monitor,1,389.99,04/20/19 19:15,"433 6th St, San Francisco, CA 94016" +193404,Bose SoundSport Headphones,1,99.99,04/04/19 22:13,"441 Highland St, Los Angeles, CA 90001" +193405,AA Batteries (4-pack),1,3.84,04/13/19 08:21,"122 Forest St, San Francisco, CA 94016" +193405,20in Monitor,1,109.99,04/13/19 08:21,"122 Forest St, San Francisco, CA 94016" +193406,Apple Airpods Headphones,1,150,04/07/19 01:43,"98 Jefferson St, Portland, OR 97035" +193407,Bose SoundSport Headphones,1,99.99,04/10/19 13:09,"551 Cherry St, Boston, MA 02215" +193408,AAA Batteries (4-pack),1,2.99,04/15/19 13:55,"23 2nd St, Portland, ME 04101" +193409,USB-C Charging Cable,1,11.95,04/17/19 15:58,"803 Cedar St, Dallas, TX 75001" +193410,Wired Headphones,2,11.99,04/22/19 18:46,"292 Pine St, New York City, NY 10001" +193411,AAA Batteries (4-pack),1,2.99,04/03/19 23:51,"987 13th St, Atlanta, GA 30301" +193411,Lightning Charging Cable,1,14.95,04/03/19 23:51,"987 13th St, Atlanta, GA 30301" +193412,Lightning Charging Cable,1,14.95,04/10/19 08:33,"481 Jefferson St, Portland, ME 04101" +193413,Bose SoundSport Headphones,1,99.99,04/05/19 21:57,"427 Lakeview St, Boston, MA 02215" +193414,Lightning Charging Cable,1,14.95,04/03/19 15:14,"652 Lake St, New York City, NY 10001" +193415,USB-C Charging Cable,1,11.95,04/28/19 14:27,"949 10th St, Dallas, TX 75001" +193416,Wired Headphones,1,11.99,04/05/19 12:50,"733 Maple St, New York City, NY 10001" +193417,USB-C Charging Cable,2,11.95,04/09/19 22:00,"58 Elm St, Los Angeles, CA 90001" +193418,AA Batteries (4-pack),1,3.84,04/18/19 13:51,"269 10th St, Austin, TX 73301" +193419,Google Phone,1,600,04/01/19 10:37,"129 North St, Los Angeles, CA 90001" +193420,AAA Batteries (4-pack),1,2.99,04/05/19 16:30,"49 2nd St, Boston, MA 02215" +193421,AAA Batteries (4-pack),1,2.99,04/30/19 18:34,"354 Jackson St, San Francisco, CA 94016" +193422,Apple Airpods Headphones,1,150,04/17/19 22:01,"732 Dogwood St, New York City, NY 10001" +193423,Lightning Charging Cable,1,14.95,04/16/19 15:20,"116 Dogwood St, Seattle, WA 98101" +193424,Lightning Charging Cable,1,14.95,04/14/19 16:29,"763 West St, Portland, OR 97035" +193425,Bose SoundSport Headphones,1,99.99,04/12/19 16:01,"348 Lincoln St, San Francisco, CA 94016" +193426,Apple Airpods Headphones,1,150,04/06/19 00:01,"671 9th St, Atlanta, GA 30301" +193427,AAA Batteries (4-pack),2,2.99,04/15/19 01:06,"888 Chestnut St, Seattle, WA 98101" +193428,iPhone,1,700,04/23/19 19:37,"209 Dogwood St, Atlanta, GA 30301" +193429,Wired Headphones,1,11.99,04/01/19 21:34,"105 Hill St, Atlanta, GA 30301" +193430,Wired Headphones,1,11.99,04/29/19 16:45,"123 Lincoln St, Los Angeles, CA 90001" +193431,AA Batteries (4-pack),3,3.84,04/20/19 15:19,"657 Jackson St, Portland, OR 97035" +193432,AAA Batteries (4-pack),1,2.99,04/15/19 10:50,"881 2nd St, New York City, NY 10001" +193433,Apple Airpods Headphones,1,150,04/12/19 00:15,"344 10th St, New York City, NY 10001" +193434,USB-C Charging Cable,1,11.95,04/03/19 01:19,"18 Lake St, New York City, NY 10001" +193435,AA Batteries (4-pack),1,3.84,04/13/19 17:04,"334 Lincoln St, San Francisco, CA 94016" +193436,Wired Headphones,1,11.99,04/10/19 13:00,"86 Lakeview St, San Francisco, CA 94016" +193437,AA Batteries (4-pack),1,3.84,04/06/19 09:31,"301 Highland St, Seattle, WA 98101" +193438,AAA Batteries (4-pack),1,2.99,04/29/19 14:33,"716 Lake St, San Francisco, CA 94016" +193439,27in 4K Gaming Monitor,1,389.99,04/09/19 00:56,"741 12th St, Portland, ME 04101" +193440,Wired Headphones,1,11.99,04/11/19 11:41,"542 Maple St, San Francisco, CA 94016" +193441,Vareebadd Phone,1,400,04/19/19 13:54,"882 Jackson St, Los Angeles, CA 90001" +193441,USB-C Charging Cable,1,11.95,04/19/19 13:54,"882 Jackson St, Los Angeles, CA 90001" +193442,AAA Batteries (4-pack),3,2.99,04/20/19 12:13,"101 South St, San Francisco, CA 94016" +193443,Bose SoundSport Headphones,1,99.99,04/17/19 08:56,"744 9th St, Los Angeles, CA 90001" +193444,34in Ultrawide Monitor,1,379.99,04/24/19 15:11,"844 Cedar St, Los Angeles, CA 90001" +193445,Apple Airpods Headphones,1,150,04/10/19 20:33,"31 Chestnut St, Boston, MA 02215" +193446,USB-C Charging Cable,1,11.95,04/21/19 01:25,"619 Park St, Boston, MA 02215" +193447,USB-C Charging Cable,1,11.95,04/14/19 21:44,"460 Main St, Dallas, TX 75001" +193448,ThinkPad Laptop,1,999.99,04/25/19 17:38,"968 Jefferson St, San Francisco, CA 94016" +193449,AA Batteries (4-pack),1,3.84,04/19/19 12:55,"131 9th St, Los Angeles, CA 90001" +193450,Bose SoundSport Headphones,1,99.99,04/22/19 01:04,"755 1st St, Los Angeles, CA 90001" +193451,Bose SoundSport Headphones,1,99.99,04/24/19 18:32,"710 Ridge St, Atlanta, GA 30301" +193452,20in Monitor,1,109.99,04/07/19 18:53,"914 8th St, Austin, TX 73301" +193453,Apple Airpods Headphones,1,150,04/17/19 12:32,"917 Chestnut St, New York City, NY 10001" +193454,Google Phone,1,600,04/01/19 19:07,"359 Church St, San Francisco, CA 94016" +193455,Wired Headphones,1,11.99,04/26/19 15:47,"54 13th St, San Francisco, CA 94016" +193456,USB-C Charging Cable,1,11.95,04/13/19 00:29,"786 Pine St, Atlanta, GA 30301" +193457,27in 4K Gaming Monitor,1,389.99,04/27/19 12:54,"897 Church St, Los Angeles, CA 90001" +193458,AAA Batteries (4-pack),1,2.99,04/14/19 12:32,"651 Cedar St, Atlanta, GA 30301" +193459,LG Washing Machine,1,600.0,04/18/19 13:53,"301 Maple St, San Francisco, CA 94016" +193460,27in 4K Gaming Monitor,1,389.99,04/01/19 15:56,"855 Ridge St, Atlanta, GA 30301" +193461,Bose SoundSport Headphones,1,99.99,04/11/19 11:17,"24 9th St, New York City, NY 10001" +193462,Lightning Charging Cable,2,14.95,04/27/19 21:30,"400 Ridge St, Boston, MA 02215" +193463,Wired Headphones,1,11.99,04/19/19 18:20,"978 Dogwood St, Austin, TX 73301" +193464,27in FHD Monitor,1,149.99,04/30/19 17:39,"427 Park St, Los Angeles, CA 90001" +193465,Flatscreen TV,1,300,04/03/19 17:02,"558 9th St, Boston, MA 02215" +193466,AAA Batteries (4-pack),1,2.99,04/11/19 09:34,"761 Cherry St, Los Angeles, CA 90001" +193467,Bose SoundSport Headphones,1,99.99,04/07/19 21:14,"856 West St, New York City, NY 10001" +193468,27in 4K Gaming Monitor,1,389.99,04/09/19 15:38,"850 Lake St, Los Angeles, CA 90001" +193469,Lightning Charging Cable,1,14.95,04/21/19 15:43,"389 North St, Atlanta, GA 30301" +193470,Google Phone,1,600,04/17/19 21:15,"14 8th St, Boston, MA 02215" +193471,Apple Airpods Headphones,1,150,04/21/19 15:10,"685 Meadow St, Boston, MA 02215" +193472,USB-C Charging Cable,1,11.95,04/17/19 06:41,"64 Church St, New York City, NY 10001" +193473,AA Batteries (4-pack),1,3.84,04/02/19 19:52,"59 Pine St, Los Angeles, CA 90001" +193474,AA Batteries (4-pack),1,3.84,04/18/19 20:44,"810 Lake St, Dallas, TX 75001" +193475,AA Batteries (4-pack),1,3.84,04/05/19 21:23,"292 4th St, New York City, NY 10001" +193476,Lightning Charging Cable,1,14.95,04/07/19 13:43,"617 North St, Los Angeles, CA 90001" +193477,USB-C Charging Cable,1,11.95,04/07/19 01:31,"80 5th St, Dallas, TX 75001" +193478,Lightning Charging Cable,1,14.95,04/23/19 21:36,"943 14th St, San Francisco, CA 94016" +193479,Flatscreen TV,1,300,04/09/19 16:06,"767 Chestnut St, Los Angeles, CA 90001" +193480,USB-C Charging Cable,1,11.95,04/23/19 20:49,"280 Madison St, Boston, MA 02215" +193481,iPhone,1,700,04/23/19 23:37,"927 14th St, Dallas, TX 75001" +193481,Lightning Charging Cable,1,14.95,04/23/19 23:37,"927 14th St, Dallas, TX 75001" +193481,Wired Headphones,1,11.99,04/23/19 23:37,"927 14th St, Dallas, TX 75001" +193482,USB-C Charging Cable,2,11.95,04/18/19 21:00,"583 West St, Los Angeles, CA 90001" +193483,34in Ultrawide Monitor,1,379.99,04/11/19 21:48,"261 Cedar St, Boston, MA 02215" +193484,ThinkPad Laptop,1,999.99,04/20/19 12:55,"603 Maple St, Los Angeles, CA 90001" +193485,34in Ultrawide Monitor,1,379.99,04/20/19 12:02,"880 Walnut St, Los Angeles, CA 90001" +193486,USB-C Charging Cable,1,11.95,04/30/19 12:52,"450 2nd St, San Francisco, CA 94016" +193487,27in FHD Monitor,1,149.99,04/06/19 11:46,"632 Forest St, San Francisco, CA 94016" +193488,27in FHD Monitor,1,149.99,04/17/19 12:25,"511 Washington St, New York City, NY 10001" +193489,Wired Headphones,1,11.99,04/05/19 20:14,"199 Maple St, Seattle, WA 98101" +193490,Lightning Charging Cable,1,14.95,04/28/19 12:30,"966 Lincoln St, Austin, TX 73301" +193491,Macbook Pro Laptop,1,1700,04/08/19 12:20,"74 Highland St, Seattle, WA 98101" +193492,USB-C Charging Cable,1,11.95,04/27/19 10:50,"227 Dogwood St, Los Angeles, CA 90001" +193493,Lightning Charging Cable,1,14.95,04/07/19 17:22,"241 Lake St, Boston, MA 02215" +193494,Apple Airpods Headphones,1,150,04/03/19 13:09,"897 Elm St, Boston, MA 02215" +193494,Apple Airpods Headphones,1,150,04/03/19 13:09,"897 Elm St, Boston, MA 02215" +193495,AA Batteries (4-pack),1,3.84,04/10/19 23:41,"791 Lake St, Boston, MA 02215" +193496,Apple Airpods Headphones,1,150,04/20/19 16:59,"60 Main St, New York City, NY 10001" +193497,Flatscreen TV,1,300,04/13/19 10:11,"182 Church St, Los Angeles, CA 90001" +193497,Apple Airpods Headphones,1,150,04/13/19 10:11,"182 Church St, Los Angeles, CA 90001" +193498,AAA Batteries (4-pack),2,2.99,04/04/19 12:22,"382 13th St, San Francisco, CA 94016" +193499,Apple Airpods Headphones,1,150,04/30/19 21:01,"245 Elm St, Boston, MA 02215" +193500,AAA Batteries (4-pack),2,2.99,04/09/19 20:20,"211 Park St, Dallas, TX 75001" +193501,AAA Batteries (4-pack),1,2.99,04/26/19 14:00,"461 Maple St, New York City, NY 10001" +193502,Wired Headphones,1,11.99,04/05/19 15:43,"196 Lake St, San Francisco, CA 94016" +193503,LG Washing Machine,1,600.0,04/10/19 11:48,"703 Willow St, Los Angeles, CA 90001" +193504,Lightning Charging Cable,1,14.95,04/13/19 21:48,"425 1st St, Seattle, WA 98101" +193505,AA Batteries (4-pack),1,3.84,04/14/19 13:33,"905 Pine St, Los Angeles, CA 90001" +193506,Wired Headphones,1,11.99,04/22/19 12:52,"356 Jackson St, Dallas, TX 75001" +193507,iPhone,1,700,04/23/19 11:10,"682 Johnson St, New York City, NY 10001" +193508,Lightning Charging Cable,1,14.95,04/09/19 10:41,"792 5th St, Atlanta, GA 30301" +193509,Google Phone,1,600,04/10/19 21:05,"390 Madison St, San Francisco, CA 94016" +193510,Bose SoundSport Headphones,1,99.99,04/05/19 15:29,"913 Pine St, New York City, NY 10001" +193511,AA Batteries (4-pack),1,3.84,04/11/19 18:50,"861 Washington St, San Francisco, CA 94016" +193512,AAA Batteries (4-pack),1,2.99,04/12/19 09:58,"729 Spruce St, New York City, NY 10001" +193513,Macbook Pro Laptop,1,1700,04/12/19 18:04,"26 14th St, San Francisco, CA 94016" +193514,Macbook Pro Laptop,1,1700,04/12/19 09:51,"731 Jackson St, Seattle, WA 98101" +193515,AAA Batteries (4-pack),1,2.99,04/08/19 15:00,"984 Highland St, Los Angeles, CA 90001" +193516,Macbook Pro Laptop,1,1700,04/10/19 13:35,"163 10th St, Portland, OR 97035" +193517,Google Phone,1,600,04/22/19 17:12,"151 Jackson St, San Francisco, CA 94016" +193518,AA Batteries (4-pack),1,3.84,04/21/19 18:48,"932 Spruce St, New York City, NY 10001" +193519,ThinkPad Laptop,1,999.99,04/24/19 11:49,"249 Main St, Dallas, TX 75001" +193520,AAA Batteries (4-pack),3,2.99,04/01/19 18:09,"946 Cedar St, Dallas, TX 75001" +193521,Wired Headphones,1,11.99,04/06/19 13:15,"31 5th St, Atlanta, GA 30301" +193522,Bose SoundSport Headphones,1,99.99,04/23/19 00:04,"399 2nd St, New York City, NY 10001" +193523,Macbook Pro Laptop,1,1700,04/16/19 10:42,"69 Hill St, New York City, NY 10001" +193524,Vareebadd Phone,1,400,04/07/19 20:26,"194 Adams St, Portland, OR 97035" +193525,AA Batteries (4-pack),3,3.84,04/29/19 05:25,"707 Cherry St, San Francisco, CA 94016" +193526,Wired Headphones,2,11.99,04/14/19 19:06,"522 Hickory St, New York City, NY 10001" +193527,ThinkPad Laptop,1,999.99,04/06/19 13:48,"448 Park St, Austin, TX 73301" +193528,USB-C Charging Cable,1,11.95,04/25/19 13:13,"738 11th St, Seattle, WA 98101" +193529,Google Phone,1,600,04/05/19 07:46,"187 Meadow St, Boston, MA 02215" +193530,AAA Batteries (4-pack),1,2.99,04/10/19 23:40,"763 Sunset St, New York City, NY 10001" +193531,20in Monitor,1,109.99,04/27/19 22:20,"476 Willow St, Los Angeles, CA 90001" +193532,Lightning Charging Cable,1,14.95,04/20/19 21:46,"12 South St, Austin, TX 73301" +193533,Lightning Charging Cable,1,14.95,04/01/19 09:46,"605 Cedar St, San Francisco, CA 94016" +193534,Apple Airpods Headphones,1,150,04/13/19 11:51,"811 9th St, Portland, OR 97035" +193535,Lightning Charging Cable,1,14.95,04/09/19 18:19,"727 8th St, San Francisco, CA 94016" +193536,Flatscreen TV,1,300,04/04/19 11:56,"149 8th St, Portland, OR 97035" +193537,AA Batteries (4-pack),1,3.84,04/25/19 06:40,"947 Sunset St, Los Angeles, CA 90001" +193538,AA Batteries (4-pack),2,3.84,04/25/19 11:24,"68 Madison St, San Francisco, CA 94016" +193539,Apple Airpods Headphones,1,150,04/28/19 11:21,"904 Hickory St, San Francisco, CA 94016" +193540,AA Batteries (4-pack),1,3.84,04/29/19 20:38,"886 7th St, San Francisco, CA 94016" +193541,AA Batteries (4-pack),2,3.84,04/20/19 15:26,"876 Jackson St, New York City, NY 10001" +193542,Lightning Charging Cable,1,14.95,04/18/19 08:52,"731 Jefferson St, New York City, NY 10001" +193543,27in FHD Monitor,1,149.99,04/17/19 15:25,"75 Hickory St, New York City, NY 10001" +193544,Apple Airpods Headphones,1,150,04/29/19 14:32,"140 11th St, San Francisco, CA 94016" +193545,AA Batteries (4-pack),1,3.84,04/14/19 22:16,"182 Chestnut St, Portland, OR 97035" +193546,AAA Batteries (4-pack),1,2.99,04/23/19 16:16,"124 Willow St, Los Angeles, CA 90001" +193547,20in Monitor,1,109.99,04/03/19 22:23,"519 Sunset St, San Francisco, CA 94016" +193548,AA Batteries (4-pack),2,3.84,04/01/19 10:51,"651 Willow St, Boston, MA 02215" +193549,AAA Batteries (4-pack),2,2.99,04/02/19 15:49,"407 South St, Boston, MA 02215" +193550,USB-C Charging Cable,1,11.95,04/23/19 15:33,"438 13th St, Los Angeles, CA 90001" +193551,27in FHD Monitor,1,149.99,04/18/19 15:13,"413 Lake St, New York City, NY 10001" +193552,Wired Headphones,1,11.99,04/26/19 08:52,"335 Forest St, San Francisco, CA 94016" +193553,Google Phone,1,600,04/19/19 09:29,"517 Walnut St, San Francisco, CA 94016" +193554,34in Ultrawide Monitor,1,379.99,04/22/19 03:45,"324 Madison St, New York City, NY 10001" +193555,34in Ultrawide Monitor,1,379.99,04/01/19 16:37,"494 Lincoln St, New York City, NY 10001" +193556,Bose SoundSport Headphones,1,99.99,04/15/19 21:53,"24 1st St, Atlanta, GA 30301" +193557,ThinkPad Laptop,1,999.99,04/18/19 15:22,"277 4th St, Los Angeles, CA 90001" +193558,AAA Batteries (4-pack),2,2.99,04/21/19 12:37,"350 13th St, Seattle, WA 98101" +193559,Apple Airpods Headphones,1,150,04/18/19 05:14,"568 Cherry St, San Francisco, CA 94016" +193560,Bose SoundSport Headphones,1,99.99,04/04/19 22:07,"557 South St, San Francisco, CA 94016" +193561,AAA Batteries (4-pack),2,2.99,04/16/19 13:47,"298 Church St, Austin, TX 73301" +193562,Lightning Charging Cable,1,14.95,04/07/19 20:13,"947 Meadow St, Los Angeles, CA 90001" +193563,USB-C Charging Cable,1,11.95,04/14/19 10:13,"788 Park St, Seattle, WA 98101" +193564,27in 4K Gaming Monitor,1,389.99,04/29/19 17:12,"185 Washington St, San Francisco, CA 94016" +193565,AA Batteries (4-pack),1,3.84,04/02/19 15:06,"672 Willow St, Dallas, TX 75001" +193566,Bose SoundSport Headphones,1,99.99,04/29/19 20:36,"459 8th St, Austin, TX 73301" +193567,USB-C Charging Cable,1,11.95,04/26/19 20:21,"373 South St, Atlanta, GA 30301" +193568,Wired Headphones,1,11.99,04/17/19 18:52,"831 12th St, Seattle, WA 98101" +193569,AA Batteries (4-pack),1,3.84,04/03/19 21:32,"565 Walnut St, Portland, OR 97035" +193570,Apple Airpods Headphones,1,150,04/16/19 08:57,"827 Wilson St, San Francisco, CA 94016" +193571,AAA Batteries (4-pack),2,2.99,04/15/19 19:12,"386 North St, New York City, NY 10001" +193572,AA Batteries (4-pack),1,3.84,04/24/19 11:26,"740 Church St, Boston, MA 02215" +193573,Wired Headphones,1,11.99,04/14/19 17:03,"893 Lakeview St, Seattle, WA 98101" +193574,AAA Batteries (4-pack),1,2.99,04/07/19 13:39,"313 Jefferson St, Atlanta, GA 30301" +193575,Wired Headphones,1,11.99,04/24/19 17:09,"575 Church St, Dallas, TX 75001" +193576,Macbook Pro Laptop,1,1700,04/17/19 07:46,"935 North St, Los Angeles, CA 90001" +193577,Bose SoundSport Headphones,1,99.99,04/29/19 19:33,"375 Dogwood St, Los Angeles, CA 90001" +193578,Wired Headphones,1,11.99,04/22/19 08:46,"829 8th St, New York City, NY 10001" +193579,USB-C Charging Cable,1,11.95,04/05/19 23:39,"881 Adams St, Los Angeles, CA 90001" +193580,Wired Headphones,1,11.99,04/08/19 12:21,"139 14th St, San Francisco, CA 94016" +193581,Vareebadd Phone,1,400,04/06/19 01:16,"971 Highland St, Austin, TX 73301" +193582,Bose SoundSport Headphones,1,99.99,04/23/19 22:29,"565 Elm St, Los Angeles, CA 90001" +193583,27in FHD Monitor,1,149.99,04/29/19 20:48,"464 Sunset St, San Francisco, CA 94016" +193584,AAA Batteries (4-pack),2,2.99,04/18/19 18:07,"295 7th St, Boston, MA 02215" +193585,AA Batteries (4-pack),1,3.84,04/03/19 13:25,"226 6th St, Dallas, TX 75001" +193586,Wired Headphones,1,11.99,04/09/19 14:00,"941 Pine St, Los Angeles, CA 90001" +193587,Lightning Charging Cable,1,14.95,04/23/19 08:10,"220 4th St, San Francisco, CA 94016" +193588,Apple Airpods Headphones,1,150,04/05/19 14:28,"680 Lincoln St, Los Angeles, CA 90001" +193589,Wired Headphones,1,11.99,04/26/19 15:05,"263 Jackson St, Dallas, TX 75001" +193590,Bose SoundSport Headphones,1,99.99,04/04/19 18:13,"814 13th St, New York City, NY 10001" +193591,USB-C Charging Cable,1,11.95,04/30/19 19:31,"963 Lincoln St, Austin, TX 73301" +193592,AAA Batteries (4-pack),1,2.99,04/09/19 12:45,"604 River St, Dallas, TX 75001" +193593,20in Monitor,1,109.99,04/28/19 19:18,"231 Cedar St, New York City, NY 10001" +193594,Lightning Charging Cable,1,14.95,04/28/19 20:41,"733 Hickory St, San Francisco, CA 94016" +193595,Bose SoundSport Headphones,1,99.99,04/26/19 15:15,"386 Forest St, Seattle, WA 98101" +193596,Apple Airpods Headphones,1,150,04/23/19 22:06,"312 Johnson St, Austin, TX 73301" +193597,Wired Headphones,1,11.99,04/29/19 13:02,"728 Wilson St, Los Angeles, CA 90001" +193598,Flatscreen TV,1,300,04/26/19 18:29,"476 River St, Boston, MA 02215" +193599,27in FHD Monitor,1,149.99,04/22/19 16:24,"780 Pine St, Los Angeles, CA 90001" +193600,Lightning Charging Cable,2,14.95,04/24/19 21:16,"403 Walnut St, Dallas, TX 75001" +193601,Macbook Pro Laptop,1,1700,04/11/19 09:17,"641 Johnson St, Los Angeles, CA 90001" +193602,USB-C Charging Cable,1,11.95,04/20/19 13:40,"39 12th St, New York City, NY 10001" +193603,AAA Batteries (4-pack),2,2.99,04/13/19 15:42,"269 13th St, San Francisco, CA 94016" +193604,USB-C Charging Cable,1,11.95,04/11/19 20:16,"78 10th St, Los Angeles, CA 90001" +193605,USB-C Charging Cable,1,11.95,04/10/19 18:41,"228 Elm St, San Francisco, CA 94016" +193606,Lightning Charging Cable,1,14.95,04/02/19 20:59,"486 Lakeview St, New York City, NY 10001" +193607,20in Monitor,1,109.99,04/30/19 20:43,"405 Sunset St, New York City, NY 10001" +193608,34in Ultrawide Monitor,1,379.99,04/05/19 14:17,"186 11th St, Los Angeles, CA 90001" +193609,AAA Batteries (4-pack),3,2.99,04/20/19 18:55,"771 Pine St, Seattle, WA 98101" +193610,Wired Headphones,1,11.99,04/13/19 19:31,"858 12th St, Los Angeles, CA 90001" +193611,Apple Airpods Headphones,1,150,04/08/19 20:37,"533 Willow St, San Francisco, CA 94016" +193612,Google Phone,1,600,04/21/19 18:11,"677 10th St, Boston, MA 02215" +193613,Flatscreen TV,1,300,04/21/19 11:42,"697 2nd St, San Francisco, CA 94016" +193614,AAA Batteries (4-pack),1,2.99,04/15/19 12:24,"878 5th St, Austin, TX 73301" +193615,Wired Headphones,1,11.99,04/18/19 08:41,"580 9th St, Atlanta, GA 30301" +193616,Macbook Pro Laptop,1,1700,04/09/19 17:31,"408 Washington St, Seattle, WA 98101" +193617,Lightning Charging Cable,1,14.95,04/21/19 17:10,"823 River St, Boston, MA 02215" +193618,Apple Airpods Headphones,1,150,04/27/19 14:04,"561 Jackson St, Los Angeles, CA 90001" +193619,Bose SoundSport Headphones,1,99.99,04/19/19 15:00,"952 Willow St, San Francisco, CA 94016" +193620,Wired Headphones,2,11.99,04/12/19 20:26,"536 Maple St, Atlanta, GA 30301" +193621,Lightning Charging Cable,1,14.95,04/17/19 17:52,"652 5th St, San Francisco, CA 94016" +193622,27in FHD Monitor,1,149.99,04/20/19 05:40,"363 1st St, Atlanta, GA 30301" +193623,34in Ultrawide Monitor,1,379.99,04/16/19 13:58,"172 14th St, Portland, OR 97035" +193624,AA Batteries (4-pack),2,3.84,04/19/19 11:19,"938 8th St, Los Angeles, CA 90001" +193625,Flatscreen TV,1,300,04/23/19 11:03,"833 14th St, Austin, TX 73301" +193626,AA Batteries (4-pack),1,3.84,04/12/19 15:10,"610 Ridge St, New York City, NY 10001" +193627,Wired Headphones,1,11.99,04/25/19 11:19,"444 8th St, Dallas, TX 75001" +193628,Lightning Charging Cable,1,14.95,04/11/19 11:42,"456 Sunset St, Boston, MA 02215" +193629,Wired Headphones,1,11.99,04/26/19 08:25,"554 Lake St, Atlanta, GA 30301" +193630,AAA Batteries (4-pack),1,2.99,04/18/19 18:51,"597 Wilson St, Los Angeles, CA 90001" +193631,AAA Batteries (4-pack),2,2.99,04/24/19 17:48,"652 Ridge St, Atlanta, GA 30301" +193632,USB-C Charging Cable,1,11.95,04/16/19 10:44,"105 Cedar St, New York City, NY 10001" +193633,AA Batteries (4-pack),1,3.84,04/23/19 17:06,"989 Sunset St, San Francisco, CA 94016" +193634,AA Batteries (4-pack),1,3.84,04/20/19 09:25,"747 Washington St, Los Angeles, CA 90001" +193635,Wired Headphones,2,11.99,04/24/19 17:48,"4 Hickory St, Boston, MA 02215" +193636,Lightning Charging Cable,1,14.95,04/15/19 19:13,"818 4th St, Atlanta, GA 30301" +193637,ThinkPad Laptop,1,999.99,04/26/19 16:51,"956 Lakeview St, San Francisco, CA 94016" +193638,Apple Airpods Headphones,1,150,04/10/19 14:10,"530 7th St, Boston, MA 02215" +193639,USB-C Charging Cable,1,11.95,04/02/19 15:12,"677 Chestnut St, Los Angeles, CA 90001" +193640,iPhone,1,700,04/30/19 16:57,"266 Forest St, Portland, OR 97035" +193641,USB-C Charging Cable,1,11.95,04/25/19 19:14,"505 Jefferson St, Los Angeles, CA 90001" +193642,Wired Headphones,2,11.99,04/06/19 12:37,"372 13th St, Dallas, TX 75001" +193643,Lightning Charging Cable,1,14.95,04/04/19 12:51,"638 1st St, Dallas, TX 75001" +193644,AAA Batteries (4-pack),1,2.99,04/10/19 20:44,"775 Dogwood St, Dallas, TX 75001" +193645,ThinkPad Laptop,1,999.99,04/23/19 13:35,"344 11th St, San Francisco, CA 94016" +193646,AAA Batteries (4-pack),1,2.99,04/24/19 06:25,"278 Center St, San Francisco, CA 94016" +193647,AA Batteries (4-pack),1,3.84,04/17/19 00:02,"140 Cedar St, Boston, MA 02215" +193648,20in Monitor,1,109.99,04/22/19 19:37,"575 West St, Los Angeles, CA 90001" +193649,Apple Airpods Headphones,1,150,04/26/19 20:02,"398 Highland St, Dallas, TX 75001" +193650,Macbook Pro Laptop,1,1700,04/03/19 08:34,"889 Jefferson St, Los Angeles, CA 90001" +193651,Vareebadd Phone,1,400,04/26/19 18:39,"387 West St, Dallas, TX 75001" +193652,27in FHD Monitor,1,149.99,04/16/19 07:18,"86 Lake St, Los Angeles, CA 90001" +193653,Bose SoundSport Headphones,1,99.99,04/27/19 09:01,"889 Spruce St, Los Angeles, CA 90001" +193654,Google Phone,1,600,04/05/19 22:04,"223 Chestnut St, New York City, NY 10001" +193655,USB-C Charging Cable,1,11.95,04/29/19 23:26,"250 South St, Atlanta, GA 30301" +193656,AAA Batteries (4-pack),1,2.99,04/19/19 13:18,"442 Hill St, Los Angeles, CA 90001" +193657,27in 4K Gaming Monitor,1,389.99,04/01/19 14:27,"209 Lake St, Seattle, WA 98101" +193658,Wired Headphones,2,11.99,04/25/19 00:03,"418 Adams St, Boston, MA 02215" +193659,Google Phone,1,600,04/28/19 19:26,"633 11th St, San Francisco, CA 94016" +193660,iPhone,1,700,04/22/19 10:05,"115 West St, Los Angeles, CA 90001" +193660,Bose SoundSport Headphones,1,99.99,04/22/19 10:05,"115 West St, Los Angeles, CA 90001" +193661,AAA Batteries (4-pack),1,2.99,04/06/19 12:29,"470 Church St, New York City, NY 10001" +193662,20in Monitor,1,109.99,04/08/19 20:08,"483 8th St, Portland, ME 04101" +193663,AAA Batteries (4-pack),1,2.99,04/06/19 18:31,"108 Church St, Los Angeles, CA 90001" +193664,AAA Batteries (4-pack),1,2.99,04/14/19 11:44,"636 14th St, Austin, TX 73301" +193665,Wired Headphones,1,11.99,04/04/19 23:35,"318 Cedar St, Los Angeles, CA 90001" +193666,AAA Batteries (4-pack),1,2.99,04/25/19 12:27,"911 River St, San Francisco, CA 94016" +193667,AA Batteries (4-pack),1,3.84,04/20/19 18:33,"789 Walnut St, Los Angeles, CA 90001" +193668,ThinkPad Laptop,1,999.99,04/15/19 16:49,"917 Highland St, Los Angeles, CA 90001" +193669,Flatscreen TV,1,300,04/18/19 21:53,"130 Cherry St, Portland, ME 04101" +193670,USB-C Charging Cable,1,11.95,04/07/19 10:15,"133 Madison St, Los Angeles, CA 90001" +193671,Apple Airpods Headphones,1,150,04/15/19 13:45,"665 Hickory St, San Francisco, CA 94016" +193672,27in FHD Monitor,1,149.99,04/19/19 09:42,"682 7th St, Dallas, TX 75001" +193673,27in 4K Gaming Monitor,1,389.99,04/10/19 09:05,"293 Lakeview St, San Francisco, CA 94016" +193674,Macbook Pro Laptop,1,1700,04/27/19 10:47,"651 Maple St, Los Angeles, CA 90001" +193675,USB-C Charging Cable,2,11.95,04/20/19 15:33,"228 Chestnut St, Los Angeles, CA 90001" +193676,27in FHD Monitor,1,149.99,04/05/19 09:27,"969 Highland St, Boston, MA 02215" +193677,Lightning Charging Cable,2,14.95,04/12/19 15:44,"933 7th St, Boston, MA 02215" +193678,Lightning Charging Cable,1,14.95,04/11/19 11:47,"461 13th St, Boston, MA 02215" +193679,Flatscreen TV,1,300,04/18/19 13:16,"756 Lake St, Atlanta, GA 30301" +193680,USB-C Charging Cable,1,11.95,04/29/19 18:16,"135 4th St, San Francisco, CA 94016" +193681,AAA Batteries (4-pack),1,2.99,04/10/19 17:22,"912 1st St, New York City, NY 10001" +193682,Macbook Pro Laptop,1,1700,04/04/19 15:43,"891 Lincoln St, Boston, MA 02215" +193683,27in FHD Monitor,1,149.99,04/05/19 21:24,"919 Sunset St, Dallas, TX 75001" +193684,USB-C Charging Cable,1,11.95,04/22/19 20:23,"527 South St, Boston, MA 02215" +193685,AAA Batteries (4-pack),1,2.99,04/27/19 20:56,"906 5th St, Seattle, WA 98101" +193686,Wired Headphones,1,11.99,04/05/19 12:52,"116 South St, Atlanta, GA 30301" +193687,34in Ultrawide Monitor,1,379.99,04/04/19 00:09,"292 Church St, San Francisco, CA 94016" +193688,Lightning Charging Cable,1,14.95,04/17/19 16:44,"603 13th St, Atlanta, GA 30301" +193689,Bose SoundSport Headphones,1,99.99,04/20/19 07:49,"83 Lincoln St, Dallas, TX 75001" +193690,Wired Headphones,1,11.99,04/05/19 13:39,"347 14th St, Atlanta, GA 30301" +193691,AAA Batteries (4-pack),1,2.99,04/03/19 14:40,"976 8th St, San Francisco, CA 94016" +193692,27in 4K Gaming Monitor,1,389.99,04/22/19 21:51,"905 12th St, Dallas, TX 75001" +193693,34in Ultrawide Monitor,1,379.99,04/26/19 11:56,"438 11th St, Los Angeles, CA 90001" +193694,Lightning Charging Cable,1,14.95,04/03/19 11:51,"374 South St, San Francisco, CA 94016" +193695,iPhone,1,700,04/05/19 08:20,"685 Jefferson St, Los Angeles, CA 90001" +193696,Bose SoundSport Headphones,1,99.99,04/15/19 22:36,"571 South St, Boston, MA 02215" +193697,AA Batteries (4-pack),1,3.84,04/27/19 08:05,"487 Lake St, Atlanta, GA 30301" +193698,iPhone,1,700,04/01/19 12:15,"936 6th St, New York City, NY 10001" +193699,AA Batteries (4-pack),1,3.84,04/02/19 12:26,"936 Adams St, Dallas, TX 75001" +193700,AAA Batteries (4-pack),1,2.99,04/19/19 08:15,"741 Church St, Austin, TX 73301" +193701,Bose SoundSport Headphones,1,99.99,04/07/19 00:00,"953 14th St, New York City, NY 10001" +193702,Google Phone,1,600,04/17/19 19:46,"540 Madison St, Boston, MA 02215" +193703,Apple Airpods Headphones,1,150,04/10/19 23:32,"163 Church St, New York City, NY 10001" +193704,Wired Headphones,1,11.99,04/03/19 20:51,"47 Cherry St, San Francisco, CA 94016" +193705,AA Batteries (4-pack),1,3.84,04/11/19 18:54,"403 10th St, San Francisco, CA 94016" +193706,27in 4K Gaming Monitor,1,389.99,04/17/19 12:04,"665 Jackson St, Los Angeles, CA 90001" +193707,AAA Batteries (4-pack),2,2.99,04/08/19 14:57,"627 Madison St, Portland, OR 97035" +193708,Bose SoundSport Headphones,1,99.99,04/02/19 19:30,"369 Lakeview St, Austin, TX 73301" +193709,Apple Airpods Headphones,1,150,04/09/19 20:46,"170 Church St, San Francisco, CA 94016" +193710,Wired Headphones,1,11.99,04/29/19 15:50,"775 5th St, Dallas, TX 75001" +193711,USB-C Charging Cable,1,11.95,04/29/19 10:28,"381 Wilson St, Portland, OR 97035" +193712,AA Batteries (4-pack),2,3.84,04/22/19 16:47,"494 11th St, San Francisco, CA 94016" +193713,Macbook Pro Laptop,1,1700,04/13/19 21:49,"5 2nd St, San Francisco, CA 94016" +193714,20in Monitor,1,109.99,04/25/19 21:32,"981 Hickory St, San Francisco, CA 94016" +193714,Lightning Charging Cable,1,14.95,04/25/19 21:32,"981 Hickory St, San Francisco, CA 94016" +193715,Lightning Charging Cable,1,14.95,04/18/19 11:50,"101 Center St, New York City, NY 10001" +193716,Apple Airpods Headphones,1,150,04/15/19 19:52,"294 Lake St, Portland, OR 97035" +193717,Macbook Pro Laptop,1,1700,04/07/19 11:43,"186 Johnson St, Austin, TX 73301" +193718,Apple Airpods Headphones,1,150,04/05/19 16:48,"781 Pine St, Los Angeles, CA 90001" +193719,AAA Batteries (4-pack),1,2.99,04/28/19 10:13,"704 12th St, Boston, MA 02215" +193720,AAA Batteries (4-pack),1,2.99,04/04/19 17:09,"75 South St, New York City, NY 10001" +193721,USB-C Charging Cable,1,11.95,04/16/19 16:00,"601 Main St, Dallas, TX 75001" +193722,Lightning Charging Cable,1,14.95,04/22/19 22:32,"316 Lakeview St, Portland, OR 97035" +193723,USB-C Charging Cable,1,11.95,04/29/19 12:53,"108 Ridge St, New York City, NY 10001" +193724,27in FHD Monitor,1,149.99,04/02/19 02:09,"559 Elm St, San Francisco, CA 94016" +193725,Macbook Pro Laptop,1,1700,04/03/19 16:35,"916 Meadow St, Portland, OR 97035" +193726,AAA Batteries (4-pack),1,2.99,04/02/19 14:00,"955 Elm St, San Francisco, CA 94016" +193727,AA Batteries (4-pack),1,3.84,04/17/19 16:29,"843 5th St, Dallas, TX 75001" +193728,27in 4K Gaming Monitor,1,389.99,04/04/19 09:09,"441 Dogwood St, New York City, NY 10001" +193729,Bose SoundSport Headphones,1,99.99,04/10/19 23:36,"881 Lakeview St, San Francisco, CA 94016" +193730,AAA Batteries (4-pack),1,2.99,04/28/19 15:53,"534 11th St, Boston, MA 02215" +193731,AA Batteries (4-pack),1,3.84,04/11/19 17:05,"841 Walnut St, Austin, TX 73301" +193732,ThinkPad Laptop,1,999.99,04/08/19 02:34,"208 Highland St, Los Angeles, CA 90001" +193733,34in Ultrawide Monitor,1,379.99,04/11/19 21:54,"67 9th St, San Francisco, CA 94016" +193734,Macbook Pro Laptop,1,1700,04/02/19 20:07,"819 Main St, Los Angeles, CA 90001" +193735,iPhone,1,700,04/14/19 12:28,"416 Main St, San Francisco, CA 94016" +193736,Lightning Charging Cable,1,14.95,04/23/19 14:34,"805 Elm St, Los Angeles, CA 90001" +193737,Lightning Charging Cable,1,14.95,04/22/19 11:52,"73 8th St, New York City, NY 10001" +193738,Bose SoundSport Headphones,1,99.99,04/26/19 21:42,"333 2nd St, San Francisco, CA 94016" +193739,USB-C Charging Cable,1,11.95,04/07/19 19:53,"149 Dogwood St, San Francisco, CA 94016" +193740,USB-C Charging Cable,1,11.95,04/28/19 19:20,"48 Main St, New York City, NY 10001" +193741,Lightning Charging Cable,1,14.95,04/06/19 15:38,"181 Washington St, San Francisco, CA 94016" +193742,Wired Headphones,2,11.99,04/06/19 21:20,"409 1st St, Austin, TX 73301" +193743,Google Phone,1,600,04/29/19 20:38,"390 13th St, Austin, TX 73301" +193743,USB-C Charging Cable,1,11.95,04/29/19 20:38,"390 13th St, Austin, TX 73301" +193744,20in Monitor,1,109.99,04/26/19 16:42,"653 Spruce St, San Francisco, CA 94016" +193745,34in Ultrawide Monitor,1,379.99,04/01/19 19:46,"73 1st St, San Francisco, CA 94016" +193746,USB-C Charging Cable,2,11.95,04/25/19 17:41,"109 Forest St, San Francisco, CA 94016" +193747,Google Phone,1,600,04/24/19 09:20,"772 Willow St, Los Angeles, CA 90001" +193748,27in 4K Gaming Monitor,1,389.99,04/22/19 19:35,"684 North St, Dallas, TX 75001" +193749,AA Batteries (4-pack),1,3.84,04/15/19 15:03,"533 Hickory St, Austin, TX 73301" +193750,AA Batteries (4-pack),1,3.84,04/10/19 21:12,"443 4th St, Los Angeles, CA 90001" +193751,AAA Batteries (4-pack),2,2.99,04/28/19 21:47,"97 Maple St, Dallas, TX 75001" +193752,Apple Airpods Headphones,1,150,04/21/19 13:48,"738 11th St, Boston, MA 02215" +193753,Apple Airpods Headphones,1,150,04/05/19 09:26,"955 West St, Boston, MA 02215" +193754,20in Monitor,1,109.99,04/24/19 15:16,"577 Center St, New York City, NY 10001" +193755,AAA Batteries (4-pack),2,2.99,04/27/19 20:34,"235 4th St, San Francisco, CA 94016" +193756,Google Phone,1,600,04/28/19 14:21,"722 14th St, Boston, MA 02215" +193757,AA Batteries (4-pack),1,3.84,04/13/19 21:22,"743 Lincoln St, Portland, OR 97035" +193758,LG Washing Machine,1,600.0,04/21/19 12:24,"637 14th St, Dallas, TX 75001" +193759,AA Batteries (4-pack),1,3.84,04/23/19 18:26,"454 Walnut St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +193760,AA Batteries (4-pack),1,3.84,04/23/19 12:30,"323 8th St, Dallas, TX 75001" +193761,Apple Airpods Headphones,1,150,04/04/19 09:44,"953 Chestnut St, San Francisco, CA 94016" +193762,USB-C Charging Cable,1,11.95,04/07/19 16:17,"888 Jackson St, Boston, MA 02215" +193762,USB-C Charging Cable,1,11.95,04/07/19 16:17,"888 Jackson St, Boston, MA 02215" +193763,Wired Headphones,1,11.99,04/19/19 14:16,"991 Jackson St, San Francisco, CA 94016" +193764,Bose SoundSport Headphones,1,99.99,04/05/19 14:13,"669 12th St, Seattle, WA 98101" +193765,Wired Headphones,1,11.99,04/15/19 21:53,"302 Washington St, San Francisco, CA 94016" +193766,LG Washing Machine,1,600.0,04/23/19 11:39,"258 Main St, Los Angeles, CA 90001" +193767,Bose SoundSport Headphones,1,99.99,04/28/19 12:52,"115 1st St, Boston, MA 02215" +193768,20in Monitor,1,109.99,04/27/19 13:08,"270 Lakeview St, Los Angeles, CA 90001" +193769,Wired Headphones,1,11.99,04/07/19 10:09,"898 Main St, San Francisco, CA 94016" +193770,iPhone,1,700,04/05/19 18:24,"208 Center St, Dallas, TX 75001" +193771,ThinkPad Laptop,1,999.99,04/22/19 06:50,"809 8th St, Portland, ME 04101" +193772,Macbook Pro Laptop,1,1700,04/18/19 19:35,"305 Johnson St, Atlanta, GA 30301" +193773,AAA Batteries (4-pack),1,2.99,04/15/19 12:23,"26 Jackson St, Boston, MA 02215" +193774,AA Batteries (4-pack),1,3.84,04/30/19 00:34,"76 9th St, New York City, NY 10001" +193775,34in Ultrawide Monitor,1,379.99,04/30/19 10:29,"763 Chestnut St, San Francisco, CA 94016" +193776,Flatscreen TV,1,300,04/03/19 21:04,"78 Jefferson St, Boston, MA 02215" +193777,Lightning Charging Cable,1,14.95,04/21/19 10:38,"110 North St, Boston, MA 02215" +193778,Apple Airpods Headphones,1,150,04/26/19 19:22,"568 Jefferson St, New York City, NY 10001" +193779,AAA Batteries (4-pack),1,2.99,04/23/19 17:51,"940 11th St, San Francisco, CA 94016" +193780,USB-C Charging Cable,1,11.95,04/01/19 11:18,"213 Adams St, New York City, NY 10001" +193781,AA Batteries (4-pack),2,3.84,04/08/19 16:24,"924 Meadow St, Boston, MA 02215" +193782,ThinkPad Laptop,1,999.99,04/03/19 13:31,"566 Lakeview St, Seattle, WA 98101" +193783,AAA Batteries (4-pack),1,2.99,04/21/19 18:43,"376 Pine St, Los Angeles, CA 90001" +193784,Apple Airpods Headphones,1,150,04/17/19 22:21,"742 Wilson St, Seattle, WA 98101" +193785,USB-C Charging Cable,1,11.95,04/08/19 09:50,"929 Hill St, Atlanta, GA 30301" +193786,Macbook Pro Laptop,1,1700,04/29/19 06:43,"805 5th St, Portland, OR 97035" +193787,AA Batteries (4-pack),1,3.84,04/06/19 10:48,"83 Lincoln St, Los Angeles, CA 90001" +193788,Apple Airpods Headphones,1,150,04/10/19 09:19,"333 Main St, Dallas, TX 75001" +193789,AAA Batteries (4-pack),1,2.99,04/19/19 09:51,"212 Cherry St, San Francisco, CA 94016" +193790,AA Batteries (4-pack),2,3.84,04/18/19 09:27,"522 Adams St, Los Angeles, CA 90001" +193791,AAA Batteries (4-pack),1,2.99,04/30/19 16:24,"539 Madison St, New York City, NY 10001" +193792,AA Batteries (4-pack),1,3.84,04/19/19 10:58,"615 4th St, New York City, NY 10001" +193793,Macbook Pro Laptop,1,1700,04/28/19 09:21,"361 Forest St, Boston, MA 02215" +193794,AA Batteries (4-pack),1,3.84,04/01/19 13:12,"787 Walnut St, Portland, OR 97035" +193795,Wired Headphones,1,11.99,04/17/19 19:42,"496 Center St, Seattle, WA 98101" +193796,AA Batteries (4-pack),1,3.84,04/03/19 00:20,"921 11th St, New York City, NY 10001" +193797,AA Batteries (4-pack),2,3.84,04/30/19 08:13,"771 Willow St, Los Angeles, CA 90001" +193798,USB-C Charging Cable,1,11.95,04/28/19 00:46,"15 Cherry St, Boston, MA 02215" +193799,Wired Headphones,1,11.99,04/03/19 11:12,"178 Adams St, San Francisco, CA 94016" +193800,Apple Airpods Headphones,1,150,04/01/19 13:16,"164 Hill St, Seattle, WA 98101" +193801,20in Monitor,1,109.99,04/07/19 18:52,"802 Maple St, Seattle, WA 98101" +193802,USB-C Charging Cable,1,11.95,04/15/19 11:40,"841 Meadow St, Seattle, WA 98101" +193803,Wired Headphones,1,11.99,04/10/19 18:21,"527 Forest St, New York City, NY 10001" +193804,27in 4K Gaming Monitor,1,389.99,04/24/19 20:48,"265 10th St, Atlanta, GA 30301" +193805,Wired Headphones,2,11.99,04/06/19 09:26,"790 Lincoln St, New York City, NY 10001" +193806,AA Batteries (4-pack),1,3.84,04/17/19 20:58,"563 Lincoln St, Los Angeles, CA 90001" +193807,iPhone,1,700,04/21/19 23:05,"998 5th St, Seattle, WA 98101" +193807,Lightning Charging Cable,1,14.95,04/21/19 23:05,"998 5th St, Seattle, WA 98101" +193808,Lightning Charging Cable,1,14.95,04/06/19 21:09,"193 13th St, Atlanta, GA 30301" +193809,Google Phone,1,600,04/11/19 15:22,"268 Jefferson St, Dallas, TX 75001" +193809,USB-C Charging Cable,1,11.95,04/11/19 15:22,"268 Jefferson St, Dallas, TX 75001" +193810,USB-C Charging Cable,1,11.95,04/03/19 15:20,"297 Center St, Los Angeles, CA 90001" +193811,Wired Headphones,1,11.99,04/15/19 13:09,"690 Walnut St, Dallas, TX 75001" +193812,20in Monitor,1,109.99,04/08/19 19:22,"248 4th St, Seattle, WA 98101" +193813,Wired Headphones,1,11.99,04/14/19 11:48,"930 1st St, San Francisco, CA 94016" +193814,Lightning Charging Cable,1,14.95,04/22/19 23:17,"226 12th St, Atlanta, GA 30301" +193815,AAA Batteries (4-pack),1,2.99,04/13/19 22:12,"110 10th St, San Francisco, CA 94016" +193816,USB-C Charging Cable,1,11.95,04/14/19 21:54,"964 Center St, Atlanta, GA 30301" +193817,AA Batteries (4-pack),2,3.84,04/02/19 07:07,"330 Chestnut St, Atlanta, GA 30301" +193818,Apple Airpods Headphones,1,150,04/28/19 19:48,"558 Wilson St, Atlanta, GA 30301" +193818,ThinkPad Laptop,1,999.99,04/28/19 19:48,"558 Wilson St, Atlanta, GA 30301" +193819,Lightning Charging Cable,1,14.95,04/19/19 09:12,"803 4th St, New York City, NY 10001" +193820,USB-C Charging Cable,1,11.95,04/24/19 09:31,"499 Center St, Austin, TX 73301" +193821,iPhone,1,700,04/27/19 12:10,"771 Elm St, Austin, TX 73301" +193821,Lightning Charging Cable,1,14.95,04/27/19 12:10,"771 Elm St, Austin, TX 73301" +193822,Google Phone,1,600,04/06/19 07:53,"687 Walnut St, New York City, NY 10001" +193822,Wired Headphones,1,11.99,04/06/19 07:53,"687 Walnut St, New York City, NY 10001" +193823,AA Batteries (4-pack),1,3.84,04/12/19 20:08,"626 Wilson St, Boston, MA 02215" +193824,USB-C Charging Cable,1,11.95,04/08/19 21:47,"112 2nd St, Los Angeles, CA 90001" +193825,Apple Airpods Headphones,1,150,04/23/19 19:49,"417 Main St, Portland, OR 97035" +193826,Google Phone,1,600,04/18/19 16:56,"459 West St, Los Angeles, CA 90001" +193826,Wired Headphones,1,11.99,04/18/19 16:56,"459 West St, Los Angeles, CA 90001" +193827,USB-C Charging Cable,1,11.95,04/29/19 09:45,"607 Park St, Atlanta, GA 30301" +193828,iPhone,1,700,04/07/19 19:54,"296 Cherry St, New York City, NY 10001" +193828,Wired Headphones,1,11.99,04/07/19 19:54,"296 Cherry St, New York City, NY 10001" +193829,USB-C Charging Cable,1,11.95,04/03/19 22:56,"857 12th St, Austin, TX 73301" +193830,AAA Batteries (4-pack),4,2.99,04/05/19 21:33,"349 Highland St, New York City, NY 10001" +193831,AAA Batteries (4-pack),1,2.99,04/19/19 01:46,"251 8th St, Dallas, TX 75001" +193832,AA Batteries (4-pack),1,3.84,04/05/19 11:38,"231 12th St, Los Angeles, CA 90001" +193833,AA Batteries (4-pack),4,3.84,04/30/19 11:56,"72 Willow St, Los Angeles, CA 90001" +193834,USB-C Charging Cable,1,11.95,04/08/19 21:33,"56 Center St, Boston, MA 02215" +193835,Google Phone,1,600,04/21/19 10:41,"913 4th St, Seattle, WA 98101" +193835,USB-C Charging Cable,1,11.95,04/21/19 10:41,"913 4th St, Seattle, WA 98101" +193836,USB-C Charging Cable,1,11.95,04/08/19 10:03,"573 8th St, New York City, NY 10001" +193837,Wired Headphones,2,11.99,04/21/19 09:04,"590 Meadow St, New York City, NY 10001" +193838,AA Batteries (4-pack),2,3.84,04/01/19 20:42,"115 Main St, Boston, MA 02215" +193839,Bose SoundSport Headphones,1,99.99,04/09/19 14:26,"280 Center St, San Francisco, CA 94016" +193840,Bose SoundSport Headphones,1,99.99,04/08/19 08:04,"787 6th St, Seattle, WA 98101" +193841,27in FHD Monitor,1,149.99,04/28/19 16:39,"640 Church St, San Francisco, CA 94016" +193842,20in Monitor,1,109.99,04/29/19 21:45,"580 Pine St, Los Angeles, CA 90001" +193843,Wired Headphones,1,11.99,04/24/19 02:11,"894 9th St, Los Angeles, CA 90001" +193844,27in 4K Gaming Monitor,1,389.99,04/28/19 19:48,"32 Elm St, Los Angeles, CA 90001" +193845,Wired Headphones,1,11.99,04/05/19 11:01,"494 Walnut St, Los Angeles, CA 90001" +193846,Lightning Charging Cable,1,14.95,04/09/19 15:24,"773 8th St, New York City, NY 10001" +193847,AAA Batteries (4-pack),1,2.99,04/02/19 11:11,"904 5th St, Los Angeles, CA 90001" +193848,Flatscreen TV,1,300,04/16/19 09:13,"512 11th St, Seattle, WA 98101" +193849,27in FHD Monitor,1,149.99,04/17/19 03:13,"146 4th St, New York City, NY 10001" +193850,AAA Batteries (4-pack),1,2.99,04/19/19 05:56,"922 Washington St, San Francisco, CA 94016" +193851,AAA Batteries (4-pack),2,2.99,04/19/19 18:41,"499 7th St, San Francisco, CA 94016" +193852,Lightning Charging Cable,2,14.95,04/24/19 23:10,"472 Pine St, Portland, OR 97035" +193853,Wired Headphones,1,11.99,04/18/19 09:20,"401 Highland St, Dallas, TX 75001" +193854,Google Phone,1,600,04/27/19 07:48,"864 Sunset St, Los Angeles, CA 90001" +193854,USB-C Charging Cable,2,11.95,04/27/19 07:48,"864 Sunset St, Los Angeles, CA 90001" +193855,AA Batteries (4-pack),1,3.84,04/11/19 12:26,"746 Jefferson St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +193856,Apple Airpods Headphones,1,150,04/20/19 01:12,"572 Meadow St, Boston, MA 02215" +193857,Bose SoundSport Headphones,1,99.99,04/30/19 20:52,"621 6th St, New York City, NY 10001" +193858,27in FHD Monitor,1,149.99,04/09/19 23:36,"53 Madison St, Los Angeles, CA 90001" +193859,Wired Headphones,1,11.99,04/03/19 10:04,"481 Sunset St, San Francisco, CA 94016" +193860,Bose SoundSport Headphones,1,99.99,04/18/19 08:34,"729 Highland St, Los Angeles, CA 90001" +193860,AAA Batteries (4-pack),1,2.99,04/18/19 08:34,"729 Highland St, Los Angeles, CA 90001" +193861,34in Ultrawide Monitor,1,379.99,04/18/19 09:51,"676 Spruce St, New York City, NY 10001" +193862,USB-C Charging Cable,1,11.95,04/13/19 19:06,"843 River St, San Francisco, CA 94016" +193863,Wired Headphones,1,11.99,04/13/19 18:16,"49 6th St, Austin, TX 73301" +193864,ThinkPad Laptop,1,999.99,04/05/19 17:41,"819 Park St, Austin, TX 73301" +193865,USB-C Charging Cable,1,11.95,04/28/19 09:46,"373 Elm St, Atlanta, GA 30301" +193866,USB-C Charging Cable,1,11.95,04/19/19 21:59,"967 Madison St, New York City, NY 10001" +193867,USB-C Charging Cable,1,11.95,04/08/19 21:32,"833 Lake St, San Francisco, CA 94016" +193868,Apple Airpods Headphones,1,150,04/23/19 23:05,"358 Johnson St, Los Angeles, CA 90001" +193869,27in 4K Gaming Monitor,1,389.99,04/27/19 08:30,"867 Church St, Dallas, TX 75001" +193870,20in Monitor,1,109.99,04/16/19 08:00,"634 Johnson St, Seattle, WA 98101" +193871,USB-C Charging Cable,1,11.95,04/18/19 15:51,"905 Church St, Los Angeles, CA 90001" +193872,Lightning Charging Cable,1,14.95,04/12/19 19:17,"625 5th St, San Francisco, CA 94016" +193873,AAA Batteries (4-pack),2,2.99,04/13/19 23:09,"588 Madison St, San Francisco, CA 94016" +193874,Macbook Pro Laptop,1,1700,04/24/19 14:14,"753 10th St, Dallas, TX 75001" +193875,Lightning Charging Cable,1,14.95,04/23/19 07:41,"375 Pine St, Seattle, WA 98101" +193876,AA Batteries (4-pack),1,3.84,04/12/19 15:29,"938 Church St, Atlanta, GA 30301" +193877,Wired Headphones,1,11.99,04/13/19 12:44,"527 Lincoln St, Los Angeles, CA 90001" +193878,Apple Airpods Headphones,1,150,04/13/19 12:35,"618 Main St, Atlanta, GA 30301" +193879,Google Phone,1,600,04/12/19 18:08,"538 Washington St, Portland, OR 97035" +193879,Bose SoundSport Headphones,1,99.99,04/12/19 18:08,"538 Washington St, Portland, OR 97035" +193880,Lightning Charging Cable,1,14.95,04/08/19 13:22,"922 Wilson St, Los Angeles, CA 90001" +193881,27in FHD Monitor,1,149.99,04/29/19 08:11,"336 Lincoln St, Atlanta, GA 30301" +193882,Lightning Charging Cable,1,14.95,04/27/19 12:49,"633 6th St, Atlanta, GA 30301" +193883,Wired Headphones,1,11.99,04/25/19 11:17,"761 Cherry St, New York City, NY 10001" +193884,USB-C Charging Cable,1,11.95,04/21/19 21:24,"626 South St, Los Angeles, CA 90001" +193885,27in 4K Gaming Monitor,1,389.99,04/30/19 21:53,"272 Cherry St, Boston, MA 02215" +193886,AA Batteries (4-pack),2,3.84,04/24/19 15:40,"843 Main St, New York City, NY 10001" +193887,Wired Headphones,1,11.99,04/12/19 19:41,"697 Wilson St, New York City, NY 10001" +193888,Wired Headphones,1,11.99,04/09/19 09:33,"591 6th St, Dallas, TX 75001" +193889,AA Batteries (4-pack),2,3.84,04/29/19 21:36,"419 1st St, Dallas, TX 75001" +193890,Wired Headphones,2,11.99,04/11/19 20:35,"917 Walnut St, Dallas, TX 75001" +193890,Bose SoundSport Headphones,1,99.99,04/11/19 20:35,"917 Walnut St, Dallas, TX 75001" +193891,Apple Airpods Headphones,1,150,04/14/19 18:44,"689 Chestnut St, Dallas, TX 75001" +193892,Macbook Pro Laptop,1,1700,04/05/19 20:15,"421 13th St, Dallas, TX 75001" +193893,Lightning Charging Cable,1,14.95,04/13/19 20:18,"183 7th St, San Francisco, CA 94016" +193894,iPhone,1,700,04/03/19 19:53,"771 Lake St, New York City, NY 10001" +193895,Lightning Charging Cable,1,14.95,04/14/19 09:48,"423 Dogwood St, Portland, OR 97035" +193896,27in FHD Monitor,1,149.99,04/29/19 15:40,"729 Madison St, Los Angeles, CA 90001" +193897,27in FHD Monitor,1,149.99,04/27/19 05:41,"538 Pine St, Boston, MA 02215" +193898,Apple Airpods Headphones,1,150,04/18/19 11:58,"916 Main St, San Francisco, CA 94016" +193899,AA Batteries (4-pack),1,3.84,04/18/19 18:43,"593 Adams St, Los Angeles, CA 90001" +193900,Lightning Charging Cable,1,14.95,04/12/19 14:09,"550 Park St, Portland, OR 97035" +193901,Vareebadd Phone,1,400,04/02/19 12:11,"720 Chestnut St, New York City, NY 10001" +193901,Bose SoundSport Headphones,1,99.99,04/02/19 12:11,"720 Chestnut St, New York City, NY 10001" +193902,Wired Headphones,1,11.99,04/02/19 20:47,"953 Wilson St, Los Angeles, CA 90001" +193903,AAA Batteries (4-pack),3,2.99,04/16/19 12:08,"665 Johnson St, Los Angeles, CA 90001" +193904,USB-C Charging Cable,1,11.95,04/25/19 02:39,"853 Forest St, Boston, MA 02215" +193905,Bose SoundSport Headphones,1,99.99,04/28/19 19:18,"611 5th St, Boston, MA 02215" +193906,USB-C Charging Cable,1,11.95,04/03/19 14:36,"425 Elm St, San Francisco, CA 94016" +193907,Apple Airpods Headphones,1,150,04/03/19 12:00,"892 Wilson St, Dallas, TX 75001" +193908,USB-C Charging Cable,1,11.95,04/04/19 17:28,"598 Church St, Seattle, WA 98101" +193909,Wired Headphones,2,11.99,04/18/19 20:12,"931 2nd St, Portland, OR 97035" +193910,iPhone,1,700,04/06/19 14:36,"697 9th St, New York City, NY 10001" +193911,Apple Airpods Headphones,1,150,04/11/19 06:48,"552 Chestnut St, Austin, TX 73301" +193912,Macbook Pro Laptop,1,1700,04/28/19 19:58,"45 Ridge St, San Francisco, CA 94016" +193913,27in FHD Monitor,1,149.99,04/27/19 07:35,"329 Wilson St, San Francisco, CA 94016" +193914,Bose SoundSport Headphones,1,99.99,04/10/19 14:03,"536 Walnut St, San Francisco, CA 94016" +193915,Vareebadd Phone,1,400,04/08/19 10:05,"777 Maple St, Austin, TX 73301" +193915,USB-C Charging Cable,1,11.95,04/08/19 10:05,"777 Maple St, Austin, TX 73301" +193916,USB-C Charging Cable,1,11.95,04/05/19 01:40,"24 Lincoln St, San Francisco, CA 94016" +193917,Lightning Charging Cable,1,14.95,04/15/19 06:34,"628 Hill St, San Francisco, CA 94016" +193918,Lightning Charging Cable,2,14.95,04/03/19 15:03,"60 7th St, Dallas, TX 75001" +193919,AA Batteries (4-pack),1,3.84,04/27/19 17:41,"622 South St, Los Angeles, CA 90001" +193920,USB-C Charging Cable,1,11.95,04/27/19 19:18,"235 West St, San Francisco, CA 94016" +193921,Apple Airpods Headphones,1,150,04/08/19 19:38,"34 Main St, Los Angeles, CA 90001" +193922,27in FHD Monitor,1,149.99,04/06/19 15:34,"590 Highland St, San Francisco, CA 94016" +193923,Apple Airpods Headphones,1,150,04/24/19 11:02,"846 Spruce St, Atlanta, GA 30301" +193924,Apple Airpods Headphones,1,150,04/06/19 08:09,"947 Maple St, New York City, NY 10001" +193925,Flatscreen TV,1,300,04/08/19 13:41,"324 Elm St, San Francisco, CA 94016" +193926,AAA Batteries (4-pack),1,2.99,04/15/19 20:17,"771 River St, Dallas, TX 75001" +193927,27in FHD Monitor,1,149.99,04/08/19 23:38,"950 Elm St, New York City, NY 10001" +193928,AA Batteries (4-pack),4,3.84,04/18/19 17:45,"485 1st St, San Francisco, CA 94016" +193929,AA Batteries (4-pack),1,3.84,04/16/19 15:34,"980 Spruce St, Seattle, WA 98101" +193930,USB-C Charging Cable,1,11.95,04/27/19 17:22,"879 5th St, San Francisco, CA 94016" +193931,Bose SoundSport Headphones,1,99.99,04/02/19 10:25,"69 Spruce St, Dallas, TX 75001" +193932,Lightning Charging Cable,1,14.95,04/06/19 08:39,"775 Elm St, New York City, NY 10001" +193933,Wired Headphones,1,11.99,04/19/19 18:41,"664 River St, Dallas, TX 75001" +193934,AA Batteries (4-pack),1,3.84,04/27/19 21:05,"151 Adams St, San Francisco, CA 94016" +193935,AA Batteries (4-pack),1,3.84,04/12/19 21:53,"420 2nd St, San Francisco, CA 94016" +193936,Bose SoundSport Headphones,1,99.99,04/15/19 00:33,"398 Madison St, New York City, NY 10001" +193937,USB-C Charging Cable,1,11.95,04/24/19 09:40,"373 Lake St, Seattle, WA 98101" +193938,AAA Batteries (4-pack),2,2.99,04/05/19 01:26,"106 5th St, Portland, OR 97035" +193939,USB-C Charging Cable,1,11.95,04/02/19 08:09,"504 Center St, Boston, MA 02215" +193940,Bose SoundSport Headphones,1,99.99,04/22/19 10:30,"592 Jackson St, Los Angeles, CA 90001" +193941,Lightning Charging Cable,1,14.95,04/21/19 21:07,"129 Elm St, San Francisco, CA 94016" +193942,Apple Airpods Headphones,1,150,04/01/19 19:31,"691 Washington St, Portland, OR 97035" +193943,Flatscreen TV,1,300,04/28/19 10:39,"309 6th St, Los Angeles, CA 90001" +193944,AAA Batteries (4-pack),2,2.99,04/14/19 21:01,"632 Madison St, Dallas, TX 75001" +193945,AA Batteries (4-pack),1,3.84,04/25/19 17:44,"840 River St, San Francisco, CA 94016" +193946,20in Monitor,1,109.99,04/22/19 10:21,"998 7th St, New York City, NY 10001" +193947,AA Batteries (4-pack),1,3.84,04/03/19 17:31,"128 Spruce St, New York City, NY 10001" +193948,Flatscreen TV,1,300,04/03/19 11:39,"640 1st St, Boston, MA 02215" +193949,Bose SoundSport Headphones,1,99.99,04/17/19 19:50,"798 South St, Portland, OR 97035" +193950,Apple Airpods Headphones,1,150,04/03/19 19:28,"686 Jefferson St, New York City, NY 10001" +193951,Lightning Charging Cable,1,14.95,04/30/19 09:10,"489 Main St, San Francisco, CA 94016" +193952,USB-C Charging Cable,1,11.95,04/16/19 10:41,"359 Adams St, Dallas, TX 75001" +193953,iPhone,1,700,04/20/19 21:22,"107 Ridge St, Portland, OR 97035" +193954,Lightning Charging Cable,1,14.95,04/16/19 16:19,"337 10th St, San Francisco, CA 94016" +193955,AAA Batteries (4-pack),1,2.99,04/19/19 20:32,"349 South St, Boston, MA 02215" +193956,USB-C Charging Cable,1,11.95,04/24/19 20:13,"735 8th St, San Francisco, CA 94016" +193957,Macbook Pro Laptop,1,1700,04/26/19 09:45,"201 North St, Atlanta, GA 30301" +193958,Bose SoundSport Headphones,1,99.99,04/13/19 08:06,"27 Sunset St, San Francisco, CA 94016" +193959,Lightning Charging Cable,1,14.95,04/21/19 12:40,"370 7th St, Austin, TX 73301" +193960,Apple Airpods Headphones,1,150,04/04/19 00:09,"397 Walnut St, San Francisco, CA 94016" +193961,AA Batteries (4-pack),1,3.84,04/11/19 08:08,"66 Dogwood St, Seattle, WA 98101" +193962,AA Batteries (4-pack),1,3.84,04/19/19 23:06,"570 10th St, New York City, NY 10001" +193963,27in 4K Gaming Monitor,1,389.99,04/23/19 12:26,"640 6th St, Seattle, WA 98101" +193964,Lightning Charging Cable,1,14.95,04/24/19 07:26,"417 Forest St, New York City, NY 10001" +193965,27in 4K Gaming Monitor,1,389.99,04/22/19 12:00,"961 Lake St, San Francisco, CA 94016" +193966,Bose SoundSport Headphones,1,99.99,04/25/19 13:14,"94 5th St, Portland, OR 97035" +193967,iPhone,1,700,04/23/19 13:32,"282 Johnson St, Portland, ME 04101" +193967,Wired Headphones,1,11.99,04/23/19 13:32,"282 Johnson St, Portland, ME 04101" +193968,LG Dryer,1,600.0,04/13/19 06:38,"379 Willow St, Los Angeles, CA 90001" +193969,AAA Batteries (4-pack),1,2.99,04/10/19 11:09,"521 Spruce St, New York City, NY 10001" +193970,AAA Batteries (4-pack),1,2.99,04/04/19 23:55,"490 Wilson St, Boston, MA 02215" +193971,AA Batteries (4-pack),4,3.84,04/24/19 16:53,"600 Dogwood St, Boston, MA 02215" +193972,USB-C Charging Cable,1,11.95,04/15/19 18:53,"254 River St, Portland, OR 97035" +193973,AAA Batteries (4-pack),5,2.99,04/02/19 01:11,"745 5th St, Atlanta, GA 30301" +193974,AA Batteries (4-pack),1,3.84,04/25/19 13:02,"473 7th St, New York City, NY 10001" +193975,Lightning Charging Cable,1,14.95,04/04/19 09:51,"235 Lake St, San Francisco, CA 94016" +193976,34in Ultrawide Monitor,1,379.99,04/08/19 13:54,"381 Park St, Dallas, TX 75001" +193977,Flatscreen TV,1,300,04/20/19 17:23,"999 11th St, San Francisco, CA 94016" +193978,AAA Batteries (4-pack),1,2.99,04/06/19 17:04,"254 6th St, Los Angeles, CA 90001" +193979,34in Ultrawide Monitor,1,379.99,04/16/19 23:34,"701 Cherry St, San Francisco, CA 94016" +193980,USB-C Charging Cable,1,11.95,04/26/19 22:28,"970 12th St, Atlanta, GA 30301" +193981,Lightning Charging Cable,1,14.95,04/12/19 00:32,"81 1st St, New York City, NY 10001" +193982,AA Batteries (4-pack),1,3.84,04/26/19 17:16,"431 Hill St, San Francisco, CA 94016" +193983,27in FHD Monitor,1,149.99,04/05/19 18:59,"667 Main St, Portland, OR 97035" +193984,iPhone,1,700,04/22/19 02:01,"74 Chestnut St, Los Angeles, CA 90001" +193985,27in FHD Monitor,1,149.99,04/03/19 12:31,"837 2nd St, Atlanta, GA 30301" +193986,Bose SoundSport Headphones,1,99.99,04/11/19 17:25,"940 Main St, Los Angeles, CA 90001" +193987,ThinkPad Laptop,1,999.99,04/28/19 23:23,"23 14th St, Boston, MA 02215" +193988,AA Batteries (4-pack),2,3.84,04/09/19 05:40,"414 Forest St, San Francisco, CA 94016" +193989,Bose SoundSport Headphones,1,99.99,04/20/19 19:15,"72 Washington St, Portland, OR 97035" +193990,Lightning Charging Cable,1,14.95,04/28/19 00:08,"547 Center St, Atlanta, GA 30301" +193991,AAA Batteries (4-pack),2,2.99,04/14/19 16:19,"363 Jefferson St, Austin, TX 73301" +193991,ThinkPad Laptop,1,999.99,04/14/19 16:19,"363 Jefferson St, Austin, TX 73301" +193992,Wired Headphones,1,11.99,04/01/19 16:36,"848 Willow St, Austin, TX 73301" +193993,Lightning Charging Cable,1,14.95,04/27/19 23:52,"269 River St, Dallas, TX 75001" +193994,AAA Batteries (4-pack),1,2.99,04/18/19 20:54,"883 Hill St, Atlanta, GA 30301" +193995,Wired Headphones,1,11.99,04/15/19 10:02,"134 11th St, San Francisco, CA 94016" +193996,AAA Batteries (4-pack),1,2.99,04/02/19 13:35,"423 Sunset St, Dallas, TX 75001" +193997,Google Phone,1,600,04/24/19 15:50,"973 Lincoln St, San Francisco, CA 94016" +193997,USB-C Charging Cable,1,11.95,04/24/19 15:50,"973 Lincoln St, San Francisco, CA 94016" +193998,Bose SoundSport Headphones,1,99.99,04/04/19 21:32,"173 Church St, Seattle, WA 98101" +193999,Lightning Charging Cable,1,14.95,04/03/19 08:07,"205 Lake St, Los Angeles, CA 90001" +194000,Lightning Charging Cable,1,14.95,04/13/19 19:43,"400 Pine St, Los Angeles, CA 90001" +194001,AAA Batteries (4-pack),1,2.99,04/17/19 11:34,"252 8th St, Atlanta, GA 30301" +194002,USB-C Charging Cable,1,11.95,04/27/19 16:07,"150 14th St, Portland, ME 04101" +194003,USB-C Charging Cable,1,11.95,04/05/19 19:14,"900 Johnson St, Los Angeles, CA 90001" +194004,Apple Airpods Headphones,1,150,04/10/19 15:48,"119 6th St, Boston, MA 02215" +194005,Flatscreen TV,1,300,04/04/19 19:34,"794 South St, Austin, TX 73301" +194006,Lightning Charging Cable,2,14.95,04/10/19 17:23,"903 13th St, San Francisco, CA 94016" +194007,ThinkPad Laptop,1,999.99,04/26/19 17:33,"669 Dogwood St, San Francisco, CA 94016" +194008,LG Dryer,1,600.0,04/12/19 22:14,"659 River St, Boston, MA 02215" +194009,Macbook Pro Laptop,1,1700,04/06/19 23:57,"876 11th St, Atlanta, GA 30301" +194010,Bose SoundSport Headphones,1,99.99,04/29/19 16:42,"639 Chestnut St, Seattle, WA 98101" +194011,iPhone,1,700,04/27/19 21:11,"299 Hickory St, Los Angeles, CA 90001" +194012,Apple Airpods Headphones,1,150,04/04/19 15:50,"527 13th St, Portland, OR 97035" +194013,Wired Headphones,1,11.99,04/09/19 23:19,"267 14th St, San Francisco, CA 94016" +194014,Wired Headphones,1,11.99,04/08/19 15:55,"206 Hill St, San Francisco, CA 94016" +194015,Wired Headphones,1,11.99,04/01/19 15:44,"377 South St, New York City, NY 10001" +194016,27in 4K Gaming Monitor,1,389.99,04/21/19 08:07,"803 2nd St, Seattle, WA 98101" +194017,AAA Batteries (4-pack),1,2.99,04/05/19 12:12,"661 Cedar St, San Francisco, CA 94016" +194018,Wired Headphones,2,11.99,04/29/19 22:23,"603 Church St, Seattle, WA 98101" +194019,iPhone,1,700,04/02/19 17:36,"652 Pine St, New York City, NY 10001" +194019,Wired Headphones,1,11.99,04/02/19 17:36,"652 Pine St, New York City, NY 10001" +194020,Lightning Charging Cable,1,14.95,04/12/19 11:18,"50 11th St, New York City, NY 10001" +194021,Wired Headphones,1,11.99,04/19/19 18:02,"792 7th St, Atlanta, GA 30301" +194022,Google Phone,1,600,04/20/19 22:34,"231 Elm St, Portland, OR 97035" +194022,USB-C Charging Cable,1,11.95,04/20/19 22:34,"231 Elm St, Portland, OR 97035" +194023,Macbook Pro Laptop,1,1700,04/24/19 08:51,"57 Church St, Atlanta, GA 30301" +194024,iPhone,1,700,04/11/19 14:01,"609 Main St, Los Angeles, CA 90001" +194025,Lightning Charging Cable,1,14.95,04/03/19 12:49,"102 Washington St, Los Angeles, CA 90001" +194026,Macbook Pro Laptop,1,1700,04/12/19 12:35,"485 Wilson St, San Francisco, CA 94016" +194027,Lightning Charging Cable,1,14.95,04/28/19 13:06,"655 Ridge St, Dallas, TX 75001" +194028,USB-C Charging Cable,1,11.95,04/26/19 14:22,"355 Church St, Atlanta, GA 30301" +194029,Wired Headphones,1,11.99,04/15/19 19:03,"869 Walnut St, Los Angeles, CA 90001" +194030,AA Batteries (4-pack),1,3.84,04/20/19 17:57,"385 Washington St, San Francisco, CA 94016" +194031,34in Ultrawide Monitor,1,379.99,04/13/19 11:11,"873 Spruce St, Los Angeles, CA 90001" +194032,AAA Batteries (4-pack),2,2.99,04/07/19 22:34,"684 Jefferson St, Dallas, TX 75001" +194033,Bose SoundSport Headphones,1,99.99,04/05/19 15:33,"620 West St, New York City, NY 10001" +194034,20in Monitor,1,109.99,04/13/19 12:13,"696 Jackson St, San Francisco, CA 94016" +194035,iPhone,1,700,04/10/19 17:42,"70 Lakeview St, Los Angeles, CA 90001" +194036,AAA Batteries (4-pack),1,2.99,04/04/19 15:16,"817 Jefferson St, Austin, TX 73301" +194037,AAA Batteries (4-pack),2,2.99,04/03/19 23:36,"308 Spruce St, Dallas, TX 75001" +194038,27in 4K Gaming Monitor,1,389.99,04/28/19 10:27,"965 Willow St, New York City, NY 10001" +194039,USB-C Charging Cable,1,11.95,04/17/19 12:53,"351 7th St, Seattle, WA 98101" +194040,AAA Batteries (4-pack),2,2.99,04/09/19 17:59,"546 7th St, New York City, NY 10001" +194041,Flatscreen TV,1,300,04/04/19 23:21,"27 Lincoln St, San Francisco, CA 94016" +194042,Lightning Charging Cable,1,14.95,04/14/19 18:00,"737 Madison St, San Francisco, CA 94016" +194043,27in FHD Monitor,1,149.99,04/10/19 12:20,"67 Main St, Boston, MA 02215" +194044,Lightning Charging Cable,1,14.95,04/20/19 17:00,"699 Main St, Atlanta, GA 30301" +194045,27in FHD Monitor,1,149.99,04/25/19 07:11,"841 Pine St, Seattle, WA 98101" +194046,AAA Batteries (4-pack),1,2.99,04/28/19 10:50,"249 Jefferson St, Los Angeles, CA 90001" +194047,Google Phone,1,600,04/19/19 16:34,"695 13th St, Atlanta, GA 30301" +194047,USB-C Charging Cable,1,11.95,04/19/19 16:34,"695 13th St, Atlanta, GA 30301" +194048,Lightning Charging Cable,1,14.95,04/05/19 22:39,"344 Jackson St, Los Angeles, CA 90001" +194049,Apple Airpods Headphones,1,150,04/12/19 14:45,"204 Ridge St, Atlanta, GA 30301" +194050,Macbook Pro Laptop,1,1700,04/13/19 19:30,"79 Main St, San Francisco, CA 94016" +194051,AA Batteries (4-pack),1,3.84,04/18/19 21:57,"851 2nd St, Los Angeles, CA 90001" +194052,AAA Batteries (4-pack),1,2.99,04/23/19 23:41,"474 Dogwood St, San Francisco, CA 94016" +194053,34in Ultrawide Monitor,1,379.99,04/30/19 09:47,"590 River St, Boston, MA 02215" +194054,27in FHD Monitor,1,149.99,04/13/19 19:22,"798 Center St, San Francisco, CA 94016" +194055,27in 4K Gaming Monitor,1,389.99,04/10/19 21:43,"314 6th St, San Francisco, CA 94016" +194056,AAA Batteries (4-pack),1,2.99,04/22/19 17:58,"20 14th St, Los Angeles, CA 90001" +194057,AAA Batteries (4-pack),1,2.99,04/13/19 15:27,"937 Adams St, Los Angeles, CA 90001" +194058,Bose SoundSport Headphones,1,99.99,04/22/19 12:22,"557 6th St, Los Angeles, CA 90001" +194059,AAA Batteries (4-pack),1,2.99,04/27/19 11:29,"275 Meadow St, Portland, OR 97035" +194060,AA Batteries (4-pack),1,3.84,04/04/19 11:21,"185 Highland St, San Francisco, CA 94016" +194061,Lightning Charging Cable,1,14.95,04/26/19 17:50,"791 Ridge St, Seattle, WA 98101" +194062,Apple Airpods Headphones,1,150,04/22/19 20:01,"930 Lakeview St, Los Angeles, CA 90001" +194063,USB-C Charging Cable,1,11.95,04/05/19 02:12,"357 Sunset St, Los Angeles, CA 90001" +194064,iPhone,1,700,04/16/19 10:48,"862 Lincoln St, New York City, NY 10001" +194065,iPhone,1,700,04/08/19 12:56,"492 South St, Dallas, TX 75001" +194066,Apple Airpods Headphones,1,150,04/18/19 07:40,"846 Lincoln St, Boston, MA 02215" +194067,Bose SoundSport Headphones,1,99.99,04/30/19 18:10,"68 Madison St, Austin, TX 73301" +194068,27in 4K Gaming Monitor,1,389.99,04/26/19 13:41,"89 South St, San Francisco, CA 94016" +194069,27in FHD Monitor,1,149.99,04/21/19 15:17,"449 Highland St, Atlanta, GA 30301" +194070,Wired Headphones,1,11.99,04/08/19 20:04,"506 Forest St, Portland, OR 97035" +194071,Apple Airpods Headphones,1,150,04/11/19 08:48,"593 4th St, San Francisco, CA 94016" +194072,AA Batteries (4-pack),1,3.84,04/10/19 20:49,"234 Jackson St, San Francisco, CA 94016" +194073,AAA Batteries (4-pack),1,2.99,04/30/19 22:17,"87 8th St, Atlanta, GA 30301" +,,,,, +194074,iPhone,1,700,04/09/19 18:23,"508 8th St, New York City, NY 10001" +194074,27in FHD Monitor,1,149.99,04/09/19 18:23,"508 8th St, New York City, NY 10001" +194075,Google Phone,1,600,04/06/19 09:35,"129 1st St, Dallas, TX 75001" +194076,USB-C Charging Cable,1,11.95,04/20/19 19:35,"90 Church St, New York City, NY 10001" +194077,Apple Airpods Headphones,1,150,04/07/19 01:30,"748 South St, Dallas, TX 75001" +194078,AA Batteries (4-pack),2,3.84,04/14/19 15:19,"911 Sunset St, Portland, ME 04101" +194079,Lightning Charging Cable,1,14.95,04/16/19 12:00,"359 Dogwood St, San Francisco, CA 94016" +194080,AA Batteries (4-pack),1,3.84,04/27/19 00:51,"572 Pine St, Atlanta, GA 30301" +194081,USB-C Charging Cable,1,11.95,04/15/19 16:59,"147 Madison St, Los Angeles, CA 90001" +194082,Google Phone,1,600,04/24/19 19:23,"910 10th St, New York City, NY 10001" +194082,Wired Headphones,1,11.99,04/24/19 19:23,"910 10th St, New York City, NY 10001" +194083,20in Monitor,1,109.99,04/21/19 20:04,"595 Madison St, San Francisco, CA 94016" +194084,Wired Headphones,1,11.99,04/28/19 18:16,"856 Center St, New York City, NY 10001" +194085,Lightning Charging Cable,1,14.95,04/10/19 19:25,"299 Willow St, Los Angeles, CA 90001" +194086,Apple Airpods Headphones,1,150,04/01/19 20:16,"78 Ridge St, San Francisco, CA 94016" +194087,34in Ultrawide Monitor,1,379.99,04/22/19 05:10,"769 Maple St, Seattle, WA 98101" +194088,Bose SoundSport Headphones,1,99.99,04/22/19 09:58,"856 Jefferson St, Portland, OR 97035" +194089,Flatscreen TV,1,300,04/30/19 14:18,"965 Sunset St, Seattle, WA 98101" +194089,AAA Batteries (4-pack),1,2.99,04/30/19 14:18,"965 Sunset St, Seattle, WA 98101" +194090,Flatscreen TV,1,300,04/28/19 22:39,"214 13th St, Atlanta, GA 30301" +194091,iPhone,1,700,04/27/19 16:55,"947 Pine St, San Francisco, CA 94016" +194092,Apple Airpods Headphones,1,150,04/23/19 17:19,"732 1st St, Dallas, TX 75001" +194093,Wired Headphones,1,11.99,04/21/19 08:11,"141 Washington St, Seattle, WA 98101" +194094,Google Phone,1,600,04/10/19 10:34,"655 Elm St, San Francisco, CA 94016" +194095,Lightning Charging Cable,1,14.95,04/22/19 07:10,"312 9th St, Portland, OR 97035" +194096,Apple Airpods Headphones,1,150,04/14/19 13:40,"855 Center St, Los Angeles, CA 90001" +194097,34in Ultrawide Monitor,1,379.99,04/14/19 19:35,"91 Wilson St, Seattle, WA 98101" +194098,USB-C Charging Cable,1,11.95,04/01/19 17:02,"910 10th St, Los Angeles, CA 90001" +194099,Wired Headphones,1,11.99,04/07/19 12:29,"888 Highland St, San Francisco, CA 94016" +194100,Lightning Charging Cable,1,14.95,04/24/19 11:17,"693 11th St, San Francisco, CA 94016" +194101,Lightning Charging Cable,1,14.95,04/18/19 22:26,"331 Main St, San Francisco, CA 94016" +194102,20in Monitor,2,109.99,04/24/19 08:51,"361 Cedar St, San Francisco, CA 94016" +194103,Apple Airpods Headphones,1,150,04/09/19 15:49,"407 River St, Dallas, TX 75001" +194104,USB-C Charging Cable,1,11.95,04/07/19 03:09,"174 Ridge St, Los Angeles, CA 90001" +194105,ThinkPad Laptop,1,999.99,04/12/19 16:00,"239 Pine St, Atlanta, GA 30301" +194106,34in Ultrawide Monitor,1,379.99,04/26/19 15:46,"111 5th St, Los Angeles, CA 90001" +194107,AA Batteries (4-pack),1,3.84,04/10/19 22:07,"676 Sunset St, New York City, NY 10001" +194108,Lightning Charging Cable,2,14.95,04/07/19 17:01,"3 Sunset St, Atlanta, GA 30301" +194109,Wired Headphones,1,11.99,04/04/19 13:21,"289 Lakeview St, New York City, NY 10001" +194110,iPhone,1,700,04/20/19 00:48,"446 Adams St, Austin, TX 73301" +194111,Lightning Charging Cable,1,14.95,04/07/19 16:25,"927 Meadow St, Boston, MA 02215" +194112,AA Batteries (4-pack),1,3.84,04/28/19 20:05,"669 6th St, San Francisco, CA 94016" +194113,AAA Batteries (4-pack),1,2.99,04/18/19 20:16,"69 Church St, San Francisco, CA 94016" +194114,Lightning Charging Cable,1,14.95,04/30/19 06:47,"882 Johnson St, San Francisco, CA 94016" +194115,Vareebadd Phone,1,400,04/13/19 08:26,"419 Ridge St, Atlanta, GA 30301" +194116,Wired Headphones,1,11.99,04/03/19 13:53,"659 Jefferson St, San Francisco, CA 94016" +194117,AAA Batteries (4-pack),1,2.99,04/14/19 18:20,"890 Wilson St, San Francisco, CA 94016" +194118,Bose SoundSport Headphones,1,99.99,04/06/19 19:45,"205 Johnson St, Los Angeles, CA 90001" +194119,Lightning Charging Cable,1,14.95,04/24/19 14:25,"796 West St, San Francisco, CA 94016" +194120,Lightning Charging Cable,1,14.95,04/08/19 17:11,"68 Dogwood St, Dallas, TX 75001" +194121,USB-C Charging Cable,1,11.95,04/27/19 15:26,"363 Hill St, Boston, MA 02215" +194122,USB-C Charging Cable,1,11.95,04/01/19 19:23,"677 7th St, Los Angeles, CA 90001" +194123,Bose SoundSport Headphones,1,99.99,04/01/19 13:39,"389 Washington St, San Francisco, CA 94016" +194124,Apple Airpods Headphones,1,150,04/28/19 23:26,"972 River St, Dallas, TX 75001" +194125,AAA Batteries (4-pack),4,2.99,04/25/19 13:47,"734 Adams St, Los Angeles, CA 90001" +194126,Macbook Pro Laptop,1,1700,04/22/19 18:49,"404 Cherry St, Boston, MA 02215" +194127,27in FHD Monitor,1,149.99,04/19/19 04:57,"382 Center St, Atlanta, GA 30301" +194128,27in 4K Gaming Monitor,1,389.99,04/19/19 18:40,"848 2nd St, Seattle, WA 98101" +194129,Lightning Charging Cable,1,14.95,04/14/19 02:49,"229 14th St, New York City, NY 10001" +194130,USB-C Charging Cable,1,11.95,04/03/19 10:32,"668 Walnut St, Los Angeles, CA 90001" +194131,Wired Headphones,2,11.99,04/13/19 21:29,"913 2nd St, Austin, TX 73301" +194132,Lightning Charging Cable,1,14.95,04/21/19 12:33,"735 8th St, Dallas, TX 75001" +194133,iPhone,1,700,04/05/19 19:48,"550 11th St, Los Angeles, CA 90001" +194133,Wired Headphones,1,11.99,04/05/19 19:48,"550 11th St, Los Angeles, CA 90001" +194134,Vareebadd Phone,1,400,04/18/19 22:20,"692 Meadow St, Dallas, TX 75001" +194135,Lightning Charging Cable,2,14.95,04/22/19 18:47,"422 Church St, New York City, NY 10001" +194136,Wired Headphones,2,11.99,04/14/19 21:59,"767 11th St, Los Angeles, CA 90001" +194137,iPhone,1,700,04/23/19 19:44,"319 South St, Los Angeles, CA 90001" +194138,34in Ultrawide Monitor,1,379.99,04/19/19 19:56,"286 Main St, Dallas, TX 75001" +194139,USB-C Charging Cable,1,11.95,04/04/19 00:26,"793 Park St, Boston, MA 02215" +194140,Apple Airpods Headphones,1,150,04/16/19 13:44,"414 Spruce St, Atlanta, GA 30301" +194141,Apple Airpods Headphones,1,150,04/29/19 00:28,"774 Adams St, Boston, MA 02215" +194142,AA Batteries (4-pack),3,3.84,04/17/19 01:59,"165 Forest St, San Francisco, CA 94016" +194143,Lightning Charging Cable,1,14.95,04/20/19 13:13,"755 Madison St, San Francisco, CA 94016" +194144,27in 4K Gaming Monitor,1,389.99,04/28/19 02:23,"304 Spruce St, San Francisco, CA 94016" +194145,ThinkPad Laptop,1,999.99,04/07/19 14:03,"838 Lake St, Los Angeles, CA 90001" +194146,AAA Batteries (4-pack),1,2.99,04/09/19 13:41,"334 Jefferson St, San Francisco, CA 94016" +194146,20in Monitor,1,109.99,04/09/19 13:41,"334 Jefferson St, San Francisco, CA 94016" +194147,iPhone,1,700,04/22/19 11:25,"292 Lake St, San Francisco, CA 94016" +194147,Wired Headphones,1,11.99,04/22/19 11:25,"292 Lake St, San Francisco, CA 94016" +194148,Lightning Charging Cable,1,14.95,04/29/19 15:48,"778 Forest St, San Francisco, CA 94016" +194149,AA Batteries (4-pack),2,3.84,04/25/19 08:32,"114 Pine St, Portland, OR 97035" +194150,Lightning Charging Cable,1,14.95,04/24/19 01:49,"771 11th St, San Francisco, CA 94016" +194151,Google Phone,1,600,04/02/19 13:35,"468 Wilson St, Boston, MA 02215" +194152,Apple Airpods Headphones,1,150,04/30/19 17:04,"940 Hill St, San Francisco, CA 94016" +194153,AA Batteries (4-pack),1,3.84,04/21/19 09:01,"435 Adams St, New York City, NY 10001" +194154,Lightning Charging Cable,2,14.95,04/25/19 21:58,"585 Pine St, Los Angeles, CA 90001" +194155,Bose SoundSport Headphones,2,99.99,04/19/19 10:15,"664 Forest St, Seattle, WA 98101" +194156,Wired Headphones,1,11.99,04/25/19 13:03,"773 Park St, Atlanta, GA 30301" +194157,27in 4K Gaming Monitor,1,389.99,04/24/19 19:28,"302 2nd St, San Francisco, CA 94016" +194158,USB-C Charging Cable,1,11.95,04/28/19 14:51,"133 Church St, Dallas, TX 75001" +194159,AA Batteries (4-pack),1,3.84,05/01/19 00:47,"718 Cedar St, Boston, MA 02215" +194160,USB-C Charging Cable,1,11.95,04/30/19 13:45,"935 Sunset St, Seattle, WA 98101" +194161,Lightning Charging Cable,1,14.95,04/04/19 20:18,"417 Washington St, New York City, NY 10001" +194162,Wired Headphones,1,11.99,04/13/19 16:45,"961 14th St, San Francisco, CA 94016" +194163,Bose SoundSport Headphones,1,99.99,04/15/19 16:12,"55 Washington St, Los Angeles, CA 90001" +194164,Wired Headphones,1,11.99,04/19/19 20:00,"4 Dogwood St, Atlanta, GA 30301" +194165,Wired Headphones,1,11.99,04/13/19 09:51,"398 Highland St, Dallas, TX 75001" +194166,AA Batteries (4-pack),1,3.84,04/20/19 21:49,"798 Cedar St, Los Angeles, CA 90001" +194167,USB-C Charging Cable,1,11.95,04/30/19 13:10,"672 Highland St, New York City, NY 10001" +194168,Wired Headphones,1,11.99,04/02/19 15:11,"436 Madison St, Seattle, WA 98101" +194169,iPhone,1,700,04/04/19 21:38,"375 Ridge St, Atlanta, GA 30301" +194170,USB-C Charging Cable,1,11.95,04/10/19 13:55,"250 Adams St, San Francisco, CA 94016" +194171,Bose SoundSport Headphones,1,99.99,04/07/19 06:34,"662 Johnson St, New York City, NY 10001" +194172,AA Batteries (4-pack),3,3.84,04/27/19 23:02,"284 9th St, New York City, NY 10001" +194173,Google Phone,1,600,04/03/19 17:19,"607 10th St, Los Angeles, CA 90001" +194174,Macbook Pro Laptop,1,1700,04/07/19 19:58,"409 Cedar St, Los Angeles, CA 90001" +194175,Macbook Pro Laptop,1,1700,04/30/19 13:40,"570 Jefferson St, San Francisco, CA 94016" +194176,AAA Batteries (4-pack),1,2.99,04/10/19 14:24,"613 Cherry St, San Francisco, CA 94016" +194177,Wired Headphones,1,11.99,04/24/19 20:44,"702 River St, San Francisco, CA 94016" +194178,AAA Batteries (4-pack),1,2.99,04/12/19 10:44,"771 5th St, Los Angeles, CA 90001" +194178,Bose SoundSport Headphones,1,99.99,04/12/19 10:44,"771 5th St, Los Angeles, CA 90001" +194179,AA Batteries (4-pack),1,3.84,04/25/19 10:01,"881 9th St, Austin, TX 73301" +194180,27in 4K Gaming Monitor,1,389.99,04/23/19 19:47,"650 4th St, Los Angeles, CA 90001" +194181,34in Ultrawide Monitor,1,379.99,04/01/19 19:52,"923 Johnson St, San Francisco, CA 94016" +194182,AAA Batteries (4-pack),1,2.99,04/15/19 09:23,"310 Spruce St, Atlanta, GA 30301" +194183,27in FHD Monitor,1,149.99,04/13/19 15:29,"489 Pine St, Dallas, TX 75001" +194184,Apple Airpods Headphones,1,150,04/02/19 10:07,"765 Cedar St, New York City, NY 10001" +194185,Apple Airpods Headphones,1,150,04/11/19 16:35,"990 Dogwood St, New York City, NY 10001" +194186,Macbook Pro Laptop,1,1700,04/20/19 16:33,"138 Adams St, Boston, MA 02215" +194187,AAA Batteries (4-pack),2,2.99,04/19/19 12:09,"810 9th St, Austin, TX 73301" +194188,USB-C Charging Cable,1,11.95,04/29/19 21:50,"10 14th St, San Francisco, CA 94016" +194189,34in Ultrawide Monitor,1,379.99,04/17/19 15:16,"589 Hickory St, Atlanta, GA 30301" +194190,AAA Batteries (4-pack),1,2.99,04/07/19 22:51,"370 Lakeview St, Atlanta, GA 30301" +194191,AA Batteries (4-pack),1,3.84,04/02/19 09:06,"631 Cedar St, Portland, ME 04101" +194192,Macbook Pro Laptop,1,1700,04/02/19 10:26,"122 Dogwood St, New York City, NY 10001" +194193,Wired Headphones,1,11.99,04/05/19 15:23,"858 Ridge St, Austin, TX 73301" +194194,Wired Headphones,1,11.99,04/14/19 17:42,"335 Jefferson St, Seattle, WA 98101" +194195,Apple Airpods Headphones,1,150,04/11/19 10:03,"661 Spruce St, San Francisco, CA 94016" +194196,USB-C Charging Cable,1,11.95,04/23/19 12:54,"189 Spruce St, San Francisco, CA 94016" +194197,Google Phone,1,600,04/22/19 22:03,"290 Hickory St, San Francisco, CA 94016" +194198,AA Batteries (4-pack),1,3.84,04/09/19 10:31,"254 4th St, Portland, ME 04101" +194199,Apple Airpods Headphones,1,150,04/16/19 14:26,"905 Johnson St, Los Angeles, CA 90001" +194200,Wired Headphones,1,11.99,04/17/19 09:57,"697 Lincoln St, Los Angeles, CA 90001" +194201,27in FHD Monitor,1,149.99,04/16/19 15:26,"130 Center St, San Francisco, CA 94016" +194202,AAA Batteries (4-pack),3,2.99,04/20/19 12:50,"147 Center St, Boston, MA 02215" +194203,AA Batteries (4-pack),1,3.84,04/28/19 12:19,"720 5th St, Los Angeles, CA 90001" +194204,Wired Headphones,1,11.99,04/06/19 13:02,"867 4th St, Boston, MA 02215" +194205,Bose SoundSport Headphones,1,99.99,04/22/19 13:11,"947 4th St, Boston, MA 02215" +194206,Apple Airpods Headphones,1,150,04/06/19 15:51,"159 West St, San Francisco, CA 94016" +194207,AAA Batteries (4-pack),1,2.99,04/07/19 19:21,"613 13th St, San Francisco, CA 94016" +194208,AA Batteries (4-pack),3,3.84,04/24/19 10:15,"495 1st St, Los Angeles, CA 90001" +194208,AAA Batteries (4-pack),6,2.99,04/24/19 10:15,"495 1st St, Los Angeles, CA 90001" +194209,Lightning Charging Cable,1,14.95,04/30/19 17:00,"603 14th St, New York City, NY 10001" +194210,Flatscreen TV,1,300,04/28/19 10:18,"210 Washington St, Seattle, WA 98101" +,,,,, +194211,Wired Headphones,1,11.99,04/17/19 18:55,"368 1st St, San Francisco, CA 94016" +194212,iPhone,1,700,04/28/19 20:58,"871 10th St, New York City, NY 10001" +194213,27in 4K Gaming Monitor,1,389.99,04/23/19 18:15,"339 4th St, Dallas, TX 75001" +194214,Lightning Charging Cable,1,14.95,04/08/19 15:43,"243 River St, Dallas, TX 75001" +194215,Macbook Pro Laptop,1,1700,04/04/19 12:20,"223 14th St, New York City, NY 10001" +194216,AAA Batteries (4-pack),1,2.99,04/10/19 10:39,"632 11th St, Boston, MA 02215" +194217,34in Ultrawide Monitor,1,379.99,04/06/19 08:30,"443 Chestnut St, Los Angeles, CA 90001" +194218,USB-C Charging Cable,1,11.95,04/21/19 14:44,"446 South St, Los Angeles, CA 90001" +194219,34in Ultrawide Monitor,1,379.99,04/08/19 14:10,"468 Elm St, San Francisco, CA 94016" +194220,20in Monitor,1,109.99,04/08/19 17:49,"785 Lake St, Los Angeles, CA 90001" +194221,Wired Headphones,1,11.99,04/17/19 10:01,"31 Chestnut St, Atlanta, GA 30301" +194222,ThinkPad Laptop,1,999.99,04/13/19 18:01,"382 River St, New York City, NY 10001" +194223,Wired Headphones,1,11.99,04/01/19 14:38,"187 Wilson St, Los Angeles, CA 90001" +194224,Wired Headphones,1,11.99,04/25/19 16:47,"290 Highland St, Boston, MA 02215" +194225,20in Monitor,1,109.99,04/28/19 17:29,"29 8th St, Portland, OR 97035" +194226,27in FHD Monitor,1,149.99,04/01/19 09:24,"39 Lincoln St, New York City, NY 10001" +194227,Apple Airpods Headphones,1,150,04/30/19 20:16,"727 1st St, San Francisco, CA 94016" +194228,AAA Batteries (4-pack),3,2.99,04/14/19 21:38,"714 Jefferson St, Los Angeles, CA 90001" +194229,Bose SoundSport Headphones,2,99.99,04/28/19 18:51,"936 Walnut St, San Francisco, CA 94016" +194230,Apple Airpods Headphones,1,150,04/21/19 10:08,"84 Johnson St, Los Angeles, CA 90001" +194231,iPhone,1,700,04/01/19 20:33,"630 8th St, Boston, MA 02215" +194232,AA Batteries (4-pack),1,3.84,04/18/19 10:23,"131 Lincoln St, San Francisco, CA 94016" +194233,Wired Headphones,1,11.99,04/27/19 22:44,"806 9th St, San Francisco, CA 94016" +194234,AAA Batteries (4-pack),1,2.99,04/08/19 15:05,"580 7th St, Portland, OR 97035" +194235,AA Batteries (4-pack),2,3.84,04/21/19 10:51,"549 Church St, New York City, NY 10001" +194236,USB-C Charging Cable,1,11.95,04/08/19 17:24,"551 Forest St, Seattle, WA 98101" +194237,Apple Airpods Headphones,1,150,04/17/19 11:52,"790 Cedar St, Dallas, TX 75001" +194238,AAA Batteries (4-pack),1,2.99,04/19/19 12:45,"688 Hickory St, Seattle, WA 98101" +194239,Lightning Charging Cable,1,14.95,04/29/19 20:20,"495 2nd St, New York City, NY 10001" +194239,Wired Headphones,2,11.99,04/29/19 20:20,"495 2nd St, New York City, NY 10001" +194240,Apple Airpods Headphones,1,150,04/04/19 18:55,"94 Jackson St, New York City, NY 10001" +194241,Lightning Charging Cable,1,14.95,04/10/19 08:58,"289 9th St, Boston, MA 02215" +194242,USB-C Charging Cable,1,11.95,04/07/19 10:11,"16 Hickory St, Dallas, TX 75001" +194243,AA Batteries (4-pack),1,3.84,04/04/19 23:03,"666 Maple St, Atlanta, GA 30301" +194244,Wired Headphones,1,11.99,04/29/19 16:31,"534 Johnson St, Seattle, WA 98101" +194245,27in FHD Monitor,1,149.99,04/26/19 07:19,"762 1st St, Los Angeles, CA 90001" +194246,Macbook Pro Laptop,1,1700,04/08/19 13:45,"515 Cherry St, Portland, OR 97035" +194247,AA Batteries (4-pack),1,3.84,04/14/19 15:43,"203 14th St, Seattle, WA 98101" +194248,27in 4K Gaming Monitor,1,389.99,04/14/19 19:36,"764 Lakeview St, Seattle, WA 98101" +194249,Wired Headphones,1,11.99,04/05/19 16:55,"851 2nd St, New York City, NY 10001" +194250,AAA Batteries (4-pack),1,2.99,04/24/19 09:02,"594 North St, San Francisco, CA 94016" +194251,27in 4K Gaming Monitor,1,389.99,04/11/19 12:06,"26 River St, San Francisco, CA 94016" +194252,Flatscreen TV,1,300,04/14/19 23:24,"81 Meadow St, Los Angeles, CA 90001" +194253,Wired Headphones,1,11.99,04/10/19 12:38,"318 Sunset St, Dallas, TX 75001" +194254,Apple Airpods Headphones,1,150,04/21/19 15:11,"17 Walnut St, Boston, MA 02215" +194255,Apple Airpods Headphones,1,150,04/11/19 13:25,"120 2nd St, New York City, NY 10001" +194256,AAA Batteries (4-pack),2,2.99,04/28/19 12:41,"59 South St, Atlanta, GA 30301" +194257,Lightning Charging Cable,1,14.95,04/16/19 21:17,"711 Johnson St, Los Angeles, CA 90001" +194258,USB-C Charging Cable,1,11.95,04/07/19 20:02,"239 7th St, Portland, OR 97035" +194259,AA Batteries (4-pack),2,3.84,04/28/19 20:36,"668 7th St, New York City, NY 10001" +194260,AA Batteries (4-pack),2,3.84,04/04/19 14:39,"699 Church St, Los Angeles, CA 90001" +194261,AAA Batteries (4-pack),2,2.99,04/01/19 20:24,"265 4th St, New York City, NY 10001" +194262,AAA Batteries (4-pack),1,2.99,04/12/19 13:44,"989 Cedar St, Los Angeles, CA 90001" +194263,AA Batteries (4-pack),1,3.84,04/21/19 23:21,"229 Walnut St, New York City, NY 10001" +194263,AAA Batteries (4-pack),1,2.99,04/21/19 23:21,"229 Walnut St, New York City, NY 10001" +194264,Macbook Pro Laptop,1,1700,04/14/19 00:29,"615 Highland St, New York City, NY 10001" +194265,USB-C Charging Cable,2,11.95,04/30/19 19:27,"932 Maple St, New York City, NY 10001" +194266,AAA Batteries (4-pack),3,2.99,04/24/19 19:39,"506 South St, San Francisco, CA 94016" +,,,,, +194267,AA Batteries (4-pack),1,3.84,04/14/19 16:07,"920 Church St, Seattle, WA 98101" +194268,Apple Airpods Headphones,1,150,04/19/19 19:23,"866 Chestnut St, San Francisco, CA 94016" +194269,Google Phone,1,600,04/19/19 21:10,"415 South St, Portland, OR 97035" +194269,Wired Headphones,1,11.99,04/19/19 21:10,"415 South St, Portland, OR 97035" +194270,Wired Headphones,1,11.99,04/08/19 16:08,"69 13th St, Boston, MA 02215" +194271,AAA Batteries (4-pack),3,2.99,04/27/19 12:03,"209 Hickory St, Los Angeles, CA 90001" +194272,AAA Batteries (4-pack),1,2.99,04/30/19 00:22,"20 Meadow St, Seattle, WA 98101" +194273,34in Ultrawide Monitor,1,379.99,04/14/19 22:52,"491 South St, San Francisco, CA 94016" +194274,Apple Airpods Headphones,1,150,04/21/19 17:36,"800 Ridge St, Seattle, WA 98101" +194275,Lightning Charging Cable,1,14.95,04/10/19 16:15,"277 4th St, Seattle, WA 98101" +194276,AAA Batteries (4-pack),2,2.99,04/10/19 21:13,"128 5th St, San Francisco, CA 94016" +194276,AA Batteries (4-pack),1,3.84,04/10/19 21:13,"128 5th St, San Francisco, CA 94016" +194277,Wired Headphones,2,11.99,04/10/19 14:35,"666 Hickory St, Atlanta, GA 30301" +194278,AA Batteries (4-pack),1,3.84,04/17/19 19:19,"202 Willow St, Atlanta, GA 30301" +194279,Bose SoundSport Headphones,1,99.99,04/04/19 21:06,"521 Walnut St, Los Angeles, CA 90001" +194280,Lightning Charging Cable,1,14.95,04/23/19 18:28,"973 Jefferson St, San Francisco, CA 94016" +194281,AAA Batteries (4-pack),4,2.99,04/05/19 20:00,"68 5th St, New York City, NY 10001" +194282,27in FHD Monitor,1,149.99,04/10/19 14:17,"336 Forest St, Los Angeles, CA 90001" +194283,34in Ultrawide Monitor,1,379.99,04/26/19 20:36,"965 7th St, New York City, NY 10001" +194284,USB-C Charging Cable,2,11.95,04/01/19 18:20,"8 Center St, Dallas, TX 75001" +194285,Flatscreen TV,1,300,04/19/19 10:29,"314 River St, Boston, MA 02215" +194286,Wired Headphones,1,11.99,04/14/19 09:38,"840 West St, Los Angeles, CA 90001" +194287,ThinkPad Laptop,1,999.99,04/26/19 03:49,"479 10th St, New York City, NY 10001" +194288,Wired Headphones,1,11.99,04/03/19 02:49,"430 13th St, San Francisco, CA 94016" +194289,AAA Batteries (4-pack),2,2.99,04/26/19 08:54,"847 13th St, New York City, NY 10001" +194290,Lightning Charging Cable,1,14.95,04/29/19 15:41,"308 Lake St, Austin, TX 73301" +194291,27in FHD Monitor,1,149.99,04/01/19 10:13,"257 River St, Boston, MA 02215" +,,,,, +194292,Lightning Charging Cable,1,14.95,04/04/19 18:55,"900 Johnson St, Austin, TX 73301" +194293,Bose SoundSport Headphones,1,99.99,04/18/19 10:12,"623 Wilson St, Dallas, TX 75001" +194294,20in Monitor,1,109.99,04/04/19 08:17,"583 8th St, Seattle, WA 98101" +194295,Apple Airpods Headphones,1,150,04/12/19 15:05,"942 Hill St, Portland, OR 97035" +194296,27in 4K Gaming Monitor,1,389.99,04/22/19 18:07,"365 4th St, Boston, MA 02215" +194297,AAA Batteries (4-pack),1,2.99,04/03/19 20:55,"844 Church St, Los Angeles, CA 90001" +194298,AAA Batteries (4-pack),2,2.99,04/15/19 12:02,"553 6th St, Atlanta, GA 30301" +194299,Lightning Charging Cable,2,14.95,04/26/19 23:44,"863 River St, Seattle, WA 98101" +194300,Bose SoundSport Headphones,1,99.99,04/17/19 20:54,"31 Center St, Los Angeles, CA 90001" +194301,USB-C Charging Cable,1,11.95,04/01/19 19:05,"646 Church St, Dallas, TX 75001" +194302,27in 4K Gaming Monitor,1,389.99,04/18/19 21:44,"803 Main St, Portland, ME 04101" +194303,USB-C Charging Cable,1,11.95,04/15/19 11:34,"285 Ridge St, Seattle, WA 98101" +194303,34in Ultrawide Monitor,1,379.99,04/15/19 11:34,"285 Ridge St, Seattle, WA 98101" +194304,AA Batteries (4-pack),1,3.84,04/05/19 09:16,"48 West St, Los Angeles, CA 90001" +194305,Wired Headphones,1,11.99,04/24/19 07:06,"373 6th St, New York City, NY 10001" +194306,Lightning Charging Cable,2,14.95,04/17/19 06:48,"204 13th St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +194307,AAA Batteries (4-pack),1,2.99,04/19/19 16:32,"919 11th St, New York City, NY 10001" +194308,Apple Airpods Headphones,1,150,04/12/19 11:56,"402 14th St, Seattle, WA 98101" +194309,Flatscreen TV,1,300,04/12/19 16:32,"766 South St, San Francisco, CA 94016" +194310,AA Batteries (4-pack),1,3.84,04/14/19 20:06,"382 Lakeview St, Los Angeles, CA 90001" +194311,USB-C Charging Cable,1,11.95,04/12/19 02:04,"491 Jefferson St, San Francisco, CA 94016" +194312,Google Phone,1,600,04/29/19 11:27,"460 Lincoln St, Dallas, TX 75001" +194313,Wired Headphones,1,11.99,04/02/19 19:58,"384 13th St, San Francisco, CA 94016" +194314,Bose SoundSport Headphones,1,99.99,04/02/19 11:15,"563 Lake St, Dallas, TX 75001" +194315,Apple Airpods Headphones,1,150,04/29/19 18:29,"338 Johnson St, San Francisco, CA 94016" +194316,LG Dryer,1,600.0,04/05/19 18:33,"542 Jefferson St, Los Angeles, CA 90001" +194317,27in FHD Monitor,1,149.99,04/21/19 13:48,"234 Pine St, Los Angeles, CA 90001" +194318,Wired Headphones,1,11.99,04/17/19 02:11,"806 Walnut St, San Francisco, CA 94016" +194319,USB-C Charging Cable,1,11.95,04/19/19 22:53,"226 Chestnut St, Seattle, WA 98101" +194320,27in 4K Gaming Monitor,1,389.99,04/05/19 11:41,"991 6th St, San Francisco, CA 94016" +194321,USB-C Charging Cable,1,11.95,04/13/19 11:34,"114 Cherry St, Seattle, WA 98101" +194322,LG Dryer,1,600.0,04/06/19 01:03,"10 1st St, San Francisco, CA 94016" +194323,USB-C Charging Cable,1,11.95,04/15/19 08:27,"372 6th St, Los Angeles, CA 90001" +194324,Wired Headphones,1,11.99,04/18/19 20:28,"896 Madison St, San Francisco, CA 94016" +194325,USB-C Charging Cable,1,11.95,04/16/19 19:03,"655 Lincoln St, Los Angeles, CA 90001" +194326,Lightning Charging Cable,1,14.95,04/25/19 20:49,"594 Center St, Los Angeles, CA 90001" +194327,Bose SoundSport Headphones,1,99.99,04/09/19 07:22,"646 Chestnut St, Boston, MA 02215" +194328,Lightning Charging Cable,1,14.95,04/11/19 19:43,"879 Lakeview St, Los Angeles, CA 90001" +194329,USB-C Charging Cable,1,11.95,04/20/19 14:58,"204 Park St, Seattle, WA 98101" +194330,Wired Headphones,1,11.99,04/30/19 10:07,"567 Maple St, San Francisco, CA 94016" +194331,USB-C Charging Cable,1,11.95,04/14/19 20:16,"956 River St, New York City, NY 10001" +194332,27in FHD Monitor,1,149.99,04/13/19 22:39,"873 Pine St, San Francisco, CA 94016" +194333,Google Phone,1,600,04/13/19 12:46,"177 4th St, Los Angeles, CA 90001" +194334,AA Batteries (4-pack),1,3.84,04/06/19 08:44,"536 Center St, Los Angeles, CA 90001" +194335,34in Ultrawide Monitor,1,379.99,04/08/19 21:00,"751 Maple St, Atlanta, GA 30301" +194336,Lightning Charging Cable,1,14.95,04/09/19 13:57,"692 7th St, Los Angeles, CA 90001" +194337,Lightning Charging Cable,1,14.95,04/26/19 16:41,"924 North St, San Francisco, CA 94016" +194338,AAA Batteries (4-pack),1,2.99,04/03/19 20:12,"342 Highland St, Boston, MA 02215" +194339,27in 4K Gaming Monitor,1,389.99,04/12/19 16:11,"595 1st St, Austin, TX 73301" +194340,Google Phone,1,600,04/20/19 15:30,"969 Madison St, Seattle, WA 98101" +194341,Bose SoundSport Headphones,1,99.99,04/29/19 20:49,"574 Hickory St, Los Angeles, CA 90001" +194342,AA Batteries (4-pack),1,3.84,04/07/19 04:02,"913 Madison St, Boston, MA 02215" +194343,AA Batteries (4-pack),1,3.84,04/18/19 06:54,"332 Cherry St, San Francisco, CA 94016" +,,,,, +194344,AAA Batteries (4-pack),1,2.99,04/20/19 13:57,"256 Johnson St, Los Angeles, CA 90001" +194345,34in Ultrawide Monitor,1,379.99,04/14/19 17:57,"446 Johnson St, Dallas, TX 75001" +194346,Macbook Pro Laptop,1,1700,04/13/19 10:25,"857 Lakeview St, Boston, MA 02215" +194346,LG Dryer,1,600.0,04/13/19 10:25,"857 Lakeview St, Boston, MA 02215" +194347,27in 4K Gaming Monitor,1,389.99,04/03/19 16:53,"832 Ridge St, Boston, MA 02215" +194348,Lightning Charging Cable,1,14.95,04/02/19 15:07,"264 Jackson St, Portland, OR 97035" +194349,Apple Airpods Headphones,1,150,04/03/19 09:22,"356 Johnson St, Los Angeles, CA 90001" +194350,Google Phone,1,600,04/14/19 17:42,"574 Willow St, Los Angeles, CA 90001" +194351,iPhone,1,700,04/14/19 09:38,"643 9th St, Portland, OR 97035" +194352,AAA Batteries (4-pack),1,2.99,04/08/19 14:17,"290 14th St, Austin, TX 73301" +194353,USB-C Charging Cable,1,11.95,04/03/19 19:05,"772 South St, Los Angeles, CA 90001" +194354,27in FHD Monitor,1,149.99,04/05/19 18:22,"885 Lake St, Atlanta, GA 30301" +194355,27in FHD Monitor,1,149.99,04/27/19 19:44,"573 7th St, Dallas, TX 75001" +194356,Wired Headphones,1,11.99,04/04/19 21:23,"463 Maple St, Boston, MA 02215" +194356,AA Batteries (4-pack),1,3.84,04/04/19 21:23,"463 Maple St, Boston, MA 02215" +194357,AA Batteries (4-pack),1,3.84,04/11/19 08:50,"349 10th St, Los Angeles, CA 90001" +194358,34in Ultrawide Monitor,1,379.99,04/20/19 11:40,"772 Elm St, Los Angeles, CA 90001" +194359,Lightning Charging Cable,1,14.95,04/12/19 07:51,"154 Park St, San Francisco, CA 94016" +194359,Lightning Charging Cable,1,14.95,04/12/19 07:51,"154 Park St, San Francisco, CA 94016" +194360,USB-C Charging Cable,1,11.95,04/14/19 01:31,"660 Lincoln St, New York City, NY 10001" +194361,Bose SoundSport Headphones,1,99.99,04/17/19 18:03,"377 Cherry St, Los Angeles, CA 90001" +194362,34in Ultrawide Monitor,1,379.99,04/04/19 15:19,"481 Hickory St, San Francisco, CA 94016" +194363,AAA Batteries (4-pack),1,2.99,04/10/19 17:04,"344 14th St, New York City, NY 10001" +194364,Apple Airpods Headphones,1,150,04/22/19 17:26,"890 Center St, Dallas, TX 75001" +194365,AAA Batteries (4-pack),2,2.99,04/10/19 11:39,"911 Johnson St, San Francisco, CA 94016" +194366,AAA Batteries (4-pack),2,2.99,04/18/19 15:06,"300 Sunset St, Austin, TX 73301" +194367,iPhone,1,700,04/23/19 12:11,"998 Cherry St, Los Angeles, CA 90001" +194368,27in FHD Monitor,1,149.99,04/22/19 12:42,"115 Center St, San Francisco, CA 94016" +194369,Lightning Charging Cable,1,14.95,04/14/19 13:48,"985 Park St, Seattle, WA 98101" +194370,USB-C Charging Cable,1,11.95,04/30/19 12:36,"176 Lincoln St, Seattle, WA 98101" +194371,AA Batteries (4-pack),1,3.84,04/02/19 17:57,"431 5th St, Los Angeles, CA 90001" +194372,Apple Airpods Headphones,1,150,04/11/19 08:52,"12 8th St, Los Angeles, CA 90001" +194373,USB-C Charging Cable,1,11.95,04/02/19 11:51,"325 Madison St, San Francisco, CA 94016" +194374,20in Monitor,1,109.99,04/21/19 00:33,"789 West St, Atlanta, GA 30301" +194375,27in 4K Gaming Monitor,1,389.99,04/13/19 09:58,"124 Cedar St, Los Angeles, CA 90001" +194375,Lightning Charging Cable,1,14.95,04/13/19 09:58,"124 Cedar St, Los Angeles, CA 90001" +194376,Wired Headphones,1,11.99,04/01/19 09:01,"515 Lakeview St, Portland, ME 04101" +194377,Apple Airpods Headphones,1,150,04/25/19 10:18,"253 Lake St, Austin, TX 73301" +194378,Lightning Charging Cable,1,14.95,04/30/19 09:06,"193 Park St, Atlanta, GA 30301" +194379,iPhone,1,700,04/16/19 17:13,"89 Jackson St, Dallas, TX 75001" +194380,20in Monitor,1,109.99,04/29/19 21:02,"948 Cedar St, Atlanta, GA 30301" +194381,ThinkPad Laptop,1,999.99,04/19/19 17:43,"697 Park St, Los Angeles, CA 90001" +194382,Google Phone,1,600,04/04/19 18:05,"125 9th St, Dallas, TX 75001" +194383,AA Batteries (4-pack),1,3.84,04/14/19 10:26,"277 Church St, San Francisco, CA 94016" +194384,Apple Airpods Headphones,1,150,04/30/19 10:05,"669 Washington St, Boston, MA 02215" +194385,34in Ultrawide Monitor,1,379.99,04/04/19 23:14,"94 Cherry St, Los Angeles, CA 90001" +194386,Wired Headphones,1,11.99,04/15/19 13:20,"509 North St, Portland, OR 97035" +194387,Flatscreen TV,1,300,04/24/19 12:57,"202 Cherry St, Los Angeles, CA 90001" +194388,iPhone,1,700,04/21/19 11:01,"67 South St, New York City, NY 10001" +194389,AA Batteries (4-pack),1,3.84,04/23/19 22:50,"748 Lincoln St, Dallas, TX 75001" +194390,Lightning Charging Cable,1,14.95,04/29/19 23:04,"195 1st St, San Francisco, CA 94016" +194391,Google Phone,1,600,04/27/19 14:18,"422 Johnson St, Austin, TX 73301" +194391,USB-C Charging Cable,1,11.95,04/27/19 14:18,"422 Johnson St, Austin, TX 73301" +194392,27in FHD Monitor,1,149.99,04/28/19 11:37,"208 Madison St, Austin, TX 73301" +194393,Macbook Pro Laptop,1,1700,04/10/19 21:22,"958 6th St, Los Angeles, CA 90001" +194394,27in 4K Gaming Monitor,1,389.99,04/24/19 11:39,"140 Maple St, Atlanta, GA 30301" +194395,34in Ultrawide Monitor,1,379.99,04/16/19 12:20,"665 Madison St, Dallas, TX 75001" +194396,Apple Airpods Headphones,1,150,04/09/19 08:39,"730 14th St, Seattle, WA 98101" +194397,USB-C Charging Cable,1,11.95,04/19/19 01:39,"185 Ridge St, New York City, NY 10001" +194398,Apple Airpods Headphones,1,150,04/04/19 14:51,"646 West St, San Francisco, CA 94016" +194399,Apple Airpods Headphones,1,150,04/29/19 04:25,"810 Madison St, San Francisco, CA 94016" +194400,AA Batteries (4-pack),1,3.84,04/03/19 07:49,"839 Meadow St, Austin, TX 73301" +194401,AA Batteries (4-pack),1,3.84,04/25/19 06:16,"259 2nd St, Portland, ME 04101" +194402,USB-C Charging Cable,1,11.95,04/01/19 18:53,"612 Lake St, Atlanta, GA 30301" +194403,AA Batteries (4-pack),1,3.84,04/28/19 17:24,"69 Walnut St, Dallas, TX 75001" +194404,Google Phone,1,600,04/30/19 21:05,"415 Jefferson St, San Francisco, CA 94016" +194405,Wired Headphones,2,11.99,04/27/19 11:09,"450 Jefferson St, Dallas, TX 75001" +194406,Google Phone,1,600,04/01/19 15:48,"519 1st St, New York City, NY 10001" +194407,AAA Batteries (4-pack),1,2.99,04/30/19 05:41,"428 Meadow St, San Francisco, CA 94016" +194408,AA Batteries (4-pack),2,3.84,04/22/19 19:36,"280 Lake St, Dallas, TX 75001" +194409,Flatscreen TV,1,300,04/18/19 13:35,"312 Center St, New York City, NY 10001" +194410,iPhone,1,700,04/18/19 15:45,"540 Dogwood St, New York City, NY 10001" +194411,ThinkPad Laptop,1,999.99,04/25/19 10:11,"855 River St, San Francisco, CA 94016" +194412,AAA Batteries (4-pack),4,2.99,04/17/19 18:34,"188 River St, New York City, NY 10001" +194413,Bose SoundSport Headphones,1,99.99,04/26/19 10:21,"77 North St, San Francisco, CA 94016" +194414,USB-C Charging Cable,1,11.95,04/20/19 10:32,"343 Willow St, San Francisco, CA 94016" +194415,Bose SoundSport Headphones,1,99.99,04/30/19 15:39,"206 Dogwood St, Los Angeles, CA 90001" +194416,AAA Batteries (4-pack),1,2.99,04/02/19 13:20,"878 Forest St, Boston, MA 02215" +194417,Lightning Charging Cable,1,14.95,04/05/19 21:35,"200 13th St, Atlanta, GA 30301" +194418,Apple Airpods Headphones,1,150,04/23/19 11:51,"513 4th St, Boston, MA 02215" +194419,AAA Batteries (4-pack),1,2.99,04/13/19 18:35,"890 Washington St, San Francisco, CA 94016" +194420,USB-C Charging Cable,1,11.95,04/09/19 21:36,"888 12th St, Los Angeles, CA 90001" +194421,Apple Airpods Headphones,1,150,04/07/19 18:26,"569 9th St, San Francisco, CA 94016" +194422,Lightning Charging Cable,1,14.95,04/10/19 11:13,"641 Madison St, Atlanta, GA 30301" +194423,Lightning Charging Cable,1,14.95,04/19/19 23:49,"326 Cedar St, Dallas, TX 75001" +194424,Lightning Charging Cable,1,14.95,04/14/19 10:15,"615 Pine St, Dallas, TX 75001" +194425,USB-C Charging Cable,1,11.95,04/27/19 14:51,"311 Madison St, Austin, TX 73301" +194426,Apple Airpods Headphones,1,150,04/10/19 16:05,"910 Main St, Boston, MA 02215" +194427,iPhone,1,700,04/02/19 13:05,"534 14th St, Los Angeles, CA 90001" +194428,AAA Batteries (4-pack),1,2.99,04/12/19 09:38,"691 Cherry St, Portland, OR 97035" +194429,USB-C Charging Cable,1,11.95,04/05/19 15:10,"840 Johnson St, Atlanta, GA 30301" +194430,USB-C Charging Cable,1,11.95,04/29/19 11:20,"995 14th St, San Francisco, CA 94016" +194431,Lightning Charging Cable,1,14.95,04/12/19 11:09,"106 1st St, Dallas, TX 75001" +194432,USB-C Charging Cable,2,11.95,04/12/19 13:41,"220 Chestnut St, Boston, MA 02215" +194433,Lightning Charging Cable,1,14.95,04/24/19 23:44,"10 Park St, San Francisco, CA 94016" +194434,Wired Headphones,1,11.99,04/12/19 22:35,"841 14th St, San Francisco, CA 94016" +194435,Wired Headphones,1,11.99,04/21/19 13:41,"635 8th St, New York City, NY 10001" +194436,Bose SoundSport Headphones,1,99.99,04/09/19 16:03,"142 Highland St, New York City, NY 10001" +194437,Wired Headphones,1,11.99,04/02/19 10:52,"483 Forest St, Los Angeles, CA 90001" +194438,Apple Airpods Headphones,1,150,04/10/19 22:59,"433 Lake St, Boston, MA 02215" +194439,AA Batteries (4-pack),1,3.84,04/25/19 20:50,"458 Park St, Los Angeles, CA 90001" +194440,AA Batteries (4-pack),1,3.84,04/17/19 20:05,"645 Sunset St, Austin, TX 73301" +194441,AAA Batteries (4-pack),2,2.99,04/19/19 18:04,"7 9th St, Austin, TX 73301" +194442,ThinkPad Laptop,1,999.99,04/25/19 14:43,"634 Walnut St, San Francisco, CA 94016" +194443,27in 4K Gaming Monitor,1,389.99,04/01/19 10:32,"905 Madison St, Seattle, WA 98101" +194444,34in Ultrawide Monitor,1,379.99,04/18/19 15:24,"348 Washington St, Austin, TX 73301" +194445,34in Ultrawide Monitor,1,379.99,04/27/19 18:26,"292 Dogwood St, Boston, MA 02215" +194446,AAA Batteries (4-pack),2,2.99,04/17/19 15:27,"562 Main St, Dallas, TX 75001" +194447,Wired Headphones,1,11.99,04/13/19 12:23,"671 Washington St, San Francisco, CA 94016" +194448,Bose SoundSport Headphones,1,99.99,04/12/19 06:44,"337 Pine St, New York City, NY 10001" +194449,Wired Headphones,1,11.99,04/11/19 12:33,"726 Hill St, Los Angeles, CA 90001" +194450,AA Batteries (4-pack),1,3.84,04/08/19 15:12,"534 Lake St, New York City, NY 10001" +194451,AAA Batteries (4-pack),2,2.99,04/16/19 10:01,"926 Spruce St, Los Angeles, CA 90001" +194452,34in Ultrawide Monitor,1,379.99,04/16/19 00:35,"502 Jackson St, New York City, NY 10001" +194453,AAA Batteries (4-pack),1,2.99,04/17/19 23:36,"71 Pine St, Atlanta, GA 30301" +194454,AAA Batteries (4-pack),1,2.99,04/12/19 20:09,"488 12th St, Seattle, WA 98101" +194455,27in FHD Monitor,1,149.99,04/20/19 09:38,"557 Hill St, New York City, NY 10001" +194456,34in Ultrawide Monitor,1,379.99,04/04/19 04:14,"960 10th St, San Francisco, CA 94016" +194457,USB-C Charging Cable,1,11.95,04/21/19 08:35,"325 Park St, Portland, OR 97035" +194458,Google Phone,1,600,04/18/19 13:02,"333 2nd St, San Francisco, CA 94016" +194459,USB-C Charging Cable,1,11.95,04/06/19 13:35,"22 13th St, Boston, MA 02215" +194460,Lightning Charging Cable,1,14.95,04/01/19 14:22,"681 Cherry St, New York City, NY 10001" +194461,Wired Headphones,2,11.99,04/13/19 06:41,"844 Jefferson St, Dallas, TX 75001" +194462,AAA Batteries (4-pack),2,2.99,04/03/19 17:53,"548 Forest St, San Francisco, CA 94016" +194463,27in 4K Gaming Monitor,1,389.99,04/09/19 10:34,"66 12th St, Portland, OR 97035" +194464,Lightning Charging Cable,2,14.95,04/13/19 15:18,"363 1st St, New York City, NY 10001" +194465,Wired Headphones,1,11.99,04/15/19 13:19,"308 Elm St, San Francisco, CA 94016" +194466,Bose SoundSport Headphones,1,99.99,04/23/19 11:31,"154 Walnut St, Los Angeles, CA 90001" +194467,USB-C Charging Cable,1,11.95,04/12/19 16:09,"950 Wilson St, Dallas, TX 75001" +194468,Wired Headphones,1,11.99,04/07/19 21:44,"197 Church St, New York City, NY 10001" +194469,Google Phone,1,600,04/25/19 11:30,"195 Meadow St, Austin, TX 73301" +194469,USB-C Charging Cable,1,11.95,04/25/19 11:30,"195 Meadow St, Austin, TX 73301" +194470,34in Ultrawide Monitor,1,379.99,04/05/19 12:30,"770 Adams St, Portland, OR 97035" +194471,AA Batteries (4-pack),2,3.84,04/25/19 21:38,"424 8th St, San Francisco, CA 94016" +194472,Vareebadd Phone,1,400,04/21/19 21:18,"841 Meadow St, Seattle, WA 98101" +194472,USB-C Charging Cable,1,11.95,04/21/19 21:18,"841 Meadow St, Seattle, WA 98101" +194473,AAA Batteries (4-pack),1,2.99,04/10/19 14:58,"534 1st St, Seattle, WA 98101" +194474,AAA Batteries (4-pack),1,2.99,04/13/19 17:42,"178 Hickory St, San Francisco, CA 94016" +194475,Bose SoundSport Headphones,1,99.99,04/15/19 23:29,"865 Lincoln St, Austin, TX 73301" +194476,AA Batteries (4-pack),2,3.84,04/20/19 19:50,"935 Johnson St, Los Angeles, CA 90001" +194477,Apple Airpods Headphones,1,150,04/09/19 20:45,"766 Church St, San Francisco, CA 94016" +194478,Lightning Charging Cable,1,14.95,04/13/19 04:18,"186 7th St, Dallas, TX 75001" +194479,Flatscreen TV,1,300,04/26/19 19:51,"36 Hill St, San Francisco, CA 94016" +194480,Apple Airpods Headphones,1,150,04/30/19 14:13,"372 North St, Dallas, TX 75001" +194481,USB-C Charging Cable,1,11.95,04/16/19 22:31,"322 Lakeview St, Atlanta, GA 30301" +194482,AAA Batteries (4-pack),1,2.99,04/29/19 11:16,"793 7th St, Boston, MA 02215" +194483,iPhone,1,700,04/21/19 22:38,"865 Walnut St, Boston, MA 02215" +194484,20in Monitor,1,109.99,04/24/19 16:36,"212 Johnson St, Boston, MA 02215" +194485,Lightning Charging Cable,2,14.95,04/03/19 19:06,"983 Chestnut St, Seattle, WA 98101" +194486,AA Batteries (4-pack),2,3.84,04/04/19 16:05,"21 12th St, San Francisco, CA 94016" +194487,Macbook Pro Laptop,1,1700,04/16/19 12:25,"370 Cedar St, San Francisco, CA 94016" +194488,Wired Headphones,2,11.99,04/28/19 18:42,"819 Adams St, Los Angeles, CA 90001" +194489,AA Batteries (4-pack),1,3.84,04/28/19 13:28,"479 Forest St, New York City, NY 10001" +194490,20in Monitor,1,109.99,04/27/19 23:08,"809 Forest St, Dallas, TX 75001" +194491,Lightning Charging Cable,1,14.95,04/09/19 15:28,"425 North St, San Francisco, CA 94016" +194492,AA Batteries (4-pack),1,3.84,04/03/19 17:47,"466 Pine St, Boston, MA 02215" +194493,AA Batteries (4-pack),1,3.84,04/23/19 15:50,"31 Center St, San Francisco, CA 94016" +194494,27in FHD Monitor,1,149.99,04/13/19 18:22,"587 9th St, Boston, MA 02215" +194495,27in 4K Gaming Monitor,1,389.99,04/08/19 10:46,"497 South St, Los Angeles, CA 90001" +194496,Wired Headphones,1,11.99,04/27/19 18:45,"369 Chestnut St, Atlanta, GA 30301" +194497,AA Batteries (4-pack),1,3.84,04/23/19 23:59,"312 9th St, Atlanta, GA 30301" +194498,AA Batteries (4-pack),1,3.84,04/06/19 14:21,"216 Johnson St, Seattle, WA 98101" +194499,Bose SoundSport Headphones,1,99.99,04/05/19 15:18,"337 Ridge St, New York City, NY 10001" +194500,Lightning Charging Cable,1,14.95,04/11/19 05:19,"149 Spruce St, Portland, OR 97035" +194501,Lightning Charging Cable,1,14.95,04/03/19 20:06,"106 Sunset St, San Francisco, CA 94016" +194502,AAA Batteries (4-pack),2,2.99,04/21/19 13:29,"839 14th St, Boston, MA 02215" +194503,Apple Airpods Headphones,1,150,04/01/19 12:52,"608 Elm St, Austin, TX 73301" +194504,Wired Headphones,1,11.99,04/07/19 21:43,"22 Ridge St, San Francisco, CA 94016" +194505,USB-C Charging Cable,1,11.95,04/23/19 20:54,"548 Forest St, San Francisco, CA 94016" +194506,Apple Airpods Headphones,1,150,04/23/19 18:37,"742 4th St, San Francisco, CA 94016" +194507,AA Batteries (4-pack),1,3.84,04/23/19 21:12,"618 Hickory St, Boston, MA 02215" +194508,Lightning Charging Cable,1,14.95,04/08/19 13:56,"779 Lincoln St, San Francisco, CA 94016" +194509,Apple Airpods Headphones,1,150,04/18/19 15:45,"104 Maple St, Portland, OR 97035" +194510,Lightning Charging Cable,1,14.95,04/15/19 04:29,"3 Adams St, Boston, MA 02215" +194511,AA Batteries (4-pack),1,3.84,04/14/19 20:20,"901 Pine St, San Francisco, CA 94016" +194512,AA Batteries (4-pack),1,3.84,04/18/19 20:26,"353 Hill St, Atlanta, GA 30301" +194513,USB-C Charging Cable,1,11.95,04/24/19 14:30,"692 Washington St, Los Angeles, CA 90001" +194514,AA Batteries (4-pack),1,3.84,04/01/19 12:48,"862 Church St, Los Angeles, CA 90001" +194515,Lightning Charging Cable,1,14.95,04/08/19 15:41,"269 8th St, Los Angeles, CA 90001" +194515,34in Ultrawide Monitor,1,379.99,04/08/19 15:41,"269 8th St, Los Angeles, CA 90001" +194516,AA Batteries (4-pack),2,3.84,04/14/19 16:13,"334 Hickory St, Boston, MA 02215" +194517,Lightning Charging Cable,1,14.95,04/19/19 23:36,"308 10th St, Dallas, TX 75001" +194518,USB-C Charging Cable,1,11.95,04/28/19 15:26,"110 Meadow St, Los Angeles, CA 90001" +194519,Wired Headphones,1,11.99,04/19/19 10:46,"609 14th St, New York City, NY 10001" +194520,USB-C Charging Cable,1,11.95,04/09/19 21:59,"390 2nd St, Dallas, TX 75001" +194521,AAA Batteries (4-pack),1,2.99,04/11/19 10:19,"905 Willow St, San Francisco, CA 94016" +194522,Bose SoundSport Headphones,1,99.99,04/18/19 00:01,"382 Park St, New York City, NY 10001" +194523,Lightning Charging Cable,1,14.95,04/03/19 17:55,"199 Maple St, Atlanta, GA 30301" +194524,iPhone,1,700,04/30/19 11:02,"445 4th St, New York City, NY 10001" +194525,Macbook Pro Laptop,1,1700,04/16/19 22:32,"385 4th St, Atlanta, GA 30301" +194525,AA Batteries (4-pack),1,3.84,04/16/19 22:32,"385 4th St, Atlanta, GA 30301" +194526,Lightning Charging Cable,2,14.95,04/18/19 08:54,"386 1st St, Atlanta, GA 30301" +194527,AA Batteries (4-pack),2,3.84,04/28/19 06:03,"608 Sunset St, Portland, OR 97035" +194528,Vareebadd Phone,1,400,04/01/19 10:00,"177 2nd St, Dallas, TX 75001" +194528,Bose SoundSport Headphones,1,99.99,04/01/19 10:00,"177 2nd St, Dallas, TX 75001" +194529,Bose SoundSport Headphones,1,99.99,04/20/19 16:23,"968 11th St, San Francisco, CA 94016" +194530,Macbook Pro Laptop,1,1700,04/25/19 06:57,"547 14th St, San Francisco, CA 94016" +194531,Vareebadd Phone,1,400,04/18/19 09:40,"650 10th St, New York City, NY 10001" +194531,USB-C Charging Cable,1,11.95,04/18/19 09:40,"650 10th St, New York City, NY 10001" +194532,AAA Batteries (4-pack),1,2.99,04/25/19 12:20,"181 Walnut St, New York City, NY 10001" +194533,Macbook Pro Laptop,1,1700,04/01/19 19:54,"64 Cherry St, Atlanta, GA 30301" +194534,AA Batteries (4-pack),1,3.84,04/07/19 21:42,"69 Pine St, San Francisco, CA 94016" +194535,AA Batteries (4-pack),1,3.84,04/26/19 21:14,"358 9th St, New York City, NY 10001" +194536,Apple Airpods Headphones,1,150,04/11/19 18:57,"439 1st St, Atlanta, GA 30301" +194537,Lightning Charging Cable,1,14.95,04/06/19 13:02,"523 Adams St, Atlanta, GA 30301" +194538,iPhone,1,700,04/25/19 15:38,"366 Hickory St, Los Angeles, CA 90001" +194539,Apple Airpods Headphones,1,150,04/02/19 10:54,"795 Cherry St, San Francisco, CA 94016" +194540,Lightning Charging Cable,1,14.95,04/01/19 18:09,"443 Church St, Los Angeles, CA 90001" +194541,AA Batteries (4-pack),2,3.84,04/21/19 12:16,"681 Willow St, San Francisco, CA 94016" +194542,Apple Airpods Headphones,1,150,04/25/19 15:20,"533 Adams St, Boston, MA 02215" +194543,AA Batteries (4-pack),1,3.84,04/11/19 20:15,"387 Washington St, New York City, NY 10001" +194544,Macbook Pro Laptop,1,1700,04/22/19 21:24,"634 Elm St, Portland, OR 97035" +194545,Bose SoundSport Headphones,1,99.99,04/20/19 12:14,"729 Main St, San Francisco, CA 94016" +194546,Wired Headphones,1,11.99,04/28/19 09:57,"555 Johnson St, Austin, TX 73301" +194547,Google Phone,1,600,04/03/19 16:07,"395 9th St, Los Angeles, CA 90001" +194548,AA Batteries (4-pack),1,3.84,04/09/19 21:37,"977 Hill St, Dallas, TX 75001" +194549,Wired Headphones,1,11.99,04/17/19 14:34,"199 Hickory St, Dallas, TX 75001" +194550,27in 4K Gaming Monitor,1,389.99,04/04/19 14:28,"7 Hill St, New York City, NY 10001" +194551,Apple Airpods Headphones,1,150,04/22/19 11:44,"403 11th St, San Francisco, CA 94016" +194552,Google Phone,1,600,04/09/19 11:25,"103 Jefferson St, Seattle, WA 98101" +194553,Macbook Pro Laptop,1,1700,04/20/19 18:45,"429 Cherry St, San Francisco, CA 94016" +194554,AAA Batteries (4-pack),1,2.99,04/05/19 22:13,"609 Walnut St, San Francisco, CA 94016" +194555,AA Batteries (4-pack),1,3.84,04/22/19 10:03,"212 Jefferson St, San Francisco, CA 94016" +194556,iPhone,1,700,04/24/19 12:55,"830 11th St, Austin, TX 73301" +194557,20in Monitor,1,109.99,04/03/19 08:21,"332 Lakeview St, Seattle, WA 98101" +194558,AA Batteries (4-pack),2,3.84,04/14/19 10:15,"999 Sunset St, Los Angeles, CA 90001" +194559,Lightning Charging Cable,1,14.95,04/29/19 18:58,"506 Meadow St, San Francisco, CA 94016" +194560,Wired Headphones,1,11.99,04/23/19 21:23,"915 Lake St, Los Angeles, CA 90001" +194561,Apple Airpods Headphones,1,150,04/11/19 00:59,"302 Park St, Los Angeles, CA 90001" +194562,27in FHD Monitor,1,149.99,04/24/19 10:18,"749 Sunset St, Seattle, WA 98101" +194563,Wired Headphones,1,11.99,04/18/19 13:55,"172 Johnson St, Los Angeles, CA 90001" +194564,Lightning Charging Cable,1,14.95,04/04/19 12:28,"529 Maple St, Los Angeles, CA 90001" +194565,Lightning Charging Cable,1,14.95,04/15/19 14:55,"273 Lincoln St, Los Angeles, CA 90001" +194566,AA Batteries (4-pack),3,3.84,04/09/19 05:45,"68 Lake St, New York City, NY 10001" +194567,34in Ultrawide Monitor,1,379.99,04/05/19 18:19,"53 Park St, Portland, OR 97035" +194568,Wired Headphones,2,11.99,04/05/19 21:07,"513 6th St, Los Angeles, CA 90001" +194569,Apple Airpods Headphones,1,150,04/02/19 16:48,"876 6th St, San Francisco, CA 94016" +194570,AA Batteries (4-pack),1,3.84,04/15/19 23:54,"995 South St, New York City, NY 10001" +194571,Bose SoundSport Headphones,1,99.99,04/01/19 16:44,"162 12th St, Boston, MA 02215" +194572,Wired Headphones,1,11.99,04/22/19 14:41,"584 8th St, Los Angeles, CA 90001" +194573,Wired Headphones,1,11.99,04/27/19 12:27,"220 14th St, San Francisco, CA 94016" +194574,Lightning Charging Cable,1,14.95,04/16/19 02:15,"317 Forest St, New York City, NY 10001" +194575,Flatscreen TV,1,300,04/26/19 22:13,"444 Church St, Dallas, TX 75001" +194576,20in Monitor,1,109.99,04/21/19 18:40,"141 Forest St, San Francisco, CA 94016" +194577,Apple Airpods Headphones,1,150,04/25/19 08:31,"253 Hickory St, Seattle, WA 98101" +194578,Bose SoundSport Headphones,1,99.99,04/23/19 19:01,"677 Johnson St, Dallas, TX 75001" +194579,Bose SoundSport Headphones,1,99.99,04/24/19 18:21,"8 Wilson St, Seattle, WA 98101" +194580,USB-C Charging Cable,1,11.95,04/20/19 17:33,"896 Pine St, San Francisco, CA 94016" +194581,Lightning Charging Cable,1,14.95,04/07/19 18:17,"668 Meadow St, Los Angeles, CA 90001" +194582,27in FHD Monitor,1,149.99,04/23/19 11:21,"694 12th St, San Francisco, CA 94016" +194583,Wired Headphones,1,11.99,04/26/19 17:54,"742 Wilson St, Los Angeles, CA 90001" +194584,AA Batteries (4-pack),1,3.84,04/15/19 10:35,"286 Johnson St, San Francisco, CA 94016" +194585,Wired Headphones,1,11.99,04/02/19 13:46,"210 Lincoln St, Los Angeles, CA 90001" +194586,Bose SoundSport Headphones,1,99.99,04/17/19 18:45,"256 Wilson St, Dallas, TX 75001" +194587,AAA Batteries (4-pack),2,2.99,04/30/19 17:37,"213 Walnut St, San Francisco, CA 94016" +194588,Lightning Charging Cable,1,14.95,04/07/19 00:28,"349 Pine St, Los Angeles, CA 90001" +194589,iPhone,1,700,04/08/19 15:30,"456 Center St, Dallas, TX 75001" +194589,Wired Headphones,1,11.99,04/08/19 15:30,"456 Center St, Dallas, TX 75001" +194590,Wired Headphones,2,11.99,04/25/19 09:45,"985 Lake St, Los Angeles, CA 90001" +194591,USB-C Charging Cable,1,11.95,04/04/19 10:46,"964 Dogwood St, San Francisco, CA 94016" +194592,34in Ultrawide Monitor,1,379.99,04/26/19 16:49,"744 Park St, Boston, MA 02215" +194593,Wired Headphones,1,11.99,04/11/19 21:04,"871 Meadow St, Los Angeles, CA 90001" +194594,iPhone,1,700,04/27/19 12:55,"720 Adams St, San Francisco, CA 94016" +194594,Lightning Charging Cable,1,14.95,04/27/19 12:55,"720 Adams St, San Francisco, CA 94016" +194594,Wired Headphones,1,11.99,04/27/19 12:55,"720 Adams St, San Francisco, CA 94016" +194595,Wired Headphones,1,11.99,04/03/19 10:02,"874 Wilson St, Atlanta, GA 30301" +194596,Bose SoundSport Headphones,1,99.99,04/11/19 12:23,"123 13th St, New York City, NY 10001" +194597,AA Batteries (4-pack),2,3.84,04/01/19 21:54,"308 Dogwood St, Portland, OR 97035" +194598,Flatscreen TV,1,300,04/02/19 15:30,"553 Hill St, San Francisco, CA 94016" +194599,Lightning Charging Cable,1,14.95,04/11/19 11:19,"977 14th St, San Francisco, CA 94016" +194600,Lightning Charging Cable,1,14.95,04/12/19 21:35,"924 Washington St, Los Angeles, CA 90001" +194601,27in 4K Gaming Monitor,1,389.99,04/05/19 21:10,"717 Madison St, Los Angeles, CA 90001" +194602,AA Batteries (4-pack),1,3.84,04/24/19 02:07,"849 Highland St, Seattle, WA 98101" +194603,Lightning Charging Cable,1,14.95,04/07/19 14:43,"544 Jackson St, San Francisco, CA 94016" +194604,Lightning Charging Cable,1,14.95,04/09/19 22:37,"625 River St, Atlanta, GA 30301" +194605,Wired Headphones,1,11.99,04/26/19 22:36,"691 Wilson St, Portland, OR 97035" +194606,Apple Airpods Headphones,1,150,04/12/19 22:29,"57 West St, New York City, NY 10001" +194607,Wired Headphones,1,11.99,04/20/19 13:12,"445 8th St, New York City, NY 10001" +194608,AAA Batteries (4-pack),1,2.99,04/08/19 11:44,"307 Chestnut St, San Francisco, CA 94016" +194608,Flatscreen TV,1,300,04/08/19 11:44,"307 Chestnut St, San Francisco, CA 94016" +194609,27in 4K Gaming Monitor,1,389.99,04/15/19 20:26,"859 Adams St, San Francisco, CA 94016" +194610,AA Batteries (4-pack),2,3.84,04/03/19 20:41,"186 1st St, Austin, TX 73301" +194611,Flatscreen TV,1,300,04/09/19 11:33,"290 4th St, Dallas, TX 75001" +194612,Lightning Charging Cable,1,14.95,04/08/19 16:21,"833 Lincoln St, San Francisco, CA 94016" +194613,AA Batteries (4-pack),1,3.84,04/18/19 12:48,"457 Meadow St, Atlanta, GA 30301" +194614,20in Monitor,1,109.99,04/29/19 09:19,"62 8th St, Los Angeles, CA 90001" +194615,AA Batteries (4-pack),1,3.84,04/18/19 07:43,"784 Cedar St, San Francisco, CA 94016" +194616,Flatscreen TV,1,300,04/16/19 09:22,"895 Washington St, Los Angeles, CA 90001" +194617,Wired Headphones,1,11.99,04/27/19 12:03,"810 Wilson St, Atlanta, GA 30301" +194618,Apple Airpods Headphones,1,150,04/30/19 18:09,"37 Cedar St, Portland, ME 04101" +194619,34in Ultrawide Monitor,1,379.99,04/13/19 17:56,"638 Hill St, San Francisco, CA 94016" +194620,iPhone,1,700,04/18/19 13:49,"890 Cedar St, Boston, MA 02215" +194620,Lightning Charging Cable,1,14.95,04/18/19 13:49,"890 Cedar St, Boston, MA 02215" +194621,USB-C Charging Cable,1,11.95,04/12/19 18:20,"969 West St, San Francisco, CA 94016" +194622,USB-C Charging Cable,1,11.95,04/15/19 19:56,"929 Jefferson St, San Francisco, CA 94016" +194623,USB-C Charging Cable,1,11.95,04/07/19 22:51,"262 9th St, New York City, NY 10001" +194624,Wired Headphones,1,11.99,04/24/19 21:20,"40 4th St, Austin, TX 73301" +194625,AA Batteries (4-pack),1,3.84,04/12/19 03:47,"235 South St, Boston, MA 02215" +194626,AA Batteries (4-pack),1,3.84,04/23/19 06:38,"949 Jefferson St, Los Angeles, CA 90001" +194627,27in FHD Monitor,1,149.99,04/12/19 23:29,"668 8th St, San Francisco, CA 94016" +194628,27in FHD Monitor,1,149.99,04/28/19 11:51,"216 Lake St, Austin, TX 73301" +194629,Lightning Charging Cable,1,14.95,04/28/19 16:34,"680 4th St, New York City, NY 10001" +194630,Macbook Pro Laptop,1,1700,04/21/19 22:26,"386 Maple St, San Francisco, CA 94016" +194631,34in Ultrawide Monitor,1,379.99,04/04/19 10:50,"154 6th St, New York City, NY 10001" +194632,iPhone,1,700,04/07/19 10:38,"81 Lakeview St, San Francisco, CA 94016" +194633,Wired Headphones,1,11.99,04/03/19 15:33,"186 2nd St, Los Angeles, CA 90001" +194634,Lightning Charging Cable,1,14.95,04/19/19 13:35,"918 Spruce St, San Francisco, CA 94016" +194635,27in FHD Monitor,1,149.99,04/09/19 12:28,"868 Forest St, Los Angeles, CA 90001" +194636,USB-C Charging Cable,1,11.95,04/30/19 12:08,"845 Spruce St, Boston, MA 02215" +194637,Apple Airpods Headphones,1,150,04/30/19 12:52,"821 River St, Austin, TX 73301" +194638,Wired Headphones,1,11.99,04/02/19 11:05,"534 Pine St, Dallas, TX 75001" +194639,Lightning Charging Cable,1,14.95,04/18/19 00:40,"356 Washington St, Portland, ME 04101" +194640,Apple Airpods Headphones,1,150,04/25/19 08:38,"963 10th St, San Francisco, CA 94016" +194641,Lightning Charging Cable,1,14.95,04/30/19 17:22,"142 Hickory St, San Francisco, CA 94016" +194642,34in Ultrawide Monitor,1,379.99,04/23/19 10:47,"374 13th St, San Francisco, CA 94016" +194643,27in FHD Monitor,1,149.99,04/06/19 08:27,"292 Cedar St, Atlanta, GA 30301" +194644,Bose SoundSport Headphones,1,99.99,04/19/19 10:48,"185 5th St, San Francisco, CA 94016" +194644,27in FHD Monitor,1,149.99,04/19/19 10:48,"185 5th St, San Francisco, CA 94016" +194645,AAA Batteries (4-pack),1,2.99,04/02/19 15:26,"624 South St, Atlanta, GA 30301" +194646,AAA Batteries (4-pack),1,2.99,04/12/19 18:44,"905 8th St, Seattle, WA 98101" +194647,AA Batteries (4-pack),1,3.84,04/08/19 15:02,"137 12th St, Boston, MA 02215" +194648,Apple Airpods Headphones,1,150,04/13/19 17:24,"51 Chestnut St, Los Angeles, CA 90001" +194649,USB-C Charging Cable,1,11.95,04/01/19 18:04,"711 North St, Boston, MA 02215" +194650,USB-C Charging Cable,1,11.95,04/17/19 20:20,"407 Willow St, New York City, NY 10001" +194651,USB-C Charging Cable,1,11.95,04/25/19 20:26,"245 Washington St, San Francisco, CA 94016" +194652,Bose SoundSport Headphones,1,99.99,04/21/19 20:08,"219 West St, Dallas, TX 75001" +194653,27in 4K Gaming Monitor,1,389.99,04/15/19 12:46,"494 Adams St, New York City, NY 10001" +194654,AAA Batteries (4-pack),1,2.99,04/18/19 15:46,"70 Dogwood St, Seattle, WA 98101" +194655,Lightning Charging Cable,1,14.95,04/30/19 22:39,"90 Hickory St, Boston, MA 02215" +194656,USB-C Charging Cable,1,11.95,04/29/19 11:30,"234 13th St, Los Angeles, CA 90001" +194657,AAA Batteries (4-pack),2,2.99,04/01/19 18:30,"36 8th St, San Francisco, CA 94016" +194658,AA Batteries (4-pack),1,3.84,04/04/19 08:40,"201 4th St, Boston, MA 02215" +194659,AA Batteries (4-pack),1,3.84,04/04/19 16:44,"381 Walnut St, Dallas, TX 75001" +194660,Lightning Charging Cable,1,14.95,04/20/19 22:18,"861 9th St, Los Angeles, CA 90001" +194661,Vareebadd Phone,1,400,04/06/19 21:54,"336 West St, San Francisco, CA 94016" +194662,27in 4K Gaming Monitor,1,389.99,04/17/19 10:29,"645 Jefferson St, Austin, TX 73301" +194663,27in FHD Monitor,1,149.99,04/24/19 23:55,"127 Cedar St, New York City, NY 10001" +194664,AA Batteries (4-pack),1,3.84,04/30/19 11:25,"608 River St, Portland, OR 97035" +194665,20in Monitor,1,109.99,04/17/19 01:21,"141 Cherry St, New York City, NY 10001" +194666,Lightning Charging Cable,2,14.95,04/05/19 11:43,"173 Chestnut St, Seattle, WA 98101" +194667,USB-C Charging Cable,1,11.95,04/07/19 19:47,"126 5th St, Los Angeles, CA 90001" +194668,USB-C Charging Cable,1,11.95,04/22/19 21:01,"871 Maple St, Portland, OR 97035" +194669,Bose SoundSport Headphones,1,99.99,04/04/19 20:02,"137 7th St, Los Angeles, CA 90001" +194670,Vareebadd Phone,1,400,04/14/19 10:45,"977 Madison St, San Francisco, CA 94016" +194671,Vareebadd Phone,1,400,04/03/19 00:27,"245 1st St, Austin, TX 73301" +194671,Bose SoundSport Headphones,1,99.99,04/03/19 00:27,"245 1st St, Austin, TX 73301" +194671,Wired Headphones,1,11.99,04/03/19 00:27,"245 1st St, Austin, TX 73301" +194672,27in 4K Gaming Monitor,1,389.99,04/23/19 21:18,"388 Maple St, San Francisco, CA 94016" +194673,AAA Batteries (4-pack),1,2.99,04/27/19 22:12,"516 Church St, Dallas, TX 75001" +194673,Apple Airpods Headphones,1,150,04/27/19 22:12,"516 Church St, Dallas, TX 75001" +194674,Flatscreen TV,1,300,04/22/19 11:59,"256 Lincoln St, New York City, NY 10001" +194675,Bose SoundSport Headphones,1,99.99,04/19/19 02:11,"505 Jefferson St, Boston, MA 02215" +194676,Apple Airpods Headphones,1,150,04/17/19 23:12,"928 Highland St, Seattle, WA 98101" +194677,27in FHD Monitor,1,149.99,04/03/19 20:01,"350 12th St, Dallas, TX 75001" +194678,Google Phone,1,600,04/10/19 16:33,"768 North St, Los Angeles, CA 90001" +194679,iPhone,1,700,04/24/19 11:42,"312 Church St, Dallas, TX 75001" +194679,Lightning Charging Cable,1,14.95,04/24/19 11:42,"312 Church St, Dallas, TX 75001" +194679,Wired Headphones,1,11.99,04/24/19 11:42,"312 Church St, Dallas, TX 75001" +194680,iPhone,1,700,04/16/19 20:12,"887 West St, Dallas, TX 75001" +194681,USB-C Charging Cable,1,11.95,04/08/19 18:33,"704 Park St, New York City, NY 10001" +194682,USB-C Charging Cable,1,11.95,04/23/19 22:32,"858 Cherry St, Austin, TX 73301" +,,,,, +194683,AAA Batteries (4-pack),1,2.99,04/25/19 11:58,"468 Chestnut St, Portland, OR 97035" +194684,AAA Batteries (4-pack),1,2.99,04/19/19 16:34,"250 South St, New York City, NY 10001" +194685,Apple Airpods Headphones,1,150,04/17/19 14:02,"947 Dogwood St, Boston, MA 02215" +194686,Wired Headphones,1,11.99,04/19/19 13:52,"19 Chestnut St, San Francisco, CA 94016" +194687,Apple Airpods Headphones,1,150,04/15/19 13:27,"801 Adams St, Seattle, WA 98101" +194688,AAA Batteries (4-pack),1,2.99,04/15/19 17:19,"333 Meadow St, San Francisco, CA 94016" +194689,USB-C Charging Cable,1,11.95,04/06/19 10:15,"652 Maple St, Dallas, TX 75001" +194690,34in Ultrawide Monitor,1,379.99,04/06/19 22:07,"968 13th St, Austin, TX 73301" +194691,USB-C Charging Cable,1,11.95,04/19/19 10:01,"255 12th St, Dallas, TX 75001" +194692,AA Batteries (4-pack),1,3.84,04/24/19 16:10,"887 1st St, Austin, TX 73301" +194693,27in 4K Gaming Monitor,1,389.99,04/18/19 19:48,"321 Spruce St, Atlanta, GA 30301" +194694,Lightning Charging Cable,1,14.95,04/17/19 02:42,"764 Chestnut St, Boston, MA 02215" +194695,Apple Airpods Headphones,1,150,04/28/19 23:48,"902 Wilson St, Boston, MA 02215" +194696,Lightning Charging Cable,1,14.95,04/18/19 16:17,"423 Main St, San Francisco, CA 94016" +194697,AAA Batteries (4-pack),2,2.99,04/25/19 18:03,"311 Cherry St, New York City, NY 10001" +194698,Bose SoundSport Headphones,1,99.99,04/03/19 22:39,"593 Lake St, Los Angeles, CA 90001" +194699,AA Batteries (4-pack),2,3.84,04/29/19 00:16,"445 Sunset St, Atlanta, GA 30301" +194700,iPhone,1,700,04/06/19 15:37,"885 2nd St, Austin, TX 73301" +194701,34in Ultrawide Monitor,1,379.99,04/25/19 15:18,"971 5th St, New York City, NY 10001" +194702,27in FHD Monitor,1,149.99,04/28/19 22:07,"489 Spruce St, Dallas, TX 75001" +194703,27in FHD Monitor,1,149.99,04/27/19 16:19,"373 2nd St, Los Angeles, CA 90001" +194704,Lightning Charging Cable,1,14.95,04/03/19 00:52,"338 12th St, Austin, TX 73301" +194705,Wired Headphones,1,11.99,04/13/19 17:16,"515 8th St, Austin, TX 73301" +194706,ThinkPad Laptop,1,999.99,04/17/19 17:00,"78 Wilson St, Los Angeles, CA 90001" +194707,iPhone,1,700,04/22/19 12:36,"488 6th St, Atlanta, GA 30301" +194708,Macbook Pro Laptop,1,1700,04/04/19 19:07,"354 Ridge St, New York City, NY 10001" +194708,Wired Headphones,1,11.99,04/04/19 19:07,"354 Ridge St, New York City, NY 10001" +194709,Google Phone,1,600,04/27/19 06:49,"864 Adams St, San Francisco, CA 94016" +194710,Lightning Charging Cable,1,14.95,04/17/19 13:24,"315 Dogwood St, New York City, NY 10001" +194711,iPhone,1,700,04/27/19 23:12,"610 1st St, New York City, NY 10001" +194712,AAA Batteries (4-pack),1,2.99,04/18/19 18:03,"583 Lincoln St, Austin, TX 73301" +194713,AA Batteries (4-pack),1,3.84,04/13/19 06:42,"406 Cedar St, Seattle, WA 98101" +194714,Wired Headphones,1,11.99,04/20/19 13:05,"143 Lake St, San Francisco, CA 94016" +194715,AA Batteries (4-pack),2,3.84,04/23/19 10:53,"890 11th St, New York City, NY 10001" +194716,Wired Headphones,1,11.99,04/01/19 22:01,"491 North St, San Francisco, CA 94016" +194717,AAA Batteries (4-pack),1,2.99,04/27/19 21:07,"526 Washington St, San Francisco, CA 94016" +194718,27in FHD Monitor,1,149.99,04/23/19 08:41,"114 River St, San Francisco, CA 94016" +194719,iPhone,1,700,04/28/19 00:05,"700 Sunset St, New York City, NY 10001" +194719,Lightning Charging Cable,1,14.95,04/28/19 00:05,"700 Sunset St, New York City, NY 10001" +194720,Bose SoundSport Headphones,1,99.99,04/24/19 10:09,"665 6th St, New York City, NY 10001" +194721,Bose SoundSport Headphones,1,99.99,04/18/19 09:31,"892 7th St, Austin, TX 73301" +194722,34in Ultrawide Monitor,1,379.99,04/21/19 17:56,"625 Forest St, Los Angeles, CA 90001" +194723,34in Ultrawide Monitor,1,379.99,04/19/19 09:00,"434 Hickory St, San Francisco, CA 94016" +194724,AAA Batteries (4-pack),2,2.99,04/12/19 09:07,"889 7th St, Seattle, WA 98101" +194725,Wired Headphones,2,11.99,04/24/19 19:58,"927 River St, New York City, NY 10001" +194726,Apple Airpods Headphones,1,150,04/27/19 11:58,"891 Jackson St, San Francisco, CA 94016" +194727,Google Phone,1,600,04/03/19 14:01,"966 Pine St, Portland, OR 97035" +194728,27in FHD Monitor,1,149.99,04/21/19 13:51,"69 Center St, Dallas, TX 75001" +194729,Wired Headphones,1,11.99,04/13/19 20:51,"26 Chestnut St, New York City, NY 10001" +194730,AAA Batteries (4-pack),1,2.99,04/02/19 09:41,"277 Hill St, New York City, NY 10001" +194731,AAA Batteries (4-pack),1,2.99,04/10/19 20:24,"222 7th St, San Francisco, CA 94016" +194732,AA Batteries (4-pack),1,3.84,04/02/19 21:57,"987 Madison St, Los Angeles, CA 90001" +194733,AAA Batteries (4-pack),1,2.99,04/18/19 08:54,"953 Dogwood St, Austin, TX 73301" +194734,Bose SoundSport Headphones,1,99.99,04/02/19 01:45,"464 Elm St, Atlanta, GA 30301" +194735,Wired Headphones,1,11.99,04/20/19 20:43,"204 Washington St, Seattle, WA 98101" +194736,iPhone,1,700,04/06/19 16:42,"304 Pine St, Atlanta, GA 30301" +194737,Apple Airpods Headphones,1,150,04/13/19 22:02,"557 2nd St, Los Angeles, CA 90001" +194738,27in FHD Monitor,1,149.99,04/25/19 08:01,"584 7th St, Los Angeles, CA 90001" +194739,Wired Headphones,1,11.99,04/29/19 16:55,"48 Walnut St, Atlanta, GA 30301" +194740,AAA Batteries (4-pack),1,2.99,04/17/19 21:58,"374 2nd St, San Francisco, CA 94016" +194741,USB-C Charging Cable,1,11.95,04/01/19 14:52,"224 Washington St, San Francisco, CA 94016" +194742,AAA Batteries (4-pack),2,2.99,04/23/19 13:51,"677 Dogwood St, New York City, NY 10001" +194743,Flatscreen TV,1,300,04/27/19 09:25,"369 Dogwood St, San Francisco, CA 94016" +194744,27in FHD Monitor,1,149.99,04/18/19 17:04,"450 9th St, Seattle, WA 98101" +194745,ThinkPad Laptop,1,999.99,04/27/19 11:55,"358 Forest St, Atlanta, GA 30301" +194746,Bose SoundSport Headphones,1,99.99,04/19/19 16:20,"147 Lake St, Seattle, WA 98101" +194747,Wired Headphones,1,11.99,04/12/19 01:13,"374 Washington St, New York City, NY 10001" +194748,Apple Airpods Headphones,1,150,04/14/19 10:24,"605 2nd St, Portland, OR 97035" +194749,27in 4K Gaming Monitor,1,389.99,04/14/19 20:38,"288 Jackson St, Los Angeles, CA 90001" +194750,Vareebadd Phone,1,400,04/28/19 09:10,"771 1st St, San Francisco, CA 94016" +194750,USB-C Charging Cable,1,11.95,04/28/19 09:10,"771 1st St, San Francisco, CA 94016" +194751,AAA Batteries (4-pack),1,2.99,04/13/19 11:18,"589 Adams St, Los Angeles, CA 90001" +194752,Apple Airpods Headphones,1,150,04/17/19 19:07,"275 Jackson St, San Francisco, CA 94016" +194753,Apple Airpods Headphones,1,150,04/04/19 21:33,"292 14th St, Austin, TX 73301" +194753,AAA Batteries (4-pack),2,2.99,04/04/19 21:33,"292 14th St, Austin, TX 73301" +194754,Bose SoundSport Headphones,1,99.99,04/03/19 15:40,"885 Cherry St, Dallas, TX 75001" +194755,Wired Headphones,1,11.99,04/11/19 00:38,"357 Highland St, San Francisco, CA 94016" +194756,Vareebadd Phone,1,400,04/14/19 16:07,"68 Willow St, San Francisco, CA 94016" +194756,AA Batteries (4-pack),1,3.84,04/14/19 16:07,"68 Willow St, San Francisco, CA 94016" +194757,AA Batteries (4-pack),1,3.84,04/13/19 23:40,"748 Dogwood St, Austin, TX 73301" +194758,27in FHD Monitor,1,149.99,04/28/19 08:31,"686 Meadow St, Los Angeles, CA 90001" +194759,Macbook Pro Laptop,1,1700,04/11/19 17:35,"189 13th St, Portland, ME 04101" +194760,Lightning Charging Cable,1,14.95,04/27/19 10:50,"454 6th St, San Francisco, CA 94016" +194761,Lightning Charging Cable,1,14.95,04/07/19 15:14,"578 Spruce St, Boston, MA 02215" +194762,AA Batteries (4-pack),2,3.84,04/21/19 13:55,"938 Ridge St, Atlanta, GA 30301" +194763,AA Batteries (4-pack),2,3.84,04/30/19 18:10,"49 Lakeview St, San Francisco, CA 94016" +194764,AAA Batteries (4-pack),2,2.99,04/27/19 12:59,"741 Adams St, San Francisco, CA 94016" +194764,20in Monitor,1,109.99,04/27/19 12:59,"741 Adams St, San Francisco, CA 94016" +194765,AAA Batteries (4-pack),1,2.99,04/24/19 18:52,"881 Jackson St, Los Angeles, CA 90001" +194766,Bose SoundSport Headphones,1,99.99,04/26/19 20:43,"4 Sunset St, Dallas, TX 75001" +194767,Lightning Charging Cable,1,14.95,04/02/19 11:56,"254 Lincoln St, San Francisco, CA 94016" +194768,iPhone,1,700,04/11/19 13:42,"614 Jefferson St, Los Angeles, CA 90001" +194769,Macbook Pro Laptop,1,1700,04/07/19 17:46,"811 Park St, San Francisco, CA 94016" +194769,Flatscreen TV,1,300,04/07/19 17:46,"811 Park St, San Francisco, CA 94016" +194770,Bose SoundSport Headphones,1,99.99,04/29/19 17:19,"978 River St, Los Angeles, CA 90001" +194771,Google Phone,1,600,04/27/19 15:34,"676 Forest St, Los Angeles, CA 90001" +194772,AA Batteries (4-pack),3,3.84,04/21/19 23:45,"142 1st St, Los Angeles, CA 90001" +194773,27in 4K Gaming Monitor,1,389.99,04/26/19 12:46,"917 11th St, Los Angeles, CA 90001" +194774,Wired Headphones,1,11.99,04/26/19 10:17,"599 Washington St, Portland, OR 97035" +194775,Vareebadd Phone,1,400,04/20/19 10:21,"459 10th St, Portland, ME 04101" +194775,Wired Headphones,1,11.99,04/20/19 10:21,"459 10th St, Portland, ME 04101" +194776,Apple Airpods Headphones,1,150,04/18/19 16:04,"649 Jackson St, Boston, MA 02215" +194777,34in Ultrawide Monitor,1,379.99,04/01/19 22:37,"33 7th St, New York City, NY 10001" +194778,USB-C Charging Cable,2,11.95,04/30/19 12:26,"757 7th St, Boston, MA 02215" +194779,Wired Headphones,1,11.99,04/13/19 16:42,"795 North St, New York City, NY 10001" +194780,AA Batteries (4-pack),3,3.84,04/07/19 11:22,"389 Cedar St, Los Angeles, CA 90001" +194781,Wired Headphones,1,11.99,04/11/19 09:49,"940 7th St, Los Angeles, CA 90001" +194782,Bose SoundSport Headphones,1,99.99,04/06/19 15:11,"281 Adams St, Boston, MA 02215" +194783,USB-C Charging Cable,1,11.95,04/27/19 23:49,"457 Forest St, New York City, NY 10001" +194784,AAA Batteries (4-pack),3,2.99,04/18/19 00:09,"543 Spruce St, Dallas, TX 75001" +194785,Wired Headphones,1,11.99,04/08/19 09:15,"607 Highland St, Atlanta, GA 30301" +194786,Apple Airpods Headphones,1,150,04/22/19 14:33,"333 Wilson St, Los Angeles, CA 90001" +194787,20in Monitor,1,109.99,04/07/19 09:59,"118 Center St, San Francisco, CA 94016" +194788,Flatscreen TV,1,300,04/14/19 14:11,"180 Forest St, Atlanta, GA 30301" +194789,27in 4K Gaming Monitor,1,389.99,04/27/19 14:46,"940 Wilson St, Portland, ME 04101" +194790,Google Phone,1,600,04/04/19 13:22,"261 Highland St, Dallas, TX 75001" +194790,Bose SoundSport Headphones,1,99.99,04/04/19 13:22,"261 Highland St, Dallas, TX 75001" +194791,AA Batteries (4-pack),1,3.84,04/03/19 16:27,"386 2nd St, Seattle, WA 98101" +194792,USB-C Charging Cable,1,11.95,04/27/19 01:23,"962 Cherry St, Boston, MA 02215" +194793,USB-C Charging Cable,1,11.95,04/09/19 13:24,"383 River St, Seattle, WA 98101" +194794,AA Batteries (4-pack),1,3.84,04/16/19 14:46,"906 Hill St, Boston, MA 02215" +194795,Apple Airpods Headphones,1,150,04/09/19 17:23,"683 Elm St, Boston, MA 02215" +194796,Apple Airpods Headphones,1,150,04/06/19 14:33,"205 Hickory St, Boston, MA 02215" +194796,34in Ultrawide Monitor,1,379.99,04/06/19 14:33,"205 Hickory St, Boston, MA 02215" +194797,AAA Batteries (4-pack),1,2.99,04/05/19 14:42,"830 13th St, New York City, NY 10001" +194798,USB-C Charging Cable,1,11.95,04/02/19 19:03,"304 Ridge St, Seattle, WA 98101" +194799,Wired Headphones,1,11.99,04/26/19 17:22,"877 Willow St, Seattle, WA 98101" +194800,iPhone,1,700,04/29/19 15:24,"987 South St, Portland, OR 97035" +194801,Google Phone,1,600,04/07/19 15:53,"870 Madison St, Boston, MA 02215" +194801,USB-C Charging Cable,2,11.95,04/07/19 15:53,"870 Madison St, Boston, MA 02215" +194801,Wired Headphones,1,11.99,04/07/19 15:53,"870 Madison St, Boston, MA 02215" +194802,Apple Airpods Headphones,1,150,04/17/19 14:30,"133 Maple St, Portland, OR 97035" +194803,AAA Batteries (4-pack),1,2.99,04/11/19 18:01,"97 Meadow St, Portland, OR 97035" +194804,USB-C Charging Cable,1,11.95,04/07/19 22:34,"155 River St, Dallas, TX 75001" +194805,USB-C Charging Cable,1,11.95,04/21/19 20:09,"884 Highland St, San Francisco, CA 94016" +194806,AA Batteries (4-pack),1,3.84,04/18/19 20:20,"856 West St, Los Angeles, CA 90001" +194807,Wired Headphones,1,11.99,04/10/19 16:12,"333 9th St, Dallas, TX 75001" +194808,AA Batteries (4-pack),1,3.84,04/17/19 10:55,"256 4th St, Los Angeles, CA 90001" +194809,AA Batteries (4-pack),1,3.84,04/14/19 03:08,"321 Dogwood St, New York City, NY 10001" +194810,AAA Batteries (4-pack),1,2.99,04/03/19 18:28,"235 Meadow St, New York City, NY 10001" +194811,27in FHD Monitor,1,149.99,04/25/19 08:45,"33 Ridge St, Los Angeles, CA 90001" +194812,34in Ultrawide Monitor,1,379.99,04/01/19 17:46,"273 Lake St, Dallas, TX 75001" +194813,AA Batteries (4-pack),2,3.84,04/22/19 15:46,"597 Center St, Atlanta, GA 30301" +194814,AA Batteries (4-pack),1,3.84,04/09/19 23:41,"43 10th St, San Francisco, CA 94016" +194815,Wired Headphones,1,11.99,04/27/19 20:48,"764 5th St, San Francisco, CA 94016" +194816,27in 4K Gaming Monitor,1,389.99,04/09/19 13:47,"875 River St, Dallas, TX 75001" +194817,Apple Airpods Headphones,1,150,04/24/19 15:22,"518 Jackson St, Portland, OR 97035" +194818,Wired Headphones,1,11.99,04/04/19 15:59,"210 2nd St, Portland, OR 97035" +194819,27in FHD Monitor,1,149.99,04/04/19 12:34,"8 West St, Seattle, WA 98101" +194820,Bose SoundSport Headphones,1,99.99,04/25/19 20:50,"384 4th St, New York City, NY 10001" +194821,27in 4K Gaming Monitor,1,389.99,04/04/19 13:28,"520 Pine St, New York City, NY 10001" +194822,Bose SoundSport Headphones,1,99.99,04/08/19 00:10,"378 Washington St, San Francisco, CA 94016" +194823,USB-C Charging Cable,1,11.95,04/16/19 14:44,"204 Dogwood St, San Francisco, CA 94016" +194824,Wired Headphones,1,11.99,04/11/19 18:57,"195 Hill St, Los Angeles, CA 90001" +194825,27in 4K Gaming Monitor,1,389.99,04/15/19 20:33,"714 North St, Portland, ME 04101" +194826,Bose SoundSport Headphones,1,99.99,04/29/19 09:20,"816 Willow St, Atlanta, GA 30301" +194827,Lightning Charging Cable,1,14.95,04/20/19 00:06,"698 Ridge St, San Francisco, CA 94016" +194828,Lightning Charging Cable,1,14.95,04/22/19 23:26,"892 10th St, Dallas, TX 75001" +194829,Bose SoundSport Headphones,1,99.99,04/02/19 22:45,"884 14th St, Austin, TX 73301" +194830,Flatscreen TV,1,300,04/01/19 17:25,"921 2nd St, Austin, TX 73301" +194831,Flatscreen TV,1,300,04/04/19 21:37,"136 12th St, San Francisco, CA 94016" +194832,Wired Headphones,1,11.99,04/11/19 12:36,"586 Highland St, Los Angeles, CA 90001" +194833,AA Batteries (4-pack),1,3.84,04/14/19 17:57,"115 Jefferson St, San Francisco, CA 94016" +194834,Apple Airpods Headphones,1,150,04/09/19 16:20,"488 6th St, Austin, TX 73301" +194834,USB-C Charging Cable,1,11.95,04/09/19 16:20,"488 6th St, Austin, TX 73301" +194835,Bose SoundSport Headphones,1,99.99,04/23/19 19:57,"894 1st St, New York City, NY 10001" +194836,USB-C Charging Cable,1,11.95,04/09/19 18:47,"283 Washington St, San Francisco, CA 94016" +194837,Google Phone,1,600,04/01/19 18:25,"403 South St, San Francisco, CA 94016" +194837,Google Phone,1,600,04/01/19 18:25,"403 South St, San Francisco, CA 94016" +194838,34in Ultrawide Monitor,1,379.99,04/03/19 17:48,"965 4th St, Seattle, WA 98101" +194839,Lightning Charging Cable,1,14.95,04/19/19 12:29,"702 Lakeview St, Atlanta, GA 30301" +194840,27in FHD Monitor,1,149.99,04/15/19 20:15,"739 Adams St, Austin, TX 73301" +194841,AA Batteries (4-pack),3,3.84,04/24/19 18:55,"521 North St, New York City, NY 10001" +194842,Bose SoundSport Headphones,1,99.99,04/11/19 23:52,"142 8th St, Dallas, TX 75001" +194843,Lightning Charging Cable,2,14.95,04/12/19 23:12,"362 4th St, Los Angeles, CA 90001" +194844,20in Monitor,1,109.99,04/21/19 21:04,"360 13th St, Boston, MA 02215" +194845,27in FHD Monitor,1,149.99,04/19/19 13:22,"263 Cedar St, Dallas, TX 75001" +194846,Wired Headphones,1,11.99,04/20/19 10:40,"601 Elm St, Los Angeles, CA 90001" +194846,iPhone,1,700,04/20/19 10:40,"601 Elm St, Los Angeles, CA 90001" +194847,Google Phone,1,600,04/20/19 20:00,"129 Walnut St, Boston, MA 02215" +194847,Wired Headphones,1,11.99,04/20/19 20:00,"129 Walnut St, Boston, MA 02215" +194848,AA Batteries (4-pack),1,3.84,04/21/19 12:50,"465 8th St, Atlanta, GA 30301" +194849,AAA Batteries (4-pack),1,2.99,04/15/19 21:24,"314 10th St, San Francisco, CA 94016" +194850,USB-C Charging Cable,1,11.95,04/17/19 01:25,"15 Washington St, Boston, MA 02215" +194851,USB-C Charging Cable,1,11.95,04/10/19 23:51,"431 Lakeview St, Portland, OR 97035" +194852,Apple Airpods Headphones,1,150,04/13/19 00:48,"816 Main St, Boston, MA 02215" +194853,Apple Airpods Headphones,1,150,04/24/19 15:45,"254 Hill St, San Francisco, CA 94016" +194854,Google Phone,1,600,04/11/19 11:35,"316 West St, Boston, MA 02215" +194855,AAA Batteries (4-pack),1,2.99,04/15/19 07:34,"213 6th St, Portland, OR 97035" +194856,Wired Headphones,1,11.99,04/08/19 10:20,"177 Dogwood St, San Francisco, CA 94016" +194856,USB-C Charging Cable,1,11.95,04/08/19 10:20,"177 Dogwood St, San Francisco, CA 94016" +194857,27in FHD Monitor,1,149.99,04/12/19 16:31,"325 Maple St, Los Angeles, CA 90001" +194858,USB-C Charging Cable,1,11.95,04/04/19 20:43,"717 Dogwood St, Los Angeles, CA 90001" +194859,iPhone,1,700,04/28/19 14:45,"872 River St, Boston, MA 02215" +194860,USB-C Charging Cable,1,11.95,04/02/19 21:01,"904 Pine St, San Francisco, CA 94016" +194861,27in FHD Monitor,1,149.99,04/11/19 21:10,"199 North St, New York City, NY 10001" +194862,AAA Batteries (4-pack),4,2.99,04/27/19 19:44,"30 Wilson St, San Francisco, CA 94016" +194863,Lightning Charging Cable,1,14.95,04/17/19 10:52,"538 River St, Atlanta, GA 30301" +194864,AAA Batteries (4-pack),2,2.99,04/18/19 20:39,"458 Church St, San Francisco, CA 94016" +194865,USB-C Charging Cable,1,11.95,04/07/19 08:31,"583 Hickory St, San Francisco, CA 94016" +194866,AAA Batteries (4-pack),4,2.99,04/21/19 12:06,"402 12th St, Portland, ME 04101" +194867,iPhone,1,700,04/09/19 17:56,"961 13th St, San Francisco, CA 94016" +194868,27in FHD Monitor,1,149.99,04/04/19 12:11,"793 Willow St, San Francisco, CA 94016" +194869,ThinkPad Laptop,1,999.99,04/01/19 20:42,"704 Jackson St, New York City, NY 10001" +194870,USB-C Charging Cable,1,11.95,04/23/19 01:08,"616 Chestnut St, New York City, NY 10001" +194871,Flatscreen TV,1,300,04/21/19 18:09,"970 River St, San Francisco, CA 94016" +194872,Wired Headphones,1,11.99,04/17/19 09:51,"213 Cedar St, Los Angeles, CA 90001" +194873,AA Batteries (4-pack),1,3.84,04/16/19 16:24,"101 Hill St, Portland, OR 97035" +194874,27in FHD Monitor,1,149.99,04/25/19 07:05,"284 Johnson St, Boston, MA 02215" +194875,Lightning Charging Cable,1,14.95,04/11/19 07:17,"672 14th St, Los Angeles, CA 90001" +194876,Apple Airpods Headphones,1,150,04/17/19 20:05,"162 10th St, Boston, MA 02215" +194877,ThinkPad Laptop,1,999.99,04/19/19 19:50,"415 10th St, Portland, ME 04101" +194878,Macbook Pro Laptop,1,1700,04/01/19 09:40,"359 Hickory St, San Francisco, CA 94016" +194879,Flatscreen TV,1,300,04/22/19 13:57,"203 Johnson St, Seattle, WA 98101" +194880,USB-C Charging Cable,1,11.95,04/11/19 09:25,"667 Ridge St, Portland, ME 04101" +194881,34in Ultrawide Monitor,1,379.99,04/05/19 12:11,"622 4th St, New York City, NY 10001" +194882,Apple Airpods Headphones,1,150,04/20/19 10:54,"210 7th St, New York City, NY 10001" +194883,Wired Headphones,1,11.99,04/27/19 19:24,"929 Willow St, New York City, NY 10001" +194884,ThinkPad Laptop,1,999.99,04/07/19 02:00,"37 South St, New York City, NY 10001" +194885,27in FHD Monitor,1,149.99,04/26/19 15:29,"774 Ridge St, Atlanta, GA 30301" +194886,USB-C Charging Cable,1,11.95,04/24/19 22:06,"836 7th St, Boston, MA 02215" +194887,AA Batteries (4-pack),1,3.84,04/21/19 15:14,"179 Wilson St, Austin, TX 73301" +194888,27in 4K Gaming Monitor,1,389.99,04/13/19 15:44,"40 6th St, Boston, MA 02215" +194889,Apple Airpods Headphones,1,150,04/16/19 23:35,"153 Lincoln St, Los Angeles, CA 90001" +194890,Bose SoundSport Headphones,1,99.99,04/01/19 12:12,"584 Lincoln St, San Francisco, CA 94016" +194891,27in FHD Monitor,1,149.99,04/10/19 10:57,"155 4th St, Atlanta, GA 30301" +194892,USB-C Charging Cable,1,11.95,04/16/19 16:53,"195 West St, Portland, OR 97035" +194893,Flatscreen TV,1,300,04/25/19 13:54,"878 Church St, San Francisco, CA 94016" +194894,AAA Batteries (4-pack),3,2.99,04/15/19 15:02,"312 Dogwood St, New York City, NY 10001" +194895,AAA Batteries (4-pack),1,2.99,04/27/19 23:35,"41 4th St, Boston, MA 02215" +194896,27in FHD Monitor,1,149.99,04/03/19 15:02,"748 13th St, Los Angeles, CA 90001" +194897,Apple Airpods Headphones,1,150,04/28/19 14:24,"265 West St, Portland, OR 97035" +194898,Apple Airpods Headphones,1,150,04/30/19 11:33,"696 Maple St, Dallas, TX 75001" +194899,Bose SoundSport Headphones,1,99.99,04/13/19 13:54,"680 Highland St, Atlanta, GA 30301" +194900,USB-C Charging Cable,1,11.95,04/13/19 02:01,"76 Jefferson St, Boston, MA 02215" +194901,AAA Batteries (4-pack),1,2.99,04/21/19 10:13,"32 South St, Dallas, TX 75001" +194901,AAA Batteries (4-pack),1,2.99,04/21/19 10:13,"32 South St, Dallas, TX 75001" +194902,27in 4K Gaming Monitor,1,389.99,04/27/19 16:43,"265 Jefferson St, Austin, TX 73301" +194903,Bose SoundSport Headphones,1,99.99,04/29/19 20:37,"203 Hickory St, Los Angeles, CA 90001" +194904,Apple Airpods Headphones,1,150,04/15/19 18:55,"845 Wilson St, Boston, MA 02215" +194905,Bose SoundSport Headphones,1,99.99,04/16/19 09:17,"732 10th St, Los Angeles, CA 90001" +194906,Google Phone,1,600,04/19/19 14:15,"351 Church St, Dallas, TX 75001" +194907,AA Batteries (4-pack),1,3.84,04/04/19 13:23,"102 10th St, New York City, NY 10001" +194908,Apple Airpods Headphones,1,150,05/01/19 00:29,"346 9th St, Portland, OR 97035" +194909,AAA Batteries (4-pack),1,2.99,04/05/19 18:04,"34 5th St, Los Angeles, CA 90001" +194910,AA Batteries (4-pack),1,3.84,04/23/19 16:30,"125 Elm St, Dallas, TX 75001" +194911,USB-C Charging Cable,1,11.95,04/29/19 12:23,"731 1st St, Atlanta, GA 30301" +194912,AA Batteries (4-pack),2,3.84,04/21/19 15:42,"817 2nd St, Los Angeles, CA 90001" +194913,27in FHD Monitor,1,149.99,04/20/19 19:24,"871 Ridge St, New York City, NY 10001" +194914,Wired Headphones,1,11.99,04/06/19 05:35,"498 Adams St, New York City, NY 10001" +194915,AAA Batteries (4-pack),3,2.99,04/21/19 14:18,"25 11th St, San Francisco, CA 94016" +194916,USB-C Charging Cable,1,11.95,04/14/19 12:47,"590 Johnson St, Los Angeles, CA 90001" +194917,27in 4K Gaming Monitor,1,389.99,04/06/19 09:06,"367 9th St, Atlanta, GA 30301" +194918,AAA Batteries (4-pack),3,2.99,04/29/19 20:43,"101 South St, Boston, MA 02215" +194919,AA Batteries (4-pack),1,3.84,04/10/19 20:55,"147 5th St, Boston, MA 02215" +194920,Flatscreen TV,1,300,04/24/19 20:47,"260 8th St, Atlanta, GA 30301" +194921,AA Batteries (4-pack),2,3.84,04/11/19 15:11,"480 6th St, San Francisco, CA 94016" +194922,Wired Headphones,2,11.99,04/26/19 17:05,"303 Center St, Los Angeles, CA 90001" +194923,AAA Batteries (4-pack),1,2.99,04/07/19 07:53,"227 Willow St, Dallas, TX 75001" +194924,Lightning Charging Cable,1,14.95,04/18/19 04:54,"144 12th St, San Francisco, CA 94016" +194925,Google Phone,1,600,04/29/19 12:19,"724 5th St, Austin, TX 73301" +194925,USB-C Charging Cable,1,11.95,04/29/19 12:19,"724 5th St, Austin, TX 73301" +194926,Apple Airpods Headphones,1,150,04/24/19 22:01,"102 Adams St, Boston, MA 02215" +194927,USB-C Charging Cable,1,11.95,04/30/19 21:26,"831 Maple St, Atlanta, GA 30301" +194928,Vareebadd Phone,1,400,04/14/19 11:56,"49 12th St, San Francisco, CA 94016" +194929,AAA Batteries (4-pack),1,2.99,04/19/19 10:58,"277 2nd St, Los Angeles, CA 90001" +194930,27in 4K Gaming Monitor,1,389.99,04/01/19 16:58,"151 Forest St, Seattle, WA 98101" +194931,USB-C Charging Cable,1,11.95,04/29/19 17:06,"182 Park St, Los Angeles, CA 90001" +194932,Wired Headphones,2,11.99,04/11/19 07:40,"543 6th St, Atlanta, GA 30301" +194932,Google Phone,1,600,04/11/19 07:40,"543 6th St, Atlanta, GA 30301" +194933,Apple Airpods Headphones,1,150,04/06/19 22:51,"287 Johnson St, San Francisco, CA 94016" +194934,iPhone,1,700,04/30/19 21:19,"772 Park St, San Francisco, CA 94016" +194935,AA Batteries (4-pack),1,3.84,04/23/19 18:12,"152 North St, Los Angeles, CA 90001" +194936,AAA Batteries (4-pack),1,2.99,04/24/19 20:52,"338 Highland St, San Francisco, CA 94016" +194937,Macbook Pro Laptop,1,1700,04/11/19 18:24,"568 2nd St, Boston, MA 02215" +194938,Wired Headphones,1,11.99,04/12/19 10:36,"754 Jefferson St, San Francisco, CA 94016" +194939,Lightning Charging Cable,1,14.95,04/25/19 17:57,"956 Wilson St, San Francisco, CA 94016" +194940,Apple Airpods Headphones,1,150,04/06/19 10:59,"446 Park St, Los Angeles, CA 90001" +194941,Google Phone,1,600,04/07/19 19:05,"209 7th St, Atlanta, GA 30301" +194942,Wired Headphones,2,11.99,04/21/19 13:24,"905 River St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +194943,Apple Airpods Headphones,1,150,04/26/19 22:17,"902 Willow St, Seattle, WA 98101" +194944,AA Batteries (4-pack),1,3.84,04/15/19 09:15,"244 Church St, New York City, NY 10001" +194945,27in FHD Monitor,1,149.99,04/09/19 20:01,"628 2nd St, San Francisco, CA 94016" +194946,Lightning Charging Cable,1,14.95,04/17/19 18:32,"807 Sunset St, San Francisco, CA 94016" +194947,AAA Batteries (4-pack),1,2.99,04/19/19 15:45,"98 River St, Boston, MA 02215" +194948,27in 4K Gaming Monitor,1,389.99,04/29/19 20:00,"707 Meadow St, Seattle, WA 98101" +194949,USB-C Charging Cable,1,11.95,04/17/19 21:40,"903 Lakeview St, Seattle, WA 98101" +194950,Vareebadd Phone,1,400,04/13/19 20:35,"598 1st St, Los Angeles, CA 90001" +194950,USB-C Charging Cable,1,11.95,04/13/19 20:35,"598 1st St, Los Angeles, CA 90001" +194951,20in Monitor,1,109.99,04/11/19 11:15,"363 Maple St, Los Angeles, CA 90001" +194952,Apple Airpods Headphones,1,150,04/16/19 17:19,"995 6th St, Austin, TX 73301" +194953,Lightning Charging Cable,1,14.95,04/16/19 09:52,"761 Highland St, San Francisco, CA 94016" +194954,AAA Batteries (4-pack),2,2.99,04/21/19 23:14,"261 Adams St, New York City, NY 10001" +194955,Bose SoundSport Headphones,1,99.99,04/30/19 19:06,"74 7th St, San Francisco, CA 94016" +194956,Lightning Charging Cable,1,14.95,04/29/19 17:53,"669 Church St, New York City, NY 10001" +194957,Bose SoundSport Headphones,1,99.99,04/13/19 19:43,"72 9th St, San Francisco, CA 94016" +194958,Lightning Charging Cable,1,14.95,04/07/19 17:26,"269 13th St, Atlanta, GA 30301" +194959,27in FHD Monitor,1,149.99,04/25/19 20:17,"126 Pine St, Portland, OR 97035" +194960,Bose SoundSport Headphones,2,99.99,04/20/19 13:57,"978 Main St, San Francisco, CA 94016" +194961,ThinkPad Laptop,1,999.99,04/13/19 22:19,"795 2nd St, San Francisco, CA 94016" +194962,AA Batteries (4-pack),1,3.84,04/13/19 19:56,"716 13th St, San Francisco, CA 94016" +194963,34in Ultrawide Monitor,1,379.99,04/15/19 00:28,"2 Willow St, San Francisco, CA 94016" +194964,LG Dryer,1,600.0,04/06/19 18:06,"635 Lincoln St, San Francisco, CA 94016" +194965,Bose SoundSport Headphones,1,99.99,04/08/19 23:00,"696 5th St, New York City, NY 10001" +194966,Bose SoundSport Headphones,1,99.99,04/17/19 11:37,"896 Spruce St, Portland, ME 04101" +194967,Bose SoundSport Headphones,1,99.99,04/16/19 18:05,"983 Church St, Los Angeles, CA 90001" +194968,Apple Airpods Headphones,1,150,04/08/19 15:25,"517 Center St, Boston, MA 02215" +194969,Google Phone,1,600,04/12/19 10:45,"982 Lincoln St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +194970,Google Phone,1,600,04/04/19 23:18,"658 Cherry St, Atlanta, GA 30301" +194971,27in 4K Gaming Monitor,1,389.99,04/03/19 20:53,"548 West St, Portland, OR 97035" +194972,34in Ultrawide Monitor,1,379.99,04/16/19 11:51,"578 Wilson St, Boston, MA 02215" +194973,Lightning Charging Cable,1,14.95,04/12/19 14:12,"512 Walnut St, Seattle, WA 98101" +194974,AA Batteries (4-pack),1,3.84,04/13/19 09:36,"592 Wilson St, Boston, MA 02215" +194975,Lightning Charging Cable,1,14.95,04/03/19 06:13,"350 8th St, Atlanta, GA 30301" +194976,AA Batteries (4-pack),1,3.84,04/16/19 18:17,"315 Hickory St, Los Angeles, CA 90001" +194977,ThinkPad Laptop,1,999.99,04/23/19 08:56,"534 North St, Los Angeles, CA 90001" +194978,Lightning Charging Cable,1,14.95,04/03/19 17:43,"581 6th St, Dallas, TX 75001" +194979,USB-C Charging Cable,1,11.95,04/11/19 10:46,"570 Meadow St, Los Angeles, CA 90001" +194980,27in FHD Monitor,1,149.99,04/17/19 01:56,"239 South St, Atlanta, GA 30301" +194981,AAA Batteries (4-pack),1,2.99,04/06/19 08:35,"728 Sunset St, San Francisco, CA 94016" +194982,Apple Airpods Headphones,1,150,04/15/19 10:51,"843 Meadow St, San Francisco, CA 94016" +194983,Lightning Charging Cable,1,14.95,04/01/19 12:16,"699 Main St, Los Angeles, CA 90001" +194984,USB-C Charging Cable,1,11.95,04/20/19 17:13,"701 Church St, Atlanta, GA 30301" +194985,Wired Headphones,1,11.99,04/19/19 16:51,"221 Cedar St, New York City, NY 10001" +194986,Lightning Charging Cable,1,14.95,04/25/19 12:54,"196 Chestnut St, Atlanta, GA 30301" +194987,USB-C Charging Cable,1,11.95,04/01/19 15:06,"922 Jackson St, Austin, TX 73301" +194988,Bose SoundSport Headphones,1,99.99,04/26/19 22:24,"115 Washington St, New York City, NY 10001" +194989,Lightning Charging Cable,2,14.95,04/15/19 19:50,"524 Forest St, New York City, NY 10001" +194990,Lightning Charging Cable,1,14.95,04/05/19 03:58,"730 7th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +194991,Wired Headphones,1,11.99,04/25/19 08:58,"600 9th St, Portland, OR 97035" +194992,Wired Headphones,1,11.99,04/24/19 13:24,"991 Jackson St, Los Angeles, CA 90001" +194993,AAA Batteries (4-pack),2,2.99,04/16/19 08:37,"382 West St, Dallas, TX 75001" +194994,Apple Airpods Headphones,1,150,04/16/19 10:12,"222 13th St, San Francisco, CA 94016" +194995,USB-C Charging Cable,1,11.95,04/29/19 15:52,"845 South St, Dallas, TX 75001" +194996,Google Phone,1,600,04/01/19 22:41,"915 Ridge St, Seattle, WA 98101" +194996,USB-C Charging Cable,1,11.95,04/01/19 22:41,"915 Ridge St, Seattle, WA 98101" +194997,iPhone,1,700,04/30/19 17:11,"340 South St, New York City, NY 10001" +194998,Macbook Pro Laptop,1,1700,04/10/19 18:29,"97 8th St, Austin, TX 73301" +194999,USB-C Charging Cable,1,11.95,04/16/19 22:08,"700 Willow St, Los Angeles, CA 90001" +195000,27in 4K Gaming Monitor,1,389.99,04/18/19 17:44,"324 12th St, New York City, NY 10001" +195001,Wired Headphones,1,11.99,04/04/19 20:41,"3 10th St, New York City, NY 10001" +195002,USB-C Charging Cable,1,11.95,04/08/19 18:06,"593 2nd St, San Francisco, CA 94016" +195003,AAA Batteries (4-pack),1,2.99,04/21/19 11:43,"750 Forest St, Seattle, WA 98101" +195004,USB-C Charging Cable,1,11.95,04/15/19 10:09,"4 Jefferson St, San Francisco, CA 94016" +195005,iPhone,1,700,04/21/19 18:33,"999 Park St, San Francisco, CA 94016" +195006,USB-C Charging Cable,1,11.95,04/11/19 18:59,"451 9th St, Boston, MA 02215" +195007,USB-C Charging Cable,1,11.95,04/13/19 23:49,"475 9th St, Atlanta, GA 30301" +195008,AA Batteries (4-pack),1,3.84,04/25/19 19:42,"769 9th St, Portland, OR 97035" +195009,USB-C Charging Cable,1,11.95,04/24/19 13:33,"844 Ridge St, San Francisco, CA 94016" +195010,20in Monitor,1,109.99,04/25/19 18:37,"83 1st St, Boston, MA 02215" +195011,34in Ultrawide Monitor,1,379.99,04/02/19 14:40,"951 North St, San Francisco, CA 94016" +195012,AA Batteries (4-pack),1,3.84,04/25/19 22:05,"818 Ridge St, New York City, NY 10001" +195013,34in Ultrawide Monitor,1,379.99,04/17/19 14:32,"596 River St, New York City, NY 10001" +195014,USB-C Charging Cable,1,11.95,04/21/19 21:24,"669 Washington St, Austin, TX 73301" +195015,AA Batteries (4-pack),1,3.84,04/12/19 12:22,"692 Hickory St, New York City, NY 10001" +195016,Macbook Pro Laptop,1,1700,04/10/19 14:55,"756 Walnut St, New York City, NY 10001" +195017,Apple Airpods Headphones,1,150,04/16/19 14:56,"92 North St, Boston, MA 02215" +195018,20in Monitor,1,109.99,04/07/19 17:38,"507 Wilson St, Seattle, WA 98101" +195019,USB-C Charging Cable,1,11.95,04/06/19 21:39,"914 11th St, San Francisco, CA 94016" +195020,Apple Airpods Headphones,1,150,04/24/19 19:09,"996 River St, Boston, MA 02215" +195021,iPhone,1,700,04/04/19 18:14,"914 Pine St, San Francisco, CA 94016" +195022,USB-C Charging Cable,1,11.95,04/13/19 12:41,"15 River St, San Francisco, CA 94016" +195023,Wired Headphones,2,11.99,04/13/19 08:50,"420 Sunset St, Los Angeles, CA 90001" +195024,USB-C Charging Cable,1,11.95,04/03/19 16:45,"551 9th St, New York City, NY 10001" +195025,Bose SoundSport Headphones,1,99.99,04/09/19 21:05,"269 Forest St, Boston, MA 02215" +195026,Wired Headphones,1,11.99,04/24/19 17:05,"941 Center St, Atlanta, GA 30301" +195027,Wired Headphones,1,11.99,04/06/19 18:39,"769 Ridge St, New York City, NY 10001" +195028,27in 4K Gaming Monitor,1,389.99,04/25/19 18:16,"860 Sunset St, Boston, MA 02215" +195029,AA Batteries (4-pack),1,3.84,04/23/19 18:30,"289 Adams St, Los Angeles, CA 90001" +195030,Lightning Charging Cable,1,14.95,04/24/19 02:05,"672 Wilson St, Portland, OR 97035" +195031,USB-C Charging Cable,2,11.95,04/17/19 19:18,"769 Jefferson St, Los Angeles, CA 90001" +195032,AAA Batteries (4-pack),1,2.99,04/05/19 20:51,"394 South St, Seattle, WA 98101" +195033,Bose SoundSport Headphones,1,99.99,04/23/19 15:20,"987 Forest St, San Francisco, CA 94016" +195034,Lightning Charging Cable,1,14.95,04/26/19 10:07,"617 Main St, San Francisco, CA 94016" +195035,USB-C Charging Cable,1,11.95,04/09/19 01:48,"934 Maple St, San Francisco, CA 94016" +195036,Flatscreen TV,1,300,04/18/19 18:09,"250 Willow St, Austin, TX 73301" +195037,AAA Batteries (4-pack),3,2.99,04/09/19 10:59,"650 Washington St, San Francisco, CA 94016" +195038,USB-C Charging Cable,1,11.95,04/23/19 11:36,"736 12th St, Dallas, TX 75001" +195039,Wired Headphones,1,11.99,04/05/19 11:13,"160 4th St, San Francisco, CA 94016" +195040,USB-C Charging Cable,1,11.95,04/29/19 10:49,"357 Hickory St, New York City, NY 10001" +195041,USB-C Charging Cable,1,11.95,04/27/19 21:13,"315 Maple St, Los Angeles, CA 90001" +195042,Lightning Charging Cable,2,14.95,04/10/19 15:47,"91 6th St, New York City, NY 10001" +195043,Flatscreen TV,1,300,04/22/19 23:19,"67 Church St, Los Angeles, CA 90001" +195044,Wired Headphones,1,11.99,04/08/19 20:20,"523 14th St, Dallas, TX 75001" +195045,AA Batteries (4-pack),2,3.84,04/11/19 14:34,"332 Lincoln St, Los Angeles, CA 90001" +195046,Apple Airpods Headphones,1,150,04/01/19 10:35,"361 2nd St, San Francisco, CA 94016" +195047,Wired Headphones,1,11.99,04/10/19 08:12,"470 Cherry St, New York City, NY 10001" +195048,Lightning Charging Cable,1,14.95,04/15/19 21:34,"762 1st St, Boston, MA 02215" +195049,USB-C Charging Cable,1,11.95,04/18/19 15:46,"565 Maple St, Los Angeles, CA 90001" +195050,Lightning Charging Cable,2,14.95,04/09/19 00:40,"577 Ridge St, Austin, TX 73301" +195051,Lightning Charging Cable,1,14.95,04/29/19 19:39,"200 River St, Dallas, TX 75001" +195052,AA Batteries (4-pack),1,3.84,04/10/19 07:00,"788 9th St, San Francisco, CA 94016" +195053,ThinkPad Laptop,1,999.99,04/27/19 12:23,"335 Washington St, New York City, NY 10001" +195054,Wired Headphones,1,11.99,04/04/19 16:25,"534 5th St, Seattle, WA 98101" +195055,USB-C Charging Cable,1,11.95,04/29/19 18:36,"917 Meadow St, Los Angeles, CA 90001" +195056,Wired Headphones,1,11.99,04/17/19 20:11,"485 10th St, Seattle, WA 98101" +195057,Wired Headphones,1,11.99,04/25/19 23:11,"51 Highland St, Boston, MA 02215" +195058,USB-C Charging Cable,2,11.95,04/27/19 20:48,"165 South St, Dallas, TX 75001" +195059,Bose SoundSport Headphones,1,99.99,04/02/19 17:22,"777 South St, Austin, TX 73301" +195060,AA Batteries (4-pack),1,3.84,04/02/19 02:55,"60 Chestnut St, San Francisco, CA 94016" +195061,AAA Batteries (4-pack),1,2.99,04/27/19 16:40,"709 South St, Portland, OR 97035" +195062,27in 4K Gaming Monitor,1,389.99,04/30/19 13:44,"442 7th St, Boston, MA 02215" +195063,20in Monitor,1,109.99,04/01/19 20:43,"203 Jackson St, Seattle, WA 98101" +195064,Macbook Pro Laptop,1,1700,04/08/19 10:06,"686 Dogwood St, Los Angeles, CA 90001" +195064,Apple Airpods Headphones,1,150,04/08/19 10:06,"686 Dogwood St, Los Angeles, CA 90001" +195065,Wired Headphones,1,11.99,04/01/19 08:25,"638 Cedar St, San Francisco, CA 94016" +195066,Google Phone,1,600,04/19/19 10:15,"751 Maple St, Los Angeles, CA 90001" +195067,AA Batteries (4-pack),1,3.84,04/01/19 11:42,"366 Park St, Los Angeles, CA 90001" +195068,Bose SoundSport Headphones,1,99.99,04/26/19 10:26,"903 Wilson St, New York City, NY 10001" +195069,AAA Batteries (4-pack),2,2.99,04/23/19 14:17,"38 South St, Boston, MA 02215" +195070,Wired Headphones,1,11.99,04/28/19 00:47,"622 4th St, New York City, NY 10001" +195071,34in Ultrawide Monitor,1,379.99,04/25/19 13:34,"86 West St, Atlanta, GA 30301" +195072,Wired Headphones,1,11.99,04/26/19 11:38,"287 West St, Dallas, TX 75001" +195073,AA Batteries (4-pack),2,3.84,04/26/19 12:15,"279 14th St, Los Angeles, CA 90001" +195074,Lightning Charging Cable,1,14.95,04/29/19 20:01,"290 Ridge St, San Francisco, CA 94016" +195075,iPhone,1,700,04/17/19 23:20,"207 12th St, Los Angeles, CA 90001" +195076,27in FHD Monitor,1,149.99,04/09/19 22:16,"115 West St, Boston, MA 02215" +195077,USB-C Charging Cable,2,11.95,04/27/19 23:29,"94 Wilson St, Austin, TX 73301" +195078,AA Batteries (4-pack),1,3.84,04/16/19 11:34,"436 5th St, Dallas, TX 75001" +195079,USB-C Charging Cable,1,11.95,04/06/19 20:48,"517 Maple St, San Francisco, CA 94016" +195080,Vareebadd Phone,1,400,04/10/19 13:07,"102 Dogwood St, Austin, TX 73301" +195080,USB-C Charging Cable,1,11.95,04/10/19 13:07,"102 Dogwood St, Austin, TX 73301" +195081,Lightning Charging Cable,2,14.95,04/10/19 09:02,"352 Park St, Austin, TX 73301" +195082,Apple Airpods Headphones,1,150,04/28/19 18:56,"642 Hickory St, Boston, MA 02215" +195083,Apple Airpods Headphones,1,150,04/30/19 09:16,"591 Lakeview St, Boston, MA 02215" +195084,Bose SoundSport Headphones,1,99.99,04/17/19 15:49,"860 Meadow St, Boston, MA 02215" +195085,Apple Airpods Headphones,1,150,04/19/19 09:39,"857 13th St, Portland, OR 97035" +195086,AA Batteries (4-pack),2,3.84,04/05/19 14:15,"253 Washington St, New York City, NY 10001" +195087,Lightning Charging Cable,1,14.95,04/09/19 23:50,"463 Chestnut St, Seattle, WA 98101" +195088,Apple Airpods Headphones,1,150,04/10/19 07:39,"568 Spruce St, Los Angeles, CA 90001" +195089,AA Batteries (4-pack),1,3.84,04/10/19 03:21,"277 Dogwood St, Los Angeles, CA 90001" +195090,iPhone,1,700,04/08/19 21:28,"728 Adams St, New York City, NY 10001" +195090,Wired Headphones,2,11.99,04/08/19 21:28,"728 Adams St, New York City, NY 10001" +195091,AA Batteries (4-pack),1,3.84,04/16/19 22:55,"432 Madison St, Dallas, TX 75001" +195092,Flatscreen TV,1,300,04/10/19 07:28,"271 7th St, Boston, MA 02215" +195093,AA Batteries (4-pack),1,3.84,04/19/19 06:46,"925 Cedar St, Austin, TX 73301" +195094,AAA Batteries (4-pack),1,2.99,04/19/19 17:47,"159 Maple St, Portland, OR 97035" +195095,Bose SoundSport Headphones,1,99.99,04/07/19 18:47,"614 Church St, San Francisco, CA 94016" +195096,AAA Batteries (4-pack),1,2.99,04/05/19 13:43,"323 River St, San Francisco, CA 94016" +195097,AAA Batteries (4-pack),1,2.99,04/09/19 16:34,"565 South St, Atlanta, GA 30301" +195098,AAA Batteries (4-pack),1,2.99,04/09/19 06:02,"264 Johnson St, San Francisco, CA 94016" +195099,34in Ultrawide Monitor,1,379.99,04/02/19 12:21,"192 Walnut St, Atlanta, GA 30301" +195100,ThinkPad Laptop,1,999.99,04/02/19 23:51,"381 Walnut St, Dallas, TX 75001" +195101,USB-C Charging Cable,1,11.95,04/05/19 19:42,"422 Lake St, San Francisco, CA 94016" +195102,AA Batteries (4-pack),1,3.84,04/02/19 21:40,"692 Forest St, San Francisco, CA 94016" +195103,Lightning Charging Cable,1,14.95,04/21/19 15:14,"517 6th St, San Francisco, CA 94016" +195104,USB-C Charging Cable,1,11.95,04/09/19 20:51,"994 Wilson St, San Francisco, CA 94016" +195105,27in FHD Monitor,1,149.99,04/07/19 14:54,"767 Park St, San Francisco, CA 94016" +195106,Wired Headphones,1,11.99,04/14/19 17:44,"755 4th St, San Francisco, CA 94016" +195107,Lightning Charging Cable,1,14.95,04/25/19 21:08,"654 Hickory St, Seattle, WA 98101" +195108,USB-C Charging Cable,1,11.95,04/27/19 13:32,"339 West St, Atlanta, GA 30301" +195109,27in FHD Monitor,1,149.99,04/22/19 19:08,"702 6th St, San Francisco, CA 94016" +195110,Bose SoundSport Headphones,1,99.99,04/24/19 15:02,"476 7th St, Los Angeles, CA 90001" +195111,27in 4K Gaming Monitor,1,389.99,04/11/19 12:24,"209 North St, New York City, NY 10001" +195112,AAA Batteries (4-pack),1,2.99,04/30/19 08:55,"922 Spruce St, Seattle, WA 98101" +195113,AAA Batteries (4-pack),3,2.99,04/17/19 15:37,"496 Lakeview St, Boston, MA 02215" +195114,Bose SoundSport Headphones,1,99.99,04/17/19 16:20,"536 Lake St, San Francisco, CA 94016" +195115,USB-C Charging Cable,1,11.95,04/15/19 09:25,"430 9th St, New York City, NY 10001" +195116,AA Batteries (4-pack),1,3.84,04/07/19 09:56,"697 Cedar St, Atlanta, GA 30301" +195117,Wired Headphones,1,11.99,04/07/19 04:09,"757 13th St, San Francisco, CA 94016" +195118,Apple Airpods Headphones,1,150,04/28/19 14:41,"668 Cherry St, San Francisco, CA 94016" +195119,20in Monitor,1,109.99,04/28/19 07:28,"647 Hickory St, Los Angeles, CA 90001" +195120,Apple Airpods Headphones,1,150,04/29/19 13:11,"138 6th St, San Francisco, CA 94016" +195121,Wired Headphones,2,11.99,04/29/19 21:09,"611 Lincoln St, Boston, MA 02215" +195122,Wired Headphones,1,11.99,04/15/19 10:50,"134 7th St, San Francisco, CA 94016" +195123,Lightning Charging Cable,1,14.95,04/08/19 13:45,"748 Spruce St, San Francisco, CA 94016" +195124,Wired Headphones,1,11.99,04/02/19 15:36,"326 13th St, Dallas, TX 75001" +195125,Lightning Charging Cable,1,14.95,04/02/19 01:37,"937 Ridge St, New York City, NY 10001" +195126,AAA Batteries (4-pack),1,2.99,04/04/19 21:25,"676 Sunset St, Dallas, TX 75001" +195127,AAA Batteries (4-pack),1,2.99,04/06/19 17:06,"8 South St, Los Angeles, CA 90001" +195128,Bose SoundSport Headphones,1,99.99,04/13/19 15:13,"852 12th St, New York City, NY 10001" +195129,Flatscreen TV,1,300,04/05/19 10:05,"463 Hickory St, New York City, NY 10001" +195130,Wired Headphones,1,11.99,04/01/19 12:51,"562 5th St, Los Angeles, CA 90001" +195131,Flatscreen TV,1,300,04/25/19 05:02,"722 13th St, Portland, OR 97035" +195132,AAA Batteries (4-pack),2,2.99,04/09/19 07:06,"110 Spruce St, Dallas, TX 75001" +195133,Wired Headphones,2,11.99,04/19/19 21:27,"754 Cedar St, Boston, MA 02215" +195134,ThinkPad Laptop,1,999.99,04/07/19 21:02,"441 Madison St, San Francisco, CA 94016" +195135,Macbook Pro Laptop,1,1700,04/25/19 18:16,"695 12th St, New York City, NY 10001" +195136,USB-C Charging Cable,1,11.95,04/04/19 10:05,"94 Chestnut St, New York City, NY 10001" +195137,Lightning Charging Cable,1,14.95,04/16/19 11:46,"771 West St, Seattle, WA 98101" +195138,Apple Airpods Headphones,1,150,04/04/19 23:32,"487 Adams St, San Francisco, CA 94016" +195139,Bose SoundSport Headphones,1,99.99,04/15/19 20:36,"202 River St, Atlanta, GA 30301" +195140,Vareebadd Phone,1,400,04/19/19 13:12,"285 Spruce St, New York City, NY 10001" +195141,AA Batteries (4-pack),1,3.84,04/24/19 13:18,"24 South St, New York City, NY 10001" +195142,27in FHD Monitor,1,149.99,04/26/19 22:05,"361 11th St, San Francisco, CA 94016" +195143,Lightning Charging Cable,1,14.95,04/02/19 10:11,"701 Walnut St, Los Angeles, CA 90001" +195144,34in Ultrawide Monitor,1,379.99,04/08/19 10:56,"63 Lakeview St, San Francisco, CA 94016" +195145,AA Batteries (4-pack),1,3.84,04/22/19 21:11,"991 Pine St, New York City, NY 10001" +195146,Wired Headphones,1,11.99,04/16/19 11:51,"89 2nd St, San Francisco, CA 94016" +195147,Flatscreen TV,2,300,04/08/19 19:16,"941 Meadow St, Los Angeles, CA 90001" +195148,USB-C Charging Cable,1,11.95,04/13/19 08:33,"223 Dogwood St, San Francisco, CA 94016" +195149,Apple Airpods Headphones,1,150,04/07/19 22:54,"523 Pine St, San Francisco, CA 94016" +195150,iPhone,1,700,04/05/19 18:43,"642 13th St, Dallas, TX 75001" +195150,Wired Headphones,1,11.99,04/05/19 18:43,"642 13th St, Dallas, TX 75001" +195151,Vareebadd Phone,1,400,04/15/19 21:58,"982 Main St, Austin, TX 73301" +195152,AAA Batteries (4-pack),2,2.99,04/27/19 18:30,"728 11th St, Atlanta, GA 30301" +195153,Apple Airpods Headphones,1,150,04/08/19 17:47,"719 13th St, Seattle, WA 98101" +195154,Wired Headphones,1,11.99,04/01/19 06:31,"568 Forest St, New York City, NY 10001" +195155,AAA Batteries (4-pack),1,2.99,04/23/19 17:27,"292 12th St, Austin, TX 73301" +195156,27in 4K Gaming Monitor,1,389.99,04/08/19 18:17,"160 South St, Boston, MA 02215" +195157,AAA Batteries (4-pack),1,2.99,04/09/19 20:49,"804 12th St, Dallas, TX 75001" +195158,Lightning Charging Cable,1,14.95,04/05/19 19:40,"508 Forest St, San Francisco, CA 94016" +195159,AAA Batteries (4-pack),1,2.99,04/27/19 10:48,"911 9th St, New York City, NY 10001" +195160,AA Batteries (4-pack),1,3.84,04/03/19 20:13,"818 Pine St, New York City, NY 10001" +195161,27in 4K Gaming Monitor,1,389.99,04/03/19 20:16,"879 Cedar St, Dallas, TX 75001" +195162,Wired Headphones,1,11.99,04/24/19 05:08,"710 Park St, Atlanta, GA 30301" +195163,Apple Airpods Headphones,1,150,04/09/19 11:52,"272 River St, New York City, NY 10001" +195164,USB-C Charging Cable,1,11.95,04/26/19 17:11,"568 Johnson St, Atlanta, GA 30301" +195165,AA Batteries (4-pack),2,3.84,04/18/19 21:37,"446 South St, Seattle, WA 98101" +195166,iPhone,1,700,04/11/19 18:16,"194 Hill St, Boston, MA 02215" +195167,AAA Batteries (4-pack),1,2.99,04/16/19 15:43,"711 2nd St, Atlanta, GA 30301" +195168,LG Dryer,1,600.0,04/15/19 18:53,"143 Lincoln St, Austin, TX 73301" +195169,USB-C Charging Cable,1,11.95,04/18/19 11:33,"495 Park St, New York City, NY 10001" +195170,AA Batteries (4-pack),1,3.84,04/27/19 17:22,"758 Willow St, Austin, TX 73301" +195171,AA Batteries (4-pack),1,3.84,04/27/19 21:38,"930 River St, Atlanta, GA 30301" +195172,USB-C Charging Cable,1,11.95,04/09/19 07:29,"624 8th St, Los Angeles, CA 90001" +195173,Lightning Charging Cable,1,14.95,04/10/19 20:01,"380 Walnut St, Portland, OR 97035" +195174,Wired Headphones,1,11.99,04/08/19 15:10,"741 Cedar St, Austin, TX 73301" +195174,Wired Headphones,1,11.99,04/08/19 15:10,"741 Cedar St, Austin, TX 73301" +195175,Apple Airpods Headphones,1,150,04/13/19 21:16,"869 2nd St, Atlanta, GA 30301" +195176,Apple Airpods Headphones,1,150,04/19/19 13:11,"526 Cedar St, New York City, NY 10001" +195177,AAA Batteries (4-pack),1,2.99,04/04/19 20:03,"6 Highland St, Boston, MA 02215" +195178,USB-C Charging Cable,1,11.95,04/07/19 18:57,"704 9th St, Boston, MA 02215" +195179,AA Batteries (4-pack),2,3.84,04/16/19 14:45,"107 6th St, Seattle, WA 98101" +195180,20in Monitor,1,109.99,04/12/19 09:16,"262 4th St, Portland, ME 04101" +195181,USB-C Charging Cable,1,11.95,04/05/19 20:43,"345 Spruce St, San Francisco, CA 94016" +195182,AA Batteries (4-pack),1,3.84,04/25/19 10:00,"833 12th St, New York City, NY 10001" +195183,Lightning Charging Cable,1,14.95,04/05/19 18:22,"499 Lake St, Los Angeles, CA 90001" +195184,27in FHD Monitor,1,149.99,04/27/19 13:42,"288 Highland St, Los Angeles, CA 90001" +195185,Lightning Charging Cable,1,14.95,04/19/19 20:00,"638 Lincoln St, Boston, MA 02215" +195186,Apple Airpods Headphones,1,150,04/30/19 12:24,"498 12th St, San Francisco, CA 94016" +195187,Wired Headphones,2,11.99,04/03/19 11:45,"942 Madison St, Los Angeles, CA 90001" +195188,Bose SoundSport Headphones,2,99.99,04/06/19 17:35,"329 Washington St, Dallas, TX 75001" +195189,iPhone,1,700,04/20/19 17:13,"494 Lincoln St, Seattle, WA 98101" +195190,Wired Headphones,1,11.99,04/10/19 12:47,"664 Meadow St, Portland, OR 97035" +195190,AAA Batteries (4-pack),2,2.99,04/10/19 12:47,"664 Meadow St, Portland, OR 97035" +195191,AA Batteries (4-pack),1,3.84,04/10/19 20:17,"151 7th St, Seattle, WA 98101" +195192,iPhone,1,700,04/24/19 19:27,"230 Jackson St, San Francisco, CA 94016" +195192,Apple Airpods Headphones,1,150,04/24/19 19:27,"230 Jackson St, San Francisco, CA 94016" +195193,Flatscreen TV,1,300,04/28/19 14:21,"971 Sunset St, New York City, NY 10001" +195194,Apple Airpods Headphones,1,150,04/19/19 10:40,"568 Jefferson St, Los Angeles, CA 90001" +195195,Wired Headphones,1,11.99,04/05/19 13:14,"798 Adams St, San Francisco, CA 94016" +195196,AAA Batteries (4-pack),1,2.99,04/30/19 10:29,"625 13th St, Atlanta, GA 30301" +195197,Bose SoundSport Headphones,1,99.99,04/13/19 19:00,"357 8th St, Dallas, TX 75001" +195198,Wired Headphones,1,11.99,04/21/19 21:58,"289 Cedar St, New York City, NY 10001" +195199,Lightning Charging Cable,1,14.95,04/25/19 00:24,"255 River St, Portland, OR 97035" +195200,27in FHD Monitor,1,149.99,04/27/19 11:31,"240 West St, Austin, TX 73301" +195201,Wired Headphones,2,11.99,04/11/19 08:24,"704 Center St, Los Angeles, CA 90001" +195202,AAA Batteries (4-pack),4,2.99,04/04/19 21:15,"69 Walnut St, Dallas, TX 75001" +195203,USB-C Charging Cable,1,11.95,04/16/19 22:43,"620 Pine St, San Francisco, CA 94016" +195204,Bose SoundSport Headphones,1,99.99,04/30/19 03:38,"409 Lakeview St, Boston, MA 02215" +195205,Wired Headphones,1,11.99,04/28/19 10:40,"628 Cedar St, San Francisco, CA 94016" +195206,Macbook Pro Laptop,1,1700,04/28/19 12:06,"778 Maple St, San Francisco, CA 94016" +195207,Wired Headphones,1,11.99,04/19/19 09:18,"354 11th St, Atlanta, GA 30301" +195208,AA Batteries (4-pack),1,3.84,04/28/19 16:50,"195 Cedar St, Atlanta, GA 30301" +195209,Lightning Charging Cable,1,14.95,04/03/19 15:59,"80 Cherry St, Boston, MA 02215" +195210,AA Batteries (4-pack),1,3.84,04/23/19 11:35,"186 14th St, San Francisco, CA 94016" +195211,AA Batteries (4-pack),1,3.84,04/08/19 12:09,"916 6th St, Dallas, TX 75001" +195212,USB-C Charging Cable,1,11.95,04/07/19 00:21,"495 Meadow St, San Francisco, CA 94016" +195213,AAA Batteries (4-pack),1,2.99,04/14/19 09:42,"355 Main St, New York City, NY 10001" +195214,AAA Batteries (4-pack),1,2.99,04/18/19 15:50,"146 North St, Boston, MA 02215" +195215,27in FHD Monitor,1,149.99,04/20/19 19:35,"98 Maple St, Los Angeles, CA 90001" +195216,27in FHD Monitor,1,149.99,04/15/19 12:07,"294 4th St, Los Angeles, CA 90001" +195217,LG Dryer,1,600.0,04/03/19 21:26,"582 2nd St, San Francisco, CA 94016" +195218,AAA Batteries (4-pack),2,2.99,04/22/19 21:39,"500 10th St, Austin, TX 73301" +195219,AAA Batteries (4-pack),3,2.99,04/25/19 20:23,"133 Wilson St, Boston, MA 02215" +195220,Apple Airpods Headphones,1,150,04/01/19 13:44,"483 Washington St, Austin, TX 73301" +195221,Macbook Pro Laptop,1,1700,04/01/19 06:56,"404 10th St, San Francisco, CA 94016" +195222,Wired Headphones,1,11.99,04/18/19 15:08,"557 Madison St, Austin, TX 73301" +195223,20in Monitor,1,109.99,04/13/19 16:18,"38 Cherry St, Dallas, TX 75001" +195224,Lightning Charging Cable,1,14.95,04/26/19 15:31,"540 10th St, New York City, NY 10001" +195225,Lightning Charging Cable,1,14.95,04/14/19 15:48,"613 5th St, Los Angeles, CA 90001" +195226,Apple Airpods Headphones,1,150,04/06/19 09:30,"66 Lincoln St, Los Angeles, CA 90001" +195227,Apple Airpods Headphones,1,150,04/18/19 09:52,"150 Lake St, San Francisco, CA 94016" +195228,Wired Headphones,1,11.99,04/23/19 18:16,"725 Washington St, New York City, NY 10001" +195229,AAA Batteries (4-pack),1,2.99,04/08/19 11:13,"491 Forest St, San Francisco, CA 94016" +195230,ThinkPad Laptop,1,999.99,04/13/19 15:37,"472 Lincoln St, New York City, NY 10001" +195231,Apple Airpods Headphones,1,150,04/26/19 18:46,"699 West St, New York City, NY 10001" +195232,AA Batteries (4-pack),1,3.84,04/27/19 14:45,"822 10th St, Atlanta, GA 30301" +195233,Wired Headphones,2,11.99,04/12/19 10:33,"140 2nd St, Los Angeles, CA 90001" +195234,Bose SoundSport Headphones,1,99.99,04/18/19 22:06,"33 West St, New York City, NY 10001" +195235,AAA Batteries (4-pack),1,2.99,04/29/19 13:38,"78 9th St, Atlanta, GA 30301" +195236,AA Batteries (4-pack),3,3.84,04/16/19 17:10,"845 9th St, Dallas, TX 75001" +195237,iPhone,1,700,04/19/19 18:49,"196 Main St, Boston, MA 02215" +195238,Wired Headphones,1,11.99,04/01/19 19:39,"872 14th St, San Francisco, CA 94016" +195238,20in Monitor,1,109.99,04/01/19 19:39,"872 14th St, San Francisco, CA 94016" +195239,27in FHD Monitor,1,149.99,04/27/19 11:24,"387 River St, New York City, NY 10001" +195240,Apple Airpods Headphones,1,150,04/15/19 14:26,"750 Hill St, Austin, TX 73301" +195241,Vareebadd Phone,1,400,04/30/19 08:50,"828 12th St, Portland, OR 97035" +195242,34in Ultrawide Monitor,1,379.99,04/28/19 20:31,"717 Washington St, Portland, ME 04101" +195243,AAA Batteries (4-pack),1,2.99,04/24/19 22:37,"753 13th St, Los Angeles, CA 90001" +195244,AAA Batteries (4-pack),2,2.99,04/23/19 19:35,"721 Highland St, New York City, NY 10001" +195245,AA Batteries (4-pack),1,3.84,04/04/19 22:57,"253 Ridge St, Atlanta, GA 30301" +195246,AAA Batteries (4-pack),3,2.99,04/13/19 11:14,"839 Jackson St, Dallas, TX 75001" +195247,Flatscreen TV,1,300,04/04/19 11:16,"765 Wilson St, New York City, NY 10001" +195248,AAA Batteries (4-pack),2,2.99,04/08/19 08:59,"719 Washington St, Seattle, WA 98101" +195249,Flatscreen TV,1,300,04/16/19 08:42,"216 Elm St, Portland, OR 97035" +195250,USB-C Charging Cable,1,11.95,04/03/19 21:04,"821 Madison St, San Francisco, CA 94016" +195251,Lightning Charging Cable,1,14.95,04/28/19 11:01,"130 Ridge St, San Francisco, CA 94016" +195252,Wired Headphones,1,11.99,04/26/19 08:19,"603 Jefferson St, Atlanta, GA 30301" +195253,AA Batteries (4-pack),1,3.84,04/14/19 13:10,"819 13th St, Boston, MA 02215" +195254,Wired Headphones,1,11.99,04/28/19 20:31,"889 4th St, San Francisco, CA 94016" +195255,27in FHD Monitor,1,149.99,04/28/19 22:54,"77 13th St, Austin, TX 73301" +195256,Macbook Pro Laptop,1,1700,04/02/19 18:58,"970 1st St, San Francisco, CA 94016" +195257,Lightning Charging Cable,1,14.95,04/20/19 18:31,"138 Forest St, Boston, MA 02215" +195258,ThinkPad Laptop,1,999.99,04/08/19 18:33,"202 Forest St, San Francisco, CA 94016" +195259,Apple Airpods Headphones,1,150,04/17/19 21:00,"366 Sunset St, Los Angeles, CA 90001" +195260,AA Batteries (4-pack),3,3.84,04/20/19 20:33,"265 Park St, Portland, OR 97035" +195261,AAA Batteries (4-pack),1,2.99,04/21/19 16:30,"822 4th St, Boston, MA 02215" +195262,34in Ultrawide Monitor,1,379.99,04/08/19 15:02,"317 West St, San Francisco, CA 94016" +195263,Lightning Charging Cable,1,14.95,04/30/19 12:14,"952 Highland St, Boston, MA 02215" +195264,Wired Headphones,1,11.99,04/07/19 10:50,"325 Cedar St, Los Angeles, CA 90001" +195265,AAA Batteries (4-pack),1,2.99,04/08/19 13:29,"592 Ridge St, San Francisco, CA 94016" +195266,AAA Batteries (4-pack),1,2.99,04/15/19 16:22,"490 6th St, Portland, ME 04101" +195267,Lightning Charging Cable,1,14.95,04/16/19 12:51,"84 West St, Dallas, TX 75001" +195268,27in FHD Monitor,1,149.99,04/10/19 17:51,"504 North St, Los Angeles, CA 90001" +195269,Bose SoundSport Headphones,1,99.99,04/07/19 10:29,"337 Ridge St, San Francisco, CA 94016" +195270,AA Batteries (4-pack),2,3.84,04/13/19 19:37,"825 West St, Portland, OR 97035" +195271,Bose SoundSport Headphones,1,99.99,04/09/19 11:24,"406 Spruce St, Los Angeles, CA 90001" +195272,USB-C Charging Cable,1,11.95,04/09/19 20:26,"865 12th St, Dallas, TX 75001" +195273,USB-C Charging Cable,2,11.95,04/24/19 20:04,"522 Chestnut St, New York City, NY 10001" +195274,AAA Batteries (4-pack),1,2.99,04/04/19 17:22,"151 2nd St, Los Angeles, CA 90001" +195275,USB-C Charging Cable,1,11.95,04/29/19 14:20,"453 9th St, Los Angeles, CA 90001" +195276,Flatscreen TV,1,300,04/08/19 00:05,"281 Willow St, New York City, NY 10001" +195277,ThinkPad Laptop,1,999.99,04/19/19 21:39,"510 Spruce St, Seattle, WA 98101" +195278,Lightning Charging Cable,2,14.95,04/06/19 11:54,"701 Maple St, San Francisco, CA 94016" +195279,AA Batteries (4-pack),2,3.84,04/18/19 23:10,"347 Meadow St, Los Angeles, CA 90001" +195280,Apple Airpods Headphones,1,150,04/11/19 11:38,"256 Center St, Atlanta, GA 30301" +195281,Wired Headphones,1,11.99,04/05/19 20:48,"996 North St, Austin, TX 73301" +195282,Wired Headphones,2,11.99,04/10/19 11:28,"77 River St, Boston, MA 02215" +195283,Lightning Charging Cable,1,14.95,04/19/19 14:36,"208 11th St, San Francisco, CA 94016" +195284,20in Monitor,1,109.99,04/05/19 12:17,"43 2nd St, Boston, MA 02215" +195285,AAA Batteries (4-pack),2,2.99,04/19/19 05:46,"10 Spruce St, New York City, NY 10001" +195286,27in FHD Monitor,1,149.99,04/06/19 23:01,"355 Walnut St, Dallas, TX 75001" +195287,27in 4K Gaming Monitor,1,389.99,04/22/19 13:22,"616 6th St, Portland, OR 97035" +195288,Apple Airpods Headphones,1,150,04/25/19 07:41,"298 Jefferson St, Portland, OR 97035" +195289,AA Batteries (4-pack),1,3.84,04/17/19 12:26,"324 10th St, Los Angeles, CA 90001" +195290,iPhone,1,700,04/08/19 17:00,"499 6th St, New York City, NY 10001" +195290,Wired Headphones,1,11.99,04/08/19 17:00,"499 6th St, New York City, NY 10001" +195291,AAA Batteries (4-pack),3,2.99,04/09/19 16:18,"878 Cherry St, New York City, NY 10001" +195292,AAA Batteries (4-pack),2,2.99,04/18/19 10:12,"897 Sunset St, Dallas, TX 75001" +195293,Wired Headphones,1,11.99,04/05/19 11:33,"227 Lake St, Austin, TX 73301" +195294,Lightning Charging Cable,2,14.95,04/09/19 12:34,"122 4th St, New York City, NY 10001" +195295,AA Batteries (4-pack),1,3.84,04/10/19 17:18,"863 Ridge St, Dallas, TX 75001" +195296,Bose SoundSport Headphones,1,99.99,04/24/19 10:32,"945 Spruce St, San Francisco, CA 94016" +195297,AAA Batteries (4-pack),1,2.99,04/18/19 12:26,"475 Jefferson St, Austin, TX 73301" +195298,AA Batteries (4-pack),1,3.84,04/01/19 12:28,"260 7th St, Boston, MA 02215" +195299,Wired Headphones,1,11.99,04/23/19 00:30,"779 Cherry St, Los Angeles, CA 90001" +195300,AA Batteries (4-pack),2,3.84,04/17/19 11:28,"259 Main St, New York City, NY 10001" +195301,Vareebadd Phone,1,400,04/01/19 20:49,"655 Maple St, Boston, MA 02215" +195302,Apple Airpods Headphones,1,150,04/10/19 11:39,"668 South St, Seattle, WA 98101" +195303,AAA Batteries (4-pack),1,2.99,04/16/19 11:44,"115 West St, Dallas, TX 75001" +195304,USB-C Charging Cable,1,11.95,04/05/19 12:31,"119 13th St, New York City, NY 10001" +195305,Apple Airpods Headphones,1,150,04/09/19 23:22,"700 Spruce St, Los Angeles, CA 90001" +195306,Bose SoundSport Headphones,1,99.99,04/26/19 18:28,"696 Church St, Los Angeles, CA 90001" +195307,USB-C Charging Cable,1,11.95,04/01/19 14:02,"176 Maple St, San Francisco, CA 94016" +195308,Wired Headphones,1,11.99,04/11/19 17:29,"500 Lincoln St, San Francisco, CA 94016" +195309,USB-C Charging Cable,1,11.95,04/16/19 15:08,"969 7th St, Los Angeles, CA 90001" +195310,Google Phone,1,600,04/25/19 02:48,"231 Jackson St, San Francisco, CA 94016" +195310,USB-C Charging Cable,1,11.95,04/25/19 02:48,"231 Jackson St, San Francisco, CA 94016" +195311,Bose SoundSport Headphones,1,99.99,04/05/19 08:14,"344 Elm St, New York City, NY 10001" +195312,Lightning Charging Cable,1,14.95,04/26/19 14:10,"393 10th St, San Francisco, CA 94016" +195313,Bose SoundSport Headphones,1,99.99,04/15/19 11:00,"665 Maple St, Austin, TX 73301" +195314,AAA Batteries (4-pack),1,2.99,04/07/19 12:47,"486 River St, Los Angeles, CA 90001" +195315,Lightning Charging Cable,1,14.95,04/28/19 19:37,"678 Walnut St, San Francisco, CA 94016" +195316,Lightning Charging Cable,1,14.95,04/15/19 21:27,"727 Cedar St, Atlanta, GA 30301" +195317,AAA Batteries (4-pack),4,2.99,04/29/19 10:09,"839 6th St, Boston, MA 02215" +195318,Wired Headphones,1,11.99,04/19/19 11:25,"684 13th St, Los Angeles, CA 90001" +195319,Apple Airpods Headphones,1,150,04/15/19 13:07,"467 Willow St, New York City, NY 10001" +195320,34in Ultrawide Monitor,1,379.99,04/30/19 21:12,"322 River St, New York City, NY 10001" +195321,Google Phone,1,600,04/06/19 19:13,"309 West St, New York City, NY 10001" +195322,34in Ultrawide Monitor,1,379.99,04/14/19 15:24,"365 Adams St, Los Angeles, CA 90001" +195323,27in FHD Monitor,1,149.99,04/28/19 20:07,"532 1st St, San Francisco, CA 94016" +195324,AA Batteries (4-pack),1,3.84,04/19/19 15:29,"708 2nd St, Dallas, TX 75001" +195325,Apple Airpods Headphones,1,150,04/01/19 19:38,"321 9th St, Boston, MA 02215" +195326,Apple Airpods Headphones,1,150,04/15/19 16:37,"963 11th St, Atlanta, GA 30301" +195327,34in Ultrawide Monitor,1,379.99,04/08/19 19:00,"366 8th St, Boston, MA 02215" +195328,20in Monitor,1,109.99,04/29/19 09:05,"935 Cherry St, New York City, NY 10001" +195329,Apple Airpods Headphones,1,150,04/15/19 22:57,"5 Sunset St, Austin, TX 73301" +195330,Apple Airpods Headphones,1,150,04/29/19 03:25,"887 Walnut St, San Francisco, CA 94016" +195331,Wired Headphones,1,11.99,04/22/19 15:53,"652 Meadow St, Dallas, TX 75001" +195332,27in 4K Gaming Monitor,1,389.99,04/16/19 09:17,"272 Sunset St, Los Angeles, CA 90001" +195333,Wired Headphones,2,11.99,04/02/19 13:53,"777 Sunset St, Portland, OR 97035" +195334,Wired Headphones,2,11.99,04/06/19 17:41,"440 Cherry St, Atlanta, GA 30301" +195335,34in Ultrawide Monitor,1,379.99,04/18/19 08:58,"799 South St, Los Angeles, CA 90001" +195336,iPhone,1,700,04/28/19 23:13,"263 8th St, Portland, ME 04101" +195337,Apple Airpods Headphones,1,150,04/28/19 13:21,"763 Chestnut St, Los Angeles, CA 90001" +195338,Google Phone,1,600,04/25/19 23:23,"463 Center St, San Francisco, CA 94016" +195339,Lightning Charging Cable,1,14.95,04/15/19 18:23,"213 Lincoln St, Boston, MA 02215" +195340,AAA Batteries (4-pack),1,2.99,04/10/19 22:51,"610 Center St, New York City, NY 10001" +195341,Lightning Charging Cable,1,14.95,04/14/19 09:51,"889 Washington St, Seattle, WA 98101" +195342,AA Batteries (4-pack),1,3.84,04/01/19 14:35,"603 Wilson St, Dallas, TX 75001" +195343,27in 4K Gaming Monitor,1,389.99,04/02/19 11:44,"684 Forest St, Atlanta, GA 30301" +195344,AA Batteries (4-pack),1,3.84,04/23/19 10:17,"247 9th St, Austin, TX 73301" +195345,USB-C Charging Cable,1,11.95,04/10/19 21:19,"490 Lakeview St, New York City, NY 10001" +195346,Google Phone,1,600,04/03/19 07:36,"473 Madison St, Los Angeles, CA 90001" +195346,USB-C Charging Cable,1,11.95,04/03/19 07:36,"473 Madison St, Los Angeles, CA 90001" +195347,Apple Airpods Headphones,1,150,04/01/19 21:18,"998 4th St, San Francisco, CA 94016" +195348,AAA Batteries (4-pack),1,2.99,04/22/19 11:53,"416 Cedar St, Dallas, TX 75001" +195349,USB-C Charging Cable,1,11.95,04/27/19 12:42,"54 Jefferson St, Boston, MA 02215" +195350,iPhone,1,700,04/07/19 14:32,"409 Jackson St, Dallas, TX 75001" +195350,Wired Headphones,1,11.99,04/07/19 14:32,"409 Jackson St, Dallas, TX 75001" +195351,Wired Headphones,1,11.99,04/02/19 20:57,"584 12th St, New York City, NY 10001" +195352,34in Ultrawide Monitor,1,379.99,04/04/19 10:58,"248 Forest St, Los Angeles, CA 90001" +195353,Lightning Charging Cable,1,14.95,04/12/19 22:23,"638 River St, Dallas, TX 75001" +195354,Wired Headphones,1,11.99,04/19/19 12:40,"693 Elm St, Dallas, TX 75001" +195354,AAA Batteries (4-pack),2,2.99,04/19/19 12:40,"693 Elm St, Dallas, TX 75001" +195355,27in 4K Gaming Monitor,1,389.99,04/03/19 08:13,"86 Meadow St, Seattle, WA 98101" +195356,Apple Airpods Headphones,1,150,04/09/19 11:24,"635 Lincoln St, San Francisco, CA 94016" +195357,Bose SoundSport Headphones,1,99.99,04/07/19 18:47,"792 Dogwood St, New York City, NY 10001" +195358,AAA Batteries (4-pack),1,2.99,04/07/19 01:35,"743 Adams St, New York City, NY 10001" +195359,Flatscreen TV,1,300,04/21/19 22:03,"738 8th St, Austin, TX 73301" +195360,34in Ultrawide Monitor,1,379.99,04/15/19 22:07,"860 Sunset St, Los Angeles, CA 90001" +195361,27in 4K Gaming Monitor,1,389.99,04/22/19 11:34,"910 Main St, San Francisco, CA 94016" +195362,27in FHD Monitor,1,149.99,04/13/19 18:23,"382 12th St, Seattle, WA 98101" +195363,Apple Airpods Headphones,1,150,04/17/19 11:03,"981 Washington St, San Francisco, CA 94016" +195364,Bose SoundSport Headphones,1,99.99,04/04/19 10:41,"924 West St, San Francisco, CA 94016" +195365,Wired Headphones,1,11.99,04/17/19 09:14,"163 Ridge St, Los Angeles, CA 90001" +195366,Macbook Pro Laptop,1,1700,04/27/19 13:56,"915 Sunset St, San Francisco, CA 94016" +195367,Apple Airpods Headphones,1,150,04/19/19 10:22,"815 Forest St, Atlanta, GA 30301" +195368,Lightning Charging Cable,1,14.95,04/03/19 19:07,"660 Cherry St, New York City, NY 10001" +195369,AA Batteries (4-pack),1,3.84,04/01/19 18:37,"572 Elm St, Los Angeles, CA 90001" +195370,USB-C Charging Cable,1,11.95,04/06/19 13:05,"765 14th St, Los Angeles, CA 90001" +195371,AAA Batteries (4-pack),1,2.99,04/23/19 22:59,"162 6th St, San Francisco, CA 94016" +195371,AA Batteries (4-pack),1,3.84,04/23/19 22:59,"162 6th St, San Francisco, CA 94016" +195372,Wired Headphones,1,11.99,04/01/19 08:24,"750 12th St, Los Angeles, CA 90001" +195373,Macbook Pro Laptop,1,1700,04/09/19 10:19,"823 14th St, Los Angeles, CA 90001" +195374,27in FHD Monitor,1,149.99,04/28/19 14:38,"904 Lake St, Atlanta, GA 30301" +195375,Apple Airpods Headphones,1,150,04/07/19 11:32,"206 Highland St, Seattle, WA 98101" +195376,AA Batteries (4-pack),1,3.84,04/24/19 18:02,"974 South St, San Francisco, CA 94016" +195377,Bose SoundSport Headphones,1,99.99,04/03/19 09:09,"494 Adams St, New York City, NY 10001" +195377,Lightning Charging Cable,1,14.95,04/03/19 09:09,"494 Adams St, New York City, NY 10001" +195378,Apple Airpods Headphones,1,150,04/29/19 16:53,"788 Sunset St, San Francisco, CA 94016" +195379,AAA Batteries (4-pack),1,2.99,04/26/19 19:17,"152 Park St, Los Angeles, CA 90001" +195380,AA Batteries (4-pack),1,3.84,04/21/19 06:58,"461 Forest St, Austin, TX 73301" +195381,Bose SoundSport Headphones,1,99.99,04/16/19 13:31,"975 Meadow St, Boston, MA 02215" +195382,AA Batteries (4-pack),1,3.84,04/24/19 21:54,"94 Lakeview St, San Francisco, CA 94016" +195383,Google Phone,1,600,04/07/19 15:56,"317 Dogwood St, San Francisco, CA 94016" +195383,Wired Headphones,1,11.99,04/07/19 15:56,"317 Dogwood St, San Francisco, CA 94016" +195384,AAA Batteries (4-pack),2,2.99,04/24/19 19:58,"559 Main St, Seattle, WA 98101" +195385,Vareebadd Phone,1,400,04/30/19 14:32,"299 2nd St, Los Angeles, CA 90001" +195385,Wired Headphones,1,11.99,04/30/19 14:32,"299 2nd St, Los Angeles, CA 90001" +195386,Apple Airpods Headphones,1,150,04/28/19 14:32,"289 Center St, Dallas, TX 75001" +195387,Lightning Charging Cable,1,14.95,04/14/19 21:49,"49 Spruce St, Boston, MA 02215" +195388,34in Ultrawide Monitor,1,379.99,04/15/19 22:49,"937 Meadow St, San Francisco, CA 94016" +195389,Lightning Charging Cable,1,14.95,04/11/19 13:00,"881 Elm St, San Francisco, CA 94016" +195390,27in FHD Monitor,1,149.99,04/13/19 09:12,"158 Lakeview St, San Francisco, CA 94016" +195391,27in FHD Monitor,1,149.99,04/26/19 17:05,"209 4th St, San Francisco, CA 94016" +195392,27in FHD Monitor,1,149.99,04/11/19 23:19,"260 Jefferson St, Los Angeles, CA 90001" +195393,34in Ultrawide Monitor,1,379.99,04/17/19 17:55,"688 9th St, San Francisco, CA 94016" +195394,Lightning Charging Cable,1,14.95,04/01/19 22:19,"579 Hickory St, Boston, MA 02215" +195395,Wired Headphones,1,11.99,04/16/19 19:45,"381 Lake St, San Francisco, CA 94016" +195396,Lightning Charging Cable,1,14.95,04/23/19 16:09,"130 Park St, New York City, NY 10001" +195396,Wired Headphones,1,11.99,04/23/19 16:09,"130 Park St, New York City, NY 10001" +195397,ThinkPad Laptop,1,999.99,04/20/19 10:06,"993 South St, Boston, MA 02215" +195398,Lightning Charging Cable,1,14.95,04/25/19 08:23,"739 Forest St, New York City, NY 10001" +195399,Bose SoundSport Headphones,1,99.99,04/09/19 13:07,"604 Maple St, San Francisco, CA 94016" +195400,Lightning Charging Cable,1,14.95,04/30/19 00:50,"903 Cedar St, San Francisco, CA 94016" +195401,Macbook Pro Laptop,1,1700,04/11/19 11:41,"480 Adams St, New York City, NY 10001" +195402,AA Batteries (4-pack),1,3.84,04/22/19 17:20,"419 Jefferson St, Dallas, TX 75001" +195403,AA Batteries (4-pack),1,3.84,04/19/19 13:56,"531 Ridge St, Portland, OR 97035" +195404,Bose SoundSport Headphones,1,99.99,04/21/19 14:34,"241 Ridge St, San Francisco, CA 94016" +195405,Wired Headphones,1,11.99,04/23/19 17:18,"496 8th St, Portland, OR 97035" +195406,AA Batteries (4-pack),1,3.84,04/04/19 18:01,"833 Spruce St, Atlanta, GA 30301" +195407,Bose SoundSport Headphones,1,99.99,04/17/19 14:27,"613 Meadow St, San Francisco, CA 94016" +195408,AAA Batteries (4-pack),1,2.99,04/03/19 09:20,"94 Willow St, Seattle, WA 98101" +195409,27in FHD Monitor,1,149.99,04/27/19 18:55,"369 Pine St, Atlanta, GA 30301" +195410,AAA Batteries (4-pack),3,2.99,04/06/19 22:54,"793 13th St, Los Angeles, CA 90001" +195411,34in Ultrawide Monitor,1,379.99,04/06/19 23:33,"782 Main St, San Francisco, CA 94016" +195412,AA Batteries (4-pack),2,3.84,04/19/19 21:58,"912 Spruce St, Los Angeles, CA 90001" +195413,AAA Batteries (4-pack),1,2.99,04/29/19 19:27,"885 Spruce St, Los Angeles, CA 90001" +195414,Apple Airpods Headphones,1,150,04/20/19 18:47,"642 1st St, Los Angeles, CA 90001" +195415,Wired Headphones,1,11.99,04/28/19 11:33,"354 Pine St, Seattle, WA 98101" +195416,AA Batteries (4-pack),1,3.84,04/04/19 17:36,"352 Chestnut St, San Francisco, CA 94016" +195417,Bose SoundSport Headphones,1,99.99,04/19/19 19:37,"525 Hickory St, Boston, MA 02215" +195418,AAA Batteries (4-pack),3,2.99,04/23/19 15:34,"999 2nd St, Los Angeles, CA 90001" +195419,USB-C Charging Cable,2,11.95,04/27/19 10:14,"110 Wilson St, San Francisco, CA 94016" +195420,Google Phone,1,600,04/16/19 21:51,"203 Dogwood St, Atlanta, GA 30301" +195420,USB-C Charging Cable,1,11.95,04/16/19 21:51,"203 Dogwood St, Atlanta, GA 30301" +195421,AA Batteries (4-pack),1,3.84,04/07/19 13:29,"960 Main St, New York City, NY 10001" +195422,Lightning Charging Cable,1,14.95,04/11/19 06:44,"999 Wilson St, Boston, MA 02215" +195423,Apple Airpods Headphones,1,150,04/10/19 02:37,"556 10th St, San Francisco, CA 94016" +195424,Bose SoundSport Headphones,1,99.99,04/19/19 14:26,"223 13th St, Atlanta, GA 30301" +195425,Lightning Charging Cable,1,14.95,04/16/19 17:48,"595 Jefferson St, Seattle, WA 98101" +195426,Lightning Charging Cable,1,14.95,04/01/19 11:46,"57 Hickory St, Atlanta, GA 30301" +195427,AA Batteries (4-pack),1,3.84,04/05/19 11:32,"745 Jackson St, San Francisco, CA 94016" +195428,Bose SoundSport Headphones,1,99.99,04/07/19 12:39,"109 Jefferson St, Dallas, TX 75001" +195429,Apple Airpods Headphones,1,150,04/11/19 22:18,"935 Johnson St, New York City, NY 10001" +195430,Lightning Charging Cable,1,14.95,04/26/19 16:33,"677 Center St, Seattle, WA 98101" +195431,AA Batteries (4-pack),1,3.84,04/30/19 11:09,"68 2nd St, New York City, NY 10001" +195432,34in Ultrawide Monitor,1,379.99,04/18/19 11:11,"748 Lincoln St, Seattle, WA 98101" +195433,Bose SoundSport Headphones,1,99.99,04/10/19 14:00,"649 South St, San Francisco, CA 94016" +195434,AA Batteries (4-pack),1,3.84,04/13/19 20:31,"607 Wilson St, Austin, TX 73301" +195435,Apple Airpods Headphones,1,150,04/12/19 12:45,"512 5th St, San Francisco, CA 94016" +195436,USB-C Charging Cable,1,11.95,04/22/19 18:44,"849 Jackson St, Seattle, WA 98101" +195437,20in Monitor,1,109.99,04/28/19 08:37,"920 Church St, Boston, MA 02215" +195438,USB-C Charging Cable,1,11.95,04/27/19 20:11,"494 Ridge St, New York City, NY 10001" +195439,Lightning Charging Cable,1,14.95,04/10/19 16:18,"59 Washington St, Los Angeles, CA 90001" +195440,USB-C Charging Cable,1,11.95,04/01/19 11:04,"711 8th St, Dallas, TX 75001" +195441,AA Batteries (4-pack),1,3.84,04/03/19 14:56,"449 14th St, New York City, NY 10001" +195442,Lightning Charging Cable,1,14.95,04/16/19 09:40,"887 6th St, Portland, OR 97035" +195443,Macbook Pro Laptop,1,1700,04/24/19 11:00,"98 West St, San Francisco, CA 94016" +195444,Lightning Charging Cable,1,14.95,04/14/19 21:47,"230 10th St, San Francisco, CA 94016" +195445,34in Ultrawide Monitor,1,379.99,04/18/19 12:36,"622 Jackson St, Atlanta, GA 30301" +195446,Lightning Charging Cable,1,14.95,04/14/19 13:22,"573 9th St, San Francisco, CA 94016" +195447,USB-C Charging Cable,1,11.95,04/06/19 08:51,"572 9th St, San Francisco, CA 94016" +195448,USB-C Charging Cable,1,11.95,04/03/19 19:42,"522 6th St, Los Angeles, CA 90001" +195449,ThinkPad Laptop,1,999.99,04/12/19 17:52,"837 14th St, San Francisco, CA 94016" +195450,USB-C Charging Cable,1,11.95,04/14/19 09:40,"158 Jackson St, Los Angeles, CA 90001" +195451,Bose SoundSport Headphones,1,99.99,04/21/19 19:33,"528 Jefferson St, San Francisco, CA 94016" +195452,ThinkPad Laptop,1,999.99,04/28/19 17:45,"82 River St, San Francisco, CA 94016" +195453,Wired Headphones,1,11.99,04/27/19 20:03,"317 7th St, Los Angeles, CA 90001" +195454,USB-C Charging Cable,1,11.95,04/20/19 15:40,"210 13th St, Dallas, TX 75001" +195455,USB-C Charging Cable,1,11.95,04/04/19 11:15,"712 Johnson St, Los Angeles, CA 90001" +195456,ThinkPad Laptop,1,999.99,04/08/19 13:02,"827 14th St, Portland, OR 97035" +195457,Bose SoundSport Headphones,1,99.99,04/17/19 16:06,"974 Lakeview St, Atlanta, GA 30301" +195458,USB-C Charging Cable,1,11.95,04/16/19 22:34,"714 Main St, Los Angeles, CA 90001" +195459,Bose SoundSport Headphones,1,99.99,04/02/19 00:38,"212 5th St, Los Angeles, CA 90001" +195460,LG Dryer,1,600.0,04/08/19 16:52,"939 11th St, Boston, MA 02215" +195461,Wired Headphones,1,11.99,04/25/19 12:20,"630 4th St, New York City, NY 10001" +195462,27in 4K Gaming Monitor,1,389.99,04/09/19 05:53,"260 13th St, New York City, NY 10001" +195463,USB-C Charging Cable,1,11.95,04/07/19 21:15,"708 Willow St, Boston, MA 02215" +195464,AAA Batteries (4-pack),1,2.99,04/12/19 17:22,"739 Jefferson St, New York City, NY 10001" +195465,34in Ultrawide Monitor,1,379.99,04/18/19 18:34,"854 Washington St, San Francisco, CA 94016" +195466,Flatscreen TV,1,300,04/11/19 11:11,"716 9th St, Seattle, WA 98101" +195467,Lightning Charging Cable,1,14.95,04/02/19 19:24,"601 Wilson St, San Francisco, CA 94016" +195468,Wired Headphones,1,11.99,04/21/19 10:17,"262 Jefferson St, San Francisco, CA 94016" +195469,Wired Headphones,1,11.99,04/23/19 19:20,"728 13th St, Portland, OR 97035" +195469,AAA Batteries (4-pack),1,2.99,04/23/19 19:20,"728 13th St, Portland, OR 97035" +195470,Wired Headphones,1,11.99,04/06/19 23:15,"942 12th St, San Francisco, CA 94016" +195471,Apple Airpods Headphones,1,150,04/13/19 14:37,"165 9th St, San Francisco, CA 94016" +195472,ThinkPad Laptop,1,999.99,04/23/19 09:15,"23 Meadow St, San Francisco, CA 94016" +195473,27in 4K Gaming Monitor,1,389.99,04/12/19 16:54,"373 2nd St, New York City, NY 10001" +195474,Bose SoundSport Headphones,1,99.99,04/23/19 11:30,"298 Ridge St, New York City, NY 10001" +195475,AAA Batteries (4-pack),2,2.99,04/08/19 15:25,"465 Hickory St, San Francisco, CA 94016" +195476,Wired Headphones,1,11.99,04/23/19 13:54,"969 11th St, Los Angeles, CA 90001" +195477,20in Monitor,1,109.99,04/26/19 09:52,"110 6th St, San Francisco, CA 94016" +195478,Wired Headphones,1,11.99,04/13/19 13:08,"45 9th St, Boston, MA 02215" +195479,Lightning Charging Cable,1,14.95,04/24/19 02:45,"801 Hickory St, Atlanta, GA 30301" +195480,27in 4K Gaming Monitor,1,389.99,04/09/19 06:26,"451 Cedar St, New York City, NY 10001" +195481,Wired Headphones,1,11.99,04/17/19 20:02,"666 13th St, Los Angeles, CA 90001" +195482,AA Batteries (4-pack),1,3.84,04/17/19 13:28,"870 Cedar St, Portland, OR 97035" +195483,20in Monitor,1,109.99,04/27/19 13:33,"669 Maple St, San Francisco, CA 94016" +195484,Apple Airpods Headphones,1,150,04/30/19 21:17,"37 Park St, Portland, OR 97035" +195485,Bose SoundSport Headphones,1,99.99,04/05/19 19:04,"549 Walnut St, Seattle, WA 98101" +195486,USB-C Charging Cable,1,11.95,04/21/19 19:45,"830 Hill St, Seattle, WA 98101" +195487,Apple Airpods Headphones,1,150,04/03/19 13:00,"215 14th St, Seattle, WA 98101" +195488,34in Ultrawide Monitor,1,379.99,04/21/19 22:31,"496 1st St, Portland, OR 97035" +195489,USB-C Charging Cable,1,11.95,04/10/19 23:08,"408 Adams St, New York City, NY 10001" +195490,Lightning Charging Cable,1,14.95,04/06/19 18:30,"155 Johnson St, New York City, NY 10001" +195491,Bose SoundSport Headphones,1,99.99,04/07/19 20:15,"308 Hill St, Boston, MA 02215" +195492,Bose SoundSport Headphones,1,99.99,04/28/19 01:56,"765 South St, Boston, MA 02215" +195493,Lightning Charging Cable,1,14.95,04/11/19 10:27,"167 Hickory St, Los Angeles, CA 90001" +195494,Google Phone,1,600,04/25/19 19:14,"573 Church St, San Francisco, CA 94016" +195494,USB-C Charging Cable,1,11.95,04/25/19 19:14,"573 Church St, San Francisco, CA 94016" +195495,Lightning Charging Cable,1,14.95,04/25/19 12:26,"135 8th St, Seattle, WA 98101" +195496,Apple Airpods Headphones,1,150,04/14/19 21:54,"53 Lakeview St, Los Angeles, CA 90001" +195497,Bose SoundSport Headphones,1,99.99,04/05/19 13:38,"712 10th St, Los Angeles, CA 90001" +195498,USB-C Charging Cable,1,11.95,04/11/19 23:20,"978 Church St, San Francisco, CA 94016" +195499,20in Monitor,2,109.99,04/16/19 10:43,"394 Hickory St, San Francisco, CA 94016" +195500,Apple Airpods Headphones,1,150,04/03/19 08:45,"953 North St, San Francisco, CA 94016" +195501,ThinkPad Laptop,1,999.99,04/15/19 16:22,"769 Dogwood St, San Francisco, CA 94016" +195502,Wired Headphones,1,11.99,04/22/19 11:56,"381 Willow St, Dallas, TX 75001" +195503,USB-C Charging Cable,1,11.95,04/19/19 16:11,"721 7th St, Austin, TX 73301" +195504,USB-C Charging Cable,1,11.95,04/27/19 17:03,"781 Meadow St, San Francisco, CA 94016" +195505,Bose SoundSport Headphones,1,99.99,04/21/19 21:33,"900 Walnut St, Portland, OR 97035" +195506,Apple Airpods Headphones,1,150,04/06/19 08:14,"110 South St, New York City, NY 10001" +195507,20in Monitor,1,109.99,04/12/19 13:32,"61 7th St, Seattle, WA 98101" +195508,Lightning Charging Cable,1,14.95,04/14/19 16:19,"36 Jackson St, San Francisco, CA 94016" +195509,Wired Headphones,1,11.99,04/24/19 19:14,"179 7th St, Portland, OR 97035" +195510,Bose SoundSport Headphones,1,99.99,04/05/19 15:24,"707 Cherry St, San Francisco, CA 94016" +195511,AA Batteries (4-pack),1,3.84,04/30/19 10:02,"164 13th St, Boston, MA 02215" +195512,Apple Airpods Headphones,1,150,04/19/19 20:04,"561 Chestnut St, Atlanta, GA 30301" +195513,27in FHD Monitor,1,149.99,04/17/19 18:46,"661 Ridge St, New York City, NY 10001" +195514,Wired Headphones,1,11.99,04/23/19 08:41,"377 Sunset St, Austin, TX 73301" +195515,Macbook Pro Laptop,1,1700,04/10/19 16:59,"211 Ridge St, Austin, TX 73301" +195516,iPhone,1,700,04/10/19 23:30,"205 1st St, New York City, NY 10001" +195516,Apple Airpods Headphones,1,150,04/10/19 23:30,"205 1st St, New York City, NY 10001" +195517,AA Batteries (4-pack),1,3.84,04/04/19 12:21,"957 Cherry St, Portland, OR 97035" +195518,Lightning Charging Cable,1,14.95,04/20/19 23:26,"550 North St, Austin, TX 73301" +195519,AA Batteries (4-pack),2,3.84,04/22/19 18:23,"270 8th St, San Francisco, CA 94016" +195520,Lightning Charging Cable,1,14.95,04/17/19 16:40,"577 Main St, Los Angeles, CA 90001" +195521,AAA Batteries (4-pack),1,2.99,04/28/19 01:01,"35 River St, Seattle, WA 98101" +195522,Wired Headphones,1,11.99,04/26/19 12:44,"189 Center St, Boston, MA 02215" +195523,34in Ultrawide Monitor,1,379.99,04/03/19 15:48,"998 Washington St, San Francisco, CA 94016" +195524,AAA Batteries (4-pack),2,2.99,04/14/19 13:42,"57 7th St, Los Angeles, CA 90001" +195525,20in Monitor,1,109.99,04/16/19 10:32,"302 5th St, San Francisco, CA 94016" +195526,34in Ultrawide Monitor,1,379.99,04/26/19 14:14,"802 Lakeview St, Seattle, WA 98101" +195527,27in FHD Monitor,1,149.99,04/12/19 11:11,"673 5th St, Boston, MA 02215" +195528,Bose SoundSport Headphones,1,99.99,04/30/19 23:45,"725 Washington St, Austin, TX 73301" +195529,AA Batteries (4-pack),1,3.84,04/11/19 09:11,"695 Lincoln St, San Francisco, CA 94016" +195530,AAA Batteries (4-pack),1,2.99,04/30/19 19:30,"879 13th St, Los Angeles, CA 90001" +195531,27in FHD Monitor,1,149.99,04/11/19 17:29,"74 Meadow St, Boston, MA 02215" +195532,27in FHD Monitor,1,149.99,04/13/19 10:49,"578 5th St, Portland, OR 97035" +195533,Macbook Pro Laptop,1,1700,04/28/19 13:47,"810 Lakeview St, Los Angeles, CA 90001" +195534,AA Batteries (4-pack),1,3.84,04/29/19 21:19,"770 Cherry St, Dallas, TX 75001" +195535,Wired Headphones,1,11.99,04/19/19 03:51,"608 North St, Atlanta, GA 30301" +195536,USB-C Charging Cable,1,11.95,04/06/19 17:35,"676 Sunset St, New York City, NY 10001" +195537,USB-C Charging Cable,1,11.95,04/26/19 10:35,"17 Elm St, Dallas, TX 75001" +195538,Wired Headphones,2,11.99,04/27/19 14:24,"934 Elm St, Portland, ME 04101" +195539,Google Phone,1,600,04/26/19 14:13,"115 14th St, Los Angeles, CA 90001" +195539,Wired Headphones,1,11.99,04/26/19 14:13,"115 14th St, Los Angeles, CA 90001" +195540,USB-C Charging Cable,1,11.95,04/01/19 11:58,"644 Highland St, San Francisco, CA 94016" +195541,AAA Batteries (4-pack),1,2.99,04/09/19 19:48,"914 Chestnut St, Atlanta, GA 30301" +195542,USB-C Charging Cable,1,11.95,04/19/19 20:38,"220 Park St, Los Angeles, CA 90001" +195543,Flatscreen TV,1,300,04/23/19 21:07,"263 Church St, Los Angeles, CA 90001" +195544,USB-C Charging Cable,2,11.95,04/16/19 09:26,"922 8th St, New York City, NY 10001" +195545,USB-C Charging Cable,1,11.95,04/27/19 20:49,"243 11th St, Los Angeles, CA 90001" +195546,AAA Batteries (4-pack),1,2.99,04/25/19 18:18,"295 Ridge St, Los Angeles, CA 90001" +195547,Wired Headphones,1,11.99,04/12/19 20:56,"523 Cedar St, Atlanta, GA 30301" +195548,34in Ultrawide Monitor,1,379.99,04/06/19 19:26,"618 Cherry St, New York City, NY 10001" +195549,iPhone,1,700,04/11/19 21:30,"590 1st St, Boston, MA 02215" +195550,Wired Headphones,1,11.99,04/28/19 11:45,"560 7th St, San Francisco, CA 94016" +195551,AA Batteries (4-pack),2,3.84,04/22/19 21:57,"408 Center St, Dallas, TX 75001" +195552,AAA Batteries (4-pack),1,2.99,04/23/19 13:36,"69 12th St, Portland, OR 97035" +195553,USB-C Charging Cable,1,11.95,04/17/19 16:24,"922 11th St, San Francisco, CA 94016" +195554,USB-C Charging Cable,1,11.95,04/16/19 23:29,"804 Willow St, Boston, MA 02215" +195555,Bose SoundSport Headphones,1,99.99,04/09/19 22:23,"386 Wilson St, San Francisco, CA 94016" +195556,Bose SoundSport Headphones,1,99.99,04/10/19 08:00,"307 North St, San Francisco, CA 94016" +195557,USB-C Charging Cable,1,11.95,04/22/19 15:52,"121 North St, San Francisco, CA 94016" +195558,Lightning Charging Cable,1,14.95,04/06/19 08:02,"299 Hickory St, Los Angeles, CA 90001" +195559,AA Batteries (4-pack),1,3.84,04/06/19 17:01,"638 Park St, Los Angeles, CA 90001" +195560,Lightning Charging Cable,1,14.95,04/23/19 14:46,"641 Spruce St, New York City, NY 10001" +195561,Wired Headphones,1,11.99,04/04/19 15:21,"845 Elm St, San Francisco, CA 94016" +195562,AAA Batteries (4-pack),1,2.99,04/08/19 11:46,"692 Maple St, Dallas, TX 75001" +195563,Apple Airpods Headphones,1,150,04/01/19 16:47,"232 7th St, San Francisco, CA 94016" +195564,iPhone,1,700,04/28/19 13:09,"633 Spruce St, Los Angeles, CA 90001" +195565,Wired Headphones,1,11.99,04/27/19 00:50,"339 2nd St, Los Angeles, CA 90001" +195566,Apple Airpods Headphones,1,150,04/15/19 14:30,"215 Center St, New York City, NY 10001" +195567,34in Ultrawide Monitor,1,379.99,04/19/19 17:13,"476 13th St, San Francisco, CA 94016" +195568,USB-C Charging Cable,1,11.95,04/12/19 23:29,"546 9th St, Los Angeles, CA 90001" +195569,Lightning Charging Cable,1,14.95,04/11/19 21:53,"199 Dogwood St, Seattle, WA 98101" +195570,27in 4K Gaming Monitor,1,389.99,04/08/19 21:05,"209 Sunset St, Atlanta, GA 30301" +195571,Apple Airpods Headphones,1,150,04/11/19 20:35,"8 4th St, Dallas, TX 75001" +195572,34in Ultrawide Monitor,1,379.99,04/25/19 13:52,"495 4th St, San Francisco, CA 94016" +195573,Vareebadd Phone,1,400,04/02/19 16:39,"843 7th St, San Francisco, CA 94016" +195574,AAA Batteries (4-pack),1,2.99,04/02/19 10:22,"85 Elm St, Dallas, TX 75001" +195575,Bose SoundSport Headphones,1,99.99,04/01/19 09:10,"209 Highland St, San Francisco, CA 94016" +195576,AAA Batteries (4-pack),2,2.99,04/26/19 09:32,"106 Jackson St, Portland, OR 97035" +195577,Flatscreen TV,1,300,04/17/19 13:09,"508 Adams St, Los Angeles, CA 90001" +195578,USB-C Charging Cable,1,11.95,04/24/19 12:47,"346 Jackson St, Los Angeles, CA 90001" +195579,iPhone,1,700,04/02/19 23:34,"588 Dogwood St, San Francisco, CA 94016" +195580,Google Phone,1,600,04/20/19 19:43,"234 Forest St, Austin, TX 73301" +195581,AAA Batteries (4-pack),1,2.99,04/10/19 17:17,"626 Highland St, San Francisco, CA 94016" +195582,AA Batteries (4-pack),1,3.84,04/22/19 19:11,"77 14th St, San Francisco, CA 94016" +195583,Lightning Charging Cable,1,14.95,04/13/19 13:31,"798 11th St, Los Angeles, CA 90001" +195584,Flatscreen TV,1,300,04/29/19 18:51,"937 River St, Boston, MA 02215" +195585,AA Batteries (4-pack),1,3.84,04/24/19 08:17,"284 Lincoln St, New York City, NY 10001" +195586,27in 4K Gaming Monitor,1,389.99,04/06/19 12:29,"396 Highland St, Dallas, TX 75001" +195587,Macbook Pro Laptop,1,1700,04/17/19 14:02,"438 Hill St, San Francisco, CA 94016" +195588,27in 4K Gaming Monitor,1,389.99,04/21/19 13:19,"33 Center St, San Francisco, CA 94016" +195589,Wired Headphones,1,11.99,04/11/19 18:29,"709 Madison St, Dallas, TX 75001" +195590,Google Phone,1,600,04/02/19 18:17,"308 Lincoln St, Atlanta, GA 30301" +195590,Bose SoundSport Headphones,1,99.99,04/02/19 18:17,"308 Lincoln St, Atlanta, GA 30301" +195591,iPhone,1,700,04/03/19 19:09,"325 Lakeview St, Los Angeles, CA 90001" +195592,USB-C Charging Cable,2,11.95,04/20/19 23:50,"156 5th St, Boston, MA 02215" +195593,Flatscreen TV,1,300,04/15/19 21:23,"273 Wilson St, Boston, MA 02215" +195594,Lightning Charging Cable,1,14.95,04/02/19 18:09,"208 Lincoln St, Boston, MA 02215" +195595,Macbook Pro Laptop,1,1700,04/20/19 20:16,"364 North St, Los Angeles, CA 90001" +195596,27in FHD Monitor,1,149.99,04/17/19 18:34,"487 Cherry St, Boston, MA 02215" +195597,Flatscreen TV,1,300,04/11/19 10:23,"470 Chestnut St, Atlanta, GA 30301" +195598,20in Monitor,1,109.99,04/06/19 12:23,"118 Highland St, New York City, NY 10001" +195599,Bose SoundSport Headphones,1,99.99,04/05/19 21:35,"247 Lakeview St, Boston, MA 02215" +195600,Lightning Charging Cable,1,14.95,04/28/19 20:46,"563 Park St, Seattle, WA 98101" +195601,Apple Airpods Headphones,1,150,04/01/19 15:37,"574 Dogwood St, Boston, MA 02215" +195602,USB-C Charging Cable,1,11.95,04/10/19 14:46,"809 River St, Atlanta, GA 30301" +195603,Flatscreen TV,1,300,04/23/19 18:56,"668 Main St, Atlanta, GA 30301" +195604,Vareebadd Phone,1,400,04/23/19 00:00,"691 Hill St, Los Angeles, CA 90001" +195605,Wired Headphones,3,11.99,04/24/19 18:15,"645 Willow St, Austin, TX 73301" +195606,20in Monitor,1,109.99,04/03/19 16:52,"440 12th St, Los Angeles, CA 90001" +195607,Google Phone,1,600,04/10/19 18:54,"164 6th St, San Francisco, CA 94016" +195608,AAA Batteries (4-pack),2,2.99,04/25/19 23:01,"630 Highland St, Los Angeles, CA 90001" +195609,Lightning Charging Cable,1,14.95,04/02/19 17:25,"523 Maple St, Seattle, WA 98101" +195610,27in 4K Gaming Monitor,1,389.99,04/21/19 14:01,"754 13th St, Boston, MA 02215" +195611,27in FHD Monitor,1,149.99,04/28/19 13:46,"121 Dogwood St, San Francisco, CA 94016" +195612,Apple Airpods Headphones,1,150,04/16/19 15:40,"359 8th St, San Francisco, CA 94016" +195613,Wired Headphones,1,11.99,04/19/19 21:03,"934 Dogwood St, New York City, NY 10001" +195614,AAA Batteries (4-pack),1,2.99,04/18/19 20:50,"718 Cherry St, New York City, NY 10001" +195615,AAA Batteries (4-pack),3,2.99,04/16/19 13:32,"406 Chestnut St, Portland, OR 97035" +195616,34in Ultrawide Monitor,1,379.99,04/25/19 18:52,"852 Cherry St, Los Angeles, CA 90001" +195617,AA Batteries (4-pack),2,3.84,04/04/19 11:07,"764 Lincoln St, San Francisco, CA 94016" +195618,Wired Headphones,1,11.99,04/25/19 10:46,"862 Chestnut St, Seattle, WA 98101" +195619,Lightning Charging Cable,1,14.95,04/01/19 07:17,"574 12th St, New York City, NY 10001" +195620,Apple Airpods Headphones,1,150,04/23/19 10:28,"786 Jefferson St, Dallas, TX 75001" +195621,Macbook Pro Laptop,1,1700,04/08/19 18:41,"53 Spruce St, New York City, NY 10001" +195622,Apple Airpods Headphones,1,150,04/09/19 17:42,"669 Lakeview St, Los Angeles, CA 90001" +195623,AAA Batteries (4-pack),5,2.99,04/28/19 20:23,"788 South St, San Francisco, CA 94016" +195624,27in FHD Monitor,1,149.99,04/03/19 13:22,"574 Highland St, Seattle, WA 98101" +195625,USB-C Charging Cable,1,11.95,04/16/19 00:39,"112 5th St, Seattle, WA 98101" +195626,Apple Airpods Headphones,1,150,04/10/19 21:22,"996 6th St, Seattle, WA 98101" +195627,AAA Batteries (4-pack),1,2.99,04/22/19 11:45,"607 Ridge St, Los Angeles, CA 90001" +195628,20in Monitor,1,109.99,04/16/19 19:40,"396 Lake St, Boston, MA 02215" +195629,iPhone,1,700,04/24/19 23:51,"497 14th St, San Francisco, CA 94016" +195630,Macbook Pro Laptop,1,1700,04/01/19 11:52,"15 13th St, Los Angeles, CA 90001" +195631,Wired Headphones,1,11.99,04/04/19 22:07,"304 5th St, Los Angeles, CA 90001" +195632,Google Phone,1,600,04/03/19 22:30,"775 12th St, Boston, MA 02215" +195633,Google Phone,1,600,04/06/19 19:05,"77 Hickory St, San Francisco, CA 94016" +195634,20in Monitor,1,109.99,04/16/19 20:11,"43 13th St, Los Angeles, CA 90001" +195635,Apple Airpods Headphones,1,150,04/21/19 20:39,"145 South St, Los Angeles, CA 90001" +195636,27in FHD Monitor,1,149.99,04/28/19 18:37,"280 Meadow St, Austin, TX 73301" +195637,AA Batteries (4-pack),1,3.84,04/27/19 19:49,"191 Walnut St, New York City, NY 10001" +195638,Apple Airpods Headphones,1,150,04/24/19 04:31,"984 Wilson St, Los Angeles, CA 90001" +195639,USB-C Charging Cable,1,11.95,04/17/19 07:17,"129 8th St, Los Angeles, CA 90001" +195640,Flatscreen TV,1,300,04/10/19 17:29,"17 Ridge St, San Francisco, CA 94016" +195641,USB-C Charging Cable,1,11.95,04/05/19 14:02,"970 Madison St, Los Angeles, CA 90001" +195642,USB-C Charging Cable,1,11.95,04/23/19 16:04,"90 Spruce St, Austin, TX 73301" +195643,AAA Batteries (4-pack),2,2.99,04/20/19 18:34,"186 13th St, Atlanta, GA 30301" +195644,Flatscreen TV,1,300,04/10/19 20:53,"230 Lincoln St, Portland, OR 97035" +195645,Lightning Charging Cable,1,14.95,04/09/19 11:40,"887 Walnut St, Austin, TX 73301" +195646,Flatscreen TV,1,300,04/01/19 09:39,"258 2nd St, Los Angeles, CA 90001" +195647,AA Batteries (4-pack),1,3.84,04/23/19 08:50,"637 Center St, New York City, NY 10001" +195648,Wired Headphones,1,11.99,04/20/19 12:09,"105 5th St, Boston, MA 02215" +195649,AAA Batteries (4-pack),1,2.99,04/08/19 19:34,"622 10th St, Atlanta, GA 30301" +195650,USB-C Charging Cable,1,11.95,04/15/19 13:37,"539 Jackson St, New York City, NY 10001" +195651,AAA Batteries (4-pack),2,2.99,04/13/19 06:30,"433 Walnut St, Atlanta, GA 30301" +195652,34in Ultrawide Monitor,1,379.99,04/03/19 00:40,"808 Lincoln St, Los Angeles, CA 90001" +195653,Lightning Charging Cable,1,14.95,04/20/19 21:37,"797 13th St, San Francisco, CA 94016" +195654,ThinkPad Laptop,1,999.99,04/24/19 18:07,"324 Church St, San Francisco, CA 94016" +195655,USB-C Charging Cable,1,11.95,04/08/19 22:38,"665 9th St, San Francisco, CA 94016" +195656,Wired Headphones,1,11.99,04/22/19 18:53,"876 Walnut St, Austin, TX 73301" +195657,AAA Batteries (4-pack),1,2.99,04/15/19 18:59,"638 10th St, San Francisco, CA 94016" +195658,34in Ultrawide Monitor,1,379.99,04/28/19 23:39,"403 7th St, Dallas, TX 75001" +195659,Wired Headphones,1,11.99,04/20/19 15:41,"904 Highland St, Portland, OR 97035" +195660,27in FHD Monitor,1,149.99,04/04/19 10:14,"666 8th St, San Francisco, CA 94016" +195661,Lightning Charging Cable,1,14.95,04/20/19 09:57,"673 Hill St, San Francisco, CA 94016" +195662,AAA Batteries (4-pack),4,2.99,04/02/19 18:03,"577 Hill St, San Francisco, CA 94016" +195663,Macbook Pro Laptop,1,1700,04/26/19 09:10,"342 Meadow St, Portland, OR 97035" +195664,Bose SoundSport Headphones,1,99.99,04/13/19 19:36,"904 6th St, San Francisco, CA 94016" +195665,USB-C Charging Cable,1,11.95,04/02/19 19:41,"220 Hickory St, New York City, NY 10001" +195666,Bose SoundSport Headphones,1,99.99,04/24/19 14:58,"902 Forest St, Dallas, TX 75001" +195667,USB-C Charging Cable,1,11.95,04/16/19 13:08,"265 Jackson St, New York City, NY 10001" +195668,Lightning Charging Cable,1,14.95,04/05/19 18:44,"762 Sunset St, Dallas, TX 75001" +195669,AA Batteries (4-pack),1,3.84,04/05/19 06:26,"302 12th St, Dallas, TX 75001" +195670,AA Batteries (4-pack),1,3.84,04/03/19 17:09,"672 West St, San Francisco, CA 94016" +195671,Google Phone,1,600,04/12/19 21:21,"174 Hickory St, San Francisco, CA 94016" +195672,Google Phone,1,600,04/03/19 23:40,"895 11th St, Los Angeles, CA 90001" +195672,USB-C Charging Cable,1,11.95,04/03/19 23:40,"895 11th St, Los Angeles, CA 90001" +195672,Wired Headphones,1,11.99,04/03/19 23:40,"895 11th St, Los Angeles, CA 90001" +195673,Google Phone,1,600,04/17/19 10:11,"970 Jefferson St, Seattle, WA 98101" +195674,34in Ultrawide Monitor,1,379.99,04/03/19 19:22,"142 River St, San Francisco, CA 94016" +195675,ThinkPad Laptop,1,999.99,04/02/19 15:05,"651 Pine St, Atlanta, GA 30301" +195676,AAA Batteries (4-pack),2,2.99,04/30/19 13:45,"691 Willow St, San Francisco, CA 94016" +195677,Lightning Charging Cable,1,14.95,04/23/19 12:03,"689 Spruce St, Austin, TX 73301" +195678,AAA Batteries (4-pack),1,2.99,04/21/19 02:48,"738 Elm St, Atlanta, GA 30301" +195679,AAA Batteries (4-pack),1,2.99,04/13/19 00:30,"178 Hickory St, Seattle, WA 98101" +195680,27in FHD Monitor,1,149.99,04/26/19 11:11,"677 Madison St, San Francisco, CA 94016" +195681,27in FHD Monitor,1,149.99,04/30/19 12:56,"173 13th St, Boston, MA 02215" +195682,iPhone,1,700,04/01/19 20:13,"90 2nd St, Boston, MA 02215" +195682,Lightning Charging Cable,1,14.95,04/01/19 20:13,"90 2nd St, Boston, MA 02215" +195683,iPhone,1,700,04/09/19 20:11,"555 Park St, Los Angeles, CA 90001" +195683,Wired Headphones,1,11.99,04/09/19 20:11,"555 Park St, Los Angeles, CA 90001" +195684,Lightning Charging Cable,1,14.95,04/23/19 05:56,"781 12th St, Austin, TX 73301" +195685,Bose SoundSport Headphones,1,99.99,04/29/19 11:35,"323 Chestnut St, Seattle, WA 98101" +195686,USB-C Charging Cable,1,11.95,04/03/19 15:56,"661 Pine St, Los Angeles, CA 90001" +195687,Lightning Charging Cable,1,14.95,04/22/19 09:11,"561 2nd St, San Francisco, CA 94016" +195688,AA Batteries (4-pack),1,3.84,04/29/19 14:53,"104 Adams St, Atlanta, GA 30301" +195689,Google Phone,1,600,04/30/19 19:00,"442 4th St, Atlanta, GA 30301" +195690,AAA Batteries (4-pack),2,2.99,04/06/19 18:07,"199 North St, Dallas, TX 75001" +195691,27in 4K Gaming Monitor,1,389.99,04/17/19 08:41,"415 Spruce St, Los Angeles, CA 90001" +195692,Wired Headphones,1,11.99,04/19/19 18:37,"802 8th St, Los Angeles, CA 90001" +195693,Bose SoundSport Headphones,1,99.99,04/09/19 00:17,"840 Adams St, New York City, NY 10001" +195694,USB-C Charging Cable,1,11.95,04/16/19 12:05,"228 Washington St, San Francisco, CA 94016" +195695,27in FHD Monitor,1,149.99,04/08/19 11:39,"168 Adams St, Los Angeles, CA 90001" +195696,ThinkPad Laptop,1,999.99,04/30/19 23:47,"890 River St, Seattle, WA 98101" +195697,27in FHD Monitor,1,149.99,04/19/19 21:11,"983 Cherry St, San Francisco, CA 94016" +195698,Wired Headphones,1,11.99,04/22/19 12:13,"565 11th St, Dallas, TX 75001" +195699,27in FHD Monitor,1,149.99,04/06/19 17:24,"586 Maple St, Los Angeles, CA 90001" +195700,Lightning Charging Cable,1,14.95,04/12/19 11:04,"775 11th St, San Francisco, CA 94016" +195701,Wired Headphones,1,11.99,04/01/19 12:50,"651 Chestnut St, San Francisco, CA 94016" +195702,AA Batteries (4-pack),1,3.84,04/17/19 16:47,"216 North St, New York City, NY 10001" +195703,USB-C Charging Cable,1,11.95,04/20/19 12:55,"501 Ridge St, New York City, NY 10001" +195704,Wired Headphones,1,11.99,04/30/19 11:13,"150 Wilson St, Atlanta, GA 30301" +195705,AA Batteries (4-pack),1,3.84,04/16/19 01:18,"686 Highland St, New York City, NY 10001" +195706,AA Batteries (4-pack),1,3.84,04/13/19 07:34,"484 Lakeview St, Seattle, WA 98101" +195707,Google Phone,1,600,04/10/19 07:25,"21 Johnson St, Los Angeles, CA 90001" +195708,34in Ultrawide Monitor,1,379.99,04/14/19 10:42,"994 Elm St, Los Angeles, CA 90001" +195709,Lightning Charging Cable,1,14.95,04/29/19 13:10,"907 West St, Boston, MA 02215" +195710,USB-C Charging Cable,1,11.95,04/08/19 15:33,"86 Sunset St, Los Angeles, CA 90001" +195711,AA Batteries (4-pack),2,3.84,04/02/19 20:02,"645 West St, New York City, NY 10001" +195712,Macbook Pro Laptop,1,1700,04/06/19 12:52,"355 Meadow St, Atlanta, GA 30301" +195713,34in Ultrawide Monitor,1,379.99,04/23/19 10:27,"908 Cherry St, Dallas, TX 75001" +195714,Wired Headphones,1,11.99,04/16/19 15:25,"852 South St, New York City, NY 10001" +195715,Lightning Charging Cable,1,14.95,04/15/19 08:08,"580 5th St, Dallas, TX 75001" +195716,Wired Headphones,1,11.99,04/27/19 14:50,"634 4th St, Portland, OR 97035" +195717,AA Batteries (4-pack),2,3.84,04/10/19 13:26,"244 Park St, San Francisco, CA 94016" +195718,Bose SoundSport Headphones,1,99.99,04/25/19 21:08,"745 Sunset St, Austin, TX 73301" +195719,AAA Batteries (4-pack),3,2.99,04/05/19 13:17,"351 Jefferson St, Boston, MA 02215" +195720,AA Batteries (4-pack),1,3.84,04/12/19 01:29,"217 1st St, Seattle, WA 98101" +195721,AA Batteries (4-pack),2,3.84,04/19/19 18:26,"255 14th St, Los Angeles, CA 90001" +195722,AAA Batteries (4-pack),1,2.99,04/19/19 12:47,"481 Jackson St, Seattle, WA 98101" +195723,USB-C Charging Cable,1,11.95,04/21/19 23:00,"845 1st St, Los Angeles, CA 90001" +195724,Lightning Charging Cable,1,14.95,04/02/19 08:41,"331 7th St, New York City, NY 10001" +195725,AAA Batteries (4-pack),1,2.99,04/14/19 08:52,"577 Maple St, San Francisco, CA 94016" +195726,Flatscreen TV,1,300,04/04/19 17:38,"735 Lincoln St, Seattle, WA 98101" +195727,iPhone,1,700,04/04/19 01:39,"204 Meadow St, San Francisco, CA 94016" +195728,AAA Batteries (4-pack),3,2.99,04/19/19 14:22,"859 Ridge St, Atlanta, GA 30301" +195729,27in FHD Monitor,1,149.99,04/08/19 17:19,"344 Spruce St, San Francisco, CA 94016" +195730,Lightning Charging Cable,1,14.95,04/23/19 17:35,"237 Lakeview St, New York City, NY 10001" +195731,Lightning Charging Cable,1,14.95,04/06/19 14:05,"742 Cherry St, San Francisco, CA 94016" +195732,AAA Batteries (4-pack),1,2.99,04/26/19 12:02,"21 Sunset St, Los Angeles, CA 90001" +195733,AA Batteries (4-pack),2,3.84,04/09/19 17:12,"461 Church St, Austin, TX 73301" +195734,Google Phone,1,600,04/11/19 20:45,"221 Willow St, New York City, NY 10001" +195735,Apple Airpods Headphones,1,150,04/09/19 21:28,"410 14th St, Los Angeles, CA 90001" +195736,34in Ultrawide Monitor,1,379.99,04/10/19 22:31,"892 Walnut St, Atlanta, GA 30301" +195737,34in Ultrawide Monitor,1,379.99,04/09/19 22:43,"102 South St, San Francisco, CA 94016" +195738,20in Monitor,1,109.99,04/08/19 19:07,"65 South St, Dallas, TX 75001" +195739,Lightning Charging Cable,1,14.95,04/30/19 06:57,"839 West St, Los Angeles, CA 90001" +195740,Lightning Charging Cable,1,14.95,04/09/19 10:37,"463 Park St, Seattle, WA 98101" +195741,Flatscreen TV,1,300,04/10/19 10:40,"49 South St, Dallas, TX 75001" +195742,Lightning Charging Cable,1,14.95,04/21/19 13:06,"254 11th St, San Francisco, CA 94016" +195743,Lightning Charging Cable,2,14.95,04/29/19 19:28,"140 Lincoln St, New York City, NY 10001" +195744,USB-C Charging Cable,1,11.95,04/13/19 19:31,"316 Johnson St, New York City, NY 10001" +195745,20in Monitor,1,109.99,04/25/19 16:43,"986 Main St, Austin, TX 73301" +195746,20in Monitor,1,109.99,04/25/19 18:23,"736 Chestnut St, New York City, NY 10001" +195747,20in Monitor,1,109.99,04/18/19 17:23,"103 11th St, Dallas, TX 75001" +195748,USB-C Charging Cable,1,11.95,04/21/19 10:29,"858 9th St, San Francisco, CA 94016" +195749,Wired Headphones,1,11.99,04/10/19 08:39,"527 Willow St, San Francisco, CA 94016" +195750,Lightning Charging Cable,1,14.95,04/14/19 17:41,"249 Walnut St, New York City, NY 10001" +195751,Lightning Charging Cable,1,14.95,04/04/19 14:55,"463 Madison St, Seattle, WA 98101" +195752,AAA Batteries (4-pack),1,2.99,04/26/19 09:03,"220 Washington St, Los Angeles, CA 90001" +195753,iPhone,1,700,04/23/19 12:08,"108 Spruce St, Dallas, TX 75001" +195754,Apple Airpods Headphones,1,150,04/29/19 13:49,"405 1st St, San Francisco, CA 94016" +195755,USB-C Charging Cable,1,11.95,04/26/19 20:48,"997 Church St, Los Angeles, CA 90001" +195756,iPhone,1,700,04/10/19 09:17,"731 Forest St, Portland, OR 97035" +195757,AAA Batteries (4-pack),1,2.99,04/05/19 11:15,"282 Spruce St, Los Angeles, CA 90001" +195758,Lightning Charging Cable,1,14.95,04/15/19 19:01,"646 River St, Los Angeles, CA 90001" +195759,Apple Airpods Headphones,1,150,04/26/19 17:32,"727 12th St, San Francisco, CA 94016" +195760,Lightning Charging Cable,1,14.95,04/08/19 14:15,"620 11th St, Boston, MA 02215" +195761,Wired Headphones,1,11.99,04/16/19 09:24,"406 South St, San Francisco, CA 94016" +195762,Bose SoundSport Headphones,1,99.99,04/08/19 18:25,"179 Elm St, New York City, NY 10001" +195763,USB-C Charging Cable,1,11.95,04/05/19 19:40,"388 Jefferson St, New York City, NY 10001" +195764,AA Batteries (4-pack),1,3.84,04/17/19 15:13,"512 West St, Boston, MA 02215" +195765,AAA Batteries (4-pack),1,2.99,04/03/19 12:18,"467 1st St, New York City, NY 10001" +195766,Wired Headphones,1,11.99,04/28/19 12:08,"286 South St, New York City, NY 10001" +195767,Lightning Charging Cable,1,14.95,04/30/19 11:53,"515 Meadow St, Los Angeles, CA 90001" +195768,Google Phone,1,600,04/24/19 14:58,"759 South St, Portland, OR 97035" +195769,iPhone,1,700,04/16/19 11:34,"297 Adams St, Boston, MA 02215" +195770,Macbook Pro Laptop,1,1700,04/20/19 15:05,"137 Wilson St, Los Angeles, CA 90001" +195771,USB-C Charging Cable,1,11.95,04/10/19 15:37,"547 Maple St, Boston, MA 02215" +195772,AA Batteries (4-pack),1,3.84,04/21/19 20:56,"315 Adams St, New York City, NY 10001" +195773,AA Batteries (4-pack),1,3.84,04/22/19 19:04,"369 6th St, Boston, MA 02215" +195774,iPhone,1,700,04/28/19 09:07,"269 8th St, San Francisco, CA 94016" +195775,AA Batteries (4-pack),1,3.84,04/06/19 20:17,"460 14th St, Los Angeles, CA 90001" +195776,Bose SoundSport Headphones,1,99.99,04/12/19 21:07,"487 Lakeview St, Boston, MA 02215" +195777,AA Batteries (4-pack),2,3.84,04/16/19 13:57,"267 Meadow St, San Francisco, CA 94016" +195778,Lightning Charging Cable,1,14.95,04/26/19 09:15,"652 13th St, Los Angeles, CA 90001" +195779,Macbook Pro Laptop,1,1700,04/10/19 09:07,"558 Park St, San Francisco, CA 94016" +195780,iPhone,1,700,04/13/19 20:00,"468 2nd St, Boston, MA 02215" +195781,AA Batteries (4-pack),2,3.84,04/02/19 21:08,"548 Lakeview St, Boston, MA 02215" +195782,AAA Batteries (4-pack),1,2.99,04/01/19 06:29,"243 5th St, Atlanta, GA 30301" +195783,AA Batteries (4-pack),1,3.84,04/12/19 19:27,"54 West St, San Francisco, CA 94016" +195784,USB-C Charging Cable,1,11.95,04/06/19 13:59,"912 Meadow St, Boston, MA 02215" +195785,AAA Batteries (4-pack),1,2.99,04/08/19 06:19,"130 Lake St, New York City, NY 10001" +195786,AA Batteries (4-pack),1,3.84,04/02/19 19:45,"844 Dogwood St, Atlanta, GA 30301" +195787,Apple Airpods Headphones,1,150,04/29/19 13:25,"218 Highland St, Austin, TX 73301" +195787,34in Ultrawide Monitor,1,379.99,04/29/19 13:25,"218 Highland St, Austin, TX 73301" +195788,AAA Batteries (4-pack),1,2.99,04/25/19 11:04,"393 12th St, San Francisco, CA 94016" +195789,27in FHD Monitor,1,149.99,04/18/19 12:31,"259 14th St, Los Angeles, CA 90001" +195790,USB-C Charging Cable,1,11.95,04/23/19 14:06,"178 Ridge St, San Francisco, CA 94016" +195791,34in Ultrawide Monitor,1,379.99,04/09/19 21:07,"619 Jackson St, Atlanta, GA 30301" +195792,AAA Batteries (4-pack),3,2.99,04/30/19 18:30,"973 Elm St, Atlanta, GA 30301" +195793,Lightning Charging Cable,1,14.95,04/12/19 12:55,"443 Center St, San Francisco, CA 94016" +,,,,, +195794,AAA Batteries (4-pack),1,2.99,04/05/19 23:20,"239 Washington St, Los Angeles, CA 90001" +195795,USB-C Charging Cable,1,11.95,04/15/19 00:37,"154 Highland St, New York City, NY 10001" +195796,AA Batteries (4-pack),1,3.84,04/07/19 17:11,"680 Jefferson St, Portland, OR 97035" +195797,iPhone,1,700,04/23/19 11:29,"762 Walnut St, Portland, OR 97035" +195797,Lightning Charging Cable,1,14.95,04/23/19 11:29,"762 Walnut St, Portland, OR 97035" +195798,iPhone,1,700,04/27/19 23:03,"248 Jackson St, San Francisco, CA 94016" +195799,AA Batteries (4-pack),1,3.84,04/19/19 17:41,"29 Ridge St, San Francisco, CA 94016" +195800,Lightning Charging Cable,2,14.95,04/03/19 14:13,"372 Jefferson St, Atlanta, GA 30301" +195801,Apple Airpods Headphones,1,150,04/01/19 21:18,"96 Jefferson St, Dallas, TX 75001" +195802,Wired Headphones,1,11.99,04/19/19 10:40,"688 South St, Austin, TX 73301" +195803,Apple Airpods Headphones,1,150,04/16/19 12:19,"779 Elm St, Portland, OR 97035" +195804,Lightning Charging Cable,1,14.95,04/03/19 16:11,"81 7th St, San Francisco, CA 94016" +195805,USB-C Charging Cable,1,11.95,04/11/19 19:46,"573 Ridge St, Seattle, WA 98101" +195806,Apple Airpods Headphones,1,150,04/13/19 13:43,"761 Forest St, San Francisco, CA 94016" +195807,Macbook Pro Laptop,1,1700,04/05/19 09:32,"743 Washington St, Dallas, TX 75001" +195808,AA Batteries (4-pack),1,3.84,04/07/19 12:19,"688 12th St, Atlanta, GA 30301" +195809,AA Batteries (4-pack),1,3.84,04/01/19 19:25,"760 Chestnut St, San Francisco, CA 94016" +195810,AAA Batteries (4-pack),1,2.99,04/30/19 19:20,"349 Jackson St, Los Angeles, CA 90001" +195811,iPhone,1,700,04/02/19 22:05,"543 Madison St, Boston, MA 02215" +195812,iPhone,1,700,04/01/19 11:34,"827 Main St, Austin, TX 73301" +195813,AAA Batteries (4-pack),1,2.99,04/08/19 13:12,"237 12th St, San Francisco, CA 94016" +195814,AAA Batteries (4-pack),2,2.99,04/01/19 06:09,"682 13th St, Seattle, WA 98101" +195815,Bose SoundSport Headphones,1,99.99,04/26/19 10:15,"927 6th St, Boston, MA 02215" +195816,AA Batteries (4-pack),4,3.84,04/26/19 19:22,"265 Main St, New York City, NY 10001" +195817,Apple Airpods Headphones,1,150,04/05/19 13:39,"569 River St, New York City, NY 10001" +195818,iPhone,1,700,04/11/19 09:43,"999 Forest St, Boston, MA 02215" +195819,Wired Headphones,1,11.99,04/18/19 21:27,"707 Walnut St, Boston, MA 02215" +195820,34in Ultrawide Monitor,1,379.99,04/10/19 16:00,"883 13th St, New York City, NY 10001" +195821,Wired Headphones,1,11.99,04/24/19 18:32,"366 Spruce St, Seattle, WA 98101" +195822,Lightning Charging Cable,1,14.95,04/21/19 18:09,"695 Sunset St, New York City, NY 10001" +195823,Bose SoundSport Headphones,1,99.99,04/21/19 20:40,"667 Highland St, Seattle, WA 98101" +195824,Wired Headphones,1,11.99,05/01/19 04:03,"531 10th St, Boston, MA 02215" +195825,Wired Headphones,1,11.99,04/16/19 10:59,"484 2nd St, San Francisco, CA 94016" +195826,Apple Airpods Headphones,1,150,04/06/19 16:02,"750 Adams St, San Francisco, CA 94016" +195827,Apple Airpods Headphones,1,150,04/05/19 23:02,"962 Elm St, Seattle, WA 98101" +195828,Apple Airpods Headphones,1,150,04/08/19 11:42,"105 West St, San Francisco, CA 94016" +195829,USB-C Charging Cable,1,11.95,04/26/19 20:29,"959 Walnut St, Boston, MA 02215" +195830,Wired Headphones,1,11.99,04/11/19 16:51,"10 Spruce St, New York City, NY 10001" +195831,AAA Batteries (4-pack),1,2.99,04/21/19 12:13,"152 Madison St, New York City, NY 10001" +195832,iPhone,1,700,04/23/19 11:56,"948 Chestnut St, Atlanta, GA 30301" +195833,Bose SoundSport Headphones,1,99.99,04/09/19 16:14,"259 Dogwood St, New York City, NY 10001" +195834,Lightning Charging Cable,1,14.95,04/04/19 14:58,"325 5th St, New York City, NY 10001" +195835,Lightning Charging Cable,1,14.95,04/06/19 15:33,"641 Park St, Boston, MA 02215" +195836,Apple Airpods Headphones,1,150,04/08/19 19:09,"698 Jefferson St, New York City, NY 10001" +195837,USB-C Charging Cable,1,11.95,04/28/19 16:58,"362 11th St, San Francisco, CA 94016" +195838,AAA Batteries (4-pack),2,2.99,04/23/19 17:17,"658 Elm St, New York City, NY 10001" +195839,Wired Headphones,1,11.99,04/19/19 10:32,"549 Hickory St, Portland, ME 04101" +195840,AAA Batteries (4-pack),1,2.99,04/18/19 09:13,"666 9th St, Los Angeles, CA 90001" +195841,Macbook Pro Laptop,1,1700,04/29/19 14:10,"154 River St, Boston, MA 02215" +195842,AA Batteries (4-pack),1,3.84,04/10/19 20:54,"927 Main St, New York City, NY 10001" +195843,AAA Batteries (4-pack),1,2.99,04/16/19 21:27,"854 Cherry St, Atlanta, GA 30301" +195844,Apple Airpods Headphones,1,150,04/17/19 00:40,"72 Maple St, Portland, OR 97035" +195845,Wired Headphones,2,11.99,04/06/19 17:17,"487 Church St, New York City, NY 10001" +195846,Lightning Charging Cable,1,14.95,04/03/19 13:40,"135 13th St, San Francisco, CA 94016" +195847,Wired Headphones,1,11.99,04/01/19 08:29,"942 Johnson St, San Francisco, CA 94016" +195848,USB-C Charging Cable,1,11.95,04/14/19 15:42,"114 13th St, Los Angeles, CA 90001" +195849,AAA Batteries (4-pack),1,2.99,04/21/19 03:54,"44 Adams St, New York City, NY 10001" +195850,AA Batteries (4-pack),1,3.84,04/21/19 10:01,"711 Center St, Atlanta, GA 30301" +195851,Apple Airpods Headphones,1,150,04/05/19 13:48,"591 12th St, Austin, TX 73301" +195851,Lightning Charging Cable,1,14.95,04/05/19 13:48,"591 12th St, Austin, TX 73301" +195852,Lightning Charging Cable,1,14.95,04/30/19 15:08,"856 Madison St, Seattle, WA 98101" +195853,Wired Headphones,1,11.99,04/16/19 08:54,"756 Jefferson St, Portland, ME 04101" +195854,Google Phone,1,600,04/29/19 11:01,"856 Church St, Atlanta, GA 30301" +195855,AA Batteries (4-pack),1,3.84,04/20/19 17:27,"466 Jackson St, New York City, NY 10001" +195856,iPhone,1,700,04/29/19 19:40,"505 Sunset St, San Francisco, CA 94016" +195857,USB-C Charging Cable,1,11.95,04/22/19 07:58,"556 Jackson St, Atlanta, GA 30301" +195858,AA Batteries (4-pack),1,3.84,04/10/19 17:10,"240 West St, Los Angeles, CA 90001" +195859,34in Ultrawide Monitor,1,379.99,04/30/19 19:30,"723 5th St, Portland, OR 97035" +195860,AA Batteries (4-pack),1,3.84,04/18/19 20:36,"362 Sunset St, San Francisco, CA 94016" +195861,Macbook Pro Laptop,1,1700,04/13/19 21:04,"835 Maple St, Atlanta, GA 30301" +195862,AAA Batteries (4-pack),1,2.99,04/02/19 17:30,"378 14th St, New York City, NY 10001" +195863,Apple Airpods Headphones,1,150,04/02/19 01:37,"511 North St, San Francisco, CA 94016" +195864,AAA Batteries (4-pack),1,2.99,04/07/19 11:35,"737 Lake St, New York City, NY 10001" +195865,Wired Headphones,1,11.99,04/17/19 13:55,"232 Johnson St, Seattle, WA 98101" +195866,27in FHD Monitor,1,149.99,04/24/19 07:18,"738 Lake St, Portland, OR 97035" +195867,Macbook Pro Laptop,1,1700,04/26/19 21:50,"181 Forest St, San Francisco, CA 94016" +195868,Lightning Charging Cable,1,14.95,04/21/19 21:17,"43 13th St, San Francisco, CA 94016" +195869,ThinkPad Laptop,1,999.99,04/08/19 16:24,"126 Walnut St, San Francisco, CA 94016" +195870,Apple Airpods Headphones,1,150,04/28/19 06:55,"964 Pine St, New York City, NY 10001" +195871,27in FHD Monitor,1,149.99,04/06/19 11:30,"144 10th St, Los Angeles, CA 90001" +195872,AA Batteries (4-pack),1,3.84,04/04/19 00:59,"813 Jackson St, New York City, NY 10001" +195873,Bose SoundSport Headphones,1,99.99,04/18/19 16:42,"657 Maple St, Atlanta, GA 30301" +195874,USB-C Charging Cable,1,11.95,04/16/19 14:33,"351 8th St, Los Angeles, CA 90001" +195875,LG Dryer,1,600.0,04/07/19 22:08,"641 11th St, San Francisco, CA 94016" +195876,AAA Batteries (4-pack),3,2.99,04/27/19 16:58,"568 1st St, Seattle, WA 98101" +195877,AAA Batteries (4-pack),3,2.99,04/20/19 12:06,"169 Walnut St, San Francisco, CA 94016" +195878,27in FHD Monitor,1,149.99,04/07/19 13:54,"110 Cedar St, Los Angeles, CA 90001" +195879,USB-C Charging Cable,1,11.95,04/12/19 17:59,"229 Jackson St, Boston, MA 02215" +195879,Bose SoundSport Headphones,1,99.99,04/12/19 17:59,"229 Jackson St, Boston, MA 02215" +195880,AAA Batteries (4-pack),1,2.99,04/21/19 23:24,"865 Park St, Los Angeles, CA 90001" +195881,iPhone,1,700,04/10/19 18:55,"545 Hill St, Los Angeles, CA 90001" +195881,Lightning Charging Cable,1,14.95,04/10/19 18:55,"545 Hill St, Los Angeles, CA 90001" +195882,Wired Headphones,1,11.99,04/11/19 19:00,"167 Cherry St, Atlanta, GA 30301" +195883,AAA Batteries (4-pack),1,2.99,04/13/19 13:48,"964 Lincoln St, Portland, OR 97035" +195884,27in FHD Monitor,1,149.99,04/12/19 18:22,"572 9th St, New York City, NY 10001" +195885,AAA Batteries (4-pack),2,2.99,04/29/19 10:49,"839 Johnson St, Atlanta, GA 30301" +195886,AA Batteries (4-pack),1,3.84,04/24/19 09:15,"604 Center St, Dallas, TX 75001" +195887,Wired Headphones,1,11.99,04/23/19 22:05,"844 Highland St, Atlanta, GA 30301" +195888,Macbook Pro Laptop,1,1700,04/10/19 12:44,"361 Sunset St, Portland, OR 97035" +195889,Wired Headphones,2,11.99,04/02/19 23:11,"770 Ridge St, New York City, NY 10001" +195890,Flatscreen TV,1,300,04/14/19 17:23,"871 Dogwood St, Atlanta, GA 30301" +195891,USB-C Charging Cable,1,11.95,04/12/19 15:11,"405 11th St, Boston, MA 02215" +195892,Lightning Charging Cable,1,14.95,04/29/19 08:45,"689 Lakeview St, Dallas, TX 75001" +195893,20in Monitor,1,109.99,04/30/19 21:49,"945 Lakeview St, Atlanta, GA 30301" +195894,iPhone,1,700,04/19/19 00:55,"643 Lake St, San Francisco, CA 94016" +195894,Lightning Charging Cable,1,14.95,04/19/19 00:55,"643 Lake St, San Francisco, CA 94016" +195894,AA Batteries (4-pack),1,3.84,04/19/19 00:55,"643 Lake St, San Francisco, CA 94016" +195895,Lightning Charging Cable,1,14.95,04/04/19 21:30,"545 Ridge St, San Francisco, CA 94016" +195895,27in 4K Gaming Monitor,1,389.99,04/04/19 21:30,"545 Ridge St, San Francisco, CA 94016" +195896,AAA Batteries (4-pack),1,2.99,04/11/19 06:07,"923 11th St, Atlanta, GA 30301" +195897,20in Monitor,1,109.99,04/26/19 14:50,"1 8th St, New York City, NY 10001" +195898,20in Monitor,1,109.99,04/11/19 14:59,"169 Elm St, New York City, NY 10001" +195899,Lightning Charging Cable,1,14.95,04/06/19 12:17,"798 Meadow St, Los Angeles, CA 90001" +195900,Lightning Charging Cable,1,14.95,04/08/19 14:36,"150 13th St, San Francisco, CA 94016" +195901,Flatscreen TV,1,300,04/09/19 18:28,"722 12th St, Portland, ME 04101" +195902,Apple Airpods Headphones,1,150,04/15/19 13:48,"446 5th St, Portland, OR 97035" +195903,Lightning Charging Cable,1,14.95,04/21/19 12:00,"610 12th St, Portland, ME 04101" +195904,Lightning Charging Cable,1,14.95,04/19/19 21:31,"53 7th St, Portland, OR 97035" +195905,Lightning Charging Cable,1,14.95,04/17/19 18:59,"650 Cedar St, Austin, TX 73301" +195906,AAA Batteries (4-pack),1,2.99,04/26/19 09:08,"464 Spruce St, Atlanta, GA 30301" +195907,ThinkPad Laptop,1,999.99,04/22/19 21:50,"185 1st St, Atlanta, GA 30301" +195908,AAA Batteries (4-pack),1,2.99,04/23/19 10:06,"740 12th St, San Francisco, CA 94016" +195909,Wired Headphones,1,11.99,04/12/19 09:21,"294 5th St, San Francisco, CA 94016" +195909,Lightning Charging Cable,1,14.95,04/12/19 09:21,"294 5th St, San Francisco, CA 94016" +195910,AA Batteries (4-pack),1,3.84,04/29/19 18:06,"885 North St, New York City, NY 10001" +195911,AAA Batteries (4-pack),1,2.99,04/09/19 11:03,"209 13th St, Los Angeles, CA 90001" +195912,ThinkPad Laptop,1,999.99,04/05/19 09:31,"690 Jackson St, Atlanta, GA 30301" +195913,AA Batteries (4-pack),1,3.84,04/20/19 18:52,"925 Main St, San Francisco, CA 94016" +195914,Flatscreen TV,1,300,04/19/19 19:13,"768 Church St, Portland, ME 04101" +195915,27in FHD Monitor,1,149.99,04/24/19 10:23,"935 Hickory St, San Francisco, CA 94016" +195916,27in FHD Monitor,1,149.99,04/13/19 12:04,"669 Pine St, San Francisco, CA 94016" +195917,Google Phone,1,600,04/28/19 09:58,"532 Maple St, New York City, NY 10001" +195918,Bose SoundSport Headphones,1,99.99,04/08/19 19:08,"171 Wilson St, Atlanta, GA 30301" +195919,Bose SoundSport Headphones,1,99.99,04/03/19 17:19,"908 12th St, San Francisco, CA 94016" +195920,USB-C Charging Cable,1,11.95,04/10/19 23:37,"16 14th St, Atlanta, GA 30301" +195921,Macbook Pro Laptop,1,1700,04/30/19 09:50,"767 North St, New York City, NY 10001" +195922,27in FHD Monitor,1,149.99,04/30/19 20:15,"616 River St, Dallas, TX 75001" +195923,Apple Airpods Headphones,1,150,04/21/19 23:33,"616 14th St, San Francisco, CA 94016" +195924,Lightning Charging Cable,1,14.95,04/10/19 14:39,"935 9th St, San Francisco, CA 94016" +195925,Lightning Charging Cable,1,14.95,04/27/19 14:46,"109 Spruce St, San Francisco, CA 94016" +195926,Lightning Charging Cable,1,14.95,04/12/19 18:00,"258 Cedar St, New York City, NY 10001" +195927,Wired Headphones,1,11.99,04/04/19 20:50,"958 Dogwood St, New York City, NY 10001" +195928,Wired Headphones,1,11.99,04/08/19 13:14,"299 Johnson St, Los Angeles, CA 90001" +195929,AA Batteries (4-pack),2,3.84,04/22/19 21:15,"932 8th St, San Francisco, CA 94016" +195930,27in FHD Monitor,1,149.99,04/06/19 07:58,"921 Walnut St, Seattle, WA 98101" +195931,USB-C Charging Cable,1,11.95,04/05/19 00:49,"514 Hill St, Dallas, TX 75001" +195932,AA Batteries (4-pack),1,3.84,04/26/19 08:05,"501 Hill St, Portland, OR 97035" +195933,Wired Headphones,1,11.99,04/20/19 01:03,"255 11th St, Atlanta, GA 30301" +195934,Flatscreen TV,1,300,04/01/19 06:58,"273 Elm St, Seattle, WA 98101" +195935,AA Batteries (4-pack),2,3.84,04/08/19 15:22,"793 Hill St, Dallas, TX 75001" +195936,Lightning Charging Cable,1,14.95,04/21/19 22:00,"595 Spruce St, New York City, NY 10001" +195937,Wired Headphones,2,11.99,04/04/19 19:20,"427 Lincoln St, San Francisco, CA 94016" +195938,Google Phone,1,600,04/21/19 13:53,"971 10th St, Los Angeles, CA 90001" +195938,USB-C Charging Cable,2,11.95,04/21/19 13:53,"971 10th St, Los Angeles, CA 90001" +195939,Apple Airpods Headphones,1,150,04/10/19 12:53,"496 Meadow St, New York City, NY 10001" +195940,Apple Airpods Headphones,1,150,04/19/19 17:51,"458 5th St, San Francisco, CA 94016" +195941,AAA Batteries (4-pack),1,2.99,04/19/19 19:14,"935 Center St, Portland, OR 97035" +195942,ThinkPad Laptop,1,999.99,04/05/19 12:55,"519 Jackson St, Los Angeles, CA 90001" +195943,Wired Headphones,1,11.99,04/26/19 12:50,"564 Hickory St, San Francisco, CA 94016" +195944,AA Batteries (4-pack),1,3.84,04/21/19 10:48,"175 Jackson St, Seattle, WA 98101" +195945,27in FHD Monitor,1,149.99,04/08/19 18:44,"578 Church St, Boston, MA 02215" +195946,AA Batteries (4-pack),1,3.84,04/28/19 11:22,"20 Sunset St, Atlanta, GA 30301" +195947,Wired Headphones,1,11.99,04/07/19 09:58,"84 Cedar St, Dallas, TX 75001" +195948,27in 4K Gaming Monitor,1,389.99,04/26/19 16:47,"131 Lake St, New York City, NY 10001" +195949,27in 4K Gaming Monitor,1,389.99,04/11/19 13:56,"670 13th St, Los Angeles, CA 90001" +195950,AAA Batteries (4-pack),2,2.99,04/07/19 18:15,"608 Wilson St, San Francisco, CA 94016" +195951,AA Batteries (4-pack),1,3.84,04/02/19 15:28,"434 Lincoln St, Los Angeles, CA 90001" +195952,Lightning Charging Cable,1,14.95,04/08/19 08:54,"186 Maple St, Boston, MA 02215" +195953,ThinkPad Laptop,1,999.99,04/24/19 12:14,"53 North St, Dallas, TX 75001" +195954,27in 4K Gaming Monitor,1,389.99,04/03/19 09:51,"360 Center St, Austin, TX 73301" +195954,AAA Batteries (4-pack),1,2.99,04/03/19 09:51,"360 Center St, Austin, TX 73301" +195955,Apple Airpods Headphones,1,150,04/30/19 17:49,"1 Cherry St, Los Angeles, CA 90001" +195956,USB-C Charging Cable,1,11.95,04/26/19 11:57,"630 Main St, San Francisco, CA 94016" +195957,Lightning Charging Cable,1,14.95,04/29/19 15:50,"950 Church St, Portland, OR 97035" +195958,AA Batteries (4-pack),3,3.84,04/13/19 15:58,"106 14th St, San Francisco, CA 94016" +195959,USB-C Charging Cable,1,11.95,04/02/19 11:07,"21 Hill St, Dallas, TX 75001" +195960,Wired Headphones,1,11.99,04/20/19 17:18,"427 13th St, Portland, OR 97035" +195961,AAA Batteries (4-pack),1,2.99,04/06/19 12:48,"419 Maple St, San Francisco, CA 94016" +195962,AAA Batteries (4-pack),1,2.99,04/22/19 23:23,"609 Madison St, Seattle, WA 98101" +195963,Lightning Charging Cable,1,14.95,04/22/19 14:31,"583 Park St, Los Angeles, CA 90001" +195964,Lightning Charging Cable,1,14.95,04/30/19 16:16,"45 2nd St, New York City, NY 10001" +195965,27in 4K Gaming Monitor,1,389.99,04/01/19 15:13,"156 Ridge St, Dallas, TX 75001" +195966,USB-C Charging Cable,1,11.95,04/12/19 08:43,"97 Cherry St, San Francisco, CA 94016" +195967,USB-C Charging Cable,1,11.95,04/22/19 11:32,"463 Johnson St, Los Angeles, CA 90001" +195968,Macbook Pro Laptop,1,1700,04/11/19 17:07,"362 West St, Los Angeles, CA 90001" +195969,iPhone,1,700,04/26/19 11:48,"932 Maple St, New York City, NY 10001" +195970,Lightning Charging Cable,1,14.95,04/11/19 13:46,"881 Cherry St, Los Angeles, CA 90001" +195971,Wired Headphones,1,11.99,04/28/19 09:24,"127 4th St, Dallas, TX 75001" +195972,Wired Headphones,1,11.99,04/19/19 19:20,"681 2nd St, Portland, OR 97035" +195973,27in 4K Gaming Monitor,1,389.99,04/30/19 21:55,"28 Forest St, Boston, MA 02215" +195974,Bose SoundSport Headphones,1,99.99,04/28/19 12:43,"320 River St, New York City, NY 10001" +195975,USB-C Charging Cable,1,11.95,04/13/19 11:23,"917 Church St, San Francisco, CA 94016" +195976,Wired Headphones,1,11.99,04/19/19 11:16,"92 Washington St, New York City, NY 10001" +195977,Bose SoundSport Headphones,1,99.99,04/19/19 19:11,"475 Pine St, Los Angeles, CA 90001" +195978,USB-C Charging Cable,1,11.95,04/25/19 10:10,"417 10th St, Dallas, TX 75001" +195979,AA Batteries (4-pack),1,3.84,04/05/19 17:45,"681 Willow St, Boston, MA 02215" +195980,34in Ultrawide Monitor,1,379.99,04/02/19 16:41,"316 Lakeview St, Boston, MA 02215" +195981,AA Batteries (4-pack),1,3.84,04/28/19 11:35,"117 Hickory St, Los Angeles, CA 90001" +195982,34in Ultrawide Monitor,1,379.99,04/26/19 20:12,"991 5th St, Portland, OR 97035" +195983,AA Batteries (4-pack),1,3.84,04/08/19 23:25,"644 West St, Atlanta, GA 30301" +195984,Bose SoundSport Headphones,1,99.99,04/20/19 11:35,"667 8th St, San Francisco, CA 94016" +195985,iPhone,1,700,04/18/19 14:00,"864 Wilson St, Dallas, TX 75001" +195985,Apple Airpods Headphones,1,150,04/18/19 14:00,"864 Wilson St, Dallas, TX 75001" +195986,iPhone,1,700,04/12/19 18:47,"381 Washington St, Atlanta, GA 30301" +195986,Lightning Charging Cable,1,14.95,04/12/19 18:47,"381 Washington St, Atlanta, GA 30301" +195987,AAA Batteries (4-pack),1,2.99,04/29/19 14:39,"685 Jackson St, San Francisco, CA 94016" +195988,AAA Batteries (4-pack),1,2.99,04/02/19 07:24,"217 Park St, New York City, NY 10001" +195989,Bose SoundSport Headphones,1,99.99,04/28/19 16:31,"948 8th St, Boston, MA 02215" +195990,Apple Airpods Headphones,1,150,04/19/19 13:54,"932 7th St, San Francisco, CA 94016" +195991,34in Ultrawide Monitor,1,379.99,04/18/19 19:34,"229 Sunset St, Atlanta, GA 30301" +195992,ThinkPad Laptop,1,999.99,04/04/19 05:57,"190 Lincoln St, Los Angeles, CA 90001" +195993,LG Dryer,1,600.0,04/23/19 07:49,"706 South St, San Francisco, CA 94016" +195994,Lightning Charging Cable,1,14.95,04/29/19 12:26,"267 Johnson St, Boston, MA 02215" +195995,AAA Batteries (4-pack),1,2.99,04/26/19 12:00,"330 Cherry St, Los Angeles, CA 90001" +195996,Lightning Charging Cable,1,14.95,04/02/19 15:25,"994 Madison St, Atlanta, GA 30301" +195997,Google Phone,1,600,04/24/19 13:03,"49 10th St, San Francisco, CA 94016" +195998,AA Batteries (4-pack),1,3.84,04/05/19 10:00,"716 Dogwood St, Atlanta, GA 30301" +195998,Apple Airpods Headphones,1,150,04/05/19 10:00,"716 Dogwood St, Atlanta, GA 30301" +195999,Lightning Charging Cable,1,14.95,04/22/19 18:29,"793 Park St, Boston, MA 02215" +196000,Lightning Charging Cable,1,14.95,04/04/19 18:58,"246 5th St, San Francisco, CA 94016" +196001,27in FHD Monitor,1,149.99,04/04/19 18:51,"322 2nd St, New York City, NY 10001" +196002,Lightning Charging Cable,1,14.95,04/27/19 13:30,"675 Madison St, Los Angeles, CA 90001" +196003,Bose SoundSport Headphones,1,99.99,04/21/19 20:54,"139 Willow St, New York City, NY 10001" +196004,Google Phone,1,600,04/01/19 19:22,"50 Main St, New York City, NY 10001" +196005,Wired Headphones,1,11.99,04/13/19 12:21,"183 South St, Boston, MA 02215" +196006,Lightning Charging Cable,1,14.95,04/24/19 16:55,"697 Madison St, Boston, MA 02215" +196007,ThinkPad Laptop,1,999.99,04/28/19 19:21,"259 Hill St, Los Angeles, CA 90001" +196008,Bose SoundSport Headphones,1,99.99,04/05/19 18:31,"607 West St, Atlanta, GA 30301" +196009,Lightning Charging Cable,1,14.95,04/15/19 12:02,"683 7th St, Portland, OR 97035" +196010,AA Batteries (4-pack),1,3.84,04/09/19 01:08,"279 West St, Portland, OR 97035" +196011,Wired Headphones,1,11.99,04/19/19 19:56,"915 Highland St, Seattle, WA 98101" +196012,iPhone,1,700,04/05/19 16:35,"884 West St, Seattle, WA 98101" +196013,AAA Batteries (4-pack),1,2.99,04/20/19 21:10,"154 Lake St, Seattle, WA 98101" +196014,AA Batteries (4-pack),2,3.84,04/22/19 15:56,"16 2nd St, Atlanta, GA 30301" +196015,Google Phone,1,600,04/03/19 19:56,"269 Washington St, Seattle, WA 98101" +196016,Apple Airpods Headphones,1,150,04/06/19 09:32,"875 13th St, Atlanta, GA 30301" +196017,27in 4K Gaming Monitor,1,389.99,04/09/19 12:23,"422 Main St, New York City, NY 10001" +196018,USB-C Charging Cable,2,11.95,04/09/19 21:49,"633 Main St, Austin, TX 73301" +196019,AAA Batteries (4-pack),1,2.99,04/01/19 13:23,"584 Wilson St, Boston, MA 02215" +196020,AA Batteries (4-pack),2,3.84,04/17/19 13:03,"642 Forest St, Los Angeles, CA 90001" +196021,Flatscreen TV,1,300,04/30/19 19:29,"413 Madison St, New York City, NY 10001" +196022,Apple Airpods Headphones,1,150,04/17/19 10:03,"706 Lincoln St, New York City, NY 10001" +196023,AA Batteries (4-pack),1,3.84,04/07/19 10:58,"480 2nd St, Boston, MA 02215" +196024,USB-C Charging Cable,2,11.95,04/08/19 17:04,"856 Forest St, Dallas, TX 75001" +196025,Wired Headphones,1,11.99,04/11/19 20:19,"434 Dogwood St, Boston, MA 02215" +196026,AAA Batteries (4-pack),1,2.99,04/20/19 14:44,"622 River St, Seattle, WA 98101" +196027,Lightning Charging Cable,1,14.95,04/17/19 04:32,"68 1st St, Boston, MA 02215" +196028,Lightning Charging Cable,1,14.95,04/26/19 23:00,"829 Johnson St, Los Angeles, CA 90001" +196029,USB-C Charging Cable,1,11.95,04/20/19 17:22,"981 Lincoln St, Los Angeles, CA 90001" +196030,34in Ultrawide Monitor,1,379.99,04/19/19 12:53,"451 Pine St, Austin, TX 73301" +196031,Wired Headphones,1,11.99,04/21/19 16:52,"839 Main St, San Francisco, CA 94016" +196032,Apple Airpods Headphones,1,150,04/12/19 22:32,"145 North St, San Francisco, CA 94016" +196032,Lightning Charging Cable,1,14.95,04/12/19 22:32,"145 North St, San Francisco, CA 94016" +196033,Wired Headphones,1,11.99,04/22/19 17:57,"980 Adams St, Atlanta, GA 30301" +196034,AA Batteries (4-pack),1,3.84,04/09/19 10:46,"641 Dogwood St, Atlanta, GA 30301" +196035,20in Monitor,1,109.99,04/26/19 17:14,"549 Forest St, Austin, TX 73301" +196036,Lightning Charging Cable,1,14.95,04/28/19 12:31,"80 4th St, Los Angeles, CA 90001" +196037,ThinkPad Laptop,1,999.99,04/25/19 01:30,"830 Forest St, Boston, MA 02215" +196038,AA Batteries (4-pack),2,3.84,04/29/19 16:06,"611 Highland St, Austin, TX 73301" +196039,Lightning Charging Cable,1,14.95,04/13/19 17:39,"580 Madison St, Atlanta, GA 30301" +196040,AA Batteries (4-pack),1,3.84,04/10/19 11:44,"127 4th St, Dallas, TX 75001" +196041,34in Ultrawide Monitor,1,379.99,04/03/19 17:43,"105 12th St, Boston, MA 02215" +196042,Lightning Charging Cable,1,14.95,04/21/19 20:22,"977 12th St, Portland, ME 04101" +196043,AA Batteries (4-pack),1,3.84,04/10/19 14:16,"109 6th St, Los Angeles, CA 90001" +196044,ThinkPad Laptop,1,999.99,04/19/19 19:56,"105 Church St, San Francisco, CA 94016" +196045,iPhone,1,700,04/07/19 16:16,"346 Wilson St, Boston, MA 02215" +196046,AA Batteries (4-pack),1,3.84,04/16/19 11:45,"947 5th St, Austin, TX 73301" +196047,AA Batteries (4-pack),1,3.84,04/20/19 15:05,"289 West St, San Francisco, CA 94016" +196048,34in Ultrawide Monitor,1,379.99,04/29/19 13:56,"678 Maple St, San Francisco, CA 94016" +196049,AAA Batteries (4-pack),1,2.99,04/19/19 20:34,"607 Willow St, Seattle, WA 98101" +196050,AA Batteries (4-pack),1,3.84,04/21/19 16:42,"954 North St, Atlanta, GA 30301" +196051,Apple Airpods Headphones,1,150,04/30/19 13:44,"666 Sunset St, Los Angeles, CA 90001" +196052,AAA Batteries (4-pack),1,2.99,04/22/19 22:36,"156 9th St, Dallas, TX 75001" +196053,Macbook Pro Laptop,1,1700,04/22/19 13:54,"610 West St, Los Angeles, CA 90001" +196054,Lightning Charging Cable,1,14.95,04/01/19 11:32,"872 Elm St, Los Angeles, CA 90001" +196055,AA Batteries (4-pack),2,3.84,05/01/19 00:38,"529 Park St, Portland, OR 97035" +196056,Lightning Charging Cable,1,14.95,04/11/19 21:56,"963 Center St, Austin, TX 73301" +196057,AAA Batteries (4-pack),1,2.99,04/20/19 16:48,"720 14th St, Seattle, WA 98101" +196058,Apple Airpods Headphones,1,150,04/14/19 11:08,"342 Elm St, Portland, ME 04101" +196059,Lightning Charging Cable,2,14.95,04/22/19 15:42,"169 4th St, Atlanta, GA 30301" +196060,Google Phone,1,600,04/07/19 21:53,"909 Highland St, San Francisco, CA 94016" +196061,AAA Batteries (4-pack),2,2.99,04/21/19 13:27,"790 4th St, Dallas, TX 75001" +196062,USB-C Charging Cable,1,11.95,04/21/19 22:48,"831 Church St, Seattle, WA 98101" +196062,AA Batteries (4-pack),1,3.84,04/21/19 22:48,"831 Church St, Seattle, WA 98101" +196063,Lightning Charging Cable,1,14.95,04/18/19 18:21,"96 9th St, San Francisco, CA 94016" +196064,Wired Headphones,1,11.99,04/30/19 18:56,"725 Church St, Los Angeles, CA 90001" +196065,AA Batteries (4-pack),3,3.84,04/25/19 21:10,"138 11th St, San Francisco, CA 94016" +196066,AAA Batteries (4-pack),1,2.99,04/14/19 12:19,"134 Center St, Los Angeles, CA 90001" +196067,Google Phone,1,600,04/25/19 21:06,"847 Forest St, Los Angeles, CA 90001" +196067,USB-C Charging Cable,1,11.95,04/25/19 21:06,"847 Forest St, Los Angeles, CA 90001" +196068,27in FHD Monitor,1,149.99,04/30/19 09:57,"654 Cherry St, Los Angeles, CA 90001" +196069,USB-C Charging Cable,1,11.95,04/19/19 16:45,"643 South St, San Francisco, CA 94016" +196070,Bose SoundSport Headphones,1,99.99,04/08/19 08:19,"769 7th St, San Francisco, CA 94016" +196071,27in FHD Monitor,1,149.99,04/12/19 11:42,"829 13th St, Boston, MA 02215" +196072,AA Batteries (4-pack),2,3.84,04/12/19 12:02,"420 Sunset St, San Francisco, CA 94016" +196073,AA Batteries (4-pack),1,3.84,04/12/19 10:29,"677 Johnson St, Los Angeles, CA 90001" +196074,AA Batteries (4-pack),1,3.84,04/09/19 11:58,"391 Spruce St, Portland, OR 97035" +196075,AA Batteries (4-pack),1,3.84,04/09/19 20:43,"407 Dogwood St, Dallas, TX 75001" +196076,Google Phone,1,600,04/20/19 19:53,"381 Lincoln St, Los Angeles, CA 90001" +196076,USB-C Charging Cable,2,11.95,04/20/19 19:53,"381 Lincoln St, Los Angeles, CA 90001" +196077,AA Batteries (4-pack),1,3.84,04/06/19 21:02,"728 Cedar St, Seattle, WA 98101" +196078,34in Ultrawide Monitor,1,379.99,04/29/19 08:08,"213 13th St, Atlanta, GA 30301" +196079,27in FHD Monitor,1,149.99,04/03/19 11:59,"896 Spruce St, San Francisco, CA 94016" +196080,AAA Batteries (4-pack),1,2.99,04/26/19 13:37,"636 Walnut St, San Francisco, CA 94016" +196081,27in 4K Gaming Monitor,1,389.99,04/15/19 17:06,"572 Washington St, Los Angeles, CA 90001" +196082,AA Batteries (4-pack),1,3.84,04/25/19 22:00,"788 Hill St, San Francisco, CA 94016" +196083,Macbook Pro Laptop,1,1700,04/04/19 10:27,"17 7th St, New York City, NY 10001" +196084,Flatscreen TV,1,300,04/06/19 21:15,"630 Pine St, Los Angeles, CA 90001" +196085,USB-C Charging Cable,1,11.95,04/02/19 16:31,"48 2nd St, San Francisco, CA 94016" +,,,,, +196086,ThinkPad Laptop,1,999.99,04/04/19 09:35,"7 Madison St, Los Angeles, CA 90001" +196087,AAA Batteries (4-pack),1,2.99,04/15/19 11:43,"898 13th St, San Francisco, CA 94016" +196088,27in FHD Monitor,1,149.99,04/19/19 15:22,"886 7th St, Portland, OR 97035" +196089,34in Ultrawide Monitor,1,379.99,04/20/19 19:46,"12 Pine St, San Francisco, CA 94016" +196090,Wired Headphones,1,11.99,04/12/19 04:35,"161 Lakeview St, Austin, TX 73301" +196091,27in 4K Gaming Monitor,1,389.99,04/18/19 08:50,"238 10th St, Dallas, TX 75001" +196092,iPhone,1,700,04/27/19 11:56,"14 Chestnut St, Los Angeles, CA 90001" +196093,Bose SoundSport Headphones,1,99.99,04/27/19 12:23,"444 Lake St, San Francisco, CA 94016" +196094,27in FHD Monitor,1,149.99,04/20/19 13:23,"225 Jefferson St, New York City, NY 10001" +196095,USB-C Charging Cable,1,11.95,04/30/19 22:43,"501 Ridge St, San Francisco, CA 94016" +196096,Lightning Charging Cable,1,14.95,04/03/19 20:53,"526 7th St, Boston, MA 02215" +196097,USB-C Charging Cable,1,11.95,04/12/19 22:18,"926 West St, San Francisco, CA 94016" +196098,27in 4K Gaming Monitor,1,389.99,04/06/19 11:51,"153 Lincoln St, San Francisco, CA 94016" +196099,27in 4K Gaming Monitor,1,389.99,04/29/19 11:39,"313 1st St, Los Angeles, CA 90001" +196100,AA Batteries (4-pack),2,3.84,04/03/19 09:56,"924 Sunset St, San Francisco, CA 94016" +196101,Apple Airpods Headphones,1,150,04/12/19 21:20,"559 Jefferson St, New York City, NY 10001" +196102,Flatscreen TV,1,300,04/18/19 19:50,"628 Wilson St, Austin, TX 73301" +196103,Bose SoundSport Headphones,1,99.99,04/07/19 11:46,"226 9th St, San Francisco, CA 94016" +196104,AA Batteries (4-pack),1,3.84,04/06/19 19:37,"705 Main St, Boston, MA 02215" +196105,27in FHD Monitor,1,149.99,04/15/19 20:06,"807 West St, Seattle, WA 98101" +196106,Macbook Pro Laptop,1,1700,04/13/19 17:56,"510 8th St, Portland, OR 97035" +196107,AA Batteries (4-pack),1,3.84,04/23/19 20:05,"913 Hickory St, San Francisco, CA 94016" +196108,Flatscreen TV,1,300,04/03/19 12:10,"839 Spruce St, Los Angeles, CA 90001" +196109,AAA Batteries (4-pack),1,2.99,04/01/19 12:27,"332 5th St, San Francisco, CA 94016" +196110,Bose SoundSport Headphones,1,99.99,04/14/19 12:49,"145 2nd St, San Francisco, CA 94016" +196111,Macbook Pro Laptop,1,1700,04/01/19 23:01,"6 Hickory St, San Francisco, CA 94016" +196112,20in Monitor,1,109.99,04/11/19 08:33,"71 Pine St, Seattle, WA 98101" +196113,Wired Headphones,1,11.99,04/02/19 16:58,"762 Willow St, Seattle, WA 98101" +196114,USB-C Charging Cable,1,11.95,04/16/19 11:59,"743 Hill St, Boston, MA 02215" +196115,34in Ultrawide Monitor,1,379.99,04/27/19 18:30,"327 Hickory St, Dallas, TX 75001" +196116,ThinkPad Laptop,1,999.99,04/03/19 08:44,"983 Willow St, New York City, NY 10001" +196117,USB-C Charging Cable,1,11.95,04/21/19 19:23,"894 Madison St, San Francisco, CA 94016" +196118,iPhone,1,700,04/02/19 19:18,"948 6th St, Los Angeles, CA 90001" +196118,Wired Headphones,1,11.99,04/02/19 19:18,"948 6th St, Los Angeles, CA 90001" +196119,27in FHD Monitor,1,149.99,04/10/19 11:43,"938 14th St, New York City, NY 10001" +196120,USB-C Charging Cable,1,11.95,04/05/19 16:03,"222 Chestnut St, Los Angeles, CA 90001" +196121,Lightning Charging Cable,1,14.95,04/21/19 07:30,"826 14th St, Dallas, TX 75001" +196122,AA Batteries (4-pack),1,3.84,04/16/19 18:31,"494 Church St, Los Angeles, CA 90001" +196123,Flatscreen TV,1,300,04/23/19 23:49,"728 Walnut St, Dallas, TX 75001" +196124,USB-C Charging Cable,1,11.95,04/25/19 11:42,"965 9th St, Boston, MA 02215" +196125,34in Ultrawide Monitor,1,379.99,04/27/19 09:42,"976 12th St, San Francisco, CA 94016" +196126,27in 4K Gaming Monitor,1,389.99,04/10/19 20:29,"668 Johnson St, Atlanta, GA 30301" +196127,USB-C Charging Cable,1,11.95,04/16/19 09:58,"895 Wilson St, Boston, MA 02215" +196128,34in Ultrawide Monitor,1,379.99,04/26/19 21:57,"230 Johnson St, San Francisco, CA 94016" +196129,AAA Batteries (4-pack),3,2.99,04/21/19 10:31,"702 6th St, New York City, NY 10001" +196130,AAA Batteries (4-pack),1,2.99,04/26/19 23:19,"408 Meadow St, San Francisco, CA 94016" +196131,AAA Batteries (4-pack),1,2.99,04/15/19 12:09,"111 Forest St, San Francisco, CA 94016" +196132,AA Batteries (4-pack),1,3.84,04/04/19 12:00,"741 West St, New York City, NY 10001" +196133,Lightning Charging Cable,1,14.95,04/04/19 09:05,"805 Wilson St, Los Angeles, CA 90001" +196134,AA Batteries (4-pack),1,3.84,04/21/19 12:39,"845 Jefferson St, San Francisco, CA 94016" +196135,27in FHD Monitor,1,149.99,04/24/19 16:14,"936 4th St, San Francisco, CA 94016" +196136,AAA Batteries (4-pack),1,2.99,04/01/19 17:32,"327 Park St, Atlanta, GA 30301" +196137,AAA Batteries (4-pack),1,2.99,04/24/19 12:55,"375 4th St, Seattle, WA 98101" +196138,iPhone,1,700,04/21/19 15:04,"540 South St, New York City, NY 10001" +196139,Wired Headphones,1,11.99,04/12/19 17:31,"403 1st St, San Francisco, CA 94016" +196140,Flatscreen TV,1,300,04/10/19 18:51,"447 14th St, Dallas, TX 75001" +196141,USB-C Charging Cable,1,11.95,04/07/19 10:10,"777 5th St, San Francisco, CA 94016" +196142,34in Ultrawide Monitor,1,379.99,04/02/19 17:36,"862 Walnut St, San Francisco, CA 94016" +196143,AA Batteries (4-pack),3,3.84,04/10/19 11:20,"161 Adams St, Boston, MA 02215" +196144,AAA Batteries (4-pack),1,2.99,04/17/19 08:01,"565 9th St, Seattle, WA 98101" +196145,Google Phone,1,600,04/10/19 10:59,"157 Church St, Austin, TX 73301" +196146,Lightning Charging Cable,1,14.95,04/06/19 20:44,"168 Lake St, Seattle, WA 98101" +196147,AAA Batteries (4-pack),3,2.99,04/23/19 11:18,"278 Madison St, Boston, MA 02215" +196148,AA Batteries (4-pack),1,3.84,04/04/19 11:09,"657 Jefferson St, San Francisco, CA 94016" +196149,Flatscreen TV,1,300,04/22/19 10:52,"532 Main St, Los Angeles, CA 90001" +196150,ThinkPad Laptop,1,999.99,04/21/19 21:51,"295 South St, Los Angeles, CA 90001" +196151,AAA Batteries (4-pack),1,2.99,04/07/19 12:31,"902 7th St, Seattle, WA 98101" +196152,Apple Airpods Headphones,1,150,04/07/19 16:31,"159 7th St, Austin, TX 73301" +196153,iPhone,1,700,04/01/19 20:19,"797 Willow St, San Francisco, CA 94016" +196154,Apple Airpods Headphones,1,150,04/14/19 20:53,"632 13th St, New York City, NY 10001" +196155,Bose SoundSport Headphones,1,99.99,05/01/19 01:39,"592 5th St, San Francisco, CA 94016" +196156,Wired Headphones,1,11.99,04/29/19 04:18,"643 Forest St, New York City, NY 10001" +196157,Lightning Charging Cable,1,14.95,04/26/19 14:40,"741 River St, Seattle, WA 98101" +196158,USB-C Charging Cable,1,11.95,04/30/19 21:03,"512 Highland St, San Francisco, CA 94016" +196159,Wired Headphones,2,11.99,04/05/19 08:56,"573 10th St, San Francisco, CA 94016" +196160,Wired Headphones,1,11.99,04/16/19 22:07,"979 13th St, San Francisco, CA 94016" +196161,iPhone,1,700,04/07/19 18:31,"103 Church St, San Francisco, CA 94016" +196162,27in FHD Monitor,1,149.99,04/14/19 22:38,"491 Meadow St, Portland, OR 97035" +196163,USB-C Charging Cable,1,11.95,04/15/19 12:45,"999 Ridge St, Boston, MA 02215" +196164,Lightning Charging Cable,1,14.95,04/18/19 18:23,"234 Willow St, Seattle, WA 98101" +196165,AAA Batteries (4-pack),1,2.99,04/04/19 21:03,"184 Park St, Boston, MA 02215" +196166,Bose SoundSport Headphones,1,99.99,04/26/19 19:47,"297 Chestnut St, San Francisco, CA 94016" +196167,27in FHD Monitor,1,149.99,04/01/19 20:28,"688 Highland St, New York City, NY 10001" +196168,Apple Airpods Headphones,1,150,04/04/19 08:07,"134 10th St, Seattle, WA 98101" +196169,USB-C Charging Cable,2,11.95,04/20/19 09:42,"116 Pine St, San Francisco, CA 94016" +196170,34in Ultrawide Monitor,1,379.99,04/09/19 07:57,"556 6th St, Portland, ME 04101" +196171,Apple Airpods Headphones,1,150,04/13/19 19:00,"219 Walnut St, New York City, NY 10001" +196172,USB-C Charging Cable,1,11.95,04/10/19 17:57,"649 Cedar St, Los Angeles, CA 90001" +196173,AAA Batteries (4-pack),1,2.99,04/03/19 21:42,"805 10th St, Los Angeles, CA 90001" +196174,AAA Batteries (4-pack),1,2.99,04/01/19 17:46,"257 Church St, Atlanta, GA 30301" +196175,Apple Airpods Headphones,1,150,04/14/19 16:14,"248 Jefferson St, New York City, NY 10001" +196176,Apple Airpods Headphones,1,150,04/21/19 20:59,"100 Ridge St, Boston, MA 02215" +196177,iPhone,1,700,04/22/19 14:03,"144 Adams St, Portland, OR 97035" +196178,USB-C Charging Cable,1,11.95,04/06/19 11:17,"715 Willow St, Dallas, TX 75001" +196178,USB-C Charging Cable,1,11.95,04/06/19 11:17,"715 Willow St, Dallas, TX 75001" +196179,USB-C Charging Cable,1,11.95,04/14/19 23:30,"521 North St, Boston, MA 02215" +196180,AA Batteries (4-pack),2,3.84,04/11/19 22:47,"225 Center St, New York City, NY 10001" +196181,Wired Headphones,1,11.99,04/05/19 23:25,"815 Ridge St, New York City, NY 10001" +196182,AAA Batteries (4-pack),1,2.99,04/14/19 22:35,"412 Highland St, Boston, MA 02215" +196182,Bose SoundSport Headphones,1,99.99,04/14/19 22:35,"412 Highland St, Boston, MA 02215" +196183,USB-C Charging Cable,1,11.95,04/12/19 14:26,"426 West St, Austin, TX 73301" +196184,Macbook Pro Laptop,1,1700,04/29/19 18:36,"673 Meadow St, New York City, NY 10001" +196185,Lightning Charging Cable,1,14.95,04/29/19 20:02,"122 Spruce St, New York City, NY 10001" +196186,AA Batteries (4-pack),1,3.84,04/11/19 14:26,"440 Center St, San Francisco, CA 94016" +196187,ThinkPad Laptop,1,999.99,04/30/19 20:57,"269 Adams St, Dallas, TX 75001" +196188,AA Batteries (4-pack),2,3.84,04/23/19 16:20,"696 Willow St, Austin, TX 73301" +196189,AA Batteries (4-pack),2,3.84,04/27/19 17:04,"34 Church St, San Francisco, CA 94016" +196190,Wired Headphones,1,11.99,04/10/19 12:54,"394 4th St, Seattle, WA 98101" +196191,AA Batteries (4-pack),1,3.84,04/14/19 09:49,"12 Main St, San Francisco, CA 94016" +196192,20in Monitor,1,109.99,04/27/19 22:44,"806 Cedar St, San Francisco, CA 94016" +196193,USB-C Charging Cable,1,11.95,04/19/19 11:24,"316 Johnson St, New York City, NY 10001" +196194,USB-C Charging Cable,1,11.95,04/05/19 13:20,"216 Dogwood St, New York City, NY 10001" +196195,AAA Batteries (4-pack),5,2.99,04/30/19 12:36,"860 Walnut St, San Francisco, CA 94016" +196196,27in FHD Monitor,1,149.99,04/22/19 16:32,"381 Ridge St, Los Angeles, CA 90001" +196197,AA Batteries (4-pack),1,3.84,04/06/19 17:55,"968 Lincoln St, San Francisco, CA 94016" +196198,AAA Batteries (4-pack),1,2.99,04/01/19 13:58,"913 Highland St, San Francisco, CA 94016" +196199,Lightning Charging Cable,1,14.95,04/07/19 10:20,"68 Forest St, New York City, NY 10001" +196200,AA Batteries (4-pack),1,3.84,04/25/19 17:50,"887 9th St, San Francisco, CA 94016" +196201,Bose SoundSport Headphones,1,99.99,04/05/19 11:14,"806 Sunset St, Seattle, WA 98101" +196201,USB-C Charging Cable,1,11.95,04/05/19 11:14,"806 Sunset St, Seattle, WA 98101" +196202,Lightning Charging Cable,1,14.95,04/06/19 22:01,"731 6th St, Los Angeles, CA 90001" +196203,AAA Batteries (4-pack),1,2.99,04/04/19 20:59,"106 Johnson St, New York City, NY 10001" +196204,USB-C Charging Cable,2,11.95,04/24/19 15:32,"3 Elm St, San Francisco, CA 94016" +196205,AA Batteries (4-pack),1,3.84,04/06/19 10:56,"827 6th St, New York City, NY 10001" +196206,USB-C Charging Cable,1,11.95,04/05/19 08:31,"792 Forest St, Seattle, WA 98101" +196207,Apple Airpods Headphones,1,150,04/12/19 17:52,"725 Park St, Dallas, TX 75001" +,,,,, +196208,Lightning Charging Cable,2,14.95,04/26/19 13:20,"581 Johnson St, Dallas, TX 75001" +196209,Apple Airpods Headphones,1,150,04/21/19 14:09,"475 Dogwood St, San Francisco, CA 94016" +196210,Macbook Pro Laptop,1,1700,04/18/19 17:28,"396 Wilson St, Boston, MA 02215" +196211,USB-C Charging Cable,1,11.95,04/18/19 22:31,"402 Center St, Boston, MA 02215" +196212,AA Batteries (4-pack),1,3.84,04/13/19 08:13,"192 Ridge St, Seattle, WA 98101" +196213,Bose SoundSport Headphones,1,99.99,04/01/19 21:34,"274 Wilson St, New York City, NY 10001" +196214,Flatscreen TV,1,300,04/06/19 15:44,"866 Adams St, Austin, TX 73301" +196215,AAA Batteries (4-pack),1,2.99,04/19/19 19:34,"8 4th St, Los Angeles, CA 90001" +196216,Wired Headphones,1,11.99,04/15/19 19:10,"578 10th St, Los Angeles, CA 90001" +196217,USB-C Charging Cable,1,11.95,04/15/19 19:17,"500 Highland St, Dallas, TX 75001" +196218,AAA Batteries (4-pack),1,2.99,04/14/19 19:26,"870 North St, Atlanta, GA 30301" +196219,Lightning Charging Cable,1,14.95,04/07/19 13:49,"849 Cedar St, Dallas, TX 75001" +196220,Bose SoundSport Headphones,1,99.99,04/20/19 11:19,"85 North St, New York City, NY 10001" +196221,Lightning Charging Cable,1,14.95,04/23/19 15:48,"180 Church St, San Francisco, CA 94016" +196222,Apple Airpods Headphones,1,150,04/30/19 04:07,"779 Jackson St, San Francisco, CA 94016" +196223,34in Ultrawide Monitor,1,379.99,04/18/19 22:03,"518 Main St, Boston, MA 02215" +196224,Lightning Charging Cable,1,14.95,04/28/19 13:00,"410 Maple St, Seattle, WA 98101" +196225,20in Monitor,1,109.99,04/25/19 18:17,"498 North St, Boston, MA 02215" +196226,Apple Airpods Headphones,1,150,04/16/19 12:03,"557 13th St, Atlanta, GA 30301" +196227,20in Monitor,1,109.99,04/02/19 12:45,"60 5th St, San Francisco, CA 94016" +196228,Bose SoundSport Headphones,1,99.99,04/12/19 12:27,"346 Lake St, San Francisco, CA 94016" +196229,ThinkPad Laptop,1,999.99,04/03/19 12:57,"328 Jackson St, Boston, MA 02215" +196230,USB-C Charging Cable,1,11.95,04/05/19 10:48,"580 Cedar St, New York City, NY 10001" +196231,27in 4K Gaming Monitor,1,389.99,04/27/19 13:27,"404 Center St, Atlanta, GA 30301" +196232,27in FHD Monitor,1,149.99,04/09/19 13:54,"878 Madison St, Seattle, WA 98101" +196233,Lightning Charging Cable,1,14.95,04/13/19 11:17,"428 Center St, Austin, TX 73301" +196234,27in FHD Monitor,1,149.99,04/03/19 20:50,"63 Elm St, Atlanta, GA 30301" +196235,iPhone,1,700,04/24/19 01:15,"8 Park St, Los Angeles, CA 90001" +196236,Apple Airpods Headphones,1,150,04/09/19 11:25,"308 Adams St, Seattle, WA 98101" +196237,Lightning Charging Cable,1,14.95,04/02/19 13:12,"983 Washington St, Los Angeles, CA 90001" +196238,Macbook Pro Laptop,1,1700,04/16/19 14:16,"371 Lincoln St, Dallas, TX 75001" +196239,ThinkPad Laptop,1,999.99,04/29/19 17:48,"694 Wilson St, New York City, NY 10001" +196240,Lightning Charging Cable,1,14.95,04/10/19 15:24,"717 Johnson St, Boston, MA 02215" +196241,USB-C Charging Cable,1,11.95,04/23/19 23:41,"712 Washington St, Dallas, TX 75001" +196242,Apple Airpods Headphones,1,150,04/24/19 12:40,"300 Sunset St, San Francisco, CA 94016" +196243,27in 4K Gaming Monitor,1,389.99,04/28/19 12:11,"524 Johnson St, San Francisco, CA 94016" +196244,Bose SoundSport Headphones,1,99.99,04/03/19 15:07,"943 Hill St, Boston, MA 02215" +196245,AA Batteries (4-pack),1,3.84,04/29/19 13:29,"400 Jackson St, Los Angeles, CA 90001" +196246,Flatscreen TV,1,300,04/09/19 12:25,"853 Lake St, San Francisco, CA 94016" +196247,USB-C Charging Cable,1,11.95,04/28/19 13:46,"512 5th St, Los Angeles, CA 90001" +196248,Macbook Pro Laptop,1,1700,04/26/19 18:59,"709 Forest St, San Francisco, CA 94016" +196249,Apple Airpods Headphones,1,150,04/06/19 23:24,"547 14th St, Los Angeles, CA 90001" +196250,Wired Headphones,1,11.99,04/14/19 13:05,"343 2nd St, San Francisco, CA 94016" +196251,Vareebadd Phone,1,400,04/10/19 13:24,"866 Hill St, Boston, MA 02215" +196252,Bose SoundSport Headphones,1,99.99,04/21/19 15:16,"387 5th St, Seattle, WA 98101" +196253,Bose SoundSport Headphones,1,99.99,04/28/19 16:43,"378 Hickory St, Dallas, TX 75001" +196254,USB-C Charging Cable,1,11.95,04/18/19 20:06,"480 Dogwood St, San Francisco, CA 94016" +196255,iPhone,1,700,04/01/19 16:17,"557 Maple St, Los Angeles, CA 90001" +196256,AAA Batteries (4-pack),1,2.99,04/12/19 20:05,"909 Jackson St, Los Angeles, CA 90001" +196257,Wired Headphones,1,11.99,04/04/19 11:45,"189 Center St, Los Angeles, CA 90001" +196258,Lightning Charging Cable,1,14.95,04/01/19 11:23,"856 8th St, Los Angeles, CA 90001" +196259,Wired Headphones,1,11.99,04/23/19 22:09,"652 9th St, Los Angeles, CA 90001" +196260,iPhone,1,700,04/13/19 08:44,"925 Main St, Dallas, TX 75001" +196261,Google Phone,1,600,04/29/19 14:14,"566 West St, Seattle, WA 98101" +196261,Wired Headphones,1,11.99,04/29/19 14:14,"566 West St, Seattle, WA 98101" +196262,iPhone,1,700,04/17/19 11:44,"287 1st St, Atlanta, GA 30301" +196263,Google Phone,1,600,04/03/19 11:37,"572 Hill St, San Francisco, CA 94016" +196264,AAA Batteries (4-pack),1,2.99,04/25/19 17:26,"47 Lake St, Los Angeles, CA 90001" +196265,AAA Batteries (4-pack),3,2.99,04/08/19 22:03,"816 North St, Boston, MA 02215" +196266,Apple Airpods Headphones,1,150,04/19/19 12:37,"633 Elm St, Los Angeles, CA 90001" +196267,Lightning Charging Cable,1,14.95,04/03/19 20:41,"65 Center St, Seattle, WA 98101" +196268,Wired Headphones,1,11.99,04/20/19 17:08,"702 Meadow St, San Francisco, CA 94016" +196269,AAA Batteries (4-pack),1,2.99,04/14/19 15:44,"281 14th St, Seattle, WA 98101" +196270,34in Ultrawide Monitor,1,379.99,04/03/19 09:46,"760 Chestnut St, Boston, MA 02215" +196271,27in 4K Gaming Monitor,1,389.99,04/08/19 18:22,"500 Church St, Seattle, WA 98101" +196272,USB-C Charging Cable,1,11.95,04/04/19 22:54,"902 Meadow St, Atlanta, GA 30301" +196273,Bose SoundSport Headphones,1,99.99,04/24/19 11:14,"880 9th St, Boston, MA 02215" +196274,ThinkPad Laptop,1,999.99,04/28/19 21:55,"433 Meadow St, Boston, MA 02215" +196275,20in Monitor,1,109.99,04/13/19 12:46,"41 Meadow St, Los Angeles, CA 90001" +196276,34in Ultrawide Monitor,1,379.99,04/17/19 13:33,"849 Adams St, Dallas, TX 75001" +196277,Wired Headphones,2,11.99,04/15/19 23:16,"733 Main St, Seattle, WA 98101" +196278,Flatscreen TV,1,300,04/26/19 16:58,"374 Walnut St, San Francisco, CA 94016" +196279,Lightning Charging Cable,1,14.95,04/02/19 09:39,"789 Church St, Seattle, WA 98101" +196280,USB-C Charging Cable,1,11.95,04/24/19 10:46,"338 10th St, Atlanta, GA 30301" +196281,Bose SoundSport Headphones,1,99.99,04/09/19 21:55,"756 7th St, San Francisco, CA 94016" +196282,AA Batteries (4-pack),2,3.84,04/29/19 11:33,"140 Church St, Los Angeles, CA 90001" +196283,AA Batteries (4-pack),1,3.84,04/19/19 17:47,"40 Park St, Seattle, WA 98101" +196284,AA Batteries (4-pack),1,3.84,04/06/19 20:27,"866 Park St, San Francisco, CA 94016" +196285,Bose SoundSport Headphones,1,99.99,04/18/19 16:14,"708 Willow St, San Francisco, CA 94016" +196286,ThinkPad Laptop,1,999.99,04/19/19 00:10,"906 Chestnut St, Atlanta, GA 30301" +196287,Wired Headphones,1,11.99,04/11/19 11:36,"573 13th St, Dallas, TX 75001" +196288,20in Monitor,1,109.99,04/30/19 10:05,"876 West St, San Francisco, CA 94016" +196289,AA Batteries (4-pack),1,3.84,04/11/19 19:25,"972 Madison St, Los Angeles, CA 90001" +196290,ThinkPad Laptop,1,999.99,04/28/19 20:29,"404 10th St, Atlanta, GA 30301" +196291,Bose SoundSport Headphones,1,99.99,04/04/19 11:54,"399 Wilson St, San Francisco, CA 94016" +196292,Wired Headphones,2,11.99,04/24/19 21:06,"838 Meadow St, Boston, MA 02215" +196293,Wired Headphones,1,11.99,04/05/19 09:08,"161 Jackson St, Austin, TX 73301" +196294,USB-C Charging Cable,1,11.95,04/09/19 10:28,"871 South St, Boston, MA 02215" +196295,27in 4K Gaming Monitor,1,389.99,04/04/19 20:33,"857 Jackson St, Portland, ME 04101" +196296,ThinkPad Laptop,1,999.99,04/07/19 14:38,"356 Adams St, Los Angeles, CA 90001" +196297,AAA Batteries (4-pack),2,2.99,04/01/19 16:00,"457 Elm St, San Francisco, CA 94016" +196298,27in 4K Gaming Monitor,1,389.99,04/27/19 08:42,"621 North St, Dallas, TX 75001" +196299,USB-C Charging Cable,1,11.95,04/20/19 17:21,"84 8th St, San Francisco, CA 94016" +196300,Macbook Pro Laptop,1,1700,04/16/19 13:36,"764 Church St, San Francisco, CA 94016" +196301,Wired Headphones,1,11.99,04/11/19 15:05,"606 Meadow St, Los Angeles, CA 90001" +196302,AAA Batteries (4-pack),3,2.99,04/23/19 12:25,"418 14th St, San Francisco, CA 94016" +196302,Lightning Charging Cable,1,14.95,04/23/19 12:25,"418 14th St, San Francisco, CA 94016" +196303,Apple Airpods Headphones,1,150,04/27/19 21:18,"347 Lake St, Seattle, WA 98101" +196304,LG Dryer,1,600.0,04/06/19 14:27,"658 Hill St, Los Angeles, CA 90001" +196305,USB-C Charging Cable,1,11.95,04/02/19 12:35,"281 Jackson St, Portland, OR 97035" +196306,Wired Headphones,1,11.99,04/09/19 03:08,"670 6th St, Los Angeles, CA 90001" +196307,34in Ultrawide Monitor,1,379.99,04/22/19 12:52,"624 Ridge St, Austin, TX 73301" +196308,AA Batteries (4-pack),2,3.84,04/24/19 10:40,"65 11th St, Los Angeles, CA 90001" +196309,AAA Batteries (4-pack),1,2.99,04/23/19 19:38,"667 Washington St, Los Angeles, CA 90001" +196310,iPhone,1,700,04/14/19 20:07,"323 13th St, New York City, NY 10001" +,,,,, +196311,AAA Batteries (4-pack),3,2.99,04/25/19 12:07,"508 5th St, New York City, NY 10001" +196312,AAA Batteries (4-pack),1,2.99,04/18/19 16:04,"551 Willow St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +196313,20in Monitor,1,109.99,04/16/19 01:10,"67 Washington St, San Francisco, CA 94016" +196314,Bose SoundSport Headphones,1,99.99,04/29/19 15:19,"378 14th St, Austin, TX 73301" +196315,20in Monitor,1,109.99,04/05/19 13:10,"302 Spruce St, San Francisco, CA 94016" +196316,Apple Airpods Headphones,1,150,05/01/19 03:11,"920 8th St, Los Angeles, CA 90001" +196317,AAA Batteries (4-pack),1,2.99,04/01/19 15:08,"124 12th St, Los Angeles, CA 90001" +196318,Lightning Charging Cable,1,14.95,04/21/19 20:27,"539 Lincoln St, New York City, NY 10001" +196319,AA Batteries (4-pack),1,3.84,04/07/19 12:17,"575 7th St, Austin, TX 73301" +196320,ThinkPad Laptop,1,999.99,04/17/19 08:33,"259 9th St, Austin, TX 73301" +196321,Bose SoundSport Headphones,1,99.99,04/20/19 18:28,"888 Cedar St, New York City, NY 10001" +196322,Lightning Charging Cable,1,14.95,04/25/19 20:54,"991 North St, Boston, MA 02215" +196323,34in Ultrawide Monitor,1,379.99,04/06/19 20:22,"149 Jackson St, Boston, MA 02215" +196324,AA Batteries (4-pack),2,3.84,04/14/19 11:32,"430 Wilson St, New York City, NY 10001" +196325,AA Batteries (4-pack),1,3.84,04/13/19 18:56,"577 5th St, San Francisco, CA 94016" +196326,AA Batteries (4-pack),1,3.84,04/25/19 12:41,"850 7th St, New York City, NY 10001" +196327,Apple Airpods Headphones,1,150,04/26/19 20:19,"755 West St, Los Angeles, CA 90001" +196328,ThinkPad Laptop,1,999.99,04/05/19 08:44,"105 Lake St, San Francisco, CA 94016" +196329,Lightning Charging Cable,1,14.95,04/07/19 10:55,"670 Cherry St, Portland, OR 97035" +196330,AAA Batteries (4-pack),1,2.99,04/25/19 21:03,"659 Elm St, Seattle, WA 98101" +196331,AA Batteries (4-pack),1,3.84,04/11/19 09:07,"597 Spruce St, Portland, ME 04101" +196332,Wired Headphones,1,11.99,04/02/19 12:11,"289 Willow St, San Francisco, CA 94016" +196333,Vareebadd Phone,1,400,04/28/19 16:02,"553 Sunset St, Dallas, TX 75001" +196334,USB-C Charging Cable,1,11.95,04/27/19 11:25,"359 Lake St, Los Angeles, CA 90001" +196335,Lightning Charging Cable,1,14.95,04/25/19 12:17,"762 Maple St, Boston, MA 02215" +196336,ThinkPad Laptop,1,999.99,04/14/19 05:39,"624 Lincoln St, Portland, OR 97035" +196337,27in 4K Gaming Monitor,1,389.99,04/21/19 13:20,"996 West St, Atlanta, GA 30301" +196338,Flatscreen TV,1,300,04/10/19 11:03,"589 Chestnut St, Los Angeles, CA 90001" +196339,Wired Headphones,1,11.99,04/10/19 18:32,"443 Chestnut St, Los Angeles, CA 90001" +196340,Lightning Charging Cable,1,14.95,04/28/19 15:23,"496 5th St, New York City, NY 10001" +196341,Bose SoundSport Headphones,1,99.99,04/25/19 11:42,"622 Lincoln St, New York City, NY 10001" +196342,AAA Batteries (4-pack),1,2.99,04/16/19 20:48,"985 Chestnut St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +196343,Lightning Charging Cable,1,14.95,04/19/19 22:36,"577 Spruce St, San Francisco, CA 94016" +196344,Wired Headphones,1,11.99,04/05/19 11:56,"378 7th St, Austin, TX 73301" +196345,Bose SoundSport Headphones,1,99.99,04/25/19 11:53,"554 5th St, San Francisco, CA 94016" +196346,Lightning Charging Cable,1,14.95,04/26/19 19:33,"803 West St, Boston, MA 02215" +196347,Wired Headphones,1,11.99,04/28/19 10:15,"284 Elm St, Portland, OR 97035" +196348,AA Batteries (4-pack),2,3.84,04/24/19 12:04,"393 Jackson St, Portland, OR 97035" +196349,AA Batteries (4-pack),1,3.84,04/12/19 08:20,"974 14th St, San Francisco, CA 94016" +196350,AA Batteries (4-pack),1,3.84,04/22/19 16:11,"632 9th St, Portland, OR 97035" +196351,AA Batteries (4-pack),1,3.84,04/12/19 22:43,"494 Maple St, Los Angeles, CA 90001" +196352,iPhone,1,700,04/30/19 10:01,"816 2nd St, San Francisco, CA 94016" +196353,AA Batteries (4-pack),1,3.84,04/09/19 13:38,"545 Spruce St, San Francisco, CA 94016" +196354,USB-C Charging Cable,1,11.95,04/04/19 07:30,"691 Lakeview St, San Francisco, CA 94016" +196355,AA Batteries (4-pack),3,3.84,04/15/19 16:03,"152 South St, New York City, NY 10001" +196356,USB-C Charging Cable,1,11.95,04/25/19 22:43,"151 South St, Dallas, TX 75001" +196357,Apple Airpods Headphones,1,150,04/12/19 10:50,"326 North St, New York City, NY 10001" +196358,27in FHD Monitor,1,149.99,04/27/19 09:57,"968 Hickory St, New York City, NY 10001" +196359,Google Phone,1,600,04/20/19 09:45,"654 Lake St, San Francisco, CA 94016" +196360,iPhone,1,700,04/16/19 18:39,"919 Center St, Seattle, WA 98101" +196361,AA Batteries (4-pack),1,3.84,04/23/19 08:02,"958 Lakeview St, Seattle, WA 98101" +196362,27in FHD Monitor,1,149.99,04/19/19 15:12,"676 Chestnut St, Los Angeles, CA 90001" +196363,Lightning Charging Cable,1,14.95,04/09/19 11:18,"639 Park St, Dallas, TX 75001" +196364,34in Ultrawide Monitor,1,379.99,04/10/19 18:14,"980 12th St, Boston, MA 02215" +196365,USB-C Charging Cable,1,11.95,04/12/19 17:16,"186 Walnut St, Los Angeles, CA 90001" +196366,USB-C Charging Cable,1,11.95,04/05/19 21:26,"276 Cherry St, Boston, MA 02215" +196367,34in Ultrawide Monitor,1,379.99,04/05/19 10:22,"999 South St, Los Angeles, CA 90001" +196368,Flatscreen TV,1,300,04/27/19 16:37,"843 13th St, Boston, MA 02215" +196369,Bose SoundSport Headphones,1,99.99,04/11/19 08:05,"102 Maple St, Portland, OR 97035" +196370,Google Phone,1,600,04/05/19 19:40,"529 North St, Boston, MA 02215" +196370,USB-C Charging Cable,1,11.95,04/05/19 19:40,"529 North St, Boston, MA 02215" +196371,AAA Batteries (4-pack),1,2.99,04/08/19 18:33,"810 Meadow St, Boston, MA 02215" +196372,27in 4K Gaming Monitor,1,389.99,04/18/19 20:10,"32 West St, Atlanta, GA 30301" +196373,27in FHD Monitor,1,149.99,04/25/19 01:33,"803 Sunset St, Seattle, WA 98101" +196374,USB-C Charging Cable,1,11.95,04/06/19 15:23,"773 10th St, Boston, MA 02215" +196375,Apple Airpods Headphones,1,150,04/10/19 13:20,"710 Dogwood St, Boston, MA 02215" +196376,USB-C Charging Cable,1,11.95,04/15/19 12:14,"905 Lakeview St, San Francisco, CA 94016" +196377,Google Phone,1,600,04/13/19 23:31,"946 Forest St, Boston, MA 02215" +196378,AAA Batteries (4-pack),1,2.99,04/01/19 12:41,"978 Main St, Boston, MA 02215" +196379,34in Ultrawide Monitor,1,379.99,04/24/19 10:13,"473 Washington St, Austin, TX 73301" +196380,AAA Batteries (4-pack),2,2.99,04/08/19 16:55,"13 Lake St, Dallas, TX 75001" +196381,Apple Airpods Headphones,1,150,04/07/19 11:32,"90 Cherry St, Portland, OR 97035" +196382,Google Phone,1,600,04/28/19 14:28,"536 Hill St, New York City, NY 10001" +196383,ThinkPad Laptop,1,999.99,04/09/19 22:57,"937 Center St, San Francisco, CA 94016" +196384,AA Batteries (4-pack),1,3.84,04/03/19 19:34,"607 12th St, New York City, NY 10001" +196385,Lightning Charging Cable,1,14.95,04/27/19 13:29,"385 Lincoln St, New York City, NY 10001" +196386,Apple Airpods Headphones,1,150,04/26/19 11:43,"700 River St, Atlanta, GA 30301" +196387,USB-C Charging Cable,1,11.95,04/08/19 08:43,"485 Hickory St, Atlanta, GA 30301" +196388,Apple Airpods Headphones,1,150,04/02/19 15:20,"979 Ridge St, San Francisco, CA 94016" +196389,AAA Batteries (4-pack),1,2.99,04/20/19 20:56,"192 Adams St, San Francisco, CA 94016" +196390,Apple Airpods Headphones,1,150,04/27/19 00:00,"669 River St, Los Angeles, CA 90001" +196391,Flatscreen TV,1,300,04/13/19 11:21,"906 Walnut St, Portland, OR 97035" +196392,AAA Batteries (4-pack),1,2.99,04/01/19 06:17,"341 River St, Boston, MA 02215" +196393,Wired Headphones,1,11.99,04/27/19 07:23,"692 Park St, San Francisco, CA 94016" +196394,27in FHD Monitor,1,149.99,04/23/19 23:01,"318 12th St, San Francisco, CA 94016" +196395,27in 4K Gaming Monitor,1,389.99,04/30/19 21:34,"40 12th St, San Francisco, CA 94016" +196396,AA Batteries (4-pack),1,3.84,04/15/19 20:11,"256 5th St, San Francisco, CA 94016" +196397,Google Phone,1,600,04/12/19 22:02,"681 Jefferson St, Boston, MA 02215" +196398,AA Batteries (4-pack),1,3.84,04/10/19 12:48,"725 Sunset St, Boston, MA 02215" +196399,AAA Batteries (4-pack),1,2.99,04/21/19 11:50,"311 Park St, Austin, TX 73301" +196400,AA Batteries (4-pack),1,3.84,04/01/19 22:32,"895 Walnut St, New York City, NY 10001" +196401,iPhone,1,700,04/02/19 17:10,"38 South St, San Francisco, CA 94016" +196402,Lightning Charging Cable,1,14.95,04/06/19 07:48,"151 Main St, Los Angeles, CA 90001" +196403,Lightning Charging Cable,1,14.95,04/04/19 11:41,"445 14th St, San Francisco, CA 94016" +196403,USB-C Charging Cable,1,11.95,04/04/19 11:41,"445 14th St, San Francisco, CA 94016" +196404,Lightning Charging Cable,1,14.95,04/19/19 07:39,"292 Pine St, San Francisco, CA 94016" +196405,USB-C Charging Cable,3,11.95,04/10/19 01:53,"858 6th St, Los Angeles, CA 90001" +196406,USB-C Charging Cable,1,11.95,04/10/19 10:28,"946 South St, Boston, MA 02215" +196407,27in 4K Gaming Monitor,1,389.99,04/11/19 18:41,"852 14th St, Los Angeles, CA 90001" +196408,Apple Airpods Headphones,1,150,04/02/19 20:20,"287 8th St, Austin, TX 73301" +196409,Apple Airpods Headphones,1,150,04/15/19 01:51,"366 Meadow St, Boston, MA 02215" +196410,Lightning Charging Cable,1,14.95,04/05/19 23:00,"562 Washington St, New York City, NY 10001" +196411,ThinkPad Laptop,1,999.99,04/17/19 10:53,"77 Jackson St, Los Angeles, CA 90001" +196412,20in Monitor,1,109.99,04/04/19 13:06,"52 Dogwood St, Los Angeles, CA 90001" +196413,AAA Batteries (4-pack),1,2.99,04/21/19 18:20,"290 1st St, San Francisco, CA 94016" +196414,Apple Airpods Headphones,1,150,04/09/19 17:47,"78 9th St, New York City, NY 10001" +196415,Wired Headphones,1,11.99,04/26/19 19:42,"289 14th St, San Francisco, CA 94016" +196416,Lightning Charging Cable,1,14.95,04/06/19 19:28,"48 Willow St, Los Angeles, CA 90001" +196417,27in FHD Monitor,1,149.99,04/05/19 07:28,"249 Dogwood St, Atlanta, GA 30301" +196418,AAA Batteries (4-pack),2,2.99,04/26/19 22:26,"891 South St, Atlanta, GA 30301" +196419,Wired Headphones,1,11.99,04/05/19 10:55,"461 Washington St, San Francisco, CA 94016" +196420,AA Batteries (4-pack),1,3.84,04/13/19 20:57,"76 10th St, San Francisco, CA 94016" +196421,Lightning Charging Cable,1,14.95,04/25/19 00:03,"660 12th St, San Francisco, CA 94016" +196422,USB-C Charging Cable,1,11.95,04/04/19 14:50,"363 Jefferson St, Atlanta, GA 30301" +196423,Lightning Charging Cable,1,14.95,04/30/19 15:46,"366 7th St, Boston, MA 02215" +196424,Wired Headphones,1,11.99,04/25/19 08:02,"180 Hickory St, Atlanta, GA 30301" +196425,27in FHD Monitor,1,149.99,04/23/19 09:52,"742 2nd St, San Francisco, CA 94016" +196426,Lightning Charging Cable,1,14.95,04/07/19 21:06,"968 Johnson St, San Francisco, CA 94016" +196427,Apple Airpods Headphones,1,150,04/28/19 19:38,"480 6th St, Los Angeles, CA 90001" +196428,Apple Airpods Headphones,1,150,04/12/19 17:38,"672 Jefferson St, Dallas, TX 75001" +196429,Lightning Charging Cable,1,14.95,04/04/19 21:23,"502 Chestnut St, New York City, NY 10001" +196430,AAA Batteries (4-pack),1,2.99,04/12/19 23:58,"120 Meadow St, Seattle, WA 98101" +196431,34in Ultrawide Monitor,1,379.99,04/16/19 09:12,"441 12th St, Los Angeles, CA 90001" +196432,Bose SoundSport Headphones,1,99.99,04/22/19 12:58,"793 South St, Portland, OR 97035" +196433,Lightning Charging Cable,1,14.95,04/06/19 18:30,"336 2nd St, San Francisco, CA 94016" +196434,27in 4K Gaming Monitor,1,389.99,04/10/19 13:57,"43 11th St, Los Angeles, CA 90001" +196435,ThinkPad Laptop,1,999.99,04/04/19 19:21,"841 Cedar St, New York City, NY 10001" +196436,AA Batteries (4-pack),3,3.84,04/23/19 19:46,"271 Lake St, New York City, NY 10001" +196437,Flatscreen TV,1,300,04/19/19 15:40,"746 Madison St, New York City, NY 10001" +196438,AA Batteries (4-pack),1,3.84,04/06/19 22:08,"30 Adams St, Atlanta, GA 30301" +196439,AAA Batteries (4-pack),1,2.99,04/29/19 19:32,"29 Elm St, San Francisco, CA 94016" +196440,27in FHD Monitor,1,149.99,04/20/19 18:30,"341 1st St, San Francisco, CA 94016" +196441,AAA Batteries (4-pack),1,2.99,04/06/19 01:23,"663 6th St, New York City, NY 10001" +196442,USB-C Charging Cable,1,11.95,04/06/19 21:42,"790 Ridge St, San Francisco, CA 94016" +196443,Lightning Charging Cable,1,14.95,04/27/19 10:41,"695 Center St, Los Angeles, CA 90001" +196444,AA Batteries (4-pack),1,3.84,04/10/19 22:31,"550 Hill St, Austin, TX 73301" +196445,20in Monitor,1,109.99,04/26/19 17:36,"722 Jackson St, Los Angeles, CA 90001" +196446,USB-C Charging Cable,1,11.95,04/08/19 14:51,"299 North St, New York City, NY 10001" +196447,27in FHD Monitor,1,149.99,04/28/19 15:29,"150 5th St, San Francisco, CA 94016" +196448,Lightning Charging Cable,1,14.95,04/15/19 13:20,"329 Main St, New York City, NY 10001" +196449,20in Monitor,1,109.99,04/29/19 08:38,"438 12th St, San Francisco, CA 94016" +196450,USB-C Charging Cable,1,11.95,04/07/19 12:02,"230 Lake St, San Francisco, CA 94016" +196451,AA Batteries (4-pack),1,3.84,04/25/19 13:52,"313 Madison St, Los Angeles, CA 90001" +196452,AAA Batteries (4-pack),1,2.99,04/15/19 06:14,"885 Ridge St, San Francisco, CA 94016" +196453,AAA Batteries (4-pack),1,2.99,04/17/19 15:25,"949 Hill St, Dallas, TX 75001" +196454,AA Batteries (4-pack),1,3.84,04/08/19 23:50,"924 Elm St, Seattle, WA 98101" +196455,Lightning Charging Cable,1,14.95,04/13/19 11:47,"790 12th St, Los Angeles, CA 90001" +196456,Lightning Charging Cable,1,14.95,04/08/19 22:43,"428 Spruce St, Boston, MA 02215" +196457,20in Monitor,1,109.99,04/16/19 23:20,"129 Highland St, Los Angeles, CA 90001" +196458,USB-C Charging Cable,2,11.95,04/10/19 16:58,"6 Walnut St, Austin, TX 73301" +196459,27in FHD Monitor,1,149.99,04/03/19 13:00,"872 Ridge St, San Francisco, CA 94016" +196460,34in Ultrawide Monitor,1,379.99,04/29/19 13:02,"791 8th St, Dallas, TX 75001" +196461,20in Monitor,1,109.99,04/14/19 12:01,"775 Center St, San Francisco, CA 94016" +196462,Bose SoundSport Headphones,1,99.99,04/17/19 15:23,"598 West St, Boston, MA 02215" +196462,iPhone,1,700,04/17/19 15:23,"598 West St, Boston, MA 02215" +196463,Wired Headphones,1,11.99,04/03/19 18:43,"187 Willow St, Los Angeles, CA 90001" +196464,Apple Airpods Headphones,1,150,04/28/19 11:42,"387 13th St, Dallas, TX 75001" +196465,Flatscreen TV,1,300,04/04/19 09:26,"274 Chestnut St, New York City, NY 10001" +196466,AA Batteries (4-pack),1,3.84,04/29/19 16:28,"657 Lake St, Austin, TX 73301" +196467,Wired Headphones,1,11.99,04/26/19 14:02,"263 Highland St, San Francisco, CA 94016" +196468,Bose SoundSport Headphones,1,99.99,04/08/19 18:09,"5 Church St, Portland, OR 97035" +196469,AAA Batteries (4-pack),2,2.99,04/24/19 13:21,"545 7th St, San Francisco, CA 94016" +196470,AAA Batteries (4-pack),1,2.99,04/09/19 12:10,"139 Walnut St, Austin, TX 73301" +196471,Wired Headphones,1,11.99,04/08/19 20:25,"306 Hill St, Boston, MA 02215" +196472,AA Batteries (4-pack),2,3.84,04/03/19 11:31,"320 Maple St, Los Angeles, CA 90001" +196473,Flatscreen TV,1,300,04/22/19 10:45,"461 Adams St, Los Angeles, CA 90001" +196474,AAA Batteries (4-pack),1,2.99,04/22/19 21:23,"195 Elm St, Atlanta, GA 30301" +196475,Lightning Charging Cable,1,14.95,04/13/19 08:53,"810 12th St, Dallas, TX 75001" +196476,27in FHD Monitor,1,149.99,04/29/19 19:34,"616 10th St, Dallas, TX 75001" +196477,Lightning Charging Cable,1,14.95,04/02/19 18:01,"50 8th St, San Francisco, CA 94016" +196478,Google Phone,1,600,04/18/19 12:37,"711 Willow St, New York City, NY 10001" +196479,AA Batteries (4-pack),2,3.84,04/27/19 03:59,"381 Church St, Atlanta, GA 30301" +196480,Apple Airpods Headphones,1,150,04/27/19 10:11,"534 Forest St, Boston, MA 02215" +196481,Macbook Pro Laptop,1,1700,04/09/19 13:26,"77 Sunset St, New York City, NY 10001" +196482,27in FHD Monitor,1,149.99,04/02/19 21:13,"229 8th St, Boston, MA 02215" +196483,USB-C Charging Cable,2,11.95,04/18/19 20:33,"56 Adams St, Seattle, WA 98101" +196484,Lightning Charging Cable,1,14.95,04/10/19 00:19,"645 Lakeview St, Atlanta, GA 30301" +196485,34in Ultrawide Monitor,1,379.99,04/15/19 13:44,"694 South St, Atlanta, GA 30301" +196486,iPhone,1,700,04/26/19 08:36,"34 Jackson St, Los Angeles, CA 90001" +196487,27in FHD Monitor,1,149.99,04/27/19 23:45,"735 Main St, Seattle, WA 98101" +196488,AAA Batteries (4-pack),1,2.99,04/18/19 14:35,"326 Pine St, Los Angeles, CA 90001" +196489,AAA Batteries (4-pack),4,2.99,04/27/19 16:35,"36 Meadow St, Seattle, WA 98101" +196489,USB-C Charging Cable,1,11.95,04/27/19 16:35,"36 Meadow St, Seattle, WA 98101" +196490,AAA Batteries (4-pack),4,2.99,04/25/19 19:48,"963 8th St, Seattle, WA 98101" +196491,iPhone,1,700,04/10/19 12:32,"42 Jefferson St, Los Angeles, CA 90001" +196492,Wired Headphones,1,11.99,04/27/19 16:43,"591 Pine St, San Francisco, CA 94016" +196493,AAA Batteries (4-pack),1,2.99,04/26/19 11:09,"855 Washington St, Austin, TX 73301" +196494,Lightning Charging Cable,1,14.95,04/13/19 16:59,"910 Park St, San Francisco, CA 94016" +196495,Bose SoundSport Headphones,1,99.99,04/20/19 00:25,"452 Church St, San Francisco, CA 94016" +196496,Bose SoundSport Headphones,1,99.99,04/04/19 15:44,"811 9th St, Los Angeles, CA 90001" +196497,Macbook Pro Laptop,1,1700,04/08/19 04:44,"524 Spruce St, Los Angeles, CA 90001" +196498,Lightning Charging Cable,1,14.95,04/01/19 16:59,"624 Pine St, Los Angeles, CA 90001" +196499,Apple Airpods Headphones,1,150,04/09/19 17:29,"764 7th St, New York City, NY 10001" +196500,Apple Airpods Headphones,1,150,04/08/19 11:18,"843 Hill St, San Francisco, CA 94016" +196501,AAA Batteries (4-pack),1,2.99,04/16/19 18:16,"593 8th St, Dallas, TX 75001" +196502,AAA Batteries (4-pack),1,2.99,04/25/19 07:45,"222 West St, San Francisco, CA 94016" +196503,Apple Airpods Headphones,1,150,04/02/19 21:37,"189 West St, Los Angeles, CA 90001" +196504,AA Batteries (4-pack),1,3.84,04/17/19 09:24,"351 14th St, San Francisco, CA 94016" +196505,AAA Batteries (4-pack),2,2.99,04/16/19 21:39,"211 Lincoln St, Portland, OR 97035" +196506,Lightning Charging Cable,1,14.95,04/06/19 20:06,"475 12th St, New York City, NY 10001" +196507,Google Phone,1,600,04/23/19 06:11,"627 Adams St, Dallas, TX 75001" +196508,AAA Batteries (4-pack),1,2.99,04/05/19 20:50,"147 Johnson St, Boston, MA 02215" +196509,Lightning Charging Cable,1,14.95,04/22/19 01:25,"641 12th St, Los Angeles, CA 90001" +196510,20in Monitor,1,109.99,04/27/19 19:03,"492 Cedar St, New York City, NY 10001" +196511,USB-C Charging Cable,1,11.95,04/04/19 01:22,"150 Cedar St, New York City, NY 10001" +196512,Google Phone,1,600,04/25/19 01:10,"678 Main St, Los Angeles, CA 90001" +196513,AA Batteries (4-pack),1,3.84,04/15/19 11:23,"296 Jefferson St, New York City, NY 10001" +196514,20in Monitor,1,109.99,04/07/19 16:42,"571 13th St, Los Angeles, CA 90001" +196515,USB-C Charging Cable,1,11.95,04/29/19 13:07,"361 4th St, San Francisco, CA 94016" +196516,Flatscreen TV,1,300,04/01/19 15:16,"180 Cherry St, San Francisco, CA 94016" +196517,Lightning Charging Cable,1,14.95,04/26/19 13:49,"770 Elm St, Portland, OR 97035" +196518,Wired Headphones,3,11.99,04/28/19 13:07,"567 West St, Dallas, TX 75001" +196519,Apple Airpods Headphones,1,150,04/08/19 21:19,"233 1st St, Los Angeles, CA 90001" +196520,27in FHD Monitor,1,149.99,04/19/19 20:53,"962 1st St, New York City, NY 10001" +196521,USB-C Charging Cable,1,11.95,04/04/19 13:34,"96 Madison St, New York City, NY 10001" +196522,ThinkPad Laptop,1,999.99,04/28/19 22:46,"148 10th St, San Francisco, CA 94016" +196523,Vareebadd Phone,1,400,04/20/19 19:05,"83 Forest St, New York City, NY 10001" +196524,Bose SoundSport Headphones,1,99.99,04/25/19 10:40,"77 Chestnut St, San Francisco, CA 94016" +196525,AA Batteries (4-pack),1,3.84,04/15/19 20:30,"894 Meadow St, San Francisco, CA 94016" +196526,Bose SoundSport Headphones,1,99.99,04/19/19 13:50,"106 River St, Boston, MA 02215" +196527,Bose SoundSport Headphones,1,99.99,04/28/19 11:52,"152 2nd St, Los Angeles, CA 90001" +196528,AAA Batteries (4-pack),3,2.99,04/16/19 14:11,"356 Walnut St, San Francisco, CA 94016" +196529,AAA Batteries (4-pack),1,2.99,04/30/19 09:27,"836 Dogwood St, Portland, OR 97035" +196530,Lightning Charging Cable,1,14.95,04/12/19 21:14,"42 Cedar St, New York City, NY 10001" +196531,USB-C Charging Cable,1,11.95,04/04/19 13:01,"195 5th St, San Francisco, CA 94016" +196532,27in FHD Monitor,1,149.99,04/21/19 12:27,"502 Wilson St, Seattle, WA 98101" +196533,34in Ultrawide Monitor,1,379.99,04/25/19 13:23,"838 4th St, Boston, MA 02215" +196534,Apple Airpods Headphones,1,150,04/05/19 14:50,"558 Forest St, Los Angeles, CA 90001" +196535,USB-C Charging Cable,1,11.95,04/26/19 12:56,"54 2nd St, Portland, OR 97035" +196536,USB-C Charging Cable,1,11.95,04/10/19 16:36,"272 Lincoln St, Dallas, TX 75001" +196537,ThinkPad Laptop,1,999.99,04/20/19 10:24,"962 1st St, Atlanta, GA 30301" +196538,Lightning Charging Cable,1,14.95,04/17/19 13:58,"786 Elm St, Dallas, TX 75001" +196539,AA Batteries (4-pack),1,3.84,04/02/19 19:13,"850 Main St, Portland, ME 04101" +196540,Flatscreen TV,1,300,04/20/19 10:36,"623 5th St, San Francisco, CA 94016" +196541,AAA Batteries (4-pack),1,2.99,04/08/19 17:35,"586 Main St, Boston, MA 02215" +196542,AAA Batteries (4-pack),1,2.99,04/30/19 07:38,"855 7th St, Atlanta, GA 30301" +196543,Bose SoundSport Headphones,1,99.99,04/18/19 20:30,"726 2nd St, Atlanta, GA 30301" +196544,Wired Headphones,1,11.99,04/06/19 17:41,"62 West St, Seattle, WA 98101" +196545,USB-C Charging Cable,1,11.95,04/24/19 23:10,"688 West St, New York City, NY 10001" +196546,27in 4K Gaming Monitor,1,389.99,04/30/19 21:04,"324 Ridge St, Boston, MA 02215" +196547,AA Batteries (4-pack),1,3.84,04/28/19 16:18,"111 Meadow St, Dallas, TX 75001" +196548,Wired Headphones,1,11.99,04/20/19 20:06,"604 Cedar St, Austin, TX 73301" +196549,Wired Headphones,1,11.99,04/19/19 11:27,"242 10th St, San Francisco, CA 94016" +196550,AAA Batteries (4-pack),2,2.99,04/29/19 22:45,"945 Highland St, Austin, TX 73301" +196551,27in FHD Monitor,1,149.99,04/08/19 21:45,"685 2nd St, Austin, TX 73301" +196552,Wired Headphones,1,11.99,04/07/19 17:44,"872 Jackson St, San Francisco, CA 94016" +196553,34in Ultrawide Monitor,1,379.99,04/30/19 12:32,"493 Park St, Dallas, TX 75001" +196554,Google Phone,1,600,04/30/19 17:33,"423 9th St, San Francisco, CA 94016" +196555,AAA Batteries (4-pack),4,2.99,04/08/19 11:54,"864 Lake St, Dallas, TX 75001" +196555,Lightning Charging Cable,1,14.95,04/08/19 11:54,"864 Lake St, Dallas, TX 75001" +196556,AA Batteries (4-pack),1,3.84,04/05/19 09:01,"219 Chestnut St, Los Angeles, CA 90001" +196557,AA Batteries (4-pack),2,3.84,04/13/19 22:03,"244 9th St, San Francisco, CA 94016" +196558,34in Ultrawide Monitor,1,379.99,04/05/19 11:18,"871 Dogwood St, Atlanta, GA 30301" +196559,AA Batteries (4-pack),1,3.84,04/20/19 11:42,"155 4th St, New York City, NY 10001" +196560,AAA Batteries (4-pack),1,2.99,04/29/19 16:04,"479 Jackson St, New York City, NY 10001" +196561,ThinkPad Laptop,1,999.99,04/25/19 17:07,"686 Elm St, New York City, NY 10001" +196562,Bose SoundSport Headphones,1,99.99,04/09/19 10:43,"975 13th St, San Francisco, CA 94016" +196563,Apple Airpods Headphones,1,150,04/21/19 22:37,"436 1st St, Portland, OR 97035" +196564,Bose SoundSport Headphones,1,99.99,04/16/19 12:54,"797 Church St, San Francisco, CA 94016" +196565,USB-C Charging Cable,1,11.95,04/06/19 21:56,"965 North St, Dallas, TX 75001" +196566,Macbook Pro Laptop,1,1700,04/13/19 18:52,"940 Jackson St, New York City, NY 10001" +196567,Apple Airpods Headphones,1,150,04/23/19 16:09,"39 North St, Seattle, WA 98101" +196568,Apple Airpods Headphones,1,150,04/13/19 14:30,"919 Jefferson St, San Francisco, CA 94016" +196569,Lightning Charging Cable,1,14.95,04/03/19 18:30,"963 5th St, Dallas, TX 75001" +196570,USB-C Charging Cable,1,11.95,04/10/19 15:30,"682 Jefferson St, Boston, MA 02215" +196571,Wired Headphones,1,11.99,04/11/19 12:08,"352 Pine St, Atlanta, GA 30301" +196572,Wired Headphones,2,11.99,04/02/19 22:02,"467 Spruce St, Portland, OR 97035" +196573,Bose SoundSport Headphones,1,99.99,04/16/19 09:21,"557 12th St, San Francisco, CA 94016" +196574,Wired Headphones,1,11.99,04/09/19 21:31,"133 Maple St, Portland, OR 97035" +196575,Lightning Charging Cable,2,14.95,04/12/19 13:50,"326 Pine St, Boston, MA 02215" +196576,AAA Batteries (4-pack),1,2.99,04/02/19 17:35,"7 Lakeview St, Atlanta, GA 30301" +196577,AAA Batteries (4-pack),2,2.99,04/28/19 20:41,"305 2nd St, Dallas, TX 75001" +196578,AAA Batteries (4-pack),2,2.99,04/07/19 15:03,"787 Wilson St, Dallas, TX 75001" +196579,Google Phone,1,600,04/19/19 15:51,"909 Walnut St, New York City, NY 10001" +196580,AAA Batteries (4-pack),3,2.99,04/15/19 16:54,"167 Wilson St, New York City, NY 10001" +196581,Lightning Charging Cable,1,14.95,04/21/19 21:16,"123 Meadow St, San Francisco, CA 94016" +196582,AAA Batteries (4-pack),1,2.99,04/04/19 11:16,"653 Lake St, Los Angeles, CA 90001" +196583,USB-C Charging Cable,1,11.95,04/12/19 11:05,"899 Meadow St, Los Angeles, CA 90001" +196584,27in FHD Monitor,1,149.99,04/11/19 20:45,"560 Washington St, Los Angeles, CA 90001" +196585,AA Batteries (4-pack),4,3.84,04/04/19 20:33,"950 Ridge St, Seattle, WA 98101" +196586,Apple Airpods Headphones,1,150,04/29/19 07:24,"7 Forest St, San Francisco, CA 94016" +196587,iPhone,1,700,04/06/19 12:47,"862 5th St, Portland, OR 97035" +196587,Wired Headphones,1,11.99,04/06/19 12:47,"862 5th St, Portland, OR 97035" +196588,AA Batteries (4-pack),2,3.84,04/26/19 21:15,"382 North St, New York City, NY 10001" +196589,AAA Batteries (4-pack),2,2.99,04/03/19 16:43,"502 Sunset St, Seattle, WA 98101" +196590,USB-C Charging Cable,1,11.95,04/01/19 12:07,"192 13th St, San Francisco, CA 94016" +196591,Wired Headphones,1,11.99,04/12/19 17:40,"498 13th St, Seattle, WA 98101" +196592,Lightning Charging Cable,1,14.95,04/19/19 19:45,"32 West St, Boston, MA 02215" +196593,USB-C Charging Cable,1,11.95,04/13/19 20:08,"279 12th St, New York City, NY 10001" +196594,AA Batteries (4-pack),1,3.84,04/25/19 10:08,"500 Main St, Portland, OR 97035" +196595,iPhone,1,700,04/10/19 08:29,"523 8th St, Atlanta, GA 30301" +196595,Lightning Charging Cable,2,14.95,04/10/19 08:29,"523 8th St, Atlanta, GA 30301" +196596,USB-C Charging Cable,1,11.95,04/04/19 07:25,"827 Chestnut St, San Francisco, CA 94016" +196597,USB-C Charging Cable,1,11.95,04/06/19 17:36,"364 Walnut St, San Francisco, CA 94016" +196598,AAA Batteries (4-pack),4,2.99,04/28/19 21:22,"505 5th St, Boston, MA 02215" +196599,Bose SoundSport Headphones,1,99.99,04/23/19 16:02,"830 Spruce St, Seattle, WA 98101" +196600,AAA Batteries (4-pack),1,2.99,04/14/19 09:13,"821 2nd St, San Francisco, CA 94016" +196601,Lightning Charging Cable,1,14.95,04/25/19 11:38,"404 Jefferson St, San Francisco, CA 94016" +196602,USB-C Charging Cable,1,11.95,04/20/19 16:12,"128 11th St, Atlanta, GA 30301" +196603,AAA Batteries (4-pack),1,2.99,04/05/19 14:58,"582 9th St, New York City, NY 10001" +196604,USB-C Charging Cable,2,11.95,04/01/19 13:26,"728 Dogwood St, Seattle, WA 98101" +196605,AA Batteries (4-pack),1,3.84,04/25/19 20:29,"251 1st St, Los Angeles, CA 90001" +196606,Lightning Charging Cable,1,14.95,04/14/19 20:43,"133 Lincoln St, Dallas, TX 75001" +196607,USB-C Charging Cable,1,11.95,04/26/19 20:45,"110 Hickory St, San Francisco, CA 94016" +196608,AA Batteries (4-pack),1,3.84,04/07/19 13:22,"276 2nd St, San Francisco, CA 94016" +196609,iPhone,1,700,04/06/19 10:32,"887 North St, Seattle, WA 98101" +196610,Lightning Charging Cable,1,14.95,04/06/19 10:13,"927 Center St, San Francisco, CA 94016" +196611,Lightning Charging Cable,1,14.95,04/05/19 19:55,"355 South St, Portland, OR 97035" +196612,Lightning Charging Cable,1,14.95,04/12/19 17:22,"827 1st St, Boston, MA 02215" +196613,USB-C Charging Cable,1,11.95,04/13/19 08:11,"784 Sunset St, San Francisco, CA 94016" +,,,,, +196614,USB-C Charging Cable,1,11.95,04/28/19 09:57,"679 Pine St, Seattle, WA 98101" +196615,Bose SoundSport Headphones,1,99.99,04/13/19 01:28,"327 Meadow St, Austin, TX 73301" +196616,ThinkPad Laptop,1,999.99,04/29/19 11:01,"966 Main St, Boston, MA 02215" +196617,USB-C Charging Cable,2,11.95,04/21/19 17:23,"320 Pine St, Atlanta, GA 30301" +196618,AA Batteries (4-pack),1,3.84,04/02/19 16:11,"896 Sunset St, Boston, MA 02215" +196619,34in Ultrawide Monitor,1,379.99,04/12/19 07:25,"349 Park St, Los Angeles, CA 90001" +196620,Google Phone,1,600,04/29/19 16:58,"276 Spruce St, Boston, MA 02215" +196621,AA Batteries (4-pack),1,3.84,04/07/19 21:41,"215 Cedar St, Boston, MA 02215" +196622,Macbook Pro Laptop,1,1700,04/04/19 09:46,"749 8th St, San Francisco, CA 94016" +196623,AAA Batteries (4-pack),1,2.99,04/13/19 19:03,"830 Wilson St, San Francisco, CA 94016" +196624,USB-C Charging Cable,1,11.95,04/08/19 16:48,"130 Sunset St, Los Angeles, CA 90001" +196624,USB-C Charging Cable,1,11.95,04/08/19 16:48,"130 Sunset St, Los Angeles, CA 90001" +196625,27in FHD Monitor,1,149.99,04/02/19 10:18,"670 6th St, Los Angeles, CA 90001" +196626,Google Phone,1,600,04/21/19 10:02,"810 13th St, Austin, TX 73301" +196626,USB-C Charging Cable,1,11.95,04/21/19 10:02,"810 13th St, Austin, TX 73301" +196627,Google Phone,1,600,04/06/19 12:35,"616 Spruce St, Los Angeles, CA 90001" +196628,Apple Airpods Headphones,1,150,04/29/19 21:13,"343 11th St, Atlanta, GA 30301" +196629,27in 4K Gaming Monitor,1,389.99,04/27/19 09:51,"104 Highland St, Boston, MA 02215" +196630,USB-C Charging Cable,2,11.95,04/06/19 11:47,"936 Cherry St, Seattle, WA 98101" +196631,Macbook Pro Laptop,1,1700,04/29/19 14:22,"848 Wilson St, Boston, MA 02215" +196632,Apple Airpods Headphones,1,150,04/18/19 13:02,"652 10th St, Portland, OR 97035" +196633,USB-C Charging Cable,1,11.95,04/19/19 17:40,"416 River St, Austin, TX 73301" +196634,AAA Batteries (4-pack),1,2.99,04/25/19 13:35,"178 7th St, New York City, NY 10001" +196635,Lightning Charging Cable,1,14.95,04/11/19 07:25,"712 Hickory St, San Francisco, CA 94016" +196636,20in Monitor,1,109.99,04/07/19 22:54,"420 Lincoln St, Los Angeles, CA 90001" +196637,iPhone,1,700,04/16/19 19:12,"252 Park St, Portland, OR 97035" +196638,Macbook Pro Laptop,1,1700,04/14/19 13:16,"47 Johnson St, San Francisco, CA 94016" +196639,USB-C Charging Cable,1,11.95,04/12/19 23:40,"184 7th St, Atlanta, GA 30301" +196640,Wired Headphones,1,11.99,04/12/19 12:49,"449 North St, Seattle, WA 98101" +196641,AA Batteries (4-pack),2,3.84,04/26/19 12:42,"839 Lakeview St, Seattle, WA 98101" +196642,AAA Batteries (4-pack),3,2.99,04/04/19 18:09,"960 Willow St, Los Angeles, CA 90001" +196643,AA Batteries (4-pack),2,3.84,04/17/19 13:17,"652 12th St, Boston, MA 02215" +196644,ThinkPad Laptop,1,999.99,04/22/19 16:37,"816 West St, San Francisco, CA 94016" +196645,USB-C Charging Cable,1,11.95,04/26/19 17:13,"432 Wilson St, Portland, OR 97035" +196646,Flatscreen TV,1,300,04/09/19 10:46,"295 10th St, Dallas, TX 75001" +196647,27in 4K Gaming Monitor,1,389.99,04/19/19 17:11,"6 Jefferson St, Seattle, WA 98101" +196648,USB-C Charging Cable,1,11.95,04/29/19 18:24,"923 Cherry St, Dallas, TX 75001" +196649,USB-C Charging Cable,1,11.95,04/29/19 15:10,"169 Spruce St, Austin, TX 73301" +196649,Wired Headphones,1,11.99,04/29/19 15:10,"169 Spruce St, Austin, TX 73301" +196650,Bose SoundSport Headphones,1,99.99,04/28/19 08:41,"609 Washington St, Boston, MA 02215" +196651,Wired Headphones,1,11.99,04/04/19 11:19,"1 Chestnut St, Boston, MA 02215" +196652,USB-C Charging Cable,1,11.95,04/24/19 15:44,"679 Ridge St, Boston, MA 02215" +196653,AAA Batteries (4-pack),1,2.99,04/23/19 16:48,"995 Hill St, San Francisco, CA 94016" +196654,LG Washing Machine,1,600.0,04/02/19 21:59,"100 5th St, New York City, NY 10001" +196655,AAA Batteries (4-pack),1,2.99,04/28/19 23:28,"574 9th St, Atlanta, GA 30301" +196656,USB-C Charging Cable,1,11.95,04/21/19 13:02,"457 Hickory St, Atlanta, GA 30301" +196657,27in FHD Monitor,1,149.99,04/03/19 16:02,"545 Church St, New York City, NY 10001" +196658,34in Ultrawide Monitor,1,379.99,04/17/19 16:01,"128 4th St, Dallas, TX 75001" +196659,Lightning Charging Cable,1,14.95,04/05/19 20:24,"361 Main St, New York City, NY 10001" +196660,Lightning Charging Cable,1,14.95,04/24/19 12:36,"204 Lincoln St, Los Angeles, CA 90001" +196661,AAA Batteries (4-pack),2,2.99,04/18/19 13:23,"21 Adams St, San Francisco, CA 94016" +196662,Bose SoundSport Headphones,1,99.99,04/04/19 03:34,"420 Lincoln St, Dallas, TX 75001" +196663,USB-C Charging Cable,1,11.95,04/08/19 11:09,"431 Pine St, Dallas, TX 75001" +196664,USB-C Charging Cable,1,11.95,04/01/19 16:20,"469 13th St, New York City, NY 10001" +196665,Lightning Charging Cable,1,14.95,04/06/19 11:06,"697 Meadow St, San Francisco, CA 94016" +196666,iPhone,1,700,04/12/19 13:56,"743 Lakeview St, Boston, MA 02215" +196667,34in Ultrawide Monitor,1,379.99,04/26/19 22:41,"539 14th St, San Francisco, CA 94016" +196668,20in Monitor,1,109.99,04/20/19 12:15,"524 Walnut St, New York City, NY 10001" +196669,Apple Airpods Headphones,1,150,04/11/19 12:43,"168 Dogwood St, Atlanta, GA 30301" +196670,Google Phone,1,600,04/27/19 00:49,"501 Forest St, Los Angeles, CA 90001" +196671,USB-C Charging Cable,1,11.95,04/19/19 23:18,"36 Highland St, Los Angeles, CA 90001" +196672,Wired Headphones,1,11.99,04/03/19 17:50,"712 Lincoln St, San Francisco, CA 94016" +196672,AAA Batteries (4-pack),2,2.99,04/03/19 17:50,"712 Lincoln St, San Francisco, CA 94016" +196673,Bose SoundSport Headphones,1,99.99,04/15/19 21:54,"954 Main St, Seattle, WA 98101" +196674,AAA Batteries (4-pack),1,2.99,04/13/19 16:49,"648 7th St, Dallas, TX 75001" +196674,AA Batteries (4-pack),2,3.84,04/13/19 16:49,"648 7th St, Dallas, TX 75001" +196675,Lightning Charging Cable,1,14.95,04/19/19 22:33,"497 4th St, New York City, NY 10001" +196676,Wired Headphones,1,11.99,04/05/19 16:14,"602 Cherry St, Los Angeles, CA 90001" +196676,27in 4K Gaming Monitor,1,389.99,04/05/19 16:14,"602 Cherry St, Los Angeles, CA 90001" +196677,Wired Headphones,3,11.99,04/02/19 07:22,"716 Main St, Boston, MA 02215" +196678,USB-C Charging Cable,1,11.95,04/24/19 18:07,"418 Spruce St, Seattle, WA 98101" +196679,AA Batteries (4-pack),1,3.84,04/28/19 16:30,"274 6th St, Los Angeles, CA 90001" +196680,Apple Airpods Headphones,1,150,04/15/19 00:11,"647 Elm St, Los Angeles, CA 90001" +196681,LG Washing Machine,1,600.0,04/10/19 12:19,"27 River St, San Francisco, CA 94016" +196682,Lightning Charging Cable,1,14.95,04/09/19 13:09,"727 Sunset St, Boston, MA 02215" +196683,AAA Batteries (4-pack),1,2.99,04/19/19 20:25,"337 6th St, San Francisco, CA 94016" +196684,27in 4K Gaming Monitor,1,389.99,04/03/19 12:57,"455 10th St, Los Angeles, CA 90001" +196685,AAA Batteries (4-pack),3,2.99,04/28/19 11:01,"103 Sunset St, Boston, MA 02215" +196686,AA Batteries (4-pack),1,3.84,04/03/19 19:55,"285 Sunset St, Dallas, TX 75001" +196687,20in Monitor,1,109.99,04/27/19 11:26,"971 Lakeview St, Los Angeles, CA 90001" +196688,AA Batteries (4-pack),1,3.84,04/22/19 13:19,"176 North St, Atlanta, GA 30301" +196689,AA Batteries (4-pack),1,3.84,04/01/19 11:01,"636 Church St, Los Angeles, CA 90001" +196690,USB-C Charging Cable,1,11.95,04/14/19 11:44,"408 Johnson St, Los Angeles, CA 90001" +196691,34in Ultrawide Monitor,1,379.99,04/13/19 13:04,"543 Meadow St, Portland, ME 04101" +196692,AAA Batteries (4-pack),1,2.99,04/03/19 17:53,"954 Cherry St, Portland, OR 97035" +196693,Apple Airpods Headphones,1,150,04/11/19 10:28,"177 Park St, San Francisco, CA 94016" +196694,iPhone,1,700,04/29/19 21:22,"75 6th St, Portland, OR 97035" +196695,Google Phone,1,600,04/11/19 17:45,"95 10th St, San Francisco, CA 94016" +196696,20in Monitor,1,109.99,04/03/19 12:13,"267 Hickory St, San Francisco, CA 94016" +196697,iPhone,1,700,04/09/19 18:51,"598 6th St, San Francisco, CA 94016" +196698,Apple Airpods Headphones,1,150,04/22/19 14:28,"285 Center St, Boston, MA 02215" +196699,Lightning Charging Cable,2,14.95,04/06/19 14:04,"156 Pine St, Los Angeles, CA 90001" +196700,AA Batteries (4-pack),1,3.84,04/19/19 22:10,"417 North St, Portland, OR 97035" +196701,Google Phone,1,600,04/18/19 11:11,"440 Spruce St, Boston, MA 02215" +196702,AA Batteries (4-pack),4,3.84,04/07/19 15:00,"740 11th St, Los Angeles, CA 90001" +196703,AA Batteries (4-pack),2,3.84,04/09/19 09:11,"807 Spruce St, Boston, MA 02215" +196704,AA Batteries (4-pack),1,3.84,04/12/19 15:49,"734 Center St, San Francisco, CA 94016" +196705,AA Batteries (4-pack),2,3.84,04/15/19 00:07,"662 Lincoln St, San Francisco, CA 94016" +196706,AA Batteries (4-pack),1,3.84,04/01/19 14:14,"322 Highland St, Seattle, WA 98101" +196707,AA Batteries (4-pack),1,3.84,04/05/19 14:43,"469 North St, Los Angeles, CA 90001" +196708,27in FHD Monitor,1,149.99,04/16/19 15:28,"560 12th St, Los Angeles, CA 90001" +196709,AAA Batteries (4-pack),1,2.99,04/13/19 12:00,"858 Park St, New York City, NY 10001" +196710,Apple Airpods Headphones,1,150,04/13/19 20:07,"932 Cedar St, New York City, NY 10001" +196711,27in FHD Monitor,1,149.99,04/15/19 20:27,"928 Dogwood St, Atlanta, GA 30301" +196712,Apple Airpods Headphones,1,150,04/29/19 06:01,"499 Johnson St, New York City, NY 10001" +196713,Wired Headphones,1,11.99,04/26/19 10:54,"96 Center St, Los Angeles, CA 90001" +196714,Lightning Charging Cable,1,14.95,04/21/19 09:08,"111 Washington St, San Francisco, CA 94016" +196715,AA Batteries (4-pack),1,3.84,04/05/19 18:44,"971 10th St, Dallas, TX 75001" +196716,Lightning Charging Cable,1,14.95,04/18/19 22:37,"949 2nd St, San Francisco, CA 94016" +196717,ThinkPad Laptop,1,999.99,04/11/19 11:39,"623 Dogwood St, San Francisco, CA 94016" +196718,Macbook Pro Laptop,1,1700,04/29/19 23:17,"407 10th St, Seattle, WA 98101" +196719,Macbook Pro Laptop,1,1700,04/30/19 10:59,"847 Ridge St, Boston, MA 02215" +196720,USB-C Charging Cable,1,11.95,04/05/19 19:33,"309 8th St, Seattle, WA 98101" +196721,27in FHD Monitor,1,149.99,04/08/19 22:26,"472 West St, Austin, TX 73301" +196722,27in FHD Monitor,1,149.99,04/08/19 13:13,"901 South St, New York City, NY 10001" +196723,Flatscreen TV,1,300,04/21/19 18:18,"360 Madison St, Austin, TX 73301" +196724,Lightning Charging Cable,1,14.95,04/30/19 21:33,"643 Adams St, New York City, NY 10001" +196725,Lightning Charging Cable,1,14.95,04/18/19 14:15,"433 Cherry St, Seattle, WA 98101" +196726,Wired Headphones,1,11.99,04/02/19 15:55,"566 Dogwood St, Boston, MA 02215" +196727,Google Phone,1,600,04/23/19 22:18,"763 Center St, San Francisco, CA 94016" +196728,AA Batteries (4-pack),1,3.84,04/17/19 16:11,"419 Chestnut St, Seattle, WA 98101" +196729,AA Batteries (4-pack),2,3.84,04/18/19 13:25,"605 Highland St, San Francisco, CA 94016" +196730,USB-C Charging Cable,1,11.95,04/17/19 23:32,"235 Ridge St, Seattle, WA 98101" +196731,AA Batteries (4-pack),1,3.84,04/02/19 00:13,"146 Washington St, Seattle, WA 98101" +196732,USB-C Charging Cable,1,11.95,04/20/19 11:45,"449 2nd St, Boston, MA 02215" +196733,27in FHD Monitor,1,149.99,04/20/19 09:11,"745 13th St, Atlanta, GA 30301" +196734,Google Phone,1,600,04/07/19 09:09,"990 10th St, Boston, MA 02215" +196734,USB-C Charging Cable,2,11.95,04/07/19 09:09,"990 10th St, Boston, MA 02215" +196735,Wired Headphones,1,11.99,04/17/19 12:09,"509 Madison St, Dallas, TX 75001" +196736,Lightning Charging Cable,1,14.95,04/15/19 21:57,"977 Wilson St, Dallas, TX 75001" +196737,Bose SoundSport Headphones,1,99.99,04/02/19 22:41,"29 Cherry St, Boston, MA 02215" +196738,AA Batteries (4-pack),2,3.84,04/07/19 20:02,"739 Willow St, San Francisco, CA 94016" +196739,27in FHD Monitor,1,149.99,04/01/19 16:05,"739 13th St, Boston, MA 02215" +196740,iPhone,1,700,04/13/19 08:03,"258 4th St, New York City, NY 10001" +196740,Lightning Charging Cable,1,14.95,04/13/19 08:03,"258 4th St, New York City, NY 10001" +196741,AA Batteries (4-pack),1,3.84,04/02/19 02:01,"507 Chestnut St, Los Angeles, CA 90001" +196742,AAA Batteries (4-pack),2,2.99,04/11/19 11:42,"400 River St, Austin, TX 73301" +196743,iPhone,1,700,04/16/19 18:04,"608 Walnut St, Atlanta, GA 30301" +196744,Lightning Charging Cable,1,14.95,04/03/19 20:59,"604 Elm St, Boston, MA 02215" +196745,Apple Airpods Headphones,1,150,04/06/19 22:23,"871 Spruce St, Dallas, TX 75001" +196746,27in FHD Monitor,1,149.99,04/30/19 23:36,"492 14th St, Dallas, TX 75001" +196747,AAA Batteries (4-pack),1,2.99,04/09/19 19:13,"524 Jackson St, Seattle, WA 98101" +196748,27in FHD Monitor,1,149.99,04/16/19 16:39,"377 Hickory St, Portland, ME 04101" +196748,27in FHD Monitor,1,149.99,04/16/19 16:39,"377 Hickory St, Portland, ME 04101" +196749,AAA Batteries (4-pack),1,2.99,04/22/19 16:26,"498 Pine St, Atlanta, GA 30301" +196750,Wired Headphones,1,11.99,04/11/19 20:53,"710 Wilson St, Boston, MA 02215" +196751,27in FHD Monitor,1,149.99,04/07/19 10:53,"11 Ridge St, Dallas, TX 75001" +196751,Apple Airpods Headphones,1,150,04/07/19 10:53,"11 Ridge St, Dallas, TX 75001" +196752,Bose SoundSport Headphones,1,99.99,04/08/19 21:29,"568 13th St, San Francisco, CA 94016" +196753,Bose SoundSport Headphones,1,99.99,04/14/19 21:24,"417 West St, New York City, NY 10001" +196754,USB-C Charging Cable,1,11.95,04/04/19 16:16,"100 Dogwood St, Seattle, WA 98101" +196755,27in 4K Gaming Monitor,1,389.99,04/14/19 19:03,"511 Forest St, Dallas, TX 75001" +196756,Apple Airpods Headphones,1,150,04/25/19 11:20,"506 8th St, New York City, NY 10001" +196757,Bose SoundSport Headphones,1,99.99,04/24/19 19:01,"899 Madison St, New York City, NY 10001" +196758,Vareebadd Phone,1,400,04/19/19 23:34,"967 14th St, San Francisco, CA 94016" +196759,Wired Headphones,1,11.99,04/19/19 15:40,"87 Cedar St, Atlanta, GA 30301" +196760,AAA Batteries (4-pack),1,2.99,04/14/19 20:40,"754 Washington St, Los Angeles, CA 90001" +196761,AAA Batteries (4-pack),4,2.99,04/19/19 21:20,"872 12th St, Boston, MA 02215" +196762,Flatscreen TV,1,300,04/07/19 16:42,"504 Madison St, New York City, NY 10001" +196763,27in 4K Gaming Monitor,1,389.99,04/06/19 00:37,"231 12th St, Portland, OR 97035" +196764,AAA Batteries (4-pack),1,2.99,04/13/19 21:19,"986 West St, Atlanta, GA 30301" +196765,iPhone,1,700,04/07/19 09:08,"911 12th St, San Francisco, CA 94016" +196766,USB-C Charging Cable,1,11.95,04/24/19 13:03,"750 Johnson St, San Francisco, CA 94016" +196767,27in 4K Gaming Monitor,1,389.99,04/22/19 12:20,"702 Hickory St, Boston, MA 02215" +196768,USB-C Charging Cable,1,11.95,04/25/19 23:12,"685 Highland St, San Francisco, CA 94016" +196769,iPhone,1,700,04/12/19 10:37,"822 8th St, San Francisco, CA 94016" +196769,Wired Headphones,1,11.99,04/12/19 10:37,"822 8th St, San Francisco, CA 94016" +196770,AAA Batteries (4-pack),1,2.99,04/13/19 22:12,"540 13th St, Los Angeles, CA 90001" +196771,Macbook Pro Laptop,1,1700,04/07/19 07:59,"941 Park St, San Francisco, CA 94016" +196772,Bose SoundSport Headphones,1,99.99,04/28/19 19:25,"66 Ridge St, Dallas, TX 75001" +196773,Lightning Charging Cable,1,14.95,04/27/19 11:53,"270 4th St, Atlanta, GA 30301" +196774,AA Batteries (4-pack),1,3.84,04/25/19 06:25,"113 2nd St, Atlanta, GA 30301" +196775,Lightning Charging Cable,1,14.95,04/28/19 21:05,"963 Wilson St, San Francisco, CA 94016" +196776,Apple Airpods Headphones,1,150,04/08/19 21:44,"886 Dogwood St, Dallas, TX 75001" +196777,USB-C Charging Cable,1,11.95,04/24/19 20:39,"570 Sunset St, New York City, NY 10001" +196778,27in FHD Monitor,1,149.99,04/16/19 02:30,"432 Meadow St, Atlanta, GA 30301" +196779,AA Batteries (4-pack),1,3.84,04/05/19 22:08,"990 Jackson St, Seattle, WA 98101" +196780,Flatscreen TV,1,300,04/13/19 00:05,"708 Hill St, New York City, NY 10001" +196781,ThinkPad Laptop,1,999.99,04/06/19 13:07,"171 8th St, San Francisco, CA 94016" +196782,AA Batteries (4-pack),1,3.84,04/04/19 14:48,"555 Maple St, Dallas, TX 75001" +196783,AA Batteries (4-pack),2,3.84,04/15/19 19:26,"178 Lincoln St, Seattle, WA 98101" +196784,Lightning Charging Cable,1,14.95,04/09/19 14:45,"704 Highland St, Seattle, WA 98101" +196785,Lightning Charging Cable,1,14.95,04/15/19 19:24,"375 Willow St, Boston, MA 02215" +196786,Wired Headphones,1,11.99,04/12/19 15:48,"1 5th St, Seattle, WA 98101" +196787,27in FHD Monitor,1,149.99,04/25/19 10:29,"380 Chestnut St, Seattle, WA 98101" +196788,AAA Batteries (4-pack),3,2.99,04/17/19 22:09,"423 Park St, Portland, ME 04101" +196789,iPhone,1,700,04/01/19 16:24,"692 Maple St, Austin, TX 73301" +196790,Google Phone,1,600,04/14/19 21:33,"228 River St, Seattle, WA 98101" +196790,USB-C Charging Cable,1,11.95,04/14/19 21:33,"228 River St, Seattle, WA 98101" +196791,USB-C Charging Cable,1,11.95,04/25/19 20:56,"994 Meadow St, Seattle, WA 98101" +196792,USB-C Charging Cable,1,11.95,04/21/19 00:23,"448 Wilson St, San Francisco, CA 94016" +196793,Wired Headphones,1,11.99,04/24/19 10:21,"712 Adams St, Los Angeles, CA 90001" +196794,Apple Airpods Headphones,1,150,04/19/19 19:44,"322 Lake St, Los Angeles, CA 90001" +196795,Vareebadd Phone,1,400,04/20/19 08:15,"298 Park St, San Francisco, CA 94016" +196795,Wired Headphones,1,11.99,04/20/19 08:15,"298 Park St, San Francisco, CA 94016" +196796,Apple Airpods Headphones,1,150,04/03/19 06:52,"424 5th St, San Francisco, CA 94016" +196797,AA Batteries (4-pack),3,3.84,04/12/19 08:42,"121 Willow St, Los Angeles, CA 90001" +196798,Bose SoundSport Headphones,1,99.99,04/05/19 17:51,"336 River St, Boston, MA 02215" +,,,,, +196799,27in 4K Gaming Monitor,1,389.99,04/12/19 19:20,"131 9th St, Boston, MA 02215" +196800,34in Ultrawide Monitor,1,379.99,04/19/19 20:05,"659 Church St, Austin, TX 73301" +196801,AAA Batteries (4-pack),2,2.99,04/11/19 14:57,"5 Jefferson St, New York City, NY 10001" +196802,Lightning Charging Cable,1,14.95,04/26/19 17:08,"845 Highland St, San Francisco, CA 94016" +196803,AAA Batteries (4-pack),3,2.99,04/06/19 20:00,"241 Jackson St, Boston, MA 02215" +196804,Wired Headphones,1,11.99,04/15/19 17:08,"566 Wilson St, Seattle, WA 98101" +196805,AA Batteries (4-pack),1,3.84,04/02/19 00:14,"786 Sunset St, San Francisco, CA 94016" +196806,ThinkPad Laptop,1,999.99,04/24/19 09:18,"633 North St, San Francisco, CA 94016" +196807,Apple Airpods Headphones,1,150,04/13/19 23:36,"9 Elm St, San Francisco, CA 94016" +196808,AAA Batteries (4-pack),1,2.99,04/07/19 01:42,"602 10th St, San Francisco, CA 94016" +196809,Lightning Charging Cable,1,14.95,04/12/19 11:36,"375 7th St, Los Angeles, CA 90001" +196810,27in 4K Gaming Monitor,1,389.99,04/20/19 18:34,"413 Dogwood St, Austin, TX 73301" +196811,34in Ultrawide Monitor,1,379.99,04/19/19 09:41,"697 5th St, Los Angeles, CA 90001" +196812,USB-C Charging Cable,2,11.95,04/27/19 08:05,"854 9th St, New York City, NY 10001" +196813,Lightning Charging Cable,1,14.95,04/02/19 22:45,"205 7th St, Atlanta, GA 30301" +196814,Google Phone,1,600,04/24/19 08:21,"909 2nd St, Boston, MA 02215" +196815,Wired Headphones,1,11.99,04/06/19 12:56,"912 Jackson St, San Francisco, CA 94016" +196816,Apple Airpods Headphones,1,150,04/28/19 22:09,"656 River St, Dallas, TX 75001" +196817,iPhone,1,700,04/06/19 12:12,"53 Lincoln St, New York City, NY 10001" +196817,Lightning Charging Cable,1,14.95,04/06/19 12:12,"53 Lincoln St, New York City, NY 10001" +196818,USB-C Charging Cable,1,11.95,04/25/19 14:42,"137 Washington St, Los Angeles, CA 90001" +196819,Lightning Charging Cable,1,14.95,04/17/19 09:48,"47 River St, San Francisco, CA 94016" +196820,AA Batteries (4-pack),1,3.84,04/12/19 21:13,"506 Jackson St, San Francisco, CA 94016" +196821,AA Batteries (4-pack),2,3.84,04/24/19 17:16,"576 Hickory St, Los Angeles, CA 90001" +196822,iPhone,1,700,04/30/19 01:26,"479 Maple St, Portland, OR 97035" +196823,Google Phone,1,600,04/30/19 11:39,"284 South St, Seattle, WA 98101" +196824,Bose SoundSport Headphones,1,99.99,04/03/19 14:18,"186 Maple St, Los Angeles, CA 90001" +196825,AA Batteries (4-pack),1,3.84,04/15/19 23:28,"300 13th St, San Francisco, CA 94016" +196826,iPhone,1,700,04/07/19 15:12,"140 Hickory St, New York City, NY 10001" +196827,USB-C Charging Cable,2,11.95,04/24/19 09:59,"131 Ridge St, San Francisco, CA 94016" +196828,Macbook Pro Laptop,1,1700,04/15/19 15:50,"80 Hill St, San Francisco, CA 94016" +196829,34in Ultrawide Monitor,1,379.99,04/23/19 13:58,"57 Hickory St, Seattle, WA 98101" +196830,AAA Batteries (4-pack),1,2.99,04/03/19 12:54,"622 Wilson St, New York City, NY 10001" +196831,Wired Headphones,1,11.99,04/20/19 10:01,"778 8th St, Los Angeles, CA 90001" +196832,AA Batteries (4-pack),2,3.84,04/19/19 14:09,"354 Maple St, Los Angeles, CA 90001" +196833,AAA Batteries (4-pack),5,2.99,04/10/19 17:54,"731 7th St, Seattle, WA 98101" +196834,Wired Headphones,1,11.99,04/27/19 19:48,"748 10th St, San Francisco, CA 94016" +196834,Bose SoundSport Headphones,1,99.99,04/27/19 19:48,"748 10th St, San Francisco, CA 94016" +196835,Apple Airpods Headphones,1,150,04/15/19 12:30,"589 13th St, Dallas, TX 75001" +196836,iPhone,1,700,04/19/19 23:04,"318 10th St, San Francisco, CA 94016" +196837,USB-C Charging Cable,1,11.95,04/13/19 23:25,"218 11th St, San Francisco, CA 94016" +196838,Lightning Charging Cable,1,14.95,04/30/19 17:45,"408 Washington St, Portland, OR 97035" +196839,Flatscreen TV,1,300,04/29/19 10:05,"40 5th St, Portland, OR 97035" +196840,AAA Batteries (4-pack),1,2.99,04/23/19 18:22,"465 7th St, Los Angeles, CA 90001" +196841,Bose SoundSport Headphones,1,99.99,04/10/19 08:52,"579 7th St, San Francisco, CA 94016" +196842,27in FHD Monitor,1,149.99,04/21/19 12:19,"450 Madison St, Atlanta, GA 30301" +196843,Vareebadd Phone,1,400,04/11/19 19:08,"793 Lincoln St, Austin, TX 73301" +196843,USB-C Charging Cable,1,11.95,04/11/19 19:08,"793 Lincoln St, Austin, TX 73301" +196844,27in 4K Gaming Monitor,1,389.99,04/05/19 23:44,"963 Wilson St, Los Angeles, CA 90001" +196845,Wired Headphones,1,11.99,04/03/19 19:14,"324 North St, Los Angeles, CA 90001" +196846,AA Batteries (4-pack),4,3.84,04/05/19 23:25,"551 Park St, Portland, OR 97035" +196847,AAA Batteries (4-pack),1,2.99,04/25/19 09:22,"956 Pine St, Los Angeles, CA 90001" +196848,USB-C Charging Cable,1,11.95,04/25/19 20:28,"561 Highland St, New York City, NY 10001" +196849,iPhone,1,700,04/07/19 21:42,"408 Willow St, San Francisco, CA 94016" +196849,Apple Airpods Headphones,1,150,04/07/19 21:42,"408 Willow St, San Francisco, CA 94016" +196849,Wired Headphones,1,11.99,04/07/19 21:42,"408 Willow St, San Francisco, CA 94016" +196850,USB-C Charging Cable,1,11.95,04/28/19 11:25,"361 Hill St, Dallas, TX 75001" +196851,USB-C Charging Cable,1,11.95,04/17/19 22:43,"222 Jackson St, Boston, MA 02215" +196852,Lightning Charging Cable,2,14.95,04/11/19 15:51,"729 West St, New York City, NY 10001" +196853,Bose SoundSport Headphones,1,99.99,04/17/19 14:41,"425 Madison St, San Francisco, CA 94016" +196854,Apple Airpods Headphones,1,150,04/29/19 17:24,"950 Lake St, Austin, TX 73301" +196855,34in Ultrawide Monitor,1,379.99,04/01/19 19:27,"439 Hickory St, Boston, MA 02215" +196856,USB-C Charging Cable,1,11.95,04/25/19 23:06,"510 10th St, Boston, MA 02215" +196857,Apple Airpods Headphones,1,150,04/24/19 22:07,"26 Wilson St, New York City, NY 10001" +196858,Flatscreen TV,1,300,04/12/19 10:25,"90 Ridge St, Los Angeles, CA 90001" +196859,Apple Airpods Headphones,1,150,04/13/19 21:50,"802 13th St, Boston, MA 02215" +196860,Wired Headphones,1,11.99,04/20/19 17:39,"294 Cedar St, Atlanta, GA 30301" +196861,USB-C Charging Cable,1,11.95,04/30/19 14:23,"995 Maple St, Seattle, WA 98101" +196862,Bose SoundSport Headphones,1,99.99,04/17/19 14:32,"743 Hickory St, New York City, NY 10001" +196863,34in Ultrawide Monitor,1,379.99,04/23/19 11:34,"529 Park St, Dallas, TX 75001" +196864,Lightning Charging Cable,1,14.95,04/28/19 07:05,"884 5th St, New York City, NY 10001" +196865,ThinkPad Laptop,1,999.99,04/08/19 17:15,"172 Johnson St, Austin, TX 73301" +196866,USB-C Charging Cable,1,11.95,04/12/19 17:00,"920 Ridge St, Boston, MA 02215" +196867,Apple Airpods Headphones,1,150,04/28/19 13:25,"642 2nd St, New York City, NY 10001" +196868,27in 4K Gaming Monitor,1,389.99,04/20/19 00:30,"572 12th St, Boston, MA 02215" +196869,Bose SoundSport Headphones,1,99.99,04/18/19 10:26,"375 Jefferson St, New York City, NY 10001" +196870,USB-C Charging Cable,1,11.95,04/06/19 09:51,"596 Elm St, New York City, NY 10001" +196871,Lightning Charging Cable,1,14.95,04/17/19 16:20,"198 5th St, Austin, TX 73301" +196872,Macbook Pro Laptop,1,1700,04/04/19 15:12,"908 Lincoln St, Seattle, WA 98101" +196873,27in FHD Monitor,1,149.99,04/03/19 17:41,"709 Johnson St, Portland, OR 97035" +196874,USB-C Charging Cable,1,11.95,04/07/19 11:43,"823 8th St, Seattle, WA 98101" +196875,AAA Batteries (4-pack),2,2.99,04/16/19 09:15,"731 7th St, Los Angeles, CA 90001" +196876,Apple Airpods Headphones,1,150,04/05/19 19:22,"106 6th St, Portland, OR 97035" +196877,Vareebadd Phone,1,400,04/03/19 17:58,"665 10th St, Los Angeles, CA 90001" +196878,AA Batteries (4-pack),1,3.84,04/19/19 20:38,"779 2nd St, Austin, TX 73301" +196879,Vareebadd Phone,1,400,04/13/19 17:22,"321 12th St, Seattle, WA 98101" +,,,,, +196880,Wired Headphones,1,11.99,04/09/19 19:38,"210 Jefferson St, New York City, NY 10001" +196881,USB-C Charging Cable,1,11.95,04/13/19 20:31,"300 Lincoln St, Boston, MA 02215" +196882,Bose SoundSport Headphones,1,99.99,04/01/19 09:13,"602 Lakeview St, San Francisco, CA 94016" +196883,27in FHD Monitor,1,149.99,04/13/19 18:41,"471 8th St, San Francisco, CA 94016" +196884,Bose SoundSport Headphones,1,99.99,04/28/19 19:34,"87 Church St, San Francisco, CA 94016" +196885,Macbook Pro Laptop,1,1700,04/21/19 17:08,"467 Forest St, Atlanta, GA 30301" +196886,20in Monitor,1,109.99,04/03/19 14:41,"234 4th St, Dallas, TX 75001" +196887,27in 4K Gaming Monitor,1,389.99,04/18/19 11:20,"390 7th St, Portland, OR 97035" +196888,AA Batteries (4-pack),1,3.84,04/18/19 15:08,"170 Dogwood St, Atlanta, GA 30301" +196889,iPhone,1,700,04/11/19 22:54,"24 Park St, San Francisco, CA 94016" +196889,Lightning Charging Cable,1,14.95,04/11/19 22:54,"24 Park St, San Francisco, CA 94016" +196890,Lightning Charging Cable,1,14.95,04/02/19 19:49,"110 Center St, Seattle, WA 98101" +196891,Lightning Charging Cable,1,14.95,04/11/19 18:29,"933 11th St, San Francisco, CA 94016" +196892,Lightning Charging Cable,1,14.95,04/28/19 14:45,"9 8th St, San Francisco, CA 94016" +196893,USB-C Charging Cable,1,11.95,04/30/19 13:38,"113 8th St, San Francisco, CA 94016" +196894,Bose SoundSport Headphones,1,99.99,04/01/19 15:28,"837 11th St, New York City, NY 10001" +196895,Apple Airpods Headphones,1,150,04/07/19 11:14,"431 7th St, Los Angeles, CA 90001" +196896,AAA Batteries (4-pack),1,2.99,04/25/19 06:28,"49 Church St, Boston, MA 02215" +196897,Lightning Charging Cable,1,14.95,04/01/19 12:01,"940 Cherry St, Austin, TX 73301" +196898,USB-C Charging Cable,1,11.95,04/25/19 10:55,"263 Maple St, San Francisco, CA 94016" +196899,27in FHD Monitor,1,149.99,04/12/19 13:50,"101 14th St, Boston, MA 02215" +196900,AAA Batteries (4-pack),1,2.99,04/03/19 22:14,"306 2nd St, New York City, NY 10001" +196901,Lightning Charging Cable,1,14.95,04/28/19 15:00,"447 11th St, Los Angeles, CA 90001" +196902,AA Batteries (4-pack),1,3.84,04/05/19 08:54,"108 Hill St, Boston, MA 02215" +196903,Vareebadd Phone,1,400,04/13/19 09:25,"371 11th St, Boston, MA 02215" +196904,34in Ultrawide Monitor,1,379.99,04/20/19 21:02,"240 Center St, Boston, MA 02215" +196905,Wired Headphones,1,11.99,04/17/19 23:49,"447 Chestnut St, San Francisco, CA 94016" +196906,27in FHD Monitor,1,149.99,04/27/19 19:48,"811 South St, Los Angeles, CA 90001" +196907,AA Batteries (4-pack),1,3.84,04/02/19 07:56,"485 4th St, Los Angeles, CA 90001" +196908,Flatscreen TV,1,300,04/21/19 15:48,"253 4th St, San Francisco, CA 94016" +196909,Bose SoundSport Headphones,1,99.99,04/07/19 12:19,"620 Lincoln St, Boston, MA 02215" +196910,27in 4K Gaming Monitor,1,389.99,04/27/19 23:23,"747 Jefferson St, Atlanta, GA 30301" +196911,Wired Headphones,1,11.99,04/12/19 20:38,"550 6th St, San Francisco, CA 94016" +196912,AA Batteries (4-pack),1,3.84,04/29/19 20:22,"216 Lakeview St, New York City, NY 10001" +196913,iPhone,1,700,04/10/19 19:03,"623 Johnson St, San Francisco, CA 94016" +196913,Lightning Charging Cable,1,14.95,04/10/19 19:03,"623 Johnson St, San Francisco, CA 94016" +196913,Wired Headphones,1,11.99,04/10/19 19:03,"623 Johnson St, San Francisco, CA 94016" +196914,AAA Batteries (4-pack),2,2.99,04/06/19 17:23,"872 Madison St, New York City, NY 10001" +196915,AAA Batteries (4-pack),2,2.99,04/18/19 04:35,"37 Meadow St, Los Angeles, CA 90001" +196916,USB-C Charging Cable,1,11.95,04/19/19 10:53,"455 5th St, New York City, NY 10001" +196917,USB-C Charging Cable,1,11.95,04/23/19 23:44,"499 South St, New York City, NY 10001" +196918,Lightning Charging Cable,2,14.95,04/03/19 10:25,"971 Forest St, Boston, MA 02215" +196919,ThinkPad Laptop,1,999.99,04/16/19 20:04,"837 Jackson St, New York City, NY 10001" +196920,Lightning Charging Cable,1,14.95,04/19/19 12:32,"931 Lakeview St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +196921,Lightning Charging Cable,1,14.95,04/20/19 16:34,"937 13th St, Portland, OR 97035" +196922,Bose SoundSport Headphones,1,99.99,04/08/19 11:06,"388 Church St, San Francisco, CA 94016" +196923,AA Batteries (4-pack),1,3.84,04/15/19 05:36,"113 Hickory St, New York City, NY 10001" +196924,Wired Headphones,1,11.99,04/20/19 17:26,"375 5th St, San Francisco, CA 94016" +196925,AAA Batteries (4-pack),1,2.99,04/03/19 17:32,"311 12th St, Seattle, WA 98101" +196926,Bose SoundSport Headphones,1,99.99,04/23/19 12:07,"318 Madison St, Dallas, TX 75001" +196927,AA Batteries (4-pack),2,3.84,04/25/19 12:50,"399 1st St, San Francisco, CA 94016" +196928,34in Ultrawide Monitor,1,379.99,04/09/19 10:40,"964 Johnson St, Atlanta, GA 30301" +196929,Wired Headphones,1,11.99,04/13/19 13:01,"573 Elm St, Atlanta, GA 30301" +196930,USB-C Charging Cable,1,11.95,04/11/19 20:28,"402 West St, Atlanta, GA 30301" +196931,Bose SoundSport Headphones,1,99.99,04/30/19 12:33,"231 Willow St, Dallas, TX 75001" +196932,AAA Batteries (4-pack),1,2.99,04/11/19 15:58,"552 1st St, San Francisco, CA 94016" +196933,Bose SoundSport Headphones,1,99.99,04/27/19 11:08,"183 Washington St, Los Angeles, CA 90001" +196934,USB-C Charging Cable,1,11.95,04/11/19 00:42,"419 Park St, San Francisco, CA 94016" +196935,27in FHD Monitor,1,149.99,04/10/19 14:49,"894 14th St, San Francisco, CA 94016" +196935,Bose SoundSport Headphones,1,99.99,04/10/19 14:49,"894 14th St, San Francisco, CA 94016" +196936,Flatscreen TV,1,300,04/04/19 14:20,"144 10th St, San Francisco, CA 94016" +196937,ThinkPad Laptop,1,999.99,04/16/19 11:17,"93 Walnut St, Seattle, WA 98101" +196938,LG Dryer,1,600.0,04/14/19 15:47,"137 9th St, Seattle, WA 98101" +196939,Wired Headphones,1,11.99,04/27/19 20:20,"391 Dogwood St, New York City, NY 10001" +196940,Apple Airpods Headphones,1,150,04/25/19 14:20,"162 Jefferson St, Dallas, TX 75001" +196941,iPhone,1,700,04/14/19 18:28,"891 9th St, Los Angeles, CA 90001" +196942,USB-C Charging Cable,1,11.95,04/04/19 11:35,"699 12th St, Boston, MA 02215" +196942,AA Batteries (4-pack),1,3.84,04/04/19 11:35,"699 12th St, Boston, MA 02215" +196943,AA Batteries (4-pack),1,3.84,04/18/19 11:32,"563 1st St, San Francisco, CA 94016" +196944,27in 4K Gaming Monitor,1,389.99,04/07/19 22:27,"382 Pine St, San Francisco, CA 94016" +196945,USB-C Charging Cable,1,11.95,04/30/19 01:22,"103 10th St, Boston, MA 02215" +196946,Macbook Pro Laptop,1,1700,04/27/19 11:07,"374 Jackson St, Los Angeles, CA 90001" +196947,AA Batteries (4-pack),1,3.84,04/08/19 23:45,"830 Center St, Atlanta, GA 30301" +196948,USB-C Charging Cable,1,11.95,04/05/19 22:54,"712 Madison St, Portland, OR 97035" +196949,Google Phone,1,600,04/08/19 14:09,"247 Washington St, New York City, NY 10001" +196950,Google Phone,1,600,04/22/19 20:33,"813 Lake St, Seattle, WA 98101" +196951,27in FHD Monitor,1,149.99,04/30/19 10:35,"396 Dogwood St, Austin, TX 73301" +196952,Wired Headphones,1,11.99,04/04/19 19:33,"42 Willow St, Boston, MA 02215" +196953,34in Ultrawide Monitor,1,379.99,04/03/19 17:05,"917 Church St, Dallas, TX 75001" +196954,Wired Headphones,1,11.99,04/30/19 10:46,"708 Cherry St, New York City, NY 10001" +196955,iPhone,1,700,04/23/19 07:07,"605 4th St, Los Angeles, CA 90001" +196955,Apple Airpods Headphones,1,150,04/23/19 07:07,"605 4th St, Los Angeles, CA 90001" +196956,Lightning Charging Cable,1,14.95,04/29/19 10:57,"369 Cherry St, Los Angeles, CA 90001" +196957,USB-C Charging Cable,1,11.95,04/22/19 19:22,"560 7th St, Dallas, TX 75001" +196958,Wired Headphones,1,11.99,04/03/19 20:55,"484 Jackson St, San Francisco, CA 94016" +196959,USB-C Charging Cable,1,11.95,04/29/19 17:57,"325 Spruce St, Los Angeles, CA 90001" +196960,Bose SoundSport Headphones,1,99.99,04/13/19 05:04,"351 2nd St, Boston, MA 02215" +196961,27in FHD Monitor,1,149.99,04/12/19 20:27,"500 11th St, Boston, MA 02215" +196962,27in FHD Monitor,1,149.99,04/14/19 07:09,"954 West St, Seattle, WA 98101" +196963,AAA Batteries (4-pack),1,2.99,04/11/19 17:00,"347 Ridge St, Dallas, TX 75001" +196964,Wired Headphones,1,11.99,04/12/19 17:31,"92 West St, San Francisco, CA 94016" +196965,34in Ultrawide Monitor,1,379.99,04/28/19 19:29,"411 Meadow St, San Francisco, CA 94016" +196966,Wired Headphones,1,11.99,04/28/19 12:12,"270 Cedar St, Austin, TX 73301" +196967,USB-C Charging Cable,1,11.95,04/07/19 12:45,"35 Johnson St, Atlanta, GA 30301" +196968,27in FHD Monitor,1,149.99,04/08/19 15:00,"465 Maple St, New York City, NY 10001" +196969,AAA Batteries (4-pack),1,2.99,04/26/19 21:29,"450 10th St, Los Angeles, CA 90001" +196970,AA Batteries (4-pack),1,3.84,04/03/19 17:42,"828 Jefferson St, Austin, TX 73301" +196971,iPhone,1,700,04/07/19 18:11,"820 South St, New York City, NY 10001" +196972,AA Batteries (4-pack),1,3.84,04/23/19 13:42,"911 Lakeview St, Los Angeles, CA 90001" +196973,Apple Airpods Headphones,1,150,04/23/19 21:59,"886 Cedar St, San Francisco, CA 94016" +196974,Wired Headphones,2,11.99,04/23/19 09:47,"683 8th St, Atlanta, GA 30301" +196975,Apple Airpods Headphones,1,150,04/02/19 10:26,"319 4th St, Boston, MA 02215" +196976,Google Phone,1,600,04/12/19 12:20,"189 Hill St, Atlanta, GA 30301" +196977,AA Batteries (4-pack),1,3.84,04/12/19 11:42,"707 South St, San Francisco, CA 94016" +196978,Lightning Charging Cable,1,14.95,04/25/19 21:04,"349 West St, Portland, ME 04101" +196979,Lightning Charging Cable,1,14.95,04/21/19 18:24,"205 Main St, Portland, ME 04101" +196980,LG Dryer,1,600.0,04/05/19 09:31,"479 8th St, Boston, MA 02215" +196981,AA Batteries (4-pack),1,3.84,04/15/19 19:08,"507 12th St, New York City, NY 10001" +196982,AAA Batteries (4-pack),1,2.99,04/16/19 18:20,"757 Main St, Seattle, WA 98101" +196983,Apple Airpods Headphones,1,150,04/04/19 19:07,"688 Meadow St, Dallas, TX 75001" +196984,iPhone,1,700,04/20/19 21:41,"562 Lakeview St, Dallas, TX 75001" +196985,27in FHD Monitor,1,149.99,04/07/19 23:07,"166 Highland St, Seattle, WA 98101" +196986,Apple Airpods Headphones,1,150,04/23/19 11:49,"149 Highland St, Los Angeles, CA 90001" +196987,Wired Headphones,2,11.99,04/07/19 19:03,"351 Wilson St, Los Angeles, CA 90001" +196988,Wired Headphones,1,11.99,04/19/19 15:54,"233 Park St, Los Angeles, CA 90001" +196989,iPhone,1,700,04/12/19 13:02,"11 Chestnut St, Los Angeles, CA 90001" +196989,Lightning Charging Cable,1,14.95,04/12/19 13:02,"11 Chestnut St, Los Angeles, CA 90001" +196990,Google Phone,1,600,04/17/19 22:06,"962 Maple St, New York City, NY 10001" +196991,USB-C Charging Cable,1,11.95,04/06/19 14:54,"507 Chestnut St, San Francisco, CA 94016" +196992,Macbook Pro Laptop,1,1700,04/02/19 17:17,"451 Willow St, Dallas, TX 75001" +196993,iPhone,1,700,04/17/19 17:49,"468 River St, Los Angeles, CA 90001" +196993,Lightning Charging Cable,1,14.95,04/17/19 17:49,"468 River St, Los Angeles, CA 90001" +196994,AA Batteries (4-pack),1,3.84,04/14/19 17:25,"115 12th St, San Francisco, CA 94016" +196995,20in Monitor,1,109.99,04/06/19 20:25,"634 Adams St, Los Angeles, CA 90001" +196996,Apple Airpods Headphones,1,150,04/24/19 12:00,"448 12th St, Austin, TX 73301" +196997,Apple Airpods Headphones,1,150,04/28/19 17:24,"207 5th St, San Francisco, CA 94016" +196998,27in FHD Monitor,1,149.99,04/29/19 14:11,"864 Main St, Dallas, TX 75001" +196999,Wired Headphones,1,11.99,04/20/19 12:56,"290 4th St, Boston, MA 02215" +197000,Bose SoundSport Headphones,1,99.99,04/21/19 07:33,"716 Washington St, New York City, NY 10001" +197001,Lightning Charging Cable,1,14.95,04/07/19 20:38,"704 Adams St, San Francisco, CA 94016" +197002,Macbook Pro Laptop,1,1700,04/20/19 09:51,"42 Meadow St, Austin, TX 73301" +197003,AA Batteries (4-pack),1,3.84,04/03/19 15:24,"68 Park St, Los Angeles, CA 90001" +197004,AA Batteries (4-pack),1,3.84,04/02/19 16:42,"920 4th St, Los Angeles, CA 90001" +197005,Lightning Charging Cable,1,14.95,04/09/19 22:30,"690 4th St, Seattle, WA 98101" +197006,Google Phone,1,600,04/14/19 11:58,"136 Jefferson St, San Francisco, CA 94016" +197007,20in Monitor,1,109.99,04/03/19 08:30,"261 13th St, San Francisco, CA 94016" +197008,34in Ultrawide Monitor,1,379.99,04/11/19 17:36,"45 North St, New York City, NY 10001" +197009,34in Ultrawide Monitor,1,379.99,04/18/19 20:59,"384 South St, Los Angeles, CA 90001" +197010,Wired Headphones,1,11.99,04/17/19 19:48,"48 1st St, San Francisco, CA 94016" +197011,Apple Airpods Headphones,1,150,04/06/19 12:31,"483 Lakeview St, Los Angeles, CA 90001" +197012,Lightning Charging Cable,1,14.95,04/17/19 11:57,"192 13th St, San Francisco, CA 94016" +197013,27in 4K Gaming Monitor,1,389.99,04/26/19 12:12,"109 Chestnut St, Seattle, WA 98101" +197014,Bose SoundSport Headphones,1,99.99,04/08/19 19:38,"728 Elm St, Seattle, WA 98101" +197015,Macbook Pro Laptop,1,1700,04/25/19 21:04,"484 Jefferson St, Seattle, WA 98101" +197016,Apple Airpods Headphones,1,150,04/04/19 12:12,"768 Elm St, Portland, OR 97035" +197017,27in 4K Gaming Monitor,1,389.99,04/24/19 17:52,"137 Maple St, San Francisco, CA 94016" +197018,ThinkPad Laptop,1,999.99,04/17/19 18:28,"10 Johnson St, San Francisco, CA 94016" +197019,USB-C Charging Cable,1,11.95,04/18/19 10:43,"172 Johnson St, Austin, TX 73301" +197020,20in Monitor,1,109.99,04/26/19 11:00,"582 Center St, Seattle, WA 98101" +197021,ThinkPad Laptop,1,999.99,04/07/19 13:10,"399 Wilson St, San Francisco, CA 94016" +197022,USB-C Charging Cable,1,11.95,04/21/19 21:24,"371 Highland St, Austin, TX 73301" +197023,20in Monitor,1,109.99,04/22/19 16:24,"586 Main St, Dallas, TX 75001" +197024,Lightning Charging Cable,1,14.95,04/08/19 21:44,"237 13th St, Los Angeles, CA 90001" +197025,27in FHD Monitor,1,149.99,04/01/19 19:29,"707 Pine St, San Francisco, CA 94016" +197026,27in FHD Monitor,1,149.99,04/08/19 14:58,"59 River St, New York City, NY 10001" +197027,AA Batteries (4-pack),2,3.84,04/14/19 13:47,"45 Dogwood St, San Francisco, CA 94016" +197028,Apple Airpods Headphones,1,150,04/12/19 10:15,"273 Cherry St, Seattle, WA 98101" +197029,AA Batteries (4-pack),1,3.84,04/17/19 18:50,"481 Forest St, San Francisco, CA 94016" +197030,Lightning Charging Cable,1,14.95,04/01/19 17:09,"558 Willow St, Boston, MA 02215" +197031,AAA Batteries (4-pack),1,2.99,04/12/19 10:39,"409 7th St, Seattle, WA 98101" +197032,Flatscreen TV,1,300,04/01/19 10:02,"502 4th St, Los Angeles, CA 90001" +197033,Apple Airpods Headphones,1,150,04/18/19 10:47,"605 6th St, Boston, MA 02215" +197034,USB-C Charging Cable,1,11.95,04/01/19 20:18,"548 8th St, Seattle, WA 98101" +197035,USB-C Charging Cable,2,11.95,04/09/19 18:29,"756 Willow St, San Francisco, CA 94016" +197036,Macbook Pro Laptop,1,1700,04/19/19 16:47,"139 10th St, Austin, TX 73301" +197036,Apple Airpods Headphones,1,150,04/19/19 16:47,"139 10th St, Austin, TX 73301" +197037,iPhone,1,700,04/13/19 22:25,"862 Washington St, Seattle, WA 98101" +197037,Lightning Charging Cable,1,14.95,04/13/19 22:25,"862 Washington St, Seattle, WA 98101" +197038,Wired Headphones,1,11.99,04/09/19 07:43,"791 Jefferson St, Seattle, WA 98101" +197039,Macbook Pro Laptop,1,1700,04/19/19 22:33,"178 Chestnut St, Dallas, TX 75001" +197040,AAA Batteries (4-pack),1,2.99,04/17/19 00:52,"324 Jackson St, Seattle, WA 98101" +197041,Google Phone,1,600,04/09/19 20:01,"290 Hickory St, Los Angeles, CA 90001" +197042,Lightning Charging Cable,2,14.95,04/01/19 12:43,"711 Chestnut St, New York City, NY 10001" +197043,Wired Headphones,1,11.99,04/14/19 13:40,"248 Main St, San Francisco, CA 94016" +197044,USB-C Charging Cable,1,11.95,04/24/19 10:51,"985 Pine St, Atlanta, GA 30301" +197045,Bose SoundSport Headphones,1,99.99,04/21/19 15:02,"682 Adams St, Seattle, WA 98101" +197046,27in FHD Monitor,1,149.99,04/24/19 15:48,"809 Hill St, Dallas, TX 75001" +197047,Flatscreen TV,1,300,04/22/19 15:09,"150 Elm St, San Francisco, CA 94016" +197048,AA Batteries (4-pack),1,3.84,04/12/19 17:03,"710 Lake St, Seattle, WA 98101" +197049,Macbook Pro Laptop,1,1700,04/23/19 14:27,"494 Spruce St, Dallas, TX 75001" +197050,Apple Airpods Headphones,1,150,04/19/19 11:11,"392 North St, Austin, TX 73301" +197051,Wired Headphones,1,11.99,04/05/19 00:21,"596 Meadow St, Los Angeles, CA 90001" +197052,27in FHD Monitor,1,149.99,04/28/19 18:34,"43 Wilson St, Austin, TX 73301" +197053,Bose SoundSport Headphones,1,99.99,04/19/19 22:34,"473 Park St, Dallas, TX 75001" +197054,Wired Headphones,1,11.99,04/05/19 10:29,"110 Lake St, Los Angeles, CA 90001" +197055,27in FHD Monitor,1,149.99,04/28/19 19:29,"724 Willow St, Dallas, TX 75001" +197056,USB-C Charging Cable,1,11.95,04/07/19 11:35,"781 Highland St, Portland, ME 04101" +197057,AA Batteries (4-pack),1,3.84,04/17/19 08:21,"666 Park St, Atlanta, GA 30301" +197058,ThinkPad Laptop,1,999.99,04/29/19 14:02,"466 9th St, San Francisco, CA 94016" +197059,AA Batteries (4-pack),4,3.84,04/17/19 15:54,"70 Hill St, Los Angeles, CA 90001" +197060,AA Batteries (4-pack),1,3.84,04/18/19 08:23,"533 Washington St, Portland, OR 97035" +197061,Wired Headphones,1,11.99,04/18/19 20:09,"280 South St, Los Angeles, CA 90001" +197062,27in 4K Gaming Monitor,1,389.99,04/21/19 07:07,"48 4th St, San Francisco, CA 94016" +197063,27in 4K Gaming Monitor,1,389.99,04/19/19 15:51,"166 West St, San Francisco, CA 94016" +197064,Lightning Charging Cable,1,14.95,04/23/19 12:27,"650 Cherry St, Dallas, TX 75001" +197065,20in Monitor,1,109.99,04/12/19 20:35,"106 North St, Atlanta, GA 30301" +197066,34in Ultrawide Monitor,1,379.99,04/05/19 08:13,"90 1st St, San Francisco, CA 94016" +197067,Apple Airpods Headphones,1,150,04/20/19 18:18,"417 Ridge St, Seattle, WA 98101" +197068,27in FHD Monitor,1,149.99,04/19/19 19:30,"957 Ridge St, Los Angeles, CA 90001" +197069,Bose SoundSport Headphones,1,99.99,04/27/19 11:20,"878 8th St, Boston, MA 02215" +197070,Macbook Pro Laptop,1,1700,04/24/19 15:07,"767 Ridge St, Boston, MA 02215" +197071,iPhone,1,700,04/04/19 13:04,"271 Walnut St, Los Angeles, CA 90001" +197071,AAA Batteries (4-pack),1,2.99,04/04/19 13:04,"271 Walnut St, Los Angeles, CA 90001" +197072,20in Monitor,1,109.99,04/10/19 05:32,"3 Johnson St, New York City, NY 10001" +197073,AA Batteries (4-pack),1,3.84,04/16/19 18:33,"563 North St, Portland, OR 97035" +197074,27in FHD Monitor,1,149.99,04/05/19 13:19,"195 Walnut St, San Francisco, CA 94016" +197075,Wired Headphones,1,11.99,04/08/19 12:29,"517 Sunset St, Los Angeles, CA 90001" +197076,Wired Headphones,1,11.99,04/01/19 18:13,"15 West St, Seattle, WA 98101" +197077,AA Batteries (4-pack),1,3.84,04/24/19 14:37,"496 Forest St, New York City, NY 10001" +197078,Apple Airpods Headphones,1,150,04/23/19 22:19,"723 4th St, Los Angeles, CA 90001" +197079,27in FHD Monitor,1,149.99,04/21/19 18:41,"181 Cedar St, San Francisco, CA 94016" +197080,Apple Airpods Headphones,1,150,04/21/19 06:39,"327 Willow St, Boston, MA 02215" +197081,27in 4K Gaming Monitor,1,389.99,04/19/19 00:59,"680 Wilson St, Los Angeles, CA 90001" +197082,Wired Headphones,1,11.99,04/04/19 08:32,"485 Wilson St, San Francisco, CA 94016" +197083,27in FHD Monitor,1,149.99,04/16/19 05:29,"145 Forest St, Seattle, WA 98101" +197084,USB-C Charging Cable,1,11.95,04/07/19 01:18,"523 Spruce St, New York City, NY 10001" +197085,AAA Batteries (4-pack),1,2.99,04/21/19 00:47,"522 Lincoln St, San Francisco, CA 94016" +197086,USB-C Charging Cable,1,11.95,04/30/19 15:42,"12 Center St, New York City, NY 10001" +197087,Apple Airpods Headphones,1,150,04/23/19 20:47,"408 Wilson St, Dallas, TX 75001" +197088,Apple Airpods Headphones,1,150,04/09/19 15:24,"104 Washington St, Boston, MA 02215" +197089,Macbook Pro Laptop,1,1700,04/16/19 21:10,"537 2nd St, Boston, MA 02215" +197090,Macbook Pro Laptop,1,1700,04/21/19 16:17,"805 5th St, Boston, MA 02215" +197090,iPhone,1,700,04/21/19 16:17,"805 5th St, Boston, MA 02215" +197091,Lightning Charging Cable,1,14.95,04/13/19 18:20,"162 Main St, Los Angeles, CA 90001" +197092,27in 4K Gaming Monitor,1,389.99,04/26/19 19:28,"962 Madison St, Austin, TX 73301" +197093,USB-C Charging Cable,1,11.95,04/22/19 12:01,"47 Dogwood St, San Francisco, CA 94016" +197094,Flatscreen TV,1,300,04/06/19 10:08,"814 Meadow St, Seattle, WA 98101" +197095,Lightning Charging Cable,1,14.95,04/20/19 17:03,"987 Cedar St, Los Angeles, CA 90001" +197096,Wired Headphones,1,11.99,04/27/19 23:43,"157 West St, Austin, TX 73301" +197097,USB-C Charging Cable,1,11.95,04/30/19 19:43,"89 9th St, San Francisco, CA 94016" +197098,Google Phone,1,600,04/04/19 18:27,"657 2nd St, Atlanta, GA 30301" +197098,Wired Headphones,2,11.99,04/04/19 18:27,"657 2nd St, Atlanta, GA 30301" +197099,Wired Headphones,1,11.99,04/29/19 23:04,"269 Adams St, New York City, NY 10001" +197100,Wired Headphones,2,11.99,04/27/19 09:30,"33 Willow St, New York City, NY 10001" +197101,Lightning Charging Cable,1,14.95,04/14/19 19:10,"152 Jefferson St, Dallas, TX 75001" +197101,USB-C Charging Cable,1,11.95,04/14/19 19:10,"152 Jefferson St, Dallas, TX 75001" +197102,Apple Airpods Headphones,1,150,04/06/19 17:15,"264 Hill St, Los Angeles, CA 90001" +197103,AA Batteries (4-pack),1,3.84,04/18/19 12:09,"100 Park St, Seattle, WA 98101" +197104,USB-C Charging Cable,1,11.95,04/15/19 09:07,"978 Washington St, Los Angeles, CA 90001" +197105,USB-C Charging Cable,1,11.95,04/23/19 15:44,"810 Adams St, Boston, MA 02215" +197106,AA Batteries (4-pack),1,3.84,04/09/19 21:11,"542 Lakeview St, San Francisco, CA 94016" +197107,AA Batteries (4-pack),2,3.84,04/21/19 17:29,"565 Sunset St, Dallas, TX 75001" +197108,Flatscreen TV,1,300,04/02/19 19:01,"252 7th St, Los Angeles, CA 90001" +197109,Wired Headphones,1,11.99,04/23/19 05:10,"700 Maple St, Los Angeles, CA 90001" +197110,USB-C Charging Cable,1,11.95,04/25/19 06:35,"661 Willow St, Portland, ME 04101" +197111,34in Ultrawide Monitor,1,379.99,04/30/19 06:29,"2 7th St, Atlanta, GA 30301" +197112,AAA Batteries (4-pack),3,2.99,04/11/19 22:44,"161 Forest St, Atlanta, GA 30301" +197113,27in FHD Monitor,1,149.99,04/17/19 19:12,"402 Highland St, San Francisco, CA 94016" +197114,Lightning Charging Cable,1,14.95,04/24/19 22:00,"416 South St, Los Angeles, CA 90001" +197115,Apple Airpods Headphones,1,150,04/06/19 18:13,"541 14th St, New York City, NY 10001" +197116,Apple Airpods Headphones,1,150,04/27/19 18:22,"221 Hickory St, Los Angeles, CA 90001" +197117,Google Phone,1,600,04/24/19 00:27,"261 Lincoln St, Atlanta, GA 30301" +197118,Wired Headphones,1,11.99,04/16/19 16:48,"941 Lincoln St, Boston, MA 02215" +197119,34in Ultrawide Monitor,1,379.99,04/01/19 15:54,"892 Willow St, San Francisco, CA 94016" +197120,AA Batteries (4-pack),3,3.84,04/16/19 18:52,"800 Wilson St, Dallas, TX 75001" +197121,AAA Batteries (4-pack),3,2.99,04/12/19 12:44,"323 Ridge St, Dallas, TX 75001" +197122,AA Batteries (4-pack),1,3.84,04/06/19 15:49,"373 Cedar St, Portland, OR 97035" +197123,Lightning Charging Cable,1,14.95,04/20/19 10:51,"341 Church St, Los Angeles, CA 90001" +197124,Google Phone,1,600,04/03/19 20:14,"212 Maple St, Boston, MA 02215" +197125,Google Phone,1,600,04/20/19 22:09,"151 South St, San Francisco, CA 94016" +197126,Lightning Charging Cable,1,14.95,04/12/19 16:04,"853 7th St, San Francisco, CA 94016" +197127,Apple Airpods Headphones,1,150,04/25/19 17:59,"552 Johnson St, Boston, MA 02215" +197128,Lightning Charging Cable,1,14.95,04/18/19 23:14,"925 South St, Los Angeles, CA 90001" +197129,AAA Batteries (4-pack),1,2.99,04/20/19 20:41,"745 Walnut St, New York City, NY 10001" +197130,Apple Airpods Headphones,1,150,04/20/19 08:00,"860 Lakeview St, Los Angeles, CA 90001" +197131,Bose SoundSport Headphones,1,99.99,04/11/19 18:12,"855 Lakeview St, Los Angeles, CA 90001" +197132,USB-C Charging Cable,1,11.95,04/17/19 18:29,"893 West St, New York City, NY 10001" +197133,AA Batteries (4-pack),1,3.84,04/20/19 11:57,"172 Elm St, Portland, OR 97035" +197134,Vareebadd Phone,1,400,04/15/19 21:00,"186 2nd St, San Francisco, CA 94016" +197135,USB-C Charging Cable,1,11.95,04/10/19 23:13,"17 Adams St, Seattle, WA 98101" +197136,Apple Airpods Headphones,1,150,04/14/19 06:32,"345 Lake St, New York City, NY 10001" +197137,AA Batteries (4-pack),1,3.84,04/28/19 11:12,"225 River St, Seattle, WA 98101" +197138,27in FHD Monitor,1,149.99,04/09/19 14:50,"14 River St, New York City, NY 10001" +197139,Wired Headphones,1,11.99,04/15/19 15:42,"17 Willow St, Portland, OR 97035" +197140,Bose SoundSport Headphones,1,99.99,04/30/19 07:23,"604 Lakeview St, Seattle, WA 98101" +197141,Flatscreen TV,1,300,04/30/19 21:25,"726 Church St, Atlanta, GA 30301" +197142,USB-C Charging Cable,1,11.95,04/08/19 01:00,"263 Sunset St, New York City, NY 10001" +197143,USB-C Charging Cable,2,11.95,04/26/19 11:36,"441 Maple St, New York City, NY 10001" +197144,iPhone,1,700,04/27/19 00:35,"595 7th St, Boston, MA 02215" +197144,Lightning Charging Cable,1,14.95,04/27/19 00:35,"595 7th St, Boston, MA 02215" +197145,34in Ultrawide Monitor,1,379.99,04/02/19 19:37,"866 North St, Los Angeles, CA 90001" +197146,AA Batteries (4-pack),1,3.84,04/09/19 07:33,"477 South St, San Francisco, CA 94016" +197147,Wired Headphones,1,11.99,04/05/19 15:30,"126 Willow St, Austin, TX 73301" +197148,AA Batteries (4-pack),1,3.84,04/04/19 15:00,"437 Dogwood St, Austin, TX 73301" +197149,iPhone,1,700,04/01/19 13:38,"11 Ridge St, Austin, TX 73301" +197150,27in 4K Gaming Monitor,1,389.99,04/27/19 07:43,"625 12th St, Los Angeles, CA 90001" +197151,Google Phone,1,600,04/19/19 21:19,"26 Lake St, Los Angeles, CA 90001" +197152,Lightning Charging Cable,1,14.95,04/08/19 21:31,"937 11th St, Los Angeles, CA 90001" +197153,Google Phone,1,600,04/06/19 12:45,"292 Maple St, Los Angeles, CA 90001" +197153,Wired Headphones,1,11.99,04/06/19 12:45,"292 Maple St, Los Angeles, CA 90001" +197154,USB-C Charging Cable,1,11.95,04/16/19 12:22,"983 9th St, San Francisco, CA 94016" +197155,Wired Headphones,1,11.99,04/25/19 18:35,"560 Elm St, New York City, NY 10001" +197156,USB-C Charging Cable,1,11.95,04/07/19 17:36,"987 Jefferson St, Seattle, WA 98101" +197157,AAA Batteries (4-pack),2,2.99,04/09/19 15:44,"149 Main St, Atlanta, GA 30301" +197158,Apple Airpods Headphones,1,150,04/14/19 17:14,"834 Madison St, San Francisco, CA 94016" +197159,USB-C Charging Cable,1,11.95,04/18/19 10:28,"46 14th St, Atlanta, GA 30301" +197160,Apple Airpods Headphones,1,150,04/16/19 15:43,"203 North St, New York City, NY 10001" +197161,34in Ultrawide Monitor,1,379.99,04/20/19 20:58,"301 Park St, Los Angeles, CA 90001" +197162,AAA Batteries (4-pack),1,2.99,04/13/19 18:30,"221 Park St, Seattle, WA 98101" +197163,34in Ultrawide Monitor,1,379.99,04/09/19 22:49,"994 13th St, Los Angeles, CA 90001" +197164,27in 4K Gaming Monitor,1,389.99,04/09/19 13:33,"717 Washington St, San Francisco, CA 94016" +197165,AAA Batteries (4-pack),1,2.99,04/28/19 20:18,"277 Walnut St, Dallas, TX 75001" +197166,USB-C Charging Cable,1,11.95,04/06/19 21:44,"240 Spruce St, Los Angeles, CA 90001" +197167,Lightning Charging Cable,1,14.95,04/20/19 20:45,"646 Spruce St, San Francisco, CA 94016" +197168,USB-C Charging Cable,1,11.95,04/12/19 12:13,"425 9th St, Austin, TX 73301" +197169,Wired Headphones,1,11.99,04/07/19 11:36,"11 Lake St, Los Angeles, CA 90001" +197170,AA Batteries (4-pack),1,3.84,04/21/19 09:00,"902 Adams St, San Francisco, CA 94016" +197171,Lightning Charging Cable,1,14.95,04/20/19 17:39,"622 River St, Boston, MA 02215" +197172,Wired Headphones,1,11.99,04/17/19 11:26,"288 Dogwood St, New York City, NY 10001" +197173,Bose SoundSport Headphones,1,99.99,04/12/19 00:19,"322 Forest St, Portland, OR 97035" +197174,AA Batteries (4-pack),1,3.84,04/09/19 12:53,"895 Highland St, Boston, MA 02215" +197175,27in FHD Monitor,1,149.99,04/15/19 22:02,"591 10th St, Portland, OR 97035" +197176,Wired Headphones,2,11.99,04/26/19 18:28,"412 Adams St, Boston, MA 02215" +197177,iPhone,1,700,04/15/19 23:25,"203 6th St, Dallas, TX 75001" +197178,Google Phone,1,600,04/07/19 00:14,"284 Jefferson St, Seattle, WA 98101" +197179,LG Washing Machine,1,600.0,04/20/19 18:29,"355 Jackson St, Boston, MA 02215" +197180,Bose SoundSport Headphones,1,99.99,04/02/19 14:25,"631 Pine St, Boston, MA 02215" +197181,USB-C Charging Cable,1,11.95,04/30/19 07:50,"929 Wilson St, Atlanta, GA 30301" +197182,AAA Batteries (4-pack),1,2.99,04/11/19 20:05,"478 4th St, Austin, TX 73301" +197183,27in 4K Gaming Monitor,1,389.99,04/07/19 23:05,"21 Johnson St, Los Angeles, CA 90001" +197184,AAA Batteries (4-pack),1,2.99,04/28/19 18:49,"380 5th St, Seattle, WA 98101" +197185,Bose SoundSport Headphones,1,99.99,04/29/19 20:38,"949 Center St, Los Angeles, CA 90001" +197186,ThinkPad Laptop,1,999.99,04/09/19 20:28,"835 Meadow St, Boston, MA 02215" +197187,AA Batteries (4-pack),1,3.84,04/25/19 09:38,"126 Spruce St, New York City, NY 10001" +197188,Apple Airpods Headphones,1,150,04/13/19 20:49,"764 4th St, Austin, TX 73301" +197189,USB-C Charging Cable,1,11.95,04/22/19 12:31,"572 4th St, San Francisco, CA 94016" +197190,Apple Airpods Headphones,1,150,04/12/19 17:05,"555 Dogwood St, Dallas, TX 75001" +197191,ThinkPad Laptop,1,999.99,04/01/19 11:57,"718 Willow St, Austin, TX 73301" +197192,27in 4K Gaming Monitor,1,389.99,04/06/19 17:38,"322 9th St, New York City, NY 10001" +197193,USB-C Charging Cable,1,11.95,04/06/19 17:09,"920 Cedar St, New York City, NY 10001" +197194,AAA Batteries (4-pack),2,2.99,04/12/19 17:10,"616 Lincoln St, Los Angeles, CA 90001" +197195,Apple Airpods Headphones,1,150,04/18/19 19:06,"545 Cherry St, Austin, TX 73301" +197196,iPhone,1,700,04/02/19 14:35,"141 Sunset St, Portland, OR 97035" +197197,Apple Airpods Headphones,1,150,04/12/19 14:34,"16 8th St, Boston, MA 02215" +197198,Apple Airpods Headphones,1,150,04/07/19 15:30,"593 Lincoln St, San Francisco, CA 94016" +197199,Bose SoundSport Headphones,2,99.99,04/12/19 12:28,"727 Pine St, Seattle, WA 98101" +197200,iPhone,1,700,04/02/19 10:07,"160 10th St, Portland, ME 04101" +197200,Lightning Charging Cable,1,14.95,04/02/19 10:07,"160 10th St, Portland, ME 04101" +197201,AAA Batteries (4-pack),1,2.99,04/01/19 13:59,"237 7th St, Portland, ME 04101" +197202,ThinkPad Laptop,1,999.99,04/03/19 21:52,"327 4th St, Seattle, WA 98101" +197203,Macbook Pro Laptop,1,1700,04/11/19 23:38,"951 River St, San Francisco, CA 94016" +197204,AAA Batteries (4-pack),1,2.99,04/08/19 20:37,"230 South St, New York City, NY 10001" +197205,Bose SoundSport Headphones,1,99.99,04/30/19 22:44,"516 Park St, Los Angeles, CA 90001" +197206,Macbook Pro Laptop,1,1700,04/24/19 17:04,"322 Lakeview St, Los Angeles, CA 90001" +197207,Bose SoundSport Headphones,1,99.99,04/14/19 17:55,"813 Highland St, Boston, MA 02215" +197208,Vareebadd Phone,1,400,04/18/19 22:05,"347 2nd St, San Francisco, CA 94016" +197209,Apple Airpods Headphones,1,150,04/23/19 06:54,"138 West St, Dallas, TX 75001" +197210,AA Batteries (4-pack),1,3.84,04/07/19 11:47,"422 Maple St, San Francisco, CA 94016" +197211,Apple Airpods Headphones,1,150,04/10/19 09:50,"741 Johnson St, Seattle, WA 98101" +197212,ThinkPad Laptop,1,999.99,04/22/19 17:24,"90 Elm St, Atlanta, GA 30301" +197213,AA Batteries (4-pack),1,3.84,04/05/19 00:15,"134 1st St, Boston, MA 02215" +197214,AA Batteries (4-pack),2,3.84,04/17/19 17:45,"579 5th St, Los Angeles, CA 90001" +197215,AAA Batteries (4-pack),1,2.99,04/14/19 12:05,"936 Chestnut St, Seattle, WA 98101" +197216,USB-C Charging Cable,2,11.95,04/04/19 20:23,"173 7th St, San Francisco, CA 94016" +197216,Google Phone,1,600,04/04/19 20:23,"173 7th St, San Francisco, CA 94016" +197217,AA Batteries (4-pack),2,3.84,04/13/19 01:15,"967 Willow St, San Francisco, CA 94016" +197218,27in 4K Gaming Monitor,1,389.99,04/08/19 13:08,"161 Main St, Seattle, WA 98101" +197219,AA Batteries (4-pack),4,3.84,04/17/19 10:30,"897 Highland St, New York City, NY 10001" +197219,Wired Headphones,1,11.99,04/17/19 10:30,"897 Highland St, New York City, NY 10001" +197220,Macbook Pro Laptop,1,1700,04/15/19 18:38,"706 10th St, New York City, NY 10001" +197221,USB-C Charging Cable,1,11.95,04/08/19 11:14,"255 Church St, San Francisco, CA 94016" +197222,27in 4K Gaming Monitor,1,389.99,04/04/19 05:59,"49 Madison St, Boston, MA 02215" +197223,Lightning Charging Cable,1,14.95,04/01/19 13:16,"601 North St, San Francisco, CA 94016" +197224,USB-C Charging Cable,1,11.95,04/12/19 09:38,"393 Elm St, Austin, TX 73301" +197225,AA Batteries (4-pack),2,3.84,04/28/19 13:13,"120 Park St, San Francisco, CA 94016" +197226,Vareebadd Phone,1,400,04/25/19 01:15,"55 1st St, Los Angeles, CA 90001" +197227,Wired Headphones,1,11.99,04/09/19 23:59,"491 Maple St, Boston, MA 02215" +197228,20in Monitor,1,109.99,04/19/19 12:21,"20 Elm St, Austin, TX 73301" +197229,Apple Airpods Headphones,1,150,04/02/19 14:58,"672 Hill St, Austin, TX 73301" +197230,Apple Airpods Headphones,1,150,04/25/19 21:15,"648 Willow St, Boston, MA 02215" +197231,Apple Airpods Headphones,1,150,04/12/19 04:33,"90 Lakeview St, Seattle, WA 98101" +197232,AA Batteries (4-pack),1,3.84,04/08/19 14:29,"438 Spruce St, New York City, NY 10001" +197233,AA Batteries (4-pack),1,3.84,04/21/19 18:43,"479 Center St, Dallas, TX 75001" +197234,Wired Headphones,1,11.99,04/22/19 15:38,"339 4th St, Los Angeles, CA 90001" +197235,AA Batteries (4-pack),1,3.84,04/17/19 12:42,"810 Cherry St, Dallas, TX 75001" +197236,27in FHD Monitor,1,149.99,04/18/19 00:07,"563 North St, Dallas, TX 75001" +197237,Lightning Charging Cable,1,14.95,04/07/19 14:14,"619 Walnut St, San Francisco, CA 94016" +197238,Apple Airpods Headphones,1,150,04/26/19 08:29,"313 Jackson St, Seattle, WA 98101" +197239,ThinkPad Laptop,1,999.99,04/11/19 12:47,"227 Center St, Seattle, WA 98101" +197240,AA Batteries (4-pack),1,3.84,04/15/19 08:59,"767 West St, New York City, NY 10001" +197241,iPhone,1,700,04/28/19 12:26,"902 7th St, New York City, NY 10001" +197242,AA Batteries (4-pack),1,3.84,04/16/19 11:01,"290 10th St, San Francisco, CA 94016" +197243,Wired Headphones,1,11.99,04/11/19 16:10,"575 Wilson St, Dallas, TX 75001" +197244,ThinkPad Laptop,1,999.99,04/03/19 11:58,"969 West St, Austin, TX 73301" +197245,27in FHD Monitor,1,149.99,04/05/19 11:27,"398 Adams St, New York City, NY 10001" +197246,USB-C Charging Cable,1,11.95,04/01/19 21:23,"701 Lincoln St, Seattle, WA 98101" +197247,27in 4K Gaming Monitor,1,389.99,04/10/19 00:40,"553 Ridge St, Boston, MA 02215" +197248,AAA Batteries (4-pack),2,2.99,04/07/19 18:51,"986 14th St, Los Angeles, CA 90001" +197249,iPhone,1,700,04/05/19 15:02,"190 Lincoln St, San Francisco, CA 94016" +197250,27in 4K Gaming Monitor,1,389.99,04/27/19 11:47,"734 Spruce St, Los Angeles, CA 90001" +197251,ThinkPad Laptop,1,999.99,04/19/19 17:10,"98 Adams St, Dallas, TX 75001" +197252,Bose SoundSport Headphones,1,99.99,04/16/19 22:49,"625 6th St, Los Angeles, CA 90001" +197253,Lightning Charging Cable,1,14.95,04/27/19 17:27,"330 5th St, Los Angeles, CA 90001" +197254,Google Phone,1,600,04/30/19 13:23,"701 Walnut St, San Francisco, CA 94016" +197255,Apple Airpods Headphones,1,150,04/22/19 07:59,"194 4th St, Seattle, WA 98101" +197256,Macbook Pro Laptop,1,1700,04/05/19 19:11,"28 2nd St, Los Angeles, CA 90001" +197257,Bose SoundSport Headphones,1,99.99,04/17/19 22:00,"747 4th St, Dallas, TX 75001" +197258,27in FHD Monitor,1,149.99,04/14/19 13:10,"262 13th St, New York City, NY 10001" +197259,AAA Batteries (4-pack),2,2.99,04/05/19 12:21,"686 9th St, San Francisco, CA 94016" +197260,USB-C Charging Cable,1,11.95,04/18/19 09:16,"82 Chestnut St, Portland, OR 97035" +197261,ThinkPad Laptop,1,999.99,04/19/19 12:46,"420 River St, Atlanta, GA 30301" +197262,AA Batteries (4-pack),3,3.84,04/02/19 11:03,"283 Willow St, Dallas, TX 75001" +197263,USB-C Charging Cable,1,11.95,04/21/19 17:59,"674 Spruce St, Seattle, WA 98101" +197264,ThinkPad Laptop,1,999.99,04/21/19 09:18,"524 8th St, Atlanta, GA 30301" +197265,USB-C Charging Cable,1,11.95,04/11/19 13:52,"703 Highland St, Atlanta, GA 30301" +197266,AAA Batteries (4-pack),3,2.99,04/16/19 11:13,"354 Madison St, Dallas, TX 75001" +197267,Wired Headphones,1,11.99,04/24/19 09:40,"615 Forest St, San Francisco, CA 94016" +197268,Apple Airpods Headphones,1,150,04/28/19 18:28,"229 8th St, New York City, NY 10001" +197269,Wired Headphones,2,11.99,04/05/19 18:29,"639 Elm St, San Francisco, CA 94016" +197270,Wired Headphones,1,11.99,04/04/19 18:09,"767 12th St, Boston, MA 02215" +197271,Lightning Charging Cable,1,14.95,04/21/19 00:20,"686 Hickory St, Los Angeles, CA 90001" +197272,AA Batteries (4-pack),1,3.84,04/03/19 05:51,"268 Madison St, Los Angeles, CA 90001" +197273,Wired Headphones,1,11.99,04/04/19 08:53,"776 Chestnut St, San Francisco, CA 94016" +197274,Vareebadd Phone,1,400,04/09/19 20:05,"155 Center St, Los Angeles, CA 90001" +197275,34in Ultrawide Monitor,1,379.99,04/09/19 17:38,"389 7th St, Boston, MA 02215" +197276,Bose SoundSport Headphones,1,99.99,04/05/19 11:11,"761 West St, Boston, MA 02215" +197277,34in Ultrawide Monitor,1,379.99,04/25/19 03:18,"726 River St, Los Angeles, CA 90001" +197278,AAA Batteries (4-pack),1,2.99,04/07/19 21:51,"593 8th St, Austin, TX 73301" +197279,AA Batteries (4-pack),4,3.84,04/16/19 10:53,"400 Park St, Austin, TX 73301" +197280,Apple Airpods Headphones,1,150,04/12/19 20:54,"20 Meadow St, San Francisco, CA 94016" +197281,Lightning Charging Cable,2,14.95,04/21/19 13:58,"802 Main St, Austin, TX 73301" +197282,AAA Batteries (4-pack),5,2.99,04/04/19 17:25,"731 Jackson St, Seattle, WA 98101" +197283,Apple Airpods Headphones,1,150,04/21/19 11:59,"951 Johnson St, Los Angeles, CA 90001" +197284,Wired Headphones,1,11.99,04/13/19 13:56,"639 Highland St, New York City, NY 10001" +197285,AAA Batteries (4-pack),1,2.99,04/24/19 02:17,"792 Sunset St, Los Angeles, CA 90001" +197286,Wired Headphones,1,11.99,04/09/19 21:09,"209 Forest St, Atlanta, GA 30301" +197287,27in FHD Monitor,1,149.99,04/20/19 14:35,"428 Center St, Dallas, TX 75001" +197288,27in FHD Monitor,1,149.99,04/20/19 11:39,"651 Pine St, Los Angeles, CA 90001" +197289,27in 4K Gaming Monitor,1,389.99,04/29/19 09:34,"209 Spruce St, Atlanta, GA 30301" +197290,AA Batteries (4-pack),1,3.84,04/30/19 13:02,"617 North St, Seattle, WA 98101" +197291,Google Phone,1,600,04/08/19 08:36,"276 River St, San Francisco, CA 94016" +197292,27in 4K Gaming Monitor,1,389.99,04/20/19 16:53,"32 Walnut St, Los Angeles, CA 90001" +197293,AA Batteries (4-pack),1,3.84,04/24/19 14:13,"158 Lakeview St, Los Angeles, CA 90001" +197294,AAA Batteries (4-pack),1,2.99,04/08/19 09:09,"457 2nd St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +197295,27in FHD Monitor,1,149.99,04/28/19 08:17,"258 Lincoln St, Austin, TX 73301" +197296,AAA Batteries (4-pack),1,2.99,04/07/19 14:04,"361 Jackson St, New York City, NY 10001" +197297,AAA Batteries (4-pack),2,2.99,04/22/19 07:08,"428 Johnson St, Dallas, TX 75001" +197298,Google Phone,1,600,04/07/19 07:07,"816 12th St, Los Angeles, CA 90001" +197298,USB-C Charging Cable,1,11.95,04/07/19 07:07,"816 12th St, Los Angeles, CA 90001" +197299,USB-C Charging Cable,1,11.95,04/06/19 13:40,"409 Spruce St, Austin, TX 73301" +197300,USB-C Charging Cable,1,11.95,04/13/19 10:49,"700 Elm St, San Francisco, CA 94016" +197301,USB-C Charging Cable,1,11.95,04/14/19 02:54,"858 2nd St, Austin, TX 73301" +197302,Flatscreen TV,1,300,04/01/19 21:47,"304 10th St, Portland, OR 97035" +197303,Wired Headphones,1,11.99,04/08/19 11:24,"504 Meadow St, Austin, TX 73301" +197304,34in Ultrawide Monitor,1,379.99,04/18/19 11:58,"27 Adams St, Portland, ME 04101" +197305,AAA Batteries (4-pack),1,2.99,04/20/19 21:45,"286 9th St, Austin, TX 73301" +197306,LG Washing Machine,1,600.0,04/09/19 15:39,"798 9th St, New York City, NY 10001" +197307,Apple Airpods Headphones,1,150,04/21/19 14:41,"893 South St, Boston, MA 02215" +197308,Wired Headphones,1,11.99,04/21/19 17:56,"586 Church St, San Francisco, CA 94016" +197309,AAA Batteries (4-pack),2,2.99,04/21/19 07:26,"25 Center St, Boston, MA 02215" +197310,AAA Batteries (4-pack),1,2.99,04/16/19 20:15,"621 West St, Portland, OR 97035" +197311,AAA Batteries (4-pack),3,2.99,04/30/19 22:00,"632 Johnson St, Boston, MA 02215" +197312,Google Phone,1,600,04/20/19 14:19,"925 Sunset St, Los Angeles, CA 90001" +197313,27in 4K Gaming Monitor,1,389.99,04/15/19 09:36,"817 Cherry St, Dallas, TX 75001" +197314,USB-C Charging Cable,1,11.95,04/12/19 23:04,"859 Pine St, San Francisco, CA 94016" +,,,,, +197315,34in Ultrawide Monitor,1,379.99,04/06/19 19:32,"880 Park St, Los Angeles, CA 90001" +197316,Flatscreen TV,1,300,04/17/19 10:41,"431 South St, New York City, NY 10001" +197317,34in Ultrawide Monitor,1,379.99,04/29/19 20:38,"315 Jefferson St, New York City, NY 10001" +197318,27in FHD Monitor,1,149.99,04/04/19 21:58,"483 9th St, New York City, NY 10001" +197319,Google Phone,1,600,04/10/19 17:08,"744 1st St, Dallas, TX 75001" +197319,Wired Headphones,1,11.99,04/10/19 17:08,"744 1st St, Dallas, TX 75001" +197320,USB-C Charging Cable,1,11.95,04/19/19 15:27,"632 8th St, Los Angeles, CA 90001" +197321,AAA Batteries (4-pack),1,2.99,04/07/19 23:53,"734 Johnson St, Austin, TX 73301" +197322,USB-C Charging Cable,1,11.95,04/18/19 16:06,"706 Lincoln St, New York City, NY 10001" +197323,27in 4K Gaming Monitor,1,389.99,04/14/19 05:32,"741 Hickory St, Dallas, TX 75001" +197324,AAA Batteries (4-pack),1,2.99,04/23/19 19:49,"228 4th St, Portland, OR 97035" +197325,Wired Headphones,1,11.99,04/02/19 23:43,"525 Cherry St, Boston, MA 02215" +197326,Bose SoundSport Headphones,1,99.99,04/30/19 16:32,"846 1st St, Dallas, TX 75001" +197327,Lightning Charging Cable,1,14.95,04/04/19 10:18,"234 Park St, San Francisco, CA 94016" +197328,Lightning Charging Cable,1,14.95,04/23/19 18:35,"823 Hill St, San Francisco, CA 94016" +197329,AA Batteries (4-pack),2,3.84,04/25/19 13:17,"10 Wilson St, Austin, TX 73301" +197330,AA Batteries (4-pack),1,3.84,04/18/19 10:03,"450 13th St, San Francisco, CA 94016" +197331,USB-C Charging Cable,2,11.95,04/18/19 07:49,"468 Maple St, Dallas, TX 75001" +197331,Lightning Charging Cable,1,14.95,04/18/19 07:49,"468 Maple St, Dallas, TX 75001" +197332,27in FHD Monitor,1,149.99,04/09/19 01:22,"923 Sunset St, Portland, OR 97035" +197333,AAA Batteries (4-pack),2,2.99,04/21/19 18:58,"162 1st St, Seattle, WA 98101" +197334,USB-C Charging Cable,1,11.95,04/07/19 14:05,"795 Johnson St, Los Angeles, CA 90001" +197335,Lightning Charging Cable,1,14.95,04/02/19 16:59,"651 Dogwood St, Dallas, TX 75001" +197336,27in 4K Gaming Monitor,1,389.99,04/27/19 17:34,"607 North St, New York City, NY 10001" +197337,Apple Airpods Headphones,1,150,04/23/19 14:02,"923 Chestnut St, Dallas, TX 75001" +197338,AA Batteries (4-pack),3,3.84,04/22/19 20:44,"8 Madison St, Boston, MA 02215" +197339,Lightning Charging Cable,1,14.95,04/24/19 17:43,"423 14th St, Los Angeles, CA 90001" +197340,AAA Batteries (4-pack),1,2.99,04/06/19 17:36,"327 Sunset St, Portland, OR 97035" +197341,AA Batteries (4-pack),1,3.84,04/06/19 22:29,"164 7th St, Boston, MA 02215" +197342,iPhone,1,700,04/03/19 13:13,"481 River St, Portland, OR 97035" +197343,34in Ultrawide Monitor,1,379.99,04/25/19 13:13,"862 Willow St, Portland, OR 97035" +197344,AAA Batteries (4-pack),1,2.99,04/07/19 14:01,"751 Forest St, Seattle, WA 98101" +197345,USB-C Charging Cable,1,11.95,04/17/19 19:20,"547 11th St, Los Angeles, CA 90001" +197346,27in FHD Monitor,1,149.99,04/24/19 19:20,"938 12th St, Dallas, TX 75001" +197347,Google Phone,1,600,04/07/19 14:20,"91 Hickory St, Los Angeles, CA 90001" +197348,27in FHD Monitor,1,149.99,04/11/19 21:02,"286 Cedar St, San Francisco, CA 94016" +197349,AA Batteries (4-pack),2,3.84,04/23/19 18:53,"105 Spruce St, Los Angeles, CA 90001" +197350,Lightning Charging Cable,1,14.95,04/26/19 11:32,"190 Park St, Portland, ME 04101" +197351,AA Batteries (4-pack),2,3.84,04/27/19 17:25,"569 2nd St, Boston, MA 02215" +197352,AAA Batteries (4-pack),1,2.99,04/09/19 17:44,"13 South St, New York City, NY 10001" +197353,USB-C Charging Cable,1,11.95,04/29/19 17:39,"388 Spruce St, Los Angeles, CA 90001" +197354,USB-C Charging Cable,1,11.95,04/14/19 18:24,"616 Dogwood St, New York City, NY 10001" +197355,Wired Headphones,1,11.99,04/08/19 19:13,"911 Elm St, Los Angeles, CA 90001" +197356,27in FHD Monitor,1,149.99,04/02/19 11:42,"106 Hill St, San Francisco, CA 94016" +197357,AAA Batteries (4-pack),1,2.99,04/11/19 18:42,"877 14th St, New York City, NY 10001" +197358,ThinkPad Laptop,1,999.99,04/02/19 21:05,"196 14th St, San Francisco, CA 94016" +197359,AAA Batteries (4-pack),1,2.99,04/02/19 14:28,"484 Main St, Los Angeles, CA 90001" +197359,34in Ultrawide Monitor,1,379.99,04/02/19 14:28,"484 Main St, Los Angeles, CA 90001" +197360,27in 4K Gaming Monitor,1,389.99,04/16/19 00:27,"736 Madison St, Atlanta, GA 30301" +197361,USB-C Charging Cable,1,11.95,04/26/19 21:05,"928 12th St, Atlanta, GA 30301" +197362,Wired Headphones,1,11.99,04/23/19 18:08,"47 South St, Portland, OR 97035" +197363,Google Phone,1,600,04/14/19 11:22,"259 Cedar St, Los Angeles, CA 90001" +197363,USB-C Charging Cable,1,11.95,04/14/19 11:22,"259 Cedar St, Los Angeles, CA 90001" +197364,34in Ultrawide Monitor,1,379.99,04/29/19 00:27,"268 Main St, San Francisco, CA 94016" +197365,AA Batteries (4-pack),2,3.84,04/10/19 07:52,"325 Ridge St, Dallas, TX 75001" +197366,Lightning Charging Cable,1,14.95,04/01/19 13:55,"64 River St, Austin, TX 73301" +197367,Wired Headphones,1,11.99,04/23/19 12:45,"722 Lincoln St, Boston, MA 02215" +197368,AAA Batteries (4-pack),1,2.99,04/06/19 18:02,"835 11th St, Portland, ME 04101" +197369,Bose SoundSport Headphones,1,99.99,04/09/19 13:03,"233 Highland St, Los Angeles, CA 90001" +197370,AAA Batteries (4-pack),1,2.99,04/15/19 14:02,"565 Adams St, Dallas, TX 75001" +197371,Apple Airpods Headphones,1,150,04/08/19 18:19,"580 Main St, Seattle, WA 98101" +197372,iPhone,1,700,04/29/19 22:14,"281 1st St, Los Angeles, CA 90001" +197373,ThinkPad Laptop,1,999.99,04/27/19 22:10,"755 Spruce St, Los Angeles, CA 90001" +197374,Apple Airpods Headphones,1,150,04/26/19 08:12,"276 Willow St, Los Angeles, CA 90001" +197375,34in Ultrawide Monitor,1,379.99,04/02/19 11:46,"18 Park St, Seattle, WA 98101" +197376,27in FHD Monitor,1,149.99,04/17/19 00:57,"686 Cedar St, Los Angeles, CA 90001" +197377,34in Ultrawide Monitor,1,379.99,04/10/19 11:32,"496 10th St, Portland, OR 97035" +197378,Bose SoundSport Headphones,1,99.99,04/13/19 05:14,"553 4th St, Dallas, TX 75001" +197379,Bose SoundSport Headphones,1,99.99,04/03/19 18:12,"646 13th St, Boston, MA 02215" +197380,AAA Batteries (4-pack),2,2.99,04/08/19 21:22,"478 11th St, New York City, NY 10001" +197381,Google Phone,1,600,04/14/19 13:12,"923 Center St, Portland, ME 04101" +197381,Google Phone,1,600,04/14/19 13:12,"923 Center St, Portland, ME 04101" +197382,Flatscreen TV,1,300,04/09/19 10:45,"814 Lincoln St, Austin, TX 73301" +197383,AAA Batteries (4-pack),2,2.99,04/12/19 19:32,"14 Main St, Los Angeles, CA 90001" +197384,Lightning Charging Cable,1,14.95,04/09/19 13:14,"518 1st St, Atlanta, GA 30301" +197385,AAA Batteries (4-pack),2,2.99,04/29/19 09:23,"501 South St, Boston, MA 02215" +197386,Lightning Charging Cable,1,14.95,04/11/19 11:14,"991 Cedar St, Los Angeles, CA 90001" +197387,Lightning Charging Cable,1,14.95,04/14/19 14:11,"351 Hill St, Seattle, WA 98101" +197388,Apple Airpods Headphones,1,150,04/23/19 10:48,"568 Jackson St, Austin, TX 73301" +197389,USB-C Charging Cable,1,11.95,04/25/19 20:20,"396 Jefferson St, New York City, NY 10001" +197390,AAA Batteries (4-pack),1,2.99,04/22/19 20:17,"959 Church St, Seattle, WA 98101" +197391,27in FHD Monitor,1,149.99,04/07/19 01:31,"471 Dogwood St, Los Angeles, CA 90001" +197392,Bose SoundSport Headphones,1,99.99,04/14/19 14:21,"16 Forest St, Los Angeles, CA 90001" +197392,iPhone,1,700,04/14/19 14:21,"16 Forest St, Los Angeles, CA 90001" +197393,27in FHD Monitor,1,149.99,04/02/19 18:39,"682 12th St, Seattle, WA 98101" +197394,27in FHD Monitor,1,149.99,04/26/19 15:25,"617 Willow St, New York City, NY 10001" +197395,USB-C Charging Cable,1,11.95,04/30/19 16:25,"105 South St, New York City, NY 10001" +197396,AAA Batteries (4-pack),2,2.99,04/27/19 08:37,"438 8th St, New York City, NY 10001" +197397,Flatscreen TV,1,300,04/25/19 10:43,"646 Madison St, Seattle, WA 98101" +197398,Wired Headphones,1,11.99,04/29/19 23:08,"873 1st St, New York City, NY 10001" +197399,27in 4K Gaming Monitor,1,389.99,04/16/19 11:24,"230 Jackson St, Seattle, WA 98101" +197400,Bose SoundSport Headphones,1,99.99,04/16/19 19:09,"218 Walnut St, New York City, NY 10001" +197401,Wired Headphones,1,11.99,04/25/19 13:37,"555 Adams St, Seattle, WA 98101" +197402,27in 4K Gaming Monitor,1,389.99,04/29/19 16:01,"557 Wilson St, Boston, MA 02215" +197403,Lightning Charging Cable,1,14.95,04/10/19 23:24,"555 Hill St, New York City, NY 10001" +197404,USB-C Charging Cable,1,11.95,04/12/19 08:58,"493 West St, San Francisco, CA 94016" +197405,USB-C Charging Cable,1,11.95,04/15/19 19:09,"701 14th St, Seattle, WA 98101" +197406,USB-C Charging Cable,1,11.95,04/08/19 18:31,"719 1st St, Los Angeles, CA 90001" +197407,27in FHD Monitor,1,149.99,04/04/19 06:53,"548 Pine St, Boston, MA 02215" +197408,Lightning Charging Cable,1,14.95,04/13/19 12:01,"584 2nd St, Boston, MA 02215" +197408,34in Ultrawide Monitor,1,379.99,04/13/19 12:01,"584 2nd St, Boston, MA 02215" +197409,iPhone,1,700,04/06/19 10:28,"832 Lake St, Boston, MA 02215" +197410,iPhone,1,700,04/15/19 18:33,"886 6th St, Dallas, TX 75001" +197411,34in Ultrawide Monitor,1,379.99,04/13/19 19:12,"270 Ridge St, Los Angeles, CA 90001" +197412,USB-C Charging Cable,1,11.95,04/10/19 08:03,"292 Jefferson St, Los Angeles, CA 90001" +197413,AA Batteries (4-pack),1,3.84,04/17/19 12:58,"150 14th St, Portland, OR 97035" +197414,Lightning Charging Cable,1,14.95,04/02/19 14:10,"567 Wilson St, San Francisco, CA 94016" +197415,Bose SoundSport Headphones,1,99.99,04/15/19 18:34,"920 Johnson St, Portland, OR 97035" +197416,Apple Airpods Headphones,1,150,04/23/19 10:19,"520 Main St, San Francisco, CA 94016" +197417,Apple Airpods Headphones,1,150,04/16/19 13:47,"101 Walnut St, Boston, MA 02215" +197418,Lightning Charging Cable,1,14.95,04/30/19 11:03,"880 Adams St, San Francisco, CA 94016" +197419,AAA Batteries (4-pack),3,2.99,04/24/19 01:05,"734 River St, Los Angeles, CA 90001" +197420,Macbook Pro Laptop,1,1700,04/10/19 13:49,"122 14th St, Atlanta, GA 30301" +197421,Flatscreen TV,1,300,04/17/19 12:45,"180 Pine St, Portland, OR 97035" +197422,ThinkPad Laptop,1,999.99,04/15/19 20:47,"609 Lincoln St, Dallas, TX 75001" +197423,Bose SoundSport Headphones,1,99.99,04/16/19 16:04,"453 Madison St, Los Angeles, CA 90001" +197424,Wired Headphones,1,11.99,04/27/19 20:05,"346 10th St, Austin, TX 73301" +197425,ThinkPad Laptop,1,999.99,04/30/19 09:40,"778 Adams St, San Francisco, CA 94016" +197426,Lightning Charging Cable,1,14.95,04/20/19 23:59,"874 Center St, San Francisco, CA 94016" +197427,20in Monitor,1,109.99,04/07/19 17:09,"202 Wilson St, Seattle, WA 98101" +197428,27in 4K Gaming Monitor,1,389.99,04/04/19 11:13,"689 Highland St, San Francisco, CA 94016" +197429,27in FHD Monitor,1,149.99,04/18/19 18:34,"280 Hill St, San Francisco, CA 94016" +197430,Apple Airpods Headphones,1,150,04/20/19 17:25,"625 Jackson St, Boston, MA 02215" +197431,Apple Airpods Headphones,1,150,04/10/19 00:00,"524 Lakeview St, San Francisco, CA 94016" +197432,AA Batteries (4-pack),1,3.84,04/11/19 11:09,"652 Meadow St, Boston, MA 02215" +197433,USB-C Charging Cable,1,11.95,04/08/19 20:32,"954 Center St, Portland, ME 04101" +197434,Google Phone,1,600,04/12/19 21:53,"987 9th St, Atlanta, GA 30301" +197434,Bose SoundSport Headphones,1,99.99,04/12/19 21:53,"987 9th St, Atlanta, GA 30301" +197435,USB-C Charging Cable,1,11.95,04/27/19 21:43,"688 6th St, Boston, MA 02215" +197436,AA Batteries (4-pack),1,3.84,04/28/19 17:27,"384 12th St, Dallas, TX 75001" +197437,Bose SoundSport Headphones,1,99.99,04/16/19 12:33,"618 Johnson St, Dallas, TX 75001" +197438,AA Batteries (4-pack),2,3.84,04/13/19 21:54,"315 Willow St, New York City, NY 10001" +197439,27in FHD Monitor,1,149.99,04/19/19 23:53,"836 Maple St, Seattle, WA 98101" +197440,AA Batteries (4-pack),1,3.84,04/19/19 14:08,"135 Jackson St, San Francisco, CA 94016" +197441,Apple Airpods Headphones,1,150,04/19/19 18:20,"341 Maple St, Atlanta, GA 30301" +197442,27in FHD Monitor,1,149.99,04/27/19 12:26,"770 Park St, Dallas, TX 75001" +197443,Apple Airpods Headphones,1,150,04/08/19 22:37,"99 Walnut St, Boston, MA 02215" +197444,Apple Airpods Headphones,1,150,04/07/19 07:51,"434 Chestnut St, Boston, MA 02215" +197445,Flatscreen TV,1,300,04/16/19 23:13,"960 Highland St, San Francisco, CA 94016" +197446,Wired Headphones,1,11.99,04/10/19 18:41,"315 4th St, Seattle, WA 98101" +197447,Bose SoundSport Headphones,1,99.99,04/01/19 13:42,"434 Johnson St, New York City, NY 10001" +197448,Lightning Charging Cable,2,14.95,04/16/19 10:12,"463 Highland St, Los Angeles, CA 90001" +197449,AAA Batteries (4-pack),1,2.99,04/27/19 16:24,"794 Hickory St, Seattle, WA 98101" +197450,AA Batteries (4-pack),1,3.84,04/11/19 22:11,"539 Center St, San Francisco, CA 94016" +197451,iPhone,1,700,04/05/19 08:07,"158 River St, San Francisco, CA 94016" +197451,Apple Airpods Headphones,1,150,04/05/19 08:07,"158 River St, San Francisco, CA 94016" +197452,iPhone,1,700,04/10/19 00:22,"604 Dogwood St, Seattle, WA 98101" +197452,Lightning Charging Cable,1,14.95,04/10/19 00:22,"604 Dogwood St, Seattle, WA 98101" +197453,ThinkPad Laptop,1,999.99,04/19/19 23:20,"224 12th St, Dallas, TX 75001" +197454,AA Batteries (4-pack),2,3.84,04/09/19 21:57,"313 Spruce St, San Francisco, CA 94016" +197455,Bose SoundSport Headphones,1,99.99,04/02/19 21:42,"201 10th St, Boston, MA 02215" +197456,USB-C Charging Cable,1,11.95,04/21/19 00:55,"362 Ridge St, Boston, MA 02215" +197457,Bose SoundSport Headphones,1,99.99,04/26/19 08:13,"891 Highland St, San Francisco, CA 94016" +197458,iPhone,1,700,04/23/19 16:47,"158 Johnson St, Los Angeles, CA 90001" +197459,34in Ultrawide Monitor,1,379.99,04/22/19 19:54,"167 Wilson St, New York City, NY 10001" +197460,USB-C Charging Cable,2,11.95,04/28/19 17:58,"594 Wilson St, New York City, NY 10001" +197461,AAA Batteries (4-pack),1,2.99,04/15/19 18:32,"132 Cherry St, Austin, TX 73301" +197462,iPhone,1,700,04/10/19 19:36,"159 Willow St, Portland, ME 04101" +197463,USB-C Charging Cable,1,11.95,04/15/19 11:17,"746 Cedar St, New York City, NY 10001" +197464,USB-C Charging Cable,1,11.95,04/26/19 10:27,"658 Adams St, New York City, NY 10001" +197465,AA Batteries (4-pack),1,3.84,04/30/19 22:33,"723 12th St, Boston, MA 02215" +197466,AAA Batteries (4-pack),1,2.99,04/27/19 12:39,"340 South St, San Francisco, CA 94016" +197467,ThinkPad Laptop,1,999.99,04/20/19 19:56,"252 Ridge St, Dallas, TX 75001" +197468,Flatscreen TV,1,300,04/27/19 20:41,"503 Church St, Seattle, WA 98101" +197469,Apple Airpods Headphones,1,150,04/18/19 19:08,"456 12th St, New York City, NY 10001" +197470,Lightning Charging Cable,1,14.95,04/09/19 13:37,"691 West St, Atlanta, GA 30301" +197471,iPhone,1,700,04/15/19 23:31,"974 River St, Dallas, TX 75001" +197472,27in 4K Gaming Monitor,1,389.99,04/17/19 07:31,"392 8th St, San Francisco, CA 94016" +197473,AA Batteries (4-pack),1,3.84,04/06/19 13:21,"391 Dogwood St, Boston, MA 02215" +197474,AA Batteries (4-pack),1,3.84,04/13/19 13:27,"66 Hickory St, New York City, NY 10001" +197475,Apple Airpods Headphones,1,150,04/25/19 21:11,"54 9th St, New York City, NY 10001" +197476,Apple Airpods Headphones,1,150,04/10/19 08:30,"15 Jackson St, San Francisco, CA 94016" +197477,Flatscreen TV,1,300,04/26/19 10:05,"628 Cedar St, Atlanta, GA 30301" +197478,USB-C Charging Cable,1,11.95,04/10/19 07:04,"799 Elm St, Seattle, WA 98101" +197479,USB-C Charging Cable,1,11.95,04/08/19 06:54,"75 Washington St, Seattle, WA 98101" +197480,USB-C Charging Cable,1,11.95,04/09/19 12:17,"479 Lake St, Seattle, WA 98101" +197480,20in Monitor,1,109.99,04/09/19 12:17,"479 Lake St, Seattle, WA 98101" +197481,AAA Batteries (4-pack),1,2.99,04/13/19 16:44,"458 Church St, New York City, NY 10001" +197482,iPhone,1,700,04/19/19 13:37,"251 Park St, Boston, MA 02215" +197483,Wired Headphones,1,11.99,04/21/19 07:01,"482 6th St, New York City, NY 10001" +197484,Lightning Charging Cable,1,14.95,04/24/19 12:05,"942 Ridge St, Dallas, TX 75001" +197485,Wired Headphones,1,11.99,04/25/19 16:35,"837 7th St, San Francisco, CA 94016" +197486,Apple Airpods Headphones,1,150,04/18/19 23:47,"144 North St, San Francisco, CA 94016" +197487,Wired Headphones,1,11.99,04/24/19 17:12,"150 Cedar St, Dallas, TX 75001" +197488,Wired Headphones,1,11.99,04/03/19 14:37,"548 Sunset St, San Francisco, CA 94016" +197489,AA Batteries (4-pack),1,3.84,04/08/19 12:09,"841 Walnut St, Los Angeles, CA 90001" +197490,Lightning Charging Cable,1,14.95,04/30/19 14:35,"72 Ridge St, New York City, NY 10001" +197491,iPhone,1,700,04/25/19 18:19,"497 7th St, San Francisco, CA 94016" +197492,AA Batteries (4-pack),1,3.84,04/25/19 17:18,"517 14th St, Boston, MA 02215" +197493,AA Batteries (4-pack),1,3.84,04/25/19 09:14,"768 Meadow St, New York City, NY 10001" +197494,AAA Batteries (4-pack),1,2.99,04/07/19 06:24,"96 Maple St, New York City, NY 10001" +197495,AA Batteries (4-pack),1,3.84,04/06/19 12:28,"138 2nd St, San Francisco, CA 94016" +197496,AA Batteries (4-pack),3,3.84,04/03/19 20:33,"257 Madison St, New York City, NY 10001" +197497,Bose SoundSport Headphones,1,99.99,04/19/19 14:48,"605 Elm St, Boston, MA 02215" +197498,Google Phone,1,600,04/26/19 22:41,"160 Chestnut St, Dallas, TX 75001" +197498,Wired Headphones,1,11.99,04/26/19 22:41,"160 Chestnut St, Dallas, TX 75001" +197499,ThinkPad Laptop,1,999.99,04/20/19 11:14,"140 Elm St, San Francisco, CA 94016" +197500,Lightning Charging Cable,1,14.95,04/26/19 09:59,"708 8th St, Boston, MA 02215" +197501,Flatscreen TV,1,300,04/20/19 20:12,"962 Hickory St, Portland, OR 97035" +197502,AA Batteries (4-pack),4,3.84,04/05/19 12:15,"500 Lakeview St, Atlanta, GA 30301" +197503,27in FHD Monitor,1,149.99,04/19/19 09:20,"743 Chestnut St, Dallas, TX 75001" +197504,Apple Airpods Headphones,1,150,04/07/19 00:25,"410 1st St, New York City, NY 10001" +197505,Vareebadd Phone,1,400,04/19/19 17:47,"56 Meadow St, Dallas, TX 75001" +197505,USB-C Charging Cable,1,11.95,04/19/19 17:47,"56 Meadow St, Dallas, TX 75001" +197506,Macbook Pro Laptop,1,1700,04/30/19 10:31,"949 Jackson St, Los Angeles, CA 90001" +197507,USB-C Charging Cable,2,11.95,04/11/19 23:17,"11 Ridge St, Dallas, TX 75001" +197508,Wired Headphones,1,11.99,04/10/19 01:03,"488 Main St, Austin, TX 73301" +197509,Lightning Charging Cable,1,14.95,04/11/19 09:36,"509 Highland St, Dallas, TX 75001" +197510,Apple Airpods Headphones,1,150,04/05/19 19:27,"961 Pine St, Seattle, WA 98101" +197511,AA Batteries (4-pack),1,3.84,04/01/19 12:20,"495 12th St, San Francisco, CA 94016" +197512,AAA Batteries (4-pack),2,2.99,04/12/19 22:34,"241 Sunset St, San Francisco, CA 94016" +197513,Wired Headphones,1,11.99,04/26/19 15:04,"638 North St, Boston, MA 02215" +197514,20in Monitor,1,109.99,04/20/19 00:43,"537 Johnson St, Austin, TX 73301" +197515,Lightning Charging Cable,1,14.95,04/07/19 11:18,"331 Washington St, Los Angeles, CA 90001" +197516,Bose SoundSport Headphones,1,99.99,04/29/19 12:12,"956 Cedar St, San Francisco, CA 94016" +197517,27in 4K Gaming Monitor,1,389.99,04/29/19 10:48,"266 Pine St, Boston, MA 02215" +197518,USB-C Charging Cable,1,11.95,04/10/19 18:46,"975 Hickory St, Seattle, WA 98101" +197519,AAA Batteries (4-pack),1,2.99,04/20/19 16:02,"88 Park St, Portland, OR 97035" +197520,Lightning Charging Cable,1,14.95,04/17/19 13:44,"471 River St, Los Angeles, CA 90001" +197521,Flatscreen TV,1,300,04/10/19 10:59,"77 2nd St, Dallas, TX 75001" +197522,Flatscreen TV,1,300,04/24/19 17:58,"243 Elm St, Dallas, TX 75001" +197523,AAA Batteries (4-pack),1,2.99,04/01/19 23:17,"336 Elm St, Atlanta, GA 30301" +197524,Bose SoundSport Headphones,1,99.99,04/19/19 15:03,"266 West St, Portland, ME 04101" +197525,27in 4K Gaming Monitor,1,389.99,04/02/19 11:44,"870 7th St, San Francisco, CA 94016" +197526,AA Batteries (4-pack),1,3.84,04/05/19 20:43,"151 Washington St, Dallas, TX 75001" +197527,AAA Batteries (4-pack),2,2.99,04/16/19 14:23,"77 Jackson St, Dallas, TX 75001" +197528,Apple Airpods Headphones,1,150,04/23/19 06:39,"282 10th St, New York City, NY 10001" +197529,Apple Airpods Headphones,1,150,04/22/19 09:17,"106 Jackson St, Atlanta, GA 30301" +197530,Lightning Charging Cable,1,14.95,04/08/19 15:51,"864 River St, San Francisco, CA 94016" +197531,Lightning Charging Cable,1,14.95,04/20/19 13:23,"143 Wilson St, San Francisco, CA 94016" +197532,AAA Batteries (4-pack),1,2.99,04/30/19 19:33,"547 North St, Boston, MA 02215" +197533,AA Batteries (4-pack),2,3.84,04/17/19 17:47,"584 13th St, Boston, MA 02215" +197534,27in 4K Gaming Monitor,1,389.99,04/07/19 19:46,"103 Lincoln St, Boston, MA 02215" +197535,ThinkPad Laptop,1,999.99,04/03/19 09:22,"119 Lake St, San Francisco, CA 94016" +197536,27in FHD Monitor,1,149.99,04/30/19 15:19,"178 Forest St, San Francisco, CA 94016" +197537,Lightning Charging Cable,2,14.95,04/18/19 21:23,"497 West St, Portland, OR 97035" +197538,AAA Batteries (4-pack),1,2.99,04/28/19 17:44,"944 Hill St, San Francisco, CA 94016" +197539,AAA Batteries (4-pack),1,2.99,04/02/19 22:18,"458 Lakeview St, Boston, MA 02215" +197540,20in Monitor,1,109.99,04/10/19 19:04,"578 Walnut St, San Francisco, CA 94016" +197541,USB-C Charging Cable,1,11.95,04/06/19 20:29,"285 Church St, San Francisco, CA 94016" +197541,Wired Headphones,1,11.99,04/06/19 20:29,"285 Church St, San Francisco, CA 94016" +197542,AAA Batteries (4-pack),1,2.99,04/24/19 22:57,"18 Main St, Seattle, WA 98101" +197543,Wired Headphones,1,11.99,04/12/19 04:56,"359 River St, San Francisco, CA 94016" +197544,AAA Batteries (4-pack),1,2.99,04/12/19 18:14,"617 Lincoln St, Los Angeles, CA 90001" +197545,Flatscreen TV,1,300,04/21/19 22:49,"16 Hill St, Boston, MA 02215" +197546,AA Batteries (4-pack),2,3.84,04/06/19 15:30,"845 West St, San Francisco, CA 94016" +197547,AAA Batteries (4-pack),1,2.99,04/16/19 10:19,"582 North St, Portland, OR 97035" +197548,USB-C Charging Cable,1,11.95,04/25/19 16:37,"196 Ridge St, San Francisco, CA 94016" +197549,Wired Headphones,1,11.99,04/02/19 20:03,"46 Lakeview St, Los Angeles, CA 90001" +197550,Lightning Charging Cable,1,14.95,04/26/19 06:09,"810 North St, Dallas, TX 75001" +197551,Apple Airpods Headphones,1,150,04/06/19 20:19,"4 12th St, Los Angeles, CA 90001" +197552,Flatscreen TV,1,300,04/17/19 23:07,"274 Wilson St, Portland, OR 97035" +197553,Flatscreen TV,1,300,04/24/19 23:53,"958 Elm St, Portland, OR 97035" +197554,Lightning Charging Cable,1,14.95,04/13/19 14:59,"89 Elm St, New York City, NY 10001" +197555,27in FHD Monitor,1,149.99,04/14/19 22:28,"174 Walnut St, New York City, NY 10001" +197556,34in Ultrawide Monitor,1,379.99,04/23/19 10:54,"699 Meadow St, Los Angeles, CA 90001" +197557,27in FHD Monitor,1,149.99,04/27/19 16:39,"592 5th St, Seattle, WA 98101" +197557,Wired Headphones,1,11.99,04/27/19 16:39,"592 5th St, Seattle, WA 98101" +197558,AA Batteries (4-pack),3,3.84,04/07/19 07:31,"970 10th St, Seattle, WA 98101" +197559,AA Batteries (4-pack),1,3.84,04/28/19 15:51,"133 West St, Boston, MA 02215" +197560,AA Batteries (4-pack),1,3.84,04/28/19 18:47,"328 10th St, San Francisco, CA 94016" +197561,27in FHD Monitor,1,149.99,04/11/19 06:09,"250 Walnut St, Los Angeles, CA 90001" +197562,AAA Batteries (4-pack),1,2.99,04/17/19 21:18,"48 4th St, Los Angeles, CA 90001" +197563,ThinkPad Laptop,1,999.99,04/30/19 20:48,"528 4th St, Austin, TX 73301" +197564,AAA Batteries (4-pack),3,2.99,04/08/19 19:34,"428 Johnson St, Portland, OR 97035" +197565,Google Phone,1,600,04/09/19 11:30,"823 Jefferson St, Los Angeles, CA 90001" +197565,Bose SoundSport Headphones,1,99.99,04/09/19 11:30,"823 Jefferson St, Los Angeles, CA 90001" +197566,USB-C Charging Cable,1,11.95,04/09/19 11:32,"953 West St, Portland, OR 97035" +197567,Wired Headphones,1,11.99,04/21/19 20:16,"750 11th St, Dallas, TX 75001" +197568,Bose SoundSport Headphones,1,99.99,04/09/19 23:49,"961 Johnson St, San Francisco, CA 94016" +197569,27in 4K Gaming Monitor,1,389.99,04/15/19 18:00,"516 2nd St, San Francisco, CA 94016" +197569,Wired Headphones,1,11.99,04/15/19 18:00,"516 2nd St, San Francisco, CA 94016" +197570,Macbook Pro Laptop,1,1700,04/10/19 11:52,"13 4th St, New York City, NY 10001" +197571,ThinkPad Laptop,1,999.99,04/07/19 07:34,"71 Cedar St, Boston, MA 02215" +197572,AA Batteries (4-pack),1,3.84,04/04/19 19:17,"278 Lake St, New York City, NY 10001" +197573,Wired Headphones,1,11.99,04/16/19 12:22,"592 River St, Boston, MA 02215" +197574,Bose SoundSport Headphones,1,99.99,04/17/19 13:40,"973 River St, San Francisco, CA 94016" +197575,Apple Airpods Headphones,1,150,04/21/19 02:39,"302 Dogwood St, San Francisco, CA 94016" +197576,USB-C Charging Cable,1,11.95,04/08/19 07:08,"263 13th St, San Francisco, CA 94016" +197577,Apple Airpods Headphones,1,150,04/27/19 12:51,"885 11th St, San Francisco, CA 94016" +197578,Lightning Charging Cable,1,14.95,04/01/19 17:14,"274 4th St, Seattle, WA 98101" +197579,AA Batteries (4-pack),2,3.84,04/30/19 04:36,"296 Cedar St, Austin, TX 73301" +197580,Google Phone,1,600,04/15/19 19:27,"293 South St, New York City, NY 10001" +197580,Bose SoundSport Headphones,1,99.99,04/15/19 19:27,"293 South St, New York City, NY 10001" +197581,Wired Headphones,1,11.99,04/05/19 13:26,"724 Jackson St, Seattle, WA 98101" +197582,AAA Batteries (4-pack),1,2.99,04/06/19 17:57,"527 6th St, Portland, OR 97035" +197583,Macbook Pro Laptop,1,1700,04/07/19 17:30,"164 Highland St, Austin, TX 73301" +197584,27in 4K Gaming Monitor,1,389.99,04/30/19 16:56,"60 Cedar St, San Francisco, CA 94016" +197585,Apple Airpods Headphones,1,150,04/20/19 22:34,"356 Jefferson St, Portland, ME 04101" +197586,Apple Airpods Headphones,1,150,04/26/19 17:32,"846 Jackson St, Boston, MA 02215" +197587,Wired Headphones,1,11.99,04/10/19 10:31,"240 11th St, Los Angeles, CA 90001" +197587,AA Batteries (4-pack),3,3.84,04/10/19 10:31,"240 11th St, Los Angeles, CA 90001" +197588,Lightning Charging Cable,1,14.95,04/30/19 16:06,"846 Chestnut St, Seattle, WA 98101" +197589,AAA Batteries (4-pack),1,2.99,04/15/19 20:30,"756 4th St, Seattle, WA 98101" +197590,USB-C Charging Cable,1,11.95,04/08/19 07:34,"661 River St, San Francisco, CA 94016" +197591,Lightning Charging Cable,1,14.95,04/17/19 08:19,"689 Cedar St, Boston, MA 02215" +197592,iPhone,1,700,04/22/19 15:43,"131 Cedar St, Atlanta, GA 30301" +197593,34in Ultrawide Monitor,1,379.99,04/29/19 18:00,"32 Spruce St, Los Angeles, CA 90001" +197594,Lightning Charging Cable,1,14.95,04/16/19 19:36,"878 Lincoln St, San Francisco, CA 94016" +197595,USB-C Charging Cable,1,11.95,04/30/19 17:47,"912 Dogwood St, Portland, OR 97035" +197596,Bose SoundSport Headphones,1,99.99,04/19/19 19:47,"693 West St, Los Angeles, CA 90001" +197597,AAA Batteries (4-pack),2,2.99,04/25/19 13:33,"927 13th St, Los Angeles, CA 90001" +197598,Apple Airpods Headphones,1,150,04/13/19 10:39,"161 Elm St, San Francisco, CA 94016" +197599,USB-C Charging Cable,1,11.95,04/12/19 12:33,"695 Jefferson St, Portland, ME 04101" +197600,Apple Airpods Headphones,1,150,04/24/19 12:37,"422 2nd St, San Francisco, CA 94016" +197601,Apple Airpods Headphones,1,150,04/11/19 02:08,"418 Highland St, Los Angeles, CA 90001" +197602,AA Batteries (4-pack),1,3.84,04/15/19 23:53,"862 Highland St, Los Angeles, CA 90001" +197603,Wired Headphones,1,11.99,04/14/19 19:36,"825 Washington St, Portland, OR 97035" +197604,27in FHD Monitor,1,149.99,04/15/19 10:37,"361 5th St, Los Angeles, CA 90001" +197604,iPhone,1,700,04/15/19 10:37,"361 5th St, Los Angeles, CA 90001" +197605,Lightning Charging Cable,1,14.95,04/17/19 09:11,"803 Lincoln St, New York City, NY 10001" +197606,AAA Batteries (4-pack),1,2.99,04/28/19 09:44,"902 7th St, Los Angeles, CA 90001" +197607,Apple Airpods Headphones,1,150,04/01/19 10:23,"367 Cherry St, San Francisco, CA 94016" +197608,Macbook Pro Laptop,1,1700,04/01/19 17:18,"468 Pine St, New York City, NY 10001" +197609,ThinkPad Laptop,1,999.99,04/07/19 12:02,"292 Walnut St, Los Angeles, CA 90001" +197610,Wired Headphones,1,11.99,04/10/19 14:49,"936 South St, Los Angeles, CA 90001" +197611,AAA Batteries (4-pack),1,2.99,04/21/19 18:05,"110 South St, Atlanta, GA 30301" +197612,Lightning Charging Cable,1,14.95,04/24/19 04:49,"423 Jackson St, Austin, TX 73301" +197613,USB-C Charging Cable,1,11.95,04/12/19 15:30,"596 West St, Austin, TX 73301" +197614,USB-C Charging Cable,1,11.95,04/21/19 12:08,"860 Wilson St, Dallas, TX 75001" +197615,AA Batteries (4-pack),1,3.84,04/06/19 09:53,"556 4th St, Austin, TX 73301" +197616,Wired Headphones,1,11.99,04/05/19 16:51,"671 Chestnut St, Austin, TX 73301" +197617,Lightning Charging Cable,1,14.95,04/07/19 22:35,"237 13th St, San Francisco, CA 94016" +197618,Macbook Pro Laptop,1,1700,04/22/19 14:00,"490 Meadow St, Los Angeles, CA 90001" +197619,AAA Batteries (4-pack),3,2.99,04/15/19 22:46,"984 Center St, Los Angeles, CA 90001" +197620,USB-C Charging Cable,1,11.95,04/18/19 10:34,"189 5th St, Atlanta, GA 30301" +197621,Flatscreen TV,1,300,04/08/19 18:37,"418 Cherry St, Boston, MA 02215" +197622,AA Batteries (4-pack),1,3.84,04/23/19 00:09,"900 River St, San Francisco, CA 94016" +197623,Lightning Charging Cable,1,14.95,04/28/19 17:28,"371 South St, Boston, MA 02215" +197624,AAA Batteries (4-pack),1,2.99,04/22/19 20:05,"226 Wilson St, Los Angeles, CA 90001" +197625,AA Batteries (4-pack),1,3.84,04/23/19 09:18,"868 Highland St, Portland, OR 97035" +197626,27in FHD Monitor,1,149.99,04/19/19 11:10,"490 Lake St, Los Angeles, CA 90001" +197627,iPhone,1,700,04/29/19 14:44,"668 5th St, Boston, MA 02215" +197627,Lightning Charging Cable,1,14.95,04/29/19 14:44,"668 5th St, Boston, MA 02215" +197628,iPhone,1,700,04/09/19 21:04,"498 Adams St, San Francisco, CA 94016" +197628,Wired Headphones,1,11.99,04/09/19 21:04,"498 Adams St, San Francisco, CA 94016" +197629,Macbook Pro Laptop,1,1700,04/23/19 21:24,"487 Church St, San Francisco, CA 94016" +197630,Lightning Charging Cable,1,14.95,04/02/19 21:15,"731 South St, New York City, NY 10001" +197631,USB-C Charging Cable,1,11.95,04/30/19 09:13,"625 11th St, New York City, NY 10001" +197632,Apple Airpods Headphones,1,150,04/13/19 12:12,"590 Adams St, Atlanta, GA 30301" +197633,Lightning Charging Cable,1,14.95,04/17/19 12:18,"591 River St, Atlanta, GA 30301" +197634,Wired Headphones,1,11.99,04/18/19 17:49,"586 Highland St, Seattle, WA 98101" +197635,Apple Airpods Headphones,1,150,04/28/19 00:01,"974 Sunset St, New York City, NY 10001" +197636,USB-C Charging Cable,1,11.95,04/03/19 21:34,"281 Adams St, Atlanta, GA 30301" +197637,Lightning Charging Cable,1,14.95,04/04/19 08:45,"903 14th St, San Francisco, CA 94016" +197638,AA Batteries (4-pack),1,3.84,04/15/19 07:57,"948 Highland St, Austin, TX 73301" +197639,AA Batteries (4-pack),1,3.84,04/21/19 10:46,"36 5th St, New York City, NY 10001" +197640,USB-C Charging Cable,1,11.95,04/15/19 20:43,"106 Chestnut St, Seattle, WA 98101" +197641,Lightning Charging Cable,1,14.95,04/18/19 18:22,"27 Jefferson St, Atlanta, GA 30301" +197642,Wired Headphones,1,11.99,04/03/19 11:37,"13 Jefferson St, Dallas, TX 75001" +197643,34in Ultrawide Monitor,1,379.99,04/15/19 05:33,"21 Ridge St, Austin, TX 73301" +197644,Lightning Charging Cable,1,14.95,04/03/19 14:09,"481 Pine St, San Francisco, CA 94016" +197645,Lightning Charging Cable,1,14.95,04/13/19 09:34,"475 14th St, New York City, NY 10001" +197646,Google Phone,1,600,04/18/19 11:26,"32 Ridge St, Los Angeles, CA 90001" +197646,Wired Headphones,1,11.99,04/18/19 11:26,"32 Ridge St, Los Angeles, CA 90001" +197647,Lightning Charging Cable,1,14.95,04/09/19 13:57,"773 1st St, Portland, OR 97035" +197648,27in 4K Gaming Monitor,1,389.99,04/20/19 16:57,"111 Park St, Boston, MA 02215" +197649,USB-C Charging Cable,1,11.95,04/29/19 06:29,"621 West St, Portland, ME 04101" +197650,Lightning Charging Cable,1,14.95,04/07/19 16:30,"182 Washington St, San Francisco, CA 94016" +197651,Wired Headphones,1,11.99,04/01/19 22:59,"260 Madison St, Los Angeles, CA 90001" +197652,Bose SoundSport Headphones,1,99.99,04/26/19 22:47,"403 Johnson St, Dallas, TX 75001" +197653,iPhone,1,700,04/07/19 12:57,"950 Lake St, San Francisco, CA 94016" +197653,Apple Airpods Headphones,1,150,04/07/19 12:57,"950 Lake St, San Francisco, CA 94016" +197653,Wired Headphones,1,11.99,04/07/19 12:57,"950 Lake St, San Francisco, CA 94016" +197654,AA Batteries (4-pack),2,3.84,04/19/19 15:32,"994 12th St, San Francisco, CA 94016" +197655,AA Batteries (4-pack),1,3.84,04/28/19 16:39,"80 8th St, Los Angeles, CA 90001" +197656,USB-C Charging Cable,1,11.95,04/01/19 15:08,"728 9th St, New York City, NY 10001" +197657,Lightning Charging Cable,1,14.95,04/05/19 17:43,"952 Church St, Boston, MA 02215" +197658,Wired Headphones,1,11.99,04/20/19 18:20,"213 12th St, Los Angeles, CA 90001" +197659,Macbook Pro Laptop,1,1700,04/08/19 14:48,"494 Main St, Atlanta, GA 30301" +197660,Apple Airpods Headphones,1,150,04/09/19 16:36,"429 Cherry St, Dallas, TX 75001" +197661,Macbook Pro Laptop,1,1700,04/13/19 21:25,"179 1st St, San Francisco, CA 94016" +197662,34in Ultrawide Monitor,1,379.99,04/26/19 10:20,"971 Highland St, Los Angeles, CA 90001" +197663,Flatscreen TV,1,300,04/10/19 11:36,"588 West St, Boston, MA 02215" +197664,Lightning Charging Cable,1,14.95,04/28/19 10:31,"499 2nd St, Boston, MA 02215" +197665,Wired Headphones,1,11.99,04/23/19 18:18,"919 Chestnut St, San Francisco, CA 94016" +197666,Lightning Charging Cable,1,14.95,04/22/19 00:42,"400 Wilson St, Los Angeles, CA 90001" +197667,AAA Batteries (4-pack),3,2.99,04/16/19 21:33,"555 Jackson St, Dallas, TX 75001" +197668,Flatscreen TV,1,300,04/17/19 08:53,"457 Pine St, Los Angeles, CA 90001" +197669,AA Batteries (4-pack),2,3.84,04/08/19 20:09,"415 6th St, Los Angeles, CA 90001" +197670,AAA Batteries (4-pack),1,2.99,04/17/19 13:35,"942 River St, Portland, OR 97035" +197671,Macbook Pro Laptop,1,1700,04/21/19 09:46,"516 Maple St, Los Angeles, CA 90001" +197672,Flatscreen TV,1,300,04/24/19 10:54,"949 Meadow St, Dallas, TX 75001" +197673,Apple Airpods Headphones,1,150,04/28/19 12:40,"403 Sunset St, Los Angeles, CA 90001" +197674,AA Batteries (4-pack),1,3.84,04/30/19 16:50,"934 Cedar St, Dallas, TX 75001" +197674,Google Phone,1,600,04/30/19 16:50,"934 Cedar St, Dallas, TX 75001" +197675,AAA Batteries (4-pack),3,2.99,04/13/19 23:06,"202 Willow St, New York City, NY 10001" +197676,Bose SoundSport Headphones,1,99.99,04/29/19 13:56,"912 Dogwood St, Los Angeles, CA 90001" +197677,USB-C Charging Cable,1,11.95,04/02/19 13:06,"270 4th St, San Francisco, CA 94016" +197678,USB-C Charging Cable,1,11.95,04/24/19 11:57,"645 West St, Dallas, TX 75001" +197679,Lightning Charging Cable,1,14.95,04/09/19 14:21,"298 Main St, Dallas, TX 75001" +197680,AA Batteries (4-pack),5,3.84,04/29/19 09:00,"751 North St, San Francisco, CA 94016" +197681,Wired Headphones,1,11.99,04/22/19 08:33,"626 Center St, Dallas, TX 75001" +197682,27in FHD Monitor,1,149.99,04/24/19 18:31,"315 Dogwood St, Seattle, WA 98101" +197683,27in FHD Monitor,1,149.99,04/18/19 17:28,"758 13th St, Portland, OR 97035" +197684,Wired Headphones,1,11.99,04/06/19 02:14,"812 Sunset St, San Francisco, CA 94016" +197685,Flatscreen TV,1,300,04/06/19 16:18,"727 13th St, Atlanta, GA 30301" +197686,Google Phone,1,600,04/23/19 15:19,"320 Pine St, Atlanta, GA 30301" +197687,Lightning Charging Cable,1,14.95,04/10/19 21:57,"72 Meadow St, Boston, MA 02215" +197688,USB-C Charging Cable,1,11.95,04/07/19 13:08,"105 Cherry St, Atlanta, GA 30301" +197689,AAA Batteries (4-pack),4,2.99,04/28/19 14:13,"913 Hickory St, Boston, MA 02215" +197690,USB-C Charging Cable,1,11.95,04/23/19 12:51,"389 South St, Atlanta, GA 30301" +197691,Wired Headphones,1,11.99,04/21/19 15:17,"474 Main St, Seattle, WA 98101" +197692,34in Ultrawide Monitor,1,379.99,04/13/19 22:16,"954 North St, New York City, NY 10001" +197693,Lightning Charging Cable,1,14.95,04/29/19 16:58,"408 4th St, New York City, NY 10001" +197694,AAA Batteries (4-pack),1,2.99,04/24/19 19:08,"174 Ridge St, San Francisco, CA 94016" +197695,AAA Batteries (4-pack),3,2.99,04/26/19 13:21,"252 Lincoln St, New York City, NY 10001" +197696,AA Batteries (4-pack),1,3.84,04/19/19 21:35,"596 Willow St, New York City, NY 10001" +197697,Apple Airpods Headphones,1,150,04/29/19 10:05,"606 River St, Boston, MA 02215" +197698,USB-C Charging Cable,1,11.95,04/05/19 02:11,"655 Pine St, Austin, TX 73301" +197699,20in Monitor,1,109.99,04/21/19 09:33,"594 Maple St, Los Angeles, CA 90001" +197700,27in FHD Monitor,1,149.99,04/26/19 17:33,"430 Madison St, New York City, NY 10001" +197701,20in Monitor,1,109.99,04/25/19 20:13,"777 Forest St, Atlanta, GA 30301" +197702,Apple Airpods Headphones,1,150,04/23/19 08:27,"95 10th St, Los Angeles, CA 90001" +197703,ThinkPad Laptop,1,999.99,04/23/19 15:27,"671 11th St, San Francisco, CA 94016" +197704,27in 4K Gaming Monitor,1,389.99,04/06/19 14:42,"587 Jefferson St, Seattle, WA 98101" +197705,Bose SoundSport Headphones,1,99.99,04/09/19 13:36,"367 Highland St, San Francisco, CA 94016" +197706,27in 4K Gaming Monitor,1,389.99,04/29/19 12:22,"957 10th St, San Francisco, CA 94016" +197707,ThinkPad Laptop,1,999.99,04/16/19 21:55,"288 Jefferson St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +197708,USB-C Charging Cable,1,11.95,04/05/19 12:45,"102 Center St, San Francisco, CA 94016" +197709,Wired Headphones,1,11.99,04/09/19 20:53,"83 North St, San Francisco, CA 94016" +197710,AA Batteries (4-pack),1,3.84,04/14/19 13:42,"865 14th St, Austin, TX 73301" +197711,34in Ultrawide Monitor,1,379.99,04/04/19 12:35,"894 10th St, Los Angeles, CA 90001" +197712,34in Ultrawide Monitor,1,379.99,04/02/19 09:05,"290 Cedar St, Boston, MA 02215" +197713,Apple Airpods Headphones,1,150,04/27/19 13:51,"679 5th St, Boston, MA 02215" +197714,ThinkPad Laptop,1,999.99,04/15/19 18:45,"436 Highland St, New York City, NY 10001" +197715,ThinkPad Laptop,1,999.99,04/08/19 21:44,"330 7th St, New York City, NY 10001" +197716,34in Ultrawide Monitor,1,379.99,04/30/19 14:30,"201 Pine St, Portland, ME 04101" +197717,Wired Headphones,1,11.99,04/02/19 17:37,"197 Sunset St, San Francisco, CA 94016" +197718,AA Batteries (4-pack),4,3.84,04/02/19 02:43,"70 9th St, Seattle, WA 98101" +197719,AAA Batteries (4-pack),1,2.99,04/22/19 15:16,"7 14th St, Los Angeles, CA 90001" +197720,Lightning Charging Cable,2,14.95,04/06/19 12:01,"167 6th St, San Francisco, CA 94016" +197721,Lightning Charging Cable,1,14.95,04/08/19 12:08,"284 Church St, San Francisco, CA 94016" +197722,20in Monitor,1,109.99,04/17/19 17:55,"636 8th St, Seattle, WA 98101" +197723,AA Batteries (4-pack),1,3.84,04/11/19 15:39,"138 Elm St, San Francisco, CA 94016" +197724,Apple Airpods Headphones,1,150,04/29/19 09:21,"810 Chestnut St, San Francisco, CA 94016" +197725,AA Batteries (4-pack),1,3.84,04/04/19 09:08,"473 Jefferson St, Portland, OR 97035" +197726,Lightning Charging Cable,1,14.95,04/12/19 21:28,"147 Lakeview St, San Francisco, CA 94016" +197727,Wired Headphones,1,11.99,04/05/19 15:24,"187 Willow St, Seattle, WA 98101" +197728,Wired Headphones,2,11.99,04/04/19 20:55,"540 12th St, Los Angeles, CA 90001" +197729,Lightning Charging Cable,1,14.95,04/27/19 20:46,"114 Lakeview St, Boston, MA 02215" +197730,Google Phone,1,600,04/09/19 17:35,"616 10th St, San Francisco, CA 94016" +197731,Wired Headphones,1,11.99,04/16/19 09:01,"664 9th St, Atlanta, GA 30301" +197732,Apple Airpods Headphones,1,150,04/02/19 18:08,"196 4th St, San Francisco, CA 94016" +197733,Apple Airpods Headphones,1,150,04/13/19 21:23,"418 5th St, San Francisco, CA 94016" +197734,AAA Batteries (4-pack),2,2.99,04/12/19 10:54,"309 Wilson St, Seattle, WA 98101" +197735,Apple Airpods Headphones,1,150,04/27/19 21:02,"3 Pine St, San Francisco, CA 94016" +197736,AA Batteries (4-pack),2,3.84,04/23/19 21:47,"762 Main St, New York City, NY 10001" +197737,Apple Airpods Headphones,1,150,04/02/19 21:29,"770 5th St, Los Angeles, CA 90001" +197738,34in Ultrawide Monitor,1,379.99,04/05/19 14:29,"425 Willow St, San Francisco, CA 94016" +197739,27in 4K Gaming Monitor,1,389.99,04/14/19 08:04,"742 Lincoln St, San Francisco, CA 94016" +197740,AAA Batteries (4-pack),1,2.99,04/16/19 20:26,"259 Jackson St, New York City, NY 10001" +197741,AA Batteries (4-pack),2,3.84,04/11/19 09:45,"804 11th St, Austin, TX 73301" +197742,27in 4K Gaming Monitor,1,389.99,04/27/19 22:17,"700 Meadow St, Boston, MA 02215" +197743,USB-C Charging Cable,1,11.95,04/14/19 11:10,"62 Hill St, New York City, NY 10001" +197744,Wired Headphones,1,11.99,04/24/19 20:31,"237 4th St, Seattle, WA 98101" +197745,iPhone,1,700,04/01/19 19:39,"859 Maple St, Los Angeles, CA 90001" +197746,Lightning Charging Cable,1,14.95,04/24/19 18:35,"962 5th St, San Francisco, CA 94016" +197747,Apple Airpods Headphones,1,150,04/22/19 15:55,"141 South St, San Francisco, CA 94016" +197748,USB-C Charging Cable,1,11.95,04/24/19 10:18,"186 Lakeview St, San Francisco, CA 94016" +197749,USB-C Charging Cable,1,11.95,04/18/19 19:58,"928 Madison St, San Francisco, CA 94016" +197750,Lightning Charging Cable,1,14.95,04/23/19 10:18,"14 Maple St, New York City, NY 10001" +197751,USB-C Charging Cable,1,11.95,04/12/19 18:38,"818 West St, Los Angeles, CA 90001" +197752,AAA Batteries (4-pack),1,2.99,05/01/19 02:14,"792 Highland St, Austin, TX 73301" +197753,Apple Airpods Headphones,1,150,04/11/19 12:53,"765 5th St, San Francisco, CA 94016" +197754,Macbook Pro Laptop,1,1700,04/02/19 20:10,"236 Willow St, New York City, NY 10001" +197755,Bose SoundSport Headphones,1,99.99,04/02/19 11:27,"743 Spruce St, New York City, NY 10001" +197756,20in Monitor,1,109.99,04/01/19 22:50,"749 Hill St, Seattle, WA 98101" +197757,AAA Batteries (4-pack),1,2.99,04/02/19 10:48,"569 Walnut St, San Francisco, CA 94016" +197758,Lightning Charging Cable,1,14.95,04/28/19 15:03,"442 4th St, Portland, OR 97035" +197759,USB-C Charging Cable,1,11.95,04/19/19 05:16,"406 North St, Los Angeles, CA 90001" +197760,Lightning Charging Cable,1,14.95,04/11/19 22:55,"44 Cherry St, San Francisco, CA 94016" +197761,Apple Airpods Headphones,1,150,04/26/19 19:38,"469 Sunset St, San Francisco, CA 94016" +197762,Apple Airpods Headphones,1,150,04/01/19 21:46,"943 Sunset St, San Francisco, CA 94016" +197763,iPhone,1,700,04/18/19 10:47,"701 Main St, Dallas, TX 75001" +197764,Lightning Charging Cable,1,14.95,04/15/19 06:30,"829 Center St, San Francisco, CA 94016" +197765,USB-C Charging Cable,1,11.95,04/14/19 05:15,"981 Highland St, Los Angeles, CA 90001" +,,,,, +197766,AA Batteries (4-pack),1,3.84,04/23/19 22:33,"213 Cherry St, Portland, OR 97035" +197767,Apple Airpods Headphones,1,150,04/15/19 19:28,"343 Highland St, San Francisco, CA 94016" +197768,Lightning Charging Cable,1,14.95,04/17/19 10:38,"731 1st St, Portland, ME 04101" +197769,Apple Airpods Headphones,1,150,04/16/19 06:38,"299 Johnson St, Dallas, TX 75001" +197770,Apple Airpods Headphones,1,150,04/21/19 13:13,"950 7th St, Portland, OR 97035" +197771,USB-C Charging Cable,1,11.95,04/05/19 07:21,"153 5th St, Austin, TX 73301" +197772,AAA Batteries (4-pack),1,2.99,04/01/19 21:40,"448 South St, San Francisco, CA 94016" +197773,Bose SoundSport Headphones,1,99.99,04/08/19 01:55,"900 Pine St, Seattle, WA 98101" +197774,Bose SoundSport Headphones,1,99.99,04/03/19 17:46,"596 Cedar St, San Francisco, CA 94016" +197775,Lightning Charging Cable,1,14.95,04/04/19 06:26,"998 Washington St, Atlanta, GA 30301" +197776,ThinkPad Laptop,1,999.99,04/14/19 09:32,"573 Ridge St, Seattle, WA 98101" +197777,27in 4K Gaming Monitor,1,389.99,04/19/19 18:36,"257 8th St, New York City, NY 10001" +197778,AA Batteries (4-pack),1,3.84,04/08/19 08:59,"720 14th St, Los Angeles, CA 90001" +197779,34in Ultrawide Monitor,1,379.99,04/13/19 12:41,"428 Spruce St, New York City, NY 10001" +197780,USB-C Charging Cable,1,11.95,04/03/19 22:42,"676 Lake St, Atlanta, GA 30301" +197781,AAA Batteries (4-pack),1,2.99,04/01/19 21:36,"920 Church St, Portland, OR 97035" +197782,Lightning Charging Cable,1,14.95,04/25/19 08:28,"384 River St, Boston, MA 02215" +197783,20in Monitor,1,109.99,04/20/19 09:38,"446 Center St, Los Angeles, CA 90001" +197784,ThinkPad Laptop,1,999.99,04/09/19 11:27,"668 12th St, Seattle, WA 98101" +197785,Bose SoundSport Headphones,1,99.99,04/18/19 18:03,"16 Church St, San Francisco, CA 94016" +197786,Lightning Charging Cable,1,14.95,04/04/19 15:30,"353 Cedar St, Los Angeles, CA 90001" +197787,Wired Headphones,1,11.99,04/12/19 12:29,"13 Madison St, San Francisco, CA 94016" +197788,AA Batteries (4-pack),1,3.84,04/25/19 13:34,"285 South St, Los Angeles, CA 90001" +197789,27in FHD Monitor,2,149.99,04/15/19 12:52,"418 Elm St, Los Angeles, CA 90001" +197790,Lightning Charging Cable,2,14.95,04/15/19 11:15,"711 Elm St, San Francisco, CA 94016" +197791,AAA Batteries (4-pack),1,2.99,04/05/19 10:40,"243 4th St, Atlanta, GA 30301" +197792,USB-C Charging Cable,1,11.95,04/20/19 12:39,"296 Highland St, Los Angeles, CA 90001" +197793,Google Phone,1,600,04/09/19 15:24,"192 Highland St, New York City, NY 10001" +197794,AA Batteries (4-pack),1,3.84,04/10/19 18:45,"946 Elm St, Atlanta, GA 30301" +197795,Apple Airpods Headphones,1,150,04/07/19 09:37,"652 Sunset St, San Francisco, CA 94016" +197796,Lightning Charging Cable,1,14.95,04/03/19 22:38,"850 Hill St, New York City, NY 10001" +197797,Apple Airpods Headphones,1,150,04/23/19 14:18,"933 Johnson St, Boston, MA 02215" +197798,Macbook Pro Laptop,1,1700,04/26/19 13:14,"464 Wilson St, New York City, NY 10001" +197799,AA Batteries (4-pack),1,3.84,04/23/19 08:40,"997 Hill St, New York City, NY 10001" +197800,AA Batteries (4-pack),1,3.84,04/13/19 14:12,"651 Hill St, San Francisco, CA 94016" +197801,AAA Batteries (4-pack),1,2.99,04/02/19 09:54,"199 Pine St, Boston, MA 02215" +197802,Apple Airpods Headphones,1,150,04/29/19 18:14,"69 7th St, Dallas, TX 75001" +197803,Apple Airpods Headphones,1,150,04/30/19 00:50,"958 West St, San Francisco, CA 94016" +197804,Lightning Charging Cable,1,14.95,04/29/19 13:50,"193 Center St, Atlanta, GA 30301" +197805,Wired Headphones,1,11.99,04/17/19 10:23,"472 Hill St, Seattle, WA 98101" +197806,Flatscreen TV,1,300,04/27/19 19:02,"538 Church St, San Francisco, CA 94016" +197807,Wired Headphones,1,11.99,04/26/19 10:13,"842 Dogwood St, New York City, NY 10001" +197808,27in FHD Monitor,1,149.99,04/03/19 17:40,"767 Hickory St, Los Angeles, CA 90001" +197809,USB-C Charging Cable,2,11.95,04/25/19 20:48,"965 Washington St, Boston, MA 02215" +197810,AA Batteries (4-pack),1,3.84,04/22/19 10:44,"23 1st St, Portland, OR 97035" +197811,AA Batteries (4-pack),1,3.84,04/21/19 22:02,"48 Church St, Boston, MA 02215" +197812,iPhone,1,700,04/03/19 20:39,"602 Chestnut St, Dallas, TX 75001" +197813,Bose SoundSport Headphones,1,99.99,04/02/19 15:49,"668 Cherry St, Boston, MA 02215" +197814,Lightning Charging Cable,1,14.95,04/09/19 13:48,"519 14th St, New York City, NY 10001" +197815,AAA Batteries (4-pack),1,2.99,04/30/19 13:36,"359 13th St, San Francisco, CA 94016" +197816,Wired Headphones,1,11.99,04/16/19 15:46,"417 Chestnut St, Boston, MA 02215" +197817,USB-C Charging Cable,1,11.95,04/19/19 10:37,"739 4th St, Los Angeles, CA 90001" +197818,Vareebadd Phone,1,400,04/14/19 19:31,"140 North St, Austin, TX 73301" +197819,iPhone,1,700,04/13/19 11:56,"646 Park St, Atlanta, GA 30301" +197819,Bose SoundSport Headphones,1,99.99,04/13/19 11:56,"646 Park St, Atlanta, GA 30301" +197820,AAA Batteries (4-pack),1,2.99,04/16/19 09:19,"544 River St, San Francisco, CA 94016" +197821,Lightning Charging Cable,1,14.95,04/07/19 10:19,"42 Center St, Austin, TX 73301" +197822,USB-C Charging Cable,1,11.95,04/04/19 12:23,"537 7th St, San Francisco, CA 94016" +197823,Wired Headphones,1,11.99,04/01/19 18:14,"483 Cherry St, Portland, OR 97035" +197824,Bose SoundSport Headphones,1,99.99,04/26/19 13:01,"452 Pine St, San Francisco, CA 94016" +197825,USB-C Charging Cable,1,11.95,04/06/19 19:05,"545 Cedar St, Atlanta, GA 30301" +197826,Wired Headphones,1,11.99,04/20/19 05:51,"394 Lake St, Boston, MA 02215" +197827,Wired Headphones,1,11.99,04/02/19 22:40,"283 Wilson St, Seattle, WA 98101" +197828,34in Ultrawide Monitor,1,379.99,04/17/19 13:08,"335 Church St, Los Angeles, CA 90001" +197829,Bose SoundSport Headphones,1,99.99,04/10/19 11:30,"592 Lakeview St, San Francisco, CA 94016" +197830,USB-C Charging Cable,1,11.95,04/27/19 10:31,"238 Jackson St, Seattle, WA 98101" +197831,ThinkPad Laptop,1,999.99,04/20/19 18:40,"633 Lincoln St, New York City, NY 10001" +197832,AA Batteries (4-pack),1,3.84,04/09/19 11:41,"829 Adams St, San Francisco, CA 94016" +197833,Bose SoundSport Headphones,1,99.99,04/04/19 13:55,"139 Walnut St, Atlanta, GA 30301" +197834,Macbook Pro Laptop,1,1700,04/09/19 16:09,"901 13th St, Atlanta, GA 30301" +197835,AAA Batteries (4-pack),1,2.99,04/04/19 21:34,"533 8th St, Los Angeles, CA 90001" +197836,27in 4K Gaming Monitor,1,389.99,04/16/19 17:39,"467 Meadow St, San Francisco, CA 94016" +197837,Macbook Pro Laptop,1,1700,04/10/19 21:33,"648 9th St, San Francisco, CA 94016" +197838,Wired Headphones,1,11.99,04/16/19 08:49,"162 South St, Portland, OR 97035" +197839,USB-C Charging Cable,1,11.95,04/05/19 18:16,"41 Sunset St, Boston, MA 02215" +197840,Macbook Pro Laptop,1,1700,04/07/19 13:52,"990 Pine St, Dallas, TX 75001" +197841,Wired Headphones,1,11.99,04/30/19 20:29,"601 11th St, Portland, OR 97035" +197842,27in 4K Gaming Monitor,1,389.99,04/18/19 15:56,"685 Maple St, Los Angeles, CA 90001" +197842,Bose SoundSport Headphones,1,99.99,04/18/19 15:56,"685 Maple St, Los Angeles, CA 90001" +197843,Apple Airpods Headphones,1,150,04/17/19 21:51,"949 Hickory St, Los Angeles, CA 90001" +197844,Wired Headphones,1,11.99,04/12/19 19:45,"236 Forest St, Los Angeles, CA 90001" +197845,Lightning Charging Cable,1,14.95,04/09/19 14:12,"823 6th St, New York City, NY 10001" +197846,AA Batteries (4-pack),1,3.84,04/26/19 16:01,"254 14th St, Boston, MA 02215" +197847,Lightning Charging Cable,1,14.95,04/13/19 21:00,"395 5th St, Dallas, TX 75001" +197848,Apple Airpods Headphones,1,150,04/08/19 13:42,"406 Lakeview St, Atlanta, GA 30301" +197849,AA Batteries (4-pack),1,3.84,04/04/19 21:07,"892 Cedar St, San Francisco, CA 94016" +197850,Bose SoundSport Headphones,1,99.99,04/17/19 16:52,"340 Johnson St, Portland, ME 04101" +197851,USB-C Charging Cable,1,11.95,04/27/19 21:10,"32 13th St, Portland, ME 04101" +197852,27in 4K Gaming Monitor,1,389.99,04/18/19 12:56,"566 Elm St, Los Angeles, CA 90001" +197853,Flatscreen TV,1,300,04/26/19 12:14,"66 Jefferson St, San Francisco, CA 94016" +197854,AA Batteries (4-pack),1,3.84,04/16/19 12:56,"410 Walnut St, San Francisco, CA 94016" +197855,Lightning Charging Cable,1,14.95,04/20/19 21:21,"30 Cherry St, New York City, NY 10001" +197856,Apple Airpods Headphones,1,150,04/01/19 21:32,"670 13th St, San Francisco, CA 94016" +197857,AAA Batteries (4-pack),2,2.99,04/06/19 22:39,"406 Jefferson St, San Francisco, CA 94016" +197858,Google Phone,1,600,04/01/19 21:33,"268 Wilson St, Los Angeles, CA 90001" +197859,AAA Batteries (4-pack),1,2.99,04/16/19 23:20,"888 Highland St, Austin, TX 73301" +197860,USB-C Charging Cable,1,11.95,04/07/19 18:48,"831 West St, Dallas, TX 75001" +197861,Lightning Charging Cable,1,14.95,04/30/19 19:49,"826 Highland St, San Francisco, CA 94016" +197862,27in FHD Monitor,1,149.99,04/19/19 23:55,"406 Church St, Seattle, WA 98101" +197863,iPhone,1,700,04/17/19 22:18,"483 Johnson St, San Francisco, CA 94016" +197864,Apple Airpods Headphones,1,150,04/11/19 11:54,"706 Elm St, San Francisco, CA 94016" +197865,Bose SoundSport Headphones,1,99.99,04/07/19 17:44,"587 Meadow St, Dallas, TX 75001" +197866,AAA Batteries (4-pack),1,2.99,04/04/19 20:13,"777 Maple St, New York City, NY 10001" +197867,Wired Headphones,1,11.99,04/29/19 20:17,"415 11th St, New York City, NY 10001" +197867,iPhone,1,700,04/29/19 20:17,"415 11th St, New York City, NY 10001" +197868,Apple Airpods Headphones,1,150,04/22/19 11:21,"433 Wilson St, San Francisco, CA 94016" +197869,AAA Batteries (4-pack),1,2.99,04/26/19 13:06,"433 Wilson St, Boston, MA 02215" +197870,AA Batteries (4-pack),4,3.84,04/08/19 00:49,"121 10th St, Boston, MA 02215" +197871,Bose SoundSport Headphones,1,99.99,04/12/19 14:00,"573 Adams St, San Francisco, CA 94016" +197872,Bose SoundSport Headphones,1,99.99,04/07/19 12:53,"691 5th St, Portland, OR 97035" +197873,USB-C Charging Cable,1,11.95,04/21/19 12:38,"537 Jackson St, Boston, MA 02215" +197874,Wired Headphones,1,11.99,04/17/19 08:15,"21 Jackson St, New York City, NY 10001" +197875,AAA Batteries (4-pack),1,2.99,04/28/19 13:15,"582 8th St, San Francisco, CA 94016" +197876,Wired Headphones,1,11.99,04/16/19 21:43,"778 West St, New York City, NY 10001" +197877,AA Batteries (4-pack),1,3.84,04/02/19 15:18,"467 Sunset St, Los Angeles, CA 90001" +197878,Lightning Charging Cable,1,14.95,04/18/19 15:44,"271 Dogwood St, Los Angeles, CA 90001" +197879,ThinkPad Laptop,1,999.99,04/03/19 11:31,"438 Center St, San Francisco, CA 94016" +197880,27in FHD Monitor,1,149.99,04/01/19 20:47,"11 Highland St, Dallas, TX 75001" +197881,iPhone,1,700,04/25/19 14:11,"333 Lincoln St, Portland, OR 97035" +197882,Apple Airpods Headphones,1,150,04/20/19 21:12,"506 Main St, Los Angeles, CA 90001" +197883,Wired Headphones,1,11.99,04/25/19 18:01,"982 Ridge St, San Francisco, CA 94016" +197884,Apple Airpods Headphones,1,150,04/18/19 11:57,"540 8th St, Austin, TX 73301" +197885,27in FHD Monitor,1,149.99,04/22/19 13:52,"325 Johnson St, Los Angeles, CA 90001" +197886,iPhone,1,700,04/14/19 07:55,"714 8th St, New York City, NY 10001" +197887,Wired Headphones,1,11.99,04/05/19 12:29,"232 Lake St, Los Angeles, CA 90001" +197888,AA Batteries (4-pack),2,3.84,04/12/19 09:14,"963 West St, Atlanta, GA 30301" +197889,34in Ultrawide Monitor,1,379.99,04/01/19 10:09,"432 9th St, Atlanta, GA 30301" +197890,Apple Airpods Headphones,1,150,04/04/19 01:30,"587 Church St, San Francisco, CA 94016" +197891,USB-C Charging Cable,1,11.95,04/02/19 22:47,"299 West St, Atlanta, GA 30301" +197892,AA Batteries (4-pack),1,3.84,04/06/19 23:14,"959 Cherry St, New York City, NY 10001" +197893,Apple Airpods Headphones,1,150,04/10/19 14:45,"218 Adams St, Dallas, TX 75001" +197894,Wired Headphones,1,11.99,04/20/19 22:20,"750 6th St, Portland, ME 04101" +197895,USB-C Charging Cable,2,11.95,04/27/19 12:01,"396 Cedar St, Dallas, TX 75001" +197895,AA Batteries (4-pack),1,3.84,04/27/19 12:01,"396 Cedar St, Dallas, TX 75001" +197896,AAA Batteries (4-pack),1,2.99,04/17/19 01:59,"968 Highland St, Dallas, TX 75001" +197897,Lightning Charging Cable,1,14.95,04/02/19 09:02,"306 Walnut St, New York City, NY 10001" +197898,USB-C Charging Cable,1,11.95,04/13/19 11:21,"566 Forest St, San Francisco, CA 94016" +197899,Lightning Charging Cable,1,14.95,04/27/19 19:50,"821 Highland St, Austin, TX 73301" +197900,Lightning Charging Cable,1,14.95,04/24/19 19:15,"930 Lincoln St, Portland, OR 97035" +197901,Macbook Pro Laptop,1,1700,04/22/19 09:43,"183 Ridge St, Austin, TX 73301" +197902,AAA Batteries (4-pack),1,2.99,04/02/19 20:57,"347 Washington St, San Francisco, CA 94016" +197903,Apple Airpods Headphones,1,150,04/07/19 06:52,"207 Washington St, Boston, MA 02215" +197904,USB-C Charging Cable,1,11.95,04/03/19 10:57,"182 Meadow St, San Francisco, CA 94016" +197905,AA Batteries (4-pack),1,3.84,04/19/19 19:02,"314 Dogwood St, San Francisco, CA 94016" +197906,AAA Batteries (4-pack),2,2.99,04/14/19 20:52,"632 Maple St, Boston, MA 02215" +197907,USB-C Charging Cable,1,11.95,04/17/19 21:18,"458 5th St, Dallas, TX 75001" +197908,AA Batteries (4-pack),2,3.84,04/16/19 16:51,"731 West St, Boston, MA 02215" +197909,AAA Batteries (4-pack),3,2.99,04/28/19 13:55,"580 Center St, Los Angeles, CA 90001" +197910,AA Batteries (4-pack),1,3.84,04/12/19 17:57,"265 Forest St, Boston, MA 02215" +197911,Vareebadd Phone,1,400,04/23/19 15:07,"762 Park St, Los Angeles, CA 90001" +197911,Bose SoundSport Headphones,1,99.99,04/23/19 15:07,"762 Park St, Los Angeles, CA 90001" +197912,Wired Headphones,1,11.99,04/07/19 19:40,"553 Lakeview St, New York City, NY 10001" +197913,AAA Batteries (4-pack),3,2.99,04/13/19 08:39,"554 12th St, Los Angeles, CA 90001" +197914,Lightning Charging Cable,1,14.95,04/08/19 10:19,"596 Cherry St, Dallas, TX 75001" +197915,Lightning Charging Cable,1,14.95,04/05/19 14:40,"562 Walnut St, San Francisco, CA 94016" +197916,AA Batteries (4-pack),1,3.84,04/23/19 10:51,"100 6th St, Los Angeles, CA 90001" +197917,Wired Headphones,1,11.99,04/24/19 20:47,"74 Jackson St, New York City, NY 10001" +197918,Bose SoundSport Headphones,1,99.99,04/05/19 15:58,"890 Willow St, San Francisco, CA 94016" +197919,iPhone,1,700,04/26/19 01:09,"323 Jefferson St, San Francisco, CA 94016" +197920,AAA Batteries (4-pack),3,2.99,04/26/19 09:40,"824 12th St, Austin, TX 73301" +197921,AAA Batteries (4-pack),1,2.99,04/16/19 18:39,"551 Highland St, San Francisco, CA 94016" +197922,AAA Batteries (4-pack),1,2.99,04/23/19 07:47,"166 Main St, San Francisco, CA 94016" +197923,USB-C Charging Cable,1,11.95,04/26/19 10:26,"342 Walnut St, New York City, NY 10001" +197924,USB-C Charging Cable,1,11.95,04/25/19 14:25,"620 Lincoln St, Atlanta, GA 30301" +197925,Flatscreen TV,1,300,04/10/19 14:52,"911 7th St, Los Angeles, CA 90001" +197926,USB-C Charging Cable,1,11.95,04/23/19 11:20,"472 12th St, Seattle, WA 98101" +197927,Flatscreen TV,1,300,04/22/19 15:57,"385 Meadow St, San Francisco, CA 94016" +197928,Wired Headphones,1,11.99,04/05/19 17:51,"315 Adams St, San Francisco, CA 94016" +197929,AA Batteries (4-pack),1,3.84,04/29/19 14:28,"430 Madison St, New York City, NY 10001" +197930,27in FHD Monitor,1,149.99,04/29/19 13:07,"162 14th St, Portland, OR 97035" +197931,iPhone,1,700,04/23/19 11:48,"33 Lakeview St, Boston, MA 02215" +197932,Google Phone,1,600,04/08/19 14:10,"280 South St, San Francisco, CA 94016" +197932,Wired Headphones,1,11.99,04/08/19 14:10,"280 South St, San Francisco, CA 94016" +197933,Flatscreen TV,1,300,04/04/19 17:11,"801 6th St, Seattle, WA 98101" +197934,AA Batteries (4-pack),1,3.84,04/30/19 17:31,"501 Park St, San Francisco, CA 94016" +,,,,, +197935,Lightning Charging Cable,2,14.95,04/05/19 19:38,"22 Chestnut St, Los Angeles, CA 90001" +197936,USB-C Charging Cable,1,11.95,04/20/19 10:14,"817 11th St, Boston, MA 02215" +197937,Lightning Charging Cable,1,14.95,04/11/19 15:28,"926 Church St, San Francisco, CA 94016" +197938,27in 4K Gaming Monitor,1,389.99,04/20/19 20:34,"316 6th St, San Francisco, CA 94016" +197939,27in FHD Monitor,1,149.99,04/02/19 13:06,"214 Hickory St, Seattle, WA 98101" +197940,AA Batteries (4-pack),1,3.84,04/23/19 12:27,"78 Highland St, San Francisco, CA 94016" +197941,iPhone,1,700,04/22/19 22:43,"806 Dogwood St, San Francisco, CA 94016" +197942,Vareebadd Phone,1,400,04/28/19 11:31,"568 Washington St, Los Angeles, CA 90001" +197942,Wired Headphones,1,11.99,04/28/19 11:31,"568 Washington St, Los Angeles, CA 90001" +197943,Vareebadd Phone,1,400,04/05/19 23:19,"462 Highland St, Atlanta, GA 30301" +197943,Wired Headphones,1,11.99,04/05/19 23:19,"462 Highland St, Atlanta, GA 30301" +197944,Lightning Charging Cable,1,14.95,04/02/19 11:55,"617 Lake St, Austin, TX 73301" +197945,USB-C Charging Cable,1,11.95,04/10/19 14:15,"679 5th St, San Francisco, CA 94016" +197946,27in 4K Gaming Monitor,1,389.99,04/27/19 18:39,"580 Adams St, New York City, NY 10001" +197947,Bose SoundSport Headphones,1,99.99,04/16/19 15:46,"733 Maple St, Portland, ME 04101" +197948,34in Ultrawide Monitor,1,379.99,04/02/19 20:41,"2 Wilson St, Dallas, TX 75001" +197949,AA Batteries (4-pack),1,3.84,04/01/19 14:33,"588 14th St, San Francisco, CA 94016" +197950,27in FHD Monitor,1,149.99,04/23/19 13:41,"523 1st St, New York City, NY 10001" +197951,Bose SoundSport Headphones,1,99.99,04/29/19 11:19,"792 Cedar St, Atlanta, GA 30301" +197952,AAA Batteries (4-pack),2,2.99,04/21/19 13:19,"90 Washington St, San Francisco, CA 94016" +197953,iPhone,1,700,04/15/19 09:58,"159 Highland St, Seattle, WA 98101" +197954,Wired Headphones,1,11.99,04/24/19 01:55,"568 Hickory St, Portland, OR 97035" +197955,Lightning Charging Cable,1,14.95,04/14/19 15:51,"439 4th St, San Francisco, CA 94016" +197956,Lightning Charging Cable,1,14.95,04/15/19 06:24,"322 Madison St, New York City, NY 10001" +197957,USB-C Charging Cable,1,11.95,04/02/19 08:39,"270 Cedar St, Dallas, TX 75001" +197958,Apple Airpods Headphones,1,150,04/13/19 17:01,"210 2nd St, San Francisco, CA 94016" +197958,Lightning Charging Cable,1,14.95,04/13/19 17:01,"210 2nd St, San Francisco, CA 94016" +197959,AA Batteries (4-pack),1,3.84,04/16/19 18:17,"819 11th St, New York City, NY 10001" +197960,USB-C Charging Cable,1,11.95,04/07/19 10:57,"81 Cedar St, Los Angeles, CA 90001" +197961,27in FHD Monitor,1,149.99,04/28/19 10:15,"554 Walnut St, Los Angeles, CA 90001" diff --git a/sales_data/Sales_August_2019.csv b/sales_data/Sales_August_2019.csv new file mode 100644 index 0000000..dfe201e --- /dev/null +++ b/sales_data/Sales_August_2019.csv @@ -0,0 +1,13811 @@ +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +236018,Wired Headphones,1,11.99,08/31/19 21:01,"198 Meadow St, Seattle, WA 98101" +236019,AA Batteries (4-pack),1,3.84,08/22/19 18:12,"871 Main St, San Francisco, CA 94016" +236020,Lightning Charging Cable,1,14.95,08/10/19 16:46,"148 Walnut St, San Francisco, CA 94016" +236021,Bose SoundSport Headphones,1,99.99,08/22/19 19:44,"954 Wilson St, New York City, NY 10001" +236022,Apple Airpods Headphones,1,150.0,08/04/19 16:59,"82 8th St, Austin, TX 73301" +236023,AA Batteries (4-pack),1,3.84,08/17/19 14:48,"658 Wilson St, Boston, MA 02215" +236024,27in FHD Monitor,1,149.99,08/06/19 09:17,"534 Park St, San Francisco, CA 94016" +236025,AA Batteries (4-pack),1,3.84,08/14/19 13:22,"944 Hill St, Seattle, WA 98101" +236026,Lightning Charging Cable,1,14.95,08/04/19 18:23,"54 Church St, Atlanta, GA 30301" +236027,ThinkPad Laptop,1,999.99,08/28/19 19:00,"43 Madison St, Seattle, WA 98101" +236028,USB-C Charging Cable,1,11.95,08/23/19 01:14,"179 10th St, Portland, OR 97035" +236029,Macbook Pro Laptop,1,1700.0,08/18/19 19:23,"31 Adams St, San Francisco, CA 94016" +236030,iPhone,1,700.0,08/25/19 16:44,"973 5th St, Portland, OR 97035" +236031,USB-C Charging Cable,1,11.95,08/13/19 13:29,"136 1st St, San Francisco, CA 94016" +236032,USB-C Charging Cable,1,11.95,08/23/19 19:12,"117 Meadow St, San Francisco, CA 94016" +236033,Lightning Charging Cable,1,14.95,08/03/19 22:38,"159 Jefferson St, Los Angeles, CA 90001" +236033,Bose SoundSport Headphones,1,99.99,08/03/19 22:38,"159 Jefferson St, Los Angeles, CA 90001" +236034,Bose SoundSport Headphones,1,99.99,08/17/19 10:10,"373 Lakeview St, Austin, TX 73301" +236035,AAA Batteries (4-pack),4,2.99,08/25/19 17:51,"745 Ridge St, New York City, NY 10001" +236036,Wired Headphones,1,11.99,08/30/19 08:33,"4 Chestnut St, Portland, OR 97035" +236037,27in FHD Monitor,1,149.99,08/09/19 17:13,"945 Meadow St, Dallas, TX 75001" +236038,Wired Headphones,1,11.99,08/07/19 18:04,"425 2nd St, San Francisco, CA 94016" +236039,27in FHD Monitor,2,149.99,08/04/19 01:45,"248 Cherry St, San Francisco, CA 94016" +236040,AA Batteries (4-pack),1,3.84,08/03/19 15:27,"803 Jackson St, Portland, OR 97035" +236041,AA Batteries (4-pack),2,3.84,08/21/19 11:52,"661 Main St, San Francisco, CA 94016" +236042,USB-C Charging Cable,1,11.95,08/16/19 04:48,"558 13th St, San Francisco, CA 94016" +236043,AAA Batteries (4-pack),1,2.99,08/22/19 16:00,"104 11th St, Los Angeles, CA 90001" +236044,AA Batteries (4-pack),1,3.84,08/03/19 14:45,"39 Pine St, New York City, NY 10001" +236045,Wired Headphones,1,11.99,08/13/19 15:14,"446 River St, Boston, MA 02215" +236046,AA Batteries (4-pack),2,3.84,08/29/19 15:13,"488 Adams St, Boston, MA 02215" +236047,Lightning Charging Cable,1,14.95,08/31/19 00:10,"546 Jefferson St, Atlanta, GA 30301" +236048,Google Phone,1,600.0,08/11/19 00:20,"717 9th St, San Francisco, CA 94016" +236049,ThinkPad Laptop,1,999.99,08/30/19 11:31,"694 Dogwood St, Portland, ME 04101" +236050,Apple Airpods Headphones,1,150.0,08/13/19 23:01,"566 14th St, Boston, MA 02215" +236051,27in FHD Monitor,1,149.99,08/28/19 20:51,"982 Main St, Boston, MA 02215" +236052,AAA Batteries (4-pack),1,2.99,09/01/19 01:45,"965 5th St, San Francisco, CA 94016" +236053,USB-C Charging Cable,1,11.95,08/23/19 15:17,"661 Lake St, Boston, MA 02215" +236054,Apple Airpods Headphones,1,150.0,08/09/19 20:22,"498 Sunset St, Boston, MA 02215" +236055,USB-C Charging Cable,1,11.95,08/26/19 23:38,"691 Pine St, Austin, TX 73301" +236056,USB-C Charging Cable,1,11.95,08/27/19 14:37,"988 14th St, Atlanta, GA 30301" +236057,Vareebadd Phone,1,400.0,08/20/19 20:43,"332 Hill St, Portland, OR 97035" +236058,Wired Headphones,1,11.99,08/09/19 21:17,"263 11th St, Boston, MA 02215" +236059,Bose SoundSport Headphones,1,99.99,08/26/19 20:27,"436 Cedar St, Boston, MA 02215" +236060,34in Ultrawide Monitor,1,379.99,08/14/19 16:19,"937 Walnut St, New York City, NY 10001" +236061,AAA Batteries (4-pack),1,2.99,08/29/19 11:27,"445 Forest St, San Francisco, CA 94016" +236062,34in Ultrawide Monitor,1,379.99,08/30/19 11:35,"627 9th St, New York City, NY 10001" +236063,AA Batteries (4-pack),1,3.84,08/26/19 20:44,"285 Walnut St, Seattle, WA 98101" +236064,AAA Batteries (4-pack),1,2.99,08/25/19 00:59,"142 Walnut St, Seattle, WA 98101" +236065,Lightning Charging Cable,2,14.95,08/23/19 06:22,"865 Maple St, San Francisco, CA 94016" +236066,Google Phone,1,600.0,08/31/19 13:12,"626 Center St, New York City, NY 10001" +236066,Bose SoundSport Headphones,1,99.99,08/31/19 13:12,"626 Center St, New York City, NY 10001" +236067,Lightning Charging Cable,1,14.95,08/07/19 23:48,"478 West St, Atlanta, GA 30301" +236068,Flatscreen TV,1,300.0,08/26/19 20:09,"566 Forest St, San Francisco, CA 94016" +236069,Lightning Charging Cable,1,14.95,08/31/19 00:33,"19 Meadow St, Austin, TX 73301" +236070,Apple Airpods Headphones,1,150.0,08/19/19 14:23,"58 Chestnut St, Boston, MA 02215" +236071,Bose SoundSport Headphones,1,99.99,08/30/19 14:02,"365 Ridge St, Austin, TX 73301" +236072,Lightning Charging Cable,1,14.95,08/28/19 22:14,"810 Elm St, San Francisco, CA 94016" +236073,Apple Airpods Headphones,1,150.0,08/20/19 03:17,"277 Madison St, Dallas, TX 75001" +236074,USB-C Charging Cable,1,11.95,08/21/19 13:30,"933 Chestnut St, Dallas, TX 75001" +236075,Lightning Charging Cable,1,14.95,08/27/19 19:42,"897 Madison St, Atlanta, GA 30301" +236076,AA Batteries (4-pack),1,3.84,08/06/19 16:38,"570 Hill St, Los Angeles, CA 90001" +236077,Flatscreen TV,1,300.0,08/22/19 10:53,"411 Willow St, Dallas, TX 75001" +236078,27in 4K Gaming Monitor,1,389.99,08/03/19 14:15,"763 Jackson St, Los Angeles, CA 90001" +236079,ThinkPad Laptop,1,999.99,08/08/19 17:43,"782 Willow St, New York City, NY 10001" +236080,34in Ultrawide Monitor,1,379.99,08/16/19 00:50,"41 Lake St, Boston, MA 02215" +236081,AAA Batteries (4-pack),1,2.99,08/25/19 12:27,"850 Church St, San Francisco, CA 94016" +236082,Lightning Charging Cable,2,14.95,08/10/19 19:09,"539 Chestnut St, San Francisco, CA 94016" +236083,AA Batteries (4-pack),1,3.84,08/24/19 17:37,"959 2nd St, Boston, MA 02215" +236084,Flatscreen TV,1,300.0,08/26/19 21:20,"399 14th St, Portland, OR 97035" +236085,Lightning Charging Cable,1,14.95,08/13/19 19:22,"984 Cedar St, Portland, ME 04101" +236086,AA Batteries (4-pack),2,3.84,08/02/19 14:22,"139 Meadow St, Los Angeles, CA 90001" +236087,Bose SoundSport Headphones,1,99.99,08/24/19 06:56,"181 6th St, Los Angeles, CA 90001" +236088,Wired Headphones,1,11.99,08/15/19 18:38,"648 8th St, Portland, OR 97035" +236089,USB-C Charging Cable,1,11.95,08/21/19 12:59,"707 Ridge St, Dallas, TX 75001" +236090,AAA Batteries (4-pack),1,2.99,08/30/19 22:49,"358 12th St, San Francisco, CA 94016" +236091,USB-C Charging Cable,1,11.95,08/12/19 20:40,"793 Lake St, Portland, OR 97035" +236092,AAA Batteries (4-pack),2,2.99,08/04/19 15:55,"835 West St, San Francisco, CA 94016" +236093,USB-C Charging Cable,1,11.95,08/11/19 23:38,"780 12th St, San Francisco, CA 94016" +236094,Lightning Charging Cable,2,14.95,08/22/19 09:01,"575 9th St, Dallas, TX 75001" +236095,AAA Batteries (4-pack),1,2.99,08/02/19 22:04,"78 Meadow St, Boston, MA 02215" +236096,iPhone,1,700.0,08/19/19 14:58,"567 North St, Atlanta, GA 30301" +236097,Lightning Charging Cable,1,14.95,08/26/19 06:48,"110 Lake St, Portland, ME 04101" +236098,Wired Headphones,1,11.99,08/22/19 15:30,"834 Cherry St, Los Angeles, CA 90001" +236099,iPhone,1,700.0,08/20/19 11:18,"627 Hickory St, Los Angeles, CA 90001" +236100,USB-C Charging Cable,1,11.95,08/13/19 18:33,"196 Walnut St, San Francisco, CA 94016" +236101,Vareebadd Phone,1,400.0,08/17/19 10:42,"415 Pine St, Portland, OR 97035" +236101,Wired Headphones,1,11.99,08/17/19 10:42,"415 Pine St, Portland, OR 97035" +236102,AAA Batteries (4-pack),1,2.99,08/07/19 19:00,"705 5th St, Atlanta, GA 30301" +236103,Lightning Charging Cable,1,14.95,08/21/19 09:55,"836 Hill St, Los Angeles, CA 90001" +236104,AA Batteries (4-pack),2,3.84,08/16/19 12:54,"217 Church St, Atlanta, GA 30301" +236105,iPhone,1,700.0,08/18/19 20:46,"674 13th St, Seattle, WA 98101" +236106,AA Batteries (4-pack),1,3.84,08/03/19 17:00,"451 1st St, Seattle, WA 98101" +236107,USB-C Charging Cable,1,11.95,08/19/19 14:27,"585 14th St, New York City, NY 10001" +236108,AAA Batteries (4-pack),3,2.99,08/24/19 19:33,"587 Meadow St, Atlanta, GA 30301" +236109,Lightning Charging Cable,1,14.95,08/01/19 12:28,"150 9th St, San Francisco, CA 94016" +236110,iPhone,1,700.0,08/21/19 09:19,"595 10th St, Los Angeles, CA 90001" +236111,ThinkPad Laptop,1,999.99,08/05/19 16:08,"788 Spruce St, San Francisco, CA 94016" +236112,AA Batteries (4-pack),2,3.84,08/21/19 20:03,"561 North St, Portland, OR 97035" +236113,20in Monitor,1,109.99,08/05/19 17:25,"274 Lincoln St, Boston, MA 02215" +236114,USB-C Charging Cable,1,11.95,08/14/19 23:14,"857 Wilson St, San Francisco, CA 94016" +236115,Lightning Charging Cable,1,14.95,08/31/19 01:17,"281 Highland St, Los Angeles, CA 90001" +236116,Wired Headphones,1,11.99,08/27/19 23:48,"107 North St, San Francisco, CA 94016" +236117,Wired Headphones,1,11.99,08/29/19 15:32,"244 12th St, Los Angeles, CA 90001" +236118,Lightning Charging Cable,1,14.95,08/17/19 21:04,"414 9th St, Austin, TX 73301" +236119,AA Batteries (4-pack),1,3.84,08/26/19 20:46,"573 9th St, Los Angeles, CA 90001" +236120,Google Phone,1,600.0,08/31/19 19:52,"444 Elm St, San Francisco, CA 94016" +236120,Bose SoundSport Headphones,1,99.99,08/31/19 19:52,"444 Elm St, San Francisco, CA 94016" +236121,27in 4K Gaming Monitor,1,389.99,08/25/19 22:15,"819 Wilson St, Atlanta, GA 30301" +236122,Macbook Pro Laptop,1,1700.0,08/26/19 12:48,"284 West St, San Francisco, CA 94016" +236123,27in 4K Gaming Monitor,1,389.99,08/21/19 10:40,"305 South St, New York City, NY 10001" +236123,USB-C Charging Cable,1,11.95,08/21/19 10:40,"305 South St, New York City, NY 10001" +236124,Bose SoundSport Headphones,1,99.99,08/18/19 09:42,"385 Maple St, San Francisco, CA 94016" +236125,AAA Batteries (4-pack),2,2.99,08/12/19 09:35,"515 Center St, Los Angeles, CA 90001" +236126,34in Ultrawide Monitor,1,379.99,08/13/19 19:38,"230 5th St, Boston, MA 02215" +236127,AAA Batteries (4-pack),1,2.99,08/12/19 13:22,"851 Walnut St, Boston, MA 02215" +236128,34in Ultrawide Monitor,1,379.99,08/13/19 16:20,"828 Lake St, Los Angeles, CA 90001" +,,,,, +236129,20in Monitor,1,109.99,08/24/19 20:30,"783 4th St, Portland, OR 97035" +236130,Bose SoundSport Headphones,1,99.99,08/03/19 17:20,"244 Main St, Los Angeles, CA 90001" +236131,Wired Headphones,1,11.99,08/28/19 09:51,"511 Adams St, Los Angeles, CA 90001" +236132,Lightning Charging Cable,1,14.95,08/12/19 12:15,"418 River St, Portland, OR 97035" +236133,USB-C Charging Cable,1,11.95,08/11/19 03:11,"608 Pine St, Boston, MA 02215" +236134,20in Monitor,1,109.99,08/28/19 14:56,"10 14th St, Portland, OR 97035" +236135,AAA Batteries (4-pack),1,2.99,08/21/19 10:46,"110 10th St, San Francisco, CA 94016" +236136,AA Batteries (4-pack),1,3.84,08/31/19 09:40,"509 1st St, San Francisco, CA 94016" +236137,AAA Batteries (4-pack),1,2.99,08/29/19 20:14,"313 Sunset St, San Francisco, CA 94016" +236138,Bose SoundSport Headphones,1,99.99,08/27/19 23:40,"283 Elm St, Atlanta, GA 30301" +236139,AA Batteries (4-pack),2,3.84,08/17/19 19:39,"4 Pine St, Dallas, TX 75001" +236140,Apple Airpods Headphones,1,150,08/13/19 19:50,"367 10th St, New York City, NY 10001" +236141,AAA Batteries (4-pack),2,2.99,08/19/19 19:11,"97 11th St, Seattle, WA 98101" +236142,AA Batteries (4-pack),1,3.84,08/23/19 21:55,"647 4th St, San Francisco, CA 94016" +236143,AAA Batteries (4-pack),1,2.99,08/23/19 23:34,"386 Jackson St, Los Angeles, CA 90001" +236144,iPhone,1,700,08/24/19 18:40,"585 Park St, Austin, TX 73301" +236145,Lightning Charging Cable,1,14.95,08/09/19 17:13,"161 9th St, San Francisco, CA 94016" +236146,AAA Batteries (4-pack),2,2.99,08/05/19 20:42,"444 12th St, San Francisco, CA 94016" +236147,27in 4K Gaming Monitor,1,389.99,08/21/19 16:52,"46 1st St, San Francisco, CA 94016" +236148,Lightning Charging Cable,1,14.95,08/27/19 12:36,"297 5th St, New York City, NY 10001" +236149,Lightning Charging Cable,1,14.95,08/01/19 20:10,"79 Elm St, Austin, TX 73301" +,,,,, +236150,AAA Batteries (4-pack),1,2.99,08/28/19 18:55,"368 Walnut St, San Francisco, CA 94016" +236151,iPhone,1,700,08/26/19 09:13,"579 1st St, New York City, NY 10001" +236152,Lightning Charging Cable,1,14.95,08/16/19 12:08,"27 Ridge St, Austin, TX 73301" +236153,27in 4K Gaming Monitor,1,389.99,08/02/19 12:57,"7 Walnut St, New York City, NY 10001" +236153,Wired Headphones,1,11.99,08/02/19 12:57,"7 Walnut St, New York City, NY 10001" +236154,AAA Batteries (4-pack),2,2.99,08/09/19 21:57,"645 Ridge St, San Francisco, CA 94016" +236155,ThinkPad Laptop,1,999.99,08/05/19 12:09,"699 Lake St, New York City, NY 10001" +236156,27in FHD Monitor,1,149.99,08/08/19 23:26,"616 West St, San Francisco, CA 94016" +236157,Lightning Charging Cable,1,14.95,08/19/19 20:44,"981 Lakeview St, Dallas, TX 75001" +236158,iPhone,1,700,08/03/19 17:18,"996 Lakeview St, Boston, MA 02215" +236159,AAA Batteries (4-pack),6,2.99,08/19/19 12:25,"268 Church St, Portland, OR 97035" +236160,Lightning Charging Cable,1,14.95,08/12/19 23:01,"106 Park St, Austin, TX 73301" +236161,USB-C Charging Cable,1,11.95,08/04/19 00:28,"14 Lakeview St, Boston, MA 02215" +236162,Wired Headphones,1,11.99,08/03/19 18:26,"794 Sunset St, Los Angeles, CA 90001" +236163,Bose SoundSport Headphones,1,99.99,08/14/19 11:57,"255 9th St, Atlanta, GA 30301" +236164,AAA Batteries (4-pack),1,2.99,08/04/19 19:03,"423 Johnson St, Boston, MA 02215" +236165,AA Batteries (4-pack),1,3.84,08/05/19 10:24,"307 West St, Portland, OR 97035" +236166,27in FHD Monitor,1,149.99,08/08/19 18:17,"239 Chestnut St, Portland, OR 97035" +236167,Apple Airpods Headphones,1,150,08/12/19 10:50,"478 Jackson St, Seattle, WA 98101" +236168,Lightning Charging Cable,1,14.95,08/29/19 10:07,"221 Meadow St, San Francisco, CA 94016" +236169,27in FHD Monitor,1,149.99,08/05/19 16:34,"427 Willow St, Los Angeles, CA 90001" +236170,iPhone,1,700,08/19/19 13:49,"153 Adams St, Portland, OR 97035" +236171,AAA Batteries (4-pack),1,2.99,08/02/19 13:14,"935 Church St, Dallas, TX 75001" +236172,Lightning Charging Cable,1,14.95,08/24/19 06:23,"857 Chestnut St, San Francisco, CA 94016" +236173,Lightning Charging Cable,1,14.95,08/04/19 09:07,"299 Willow St, Seattle, WA 98101" +236174,AA Batteries (4-pack),1,3.84,08/04/19 11:16,"353 Cedar St, San Francisco, CA 94016" +236175,Wired Headphones,1,11.99,08/28/19 21:25,"615 6th St, New York City, NY 10001" +236176,Bose SoundSport Headphones,2,99.99,08/21/19 08:33,"346 Forest St, San Francisco, CA 94016" +236177,USB-C Charging Cable,1,11.95,08/26/19 13:19,"885 Park St, Seattle, WA 98101" +236178,AAA Batteries (4-pack),1,2.99,08/09/19 00:31,"954 7th St, Seattle, WA 98101" +236179,Lightning Charging Cable,1,14.95,08/23/19 00:12,"927 6th St, Seattle, WA 98101" +236180,Lightning Charging Cable,1,14.95,08/22/19 12:17,"658 Church St, New York City, NY 10001" +236181,Bose SoundSport Headphones,1,99.99,08/09/19 17:17,"879 Dogwood St, Los Angeles, CA 90001" +236182,AAA Batteries (4-pack),2,2.99,08/30/19 12:55,"413 North St, Los Angeles, CA 90001" +236182,34in Ultrawide Monitor,1,379.99,08/30/19 12:55,"413 North St, Los Angeles, CA 90001" +236183,AAA Batteries (4-pack),1,2.99,08/11/19 12:09,"35 Center St, San Francisco, CA 94016" +236184,27in FHD Monitor,1,149.99,08/16/19 13:40,"509 7th St, San Francisco, CA 94016" +236185,27in FHD Monitor,1,149.99,08/24/19 18:55,"906 13th St, New York City, NY 10001" +236186,Bose SoundSport Headphones,1,99.99,08/05/19 11:17,"860 Church St, Boston, MA 02215" +236187,USB-C Charging Cable,1,11.95,08/17/19 20:56,"186 Chestnut St, Portland, OR 97035" +236188,Macbook Pro Laptop,1,1700,08/22/19 21:21,"24 North St, Seattle, WA 98101" +236189,USB-C Charging Cable,1,11.95,08/02/19 22:14,"190 8th St, Dallas, TX 75001" +236190,27in FHD Monitor,1,149.99,08/06/19 18:46,"190 Forest St, Atlanta, GA 30301" +236191,Wired Headphones,1,11.99,08/10/19 17:28,"88 Ridge St, Los Angeles, CA 90001" +236192,27in 4K Gaming Monitor,1,389.99,08/04/19 23:05,"585 South St, San Francisco, CA 94016" +236193,20in Monitor,1,109.99,08/14/19 16:48,"634 Hill St, New York City, NY 10001" +236194,Wired Headphones,1,11.99,08/08/19 14:36,"502 South St, San Francisco, CA 94016" +236195,AA Batteries (4-pack),1,3.84,08/10/19 18:10,"167 Hill St, Los Angeles, CA 90001" +236196,AA Batteries (4-pack),1,3.84,08/30/19 15:06,"132 9th St, Seattle, WA 98101" +236197,AA Batteries (4-pack),1,3.84,08/29/19 21:39,"326 Jefferson St, San Francisco, CA 94016" +236198,27in FHD Monitor,1,149.99,08/13/19 18:09,"675 Lincoln St, Boston, MA 02215" +236199,Flatscreen TV,1,300,08/31/19 23:02,"353 Madison St, Los Angeles, CA 90001" +236200,USB-C Charging Cable,1,11.95,08/27/19 18:03,"328 Walnut St, Dallas, TX 75001" +236201,20in Monitor,1,109.99,08/14/19 18:07,"167 14th St, Dallas, TX 75001" +236202,Apple Airpods Headphones,1,150,08/09/19 17:32,"577 Jefferson St, New York City, NY 10001" +236203,20in Monitor,1,109.99,08/11/19 17:48,"964 Dogwood St, Portland, OR 97035" +236204,Flatscreen TV,1,300,08/26/19 20:31,"75 Pine St, Boston, MA 02215" +236205,Bose SoundSport Headphones,1,99.99,08/31/19 10:19,"674 Cedar St, Los Angeles, CA 90001" +236206,Apple Airpods Headphones,1,150,08/12/19 20:08,"102 Cedar St, Los Angeles, CA 90001" +236207,AAA Batteries (4-pack),3,2.99,08/15/19 17:00,"622 Willow St, Dallas, TX 75001" +236208,Apple Airpods Headphones,1,150,08/30/19 13:38,"360 14th St, Atlanta, GA 30301" +236209,Apple Airpods Headphones,1,150,08/01/19 19:15,"677 South St, San Francisco, CA 94016" +236210,Apple Airpods Headphones,1,150,08/10/19 23:14,"376 5th St, Dallas, TX 75001" +236211,AA Batteries (4-pack),1,3.84,08/18/19 10:28,"446 Highland St, Dallas, TX 75001" +236212,Wired Headphones,1,11.99,08/02/19 19:29,"634 Willow St, Atlanta, GA 30301" +236213,Bose SoundSport Headphones,1,99.99,08/07/19 22:51,"583 North St, San Francisco, CA 94016" +236214,27in 4K Gaming Monitor,1,389.99,08/24/19 07:58,"655 South St, San Francisco, CA 94016" +236215,20in Monitor,1,109.99,08/01/19 13:06,"853 Dogwood St, Portland, ME 04101" +236216,AA Batteries (4-pack),3,3.84,08/25/19 15:07,"949 Highland St, New York City, NY 10001" +236217,Lightning Charging Cable,1,14.95,08/25/19 01:41,"474 Cedar St, San Francisco, CA 94016" +236218,Lightning Charging Cable,2,14.95,08/12/19 13:40,"501 Cherry St, Los Angeles, CA 90001" +236219,USB-C Charging Cable,1,11.95,08/12/19 21:06,"482 8th St, Dallas, TX 75001" +236220,34in Ultrawide Monitor,1,379.99,08/26/19 15:37,"85 Jefferson St, Boston, MA 02215" +236221,LG Dryer,1,600.0,08/17/19 10:33,"343 10th St, Atlanta, GA 30301" +236222,iPhone,1,700,08/12/19 13:15,"444 4th St, Boston, MA 02215" +236223,Flatscreen TV,1,300,08/02/19 22:13,"118 Wilson St, New York City, NY 10001" +236223,Bose SoundSport Headphones,1,99.99,08/02/19 22:13,"118 Wilson St, New York City, NY 10001" +236224,USB-C Charging Cable,1,11.95,08/04/19 21:30,"880 6th St, San Francisco, CA 94016" +236225,Wired Headphones,1,11.99,08/15/19 09:08,"77 13th St, Boston, MA 02215" +236226,AAA Batteries (4-pack),1,2.99,08/30/19 13:49,"443 10th St, San Francisco, CA 94016" +236227,Lightning Charging Cable,1,14.95,08/23/19 08:54,"76 Lake St, New York City, NY 10001" +236228,Macbook Pro Laptop,1,1700,08/07/19 12:00,"63 5th St, Atlanta, GA 30301" +236229,AA Batteries (4-pack),1,3.84,08/13/19 22:14,"148 Elm St, Los Angeles, CA 90001" +236230,Bose SoundSport Headphones,1,99.99,08/20/19 09:16,"47 Washington St, San Francisco, CA 94016" +236231,Wired Headphones,1,11.99,08/06/19 16:49,"486 Pine St, San Francisco, CA 94016" +236232,USB-C Charging Cable,1,11.95,08/21/19 00:51,"620 Meadow St, New York City, NY 10001" +236233,AA Batteries (4-pack),1,3.84,08/10/19 10:23,"273 Sunset St, San Francisco, CA 94016" +236234,AAA Batteries (4-pack),1,2.99,08/13/19 20:07,"603 Washington St, New York City, NY 10001" +236235,AAA Batteries (4-pack),1,2.99,08/18/19 18:30,"365 West St, Austin, TX 73301" +236236,AA Batteries (4-pack),1,3.84,08/18/19 18:29,"65 Center St, San Francisco, CA 94016" +236237,USB-C Charging Cable,1,11.95,08/29/19 22:27,"893 Jefferson St, San Francisco, CA 94016" +236238,Lightning Charging Cable,1,14.95,08/04/19 10:02,"118 Wilson St, Seattle, WA 98101" +236239,Wired Headphones,1,11.99,08/14/19 20:56,"667 Main St, Atlanta, GA 30301" +236240,Wired Headphones,1,11.99,08/31/19 06:52,"3 14th St, Boston, MA 02215" +236241,27in FHD Monitor,1,149.99,08/29/19 11:17,"4 South St, Los Angeles, CA 90001" +236242,Macbook Pro Laptop,1,1700,08/26/19 12:48,"807 Highland St, San Francisco, CA 94016" +236243,AA Batteries (4-pack),2,3.84,08/31/19 15:01,"18 5th St, Atlanta, GA 30301" +236244,Bose SoundSport Headphones,1,99.99,08/25/19 20:43,"482 13th St, San Francisco, CA 94016" +236245,Apple Airpods Headphones,1,150,08/24/19 16:09,"823 Lakeview St, Los Angeles, CA 90001" +236246,AA Batteries (4-pack),2,3.84,08/29/19 18:57,"297 Church St, Boston, MA 02215" +236247,Apple Airpods Headphones,1,150,08/13/19 14:51,"344 Main St, San Francisco, CA 94016" +236248,34in Ultrawide Monitor,1,379.99,08/31/19 18:39,"86 6th St, Seattle, WA 98101" +236249,34in Ultrawide Monitor,1,379.99,08/05/19 15:29,"691 12th St, San Francisco, CA 94016" +236250,27in FHD Monitor,1,149.99,08/17/19 16:43,"680 10th St, Austin, TX 73301" +236251,AA Batteries (4-pack),1,3.84,08/15/19 21:44,"319 River St, San Francisco, CA 94016" +236252,Google Phone,1,600,08/03/19 09:44,"332 12th St, San Francisco, CA 94016" +236252,USB-C Charging Cable,1,11.95,08/03/19 09:44,"332 12th St, San Francisco, CA 94016" +236253,AAA Batteries (4-pack),1,2.99,08/22/19 13:47,"635 Sunset St, Los Angeles, CA 90001" +236254,Apple Airpods Headphones,1,150,08/29/19 08:02,"995 Cedar St, San Francisco, CA 94016" +236255,USB-C Charging Cable,1,11.95,08/21/19 07:48,"655 Spruce St, Atlanta, GA 30301" +236256,Apple Airpods Headphones,1,150,08/04/19 21:53,"557 Johnson St, Los Angeles, CA 90001" +236257,Wired Headphones,1,11.99,08/28/19 10:23,"419 2nd St, Dallas, TX 75001" +236258,Flatscreen TV,1,300,08/15/19 09:32,"622 1st St, Boston, MA 02215" +236259,Bose SoundSport Headphones,1,99.99,08/06/19 16:17,"706 Center St, San Francisco, CA 94016" +236260,AA Batteries (4-pack),1,3.84,08/01/19 15:58,"201 Lakeview St, Austin, TX 73301" +236261,iPhone,1,700,08/28/19 13:19,"242 South St, Seattle, WA 98101" +236262,AAA Batteries (4-pack),1,2.99,08/04/19 19:04,"875 10th St, Dallas, TX 75001" +236263,Google Phone,1,600,08/06/19 12:10,"896 2nd St, San Francisco, CA 94016" +236264,Wired Headphones,1,11.99,08/11/19 18:13,"396 Jackson St, San Francisco, CA 94016" +236265,Lightning Charging Cable,1,14.95,08/06/19 19:12,"892 Lakeview St, Portland, OR 97035" +236266,Lightning Charging Cable,2,14.95,08/02/19 18:41,"868 13th St, Los Angeles, CA 90001" +236267,AAA Batteries (4-pack),1,2.99,08/11/19 20:40,"66 6th St, Boston, MA 02215" +236268,AAA Batteries (4-pack),1,2.99,08/13/19 20:44,"130 Cedar St, San Francisco, CA 94016" +236269,Wired Headphones,1,11.99,08/16/19 21:23,"715 Meadow St, Dallas, TX 75001" +236270,Bose SoundSport Headphones,1,99.99,08/29/19 14:11,"18 Church St, Los Angeles, CA 90001" +236271,34in Ultrawide Monitor,1,379.99,08/21/19 02:53,"50 Cherry St, Dallas, TX 75001" +236272,Google Phone,1,600,08/14/19 14:26,"301 5th St, New York City, NY 10001" +236273,Apple Airpods Headphones,1,150,08/21/19 16:55,"977 Meadow St, Austin, TX 73301" +236274,Wired Headphones,2,11.99,08/11/19 08:51,"902 Lake St, Dallas, TX 75001" +236275,Apple Airpods Headphones,1,150,08/29/19 21:13,"275 Hickory St, Atlanta, GA 30301" +236276,Macbook Pro Laptop,1,1700,08/01/19 11:16,"969 Chestnut St, San Francisco, CA 94016" +236277,Wired Headphones,1,11.99,08/14/19 16:51,"809 Jackson St, Austin, TX 73301" +236278,Wired Headphones,1,11.99,08/25/19 21:08,"822 13th St, Los Angeles, CA 90001" +236279,AAA Batteries (4-pack),2,2.99,08/05/19 21:11,"151 14th St, Portland, OR 97035" +236280,27in FHD Monitor,1,149.99,08/10/19 09:30,"307 Willow St, Dallas, TX 75001" +236281,Lightning Charging Cable,1,14.95,08/17/19 12:20,"996 4th St, Austin, TX 73301" +236282,Bose SoundSport Headphones,1,99.99,08/03/19 18:56,"158 Lake St, New York City, NY 10001" +236283,AAA Batteries (4-pack),1,2.99,08/19/19 19:21,"190 2nd St, Portland, ME 04101" +236284,AAA Batteries (4-pack),1,2.99,08/10/19 10:58,"738 Pine St, Austin, TX 73301" +236285,Apple Airpods Headphones,1,150,08/29/19 13:52,"953 Jackson St, San Francisco, CA 94016" +236286,Lightning Charging Cable,2,14.95,08/20/19 10:23,"457 Adams St, Los Angeles, CA 90001" +236287,USB-C Charging Cable,1,11.95,08/19/19 08:44,"544 2nd St, Los Angeles, CA 90001" +236288,Lightning Charging Cable,1,14.95,08/10/19 21:54,"523 Ridge St, San Francisco, CA 94016" +236289,27in FHD Monitor,1,149.99,08/18/19 10:03,"144 Walnut St, New York City, NY 10001" +236290,Wired Headphones,1,11.99,08/08/19 11:47,"483 Maple St, Atlanta, GA 30301" +236291,USB-C Charging Cable,1,11.95,08/29/19 08:13,"705 6th St, San Francisco, CA 94016" +236292,Apple Airpods Headphones,1,150,08/29/19 10:48,"874 Ridge St, Portland, ME 04101" +236293,AA Batteries (4-pack),1,3.84,08/10/19 18:06,"200 Sunset St, Atlanta, GA 30301" +236294,Macbook Pro Laptop,1,1700,08/04/19 20:29,"321 Wilson St, Los Angeles, CA 90001" +236295,Bose SoundSport Headphones,1,99.99,08/05/19 10:34,"62 Lakeview St, Los Angeles, CA 90001" +236296,Wired Headphones,1,11.99,08/19/19 12:51,"564 2nd St, San Francisco, CA 94016" +236297,AA Batteries (4-pack),1,3.84,08/18/19 23:40,"747 4th St, Portland, OR 97035" +236298,USB-C Charging Cable,2,11.95,08/05/19 08:32,"512 5th St, New York City, NY 10001" +236299,34in Ultrawide Monitor,1,379.99,08/11/19 18:17,"728 Hill St, Los Angeles, CA 90001" +236300,Macbook Pro Laptop,1,1700,08/30/19 20:11,"155 11th St, San Francisco, CA 94016" +236301,AA Batteries (4-pack),1,3.84,08/28/19 08:14,"770 Johnson St, Los Angeles, CA 90001" +236302,AA Batteries (4-pack),1,3.84,08/26/19 15:33,"679 Spruce St, Los Angeles, CA 90001" +236303,USB-C Charging Cable,2,11.95,08/15/19 14:19,"969 13th St, Dallas, TX 75001" +236304,Google Phone,1,600,08/10/19 11:58,"796 Pine St, San Francisco, CA 94016" +236305,AA Batteries (4-pack),1,3.84,08/07/19 12:45,"903 Maple St, New York City, NY 10001" +236306,USB-C Charging Cable,1,11.95,08/10/19 22:55,"98 Willow St, San Francisco, CA 94016" +236307,20in Monitor,1,109.99,08/12/19 13:24,"186 Pine St, Seattle, WA 98101" +236308,Wired Headphones,1,11.99,08/01/19 12:38,"703 West St, Boston, MA 02215" +236309,USB-C Charging Cable,1,11.95,08/17/19 08:49,"867 Park St, San Francisco, CA 94016" +236310,27in 4K Gaming Monitor,1,389.99,08/06/19 18:29,"688 Jefferson St, New York City, NY 10001" +236311,Google Phone,1,600,08/27/19 08:23,"949 Madison St, Los Angeles, CA 90001" +236312,AA Batteries (4-pack),1,3.84,08/23/19 19:44,"651 Ridge St, New York City, NY 10001" +236313,Lightning Charging Cable,1,14.95,08/20/19 18:58,"630 Washington St, San Francisco, CA 94016" +236314,Flatscreen TV,1,300,08/07/19 23:19,"712 10th St, Austin, TX 73301" +236315,AA Batteries (4-pack),1,3.84,08/26/19 16:44,"436 Adams St, Dallas, TX 75001" +236316,Lightning Charging Cable,1,14.95,08/23/19 00:21,"977 Ridge St, Atlanta, GA 30301" +236317,Lightning Charging Cable,1,14.95,08/17/19 20:38,"838 2nd St, Atlanta, GA 30301" +236318,USB-C Charging Cable,1,11.95,08/29/19 18:35,"454 Center St, Seattle, WA 98101" +236319,USB-C Charging Cable,2,11.95,08/17/19 16:29,"142 Walnut St, Austin, TX 73301" +236320,LG Dryer,1,600.0,08/22/19 07:01,"182 Dogwood St, Los Angeles, CA 90001" +236321,Bose SoundSport Headphones,1,99.99,08/30/19 11:54,"899 Ridge St, Los Angeles, CA 90001" +236322,Lightning Charging Cable,1,14.95,08/29/19 20:10,"294 Ridge St, New York City, NY 10001" +236323,USB-C Charging Cable,1,11.95,08/02/19 20:29,"716 9th St, San Francisco, CA 94016" +236324,AAA Batteries (4-pack),2,2.99,08/31/19 12:12,"814 Johnson St, Boston, MA 02215" +236325,Lightning Charging Cable,1,14.95,08/30/19 01:01,"113 Lake St, San Francisco, CA 94016" +236326,AAA Batteries (4-pack),1,2.99,08/26/19 17:12,"912 Pine St, Dallas, TX 75001" +236327,AAA Batteries (4-pack),1,2.99,08/04/19 21:12,"241 Hickory St, Portland, OR 97035" +236328,AA Batteries (4-pack),1,3.84,08/17/19 17:34,"400 4th St, San Francisco, CA 94016" +236329,Wired Headphones,1,11.99,08/28/19 09:15,"713 River St, San Francisco, CA 94016" +236330,Flatscreen TV,1,300,08/31/19 15:49,"141 Meadow St, New York City, NY 10001" +236331,Bose SoundSport Headphones,1,99.99,08/17/19 18:07,"643 Lake St, Portland, OR 97035" +236332,27in FHD Monitor,1,149.99,08/25/19 11:44,"570 4th St, New York City, NY 10001" +236333,34in Ultrawide Monitor,1,379.99,08/03/19 00:37,"15 Ridge St, Atlanta, GA 30301" +236334,AA Batteries (4-pack),1,3.84,08/17/19 00:17,"68 North St, San Francisco, CA 94016" +236335,27in FHD Monitor,1,149.99,08/30/19 20:39,"522 Ridge St, Portland, OR 97035" +236336,USB-C Charging Cable,1,11.95,08/31/19 17:12,"166 Spruce St, Los Angeles, CA 90001" +236337,Flatscreen TV,1,300,08/22/19 15:31,"204 Cherry St, Portland, ME 04101" +236338,ThinkPad Laptop,1,999.99,08/15/19 21:17,"931 Lincoln St, Dallas, TX 75001" +236339,20in Monitor,1,109.99,08/18/19 21:50,"52 Highland St, Los Angeles, CA 90001" +236340,Google Phone,1,600,08/05/19 21:18,"6 9th St, Dallas, TX 75001" +236341,USB-C Charging Cable,1,11.95,08/25/19 22:35,"497 5th St, New York City, NY 10001" +236342,ThinkPad Laptop,1,999.99,08/29/19 18:26,"415 Washington St, Seattle, WA 98101" +236343,ThinkPad Laptop,1,999.99,08/14/19 12:56,"204 5th St, Portland, OR 97035" +236344,20in Monitor,1,109.99,08/13/19 22:16,"334 1st St, Portland, ME 04101" +236345,Lightning Charging Cable,1,14.95,08/05/19 17:35,"395 Elm St, San Francisco, CA 94016" +236346,iPhone,1,700,08/08/19 21:40,"726 Lincoln St, San Francisco, CA 94016" +236347,Wired Headphones,1,11.99,08/20/19 17:02,"13 Walnut St, Portland, OR 97035" +236348,Lightning Charging Cable,1,14.95,08/05/19 18:28,"569 South St, San Francisco, CA 94016" +236349,Lightning Charging Cable,1,14.95,08/16/19 12:53,"633 Meadow St, Austin, TX 73301" +236350,iPhone,1,700,08/25/19 12:45,"49 Hill St, San Francisco, CA 94016" +236351,iPhone,1,700,08/28/19 11:12,"389 4th St, Los Angeles, CA 90001" +236352,USB-C Charging Cable,1,11.95,08/04/19 12:58,"540 Ridge St, San Francisco, CA 94016" +236353,AA Batteries (4-pack),1,3.84,08/15/19 23:35,"695 Center St, Los Angeles, CA 90001" +236354,USB-C Charging Cable,1,11.95,08/30/19 11:16,"456 14th St, San Francisco, CA 94016" +236355,Apple Airpods Headphones,1,150,08/04/19 17:19,"78 11th St, Atlanta, GA 30301" +236356,27in 4K Gaming Monitor,1,389.99,08/14/19 16:31,"658 Jefferson St, Atlanta, GA 30301" +236357,Wired Headphones,1,11.99,08/28/19 17:27,"617 Jackson St, Atlanta, GA 30301" +236358,USB-C Charging Cable,1,11.95,08/12/19 10:41,"710 9th St, New York City, NY 10001" +236358,27in FHD Monitor,1,149.99,08/12/19 10:41,"710 9th St, New York City, NY 10001" +,,,,, +236359,Lightning Charging Cable,1,14.95,08/06/19 13:55,"611 Dogwood St, New York City, NY 10001" +236360,AA Batteries (4-pack),1,3.84,08/03/19 21:52,"125 11th St, Boston, MA 02215" +236361,USB-C Charging Cable,1,11.95,08/29/19 16:08,"267 Elm St, New York City, NY 10001" +236362,Apple Airpods Headphones,1,150,08/27/19 22:27,"659 Lake St, Los Angeles, CA 90001" +236363,Apple Airpods Headphones,1,150,08/13/19 14:20,"875 10th St, Portland, OR 97035" +236364,AA Batteries (4-pack),1,3.84,08/03/19 16:17,"216 4th St, Seattle, WA 98101" +236365,Flatscreen TV,1,300,08/14/19 15:02,"516 Center St, Los Angeles, CA 90001" +236366,Wired Headphones,1,11.99,08/31/19 22:24,"471 Johnson St, Boston, MA 02215" +236367,AA Batteries (4-pack),1,3.84,08/03/19 13:34,"928 Jackson St, San Francisco, CA 94016" +236368,AA Batteries (4-pack),3,3.84,08/03/19 17:31,"817 11th St, Los Angeles, CA 90001" +236369,Google Phone,1,600,08/07/19 22:52,"556 Maple St, New York City, NY 10001" +236370,Google Phone,1,600,08/18/19 21:34,"301 Ridge St, San Francisco, CA 94016" +236370,USB-C Charging Cable,1,11.95,08/18/19 21:34,"301 Ridge St, San Francisco, CA 94016" +236370,Wired Headphones,1,11.99,08/18/19 21:34,"301 Ridge St, San Francisco, CA 94016" +236371,AA Batteries (4-pack),1,3.84,08/11/19 02:33,"497 Park St, Austin, TX 73301" +236372,Macbook Pro Laptop,1,1700,08/11/19 11:20,"909 Highland St, Los Angeles, CA 90001" +236373,AAA Batteries (4-pack),1,2.99,08/10/19 00:57,"276 Sunset St, Los Angeles, CA 90001" +236374,AA Batteries (4-pack),1,3.84,08/02/19 20:41,"653 Hill St, New York City, NY 10001" +236375,Lightning Charging Cable,1,14.95,08/02/19 07:29,"313 Spruce St, San Francisco, CA 94016" +236376,USB-C Charging Cable,1,11.95,08/26/19 10:33,"215 Church St, Atlanta, GA 30301" +236377,Lightning Charging Cable,1,14.95,08/23/19 23:47,"961 4th St, Austin, TX 73301" +236378,27in FHD Monitor,1,149.99,08/26/19 10:03,"531 Pine St, Austin, TX 73301" +236379,27in FHD Monitor,1,149.99,08/07/19 20:33,"575 North St, Los Angeles, CA 90001" +236380,AAA Batteries (4-pack),1,2.99,08/10/19 20:38,"890 Church St, Dallas, TX 75001" +236381,ThinkPad Laptop,1,999.99,08/11/19 19:09,"466 South St, San Francisco, CA 94016" +236382,Flatscreen TV,1,300,08/23/19 19:57,"459 Jefferson St, Boston, MA 02215" +236383,Lightning Charging Cable,1,14.95,08/31/19 16:24,"402 11th St, San Francisco, CA 94016" +236384,LG Washing Machine,1,600.0,08/26/19 06:41,"542 Madison St, New York City, NY 10001" +236385,Apple Airpods Headphones,1,150,08/23/19 11:09,"933 2nd St, San Francisco, CA 94016" +236386,Lightning Charging Cable,2,14.95,08/21/19 11:39,"104 Main St, Dallas, TX 75001" +236387,Lightning Charging Cable,1,14.95,08/16/19 09:41,"931 Maple St, San Francisco, CA 94016" +236388,USB-C Charging Cable,1,11.95,08/25/19 22:39,"939 Cherry St, Seattle, WA 98101" +236389,Wired Headphones,1,11.99,08/03/19 11:34,"288 Chestnut St, Atlanta, GA 30301" +236390,AAA Batteries (4-pack),1,2.99,08/04/19 19:48,"255 Walnut St, San Francisco, CA 94016" +236391,20in Monitor,1,109.99,08/28/19 09:33,"696 1st St, Los Angeles, CA 90001" +236392,AA Batteries (4-pack),1,3.84,08/16/19 19:16,"603 Elm St, New York City, NY 10001" +236393,USB-C Charging Cable,1,11.95,08/17/19 09:52,"791 Cedar St, San Francisco, CA 94016" +,,,,, +236394,Lightning Charging Cable,1,14.95,08/07/19 20:38,"69 Sunset St, Dallas, TX 75001" +236395,Apple Airpods Headphones,1,150,08/11/19 21:54,"841 Chestnut St, Boston, MA 02215" +236396,Macbook Pro Laptop,1,1700,08/14/19 19:54,"54 Park St, Los Angeles, CA 90001" +236397,iPhone,1,700,08/11/19 18:50,"557 Forest St, Atlanta, GA 30301" +236398,USB-C Charging Cable,1,11.95,08/15/19 11:37,"757 Sunset St, San Francisco, CA 94016" +236399,Wired Headphones,1,11.99,08/21/19 12:05,"572 Madison St, Atlanta, GA 30301" +236400,Macbook Pro Laptop,1,1700,08/10/19 13:18,"73 Wilson St, Dallas, TX 75001" +236401,Bose SoundSport Headphones,1,99.99,08/08/19 18:09,"620 2nd St, Austin, TX 73301" +236402,27in 4K Gaming Monitor,1,389.99,08/20/19 07:52,"649 Walnut St, Dallas, TX 75001" +236403,Lightning Charging Cable,1,14.95,08/20/19 13:20,"280 Madison St, San Francisco, CA 94016" +236404,Bose SoundSport Headphones,1,99.99,08/30/19 17:09,"913 Highland St, Seattle, WA 98101" +236405,Bose SoundSport Headphones,1,99.99,08/10/19 16:12,"381 11th St, San Francisco, CA 94016" +236406,AAA Batteries (4-pack),1,2.99,08/02/19 16:40,"97 5th St, New York City, NY 10001" +236407,Wired Headphones,1,11.99,08/18/19 16:41,"278 13th St, Atlanta, GA 30301" +236408,Flatscreen TV,1,300,08/25/19 11:50,"858 11th St, San Francisco, CA 94016" +236409,AAA Batteries (4-pack),1,2.99,08/17/19 18:56,"364 Johnson St, Atlanta, GA 30301" +236410,AA Batteries (4-pack),1,3.84,08/15/19 23:06,"169 Madison St, New York City, NY 10001" +236411,Macbook Pro Laptop,1,1700,08/09/19 13:12,"753 Madison St, San Francisco, CA 94016" +236412,Lightning Charging Cable,1,14.95,08/24/19 06:49,"951 1st St, Boston, MA 02215" +236413,Bose SoundSport Headphones,1,99.99,08/24/19 18:49,"206 Jackson St, San Francisco, CA 94016" +236413,34in Ultrawide Monitor,1,379.99,08/24/19 18:49,"206 Jackson St, San Francisco, CA 94016" +236414,Apple Airpods Headphones,1,150,08/24/19 15:33,"583 Chestnut St, San Francisco, CA 94016" +236415,USB-C Charging Cable,1,11.95,08/03/19 19:59,"731 Meadow St, Atlanta, GA 30301" +236416,AA Batteries (4-pack),3,3.84,08/31/19 15:11,"332 Hill St, Atlanta, GA 30301" +236417,Apple Airpods Headphones,1,150,08/16/19 13:17,"748 Walnut St, San Francisco, CA 94016" +236418,LG Washing Machine,1,600.0,08/02/19 20:07,"519 Dogwood St, San Francisco, CA 94016" +236419,Bose SoundSport Headphones,1,99.99,08/31/19 11:29,"323 Elm St, New York City, NY 10001" +236420,20in Monitor,1,109.99,08/20/19 20:51,"66 Maple St, Austin, TX 73301" +236421,Lightning Charging Cable,1,14.95,08/31/19 22:16,"719 Cherry St, San Francisco, CA 94016" +236422,Lightning Charging Cable,1,14.95,08/07/19 18:31,"147 Park St, Boston, MA 02215" +236423,USB-C Charging Cable,1,11.95,08/22/19 13:07,"518 Cedar St, San Francisco, CA 94016" +236424,AAA Batteries (4-pack),1,2.99,08/28/19 00:12,"516 Cherry St, San Francisco, CA 94016" +236425,AA Batteries (4-pack),1,3.84,08/22/19 12:30,"646 Adams St, New York City, NY 10001" +236426,34in Ultrawide Monitor,1,379.99,08/02/19 17:45,"212 Forest St, Portland, OR 97035" +236427,Wired Headphones,1,11.99,08/29/19 19:05,"499 7th St, Boston, MA 02215" +236428,AA Batteries (4-pack),1,3.84,08/09/19 12:28,"490 River St, Dallas, TX 75001" +236429,Apple Airpods Headphones,1,150,08/15/19 12:34,"376 Center St, Dallas, TX 75001" +236430,20in Monitor,1,109.99,08/02/19 16:53,"280 Hill St, San Francisco, CA 94016" +236431,Vareebadd Phone,1,400,08/23/19 20:24,"850 Cherry St, New York City, NY 10001" +236432,AA Batteries (4-pack),1,3.84,08/29/19 12:42,"830 6th St, New York City, NY 10001" +236433,Wired Headphones,1,11.99,08/03/19 23:39,"178 Jefferson St, Atlanta, GA 30301" +236434,ThinkPad Laptop,1,999.99,08/28/19 09:27,"979 Center St, Los Angeles, CA 90001" +236435,AAA Batteries (4-pack),1,2.99,08/19/19 17:09,"140 5th St, Portland, ME 04101" +236436,Wired Headphones,1,11.99,08/11/19 17:30,"741 Park St, Dallas, TX 75001" +236437,Lightning Charging Cable,1,14.95,08/19/19 22:36,"621 Hill St, Los Angeles, CA 90001" +236438,USB-C Charging Cable,1,11.95,08/14/19 06:13,"337 5th St, Los Angeles, CA 90001" +236439,20in Monitor,1,109.99,08/12/19 00:10,"568 11th St, Dallas, TX 75001" +236440,Bose SoundSport Headphones,1,99.99,08/05/19 21:53,"75 Dogwood St, Boston, MA 02215" +236441,AA Batteries (4-pack),1,3.84,08/30/19 10:20,"122 Maple St, San Francisco, CA 94016" +236442,USB-C Charging Cable,1,11.95,08/27/19 14:56,"984 Willow St, Austin, TX 73301" +236443,USB-C Charging Cable,1,11.95,08/07/19 17:40,"702 6th St, Boston, MA 02215" +236444,Wired Headphones,1,11.99,08/29/19 17:27,"249 Cedar St, Atlanta, GA 30301" +236445,Bose SoundSport Headphones,1,99.99,08/31/19 09:17,"258 Hill St, San Francisco, CA 94016" +236446,27in 4K Gaming Monitor,1,389.99,08/24/19 13:48,"691 North St, Los Angeles, CA 90001" +236447,USB-C Charging Cable,1,11.95,08/22/19 14:54,"679 Forest St, New York City, NY 10001" +236448,34in Ultrawide Monitor,1,379.99,08/24/19 09:39,"123 5th St, New York City, NY 10001" +236449,iPhone,1,700,08/02/19 17:22,"170 Johnson St, Portland, OR 97035" +236450,Lightning Charging Cable,1,14.95,08/17/19 13:38,"541 11th St, Portland, OR 97035" +236451,AAA Batteries (4-pack),1,2.99,08/07/19 20:38,"960 Pine St, New York City, NY 10001" +236452,iPhone,1,700,08/16/19 19:21,"18 Jackson St, Los Angeles, CA 90001" +236453,AA Batteries (4-pack),1,3.84,08/27/19 10:13,"661 2nd St, San Francisco, CA 94016" +236454,AA Batteries (4-pack),1,3.84,08/09/19 21:41,"899 6th St, Dallas, TX 75001" +236455,AAA Batteries (4-pack),1,2.99,08/20/19 14:49,"500 Hickory St, New York City, NY 10001" +236456,Flatscreen TV,1,300,08/12/19 22:37,"675 Elm St, San Francisco, CA 94016" +236457,USB-C Charging Cable,2,11.95,08/07/19 20:33,"83 Madison St, Dallas, TX 75001" +236458,Macbook Pro Laptop,1,1700,08/16/19 13:28,"945 Church St, Boston, MA 02215" +236459,Wired Headphones,1,11.99,08/02/19 14:32,"626 Elm St, Los Angeles, CA 90001" +236460,Bose SoundSport Headphones,1,99.99,08/02/19 15:07,"149 1st St, San Francisco, CA 94016" +236461,Apple Airpods Headphones,1,150,08/17/19 19:31,"146 Adams St, Los Angeles, CA 90001" +236462,Bose SoundSport Headphones,1,99.99,08/06/19 00:33,"478 Wilson St, Austin, TX 73301" +236463,Apple Airpods Headphones,1,150,08/27/19 18:52,"354 Church St, Atlanta, GA 30301" +236464,Lightning Charging Cable,2,14.95,08/22/19 07:29,"153 North St, Dallas, TX 75001" +236465,iPhone,1,700,08/04/19 18:21,"39 Lincoln St, Seattle, WA 98101" +236466,34in Ultrawide Monitor,1,379.99,08/20/19 15:50,"428 Elm St, Portland, OR 97035" +236467,Lightning Charging Cable,1,14.95,08/10/19 16:56,"978 2nd St, Seattle, WA 98101" +236468,Apple Airpods Headphones,1,150,08/25/19 18:08,"603 Church St, San Francisco, CA 94016" +236469,Wired Headphones,1,11.99,08/26/19 00:48,"744 7th St, New York City, NY 10001" +236470,Bose SoundSport Headphones,1,99.99,08/17/19 23:04,"574 Pine St, Seattle, WA 98101" +236471,USB-C Charging Cable,1,11.95,08/01/19 21:28,"646 14th St, San Francisco, CA 94016" +236472,AA Batteries (4-pack),4,3.84,08/16/19 16:03,"758 Park St, Dallas, TX 75001" +236473,Wired Headphones,1,11.99,08/27/19 09:06,"998 10th St, Boston, MA 02215" +236474,Wired Headphones,1,11.99,08/11/19 19:21,"979 Center St, San Francisco, CA 94016" +236475,Google Phone,1,600,08/13/19 19:39,"32 River St, New York City, NY 10001" +236476,USB-C Charging Cable,1,11.95,08/19/19 23:28,"677 Cedar St, Dallas, TX 75001" +236477,AA Batteries (4-pack),1,3.84,08/23/19 09:40,"227 Walnut St, New York City, NY 10001" +236478,AAA Batteries (4-pack),1,2.99,08/30/19 13:00,"851 Jefferson St, Los Angeles, CA 90001" +236479,USB-C Charging Cable,1,11.95,08/14/19 22:01,"767 1st St, Los Angeles, CA 90001" +236480,AAA Batteries (4-pack),1,2.99,08/08/19 16:56,"351 Chestnut St, New York City, NY 10001" +236481,Lightning Charging Cable,1,14.95,08/30/19 17:31,"871 North St, Atlanta, GA 30301" +236482,27in FHD Monitor,1,149.99,08/27/19 11:29,"921 13th St, Atlanta, GA 30301" +236483,Bose SoundSport Headphones,1,99.99,08/20/19 07:59,"821 9th St, Los Angeles, CA 90001" +236484,Wired Headphones,1,11.99,08/19/19 20:41,"517 Ridge St, Portland, ME 04101" +236485,Lightning Charging Cable,1,14.95,08/05/19 19:16,"772 Cedar St, Portland, ME 04101" +236486,Apple Airpods Headphones,1,150,08/09/19 12:25,"336 Center St, Atlanta, GA 30301" +236487,Lightning Charging Cable,1,14.95,08/04/19 11:36,"839 River St, San Francisco, CA 94016" +236488,34in Ultrawide Monitor,1,379.99,08/16/19 22:36,"826 6th St, San Francisco, CA 94016" +236489,Wired Headphones,1,11.99,08/09/19 14:14,"837 Forest St, San Francisco, CA 94016" +236490,Bose SoundSport Headphones,1,99.99,08/17/19 14:42,"971 9th St, Los Angeles, CA 90001" +236490,Lightning Charging Cable,1,14.95,08/17/19 14:42,"971 9th St, Los Angeles, CA 90001" +236491,USB-C Charging Cable,1,11.95,08/26/19 12:46,"635 6th St, Portland, ME 04101" +236492,AA Batteries (4-pack),2,3.84,08/30/19 18:54,"150 Sunset St, Seattle, WA 98101" +236493,Apple Airpods Headphones,1,150,08/31/19 20:53,"47 Johnson St, Los Angeles, CA 90001" +236494,AAA Batteries (4-pack),1,2.99,08/05/19 09:02,"637 Washington St, San Francisco, CA 94016" +236495,AA Batteries (4-pack),1,3.84,08/07/19 16:42,"716 9th St, New York City, NY 10001" +236496,USB-C Charging Cable,1,11.95,08/31/19 18:41,"713 Forest St, San Francisco, CA 94016" +236497,Lightning Charging Cable,1,14.95,08/26/19 11:40,"791 West St, New York City, NY 10001" +236498,Wired Headphones,1,11.99,08/26/19 12:12,"15 Spruce St, Dallas, TX 75001" +236499,27in FHD Monitor,1,149.99,08/15/19 22:01,"718 Hickory St, Los Angeles, CA 90001" +236500,Bose SoundSport Headphones,1,99.99,08/30/19 13:51,"985 Willow St, Atlanta, GA 30301" +236501,USB-C Charging Cable,1,11.95,08/07/19 00:05,"787 Lakeview St, New York City, NY 10001" +236501,USB-C Charging Cable,1,11.95,08/07/19 00:05,"787 Lakeview St, New York City, NY 10001" +236502,AAA Batteries (4-pack),1,2.99,08/05/19 22:20,"920 Walnut St, Dallas, TX 75001" +236503,Lightning Charging Cable,1,14.95,08/07/19 14:58,"898 Spruce St, New York City, NY 10001" +236504,27in 4K Gaming Monitor,1,389.99,08/16/19 19:03,"152 8th St, Seattle, WA 98101" +236505,iPhone,1,700,08/07/19 16:43,"168 Lincoln St, Boston, MA 02215" +236506,Flatscreen TV,1,300,08/23/19 10:54,"266 4th St, Boston, MA 02215" +236507,Apple Airpods Headphones,1,150,08/18/19 11:30,"863 7th St, Seattle, WA 98101" +236508,Apple Airpods Headphones,1,150,08/15/19 22:42,"899 Lakeview St, Portland, OR 97035" +236509,USB-C Charging Cable,1,11.95,08/17/19 04:49,"184 Maple St, Dallas, TX 75001" +236509,Lightning Charging Cable,1,14.95,08/17/19 04:49,"184 Maple St, Dallas, TX 75001" +236510,AA Batteries (4-pack),1,3.84,08/07/19 12:34,"7 Cherry St, Dallas, TX 75001" +236511,Lightning Charging Cable,1,14.95,08/10/19 09:53,"559 12th St, Atlanta, GA 30301" +236512,Lightning Charging Cable,1,14.95,08/09/19 16:14,"108 2nd St, Los Angeles, CA 90001" +236513,Apple Airpods Headphones,1,150,08/09/19 08:41,"625 7th St, San Francisco, CA 94016" +236514,AAA Batteries (4-pack),1,2.99,08/03/19 21:19,"355 Wilson St, Dallas, TX 75001" +236515,Lightning Charging Cable,1,14.95,08/16/19 09:47,"326 Jackson St, Portland, OR 97035" +236516,AAA Batteries (4-pack),1,2.99,08/30/19 21:51,"51 Dogwood St, Boston, MA 02215" +236517,Wired Headphones,1,11.99,08/19/19 20:44,"126 11th St, Dallas, TX 75001" +236518,27in FHD Monitor,1,149.99,08/23/19 19:29,"952 7th St, Seattle, WA 98101" +236519,27in 4K Gaming Monitor,1,389.99,08/28/19 17:16,"902 Highland St, San Francisco, CA 94016" +236520,Lightning Charging Cable,1,14.95,08/14/19 14:34,"961 11th St, Seattle, WA 98101" +236521,Lightning Charging Cable,2,14.95,08/07/19 21:30,"344 7th St, Atlanta, GA 30301" +236522,AAA Batteries (4-pack),1,2.99,08/11/19 15:57,"274 6th St, Atlanta, GA 30301" +236523,Lightning Charging Cable,2,14.95,08/10/19 13:24,"202 Church St, Los Angeles, CA 90001" +236524,Google Phone,1,600,08/29/19 11:56,"687 South St, Los Angeles, CA 90001" +236525,Bose SoundSport Headphones,1,99.99,08/13/19 12:31,"175 Lake St, Los Angeles, CA 90001" +236526,AA Batteries (4-pack),3,3.84,08/14/19 10:04,"889 Jackson St, Boston, MA 02215" +236527,AA Batteries (4-pack),1,3.84,08/30/19 16:42,"655 Washington St, Atlanta, GA 30301" +236528,AAA Batteries (4-pack),1,2.99,08/15/19 20:09,"659 Cedar St, New York City, NY 10001" +236529,AA Batteries (4-pack),1,3.84,08/06/19 07:44,"896 9th St, Los Angeles, CA 90001" +236530,34in Ultrawide Monitor,1,379.99,08/05/19 16:47,"61 11th St, Atlanta, GA 30301" +236531,AAA Batteries (4-pack),2,2.99,08/26/19 08:05,"577 Willow St, San Francisco, CA 94016" +236532,Wired Headphones,1,11.99,08/09/19 12:54,"865 12th St, San Francisco, CA 94016" +236533,Apple Airpods Headphones,1,150,08/25/19 00:00,"400 4th St, Austin, TX 73301" +236534,Apple Airpods Headphones,1,150,08/13/19 10:15,"343 11th St, Boston, MA 02215" +236535,iPhone,1,700,08/11/19 10:51,"306 Hill St, Austin, TX 73301" +236536,Lightning Charging Cable,1,14.95,08/07/19 16:33,"315 Forest St, Seattle, WA 98101" +236537,Lightning Charging Cable,1,14.95,08/24/19 17:07,"238 Forest St, Portland, OR 97035" +236538,Lightning Charging Cable,1,14.95,08/12/19 22:09,"460 Dogwood St, Austin, TX 73301" +236539,Wired Headphones,1,11.99,08/30/19 10:48,"839 Spruce St, San Francisco, CA 94016" +236540,USB-C Charging Cable,1,11.95,08/21/19 08:50,"988 11th St, New York City, NY 10001" +236541,Bose SoundSport Headphones,1,99.99,08/16/19 18:40,"757 Church St, Seattle, WA 98101" +236542,LG Washing Machine,1,600.0,08/07/19 15:22,"119 Main St, New York City, NY 10001" +236543,Apple Airpods Headphones,1,150,08/17/19 18:54,"745 1st St, New York City, NY 10001" +236544,AA Batteries (4-pack),1,3.84,08/15/19 19:44,"541 11th St, Dallas, TX 75001" +236545,Google Phone,1,600,08/18/19 22:34,"747 Jefferson St, San Francisco, CA 94016" +236546,Flatscreen TV,1,300,08/07/19 22:22,"390 9th St, New York City, NY 10001" +236547,Lightning Charging Cable,1,14.95,08/09/19 13:59,"260 Center St, Portland, OR 97035" +236548,AA Batteries (4-pack),2,3.84,08/10/19 08:15,"106 Adams St, Portland, OR 97035" +236549,Vareebadd Phone,1,400,08/15/19 10:59,"822 11th St, Portland, OR 97035" +236550,iPhone,1,700,08/07/19 00:06,"342 Cedar St, San Francisco, CA 94016" +236551,Apple Airpods Headphones,1,150,08/31/19 09:07,"223 Maple St, Los Angeles, CA 90001" +236552,Wired Headphones,1,11.99,08/01/19 12:29,"63 Cherry St, New York City, NY 10001" +236553,Lightning Charging Cable,1,14.95,08/15/19 22:00,"695 Park St, Los Angeles, CA 90001" +236554,AAA Batteries (4-pack),1,2.99,08/16/19 20:20,"489 Maple St, Austin, TX 73301" +236555,Apple Airpods Headphones,1,150,08/17/19 13:50,"499 West St, Portland, OR 97035" +236556,Lightning Charging Cable,1,14.95,08/28/19 20:37,"794 Ridge St, Seattle, WA 98101" +236557,AA Batteries (4-pack),1,3.84,08/10/19 19:50,"707 Hickory St, Atlanta, GA 30301" +236558,AA Batteries (4-pack),1,3.84,08/23/19 09:46,"415 Church St, Dallas, TX 75001" +236559,Wired Headphones,1,11.99,08/09/19 18:10,"872 Hickory St, San Francisco, CA 94016" +236560,Wired Headphones,1,11.99,08/19/19 14:32,"265 Willow St, New York City, NY 10001" +236561,LG Washing Machine,1,600.0,08/07/19 08:03,"473 8th St, Los Angeles, CA 90001" +236562,Vareebadd Phone,1,400,08/23/19 12:24,"739 Hill St, Portland, OR 97035" +236563,Lightning Charging Cable,1,14.95,08/31/19 09:18,"692 10th St, Portland, OR 97035" +236564,USB-C Charging Cable,1,11.95,08/25/19 21:05,"72 Wilson St, New York City, NY 10001" +236565,Wired Headphones,1,11.99,08/28/19 10:54,"487 Main St, Portland, OR 97035" +236566,USB-C Charging Cable,1,11.95,08/22/19 13:43,"345 South St, Atlanta, GA 30301" +236567,AA Batteries (4-pack),1,3.84,08/27/19 20:08,"696 Adams St, San Francisco, CA 94016" +236568,USB-C Charging Cable,1,11.95,08/09/19 22:58,"88 4th St, Austin, TX 73301" +236569,20in Monitor,1,109.99,08/01/19 13:22,"880 Sunset St, Boston, MA 02215" +236570,Lightning Charging Cable,1,14.95,08/24/19 14:59,"116 11th St, Atlanta, GA 30301" +236571,Lightning Charging Cable,1,14.95,08/04/19 07:22,"658 Forest St, Los Angeles, CA 90001" +236572,USB-C Charging Cable,1,11.95,08/14/19 09:07,"189 10th St, Boston, MA 02215" +236573,AAA Batteries (4-pack),1,2.99,08/11/19 22:10,"598 12th St, San Francisco, CA 94016" +236574,Bose SoundSport Headphones,2,99.99,08/12/19 10:25,"193 Washington St, Los Angeles, CA 90001" +236574,Wired Headphones,1,11.99,08/12/19 10:25,"193 Washington St, Los Angeles, CA 90001" +236575,USB-C Charging Cable,1,11.95,08/05/19 09:31,"536 Hill St, Dallas, TX 75001" +236576,Lightning Charging Cable,1,14.95,08/03/19 01:22,"550 Park St, Portland, OR 97035" +236577,AA Batteries (4-pack),1,3.84,08/24/19 10:49,"745 Meadow St, San Francisco, CA 94016" +236578,Bose SoundSport Headphones,1,99.99,08/28/19 11:59,"822 8th St, Dallas, TX 75001" +236579,USB-C Charging Cable,1,11.95,08/11/19 20:14,"891 2nd St, Seattle, WA 98101" +236580,Lightning Charging Cable,1,14.95,08/22/19 01:12,"16 Church St, San Francisco, CA 94016" +236581,AAA Batteries (4-pack),3,2.99,08/20/19 22:18,"542 Washington St, New York City, NY 10001" +236582,Macbook Pro Laptop,1,1700,08/17/19 06:40,"222 Forest St, San Francisco, CA 94016" +236583,Lightning Charging Cable,1,14.95,08/01/19 15:22,"647 8th St, Boston, MA 02215" +236584,AAA Batteries (4-pack),3,2.99,08/26/19 16:12,"851 1st St, Boston, MA 02215" +236585,AAA Batteries (4-pack),1,2.99,08/06/19 16:36,"262 10th St, San Francisco, CA 94016" +236586,AA Batteries (4-pack),1,3.84,08/24/19 10:44,"393 North St, San Francisco, CA 94016" +236587,Wired Headphones,1,11.99,08/11/19 16:59,"956 11th St, New York City, NY 10001" +236588,Apple Airpods Headphones,1,150,08/31/19 17:02,"526 12th St, New York City, NY 10001" +236589,Bose SoundSport Headphones,1,99.99,08/12/19 16:22,"405 Willow St, Boston, MA 02215" +236590,AAA Batteries (4-pack),1,2.99,08/01/19 13:12,"482 Johnson St, Seattle, WA 98101" +236591,20in Monitor,1,109.99,08/31/19 08:34,"576 Forest St, Portland, ME 04101" +236592,Wired Headphones,1,11.99,08/04/19 15:32,"647 Dogwood St, Los Angeles, CA 90001" +236593,AA Batteries (4-pack),1,3.84,08/27/19 07:41,"197 8th St, San Francisco, CA 94016" +236594,AAA Batteries (4-pack),1,2.99,08/02/19 12:08,"509 Dogwood St, Boston, MA 02215" +236595,ThinkPad Laptop,1,999.99,08/17/19 09:01,"683 Forest St, Boston, MA 02215" +236596,Apple Airpods Headphones,1,150,08/06/19 15:44,"717 Maple St, New York City, NY 10001" +236597,AAA Batteries (4-pack),2,2.99,08/13/19 08:05,"170 Maple St, New York City, NY 10001" +236598,Lightning Charging Cable,1,14.95,08/06/19 15:10,"661 Church St, Dallas, TX 75001" +236599,Apple Airpods Headphones,1,150,08/24/19 10:10,"432 5th St, New York City, NY 10001" +236600,27in FHD Monitor,1,149.99,08/10/19 09:28,"953 Cherry St, Boston, MA 02215" +236601,Lightning Charging Cable,1,14.95,08/06/19 16:54,"547 Lake St, Dallas, TX 75001" +236602,Bose SoundSport Headphones,1,99.99,08/02/19 07:14,"682 Forest St, Portland, OR 97035" +236603,USB-C Charging Cable,2,11.95,08/06/19 22:32,"563 2nd St, Atlanta, GA 30301" +236604,Macbook Pro Laptop,1,1700,08/08/19 19:43,"637 Forest St, New York City, NY 10001" +236605,Bose SoundSport Headphones,1,99.99,08/09/19 11:39,"174 Walnut St, Portland, OR 97035" +236606,Wired Headphones,1,11.99,08/06/19 05:31,"446 8th St, Seattle, WA 98101" +236607,27in 4K Gaming Monitor,1,389.99,08/15/19 14:06,"640 Park St, Dallas, TX 75001" +236608,Apple Airpods Headphones,1,150,08/12/19 17:51,"734 Lake St, Los Angeles, CA 90001" +236608,USB-C Charging Cable,1,11.95,08/12/19 17:51,"734 Lake St, Los Angeles, CA 90001" +236609,Lightning Charging Cable,1,14.95,08/05/19 20:24,"58 Highland St, San Francisco, CA 94016" +236610,34in Ultrawide Monitor,1,379.99,08/10/19 12:59,"572 Wilson St, San Francisco, CA 94016" +236611,Apple Airpods Headphones,1,150,08/08/19 20:07,"170 Adams St, San Francisco, CA 94016" +236612,Lightning Charging Cable,1,14.95,08/19/19 05:42,"94 Elm St, Los Angeles, CA 90001" +236613,AA Batteries (4-pack),2,3.84,08/02/19 17:58,"638 North St, Seattle, WA 98101" +236614,27in FHD Monitor,1,149.99,08/08/19 07:22,"347 Lake St, Portland, OR 97035" +236615,Flatscreen TV,1,300,08/06/19 07:25,"800 12th St, San Francisco, CA 94016" +236616,Apple Airpods Headphones,1,150,08/23/19 06:59,"620 7th St, New York City, NY 10001" +236617,Apple Airpods Headphones,1,150,08/08/19 18:09,"218 Main St, San Francisco, CA 94016" +236618,Google Phone,1,600,08/19/19 06:54,"793 5th St, Los Angeles, CA 90001" +236619,AAA Batteries (4-pack),1,2.99,08/26/19 10:37,"82 Madison St, San Francisco, CA 94016" +236619,27in 4K Gaming Monitor,1,389.99,08/26/19 10:37,"82 Madison St, San Francisco, CA 94016" +236620,Wired Headphones,1,11.99,08/27/19 11:39,"696 Madison St, Boston, MA 02215" +236621,Bose SoundSport Headphones,1,99.99,08/08/19 13:26,"230 Ridge St, Boston, MA 02215" +236622,ThinkPad Laptop,1,999.99,08/31/19 16:09,"904 Ridge St, Boston, MA 02215" +236623,USB-C Charging Cable,1,11.95,08/05/19 16:14,"85 Johnson St, Boston, MA 02215" +236624,AAA Batteries (4-pack),1,2.99,08/05/19 16:22,"226 Lake St, Los Angeles, CA 90001" +236625,Apple Airpods Headphones,1,150,08/07/19 14:24,"660 Hickory St, Seattle, WA 98101" +236626,27in 4K Gaming Monitor,1,389.99,08/05/19 19:09,"403 Forest St, Dallas, TX 75001" +236627,AA Batteries (4-pack),1,3.84,08/22/19 19:48,"381 Center St, San Francisco, CA 94016" +236628,Wired Headphones,1,11.99,08/07/19 18:54,"229 11th St, Dallas, TX 75001" +236629,Lightning Charging Cable,1,14.95,08/14/19 10:41,"201 4th St, New York City, NY 10001" +236630,USB-C Charging Cable,1,11.95,08/27/19 16:02,"3 Church St, New York City, NY 10001" +236631,AAA Batteries (4-pack),1,2.99,09/01/19 04:19,"989 Wilson St, Atlanta, GA 30301" +236632,Lightning Charging Cable,1,14.95,08/02/19 17:49,"725 2nd St, Los Angeles, CA 90001" +236633,AA Batteries (4-pack),1,3.84,08/05/19 06:56,"981 13th St, New York City, NY 10001" +236634,Google Phone,1,600,08/04/19 15:18,"452 Pine St, San Francisco, CA 94016" +236634,Wired Headphones,2,11.99,08/04/19 15:18,"452 Pine St, San Francisco, CA 94016" +236635,Lightning Charging Cable,1,14.95,08/24/19 22:57,"814 Lakeview St, Austin, TX 73301" +236636,AAA Batteries (4-pack),1,2.99,08/12/19 12:27,"95 Lake St, New York City, NY 10001" +236637,AA Batteries (4-pack),1,3.84,08/19/19 10:35,"854 14th St, San Francisco, CA 94016" +236638,Wired Headphones,1,11.99,08/27/19 21:45,"336 Cherry St, Los Angeles, CA 90001" +236639,AA Batteries (4-pack),1,3.84,08/28/19 17:32,"754 Lakeview St, Los Angeles, CA 90001" +236640,Bose SoundSport Headphones,1,99.99,08/01/19 16:24,"280 9th St, Los Angeles, CA 90001" +236641,iPhone,1,700,08/21/19 23:26,"747 Hickory St, New York City, NY 10001" +236642,34in Ultrawide Monitor,1,379.99,08/10/19 12:17,"984 Lincoln St, Portland, ME 04101" +236643,USB-C Charging Cable,1,11.95,08/09/19 22:06,"287 12th St, Portland, OR 97035" +236644,Wired Headphones,1,11.99,08/28/19 16:34,"827 1st St, New York City, NY 10001" +236645,Vareebadd Phone,1,400,08/03/19 16:37,"607 11th St, Seattle, WA 98101" +236646,AA Batteries (4-pack),1,3.84,08/10/19 10:32,"940 Highland St, New York City, NY 10001" +236647,Lightning Charging Cable,1,14.95,08/18/19 16:07,"14 Spruce St, San Francisco, CA 94016" +236648,Apple Airpods Headphones,1,150,08/14/19 10:11,"266 Hickory St, Seattle, WA 98101" +236649,iPhone,1,700,08/13/19 13:55,"32 4th St, New York City, NY 10001" +236650,USB-C Charging Cable,2,11.95,08/04/19 11:08,"199 Adams St, Austin, TX 73301" +236651,AAA Batteries (4-pack),1,2.99,08/01/19 13:50,"619 Jefferson St, San Francisco, CA 94016" +236652,Wired Headphones,1,11.99,08/16/19 16:50,"533 Washington St, Atlanta, GA 30301" +236652,Wired Headphones,1,11.99,08/16/19 16:50,"533 Washington St, Atlanta, GA 30301" +236653,Lightning Charging Cable,1,14.95,08/16/19 16:50,"441 Wilson St, New York City, NY 10001" +236654,USB-C Charging Cable,1,11.95,08/07/19 09:14,"915 1st St, Boston, MA 02215" +236655,USB-C Charging Cable,1,11.95,08/21/19 16:14,"372 Lake St, Los Angeles, CA 90001" +236656,Vareebadd Phone,1,400,08/22/19 20:10,"54 11th St, New York City, NY 10001" +236656,Wired Headphones,1,11.99,08/22/19 20:10,"54 11th St, New York City, NY 10001" +236657,Apple Airpods Headphones,1,150,08/30/19 22:58,"432 Center St, San Francisco, CA 94016" +236658,27in 4K Gaming Monitor,1,389.99,08/12/19 10:21,"822 Hill St, Seattle, WA 98101" +236659,20in Monitor,1,109.99,08/05/19 14:18,"347 11th St, New York City, NY 10001" +236660,Apple Airpods Headphones,1,150,08/30/19 11:22,"37 River St, Seattle, WA 98101" +236661,Wired Headphones,2,11.99,08/07/19 21:40,"660 Adams St, New York City, NY 10001" +236662,Wired Headphones,1,11.99,08/22/19 13:04,"588 Walnut St, New York City, NY 10001" +236663,Lightning Charging Cable,1,14.95,08/02/19 00:18,"256 10th St, San Francisco, CA 94016" +236664,Wired Headphones,1,11.99,08/26/19 13:08,"591 Meadow St, Los Angeles, CA 90001" +236665,USB-C Charging Cable,1,11.95,08/02/19 20:52,"195 6th St, Austin, TX 73301" +236666,Lightning Charging Cable,1,14.95,08/15/19 22:51,"573 Meadow St, Dallas, TX 75001" +236667,AA Batteries (4-pack),1,3.84,08/18/19 21:11,"88 Pine St, Boston, MA 02215" +236668,iPhone,1,700,08/08/19 15:42,"745 7th St, Portland, OR 97035" +236669,Wired Headphones,1,11.99,08/29/19 01:25,"561 Walnut St, Atlanta, GA 30301" +236670,34in Ultrawide Monitor,1,379.99,08/08/19 22:31,"787 Sunset St, San Francisco, CA 94016" +236671,AAA Batteries (4-pack),2,2.99,08/06/19 22:25,"826 Center St, San Francisco, CA 94016" +236672,Lightning Charging Cable,1,14.95,08/05/19 20:49,"562 Chestnut St, Atlanta, GA 30301" +236673,AA Batteries (4-pack),1,3.84,08/06/19 14:03,"383 13th St, Portland, OR 97035" +236674,Flatscreen TV,1,300,08/27/19 19:04,"267 Washington St, San Francisco, CA 94016" +236675,USB-C Charging Cable,2,11.95,08/27/19 20:24,"934 13th St, Austin, TX 73301" +236676,USB-C Charging Cable,1,11.95,08/12/19 11:45,"402 Cherry St, Portland, OR 97035" +236677,ThinkPad Laptop,1,999.99,08/15/19 18:26,"405 13th St, Atlanta, GA 30301" +236678,Apple Airpods Headphones,1,150,08/21/19 21:09,"627 9th St, Seattle, WA 98101" +236679,Wired Headphones,1,11.99,08/14/19 17:31,"522 Wilson St, San Francisco, CA 94016" +236680,AAA Batteries (4-pack),1,2.99,08/17/19 09:01,"520 Highland St, Los Angeles, CA 90001" +236681,Macbook Pro Laptop,1,1700,08/31/19 22:14,"740 River St, Atlanta, GA 30301" +236682,Google Phone,1,600,08/03/19 20:23,"649 North St, San Francisco, CA 94016" +236683,iPhone,1,700,08/17/19 10:26,"481 Elm St, Austin, TX 73301" +236683,Apple Airpods Headphones,1,150,08/17/19 10:26,"481 Elm St, Austin, TX 73301" +236683,Wired Headphones,1,11.99,08/17/19 10:26,"481 Elm St, Austin, TX 73301" +236684,27in FHD Monitor,1,149.99,08/01/19 12:53,"49 Maple St, Boston, MA 02215" +236685,Flatscreen TV,1,300,08/02/19 23:48,"669 Johnson St, Boston, MA 02215" +236686,LG Dryer,1,600.0,08/21/19 20:08,"279 Cedar St, Atlanta, GA 30301" +236687,ThinkPad Laptop,1,999.99,08/15/19 23:11,"302 Forest St, Atlanta, GA 30301" +236688,Bose SoundSport Headphones,1,99.99,08/03/19 21:58,"387 Center St, San Francisco, CA 94016" +236689,AAA Batteries (4-pack),3,2.99,08/29/19 09:55,"311 8th St, Atlanta, GA 30301" +236690,34in Ultrawide Monitor,1,379.99,08/14/19 17:10,"778 Forest St, San Francisco, CA 94016" +236691,AAA Batteries (4-pack),1,2.99,08/08/19 11:57,"374 Dogwood St, San Francisco, CA 94016" +236692,20in Monitor,1,109.99,08/04/19 11:29,"266 Jefferson St, Los Angeles, CA 90001" +236693,20in Monitor,1,109.99,08/09/19 23:30,"627 Spruce St, New York City, NY 10001" +236694,Lightning Charging Cable,1,14.95,08/27/19 08:31,"405 7th St, Boston, MA 02215" +236695,AAA Batteries (4-pack),1,2.99,08/03/19 11:04,"311 North St, Dallas, TX 75001" +236696,Lightning Charging Cable,1,14.95,08/25/19 11:50,"662 6th St, Los Angeles, CA 90001" +236697,LG Washing Machine,1,600.0,08/10/19 09:43,"276 Church St, San Francisco, CA 94016" +236698,Bose SoundSport Headphones,1,99.99,08/03/19 17:25,"247 River St, Los Angeles, CA 90001" +236699,AAA Batteries (4-pack),1,2.99,08/21/19 18:17,"825 Main St, New York City, NY 10001" +236700,USB-C Charging Cable,1,11.95,08/13/19 12:57,"244 Madison St, New York City, NY 10001" +236701,Google Phone,1,600,08/05/19 19:17,"488 Ridge St, Los Angeles, CA 90001" +236701,USB-C Charging Cable,1,11.95,08/05/19 19:17,"488 Ridge St, Los Angeles, CA 90001" +236702,Flatscreen TV,1,300,08/07/19 10:35,"935 West St, San Francisco, CA 94016" +236703,Apple Airpods Headphones,1,150,08/22/19 12:44,"77 Willow St, Boston, MA 02215" +236704,Macbook Pro Laptop,1,1700,08/27/19 13:21,"382 Jackson St, Seattle, WA 98101" +236705,Apple Airpods Headphones,1,150,08/30/19 12:46,"453 Park St, Seattle, WA 98101" +236706,Wired Headphones,2,11.99,08/11/19 14:16,"713 Jefferson St, Seattle, WA 98101" +236707,Bose SoundSport Headphones,1,99.99,08/13/19 14:28,"208 13th St, New York City, NY 10001" +236708,27in 4K Gaming Monitor,1,389.99,08/03/19 11:10,"795 2nd St, Boston, MA 02215" +236709,AAA Batteries (4-pack),1,2.99,08/27/19 21:08,"931 Johnson St, Boston, MA 02215" +236710,27in FHD Monitor,1,149.99,08/22/19 19:24,"481 Meadow St, Seattle, WA 98101" +236711,Lightning Charging Cable,1,14.95,08/20/19 17:52,"183 Cedar St, Boston, MA 02215" +236712,Apple Airpods Headphones,1,150,08/08/19 20:31,"244 Lincoln St, San Francisco, CA 94016" +236713,iPhone,1,700,08/21/19 11:10,"593 Jackson St, New York City, NY 10001" +236714,AA Batteries (4-pack),1,3.84,08/10/19 13:12,"453 Church St, Atlanta, GA 30301" +236715,27in 4K Gaming Monitor,1,389.99,08/30/19 01:03,"167 1st St, New York City, NY 10001" +236715,AAA Batteries (4-pack),1,2.99,08/30/19 01:03,"167 1st St, New York City, NY 10001" +236716,AA Batteries (4-pack),1,3.84,08/11/19 03:25,"425 Hickory St, Atlanta, GA 30301" +236717,Flatscreen TV,1,300,08/10/19 15:09,"31 Willow St, New York City, NY 10001" +236718,27in FHD Monitor,1,149.99,08/30/19 07:25,"634 Sunset St, Dallas, TX 75001" +236719,Bose SoundSport Headphones,1,99.99,08/14/19 16:57,"822 Church St, Los Angeles, CA 90001" +236720,iPhone,1,700,08/08/19 21:18,"228 Center St, Los Angeles, CA 90001" +236720,Apple Airpods Headphones,1,150,08/08/19 21:18,"228 Center St, Los Angeles, CA 90001" +236721,Bose SoundSport Headphones,1,99.99,08/08/19 08:02,"626 4th St, San Francisco, CA 94016" +236722,Wired Headphones,1,11.99,08/08/19 19:55,"846 Elm St, Seattle, WA 98101" +236723,AAA Batteries (4-pack),1,2.99,08/08/19 18:53,"328 North St, Boston, MA 02215" +236724,AAA Batteries (4-pack),1,2.99,08/23/19 20:59,"737 Johnson St, Atlanta, GA 30301" +236725,27in FHD Monitor,1,149.99,08/21/19 08:13,"979 Highland St, San Francisco, CA 94016" +236726,Lightning Charging Cable,1,14.95,08/16/19 18:17,"384 7th St, San Francisco, CA 94016" +236727,Bose SoundSport Headphones,1,99.99,08/18/19 13:50,"365 Maple St, San Francisco, CA 94016" +236728,Lightning Charging Cable,2,14.95,08/13/19 17:09,"839 Dogwood St, Seattle, WA 98101" +236729,AA Batteries (4-pack),1,3.84,08/07/19 12:11,"265 Elm St, Seattle, WA 98101" +236730,Wired Headphones,1,11.99,08/02/19 17:42,"633 Spruce St, Boston, MA 02215" +236731,AA Batteries (4-pack),1,3.84,08/07/19 12:29,"19 9th St, Seattle, WA 98101" +236732,AAA Batteries (4-pack),2,2.99,08/04/19 13:54,"267 Church St, Atlanta, GA 30301" +236733,Lightning Charging Cable,1,14.95,08/27/19 18:07,"853 Dogwood St, New York City, NY 10001" +236734,Wired Headphones,1,11.99,08/01/19 17:35,"756 South St, New York City, NY 10001" +236735,AA Batteries (4-pack),1,3.84,08/31/19 21:03,"457 1st St, Seattle, WA 98101" +236736,Bose SoundSport Headphones,1,99.99,08/13/19 12:12,"494 West St, New York City, NY 10001" +236737,USB-C Charging Cable,1,11.95,08/03/19 16:54,"324 Cherry St, New York City, NY 10001" +236738,Wired Headphones,1,11.99,08/28/19 14:15,"401 2nd St, San Francisco, CA 94016" +236739,Apple Airpods Headphones,1,150,08/20/19 20:40,"855 Lake St, Dallas, TX 75001" +236740,AAA Batteries (4-pack),2,2.99,08/01/19 21:22,"375 9th St, Boston, MA 02215" +236741,iPhone,1,700,08/14/19 09:28,"996 13th St, Dallas, TX 75001" +236741,Lightning Charging Cable,1,14.95,08/14/19 09:28,"996 13th St, Dallas, TX 75001" +236742,USB-C Charging Cable,1,11.95,08/11/19 10:03,"298 Cedar St, Los Angeles, CA 90001" +236743,Wired Headphones,1,11.99,08/23/19 19:17,"474 Cherry St, Portland, OR 97035" +236744,AAA Batteries (4-pack),4,2.99,08/08/19 13:01,"137 North St, Los Angeles, CA 90001" +236745,AAA Batteries (4-pack),2,2.99,08/22/19 17:10,"500 Sunset St, San Francisco, CA 94016" +236746,USB-C Charging Cable,1,11.95,08/29/19 18:05,"926 Maple St, Dallas, TX 75001" +236747,USB-C Charging Cable,1,11.95,08/27/19 21:37,"460 Center St, Los Angeles, CA 90001" +236748,Google Phone,1,600,08/14/19 15:47,"671 Walnut St, Portland, OR 97035" +236749,27in FHD Monitor,1,149.99,08/10/19 23:50,"510 8th St, Los Angeles, CA 90001" +236750,AA Batteries (4-pack),1,3.84,08/14/19 18:37,"838 Highland St, Boston, MA 02215" +236751,Apple Airpods Headphones,1,150,08/29/19 11:31,"970 West St, Los Angeles, CA 90001" +236752,AA Batteries (4-pack),1,3.84,08/26/19 19:40,"102 Highland St, San Francisco, CA 94016" +236753,Wired Headphones,1,11.99,08/27/19 22:41,"831 Ridge St, Atlanta, GA 30301" +236754,Apple Airpods Headphones,1,150,08/26/19 14:51,"174 14th St, New York City, NY 10001" +236755,Bose SoundSport Headphones,1,99.99,09/01/19 00:02,"579 2nd St, New York City, NY 10001" +236756,Lightning Charging Cable,1,14.95,08/24/19 13:30,"141 12th St, Los Angeles, CA 90001" +236756,Bose SoundSport Headphones,1,99.99,08/24/19 13:30,"141 12th St, Los Angeles, CA 90001" +236757,AA Batteries (4-pack),1,3.84,08/04/19 16:45,"262 Lake St, Portland, OR 97035" +236758,USB-C Charging Cable,1,11.95,08/23/19 16:14,"734 South St, San Francisco, CA 94016" +236759,USB-C Charging Cable,1,11.95,08/27/19 18:29,"857 Cedar St, Seattle, WA 98101" +236760,ThinkPad Laptop,1,999.99,08/19/19 11:11,"110 Lake St, New York City, NY 10001" +236761,Flatscreen TV,1,300,08/22/19 12:05,"877 7th St, San Francisco, CA 94016" +236762,AA Batteries (4-pack),1,3.84,08/27/19 13:52,"27 11th St, Portland, ME 04101" +236763,Bose SoundSport Headphones,1,99.99,08/12/19 21:15,"949 Johnson St, Seattle, WA 98101" +236764,Bose SoundSport Headphones,1,99.99,08/16/19 17:49,"951 Walnut St, Seattle, WA 98101" +236765,Macbook Pro Laptop,1,1700,08/16/19 15:35,"244 Cedar St, Dallas, TX 75001" +236766,27in 4K Gaming Monitor,1,389.99,08/14/19 15:00,"196 Johnson St, Atlanta, GA 30301" +236767,Apple Airpods Headphones,1,150,08/18/19 10:56,"810 Highland St, Seattle, WA 98101" +236768,Lightning Charging Cable,2,14.95,08/09/19 18:29,"77 Lincoln St, Dallas, TX 75001" +236769,USB-C Charging Cable,1,11.95,08/25/19 12:50,"736 Main St, Los Angeles, CA 90001" +236770,Wired Headphones,1,11.99,08/09/19 21:01,"624 Cedar St, Austin, TX 73301" +236771,Wired Headphones,2,11.99,08/05/19 12:26,"537 Ridge St, Los Angeles, CA 90001" +236771,AA Batteries (4-pack),1,3.84,08/05/19 12:26,"537 Ridge St, Los Angeles, CA 90001" +236772,USB-C Charging Cable,1,11.95,08/20/19 21:45,"905 Forest St, Austin, TX 73301" +236773,AAA Batteries (4-pack),1,2.99,08/15/19 00:09,"454 Main St, Boston, MA 02215" +236774,AAA Batteries (4-pack),2,2.99,08/02/19 11:44,"687 Hill St, Dallas, TX 75001" +236775,27in FHD Monitor,1,149.99,08/04/19 05:55,"687 2nd St, Los Angeles, CA 90001" +236776,Wired Headphones,3,11.99,08/20/19 16:59,"896 Maple St, Portland, OR 97035" +236777,AA Batteries (4-pack),1,3.84,08/17/19 20:50,"294 5th St, Los Angeles, CA 90001" +236778,ThinkPad Laptop,1,999.99,08/10/19 22:22,"191 7th St, New York City, NY 10001" +236779,Vareebadd Phone,1,400,08/27/19 12:48,"884 Spruce St, Atlanta, GA 30301" +236780,USB-C Charging Cable,1,11.95,08/19/19 17:59,"499 Spruce St, Atlanta, GA 30301" +236781,USB-C Charging Cable,1,11.95,08/27/19 17:23,"210 Madison St, New York City, NY 10001" +236782,Lightning Charging Cable,1,14.95,08/15/19 20:44,"143 Adams St, Los Angeles, CA 90001" +236783,AAA Batteries (4-pack),4,2.99,08/10/19 19:10,"731 Sunset St, Boston, MA 02215" +236784,27in FHD Monitor,1,149.99,08/30/19 13:58,"500 Walnut St, Atlanta, GA 30301" +236785,AA Batteries (4-pack),1,3.84,08/02/19 20:37,"456 8th St, Los Angeles, CA 90001" +236786,Bose SoundSport Headphones,1,99.99,08/26/19 18:33,"840 11th St, Dallas, TX 75001" +236787,iPhone,1,700,08/19/19 13:00,"242 Sunset St, San Francisco, CA 94016" +236788,20in Monitor,1,109.99,08/14/19 21:45,"138 Madison St, San Francisco, CA 94016" +236789,AA Batteries (4-pack),2,3.84,08/12/19 11:06,"120 Highland St, Atlanta, GA 30301" +236790,Flatscreen TV,1,300,08/16/19 18:57,"589 Hickory St, Portland, OR 97035" +236791,27in 4K Gaming Monitor,1,389.99,08/22/19 12:12,"39 9th St, Atlanta, GA 30301" +236792,27in 4K Gaming Monitor,1,389.99,08/17/19 11:20,"186 Elm St, Boston, MA 02215" +236793,iPhone,1,700,08/04/19 15:42,"589 Adams St, Atlanta, GA 30301" +236793,Bose SoundSport Headphones,1,99.99,08/04/19 15:42,"589 Adams St, Atlanta, GA 30301" +236794,AAA Batteries (4-pack),1,2.99,08/23/19 08:00,"633 Park St, Los Angeles, CA 90001" +236795,iPhone,1,700,08/08/19 18:07,"934 4th St, Austin, TX 73301" +236795,AAA Batteries (4-pack),1,2.99,08/08/19 18:07,"934 4th St, Austin, TX 73301" +236796,AA Batteries (4-pack),1,3.84,08/24/19 13:56,"199 4th St, Seattle, WA 98101" +236797,Flatscreen TV,1,300,08/27/19 11:38,"800 1st St, Portland, OR 97035" +236798,iPhone,1,700,08/19/19 19:08,"745 Cedar St, San Francisco, CA 94016" +236798,Lightning Charging Cable,1,14.95,08/19/19 19:08,"745 Cedar St, San Francisco, CA 94016" +236799,AAA Batteries (4-pack),1,2.99,08/07/19 16:36,"515 Willow St, San Francisco, CA 94016" +236800,Apple Airpods Headphones,1,150,08/03/19 15:29,"387 River St, Los Angeles, CA 90001" +236801,LG Dryer,1,600.0,08/06/19 22:05,"105 Center St, Boston, MA 02215" +236802,Lightning Charging Cable,1,14.95,08/29/19 16:20,"298 South St, Seattle, WA 98101" +236803,Flatscreen TV,1,300,08/23/19 20:28,"933 Chestnut St, Dallas, TX 75001" +236804,AA Batteries (4-pack),2,3.84,08/10/19 08:18,"802 West St, New York City, NY 10001" +236805,Google Phone,1,600,08/15/19 14:58,"229 12th St, Dallas, TX 75001" +236805,USB-C Charging Cable,1,11.95,08/15/19 14:58,"229 12th St, Dallas, TX 75001" +236806,Wired Headphones,2,11.99,08/04/19 21:36,"670 Willow St, Boston, MA 02215" +236807,Bose SoundSport Headphones,1,99.99,08/26/19 19:40,"64 Lakeview St, San Francisco, CA 94016" +236808,34in Ultrawide Monitor,1,379.99,08/24/19 21:35,"534 Cherry St, San Francisco, CA 94016" +236809,27in 4K Gaming Monitor,1,389.99,08/08/19 15:48,"527 South St, Dallas, TX 75001" +236810,Lightning Charging Cable,1,14.95,08/23/19 14:46,"884 South St, Los Angeles, CA 90001" +236811,AAA Batteries (4-pack),1,2.99,08/10/19 18:02,"618 11th St, Portland, OR 97035" +236812,Google Phone,1,600,08/05/19 10:01,"442 Church St, Los Angeles, CA 90001" +236813,Bose SoundSport Headphones,1,99.99,08/01/19 11:17,"789 Park St, San Francisco, CA 94016" +236814,USB-C Charging Cable,1,11.95,08/09/19 11:30,"550 6th St, Los Angeles, CA 90001" +236815,AAA Batteries (4-pack),1,2.99,08/09/19 07:57,"397 West St, Boston, MA 02215" +236816,Vareebadd Phone,1,400,08/26/19 16:45,"358 Hickory St, Atlanta, GA 30301" +236817,AA Batteries (4-pack),1,3.84,08/10/19 20:22,"884 Cedar St, New York City, NY 10001" +236818,AAA Batteries (4-pack),1,2.99,08/11/19 09:11,"694 Pine St, Dallas, TX 75001" +236819,AA Batteries (4-pack),2,3.84,08/29/19 18:26,"19 Park St, Atlanta, GA 30301" +236820,AA Batteries (4-pack),1,3.84,08/28/19 14:41,"600 Hill St, San Francisco, CA 94016" +236821,ThinkPad Laptop,1,999.99,08/17/19 12:03,"68 Elm St, San Francisco, CA 94016" +236822,Bose SoundSport Headphones,1,99.99,08/18/19 21:00,"3 Adams St, San Francisco, CA 94016" +236823,USB-C Charging Cable,1,11.95,08/08/19 16:27,"718 Adams St, Portland, ME 04101" +236824,Apple Airpods Headphones,1,150,08/17/19 09:39,"383 Cherry St, Atlanta, GA 30301" +236825,AAA Batteries (4-pack),1,2.99,08/10/19 14:53,"289 Forest St, Seattle, WA 98101" +236826,34in Ultrawide Monitor,1,379.99,08/02/19 16:32,"516 Highland St, San Francisco, CA 94016" +236826,ThinkPad Laptop,1,999.99,08/02/19 16:32,"516 Highland St, San Francisco, CA 94016" +236827,Wired Headphones,1,11.99,08/05/19 13:10,"894 Park St, San Francisco, CA 94016" +236828,Bose SoundSport Headphones,1,99.99,08/31/19 20:15,"944 Johnson St, San Francisco, CA 94016" +236829,AAA Batteries (4-pack),1,2.99,08/05/19 12:55,"481 11th St, Seattle, WA 98101" +236830,AA Batteries (4-pack),3,3.84,08/05/19 08:54,"283 Lake St, San Francisco, CA 94016" +236831,AA Batteries (4-pack),1,3.84,08/27/19 13:07,"148 Highland St, Atlanta, GA 30301" +236832,Wired Headphones,1,11.99,08/05/19 12:45,"361 Main St, Los Angeles, CA 90001" +236833,Wired Headphones,1,11.99,08/09/19 10:55,"352 Forest St, San Francisco, CA 94016" +236834,iPhone,1,700,08/31/19 09:09,"656 Lincoln St, Austin, TX 73301" +236835,AAA Batteries (4-pack),1,2.99,08/20/19 12:14,"455 6th St, San Francisco, CA 94016" +236836,AA Batteries (4-pack),1,3.84,08/05/19 21:10,"612 Sunset St, Atlanta, GA 30301" +236837,Bose SoundSport Headphones,1,99.99,08/11/19 12:46,"271 Johnson St, Los Angeles, CA 90001" +236838,Lightning Charging Cable,2,14.95,08/20/19 13:22,"532 6th St, Boston, MA 02215" +236839,Apple Airpods Headphones,1,150,08/17/19 17:15,"911 Madison St, Atlanta, GA 30301" +236840,AAA Batteries (4-pack),2,2.99,08/06/19 22:53,"730 Church St, New York City, NY 10001" +236841,USB-C Charging Cable,1,11.95,08/11/19 15:56,"106 4th St, Portland, OR 97035" +236842,iPhone,1,700,08/14/19 21:12,"326 Washington St, Los Angeles, CA 90001" +236842,Wired Headphones,2,11.99,08/14/19 21:12,"326 Washington St, Los Angeles, CA 90001" +236843,AA Batteries (4-pack),2,3.84,08/31/19 18:48,"244 Lake St, Boston, MA 02215" +236844,34in Ultrawide Monitor,1,379.99,08/31/19 17:43,"191 Lake St, Seattle, WA 98101" +236845,27in FHD Monitor,1,149.99,08/21/19 07:00,"123 5th St, Los Angeles, CA 90001" +236846,USB-C Charging Cable,1,11.95,08/18/19 13:54,"273 Cherry St, San Francisco, CA 94016" +236847,AAA Batteries (4-pack),1,2.99,08/08/19 07:03,"644 12th St, Dallas, TX 75001" +236848,Lightning Charging Cable,1,14.95,08/05/19 17:54,"441 1st St, Los Angeles, CA 90001" +236849,ThinkPad Laptop,1,999.99,08/24/19 12:55,"29 River St, San Francisco, CA 94016" +236850,Wired Headphones,1,11.99,08/26/19 13:38,"107 Hickory St, New York City, NY 10001" +236851,27in FHD Monitor,1,149.99,08/05/19 12:46,"683 River St, San Francisco, CA 94016" +236851,Google Phone,1,600,08/05/19 12:46,"683 River St, San Francisco, CA 94016" +236852,AA Batteries (4-pack),1,3.84,08/11/19 10:31,"771 10th St, Dallas, TX 75001" +236853,Apple Airpods Headphones,1,150,08/06/19 21:57,"321 Forest St, New York City, NY 10001" +236854,AA Batteries (4-pack),1,3.84,08/13/19 16:30,"953 Madison St, New York City, NY 10001" +236855,USB-C Charging Cable,1,11.95,08/27/19 09:48,"916 4th St, San Francisco, CA 94016" +236856,Apple Airpods Headphones,1,150,08/04/19 00:44,"586 Adams St, San Francisco, CA 94016" +236857,Apple Airpods Headphones,1,150,08/16/19 00:41,"960 Johnson St, Seattle, WA 98101" +236858,Wired Headphones,1,11.99,08/01/19 12:32,"358 Ridge St, San Francisco, CA 94016" +236859,AAA Batteries (4-pack),2,2.99,08/26/19 18:36,"525 Elm St, Boston, MA 02215" +236860,AA Batteries (4-pack),1,3.84,08/31/19 20:10,"195 Dogwood St, Los Angeles, CA 90001" +236861,Macbook Pro Laptop,1,1700,08/15/19 10:42,"802 6th St, San Francisco, CA 94016" +236862,USB-C Charging Cable,1,11.95,08/08/19 09:23,"480 Madison St, San Francisco, CA 94016" +236863,USB-C Charging Cable,2,11.95,08/26/19 16:35,"607 North St, New York City, NY 10001" +236864,Wired Headphones,2,11.99,08/16/19 18:09,"142 Washington St, Los Angeles, CA 90001" +236865,Bose SoundSport Headphones,1,99.99,08/17/19 12:42,"322 10th St, San Francisco, CA 94016" +236866,Apple Airpods Headphones,1,150,08/08/19 17:14,"450 Johnson St, Seattle, WA 98101" +236867,USB-C Charging Cable,1,11.95,08/05/19 08:46,"456 Park St, San Francisco, CA 94016" +236868,Flatscreen TV,1,300,08/01/19 15:17,"787 Church St, Dallas, TX 75001" +236869,USB-C Charging Cable,1,11.95,08/11/19 11:43,"863 Ridge St, San Francisco, CA 94016" +236870,AA Batteries (4-pack),1,3.84,08/30/19 10:39,"833 Walnut St, San Francisco, CA 94016" +236871,AAA Batteries (4-pack),1,2.99,08/08/19 16:49,"278 10th St, Dallas, TX 75001" +236872,Apple Airpods Headphones,1,150,08/29/19 10:49,"39 Elm St, San Francisco, CA 94016" +236873,Bose SoundSport Headphones,1,99.99,08/14/19 09:36,"492 Dogwood St, San Francisco, CA 94016" +236874,USB-C Charging Cable,1,11.95,08/24/19 16:21,"313 Cherry St, Boston, MA 02215" +236875,27in FHD Monitor,1,149.99,08/09/19 16:39,"644 7th St, Austin, TX 73301" +236876,Wired Headphones,1,11.99,08/04/19 11:41,"730 Walnut St, San Francisco, CA 94016" +236877,Lightning Charging Cable,1,14.95,08/15/19 17:45,"588 7th St, Los Angeles, CA 90001" +236878,27in FHD Monitor,1,149.99,08/05/19 12:45,"958 River St, San Francisco, CA 94016" +236879,AA Batteries (4-pack),1,3.84,08/28/19 16:18,"45 South St, Dallas, TX 75001" +236880,AA Batteries (4-pack),1,3.84,08/18/19 10:24,"212 Pine St, Los Angeles, CA 90001" +236881,AA Batteries (4-pack),2,3.84,08/23/19 07:54,"906 12th St, New York City, NY 10001" +236882,USB-C Charging Cable,1,11.95,08/21/19 00:25,"364 Jefferson St, Atlanta, GA 30301" +236883,AA Batteries (4-pack),1,3.84,08/03/19 10:01,"84 10th St, Los Angeles, CA 90001" +236884,Lightning Charging Cable,1,14.95,08/26/19 10:22,"401 Willow St, Los Angeles, CA 90001" +236885,AAA Batteries (4-pack),1,2.99,08/25/19 09:46,"332 2nd St, San Francisco, CA 94016" +236886,USB-C Charging Cable,1,11.95,08/28/19 15:41,"174 Jackson St, Los Angeles, CA 90001" +236887,Apple Airpods Headphones,1,150,08/10/19 13:47,"827 Lake St, San Francisco, CA 94016" +236888,Apple Airpods Headphones,1,150,08/31/19 11:52,"878 Willow St, Dallas, TX 75001" +236889,34in Ultrawide Monitor,1,379.99,08/28/19 00:20,"436 Washington St, Atlanta, GA 30301" +236890,AAA Batteries (4-pack),1,2.99,08/25/19 13:24,"763 Forest St, Portland, OR 97035" +236891,AA Batteries (4-pack),1,3.84,08/18/19 21:44,"759 Main St, San Francisco, CA 94016" +236892,Lightning Charging Cable,1,14.95,08/30/19 11:02,"460 Johnson St, Los Angeles, CA 90001" +236893,AAA Batteries (4-pack),1,2.99,08/24/19 11:04,"464 South St, San Francisco, CA 94016" +236894,iPhone,1,700,08/22/19 10:04,"354 Wilson St, Austin, TX 73301" +236894,Lightning Charging Cable,1,14.95,08/22/19 10:04,"354 Wilson St, Austin, TX 73301" +236895,USB-C Charging Cable,1,11.95,08/24/19 18:58,"778 Chestnut St, San Francisco, CA 94016" +236896,Apple Airpods Headphones,1,150,08/14/19 15:01,"501 4th St, Boston, MA 02215" +236897,Wired Headphones,1,11.99,08/18/19 18:02,"684 Center St, New York City, NY 10001" +236898,AAA Batteries (4-pack),1,2.99,08/14/19 22:11,"758 Jefferson St, Los Angeles, CA 90001" +236899,Bose SoundSport Headphones,1,99.99,08/21/19 13:01,"157 Main St, Boston, MA 02215" +236900,Wired Headphones,1,11.99,08/07/19 11:19,"127 Cherry St, San Francisco, CA 94016" +236901,Flatscreen TV,1,300,08/18/19 01:00,"130 11th St, Los Angeles, CA 90001" +236902,USB-C Charging Cable,1,11.95,08/26/19 12:30,"572 12th St, Seattle, WA 98101" +236902,Bose SoundSport Headphones,1,99.99,08/26/19 12:30,"572 12th St, Seattle, WA 98101" +236903,Bose SoundSport Headphones,1,99.99,08/14/19 19:13,"584 14th St, New York City, NY 10001" +236904,27in 4K Gaming Monitor,1,389.99,08/10/19 21:33,"426 Highland St, Boston, MA 02215" +236905,Wired Headphones,1,11.99,08/11/19 11:19,"483 Forest St, Portland, ME 04101" +236906,Bose SoundSport Headphones,1,99.99,08/21/19 20:53,"452 Adams St, Boston, MA 02215" +236907,Lightning Charging Cable,1,14.95,08/13/19 10:48,"300 Maple St, Seattle, WA 98101" +236908,Wired Headphones,2,11.99,08/05/19 14:46,"194 5th St, Los Angeles, CA 90001" +236909,AA Batteries (4-pack),1,3.84,08/18/19 14:13,"457 Madison St, New York City, NY 10001" +236910,AAA Batteries (4-pack),1,2.99,08/28/19 19:57,"938 Meadow St, San Francisco, CA 94016" +236911,Google Phone,1,600,08/22/19 09:31,"448 Jefferson St, Seattle, WA 98101" +236912,AA Batteries (4-pack),2,3.84,08/18/19 21:40,"510 Ridge St, Austin, TX 73301" +236913,USB-C Charging Cable,1,11.95,08/02/19 09:21,"538 Meadow St, Seattle, WA 98101" +236914,Bose SoundSport Headphones,1,99.99,08/26/19 19:22,"902 13th St, San Francisco, CA 94016" +236915,AA Batteries (4-pack),1,3.84,08/28/19 12:16,"68 Sunset St, Los Angeles, CA 90001" +236916,AAA Batteries (4-pack),2,2.99,08/03/19 14:29,"782 River St, Dallas, TX 75001" +236917,USB-C Charging Cable,1,11.95,08/25/19 10:48,"745 River St, Seattle, WA 98101" +236918,AAA Batteries (4-pack),1,2.99,08/10/19 16:43,"338 Sunset St, New York City, NY 10001" +236919,27in 4K Gaming Monitor,1,389.99,08/20/19 07:06,"684 Cedar St, San Francisco, CA 94016" +236920,Flatscreen TV,1,300,08/07/19 14:34,"995 Dogwood St, Atlanta, GA 30301" +236921,Bose SoundSport Headphones,1,99.99,08/22/19 09:37,"509 Adams St, Portland, ME 04101" +236922,Bose SoundSport Headphones,1,99.99,08/13/19 12:23,"624 Cherry St, Los Angeles, CA 90001" +236923,AAA Batteries (4-pack),2,2.99,08/06/19 14:04,"612 10th St, Seattle, WA 98101" +236924,AA Batteries (4-pack),1,3.84,08/06/19 07:36,"225 Elm St, Los Angeles, CA 90001" +236925,ThinkPad Laptop,1,999.99,08/01/19 12:12,"335 Sunset St, Seattle, WA 98101" +236926,AAA Batteries (4-pack),1,2.99,08/01/19 10:52,"272 10th St, Seattle, WA 98101" +236927,AAA Batteries (4-pack),1,2.99,08/19/19 22:20,"425 Hill St, New York City, NY 10001" +236928,Apple Airpods Headphones,1,150,08/20/19 17:07,"900 Forest St, San Francisco, CA 94016" +236929,27in 4K Gaming Monitor,1,389.99,08/23/19 11:11,"117 Main St, Portland, OR 97035" +236930,Lightning Charging Cable,1,14.95,08/24/19 15:48,"616 Cedar St, New York City, NY 10001" +236931,Wired Headphones,1,11.99,08/10/19 08:38,"10 14th St, Dallas, TX 75001" +236932,Apple Airpods Headphones,1,150,08/15/19 21:09,"141 Wilson St, Boston, MA 02215" +236933,27in 4K Gaming Monitor,1,389.99,08/28/19 19:25,"833 9th St, San Francisco, CA 94016" +236934,Google Phone,1,600,08/28/19 01:14,"713 13th St, Austin, TX 73301" +236935,Lightning Charging Cable,1,14.95,08/01/19 13:26,"495 11th St, Portland, ME 04101" +236936,Macbook Pro Laptop,1,1700,08/25/19 12:08,"237 6th St, Los Angeles, CA 90001" +236937,Google Phone,1,600,08/03/19 14:50,"210 Jackson St, Dallas, TX 75001" +236937,USB-C Charging Cable,1,11.95,08/03/19 14:50,"210 Jackson St, Dallas, TX 75001" +236938,AAA Batteries (4-pack),1,2.99,08/29/19 17:37,"116 Meadow St, San Francisco, CA 94016" +236939,20in Monitor,1,109.99,08/11/19 09:34,"589 Sunset St, Atlanta, GA 30301" +236940,iPhone,1,700,08/04/19 18:03,"305 10th St, New York City, NY 10001" +236940,Apple Airpods Headphones,1,150,08/04/19 18:03,"305 10th St, New York City, NY 10001" +236941,USB-C Charging Cable,1,11.95,08/22/19 07:12,"182 5th St, Los Angeles, CA 90001" +236942,34in Ultrawide Monitor,1,379.99,08/03/19 16:11,"915 13th St, Boston, MA 02215" +236943,Flatscreen TV,1,300,08/02/19 11:22,"709 7th St, Boston, MA 02215" +236944,34in Ultrawide Monitor,1,379.99,08/17/19 11:42,"307 Dogwood St, San Francisco, CA 94016" +236945,Lightning Charging Cable,1,14.95,08/30/19 11:31,"479 Washington St, San Francisco, CA 94016" +236946,Bose SoundSport Headphones,1,99.99,08/11/19 17:47,"730 Meadow St, Atlanta, GA 30301" +236947,AA Batteries (4-pack),1,3.84,08/02/19 06:57,"900 13th St, Los Angeles, CA 90001" +236948,27in 4K Gaming Monitor,1,389.99,08/29/19 17:34,"973 12th St, Austin, TX 73301" +236949,Bose SoundSport Headphones,1,99.99,08/01/19 12:41,"634 9th St, Boston, MA 02215" +236950,AA Batteries (4-pack),1,3.84,08/26/19 14:33,"368 6th St, Los Angeles, CA 90001" +236951,USB-C Charging Cable,1,11.95,08/21/19 12:13,"416 Madison St, San Francisco, CA 94016" +236952,Apple Airpods Headphones,1,150,08/07/19 06:07,"911 River St, Los Angeles, CA 90001" +236953,Wired Headphones,1,11.99,08/23/19 12:05,"441 Highland St, San Francisco, CA 94016" +236954,Lightning Charging Cable,1,14.95,08/04/19 19:47,"834 Hill St, Boston, MA 02215" +236955,ThinkPad Laptop,1,999.99,08/19/19 12:38,"544 Lake St, San Francisco, CA 94016" +236956,Bose SoundSport Headphones,1,99.99,08/03/19 03:39,"685 Forest St, San Francisco, CA 94016" +236957,Bose SoundSport Headphones,1,99.99,08/19/19 04:39,"373 Elm St, Atlanta, GA 30301" +236958,AA Batteries (4-pack),1,3.84,08/26/19 00:58,"402 Lincoln St, Atlanta, GA 30301" +236959,AAA Batteries (4-pack),1,2.99,08/23/19 21:33,"417 Jefferson St, New York City, NY 10001" +236960,Apple Airpods Headphones,1,150,08/27/19 19:04,"242 Elm St, Seattle, WA 98101" +236961,AA Batteries (4-pack),1,3.84,08/28/19 23:36,"494 Forest St, San Francisco, CA 94016" +236962,Wired Headphones,1,11.99,08/18/19 04:34,"763 Johnson St, Seattle, WA 98101" +236963,Vareebadd Phone,1,400,08/14/19 08:18,"339 4th St, Portland, OR 97035" +236964,Lightning Charging Cable,1,14.95,08/28/19 11:13,"321 4th St, Los Angeles, CA 90001" +236965,Apple Airpods Headphones,1,150,08/19/19 08:32,"244 Chestnut St, Portland, OR 97035" +236966,Apple Airpods Headphones,1,150,08/27/19 09:08,"127 West St, San Francisco, CA 94016" +236967,Lightning Charging Cable,1,14.95,08/02/19 09:52,"414 North St, Boston, MA 02215" +236968,Lightning Charging Cable,1,14.95,08/02/19 14:39,"947 Main St, San Francisco, CA 94016" +236969,AAA Batteries (4-pack),1,2.99,08/04/19 11:27,"744 4th St, New York City, NY 10001" +236970,Wired Headphones,2,11.99,08/27/19 05:38,"252 6th St, Atlanta, GA 30301" +236971,iPhone,1,700,08/26/19 19:46,"367 11th St, Los Angeles, CA 90001" +236972,Apple Airpods Headphones,1,150,08/09/19 15:58,"876 Ridge St, Boston, MA 02215" +236973,Apple Airpods Headphones,1,150,08/12/19 00:16,"238 Cherry St, Boston, MA 02215" +236974,USB-C Charging Cable,1,11.95,08/16/19 20:11,"598 Walnut St, Dallas, TX 75001" +236975,AAA Batteries (4-pack),1,2.99,08/06/19 20:26,"226 Madison St, Boston, MA 02215" +236976,20in Monitor,1,109.99,08/16/19 16:57,"812 Washington St, Atlanta, GA 30301" +236977,Bose SoundSport Headphones,1,99.99,08/14/19 00:57,"737 2nd St, Portland, OR 97035" +236978,Flatscreen TV,1,300,08/31/19 15:51,"436 West St, Portland, OR 97035" +236979,Lightning Charging Cable,1,14.95,08/28/19 15:36,"47 Ridge St, San Francisco, CA 94016" +236980,Bose SoundSport Headphones,1,99.99,08/15/19 08:03,"18 River St, Dallas, TX 75001" +236981,Lightning Charging Cable,1,14.95,08/07/19 15:30,"839 Lincoln St, New York City, NY 10001" +236982,AAA Batteries (4-pack),1,2.99,08/17/19 16:08,"150 Madison St, New York City, NY 10001" +236983,USB-C Charging Cable,1,11.95,08/26/19 13:23,"433 West St, Austin, TX 73301" +236984,ThinkPad Laptop,1,999.99,08/14/19 11:30,"240 Chestnut St, San Francisco, CA 94016" +236985,Bose SoundSport Headphones,1,99.99,08/28/19 14:42,"529 13th St, Boston, MA 02215" +236986,AAA Batteries (4-pack),1,2.99,08/26/19 22:26,"101 9th St, Atlanta, GA 30301" +236987,Google Phone,1,600,08/08/19 17:52,"799 6th St, Portland, ME 04101" +236988,AA Batteries (4-pack),1,3.84,08/30/19 12:48,"91 Main St, Austin, TX 73301" +236989,LG Dryer,1,600.0,08/07/19 18:47,"689 Cherry St, Seattle, WA 98101" +236990,Apple Airpods Headphones,1,150,08/24/19 19:45,"247 Spruce St, Austin, TX 73301" +236991,Apple Airpods Headphones,1,150,08/02/19 12:41,"35 11th St, Seattle, WA 98101" +236992,AAA Batteries (4-pack),2,2.99,08/01/19 20:59,"368 2nd St, Seattle, WA 98101" +236993,AA Batteries (4-pack),1,3.84,08/11/19 21:26,"895 Willow St, Los Angeles, CA 90001" +236994,Wired Headphones,1,11.99,08/21/19 02:11,"30 Madison St, Seattle, WA 98101" +236995,USB-C Charging Cable,1,11.95,08/23/19 14:14,"367 Chestnut St, Seattle, WA 98101" +236996,USB-C Charging Cable,1,11.95,08/14/19 17:17,"441 10th St, New York City, NY 10001" +236997,Macbook Pro Laptop,1,1700,08/25/19 16:38,"648 Park St, New York City, NY 10001" +236998,Lightning Charging Cable,1,14.95,08/19/19 21:45,"125 14th St, Los Angeles, CA 90001" +236999,Wired Headphones,1,11.99,08/19/19 19:32,"137 South St, San Francisco, CA 94016" +237000,iPhone,1,700,08/19/19 12:01,"647 8th St, New York City, NY 10001" +237001,27in FHD Monitor,1,149.99,08/11/19 06:44,"270 Maple St, San Francisco, CA 94016" +237002,Wired Headphones,1,11.99,08/06/19 12:22,"536 Cedar St, San Francisco, CA 94016" +237003,USB-C Charging Cable,1,11.95,08/13/19 21:19,"588 Cedar St, New York City, NY 10001" +237004,AA Batteries (4-pack),1,3.84,08/01/19 15:16,"589 7th St, Boston, MA 02215" +237005,iPhone,1,700,08/24/19 17:12,"943 14th St, Seattle, WA 98101" +237006,AAA Batteries (4-pack),1,2.99,08/02/19 01:41,"722 Washington St, San Francisco, CA 94016" +237007,AAA Batteries (4-pack),2,2.99,08/14/19 14:43,"858 Lake St, Austin, TX 73301" +237008,AAA Batteries (4-pack),1,2.99,08/08/19 02:54,"863 Meadow St, Seattle, WA 98101" +237009,AAA Batteries (4-pack),1,2.99,08/31/19 13:22,"479 Lincoln St, San Francisco, CA 94016" +237010,Lightning Charging Cable,1,14.95,08/06/19 17:22,"507 Adams St, Atlanta, GA 30301" +237011,AA Batteries (4-pack),1,3.84,08/03/19 13:49,"109 Lake St, Atlanta, GA 30301" +237012,AA Batteries (4-pack),1,3.84,08/04/19 16:49,"294 Dogwood St, Seattle, WA 98101" +237013,Wired Headphones,1,11.99,08/19/19 17:20,"477 South St, Boston, MA 02215" +237014,USB-C Charging Cable,1,11.95,08/14/19 12:50,"984 Lakeview St, San Francisco, CA 94016" +237015,Wired Headphones,1,11.99,08/04/19 12:17,"147 Washington St, New York City, NY 10001" +237016,AAA Batteries (4-pack),1,2.99,08/08/19 15:13,"801 Hill St, Los Angeles, CA 90001" +237017,Lightning Charging Cable,1,14.95,08/01/19 12:20,"388 Walnut St, Los Angeles, CA 90001" +237018,AA Batteries (4-pack),1,3.84,08/02/19 17:44,"506 6th St, Austin, TX 73301" +237019,34in Ultrawide Monitor,1,379.99,08/22/19 07:06,"846 Wilson St, Boston, MA 02215" +237020,USB-C Charging Cable,1,11.95,08/01/19 17:44,"216 Dogwood St, Los Angeles, CA 90001" +237021,27in FHD Monitor,1,149.99,08/20/19 18:26,"631 Center St, San Francisco, CA 94016" +237022,ThinkPad Laptop,1,999.99,08/04/19 07:15,"203 7th St, New York City, NY 10001" +237023,AAA Batteries (4-pack),1,2.99,08/06/19 09:22,"907 Hill St, San Francisco, CA 94016" +237024,27in FHD Monitor,1,149.99,08/01/19 08:49,"373 1st St, Los Angeles, CA 90001" +237025,AA Batteries (4-pack),3,3.84,08/19/19 09:53,"580 Pine St, Portland, OR 97035" +237026,27in FHD Monitor,1,149.99,08/18/19 12:37,"226 Lakeview St, Seattle, WA 98101" +237027,AA Batteries (4-pack),1,3.84,08/13/19 11:08,"954 Meadow St, San Francisco, CA 94016" +237028,Lightning Charging Cable,1,14.95,08/28/19 11:37,"897 Highland St, Dallas, TX 75001" +237029,27in 4K Gaming Monitor,1,389.99,08/01/19 13:57,"392 13th St, Atlanta, GA 30301" +237030,AAA Batteries (4-pack),1,2.99,08/15/19 17:42,"673 Cedar St, Portland, ME 04101" +237031,Apple Airpods Headphones,1,150,08/27/19 00:23,"997 Madison St, New York City, NY 10001" +237032,AAA Batteries (4-pack),1,2.99,08/11/19 14:42,"653 6th St, Portland, OR 97035" +237033,Apple Airpods Headphones,1,150,08/24/19 11:13,"392 Highland St, Portland, OR 97035" +237034,Google Phone,1,600,08/23/19 22:43,"335 Hickory St, Los Angeles, CA 90001" +237034,USB-C Charging Cable,1,11.95,08/23/19 22:43,"335 Hickory St, Los Angeles, CA 90001" +237035,Bose SoundSport Headphones,1,99.99,08/04/19 01:31,"558 Cherry St, San Francisco, CA 94016" +237036,Wired Headphones,1,11.99,08/23/19 10:48,"454 Spruce St, Boston, MA 02215" +237037,AAA Batteries (4-pack),1,2.99,08/25/19 16:20,"251 Hickory St, San Francisco, CA 94016" +237038,Flatscreen TV,1,300,08/22/19 18:52,"153 Center St, New York City, NY 10001" +237039,Lightning Charging Cable,1,14.95,08/23/19 13:51,"818 14th St, Los Angeles, CA 90001" +237040,Bose SoundSport Headphones,1,99.99,08/17/19 12:09,"655 Main St, Seattle, WA 98101" +237041,27in FHD Monitor,1,149.99,08/31/19 12:10,"682 Elm St, Dallas, TX 75001" +237042,Bose SoundSport Headphones,1,99.99,08/10/19 10:21,"658 11th St, Austin, TX 73301" +237043,27in FHD Monitor,1,149.99,08/18/19 08:59,"350 4th St, Boston, MA 02215" +237043,AAA Batteries (4-pack),1,2.99,08/18/19 08:59,"350 4th St, Boston, MA 02215" +237044,AA Batteries (4-pack),1,3.84,08/09/19 10:12,"790 Pine St, Austin, TX 73301" +237045,Lightning Charging Cable,1,14.95,08/10/19 11:09,"91 Hickory St, Atlanta, GA 30301" +237046,Lightning Charging Cable,1,14.95,08/19/19 13:28,"580 Maple St, Atlanta, GA 30301" +237047,Bose SoundSport Headphones,1,99.99,08/09/19 12:37,"553 Church St, New York City, NY 10001" +237048,AA Batteries (4-pack),2,3.84,08/05/19 13:17,"732 Jefferson St, Boston, MA 02215" +237049,Wired Headphones,1,11.99,08/19/19 09:41,"410 Madison St, Boston, MA 02215" +237050,27in FHD Monitor,1,149.99,08/08/19 20:09,"541 10th St, San Francisco, CA 94016" +237051,Apple Airpods Headphones,1,150,08/26/19 21:35,"480 Adams St, San Francisco, CA 94016" +237052,AA Batteries (4-pack),1,3.84,08/06/19 21:22,"470 Cherry St, New York City, NY 10001" +237053,ThinkPad Laptop,1,999.99,08/19/19 22:52,"174 Chestnut St, New York City, NY 10001" +237054,USB-C Charging Cable,2,11.95,08/11/19 07:09,"96 Willow St, New York City, NY 10001" +237055,AA Batteries (4-pack),1,3.84,08/08/19 11:10,"766 1st St, New York City, NY 10001" +237056,ThinkPad Laptop,1,999.99,08/11/19 20:40,"520 Ridge St, Austin, TX 73301" +237057,ThinkPad Laptop,1,999.99,08/28/19 17:06,"735 Wilson St, Los Angeles, CA 90001" +237058,Apple Airpods Headphones,1,150,08/28/19 13:44,"674 Jefferson St, Atlanta, GA 30301" +237059,Macbook Pro Laptop,1,1700,08/12/19 22:25,"762 Wilson St, Dallas, TX 75001" +237060,AA Batteries (4-pack),1,3.84,08/09/19 20:23,"370 Park St, San Francisco, CA 94016" +237061,Apple Airpods Headphones,1,150,08/09/19 07:18,"931 Wilson St, San Francisco, CA 94016" +237062,Wired Headphones,1,11.99,08/13/19 16:07,"374 Wilson St, San Francisco, CA 94016" +237063,AAA Batteries (4-pack),2,2.99,08/16/19 11:02,"190 10th St, Los Angeles, CA 90001" +237064,AAA Batteries (4-pack),1,2.99,08/08/19 22:35,"986 Forest St, Dallas, TX 75001" +237065,Bose SoundSport Headphones,1,99.99,08/29/19 17:09,"6 Church St, Atlanta, GA 30301" +237066,AAA Batteries (4-pack),1,2.99,08/04/19 23:09,"738 6th St, Los Angeles, CA 90001" +237067,Macbook Pro Laptop,1,1700,08/24/19 19:55,"242 Cherry St, Los Angeles, CA 90001" +237068,Bose SoundSport Headphones,1,99.99,08/09/19 18:04,"169 South St, Dallas, TX 75001" +237069,AAA Batteries (4-pack),1,2.99,08/08/19 13:57,"150 Center St, San Francisco, CA 94016" +237070,27in FHD Monitor,1,149.99,08/10/19 00:26,"826 North St, Dallas, TX 75001" +237071,Google Phone,1,600,08/04/19 15:35,"613 West St, Los Angeles, CA 90001" +237072,20in Monitor,1,109.99,08/26/19 22:23,"312 Washington St, San Francisco, CA 94016" +237073,Apple Airpods Headphones,1,150,08/24/19 22:09,"762 Ridge St, San Francisco, CA 94016" +237074,Flatscreen TV,1,300,08/10/19 19:16,"342 Elm St, Portland, ME 04101" +237075,Apple Airpods Headphones,1,150,08/12/19 20:52,"287 Maple St, Boston, MA 02215" +237076,LG Washing Machine,1,600.0,08/18/19 18:46,"869 Jackson St, Los Angeles, CA 90001" +237077,Apple Airpods Headphones,1,150,08/19/19 15:59,"31 Cherry St, Boston, MA 02215" +237078,Apple Airpods Headphones,1,150,08/13/19 11:18,"309 Main St, San Francisco, CA 94016" +237079,Lightning Charging Cable,1,14.95,08/29/19 12:28,"672 Washington St, Portland, OR 97035" +237080,AAA Batteries (4-pack),1,2.99,08/05/19 23:52,"704 Wilson St, Atlanta, GA 30301" +237081,AAA Batteries (4-pack),1,2.99,08/20/19 17:07,"831 Dogwood St, San Francisco, CA 94016" +237082,USB-C Charging Cable,1,11.95,08/02/19 19:30,"695 Wilson St, New York City, NY 10001" +237083,ThinkPad Laptop,1,999.99,08/11/19 17:43,"852 Pine St, Atlanta, GA 30301" +237084,AAA Batteries (4-pack),1,2.99,08/30/19 21:38,"400 River St, Atlanta, GA 30301" +237085,Google Phone,1,600,08/11/19 11:22,"163 Forest St, Austin, TX 73301" +237086,iPhone,1,700,08/07/19 17:26,"160 Lincoln St, Atlanta, GA 30301" +237087,Apple Airpods Headphones,1,150,08/24/19 15:55,"960 Madison St, New York City, NY 10001" +237088,Bose SoundSport Headphones,1,99.99,08/04/19 17:02,"370 West St, Seattle, WA 98101" +237089,27in 4K Gaming Monitor,1,389.99,08/15/19 07:51,"898 Walnut St, Los Angeles, CA 90001" +237090,Lightning Charging Cable,1,14.95,08/24/19 13:22,"541 Sunset St, Seattle, WA 98101" +237091,AA Batteries (4-pack),1,3.84,08/03/19 19:23,"45 Dogwood St, Dallas, TX 75001" +237092,Bose SoundSport Headphones,1,99.99,08/30/19 19:35,"337 Park St, Los Angeles, CA 90001" +237093,Macbook Pro Laptop,1,1700,08/05/19 13:06,"979 13th St, New York City, NY 10001" +237094,27in FHD Monitor,1,149.99,08/20/19 17:04,"419 8th St, Austin, TX 73301" +237095,AAA Batteries (4-pack),1,2.99,08/26/19 18:25,"505 Hickory St, Los Angeles, CA 90001" +237096,27in FHD Monitor,1,149.99,08/18/19 21:14,"582 9th St, Boston, MA 02215" +237097,Macbook Pro Laptop,1,1700,08/16/19 09:08,"408 4th St, San Francisco, CA 94016" +237098,Wired Headphones,1,11.99,08/30/19 13:06,"969 Wilson St, San Francisco, CA 94016" +237099,AA Batteries (4-pack),1,3.84,08/08/19 10:03,"371 2nd St, Atlanta, GA 30301" +237100,Apple Airpods Headphones,1,150,08/24/19 08:17,"41 Jackson St, Los Angeles, CA 90001" +237101,Google Phone,1,600,08/04/19 11:36,"685 Hill St, Dallas, TX 75001" +237101,USB-C Charging Cable,1,11.95,08/04/19 11:36,"685 Hill St, Dallas, TX 75001" +237102,Lightning Charging Cable,1,14.95,08/12/19 20:43,"460 North St, Los Angeles, CA 90001" +237103,Flatscreen TV,1,300,08/06/19 16:20,"778 10th St, New York City, NY 10001" +237104,Macbook Pro Laptop,1,1700,08/16/19 22:15,"944 6th St, New York City, NY 10001" +237105,Lightning Charging Cable,1,14.95,08/23/19 14:45,"637 South St, New York City, NY 10001" +237106,Lightning Charging Cable,1,14.95,08/11/19 14:14,"393 Church St, Boston, MA 02215" +237107,Lightning Charging Cable,1,14.95,08/04/19 19:49,"886 Hickory St, Portland, OR 97035" +237108,Google Phone,1,600,08/22/19 12:54,"507 Elm St, Boston, MA 02215" +237109,LG Washing Machine,1,600.0,08/06/19 09:34,"812 Lakeview St, Atlanta, GA 30301" +237110,AAA Batteries (4-pack),2,2.99,08/25/19 16:39,"947 Johnson St, New York City, NY 10001" +237111,USB-C Charging Cable,1,11.95,08/11/19 07:28,"250 Hill St, San Francisco, CA 94016" +237112,Google Phone,1,600,08/01/19 04:05,"107 Cherry St, Boston, MA 02215" +237113,AAA Batteries (4-pack),1,2.99,08/10/19 23:11,"104 9th St, Seattle, WA 98101" +237114,Bose SoundSport Headphones,1,99.99,08/12/19 13:27,"829 5th St, Portland, OR 97035" +237115,Lightning Charging Cable,2,14.95,08/06/19 19:50,"480 Meadow St, Los Angeles, CA 90001" +237116,ThinkPad Laptop,1,999.99,08/14/19 18:52,"998 14th St, San Francisco, CA 94016" +237117,AA Batteries (4-pack),3,3.84,08/12/19 12:51,"844 Cherry St, San Francisco, CA 94016" +237118,Macbook Pro Laptop,1,1700,08/18/19 19:17,"465 10th St, San Francisco, CA 94016" +237119,AAA Batteries (4-pack),1,2.99,08/13/19 20:24,"427 Dogwood St, Los Angeles, CA 90001" +237120,USB-C Charging Cable,1,11.95,08/02/19 02:48,"158 River St, Dallas, TX 75001" +237121,AA Batteries (4-pack),1,3.84,08/06/19 13:30,"158 Madison St, San Francisco, CA 94016" +237122,USB-C Charging Cable,1,11.95,08/09/19 23:12,"993 Jackson St, San Francisco, CA 94016" +237123,AAA Batteries (4-pack),1,2.99,08/02/19 14:36,"724 4th St, Boston, MA 02215" +237124,Apple Airpods Headphones,1,150,08/09/19 14:06,"47 Meadow St, New York City, NY 10001" +237125,Wired Headphones,1,11.99,08/15/19 23:21,"146 7th St, Los Angeles, CA 90001" +237126,Apple Airpods Headphones,1,150,08/20/19 12:02,"643 Lake St, Boston, MA 02215" +237127,Lightning Charging Cable,1,14.95,08/29/19 12:29,"860 8th St, Los Angeles, CA 90001" +237128,LG Dryer,1,600.0,08/02/19 09:36,"952 12th St, New York City, NY 10001" +237128,Lightning Charging Cable,2,14.95,08/02/19 09:36,"952 12th St, New York City, NY 10001" +237129,USB-C Charging Cable,1,11.95,08/17/19 13:30,"761 Pine St, Boston, MA 02215" +237130,Macbook Pro Laptop,1,1700,08/30/19 12:43,"896 8th St, Portland, OR 97035" +237131,27in FHD Monitor,1,149.99,08/11/19 22:14,"842 Lincoln St, Boston, MA 02215" +237132,Macbook Pro Laptop,1,1700,08/01/19 10:58,"720 Chestnut St, Seattle, WA 98101" +237133,AA Batteries (4-pack),1,3.84,08/13/19 18:00,"422 Johnson St, Los Angeles, CA 90001" +237134,USB-C Charging Cable,1,11.95,08/30/19 18:49,"277 Chestnut St, Boston, MA 02215" +237135,Flatscreen TV,1,300,08/28/19 23:56,"153 2nd St, Atlanta, GA 30301" +237136,Bose SoundSport Headphones,1,99.99,08/06/19 22:17,"270 7th St, Los Angeles, CA 90001" +237137,Wired Headphones,1,11.99,08/12/19 13:55,"597 Maple St, San Francisco, CA 94016" +237138,20in Monitor,1,109.99,08/22/19 19:30,"169 Jackson St, Los Angeles, CA 90001" +237139,Lightning Charging Cable,1,14.95,08/24/19 22:15,"516 Forest St, Boston, MA 02215" +237140,Lightning Charging Cable,1,14.95,08/20/19 12:19,"810 Lakeview St, New York City, NY 10001" +237141,USB-C Charging Cable,1,11.95,08/20/19 05:51,"672 Forest St, San Francisco, CA 94016" +237142,Macbook Pro Laptop,1,1700,08/05/19 11:10,"887 13th St, San Francisco, CA 94016" +237143,Apple Airpods Headphones,1,150,08/31/19 22:04,"776 11th St, Los Angeles, CA 90001" +237144,Lightning Charging Cable,1,14.95,08/26/19 13:03,"347 Jackson St, Boston, MA 02215" +237145,AAA Batteries (4-pack),1,2.99,08/16/19 18:16,"55 14th St, San Francisco, CA 94016" +237146,USB-C Charging Cable,1,11.95,08/16/19 22:09,"60 Adams St, San Francisco, CA 94016" +237147,Lightning Charging Cable,1,14.95,08/11/19 18:46,"656 12th St, San Francisco, CA 94016" +237148,Bose SoundSport Headphones,1,99.99,08/09/19 19:38,"869 Church St, Austin, TX 73301" +237149,34in Ultrawide Monitor,1,379.99,08/12/19 15:56,"75 Spruce St, Atlanta, GA 30301" +237150,Lightning Charging Cable,1,14.95,08/18/19 20:24,"189 7th St, Boston, MA 02215" +237151,USB-C Charging Cable,2,11.95,08/15/19 08:02,"500 Main St, Los Angeles, CA 90001" +237152,34in Ultrawide Monitor,1,379.99,08/12/19 01:46,"254 Dogwood St, Austin, TX 73301" +237153,AAA Batteries (4-pack),1,2.99,08/23/19 13:28,"489 Forest St, Los Angeles, CA 90001" +237154,USB-C Charging Cable,1,11.95,08/01/19 11:11,"827 Cherry St, Portland, OR 97035" +237155,Flatscreen TV,1,300,08/03/19 20:18,"573 Washington St, Los Angeles, CA 90001" +237156,USB-C Charging Cable,2,11.95,08/25/19 10:58,"565 Center St, San Francisco, CA 94016" +237157,AAA Batteries (4-pack),1,2.99,08/11/19 18:50,"937 Lincoln St, Seattle, WA 98101" +237158,AA Batteries (4-pack),2,3.84,08/22/19 07:09,"696 River St, Atlanta, GA 30301" +237159,Apple Airpods Headphones,1,150,08/08/19 19:13,"252 Hill St, Atlanta, GA 30301" +237160,Lightning Charging Cable,1,14.95,08/16/19 08:02,"851 Park St, New York City, NY 10001" +237161,Flatscreen TV,1,300,08/20/19 11:34,"526 Wilson St, San Francisco, CA 94016" +237162,Bose SoundSport Headphones,1,99.99,08/23/19 10:10,"763 Park St, Dallas, TX 75001" +237163,Vareebadd Phone,1,400,08/27/19 20:27,"603 Elm St, Boston, MA 02215" +237164,AA Batteries (4-pack),1,3.84,08/11/19 09:28,"229 9th St, Seattle, WA 98101" +237165,AAA Batteries (4-pack),2,2.99,08/26/19 12:41,"850 14th St, Atlanta, GA 30301" +237166,AA Batteries (4-pack),2,3.84,08/22/19 18:04,"767 Elm St, Los Angeles, CA 90001" +237167,Bose SoundSport Headphones,1,99.99,08/30/19 21:41,"208 5th St, Los Angeles, CA 90001" +237168,Bose SoundSport Headphones,1,99.99,08/14/19 17:44,"738 Pine St, San Francisco, CA 94016" +237169,Apple Airpods Headphones,1,150,08/28/19 20:28,"448 Highland St, San Francisco, CA 94016" +237170,AA Batteries (4-pack),1,3.84,08/21/19 11:04,"457 Main St, Seattle, WA 98101" +237171,Lightning Charging Cable,1,14.95,08/06/19 00:02,"408 Ridge St, New York City, NY 10001" +237172,USB-C Charging Cable,1,11.95,08/28/19 11:08,"644 1st St, San Francisco, CA 94016" +237173,Wired Headphones,1,11.99,08/14/19 19:02,"615 13th St, San Francisco, CA 94016" +237173,Wired Headphones,1,11.99,08/14/19 19:02,"615 13th St, San Francisco, CA 94016" +237174,Wired Headphones,1,11.99,08/22/19 11:05,"224 Hickory St, San Francisco, CA 94016" +237175,AAA Batteries (4-pack),1,2.99,08/14/19 10:51,"495 Lake St, Austin, TX 73301" +237176,Wired Headphones,1,11.99,08/16/19 14:23,"881 10th St, Boston, MA 02215" +237177,Wired Headphones,2,11.99,08/02/19 11:19,"995 Jefferson St, San Francisco, CA 94016" +237178,AAA Batteries (4-pack),1,2.99,08/21/19 16:48,"6 Sunset St, New York City, NY 10001" +237179,Bose SoundSport Headphones,1,99.99,08/04/19 18:04,"363 8th St, New York City, NY 10001" +237180,Lightning Charging Cable,1,14.95,08/05/19 21:34,"166 North St, New York City, NY 10001" +237181,34in Ultrawide Monitor,1,379.99,08/03/19 15:58,"888 Cherry St, San Francisco, CA 94016" +237182,Apple Airpods Headphones,1,150,08/11/19 00:13,"975 Center St, Portland, OR 97035" +237183,Lightning Charging Cable,1,14.95,08/07/19 20:43,"610 9th St, New York City, NY 10001" +237184,27in FHD Monitor,2,149.99,08/27/19 14:40,"677 West St, Boston, MA 02215" +237185,ThinkPad Laptop,1,999.99,08/01/19 05:51,"280 Cedar St, Atlanta, GA 30301" +237186,Bose SoundSport Headphones,1,99.99,08/28/19 18:13,"264 Lake St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +237187,27in FHD Monitor,1,149.99,08/06/19 20:24,"279 8th St, Atlanta, GA 30301" +237188,Wired Headphones,1,11.99,08/18/19 17:49,"362 2nd St, New York City, NY 10001" +237189,AA Batteries (4-pack),2,3.84,08/20/19 10:54,"910 4th St, San Francisco, CA 94016" +237190,AA Batteries (4-pack),1,3.84,08/30/19 18:47,"392 13th St, Seattle, WA 98101" +237191,Apple Airpods Headphones,1,150,08/17/19 12:27,"568 Ridge St, San Francisco, CA 94016" +237192,27in FHD Monitor,1,149.99,08/02/19 17:00,"302 Jackson St, New York City, NY 10001" +237193,27in 4K Gaming Monitor,1,389.99,08/04/19 17:39,"791 Lakeview St, San Francisco, CA 94016" +237194,USB-C Charging Cable,1,11.95,08/08/19 16:52,"693 Johnson St, Boston, MA 02215" +237195,ThinkPad Laptop,1,999.99,08/31/19 12:00,"324 Church St, Los Angeles, CA 90001" +237196,iPhone,1,700,08/11/19 14:45,"182 Dogwood St, New York City, NY 10001" +237196,Lightning Charging Cable,1,14.95,08/11/19 14:45,"182 Dogwood St, New York City, NY 10001" +237196,Apple Airpods Headphones,1,150,08/11/19 14:45,"182 Dogwood St, New York City, NY 10001" +237196,Wired Headphones,1,11.99,08/11/19 14:45,"182 Dogwood St, New York City, NY 10001" +237197,20in Monitor,1,109.99,08/18/19 15:30,"445 9th St, San Francisco, CA 94016" +237198,USB-C Charging Cable,1,11.95,08/24/19 07:39,"700 North St, San Francisco, CA 94016" +237199,34in Ultrawide Monitor,1,379.99,08/18/19 16:48,"424 Church St, Boston, MA 02215" +237200,USB-C Charging Cable,1,11.95,08/19/19 13:25,"69 12th St, Boston, MA 02215" +237201,AAA Batteries (4-pack),1,2.99,08/03/19 22:46,"64 Washington St, San Francisco, CA 94016" +237201,AA Batteries (4-pack),1,3.84,08/03/19 22:46,"64 Washington St, San Francisco, CA 94016" +237202,27in FHD Monitor,1,149.99,08/03/19 17:20,"99 Hickory St, San Francisco, CA 94016" +237203,AAA Batteries (4-pack),1,2.99,08/06/19 11:12,"574 Main St, Atlanta, GA 30301" +237204,27in FHD Monitor,1,149.99,08/03/19 12:36,"216 Johnson St, Los Angeles, CA 90001" +237205,iPhone,1,700,08/04/19 20:35,"976 Meadow St, San Francisco, CA 94016" +237206,Wired Headphones,3,11.99,08/08/19 10:24,"611 6th St, Boston, MA 02215" +237207,34in Ultrawide Monitor,1,379.99,08/14/19 08:36,"61 Cedar St, Boston, MA 02215" +237208,ThinkPad Laptop,1,999.99,08/08/19 08:32,"650 Cedar St, San Francisco, CA 94016" +237209,Wired Headphones,1,11.99,08/19/19 20:23,"122 11th St, Los Angeles, CA 90001" +237210,Bose SoundSport Headphones,1,99.99,08/09/19 19:40,"637 Washington St, New York City, NY 10001" +237211,USB-C Charging Cable,1,11.95,08/25/19 09:43,"414 Walnut St, New York City, NY 10001" +237212,ThinkPad Laptop,1,999.99,08/16/19 13:43,"967 Sunset St, New York City, NY 10001" +237213,AA Batteries (4-pack),2,3.84,08/14/19 15:16,"73 Maple St, Boston, MA 02215" +237214,Bose SoundSport Headphones,1,99.99,08/25/19 20:53,"532 Highland St, Seattle, WA 98101" +237215,20in Monitor,1,109.99,08/30/19 17:01,"359 7th St, Los Angeles, CA 90001" +237216,Wired Headphones,1,11.99,08/07/19 20:39,"666 Johnson St, San Francisco, CA 94016" +237217,AA Batteries (4-pack),3,3.84,08/31/19 00:20,"332 7th St, Los Angeles, CA 90001" +237218,USB-C Charging Cable,1,11.95,08/19/19 19:07,"65 8th St, Austin, TX 73301" +237219,AA Batteries (4-pack),1,3.84,08/08/19 13:55,"448 Meadow St, Los Angeles, CA 90001" +237220,27in FHD Monitor,1,149.99,08/19/19 20:58,"766 Washington St, San Francisco, CA 94016" +237221,Lightning Charging Cable,1,14.95,08/07/19 15:33,"545 5th St, Boston, MA 02215" +237222,Lightning Charging Cable,1,14.95,08/10/19 11:34,"401 Adams St, Austin, TX 73301" +237223,Google Phone,1,600,08/10/19 19:31,"674 10th St, Los Angeles, CA 90001" +237223,Wired Headphones,1,11.99,08/10/19 19:31,"674 10th St, Los Angeles, CA 90001" +237224,Lightning Charging Cable,1,14.95,08/01/19 09:23,"71 Jefferson St, San Francisco, CA 94016" +237225,Wired Headphones,1,11.99,08/29/19 16:16,"671 Jefferson St, Los Angeles, CA 90001" +237226,Google Phone,1,600,08/12/19 08:12,"926 Washington St, San Francisco, CA 94016" +237227,AAA Batteries (4-pack),2,2.99,08/15/19 15:35,"954 Highland St, New York City, NY 10001" +237228,34in Ultrawide Monitor,1,379.99,08/16/19 18:18,"934 Spruce St, Boston, MA 02215" +237229,ThinkPad Laptop,1,999.99,08/27/19 21:38,"374 Hickory St, Boston, MA 02215" +237230,AA Batteries (4-pack),2,3.84,08/12/19 21:40,"513 Center St, Portland, OR 97035" +237231,Apple Airpods Headphones,1,150,08/10/19 21:56,"286 Meadow St, Dallas, TX 75001" +237232,USB-C Charging Cable,1,11.95,08/31/19 16:46,"146 Walnut St, Dallas, TX 75001" +237233,AAA Batteries (4-pack),1,2.99,08/25/19 08:50,"851 11th St, Dallas, TX 75001" +237234,34in Ultrawide Monitor,1,379.99,08/17/19 12:19,"562 Dogwood St, San Francisco, CA 94016" +237235,USB-C Charging Cable,1,11.95,08/16/19 17:32,"305 10th St, San Francisco, CA 94016" +237236,AAA Batteries (4-pack),1,2.99,08/24/19 21:11,"825 South St, New York City, NY 10001" +237237,AAA Batteries (4-pack),1,2.99,08/10/19 14:09,"713 Jackson St, San Francisco, CA 94016" +237238,AAA Batteries (4-pack),1,2.99,08/12/19 13:57,"301 2nd St, Dallas, TX 75001" +237239,Lightning Charging Cable,1,14.95,08/15/19 21:18,"915 Hill St, New York City, NY 10001" +237240,Bose SoundSport Headphones,1,99.99,08/23/19 12:45,"717 8th St, San Francisco, CA 94016" +237241,Flatscreen TV,1,300,08/11/19 19:19,"27 Lake St, Los Angeles, CA 90001" +237242,AAA Batteries (4-pack),1,2.99,08/29/19 15:30,"871 Cedar St, New York City, NY 10001" +237243,AAA Batteries (4-pack),1,2.99,08/16/19 13:40,"23 11th St, Austin, TX 73301" +237244,Wired Headphones,1,11.99,08/11/19 15:49,"841 West St, Los Angeles, CA 90001" +237245,Wired Headphones,1,11.99,08/03/19 16:58,"388 Hill St, Austin, TX 73301" +237246,Apple Airpods Headphones,1,150,08/20/19 12:41,"888 2nd St, San Francisco, CA 94016" +237247,20in Monitor,1,109.99,08/25/19 12:18,"999 Madison St, Dallas, TX 75001" +237248,iPhone,1,700,08/07/19 13:55,"482 8th St, Los Angeles, CA 90001" +237248,Lightning Charging Cable,1,14.95,08/07/19 13:55,"482 8th St, Los Angeles, CA 90001" +237249,AA Batteries (4-pack),1,3.84,08/06/19 19:04,"409 5th St, San Francisco, CA 94016" +237250,Lightning Charging Cable,1,14.95,08/17/19 10:37,"545 12th St, Seattle, WA 98101" +237251,AA Batteries (4-pack),1,3.84,08/28/19 15:11,"910 Lincoln St, Austin, TX 73301" +237251,Macbook Pro Laptop,1,1700,08/28/19 15:11,"910 Lincoln St, Austin, TX 73301" +237252,Google Phone,1,600,08/06/19 11:11,"801 Lake St, San Francisco, CA 94016" +237253,Flatscreen TV,1,300,08/06/19 09:53,"649 River St, Seattle, WA 98101" +237254,AA Batteries (4-pack),1,3.84,08/15/19 21:00,"265 Dogwood St, Seattle, WA 98101" +237255,Apple Airpods Headphones,1,150,08/09/19 21:46,"443 Highland St, San Francisco, CA 94016" +237256,AA Batteries (4-pack),1,3.84,08/26/19 10:04,"146 4th St, Austin, TX 73301" +237257,AAA Batteries (4-pack),2,2.99,08/05/19 22:45,"48 Lakeview St, Austin, TX 73301" +237258,34in Ultrawide Monitor,1,379.99,08/11/19 19:12,"258 2nd St, Seattle, WA 98101" +237259,AA Batteries (4-pack),1,3.84,08/01/19 20:10,"629 Johnson St, Los Angeles, CA 90001" +237260,USB-C Charging Cable,1,11.95,08/18/19 15:40,"773 Hill St, Portland, OR 97035" +237261,Wired Headphones,1,11.99,08/13/19 00:07,"386 Cherry St, Los Angeles, CA 90001" +237262,Wired Headphones,1,11.99,08/19/19 10:01,"700 Forest St, Los Angeles, CA 90001" +237263,Apple Airpods Headphones,1,150,08/31/19 00:45,"853 Cedar St, Boston, MA 02215" +237264,Wired Headphones,1,11.99,08/13/19 04:28,"19 Hill St, San Francisco, CA 94016" +237265,AAA Batteries (4-pack),1,2.99,08/15/19 10:13,"740 Adams St, New York City, NY 10001" +237266,Apple Airpods Headphones,1,150,08/18/19 11:12,"56 Elm St, San Francisco, CA 94016" +237267,AA Batteries (4-pack),1,3.84,08/21/19 13:53,"119 Maple St, Austin, TX 73301" +237268,Lightning Charging Cable,1,14.95,08/08/19 15:04,"867 14th St, Dallas, TX 75001" +237269,Wired Headphones,1,11.99,08/28/19 22:52,"385 13th St, San Francisco, CA 94016" +237270,34in Ultrawide Monitor,1,379.99,08/31/19 20:16,"153 9th St, Atlanta, GA 30301" +237271,Apple Airpods Headphones,1,150,08/02/19 05:44,"181 Dogwood St, Dallas, TX 75001" +237272,AA Batteries (4-pack),1,3.84,08/18/19 10:17,"465 Lakeview St, Los Angeles, CA 90001" +237272,AA Batteries (4-pack),3,3.84,08/18/19 10:17,"465 Lakeview St, Los Angeles, CA 90001" +237273,Google Phone,1,600,08/22/19 14:03,"341 9th St, San Francisco, CA 94016" +237274,ThinkPad Laptop,1,999.99,08/13/19 22:32,"968 2nd St, Portland, OR 97035" +237275,Lightning Charging Cable,2,14.95,08/04/19 20:24,"448 Spruce St, Austin, TX 73301" +237276,ThinkPad Laptop,1,999.99,08/27/19 20:48,"99 Park St, Atlanta, GA 30301" +237277,20in Monitor,1,109.99,08/27/19 14:09,"627 Cherry St, Atlanta, GA 30301" +237278,AA Batteries (4-pack),1,3.84,08/23/19 09:58,"595 6th St, Los Angeles, CA 90001" +237279,Lightning Charging Cable,1,14.95,08/25/19 12:32,"900 Sunset St, Boston, MA 02215" +237280,Flatscreen TV,1,300,08/05/19 23:16,"104 7th St, San Francisco, CA 94016" +237281,AA Batteries (4-pack),2,3.84,08/23/19 12:03,"117 Cedar St, San Francisco, CA 94016" +237282,AAA Batteries (4-pack),2,2.99,08/17/19 13:54,"884 8th St, Atlanta, GA 30301" +237283,Lightning Charging Cable,1,14.95,08/13/19 22:01,"669 North St, San Francisco, CA 94016" +237284,Bose SoundSport Headphones,1,99.99,08/25/19 00:37,"731 Jefferson St, Portland, OR 97035" +237285,Lightning Charging Cable,1,14.95,08/15/19 23:35,"409 Jackson St, Atlanta, GA 30301" +237286,Flatscreen TV,1,300,08/27/19 12:32,"183 Hickory St, Atlanta, GA 30301" +237287,27in 4K Gaming Monitor,1,389.99,08/04/19 23:24,"873 North St, Atlanta, GA 30301" +237288,ThinkPad Laptop,1,999.99,08/26/19 13:35,"464 Sunset St, San Francisco, CA 94016" +237289,Lightning Charging Cable,1,14.95,08/29/19 07:00,"431 Lincoln St, New York City, NY 10001" +237290,USB-C Charging Cable,2,11.95,08/13/19 18:33,"512 8th St, Seattle, WA 98101" +237291,ThinkPad Laptop,1,999.99,08/06/19 19:12,"315 Johnson St, San Francisco, CA 94016" +237292,Lightning Charging Cable,1,14.95,08/03/19 08:32,"978 Willow St, Dallas, TX 75001" +237293,AA Batteries (4-pack),1,3.84,08/24/19 21:26,"615 4th St, Seattle, WA 98101" +237294,Apple Airpods Headphones,1,150,08/12/19 08:48,"264 Pine St, Portland, ME 04101" +237295,iPhone,1,700,08/15/19 14:25,"734 6th St, Seattle, WA 98101" +237295,Apple Airpods Headphones,1,150,08/15/19 14:25,"734 6th St, Seattle, WA 98101" +237296,AA Batteries (4-pack),1,3.84,08/19/19 17:52,"447 Johnson St, Austin, TX 73301" +237297,27in 4K Gaming Monitor,1,389.99,08/06/19 19:48,"577 Washington St, Los Angeles, CA 90001" +237298,USB-C Charging Cable,1,11.95,08/11/19 18:54,"250 10th St, Los Angeles, CA 90001" +237299,27in FHD Monitor,1,149.99,08/18/19 18:34,"763 Sunset St, New York City, NY 10001" +237300,USB-C Charging Cable,1,11.95,08/06/19 00:23,"748 14th St, Atlanta, GA 30301" +237301,Lightning Charging Cable,1,14.95,08/07/19 00:25,"714 2nd St, New York City, NY 10001" +237302,ThinkPad Laptop,1,999.99,08/26/19 02:40,"3 Sunset St, Los Angeles, CA 90001" +237303,Google Phone,1,600,08/06/19 18:48,"741 5th St, Atlanta, GA 30301" +237304,Lightning Charging Cable,2,14.95,08/03/19 21:13,"605 Cherry St, Dallas, TX 75001" +237305,34in Ultrawide Monitor,1,379.99,08/20/19 10:10,"774 Park St, Boston, MA 02215" +237306,Macbook Pro Laptop,1,1700,08/24/19 14:39,"920 West St, Seattle, WA 98101" +237307,USB-C Charging Cable,1,11.95,08/31/19 23:52,"282 Willow St, San Francisco, CA 94016" +237308,AAA Batteries (4-pack),1,2.99,08/11/19 16:59,"730 Chestnut St, San Francisco, CA 94016" +237309,Bose SoundSport Headphones,1,99.99,08/01/19 16:49,"717 Walnut St, Atlanta, GA 30301" +237310,USB-C Charging Cable,1,11.95,08/28/19 15:10,"727 Cherry St, Dallas, TX 75001" +237311,Bose SoundSport Headphones,1,99.99,08/30/19 10:03,"139 9th St, New York City, NY 10001" +237312,iPhone,1,700,08/27/19 18:24,"309 6th St, Los Angeles, CA 90001" +237313,AAA Batteries (4-pack),1,2.99,08/17/19 18:45,"140 West St, Los Angeles, CA 90001" +237313,Apple Airpods Headphones,1,150,08/17/19 18:45,"140 West St, Los Angeles, CA 90001" +237314,AAA Batteries (4-pack),1,2.99,08/22/19 19:01,"953 13th St, San Francisco, CA 94016" +237315,AA Batteries (4-pack),1,3.84,08/14/19 15:34,"688 8th St, San Francisco, CA 94016" +237316,AA Batteries (4-pack),1,3.84,08/04/19 09:29,"950 Elm St, San Francisco, CA 94016" +237317,Wired Headphones,1,11.99,08/13/19 19:52,"831 13th St, New York City, NY 10001" +237318,Bose SoundSport Headphones,1,99.99,08/13/19 20:19,"350 Hill St, New York City, NY 10001" +237319,iPhone,1,700,08/21/19 13:05,"824 7th St, San Francisco, CA 94016" +237320,20in Monitor,1,109.99,08/03/19 06:04,"280 Pine St, Dallas, TX 75001" +237321,Macbook Pro Laptop,1,1700,08/17/19 12:00,"666 Washington St, Dallas, TX 75001" +237322,Lightning Charging Cable,2,14.95,08/06/19 06:33,"954 Hill St, Los Angeles, CA 90001" +237323,AAA Batteries (4-pack),1,2.99,08/17/19 08:26,"753 Washington St, Seattle, WA 98101" +237324,Lightning Charging Cable,1,14.95,08/01/19 11:06,"431 Elm St, Los Angeles, CA 90001" +237325,USB-C Charging Cable,1,11.95,08/16/19 17:04,"530 Lincoln St, Austin, TX 73301" +237326,Bose SoundSport Headphones,1,99.99,08/20/19 18:17,"255 Cherry St, Los Angeles, CA 90001" +237327,20in Monitor,1,109.99,08/29/19 12:16,"44 South St, Portland, ME 04101" +237328,Lightning Charging Cable,1,14.95,08/15/19 22:30,"680 Wilson St, Seattle, WA 98101" +237329,AAA Batteries (4-pack),3,2.99,08/19/19 17:56,"872 River St, Austin, TX 73301" +237330,Wired Headphones,1,11.99,08/24/19 10:39,"653 Johnson St, San Francisco, CA 94016" +237331,USB-C Charging Cable,1,11.95,08/06/19 19:29,"449 Sunset St, Los Angeles, CA 90001" +237332,Google Phone,1,600,08/13/19 12:14,"104 West St, Los Angeles, CA 90001" +237333,AA Batteries (4-pack),2,3.84,08/06/19 18:36,"532 Wilson St, New York City, NY 10001" +237334,AAA Batteries (4-pack),2,2.99,08/17/19 12:02,"900 Sunset St, Seattle, WA 98101" +237335,27in FHD Monitor,1,149.99,08/05/19 21:06,"223 Sunset St, Boston, MA 02215" +237336,Lightning Charging Cable,1,14.95,08/21/19 23:17,"630 1st St, San Francisco, CA 94016" +,,,,, +237337,AAA Batteries (4-pack),3,2.99,08/12/19 03:50,"568 Wilson St, San Francisco, CA 94016" +237338,27in FHD Monitor,1,149.99,08/26/19 08:02,"507 12th St, Atlanta, GA 30301" +237339,20in Monitor,1,109.99,08/30/19 22:57,"671 Elm St, Boston, MA 02215" +237340,Apple Airpods Headphones,1,150,08/04/19 00:13,"880 Washington St, Seattle, WA 98101" +237341,AAA Batteries (4-pack),1,2.99,08/20/19 23:06,"677 4th St, Boston, MA 02215" +237342,USB-C Charging Cable,2,11.95,08/08/19 17:56,"355 13th St, San Francisco, CA 94016" +237343,Lightning Charging Cable,1,14.95,08/17/19 21:45,"608 Highland St, Boston, MA 02215" +237344,Macbook Pro Laptop,1,1700,08/10/19 17:48,"451 Adams St, Seattle, WA 98101" +237345,USB-C Charging Cable,1,11.95,08/16/19 14:52,"823 Highland St, San Francisco, CA 94016" +237346,Google Phone,1,600,08/02/19 22:03,"786 5th St, Portland, ME 04101" +237346,USB-C Charging Cable,1,11.95,08/02/19 22:03,"786 5th St, Portland, ME 04101" +237347,Vareebadd Phone,1,400,08/30/19 18:14,"5 Jackson St, Dallas, TX 75001" +237348,AAA Batteries (4-pack),2,2.99,08/16/19 21:23,"568 Sunset St, New York City, NY 10001" +237349,AA Batteries (4-pack),1,3.84,08/06/19 17:07,"125 Jefferson St, Portland, OR 97035" +237350,Bose SoundSport Headphones,1,99.99,08/15/19 16:15,"648 Meadow St, San Francisco, CA 94016" +237351,AA Batteries (4-pack),1,3.84,08/14/19 16:16,"875 2nd St, Portland, ME 04101" +237352,Bose SoundSport Headphones,1,99.99,08/13/19 11:29,"782 5th St, Seattle, WA 98101" +237353,USB-C Charging Cable,1,11.95,08/04/19 16:09,"395 Jackson St, San Francisco, CA 94016" +237354,AAA Batteries (4-pack),1,2.99,08/15/19 16:16,"201 Sunset St, Los Angeles, CA 90001" +237355,Wired Headphones,1,11.99,08/28/19 17:53,"762 Main St, Los Angeles, CA 90001" +237356,20in Monitor,1,109.99,08/13/19 11:03,"131 7th St, San Francisco, CA 94016" +237357,Google Phone,1,600,08/02/19 17:02,"71 Adams St, Dallas, TX 75001" +237358,Wired Headphones,1,11.99,08/09/19 11:10,"16 River St, Atlanta, GA 30301" +237359,34in Ultrawide Monitor,1,379.99,08/18/19 02:06,"534 Ridge St, Seattle, WA 98101" +237360,AAA Batteries (4-pack),4,2.99,08/17/19 12:24,"966 7th St, San Francisco, CA 94016" +237361,Lightning Charging Cable,1,14.95,08/06/19 14:36,"177 10th St, Boston, MA 02215" +237362,Wired Headphones,1,11.99,08/23/19 14:51,"223 6th St, San Francisco, CA 94016" +237363,27in FHD Monitor,1,149.99,08/18/19 12:21,"886 Wilson St, Boston, MA 02215" +237364,AA Batteries (4-pack),1,3.84,08/26/19 16:53,"117 14th St, Boston, MA 02215" +237364,Wired Headphones,1,11.99,08/26/19 16:53,"117 14th St, Boston, MA 02215" +237365,Wired Headphones,1,11.99,08/17/19 18:17,"888 11th St, Los Angeles, CA 90001" +237366,Flatscreen TV,1,300,08/26/19 12:08,"89 12th St, Dallas, TX 75001" +237367,Apple Airpods Headphones,1,150,08/29/19 19:41,"168 River St, Los Angeles, CA 90001" +237368,USB-C Charging Cable,1,11.95,08/08/19 13:11,"244 Park St, New York City, NY 10001" +237369,ThinkPad Laptop,1,999.99,08/15/19 16:07,"10 10th St, Dallas, TX 75001" +237370,AAA Batteries (4-pack),1,2.99,08/11/19 17:32,"299 Forest St, Boston, MA 02215" +237371,AA Batteries (4-pack),2,3.84,08/29/19 13:45,"220 Washington St, Dallas, TX 75001" +237372,Google Phone,1,600,08/09/19 12:33,"344 Church St, New York City, NY 10001" +237373,27in FHD Monitor,1,149.99,08/04/19 22:08,"162 Jefferson St, Portland, OR 97035" +237374,Bose SoundSport Headphones,1,99.99,08/03/19 12:45,"381 1st St, San Francisco, CA 94016" +237375,Vareebadd Phone,1,400,08/15/19 15:17,"621 Elm St, San Francisco, CA 94016" +237376,Vareebadd Phone,1,400,08/29/19 18:14,"969 Jefferson St, San Francisco, CA 94016" +237377,AAA Batteries (4-pack),1,2.99,08/22/19 17:35,"725 Church St, Atlanta, GA 30301" +237378,AAA Batteries (4-pack),1,2.99,08/06/19 20:18,"670 Pine St, San Francisco, CA 94016" +237379,Lightning Charging Cable,1,14.95,08/26/19 18:25,"908 Sunset St, Atlanta, GA 30301" +237380,Lightning Charging Cable,1,14.95,08/22/19 16:39,"611 Church St, Boston, MA 02215" +237381,Lightning Charging Cable,1,14.95,08/08/19 11:23,"982 Jefferson St, Atlanta, GA 30301" +237382,Lightning Charging Cable,1,14.95,08/15/19 15:29,"775 Willow St, Atlanta, GA 30301" +237383,AA Batteries (4-pack),1,3.84,08/24/19 07:02,"864 Walnut St, Dallas, TX 75001" +237384,27in FHD Monitor,1,149.99,08/06/19 13:23,"221 2nd St, Los Angeles, CA 90001" +237385,Macbook Pro Laptop,1,1700,08/20/19 19:10,"884 Johnson St, Atlanta, GA 30301" +237386,USB-C Charging Cable,2,11.95,08/14/19 23:12,"831 10th St, Atlanta, GA 30301" +237387,Lightning Charging Cable,1,14.95,08/12/19 18:59,"746 4th St, San Francisco, CA 94016" +237388,USB-C Charging Cable,1,11.95,08/23/19 23:02,"553 Willow St, Boston, MA 02215" +237389,Wired Headphones,1,11.99,08/05/19 22:20,"67 Ridge St, San Francisco, CA 94016" +237390,Bose SoundSport Headphones,1,99.99,08/26/19 12:15,"173 9th St, Dallas, TX 75001" +237391,USB-C Charging Cable,1,11.95,08/03/19 20:19,"449 Johnson St, Los Angeles, CA 90001" +237392,AA Batteries (4-pack),1,3.84,08/08/19 16:19,"401 Pine St, Boston, MA 02215" +237393,USB-C Charging Cable,1,11.95,08/29/19 22:23,"99 4th St, Seattle, WA 98101" +237394,Macbook Pro Laptop,1,1700,08/25/19 07:08,"538 6th St, San Francisco, CA 94016" +237395,Wired Headphones,1,11.99,08/04/19 23:07,"72 Main St, San Francisco, CA 94016" +237396,iPhone,1,700,08/15/19 17:14,"85 2nd St, Dallas, TX 75001" +237397,27in 4K Gaming Monitor,1,389.99,08/14/19 16:03,"600 Center St, San Francisco, CA 94016" +237398,USB-C Charging Cable,1,11.95,08/12/19 08:21,"478 6th St, Dallas, TX 75001" +237399,USB-C Charging Cable,1,11.95,08/10/19 20:24,"574 Highland St, Boston, MA 02215" +237400,USB-C Charging Cable,1,11.95,08/12/19 11:12,"423 Jefferson St, New York City, NY 10001" +237401,Bose SoundSport Headphones,1,99.99,08/31/19 20:29,"176 Lake St, Los Angeles, CA 90001" +237402,USB-C Charging Cable,1,11.95,08/22/19 10:25,"76 Center St, Los Angeles, CA 90001" +237403,AA Batteries (4-pack),1,3.84,08/08/19 11:11,"662 Elm St, San Francisco, CA 94016" +237404,AA Batteries (4-pack),1,3.84,08/19/19 22:17,"787 Jackson St, Atlanta, GA 30301" +237405,Lightning Charging Cable,1,14.95,08/18/19 17:27,"66 Cedar St, Atlanta, GA 30301" +237406,Wired Headphones,1,11.99,08/16/19 15:54,"634 Cherry St, Los Angeles, CA 90001" +237407,USB-C Charging Cable,1,11.95,08/25/19 21:49,"391 River St, Los Angeles, CA 90001" +237408,LG Dryer,1,600.0,08/22/19 18:48,"556 Jackson St, Dallas, TX 75001" +237409,Lightning Charging Cable,1,14.95,08/15/19 17:32,"703 7th St, Dallas, TX 75001" +237410,Google Phone,1,600,08/19/19 06:35,"565 Johnson St, Portland, OR 97035" +237410,USB-C Charging Cable,1,11.95,08/19/19 06:35,"565 Johnson St, Portland, OR 97035" +237411,Lightning Charging Cable,1,14.95,08/01/19 07:23,"436 Lake St, Austin, TX 73301" +237412,AAA Batteries (4-pack),1,2.99,08/19/19 10:27,"263 River St, Los Angeles, CA 90001" +237413,Apple Airpods Headphones,1,150,08/15/19 20:23,"766 Madison St, Seattle, WA 98101" +237414,ThinkPad Laptop,1,999.99,08/24/19 23:46,"896 Lakeview St, Atlanta, GA 30301" +237415,AA Batteries (4-pack),2,3.84,08/11/19 22:00,"983 Jackson St, Boston, MA 02215" +237416,AAA Batteries (4-pack),2,2.99,08/03/19 21:12,"324 Park St, New York City, NY 10001" +237417,34in Ultrawide Monitor,1,379.99,08/04/19 20:09,"846 Elm St, San Francisco, CA 94016" +237418,Lightning Charging Cable,1,14.95,08/22/19 12:42,"437 Adams St, New York City, NY 10001" +237419,AAA Batteries (4-pack),1,2.99,08/20/19 13:52,"898 Wilson St, Atlanta, GA 30301" +237420,iPhone,1,700,08/01/19 19:18,"610 1st St, Atlanta, GA 30301" +237420,Lightning Charging Cable,1,14.95,08/01/19 19:18,"610 1st St, Atlanta, GA 30301" +237421,AA Batteries (4-pack),1,3.84,08/11/19 21:29,"436 Ridge St, Atlanta, GA 30301" +237422,Flatscreen TV,1,300,08/22/19 22:16,"617 7th St, New York City, NY 10001" +237423,Bose SoundSport Headphones,1,99.99,08/12/19 11:42,"23 Cedar St, San Francisco, CA 94016" +237424,Bose SoundSport Headphones,1,99.99,08/26/19 19:32,"765 Walnut St, New York City, NY 10001" +237425,27in 4K Gaming Monitor,1,389.99,08/02/19 12:20,"469 Elm St, New York City, NY 10001" +237426,Bose SoundSport Headphones,1,99.99,08/30/19 19:47,"881 Jackson St, Boston, MA 02215" +237427,Google Phone,1,600,08/18/19 20:04,"647 Lincoln St, San Francisco, CA 94016" +237428,Macbook Pro Laptop,1,1700,08/22/19 14:27,"98 6th St, Boston, MA 02215" +237429,27in FHD Monitor,1,149.99,08/23/19 10:01,"447 Church St, San Francisco, CA 94016" +237430,LG Washing Machine,1,600.0,08/03/19 13:50,"352 Meadow St, San Francisco, CA 94016" +237431,Lightning Charging Cable,1,14.95,08/28/19 22:24,"280 West St, Atlanta, GA 30301" +237432,AA Batteries (4-pack),1,3.84,08/27/19 12:22,"481 8th St, Portland, OR 97035" +237433,Google Phone,1,600,08/11/19 22:20,"755 Jackson St, Portland, OR 97035" +237434,AA Batteries (4-pack),1,3.84,08/10/19 08:43,"605 Willow St, Seattle, WA 98101" +237435,USB-C Charging Cable,1,11.95,08/31/19 11:05,"732 Lakeview St, San Francisco, CA 94016" +237436,Flatscreen TV,1,300,08/01/19 08:36,"64 Lincoln St, Seattle, WA 98101" +237437,Apple Airpods Headphones,1,150,08/19/19 14:02,"141 Pine St, Los Angeles, CA 90001" +237438,Lightning Charging Cable,1,14.95,08/05/19 14:56,"821 8th St, Boston, MA 02215" +237439,Wired Headphones,1,11.99,08/14/19 19:31,"411 Meadow St, Boston, MA 02215" +237440,Apple Airpods Headphones,1,150,08/07/19 19:59,"984 Lake St, Los Angeles, CA 90001" +237441,AA Batteries (4-pack),1,3.84,08/13/19 12:20,"245 Spruce St, Los Angeles, CA 90001" +237442,Flatscreen TV,1,300,08/05/19 14:14,"849 9th St, San Francisco, CA 94016" +237443,AAA Batteries (4-pack),1,2.99,08/06/19 13:37,"965 Cherry St, Los Angeles, CA 90001" +237444,Apple Airpods Headphones,1,150,08/23/19 18:35,"560 Chestnut St, New York City, NY 10001" +237445,Apple Airpods Headphones,1,150,08/05/19 22:22,"769 Cedar St, Seattle, WA 98101" +237446,Google Phone,1,600,08/14/19 19:49,"906 Main St, San Francisco, CA 94016" +237446,Apple Airpods Headphones,1,150,08/14/19 19:49,"906 Main St, San Francisco, CA 94016" +237447,Wired Headphones,2,11.99,08/21/19 19:31,"617 Madison St, Portland, OR 97035" +237448,Vareebadd Phone,1,400,08/24/19 00:10,"539 5th St, San Francisco, CA 94016" +237449,Wired Headphones,1,11.99,08/14/19 12:22,"148 Wilson St, Seattle, WA 98101" +237450,AA Batteries (4-pack),1,3.84,08/31/19 15:33,"785 Maple St, San Francisco, CA 94016" +237451,Bose SoundSport Headphones,1,99.99,08/14/19 06:58,"819 Cedar St, Atlanta, GA 30301" +237452,AAA Batteries (4-pack),3,2.99,08/12/19 12:21,"440 7th St, Atlanta, GA 30301" +237453,Wired Headphones,1,11.99,08/22/19 11:46,"410 5th St, Boston, MA 02215" +237454,20in Monitor,1,109.99,08/05/19 21:09,"719 Park St, Seattle, WA 98101" +237455,Flatscreen TV,1,300,08/20/19 12:56,"316 Jackson St, Los Angeles, CA 90001" +237456,34in Ultrawide Monitor,1,379.99,08/21/19 17:18,"933 8th St, Seattle, WA 98101" +237457,Bose SoundSport Headphones,1,99.99,08/01/19 17:53,"26 Madison St, Boston, MA 02215" +237458,AAA Batteries (4-pack),2,2.99,08/16/19 10:40,"994 Elm St, Dallas, TX 75001" +237459,AAA Batteries (4-pack),2,2.99,08/18/19 21:15,"8 Wilson St, New York City, NY 10001" +237460,AAA Batteries (4-pack),1,2.99,08/05/19 15:00,"160 South St, San Francisco, CA 94016" +237461,Lightning Charging Cable,1,14.95,08/31/19 11:15,"82 Chestnut St, Boston, MA 02215" +237462,iPhone,1,700,08/31/19 18:39,"35 Johnson St, Los Angeles, CA 90001" +237463,USB-C Charging Cable,1,11.95,08/10/19 15:33,"229 River St, Portland, OR 97035" +237464,Wired Headphones,1,11.99,08/16/19 22:31,"616 Adams St, New York City, NY 10001" +237465,Wired Headphones,1,11.99,08/03/19 11:27,"800 Church St, San Francisco, CA 94016" +237466,Bose SoundSport Headphones,1,99.99,08/14/19 11:46,"907 10th St, Los Angeles, CA 90001" +237467,AA Batteries (4-pack),1,3.84,08/02/19 12:46,"716 Forest St, San Francisco, CA 94016" +237468,AA Batteries (4-pack),2,3.84,08/02/19 17:56,"988 Jefferson St, San Francisco, CA 94016" +237469,Wired Headphones,1,11.99,08/17/19 12:40,"314 9th St, Los Angeles, CA 90001" +237470,27in 4K Gaming Monitor,1,389.99,08/21/19 19:23,"882 Hill St, San Francisco, CA 94016" +237471,AAA Batteries (4-pack),1,2.99,08/10/19 13:07,"6 Madison St, Boston, MA 02215" +237472,27in FHD Monitor,1,149.99,08/04/19 18:42,"312 Maple St, New York City, NY 10001" +237473,USB-C Charging Cable,1,11.95,08/27/19 23:46,"690 Cherry St, San Francisco, CA 94016" +237474,AA Batteries (4-pack),1,3.84,08/02/19 16:04,"768 Main St, Los Angeles, CA 90001" +237475,Bose SoundSport Headphones,1,99.99,08/09/19 16:35,"941 Church St, Los Angeles, CA 90001" +237475,Lightning Charging Cable,1,14.95,08/09/19 16:35,"941 Church St, Los Angeles, CA 90001" +237476,Google Phone,1,600,08/13/19 02:42,"123 9th St, New York City, NY 10001" +237476,Apple Airpods Headphones,1,150,08/13/19 02:42,"123 9th St, New York City, NY 10001" +237477,USB-C Charging Cable,2,11.95,08/30/19 16:32,"526 12th St, Portland, OR 97035" +237478,Bose SoundSport Headphones,1,99.99,08/27/19 08:10,"284 River St, Austin, TX 73301" +237479,Apple Airpods Headphones,1,150,08/28/19 14:53,"143 Johnson St, Los Angeles, CA 90001" +237480,AA Batteries (4-pack),1,3.84,08/12/19 17:47,"472 Lake St, Austin, TX 73301" +237481,AA Batteries (4-pack),1,3.84,08/15/19 18:53,"645 River St, San Francisco, CA 94016" +237482,AAA Batteries (4-pack),1,2.99,08/16/19 14:54,"960 Wilson St, San Francisco, CA 94016" +237483,Bose SoundSport Headphones,1,99.99,08/16/19 18:41,"686 1st St, Boston, MA 02215" +237484,USB-C Charging Cable,1,11.95,08/26/19 20:38,"748 Hill St, Los Angeles, CA 90001" +237485,ThinkPad Laptop,1,999.99,08/04/19 18:13,"87 West St, Austin, TX 73301" +237486,ThinkPad Laptop,1,999.99,08/13/19 23:07,"423 5th St, Austin, TX 73301" +237487,Bose SoundSport Headphones,1,99.99,08/13/19 12:11,"134 5th St, Los Angeles, CA 90001" +237488,AA Batteries (4-pack),1,3.84,08/28/19 20:57,"44 Jefferson St, Dallas, TX 75001" +237489,USB-C Charging Cable,1,11.95,08/09/19 21:44,"150 Cedar St, San Francisco, CA 94016" +237490,Flatscreen TV,1,300,08/14/19 13:41,"555 Washington St, Los Angeles, CA 90001" +237491,Wired Headphones,1,11.99,08/08/19 07:02,"736 11th St, Atlanta, GA 30301" +237492,27in 4K Gaming Monitor,1,389.99,08/05/19 22:22,"631 Adams St, San Francisco, CA 94016" +237493,USB-C Charging Cable,1,11.95,08/11/19 16:24,"922 Lake St, San Francisco, CA 94016" +237494,Wired Headphones,1,11.99,08/18/19 14:07,"384 Sunset St, Austin, TX 73301" +237495,USB-C Charging Cable,1,11.95,08/12/19 17:18,"612 Walnut St, Austin, TX 73301" +237496,Flatscreen TV,1,300,08/19/19 06:33,"893 Sunset St, Boston, MA 02215" +237497,27in FHD Monitor,1,149.99,08/04/19 19:56,"203 11th St, Los Angeles, CA 90001" +237498,LG Dryer,1,600.0,08/15/19 06:39,"343 Jackson St, Seattle, WA 98101" +237499,27in FHD Monitor,1,149.99,08/24/19 21:18,"391 Dogwood St, Los Angeles, CA 90001" +237500,27in FHD Monitor,1,149.99,08/17/19 12:57,"327 Spruce St, Portland, OR 97035" +237501,Lightning Charging Cable,1,14.95,08/18/19 20:00,"442 Park St, New York City, NY 10001" +237502,Bose SoundSport Headphones,1,99.99,08/09/19 14:11,"374 1st St, San Francisco, CA 94016" +237503,Lightning Charging Cable,1,14.95,08/22/19 10:38,"973 5th St, San Francisco, CA 94016" +237504,USB-C Charging Cable,1,11.95,08/21/19 16:51,"745 Pine St, San Francisco, CA 94016" +237505,Bose SoundSport Headphones,2,99.99,08/06/19 17:28,"107 12th St, San Francisco, CA 94016" +237506,AAA Batteries (4-pack),1,2.99,08/18/19 18:27,"317 Cedar St, Boston, MA 02215" +237507,27in 4K Gaming Monitor,1,389.99,08/03/19 10:39,"395 Highland St, Seattle, WA 98101" +237508,Wired Headphones,1,11.99,08/01/19 18:43,"706 Jackson St, New York City, NY 10001" +237509,Bose SoundSport Headphones,1,99.99,08/08/19 16:44,"791 14th St, Atlanta, GA 30301" +237510,Lightning Charging Cable,1,14.95,08/14/19 22:48,"559 Johnson St, San Francisco, CA 94016" +237511,27in FHD Monitor,1,149.99,08/26/19 05:22,"139 6th St, New York City, NY 10001" +237512,USB-C Charging Cable,1,11.95,08/19/19 10:55,"602 Lincoln St, Boston, MA 02215" +237512,iPhone,1,700,08/19/19 10:55,"602 Lincoln St, Boston, MA 02215" +237513,Wired Headphones,1,11.99,08/20/19 14:54,"23 7th St, New York City, NY 10001" +237514,Wired Headphones,1,11.99,08/24/19 19:43,"140 West St, Boston, MA 02215" +237515,Apple Airpods Headphones,1,150,08/04/19 12:24,"121 4th St, Atlanta, GA 30301" +237516,Bose SoundSport Headphones,1,99.99,08/12/19 13:46,"882 6th St, Dallas, TX 75001" +237517,iPhone,1,700,08/11/19 17:07,"23 Lincoln St, Seattle, WA 98101" +237518,34in Ultrawide Monitor,1,379.99,08/30/19 11:31,"169 14th St, New York City, NY 10001" +237519,AA Batteries (4-pack),1,3.84,08/17/19 20:11,"668 Pine St, San Francisco, CA 94016" +237520,AA Batteries (4-pack),1,3.84,08/24/19 07:01,"942 Jefferson St, San Francisco, CA 94016" +237521,27in FHD Monitor,1,149.99,08/01/19 21:31,"571 Sunset St, Atlanta, GA 30301" +237522,Vareebadd Phone,1,400,08/16/19 20:45,"549 4th St, San Francisco, CA 94016" +237522,USB-C Charging Cable,1,11.95,08/16/19 20:45,"549 4th St, San Francisco, CA 94016" +237523,Lightning Charging Cable,1,14.95,08/29/19 18:30,"522 Hickory St, Portland, OR 97035" +237524,AA Batteries (4-pack),1,3.84,08/14/19 14:19,"590 Hickory St, Portland, ME 04101" +237525,Bose SoundSport Headphones,1,99.99,08/06/19 14:09,"815 Cherry St, New York City, NY 10001" +237526,Wired Headphones,1,11.99,08/30/19 02:31,"475 Chestnut St, San Francisco, CA 94016" +237527,Apple Airpods Headphones,1,150,08/12/19 09:53,"446 West St, Atlanta, GA 30301" +237528,Flatscreen TV,1,300,08/24/19 09:21,"173 Willow St, New York City, NY 10001" +237529,USB-C Charging Cable,1,11.95,08/02/19 14:12,"385 Main St, San Francisco, CA 94016" +237530,Bose SoundSport Headphones,1,99.99,08/16/19 08:38,"763 11th St, San Francisco, CA 94016" +237531,AA Batteries (4-pack),3,3.84,08/10/19 10:49,"273 Lincoln St, New York City, NY 10001" +237532,AA Batteries (4-pack),1,3.84,08/02/19 08:57,"80 11th St, New York City, NY 10001" +237533,USB-C Charging Cable,1,11.95,08/03/19 09:42,"770 Dogwood St, Portland, OR 97035" +237534,Vareebadd Phone,1,400,08/26/19 15:22,"674 11th St, Boston, MA 02215" +237535,iPhone,1,700,08/05/19 19:54,"58 10th St, San Francisco, CA 94016" +237536,AAA Batteries (4-pack),1,2.99,08/20/19 12:13,"838 11th St, Boston, MA 02215" +237537,Wired Headphones,1,11.99,08/12/19 21:17,"467 Spruce St, San Francisco, CA 94016" +237538,Lightning Charging Cable,1,14.95,08/26/19 15:57,"160 Meadow St, New York City, NY 10001" +237539,Apple Airpods Headphones,1,150,08/29/19 15:27,"857 Main St, Portland, OR 97035" +237540,AA Batteries (4-pack),1,3.84,08/23/19 17:02,"757 Jackson St, Boston, MA 02215" +237541,Lightning Charging Cable,1,14.95,08/21/19 14:54,"352 Meadow St, Atlanta, GA 30301" +237542,Wired Headphones,1,11.99,08/25/19 09:28,"22 10th St, San Francisco, CA 94016" +237543,AAA Batteries (4-pack),1,2.99,08/04/19 16:05,"636 4th St, Dallas, TX 75001" +237544,27in FHD Monitor,1,149.99,08/09/19 12:20,"720 Lakeview St, San Francisco, CA 94016" +237545,Apple Airpods Headphones,1,150,08/15/19 21:34,"938 2nd St, San Francisco, CA 94016" +237546,AA Batteries (4-pack),2,3.84,08/01/19 19:02,"771 Park St, Los Angeles, CA 90001" +237547,27in FHD Monitor,1,149.99,08/11/19 10:56,"543 5th St, Los Angeles, CA 90001" +237548,Lightning Charging Cable,1,14.95,08/18/19 13:25,"34 Johnson St, San Francisco, CA 94016" +237549,Bose SoundSport Headphones,1,99.99,08/23/19 13:44,"377 13th St, New York City, NY 10001" +237550,AAA Batteries (4-pack),2,2.99,08/06/19 22:25,"531 Cherry St, San Francisco, CA 94016" +237551,27in 4K Gaming Monitor,1,389.99,08/02/19 05:13,"367 Ridge St, San Francisco, CA 94016" +237552,Apple Airpods Headphones,1,150,08/28/19 10:35,"283 Dogwood St, Seattle, WA 98101" +237553,27in FHD Monitor,1,149.99,08/16/19 09:19,"133 Willow St, New York City, NY 10001" +237554,USB-C Charging Cable,1,11.95,08/06/19 06:53,"158 Maple St, Los Angeles, CA 90001" +237555,Flatscreen TV,1,300,08/17/19 11:02,"578 Lakeview St, Seattle, WA 98101" +237556,AA Batteries (4-pack),1,3.84,08/08/19 09:15,"637 9th St, San Francisco, CA 94016" +237557,Wired Headphones,1,11.99,08/06/19 14:11,"487 Hill St, Atlanta, GA 30301" +237558,iPhone,1,700,08/31/19 14:02,"725 Wilson St, Los Angeles, CA 90001" +237559,27in FHD Monitor,1,149.99,08/06/19 16:29,"847 2nd St, Seattle, WA 98101" +237560,27in FHD Monitor,1,149.99,08/21/19 14:27,"411 Wilson St, Portland, OR 97035" +237561,Lightning Charging Cable,1,14.95,08/26/19 15:01,"571 12th St, Atlanta, GA 30301" +237562,Wired Headphones,1,11.99,08/13/19 10:23,"391 Willow St, Portland, OR 97035" +237563,Lightning Charging Cable,1,14.95,08/01/19 19:46,"293 5th St, Atlanta, GA 30301" +237564,Lightning Charging Cable,1,14.95,08/11/19 12:23,"531 Cedar St, Los Angeles, CA 90001" +237565,Apple Airpods Headphones,1,150,08/06/19 14:57,"463 South St, New York City, NY 10001" +237566,USB-C Charging Cable,1,11.95,08/15/19 12:33,"280 Ridge St, Atlanta, GA 30301" +237567,27in 4K Gaming Monitor,1,389.99,08/07/19 09:34,"868 Washington St, Boston, MA 02215" +237568,Flatscreen TV,1,300,08/19/19 17:42,"70 Lakeview St, San Francisco, CA 94016" +237569,ThinkPad Laptop,1,999.99,08/11/19 07:54,"687 1st St, Atlanta, GA 30301" +237570,USB-C Charging Cable,1,11.95,08/06/19 11:51,"626 1st St, Los Angeles, CA 90001" +237571,AA Batteries (4-pack),1,3.84,08/20/19 06:30,"579 South St, New York City, NY 10001" +237572,27in FHD Monitor,1,149.99,08/04/19 18:04,"993 Willow St, Los Angeles, CA 90001" +237573,USB-C Charging Cable,1,11.95,08/22/19 11:36,"127 4th St, San Francisco, CA 94016" +237574,Wired Headphones,1,11.99,08/08/19 23:23,"674 12th St, San Francisco, CA 94016" +237575,AAA Batteries (4-pack),1,2.99,08/24/19 20:12,"143 South St, Los Angeles, CA 90001" +237576,Bose SoundSport Headphones,1,99.99,08/26/19 15:55,"171 West St, Los Angeles, CA 90001" +237577,AAA Batteries (4-pack),1,2.99,08/30/19 17:55,"174 13th St, Los Angeles, CA 90001" +237578,Bose SoundSport Headphones,1,99.99,08/04/19 13:18,"472 10th St, New York City, NY 10001" +237579,USB-C Charging Cable,1,11.95,08/26/19 11:55,"662 2nd St, Los Angeles, CA 90001" +237580,Apple Airpods Headphones,1,150,08/27/19 15:30,"205 Spruce St, San Francisco, CA 94016" +237581,USB-C Charging Cable,1,11.95,08/24/19 13:29,"830 13th St, Seattle, WA 98101" +237582,USB-C Charging Cable,1,11.95,08/14/19 02:06,"24 Lakeview St, Atlanta, GA 30301" +237583,AA Batteries (4-pack),1,3.84,08/13/19 19:31,"455 Jackson St, Austin, TX 73301" +237584,AAA Batteries (4-pack),1,2.99,08/15/19 23:42,"867 Highland St, San Francisco, CA 94016" +237585,iPhone,1,700,08/04/19 21:58,"130 Walnut St, Seattle, WA 98101" +237586,Google Phone,1,600,08/16/19 20:04,"358 Adams St, Austin, TX 73301" +237587,Apple Airpods Headphones,1,150,08/26/19 09:42,"703 Lake St, Dallas, TX 75001" +237588,AA Batteries (4-pack),1,3.84,08/31/19 21:20,"623 Jackson St, San Francisco, CA 94016" +237589,Flatscreen TV,1,300,08/04/19 10:00,"480 12th St, Boston, MA 02215" +237590,AA Batteries (4-pack),1,3.84,08/05/19 22:31,"816 Main St, New York City, NY 10001" +237591,Lightning Charging Cable,1,14.95,08/04/19 11:55,"11 Pine St, San Francisco, CA 94016" +237592,27in 4K Gaming Monitor,1,389.99,08/13/19 04:55,"131 Wilson St, Austin, TX 73301" +237593,27in FHD Monitor,1,149.99,08/17/19 21:18,"243 13th St, New York City, NY 10001" +237594,34in Ultrawide Monitor,1,379.99,08/09/19 08:53,"349 Main St, Portland, OR 97035" +237595,AAA Batteries (4-pack),1,2.99,08/24/19 09:12,"909 Lakeview St, Los Angeles, CA 90001" +237596,27in 4K Gaming Monitor,1,389.99,08/02/19 16:35,"270 Hill St, Seattle, WA 98101" +237597,34in Ultrawide Monitor,1,379.99,08/10/19 10:35,"54 Sunset St, San Francisco, CA 94016" +237598,AAA Batteries (4-pack),2,2.99,08/04/19 08:32,"570 12th St, Los Angeles, CA 90001" +237599,iPhone,1,700,08/09/19 21:50,"75 Church St, San Francisco, CA 94016" +237600,Lightning Charging Cable,1,14.95,08/14/19 10:02,"113 Wilson St, New York City, NY 10001" +237601,AA Batteries (4-pack),1,3.84,08/05/19 17:55,"937 Chestnut St, Dallas, TX 75001" +237602,Google Phone,1,600,08/30/19 20:55,"338 7th St, Los Angeles, CA 90001" +237603,USB-C Charging Cable,1,11.95,08/25/19 07:40,"833 4th St, New York City, NY 10001" +237604,Vareebadd Phone,1,400,08/24/19 09:43,"474 Chestnut St, New York City, NY 10001" +237604,Wired Headphones,1,11.99,08/24/19 09:43,"474 Chestnut St, New York City, NY 10001" +237605,AAA Batteries (4-pack),1,2.99,08/14/19 11:37,"301 Maple St, San Francisco, CA 94016" +237606,Bose SoundSport Headphones,1,99.99,08/13/19 16:03,"291 North St, New York City, NY 10001" +237607,Bose SoundSport Headphones,1,99.99,08/31/19 23:38,"369 Park St, Austin, TX 73301" +237608,USB-C Charging Cable,1,11.95,08/20/19 20:55,"344 Walnut St, Los Angeles, CA 90001" +237609,USB-C Charging Cable,1,11.95,08/31/19 11:45,"787 Jefferson St, Los Angeles, CA 90001" +237610,Wired Headphones,1,11.99,08/16/19 10:47,"121 Hickory St, New York City, NY 10001" +237611,Wired Headphones,2,11.99,08/09/19 20:10,"195 North St, New York City, NY 10001" +237612,AA Batteries (4-pack),1,3.84,08/17/19 11:59,"639 Wilson St, New York City, NY 10001" +237613,Google Phone,1,600,08/16/19 11:30,"30 Hill St, New York City, NY 10001" +237614,AA Batteries (4-pack),1,3.84,08/02/19 20:14,"574 Lake St, Austin, TX 73301" +237615,AA Batteries (4-pack),1,3.84,08/05/19 13:53,"67 Maple St, New York City, NY 10001" +237616,AAA Batteries (4-pack),2,2.99,08/12/19 22:52,"21 Dogwood St, New York City, NY 10001" +237617,Bose SoundSport Headphones,1,99.99,08/22/19 11:47,"544 9th St, Atlanta, GA 30301" +237618,27in FHD Monitor,1,149.99,08/14/19 12:42,"325 Hill St, San Francisco, CA 94016" +237619,Wired Headphones,1,11.99,08/14/19 11:18,"228 Dogwood St, New York City, NY 10001" +237620,AAA Batteries (4-pack),2,2.99,08/16/19 05:11,"175 Jefferson St, Boston, MA 02215" +237621,AA Batteries (4-pack),1,3.84,08/06/19 17:06,"153 2nd St, Los Angeles, CA 90001" +237622,AA Batteries (4-pack),3,3.84,08/31/19 16:15,"464 North St, Boston, MA 02215" +237623,Wired Headphones,2,11.99,08/27/19 13:36,"777 Spruce St, Atlanta, GA 30301" +237624,USB-C Charging Cable,1,11.95,08/04/19 16:59,"966 Cherry St, New York City, NY 10001" +237625,LG Dryer,1,600.0,08/16/19 14:39,"949 Church St, New York City, NY 10001" +237626,AA Batteries (4-pack),1,3.84,08/10/19 23:43,"477 Walnut St, Los Angeles, CA 90001" +237627,Bose SoundSport Headphones,1,99.99,08/25/19 21:06,"214 Walnut St, Portland, OR 97035" +237628,27in 4K Gaming Monitor,1,389.99,08/16/19 18:17,"17 Adams St, Atlanta, GA 30301" +237629,34in Ultrawide Monitor,1,379.99,08/17/19 03:58,"262 Wilson St, New York City, NY 10001" +237630,Apple Airpods Headphones,1,150,08/23/19 23:47,"103 Dogwood St, San Francisco, CA 94016" +237631,Apple Airpods Headphones,1,150,08/21/19 06:43,"895 12th St, New York City, NY 10001" +237632,USB-C Charging Cable,1,11.95,08/30/19 20:22,"166 Church St, San Francisco, CA 94016" +237633,USB-C Charging Cable,1,11.95,08/29/19 01:07,"427 Park St, Atlanta, GA 30301" +237634,USB-C Charging Cable,1,11.95,08/15/19 13:50,"951 Forest St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +237635,27in FHD Monitor,1,149.99,08/22/19 23:06,"231 10th St, San Francisco, CA 94016" +237636,AA Batteries (4-pack),1,3.84,08/20/19 21:49,"848 North St, New York City, NY 10001" +237637,Wired Headphones,1,11.99,08/31/19 13:59,"542 Wilson St, Dallas, TX 75001" +237638,AAA Batteries (4-pack),1,2.99,08/24/19 11:50,"318 Highland St, Atlanta, GA 30301" +237639,AAA Batteries (4-pack),1,2.99,08/29/19 10:50,"213 Hickory St, Austin, TX 73301" +237640,Flatscreen TV,1,300,08/30/19 10:51,"103 Meadow St, Atlanta, GA 30301" +237641,Wired Headphones,1,11.99,08/09/19 02:03,"474 Sunset St, New York City, NY 10001" +237642,AAA Batteries (4-pack),1,2.99,08/11/19 09:48,"416 River St, Portland, OR 97035" +237643,AAA Batteries (4-pack),1,2.99,08/26/19 23:10,"569 Center St, New York City, NY 10001" +237644,AA Batteries (4-pack),1,3.84,08/13/19 16:05,"56 Elm St, Los Angeles, CA 90001" +237645,Apple Airpods Headphones,1,150,08/07/19 12:24,"291 Dogwood St, Boston, MA 02215" +237646,Lightning Charging Cable,1,14.95,08/27/19 00:34,"587 4th St, New York City, NY 10001" +237647,AAA Batteries (4-pack),1,2.99,08/20/19 10:26,"505 Hill St, Los Angeles, CA 90001" +237648,ThinkPad Laptop,1,999.99,08/30/19 09:50,"493 Ridge St, Los Angeles, CA 90001" +237649,USB-C Charging Cable,1,11.95,08/31/19 10:53,"316 Wilson St, Los Angeles, CA 90001" +237650,USB-C Charging Cable,1,11.95,08/04/19 20:52,"242 4th St, Boston, MA 02215" +237651,Lightning Charging Cable,1,14.95,08/28/19 16:33,"258 Sunset St, San Francisco, CA 94016" +237652,27in FHD Monitor,1,149.99,08/19/19 09:35,"393 Jackson St, Atlanta, GA 30301" +237653,AAA Batteries (4-pack),1,2.99,08/24/19 07:31,"296 Johnson St, Atlanta, GA 30301" +237654,AAA Batteries (4-pack),1,2.99,08/31/19 09:46,"539 Dogwood St, New York City, NY 10001" +237655,AA Batteries (4-pack),1,3.84,08/10/19 14:49,"772 Sunset St, Austin, TX 73301" +237656,AA Batteries (4-pack),2,3.84,08/28/19 13:26,"64 South St, San Francisco, CA 94016" +237657,AA Batteries (4-pack),1,3.84,08/25/19 18:25,"543 North St, Boston, MA 02215" +237658,Google Phone,1,600,08/06/19 13:18,"842 Cherry St, San Francisco, CA 94016" +237659,Lightning Charging Cable,1,14.95,08/21/19 14:27,"96 Cherry St, Seattle, WA 98101" +237660,AA Batteries (4-pack),1,3.84,08/16/19 23:16,"230 West St, New York City, NY 10001" +237661,Wired Headphones,1,11.99,08/21/19 17:10,"743 Johnson St, Seattle, WA 98101" +237662,USB-C Charging Cable,1,11.95,08/29/19 19:56,"639 Adams St, San Francisco, CA 94016" +237663,Wired Headphones,1,11.99,08/05/19 15:25,"861 2nd St, Los Angeles, CA 90001" +237663,AA Batteries (4-pack),1,3.84,08/05/19 15:25,"861 2nd St, Los Angeles, CA 90001" +237664,USB-C Charging Cable,1,11.95,08/06/19 19:41,"511 Ridge St, New York City, NY 10001" +237665,AAA Batteries (4-pack),1,2.99,08/10/19 12:20,"87 Adams St, Los Angeles, CA 90001" +237665,27in FHD Monitor,1,149.99,08/10/19 12:20,"87 Adams St, Los Angeles, CA 90001" +237666,Lightning Charging Cable,1,14.95,08/15/19 15:08,"783 7th St, New York City, NY 10001" +237667,20in Monitor,1,109.99,08/16/19 20:26,"733 Dogwood St, Austin, TX 73301" +237668,Apple Airpods Headphones,1,150,08/27/19 06:48,"484 Church St, Portland, ME 04101" +237669,Lightning Charging Cable,1,14.95,08/18/19 13:49,"222 Elm St, Atlanta, GA 30301" +237670,AA Batteries (4-pack),1,3.84,08/11/19 01:24,"587 4th St, Dallas, TX 75001" +237671,34in Ultrawide Monitor,1,379.99,08/05/19 08:27,"333 Sunset St, San Francisco, CA 94016" +237672,Wired Headphones,1,11.99,08/08/19 11:33,"688 Washington St, Portland, OR 97035" +237673,Vareebadd Phone,1,400,08/13/19 00:55,"495 Forest St, Los Angeles, CA 90001" +237674,27in FHD Monitor,1,149.99,09/01/19 01:01,"230 Cherry St, San Francisco, CA 94016" +237675,AAA Batteries (4-pack),1,2.99,08/31/19 08:00,"790 Spruce St, Austin, TX 73301" +237676,Apple Airpods Headphones,2,150,08/28/19 21:39,"114 Ridge St, Boston, MA 02215" +237677,Wired Headphones,1,11.99,08/13/19 17:34,"489 4th St, New York City, NY 10001" +237678,AAA Batteries (4-pack),1,2.99,08/25/19 18:37,"214 Park St, New York City, NY 10001" +237679,Wired Headphones,1,11.99,08/28/19 16:54,"774 Cherry St, Dallas, TX 75001" +237680,Apple Airpods Headphones,1,150,08/02/19 07:36,"577 River St, Boston, MA 02215" +237681,USB-C Charging Cable,1,11.95,08/21/19 10:22,"361 Wilson St, Portland, OR 97035" +237682,20in Monitor,1,109.99,08/20/19 16:43,"59 Jackson St, Seattle, WA 98101" +237683,USB-C Charging Cable,1,11.95,08/21/19 16:25,"694 Chestnut St, New York City, NY 10001" +237684,Wired Headphones,1,11.99,08/06/19 13:57,"902 Walnut St, Atlanta, GA 30301" +237685,USB-C Charging Cable,1,11.95,08/04/19 15:36,"920 7th St, Austin, TX 73301" +237686,AAA Batteries (4-pack),1,2.99,08/29/19 19:35,"271 Sunset St, New York City, NY 10001" +237687,Bose SoundSport Headphones,1,99.99,08/24/19 18:43,"380 Willow St, Los Angeles, CA 90001" +237688,USB-C Charging Cable,1,11.95,08/04/19 17:06,"245 Chestnut St, Boston, MA 02215" +237689,Lightning Charging Cable,1,14.95,08/06/19 11:49,"984 7th St, Atlanta, GA 30301" +237690,Flatscreen TV,1,300,08/05/19 15:33,"499 5th St, Dallas, TX 75001" +237691,AAA Batteries (4-pack),4,2.99,08/30/19 13:06,"580 1st St, Los Angeles, CA 90001" +237692,AA Batteries (4-pack),3,3.84,08/17/19 19:12,"419 Washington St, San Francisco, CA 94016" +237693,Apple Airpods Headphones,1,150,08/25/19 21:20,"661 Main St, San Francisco, CA 94016" +237694,Macbook Pro Laptop,1,1700,08/28/19 19:49,"605 8th St, San Francisco, CA 94016" +237695,Apple Airpods Headphones,1,150,08/28/19 18:34,"77 Ridge St, Los Angeles, CA 90001" +237696,AAA Batteries (4-pack),2,2.99,08/10/19 07:12,"512 Main St, San Francisco, CA 94016" +237697,AA Batteries (4-pack),1,3.84,08/26/19 00:11,"806 Jefferson St, Seattle, WA 98101" +237698,Macbook Pro Laptop,1,1700,08/12/19 22:10,"938 Elm St, Los Angeles, CA 90001" +237699,Flatscreen TV,1,300,08/22/19 13:21,"952 Meadow St, Atlanta, GA 30301" +237700,20in Monitor,1,109.99,08/08/19 13:22,"865 Washington St, Atlanta, GA 30301" +237701,AA Batteries (4-pack),1,3.84,08/17/19 16:09,"495 12th St, New York City, NY 10001" +237702,27in 4K Gaming Monitor,1,389.99,08/31/19 17:25,"844 Highland St, Los Angeles, CA 90001" +237703,iPhone,1,700,08/27/19 16:54,"146 13th St, Atlanta, GA 30301" +237704,Bose SoundSport Headphones,1,99.99,08/10/19 19:10,"853 10th St, Los Angeles, CA 90001" +237705,USB-C Charging Cable,2,11.95,08/02/19 11:05,"949 10th St, San Francisco, CA 94016" +237706,Macbook Pro Laptop,1,1700,08/27/19 20:01,"874 Hill St, New York City, NY 10001" +237707,AA Batteries (4-pack),1,3.84,08/24/19 14:31,"379 Meadow St, Seattle, WA 98101" +237708,27in FHD Monitor,1,149.99,08/03/19 11:39,"314 1st St, Seattle, WA 98101" +237709,Apple Airpods Headphones,1,150,08/18/19 15:13,"991 4th St, Los Angeles, CA 90001" +237710,34in Ultrawide Monitor,1,379.99,08/24/19 10:38,"189 10th St, San Francisco, CA 94016" +237711,Wired Headphones,1,11.99,08/22/19 18:57,"340 9th St, Portland, OR 97035" +237712,USB-C Charging Cable,1,11.95,08/28/19 18:03,"190 4th St, Portland, OR 97035" +237713,Apple Airpods Headphones,1,150,08/25/19 10:20,"551 Elm St, Atlanta, GA 30301" +237714,AAA Batteries (4-pack),3,2.99,08/08/19 14:12,"82 Madison St, Los Angeles, CA 90001" +237715,USB-C Charging Cable,1,11.95,08/12/19 11:22,"995 West St, Dallas, TX 75001" +237716,AAA Batteries (4-pack),2,2.99,08/18/19 17:42,"52 Lincoln St, Los Angeles, CA 90001" +237717,27in 4K Gaming Monitor,1,389.99,08/04/19 21:32,"249 Chestnut St, Los Angeles, CA 90001" +237718,Google Phone,1,600,08/25/19 18:40,"107 Washington St, San Francisco, CA 94016" +237718,USB-C Charging Cable,1,11.95,08/25/19 18:40,"107 Washington St, San Francisco, CA 94016" +237719,Wired Headphones,1,11.99,08/23/19 20:22,"853 Walnut St, Boston, MA 02215" +237720,AAA Batteries (4-pack),1,2.99,08/29/19 20:10,"418 2nd St, Boston, MA 02215" +237721,AA Batteries (4-pack),2,3.84,08/15/19 12:38,"771 Dogwood St, Dallas, TX 75001" +237722,Lightning Charging Cable,1,14.95,08/29/19 11:46,"629 South St, Seattle, WA 98101" +237723,Wired Headphones,1,11.99,08/17/19 12:22,"275 Forest St, Dallas, TX 75001" +237724,ThinkPad Laptop,1,999.99,08/05/19 11:29,"571 Chestnut St, Atlanta, GA 30301" +237725,Bose SoundSport Headphones,1,99.99,08/26/19 21:02,"689 North St, New York City, NY 10001" +237726,AAA Batteries (4-pack),2,2.99,08/17/19 18:34,"219 Spruce St, New York City, NY 10001" +237727,Lightning Charging Cable,1,14.95,08/13/19 23:11,"293 Jackson St, Seattle, WA 98101" +237728,Apple Airpods Headphones,1,150,08/21/19 22:47,"771 Forest St, Boston, MA 02215" +237729,Flatscreen TV,1,300,08/22/19 07:27,"946 11th St, Dallas, TX 75001" +237730,Lightning Charging Cable,1,14.95,08/11/19 12:55,"677 Wilson St, Boston, MA 02215" +237731,Vareebadd Phone,1,400,08/30/19 23:38,"420 Walnut St, Austin, TX 73301" +237732,Lightning Charging Cable,1,14.95,08/02/19 00:28,"272 Cherry St, New York City, NY 10001" +237733,34in Ultrawide Monitor,1,379.99,08/04/19 22:12,"853 Washington St, Seattle, WA 98101" +237734,Vareebadd Phone,1,400,08/14/19 18:11,"544 5th St, San Francisco, CA 94016" +237735,34in Ultrawide Monitor,1,379.99,08/21/19 05:40,"144 Hickory St, New York City, NY 10001" +237736,USB-C Charging Cable,1,11.95,08/05/19 00:19,"301 Sunset St, Dallas, TX 75001" +237737,USB-C Charging Cable,1,11.95,08/30/19 14:50,"119 Hill St, San Francisco, CA 94016" +237738,27in FHD Monitor,1,149.99,08/24/19 16:55,"76 5th St, San Francisco, CA 94016" +237739,Apple Airpods Headphones,1,150,08/17/19 17:48,"372 4th St, New York City, NY 10001" +237740,Apple Airpods Headphones,1,150,08/15/19 19:30,"972 Forest St, Boston, MA 02215" +237741,Apple Airpods Headphones,1,150,08/17/19 18:44,"458 River St, Portland, ME 04101" +237742,Lightning Charging Cable,1,14.95,08/20/19 20:38,"597 Chestnut St, Los Angeles, CA 90001" +,,,,, +237743,ThinkPad Laptop,1,999.99,08/11/19 13:16,"942 Hickory St, Portland, ME 04101" +237743,AA Batteries (4-pack),1,3.84,08/11/19 13:16,"942 Hickory St, Portland, ME 04101" +237744,AAA Batteries (4-pack),2,2.99,08/10/19 13:19,"607 2nd St, Boston, MA 02215" +237745,Lightning Charging Cable,1,14.95,08/20/19 10:43,"892 11th St, Boston, MA 02215" +237745,Flatscreen TV,1,300,08/20/19 10:43,"892 11th St, Boston, MA 02215" +237746,Wired Headphones,1,11.99,08/19/19 14:08,"803 Jackson St, San Francisco, CA 94016" +237747,20in Monitor,1,109.99,08/18/19 15:06,"556 9th St, Atlanta, GA 30301" +237748,Google Phone,1,600,08/29/19 22:22,"5 Dogwood St, Dallas, TX 75001" +237749,Bose SoundSport Headphones,1,99.99,08/14/19 08:51,"593 Walnut St, Los Angeles, CA 90001" +237750,Macbook Pro Laptop,1,1700,08/20/19 09:14,"97 Ridge St, San Francisco, CA 94016" +237751,AA Batteries (4-pack),2,3.84,08/25/19 02:29,"908 Hill St, San Francisco, CA 94016" +237752,Apple Airpods Headphones,1,150,08/02/19 13:42,"414 Cedar St, Dallas, TX 75001" +237753,27in 4K Gaming Monitor,1,389.99,08/08/19 01:14,"59 13th St, Seattle, WA 98101" +237754,Wired Headphones,2,11.99,08/27/19 19:54,"268 Spruce St, San Francisco, CA 94016" +237755,27in 4K Gaming Monitor,1,389.99,08/08/19 14:16,"332 Hickory St, Portland, OR 97035" +237756,Wired Headphones,1,11.99,08/02/19 16:40,"87 Spruce St, Atlanta, GA 30301" +237757,iPhone,1,700,08/24/19 12:26,"320 9th St, New York City, NY 10001" +237758,Lightning Charging Cable,1,14.95,08/27/19 11:44,"843 1st St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +237759,Wired Headphones,1,11.99,08/22/19 00:17,"83 2nd St, San Francisco, CA 94016" +237760,AAA Batteries (4-pack),2,2.99,08/11/19 14:46,"109 Highland St, New York City, NY 10001" +237761,Wired Headphones,1,11.99,08/27/19 11:41,"4 13th St, San Francisco, CA 94016" +237762,27in 4K Gaming Monitor,1,389.99,08/23/19 18:03,"440 Hickory St, Atlanta, GA 30301" +237763,Apple Airpods Headphones,1,150,08/22/19 19:30,"823 North St, Los Angeles, CA 90001" +237764,Lightning Charging Cable,1,14.95,08/30/19 00:34,"657 12th St, San Francisco, CA 94016" +237765,Google Phone,1,600,08/30/19 21:43,"416 14th St, New York City, NY 10001" +237766,Macbook Pro Laptop,1,1700,08/25/19 13:54,"686 Cedar St, Boston, MA 02215" +237767,34in Ultrawide Monitor,1,379.99,08/08/19 12:51,"514 14th St, San Francisco, CA 94016" +237768,AAA Batteries (4-pack),1,2.99,08/29/19 10:35,"517 11th St, Los Angeles, CA 90001" +237769,USB-C Charging Cable,1,11.95,08/11/19 19:47,"651 Church St, New York City, NY 10001" +237770,USB-C Charging Cable,1,11.95,08/29/19 15:33,"139 Elm St, New York City, NY 10001" +237771,Macbook Pro Laptop,1,1700,08/06/19 21:04,"975 North St, Austin, TX 73301" +237772,Wired Headphones,1,11.99,08/09/19 16:53,"4 6th St, Austin, TX 73301" +237773,LG Washing Machine,1,600.0,08/24/19 19:41,"809 Washington St, Los Angeles, CA 90001" +237774,27in FHD Monitor,1,149.99,08/12/19 10:14,"155 Adams St, San Francisco, CA 94016" +237775,iPhone,1,700,08/20/19 17:13,"727 Ridge St, New York City, NY 10001" +237776,USB-C Charging Cable,1,11.95,08/25/19 03:22,"824 Washington St, Dallas, TX 75001" +237777,Wired Headphones,1,11.99,08/04/19 19:28,"831 Lakeview St, Dallas, TX 75001" +237778,AAA Batteries (4-pack),1,2.99,08/15/19 10:18,"465 Spruce St, Los Angeles, CA 90001" +237779,USB-C Charging Cable,1,11.95,08/22/19 14:56,"92 Lake St, Los Angeles, CA 90001" +237780,Google Phone,1,600,08/16/19 09:15,"484 Chestnut St, Dallas, TX 75001" +237781,Apple Airpods Headphones,1,150,08/16/19 16:29,"974 Walnut St, San Francisco, CA 94016" +237782,USB-C Charging Cable,1,11.95,08/10/19 22:38,"544 Lake St, Los Angeles, CA 90001" +237783,Google Phone,1,600,08/28/19 17:52,"631 Jackson St, New York City, NY 10001" +237784,Wired Headphones,1,11.99,08/30/19 12:12,"326 Lincoln St, Seattle, WA 98101" +237785,Lightning Charging Cable,1,14.95,08/31/19 21:06,"588 10th St, Portland, OR 97035" +237786,Wired Headphones,1,11.99,08/12/19 15:00,"917 Elm St, Portland, ME 04101" +237787,Lightning Charging Cable,1,14.95,08/16/19 20:04,"781 Spruce St, San Francisco, CA 94016" +237788,20in Monitor,1,109.99,08/17/19 00:01,"295 South St, San Francisco, CA 94016" +237789,USB-C Charging Cable,2,11.95,08/31/19 18:56,"788 Wilson St, Seattle, WA 98101" +237790,Apple Airpods Headphones,1,150,08/13/19 08:55,"653 Lake St, Boston, MA 02215" +237791,USB-C Charging Cable,1,11.95,08/30/19 13:03,"475 Spruce St, Los Angeles, CA 90001" +237792,27in FHD Monitor,1,149.99,08/04/19 19:53,"680 Sunset St, New York City, NY 10001" +237793,Wired Headphones,1,11.99,08/03/19 14:12,"605 Jefferson St, Portland, OR 97035" +237794,ThinkPad Laptop,1,999.99,08/07/19 11:05,"662 8th St, Los Angeles, CA 90001" +237795,LG Dryer,1,600.0,08/13/19 19:21,"256 Pine St, Portland, ME 04101" +237796,USB-C Charging Cable,2,11.95,08/09/19 23:30,"458 Hickory St, Los Angeles, CA 90001" +237797,Macbook Pro Laptop,1,1700,08/22/19 09:28,"582 Ridge St, Dallas, TX 75001" +237798,27in 4K Gaming Monitor,1,389.99,08/31/19 20:32,"852 Ridge St, Seattle, WA 98101" +237799,USB-C Charging Cable,1,11.95,08/09/19 21:36,"428 Park St, Portland, OR 97035" +237800,Wired Headphones,1,11.99,08/06/19 13:45,"864 9th St, San Francisco, CA 94016" +237801,AA Batteries (4-pack),1,3.84,08/29/19 17:41,"258 West St, San Francisco, CA 94016" +237802,27in 4K Gaming Monitor,1,389.99,08/25/19 23:21,"485 Center St, New York City, NY 10001" +237803,USB-C Charging Cable,1,11.95,08/04/19 21:03,"735 Willow St, Seattle, WA 98101" +237804,AAA Batteries (4-pack),5,2.99,08/26/19 08:42,"903 North St, Seattle, WA 98101" +237805,Bose SoundSport Headphones,1,99.99,08/14/19 19:24,"497 Hickory St, Boston, MA 02215" +237806,34in Ultrawide Monitor,1,379.99,08/11/19 09:08,"267 12th St, Los Angeles, CA 90001" +237807,Lightning Charging Cable,1,14.95,08/05/19 12:42,"867 Church St, Portland, OR 97035" +237808,Apple Airpods Headphones,1,150,08/04/19 13:32,"805 1st St, Dallas, TX 75001" +237809,USB-C Charging Cable,1,11.95,08/30/19 15:09,"211 10th St, San Francisco, CA 94016" +237810,USB-C Charging Cable,2,11.95,08/21/19 19:50,"211 Lake St, New York City, NY 10001" +237811,Google Phone,1,600,08/26/19 11:19,"974 Willow St, Dallas, TX 75001" +237811,USB-C Charging Cable,1,11.95,08/26/19 11:19,"974 Willow St, Dallas, TX 75001" +237812,Lightning Charging Cable,1,14.95,08/02/19 13:41,"965 Elm St, Los Angeles, CA 90001" +237813,Wired Headphones,1,11.99,08/25/19 20:00,"568 West St, Seattle, WA 98101" +237814,27in FHD Monitor,1,149.99,08/08/19 16:31,"121 Pine St, Atlanta, GA 30301" +237815,AAA Batteries (4-pack),2,2.99,08/28/19 12:35,"870 Center St, San Francisco, CA 94016" +237816,Bose SoundSport Headphones,1,99.99,08/05/19 04:01,"344 Church St, San Francisco, CA 94016" +237816,Google Phone,1,600,08/05/19 04:01,"344 Church St, San Francisco, CA 94016" +237817,Bose SoundSport Headphones,1,99.99,08/12/19 17:41,"527 11th St, San Francisco, CA 94016" +237818,AAA Batteries (4-pack),2,2.99,08/30/19 11:46,"621 Lake St, Boston, MA 02215" +237819,USB-C Charging Cable,1,11.95,08/25/19 22:09,"218 8th St, Boston, MA 02215" +237820,ThinkPad Laptop,1,999.99,08/14/19 22:49,"456 14th St, San Francisco, CA 94016" +237821,Wired Headphones,1,11.99,08/21/19 01:27,"142 Highland St, Seattle, WA 98101" +237822,LG Dryer,1,600.0,08/01/19 22:11,"144 Washington St, Atlanta, GA 30301" +237823,USB-C Charging Cable,1,11.95,08/15/19 09:14,"658 Dogwood St, Seattle, WA 98101" +237823,Apple Airpods Headphones,1,150,08/15/19 09:14,"658 Dogwood St, Seattle, WA 98101" +237824,Lightning Charging Cable,1,14.95,08/23/19 11:19,"788 Cedar St, Dallas, TX 75001" +237825,USB-C Charging Cable,1,11.95,08/14/19 03:58,"589 Highland St, Atlanta, GA 30301" +237826,LG Washing Machine,1,600.0,08/02/19 11:05,"574 River St, Seattle, WA 98101" +237827,USB-C Charging Cable,1,11.95,08/26/19 20:15,"675 Meadow St, San Francisco, CA 94016" +237828,Flatscreen TV,1,300,08/16/19 16:13,"758 Lakeview St, Atlanta, GA 30301" +237829,AA Batteries (4-pack),1,3.84,08/17/19 14:46,"724 Center St, New York City, NY 10001" +237830,Macbook Pro Laptop,1,1700,08/31/19 10:04,"652 Spruce St, Los Angeles, CA 90001" +237831,LG Washing Machine,1,600.0,08/11/19 07:54,"74 Hill St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +237832,Lightning Charging Cable,1,14.95,08/04/19 00:36,"977 10th St, Seattle, WA 98101" +237833,Apple Airpods Headphones,1,150,08/09/19 16:34,"527 14th St, San Francisco, CA 94016" +237834,ThinkPad Laptop,1,999.99,08/09/19 21:35,"462 Spruce St, Los Angeles, CA 90001" +237835,AAA Batteries (4-pack),3,2.99,08/14/19 18:19,"489 Elm St, San Francisco, CA 94016" +237836,Apple Airpods Headphones,1,150,08/09/19 23:22,"423 9th St, San Francisco, CA 94016" +237837,AA Batteries (4-pack),1,3.84,08/22/19 11:22,"587 Highland St, Boston, MA 02215" +237838,USB-C Charging Cable,1,11.95,08/09/19 10:23,"752 Madison St, Portland, ME 04101" +237839,34in Ultrawide Monitor,1,379.99,08/18/19 17:14,"880 Washington St, Boston, MA 02215" +237840,USB-C Charging Cable,1,11.95,08/02/19 21:09,"556 Forest St, New York City, NY 10001" +237841,Wired Headphones,1,11.99,08/09/19 18:16,"789 Ridge St, San Francisco, CA 94016" +237842,AAA Batteries (4-pack),1,2.99,08/20/19 19:11,"191 Jefferson St, Los Angeles, CA 90001" +237843,AAA Batteries (4-pack),1,2.99,08/08/19 10:52,"562 Cedar St, New York City, NY 10001" +237844,iPhone,1,700,08/11/19 11:42,"954 13th St, Boston, MA 02215" +237845,Vareebadd Phone,1,400,08/03/19 20:28,"379 Willow St, Boston, MA 02215" +237845,USB-C Charging Cable,2,11.95,08/03/19 20:28,"379 Willow St, Boston, MA 02215" +237845,Wired Headphones,1,11.99,08/03/19 20:28,"379 Willow St, Boston, MA 02215" +237846,Bose SoundSport Headphones,1,99.99,08/28/19 11:50,"406 South St, New York City, NY 10001" +237847,Wired Headphones,1,11.99,08/15/19 15:37,"158 Jackson St, Boston, MA 02215" +237848,Wired Headphones,1,11.99,08/26/19 00:21,"517 Jackson St, Boston, MA 02215" +237849,Flatscreen TV,1,300,08/23/19 16:54,"77 Wilson St, Atlanta, GA 30301" +237850,AAA Batteries (4-pack),1,2.99,08/18/19 10:52,"112 Elm St, Seattle, WA 98101" +237851,Lightning Charging Cable,1,14.95,08/21/19 18:12,"859 11th St, New York City, NY 10001" +237852,27in 4K Gaming Monitor,1,389.99,08/25/19 20:11,"469 Wilson St, Atlanta, GA 30301" +237853,34in Ultrawide Monitor,1,379.99,08/29/19 20:23,"100 7th St, San Francisco, CA 94016" +237854,Bose SoundSport Headphones,1,99.99,08/05/19 07:11,"951 Elm St, San Francisco, CA 94016" +237855,Wired Headphones,1,11.99,08/19/19 22:44,"425 Willow St, Dallas, TX 75001" +237856,AAA Batteries (4-pack),1,2.99,08/17/19 14:57,"950 Highland St, San Francisco, CA 94016" +237857,Apple Airpods Headphones,1,150,08/14/19 13:32,"422 Lincoln St, Portland, ME 04101" +237858,Macbook Pro Laptop,1,1700,08/24/19 11:50,"370 2nd St, Portland, ME 04101" +237859,LG Dryer,1,600.0,08/22/19 15:56,"52 13th St, San Francisco, CA 94016" +237860,Wired Headphones,2,11.99,08/30/19 16:46,"495 12th St, Boston, MA 02215" +237861,AAA Batteries (4-pack),1,2.99,08/30/19 19:12,"169 12th St, San Francisco, CA 94016" +237862,AA Batteries (4-pack),1,3.84,08/18/19 10:37,"563 8th St, Dallas, TX 75001" +237863,Wired Headphones,1,11.99,08/02/19 13:18,"379 Jackson St, Dallas, TX 75001" +237864,USB-C Charging Cable,1,11.95,08/06/19 18:46,"889 1st St, Los Angeles, CA 90001" +237865,Bose SoundSport Headphones,1,99.99,08/06/19 21:12,"44 North St, Boston, MA 02215" +237866,Bose SoundSport Headphones,1,99.99,08/27/19 13:36,"145 6th St, Dallas, TX 75001" +237867,ThinkPad Laptop,1,999.99,08/31/19 10:40,"911 Lake St, Dallas, TX 75001" +237868,AA Batteries (4-pack),1,3.84,08/03/19 20:42,"333 Adams St, San Francisco, CA 94016" +237869,27in 4K Gaming Monitor,1,389.99,08/04/19 14:35,"830 Hill St, Dallas, TX 75001" +237870,Bose SoundSport Headphones,1,99.99,08/21/19 14:43,"814 8th St, Atlanta, GA 30301" +237871,34in Ultrawide Monitor,1,379.99,08/26/19 12:16,"439 Jefferson St, Seattle, WA 98101" +237872,Macbook Pro Laptop,1,1700,08/08/19 07:58,"774 9th St, Seattle, WA 98101" +237872,iPhone,1,700,08/08/19 07:58,"774 9th St, Seattle, WA 98101" +237873,Lightning Charging Cable,1,14.95,08/03/19 06:41,"136 Ridge St, Dallas, TX 75001" +237874,ThinkPad Laptop,1,999.99,08/28/19 03:55,"423 8th St, Austin, TX 73301" +,,,,, +237875,Wired Headphones,1,11.99,08/23/19 16:33,"168 North St, Austin, TX 73301" +237876,Lightning Charging Cable,1,14.95,08/17/19 13:02,"679 Highland St, Boston, MA 02215" +237877,Lightning Charging Cable,1,14.95,08/25/19 21:49,"648 11th St, Los Angeles, CA 90001" +237878,Wired Headphones,1,11.99,08/28/19 16:28,"783 Ridge St, Dallas, TX 75001" +237879,Lightning Charging Cable,1,14.95,08/11/19 20:43,"789 Meadow St, San Francisco, CA 94016" +237880,USB-C Charging Cable,1,11.95,08/19/19 20:48,"738 Pine St, Dallas, TX 75001" +237881,Lightning Charging Cable,1,14.95,08/11/19 20:36,"121 2nd St, Boston, MA 02215" +237882,Bose SoundSport Headphones,1,99.99,08/16/19 19:15,"383 8th St, Los Angeles, CA 90001" +237883,ThinkPad Laptop,1,999.99,08/06/19 20:43,"688 Dogwood St, Seattle, WA 98101" +237884,iPhone,1,700,08/16/19 18:24,"25 Washington St, Austin, TX 73301" +237884,Lightning Charging Cable,1,14.95,08/16/19 18:24,"25 Washington St, Austin, TX 73301" +237885,AAA Batteries (4-pack),1,2.99,08/05/19 15:15,"684 Sunset St, Dallas, TX 75001" +237886,USB-C Charging Cable,1,11.95,08/29/19 12:50,"944 12th St, Atlanta, GA 30301" +237887,Bose SoundSport Headphones,1,99.99,08/28/19 09:48,"473 Chestnut St, Seattle, WA 98101" +237888,Bose SoundSport Headphones,1,99.99,08/01/19 14:07,"204 Meadow St, Boston, MA 02215" +237889,Bose SoundSport Headphones,1,99.99,08/22/19 17:53,"103 Cherry St, Los Angeles, CA 90001" +237889,34in Ultrawide Monitor,1,379.99,08/22/19 17:53,"103 Cherry St, Los Angeles, CA 90001" +237890,Lightning Charging Cable,1,14.95,08/30/19 10:44,"677 Jefferson St, New York City, NY 10001" +237891,Lightning Charging Cable,1,14.95,08/21/19 23:28,"943 4th St, Seattle, WA 98101" +237892,Bose SoundSport Headphones,1,99.99,08/02/19 07:55,"420 Adams St, Dallas, TX 75001" +237893,Lightning Charging Cable,1,14.95,08/28/19 10:34,"664 12th St, Los Angeles, CA 90001" +237894,Google Phone,1,600,08/22/19 19:29,"284 10th St, Boston, MA 02215" +237895,AAA Batteries (4-pack),1,2.99,08/11/19 14:22,"573 Hickory St, Seattle, WA 98101" +237896,27in 4K Gaming Monitor,1,389.99,08/27/19 22:24,"825 Walnut St, Los Angeles, CA 90001" +237897,Lightning Charging Cable,1,14.95,08/07/19 09:53,"555 2nd St, San Francisco, CA 94016" +237898,AA Batteries (4-pack),2,3.84,08/28/19 10:20,"614 9th St, Los Angeles, CA 90001" +237899,AAA Batteries (4-pack),1,2.99,08/25/19 19:20,"16 1st St, Dallas, TX 75001" +237900,iPhone,1,700,08/31/19 17:24,"539 Forest St, Boston, MA 02215" +237900,Lightning Charging Cable,1,14.95,08/31/19 17:24,"539 Forest St, Boston, MA 02215" +237900,Apple Airpods Headphones,1,150,08/31/19 17:24,"539 Forest St, Boston, MA 02215" +237901,iPhone,1,700,08/31/19 15:02,"742 Adams St, Los Angeles, CA 90001" +237902,Wired Headphones,1,11.99,08/07/19 11:09,"420 Dogwood St, New York City, NY 10001" +237903,AAA Batteries (4-pack),1,2.99,08/17/19 09:27,"995 6th St, San Francisco, CA 94016" +237904,AAA Batteries (4-pack),1,2.99,08/24/19 10:18,"70 Lakeview St, Boston, MA 02215" +237905,ThinkPad Laptop,1,999.99,08/06/19 13:22,"281 North St, Dallas, TX 75001" +237906,AAA Batteries (4-pack),1,2.99,08/08/19 00:50,"386 Meadow St, Boston, MA 02215" +237907,AAA Batteries (4-pack),3,2.99,08/05/19 23:32,"14 North St, Boston, MA 02215" +237908,Wired Headphones,1,11.99,08/14/19 10:09,"45 Main St, San Francisco, CA 94016" +237909,USB-C Charging Cable,1,11.95,08/15/19 17:28,"389 Meadow St, New York City, NY 10001" +237910,Apple Airpods Headphones,1,150,08/08/19 12:17,"795 Church St, Los Angeles, CA 90001" +237911,Flatscreen TV,1,300,08/30/19 10:42,"429 Jackson St, Los Angeles, CA 90001" +237912,Wired Headphones,1,11.99,08/22/19 14:24,"383 Maple St, Seattle, WA 98101" +237913,Lightning Charging Cable,1,14.95,08/15/19 08:29,"788 10th St, New York City, NY 10001" +237914,iPhone,1,700,08/30/19 15:47,"671 Walnut St, Los Angeles, CA 90001" +237915,USB-C Charging Cable,1,11.95,08/21/19 11:10,"97 Center St, San Francisco, CA 94016" +237916,Google Phone,1,600,08/07/19 12:12,"994 Main St, San Francisco, CA 94016" +237917,AAA Batteries (4-pack),1,2.99,08/23/19 14:20,"899 Hickory St, Los Angeles, CA 90001" +237918,iPhone,1,700,08/20/19 08:17,"749 Dogwood St, San Francisco, CA 94016" +237918,Lightning Charging Cable,1,14.95,08/20/19 08:17,"749 Dogwood St, San Francisco, CA 94016" +237919,Google Phone,1,600,08/08/19 11:46,"552 Ridge St, Atlanta, GA 30301" +237920,Wired Headphones,1,11.99,08/31/19 22:11,"567 Chestnut St, Atlanta, GA 30301" +237921,iPhone,1,700,08/21/19 12:26,"219 12th St, San Francisco, CA 94016" +237922,AA Batteries (4-pack),1,3.84,08/09/19 17:53,"587 6th St, Dallas, TX 75001" +237923,Google Phone,1,600,08/29/19 16:52,"93 Cherry St, Boston, MA 02215" +237923,Bose SoundSport Headphones,1,99.99,08/29/19 16:52,"93 Cherry St, Boston, MA 02215" +237924,Apple Airpods Headphones,1,150,08/09/19 00:30,"357 Wilson St, Atlanta, GA 30301" +237925,Wired Headphones,1,11.99,08/11/19 17:06,"403 9th St, Boston, MA 02215" +237926,27in FHD Monitor,1,149.99,08/03/19 17:18,"222 South St, Los Angeles, CA 90001" +237927,LG Dryer,1,600.0,08/17/19 19:48,"544 9th St, Portland, OR 97035" +237928,AA Batteries (4-pack),1,3.84,08/01/19 14:29,"390 10th St, San Francisco, CA 94016" +237929,Google Phone,1,600,08/02/19 19:17,"377 Meadow St, San Francisco, CA 94016" +237930,AAA Batteries (4-pack),2,2.99,08/20/19 08:39,"937 12th St, Boston, MA 02215" +237931,AA Batteries (4-pack),1,3.84,08/08/19 00:55,"424 Wilson St, New York City, NY 10001" +237932,AA Batteries (4-pack),3,3.84,08/25/19 14:01,"886 Meadow St, Portland, OR 97035" +237933,AAA Batteries (4-pack),1,2.99,08/29/19 12:05,"444 Highland St, New York City, NY 10001" +237934,AAA Batteries (4-pack),2,2.99,08/13/19 17:04,"566 Lake St, Los Angeles, CA 90001" +237935,Lightning Charging Cable,1,14.95,08/28/19 11:27,"595 5th St, Los Angeles, CA 90001" +237936,Vareebadd Phone,1,400,08/21/19 15:50,"577 Dogwood St, Los Angeles, CA 90001" +237937,Wired Headphones,1,11.99,08/21/19 10:23,"491 Wilson St, Boston, MA 02215" +237938,27in FHD Monitor,1,149.99,08/29/19 11:08,"583 Hill St, Atlanta, GA 30301" +237939,iPhone,1,700,08/16/19 18:28,"959 Johnson St, Los Angeles, CA 90001" +237940,AA Batteries (4-pack),3,3.84,08/10/19 21:33,"335 2nd St, San Francisco, CA 94016" +237941,ThinkPad Laptop,1,999.99,08/14/19 10:32,"188 Park St, Atlanta, GA 30301" +237942,AAA Batteries (4-pack),1,2.99,08/29/19 21:16,"338 4th St, Seattle, WA 98101" +237943,Lightning Charging Cable,1,14.95,08/28/19 12:10,"549 Lake St, San Francisco, CA 94016" +237944,Vareebadd Phone,1,400,08/01/19 18:59,"714 7th St, Dallas, TX 75001" +237945,Apple Airpods Headphones,1,150,08/31/19 11:08,"111 Jackson St, Dallas, TX 75001" +237946,AAA Batteries (4-pack),1,2.99,08/29/19 16:53,"701 Jefferson St, Boston, MA 02215" +237947,Google Phone,1,600,08/19/19 14:31,"989 Cedar St, Dallas, TX 75001" +237948,34in Ultrawide Monitor,1,379.99,08/29/19 19:37,"987 West St, Los Angeles, CA 90001" +237949,Bose SoundSport Headphones,1,99.99,08/13/19 09:50,"364 Park St, San Francisco, CA 94016" +237950,AAA Batteries (4-pack),2,2.99,08/17/19 16:10,"479 14th St, Atlanta, GA 30301" +237951,AAA Batteries (4-pack),2,2.99,08/28/19 08:39,"385 Washington St, New York City, NY 10001" +237952,27in 4K Gaming Monitor,1,389.99,08/27/19 09:15,"682 Sunset St, Boston, MA 02215" +237953,AA Batteries (4-pack),1,3.84,08/31/19 11:00,"905 Spruce St, Boston, MA 02215" +237954,Lightning Charging Cable,1,14.95,08/03/19 13:32,"227 2nd St, Dallas, TX 75001" +237955,Bose SoundSport Headphones,1,99.99,08/23/19 13:08,"506 Center St, San Francisco, CA 94016" +237956,Flatscreen TV,1,300,08/05/19 17:10,"861 Adams St, New York City, NY 10001" +237957,34in Ultrawide Monitor,1,379.99,08/08/19 14:47,"44 Willow St, Seattle, WA 98101" +237958,Wired Headphones,1,11.99,08/25/19 12:35,"480 West St, Seattle, WA 98101" +237959,Flatscreen TV,1,300,08/03/19 09:46,"741 Main St, Los Angeles, CA 90001" +237960,20in Monitor,1,109.99,08/17/19 12:44,"275 Park St, New York City, NY 10001" +237961,20in Monitor,1,109.99,08/14/19 14:22,"475 2nd St, San Francisco, CA 94016" +237962,Bose SoundSport Headphones,1,99.99,08/16/19 12:07,"365 Washington St, Seattle, WA 98101" +237963,Wired Headphones,1,11.99,08/26/19 19:03,"198 Main St, Portland, ME 04101" +237964,USB-C Charging Cable,1,11.95,08/09/19 14:38,"859 8th St, Portland, OR 97035" +237965,iPhone,1,700,08/18/19 16:46,"693 13th St, New York City, NY 10001" +237966,34in Ultrawide Monitor,1,379.99,08/27/19 21:10,"20 Highland St, New York City, NY 10001" +237967,iPhone,1,700,08/05/19 16:21,"98 13th St, New York City, NY 10001" +237968,Lightning Charging Cable,1,14.95,08/05/19 20:38,"249 7th St, Los Angeles, CA 90001" +237969,Flatscreen TV,1,300,08/22/19 10:25,"648 Sunset St, New York City, NY 10001" +237970,Wired Headphones,1,11.99,08/19/19 19:03,"122 Jackson St, Boston, MA 02215" +237971,ThinkPad Laptop,1,999.99,08/11/19 10:45,"795 Chestnut St, New York City, NY 10001" +237972,USB-C Charging Cable,1,11.95,08/03/19 08:53,"758 Cedar St, Austin, TX 73301" +237973,27in 4K Gaming Monitor,1,389.99,08/24/19 10:32,"283 Jackson St, New York City, NY 10001" +237974,LG Washing Machine,1,600.0,08/21/19 23:14,"120 Walnut St, New York City, NY 10001" +237975,USB-C Charging Cable,1,11.95,08/17/19 01:26,"813 Madison St, New York City, NY 10001" +237976,27in 4K Gaming Monitor,1,389.99,08/30/19 21:16,"141 South St, San Francisco, CA 94016" +237977,34in Ultrawide Monitor,1,379.99,08/01/19 18:43,"738 Highland St, San Francisco, CA 94016" +237978,Lightning Charging Cable,1,14.95,08/30/19 14:45,"53 Walnut St, Boston, MA 02215" +237979,Apple Airpods Headphones,1,150,08/09/19 09:42,"891 Adams St, Portland, ME 04101" +237980,AA Batteries (4-pack),4,3.84,08/24/19 09:05,"171 5th St, Austin, TX 73301" +237981,AAA Batteries (4-pack),4,2.99,08/11/19 23:00,"963 4th St, Seattle, WA 98101" +237981,Macbook Pro Laptop,1,1700,08/11/19 23:00,"963 4th St, Seattle, WA 98101" +237982,Lightning Charging Cable,1,14.95,08/26/19 21:04,"631 Cherry St, Portland, ME 04101" +237983,AA Batteries (4-pack),1,3.84,08/11/19 17:34,"374 Highland St, San Francisco, CA 94016" +237984,Apple Airpods Headphones,1,150,08/04/19 10:56,"207 Willow St, Austin, TX 73301" +237985,AA Batteries (4-pack),1,3.84,08/23/19 20:50,"86 Spruce St, San Francisco, CA 94016" +237986,Apple Airpods Headphones,1,150,08/11/19 12:28,"691 14th St, San Francisco, CA 94016" +237987,Bose SoundSport Headphones,1,99.99,08/28/19 15:34,"275 Highland St, Dallas, TX 75001" +237988,USB-C Charging Cable,1,11.95,08/31/19 12:06,"129 7th St, Seattle, WA 98101" +237989,34in Ultrawide Monitor,1,379.99,08/09/19 09:39,"873 Willow St, Dallas, TX 75001" +237990,AAA Batteries (4-pack),1,2.99,08/26/19 14:06,"634 Hickory St, New York City, NY 10001" +237991,ThinkPad Laptop,1,999.99,08/09/19 07:42,"912 Center St, New York City, NY 10001" +237992,Lightning Charging Cable,1,14.95,08/06/19 15:11,"38 Cherry St, Los Angeles, CA 90001" +237993,Google Phone,1,600,08/17/19 19:08,"575 Cedar St, San Francisco, CA 94016" +237993,Bose SoundSport Headphones,1,99.99,08/17/19 19:08,"575 Cedar St, San Francisco, CA 94016" +237994,Flatscreen TV,1,300,08/16/19 19:46,"645 River St, New York City, NY 10001" +237995,Wired Headphones,1,11.99,08/29/19 21:15,"677 Spruce St, Portland, OR 97035" +237996,34in Ultrawide Monitor,1,379.99,08/14/19 18:19,"240 Washington St, Portland, OR 97035" +237997,iPhone,1,700,08/12/19 18:04,"474 Highland St, Dallas, TX 75001" +237998,Lightning Charging Cable,1,14.95,08/04/19 20:56,"896 Main St, Austin, TX 73301" +237999,27in 4K Gaming Monitor,1,389.99,08/30/19 17:31,"985 14th St, Boston, MA 02215" +238000,Wired Headphones,1,11.99,08/08/19 21:15,"153 Chestnut St, New York City, NY 10001" +238001,Lightning Charging Cable,1,14.95,08/19/19 10:39,"638 8th St, Austin, TX 73301" +238002,Wired Headphones,1,11.99,08/06/19 09:36,"854 8th St, San Francisco, CA 94016" +238003,AA Batteries (4-pack),1,3.84,08/08/19 09:12,"411 8th St, Dallas, TX 75001" +238004,USB-C Charging Cable,1,11.95,08/31/19 11:48,"454 Chestnut St, Boston, MA 02215" +238005,Flatscreen TV,1,300,08/20/19 19:42,"125 Cherry St, New York City, NY 10001" +238006,Lightning Charging Cable,1,14.95,08/18/19 13:21,"160 9th St, Portland, OR 97035" +238007,Bose SoundSport Headphones,1,99.99,08/25/19 10:57,"622 River St, Seattle, WA 98101" +238008,Lightning Charging Cable,1,14.95,08/02/19 19:43,"777 Jefferson St, Atlanta, GA 30301" +238008,Wired Headphones,1,11.99,08/02/19 19:43,"777 Jefferson St, Atlanta, GA 30301" +238009,AA Batteries (4-pack),2,3.84,08/10/19 06:22,"987 Lakeview St, Boston, MA 02215" +238010,27in FHD Monitor,1,149.99,08/10/19 15:33,"27 South St, San Francisco, CA 94016" +238011,Google Phone,1,600,08/17/19 19:51,"89 River St, New York City, NY 10001" +238012,Lightning Charging Cable,2,14.95,08/09/19 20:42,"984 Center St, San Francisco, CA 94016" +238013,Wired Headphones,2,11.99,08/08/19 12:08,"694 8th St, Los Angeles, CA 90001" +238014,Apple Airpods Headphones,1,150,08/05/19 14:22,"420 Chestnut St, Los Angeles, CA 90001" +238015,USB-C Charging Cable,1,11.95,08/26/19 18:10,"582 West St, San Francisco, CA 94016" +238016,Wired Headphones,3,11.99,08/17/19 14:26,"908 5th St, San Francisco, CA 94016" +238017,Lightning Charging Cable,1,14.95,08/07/19 09:00,"40 River St, New York City, NY 10001" +238018,USB-C Charging Cable,1,11.95,08/17/19 12:32,"662 Church St, Los Angeles, CA 90001" +238019,AAA Batteries (4-pack),1,2.99,08/05/19 19:59,"66 Highland St, Austin, TX 73301" +238020,AA Batteries (4-pack),1,3.84,08/12/19 21:07,"854 Washington St, Seattle, WA 98101" +238021,Lightning Charging Cable,1,14.95,08/02/19 19:27,"55 5th St, Los Angeles, CA 90001" +238022,Bose SoundSport Headphones,1,99.99,08/24/19 02:17,"316 Meadow St, San Francisco, CA 94016" +238023,USB-C Charging Cable,1,11.95,08/27/19 10:06,"315 Hickory St, Atlanta, GA 30301" +238024,34in Ultrawide Monitor,1,379.99,08/12/19 19:47,"54 Sunset St, Los Angeles, CA 90001" +238025,34in Ultrawide Monitor,1,379.99,08/23/19 10:25,"217 14th St, Atlanta, GA 30301" +238026,USB-C Charging Cable,1,11.95,08/26/19 21:46,"625 Church St, Seattle, WA 98101" +238027,Apple Airpods Headphones,1,150,08/12/19 20:44,"438 7th St, San Francisco, CA 94016" +238028,Macbook Pro Laptop,1,1700,08/08/19 21:55,"277 Highland St, Los Angeles, CA 90001" +238029,iPhone,1,700,08/16/19 19:16,"830 9th St, Dallas, TX 75001" +238029,Lightning Charging Cable,1,14.95,08/16/19 19:16,"830 9th St, Dallas, TX 75001" +238030,Wired Headphones,1,11.99,08/06/19 06:38,"910 4th St, Seattle, WA 98101" +238031,Google Phone,1,600,08/10/19 22:01,"291 2nd St, Portland, OR 97035" +238032,Macbook Pro Laptop,1,1700,08/07/19 18:44,"537 Spruce St, Austin, TX 73301" +238033,AA Batteries (4-pack),3,3.84,08/06/19 15:54,"963 Walnut St, Portland, OR 97035" +238034,AAA Batteries (4-pack),1,2.99,08/28/19 11:42,"914 Lake St, San Francisco, CA 94016" +238035,Bose SoundSport Headphones,1,99.99,08/27/19 19:15,"299 Forest St, Los Angeles, CA 90001" +238036,AAA Batteries (4-pack),3,2.99,08/20/19 11:04,"782 Lake St, San Francisco, CA 94016" +238037,Wired Headphones,1,11.99,08/29/19 18:47,"270 Sunset St, Los Angeles, CA 90001" +238038,AA Batteries (4-pack),1,3.84,08/24/19 12:39,"646 Jackson St, New York City, NY 10001" +238039,Google Phone,1,600,08/05/19 17:18,"206 West St, Seattle, WA 98101" +238040,Bose SoundSport Headphones,1,99.99,08/02/19 22:06,"869 14th St, Seattle, WA 98101" +238041,AA Batteries (4-pack),1,3.84,08/05/19 20:00,"217 8th St, Atlanta, GA 30301" +238042,Lightning Charging Cable,1,14.95,08/29/19 10:40,"491 River St, Atlanta, GA 30301" +238043,Wired Headphones,1,11.99,08/29/19 10:32,"762 Jackson St, Boston, MA 02215" +238044,Wired Headphones,1,11.99,08/23/19 16:08,"549 Wilson St, Seattle, WA 98101" +238045,Lightning Charging Cable,1,14.95,08/29/19 18:01,"635 Pine St, San Francisco, CA 94016" +238046,34in Ultrawide Monitor,1,379.99,08/31/19 12:05,"287 Forest St, Atlanta, GA 30301" +238047,Bose SoundSport Headphones,1,99.99,08/24/19 07:55,"523 Elm St, New York City, NY 10001" +238048,Apple Airpods Headphones,1,150,08/13/19 14:37,"668 South St, New York City, NY 10001" +238049,iPhone,1,700,08/21/19 10:54,"178 River St, Portland, OR 97035" +238050,Bose SoundSport Headphones,1,99.99,08/22/19 00:37,"516 Adams St, Seattle, WA 98101" +238051,USB-C Charging Cable,1,11.95,08/01/19 23:19,"269 10th St, San Francisco, CA 94016" +238052,Wired Headphones,2,11.99,08/29/19 22:24,"485 11th St, Boston, MA 02215" +238053,AA Batteries (4-pack),1,3.84,08/27/19 08:52,"153 West St, Los Angeles, CA 90001" +238054,34in Ultrawide Monitor,1,379.99,08/31/19 18:25,"342 Meadow St, Portland, OR 97035" +238055,Lightning Charging Cable,1,14.95,08/09/19 07:24,"25 Adams St, New York City, NY 10001" +238056,34in Ultrawide Monitor,1,379.99,08/31/19 20:58,"377 1st St, Atlanta, GA 30301" +238057,Flatscreen TV,1,300,08/18/19 17:43,"160 Madison St, Portland, OR 97035" +238058,Wired Headphones,1,11.99,08/21/19 06:57,"712 Pine St, Austin, TX 73301" +238059,USB-C Charging Cable,1,11.95,08/27/19 12:03,"385 Cherry St, San Francisco, CA 94016" +238060,Apple Airpods Headphones,1,150,08/26/19 23:14,"129 Hill St, San Francisco, CA 94016" +238061,Lightning Charging Cable,1,14.95,08/24/19 22:22,"685 13th St, Atlanta, GA 30301" +238062,Bose SoundSport Headphones,1,99.99,08/08/19 14:02,"804 South St, Austin, TX 73301" +238063,AAA Batteries (4-pack),5,2.99,08/20/19 14:50,"876 Washington St, Los Angeles, CA 90001" +238064,27in 4K Gaming Monitor,1,389.99,08/29/19 14:09,"784 Elm St, Boston, MA 02215" +238065,AAA Batteries (4-pack),1,2.99,08/08/19 21:36,"305 14th St, Portland, OR 97035" +238066,Lightning Charging Cable,1,14.95,08/25/19 21:31,"348 8th St, Portland, ME 04101" +238067,Wired Headphones,1,11.99,08/31/19 07:47,"621 Hill St, Atlanta, GA 30301" +238067,AA Batteries (4-pack),2,3.84,08/31/19 07:47,"621 Hill St, Atlanta, GA 30301" +238068,27in FHD Monitor,1,149.99,08/26/19 20:01,"940 Cedar St, Boston, MA 02215" +238069,Bose SoundSport Headphones,1,99.99,08/15/19 19:16,"794 Walnut St, New York City, NY 10001" +238070,Lightning Charging Cable,1,14.95,08/21/19 21:15,"705 Main St, Austin, TX 73301" +238071,Apple Airpods Headphones,1,150,08/10/19 12:46,"119 6th St, Los Angeles, CA 90001" +238072,Flatscreen TV,1,300,08/29/19 22:57,"963 Wilson St, Dallas, TX 75001" +238073,Apple Airpods Headphones,1,150,08/08/19 20:59,"512 Johnson St, Los Angeles, CA 90001" +238074,ThinkPad Laptop,1,999.99,08/03/19 10:42,"105 Center St, San Francisco, CA 94016" +238075,Wired Headphones,1,11.99,08/25/19 13:59,"750 Park St, Los Angeles, CA 90001" +238076,Bose SoundSport Headphones,1,99.99,08/20/19 20:04,"601 North St, San Francisco, CA 94016" +238077,AAA Batteries (4-pack),1,2.99,08/24/19 13:53,"829 Highland St, Los Angeles, CA 90001" +238077,AAA Batteries (4-pack),5,2.99,08/24/19 13:53,"829 Highland St, Los Angeles, CA 90001" +238078,AAA Batteries (4-pack),1,2.99,08/19/19 22:01,"504 Wilson St, Dallas, TX 75001" +238079,iPhone,1,700,08/17/19 13:15,"201 Park St, Los Angeles, CA 90001" +238080,USB-C Charging Cable,2,11.95,08/17/19 23:53,"712 Hill St, Boston, MA 02215" +238081,27in FHD Monitor,1,149.99,08/18/19 19:04,"441 Chestnut St, Portland, ME 04101" +238082,AAA Batteries (4-pack),1,2.99,08/04/19 14:35,"34 Jackson St, San Francisco, CA 94016" +238083,AA Batteries (4-pack),1,3.84,08/15/19 10:39,"266 Hickory St, San Francisco, CA 94016" +238084,20in Monitor,1,109.99,08/07/19 18:02,"267 Jefferson St, Atlanta, GA 30301" +238085,Apple Airpods Headphones,1,150,08/13/19 13:25,"151 Sunset St, San Francisco, CA 94016" +238086,Lightning Charging Cable,1,14.95,08/30/19 08:09,"824 North St, New York City, NY 10001" +238087,Wired Headphones,1,11.99,08/21/19 20:53,"457 10th St, Los Angeles, CA 90001" +238088,Apple Airpods Headphones,1,150,08/12/19 18:45,"709 Pine St, New York City, NY 10001" +238089,27in FHD Monitor,1,149.99,08/12/19 20:59,"311 6th St, Seattle, WA 98101" +238090,Wired Headphones,1,11.99,08/07/19 10:49,"63 Chestnut St, Boston, MA 02215" +238091,USB-C Charging Cable,1,11.95,08/20/19 18:47,"817 Cherry St, Dallas, TX 75001" +238092,Apple Airpods Headphones,1,150,08/03/19 12:18,"655 10th St, Atlanta, GA 30301" +238093,USB-C Charging Cable,1,11.95,08/21/19 17:23,"496 6th St, San Francisco, CA 94016" +238094,Bose SoundSport Headphones,1,99.99,08/16/19 12:35,"240 Lake St, Boston, MA 02215" +238095,27in 4K Gaming Monitor,1,389.99,08/10/19 08:57,"985 West St, Seattle, WA 98101" +238096,AA Batteries (4-pack),3,3.84,08/02/19 09:56,"503 Cherry St, Atlanta, GA 30301" +238096,Wired Headphones,1,11.99,08/02/19 09:56,"503 Cherry St, Atlanta, GA 30301" +238097,USB-C Charging Cable,1,11.95,08/18/19 07:50,"199 Elm St, Atlanta, GA 30301" +238098,AAA Batteries (4-pack),1,2.99,08/26/19 19:17,"580 12th St, Austin, TX 73301" +238099,Wired Headphones,1,11.99,08/09/19 17:24,"529 Ridge St, Seattle, WA 98101" +238100,USB-C Charging Cable,1,11.95,08/11/19 17:28,"72 Washington St, Seattle, WA 98101" +238101,Wired Headphones,1,11.99,08/29/19 12:30,"984 8th St, New York City, NY 10001" +238102,Google Phone,1,600,08/06/19 12:13,"147 7th St, New York City, NY 10001" +238103,USB-C Charging Cable,1,11.95,08/31/19 16:30,"859 11th St, Austin, TX 73301" +238104,USB-C Charging Cable,1,11.95,08/08/19 19:31,"900 Park St, Austin, TX 73301" +238105,Macbook Pro Laptop,1,1700,08/03/19 09:36,"598 Spruce St, San Francisco, CA 94016" +238106,20in Monitor,1,109.99,08/20/19 10:54,"143 Chestnut St, New York City, NY 10001" +238107,34in Ultrawide Monitor,1,379.99,08/01/19 10:16,"914 Cherry St, New York City, NY 10001" +238108,Google Phone,1,600,08/01/19 13:22,"977 Ridge St, Portland, OR 97035" +238109,20in Monitor,1,109.99,08/21/19 06:31,"629 River St, Dallas, TX 75001" +238110,Wired Headphones,2,11.99,08/24/19 21:06,"366 Dogwood St, Dallas, TX 75001" +238111,Apple Airpods Headphones,1,150,08/08/19 14:52,"834 6th St, Atlanta, GA 30301" +238112,34in Ultrawide Monitor,1,379.99,08/16/19 15:46,"670 5th St, Dallas, TX 75001" +238113,Bose SoundSport Headphones,1,99.99,08/29/19 19:40,"543 River St, San Francisco, CA 94016" +238114,Lightning Charging Cable,1,14.95,08/31/19 21:12,"609 Cherry St, Atlanta, GA 30301" +238114,34in Ultrawide Monitor,1,379.99,08/31/19 21:12,"609 Cherry St, Atlanta, GA 30301" +238115,AAA Batteries (4-pack),2,2.99,08/17/19 15:50,"291 8th St, Atlanta, GA 30301" +238116,Apple Airpods Headphones,1,150,08/18/19 15:40,"273 Lakeview St, Los Angeles, CA 90001" +238117,Apple Airpods Headphones,1,150,08/31/19 16:17,"41 Cherry St, Austin, TX 73301" +238118,Apple Airpods Headphones,1,150,08/05/19 21:40,"481 Willow St, Austin, TX 73301" +238119,Wired Headphones,1,11.99,08/21/19 11:43,"417 8th St, Los Angeles, CA 90001" +238120,iPhone,1,700,08/06/19 11:55,"328 Maple St, Los Angeles, CA 90001" +238121,AA Batteries (4-pack),1,3.84,08/01/19 15:54,"558 Sunset St, Atlanta, GA 30301" +238122,Flatscreen TV,1,300,08/22/19 11:53,"401 Hill St, Atlanta, GA 30301" +238123,Google Phone,1,600,08/01/19 17:21,"592 Forest St, Atlanta, GA 30301" +238124,Wired Headphones,2,11.99,08/13/19 17:54,"366 5th St, Austin, TX 73301" +238125,Wired Headphones,1,11.99,08/23/19 12:17,"401 Highland St, San Francisco, CA 94016" +238126,Flatscreen TV,1,300,08/10/19 18:47,"54 Ridge St, Seattle, WA 98101" +238127,AAA Batteries (4-pack),2,2.99,08/02/19 11:54,"973 Church St, Dallas, TX 75001" +238128,AAA Batteries (4-pack),1,2.99,08/28/19 12:24,"292 7th St, Seattle, WA 98101" +238129,Lightning Charging Cable,1,14.95,08/17/19 09:24,"631 Adams St, Austin, TX 73301" +238130,Google Phone,1,600,08/26/19 19:09,"221 River St, San Francisco, CA 94016" +238130,USB-C Charging Cable,1,11.95,08/26/19 19:09,"221 River St, San Francisco, CA 94016" +238131,AAA Batteries (4-pack),1,2.99,08/09/19 18:38,"385 Forest St, Dallas, TX 75001" +238132,AA Batteries (4-pack),1,3.84,08/19/19 14:33,"166 7th St, Seattle, WA 98101" +238133,Apple Airpods Headphones,1,150,08/30/19 15:35,"863 Hickory St, Dallas, TX 75001" +238134,USB-C Charging Cable,1,11.95,08/01/19 20:21,"935 Hickory St, Dallas, TX 75001" +238135,27in FHD Monitor,1,149.99,08/12/19 20:26,"537 Center St, Atlanta, GA 30301" +238136,iPhone,1,700,08/19/19 09:19,"608 Spruce St, Seattle, WA 98101" +238137,AA Batteries (4-pack),2,3.84,08/12/19 10:05,"419 Spruce St, Atlanta, GA 30301" +238138,Wired Headphones,1,11.99,08/07/19 06:14,"961 Hickory St, Los Angeles, CA 90001" +238139,Bose SoundSport Headphones,1,99.99,08/13/19 19:11,"117 Hickory St, Boston, MA 02215" +238140,Apple Airpods Headphones,1,150,08/06/19 19:53,"737 10th St, San Francisco, CA 94016" +238141,AA Batteries (4-pack),1,3.84,08/02/19 11:36,"125 9th St, Dallas, TX 75001" +238142,Bose SoundSport Headphones,1,99.99,08/10/19 22:51,"925 Sunset St, Atlanta, GA 30301" +238143,Lightning Charging Cable,1,14.95,08/14/19 13:20,"74 14th St, Seattle, WA 98101" +238144,iPhone,1,700,08/22/19 13:26,"375 Spruce St, Atlanta, GA 30301" +238144,Lightning Charging Cable,1,14.95,08/22/19 13:26,"375 Spruce St, Atlanta, GA 30301" +238145,iPhone,1,700,08/18/19 09:16,"68 Chestnut St, Austin, TX 73301" +238146,Apple Airpods Headphones,1,150,08/23/19 05:30,"745 Johnson St, San Francisco, CA 94016" +238147,Google Phone,1,600,08/14/19 13:29,"632 Church St, New York City, NY 10001" +238148,Lightning Charging Cable,1,14.95,08/02/19 09:26,"692 Jefferson St, San Francisco, CA 94016" +238149,AA Batteries (4-pack),1,3.84,08/01/19 13:45,"23 Hickory St, Atlanta, GA 30301" +238150,Apple Airpods Headphones,1,150,08/29/19 18:58,"826 West St, Dallas, TX 75001" +238151,Vareebadd Phone,1,400,08/27/19 15:48,"547 6th St, Boston, MA 02215" +238152,Apple Airpods Headphones,1,150,08/24/19 14:47,"254 River St, San Francisco, CA 94016" +238153,AA Batteries (4-pack),1,3.84,08/14/19 16:23,"711 River St, Atlanta, GA 30301" +238154,AAA Batteries (4-pack),1,2.99,08/26/19 22:54,"488 1st St, San Francisco, CA 94016" +238155,AAA Batteries (4-pack),1,2.99,08/13/19 12:04,"674 Cherry St, San Francisco, CA 94016" +238156,Lightning Charging Cable,1,14.95,08/07/19 13:22,"192 2nd St, Portland, OR 97035" +238157,AA Batteries (4-pack),2,3.84,08/30/19 10:26,"435 7th St, Austin, TX 73301" +238158,AA Batteries (4-pack),2,3.84,08/03/19 12:55,"808 Elm St, San Francisco, CA 94016" +238159,Lightning Charging Cable,1,14.95,08/10/19 21:13,"464 Meadow St, San Francisco, CA 94016" +238160,Apple Airpods Headphones,1,150,08/23/19 06:44,"220 Church St, Portland, OR 97035" +238161,Lightning Charging Cable,1,14.95,08/02/19 20:36,"259 Lake St, Seattle, WA 98101" +238162,Wired Headphones,1,11.99,08/04/19 14:29,"341 North St, Seattle, WA 98101" +238163,USB-C Charging Cable,1,11.95,08/03/19 10:49,"910 1st St, Portland, OR 97035" +238164,Wired Headphones,2,11.99,08/11/19 11:14,"633 Hickory St, Austin, TX 73301" +238165,AAA Batteries (4-pack),1,2.99,08/27/19 19:58,"86 13th St, Boston, MA 02215" +238166,AAA Batteries (4-pack),1,2.99,08/16/19 14:13,"37 9th St, San Francisco, CA 94016" +238167,Bose SoundSport Headphones,1,99.99,08/15/19 17:25,"691 Main St, Portland, OR 97035" +238168,Apple Airpods Headphones,1,150,08/01/19 13:04,"618 Hill St, Dallas, TX 75001" +238169,27in FHD Monitor,1,149.99,08/26/19 15:44,"616 Church St, New York City, NY 10001" +238170,Flatscreen TV,1,300,08/21/19 21:46,"411 Meadow St, Austin, TX 73301" +238171,USB-C Charging Cable,1,11.95,08/13/19 20:33,"133 South St, Seattle, WA 98101" +238172,iPhone,1,700,08/13/19 16:49,"207 8th St, Los Angeles, CA 90001" +238173,27in FHD Monitor,1,149.99,08/11/19 13:31,"253 Ridge St, New York City, NY 10001" +238174,Apple Airpods Headphones,1,150,08/27/19 20:53,"102 Sunset St, Austin, TX 73301" +238175,AAA Batteries (4-pack),1,2.99,08/13/19 23:05,"356 Cedar St, Seattle, WA 98101" +238176,Wired Headphones,1,11.99,08/29/19 13:13,"705 11th St, San Francisco, CA 94016" +238177,AA Batteries (4-pack),1,3.84,08/18/19 20:19,"25 Cedar St, San Francisco, CA 94016" +238178,AAA Batteries (4-pack),1,2.99,08/28/19 10:43,"576 Park St, Boston, MA 02215" +238179,USB-C Charging Cable,1,11.95,08/23/19 00:27,"348 Lincoln St, San Francisco, CA 94016" +238180,AAA Batteries (4-pack),2,2.99,08/27/19 08:18,"130 10th St, San Francisco, CA 94016" +238181,AA Batteries (4-pack),1,3.84,08/21/19 11:53,"709 12th St, Los Angeles, CA 90001" +238182,Lightning Charging Cable,1,14.95,08/06/19 23:34,"608 Cedar St, Dallas, TX 75001" +238183,AAA Batteries (4-pack),1,2.99,08/05/19 10:56,"939 Highland St, Seattle, WA 98101" +238184,Vareebadd Phone,1,400,08/15/19 12:05,"432 Walnut St, Dallas, TX 75001" +238185,34in Ultrawide Monitor,1,379.99,08/04/19 18:21,"61 Elm St, San Francisco, CA 94016" +238186,Lightning Charging Cable,1,14.95,08/26/19 09:11,"758 Willow St, Portland, OR 97035" +238187,Wired Headphones,1,11.99,08/20/19 19:35,"603 Lake St, Portland, OR 97035" +238188,Apple Airpods Headphones,1,150,08/23/19 07:22,"147 Pine St, San Francisco, CA 94016" +238189,27in 4K Gaming Monitor,1,389.99,08/25/19 15:09,"554 8th St, Atlanta, GA 30301" +238190,27in FHD Monitor,1,149.99,08/07/19 09:52,"189 Cherry St, New York City, NY 10001" +238191,USB-C Charging Cable,1,11.95,08/21/19 09:48,"640 Pine St, Atlanta, GA 30301" +238192,Lightning Charging Cable,1,14.95,08/17/19 08:15,"621 Hickory St, Los Angeles, CA 90001" +238193,Wired Headphones,1,11.99,08/16/19 14:13,"163 5th St, Atlanta, GA 30301" +238194,Wired Headphones,1,11.99,08/06/19 10:07,"527 Cedar St, Boston, MA 02215" +238195,Bose SoundSport Headphones,1,99.99,08/23/19 20:40,"422 Johnson St, San Francisco, CA 94016" +238196,Lightning Charging Cable,1,14.95,08/02/19 12:30,"553 Park St, Los Angeles, CA 90001" +238197,27in FHD Monitor,1,149.99,08/13/19 18:57,"125 Main St, New York City, NY 10001" +238198,Wired Headphones,1,11.99,08/11/19 19:10,"66 Cherry St, New York City, NY 10001" +238199,Lightning Charging Cable,1,14.95,08/25/19 08:43,"789 9th St, Boston, MA 02215" +238200,Apple Airpods Headphones,1,150,08/24/19 13:34,"913 Meadow St, Portland, OR 97035" +238201,Lightning Charging Cable,1,14.95,08/22/19 09:04,"87 Johnson St, Atlanta, GA 30301" +238202,34in Ultrawide Monitor,1,379.99,08/27/19 18:00,"239 Spruce St, Dallas, TX 75001" +238203,USB-C Charging Cable,1,11.95,08/16/19 12:14,"516 Elm St, Los Angeles, CA 90001" +238204,27in FHD Monitor,1,149.99,08/05/19 23:07,"88 Madison St, New York City, NY 10001" +238205,AAA Batteries (4-pack),3,2.99,08/26/19 16:15,"148 Ridge St, San Francisco, CA 94016" +238206,Apple Airpods Headphones,1,150,08/24/19 23:34,"265 Maple St, Atlanta, GA 30301" +238207,Wired Headphones,1,11.99,08/09/19 21:58,"345 8th St, Austin, TX 73301" +238208,Wired Headphones,1,11.99,08/05/19 21:32,"750 Lakeview St, Portland, OR 97035" +238209,AAA Batteries (4-pack),1,2.99,08/18/19 11:44,"390 9th St, Dallas, TX 75001" +238210,27in 4K Gaming Monitor,1,389.99,08/25/19 20:28,"251 Adams St, Portland, OR 97035" +238211,AA Batteries (4-pack),1,3.84,08/19/19 11:28,"684 5th St, New York City, NY 10001" +238212,Wired Headphones,1,11.99,08/15/19 22:10,"28 Spruce St, Dallas, TX 75001" +238213,Apple Airpods Headphones,1,150,08/27/19 18:01,"187 Maple St, Boston, MA 02215" +238214,Lightning Charging Cable,1,14.95,08/09/19 21:52,"702 13th St, San Francisco, CA 94016" +238215,27in FHD Monitor,1,149.99,08/20/19 20:38,"156 13th St, Los Angeles, CA 90001" +238216,USB-C Charging Cable,2,11.95,08/17/19 01:20,"984 11th St, New York City, NY 10001" +238217,AAA Batteries (4-pack),1,2.99,08/15/19 23:39,"269 Main St, Dallas, TX 75001" +238218,AAA Batteries (4-pack),2,2.99,08/24/19 09:16,"434 6th St, San Francisco, CA 94016" +238219,AA Batteries (4-pack),1,3.84,08/10/19 20:18,"491 Cherry St, San Francisco, CA 94016" +238220,ThinkPad Laptop,1,999.99,08/23/19 19:10,"323 2nd St, Seattle, WA 98101" +238221,Flatscreen TV,1,300,08/23/19 19:25,"222 North St, Seattle, WA 98101" +238222,Apple Airpods Headphones,1,150,08/12/19 18:03,"702 Washington St, San Francisco, CA 94016" +238223,Macbook Pro Laptop,1,1700,08/30/19 12:07,"1 Walnut St, New York City, NY 10001" +238224,34in Ultrawide Monitor,1,379.99,08/11/19 15:31,"757 River St, San Francisco, CA 94016" +238225,Apple Airpods Headphones,1,150,08/29/19 14:55,"623 Forest St, Boston, MA 02215" +238226,Bose SoundSport Headphones,1,99.99,08/05/19 21:59,"754 Wilson St, Los Angeles, CA 90001" +238227,Macbook Pro Laptop,1,1700,08/28/19 10:55,"163 Johnson St, Dallas, TX 75001" +238228,AA Batteries (4-pack),2,3.84,08/26/19 12:41,"669 Main St, Los Angeles, CA 90001" +238229,Apple Airpods Headphones,1,150,08/04/19 11:41,"614 6th St, New York City, NY 10001" +238230,27in FHD Monitor,1,149.99,08/12/19 15:51,"436 Elm St, San Francisco, CA 94016" +238231,Wired Headphones,1,11.99,08/21/19 07:35,"885 6th St, Boston, MA 02215" +238232,Apple Airpods Headphones,1,150,08/30/19 12:23,"856 9th St, San Francisco, CA 94016" +238233,27in FHD Monitor,1,149.99,08/02/19 13:24,"131 Lake St, Seattle, WA 98101" +238234,USB-C Charging Cable,1,11.95,08/21/19 07:48,"320 Cherry St, Seattle, WA 98101" +238235,Google Phone,1,600,08/31/19 14:31,"681 Johnson St, Los Angeles, CA 90001" +238235,USB-C Charging Cable,1,11.95,08/31/19 14:31,"681 Johnson St, Los Angeles, CA 90001" +238236,34in Ultrawide Monitor,1,379.99,08/10/19 14:40,"55 Madison St, Los Angeles, CA 90001" +238237,USB-C Charging Cable,3,11.95,08/10/19 20:42,"382 13th St, Los Angeles, CA 90001" +238238,AAA Batteries (4-pack),2,2.99,08/03/19 21:17,"213 Chestnut St, Los Angeles, CA 90001" +238239,USB-C Charging Cable,1,11.95,08/15/19 20:25,"89 North St, Boston, MA 02215" +238240,Wired Headphones,1,11.99,08/19/19 02:22,"996 14th St, San Francisco, CA 94016" +238241,Lightning Charging Cable,1,14.95,08/03/19 21:46,"441 Hickory St, Seattle, WA 98101" +238242,USB-C Charging Cable,1,11.95,08/07/19 13:46,"63 11th St, Portland, OR 97035" +238243,Macbook Pro Laptop,1,1700,08/14/19 17:17,"358 6th St, Dallas, TX 75001" +238244,Apple Airpods Headphones,1,150,08/27/19 07:49,"437 River St, San Francisco, CA 94016" +238245,34in Ultrawide Monitor,1,379.99,08/06/19 15:18,"454 Hickory St, Austin, TX 73301" +238246,Lightning Charging Cable,1,14.95,08/11/19 20:25,"717 Cherry St, Los Angeles, CA 90001" +238247,AAA Batteries (4-pack),1,2.99,08/25/19 22:21,"294 Lake St, Los Angeles, CA 90001" +238248,USB-C Charging Cable,1,11.95,08/16/19 20:11,"440 Madison St, Los Angeles, CA 90001" +238249,USB-C Charging Cable,1,11.95,08/27/19 17:34,"635 West St, Seattle, WA 98101" +238250,AA Batteries (4-pack),2,3.84,08/18/19 00:30,"842 10th St, Dallas, TX 75001" +238251,Wired Headphones,1,11.99,08/20/19 10:37,"132 Cherry St, Boston, MA 02215" +238251,Lightning Charging Cable,1,14.95,08/20/19 10:37,"132 Cherry St, Boston, MA 02215" +238252,Bose SoundSport Headphones,1,99.99,08/28/19 18:38,"875 Cherry St, Los Angeles, CA 90001" +238253,USB-C Charging Cable,1,11.95,08/28/19 15:15,"12 Sunset St, San Francisco, CA 94016" +238254,AAA Batteries (4-pack),2,2.99,08/03/19 23:30,"773 4th St, Boston, MA 02215" +238255,Apple Airpods Headphones,1,150,08/29/19 10:04,"659 Johnson St, San Francisco, CA 94016" +238256,Wired Headphones,1,11.99,08/25/19 14:07,"893 Lincoln St, Portland, ME 04101" +238257,Lightning Charging Cable,1,14.95,08/27/19 11:30,"104 Jefferson St, New York City, NY 10001" +238258,iPhone,1,700,08/27/19 11:36,"544 Chestnut St, Dallas, TX 75001" +238259,Apple Airpods Headphones,1,150,08/13/19 20:19,"873 Forest St, Los Angeles, CA 90001" +238260,Apple Airpods Headphones,1,150,08/23/19 18:02,"213 Hickory St, Boston, MA 02215" +238261,Bose SoundSport Headphones,1,99.99,08/25/19 13:04,"822 Center St, San Francisco, CA 94016" +238262,27in FHD Monitor,1,149.99,08/24/19 12:14,"242 Forest St, Los Angeles, CA 90001" +238263,Macbook Pro Laptop,1,1700,08/09/19 15:46,"132 Cedar St, New York City, NY 10001" +238264,AA Batteries (4-pack),1,3.84,08/28/19 06:35,"878 Madison St, Los Angeles, CA 90001" +238265,Wired Headphones,1,11.99,08/21/19 11:33,"233 River St, San Francisco, CA 94016" +238266,Apple Airpods Headphones,1,150,08/30/19 12:09,"541 Lincoln St, Portland, ME 04101" +238267,27in FHD Monitor,1,149.99,08/18/19 17:23,"365 Park St, Los Angeles, CA 90001" +238268,27in 4K Gaming Monitor,1,389.99,08/11/19 11:14,"623 2nd St, Atlanta, GA 30301" +238269,Macbook Pro Laptop,1,1700,08/12/19 20:54,"130 Maple St, San Francisco, CA 94016" +238270,AAA Batteries (4-pack),2,2.99,08/29/19 14:39,"431 North St, Dallas, TX 75001" +238271,Apple Airpods Headphones,1,150,08/24/19 21:49,"453 7th St, Seattle, WA 98101" +238272,Wired Headphones,1,11.99,08/07/19 01:03,"288 Pine St, Portland, OR 97035" +238273,Lightning Charging Cable,1,14.95,08/28/19 19:31,"979 Washington St, San Francisco, CA 94016" +238274,USB-C Charging Cable,1,11.95,08/01/19 06:32,"535 Chestnut St, Atlanta, GA 30301" +238275,AAA Batteries (4-pack),1,2.99,08/21/19 22:57,"66 4th St, San Francisco, CA 94016" +238276,20in Monitor,1,109.99,08/08/19 16:07,"405 11th St, Los Angeles, CA 90001" +238277,Apple Airpods Headphones,1,150,08/04/19 22:20,"52 Lincoln St, San Francisco, CA 94016" +238278,27in 4K Gaming Monitor,1,389.99,08/29/19 13:19,"470 9th St, San Francisco, CA 94016" +238279,USB-C Charging Cable,1,11.95,08/17/19 18:57,"694 Walnut St, San Francisco, CA 94016" +238280,Wired Headphones,1,11.99,08/03/19 16:19,"51 Park St, New York City, NY 10001" +238281,Bose SoundSport Headphones,1,99.99,08/05/19 17:41,"810 West St, Atlanta, GA 30301" +238282,Flatscreen TV,1,300,08/29/19 19:21,"231 Chestnut St, New York City, NY 10001" +238283,Apple Airpods Headphones,1,150,08/15/19 13:04,"535 13th St, Seattle, WA 98101" +238284,Macbook Pro Laptop,1,1700,08/18/19 06:53,"568 Meadow St, Boston, MA 02215" +238285,Bose SoundSport Headphones,1,99.99,08/12/19 10:50,"471 Walnut St, Seattle, WA 98101" +238286,Macbook Pro Laptop,1,1700,08/30/19 13:14,"723 9th St, Seattle, WA 98101" +238287,Apple Airpods Headphones,1,150,08/12/19 17:01,"51 South St, San Francisco, CA 94016" +238288,AA Batteries (4-pack),1,3.84,08/09/19 17:22,"110 9th St, Los Angeles, CA 90001" +238289,Lightning Charging Cable,1,14.95,08/23/19 12:39,"670 Main St, Austin, TX 73301" +238290,Apple Airpods Headphones,1,150,08/02/19 17:28,"910 Highland St, Los Angeles, CA 90001" +238291,Apple Airpods Headphones,1,150,08/16/19 23:54,"40 Meadow St, Boston, MA 02215" +238291,Wired Headphones,1,11.99,08/16/19 23:54,"40 Meadow St, Boston, MA 02215" +238292,Lightning Charging Cable,1,14.95,08/07/19 20:24,"863 Walnut St, Boston, MA 02215" +238293,AAA Batteries (4-pack),4,2.99,08/04/19 20:02,"734 Lincoln St, Austin, TX 73301" +238294,iPhone,1,700,08/27/19 11:59,"789 11th St, Boston, MA 02215" +238294,AAA Batteries (4-pack),2,2.99,08/27/19 11:59,"789 11th St, Boston, MA 02215" +238295,Macbook Pro Laptop,1,1700,08/02/19 18:27,"171 Willow St, Dallas, TX 75001" +238296,27in 4K Gaming Monitor,1,389.99,08/03/19 15:55,"24 Walnut St, San Francisco, CA 94016" +238297,Wired Headphones,2,11.99,08/05/19 15:49,"125 River St, Los Angeles, CA 90001" +238298,Lightning Charging Cable,1,14.95,08/19/19 15:34,"703 Cedar St, Boston, MA 02215" +238299,Apple Airpods Headphones,1,150,08/27/19 09:05,"702 Lincoln St, Los Angeles, CA 90001" +238300,Lightning Charging Cable,1,14.95,08/11/19 19:47,"966 Johnson St, San Francisco, CA 94016" +238301,AAA Batteries (4-pack),1,2.99,08/29/19 07:57,"770 Highland St, New York City, NY 10001" +238302,Wired Headphones,1,11.99,08/25/19 12:47,"127 Elm St, Los Angeles, CA 90001" +238303,AAA Batteries (4-pack),1,2.99,08/13/19 13:05,"793 Hickory St, Austin, TX 73301" +238304,AA Batteries (4-pack),1,3.84,08/24/19 02:28,"320 Cedar St, Seattle, WA 98101" +238305,USB-C Charging Cable,1,11.95,08/18/19 13:42,"431 Lake St, San Francisco, CA 94016" +238306,Lightning Charging Cable,1,14.95,08/22/19 22:08,"324 13th St, Austin, TX 73301" +238307,ThinkPad Laptop,1,999.99,08/23/19 22:09,"400 Lake St, Boston, MA 02215" +238308,34in Ultrawide Monitor,1,379.99,08/15/19 11:43,"482 South St, Seattle, WA 98101" +238309,27in FHD Monitor,1,149.99,08/03/19 12:17,"4 Dogwood St, San Francisco, CA 94016" +238310,Lightning Charging Cable,1,14.95,08/23/19 20:34,"841 Wilson St, Los Angeles, CA 90001" +238311,AA Batteries (4-pack),1,3.84,08/25/19 18:35,"388 13th St, Los Angeles, CA 90001" +238312,AA Batteries (4-pack),1,3.84,08/06/19 17:28,"170 Meadow St, San Francisco, CA 94016" +238313,AAA Batteries (4-pack),1,2.99,08/31/19 00:19,"138 11th St, Austin, TX 73301" +238314,LG Washing Machine,1,600.0,08/21/19 20:52,"732 Walnut St, Dallas, TX 75001" +238315,Wired Headphones,1,11.99,08/29/19 18:57,"239 Willow St, Seattle, WA 98101" +238316,AA Batteries (4-pack),2,3.84,08/29/19 15:00,"391 Elm St, Dallas, TX 75001" +238317,27in FHD Monitor,1,149.99,08/06/19 08:52,"161 Park St, New York City, NY 10001" +238317,Bose SoundSport Headphones,1,99.99,08/06/19 08:52,"161 Park St, New York City, NY 10001" +238318,Bose SoundSport Headphones,1,99.99,08/23/19 18:52,"97 West St, Seattle, WA 98101" +238319,27in 4K Gaming Monitor,1,389.99,08/27/19 03:48,"191 Lincoln St, Portland, OR 97035" +238320,Lightning Charging Cable,1,14.95,08/16/19 18:32,"141 9th St, Atlanta, GA 30301" +238321,LG Washing Machine,1,600.0,08/08/19 13:28,"301 12th St, Seattle, WA 98101" +238322,27in 4K Gaming Monitor,1,389.99,08/30/19 20:36,"351 6th St, Seattle, WA 98101" +238323,Flatscreen TV,1,300,08/04/19 16:38,"574 Church St, Portland, OR 97035" +238324,AAA Batteries (4-pack),1,2.99,08/12/19 13:44,"587 Willow St, Austin, TX 73301" +238325,USB-C Charging Cable,2,11.95,08/22/19 12:52,"19 Pine St, Boston, MA 02215" +238326,Vareebadd Phone,1,400,08/09/19 17:52,"376 Madison St, Portland, ME 04101" +238326,USB-C Charging Cable,1,11.95,08/09/19 17:52,"376 Madison St, Portland, ME 04101" +238327,Wired Headphones,1,11.99,08/14/19 05:37,"385 Center St, Dallas, TX 75001" +238328,Lightning Charging Cable,1,14.95,08/17/19 21:30,"655 Ridge St, Portland, ME 04101" +238329,27in 4K Gaming Monitor,1,389.99,08/26/19 06:04,"348 North St, Los Angeles, CA 90001" +238330,Wired Headphones,1,11.99,08/06/19 23:17,"297 12th St, Boston, MA 02215" +238331,USB-C Charging Cable,1,11.95,08/14/19 20:37,"136 North St, Portland, ME 04101" +238332,Apple Airpods Headphones,1,150,08/10/19 19:33,"292 Cedar St, New York City, NY 10001" +238333,Lightning Charging Cable,1,14.95,08/13/19 19:55,"35 Center St, Los Angeles, CA 90001" +238334,USB-C Charging Cable,1,11.95,08/25/19 18:59,"819 Johnson St, New York City, NY 10001" +238335,AAA Batteries (4-pack),1,2.99,08/26/19 15:45,"106 10th St, Dallas, TX 75001" +238336,AAA Batteries (4-pack),1,2.99,08/14/19 05:13,"632 Meadow St, Los Angeles, CA 90001" +238337,ThinkPad Laptop,1,999.99,08/18/19 08:49,"159 Chestnut St, Los Angeles, CA 90001" +238338,Wired Headphones,1,11.99,08/25/19 18:00,"529 13th St, San Francisco, CA 94016" +238339,iPhone,1,700,08/09/19 11:56,"952 2nd St, New York City, NY 10001" +238340,Apple Airpods Headphones,1,150,08/04/19 08:27,"512 Church St, San Francisco, CA 94016" +238341,iPhone,1,700,08/20/19 14:38,"593 Jefferson St, Boston, MA 02215" +238342,Apple Airpods Headphones,1,150,08/19/19 17:32,"619 Jefferson St, New York City, NY 10001" +238343,Apple Airpods Headphones,1,150,08/05/19 06:28,"412 Adams St, Atlanta, GA 30301" +238344,Apple Airpods Headphones,1,150,08/14/19 12:35,"743 7th St, San Francisco, CA 94016" +238345,Wired Headphones,1,11.99,08/13/19 19:24,"757 12th St, Dallas, TX 75001" +238346,Macbook Pro Laptop,1,1700,08/17/19 12:37,"760 Meadow St, Dallas, TX 75001" +238347,AAA Batteries (4-pack),1,2.99,08/09/19 05:38,"838 Lakeview St, Seattle, WA 98101" +238348,AA Batteries (4-pack),1,3.84,08/21/19 15:37,"68 Highland St, Los Angeles, CA 90001" +238349,Lightning Charging Cable,1,14.95,08/22/19 16:54,"156 11th St, Los Angeles, CA 90001" +238350,AAA Batteries (4-pack),1,2.99,08/23/19 18:09,"563 Cherry St, Portland, OR 97035" +238351,Apple Airpods Headphones,1,150,08/01/19 23:15,"345 Johnson St, Los Angeles, CA 90001" +238352,USB-C Charging Cable,1,11.95,08/08/19 11:15,"298 Johnson St, San Francisco, CA 94016" +238353,AA Batteries (4-pack),2,3.84,08/03/19 19:30,"345 Center St, Boston, MA 02215" +238354,Bose SoundSport Headphones,1,99.99,08/04/19 17:00,"313 Jefferson St, San Francisco, CA 94016" +238355,ThinkPad Laptop,1,999.99,08/18/19 19:40,"99 Cedar St, Seattle, WA 98101" +238356,AAA Batteries (4-pack),2,2.99,08/21/19 11:50,"215 Hickory St, San Francisco, CA 94016" +238357,iPhone,1,700,08/30/19 22:03,"216 Willow St, Portland, OR 97035" +238358,27in 4K Gaming Monitor,1,389.99,08/26/19 21:50,"291 4th St, San Francisco, CA 94016" +238359,20in Monitor,1,109.99,08/12/19 17:07,"754 Park St, New York City, NY 10001" +238360,Wired Headphones,1,11.99,08/24/19 19:17,"586 Highland St, San Francisco, CA 94016" +238361,AA Batteries (4-pack),1,3.84,08/15/19 13:35,"509 13th St, San Francisco, CA 94016" +238362,iPhone,1,700,08/01/19 08:18,"79 11th St, San Francisco, CA 94016" +238362,Lightning Charging Cable,1,14.95,08/01/19 08:18,"79 11th St, San Francisco, CA 94016" +238363,iPhone,1,700,08/04/19 10:50,"262 Pine St, San Francisco, CA 94016" +238364,AA Batteries (4-pack),3,3.84,08/13/19 13:48,"619 Forest St, San Francisco, CA 94016" +238365,27in FHD Monitor,1,149.99,08/11/19 20:23,"262 Spruce St, Los Angeles, CA 90001" +238366,AA Batteries (4-pack),1,3.84,08/30/19 07:46,"6 5th St, Austin, TX 73301" +238367,AA Batteries (4-pack),2,3.84,08/28/19 21:34,"526 1st St, Portland, OR 97035" +238368,20in Monitor,1,109.99,08/22/19 18:49,"837 Forest St, Los Angeles, CA 90001" +238369,USB-C Charging Cable,1,11.95,08/13/19 19:01,"914 Adams St, Seattle, WA 98101" +238370,USB-C Charging Cable,1,11.95,08/08/19 12:32,"571 Dogwood St, San Francisco, CA 94016" +238371,AA Batteries (4-pack),3,3.84,08/29/19 18:58,"389 Lakeview St, Los Angeles, CA 90001" +238372,Lightning Charging Cable,1,14.95,08/15/19 18:12,"991 Spruce St, Atlanta, GA 30301" +238372,AA Batteries (4-pack),1,3.84,08/15/19 18:12,"991 Spruce St, Atlanta, GA 30301" +238373,Macbook Pro Laptop,1,1700,08/28/19 17:44,"937 Willow St, Dallas, TX 75001" +238374,Lightning Charging Cable,2,14.95,08/07/19 11:18,"760 Highland St, Los Angeles, CA 90001" +238375,27in 4K Gaming Monitor,1,389.99,08/16/19 20:46,"597 Highland St, San Francisco, CA 94016" +238376,27in 4K Gaming Monitor,1,389.99,08/06/19 12:19,"341 Adams St, New York City, NY 10001" +238377,Flatscreen TV,1,300,08/24/19 09:17,"930 8th St, San Francisco, CA 94016" +238378,Lightning Charging Cable,1,14.95,08/18/19 11:01,"799 Chestnut St, San Francisco, CA 94016" +238379,Flatscreen TV,1,300,08/12/19 13:24,"341 Jefferson St, Atlanta, GA 30301" +238380,Lightning Charging Cable,1,14.95,08/31/19 05:38,"713 Wilson St, Boston, MA 02215" +238380,Lightning Charging Cable,1,14.95,08/31/19 05:38,"713 Wilson St, Boston, MA 02215" +238381,Lightning Charging Cable,1,14.95,08/21/19 14:48,"118 Johnson St, Dallas, TX 75001" +238382,ThinkPad Laptop,1,999.99,08/27/19 10:25,"488 Lake St, Los Angeles, CA 90001" +238383,Apple Airpods Headphones,1,150,08/06/19 22:34,"933 2nd St, San Francisco, CA 94016" +238384,USB-C Charging Cable,1,11.95,08/29/19 18:06,"950 Washington St, Seattle, WA 98101" +238385,Google Phone,1,600,08/26/19 21:54,"703 West St, Portland, OR 97035" +238386,27in FHD Monitor,1,149.99,08/03/19 01:02,"983 River St, Boston, MA 02215" +238387,Wired Headphones,3,11.99,08/29/19 09:37,"435 Jefferson St, Los Angeles, CA 90001" +238388,Lightning Charging Cable,1,14.95,08/29/19 00:22,"82 Madison St, San Francisco, CA 94016" +238389,Apple Airpods Headphones,1,150,08/23/19 12:50,"307 Adams St, New York City, NY 10001" +238390,Lightning Charging Cable,1,14.95,08/21/19 16:04,"725 6th St, San Francisco, CA 94016" +238391,Wired Headphones,1,11.99,08/07/19 19:44,"355 7th St, Dallas, TX 75001" +238392,Lightning Charging Cable,1,14.95,08/08/19 15:35,"35 9th St, Boston, MA 02215" +238393,AA Batteries (4-pack),1,3.84,08/30/19 17:13,"923 Spruce St, Atlanta, GA 30301" +238394,USB-C Charging Cable,1,11.95,08/11/19 10:11,"258 Maple St, Austin, TX 73301" +238395,AAA Batteries (4-pack),1,2.99,08/07/19 11:23,"950 Pine St, San Francisco, CA 94016" +238396,Apple Airpods Headphones,1,150,08/07/19 20:13,"167 12th St, Austin, TX 73301" +238397,iPhone,1,700,08/09/19 13:18,"9 Lakeview St, San Francisco, CA 94016" +238398,Lightning Charging Cable,1,14.95,08/05/19 21:26,"574 Forest St, Los Angeles, CA 90001" +238399,AAA Batteries (4-pack),2,2.99,08/14/19 18:17,"855 Madison St, Dallas, TX 75001" +238400,AAA Batteries (4-pack),1,2.99,08/26/19 08:31,"889 North St, Portland, OR 97035" +238401,USB-C Charging Cable,1,11.95,08/30/19 10:17,"476 Ridge St, San Francisco, CA 94016" +238402,Flatscreen TV,1,300,08/30/19 17:29,"553 Lincoln St, Dallas, TX 75001" +238403,Lightning Charging Cable,1,14.95,08/17/19 21:36,"356 8th St, San Francisco, CA 94016" +238404,Lightning Charging Cable,1,14.95,08/23/19 21:50,"729 10th St, Portland, ME 04101" +238405,Lightning Charging Cable,1,14.95,08/29/19 18:14,"644 1st St, Atlanta, GA 30301" +238406,Lightning Charging Cable,1,14.95,08/07/19 10:55,"464 Chestnut St, Los Angeles, CA 90001" +238407,Lightning Charging Cable,1,14.95,08/27/19 11:38,"980 Willow St, Dallas, TX 75001" +238408,Lightning Charging Cable,1,14.95,08/16/19 21:28,"609 14th St, Portland, OR 97035" +238409,Google Phone,1,600,08/13/19 23:04,"682 Center St, Atlanta, GA 30301" +238410,Flatscreen TV,1,300,08/31/19 00:16,"233 Wilson St, Boston, MA 02215" +238411,Bose SoundSport Headphones,1,99.99,08/24/19 01:09,"624 Wilson St, Atlanta, GA 30301" +238412,USB-C Charging Cable,1,11.95,08/17/19 17:30,"166 Madison St, Atlanta, GA 30301" +238413,Bose SoundSport Headphones,1,99.99,08/24/19 16:16,"5 9th St, Los Angeles, CA 90001" +238414,Lightning Charging Cable,1,14.95,08/15/19 10:39,"850 2nd St, New York City, NY 10001" +238415,Lightning Charging Cable,1,14.95,08/21/19 12:53,"435 Park St, Dallas, TX 75001" +238416,Flatscreen TV,1,300,08/05/19 18:54,"991 Highland St, New York City, NY 10001" +238417,Flatscreen TV,1,300,08/12/19 03:51,"485 7th St, Atlanta, GA 30301" +238418,Lightning Charging Cable,2,14.95,08/10/19 13:42,"852 Willow St, New York City, NY 10001" +238419,AA Batteries (4-pack),2,3.84,08/17/19 23:18,"880 10th St, Seattle, WA 98101" +238420,Apple Airpods Headphones,1,150,08/17/19 12:58,"899 Madison St, Los Angeles, CA 90001" +238421,Macbook Pro Laptop,1,1700,08/03/19 17:21,"371 8th St, San Francisco, CA 94016" +238422,27in FHD Monitor,1,149.99,08/30/19 12:59,"13 Main St, Austin, TX 73301" +238423,Bose SoundSport Headphones,1,99.99,08/21/19 21:36,"619 Sunset St, Boston, MA 02215" +238424,27in FHD Monitor,1,149.99,08/27/19 11:05,"711 Walnut St, Atlanta, GA 30301" +238425,USB-C Charging Cable,1,11.95,08/11/19 14:50,"174 Willow St, San Francisco, CA 94016" +238426,ThinkPad Laptop,1,999.99,08/13/19 11:56,"918 Washington St, San Francisco, CA 94016" +238427,Apple Airpods Headphones,1,150,08/19/19 13:50,"576 Lincoln St, Los Angeles, CA 90001" +238428,iPhone,1,700,08/11/19 15:09,"700 7th St, Boston, MA 02215" +238429,AA Batteries (4-pack),1,3.84,08/18/19 13:59,"932 Hickory St, Atlanta, GA 30301" +238430,34in Ultrawide Monitor,1,379.99,08/16/19 01:06,"508 Hill St, Atlanta, GA 30301" +238431,Apple Airpods Headphones,1,150,08/31/19 09:03,"12 13th St, Atlanta, GA 30301" +238432,Google Phone,1,600,08/09/19 08:58,"659 Elm St, Boston, MA 02215" +238432,Bose SoundSport Headphones,1,99.99,08/09/19 08:58,"659 Elm St, Boston, MA 02215" +238433,USB-C Charging Cable,2,11.95,08/03/19 10:30,"639 South St, Los Angeles, CA 90001" +238434,Lightning Charging Cable,1,14.95,08/09/19 20:30,"760 7th St, Los Angeles, CA 90001" +238435,Wired Headphones,1,11.99,08/06/19 10:18,"85 Chestnut St, Dallas, TX 75001" +238436,USB-C Charging Cable,1,11.95,08/20/19 10:57,"836 North St, Los Angeles, CA 90001" +238437,27in 4K Gaming Monitor,1,389.99,08/27/19 13:48,"298 Walnut St, New York City, NY 10001" +238438,AAA Batteries (4-pack),1,2.99,08/07/19 17:37,"642 Park St, Boston, MA 02215" +238439,AAA Batteries (4-pack),1,2.99,08/11/19 19:39,"353 Pine St, Portland, OR 97035" +238440,AA Batteries (4-pack),1,3.84,08/29/19 20:17,"934 Hill St, Boston, MA 02215" +238441,Lightning Charging Cable,1,14.95,08/13/19 21:37,"555 Johnson St, San Francisco, CA 94016" +238442,iPhone,1,700,08/24/19 18:52,"283 5th St, New York City, NY 10001" +238443,27in 4K Gaming Monitor,1,389.99,08/21/19 19:10,"274 Willow St, Boston, MA 02215" +238444,USB-C Charging Cable,1,11.95,08/17/19 23:30,"738 Madison St, Portland, OR 97035" +238445,USB-C Charging Cable,1,11.95,08/26/19 07:41,"702 Forest St, New York City, NY 10001" +238445,USB-C Charging Cable,1,11.95,08/26/19 07:41,"702 Forest St, New York City, NY 10001" +238446,Apple Airpods Headphones,1,150,08/21/19 13:34,"222 North St, San Francisco, CA 94016" +238447,AAA Batteries (4-pack),1,2.99,08/27/19 23:07,"182 Chestnut St, Boston, MA 02215" +238448,AAA Batteries (4-pack),1,2.99,08/25/19 19:03,"437 Jackson St, Boston, MA 02215" +238449,AA Batteries (4-pack),1,3.84,08/06/19 09:04,"30 1st St, Dallas, TX 75001" +238450,Google Phone,1,600,08/23/19 12:01,"546 Meadow St, San Francisco, CA 94016" +238451,USB-C Charging Cable,1,11.95,08/12/19 13:44,"45 6th St, New York City, NY 10001" +238452,USB-C Charging Cable,1,11.95,08/26/19 04:33,"753 Center St, San Francisco, CA 94016" +238453,Vareebadd Phone,1,400,08/26/19 23:26,"214 Maple St, New York City, NY 10001" +238454,USB-C Charging Cable,1,11.95,08/29/19 15:27,"291 Elm St, New York City, NY 10001" +238455,Apple Airpods Headphones,1,150,08/13/19 17:17,"98 Lake St, Atlanta, GA 30301" +238456,34in Ultrawide Monitor,1,379.99,08/17/19 20:53,"882 North St, Boston, MA 02215" +238457,AA Batteries (4-pack),1,3.84,08/15/19 14:48,"565 Pine St, San Francisco, CA 94016" +238458,Wired Headphones,1,11.99,08/11/19 15:49,"655 14th St, Atlanta, GA 30301" +238459,Wired Headphones,1,11.99,08/06/19 15:53,"730 10th St, Boston, MA 02215" +238460,Wired Headphones,1,11.99,08/27/19 13:34,"839 Park St, Dallas, TX 75001" +238461,Bose SoundSport Headphones,1,99.99,08/11/19 15:57,"197 Madison St, Boston, MA 02215" +238462,Apple Airpods Headphones,1,150,08/24/19 01:33,"889 Chestnut St, Los Angeles, CA 90001" +238463,27in FHD Monitor,1,149.99,08/04/19 19:26,"849 7th St, San Francisco, CA 94016" +238464,Lightning Charging Cable,1,14.95,08/01/19 23:44,"93 North St, New York City, NY 10001" +238465,Wired Headphones,1,11.99,08/13/19 11:41,"827 River St, New York City, NY 10001" +238466,Wired Headphones,1,11.99,08/26/19 11:45,"585 Lakeview St, Los Angeles, CA 90001" +238467,AA Batteries (4-pack),3,3.84,08/07/19 09:01,"406 Ridge St, San Francisco, CA 94016" +238468,27in 4K Gaming Monitor,1,389.99,08/15/19 11:23,"992 Willow St, Los Angeles, CA 90001" +238469,Vareebadd Phone,1,400,08/01/19 19:51,"715 Hickory St, San Francisco, CA 94016" +238470,27in FHD Monitor,1,149.99,08/28/19 19:46,"46 6th St, Los Angeles, CA 90001" +238471,Bose SoundSport Headphones,1,99.99,08/08/19 14:33,"360 Jackson St, Seattle, WA 98101" +238472,Wired Headphones,1,11.99,08/12/19 10:01,"531 9th St, Austin, TX 73301" +238473,AA Batteries (4-pack),1,3.84,08/14/19 22:32,"903 Johnson St, San Francisco, CA 94016" +238474,AAA Batteries (4-pack),2,2.99,08/26/19 23:04,"239 Lincoln St, Portland, OR 97035" +238475,AA Batteries (4-pack),1,3.84,08/07/19 10:18,"740 4th St, New York City, NY 10001" +238476,USB-C Charging Cable,1,11.95,08/07/19 10:30,"810 Sunset St, San Francisco, CA 94016" +238477,AAA Batteries (4-pack),2,2.99,08/03/19 12:23,"580 12th St, Austin, TX 73301" +238478,Apple Airpods Headphones,1,150,08/01/19 13:31,"320 Main St, Boston, MA 02215" +238479,Lightning Charging Cable,1,14.95,08/02/19 12:38,"991 14th St, Atlanta, GA 30301" +238480,AA Batteries (4-pack),2,3.84,08/14/19 13:59,"80 Walnut St, Portland, ME 04101" +238481,AA Batteries (4-pack),1,3.84,08/03/19 12:45,"13 River St, Los Angeles, CA 90001" +238482,AAA Batteries (4-pack),1,2.99,08/01/19 09:13,"988 Lake St, Boston, MA 02215" +238483,Lightning Charging Cable,1,14.95,08/11/19 00:51,"62 Jackson St, Los Angeles, CA 90001" +238484,Wired Headphones,1,11.99,08/25/19 21:26,"698 Lincoln St, Los Angeles, CA 90001" +238485,Wired Headphones,1,11.99,08/22/19 21:11,"965 West St, San Francisco, CA 94016" +238486,AAA Batteries (4-pack),1,2.99,08/26/19 08:42,"247 Elm St, Atlanta, GA 30301" +238487,Lightning Charging Cable,1,14.95,08/25/19 08:01,"275 Walnut St, New York City, NY 10001" +238488,Google Phone,1,600,08/19/19 12:49,"696 14th St, Dallas, TX 75001" +238489,AAA Batteries (4-pack),1,2.99,08/28/19 19:07,"900 6th St, Seattle, WA 98101" +238490,Lightning Charging Cable,1,14.95,08/19/19 14:15,"396 Madison St, Los Angeles, CA 90001" +238491,AA Batteries (4-pack),1,3.84,08/28/19 09:03,"597 Cherry St, Los Angeles, CA 90001" +238492,Lightning Charging Cable,1,14.95,08/23/19 20:11,"430 Spruce St, Austin, TX 73301" +238493,AA Batteries (4-pack),2,3.84,08/02/19 16:43,"516 Adams St, Dallas, TX 75001" +238494,AA Batteries (4-pack),1,3.84,08/31/19 23:21,"263 6th St, Austin, TX 73301" +238495,Macbook Pro Laptop,1,1700,08/18/19 08:47,"801 South St, San Francisco, CA 94016" +238496,iPhone,1,700,08/03/19 12:43,"630 Forest St, Seattle, WA 98101" +238497,ThinkPad Laptop,1,999.99,08/10/19 16:02,"815 Spruce St, San Francisco, CA 94016" +238498,iPhone,1,700,08/25/19 11:38,"327 Cherry St, Los Angeles, CA 90001" +238499,AA Batteries (4-pack),2,3.84,08/12/19 14:04,"253 Walnut St, Los Angeles, CA 90001" +238500,Apple Airpods Headphones,1,150,08/22/19 17:32,"889 14th St, Dallas, TX 75001" +238501,ThinkPad Laptop,1,999.99,08/02/19 18:34,"982 Chestnut St, Atlanta, GA 30301" +238502,USB-C Charging Cable,1,11.95,08/13/19 22:23,"5 River St, San Francisco, CA 94016" +238503,Lightning Charging Cable,1,14.95,08/16/19 20:01,"48 Jefferson St, Dallas, TX 75001" +238504,Wired Headphones,1,11.99,08/06/19 15:53,"136 Johnson St, Portland, ME 04101" +238505,Bose SoundSport Headphones,1,99.99,08/05/19 13:17,"352 River St, Seattle, WA 98101" +238506,ThinkPad Laptop,1,999.99,08/13/19 17:51,"722 Dogwood St, New York City, NY 10001" +238507,Wired Headphones,1,11.99,08/06/19 20:07,"302 Madison St, Seattle, WA 98101" +238508,Flatscreen TV,1,300,08/19/19 13:39,"680 Madison St, San Francisco, CA 94016" +238509,Lightning Charging Cable,1,14.95,08/19/19 16:00,"220 Washington St, San Francisco, CA 94016" +238510,Lightning Charging Cable,1,14.95,08/07/19 16:35,"490 7th St, Austin, TX 73301" +238511,Apple Airpods Headphones,1,150,08/22/19 11:20,"624 Madison St, Los Angeles, CA 90001" +238512,27in 4K Gaming Monitor,1,389.99,08/21/19 19:52,"239 10th St, San Francisco, CA 94016" +238513,Lightning Charging Cable,1,14.95,08/21/19 04:05,"860 Jackson St, Los Angeles, CA 90001" +238514,Bose SoundSport Headphones,1,99.99,08/25/19 16:38,"553 Walnut St, Atlanta, GA 30301" +238515,ThinkPad Laptop,1,999.99,08/14/19 13:23,"457 Center St, San Francisco, CA 94016" +238516,20in Monitor,1,109.99,08/20/19 19:52,"282 Jefferson St, Portland, OR 97035" +238517,Wired Headphones,1,11.99,08/02/19 14:43,"677 7th St, Dallas, TX 75001" +238518,Macbook Pro Laptop,1,1700,08/21/19 16:23,"132 14th St, Portland, OR 97035" +238519,AA Batteries (4-pack),1,3.84,08/31/19 21:55,"590 Lake St, Portland, OR 97035" +238520,iPhone,1,700,08/05/19 22:47,"148 Pine St, New York City, NY 10001" +238521,Lightning Charging Cable,1,14.95,08/10/19 21:23,"380 2nd St, San Francisco, CA 94016" +238522,27in 4K Gaming Monitor,1,389.99,08/02/19 12:37,"426 Pine St, Boston, MA 02215" +238523,Flatscreen TV,1,300,08/24/19 23:33,"36 Johnson St, San Francisco, CA 94016" +238524,20in Monitor,1,109.99,08/31/19 19:23,"278 West St, San Francisco, CA 94016" +238525,USB-C Charging Cable,1,11.95,08/06/19 09:17,"612 10th St, Portland, OR 97035" +238526,Wired Headphones,1,11.99,08/15/19 11:50,"675 Pine St, New York City, NY 10001" +238527,AA Batteries (4-pack),1,3.84,08/13/19 22:05,"134 6th St, New York City, NY 10001" +238528,Macbook Pro Laptop,1,1700,08/17/19 17:56,"884 14th St, San Francisco, CA 94016" +238529,Bose SoundSport Headphones,1,99.99,08/02/19 12:57,"156 7th St, Los Angeles, CA 90001" +238530,Lightning Charging Cable,1,14.95,08/01/19 09:17,"772 Willow St, Boston, MA 02215" +238531,Lightning Charging Cable,1,14.95,08/18/19 19:34,"75 Madison St, Austin, TX 73301" +238532,AAA Batteries (4-pack),2,2.99,08/12/19 13:48,"442 Main St, Seattle, WA 98101" +238533,Flatscreen TV,1,300,08/02/19 10:03,"294 Cherry St, San Francisco, CA 94016" +238534,USB-C Charging Cable,1,11.95,08/15/19 07:00,"360 Willow St, San Francisco, CA 94016" +238535,AA Batteries (4-pack),1,3.84,08/31/19 12:55,"889 North St, San Francisco, CA 94016" +238536,Apple Airpods Headphones,1,150,08/02/19 21:36,"375 Wilson St, San Francisco, CA 94016" +238537,USB-C Charging Cable,1,11.95,08/23/19 13:15,"181 West St, Seattle, WA 98101" +238538,AAA Batteries (4-pack),1,2.99,08/19/19 15:00,"891 Lincoln St, Atlanta, GA 30301" +238539,AA Batteries (4-pack),1,3.84,08/12/19 12:00,"503 Park St, Los Angeles, CA 90001" +238540,ThinkPad Laptop,1,999.99,08/25/19 20:02,"429 11th St, Portland, OR 97035" +238541,Macbook Pro Laptop,1,1700,08/03/19 17:08,"327 Willow St, Atlanta, GA 30301" +238542,AA Batteries (4-pack),1,3.84,08/21/19 10:02,"506 Elm St, Los Angeles, CA 90001" +238543,ThinkPad Laptop,1,999.99,08/27/19 19:39,"336 7th St, New York City, NY 10001" +238544,AAA Batteries (4-pack),1,2.99,08/29/19 15:22,"253 Hill St, New York City, NY 10001" +238545,AAA Batteries (4-pack),1,2.99,08/13/19 14:41,"636 1st St, Seattle, WA 98101" +238546,Bose SoundSport Headphones,1,99.99,08/29/19 09:00,"77 Elm St, New York City, NY 10001" +238547,Lightning Charging Cable,1,14.95,08/12/19 14:23,"93 Cherry St, New York City, NY 10001" +238548,Lightning Charging Cable,1,14.95,08/25/19 23:25,"819 Sunset St, San Francisco, CA 94016" +238549,USB-C Charging Cable,1,11.95,08/18/19 10:17,"576 Center St, San Francisco, CA 94016" +238550,iPhone,1,700,08/16/19 02:01,"275 13th St, Los Angeles, CA 90001" +238551,Wired Headphones,1,11.99,08/26/19 22:21,"840 Forest St, Seattle, WA 98101" +238552,AA Batteries (4-pack),1,3.84,08/01/19 16:30,"459 9th St, Los Angeles, CA 90001" +238553,Apple Airpods Headphones,1,150,08/06/19 18:01,"591 4th St, New York City, NY 10001" +238554,27in FHD Monitor,1,149.99,08/26/19 09:22,"944 Highland St, New York City, NY 10001" +238555,Apple Airpods Headphones,1,150,08/11/19 18:03,"346 14th St, Dallas, TX 75001" +238556,AA Batteries (4-pack),1,3.84,08/09/19 22:47,"848 1st St, Los Angeles, CA 90001" +238557,27in 4K Gaming Monitor,1,389.99,08/09/19 10:39,"44 Adams St, Los Angeles, CA 90001" +238558,27in FHD Monitor,1,149.99,08/16/19 17:54,"797 Jefferson St, Dallas, TX 75001" +238559,AA Batteries (4-pack),1,3.84,08/12/19 21:45,"315 Elm St, Atlanta, GA 30301" +238560,Apple Airpods Headphones,1,150,08/13/19 22:35,"317 Jackson St, Seattle, WA 98101" +238561,Wired Headphones,1,11.99,08/23/19 12:14,"353 Cherry St, Los Angeles, CA 90001" +238562,USB-C Charging Cable,1,11.95,08/24/19 16:37,"726 River St, Dallas, TX 75001" +238563,Flatscreen TV,1,300,08/02/19 16:33,"713 Main St, Seattle, WA 98101" +238564,Bose SoundSport Headphones,1,99.99,08/29/19 23:04,"362 Chestnut St, New York City, NY 10001" +238565,27in 4K Gaming Monitor,1,389.99,08/02/19 06:20,"335 Cedar St, Atlanta, GA 30301" +238566,Apple Airpods Headphones,1,150,08/10/19 13:52,"60 Adams St, Boston, MA 02215" +238566,Google Phone,1,600,08/10/19 13:52,"60 Adams St, Boston, MA 02215" +238567,34in Ultrawide Monitor,1,379.99,08/18/19 20:00,"900 Ridge St, Boston, MA 02215" +238568,Wired Headphones,1,11.99,08/13/19 12:08,"329 South St, Los Angeles, CA 90001" +238569,27in 4K Gaming Monitor,1,389.99,08/16/19 19:17,"135 Wilson St, Austin, TX 73301" +238570,Wired Headphones,1,11.99,08/28/19 23:31,"963 Meadow St, Seattle, WA 98101" +238571,Flatscreen TV,1,300,08/28/19 14:45,"239 Center St, Seattle, WA 98101" +238572,AAA Batteries (4-pack),2,2.99,08/30/19 17:27,"444 Cedar St, Austin, TX 73301" +238573,AAA Batteries (4-pack),3,2.99,08/15/19 20:17,"921 Elm St, Seattle, WA 98101" +238574,Lightning Charging Cable,1,14.95,08/16/19 19:25,"50 South St, Seattle, WA 98101" +238575,Lightning Charging Cable,1,14.95,08/24/19 23:35,"621 Washington St, Boston, MA 02215" +238576,AAA Batteries (4-pack),1,2.99,08/17/19 12:35,"170 Main St, Los Angeles, CA 90001" +238577,AAA Batteries (4-pack),3,2.99,08/02/19 10:09,"847 Pine St, Portland, OR 97035" +238578,AAA Batteries (4-pack),2,2.99,08/07/19 19:18,"85 Jefferson St, Boston, MA 02215" +238579,Apple Airpods Headphones,1,150,08/13/19 12:10,"697 Washington St, Dallas, TX 75001" +238580,AA Batteries (4-pack),1,3.84,08/20/19 15:57,"14 Willow St, Seattle, WA 98101" +238581,AA Batteries (4-pack),1,3.84,08/18/19 22:27,"640 Maple St, New York City, NY 10001" +238582,Lightning Charging Cable,2,14.95,08/07/19 11:26,"883 Ridge St, Portland, OR 97035" +238583,27in FHD Monitor,1,149.99,08/17/19 19:04,"498 Hickory St, New York City, NY 10001" +238584,34in Ultrawide Monitor,1,379.99,08/30/19 19:34,"951 Walnut St, Los Angeles, CA 90001" +238585,USB-C Charging Cable,1,11.95,08/19/19 17:51,"161 Park St, Boston, MA 02215" +238586,Bose SoundSport Headphones,1,99.99,08/20/19 17:13,"438 Lakeview St, Atlanta, GA 30301" +238587,Lightning Charging Cable,1,14.95,08/08/19 14:39,"922 4th St, Dallas, TX 75001" +238588,AAA Batteries (4-pack),2,2.99,08/21/19 09:00,"862 Hill St, Seattle, WA 98101" +238589,34in Ultrawide Monitor,1,379.99,08/26/19 22:11,"460 Willow St, Los Angeles, CA 90001" +238590,USB-C Charging Cable,1,11.95,08/21/19 17:28,"873 Walnut St, Dallas, TX 75001" +238591,iPhone,1,700,08/20/19 21:06,"146 Main St, Boston, MA 02215" +238592,Apple Airpods Headphones,2,150,08/19/19 20:32,"964 Forest St, San Francisco, CA 94016" +238593,Wired Headphones,1,11.99,08/03/19 08:37,"14 4th St, San Francisco, CA 94016" +238594,AAA Batteries (4-pack),1,2.99,08/07/19 14:27,"13 Madison St, San Francisco, CA 94016" +238595,Bose SoundSport Headphones,1,99.99,08/26/19 08:47,"841 Ridge St, Dallas, TX 75001" +238596,USB-C Charging Cable,1,11.95,08/06/19 19:15,"680 Wilson St, Austin, TX 73301" +238597,34in Ultrawide Monitor,1,379.99,08/15/19 20:32,"959 Jackson St, New York City, NY 10001" +238598,AA Batteries (4-pack),1,3.84,08/07/19 09:45,"277 River St, Portland, OR 97035" +238599,34in Ultrawide Monitor,1,379.99,08/21/19 22:04,"612 Hickory St, Los Angeles, CA 90001" +238600,AAA Batteries (4-pack),1,2.99,08/13/19 17:54,"349 Elm St, Boston, MA 02215" +238601,Bose SoundSport Headphones,1,99.99,08/07/19 13:19,"322 Main St, Atlanta, GA 30301" +238602,Bose SoundSport Headphones,1,99.99,08/13/19 13:39,"104 12th St, Portland, OR 97035" +238603,34in Ultrawide Monitor,1,379.99,08/17/19 19:29,"271 West St, Los Angeles, CA 90001" +238604,USB-C Charging Cable,1,11.95,08/21/19 10:01,"150 Jackson St, San Francisco, CA 94016" +238605,AAA Batteries (4-pack),3,2.99,08/05/19 13:17,"93 8th St, Boston, MA 02215" +238606,Flatscreen TV,1,300,08/10/19 17:36,"73 Maple St, New York City, NY 10001" +238607,USB-C Charging Cable,1,11.95,08/24/19 22:04,"129 5th St, Dallas, TX 75001" +238608,Flatscreen TV,1,300,08/03/19 19:59,"982 12th St, Portland, OR 97035" +238609,AAA Batteries (4-pack),1,2.99,08/26/19 12:08,"325 Ridge St, Seattle, WA 98101" +238610,20in Monitor,1,109.99,08/18/19 10:16,"807 12th St, New York City, NY 10001" +238611,Apple Airpods Headphones,1,150,08/11/19 16:43,"522 Johnson St, San Francisco, CA 94016" +238612,LG Dryer,1,600.0,08/03/19 11:25,"318 9th St, San Francisco, CA 94016" +238613,20in Monitor,1,109.99,08/03/19 11:41,"610 1st St, Los Angeles, CA 90001" +238614,27in 4K Gaming Monitor,1,389.99,08/25/19 02:12,"396 10th St, San Francisco, CA 94016" +238615,ThinkPad Laptop,1,999.99,08/15/19 23:46,"343 1st St, Los Angeles, CA 90001" +238616,USB-C Charging Cable,2,11.95,08/08/19 15:39,"306 Spruce St, Boston, MA 02215" +238617,Google Phone,1,600,08/04/19 09:01,"167 5th St, San Francisco, CA 94016" +238618,34in Ultrawide Monitor,1,379.99,08/15/19 09:39,"973 West St, Los Angeles, CA 90001" +238619,27in 4K Gaming Monitor,1,389.99,08/09/19 20:23,"532 Main St, New York City, NY 10001" +238620,iPhone,1,700,08/31/19 19:49,"645 Highland St, San Francisco, CA 94016" +238621,Lightning Charging Cable,1,14.95,08/02/19 13:17,"709 7th St, Atlanta, GA 30301" +238622,34in Ultrawide Monitor,1,379.99,08/22/19 13:36,"359 Madison St, Austin, TX 73301" +238623,AA Batteries (4-pack),1,3.84,08/30/19 15:50,"430 Spruce St, Seattle, WA 98101" +238624,Bose SoundSport Headphones,1,99.99,08/26/19 12:04,"770 1st St, Portland, OR 97035" +238625,Bose SoundSport Headphones,1,99.99,08/26/19 01:00,"374 North St, Dallas, TX 75001" +238626,Macbook Pro Laptop,1,1700,08/23/19 21:02,"165 Hill St, Los Angeles, CA 90001" +238627,Wired Headphones,1,11.99,08/16/19 11:14,"713 Highland St, Seattle, WA 98101" +238628,Lightning Charging Cable,1,14.95,08/01/19 18:46,"111 Main St, Portland, ME 04101" +238629,27in 4K Gaming Monitor,1,389.99,08/08/19 10:21,"752 Lakeview St, Los Angeles, CA 90001" +238630,AAA Batteries (4-pack),1,2.99,08/07/19 11:32,"920 Lake St, San Francisco, CA 94016" +238631,27in FHD Monitor,1,149.99,08/24/19 16:48,"458 Jackson St, San Francisco, CA 94016" +238632,USB-C Charging Cable,1,11.95,08/18/19 22:23,"930 Forest St, San Francisco, CA 94016" +238633,27in 4K Gaming Monitor,1,389.99,08/09/19 12:59,"639 West St, San Francisco, CA 94016" +238634,Lightning Charging Cable,1,14.95,08/18/19 10:54,"377 Willow St, Los Angeles, CA 90001" +238635,Apple Airpods Headphones,1,150,08/09/19 20:15,"227 Center St, Austin, TX 73301" +238636,iPhone,1,700,08/30/19 00:28,"191 7th St, Atlanta, GA 30301" +238637,Wired Headphones,1,11.99,08/30/19 09:08,"685 Center St, Seattle, WA 98101" +238638,AAA Batteries (4-pack),1,2.99,08/09/19 18:56,"329 1st St, Los Angeles, CA 90001" +238639,AAA Batteries (4-pack),2,2.99,08/27/19 16:24,"618 Hickory St, San Francisco, CA 94016" +238640,AAA Batteries (4-pack),1,2.99,08/26/19 15:54,"104 Jackson St, San Francisco, CA 94016" +238641,AA Batteries (4-pack),1,3.84,08/04/19 08:10,"417 7th St, Atlanta, GA 30301" +238642,Lightning Charging Cable,1,14.95,08/09/19 00:03,"945 4th St, Los Angeles, CA 90001" +238642,AA Batteries (4-pack),1,3.84,08/09/19 00:03,"945 4th St, Los Angeles, CA 90001" +238643,ThinkPad Laptop,1,999.99,08/02/19 13:06,"881 Dogwood St, Atlanta, GA 30301" +238644,Lightning Charging Cable,1,14.95,08/03/19 16:23,"566 Maple St, Dallas, TX 75001" +238645,AA Batteries (4-pack),1,3.84,08/12/19 19:30,"310 Main St, Seattle, WA 98101" +238646,Bose SoundSport Headphones,1,99.99,08/07/19 21:00,"779 6th St, New York City, NY 10001" +238647,USB-C Charging Cable,1,11.95,08/19/19 17:41,"307 Highland St, San Francisco, CA 94016" +238648,Lightning Charging Cable,1,14.95,08/04/19 00:35,"763 1st St, Seattle, WA 98101" +238649,USB-C Charging Cable,1,11.95,08/04/19 16:44,"773 West St, San Francisco, CA 94016" +238650,27in 4K Gaming Monitor,1,389.99,08/19/19 10:17,"892 Sunset St, New York City, NY 10001" +238651,Apple Airpods Headphones,1,150,08/02/19 16:13,"890 Main St, Los Angeles, CA 90001" +238652,AAA Batteries (4-pack),2,2.99,08/22/19 17:10,"777 Lakeview St, San Francisco, CA 94016" +238653,Bose SoundSport Headphones,1,99.99,08/06/19 15:02,"804 7th St, San Francisco, CA 94016" +238654,USB-C Charging Cable,1,11.95,08/25/19 17:44,"630 8th St, Atlanta, GA 30301" +238655,27in 4K Gaming Monitor,1,389.99,08/27/19 15:33,"880 7th St, Dallas, TX 75001" +238656,AA Batteries (4-pack),1,3.84,08/21/19 08:08,"96 1st St, Los Angeles, CA 90001" +238657,iPhone,1,700,08/20/19 11:30,"626 River St, Los Angeles, CA 90001" +238658,AA Batteries (4-pack),1,3.84,08/26/19 19:11,"411 Park St, Portland, OR 97035" +238659,Apple Airpods Headphones,1,150,08/12/19 23:29,"290 Lake St, San Francisco, CA 94016" +238660,Vareebadd Phone,1,400,08/11/19 02:38,"873 Jefferson St, New York City, NY 10001" +238661,Bose SoundSport Headphones,1,99.99,08/13/19 17:33,"498 Ridge St, San Francisco, CA 94016" +238662,Bose SoundSport Headphones,1,99.99,08/06/19 13:39,"959 Lake St, New York City, NY 10001" +238663,USB-C Charging Cable,1,11.95,08/16/19 08:51,"836 Lakeview St, Austin, TX 73301" +238664,AAA Batteries (4-pack),2,2.99,08/18/19 16:16,"566 River St, San Francisco, CA 94016" +238665,34in Ultrawide Monitor,1,379.99,08/27/19 19:21,"850 Chestnut St, San Francisco, CA 94016" +238666,AAA Batteries (4-pack),2,2.99,08/16/19 17:05,"737 4th St, Boston, MA 02215" +238667,AA Batteries (4-pack),2,3.84,08/14/19 05:48,"322 Chestnut St, Austin, TX 73301" +238668,Wired Headphones,1,11.99,08/28/19 12:04,"836 Highland St, New York City, NY 10001" +238669,Lightning Charging Cable,1,14.95,08/24/19 20:04,"380 Meadow St, Seattle, WA 98101" +238670,27in FHD Monitor,1,149.99,08/24/19 17:43,"23 11th St, Seattle, WA 98101" +238671,Apple Airpods Headphones,1,150,08/04/19 18:54,"330 8th St, New York City, NY 10001" +238672,27in 4K Gaming Monitor,1,389.99,08/30/19 17:25,"407 Jackson St, New York City, NY 10001" +238673,Lightning Charging Cable,1,14.95,08/03/19 21:36,"712 Main St, Dallas, TX 75001" +238674,iPhone,1,700,08/29/19 17:45,"684 Jackson St, San Francisco, CA 94016" +238674,Lightning Charging Cable,1,14.95,08/29/19 17:45,"684 Jackson St, San Francisco, CA 94016" +238675,Wired Headphones,1,11.99,08/04/19 03:32,"866 Sunset St, Boston, MA 02215" +238676,Bose SoundSport Headphones,1,99.99,08/16/19 09:17,"479 Adams St, New York City, NY 10001" +238677,Bose SoundSport Headphones,1,99.99,08/22/19 19:58,"963 River St, Atlanta, GA 30301" +238678,AAA Batteries (4-pack),2,2.99,08/31/19 23:41,"806 Johnson St, Los Angeles, CA 90001" +238679,AA Batteries (4-pack),1,3.84,08/16/19 15:14,"864 Cedar St, New York City, NY 10001" +238680,iPhone,1,700,08/18/19 19:35,"199 Willow St, New York City, NY 10001" +238681,Flatscreen TV,1,300,08/11/19 01:02,"249 Dogwood St, San Francisco, CA 94016" +238682,Macbook Pro Laptop,1,1700,08/19/19 23:37,"571 Lincoln St, Dallas, TX 75001" +238683,Lightning Charging Cable,1,14.95,08/16/19 09:37,"805 9th St, San Francisco, CA 94016" +238684,USB-C Charging Cable,1,11.95,08/27/19 03:11,"907 Dogwood St, Boston, MA 02215" +238685,Bose SoundSport Headphones,1,99.99,08/23/19 12:15,"665 Elm St, San Francisco, CA 94016" +238686,AA Batteries (4-pack),2,3.84,08/12/19 16:33,"849 Lincoln St, New York City, NY 10001" +238687,AA Batteries (4-pack),1,3.84,08/18/19 20:04,"670 Maple St, Los Angeles, CA 90001" +238688,AAA Batteries (4-pack),1,2.99,08/02/19 13:02,"66 10th St, Portland, OR 97035" +238689,Apple Airpods Headphones,1,150,08/26/19 08:34,"591 2nd St, San Francisco, CA 94016" +238690,Bose SoundSport Headphones,1,99.99,08/26/19 11:05,"714 Center St, Boston, MA 02215" +238691,Wired Headphones,1,11.99,08/17/19 19:21,"419 Hickory St, Los Angeles, CA 90001" +238692,AAA Batteries (4-pack),1,2.99,08/19/19 16:41,"599 Highland St, Atlanta, GA 30301" +238693,iPhone,1,700,08/30/19 12:59,"914 7th St, Seattle, WA 98101" +238694,27in 4K Gaming Monitor,1,389.99,08/20/19 19:34,"934 7th St, Los Angeles, CA 90001" +238695,iPhone,1,700,08/08/19 08:29,"575 Main St, Dallas, TX 75001" +238696,AA Batteries (4-pack),1,3.84,08/14/19 15:05,"671 8th St, Austin, TX 73301" +238697,Apple Airpods Headphones,1,150,08/26/19 14:31,"784 Walnut St, San Francisco, CA 94016" +238698,Bose SoundSport Headphones,1,99.99,08/08/19 20:00,"675 Adams St, Atlanta, GA 30301" +238699,Apple Airpods Headphones,1,150,08/01/19 14:32,"732 2nd St, New York City, NY 10001" +238700,Google Phone,1,600,08/09/19 18:48,"668 River St, Dallas, TX 75001" +238701,USB-C Charging Cable,1,11.95,08/05/19 16:30,"53 Ridge St, San Francisco, CA 94016" +238702,AA Batteries (4-pack),1,3.84,08/05/19 14:08,"3 7th St, San Francisco, CA 94016" +238703,Bose SoundSport Headphones,1,99.99,08/02/19 20:56,"194 10th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +238704,iPhone,1,700,08/14/19 10:45,"414 River St, New York City, NY 10001" +238704,Wired Headphones,1,11.99,08/14/19 10:45,"414 River St, New York City, NY 10001" +238705,AA Batteries (4-pack),1,3.84,08/21/19 14:35,"540 Forest St, Boston, MA 02215" +238706,ThinkPad Laptop,1,999.99,08/01/19 11:00,"898 Jackson St, Los Angeles, CA 90001" +238707,Apple Airpods Headphones,1,150,08/06/19 15:04,"536 Chestnut St, Boston, MA 02215" +238708,iPhone,1,700,08/14/19 14:33,"395 Church St, New York City, NY 10001" +238709,Lightning Charging Cable,1,14.95,08/27/19 21:10,"696 Lake St, Portland, OR 97035" +238710,Macbook Pro Laptop,1,1700,08/28/19 08:50,"962 Cedar St, Los Angeles, CA 90001" +238711,AAA Batteries (4-pack),1,2.99,08/09/19 23:14,"277 West St, San Francisco, CA 94016" +238712,AA Batteries (4-pack),1,3.84,08/24/19 11:28,"791 Madison St, Los Angeles, CA 90001" +238713,USB-C Charging Cable,1,11.95,08/24/19 22:02,"391 Jackson St, Dallas, TX 75001" +238714,27in FHD Monitor,1,149.99,08/29/19 00:46,"732 1st St, Boston, MA 02215" +238715,USB-C Charging Cable,1,11.95,08/21/19 09:09,"261 Walnut St, San Francisco, CA 94016" +238716,27in FHD Monitor,1,149.99,08/23/19 12:40,"86 Washington St, Austin, TX 73301" +238717,iPhone,1,700,08/25/19 13:21,"714 Cherry St, Los Angeles, CA 90001" +238718,Wired Headphones,2,11.99,08/21/19 13:23,"342 Lincoln St, Dallas, TX 75001" +238719,27in FHD Monitor,1,149.99,08/25/19 17:02,"527 Adams St, Los Angeles, CA 90001" +238720,AA Batteries (4-pack),1,3.84,08/18/19 11:06,"131 1st St, New York City, NY 10001" +238721,Wired Headphones,1,11.99,08/12/19 18:10,"747 4th St, San Francisco, CA 94016" +238722,20in Monitor,1,109.99,08/24/19 04:41,"311 7th St, San Francisco, CA 94016" +238723,USB-C Charging Cable,1,11.95,08/08/19 09:59,"560 Wilson St, San Francisco, CA 94016" +238724,AA Batteries (4-pack),1,3.84,08/12/19 13:32,"179 Walnut St, Seattle, WA 98101" +238725,Wired Headphones,1,11.99,08/27/19 07:19,"516 Hickory St, Atlanta, GA 30301" +238726,USB-C Charging Cable,1,11.95,08/06/19 08:59,"843 10th St, Boston, MA 02215" +238727,27in 4K Gaming Monitor,1,389.99,08/07/19 19:56,"646 10th St, Boston, MA 02215" +238728,Apple Airpods Headphones,1,150,08/09/19 09:23,"170 8th St, Boston, MA 02215" +238729,Bose SoundSport Headphones,1,99.99,08/10/19 19:34,"622 4th St, San Francisco, CA 94016" +238730,ThinkPad Laptop,1,999.99,08/07/19 18:22,"970 1st St, Boston, MA 02215" +238731,USB-C Charging Cable,1,11.95,08/17/19 11:32,"771 11th St, New York City, NY 10001" +238732,AA Batteries (4-pack),1,3.84,08/12/19 21:01,"927 North St, Boston, MA 02215" +238733,Apple Airpods Headphones,1,150,08/18/19 16:29,"248 Willow St, New York City, NY 10001" +238734,Apple Airpods Headphones,1,150,08/27/19 21:18,"297 Lake St, Dallas, TX 75001" +238734,27in FHD Monitor,1,149.99,08/27/19 21:18,"297 Lake St, Dallas, TX 75001" +238735,Google Phone,1,600,08/03/19 15:31,"774 Spruce St, New York City, NY 10001" +238736,Lightning Charging Cable,1,14.95,08/29/19 12:32,"209 Meadow St, Los Angeles, CA 90001" +238737,Apple Airpods Headphones,1,150,08/03/19 14:51,"602 Hill St, New York City, NY 10001" +238738,AA Batteries (4-pack),1,3.84,08/29/19 16:03,"965 Hill St, Los Angeles, CA 90001" +238739,Wired Headphones,1,11.99,08/24/19 20:56,"281 11th St, Atlanta, GA 30301" +238740,Wired Headphones,1,11.99,08/16/19 16:49,"877 14th St, Seattle, WA 98101" +238741,Apple Airpods Headphones,1,150,08/11/19 22:06,"3 13th St, Austin, TX 73301" +238742,Wired Headphones,1,11.99,08/25/19 19:24,"587 Ridge St, Seattle, WA 98101" +238743,Lightning Charging Cable,1,14.95,08/07/19 12:01,"865 Ridge St, Boston, MA 02215" +238744,AA Batteries (4-pack),1,3.84,08/18/19 09:22,"761 14th St, New York City, NY 10001" +238745,AA Batteries (4-pack),2,3.84,08/07/19 10:21,"637 Meadow St, Atlanta, GA 30301" +238746,AA Batteries (4-pack),1,3.84,08/04/19 18:05,"521 Hill St, San Francisco, CA 94016" +238747,iPhone,1,700,08/30/19 15:42,"340 Chestnut St, Seattle, WA 98101" +238748,27in 4K Gaming Monitor,1,389.99,08/23/19 17:56,"516 Lake St, Portland, OR 97035" +238749,USB-C Charging Cable,1,11.95,08/28/19 11:28,"918 10th St, Seattle, WA 98101" +238750,Vareebadd Phone,1,400,08/17/19 19:01,"72 Hickory St, New York City, NY 10001" +238751,Google Phone,1,600,08/24/19 03:24,"840 6th St, Dallas, TX 75001" +238752,USB-C Charging Cable,1,11.95,08/20/19 00:35,"138 Hickory St, Seattle, WA 98101" +238753,Lightning Charging Cable,1,14.95,08/15/19 23:38,"971 8th St, Dallas, TX 75001" +238754,34in Ultrawide Monitor,1,379.99,08/19/19 15:23,"125 Johnson St, Atlanta, GA 30301" +238755,34in Ultrawide Monitor,1,379.99,08/07/19 22:23,"997 6th St, Austin, TX 73301" +238756,AAA Batteries (4-pack),2,2.99,08/19/19 09:40,"853 Jackson St, Austin, TX 73301" +238757,Lightning Charging Cable,1,14.95,08/25/19 06:45,"403 Forest St, Los Angeles, CA 90001" +238758,ThinkPad Laptop,1,999.99,08/13/19 23:27,"20 11th St, Austin, TX 73301" +238759,AAA Batteries (4-pack),1,2.99,08/12/19 14:33,"309 Willow St, Los Angeles, CA 90001" +238760,Apple Airpods Headphones,1,150,08/17/19 13:50,"364 Willow St, Atlanta, GA 30301" +238761,AAA Batteries (4-pack),1,2.99,08/06/19 10:39,"933 South St, Atlanta, GA 30301" +238762,Google Phone,1,600,08/28/19 12:43,"896 Chestnut St, Atlanta, GA 30301" +238763,27in FHD Monitor,1,149.99,08/18/19 10:38,"265 Highland St, Los Angeles, CA 90001" +238764,iPhone,1,700,08/26/19 21:17,"582 6th St, Los Angeles, CA 90001" +238765,Apple Airpods Headphones,1,150,08/13/19 15:10,"646 Chestnut St, Boston, MA 02215" +238766,AAA Batteries (4-pack),1,2.99,08/13/19 14:16,"698 Lincoln St, New York City, NY 10001" +238767,USB-C Charging Cable,1,11.95,08/16/19 20:05,"363 Highland St, Portland, ME 04101" +238767,iPhone,1,700,08/16/19 20:05,"363 Highland St, Portland, ME 04101" +238768,iPhone,1,700,08/09/19 12:04,"671 Ridge St, Los Angeles, CA 90001" +238769,USB-C Charging Cable,1,11.95,08/12/19 17:31,"544 Hill St, Seattle, WA 98101" +238770,Bose SoundSport Headphones,1,99.99,08/08/19 17:22,"761 10th St, Dallas, TX 75001" +238771,Wired Headphones,1,11.99,08/28/19 20:08,"453 12th St, Portland, OR 97035" +238772,USB-C Charging Cable,1,11.95,08/25/19 17:32,"130 Madison St, Los Angeles, CA 90001" +238773,AA Batteries (4-pack),3,3.84,08/29/19 20:43,"737 Forest St, Los Angeles, CA 90001" +238774,Lightning Charging Cable,1,14.95,08/10/19 07:01,"717 11th St, Austin, TX 73301" +238775,AA Batteries (4-pack),1,3.84,08/10/19 18:05,"914 Chestnut St, Los Angeles, CA 90001" +238776,ThinkPad Laptop,1,999.99,08/15/19 10:09,"648 Pine St, Boston, MA 02215" +238777,Bose SoundSport Headphones,1,99.99,08/14/19 09:39,"274 South St, San Francisco, CA 94016" +238778,Bose SoundSport Headphones,1,99.99,08/13/19 14:52,"131 1st St, Atlanta, GA 30301" +238779,Lightning Charging Cable,1,14.95,08/24/19 09:23,"59 West St, Dallas, TX 75001" +238780,AAA Batteries (4-pack),3,2.99,08/08/19 11:03,"699 South St, Boston, MA 02215" +238781,AA Batteries (4-pack),1,3.84,08/27/19 21:16,"942 Adams St, San Francisco, CA 94016" +238782,Lightning Charging Cable,1,14.95,08/29/19 14:11,"943 Pine St, San Francisco, CA 94016" +238783,AAA Batteries (4-pack),2,2.99,08/17/19 22:33,"471 Ridge St, New York City, NY 10001" +238784,USB-C Charging Cable,1,11.95,08/24/19 20:26,"301 Lake St, New York City, NY 10001" +238785,AAA Batteries (4-pack),1,2.99,08/31/19 14:56,"534 4th St, New York City, NY 10001" +238786,Wired Headphones,2,11.99,08/23/19 19:19,"693 Madison St, San Francisco, CA 94016" +238787,AA Batteries (4-pack),2,3.84,08/31/19 06:44,"485 South St, Boston, MA 02215" +238788,Apple Airpods Headphones,1,150,08/21/19 16:32,"565 Spruce St, Los Angeles, CA 90001" +238789,AA Batteries (4-pack),1,3.84,08/22/19 09:47,"900 12th St, Portland, ME 04101" +238790,USB-C Charging Cable,1,11.95,08/23/19 23:11,"421 North St, Portland, ME 04101" +238791,Lightning Charging Cable,1,14.95,08/05/19 08:29,"431 Elm St, San Francisco, CA 94016" +238792,USB-C Charging Cable,1,11.95,08/16/19 17:17,"500 North St, Portland, OR 97035" +238793,USB-C Charging Cable,1,11.95,08/01/19 17:02,"79 Lake St, Los Angeles, CA 90001" +238794,27in 4K Gaming Monitor,1,389.99,08/27/19 17:49,"357 West St, New York City, NY 10001" +238795,Vareebadd Phone,1,400,08/07/19 12:54,"852 Jackson St, Austin, TX 73301" +238796,Lightning Charging Cable,1,14.95,08/19/19 18:52,"891 Elm St, Los Angeles, CA 90001" +238797,27in FHD Monitor,1,149.99,08/31/19 10:29,"666 13th St, Boston, MA 02215" +238798,AAA Batteries (4-pack),1,2.99,08/23/19 10:32,"223 Hill St, Boston, MA 02215" +238799,Wired Headphones,1,11.99,08/23/19 14:24,"154 6th St, San Francisco, CA 94016" +238800,Bose SoundSport Headphones,1,99.99,08/22/19 20:22,"389 Hickory St, Atlanta, GA 30301" +238801,USB-C Charging Cable,1,11.95,08/20/19 10:00,"256 South St, San Francisco, CA 94016" +238802,Lightning Charging Cable,1,14.95,08/10/19 20:59,"136 Church St, San Francisco, CA 94016" +238803,AA Batteries (4-pack),3,3.84,08/07/19 11:13,"324 Main St, Atlanta, GA 30301" +238804,Lightning Charging Cable,2,14.95,08/23/19 15:08,"860 Adams St, Dallas, TX 75001" +238805,20in Monitor,1,109.99,08/23/19 16:27,"132 12th St, Portland, ME 04101" +238806,USB-C Charging Cable,1,11.95,08/16/19 14:51,"373 Madison St, Dallas, TX 75001" +238807,27in FHD Monitor,1,149.99,08/11/19 21:10,"680 Main St, Portland, ME 04101" +238808,AAA Batteries (4-pack),1,2.99,08/28/19 20:36,"864 Church St, New York City, NY 10001" +238809,Apple Airpods Headphones,1,150,08/12/19 16:10,"387 Lakeview St, New York City, NY 10001" +238810,Apple Airpods Headphones,1,150,08/02/19 19:03,"393 West St, Portland, OR 97035" +238811,AA Batteries (4-pack),1,3.84,08/08/19 16:32,"16 12th St, Atlanta, GA 30301" +238812,Google Phone,1,600,08/09/19 17:53,"244 Cedar St, Boston, MA 02215" +238813,Bose SoundSport Headphones,1,99.99,08/02/19 21:21,"14 6th St, Los Angeles, CA 90001" +238814,USB-C Charging Cable,1,11.95,08/17/19 20:58,"591 River St, Los Angeles, CA 90001" +238815,AAA Batteries (4-pack),1,2.99,08/24/19 14:42,"722 Dogwood St, Austin, TX 73301" +238816,Bose SoundSport Headphones,1,99.99,08/08/19 10:10,"977 7th St, San Francisco, CA 94016" +238817,Apple Airpods Headphones,1,150,08/12/19 22:34,"815 Spruce St, Los Angeles, CA 90001" +238818,ThinkPad Laptop,1,999.99,08/12/19 11:19,"649 Highland St, Atlanta, GA 30301" +238819,27in 4K Gaming Monitor,1,389.99,08/30/19 22:43,"117 9th St, New York City, NY 10001" +238820,AA Batteries (4-pack),1,3.84,08/26/19 23:54,"611 Dogwood St, Boston, MA 02215" +238821,34in Ultrawide Monitor,1,379.99,08/05/19 11:02,"317 Jackson St, New York City, NY 10001" +238822,Wired Headphones,1,11.99,08/29/19 16:55,"568 Maple St, Boston, MA 02215" +238823,USB-C Charging Cable,1,11.95,08/01/19 11:58,"958 Dogwood St, Boston, MA 02215" +,,,,, +238824,Wired Headphones,1,11.99,08/17/19 02:53,"18 South St, Atlanta, GA 30301" +238825,Google Phone,1,600,08/19/19 11:56,"325 12th St, San Francisco, CA 94016" +238825,Bose SoundSport Headphones,1,99.99,08/19/19 11:56,"325 12th St, San Francisco, CA 94016" +238826,LG Washing Machine,1,600.0,08/20/19 13:30,"50 7th St, New York City, NY 10001" +238827,Flatscreen TV,1,300,08/15/19 15:04,"590 Cedar St, Los Angeles, CA 90001" +238828,Google Phone,1,600,08/30/19 07:26,"470 Church St, Seattle, WA 98101" +238828,Wired Headphones,1,11.99,08/30/19 07:26,"470 Church St, Seattle, WA 98101" +238829,AAA Batteries (4-pack),1,2.99,08/27/19 20:13,"694 Cherry St, New York City, NY 10001" +238830,Bose SoundSport Headphones,1,99.99,08/13/19 20:47,"324 Center St, Boston, MA 02215" +238831,Macbook Pro Laptop,1,1700,08/20/19 11:49,"838 11th St, San Francisco, CA 94016" +238832,27in FHD Monitor,1,149.99,08/19/19 14:43,"577 Willow St, San Francisco, CA 94016" +238833,27in FHD Monitor,1,149.99,08/05/19 22:13,"739 River St, San Francisco, CA 94016" +238834,AA Batteries (4-pack),1,3.84,08/14/19 14:05,"810 Ridge St, New York City, NY 10001" +238835,ThinkPad Laptop,1,999.99,08/02/19 15:20,"488 4th St, Dallas, TX 75001" +238836,USB-C Charging Cable,1,11.95,08/31/19 08:28,"330 Main St, Seattle, WA 98101" +238836,USB-C Charging Cable,1,11.95,08/31/19 08:28,"330 Main St, Seattle, WA 98101" +238837,AA Batteries (4-pack),1,3.84,08/12/19 11:01,"304 Hickory St, Dallas, TX 75001" +238838,USB-C Charging Cable,1,11.95,08/16/19 11:23,"367 Jefferson St, New York City, NY 10001" +238839,Bose SoundSport Headphones,1,99.99,08/10/19 14:20,"351 5th St, Austin, TX 73301" +238840,27in FHD Monitor,1,149.99,08/23/19 16:46,"707 1st St, New York City, NY 10001" +238841,LG Washing Machine,1,600.0,08/04/19 14:15,"492 Hill St, Boston, MA 02215" +238842,Lightning Charging Cable,1,14.95,08/13/19 12:15,"872 Highland St, San Francisco, CA 94016" +238843,USB-C Charging Cable,1,11.95,08/20/19 13:10,"283 North St, New York City, NY 10001" +238844,20in Monitor,1,109.99,08/19/19 09:30,"904 Dogwood St, Portland, OR 97035" +238845,34in Ultrawide Monitor,1,379.99,08/03/19 23:56,"151 Main St, New York City, NY 10001" +238846,Lightning Charging Cable,1,14.95,08/02/19 12:44,"572 Spruce St, Los Angeles, CA 90001" +238847,Wired Headphones,2,11.99,08/19/19 23:27,"625 Meadow St, New York City, NY 10001" +238848,AAA Batteries (4-pack),1,2.99,08/16/19 00:28,"522 Willow St, New York City, NY 10001" +238849,Apple Airpods Headphones,1,150,08/18/19 19:42,"440 Johnson St, San Francisco, CA 94016" +238850,Google Phone,1,600,08/27/19 18:02,"788 Park St, Los Angeles, CA 90001" +238851,USB-C Charging Cable,1,11.95,08/31/19 12:47,"211 11th St, San Francisco, CA 94016" +238852,Wired Headphones,1,11.99,08/21/19 00:13,"58 1st St, San Francisco, CA 94016" +238853,Macbook Pro Laptop,1,1700,08/01/19 14:27,"73 Johnson St, Seattle, WA 98101" +238854,Flatscreen TV,1,300,08/31/19 19:15,"975 Cedar St, San Francisco, CA 94016" +238855,27in FHD Monitor,1,149.99,08/02/19 16:41,"281 4th St, San Francisco, CA 94016" +238856,ThinkPad Laptop,1,999.99,08/31/19 21:59,"932 6th St, Portland, OR 97035" +238857,Google Phone,1,600,08/10/19 19:58,"60 South St, Seattle, WA 98101" +238858,AA Batteries (4-pack),1,3.84,08/18/19 21:43,"263 Jackson St, Dallas, TX 75001" +238859,34in Ultrawide Monitor,1,379.99,08/17/19 19:21,"244 5th St, New York City, NY 10001" +238860,Lightning Charging Cable,1,14.95,08/20/19 23:29,"446 2nd St, Boston, MA 02215" +238861,USB-C Charging Cable,2,11.95,08/20/19 22:18,"248 Adams St, San Francisco, CA 94016" +238861,Bose SoundSport Headphones,1,99.99,08/20/19 22:18,"248 Adams St, San Francisco, CA 94016" +238862,AAA Batteries (4-pack),2,2.99,08/11/19 16:11,"954 Meadow St, Dallas, TX 75001" +238863,AA Batteries (4-pack),1,3.84,08/04/19 08:37,"882 South St, Los Angeles, CA 90001" +238864,AA Batteries (4-pack),1,3.84,08/15/19 21:50,"439 Dogwood St, New York City, NY 10001" +238865,AAA Batteries (4-pack),2,2.99,08/12/19 17:08,"742 Jackson St, San Francisco, CA 94016" +238866,Wired Headphones,1,11.99,08/15/19 14:30,"478 South St, Seattle, WA 98101" +238867,Lightning Charging Cable,1,14.95,08/13/19 23:12,"107 Washington St, Dallas, TX 75001" +238868,27in FHD Monitor,1,149.99,08/05/19 16:20,"518 13th St, Seattle, WA 98101" +238869,AAA Batteries (4-pack),1,2.99,08/28/19 16:42,"896 Walnut St, San Francisco, CA 94016" +238870,USB-C Charging Cable,1,11.95,08/22/19 13:05,"410 Cherry St, Dallas, TX 75001" +238871,Flatscreen TV,1,300,08/09/19 21:47,"463 Pine St, Dallas, TX 75001" +238872,AAA Batteries (4-pack),1,2.99,08/18/19 18:29,"305 Hill St, Portland, OR 97035" +238873,iPhone,1,700,08/19/19 21:33,"124 Church St, San Francisco, CA 94016" +238874,USB-C Charging Cable,1,11.95,08/13/19 11:38,"251 2nd St, San Francisco, CA 94016" +238875,Lightning Charging Cable,1,14.95,08/30/19 18:52,"535 Park St, Boston, MA 02215" +238876,Lightning Charging Cable,1,14.95,08/12/19 19:21,"466 Lincoln St, Atlanta, GA 30301" +238877,Bose SoundSport Headphones,1,99.99,08/10/19 20:25,"518 Chestnut St, San Francisco, CA 94016" +238878,27in FHD Monitor,1,149.99,08/02/19 09:29,"576 Walnut St, Portland, ME 04101" +238878,Google Phone,1,600,08/02/19 09:29,"576 Walnut St, Portland, ME 04101" +238879,Lightning Charging Cable,1,14.95,08/20/19 12:03,"911 9th St, Atlanta, GA 30301" +238880,Wired Headphones,1,11.99,08/24/19 21:05,"12 Meadow St, San Francisco, CA 94016" +238881,Apple Airpods Headphones,1,150,08/18/19 16:41,"516 South St, Atlanta, GA 30301" +238882,USB-C Charging Cable,1,11.95,08/12/19 18:20,"256 Meadow St, Austin, TX 73301" +238883,Macbook Pro Laptop,1,1700,08/19/19 13:11,"819 Center St, San Francisco, CA 94016" +238884,AAA Batteries (4-pack),1,2.99,08/18/19 10:14,"532 11th St, Boston, MA 02215" +238885,Google Phone,1,600,08/02/19 10:49,"68 13th St, Los Angeles, CA 90001" +238886,Wired Headphones,1,11.99,08/08/19 12:53,"924 Jefferson St, San Francisco, CA 94016" +238887,USB-C Charging Cable,1,11.95,08/22/19 15:18,"301 Forest St, San Francisco, CA 94016" +238888,Wired Headphones,1,11.99,08/21/19 18:55,"406 2nd St, Portland, OR 97035" +238889,Lightning Charging Cable,1,14.95,08/03/19 17:36,"212 7th St, San Francisco, CA 94016" +238890,AA Batteries (4-pack),1,3.84,08/29/19 11:09,"744 Walnut St, Portland, OR 97035" +238891,USB-C Charging Cable,2,11.95,08/04/19 13:57,"950 10th St, San Francisco, CA 94016" +238892,Lightning Charging Cable,1,14.95,08/30/19 23:15,"184 North St, Seattle, WA 98101" +238893,iPhone,1,700,08/31/19 09:57,"814 Hill St, Atlanta, GA 30301" +238894,ThinkPad Laptop,1,999.99,08/19/19 10:25,"666 Ridge St, San Francisco, CA 94016" +238895,AA Batteries (4-pack),1,3.84,08/07/19 15:12,"244 Spruce St, New York City, NY 10001" +238896,Lightning Charging Cable,1,14.95,08/22/19 11:17,"750 Wilson St, Los Angeles, CA 90001" +238897,AA Batteries (4-pack),5,3.84,08/03/19 19:41,"788 8th St, San Francisco, CA 94016" +238898,iPhone,1,700,08/13/19 18:44,"868 Pine St, Boston, MA 02215" +238899,27in FHD Monitor,1,149.99,08/31/19 09:37,"252 Center St, San Francisco, CA 94016" +238900,USB-C Charging Cable,1,11.95,08/16/19 22:22,"286 Church St, San Francisco, CA 94016" +238901,Macbook Pro Laptop,1,1700,08/09/19 11:27,"466 Hill St, New York City, NY 10001" +238902,USB-C Charging Cable,1,11.95,08/20/19 12:14,"422 Cedar St, Seattle, WA 98101" +238903,AAA Batteries (4-pack),1,2.99,08/06/19 08:43,"717 6th St, Seattle, WA 98101" +238904,Wired Headphones,2,11.99,08/13/19 19:23,"619 Lakeview St, Seattle, WA 98101" +238905,AA Batteries (4-pack),2,3.84,08/07/19 11:18,"16 Spruce St, Dallas, TX 75001" +238906,34in Ultrawide Monitor,1,379.99,08/02/19 10:53,"492 Lincoln St, Seattle, WA 98101" +238907,Bose SoundSport Headphones,2,99.99,08/03/19 18:17,"168 10th St, San Francisco, CA 94016" +238908,Wired Headphones,2,11.99,08/21/19 13:32,"222 9th St, Dallas, TX 75001" +238909,34in Ultrawide Monitor,1,379.99,08/15/19 16:00,"107 Chestnut St, Dallas, TX 75001" +238910,ThinkPad Laptop,1,999.99,08/23/19 16:32,"545 5th St, Portland, OR 97035" +238911,Flatscreen TV,1,300,08/24/19 09:06,"930 9th St, Dallas, TX 75001" +238912,27in FHD Monitor,1,149.99,08/17/19 13:11,"546 Madison St, Boston, MA 02215" +238913,AA Batteries (4-pack),1,3.84,08/10/19 17:56,"202 11th St, Austin, TX 73301" +238914,AAA Batteries (4-pack),2,2.99,08/16/19 22:01,"19 Adams St, New York City, NY 10001" +238915,20in Monitor,1,109.99,08/01/19 17:01,"511 Jackson St, Atlanta, GA 30301" +238916,27in FHD Monitor,1,149.99,08/09/19 20:22,"995 Adams St, Seattle, WA 98101" +238917,Google Phone,1,600,08/31/19 19:43,"343 Cedar St, Dallas, TX 75001" +238918,20in Monitor,1,109.99,08/18/19 21:26,"137 1st St, Portland, OR 97035" +238919,AA Batteries (4-pack),1,3.84,08/23/19 15:41,"759 Main St, San Francisco, CA 94016" +238920,AAA Batteries (4-pack),2,2.99,08/14/19 09:07,"464 Wilson St, San Francisco, CA 94016" +238921,Bose SoundSport Headphones,1,99.99,08/03/19 15:07,"637 South St, New York City, NY 10001" +238921,ThinkPad Laptop,1,999.99,08/03/19 15:07,"637 South St, New York City, NY 10001" +238922,USB-C Charging Cable,1,11.95,08/29/19 08:11,"691 Cherry St, Boston, MA 02215" +238923,ThinkPad Laptop,1,999.99,08/05/19 18:06,"68 Chestnut St, New York City, NY 10001" +238924,Google Phone,1,600,08/06/19 08:00,"899 Sunset St, Atlanta, GA 30301" +238924,USB-C Charging Cable,1,11.95,08/06/19 08:00,"899 Sunset St, Atlanta, GA 30301" +238925,34in Ultrawide Monitor,1,379.99,08/24/19 17:56,"947 Cedar St, Dallas, TX 75001" +238926,Apple Airpods Headphones,1,150,08/09/19 00:38,"173 Maple St, Seattle, WA 98101" +238927,Wired Headphones,1,11.99,08/12/19 17:10,"433 Center St, Los Angeles, CA 90001" +238928,AA Batteries (4-pack),1,3.84,08/07/19 19:23,"655 Church St, Seattle, WA 98101" +238929,27in 4K Gaming Monitor,1,389.99,08/22/19 09:50,"35 Johnson St, Boston, MA 02215" +238930,AA Batteries (4-pack),1,3.84,08/03/19 01:52,"145 13th St, San Francisco, CA 94016" +238931,Apple Airpods Headphones,1,150,08/18/19 11:49,"270 2nd St, Los Angeles, CA 90001" +238932,AA Batteries (4-pack),6,3.84,08/22/19 09:19,"689 Sunset St, Los Angeles, CA 90001" +238933,AA Batteries (4-pack),4,3.84,08/13/19 14:28,"313 Spruce St, Los Angeles, CA 90001" +238934,34in Ultrawide Monitor,1,379.99,08/27/19 00:19,"697 Main St, San Francisco, CA 94016" +238935,34in Ultrawide Monitor,1,379.99,08/24/19 13:27,"712 13th St, Austin, TX 73301" +238936,USB-C Charging Cable,1,11.95,08/19/19 23:27,"72 5th St, San Francisco, CA 94016" +238937,27in FHD Monitor,1,149.99,08/19/19 17:20,"904 Church St, Dallas, TX 75001" +238938,Wired Headphones,1,11.99,08/09/19 10:43,"641 Willow St, New York City, NY 10001" +238939,Apple Airpods Headphones,1,150,08/02/19 11:35,"887 5th St, Los Angeles, CA 90001" +238940,AAA Batteries (4-pack),3,2.99,08/11/19 20:48,"180 Main St, San Francisco, CA 94016" +238941,AAA Batteries (4-pack),1,2.99,08/29/19 08:35,"941 Church St, San Francisco, CA 94016" +238942,27in FHD Monitor,1,149.99,08/27/19 18:16,"400 10th St, Los Angeles, CA 90001" +238943,Apple Airpods Headphones,1,150,08/28/19 15:16,"389 14th St, Seattle, WA 98101" +238944,AA Batteries (4-pack),1,3.84,08/13/19 16:10,"911 5th St, Boston, MA 02215" +238945,iPhone,1,700,08/23/19 22:18,"778 5th St, Portland, OR 97035" +238946,USB-C Charging Cable,2,11.95,08/10/19 19:59,"642 South St, San Francisco, CA 94016" +238947,Bose SoundSport Headphones,1,99.99,08/18/19 16:39,"708 West St, New York City, NY 10001" +238948,Wired Headphones,1,11.99,08/30/19 21:35,"20 Park St, New York City, NY 10001" +238949,Flatscreen TV,1,300,08/31/19 22:35,"554 Church St, Portland, ME 04101" +238950,Wired Headphones,1,11.99,08/18/19 15:06,"310 West St, New York City, NY 10001" +238951,Lightning Charging Cable,1,14.95,08/04/19 10:49,"957 6th St, Dallas, TX 75001" +238952,Lightning Charging Cable,1,14.95,08/08/19 11:19,"513 Madison St, San Francisco, CA 94016" +238953,USB-C Charging Cable,1,11.95,08/19/19 10:37,"378 Cherry St, Los Angeles, CA 90001" +238954,Google Phone,1,600,08/23/19 13:30,"507 Spruce St, New York City, NY 10001" +238955,Lightning Charging Cable,1,14.95,08/19/19 16:28,"537 Jefferson St, San Francisco, CA 94016" +238956,AA Batteries (4-pack),1,3.84,09/01/19 01:57,"860 Forest St, New York City, NY 10001" +238957,Flatscreen TV,1,300,08/04/19 18:24,"986 Walnut St, New York City, NY 10001" +238958,USB-C Charging Cable,1,11.95,08/03/19 14:59,"586 Sunset St, Los Angeles, CA 90001" +238959,27in FHD Monitor,1,149.99,08/13/19 07:38,"933 Madison St, San Francisco, CA 94016" +238960,Macbook Pro Laptop,1,1700,08/14/19 13:11,"218 10th St, Atlanta, GA 30301" +238961,Apple Airpods Headphones,1,150,08/30/19 18:55,"18 Lakeview St, Boston, MA 02215" +238962,Lightning Charging Cable,2,14.95,08/25/19 17:17,"811 10th St, New York City, NY 10001" +238963,20in Monitor,1,109.99,08/30/19 08:00,"759 Meadow St, San Francisco, CA 94016" +238964,Wired Headphones,1,11.99,08/03/19 09:40,"41 Lincoln St, San Francisco, CA 94016" +238965,Flatscreen TV,1,300,08/30/19 12:51,"893 North St, Portland, OR 97035" +238966,Wired Headphones,1,11.99,08/28/19 15:42,"470 14th St, Austin, TX 73301" +238967,Bose SoundSport Headphones,1,99.99,08/01/19 21:35,"70 Hill St, Los Angeles, CA 90001" +238968,27in 4K Gaming Monitor,1,389.99,08/20/19 22:54,"299 Park St, Boston, MA 02215" +238968,27in FHD Monitor,1,149.99,08/20/19 22:54,"299 Park St, Boston, MA 02215" +238969,Wired Headphones,1,11.99,08/29/19 08:47,"567 Pine St, Los Angeles, CA 90001" +238970,20in Monitor,1,109.99,08/03/19 23:13,"311 Meadow St, San Francisco, CA 94016" +238971,Lightning Charging Cable,1,14.95,08/09/19 19:41,"783 6th St, Austin, TX 73301" +238972,AAA Batteries (4-pack),1,2.99,08/17/19 15:49,"828 River St, New York City, NY 10001" +238973,Lightning Charging Cable,1,14.95,08/09/19 10:29,"836 Church St, Portland, OR 97035" +238974,Bose SoundSport Headphones,1,99.99,08/03/19 11:23,"295 6th St, Dallas, TX 75001" +238975,AA Batteries (4-pack),1,3.84,08/17/19 15:53,"86 13th St, San Francisco, CA 94016" +238976,Bose SoundSport Headphones,1,99.99,08/13/19 16:52,"798 Forest St, San Francisco, CA 94016" +238977,27in 4K Gaming Monitor,1,389.99,08/03/19 14:24,"465 Lincoln St, San Francisco, CA 94016" +238978,USB-C Charging Cable,1,11.95,08/11/19 01:01,"312 Lakeview St, Boston, MA 02215" +238979,Google Phone,1,600,08/31/19 17:49,"408 Willow St, Dallas, TX 75001" +238980,Wired Headphones,1,11.99,08/19/19 20:23,"180 Chestnut St, New York City, NY 10001" +238981,Apple Airpods Headphones,1,150,08/24/19 17:04,"295 Main St, Dallas, TX 75001" +238982,AAA Batteries (4-pack),1,2.99,08/26/19 13:26,"269 11th St, Los Angeles, CA 90001" +238983,Lightning Charging Cable,1,14.95,08/03/19 15:33,"811 South St, Dallas, TX 75001" +238984,Flatscreen TV,1,300,08/31/19 16:57,"557 11th St, Atlanta, GA 30301" +238984,34in Ultrawide Monitor,1,379.99,08/31/19 16:57,"557 11th St, Atlanta, GA 30301" +238985,USB-C Charging Cable,1,11.95,08/28/19 23:08,"258 9th St, Portland, OR 97035" +238986,AA Batteries (4-pack),1,3.84,08/16/19 14:12,"587 Madison St, Atlanta, GA 30301" +238987,USB-C Charging Cable,1,11.95,08/15/19 13:20,"659 14th St, Portland, OR 97035" +238988,Lightning Charging Cable,1,14.95,08/05/19 15:01,"626 South St, Dallas, TX 75001" +238989,Wired Headphones,1,11.99,08/10/19 01:40,"963 Wilson St, Atlanta, GA 30301" +238990,AAA Batteries (4-pack),1,2.99,08/30/19 22:25,"123 River St, Los Angeles, CA 90001" +238991,Apple Airpods Headphones,1,150,08/16/19 10:38,"44 Main St, New York City, NY 10001" +238992,Macbook Pro Laptop,1,1700,08/12/19 15:58,"605 Pine St, Los Angeles, CA 90001" +238993,Lightning Charging Cable,1,14.95,08/28/19 20:27,"184 13th St, San Francisco, CA 94016" +238994,Lightning Charging Cable,1,14.95,08/03/19 17:09,"872 North St, Seattle, WA 98101" +238995,Apple Airpods Headphones,1,150,08/17/19 21:00,"98 9th St, Dallas, TX 75001" +238996,Bose SoundSport Headphones,1,99.99,08/03/19 17:48,"561 Chestnut St, Austin, TX 73301" +238997,AAA Batteries (4-pack),3,2.99,08/18/19 12:39,"993 7th St, Seattle, WA 98101" +238998,Apple Airpods Headphones,1,150,08/26/19 22:33,"18 Chestnut St, Dallas, TX 75001" +238999,Apple Airpods Headphones,1,150,08/27/19 11:48,"553 Lake St, Boston, MA 02215" +239000,Wired Headphones,1,11.99,08/27/19 13:29,"171 West St, Atlanta, GA 30301" +239001,Wired Headphones,1,11.99,08/28/19 17:36,"511 Cedar St, New York City, NY 10001" +239002,20in Monitor,1,109.99,08/02/19 09:15,"233 Dogwood St, Los Angeles, CA 90001" +239003,27in 4K Gaming Monitor,1,389.99,08/04/19 13:04,"437 River St, Los Angeles, CA 90001" +239004,AA Batteries (4-pack),1,3.84,08/06/19 18:31,"492 Maple St, New York City, NY 10001" +239005,AAA Batteries (4-pack),1,2.99,08/25/19 12:39,"17 Highland St, New York City, NY 10001" +239006,Apple Airpods Headphones,1,150,08/11/19 12:18,"849 14th St, New York City, NY 10001" +239007,Bose SoundSport Headphones,2,99.99,08/19/19 21:24,"233 Wilson St, Dallas, TX 75001" +239008,AA Batteries (4-pack),3,3.84,08/06/19 15:48,"683 Hickory St, Dallas, TX 75001" +239009,Wired Headphones,1,11.99,08/24/19 13:48,"346 14th St, Los Angeles, CA 90001" +239010,iPhone,1,700,08/17/19 16:07,"447 Cherry St, Los Angeles, CA 90001" +239010,Lightning Charging Cable,1,14.95,08/17/19 16:07,"447 Cherry St, Los Angeles, CA 90001" +239011,AAA Batteries (4-pack),4,2.99,08/21/19 20:19,"457 South St, Los Angeles, CA 90001" +239012,AA Batteries (4-pack),1,3.84,08/12/19 17:04,"589 Sunset St, San Francisco, CA 94016" +239013,Lightning Charging Cable,2,14.95,08/04/19 13:45,"566 Hickory St, San Francisco, CA 94016" +239014,Flatscreen TV,1,300,08/28/19 18:48,"962 14th St, Boston, MA 02215" +239015,20in Monitor,1,109.99,08/07/19 09:29,"694 Adams St, New York City, NY 10001" +239016,Bose SoundSport Headphones,1,99.99,08/30/19 23:21,"303 13th St, Los Angeles, CA 90001" +239017,Wired Headphones,1,11.99,08/07/19 11:25,"953 1st St, Portland, ME 04101" +239018,Bose SoundSport Headphones,1,99.99,08/17/19 05:06,"20 Hill St, San Francisco, CA 94016" +239019,Bose SoundSport Headphones,1,99.99,08/15/19 15:11,"500 North St, Los Angeles, CA 90001" +239020,USB-C Charging Cable,1,11.95,08/13/19 09:13,"622 Cherry St, Los Angeles, CA 90001" +239021,Wired Headphones,1,11.99,08/06/19 14:30,"405 Forest St, Portland, OR 97035" +239022,Wired Headphones,1,11.99,08/12/19 19:59,"626 South St, San Francisco, CA 94016" +239023,Wired Headphones,1,11.99,08/01/19 22:33,"359 9th St, Los Angeles, CA 90001" +239024,27in FHD Monitor,1,149.99,08/12/19 10:15,"57 Adams St, Boston, MA 02215" +239025,AAA Batteries (4-pack),1,2.99,08/01/19 11:26,"83 Church St, New York City, NY 10001" +239026,27in FHD Monitor,1,149.99,08/01/19 15:10,"622 6th St, San Francisco, CA 94016" +239027,Google Phone,1,600,08/05/19 09:52,"133 Dogwood St, Portland, OR 97035" +239028,Wired Headphones,1,11.99,08/19/19 10:37,"566 North St, Seattle, WA 98101" +239029,Wired Headphones,1,11.99,08/06/19 12:07,"216 14th St, Boston, MA 02215" +239030,Apple Airpods Headphones,1,150,08/29/19 13:44,"629 Cedar St, Austin, TX 73301" +239031,27in FHD Monitor,1,149.99,08/15/19 13:09,"382 Madison St, Dallas, TX 75001" +239032,Wired Headphones,1,11.99,08/19/19 16:06,"866 11th St, Atlanta, GA 30301" +239033,Lightning Charging Cable,1,14.95,08/09/19 13:51,"240 North St, Los Angeles, CA 90001" +239034,Bose SoundSport Headphones,1,99.99,08/16/19 13:09,"119 10th St, Los Angeles, CA 90001" +239035,Bose SoundSport Headphones,1,99.99,08/04/19 13:07,"139 Maple St, San Francisco, CA 94016" +239036,Wired Headphones,1,11.99,08/15/19 12:45,"724 12th St, Boston, MA 02215" +239037,USB-C Charging Cable,1,11.95,08/19/19 11:17,"703 Elm St, New York City, NY 10001" +239038,Apple Airpods Headphones,1,150,08/07/19 09:57,"462 Ridge St, Portland, OR 97035" +239039,34in Ultrawide Monitor,1,379.99,08/17/19 12:49,"12 Pine St, Austin, TX 73301" +239040,USB-C Charging Cable,1,11.95,08/25/19 19:21,"848 Spruce St, San Francisco, CA 94016" +239041,Wired Headphones,2,11.99,08/06/19 17:20,"50 Main St, Seattle, WA 98101" +239042,USB-C Charging Cable,1,11.95,08/19/19 05:59,"718 9th St, San Francisco, CA 94016" +239043,AA Batteries (4-pack),1,3.84,08/12/19 07:37,"478 Ridge St, New York City, NY 10001" +239044,Macbook Pro Laptop,1,1700,08/17/19 13:22,"360 Washington St, Seattle, WA 98101" +239045,Bose SoundSport Headphones,1,99.99,08/05/19 11:14,"177 12th St, Dallas, TX 75001" +239046,Apple Airpods Headphones,1,150,08/11/19 12:56,"928 North St, Atlanta, GA 30301" +239047,Wired Headphones,1,11.99,08/06/19 09:02,"936 South St, New York City, NY 10001" +239048,Vareebadd Phone,1,400,08/22/19 00:48,"46 Forest St, Boston, MA 02215" +239049,Lightning Charging Cable,1,14.95,08/26/19 16:19,"664 Lake St, New York City, NY 10001" +239050,Vareebadd Phone,1,400,08/26/19 11:24,"426 14th St, Portland, OR 97035" +239050,Wired Headphones,2,11.99,08/26/19 11:24,"426 14th St, Portland, OR 97035" +239051,20in Monitor,1,109.99,08/03/19 23:54,"606 Meadow St, Boston, MA 02215" +239052,Lightning Charging Cable,1,14.95,08/23/19 23:07,"187 13th St, New York City, NY 10001" +239053,AAA Batteries (4-pack),1,2.99,08/08/19 21:32,"955 Lakeview St, Austin, TX 73301" +239054,Wired Headphones,1,11.99,08/08/19 19:13,"986 Maple St, Austin, TX 73301" +239055,Bose SoundSport Headphones,1,99.99,08/14/19 16:15,"973 Adams St, Atlanta, GA 30301" +239056,AAA Batteries (4-pack),2,2.99,08/16/19 21:14,"25 West St, Los Angeles, CA 90001" +239057,34in Ultrawide Monitor,1,379.99,08/07/19 22:53,"734 11th St, San Francisco, CA 94016" +239058,Bose SoundSport Headphones,1,99.99,08/27/19 14:03,"128 12th St, Dallas, TX 75001" +239059,20in Monitor,1,109.99,08/13/19 12:10,"286 Hill St, San Francisco, CA 94016" +239060,Bose SoundSport Headphones,1,99.99,08/28/19 18:42,"702 13th St, San Francisco, CA 94016" +239061,Lightning Charging Cable,1,14.95,08/31/19 11:56,"422 8th St, Austin, TX 73301" +239062,Bose SoundSport Headphones,1,99.99,08/06/19 16:22,"674 Washington St, Los Angeles, CA 90001" +239063,AAA Batteries (4-pack),1,2.99,08/25/19 16:47,"361 Center St, Los Angeles, CA 90001" +239064,Wired Headphones,1,11.99,08/01/19 10:21,"488 Ridge St, New York City, NY 10001" +239065,USB-C Charging Cable,1,11.95,08/05/19 00:15,"641 Jackson St, Los Angeles, CA 90001" +239066,Lightning Charging Cable,2,14.95,08/31/19 15:54,"612 14th St, Boston, MA 02215" +239067,Vareebadd Phone,1,400,08/19/19 12:45,"247 Ridge St, Boston, MA 02215" +239068,Wired Headphones,1,11.99,08/06/19 19:38,"629 Willow St, Los Angeles, CA 90001" +239069,Bose SoundSport Headphones,1,99.99,08/15/19 16:59,"467 West St, Los Angeles, CA 90001" +239070,27in FHD Monitor,1,149.99,08/01/19 13:21,"926 14th St, Seattle, WA 98101" +239071,Google Phone,1,600,08/08/19 19:06,"229 Main St, Portland, OR 97035" +239072,AA Batteries (4-pack),1,3.84,08/28/19 15:29,"388 13th St, Portland, OR 97035" +239073,27in 4K Gaming Monitor,1,389.99,08/14/19 14:04,"61 Ridge St, New York City, NY 10001" +239074,USB-C Charging Cable,1,11.95,08/31/19 21:13,"501 Washington St, San Francisco, CA 94016" +239075,AAA Batteries (4-pack),2,2.99,08/15/19 11:54,"704 Jackson St, Los Angeles, CA 90001" +239076,Vareebadd Phone,1,400,08/14/19 11:51,"749 14th St, Atlanta, GA 30301" +239076,Wired Headphones,1,11.99,08/14/19 11:51,"749 14th St, Atlanta, GA 30301" +239077,Lightning Charging Cable,1,14.95,08/04/19 15:54,"995 11th St, San Francisco, CA 94016" +239078,AAA Batteries (4-pack),1,2.99,08/03/19 13:05,"8 Ridge St, Seattle, WA 98101" +239079,Apple Airpods Headphones,1,150,08/30/19 22:58,"407 Park St, Los Angeles, CA 90001" +239080,Lightning Charging Cable,2,14.95,08/27/19 12:20,"414 4th St, Los Angeles, CA 90001" +239081,AAA Batteries (4-pack),2,2.99,08/08/19 19:13,"573 North St, New York City, NY 10001" +239082,20in Monitor,1,109.99,08/30/19 11:49,"700 West St, Los Angeles, CA 90001" +239083,34in Ultrawide Monitor,1,379.99,08/03/19 12:56,"722 5th St, New York City, NY 10001" +239084,AA Batteries (4-pack),1,3.84,08/02/19 21:56,"627 River St, San Francisco, CA 94016" +239085,AAA Batteries (4-pack),1,2.99,08/23/19 23:40,"585 Madison St, Los Angeles, CA 90001" +,,,,, +239086,Wired Headphones,1,11.99,08/01/19 19:52,"868 Maple St, New York City, NY 10001" +239087,34in Ultrawide Monitor,1,379.99,08/26/19 12:59,"395 Ridge St, Dallas, TX 75001" +239088,AAA Batteries (4-pack),1,2.99,08/18/19 07:39,"813 10th St, Portland, ME 04101" +239089,Macbook Pro Laptop,1,1700,08/05/19 18:24,"456 River St, Los Angeles, CA 90001" +239090,34in Ultrawide Monitor,1,379.99,08/31/19 09:56,"271 Ridge St, Portland, ME 04101" +239091,Apple Airpods Headphones,1,150,08/28/19 16:34,"270 Main St, New York City, NY 10001" +239092,USB-C Charging Cable,1,11.95,08/16/19 12:17,"533 River St, Los Angeles, CA 90001" +239093,Wired Headphones,1,11.99,08/23/19 20:32,"437 Dogwood St, Portland, OR 97035" +239094,20in Monitor,1,109.99,08/22/19 20:00,"2 Jefferson St, Boston, MA 02215" +239095,USB-C Charging Cable,1,11.95,08/09/19 17:43,"399 13th St, Los Angeles, CA 90001" +239096,Apple Airpods Headphones,1,150,08/19/19 13:38,"631 Johnson St, Los Angeles, CA 90001" +239097,27in FHD Monitor,1,149.99,08/11/19 15:37,"506 Cherry St, San Francisco, CA 94016" +239098,AAA Batteries (4-pack),2,2.99,08/21/19 05:48,"107 Madison St, Dallas, TX 75001" +239099,Wired Headphones,1,11.99,08/25/19 17:18,"203 12th St, San Francisco, CA 94016" +239100,Flatscreen TV,1,300,08/08/19 11:39,"767 Forest St, Portland, OR 97035" +239101,34in Ultrawide Monitor,1,379.99,08/30/19 19:57,"111 Adams St, Austin, TX 73301" +239102,AA Batteries (4-pack),1,3.84,08/31/19 12:48,"988 West St, Los Angeles, CA 90001" +239103,Bose SoundSport Headphones,1,99.99,08/16/19 12:57,"209 Dogwood St, Los Angeles, CA 90001" +239104,AAA Batteries (4-pack),1,2.99,08/27/19 12:01,"285 Walnut St, San Francisco, CA 94016" +239105,AAA Batteries (4-pack),2,2.99,08/05/19 01:07,"614 6th St, New York City, NY 10001" +239106,ThinkPad Laptop,1,999.99,08/15/19 08:10,"771 Lake St, Dallas, TX 75001" +239107,AA Batteries (4-pack),1,3.84,08/12/19 15:49,"740 Spruce St, Boston, MA 02215" +239108,Apple Airpods Headphones,1,150,08/03/19 18:25,"565 2nd St, Atlanta, GA 30301" +239109,Bose SoundSport Headphones,1,99.99,08/07/19 13:33,"688 Lakeview St, San Francisco, CA 94016" +239110,Apple Airpods Headphones,1,150,08/31/19 20:58,"812 1st St, Seattle, WA 98101" +239111,USB-C Charging Cable,1,11.95,08/22/19 18:04,"412 14th St, Atlanta, GA 30301" +239112,27in FHD Monitor,1,149.99,08/09/19 17:29,"371 Park St, Boston, MA 02215" +239113,AA Batteries (4-pack),1,3.84,08/04/19 13:29,"750 Spruce St, San Francisco, CA 94016" +239114,27in FHD Monitor,1,149.99,08/26/19 18:22,"443 7th St, Atlanta, GA 30301" +239115,27in FHD Monitor,1,149.99,08/21/19 22:42,"174 North St, San Francisco, CA 94016" +239116,Lightning Charging Cable,1,14.95,08/23/19 09:13,"34 Highland St, Portland, OR 97035" +239117,USB-C Charging Cable,1,11.95,08/31/19 19:02,"652 Jackson St, Atlanta, GA 30301" +239118,ThinkPad Laptop,1,999.99,08/14/19 08:13,"949 West St, Los Angeles, CA 90001" +239119,AAA Batteries (4-pack),1,2.99,08/22/19 20:01,"389 7th St, Boston, MA 02215" +239120,20in Monitor,1,109.99,08/29/19 12:53,"378 Hickory St, Dallas, TX 75001" +239121,USB-C Charging Cable,1,11.95,08/17/19 11:36,"659 9th St, San Francisco, CA 94016" +239122,Lightning Charging Cable,1,14.95,08/08/19 19:42,"196 Willow St, Boston, MA 02215" +239123,AA Batteries (4-pack),1,3.84,08/23/19 10:34,"757 Elm St, Boston, MA 02215" +239124,AA Batteries (4-pack),3,3.84,08/01/19 20:11,"171 West St, Dallas, TX 75001" +239125,27in 4K Gaming Monitor,1,389.99,08/30/19 21:49,"816 Cherry St, Boston, MA 02215" +239126,20in Monitor,1,109.99,08/02/19 12:00,"929 Pine St, Seattle, WA 98101" +239127,Google Phone,1,600,08/17/19 22:20,"528 Meadow St, Atlanta, GA 30301" +239128,AAA Batteries (4-pack),1,2.99,08/29/19 08:15,"849 14th St, New York City, NY 10001" +,,,,, +239129,AAA Batteries (4-pack),2,2.99,08/29/19 13:55,"536 Church St, Dallas, TX 75001" +239130,AAA Batteries (4-pack),1,2.99,08/05/19 12:35,"420 Forest St, Boston, MA 02215" +239131,Vareebadd Phone,1,400,08/27/19 12:41,"541 River St, New York City, NY 10001" +239132,USB-C Charging Cable,1,11.95,08/16/19 10:51,"777 Elm St, San Francisco, CA 94016" +239133,Apple Airpods Headphones,1,150,08/20/19 12:57,"252 12th St, Boston, MA 02215" +239134,20in Monitor,1,109.99,08/17/19 13:26,"501 Cedar St, Dallas, TX 75001" +239135,Google Phone,1,600,08/31/19 16:29,"95 Jefferson St, San Francisco, CA 94016" +239136,Wired Headphones,1,11.99,08/01/19 18:57,"297 Johnson St, New York City, NY 10001" +239137,Vareebadd Phone,1,400,08/13/19 08:25,"135 14th St, Portland, OR 97035" +239137,USB-C Charging Cable,1,11.95,08/13/19 08:25,"135 14th St, Portland, OR 97035" +239138,Lightning Charging Cable,1,14.95,08/11/19 20:53,"632 West St, Dallas, TX 75001" +239139,Macbook Pro Laptop,1,1700,08/07/19 19:45,"39 Jackson St, Boston, MA 02215" +239140,Lightning Charging Cable,1,14.95,08/29/19 07:28,"76 Wilson St, San Francisco, CA 94016" +239141,AAA Batteries (4-pack),1,2.99,08/05/19 09:02,"855 Jackson St, San Francisco, CA 94016" +239142,iPhone,1,700,08/05/19 05:45,"526 7th St, Atlanta, GA 30301" +239143,AAA Batteries (4-pack),1,2.99,08/11/19 19:12,"317 Church St, New York City, NY 10001" +239144,USB-C Charging Cable,1,11.95,08/26/19 13:57,"765 Meadow St, Austin, TX 73301" +239145,USB-C Charging Cable,1,11.95,08/25/19 16:51,"597 Cherry St, Dallas, TX 75001" +239146,20in Monitor,1,109.99,08/09/19 21:11,"963 1st St, New York City, NY 10001" +239147,20in Monitor,1,109.99,08/28/19 13:47,"471 Lake St, Los Angeles, CA 90001" +239148,USB-C Charging Cable,1,11.95,08/05/19 20:14,"535 Forest St, New York City, NY 10001" +239149,Apple Airpods Headphones,1,150,08/16/19 07:34,"891 Spruce St, San Francisco, CA 94016" +239150,AAA Batteries (4-pack),1,2.99,08/21/19 17:55,"740 Wilson St, New York City, NY 10001" +239151,Lightning Charging Cable,1,14.95,08/10/19 20:53,"598 4th St, San Francisco, CA 94016" +239152,Lightning Charging Cable,1,14.95,08/03/19 13:20,"222 Lake St, Portland, ME 04101" +239153,AA Batteries (4-pack),1,3.84,08/27/19 07:11,"641 Spruce St, San Francisco, CA 94016" +239154,Flatscreen TV,1,300,08/25/19 17:55,"963 4th St, Los Angeles, CA 90001" +239155,USB-C Charging Cable,1,11.95,08/29/19 18:35,"106 Adams St, Los Angeles, CA 90001" +239156,Wired Headphones,1,11.99,08/18/19 07:41,"906 14th St, Portland, OR 97035" +239157,Wired Headphones,1,11.99,08/01/19 13:40,"453 12th St, San Francisco, CA 94016" +239158,Google Phone,1,600,08/11/19 12:06,"20 14th St, San Francisco, CA 94016" +239158,USB-C Charging Cable,1,11.95,08/11/19 12:06,"20 14th St, San Francisco, CA 94016" +239159,ThinkPad Laptop,1,999.99,08/06/19 13:08,"644 River St, New York City, NY 10001" +239159,Wired Headphones,1,11.99,08/06/19 13:08,"644 River St, New York City, NY 10001" +239160,Bose SoundSport Headphones,1,99.99,08/19/19 02:00,"166 Main St, Los Angeles, CA 90001" +239161,AA Batteries (4-pack),2,3.84,08/24/19 21:52,"234 Wilson St, New York City, NY 10001" +239162,AAA Batteries (4-pack),2,2.99,08/10/19 10:23,"501 Church St, Los Angeles, CA 90001" +239163,Lightning Charging Cable,1,14.95,08/21/19 21:10,"236 6th St, Seattle, WA 98101" +239164,Apple Airpods Headphones,1,150,08/30/19 14:53,"686 Hill St, Los Angeles, CA 90001" +239165,AA Batteries (4-pack),1,3.84,08/22/19 12:09,"630 Willow St, Portland, OR 97035" +239166,Lightning Charging Cable,1,14.95,08/21/19 13:14,"774 Willow St, San Francisco, CA 94016" +239167,USB-C Charging Cable,3,11.95,08/17/19 17:28,"395 Lincoln St, Dallas, TX 75001" +239168,34in Ultrawide Monitor,1,379.99,08/20/19 13:11,"338 Center St, Atlanta, GA 30301" +239169,USB-C Charging Cable,1,11.95,08/25/19 20:25,"902 Lakeview St, New York City, NY 10001" +239170,AAA Batteries (4-pack),1,2.99,08/06/19 18:48,"139 Dogwood St, New York City, NY 10001" +239171,27in 4K Gaming Monitor,1,389.99,08/20/19 11:05,"883 Willow St, New York City, NY 10001" +239172,Bose SoundSport Headphones,1,99.99,08/27/19 08:44,"96 Hickory St, Los Angeles, CA 90001" +239173,AA Batteries (4-pack),1,3.84,08/07/19 12:40,"756 12th St, New York City, NY 10001" +239174,Lightning Charging Cable,1,14.95,08/26/19 15:02,"225 Johnson St, Boston, MA 02215" +239175,AAA Batteries (4-pack),1,2.99,08/14/19 01:55,"328 Cedar St, Boston, MA 02215" +239176,AAA Batteries (4-pack),1,2.99,08/21/19 13:41,"861 Cedar St, Portland, OR 97035" +239177,ThinkPad Laptop,1,999.99,08/09/19 17:50,"865 Hickory St, San Francisco, CA 94016" +239178,Google Phone,1,600,08/28/19 12:25,"956 14th St, Los Angeles, CA 90001" +239179,27in FHD Monitor,1,149.99,08/17/19 05:59,"416 Lakeview St, Austin, TX 73301" +239180,34in Ultrawide Monitor,1,379.99,08/27/19 10:37,"684 Hickory St, Seattle, WA 98101" +239181,ThinkPad Laptop,1,999.99,08/29/19 11:16,"462 Lake St, San Francisco, CA 94016" +239182,AA Batteries (4-pack),1,3.84,08/29/19 08:58,"634 Main St, New York City, NY 10001" +239183,Wired Headphones,1,11.99,08/17/19 17:47,"44 Lake St, Los Angeles, CA 90001" +239184,Bose SoundSport Headphones,1,99.99,08/14/19 02:19,"739 North St, Atlanta, GA 30301" +239185,Lightning Charging Cable,2,14.95,08/13/19 22:04,"64 Jackson St, Los Angeles, CA 90001" +239186,AA Batteries (4-pack),2,3.84,08/27/19 14:01,"435 South St, San Francisco, CA 94016" +239187,Lightning Charging Cable,1,14.95,08/21/19 13:52,"5 7th St, Austin, TX 73301" +239188,27in 4K Gaming Monitor,2,389.99,08/21/19 19:28,"911 5th St, San Francisco, CA 94016" +239189,34in Ultrawide Monitor,1,379.99,08/16/19 07:40,"815 Hickory St, New York City, NY 10001" +239190,AAA Batteries (4-pack),1,2.99,08/08/19 20:35,"965 Elm St, San Francisco, CA 94016" +239191,USB-C Charging Cable,1,11.95,08/09/19 17:15,"45 Sunset St, Los Angeles, CA 90001" +239192,27in FHD Monitor,1,149.99,08/19/19 17:32,"303 Main St, Austin, TX 73301" +239193,Bose SoundSport Headphones,1,99.99,08/02/19 09:53,"32 River St, San Francisco, CA 94016" +239194,34in Ultrawide Monitor,1,379.99,08/01/19 12:49,"888 Jackson St, San Francisco, CA 94016" +239195,Apple Airpods Headphones,1,150,08/18/19 08:08,"140 Wilson St, Atlanta, GA 30301" +239196,Macbook Pro Laptop,1,1700,08/16/19 13:32,"383 Maple St, Boston, MA 02215" +239197,iPhone,1,700,08/29/19 17:01,"409 Ridge St, San Francisco, CA 94016" +239198,27in 4K Gaming Monitor,1,389.99,08/02/19 19:41,"977 Park St, Seattle, WA 98101" +239199,iPhone,1,700,08/13/19 12:09,"630 8th St, Los Angeles, CA 90001" +239200,Lightning Charging Cable,1,14.95,08/03/19 14:14,"198 13th St, New York City, NY 10001" +239201,Lightning Charging Cable,1,14.95,08/24/19 08:26,"107 7th St, Seattle, WA 98101" +239202,Google Phone,1,600,08/19/19 16:48,"490 Lincoln St, Los Angeles, CA 90001" +239202,Wired Headphones,1,11.99,08/19/19 16:48,"490 Lincoln St, Los Angeles, CA 90001" +239203,Google Phone,1,600,08/16/19 13:25,"345 Maple St, Austin, TX 73301" +239204,AAA Batteries (4-pack),1,2.99,08/31/19 17:39,"616 Main St, Portland, OR 97035" +239205,Apple Airpods Headphones,1,150,08/30/19 14:52,"799 Center St, Boston, MA 02215" +239206,Apple Airpods Headphones,1,150,08/20/19 14:53,"590 Hickory St, Austin, TX 73301" +239207,AAA Batteries (4-pack),2,2.99,08/08/19 16:57,"8 Main St, San Francisco, CA 94016" +239208,AA Batteries (4-pack),2,3.84,08/01/19 07:41,"34 Jefferson St, San Francisco, CA 94016" +239209,Apple Airpods Headphones,1,150,08/26/19 14:25,"430 Park St, San Francisco, CA 94016" +239210,Flatscreen TV,1,300,08/14/19 21:08,"531 Park St, Seattle, WA 98101" +239211,Flatscreen TV,1,300,08/14/19 13:31,"122 Highland St, San Francisco, CA 94016" +239212,Bose SoundSport Headphones,1,99.99,08/03/19 11:41,"647 Center St, Boston, MA 02215" +239213,AA Batteries (4-pack),3,3.84,08/25/19 13:20,"118 Lakeview St, New York City, NY 10001" +239214,Wired Headphones,1,11.99,08/04/19 23:33,"591 Madison St, Los Angeles, CA 90001" +239215,USB-C Charging Cable,1,11.95,08/08/19 17:56,"553 12th St, San Francisco, CA 94016" +239216,Wired Headphones,1,11.99,08/04/19 12:15,"81 Church St, Los Angeles, CA 90001" +239217,AA Batteries (4-pack),1,3.84,08/06/19 15:43,"591 8th St, Seattle, WA 98101" +239218,Google Phone,1,600,08/18/19 01:08,"112 Elm St, San Francisco, CA 94016" +239219,Bose SoundSport Headphones,1,99.99,08/25/19 15:30,"56 Hickory St, Boston, MA 02215" +239220,Apple Airpods Headphones,1,150,08/05/19 11:44,"325 2nd St, Dallas, TX 75001" +239221,USB-C Charging Cable,1,11.95,08/05/19 16:46,"65 Church St, Seattle, WA 98101" +239222,AAA Batteries (4-pack),1,2.99,08/30/19 14:20,"988 Madison St, Los Angeles, CA 90001" +239223,USB-C Charging Cable,2,11.95,08/01/19 10:56,"432 6th St, Seattle, WA 98101" +239224,Lightning Charging Cable,1,14.95,08/25/19 10:29,"167 Chestnut St, Dallas, TX 75001" +239225,Lightning Charging Cable,1,14.95,08/28/19 18:50,"205 Adams St, Austin, TX 73301" +239226,Apple Airpods Headphones,1,150,08/17/19 11:03,"406 Chestnut St, Boston, MA 02215" +239227,AA Batteries (4-pack),1,3.84,08/21/19 17:14,"692 Hickory St, San Francisco, CA 94016" +239228,27in FHD Monitor,1,149.99,08/29/19 19:40,"740 Pine St, New York City, NY 10001" +239229,34in Ultrawide Monitor,1,379.99,08/30/19 10:35,"869 Lakeview St, Los Angeles, CA 90001" +239230,Bose SoundSport Headphones,1,99.99,08/03/19 13:53,"743 Willow St, Los Angeles, CA 90001" +239231,Lightning Charging Cable,1,14.95,08/24/19 09:45,"307 Johnson St, Austin, TX 73301" +239232,27in 4K Gaming Monitor,1,389.99,08/21/19 12:44,"202 Church St, Austin, TX 73301" +239233,Apple Airpods Headphones,1,150,08/08/19 12:12,"498 Park St, New York City, NY 10001" +239234,Apple Airpods Headphones,1,150,08/06/19 14:40,"152 Jefferson St, Los Angeles, CA 90001" +239235,Wired Headphones,1,11.99,08/29/19 10:38,"401 Jackson St, Portland, OR 97035" +239236,USB-C Charging Cable,1,11.95,08/28/19 12:11,"648 Sunset St, Boston, MA 02215" +239237,34in Ultrawide Monitor,1,379.99,08/30/19 16:24,"690 Walnut St, Dallas, TX 75001" +239238,Lightning Charging Cable,2,14.95,08/13/19 19:16,"357 4th St, Seattle, WA 98101" +239239,Lightning Charging Cable,1,14.95,08/24/19 08:24,"555 Spruce St, Seattle, WA 98101" +239240,iPhone,1,700,08/06/19 14:02,"347 1st St, New York City, NY 10001" +239241,Lightning Charging Cable,1,14.95,08/21/19 23:12,"417 Chestnut St, San Francisco, CA 94016" +239241,Apple Airpods Headphones,1,150,08/21/19 23:12,"417 Chestnut St, San Francisco, CA 94016" +239242,AA Batteries (4-pack),1,3.84,08/09/19 08:38,"768 6th St, New York City, NY 10001" +239243,AA Batteries (4-pack),1,3.84,08/03/19 16:18,"5 West St, San Francisco, CA 94016" +239244,USB-C Charging Cable,1,11.95,08/11/19 10:10,"582 Forest St, Los Angeles, CA 90001" +239245,AAA Batteries (4-pack),3,2.99,08/19/19 09:45,"746 Lakeview St, New York City, NY 10001" +239246,Lightning Charging Cable,1,14.95,08/26/19 21:39,"126 7th St, New York City, NY 10001" +239247,Lightning Charging Cable,1,14.95,08/22/19 10:05,"371 Elm St, Los Angeles, CA 90001" +239248,AA Batteries (4-pack),2,3.84,08/22/19 20:21,"715 Hill St, San Francisco, CA 94016" +239249,USB-C Charging Cable,1,11.95,08/02/19 19:26,"667 2nd St, San Francisco, CA 94016" +239250,AA Batteries (4-pack),3,3.84,08/27/19 18:42,"908 Washington St, New York City, NY 10001" +239251,USB-C Charging Cable,1,11.95,08/13/19 23:13,"259 Hickory St, New York City, NY 10001" +239252,USB-C Charging Cable,1,11.95,08/30/19 12:14,"977 Park St, Los Angeles, CA 90001" +239253,Lightning Charging Cable,1,14.95,08/09/19 11:31,"20 Johnson St, Los Angeles, CA 90001" +239254,Bose SoundSport Headphones,1,99.99,08/15/19 09:33,"471 Hill St, New York City, NY 10001" +239255,Flatscreen TV,1,300,08/10/19 12:19,"242 Center St, Seattle, WA 98101" +239256,Lightning Charging Cable,1,14.95,08/30/19 19:36,"535 6th St, Boston, MA 02215" +239257,iPhone,1,700,08/30/19 21:32,"827 10th St, New York City, NY 10001" +239258,Macbook Pro Laptop,1,1700,08/31/19 17:55,"563 Madison St, New York City, NY 10001" +239259,Lightning Charging Cable,2,14.95,08/04/19 14:31,"912 North St, Austin, TX 73301" +239260,Lightning Charging Cable,2,14.95,08/17/19 12:25,"964 9th St, Dallas, TX 75001" +239261,USB-C Charging Cable,1,11.95,08/17/19 03:42,"269 Cherry St, Los Angeles, CA 90001" +239262,34in Ultrawide Monitor,1,379.99,08/11/19 10:50,"877 Ridge St, New York City, NY 10001" +239263,iPhone,1,700,08/27/19 21:10,"589 Willow St, New York City, NY 10001" +239263,Lightning Charging Cable,1,14.95,08/27/19 21:10,"589 Willow St, New York City, NY 10001" +239264,Bose SoundSport Headphones,1,99.99,08/05/19 11:33,"81 10th St, San Francisco, CA 94016" +239265,USB-C Charging Cable,1,11.95,08/17/19 18:06,"590 Johnson St, Austin, TX 73301" +239266,AAA Batteries (4-pack),2,2.99,08/30/19 08:22,"525 Sunset St, Seattle, WA 98101" +239267,34in Ultrawide Monitor,1,379.99,08/22/19 10:15,"718 6th St, Los Angeles, CA 90001" +239268,Macbook Pro Laptop,1,1700,08/20/19 14:07,"27 8th St, San Francisco, CA 94016" +239269,Macbook Pro Laptop,1,1700,08/04/19 11:52,"278 Forest St, Seattle, WA 98101" +239270,Apple Airpods Headphones,1,150,08/09/19 16:26,"726 11th St, San Francisco, CA 94016" +239271,AAA Batteries (4-pack),1,2.99,08/25/19 01:59,"126 River St, San Francisco, CA 94016" +239272,ThinkPad Laptop,1,999.99,08/09/19 14:35,"860 Ridge St, Austin, TX 73301" +239273,Google Phone,1,600,08/10/19 18:13,"379 Hickory St, Los Angeles, CA 90001" +239273,USB-C Charging Cable,1,11.95,08/10/19 18:13,"379 Hickory St, Los Angeles, CA 90001" +239274,Bose SoundSport Headphones,1,99.99,08/24/19 15:55,"319 River St, Dallas, TX 75001" +239275,USB-C Charging Cable,1,11.95,08/06/19 16:56,"230 Lake St, San Francisco, CA 94016" +239276,AA Batteries (4-pack),1,3.84,08/04/19 17:48,"959 Maple St, Los Angeles, CA 90001" +239277,AAA Batteries (4-pack),1,2.99,08/05/19 08:39,"183 Madison St, San Francisco, CA 94016" +239278,Lightning Charging Cable,1,14.95,08/09/19 00:06,"431 Jackson St, Los Angeles, CA 90001" +239279,20in Monitor,1,109.99,08/08/19 12:42,"295 West St, San Francisco, CA 94016" +239280,AA Batteries (4-pack),1,3.84,08/27/19 18:08,"38 Spruce St, San Francisco, CA 94016" +239281,34in Ultrawide Monitor,1,379.99,08/17/19 21:36,"78 Spruce St, Boston, MA 02215" +239282,27in 4K Gaming Monitor,1,389.99,08/18/19 12:00,"315 Hickory St, Seattle, WA 98101" +239283,AAA Batteries (4-pack),2,2.99,08/27/19 17:40,"943 Lakeview St, Dallas, TX 75001" +239284,Apple Airpods Headphones,1,150,08/17/19 14:09,"631 Hill St, Los Angeles, CA 90001" +239285,27in FHD Monitor,1,149.99,08/11/19 17:20,"159 Main St, Atlanta, GA 30301" +239286,AA Batteries (4-pack),1,3.84,08/12/19 20:58,"890 Highland St, Portland, OR 97035" +239287,AA Batteries (4-pack),1,3.84,08/08/19 10:59,"810 Park St, Austin, TX 73301" +239288,27in FHD Monitor,1,149.99,08/14/19 12:41,"794 Church St, San Francisco, CA 94016" +239289,Vareebadd Phone,1,400,08/31/19 12:56,"194 12th St, San Francisco, CA 94016" +239290,Flatscreen TV,1,300,08/18/19 15:53,"787 Willow St, Dallas, TX 75001" +239291,ThinkPad Laptop,1,999.99,08/02/19 11:14,"285 North St, Seattle, WA 98101" +239292,Wired Headphones,1,11.99,08/14/19 22:17,"733 Forest St, Boston, MA 02215" +239293,Lightning Charging Cable,1,14.95,08/24/19 19:36,"999 Highland St, San Francisco, CA 94016" +239294,USB-C Charging Cable,3,11.95,08/11/19 00:38,"238 6th St, San Francisco, CA 94016" +239295,USB-C Charging Cable,1,11.95,08/15/19 15:21,"522 10th St, San Francisco, CA 94016" +239296,Flatscreen TV,1,300,08/19/19 22:15,"667 Park St, Los Angeles, CA 90001" +239297,Lightning Charging Cable,2,14.95,08/13/19 13:00,"971 North St, Seattle, WA 98101" +239298,Bose SoundSport Headphones,1,99.99,08/29/19 04:56,"714 Adams St, Los Angeles, CA 90001" +239299,ThinkPad Laptop,1,999.99,08/11/19 10:35,"306 Wilson St, Los Angeles, CA 90001" +239300,Flatscreen TV,1,300,08/16/19 23:14,"50 River St, Boston, MA 02215" +239301,LG Dryer,1,600.0,08/12/19 17:39,"571 Church St, Portland, OR 97035" +239302,AA Batteries (4-pack),1,3.84,08/01/19 20:29,"817 7th St, New York City, NY 10001" +239303,Macbook Pro Laptop,1,1700,08/01/19 08:17,"441 Washington St, Seattle, WA 98101" +239304,Apple Airpods Headphones,1,150,08/19/19 20:45,"421 Washington St, Boston, MA 02215" +239305,Apple Airpods Headphones,1,150,08/19/19 16:39,"551 12th St, Seattle, WA 98101" +239306,AA Batteries (4-pack),2,3.84,08/20/19 00:57,"715 Forest St, New York City, NY 10001" +239307,Wired Headphones,1,11.99,08/30/19 19:30,"628 Meadow St, Portland, OR 97035" +239307,34in Ultrawide Monitor,1,379.99,08/30/19 19:30,"628 Meadow St, Portland, OR 97035" +239308,AAA Batteries (4-pack),2,2.99,08/03/19 20:40,"292 Jackson St, New York City, NY 10001" +239309,Lightning Charging Cable,1,14.95,08/11/19 18:21,"937 Adams St, Atlanta, GA 30301" +239310,Wired Headphones,1,11.99,08/22/19 01:15,"790 Elm St, Boston, MA 02215" +239311,Wired Headphones,1,11.99,08/20/19 21:59,"766 Spruce St, Atlanta, GA 30301" +239312,34in Ultrawide Monitor,1,379.99,08/06/19 15:30,"48 6th St, New York City, NY 10001" +239313,Apple Airpods Headphones,1,150,08/16/19 02:25,"97 Pine St, Boston, MA 02215" +239314,Bose SoundSport Headphones,1,99.99,08/15/19 20:13,"54 5th St, Portland, OR 97035" +239315,AAA Batteries (4-pack),1,2.99,08/11/19 14:32,"105 Spruce St, Seattle, WA 98101" +239316,AA Batteries (4-pack),1,3.84,08/30/19 18:58,"511 Elm St, San Francisco, CA 94016" +239317,34in Ultrawide Monitor,1,379.99,08/28/19 13:03,"303 River St, Portland, OR 97035" +239318,AA Batteries (4-pack),2,3.84,08/11/19 18:15,"521 Adams St, Portland, ME 04101" +239319,Bose SoundSport Headphones,1,99.99,08/04/19 23:26,"661 North St, San Francisco, CA 94016" +239320,Wired Headphones,1,11.99,08/16/19 17:53,"960 Jackson St, Los Angeles, CA 90001" +239321,Bose SoundSport Headphones,1,99.99,08/17/19 12:34,"70 Spruce St, Boston, MA 02215" +239322,20in Monitor,1,109.99,08/19/19 20:03,"479 Spruce St, San Francisco, CA 94016" +239323,AAA Batteries (4-pack),1,2.99,08/29/19 22:42,"318 Johnson St, San Francisco, CA 94016" +239324,LG Washing Machine,1,600.0,08/10/19 02:55,"513 Lakeview St, San Francisco, CA 94016" +239325,Macbook Pro Laptop,1,1700,08/16/19 22:32,"221 Lincoln St, San Francisco, CA 94016" +239326,USB-C Charging Cable,1,11.95,08/06/19 22:09,"709 Wilson St, San Francisco, CA 94016" +239327,Flatscreen TV,1,300,08/06/19 20:55,"789 11th St, Los Angeles, CA 90001" +239328,Macbook Pro Laptop,1,1700,08/03/19 18:47,"352 Lakeview St, Los Angeles, CA 90001" +239329,Wired Headphones,1,11.99,08/21/19 19:48,"418 Jefferson St, New York City, NY 10001" +239330,Wired Headphones,1,11.99,08/26/19 19:34,"248 Adams St, Atlanta, GA 30301" +239331,27in FHD Monitor,1,149.99,08/01/19 21:09,"542 6th St, Los Angeles, CA 90001" +239332,AAA Batteries (4-pack),2,2.99,08/16/19 17:30,"536 2nd St, Dallas, TX 75001" +239333,Lightning Charging Cable,1,14.95,08/06/19 21:02,"20 12th St, Seattle, WA 98101" +239334,Wired Headphones,1,11.99,08/29/19 21:17,"592 South St, Dallas, TX 75001" +239335,AAA Batteries (4-pack),1,2.99,08/20/19 13:47,"766 12th St, Seattle, WA 98101" +239336,Flatscreen TV,1,300,08/20/19 23:41,"784 7th St, Dallas, TX 75001" +239337,Wired Headphones,1,11.99,08/30/19 12:15,"848 Wilson St, Austin, TX 73301" +239338,Wired Headphones,1,11.99,08/24/19 21:55,"28 13th St, San Francisco, CA 94016" +239339,27in FHD Monitor,1,149.99,08/14/19 11:38,"928 Meadow St, New York City, NY 10001" +239340,Flatscreen TV,1,300,08/10/19 19:39,"164 9th St, Seattle, WA 98101" +239341,27in FHD Monitor,1,149.99,08/16/19 13:30,"745 6th St, San Francisco, CA 94016" +239342,27in FHD Monitor,1,149.99,08/04/19 12:12,"773 Johnson St, Los Angeles, CA 90001" +239343,Wired Headphones,2,11.99,08/29/19 19:21,"797 Meadow St, Boston, MA 02215" +239344,AA Batteries (4-pack),1,3.84,08/24/19 10:21,"9 8th St, Los Angeles, CA 90001" +239345,Apple Airpods Headphones,1,150,08/14/19 17:41,"680 Lincoln St, Los Angeles, CA 90001" +239346,LG Dryer,1,600.0,08/17/19 20:50,"152 9th St, Los Angeles, CA 90001" +239347,AA Batteries (4-pack),3,3.84,08/14/19 17:33,"398 Sunset St, Atlanta, GA 30301" +239348,34in Ultrawide Monitor,1,379.99,08/10/19 00:02,"608 2nd St, Portland, OR 97035" +239349,USB-C Charging Cable,1,11.95,08/22/19 21:34,"485 Madison St, New York City, NY 10001" +239350,Bose SoundSport Headphones,1,99.99,08/17/19 12:06,"535 Jefferson St, Portland, OR 97035" +239350,USB-C Charging Cable,1,11.95,08/17/19 12:06,"535 Jefferson St, Portland, OR 97035" +239351,27in FHD Monitor,1,149.99,08/25/19 14:29,"661 North St, Los Angeles, CA 90001" +239352,USB-C Charging Cable,1,11.95,08/04/19 20:52,"817 9th St, Austin, TX 73301" +239353,Lightning Charging Cable,1,14.95,08/25/19 20:58,"636 2nd St, Los Angeles, CA 90001" +239354,Lightning Charging Cable,1,14.95,08/30/19 12:11,"844 14th St, Austin, TX 73301" +239355,Apple Airpods Headphones,1,150,08/08/19 14:46,"16 Elm St, Boston, MA 02215" +239356,AAA Batteries (4-pack),1,2.99,08/30/19 11:30,"782 12th St, San Francisco, CA 94016" +239357,Lightning Charging Cable,1,14.95,08/01/19 16:35,"205 Lakeview St, Los Angeles, CA 90001" +239358,USB-C Charging Cable,1,11.95,08/13/19 13:29,"135 Chestnut St, Portland, OR 97035" +239359,Apple Airpods Headphones,1,150,08/13/19 06:07,"527 Walnut St, San Francisco, CA 94016" +239360,AA Batteries (4-pack),1,3.84,08/28/19 09:46,"678 Pine St, Dallas, TX 75001" +239361,iPhone,1,700,08/13/19 16:42,"441 12th St, San Francisco, CA 94016" +239362,AA Batteries (4-pack),1,3.84,08/03/19 22:03,"577 Ridge St, Portland, OR 97035" +239363,ThinkPad Laptop,1,999.99,08/24/19 21:43,"584 6th St, Los Angeles, CA 90001" +239364,iPhone,1,700,08/02/19 22:20,"445 7th St, Portland, OR 97035" +239365,34in Ultrawide Monitor,1,379.99,08/26/19 19:54,"565 Forest St, Boston, MA 02215" +239366,AAA Batteries (4-pack),2,2.99,08/03/19 14:53,"332 Cherry St, Dallas, TX 75001" +239367,AAA Batteries (4-pack),1,2.99,08/13/19 20:10,"338 4th St, Austin, TX 73301" +239368,iPhone,1,700,08/28/19 22:03,"6 Hickory St, Dallas, TX 75001" +239369,Vareebadd Phone,1,400,08/20/19 20:37,"268 1st St, Dallas, TX 75001" +239370,ThinkPad Laptop,1,999.99,08/25/19 11:15,"404 Jefferson St, San Francisco, CA 94016" +239371,Lightning Charging Cable,1,14.95,08/19/19 07:08,"183 13th St, Los Angeles, CA 90001" +239372,iPhone,1,700,08/19/19 11:40,"906 Main St, Austin, TX 73301" +239373,AA Batteries (4-pack),2,3.84,08/03/19 18:30,"326 Church St, San Francisco, CA 94016" +239374,Apple Airpods Headphones,1,150,08/26/19 18:33,"295 Johnson St, Los Angeles, CA 90001" +239375,iPhone,1,700,08/12/19 09:15,"715 Lake St, Austin, TX 73301" +239376,USB-C Charging Cable,1,11.95,08/10/19 21:20,"660 6th St, Dallas, TX 75001" +239377,27in FHD Monitor,1,149.99,08/08/19 18:13,"985 South St, Austin, TX 73301" +239378,34in Ultrawide Monitor,1,379.99,08/29/19 23:25,"339 Forest St, Los Angeles, CA 90001" +239379,USB-C Charging Cable,1,11.95,08/17/19 10:54,"209 Maple St, Portland, OR 97035" +239380,USB-C Charging Cable,1,11.95,08/22/19 12:47,"762 South St, San Francisco, CA 94016" +239381,AAA Batteries (4-pack),1,2.99,08/16/19 23:34,"329 Adams St, New York City, NY 10001" +239382,Lightning Charging Cable,1,14.95,08/21/19 23:40,"278 7th St, San Francisco, CA 94016" +239383,Apple Airpods Headphones,1,150,08/01/19 14:55,"618 Highland St, Portland, OR 97035" +239384,Lightning Charging Cable,1,14.95,08/09/19 11:07,"568 Lincoln St, San Francisco, CA 94016" +239385,ThinkPad Laptop,1,999.99,08/25/19 17:13,"4 Jefferson St, Austin, TX 73301" +239386,Macbook Pro Laptop,1,1700,08/30/19 08:09,"922 Hill St, Los Angeles, CA 90001" +239387,AAA Batteries (4-pack),3,2.99,08/18/19 19:53,"678 5th St, New York City, NY 10001" +239388,20in Monitor,1,109.99,08/15/19 19:44,"877 Maple St, Atlanta, GA 30301" +239389,Bose SoundSport Headphones,1,99.99,08/24/19 10:18,"526 Adams St, San Francisco, CA 94016" +239390,Macbook Pro Laptop,1,1700,08/09/19 21:16,"424 Wilson St, Dallas, TX 75001" +239391,USB-C Charging Cable,1,11.95,08/02/19 18:41,"940 Center St, Los Angeles, CA 90001" +239392,iPhone,1,700,08/27/19 22:36,"301 Cherry St, San Francisco, CA 94016" +239393,Macbook Pro Laptop,1,1700,08/05/19 09:18,"766 1st St, Los Angeles, CA 90001" +239394,Flatscreen TV,1,300,08/25/19 21:43,"451 Ridge St, San Francisco, CA 94016" +239395,AAA Batteries (4-pack),1,2.99,08/16/19 19:34,"109 Forest St, New York City, NY 10001" +239396,Wired Headphones,1,11.99,08/06/19 18:26,"283 Washington St, Atlanta, GA 30301" +239397,Google Phone,1,600,08/20/19 10:40,"795 13th St, Atlanta, GA 30301" +239398,Vareebadd Phone,1,400,08/05/19 10:01,"942 West St, San Francisco, CA 94016" +239399,AAA Batteries (4-pack),3,2.99,08/31/19 06:53,"234 Hill St, San Francisco, CA 94016" +239400,Vareebadd Phone,1,400,08/11/19 16:04,"379 Wilson St, Dallas, TX 75001" +239401,20in Monitor,1,109.99,08/13/19 18:11,"627 Meadow St, Atlanta, GA 30301" +239402,27in FHD Monitor,1,149.99,08/21/19 08:28,"883 Park St, San Francisco, CA 94016" +239403,Apple Airpods Headphones,1,150,08/26/19 13:09,"711 10th St, San Francisco, CA 94016" +239404,AAA Batteries (4-pack),1,2.99,08/20/19 17:31,"743 10th St, San Francisco, CA 94016" +239405,USB-C Charging Cable,1,11.95,08/20/19 07:58,"617 Adams St, Austin, TX 73301" +239406,Wired Headphones,1,11.99,08/25/19 13:31,"233 Highland St, Dallas, TX 75001" +239407,Macbook Pro Laptop,1,1700,08/11/19 00:06,"468 12th St, Los Angeles, CA 90001" +239408,iPhone,1,700,08/21/19 11:33,"55 Cedar St, Boston, MA 02215" +239408,Lightning Charging Cable,1,14.95,08/21/19 11:33,"55 Cedar St, Boston, MA 02215" +239409,Bose SoundSport Headphones,1,99.99,08/29/19 13:40,"197 Chestnut St, San Francisco, CA 94016" +239410,34in Ultrawide Monitor,1,379.99,08/12/19 20:03,"433 12th St, Boston, MA 02215" +239411,Lightning Charging Cable,1,14.95,08/31/19 04:33,"532 Meadow St, Dallas, TX 75001" +239412,USB-C Charging Cable,1,11.95,08/20/19 08:24,"157 Johnson St, Boston, MA 02215" +239413,Wired Headphones,1,11.99,08/01/19 08:47,"381 Madison St, New York City, NY 10001" +239414,20in Monitor,1,109.99,08/04/19 10:10,"237 Spruce St, San Francisco, CA 94016" +239415,Flatscreen TV,1,300,08/05/19 09:05,"548 Lake St, Los Angeles, CA 90001" +239416,AAA Batteries (4-pack),2,2.99,08/11/19 10:28,"426 Jefferson St, Dallas, TX 75001" +239417,Bose SoundSport Headphones,2,99.99,08/01/19 13:33,"553 North St, Boston, MA 02215" +239418,Vareebadd Phone,1,400,08/10/19 10:42,"811 Maple St, New York City, NY 10001" +239419,Wired Headphones,1,11.99,08/27/19 09:57,"654 North St, Austin, TX 73301" +239420,USB-C Charging Cable,1,11.95,08/06/19 16:43,"870 Ridge St, San Francisco, CA 94016" +239421,Bose SoundSport Headphones,1,99.99,08/16/19 20:25,"88 Park St, Los Angeles, CA 90001" +239422,Wired Headphones,1,11.99,08/21/19 15:47,"71 11th St, Los Angeles, CA 90001" +239423,Wired Headphones,1,11.99,08/09/19 20:30,"188 Lincoln St, Boston, MA 02215" +239424,Macbook Pro Laptop,1,1700,08/15/19 00:06,"711 South St, Los Angeles, CA 90001" +239425,Vareebadd Phone,1,400,08/10/19 12:10,"5 Dogwood St, Atlanta, GA 30301" +239426,27in FHD Monitor,1,149.99,08/29/19 10:41,"297 Park St, New York City, NY 10001" +239427,iPhone,1,700,08/27/19 03:05,"593 Lincoln St, Los Angeles, CA 90001" +239428,AAA Batteries (4-pack),2,2.99,08/05/19 12:59,"444 12th St, New York City, NY 10001" +239429,Wired Headphones,1,11.99,08/27/19 11:53,"87 Dogwood St, Los Angeles, CA 90001" +239430,USB-C Charging Cable,1,11.95,08/05/19 21:29,"716 13th St, San Francisco, CA 94016" +239431,27in FHD Monitor,1,149.99,08/05/19 17:23,"6 Madison St, New York City, NY 10001" +239432,27in 4K Gaming Monitor,1,389.99,08/20/19 10:57,"993 Lincoln St, Los Angeles, CA 90001" +239433,USB-C Charging Cable,1,11.95,08/09/19 23:28,"683 5th St, Portland, OR 97035" +239434,Macbook Pro Laptop,1,1700,08/17/19 21:55,"678 Dogwood St, Dallas, TX 75001" +239435,Flatscreen TV,1,300,08/09/19 23:14,"480 Church St, Seattle, WA 98101" +239435,AA Batteries (4-pack),1,3.84,08/09/19 23:14,"480 Church St, Seattle, WA 98101" +239436,Wired Headphones,1,11.99,08/27/19 10:01,"396 Hickory St, Dallas, TX 75001" +239437,AAA Batteries (4-pack),3,2.99,08/25/19 11:18,"607 Center St, San Francisco, CA 94016" +239438,Google Phone,1,600,08/23/19 18:54,"758 Church St, San Francisco, CA 94016" +239439,iPhone,1,700,08/07/19 13:54,"600 Center St, San Francisco, CA 94016" +239440,AAA Batteries (4-pack),1,2.99,08/29/19 15:34,"775 10th St, Atlanta, GA 30301" +239441,AAA Batteries (4-pack),3,2.99,08/10/19 13:44,"254 Willow St, New York City, NY 10001" +239442,ThinkPad Laptop,1,999.99,08/22/19 12:42,"226 Sunset St, Los Angeles, CA 90001" +239443,USB-C Charging Cable,1,11.95,08/18/19 10:09,"835 Hickory St, San Francisco, CA 94016" +239444,iPhone,1,700,08/13/19 21:54,"578 14th St, Portland, OR 97035" +239445,Wired Headphones,1,11.99,08/13/19 13:21,"392 Hill St, New York City, NY 10001" +239446,Google Phone,1,600,08/16/19 17:21,"294 Madison St, San Francisco, CA 94016" +239446,Wired Headphones,1,11.99,08/16/19 17:21,"294 Madison St, San Francisco, CA 94016" +239446,LG Dryer,1,600.0,08/16/19 17:21,"294 Madison St, San Francisco, CA 94016" +239447,USB-C Charging Cable,1,11.95,08/19/19 15:28,"346 Ridge St, Portland, OR 97035" +239448,USB-C Charging Cable,1,11.95,08/05/19 10:00,"570 9th St, San Francisco, CA 94016" +239449,AAA Batteries (4-pack),1,2.99,08/02/19 18:01,"67 Cedar St, Seattle, WA 98101" +239450,Bose SoundSport Headphones,1,99.99,08/02/19 10:06,"548 Madison St, Seattle, WA 98101" +239451,34in Ultrawide Monitor,1,379.99,08/09/19 15:19,"585 Elm St, New York City, NY 10001" +239452,Lightning Charging Cable,1,14.95,08/13/19 15:53,"32 Madison St, Dallas, TX 75001" +239453,USB-C Charging Cable,2,11.95,08/28/19 14:50,"552 Cherry St, Los Angeles, CA 90001" +239454,Google Phone,1,600,08/28/19 14:29,"243 Hickory St, San Francisco, CA 94016" +239455,Lightning Charging Cable,1,14.95,08/27/19 09:39,"848 11th St, New York City, NY 10001" +239456,USB-C Charging Cable,1,11.95,08/24/19 16:00,"50 Sunset St, Austin, TX 73301" +239457,USB-C Charging Cable,1,11.95,08/12/19 11:34,"819 Hickory St, Los Angeles, CA 90001" +239458,Lightning Charging Cable,1,14.95,08/02/19 10:22,"763 Willow St, New York City, NY 10001" +239459,AA Batteries (4-pack),1,3.84,08/19/19 14:09,"640 Johnson St, Austin, TX 73301" +239460,Bose SoundSport Headphones,1,99.99,08/27/19 07:40,"96 9th St, Seattle, WA 98101" +239461,AA Batteries (4-pack),1,3.84,08/23/19 13:33,"788 Willow St, Los Angeles, CA 90001" +239462,USB-C Charging Cable,2,11.95,08/16/19 10:13,"608 4th St, San Francisco, CA 94016" +239463,Macbook Pro Laptop,1,1700,08/28/19 23:43,"411 Chestnut St, Austin, TX 73301" +239463,iPhone,1,700,08/28/19 23:43,"411 Chestnut St, Austin, TX 73301" +239464,AAA Batteries (4-pack),2,2.99,08/22/19 11:23,"701 14th St, San Francisco, CA 94016" +239465,USB-C Charging Cable,1,11.95,08/17/19 07:54,"465 4th St, San Francisco, CA 94016" +239466,Apple Airpods Headphones,1,150,08/30/19 13:43,"641 Hill St, Boston, MA 02215" +239467,iPhone,1,700,08/03/19 14:51,"56 River St, Los Angeles, CA 90001" +239468,AAA Batteries (4-pack),1,2.99,08/27/19 12:54,"646 14th St, New York City, NY 10001" +239469,iPhone,1,700,08/04/19 14:05,"856 Hill St, New York City, NY 10001" +239469,iPhone,1,700,08/04/19 14:05,"856 Hill St, New York City, NY 10001" +239470,AA Batteries (4-pack),1,3.84,08/06/19 14:27,"827 6th St, San Francisco, CA 94016" +239471,20in Monitor,1,109.99,08/23/19 08:26,"635 Jefferson St, Boston, MA 02215" +239472,AA Batteries (4-pack),1,3.84,08/21/19 18:31,"105 Wilson St, New York City, NY 10001" +239473,ThinkPad Laptop,1,999.99,08/12/19 16:52,"490 North St, Los Angeles, CA 90001" +239474,ThinkPad Laptop,1,999.99,08/11/19 11:55,"985 9th St, Los Angeles, CA 90001" +239475,Lightning Charging Cable,1,14.95,08/21/19 22:11,"881 Walnut St, Los Angeles, CA 90001" +239476,USB-C Charging Cable,1,11.95,08/31/19 18:57,"624 Lakeview St, Los Angeles, CA 90001" +239477,AA Batteries (4-pack),1,3.84,08/05/19 17:27,"694 1st St, Atlanta, GA 30301" +239478,Apple Airpods Headphones,1,150,08/24/19 07:48,"184 Johnson St, Boston, MA 02215" +239479,Flatscreen TV,1,300,08/24/19 14:18,"847 Highland St, Austin, TX 73301" +239480,iPhone,1,700,08/27/19 12:30,"179 Park St, New York City, NY 10001" +239481,Lightning Charging Cable,1,14.95,08/25/19 20:11,"407 North St, San Francisco, CA 94016" +239482,20in Monitor,1,109.99,08/11/19 21:41,"374 6th St, Seattle, WA 98101" +239483,27in FHD Monitor,1,149.99,08/04/19 10:34,"857 Cedar St, Atlanta, GA 30301" +239483,Wired Headphones,1,11.99,08/04/19 10:34,"857 Cedar St, Atlanta, GA 30301" +239484,Vareebadd Phone,1,400,08/17/19 11:42,"222 5th St, San Francisco, CA 94016" +239485,20in Monitor,1,109.99,08/20/19 16:58,"431 Jefferson St, San Francisco, CA 94016" +239486,27in FHD Monitor,1,149.99,08/19/19 21:02,"365 Lakeview St, Dallas, TX 75001" +239487,27in FHD Monitor,1,149.99,08/18/19 16:21,"26 South St, Seattle, WA 98101" +239488,Bose SoundSport Headphones,1,99.99,08/22/19 10:49,"971 Ridge St, Atlanta, GA 30301" +239489,27in FHD Monitor,1,149.99,08/21/19 06:48,"735 South St, San Francisco, CA 94016" +239490,Bose SoundSport Headphones,1,99.99,08/14/19 14:30,"187 5th St, Portland, OR 97035" +239491,Lightning Charging Cable,1,14.95,08/22/19 17:43,"540 Spruce St, Portland, ME 04101" +239492,AA Batteries (4-pack),2,3.84,08/02/19 22:22,"202 South St, Portland, OR 97035" +239493,Wired Headphones,1,11.99,08/08/19 19:33,"470 Church St, Atlanta, GA 30301" +239494,Apple Airpods Headphones,1,150,08/09/19 17:22,"954 Park St, San Francisco, CA 94016" +239495,iPhone,1,700,08/16/19 11:56,"593 Center St, Boston, MA 02215" +239496,AAA Batteries (4-pack),2,2.99,08/24/19 15:27,"505 2nd St, San Francisco, CA 94016" +239497,Lightning Charging Cable,1,14.95,08/27/19 18:15,"862 Chestnut St, Boston, MA 02215" +239498,Lightning Charging Cable,1,14.95,08/17/19 21:00,"503 Madison St, Portland, OR 97035" +239499,AAA Batteries (4-pack),1,2.99,08/23/19 01:14,"985 12th St, New York City, NY 10001" +239500,Lightning Charging Cable,2,14.95,08/27/19 22:20,"93 Willow St, Atlanta, GA 30301" +239501,Apple Airpods Headphones,1,150,08/15/19 10:13,"725 River St, New York City, NY 10001" +239502,Apple Airpods Headphones,1,150,08/18/19 17:16,"595 West St, Seattle, WA 98101" +239503,Bose SoundSport Headphones,1,99.99,08/11/19 18:20,"826 North St, Los Angeles, CA 90001" +239504,34in Ultrawide Monitor,1,379.99,08/17/19 18:20,"944 4th St, Portland, OR 97035" +239505,AAA Batteries (4-pack),2,2.99,08/19/19 17:08,"617 Madison St, San Francisco, CA 94016" +239506,Flatscreen TV,1,300,08/09/19 12:22,"526 12th St, Seattle, WA 98101" +239507,Lightning Charging Cable,1,14.95,08/18/19 18:37,"285 1st St, Boston, MA 02215" +239508,Google Phone,1,600,08/20/19 12:04,"526 13th St, Atlanta, GA 30301" +239509,USB-C Charging Cable,1,11.95,08/05/19 18:11,"521 Spruce St, Atlanta, GA 30301" +239510,USB-C Charging Cable,1,11.95,08/02/19 11:54,"520 7th St, New York City, NY 10001" +239511,27in FHD Monitor,1,149.99,08/11/19 15:17,"898 Pine St, Seattle, WA 98101" +239512,AAA Batteries (4-pack),4,2.99,08/13/19 13:04,"538 Lake St, Seattle, WA 98101" +239513,AAA Batteries (4-pack),1,2.99,08/12/19 13:57,"177 Sunset St, Austin, TX 73301" +239514,Flatscreen TV,1,300,08/03/19 12:54,"713 13th St, New York City, NY 10001" +239515,AA Batteries (4-pack),1,3.84,08/18/19 08:26,"457 West St, Boston, MA 02215" +239516,27in FHD Monitor,1,149.99,08/25/19 22:55,"359 5th St, Boston, MA 02215" +239517,USB-C Charging Cable,1,11.95,08/03/19 12:39,"869 Forest St, Portland, OR 97035" +239518,AA Batteries (4-pack),1,3.84,08/05/19 12:25,"673 Center St, Boston, MA 02215" +239519,27in FHD Monitor,1,149.99,08/20/19 14:20,"182 Meadow St, Los Angeles, CA 90001" +239520,Apple Airpods Headphones,1,150,08/07/19 13:55,"116 Johnson St, Atlanta, GA 30301" +239520,USB-C Charging Cable,1,11.95,08/07/19 13:55,"116 Johnson St, Atlanta, GA 30301" +239521,AA Batteries (4-pack),2,3.84,08/29/19 15:07,"893 Jackson St, San Francisco, CA 94016" +239522,Google Phone,1,600,08/06/19 22:58,"875 Cedar St, San Francisco, CA 94016" +239523,Flatscreen TV,1,300,08/12/19 12:07,"355 Meadow St, San Francisco, CA 94016" +239524,AAA Batteries (4-pack),1,2.99,08/26/19 17:40,"579 Park St, Atlanta, GA 30301" +239525,Lightning Charging Cable,1,14.95,08/10/19 00:11,"828 9th St, San Francisco, CA 94016" +239525,Apple Airpods Headphones,1,150,08/10/19 00:11,"828 9th St, San Francisco, CA 94016" +239526,Wired Headphones,1,11.99,08/24/19 18:38,"632 Cedar St, Dallas, TX 75001" +239527,Lightning Charging Cable,1,14.95,08/29/19 10:05,"463 Johnson St, San Francisco, CA 94016" +239528,Wired Headphones,1,11.99,08/23/19 18:35,"932 Lake St, New York City, NY 10001" +239529,Apple Airpods Headphones,1,150,08/30/19 08:46,"92 Willow St, San Francisco, CA 94016" +239530,AAA Batteries (4-pack),1,2.99,08/22/19 23:25,"100 Pine St, Atlanta, GA 30301" +239531,Flatscreen TV,1,300,08/09/19 18:19,"418 Spruce St, New York City, NY 10001" +239532,Bose SoundSport Headphones,1,99.99,08/29/19 12:11,"251 4th St, New York City, NY 10001" +239533,USB-C Charging Cable,1,11.95,08/05/19 19:59,"827 Highland St, Boston, MA 02215" +239534,iPhone,1,700,08/01/19 13:31,"953 Cedar St, Dallas, TX 75001" +239535,Apple Airpods Headphones,1,150,08/28/19 20:02,"132 River St, Dallas, TX 75001" +239536,Google Phone,1,600,08/11/19 09:33,"791 Washington St, Boston, MA 02215" +239537,Apple Airpods Headphones,1,150,08/28/19 04:38,"939 River St, New York City, NY 10001" +239538,34in Ultrawide Monitor,1,379.99,08/25/19 19:05,"516 Cedar St, Boston, MA 02215" +239539,Macbook Pro Laptop,1,1700,08/03/19 10:09,"218 Lincoln St, San Francisco, CA 94016" +239540,iPhone,1,700,08/25/19 19:55,"828 Hickory St, San Francisco, CA 94016" +239541,Lightning Charging Cable,2,14.95,08/10/19 21:29,"479 Forest St, Los Angeles, CA 90001" +239542,AAA Batteries (4-pack),1,2.99,08/10/19 21:04,"53 14th St, San Francisco, CA 94016" +239543,AAA Batteries (4-pack),1,2.99,08/31/19 13:37,"161 Elm St, Boston, MA 02215" +239544,AA Batteries (4-pack),2,3.84,08/20/19 17:33,"480 Cherry St, Los Angeles, CA 90001" +239545,AAA Batteries (4-pack),2,2.99,08/18/19 13:22,"188 Jefferson St, Los Angeles, CA 90001" +239546,Lightning Charging Cable,1,14.95,08/26/19 19:35,"600 Hickory St, Los Angeles, CA 90001" +239547,AA Batteries (4-pack),1,3.84,08/30/19 11:09,"116 Jefferson St, New York City, NY 10001" +239548,Wired Headphones,1,11.99,08/22/19 08:10,"741 Cedar St, New York City, NY 10001" +239549,Macbook Pro Laptop,1,1700,08/06/19 11:43,"142 2nd St, Seattle, WA 98101" +239550,Wired Headphones,1,11.99,08/24/19 18:47,"107 10th St, Austin, TX 73301" +239551,27in 4K Gaming Monitor,1,389.99,08/18/19 17:52,"427 Jefferson St, Austin, TX 73301" +239552,27in 4K Gaming Monitor,1,389.99,08/05/19 15:00,"844 Forest St, Los Angeles, CA 90001" +239553,Lightning Charging Cable,1,14.95,08/23/19 20:15,"940 11th St, Dallas, TX 75001" +239554,34in Ultrawide Monitor,1,379.99,08/02/19 09:40,"638 9th St, Los Angeles, CA 90001" +239555,USB-C Charging Cable,1,11.95,08/26/19 12:15,"686 11th St, New York City, NY 10001" +239556,Flatscreen TV,1,300,08/15/19 15:50,"501 Main St, Boston, MA 02215" +239557,iPhone,1,700,08/09/19 01:36,"349 Cedar St, Austin, TX 73301" +239558,Bose SoundSport Headphones,1,99.99,08/13/19 22:57,"548 8th St, Los Angeles, CA 90001" +239559,27in 4K Gaming Monitor,1,389.99,08/20/19 11:29,"614 Jefferson St, Los Angeles, CA 90001" +239560,Lightning Charging Cable,1,14.95,08/08/19 19:54,"808 Lincoln St, Boston, MA 02215" +239561,Lightning Charging Cable,1,14.95,08/05/19 19:13,"5 Washington St, Boston, MA 02215" +239562,USB-C Charging Cable,1,11.95,08/02/19 20:24,"672 Hill St, San Francisco, CA 94016" +239563,Bose SoundSport Headphones,1,99.99,08/04/19 10:01,"240 Maple St, Portland, OR 97035" +239564,27in FHD Monitor,1,149.99,08/29/19 13:04,"659 6th St, Atlanta, GA 30301" +239565,Bose SoundSport Headphones,1,99.99,08/16/19 22:09,"516 Lincoln St, Dallas, TX 75001" +239566,Apple Airpods Headphones,1,150,08/19/19 18:47,"722 Cedar St, Atlanta, GA 30301" +239567,27in FHD Monitor,1,149.99,08/12/19 10:39,"482 Park St, Atlanta, GA 30301" +239568,USB-C Charging Cable,1,11.95,08/29/19 11:26,"59 Spruce St, San Francisco, CA 94016" +239569,Apple Airpods Headphones,1,150,08/21/19 13:41,"916 2nd St, Atlanta, GA 30301" +239570,ThinkPad Laptop,1,999.99,08/11/19 20:03,"995 Lakeview St, Portland, ME 04101" +239571,AAA Batteries (4-pack),2,2.99,08/23/19 03:58,"101 Lincoln St, San Francisco, CA 94016" +239572,Lightning Charging Cable,1,14.95,08/23/19 11:21,"787 Lincoln St, Los Angeles, CA 90001" +239573,34in Ultrawide Monitor,1,379.99,08/31/19 03:24,"850 9th St, San Francisco, CA 94016" +239574,Lightning Charging Cable,1,14.95,08/02/19 22:42,"965 Church St, New York City, NY 10001" +239575,Bose SoundSport Headphones,1,99.99,08/28/19 15:14,"779 Jackson St, San Francisco, CA 94016" +239576,Bose SoundSport Headphones,1,99.99,08/29/19 11:07,"685 Church St, Boston, MA 02215" +239577,Apple Airpods Headphones,1,150,08/29/19 12:03,"860 1st St, Dallas, TX 75001" +239578,AA Batteries (4-pack),1,3.84,08/26/19 12:31,"992 Forest St, Dallas, TX 75001" +239579,Apple Airpods Headphones,1,150,08/06/19 08:22,"511 9th St, San Francisco, CA 94016" +239580,27in 4K Gaming Monitor,1,389.99,08/10/19 10:56,"575 Lake St, Los Angeles, CA 90001" +239581,USB-C Charging Cable,1,11.95,08/08/19 18:46,"165 Cherry St, Dallas, TX 75001" +239582,Lightning Charging Cable,1,14.95,08/24/19 23:56,"778 River St, San Francisco, CA 94016" +239583,ThinkPad Laptop,1,999.99,08/19/19 20:27,"996 7th St, Seattle, WA 98101" +239584,27in FHD Monitor,1,149.99,08/28/19 11:20,"967 Washington St, San Francisco, CA 94016" +239585,27in FHD Monitor,1,149.99,08/11/19 22:25,"295 10th St, San Francisco, CA 94016" +239586,Bose SoundSport Headphones,1,99.99,08/15/19 11:51,"783 Lakeview St, Dallas, TX 75001" +239587,Lightning Charging Cable,1,14.95,08/12/19 15:46,"62 Jackson St, New York City, NY 10001" +239588,27in FHD Monitor,1,149.99,08/11/19 11:17,"410 14th St, Portland, OR 97035" +239589,AA Batteries (4-pack),1,3.84,08/11/19 22:27,"37 Elm St, Boston, MA 02215" +239590,27in FHD Monitor,1,149.99,08/07/19 00:54,"958 13th St, San Francisco, CA 94016" +239591,USB-C Charging Cable,1,11.95,08/22/19 12:21,"950 Lincoln St, Austin, TX 73301" +239592,Bose SoundSport Headphones,1,99.99,08/28/19 16:46,"856 Park St, Boston, MA 02215" +239593,27in FHD Monitor,1,149.99,08/15/19 12:52,"174 Forest St, Boston, MA 02215" +239594,27in FHD Monitor,1,149.99,08/15/19 01:10,"464 Maple St, New York City, NY 10001" +239594,AA Batteries (4-pack),1,3.84,08/15/19 01:10,"464 Maple St, New York City, NY 10001" +239595,Lightning Charging Cable,1,14.95,08/06/19 12:23,"43 River St, Los Angeles, CA 90001" +239596,AAA Batteries (4-pack),1,2.99,08/03/19 13:11,"723 12th St, Boston, MA 02215" +239597,Bose SoundSport Headphones,1,99.99,08/09/19 19:10,"446 Madison St, New York City, NY 10001" +239598,USB-C Charging Cable,1,11.95,08/17/19 15:14,"380 Maple St, San Francisco, CA 94016" +239599,USB-C Charging Cable,1,11.95,08/13/19 16:16,"227 Church St, San Francisco, CA 94016" +239600,AA Batteries (4-pack),2,3.84,08/15/19 19:42,"956 6th St, New York City, NY 10001" +239601,USB-C Charging Cable,1,11.95,08/18/19 00:18,"827 Spruce St, San Francisco, CA 94016" +239602,USB-C Charging Cable,1,11.95,08/21/19 14:58,"735 Main St, Dallas, TX 75001" +239603,Lightning Charging Cable,3,14.95,08/08/19 09:15,"926 Dogwood St, Los Angeles, CA 90001" +239604,Apple Airpods Headphones,1,150,08/23/19 18:59,"372 13th St, San Francisco, CA 94016" +239605,34in Ultrawide Monitor,1,379.99,08/02/19 15:10,"799 Highland St, Dallas, TX 75001" +239606,Bose SoundSport Headphones,1,99.99,08/10/19 17:36,"893 Center St, Dallas, TX 75001" +239607,AA Batteries (4-pack),2,3.84,08/18/19 16:13,"96 Ridge St, San Francisco, CA 94016" +239608,27in FHD Monitor,1,149.99,08/13/19 21:13,"501 River St, Atlanta, GA 30301" +239609,27in FHD Monitor,1,149.99,08/06/19 18:01,"355 Spruce St, Boston, MA 02215" +239610,Wired Headphones,1,11.99,08/26/19 19:35,"620 Walnut St, San Francisco, CA 94016" +239611,AA Batteries (4-pack),1,3.84,08/03/19 10:18,"290 South St, Portland, OR 97035" +239612,Bose SoundSport Headphones,1,99.99,08/17/19 09:40,"130 Hickory St, San Francisco, CA 94016" +239613,Flatscreen TV,1,300,08/13/19 18:15,"353 South St, Los Angeles, CA 90001" +239614,AA Batteries (4-pack),1,3.84,08/25/19 19:44,"317 Cherry St, Los Angeles, CA 90001" +239615,AA Batteries (4-pack),1,3.84,08/24/19 23:38,"97 11th St, San Francisco, CA 94016" +239616,USB-C Charging Cable,1,11.95,08/16/19 14:18,"791 Dogwood St, Boston, MA 02215" +239617,Apple Airpods Headphones,1,150,08/31/19 20:51,"50 Cedar St, Dallas, TX 75001" +239618,Lightning Charging Cable,1,14.95,08/03/19 13:58,"413 Adams St, Boston, MA 02215" +239619,USB-C Charging Cable,1,11.95,08/01/19 10:24,"258 Lake St, San Francisco, CA 94016" +239620,USB-C Charging Cable,2,11.95,08/27/19 12:18,"179 Ridge St, Atlanta, GA 30301" +239621,Wired Headphones,1,11.99,08/16/19 23:23,"639 Lakeview St, San Francisco, CA 94016" +239622,Wired Headphones,1,11.99,08/10/19 07:53,"821 2nd St, San Francisco, CA 94016" +239623,USB-C Charging Cable,1,11.95,08/26/19 20:15,"980 Sunset St, New York City, NY 10001" +239624,Flatscreen TV,1,300,08/09/19 09:15,"767 Chestnut St, Los Angeles, CA 90001" +239625,Apple Airpods Headphones,1,150,08/14/19 14:20,"5 Johnson St, San Francisco, CA 94016" +239626,AA Batteries (4-pack),2,3.84,08/27/19 22:03,"324 Ridge St, Los Angeles, CA 90001" +239627,USB-C Charging Cable,1,11.95,08/12/19 18:52,"16 6th St, Dallas, TX 75001" +239628,USB-C Charging Cable,1,11.95,08/05/19 00:19,"467 Washington St, Dallas, TX 75001" +239629,AA Batteries (4-pack),2,3.84,08/28/19 21:50,"973 8th St, San Francisco, CA 94016" +239630,ThinkPad Laptop,1,999.99,08/04/19 11:59,"328 13th St, San Francisco, CA 94016" +239631,Lightning Charging Cable,1,14.95,08/19/19 05:13,"893 Lincoln St, Boston, MA 02215" +239632,USB-C Charging Cable,1,11.95,08/20/19 10:44,"910 14th St, Seattle, WA 98101" +239633,Wired Headphones,1,11.99,08/03/19 06:52,"667 1st St, Los Angeles, CA 90001" +239634,AA Batteries (4-pack),2,3.84,08/05/19 16:33,"178 West St, Austin, TX 73301" +239635,Apple Airpods Headphones,1,150,08/29/19 17:38,"160 Washington St, San Francisco, CA 94016" +239636,Bose SoundSport Headphones,1,99.99,08/01/19 03:18,"834 5th St, Dallas, TX 75001" +239637,Wired Headphones,1,11.99,08/31/19 09:32,"13 Meadow St, Boston, MA 02215" +239638,AA Batteries (4-pack),2,3.84,08/18/19 21:28,"868 Forest St, San Francisco, CA 94016" +239639,Wired Headphones,1,11.99,08/07/19 09:24,"407 Cherry St, Portland, OR 97035" +239640,AAA Batteries (4-pack),1,2.99,08/23/19 20:19,"667 Jackson St, Seattle, WA 98101" +239641,AA Batteries (4-pack),2,3.84,08/29/19 20:33,"25 Park St, San Francisco, CA 94016" +239642,Bose SoundSport Headphones,1,99.99,08/27/19 08:39,"720 4th St, New York City, NY 10001" +239643,Bose SoundSport Headphones,1,99.99,08/11/19 10:09,"639 Maple St, Boston, MA 02215" +239644,Flatscreen TV,1,300,08/10/19 00:29,"54 Willow St, Atlanta, GA 30301" +239645,Lightning Charging Cable,1,14.95,08/15/19 01:56,"780 Johnson St, Los Angeles, CA 90001" +239646,AAA Batteries (4-pack),1,2.99,08/10/19 12:56,"737 Wilson St, Seattle, WA 98101" +239647,Vareebadd Phone,1,400,08/07/19 08:28,"187 7th St, San Francisco, CA 94016" +239648,Lightning Charging Cable,2,14.95,08/26/19 00:29,"375 Hickory St, San Francisco, CA 94016" +239649,Wired Headphones,1,11.99,08/09/19 20:52,"441 4th St, Los Angeles, CA 90001" +239650,Apple Airpods Headphones,1,150,08/10/19 17:03,"705 Dogwood St, Atlanta, GA 30301" +239651,USB-C Charging Cable,3,11.95,08/04/19 09:18,"229 Walnut St, Atlanta, GA 30301" +239652,ThinkPad Laptop,1,999.99,08/10/19 19:25,"457 Maple St, Los Angeles, CA 90001" +239653,34in Ultrawide Monitor,1,379.99,08/01/19 20:50,"490 Cherry St, Los Angeles, CA 90001" +239654,Bose SoundSport Headphones,1,99.99,08/27/19 12:20,"338 Washington St, Los Angeles, CA 90001" +239654,20in Monitor,1,109.99,08/27/19 12:20,"338 Washington St, Los Angeles, CA 90001" +239655,Bose SoundSport Headphones,1,99.99,08/27/19 14:15,"446 Jefferson St, Austin, TX 73301" +239656,USB-C Charging Cable,1,11.95,08/24/19 10:33,"3 7th St, Seattle, WA 98101" +239657,AA Batteries (4-pack),1,3.84,08/24/19 20:20,"776 8th St, New York City, NY 10001" +239658,Apple Airpods Headphones,1,150,08/04/19 23:23,"153 2nd St, San Francisco, CA 94016" +239659,AAA Batteries (4-pack),1,2.99,08/29/19 20:53,"694 South St, Los Angeles, CA 90001" +239660,Vareebadd Phone,1,400,08/03/19 18:58,"457 2nd St, New York City, NY 10001" +239661,34in Ultrawide Monitor,1,379.99,08/06/19 18:30,"366 7th St, Los Angeles, CA 90001" +239662,USB-C Charging Cable,1,11.95,08/12/19 21:19,"546 Dogwood St, Los Angeles, CA 90001" +239663,Bose SoundSport Headphones,1,99.99,08/09/19 09:01,"756 Meadow St, Dallas, TX 75001" +239664,AA Batteries (4-pack),1,3.84,08/16/19 15:34,"785 Church St, Atlanta, GA 30301" +239665,Google Phone,1,600,08/20/19 22:27,"768 Cedar St, San Francisco, CA 94016" +239666,ThinkPad Laptop,1,999.99,08/14/19 10:33,"322 Wilson St, Atlanta, GA 30301" +239667,20in Monitor,1,109.99,08/29/19 20:33,"178 West St, Austin, TX 73301" +239668,Bose SoundSport Headphones,1,99.99,08/27/19 06:33,"297 Center St, San Francisco, CA 94016" +239669,ThinkPad Laptop,1,999.99,08/27/19 19:29,"434 River St, Boston, MA 02215" +239670,AA Batteries (4-pack),1,3.84,08/14/19 14:44,"838 Johnson St, New York City, NY 10001" +239670,Lightning Charging Cable,1,14.95,08/14/19 14:44,"838 Johnson St, New York City, NY 10001" +239671,Lightning Charging Cable,1,14.95,08/03/19 11:48,"621 Jackson St, Dallas, TX 75001" +239672,34in Ultrawide Monitor,1,379.99,08/12/19 19:29,"619 Elm St, Dallas, TX 75001" +239673,Apple Airpods Headphones,1,150,08/25/19 18:36,"324 Chestnut St, Atlanta, GA 30301" +239674,Macbook Pro Laptop,1,1700,08/07/19 11:53,"460 7th St, Portland, ME 04101" +239675,USB-C Charging Cable,1,11.95,08/29/19 08:18,"32 Willow St, Seattle, WA 98101" +239676,Apple Airpods Headphones,1,150,08/16/19 11:04,"923 Dogwood St, Seattle, WA 98101" +239677,34in Ultrawide Monitor,1,379.99,08/10/19 09:56,"887 Cedar St, Boston, MA 02215" +239678,27in 4K Gaming Monitor,1,389.99,08/22/19 20:54,"576 Pine St, Seattle, WA 98101" +239679,Wired Headphones,1,11.99,08/09/19 00:38,"477 Highland St, San Francisco, CA 94016" +239680,AA Batteries (4-pack),2,3.84,08/19/19 10:58,"334 Elm St, Atlanta, GA 30301" +239681,Wired Headphones,1,11.99,08/31/19 12:12,"115 Willow St, San Francisco, CA 94016" +239682,AA Batteries (4-pack),1,3.84,08/21/19 20:45,"992 Washington St, Austin, TX 73301" +239683,AA Batteries (4-pack),1,3.84,08/29/19 18:22,"839 Jackson St, New York City, NY 10001" +239684,USB-C Charging Cable,1,11.95,08/16/19 17:52,"787 Walnut St, Atlanta, GA 30301" +239685,AAA Batteries (4-pack),1,2.99,08/11/19 09:47,"450 Cherry St, Los Angeles, CA 90001" +239686,Apple Airpods Headphones,1,150,08/27/19 19:51,"143 West St, San Francisco, CA 94016" +239686,27in 4K Gaming Monitor,1,389.99,08/27/19 19:51,"143 West St, San Francisco, CA 94016" +239687,Bose SoundSport Headphones,1,99.99,08/13/19 15:07,"929 Main St, New York City, NY 10001" +239688,USB-C Charging Cable,1,11.95,08/20/19 21:36,"475 1st St, New York City, NY 10001" +239689,USB-C Charging Cable,3,11.95,08/06/19 14:43,"215 Forest St, San Francisco, CA 94016" +239690,USB-C Charging Cable,1,11.95,08/24/19 12:14,"63 Lake St, Seattle, WA 98101" +239691,iPhone,1,700,08/18/19 10:32,"382 Dogwood St, Los Angeles, CA 90001" +239691,Lightning Charging Cable,1,14.95,08/18/19 10:32,"382 Dogwood St, Los Angeles, CA 90001" +239692,AAA Batteries (4-pack),2,2.99,08/17/19 07:30,"216 13th St, New York City, NY 10001" +239693,USB-C Charging Cable,1,11.95,08/15/19 20:43,"777 Washington St, Los Angeles, CA 90001" +239694,AA Batteries (4-pack),1,3.84,08/08/19 13:31,"517 Meadow St, Los Angeles, CA 90001" +239695,USB-C Charging Cable,1,11.95,08/03/19 23:04,"287 Center St, Dallas, TX 75001" +239696,ThinkPad Laptop,1,999.99,08/05/19 17:43,"22 Jackson St, Seattle, WA 98101" +239697,Wired Headphones,1,11.99,08/07/19 11:21,"162 Wilson St, New York City, NY 10001" +239698,Bose SoundSport Headphones,1,99.99,08/26/19 21:41,"341 5th St, Atlanta, GA 30301" +239699,USB-C Charging Cable,1,11.95,08/21/19 20:02,"333 Maple St, San Francisco, CA 94016" +239700,Macbook Pro Laptop,1,1700,08/14/19 14:07,"648 Jefferson St, Los Angeles, CA 90001" +239701,Lightning Charging Cable,2,14.95,08/27/19 16:04,"62 Jefferson St, Boston, MA 02215" +239702,USB-C Charging Cable,1,11.95,08/22/19 05:11,"405 5th St, San Francisco, CA 94016" +239703,USB-C Charging Cable,1,11.95,08/22/19 09:52,"365 Maple St, Los Angeles, CA 90001" +239704,Apple Airpods Headphones,1,150,08/19/19 21:10,"977 Maple St, Seattle, WA 98101" +239705,AAA Batteries (4-pack),2,2.99,08/23/19 12:02,"556 Washington St, Austin, TX 73301" +239706,Wired Headphones,1,11.99,08/25/19 09:02,"595 Hill St, Los Angeles, CA 90001" +239707,AAA Batteries (4-pack),1,2.99,08/14/19 11:41,"481 Jefferson St, Dallas, TX 75001" +239708,AAA Batteries (4-pack),1,2.99,08/20/19 19:11,"447 Dogwood St, Portland, OR 97035" +239709,Apple Airpods Headphones,1,150,08/25/19 14:12,"357 Hill St, San Francisco, CA 94016" +239710,USB-C Charging Cable,1,11.95,08/27/19 02:12,"681 9th St, San Francisco, CA 94016" +239711,Wired Headphones,1,11.99,08/16/19 20:26,"725 Lake St, San Francisco, CA 94016" +239712,AA Batteries (4-pack),2,3.84,08/29/19 15:15,"899 Forest St, Portland, OR 97035" +239713,Lightning Charging Cable,1,14.95,08/19/19 13:07,"387 9th St, New York City, NY 10001" +239714,AA Batteries (4-pack),1,3.84,08/21/19 10:06,"425 Highland St, Los Angeles, CA 90001" +239714,USB-C Charging Cable,1,11.95,08/21/19 10:06,"425 Highland St, Los Angeles, CA 90001" +239715,Wired Headphones,1,11.99,08/06/19 20:17,"719 Hill St, New York City, NY 10001" +239716,iPhone,1,700,08/08/19 19:24,"219 Johnson St, San Francisco, CA 94016" +239716,Lightning Charging Cable,1,14.95,08/08/19 19:24,"219 Johnson St, San Francisco, CA 94016" +239716,Wired Headphones,1,11.99,08/08/19 19:24,"219 Johnson St, San Francisco, CA 94016" +239717,AA Batteries (4-pack),1,3.84,08/30/19 10:19,"9 Spruce St, Atlanta, GA 30301" +239718,USB-C Charging Cable,1,11.95,08/21/19 19:54,"128 Adams St, Austin, TX 73301" +239719,20in Monitor,1,109.99,08/20/19 18:21,"557 Church St, Atlanta, GA 30301" +239720,Apple Airpods Headphones,1,150,08/10/19 17:17,"874 Hickory St, Los Angeles, CA 90001" +239721,AAA Batteries (4-pack),1,2.99,08/12/19 13:32,"826 8th St, Austin, TX 73301" +239722,Wired Headphones,1,11.99,08/18/19 19:28,"635 Walnut St, Portland, ME 04101" +239723,27in FHD Monitor,1,149.99,08/14/19 12:06,"400 West St, Seattle, WA 98101" +239724,27in FHD Monitor,1,149.99,08/23/19 17:43,"274 Lincoln St, Seattle, WA 98101" +239725,Lightning Charging Cable,1,14.95,08/04/19 14:57,"43 12th St, San Francisco, CA 94016" +239726,USB-C Charging Cable,2,11.95,08/28/19 21:11,"578 Walnut St, New York City, NY 10001" +239727,Lightning Charging Cable,2,14.95,08/31/19 11:09,"763 River St, Los Angeles, CA 90001" +239728,AAA Batteries (4-pack),1,2.99,08/09/19 21:27,"63 Chestnut St, Los Angeles, CA 90001" +239729,AAA Batteries (4-pack),1,2.99,08/28/19 09:00,"924 Cherry St, Portland, OR 97035" +239730,Apple Airpods Headphones,1,150,08/28/19 21:51,"581 Lincoln St, Atlanta, GA 30301" +239731,USB-C Charging Cable,1,11.95,08/08/19 04:49,"369 8th St, New York City, NY 10001" +239732,USB-C Charging Cable,1,11.95,08/08/19 08:06,"52 1st St, Atlanta, GA 30301" +239733,Wired Headphones,1,11.99,08/06/19 17:01,"167 Park St, Seattle, WA 98101" +239734,AA Batteries (4-pack),5,3.84,08/18/19 20:30,"691 Maple St, New York City, NY 10001" +239735,AAA Batteries (4-pack),2,2.99,08/01/19 12:11,"566 Johnson St, Dallas, TX 75001" +239736,USB-C Charging Cable,1,11.95,08/24/19 14:36,"821 West St, Dallas, TX 75001" +239737,20in Monitor,1,109.99,08/08/19 02:03,"199 11th St, Atlanta, GA 30301" +239738,ThinkPad Laptop,1,999.99,08/17/19 07:40,"35 Chestnut St, San Francisco, CA 94016" +239739,AA Batteries (4-pack),1,3.84,08/26/19 09:10,"152 Walnut St, San Francisco, CA 94016" +239740,Google Phone,1,600,08/13/19 15:03,"720 Pine St, San Francisco, CA 94016" +239741,Bose SoundSport Headphones,1,99.99,08/15/19 08:22,"730 8th St, Portland, ME 04101" +239742,Lightning Charging Cable,1,14.95,08/27/19 19:46,"960 Maple St, New York City, NY 10001" +239743,27in FHD Monitor,1,149.99,08/14/19 10:12,"881 Chestnut St, Dallas, TX 75001" +239744,Wired Headphones,1,11.99,08/12/19 09:35,"154 Hickory St, San Francisco, CA 94016" +239745,Lightning Charging Cable,1,14.95,08/08/19 22:57,"12 Madison St, San Francisco, CA 94016" +239746,USB-C Charging Cable,1,11.95,08/29/19 10:23,"497 Lakeview St, New York City, NY 10001" +239747,AAA Batteries (4-pack),3,2.99,08/26/19 11:39,"976 Willow St, Portland, OR 97035" +239748,iPhone,1,700,08/24/19 03:24,"458 12th St, Boston, MA 02215" +239749,Bose SoundSport Headphones,1,99.99,08/08/19 13:11,"38 9th St, New York City, NY 10001" +239750,iPhone,1,700,08/17/19 09:26,"867 Hill St, Los Angeles, CA 90001" +239750,Lightning Charging Cable,1,14.95,08/17/19 09:26,"867 Hill St, Los Angeles, CA 90001" +239751,Apple Airpods Headphones,1,150,08/09/19 07:33,"629 11th St, Boston, MA 02215" +239752,AA Batteries (4-pack),1,3.84,08/27/19 07:18,"895 11th St, Atlanta, GA 30301" +239753,AAA Batteries (4-pack),1,2.99,08/21/19 02:31,"187 2nd St, Los Angeles, CA 90001" +239754,Bose SoundSport Headphones,1,99.99,08/10/19 20:05,"238 10th St, Dallas, TX 75001" +239755,iPhone,1,700,08/21/19 09:38,"500 9th St, Los Angeles, CA 90001" +239756,34in Ultrawide Monitor,1,379.99,08/21/19 23:05,"941 11th St, Austin, TX 73301" +239757,Bose SoundSport Headphones,1,99.99,08/16/19 00:15,"198 South St, Los Angeles, CA 90001" +239758,AA Batteries (4-pack),1,3.84,08/16/19 13:54,"535 Maple St, Los Angeles, CA 90001" +239759,Lightning Charging Cable,1,14.95,08/16/19 14:21,"464 Cedar St, Dallas, TX 75001" +239760,AA Batteries (4-pack),1,3.84,08/15/19 20:28,"70 Highland St, Austin, TX 73301" +239761,Wired Headphones,1,11.99,08/08/19 12:30,"130 Jackson St, Los Angeles, CA 90001" +,,,,, +239762,USB-C Charging Cable,1,11.95,08/13/19 21:36,"380 Ridge St, Boston, MA 02215" +239763,Bose SoundSport Headphones,1,99.99,08/30/19 23:26,"994 11th St, Dallas, TX 75001" +239764,USB-C Charging Cable,1,11.95,08/21/19 12:37,"932 5th St, Boston, MA 02215" +239765,AA Batteries (4-pack),2,3.84,08/06/19 15:29,"139 7th St, Boston, MA 02215" +239766,AA Batteries (4-pack),1,3.84,08/06/19 20:26,"537 14th St, Seattle, WA 98101" +239767,Wired Headphones,2,11.99,08/10/19 16:40,"873 Church St, Boston, MA 02215" +239768,AAA Batteries (4-pack),1,2.99,08/25/19 12:49,"75 9th St, Portland, OR 97035" +239769,Bose SoundSport Headphones,1,99.99,08/30/19 10:37,"713 Madison St, New York City, NY 10001" +239770,Wired Headphones,1,11.99,08/17/19 10:26,"747 Madison St, Seattle, WA 98101" +239771,Bose SoundSport Headphones,1,99.99,08/02/19 19:03,"126 14th St, Dallas, TX 75001" +239772,Bose SoundSport Headphones,1,99.99,08/02/19 15:48,"786 Church St, Portland, OR 97035" +239773,USB-C Charging Cable,1,11.95,08/10/19 16:26,"573 Lake St, Boston, MA 02215" +239774,Lightning Charging Cable,1,14.95,08/17/19 11:52,"401 10th St, Atlanta, GA 30301" +239775,AA Batteries (4-pack),1,3.84,08/05/19 12:51,"581 Walnut St, New York City, NY 10001" +239776,Macbook Pro Laptop,1,1700,08/27/19 07:48,"681 13th St, Portland, OR 97035" +239777,27in 4K Gaming Monitor,1,389.99,08/10/19 11:29,"527 11th St, Atlanta, GA 30301" +239778,Flatscreen TV,1,300,08/31/19 17:56,"512 Lincoln St, San Francisco, CA 94016" +239779,Macbook Pro Laptop,1,1700,08/25/19 09:57,"140 Sunset St, Portland, OR 97035" +239780,27in FHD Monitor,1,149.99,08/02/19 12:47,"981 2nd St, New York City, NY 10001" +239781,AA Batteries (4-pack),1,3.84,08/26/19 13:28,"510 4th St, Los Angeles, CA 90001" +239782,Wired Headphones,1,11.99,08/21/19 07:48,"649 2nd St, Seattle, WA 98101" +239782,AAA Batteries (4-pack),1,2.99,08/21/19 07:48,"649 2nd St, Seattle, WA 98101" +239783,AA Batteries (4-pack),2,3.84,08/31/19 22:19,"60 10th St, San Francisco, CA 94016" +239784,Google Phone,1,600,08/11/19 17:47,"637 7th St, Austin, TX 73301" +239785,AA Batteries (4-pack),4,3.84,08/03/19 09:47,"272 13th St, San Francisco, CA 94016" +239786,AAA Batteries (4-pack),1,2.99,08/16/19 19:57,"835 12th St, Portland, OR 97035" +239787,USB-C Charging Cable,1,11.95,08/08/19 16:56,"103 Dogwood St, San Francisco, CA 94016" +239788,Lightning Charging Cable,1,14.95,08/05/19 16:55,"764 Sunset St, New York City, NY 10001" +239789,AAA Batteries (4-pack),1,2.99,08/29/19 12:22,"369 Adams St, Austin, TX 73301" +239790,27in 4K Gaming Monitor,1,389.99,08/29/19 08:38,"160 Center St, Boston, MA 02215" +239791,iPhone,1,700,08/12/19 13:22,"340 Meadow St, New York City, NY 10001" +239791,Lightning Charging Cable,1,14.95,08/12/19 13:22,"340 Meadow St, New York City, NY 10001" +239792,AA Batteries (4-pack),1,3.84,08/04/19 13:06,"127 River St, Dallas, TX 75001" +239793,USB-C Charging Cable,1,11.95,08/27/19 10:30,"563 1st St, Portland, OR 97035" +239794,AA Batteries (4-pack),1,3.84,08/23/19 17:04,"672 Johnson St, Portland, OR 97035" +239795,iPhone,1,700,08/16/19 21:31,"121 12th St, New York City, NY 10001" +239796,AA Batteries (4-pack),1,3.84,08/04/19 21:28,"999 Spruce St, New York City, NY 10001" +239797,27in FHD Monitor,1,149.99,08/30/19 09:20,"366 13th St, San Francisco, CA 94016" +239798,Lightning Charging Cable,1,14.95,08/29/19 09:42,"771 River St, Dallas, TX 75001" +239799,AAA Batteries (4-pack),1,2.99,08/05/19 09:44,"402 Adams St, Atlanta, GA 30301" +239800,27in 4K Gaming Monitor,1,389.99,08/03/19 22:06,"297 6th St, Atlanta, GA 30301" +239801,20in Monitor,1,109.99,08/20/19 04:23,"57 Chestnut St, Portland, OR 97035" +239802,AAA Batteries (4-pack),2,2.99,08/05/19 18:34,"878 11th St, Boston, MA 02215" +239803,27in FHD Monitor,1,149.99,08/26/19 14:31,"630 6th St, Portland, ME 04101" +239804,Bose SoundSport Headphones,1,99.99,08/09/19 10:39,"669 Willow St, San Francisco, CA 94016" +239805,Apple Airpods Headphones,1,150,08/24/19 14:33,"437 North St, Seattle, WA 98101" +239806,USB-C Charging Cable,1,11.95,08/10/19 15:17,"874 4th St, New York City, NY 10001" +239807,Apple Airpods Headphones,1,150,08/05/19 17:38,"184 Meadow St, Atlanta, GA 30301" +239808,Bose SoundSport Headphones,1,99.99,08/04/19 17:03,"320 Center St, San Francisco, CA 94016" +239809,USB-C Charging Cable,1,11.95,08/04/19 20:58,"50 Willow St, San Francisco, CA 94016" +239810,27in 4K Gaming Monitor,1,389.99,08/11/19 23:01,"824 5th St, New York City, NY 10001" +239811,iPhone,1,700,08/22/19 20:15,"797 Chestnut St, Seattle, WA 98101" +239812,Macbook Pro Laptop,1,1700,08/31/19 16:49,"971 Elm St, Boston, MA 02215" +239813,USB-C Charging Cable,1,11.95,08/01/19 09:58,"675 Hill St, San Francisco, CA 94016" +239814,ThinkPad Laptop,1,999.99,08/04/19 10:44,"472 Park St, Dallas, TX 75001" +239815,AA Batteries (4-pack),2,3.84,08/14/19 20:11,"485 West St, Los Angeles, CA 90001" +239815,USB-C Charging Cable,1,11.95,08/14/19 20:11,"485 West St, Los Angeles, CA 90001" +239816,Google Phone,1,600,08/18/19 22:33,"841 Lincoln St, San Francisco, CA 94016" +239817,20in Monitor,1,109.99,08/13/19 12:20,"956 Lincoln St, San Francisco, CA 94016" +239818,Google Phone,1,600,08/09/19 10:59,"843 Church St, Los Angeles, CA 90001" +239819,Bose SoundSport Headphones,1,99.99,08/30/19 10:10,"95 Jackson St, San Francisco, CA 94016" +239820,USB-C Charging Cable,1,11.95,08/09/19 20:15,"102 8th St, San Francisco, CA 94016" +239821,AAA Batteries (4-pack),2,2.99,08/03/19 15:34,"360 Cherry St, Seattle, WA 98101" +239822,Wired Headphones,1,11.99,08/28/19 21:11,"142 Chestnut St, San Francisco, CA 94016" +239823,Wired Headphones,1,11.99,08/29/19 19:13,"717 Main St, San Francisco, CA 94016" +239824,USB-C Charging Cable,1,11.95,08/22/19 10:59,"851 Madison St, Los Angeles, CA 90001" +239825,AA Batteries (4-pack),1,3.84,08/24/19 14:04,"648 Hill St, Seattle, WA 98101" +239826,Lightning Charging Cable,1,14.95,08/24/19 22:09,"645 2nd St, San Francisco, CA 94016" +239827,AA Batteries (4-pack),3,3.84,08/24/19 11:49,"331 Chestnut St, San Francisco, CA 94016" +239828,Wired Headphones,1,11.99,08/05/19 11:55,"235 Church St, Los Angeles, CA 90001" +239829,27in FHD Monitor,1,149.99,08/31/19 13:59,"533 Lakeview St, Atlanta, GA 30301" +239830,AAA Batteries (4-pack),2,2.99,08/08/19 21:15,"718 Forest St, San Francisco, CA 94016" +239831,ThinkPad Laptop,1,999.99,08/03/19 13:31,"271 Pine St, San Francisco, CA 94016" +239832,AA Batteries (4-pack),1,3.84,08/30/19 07:23,"782 11th St, Atlanta, GA 30301" +239833,Apple Airpods Headphones,1,150,08/24/19 13:20,"230 Lakeview St, Austin, TX 73301" +239834,34in Ultrawide Monitor,1,379.99,08/21/19 21:42,"505 Lake St, Boston, MA 02215" +239835,Apple Airpods Headphones,1,150,08/27/19 16:24,"147 11th St, New York City, NY 10001" +239836,AA Batteries (4-pack),1,3.84,08/30/19 18:29,"619 13th St, New York City, NY 10001" +239837,Bose SoundSport Headphones,1,99.99,08/02/19 11:51,"935 River St, Portland, ME 04101" +239838,USB-C Charging Cable,1,11.95,08/19/19 22:43,"37 Maple St, New York City, NY 10001" +239839,USB-C Charging Cable,1,11.95,08/04/19 13:06,"189 Washington St, San Francisco, CA 94016" +239840,34in Ultrawide Monitor,1,379.99,08/14/19 19:19,"474 9th St, Boston, MA 02215" +239841,AA Batteries (4-pack),1,3.84,08/25/19 16:34,"233 8th St, Los Angeles, CA 90001" +239842,Bose SoundSport Headphones,1,99.99,08/08/19 17:39,"673 Washington St, San Francisco, CA 94016" +239843,Wired Headphones,1,11.99,08/03/19 12:11,"192 South St, Austin, TX 73301" +239844,27in FHD Monitor,1,149.99,08/03/19 09:45,"879 Meadow St, Dallas, TX 75001" +239845,AA Batteries (4-pack),1,3.84,08/02/19 14:09,"29 2nd St, Boston, MA 02215" +239846,AA Batteries (4-pack),2,3.84,08/20/19 20:24,"56 Lake St, San Francisco, CA 94016" +239847,Wired Headphones,1,11.99,08/11/19 19:36,"603 Elm St, Seattle, WA 98101" +239848,Wired Headphones,1,11.99,08/13/19 12:50,"33 Lakeview St, Seattle, WA 98101" +239849,AAA Batteries (4-pack),1,2.99,08/31/19 17:14,"110 Forest St, Seattle, WA 98101" +239850,AA Batteries (4-pack),1,3.84,08/05/19 17:08,"612 Dogwood St, Portland, OR 97035" +239851,AA Batteries (4-pack),2,3.84,08/24/19 21:34,"749 Lake St, Austin, TX 73301" +239852,27in FHD Monitor,1,149.99,08/13/19 02:49,"36 Cherry St, Boston, MA 02215" +239853,27in FHD Monitor,1,149.99,08/26/19 17:37,"421 Washington St, Boston, MA 02215" +239854,Bose SoundSport Headphones,1,99.99,08/25/19 11:06,"380 Highland St, San Francisco, CA 94016" +239855,Flatscreen TV,1,300,08/15/19 22:20,"173 Forest St, Austin, TX 73301" +239856,Lightning Charging Cable,1,14.95,08/27/19 21:07,"553 Ridge St, Austin, TX 73301" +239857,Flatscreen TV,1,300,08/30/19 00:12,"90 1st St, Atlanta, GA 30301" +239858,AA Batteries (4-pack),1,3.84,08/05/19 01:17,"695 Center St, Atlanta, GA 30301" +239859,iPhone,1,700,08/17/19 15:02,"51 Lake St, Dallas, TX 75001" +239860,AAA Batteries (4-pack),1,2.99,08/12/19 16:22,"94 Wilson St, Boston, MA 02215" +239861,Apple Airpods Headphones,1,150,08/08/19 22:30,"333 Willow St, Seattle, WA 98101" +239862,AAA Batteries (4-pack),1,2.99,08/08/19 08:51,"443 Lakeview St, San Francisco, CA 94016" +239863,20in Monitor,1,109.99,08/31/19 12:41,"86 1st St, Dallas, TX 75001" +239864,27in 4K Gaming Monitor,1,389.99,08/13/19 14:32,"985 West St, Los Angeles, CA 90001" +239865,USB-C Charging Cable,1,11.95,08/01/19 13:17,"79 Willow St, Seattle, WA 98101" +239866,Lightning Charging Cable,1,14.95,08/03/19 18:55,"927 Johnson St, Boston, MA 02215" +239867,Flatscreen TV,1,300,08/13/19 11:57,"545 Walnut St, Los Angeles, CA 90001" +239868,Flatscreen TV,1,300,08/28/19 13:03,"527 Hill St, Portland, OR 97035" +239869,Apple Airpods Headphones,1,150,08/17/19 14:08,"842 Adams St, San Francisco, CA 94016" +239869,34in Ultrawide Monitor,1,379.99,08/17/19 14:08,"842 Adams St, San Francisco, CA 94016" +239870,AAA Batteries (4-pack),1,2.99,08/17/19 12:24,"895 Lake St, New York City, NY 10001" +239871,Lightning Charging Cable,1,14.95,08/29/19 14:27,"309 8th St, New York City, NY 10001" +239872,Apple Airpods Headphones,1,150,08/31/19 00:12,"824 14th St, Boston, MA 02215" +239873,AAA Batteries (4-pack),2,2.99,08/06/19 17:42,"1 Forest St, San Francisco, CA 94016" +239874,AAA Batteries (4-pack),1,2.99,08/05/19 11:17,"238 2nd St, San Francisco, CA 94016" +239875,Bose SoundSport Headphones,1,99.99,08/20/19 23:40,"126 Chestnut St, San Francisco, CA 94016" +239876,Lightning Charging Cable,1,14.95,08/14/19 05:27,"697 Hill St, New York City, NY 10001" +239877,Bose SoundSport Headphones,1,99.99,08/01/19 20:48,"380 Meadow St, Portland, OR 97035" +239878,AAA Batteries (4-pack),1,2.99,08/23/19 05:43,"612 12th St, San Francisco, CA 94016" +239879,AA Batteries (4-pack),1,3.84,08/19/19 19:52,"412 Cherry St, Los Angeles, CA 90001" +239880,27in FHD Monitor,1,149.99,08/30/19 16:28,"567 West St, New York City, NY 10001" +239881,Vareebadd Phone,1,400,08/25/19 17:14,"622 13th St, New York City, NY 10001" +239882,Macbook Pro Laptop,1,1700,08/08/19 19:56,"580 4th St, San Francisco, CA 94016" +239883,Apple Airpods Headphones,1,150,08/31/19 08:08,"870 Hill St, Atlanta, GA 30301" +239884,AAA Batteries (4-pack),1,2.99,08/09/19 09:11,"415 Cherry St, Dallas, TX 75001" +239885,Apple Airpods Headphones,1,150,08/02/19 18:10,"449 9th St, Los Angeles, CA 90001" +239886,Bose SoundSport Headphones,1,99.99,08/07/19 13:38,"996 Maple St, San Francisco, CA 94016" +239887,Google Phone,1,600,08/23/19 11:25,"931 Dogwood St, Boston, MA 02215" +239887,Wired Headphones,1,11.99,08/23/19 11:25,"931 Dogwood St, Boston, MA 02215" +239888,Wired Headphones,1,11.99,08/01/19 14:01,"991 2nd St, Los Angeles, CA 90001" +239889,Wired Headphones,1,11.99,08/05/19 07:53,"871 South St, New York City, NY 10001" +239890,AAA Batteries (4-pack),2,2.99,08/06/19 12:46,"67 13th St, Portland, OR 97035" +239891,27in 4K Gaming Monitor,1,389.99,08/07/19 13:04,"544 1st St, Austin, TX 73301" +239892,Google Phone,1,600,08/09/19 14:00,"782 West St, Portland, OR 97035" +239893,Wired Headphones,1,11.99,08/12/19 15:15,"734 Jefferson St, Boston, MA 02215" +239894,AAA Batteries (4-pack),1,2.99,08/10/19 22:56,"310 Walnut St, Austin, TX 73301" +239895,AAA Batteries (4-pack),1,2.99,08/29/19 19:41,"642 Lincoln St, New York City, NY 10001" +239896,AAA Batteries (4-pack),1,2.99,08/08/19 15:23,"783 Lakeview St, San Francisco, CA 94016" +239897,Macbook Pro Laptop,1,1700,08/26/19 01:47,"236 Jackson St, San Francisco, CA 94016" +239898,LG Washing Machine,1,600.0,08/30/19 11:47,"583 Elm St, Boston, MA 02215" +239899,Bose SoundSport Headphones,1,99.99,08/18/19 13:24,"299 Forest St, Los Angeles, CA 90001" +239900,USB-C Charging Cable,1,11.95,08/30/19 17:02,"589 6th St, New York City, NY 10001" +239901,Wired Headphones,1,11.99,08/05/19 10:52,"211 12th St, San Francisco, CA 94016" +239902,AA Batteries (4-pack),1,3.84,08/19/19 08:34,"634 14th St, Los Angeles, CA 90001" +239903,Apple Airpods Headphones,1,150,08/08/19 16:23,"963 Willow St, San Francisco, CA 94016" +239904,AA Batteries (4-pack),2,3.84,08/15/19 16:25,"823 10th St, Dallas, TX 75001" +239905,AA Batteries (4-pack),1,3.84,08/19/19 00:31,"256 Madison St, Boston, MA 02215" +239906,Lightning Charging Cable,2,14.95,08/05/19 13:57,"651 Dogwood St, Atlanta, GA 30301" +239907,Bose SoundSport Headphones,1,99.99,08/17/19 13:35,"490 13th St, New York City, NY 10001" +239908,Apple Airpods Headphones,1,150,08/29/19 13:34,"500 10th St, Boston, MA 02215" +239909,AAA Batteries (4-pack),2,2.99,08/10/19 13:08,"557 Church St, Boston, MA 02215" +239910,Wired Headphones,1,11.99,08/19/19 08:53,"541 Willow St, Los Angeles, CA 90001" +239911,Lightning Charging Cable,1,14.95,08/25/19 22:38,"927 Hill St, San Francisco, CA 94016" +239912,Lightning Charging Cable,1,14.95,08/02/19 20:12,"137 Cherry St, Portland, ME 04101" +239913,Apple Airpods Headphones,1,150,08/15/19 12:07,"863 12th St, Boston, MA 02215" +239914,AAA Batteries (4-pack),1,2.99,08/16/19 10:16,"641 Johnson St, Boston, MA 02215" +239915,Bose SoundSport Headphones,1,99.99,08/11/19 19:25,"273 Johnson St, New York City, NY 10001" +239916,Lightning Charging Cable,1,14.95,08/18/19 15:07,"365 Wilson St, New York City, NY 10001" +239917,Apple Airpods Headphones,1,150,08/28/19 20:05,"432 Meadow St, Los Angeles, CA 90001" +239918,AAA Batteries (4-pack),1,2.99,08/14/19 22:36,"911 River St, San Francisco, CA 94016" +239918,Bose SoundSport Headphones,1,99.99,08/14/19 22:36,"911 River St, San Francisco, CA 94016" +239919,Lightning Charging Cable,1,14.95,08/04/19 13:52,"879 Center St, San Francisco, CA 94016" +239920,Wired Headphones,1,11.99,08/31/19 13:01,"477 Church St, Dallas, TX 75001" +239921,27in FHD Monitor,1,149.99,08/10/19 14:51,"213 River St, San Francisco, CA 94016" +239922,Macbook Pro Laptop,1,1700,08/12/19 20:39,"498 Hickory St, Los Angeles, CA 90001" +239923,USB-C Charging Cable,1,11.95,08/02/19 12:02,"675 Elm St, San Francisco, CA 94016" +239924,Wired Headphones,1,11.99,08/28/19 01:47,"486 Elm St, Boston, MA 02215" +239925,USB-C Charging Cable,1,11.95,08/13/19 21:31,"599 Cherry St, Los Angeles, CA 90001" +239925,AAA Batteries (4-pack),1,2.99,08/13/19 21:31,"599 Cherry St, Los Angeles, CA 90001" +239926,Wired Headphones,1,11.99,08/11/19 20:59,"632 Walnut St, San Francisco, CA 94016" +239927,USB-C Charging Cable,1,11.95,08/11/19 10:25,"435 7th St, San Francisco, CA 94016" +239928,20in Monitor,1,109.99,08/19/19 20:16,"80 Lincoln St, Los Angeles, CA 90001" +239929,ThinkPad Laptop,1,999.99,08/07/19 12:40,"879 9th St, Portland, OR 97035" +239930,Bose SoundSport Headphones,1,99.99,08/17/19 19:14,"802 Center St, San Francisco, CA 94016" +239931,Vareebadd Phone,1,400,08/15/19 08:01,"995 9th St, Portland, OR 97035" +239932,AAA Batteries (4-pack),6,2.99,08/06/19 06:36,"268 Chestnut St, Boston, MA 02215" +239933,34in Ultrawide Monitor,1,379.99,08/27/19 10:50,"69 14th St, New York City, NY 10001" +239934,Apple Airpods Headphones,1,150,08/22/19 19:24,"839 Elm St, Los Angeles, CA 90001" +239935,USB-C Charging Cable,1,11.95,08/12/19 13:46,"423 9th St, Los Angeles, CA 90001" +239936,Bose SoundSport Headphones,1,99.99,08/17/19 17:14,"252 Willow St, Los Angeles, CA 90001" +239937,AA Batteries (4-pack),1,3.84,08/12/19 10:26,"874 Forest St, San Francisco, CA 94016" +239938,34in Ultrawide Monitor,1,379.99,08/24/19 15:03,"465 12th St, Boston, MA 02215" +239939,27in FHD Monitor,1,149.99,08/18/19 11:16,"314 Lakeview St, Los Angeles, CA 90001" +239940,AAA Batteries (4-pack),2,2.99,08/24/19 17:31,"306 Cherry St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +239941,Wired Headphones,2,11.99,08/17/19 13:08,"148 2nd St, Los Angeles, CA 90001" +239942,Bose SoundSport Headphones,1,99.99,08/27/19 18:17,"683 Lakeview St, Los Angeles, CA 90001" +239943,Apple Airpods Headphones,1,150,08/24/19 11:13,"753 Jackson St, Austin, TX 73301" +239944,20in Monitor,1,109.99,08/18/19 19:52,"774 North St, New York City, NY 10001" +239945,USB-C Charging Cable,1,11.95,08/16/19 13:43,"530 Lake St, Los Angeles, CA 90001" +239946,USB-C Charging Cable,1,11.95,08/05/19 17:53,"224 Walnut St, San Francisco, CA 94016" +239947,Lightning Charging Cable,1,14.95,08/06/19 15:31,"534 9th St, San Francisco, CA 94016" +239948,Bose SoundSport Headphones,1,99.99,08/03/19 10:52,"596 Highland St, San Francisco, CA 94016" +239949,Apple Airpods Headphones,1,150,08/24/19 15:43,"263 Jefferson St, Seattle, WA 98101" +239950,Wired Headphones,1,11.99,08/17/19 17:54,"117 Spruce St, Los Angeles, CA 90001" +239951,USB-C Charging Cable,1,11.95,08/24/19 13:52,"35 4th St, Los Angeles, CA 90001" +239952,AAA Batteries (4-pack),1,2.99,08/13/19 13:40,"718 Elm St, Los Angeles, CA 90001" +239953,Lightning Charging Cable,1,14.95,08/20/19 21:11,"504 Wilson St, Austin, TX 73301" +239954,Google Phone,1,600,08/11/19 16:20,"411 Lake St, Los Angeles, CA 90001" +239955,ThinkPad Laptop,1,999.99,08/30/19 23:17,"103 7th St, Portland, OR 97035" +239956,Apple Airpods Headphones,1,150,08/24/19 21:37,"65 Center St, Austin, TX 73301" +239957,Bose SoundSport Headphones,1,99.99,08/20/19 02:23,"217 2nd St, Seattle, WA 98101" +239958,AAA Batteries (4-pack),2,2.99,08/03/19 16:57,"856 Dogwood St, San Francisco, CA 94016" +239959,27in 4K Gaming Monitor,1,389.99,08/04/19 21:19,"575 Adams St, Los Angeles, CA 90001" +239960,Lightning Charging Cable,1,14.95,08/17/19 14:59,"355 Maple St, Seattle, WA 98101" +239961,Wired Headphones,1,11.99,08/17/19 23:11,"117 5th St, Atlanta, GA 30301" +239962,Wired Headphones,2,11.99,08/23/19 14:31,"268 South St, Atlanta, GA 30301" +239963,AA Batteries (4-pack),1,3.84,08/09/19 06:46,"851 4th St, San Francisco, CA 94016" +239964,AAA Batteries (4-pack),1,2.99,08/16/19 21:41,"592 8th St, Seattle, WA 98101" +239965,AA Batteries (4-pack),1,3.84,08/17/19 21:43,"126 Willow St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +239966,Apple Airpods Headphones,1,150,08/20/19 23:07,"994 9th St, San Francisco, CA 94016" +239967,Google Phone,1,600,08/22/19 03:17,"719 Church St, San Francisco, CA 94016" +239968,27in 4K Gaming Monitor,1,389.99,08/28/19 10:11,"695 River St, Los Angeles, CA 90001" +239969,AA Batteries (4-pack),1,3.84,08/03/19 12:01,"425 Highland St, Seattle, WA 98101" +239970,Bose SoundSport Headphones,1,99.99,08/06/19 01:38,"480 Pine St, New York City, NY 10001" +239971,AAA Batteries (4-pack),2,2.99,08/06/19 07:00,"630 Church St, Seattle, WA 98101" +239972,AAA Batteries (4-pack),1,2.99,08/08/19 20:19,"125 River St, Los Angeles, CA 90001" +239973,Lightning Charging Cable,1,14.95,08/10/19 12:42,"986 Lincoln St, San Francisco, CA 94016" +239974,AA Batteries (4-pack),1,3.84,08/06/19 19:19,"57 Willow St, Atlanta, GA 30301" +239975,Wired Headphones,1,11.99,08/28/19 13:31,"862 Cedar St, San Francisco, CA 94016" +239976,AAA Batteries (4-pack),3,2.99,08/11/19 15:00,"610 Madison St, Los Angeles, CA 90001" +239977,Bose SoundSport Headphones,1,99.99,08/22/19 11:53,"176 4th St, Atlanta, GA 30301" +239978,Bose SoundSport Headphones,1,99.99,08/27/19 10:32,"477 2nd St, Los Angeles, CA 90001" +239979,AAA Batteries (4-pack),1,2.99,08/23/19 22:08,"240 5th St, San Francisco, CA 94016" +239980,27in FHD Monitor,1,149.99,08/16/19 14:46,"715 10th St, San Francisco, CA 94016" +239981,Apple Airpods Headphones,1,150,08/07/19 16:42,"796 Maple St, Austin, TX 73301" +239982,20in Monitor,1,109.99,08/15/19 22:12,"437 Chestnut St, San Francisco, CA 94016" +239983,AA Batteries (4-pack),2,3.84,08/06/19 20:58,"783 Sunset St, New York City, NY 10001" +239984,34in Ultrawide Monitor,1,379.99,08/30/19 18:44,"542 1st St, San Francisco, CA 94016" +239985,Google Phone,1,600,08/17/19 10:37,"267 South St, San Francisco, CA 94016" +239986,iPhone,1,700,08/04/19 16:26,"338 11th St, San Francisco, CA 94016" +239986,Lightning Charging Cable,1,14.95,08/04/19 16:26,"338 11th St, San Francisco, CA 94016" +239987,Vareebadd Phone,1,400,08/16/19 11:16,"58 West St, Atlanta, GA 30301" +239988,27in FHD Monitor,1,149.99,08/04/19 14:14,"572 6th St, San Francisco, CA 94016" +239989,Bose SoundSport Headphones,1,99.99,08/25/19 14:13,"204 Lakeview St, Seattle, WA 98101" +239990,AA Batteries (4-pack),1,3.84,08/07/19 12:30,"145 Lakeview St, New York City, NY 10001" +239991,Lightning Charging Cable,1,14.95,08/13/19 08:45,"937 North St, Los Angeles, CA 90001" +239991,AAA Batteries (4-pack),3,2.99,08/13/19 08:45,"937 North St, Los Angeles, CA 90001" +239992,AA Batteries (4-pack),2,3.84,08/28/19 19:37,"60 South St, Los Angeles, CA 90001" +239993,Bose SoundSport Headphones,1,99.99,08/22/19 20:19,"552 Lake St, Portland, OR 97035" +239994,Lightning Charging Cable,1,14.95,08/05/19 17:35,"885 Spruce St, Portland, OR 97035" +239995,USB-C Charging Cable,1,11.95,08/06/19 06:52,"367 Johnson St, San Francisco, CA 94016" +239996,Bose SoundSport Headphones,1,99.99,08/20/19 23:21,"340 Elm St, Los Angeles, CA 90001" +239997,AA Batteries (4-pack),2,3.84,08/07/19 22:20,"466 Jefferson St, Austin, TX 73301" +239998,AA Batteries (4-pack),2,3.84,08/24/19 15:47,"215 Willow St, New York City, NY 10001" +239999,Flatscreen TV,1,300,08/26/19 01:32,"798 Spruce St, New York City, NY 10001" +240000,27in 4K Gaming Monitor,1,389.99,08/20/19 09:56,"706 Wilson St, Seattle, WA 98101" +240001,Bose SoundSport Headphones,1,99.99,08/14/19 12:10,"998 Forest St, Atlanta, GA 30301" +240002,Wired Headphones,1,11.99,09/01/19 00:21,"932 Cedar St, Boston, MA 02215" +240003,Bose SoundSport Headphones,1,99.99,08/26/19 12:57,"56 Forest St, Los Angeles, CA 90001" +240004,AAA Batteries (4-pack),1,2.99,08/10/19 12:31,"971 Pine St, Austin, TX 73301" +240005,Macbook Pro Laptop,1,1700,08/18/19 14:35,"649 Sunset St, Boston, MA 02215" +240006,AA Batteries (4-pack),1,3.84,08/29/19 09:01,"3 6th St, Los Angeles, CA 90001" +240007,Google Phone,1,600,08/10/19 13:15,"13 Cherry St, Dallas, TX 75001" +240007,Bose SoundSport Headphones,1,99.99,08/10/19 13:15,"13 Cherry St, Dallas, TX 75001" +240008,ThinkPad Laptop,1,999.99,08/28/19 10:59,"923 Elm St, Austin, TX 73301" +240009,Lightning Charging Cable,1,14.95,08/29/19 20:36,"60 Park St, Los Angeles, CA 90001" +240010,27in FHD Monitor,1,149.99,08/12/19 14:35,"75 Walnut St, Portland, OR 97035" +240010,USB-C Charging Cable,1,11.95,08/12/19 14:35,"75 Walnut St, Portland, OR 97035" +240011,AAA Batteries (4-pack),2,2.99,08/16/19 10:11,"195 Jefferson St, New York City, NY 10001" +240012,Wired Headphones,3,11.99,08/14/19 20:36,"349 Hickory St, Portland, OR 97035" +240013,Bose SoundSport Headphones,1,99.99,08/01/19 20:34,"140 Meadow St, Los Angeles, CA 90001" +240014,USB-C Charging Cable,1,11.95,08/03/19 10:49,"945 Dogwood St, Los Angeles, CA 90001" +240015,Apple Airpods Headphones,1,150,08/28/19 08:42,"242 9th St, Seattle, WA 98101" +240016,Wired Headphones,1,11.99,08/09/19 05:10,"744 Elm St, Dallas, TX 75001" +240017,Flatscreen TV,1,300,08/09/19 18:41,"899 Lakeview St, Seattle, WA 98101" +240018,USB-C Charging Cable,1,11.95,08/31/19 11:56,"63 Johnson St, San Francisco, CA 94016" +240019,AAA Batteries (4-pack),1,2.99,08/15/19 08:20,"880 Dogwood St, Portland, ME 04101" +240020,Apple Airpods Headphones,1,150,08/24/19 18:34,"670 Willow St, Seattle, WA 98101" +240021,Google Phone,1,600,08/15/19 05:54,"478 Meadow St, Boston, MA 02215" +240022,USB-C Charging Cable,1,11.95,08/03/19 23:09,"14 Spruce St, Austin, TX 73301" +240023,Wired Headphones,1,11.99,08/22/19 00:00,"180 South St, Seattle, WA 98101" +240024,Bose SoundSport Headphones,1,99.99,08/22/19 08:29,"467 Elm St, Los Angeles, CA 90001" +240025,USB-C Charging Cable,1,11.95,08/19/19 08:16,"829 4th St, Los Angeles, CA 90001" +240026,AAA Batteries (4-pack),1,2.99,08/24/19 18:15,"278 Chestnut St, New York City, NY 10001" +240027,Wired Headphones,1,11.99,08/06/19 09:11,"952 Maple St, Seattle, WA 98101" +240028,27in FHD Monitor,1,149.99,08/16/19 15:06,"701 Highland St, Los Angeles, CA 90001" +240029,AAA Batteries (4-pack),1,2.99,08/27/19 11:21,"848 Willow St, Dallas, TX 75001" +240030,27in 4K Gaming Monitor,1,389.99,08/20/19 19:10,"461 Pine St, New York City, NY 10001" +240031,Wired Headphones,2,11.99,08/02/19 18:36,"684 Park St, Los Angeles, CA 90001" +240032,USB-C Charging Cable,1,11.95,08/26/19 19:50,"778 Forest St, Seattle, WA 98101" +240033,AA Batteries (4-pack),1,3.84,08/26/19 22:06,"368 Willow St, San Francisco, CA 94016" +240034,Lightning Charging Cable,2,14.95,08/20/19 12:57,"675 Lake St, Los Angeles, CA 90001" +240035,34in Ultrawide Monitor,1,379.99,08/31/19 16:51,"249 9th St, New York City, NY 10001" +240036,iPhone,1,700,08/25/19 19:36,"926 Lakeview St, New York City, NY 10001" +240036,Lightning Charging Cable,1,14.95,08/25/19 19:36,"926 Lakeview St, New York City, NY 10001" +240037,20in Monitor,1,109.99,08/26/19 11:46,"99 South St, Boston, MA 02215" +240038,Wired Headphones,1,11.99,08/30/19 10:24,"539 Spruce St, San Francisco, CA 94016" +240039,USB-C Charging Cable,1,11.95,08/12/19 12:37,"246 Hill St, San Francisco, CA 94016" +240040,USB-C Charging Cable,1,11.95,08/03/19 01:47,"903 Center St, Boston, MA 02215" +240041,Bose SoundSport Headphones,1,99.99,08/01/19 11:34,"202 Lincoln St, Los Angeles, CA 90001" +240042,Lightning Charging Cable,1,14.95,08/16/19 18:13,"743 Cherry St, Los Angeles, CA 90001" +240043,Apple Airpods Headphones,1,150,08/30/19 21:28,"782 7th St, Los Angeles, CA 90001" +240044,Vareebadd Phone,1,400,08/21/19 11:44,"442 Washington St, San Francisco, CA 94016" +240045,Google Phone,1,600,08/23/19 14:39,"842 2nd St, San Francisco, CA 94016" +240046,AAA Batteries (4-pack),1,2.99,08/10/19 21:06,"180 Highland St, New York City, NY 10001" +240047,AA Batteries (4-pack),1,3.84,08/04/19 16:46,"471 Main St, Portland, OR 97035" +240048,Lightning Charging Cable,1,14.95,08/19/19 17:50,"976 Church St, Austin, TX 73301" +240049,Wired Headphones,1,11.99,08/08/19 17:51,"209 Wilson St, Los Angeles, CA 90001" +240050,AAA Batteries (4-pack),1,2.99,08/17/19 09:58,"175 Spruce St, San Francisco, CA 94016" +240051,USB-C Charging Cable,1,11.95,08/20/19 16:56,"13 Sunset St, San Francisco, CA 94016" +240052,20in Monitor,1,109.99,08/07/19 22:47,"479 12th St, San Francisco, CA 94016" +240053,Bose SoundSport Headphones,1,99.99,08/11/19 06:37,"487 Willow St, New York City, NY 10001" +240054,Wired Headphones,1,11.99,08/18/19 12:35,"191 6th St, Los Angeles, CA 90001" +240055,Google Phone,1,600,08/25/19 22:10,"391 Church St, New York City, NY 10001" +240056,Apple Airpods Headphones,1,150,08/29/19 19:22,"829 14th St, Portland, OR 97035" +240057,AA Batteries (4-pack),1,3.84,08/24/19 14:15,"518 Cherry St, Boston, MA 02215" +240058,USB-C Charging Cable,1,11.95,08/06/19 17:33,"897 6th St, San Francisco, CA 94016" +240059,Lightning Charging Cable,1,14.95,08/30/19 12:23,"692 Lincoln St, Atlanta, GA 30301" +240060,AA Batteries (4-pack),2,3.84,08/12/19 18:24,"306 8th St, Seattle, WA 98101" +240061,AA Batteries (4-pack),2,3.84,08/16/19 20:45,"214 Walnut St, New York City, NY 10001" +240062,Bose SoundSport Headphones,1,99.99,08/31/19 18:23,"761 West St, San Francisco, CA 94016" +240063,Wired Headphones,1,11.99,08/20/19 18:30,"262 Main St, San Francisco, CA 94016" +240064,27in FHD Monitor,1,149.99,08/20/19 16:57,"775 Hickory St, Los Angeles, CA 90001" +240065,USB-C Charging Cable,1,11.95,08/29/19 15:16,"602 Church St, Austin, TX 73301" +240066,Lightning Charging Cable,1,14.95,08/30/19 00:00,"640 Maple St, New York City, NY 10001" +240067,Macbook Pro Laptop,1,1700,08/29/19 19:21,"648 7th St, San Francisco, CA 94016" +240068,34in Ultrawide Monitor,1,379.99,08/24/19 18:23,"894 Jackson St, Boston, MA 02215" +240069,Wired Headphones,1,11.99,08/18/19 13:57,"978 Forest St, San Francisco, CA 94016" +240070,Lightning Charging Cable,1,14.95,08/31/19 00:17,"850 Lake St, Los Angeles, CA 90001" +240071,Bose SoundSport Headphones,1,99.99,08/17/19 14:05,"902 8th St, San Francisco, CA 94016" +240072,AA Batteries (4-pack),1,3.84,08/23/19 13:41,"373 Spruce St, New York City, NY 10001" +240073,AAA Batteries (4-pack),1,2.99,08/13/19 21:26,"465 Walnut St, Boston, MA 02215" +240074,Wired Headphones,1,11.99,08/17/19 01:27,"493 Johnson St, San Francisco, CA 94016" +240075,Lightning Charging Cable,2,14.95,08/09/19 20:46,"763 4th St, Los Angeles, CA 90001" +240076,AA Batteries (4-pack),2,3.84,08/26/19 16:30,"702 Highland St, Boston, MA 02215" +240077,Wired Headphones,1,11.99,08/10/19 12:27,"186 Willow St, New York City, NY 10001" +240078,Lightning Charging Cable,1,14.95,08/13/19 14:43,"215 Hickory St, Los Angeles, CA 90001" +240079,27in 4K Gaming Monitor,1,389.99,08/23/19 19:11,"365 Elm St, Atlanta, GA 30301" +240080,AA Batteries (4-pack),1,3.84,08/28/19 07:56,"915 Spruce St, San Francisco, CA 94016" +240081,USB-C Charging Cable,1,11.95,08/14/19 16:00,"795 14th St, New York City, NY 10001" +240082,AA Batteries (4-pack),2,3.84,08/19/19 21:40,"22 Main St, Los Angeles, CA 90001" +240083,iPhone,1,700,08/18/19 22:33,"219 Church St, Los Angeles, CA 90001" +240084,Bose SoundSport Headphones,1,99.99,08/20/19 20:19,"734 Adams St, New York City, NY 10001" +240085,Lightning Charging Cable,1,14.95,08/14/19 15:34,"879 Maple St, San Francisco, CA 94016" +240086,AA Batteries (4-pack),1,3.84,08/17/19 09:11,"188 Jefferson St, Los Angeles, CA 90001" +240087,USB-C Charging Cable,1,11.95,08/23/19 22:30,"998 7th St, Boston, MA 02215" +240088,Bose SoundSport Headphones,1,99.99,08/08/19 12:36,"793 Cherry St, Atlanta, GA 30301" +240089,Bose SoundSport Headphones,1,99.99,08/03/19 10:13,"780 Dogwood St, San Francisco, CA 94016" +240090,20in Monitor,1,109.99,08/06/19 00:58,"324 Park St, New York City, NY 10001" +240091,AA Batteries (4-pack),2,3.84,08/07/19 15:45,"978 Lake St, Atlanta, GA 30301" +240092,Lightning Charging Cable,1,14.95,08/22/19 06:43,"920 Lakeview St, Austin, TX 73301" +240093,USB-C Charging Cable,1,11.95,08/30/19 21:32,"438 Washington St, Boston, MA 02215" +240094,34in Ultrawide Monitor,1,379.99,08/20/19 01:06,"836 Spruce St, Dallas, TX 75001" +240095,AAA Batteries (4-pack),1,2.99,08/04/19 17:14,"125 Willow St, San Francisco, CA 94016" +240096,AAA Batteries (4-pack),1,2.99,08/21/19 16:43,"626 Ridge St, Los Angeles, CA 90001" +240097,ThinkPad Laptop,1,999.99,08/16/19 18:42,"294 Meadow St, Atlanta, GA 30301" +240098,iPhone,1,700,08/20/19 19:10,"277 Walnut St, San Francisco, CA 94016" +240099,27in 4K Gaming Monitor,1,389.99,08/20/19 20:06,"987 Lakeview St, San Francisco, CA 94016" +240100,USB-C Charging Cable,1,11.95,08/28/19 18:44,"528 Forest St, Portland, ME 04101" +240100,AAA Batteries (4-pack),1,2.99,08/28/19 18:44,"528 Forest St, Portland, ME 04101" +240101,AA Batteries (4-pack),1,3.84,08/12/19 12:33,"276 Ridge St, New York City, NY 10001" +240102,Wired Headphones,1,11.99,08/17/19 19:46,"211 7th St, Boston, MA 02215" +240103,Apple Airpods Headphones,1,150,08/12/19 16:37,"494 North St, San Francisco, CA 94016" +240104,Lightning Charging Cable,1,14.95,08/01/19 18:25,"417 Hill St, New York City, NY 10001" +240105,Wired Headphones,1,11.99,08/31/19 10:44,"586 South St, San Francisco, CA 94016" +240106,AA Batteries (4-pack),2,3.84,08/20/19 14:54,"923 13th St, San Francisco, CA 94016" +240107,USB-C Charging Cable,1,11.95,08/04/19 00:04,"17 Madison St, San Francisco, CA 94016" +240108,iPhone,1,700,08/08/19 17:04,"205 7th St, Los Angeles, CA 90001" +240109,AA Batteries (4-pack),1,3.84,08/19/19 11:02,"182 5th St, Atlanta, GA 30301" +240110,34in Ultrawide Monitor,1,379.99,08/14/19 07:56,"548 Forest St, San Francisco, CA 94016" +240111,Flatscreen TV,1,300,08/09/19 18:34,"88 2nd St, San Francisco, CA 94016" +240112,AAA Batteries (4-pack),2,2.99,08/20/19 14:01,"526 13th St, Austin, TX 73301" +240113,27in FHD Monitor,1,149.99,08/26/19 20:41,"313 2nd St, San Francisco, CA 94016" +240114,Apple Airpods Headphones,1,150,08/24/19 10:28,"471 Madison St, Dallas, TX 75001" +240115,34in Ultrawide Monitor,1,379.99,08/05/19 17:00,"269 2nd St, New York City, NY 10001" +240116,AA Batteries (4-pack),1,3.84,08/08/19 18:35,"863 11th St, New York City, NY 10001" +240117,Wired Headphones,1,11.99,08/02/19 12:04,"812 Madison St, San Francisco, CA 94016" +240118,AAA Batteries (4-pack),1,2.99,08/19/19 11:50,"521 Madison St, New York City, NY 10001" +240119,27in FHD Monitor,1,149.99,08/22/19 11:04,"314 6th St, Seattle, WA 98101" +240120,34in Ultrawide Monitor,1,379.99,08/27/19 11:01,"799 Meadow St, San Francisco, CA 94016" +240121,27in FHD Monitor,1,149.99,08/28/19 19:27,"603 Lincoln St, Los Angeles, CA 90001" +240122,AAA Batteries (4-pack),1,2.99,08/08/19 18:37,"146 13th St, Los Angeles, CA 90001" +240123,Bose SoundSport Headphones,1,99.99,08/19/19 05:12,"797 14th St, New York City, NY 10001" +240124,AAA Batteries (4-pack),1,2.99,08/13/19 16:35,"314 12th St, Portland, OR 97035" +240125,Macbook Pro Laptop,1,1700,08/17/19 12:57,"359 South St, Boston, MA 02215" +240126,AA Batteries (4-pack),1,3.84,08/06/19 21:56,"91 9th St, Boston, MA 02215" +240127,Google Phone,1,600,08/29/19 07:46,"216 North St, Atlanta, GA 30301" +240128,Apple Airpods Headphones,1,150,08/30/19 23:33,"951 Ridge St, San Francisco, CA 94016" +240129,20in Monitor,1,109.99,08/23/19 14:50,"165 Willow St, Los Angeles, CA 90001" +240130,Lightning Charging Cable,1,14.95,08/06/19 11:50,"641 Walnut St, San Francisco, CA 94016" +240131,USB-C Charging Cable,1,11.95,08/02/19 23:01,"135 Jefferson St, Los Angeles, CA 90001" +240132,Lightning Charging Cable,1,14.95,08/08/19 22:25,"768 South St, Dallas, TX 75001" +240133,Wired Headphones,1,11.99,08/15/19 09:37,"842 South St, Dallas, TX 75001" +240134,AAA Batteries (4-pack),1,2.99,08/03/19 18:35,"903 2nd St, Austin, TX 73301" +240134,Wired Headphones,1,11.99,08/03/19 18:35,"903 2nd St, Austin, TX 73301" +240135,USB-C Charging Cable,1,11.95,08/27/19 22:03,"865 North St, Atlanta, GA 30301" +240136,Vareebadd Phone,1,400,08/17/19 15:53,"4 Pine St, San Francisco, CA 94016" +240137,27in FHD Monitor,1,149.99,08/13/19 19:52,"681 Hickory St, Los Angeles, CA 90001" +240138,AA Batteries (4-pack),1,3.84,08/03/19 19:10,"693 Dogwood St, Portland, ME 04101" +240139,34in Ultrawide Monitor,1,379.99,08/26/19 14:41,"49 14th St, Seattle, WA 98101" +240140,Lightning Charging Cable,1,14.95,08/13/19 11:46,"592 8th St, Portland, OR 97035" +240141,AAA Batteries (4-pack),1,2.99,08/19/19 19:00,"778 Center St, New York City, NY 10001" +240142,AA Batteries (4-pack),1,3.84,08/08/19 21:03,"739 Ridge St, New York City, NY 10001" +240143,Wired Headphones,1,11.99,08/31/19 12:53,"246 Park St, Seattle, WA 98101" +240144,Macbook Pro Laptop,1,1700,08/10/19 07:20,"59 14th St, Austin, TX 73301" +240145,Google Phone,1,600,08/28/19 11:36,"191 6th St, Los Angeles, CA 90001" +240145,Bose SoundSport Headphones,1,99.99,08/28/19 11:36,"191 6th St, Los Angeles, CA 90001" +240146,AAA Batteries (4-pack),2,2.99,08/06/19 10:42,"467 Dogwood St, Los Angeles, CA 90001" +240147,Wired Headphones,1,11.99,08/25/19 15:18,"110 Adams St, New York City, NY 10001" +240148,27in FHD Monitor,1,149.99,08/21/19 00:12,"132 1st St, Seattle, WA 98101" +240149,27in FHD Monitor,1,149.99,08/30/19 18:22,"921 13th St, San Francisco, CA 94016" +240150,AAA Batteries (4-pack),2,2.99,08/10/19 07:55,"234 Madison St, Los Angeles, CA 90001" +240151,Flatscreen TV,1,300,08/01/19 12:36,"757 Highland St, San Francisco, CA 94016" +240152,Lightning Charging Cable,1,14.95,08/18/19 18:08,"116 Ridge St, Dallas, TX 75001" +240153,Macbook Pro Laptop,1,1700,08/02/19 20:02,"652 12th St, Seattle, WA 98101" +240154,USB-C Charging Cable,1,11.95,08/02/19 18:33,"644 10th St, Austin, TX 73301" +240155,Bose SoundSport Headphones,1,99.99,08/04/19 23:38,"492 Chestnut St, San Francisco, CA 94016" +240156,Google Phone,1,600,08/19/19 16:44,"103 Adams St, San Francisco, CA 94016" +240157,AA Batteries (4-pack),2,3.84,08/25/19 13:09,"167 Lincoln St, Seattle, WA 98101" +240158,AA Batteries (4-pack),2,3.84,08/10/19 11:53,"508 6th St, Atlanta, GA 30301" +240159,Flatscreen TV,1,300,08/12/19 10:04,"114 13th St, Seattle, WA 98101" +240160,AAA Batteries (4-pack),1,2.99,08/24/19 18:12,"929 Elm St, Los Angeles, CA 90001" +240161,Wired Headphones,1,11.99,08/20/19 12:30,"292 Ridge St, Boston, MA 02215" +240162,Lightning Charging Cable,1,14.95,08/28/19 05:51,"483 Forest St, Dallas, TX 75001" +240163,Wired Headphones,1,11.99,08/24/19 16:46,"268 Chestnut St, Seattle, WA 98101" +240164,Bose SoundSport Headphones,1,99.99,08/01/19 17:45,"956 Sunset St, Austin, TX 73301" +240165,Apple Airpods Headphones,1,150,08/05/19 00:12,"193 Spruce St, Atlanta, GA 30301" +240166,27in 4K Gaming Monitor,1,389.99,08/06/19 09:43,"133 Cedar St, Seattle, WA 98101" +240167,ThinkPad Laptop,1,999.99,08/26/19 17:34,"683 Lincoln St, Los Angeles, CA 90001" +240168,27in 4K Gaming Monitor,1,389.99,08/08/19 15:19,"168 Church St, Portland, OR 97035" +240169,27in 4K Gaming Monitor,1,389.99,08/09/19 19:37,"601 12th St, San Francisco, CA 94016" +240170,AAA Batteries (4-pack),1,2.99,08/29/19 20:18,"781 7th St, New York City, NY 10001" +240171,AAA Batteries (4-pack),3,2.99,08/17/19 09:33,"234 Center St, New York City, NY 10001" +240172,AA Batteries (4-pack),1,3.84,08/15/19 19:38,"200 Highland St, Austin, TX 73301" +240173,AAA Batteries (4-pack),4,2.99,08/03/19 11:56,"519 Pine St, New York City, NY 10001" +240174,AAA Batteries (4-pack),2,2.99,08/21/19 10:46,"136 Hill St, Austin, TX 73301" +240175,Wired Headphones,1,11.99,08/25/19 11:40,"150 13th St, New York City, NY 10001" +240176,20in Monitor,1,109.99,08/20/19 20:28,"209 Johnson St, Los Angeles, CA 90001" +240177,Vareebadd Phone,1,400,08/16/19 21:41,"356 13th St, Los Angeles, CA 90001" +240178,AA Batteries (4-pack),1,3.84,08/17/19 15:19,"371 North St, Los Angeles, CA 90001" +240179,USB-C Charging Cable,1,11.95,08/09/19 20:24,"202 Jefferson St, Dallas, TX 75001" +240180,27in 4K Gaming Monitor,1,389.99,08/02/19 17:21,"391 Lakeview St, San Francisco, CA 94016" +240181,20in Monitor,1,109.99,08/17/19 10:30,"990 Jackson St, San Francisco, CA 94016" +240182,27in 4K Gaming Monitor,1,389.99,08/18/19 10:52,"178 South St, Portland, OR 97035" +240183,Apple Airpods Headphones,1,150,08/30/19 07:16,"928 Center St, New York City, NY 10001" +240184,AAA Batteries (4-pack),2,2.99,08/25/19 22:12,"879 1st St, Atlanta, GA 30301" +240185,20in Monitor,1,109.99,08/05/19 15:54,"780 Sunset St, Atlanta, GA 30301" +240186,27in FHD Monitor,1,149.99,08/04/19 22:16,"577 Ridge St, Boston, MA 02215" +240187,Wired Headphones,1,11.99,08/18/19 19:58,"775 Church St, Boston, MA 02215" +240188,Apple Airpods Headphones,1,150,08/25/19 22:42,"554 Forest St, Seattle, WA 98101" +240189,AA Batteries (4-pack),1,3.84,08/12/19 16:54,"424 12th St, San Francisco, CA 94016" +240190,Bose SoundSport Headphones,1,99.99,08/11/19 22:52,"232 5th St, New York City, NY 10001" +240191,Apple Airpods Headphones,1,150,08/14/19 13:30,"52 11th St, Atlanta, GA 30301" +240192,27in 4K Gaming Monitor,1,389.99,08/06/19 20:51,"353 Spruce St, San Francisco, CA 94016" +240193,34in Ultrawide Monitor,1,379.99,08/26/19 15:44,"903 Highland St, Austin, TX 73301" +240194,Wired Headphones,1,11.99,08/04/19 18:02,"205 10th St, Dallas, TX 75001" +240195,Wired Headphones,1,11.99,08/25/19 11:19,"964 6th St, Boston, MA 02215" +240196,USB-C Charging Cable,1,11.95,08/16/19 06:46,"123 River St, Austin, TX 73301" +240197,AA Batteries (4-pack),1,3.84,08/06/19 11:00,"149 11th St, New York City, NY 10001" +240198,27in 4K Gaming Monitor,1,389.99,08/22/19 21:08,"869 Jackson St, Seattle, WA 98101" +240199,Apple Airpods Headphones,1,150,08/31/19 09:32,"201 Chestnut St, San Francisco, CA 94016" +240200,Wired Headphones,1,11.99,08/21/19 18:10,"225 8th St, Austin, TX 73301" +240201,Apple Airpods Headphones,1,150,08/06/19 21:31,"270 13th St, Austin, TX 73301" +240202,Wired Headphones,1,11.99,08/04/19 07:13,"564 Main St, Dallas, TX 75001" +240203,iPhone,1,700,08/21/19 18:55,"369 1st St, Austin, TX 73301" +240203,Lightning Charging Cable,1,14.95,08/21/19 18:55,"369 1st St, Austin, TX 73301" +240204,27in 4K Gaming Monitor,1,389.99,08/14/19 23:35,"505 12th St, Atlanta, GA 30301" +240205,Wired Headphones,1,11.99,08/02/19 13:12,"18 Elm St, New York City, NY 10001" +240206,AA Batteries (4-pack),3,3.84,08/18/19 20:22,"819 7th St, San Francisco, CA 94016" +240207,Lightning Charging Cable,1,14.95,08/08/19 14:19,"645 Park St, Portland, OR 97035" +240208,AAA Batteries (4-pack),2,2.99,08/10/19 14:48,"785 12th St, Los Angeles, CA 90001" +240209,ThinkPad Laptop,1,999.99,08/07/19 00:29,"439 10th St, San Francisco, CA 94016" +240210,AA Batteries (4-pack),2,3.84,08/01/19 15:55,"609 11th St, Dallas, TX 75001" +240211,Wired Headphones,1,11.99,08/09/19 14:40,"69 Willow St, Los Angeles, CA 90001" +240212,27in FHD Monitor,1,149.99,08/14/19 21:03,"202 Wilson St, Atlanta, GA 30301" +240213,Lightning Charging Cable,1,14.95,08/31/19 20:06,"736 Pine St, San Francisco, CA 94016" +240214,Flatscreen TV,1,300,08/10/19 11:55,"689 8th St, New York City, NY 10001" +240215,Wired Headphones,1,11.99,08/31/19 08:00,"448 Ridge St, San Francisco, CA 94016" +240216,Apple Airpods Headphones,1,150,08/26/19 14:58,"561 Elm St, Dallas, TX 75001" +240217,Google Phone,1,600,08/31/19 10:01,"372 Dogwood St, New York City, NY 10001" +240218,Bose SoundSport Headphones,1,99.99,08/19/19 19:36,"672 4th St, Portland, OR 97035" +240219,Lightning Charging Cable,1,14.95,08/18/19 12:04,"880 Dogwood St, San Francisco, CA 94016" +240220,Bose SoundSport Headphones,1,99.99,08/18/19 20:50,"361 Cherry St, San Francisco, CA 94016" +240221,Lightning Charging Cable,1,14.95,08/02/19 20:40,"37 Lakeview St, San Francisco, CA 94016" +240222,Apple Airpods Headphones,1,150,08/20/19 10:50,"947 Jackson St, San Francisco, CA 94016" +240223,Macbook Pro Laptop,1,1700,08/30/19 12:48,"980 River St, San Francisco, CA 94016" +240224,Wired Headphones,1,11.99,08/23/19 13:11,"921 11th St, Portland, OR 97035" +240225,Macbook Pro Laptop,1,1700,08/08/19 23:35,"997 12th St, Austin, TX 73301" +240226,Lightning Charging Cable,1,14.95,08/16/19 19:13,"707 Lakeview St, Boston, MA 02215" +240227,34in Ultrawide Monitor,1,379.99,08/25/19 18:01,"657 8th St, New York City, NY 10001" +240228,AAA Batteries (4-pack),1,2.99,08/23/19 15:20,"380 South St, San Francisco, CA 94016" +240229,AAA Batteries (4-pack),1,2.99,08/27/19 00:17,"65 Cedar St, New York City, NY 10001" +240230,USB-C Charging Cable,1,11.95,08/19/19 11:57,"913 Lake St, Los Angeles, CA 90001" +240231,AAA Batteries (4-pack),1,2.99,08/22/19 13:24,"191 Lake St, San Francisco, CA 94016" +240232,Wired Headphones,1,11.99,08/14/19 07:30,"815 7th St, Los Angeles, CA 90001" +240233,AAA Batteries (4-pack),2,2.99,08/24/19 10:56,"50 Johnson St, Boston, MA 02215" +240234,Apple Airpods Headphones,1,150,08/02/19 16:04,"151 Chestnut St, Dallas, TX 75001" +240235,AAA Batteries (4-pack),1,2.99,08/23/19 19:36,"375 North St, San Francisco, CA 94016" +240236,Google Phone,1,600,08/30/19 13:26,"689 Center St, Portland, ME 04101" +240237,Bose SoundSport Headphones,1,99.99,08/19/19 19:07,"147 Cherry St, Dallas, TX 75001" +240238,20in Monitor,1,109.99,08/29/19 14:20,"740 Adams St, San Francisco, CA 94016" +240239,34in Ultrawide Monitor,1,379.99,08/05/19 12:13,"38 Jefferson St, San Francisco, CA 94016" +240240,Lightning Charging Cable,1,14.95,08/31/19 13:22,"220 North St, San Francisco, CA 94016" +240240,27in 4K Gaming Monitor,1,389.99,08/31/19 13:22,"220 North St, San Francisco, CA 94016" +240241,Wired Headphones,1,11.99,08/31/19 12:39,"8 Madison St, Atlanta, GA 30301" +240242,ThinkPad Laptop,1,999.99,08/07/19 23:09,"38 Chestnut St, San Francisco, CA 94016" +240243,Bose SoundSport Headphones,1,99.99,08/02/19 16:13,"849 Sunset St, Boston, MA 02215" +240244,Apple Airpods Headphones,1,150,08/28/19 22:07,"836 Center St, New York City, NY 10001" +240245,27in 4K Gaming Monitor,1,389.99,08/02/19 18:57,"606 Elm St, San Francisco, CA 94016" +240246,Vareebadd Phone,1,400,08/01/19 14:25,"9 Jefferson St, San Francisco, CA 94016" +240247,Bose SoundSport Headphones,1,99.99,08/10/19 10:52,"499 Wilson St, New York City, NY 10001" +240248,AA Batteries (4-pack),1,3.84,08/11/19 13:29,"827 Lincoln St, Los Angeles, CA 90001" +240249,USB-C Charging Cable,1,11.95,08/06/19 10:04,"319 Elm St, Seattle, WA 98101" +240250,AA Batteries (4-pack),2,3.84,08/08/19 13:07,"285 Maple St, San Francisco, CA 94016" +240251,Lightning Charging Cable,1,14.95,08/15/19 17:20,"19 Center St, Los Angeles, CA 90001" +240252,USB-C Charging Cable,1,11.95,08/22/19 10:29,"914 Madison St, New York City, NY 10001" +240253,Bose SoundSport Headphones,1,99.99,08/18/19 11:29,"775 Lakeview St, San Francisco, CA 94016" +240254,AA Batteries (4-pack),1,3.84,08/15/19 19:23,"778 Jackson St, Portland, OR 97035" +240255,Bose SoundSport Headphones,1,99.99,08/01/19 08:28,"455 12th St, Los Angeles, CA 90001" +240256,AA Batteries (4-pack),5,3.84,08/24/19 21:49,"441 Highland St, Atlanta, GA 30301" +240257,Wired Headphones,1,11.99,08/06/19 21:26,"380 Lakeview St, New York City, NY 10001" +240258,27in 4K Gaming Monitor,1,389.99,08/29/19 08:38,"716 Hill St, Los Angeles, CA 90001" +240259,Flatscreen TV,1,300,08/28/19 13:05,"557 8th St, San Francisco, CA 94016" +240260,AA Batteries (4-pack),2,3.84,08/04/19 06:07,"838 North St, Los Angeles, CA 90001" +240261,Wired Headphones,1,11.99,08/09/19 11:12,"574 8th St, San Francisco, CA 94016" +240262,Lightning Charging Cable,1,14.95,08/05/19 21:03,"782 Walnut St, New York City, NY 10001" +240263,Apple Airpods Headphones,1,150,08/15/19 22:32,"439 Meadow St, San Francisco, CA 94016" +240264,AA Batteries (4-pack),1,3.84,08/17/19 22:29,"961 Jefferson St, San Francisco, CA 94016" +240265,Bose SoundSport Headphones,1,99.99,08/29/19 22:15,"83 Lakeview St, Dallas, TX 75001" +240266,Wired Headphones,2,11.99,08/13/19 14:33,"490 Lake St, Atlanta, GA 30301" +240267,AAA Batteries (4-pack),1,2.99,08/15/19 14:05,"349 Willow St, Boston, MA 02215" +240268,Vareebadd Phone,1,400,08/18/19 18:09,"294 13th St, Los Angeles, CA 90001" +240269,27in 4K Gaming Monitor,1,389.99,08/27/19 20:21,"463 Meadow St, Boston, MA 02215" +240270,AAA Batteries (4-pack),1,2.99,08/09/19 15:24,"585 Church St, Portland, OR 97035" +240271,Bose SoundSport Headphones,1,99.99,08/16/19 13:17,"130 10th St, Los Angeles, CA 90001" +240272,Wired Headphones,1,11.99,08/20/19 20:47,"523 Chestnut St, Atlanta, GA 30301" +240273,USB-C Charging Cable,1,11.95,08/28/19 10:24,"145 8th St, Atlanta, GA 30301" +240274,AAA Batteries (4-pack),1,2.99,08/05/19 16:00,"480 Madison St, San Francisco, CA 94016" +240275,AAA Batteries (4-pack),1,2.99,08/06/19 22:22,"835 West St, Seattle, WA 98101" +240276,27in FHD Monitor,1,149.99,08/17/19 00:50,"212 River St, San Francisco, CA 94016" +240277,Wired Headphones,1,11.99,08/24/19 20:34,"101 13th St, San Francisco, CA 94016" +240278,27in 4K Gaming Monitor,1,389.99,08/17/19 23:18,"735 Wilson St, Los Angeles, CA 90001" +240279,20in Monitor,1,109.99,08/23/19 20:58,"11 5th St, Seattle, WA 98101" +240280,20in Monitor,1,109.99,08/25/19 19:52,"353 Lake St, Los Angeles, CA 90001" +240281,27in FHD Monitor,1,149.99,08/13/19 14:21,"662 Pine St, Atlanta, GA 30301" +240282,20in Monitor,1,109.99,08/07/19 00:54,"903 Spruce St, New York City, NY 10001" +240283,AAA Batteries (4-pack),1,2.99,08/04/19 18:57,"332 Washington St, Los Angeles, CA 90001" +240284,Macbook Pro Laptop,1,1700,08/20/19 07:22,"658 8th St, Los Angeles, CA 90001" +240285,Apple Airpods Headphones,1,150,08/08/19 00:04,"785 Wilson St, New York City, NY 10001" +240286,AA Batteries (4-pack),1,3.84,08/22/19 20:43,"87 5th St, New York City, NY 10001" +240287,AA Batteries (4-pack),2,3.84,08/30/19 07:08,"426 Johnson St, Portland, OR 97035" +240288,ThinkPad Laptop,1,999.99,08/02/19 05:41,"953 Lake St, San Francisco, CA 94016" +240289,ThinkPad Laptop,1,999.99,08/22/19 18:21,"379 8th St, Los Angeles, CA 90001" +240290,Macbook Pro Laptop,1,1700,08/07/19 18:51,"177 River St, Los Angeles, CA 90001" +240291,Lightning Charging Cable,1,14.95,08/27/19 17:39,"794 12th St, San Francisco, CA 94016" +240292,Apple Airpods Headphones,1,150,08/11/19 23:34,"677 9th St, Seattle, WA 98101" +240293,Google Phone,1,600,08/25/19 16:40,"673 North St, Los Angeles, CA 90001" +240293,USB-C Charging Cable,1,11.95,08/25/19 16:40,"673 North St, Los Angeles, CA 90001" +240293,Bose SoundSport Headphones,1,99.99,08/25/19 16:40,"673 North St, Los Angeles, CA 90001" +240294,ThinkPad Laptop,1,999.99,08/30/19 19:46,"139 Highland St, Los Angeles, CA 90001" +240295,Macbook Pro Laptop,1,1700,08/01/19 20:03,"746 Church St, Atlanta, GA 30301" +240296,Apple Airpods Headphones,1,150,08/28/19 19:08,"625 9th St, San Francisco, CA 94016" +240297,AA Batteries (4-pack),1,3.84,08/27/19 17:00,"896 Adams St, San Francisco, CA 94016" +240298,USB-C Charging Cable,1,11.95,08/05/19 18:40,"265 Maple St, Los Angeles, CA 90001" +240299,Macbook Pro Laptop,1,1700,08/14/19 13:45,"666 12th St, San Francisco, CA 94016" +240300,Wired Headphones,1,11.99,08/20/19 12:08,"917 13th St, Los Angeles, CA 90001" +240301,USB-C Charging Cable,1,11.95,08/24/19 08:09,"745 Willow St, Los Angeles, CA 90001" +240302,20in Monitor,1,109.99,08/05/19 09:12,"375 Ridge St, Dallas, TX 75001" +240303,27in FHD Monitor,1,149.99,08/16/19 11:49,"337 Highland St, Boston, MA 02215" +240304,ThinkPad Laptop,1,999.99,08/23/19 23:15,"811 Walnut St, Boston, MA 02215" +240305,USB-C Charging Cable,1,11.95,08/17/19 23:27,"541 Park St, San Francisco, CA 94016" +240306,USB-C Charging Cable,1,11.95,08/10/19 18:12,"856 River St, Los Angeles, CA 90001" +240307,Wired Headphones,1,11.99,08/31/19 16:40,"956 Church St, Boston, MA 02215" +240308,27in FHD Monitor,1,149.99,08/29/19 19:39,"727 Forest St, San Francisco, CA 94016" +240309,AA Batteries (4-pack),1,3.84,08/02/19 22:08,"363 Park St, Boston, MA 02215" +240310,Google Phone,1,600,08/06/19 16:55,"973 Center St, Seattle, WA 98101" +240311,iPhone,1,700,08/15/19 19:00,"684 Jefferson St, Boston, MA 02215" +240312,Flatscreen TV,1,300,08/02/19 12:27,"742 Park St, Los Angeles, CA 90001" +240313,Macbook Pro Laptop,1,1700,08/13/19 21:31,"232 Dogwood St, Boston, MA 02215" +240314,AAA Batteries (4-pack),1,2.99,08/01/19 08:21,"923 Johnson St, Boston, MA 02215" +240315,Wired Headphones,1,11.99,08/26/19 19:01,"288 Meadow St, Dallas, TX 75001" +240316,Wired Headphones,1,11.99,08/06/19 14:50,"746 Dogwood St, Los Angeles, CA 90001" +240317,ThinkPad Laptop,1,999.99,08/06/19 10:06,"647 1st St, Austin, TX 73301" +240318,Wired Headphones,1,11.99,08/12/19 23:03,"762 11th St, Austin, TX 73301" +240319,Flatscreen TV,1,300,08/29/19 14:45,"384 Center St, Seattle, WA 98101" +240320,Lightning Charging Cable,1,14.95,08/20/19 16:14,"238 Hill St, Portland, OR 97035" +240321,Apple Airpods Headphones,1,150,08/14/19 13:22,"837 Pine St, Seattle, WA 98101" +240322,Apple Airpods Headphones,1,150,08/02/19 07:56,"740 2nd St, Seattle, WA 98101" +240323,Wired Headphones,2,11.99,08/14/19 05:54,"821 South St, New York City, NY 10001" +240324,Lightning Charging Cable,1,14.95,08/27/19 05:15,"197 5th St, Atlanta, GA 30301" +240325,AAA Batteries (4-pack),3,2.99,08/16/19 09:47,"308 Lakeview St, Atlanta, GA 30301" +240326,Google Phone,1,600,08/22/19 23:57,"869 Lake St, Los Angeles, CA 90001" +240326,USB-C Charging Cable,1,11.95,08/22/19 23:57,"869 Lake St, Los Angeles, CA 90001" +240327,iPhone,1,700,08/15/19 10:56,"100 Pine St, San Francisco, CA 94016" +240327,Wired Headphones,1,11.99,08/15/19 10:56,"100 Pine St, San Francisco, CA 94016" +240327,Bose SoundSport Headphones,1,99.99,08/15/19 10:56,"100 Pine St, San Francisco, CA 94016" +240328,Apple Airpods Headphones,1,150,08/25/19 08:40,"988 Lincoln St, San Francisco, CA 94016" +240329,Apple Airpods Headphones,1,150,08/20/19 18:05,"36 8th St, Austin, TX 73301" +240330,Flatscreen TV,1,300,08/15/19 11:24,"279 Jefferson St, New York City, NY 10001" +240331,AAA Batteries (4-pack),1,2.99,08/25/19 20:46,"6 Jefferson St, Austin, TX 73301" +240332,AAA Batteries (4-pack),1,2.99,08/30/19 18:53,"212 Maple St, San Francisco, CA 94016" +240333,AAA Batteries (4-pack),1,2.99,08/12/19 13:54,"675 Sunset St, Dallas, TX 75001" +240334,Wired Headphones,1,11.99,08/24/19 10:36,"670 Walnut St, San Francisco, CA 94016" +240335,Bose SoundSport Headphones,1,99.99,08/13/19 20:49,"514 Park St, Seattle, WA 98101" +240336,AAA Batteries (4-pack),1,2.99,08/16/19 10:57,"893 5th St, Seattle, WA 98101" +240337,AA Batteries (4-pack),1,3.84,08/24/19 20:59,"552 5th St, Atlanta, GA 30301" +240338,Wired Headphones,2,11.99,08/09/19 13:47,"958 Spruce St, Boston, MA 02215" +240339,USB-C Charging Cable,1,11.95,08/29/19 10:53,"45 Cherry St, Los Angeles, CA 90001" +240340,ThinkPad Laptop,1,999.99,08/08/19 00:33,"835 6th St, Boston, MA 02215" +240341,Google Phone,1,600,08/02/19 00:12,"779 5th St, Los Angeles, CA 90001" +240341,Bose SoundSport Headphones,1,99.99,08/02/19 00:12,"779 5th St, Los Angeles, CA 90001" +240341,Wired Headphones,1,11.99,08/02/19 00:12,"779 5th St, Los Angeles, CA 90001" +240342,Wired Headphones,1,11.99,08/12/19 11:48,"529 Pine St, New York City, NY 10001" +240343,Wired Headphones,1,11.99,08/29/19 12:45,"383 8th St, Boston, MA 02215" +240344,Google Phone,1,600,08/03/19 21:13,"153 Spruce St, New York City, NY 10001" +240345,Wired Headphones,1,11.99,08/06/19 19:57,"567 Lake St, Los Angeles, CA 90001" +240346,Lightning Charging Cable,1,14.95,08/15/19 16:45,"281 Hill St, San Francisco, CA 94016" +240347,Wired Headphones,1,11.99,08/27/19 10:12,"219 Madison St, Los Angeles, CA 90001" +240348,Lightning Charging Cable,2,14.95,08/20/19 20:39,"2 Lincoln St, Dallas, TX 75001" +240349,AAA Batteries (4-pack),1,2.99,08/23/19 12:02,"775 Meadow St, Boston, MA 02215" +240350,Google Phone,1,600,08/14/19 21:25,"603 13th St, Atlanta, GA 30301" +240350,USB-C Charging Cable,1,11.95,08/14/19 21:25,"603 13th St, Atlanta, GA 30301" +240351,AA Batteries (4-pack),1,3.84,08/28/19 11:09,"104 Adams St, Atlanta, GA 30301" +240352,AAA Batteries (4-pack),1,2.99,08/25/19 19:01,"818 13th St, Seattle, WA 98101" +240353,ThinkPad Laptop,1,999.99,08/07/19 17:24,"455 North St, Atlanta, GA 30301" +240354,Bose SoundSport Headphones,1,99.99,08/17/19 18:42,"302 Park St, New York City, NY 10001" +240355,Macbook Pro Laptop,1,1700,08/10/19 12:13,"534 Meadow St, Atlanta, GA 30301" +240356,USB-C Charging Cable,1,11.95,08/21/19 14:45,"446 2nd St, Los Angeles, CA 90001" +240357,Apple Airpods Headphones,1,150,08/24/19 00:37,"135 Hickory St, San Francisco, CA 94016" +240358,USB-C Charging Cable,1,11.95,08/14/19 17:47,"683 13th St, Los Angeles, CA 90001" +240359,Lightning Charging Cable,1,14.95,08/06/19 10:13,"565 6th St, San Francisco, CA 94016" +240360,AA Batteries (4-pack),1,3.84,08/26/19 12:19,"534 2nd St, Los Angeles, CA 90001" +240361,Apple Airpods Headphones,1,150,08/05/19 14:19,"581 Elm St, New York City, NY 10001" +240362,AA Batteries (4-pack),1,3.84,08/08/19 08:43,"388 Elm St, New York City, NY 10001" +240363,27in 4K Gaming Monitor,1,389.99,08/30/19 02:44,"224 Willow St, Seattle, WA 98101" +,,,,, +240364,USB-C Charging Cable,2,11.95,08/06/19 00:44,"949 5th St, Dallas, TX 75001" +240365,AA Batteries (4-pack),1,3.84,08/24/19 12:39,"384 Dogwood St, Boston, MA 02215" +240366,27in FHD Monitor,1,149.99,08/19/19 23:55,"123 Pine St, Austin, TX 73301" +240367,27in FHD Monitor,1,149.99,08/20/19 18:55,"723 2nd St, San Francisco, CA 94016" +240368,AAA Batteries (4-pack),3,2.99,08/10/19 21:32,"431 Chestnut St, Atlanta, GA 30301" +240369,AAA Batteries (4-pack),1,2.99,08/22/19 00:43,"587 Dogwood St, New York City, NY 10001" +240370,Lightning Charging Cable,1,14.95,08/05/19 12:09,"322 Maple St, Austin, TX 73301" +240371,27in 4K Gaming Monitor,1,389.99,08/28/19 14:11,"949 Hill St, Dallas, TX 75001" +240372,27in FHD Monitor,1,149.99,09/01/19 05:57,"15 8th St, New York City, NY 10001" +240373,Bose SoundSport Headphones,1,99.99,08/23/19 11:43,"417 Sunset St, San Francisco, CA 94016" +240374,Apple Airpods Headphones,1,150,08/23/19 18:14,"839 Chestnut St, San Francisco, CA 94016" +240375,USB-C Charging Cable,1,11.95,08/28/19 09:30,"813 6th St, Boston, MA 02215" +240376,AAA Batteries (4-pack),1,2.99,08/17/19 16:10,"671 Ridge St, San Francisco, CA 94016" +240377,iPhone,1,700,08/25/19 14:46,"892 Maple St, New York City, NY 10001" +240377,Lightning Charging Cable,1,14.95,08/25/19 14:46,"892 Maple St, New York City, NY 10001" +240377,Wired Headphones,1,11.99,08/25/19 14:46,"892 Maple St, New York City, NY 10001" +240378,USB-C Charging Cable,2,11.95,08/26/19 14:36,"44 Ridge St, Portland, OR 97035" +240379,Lightning Charging Cable,1,14.95,08/13/19 19:45,"307 Chestnut St, Atlanta, GA 30301" +240380,Google Phone,1,600,09/01/19 01:10,"192 7th St, Los Angeles, CA 90001" +240380,Wired Headphones,1,11.99,09/01/19 01:10,"192 7th St, Los Angeles, CA 90001" +240381,USB-C Charging Cable,1,11.95,08/08/19 14:02,"510 Elm St, Atlanta, GA 30301" +240382,iPhone,1,700,08/29/19 11:01,"98 12th St, Austin, TX 73301" +240383,Lightning Charging Cable,1,14.95,08/16/19 17:26,"670 Hickory St, Austin, TX 73301" +240384,USB-C Charging Cable,1,11.95,08/03/19 19:42,"259 Sunset St, New York City, NY 10001" +240385,Lightning Charging Cable,1,14.95,08/05/19 19:22,"51 Jefferson St, Seattle, WA 98101" +240386,USB-C Charging Cable,1,11.95,08/09/19 11:28,"907 Washington St, Atlanta, GA 30301" +240387,AA Batteries (4-pack),1,3.84,08/23/19 12:33,"758 Lake St, New York City, NY 10001" +240388,AA Batteries (4-pack),1,3.84,08/17/19 13:04,"599 Hill St, San Francisco, CA 94016" +240389,iPhone,1,700,08/16/19 11:11,"362 Jefferson St, Boston, MA 02215" +240390,AAA Batteries (4-pack),1,2.99,08/26/19 08:09,"209 Lakeview St, Portland, OR 97035" +240391,Bose SoundSport Headphones,1,99.99,08/01/19 16:37,"637 Jackson St, Dallas, TX 75001" +240392,USB-C Charging Cable,1,11.95,08/07/19 15:21,"829 Wilson St, New York City, NY 10001" +240393,Lightning Charging Cable,2,14.95,08/13/19 09:04,"924 Adams St, Los Angeles, CA 90001" +240394,Apple Airpods Headphones,1,150,08/27/19 10:15,"75 4th St, Boston, MA 02215" +240395,Bose SoundSport Headphones,1,99.99,08/19/19 14:03,"745 Johnson St, Atlanta, GA 30301" +240396,Wired Headphones,1,11.99,08/26/19 14:04,"220 Lake St, Los Angeles, CA 90001" +240397,Apple Airpods Headphones,1,150,08/14/19 14:03,"849 Center St, New York City, NY 10001" +240398,USB-C Charging Cable,1,11.95,08/25/19 22:07,"483 4th St, New York City, NY 10001" +240399,AA Batteries (4-pack),1,3.84,08/23/19 20:29,"649 5th St, San Francisco, CA 94016" +240400,USB-C Charging Cable,1,11.95,08/02/19 16:23,"654 Elm St, Dallas, TX 75001" +240401,20in Monitor,1,109.99,08/03/19 18:40,"587 South St, New York City, NY 10001" +240402,27in 4K Gaming Monitor,1,389.99,08/03/19 10:07,"739 Lincoln St, Los Angeles, CA 90001" +240403,Apple Airpods Headphones,1,150,08/21/19 17:31,"980 Park St, Atlanta, GA 30301" +240404,Macbook Pro Laptop,1,1700,08/12/19 18:53,"198 Washington St, Seattle, WA 98101" +240405,Wired Headphones,1,11.99,08/06/19 13:12,"865 Maple St, Dallas, TX 75001" +240406,34in Ultrawide Monitor,1,379.99,08/08/19 18:06,"230 Maple St, Boston, MA 02215" +240407,Macbook Pro Laptop,1,1700,08/09/19 13:19,"868 10th St, San Francisco, CA 94016" +240408,AA Batteries (4-pack),1,3.84,08/06/19 16:57,"699 13th St, Dallas, TX 75001" +240409,AA Batteries (4-pack),3,3.84,08/28/19 11:34,"694 14th St, Austin, TX 73301" +240410,Apple Airpods Headphones,1,150,08/04/19 17:56,"754 13th St, Seattle, WA 98101" +240411,USB-C Charging Cable,1,11.95,08/23/19 09:46,"284 Walnut St, Los Angeles, CA 90001" +240412,USB-C Charging Cable,1,11.95,08/01/19 22:12,"817 8th St, Austin, TX 73301" +240413,Lightning Charging Cable,1,14.95,08/23/19 10:41,"659 Sunset St, Portland, OR 97035" +240414,AAA Batteries (4-pack),2,2.99,08/17/19 08:27,"765 Elm St, Los Angeles, CA 90001" +240415,Vareebadd Phone,1,400,08/25/19 23:51,"944 Washington St, Los Angeles, CA 90001" +240416,20in Monitor,1,109.99,08/04/19 19:20,"65 Highland St, Seattle, WA 98101" +240417,Lightning Charging Cable,1,14.95,08/03/19 14:18,"909 Wilson St, Dallas, TX 75001" +240418,27in FHD Monitor,1,149.99,08/05/19 15:37,"404 Maple St, San Francisco, CA 94016" +240419,USB-C Charging Cable,1,11.95,08/13/19 16:29,"658 6th St, Boston, MA 02215" +240420,AA Batteries (4-pack),1,3.84,08/19/19 13:18,"695 Center St, Dallas, TX 75001" +240421,AAA Batteries (4-pack),1,2.99,08/29/19 13:36,"62 Ridge St, San Francisco, CA 94016" +240422,Vareebadd Phone,1,400,08/03/19 14:38,"41 14th St, Portland, OR 97035" +240423,Lightning Charging Cable,1,14.95,08/20/19 15:46,"873 Wilson St, Los Angeles, CA 90001" +240424,Lightning Charging Cable,1,14.95,08/15/19 08:00,"668 Lincoln St, Dallas, TX 75001" +240425,Wired Headphones,1,11.99,08/21/19 12:26,"517 9th St, San Francisco, CA 94016" +240426,27in FHD Monitor,1,149.99,08/24/19 15:01,"795 South St, San Francisco, CA 94016" +240427,ThinkPad Laptop,1,999.99,08/05/19 09:23,"510 Wilson St, San Francisco, CA 94016" +240428,Macbook Pro Laptop,1,1700,08/20/19 18:11,"209 Ridge St, Seattle, WA 98101" +240429,USB-C Charging Cable,1,11.95,08/03/19 05:55,"62 12th St, Austin, TX 73301" +240430,27in 4K Gaming Monitor,1,389.99,08/04/19 21:07,"475 Walnut St, New York City, NY 10001" +240431,Wired Headphones,1,11.99,08/11/19 17:51,"553 8th St, New York City, NY 10001" +240432,ThinkPad Laptop,1,999.99,08/23/19 20:56,"381 Pine St, Dallas, TX 75001" +240433,USB-C Charging Cable,1,11.95,08/27/19 15:52,"736 Maple St, San Francisco, CA 94016" +240434,Lightning Charging Cable,1,14.95,08/04/19 14:05,"699 River St, Dallas, TX 75001" +240435,USB-C Charging Cable,1,11.95,08/24/19 22:26,"31 9th St, Los Angeles, CA 90001" +240436,Google Phone,1,600,08/30/19 14:12,"237 Center St, Austin, TX 73301" +240436,Wired Headphones,1,11.99,08/30/19 14:12,"237 Center St, Austin, TX 73301" +240437,AAA Batteries (4-pack),2,2.99,08/20/19 19:11,"528 Spruce St, Austin, TX 73301" +240438,Apple Airpods Headphones,1,150,08/25/19 17:22,"195 Washington St, Atlanta, GA 30301" +240439,AAA Batteries (4-pack),1,2.99,08/27/19 10:56,"876 South St, San Francisco, CA 94016" +240440,AAA Batteries (4-pack),4,2.99,08/15/19 10:07,"930 10th St, Atlanta, GA 30301" +240441,Google Phone,1,600,08/12/19 14:34,"650 Cedar St, Boston, MA 02215" +240442,27in FHD Monitor,1,149.99,08/10/19 11:44,"991 Dogwood St, Portland, OR 97035" +240443,Bose SoundSport Headphones,1,99.99,08/24/19 05:58,"773 11th St, San Francisco, CA 94016" +240444,Apple Airpods Headphones,1,150,08/05/19 22:57,"704 4th St, New York City, NY 10001" +240445,Lightning Charging Cable,1,14.95,08/29/19 21:27,"582 12th St, Boston, MA 02215" +240446,Lightning Charging Cable,1,14.95,08/07/19 19:50,"405 14th St, Atlanta, GA 30301" +,,,,, +240447,Apple Airpods Headphones,1,150,08/07/19 12:56,"564 Lakeview St, San Francisco, CA 94016" +240448,Bose SoundSport Headphones,1,99.99,08/06/19 08:25,"673 South St, Atlanta, GA 30301" +240449,Lightning Charging Cable,1,14.95,08/09/19 13:29,"951 Park St, Los Angeles, CA 90001" +240450,Lightning Charging Cable,1,14.95,08/25/19 23:45,"85 Forest St, Seattle, WA 98101" +240451,Apple Airpods Headphones,1,150,08/27/19 13:56,"47 7th St, San Francisco, CA 94016" +240452,Lightning Charging Cable,1,14.95,08/18/19 17:13,"255 Dogwood St, Seattle, WA 98101" +240453,Lightning Charging Cable,1,14.95,08/08/19 13:45,"751 Forest St, Los Angeles, CA 90001" +240454,Lightning Charging Cable,1,14.95,08/13/19 16:55,"723 4th St, Boston, MA 02215" +240455,Lightning Charging Cable,1,14.95,08/30/19 13:44,"305 Hill St, Los Angeles, CA 90001" +240456,AAA Batteries (4-pack),1,2.99,08/01/19 17:18,"324 Washington St, Los Angeles, CA 90001" +240457,AA Batteries (4-pack),1,3.84,08/18/19 17:03,"918 9th St, Boston, MA 02215" +240458,Apple Airpods Headphones,1,150,08/14/19 12:37,"619 1st St, Los Angeles, CA 90001" +240459,Apple Airpods Headphones,1,150,08/01/19 18:20,"909 North St, Los Angeles, CA 90001" +240460,Flatscreen TV,1,300,08/27/19 21:48,"827 North St, Portland, ME 04101" +240461,Flatscreen TV,1,300,08/15/19 03:47,"20 Maple St, San Francisco, CA 94016" +240462,AA Batteries (4-pack),1,3.84,08/18/19 10:01,"547 Lake St, New York City, NY 10001" +240463,Lightning Charging Cable,1,14.95,08/23/19 13:59,"461 Highland St, Boston, MA 02215" +240464,iPhone,1,700,08/16/19 12:32,"584 6th St, New York City, NY 10001" +240464,Lightning Charging Cable,1,14.95,08/16/19 12:32,"584 6th St, New York City, NY 10001" +240465,Wired Headphones,1,11.99,08/19/19 19:25,"594 Forest St, Boston, MA 02215" +240466,iPhone,1,700,08/31/19 13:01,"74 Hill St, Los Angeles, CA 90001" +240467,Bose SoundSport Headphones,1,99.99,08/09/19 07:31,"621 Johnson St, Boston, MA 02215" +240468,USB-C Charging Cable,1,11.95,08/08/19 20:26,"906 South St, Los Angeles, CA 90001" +240469,27in 4K Gaming Monitor,1,389.99,08/27/19 23:59,"275 8th St, Austin, TX 73301" +240470,AAA Batteries (4-pack),1,2.99,08/16/19 16:12,"563 Main St, Austin, TX 73301" +240471,Lightning Charging Cable,1,14.95,08/12/19 12:13,"425 Washington St, San Francisco, CA 94016" +240472,Apple Airpods Headphones,1,150,08/31/19 17:13,"302 North St, Boston, MA 02215" +240473,27in FHD Monitor,1,149.99,08/18/19 21:52,"322 6th St, San Francisco, CA 94016" +240474,AAA Batteries (4-pack),4,2.99,08/03/19 17:27,"480 Pine St, San Francisco, CA 94016" +240475,LG Dryer,1,600.0,08/27/19 22:28,"281 Adams St, New York City, NY 10001" +240476,Apple Airpods Headphones,1,150,08/25/19 17:10,"727 Spruce St, Boston, MA 02215" +240477,Lightning Charging Cable,1,14.95,08/09/19 13:01,"888 West St, New York City, NY 10001" +240478,Bose SoundSport Headphones,1,99.99,08/25/19 12:57,"492 Elm St, Portland, OR 97035" +240479,AA Batteries (4-pack),1,3.84,08/18/19 19:51,"260 13th St, Boston, MA 02215" +,,,,, +240480,Flatscreen TV,1,300,08/26/19 11:58,"133 North St, Seattle, WA 98101" +240481,Apple Airpods Headphones,1,150,08/03/19 20:09,"353 Willow St, New York City, NY 10001" +240482,Lightning Charging Cable,1,14.95,08/26/19 16:24,"360 Highland St, San Francisco, CA 94016" +240483,AA Batteries (4-pack),4,3.84,08/06/19 22:21,"547 5th St, San Francisco, CA 94016" +240484,AAA Batteries (4-pack),1,2.99,08/27/19 17:45,"488 9th St, San Francisco, CA 94016" +240485,Macbook Pro Laptop,1,1700,08/28/19 11:45,"458 4th St, San Francisco, CA 94016" +240486,Lightning Charging Cable,2,14.95,08/22/19 19:05,"857 Chestnut St, Boston, MA 02215" +240487,Apple Airpods Headphones,1,150,08/11/19 11:11,"792 Dogwood St, New York City, NY 10001" +240488,Lightning Charging Cable,1,14.95,08/17/19 19:13,"391 Center St, New York City, NY 10001" +240489,AAA Batteries (4-pack),5,2.99,08/22/19 17:37,"295 7th St, Los Angeles, CA 90001" +240490,Lightning Charging Cable,1,14.95,08/13/19 17:35,"595 6th St, Boston, MA 02215" +240491,Flatscreen TV,1,300,08/05/19 22:48,"36 Main St, New York City, NY 10001" +240492,USB-C Charging Cable,1,11.95,08/08/19 19:38,"844 7th St, San Francisco, CA 94016" +240493,AA Batteries (4-pack),1,3.84,08/30/19 23:07,"543 10th St, New York City, NY 10001" +240494,AAA Batteries (4-pack),1,2.99,08/28/19 18:42,"673 West St, Atlanta, GA 30301" +240495,ThinkPad Laptop,1,999.99,08/13/19 00:02,"954 7th St, Austin, TX 73301" +240496,27in 4K Gaming Monitor,1,389.99,08/20/19 18:55,"69 7th St, San Francisco, CA 94016" +240497,AA Batteries (4-pack),1,3.84,08/31/19 08:50,"283 5th St, Los Angeles, CA 90001" +240498,AAA Batteries (4-pack),1,2.99,08/19/19 11:11,"681 Wilson St, San Francisco, CA 94016" +240499,AAA Batteries (4-pack),1,2.99,08/01/19 17:58,"839 Park St, Boston, MA 02215" +240500,34in Ultrawide Monitor,1,379.99,08/06/19 18:56,"926 Lakeview St, Los Angeles, CA 90001" +240501,USB-C Charging Cable,1,11.95,08/20/19 09:59,"81 Meadow St, San Francisco, CA 94016" +240502,AAA Batteries (4-pack),1,2.99,08/08/19 10:14,"721 2nd St, New York City, NY 10001" +240503,Apple Airpods Headphones,1,150,08/13/19 10:49,"615 Willow St, Los Angeles, CA 90001" +240504,iPhone,1,700,08/10/19 18:32,"695 Adams St, Boston, MA 02215" +240505,Wired Headphones,1,11.99,08/28/19 09:18,"239 Hickory St, Los Angeles, CA 90001" +240506,Flatscreen TV,1,300,08/02/19 17:47,"921 13th St, San Francisco, CA 94016" +240507,USB-C Charging Cable,1,11.95,08/08/19 22:32,"412 Main St, Los Angeles, CA 90001" +240508,AAA Batteries (4-pack),1,2.99,08/09/19 20:01,"451 7th St, Los Angeles, CA 90001" +240509,Macbook Pro Laptop,1,1700,08/19/19 06:12,"909 Pine St, Los Angeles, CA 90001" +240510,Apple Airpods Headphones,1,150,08/16/19 09:06,"294 Highland St, Los Angeles, CA 90001" +240511,Wired Headphones,1,11.99,08/13/19 04:23,"81 Elm St, Los Angeles, CA 90001" +240512,LG Washing Machine,2,600.0,08/26/19 19:21,"986 Pine St, San Francisco, CA 94016" +240513,AA Batteries (4-pack),3,3.84,08/07/19 14:02,"486 Jefferson St, San Francisco, CA 94016" +240514,Bose SoundSport Headphones,1,99.99,08/06/19 15:22,"533 Forest St, Austin, TX 73301" +240515,Bose SoundSport Headphones,1,99.99,08/27/19 22:54,"166 12th St, San Francisco, CA 94016" +240516,Macbook Pro Laptop,1,1700,08/03/19 16:14,"428 8th St, San Francisco, CA 94016" +240517,AA Batteries (4-pack),1,3.84,08/06/19 20:00,"704 Pine St, Boston, MA 02215" +240518,ThinkPad Laptop,1,999.99,08/20/19 16:19,"312 Wilson St, Atlanta, GA 30301" +240519,AAA Batteries (4-pack),4,2.99,08/02/19 16:16,"770 9th St, New York City, NY 10001" +240520,USB-C Charging Cable,1,11.95,08/18/19 18:36,"670 Elm St, Seattle, WA 98101" +240521,Bose SoundSport Headphones,1,99.99,08/27/19 15:20,"174 Meadow St, San Francisco, CA 94016" +240522,AAA Batteries (4-pack),1,2.99,08/16/19 11:12,"97 Highland St, Boston, MA 02215" +240523,Apple Airpods Headphones,1,150,08/25/19 21:45,"589 South St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +240524,Wired Headphones,1,11.99,08/22/19 21:48,"161 North St, Boston, MA 02215" +240525,Apple Airpods Headphones,1,150,08/01/19 20:04,"332 Sunset St, Portland, OR 97035" +240526,USB-C Charging Cable,1,11.95,08/08/19 19:30,"572 North St, New York City, NY 10001" +240527,Wired Headphones,1,11.99,08/11/19 11:23,"415 Church St, San Francisco, CA 94016" +240528,Bose SoundSport Headphones,1,99.99,08/07/19 10:14,"952 Dogwood St, Los Angeles, CA 90001" +240529,USB-C Charging Cable,2,11.95,08/22/19 07:52,"691 Elm St, Boston, MA 02215" +240530,Wired Headphones,2,11.99,08/24/19 12:30,"95 Madison St, Seattle, WA 98101" +240531,USB-C Charging Cable,1,11.95,08/26/19 08:44,"730 Sunset St, San Francisco, CA 94016" +240532,Wired Headphones,1,11.99,08/01/19 09:02,"483 Cherry St, San Francisco, CA 94016" +240533,AA Batteries (4-pack),1,3.84,09/01/19 00:37,"320 Chestnut St, Seattle, WA 98101" +240533,Lightning Charging Cable,1,14.95,09/01/19 00:37,"320 Chestnut St, Seattle, WA 98101" +240534,AAA Batteries (4-pack),4,2.99,08/05/19 13:04,"274 1st St, Portland, OR 97035" +240535,20in Monitor,1,109.99,08/26/19 11:51,"670 10th St, New York City, NY 10001" +240536,Bose SoundSport Headphones,1,99.99,08/06/19 13:15,"759 14th St, Austin, TX 73301" +240537,Lightning Charging Cable,1,14.95,08/07/19 23:36,"527 Park St, Austin, TX 73301" +240538,ThinkPad Laptop,1,999.99,08/01/19 20:06,"272 Willow St, Portland, ME 04101" +240539,20in Monitor,1,109.99,08/12/19 17:38,"68 Pine St, New York City, NY 10001" +240540,Lightning Charging Cable,1,14.95,08/19/19 18:36,"795 Willow St, Seattle, WA 98101" +240541,34in Ultrawide Monitor,1,379.99,08/03/19 20:45,"786 Forest St, Los Angeles, CA 90001" +240542,AA Batteries (4-pack),2,3.84,08/14/19 12:55,"167 River St, San Francisco, CA 94016" +240543,USB-C Charging Cable,1,11.95,08/16/19 12:14,"971 Ridge St, Los Angeles, CA 90001" +240544,AA Batteries (4-pack),1,3.84,08/23/19 10:30,"997 Meadow St, San Francisco, CA 94016" +240545,Lightning Charging Cable,1,14.95,08/11/19 10:52,"876 Center St, Portland, OR 97035" +240546,34in Ultrawide Monitor,1,379.99,08/17/19 15:59,"146 13th St, San Francisco, CA 94016" +240547,Macbook Pro Laptop,1,1700,08/05/19 22:14,"9 Main St, New York City, NY 10001" +240548,Flatscreen TV,1,300,08/30/19 08:54,"143 Washington St, New York City, NY 10001" +240549,Bose SoundSport Headphones,1,99.99,08/10/19 12:26,"418 6th St, San Francisco, CA 94016" +240550,34in Ultrawide Monitor,1,379.99,08/15/19 19:05,"543 River St, Los Angeles, CA 90001" +240551,34in Ultrawide Monitor,1,379.99,08/20/19 09:36,"782 10th St, Los Angeles, CA 90001" +240551,Lightning Charging Cable,1,14.95,08/20/19 09:36,"782 10th St, Los Angeles, CA 90001" +240552,USB-C Charging Cable,1,11.95,08/07/19 17:30,"712 Main St, San Francisco, CA 94016" +240553,27in FHD Monitor,1,149.99,08/16/19 14:54,"353 13th St, Portland, OR 97035" +240554,Bose SoundSport Headphones,1,99.99,08/30/19 03:27,"532 Pine St, New York City, NY 10001" +240555,Apple Airpods Headphones,1,150,08/24/19 23:58,"318 4th St, Los Angeles, CA 90001" +240556,Bose SoundSport Headphones,1,99.99,08/27/19 13:16,"206 Dogwood St, Portland, OR 97035" +240557,AA Batteries (4-pack),1,3.84,08/28/19 08:20,"659 Pine St, Los Angeles, CA 90001" +240558,AA Batteries (4-pack),2,3.84,08/20/19 09:38,"115 4th St, Dallas, TX 75001" +240559,27in 4K Gaming Monitor,1,389.99,08/22/19 14:07,"279 Highland St, Atlanta, GA 30301" +240560,Lightning Charging Cable,1,14.95,08/26/19 17:03,"252 Ridge St, San Francisco, CA 94016" +240561,Macbook Pro Laptop,1,1700,08/04/19 20:01,"708 Elm St, San Francisco, CA 94016" +240562,27in FHD Monitor,1,149.99,08/14/19 18:57,"761 13th St, Dallas, TX 75001" +240563,34in Ultrawide Monitor,1,379.99,08/02/19 19:24,"894 Center St, Boston, MA 02215" +240564,AA Batteries (4-pack),1,3.84,08/26/19 10:51,"686 Cedar St, New York City, NY 10001" +240565,Apple Airpods Headphones,1,150,08/17/19 19:08,"310 North St, Atlanta, GA 30301" +240566,34in Ultrawide Monitor,1,379.99,08/13/19 20:14,"348 12th St, Seattle, WA 98101" +240567,Lightning Charging Cable,1,14.95,08/01/19 08:06,"914 6th St, Boston, MA 02215" +240568,AA Batteries (4-pack),1,3.84,08/12/19 06:41,"77 Park St, San Francisco, CA 94016" +240569,Apple Airpods Headphones,1,150,08/29/19 22:37,"849 Lakeview St, Atlanta, GA 30301" +240570,USB-C Charging Cable,1,11.95,08/29/19 21:42,"155 14th St, San Francisco, CA 94016" +240571,Lightning Charging Cable,1,14.95,08/03/19 00:31,"359 River St, Atlanta, GA 30301" +240572,Apple Airpods Headphones,1,150,08/08/19 23:11,"332 Hill St, New York City, NY 10001" +240573,Macbook Pro Laptop,1,1700,08/06/19 22:49,"690 2nd St, Boston, MA 02215" +240574,Apple Airpods Headphones,1,150,08/29/19 14:23,"327 Elm St, Atlanta, GA 30301" +240575,20in Monitor,1,109.99,08/23/19 21:03,"772 12th St, Los Angeles, CA 90001" +240576,34in Ultrawide Monitor,1,379.99,08/25/19 13:49,"894 Sunset St, Portland, ME 04101" +240577,AAA Batteries (4-pack),3,2.99,08/31/19 21:03,"179 Dogwood St, San Francisco, CA 94016" +240578,USB-C Charging Cable,1,11.95,08/27/19 18:14,"361 North St, Boston, MA 02215" +240579,Macbook Pro Laptop,1,1700,08/31/19 20:11,"549 Willow St, Boston, MA 02215" +240580,Flatscreen TV,1,300,08/20/19 18:32,"883 Jackson St, Boston, MA 02215" +240581,27in FHD Monitor,1,149.99,08/31/19 11:52,"403 Forest St, San Francisco, CA 94016" +240582,USB-C Charging Cable,1,11.95,08/16/19 13:18,"131 Walnut St, Atlanta, GA 30301" +240583,Apple Airpods Headphones,1,150,08/29/19 16:08,"92 7th St, San Francisco, CA 94016" +240584,Bose SoundSport Headphones,1,99.99,08/09/19 10:40,"69 Hickory St, New York City, NY 10001" +240585,Flatscreen TV,1,300,08/15/19 09:12,"156 Jackson St, Los Angeles, CA 90001" +240586,Macbook Pro Laptop,1,1700,08/12/19 07:40,"647 Church St, San Francisco, CA 94016" +240587,Bose SoundSport Headphones,1,99.99,08/25/19 20:38,"745 Park St, Portland, OR 97035" +240588,Apple Airpods Headphones,1,150,08/06/19 21:17,"850 11th St, Los Angeles, CA 90001" +240589,Wired Headphones,1,11.99,08/30/19 00:03,"452 Madison St, San Francisco, CA 94016" +240590,Wired Headphones,1,11.99,08/04/19 07:04,"311 Lincoln St, Los Angeles, CA 90001" +240591,iPhone,1,700,08/25/19 19:58,"971 7th St, San Francisco, CA 94016" +240592,AA Batteries (4-pack),2,3.84,08/21/19 22:28,"581 Willow St, Atlanta, GA 30301" +240593,USB-C Charging Cable,2,11.95,08/31/19 12:15,"18 2nd St, Seattle, WA 98101" +240594,Macbook Pro Laptop,1,1700,08/04/19 16:58,"966 Cedar St, Dallas, TX 75001" +240595,Bose SoundSport Headphones,1,99.99,08/10/19 13:36,"498 Highland St, San Francisco, CA 94016" +240596,Lightning Charging Cable,1,14.95,08/16/19 16:31,"756 12th St, Atlanta, GA 30301" +240597,AAA Batteries (4-pack),1,2.99,08/22/19 08:21,"421 Chestnut St, San Francisco, CA 94016" +240598,Lightning Charging Cable,1,14.95,08/30/19 22:13,"322 5th St, Seattle, WA 98101" +240598,iPhone,1,700,08/30/19 22:13,"322 5th St, Seattle, WA 98101" +240599,AA Batteries (4-pack),1,3.84,08/08/19 11:09,"751 Chestnut St, Austin, TX 73301" +240600,Apple Airpods Headphones,1,150,08/22/19 12:44,"517 Dogwood St, Los Angeles, CA 90001" +240601,AAA Batteries (4-pack),1,2.99,08/30/19 17:19,"53 Willow St, San Francisco, CA 94016" +240602,Wired Headphones,1,11.99,08/07/19 05:58,"972 14th St, San Francisco, CA 94016" +240603,USB-C Charging Cable,1,11.95,08/01/19 12:04,"630 Lincoln St, Los Angeles, CA 90001" +240604,AA Batteries (4-pack),1,3.84,08/14/19 16:29,"288 West St, Seattle, WA 98101" +240605,AA Batteries (4-pack),1,3.84,08/16/19 13:10,"477 11th St, San Francisco, CA 94016" +240606,Lightning Charging Cable,1,14.95,08/11/19 11:30,"612 Forest St, San Francisco, CA 94016" +240607,Lightning Charging Cable,2,14.95,08/16/19 11:38,"908 West St, Portland, OR 97035" +240608,Bose SoundSport Headphones,1,99.99,08/06/19 00:20,"367 Main St, Seattle, WA 98101" +240609,Bose SoundSport Headphones,1,99.99,08/18/19 23:51,"481 Elm St, San Francisco, CA 94016" +240610,AA Batteries (4-pack),1,3.84,08/08/19 08:33,"538 9th St, Portland, OR 97035" +240611,Lightning Charging Cable,1,14.95,08/12/19 15:01,"345 Hickory St, Atlanta, GA 30301" +240612,AA Batteries (4-pack),2,3.84,08/18/19 17:35,"604 Walnut St, Boston, MA 02215" +240613,Wired Headphones,1,11.99,08/04/19 15:17,"472 Willow St, San Francisco, CA 94016" +240614,Wired Headphones,1,11.99,08/19/19 18:07,"423 South St, Los Angeles, CA 90001" +240615,USB-C Charging Cable,1,11.95,08/17/19 04:11,"967 Center St, San Francisco, CA 94016" +240616,ThinkPad Laptop,1,999.99,08/22/19 20:31,"433 12th St, San Francisco, CA 94016" +240617,Bose SoundSport Headphones,1,99.99,08/18/19 18:59,"819 Hill St, San Francisco, CA 94016" +240618,Bose SoundSport Headphones,1,99.99,08/29/19 20:33,"441 Pine St, Los Angeles, CA 90001" +240619,AA Batteries (4-pack),1,3.84,08/29/19 15:38,"279 Lake St, Los Angeles, CA 90001" +240620,AAA Batteries (4-pack),1,2.99,08/28/19 20:02,"515 Chestnut St, San Francisco, CA 94016" +240621,Vareebadd Phone,1,400,08/18/19 21:03,"828 Lakeview St, Seattle, WA 98101" +240621,USB-C Charging Cable,2,11.95,08/18/19 21:03,"828 Lakeview St, Seattle, WA 98101" +240622,27in 4K Gaming Monitor,1,389.99,08/26/19 22:59,"158 14th St, New York City, NY 10001" +240623,iPhone,1,700,08/09/19 17:06,"241 Chestnut St, Boston, MA 02215" +240624,USB-C Charging Cable,1,11.95,08/14/19 19:04,"148 West St, New York City, NY 10001" +240625,Bose SoundSport Headphones,1,99.99,08/08/19 19:23,"454 1st St, New York City, NY 10001" +240626,AAA Batteries (4-pack),1,2.99,08/27/19 14:16,"272 Church St, San Francisco, CA 94016" +240627,Bose SoundSport Headphones,1,99.99,08/16/19 09:22,"325 Elm St, Dallas, TX 75001" +240628,AAA Batteries (4-pack),1,2.99,08/08/19 11:05,"296 Forest St, Dallas, TX 75001" +240629,AA Batteries (4-pack),2,3.84,08/08/19 09:17,"702 Cedar St, San Francisco, CA 94016" +240630,27in FHD Monitor,1,149.99,08/02/19 21:12,"79 13th St, Atlanta, GA 30301" +240631,Apple Airpods Headphones,1,150,08/15/19 22:34,"496 Chestnut St, Boston, MA 02215" +240632,iPhone,1,700,08/16/19 09:59,"138 Spruce St, San Francisco, CA 94016" +240633,Wired Headphones,1,11.99,08/25/19 20:13,"461 Meadow St, Los Angeles, CA 90001" +240634,AA Batteries (4-pack),1,3.84,08/31/19 11:01,"309 Forest St, San Francisco, CA 94016" +240635,USB-C Charging Cable,1,11.95,08/28/19 20:26,"960 Elm St, Portland, ME 04101" +240636,Google Phone,1,600,08/20/19 18:03,"658 Willow St, Los Angeles, CA 90001" +240637,iPhone,1,700,08/11/19 17:17,"161 Hill St, Portland, ME 04101" +240638,Bose SoundSport Headphones,1,99.99,08/09/19 20:45,"416 2nd St, Los Angeles, CA 90001" +240639,Wired Headphones,1,11.99,08/02/19 06:22,"320 Elm St, Dallas, TX 75001" +240640,Wired Headphones,1,11.99,08/25/19 11:28,"430 Hill St, Atlanta, GA 30301" +240641,34in Ultrawide Monitor,1,379.99,08/01/19 09:13,"756 Madison St, Seattle, WA 98101" +240642,AAA Batteries (4-pack),1,2.99,08/11/19 16:28,"706 West St, Boston, MA 02215" +240643,Wired Headphones,1,11.99,08/15/19 12:30,"625 Cedar St, San Francisco, CA 94016" +240644,AAA Batteries (4-pack),3,2.99,08/15/19 10:41,"61 Hickory St, San Francisco, CA 94016" +240645,Google Phone,1,600,08/21/19 10:25,"528 North St, Los Angeles, CA 90001" +240646,Lightning Charging Cable,1,14.95,08/03/19 13:58,"540 2nd St, San Francisco, CA 94016" +240647,USB-C Charging Cable,1,11.95,08/27/19 12:45,"934 2nd St, San Francisco, CA 94016" +240648,Vareebadd Phone,1,400,08/26/19 18:25,"874 12th St, Los Angeles, CA 90001" +240648,USB-C Charging Cable,1,11.95,08/26/19 18:25,"874 12th St, Los Angeles, CA 90001" +240649,Macbook Pro Laptop,1,1700,08/15/19 17:47,"98 West St, Atlanta, GA 30301" +240650,20in Monitor,1,109.99,08/03/19 13:05,"519 5th St, Atlanta, GA 30301" +240651,Google Phone,1,600,08/23/19 19:08,"97 Church St, San Francisco, CA 94016" +240652,27in FHD Monitor,2,149.99,08/08/19 20:30,"768 Highland St, Los Angeles, CA 90001" +240653,Macbook Pro Laptop,1,1700,08/23/19 07:58,"476 Pine St, Portland, OR 97035" +240654,Bose SoundSport Headphones,1,99.99,08/01/19 08:41,"71 Dogwood St, Dallas, TX 75001" +240655,AAA Batteries (4-pack),4,2.99,08/21/19 23:40,"767 Sunset St, New York City, NY 10001" +240656,Lightning Charging Cable,1,14.95,08/06/19 14:51,"862 Hill St, Dallas, TX 75001" +240656,Wired Headphones,1,11.99,08/06/19 14:51,"862 Hill St, Dallas, TX 75001" +240657,Wired Headphones,1,11.99,08/19/19 17:34,"86 Jefferson St, San Francisco, CA 94016" +240658,USB-C Charging Cable,1,11.95,08/20/19 13:06,"272 Lincoln St, Los Angeles, CA 90001" +240659,Google Phone,1,600,08/14/19 12:12,"309 Ridge St, Seattle, WA 98101" +240660,AAA Batteries (4-pack),2,2.99,08/22/19 16:23,"840 North St, San Francisco, CA 94016" +240661,AA Batteries (4-pack),1,3.84,08/20/19 14:06,"561 Maple St, Boston, MA 02215" +240662,AA Batteries (4-pack),1,3.84,08/25/19 22:03,"140 Jefferson St, Dallas, TX 75001" +240663,34in Ultrawide Monitor,1,379.99,08/30/19 23:58,"604 Willow St, San Francisco, CA 94016" +240664,USB-C Charging Cable,1,11.95,08/09/19 09:39,"743 Forest St, Boston, MA 02215" +240665,AAA Batteries (4-pack),1,2.99,08/06/19 16:24,"177 4th St, Seattle, WA 98101" +240666,Lightning Charging Cable,1,14.95,08/12/19 20:40,"857 Johnson St, Los Angeles, CA 90001" +240667,Apple Airpods Headphones,1,150,08/18/19 13:27,"659 Church St, Seattle, WA 98101" +240668,LG Washing Machine,1,600.0,08/29/19 11:13,"959 Sunset St, New York City, NY 10001" +240669,ThinkPad Laptop,1,999.99,08/23/19 17:01,"428 5th St, Los Angeles, CA 90001" +240670,AA Batteries (4-pack),1,3.84,08/27/19 14:53,"954 Pine St, Atlanta, GA 30301" +240671,AAA Batteries (4-pack),1,2.99,08/08/19 19:14,"966 10th St, San Francisco, CA 94016" +240672,Google Phone,1,600,08/21/19 11:41,"831 11th St, Boston, MA 02215" +240673,AA Batteries (4-pack),1,3.84,08/17/19 19:29,"114 Jackson St, Atlanta, GA 30301" +240674,Flatscreen TV,1,300,08/14/19 00:06,"926 Madison St, Los Angeles, CA 90001" +240675,Lightning Charging Cable,1,14.95,08/20/19 08:59,"548 Hickory St, Portland, OR 97035" +240676,Lightning Charging Cable,1,14.95,08/25/19 09:58,"11 Highland St, Los Angeles, CA 90001" +240677,Wired Headphones,1,11.99,08/06/19 14:48,"193 7th St, San Francisco, CA 94016" +240678,Google Phone,1,600,08/22/19 00:22,"864 Pine St, San Francisco, CA 94016" +240678,Bose SoundSport Headphones,1,99.99,08/22/19 00:22,"864 Pine St, San Francisco, CA 94016" +240679,AA Batteries (4-pack),1,3.84,08/13/19 22:44,"562 Sunset St, Austin, TX 73301" +240680,Apple Airpods Headphones,1,150,08/11/19 22:49,"394 Johnson St, New York City, NY 10001" +240681,Wired Headphones,1,11.99,08/17/19 23:03,"509 Washington St, Seattle, WA 98101" +240682,27in 4K Gaming Monitor,1,389.99,08/03/19 02:47,"405 Church St, New York City, NY 10001" +240683,USB-C Charging Cable,1,11.95,08/04/19 12:29,"329 South St, Seattle, WA 98101" +240684,AAA Batteries (4-pack),2,2.99,08/12/19 22:05,"134 Cherry St, Boston, MA 02215" +240685,USB-C Charging Cable,1,11.95,08/15/19 13:25,"701 Sunset St, San Francisco, CA 94016" +240686,20in Monitor,1,109.99,08/21/19 21:40,"460 Spruce St, Dallas, TX 75001" +240687,27in FHD Monitor,1,149.99,08/08/19 20:04,"795 13th St, San Francisco, CA 94016" +240687,Lightning Charging Cable,1,14.95,08/08/19 20:04,"795 13th St, San Francisco, CA 94016" +240688,ThinkPad Laptop,1,999.99,08/13/19 19:59,"953 Ridge St, Atlanta, GA 30301" +240689,Wired Headphones,1,11.99,08/08/19 17:51,"290 Spruce St, Los Angeles, CA 90001" +240690,Lightning Charging Cable,1,14.95,08/17/19 20:37,"165 7th St, Boston, MA 02215" +240691,AAA Batteries (4-pack),1,2.99,08/25/19 00:42,"881 River St, Boston, MA 02215" +240692,Wired Headphones,1,11.99,08/06/19 19:40,"450 Center St, New York City, NY 10001" +240693,USB-C Charging Cable,1,11.95,08/30/19 08:01,"524 Hill St, Los Angeles, CA 90001" +240694,AA Batteries (4-pack),1,3.84,08/29/19 21:38,"886 10th St, Dallas, TX 75001" +240695,27in 4K Gaming Monitor,1,389.99,08/11/19 20:51,"725 13th St, San Francisco, CA 94016" +240696,Flatscreen TV,1,300,08/07/19 17:29,"948 Lakeview St, Los Angeles, CA 90001" +240697,AA Batteries (4-pack),1,3.84,08/06/19 20:10,"587 Highland St, Atlanta, GA 30301" +240698,Lightning Charging Cable,1,14.95,08/13/19 14:06,"534 River St, Los Angeles, CA 90001" +240699,AA Batteries (4-pack),1,3.84,08/09/19 15:44,"654 Washington St, Portland, OR 97035" +240700,AA Batteries (4-pack),1,3.84,08/05/19 17:47,"938 Church St, New York City, NY 10001" +240700,Vareebadd Phone,1,400,08/05/19 17:47,"938 Church St, New York City, NY 10001" +240701,AA Batteries (4-pack),1,3.84,08/06/19 16:29,"766 West St, New York City, NY 10001" +240702,AAA Batteries (4-pack),2,2.99,08/18/19 20:09,"647 Hickory St, San Francisco, CA 94016" +240703,AAA Batteries (4-pack),1,2.99,08/11/19 11:31,"272 River St, Dallas, TX 75001" +240704,34in Ultrawide Monitor,1,379.99,08/21/19 21:35,"542 Walnut St, New York City, NY 10001" +240705,Wired Headphones,1,11.99,08/20/19 08:35,"77 South St, San Francisco, CA 94016" +240706,AAA Batteries (4-pack),1,2.99,08/16/19 17:39,"233 Spruce St, Atlanta, GA 30301" +240707,AA Batteries (4-pack),2,3.84,08/31/19 12:39,"302 Lake St, Atlanta, GA 30301" +240708,Bose SoundSport Headphones,1,99.99,08/08/19 14:12,"80 2nd St, Atlanta, GA 30301" +240709,Apple Airpods Headphones,1,150,08/26/19 16:23,"528 Forest St, San Francisco, CA 94016" +240710,Bose SoundSport Headphones,1,99.99,08/08/19 23:32,"770 Hickory St, New York City, NY 10001" +240711,27in FHD Monitor,1,149.99,08/29/19 15:50,"763 7th St, New York City, NY 10001" +240712,Lightning Charging Cable,2,14.95,08/09/19 10:59,"696 Wilson St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +240713,Bose SoundSport Headphones,1,99.99,08/27/19 14:02,"370 Ridge St, Boston, MA 02215" +240714,Bose SoundSport Headphones,1,99.99,08/27/19 16:24,"478 Highland St, Atlanta, GA 30301" +240715,Vareebadd Phone,1,400,08/10/19 15:27,"452 1st St, New York City, NY 10001" +240716,USB-C Charging Cable,1,11.95,08/03/19 11:12,"166 4th St, Los Angeles, CA 90001" +240717,Wired Headphones,1,11.99,08/21/19 18:33,"51 River St, Los Angeles, CA 90001" +240718,AA Batteries (4-pack),1,3.84,08/17/19 07:44,"839 Maple St, New York City, NY 10001" +240719,27in FHD Monitor,1,149.99,08/09/19 18:34,"942 West St, San Francisco, CA 94016" +240720,Lightning Charging Cable,1,14.95,08/06/19 09:56,"790 Adams St, Boston, MA 02215" +240721,iPhone,1,700,08/22/19 08:36,"151 Park St, Boston, MA 02215" +240722,27in FHD Monitor,1,149.99,08/12/19 15:10,"387 Park St, New York City, NY 10001" +240723,27in 4K Gaming Monitor,1,389.99,08/23/19 18:14,"449 Jefferson St, Austin, TX 73301" +240724,iPhone,1,700,08/31/19 17:49,"492 Walnut St, San Francisco, CA 94016" +240725,Macbook Pro Laptop,1,1700,08/11/19 21:31,"401 West St, Atlanta, GA 30301" +240726,Apple Airpods Headphones,1,150,08/04/19 22:15,"71 Park St, Portland, OR 97035" +240727,AAA Batteries (4-pack),2,2.99,08/28/19 22:37,"876 Forest St, Portland, ME 04101" +240728,Google Phone,1,600,08/01/19 22:51,"239 2nd St, Seattle, WA 98101" +240729,AAA Batteries (4-pack),1,2.99,08/07/19 18:58,"2 Dogwood St, San Francisco, CA 94016" +240730,AAA Batteries (4-pack),1,2.99,08/17/19 22:33,"381 Dogwood St, Seattle, WA 98101" +240731,AA Batteries (4-pack),1,3.84,08/18/19 07:45,"156 Maple St, San Francisco, CA 94016" +240732,AA Batteries (4-pack),1,3.84,08/21/19 11:27,"151 14th St, Boston, MA 02215" +240733,AA Batteries (4-pack),1,3.84,08/10/19 11:49,"613 South St, San Francisco, CA 94016" +240734,Lightning Charging Cable,1,14.95,08/24/19 13:48,"172 13th St, Boston, MA 02215" +240735,Apple Airpods Headphones,1,150,08/02/19 18:56,"420 6th St, Atlanta, GA 30301" +240736,AA Batteries (4-pack),3,3.84,08/15/19 12:02,"871 Chestnut St, Atlanta, GA 30301" +240737,AAA Batteries (4-pack),1,2.99,08/07/19 19:25,"126 4th St, San Francisco, CA 94016" +240738,LG Dryer,1,600.0,08/11/19 19:38,"289 Willow St, Seattle, WA 98101" +240739,ThinkPad Laptop,1,999.99,08/17/19 12:38,"420 1st St, San Francisco, CA 94016" +240740,Google Phone,1,600,08/13/19 05:46,"27 Elm St, Seattle, WA 98101" +240741,USB-C Charging Cable,1,11.95,08/28/19 14:32,"391 Hill St, San Francisco, CA 94016" +240742,Lightning Charging Cable,1,14.95,08/06/19 23:07,"858 Maple St, Portland, OR 97035" +240743,34in Ultrawide Monitor,1,379.99,08/03/19 13:50,"464 11th St, Atlanta, GA 30301" +240744,AAA Batteries (4-pack),1,2.99,08/03/19 16:04,"766 Church St, Los Angeles, CA 90001" +240745,Bose SoundSport Headphones,1,99.99,08/30/19 17:58,"895 Cedar St, New York City, NY 10001" +240746,Wired Headphones,1,11.99,08/03/19 17:23,"904 6th St, Los Angeles, CA 90001" +240747,AAA Batteries (4-pack),1,2.99,08/17/19 17:11,"230 4th St, Los Angeles, CA 90001" +240748,USB-C Charging Cable,1,11.95,08/26/19 22:23,"78 Willow St, Austin, TX 73301" +240749,iPhone,1,700,08/24/19 15:42,"192 Washington St, Portland, OR 97035" +240750,USB-C Charging Cable,1,11.95,08/04/19 12:48,"584 7th St, San Francisco, CA 94016" +240751,Wired Headphones,1,11.99,08/15/19 16:14,"545 4th St, New York City, NY 10001" +240752,iPhone,1,700,08/18/19 22:06,"602 West St, Dallas, TX 75001" +240753,Flatscreen TV,1,300,08/31/19 21:19,"41 9th St, Seattle, WA 98101" +240754,USB-C Charging Cable,1,11.95,08/06/19 20:54,"840 Highland St, San Francisco, CA 94016" +240755,Lightning Charging Cable,1,14.95,08/03/19 12:08,"700 Highland St, Seattle, WA 98101" +240756,Flatscreen TV,1,300,08/11/19 18:37,"136 Maple St, New York City, NY 10001" +240757,AA Batteries (4-pack),1,3.84,08/16/19 17:51,"802 9th St, Seattle, WA 98101" +240758,Lightning Charging Cable,1,14.95,08/02/19 16:33,"939 South St, New York City, NY 10001" +240759,AAA Batteries (4-pack),1,2.99,08/21/19 15:13,"33 Willow St, New York City, NY 10001" +240760,Bose SoundSport Headphones,1,99.99,08/19/19 23:04,"372 Meadow St, Boston, MA 02215" +240761,Wired Headphones,2,11.99,08/17/19 23:43,"144 Cherry St, San Francisco, CA 94016" +240762,Bose SoundSport Headphones,1,99.99,08/17/19 02:33,"774 Ridge St, Seattle, WA 98101" +240763,AAA Batteries (4-pack),1,2.99,08/17/19 09:34,"340 Lakeview St, San Francisco, CA 94016" +240764,AA Batteries (4-pack),1,3.84,08/11/19 19:57,"709 7th St, San Francisco, CA 94016" +240765,Lightning Charging Cable,1,14.95,08/05/19 13:37,"433 Pine St, Los Angeles, CA 90001" +240766,AA Batteries (4-pack),1,3.84,08/27/19 00:23,"391 9th St, Seattle, WA 98101" +240767,Google Phone,1,600,08/25/19 02:18,"597 Hill St, New York City, NY 10001" +240767,Bose SoundSport Headphones,1,99.99,08/25/19 02:18,"597 Hill St, New York City, NY 10001" +240768,AAA Batteries (4-pack),2,2.99,08/16/19 17:08,"695 Maple St, Seattle, WA 98101" +240769,AA Batteries (4-pack),1,3.84,08/02/19 18:07,"989 Lake St, New York City, NY 10001" +240769,27in 4K Gaming Monitor,1,389.99,08/02/19 18:07,"989 Lake St, New York City, NY 10001" +240770,Lightning Charging Cable,1,14.95,08/20/19 09:33,"504 Willow St, Los Angeles, CA 90001" +240771,Macbook Pro Laptop,1,1700,08/13/19 18:31,"300 2nd St, San Francisco, CA 94016" +240772,34in Ultrawide Monitor,1,379.99,08/27/19 17:18,"649 Cherry St, Atlanta, GA 30301" +240773,27in FHD Monitor,1,149.99,08/01/19 10:46,"749 Walnut St, Los Angeles, CA 90001" +240774,USB-C Charging Cable,2,11.95,08/20/19 15:16,"105 6th St, Atlanta, GA 30301" +240775,27in FHD Monitor,1,149.99,08/19/19 17:53,"598 Church St, Los Angeles, CA 90001" +240776,Lightning Charging Cable,1,14.95,08/21/19 11:29,"40 Jackson St, New York City, NY 10001" +240777,Lightning Charging Cable,1,14.95,08/24/19 11:08,"969 Adams St, Dallas, TX 75001" +240778,Lightning Charging Cable,1,14.95,08/07/19 23:40,"337 Meadow St, San Francisco, CA 94016" +240779,AA Batteries (4-pack),1,3.84,08/23/19 17:53,"511 6th St, Dallas, TX 75001" +240780,Bose SoundSport Headphones,1,99.99,08/18/19 23:39,"386 West St, Portland, OR 97035" +240781,USB-C Charging Cable,1,11.95,08/13/19 10:34,"918 Sunset St, San Francisco, CA 94016" +240782,Bose SoundSport Headphones,1,99.99,08/07/19 12:15,"543 Cherry St, New York City, NY 10001" +240783,Apple Airpods Headphones,1,150,08/27/19 20:26,"306 Lakeview St, Dallas, TX 75001" +240784,Wired Headphones,1,11.99,08/14/19 10:48,"516 Center St, San Francisco, CA 94016" +240785,20in Monitor,1,109.99,08/28/19 17:51,"869 Hill St, Portland, ME 04101" +240786,Google Phone,1,600,08/20/19 10:32,"451 Chestnut St, Atlanta, GA 30301" +240787,Lightning Charging Cable,1,14.95,08/16/19 07:50,"988 Lakeview St, Seattle, WA 98101" +240788,USB-C Charging Cable,1,11.95,08/11/19 18:46,"681 South St, Atlanta, GA 30301" +240789,Lightning Charging Cable,1,14.95,08/16/19 20:36,"34 Wilson St, San Francisco, CA 94016" +240790,Wired Headphones,1,11.99,08/28/19 05:00,"365 Chestnut St, New York City, NY 10001" +240791,27in 4K Gaming Monitor,1,389.99,08/10/19 12:15,"408 2nd St, Los Angeles, CA 90001" +240792,USB-C Charging Cable,2,11.95,08/10/19 17:16,"997 7th St, Boston, MA 02215" +240793,AAA Batteries (4-pack),1,2.99,08/20/19 10:48,"450 Elm St, Boston, MA 02215" +240794,Wired Headphones,2,11.99,08/26/19 23:20,"622 Dogwood St, San Francisco, CA 94016" +240795,USB-C Charging Cable,1,11.95,08/20/19 11:43,"530 Center St, San Francisco, CA 94016" +240796,Lightning Charging Cable,1,14.95,08/20/19 17:17,"514 13th St, San Francisco, CA 94016" +240797,Google Phone,1,600,08/10/19 10:23,"394 Dogwood St, New York City, NY 10001" +240797,Wired Headphones,1,11.99,08/10/19 10:23,"394 Dogwood St, New York City, NY 10001" +240798,27in FHD Monitor,1,149.99,08/30/19 22:58,"318 Lake St, Los Angeles, CA 90001" +240799,Lightning Charging Cable,2,14.95,08/19/19 20:52,"968 Sunset St, Boston, MA 02215" +240800,AA Batteries (4-pack),1,3.84,08/15/19 15:38,"258 Hickory St, San Francisco, CA 94016" +240801,27in 4K Gaming Monitor,1,389.99,08/04/19 14:20,"144 Park St, Boston, MA 02215" +240802,Wired Headphones,1,11.99,08/26/19 08:38,"233 Dogwood St, Seattle, WA 98101" +240803,AAA Batteries (4-pack),2,2.99,08/19/19 12:43,"791 Spruce St, San Francisco, CA 94016" +240804,27in 4K Gaming Monitor,1,389.99,08/10/19 13:31,"261 Chestnut St, Atlanta, GA 30301" +240805,iPhone,1,700,08/31/19 19:54,"588 Lincoln St, San Francisco, CA 94016" +240806,USB-C Charging Cable,1,11.95,08/09/19 22:26,"396 Spruce St, New York City, NY 10001" +240807,Lightning Charging Cable,1,14.95,08/03/19 09:00,"676 5th St, San Francisco, CA 94016" +240808,Macbook Pro Laptop,1,1700,08/10/19 11:16,"424 Sunset St, New York City, NY 10001" +240809,Lightning Charging Cable,1,14.95,08/25/19 12:15,"182 Meadow St, Seattle, WA 98101" +240810,AA Batteries (4-pack),2,3.84,08/12/19 22:02,"180 South St, New York City, NY 10001" +240811,USB-C Charging Cable,1,11.95,08/17/19 19:35,"765 5th St, Dallas, TX 75001" +240812,Vareebadd Phone,1,400,08/08/19 20:47,"122 Lakeview St, Los Angeles, CA 90001" +240813,USB-C Charging Cable,1,11.95,08/15/19 08:53,"270 Ridge St, Portland, ME 04101" +240814,Lightning Charging Cable,1,14.95,08/06/19 20:40,"16 Madison St, Dallas, TX 75001" +240815,USB-C Charging Cable,1,11.95,08/09/19 23:02,"218 Johnson St, Dallas, TX 75001" +240816,USB-C Charging Cable,1,11.95,08/03/19 11:26,"227 5th St, Boston, MA 02215" +240817,Lightning Charging Cable,1,14.95,08/21/19 02:42,"169 6th St, San Francisco, CA 94016" +240818,Lightning Charging Cable,1,14.95,08/04/19 13:11,"664 Jefferson St, Portland, OR 97035" +240819,Apple Airpods Headphones,1,150,08/23/19 21:44,"996 6th St, San Francisco, CA 94016" +240820,AA Batteries (4-pack),1,3.84,08/01/19 08:16,"70 West St, San Francisco, CA 94016" +240821,AA Batteries (4-pack),1,3.84,08/16/19 10:37,"526 Walnut St, Portland, OR 97035" +240822,Wired Headphones,1,11.99,08/19/19 13:03,"538 Wilson St, Atlanta, GA 30301" +240823,AA Batteries (4-pack),2,3.84,08/08/19 00:07,"691 13th St, Portland, OR 97035" +240824,Apple Airpods Headphones,1,150,08/22/19 22:07,"225 Johnson St, Los Angeles, CA 90001" +240825,Flatscreen TV,1,300,08/02/19 15:52,"763 Church St, San Francisco, CA 94016" +240826,USB-C Charging Cable,1,11.95,08/26/19 20:43,"697 Elm St, Atlanta, GA 30301" +240827,iPhone,1,700,08/31/19 20:00,"143 Ridge St, Los Angeles, CA 90001" +240828,iPhone,1,700,08/06/19 10:56,"864 Washington St, Seattle, WA 98101" +240829,Macbook Pro Laptop,1,1700,08/20/19 15:31,"96 Lincoln St, Austin, TX 73301" +240830,Apple Airpods Headphones,1,150,08/26/19 07:47,"59 6th St, San Francisco, CA 94016" +240831,Wired Headphones,1,11.99,08/12/19 13:44,"472 Johnson St, San Francisco, CA 94016" +240832,27in FHD Monitor,1,149.99,08/01/19 17:11,"735 11th St, Los Angeles, CA 90001" +240833,Flatscreen TV,1,300,08/29/19 14:18,"972 River St, Austin, TX 73301" +240834,AA Batteries (4-pack),1,3.84,08/08/19 20:46,"987 Jackson St, San Francisco, CA 94016" +240835,27in FHD Monitor,1,149.99,08/25/19 13:01,"580 South St, Seattle, WA 98101" +240836,AA Batteries (4-pack),1,3.84,08/08/19 21:45,"904 Johnson St, Portland, OR 97035" +240837,34in Ultrawide Monitor,1,379.99,08/31/19 14:35,"214 Hickory St, San Francisco, CA 94016" +240838,27in FHD Monitor,1,149.99,08/20/19 23:37,"796 South St, San Francisco, CA 94016" +240839,AA Batteries (4-pack),1,3.84,08/18/19 17:12,"274 Johnson St, Portland, OR 97035" +240840,Bose SoundSport Headphones,1,99.99,08/04/19 15:29,"14 South St, Seattle, WA 98101" +240841,Wired Headphones,1,11.99,08/26/19 00:45,"614 West St, New York City, NY 10001" +,,,,, +240842,Macbook Pro Laptop,1,1700,08/30/19 23:03,"81 Hill St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +240843,Lightning Charging Cable,1,14.95,08/18/19 19:30,"284 8th St, San Francisco, CA 94016" +240844,Bose SoundSport Headphones,1,99.99,08/23/19 16:27,"196 Maple St, Atlanta, GA 30301" +240845,Wired Headphones,1,11.99,08/07/19 06:09,"882 12th St, San Francisco, CA 94016" +240846,AAA Batteries (4-pack),1,2.99,08/01/19 14:02,"138 River St, Los Angeles, CA 90001" +240847,Flatscreen TV,1,300,08/13/19 19:40,"741 10th St, Austin, TX 73301" +240848,Wired Headphones,1,11.99,08/07/19 16:40,"835 Walnut St, Dallas, TX 75001" +240849,Apple Airpods Headphones,1,150,08/24/19 13:11,"620 West St, Seattle, WA 98101" +240850,USB-C Charging Cable,2,11.95,08/18/19 19:47,"470 Spruce St, Boston, MA 02215" +240851,Wired Headphones,3,11.99,08/07/19 22:59,"865 Elm St, San Francisco, CA 94016" +240852,AA Batteries (4-pack),1,3.84,08/18/19 15:28,"614 Adams St, New York City, NY 10001" +240853,USB-C Charging Cable,1,11.95,08/18/19 14:25,"274 Maple St, Atlanta, GA 30301" +240854,USB-C Charging Cable,2,11.95,08/31/19 23:10,"415 9th St, San Francisco, CA 94016" +240855,AA Batteries (4-pack),1,3.84,08/14/19 09:08,"191 8th St, Dallas, TX 75001" +240856,34in Ultrawide Monitor,1,379.99,08/26/19 22:41,"697 11th St, Seattle, WA 98101" +240857,Lightning Charging Cable,1,14.95,08/10/19 06:07,"271 Lakeview St, Austin, TX 73301" +240858,USB-C Charging Cable,1,11.95,08/09/19 13:58,"54 2nd St, San Francisco, CA 94016" +240859,Google Phone,1,600,08/21/19 12:11,"131 Willow St, Atlanta, GA 30301" +240860,AAA Batteries (4-pack),2,2.99,08/14/19 20:18,"106 Lincoln St, Los Angeles, CA 90001" +240861,Wired Headphones,1,11.99,08/01/19 07:03,"480 8th St, Los Angeles, CA 90001" +240862,Apple Airpods Headphones,1,150,08/27/19 18:22,"98 14th St, Boston, MA 02215" +240863,20in Monitor,1,109.99,08/22/19 12:04,"404 Walnut St, New York City, NY 10001" +240864,27in FHD Monitor,1,149.99,08/09/19 13:50,"561 West St, San Francisco, CA 94016" +240865,iPhone,1,700,08/16/19 19:12,"970 Church St, Dallas, TX 75001" +240865,Lightning Charging Cable,3,14.95,08/16/19 19:12,"970 Church St, Dallas, TX 75001" +240866,Apple Airpods Headphones,1,150,08/08/19 13:00,"175 Forest St, San Francisco, CA 94016" +240867,Flatscreen TV,1,300,08/07/19 20:23,"545 Jackson St, San Francisco, CA 94016" +240868,AAA Batteries (4-pack),3,2.99,08/18/19 19:07,"657 North St, San Francisco, CA 94016" +240869,Apple Airpods Headphones,1,150,08/01/19 19:36,"131 River St, New York City, NY 10001" +240870,USB-C Charging Cable,2,11.95,08/30/19 19:16,"408 10th St, Boston, MA 02215" +240871,USB-C Charging Cable,1,11.95,08/14/19 13:01,"31 North St, Los Angeles, CA 90001" +240872,AA Batteries (4-pack),1,3.84,08/02/19 17:23,"8 Main St, New York City, NY 10001" +240873,Lightning Charging Cable,1,14.95,08/13/19 07:08,"971 13th St, Los Angeles, CA 90001" +240874,USB-C Charging Cable,1,11.95,08/15/19 12:13,"952 Adams St, Seattle, WA 98101" +240875,27in FHD Monitor,1,149.99,08/11/19 16:53,"790 11th St, Austin, TX 73301" +240876,ThinkPad Laptop,1,999.99,08/12/19 19:35,"288 Washington St, San Francisco, CA 94016" +240877,Wired Headphones,1,11.99,08/01/19 14:33,"749 Willow St, Portland, ME 04101" +240878,Flatscreen TV,1,300,08/04/19 10:47,"185 6th St, Austin, TX 73301" +240879,ThinkPad Laptop,1,999.99,08/17/19 10:02,"270 12th St, San Francisco, CA 94016" +240880,Wired Headphones,1,11.99,08/19/19 07:43,"956 Lakeview St, Dallas, TX 75001" +240881,Lightning Charging Cable,1,14.95,08/19/19 16:45,"489 13th St, Dallas, TX 75001" +240882,Apple Airpods Headphones,1,150,08/28/19 22:25,"571 Elm St, Seattle, WA 98101" +240883,Wired Headphones,1,11.99,08/20/19 07:30,"915 Chestnut St, New York City, NY 10001" +240884,27in FHD Monitor,1,149.99,08/08/19 21:46,"617 12th St, Los Angeles, CA 90001" +240885,USB-C Charging Cable,1,11.95,08/10/19 22:53,"748 7th St, New York City, NY 10001" +240886,Lightning Charging Cable,1,14.95,08/05/19 16:29,"851 Hickory St, Portland, OR 97035" +240887,USB-C Charging Cable,1,11.95,08/24/19 18:54,"429 Wilson St, Seattle, WA 98101" +240888,Bose SoundSport Headphones,1,99.99,08/22/19 04:03,"1 Main St, San Francisco, CA 94016" +240889,Wired Headphones,1,11.99,08/22/19 20:52,"782 Hill St, Dallas, TX 75001" +240890,27in FHD Monitor,1,149.99,08/18/19 18:23,"773 Lakeview St, Seattle, WA 98101" +240891,Lightning Charging Cable,1,14.95,08/19/19 18:03,"12 Hickory St, San Francisco, CA 94016" +240892,27in 4K Gaming Monitor,1,389.99,08/17/19 23:06,"347 Lincoln St, New York City, NY 10001" +240893,AA Batteries (4-pack),2,3.84,08/07/19 09:03,"31 Walnut St, Austin, TX 73301" +240894,Apple Airpods Headphones,1,150,08/02/19 18:15,"255 Ridge St, Boston, MA 02215" +240895,AAA Batteries (4-pack),1,2.99,08/20/19 17:57,"77 Cedar St, Los Angeles, CA 90001" +240896,34in Ultrawide Monitor,1,379.99,08/12/19 16:38,"509 Cedar St, New York City, NY 10001" +240897,Lightning Charging Cable,1,14.95,08/01/19 11:51,"896 Park St, Austin, TX 73301" +240898,Apple Airpods Headphones,1,150,08/28/19 00:20,"379 River St, Los Angeles, CA 90001" +240899,20in Monitor,1,109.99,08/19/19 09:50,"419 Johnson St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +240900,Wired Headphones,1,11.99,08/24/19 15:31,"907 Lakeview St, Austin, TX 73301" +240901,Lightning Charging Cable,1,14.95,08/29/19 19:39,"769 Cherry St, Los Angeles, CA 90001" +240902,Lightning Charging Cable,1,14.95,08/28/19 15:31,"919 Pine St, New York City, NY 10001" +240903,27in FHD Monitor,1,149.99,08/28/19 23:14,"632 13th St, Seattle, WA 98101" +240904,USB-C Charging Cable,3,11.95,08/25/19 20:54,"438 Adams St, New York City, NY 10001" +240905,USB-C Charging Cable,1,11.95,08/28/19 23:17,"57 14th St, Dallas, TX 75001" +240906,Lightning Charging Cable,1,14.95,08/08/19 17:44,"191 Madison St, Austin, TX 73301" +240907,Wired Headphones,1,11.99,08/28/19 06:25,"728 Jackson St, Dallas, TX 75001" +240908,AAA Batteries (4-pack),1,2.99,08/26/19 13:04,"116 4th St, Los Angeles, CA 90001" +240909,27in FHD Monitor,1,149.99,08/21/19 15:24,"410 Willow St, Los Angeles, CA 90001" +240910,Google Phone,1,600,08/11/19 17:26,"687 Church St, Atlanta, GA 30301" +240911,iPhone,1,700,08/02/19 08:04,"61 4th St, Austin, TX 73301" +240911,Wired Headphones,1,11.99,08/02/19 08:04,"61 4th St, Austin, TX 73301" +240912,AA Batteries (4-pack),1,3.84,08/18/19 16:56,"119 Madison St, Portland, OR 97035" +240913,Wired Headphones,1,11.99,08/17/19 22:03,"530 West St, New York City, NY 10001" +240914,iPhone,1,700,08/04/19 11:38,"708 14th St, Los Angeles, CA 90001" +240915,USB-C Charging Cable,1,11.95,08/18/19 23:28,"886 South St, San Francisco, CA 94016" +240916,Lightning Charging Cable,1,14.95,08/30/19 09:27,"258 Dogwood St, Los Angeles, CA 90001" +240917,LG Washing Machine,1,600.0,08/28/19 15:23,"691 2nd St, New York City, NY 10001" +240918,Lightning Charging Cable,1,14.95,08/07/19 21:27,"109 Cedar St, San Francisco, CA 94016" +240919,Lightning Charging Cable,1,14.95,08/04/19 12:18,"310 13th St, Atlanta, GA 30301" +240920,Flatscreen TV,1,300,08/29/19 22:36,"626 2nd St, Boston, MA 02215" +240921,27in FHD Monitor,1,149.99,08/14/19 17:33,"912 Hickory St, Los Angeles, CA 90001" +240922,Lightning Charging Cable,1,14.95,08/21/19 13:56,"12 12th St, Seattle, WA 98101" +240923,iPhone,1,700,08/26/19 23:12,"658 Center St, Austin, TX 73301" +240923,Lightning Charging Cable,1,14.95,08/26/19 23:12,"658 Center St, Austin, TX 73301" +240924,Wired Headphones,1,11.99,08/19/19 16:17,"744 Park St, Dallas, TX 75001" +240925,AA Batteries (4-pack),2,3.84,08/30/19 09:42,"987 Center St, Austin, TX 73301" +240926,Flatscreen TV,1,300,08/16/19 07:09,"855 Hill St, San Francisco, CA 94016" +240927,Google Phone,1,600,08/03/19 22:41,"164 Lincoln St, Dallas, TX 75001" +240928,34in Ultrawide Monitor,1,379.99,08/26/19 19:24,"559 9th St, Atlanta, GA 30301" +240929,Wired Headphones,1,11.99,08/27/19 08:42,"678 5th St, Boston, MA 02215" +240930,AAA Batteries (4-pack),1,2.99,08/11/19 06:33,"592 Meadow St, San Francisco, CA 94016" +240931,AA Batteries (4-pack),1,3.84,08/31/19 22:14,"951 Main St, Boston, MA 02215" +240932,27in FHD Monitor,1,149.99,08/17/19 19:57,"211 Dogwood St, San Francisco, CA 94016" +240933,AAA Batteries (4-pack),1,2.99,08/04/19 18:33,"285 Johnson St, Los Angeles, CA 90001" +240933,AA Batteries (4-pack),2,3.84,08/04/19 18:33,"285 Johnson St, Los Angeles, CA 90001" +240934,Wired Headphones,1,11.99,08/01/19 09:46,"588 Lake St, San Francisco, CA 94016" +240935,Lightning Charging Cable,1,14.95,08/22/19 12:21,"871 Meadow St, Dallas, TX 75001" +240936,Lightning Charging Cable,1,14.95,08/02/19 22:48,"729 Center St, San Francisco, CA 94016" +240937,Wired Headphones,1,11.99,08/17/19 00:25,"439 Elm St, Austin, TX 73301" +240938,AA Batteries (4-pack),2,3.84,08/05/19 17:49,"239 Forest St, San Francisco, CA 94016" +240939,Google Phone,1,600,08/09/19 10:28,"715 Forest St, San Francisco, CA 94016" +240940,Bose SoundSport Headphones,1,99.99,08/06/19 13:59,"540 Lakeview St, San Francisco, CA 94016" +240941,AA Batteries (4-pack),2,3.84,08/15/19 21:15,"93 Jefferson St, New York City, NY 10001" +240942,ThinkPad Laptop,1,999.99,08/21/19 18:30,"484 Lincoln St, Portland, OR 97035" +240943,USB-C Charging Cable,1,11.95,08/13/19 11:20,"987 Elm St, Boston, MA 02215" +240944,27in FHD Monitor,1,149.99,08/21/19 18:58,"278 13th St, Portland, ME 04101" +240945,Apple Airpods Headphones,1,150,08/29/19 08:30,"339 West St, New York City, NY 10001" +240946,Lightning Charging Cable,1,14.95,08/24/19 14:53,"998 Willow St, Portland, OR 97035" +240947,Wired Headphones,1,11.99,08/28/19 13:44,"98 Elm St, Boston, MA 02215" +240948,USB-C Charging Cable,1,11.95,08/08/19 18:08,"256 Jackson St, San Francisco, CA 94016" +240949,Flatscreen TV,1,300,08/07/19 09:36,"204 Cherry St, San Francisco, CA 94016" +240950,Wired Headphones,1,11.99,08/13/19 14:40,"370 Sunset St, Los Angeles, CA 90001" +240951,27in FHD Monitor,1,149.99,08/30/19 10:03,"775 Forest St, Boston, MA 02215" +240952,27in 4K Gaming Monitor,1,389.99,08/02/19 08:01,"33 Madison St, Boston, MA 02215" +240953,AA Batteries (4-pack),1,3.84,08/16/19 19:47,"977 Highland St, San Francisco, CA 94016" +240954,27in FHD Monitor,1,149.99,08/11/19 00:00,"917 7th St, Austin, TX 73301" +240955,27in FHD Monitor,1,149.99,08/04/19 11:26,"392 Lake St, Boston, MA 02215" +240956,LG Dryer,1,600.0,08/02/19 09:10,"107 Adams St, Dallas, TX 75001" +240957,AAA Batteries (4-pack),1,2.99,08/16/19 00:31,"745 Hickory St, Atlanta, GA 30301" +240958,Macbook Pro Laptop,1,1700,08/02/19 00:40,"625 Willow St, San Francisco, CA 94016" +240959,AAA Batteries (4-pack),1,2.99,08/14/19 15:30,"783 Washington St, Los Angeles, CA 90001" +240960,Macbook Pro Laptop,1,1700,08/15/19 12:27,"446 Hill St, Los Angeles, CA 90001" +240961,27in FHD Monitor,1,149.99,08/07/19 03:27,"764 13th St, Atlanta, GA 30301" +240962,AA Batteries (4-pack),1,3.84,08/15/19 12:03,"915 Johnson St, San Francisco, CA 94016" +240963,Macbook Pro Laptop,1,1700,08/25/19 11:48,"298 Washington St, New York City, NY 10001" +240964,Wired Headphones,1,11.99,08/21/19 16:50,"157 8th St, San Francisco, CA 94016" +240965,Apple Airpods Headphones,1,150,08/24/19 09:17,"41 Adams St, Portland, OR 97035" +240966,Flatscreen TV,1,300,08/25/19 14:46,"23 Pine St, Seattle, WA 98101" +240967,Wired Headphones,1,11.99,08/22/19 15:23,"362 8th St, Austin, TX 73301" +240968,AA Batteries (4-pack),1,3.84,08/15/19 22:39,"193 Center St, San Francisco, CA 94016" +240969,Google Phone,1,600,08/26/19 15:27,"554 Dogwood St, Portland, OR 97035" +240970,27in FHD Monitor,1,149.99,08/11/19 12:51,"452 North St, Dallas, TX 75001" +240971,Bose SoundSport Headphones,1,99.99,08/01/19 19:57,"983 Ridge St, Boston, MA 02215" +240972,Lightning Charging Cable,1,14.95,08/14/19 19:41,"732 West St, Boston, MA 02215" +240973,USB-C Charging Cable,1,11.95,08/15/19 14:14,"180 Sunset St, San Francisco, CA 94016" +240974,Flatscreen TV,1,300,08/07/19 17:52,"736 Chestnut St, Atlanta, GA 30301" +240975,AA Batteries (4-pack),1,3.84,08/04/19 12:19,"500 Dogwood St, Portland, ME 04101" +240976,Wired Headphones,1,11.99,08/15/19 19:17,"549 8th St, San Francisco, CA 94016" +240977,Apple Airpods Headphones,1,150,08/03/19 21:54,"169 Spruce St, San Francisco, CA 94016" +240978,Apple Airpods Headphones,1,150,08/09/19 08:26,"834 North St, San Francisco, CA 94016" +240979,Apple Airpods Headphones,1,150,08/29/19 16:59,"78 5th St, Seattle, WA 98101" +240980,Lightning Charging Cable,1,14.95,08/03/19 07:15,"482 Forest St, Portland, OR 97035" +240981,Lightning Charging Cable,1,14.95,08/02/19 10:44,"181 9th St, Boston, MA 02215" +240982,Lightning Charging Cable,1,14.95,08/24/19 11:17,"235 Main St, Los Angeles, CA 90001" +240983,Lightning Charging Cable,1,14.95,08/03/19 20:28,"153 Hickory St, San Francisco, CA 94016" +240984,AAA Batteries (4-pack),1,2.99,08/12/19 22:45,"585 Church St, Dallas, TX 75001" +240985,Bose SoundSport Headphones,1,99.99,08/25/19 22:09,"451 6th St, Dallas, TX 75001" +240986,AAA Batteries (4-pack),1,2.99,08/23/19 12:49,"592 South St, San Francisco, CA 94016" +240987,Lightning Charging Cable,1,14.95,08/06/19 12:59,"905 Forest St, San Francisco, CA 94016" +240988,Wired Headphones,1,11.99,08/03/19 19:02,"435 Spruce St, New York City, NY 10001" +240989,27in FHD Monitor,1,149.99,08/27/19 13:14,"754 Madison St, Dallas, TX 75001" +240990,Apple Airpods Headphones,1,150,08/17/19 21:30,"963 West St, San Francisco, CA 94016" +240991,Wired Headphones,1,11.99,08/25/19 12:53,"714 Lake St, Dallas, TX 75001" +240992,AAA Batteries (4-pack),1,2.99,08/07/19 15:35,"651 Hill St, Portland, OR 97035" +240993,Apple Airpods Headphones,1,150,08/27/19 17:01,"463 Jefferson St, Atlanta, GA 30301" +240994,Wired Headphones,1,11.99,08/18/19 21:28,"133 River St, Los Angeles, CA 90001" +240995,USB-C Charging Cable,1,11.95,08/20/19 11:52,"161 Sunset St, San Francisco, CA 94016" +240996,Wired Headphones,1,11.99,08/13/19 21:47,"208 7th St, Seattle, WA 98101" +240996,27in 4K Gaming Monitor,1,389.99,08/13/19 21:47,"208 7th St, Seattle, WA 98101" +240997,USB-C Charging Cable,1,11.95,08/18/19 20:46,"777 Main St, San Francisco, CA 94016" +240998,27in 4K Gaming Monitor,1,389.99,08/06/19 00:34,"19 Ridge St, Dallas, TX 75001" +240999,Lightning Charging Cable,2,14.95,08/29/19 10:07,"225 Jefferson St, Austin, TX 73301" +241000,AAA Batteries (4-pack),1,2.99,08/28/19 13:46,"952 Lake St, San Francisco, CA 94016" +241001,iPhone,1,700,08/05/19 20:50,"824 Ridge St, Los Angeles, CA 90001" +241002,Bose SoundSport Headphones,1,99.99,08/11/19 07:11,"879 Lincoln St, Seattle, WA 98101" +241003,USB-C Charging Cable,1,11.95,08/12/19 22:02,"85 Hickory St, Boston, MA 02215" +241004,Flatscreen TV,1,300,08/26/19 08:40,"977 8th St, San Francisco, CA 94016" +241005,Bose SoundSport Headphones,1,99.99,08/31/19 22:22,"419 Lakeview St, Seattle, WA 98101" +241006,Wired Headphones,1,11.99,08/06/19 10:55,"195 Hickory St, Atlanta, GA 30301" +241007,iPhone,1,700,08/03/19 20:29,"420 Washington St, Los Angeles, CA 90001" +241008,Wired Headphones,1,11.99,08/31/19 21:52,"323 4th St, Seattle, WA 98101" +241009,USB-C Charging Cable,1,11.95,08/14/19 18:08,"187 10th St, Dallas, TX 75001" +241010,Wired Headphones,1,11.99,08/27/19 14:46,"839 12th St, New York City, NY 10001" +241011,Macbook Pro Laptop,1,1700,08/10/19 12:45,"848 Chestnut St, Los Angeles, CA 90001" +241012,USB-C Charging Cable,1,11.95,08/11/19 15:57,"932 Elm St, Portland, OR 97035" +241013,Flatscreen TV,1,300,08/15/19 19:54,"642 12th St, Austin, TX 73301" +241014,USB-C Charging Cable,1,11.95,08/27/19 10:08,"821 Lincoln St, New York City, NY 10001" +241015,AAA Batteries (4-pack),1,2.99,08/22/19 08:19,"692 West St, San Francisco, CA 94016" +241016,Wired Headphones,1,11.99,08/06/19 10:47,"239 Hickory St, Atlanta, GA 30301" +241017,Apple Airpods Headphones,1,150,08/17/19 19:17,"200 Adams St, San Francisco, CA 94016" +241018,AA Batteries (4-pack),4,3.84,08/12/19 14:56,"700 Maple St, Austin, TX 73301" +241019,USB-C Charging Cable,1,11.95,08/15/19 17:42,"602 Adams St, Los Angeles, CA 90001" +241020,Apple Airpods Headphones,1,150,08/03/19 17:24,"1 6th St, Dallas, TX 75001" +241021,AAA Batteries (4-pack),1,2.99,08/08/19 21:15,"139 14th St, New York City, NY 10001" +241022,Bose SoundSport Headphones,1,99.99,08/07/19 19:43,"385 Hill St, Dallas, TX 75001" +241023,ThinkPad Laptop,1,999.99,08/20/19 08:40,"914 Hickory St, Atlanta, GA 30301" +241024,Wired Headphones,1,11.99,08/14/19 12:39,"383 Highland St, Los Angeles, CA 90001" +241025,Flatscreen TV,1,300,08/14/19 19:13,"985 Madison St, San Francisco, CA 94016" +241026,Lightning Charging Cable,1,14.95,08/05/19 13:02,"715 Dogwood St, San Francisco, CA 94016" +241027,Lightning Charging Cable,1,14.95,08/11/19 15:43,"654 6th St, New York City, NY 10001" +241028,iPhone,1,700,08/04/19 12:01,"52 8th St, Los Angeles, CA 90001" +241029,27in FHD Monitor,1,149.99,08/17/19 18:27,"386 Washington St, San Francisco, CA 94016" +241030,Apple Airpods Headphones,1,150,08/22/19 10:11,"508 2nd St, San Francisco, CA 94016" +241031,27in FHD Monitor,1,149.99,08/16/19 09:19,"819 12th St, Dallas, TX 75001" +241032,34in Ultrawide Monitor,1,379.99,08/24/19 18:10,"916 River St, Los Angeles, CA 90001" +241033,Lightning Charging Cable,1,14.95,08/30/19 19:53,"70 Washington St, New York City, NY 10001" +241034,AAA Batteries (4-pack),2,2.99,08/21/19 18:17,"642 West St, San Francisco, CA 94016" +241035,27in 4K Gaming Monitor,1,389.99,08/28/19 14:50,"952 Willow St, San Francisco, CA 94016" +241036,USB-C Charging Cable,1,11.95,08/25/19 06:37,"792 Hickory St, San Francisco, CA 94016" +241037,Vareebadd Phone,1,400,08/03/19 11:33,"333 Chestnut St, Atlanta, GA 30301" +241037,USB-C Charging Cable,1,11.95,08/03/19 11:33,"333 Chestnut St, Atlanta, GA 30301" +241038,Wired Headphones,1,11.99,08/30/19 10:26,"696 Maple St, San Francisco, CA 94016" +241039,Flatscreen TV,1,300,08/12/19 11:21,"682 Main St, San Francisco, CA 94016" +241040,iPhone,1,700,08/06/19 09:10,"726 Cherry St, San Francisco, CA 94016" +241041,Wired Headphones,1,11.99,08/21/19 14:11,"982 Wilson St, Boston, MA 02215" +241042,20in Monitor,1,109.99,08/30/19 13:41,"657 Elm St, San Francisco, CA 94016" +241043,Bose SoundSport Headphones,1,99.99,08/16/19 20:57,"674 Dogwood St, Dallas, TX 75001" +241044,Wired Headphones,1,11.99,08/17/19 21:43,"823 14th St, Seattle, WA 98101" +241045,34in Ultrawide Monitor,1,379.99,08/09/19 17:57,"323 Sunset St, New York City, NY 10001" +241046,Bose SoundSport Headphones,1,99.99,08/13/19 23:15,"589 Pine St, San Francisco, CA 94016" +241047,AAA Batteries (4-pack),3,2.99,08/27/19 20:07,"709 Spruce St, Atlanta, GA 30301" +241048,LG Washing Machine,1,600.0,08/06/19 22:40,"308 14th St, Seattle, WA 98101" +241049,Lightning Charging Cable,1,14.95,08/28/19 18:56,"310 Lincoln St, Boston, MA 02215" +241050,27in FHD Monitor,1,149.99,08/28/19 08:40,"873 11th St, Seattle, WA 98101" +241051,Lightning Charging Cable,1,14.95,08/26/19 05:15,"466 Adams St, San Francisco, CA 94016" +241052,Lightning Charging Cable,1,14.95,08/31/19 21:04,"508 Spruce St, San Francisco, CA 94016" +241053,USB-C Charging Cable,1,11.95,08/02/19 10:21,"248 Jackson St, Los Angeles, CA 90001" +241054,Lightning Charging Cable,1,14.95,08/30/19 13:44,"218 12th St, Los Angeles, CA 90001" +241055,USB-C Charging Cable,2,11.95,08/07/19 21:44,"927 9th St, Los Angeles, CA 90001" +241056,USB-C Charging Cable,1,11.95,08/19/19 19:51,"31 Sunset St, New York City, NY 10001" +241057,Macbook Pro Laptop,1,1700,08/01/19 21:29,"460 Sunset St, New York City, NY 10001" +241058,AAA Batteries (4-pack),2,2.99,08/11/19 17:20,"402 Lake St, Austin, TX 73301" +241059,Wired Headphones,1,11.99,08/24/19 08:49,"534 11th St, Los Angeles, CA 90001" +241060,Bose SoundSport Headphones,1,99.99,08/15/19 09:40,"430 Highland St, Los Angeles, CA 90001" +241061,USB-C Charging Cable,1,11.95,08/19/19 19:15,"528 River St, San Francisco, CA 94016" +241062,34in Ultrawide Monitor,1,379.99,08/12/19 16:22,"360 River St, Portland, OR 97035" +241063,Macbook Pro Laptop,1,1700,08/04/19 14:02,"63 Church St, Boston, MA 02215" +241064,Macbook Pro Laptop,1,1700,08/05/19 17:03,"961 10th St, San Francisco, CA 94016" +241065,Macbook Pro Laptop,1,1700,08/15/19 23:03,"836 West St, Los Angeles, CA 90001" +241066,ThinkPad Laptop,1,999.99,08/10/19 20:08,"972 Sunset St, Seattle, WA 98101" +241067,Wired Headphones,1,11.99,08/25/19 23:12,"489 Hickory St, San Francisco, CA 94016" +241068,Flatscreen TV,1,300,08/16/19 21:19,"906 14th St, San Francisco, CA 94016" +241069,USB-C Charging Cable,1,11.95,08/16/19 23:06,"817 Washington St, San Francisco, CA 94016" +241070,Google Phone,1,600,08/27/19 00:54,"418 Wilson St, Dallas, TX 75001" +241071,AA Batteries (4-pack),2,3.84,08/12/19 20:48,"4 Adams St, New York City, NY 10001" +241072,AA Batteries (4-pack),1,3.84,08/21/19 09:56,"357 Church St, Los Angeles, CA 90001" +241073,34in Ultrawide Monitor,1,379.99,08/07/19 18:19,"95 Center St, Seattle, WA 98101" +241074,Bose SoundSport Headphones,1,99.99,08/31/19 14:48,"291 14th St, Atlanta, GA 30301" +241075,AA Batteries (4-pack),1,3.84,08/11/19 12:26,"465 14th St, Atlanta, GA 30301" +241076,AA Batteries (4-pack),1,3.84,08/22/19 13:12,"731 Willow St, San Francisco, CA 94016" +241077,USB-C Charging Cable,2,11.95,08/02/19 13:46,"287 8th St, Austin, TX 73301" +241078,AA Batteries (4-pack),1,3.84,08/09/19 12:43,"346 Madison St, Los Angeles, CA 90001" +241079,iPhone,1,700,08/13/19 05:37,"457 Lake St, San Francisco, CA 94016" +241080,Apple Airpods Headphones,1,150,08/11/19 14:17,"398 Ridge St, Los Angeles, CA 90001" +241081,AAA Batteries (4-pack),2,2.99,08/30/19 20:15,"306 Meadow St, Boston, MA 02215" +241082,27in 4K Gaming Monitor,1,389.99,08/11/19 21:24,"942 9th St, San Francisco, CA 94016" +241083,Apple Airpods Headphones,1,150,08/25/19 21:25,"707 Lake St, Dallas, TX 75001" +241084,AAA Batteries (4-pack),1,2.99,08/05/19 21:31,"674 Church St, San Francisco, CA 94016" +241085,Lightning Charging Cable,1,14.95,08/19/19 16:29,"896 Pine St, Seattle, WA 98101" +241086,Bose SoundSport Headphones,1,99.99,08/06/19 12:37,"667 Ridge St, San Francisco, CA 94016" +241087,27in 4K Gaming Monitor,1,389.99,08/06/19 06:49,"164 4th St, Portland, OR 97035" +241088,Lightning Charging Cable,1,14.95,08/19/19 20:07,"472 14th St, Portland, OR 97035" +241089,USB-C Charging Cable,1,11.95,08/26/19 14:47,"380 North St, Seattle, WA 98101" +241090,AAA Batteries (4-pack),2,2.99,08/28/19 17:25,"244 14th St, New York City, NY 10001" +241091,Bose SoundSport Headphones,1,99.99,08/07/19 00:18,"457 6th St, New York City, NY 10001" +241092,USB-C Charging Cable,1,11.95,08/02/19 12:22,"825 8th St, Los Angeles, CA 90001" +241093,Flatscreen TV,1,300,08/31/19 17:20,"415 5th St, San Francisco, CA 94016" +241094,Lightning Charging Cable,1,14.95,08/21/19 10:07,"672 South St, San Francisco, CA 94016" +241095,USB-C Charging Cable,1,11.95,08/16/19 16:14,"39 Cherry St, San Francisco, CA 94016" +241096,AA Batteries (4-pack),1,3.84,08/05/19 07:48,"887 Willow St, Austin, TX 73301" +241097,Macbook Pro Laptop,1,1700,08/06/19 10:05,"617 Meadow St, San Francisco, CA 94016" +241098,USB-C Charging Cable,1,11.95,08/27/19 13:11,"545 Center St, Austin, TX 73301" +241099,USB-C Charging Cable,1,11.95,08/17/19 22:01,"903 Cedar St, Portland, OR 97035" +241100,Apple Airpods Headphones,1,150,08/05/19 20:37,"454 13th St, San Francisco, CA 94016" +241101,Flatscreen TV,1,300,08/06/19 11:34,"256 Cherry St, Boston, MA 02215" +241102,27in FHD Monitor,1,149.99,08/09/19 13:17,"766 Jefferson St, Seattle, WA 98101" +241103,Google Phone,1,600,08/02/19 13:05,"154 North St, Los Angeles, CA 90001" +241103,USB-C Charging Cable,1,11.95,08/02/19 13:05,"154 North St, Los Angeles, CA 90001" +241104,ThinkPad Laptop,1,999.99,08/27/19 03:44,"202 1st St, New York City, NY 10001" +241105,Apple Airpods Headphones,1,150,08/28/19 20:08,"816 Center St, Los Angeles, CA 90001" +241106,27in 4K Gaming Monitor,1,389.99,08/31/19 00:28,"805 Jefferson St, Seattle, WA 98101" +241107,iPhone,1,700,08/19/19 20:03,"946 Forest St, Atlanta, GA 30301" +241108,Apple Airpods Headphones,1,150,08/14/19 08:04,"610 Johnson St, Los Angeles, CA 90001" +241109,Lightning Charging Cable,1,14.95,08/01/19 18:38,"513 South St, Portland, ME 04101" +241110,Macbook Pro Laptop,1,1700,08/01/19 12:56,"355 Center St, Atlanta, GA 30301" +241111,Lightning Charging Cable,1,14.95,08/13/19 12:18,"356 Ridge St, San Francisco, CA 94016" +241111,Lightning Charging Cable,1,14.95,08/13/19 12:18,"356 Ridge St, San Francisco, CA 94016" +241112,Lightning Charging Cable,1,14.95,08/24/19 09:44,"776 Willow St, Austin, TX 73301" +241113,USB-C Charging Cable,2,11.95,08/16/19 18:33,"960 9th St, Austin, TX 73301" +241114,34in Ultrawide Monitor,1,379.99,08/23/19 21:54,"4 4th St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +241115,USB-C Charging Cable,1,11.95,08/21/19 21:51,"268 Washington St, Seattle, WA 98101" +241116,Lightning Charging Cable,1,14.95,08/03/19 23:21,"473 Forest St, Seattle, WA 98101" +241117,USB-C Charging Cable,1,11.95,08/17/19 22:26,"404 7th St, Los Angeles, CA 90001" +241118,AA Batteries (4-pack),1,3.84,08/23/19 06:43,"933 2nd St, Boston, MA 02215" +241119,Apple Airpods Headphones,1,150,08/25/19 18:03,"514 Ridge St, San Francisco, CA 94016" +241120,AA Batteries (4-pack),1,3.84,08/11/19 18:09,"513 Meadow St, Boston, MA 02215" +241120,AA Batteries (4-pack),1,3.84,08/11/19 18:09,"513 Meadow St, Boston, MA 02215" +241121,Wired Headphones,2,11.99,08/24/19 18:22,"869 Cedar St, San Francisco, CA 94016" +241122,27in FHD Monitor,1,149.99,08/07/19 20:56,"144 Ridge St, Boston, MA 02215" +241123,Wired Headphones,1,11.99,08/04/19 20:44,"200 9th St, New York City, NY 10001" +241124,iPhone,1,700,08/05/19 22:53,"589 Hickory St, Los Angeles, CA 90001" +241125,ThinkPad Laptop,1,999.99,08/11/19 20:45,"439 Lake St, Portland, ME 04101" +241126,ThinkPad Laptop,1,999.99,08/24/19 22:57,"38 2nd St, San Francisco, CA 94016" +241127,Google Phone,1,600,08/24/19 21:40,"71 Washington St, San Francisco, CA 94016" +241128,Lightning Charging Cable,1,14.95,08/16/19 19:54,"723 Lakeview St, San Francisco, CA 94016" +241129,Lightning Charging Cable,2,14.95,08/13/19 13:42,"229 South St, Portland, ME 04101" +241130,Lightning Charging Cable,1,14.95,08/14/19 15:17,"471 West St, New York City, NY 10001" +241131,Apple Airpods Headphones,1,150,08/04/19 11:53,"448 Center St, San Francisco, CA 94016" +241132,AAA Batteries (4-pack),1,2.99,08/27/19 19:44,"303 13th St, Seattle, WA 98101" +241133,34in Ultrawide Monitor,1,379.99,08/29/19 18:42,"200 13th St, Los Angeles, CA 90001" +241134,Bose SoundSport Headphones,1,99.99,08/18/19 17:21,"258 South St, Los Angeles, CA 90001" +241135,27in FHD Monitor,1,149.99,08/09/19 00:02,"672 Cedar St, Los Angeles, CA 90001" +241136,Apple Airpods Headphones,1,150,08/31/19 12:03,"651 Spruce St, Atlanta, GA 30301" +241137,Google Phone,1,600,08/13/19 12:47,"236 Walnut St, Dallas, TX 75001" +241138,AA Batteries (4-pack),2,3.84,08/23/19 15:56,"528 9th St, San Francisco, CA 94016" +241139,USB-C Charging Cable,1,11.95,08/29/19 09:22,"357 Chestnut St, Portland, OR 97035" +241140,AAA Batteries (4-pack),1,2.99,08/09/19 09:39,"719 Lakeview St, Atlanta, GA 30301" +241141,Wired Headphones,1,11.99,08/12/19 20:25,"533 Meadow St, Atlanta, GA 30301" +241142,Lightning Charging Cable,1,14.95,08/04/19 10:49,"842 Dogwood St, Seattle, WA 98101" +241143,iPhone,1,700,08/12/19 17:16,"13 Cedar St, Boston, MA 02215" +241144,Apple Airpods Headphones,1,150,08/08/19 00:11,"319 Ridge St, Los Angeles, CA 90001" +241145,Apple Airpods Headphones,1,150,08/18/19 18:40,"365 River St, Austin, TX 73301" +241146,Bose SoundSport Headphones,1,99.99,08/19/19 22:43,"169 Pine St, San Francisco, CA 94016" +241147,Lightning Charging Cable,1,14.95,08/20/19 17:33,"976 Hill St, Dallas, TX 75001" +241148,AA Batteries (4-pack),1,3.84,08/31/19 15:50,"27 Center St, Los Angeles, CA 90001" +241149,AA Batteries (4-pack),1,3.84,08/17/19 19:47,"935 Meadow St, Boston, MA 02215" +241150,Flatscreen TV,1,300,08/06/19 13:21,"336 Cherry St, San Francisco, CA 94016" +241151,USB-C Charging Cable,1,11.95,08/04/19 22:30,"474 Johnson St, San Francisco, CA 94016" +241152,AA Batteries (4-pack),1,3.84,08/14/19 11:44,"861 Meadow St, Boston, MA 02215" +241153,34in Ultrawide Monitor,1,379.99,08/17/19 15:34,"151 Center St, Boston, MA 02215" +241154,AAA Batteries (4-pack),1,2.99,08/28/19 08:25,"296 West St, Boston, MA 02215" +241155,ThinkPad Laptop,1,999.99,08/03/19 05:35,"693 Lake St, Boston, MA 02215" +241156,ThinkPad Laptop,1,999.99,08/14/19 05:58,"659 6th St, New York City, NY 10001" +241157,AA Batteries (4-pack),2,3.84,08/30/19 07:15,"367 Johnson St, New York City, NY 10001" +241158,Lightning Charging Cable,1,14.95,08/09/19 23:44,"730 Sunset St, Portland, OR 97035" +241159,USB-C Charging Cable,1,11.95,08/17/19 22:26,"453 Lincoln St, New York City, NY 10001" +241160,AAA Batteries (4-pack),1,2.99,08/01/19 18:19,"473 Park St, Los Angeles, CA 90001" +241161,AAA Batteries (4-pack),2,2.99,08/19/19 20:09,"20 Jackson St, San Francisco, CA 94016" +241162,AAA Batteries (4-pack),1,2.99,08/21/19 04:39,"9 Spruce St, San Francisco, CA 94016" +241163,iPhone,1,700,08/05/19 15:58,"906 Center St, New York City, NY 10001" +241164,Wired Headphones,1,11.99,08/22/19 10:14,"943 10th St, Boston, MA 02215" +241165,27in 4K Gaming Monitor,1,389.99,08/29/19 07:30,"244 5th St, New York City, NY 10001" +241166,Lightning Charging Cable,1,14.95,08/22/19 11:10,"779 Johnson St, New York City, NY 10001" +241167,AAA Batteries (4-pack),1,2.99,08/18/19 21:01,"572 South St, San Francisco, CA 94016" +241168,iPhone,1,700,08/17/19 11:47,"868 Ridge St, Austin, TX 73301" +241169,AAA Batteries (4-pack),1,2.99,08/09/19 00:50,"771 South St, Dallas, TX 75001" +241170,iPhone,1,700,08/08/19 11:53,"821 Wilson St, San Francisco, CA 94016" +241171,Bose SoundSport Headphones,1,99.99,08/04/19 19:17,"959 Jackson St, New York City, NY 10001" +241172,USB-C Charging Cable,1,11.95,08/01/19 11:05,"14 4th St, New York City, NY 10001" +241173,Apple Airpods Headphones,1,150,08/08/19 07:53,"345 Cedar St, Austin, TX 73301" +241174,Apple Airpods Headphones,1,150,08/20/19 21:55,"608 Park St, Los Angeles, CA 90001" +241175,AA Batteries (4-pack),1,3.84,08/01/19 14:31,"655 Lakeview St, San Francisco, CA 94016" +241176,ThinkPad Laptop,1,999.99,08/01/19 18:30,"9 Cherry St, Atlanta, GA 30301" +241177,Lightning Charging Cable,1,14.95,08/15/19 12:12,"50 Dogwood St, Boston, MA 02215" +241178,AA Batteries (4-pack),1,3.84,08/26/19 18:59,"771 Chestnut St, Dallas, TX 75001" +241179,Vareebadd Phone,1,400,08/03/19 18:10,"69 Spruce St, New York City, NY 10001" +241180,Lightning Charging Cable,1,14.95,08/20/19 10:40,"396 Lake St, San Francisco, CA 94016" +241181,Apple Airpods Headphones,1,150,08/06/19 20:25,"56 7th St, Boston, MA 02215" +241182,USB-C Charging Cable,1,11.95,08/09/19 16:20,"271 14th St, New York City, NY 10001" +241183,Google Phone,1,600,08/21/19 11:00,"157 Adams St, Seattle, WA 98101" +241184,Google Phone,1,600,08/27/19 14:45,"597 8th St, Austin, TX 73301" +241185,AAA Batteries (4-pack),1,2.99,08/01/19 15:01,"394 Church St, Los Angeles, CA 90001" +241186,USB-C Charging Cable,1,11.95,08/17/19 15:14,"307 Jefferson St, Atlanta, GA 30301" +241187,AA Batteries (4-pack),1,3.84,08/15/19 19:17,"253 8th St, Portland, OR 97035" +241188,Lightning Charging Cable,1,14.95,08/27/19 10:54,"522 West St, Seattle, WA 98101" +241189,Google Phone,1,600,08/16/19 11:49,"491 Jackson St, Los Angeles, CA 90001" +241189,Bose SoundSport Headphones,1,99.99,08/16/19 11:49,"491 Jackson St, Los Angeles, CA 90001" +241190,Apple Airpods Headphones,1,150,08/28/19 13:54,"828 Lincoln St, Boston, MA 02215" +241191,Lightning Charging Cable,1,14.95,08/07/19 19:54,"57 11th St, Dallas, TX 75001" +241192,AA Batteries (4-pack),1,3.84,08/10/19 17:58,"32 South St, San Francisco, CA 94016" +241193,ThinkPad Laptop,1,999.99,08/24/19 03:41,"636 Church St, Los Angeles, CA 90001" +241194,AA Batteries (4-pack),3,3.84,08/20/19 18:36,"717 Forest St, Los Angeles, CA 90001" +241195,Bose SoundSport Headphones,1,99.99,08/23/19 11:46,"254 Washington St, New York City, NY 10001" +241196,27in FHD Monitor,1,149.99,08/27/19 13:50,"321 Forest St, New York City, NY 10001" +241197,AAA Batteries (4-pack),1,2.99,08/06/19 12:02,"235 Cherry St, San Francisco, CA 94016" +241198,Wired Headphones,1,11.99,08/13/19 19:08,"51 Elm St, Seattle, WA 98101" +241199,Apple Airpods Headphones,1,150,08/01/19 07:46,"109 Lincoln St, Dallas, TX 75001" +241200,Bose SoundSport Headphones,1,99.99,08/29/19 16:09,"916 Elm St, San Francisco, CA 94016" +241201,Google Phone,1,600,08/07/19 12:48,"847 8th St, San Francisco, CA 94016" +241201,Wired Headphones,1,11.99,08/07/19 12:48,"847 8th St, San Francisco, CA 94016" +241202,AA Batteries (4-pack),1,3.84,08/04/19 13:33,"755 Jefferson St, San Francisco, CA 94016" +241203,ThinkPad Laptop,1,999.99,08/11/19 11:43,"740 12th St, Boston, MA 02215" +241204,AAA Batteries (4-pack),2,2.99,08/09/19 20:14,"435 Walnut St, Los Angeles, CA 90001" +241205,34in Ultrawide Monitor,1,379.99,08/29/19 10:29,"956 2nd St, Los Angeles, CA 90001" +241206,AA Batteries (4-pack),1,3.84,08/12/19 17:34,"533 Washington St, Dallas, TX 75001" +241207,Wired Headphones,1,11.99,08/14/19 08:25,"408 Wilson St, Boston, MA 02215" +241208,AAA Batteries (4-pack),2,2.99,08/17/19 21:24,"994 Chestnut St, New York City, NY 10001" +241209,AAA Batteries (4-pack),1,2.99,08/08/19 10:13,"529 9th St, Dallas, TX 75001" +241210,Bose SoundSport Headphones,1,99.99,08/30/19 18:54,"996 Church St, Dallas, TX 75001" +241211,USB-C Charging Cable,1,11.95,08/14/19 20:11,"930 Adams St, Boston, MA 02215" +241212,AAA Batteries (4-pack),1,2.99,08/23/19 23:04,"287 4th St, San Francisco, CA 94016" +241213,Bose SoundSport Headphones,1,99.99,08/14/19 02:11,"496 Madison St, San Francisco, CA 94016" +241214,Lightning Charging Cable,1,14.95,08/20/19 21:07,"473 Meadow St, New York City, NY 10001" +241215,27in FHD Monitor,1,149.99,08/21/19 12:41,"406 West St, Los Angeles, CA 90001" +241216,20in Monitor,1,109.99,08/01/19 19:29,"44 Jackson St, Atlanta, GA 30301" +241217,Apple Airpods Headphones,1,150,08/11/19 19:59,"484 Cedar St, Atlanta, GA 30301" +241218,USB-C Charging Cable,1,11.95,08/10/19 10:34,"373 Maple St, Atlanta, GA 30301" +241219,USB-C Charging Cable,1,11.95,08/11/19 15:46,"842 14th St, Dallas, TX 75001" +241220,Apple Airpods Headphones,1,150,08/04/19 23:25,"71 Walnut St, San Francisco, CA 94016" +241221,27in 4K Gaming Monitor,1,389.99,08/03/19 00:28,"361 Adams St, San Francisco, CA 94016" +241222,USB-C Charging Cable,1,11.95,08/26/19 10:25,"422 South St, New York City, NY 10001" +241223,AA Batteries (4-pack),2,3.84,08/31/19 16:14,"85 Hickory St, Los Angeles, CA 90001" +241224,AA Batteries (4-pack),1,3.84,08/09/19 22:13,"305 Wilson St, Dallas, TX 75001" +241225,Wired Headphones,1,11.99,08/06/19 22:40,"151 Hickory St, Austin, TX 73301" +241226,27in 4K Gaming Monitor,1,389.99,08/27/19 10:40,"742 Maple St, San Francisco, CA 94016" +241227,Wired Headphones,1,11.99,08/24/19 19:51,"664 12th St, San Francisco, CA 94016" +241228,USB-C Charging Cable,1,11.95,08/14/19 11:18,"779 Elm St, New York City, NY 10001" +241229,Lightning Charging Cable,1,14.95,08/02/19 14:11,"179 2nd St, Dallas, TX 75001" +241230,Vareebadd Phone,1,400,08/04/19 21:28,"164 Wilson St, Dallas, TX 75001" +241231,AAA Batteries (4-pack),1,2.99,08/30/19 10:49,"82 13th St, Boston, MA 02215" +241232,Macbook Pro Laptop,1,1700,08/03/19 13:24,"79 Hickory St, San Francisco, CA 94016" +241233,Apple Airpods Headphones,1,150,08/11/19 11:22,"12 7th St, Boston, MA 02215" +241234,20in Monitor,1,109.99,08/09/19 21:09,"59 Lakeview St, Los Angeles, CA 90001" +241235,iPhone,1,700,08/13/19 11:37,"745 Elm St, Atlanta, GA 30301" +241236,Google Phone,1,600,08/19/19 23:13,"131 Johnson St, New York City, NY 10001" +241236,Wired Headphones,3,11.99,08/19/19 23:13,"131 Johnson St, New York City, NY 10001" +241237,Wired Headphones,1,11.99,08/22/19 08:34,"452 Willow St, San Francisco, CA 94016" +241238,Bose SoundSport Headphones,1,99.99,08/03/19 19:14,"965 13th St, Los Angeles, CA 90001" +241239,AAA Batteries (4-pack),1,2.99,08/06/19 07:07,"886 Ridge St, Portland, OR 97035" +241240,LG Dryer,1,600.0,08/10/19 09:58,"730 Cedar St, New York City, NY 10001" +241241,AAA Batteries (4-pack),1,2.99,08/31/19 17:11,"23 Church St, Portland, OR 97035" +241242,27in 4K Gaming Monitor,1,389.99,08/18/19 01:01,"853 North St, Boston, MA 02215" +241243,Wired Headphones,1,11.99,08/01/19 09:27,"401 Johnson St, Boston, MA 02215" +241244,Wired Headphones,1,11.99,08/01/19 19:31,"511 Park St, Dallas, TX 75001" +241245,Wired Headphones,1,11.99,08/26/19 16:12,"775 13th St, San Francisco, CA 94016" +241246,USB-C Charging Cable,1,11.95,08/10/19 12:14,"153 Walnut St, San Francisco, CA 94016" +241247,Lightning Charging Cable,1,14.95,08/30/19 13:51,"788 Lakeview St, New York City, NY 10001" +241248,Lightning Charging Cable,1,14.95,08/28/19 16:30,"163 Madison St, Austin, TX 73301" +241249,Wired Headphones,1,11.99,08/30/19 22:30,"759 8th St, New York City, NY 10001" +241250,AA Batteries (4-pack),2,3.84,08/29/19 20:08,"960 River St, San Francisco, CA 94016" +241251,Bose SoundSport Headphones,1,99.99,08/15/19 11:21,"172 South St, San Francisco, CA 94016" +241252,USB-C Charging Cable,1,11.95,08/07/19 12:34,"922 Willow St, Portland, OR 97035" +241253,Lightning Charging Cable,1,14.95,08/28/19 20:14,"431 South St, Los Angeles, CA 90001" +241254,AA Batteries (4-pack),1,3.84,08/05/19 16:09,"43 Adams St, Boston, MA 02215" +241255,USB-C Charging Cable,1,11.95,08/15/19 18:22,"615 11th St, Los Angeles, CA 90001" +241256,AAA Batteries (4-pack),1,2.99,08/10/19 11:51,"528 Jackson St, San Francisco, CA 94016" +241257,34in Ultrawide Monitor,1,379.99,08/16/19 07:04,"982 5th St, New York City, NY 10001" +241258,Apple Airpods Headphones,1,150,08/20/19 09:34,"845 Park St, Atlanta, GA 30301" +241259,AAA Batteries (4-pack),2,2.99,08/26/19 22:48,"81 2nd St, New York City, NY 10001" +241260,Apple Airpods Headphones,1,150,08/07/19 20:26,"711 Madison St, San Francisco, CA 94016" +241261,AAA Batteries (4-pack),1,2.99,08/25/19 12:50,"541 South St, San Francisco, CA 94016" +241262,USB-C Charging Cable,1,11.95,08/01/19 16:50,"341 14th St, Austin, TX 73301" +241263,AAA Batteries (4-pack),1,2.99,08/22/19 13:36,"38 8th St, New York City, NY 10001" +241264,AAA Batteries (4-pack),1,2.99,08/25/19 19:54,"847 Hickory St, Atlanta, GA 30301" +241265,27in FHD Monitor,1,149.99,08/20/19 08:23,"940 Forest St, Boston, MA 02215" +241266,USB-C Charging Cable,1,11.95,08/29/19 18:09,"75 6th St, Atlanta, GA 30301" +241267,Wired Headphones,1,11.99,08/24/19 22:57,"129 4th St, San Francisco, CA 94016" +241268,USB-C Charging Cable,1,11.95,08/26/19 00:14,"87 Jefferson St, San Francisco, CA 94016" +241269,USB-C Charging Cable,1,11.95,08/12/19 14:22,"290 Willow St, New York City, NY 10001" +241270,USB-C Charging Cable,1,11.95,08/14/19 11:55,"957 Dogwood St, Los Angeles, CA 90001" +241271,Wired Headphones,1,11.99,08/22/19 16:31,"265 North St, Seattle, WA 98101" +241272,Apple Airpods Headphones,1,150,08/08/19 16:03,"614 Chestnut St, San Francisco, CA 94016" +241273,Lightning Charging Cable,1,14.95,08/05/19 10:35,"749 Lake St, San Francisco, CA 94016" +241274,AAA Batteries (4-pack),1,2.99,08/20/19 05:45,"699 Chestnut St, Dallas, TX 75001" +241275,AA Batteries (4-pack),1,3.84,08/18/19 20:24,"711 Dogwood St, Boston, MA 02215" +241276,AAA Batteries (4-pack),1,2.99,08/13/19 16:33,"710 Main St, Boston, MA 02215" +241277,Wired Headphones,1,11.99,08/14/19 15:59,"562 Willow St, Portland, OR 97035" +241278,27in 4K Gaming Monitor,1,389.99,08/15/19 08:51,"806 Lakeview St, Portland, ME 04101" +241279,Lightning Charging Cable,1,14.95,08/23/19 12:40,"731 Ridge St, San Francisco, CA 94016" +241280,USB-C Charging Cable,1,11.95,08/17/19 22:54,"936 8th St, San Francisco, CA 94016" +241281,Lightning Charging Cable,1,14.95,08/28/19 11:36,"689 Cedar St, Austin, TX 73301" +241282,Lightning Charging Cable,1,14.95,08/01/19 15:45,"506 9th St, Boston, MA 02215" +241283,Apple Airpods Headphones,1,150,08/17/19 11:19,"754 1st St, San Francisco, CA 94016" +241284,USB-C Charging Cable,1,11.95,08/12/19 07:24,"118 Hickory St, Boston, MA 02215" +241285,27in FHD Monitor,1,149.99,08/14/19 15:24,"849 Hickory St, Seattle, WA 98101" +241286,AA Batteries (4-pack),1,3.84,08/24/19 18:43,"853 Lake St, San Francisco, CA 94016" +241287,27in FHD Monitor,1,149.99,08/06/19 18:45,"863 5th St, Atlanta, GA 30301" +241288,34in Ultrawide Monitor,1,379.99,08/09/19 12:37,"1 Cherry St, Portland, OR 97035" +241289,AA Batteries (4-pack),1,3.84,08/08/19 12:14,"654 Cedar St, Boston, MA 02215" +241290,AA Batteries (4-pack),1,3.84,08/15/19 00:07,"869 11th St, Atlanta, GA 30301" +241291,Wired Headphones,1,11.99,08/07/19 20:52,"420 10th St, San Francisco, CA 94016" +241292,AAA Batteries (4-pack),2,2.99,08/19/19 15:17,"266 Hickory St, New York City, NY 10001" +241293,34in Ultrawide Monitor,1,379.99,08/29/19 17:16,"972 11th St, Boston, MA 02215" +241294,Bose SoundSport Headphones,1,99.99,08/21/19 19:42,"48 Church St, San Francisco, CA 94016" +241295,AAA Batteries (4-pack),1,2.99,08/10/19 18:48,"42 Spruce St, Austin, TX 73301" +241296,AA Batteries (4-pack),1,3.84,08/16/19 14:47,"42 Pine St, Dallas, TX 75001" +241297,Flatscreen TV,1,300,08/01/19 16:58,"851 10th St, Portland, OR 97035" +241298,iPhone,1,700,08/23/19 17:43,"978 West St, Dallas, TX 75001" +241299,USB-C Charging Cable,1,11.95,08/13/19 15:06,"382 West St, Austin, TX 73301" +241300,iPhone,1,700,08/05/19 20:30,"820 11th St, Los Angeles, CA 90001" +241301,USB-C Charging Cable,1,11.95,08/11/19 14:31,"534 Wilson St, Atlanta, GA 30301" +241302,USB-C Charging Cable,1,11.95,08/14/19 21:24,"823 North St, Boston, MA 02215" +241303,AAA Batteries (4-pack),3,2.99,08/06/19 21:22,"576 Pine St, Portland, OR 97035" +241304,Wired Headphones,3,11.99,08/13/19 12:11,"423 Sunset St, Boston, MA 02215" +241305,Apple Airpods Headphones,1,150,08/06/19 14:48,"604 13th St, Los Angeles, CA 90001" +241306,20in Monitor,1,109.99,08/14/19 18:41,"434 Pine St, New York City, NY 10001" +241307,AA Batteries (4-pack),1,3.84,08/04/19 15:26,"267 River St, Austin, TX 73301" +241308,Bose SoundSport Headphones,1,99.99,08/10/19 18:49,"4 Forest St, San Francisco, CA 94016" +241309,20in Monitor,1,109.99,08/28/19 10:30,"124 Pine St, Austin, TX 73301" +241310,34in Ultrawide Monitor,1,379.99,08/15/19 20:13,"102 Hill St, New York City, NY 10001" +241311,iPhone,1,700,08/09/19 20:50,"926 Center St, Dallas, TX 75001" +241311,Wired Headphones,2,11.99,08/09/19 20:50,"926 Center St, Dallas, TX 75001" +241312,Wired Headphones,2,11.99,08/03/19 15:26,"284 Forest St, Boston, MA 02215" +241313,Apple Airpods Headphones,1,150,08/29/19 00:05,"443 Lake St, Boston, MA 02215" +241314,Flatscreen TV,1,300,08/18/19 10:29,"545 7th St, San Francisco, CA 94016" +241315,AA Batteries (4-pack),1,3.84,08/14/19 13:11,"128 Willow St, Boston, MA 02215" +241316,Wired Headphones,1,11.99,08/28/19 13:15,"706 6th St, New York City, NY 10001" +241317,Apple Airpods Headphones,1,150,08/10/19 08:43,"734 13th St, Seattle, WA 98101" +241318,34in Ultrawide Monitor,1,379.99,08/07/19 17:46,"329 Maple St, Atlanta, GA 30301" +241319,AAA Batteries (4-pack),2,2.99,08/30/19 19:09,"444 Church St, New York City, NY 10001" +241320,Lightning Charging Cable,1,14.95,08/16/19 14:53,"497 9th St, Atlanta, GA 30301" +241321,iPhone,1,700,08/02/19 12:37,"463 11th St, Austin, TX 73301" +241322,AAA Batteries (4-pack),1,2.99,08/25/19 17:44,"639 5th St, Austin, TX 73301" +241323,Wired Headphones,1,11.99,08/01/19 18:54,"308 Johnson St, Los Angeles, CA 90001" +241324,USB-C Charging Cable,1,11.95,08/12/19 16:38,"949 Washington St, San Francisco, CA 94016" +241325,USB-C Charging Cable,1,11.95,08/28/19 17:57,"147 Highland St, Los Angeles, CA 90001" +241326,27in 4K Gaming Monitor,1,389.99,08/12/19 14:23,"968 8th St, Los Angeles, CA 90001" +,,,,, +241327,Google Phone,1,600,08/28/19 16:51,"659 Adams St, San Francisco, CA 94016" +241328,Wired Headphones,1,11.99,08/20/19 07:08,"727 Cherry St, Los Angeles, CA 90001" +241329,AA Batteries (4-pack),1,3.84,08/06/19 21:02,"843 12th St, Los Angeles, CA 90001" +241330,Lightning Charging Cable,1,14.95,08/31/19 16:55,"530 West St, New York City, NY 10001" +241331,AAA Batteries (4-pack),1,2.99,08/11/19 10:34,"955 Washington St, Los Angeles, CA 90001" +241331,34in Ultrawide Monitor,1,379.99,08/11/19 10:34,"955 Washington St, Los Angeles, CA 90001" +241332,27in 4K Gaming Monitor,1,389.99,08/30/19 13:20,"184 9th St, Dallas, TX 75001" +241333,Bose SoundSport Headphones,1,99.99,08/27/19 13:45,"844 Hill St, New York City, NY 10001" +241334,Bose SoundSport Headphones,1,99.99,08/26/19 12:10,"171 Lincoln St, Boston, MA 02215" +241335,Wired Headphones,1,11.99,08/17/19 13:01,"704 Adams St, Los Angeles, CA 90001" +241336,Apple Airpods Headphones,1,150,08/09/19 23:19,"476 Hickory St, New York City, NY 10001" +241336,AA Batteries (4-pack),1,3.84,08/09/19 23:19,"476 Hickory St, New York City, NY 10001" +241337,AAA Batteries (4-pack),4,2.99,08/18/19 12:23,"769 Elm St, Portland, ME 04101" +241338,27in 4K Gaming Monitor,1,389.99,08/30/19 10:14,"559 8th St, Dallas, TX 75001" +241339,ThinkPad Laptop,1,999.99,08/20/19 09:22,"452 Highland St, San Francisco, CA 94016" +241340,AAA Batteries (4-pack),1,2.99,08/12/19 18:16,"352 Meadow St, Dallas, TX 75001" +241341,Flatscreen TV,1,300,08/06/19 09:11,"173 Washington St, San Francisco, CA 94016" +241342,Bose SoundSport Headphones,1,99.99,08/10/19 11:03,"867 Walnut St, Los Angeles, CA 90001" +241343,iPhone,1,700,08/01/19 10:54,"323 6th St, Austin, TX 73301" +241344,USB-C Charging Cable,1,11.95,08/28/19 13:22,"495 Johnson St, San Francisco, CA 94016" +241345,27in 4K Gaming Monitor,1,389.99,08/07/19 09:51,"447 Cherry St, Atlanta, GA 30301" +241346,Flatscreen TV,1,300,08/17/19 10:38,"948 Meadow St, San Francisco, CA 94016" +241347,Bose SoundSport Headphones,1,99.99,08/06/19 11:34,"235 Hickory St, San Francisco, CA 94016" +241348,AAA Batteries (4-pack),1,2.99,08/11/19 10:28,"623 Highland St, New York City, NY 10001" +241349,ThinkPad Laptop,1,999.99,08/02/19 10:59,"440 11th St, San Francisco, CA 94016" +241350,Bose SoundSport Headphones,1,99.99,08/21/19 11:20,"305 Elm St, Dallas, TX 75001" +241351,USB-C Charging Cable,1,11.95,08/14/19 13:41,"684 Elm St, Seattle, WA 98101" +241352,AAA Batteries (4-pack),1,2.99,08/22/19 21:15,"110 Chestnut St, Portland, OR 97035" +241353,iPhone,1,700,08/21/19 07:33,"935 Center St, San Francisco, CA 94016" +241354,27in 4K Gaming Monitor,1,389.99,08/07/19 19:35,"514 South St, Boston, MA 02215" +241355,Bose SoundSport Headphones,1,99.99,08/02/19 20:01,"880 Park St, Atlanta, GA 30301" +241356,Macbook Pro Laptop,1,1700,08/09/19 22:30,"429 Jackson St, Los Angeles, CA 90001" +241357,Bose SoundSport Headphones,1,99.99,08/02/19 15:07,"252 Center St, Dallas, TX 75001" +241358,Apple Airpods Headphones,1,150,08/23/19 18:18,"776 7th St, San Francisco, CA 94016" +241359,Wired Headphones,1,11.99,08/09/19 12:21,"210 Ridge St, New York City, NY 10001" +241360,Wired Headphones,1,11.99,08/30/19 01:04,"879 Cedar St, San Francisco, CA 94016" +241361,AA Batteries (4-pack),1,3.84,08/18/19 17:06,"811 North St, Atlanta, GA 30301" +241362,Wired Headphones,1,11.99,08/19/19 12:37,"585 Sunset St, New York City, NY 10001" +241363,ThinkPad Laptop,1,999.99,08/18/19 13:53,"736 Church St, New York City, NY 10001" +241364,LG Washing Machine,1,600.0,08/14/19 19:30,"359 Lakeview St, Seattle, WA 98101" +241365,Bose SoundSport Headphones,1,99.99,08/08/19 16:18,"837 Lake St, New York City, NY 10001" +241366,Wired Headphones,3,11.99,08/25/19 23:49,"512 Ridge St, San Francisco, CA 94016" +241367,34in Ultrawide Monitor,1,379.99,08/02/19 20:00,"617 2nd St, Seattle, WA 98101" +241368,AA Batteries (4-pack),3,3.84,08/29/19 13:02,"714 Cedar St, Seattle, WA 98101" +241369,27in 4K Gaming Monitor,1,389.99,08/09/19 14:22,"154 Pine St, Boston, MA 02215" +241370,AAA Batteries (4-pack),1,2.99,08/28/19 12:57,"532 Cedar St, San Francisco, CA 94016" +241371,Macbook Pro Laptop,1,1700,08/14/19 10:52,"683 4th St, Dallas, TX 75001" +241372,Apple Airpods Headphones,1,150,08/09/19 20:43,"729 1st St, Seattle, WA 98101" +241373,ThinkPad Laptop,1,999.99,08/25/19 12:44,"946 8th St, Dallas, TX 75001" +241374,Lightning Charging Cable,2,14.95,08/14/19 11:27,"600 11th St, San Francisco, CA 94016" +241375,27in 4K Gaming Monitor,1,389.99,08/18/19 13:15,"238 7th St, Dallas, TX 75001" +241376,USB-C Charging Cable,1,11.95,08/27/19 14:16,"676 Jackson St, Austin, TX 73301" +241377,Flatscreen TV,1,300,08/27/19 11:10,"681 Lakeview St, San Francisco, CA 94016" +241378,Bose SoundSport Headphones,1,99.99,08/06/19 17:48,"817 Park St, Portland, OR 97035" +241379,Bose SoundSport Headphones,1,99.99,08/06/19 21:31,"188 Johnson St, San Francisco, CA 94016" +241380,Lightning Charging Cable,1,14.95,08/05/19 14:45,"205 1st St, Boston, MA 02215" +241381,Flatscreen TV,1,300,08/25/19 17:49,"243 Madison St, Atlanta, GA 30301" +241382,27in FHD Monitor,1,149.99,08/22/19 12:51,"456 Walnut St, Boston, MA 02215" +241383,USB-C Charging Cable,1,11.95,08/06/19 07:44,"638 13th St, San Francisco, CA 94016" +241384,Bose SoundSport Headphones,1,99.99,08/18/19 16:44,"562 Elm St, Los Angeles, CA 90001" +241385,Lightning Charging Cable,1,14.95,08/14/19 09:44,"84 Lake St, New York City, NY 10001" +241386,AAA Batteries (4-pack),2,2.99,08/22/19 22:46,"616 Hickory St, Seattle, WA 98101" +241387,Bose SoundSport Headphones,1,99.99,08/17/19 00:08,"419 Lake St, San Francisco, CA 94016" +241388,AA Batteries (4-pack),1,3.84,08/26/19 18:01,"842 Walnut St, San Francisco, CA 94016" +241389,Apple Airpods Headphones,1,150,08/22/19 12:18,"839 Lake St, Dallas, TX 75001" +241390,Macbook Pro Laptop,1,1700,08/30/19 09:35,"758 Lakeview St, Dallas, TX 75001" +241391,USB-C Charging Cable,1,11.95,08/18/19 16:38,"270 Chestnut St, Los Angeles, CA 90001" +241392,USB-C Charging Cable,1,11.95,08/13/19 07:37,"702 1st St, San Francisco, CA 94016" +241393,20in Monitor,1,109.99,08/26/19 23:34,"465 Willow St, Portland, OR 97035" +241394,USB-C Charging Cable,1,11.95,08/03/19 21:18,"650 14th St, Boston, MA 02215" +241395,ThinkPad Laptop,1,999.99,08/02/19 13:43,"424 Madison St, New York City, NY 10001" +241396,Wired Headphones,1,11.99,08/03/19 23:09,"781 Ridge St, Los Angeles, CA 90001" +241397,Apple Airpods Headphones,1,150,08/14/19 16:29,"411 13th St, Los Angeles, CA 90001" +241398,AA Batteries (4-pack),1,3.84,08/31/19 09:36,"278 7th St, Portland, ME 04101" +241399,Lightning Charging Cable,1,14.95,08/18/19 21:30,"717 Ridge St, Los Angeles, CA 90001" +241400,27in 4K Gaming Monitor,1,389.99,08/02/19 15:27,"595 Church St, Boston, MA 02215" +241401,AAA Batteries (4-pack),1,2.99,08/30/19 11:34,"818 Jefferson St, Boston, MA 02215" +241402,20in Monitor,1,109.99,08/28/19 15:01,"25 River St, San Francisco, CA 94016" +241403,Bose SoundSport Headphones,1,99.99,08/02/19 08:16,"732 6th St, Dallas, TX 75001" +241404,27in FHD Monitor,1,149.99,08/22/19 10:19,"411 Madison St, Portland, OR 97035" +241405,AA Batteries (4-pack),2,3.84,08/20/19 23:21,"311 Jefferson St, Boston, MA 02215" +241406,34in Ultrawide Monitor,1,379.99,08/05/19 12:04,"53 Johnson St, Los Angeles, CA 90001" +241407,USB-C Charging Cable,1,11.95,08/08/19 12:56,"551 Pine St, Dallas, TX 75001" +241408,34in Ultrawide Monitor,1,379.99,08/15/19 16:48,"356 5th St, Atlanta, GA 30301" +241409,USB-C Charging Cable,2,11.95,08/28/19 03:16,"507 6th St, New York City, NY 10001" +241410,Macbook Pro Laptop,1,1700,08/03/19 19:09,"366 Jefferson St, Seattle, WA 98101" +241411,Bose SoundSport Headphones,1,99.99,08/21/19 19:27,"600 Cedar St, San Francisco, CA 94016" +241412,Lightning Charging Cable,1,14.95,08/14/19 08:32,"767 14th St, San Francisco, CA 94016" +241413,iPhone,1,700,08/20/19 11:48,"128 Jackson St, San Francisco, CA 94016" +241414,Wired Headphones,2,11.99,08/04/19 20:28,"239 Chestnut St, Dallas, TX 75001" +241415,Lightning Charging Cable,1,14.95,08/24/19 16:38,"876 Highland St, San Francisco, CA 94016" +241416,27in FHD Monitor,1,149.99,08/26/19 12:43,"602 8th St, Los Angeles, CA 90001" +241417,USB-C Charging Cable,1,11.95,08/20/19 12:29,"635 Dogwood St, Portland, OR 97035" +241418,USB-C Charging Cable,1,11.95,08/31/19 17:44,"738 Pine St, Austin, TX 73301" +241419,Apple Airpods Headphones,1,150,08/03/19 21:55,"924 River St, Los Angeles, CA 90001" +241420,USB-C Charging Cable,1,11.95,08/31/19 21:04,"689 Wilson St, San Francisco, CA 94016" +241421,AAA Batteries (4-pack),2,2.99,08/19/19 01:05,"70 Highland St, San Francisco, CA 94016" +241422,Bose SoundSport Headphones,1,99.99,08/24/19 22:53,"157 5th St, San Francisco, CA 94016" +241423,AA Batteries (4-pack),1,3.84,08/30/19 15:19,"736 12th St, New York City, NY 10001" +241424,Lightning Charging Cable,1,14.95,08/09/19 19:42,"244 14th St, Boston, MA 02215" +241425,Wired Headphones,1,11.99,08/14/19 02:00,"268 8th St, San Francisco, CA 94016" +241426,iPhone,1,700,08/24/19 13:32,"941 Madison St, Dallas, TX 75001" +241427,Apple Airpods Headphones,1,150,08/29/19 13:33,"376 Highland St, San Francisco, CA 94016" +241428,27in FHD Monitor,1,149.99,08/07/19 11:47,"240 10th St, San Francisco, CA 94016" +241429,iPhone,1,700,08/31/19 12:12,"974 12th St, San Francisco, CA 94016" +241430,USB-C Charging Cable,1,11.95,08/22/19 22:52,"477 Walnut St, Los Angeles, CA 90001" +241431,AAA Batteries (4-pack),1,2.99,08/29/19 10:20,"993 Wilson St, San Francisco, CA 94016" +241432,USB-C Charging Cable,1,11.95,08/07/19 11:53,"790 Pine St, Boston, MA 02215" +241433,Bose SoundSport Headphones,1,99.99,08/29/19 17:13,"439 Forest St, Portland, ME 04101" +241434,Lightning Charging Cable,1,14.95,08/25/19 16:26,"935 Johnson St, Austin, TX 73301" +241435,Bose SoundSport Headphones,1,99.99,08/07/19 12:27,"423 Meadow St, Los Angeles, CA 90001" +241436,Google Phone,1,600,08/09/19 21:27,"119 12th St, Atlanta, GA 30301" +241437,Macbook Pro Laptop,1,1700,08/30/19 11:32,"140 West St, Seattle, WA 98101" +241438,AAA Batteries (4-pack),1,2.99,08/13/19 17:04,"921 Dogwood St, Boston, MA 02215" +241439,Wired Headphones,1,11.99,08/08/19 11:04,"673 2nd St, San Francisco, CA 94016" +241440,27in FHD Monitor,1,149.99,08/05/19 13:41,"163 Chestnut St, Los Angeles, CA 90001" +241441,Apple Airpods Headphones,1,150,08/13/19 11:48,"229 8th St, Los Angeles, CA 90001" +241442,Macbook Pro Laptop,1,1700,08/13/19 09:28,"853 9th St, Dallas, TX 75001" +241443,Bose SoundSport Headphones,1,99.99,08/28/19 18:56,"667 Dogwood St, Boston, MA 02215" +241444,Apple Airpods Headphones,1,150,08/05/19 09:42,"534 Hill St, Atlanta, GA 30301" +241445,Wired Headphones,1,11.99,08/14/19 11:25,"639 South St, San Francisco, CA 94016" +241446,Lightning Charging Cable,1,14.95,08/28/19 21:03,"437 Park St, Los Angeles, CA 90001" +241447,Wired Headphones,1,11.99,08/09/19 09:20,"263 Adams St, San Francisco, CA 94016" +241448,Vareebadd Phone,1,400,08/23/19 17:18,"625 Maple St, San Francisco, CA 94016" +241449,Macbook Pro Laptop,1,1700,08/27/19 21:34,"576 Main St, New York City, NY 10001" +241450,USB-C Charging Cable,1,11.95,08/18/19 22:27,"71 Hickory St, Los Angeles, CA 90001" +241451,AA Batteries (4-pack),2,3.84,08/05/19 17:23,"819 6th St, San Francisco, CA 94016" +241452,USB-C Charging Cable,1,11.95,08/26/19 23:38,"723 6th St, San Francisco, CA 94016" +241453,Wired Headphones,1,11.99,08/04/19 12:42,"922 Chestnut St, Atlanta, GA 30301" +241454,Lightning Charging Cable,1,14.95,08/25/19 11:57,"841 Ridge St, Boston, MA 02215" +241455,Flatscreen TV,1,300,08/04/19 20:38,"157 13th St, Austin, TX 73301" +241456,Lightning Charging Cable,1,14.95,08/29/19 17:06,"435 Madison St, Los Angeles, CA 90001" +241457,AA Batteries (4-pack),1,3.84,08/17/19 10:35,"782 River St, San Francisco, CA 94016" +241457,AA Batteries (4-pack),1,3.84,08/17/19 10:35,"782 River St, San Francisco, CA 94016" +241458,USB-C Charging Cable,1,11.95,08/29/19 14:32,"559 Jefferson St, Austin, TX 73301" +241459,27in FHD Monitor,1,149.99,08/02/19 11:52,"202 Maple St, Dallas, TX 75001" +241460,USB-C Charging Cable,1,11.95,08/04/19 21:05,"902 13th St, Seattle, WA 98101" +241461,AAA Batteries (4-pack),3,2.99,08/02/19 18:43,"980 Cedar St, Seattle, WA 98101" +241462,USB-C Charging Cable,1,11.95,08/07/19 20:50,"940 11th St, Atlanta, GA 30301" +241463,USB-C Charging Cable,1,11.95,08/17/19 00:10,"483 Wilson St, Atlanta, GA 30301" +241464,Flatscreen TV,1,300,08/29/19 08:56,"507 2nd St, New York City, NY 10001" +241465,AAA Batteries (4-pack),1,2.99,08/25/19 17:25,"831 1st St, Los Angeles, CA 90001" +241466,34in Ultrawide Monitor,1,379.99,08/11/19 03:04,"604 7th St, Seattle, WA 98101" +241467,Bose SoundSport Headphones,1,99.99,08/10/19 18:50,"717 Maple St, Boston, MA 02215" +241468,Lightning Charging Cable,1,14.95,08/18/19 20:31,"584 North St, Los Angeles, CA 90001" +241469,Bose SoundSport Headphones,1,99.99,08/10/19 23:00,"73 Main St, Los Angeles, CA 90001" +241470,Apple Airpods Headphones,1,150,08/17/19 21:25,"842 11th St, Atlanta, GA 30301" +241471,Lightning Charging Cable,1,14.95,08/15/19 12:17,"396 9th St, New York City, NY 10001" +241472,Lightning Charging Cable,1,14.95,08/10/19 11:33,"831 6th St, Boston, MA 02215" +241472,ThinkPad Laptop,1,999.99,08/10/19 11:33,"831 6th St, Boston, MA 02215" +241473,Macbook Pro Laptop,1,1700,08/22/19 21:55,"539 Maple St, Atlanta, GA 30301" +241474,34in Ultrawide Monitor,1,379.99,08/02/19 10:31,"845 Lincoln St, Boston, MA 02215" +241475,27in FHD Monitor,1,149.99,08/10/19 11:48,"59 6th St, Seattle, WA 98101" +241476,Flatscreen TV,1,300,08/05/19 17:03,"504 1st St, Los Angeles, CA 90001" +241477,Google Phone,1,600,08/31/19 23:11,"90 8th St, Los Angeles, CA 90001" +241478,USB-C Charging Cable,1,11.95,08/31/19 11:01,"440 Meadow St, Seattle, WA 98101" +241479,USB-C Charging Cable,1,11.95,08/09/19 13:47,"958 Chestnut St, San Francisco, CA 94016" +241480,Lightning Charging Cable,1,14.95,08/04/19 17:12,"321 Center St, Los Angeles, CA 90001" +241481,AAA Batteries (4-pack),2,2.99,08/31/19 10:43,"421 1st St, Dallas, TX 75001" +241482,AAA Batteries (4-pack),1,2.99,08/08/19 10:03,"230 Washington St, New York City, NY 10001" +241483,AAA Batteries (4-pack),1,2.99,08/31/19 12:13,"33 Lincoln St, Boston, MA 02215" +241484,USB-C Charging Cable,1,11.95,08/05/19 08:47,"940 Dogwood St, Boston, MA 02215" +241485,27in FHD Monitor,1,149.99,08/10/19 07:45,"521 Hickory St, Los Angeles, CA 90001" +241486,Wired Headphones,1,11.99,08/28/19 13:54,"350 Lakeview St, Boston, MA 02215" +241487,Macbook Pro Laptop,1,1700,08/08/19 14:54,"318 Lakeview St, San Francisco, CA 94016" +241488,27in 4K Gaming Monitor,1,389.99,08/14/19 08:13,"679 12th St, Seattle, WA 98101" +241488,Wired Headphones,1,11.99,08/14/19 08:13,"679 12th St, Seattle, WA 98101" +241489,Apple Airpods Headphones,1,150,08/27/19 18:00,"645 2nd St, Austin, TX 73301" +241490,AAA Batteries (4-pack),1,2.99,08/26/19 13:43,"251 North St, New York City, NY 10001" +241491,AAA Batteries (4-pack),1,2.99,08/26/19 21:30,"942 5th St, New York City, NY 10001" +241492,AAA Batteries (4-pack),1,2.99,08/25/19 13:24,"977 2nd St, San Francisco, CA 94016" +241493,AAA Batteries (4-pack),1,2.99,08/27/19 11:15,"365 5th St, Seattle, WA 98101" +241494,Lightning Charging Cable,1,14.95,08/04/19 08:25,"909 Walnut St, San Francisco, CA 94016" +241495,AAA Batteries (4-pack),1,2.99,08/27/19 19:40,"999 Walnut St, New York City, NY 10001" +241496,Apple Airpods Headphones,1,150,08/02/19 14:47,"164 7th St, Los Angeles, CA 90001" +241497,Bose SoundSport Headphones,1,99.99,08/10/19 18:49,"446 Spruce St, San Francisco, CA 94016" +241497,Bose SoundSport Headphones,1,99.99,08/10/19 18:49,"446 Spruce St, San Francisco, CA 94016" +241498,34in Ultrawide Monitor,1,379.99,08/19/19 15:25,"983 Jefferson St, New York City, NY 10001" +241499,Flatscreen TV,1,300,08/01/19 13:49,"564 Lakeview St, Dallas, TX 75001" +241500,Wired Headphones,1,11.99,08/26/19 14:23,"513 4th St, Boston, MA 02215" +241501,Lightning Charging Cable,1,14.95,08/28/19 18:28,"231 Lincoln St, New York City, NY 10001" +241502,Bose SoundSport Headphones,1,99.99,08/03/19 12:17,"757 Chestnut St, Boston, MA 02215" +241503,Bose SoundSport Headphones,1,99.99,08/11/19 18:28,"85 2nd St, New York City, NY 10001" +241504,iPhone,1,700,08/22/19 11:21,"828 Spruce St, Boston, MA 02215" +241505,USB-C Charging Cable,1,11.95,08/16/19 01:54,"836 9th St, Boston, MA 02215" +241506,27in 4K Gaming Monitor,1,389.99,08/26/19 12:53,"326 Walnut St, San Francisco, CA 94016" +241507,USB-C Charging Cable,1,11.95,08/13/19 13:52,"187 Wilson St, San Francisco, CA 94016" +241508,USB-C Charging Cable,1,11.95,08/10/19 18:10,"94 12th St, San Francisco, CA 94016" +241509,USB-C Charging Cable,2,11.95,08/16/19 11:24,"770 7th St, Dallas, TX 75001" +241510,Apple Airpods Headphones,1,150,08/26/19 18:16,"340 5th St, Portland, OR 97035" +241511,AA Batteries (4-pack),1,3.84,08/12/19 19:21,"843 6th St, San Francisco, CA 94016" +241512,USB-C Charging Cable,1,11.95,08/16/19 20:26,"582 Ridge St, Los Angeles, CA 90001" +241513,Bose SoundSport Headphones,1,99.99,08/28/19 07:53,"64 Johnson St, Boston, MA 02215" +241514,Bose SoundSport Headphones,1,99.99,08/26/19 11:07,"719 Sunset St, San Francisco, CA 94016" +241515,Wired Headphones,1,11.99,08/01/19 20:15,"977 Jackson St, Atlanta, GA 30301" +241515,ThinkPad Laptop,1,999.99,08/01/19 20:15,"977 Jackson St, Atlanta, GA 30301" +241516,USB-C Charging Cable,1,11.95,08/09/19 14:53,"226 Madison St, Los Angeles, CA 90001" +241517,27in 4K Gaming Monitor,1,389.99,08/02/19 20:01,"368 Wilson St, Dallas, TX 75001" +241518,USB-C Charging Cable,1,11.95,08/10/19 11:40,"526 2nd St, Atlanta, GA 30301" +241519,Lightning Charging Cable,1,14.95,08/25/19 20:13,"694 5th St, San Francisco, CA 94016" +241520,27in FHD Monitor,1,149.99,08/04/19 23:31,"758 Lincoln St, Boston, MA 02215" +241521,Lightning Charging Cable,1,14.95,08/29/19 22:23,"88 South St, New York City, NY 10001" +241522,USB-C Charging Cable,1,11.95,08/28/19 16:23,"944 River St, Atlanta, GA 30301" +241523,Apple Airpods Headphones,1,150,08/03/19 13:21,"190 Jefferson St, Dallas, TX 75001" +241524,USB-C Charging Cable,1,11.95,08/27/19 11:15,"791 5th St, Portland, ME 04101" +241525,Vareebadd Phone,1,400,08/15/19 16:22,"150 Spruce St, San Francisco, CA 94016" +241526,USB-C Charging Cable,2,11.95,08/13/19 17:15,"505 Lincoln St, Boston, MA 02215" +241527,Lightning Charging Cable,1,14.95,08/03/19 20:42,"736 Dogwood St, Dallas, TX 75001" +241528,LG Dryer,1,600.0,08/08/19 16:43,"4 Lake St, Boston, MA 02215" +241529,Wired Headphones,1,11.99,08/17/19 22:42,"77 Hickory St, San Francisco, CA 94016" +241530,AA Batteries (4-pack),1,3.84,08/24/19 20:34,"83 Elm St, San Francisco, CA 94016" +241531,Google Phone,1,600,08/26/19 23:33,"638 Dogwood St, Atlanta, GA 30301" +241532,Apple Airpods Headphones,1,150,08/20/19 19:38,"64 13th St, New York City, NY 10001" +241532,ThinkPad Laptop,1,999.99,08/20/19 19:38,"64 13th St, New York City, NY 10001" +241533,20in Monitor,1,109.99,08/29/19 18:44,"967 Main St, New York City, NY 10001" +241534,Wired Headphones,1,11.99,08/24/19 19:54,"221 Elm St, San Francisco, CA 94016" +241535,AA Batteries (4-pack),1,3.84,08/01/19 19:23,"223 Lakeview St, Seattle, WA 98101" +241535,Macbook Pro Laptop,1,1700,08/01/19 19:23,"223 Lakeview St, Seattle, WA 98101" +241536,AAA Batteries (4-pack),1,2.99,08/31/19 17:28,"74 10th St, New York City, NY 10001" +241537,Wired Headphones,1,11.99,08/25/19 16:15,"784 North St, New York City, NY 10001" +241538,Bose SoundSport Headphones,1,99.99,08/26/19 16:34,"584 2nd St, Los Angeles, CA 90001" +241539,Lightning Charging Cable,1,14.95,08/24/19 18:14,"984 Chestnut St, Atlanta, GA 30301" +241540,Wired Headphones,1,11.99,08/22/19 21:50,"592 13th St, San Francisco, CA 94016" +241541,Vareebadd Phone,1,400,08/31/19 16:43,"634 Walnut St, New York City, NY 10001" +241541,Bose SoundSport Headphones,1,99.99,08/31/19 16:43,"634 Walnut St, New York City, NY 10001" +241542,iPhone,1,700,08/10/19 15:41,"663 Pine St, Austin, TX 73301" +241543,Macbook Pro Laptop,1,1700,08/22/19 16:09,"614 North St, New York City, NY 10001" +241544,34in Ultrawide Monitor,1,379.99,08/31/19 16:29,"984 West St, New York City, NY 10001" +241545,AAA Batteries (4-pack),1,2.99,08/26/19 21:36,"252 Jackson St, Los Angeles, CA 90001" +241546,USB-C Charging Cable,2,11.95,08/21/19 13:24,"160 6th St, Los Angeles, CA 90001" +241547,Vareebadd Phone,1,400,08/01/19 19:05,"615 Spruce St, New York City, NY 10001" +241547,USB-C Charging Cable,1,11.95,08/01/19 19:05,"615 Spruce St, New York City, NY 10001" +241548,27in FHD Monitor,1,149.99,08/25/19 15:03,"2 Elm St, Los Angeles, CA 90001" +241549,USB-C Charging Cable,1,11.95,08/17/19 20:41,"252 Chestnut St, Seattle, WA 98101" +241550,iPhone,1,700,08/09/19 15:28,"434 Cedar St, New York City, NY 10001" +241551,USB-C Charging Cable,1,11.95,08/15/19 19:20,"107 South St, San Francisco, CA 94016" +241552,Wired Headphones,1,11.99,08/03/19 15:03,"247 Adams St, New York City, NY 10001" +241553,Apple Airpods Headphones,1,150,08/28/19 10:51,"834 2nd St, San Francisco, CA 94016" +241554,Wired Headphones,2,11.99,08/16/19 22:42,"243 6th St, San Francisco, CA 94016" +241555,Wired Headphones,1,11.99,08/26/19 02:37,"975 4th St, New York City, NY 10001" +241556,USB-C Charging Cable,1,11.95,08/15/19 16:14,"527 Ridge St, Austin, TX 73301" +241557,Bose SoundSport Headphones,1,99.99,08/14/19 00:45,"257 Ridge St, Atlanta, GA 30301" +241558,Wired Headphones,1,11.99,08/22/19 19:23,"975 South St, Seattle, WA 98101" +241559,Google Phone,1,600,08/05/19 22:09,"69 Highland St, Los Angeles, CA 90001" +241560,Macbook Pro Laptop,1,1700,08/29/19 17:23,"793 Main St, San Francisco, CA 94016" +241561,USB-C Charging Cable,1,11.95,08/03/19 13:55,"94 Ridge St, San Francisco, CA 94016" +241562,27in 4K Gaming Monitor,1,389.99,08/31/19 10:52,"355 9th St, New York City, NY 10001" +241563,USB-C Charging Cable,1,11.95,08/21/19 10:31,"778 Main St, Boston, MA 02215" +241564,AAA Batteries (4-pack),2,2.99,08/25/19 22:13,"3 1st St, Seattle, WA 98101" +241565,AAA Batteries (4-pack),1,2.99,08/30/19 13:30,"525 2nd St, San Francisco, CA 94016" +241566,iPhone,1,700,08/15/19 10:11,"380 13th St, Austin, TX 73301" +241567,20in Monitor,1,109.99,08/29/19 17:41,"72 9th St, Atlanta, GA 30301" +241568,27in 4K Gaming Monitor,1,389.99,08/06/19 20:42,"975 Madison St, Austin, TX 73301" +241569,USB-C Charging Cable,1,11.95,08/01/19 12:36,"883 2nd St, Los Angeles, CA 90001" +241570,27in 4K Gaming Monitor,1,389.99,08/23/19 15:30,"693 2nd St, San Francisco, CA 94016" +241571,Apple Airpods Headphones,1,150,08/02/19 07:52,"82 Jefferson St, Seattle, WA 98101" +241572,USB-C Charging Cable,1,11.95,08/01/19 10:46,"601 Elm St, Boston, MA 02215" +241573,AA Batteries (4-pack),1,3.84,08/06/19 18:53,"10 14th St, Los Angeles, CA 90001" +241574,27in FHD Monitor,1,149.99,08/24/19 13:59,"407 South St, New York City, NY 10001" +241575,Bose SoundSport Headphones,1,99.99,08/11/19 12:15,"62 Maple St, Austin, TX 73301" +241576,34in Ultrawide Monitor,1,379.99,08/23/19 21:15,"560 Jefferson St, Austin, TX 73301" +241577,Wired Headphones,1,11.99,08/31/19 07:07,"879 9th St, Los Angeles, CA 90001" +241578,27in 4K Gaming Monitor,1,389.99,08/11/19 11:45,"115 5th St, Dallas, TX 75001" +241579,27in 4K Gaming Monitor,1,389.99,08/09/19 15:05,"40 Meadow St, Seattle, WA 98101" +241580,Macbook Pro Laptop,1,1700,08/10/19 07:23,"53 Meadow St, Atlanta, GA 30301" +241581,AA Batteries (4-pack),1,3.84,08/12/19 14:39,"102 Johnson St, Atlanta, GA 30301" +241582,USB-C Charging Cable,1,11.95,08/15/19 17:03,"995 Center St, Portland, OR 97035" +241583,iPhone,1,700,08/25/19 14:32,"131 8th St, Austin, TX 73301" +241584,Lightning Charging Cable,1,14.95,08/15/19 16:59,"768 Elm St, New York City, NY 10001" +241585,27in 4K Gaming Monitor,1,389.99,08/09/19 13:09,"491 Hill St, San Francisco, CA 94016" +241586,Lightning Charging Cable,1,14.95,08/26/19 19:44,"486 Ridge St, Portland, OR 97035" +241587,Wired Headphones,1,11.99,08/27/19 09:17,"565 6th St, San Francisco, CA 94016" +241588,Lightning Charging Cable,1,14.95,08/10/19 18:29,"946 7th St, New York City, NY 10001" +241589,Lightning Charging Cable,1,14.95,08/23/19 13:15,"576 8th St, Boston, MA 02215" +241590,AAA Batteries (4-pack),1,2.99,08/16/19 19:35,"318 5th St, San Francisco, CA 94016" +241591,iPhone,1,700,08/24/19 17:07,"402 Walnut St, Atlanta, GA 30301" +241592,AA Batteries (4-pack),1,3.84,08/22/19 17:54,"101 Jefferson St, San Francisco, CA 94016" +241593,Wired Headphones,2,11.99,08/24/19 20:39,"326 Main St, Boston, MA 02215" +241594,Apple Airpods Headphones,1,150,08/28/19 04:21,"565 South St, San Francisco, CA 94016" +241595,iPhone,1,700,08/12/19 20:35,"848 7th St, Portland, OR 97035" +241596,AA Batteries (4-pack),2,3.84,08/27/19 16:34,"145 Sunset St, San Francisco, CA 94016" +241597,20in Monitor,1,109.99,08/15/19 20:07,"26 Jefferson St, Dallas, TX 75001" +241598,Flatscreen TV,1,300,08/31/19 22:46,"232 Chestnut St, Dallas, TX 75001" +241599,Lightning Charging Cable,1,14.95,08/17/19 21:11,"719 Hickory St, Dallas, TX 75001" +241600,ThinkPad Laptop,1,999.99,08/02/19 19:27,"885 South St, Seattle, WA 98101" +241601,iPhone,1,700,08/10/19 12:08,"931 Hickory St, Portland, OR 97035" +241601,Apple Airpods Headphones,1,150,08/10/19 12:08,"931 Hickory St, Portland, OR 97035" +241602,AA Batteries (4-pack),1,3.84,08/14/19 14:34,"308 Hickory St, San Francisco, CA 94016" +241603,AAA Batteries (4-pack),1,2.99,08/13/19 22:39,"703 Adams St, Boston, MA 02215" +241604,Apple Airpods Headphones,1,150,08/24/19 12:29,"233 11th St, San Francisco, CA 94016" +241605,Wired Headphones,1,11.99,08/07/19 12:18,"381 River St, Boston, MA 02215" +241606,Wired Headphones,1,11.99,08/04/19 19:45,"705 12th St, Seattle, WA 98101" +241607,AAA Batteries (4-pack),3,2.99,08/12/19 05:55,"504 12th St, Dallas, TX 75001" +241608,Apple Airpods Headphones,1,150,08/15/19 06:24,"736 Elm St, Atlanta, GA 30301" +241609,AA Batteries (4-pack),3,3.84,08/27/19 08:50,"15 Spruce St, Dallas, TX 75001" +241610,AAA Batteries (4-pack),1,2.99,08/16/19 16:18,"278 Chestnut St, Los Angeles, CA 90001" +241611,ThinkPad Laptop,1,999.99,08/18/19 20:37,"989 5th St, Austin, TX 73301" +241612,Wired Headphones,1,11.99,08/04/19 11:53,"782 North St, Boston, MA 02215" +241613,20in Monitor,1,109.99,08/23/19 03:55,"754 Willow St, San Francisco, CA 94016" +241614,20in Monitor,1,109.99,08/02/19 11:22,"734 Chestnut St, New York City, NY 10001" +241615,iPhone,1,700,08/24/19 18:26,"92 Forest St, Austin, TX 73301" +241616,AA Batteries (4-pack),1,3.84,08/16/19 20:18,"507 8th St, New York City, NY 10001" +241617,Wired Headphones,1,11.99,08/08/19 14:55,"63 Pine St, Seattle, WA 98101" +241618,Lightning Charging Cable,1,14.95,08/18/19 17:01,"371 4th St, Boston, MA 02215" +241619,AAA Batteries (4-pack),2,2.99,08/19/19 13:45,"754 Jackson St, Dallas, TX 75001" +241620,Wired Headphones,1,11.99,08/13/19 00:24,"317 Forest St, San Francisco, CA 94016" +241621,Apple Airpods Headphones,1,150,08/05/19 19:27,"532 6th St, Los Angeles, CA 90001" +241622,AAA Batteries (4-pack),2,2.99,08/03/19 23:13,"246 Highland St, San Francisco, CA 94016" +241623,AAA Batteries (4-pack),3,2.99,08/08/19 20:19,"514 2nd St, Dallas, TX 75001" +241624,27in FHD Monitor,1,149.99,08/26/19 14:12,"659 6th St, Seattle, WA 98101" +241625,AAA Batteries (4-pack),2,2.99,08/14/19 19:06,"93 Lakeview St, Boston, MA 02215" +241626,Apple Airpods Headphones,1,150,08/15/19 07:29,"647 Center St, San Francisco, CA 94016" +241627,AAA Batteries (4-pack),1,2.99,08/23/19 18:49,"758 West St, Dallas, TX 75001" +241628,Lightning Charging Cable,1,14.95,08/11/19 19:31,"869 11th St, San Francisco, CA 94016" +241629,AA Batteries (4-pack),1,3.84,08/29/19 08:57,"907 Lincoln St, San Francisco, CA 94016" +241630,USB-C Charging Cable,1,11.95,08/31/19 10:21,"263 Main St, Portland, ME 04101" +241631,27in 4K Gaming Monitor,1,389.99,08/14/19 18:11,"674 11th St, San Francisco, CA 94016" +241632,Lightning Charging Cable,1,14.95,08/25/19 15:21,"770 Elm St, Dallas, TX 75001" +241633,USB-C Charging Cable,1,11.95,08/16/19 10:34,"166 Sunset St, San Francisco, CA 94016" +241634,Bose SoundSport Headphones,1,99.99,08/10/19 17:28,"992 Madison St, San Francisco, CA 94016" +241635,iPhone,1,700,08/03/19 12:28,"73 Ridge St, Atlanta, GA 30301" +241636,AAA Batteries (4-pack),3,2.99,08/12/19 17:41,"268 14th St, Seattle, WA 98101" +241637,AAA Batteries (4-pack),1,2.99,08/04/19 18:08,"474 Center St, Los Angeles, CA 90001" +241638,Flatscreen TV,1,300,08/21/19 22:00,"258 Adams St, San Francisco, CA 94016" +241639,AA Batteries (4-pack),2,3.84,08/19/19 18:33,"13 West St, Boston, MA 02215" +241640,LG Washing Machine,1,600.0,08/25/19 12:40,"538 Sunset St, Los Angeles, CA 90001" +241641,Wired Headphones,2,11.99,08/04/19 10:21,"771 11th St, Los Angeles, CA 90001" +241642,AA Batteries (4-pack),1,3.84,08/17/19 13:24,"441 West St, Los Angeles, CA 90001" +241643,34in Ultrawide Monitor,1,379.99,08/25/19 13:28,"124 Lake St, San Francisco, CA 94016" +241644,Wired Headphones,1,11.99,08/01/19 10:47,"627 Walnut St, San Francisco, CA 94016" +241645,AAA Batteries (4-pack),2,2.99,08/22/19 23:37,"363 12th St, Austin, TX 73301" +241646,AAA Batteries (4-pack),1,2.99,08/20/19 21:02,"634 West St, Portland, OR 97035" +241647,Macbook Pro Laptop,1,1700,08/15/19 10:30,"295 Highland St, San Francisco, CA 94016" +241648,27in FHD Monitor,1,149.99,08/11/19 14:05,"140 Ridge St, San Francisco, CA 94016" +241649,Apple Airpods Headphones,1,150,08/28/19 15:04,"655 Hickory St, San Francisco, CA 94016" +241650,iPhone,1,700,08/24/19 00:56,"445 Hickory St, San Francisco, CA 94016" +241651,Google Phone,1,600,08/19/19 02:35,"486 Dogwood St, Atlanta, GA 30301" +241652,27in FHD Monitor,1,149.99,08/22/19 10:16,"275 Dogwood St, Los Angeles, CA 90001" +241653,20in Monitor,1,109.99,08/09/19 21:06,"99 13th St, Los Angeles, CA 90001" +241654,Lightning Charging Cable,1,14.95,08/07/19 10:14,"971 2nd St, San Francisco, CA 94016" +241655,USB-C Charging Cable,1,11.95,08/20/19 20:12,"880 Elm St, San Francisco, CA 94016" +241656,AAA Batteries (4-pack),1,2.99,08/09/19 02:20,"558 5th St, Los Angeles, CA 90001" +241657,AA Batteries (4-pack),3,3.84,08/27/19 20:23,"526 Washington St, Seattle, WA 98101" +241658,Lightning Charging Cable,1,14.95,08/13/19 05:42,"415 Church St, New York City, NY 10001" +241659,20in Monitor,1,109.99,08/05/19 17:56,"25 Lincoln St, San Francisco, CA 94016" +241660,Bose SoundSport Headphones,1,99.99,08/01/19 17:49,"475 Cherry St, New York City, NY 10001" +241661,USB-C Charging Cable,1,11.95,08/11/19 18:37,"44 13th St, Seattle, WA 98101" +241662,Bose SoundSport Headphones,1,99.99,08/05/19 22:24,"666 Highland St, New York City, NY 10001" +241663,Lightning Charging Cable,1,14.95,08/19/19 11:12,"981 Sunset St, Los Angeles, CA 90001" +241664,ThinkPad Laptop,1,999.99,08/11/19 13:49,"727 Forest St, Dallas, TX 75001" +241665,USB-C Charging Cable,1,11.95,08/21/19 20:00,"905 Walnut St, San Francisco, CA 94016" +241665,Bose SoundSport Headphones,1,99.99,08/21/19 20:00,"905 Walnut St, San Francisco, CA 94016" +241666,Lightning Charging Cable,1,14.95,08/23/19 19:40,"946 11th St, San Francisco, CA 94016" +241667,20in Monitor,1,109.99,08/07/19 19:48,"171 5th St, San Francisco, CA 94016" +241668,Wired Headphones,1,11.99,08/11/19 18:48,"79 6th St, San Francisco, CA 94016" +241669,Apple Airpods Headphones,1,150,08/02/19 23:51,"333 Jefferson St, Austin, TX 73301" +241670,34in Ultrawide Monitor,1,379.99,08/25/19 17:33,"529 Hickory St, Los Angeles, CA 90001" +241671,34in Ultrawide Monitor,1,379.99,08/10/19 10:57,"269 Adams St, Los Angeles, CA 90001" +241672,Google Phone,1,600,08/05/19 11:52,"360 Hill St, Atlanta, GA 30301" +241673,Wired Headphones,1,11.99,08/11/19 07:30,"955 Meadow St, Los Angeles, CA 90001" +241674,Bose SoundSport Headphones,1,99.99,08/31/19 16:12,"271 South St, San Francisco, CA 94016" +241675,Flatscreen TV,1,300,08/02/19 18:06,"347 Ridge St, New York City, NY 10001" +241676,AA Batteries (4-pack),1,3.84,08/01/19 13:28,"619 2nd St, Los Angeles, CA 90001" +241677,ThinkPad Laptop,1,999.99,08/16/19 11:38,"444 Pine St, Austin, TX 73301" +241678,Flatscreen TV,1,300,08/18/19 19:52,"326 5th St, Atlanta, GA 30301" +241679,Apple Airpods Headphones,1,150,08/04/19 13:48,"390 Chestnut St, Austin, TX 73301" +241680,Lightning Charging Cable,1,14.95,08/12/19 14:55,"306 12th St, New York City, NY 10001" +241681,AA Batteries (4-pack),2,3.84,08/24/19 08:51,"772 River St, Dallas, TX 75001" +241682,27in 4K Gaming Monitor,1,389.99,08/03/19 14:38,"517 Jackson St, San Francisco, CA 94016" +241683,Bose SoundSport Headphones,1,99.99,08/26/19 14:13,"297 Forest St, Seattle, WA 98101" +241684,Lightning Charging Cable,1,14.95,08/29/19 10:03,"714 8th St, Atlanta, GA 30301" +241685,USB-C Charging Cable,1,11.95,08/24/19 20:55,"150 Lake St, Los Angeles, CA 90001" +241686,Wired Headphones,1,11.99,08/23/19 17:04,"777 North St, Seattle, WA 98101" +241687,iPhone,1,700,08/10/19 15:15,"696 Cedar St, Atlanta, GA 30301" +241688,Bose SoundSport Headphones,1,99.99,08/01/19 15:09,"220 9th St, Portland, OR 97035" +241689,Lightning Charging Cable,1,14.95,08/16/19 21:49,"482 Spruce St, San Francisco, CA 94016" +241689,AA Batteries (4-pack),1,3.84,08/16/19 21:49,"482 Spruce St, San Francisco, CA 94016" +241690,USB-C Charging Cable,1,11.95,08/27/19 18:42,"826 1st St, San Francisco, CA 94016" +241691,Macbook Pro Laptop,1,1700,08/05/19 19:01,"809 North St, Seattle, WA 98101" +241692,USB-C Charging Cable,1,11.95,08/07/19 18:33,"284 7th St, Portland, OR 97035" +241693,27in FHD Monitor,1,149.99,08/31/19 21:14,"281 Adams St, Atlanta, GA 30301" +241694,AA Batteries (4-pack),4,3.84,08/14/19 09:30,"173 Pine St, Atlanta, GA 30301" +241695,Flatscreen TV,1,300,08/29/19 04:52,"422 Forest St, Seattle, WA 98101" +241696,Wired Headphones,1,11.99,08/05/19 11:31,"4 Maple St, Boston, MA 02215" +241697,Macbook Pro Laptop,1,1700,08/16/19 14:40,"470 2nd St, Portland, OR 97035" +241698,AA Batteries (4-pack),1,3.84,08/14/19 15:41,"555 Dogwood St, Los Angeles, CA 90001" +241699,Google Phone,1,600,08/07/19 10:51,"778 Willow St, Portland, ME 04101" +241700,20in Monitor,1,109.99,08/02/19 09:20,"246 10th St, San Francisco, CA 94016" +241701,Macbook Pro Laptop,1,1700,08/24/19 11:34,"211 Jefferson St, New York City, NY 10001" +241702,iPhone,1,700,08/30/19 19:43,"72 Hickory St, San Francisco, CA 94016" +241703,27in 4K Gaming Monitor,1,389.99,08/28/19 18:18,"493 Lincoln St, San Francisco, CA 94016" +241704,Apple Airpods Headphones,1,150,08/31/19 10:59,"135 Spruce St, Dallas, TX 75001" +241705,AAA Batteries (4-pack),1,2.99,08/18/19 22:02,"123 Lakeview St, New York City, NY 10001" +241706,USB-C Charging Cable,1,11.95,08/10/19 20:02,"171 Cherry St, San Francisco, CA 94016" +241707,AAA Batteries (4-pack),1,2.99,08/29/19 15:16,"682 Walnut St, Austin, TX 73301" +241708,AAA Batteries (4-pack),1,2.99,08/08/19 17:15,"777 Forest St, Austin, TX 73301" +241709,AAA Batteries (4-pack),4,2.99,08/03/19 12:10,"484 1st St, San Francisco, CA 94016" +241710,Vareebadd Phone,1,400,08/14/19 09:56,"735 West St, San Francisco, CA 94016" +241711,USB-C Charging Cable,1,11.95,08/21/19 21:46,"236 West St, Austin, TX 73301" +241712,ThinkPad Laptop,1,999.99,08/13/19 11:32,"37 Cherry St, Los Angeles, CA 90001" +241713,USB-C Charging Cable,1,11.95,08/18/19 18:18,"395 Washington St, Boston, MA 02215" +241714,AA Batteries (4-pack),1,3.84,08/30/19 18:41,"245 Main St, Austin, TX 73301" +241714,Lightning Charging Cable,1,14.95,08/30/19 18:41,"245 Main St, Austin, TX 73301" +241715,Wired Headphones,1,11.99,08/03/19 12:24,"295 12th St, San Francisco, CA 94016" +241716,Bose SoundSport Headphones,1,99.99,08/06/19 17:52,"951 5th St, New York City, NY 10001" +241717,Wired Headphones,1,11.99,08/31/19 20:49,"763 Wilson St, Dallas, TX 75001" +241718,Lightning Charging Cable,1,14.95,08/09/19 21:51,"823 4th St, San Francisco, CA 94016" +241719,AA Batteries (4-pack),1,3.84,08/15/19 08:45,"119 Highland St, Austin, TX 73301" +241720,Lightning Charging Cable,1,14.95,08/15/19 17:43,"837 Johnson St, Los Angeles, CA 90001" +241721,Macbook Pro Laptop,1,1700,08/30/19 19:04,"398 13th St, Los Angeles, CA 90001" +241722,Wired Headphones,1,11.99,08/10/19 16:03,"239 Dogwood St, Boston, MA 02215" +241723,Wired Headphones,1,11.99,08/18/19 18:03,"675 Hickory St, New York City, NY 10001" +241724,Wired Headphones,1,11.99,08/06/19 13:37,"141 Jackson St, Seattle, WA 98101" +241725,Lightning Charging Cable,1,14.95,08/15/19 15:35,"657 Johnson St, New York City, NY 10001" +241726,27in FHD Monitor,1,149.99,08/13/19 21:24,"771 7th St, New York City, NY 10001" +241727,Apple Airpods Headphones,1,150,08/18/19 20:44,"287 Elm St, San Francisco, CA 94016" +241728,20in Monitor,1,109.99,08/19/19 20:50,"913 14th St, Los Angeles, CA 90001" +241729,AAA Batteries (4-pack),2,2.99,08/22/19 20:35,"934 Hill St, Seattle, WA 98101" +241730,27in FHD Monitor,1,149.99,08/16/19 17:42,"732 5th St, San Francisco, CA 94016" +241731,AAA Batteries (4-pack),1,2.99,08/09/19 01:52,"435 6th St, San Francisco, CA 94016" +241732,Apple Airpods Headphones,1,150,08/12/19 13:46,"933 7th St, Los Angeles, CA 90001" +241733,AAA Batteries (4-pack),1,2.99,08/10/19 15:07,"198 Willow St, San Francisco, CA 94016" +241733,AA Batteries (4-pack),2,3.84,08/10/19 15:07,"198 Willow St, San Francisco, CA 94016" +241734,Apple Airpods Headphones,1,150,08/09/19 22:35,"998 South St, Austin, TX 73301" +241735,AAA Batteries (4-pack),1,2.99,08/10/19 13:12,"253 Dogwood St, Atlanta, GA 30301" +241736,Wired Headphones,1,11.99,08/31/19 22:38,"329 Johnson St, Los Angeles, CA 90001" +241737,iPhone,1,700,08/19/19 20:38,"846 Main St, Austin, TX 73301" +241738,Wired Headphones,1,11.99,08/03/19 14:14,"739 Washington St, Portland, OR 97035" +241739,Google Phone,1,600,08/09/19 22:58,"12 9th St, Portland, OR 97035" +241740,Apple Airpods Headphones,1,150,08/29/19 02:29,"240 Pine St, Boston, MA 02215" +241741,Google Phone,1,600,08/13/19 15:13,"44 8th St, Dallas, TX 75001" +241742,Bose SoundSport Headphones,1,99.99,08/12/19 17:47,"536 7th St, Boston, MA 02215" +241743,AA Batteries (4-pack),1,3.84,08/13/19 06:36,"469 4th St, Dallas, TX 75001" +241744,Lightning Charging Cable,1,14.95,08/17/19 09:57,"326 Forest St, San Francisco, CA 94016" +241745,Vareebadd Phone,1,400,08/02/19 19:11,"888 Madison St, San Francisco, CA 94016" +241745,USB-C Charging Cable,1,11.95,08/02/19 19:11,"888 Madison St, San Francisco, CA 94016" +241746,Lightning Charging Cable,1,14.95,08/23/19 07:39,"536 Pine St, San Francisco, CA 94016" +241747,AA Batteries (4-pack),1,3.84,08/19/19 16:27,"854 10th St, New York City, NY 10001" +241748,USB-C Charging Cable,1,11.95,08/23/19 06:24,"213 Adams St, San Francisco, CA 94016" +241749,USB-C Charging Cable,1,11.95,08/14/19 11:51,"118 Elm St, Austin, TX 73301" +241750,Lightning Charging Cable,1,14.95,08/01/19 19:48,"101 Wilson St, New York City, NY 10001" +241751,USB-C Charging Cable,1,11.95,08/04/19 23:22,"972 11th St, San Francisco, CA 94016" +241752,27in FHD Monitor,1,149.99,08/18/19 17:46,"174 Washington St, Los Angeles, CA 90001" +241753,Wired Headphones,1,11.99,08/17/19 12:11,"724 Pine St, Los Angeles, CA 90001" +241754,Lightning Charging Cable,1,14.95,08/22/19 01:04,"164 River St, Austin, TX 73301" +241755,27in 4K Gaming Monitor,1,389.99,08/18/19 13:33,"799 Jackson St, San Francisco, CA 94016" +241756,Apple Airpods Headphones,1,150,08/18/19 06:37,"29 Hickory St, San Francisco, CA 94016" +241757,USB-C Charging Cable,1,11.95,08/28/19 16:28,"618 Church St, Dallas, TX 75001" +241758,AA Batteries (4-pack),1,3.84,08/22/19 17:32,"202 2nd St, San Francisco, CA 94016" +241759,Lightning Charging Cable,1,14.95,08/27/19 19:48,"147 Lake St, San Francisco, CA 94016" +241760,Apple Airpods Headphones,1,150,08/22/19 18:01,"570 Spruce St, Seattle, WA 98101" +241761,Vareebadd Phone,1,400,08/07/19 11:59,"500 Ridge St, Seattle, WA 98101" +241762,Wired Headphones,1,11.99,08/02/19 21:13,"583 6th St, Los Angeles, CA 90001" +241763,Wired Headphones,1,11.99,08/16/19 12:01,"171 5th St, New York City, NY 10001" +241764,ThinkPad Laptop,1,999.99,08/25/19 09:56,"693 Main St, Los Angeles, CA 90001" +241765,AA Batteries (4-pack),2,3.84,08/06/19 22:50,"985 Church St, Atlanta, GA 30301" +241766,iPhone,1,700,08/14/19 18:03,"778 Pine St, San Francisco, CA 94016" +241766,Lightning Charging Cable,1,14.95,08/14/19 18:03,"778 Pine St, San Francisco, CA 94016" +241767,Apple Airpods Headphones,1,150,08/19/19 15:54,"857 Madison St, Austin, TX 73301" +241768,Bose SoundSport Headphones,1,99.99,08/10/19 22:35,"311 West St, Seattle, WA 98101" +241769,AA Batteries (4-pack),1,3.84,08/06/19 19:58,"445 2nd St, Los Angeles, CA 90001" +241770,USB-C Charging Cable,1,11.95,08/13/19 18:14,"345 Forest St, Seattle, WA 98101" +241771,Lightning Charging Cable,1,14.95,08/08/19 15:38,"760 11th St, San Francisco, CA 94016" +241772,27in FHD Monitor,1,149.99,08/30/19 17:31,"300 Maple St, Boston, MA 02215" +241773,Lightning Charging Cable,1,14.95,08/18/19 14:50,"9 Maple St, New York City, NY 10001" +241773,Vareebadd Phone,1,400,08/18/19 14:50,"9 Maple St, New York City, NY 10001" +241774,34in Ultrawide Monitor,1,379.99,08/15/19 17:19,"585 Hill St, Los Angeles, CA 90001" +241775,Flatscreen TV,1,300,08/11/19 20:21,"269 West St, Austin, TX 73301" +241776,Lightning Charging Cable,1,14.95,08/12/19 11:35,"962 Cedar St, Dallas, TX 75001" +241777,USB-C Charging Cable,1,11.95,08/13/19 06:12,"310 12th St, Atlanta, GA 30301" +241778,27in 4K Gaming Monitor,1,389.99,08/01/19 20:33,"823 Cherry St, New York City, NY 10001" +241779,AA Batteries (4-pack),1,3.84,08/06/19 13:14,"264 Ridge St, Boston, MA 02215" +241780,AAA Batteries (4-pack),2,2.99,08/09/19 12:00,"553 Ridge St, Dallas, TX 75001" +241781,Lightning Charging Cable,1,14.95,08/23/19 10:38,"182 Meadow St, New York City, NY 10001" +241782,34in Ultrawide Monitor,1,379.99,08/17/19 11:17,"11 North St, San Francisco, CA 94016" +241783,Bose SoundSport Headphones,1,99.99,08/28/19 13:04,"907 Main St, Dallas, TX 75001" +241784,AAA Batteries (4-pack),1,2.99,08/19/19 14:10,"658 River St, New York City, NY 10001" +241785,USB-C Charging Cable,1,11.95,08/06/19 18:56,"461 8th St, New York City, NY 10001" +241786,27in 4K Gaming Monitor,1,389.99,08/05/19 13:44,"189 Pine St, Los Angeles, CA 90001" +241787,27in 4K Gaming Monitor,1,389.99,08/15/19 14:29,"588 14th St, Boston, MA 02215" +241788,USB-C Charging Cable,1,11.95,08/19/19 18:52,"192 Chestnut St, Portland, OR 97035" +241789,Bose SoundSport Headphones,1,99.99,08/18/19 08:15,"721 7th St, New York City, NY 10001" +241790,AAA Batteries (4-pack),2,2.99,08/04/19 12:25,"31 9th St, Austin, TX 73301" +241791,AAA Batteries (4-pack),2,2.99,08/06/19 01:12,"525 6th St, Los Angeles, CA 90001" +241792,AAA Batteries (4-pack),1,2.99,08/04/19 03:42,"46 Main St, Dallas, TX 75001" +241793,AAA Batteries (4-pack),3,2.99,08/18/19 19:31,"547 7th St, Dallas, TX 75001" +241794,iPhone,1,700,08/31/19 09:40,"740 Willow St, New York City, NY 10001" +241795,Wired Headphones,1,11.99,08/25/19 18:16,"928 2nd St, Dallas, TX 75001" +241796,AAA Batteries (4-pack),1,2.99,08/16/19 09:47,"903 Highland St, Los Angeles, CA 90001" +241797,USB-C Charging Cable,1,11.95,08/04/19 08:26,"159 10th St, Boston, MA 02215" +241798,AAA Batteries (4-pack),1,2.99,08/15/19 07:34,"139 Forest St, Boston, MA 02215" +241799,Bose SoundSport Headphones,1,99.99,08/12/19 00:12,"407 Lake St, Atlanta, GA 30301" +241800,Bose SoundSport Headphones,1,99.99,08/03/19 22:55,"387 Johnson St, San Francisco, CA 94016" +241801,AAA Batteries (4-pack),1,2.99,08/10/19 10:43,"696 River St, San Francisco, CA 94016" +241802,20in Monitor,1,109.99,08/05/19 09:37,"84 5th St, New York City, NY 10001" +241803,Vareebadd Phone,1,400,08/23/19 14:46,"143 4th St, San Francisco, CA 94016" +241803,USB-C Charging Cable,1,11.95,08/23/19 14:46,"143 4th St, San Francisco, CA 94016" +241803,Wired Headphones,1,11.99,08/23/19 14:46,"143 4th St, San Francisco, CA 94016" +241804,Wired Headphones,1,11.99,08/21/19 21:06,"577 Lake St, San Francisco, CA 94016" +241805,AA Batteries (4-pack),2,3.84,08/14/19 13:50,"711 4th St, Austin, TX 73301" +241806,Lightning Charging Cable,1,14.95,08/09/19 19:43,"252 14th St, Austin, TX 73301" +241807,Wired Headphones,1,11.99,08/20/19 11:30,"26 North St, Los Angeles, CA 90001" +241808,AAA Batteries (4-pack),1,2.99,08/05/19 15:45,"779 4th St, New York City, NY 10001" +241809,Wired Headphones,1,11.99,08/06/19 12:58,"555 Pine St, Atlanta, GA 30301" +241810,Lightning Charging Cable,1,14.95,08/17/19 18:51,"580 West St, Seattle, WA 98101" +241811,Lightning Charging Cable,1,14.95,08/03/19 21:35,"464 Maple St, San Francisco, CA 94016" +241812,Apple Airpods Headphones,1,150,08/20/19 20:44,"402 Chestnut St, Atlanta, GA 30301" +241812,Wired Headphones,1,11.99,08/20/19 20:44,"402 Chestnut St, Atlanta, GA 30301" +241813,27in 4K Gaming Monitor,1,389.99,08/25/19 20:21,"225 Lakeview St, San Francisco, CA 94016" +241814,AA Batteries (4-pack),1,3.84,08/25/19 09:34,"871 14th St, Seattle, WA 98101" +241815,USB-C Charging Cable,1,11.95,08/20/19 12:51,"856 Meadow St, Seattle, WA 98101" +241816,Lightning Charging Cable,1,14.95,08/25/19 13:45,"247 West St, Boston, MA 02215" +241817,Wired Headphones,2,11.99,08/09/19 23:11,"667 10th St, San Francisco, CA 94016" +241818,AA Batteries (4-pack),1,3.84,08/31/19 16:50,"203 Chestnut St, Austin, TX 73301" +241819,LG Dryer,1,600.0,08/08/19 11:21,"816 Johnson St, San Francisco, CA 94016" +241820,AA Batteries (4-pack),1,3.84,08/14/19 10:44,"107 West St, San Francisco, CA 94016" +241821,iPhone,1,700,08/27/19 22:31,"20 Lincoln St, Boston, MA 02215" +241821,Lightning Charging Cable,1,14.95,08/27/19 22:31,"20 Lincoln St, Boston, MA 02215" +241822,Wired Headphones,1,11.99,08/12/19 22:00,"601 Meadow St, Atlanta, GA 30301" +241823,27in 4K Gaming Monitor,1,389.99,08/08/19 18:48,"153 North St, Los Angeles, CA 90001" +241824,AA Batteries (4-pack),1,3.84,08/27/19 16:34,"535 Hickory St, Austin, TX 73301" +241825,27in 4K Gaming Monitor,1,389.99,08/05/19 10:50,"339 14th St, San Francisco, CA 94016" +241826,USB-C Charging Cable,1,11.95,08/26/19 20:50,"486 Elm St, Los Angeles, CA 90001" +241827,AAA Batteries (4-pack),1,2.99,08/13/19 14:06,"659 13th St, Boston, MA 02215" +241828,20in Monitor,1,109.99,08/22/19 17:42,"962 12th St, San Francisco, CA 94016" +241829,AA Batteries (4-pack),1,3.84,08/28/19 10:55,"797 8th St, San Francisco, CA 94016" +241830,Wired Headphones,1,11.99,08/25/19 18:07,"935 Meadow St, Boston, MA 02215" +241831,AA Batteries (4-pack),1,3.84,08/05/19 00:26,"82 Sunset St, Dallas, TX 75001" +241832,AA Batteries (4-pack),1,3.84,08/31/19 10:33,"645 Elm St, San Francisco, CA 94016" +241833,AA Batteries (4-pack),1,3.84,08/31/19 21:23,"552 Sunset St, San Francisco, CA 94016" +241834,Google Phone,1,600,08/13/19 13:17,"158 Meadow St, Austin, TX 73301" +241834,Wired Headphones,1,11.99,08/13/19 13:17,"158 Meadow St, Austin, TX 73301" +241835,Bose SoundSport Headphones,1,99.99,08/04/19 20:20,"731 11th St, New York City, NY 10001" +241836,Google Phone,1,600,08/18/19 22:37,"720 Forest St, San Francisco, CA 94016" +241837,AAA Batteries (4-pack),3,2.99,08/20/19 07:56,"796 6th St, Boston, MA 02215" +241838,Apple Airpods Headphones,1,150,08/08/19 13:22,"524 Willow St, Boston, MA 02215" +241839,Bose SoundSport Headphones,1,99.99,08/11/19 09:21,"388 7th St, New York City, NY 10001" +241840,Apple Airpods Headphones,1,150,08/18/19 18:22,"64 Hickory St, Atlanta, GA 30301" +241841,AA Batteries (4-pack),1,3.84,08/26/19 14:43,"500 Jefferson St, San Francisco, CA 94016" +241842,27in FHD Monitor,1,149.99,08/21/19 20:47,"460 12th St, San Francisco, CA 94016" +241843,ThinkPad Laptop,1,999.99,08/03/19 18:57,"144 Lakeview St, Los Angeles, CA 90001" +241844,Wired Headphones,1,11.99,08/06/19 08:50,"945 Dogwood St, San Francisco, CA 94016" +241845,USB-C Charging Cable,1,11.95,08/12/19 19:18,"242 West St, Portland, OR 97035" +241846,USB-C Charging Cable,1,11.95,08/21/19 00:18,"971 Chestnut St, San Francisco, CA 94016" +241847,Lightning Charging Cable,1,14.95,08/11/19 11:26,"29 Jackson St, Los Angeles, CA 90001" +,,,,, +241848,Apple Airpods Headphones,1,150,08/06/19 19:43,"695 West St, Dallas, TX 75001" +241849,Apple Airpods Headphones,1,150,08/14/19 15:41,"429 Jackson St, Austin, TX 73301" +241850,Apple Airpods Headphones,1,150,08/10/19 11:02,"341 Hill St, San Francisco, CA 94016" +241851,AAA Batteries (4-pack),1,2.99,08/07/19 20:48,"973 Willow St, Boston, MA 02215" +241852,AAA Batteries (4-pack),1,2.99,08/24/19 15:06,"528 Hickory St, Dallas, TX 75001" +241853,20in Monitor,1,109.99,08/10/19 16:28,"196 Spruce St, Dallas, TX 75001" +241854,27in FHD Monitor,1,149.99,08/18/19 13:18,"456 Center St, Austin, TX 73301" +241855,27in 4K Gaming Monitor,1,389.99,08/31/19 19:11,"462 Church St, New York City, NY 10001" +241856,Lightning Charging Cable,1,14.95,08/14/19 00:09,"948 River St, Boston, MA 02215" +241857,iPhone,1,700,08/03/19 19:29,"168 River St, San Francisco, CA 94016" +241858,USB-C Charging Cable,1,11.95,08/13/19 12:01,"933 Sunset St, Portland, OR 97035" +241859,Apple Airpods Headphones,1,150,08/04/19 19:52,"981 11th St, Atlanta, GA 30301" +241860,AA Batteries (4-pack),1,3.84,08/24/19 01:14,"410 Willow St, San Francisco, CA 94016" +241861,Macbook Pro Laptop,1,1700,08/07/19 15:33,"793 Pine St, San Francisco, CA 94016" +241862,Lightning Charging Cable,1,14.95,08/16/19 11:08,"119 Highland St, Austin, TX 73301" +241863,Apple Airpods Headphones,1,150,08/25/19 20:32,"300 Hickory St, Seattle, WA 98101" +241864,27in 4K Gaming Monitor,1,389.99,08/18/19 19:53,"994 5th St, Seattle, WA 98101" +241865,Macbook Pro Laptop,1,1700,08/25/19 13:01,"307 Lakeview St, Boston, MA 02215" +241866,AA Batteries (4-pack),1,3.84,08/04/19 09:27,"78 Dogwood St, Boston, MA 02215" +241867,Macbook Pro Laptop,1,1700,08/30/19 12:14,"768 Maple St, Dallas, TX 75001" +241868,AA Batteries (4-pack),1,3.84,08/10/19 17:47,"775 14th St, Los Angeles, CA 90001" +241869,20in Monitor,1,109.99,08/06/19 19:05,"674 Spruce St, New York City, NY 10001" +241870,27in 4K Gaming Monitor,1,389.99,08/02/19 20:15,"376 Maple St, San Francisco, CA 94016" +241871,Lightning Charging Cable,1,14.95,08/15/19 20:47,"40 4th St, Dallas, TX 75001" +241872,Lightning Charging Cable,1,14.95,08/31/19 15:00,"565 Highland St, Dallas, TX 75001" +241873,Wired Headphones,1,11.99,08/03/19 23:05,"227 Jackson St, Boston, MA 02215" +241874,Google Phone,1,600,08/12/19 16:48,"653 Hickory St, Atlanta, GA 30301" +241874,Bose SoundSport Headphones,1,99.99,08/12/19 16:48,"653 Hickory St, Atlanta, GA 30301" +241875,AA Batteries (4-pack),1,3.84,08/10/19 06:17,"452 Washington St, New York City, NY 10001" +241876,Bose SoundSport Headphones,1,99.99,08/18/19 18:46,"537 South St, New York City, NY 10001" +241877,AAA Batteries (4-pack),2,2.99,08/05/19 06:43,"314 Ridge St, Dallas, TX 75001" +241878,Bose SoundSport Headphones,1,99.99,08/30/19 21:17,"343 Lake St, Atlanta, GA 30301" +241879,AAA Batteries (4-pack),1,2.99,08/01/19 21:21,"64 Dogwood St, San Francisco, CA 94016" +241880,AAA Batteries (4-pack),3,2.99,08/28/19 16:58,"122 Willow St, Portland, OR 97035" +241881,ThinkPad Laptop,1,999.99,08/22/19 16:46,"375 Adams St, New York City, NY 10001" +241882,27in 4K Gaming Monitor,1,389.99,08/18/19 12:26,"544 Main St, San Francisco, CA 94016" +241883,34in Ultrawide Monitor,1,379.99,08/16/19 17:11,"682 Dogwood St, Atlanta, GA 30301" +241884,iPhone,1,700,08/11/19 08:29,"624 Adams St, San Francisco, CA 94016" +241885,Wired Headphones,1,11.99,08/20/19 23:34,"607 River St, Dallas, TX 75001" +241885,Lightning Charging Cable,1,14.95,08/20/19 23:34,"607 River St, Dallas, TX 75001" +241886,AA Batteries (4-pack),1,3.84,08/04/19 19:21,"613 River St, San Francisco, CA 94016" +241887,Lightning Charging Cable,2,14.95,08/08/19 14:41,"274 5th St, Seattle, WA 98101" +241888,27in FHD Monitor,1,149.99,08/01/19 13:15,"987 North St, San Francisco, CA 94016" +241889,Apple Airpods Headphones,1,150,08/22/19 17:09,"537 Center St, New York City, NY 10001" +241890,USB-C Charging Cable,1,11.95,08/27/19 20:49,"939 1st St, Boston, MA 02215" +241891,27in 4K Gaming Monitor,1,389.99,08/02/19 10:39,"655 10th St, San Francisco, CA 94016" +241892,USB-C Charging Cable,1,11.95,08/04/19 10:53,"813 West St, Atlanta, GA 30301" +241893,Bose SoundSport Headphones,1,99.99,08/26/19 22:35,"919 1st St, San Francisco, CA 94016" +241894,20in Monitor,1,109.99,08/14/19 18:42,"592 Walnut St, San Francisco, CA 94016" +241895,AAA Batteries (4-pack),2,2.99,08/01/19 11:43,"347 Maple St, New York City, NY 10001" +241896,20in Monitor,1,109.99,08/08/19 11:16,"691 7th St, Los Angeles, CA 90001" +241897,AAA Batteries (4-pack),1,2.99,08/19/19 21:35,"670 10th St, Portland, OR 97035" +241898,Apple Airpods Headphones,1,150,08/26/19 11:43,"579 12th St, Boston, MA 02215" +241899,Lightning Charging Cable,1,14.95,08/29/19 19:48,"180 Maple St, Atlanta, GA 30301" +241900,USB-C Charging Cable,1,11.95,08/08/19 10:35,"323 Dogwood St, Dallas, TX 75001" +241901,Wired Headphones,1,11.99,08/02/19 19:21,"620 Adams St, San Francisco, CA 94016" +241902,ThinkPad Laptop,1,999.99,08/28/19 19:21,"819 North St, Austin, TX 73301" +241903,USB-C Charging Cable,1,11.95,08/24/19 16:32,"866 Hickory St, San Francisco, CA 94016" +241904,Bose SoundSport Headphones,1,99.99,08/01/19 11:15,"928 4th St, Atlanta, GA 30301" +241905,27in FHD Monitor,1,149.99,08/19/19 19:37,"552 Ridge St, Atlanta, GA 30301" +241906,AA Batteries (4-pack),3,3.84,08/16/19 15:54,"855 2nd St, Atlanta, GA 30301" +241907,Bose SoundSport Headphones,1,99.99,08/01/19 21:36,"546 2nd St, San Francisco, CA 94016" +241908,AAA Batteries (4-pack),1,2.99,08/18/19 20:29,"838 Adams St, Boston, MA 02215" +241909,Google Phone,1,600,08/23/19 18:04,"534 Hill St, Los Angeles, CA 90001" +241910,Wired Headphones,1,11.99,08/17/19 20:38,"665 Chestnut St, San Francisco, CA 94016" +241911,27in FHD Monitor,1,149.99,08/17/19 11:29,"818 Main St, Portland, OR 97035" +241912,AAA Batteries (4-pack),2,2.99,08/30/19 02:24,"910 Church St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +241913,AAA Batteries (4-pack),1,2.99,08/10/19 20:47,"81 5th St, San Francisco, CA 94016" +241914,Apple Airpods Headphones,1,150,08/08/19 18:23,"738 Wilson St, Boston, MA 02215" +241915,34in Ultrawide Monitor,1,379.99,08/10/19 11:40,"335 Park St, San Francisco, CA 94016" +241916,USB-C Charging Cable,1,11.95,08/04/19 19:54,"831 6th St, San Francisco, CA 94016" +241917,34in Ultrawide Monitor,1,379.99,08/18/19 16:36,"293 North St, Atlanta, GA 30301" +241918,AAA Batteries (4-pack),2,2.99,08/04/19 12:17,"503 Jefferson St, New York City, NY 10001" +241919,AA Batteries (4-pack),1,3.84,08/07/19 18:13,"802 Jackson St, Los Angeles, CA 90001" +241920,Apple Airpods Headphones,1,150,08/30/19 15:34,"638 West St, San Francisco, CA 94016" +241921,AAA Batteries (4-pack),1,2.99,08/06/19 13:59,"544 South St, Los Angeles, CA 90001" +241922,27in 4K Gaming Monitor,1,389.99,08/15/19 19:15,"57 14th St, Austin, TX 73301" +241923,27in FHD Monitor,1,149.99,08/24/19 16:37,"700 Jackson St, Dallas, TX 75001" +241924,iPhone,1,700,08/22/19 19:15,"776 Hickory St, San Francisco, CA 94016" +241924,Lightning Charging Cable,1,14.95,08/22/19 19:15,"776 Hickory St, San Francisco, CA 94016" +241925,LG Dryer,1,600.0,08/24/19 18:05,"407 1st St, Atlanta, GA 30301" +241926,Apple Airpods Headphones,1,150,08/12/19 22:42,"343 West St, San Francisco, CA 94016" +241927,Bose SoundSport Headphones,1,99.99,08/22/19 20:10,"161 Adams St, Boston, MA 02215" +241928,Lightning Charging Cable,1,14.95,08/25/19 14:51,"85 Hill St, Atlanta, GA 30301" +241929,AA Batteries (4-pack),1,3.84,08/29/19 16:29,"910 Church St, Los Angeles, CA 90001" +241930,USB-C Charging Cable,1,11.95,08/28/19 19:50,"193 6th St, Los Angeles, CA 90001" +241930,20in Monitor,1,109.99,08/28/19 19:50,"193 6th St, Los Angeles, CA 90001" +241931,AAA Batteries (4-pack),4,2.99,08/22/19 20:25,"379 1st St, Portland, OR 97035" +241932,Wired Headphones,1,11.99,08/29/19 22:04,"713 Dogwood St, San Francisco, CA 94016" +241933,AAA Batteries (4-pack),4,2.99,08/08/19 16:51,"963 Maple St, Dallas, TX 75001" +241934,AA Batteries (4-pack),4,3.84,08/09/19 02:59,"153 Main St, New York City, NY 10001" +241935,Macbook Pro Laptop,1,1700,08/24/19 17:38,"254 Park St, Seattle, WA 98101" +241936,AA Batteries (4-pack),1,3.84,08/19/19 17:37,"121 14th St, Atlanta, GA 30301" +241937,AAA Batteries (4-pack),2,2.99,08/01/19 17:48,"595 Walnut St, Atlanta, GA 30301" +241938,AAA Batteries (4-pack),1,2.99,08/21/19 21:41,"152 Spruce St, Boston, MA 02215" +241939,Lightning Charging Cable,2,14.95,08/06/19 12:29,"809 Spruce St, San Francisco, CA 94016" +241940,Apple Airpods Headphones,1,150,08/12/19 16:12,"834 Hickory St, Los Angeles, CA 90001" +241941,AA Batteries (4-pack),2,3.84,08/06/19 15:16,"599 Elm St, Boston, MA 02215" +241942,AA Batteries (4-pack),3,3.84,08/18/19 13:55,"873 12th St, San Francisco, CA 94016" +241943,Macbook Pro Laptop,1,1700,08/07/19 09:50,"302 1st St, New York City, NY 10001" +241944,USB-C Charging Cable,1,11.95,08/05/19 12:24,"802 Walnut St, Los Angeles, CA 90001" +241945,Lightning Charging Cable,1,14.95,08/29/19 15:57,"533 2nd St, Dallas, TX 75001" +241946,Lightning Charging Cable,1,14.95,08/27/19 16:00,"528 Center St, Austin, TX 73301" +241947,AA Batteries (4-pack),2,3.84,08/23/19 18:47,"16 Center St, San Francisco, CA 94016" +241948,Google Phone,1,600,08/17/19 07:17,"12 Cherry St, San Francisco, CA 94016" +241949,Wired Headphones,1,11.99,08/25/19 17:55,"585 Adams St, San Francisco, CA 94016" +241950,AA Batteries (4-pack),1,3.84,08/10/19 15:00,"702 10th St, San Francisco, CA 94016" +241951,Apple Airpods Headphones,1,150,08/08/19 20:30,"836 2nd St, Los Angeles, CA 90001" +241952,27in FHD Monitor,1,149.99,08/29/19 10:20,"66 14th St, Seattle, WA 98101" +241953,Flatscreen TV,1,300,08/09/19 09:15,"358 South St, San Francisco, CA 94016" +241954,20in Monitor,1,109.99,08/17/19 14:26,"632 Johnson St, Dallas, TX 75001" +241955,Macbook Pro Laptop,1,1700,08/27/19 13:56,"117 2nd St, San Francisco, CA 94016" +241956,20in Monitor,1,109.99,08/18/19 17:20,"602 Hickory St, Boston, MA 02215" +241957,Wired Headphones,1,11.99,08/31/19 16:37,"888 Jackson St, Boston, MA 02215" +241958,27in FHD Monitor,1,149.99,08/20/19 12:24,"494 10th St, San Francisco, CA 94016" +241959,AA Batteries (4-pack),1,3.84,08/26/19 10:55,"500 Willow St, New York City, NY 10001" +241960,USB-C Charging Cable,1,11.95,08/05/19 21:21,"722 Maple St, Portland, OR 97035" +241961,AA Batteries (4-pack),2,3.84,08/13/19 12:52,"888 Ridge St, Los Angeles, CA 90001" +241962,AA Batteries (4-pack),1,3.84,08/19/19 17:42,"806 West St, Los Angeles, CA 90001" +241963,Apple Airpods Headphones,1,150,08/23/19 14:56,"204 Wilson St, Seattle, WA 98101" +241964,Flatscreen TV,1,300,08/12/19 09:19,"610 Chestnut St, Dallas, TX 75001" +241965,AAA Batteries (4-pack),1,2.99,08/27/19 18:12,"375 Pine St, Dallas, TX 75001" +241966,AAA Batteries (4-pack),3,2.99,08/12/19 22:59,"570 11th St, New York City, NY 10001" +241967,USB-C Charging Cable,1,11.95,08/11/19 20:14,"516 Church St, Seattle, WA 98101" +241968,USB-C Charging Cable,1,11.95,08/18/19 14:04,"605 Main St, Atlanta, GA 30301" +241969,AA Batteries (4-pack),1,3.84,08/30/19 13:59,"53 Cherry St, Los Angeles, CA 90001" +241970,AA Batteries (4-pack),1,3.84,08/24/19 20:10,"298 7th St, Boston, MA 02215" +241971,Lightning Charging Cable,1,14.95,08/22/19 12:36,"420 Walnut St, Boston, MA 02215" +241972,Google Phone,1,600,08/27/19 12:26,"152 North St, Seattle, WA 98101" +241972,Wired Headphones,1,11.99,08/27/19 12:26,"152 North St, Seattle, WA 98101" +241973,Lightning Charging Cable,1,14.95,08/19/19 16:28,"722 South St, San Francisco, CA 94016" +241974,Lightning Charging Cable,1,14.95,08/02/19 20:52,"981 10th St, San Francisco, CA 94016" +241975,Apple Airpods Headphones,1,150,08/03/19 08:31,"219 Madison St, New York City, NY 10001" +241976,Macbook Pro Laptop,1,1700,08/18/19 18:23,"188 West St, New York City, NY 10001" +241977,AA Batteries (4-pack),2,3.84,08/24/19 15:05,"449 Lake St, Portland, OR 97035" +241978,AAA Batteries (4-pack),2,2.99,08/14/19 02:24,"464 13th St, Los Angeles, CA 90001" +241979,AA Batteries (4-pack),3,3.84,08/14/19 22:04,"276 Adams St, Boston, MA 02215" +241980,Wired Headphones,1,11.99,08/15/19 19:14,"906 North St, Austin, TX 73301" +241981,Lightning Charging Cable,1,14.95,08/31/19 19:27,"582 11th St, Los Angeles, CA 90001" +241982,Lightning Charging Cable,1,14.95,08/25/19 18:04,"42 Lincoln St, Dallas, TX 75001" +241983,AAA Batteries (4-pack),1,2.99,08/04/19 10:36,"640 14th St, Seattle, WA 98101" +241984,AAA Batteries (4-pack),1,2.99,08/13/19 11:15,"70 Forest St, Seattle, WA 98101" +241985,ThinkPad Laptop,1,999.99,08/14/19 13:12,"76 Lakeview St, Austin, TX 73301" +241986,Bose SoundSport Headphones,1,99.99,08/05/19 17:20,"914 Adams St, Boston, MA 02215" +241987,27in FHD Monitor,1,149.99,08/17/19 12:12,"941 13th St, Boston, MA 02215" +241988,AAA Batteries (4-pack),1,2.99,08/07/19 21:34,"8 Lake St, Boston, MA 02215" +241989,Wired Headphones,1,11.99,08/12/19 17:47,"243 12th St, Los Angeles, CA 90001" +241990,USB-C Charging Cable,2,11.95,08/26/19 10:12,"456 Forest St, New York City, NY 10001" +241991,USB-C Charging Cable,1,11.95,08/19/19 18:55,"349 Jefferson St, San Francisco, CA 94016" +241992,Google Phone,1,600,08/26/19 15:29,"690 West St, San Francisco, CA 94016" +241992,USB-C Charging Cable,1,11.95,08/26/19 15:29,"690 West St, San Francisco, CA 94016" +241993,USB-C Charging Cable,1,11.95,08/11/19 15:21,"207 Spruce St, Portland, OR 97035" +241994,AAA Batteries (4-pack),1,2.99,08/07/19 18:45,"561 Chestnut St, Portland, OR 97035" +241995,Macbook Pro Laptop,1,1700,08/11/19 11:40,"384 Spruce St, Portland, OR 97035" +241996,AA Batteries (4-pack),1,3.84,08/25/19 01:41,"240 Church St, Boston, MA 02215" +241996,Lightning Charging Cable,1,14.95,08/25/19 01:41,"240 Church St, Boston, MA 02215" +241997,Wired Headphones,1,11.99,08/20/19 20:23,"597 Dogwood St, Los Angeles, CA 90001" +241998,Wired Headphones,1,11.99,08/06/19 14:38,"35 Madison St, Los Angeles, CA 90001" +241999,Apple Airpods Headphones,1,150,08/28/19 07:26,"355 Willow St, New York City, NY 10001" +242000,20in Monitor,1,109.99,08/03/19 06:47,"612 Jefferson St, Seattle, WA 98101" +242001,34in Ultrawide Monitor,1,379.99,08/03/19 10:55,"608 Washington St, Austin, TX 73301" +242002,34in Ultrawide Monitor,1,379.99,08/12/19 13:13,"778 2nd St, Austin, TX 73301" +242003,AAA Batteries (4-pack),1,2.99,08/02/19 21:03,"396 9th St, Los Angeles, CA 90001" +242004,USB-C Charging Cable,1,11.95,08/31/19 22:02,"500 14th St, San Francisco, CA 94016" +242005,AA Batteries (4-pack),1,3.84,08/21/19 14:55,"601 1st St, Boston, MA 02215" +242006,ThinkPad Laptop,1,999.99,08/02/19 12:23,"969 Wilson St, San Francisco, CA 94016" +242007,Bose SoundSport Headphones,1,99.99,08/31/19 21:24,"781 1st St, San Francisco, CA 94016" +242008,Google Phone,1,600,08/21/19 13:18,"240 13th St, San Francisco, CA 94016" +242009,Bose SoundSport Headphones,1,99.99,08/05/19 13:59,"439 2nd St, San Francisco, CA 94016" +242010,ThinkPad Laptop,1,999.99,08/10/19 12:44,"878 6th St, Seattle, WA 98101" +242011,Bose SoundSport Headphones,1,99.99,08/25/19 09:58,"106 Jefferson St, San Francisco, CA 94016" +242012,AAA Batteries (4-pack),2,2.99,08/22/19 08:17,"118 South St, Los Angeles, CA 90001" +242013,27in FHD Monitor,1,149.99,08/13/19 11:20,"588 Highland St, Los Angeles, CA 90001" +242014,Wired Headphones,1,11.99,08/09/19 10:10,"473 Meadow St, Dallas, TX 75001" +242014,AA Batteries (4-pack),2,3.84,08/09/19 10:10,"473 Meadow St, Dallas, TX 75001" +242015,Wired Headphones,1,11.99,08/14/19 12:53,"975 Pine St, Seattle, WA 98101" +242016,Apple Airpods Headphones,1,150,08/22/19 21:03,"64 Elm St, Boston, MA 02215" +242017,USB-C Charging Cable,1,11.95,08/17/19 14:47,"680 14th St, New York City, NY 10001" +242018,AA Batteries (4-pack),1,3.84,08/29/19 12:15,"289 Center St, New York City, NY 10001" +242019,27in 4K Gaming Monitor,1,389.99,08/27/19 13:54,"919 7th St, San Francisco, CA 94016" +242020,27in FHD Monitor,1,149.99,08/03/19 08:20,"272 Sunset St, Dallas, TX 75001" +242021,AA Batteries (4-pack),1,3.84,08/31/19 17:04,"255 Pine St, San Francisco, CA 94016" +242022,AAA Batteries (4-pack),3,2.99,08/17/19 21:04,"698 Main St, San Francisco, CA 94016" +242023,20in Monitor,1,109.99,08/12/19 12:09,"636 North St, New York City, NY 10001" +242024,AA Batteries (4-pack),1,3.84,08/25/19 22:18,"665 4th St, Atlanta, GA 30301" +242025,Bose SoundSport Headphones,1,99.99,08/15/19 08:32,"57 Lakeview St, New York City, NY 10001" +242026,AA Batteries (4-pack),1,3.84,08/05/19 17:51,"219 Ridge St, Los Angeles, CA 90001" +242026,Google Phone,1,600,08/05/19 17:51,"219 Ridge St, Los Angeles, CA 90001" +242027,USB-C Charging Cable,1,11.95,08/26/19 09:51,"769 Jackson St, Atlanta, GA 30301" +242028,AAA Batteries (4-pack),1,2.99,08/27/19 07:30,"162 Lake St, San Francisco, CA 94016" +242029,Bose SoundSport Headphones,1,99.99,08/30/19 11:54,"613 5th St, Atlanta, GA 30301" +242030,Vareebadd Phone,1,400,08/14/19 18:20,"361 Lincoln St, San Francisco, CA 94016" +242031,Macbook Pro Laptop,1,1700,08/29/19 19:49,"994 Highland St, Portland, OR 97035" +242032,Flatscreen TV,1,300,08/19/19 18:40,"340 Dogwood St, Los Angeles, CA 90001" +242033,AA Batteries (4-pack),1,3.84,08/10/19 14:07,"107 Hill St, Los Angeles, CA 90001" +242034,USB-C Charging Cable,1,11.95,08/31/19 13:50,"336 South St, Atlanta, GA 30301" +242035,Lightning Charging Cable,1,14.95,08/21/19 03:49,"525 2nd St, New York City, NY 10001" +242036,Lightning Charging Cable,1,14.95,08/18/19 20:24,"516 Elm St, San Francisco, CA 94016" +242037,Lightning Charging Cable,1,14.95,08/09/19 21:08,"922 Jefferson St, Seattle, WA 98101" +242038,AAA Batteries (4-pack),1,2.99,08/09/19 05:56,"112 Cedar St, San Francisco, CA 94016" +242039,27in FHD Monitor,1,149.99,08/17/19 17:05,"218 West St, Portland, OR 97035" +242040,Bose SoundSport Headphones,1,99.99,08/10/19 09:45,"232 Spruce St, Boston, MA 02215" +242040,ThinkPad Laptop,1,999.99,08/10/19 09:45,"232 Spruce St, Boston, MA 02215" +242041,AA Batteries (4-pack),1,3.84,08/10/19 11:11,"723 Sunset St, New York City, NY 10001" +242042,iPhone,1,700,08/19/19 17:44,"876 1st St, San Francisco, CA 94016" +242043,Apple Airpods Headphones,1,150,08/11/19 13:26,"262 Sunset St, Atlanta, GA 30301" +242044,AAA Batteries (4-pack),2,2.99,08/11/19 23:06,"961 6th St, Los Angeles, CA 90001" +242045,Lightning Charging Cable,1,14.95,08/25/19 19:38,"227 Elm St, Portland, OR 97035" +242046,27in FHD Monitor,2,149.99,08/17/19 13:38,"714 1st St, Boston, MA 02215" +242047,ThinkPad Laptop,1,999.99,08/26/19 11:37,"867 14th St, San Francisco, CA 94016" +242048,AA Batteries (4-pack),1,3.84,08/11/19 20:47,"310 8th St, Boston, MA 02215" +242049,Macbook Pro Laptop,1,1700,08/17/19 13:31,"612 14th St, Austin, TX 73301" +242050,AA Batteries (4-pack),1,3.84,08/31/19 22:21,"154 Main St, Dallas, TX 75001" +242051,27in 4K Gaming Monitor,1,389.99,08/29/19 16:38,"505 10th St, San Francisco, CA 94016" +242052,Bose SoundSport Headphones,1,99.99,08/17/19 16:18,"976 Pine St, San Francisco, CA 94016" +242053,AAA Batteries (4-pack),3,2.99,09/01/19 01:24,"442 Hickory St, Portland, OR 97035" +242054,Apple Airpods Headphones,1,150,08/26/19 11:28,"163 10th St, San Francisco, CA 94016" +242055,Lightning Charging Cable,1,14.95,08/05/19 23:20,"798 Walnut St, New York City, NY 10001" +242056,27in 4K Gaming Monitor,1,389.99,08/22/19 11:55,"20 Washington St, Boston, MA 02215" +242057,27in 4K Gaming Monitor,1,389.99,08/24/19 16:23,"736 Main St, Los Angeles, CA 90001" +242058,iPhone,1,700,08/04/19 13:08,"677 Washington St, New York City, NY 10001" +242058,Apple Airpods Headphones,1,150,08/04/19 13:08,"677 Washington St, New York City, NY 10001" +242059,AAA Batteries (4-pack),1,2.99,08/23/19 16:33,"450 Hill St, New York City, NY 10001" +242060,AA Batteries (4-pack),1,3.84,08/27/19 18:09,"100 Meadow St, Portland, OR 97035" +242061,iPhone,1,700,08/28/19 21:41,"855 13th St, Atlanta, GA 30301" +242062,AAA Batteries (4-pack),6,2.99,08/22/19 16:49,"998 Cherry St, San Francisco, CA 94016" +242063,AAA Batteries (4-pack),2,2.99,08/30/19 15:51,"650 8th St, San Francisco, CA 94016" +242064,Apple Airpods Headphones,1,150,08/23/19 14:00,"402 Forest St, San Francisco, CA 94016" +242065,Macbook Pro Laptop,1,1700,08/11/19 09:22,"40 Dogwood St, Atlanta, GA 30301" +242066,AAA Batteries (4-pack),1,2.99,08/26/19 22:31,"860 Lincoln St, Dallas, TX 75001" +242067,USB-C Charging Cable,1,11.95,08/13/19 08:23,"612 Sunset St, Boston, MA 02215" +242068,Lightning Charging Cable,1,14.95,08/11/19 11:07,"786 Washington St, Seattle, WA 98101" +242069,iPhone,1,700,08/29/19 14:26,"121 Washington St, Atlanta, GA 30301" +242070,AA Batteries (4-pack),2,3.84,08/14/19 20:30,"689 Main St, New York City, NY 10001" +242071,Wired Headphones,1,11.99,08/02/19 15:23,"165 Lakeview St, Boston, MA 02215" +242072,AAA Batteries (4-pack),1,2.99,08/31/19 10:04,"769 West St, Boston, MA 02215" +242073,Lightning Charging Cable,1,14.95,08/17/19 12:47,"460 Church St, Atlanta, GA 30301" +242074,27in FHD Monitor,1,149.99,08/08/19 14:57,"140 Forest St, Atlanta, GA 30301" +242075,USB-C Charging Cable,1,11.95,08/02/19 10:20,"679 Maple St, Dallas, TX 75001" +242076,27in 4K Gaming Monitor,1,389.99,08/26/19 01:48,"293 Church St, Los Angeles, CA 90001" +242077,Apple Airpods Headphones,1,150,08/02/19 18:15,"857 West St, San Francisco, CA 94016" +242078,AAA Batteries (4-pack),2,2.99,08/17/19 10:15,"782 2nd St, Portland, OR 97035" +242079,Flatscreen TV,1,300,08/21/19 21:35,"813 6th St, Seattle, WA 98101" +242080,27in 4K Gaming Monitor,1,389.99,08/12/19 11:33,"394 2nd St, Los Angeles, CA 90001" +242081,AAA Batteries (4-pack),1,2.99,08/08/19 15:31,"492 9th St, San Francisco, CA 94016" +242082,Lightning Charging Cable,1,14.95,08/23/19 15:46,"340 Park St, Boston, MA 02215" +242083,USB-C Charging Cable,1,11.95,08/03/19 20:01,"787 Willow St, Los Angeles, CA 90001" +242084,27in FHD Monitor,1,149.99,08/15/19 15:49,"116 Jefferson St, San Francisco, CA 94016" +242085,AAA Batteries (4-pack),1,2.99,08/28/19 11:19,"223 Meadow St, San Francisco, CA 94016" +242086,Bose SoundSport Headphones,1,99.99,08/31/19 22:24,"76 Lake St, Austin, TX 73301" +242087,Macbook Pro Laptop,1,1700,08/10/19 10:21,"573 7th St, Los Angeles, CA 90001" +242088,Wired Headphones,1,11.99,08/16/19 19:06,"893 5th St, San Francisco, CA 94016" +242089,Wired Headphones,1,11.99,08/01/19 23:19,"11 North St, San Francisco, CA 94016" +242090,Wired Headphones,1,11.99,08/28/19 12:23,"408 West St, Los Angeles, CA 90001" +242091,USB-C Charging Cable,1,11.95,08/12/19 13:36,"181 11th St, Boston, MA 02215" +242092,Lightning Charging Cable,1,14.95,08/07/19 13:18,"474 4th St, Boston, MA 02215" +242093,Bose SoundSport Headphones,1,99.99,08/24/19 12:38,"829 Cherry St, Los Angeles, CA 90001" +242094,Bose SoundSport Headphones,2,99.99,08/25/19 09:33,"602 Lincoln St, Dallas, TX 75001" +242095,USB-C Charging Cable,1,11.95,08/23/19 07:02,"876 Lincoln St, Los Angeles, CA 90001" +242096,34in Ultrawide Monitor,1,379.99,08/19/19 17:47,"358 13th St, Atlanta, GA 30301" +242097,Wired Headphones,1,11.99,08/14/19 14:14,"463 Park St, Atlanta, GA 30301" +242098,USB-C Charging Cable,1,11.95,08/24/19 09:10,"47 Elm St, Dallas, TX 75001" +242099,USB-C Charging Cable,1,11.95,08/06/19 11:21,"532 South St, Los Angeles, CA 90001" +242100,USB-C Charging Cable,1,11.95,08/26/19 20:53,"905 8th St, Seattle, WA 98101" +242101,Flatscreen TV,1,300,08/30/19 13:11,"195 Wilson St, San Francisco, CA 94016" +242102,AA Batteries (4-pack),1,3.84,08/28/19 21:14,"797 7th St, New York City, NY 10001" +242103,AAA Batteries (4-pack),1,2.99,08/03/19 10:56,"631 Spruce St, Los Angeles, CA 90001" +242104,ThinkPad Laptop,1,999.99,08/18/19 16:34,"743 Jackson St, San Francisco, CA 94016" +242105,Bose SoundSport Headphones,1,99.99,08/03/19 17:17,"837 Chestnut St, Portland, OR 97035" +242106,Flatscreen TV,1,300,08/30/19 09:56,"669 1st St, Austin, TX 73301" +242107,AAA Batteries (4-pack),1,2.99,08/26/19 15:58,"79 Forest St, Seattle, WA 98101" +242108,iPhone,1,700,08/23/19 21:28,"134 Lakeview St, Atlanta, GA 30301" +242109,Lightning Charging Cable,1,14.95,08/12/19 11:57,"12 Center St, San Francisco, CA 94016" +242110,LG Washing Machine,1,600.0,08/11/19 12:47,"715 Cherry St, San Francisco, CA 94016" +242111,Wired Headphones,1,11.99,08/09/19 14:04,"823 2nd St, San Francisco, CA 94016" +242112,Apple Airpods Headphones,1,150,08/29/19 20:10,"991 4th St, Portland, OR 97035" +242113,Bose SoundSport Headphones,1,99.99,08/30/19 20:18,"1 Cedar St, Dallas, TX 75001" +242114,AA Batteries (4-pack),1,3.84,08/26/19 19:35,"722 9th St, Los Angeles, CA 90001" +242115,Bose SoundSport Headphones,1,99.99,08/13/19 21:59,"801 Church St, Los Angeles, CA 90001" +242116,Apple Airpods Headphones,1,150,08/17/19 16:22,"7 Sunset St, Los Angeles, CA 90001" +242117,USB-C Charging Cable,1,11.95,08/12/19 01:37,"699 Hill St, Los Angeles, CA 90001" +242118,27in 4K Gaming Monitor,1,389.99,08/14/19 19:31,"445 Lincoln St, Dallas, TX 75001" +242119,AA Batteries (4-pack),1,3.84,08/23/19 00:22,"755 Adams St, San Francisco, CA 94016" +242120,Lightning Charging Cable,1,14.95,08/15/19 11:11,"548 11th St, San Francisco, CA 94016" +242121,USB-C Charging Cable,1,11.95,08/05/19 00:09,"694 Spruce St, New York City, NY 10001" +242122,AAA Batteries (4-pack),1,2.99,08/24/19 10:57,"66 10th St, Atlanta, GA 30301" +242123,AA Batteries (4-pack),1,3.84,08/22/19 12:47,"59 Johnson St, Atlanta, GA 30301" +242123,Apple Airpods Headphones,1,150,08/22/19 12:47,"59 Johnson St, Atlanta, GA 30301" +242124,Bose SoundSport Headphones,1,99.99,08/02/19 20:16,"616 Jefferson St, New York City, NY 10001" +242125,Wired Headphones,1,11.99,08/27/19 17:03,"601 4th St, Atlanta, GA 30301" +242126,USB-C Charging Cable,1,11.95,08/18/19 23:49,"106 Pine St, Portland, ME 04101" +242127,Lightning Charging Cable,1,14.95,08/04/19 09:19,"939 Meadow St, New York City, NY 10001" +242128,ThinkPad Laptop,1,999.99,08/10/19 11:29,"510 8th St, Boston, MA 02215" +242129,Wired Headphones,1,11.99,08/06/19 22:55,"103 Hill St, Atlanta, GA 30301" +242130,34in Ultrawide Monitor,1,379.99,08/05/19 22:22,"232 Washington St, Atlanta, GA 30301" +242131,AAA Batteries (4-pack),1,2.99,08/07/19 12:59,"824 Jefferson St, San Francisco, CA 94016" +242132,Flatscreen TV,1,300,08/07/19 00:00,"963 Madison St, Austin, TX 73301" +242133,AAA Batteries (4-pack),5,2.99,08/21/19 14:34,"138 9th St, Boston, MA 02215" +242134,Bose SoundSport Headphones,1,99.99,08/03/19 17:27,"661 Adams St, Atlanta, GA 30301" +242135,AA Batteries (4-pack),2,3.84,08/24/19 14:21,"391 5th St, Seattle, WA 98101" +242136,Google Phone,1,600,08/12/19 00:03,"322 Maple St, Boston, MA 02215" +242137,Apple Airpods Headphones,1,150,08/27/19 17:09,"165 Church St, Atlanta, GA 30301" +242138,USB-C Charging Cable,1,11.95,08/23/19 17:36,"960 Walnut St, San Francisco, CA 94016" +242139,AAA Batteries (4-pack),1,2.99,08/24/19 19:30,"89 Sunset St, Boston, MA 02215" +242140,27in FHD Monitor,1,149.99,08/12/19 09:22,"613 Walnut St, Dallas, TX 75001" +242141,Bose SoundSport Headphones,1,99.99,08/16/19 12:24,"830 12th St, Boston, MA 02215" +242142,iPhone,1,700,08/01/19 10:09,"789 Madison St, San Francisco, CA 94016" +242142,Lightning Charging Cable,1,14.95,08/01/19 10:09,"789 Madison St, San Francisco, CA 94016" +242143,AA Batteries (4-pack),1,3.84,08/03/19 12:10,"388 Wilson St, Portland, ME 04101" +242144,AA Batteries (4-pack),1,3.84,08/02/19 18:15,"697 Lakeview St, Seattle, WA 98101" +242145,iPhone,1,700,08/24/19 23:29,"804 7th St, New York City, NY 10001" +242145,Wired Headphones,1,11.99,08/24/19 23:29,"804 7th St, New York City, NY 10001" +242146,AAA Batteries (4-pack),1,2.99,08/30/19 11:34,"441 10th St, Atlanta, GA 30301" +242147,Wired Headphones,1,11.99,08/13/19 12:55,"742 Meadow St, San Francisco, CA 94016" +242148,AA Batteries (4-pack),1,3.84,08/15/19 13:17,"922 Church St, Austin, TX 73301" +242149,Flatscreen TV,1,300,08/03/19 14:27,"7 14th St, Seattle, WA 98101" +242150,20in Monitor,1,109.99,08/22/19 15:12,"965 Jackson St, San Francisco, CA 94016" +242151,Macbook Pro Laptop,1,1700,08/04/19 07:21,"221 Walnut St, Los Angeles, CA 90001" +242152,Apple Airpods Headphones,1,150,08/22/19 20:41,"853 13th St, San Francisco, CA 94016" +242153,Lightning Charging Cable,1,14.95,08/02/19 18:16,"603 Sunset St, Los Angeles, CA 90001" +242154,USB-C Charging Cable,1,11.95,08/25/19 20:03,"919 Meadow St, Los Angeles, CA 90001" +242155,27in 4K Gaming Monitor,1,389.99,08/17/19 18:29,"989 12th St, New York City, NY 10001" +242156,20in Monitor,1,109.99,08/08/19 08:46,"811 River St, San Francisco, CA 94016" +242157,ThinkPad Laptop,1,999.99,08/08/19 17:39,"35 10th St, Seattle, WA 98101" +242158,USB-C Charging Cable,1,11.95,08/12/19 08:37,"509 Chestnut St, San Francisco, CA 94016" +242159,Lightning Charging Cable,1,14.95,08/31/19 21:08,"386 River St, San Francisco, CA 94016" +242160,Lightning Charging Cable,1,14.95,08/11/19 13:34,"249 Elm St, San Francisco, CA 94016" +242161,Lightning Charging Cable,1,14.95,08/16/19 21:50,"592 Lincoln St, Los Angeles, CA 90001" +242162,Apple Airpods Headphones,1,150,08/21/19 08:59,"993 Forest St, Los Angeles, CA 90001" +242163,Apple Airpods Headphones,1,150,08/19/19 16:49,"680 Willow St, San Francisco, CA 94016" +242164,Google Phone,1,600,08/10/19 13:10,"122 7th St, San Francisco, CA 94016" +242164,Bose SoundSport Headphones,1,99.99,08/10/19 13:10,"122 7th St, San Francisco, CA 94016" +242165,Apple Airpods Headphones,1,150,08/30/19 18:53,"197 River St, San Francisco, CA 94016" +242166,AAA Batteries (4-pack),3,2.99,08/22/19 20:50,"167 Elm St, Seattle, WA 98101" +242167,Lightning Charging Cable,1,14.95,08/08/19 16:52,"320 Center St, New York City, NY 10001" +242168,USB-C Charging Cable,1,11.95,08/01/19 13:06,"670 Lake St, Seattle, WA 98101" +242169,AA Batteries (4-pack),1,3.84,08/12/19 09:14,"395 4th St, Seattle, WA 98101" +242170,Flatscreen TV,1,300,08/08/19 13:18,"574 4th St, San Francisco, CA 94016" +242171,USB-C Charging Cable,1,11.95,08/16/19 18:47,"955 Cherry St, Austin, TX 73301" +242172,Bose SoundSport Headphones,1,99.99,08/03/19 20:14,"113 Hill St, Portland, OR 97035" +242173,USB-C Charging Cable,1,11.95,08/15/19 17:44,"677 South St, Portland, OR 97035" +242174,Flatscreen TV,1,300,08/26/19 10:59,"929 Jefferson St, Los Angeles, CA 90001" +242175,Wired Headphones,1,11.99,08/01/19 12:05,"535 Lake St, New York City, NY 10001" +242176,AA Batteries (4-pack),1,3.84,08/19/19 20:39,"958 Church St, Atlanta, GA 30301" +242177,USB-C Charging Cable,1,11.95,08/27/19 15:15,"710 Hickory St, Atlanta, GA 30301" +242178,AA Batteries (4-pack),1,3.84,08/30/19 19:30,"519 Cherry St, Austin, TX 73301" +242179,Bose SoundSport Headphones,1,99.99,08/28/19 20:04,"858 Park St, Los Angeles, CA 90001" +242180,Wired Headphones,1,11.99,08/29/19 19:21,"599 Main St, Los Angeles, CA 90001" +242181,Lightning Charging Cable,1,14.95,08/27/19 18:10,"316 South St, New York City, NY 10001" +242182,34in Ultrawide Monitor,1,379.99,08/23/19 14:30,"422 Pine St, Los Angeles, CA 90001" +242183,34in Ultrawide Monitor,1,379.99,08/23/19 19:15,"611 1st St, Dallas, TX 75001" +242184,Lightning Charging Cable,1,14.95,08/27/19 01:33,"784 Dogwood St, Los Angeles, CA 90001" +242185,USB-C Charging Cable,1,11.95,08/15/19 11:07,"433 Lincoln St, Dallas, TX 75001" +242186,AA Batteries (4-pack),1,3.84,08/09/19 05:11,"747 River St, Los Angeles, CA 90001" +242187,34in Ultrawide Monitor,1,379.99,08/10/19 18:32,"67 7th St, San Francisco, CA 94016" +242187,Apple Airpods Headphones,1,150,08/10/19 18:32,"67 7th St, San Francisco, CA 94016" +242188,Wired Headphones,1,11.99,08/14/19 22:56,"630 Hill St, San Francisco, CA 94016" +242189,AAA Batteries (4-pack),2,2.99,08/17/19 00:51,"652 Lincoln St, San Francisco, CA 94016" +242190,AAA Batteries (4-pack),2,2.99,08/09/19 18:59,"759 8th St, San Francisco, CA 94016" +242191,AA Batteries (4-pack),1,3.84,08/29/19 21:18,"669 1st St, Dallas, TX 75001" +242192,AA Batteries (4-pack),3,3.84,08/31/19 23:52,"118 8th St, Boston, MA 02215" +242193,Wired Headphones,1,11.99,08/16/19 12:55,"605 Church St, Seattle, WA 98101" +242194,Apple Airpods Headphones,1,150,08/30/19 08:06,"293 Jackson St, Dallas, TX 75001" +242195,Wired Headphones,1,11.99,08/01/19 18:51,"693 Ridge St, Austin, TX 73301" +242195,27in FHD Monitor,1,149.99,08/01/19 18:51,"693 Ridge St, Austin, TX 73301" +242196,Lightning Charging Cable,1,14.95,08/18/19 19:52,"276 9th St, Austin, TX 73301" +242197,Bose SoundSport Headphones,1,99.99,08/14/19 09:50,"850 South St, Dallas, TX 75001" +242198,Wired Headphones,1,11.99,08/06/19 20:32,"21 Wilson St, Los Angeles, CA 90001" +242199,Lightning Charging Cable,1,14.95,08/22/19 15:01,"123 4th St, Boston, MA 02215" +242200,34in Ultrawide Monitor,1,379.99,08/17/19 12:00,"580 14th St, Seattle, WA 98101" +242201,Lightning Charging Cable,1,14.95,08/07/19 11:52,"478 Jefferson St, San Francisco, CA 94016" +242202,Apple Airpods Headphones,1,150,08/21/19 21:19,"891 Jefferson St, Seattle, WA 98101" +242203,USB-C Charging Cable,1,11.95,08/27/19 23:24,"4 Main St, San Francisco, CA 94016" +242204,USB-C Charging Cable,1,11.95,08/24/19 12:05,"687 4th St, Boston, MA 02215" +242205,Apple Airpods Headphones,1,150,08/12/19 10:27,"496 Wilson St, San Francisco, CA 94016" +242206,USB-C Charging Cable,1,11.95,08/26/19 22:24,"582 Lake St, San Francisco, CA 94016" +242207,Apple Airpods Headphones,1,150,08/10/19 13:27,"690 Park St, San Francisco, CA 94016" +242208,Vareebadd Phone,1,400,08/18/19 19:17,"719 Walnut St, San Francisco, CA 94016" +242209,Wired Headphones,1,11.99,08/09/19 04:06,"875 Elm St, Boston, MA 02215" +242210,AAA Batteries (4-pack),1,2.99,08/30/19 09:44,"921 Hill St, Boston, MA 02215" +242211,Bose SoundSport Headphones,1,99.99,08/13/19 20:42,"129 Hickory St, New York City, NY 10001" +242212,AA Batteries (4-pack),2,3.84,08/06/19 21:41,"909 Jefferson St, Los Angeles, CA 90001" +242213,Macbook Pro Laptop,1,1700,08/11/19 10:42,"86 1st St, Portland, ME 04101" +242214,34in Ultrawide Monitor,1,379.99,08/31/19 21:36,"984 Park St, New York City, NY 10001" +242215,AA Batteries (4-pack),3,3.84,08/10/19 12:16,"904 West St, New York City, NY 10001" +242216,27in FHD Monitor,1,149.99,08/01/19 14:57,"262 Spruce St, Boston, MA 02215" +242217,Lightning Charging Cable,1,14.95,08/25/19 17:42,"90 4th St, Los Angeles, CA 90001" +242218,Lightning Charging Cable,1,14.95,08/11/19 13:08,"155 Lake St, New York City, NY 10001" +242219,USB-C Charging Cable,1,11.95,08/14/19 18:41,"374 Spruce St, Atlanta, GA 30301" +242220,AA Batteries (4-pack),1,3.84,08/16/19 15:00,"239 Pine St, Dallas, TX 75001" +242221,Flatscreen TV,1,300,08/04/19 11:38,"974 Cedar St, Seattle, WA 98101" +242222,USB-C Charging Cable,1,11.95,08/08/19 17:11,"758 Adams St, Dallas, TX 75001" +242223,20in Monitor,1,109.99,08/23/19 17:12,"247 10th St, Dallas, TX 75001" +242224,USB-C Charging Cable,2,11.95,08/26/19 20:51,"999 West St, Seattle, WA 98101" +242225,Apple Airpods Headphones,1,150,08/15/19 11:31,"840 Willow St, Seattle, WA 98101" +242226,Bose SoundSport Headphones,1,99.99,08/17/19 21:58,"768 West St, Los Angeles, CA 90001" +242227,AAA Batteries (4-pack),1,2.99,08/14/19 22:17,"699 8th St, Boston, MA 02215" +242228,AAA Batteries (4-pack),1,2.99,08/30/19 17:11,"837 14th St, Los Angeles, CA 90001" +242229,Apple Airpods Headphones,1,150,08/20/19 18:42,"17 Dogwood St, San Francisco, CA 94016" +242230,Wired Headphones,1,11.99,08/28/19 12:49,"60 North St, Atlanta, GA 30301" +242231,Apple Airpods Headphones,1,150,08/26/19 14:44,"249 Dogwood St, Atlanta, GA 30301" +242232,USB-C Charging Cable,1,11.95,08/31/19 00:08,"475 Adams St, Boston, MA 02215" +242233,USB-C Charging Cable,2,11.95,08/24/19 18:29,"108 Lincoln St, Portland, OR 97035" +242234,Bose SoundSport Headphones,1,99.99,08/21/19 09:18,"933 Church St, San Francisco, CA 94016" +242235,USB-C Charging Cable,1,11.95,08/20/19 12:05,"660 Cherry St, Dallas, TX 75001" +242236,Apple Airpods Headphones,1,150,08/18/19 06:54,"6 11th St, Portland, OR 97035" +242237,27in FHD Monitor,1,149.99,08/21/19 14:17,"628 Ridge St, New York City, NY 10001" +242238,AAA Batteries (4-pack),1,2.99,08/12/19 02:19,"66 Jefferson St, San Francisco, CA 94016" +242239,AA Batteries (4-pack),1,3.84,08/01/19 14:27,"277 11th St, San Francisco, CA 94016" +242240,Flatscreen TV,1,300,08/27/19 22:20,"57 Hickory St, Los Angeles, CA 90001" +242241,USB-C Charging Cable,1,11.95,08/04/19 18:00,"994 Lake St, Portland, OR 97035" +242242,27in FHD Monitor,1,149.99,08/27/19 18:45,"807 4th St, Seattle, WA 98101" +242243,AAA Batteries (4-pack),1,2.99,08/25/19 13:25,"714 Chestnut St, Atlanta, GA 30301" +242244,Bose SoundSport Headphones,1,99.99,08/29/19 15:46,"202 Chestnut St, New York City, NY 10001" +242245,Wired Headphones,1,11.99,08/20/19 19:38,"762 West St, Seattle, WA 98101" +242246,ThinkPad Laptop,1,999.99,08/12/19 19:34,"873 12th St, Seattle, WA 98101" +242247,34in Ultrawide Monitor,1,379.99,08/13/19 14:48,"293 Ridge St, San Francisco, CA 94016" +242248,Wired Headphones,1,11.99,08/20/19 15:09,"229 Adams St, Boston, MA 02215" +242249,AAA Batteries (4-pack),1,2.99,08/23/19 15:02,"20 Main St, Atlanta, GA 30301" +242250,20in Monitor,1,109.99,08/20/19 19:14,"363 Sunset St, Los Angeles, CA 90001" +242251,ThinkPad Laptop,1,999.99,08/30/19 16:07,"470 9th St, New York City, NY 10001" +242252,Wired Headphones,1,11.99,08/31/19 01:59,"278 2nd St, New York City, NY 10001" +242253,AAA Batteries (4-pack),3,2.99,08/06/19 11:26,"963 Forest St, San Francisco, CA 94016" +242254,iPhone,1,700,08/22/19 21:00,"293 Maple St, San Francisco, CA 94016" +242255,AA Batteries (4-pack),1,3.84,08/15/19 08:49,"207 North St, Los Angeles, CA 90001" +242256,AA Batteries (4-pack),1,3.84,08/18/19 19:31,"113 Chestnut St, New York City, NY 10001" +242257,34in Ultrawide Monitor,1,379.99,08/15/19 14:20,"875 12th St, Boston, MA 02215" +242258,20in Monitor,1,109.99,08/30/19 11:36,"525 Pine St, Atlanta, GA 30301" +242259,USB-C Charging Cable,1,11.95,08/19/19 17:33,"650 5th St, Atlanta, GA 30301" +242260,AAA Batteries (4-pack),1,2.99,08/22/19 08:54,"781 6th St, Los Angeles, CA 90001" +242261,ThinkPad Laptop,1,999.99,08/28/19 21:19,"365 4th St, Dallas, TX 75001" +242262,34in Ultrawide Monitor,1,379.99,08/30/19 20:25,"288 Meadow St, Los Angeles, CA 90001" +242263,Lightning Charging Cable,1,14.95,08/06/19 13:19,"504 2nd St, Atlanta, GA 30301" +242264,34in Ultrawide Monitor,1,379.99,08/07/19 19:18,"294 8th St, San Francisco, CA 94016" +242265,27in FHD Monitor,1,149.99,08/13/19 15:21,"597 Church St, San Francisco, CA 94016" +242266,Bose SoundSport Headphones,1,99.99,08/09/19 09:10,"481 6th St, Atlanta, GA 30301" +242267,Lightning Charging Cable,1,14.95,08/30/19 21:07,"576 Maple St, Los Angeles, CA 90001" +242268,Apple Airpods Headphones,1,150,08/09/19 22:50,"443 7th St, Atlanta, GA 30301" +242269,Lightning Charging Cable,1,14.95,08/18/19 16:02,"920 Highland St, San Francisco, CA 94016" +242270,USB-C Charging Cable,1,11.95,08/23/19 21:02,"512 Hill St, San Francisco, CA 94016" +242271,Wired Headphones,1,11.99,08/21/19 20:39,"562 Meadow St, New York City, NY 10001" +242272,Apple Airpods Headphones,1,150,08/26/19 13:25,"416 Main St, Seattle, WA 98101" +242273,Bose SoundSport Headphones,1,99.99,08/08/19 11:41,"726 Lakeview St, San Francisco, CA 94016" +242274,Lightning Charging Cable,1,14.95,08/01/19 15:38,"586 1st St, San Francisco, CA 94016" +242275,USB-C Charging Cable,1,11.95,08/30/19 11:25,"953 8th St, Los Angeles, CA 90001" +242276,Wired Headphones,1,11.99,08/26/19 20:34,"773 Forest St, Atlanta, GA 30301" +242277,AAA Batteries (4-pack),2,2.99,08/27/19 10:52,"920 River St, Los Angeles, CA 90001" +242278,Macbook Pro Laptop,1,1700,08/28/19 02:59,"281 Willow St, Los Angeles, CA 90001" +242279,iPhone,1,700,08/21/19 08:11,"796 Johnson St, San Francisco, CA 94016" +242279,Lightning Charging Cable,1,14.95,08/21/19 08:11,"796 Johnson St, San Francisco, CA 94016" +242280,USB-C Charging Cable,1,11.95,08/05/19 13:58,"252 Elm St, Los Angeles, CA 90001" +242281,Bose SoundSport Headphones,1,99.99,08/26/19 21:26,"325 Johnson St, Austin, TX 73301" +242282,Lightning Charging Cable,1,14.95,08/26/19 20:21,"625 10th St, Boston, MA 02215" +242283,Lightning Charging Cable,1,14.95,08/30/19 22:13,"533 Forest St, Portland, OR 97035" +242284,AAA Batteries (4-pack),2,2.99,08/11/19 15:15,"154 Cedar St, Los Angeles, CA 90001" +242284,Lightning Charging Cable,1,14.95,08/11/19 15:15,"154 Cedar St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +242285,Bose SoundSport Headphones,1,99.99,08/03/19 20:33,"163 Willow St, Austin, TX 73301" +242286,USB-C Charging Cable,1,11.95,08/23/19 06:58,"434 Madison St, Dallas, TX 75001" +242287,AAA Batteries (4-pack),1,2.99,08/02/19 12:45,"591 Cherry St, Portland, OR 97035" +242288,Bose SoundSport Headphones,1,99.99,08/10/19 02:06,"375 Chestnut St, New York City, NY 10001" +242289,USB-C Charging Cable,1,11.95,08/05/19 11:26,"204 Highland St, Austin, TX 73301" +242290,AA Batteries (4-pack),1,3.84,08/15/19 18:45,"83 Center St, Los Angeles, CA 90001" +242291,Apple Airpods Headphones,1,150,08/10/19 16:32,"403 Willow St, San Francisco, CA 94016" +242292,AAA Batteries (4-pack),1,2.99,08/08/19 20:43,"275 Elm St, Boston, MA 02215" +242293,Bose SoundSport Headphones,1,99.99,08/05/19 20:15,"635 River St, Atlanta, GA 30301" +242294,iPhone,1,700,08/03/19 20:56,"240 River St, Los Angeles, CA 90001" +242294,Lightning Charging Cable,1,14.95,08/03/19 20:56,"240 River St, Los Angeles, CA 90001" +242294,Wired Headphones,1,11.99,08/03/19 20:56,"240 River St, Los Angeles, CA 90001" +242295,Apple Airpods Headphones,1,150,08/26/19 09:57,"490 10th St, Atlanta, GA 30301" +242296,Lightning Charging Cable,1,14.95,08/23/19 18:03,"230 11th St, Boston, MA 02215" +242297,Wired Headphones,2,11.99,08/09/19 08:26,"850 Lake St, Los Angeles, CA 90001" +242298,Wired Headphones,1,11.99,08/25/19 11:29,"270 Jefferson St, San Francisco, CA 94016" +242299,AAA Batteries (4-pack),1,2.99,08/30/19 17:49,"516 Main St, Los Angeles, CA 90001" +242300,Google Phone,1,600,08/25/19 12:01,"79 Wilson St, New York City, NY 10001" +242301,USB-C Charging Cable,1,11.95,08/15/19 17:42,"733 2nd St, San Francisco, CA 94016" +242302,Apple Airpods Headphones,1,150,08/01/19 22:05,"478 6th St, San Francisco, CA 94016" +242303,AAA Batteries (4-pack),2,2.99,08/03/19 09:47,"31 7th St, Atlanta, GA 30301" +242304,Bose SoundSport Headphones,1,99.99,08/11/19 14:43,"127 10th St, San Francisco, CA 94016" +242305,Apple Airpods Headphones,1,150,08/27/19 20:48,"440 Spruce St, New York City, NY 10001" +242306,AAA Batteries (4-pack),1,2.99,08/26/19 07:38,"922 Maple St, Dallas, TX 75001" +242307,Apple Airpods Headphones,1,150,08/03/19 22:29,"284 6th St, Dallas, TX 75001" +242308,AA Batteries (4-pack),5,3.84,08/31/19 17:09,"405 Chestnut St, Boston, MA 02215" +242309,AAA Batteries (4-pack),1,2.99,08/28/19 00:51,"680 Johnson St, Seattle, WA 98101" +242310,ThinkPad Laptop,1,999.99,08/29/19 22:59,"365 2nd St, Los Angeles, CA 90001" +242311,20in Monitor,1,109.99,08/01/19 18:06,"34 West St, New York City, NY 10001" +242312,AAA Batteries (4-pack),1,2.99,08/02/19 20:47,"916 Park St, San Francisco, CA 94016" +242313,iPhone,1,700,08/26/19 16:54,"188 Johnson St, San Francisco, CA 94016" +242313,Lightning Charging Cable,1,14.95,08/26/19 16:54,"188 Johnson St, San Francisco, CA 94016" +242314,AA Batteries (4-pack),1,3.84,08/05/19 13:46,"589 Pine St, New York City, NY 10001" +242315,Google Phone,1,600,08/15/19 09:30,"285 Church St, San Francisco, CA 94016" +242316,Apple Airpods Headphones,1,150,08/22/19 08:24,"665 Church St, Atlanta, GA 30301" +242317,AAA Batteries (4-pack),1,2.99,08/27/19 21:47,"999 Pine St, Boston, MA 02215" +242318,Lightning Charging Cable,1,14.95,08/07/19 11:40,"514 14th St, Los Angeles, CA 90001" +242319,Lightning Charging Cable,1,14.95,08/29/19 10:58,"477 Johnson St, San Francisco, CA 94016" +242320,Wired Headphones,1,11.99,08/04/19 15:00,"339 Wilson St, New York City, NY 10001" +242321,AA Batteries (4-pack),1,3.84,08/25/19 19:01,"389 Hickory St, San Francisco, CA 94016" +242322,27in FHD Monitor,1,149.99,08/22/19 13:00,"767 12th St, Boston, MA 02215" +242323,Bose SoundSport Headphones,1,99.99,08/11/19 17:55,"154 North St, Seattle, WA 98101" +242324,Apple Airpods Headphones,1,150,08/25/19 19:36,"437 Lake St, New York City, NY 10001" +242325,AA Batteries (4-pack),1,3.84,08/21/19 14:51,"4 Lakeview St, San Francisco, CA 94016" +242326,Bose SoundSport Headphones,1,99.99,08/22/19 18:37,"464 Dogwood St, Los Angeles, CA 90001" +242327,Apple Airpods Headphones,1,150,08/14/19 11:11,"201 9th St, Boston, MA 02215" +242328,AA Batteries (4-pack),2,3.84,08/09/19 12:30,"97 Park St, San Francisco, CA 94016" +242329,27in 4K Gaming Monitor,1,389.99,08/06/19 16:17,"22 Cedar St, Atlanta, GA 30301" +242330,AAA Batteries (4-pack),1,2.99,08/26/19 21:37,"936 Walnut St, Seattle, WA 98101" +242331,Wired Headphones,1,11.99,08/21/19 12:16,"950 Lincoln St, Los Angeles, CA 90001" +242332,Wired Headphones,1,11.99,08/20/19 12:15,"511 Washington St, Los Angeles, CA 90001" +242333,Bose SoundSport Headphones,1,99.99,08/03/19 08:34,"270 14th St, Austin, TX 73301" +242334,Lightning Charging Cable,1,14.95,08/01/19 13:28,"710 Park St, Atlanta, GA 30301" +242335,Wired Headphones,1,11.99,08/28/19 17:37,"606 Washington St, Seattle, WA 98101" +242336,Google Phone,1,600,08/22/19 16:03,"45 Jefferson St, Seattle, WA 98101" +242337,AAA Batteries (4-pack),1,2.99,08/12/19 22:15,"397 Cedar St, San Francisco, CA 94016" +242338,iPhone,1,700,08/30/19 14:13,"520 Lincoln St, Boston, MA 02215" +242339,Wired Headphones,1,11.99,08/14/19 11:39,"875 Sunset St, Atlanta, GA 30301" +242340,Apple Airpods Headphones,1,150,08/27/19 21:52,"247 12th St, New York City, NY 10001" +242341,Apple Airpods Headphones,1,150,08/17/19 16:28,"378 Maple St, Atlanta, GA 30301" +242342,AAA Batteries (4-pack),1,2.99,08/30/19 08:56,"292 1st St, Los Angeles, CA 90001" +242343,AAA Batteries (4-pack),3,2.99,08/21/19 15:32,"524 1st St, Boston, MA 02215" +242344,Apple Airpods Headphones,1,150,08/27/19 15:48,"894 Madison St, San Francisco, CA 94016" +242345,Google Phone,1,600,08/09/19 19:06,"224 Forest St, Los Angeles, CA 90001" +242346,AAA Batteries (4-pack),1,2.99,08/18/19 19:20,"467 Wilson St, New York City, NY 10001" +242347,Wired Headphones,1,11.99,08/09/19 13:54,"121 Park St, Los Angeles, CA 90001" +242348,27in FHD Monitor,2,149.99,08/01/19 17:57,"870 5th St, Los Angeles, CA 90001" +242349,USB-C Charging Cable,1,11.95,08/31/19 23:05,"206 Jefferson St, San Francisco, CA 94016" +242350,AAA Batteries (4-pack),1,2.99,08/09/19 21:22,"726 Lincoln St, New York City, NY 10001" +242351,27in 4K Gaming Monitor,1,389.99,08/22/19 12:28,"443 Walnut St, Boston, MA 02215" +242352,Lightning Charging Cable,1,14.95,08/19/19 12:07,"748 Washington St, Los Angeles, CA 90001" +242353,USB-C Charging Cable,1,11.95,08/06/19 15:20,"902 Lake St, Portland, OR 97035" +242354,Apple Airpods Headphones,1,150,08/18/19 09:43,"564 Meadow St, Atlanta, GA 30301" +242355,34in Ultrawide Monitor,1,379.99,08/01/19 15:09,"987 13th St, Los Angeles, CA 90001" +242356,USB-C Charging Cable,1,11.95,08/09/19 13:36,"976 Madison St, San Francisco, CA 94016" +242357,Wired Headphones,1,11.99,08/11/19 19:22,"520 12th St, New York City, NY 10001" +242358,AAA Batteries (4-pack),1,2.99,08/31/19 10:44,"359 Hill St, Portland, OR 97035" +242359,Lightning Charging Cable,1,14.95,08/14/19 18:53,"337 Adams St, Austin, TX 73301" +242360,iPhone,1,700,08/24/19 13:29,"745 Pine St, Portland, OR 97035" +242361,USB-C Charging Cable,1,11.95,08/29/19 16:13,"837 6th St, Dallas, TX 75001" +242362,Google Phone,1,600,08/20/19 09:31,"753 Church St, New York City, NY 10001" +242363,Wired Headphones,1,11.99,08/06/19 10:37,"641 Adams St, Seattle, WA 98101" +242364,Lightning Charging Cable,1,14.95,08/06/19 20:48,"114 Walnut St, Atlanta, GA 30301" +242365,Apple Airpods Headphones,1,150,08/05/19 12:10,"986 13th St, Dallas, TX 75001" +242366,USB-C Charging Cable,1,11.95,08/31/19 11:35,"988 12th St, Atlanta, GA 30301" +242367,iPhone,1,700,08/19/19 12:33,"501 West St, Austin, TX 73301" +242368,Vareebadd Phone,1,400,08/20/19 22:54,"482 Main St, Los Angeles, CA 90001" +242369,USB-C Charging Cable,1,11.95,08/03/19 10:15,"674 Forest St, Atlanta, GA 30301" +242370,Wired Headphones,1,11.99,08/23/19 17:24,"495 Washington St, New York City, NY 10001" +242371,Flatscreen TV,1,300,08/22/19 19:21,"37 Washington St, Atlanta, GA 30301" +242372,AA Batteries (4-pack),1,3.84,08/23/19 18:28,"801 12th St, San Francisco, CA 94016" +242373,Apple Airpods Headphones,1,150,08/26/19 19:29,"234 Hickory St, Austin, TX 73301" +242374,Wired Headphones,1,11.99,08/28/19 21:53,"942 5th St, Boston, MA 02215" +242375,AAA Batteries (4-pack),1,2.99,08/11/19 08:20,"588 North St, Dallas, TX 75001" +242376,27in FHD Monitor,1,149.99,08/30/19 13:55,"705 Wilson St, New York City, NY 10001" +242377,Macbook Pro Laptop,1,1700,08/02/19 23:03,"217 Sunset St, Boston, MA 02215" +242378,Flatscreen TV,1,300,08/28/19 16:57,"297 Pine St, Los Angeles, CA 90001" +242379,Google Phone,1,600,08/08/19 11:43,"359 Wilson St, Atlanta, GA 30301" +242380,Macbook Pro Laptop,1,1700,08/26/19 15:31,"793 14th St, New York City, NY 10001" +242381,AAA Batteries (4-pack),1,2.99,08/28/19 16:17,"845 West St, Austin, TX 73301" +242382,34in Ultrawide Monitor,1,379.99,08/01/19 23:56,"265 Maple St, Seattle, WA 98101" +242383,AA Batteries (4-pack),1,3.84,08/09/19 18:13,"911 Washington St, Dallas, TX 75001" +242384,Lightning Charging Cable,1,14.95,08/11/19 19:25,"248 Hickory St, San Francisco, CA 94016" +242385,Lightning Charging Cable,1,14.95,08/12/19 18:10,"328 Spruce St, Portland, OR 97035" +242386,AAA Batteries (4-pack),2,2.99,08/31/19 17:55,"244 Highland St, San Francisco, CA 94016" +242387,Google Phone,1,600,08/30/19 07:35,"69 North St, New York City, NY 10001" +242388,Wired Headphones,1,11.99,08/03/19 22:24,"522 Walnut St, San Francisco, CA 94016" +242389,ThinkPad Laptop,1,999.99,08/08/19 17:26,"632 Ridge St, San Francisco, CA 94016" +242390,AA Batteries (4-pack),1,3.84,08/17/19 06:58,"887 Park St, Atlanta, GA 30301" +242391,AAA Batteries (4-pack),1,2.99,08/12/19 18:55,"826 Pine St, New York City, NY 10001" +242392,ThinkPad Laptop,1,999.99,08/05/19 13:21,"984 Pine St, Los Angeles, CA 90001" +242393,AA Batteries (4-pack),1,3.84,08/19/19 21:33,"935 Hill St, Atlanta, GA 30301" +242394,Wired Headphones,1,11.99,08/24/19 11:00,"465 Church St, San Francisco, CA 94016" +242395,Apple Airpods Headphones,1,150,08/12/19 23:01,"368 Adams St, Boston, MA 02215" +242396,Wired Headphones,1,11.99,08/08/19 19:54,"819 Elm St, Atlanta, GA 30301" +242397,Bose SoundSport Headphones,1,99.99,08/01/19 21:16,"413 12th St, Los Angeles, CA 90001" +242398,Flatscreen TV,1,300,08/31/19 15:45,"882 North St, San Francisco, CA 94016" +242399,20in Monitor,1,109.99,08/13/19 23:19,"266 Lincoln St, Seattle, WA 98101" +242400,Wired Headphones,1,11.99,08/10/19 20:29,"259 Center St, Seattle, WA 98101" +242401,iPhone,1,700,08/29/19 14:54,"66 Cedar St, New York City, NY 10001" +242402,Lightning Charging Cable,1,14.95,08/25/19 11:29,"246 River St, San Francisco, CA 94016" +242403,AAA Batteries (4-pack),1,2.99,08/01/19 10:29,"800 Forest St, Seattle, WA 98101" +242404,27in FHD Monitor,1,149.99,08/04/19 20:24,"628 Lakeview St, Atlanta, GA 30301" +242405,Bose SoundSport Headphones,1,99.99,08/12/19 16:17,"851 Church St, Seattle, WA 98101" +242406,Apple Airpods Headphones,1,150,08/12/19 22:35,"979 Chestnut St, Los Angeles, CA 90001" +242407,Google Phone,1,600,08/12/19 11:40,"587 South St, Boston, MA 02215" +242408,27in 4K Gaming Monitor,1,389.99,08/19/19 09:04,"993 5th St, Boston, MA 02215" +242409,Wired Headphones,1,11.99,08/01/19 12:15,"612 Hill St, New York City, NY 10001" +242410,AAA Batteries (4-pack),1,2.99,08/02/19 09:08,"296 West St, Boston, MA 02215" +242410,Lightning Charging Cable,1,14.95,08/02/19 09:08,"296 West St, Boston, MA 02215" +242411,27in 4K Gaming Monitor,1,389.99,08/18/19 17:46,"308 14th St, New York City, NY 10001" +242412,iPhone,1,700,08/26/19 14:15,"169 Washington St, Atlanta, GA 30301" +242413,ThinkPad Laptop,1,999.99,08/25/19 14:30,"226 4th St, Boston, MA 02215" +242414,AA Batteries (4-pack),1,3.84,08/20/19 13:02,"979 Lakeview St, San Francisco, CA 94016" +242415,AAA Batteries (4-pack),1,2.99,08/31/19 19:50,"810 River St, Boston, MA 02215" +242416,AAA Batteries (4-pack),1,2.99,08/28/19 05:39,"530 Lincoln St, Dallas, TX 75001" +242417,AA Batteries (4-pack),1,3.84,08/22/19 08:29,"480 Hickory St, San Francisco, CA 94016" +242418,Lightning Charging Cable,1,14.95,08/18/19 18:26,"164 Cedar St, Dallas, TX 75001" +242419,Apple Airpods Headphones,1,150,08/16/19 22:48,"971 Hickory St, Boston, MA 02215" +242420,27in FHD Monitor,1,149.99,08/23/19 20:34,"910 Meadow St, Dallas, TX 75001" +242421,Macbook Pro Laptop,1,1700,08/24/19 14:20,"57 Chestnut St, Los Angeles, CA 90001" +242422,AA Batteries (4-pack),1,3.84,08/22/19 00:53,"621 Jackson St, San Francisco, CA 94016" +242423,Lightning Charging Cable,1,14.95,08/16/19 11:28,"782 Church St, Austin, TX 73301" +242424,Google Phone,1,600,08/26/19 20:43,"314 6th St, San Francisco, CA 94016" +242425,iPhone,1,700,08/29/19 21:02,"255 Lakeview St, Boston, MA 02215" +242425,Wired Headphones,2,11.99,08/29/19 21:02,"255 Lakeview St, Boston, MA 02215" +242425,Wired Headphones,1,11.99,08/29/19 21:02,"255 Lakeview St, Boston, MA 02215" +242426,Lightning Charging Cable,1,14.95,08/02/19 21:22,"381 River St, Los Angeles, CA 90001" +242427,USB-C Charging Cable,1,11.95,08/22/19 12:01,"679 14th St, Seattle, WA 98101" +242428,AA Batteries (4-pack),1,3.84,08/12/19 18:04,"115 Chestnut St, Los Angeles, CA 90001" +242429,Lightning Charging Cable,1,14.95,08/10/19 00:46,"489 5th St, Boston, MA 02215" +242430,Lightning Charging Cable,2,14.95,08/12/19 19:45,"822 Forest St, Dallas, TX 75001" +242431,Lightning Charging Cable,1,14.95,08/08/19 18:17,"21 Hickory St, Boston, MA 02215" +242432,Lightning Charging Cable,1,14.95,08/05/19 20:03,"23 11th St, San Francisco, CA 94016" +242433,USB-C Charging Cable,1,11.95,08/23/19 18:24,"174 12th St, Boston, MA 02215" +242434,Bose SoundSport Headphones,1,99.99,08/08/19 21:33,"767 North St, Atlanta, GA 30301" +242435,Vareebadd Phone,1,400,08/21/19 15:41,"256 4th St, San Francisco, CA 94016" +242436,iPhone,1,700,08/26/19 20:20,"936 Elm St, Boston, MA 02215" +242436,Apple Airpods Headphones,1,150,08/26/19 20:20,"936 Elm St, Boston, MA 02215" +242437,Wired Headphones,1,11.99,08/05/19 17:59,"795 5th St, New York City, NY 10001" +242438,27in FHD Monitor,1,149.99,08/13/19 18:27,"596 8th St, New York City, NY 10001" +242439,Apple Airpods Headphones,1,150,08/28/19 12:58,"141 Chestnut St, Los Angeles, CA 90001" +242440,Flatscreen TV,1,300,08/11/19 11:54,"728 1st St, San Francisco, CA 94016" +242441,Bose SoundSport Headphones,1,99.99,08/22/19 09:59,"175 Cherry St, Dallas, TX 75001" +242442,AA Batteries (4-pack),1,3.84,08/18/19 11:37,"846 West St, San Francisco, CA 94016" +242443,AA Batteries (4-pack),1,3.84,08/26/19 13:11,"765 Sunset St, Boston, MA 02215" +242444,Lightning Charging Cable,1,14.95,08/19/19 10:45,"588 Lakeview St, Boston, MA 02215" +242445,AAA Batteries (4-pack),1,2.99,08/21/19 01:50,"136 Sunset St, Seattle, WA 98101" +242446,Lightning Charging Cable,1,14.95,08/05/19 21:12,"433 Spruce St, Atlanta, GA 30301" +242447,Apple Airpods Headphones,1,150,08/30/19 17:33,"43 14th St, Dallas, TX 75001" +242448,Flatscreen TV,1,300,08/20/19 12:25,"77 Dogwood St, San Francisco, CA 94016" +242449,USB-C Charging Cable,1,11.95,08/17/19 10:41,"448 Elm St, Portland, ME 04101" +242450,Macbook Pro Laptop,1,1700,08/13/19 10:25,"286 Elm St, Seattle, WA 98101" +242451,27in FHD Monitor,1,149.99,08/30/19 22:07,"746 Washington St, Seattle, WA 98101" +242452,Macbook Pro Laptop,1,1700,08/08/19 16:57,"82 12th St, New York City, NY 10001" +242453,Bose SoundSport Headphones,1,99.99,08/03/19 09:35,"168 Lincoln St, Portland, OR 97035" +242454,AAA Batteries (4-pack),1,2.99,08/06/19 13:16,"924 Lake St, New York City, NY 10001" +242455,ThinkPad Laptop,1,999.99,08/15/19 20:55,"767 Highland St, San Francisco, CA 94016" +242456,Lightning Charging Cable,1,14.95,08/08/19 08:37,"766 Maple St, Los Angeles, CA 90001" +242457,Apple Airpods Headphones,1,150,08/08/19 12:01,"191 Madison St, New York City, NY 10001" +242458,USB-C Charging Cable,1,11.95,08/13/19 20:58,"698 6th St, Los Angeles, CA 90001" +242459,ThinkPad Laptop,1,999.99,08/08/19 13:17,"31 1st St, Portland, OR 97035" +242460,Lightning Charging Cable,1,14.95,08/07/19 20:41,"675 Jefferson St, Atlanta, GA 30301" +242461,Apple Airpods Headphones,1,150,08/26/19 19:26,"976 North St, Boston, MA 02215" +242462,AA Batteries (4-pack),3,3.84,08/15/19 19:42,"234 8th St, Boston, MA 02215" +242462,Bose SoundSport Headphones,1,99.99,08/15/19 19:42,"234 8th St, Boston, MA 02215" +242463,AAA Batteries (4-pack),1,2.99,08/18/19 22:24,"566 5th St, San Francisco, CA 94016" +242464,34in Ultrawide Monitor,1,379.99,08/21/19 12:33,"238 Sunset St, Atlanta, GA 30301" +242465,27in FHD Monitor,1,149.99,08/03/19 21:23,"156 West St, San Francisco, CA 94016" +242466,AA Batteries (4-pack),1,3.84,08/17/19 13:57,"225 Hill St, Boston, MA 02215" +242467,Wired Headphones,1,11.99,08/17/19 20:33,"744 Cherry St, San Francisco, CA 94016" +242468,AA Batteries (4-pack),3,3.84,08/26/19 17:11,"501 Church St, San Francisco, CA 94016" +242469,USB-C Charging Cable,1,11.95,08/06/19 20:57,"93 Cherry St, Los Angeles, CA 90001" +242470,Bose SoundSport Headphones,1,99.99,08/10/19 22:07,"151 West St, Los Angeles, CA 90001" +242471,Apple Airpods Headphones,1,150,08/19/19 19:08,"237 Jefferson St, Los Angeles, CA 90001" +242472,Lightning Charging Cable,1,14.95,08/19/19 07:29,"299 1st St, San Francisco, CA 94016" +242473,Apple Airpods Headphones,1,150,08/03/19 07:14,"22 Pine St, San Francisco, CA 94016" +242474,34in Ultrawide Monitor,1,379.99,08/17/19 00:11,"467 4th St, New York City, NY 10001" +242475,USB-C Charging Cable,1,11.95,08/03/19 13:16,"42 Jackson St, Portland, OR 97035" +242476,AA Batteries (4-pack),1,3.84,08/05/19 12:32,"962 Dogwood St, Boston, MA 02215" +242477,Lightning Charging Cable,2,14.95,08/16/19 12:06,"380 Spruce St, Dallas, TX 75001" +242478,27in FHD Monitor,1,149.99,08/29/19 21:59,"477 2nd St, Seattle, WA 98101" +242479,Bose SoundSport Headphones,1,99.99,08/28/19 16:42,"262 Chestnut St, Los Angeles, CA 90001" +242480,Apple Airpods Headphones,1,150,08/11/19 22:26,"768 Johnson St, Dallas, TX 75001" +242481,Flatscreen TV,1,300,08/28/19 16:18,"537 Dogwood St, San Francisco, CA 94016" +242482,USB-C Charging Cable,3,11.95,08/20/19 15:19,"148 Main St, San Francisco, CA 94016" +242483,AA Batteries (4-pack),1,3.84,08/20/19 10:14,"594 Dogwood St, Atlanta, GA 30301" +242484,Lightning Charging Cable,1,14.95,08/01/19 20:56,"218 Center St, Seattle, WA 98101" +242485,27in FHD Monitor,1,149.99,08/24/19 03:12,"779 Cherry St, Boston, MA 02215" +242486,AAA Batteries (4-pack),3,2.99,08/18/19 14:57,"369 Church St, Portland, OR 97035" +242487,Wired Headphones,1,11.99,08/13/19 15:40,"437 Highland St, Los Angeles, CA 90001" +242488,Lightning Charging Cable,1,14.95,08/29/19 19:30,"823 North St, San Francisco, CA 94016" +242489,Google Phone,1,600,08/05/19 13:05,"718 Church St, San Francisco, CA 94016" +242490,Wired Headphones,1,11.99,08/15/19 11:08,"930 12th St, Atlanta, GA 30301" +242491,AA Batteries (4-pack),1,3.84,08/03/19 20:07,"971 Highland St, Seattle, WA 98101" +242492,27in FHD Monitor,1,149.99,08/15/19 12:26,"443 8th St, Dallas, TX 75001" +242493,ThinkPad Laptop,1,999.99,08/16/19 19:23,"361 Lake St, Los Angeles, CA 90001" +242494,AA Batteries (4-pack),1,3.84,08/10/19 12:48,"502 Spruce St, Austin, TX 73301" +242495,Wired Headphones,1,11.99,08/13/19 13:42,"639 6th St, Austin, TX 73301" +242496,AA Batteries (4-pack),2,3.84,08/09/19 17:40,"369 Meadow St, Los Angeles, CA 90001" +242497,Wired Headphones,1,11.99,08/09/19 03:26,"183 Jackson St, Boston, MA 02215" +242498,Google Phone,1,600,08/03/19 14:01,"742 Dogwood St, Atlanta, GA 30301" +242499,USB-C Charging Cable,1,11.95,08/21/19 23:15,"281 Hickory St, San Francisco, CA 94016" +242500,Apple Airpods Headphones,1,150,08/11/19 11:16,"726 Washington St, San Francisco, CA 94016" +242501,USB-C Charging Cable,1,11.95,08/27/19 17:52,"691 Johnson St, San Francisco, CA 94016" +242502,AAA Batteries (4-pack),1,2.99,08/09/19 16:19,"911 South St, San Francisco, CA 94016" +242503,34in Ultrawide Monitor,1,379.99,08/09/19 19:07,"814 Cherry St, Los Angeles, CA 90001" +242504,27in 4K Gaming Monitor,1,389.99,08/14/19 13:45,"753 Johnson St, Seattle, WA 98101" +242505,AA Batteries (4-pack),1,3.84,08/09/19 19:43,"509 Lakeview St, Los Angeles, CA 90001" +242506,Lightning Charging Cable,1,14.95,08/21/19 17:35,"779 Pine St, San Francisco, CA 94016" +242507,Lightning Charging Cable,1,14.95,08/03/19 23:15,"441 10th St, Seattle, WA 98101" +242508,Flatscreen TV,1,300,08/14/19 14:15,"713 Maple St, Dallas, TX 75001" +242509,Google Phone,1,600,08/03/19 11:25,"194 Washington St, Austin, TX 73301" +242510,34in Ultrawide Monitor,1,379.99,08/09/19 12:29,"893 Lake St, Los Angeles, CA 90001" +242511,Wired Headphones,1,11.99,08/24/19 05:40,"54 4th St, Seattle, WA 98101" +242512,USB-C Charging Cable,1,11.95,08/11/19 12:29,"459 Dogwood St, San Francisco, CA 94016" +242513,iPhone,1,700,08/02/19 10:14,"965 Lincoln St, Boston, MA 02215" +242513,Wired Headphones,1,11.99,08/02/19 10:14,"965 Lincoln St, Boston, MA 02215" +242514,Flatscreen TV,1,300,08/24/19 18:32,"725 Hickory St, Los Angeles, CA 90001" +242515,Apple Airpods Headphones,1,150,08/24/19 15:29,"734 5th St, Dallas, TX 75001" +242515,iPhone,1,700,08/24/19 15:29,"734 5th St, Dallas, TX 75001" +242516,34in Ultrawide Monitor,1,379.99,08/17/19 10:53,"429 Maple St, San Francisco, CA 94016" +242517,Google Phone,1,600,08/05/19 20:40,"152 Highland St, Portland, OR 97035" +242518,Bose SoundSport Headphones,1,99.99,08/17/19 15:04,"696 Church St, Boston, MA 02215" +242519,ThinkPad Laptop,1,999.99,08/01/19 19:03,"693 Church St, Portland, OR 97035" +242520,Apple Airpods Headphones,1,150,08/24/19 10:53,"777 Sunset St, New York City, NY 10001" +242521,USB-C Charging Cable,1,11.95,08/16/19 17:55,"332 Forest St, Austin, TX 73301" +242522,USB-C Charging Cable,1,11.95,08/25/19 17:47,"307 Dogwood St, Austin, TX 73301" +242523,USB-C Charging Cable,2,11.95,08/12/19 15:10,"654 4th St, Dallas, TX 75001" +242524,USB-C Charging Cable,1,11.95,08/08/19 21:28,"603 11th St, New York City, NY 10001" +242525,Wired Headphones,1,11.99,08/25/19 16:57,"290 Lincoln St, Austin, TX 73301" +242526,Google Phone,1,600,08/26/19 19:49,"540 Sunset St, Atlanta, GA 30301" +242527,Lightning Charging Cable,1,14.95,08/08/19 23:26,"929 Wilson St, San Francisco, CA 94016" +242528,Lightning Charging Cable,1,14.95,08/30/19 22:24,"794 6th St, Atlanta, GA 30301" +242528,27in 4K Gaming Monitor,1,389.99,08/30/19 22:24,"794 6th St, Atlanta, GA 30301" +242529,Bose SoundSport Headphones,1,99.99,08/14/19 15:27,"729 2nd St, Los Angeles, CA 90001" +242530,Google Phone,1,600,08/04/19 16:13,"492 Hickory St, Atlanta, GA 30301" +242531,AAA Batteries (4-pack),1,2.99,08/04/19 09:18,"690 Hill St, Los Angeles, CA 90001" +242532,27in 4K Gaming Monitor,1,389.99,08/26/19 07:47,"609 Lake St, Seattle, WA 98101" +242533,AA Batteries (4-pack),1,3.84,08/27/19 21:36,"407 Walnut St, Dallas, TX 75001" +242534,AAA Batteries (4-pack),1,2.99,08/30/19 19:11,"119 Elm St, Boston, MA 02215" +242535,Apple Airpods Headphones,1,150,08/29/19 16:00,"748 Meadow St, San Francisco, CA 94016" +242536,USB-C Charging Cable,1,11.95,08/01/19 17:13,"718 Elm St, Boston, MA 02215" +242537,iPhone,1,700,08/12/19 21:09,"612 10th St, San Francisco, CA 94016" +242537,Wired Headphones,1,11.99,08/12/19 21:09,"612 10th St, San Francisco, CA 94016" +242538,AA Batteries (4-pack),1,3.84,08/18/19 10:08,"247 Sunset St, Seattle, WA 98101" +242539,Apple Airpods Headphones,1,150,08/09/19 09:11,"358 Pine St, Los Angeles, CA 90001" +242539,AA Batteries (4-pack),1,3.84,08/09/19 09:11,"358 Pine St, Los Angeles, CA 90001" +242540,Apple Airpods Headphones,1,150,08/01/19 23:04,"866 Willow St, San Francisco, CA 94016" +242541,iPhone,1,700,08/26/19 15:19,"136 Lincoln St, San Francisco, CA 94016" +242542,Bose SoundSport Headphones,1,99.99,08/04/19 07:51,"116 Jefferson St, Portland, OR 97035" +242543,Bose SoundSport Headphones,1,99.99,08/27/19 00:38,"918 12th St, Los Angeles, CA 90001" +242544,Lightning Charging Cable,1,14.95,08/30/19 12:05,"149 Maple St, San Francisco, CA 94016" +242545,ThinkPad Laptop,1,999.99,08/27/19 13:21,"498 13th St, Los Angeles, CA 90001" +242546,Apple Airpods Headphones,1,150,08/09/19 12:09,"650 North St, San Francisco, CA 94016" +242547,AA Batteries (4-pack),1,3.84,08/21/19 17:50,"114 Washington St, Los Angeles, CA 90001" +242548,Apple Airpods Headphones,1,150,08/04/19 15:33,"555 10th St, Boston, MA 02215" +242549,AA Batteries (4-pack),2,3.84,08/20/19 15:37,"212 8th St, San Francisco, CA 94016" +242550,Lightning Charging Cable,2,14.95,08/14/19 00:32,"144 12th St, San Francisco, CA 94016" +242551,Wired Headphones,1,11.99,08/12/19 15:31,"693 Church St, Los Angeles, CA 90001" +242552,USB-C Charging Cable,1,11.95,08/25/19 17:43,"315 10th St, Portland, OR 97035" +242553,iPhone,1,700,08/22/19 01:46,"998 7th St, New York City, NY 10001" +242554,Lightning Charging Cable,1,14.95,08/14/19 14:32,"577 12th St, Portland, OR 97035" +242555,Wired Headphones,1,11.99,08/08/19 00:50,"174 Elm St, New York City, NY 10001" +242556,USB-C Charging Cable,1,11.95,08/04/19 14:09,"524 Forest St, Boston, MA 02215" +242557,Apple Airpods Headphones,1,150,08/16/19 07:13,"206 Elm St, New York City, NY 10001" +242558,USB-C Charging Cable,1,11.95,08/30/19 20:57,"4 Pine St, San Francisco, CA 94016" +242559,AA Batteries (4-pack),1,3.84,08/13/19 21:13,"209 5th St, San Francisco, CA 94016" +242560,27in FHD Monitor,1,149.99,08/10/19 14:25,"90 Lincoln St, Portland, OR 97035" +242561,AA Batteries (4-pack),1,3.84,08/21/19 23:15,"567 River St, Austin, TX 73301" +242562,Apple Airpods Headphones,1,150,08/14/19 08:49,"99 Park St, Los Angeles, CA 90001" +242563,iPhone,1,700,08/10/19 12:24,"823 4th St, New York City, NY 10001" +242564,USB-C Charging Cable,2,11.95,08/25/19 10:27,"33 7th St, Seattle, WA 98101" +242565,Bose SoundSport Headphones,1,99.99,08/06/19 17:08,"858 Wilson St, Seattle, WA 98101" +242566,AAA Batteries (4-pack),1,2.99,08/08/19 16:11,"349 14th St, New York City, NY 10001" +242567,Wired Headphones,1,11.99,08/21/19 14:47,"40 Maple St, Los Angeles, CA 90001" +242568,USB-C Charging Cable,1,11.95,08/30/19 09:14,"393 5th St, Boston, MA 02215" +242569,Apple Airpods Headphones,1,150,08/28/19 13:19,"273 10th St, Austin, TX 73301" +242570,AA Batteries (4-pack),3,3.84,08/23/19 22:09,"399 Lincoln St, Los Angeles, CA 90001" +242571,Lightning Charging Cable,2,14.95,08/15/19 11:12,"644 10th St, Los Angeles, CA 90001" +242572,AA Batteries (4-pack),4,3.84,08/07/19 23:11,"304 Meadow St, New York City, NY 10001" +242573,27in 4K Gaming Monitor,1,389.99,08/31/19 22:55,"109 Lincoln St, San Francisco, CA 94016" +242574,Lightning Charging Cable,1,14.95,08/24/19 22:01,"814 Willow St, San Francisco, CA 94016" +242575,AAA Batteries (4-pack),1,2.99,08/19/19 06:59,"427 Chestnut St, Dallas, TX 75001" +242576,Lightning Charging Cable,2,14.95,08/10/19 18:04,"599 1st St, Los Angeles, CA 90001" +242577,AA Batteries (4-pack),1,3.84,08/01/19 14:22,"917 14th St, Atlanta, GA 30301" +242578,AAA Batteries (4-pack),2,2.99,08/04/19 09:52,"578 Center St, San Francisco, CA 94016" +242579,Wired Headphones,1,11.99,08/24/19 16:18,"871 Cherry St, Austin, TX 73301" +242580,iPhone,1,700,08/20/19 20:36,"6 South St, San Francisco, CA 94016" +242581,AA Batteries (4-pack),1,3.84,08/01/19 19:14,"722 Hill St, Boston, MA 02215" +242581,Lightning Charging Cable,1,14.95,08/01/19 19:14,"722 Hill St, Boston, MA 02215" +242582,20in Monitor,1,109.99,08/11/19 21:52,"863 Hill St, Los Angeles, CA 90001" +242583,Bose SoundSport Headphones,1,99.99,08/09/19 13:42,"561 Spruce St, Atlanta, GA 30301" +242584,Lightning Charging Cable,1,14.95,08/20/19 15:23,"701 Adams St, Atlanta, GA 30301" +242585,ThinkPad Laptop,1,999.99,08/30/19 19:39,"561 South St, Seattle, WA 98101" +242586,iPhone,1,700,08/26/19 21:13,"913 Meadow St, San Francisco, CA 94016" +242587,Wired Headphones,1,11.99,08/12/19 16:30,"609 6th St, New York City, NY 10001" +242588,Lightning Charging Cable,1,14.95,08/12/19 09:14,"957 8th St, New York City, NY 10001" +242589,27in FHD Monitor,1,149.99,08/09/19 02:20,"600 4th St, Austin, TX 73301" +242590,AA Batteries (4-pack),1,3.84,08/27/19 09:08,"936 8th St, Portland, OR 97035" +242591,AA Batteries (4-pack),1,3.84,08/21/19 15:33,"453 Ridge St, Portland, OR 97035" +242592,AA Batteries (4-pack),2,3.84,08/15/19 12:17,"21 Highland St, Portland, OR 97035" +242593,ThinkPad Laptop,1,999.99,08/13/19 18:04,"647 8th St, New York City, NY 10001" +242594,Google Phone,1,600,08/01/19 14:03,"901 Highland St, Boston, MA 02215" +242595,Lightning Charging Cable,2,14.95,08/13/19 13:58,"897 12th St, Boston, MA 02215" +242596,Wired Headphones,1,11.99,08/20/19 00:39,"664 Pine St, New York City, NY 10001" +242597,AAA Batteries (4-pack),1,2.99,08/29/19 10:46,"156 Maple St, Los Angeles, CA 90001" +242598,Wired Headphones,1,11.99,08/18/19 22:27,"805 Hill St, Seattle, WA 98101" +242599,ThinkPad Laptop,1,999.99,08/22/19 16:59,"709 South St, Portland, OR 97035" +242600,Bose SoundSport Headphones,1,99.99,08/23/19 14:51,"459 Jackson St, Dallas, TX 75001" +242601,Apple Airpods Headphones,1,150,08/22/19 12:13,"245 2nd St, Boston, MA 02215" +242602,Vareebadd Phone,1,400,08/19/19 15:47,"480 Lake St, New York City, NY 10001" +242603,27in FHD Monitor,1,149.99,08/25/19 16:50,"610 Madison St, Seattle, WA 98101" +242604,AAA Batteries (4-pack),1,2.99,08/18/19 11:17,"808 Jefferson St, Austin, TX 73301" +242605,34in Ultrawide Monitor,1,379.99,08/13/19 15:05,"977 Chestnut St, New York City, NY 10001" +242606,Apple Airpods Headphones,1,150,08/04/19 12:51,"829 2nd St, Boston, MA 02215" +242607,Bose SoundSport Headphones,1,99.99,08/07/19 09:10,"740 4th St, New York City, NY 10001" +242608,27in 4K Gaming Monitor,1,389.99,08/10/19 00:39,"226 Elm St, San Francisco, CA 94016" +242609,Wired Headphones,1,11.99,08/28/19 18:15,"91 Hill St, New York City, NY 10001" +242610,Flatscreen TV,1,300,08/13/19 15:03,"806 Sunset St, Dallas, TX 75001" +242611,AAA Batteries (4-pack),2,2.99,08/09/19 22:35,"563 North St, Boston, MA 02215" +242612,AAA Batteries (4-pack),1,2.99,08/23/19 11:41,"970 Lincoln St, San Francisco, CA 94016" +242613,Bose SoundSport Headphones,1,99.99,08/05/19 20:04,"198 4th St, Boston, MA 02215" +242614,AAA Batteries (4-pack),1,2.99,08/17/19 17:35,"480 Washington St, Boston, MA 02215" +242615,Lightning Charging Cable,1,14.95,08/28/19 20:10,"642 Ridge St, Seattle, WA 98101" +242616,Wired Headphones,1,11.99,08/17/19 13:12,"553 Jefferson St, San Francisco, CA 94016" +242617,Google Phone,1,600,08/07/19 18:18,"193 South St, Portland, OR 97035" +242617,Bose SoundSport Headphones,1,99.99,08/07/19 18:18,"193 South St, Portland, OR 97035" +242618,AA Batteries (4-pack),1,3.84,08/10/19 13:45,"699 Spruce St, New York City, NY 10001" +242619,AAA Batteries (4-pack),1,2.99,08/03/19 09:52,"156 Adams St, Dallas, TX 75001" +242620,34in Ultrawide Monitor,1,379.99,08/01/19 20:10,"722 Meadow St, Los Angeles, CA 90001" +242621,Google Phone,1,600,08/01/19 21:32,"192 11th St, Boston, MA 02215" +242621,USB-C Charging Cable,1,11.95,08/01/19 21:32,"192 11th St, Boston, MA 02215" +242622,iPhone,1,700,08/09/19 07:32,"550 Madison St, San Francisco, CA 94016" +242623,AA Batteries (4-pack),1,3.84,08/31/19 12:57,"571 11th St, Atlanta, GA 30301" +242624,Apple Airpods Headphones,1,150,08/28/19 12:17,"126 11th St, San Francisco, CA 94016" +242625,Apple Airpods Headphones,1,150,08/09/19 13:36,"945 Wilson St, Austin, TX 73301" +242626,Wired Headphones,1,11.99,08/03/19 20:48,"130 West St, San Francisco, CA 94016" +242627,Google Phone,1,600,08/12/19 11:34,"608 Meadow St, Dallas, TX 75001" +242628,Wired Headphones,2,11.99,08/30/19 20:00,"20 8th St, Boston, MA 02215" +242629,LG Washing Machine,1,600.0,08/29/19 13:22,"594 Spruce St, Seattle, WA 98101" +242630,ThinkPad Laptop,1,999.99,08/07/19 11:02,"281 Main St, Dallas, TX 75001" +242631,AA Batteries (4-pack),1,3.84,08/29/19 09:48,"192 Main St, Atlanta, GA 30301" +242632,Wired Headphones,1,11.99,08/08/19 11:10,"363 9th St, Austin, TX 73301" +242633,Apple Airpods Headphones,1,150,08/28/19 11:18,"263 Lakeview St, Boston, MA 02215" +242634,Lightning Charging Cable,1,14.95,08/04/19 13:35,"978 Elm St, San Francisco, CA 94016" +242635,Flatscreen TV,1,300,08/25/19 17:35,"323 2nd St, San Francisco, CA 94016" +242636,Apple Airpods Headphones,1,150,08/20/19 18:15,"862 North St, Austin, TX 73301" +242637,USB-C Charging Cable,1,11.95,08/04/19 14:44,"693 Dogwood St, Boston, MA 02215" +242638,ThinkPad Laptop,1,999.99,08/30/19 12:23,"606 Main St, Los Angeles, CA 90001" +242639,Google Phone,1,600,08/27/19 15:54,"183 4th St, Dallas, TX 75001" +242640,Wired Headphones,1,11.99,08/05/19 20:44,"629 10th St, Austin, TX 73301" +242641,Lightning Charging Cable,1,14.95,08/30/19 15:58,"530 Park St, New York City, NY 10001" +242642,20in Monitor,1,109.99,08/02/19 10:24,"433 South St, Austin, TX 73301" +242643,iPhone,1,700,08/07/19 10:54,"226 Highland St, San Francisco, CA 94016" +242643,Apple Airpods Headphones,1,150,08/07/19 10:54,"226 Highland St, San Francisco, CA 94016" +242644,AA Batteries (4-pack),1,3.84,08/07/19 21:44,"253 Jefferson St, Dallas, TX 75001" +242645,27in 4K Gaming Monitor,1,389.99,08/27/19 09:42,"69 Sunset St, San Francisco, CA 94016" +242646,AA Batteries (4-pack),4,3.84,08/21/19 17:46,"914 River St, San Francisco, CA 94016" +242647,AAA Batteries (4-pack),1,2.99,08/01/19 19:14,"902 5th St, Boston, MA 02215" +242648,Lightning Charging Cable,1,14.95,08/05/19 19:48,"40 West St, Boston, MA 02215" +242649,AA Batteries (4-pack),1,3.84,08/13/19 21:12,"182 River St, Seattle, WA 98101" +242650,Wired Headphones,1,11.99,08/03/19 09:21,"432 1st St, New York City, NY 10001" +242651,Bose SoundSport Headphones,1,99.99,08/27/19 13:38,"333 Dogwood St, Los Angeles, CA 90001" +242652,AA Batteries (4-pack),1,3.84,08/28/19 08:32,"862 Elm St, Atlanta, GA 30301" +242653,USB-C Charging Cable,1,11.95,08/06/19 17:26,"14 Johnson St, San Francisco, CA 94016" +242654,Apple Airpods Headphones,1,150,08/25/19 19:58,"857 Meadow St, New York City, NY 10001" +242655,27in 4K Gaming Monitor,1,389.99,08/24/19 13:41,"611 Lincoln St, Atlanta, GA 30301" +242656,USB-C Charging Cable,1,11.95,08/16/19 15:54,"947 Spruce St, San Francisco, CA 94016" +242657,27in 4K Gaming Monitor,1,389.99,08/18/19 12:38,"512 Center St, San Francisco, CA 94016" +242658,USB-C Charging Cable,1,11.95,08/28/19 11:20,"100 Elm St, Austin, TX 73301" +242659,Google Phone,1,600,08/20/19 19:13,"850 Adams St, Boston, MA 02215" +242659,Bose SoundSport Headphones,1,99.99,08/20/19 19:13,"850 Adams St, Boston, MA 02215" +242660,AAA Batteries (4-pack),1,2.99,08/04/19 14:50,"413 4th St, Dallas, TX 75001" +242661,AAA Batteries (4-pack),1,2.99,08/30/19 10:24,"917 South St, Atlanta, GA 30301" +242662,Lightning Charging Cable,1,14.95,08/20/19 18:16,"377 5th St, Los Angeles, CA 90001" +242663,27in 4K Gaming Monitor,1,389.99,08/19/19 08:08,"35 13th St, San Francisco, CA 94016" +242664,AA Batteries (4-pack),1,3.84,08/15/19 15:42,"774 Jefferson St, San Francisco, CA 94016" +242665,27in 4K Gaming Monitor,1,389.99,08/04/19 21:05,"72 Washington St, Seattle, WA 98101" +242666,Flatscreen TV,1,300,08/05/19 10:43,"640 River St, Portland, OR 97035" +242667,Bose SoundSport Headphones,1,99.99,08/01/19 07:46,"754 1st St, Dallas, TX 75001" +242668,Lightning Charging Cable,1,14.95,08/27/19 14:17,"377 Highland St, Seattle, WA 98101" +242669,AAA Batteries (4-pack),2,2.99,08/26/19 17:52,"701 13th St, Dallas, TX 75001" +242670,AA Batteries (4-pack),1,3.84,08/24/19 22:33,"57 5th St, San Francisco, CA 94016" +242671,Wired Headphones,1,11.99,08/09/19 21:34,"990 Main St, Los Angeles, CA 90001" +242672,Apple Airpods Headphones,1,150,08/15/19 22:28,"577 Lakeview St, Dallas, TX 75001" +242673,Wired Headphones,1,11.99,08/28/19 11:27,"394 Center St, New York City, NY 10001" +242674,AA Batteries (4-pack),1,3.84,08/15/19 18:16,"762 Johnson St, New York City, NY 10001" +242675,iPhone,1,700,08/28/19 13:20,"988 2nd St, New York City, NY 10001" +242675,Apple Airpods Headphones,1,150,08/28/19 13:20,"988 2nd St, New York City, NY 10001" +242676,Bose SoundSport Headphones,1,99.99,08/06/19 07:25,"508 Forest St, Atlanta, GA 30301" +242677,Lightning Charging Cable,1,14.95,08/14/19 06:52,"707 Forest St, San Francisco, CA 94016" +242678,AAA Batteries (4-pack),4,2.99,08/17/19 13:32,"283 Cedar St, San Francisco, CA 94016" +242679,34in Ultrawide Monitor,1,379.99,08/08/19 10:00,"107 Main St, San Francisco, CA 94016" +242680,USB-C Charging Cable,1,11.95,08/26/19 10:39,"119 Adams St, Seattle, WA 98101" +242681,Macbook Pro Laptop,1,1700,08/04/19 10:56,"315 Spruce St, Dallas, TX 75001" +242682,Wired Headphones,1,11.99,08/17/19 11:04,"109 Hickory St, Boston, MA 02215" +242683,USB-C Charging Cable,3,11.95,08/10/19 00:04,"519 Ridge St, Dallas, TX 75001" +242684,AAA Batteries (4-pack),1,2.99,08/17/19 07:15,"828 Spruce St, Seattle, WA 98101" +242685,AAA Batteries (4-pack),2,2.99,08/10/19 09:27,"380 Lake St, Atlanta, GA 30301" +242686,20in Monitor,1,109.99,08/08/19 12:39,"767 8th St, Portland, OR 97035" +242687,Wired Headphones,1,11.99,08/01/19 16:09,"713 2nd St, Boston, MA 02215" +242688,Google Phone,1,600,08/01/19 10:49,"118 North St, San Francisco, CA 94016" +242689,AAA Batteries (4-pack),3,2.99,08/15/19 16:40,"630 Lakeview St, New York City, NY 10001" +242690,Flatscreen TV,1,300,08/12/19 20:52,"892 Willow St, Atlanta, GA 30301" +242691,Lightning Charging Cable,1,14.95,08/03/19 20:45,"292 Willow St, Dallas, TX 75001" +242691,Bose SoundSport Headphones,1,99.99,08/03/19 20:45,"292 Willow St, Dallas, TX 75001" +242692,27in FHD Monitor,1,149.99,08/09/19 19:43,"979 Maple St, Dallas, TX 75001" +242693,Macbook Pro Laptop,1,1700,08/17/19 13:29,"515 2nd St, San Francisco, CA 94016" +242694,USB-C Charging Cable,1,11.95,08/14/19 12:20,"709 Madison St, Austin, TX 73301" +242695,34in Ultrawide Monitor,1,379.99,08/17/19 12:44,"826 Elm St, New York City, NY 10001" +242696,USB-C Charging Cable,1,11.95,08/29/19 19:42,"40 Washington St, San Francisco, CA 94016" +242697,USB-C Charging Cable,1,11.95,08/14/19 13:47,"807 2nd St, San Francisco, CA 94016" +242698,USB-C Charging Cable,1,11.95,08/10/19 21:43,"98 Walnut St, San Francisco, CA 94016" +242699,27in 4K Gaming Monitor,1,389.99,08/10/19 07:30,"173 1st St, Portland, OR 97035" +242700,34in Ultrawide Monitor,1,379.99,08/29/19 19:42,"807 Forest St, San Francisco, CA 94016" +242701,Google Phone,1,600,08/27/19 13:26,"178 12th St, Atlanta, GA 30301" +242701,USB-C Charging Cable,1,11.95,08/27/19 13:26,"178 12th St, Atlanta, GA 30301" +242702,ThinkPad Laptop,1,999.99,08/03/19 00:34,"722 Park St, San Francisco, CA 94016" +242703,Wired Headphones,1,11.99,08/03/19 00:25,"609 Church St, San Francisco, CA 94016" +242704,LG Dryer,1,600.0,08/04/19 07:08,"151 Walnut St, Los Angeles, CA 90001" +242705,ThinkPad Laptop,1,999.99,08/28/19 21:53,"939 Cedar St, San Francisco, CA 94016" +242706,Wired Headphones,1,11.99,08/27/19 05:17,"977 Lake St, Portland, ME 04101" +242707,Lightning Charging Cable,1,14.95,08/27/19 17:02,"180 Lake St, Boston, MA 02215" +242708,Apple Airpods Headphones,1,150,08/11/19 15:09,"600 6th St, New York City, NY 10001" +242709,AAA Batteries (4-pack),1,2.99,08/12/19 21:12,"978 4th St, San Francisco, CA 94016" +242710,AA Batteries (4-pack),1,3.84,08/27/19 10:24,"346 Center St, Portland, OR 97035" +242711,34in Ultrawide Monitor,1,379.99,08/28/19 19:48,"163 Chestnut St, Austin, TX 73301" +242712,Lightning Charging Cable,2,14.95,08/30/19 20:03,"405 Hill St, New York City, NY 10001" +242713,Bose SoundSport Headphones,1,99.99,08/13/19 13:57,"304 Elm St, Boston, MA 02215" +242714,AAA Batteries (4-pack),1,2.99,08/05/19 08:27,"167 5th St, Los Angeles, CA 90001" +242715,Macbook Pro Laptop,1,1700,08/01/19 15:31,"847 14th St, Los Angeles, CA 90001" +242716,27in 4K Gaming Monitor,1,389.99,08/26/19 13:11,"35 Spruce St, San Francisco, CA 94016" +242717,Lightning Charging Cable,1,14.95,08/17/19 08:49,"82 Pine St, New York City, NY 10001" +242718,AAA Batteries (4-pack),2,2.99,08/18/19 06:51,"970 Wilson St, Boston, MA 02215" +242719,Apple Airpods Headphones,1,150,08/01/19 11:45,"332 9th St, Dallas, TX 75001" +242720,AA Batteries (4-pack),2,3.84,08/08/19 19:45,"918 Adams St, Portland, OR 97035" +242721,AAA Batteries (4-pack),1,2.99,08/16/19 22:54,"907 11th St, Seattle, WA 98101" +242722,Wired Headphones,1,11.99,08/04/19 18:26,"755 South St, New York City, NY 10001" +242723,Wired Headphones,1,11.99,08/17/19 20:37,"198 Forest St, Los Angeles, CA 90001" +242724,AA Batteries (4-pack),2,3.84,08/26/19 20:43,"744 Ridge St, Los Angeles, CA 90001" +242725,iPhone,1,700,08/21/19 12:45,"655 11th St, New York City, NY 10001" +242726,Bose SoundSport Headphones,1,99.99,08/23/19 16:26,"755 Adams St, New York City, NY 10001" +242727,USB-C Charging Cable,2,11.95,08/25/19 16:21,"815 Johnson St, New York City, NY 10001" +242728,Bose SoundSport Headphones,1,99.99,08/02/19 09:38,"810 6th St, Seattle, WA 98101" +242729,Google Phone,1,600,08/11/19 09:45,"784 Jackson St, Los Angeles, CA 90001" +242729,Wired Headphones,1,11.99,08/11/19 09:45,"784 Jackson St, Los Angeles, CA 90001" +242730,Lightning Charging Cable,1,14.95,08/15/19 20:23,"793 Highland St, San Francisco, CA 94016" +242731,Apple Airpods Headphones,1,150,08/27/19 13:40,"193 Pine St, San Francisco, CA 94016" +242732,Google Phone,1,600,08/19/19 19:29,"340 Lincoln St, New York City, NY 10001" +242733,Lightning Charging Cable,1,14.95,08/21/19 13:30,"120 Pine St, Los Angeles, CA 90001" +242734,Wired Headphones,1,11.99,08/17/19 18:02,"630 7th St, Boston, MA 02215" +242735,AA Batteries (4-pack),1,3.84,08/28/19 22:44,"971 10th St, Los Angeles, CA 90001" +242736,Apple Airpods Headphones,1,150,08/03/19 08:03,"519 Johnson St, Dallas, TX 75001" +242737,20in Monitor,1,109.99,08/10/19 16:47,"191 Willow St, San Francisco, CA 94016" +242738,AAA Batteries (4-pack),1,2.99,08/09/19 01:46,"566 Adams St, San Francisco, CA 94016" +242739,Apple Airpods Headphones,1,150,08/12/19 14:37,"912 Lakeview St, Portland, ME 04101" +242740,Apple Airpods Headphones,1,150,08/24/19 23:01,"868 Sunset St, San Francisco, CA 94016" +242741,Macbook Pro Laptop,1,1700,08/16/19 07:42,"539 6th St, San Francisco, CA 94016" +242742,AAA Batteries (4-pack),1,2.99,08/29/19 12:27,"795 Maple St, Los Angeles, CA 90001" +242743,AA Batteries (4-pack),3,3.84,08/29/19 10:09,"421 Pine St, Boston, MA 02215" +242744,Macbook Pro Laptop,1,1700,08/24/19 23:48,"139 11th St, San Francisco, CA 94016" +242745,Lightning Charging Cable,1,14.95,08/13/19 22:03,"1 12th St, San Francisco, CA 94016" +242746,27in FHD Monitor,1,149.99,08/30/19 05:33,"99 11th St, Los Angeles, CA 90001" +242747,AA Batteries (4-pack),1,3.84,08/25/19 07:29,"546 5th St, New York City, NY 10001" +242748,AA Batteries (4-pack),1,3.84,08/28/19 20:14,"351 4th St, Boston, MA 02215" +242749,AAA Batteries (4-pack),1,2.99,08/21/19 15:19,"961 7th St, Portland, OR 97035" +242750,Flatscreen TV,1,300,08/30/19 09:05,"809 4th St, Dallas, TX 75001" +242751,AA Batteries (4-pack),1,3.84,08/27/19 16:21,"968 Walnut St, Boston, MA 02215" +242752,AA Batteries (4-pack),3,3.84,08/05/19 13:13,"538 Lakeview St, Seattle, WA 98101" +242753,34in Ultrawide Monitor,1,379.99,08/16/19 01:13,"954 Madison St, New York City, NY 10001" +242754,Lightning Charging Cable,1,14.95,08/06/19 18:50,"376 Cherry St, Dallas, TX 75001" +242755,34in Ultrawide Monitor,1,379.99,08/12/19 21:46,"6 1st St, Los Angeles, CA 90001" +242756,34in Ultrawide Monitor,1,379.99,08/17/19 17:37,"761 Chestnut St, San Francisco, CA 94016" +242757,AAA Batteries (4-pack),1,2.99,08/29/19 11:45,"104 5th St, San Francisco, CA 94016" +242758,AA Batteries (4-pack),2,3.84,08/15/19 21:41,"188 Cherry St, Portland, OR 97035" +242759,34in Ultrawide Monitor,1,379.99,08/14/19 16:32,"325 Park St, Portland, OR 97035" +242760,AAA Batteries (4-pack),1,2.99,08/24/19 07:29,"451 Jackson St, Atlanta, GA 30301" +242761,Wired Headphones,1,11.99,08/18/19 10:22,"581 Spruce St, Atlanta, GA 30301" +242762,Lightning Charging Cable,1,14.95,08/10/19 20:49,"512 9th St, New York City, NY 10001" +242763,Wired Headphones,1,11.99,08/02/19 05:43,"451 Highland St, San Francisco, CA 94016" +242764,Apple Airpods Headphones,1,150,08/22/19 08:18,"794 River St, Boston, MA 02215" +242765,Wired Headphones,1,11.99,08/22/19 11:11,"528 Lake St, Los Angeles, CA 90001" +242766,Macbook Pro Laptop,1,1700,08/11/19 18:30,"681 West St, San Francisco, CA 94016" +242767,AAA Batteries (4-pack),3,2.99,08/03/19 08:13,"873 Cherry St, New York City, NY 10001" +242768,AAA Batteries (4-pack),2,2.99,08/22/19 12:32,"373 Willow St, New York City, NY 10001" +242769,Flatscreen TV,1,300,08/20/19 18:48,"960 Cherry St, New York City, NY 10001" +242770,Bose SoundSport Headphones,1,99.99,08/11/19 21:29,"898 12th St, Boston, MA 02215" +242771,AA Batteries (4-pack),1,3.84,08/21/19 11:36,"893 Willow St, New York City, NY 10001" +242772,AAA Batteries (4-pack),1,2.99,08/06/19 19:20,"268 South St, San Francisco, CA 94016" +242773,AAA Batteries (4-pack),4,2.99,08/29/19 14:36,"52 13th St, Seattle, WA 98101" +242774,Bose SoundSport Headphones,1,99.99,08/28/19 17:20,"729 8th St, Dallas, TX 75001" +242775,34in Ultrawide Monitor,1,379.99,08/29/19 14:12,"789 11th St, San Francisco, CA 94016" +242776,AA Batteries (4-pack),1,3.84,08/14/19 13:04,"51 Dogwood St, New York City, NY 10001" +242777,27in FHD Monitor,1,149.99,08/18/19 08:39,"914 Washington St, Portland, OR 97035" +242778,27in 4K Gaming Monitor,1,389.99,08/12/19 13:24,"372 Walnut St, Atlanta, GA 30301" +242779,Apple Airpods Headphones,1,150,08/13/19 07:44,"222 Church St, San Francisco, CA 94016" +242780,AA Batteries (4-pack),1,3.84,08/26/19 13:04,"860 8th St, Boston, MA 02215" +242781,USB-C Charging Cable,1,11.95,08/31/19 10:18,"183 Maple St, Dallas, TX 75001" +242782,Apple Airpods Headphones,1,150,08/02/19 16:18,"414 Johnson St, New York City, NY 10001" +242783,Lightning Charging Cable,1,14.95,08/30/19 11:15,"993 Lakeview St, Los Angeles, CA 90001" +242784,AA Batteries (4-pack),1,3.84,08/22/19 18:18,"500 North St, San Francisco, CA 94016" +242785,AAA Batteries (4-pack),1,2.99,08/28/19 23:15,"661 Maple St, Austin, TX 73301" +242786,Bose SoundSport Headphones,1,99.99,08/18/19 02:46,"505 Jefferson St, New York City, NY 10001" +242787,Google Phone,1,600,08/15/19 18:42,"676 Johnson St, New York City, NY 10001" +242787,USB-C Charging Cable,1,11.95,08/15/19 18:42,"676 Johnson St, New York City, NY 10001" +242788,AAA Batteries (4-pack),2,2.99,08/02/19 16:15,"111 Jefferson St, Seattle, WA 98101" +242789,Lightning Charging Cable,1,14.95,08/25/19 10:13,"759 1st St, Los Angeles, CA 90001" +242790,Apple Airpods Headphones,1,150,08/13/19 12:19,"464 Ridge St, Dallas, TX 75001" +242791,USB-C Charging Cable,1,11.95,08/31/19 22:20,"514 12th St, Atlanta, GA 30301" +242792,Lightning Charging Cable,1,14.95,08/12/19 22:30,"718 Church St, Dallas, TX 75001" +242793,Bose SoundSport Headphones,1,99.99,08/05/19 12:26,"767 Pine St, Seattle, WA 98101" +242794,USB-C Charging Cable,1,11.95,08/19/19 20:20,"34 South St, San Francisco, CA 94016" +242795,AAA Batteries (4-pack),3,2.99,08/25/19 18:50,"759 Hill St, San Francisco, CA 94016" +242796,Apple Airpods Headphones,1,150,08/18/19 21:56,"935 Center St, Los Angeles, CA 90001" +242797,Wired Headphones,1,11.99,08/03/19 19:20,"675 Lakeview St, Boston, MA 02215" +242798,AA Batteries (4-pack),1,3.84,08/16/19 16:42,"517 West St, Los Angeles, CA 90001" +242799,AA Batteries (4-pack),2,3.84,08/22/19 22:50,"5 6th St, San Francisco, CA 94016" +242800,Bose SoundSport Headphones,1,99.99,08/14/19 17:34,"292 Cedar St, Atlanta, GA 30301" +242801,Lightning Charging Cable,1,14.95,08/31/19 22:26,"766 North St, San Francisco, CA 94016" +242802,Wired Headphones,1,11.99,08/15/19 09:57,"202 7th St, New York City, NY 10001" +242803,Lightning Charging Cable,1,14.95,08/30/19 12:18,"887 North St, Boston, MA 02215" +242804,Google Phone,1,600,08/03/19 11:56,"678 Highland St, Los Angeles, CA 90001" +242805,Apple Airpods Headphones,1,150,08/26/19 09:45,"443 Sunset St, San Francisco, CA 94016" +242806,Wired Headphones,2,11.99,08/02/19 10:26,"305 Ridge St, Los Angeles, CA 90001" +242807,Flatscreen TV,1,300,08/13/19 09:35,"294 Lake St, Dallas, TX 75001" +242808,Wired Headphones,2,11.99,08/06/19 23:16,"987 Forest St, Boston, MA 02215" +242809,Lightning Charging Cable,1,14.95,08/04/19 08:08,"540 Main St, Seattle, WA 98101" +242810,USB-C Charging Cable,1,11.95,08/28/19 00:49,"8 Dogwood St, Dallas, TX 75001" +242811,AAA Batteries (4-pack),1,2.99,08/21/19 06:52,"215 Lake St, Atlanta, GA 30301" +242812,27in 4K Gaming Monitor,1,389.99,08/21/19 05:31,"338 5th St, Los Angeles, CA 90001" +242813,AA Batteries (4-pack),1,3.84,08/09/19 13:21,"553 Chestnut St, Atlanta, GA 30301" +242814,ThinkPad Laptop,1,999.99,08/12/19 07:28,"440 Main St, New York City, NY 10001" +242815,27in 4K Gaming Monitor,1,389.99,08/15/19 13:12,"19 River St, Dallas, TX 75001" +242816,iPhone,1,700,08/31/19 11:09,"682 Hill St, Los Angeles, CA 90001" +242817,AAA Batteries (4-pack),1,2.99,08/15/19 12:17,"858 Main St, Los Angeles, CA 90001" +242817,Google Phone,1,600,08/15/19 12:17,"858 Main St, Los Angeles, CA 90001" +242818,Wired Headphones,1,11.99,08/04/19 10:13,"596 13th St, Portland, ME 04101" +242819,Google Phone,1,600,08/14/19 10:27,"586 6th St, New York City, NY 10001" +242819,USB-C Charging Cable,1,11.95,08/14/19 10:27,"586 6th St, New York City, NY 10001" +242819,Wired Headphones,1,11.99,08/14/19 10:27,"586 6th St, New York City, NY 10001" +242820,Wired Headphones,1,11.99,08/10/19 17:28,"548 10th St, San Francisco, CA 94016" +242821,AAA Batteries (4-pack),1,2.99,08/03/19 12:54,"821 12th St, Boston, MA 02215" +242821,Wired Headphones,1,11.99,08/03/19 12:54,"821 12th St, Boston, MA 02215" +242822,Bose SoundSport Headphones,1,99.99,08/11/19 14:52,"115 River St, Austin, TX 73301" +242823,Flatscreen TV,1,300,08/12/19 10:33,"205 Willow St, Atlanta, GA 30301" +242824,Apple Airpods Headphones,1,150,08/25/19 22:07,"487 2nd St, San Francisco, CA 94016" +242825,27in FHD Monitor,1,149.99,08/05/19 12:50,"90 Jefferson St, Los Angeles, CA 90001" +242826,Lightning Charging Cable,1,14.95,08/12/19 16:33,"61 Hill St, New York City, NY 10001" +242827,Apple Airpods Headphones,1,150,08/20/19 16:20,"39 Forest St, San Francisco, CA 94016" +242828,AA Batteries (4-pack),3,3.84,08/25/19 14:01,"708 West St, Boston, MA 02215" +242829,Wired Headphones,1,11.99,08/21/19 18:43,"831 Forest St, Los Angeles, CA 90001" +242830,Lightning Charging Cable,1,14.95,08/15/19 19:50,"916 Lakeview St, Atlanta, GA 30301" +242831,Flatscreen TV,1,300,08/10/19 11:32,"141 Spruce St, New York City, NY 10001" +242832,Lightning Charging Cable,1,14.95,08/15/19 22:59,"842 Maple St, Portland, OR 97035" +242833,AAA Batteries (4-pack),3,2.99,08/01/19 14:55,"101 Washington St, Seattle, WA 98101" +242834,Apple Airpods Headphones,1,150,08/01/19 09:02,"263 Church St, Los Angeles, CA 90001" +242835,Vareebadd Phone,1,400,08/05/19 12:31,"116 Church St, Austin, TX 73301" +242835,USB-C Charging Cable,1,11.95,08/05/19 12:31,"116 Church St, Austin, TX 73301" +242836,27in FHD Monitor,1,149.99,08/07/19 15:36,"884 Ridge St, Boston, MA 02215" +242837,27in 4K Gaming Monitor,1,389.99,08/02/19 22:17,"120 Madison St, Los Angeles, CA 90001" +242838,Lightning Charging Cable,1,14.95,08/27/19 20:51,"337 11th St, San Francisco, CA 94016" +242839,AAA Batteries (4-pack),1,2.99,08/22/19 18:05,"540 Spruce St, Atlanta, GA 30301" +242840,Bose SoundSport Headphones,1,99.99,08/21/19 19:38,"372 Adams St, San Francisco, CA 94016" +242841,20in Monitor,1,109.99,08/19/19 16:38,"962 4th St, San Francisco, CA 94016" +242842,34in Ultrawide Monitor,1,379.99,08/16/19 12:08,"521 Pine St, San Francisco, CA 94016" +242843,AA Batteries (4-pack),1,3.84,08/25/19 18:38,"296 Elm St, Atlanta, GA 30301" +242844,Lightning Charging Cable,2,14.95,08/30/19 02:42,"24 Spruce St, Atlanta, GA 30301" +242845,Bose SoundSport Headphones,1,99.99,08/29/19 15:38,"631 River St, New York City, NY 10001" +242846,AA Batteries (4-pack),3,3.84,08/06/19 19:57,"374 Highland St, New York City, NY 10001" +242847,Wired Headphones,1,11.99,08/05/19 13:36,"101 14th St, Boston, MA 02215" +242848,Bose SoundSport Headphones,1,99.99,08/14/19 17:49,"293 Elm St, New York City, NY 10001" +242849,Google Phone,1,600,08/16/19 19:03,"948 Hickory St, San Francisco, CA 94016" +242850,27in FHD Monitor,1,149.99,08/09/19 14:58,"184 Main St, Boston, MA 02215" +242851,Apple Airpods Headphones,1,150,08/29/19 11:53,"154 9th St, New York City, NY 10001" +242852,Apple Airpods Headphones,1,150,08/12/19 21:53,"100 Spruce St, San Francisco, CA 94016" +242853,Apple Airpods Headphones,1,150,08/21/19 10:06,"434 Elm St, San Francisco, CA 94016" +242854,AA Batteries (4-pack),1,3.84,08/10/19 20:27,"364 Pine St, Austin, TX 73301" +242855,AAA Batteries (4-pack),1,2.99,08/11/19 10:22,"644 12th St, Austin, TX 73301" +242856,Lightning Charging Cable,1,14.95,08/17/19 04:39,"145 River St, Seattle, WA 98101" +242857,AAA Batteries (4-pack),1,2.99,08/16/19 16:27,"474 Walnut St, Seattle, WA 98101" +242858,Lightning Charging Cable,1,14.95,08/04/19 16:11,"708 Forest St, New York City, NY 10001" +242859,27in FHD Monitor,1,149.99,08/23/19 21:52,"320 Church St, Los Angeles, CA 90001" +242860,27in FHD Monitor,1,149.99,08/06/19 18:53,"260 Maple St, Seattle, WA 98101" +242861,Wired Headphones,1,11.99,08/27/19 11:24,"820 13th St, Los Angeles, CA 90001" +242862,AA Batteries (4-pack),1,3.84,08/02/19 13:06,"792 Wilson St, San Francisco, CA 94016" +242863,Lightning Charging Cable,1,14.95,08/29/19 19:49,"768 Meadow St, San Francisco, CA 94016" +242864,Apple Airpods Headphones,1,150,08/15/19 11:53,"254 Lake St, Boston, MA 02215" +242865,Lightning Charging Cable,1,14.95,08/30/19 08:29,"895 Cedar St, Seattle, WA 98101" +242866,34in Ultrawide Monitor,1,379.99,08/19/19 17:05,"898 4th St, Dallas, TX 75001" +242867,Apple Airpods Headphones,1,150,08/27/19 14:24,"726 5th St, San Francisco, CA 94016" +242868,USB-C Charging Cable,1,11.95,08/26/19 15:45,"210 Main St, Dallas, TX 75001" +242869,AA Batteries (4-pack),1,3.84,08/04/19 13:04,"775 Lakeview St, Boston, MA 02215" +242870,Bose SoundSport Headphones,1,99.99,08/11/19 11:29,"171 11th St, Los Angeles, CA 90001" +242871,AA Batteries (4-pack),2,3.84,08/27/19 12:06,"257 5th St, San Francisco, CA 94016" +242872,Apple Airpods Headphones,1,150,08/04/19 21:05,"907 Maple St, Boston, MA 02215" +242873,Bose SoundSport Headphones,1,99.99,08/28/19 14:15,"702 Dogwood St, Portland, OR 97035" +242874,Google Phone,1,600,08/27/19 19:47,"951 Dogwood St, San Francisco, CA 94016" +242875,Bose SoundSport Headphones,1,99.99,08/28/19 09:52,"917 North St, Austin, TX 73301" +242876,Wired Headphones,1,11.99,08/10/19 15:13,"847 Park St, Atlanta, GA 30301" +,,,,, +242877,Wired Headphones,1,11.99,08/12/19 12:08,"773 Jefferson St, Los Angeles, CA 90001" +242878,AA Batteries (4-pack),2,3.84,08/03/19 06:01,"569 Willow St, New York City, NY 10001" +242879,Wired Headphones,1,11.99,08/26/19 22:38,"803 1st St, Boston, MA 02215" +242880,Apple Airpods Headphones,1,150,08/14/19 05:51,"575 Dogwood St, Portland, OR 97035" +242881,Wired Headphones,1,11.99,08/03/19 18:56,"646 13th St, Boston, MA 02215" +242882,AAA Batteries (4-pack),1,2.99,08/10/19 21:14,"618 North St, New York City, NY 10001" +242883,Lightning Charging Cable,1,14.95,08/29/19 11:55,"798 Walnut St, Boston, MA 02215" +242884,AAA Batteries (4-pack),3,2.99,08/13/19 07:32,"652 River St, San Francisco, CA 94016" +242885,AA Batteries (4-pack),2,3.84,08/27/19 23:16,"454 Lakeview St, Austin, TX 73301" +242886,AA Batteries (4-pack),3,3.84,08/02/19 20:09,"726 10th St, San Francisco, CA 94016" +242887,AAA Batteries (4-pack),3,2.99,08/02/19 18:18,"909 Meadow St, San Francisco, CA 94016" +242888,USB-C Charging Cable,1,11.95,08/24/19 21:44,"910 Hill St, Boston, MA 02215" +242889,AA Batteries (4-pack),1,3.84,08/08/19 08:48,"849 Hickory St, Seattle, WA 98101" +242890,AAA Batteries (4-pack),1,2.99,08/05/19 22:34,"903 Hickory St, Dallas, TX 75001" +242891,USB-C Charging Cable,1,11.95,08/31/19 20:19,"935 Madison St, San Francisco, CA 94016" +242892,Bose SoundSport Headphones,1,99.99,08/09/19 18:55,"97 14th St, Atlanta, GA 30301" +242893,Bose SoundSport Headphones,1,99.99,08/14/19 09:48,"430 Lake St, San Francisco, CA 94016" +242894,Bose SoundSport Headphones,1,99.99,08/27/19 05:19,"135 Lake St, Seattle, WA 98101" +242895,27in 4K Gaming Monitor,1,389.99,08/19/19 18:16,"801 Hill St, San Francisco, CA 94016" +242896,Apple Airpods Headphones,1,150,08/22/19 19:03,"256 Jackson St, Atlanta, GA 30301" +242897,USB-C Charging Cable,1,11.95,08/23/19 17:34,"977 13th St, Dallas, TX 75001" +242898,27in FHD Monitor,1,149.99,08/04/19 12:55,"637 Walnut St, Atlanta, GA 30301" +242899,USB-C Charging Cable,1,11.95,08/28/19 19:22,"230 6th St, Los Angeles, CA 90001" +242900,USB-C Charging Cable,1,11.95,08/12/19 02:27,"73 Walnut St, Atlanta, GA 30301" +242901,Macbook Pro Laptop,1,1700,08/11/19 16:19,"841 Cedar St, San Francisco, CA 94016" +242902,Wired Headphones,1,11.99,08/19/19 00:30,"820 Madison St, San Francisco, CA 94016" +242903,ThinkPad Laptop,1,999.99,08/23/19 18:06,"121 Pine St, Portland, OR 97035" +242904,Bose SoundSport Headphones,1,99.99,08/28/19 19:47,"793 Washington St, New York City, NY 10001" +242905,USB-C Charging Cable,1,11.95,08/15/19 20:05,"401 Highland St, San Francisco, CA 94016" +242906,Wired Headphones,1,11.99,08/13/19 18:29,"831 Maple St, Los Angeles, CA 90001" +242907,Lightning Charging Cable,1,14.95,08/02/19 13:43,"178 Adams St, Boston, MA 02215" +242908,USB-C Charging Cable,1,11.95,08/01/19 11:56,"601 South St, San Francisco, CA 94016" +242909,Vareebadd Phone,1,400,08/02/19 20:43,"201 West St, Boston, MA 02215" +242910,Wired Headphones,1,11.99,08/23/19 23:09,"221 9th St, Los Angeles, CA 90001" +242911,27in 4K Gaming Monitor,1,389.99,08/12/19 21:55,"609 Hill St, Boston, MA 02215" +242912,Wired Headphones,1,11.99,08/25/19 15:58,"766 Jefferson St, Seattle, WA 98101" +242913,AAA Batteries (4-pack),3,2.99,08/13/19 10:36,"29 Lakeview St, Los Angeles, CA 90001" +242914,27in FHD Monitor,1,149.99,08/18/19 19:06,"615 River St, New York City, NY 10001" +242915,Lightning Charging Cable,1,14.95,08/05/19 21:31,"84 Pine St, Atlanta, GA 30301" +242916,Lightning Charging Cable,1,14.95,08/01/19 19:15,"606 Meadow St, Seattle, WA 98101" +242917,20in Monitor,1,109.99,08/16/19 13:56,"730 Elm St, Dallas, TX 75001" +242918,Wired Headphones,1,11.99,08/14/19 15:02,"181 Dogwood St, Los Angeles, CA 90001" +242919,LG Washing Machine,1,600.0,08/03/19 15:04,"690 Cherry St, Seattle, WA 98101" +242920,AA Batteries (4-pack),1,3.84,08/25/19 21:00,"140 Dogwood St, San Francisco, CA 94016" +242921,AAA Batteries (4-pack),1,2.99,08/13/19 16:45,"579 7th St, Boston, MA 02215" +242922,iPhone,1,700,08/04/19 14:49,"833 Lakeview St, San Francisco, CA 94016" +242923,AAA Batteries (4-pack),2,2.99,08/06/19 22:03,"158 Washington St, Atlanta, GA 30301" +242924,iPhone,1,700,08/01/19 21:23,"370 Cherry St, Seattle, WA 98101" +242925,ThinkPad Laptop,1,999.99,08/25/19 19:11,"748 Madison St, Los Angeles, CA 90001" +242926,Wired Headphones,1,11.99,08/31/19 18:10,"754 River St, Portland, ME 04101" +242927,Bose SoundSport Headphones,1,99.99,08/28/19 11:18,"931 14th St, San Francisco, CA 94016" +242928,USB-C Charging Cable,1,11.95,08/19/19 16:21,"193 West St, Dallas, TX 75001" +242929,Lightning Charging Cable,1,14.95,08/20/19 17:34,"732 Park St, San Francisco, CA 94016" +242930,27in FHD Monitor,1,149.99,08/19/19 19:20,"707 Center St, New York City, NY 10001" +242931,Macbook Pro Laptop,1,1700,08/22/19 16:52,"8 West St, Boston, MA 02215" +242932,27in 4K Gaming Monitor,1,389.99,08/09/19 15:33,"910 7th St, Atlanta, GA 30301" +242933,Wired Headphones,1,11.99,08/21/19 18:43,"91 Willow St, Atlanta, GA 30301" +242934,Bose SoundSport Headphones,1,99.99,08/28/19 04:21,"28 Wilson St, Los Angeles, CA 90001" +242935,Bose SoundSport Headphones,1,99.99,08/28/19 12:45,"525 Lincoln St, Dallas, TX 75001" +242936,USB-C Charging Cable,1,11.95,08/18/19 03:33,"20 11th St, San Francisco, CA 94016" +242937,iPhone,1,700,08/14/19 21:39,"136 1st St, Dallas, TX 75001" +242937,Wired Headphones,1,11.99,08/14/19 21:39,"136 1st St, Dallas, TX 75001" +242938,AA Batteries (4-pack),2,3.84,08/06/19 20:41,"221 Jefferson St, Atlanta, GA 30301" +242939,Lightning Charging Cable,1,14.95,08/30/19 13:52,"554 6th St, San Francisco, CA 94016" +242940,Lightning Charging Cable,1,14.95,08/05/19 13:14,"866 Forest St, Los Angeles, CA 90001" +242941,Macbook Pro Laptop,1,1700,08/19/19 19:32,"53 Pine St, Los Angeles, CA 90001" +242942,Bose SoundSport Headphones,1,99.99,08/13/19 23:25,"331 13th St, Boston, MA 02215" +242943,20in Monitor,1,109.99,08/07/19 21:13,"638 West St, San Francisco, CA 94016" +242943,Flatscreen TV,1,300,08/07/19 21:13,"638 West St, San Francisco, CA 94016" +242944,Vareebadd Phone,1,400,08/23/19 10:29,"236 Ridge St, Atlanta, GA 30301" +242945,34in Ultrawide Monitor,1,379.99,08/17/19 01:23,"646 9th St, Los Angeles, CA 90001" +242946,USB-C Charging Cable,1,11.95,08/04/19 21:24,"396 Sunset St, Seattle, WA 98101" +242947,AAA Batteries (4-pack),2,2.99,08/27/19 21:06,"82 13th St, Atlanta, GA 30301" +242948,Bose SoundSport Headphones,1,99.99,08/25/19 17:48,"534 Wilson St, Austin, TX 73301" +242949,27in 4K Gaming Monitor,1,389.99,08/04/19 08:33,"662 Pine St, Seattle, WA 98101" +242950,USB-C Charging Cable,1,11.95,08/04/19 23:20,"96 10th St, San Francisco, CA 94016" +242951,27in FHD Monitor,1,149.99,08/21/19 11:30,"109 Park St, Austin, TX 73301" +242951,Apple Airpods Headphones,1,150,08/21/19 11:30,"109 Park St, Austin, TX 73301" +242952,Macbook Pro Laptop,1,1700,08/09/19 19:52,"782 12th St, Austin, TX 73301" +242953,Bose SoundSport Headphones,1,99.99,08/06/19 18:33,"121 Hickory St, New York City, NY 10001" +242954,20in Monitor,1,109.99,08/31/19 20:39,"332 Lake St, Atlanta, GA 30301" +242955,AA Batteries (4-pack),1,3.84,08/18/19 08:23,"176 Lakeview St, Los Angeles, CA 90001" +242956,Vareebadd Phone,1,400,08/06/19 13:35,"28 10th St, Dallas, TX 75001" +242957,Lightning Charging Cable,1,14.95,08/17/19 20:22,"82 5th St, Los Angeles, CA 90001" +242958,AA Batteries (4-pack),2,3.84,08/16/19 01:25,"255 Lake St, Atlanta, GA 30301" +242959,iPhone,1,700,08/15/19 12:56,"848 13th St, New York City, NY 10001" +242959,Wired Headphones,1,11.99,08/15/19 12:56,"848 13th St, New York City, NY 10001" +242960,Macbook Pro Laptop,1,1700,08/21/19 14:17,"355 Pine St, Los Angeles, CA 90001" +242961,27in 4K Gaming Monitor,1,389.99,08/11/19 11:02,"703 Lake St, New York City, NY 10001" +242962,Bose SoundSport Headphones,1,99.99,08/28/19 17:54,"322 Washington St, Boston, MA 02215" +242963,AAA Batteries (4-pack),1,2.99,08/21/19 18:30,"876 12th St, Austin, TX 73301" +242964,LG Dryer,1,600.0,08/19/19 11:49,"338 9th St, San Francisco, CA 94016" +242965,Apple Airpods Headphones,1,150,08/10/19 08:36,"229 Jefferson St, Seattle, WA 98101" +242966,AAA Batteries (4-pack),1,2.99,08/17/19 16:15,"45 Willow St, San Francisco, CA 94016" +242967,USB-C Charging Cable,1,11.95,08/27/19 14:36,"622 Sunset St, Seattle, WA 98101" +242968,AA Batteries (4-pack),1,3.84,08/26/19 23:27,"922 Cedar St, Boston, MA 02215" +242969,Lightning Charging Cable,1,14.95,08/28/19 12:21,"224 11th St, Boston, MA 02215" +242970,Flatscreen TV,1,300,08/30/19 10:43,"151 Lakeview St, San Francisco, CA 94016" +242971,AAA Batteries (4-pack),3,2.99,08/08/19 11:19,"678 Walnut St, San Francisco, CA 94016" +242972,AAA Batteries (4-pack),1,2.99,08/23/19 16:48,"837 Sunset St, New York City, NY 10001" +242973,27in 4K Gaming Monitor,1,389.99,08/08/19 09:29,"626 13th St, Boston, MA 02215" +242974,Wired Headphones,1,11.99,08/12/19 07:50,"591 4th St, Seattle, WA 98101" +242975,iPhone,1,700,08/11/19 20:48,"880 Pine St, San Francisco, CA 94016" +242976,27in FHD Monitor,1,149.99,08/09/19 17:41,"21 Church St, New York City, NY 10001" +242977,AA Batteries (4-pack),1,3.84,08/29/19 21:49,"456 1st St, San Francisco, CA 94016" +242978,iPhone,1,700,08/08/19 14:34,"145 Jefferson St, Atlanta, GA 30301" +242979,AAA Batteries (4-pack),1,2.99,08/04/19 21:41,"987 Elm St, Atlanta, GA 30301" +242980,AA Batteries (4-pack),1,3.84,08/29/19 00:22,"96 West St, Austin, TX 73301" +242981,AA Batteries (4-pack),1,3.84,08/09/19 21:58,"684 Hickory St, Seattle, WA 98101" +242982,Lightning Charging Cable,1,14.95,08/17/19 21:15,"590 Lake St, New York City, NY 10001" +242983,ThinkPad Laptop,1,999.99,08/25/19 22:12,"364 Hill St, Seattle, WA 98101" +242984,Google Phone,1,600,08/20/19 18:11,"362 5th St, San Francisco, CA 94016" +242984,Wired Headphones,1,11.99,08/20/19 18:11,"362 5th St, San Francisco, CA 94016" +242985,20in Monitor,1,109.99,08/14/19 00:05,"158 Jackson St, Dallas, TX 75001" +242986,Bose SoundSport Headphones,1,99.99,08/21/19 08:51,"716 Maple St, Portland, OR 97035" +242987,Apple Airpods Headphones,1,150,08/08/19 13:11,"245 Highland St, San Francisco, CA 94016" +242988,LG Washing Machine,1,600.0,08/04/19 12:04,"909 9th St, Dallas, TX 75001" +242989,LG Washing Machine,1,600.0,08/31/19 15:16,"438 Church St, San Francisco, CA 94016" +242990,AAA Batteries (4-pack),1,2.99,08/04/19 09:08,"829 Hickory St, Austin, TX 73301" +242991,USB-C Charging Cable,1,11.95,08/23/19 12:06,"259 1st St, Los Angeles, CA 90001" +,,,,, +242992,Wired Headphones,1,11.99,08/10/19 12:30,"245 12th St, Seattle, WA 98101" +242993,Wired Headphones,1,11.99,08/15/19 16:02,"456 Highland St, San Francisco, CA 94016" +242994,20in Monitor,1,109.99,08/24/19 23:57,"780 Lincoln St, Dallas, TX 75001" +242994,Wired Headphones,1,11.99,08/24/19 23:57,"780 Lincoln St, Dallas, TX 75001" +242995,Lightning Charging Cable,1,14.95,08/14/19 10:32,"671 Willow St, New York City, NY 10001" +242996,Lightning Charging Cable,2,14.95,08/31/19 13:37,"160 6th St, New York City, NY 10001" +242997,Lightning Charging Cable,1,14.95,08/26/19 15:47,"989 Maple St, Atlanta, GA 30301" +242998,Wired Headphones,1,11.99,08/05/19 17:07,"840 Washington St, Atlanta, GA 30301" +242999,Google Phone,1,600,08/09/19 06:47,"609 Cherry St, Seattle, WA 98101" +243000,AA Batteries (4-pack),1,3.84,08/16/19 11:53,"959 Center St, San Francisco, CA 94016" +243001,ThinkPad Laptop,1,999.99,08/23/19 07:33,"810 Lincoln St, San Francisco, CA 94016" +243002,Wired Headphones,1,11.99,08/02/19 11:44,"104 Adams St, San Francisco, CA 94016" +243003,AA Batteries (4-pack),2,3.84,08/13/19 13:57,"232 Washington St, New York City, NY 10001" +243004,USB-C Charging Cable,1,11.95,08/06/19 19:37,"495 Cedar St, Boston, MA 02215" +243005,USB-C Charging Cable,1,11.95,08/28/19 13:39,"221 Forest St, Dallas, TX 75001" +243006,AAA Batteries (4-pack),2,2.99,08/03/19 10:25,"977 6th St, San Francisco, CA 94016" +243007,AA Batteries (4-pack),1,3.84,08/26/19 08:55,"435 Hill St, San Francisco, CA 94016" +243008,USB-C Charging Cable,1,11.95,08/23/19 11:28,"287 Wilson St, San Francisco, CA 94016" +243009,Macbook Pro Laptop,1,1700,08/26/19 20:51,"335 5th St, Dallas, TX 75001" +243010,Lightning Charging Cable,1,14.95,08/09/19 23:01,"386 Walnut St, Seattle, WA 98101" +243011,Lightning Charging Cable,1,14.95,08/20/19 22:39,"702 4th St, San Francisco, CA 94016" +243012,USB-C Charging Cable,1,11.95,08/08/19 16:32,"167 West St, Seattle, WA 98101" +243012,Wired Headphones,1,11.99,08/08/19 16:32,"167 West St, Seattle, WA 98101" +243013,AA Batteries (4-pack),1,3.84,08/19/19 19:16,"11 9th St, San Francisco, CA 94016" +243014,Lightning Charging Cable,1,14.95,08/31/19 08:25,"251 River St, Portland, OR 97035" +243015,Bose SoundSport Headphones,1,99.99,08/01/19 21:01,"501 9th St, Dallas, TX 75001" +243016,AAA Batteries (4-pack),1,2.99,08/10/19 10:32,"16 Church St, Los Angeles, CA 90001" +243017,AAA Batteries (4-pack),2,2.99,08/20/19 17:07,"857 Lakeview St, New York City, NY 10001" +243018,27in FHD Monitor,1,149.99,08/20/19 11:07,"896 Sunset St, New York City, NY 10001" +243019,34in Ultrawide Monitor,1,379.99,08/11/19 15:00,"180 Lakeview St, Portland, OR 97035" +243020,USB-C Charging Cable,1,11.95,08/13/19 22:17,"184 Meadow St, Los Angeles, CA 90001" +243021,AAA Batteries (4-pack),2,2.99,08/16/19 16:24,"892 5th St, Portland, OR 97035" +243022,Lightning Charging Cable,1,14.95,08/12/19 18:10,"302 South St, Los Angeles, CA 90001" +243023,Bose SoundSport Headphones,1,99.99,08/05/19 17:14,"888 5th St, Atlanta, GA 30301" +243024,AA Batteries (4-pack),1,3.84,08/12/19 23:48,"381 2nd St, Dallas, TX 75001" +243025,Apple Airpods Headphones,1,150,08/08/19 10:01,"903 Adams St, Atlanta, GA 30301" +243026,Bose SoundSport Headphones,1,99.99,08/16/19 21:12,"594 10th St, San Francisco, CA 94016" +243027,AA Batteries (4-pack),3,3.84,08/04/19 21:48,"998 1st St, Dallas, TX 75001" +243028,AAA Batteries (4-pack),1,2.99,08/01/19 11:03,"822 Spruce St, Portland, ME 04101" +243029,20in Monitor,1,109.99,08/15/19 06:42,"205 Chestnut St, San Francisco, CA 94016" +243030,Wired Headphones,1,11.99,08/02/19 22:38,"202 Main St, San Francisco, CA 94016" +243030,USB-C Charging Cable,2,11.95,08/02/19 22:38,"202 Main St, San Francisco, CA 94016" +243031,34in Ultrawide Monitor,1,379.99,08/18/19 13:27,"145 Maple St, Portland, OR 97035" +243032,34in Ultrawide Monitor,1,379.99,08/09/19 14:32,"636 Maple St, Boston, MA 02215" +243033,ThinkPad Laptop,1,999.99,08/12/19 14:54,"15 8th St, New York City, NY 10001" +243034,Lightning Charging Cable,1,14.95,08/26/19 08:41,"425 Maple St, San Francisco, CA 94016" +243035,Apple Airpods Headphones,1,150,08/16/19 17:06,"1 Pine St, Austin, TX 73301" +243036,Lightning Charging Cable,1,14.95,08/29/19 16:17,"732 9th St, Boston, MA 02215" +243037,Lightning Charging Cable,1,14.95,08/31/19 16:52,"16 Spruce St, Los Angeles, CA 90001" +243038,34in Ultrawide Monitor,1,379.99,08/02/19 18:24,"595 4th St, Portland, OR 97035" +243039,Lightning Charging Cable,2,14.95,08/01/19 11:03,"974 Elm St, Austin, TX 73301" +243040,27in 4K Gaming Monitor,1,389.99,08/06/19 15:11,"689 6th St, Los Angeles, CA 90001" +243041,iPhone,1,700,08/03/19 18:36,"121 Ridge St, Dallas, TX 75001" +243041,AA Batteries (4-pack),2,3.84,08/03/19 18:36,"121 Ridge St, Dallas, TX 75001" +243042,Apple Airpods Headphones,1,150,08/14/19 15:04,"987 Madison St, Los Angeles, CA 90001" +243043,27in 4K Gaming Monitor,1,389.99,08/14/19 23:27,"797 8th St, San Francisco, CA 94016" +243044,LG Dryer,1,600.0,08/13/19 22:21,"943 Park St, San Francisco, CA 94016" +243045,Wired Headphones,1,11.99,08/09/19 13:26,"411 Ridge St, New York City, NY 10001" +243046,Bose SoundSport Headphones,1,99.99,08/14/19 23:16,"748 Spruce St, Dallas, TX 75001" +243047,34in Ultrawide Monitor,1,379.99,08/18/19 00:29,"554 Madison St, Atlanta, GA 30301" +243048,AAA Batteries (4-pack),1,2.99,08/07/19 23:44,"708 14th St, Los Angeles, CA 90001" +243049,Lightning Charging Cable,1,14.95,08/08/19 05:09,"758 Washington St, Austin, TX 73301" +243050,Wired Headphones,1,11.99,08/21/19 22:56,"316 1st St, New York City, NY 10001" +243051,USB-C Charging Cable,1,11.95,08/19/19 10:46,"311 Jackson St, Atlanta, GA 30301" +243052,AA Batteries (4-pack),2,3.84,08/09/19 08:42,"467 Church St, Atlanta, GA 30301" +243053,USB-C Charging Cable,1,11.95,08/05/19 20:13,"191 Center St, Boston, MA 02215" +243054,Bose SoundSport Headphones,1,99.99,08/26/19 16:38,"951 Willow St, New York City, NY 10001" +243055,27in 4K Gaming Monitor,1,389.99,08/09/19 11:40,"724 Sunset St, Boston, MA 02215" +243056,AAA Batteries (4-pack),1,2.99,08/08/19 15:15,"972 9th St, Los Angeles, CA 90001" +243057,Lightning Charging Cable,1,14.95,08/08/19 16:18,"153 4th St, Dallas, TX 75001" +243058,AA Batteries (4-pack),1,3.84,08/11/19 11:11,"285 13th St, Portland, OR 97035" +243059,34in Ultrawide Monitor,1,379.99,08/11/19 14:31,"412 Maple St, Atlanta, GA 30301" +243060,Apple Airpods Headphones,1,150,08/14/19 07:36,"267 8th St, San Francisco, CA 94016" +243061,Google Phone,1,600,08/16/19 20:29,"853 Elm St, Los Angeles, CA 90001" +243061,Lightning Charging Cable,1,14.95,08/16/19 20:29,"853 Elm St, Los Angeles, CA 90001" +243062,Bose SoundSport Headphones,1,99.99,08/28/19 19:43,"875 Jefferson St, Portland, OR 97035" +243063,Bose SoundSport Headphones,1,99.99,08/11/19 12:22,"626 Madison St, Atlanta, GA 30301" +243064,20in Monitor,1,109.99,08/28/19 01:23,"635 Park St, New York City, NY 10001" +243065,USB-C Charging Cable,1,11.95,08/17/19 23:48,"284 Chestnut St, New York City, NY 10001" +243066,Wired Headphones,1,11.99,08/20/19 20:41,"922 South St, Los Angeles, CA 90001" +243067,Lightning Charging Cable,1,14.95,08/31/19 11:24,"3 Spruce St, Los Angeles, CA 90001" +243068,Wired Headphones,1,11.99,08/26/19 19:58,"187 Meadow St, Portland, OR 97035" +243069,Bose SoundSport Headphones,1,99.99,08/12/19 14:42,"733 Cedar St, Portland, OR 97035" +243070,AA Batteries (4-pack),2,3.84,08/23/19 14:13,"523 Lake St, San Francisco, CA 94016" +243071,Vareebadd Phone,1,400,08/16/19 22:33,"205 Elm St, Los Angeles, CA 90001" +243072,USB-C Charging Cable,1,11.95,08/29/19 23:19,"693 Spruce St, New York City, NY 10001" +243073,AAA Batteries (4-pack),2,2.99,08/07/19 22:23,"359 Dogwood St, Seattle, WA 98101" +243074,Lightning Charging Cable,1,14.95,08/28/19 11:09,"494 10th St, New York City, NY 10001" +243075,34in Ultrawide Monitor,1,379.99,08/20/19 02:58,"551 Adams St, Seattle, WA 98101" +243076,USB-C Charging Cable,1,11.95,08/28/19 11:53,"210 Park St, San Francisco, CA 94016" +243077,Lightning Charging Cable,1,14.95,08/22/19 14:13,"578 13th St, Atlanta, GA 30301" +243078,ThinkPad Laptop,1,999.99,08/04/19 09:08,"699 Hickory St, Seattle, WA 98101" +243079,USB-C Charging Cable,1,11.95,08/04/19 14:03,"639 Meadow St, New York City, NY 10001" +243080,AAA Batteries (4-pack),2,2.99,08/27/19 16:12,"658 9th St, New York City, NY 10001" +243081,AAA Batteries (4-pack),2,2.99,08/19/19 00:14,"819 Jefferson St, Dallas, TX 75001" +243082,Macbook Pro Laptop,1,1700,08/20/19 18:56,"810 Jackson St, Boston, MA 02215" +243083,USB-C Charging Cable,1,11.95,08/30/19 21:39,"899 5th St, Dallas, TX 75001" +243084,Flatscreen TV,1,300,08/20/19 10:11,"171 Lakeview St, Los Angeles, CA 90001" +243085,Macbook Pro Laptop,1,1700,08/08/19 12:48,"790 4th St, San Francisco, CA 94016" +243086,Bose SoundSport Headphones,1,99.99,08/20/19 22:50,"811 Willow St, San Francisco, CA 94016" +243087,Flatscreen TV,1,300,08/22/19 18:01,"269 Main St, San Francisco, CA 94016" +243088,Vareebadd Phone,1,400,08/13/19 19:10,"918 13th St, Boston, MA 02215" +243088,USB-C Charging Cable,1,11.95,08/13/19 19:10,"918 13th St, Boston, MA 02215" +243089,ThinkPad Laptop,1,999.99,08/26/19 00:07,"701 Cedar St, Portland, OR 97035" +243090,Flatscreen TV,1,300,08/21/19 21:09,"665 Spruce St, Portland, OR 97035" +243090,Bose SoundSport Headphones,1,99.99,08/21/19 21:09,"665 Spruce St, Portland, OR 97035" +243091,Wired Headphones,1,11.99,08/07/19 13:07,"730 Hill St, New York City, NY 10001" +243092,Lightning Charging Cable,1,14.95,08/06/19 01:07,"663 River St, Boston, MA 02215" +243093,Lightning Charging Cable,1,14.95,08/11/19 12:41,"257 Cedar St, New York City, NY 10001" +243094,AA Batteries (4-pack),1,3.84,08/16/19 15:45,"448 Spruce St, Dallas, TX 75001" +243095,USB-C Charging Cable,1,11.95,08/23/19 12:35,"913 River St, Seattle, WA 98101" +243096,34in Ultrawide Monitor,1,379.99,08/28/19 18:13,"706 2nd St, San Francisco, CA 94016" +243097,USB-C Charging Cable,1,11.95,08/13/19 12:48,"188 Lake St, San Francisco, CA 94016" +243098,27in FHD Monitor,1,149.99,08/18/19 19:58,"201 Sunset St, New York City, NY 10001" +243099,USB-C Charging Cable,1,11.95,08/16/19 10:21,"463 Willow St, San Francisco, CA 94016" +243100,34in Ultrawide Monitor,1,379.99,08/09/19 12:34,"237 10th St, Atlanta, GA 30301" +243101,Wired Headphones,1,11.99,08/06/19 16:05,"444 Jefferson St, San Francisco, CA 94016" +243102,AAA Batteries (4-pack),1,2.99,08/27/19 10:39,"347 West St, San Francisco, CA 94016" +243103,iPhone,1,700,08/02/19 13:11,"159 Adams St, Los Angeles, CA 90001" +243104,27in 4K Gaming Monitor,1,389.99,08/13/19 08:58,"959 Adams St, New York City, NY 10001" +243105,Apple Airpods Headphones,1,150,08/14/19 22:29,"449 7th St, Atlanta, GA 30301" +243106,27in FHD Monitor,1,149.99,08/15/19 20:21,"595 Lake St, Atlanta, GA 30301" +243107,27in FHD Monitor,1,149.99,08/15/19 10:48,"545 Church St, San Francisco, CA 94016" +243108,AAA Batteries (4-pack),2,2.99,08/05/19 19:02,"502 4th St, New York City, NY 10001" +243108,Wired Headphones,1,11.99,08/05/19 19:02,"502 4th St, New York City, NY 10001" +243109,Lightning Charging Cable,1,14.95,08/16/19 16:59,"451 Sunset St, Atlanta, GA 30301" +243110,Apple Airpods Headphones,1,150,08/21/19 13:54,"367 10th St, Boston, MA 02215" +243111,Bose SoundSport Headphones,1,99.99,08/08/19 12:45,"958 Johnson St, San Francisco, CA 94016" +243112,Lightning Charging Cable,2,14.95,08/25/19 20:26,"873 Cherry St, Seattle, WA 98101" +243113,ThinkPad Laptop,1,999.99,08/17/19 22:07,"986 Pine St, Los Angeles, CA 90001" +243114,Wired Headphones,1,11.99,08/04/19 08:13,"710 10th St, Austin, TX 73301" +243115,AA Batteries (4-pack),2,3.84,08/25/19 19:44,"164 Highland St, San Francisco, CA 94016" +243116,AAA Batteries (4-pack),1,2.99,08/26/19 18:17,"564 Adams St, Los Angeles, CA 90001" +243117,Flatscreen TV,1,300,08/28/19 17:32,"575 7th St, Los Angeles, CA 90001" +243118,AA Batteries (4-pack),1,3.84,08/12/19 18:52,"636 Park St, Seattle, WA 98101" +243119,Wired Headphones,1,11.99,08/27/19 12:02,"404 Lakeview St, Atlanta, GA 30301" +243120,Apple Airpods Headphones,1,150,08/26/19 23:41,"600 Church St, San Francisco, CA 94016" +243121,Wired Headphones,1,11.99,08/22/19 20:13,"842 6th St, Boston, MA 02215" +243122,Lightning Charging Cable,1,14.95,08/12/19 22:02,"767 6th St, Portland, OR 97035" +243123,Wired Headphones,1,11.99,08/24/19 19:36,"443 Cedar St, Los Angeles, CA 90001" +243124,Vareebadd Phone,1,400,08/18/19 17:37,"453 Ridge St, New York City, NY 10001" +243125,Wired Headphones,1,11.99,08/14/19 11:21,"112 5th St, Boston, MA 02215" +243126,Wired Headphones,1,11.99,08/01/19 12:39,"79 Pine St, San Francisco, CA 94016" +243127,ThinkPad Laptop,1,999.99,08/03/19 01:26,"86 Jackson St, Atlanta, GA 30301" +243128,27in 4K Gaming Monitor,1,389.99,08/26/19 17:04,"414 Lincoln St, San Francisco, CA 94016" +243129,AAA Batteries (4-pack),1,2.99,08/14/19 17:00,"241 12th St, San Francisco, CA 94016" +243130,Apple Airpods Headphones,1,150,08/01/19 09:33,"911 Lincoln St, Boston, MA 02215" +243131,Apple Airpods Headphones,1,150,08/18/19 14:57,"721 13th St, Los Angeles, CA 90001" +243132,27in 4K Gaming Monitor,1,389.99,08/30/19 00:16,"107 Hickory St, San Francisco, CA 94016" +243133,USB-C Charging Cable,1,11.95,08/07/19 12:12,"431 Hill St, San Francisco, CA 94016" +243134,Wired Headphones,1,11.99,08/05/19 19:09,"116 12th St, Portland, OR 97035" +243135,AAA Batteries (4-pack),1,2.99,08/10/19 21:26,"624 Highland St, Boston, MA 02215" +243136,AAA Batteries (4-pack),1,2.99,08/03/19 23:11,"672 Cedar St, Los Angeles, CA 90001" +243137,Lightning Charging Cable,1,14.95,08/23/19 15:21,"522 Lake St, San Francisco, CA 94016" +243138,AAA Batteries (4-pack),1,2.99,08/09/19 14:50,"472 River St, Boston, MA 02215" +243139,Wired Headphones,1,11.99,08/11/19 11:03,"532 13th St, New York City, NY 10001" +243140,27in 4K Gaming Monitor,1,389.99,08/31/19 19:21,"316 13th St, San Francisco, CA 94016" +243141,USB-C Charging Cable,1,11.95,08/03/19 22:32,"870 4th St, Los Angeles, CA 90001" +243142,Bose SoundSport Headphones,1,99.99,08/15/19 11:35,"904 Park St, Los Angeles, CA 90001" +243142,27in 4K Gaming Monitor,1,389.99,08/15/19 11:35,"904 Park St, Los Angeles, CA 90001" +243143,Wired Headphones,2,11.99,08/04/19 11:25,"489 South St, New York City, NY 10001" +243144,USB-C Charging Cable,2,11.95,08/06/19 09:09,"788 Walnut St, Portland, ME 04101" +243145,Vareebadd Phone,1,400,08/17/19 14:13,"8 1st St, San Francisco, CA 94016" +243146,USB-C Charging Cable,1,11.95,08/23/19 14:39,"706 8th St, New York City, NY 10001" +243147,Bose SoundSport Headphones,1,99.99,08/31/19 16:56,"256 Church St, Los Angeles, CA 90001" +243148,Wired Headphones,1,11.99,08/26/19 19:07,"546 Jefferson St, New York City, NY 10001" +243149,Lightning Charging Cable,1,14.95,08/19/19 18:08,"39 Park St, Los Angeles, CA 90001" +243150,20in Monitor,1,109.99,08/10/19 19:46,"958 Main St, Los Angeles, CA 90001" +243151,Lightning Charging Cable,1,14.95,08/09/19 14:16,"357 2nd St, Dallas, TX 75001" +243152,27in 4K Gaming Monitor,1,389.99,08/12/19 19:48,"386 Johnson St, San Francisco, CA 94016" +243153,USB-C Charging Cable,1,11.95,08/04/19 21:22,"314 7th St, Atlanta, GA 30301" +243154,27in FHD Monitor,1,149.99,08/28/19 10:16,"246 Church St, San Francisco, CA 94016" +243155,USB-C Charging Cable,1,11.95,08/25/19 22:28,"920 Forest St, Los Angeles, CA 90001" +243156,27in FHD Monitor,1,149.99,08/28/19 23:43,"675 Elm St, Boston, MA 02215" +243157,USB-C Charging Cable,1,11.95,08/11/19 09:54,"946 Lincoln St, San Francisco, CA 94016" +243158,AA Batteries (4-pack),1,3.84,08/27/19 13:40,"111 River St, Atlanta, GA 30301" +243159,USB-C Charging Cable,1,11.95,08/12/19 07:27,"997 North St, Boston, MA 02215" +243160,Apple Airpods Headphones,1,150,08/10/19 19:18,"792 5th St, Dallas, TX 75001" +243161,Lightning Charging Cable,1,14.95,08/09/19 20:24,"279 Dogwood St, Los Angeles, CA 90001" +243162,27in FHD Monitor,1,149.99,08/31/19 13:27,"169 Pine St, Seattle, WA 98101" +243163,AAA Batteries (4-pack),1,2.99,08/30/19 15:06,"993 North St, San Francisco, CA 94016" +243164,USB-C Charging Cable,1,11.95,08/14/19 15:04,"622 14th St, New York City, NY 10001" +243165,Wired Headphones,1,11.99,08/25/19 14:51,"859 South St, Seattle, WA 98101" +243166,iPhone,1,700,08/07/19 17:22,"48 Maple St, Atlanta, GA 30301" +243166,Wired Headphones,1,11.99,08/07/19 17:22,"48 Maple St, Atlanta, GA 30301" +243167,AAA Batteries (4-pack),1,2.99,08/14/19 20:57,"17 Lincoln St, San Francisco, CA 94016" +243168,USB-C Charging Cable,2,11.95,08/15/19 11:11,"423 10th St, Atlanta, GA 30301" +243169,Apple Airpods Headphones,1,150,08/04/19 13:29,"134 Main St, Los Angeles, CA 90001" +243170,Wired Headphones,1,11.99,08/25/19 10:48,"13 13th St, San Francisco, CA 94016" +243171,iPhone,1,700,08/11/19 02:09,"423 4th St, Austin, TX 73301" +243172,AAA Batteries (4-pack),1,2.99,08/28/19 20:39,"666 Meadow St, New York City, NY 10001" +243173,USB-C Charging Cable,1,11.95,08/21/19 08:13,"14 5th St, San Francisco, CA 94016" +243174,27in 4K Gaming Monitor,1,389.99,08/14/19 19:06,"86 West St, Boston, MA 02215" +243175,AAA Batteries (4-pack),1,2.99,08/26/19 18:50,"475 Cedar St, New York City, NY 10001" +243176,Lightning Charging Cable,1,14.95,08/01/19 15:03,"648 West St, Los Angeles, CA 90001" +243177,Wired Headphones,1,11.99,08/08/19 10:10,"159 Maple St, Portland, OR 97035" +243178,AA Batteries (4-pack),1,3.84,08/25/19 17:52,"88 11th St, New York City, NY 10001" +243179,Bose SoundSport Headphones,1,99.99,08/15/19 21:17,"367 11th St, Austin, TX 73301" +243179,iPhone,1,700,08/15/19 21:17,"367 11th St, Austin, TX 73301" +243180,27in FHD Monitor,1,149.99,08/14/19 11:54,"179 Lincoln St, Atlanta, GA 30301" +243181,AA Batteries (4-pack),1,3.84,08/17/19 10:29,"159 Willow St, Portland, OR 97035" +243182,Apple Airpods Headphones,1,150,08/16/19 22:42,"266 Walnut St, San Francisco, CA 94016" +243183,iPhone,1,700,08/28/19 18:47,"202 6th St, Boston, MA 02215" +243183,Wired Headphones,2,11.99,08/28/19 18:47,"202 6th St, Boston, MA 02215" +243184,iPhone,1,700,08/01/19 15:53,"73 Wilson St, Dallas, TX 75001" +243185,Apple Airpods Headphones,1,150,08/10/19 14:14,"408 Main St, San Francisco, CA 94016" +243186,USB-C Charging Cable,1,11.95,08/21/19 12:29,"825 Walnut St, Dallas, TX 75001" +243187,USB-C Charging Cable,1,11.95,08/01/19 10:59,"209 13th St, Austin, TX 73301" +243188,Wired Headphones,1,11.99,08/03/19 08:59,"894 West St, Boston, MA 02215" +243189,Lightning Charging Cable,1,14.95,08/18/19 17:11,"211 West St, San Francisco, CA 94016" +243190,Wired Headphones,1,11.99,08/14/19 19:38,"895 Willow St, Boston, MA 02215" +243191,Wired Headphones,1,11.99,08/07/19 13:01,"675 Wilson St, Los Angeles, CA 90001" +243192,AAA Batteries (4-pack),2,2.99,08/23/19 18:55,"981 Ridge St, New York City, NY 10001" +243193,USB-C Charging Cable,1,11.95,08/09/19 11:32,"535 Johnson St, Atlanta, GA 30301" +243194,AA Batteries (4-pack),1,3.84,08/06/19 21:02,"153 Adams St, San Francisco, CA 94016" +243195,Vareebadd Phone,1,400,08/19/19 23:37,"594 10th St, San Francisco, CA 94016" +,,,,, +243196,Google Phone,1,600,08/15/19 07:19,"650 Walnut St, Seattle, WA 98101" +243197,Lightning Charging Cable,1,14.95,08/28/19 06:15,"942 13th St, San Francisco, CA 94016" +243198,Google Phone,1,600,08/04/19 12:18,"377 14th St, Atlanta, GA 30301" +243199,USB-C Charging Cable,1,11.95,08/07/19 15:29,"311 Adams St, San Francisco, CA 94016" +243200,iPhone,1,700,08/14/19 11:17,"36 Johnson St, Seattle, WA 98101" +243201,Wired Headphones,1,11.99,08/11/19 15:12,"145 Lake St, San Francisco, CA 94016" +243202,ThinkPad Laptop,1,999.99,08/15/19 08:17,"191 1st St, Boston, MA 02215" +243203,Lightning Charging Cable,1,14.95,08/23/19 22:43,"237 13th St, New York City, NY 10001" +243204,iPhone,1,700,08/03/19 15:19,"165 Hill St, San Francisco, CA 94016" +243204,Wired Headphones,1,11.99,08/03/19 15:19,"165 Hill St, San Francisco, CA 94016" +243205,Google Phone,1,600,08/30/19 07:57,"144 Cherry St, Austin, TX 73301" +243206,Google Phone,1,600,08/13/19 09:37,"584 North St, Portland, ME 04101" +243206,Bose SoundSport Headphones,1,99.99,08/13/19 09:37,"584 North St, Portland, ME 04101" +243207,Apple Airpods Headphones,1,150,08/16/19 11:38,"390 Hill St, Los Angeles, CA 90001" +243208,34in Ultrawide Monitor,1,379.99,08/08/19 15:41,"948 Church St, Dallas, TX 75001" +243209,USB-C Charging Cable,1,11.95,08/22/19 00:51,"51 Sunset St, Atlanta, GA 30301" +243210,Lightning Charging Cable,1,14.95,08/24/19 22:41,"44 Wilson St, San Francisco, CA 94016" +243211,Wired Headphones,1,11.99,08/29/19 17:38,"217 Cherry St, Los Angeles, CA 90001" +243212,AA Batteries (4-pack),2,3.84,08/22/19 11:13,"612 Hill St, Austin, TX 73301" +243213,Bose SoundSport Headphones,1,99.99,08/24/19 15:20,"98 Park St, Los Angeles, CA 90001" +243214,27in FHD Monitor,1,149.99,08/27/19 19:08,"415 7th St, San Francisco, CA 94016" +243215,AAA Batteries (4-pack),2,2.99,08/21/19 16:30,"742 14th St, Portland, OR 97035" +243216,Google Phone,1,600,08/15/19 15:22,"334 Sunset St, New York City, NY 10001" +243217,AAA Batteries (4-pack),4,2.99,08/24/19 07:21,"961 2nd St, New York City, NY 10001" +243218,USB-C Charging Cable,2,11.95,08/31/19 16:34,"842 Lincoln St, Los Angeles, CA 90001" +243219,Flatscreen TV,1,300,08/02/19 07:52,"911 8th St, Los Angeles, CA 90001" +243220,Lightning Charging Cable,2,14.95,08/24/19 11:46,"612 Jackson St, Austin, TX 73301" +243221,ThinkPad Laptop,1,999.99,08/07/19 11:08,"428 7th St, Dallas, TX 75001" +243221,34in Ultrawide Monitor,1,379.99,08/07/19 11:08,"428 7th St, Dallas, TX 75001" +243222,Wired Headphones,1,11.99,08/25/19 21:28,"532 Cherry St, New York City, NY 10001" +243223,Lightning Charging Cable,1,14.95,08/10/19 15:56,"117 Forest St, San Francisco, CA 94016" +243224,AA Batteries (4-pack),2,3.84,08/03/19 10:33,"43 Sunset St, Dallas, TX 75001" +243225,Lightning Charging Cable,1,14.95,08/06/19 18:49,"796 5th St, Portland, OR 97035" +243226,AAA Batteries (4-pack),1,2.99,08/26/19 09:35,"394 Cherry St, Seattle, WA 98101" +243227,AA Batteries (4-pack),1,3.84,08/16/19 18:38,"865 Park St, Los Angeles, CA 90001" +243228,USB-C Charging Cable,1,11.95,08/27/19 15:38,"479 12th St, Seattle, WA 98101" +243229,AA Batteries (4-pack),1,3.84,08/04/19 16:32,"977 6th St, Atlanta, GA 30301" +243230,AA Batteries (4-pack),1,3.84,08/22/19 12:18,"654 8th St, San Francisco, CA 94016" +243231,Wired Headphones,1,11.99,08/08/19 15:01,"412 10th St, Atlanta, GA 30301" +243232,AAA Batteries (4-pack),1,2.99,08/28/19 15:14,"852 14th St, Los Angeles, CA 90001" +243233,Apple Airpods Headphones,1,150,08/05/19 21:02,"381 Madison St, Dallas, TX 75001" +243234,Bose SoundSport Headphones,1,99.99,08/03/19 18:49,"409 Hill St, Atlanta, GA 30301" +243235,Lightning Charging Cable,1,14.95,08/02/19 13:04,"645 Washington St, San Francisco, CA 94016" +243236,AA Batteries (4-pack),1,3.84,08/04/19 19:25,"406 River St, Austin, TX 73301" +243237,AA Batteries (4-pack),1,3.84,08/02/19 11:55,"235 Main St, San Francisco, CA 94016" +243238,AA Batteries (4-pack),1,3.84,08/07/19 08:56,"849 Jefferson St, Los Angeles, CA 90001" +243239,27in FHD Monitor,1,149.99,08/10/19 11:15,"398 Johnson St, San Francisco, CA 94016" +243240,Lightning Charging Cable,1,14.95,08/06/19 17:47,"846 Washington St, San Francisco, CA 94016" +243241,AA Batteries (4-pack),1,3.84,08/23/19 11:55,"72 Meadow St, Austin, TX 73301" +243242,Apple Airpods Headphones,1,150,08/09/19 15:50,"217 13th St, Portland, ME 04101" +243243,AA Batteries (4-pack),4,3.84,08/19/19 16:53,"866 9th St, Los Angeles, CA 90001" +243244,Apple Airpods Headphones,1,150,08/21/19 22:54,"973 Lincoln St, Los Angeles, CA 90001" +243245,27in 4K Gaming Monitor,1,389.99,08/11/19 18:32,"886 Center St, San Francisco, CA 94016" +243246,iPhone,1,700,08/14/19 12:26,"22 Center St, New York City, NY 10001" +243246,Lightning Charging Cable,1,14.95,08/14/19 12:26,"22 Center St, New York City, NY 10001" +243247,Wired Headphones,2,11.99,08/05/19 15:00,"858 4th St, Dallas, TX 75001" +243248,Wired Headphones,1,11.99,08/21/19 12:50,"585 5th St, Dallas, TX 75001" +243249,Wired Headphones,1,11.99,08/21/19 18:45,"75 Elm St, Dallas, TX 75001" +243250,Wired Headphones,1,11.99,08/23/19 08:02,"118 Main St, San Francisco, CA 94016" +243251,USB-C Charging Cable,2,11.95,08/10/19 19:43,"811 6th St, San Francisco, CA 94016" +243252,ThinkPad Laptop,1,999.99,08/30/19 13:14,"95 Meadow St, Los Angeles, CA 90001" +243253,ThinkPad Laptop,1,999.99,08/29/19 06:19,"256 Jefferson St, Atlanta, GA 30301" +243254,AA Batteries (4-pack),1,3.84,08/28/19 14:21,"326 Lakeview St, Atlanta, GA 30301" +243255,Google Phone,1,600,08/11/19 07:28,"381 Dogwood St, Boston, MA 02215" +243256,Lightning Charging Cable,1,14.95,08/16/19 16:25,"139 Hill St, Boston, MA 02215" +243257,USB-C Charging Cable,1,11.95,08/29/19 15:07,"691 Church St, New York City, NY 10001" +243258,Wired Headphones,1,11.99,08/06/19 21:43,"712 Adams St, Los Angeles, CA 90001" +243259,AA Batteries (4-pack),1,3.84,08/01/19 23:20,"787 Lincoln St, Portland, ME 04101" +243260,AA Batteries (4-pack),2,3.84,08/02/19 14:10,"327 Lakeview St, Boston, MA 02215" +243261,iPhone,1,700,08/20/19 19:56,"395 Hill St, San Francisco, CA 94016" +243262,Google Phone,1,600,08/25/19 14:55,"464 Willow St, Seattle, WA 98101" +243263,Apple Airpods Headphones,1,150,08/02/19 12:49,"924 9th St, Dallas, TX 75001" +243264,USB-C Charging Cable,1,11.95,08/06/19 13:09,"409 12th St, San Francisco, CA 94016" +243265,AA Batteries (4-pack),1,3.84,08/14/19 22:11,"664 North St, Boston, MA 02215" +243266,USB-C Charging Cable,3,11.95,08/03/19 21:51,"183 Ridge St, San Francisco, CA 94016" +243267,Wired Headphones,1,11.99,08/21/19 20:09,"333 8th St, Boston, MA 02215" +243268,Bose SoundSport Headphones,1,99.99,08/13/19 11:09,"938 Madison St, Los Angeles, CA 90001" +243269,Macbook Pro Laptop,1,1700,08/30/19 21:00,"517 Chestnut St, Boston, MA 02215" +243270,Lightning Charging Cable,1,14.95,08/28/19 08:26,"291 Lakeview St, Boston, MA 02215" +243271,AA Batteries (4-pack),3,3.84,08/06/19 16:50,"130 Jackson St, San Francisco, CA 94016" +243272,Lightning Charging Cable,1,14.95,08/07/19 11:48,"82 Cherry St, San Francisco, CA 94016" +243273,AAA Batteries (4-pack),1,2.99,08/01/19 09:53,"102 Lakeview St, Boston, MA 02215" +243274,Google Phone,1,600,08/01/19 13:43,"901 Chestnut St, New York City, NY 10001" +243275,AAA Batteries (4-pack),1,2.99,08/12/19 20:22,"129 Hill St, Portland, OR 97035" +243276,Lightning Charging Cable,1,14.95,08/29/19 21:29,"73 Cedar St, Los Angeles, CA 90001" +243277,USB-C Charging Cable,1,11.95,08/12/19 21:09,"517 Hickory St, San Francisco, CA 94016" +243278,Bose SoundSport Headphones,1,99.99,08/18/19 20:30,"434 9th St, Los Angeles, CA 90001" +243279,AAA Batteries (4-pack),1,2.99,08/02/19 09:19,"625 Willow St, New York City, NY 10001" +243280,Bose SoundSport Headphones,1,99.99,08/06/19 07:50,"373 Hill St, San Francisco, CA 94016" +243281,27in FHD Monitor,1,149.99,08/28/19 07:59,"222 Pine St, Seattle, WA 98101" +243282,AAA Batteries (4-pack),1,2.99,08/10/19 20:30,"993 River St, Portland, OR 97035" +243283,AA Batteries (4-pack),1,3.84,08/01/19 04:14,"885 Church St, Los Angeles, CA 90001" +243284,Bose SoundSport Headphones,1,99.99,08/22/19 15:57,"120 Cedar St, Atlanta, GA 30301" +243285,Lightning Charging Cable,1,14.95,08/28/19 15:39,"424 Madison St, Los Angeles, CA 90001" +243286,20in Monitor,1,109.99,08/16/19 21:03,"624 Hill St, Dallas, TX 75001" +243287,AAA Batteries (4-pack),1,2.99,08/18/19 00:49,"126 Madison St, Dallas, TX 75001" +243288,LG Washing Machine,1,600.0,08/17/19 16:42,"190 Cherry St, San Francisco, CA 94016" +243289,Wired Headphones,1,11.99,08/16/19 07:46,"94 South St, Boston, MA 02215" +243290,USB-C Charging Cable,1,11.95,08/14/19 22:16,"405 River St, San Francisco, CA 94016" +243291,Apple Airpods Headphones,1,150,08/30/19 11:29,"720 1st St, Portland, OR 97035" +243292,AA Batteries (4-pack),1,3.84,08/23/19 13:45,"413 Meadow St, Portland, OR 97035" +243293,Google Phone,1,600,08/24/19 01:57,"360 Highland St, Atlanta, GA 30301" +243294,USB-C Charging Cable,1,11.95,08/17/19 05:27,"364 Forest St, Portland, ME 04101" +243295,AA Batteries (4-pack),2,3.84,08/03/19 21:45,"812 4th St, Seattle, WA 98101" +243296,iPhone,1,700,08/05/19 13:20,"604 Sunset St, Austin, TX 73301" +243296,Lightning Charging Cable,1,14.95,08/05/19 13:20,"604 Sunset St, Austin, TX 73301" +243297,AAA Batteries (4-pack),3,2.99,08/26/19 11:21,"139 Madison St, Seattle, WA 98101" +243298,34in Ultrawide Monitor,1,379.99,08/08/19 09:10,"959 Highland St, San Francisco, CA 94016" +243298,Wired Headphones,1,11.99,08/08/19 09:10,"959 Highland St, San Francisco, CA 94016" +243299,Wired Headphones,1,11.99,08/21/19 17:30,"770 Hickory St, Los Angeles, CA 90001" +243300,AAA Batteries (4-pack),1,2.99,08/25/19 11:35,"424 10th St, Atlanta, GA 30301" +243301,Macbook Pro Laptop,1,1700,08/08/19 15:50,"259 Madison St, Los Angeles, CA 90001" +243302,Lightning Charging Cable,1,14.95,08/26/19 20:50,"884 Willow St, San Francisco, CA 94016" +243303,AAA Batteries (4-pack),1,2.99,08/27/19 08:41,"954 Washington St, Atlanta, GA 30301" +243304,USB-C Charging Cable,1,11.95,08/18/19 09:43,"39 5th St, San Francisco, CA 94016" +243305,AAA Batteries (4-pack),1,2.99,08/06/19 10:54,"258 9th St, Los Angeles, CA 90001" +243306,Apple Airpods Headphones,1,150,08/30/19 12:04,"697 8th St, San Francisco, CA 94016" +,,,,, +243307,Lightning Charging Cable,1,14.95,08/28/19 12:18,"850 Lake St, Los Angeles, CA 90001" +243308,Apple Airpods Headphones,1,150,08/03/19 11:01,"673 7th St, Atlanta, GA 30301" +243309,AAA Batteries (4-pack),1,2.99,08/28/19 23:47,"88 Lake St, San Francisco, CA 94016" +243310,Wired Headphones,1,11.99,08/14/19 22:32,"799 Center St, Austin, TX 73301" +243311,Bose SoundSport Headphones,1,99.99,08/17/19 15:00,"535 North St, San Francisco, CA 94016" +243312,USB-C Charging Cable,1,11.95,08/13/19 13:32,"234 Sunset St, Los Angeles, CA 90001" +243313,iPhone,1,700,08/04/19 17:25,"281 1st St, Dallas, TX 75001" +243314,AA Batteries (4-pack),2,3.84,08/25/19 06:19,"811 Lincoln St, Dallas, TX 75001" +243315,AA Batteries (4-pack),1,3.84,08/03/19 12:54,"358 Wilson St, Boston, MA 02215" +243316,Lightning Charging Cable,1,14.95,08/19/19 10:10,"215 4th St, San Francisco, CA 94016" +243317,Bose SoundSport Headphones,1,99.99,08/09/19 08:37,"232 7th St, Los Angeles, CA 90001" +243318,Macbook Pro Laptop,1,1700,08/02/19 15:21,"827 Meadow St, New York City, NY 10001" +243319,Apple Airpods Headphones,1,150,08/21/19 20:38,"534 Jackson St, Boston, MA 02215" +243320,Lightning Charging Cable,1,14.95,08/05/19 19:00,"549 Chestnut St, Seattle, WA 98101" +243321,USB-C Charging Cable,2,11.95,08/22/19 17:25,"741 Madison St, San Francisco, CA 94016" +243322,Vareebadd Phone,1,400,08/20/19 17:52,"260 Church St, San Francisco, CA 94016" +243323,Apple Airpods Headphones,1,150,08/14/19 16:48,"40 11th St, New York City, NY 10001" +243324,USB-C Charging Cable,1,11.95,08/11/19 12:39,"354 7th St, Boston, MA 02215" +243325,Wired Headphones,1,11.99,08/09/19 10:38,"336 Highland St, Seattle, WA 98101" +243326,iPhone,1,700,08/10/19 09:20,"837 Highland St, Los Angeles, CA 90001" +243327,Flatscreen TV,1,300,08/14/19 11:07,"221 5th St, Seattle, WA 98101" +243328,AA Batteries (4-pack),1,3.84,08/13/19 16:52,"356 South St, San Francisco, CA 94016" +243329,iPhone,1,700,08/24/19 19:22,"175 Maple St, San Francisco, CA 94016" +243330,Flatscreen TV,1,300,08/05/19 20:56,"397 Highland St, Dallas, TX 75001" +243331,Wired Headphones,1,11.99,08/26/19 14:46,"917 River St, Austin, TX 73301" +243332,Lightning Charging Cable,1,14.95,08/13/19 21:06,"458 North St, New York City, NY 10001" +243333,Bose SoundSport Headphones,1,99.99,08/13/19 12:00,"141 Walnut St, San Francisco, CA 94016" +243334,Wired Headphones,1,11.99,08/31/19 22:00,"346 Center St, San Francisco, CA 94016" +243335,AAA Batteries (4-pack),2,2.99,08/11/19 19:29,"734 14th St, Seattle, WA 98101" +243336,AAA Batteries (4-pack),2,2.99,08/01/19 07:14,"15 Lakeview St, San Francisco, CA 94016" +243337,AAA Batteries (4-pack),1,2.99,08/08/19 13:22,"617 Hill St, Boston, MA 02215" +243338,AA Batteries (4-pack),1,3.84,08/12/19 21:27,"184 North St, San Francisco, CA 94016" +243339,Lightning Charging Cable,1,14.95,08/07/19 16:10,"932 4th St, San Francisco, CA 94016" +243340,27in 4K Gaming Monitor,1,389.99,08/27/19 15:11,"651 Walnut St, Boston, MA 02215" +243341,Apple Airpods Headphones,1,150,08/27/19 07:19,"655 Highland St, Los Angeles, CA 90001" +243342,Wired Headphones,1,11.99,08/09/19 23:02,"334 Center St, San Francisco, CA 94016" +243343,AAA Batteries (4-pack),1,2.99,08/26/19 19:33,"207 Cedar St, San Francisco, CA 94016" +243344,ThinkPad Laptop,1,999.99,08/12/19 14:57,"31 8th St, Dallas, TX 75001" +243345,Lightning Charging Cable,1,14.95,08/06/19 16:30,"883 8th St, Dallas, TX 75001" +243346,Lightning Charging Cable,1,14.95,08/16/19 19:02,"457 Hickory St, New York City, NY 10001" +243347,Apple Airpods Headphones,1,150,08/27/19 15:10,"197 Hill St, Atlanta, GA 30301" +243348,iPhone,1,700,08/28/19 11:25,"899 Willow St, Dallas, TX 75001" +243349,Bose SoundSport Headphones,1,99.99,08/31/19 19:45,"352 Adams St, Seattle, WA 98101" +243350,Wired Headphones,1,11.99,08/15/19 18:49,"140 Walnut St, Los Angeles, CA 90001" +243351,Lightning Charging Cable,1,14.95,08/10/19 22:38,"232 5th St, San Francisco, CA 94016" +243352,Lightning Charging Cable,1,14.95,08/14/19 01:01,"938 8th St, New York City, NY 10001" +243353,USB-C Charging Cable,1,11.95,08/09/19 06:04,"706 Pine St, Boston, MA 02215" +243354,AAA Batteries (4-pack),1,2.99,08/19/19 16:29,"520 8th St, Los Angeles, CA 90001" +243355,USB-C Charging Cable,1,11.95,08/26/19 12:33,"509 Ridge St, New York City, NY 10001" +243356,Bose SoundSport Headphones,1,99.99,08/18/19 12:33,"454 Johnson St, San Francisco, CA 94016" +243357,Macbook Pro Laptop,1,1700,08/01/19 13:19,"667 Jackson St, Atlanta, GA 30301" +243358,AA Batteries (4-pack),2,3.84,08/23/19 18:13,"876 5th St, Atlanta, GA 30301" +243358,27in FHD Monitor,1,149.99,08/23/19 18:13,"876 5th St, Atlanta, GA 30301" +243359,Macbook Pro Laptop,1,1700,08/27/19 20:08,"388 11th St, San Francisco, CA 94016" +243360,Bose SoundSport Headphones,1,99.99,08/15/19 09:28,"729 Dogwood St, Portland, OR 97035" +243361,Lightning Charging Cable,1,14.95,08/06/19 08:32,"133 South St, New York City, NY 10001" +243362,Wired Headphones,1,11.99,08/07/19 14:10,"35 Park St, Los Angeles, CA 90001" +243363,34in Ultrawide Monitor,1,379.99,08/12/19 09:05,"472 Pine St, Austin, TX 73301" +243364,Wired Headphones,1,11.99,08/17/19 21:00,"186 9th St, Los Angeles, CA 90001" +243365,20in Monitor,1,109.99,08/04/19 03:47,"700 Center St, Boston, MA 02215" +243366,Lightning Charging Cable,1,14.95,08/30/19 14:34,"900 5th St, Portland, ME 04101" +243367,Lightning Charging Cable,1,14.95,08/20/19 22:55,"555 Lakeview St, Los Angeles, CA 90001" +243368,34in Ultrawide Monitor,1,379.99,08/18/19 16:23,"445 6th St, New York City, NY 10001" +243369,Bose SoundSport Headphones,1,99.99,08/15/19 21:55,"833 Meadow St, San Francisco, CA 94016" +243370,Lightning Charging Cable,1,14.95,08/24/19 20:24,"85 South St, Los Angeles, CA 90001" +243371,USB-C Charging Cable,1,11.95,08/11/19 19:33,"533 Cherry St, San Francisco, CA 94016" +243372,Apple Airpods Headphones,1,150,08/24/19 14:38,"971 4th St, New York City, NY 10001" +243373,Google Phone,1,600,08/21/19 13:49,"90 Meadow St, Dallas, TX 75001" +243374,27in FHD Monitor,1,149.99,08/12/19 20:01,"636 4th St, Seattle, WA 98101" +243375,USB-C Charging Cable,1,11.95,08/27/19 23:32,"506 Wilson St, Portland, OR 97035" +243376,USB-C Charging Cable,1,11.95,08/28/19 09:09,"371 Wilson St, New York City, NY 10001" +243377,20in Monitor,1,109.99,08/13/19 19:26,"137 Highland St, San Francisco, CA 94016" +243378,USB-C Charging Cable,2,11.95,08/16/19 20:16,"4 11th St, San Francisco, CA 94016" +243379,Apple Airpods Headphones,1,150,08/15/19 17:05,"759 Hickory St, Boston, MA 02215" +243380,AA Batteries (4-pack),2,3.84,08/19/19 14:20,"854 Elm St, Boston, MA 02215" +243381,AAA Batteries (4-pack),1,2.99,08/11/19 15:46,"451 Lake St, Atlanta, GA 30301" +243382,34in Ultrawide Monitor,1,379.99,08/12/19 15:19,"156 1st St, New York City, NY 10001" +243383,Wired Headphones,1,11.99,08/01/19 12:23,"516 2nd St, New York City, NY 10001" +243384,AAA Batteries (4-pack),1,2.99,08/11/19 10:10,"753 Chestnut St, Seattle, WA 98101" +243385,ThinkPad Laptop,1,999.99,08/14/19 20:14,"355 Forest St, San Francisco, CA 94016" +243386,AAA Batteries (4-pack),1,2.99,08/18/19 12:28,"736 Elm St, New York City, NY 10001" +243387,USB-C Charging Cable,1,11.95,08/07/19 20:11,"492 Walnut St, Atlanta, GA 30301" +243388,34in Ultrawide Monitor,1,379.99,08/04/19 19:22,"895 Maple St, Atlanta, GA 30301" +243389,AA Batteries (4-pack),1,3.84,08/23/19 22:38,"462 Forest St, Los Angeles, CA 90001" +243390,AA Batteries (4-pack),1,3.84,08/08/19 20:08,"250 Adams St, San Francisco, CA 94016" +243391,Lightning Charging Cable,1,14.95,08/13/19 20:35,"558 Cedar St, Atlanta, GA 30301" +243392,Apple Airpods Headphones,1,150,08/16/19 21:17,"319 Highland St, San Francisco, CA 94016" +243393,Google Phone,1,600,08/30/19 11:10,"769 Wilson St, San Francisco, CA 94016" +243394,USB-C Charging Cable,1,11.95,08/11/19 22:07,"104 Willow St, Portland, OR 97035" +243395,Lightning Charging Cable,1,14.95,08/24/19 10:05,"252 6th St, Boston, MA 02215" +243396,USB-C Charging Cable,1,11.95,08/04/19 13:31,"34 1st St, San Francisco, CA 94016" +243397,USB-C Charging Cable,1,11.95,08/29/19 09:52,"590 Walnut St, San Francisco, CA 94016" +243398,Wired Headphones,1,11.99,08/25/19 17:30,"338 Center St, Atlanta, GA 30301" +243399,AAA Batteries (4-pack),2,2.99,08/21/19 23:46,"333 5th St, San Francisco, CA 94016" +243400,Wired Headphones,1,11.99,08/20/19 07:59,"203 North St, San Francisco, CA 94016" +243400,Bose SoundSport Headphones,1,99.99,08/20/19 07:59,"203 North St, San Francisco, CA 94016" +243401,AA Batteries (4-pack),1,3.84,08/23/19 12:46,"650 Lakeview St, Los Angeles, CA 90001" +243402,27in FHD Monitor,1,149.99,08/23/19 18:01,"88 Walnut St, New York City, NY 10001" +243403,USB-C Charging Cable,1,11.95,08/16/19 10:19,"607 West St, Los Angeles, CA 90001" +243404,USB-C Charging Cable,1,11.95,08/26/19 08:59,"638 Johnson St, Los Angeles, CA 90001" +243405,Wired Headphones,1,11.99,08/07/19 18:16,"30 Lakeview St, Seattle, WA 98101" +243406,USB-C Charging Cable,1,11.95,08/30/19 19:32,"727 6th St, San Francisco, CA 94016" +243407,Wired Headphones,1,11.99,08/26/19 22:00,"273 Madison St, Portland, OR 97035" +243408,20in Monitor,1,109.99,08/22/19 08:49,"873 Wilson St, Los Angeles, CA 90001" +243409,Google Phone,1,600,08/18/19 17:22,"457 Walnut St, Austin, TX 73301" +243410,USB-C Charging Cable,1,11.95,08/23/19 22:02,"383 11th St, Los Angeles, CA 90001" +243411,Wired Headphones,1,11.99,08/31/19 16:05,"523 Washington St, San Francisco, CA 94016" +243412,Wired Headphones,1,11.99,08/17/19 21:08,"101 Cherry St, Seattle, WA 98101" +243413,Wired Headphones,1,11.99,08/11/19 08:09,"440 Spruce St, Dallas, TX 75001" +243414,USB-C Charging Cable,1,11.95,08/12/19 17:58,"807 Hickory St, Boston, MA 02215" +243415,Lightning Charging Cable,1,14.95,08/08/19 18:32,"783 Meadow St, Boston, MA 02215" +243416,Bose SoundSport Headphones,1,99.99,08/01/19 09:37,"894 2nd St, Seattle, WA 98101" +243417,Lightning Charging Cable,1,14.95,08/02/19 08:08,"503 Cedar St, Los Angeles, CA 90001" +243418,Bose SoundSport Headphones,1,99.99,08/19/19 13:54,"149 Adams St, Seattle, WA 98101" +243419,34in Ultrawide Monitor,1,379.99,08/24/19 20:07,"503 10th St, Portland, OR 97035" +243420,27in 4K Gaming Monitor,1,389.99,09/01/19 00:06,"349 Wilson St, Seattle, WA 98101" +243421,iPhone,1,700,08/24/19 17:13,"687 12th St, Portland, OR 97035" +243422,Lightning Charging Cable,1,14.95,08/25/19 11:01,"247 Lake St, Seattle, WA 98101" +243423,USB-C Charging Cable,1,11.95,08/01/19 23:09,"10 Jackson St, Atlanta, GA 30301" +243424,AA Batteries (4-pack),1,3.84,08/15/19 21:33,"739 Chestnut St, San Francisco, CA 94016" +243425,Bose SoundSport Headphones,1,99.99,08/10/19 17:49,"517 Johnson St, Austin, TX 73301" +243426,Vareebadd Phone,1,400,08/04/19 15:58,"923 Madison St, Los Angeles, CA 90001" +243426,USB-C Charging Cable,1,11.95,08/04/19 15:58,"923 Madison St, Los Angeles, CA 90001" +243427,27in FHD Monitor,1,149.99,08/29/19 19:37,"529 Main St, Boston, MA 02215" +243428,27in FHD Monitor,1,149.99,08/15/19 16:27,"816 Lincoln St, Boston, MA 02215" +243429,AA Batteries (4-pack),1,3.84,08/25/19 20:19,"659 1st St, New York City, NY 10001" +243430,Macbook Pro Laptop,1,1700,08/30/19 01:33,"774 Center St, San Francisco, CA 94016" +243431,USB-C Charging Cable,1,11.95,08/17/19 21:14,"48 Forest St, New York City, NY 10001" +243432,Macbook Pro Laptop,1,1700,08/07/19 12:24,"521 Jefferson St, San Francisco, CA 94016" +243433,27in FHD Monitor,1,149.99,08/20/19 20:29,"911 Jefferson St, Boston, MA 02215" +243434,AAA Batteries (4-pack),1,2.99,08/14/19 12:11,"606 Cedar St, Boston, MA 02215" +243435,Macbook Pro Laptop,1,1700,08/08/19 03:47,"752 1st St, Seattle, WA 98101" +243436,Macbook Pro Laptop,1,1700,08/31/19 19:17,"427 Forest St, San Francisco, CA 94016" +243437,Wired Headphones,1,11.99,08/07/19 16:39,"298 Lake St, New York City, NY 10001" +243438,Apple Airpods Headphones,1,150,08/17/19 13:41,"83 Lincoln St, Seattle, WA 98101" +243439,AA Batteries (4-pack),1,3.84,08/14/19 16:36,"735 Park St, Dallas, TX 75001" +243440,27in FHD Monitor,1,149.99,08/28/19 20:46,"693 11th St, Boston, MA 02215" +243441,AAA Batteries (4-pack),1,2.99,08/07/19 12:39,"165 5th St, San Francisco, CA 94016" +243442,Macbook Pro Laptop,1,1700,08/28/19 11:36,"446 4th St, Atlanta, GA 30301" +243443,Google Phone,1,600,08/11/19 16:25,"554 Cherry St, Los Angeles, CA 90001" +243444,Bose SoundSport Headphones,1,99.99,08/31/19 07:54,"742 9th St, Seattle, WA 98101" +243445,34in Ultrawide Monitor,1,379.99,08/30/19 11:32,"266 6th St, New York City, NY 10001" +243446,Lightning Charging Cable,1,14.95,08/12/19 17:53,"885 Park St, New York City, NY 10001" +243447,Lightning Charging Cable,1,14.95,08/10/19 11:27,"184 Forest St, Atlanta, GA 30301" +243448,Bose SoundSport Headphones,1,99.99,08/17/19 18:05,"507 14th St, Los Angeles, CA 90001" +243449,Macbook Pro Laptop,1,1700,08/20/19 17:24,"991 13th St, Seattle, WA 98101" +243450,27in FHD Monitor,1,149.99,08/23/19 23:03,"552 Pine St, New York City, NY 10001" +243451,AAA Batteries (4-pack),2,2.99,08/22/19 19:49,"654 10th St, San Francisco, CA 94016" +243452,Bose SoundSport Headphones,1,99.99,08/04/19 17:41,"253 Meadow St, New York City, NY 10001" +243453,Wired Headphones,3,11.99,08/06/19 19:49,"227 Washington St, Dallas, TX 75001" +243454,27in FHD Monitor,1,149.99,08/17/19 14:15,"828 11th St, Portland, OR 97035" +243455,AAA Batteries (4-pack),1,2.99,08/23/19 09:06,"215 Spruce St, San Francisco, CA 94016" +243456,Apple Airpods Headphones,1,150,08/30/19 20:32,"696 Walnut St, Boston, MA 02215" +243457,AA Batteries (4-pack),1,3.84,08/20/19 13:05,"972 Park St, San Francisco, CA 94016" +243458,AAA Batteries (4-pack),1,2.99,08/03/19 20:15,"272 7th St, Portland, ME 04101" +243459,Apple Airpods Headphones,1,150,08/17/19 16:45,"948 5th St, San Francisco, CA 94016" +243460,USB-C Charging Cable,1,11.95,08/03/19 23:08,"371 Ridge St, Atlanta, GA 30301" +243461,Flatscreen TV,1,300,08/18/19 08:33,"968 Elm St, Boston, MA 02215" +243462,AA Batteries (4-pack),2,3.84,08/15/19 00:35,"463 Johnson St, Seattle, WA 98101" +243463,27in 4K Gaming Monitor,1,389.99,08/04/19 10:19,"523 Hickory St, Los Angeles, CA 90001" +243464,AAA Batteries (4-pack),1,2.99,08/03/19 18:32,"634 Adams St, Austin, TX 73301" +243465,Wired Headphones,1,11.99,08/17/19 11:30,"819 5th St, New York City, NY 10001" +243466,Bose SoundSport Headphones,1,99.99,08/25/19 11:57,"634 6th St, Boston, MA 02215" +243467,Lightning Charging Cable,1,14.95,08/23/19 19:38,"259 14th St, Austin, TX 73301" +243468,Macbook Pro Laptop,1,1700,08/05/19 12:36,"264 13th St, San Francisco, CA 94016" +243469,AA Batteries (4-pack),1,3.84,08/27/19 16:06,"727 Church St, Atlanta, GA 30301" +243470,Lightning Charging Cable,2,14.95,08/17/19 20:24,"713 Adams St, Los Angeles, CA 90001" +243471,USB-C Charging Cable,1,11.95,08/19/19 05:46,"602 Hill St, San Francisco, CA 94016" +243472,Wired Headphones,1,11.99,08/23/19 13:24,"201 Meadow St, New York City, NY 10001" +243473,Lightning Charging Cable,1,14.95,08/26/19 13:13,"792 Walnut St, Los Angeles, CA 90001" +243474,Lightning Charging Cable,1,14.95,08/26/19 12:40,"678 Elm St, New York City, NY 10001" +243475,27in FHD Monitor,1,149.99,08/22/19 14:35,"123 Dogwood St, New York City, NY 10001" +243476,27in 4K Gaming Monitor,1,389.99,08/08/19 09:56,"978 4th St, San Francisco, CA 94016" +243477,Lightning Charging Cable,1,14.95,08/24/19 16:39,"397 Cedar St, Los Angeles, CA 90001" +243478,AAA Batteries (4-pack),1,2.99,08/05/19 09:33,"601 Hickory St, Los Angeles, CA 90001" +243479,Google Phone,1,600,08/30/19 23:55,"106 South St, Seattle, WA 98101" +243480,Vareebadd Phone,1,400,08/27/19 22:00,"167 Elm St, Boston, MA 02215" +243480,Wired Headphones,2,11.99,08/27/19 22:00,"167 Elm St, Boston, MA 02215" +243481,ThinkPad Laptop,1,999.99,08/18/19 18:57,"175 Adams St, Austin, TX 73301" +243482,AA Batteries (4-pack),1,3.84,08/13/19 01:45,"876 1st St, San Francisco, CA 94016" +243483,AAA Batteries (4-pack),1,2.99,08/24/19 16:18,"532 Washington St, Dallas, TX 75001" +243484,Wired Headphones,1,11.99,08/16/19 16:59,"906 Madison St, Seattle, WA 98101" +243485,USB-C Charging Cable,1,11.95,08/05/19 09:14,"732 2nd St, Los Angeles, CA 90001" +243486,Apple Airpods Headphones,1,150,08/25/19 23:03,"641 Madison St, San Francisco, CA 94016" +243487,USB-C Charging Cable,2,11.95,08/25/19 11:54,"376 Johnson St, Seattle, WA 98101" +243488,USB-C Charging Cable,1,11.95,08/10/19 00:27,"218 11th St, Dallas, TX 75001" +243489,Apple Airpods Headphones,1,150,08/11/19 17:42,"193 Pine St, Portland, OR 97035" +243490,AA Batteries (4-pack),1,3.84,08/12/19 10:14,"395 Church St, Atlanta, GA 30301" +243491,USB-C Charging Cable,2,11.95,08/30/19 17:36,"153 9th St, Los Angeles, CA 90001" +243492,AA Batteries (4-pack),2,3.84,08/13/19 12:09,"811 4th St, San Francisco, CA 94016" +243493,Lightning Charging Cable,1,14.95,08/01/19 11:42,"308 9th St, San Francisco, CA 94016" +243494,Bose SoundSport Headphones,1,99.99,08/28/19 11:00,"907 7th St, San Francisco, CA 94016" +243495,Flatscreen TV,1,300,08/24/19 00:26,"951 2nd St, Seattle, WA 98101" +243496,AAA Batteries (4-pack),2,2.99,08/14/19 22:06,"313 West St, Atlanta, GA 30301" +243497,27in FHD Monitor,1,149.99,08/24/19 19:00,"982 4th St, Los Angeles, CA 90001" +243498,AAA Batteries (4-pack),1,2.99,08/13/19 13:29,"89 Dogwood St, Boston, MA 02215" +243499,ThinkPad Laptop,1,999.99,08/15/19 23:10,"733 Pine St, San Francisco, CA 94016" +243500,ThinkPad Laptop,1,999.99,08/04/19 08:22,"406 West St, Los Angeles, CA 90001" +243501,Lightning Charging Cable,1,14.95,08/15/19 09:05,"903 North St, Portland, OR 97035" +243502,27in 4K Gaming Monitor,1,389.99,08/29/19 15:19,"58 Cedar St, San Francisco, CA 94016" +243503,Google Phone,1,600,08/25/19 18:53,"997 7th St, Los Angeles, CA 90001" +243504,Bose SoundSport Headphones,1,99.99,08/12/19 20:13,"973 Madison St, San Francisco, CA 94016" +243505,AAA Batteries (4-pack),1,2.99,08/27/19 18:43,"376 Hill St, New York City, NY 10001" +243506,USB-C Charging Cable,1,11.95,08/26/19 18:52,"178 South St, Portland, OR 97035" +243507,34in Ultrawide Monitor,1,379.99,08/14/19 15:48,"426 9th St, Boston, MA 02215" +243508,Lightning Charging Cable,1,14.95,08/09/19 14:44,"672 Walnut St, New York City, NY 10001" +243509,Apple Airpods Headphones,1,150,08/20/19 00:51,"687 6th St, New York City, NY 10001" +243510,Apple Airpods Headphones,1,150,08/23/19 15:52,"41 7th St, Portland, OR 97035" +243511,Wired Headphones,1,11.99,08/02/19 17:53,"704 Adams St, New York City, NY 10001" +243512,Wired Headphones,1,11.99,08/10/19 19:32,"469 11th St, San Francisco, CA 94016" +243513,Wired Headphones,1,11.99,08/28/19 10:59,"409 11th St, Los Angeles, CA 90001" +243514,27in FHD Monitor,1,149.99,08/29/19 15:58,"258 12th St, Seattle, WA 98101" +243515,Lightning Charging Cable,1,14.95,08/28/19 01:18,"289 West St, Atlanta, GA 30301" +243516,Google Phone,1,600,08/11/19 16:42,"171 14th St, Dallas, TX 75001" +243517,Bose SoundSport Headphones,1,99.99,08/18/19 22:27,"91 2nd St, Dallas, TX 75001" +243518,AA Batteries (4-pack),1,3.84,08/24/19 19:36,"400 14th St, Seattle, WA 98101" +243519,iPhone,1,700,08/07/19 17:29,"366 Hill St, Seattle, WA 98101" +243519,Lightning Charging Cable,1,14.95,08/07/19 17:29,"366 Hill St, Seattle, WA 98101" +243520,27in 4K Gaming Monitor,1,389.99,08/26/19 09:27,"280 South St, Atlanta, GA 30301" +243521,Wired Headphones,1,11.99,08/06/19 15:58,"877 Dogwood St, Boston, MA 02215" +243522,27in 4K Gaming Monitor,1,389.99,08/25/19 07:27,"990 9th St, New York City, NY 10001" +243522,27in 4K Gaming Monitor,1,389.99,08/25/19 07:27,"990 9th St, New York City, NY 10001" +243523,Lightning Charging Cable,1,14.95,08/20/19 20:40,"238 Elm St, San Francisco, CA 94016" +243523,Vareebadd Phone,1,400,08/20/19 20:40,"238 Elm St, San Francisco, CA 94016" +243524,AA Batteries (4-pack),1,3.84,08/29/19 21:55,"984 Lakeview St, Los Angeles, CA 90001" +243525,Lightning Charging Cable,1,14.95,08/04/19 15:51,"142 Willow St, Atlanta, GA 30301" +243526,AA Batteries (4-pack),1,3.84,08/24/19 20:50,"477 10th St, New York City, NY 10001" +243527,Google Phone,1,600,08/03/19 04:01,"629 6th St, New York City, NY 10001" +243528,AAA Batteries (4-pack),2,2.99,08/11/19 22:55,"609 River St, Dallas, TX 75001" +243529,Lightning Charging Cable,1,14.95,08/17/19 23:57,"836 Maple St, San Francisco, CA 94016" +243530,USB-C Charging Cable,1,11.95,08/04/19 07:38,"723 4th St, New York City, NY 10001" +243531,Bose SoundSport Headphones,1,99.99,08/23/19 09:33,"732 Johnson St, Portland, OR 97035" +243532,AAA Batteries (4-pack),1,2.99,08/16/19 15:24,"590 Jackson St, San Francisco, CA 94016" +243533,AAA Batteries (4-pack),1,2.99,08/06/19 08:06,"868 Chestnut St, Boston, MA 02215" +243534,ThinkPad Laptop,1,999.99,08/08/19 11:46,"129 Forest St, Seattle, WA 98101" +243535,Bose SoundSport Headphones,1,99.99,08/23/19 12:31,"970 South St, San Francisco, CA 94016" +243536,20in Monitor,1,109.99,08/11/19 07:07,"46 8th St, Dallas, TX 75001" +243537,Google Phone,1,600,08/19/19 09:21,"590 14th St, San Francisco, CA 94016" +243537,USB-C Charging Cable,2,11.95,08/19/19 09:21,"590 14th St, San Francisco, CA 94016" +243538,Wired Headphones,1,11.99,08/28/19 12:03,"966 Jackson St, New York City, NY 10001" +243539,Bose SoundSport Headphones,1,99.99,08/25/19 22:28,"700 Highland St, Los Angeles, CA 90001" +243540,Bose SoundSport Headphones,1,99.99,08/20/19 18:13,"371 Hickory St, New York City, NY 10001" +243541,AAA Batteries (4-pack),4,2.99,08/08/19 20:53,"738 Sunset St, Dallas, TX 75001" +243542,iPhone,1,700,08/18/19 15:16,"565 River St, New York City, NY 10001" +243543,AAA Batteries (4-pack),3,2.99,08/21/19 09:41,"207 Church St, Seattle, WA 98101" +243544,Lightning Charging Cable,1,14.95,08/09/19 17:12,"275 West St, Austin, TX 73301" +243545,Bose SoundSport Headphones,1,99.99,08/07/19 12:53,"397 5th St, Dallas, TX 75001" +243546,Wired Headphones,1,11.99,08/16/19 16:57,"936 Lake St, Austin, TX 73301" +243547,Flatscreen TV,1,300,08/11/19 10:10,"476 Hickory St, San Francisco, CA 94016" +243548,Wired Headphones,1,11.99,08/04/19 16:09,"379 North St, Los Angeles, CA 90001" +243549,AAA Batteries (4-pack),1,2.99,08/27/19 18:54,"520 Jefferson St, San Francisco, CA 94016" +243550,USB-C Charging Cable,1,11.95,08/10/19 05:18,"619 Wilson St, Seattle, WA 98101" +243551,Apple Airpods Headphones,1,150,08/17/19 08:48,"622 Chestnut St, San Francisco, CA 94016" +243552,AAA Batteries (4-pack),2,2.99,08/12/19 19:14,"123 Lake St, Dallas, TX 75001" +243553,Apple Airpods Headphones,1,150,08/14/19 21:10,"729 Cedar St, Dallas, TX 75001" +243554,iPhone,1,700,08/29/19 20:41,"865 10th St, Boston, MA 02215" +243555,Macbook Pro Laptop,1,1700,08/26/19 05:46,"994 2nd St, Portland, OR 97035" +243556,27in 4K Gaming Monitor,1,389.99,08/03/19 15:08,"470 Forest St, Atlanta, GA 30301" +243557,27in FHD Monitor,1,149.99,08/17/19 12:20,"368 6th St, Boston, MA 02215" +243558,USB-C Charging Cable,1,11.95,08/28/19 08:41,"444 Jackson St, Dallas, TX 75001" +243559,Lightning Charging Cable,1,14.95,08/04/19 20:17,"936 Jackson St, Atlanta, GA 30301" +243560,Apple Airpods Headphones,1,150,08/18/19 20:52,"953 Forest St, Los Angeles, CA 90001" +243561,AAA Batteries (4-pack),3,2.99,08/22/19 22:32,"82 Spruce St, Boston, MA 02215" +243562,USB-C Charging Cable,1,11.95,08/31/19 17:04,"445 Sunset St, Los Angeles, CA 90001" +243563,USB-C Charging Cable,1,11.95,08/13/19 22:40,"624 Cherry St, Portland, OR 97035" +243564,AA Batteries (4-pack),2,3.84,08/23/19 22:58,"567 4th St, Boston, MA 02215" +243565,iPhone,1,700,08/25/19 19:36,"530 Spruce St, New York City, NY 10001" +243566,Apple Airpods Headphones,1,150,08/31/19 17:04,"861 North St, San Francisco, CA 94016" +243567,Apple Airpods Headphones,1,150,08/24/19 23:46,"578 2nd St, New York City, NY 10001" +243568,Google Phone,1,600,08/18/19 12:54,"989 Lake St, New York City, NY 10001" +243569,AA Batteries (4-pack),1,3.84,08/13/19 17:37,"423 Meadow St, San Francisco, CA 94016" +243570,Lightning Charging Cable,1,14.95,08/20/19 13:36,"256 Dogwood St, Seattle, WA 98101" +243571,USB-C Charging Cable,1,11.95,08/09/19 11:36,"657 7th St, Boston, MA 02215" +243572,Apple Airpods Headphones,1,150,08/12/19 12:04,"836 Cherry St, Boston, MA 02215" +243573,34in Ultrawide Monitor,1,379.99,08/21/19 00:10,"307 11th St, Boston, MA 02215" +243574,AA Batteries (4-pack),1,3.84,08/23/19 09:28,"819 8th St, New York City, NY 10001" +243575,27in 4K Gaming Monitor,1,389.99,08/11/19 13:17,"397 1st St, Dallas, TX 75001" +243576,Lightning Charging Cable,1,14.95,08/06/19 04:48,"481 9th St, Los Angeles, CA 90001" +243577,USB-C Charging Cable,1,11.95,08/16/19 11:34,"703 Church St, Boston, MA 02215" +243578,Wired Headphones,1,11.99,08/27/19 12:27,"919 Wilson St, Portland, OR 97035" +243579,Apple Airpods Headphones,1,150,08/22/19 08:20,"21 South St, San Francisco, CA 94016" +243580,Wired Headphones,1,11.99,08/01/19 16:32,"972 Willow St, Los Angeles, CA 90001" +243581,Apple Airpods Headphones,1,150,08/14/19 01:59,"239 Jefferson St, Boston, MA 02215" +243582,iPhone,1,700,08/06/19 08:55,"860 Jackson St, Atlanta, GA 30301" +243583,Bose SoundSport Headphones,1,99.99,08/21/19 22:10,"594 Washington St, Atlanta, GA 30301" +243584,iPhone,1,700,08/14/19 16:01,"898 Center St, New York City, NY 10001" +243585,Lightning Charging Cable,1,14.95,08/31/19 16:44,"913 Lakeview St, Portland, OR 97035" +243586,iPhone,1,700,08/04/19 07:06,"820 11th St, Boston, MA 02215" +243586,Wired Headphones,1,11.99,08/04/19 07:06,"820 11th St, Boston, MA 02215" +243587,AA Batteries (4-pack),1,3.84,08/07/19 11:30,"279 13th St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +243588,Apple Airpods Headphones,1,150,08/14/19 14:08,"526 Lincoln St, Austin, TX 73301" +243589,20in Monitor,1,109.99,08/03/19 21:26,"478 Lincoln St, Boston, MA 02215" +243590,Bose SoundSport Headphones,1,99.99,08/13/19 16:31,"223 Wilson St, Atlanta, GA 30301" +243591,AA Batteries (4-pack),1,3.84,08/30/19 20:16,"624 Walnut St, Los Angeles, CA 90001" +243592,Wired Headphones,1,11.99,08/21/19 16:32,"72 Lincoln St, New York City, NY 10001" +243593,Lightning Charging Cable,1,14.95,08/07/19 17:20,"988 Ridge St, San Francisco, CA 94016" +243594,Wired Headphones,1,11.99,08/11/19 20:56,"439 Ridge St, Seattle, WA 98101" +243595,USB-C Charging Cable,1,11.95,08/24/19 16:19,"764 Hickory St, Austin, TX 73301" +243596,USB-C Charging Cable,1,11.95,08/06/19 11:13,"789 Elm St, San Francisco, CA 94016" +243597,20in Monitor,1,109.99,08/12/19 19:47,"225 Chestnut St, San Francisco, CA 94016" +243598,Wired Headphones,1,11.99,08/08/19 17:13,"773 2nd St, Portland, OR 97035" +243599,USB-C Charging Cable,1,11.95,08/26/19 11:24,"29 Highland St, Dallas, TX 75001" +243600,AAA Batteries (4-pack),1,2.99,08/04/19 15:39,"602 Chestnut St, New York City, NY 10001" +243601,Apple Airpods Headphones,1,150,08/16/19 00:07,"371 6th St, San Francisco, CA 94016" +243602,AA Batteries (4-pack),1,3.84,08/10/19 17:00,"938 Lake St, Portland, OR 97035" +243603,AAA Batteries (4-pack),1,2.99,08/05/19 17:12,"939 13th St, San Francisco, CA 94016" +243604,Flatscreen TV,1,300,08/11/19 22:27,"28 Pine St, Los Angeles, CA 90001" +243605,USB-C Charging Cable,1,11.95,08/09/19 18:11,"798 Dogwood St, Dallas, TX 75001" +243606,AAA Batteries (4-pack),1,2.99,08/08/19 17:14,"342 4th St, Dallas, TX 75001" +243607,Google Phone,1,600,08/08/19 21:14,"158 Jackson St, New York City, NY 10001" +243608,AA Batteries (4-pack),2,3.84,08/14/19 23:40,"125 South St, Seattle, WA 98101" +243609,Lightning Charging Cable,1,14.95,08/13/19 19:27,"242 Ridge St, Dallas, TX 75001" +243610,27in FHD Monitor,1,149.99,08/23/19 10:42,"94 Walnut St, New York City, NY 10001" +243611,AAA Batteries (4-pack),1,2.99,08/11/19 11:25,"543 Dogwood St, San Francisco, CA 94016" +243612,USB-C Charging Cable,1,11.95,08/04/19 18:49,"21 Maple St, San Francisco, CA 94016" +243613,Bose SoundSport Headphones,1,99.99,08/12/19 13:33,"667 Jefferson St, San Francisco, CA 94016" +243614,Bose SoundSport Headphones,1,99.99,08/29/19 13:37,"662 Chestnut St, San Francisco, CA 94016" +243615,Lightning Charging Cable,1,14.95,08/09/19 14:53,"776 9th St, Dallas, TX 75001" +243616,AA Batteries (4-pack),2,3.84,08/13/19 17:31,"302 Wilson St, Austin, TX 73301" +243617,Bose SoundSport Headphones,1,99.99,08/28/19 19:25,"293 South St, Los Angeles, CA 90001" +243618,ThinkPad Laptop,1,999.99,08/15/19 16:56,"739 4th St, New York City, NY 10001" +243619,Wired Headphones,1,11.99,08/27/19 20:04,"465 Church St, Portland, ME 04101" +243620,34in Ultrawide Monitor,1,379.99,08/24/19 08:49,"520 Church St, San Francisco, CA 94016" +243621,AA Batteries (4-pack),2,3.84,08/10/19 23:33,"836 Lincoln St, San Francisco, CA 94016" +243622,Lightning Charging Cable,1,14.95,08/08/19 20:05,"664 Center St, Dallas, TX 75001" +243623,Lightning Charging Cable,2,14.95,08/06/19 18:34,"487 Maple St, Atlanta, GA 30301" +243624,27in 4K Gaming Monitor,1,389.99,08/07/19 15:39,"888 Lakeview St, Dallas, TX 75001" +243625,ThinkPad Laptop,1,999.99,08/15/19 12:03,"741 Spruce St, Austin, TX 73301" +243626,iPhone,1,700,08/05/19 19:29,"3 Walnut St, Austin, TX 73301" +243627,USB-C Charging Cable,1,11.95,08/20/19 18:13,"345 Pine St, Los Angeles, CA 90001" +243628,20in Monitor,1,109.99,08/12/19 15:25,"487 Hickory St, San Francisco, CA 94016" +243629,AA Batteries (4-pack),1,3.84,08/31/19 18:23,"147 River St, Los Angeles, CA 90001" +243630,Wired Headphones,1,11.99,08/23/19 11:53,"80 Pine St, Los Angeles, CA 90001" +243631,AA Batteries (4-pack),1,3.84,08/12/19 11:13,"75 Ridge St, Atlanta, GA 30301" +243632,Apple Airpods Headphones,1,150,08/04/19 18:21,"125 Dogwood St, Dallas, TX 75001" +243633,USB-C Charging Cable,1,11.95,08/20/19 12:03,"124 Willow St, Seattle, WA 98101" +243634,Apple Airpods Headphones,1,150,08/23/19 11:47,"164 13th St, Dallas, TX 75001" +243635,AA Batteries (4-pack),2,3.84,08/19/19 22:13,"317 Johnson St, New York City, NY 10001" +243636,USB-C Charging Cable,1,11.95,08/20/19 20:28,"417 Meadow St, New York City, NY 10001" +243637,AA Batteries (4-pack),1,3.84,08/23/19 12:43,"895 10th St, New York City, NY 10001" +243638,Apple Airpods Headphones,1,150,08/02/19 15:55,"356 Adams St, San Francisco, CA 94016" +243639,Lightning Charging Cable,1,14.95,08/07/19 17:08,"285 Lake St, San Francisco, CA 94016" +243640,Bose SoundSport Headphones,1,99.99,08/27/19 12:45,"562 West St, Seattle, WA 98101" +243641,Wired Headphones,2,11.99,08/31/19 12:45,"780 Walnut St, Dallas, TX 75001" +243642,Macbook Pro Laptop,1,1700,08/15/19 06:35,"150 South St, Boston, MA 02215" +243643,Bose SoundSport Headphones,1,99.99,08/08/19 20:32,"923 9th St, Dallas, TX 75001" +243644,27in FHD Monitor,1,149.99,08/21/19 10:50,"158 13th St, New York City, NY 10001" +243645,Apple Airpods Headphones,1,150,08/16/19 12:37,"572 River St, Seattle, WA 98101" +243646,Apple Airpods Headphones,1,150,08/13/19 18:10,"271 Chestnut St, New York City, NY 10001" +243647,iPhone,1,700,08/21/19 12:38,"329 Dogwood St, Seattle, WA 98101" +243648,34in Ultrawide Monitor,1,379.99,08/26/19 20:56,"886 Cherry St, Portland, OR 97035" +243649,Bose SoundSport Headphones,1,99.99,08/08/19 18:26,"490 11th St, San Francisco, CA 94016" +243650,Wired Headphones,1,11.99,08/20/19 13:00,"511 6th St, Los Angeles, CA 90001" +243651,27in FHD Monitor,1,149.99,08/30/19 17:58,"561 Hickory St, Dallas, TX 75001" +243652,USB-C Charging Cable,2,11.95,08/12/19 21:20,"514 4th St, New York City, NY 10001" +243653,Lightning Charging Cable,1,14.95,08/29/19 17:57,"421 12th St, Los Angeles, CA 90001" +243654,34in Ultrawide Monitor,1,379.99,08/22/19 12:41,"272 West St, Portland, OR 97035" +243655,34in Ultrawide Monitor,1,379.99,08/31/19 15:08,"870 Main St, Los Angeles, CA 90001" +243656,AA Batteries (4-pack),1,3.84,08/12/19 10:38,"284 South St, San Francisco, CA 94016" +243657,20in Monitor,1,109.99,08/24/19 14:37,"407 1st St, Boston, MA 02215" +243658,Flatscreen TV,1,300,08/14/19 20:33,"500 6th St, Boston, MA 02215" +243659,27in FHD Monitor,1,149.99,08/23/19 08:53,"251 South St, Los Angeles, CA 90001" +243660,Bose SoundSport Headphones,1,99.99,08/04/19 20:48,"565 North St, Los Angeles, CA 90001" +243661,Wired Headphones,1,11.99,08/14/19 19:39,"322 Sunset St, Boston, MA 02215" +243662,AAA Batteries (4-pack),1,2.99,08/11/19 23:39,"442 Walnut St, Boston, MA 02215" +243663,Flatscreen TV,1,300,08/28/19 12:59,"78 Maple St, Seattle, WA 98101" +243664,Lightning Charging Cable,1,14.95,08/31/19 05:40,"223 10th St, Atlanta, GA 30301" +243665,Lightning Charging Cable,1,14.95,08/28/19 23:11,"960 Pine St, Boston, MA 02215" +243666,Wired Headphones,1,11.99,08/29/19 17:38,"411 2nd St, Atlanta, GA 30301" +243667,Wired Headphones,1,11.99,08/18/19 15:03,"776 Chestnut St, Portland, OR 97035" +243668,AAA Batteries (4-pack),1,2.99,08/30/19 15:26,"8 Sunset St, Dallas, TX 75001" +243669,USB-C Charging Cable,1,11.95,08/15/19 13:41,"162 Main St, San Francisco, CA 94016" +243670,Apple Airpods Headphones,1,150,08/10/19 18:25,"856 West St, Austin, TX 73301" +243671,Apple Airpods Headphones,1,150,08/04/19 19:31,"458 Hill St, Portland, OR 97035" +243672,Bose SoundSport Headphones,1,99.99,08/10/19 13:33,"771 Wilson St, San Francisco, CA 94016" +243673,AAA Batteries (4-pack),1,2.99,08/16/19 09:28,"78 West St, New York City, NY 10001" +243674,Bose SoundSport Headphones,1,99.99,08/06/19 02:17,"239 1st St, New York City, NY 10001" +243675,27in FHD Monitor,2,149.99,08/26/19 14:37,"466 Spruce St, Atlanta, GA 30301" +243676,AA Batteries (4-pack),1,3.84,08/18/19 19:44,"275 7th St, Seattle, WA 98101" +243677,Wired Headphones,1,11.99,08/14/19 10:36,"975 Meadow St, Los Angeles, CA 90001" +243678,USB-C Charging Cable,1,11.95,08/14/19 01:49,"176 Lakeview St, Atlanta, GA 30301" +243679,Apple Airpods Headphones,1,150,08/13/19 20:25,"868 Jackson St, San Francisco, CA 94016" +243679,Wired Headphones,1,11.99,08/13/19 20:25,"868 Jackson St, San Francisco, CA 94016" +243680,ThinkPad Laptop,1,999.99,08/30/19 08:33,"348 Johnson St, New York City, NY 10001" +243681,Apple Airpods Headphones,1,150,08/25/19 08:54,"620 Johnson St, Dallas, TX 75001" +243682,Bose SoundSport Headphones,1,99.99,08/26/19 19:48,"940 2nd St, Portland, OR 97035" +243683,AAA Batteries (4-pack),1,2.99,08/28/19 00:00,"662 Highland St, Austin, TX 73301" +243684,AAA Batteries (4-pack),1,2.99,08/30/19 11:00,"680 Forest St, San Francisco, CA 94016" +243685,Lightning Charging Cable,1,14.95,08/19/19 12:56,"56 North St, Boston, MA 02215" +243686,Flatscreen TV,1,300,08/15/19 13:05,"940 Dogwood St, Boston, MA 02215" +243687,Macbook Pro Laptop,1,1700,08/01/19 11:18,"860 Jackson St, Portland, ME 04101" +243688,AA Batteries (4-pack),1,3.84,08/20/19 19:22,"756 2nd St, Dallas, TX 75001" +243689,Bose SoundSport Headphones,1,99.99,08/27/19 17:36,"321 4th St, Atlanta, GA 30301" +243690,AA Batteries (4-pack),1,3.84,08/12/19 23:44,"415 14th St, Seattle, WA 98101" +243691,Bose SoundSport Headphones,1,99.99,08/17/19 18:05,"799 9th St, New York City, NY 10001" +243692,AA Batteries (4-pack),1,3.84,08/04/19 04:59,"272 Washington St, Austin, TX 73301" +243693,Apple Airpods Headphones,1,150,08/18/19 08:51,"217 Wilson St, San Francisco, CA 94016" +243694,USB-C Charging Cable,1,11.95,08/08/19 22:14,"878 7th St, Seattle, WA 98101" +243695,AAA Batteries (4-pack),1,2.99,08/27/19 12:56,"315 Madison St, Portland, OR 97035" +243696,AA Batteries (4-pack),2,3.84,08/15/19 10:28,"587 North St, San Francisco, CA 94016" +243697,iPhone,1,700,08/03/19 07:53,"972 11th St, San Francisco, CA 94016" +243698,Flatscreen TV,1,300,08/29/19 13:15,"294 Cherry St, Atlanta, GA 30301" +243699,Apple Airpods Headphones,1,150,08/04/19 01:29,"756 12th St, New York City, NY 10001" +243700,AA Batteries (4-pack),1,3.84,08/06/19 21:47,"565 Hill St, San Francisco, CA 94016" +243701,USB-C Charging Cable,1,11.95,08/05/19 15:50,"780 Elm St, Atlanta, GA 30301" +243702,Apple Airpods Headphones,1,150,08/26/19 23:40,"860 Madison St, Dallas, TX 75001" +243703,Lightning Charging Cable,1,14.95,08/04/19 18:02,"175 South St, New York City, NY 10001" +243704,Bose SoundSport Headphones,1,99.99,08/26/19 08:41,"541 Lake St, Los Angeles, CA 90001" +243705,27in FHD Monitor,1,149.99,08/23/19 12:10,"325 South St, San Francisco, CA 94016" +243706,Wired Headphones,1,11.99,08/19/19 15:12,"866 Dogwood St, Austin, TX 73301" +243707,Bose SoundSport Headphones,1,99.99,08/17/19 14:03,"100 11th St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +243708,iPhone,1,700,08/11/19 18:48,"749 11th St, Seattle, WA 98101" +243709,Bose SoundSport Headphones,1,99.99,08/07/19 14:34,"457 Forest St, Los Angeles, CA 90001" +243710,Lightning Charging Cable,1,14.95,08/29/19 18:59,"59 Jefferson St, New York City, NY 10001" +243711,27in 4K Gaming Monitor,1,389.99,08/03/19 13:23,"207 Jackson St, San Francisco, CA 94016" +243712,27in FHD Monitor,1,149.99,08/24/19 18:06,"480 Hill St, Los Angeles, CA 90001" +243713,27in 4K Gaming Monitor,1,389.99,08/25/19 18:07,"22 Hickory St, New York City, NY 10001" +243714,Macbook Pro Laptop,1,1700,08/15/19 19:40,"105 12th St, San Francisco, CA 94016" +243715,AAA Batteries (4-pack),2,2.99,08/04/19 19:15,"884 14th St, San Francisco, CA 94016" +243716,Bose SoundSport Headphones,1,99.99,08/04/19 20:16,"507 Dogwood St, New York City, NY 10001" +243717,AAA Batteries (4-pack),1,2.99,08/05/19 10:55,"48 Lake St, Atlanta, GA 30301" +243718,Lightning Charging Cable,1,14.95,08/30/19 15:29,"902 Park St, Los Angeles, CA 90001" +243719,AAA Batteries (4-pack),1,2.99,08/07/19 07:21,"230 Willow St, Portland, OR 97035" +243720,AAA Batteries (4-pack),1,2.99,08/30/19 07:47,"262 9th St, Atlanta, GA 30301" +243721,AA Batteries (4-pack),1,3.84,08/31/19 22:15,"270 Center St, Portland, OR 97035" +243722,27in FHD Monitor,1,149.99,08/24/19 12:51,"906 Meadow St, San Francisco, CA 94016" +243723,Lightning Charging Cable,1,14.95,08/02/19 13:39,"942 Johnson St, Los Angeles, CA 90001" +,,,,, +243724,Vareebadd Phone,1,400,08/29/19 14:27,"317 Cedar St, Atlanta, GA 30301" +243725,Lightning Charging Cable,1,14.95,08/14/19 21:58,"498 1st St, Seattle, WA 98101" +243725,Wired Headphones,1,11.99,08/14/19 21:58,"498 1st St, Seattle, WA 98101" +243726,Wired Headphones,1,11.99,08/27/19 22:27,"588 4th St, Dallas, TX 75001" +243727,Wired Headphones,2,11.99,08/10/19 13:31,"511 Center St, Boston, MA 02215" +243728,Wired Headphones,1,11.99,08/20/19 18:57,"959 Jefferson St, Austin, TX 73301" +243729,AA Batteries (4-pack),1,3.84,08/28/19 18:31,"781 Lakeview St, Atlanta, GA 30301" +243730,Wired Headphones,1,11.99,08/16/19 11:32,"272 Cherry St, Los Angeles, CA 90001" +243731,Lightning Charging Cable,1,14.95,08/17/19 11:54,"191 Highland St, New York City, NY 10001" +243732,27in FHD Monitor,1,149.99,08/17/19 14:30,"276 Madison St, Seattle, WA 98101" +243733,ThinkPad Laptop,1,999.99,08/29/19 18:36,"914 1st St, New York City, NY 10001" +243734,AA Batteries (4-pack),1,3.84,08/25/19 14:19,"623 Hickory St, Dallas, TX 75001" +243735,Wired Headphones,1,11.99,08/31/19 12:14,"754 Jefferson St, Dallas, TX 75001" +243735,20in Monitor,1,109.99,08/31/19 12:14,"754 Jefferson St, Dallas, TX 75001" +243736,Google Phone,1,600,08/16/19 12:57,"903 Cherry St, Dallas, TX 75001" +243737,Lightning Charging Cable,1,14.95,08/18/19 10:55,"332 Washington St, Dallas, TX 75001" +243738,USB-C Charging Cable,1,11.95,08/22/19 22:36,"353 5th St, San Francisco, CA 94016" +243738,Lightning Charging Cable,1,14.95,08/22/19 22:36,"353 5th St, San Francisco, CA 94016" +243739,ThinkPad Laptop,1,999.99,08/21/19 09:12,"161 Lincoln St, Los Angeles, CA 90001" +243740,Wired Headphones,1,11.99,08/05/19 12:12,"82 Park St, Austin, TX 73301" +243741,Lightning Charging Cable,1,14.95,08/15/19 09:19,"263 Hill St, Los Angeles, CA 90001" +243742,Lightning Charging Cable,1,14.95,08/15/19 12:28,"685 Washington St, Los Angeles, CA 90001" +243743,USB-C Charging Cable,1,11.95,08/06/19 20:57,"195 13th St, Dallas, TX 75001" +243744,AAA Batteries (4-pack),2,2.99,08/17/19 10:44,"47 Walnut St, Dallas, TX 75001" +243745,Lightning Charging Cable,1,14.95,08/06/19 09:41,"34 Spruce St, Los Angeles, CA 90001" +243746,Google Phone,1,600,08/26/19 10:27,"128 Elm St, New York City, NY 10001" +243746,Wired Headphones,1,11.99,08/26/19 10:27,"128 Elm St, New York City, NY 10001" +243747,Apple Airpods Headphones,1,150,08/18/19 16:30,"92 11th St, San Francisco, CA 94016" +243748,Google Phone,1,600,08/04/19 13:19,"997 River St, Boston, MA 02215" +243748,USB-C Charging Cable,1,11.95,08/04/19 13:19,"997 River St, Boston, MA 02215" +243748,Wired Headphones,1,11.99,08/04/19 13:19,"997 River St, Boston, MA 02215" +243749,AAA Batteries (4-pack),1,2.99,08/28/19 18:54,"574 5th St, New York City, NY 10001" +243750,Apple Airpods Headphones,1,150,08/29/19 22:41,"924 River St, New York City, NY 10001" +243751,Apple Airpods Headphones,1,150,08/18/19 21:28,"756 South St, New York City, NY 10001" +243752,Lightning Charging Cable,1,14.95,08/15/19 14:05,"321 South St, New York City, NY 10001" +243753,AA Batteries (4-pack),1,3.84,08/01/19 17:52,"580 Jackson St, Portland, OR 97035" +243754,27in FHD Monitor,1,149.99,08/31/19 19:15,"851 4th St, Atlanta, GA 30301" +243755,USB-C Charging Cable,1,11.95,08/26/19 19:29,"581 Elm St, New York City, NY 10001" +243755,iPhone,1,700,08/26/19 19:29,"581 Elm St, New York City, NY 10001" +243756,AAA Batteries (4-pack),2,2.99,08/22/19 17:44,"283 Park St, Dallas, TX 75001" +243757,Lightning Charging Cable,1,14.95,08/17/19 12:57,"268 Elm St, Seattle, WA 98101" +243758,Apple Airpods Headphones,1,150,08/29/19 11:15,"608 South St, Atlanta, GA 30301" +243759,27in FHD Monitor,1,149.99,08/25/19 09:38,"408 4th St, Boston, MA 02215" +243760,Wired Headphones,1,11.99,08/16/19 08:31,"548 Cedar St, New York City, NY 10001" +243761,20in Monitor,1,109.99,08/20/19 11:40,"707 North St, Dallas, TX 75001" +243762,Bose SoundSport Headphones,1,99.99,08/29/19 23:52,"545 Park St, Boston, MA 02215" +243763,AAA Batteries (4-pack),1,2.99,08/06/19 01:35,"568 Jackson St, Atlanta, GA 30301" +243764,Apple Airpods Headphones,1,150,08/21/19 11:07,"224 Adams St, Los Angeles, CA 90001" +243764,Bose SoundSport Headphones,1,99.99,08/21/19 11:07,"224 Adams St, Los Angeles, CA 90001" +243765,AAA Batteries (4-pack),1,2.99,08/20/19 15:02,"509 Meadow St, New York City, NY 10001" +243766,Flatscreen TV,1,300,08/01/19 22:21,"711 Cherry St, Dallas, TX 75001" +243767,USB-C Charging Cable,1,11.95,08/09/19 15:16,"572 11th St, San Francisco, CA 94016" +243768,Google Phone,1,600,08/07/19 01:51,"760 7th St, San Francisco, CA 94016" +243769,Wired Headphones,1,11.99,08/30/19 18:36,"354 Lakeview St, Dallas, TX 75001" +243770,iPhone,1,700,08/29/19 14:26,"175 2nd St, Los Angeles, CA 90001" +243771,Lightning Charging Cable,1,14.95,08/03/19 10:37,"658 Jackson St, San Francisco, CA 94016" +243772,AAA Batteries (4-pack),1,2.99,08/07/19 12:00,"728 Forest St, Los Angeles, CA 90001" +243773,Apple Airpods Headphones,1,150,08/11/19 13:45,"914 5th St, New York City, NY 10001" +243774,AA Batteries (4-pack),1,3.84,08/20/19 13:54,"525 West St, Los Angeles, CA 90001" +243775,Lightning Charging Cable,1,14.95,08/21/19 10:08,"172 Lincoln St, Atlanta, GA 30301" +243776,iPhone,1,700,08/30/19 10:40,"251 Lincoln St, Portland, OR 97035" +243777,AA Batteries (4-pack),1,3.84,08/21/19 17:14,"532 Adams St, San Francisco, CA 94016" +243778,AAA Batteries (4-pack),2,2.99,08/13/19 12:11,"775 Madison St, San Francisco, CA 94016" +243779,Lightning Charging Cable,1,14.95,08/16/19 20:14,"234 10th St, Seattle, WA 98101" +243780,AAA Batteries (4-pack),1,2.99,08/17/19 07:46,"341 Spruce St, Portland, OR 97035" +243781,Apple Airpods Headphones,1,150,08/25/19 12:36,"138 7th St, Dallas, TX 75001" +243782,Lightning Charging Cable,1,14.95,08/27/19 22:39,"250 Dogwood St, Austin, TX 73301" +243783,Bose SoundSport Headphones,1,99.99,08/26/19 18:49,"334 Adams St, Dallas, TX 75001" +243784,Google Phone,1,600,08/05/19 18:58,"450 Pine St, San Francisco, CA 94016" +243785,Bose SoundSport Headphones,1,99.99,08/11/19 22:20,"339 Pine St, Portland, OR 97035" +243786,Lightning Charging Cable,1,14.95,08/24/19 11:28,"994 Pine St, Boston, MA 02215" +243787,USB-C Charging Cable,1,11.95,08/27/19 20:05,"816 Lakeview St, Seattle, WA 98101" +243788,AA Batteries (4-pack),1,3.84,08/09/19 13:45,"900 Johnson St, Austin, TX 73301" +243789,Vareebadd Phone,1,400,08/19/19 13:19,"450 Church St, San Francisco, CA 94016" +243790,34in Ultrawide Monitor,1,379.99,08/08/19 07:15,"920 Ridge St, New York City, NY 10001" +243791,Bose SoundSport Headphones,1,99.99,08/30/19 18:32,"243 5th St, Los Angeles, CA 90001" +243792,AA Batteries (4-pack),2,3.84,08/03/19 14:28,"725 Maple St, Boston, MA 02215" +243793,27in FHD Monitor,1,149.99,08/30/19 13:56,"411 13th St, Seattle, WA 98101" +243794,USB-C Charging Cable,1,11.95,08/29/19 19:05,"40 2nd St, New York City, NY 10001" +243795,Lightning Charging Cable,1,14.95,08/06/19 15:50,"888 12th St, Seattle, WA 98101" +243796,Apple Airpods Headphones,1,150,08/02/19 19:26,"836 Hill St, Boston, MA 02215" +243797,Wired Headphones,2,11.99,08/22/19 22:58,"950 Lakeview St, San Francisco, CA 94016" +243798,Apple Airpods Headphones,1,150,08/08/19 15:21,"572 6th St, Seattle, WA 98101" +243799,AAA Batteries (4-pack),1,2.99,08/24/19 00:03,"743 Meadow St, Atlanta, GA 30301" +243800,Vareebadd Phone,1,400,08/26/19 18:35,"509 Chestnut St, Atlanta, GA 30301" +243800,USB-C Charging Cable,1,11.95,08/26/19 18:35,"509 Chestnut St, Atlanta, GA 30301" +243801,AAA Batteries (4-pack),1,2.99,08/31/19 12:49,"953 Forest St, Seattle, WA 98101" +243802,Bose SoundSport Headphones,1,99.99,08/13/19 11:07,"778 Elm St, Los Angeles, CA 90001" +243803,AA Batteries (4-pack),1,3.84,08/18/19 08:17,"418 Church St, San Francisco, CA 94016" +243804,AA Batteries (4-pack),1,3.84,08/08/19 13:54,"541 Lake St, Boston, MA 02215" +243804,34in Ultrawide Monitor,1,379.99,08/08/19 13:54,"541 Lake St, Boston, MA 02215" +243805,27in FHD Monitor,1,149.99,08/17/19 14:53,"821 Jackson St, Seattle, WA 98101" +243806,USB-C Charging Cable,1,11.95,08/12/19 09:54,"126 Walnut St, San Francisco, CA 94016" +243807,Flatscreen TV,1,300,08/24/19 23:32,"87 Lincoln St, Los Angeles, CA 90001" +243808,Lightning Charging Cable,1,14.95,08/21/19 16:58,"534 8th St, Los Angeles, CA 90001" +243809,20in Monitor,1,109.99,08/08/19 17:53,"507 Forest St, Portland, ME 04101" +243810,Lightning Charging Cable,1,14.95,08/07/19 12:20,"718 Spruce St, Portland, OR 97035" +243811,Macbook Pro Laptop,1,1700,08/08/19 14:17,"577 West St, San Francisco, CA 94016" +243812,Apple Airpods Headphones,1,150,08/02/19 00:59,"45 12th St, Los Angeles, CA 90001" +243813,27in FHD Monitor,1,149.99,08/09/19 18:57,"975 13th St, San Francisco, CA 94016" +243814,AAA Batteries (4-pack),1,2.99,08/04/19 08:43,"441 1st St, New York City, NY 10001" +243815,Macbook Pro Laptop,1,1700,08/22/19 19:03,"652 Lake St, San Francisco, CA 94016" +243816,Apple Airpods Headphones,1,150,08/07/19 15:13,"969 Jefferson St, Los Angeles, CA 90001" +243816,iPhone,1,700,08/07/19 15:13,"969 Jefferson St, Los Angeles, CA 90001" +243817,USB-C Charging Cable,1,11.95,08/27/19 14:01,"39 Meadow St, New York City, NY 10001" +243818,Lightning Charging Cable,1,14.95,08/09/19 09:01,"430 Park St, New York City, NY 10001" +243819,27in FHD Monitor,1,149.99,08/10/19 07:28,"716 Madison St, San Francisco, CA 94016" +243820,AAA Batteries (4-pack),1,2.99,08/22/19 14:59,"154 Walnut St, San Francisco, CA 94016" +243821,Google Phone,1,600,08/24/19 11:26,"486 Elm St, New York City, NY 10001" +243821,USB-C Charging Cable,1,11.95,08/24/19 11:26,"486 Elm St, New York City, NY 10001" +243822,USB-C Charging Cable,1,11.95,08/18/19 23:55,"926 Jefferson St, Los Angeles, CA 90001" +243822,Apple Airpods Headphones,1,150,08/18/19 23:55,"926 Jefferson St, Los Angeles, CA 90001" +243823,iPhone,1,700,08/02/19 10:01,"446 Meadow St, Austin, TX 73301" +243824,AAA Batteries (4-pack),1,2.99,08/05/19 17:30,"621 Washington St, Seattle, WA 98101" +243825,Wired Headphones,1,11.99,08/10/19 12:14,"191 Spruce St, Dallas, TX 75001" +243826,Lightning Charging Cable,1,14.95,08/07/19 14:01,"954 Jackson St, Dallas, TX 75001" +243827,AAA Batteries (4-pack),1,2.99,08/03/19 18:06,"556 Spruce St, Los Angeles, CA 90001" +243828,27in 4K Gaming Monitor,1,389.99,08/15/19 22:47,"677 Pine St, San Francisco, CA 94016" +243829,Bose SoundSport Headphones,1,99.99,08/30/19 10:48,"655 Johnson St, Atlanta, GA 30301" +243830,AA Batteries (4-pack),2,3.84,08/31/19 12:36,"416 Lakeview St, San Francisco, CA 94016" +243831,Google Phone,1,600,08/13/19 11:56,"257 8th St, San Francisco, CA 94016" +243832,Google Phone,1,600,08/05/19 17:27,"831 Pine St, Boston, MA 02215" +243832,USB-C Charging Cable,2,11.95,08/05/19 17:27,"831 Pine St, Boston, MA 02215" +243833,ThinkPad Laptop,1,999.99,08/07/19 11:16,"339 Elm St, New York City, NY 10001" +243834,AA Batteries (4-pack),1,3.84,08/28/19 17:06,"574 Adams St, Atlanta, GA 30301" +243835,Wired Headphones,1,11.99,08/12/19 00:43,"167 Lake St, New York City, NY 10001" +243836,Apple Airpods Headphones,1,150,08/22/19 06:54,"623 Madison St, Los Angeles, CA 90001" +243837,Wired Headphones,1,11.99,08/15/19 16:04,"377 Dogwood St, Seattle, WA 98101" +243838,LG Washing Machine,1,600.0,08/15/19 01:27,"906 Pine St, Boston, MA 02215" +243839,Macbook Pro Laptop,1,1700,08/19/19 04:06,"908 Lincoln St, Austin, TX 73301" +243840,Wired Headphones,1,11.99,08/09/19 12:36,"597 Center St, New York City, NY 10001" +243841,Bose SoundSport Headphones,1,99.99,08/19/19 18:31,"881 13th St, San Francisco, CA 94016" +243842,iPhone,1,700,08/02/19 08:49,"351 Adams St, San Francisco, CA 94016" +243842,Lightning Charging Cable,1,14.95,08/02/19 08:49,"351 Adams St, San Francisco, CA 94016" +243843,Bose SoundSport Headphones,1,99.99,08/23/19 16:08,"771 9th St, Austin, TX 73301" +243844,USB-C Charging Cable,1,11.95,08/18/19 20:58,"806 Forest St, Portland, ME 04101" +243845,Bose SoundSport Headphones,1,99.99,08/18/19 19:38,"405 1st St, San Francisco, CA 94016" +243846,Wired Headphones,1,11.99,08/28/19 21:04,"688 Lake St, New York City, NY 10001" +243847,USB-C Charging Cable,1,11.95,08/28/19 10:26,"856 Madison St, New York City, NY 10001" +243848,27in 4K Gaming Monitor,1,389.99,08/02/19 15:32,"327 1st St, Austin, TX 73301" +243849,Lightning Charging Cable,1,14.95,08/11/19 17:11,"269 13th St, Los Angeles, CA 90001" +243850,AAA Batteries (4-pack),1,2.99,08/13/19 12:17,"689 Lincoln St, New York City, NY 10001" +243851,Apple Airpods Headphones,1,150,08/05/19 21:06,"210 Dogwood St, Portland, OR 97035" +243852,20in Monitor,1,109.99,08/28/19 20:34,"954 Ridge St, Austin, TX 73301" +243853,20in Monitor,1,109.99,08/17/19 17:45,"368 Forest St, Los Angeles, CA 90001" +243854,Lightning Charging Cable,1,14.95,08/09/19 01:06,"445 Cherry St, Atlanta, GA 30301" +243855,Macbook Pro Laptop,1,1700,08/17/19 11:06,"665 North St, Dallas, TX 75001" +243856,iPhone,1,700,08/06/19 06:33,"493 North St, Austin, TX 73301" +243857,AA Batteries (4-pack),1,3.84,08/07/19 14:54,"193 Pine St, Los Angeles, CA 90001" +243858,27in FHD Monitor,1,149.99,08/21/19 23:01,"957 2nd St, New York City, NY 10001" +243859,27in 4K Gaming Monitor,1,389.99,08/06/19 21:51,"416 12th St, Atlanta, GA 30301" +243860,Apple Airpods Headphones,1,150,08/23/19 18:58,"59 10th St, Dallas, TX 75001" +243861,Wired Headphones,1,11.99,08/12/19 14:52,"686 North St, San Francisco, CA 94016" +243862,Lightning Charging Cable,1,14.95,08/16/19 01:49,"23 Willow St, San Francisco, CA 94016" +243863,AA Batteries (4-pack),1,3.84,08/18/19 13:38,"612 Walnut St, Austin, TX 73301" +243864,ThinkPad Laptop,1,999.99,08/31/19 14:32,"539 14th St, New York City, NY 10001" +243865,AA Batteries (4-pack),2,3.84,08/26/19 17:41,"943 Jefferson St, Austin, TX 73301" +243866,AAA Batteries (4-pack),3,2.99,08/14/19 18:08,"80 Hickory St, Seattle, WA 98101" +243867,34in Ultrawide Monitor,1,379.99,08/25/19 21:27,"448 Walnut St, Dallas, TX 75001" +243868,Lightning Charging Cable,2,14.95,08/05/19 13:44,"765 Jefferson St, Dallas, TX 75001" +243869,Apple Airpods Headphones,1,150,08/18/19 10:34,"190 Ridge St, New York City, NY 10001" +243870,Lightning Charging Cable,2,14.95,08/10/19 00:09,"576 Meadow St, Boston, MA 02215" +243871,Lightning Charging Cable,1,14.95,08/16/19 15:56,"795 West St, San Francisco, CA 94016" +243872,Lightning Charging Cable,1,14.95,08/04/19 00:10,"67 Sunset St, Austin, TX 73301" +243873,AA Batteries (4-pack),3,3.84,08/07/19 15:46,"921 River St, Portland, OR 97035" +243874,AA Batteries (4-pack),2,3.84,08/06/19 01:08,"545 7th St, Portland, OR 97035" +243875,Macbook Pro Laptop,1,1700,08/06/19 23:17,"14 Sunset St, Boston, MA 02215" +243876,Google Phone,1,600,08/16/19 21:26,"686 Washington St, Dallas, TX 75001" +243877,USB-C Charging Cable,1,11.95,08/15/19 13:35,"664 Hickory St, San Francisco, CA 94016" +243878,USB-C Charging Cable,1,11.95,08/30/19 18:19,"70 13th St, San Francisco, CA 94016" +243879,Flatscreen TV,1,300,08/25/19 22:58,"735 Highland St, Seattle, WA 98101" +243880,Macbook Pro Laptop,1,1700,08/16/19 18:48,"498 Lake St, New York City, NY 10001" +243881,Apple Airpods Headphones,1,150,08/20/19 07:42,"99 Highland St, Seattle, WA 98101" +243882,USB-C Charging Cable,1,11.95,08/26/19 12:05,"215 Cherry St, Dallas, TX 75001" +243883,Bose SoundSport Headphones,1,99.99,08/02/19 18:09,"759 Johnson St, San Francisco, CA 94016" +243884,iPhone,1,700,08/07/19 14:06,"692 Washington St, New York City, NY 10001" +243885,AAA Batteries (4-pack),4,2.99,08/03/19 14:59,"917 14th St, Seattle, WA 98101" +243886,AAA Batteries (4-pack),1,2.99,08/28/19 11:35,"606 Center St, Los Angeles, CA 90001" +243887,34in Ultrawide Monitor,1,379.99,08/15/19 22:27,"449 Lake St, New York City, NY 10001" +243888,AAA Batteries (4-pack),2,2.99,08/31/19 15:28,"379 2nd St, San Francisco, CA 94016" +243889,ThinkPad Laptop,1,999.99,08/21/19 07:21,"871 Jefferson St, San Francisco, CA 94016" +243890,Wired Headphones,1,11.99,08/18/19 10:13,"255 Willow St, Dallas, TX 75001" +243891,27in FHD Monitor,1,149.99,08/21/19 11:32,"674 13th St, Boston, MA 02215" +243892,USB-C Charging Cable,1,11.95,08/07/19 23:44,"932 Park St, Los Angeles, CA 90001" +243893,iPhone,1,700,08/07/19 04:26,"474 Spruce St, Austin, TX 73301" +243893,Lightning Charging Cable,1,14.95,08/07/19 04:26,"474 Spruce St, Austin, TX 73301" +243893,Wired Headphones,1,11.99,08/07/19 04:26,"474 Spruce St, Austin, TX 73301" +243894,Lightning Charging Cable,1,14.95,08/11/19 18:21,"389 Pine St, Boston, MA 02215" +243895,AAA Batteries (4-pack),1,2.99,08/21/19 20:59,"875 Lincoln St, Portland, OR 97035" +243896,27in FHD Monitor,1,149.99,08/21/19 14:06,"411 Forest St, Los Angeles, CA 90001" +243897,Lightning Charging Cable,1,14.95,08/05/19 10:27,"879 Adams St, Austin, TX 73301" +243898,Bose SoundSport Headphones,1,99.99,08/28/19 14:23,"612 Sunset St, San Francisco, CA 94016" +243899,34in Ultrawide Monitor,1,379.99,08/15/19 06:08,"488 Park St, San Francisco, CA 94016" +243900,Bose SoundSport Headphones,1,99.99,08/18/19 11:08,"305 Jackson St, Seattle, WA 98101" +243901,AAA Batteries (4-pack),1,2.99,08/24/19 10:40,"14 Lake St, San Francisco, CA 94016" +243902,USB-C Charging Cable,1,11.95,08/25/19 22:27,"524 12th St, New York City, NY 10001" +243903,USB-C Charging Cable,1,11.95,08/10/19 16:28,"873 Ridge St, Boston, MA 02215" +243904,ThinkPad Laptop,1,999.99,08/14/19 01:23,"138 Walnut St, New York City, NY 10001" +243905,AA Batteries (4-pack),1,3.84,08/15/19 13:41,"143 Cherry St, Atlanta, GA 30301" +243906,Apple Airpods Headphones,1,150,08/22/19 08:06,"747 Walnut St, Portland, OR 97035" +243907,Lightning Charging Cable,1,14.95,08/21/19 15:52,"727 Dogwood St, Austin, TX 73301" +243908,AAA Batteries (4-pack),1,2.99,08/24/19 10:40,"619 5th St, Dallas, TX 75001" +243909,AAA Batteries (4-pack),1,2.99,08/16/19 14:49,"13 Hill St, Boston, MA 02215" +243910,Vareebadd Phone,1,400,08/17/19 12:02,"767 Lincoln St, San Francisco, CA 94016" +243911,iPhone,1,700,08/27/19 01:15,"559 Lincoln St, San Francisco, CA 94016" +243911,Wired Headphones,1,11.99,08/27/19 01:15,"559 Lincoln St, San Francisco, CA 94016" +243912,ThinkPad Laptop,1,999.99,08/18/19 12:11,"630 Adams St, Seattle, WA 98101" +243913,USB-C Charging Cable,1,11.95,08/22/19 22:34,"661 Church St, San Francisco, CA 94016" +243914,Wired Headphones,1,11.99,08/18/19 16:04,"883 Spruce St, Los Angeles, CA 90001" +243915,Wired Headphones,1,11.99,08/11/19 14:12,"945 Willow St, New York City, NY 10001" +243916,Apple Airpods Headphones,1,150,08/09/19 17:08,"242 Hill St, Portland, OR 97035" +243917,AA Batteries (4-pack),1,3.84,08/04/19 13:26,"959 5th St, Boston, MA 02215" +243918,Flatscreen TV,1,300,08/16/19 17:32,"852 Sunset St, Atlanta, GA 30301" +243918,Bose SoundSport Headphones,1,99.99,08/16/19 17:32,"852 Sunset St, Atlanta, GA 30301" +243919,Bose SoundSport Headphones,1,99.99,08/22/19 07:27,"992 Elm St, San Francisco, CA 94016" +243920,20in Monitor,1,109.99,08/12/19 21:15,"439 9th St, Seattle, WA 98101" +243921,Macbook Pro Laptop,1,1700,08/01/19 23:00,"126 Center St, San Francisco, CA 94016" +243922,27in FHD Monitor,1,149.99,08/24/19 23:08,"979 12th St, Boston, MA 02215" +243923,AAA Batteries (4-pack),1,2.99,08/27/19 18:23,"312 Chestnut St, Boston, MA 02215" +243924,USB-C Charging Cable,1,11.95,08/20/19 19:23,"540 Spruce St, Los Angeles, CA 90001" +243925,Apple Airpods Headphones,1,150,08/31/19 21:43,"914 Spruce St, Seattle, WA 98101" +243926,Apple Airpods Headphones,1,150,08/06/19 17:41,"596 Adams St, San Francisco, CA 94016" +243927,AA Batteries (4-pack),1,3.84,08/11/19 15:10,"273 Cedar St, Boston, MA 02215" +243928,AA Batteries (4-pack),1,3.84,08/15/19 17:33,"674 4th St, San Francisco, CA 94016" +243929,Apple Airpods Headphones,1,150,08/10/19 16:55,"84 13th St, Atlanta, GA 30301" +243930,USB-C Charging Cable,1,11.95,08/18/19 12:25,"775 13th St, San Francisco, CA 94016" +243931,USB-C Charging Cable,1,11.95,08/27/19 14:21,"778 Ridge St, Los Angeles, CA 90001" +243932,USB-C Charging Cable,2,11.95,08/27/19 16:15,"887 Church St, Boston, MA 02215" +243933,Macbook Pro Laptop,1,1700,08/22/19 15:28,"328 Elm St, San Francisco, CA 94016" +243934,USB-C Charging Cable,1,11.95,08/29/19 20:44,"478 Johnson St, New York City, NY 10001" +243935,iPhone,1,700,08/17/19 11:28,"734 River St, New York City, NY 10001" +243936,USB-C Charging Cable,1,11.95,08/23/19 20:51,"4 Cedar St, Dallas, TX 75001" +243937,Apple Airpods Headphones,1,150,08/25/19 10:31,"245 Madison St, San Francisco, CA 94016" +243938,20in Monitor,1,109.99,08/01/19 08:42,"19 Park St, New York City, NY 10001" +243939,Wired Headphones,1,11.99,08/11/19 17:21,"399 Sunset St, Portland, OR 97035" +243940,Lightning Charging Cable,1,14.95,08/01/19 17:11,"842 Hill St, Atlanta, GA 30301" +243941,AAA Batteries (4-pack),1,2.99,08/25/19 11:55,"126 Lincoln St, San Francisco, CA 94016" +243942,ThinkPad Laptop,1,999.99,08/23/19 12:33,"868 North St, Dallas, TX 75001" +243943,AAA Batteries (4-pack),1,2.99,08/21/19 15:29,"369 5th St, San Francisco, CA 94016" +243944,USB-C Charging Cable,1,11.95,08/13/19 18:54,"322 Ridge St, Portland, OR 97035" +243945,Bose SoundSport Headphones,1,99.99,08/04/19 09:59,"826 Ridge St, San Francisco, CA 94016" +243946,USB-C Charging Cable,2,11.95,08/22/19 22:24,"417 Lake St, New York City, NY 10001" +243947,Lightning Charging Cable,2,14.95,08/23/19 09:56,"752 7th St, Austin, TX 73301" +243948,Bose SoundSport Headphones,1,99.99,08/04/19 13:36,"62 1st St, San Francisco, CA 94016" +243949,Bose SoundSport Headphones,1,99.99,08/30/19 01:55,"99 9th St, New York City, NY 10001" +243950,AAA Batteries (4-pack),2,2.99,08/13/19 19:21,"91 Dogwood St, Los Angeles, CA 90001" +243951,27in 4K Gaming Monitor,1,389.99,08/22/19 19:26,"375 West St, Los Angeles, CA 90001" +243952,27in 4K Gaming Monitor,1,389.99,08/06/19 03:48,"195 Spruce St, Austin, TX 73301" +243953,Bose SoundSport Headphones,1,99.99,08/25/19 11:09,"658 Meadow St, San Francisco, CA 94016" +243954,Lightning Charging Cable,1,14.95,08/05/19 20:51,"291 North St, Los Angeles, CA 90001" +243955,AAA Batteries (4-pack),1,2.99,08/25/19 01:14,"445 14th St, Los Angeles, CA 90001" +243955,AA Batteries (4-pack),1,3.84,08/25/19 01:14,"445 14th St, Los Angeles, CA 90001" +243956,AA Batteries (4-pack),1,3.84,08/31/19 06:23,"837 River St, Dallas, TX 75001" +243957,Wired Headphones,1,11.99,08/25/19 07:42,"147 4th St, New York City, NY 10001" +243958,AA Batteries (4-pack),1,3.84,08/22/19 19:53,"287 Center St, New York City, NY 10001" +243959,USB-C Charging Cable,1,11.95,08/30/19 20:53,"47 Madison St, Los Angeles, CA 90001" +243960,Apple Airpods Headphones,1,150,08/19/19 11:44,"953 Hill St, Seattle, WA 98101" +243961,LG Washing Machine,1,600.0,08/28/19 17:54,"864 Spruce St, San Francisco, CA 94016" +243962,AAA Batteries (4-pack),3,2.99,08/19/19 22:09,"653 9th St, Dallas, TX 75001" +243963,Apple Airpods Headphones,1,150,08/30/19 21:17,"254 Center St, San Francisco, CA 94016" +243964,ThinkPad Laptop,1,999.99,08/26/19 18:36,"350 6th St, Atlanta, GA 30301" +243965,AAA Batteries (4-pack),1,2.99,08/15/19 17:52,"98 Lakeview St, Los Angeles, CA 90001" +243966,Apple Airpods Headphones,1,150,08/16/19 19:08,"40 Elm St, San Francisco, CA 94016" +243967,Lightning Charging Cable,1,14.95,08/28/19 13:22,"921 Chestnut St, Atlanta, GA 30301" +243968,Google Phone,1,600,08/01/19 15:02,"785 1st St, Atlanta, GA 30301" +243968,Wired Headphones,1,11.99,08/01/19 15:02,"785 1st St, Atlanta, GA 30301" +243969,AAA Batteries (4-pack),1,2.99,08/19/19 20:20,"572 Lakeview St, Dallas, TX 75001" +243970,Bose SoundSport Headphones,1,99.99,08/26/19 15:15,"707 Washington St, San Francisco, CA 94016" +243971,27in 4K Gaming Monitor,1,389.99,08/08/19 18:00,"478 12th St, San Francisco, CA 94016" +243972,AAA Batteries (4-pack),2,2.99,08/21/19 10:04,"814 Meadow St, New York City, NY 10001" +243973,AA Batteries (4-pack),1,3.84,08/03/19 23:57,"371 Jackson St, Dallas, TX 75001" +243974,AAA Batteries (4-pack),3,2.99,08/31/19 06:30,"708 Lakeview St, Atlanta, GA 30301" +243975,AAA Batteries (4-pack),1,2.99,08/23/19 01:35,"270 Madison St, Los Angeles, CA 90001" +243976,Apple Airpods Headphones,1,150,08/02/19 01:03,"531 Hill St, Portland, OR 97035" +243977,USB-C Charging Cable,1,11.95,08/14/19 02:08,"832 Center St, San Francisco, CA 94016" +243978,Wired Headphones,1,11.99,08/08/19 14:54,"975 Ridge St, San Francisco, CA 94016" +243979,USB-C Charging Cable,1,11.95,08/17/19 12:33,"283 Hickory St, San Francisco, CA 94016" +243980,Wired Headphones,1,11.99,08/21/19 10:03,"521 Park St, Los Angeles, CA 90001" +243981,Wired Headphones,1,11.99,08/16/19 13:37,"436 Chestnut St, New York City, NY 10001" +243982,Bose SoundSport Headphones,1,99.99,08/13/19 05:48,"237 Willow St, Dallas, TX 75001" +243983,ThinkPad Laptop,1,999.99,08/20/19 17:35,"893 11th St, Atlanta, GA 30301" +243983,AA Batteries (4-pack),2,3.84,08/20/19 17:35,"893 11th St, Atlanta, GA 30301" +243984,AA Batteries (4-pack),1,3.84,08/01/19 17:21,"949 Madison St, Dallas, TX 75001" +243985,Apple Airpods Headphones,1,150,08/04/19 12:16,"304 10th St, San Francisco, CA 94016" +243986,Macbook Pro Laptop,1,1700,08/06/19 00:20,"515 Main St, Dallas, TX 75001" +243987,AA Batteries (4-pack),3,3.84,08/31/19 22:26,"29 8th St, New York City, NY 10001" +243988,LG Washing Machine,1,600.0,08/12/19 18:36,"168 Adams St, Dallas, TX 75001" +243989,iPhone,1,700,08/31/19 13:14,"195 Cedar St, San Francisco, CA 94016" +243990,Apple Airpods Headphones,1,150,08/11/19 20:14,"840 Madison St, New York City, NY 10001" +243991,USB-C Charging Cable,2,11.95,08/16/19 18:04,"767 Ridge St, Dallas, TX 75001" +243992,AAA Batteries (4-pack),4,2.99,08/05/19 13:38,"174 Meadow St, San Francisco, CA 94016" +243993,AA Batteries (4-pack),1,3.84,08/25/19 16:54,"158 Forest St, New York City, NY 10001" +243994,34in Ultrawide Monitor,1,379.99,08/05/19 01:06,"50 Jefferson St, Austin, TX 73301" +243995,AA Batteries (4-pack),1,3.84,08/10/19 14:26,"619 Walnut St, Boston, MA 02215" +243996,Google Phone,1,600,08/17/19 12:59,"528 West St, Dallas, TX 75001" +243997,Wired Headphones,1,11.99,08/27/19 08:25,"61 11th St, San Francisco, CA 94016" +243998,USB-C Charging Cable,1,11.95,08/11/19 18:26,"234 Center St, Portland, OR 97035" +243999,USB-C Charging Cable,1,11.95,08/13/19 21:56,"531 11th St, Boston, MA 02215" +244000,Google Phone,1,600,08/28/19 12:01,"325 Jackson St, San Francisco, CA 94016" +244001,Wired Headphones,2,11.99,08/03/19 13:01,"222 7th St, Los Angeles, CA 90001" +244002,Apple Airpods Headphones,1,150,08/03/19 09:36,"268 11th St, Boston, MA 02215" +244003,AAA Batteries (4-pack),1,2.99,08/23/19 11:08,"158 Adams St, Boston, MA 02215" +244004,Apple Airpods Headphones,1,150,08/16/19 07:44,"99 Hickory St, Atlanta, GA 30301" +244005,AA Batteries (4-pack),1,3.84,08/22/19 01:44,"611 10th St, Austin, TX 73301" +244006,AA Batteries (4-pack),2,3.84,08/18/19 18:30,"369 Cherry St, Portland, OR 97035" +244007,27in 4K Gaming Monitor,1,389.99,08/05/19 09:03,"634 Jackson St, Portland, OR 97035" +244008,USB-C Charging Cable,2,11.95,08/21/19 20:40,"774 5th St, Portland, OR 97035" +244009,Lightning Charging Cable,1,14.95,08/24/19 18:39,"573 8th St, Los Angeles, CA 90001" +244010,Apple Airpods Headphones,1,150,08/18/19 13:03,"94 Cedar St, San Francisco, CA 94016" +244011,Bose SoundSport Headphones,1,99.99,08/03/19 11:58,"582 2nd St, San Francisco, CA 94016" +244012,Apple Airpods Headphones,1,150,08/05/19 05:42,"454 6th St, Los Angeles, CA 90001" +244013,Flatscreen TV,1,300,08/07/19 16:20,"230 Forest St, Los Angeles, CA 90001" +244014,AA Batteries (4-pack),1,3.84,08/23/19 23:23,"835 South St, San Francisco, CA 94016" +244015,AA Batteries (4-pack),1,3.84,08/11/19 13:09,"455 Ridge St, Portland, OR 97035" +244016,Bose SoundSport Headphones,1,99.99,08/23/19 13:27,"670 Highland St, Boston, MA 02215" +244017,Apple Airpods Headphones,1,150,09/01/19 00:45,"295 13th St, San Francisco, CA 94016" +244018,USB-C Charging Cable,1,11.95,08/02/19 20:22,"569 Willow St, Austin, TX 73301" +244019,Bose SoundSport Headphones,1,99.99,08/20/19 22:42,"707 North St, Boston, MA 02215" +244020,Lightning Charging Cable,1,14.95,08/31/19 17:36,"195 South St, Los Angeles, CA 90001" +244021,Flatscreen TV,1,300,08/09/19 12:49,"304 Center St, Austin, TX 73301" +244022,Wired Headphones,1,11.99,08/20/19 19:35,"828 Sunset St, Boston, MA 02215" +244023,34in Ultrawide Monitor,1,379.99,08/21/19 17:57,"942 14th St, New York City, NY 10001" +244024,27in FHD Monitor,1,149.99,08/27/19 12:21,"95 Park St, San Francisco, CA 94016" +244025,Bose SoundSport Headphones,1,99.99,08/12/19 08:00,"869 Highland St, San Francisco, CA 94016" +244026,AAA Batteries (4-pack),1,2.99,08/29/19 17:30,"691 6th St, Atlanta, GA 30301" +244027,USB-C Charging Cable,1,11.95,08/27/19 11:40,"696 Forest St, San Francisco, CA 94016" +244028,Lightning Charging Cable,1,14.95,08/31/19 18:05,"165 Meadow St, Los Angeles, CA 90001" +244029,Google Phone,1,600,08/05/19 19:15,"270 South St, Los Angeles, CA 90001" +244030,Apple Airpods Headphones,1,150,08/05/19 00:07,"910 Pine St, San Francisco, CA 94016" +244031,USB-C Charging Cable,1,11.95,08/23/19 12:14,"826 Spruce St, Atlanta, GA 30301" +244032,Lightning Charging Cable,1,14.95,08/17/19 20:26,"75 8th St, Austin, TX 73301" +244033,27in FHD Monitor,1,149.99,08/13/19 21:20,"459 Jefferson St, San Francisco, CA 94016" +244034,Wired Headphones,1,11.99,08/17/19 21:53,"197 Elm St, Dallas, TX 75001" +244035,Wired Headphones,1,11.99,08/02/19 10:37,"181 South St, Seattle, WA 98101" +244036,20in Monitor,1,109.99,08/10/19 23:46,"715 13th St, San Francisco, CA 94016" +244037,Flatscreen TV,1,300,08/30/19 22:09,"717 Center St, Los Angeles, CA 90001" +244038,Google Phone,1,600,08/18/19 22:18,"13 13th St, Dallas, TX 75001" +244039,iPhone,1,700,08/12/19 22:39,"340 Willow St, Los Angeles, CA 90001" +244040,AA Batteries (4-pack),3,3.84,08/21/19 10:01,"554 1st St, San Francisco, CA 94016" +244041,Lightning Charging Cable,1,14.95,08/11/19 11:07,"401 Adams St, Atlanta, GA 30301" +244042,Bose SoundSport Headphones,1,99.99,08/09/19 10:19,"589 2nd St, San Francisco, CA 94016" +244043,Bose SoundSport Headphones,1,99.99,08/22/19 11:51,"547 Forest St, New York City, NY 10001" +244043,Flatscreen TV,1,300,08/22/19 11:51,"547 Forest St, New York City, NY 10001" +244044,27in FHD Monitor,1,149.99,08/03/19 10:52,"629 Forest St, Los Angeles, CA 90001" +244045,AA Batteries (4-pack),1,3.84,08/02/19 14:49,"600 South St, New York City, NY 10001" +244046,USB-C Charging Cable,1,11.95,08/01/19 11:22,"731 8th St, San Francisco, CA 94016" +244047,iPhone,1,700,08/23/19 01:59,"525 West St, Los Angeles, CA 90001" +244048,iPhone,1,700,08/26/19 09:36,"915 13th St, San Francisco, CA 94016" +244048,Wired Headphones,1,11.99,08/26/19 09:36,"915 13th St, San Francisco, CA 94016" +244049,AA Batteries (4-pack),2,3.84,08/13/19 18:57,"735 Spruce St, New York City, NY 10001" +244050,USB-C Charging Cable,1,11.95,08/06/19 08:36,"733 Park St, Boston, MA 02215" +244051,Bose SoundSport Headphones,1,99.99,08/19/19 22:23,"987 12th St, Los Angeles, CA 90001" +244052,Lightning Charging Cable,1,14.95,08/06/19 16:02,"738 Adams St, San Francisco, CA 94016" +244053,Bose SoundSport Headphones,1,99.99,08/21/19 10:24,"635 6th St, Boston, MA 02215" +244054,ThinkPad Laptop,1,999.99,08/31/19 16:38,"692 5th St, San Francisco, CA 94016" +244055,34in Ultrawide Monitor,1,379.99,08/27/19 09:50,"65 Dogwood St, San Francisco, CA 94016" +244056,Wired Headphones,1,11.99,08/24/19 20:05,"359 Adams St, Seattle, WA 98101" +244057,Apple Airpods Headphones,1,150,08/23/19 03:16,"18 Madison St, Portland, OR 97035" +244058,AAA Batteries (4-pack),5,2.99,08/18/19 20:02,"845 Cherry St, San Francisco, CA 94016" +244059,Google Phone,1,600,08/04/19 15:20,"535 Lakeview St, Austin, TX 73301" +244060,Macbook Pro Laptop,1,1700,08/09/19 23:28,"68 Center St, Austin, TX 73301" +244061,27in FHD Monitor,1,149.99,08/21/19 00:10,"583 Wilson St, Portland, ME 04101" +244062,Lightning Charging Cable,1,14.95,08/31/19 16:57,"188 North St, Boston, MA 02215" +244063,AAA Batteries (4-pack),1,2.99,08/02/19 10:12,"272 1st St, Los Angeles, CA 90001" +244064,USB-C Charging Cable,1,11.95,08/18/19 14:42,"110 Washington St, Los Angeles, CA 90001" +244065,iPhone,1,700,08/05/19 15:22,"932 Lincoln St, Atlanta, GA 30301" +244066,Lightning Charging Cable,1,14.95,08/06/19 08:55,"513 West St, Boston, MA 02215" +244067,USB-C Charging Cable,1,11.95,08/09/19 09:28,"349 Chestnut St, Boston, MA 02215" +244068,AAA Batteries (4-pack),2,2.99,08/31/19 18:50,"805 5th St, Los Angeles, CA 90001" +244069,iPhone,1,700,08/25/19 11:23,"158 West St, San Francisco, CA 94016" +244070,USB-C Charging Cable,1,11.95,08/16/19 19:52,"756 10th St, San Francisco, CA 94016" +244071,Wired Headphones,1,11.99,08/26/19 23:16,"430 Hickory St, Boston, MA 02215" +244072,LG Washing Machine,1,600.0,08/27/19 14:30,"701 11th St, New York City, NY 10001" +244073,USB-C Charging Cable,1,11.95,08/29/19 17:39,"746 Lakeview St, Austin, TX 73301" +244074,AA Batteries (4-pack),1,3.84,08/31/19 15:35,"79 Madison St, New York City, NY 10001" +244075,AAA Batteries (4-pack),2,2.99,08/07/19 11:22,"96 Chestnut St, New York City, NY 10001" +244076,Apple Airpods Headphones,1,150,08/03/19 09:57,"639 Washington St, Austin, TX 73301" +244077,Bose SoundSport Headphones,1,99.99,08/24/19 11:47,"363 Adams St, Portland, ME 04101" +244078,Wired Headphones,1,11.99,08/29/19 12:54,"690 Maple St, San Francisco, CA 94016" +244079,AA Batteries (4-pack),1,3.84,08/26/19 12:14,"50 Sunset St, San Francisco, CA 94016" +244080,34in Ultrawide Monitor,1,379.99,08/09/19 15:23,"408 9th St, New York City, NY 10001" +244081,AA Batteries (4-pack),4,3.84,08/14/19 15:51,"736 Forest St, Dallas, TX 75001" +244082,Bose SoundSport Headphones,1,99.99,08/31/19 17:11,"66 Chestnut St, New York City, NY 10001" +244083,iPhone,1,700,08/25/19 16:48,"874 Walnut St, San Francisco, CA 94016" +244083,Lightning Charging Cable,1,14.95,08/25/19 16:48,"874 Walnut St, San Francisco, CA 94016" +244083,Apple Airpods Headphones,1,150,08/25/19 16:48,"874 Walnut St, San Francisco, CA 94016" +244084,Lightning Charging Cable,1,14.95,08/03/19 13:12,"369 Lake St, Los Angeles, CA 90001" +244085,Wired Headphones,1,11.99,08/13/19 18:43,"570 Dogwood St, Los Angeles, CA 90001" +244086,AA Batteries (4-pack),1,3.84,08/08/19 12:52,"593 7th St, Boston, MA 02215" +244087,34in Ultrawide Monitor,1,379.99,08/13/19 17:57,"581 Elm St, Boston, MA 02215" +244088,Bose SoundSport Headphones,1,99.99,08/04/19 12:20,"327 Spruce St, New York City, NY 10001" +244089,Google Phone,1,600,08/22/19 18:03,"862 Walnut St, New York City, NY 10001" +244089,Wired Headphones,1,11.99,08/22/19 18:03,"862 Walnut St, New York City, NY 10001" +244090,AAA Batteries (4-pack),1,2.99,08/18/19 20:08,"747 Jefferson St, New York City, NY 10001" +244091,iPhone,1,700,08/16/19 23:55,"792 Chestnut St, San Francisco, CA 94016" +244092,AA Batteries (4-pack),1,3.84,08/11/19 13:36,"186 12th St, Portland, OR 97035" +244093,Lightning Charging Cable,1,14.95,08/25/19 18:56,"763 Hill St, Los Angeles, CA 90001" +244094,Bose SoundSport Headphones,1,99.99,08/16/19 21:28,"174 Cedar St, Boston, MA 02215" +244095,Wired Headphones,1,11.99,08/07/19 08:31,"305 Ridge St, Atlanta, GA 30301" +244096,USB-C Charging Cable,1,11.95,08/01/19 14:12,"185 Lincoln St, New York City, NY 10001" +244096,27in FHD Monitor,1,149.99,08/01/19 14:12,"185 Lincoln St, New York City, NY 10001" +244097,Wired Headphones,1,11.99,08/05/19 07:30,"81 7th St, Austin, TX 73301" +244097,USB-C Charging Cable,1,11.95,08/05/19 07:30,"81 7th St, Austin, TX 73301" +244098,Bose SoundSport Headphones,1,99.99,08/19/19 18:56,"207 Ridge St, San Francisco, CA 94016" +244099,Lightning Charging Cable,1,14.95,08/17/19 23:13,"861 4th St, San Francisco, CA 94016" +244100,AA Batteries (4-pack),2,3.84,08/03/19 10:15,"308 Johnson St, Boston, MA 02215" +244101,USB-C Charging Cable,1,11.95,08/19/19 12:50,"131 Chestnut St, Boston, MA 02215" +244102,Apple Airpods Headphones,1,150,08/23/19 17:08,"778 7th St, San Francisco, CA 94016" +244103,27in FHD Monitor,1,149.99,08/25/19 13:00,"399 Willow St, New York City, NY 10001" +244103,Google Phone,1,600,08/25/19 13:00,"399 Willow St, New York City, NY 10001" +244104,AAA Batteries (4-pack),2,2.99,08/04/19 17:30,"684 4th St, Boston, MA 02215" +244105,Macbook Pro Laptop,1,1700,08/25/19 01:17,"868 Chestnut St, San Francisco, CA 94016" +244106,AAA Batteries (4-pack),1,2.99,08/03/19 14:17,"855 Washington St, Seattle, WA 98101" +244107,AAA Batteries (4-pack),2,2.99,08/24/19 14:29,"378 Lincoln St, Atlanta, GA 30301" +244108,iPhone,1,700,08/17/19 16:45,"529 Madison St, Portland, OR 97035" +244109,34in Ultrawide Monitor,1,379.99,08/23/19 11:08,"221 13th St, San Francisco, CA 94016" +244110,Wired Headphones,1,11.99,08/03/19 10:42,"449 5th St, Boston, MA 02215" +244111,27in FHD Monitor,1,149.99,08/13/19 16:51,"473 South St, Austin, TX 73301" +244112,Bose SoundSport Headphones,1,99.99,08/03/19 18:59,"255 Jefferson St, Los Angeles, CA 90001" +244113,Wired Headphones,1,11.99,08/09/19 13:12,"48 Jefferson St, San Francisco, CA 94016" +244114,ThinkPad Laptop,1,999.99,08/14/19 09:36,"520 Lincoln St, Boston, MA 02215" +244114,Lightning Charging Cable,1,14.95,08/14/19 09:36,"520 Lincoln St, Boston, MA 02215" +244115,Bose SoundSport Headphones,1,99.99,08/27/19 14:41,"203 Church St, Atlanta, GA 30301" +244116,Wired Headphones,1,11.99,08/24/19 08:19,"83 Hickory St, New York City, NY 10001" +244117,AAA Batteries (4-pack),4,2.99,08/10/19 17:28,"246 14th St, Los Angeles, CA 90001" +244118,USB-C Charging Cable,1,11.95,08/28/19 21:05,"11 Pine St, Atlanta, GA 30301" +244119,AA Batteries (4-pack),1,3.84,08/27/19 03:28,"921 8th St, Los Angeles, CA 90001" +244120,Flatscreen TV,1,300,08/20/19 01:44,"244 14th St, San Francisco, CA 94016" +244121,Wired Headphones,1,11.99,08/13/19 06:51,"354 Main St, Los Angeles, CA 90001" +244122,iPhone,1,700,08/07/19 22:40,"274 11th St, Boston, MA 02215" +244123,20in Monitor,1,109.99,08/25/19 13:45,"36 Center St, San Francisco, CA 94016" +244124,Bose SoundSport Headphones,1,99.99,08/11/19 14:18,"791 Cherry St, Boston, MA 02215" +244125,Lightning Charging Cable,1,14.95,08/25/19 17:58,"156 Lake St, Atlanta, GA 30301" +244126,USB-C Charging Cable,2,11.95,08/07/19 23:41,"380 10th St, San Francisco, CA 94016" +244127,Macbook Pro Laptop,1,1700,08/04/19 16:59,"220 7th St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +244128,Macbook Pro Laptop,1,1700,08/19/19 14:40,"743 Forest St, New York City, NY 10001" +244129,Bose SoundSport Headphones,1,99.99,08/05/19 12:14,"726 Walnut St, San Francisco, CA 94016" +244130,AA Batteries (4-pack),1,3.84,08/09/19 12:42,"662 Dogwood St, Austin, TX 73301" +244131,Apple Airpods Headphones,1,150,08/30/19 09:26,"697 11th St, Los Angeles, CA 90001" +244132,Lightning Charging Cable,1,14.95,08/06/19 19:04,"204 River St, New York City, NY 10001" +244133,Wired Headphones,1,11.99,08/03/19 01:31,"270 Cherry St, San Francisco, CA 94016" +244134,Lightning Charging Cable,1,14.95,08/06/19 21:44,"346 Main St, Los Angeles, CA 90001" +244135,AAA Batteries (4-pack),3,2.99,08/06/19 23:56,"28 Washington St, San Francisco, CA 94016" +244136,AAA Batteries (4-pack),1,2.99,08/21/19 11:25,"880 Hill St, Dallas, TX 75001" +244137,AA Batteries (4-pack),2,3.84,08/06/19 21:05,"972 Highland St, San Francisco, CA 94016" +244138,USB-C Charging Cable,1,11.95,08/02/19 20:55,"444 Spruce St, Boston, MA 02215" +244139,AA Batteries (4-pack),2,3.84,08/05/19 19:22,"487 6th St, Atlanta, GA 30301" +244140,Lightning Charging Cable,1,14.95,08/31/19 16:53,"509 Church St, Los Angeles, CA 90001" +244141,Bose SoundSport Headphones,1,99.99,08/15/19 22:10,"361 1st St, Boston, MA 02215" +244142,USB-C Charging Cable,2,11.95,08/26/19 22:56,"873 Pine St, New York City, NY 10001" +244143,Lightning Charging Cable,1,14.95,08/17/19 20:38,"926 Maple St, Seattle, WA 98101" +244144,Apple Airpods Headphones,1,150,08/08/19 17:23,"918 6th St, Los Angeles, CA 90001" +244145,iPhone,1,700,08/07/19 10:45,"638 12th St, San Francisco, CA 94016" +244146,LG Dryer,1,600.0,08/11/19 23:08,"801 Willow St, San Francisco, CA 94016" +244147,USB-C Charging Cable,1,11.95,08/05/19 07:47,"449 Jefferson St, Los Angeles, CA 90001" +244148,Apple Airpods Headphones,1,150,08/01/19 23:53,"643 Maple St, New York City, NY 10001" +244149,LG Dryer,1,600.0,08/25/19 14:52,"556 Jefferson St, Boston, MA 02215" +244150,USB-C Charging Cable,1,11.95,08/20/19 00:55,"554 Highland St, Dallas, TX 75001" +244151,USB-C Charging Cable,1,11.95,08/17/19 22:38,"827 Pine St, San Francisco, CA 94016" +244152,Wired Headphones,1,11.99,08/31/19 02:20,"447 Johnson St, San Francisco, CA 94016" +244153,USB-C Charging Cable,2,11.95,08/23/19 19:41,"624 13th St, Los Angeles, CA 90001" +244154,Macbook Pro Laptop,1,1700,08/22/19 11:20,"576 9th St, Seattle, WA 98101" +244155,AAA Batteries (4-pack),1,2.99,08/12/19 15:24,"901 Lincoln St, New York City, NY 10001" +244156,USB-C Charging Cable,1,11.95,08/02/19 05:27,"902 Jefferson St, Los Angeles, CA 90001" +244157,Lightning Charging Cable,1,14.95,08/04/19 07:18,"599 Cherry St, Seattle, WA 98101" +244158,Lightning Charging Cable,1,14.95,08/09/19 08:35,"243 Highland St, New York City, NY 10001" +244159,AAA Batteries (4-pack),1,2.99,08/21/19 20:05,"577 Lakeview St, New York City, NY 10001" +244160,ThinkPad Laptop,1,999.99,08/25/19 23:24,"93 Dogwood St, Atlanta, GA 30301" +244161,Wired Headphones,1,11.99,08/20/19 12:50,"261 Lake St, Los Angeles, CA 90001" +244162,AAA Batteries (4-pack),2,2.99,08/28/19 17:07,"210 Hickory St, Boston, MA 02215" +244163,Lightning Charging Cable,1,14.95,08/16/19 21:11,"786 Church St, San Francisco, CA 94016" +244164,USB-C Charging Cable,1,11.95,08/13/19 08:58,"733 6th St, Boston, MA 02215" +244165,Macbook Pro Laptop,1,1700,08/05/19 18:26,"456 Cherry St, Los Angeles, CA 90001" +244166,Wired Headphones,1,11.99,08/17/19 13:49,"668 River St, Boston, MA 02215" +244167,USB-C Charging Cable,1,11.95,08/05/19 14:53,"684 Ridge St, Austin, TX 73301" +244168,Google Phone,1,600,08/18/19 21:24,"972 Pine St, Seattle, WA 98101" +244169,Bose SoundSport Headphones,1,99.99,08/02/19 13:52,"176 Cherry St, Boston, MA 02215" +244170,34in Ultrawide Monitor,1,379.99,08/08/19 13:36,"172 Hill St, Atlanta, GA 30301" +244171,AA Batteries (4-pack),3,3.84,08/07/19 15:04,"261 Willow St, Los Angeles, CA 90001" +244172,Macbook Pro Laptop,1,1700,08/28/19 11:08,"217 Main St, Dallas, TX 75001" +244172,34in Ultrawide Monitor,1,379.99,08/28/19 11:08,"217 Main St, Dallas, TX 75001" +244173,34in Ultrawide Monitor,1,379.99,08/17/19 12:15,"387 11th St, San Francisco, CA 94016" +244174,Bose SoundSport Headphones,1,99.99,08/23/19 15:28,"233 Walnut St, San Francisco, CA 94016" +244175,AA Batteries (4-pack),1,3.84,08/01/19 17:10,"815 13th St, Los Angeles, CA 90001" +244176,AA Batteries (4-pack),1,3.84,08/24/19 18:24,"97 11th St, Boston, MA 02215" +244177,USB-C Charging Cable,1,11.95,08/17/19 10:04,"983 Willow St, Dallas, TX 75001" +244178,Apple Airpods Headphones,1,150,08/11/19 18:26,"267 Ridge St, San Francisco, CA 94016" +244179,34in Ultrawide Monitor,1,379.99,08/06/19 11:10,"5 Jackson St, Los Angeles, CA 90001" +244180,AAA Batteries (4-pack),1,2.99,08/18/19 15:01,"179 Willow St, San Francisco, CA 94016" +244181,ThinkPad Laptop,1,999.99,08/19/19 00:40,"664 10th St, Atlanta, GA 30301" +244182,Bose SoundSport Headphones,1,99.99,08/27/19 11:52,"827 1st St, San Francisco, CA 94016" +244183,Lightning Charging Cable,1,14.95,08/03/19 15:15,"18 Highland St, Austin, TX 73301" +244184,AAA Batteries (4-pack),2,2.99,08/11/19 18:31,"441 Main St, New York City, NY 10001" +244184,Bose SoundSport Headphones,1,99.99,08/11/19 18:31,"441 Main St, New York City, NY 10001" +244185,Lightning Charging Cable,1,14.95,08/16/19 18:31,"337 South St, Boston, MA 02215" +244186,AA Batteries (4-pack),1,3.84,08/03/19 18:48,"868 South St, Los Angeles, CA 90001" +244187,AAA Batteries (4-pack),1,2.99,08/20/19 20:14,"839 Elm St, Seattle, WA 98101" +244188,Wired Headphones,1,11.99,08/08/19 14:08,"764 Main St, Portland, OR 97035" +244189,Lightning Charging Cable,1,14.95,08/23/19 12:15,"840 6th St, San Francisco, CA 94016" +244190,34in Ultrawide Monitor,1,379.99,08/05/19 11:37,"882 Lake St, Portland, OR 97035" +244191,Vareebadd Phone,1,400,08/27/19 16:08,"25 Highland St, New York City, NY 10001" +244191,USB-C Charging Cable,1,11.95,08/27/19 16:08,"25 Highland St, New York City, NY 10001" +244192,USB-C Charging Cable,1,11.95,08/31/19 14:47,"716 Cedar St, San Francisco, CA 94016" +244193,Macbook Pro Laptop,1,1700,08/29/19 19:08,"101 Willow St, Los Angeles, CA 90001" +244194,AAA Batteries (4-pack),1,2.99,08/01/19 12:36,"453 Lake St, Atlanta, GA 30301" +244195,Apple Airpods Headphones,1,150,08/05/19 01:21,"407 Meadow St, San Francisco, CA 94016" +244196,AA Batteries (4-pack),2,3.84,08/24/19 09:01,"565 Main St, Los Angeles, CA 90001" +244197,Apple Airpods Headphones,1,150,08/05/19 07:37,"864 Madison St, Los Angeles, CA 90001" +244198,Google Phone,1,600,08/02/19 22:43,"196 Johnson St, San Francisco, CA 94016" +244199,Apple Airpods Headphones,1,150,08/22/19 18:42,"563 4th St, San Francisco, CA 94016" +244200,AA Batteries (4-pack),1,3.84,08/11/19 01:14,"35 Lakeview St, Los Angeles, CA 90001" +244201,iPhone,1,700,08/15/19 18:00,"39 8th St, New York City, NY 10001" +244202,Wired Headphones,1,11.99,08/03/19 22:44,"945 Madison St, Boston, MA 02215" +244203,Wired Headphones,1,11.99,08/24/19 12:41,"132 9th St, San Francisco, CA 94016" +244204,AA Batteries (4-pack),2,3.84,08/19/19 12:55,"723 Forest St, Dallas, TX 75001" +244204,Google Phone,1,600,08/19/19 12:55,"723 Forest St, Dallas, TX 75001" +244205,Bose SoundSport Headphones,1,99.99,08/24/19 11:31,"447 5th St, San Francisco, CA 94016" +244206,AAA Batteries (4-pack),1,2.99,08/24/19 13:40,"66 Hill St, Atlanta, GA 30301" +244207,27in 4K Gaming Monitor,1,389.99,08/16/19 19:05,"888 Lake St, Austin, TX 73301" +244208,Wired Headphones,1,11.99,08/05/19 15:12,"379 Center St, San Francisco, CA 94016" +244209,USB-C Charging Cable,1,11.95,08/11/19 18:38,"423 11th St, Austin, TX 73301" +244210,AA Batteries (4-pack),2,3.84,08/30/19 21:31,"181 Pine St, Atlanta, GA 30301" +244211,USB-C Charging Cable,1,11.95,08/31/19 09:44,"519 Highland St, San Francisco, CA 94016" +244212,AA Batteries (4-pack),1,3.84,08/08/19 19:37,"836 Forest St, Los Angeles, CA 90001" +244213,20in Monitor,1,109.99,08/05/19 18:10,"237 Lake St, Atlanta, GA 30301" +244214,iPhone,1,700,08/14/19 21:21,"104 Elm St, San Francisco, CA 94016" +244215,Flatscreen TV,1,300,08/01/19 16:16,"954 Sunset St, Atlanta, GA 30301" +244215,Flatscreen TV,1,300,08/01/19 16:16,"954 Sunset St, Atlanta, GA 30301" +244216,27in FHD Monitor,1,149.99,08/06/19 08:41,"464 Willow St, Dallas, TX 75001" +244217,34in Ultrawide Monitor,1,379.99,08/19/19 18:21,"280 River St, New York City, NY 10001" +244218,Apple Airpods Headphones,1,150,08/08/19 21:16,"290 Dogwood St, Seattle, WA 98101" +244219,AAA Batteries (4-pack),1,2.99,08/07/19 22:50,"595 Jackson St, Los Angeles, CA 90001" +244220,27in 4K Gaming Monitor,1,389.99,08/16/19 11:25,"390 2nd St, San Francisco, CA 94016" +244221,Wired Headphones,1,11.99,08/23/19 16:08,"990 Jackson St, Austin, TX 73301" +244222,Apple Airpods Headphones,1,150,08/12/19 16:52,"645 Pine St, Austin, TX 73301" +244223,AA Batteries (4-pack),1,3.84,08/15/19 19:00,"752 14th St, Seattle, WA 98101" +244224,Lightning Charging Cable,1,14.95,08/14/19 12:07,"115 Lakeview St, Boston, MA 02215" +244224,27in 4K Gaming Monitor,1,389.99,08/14/19 12:07,"115 Lakeview St, Boston, MA 02215" +244225,Flatscreen TV,1,300,08/10/19 07:07,"736 Walnut St, New York City, NY 10001" +244226,AA Batteries (4-pack),1,3.84,08/20/19 16:36,"137 Pine St, Boston, MA 02215" +244227,AA Batteries (4-pack),1,3.84,08/11/19 21:42,"994 2nd St, Boston, MA 02215" +244228,20in Monitor,1,109.99,08/06/19 09:34,"66 Chestnut St, Boston, MA 02215" +244229,Bose SoundSport Headphones,1,99.99,08/25/19 10:33,"423 Johnson St, Portland, OR 97035" +244230,USB-C Charging Cable,1,11.95,08/07/19 17:55,"939 7th St, Dallas, TX 75001" +244231,AA Batteries (4-pack),3,3.84,08/18/19 08:55,"59 North St, Dallas, TX 75001" +244232,Apple Airpods Headphones,1,150,08/13/19 23:15,"314 River St, San Francisco, CA 94016" +244233,AA Batteries (4-pack),1,3.84,08/01/19 22:52,"180 Main St, San Francisco, CA 94016" +244234,27in 4K Gaming Monitor,1,389.99,08/18/19 19:56,"934 Center St, Portland, OR 97035" +244235,27in FHD Monitor,1,149.99,08/07/19 21:49,"436 9th St, Portland, ME 04101" +244236,AA Batteries (4-pack),3,3.84,08/27/19 09:28,"816 South St, San Francisco, CA 94016" +244237,Apple Airpods Headphones,1,150,08/24/19 15:37,"723 4th St, Portland, OR 97035" +244238,AAA Batteries (4-pack),1,2.99,08/23/19 17:14,"198 12th St, Austin, TX 73301" +244239,34in Ultrawide Monitor,1,379.99,08/23/19 01:07,"250 Lakeview St, Boston, MA 02215" +244240,Lightning Charging Cable,1,14.95,08/16/19 10:33,"904 Hill St, Austin, TX 73301" +244241,27in 4K Gaming Monitor,1,389.99,08/10/19 20:04,"612 Ridge St, Seattle, WA 98101" +244242,Flatscreen TV,1,300,08/26/19 17:25,"12 10th St, Seattle, WA 98101" +244243,USB-C Charging Cable,1,11.95,08/02/19 17:42,"206 Hill St, Atlanta, GA 30301" +244244,USB-C Charging Cable,1,11.95,08/29/19 19:59,"419 Highland St, Boston, MA 02215" +244245,27in 4K Gaming Monitor,1,389.99,08/08/19 14:22,"422 Maple St, San Francisco, CA 94016" +244246,AAA Batteries (4-pack),1,2.99,08/16/19 19:28,"768 Adams St, San Francisco, CA 94016" +244247,USB-C Charging Cable,1,11.95,08/18/19 12:44,"893 Sunset St, San Francisco, CA 94016" +244248,Lightning Charging Cable,1,14.95,08/14/19 12:49,"667 South St, San Francisco, CA 94016" +244249,Apple Airpods Headphones,1,150,08/01/19 11:12,"707 Dogwood St, Dallas, TX 75001" +244250,AAA Batteries (4-pack),4,2.99,08/15/19 22:24,"443 Dogwood St, Los Angeles, CA 90001" +244251,AA Batteries (4-pack),1,3.84,08/09/19 11:35,"932 8th St, Boston, MA 02215" +244252,Lightning Charging Cable,1,14.95,08/31/19 21:23,"945 Jefferson St, Dallas, TX 75001" +244253,USB-C Charging Cable,1,11.95,08/23/19 13:28,"512 8th St, San Francisco, CA 94016" +244254,Wired Headphones,1,11.99,08/07/19 19:31,"462 West St, Portland, OR 97035" +244255,Lightning Charging Cable,2,14.95,08/15/19 17:47,"330 12th St, Atlanta, GA 30301" +244256,Bose SoundSport Headphones,1,99.99,08/31/19 17:23,"670 Chestnut St, Atlanta, GA 30301" +244257,Vareebadd Phone,1,400,08/16/19 07:39,"76 9th St, Boston, MA 02215" +244258,Lightning Charging Cable,1,14.95,08/23/19 11:26,"606 8th St, San Francisco, CA 94016" +244259,AA Batteries (4-pack),2,3.84,08/14/19 07:07,"874 Chestnut St, Austin, TX 73301" +244260,Lightning Charging Cable,1,14.95,08/04/19 11:05,"934 9th St, New York City, NY 10001" +244261,27in 4K Gaming Monitor,1,389.99,08/21/19 19:02,"197 10th St, Portland, OR 97035" +244262,Bose SoundSport Headphones,1,99.99,08/22/19 10:03,"711 7th St, Boston, MA 02215" +244263,Google Phone,1,600,08/20/19 15:29,"579 North St, San Francisco, CA 94016" +244263,USB-C Charging Cable,1,11.95,08/20/19 15:29,"579 North St, San Francisco, CA 94016" +244264,Google Phone,1,600,08/30/19 05:10,"855 8th St, Austin, TX 73301" +244264,Wired Headphones,1,11.99,08/30/19 05:10,"855 8th St, Austin, TX 73301" +244265,27in FHD Monitor,1,149.99,08/20/19 23:56,"427 Pine St, Portland, ME 04101" +244266,AAA Batteries (4-pack),1,2.99,08/30/19 07:55,"500 Lincoln St, San Francisco, CA 94016" +244266,27in FHD Monitor,1,149.99,08/30/19 07:55,"500 Lincoln St, San Francisco, CA 94016" +244267,Flatscreen TV,1,300,08/10/19 14:45,"232 4th St, Seattle, WA 98101" +244268,AAA Batteries (4-pack),1,2.99,08/19/19 00:39,"609 Chestnut St, New York City, NY 10001" +244269,iPhone,1,700,08/03/19 09:19,"835 Pine St, Los Angeles, CA 90001" +244270,AA Batteries (4-pack),1,3.84,08/01/19 14:38,"7 9th St, Los Angeles, CA 90001" +244271,Wired Headphones,1,11.99,08/02/19 20:02,"703 Washington St, Dallas, TX 75001" +244272,Apple Airpods Headphones,1,150,08/23/19 20:16,"483 Washington St, Los Angeles, CA 90001" +244273,AAA Batteries (4-pack),4,2.99,08/21/19 00:33,"471 10th St, San Francisco, CA 94016" +244274,Apple Airpods Headphones,1,150,08/03/19 21:52,"369 Johnson St, Dallas, TX 75001" +244275,27in FHD Monitor,1,149.99,08/10/19 08:08,"586 Elm St, Dallas, TX 75001" +244276,AA Batteries (4-pack),1,3.84,08/29/19 17:30,"637 Spruce St, New York City, NY 10001" +244277,AA Batteries (4-pack),1,3.84,08/30/19 14:32,"529 Church St, San Francisco, CA 94016" +244278,USB-C Charging Cable,1,11.95,08/11/19 10:25,"644 8th St, San Francisco, CA 94016" +244278,34in Ultrawide Monitor,1,379.99,08/11/19 10:25,"644 8th St, San Francisco, CA 94016" +244279,AA Batteries (4-pack),1,3.84,08/22/19 21:11,"475 Dogwood St, Atlanta, GA 30301" +244280,Wired Headphones,1,11.99,08/13/19 18:00,"418 Cedar St, Seattle, WA 98101" +244281,USB-C Charging Cable,1,11.95,08/07/19 19:08,"165 Madison St, Austin, TX 73301" +244282,Vareebadd Phone,1,400,08/21/19 17:36,"735 5th St, Austin, TX 73301" +244282,USB-C Charging Cable,1,11.95,08/21/19 17:36,"735 5th St, Austin, TX 73301" +244283,Lightning Charging Cable,1,14.95,08/27/19 17:18,"169 Madison St, New York City, NY 10001" +244284,AA Batteries (4-pack),1,3.84,08/27/19 07:10,"512 Meadow St, Los Angeles, CA 90001" +244285,AAA Batteries (4-pack),1,2.99,08/21/19 15:21,"97 1st St, San Francisco, CA 94016" +244286,20in Monitor,1,109.99,08/26/19 12:43,"737 9th St, Dallas, TX 75001" +244287,Apple Airpods Headphones,1,150,08/01/19 11:48,"978 Sunset St, Los Angeles, CA 90001" +244288,27in 4K Gaming Monitor,1,389.99,08/08/19 11:33,"339 Spruce St, Los Angeles, CA 90001" +244289,Wired Headphones,1,11.99,08/07/19 13:46,"449 Hickory St, San Francisco, CA 94016" +244290,Apple Airpods Headphones,1,150,08/25/19 12:58,"589 Lincoln St, Los Angeles, CA 90001" +244291,AAA Batteries (4-pack),1,2.99,08/02/19 23:59,"163 Washington St, San Francisco, CA 94016" +244292,AA Batteries (4-pack),1,3.84,08/07/19 13:17,"971 Center St, Los Angeles, CA 90001" +244293,AA Batteries (4-pack),1,3.84,08/16/19 18:54,"586 Pine St, Atlanta, GA 30301" +244294,Bose SoundSport Headphones,1,99.99,08/07/19 11:03,"139 13th St, Boston, MA 02215" +244295,AAA Batteries (4-pack),1,2.99,08/31/19 23:13,"270 Chestnut St, Portland, ME 04101" +244295,AAA Batteries (4-pack),2,2.99,08/31/19 23:13,"270 Chestnut St, Portland, ME 04101" +244296,Wired Headphones,1,11.99,08/12/19 20:52,"679 Walnut St, Los Angeles, CA 90001" +244297,Wired Headphones,1,11.99,08/08/19 15:29,"26 Lakeview St, San Francisco, CA 94016" +244298,Lightning Charging Cable,1,14.95,08/23/19 21:50,"815 8th St, Boston, MA 02215" +244299,Apple Airpods Headphones,1,150,08/23/19 15:28,"225 Washington St, Atlanta, GA 30301" +244300,27in 4K Gaming Monitor,1,389.99,08/09/19 09:46,"428 Lake St, Los Angeles, CA 90001" +244301,AAA Batteries (4-pack),2,2.99,08/27/19 14:10,"652 Madison St, Portland, OR 97035" +244302,USB-C Charging Cable,1,11.95,08/21/19 10:55,"553 2nd St, Seattle, WA 98101" +244303,27in 4K Gaming Monitor,1,389.99,08/27/19 09:50,"816 Jefferson St, San Francisco, CA 94016" +244304,iPhone,1,700,08/25/19 11:46,"850 River St, San Francisco, CA 94016" +244305,AA Batteries (4-pack),2,3.84,08/03/19 23:56,"3 Chestnut St, New York City, NY 10001" +244306,Lightning Charging Cable,1,14.95,08/04/19 17:49,"498 Forest St, Dallas, TX 75001" +244307,27in FHD Monitor,1,149.99,08/09/19 15:34,"635 Washington St, Atlanta, GA 30301" +244308,USB-C Charging Cable,1,11.95,08/29/19 20:50,"706 Adams St, Austin, TX 73301" +244309,USB-C Charging Cable,1,11.95,08/16/19 09:54,"535 Madison St, Dallas, TX 75001" +244310,AA Batteries (4-pack),1,3.84,08/06/19 16:30,"8 Forest St, Los Angeles, CA 90001" +244311,Lightning Charging Cable,1,14.95,08/06/19 17:57,"906 Willow St, Los Angeles, CA 90001" +244312,ThinkPad Laptop,1,999.99,08/26/19 13:50,"159 6th St, San Francisco, CA 94016" +244313,AA Batteries (4-pack),2,3.84,08/23/19 08:11,"490 Highland St, New York City, NY 10001" +244314,Lightning Charging Cable,1,14.95,08/14/19 00:29,"802 10th St, San Francisco, CA 94016" +244315,34in Ultrawide Monitor,1,379.99,08/10/19 06:39,"581 Spruce St, Austin, TX 73301" +244316,Flatscreen TV,1,300,08/03/19 11:09,"11 Adams St, Seattle, WA 98101" +244317,Wired Headphones,1,11.99,08/21/19 13:18,"677 7th St, San Francisco, CA 94016" +244318,Apple Airpods Headphones,1,150,08/15/19 10:12,"271 Jefferson St, Dallas, TX 75001" +244319,ThinkPad Laptop,1,999.99,08/12/19 00:30,"118 10th St, New York City, NY 10001" +244320,Bose SoundSport Headphones,1,99.99,08/05/19 17:43,"342 Pine St, Dallas, TX 75001" +244321,AA Batteries (4-pack),1,3.84,08/29/19 15:48,"622 14th St, Boston, MA 02215" +244322,Macbook Pro Laptop,1,1700,08/25/19 00:36,"234 2nd St, San Francisco, CA 94016" +244323,AA Batteries (4-pack),1,3.84,08/17/19 15:50,"585 Elm St, San Francisco, CA 94016" +244324,Flatscreen TV,1,300,08/11/19 11:19,"787 Ridge St, Seattle, WA 98101" +244325,Apple Airpods Headphones,1,150,08/06/19 12:03,"487 Park St, Seattle, WA 98101" +244326,USB-C Charging Cable,1,11.95,08/16/19 12:58,"889 Center St, San Francisco, CA 94016" +244327,AA Batteries (4-pack),1,3.84,08/28/19 17:15,"135 5th St, Atlanta, GA 30301" +244328,Wired Headphones,1,11.99,08/30/19 16:42,"719 Lincoln St, San Francisco, CA 94016" +244329,Wired Headphones,1,11.99,08/14/19 09:39,"222 Highland St, New York City, NY 10001" +244330,Apple Airpods Headphones,1,150,08/30/19 13:38,"638 8th St, Los Angeles, CA 90001" +244331,Macbook Pro Laptop,1,1700,08/09/19 13:31,"13 Pine St, Dallas, TX 75001" +244332,AA Batteries (4-pack),2,3.84,08/17/19 00:24,"405 Ridge St, San Francisco, CA 94016" +244333,AAA Batteries (4-pack),1,2.99,08/07/19 19:57,"695 Church St, Dallas, TX 75001" +244334,Apple Airpods Headphones,1,150,08/10/19 22:54,"893 14th St, San Francisco, CA 94016" +244335,Flatscreen TV,1,300,08/29/19 18:05,"298 7th St, Los Angeles, CA 90001" +244336,Bose SoundSport Headphones,1,99.99,08/21/19 17:26,"236 Adams St, Seattle, WA 98101" +244337,AAA Batteries (4-pack),1,2.99,08/31/19 11:37,"117 River St, San Francisco, CA 94016" +244338,Lightning Charging Cable,1,14.95,08/04/19 18:48,"344 Adams St, New York City, NY 10001" +244339,Lightning Charging Cable,1,14.95,08/31/19 01:48,"30 River St, San Francisco, CA 94016" +244340,Lightning Charging Cable,1,14.95,08/16/19 10:27,"76 Madison St, Boston, MA 02215" +244341,Wired Headphones,1,11.99,08/12/19 12:52,"382 Sunset St, San Francisco, CA 94016" +244342,AAA Batteries (4-pack),1,2.99,08/20/19 22:35,"445 10th St, New York City, NY 10001" +244343,AA Batteries (4-pack),2,3.84,08/10/19 22:34,"984 South St, Boston, MA 02215" +244344,Apple Airpods Headphones,1,150,08/28/19 18:51,"676 West St, Portland, OR 97035" +244345,Lightning Charging Cable,1,14.95,08/26/19 17:56,"288 12th St, Los Angeles, CA 90001" +244346,iPhone,1,700,08/25/19 20:05,"778 Main St, San Francisco, CA 94016" +244347,Bose SoundSport Headphones,1,99.99,08/01/19 21:17,"297 8th St, San Francisco, CA 94016" +244348,AAA Batteries (4-pack),2,2.99,08/20/19 16:37,"586 Maple St, New York City, NY 10001" +244349,Bose SoundSport Headphones,1,99.99,08/19/19 12:14,"501 9th St, New York City, NY 10001" +244350,34in Ultrawide Monitor,1,379.99,08/07/19 14:04,"348 8th St, New York City, NY 10001" +244351,USB-C Charging Cable,1,11.95,08/01/19 19:40,"365 7th St, Los Angeles, CA 90001" +244352,iPhone,1,700,08/05/19 11:05,"431 Walnut St, Dallas, TX 75001" +244353,Wired Headphones,1,11.99,08/07/19 14:20,"937 River St, San Francisco, CA 94016" +244354,USB-C Charging Cable,1,11.95,08/15/19 13:48,"864 Meadow St, Boston, MA 02215" +244355,Macbook Pro Laptop,1,1700,08/09/19 20:01,"553 9th St, San Francisco, CA 94016" +244356,USB-C Charging Cable,1,11.95,08/09/19 14:09,"242 14th St, San Francisco, CA 94016" +244357,AA Batteries (4-pack),2,3.84,08/31/19 12:20,"455 6th St, Atlanta, GA 30301" +244358,Macbook Pro Laptop,1,1700,08/20/19 18:37,"401 9th St, New York City, NY 10001" +244359,Lightning Charging Cable,1,14.95,08/02/19 06:02,"275 West St, Seattle, WA 98101" +244360,AA Batteries (4-pack),2,3.84,08/01/19 12:46,"814 Cherry St, Dallas, TX 75001" +244361,AAA Batteries (4-pack),1,2.99,08/24/19 15:53,"585 13th St, Austin, TX 73301" +244362,AAA Batteries (4-pack),1,2.99,08/09/19 12:06,"685 5th St, Los Angeles, CA 90001" +244363,34in Ultrawide Monitor,1,379.99,08/09/19 22:01,"130 7th St, San Francisco, CA 94016" +244364,27in FHD Monitor,1,149.99,08/15/19 09:39,"130 Church St, Boston, MA 02215" +244365,Wired Headphones,1,11.99,08/13/19 21:48,"299 Lakeview St, Los Angeles, CA 90001" +244366,AAA Batteries (4-pack),1,2.99,08/23/19 13:51,"165 Wilson St, San Francisco, CA 94016" +244367,AAA Batteries (4-pack),1,2.99,08/27/19 17:06,"814 1st St, Los Angeles, CA 90001" +244368,AA Batteries (4-pack),2,3.84,08/10/19 12:44,"604 Lakeview St, Atlanta, GA 30301" +244369,Google Phone,1,600,08/02/19 08:26,"293 14th St, Seattle, WA 98101" +244370,Wired Headphones,2,11.99,08/09/19 17:50,"538 1st St, Atlanta, GA 30301" +244371,AA Batteries (4-pack),1,3.84,08/24/19 21:17,"462 Cedar St, New York City, NY 10001" +244372,27in 4K Gaming Monitor,1,389.99,08/26/19 15:06,"735 4th St, Austin, TX 73301" +244373,27in FHD Monitor,1,149.99,08/09/19 09:30,"434 1st St, Los Angeles, CA 90001" +244374,AAA Batteries (4-pack),2,2.99,08/10/19 21:25,"931 Madison St, San Francisco, CA 94016" +244375,Bose SoundSport Headphones,1,99.99,08/07/19 18:05,"160 7th St, Los Angeles, CA 90001" +244376,Apple Airpods Headphones,1,150,08/05/19 13:44,"599 Walnut St, Portland, OR 97035" +244377,Wired Headphones,1,11.99,08/25/19 22:03,"380 4th St, San Francisco, CA 94016" +244378,Apple Airpods Headphones,1,150,08/23/19 13:21,"371 Walnut St, Austin, TX 73301" +244379,USB-C Charging Cable,1,11.95,08/18/19 22:57,"359 Center St, Boston, MA 02215" +244380,AAA Batteries (4-pack),1,2.99,08/21/19 16:16,"245 Washington St, San Francisco, CA 94016" +244381,Bose SoundSport Headphones,1,99.99,08/08/19 19:17,"690 5th St, Dallas, TX 75001" +244382,iPhone,1,700,08/17/19 23:32,"545 6th St, Seattle, WA 98101" +244383,USB-C Charging Cable,1,11.95,08/05/19 17:13,"975 Jackson St, San Francisco, CA 94016" +244384,AA Batteries (4-pack),2,3.84,08/28/19 08:57,"907 Highland St, Austin, TX 73301" +244385,Lightning Charging Cable,1,14.95,08/18/19 17:38,"969 Sunset St, Dallas, TX 75001" +244386,Bose SoundSport Headphones,1,99.99,08/16/19 08:40,"107 Jackson St, Boston, MA 02215" +244387,Bose SoundSport Headphones,1,99.99,08/29/19 17:23,"358 Johnson St, Los Angeles, CA 90001" +244388,34in Ultrawide Monitor,1,379.99,08/21/19 13:54,"777 Elm St, Los Angeles, CA 90001" +244389,Lightning Charging Cable,2,14.95,08/02/19 23:05,"865 Sunset St, Atlanta, GA 30301" +244390,AAA Batteries (4-pack),2,2.99,08/27/19 19:07,"675 Spruce St, Portland, OR 97035" +244391,Wired Headphones,1,11.99,08/07/19 20:32,"99 Ridge St, Atlanta, GA 30301" +244392,Lightning Charging Cable,1,14.95,08/17/19 15:17,"27 6th St, San Francisco, CA 94016" +244393,34in Ultrawide Monitor,1,379.99,08/30/19 11:27,"602 13th St, San Francisco, CA 94016" +244394,USB-C Charging Cable,1,11.95,08/25/19 19:23,"276 Ridge St, Dallas, TX 75001" +244395,AAA Batteries (4-pack),1,2.99,08/08/19 09:46,"139 Chestnut St, New York City, NY 10001" +244396,AAA Batteries (4-pack),2,2.99,08/16/19 20:23,"913 5th St, Atlanta, GA 30301" +244397,Bose SoundSport Headphones,1,99.99,08/01/19 22:11,"664 Sunset St, Austin, TX 73301" +244398,AAA Batteries (4-pack),3,2.99,08/01/19 20:06,"990 Johnson St, Dallas, TX 75001" +244399,AA Batteries (4-pack),2,3.84,08/02/19 16:56,"689 2nd St, Seattle, WA 98101" +244400,Apple Airpods Headphones,1,150,08/03/19 17:34,"766 Church St, Portland, OR 97035" +244401,Lightning Charging Cable,1,14.95,08/24/19 22:07,"688 Pine St, Los Angeles, CA 90001" +244402,27in FHD Monitor,1,149.99,08/29/19 00:03,"600 Washington St, San Francisco, CA 94016" +244403,AA Batteries (4-pack),2,3.84,08/03/19 16:57,"373 2nd St, San Francisco, CA 94016" +244404,ThinkPad Laptop,1,999.99,08/27/19 00:55,"606 Madison St, San Francisco, CA 94016" +244405,AA Batteries (4-pack),1,3.84,08/03/19 20:04,"715 Willow St, San Francisco, CA 94016" +244406,Flatscreen TV,1,300,08/31/19 21:49,"666 Church St, New York City, NY 10001" +244407,AAA Batteries (4-pack),1,2.99,08/17/19 19:00,"631 Johnson St, Austin, TX 73301" +244408,Apple Airpods Headphones,1,150,08/17/19 21:00,"884 North St, Portland, ME 04101" +244409,Wired Headphones,1,11.99,08/07/19 17:05,"819 Church St, New York City, NY 10001" +244410,Wired Headphones,1,11.99,08/21/19 17:47,"36 Dogwood St, Seattle, WA 98101" +244411,AAA Batteries (4-pack),2,2.99,08/15/19 12:58,"104 Lake St, New York City, NY 10001" +244412,ThinkPad Laptop,1,999.99,08/28/19 20:56,"211 Church St, New York City, NY 10001" +244413,AA Batteries (4-pack),4,3.84,08/18/19 06:49,"603 Sunset St, Los Angeles, CA 90001" +244414,27in 4K Gaming Monitor,2,389.99,08/28/19 00:12,"384 Spruce St, San Francisco, CA 94016" +244415,Lightning Charging Cable,1,14.95,08/20/19 08:24,"595 Cedar St, Los Angeles, CA 90001" +244416,Wired Headphones,1,11.99,08/24/19 21:55,"103 Meadow St, Dallas, TX 75001" +244417,Apple Airpods Headphones,1,150,08/19/19 10:35,"331 Wilson St, Portland, OR 97035" +244418,Bose SoundSport Headphones,1,99.99,08/28/19 14:56,"590 Main St, Boston, MA 02215" +244419,AAA Batteries (4-pack),1,2.99,08/21/19 15:44,"81 13th St, Austin, TX 73301" +244420,iPhone,1,700,08/20/19 16:47,"214 Madison St, San Francisco, CA 94016" +244421,Macbook Pro Laptop,1,1700,08/28/19 18:19,"778 Maple St, Boston, MA 02215" +244422,AAA Batteries (4-pack),1,2.99,09/01/19 00:37,"645 11th St, New York City, NY 10001" +244423,AA Batteries (4-pack),1,3.84,08/23/19 17:42,"932 Cherry St, Los Angeles, CA 90001" +244424,Wired Headphones,2,11.99,08/23/19 18:00,"449 12th St, Los Angeles, CA 90001" +244425,Apple Airpods Headphones,1,150,08/19/19 16:11,"529 Dogwood St, San Francisco, CA 94016" +244426,AA Batteries (4-pack),2,3.84,08/28/19 07:13,"333 Lincoln St, San Francisco, CA 94016" +244427,USB-C Charging Cable,1,11.95,08/03/19 22:29,"857 Highland St, Portland, OR 97035" +244428,AA Batteries (4-pack),1,3.84,08/10/19 19:55,"376 6th St, Los Angeles, CA 90001" +244429,Wired Headphones,1,11.99,08/06/19 20:27,"982 2nd St, Portland, ME 04101" +244430,Bose SoundSport Headphones,1,99.99,08/05/19 12:23,"463 6th St, Portland, OR 97035" +244431,USB-C Charging Cable,1,11.95,08/18/19 08:21,"732 Maple St, Portland, OR 97035" +244432,Lightning Charging Cable,1,14.95,08/02/19 21:34,"617 Wilson St, Los Angeles, CA 90001" +244433,USB-C Charging Cable,1,11.95,08/08/19 13:49,"730 Elm St, Los Angeles, CA 90001" +244434,AAA Batteries (4-pack),1,2.99,08/26/19 16:16,"166 Elm St, Boston, MA 02215" +244435,Wired Headphones,1,11.99,08/02/19 21:24,"892 1st St, San Francisco, CA 94016" +244436,Bose SoundSport Headphones,1,99.99,08/29/19 19:39,"687 Willow St, Austin, TX 73301" +244437,27in 4K Gaming Monitor,1,389.99,08/16/19 09:24,"768 Church St, Los Angeles, CA 90001" +244438,USB-C Charging Cable,1,11.95,08/11/19 14:52,"283 Church St, Atlanta, GA 30301" +244439,27in 4K Gaming Monitor,1,389.99,08/12/19 10:33,"866 North St, Portland, ME 04101" +244440,20in Monitor,1,109.99,08/26/19 05:26,"145 North St, New York City, NY 10001" +244441,AA Batteries (4-pack),1,3.84,08/28/19 22:07,"813 9th St, San Francisco, CA 94016" +244442,Apple Airpods Headphones,1,150,08/09/19 12:11,"961 7th St, Portland, ME 04101" +244443,Lightning Charging Cable,1,14.95,08/19/19 12:50,"915 Ridge St, New York City, NY 10001" +244444,Flatscreen TV,1,300,08/13/19 12:38,"631 Chestnut St, San Francisco, CA 94016" +244445,AA Batteries (4-pack),1,3.84,08/31/19 20:28,"61 9th St, San Francisco, CA 94016" +244446,27in FHD Monitor,1,149.99,08/25/19 23:52,"250 Jackson St, San Francisco, CA 94016" +244447,AAA Batteries (4-pack),3,2.99,08/23/19 13:09,"858 Lakeview St, San Francisco, CA 94016" +244448,Wired Headphones,1,11.99,08/28/19 21:34,"17 Adams St, San Francisco, CA 94016" +244449,iPhone,1,700,08/13/19 19:32,"976 Madison St, Dallas, TX 75001" +244449,Lightning Charging Cable,1,14.95,08/13/19 19:32,"976 Madison St, Dallas, TX 75001" +244450,Lightning Charging Cable,1,14.95,08/20/19 21:06,"686 Hill St, San Francisco, CA 94016" +244451,Apple Airpods Headphones,1,150,08/11/19 19:41,"543 13th St, Atlanta, GA 30301" +244452,Lightning Charging Cable,1,14.95,08/25/19 13:53,"528 Maple St, Los Angeles, CA 90001" +244453,Google Phone,1,600,08/20/19 19:55,"955 8th St, Austin, TX 73301" +244453,USB-C Charging Cable,1,11.95,08/20/19 19:55,"955 8th St, Austin, TX 73301" +244454,AA Batteries (4-pack),1,3.84,08/12/19 17:49,"724 Spruce St, Boston, MA 02215" +244455,Lightning Charging Cable,1,14.95,08/10/19 15:41,"818 Center St, Seattle, WA 98101" +244456,20in Monitor,1,109.99,08/19/19 20:15,"205 Walnut St, New York City, NY 10001" +244457,Apple Airpods Headphones,1,150,08/27/19 16:35,"68 10th St, San Francisco, CA 94016" +244458,AA Batteries (4-pack),1,3.84,08/30/19 11:21,"826 Lincoln St, Dallas, TX 75001" +244459,AA Batteries (4-pack),1,3.84,08/22/19 21:14,"349 14th St, San Francisco, CA 94016" +244460,AAA Batteries (4-pack),3,2.99,08/17/19 14:48,"602 6th St, New York City, NY 10001" +244461,20in Monitor,1,109.99,08/14/19 15:36,"917 6th St, New York City, NY 10001" +244462,Vareebadd Phone,1,400,08/16/19 23:53,"698 Adams St, New York City, NY 10001" +244463,AAA Batteries (4-pack),1,2.99,08/22/19 19:00,"998 Forest St, Boston, MA 02215" +244464,27in FHD Monitor,1,149.99,08/23/19 13:55,"117 Cedar St, Los Angeles, CA 90001" +244465,34in Ultrawide Monitor,1,379.99,08/18/19 15:36,"735 Jefferson St, Los Angeles, CA 90001" +244466,Wired Headphones,1,11.99,08/24/19 00:16,"642 Spruce St, New York City, NY 10001" +244467,Wired Headphones,1,11.99,08/17/19 15:41,"924 Johnson St, Seattle, WA 98101" +244468,Google Phone,1,600,08/08/19 19:42,"978 Ridge St, Los Angeles, CA 90001" +244469,USB-C Charging Cable,1,11.95,08/07/19 21:51,"736 13th St, Los Angeles, CA 90001" +244470,27in 4K Gaming Monitor,1,389.99,08/10/19 21:16,"409 Maple St, Seattle, WA 98101" +244471,USB-C Charging Cable,1,11.95,08/04/19 16:31,"957 Church St, Los Angeles, CA 90001" +244472,USB-C Charging Cable,2,11.95,08/21/19 17:53,"49 6th St, New York City, NY 10001" +244473,Vareebadd Phone,1,400,08/19/19 01:42,"215 Meadow St, Atlanta, GA 30301" +244474,AAA Batteries (4-pack),1,2.99,08/14/19 13:35,"368 South St, Dallas, TX 75001" +244475,AA Batteries (4-pack),1,3.84,08/01/19 16:44,"980 Center St, Boston, MA 02215" +244476,AAA Batteries (4-pack),1,2.99,08/03/19 14:17,"142 Maple St, Dallas, TX 75001" +244477,Macbook Pro Laptop,1,1700,08/16/19 21:31,"471 Cherry St, New York City, NY 10001" +244478,27in 4K Gaming Monitor,1,389.99,08/06/19 20:57,"40 Highland St, San Francisco, CA 94016" +244479,27in 4K Gaming Monitor,1,389.99,08/28/19 00:39,"299 Lake St, Austin, TX 73301" +244480,iPhone,1,700,08/22/19 19:13,"525 1st St, San Francisco, CA 94016" +244481,Apple Airpods Headphones,1,150,08/11/19 11:53,"738 Jefferson St, Atlanta, GA 30301" +244482,AA Batteries (4-pack),1,3.84,08/06/19 17:46,"395 Cedar St, New York City, NY 10001" +244483,Flatscreen TV,1,300,08/02/19 16:32,"731 Madison St, Los Angeles, CA 90001" +244484,AAA Batteries (4-pack),1,2.99,08/23/19 10:52,"259 14th St, Los Angeles, CA 90001" +244485,Bose SoundSport Headphones,1,99.99,08/23/19 04:59,"686 12th St, Dallas, TX 75001" +244486,Apple Airpods Headphones,1,150,08/27/19 12:16,"730 10th St, Austin, TX 73301" +244487,USB-C Charging Cable,1,11.95,08/17/19 11:31,"550 Lake St, Atlanta, GA 30301" +244488,USB-C Charging Cable,1,11.95,08/22/19 19:21,"754 Pine St, Los Angeles, CA 90001" +244489,AAA Batteries (4-pack),1,2.99,08/13/19 21:54,"327 Jackson St, San Francisco, CA 94016" +244490,Bose SoundSport Headphones,1,99.99,08/12/19 12:11,"778 Sunset St, Los Angeles, CA 90001" +244491,USB-C Charging Cable,1,11.95,08/12/19 10:06,"27 Park St, San Francisco, CA 94016" +244492,Apple Airpods Headphones,1,150,08/25/19 16:48,"926 13th St, Boston, MA 02215" +244493,AAA Batteries (4-pack),1,2.99,08/14/19 21:32,"954 Church St, Dallas, TX 75001" +244494,AAA Batteries (4-pack),1,2.99,08/04/19 15:15,"530 River St, Los Angeles, CA 90001" +244495,Wired Headphones,1,11.99,08/31/19 09:30,"371 Lake St, Los Angeles, CA 90001" +244496,USB-C Charging Cable,2,11.95,08/08/19 09:39,"52 Lake St, San Francisco, CA 94016" +244497,ThinkPad Laptop,1,999.99,08/20/19 18:24,"529 Dogwood St, Los Angeles, CA 90001" +244498,AAA Batteries (4-pack),1,2.99,08/17/19 14:05,"736 Pine St, Los Angeles, CA 90001" +244499,Apple Airpods Headphones,1,150,08/28/19 20:45,"674 Spruce St, Boston, MA 02215" +244500,iPhone,1,700,08/30/19 22:52,"925 Park St, New York City, NY 10001" +244501,AAA Batteries (4-pack),2,2.99,08/08/19 14:29,"45 Willow St, Dallas, TX 75001" +244502,AAA Batteries (4-pack),1,2.99,08/21/19 20:33,"173 Willow St, Seattle, WA 98101" +244503,iPhone,1,700,08/29/19 09:10,"851 9th St, Dallas, TX 75001" +244504,AA Batteries (4-pack),1,3.84,08/02/19 19:51,"532 5th St, Dallas, TX 75001" +244505,Wired Headphones,1,11.99,08/30/19 19:08,"675 Pine St, New York City, NY 10001" +244506,34in Ultrawide Monitor,1,379.99,08/08/19 23:35,"76 Jackson St, Los Angeles, CA 90001" +244507,Apple Airpods Headphones,1,150,08/20/19 13:06,"693 West St, San Francisco, CA 94016" +244508,Wired Headphones,1,11.99,08/23/19 18:35,"352 Hickory St, Dallas, TX 75001" +244509,Flatscreen TV,1,300,08/07/19 12:55,"908 13th St, San Francisco, CA 94016" +244510,USB-C Charging Cable,1,11.95,08/07/19 11:55,"248 Lakeview St, Portland, OR 97035" +244511,27in FHD Monitor,1,149.99,08/29/19 15:10,"348 Lakeview St, Portland, OR 97035" +244512,Lightning Charging Cable,1,14.95,08/30/19 17:21,"819 Elm St, Dallas, TX 75001" +244513,iPhone,1,700,08/13/19 20:27,"19 7th St, Dallas, TX 75001" +244514,Google Phone,1,600,08/28/19 17:45,"240 Dogwood St, Los Angeles, CA 90001" +244514,USB-C Charging Cable,1,11.95,08/28/19 17:45,"240 Dogwood St, Los Angeles, CA 90001" +244515,Google Phone,1,600,08/05/19 12:19,"191 Jackson St, San Francisco, CA 94016" +244515,USB-C Charging Cable,1,11.95,08/05/19 12:19,"191 Jackson St, San Francisco, CA 94016" +244516,20in Monitor,1,109.99,08/12/19 22:12,"170 Pine St, San Francisco, CA 94016" +244517,USB-C Charging Cable,1,11.95,08/20/19 09:04,"784 Lincoln St, New York City, NY 10001" +244518,USB-C Charging Cable,1,11.95,08/16/19 21:27,"863 Chestnut St, New York City, NY 10001" +244519,AA Batteries (4-pack),1,3.84,08/25/19 16:44,"508 Washington St, San Francisco, CA 94016" +244520,Apple Airpods Headphones,1,150,08/24/19 21:21,"86 Park St, Portland, OR 97035" +244521,USB-C Charging Cable,1,11.95,08/19/19 09:54,"401 Sunset St, Los Angeles, CA 90001" +244522,Apple Airpods Headphones,1,150,08/07/19 21:00,"265 10th St, Portland, OR 97035" +244523,Lightning Charging Cable,1,14.95,08/30/19 22:30,"679 4th St, Atlanta, GA 30301" +244524,Wired Headphones,4,11.99,08/09/19 13:08,"344 Highland St, Dallas, TX 75001" +244525,AA Batteries (4-pack),1,3.84,08/19/19 14:16,"801 Jefferson St, San Francisco, CA 94016" +244526,Apple Airpods Headphones,1,150,08/14/19 11:14,"45 Adams St, Los Angeles, CA 90001" +244527,27in 4K Gaming Monitor,1,389.99,08/18/19 17:07,"252 Jefferson St, San Francisco, CA 94016" +244528,Apple Airpods Headphones,1,150,08/17/19 11:57,"679 Lake St, San Francisco, CA 94016" +244529,Apple Airpods Headphones,1,150,08/06/19 15:24,"180 7th St, New York City, NY 10001" +244530,USB-C Charging Cable,1,11.95,08/10/19 19:38,"703 Highland St, Austin, TX 73301" +244531,Vareebadd Phone,1,400,08/12/19 11:33,"292 1st St, Atlanta, GA 30301" +244531,USB-C Charging Cable,1,11.95,08/12/19 11:33,"292 1st St, Atlanta, GA 30301" +244532,USB-C Charging Cable,1,11.95,08/20/19 23:03,"880 Wilson St, Boston, MA 02215" +244533,AA Batteries (4-pack),1,3.84,08/07/19 12:37,"572 Lake St, San Francisco, CA 94016" +244534,AA Batteries (4-pack),1,3.84,08/03/19 19:11,"601 Park St, Los Angeles, CA 90001" +244535,Macbook Pro Laptop,1,1700,08/25/19 23:36,"431 Main St, San Francisco, CA 94016" +244536,34in Ultrawide Monitor,1,379.99,08/05/19 06:54,"138 1st St, Boston, MA 02215" +244537,27in FHD Monitor,1,149.99,08/03/19 19:48,"809 5th St, Dallas, TX 75001" +244538,USB-C Charging Cable,1,11.95,08/19/19 15:04,"956 12th St, Dallas, TX 75001" +244539,Google Phone,1,600,08/11/19 14:34,"466 Walnut St, Dallas, TX 75001" +244540,Wired Headphones,1,11.99,08/23/19 17:02,"603 Walnut St, San Francisco, CA 94016" +244541,34in Ultrawide Monitor,1,379.99,08/10/19 19:21,"339 Madison St, Seattle, WA 98101" +244542,AA Batteries (4-pack),2,3.84,08/24/19 01:07,"458 Lakeview St, San Francisco, CA 94016" +244543,AA Batteries (4-pack),1,3.84,08/26/19 20:06,"913 Adams St, Boston, MA 02215" +244544,Lightning Charging Cable,1,14.95,08/19/19 09:58,"169 14th St, Dallas, TX 75001" +244545,USB-C Charging Cable,1,11.95,08/10/19 16:47,"693 5th St, Boston, MA 02215" +244546,27in 4K Gaming Monitor,1,389.99,08/31/19 13:56,"329 Sunset St, Portland, OR 97035" +244547,ThinkPad Laptop,1,999.99,08/12/19 07:45,"363 River St, Austin, TX 73301" +244548,27in FHD Monitor,1,149.99,08/21/19 09:08,"216 Cedar St, San Francisco, CA 94016" +244549,27in 4K Gaming Monitor,1,389.99,08/23/19 10:06,"329 6th St, Boston, MA 02215" +244550,Bose SoundSport Headphones,1,99.99,08/04/19 01:14,"964 Washington St, San Francisco, CA 94016" +244551,34in Ultrawide Monitor,1,379.99,08/25/19 15:57,"313 Elm St, San Francisco, CA 94016" +244552,USB-C Charging Cable,1,11.95,08/17/19 20:23,"982 Maple St, Dallas, TX 75001" +244553,Lightning Charging Cable,1,14.95,08/31/19 20:08,"921 Pine St, Seattle, WA 98101" +244554,Wired Headphones,1,11.99,08/01/19 13:38,"10 Willow St, Boston, MA 02215" +244555,AAA Batteries (4-pack),2,2.99,08/14/19 16:27,"774 5th St, Austin, TX 73301" +244556,AAA Batteries (4-pack),4,2.99,08/30/19 05:24,"426 Ridge St, Seattle, WA 98101" +244557,AA Batteries (4-pack),2,3.84,08/25/19 20:15,"950 Sunset St, Los Angeles, CA 90001" +244558,Lightning Charging Cable,1,14.95,08/19/19 13:17,"200 5th St, Austin, TX 73301" +244559,Lightning Charging Cable,1,14.95,08/21/19 16:10,"245 Chestnut St, Atlanta, GA 30301" +244560,Wired Headphones,1,11.99,08/31/19 23:15,"566 Church St, New York City, NY 10001" +244561,Google Phone,1,600,08/08/19 14:06,"78 Meadow St, Dallas, TX 75001" +244561,34in Ultrawide Monitor,1,379.99,08/08/19 14:06,"78 Meadow St, Dallas, TX 75001" +244562,27in 4K Gaming Monitor,1,389.99,08/07/19 16:53,"42 Pine St, New York City, NY 10001" +244563,27in FHD Monitor,1,149.99,08/29/19 17:06,"275 Elm St, San Francisco, CA 94016" +244564,Apple Airpods Headphones,1,150,08/14/19 19:07,"976 Jackson St, Boston, MA 02215" +244565,Apple Airpods Headphones,1,150,08/07/19 00:43,"689 Adams St, San Francisco, CA 94016" +244566,USB-C Charging Cable,1,11.95,08/27/19 23:04,"735 Hill St, Dallas, TX 75001" +244567,Wired Headphones,1,11.99,08/05/19 18:16,"424 Wilson St, San Francisco, CA 94016" +244568,USB-C Charging Cable,1,11.95,08/18/19 16:42,"64 South St, Los Angeles, CA 90001" +244569,34in Ultrawide Monitor,1,379.99,08/13/19 08:05,"297 4th St, Austin, TX 73301" +244569,USB-C Charging Cable,1,11.95,08/13/19 08:05,"297 4th St, Austin, TX 73301" +244570,Lightning Charging Cable,1,14.95,08/03/19 08:05,"49 9th St, New York City, NY 10001" +244571,Wired Headphones,1,11.99,08/31/19 16:46,"619 Johnson St, Atlanta, GA 30301" +244572,AA Batteries (4-pack),1,3.84,08/07/19 14:26,"268 14th St, Seattle, WA 98101" +244573,Apple Airpods Headphones,1,150,08/20/19 09:51,"479 Pine St, Atlanta, GA 30301" +244574,AA Batteries (4-pack),1,3.84,08/24/19 05:29,"836 8th St, San Francisco, CA 94016" +244575,Bose SoundSport Headphones,1,99.99,08/06/19 15:57,"690 Madison St, San Francisco, CA 94016" +244576,27in 4K Gaming Monitor,1,389.99,08/12/19 19:37,"769 Pine St, San Francisco, CA 94016" +244577,Macbook Pro Laptop,1,1700,08/24/19 09:54,"360 Lakeview St, Los Angeles, CA 90001" +244578,Lightning Charging Cable,1,14.95,08/15/19 10:03,"60 West St, Austin, TX 73301" +244579,AA Batteries (4-pack),2,3.84,08/24/19 22:18,"188 Adams St, Dallas, TX 75001" +244580,Lightning Charging Cable,1,14.95,08/18/19 16:04,"982 Sunset St, San Francisco, CA 94016" +244581,USB-C Charging Cable,2,11.95,08/13/19 11:29,"93 4th St, Los Angeles, CA 90001" +244582,USB-C Charging Cable,1,11.95,08/25/19 22:25,"766 6th St, New York City, NY 10001" +244583,Wired Headphones,1,11.99,08/31/19 21:20,"345 Johnson St, Austin, TX 73301" +244584,27in 4K Gaming Monitor,1,389.99,08/31/19 10:12,"620 Cedar St, Dallas, TX 75001" +244585,AAA Batteries (4-pack),2,2.99,08/05/19 17:04,"124 Hill St, Austin, TX 73301" +244586,Wired Headphones,1,11.99,08/29/19 17:47,"751 Jefferson St, Atlanta, GA 30301" +244587,Bose SoundSport Headphones,1,99.99,08/11/19 22:51,"774 Washington St, Los Angeles, CA 90001" +244588,Macbook Pro Laptop,1,1700,08/16/19 23:30,"425 Ridge St, Portland, OR 97035" +244589,Lightning Charging Cable,1,14.95,08/31/19 23:16,"270 8th St, Los Angeles, CA 90001" +244590,Macbook Pro Laptop,1,1700,08/19/19 15:30,"493 8th St, Boston, MA 02215" +244590,ThinkPad Laptop,1,999.99,08/19/19 15:30,"493 8th St, Boston, MA 02215" +244591,Wired Headphones,1,11.99,08/17/19 14:08,"726 Meadow St, Austin, TX 73301" +244592,Lightning Charging Cable,1,14.95,08/06/19 15:44,"137 12th St, Seattle, WA 98101" +244593,AA Batteries (4-pack),1,3.84,08/15/19 15:51,"389 13th St, San Francisco, CA 94016" +244594,Apple Airpods Headphones,1,150,08/01/19 11:18,"231 West St, Boston, MA 02215" +244595,iPhone,1,700,08/09/19 11:36,"677 Church St, Portland, OR 97035" +244596,Wired Headphones,1,11.99,08/17/19 09:06,"477 Lincoln St, New York City, NY 10001" +244597,iPhone,1,700,08/04/19 11:35,"799 Sunset St, San Francisco, CA 94016" +244598,Lightning Charging Cable,1,14.95,08/12/19 07:09,"204 West St, New York City, NY 10001" +244599,AAA Batteries (4-pack),1,2.99,08/15/19 13:14,"142 Cherry St, New York City, NY 10001" +244600,34in Ultrawide Monitor,1,379.99,08/06/19 19:22,"29 Ridge St, Boston, MA 02215" +244601,Flatscreen TV,1,300,08/26/19 13:00,"307 Dogwood St, San Francisco, CA 94016" +244602,Apple Airpods Headphones,1,150,08/11/19 14:44,"162 Chestnut St, New York City, NY 10001" +244603,AA Batteries (4-pack),1,3.84,08/30/19 13:40,"735 Willow St, San Francisco, CA 94016" +244604,Lightning Charging Cable,1,14.95,08/23/19 09:43,"743 River St, San Francisco, CA 94016" +244605,Flatscreen TV,1,300,08/27/19 15:09,"939 Lakeview St, San Francisco, CA 94016" +244606,Apple Airpods Headphones,1,150,08/18/19 10:06,"216 10th St, San Francisco, CA 94016" +244607,Lightning Charging Cable,1,14.95,08/05/19 10:51,"975 6th St, Boston, MA 02215" +244608,Lightning Charging Cable,1,14.95,08/05/19 13:05,"233 River St, Atlanta, GA 30301" +244609,Apple Airpods Headphones,1,150,08/15/19 21:09,"941 Main St, San Francisco, CA 94016" +244610,Lightning Charging Cable,1,14.95,08/21/19 14:59,"819 Jackson St, Portland, OR 97035" +244611,Bose SoundSport Headphones,1,99.99,08/05/19 19:37,"720 Johnson St, Los Angeles, CA 90001" +244612,AAA Batteries (4-pack),3,2.99,08/20/19 21:16,"370 Lincoln St, Dallas, TX 75001" +244613,Lightning Charging Cable,1,14.95,08/21/19 01:00,"705 9th St, Seattle, WA 98101" +244614,AA Batteries (4-pack),2,3.84,08/22/19 09:24,"888 Cherry St, Atlanta, GA 30301" +244615,iPhone,1,700,08/29/19 10:08,"338 4th St, Los Angeles, CA 90001" +244616,Lightning Charging Cable,2,14.95,08/01/19 15:54,"508 Adams St, Los Angeles, CA 90001" +244617,Flatscreen TV,1,300,08/06/19 00:07,"818 14th St, Seattle, WA 98101" +244618,USB-C Charging Cable,1,11.95,08/06/19 22:19,"454 Willow St, San Francisco, CA 94016" +244619,Google Phone,1,600,08/08/19 17:33,"524 West St, Boston, MA 02215" +244620,Google Phone,1,600,08/18/19 11:58,"114 Maple St, Los Angeles, CA 90001" +244621,Macbook Pro Laptop,1,1700,08/26/19 10:21,"521 Wilson St, New York City, NY 10001" +244622,Apple Airpods Headphones,1,150,08/14/19 22:49,"374 Adams St, Boston, MA 02215" +244623,USB-C Charging Cable,1,11.95,08/21/19 21:02,"751 9th St, Seattle, WA 98101" +244624,34in Ultrawide Monitor,1,379.99,08/15/19 11:08,"770 Adams St, Austin, TX 73301" +244625,Lightning Charging Cable,1,14.95,08/05/19 12:40,"309 Willow St, Atlanta, GA 30301" +244626,AA Batteries (4-pack),2,3.84,08/14/19 14:13,"857 West St, San Francisco, CA 94016" +244627,USB-C Charging Cable,1,11.95,08/18/19 05:16,"235 Willow St, San Francisco, CA 94016" +244628,USB-C Charging Cable,1,11.95,08/11/19 11:48,"533 5th St, Atlanta, GA 30301" +244629,USB-C Charging Cable,1,11.95,08/26/19 12:50,"670 2nd St, Dallas, TX 75001" +244630,27in FHD Monitor,1,149.99,08/07/19 21:11,"735 Johnson St, Boston, MA 02215" +244631,AAA Batteries (4-pack),1,2.99,08/01/19 09:47,"967 5th St, Los Angeles, CA 90001" +244632,AA Batteries (4-pack),1,3.84,08/29/19 01:57,"2 Madison St, New York City, NY 10001" +244633,AAA Batteries (4-pack),1,2.99,08/16/19 22:45,"463 Elm St, Atlanta, GA 30301" +244634,Flatscreen TV,1,300,08/29/19 12:59,"607 Chestnut St, San Francisco, CA 94016" +244635,AA Batteries (4-pack),1,3.84,08/01/19 13:32,"75 5th St, Seattle, WA 98101" +244636,Wired Headphones,1,11.99,08/19/19 23:07,"881 Dogwood St, Austin, TX 73301" +244637,Vareebadd Phone,1,400,08/12/19 19:44,"665 Johnson St, San Francisco, CA 94016" +244637,USB-C Charging Cable,1,11.95,08/12/19 19:44,"665 Johnson St, San Francisco, CA 94016" +244637,Wired Headphones,1,11.99,08/12/19 19:44,"665 Johnson St, San Francisco, CA 94016" +244638,Lightning Charging Cable,1,14.95,08/13/19 11:09,"91 Sunset St, Austin, TX 73301" +244639,27in FHD Monitor,1,149.99,08/16/19 22:48,"161 Jackson St, Portland, OR 97035" +244640,AAA Batteries (4-pack),3,2.99,08/12/19 22:11,"572 5th St, Boston, MA 02215" +244641,Lightning Charging Cable,1,14.95,08/13/19 11:26,"702 10th St, Atlanta, GA 30301" +244642,Bose SoundSport Headphones,1,99.99,08/22/19 14:56,"607 Ridge St, Los Angeles, CA 90001" +244643,Lightning Charging Cable,1,14.95,08/15/19 07:33,"145 Pine St, Los Angeles, CA 90001" +244644,AAA Batteries (4-pack),1,2.99,08/31/19 16:20,"47 Johnson St, San Francisco, CA 94016" +244645,20in Monitor,1,109.99,08/16/19 13:07,"703 7th St, San Francisco, CA 94016" +244646,Bose SoundSport Headphones,1,99.99,08/28/19 22:33,"828 Meadow St, Atlanta, GA 30301" +244647,Wired Headphones,1,11.99,08/10/19 09:32,"108 12th St, Dallas, TX 75001" +244648,USB-C Charging Cable,1,11.95,08/05/19 23:32,"165 Church St, New York City, NY 10001" +244649,34in Ultrawide Monitor,1,379.99,08/13/19 15:04,"642 Center St, Dallas, TX 75001" +244650,Wired Headphones,1,11.99,08/09/19 15:36,"445 Johnson St, Seattle, WA 98101" +244651,Wired Headphones,1,11.99,08/13/19 16:05,"194 Lincoln St, Boston, MA 02215" +244652,Lightning Charging Cable,1,14.95,08/25/19 22:40,"569 Church St, Dallas, TX 75001" +244653,AAA Batteries (4-pack),1,2.99,08/01/19 18:58,"167 12th St, Dallas, TX 75001" +244654,Bose SoundSport Headphones,1,99.99,08/07/19 03:00,"88 North St, Boston, MA 02215" +244655,USB-C Charging Cable,1,11.95,08/13/19 00:33,"601 Meadow St, Dallas, TX 75001" +244656,AA Batteries (4-pack),1,3.84,08/25/19 17:35,"969 Lakeview St, Atlanta, GA 30301" +244657,Apple Airpods Headphones,1,150,08/29/19 14:13,"813 Lake St, Los Angeles, CA 90001" +244658,Apple Airpods Headphones,1,150,08/23/19 09:40,"375 7th St, San Francisco, CA 94016" +244659,Apple Airpods Headphones,1,150,08/06/19 09:29,"352 North St, Austin, TX 73301" +244660,USB-C Charging Cable,1,11.95,08/12/19 16:40,"44 Chestnut St, Atlanta, GA 30301" +244661,Wired Headphones,1,11.99,08/10/19 15:28,"417 Center St, Boston, MA 02215" +244662,AAA Batteries (4-pack),1,2.99,08/23/19 12:00,"707 Cherry St, Los Angeles, CA 90001" +244663,Wired Headphones,1,11.99,08/26/19 00:51,"517 Dogwood St, New York City, NY 10001" +244664,Lightning Charging Cable,1,14.95,08/02/19 20:30,"480 Lake St, Portland, OR 97035" +244665,Apple Airpods Headphones,1,150,08/12/19 09:17,"589 Pine St, Los Angeles, CA 90001" +244666,Bose SoundSport Headphones,1,99.99,08/07/19 15:26,"233 Lincoln St, Boston, MA 02215" +244667,iPhone,1,700,08/18/19 01:17,"601 4th St, Los Angeles, CA 90001" +244668,27in FHD Monitor,1,149.99,08/04/19 17:16,"852 Chestnut St, Seattle, WA 98101" +244669,ThinkPad Laptop,1,999.99,08/03/19 11:25,"653 Willow St, Dallas, TX 75001" +244670,27in FHD Monitor,1,149.99,08/25/19 13:43,"337 8th St, Boston, MA 02215" +244671,Wired Headphones,2,11.99,08/15/19 21:48,"400 Pine St, Boston, MA 02215" +244672,Google Phone,1,600,08/18/19 14:30,"524 Johnson St, Portland, OR 97035" +244673,Bose SoundSport Headphones,1,99.99,08/20/19 20:21,"222 Forest St, San Francisco, CA 94016" +244674,AA Batteries (4-pack),1,3.84,08/04/19 19:59,"197 Jackson St, Portland, OR 97035" +244675,Bose SoundSport Headphones,1,99.99,08/24/19 18:13,"141 6th St, San Francisco, CA 94016" +244676,Lightning Charging Cable,2,14.95,08/18/19 07:29,"655 Church St, Seattle, WA 98101" +244677,Macbook Pro Laptop,1,1700,08/11/19 06:57,"30 1st St, New York City, NY 10001" +244678,Apple Airpods Headphones,1,150,08/16/19 09:58,"318 Meadow St, Atlanta, GA 30301" +244679,Apple Airpods Headphones,1,150,08/15/19 14:46,"309 14th St, New York City, NY 10001" +244680,AAA Batteries (4-pack),5,2.99,08/27/19 12:31,"806 Pine St, New York City, NY 10001" +244681,Bose SoundSport Headphones,1,99.99,08/08/19 11:52,"534 Dogwood St, Los Angeles, CA 90001" +244681,34in Ultrawide Monitor,1,379.99,08/08/19 11:52,"534 Dogwood St, Los Angeles, CA 90001" +244682,Wired Headphones,1,11.99,08/27/19 19:26,"574 Church St, Los Angeles, CA 90001" +244683,Wired Headphones,1,11.99,08/20/19 23:33,"361 7th St, Boston, MA 02215" +244684,AAA Batteries (4-pack),2,2.99,08/30/19 10:55,"445 4th St, Los Angeles, CA 90001" +244685,34in Ultrawide Monitor,1,379.99,08/11/19 20:29,"34 Cherry St, Los Angeles, CA 90001" +244686,Apple Airpods Headphones,1,150,08/08/19 14:31,"999 8th St, Boston, MA 02215" +244687,Apple Airpods Headphones,1,150,08/01/19 22:06,"292 West St, Los Angeles, CA 90001" +244688,Bose SoundSport Headphones,1,99.99,08/15/19 18:14,"679 4th St, San Francisco, CA 94016" +244689,Lightning Charging Cable,2,14.95,08/04/19 17:12,"310 Johnson St, Los Angeles, CA 90001" +244690,27in 4K Gaming Monitor,1,389.99,08/31/19 21:25,"404 Highland St, Atlanta, GA 30301" +244691,AAA Batteries (4-pack),1,2.99,08/31/19 22:41,"488 Highland St, New York City, NY 10001" +244692,Lightning Charging Cable,1,14.95,08/19/19 20:33,"567 Elm St, San Francisco, CA 94016" +244693,Google Phone,1,600,08/20/19 14:08,"49 West St, Atlanta, GA 30301" +244693,Bose SoundSport Headphones,1,99.99,08/20/19 14:08,"49 West St, Atlanta, GA 30301" +,,,,, +244694,Wired Headphones,1,11.99,08/29/19 12:34,"350 Main St, Los Angeles, CA 90001" +244695,LG Dryer,1,600.0,08/15/19 22:07,"314 Jackson St, Los Angeles, CA 90001" +244696,Wired Headphones,1,11.99,08/22/19 11:56,"793 Washington St, Seattle, WA 98101" +244697,34in Ultrawide Monitor,1,379.99,08/07/19 19:55,"413 Dogwood St, Seattle, WA 98101" +244698,USB-C Charging Cable,1,11.95,08/12/19 00:11,"114 Elm St, San Francisco, CA 94016" +244699,AA Batteries (4-pack),1,3.84,08/13/19 12:26,"684 Elm St, Austin, TX 73301" +244700,27in FHD Monitor,1,149.99,08/21/19 13:44,"493 Hickory St, Dallas, TX 75001" +244701,34in Ultrawide Monitor,1,379.99,08/23/19 08:01,"407 Highland St, Atlanta, GA 30301" +244702,USB-C Charging Cable,1,11.95,08/28/19 13:16,"25 Elm St, New York City, NY 10001" +244703,27in FHD Monitor,1,149.99,08/08/19 11:41,"838 Cedar St, New York City, NY 10001" +244704,AAA Batteries (4-pack),1,2.99,08/11/19 17:33,"260 Ridge St, Seattle, WA 98101" +244705,iPhone,1,700,08/04/19 15:41,"908 Main St, Los Angeles, CA 90001" +244706,USB-C Charging Cable,1,11.95,08/19/19 18:18,"844 Johnson St, San Francisco, CA 94016" +244707,AAA Batteries (4-pack),4,2.99,08/06/19 08:03,"532 Hickory St, Boston, MA 02215" +244708,Macbook Pro Laptop,1,1700,08/28/19 23:59,"914 Park St, New York City, NY 10001" +244709,Apple Airpods Headphones,1,150,08/09/19 14:07,"400 Main St, Austin, TX 73301" +244710,Bose SoundSport Headphones,1,99.99,08/26/19 07:50,"100 Washington St, New York City, NY 10001" +244711,USB-C Charging Cable,1,11.95,08/02/19 13:05,"350 Maple St, San Francisco, CA 94016" +244712,USB-C Charging Cable,2,11.95,08/21/19 15:37,"697 Lakeview St, Seattle, WA 98101" +244713,Google Phone,1,600,08/19/19 05:53,"428 Spruce St, San Francisco, CA 94016" +244714,Flatscreen TV,1,300,08/31/19 07:04,"499 Center St, Atlanta, GA 30301" +244715,27in FHD Monitor,1,149.99,08/11/19 12:26,"937 Johnson St, Boston, MA 02215" +244716,Vareebadd Phone,1,400,08/01/19 12:53,"922 12th St, Seattle, WA 98101" +244717,AA Batteries (4-pack),2,3.84,08/09/19 19:45,"615 Sunset St, San Francisco, CA 94016" +244718,USB-C Charging Cable,1,11.95,08/06/19 17:56,"498 Church St, Dallas, TX 75001" +244719,Macbook Pro Laptop,1,1700,08/08/19 08:38,"863 9th St, San Francisco, CA 94016" +244720,27in FHD Monitor,1,149.99,08/21/19 09:34,"20 Washington St, Dallas, TX 75001" +244721,Lightning Charging Cable,1,14.95,08/15/19 09:30,"408 Highland St, San Francisco, CA 94016" +244722,Apple Airpods Headphones,1,150,08/12/19 11:31,"257 10th St, Seattle, WA 98101" +244723,Google Phone,1,600,08/14/19 11:10,"570 1st St, Portland, ME 04101" +244724,Bose SoundSport Headphones,1,99.99,08/28/19 16:15,"232 Jefferson St, Los Angeles, CA 90001" +244725,AA Batteries (4-pack),1,3.84,08/20/19 10:31,"870 Hill St, Dallas, TX 75001" +244726,AA Batteries (4-pack),1,3.84,08/10/19 18:20,"620 Cedar St, Portland, OR 97035" +244727,AA Batteries (4-pack),1,3.84,08/07/19 20:55,"244 Lincoln St, Austin, TX 73301" +244728,27in FHD Monitor,1,149.99,08/20/19 13:45,"155 Washington St, San Francisco, CA 94016" +244729,USB-C Charging Cable,1,11.95,08/04/19 22:31,"465 Lakeview St, Los Angeles, CA 90001" +244730,Apple Airpods Headphones,1,150,08/11/19 19:16,"900 Main St, Los Angeles, CA 90001" +244731,27in 4K Gaming Monitor,1,389.99,08/24/19 07:15,"143 West St, Atlanta, GA 30301" +244732,AA Batteries (4-pack),1,3.84,08/01/19 07:16,"58 Jackson St, Seattle, WA 98101" +244733,AAA Batteries (4-pack),1,2.99,08/31/19 16:27,"645 Sunset St, San Francisco, CA 94016" +244734,Bose SoundSport Headphones,1,99.99,08/14/19 20:08,"631 13th St, Los Angeles, CA 90001" +244735,Apple Airpods Headphones,1,150,08/31/19 13:42,"61 13th St, New York City, NY 10001" +244736,Lightning Charging Cable,3,14.95,08/21/19 18:29,"109 Lakeview St, San Francisco, CA 94016" +244737,USB-C Charging Cable,1,11.95,08/18/19 12:53,"568 Cherry St, San Francisco, CA 94016" +244738,Lightning Charging Cable,2,14.95,09/01/19 00:21,"320 Adams St, Austin, TX 73301" +244739,USB-C Charging Cable,2,11.95,08/18/19 22:09,"361 Madison St, New York City, NY 10001" +244740,Wired Headphones,2,11.99,08/01/19 22:39,"505 Hickory St, San Francisco, CA 94016" +244741,LG Dryer,1,600.0,08/02/19 16:04,"402 6th St, Austin, TX 73301" +244741,20in Monitor,1,109.99,08/02/19 16:04,"402 6th St, Austin, TX 73301" +244742,27in FHD Monitor,1,149.99,08/24/19 08:05,"473 Lake St, San Francisco, CA 94016" +244743,AA Batteries (4-pack),1,3.84,08/10/19 10:33,"125 Adams St, New York City, NY 10001" +244744,27in FHD Monitor,1,149.99,08/07/19 03:29,"260 12th St, Los Angeles, CA 90001" +244745,iPhone,1,700,08/18/19 02:06,"938 2nd St, Atlanta, GA 30301" +244746,USB-C Charging Cable,1,11.95,08/30/19 20:34,"725 Sunset St, Dallas, TX 75001" +244747,Lightning Charging Cable,1,14.95,08/17/19 07:32,"170 10th St, Los Angeles, CA 90001" +244748,Lightning Charging Cable,1,14.95,08/01/19 17:48,"179 Jackson St, Los Angeles, CA 90001" +244749,34in Ultrawide Monitor,1,379.99,08/02/19 13:07,"651 Jefferson St, San Francisco, CA 94016" +244750,iPhone,1,700,08/04/19 19:33,"230 Wilson St, Los Angeles, CA 90001" +244751,iPhone,1,700,08/02/19 17:59,"91 Lakeview St, San Francisco, CA 94016" +244752,Flatscreen TV,1,300,08/09/19 15:13,"143 6th St, San Francisco, CA 94016" +244753,USB-C Charging Cable,1,11.95,08/14/19 14:04,"674 Hill St, Atlanta, GA 30301" +244754,AAA Batteries (4-pack),2,2.99,08/20/19 19:16,"699 Center St, New York City, NY 10001" +244755,Bose SoundSport Headphones,1,99.99,08/20/19 22:26,"216 Pine St, Los Angeles, CA 90001" +244756,Bose SoundSport Headphones,1,99.99,08/17/19 17:21,"432 Hill St, New York City, NY 10001" +244757,27in FHD Monitor,1,149.99,08/18/19 09:11,"599 Forest St, Atlanta, GA 30301" +244758,iPhone,1,700,08/30/19 22:52,"280 Willow St, Los Angeles, CA 90001" +244759,AAA Batteries (4-pack),2,2.99,08/15/19 14:53,"6 Lake St, San Francisco, CA 94016" +244760,Apple Airpods Headphones,1,150,08/09/19 09:17,"610 Ridge St, New York City, NY 10001" +244761,AA Batteries (4-pack),1,3.84,08/21/19 14:23,"212 2nd St, Los Angeles, CA 90001" +244762,27in 4K Gaming Monitor,1,389.99,08/27/19 19:05,"474 Forest St, Portland, OR 97035" +244763,Macbook Pro Laptop,1,1700,08/24/19 13:39,"607 9th St, Seattle, WA 98101" +244764,Apple Airpods Headphones,1,150,08/31/19 20:54,"906 Lake St, Portland, ME 04101" +244765,Google Phone,1,600,08/21/19 12:26,"590 Cedar St, New York City, NY 10001" +244766,Wired Headphones,1,11.99,08/20/19 21:44,"678 Spruce St, Los Angeles, CA 90001" +244767,AAA Batteries (4-pack),1,2.99,08/14/19 21:27,"913 12th St, Boston, MA 02215" +244768,AA Batteries (4-pack),4,3.84,08/08/19 13:59,"84 Park St, Boston, MA 02215" +244769,Lightning Charging Cable,1,14.95,08/31/19 00:01,"118 Madison St, Los Angeles, CA 90001" +244769,USB-C Charging Cable,1,11.95,08/31/19 00:01,"118 Madison St, Los Angeles, CA 90001" +244770,Wired Headphones,1,11.99,08/12/19 13:05,"467 Spruce St, New York City, NY 10001" +244771,iPhone,1,700,08/24/19 08:26,"565 Jefferson St, Dallas, TX 75001" +244772,Lightning Charging Cable,1,14.95,08/12/19 16:38,"85 4th St, Austin, TX 73301" +244773,Apple Airpods Headphones,1,150,08/20/19 10:13,"372 Lakeview St, San Francisco, CA 94016" +244774,USB-C Charging Cable,1,11.95,08/06/19 23:09,"308 14th St, San Francisco, CA 94016" +244775,AA Batteries (4-pack),1,3.84,08/25/19 19:22,"266 Ridge St, Boston, MA 02215" +244776,AAA Batteries (4-pack),1,2.99,08/27/19 11:29,"994 6th St, Seattle, WA 98101" +244776,USB-C Charging Cable,1,11.95,08/27/19 11:29,"994 6th St, Seattle, WA 98101" +244777,Google Phone,1,600,08/26/19 23:51,"231 Willow St, San Francisco, CA 94016" +244777,Bose SoundSport Headphones,1,99.99,08/26/19 23:51,"231 Willow St, San Francisco, CA 94016" +244778,Macbook Pro Laptop,1,1700,08/21/19 17:14,"152 Johnson St, New York City, NY 10001" +244779,Flatscreen TV,1,300,08/22/19 21:22,"573 Jefferson St, New York City, NY 10001" +244780,Bose SoundSport Headphones,1,99.99,08/29/19 14:15,"684 North St, San Francisco, CA 94016" +244781,USB-C Charging Cable,1,11.95,08/15/19 18:17,"883 Park St, Dallas, TX 75001" +244782,AAA Batteries (4-pack),1,2.99,08/11/19 20:58,"588 Hickory St, Dallas, TX 75001" +244783,34in Ultrawide Monitor,1,379.99,08/26/19 20:03,"256 Hickory St, Austin, TX 73301" +244784,USB-C Charging Cable,1,11.95,08/22/19 20:32,"838 Highland St, Boston, MA 02215" +244785,Lightning Charging Cable,1,14.95,08/28/19 23:42,"293 Cedar St, San Francisco, CA 94016" +244786,34in Ultrawide Monitor,1,379.99,08/31/19 21:34,"409 Elm St, Los Angeles, CA 90001" +244787,Wired Headphones,1,11.99,08/08/19 14:39,"248 Willow St, Boston, MA 02215" +244788,iPhone,1,700,08/13/19 19:29,"59 Forest St, San Francisco, CA 94016" +244789,AA Batteries (4-pack),1,3.84,08/09/19 16:09,"649 2nd St, Dallas, TX 75001" +244790,34in Ultrawide Monitor,1,379.99,08/12/19 16:28,"344 Spruce St, Los Angeles, CA 90001" +244791,Apple Airpods Headphones,1,150,08/21/19 21:30,"37 Spruce St, Seattle, WA 98101" +244792,Lightning Charging Cable,1,14.95,08/07/19 11:44,"155 Madison St, New York City, NY 10001" +244793,AA Batteries (4-pack),1,3.84,08/27/19 18:54,"674 12th St, San Francisco, CA 94016" +244794,AA Batteries (4-pack),1,3.84,08/04/19 20:21,"142 Forest St, Portland, OR 97035" +244795,USB-C Charging Cable,1,11.95,08/08/19 14:06,"339 Center St, New York City, NY 10001" +244796,iPhone,1,700,08/06/19 15:24,"676 1st St, Boston, MA 02215" +244797,Bose SoundSport Headphones,1,99.99,08/22/19 10:39,"529 5th St, Los Angeles, CA 90001" +244798,27in 4K Gaming Monitor,1,389.99,08/01/19 07:43,"305 Meadow St, San Francisco, CA 94016" +244799,USB-C Charging Cable,1,11.95,08/23/19 21:57,"441 4th St, San Francisco, CA 94016" +244800,Apple Airpods Headphones,1,150,08/12/19 09:19,"450 South St, Los Angeles, CA 90001" +244800,Lightning Charging Cable,1,14.95,08/12/19 09:19,"450 South St, Los Angeles, CA 90001" +244801,27in FHD Monitor,1,149.99,08/21/19 16:11,"949 Johnson St, San Francisco, CA 94016" +244802,Lightning Charging Cable,1,14.95,08/09/19 16:16,"157 Willow St, New York City, NY 10001" +244803,Bose SoundSport Headphones,1,99.99,08/17/19 00:36,"442 Johnson St, Austin, TX 73301" +244804,27in FHD Monitor,1,149.99,08/15/19 11:26,"550 Cedar St, Portland, OR 97035" +244805,AAA Batteries (4-pack),2,2.99,08/01/19 11:59,"981 6th St, San Francisco, CA 94016" +244806,Lightning Charging Cable,1,14.95,08/01/19 13:19,"360 11th St, Austin, TX 73301" +244807,Bose SoundSport Headphones,1,99.99,08/02/19 13:54,"316 13th St, New York City, NY 10001" +244808,AA Batteries (4-pack),2,3.84,08/07/19 10:38,"563 South St, New York City, NY 10001" +244809,USB-C Charging Cable,1,11.95,08/04/19 13:05,"64 Maple St, Seattle, WA 98101" +244810,AAA Batteries (4-pack),1,2.99,08/06/19 09:49,"412 Church St, Dallas, TX 75001" +244811,Lightning Charging Cable,1,14.95,08/07/19 17:23,"461 9th St, Portland, OR 97035" +244812,Apple Airpods Headphones,1,150,08/10/19 10:22,"325 South St, Seattle, WA 98101" +244813,Wired Headphones,2,11.99,08/23/19 07:15,"341 Washington St, Seattle, WA 98101" +244814,Wired Headphones,1,11.99,08/19/19 23:26,"56 11th St, Los Angeles, CA 90001" +244815,Apple Airpods Headphones,1,150,08/06/19 07:26,"442 Church St, Atlanta, GA 30301" +244816,AAA Batteries (4-pack),2,2.99,08/02/19 21:47,"862 7th St, San Francisco, CA 94016" +244817,AAA Batteries (4-pack),1,2.99,08/20/19 04:27,"146 Washington St, San Francisco, CA 94016" +244818,AA Batteries (4-pack),1,3.84,08/25/19 12:27,"738 Washington St, Dallas, TX 75001" +244819,AA Batteries (4-pack),1,3.84,08/12/19 19:23,"903 Meadow St, San Francisco, CA 94016" +244820,AA Batteries (4-pack),2,3.84,08/02/19 16:48,"220 Meadow St, San Francisco, CA 94016" +244821,Lightning Charging Cable,1,14.95,08/11/19 18:15,"236 Forest St, Seattle, WA 98101" +244822,Apple Airpods Headphones,1,150,08/04/19 08:49,"437 Dogwood St, Boston, MA 02215" +244823,AAA Batteries (4-pack),1,2.99,08/14/19 09:58,"652 Johnson St, Los Angeles, CA 90001" +244824,iPhone,1,700,08/29/19 15:02,"713 Walnut St, Boston, MA 02215" +244825,Wired Headphones,1,11.99,08/26/19 10:49,"122 West St, Seattle, WA 98101" +244826,iPhone,1,700,08/21/19 14:36,"993 Sunset St, Austin, TX 73301" +244826,Apple Airpods Headphones,1,150,08/21/19 14:36,"993 Sunset St, Austin, TX 73301" +244827,Wired Headphones,1,11.99,08/30/19 12:04,"152 Pine St, San Francisco, CA 94016" +244828,34in Ultrawide Monitor,1,379.99,08/08/19 17:06,"855 10th St, Portland, OR 97035" +244829,20in Monitor,1,109.99,08/18/19 00:39,"55 11th St, Boston, MA 02215" +244830,Lightning Charging Cable,1,14.95,08/17/19 07:57,"997 4th St, Los Angeles, CA 90001" +244831,Lightning Charging Cable,1,14.95,08/04/19 17:04,"160 5th St, San Francisco, CA 94016" +244832,USB-C Charging Cable,1,11.95,08/05/19 22:08,"209 Spruce St, Boston, MA 02215" +244833,27in FHD Monitor,1,149.99,08/27/19 18:35,"612 4th St, San Francisco, CA 94016" +244834,Wired Headphones,1,11.99,08/22/19 21:29,"120 Hill St, Los Angeles, CA 90001" +244835,Flatscreen TV,1,300,08/17/19 19:29,"491 Hill St, San Francisco, CA 94016" +244836,Wired Headphones,1,11.99,08/09/19 13:01,"552 Hickory St, San Francisco, CA 94016" +244837,USB-C Charging Cable,1,11.95,08/26/19 20:51,"282 Cherry St, San Francisco, CA 94016" +244838,AA Batteries (4-pack),1,3.84,08/14/19 09:43,"529 Adams St, Los Angeles, CA 90001" +244839,Bose SoundSport Headphones,1,99.99,08/11/19 20:57,"75 Jefferson St, Portland, OR 97035" +244840,Wired Headphones,1,11.99,08/28/19 19:44,"816 Lakeview St, Atlanta, GA 30301" +244841,USB-C Charging Cable,1,11.95,08/29/19 21:26,"863 Spruce St, Portland, OR 97035" +244842,USB-C Charging Cable,1,11.95,08/14/19 19:48,"659 West St, San Francisco, CA 94016" +244842,Macbook Pro Laptop,1,1700,08/14/19 19:48,"659 West St, San Francisco, CA 94016" +244843,AA Batteries (4-pack),1,3.84,08/16/19 11:00,"873 Cherry St, Boston, MA 02215" +244844,34in Ultrawide Monitor,1,379.99,08/05/19 20:00,"84 1st St, Boston, MA 02215" +244845,Bose SoundSport Headphones,1,99.99,08/04/19 18:35,"713 West St, Dallas, TX 75001" +244846,Apple Airpods Headphones,1,150,08/13/19 17:32,"483 Main St, New York City, NY 10001" +244847,Google Phone,1,600,08/10/19 16:49,"692 North St, Portland, OR 97035" +244848,Apple Airpods Headphones,1,150,08/21/19 16:56,"307 Hill St, Portland, OR 97035" +244849,AA Batteries (4-pack),2,3.84,08/20/19 10:10,"64 North St, Atlanta, GA 30301" +244850,34in Ultrawide Monitor,1,379.99,08/23/19 19:43,"691 Church St, New York City, NY 10001" +244851,AA Batteries (4-pack),2,3.84,08/17/19 22:00,"685 12th St, San Francisco, CA 94016" +244852,Bose SoundSport Headphones,1,99.99,08/11/19 17:20,"282 Johnson St, Atlanta, GA 30301" +244853,Lightning Charging Cable,1,14.95,08/31/19 12:58,"520 North St, New York City, NY 10001" +244854,27in 4K Gaming Monitor,1,389.99,08/30/19 12:50,"336 Walnut St, San Francisco, CA 94016" +244855,Bose SoundSport Headphones,1,99.99,08/21/19 13:03,"635 River St, Atlanta, GA 30301" +244856,27in FHD Monitor,1,149.99,08/14/19 23:03,"783 Chestnut St, Los Angeles, CA 90001" +244857,Wired Headphones,1,11.99,08/31/19 15:42,"455 2nd St, Boston, MA 02215" +244858,AA Batteries (4-pack),4,3.84,08/14/19 20:57,"950 12th St, New York City, NY 10001" +244859,27in FHD Monitor,1,149.99,08/05/19 15:44,"582 Lake St, New York City, NY 10001" +244860,Flatscreen TV,1,300,08/23/19 15:52,"823 West St, New York City, NY 10001" +244861,AAA Batteries (4-pack),2,2.99,08/04/19 09:13,"716 7th St, New York City, NY 10001" +244862,Bose SoundSport Headphones,1,99.99,08/27/19 18:02,"492 6th St, Los Angeles, CA 90001" +244863,Bose SoundSport Headphones,1,99.99,08/09/19 20:41,"861 Hickory St, Los Angeles, CA 90001" +244864,Macbook Pro Laptop,1,1700,08/05/19 01:25,"304 Forest St, Atlanta, GA 30301" +244865,USB-C Charging Cable,1,11.95,08/16/19 10:52,"80 2nd St, New York City, NY 10001" +244866,iPhone,1,700,08/16/19 19:40,"743 Jackson St, San Francisco, CA 94016" +244867,Lightning Charging Cable,1,14.95,08/04/19 18:54,"270 Forest St, Seattle, WA 98101" +244868,Lightning Charging Cable,1,14.95,08/25/19 13:42,"40 10th St, Los Angeles, CA 90001" +244869,AA Batteries (4-pack),1,3.84,08/29/19 11:17,"793 Hill St, Austin, TX 73301" +244870,AA Batteries (4-pack),5,3.84,08/20/19 08:44,"344 Lake St, San Francisco, CA 94016" +244871,34in Ultrawide Monitor,1,379.99,08/29/19 17:38,"368 Highland St, Los Angeles, CA 90001" +244872,AA Batteries (4-pack),1,3.84,08/14/19 08:38,"337 Meadow St, Atlanta, GA 30301" +244873,AA Batteries (4-pack),1,3.84,08/24/19 10:40,"433 13th St, Los Angeles, CA 90001" +244874,AAA Batteries (4-pack),2,2.99,08/09/19 20:20,"249 Willow St, Atlanta, GA 30301" +244875,AA Batteries (4-pack),2,3.84,08/10/19 19:58,"629 Walnut St, Dallas, TX 75001" +244876,AAA Batteries (4-pack),1,2.99,08/22/19 10:59,"622 South St, San Francisco, CA 94016" +244877,Lightning Charging Cable,1,14.95,08/01/19 10:26,"532 12th St, Boston, MA 02215" +244878,Apple Airpods Headphones,1,150,08/18/19 15:49,"383 Jackson St, San Francisco, CA 94016" +244879,AA Batteries (4-pack),1,3.84,08/17/19 15:51,"953 10th St, Seattle, WA 98101" +244880,Lightning Charging Cable,1,14.95,08/08/19 11:28,"786 Highland St, New York City, NY 10001" +244881,AAA Batteries (4-pack),1,2.99,08/31/19 21:33,"883 Chestnut St, Portland, OR 97035" +244882,Lightning Charging Cable,1,14.95,08/04/19 01:01,"175 North St, Portland, OR 97035" +244883,27in 4K Gaming Monitor,1,389.99,08/07/19 17:14,"871 2nd St, San Francisco, CA 94016" +244884,34in Ultrawide Monitor,1,379.99,08/27/19 17:57,"472 South St, Atlanta, GA 30301" +244885,LG Washing Machine,1,600.0,08/04/19 01:35,"897 Jackson St, Dallas, TX 75001" +244886,Lightning Charging Cable,1,14.95,08/14/19 20:41,"581 Center St, New York City, NY 10001" +244887,AA Batteries (4-pack),2,3.84,08/06/19 13:35,"784 Johnson St, Boston, MA 02215" +244887,Lightning Charging Cable,1,14.95,08/06/19 13:35,"784 Johnson St, Boston, MA 02215" +244888,Flatscreen TV,1,300,08/25/19 14:00,"946 2nd St, San Francisco, CA 94016" +244889,Apple Airpods Headphones,1,150,08/06/19 21:43,"517 Wilson St, Los Angeles, CA 90001" +244890,USB-C Charging Cable,2,11.95,08/12/19 11:05,"888 Willow St, Portland, OR 97035" +244891,34in Ultrawide Monitor,1,379.99,08/25/19 20:12,"594 Chestnut St, San Francisco, CA 94016" +244892,Lightning Charging Cable,1,14.95,08/04/19 00:35,"595 Pine St, New York City, NY 10001" +244893,AA Batteries (4-pack),1,3.84,08/22/19 10:16,"443 Johnson St, Boston, MA 02215" +244894,Wired Headphones,1,11.99,08/22/19 21:18,"420 Maple St, Boston, MA 02215" +244895,Lightning Charging Cable,1,14.95,08/11/19 11:30,"133 Ridge St, New York City, NY 10001" +244896,34in Ultrawide Monitor,1,379.99,08/11/19 14:13,"682 Pine St, Portland, OR 97035" +244897,USB-C Charging Cable,1,11.95,08/25/19 17:51,"857 Cherry St, Austin, TX 73301" +244898,Lightning Charging Cable,1,14.95,08/13/19 19:56,"676 Adams St, San Francisco, CA 94016" +244899,Apple Airpods Headphones,1,150,08/14/19 10:42,"148 Hill St, Los Angeles, CA 90001" +244900,34in Ultrawide Monitor,1,379.99,08/26/19 13:21,"577 River St, Austin, TX 73301" +244901,Bose SoundSport Headphones,1,99.99,08/07/19 21:48,"401 8th St, Los Angeles, CA 90001" +244902,AA Batteries (4-pack),2,3.84,08/02/19 15:32,"122 Forest St, Atlanta, GA 30301" +244903,27in FHD Monitor,1,149.99,08/02/19 21:45,"747 Wilson St, Austin, TX 73301" +244904,AAA Batteries (4-pack),3,2.99,08/22/19 11:57,"269 Adams St, New York City, NY 10001" +244905,USB-C Charging Cable,1,11.95,08/06/19 16:06,"851 Church St, Los Angeles, CA 90001" +244906,20in Monitor,1,109.99,08/07/19 09:33,"958 Center St, San Francisco, CA 94016" +244907,AAA Batteries (4-pack),1,2.99,08/01/19 10:52,"963 Spruce St, Dallas, TX 75001" +244908,Lightning Charging Cable,1,14.95,08/06/19 22:58,"12 Dogwood St, Los Angeles, CA 90001" +244909,Bose SoundSport Headphones,1,99.99,08/05/19 04:33,"268 Church St, San Francisco, CA 94016" +244910,AA Batteries (4-pack),1,3.84,08/25/19 10:12,"757 Maple St, San Francisco, CA 94016" +244911,27in FHD Monitor,2,149.99,08/24/19 17:52,"983 Madison St, Los Angeles, CA 90001" +244911,AA Batteries (4-pack),1,3.84,08/24/19 17:52,"983 Madison St, Los Angeles, CA 90001" +244912,iPhone,1,700,08/27/19 18:18,"760 Jefferson St, Seattle, WA 98101" +244913,20in Monitor,1,109.99,08/04/19 21:03,"680 Walnut St, Seattle, WA 98101" +244914,Bose SoundSport Headphones,1,99.99,08/17/19 17:29,"768 Main St, San Francisco, CA 94016" +244915,USB-C Charging Cable,2,11.95,08/09/19 12:23,"604 Meadow St, San Francisco, CA 94016" +244916,USB-C Charging Cable,1,11.95,08/01/19 18:24,"84 Cedar St, New York City, NY 10001" +244917,Macbook Pro Laptop,1,1700,08/05/19 18:35,"465 Cedar St, Los Angeles, CA 90001" +244918,Bose SoundSport Headphones,1,99.99,08/14/19 06:25,"288 4th St, Portland, OR 97035" +244919,AA Batteries (4-pack),1,3.84,08/04/19 11:52,"698 Center St, Atlanta, GA 30301" +244920,ThinkPad Laptop,1,999.99,08/02/19 00:25,"335 Center St, San Francisco, CA 94016" +244921,Bose SoundSport Headphones,1,99.99,08/06/19 07:00,"80 Forest St, Atlanta, GA 30301" +244922,27in FHD Monitor,1,149.99,08/20/19 09:55,"511 South St, New York City, NY 10001" +244923,USB-C Charging Cable,1,11.95,08/30/19 13:57,"925 Walnut St, San Francisco, CA 94016" +244924,AA Batteries (4-pack),1,3.84,08/14/19 13:40,"412 Hill St, New York City, NY 10001" +244925,USB-C Charging Cable,1,11.95,08/15/19 14:21,"101 Elm St, Boston, MA 02215" +,,,,, +244926,iPhone,1,700,08/21/19 19:06,"545 10th St, Dallas, TX 75001" +244927,AAA Batteries (4-pack),1,2.99,08/23/19 19:36,"432 12th St, Austin, TX 73301" +244928,AA Batteries (4-pack),1,3.84,08/14/19 19:36,"461 Hill St, Seattle, WA 98101" +244929,20in Monitor,1,109.99,08/04/19 12:05,"306 Hickory St, Austin, TX 73301" +244930,AA Batteries (4-pack),1,3.84,08/22/19 14:54,"485 13th St, New York City, NY 10001" +244931,34in Ultrawide Monitor,1,379.99,08/03/19 19:26,"450 Chestnut St, Seattle, WA 98101" +244932,Google Phone,1,600,08/19/19 14:29,"693 11th St, Seattle, WA 98101" +244933,Apple Airpods Headphones,1,150,08/16/19 16:50,"37 Adams St, San Francisco, CA 94016" +244934,AAA Batteries (4-pack),2,2.99,08/29/19 13:49,"956 West St, Los Angeles, CA 90001" +244935,34in Ultrawide Monitor,1,379.99,08/13/19 12:57,"32 Ridge St, Dallas, TX 75001" +244936,iPhone,1,700,08/18/19 22:46,"36 9th St, Boston, MA 02215" +244937,Macbook Pro Laptop,1,1700,08/30/19 19:15,"45 Center St, Boston, MA 02215" +244938,Macbook Pro Laptop,1,1700,08/18/19 10:59,"539 Hickory St, New York City, NY 10001" +244939,Lightning Charging Cable,1,14.95,08/11/19 18:52,"78 Maple St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +244940,Wired Headphones,1,11.99,08/16/19 22:06,"644 Highland St, Atlanta, GA 30301" +244941,AA Batteries (4-pack),1,3.84,08/18/19 16:32,"966 11th St, Los Angeles, CA 90001" +244942,Apple Airpods Headphones,1,150,08/06/19 17:41,"995 River St, Austin, TX 73301" +244943,AAA Batteries (4-pack),1,2.99,08/23/19 13:20,"480 Maple St, Boston, MA 02215" +244944,iPhone,1,700,08/28/19 18:21,"113 Lake St, San Francisco, CA 94016" +244945,Apple Airpods Headphones,1,150,08/01/19 09:39,"269 River St, Boston, MA 02215" +244946,Wired Headphones,1,11.99,08/30/19 14:04,"647 Park St, Los Angeles, CA 90001" +244947,27in 4K Gaming Monitor,1,389.99,08/09/19 14:54,"759 River St, Dallas, TX 75001" +244948,Macbook Pro Laptop,1,1700,08/12/19 11:43,"297 6th St, Dallas, TX 75001" +244949,iPhone,1,700,08/19/19 17:31,"575 13th St, San Francisco, CA 94016" +244950,Lightning Charging Cable,1,14.95,08/12/19 17:30,"93 1st St, New York City, NY 10001" +244951,Lightning Charging Cable,1,14.95,08/04/19 12:42,"89 6th St, Austin, TX 73301" +244952,Apple Airpods Headphones,1,150,08/10/19 11:10,"690 4th St, Dallas, TX 75001" +244953,Google Phone,1,600,08/17/19 16:22,"672 Hickory St, Dallas, TX 75001" +244954,Google Phone,1,600,08/11/19 16:34,"44 Meadow St, San Francisco, CA 94016" +244955,iPhone,1,700,08/20/19 01:48,"652 Walnut St, Portland, OR 97035" +244956,Lightning Charging Cable,1,14.95,08/03/19 10:41,"242 Jefferson St, San Francisco, CA 94016" +244957,ThinkPad Laptop,1,999.99,08/11/19 18:03,"777 Jefferson St, Los Angeles, CA 90001" +244958,iPhone,1,700,08/08/19 17:34,"444 West St, Dallas, TX 75001" +244959,USB-C Charging Cable,1,11.95,08/05/19 11:20,"707 12th St, Dallas, TX 75001" +244960,Wired Headphones,1,11.99,08/26/19 16:54,"331 5th St, Seattle, WA 98101" +244961,Wired Headphones,1,11.99,08/11/19 21:00,"458 6th St, Seattle, WA 98101" +244962,USB-C Charging Cable,1,11.95,08/09/19 10:31,"741 Hickory St, Los Angeles, CA 90001" +244963,Wired Headphones,1,11.99,08/15/19 21:11,"583 Madison St, New York City, NY 10001" +244964,34in Ultrawide Monitor,1,379.99,08/09/19 18:21,"993 2nd St, Dallas, TX 75001" +244965,AAA Batteries (4-pack),4,2.99,08/04/19 11:48,"343 13th St, Boston, MA 02215" +244966,AA Batteries (4-pack),1,3.84,08/26/19 15:08,"225 Madison St, Boston, MA 02215" +244967,AA Batteries (4-pack),1,3.84,08/20/19 12:40,"312 2nd St, San Francisco, CA 94016" +244968,Lightning Charging Cable,1,14.95,08/16/19 08:23,"462 Lincoln St, Austin, TX 73301" +244969,USB-C Charging Cable,1,11.95,08/05/19 21:23,"354 Forest St, San Francisco, CA 94016" +244970,AA Batteries (4-pack),1,3.84,08/11/19 12:24,"723 Meadow St, New York City, NY 10001" +244971,USB-C Charging Cable,1,11.95,08/22/19 22:23,"584 Johnson St, Atlanta, GA 30301" +244972,Lightning Charging Cable,1,14.95,08/09/19 20:38,"449 Washington St, San Francisco, CA 94016" +244973,Apple Airpods Headphones,1,150,08/28/19 23:40,"461 10th St, New York City, NY 10001" +244974,Wired Headphones,1,11.99,08/27/19 12:04,"678 14th St, Dallas, TX 75001" +244975,AA Batteries (4-pack),1,3.84,08/02/19 10:06,"526 Jackson St, San Francisco, CA 94016" +244976,Macbook Pro Laptop,1,1700,08/02/19 22:42,"446 Main St, Los Angeles, CA 90001" +244977,USB-C Charging Cable,1,11.95,08/23/19 20:36,"102 Cedar St, San Francisco, CA 94016" +244978,USB-C Charging Cable,1,11.95,08/27/19 08:07,"359 Dogwood St, Atlanta, GA 30301" +244979,AAA Batteries (4-pack),1,2.99,08/23/19 11:03,"555 13th St, Los Angeles, CA 90001" +244980,27in FHD Monitor,1,149.99,08/13/19 21:01,"485 4th St, New York City, NY 10001" +244981,AAA Batteries (4-pack),1,2.99,08/31/19 10:09,"293 11th St, Seattle, WA 98101" +244982,AAA Batteries (4-pack),1,2.99,08/23/19 16:42,"872 8th St, New York City, NY 10001" +244983,AAA Batteries (4-pack),1,2.99,08/29/19 11:11,"37 Washington St, Boston, MA 02215" +244984,Vareebadd Phone,1,400,08/08/19 12:09,"614 Adams St, Seattle, WA 98101" +244985,USB-C Charging Cable,1,11.95,08/07/19 15:04,"64 Pine St, Atlanta, GA 30301" +244986,LG Washing Machine,1,600.0,08/20/19 21:22,"626 7th St, San Francisco, CA 94016" +244987,AAA Batteries (4-pack),1,2.99,08/29/19 09:40,"124 Hickory St, Atlanta, GA 30301" +244988,AAA Batteries (4-pack),1,2.99,08/11/19 18:02,"312 Washington St, Austin, TX 73301" +244989,Bose SoundSport Headphones,1,99.99,08/29/19 13:27,"234 1st St, Los Angeles, CA 90001" +244990,USB-C Charging Cable,1,11.95,08/22/19 17:02,"886 Center St, Los Angeles, CA 90001" +244991,iPhone,1,700,08/13/19 12:04,"698 Lincoln St, Atlanta, GA 30301" +244992,Apple Airpods Headphones,1,150,08/03/19 15:50,"802 Walnut St, Los Angeles, CA 90001" +244993,Wired Headphones,2,11.99,08/22/19 00:49,"224 Elm St, San Francisco, CA 94016" +244994,Lightning Charging Cable,1,14.95,08/18/19 14:26,"214 13th St, Los Angeles, CA 90001" +244995,Bose SoundSport Headphones,1,99.99,08/11/19 12:40,"344 Chestnut St, Atlanta, GA 30301" +244996,20in Monitor,1,109.99,08/17/19 09:12,"56 Elm St, Boston, MA 02215" +244997,Bose SoundSport Headphones,1,99.99,08/15/19 09:13,"845 Hickory St, New York City, NY 10001" +244997,AAA Batteries (4-pack),4,2.99,08/15/19 09:13,"845 Hickory St, New York City, NY 10001" +244998,34in Ultrawide Monitor,1,379.99,08/06/19 14:03,"64 Maple St, Los Angeles, CA 90001" +244999,Macbook Pro Laptop,1,1700,08/26/19 18:32,"225 Willow St, Portland, OR 97035" +245000,USB-C Charging Cable,2,11.95,08/22/19 19:23,"305 North St, Los Angeles, CA 90001" +245001,Apple Airpods Headphones,1,150,08/04/19 06:38,"621 Walnut St, Dallas, TX 75001" +245002,Lightning Charging Cable,1,14.95,08/05/19 11:15,"351 North St, San Francisco, CA 94016" +245003,USB-C Charging Cable,1,11.95,08/27/19 08:53,"205 Church St, Austin, TX 73301" +245004,Macbook Pro Laptop,1,1700,08/06/19 12:00,"386 Meadow St, Seattle, WA 98101" +245005,Lightning Charging Cable,1,14.95,08/22/19 02:39,"284 Dogwood St, Los Angeles, CA 90001" +245005,AAA Batteries (4-pack),3,2.99,08/22/19 02:39,"284 Dogwood St, Los Angeles, CA 90001" +245006,Lightning Charging Cable,1,14.95,08/18/19 19:34,"855 Park St, Los Angeles, CA 90001" +245007,iPhone,1,700,08/24/19 10:37,"594 9th St, New York City, NY 10001" +245007,Wired Headphones,2,11.99,08/24/19 10:37,"594 9th St, New York City, NY 10001" +245008,AA Batteries (4-pack),1,3.84,08/23/19 18:17,"761 Sunset St, New York City, NY 10001" +245009,Apple Airpods Headphones,1,150,08/03/19 00:09,"991 Lakeview St, Los Angeles, CA 90001" +245010,Apple Airpods Headphones,1,150,08/07/19 14:21,"802 Park St, Los Angeles, CA 90001" +245011,20in Monitor,1,109.99,08/21/19 20:04,"923 4th St, Los Angeles, CA 90001" +245012,AAA Batteries (4-pack),1,2.99,08/19/19 09:08,"359 14th St, San Francisco, CA 94016" +245013,LG Dryer,1,600.0,08/29/19 19:31,"247 8th St, New York City, NY 10001" +245014,Wired Headphones,1,11.99,08/28/19 07:10,"762 Jackson St, Boston, MA 02215" +245015,AAA Batteries (4-pack),1,2.99,08/08/19 10:29,"418 Spruce St, Los Angeles, CA 90001" +245016,Macbook Pro Laptop,1,1700,08/09/19 12:27,"227 Chestnut St, Boston, MA 02215" +245017,Apple Airpods Headphones,1,150,08/12/19 22:11,"783 Spruce St, San Francisco, CA 94016" +245018,AAA Batteries (4-pack),1,2.99,08/21/19 08:07,"899 Church St, Los Angeles, CA 90001" +245019,USB-C Charging Cable,1,11.95,08/07/19 16:14,"509 Meadow St, Portland, OR 97035" +245020,Wired Headphones,1,11.99,08/13/19 10:40,"903 Ridge St, San Francisco, CA 94016" +245021,Bose SoundSport Headphones,1,99.99,08/08/19 19:57,"293 Chestnut St, New York City, NY 10001" +245022,AA Batteries (4-pack),1,3.84,08/31/19 23:28,"658 14th St, Los Angeles, CA 90001" +245023,Wired Headphones,1,11.99,08/24/19 09:56,"812 9th St, Seattle, WA 98101" +245024,Google Phone,1,600,08/15/19 05:32,"339 Wilson St, Dallas, TX 75001" +245024,USB-C Charging Cable,1,11.95,08/15/19 05:32,"339 Wilson St, Dallas, TX 75001" +245024,Bose SoundSport Headphones,1,99.99,08/15/19 05:32,"339 Wilson St, Dallas, TX 75001" +245025,iPhone,1,700,08/29/19 20:03,"390 Willow St, San Francisco, CA 94016" +245026,20in Monitor,1,109.99,08/11/19 10:43,"172 2nd St, New York City, NY 10001" +245027,AA Batteries (4-pack),1,3.84,08/21/19 19:42,"226 Hickory St, New York City, NY 10001" +245028,20in Monitor,1,109.99,08/17/19 21:55,"599 Spruce St, Los Angeles, CA 90001" +245029,34in Ultrawide Monitor,1,379.99,08/28/19 21:29,"906 10th St, Boston, MA 02215" +245030,Bose SoundSport Headphones,1,99.99,08/01/19 20:31,"915 10th St, New York City, NY 10001" +245031,AA Batteries (4-pack),1,3.84,08/22/19 15:17,"16 11th St, San Francisco, CA 94016" +245032,AA Batteries (4-pack),1,3.84,08/12/19 17:22,"84 4th St, San Francisco, CA 94016" +245033,Lightning Charging Cable,1,14.95,08/05/19 10:45,"477 14th St, Austin, TX 73301" +245034,AAA Batteries (4-pack),1,2.99,08/23/19 10:36,"645 Maple St, Los Angeles, CA 90001" +245035,USB-C Charging Cable,1,11.95,09/01/19 00:17,"386 Meadow St, New York City, NY 10001" +245036,Vareebadd Phone,1,400,08/25/19 14:08,"330 Willow St, New York City, NY 10001" +245036,Wired Headphones,1,11.99,08/25/19 14:08,"330 Willow St, New York City, NY 10001" +245037,AA Batteries (4-pack),1,3.84,08/05/19 05:58,"73 Wilson St, Los Angeles, CA 90001" +245038,Macbook Pro Laptop,1,1700,08/29/19 17:28,"439 Willow St, Seattle, WA 98101" +245039,USB-C Charging Cable,1,11.95,08/03/19 17:04,"664 2nd St, San Francisco, CA 94016" +245040,27in FHD Monitor,1,149.99,08/28/19 11:56,"541 South St, Atlanta, GA 30301" +245041,Wired Headphones,1,11.99,08/15/19 18:52,"77 Meadow St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +245042,Bose SoundSport Headphones,1,99.99,08/09/19 15:19,"286 9th St, Portland, ME 04101" +245043,Bose SoundSport Headphones,1,99.99,08/23/19 17:41,"830 Pine St, New York City, NY 10001" +245044,Google Phone,1,600,08/19/19 13:17,"798 Lake St, Portland, OR 97035" +245045,AA Batteries (4-pack),1,3.84,08/14/19 20:24,"266 Maple St, Dallas, TX 75001" +245046,Apple Airpods Headphones,1,150,08/02/19 00:58,"694 Ridge St, Dallas, TX 75001" +245047,Lightning Charging Cable,1,14.95,08/10/19 10:33,"484 Center St, Seattle, WA 98101" +245048,Lightning Charging Cable,1,14.95,08/24/19 16:15,"3 Spruce St, San Francisco, CA 94016" +245049,27in 4K Gaming Monitor,1,389.99,08/03/19 10:46,"480 West St, Atlanta, GA 30301" +245050,Wired Headphones,1,11.99,08/05/19 16:01,"458 North St, San Francisco, CA 94016" +245051,Wired Headphones,1,11.99,08/22/19 07:57,"298 10th St, San Francisco, CA 94016" +245052,27in 4K Gaming Monitor,1,389.99,08/12/19 18:55,"185 Willow St, Los Angeles, CA 90001" +245053,AA Batteries (4-pack),1,3.84,08/01/19 19:40,"251 Lakeview St, Los Angeles, CA 90001" +245054,Lightning Charging Cable,1,14.95,08/25/19 14:41,"647 Jefferson St, Atlanta, GA 30301" +245055,34in Ultrawide Monitor,1,379.99,08/21/19 20:20,"436 River St, San Francisco, CA 94016" +245056,Lightning Charging Cable,1,14.95,08/15/19 22:57,"643 Pine St, New York City, NY 10001" +245057,USB-C Charging Cable,1,11.95,08/03/19 10:23,"814 1st St, San Francisco, CA 94016" +245058,Wired Headphones,2,11.99,08/20/19 19:13,"831 Pine St, New York City, NY 10001" +245059,Wired Headphones,1,11.99,08/11/19 13:34,"125 10th St, Boston, MA 02215" +245060,AAA Batteries (4-pack),1,2.99,08/25/19 17:22,"516 Adams St, Dallas, TX 75001" +245061,AA Batteries (4-pack),2,3.84,08/07/19 12:19,"393 Willow St, Boston, MA 02215" +245062,AAA Batteries (4-pack),1,2.99,08/24/19 07:20,"359 Jefferson St, Boston, MA 02215" +245063,AAA Batteries (4-pack),1,2.99,08/14/19 09:43,"301 Center St, Los Angeles, CA 90001" +245064,Lightning Charging Cable,1,14.95,08/26/19 03:03,"771 Chestnut St, Los Angeles, CA 90001" +245065,AAA Batteries (4-pack),1,2.99,08/08/19 07:57,"431 North St, Portland, OR 97035" +245066,AA Batteries (4-pack),2,3.84,08/09/19 07:35,"220 11th St, Dallas, TX 75001" +245067,Lightning Charging Cable,1,14.95,08/29/19 21:39,"346 Jackson St, Portland, OR 97035" +245068,20in Monitor,1,109.99,08/20/19 15:28,"260 North St, Dallas, TX 75001" +245069,Wired Headphones,1,11.99,08/02/19 18:02,"144 7th St, San Francisco, CA 94016" +245070,AAA Batteries (4-pack),4,2.99,08/31/19 14:17,"411 Madison St, Dallas, TX 75001" +245071,Lightning Charging Cable,1,14.95,08/02/19 19:54,"698 Ridge St, Boston, MA 02215" +245072,Macbook Pro Laptop,1,1700,08/06/19 20:09,"347 Johnson St, San Francisco, CA 94016" +245073,USB-C Charging Cable,1,11.95,08/14/19 16:24,"124 10th St, Portland, OR 97035" +245074,iPhone,1,700,08/29/19 15:16,"84 Meadow St, Dallas, TX 75001" +245074,Apple Airpods Headphones,1,150,08/29/19 15:16,"84 Meadow St, Dallas, TX 75001" +245075,Apple Airpods Headphones,1,150,08/26/19 22:13,"251 Walnut St, Boston, MA 02215" +245076,Lightning Charging Cable,1,14.95,08/03/19 10:12,"654 8th St, Los Angeles, CA 90001" +245077,Bose SoundSport Headphones,1,99.99,08/02/19 18:18,"288 Center St, Seattle, WA 98101" +245078,Lightning Charging Cable,1,14.95,08/27/19 00:17,"726 River St, Boston, MA 02215" +245079,Flatscreen TV,1,300,08/04/19 12:58,"616 Washington St, New York City, NY 10001" +245080,Wired Headphones,1,11.99,08/28/19 13:36,"116 Jackson St, Portland, OR 97035" +245081,Bose SoundSport Headphones,1,99.99,08/20/19 15:49,"606 Elm St, Atlanta, GA 30301" +245082,USB-C Charging Cable,1,11.95,08/27/19 21:32,"503 Highland St, New York City, NY 10001" +245083,27in FHD Monitor,1,149.99,08/27/19 22:53,"747 5th St, New York City, NY 10001" +245084,Wired Headphones,1,11.99,08/30/19 12:18,"21 Church St, Boston, MA 02215" +245085,27in FHD Monitor,1,149.99,08/06/19 10:48,"539 Sunset St, Los Angeles, CA 90001" +245086,ThinkPad Laptop,1,999.99,08/13/19 08:58,"113 Willow St, Los Angeles, CA 90001" +245087,iPhone,1,700,08/15/19 01:02,"668 8th St, San Francisco, CA 94016" +245087,Wired Headphones,1,11.99,08/15/19 01:02,"668 8th St, San Francisco, CA 94016" +245088,AAA Batteries (4-pack),1,2.99,08/08/19 15:41,"212 Center St, Los Angeles, CA 90001" +245089,34in Ultrawide Monitor,1,379.99,08/11/19 15:16,"614 Dogwood St, San Francisco, CA 94016" +245090,AAA Batteries (4-pack),3,2.99,08/09/19 18:40,"867 Washington St, San Francisco, CA 94016" +245091,Lightning Charging Cable,1,14.95,08/30/19 18:47,"923 West St, Atlanta, GA 30301" +245092,20in Monitor,1,109.99,08/26/19 21:53,"982 Sunset St, Austin, TX 73301" +245093,USB-C Charging Cable,1,11.95,08/20/19 07:54,"386 River St, New York City, NY 10001" +245094,Lightning Charging Cable,1,14.95,08/25/19 16:39,"572 Ridge St, San Francisco, CA 94016" +245095,ThinkPad Laptop,1,999.99,08/01/19 13:27,"511 11th St, Los Angeles, CA 90001" +245096,Apple Airpods Headphones,1,150,08/09/19 22:09,"407 Johnson St, San Francisco, CA 94016" +245097,Lightning Charging Cable,1,14.95,08/23/19 18:44,"660 10th St, New York City, NY 10001" +245098,AA Batteries (4-pack),1,3.84,08/15/19 17:02,"763 12th St, Portland, OR 97035" +245099,Wired Headphones,1,11.99,08/16/19 15:32,"742 10th St, Los Angeles, CA 90001" +245100,Bose SoundSport Headphones,1,99.99,08/07/19 00:55,"750 Dogwood St, Boston, MA 02215" +245101,Apple Airpods Headphones,1,150,08/15/19 08:10,"266 South St, Seattle, WA 98101" +245102,USB-C Charging Cable,1,11.95,08/22/19 08:34,"994 Jefferson St, New York City, NY 10001" +245103,Lightning Charging Cable,1,14.95,08/24/19 11:42,"78 North St, San Francisco, CA 94016" +245104,Flatscreen TV,1,300,08/20/19 10:25,"772 Maple St, San Francisco, CA 94016" +245105,AAA Batteries (4-pack),1,2.99,08/07/19 11:28,"45 Willow St, Boston, MA 02215" +245106,27in FHD Monitor,1,149.99,08/30/19 16:10,"242 Madison St, Portland, OR 97035" +245107,AA Batteries (4-pack),1,3.84,08/02/19 20:06,"200 Main St, Austin, TX 73301" +245108,AAA Batteries (4-pack),2,2.99,08/10/19 18:59,"226 13th St, San Francisco, CA 94016" +245109,Flatscreen TV,1,300,08/17/19 23:24,"580 11th St, San Francisco, CA 94016" +245110,34in Ultrawide Monitor,1,379.99,08/09/19 08:53,"543 4th St, San Francisco, CA 94016" +245111,USB-C Charging Cable,1,11.95,08/20/19 00:59,"216 5th St, Los Angeles, CA 90001" +245112,34in Ultrawide Monitor,1,379.99,08/19/19 12:34,"310 Meadow St, Dallas, TX 75001" +245113,20in Monitor,1,109.99,08/06/19 18:44,"451 Highland St, Boston, MA 02215" +245114,AAA Batteries (4-pack),2,2.99,08/19/19 13:26,"562 Walnut St, Atlanta, GA 30301" +245115,Apple Airpods Headphones,1,150,08/16/19 13:26,"584 6th St, San Francisco, CA 94016" +245116,20in Monitor,1,109.99,08/10/19 16:11,"141 Sunset St, San Francisco, CA 94016" +245117,USB-C Charging Cable,1,11.95,08/23/19 11:45,"886 10th St, Seattle, WA 98101" +245118,AA Batteries (4-pack),1,3.84,08/07/19 22:48,"436 Park St, Boston, MA 02215" +245119,Lightning Charging Cable,1,14.95,08/24/19 11:29,"241 Lincoln St, Austin, TX 73301" +245120,AAA Batteries (4-pack),1,2.99,08/13/19 17:10,"221 11th St, Boston, MA 02215" +245121,AA Batteries (4-pack),1,3.84,08/23/19 19:27,"558 Willow St, Dallas, TX 75001" +245122,Apple Airpods Headphones,1,150,08/15/19 19:30,"37 7th St, Boston, MA 02215" +245123,AAA Batteries (4-pack),1,2.99,08/02/19 18:23,"231 Spruce St, San Francisco, CA 94016" +245124,USB-C Charging Cable,1,11.95,08/26/19 20:51,"201 10th St, Seattle, WA 98101" +245125,Apple Airpods Headphones,1,150,08/18/19 13:25,"184 Maple St, New York City, NY 10001" +245126,USB-C Charging Cable,1,11.95,08/18/19 09:48,"124 12th St, Portland, ME 04101" +245127,USB-C Charging Cable,1,11.95,08/22/19 04:05,"10 Lake St, San Francisco, CA 94016" +245128,AAA Batteries (4-pack),2,2.99,08/18/19 12:34,"756 Cherry St, New York City, NY 10001" +245129,AAA Batteries (4-pack),2,2.99,08/20/19 13:54,"297 Maple St, Los Angeles, CA 90001" +245130,Wired Headphones,1,11.99,08/25/19 10:30,"747 Spruce St, Los Angeles, CA 90001" +245131,27in FHD Monitor,1,149.99,08/16/19 15:04,"489 Walnut St, Los Angeles, CA 90001" +245132,34in Ultrawide Monitor,1,379.99,08/30/19 12:32,"419 Lakeview St, San Francisco, CA 94016" +245133,Lightning Charging Cable,1,14.95,08/18/19 14:54,"932 River St, San Francisco, CA 94016" +245134,Wired Headphones,1,11.99,08/28/19 17:24,"149 Hill St, San Francisco, CA 94016" +245135,AA Batteries (4-pack),2,3.84,08/08/19 23:33,"391 Ridge St, San Francisco, CA 94016" +245136,AA Batteries (4-pack),1,3.84,08/13/19 18:45,"571 Lakeview St, Portland, OR 97035" +245137,AAA Batteries (4-pack),1,2.99,08/01/19 18:35,"527 14th St, San Francisco, CA 94016" +245138,Wired Headphones,1,11.99,08/21/19 13:46,"39 Jackson St, Dallas, TX 75001" +245139,Macbook Pro Laptop,1,1700,08/17/19 17:59,"755 Elm St, Seattle, WA 98101" +245140,AAA Batteries (4-pack),1,2.99,08/06/19 09:41,"675 West St, Los Angeles, CA 90001" +245141,Flatscreen TV,1,300,08/12/19 19:06,"989 Center St, Dallas, TX 75001" +245142,Wired Headphones,1,11.99,08/01/19 20:09,"779 Adams St, New York City, NY 10001" +245143,Google Phone,1,600,08/17/19 17:00,"844 Center St, Los Angeles, CA 90001" +245144,Lightning Charging Cable,1,14.95,08/30/19 11:44,"268 12th St, San Francisco, CA 94016" +245145,27in FHD Monitor,1,149.99,08/21/19 18:09,"696 Dogwood St, Austin, TX 73301" +245146,27in FHD Monitor,1,149.99,08/30/19 23:50,"377 Spruce St, Portland, OR 97035" +245147,27in FHD Monitor,1,149.99,08/16/19 17:07,"367 Adams St, San Francisco, CA 94016" +245148,iPhone,1,700,08/08/19 20:01,"170 7th St, Dallas, TX 75001" +245149,Flatscreen TV,1,300,08/21/19 21:50,"914 Johnson St, Atlanta, GA 30301" +245150,AAA Batteries (4-pack),1,2.99,08/23/19 17:02,"657 Maple St, Boston, MA 02215" +245151,Wired Headphones,1,11.99,08/16/19 19:06,"461 River St, San Francisco, CA 94016" +245152,Google Phone,1,600,08/14/19 16:44,"697 Cherry St, San Francisco, CA 94016" +245152,Bose SoundSport Headphones,1,99.99,08/14/19 16:44,"697 Cherry St, San Francisco, CA 94016" +245152,Wired Headphones,1,11.99,08/14/19 16:44,"697 Cherry St, San Francisco, CA 94016" +245153,Wired Headphones,1,11.99,08/15/19 17:55,"858 Hickory St, New York City, NY 10001" +245154,iPhone,1,700,08/12/19 17:20,"972 12th St, Boston, MA 02215" +245155,iPhone,1,700,08/10/19 17:16,"611 Adams St, New York City, NY 10001" +245155,Lightning Charging Cable,2,14.95,08/10/19 17:16,"611 Adams St, New York City, NY 10001" +245156,Lightning Charging Cable,1,14.95,08/11/19 07:24,"388 10th St, Austin, TX 73301" +245157,Bose SoundSport Headphones,1,99.99,08/27/19 22:32,"425 West St, Los Angeles, CA 90001" +245158,Vareebadd Phone,1,400,08/03/19 14:35,"101 Cedar St, San Francisco, CA 94016" +245159,Bose SoundSport Headphones,1,99.99,08/23/19 14:04,"844 Meadow St, Dallas, TX 75001" +245160,34in Ultrawide Monitor,1,379.99,08/25/19 13:19,"810 11th St, Austin, TX 73301" +245161,AA Batteries (4-pack),2,3.84,08/13/19 19:01,"815 South St, Austin, TX 73301" +245162,AAA Batteries (4-pack),1,2.99,08/15/19 04:03,"52 Meadow St, Los Angeles, CA 90001" +245163,AA Batteries (4-pack),1,3.84,08/29/19 19:29,"859 Forest St, Seattle, WA 98101" +245164,Wired Headphones,1,11.99,08/19/19 14:53,"841 11th St, San Francisco, CA 94016" +245165,Apple Airpods Headphones,1,150,08/22/19 15:56,"329 Hickory St, Atlanta, GA 30301" +245166,USB-C Charging Cable,1,11.95,08/01/19 18:56,"434 Jefferson St, New York City, NY 10001" +245167,AAA Batteries (4-pack),1,2.99,08/24/19 20:25,"440 Johnson St, Seattle, WA 98101" +245168,Google Phone,1,600,08/24/19 01:51,"546 Lake St, New York City, NY 10001" +245169,27in FHD Monitor,1,149.99,08/14/19 21:27,"962 Elm St, San Francisco, CA 94016" +245170,AAA Batteries (4-pack),1,2.99,08/21/19 16:18,"512 Walnut St, Boston, MA 02215" +245171,27in FHD Monitor,1,149.99,08/29/19 20:45,"492 Jackson St, San Francisco, CA 94016" +245172,USB-C Charging Cable,2,11.95,08/31/19 21:26,"685 Madison St, Seattle, WA 98101" +245173,Google Phone,1,600,08/04/19 11:58,"164 1st St, Los Angeles, CA 90001" +245173,Wired Headphones,1,11.99,08/04/19 11:58,"164 1st St, Los Angeles, CA 90001" +245174,iPhone,1,700,08/19/19 14:45,"226 12th St, New York City, NY 10001" +245175,Lightning Charging Cable,1,14.95,08/12/19 11:29,"754 Hill St, Portland, OR 97035" +245176,Bose SoundSport Headphones,1,99.99,09/01/19 00:19,"522 Park St, San Francisco, CA 94016" +245177,Apple Airpods Headphones,1,150,08/26/19 19:51,"805 Hickory St, Los Angeles, CA 90001" +245178,27in 4K Gaming Monitor,1,389.99,08/15/19 07:42,"185 Lakeview St, San Francisco, CA 94016" +245179,USB-C Charging Cable,1,11.95,08/25/19 16:53,"756 13th St, Los Angeles, CA 90001" +245180,USB-C Charging Cable,1,11.95,08/12/19 13:11,"242 13th St, Los Angeles, CA 90001" +245181,Wired Headphones,1,11.99,08/09/19 20:30,"635 11th St, Boston, MA 02215" +245182,27in FHD Monitor,1,149.99,08/25/19 10:11,"437 Sunset St, Dallas, TX 75001" +245183,USB-C Charging Cable,1,11.95,08/28/19 13:28,"635 10th St, Dallas, TX 75001" +245184,Lightning Charging Cable,1,14.95,08/04/19 00:35,"217 Maple St, Portland, OR 97035" +245185,AA Batteries (4-pack),2,3.84,08/25/19 09:23,"673 10th St, Boston, MA 02215" +245186,Apple Airpods Headphones,1,150,08/12/19 21:37,"294 Maple St, Los Angeles, CA 90001" +245187,27in 4K Gaming Monitor,1,389.99,08/17/19 13:54,"672 Highland St, New York City, NY 10001" +245188,Lightning Charging Cable,1,14.95,08/08/19 15:19,"153 North St, Los Angeles, CA 90001" +245189,AA Batteries (4-pack),1,3.84,08/24/19 15:26,"827 Elm St, Los Angeles, CA 90001" +245190,AA Batteries (4-pack),1,3.84,08/11/19 19:27,"629 Wilson St, New York City, NY 10001" +245191,AAA Batteries (4-pack),1,2.99,08/04/19 13:20,"225 Lakeview St, New York City, NY 10001" +245192,USB-C Charging Cable,1,11.95,08/22/19 16:22,"489 11th St, Atlanta, GA 30301" +245193,Wired Headphones,1,11.99,08/23/19 14:41,"901 Lakeview St, San Francisco, CA 94016" +245194,Lightning Charging Cable,1,14.95,08/05/19 02:38,"208 9th St, San Francisco, CA 94016" +245195,Wired Headphones,1,11.99,08/29/19 19:52,"5 South St, Boston, MA 02215" +245196,AA Batteries (4-pack),1,3.84,08/17/19 00:20,"560 South St, San Francisco, CA 94016" +245197,AA Batteries (4-pack),1,3.84,08/12/19 09:42,"708 Cherry St, San Francisco, CA 94016" +245198,Lightning Charging Cable,1,14.95,08/08/19 21:46,"141 Lake St, Boston, MA 02215" +245199,Apple Airpods Headphones,1,150,08/10/19 19:34,"709 14th St, San Francisco, CA 94016" +245200,Wired Headphones,2,11.99,08/03/19 06:39,"191 Cedar St, San Francisco, CA 94016" +245201,Apple Airpods Headphones,1,150,08/03/19 01:06,"706 Spruce St, Dallas, TX 75001" +245202,Lightning Charging Cable,2,14.95,08/23/19 20:53,"605 Main St, New York City, NY 10001" +245203,AAA Batteries (4-pack),1,2.99,08/05/19 18:44,"404 Maple St, Boston, MA 02215" +245204,Lightning Charging Cable,1,14.95,08/28/19 18:48,"729 Lake St, Seattle, WA 98101" +245205,ThinkPad Laptop,1,999.99,08/27/19 21:20,"38 2nd St, Portland, OR 97035" +245206,USB-C Charging Cable,1,11.95,08/28/19 16:02,"163 Park St, Boston, MA 02215" +245207,34in Ultrawide Monitor,1,379.99,08/14/19 19:50,"605 Willow St, San Francisco, CA 94016" +245208,iPhone,1,700,08/03/19 16:18,"149 Washington St, Seattle, WA 98101" +245209,USB-C Charging Cable,1,11.95,08/30/19 19:49,"169 Hickory St, Los Angeles, CA 90001" +245210,AAA Batteries (4-pack),2,2.99,08/19/19 11:48,"567 River St, New York City, NY 10001" +245211,AAA Batteries (4-pack),1,2.99,08/21/19 16:43,"688 Park St, Boston, MA 02215" +245212,USB-C Charging Cable,1,11.95,08/13/19 09:27,"886 River St, Los Angeles, CA 90001" +245213,Bose SoundSport Headphones,1,99.99,08/05/19 19:49,"326 10th St, San Francisco, CA 94016" +245214,AAA Batteries (4-pack),1,2.99,08/08/19 19:19,"698 Lakeview St, New York City, NY 10001" +245215,LG Washing Machine,1,600.0,08/16/19 14:28,"115 Forest St, San Francisco, CA 94016" +245216,USB-C Charging Cable,1,11.95,08/16/19 20:21,"968 Meadow St, Los Angeles, CA 90001" +245217,Flatscreen TV,1,300,08/22/19 14:16,"603 1st St, Los Angeles, CA 90001" +245218,LG Dryer,1,600.0,08/10/19 02:40,"611 Main St, San Francisco, CA 94016" +245219,Lightning Charging Cable,1,14.95,08/26/19 21:28,"781 Pine St, Boston, MA 02215" +245220,Bose SoundSport Headphones,1,99.99,08/27/19 13:55,"683 Main St, New York City, NY 10001" +245221,Wired Headphones,1,11.99,08/05/19 23:55,"872 Wilson St, Portland, OR 97035" +245222,Wired Headphones,1,11.99,08/10/19 10:41,"342 Dogwood St, Los Angeles, CA 90001" +245223,Wired Headphones,1,11.99,08/04/19 17:43,"519 13th St, San Francisco, CA 94016" +245224,AA Batteries (4-pack),1,3.84,08/01/19 15:53,"449 Dogwood St, Boston, MA 02215" +245225,Lightning Charging Cable,1,14.95,08/07/19 09:27,"336 Forest St, Portland, OR 97035" +245226,27in FHD Monitor,1,149.99,08/12/19 09:44,"418 Meadow St, Los Angeles, CA 90001" +245227,USB-C Charging Cable,2,11.95,08/27/19 20:39,"102 14th St, Dallas, TX 75001" +245228,27in FHD Monitor,1,149.99,08/16/19 21:25,"579 River St, Los Angeles, CA 90001" +245229,Apple Airpods Headphones,1,150,08/24/19 21:06,"776 7th St, Los Angeles, CA 90001" +245230,Apple Airpods Headphones,1,150,08/21/19 22:49,"347 Forest St, San Francisco, CA 94016" +245231,AA Batteries (4-pack),1,3.84,08/30/19 06:58,"962 7th St, Austin, TX 73301" +245232,USB-C Charging Cable,1,11.95,08/10/19 17:43,"782 Cedar St, Portland, OR 97035" +245233,Apple Airpods Headphones,1,150,08/05/19 21:26,"945 Dogwood St, Austin, TX 73301" +245234,Bose SoundSport Headphones,1,99.99,08/16/19 10:05,"808 Sunset St, San Francisco, CA 94016" +245235,Lightning Charging Cable,1,14.95,08/16/19 21:14,"808 Willow St, San Francisco, CA 94016" +245236,iPhone,1,700,08/03/19 16:59,"660 Highland St, Dallas, TX 75001" +245236,Lightning Charging Cable,1,14.95,08/03/19 16:59,"660 Highland St, Dallas, TX 75001" +245237,Lightning Charging Cable,1,14.95,08/31/19 14:40,"850 Lincoln St, Portland, ME 04101" +245238,34in Ultrawide Monitor,1,379.99,08/01/19 17:49,"134 13th St, Boston, MA 02215" +245239,Bose SoundSport Headphones,1,99.99,08/26/19 08:23,"31 8th St, New York City, NY 10001" +245240,USB-C Charging Cable,1,11.95,08/15/19 16:51,"25 Cedar St, Dallas, TX 75001" +245241,AA Batteries (4-pack),1,3.84,08/13/19 23:22,"625 Pine St, Boston, MA 02215" +245242,AAA Batteries (4-pack),1,2.99,08/11/19 19:42,"341 13th St, Boston, MA 02215" +245243,Lightning Charging Cable,1,14.95,08/05/19 00:27,"371 Jackson St, Los Angeles, CA 90001" +245244,USB-C Charging Cable,1,11.95,08/07/19 14:24,"226 13th St, Seattle, WA 98101" +245245,AAA Batteries (4-pack),1,2.99,08/26/19 19:42,"24 Jefferson St, San Francisco, CA 94016" +245246,AA Batteries (4-pack),1,3.84,08/04/19 07:23,"335 Spruce St, San Francisco, CA 94016" +245247,Bose SoundSport Headphones,1,99.99,08/06/19 23:16,"537 Maple St, Los Angeles, CA 90001" +245248,Macbook Pro Laptop,1,1700,08/19/19 14:33,"318 Jefferson St, Seattle, WA 98101" +245249,Apple Airpods Headphones,1,150,08/15/19 09:26,"443 Sunset St, Boston, MA 02215" +245250,27in FHD Monitor,1,149.99,08/12/19 10:12,"162 Spruce St, Dallas, TX 75001" +245251,20in Monitor,1,109.99,08/15/19 01:18,"228 Maple St, Dallas, TX 75001" +245252,USB-C Charging Cable,1,11.95,08/15/19 08:31,"230 North St, San Francisco, CA 94016" +245253,Bose SoundSport Headphones,1,99.99,08/23/19 17:00,"739 Wilson St, New York City, NY 10001" +245254,Apple Airpods Headphones,1,150,08/05/19 12:02,"707 11th St, Los Angeles, CA 90001" +245255,AA Batteries (4-pack),1,3.84,08/15/19 16:48,"212 4th St, Dallas, TX 75001" +245256,20in Monitor,1,109.99,08/17/19 22:42,"378 13th St, Los Angeles, CA 90001" +245257,AAA Batteries (4-pack),2,2.99,08/07/19 16:08,"322 Church St, San Francisco, CA 94016" +245258,Lightning Charging Cable,1,14.95,08/11/19 00:53,"460 Sunset St, San Francisco, CA 94016" +245259,USB-C Charging Cable,1,11.95,08/30/19 09:28,"29 Park St, Boston, MA 02215" +245260,34in Ultrawide Monitor,1,379.99,08/21/19 17:35,"769 Pine St, Atlanta, GA 30301" +245261,AA Batteries (4-pack),1,3.84,08/24/19 23:41,"525 Lake St, San Francisco, CA 94016" +245262,Lightning Charging Cable,1,14.95,08/24/19 18:12,"910 Main St, Boston, MA 02215" +245263,AAA Batteries (4-pack),1,2.99,08/20/19 09:05,"247 Jackson St, Boston, MA 02215" +245264,AAA Batteries (4-pack),1,2.99,08/24/19 08:22,"340 Madison St, San Francisco, CA 94016" +245264,Apple Airpods Headphones,1,150,08/24/19 08:22,"340 Madison St, San Francisco, CA 94016" +245265,Lightning Charging Cable,1,14.95,08/25/19 23:17,"539 5th St, Dallas, TX 75001" +245266,Bose SoundSport Headphones,1,99.99,08/09/19 11:37,"612 11th St, Los Angeles, CA 90001" +245267,Lightning Charging Cable,1,14.95,08/17/19 19:57,"943 Park St, Portland, OR 97035" +245268,Lightning Charging Cable,1,14.95,08/03/19 20:21,"804 Willow St, New York City, NY 10001" +245269,Lightning Charging Cable,1,14.95,08/04/19 09:05,"896 4th St, Austin, TX 73301" +245270,AAA Batteries (4-pack),1,2.99,08/14/19 14:50,"375 Pine St, Boston, MA 02215" +245271,20in Monitor,1,109.99,08/16/19 22:46,"280 Pine St, Seattle, WA 98101" +245272,USB-C Charging Cable,1,11.95,08/08/19 09:55,"423 Main St, San Francisco, CA 94016" +245273,AA Batteries (4-pack),2,3.84,08/31/19 23:35,"273 8th St, San Francisco, CA 94016" +245274,Apple Airpods Headphones,1,150,08/03/19 21:14,"135 Cedar St, San Francisco, CA 94016" +245275,Macbook Pro Laptop,1,1700,08/06/19 19:04,"44 8th St, Portland, OR 97035" +245276,AA Batteries (4-pack),1,3.84,08/24/19 04:15,"184 Center St, Los Angeles, CA 90001" +245277,Wired Headphones,1,11.99,08/31/19 23:13,"78 8th St, New York City, NY 10001" +245278,AAA Batteries (4-pack),3,2.99,08/10/19 14:23,"868 Chestnut St, Atlanta, GA 30301" +245279,AAA Batteries (4-pack),3,2.99,08/08/19 12:28,"900 Church St, Portland, OR 97035" +245280,AAA Batteries (4-pack),1,2.99,08/31/19 09:13,"411 Chestnut St, Boston, MA 02215" +245281,AAA Batteries (4-pack),1,2.99,08/26/19 21:20,"376 Washington St, San Francisco, CA 94016" +245282,Lightning Charging Cable,1,14.95,08/27/19 18:47,"288 Center St, Seattle, WA 98101" +245283,Flatscreen TV,1,300,08/12/19 10:18,"426 9th St, Boston, MA 02215" +245284,AA Batteries (4-pack),1,3.84,08/09/19 06:51,"806 12th St, New York City, NY 10001" +245285,Wired Headphones,1,11.99,08/21/19 16:38,"985 Elm St, Portland, OR 97035" +245286,34in Ultrawide Monitor,2,379.99,08/04/19 10:16,"959 Madison St, San Francisco, CA 94016" +245287,Lightning Charging Cable,1,14.95,08/31/19 20:20,"344 12th St, Seattle, WA 98101" +245288,Lightning Charging Cable,1,14.95,08/15/19 13:24,"66 Hickory St, Los Angeles, CA 90001" +245289,USB-C Charging Cable,1,11.95,08/07/19 09:18,"395 North St, Seattle, WA 98101" +245290,27in FHD Monitor,1,149.99,08/12/19 14:20,"283 Jackson St, San Francisco, CA 94016" +245291,AA Batteries (4-pack),1,3.84,08/10/19 20:04,"574 Maple St, Seattle, WA 98101" +245292,Wired Headphones,1,11.99,08/06/19 18:50,"608 10th St, Seattle, WA 98101" +245293,Lightning Charging Cable,1,14.95,08/26/19 21:30,"697 Madison St, Dallas, TX 75001" +245294,Bose SoundSport Headphones,1,99.99,08/02/19 22:37,"354 8th St, San Francisco, CA 94016" +245295,LG Washing Machine,1,600.0,08/03/19 18:48,"691 4th St, Seattle, WA 98101" +245296,AAA Batteries (4-pack),2,2.99,08/09/19 19:49,"426 Lincoln St, San Francisco, CA 94016" +245297,34in Ultrawide Monitor,1,379.99,08/14/19 13:16,"340 Lincoln St, Seattle, WA 98101" +245298,Flatscreen TV,1,300,08/02/19 12:11,"443 Center St, New York City, NY 10001" +245299,AA Batteries (4-pack),1,3.84,08/03/19 06:29,"3 Sunset St, Atlanta, GA 30301" +245300,27in 4K Gaming Monitor,1,389.99,08/01/19 09:24,"438 Dogwood St, Seattle, WA 98101" +245301,USB-C Charging Cable,1,11.95,08/19/19 18:52,"866 North St, Atlanta, GA 30301" +245302,Lightning Charging Cable,1,14.95,08/17/19 10:47,"800 Forest St, Boston, MA 02215" +245303,AA Batteries (4-pack),1,3.84,08/28/19 07:20,"605 4th St, Los Angeles, CA 90001" +245304,iPhone,1,700,08/19/19 15:29,"142 2nd St, San Francisco, CA 94016" +245305,Wired Headphones,1,11.99,08/01/19 15:45,"107 12th St, Boston, MA 02215" +245306,Wired Headphones,1,11.99,08/11/19 18:03,"80 Highland St, San Francisco, CA 94016" +245307,34in Ultrawide Monitor,1,379.99,08/30/19 22:24,"575 Cherry St, Los Angeles, CA 90001" +245308,Bose SoundSport Headphones,1,99.99,08/23/19 09:15,"57 Elm St, San Francisco, CA 94016" +245309,AA Batteries (4-pack),1,3.84,08/29/19 21:53,"387 6th St, Seattle, WA 98101" +245310,34in Ultrawide Monitor,1,379.99,08/24/19 10:30,"2 Washington St, Atlanta, GA 30301" +245311,USB-C Charging Cable,1,11.95,08/21/19 09:58,"145 Elm St, Austin, TX 73301" +245312,AA Batteries (4-pack),2,3.84,08/09/19 23:26,"306 Maple St, Boston, MA 02215" +245313,Flatscreen TV,1,300,08/28/19 17:45,"528 5th St, New York City, NY 10001" +245314,AA Batteries (4-pack),1,3.84,08/03/19 16:21,"689 1st St, San Francisco, CA 94016" +245315,AAA Batteries (4-pack),1,2.99,08/10/19 12:33,"194 West St, Seattle, WA 98101" +245316,Vareebadd Phone,1,400,08/05/19 10:12,"845 12th St, Los Angeles, CA 90001" +245316,USB-C Charging Cable,1,11.95,08/05/19 10:12,"845 12th St, Los Angeles, CA 90001" +245316,Wired Headphones,1,11.99,08/05/19 10:12,"845 12th St, Los Angeles, CA 90001" +245317,Wired Headphones,1,11.99,08/22/19 22:53,"3 4th St, Los Angeles, CA 90001" +245318,AAA Batteries (4-pack),2,2.99,08/06/19 16:28,"840 2nd St, Seattle, WA 98101" +245319,27in FHD Monitor,1,149.99,08/09/19 12:23,"450 Washington St, Los Angeles, CA 90001" +245319,USB-C Charging Cable,1,11.95,08/09/19 12:23,"450 Washington St, Los Angeles, CA 90001" +245320,34in Ultrawide Monitor,1,379.99,08/14/19 19:13,"854 Madison St, San Francisco, CA 94016" +245321,ThinkPad Laptop,1,999.99,08/28/19 21:47,"847 12th St, Boston, MA 02215" +245322,USB-C Charging Cable,1,11.95,08/06/19 21:48,"273 Adams St, Seattle, WA 98101" +245323,Apple Airpods Headphones,1,150,08/26/19 20:17,"338 Lake St, Los Angeles, CA 90001" +245324,Wired Headphones,1,11.99,08/09/19 12:47,"636 7th St, Seattle, WA 98101" +245325,Apple Airpods Headphones,1,150,08/31/19 12:59,"561 Hickory St, Portland, ME 04101" +245326,Apple Airpods Headphones,1,150,08/13/19 07:00,"337 Forest St, San Francisco, CA 94016" +245327,Apple Airpods Headphones,1,150,08/07/19 08:17,"504 Willow St, Los Angeles, CA 90001" +245328,Apple Airpods Headphones,1,150,08/15/19 11:41,"617 Washington St, Dallas, TX 75001" +245329,Apple Airpods Headphones,1,150,08/13/19 10:51,"426 Adams St, Portland, OR 97035" +245330,Lightning Charging Cable,1,14.95,08/08/19 07:58,"791 Washington St, San Francisco, CA 94016" +245331,USB-C Charging Cable,1,11.95,08/06/19 23:53,"919 8th St, Austin, TX 73301" +245332,Macbook Pro Laptop,1,1700,08/13/19 19:54,"328 Center St, New York City, NY 10001" +245333,Apple Airpods Headphones,1,150,08/31/19 23:43,"700 Chestnut St, Los Angeles, CA 90001" +245334,27in FHD Monitor,1,149.99,08/27/19 11:22,"260 River St, San Francisco, CA 94016" +245335,AAA Batteries (4-pack),1,2.99,08/26/19 21:32,"375 Ridge St, Seattle, WA 98101" +245336,Apple Airpods Headphones,1,150,08/01/19 11:37,"278 West St, Austin, TX 73301" +245337,Wired Headphones,1,11.99,08/08/19 23:37,"490 Willow St, Los Angeles, CA 90001" +245338,Apple Airpods Headphones,1,150,08/11/19 10:51,"599 Cedar St, Portland, ME 04101" +245339,Apple Airpods Headphones,1,150,08/07/19 20:25,"648 8th St, Atlanta, GA 30301" +245340,Bose SoundSport Headphones,1,99.99,08/14/19 17:50,"43 8th St, Austin, TX 73301" +245341,Vareebadd Phone,1,400,08/27/19 13:21,"458 14th St, Austin, TX 73301" +245342,AAA Batteries (4-pack),1,2.99,08/09/19 10:09,"461 Spruce St, Los Angeles, CA 90001" +245343,Bose SoundSport Headphones,1,99.99,08/23/19 11:00,"679 Walnut St, Portland, OR 97035" +245344,Flatscreen TV,1,300,08/15/19 17:22,"119 9th St, Seattle, WA 98101" +245345,AA Batteries (4-pack),3,3.84,08/05/19 23:06,"837 Jefferson St, Atlanta, GA 30301" +245346,27in 4K Gaming Monitor,1,389.99,08/25/19 19:09,"28 Lake St, New York City, NY 10001" +245347,Lightning Charging Cable,1,14.95,08/23/19 16:11,"613 Lake St, Los Angeles, CA 90001" +245348,Apple Airpods Headphones,1,150,08/14/19 16:08,"592 2nd St, Los Angeles, CA 90001" +245349,AA Batteries (4-pack),1,3.84,08/12/19 12:06,"187 12th St, Atlanta, GA 30301" +245350,Bose SoundSport Headphones,1,99.99,08/05/19 06:48,"804 North St, Portland, OR 97035" +245351,27in 4K Gaming Monitor,1,389.99,08/31/19 15:58,"871 Sunset St, Los Angeles, CA 90001" +245352,27in FHD Monitor,1,149.99,08/05/19 10:04,"80 Lake St, Boston, MA 02215" +245353,Macbook Pro Laptop,1,1700,08/09/19 17:54,"101 Johnson St, Atlanta, GA 30301" +245354,AAA Batteries (4-pack),1,2.99,08/15/19 22:56,"18 Washington St, San Francisco, CA 94016" +245355,AA Batteries (4-pack),1,3.84,08/12/19 18:40,"379 Highland St, Portland, ME 04101" +245356,Apple Airpods Headphones,1,150,08/13/19 13:45,"997 Adams St, San Francisco, CA 94016" +245357,Apple Airpods Headphones,1,150,08/14/19 15:56,"752 11th St, Los Angeles, CA 90001" +245358,Bose SoundSport Headphones,1,99.99,08/04/19 10:52,"239 Meadow St, Los Angeles, CA 90001" +245359,27in FHD Monitor,1,149.99,08/27/19 09:47,"63 14th St, Los Angeles, CA 90001" +245360,Apple Airpods Headphones,1,150,08/09/19 18:11,"25 Dogwood St, Los Angeles, CA 90001" +245361,Macbook Pro Laptop,1,1700,08/13/19 16:33,"502 11th St, New York City, NY 10001" +245362,USB-C Charging Cable,1,11.95,08/31/19 18:11,"264 River St, Boston, MA 02215" +245363,Flatscreen TV,1,300,08/17/19 18:09,"102 Highland St, Los Angeles, CA 90001" +245364,Lightning Charging Cable,1,14.95,08/14/19 19:52,"564 11th St, Boston, MA 02215" +245365,USB-C Charging Cable,1,11.95,08/13/19 23:54,"785 2nd St, Boston, MA 02215" +245366,27in 4K Gaming Monitor,1,389.99,08/19/19 19:02,"75 North St, Austin, TX 73301" +245367,USB-C Charging Cable,1,11.95,08/15/19 19:54,"104 13th St, New York City, NY 10001" +245368,AA Batteries (4-pack),1,3.84,08/09/19 08:43,"201 Cedar St, Austin, TX 73301" +245369,20in Monitor,1,109.99,08/14/19 14:08,"821 Pine St, Austin, TX 73301" +245370,Bose SoundSport Headphones,1,99.99,08/18/19 10:31,"369 4th St, New York City, NY 10001" +245371,Bose SoundSport Headphones,1,99.99,08/06/19 11:12,"309 5th St, San Francisco, CA 94016" +245372,AA Batteries (4-pack),1,3.84,08/21/19 20:09,"914 Meadow St, San Francisco, CA 94016" +245373,Vareebadd Phone,1,400,08/27/19 12:30,"17 Jefferson St, New York City, NY 10001" +245374,USB-C Charging Cable,1,11.95,08/05/19 19:15,"663 Main St, New York City, NY 10001" +245375,Wired Headphones,1,11.99,08/19/19 12:41,"191 Sunset St, Los Angeles, CA 90001" +245376,Lightning Charging Cable,1,14.95,08/16/19 22:15,"894 Meadow St, San Francisco, CA 94016" +245377,27in 4K Gaming Monitor,1,389.99,08/07/19 11:17,"127 10th St, Seattle, WA 98101" +245378,Apple Airpods Headphones,1,150,08/17/19 17:49,"797 6th St, Los Angeles, CA 90001" +245379,USB-C Charging Cable,1,11.95,08/29/19 12:00,"712 6th St, Dallas, TX 75001" +245380,20in Monitor,1,109.99,08/20/19 22:20,"524 5th St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +245381,Lightning Charging Cable,1,14.95,08/08/19 20:52,"286 Walnut St, Portland, OR 97035" +245382,Flatscreen TV,1,300,08/10/19 09:23,"243 Wilson St, San Francisco, CA 94016" +245383,ThinkPad Laptop,1,999.99,08/25/19 18:47,"535 5th St, Boston, MA 02215" +245384,Apple Airpods Headphones,1,150,08/12/19 23:19,"697 Willow St, Los Angeles, CA 90001" +245385,34in Ultrawide Monitor,1,379.99,08/29/19 23:03,"320 9th St, New York City, NY 10001" +245386,Bose SoundSport Headphones,1,99.99,08/15/19 08:23,"976 Dogwood St, Austin, TX 73301" +245387,Wired Headphones,2,11.99,08/10/19 19:53,"22 Cedar St, San Francisco, CA 94016" +245388,Apple Airpods Headphones,1,150,08/09/19 12:08,"107 Lakeview St, Seattle, WA 98101" +245389,Lightning Charging Cable,1,14.95,08/19/19 18:16,"299 Hickory St, Los Angeles, CA 90001" +245390,AA Batteries (4-pack),1,3.84,08/30/19 16:38,"802 5th St, San Francisco, CA 94016" +245391,27in FHD Monitor,1,149.99,08/03/19 10:15,"720 6th St, San Francisco, CA 94016" +245392,AAA Batteries (4-pack),1,2.99,08/03/19 14:44,"879 Lake St, Austin, TX 73301" +245393,USB-C Charging Cable,1,11.95,08/23/19 08:32,"881 7th St, Austin, TX 73301" +245394,Wired Headphones,1,11.99,08/22/19 19:55,"826 5th St, San Francisco, CA 94016" +245395,27in 4K Gaming Monitor,1,389.99,08/25/19 14:56,"676 10th St, Boston, MA 02215" +245396,AAA Batteries (4-pack),1,2.99,08/22/19 19:06,"990 River St, Austin, TX 73301" +245397,Wired Headphones,1,11.99,08/29/19 20:58,"337 2nd St, Los Angeles, CA 90001" +245398,iPhone,1,700,08/23/19 16:24,"606 Park St, Austin, TX 73301" +245398,Wired Headphones,1,11.99,08/23/19 16:24,"606 Park St, Austin, TX 73301" +245399,AAA Batteries (4-pack),1,2.99,08/05/19 16:15,"909 Hill St, New York City, NY 10001" +245400,Lightning Charging Cable,1,14.95,08/12/19 18:48,"744 7th St, San Francisco, CA 94016" +245401,Apple Airpods Headphones,1,150,08/31/19 16:51,"490 Park St, San Francisco, CA 94016" +245402,Wired Headphones,1,11.99,08/30/19 20:10,"190 Highland St, Atlanta, GA 30301" +245403,Bose SoundSport Headphones,1,99.99,08/28/19 21:05,"510 Willow St, San Francisco, CA 94016" +245404,34in Ultrawide Monitor,1,379.99,08/20/19 09:11,"308 West St, Austin, TX 73301" +245405,27in FHD Monitor,1,149.99,08/26/19 01:28,"656 Elm St, Portland, ME 04101" +245406,Google Phone,1,600,08/24/19 06:41,"487 Highland St, San Francisco, CA 94016" +245407,Wired Headphones,1,11.99,08/19/19 13:31,"589 Park St, New York City, NY 10001" +245408,Lightning Charging Cable,1,14.95,08/17/19 17:33,"775 Church St, Boston, MA 02215" +245409,USB-C Charging Cable,2,11.95,08/17/19 09:48,"493 Cedar St, Los Angeles, CA 90001" +245410,Lightning Charging Cable,2,14.95,08/20/19 11:41,"892 Dogwood St, Dallas, TX 75001" +245411,Wired Headphones,1,11.99,08/04/19 13:06,"909 Washington St, San Francisco, CA 94016" +245412,Apple Airpods Headphones,1,150,08/15/19 11:16,"367 13th St, San Francisco, CA 94016" +245413,Lightning Charging Cable,1,14.95,08/27/19 20:36,"887 Park St, San Francisco, CA 94016" +245414,Bose SoundSport Headphones,1,99.99,08/12/19 10:33,"565 Dogwood St, Austin, TX 73301" +,,,,, +245415,Macbook Pro Laptop,1,1700,08/31/19 14:55,"719 Spruce St, New York City, NY 10001" +245416,AA Batteries (4-pack),1,3.84,08/24/19 20:12,"989 Walnut St, Seattle, WA 98101" +245417,Lightning Charging Cable,1,14.95,08/05/19 08:01,"175 Jefferson St, Boston, MA 02215" +245418,Apple Airpods Headphones,1,150,08/24/19 09:05,"413 Jefferson St, San Francisco, CA 94016" +245419,Apple Airpods Headphones,1,150,08/11/19 15:07,"126 Center St, New York City, NY 10001" +245420,Google Phone,1,600,08/31/19 18:08,"873 Madison St, Los Angeles, CA 90001" +245420,Wired Headphones,1,11.99,08/31/19 18:08,"873 Madison St, Los Angeles, CA 90001" +245421,AA Batteries (4-pack),1,3.84,08/15/19 20:04,"841 South St, San Francisco, CA 94016" +245422,iPhone,1,700,08/14/19 23:51,"417 Adams St, Los Angeles, CA 90001" +245422,Wired Headphones,1,11.99,08/14/19 23:51,"417 Adams St, Los Angeles, CA 90001" +245423,Apple Airpods Headphones,1,150,08/15/19 16:42,"250 Church St, Los Angeles, CA 90001" +245424,AAA Batteries (4-pack),1,2.99,08/16/19 12:13,"44 West St, Boston, MA 02215" +245425,Bose SoundSport Headphones,1,99.99,08/31/19 21:07,"947 Willow St, San Francisco, CA 94016" +245426,Google Phone,1,600,08/27/19 13:54,"95 2nd St, Boston, MA 02215" +245427,Apple Airpods Headphones,1,150,08/03/19 09:26,"254 Adams St, San Francisco, CA 94016" +245428,Bose SoundSport Headphones,1,99.99,08/12/19 21:08,"750 Meadow St, Atlanta, GA 30301" +245429,Macbook Pro Laptop,1,1700,08/07/19 19:32,"598 8th St, Portland, OR 97035" +245430,Apple Airpods Headphones,1,150,08/07/19 13:47,"22 Maple St, New York City, NY 10001" +245431,AAA Batteries (4-pack),1,2.99,08/25/19 00:32,"123 Adams St, Portland, OR 97035" +245432,AAA Batteries (4-pack),1,2.99,08/18/19 19:36,"857 Sunset St, Los Angeles, CA 90001" +245433,34in Ultrawide Monitor,1,379.99,08/05/19 11:58,"307 10th St, Los Angeles, CA 90001" +245434,Lightning Charging Cable,1,14.95,08/06/19 14:14,"213 Hickory St, Los Angeles, CA 90001" +245435,AAA Batteries (4-pack),1,2.99,08/12/19 10:26,"442 12th St, Los Angeles, CA 90001" +245436,iPhone,1,700,08/17/19 19:24,"376 8th St, Portland, OR 97035" +245437,AAA Batteries (4-pack),1,2.99,08/03/19 19:20,"111 Jefferson St, San Francisco, CA 94016" +245438,Apple Airpods Headphones,1,150,08/29/19 09:21,"808 13th St, Atlanta, GA 30301" +245438,Lightning Charging Cable,1,14.95,08/29/19 09:21,"808 13th St, Atlanta, GA 30301" +245439,Lightning Charging Cable,1,14.95,08/21/19 13:33,"571 Lincoln St, New York City, NY 10001" +245440,Bose SoundSport Headphones,1,99.99,08/10/19 06:07,"542 12th St, Dallas, TX 75001" +245441,AA Batteries (4-pack),1,3.84,08/31/19 23:53,"685 Madison St, Los Angeles, CA 90001" +245442,Lightning Charging Cable,1,14.95,08/15/19 19:43,"760 Washington St, Los Angeles, CA 90001" +245443,AAA Batteries (4-pack),2,2.99,08/28/19 14:49,"575 Highland St, New York City, NY 10001" +245444,AAA Batteries (4-pack),1,2.99,08/20/19 15:05,"394 Highland St, Portland, OR 97035" +245445,Apple Airpods Headphones,1,150,08/21/19 12:51,"597 Dogwood St, Los Angeles, CA 90001" +245446,Apple Airpods Headphones,1,150,08/28/19 23:33,"759 4th St, Portland, OR 97035" +245447,Apple Airpods Headphones,1,150,08/01/19 11:29,"716 7th St, San Francisco, CA 94016" +245448,USB-C Charging Cable,1,11.95,08/09/19 19:40,"656 Chestnut St, Atlanta, GA 30301" +245449,AAA Batteries (4-pack),1,2.99,08/01/19 23:45,"240 Madison St, Seattle, WA 98101" +245450,USB-C Charging Cable,1,11.95,08/25/19 21:01,"376 South St, San Francisco, CA 94016" +245451,AAA Batteries (4-pack),1,2.99,08/02/19 06:34,"753 Center St, Atlanta, GA 30301" +245452,USB-C Charging Cable,1,11.95,08/23/19 21:02,"608 Ridge St, Portland, OR 97035" +245453,34in Ultrawide Monitor,1,379.99,08/18/19 12:48,"546 Jackson St, Atlanta, GA 30301" +245454,Apple Airpods Headphones,1,150,08/25/19 19:30,"876 12th St, San Francisco, CA 94016" +245455,Lightning Charging Cable,1,14.95,08/13/19 19:41,"86 Ridge St, New York City, NY 10001" +245456,AAA Batteries (4-pack),1,2.99,08/20/19 11:04,"734 Highland St, Dallas, TX 75001" +245457,Apple Airpods Headphones,1,150,08/23/19 04:26,"859 Jackson St, Portland, OR 97035" +245458,Lightning Charging Cable,1,14.95,08/06/19 19:40,"414 River St, San Francisco, CA 94016" +245459,AA Batteries (4-pack),1,3.84,08/24/19 16:03,"656 10th St, Portland, OR 97035" +245460,Wired Headphones,1,11.99,08/12/19 08:49,"448 Elm St, Atlanta, GA 30301" +245460,AAA Batteries (4-pack),1,2.99,08/12/19 08:49,"448 Elm St, Atlanta, GA 30301" +245461,Wired Headphones,1,11.99,08/07/19 15:02,"468 Church St, Dallas, TX 75001" +245462,Wired Headphones,1,11.99,08/02/19 22:59,"217 Hickory St, Portland, OR 97035" +245463,USB-C Charging Cable,1,11.95,08/16/19 00:23,"340 10th St, Atlanta, GA 30301" +245464,USB-C Charging Cable,1,11.95,08/23/19 18:16,"487 Willow St, Boston, MA 02215" +245465,iPhone,1,700,08/10/19 06:37,"807 7th St, San Francisco, CA 94016" +245466,ThinkPad Laptop,1,999.99,08/20/19 18:22,"87 North St, San Francisco, CA 94016" +245467,AAA Batteries (4-pack),2,2.99,08/02/19 20:45,"198 5th St, New York City, NY 10001" +245468,Apple Airpods Headphones,1,150,08/29/19 15:40,"548 Lake St, New York City, NY 10001" +245469,AA Batteries (4-pack),2,3.84,08/10/19 00:44,"344 Madison St, Seattle, WA 98101" +245470,Flatscreen TV,1,300,08/18/19 19:00,"744 Spruce St, Los Angeles, CA 90001" +245471,ThinkPad Laptop,1,999.99,08/24/19 09:46,"557 Hickory St, New York City, NY 10001" +245472,AAA Batteries (4-pack),1,2.99,08/14/19 11:52,"935 Sunset St, San Francisco, CA 94016" +245473,Google Phone,1,600,08/08/19 15:16,"717 Hickory St, San Francisco, CA 94016" +245474,20in Monitor,1,109.99,08/28/19 16:06,"678 Cherry St, Seattle, WA 98101" +245475,USB-C Charging Cable,1,11.95,08/26/19 13:34,"893 Ridge St, Dallas, TX 75001" +245476,USB-C Charging Cable,1,11.95,08/17/19 00:02,"62 Jefferson St, Portland, ME 04101" +245477,27in 4K Gaming Monitor,1,389.99,08/11/19 00:30,"649 6th St, Portland, OR 97035" +245478,20in Monitor,1,109.99,08/14/19 19:13,"619 Elm St, Austin, TX 73301" +245479,Wired Headphones,1,11.99,08/02/19 21:45,"634 Cherry St, Portland, OR 97035" +245480,20in Monitor,1,109.99,08/23/19 09:41,"328 Forest St, Los Angeles, CA 90001" +245481,27in 4K Gaming Monitor,1,389.99,08/28/19 11:22,"783 Adams St, Seattle, WA 98101" +245482,iPhone,1,700,08/30/19 17:09,"663 10th St, Austin, TX 73301" +245483,27in FHD Monitor,1,149.99,08/27/19 21:28,"195 North St, Los Angeles, CA 90001" +245484,AAA Batteries (4-pack),1,2.99,08/19/19 16:01,"890 Hill St, Seattle, WA 98101" +245485,Lightning Charging Cable,1,14.95,08/12/19 21:00,"744 Meadow St, San Francisco, CA 94016" +245486,34in Ultrawide Monitor,1,379.99,08/20/19 13:31,"369 Cedar St, San Francisco, CA 94016" +245487,AA Batteries (4-pack),2,3.84,08/30/19 08:50,"668 Adams St, Portland, OR 97035" +245488,iPhone,1,700,08/14/19 18:42,"607 2nd St, San Francisco, CA 94016" +245489,iPhone,1,700,08/05/19 08:08,"472 Center St, Boston, MA 02215" +245490,27in 4K Gaming Monitor,1,389.99,08/15/19 17:07,"555 Jackson St, Boston, MA 02215" +245491,iPhone,1,700,08/12/19 22:26,"341 Sunset St, San Francisco, CA 94016" +245492,ThinkPad Laptop,1,999.99,08/04/19 14:29,"56 7th St, Los Angeles, CA 90001" +245493,27in FHD Monitor,1,149.99,08/03/19 17:49,"363 9th St, New York City, NY 10001" +245493,AA Batteries (4-pack),3,3.84,08/03/19 17:49,"363 9th St, New York City, NY 10001" +245494,34in Ultrawide Monitor,1,379.99,08/11/19 12:03,"360 Wilson St, Dallas, TX 75001" +245495,20in Monitor,1,109.99,08/15/19 09:58,"448 Adams St, Boston, MA 02215" +245496,AA Batteries (4-pack),1,3.84,08/16/19 21:33,"808 Meadow St, Portland, ME 04101" +245497,Apple Airpods Headphones,1,150,08/20/19 14:50,"686 4th St, Atlanta, GA 30301" +245498,27in FHD Monitor,1,149.99,08/14/19 22:29,"755 4th St, San Francisco, CA 94016" +245499,Vareebadd Phone,1,400,08/18/19 13:08,"372 Spruce St, Dallas, TX 75001" +245500,Lightning Charging Cable,1,14.95,08/31/19 09:42,"757 Madison St, Atlanta, GA 30301" +245501,USB-C Charging Cable,1,11.95,08/09/19 06:02,"776 Maple St, San Francisco, CA 94016" +245502,AAA Batteries (4-pack),1,2.99,08/13/19 20:39,"312 11th St, Boston, MA 02215" +245503,USB-C Charging Cable,1,11.95,08/11/19 05:04,"447 Lake St, New York City, NY 10001" +245504,Lightning Charging Cable,1,14.95,08/18/19 15:11,"689 9th St, San Francisco, CA 94016" +245505,Wired Headphones,1,11.99,08/17/19 19:42,"242 14th St, San Francisco, CA 94016" +245506,Apple Airpods Headphones,1,150,08/07/19 20:55,"420 South St, San Francisco, CA 94016" +245507,AA Batteries (4-pack),1,3.84,08/06/19 16:04,"605 Cherry St, Los Angeles, CA 90001" +245508,Bose SoundSport Headphones,1,99.99,08/20/19 22:36,"995 Spruce St, Austin, TX 73301" +245509,Wired Headphones,1,11.99,08/26/19 14:03,"470 7th St, Portland, OR 97035" +245510,AA Batteries (4-pack),1,3.84,08/23/19 18:23,"826 Forest St, New York City, NY 10001" +245511,Apple Airpods Headphones,1,150,08/07/19 13:48,"678 Sunset St, New York City, NY 10001" +245512,AAA Batteries (4-pack),1,2.99,08/09/19 19:02,"284 Main St, Portland, OR 97035" +245513,Apple Airpods Headphones,1,150,08/18/19 12:59,"509 Ridge St, Atlanta, GA 30301" +245514,Wired Headphones,2,11.99,08/24/19 00:36,"369 Cherry St, New York City, NY 10001" +245515,27in FHD Monitor,1,149.99,08/24/19 13:17,"702 North St, San Francisco, CA 94016" +245516,Wired Headphones,1,11.99,08/18/19 16:09,"773 Highland St, Boston, MA 02215" +245517,Bose SoundSport Headphones,1,99.99,08/24/19 18:52,"726 Center St, Seattle, WA 98101" +245518,Lightning Charging Cable,1,14.95,08/22/19 20:44,"252 Jackson St, Boston, MA 02215" +245519,AA Batteries (4-pack),1,3.84,08/31/19 12:08,"355 14th St, San Francisco, CA 94016" +245520,Wired Headphones,1,11.99,08/06/19 10:58,"186 Lake St, San Francisco, CA 94016" +245521,Wired Headphones,1,11.99,08/21/19 12:27,"49 1st St, San Francisco, CA 94016" +245522,AA Batteries (4-pack),1,3.84,08/17/19 00:11,"647 5th St, Seattle, WA 98101" +245523,Lightning Charging Cable,1,14.95,08/14/19 13:56,"304 Madison St, Seattle, WA 98101" +245524,Flatscreen TV,1,300,08/27/19 11:48,"920 Meadow St, New York City, NY 10001" +245525,Apple Airpods Headphones,1,150,08/05/19 14:08,"354 Pine St, New York City, NY 10001" +245526,Lightning Charging Cable,1,14.95,08/11/19 10:35,"581 Lincoln St, Dallas, TX 75001" +245527,iPhone,1,700,08/30/19 23:36,"166 Chestnut St, San Francisco, CA 94016" +245527,Lightning Charging Cable,1,14.95,08/30/19 23:36,"166 Chestnut St, San Francisco, CA 94016" +245528,AAA Batteries (4-pack),4,2.99,08/15/19 09:43,"117 1st St, San Francisco, CA 94016" +245529,27in FHD Monitor,1,149.99,08/27/19 16:56,"790 Meadow St, Dallas, TX 75001" +245530,27in FHD Monitor,1,149.99,08/29/19 14:47,"176 Church St, Boston, MA 02215" +245531,27in FHD Monitor,1,149.99,08/29/19 17:53,"192 10th St, Los Angeles, CA 90001" +245532,34in Ultrawide Monitor,1,379.99,08/12/19 15:43,"467 Cedar St, San Francisco, CA 94016" +245533,USB-C Charging Cable,1,11.95,08/16/19 15:32,"38 Maple St, Portland, OR 97035" +245534,USB-C Charging Cable,1,11.95,08/05/19 17:16,"827 Elm St, New York City, NY 10001" +245535,Apple Airpods Headphones,1,150,08/02/19 10:02,"995 River St, Atlanta, GA 30301" +245536,AA Batteries (4-pack),1,3.84,08/23/19 13:50,"520 Jackson St, New York City, NY 10001" +245537,Apple Airpods Headphones,1,150,08/11/19 13:44,"153 Jackson St, San Francisco, CA 94016" +245538,Lightning Charging Cable,1,14.95,08/28/19 11:05,"344 South St, San Francisco, CA 94016" +245538,27in FHD Monitor,1,149.99,08/28/19 11:05,"344 South St, San Francisco, CA 94016" +245539,AA Batteries (4-pack),1,3.84,08/24/19 13:51,"358 Hickory St, Seattle, WA 98101" +245540,Macbook Pro Laptop,1,1700,08/05/19 11:26,"976 Hill St, Seattle, WA 98101" +245541,Lightning Charging Cable,1,14.95,08/16/19 09:41,"584 Church St, Seattle, WA 98101" +245542,Lightning Charging Cable,1,14.95,08/21/19 13:51,"547 Main St, Los Angeles, CA 90001" +245543,Wired Headphones,1,11.99,08/02/19 20:49,"766 9th St, Seattle, WA 98101" +245544,27in FHD Monitor,1,149.99,08/12/19 11:03,"548 Center St, Atlanta, GA 30301" +245545,Wired Headphones,1,11.99,08/10/19 20:02,"400 Highland St, New York City, NY 10001" +245546,AAA Batteries (4-pack),1,2.99,08/07/19 08:29,"302 Center St, Boston, MA 02215" +245547,Bose SoundSport Headphones,1,99.99,08/16/19 07:09,"394 Hickory St, San Francisco, CA 94016" +245548,Lightning Charging Cable,1,14.95,08/11/19 10:49,"55 9th St, Boston, MA 02215" +245549,Lightning Charging Cable,1,14.95,08/24/19 18:00,"633 Church St, Seattle, WA 98101" +245550,LG Dryer,1,600.0,08/29/19 13:28,"235 10th St, San Francisco, CA 94016" +245551,AAA Batteries (4-pack),1,2.99,08/27/19 17:30,"528 Jefferson St, San Francisco, CA 94016" +245552,Macbook Pro Laptop,1,1700,08/11/19 22:42,"195 South St, Atlanta, GA 30301" +245553,34in Ultrawide Monitor,1,379.99,08/28/19 09:57,"136 Forest St, Los Angeles, CA 90001" +245554,Bose SoundSport Headphones,1,99.99,08/17/19 23:20,"633 1st St, Los Angeles, CA 90001" +245555,Wired Headphones,1,11.99,08/05/19 17:55,"830 Johnson St, Atlanta, GA 30301" +245556,USB-C Charging Cable,1,11.95,08/30/19 19:00,"175 Chestnut St, Seattle, WA 98101" +245557,AA Batteries (4-pack),1,3.84,08/16/19 07:43,"220 7th St, Boston, MA 02215" +245558,Apple Airpods Headphones,1,150,08/25/19 20:22,"817 6th St, Portland, OR 97035" +245559,Lightning Charging Cable,1,14.95,08/10/19 18:39,"372 5th St, Seattle, WA 98101" +245560,AA Batteries (4-pack),3,3.84,08/10/19 18:34,"31 West St, Austin, TX 73301" +245561,USB-C Charging Cable,1,11.95,08/27/19 13:46,"377 Maple St, Boston, MA 02215" +245562,USB-C Charging Cable,1,11.95,08/07/19 00:27,"356 Lakeview St, Boston, MA 02215" +245563,iPhone,1,700,08/05/19 09:49,"247 Chestnut St, Austin, TX 73301" +245563,Lightning Charging Cable,1,14.95,08/05/19 09:49,"247 Chestnut St, Austin, TX 73301" +245564,Google Phone,1,600,08/26/19 16:54,"482 Elm St, Los Angeles, CA 90001" +245565,Lightning Charging Cable,1,14.95,08/14/19 01:06,"378 9th St, Atlanta, GA 30301" +245566,Wired Headphones,1,11.99,08/13/19 22:49,"329 South St, Austin, TX 73301" +245567,AA Batteries (4-pack),1,3.84,08/30/19 08:35,"837 Lakeview St, Los Angeles, CA 90001" +245568,34in Ultrawide Monitor,1,379.99,08/04/19 14:30,"647 Chestnut St, Dallas, TX 75001" +245569,Apple Airpods Headphones,1,150,08/17/19 17:34,"164 10th St, Los Angeles, CA 90001" +245570,USB-C Charging Cable,1,11.95,08/27/19 10:44,"817 Main St, Boston, MA 02215" +245571,Lightning Charging Cable,1,14.95,08/23/19 23:47,"387 Church St, Portland, OR 97035" +245572,Macbook Pro Laptop,1,1700,08/11/19 21:40,"997 14th St, Seattle, WA 98101" +245573,Flatscreen TV,1,300,08/29/19 20:06,"862 West St, Los Angeles, CA 90001" +245574,Apple Airpods Headphones,1,150,08/17/19 10:09,"821 Madison St, Seattle, WA 98101" +245575,Apple Airpods Headphones,1,150,08/21/19 21:15,"413 Johnson St, Dallas, TX 75001" +245576,Google Phone,1,600,08/04/19 11:13,"529 7th St, San Francisco, CA 94016" +245577,Bose SoundSport Headphones,1,99.99,08/31/19 07:44,"163 Spruce St, San Francisco, CA 94016" +245578,27in FHD Monitor,1,149.99,08/08/19 20:27,"35 Park St, Los Angeles, CA 90001" +245579,AA Batteries (4-pack),1,3.84,08/13/19 19:57,"686 Walnut St, Los Angeles, CA 90001" +245580,Bose SoundSport Headphones,1,99.99,08/08/19 20:26,"706 Ridge St, Dallas, TX 75001" +245581,AAA Batteries (4-pack),2,2.99,08/16/19 19:04,"157 Walnut St, Atlanta, GA 30301" +245582,USB-C Charging Cable,1,11.95,08/29/19 12:11,"492 Meadow St, San Francisco, CA 94016" +245583,Lightning Charging Cable,1,14.95,08/17/19 15:09,"760 Madison St, Seattle, WA 98101" +245584,Lightning Charging Cable,1,14.95,08/03/19 20:21,"467 Meadow St, Los Angeles, CA 90001" +245585,Wired Headphones,1,11.99,08/06/19 16:46,"219 South St, Boston, MA 02215" +245586,AA Batteries (4-pack),1,3.84,08/08/19 08:25,"841 Maple St, Los Angeles, CA 90001" +245587,27in FHD Monitor,1,149.99,08/26/19 18:26,"890 Maple St, San Francisco, CA 94016" +245588,Lightning Charging Cable,1,14.95,08/26/19 16:13,"453 Jefferson St, Dallas, TX 75001" +245589,AA Batteries (4-pack),1,3.84,08/08/19 17:29,"712 Lake St, Portland, OR 97035" +245590,iPhone,1,700,08/04/19 15:12,"597 13th St, San Francisco, CA 94016" +245591,iPhone,1,700,08/25/19 13:33,"815 2nd St, San Francisco, CA 94016" +245592,27in 4K Gaming Monitor,1,389.99,08/25/19 19:06,"302 Center St, Boston, MA 02215" +245593,USB-C Charging Cable,1,11.95,08/04/19 22:48,"821 Forest St, New York City, NY 10001" +245594,Lightning Charging Cable,1,14.95,08/25/19 05:54,"64 Wilson St, Los Angeles, CA 90001" +245595,LG Dryer,1,600.0,08/04/19 12:51,"411 Jackson St, Los Angeles, CA 90001" +245596,Apple Airpods Headphones,1,150,08/25/19 08:56,"452 West St, Los Angeles, CA 90001" +245597,20in Monitor,1,109.99,08/31/19 12:59,"126 Lake St, Portland, OR 97035" +245598,AA Batteries (4-pack),1,3.84,08/26/19 16:15,"187 Ridge St, San Francisco, CA 94016" +245599,USB-C Charging Cable,1,11.95,08/30/19 08:01,"764 12th St, Portland, ME 04101" +245600,Lightning Charging Cable,1,14.95,08/12/19 20:56,"978 South St, New York City, NY 10001" +245601,Lightning Charging Cable,1,14.95,08/12/19 17:20,"522 Lincoln St, Los Angeles, CA 90001" +245602,USB-C Charging Cable,3,11.95,08/06/19 14:14,"585 Jefferson St, Seattle, WA 98101" +245603,iPhone,1,700,08/28/19 17:31,"741 Elm St, Los Angeles, CA 90001" +245603,Wired Headphones,1,11.99,08/28/19 17:31,"741 Elm St, Los Angeles, CA 90001" +245604,34in Ultrawide Monitor,1,379.99,08/18/19 06:39,"209 10th St, New York City, NY 10001" +245605,27in FHD Monitor,1,149.99,08/20/19 21:24,"195 Church St, New York City, NY 10001" +245606,Wired Headphones,1,11.99,08/21/19 15:57,"409 Willow St, New York City, NY 10001" +245607,Wired Headphones,1,11.99,08/20/19 12:58,"471 5th St, New York City, NY 10001" +245608,Wired Headphones,1,11.99,08/06/19 12:12,"903 Dogwood St, Portland, ME 04101" +245609,USB-C Charging Cable,1,11.95,08/04/19 17:23,"46 Church St, San Francisco, CA 94016" +245610,USB-C Charging Cable,1,11.95,08/04/19 09:30,"412 Adams St, Dallas, TX 75001" +245611,Flatscreen TV,1,300,08/04/19 17:15,"563 Ridge St, San Francisco, CA 94016" +245612,iPhone,1,700,08/29/19 21:36,"869 Church St, Atlanta, GA 30301" +245613,Bose SoundSport Headphones,1,99.99,08/20/19 20:02,"71 River St, Boston, MA 02215" +245614,AAA Batteries (4-pack),2,2.99,08/05/19 16:58,"806 Wilson St, Austin, TX 73301" +245615,Wired Headphones,1,11.99,08/10/19 14:46,"918 Sunset St, San Francisco, CA 94016" +245616,USB-C Charging Cable,1,11.95,08/10/19 16:51,"284 Washington St, Los Angeles, CA 90001" +245617,AA Batteries (4-pack),1,3.84,08/02/19 16:22,"645 11th St, Atlanta, GA 30301" +245618,iPhone,1,700,08/23/19 16:51,"946 West St, Austin, TX 73301" +245619,AA Batteries (4-pack),1,3.84,08/22/19 16:23,"524 9th St, Dallas, TX 75001" +245620,Wired Headphones,1,11.99,08/06/19 16:06,"712 Lake St, San Francisco, CA 94016" +245621,34in Ultrawide Monitor,1,379.99,08/17/19 18:13,"868 Jackson St, San Francisco, CA 94016" +245622,Bose SoundSport Headphones,1,99.99,08/10/19 15:51,"625 Pine St, Dallas, TX 75001" +245623,USB-C Charging Cable,1,11.95,08/20/19 22:21,"566 5th St, Dallas, TX 75001" +245624,Lightning Charging Cable,1,14.95,08/21/19 00:03,"846 Jefferson St, Boston, MA 02215" +245625,AA Batteries (4-pack),6,3.84,08/24/19 07:48,"105 Cherry St, Los Angeles, CA 90001" +245626,Bose SoundSport Headphones,1,99.99,08/08/19 21:16,"593 Dogwood St, New York City, NY 10001" +245627,Wired Headphones,1,11.99,08/30/19 12:24,"476 Cedar St, Dallas, TX 75001" +245628,Lightning Charging Cable,1,14.95,08/16/19 12:26,"248 West St, Seattle, WA 98101" +245629,Apple Airpods Headphones,1,150,08/12/19 20:35,"372 Spruce St, San Francisco, CA 94016" +245630,27in FHD Monitor,1,149.99,08/29/19 11:41,"183 Johnson St, Seattle, WA 98101" +245631,Flatscreen TV,1,300,08/23/19 18:51,"16 Willow St, Los Angeles, CA 90001" +245632,Lightning Charging Cable,1,14.95,08/31/19 18:43,"395 Wilson St, New York City, NY 10001" +245633,Wired Headphones,2,11.99,08/26/19 21:48,"310 Madison St, Los Angeles, CA 90001" +245634,Lightning Charging Cable,1,14.95,08/03/19 23:19,"735 6th St, Los Angeles, CA 90001" +245635,Lightning Charging Cable,1,14.95,08/11/19 09:12,"432 North St, New York City, NY 10001" +245636,Bose SoundSport Headphones,1,99.99,08/20/19 20:08,"505 Lake St, Dallas, TX 75001" +245637,Google Phone,1,600,08/12/19 14:51,"830 Walnut St, Los Angeles, CA 90001" +245638,Wired Headphones,1,11.99,08/04/19 12:30,"475 Spruce St, Dallas, TX 75001" +245639,USB-C Charging Cable,1,11.95,08/25/19 11:59,"192 14th St, Los Angeles, CA 90001" +245640,USB-C Charging Cable,1,11.95,08/23/19 11:51,"239 7th St, Los Angeles, CA 90001" +245641,USB-C Charging Cable,1,11.95,08/07/19 10:03,"776 River St, Dallas, TX 75001" +245642,Macbook Pro Laptop,1,1700,08/16/19 17:00,"847 Elm St, San Francisco, CA 94016" +245643,ThinkPad Laptop,1,999.99,08/24/19 19:45,"606 Main St, Seattle, WA 98101" +245644,Bose SoundSport Headphones,1,99.99,08/18/19 16:53,"791 12th St, Atlanta, GA 30301" +245645,34in Ultrawide Monitor,1,379.99,08/02/19 17:28,"398 9th St, Portland, ME 04101" +245646,USB-C Charging Cable,1,11.95,08/29/19 21:52,"555 Lincoln St, Seattle, WA 98101" +245647,AA Batteries (4-pack),1,3.84,08/15/19 12:31,"748 Meadow St, Seattle, WA 98101" +245648,Bose SoundSport Headphones,1,99.99,08/28/19 16:15,"279 Adams St, San Francisco, CA 94016" +245648,AA Batteries (4-pack),1,3.84,08/28/19 16:15,"279 Adams St, San Francisco, CA 94016" +245649,AA Batteries (4-pack),1,3.84,08/14/19 20:46,"916 Forest St, Boston, MA 02215" +245650,Lightning Charging Cable,1,14.95,08/25/19 20:40,"963 6th St, Austin, TX 73301" +245651,Google Phone,1,600,08/12/19 16:55,"885 Park St, Los Angeles, CA 90001" +245652,AA Batteries (4-pack),1,3.84,08/23/19 10:50,"502 1st St, Seattle, WA 98101" +245653,Lightning Charging Cable,2,14.95,08/02/19 16:18,"487 9th St, New York City, NY 10001" +245654,AAA Batteries (4-pack),1,2.99,08/02/19 14:40,"743 6th St, San Francisco, CA 94016" +245655,iPhone,1,700,08/01/19 15:35,"340 Church St, Los Angeles, CA 90001" +245655,Lightning Charging Cable,1,14.95,08/01/19 15:35,"340 Church St, Los Angeles, CA 90001" +245656,Apple Airpods Headphones,1,150,08/23/19 12:24,"742 Spruce St, Los Angeles, CA 90001" +245657,Apple Airpods Headphones,1,150,08/31/19 07:54,"851 Madison St, New York City, NY 10001" +245658,27in FHD Monitor,1,149.99,08/10/19 21:18,"470 Main St, New York City, NY 10001" +245659,Lightning Charging Cable,1,14.95,08/31/19 07:00,"10 9th St, Los Angeles, CA 90001" +245660,USB-C Charging Cable,2,11.95,08/31/19 18:45,"714 13th St, Los Angeles, CA 90001" +245661,Lightning Charging Cable,1,14.95,08/25/19 23:14,"603 Jefferson St, San Francisco, CA 94016" +245662,Wired Headphones,1,11.99,08/30/19 01:46,"373 Meadow St, Dallas, TX 75001" +245663,AAA Batteries (4-pack),3,2.99,08/07/19 05:17,"562 Spruce St, San Francisco, CA 94016" +245664,Lightning Charging Cable,1,14.95,08/10/19 06:56,"379 4th St, San Francisco, CA 94016" +245665,AA Batteries (4-pack),1,3.84,08/04/19 10:23,"70 11th St, San Francisco, CA 94016" +245666,AA Batteries (4-pack),1,3.84,08/11/19 15:45,"891 6th St, San Francisco, CA 94016" +245667,Bose SoundSport Headphones,1,99.99,08/07/19 10:58,"992 Dogwood St, Los Angeles, CA 90001" +245668,Apple Airpods Headphones,1,150,08/13/19 10:21,"250 Church St, Los Angeles, CA 90001" +245669,Wired Headphones,1,11.99,08/09/19 13:53,"203 Maple St, Los Angeles, CA 90001" +245670,Lightning Charging Cable,2,14.95,08/02/19 11:21,"781 Highland St, New York City, NY 10001" +245671,AA Batteries (4-pack),1,3.84,08/30/19 10:47,"661 Pine St, Boston, MA 02215" +245672,AA Batteries (4-pack),1,3.84,08/09/19 12:43,"643 2nd St, San Francisco, CA 94016" +245673,Apple Airpods Headphones,1,150,08/05/19 07:18,"975 Main St, Portland, OR 97035" +245674,34in Ultrawide Monitor,1,379.99,08/30/19 14:42,"774 Park St, Austin, TX 73301" +245675,Macbook Pro Laptop,1,1700,08/24/19 20:35,"971 9th St, New York City, NY 10001" +245676,27in FHD Monitor,1,149.99,08/26/19 11:33,"144 10th St, San Francisco, CA 94016" +245677,Bose SoundSport Headphones,1,99.99,08/09/19 17:03,"561 River St, San Francisco, CA 94016" +245678,Lightning Charging Cable,1,14.95,08/04/19 12:02,"693 4th St, San Francisco, CA 94016" +245679,Google Phone,1,600,08/09/19 11:28,"982 Forest St, New York City, NY 10001" +245680,Lightning Charging Cable,1,14.95,08/19/19 16:32,"340 Lake St, San Francisco, CA 94016" +245681,Lightning Charging Cable,1,14.95,08/04/19 17:52,"999 Church St, Los Angeles, CA 90001" +245682,AAA Batteries (4-pack),1,2.99,08/25/19 18:02,"368 9th St, San Francisco, CA 94016" +245683,20in Monitor,1,109.99,08/23/19 11:44,"984 Walnut St, Seattle, WA 98101" +245684,USB-C Charging Cable,1,11.95,08/31/19 20:42,"291 Forest St, San Francisco, CA 94016" +245685,AA Batteries (4-pack),1,3.84,08/11/19 19:47,"300 Walnut St, Los Angeles, CA 90001" +245686,AAA Batteries (4-pack),1,2.99,08/31/19 21:49,"687 South St, San Francisco, CA 94016" +245687,Google Phone,1,600,08/09/19 10:47,"393 Adams St, Los Angeles, CA 90001" +245688,AAA Batteries (4-pack),2,2.99,08/07/19 09:52,"67 Adams St, San Francisco, CA 94016" +245689,Wired Headphones,1,11.99,08/26/19 11:54,"197 Jefferson St, Atlanta, GA 30301" +245690,AAA Batteries (4-pack),4,2.99,08/10/19 19:47,"205 Spruce St, Atlanta, GA 30301" +245691,Lightning Charging Cable,1,14.95,08/10/19 20:21,"750 Lincoln St, Los Angeles, CA 90001" +245692,ThinkPad Laptop,1,999.99,08/24/19 10:30,"675 Hickory St, Los Angeles, CA 90001" +245693,ThinkPad Laptop,1,999.99,08/05/19 12:48,"938 10th St, San Francisco, CA 94016" +245694,USB-C Charging Cable,1,11.95,08/11/19 18:55,"655 North St, New York City, NY 10001" +245695,USB-C Charging Cable,1,11.95,08/15/19 00:44,"237 Walnut St, Atlanta, GA 30301" +245696,27in FHD Monitor,1,149.99,08/14/19 21:25,"192 West St, Dallas, TX 75001" +245697,34in Ultrawide Monitor,1,379.99,08/10/19 12:23,"694 Washington St, Dallas, TX 75001" +245698,Bose SoundSport Headphones,1,99.99,08/19/19 12:15,"189 Church St, San Francisco, CA 94016" +245699,AAA Batteries (4-pack),1,2.99,08/30/19 18:49,"629 West St, Los Angeles, CA 90001" +245700,Flatscreen TV,1,300,08/20/19 23:04,"541 Cedar St, Los Angeles, CA 90001" +245701,Wired Headphones,1,11.99,08/27/19 07:39,"397 8th St, Dallas, TX 75001" +245702,USB-C Charging Cable,1,11.95,08/29/19 14:04,"6 2nd St, Portland, OR 97035" +245703,20in Monitor,1,109.99,08/19/19 13:48,"131 Cedar St, San Francisco, CA 94016" +245704,AAA Batteries (4-pack),1,2.99,08/04/19 22:39,"354 Forest St, Austin, TX 73301" +245705,Wired Headphones,1,11.99,08/12/19 12:20,"75 Adams St, Los Angeles, CA 90001" +245706,Macbook Pro Laptop,1,1700,08/05/19 14:36,"474 Lincoln St, Austin, TX 73301" +245707,ThinkPad Laptop,1,999.99,08/21/19 21:45,"363 5th St, Portland, OR 97035" +245708,27in FHD Monitor,1,149.99,08/25/19 15:47,"236 Lakeview St, San Francisco, CA 94016" +245709,ThinkPad Laptop,1,999.99,08/22/19 15:49,"833 5th St, Austin, TX 73301" +245710,Google Phone,1,600,08/19/19 11:30,"363 Elm St, San Francisco, CA 94016" +245711,USB-C Charging Cable,1,11.95,08/13/19 11:50,"403 Madison St, Los Angeles, CA 90001" +245712,Lightning Charging Cable,1,14.95,08/04/19 08:53,"727 Adams St, San Francisco, CA 94016" +245713,AAA Batteries (4-pack),1,2.99,08/08/19 10:13,"190 Lake St, Seattle, WA 98101" +245714,Apple Airpods Headphones,1,150,08/17/19 13:53,"658 10th St, New York City, NY 10001" +245715,USB-C Charging Cable,1,11.95,08/03/19 12:15,"557 Lake St, Atlanta, GA 30301" +245716,Lightning Charging Cable,1,14.95,08/13/19 12:54,"442 Jackson St, Los Angeles, CA 90001" +245717,iPhone,1,700,08/06/19 12:25,"432 Center St, Atlanta, GA 30301" +245718,USB-C Charging Cable,1,11.95,08/04/19 20:33,"790 5th St, New York City, NY 10001" +245719,Apple Airpods Headphones,1,150,08/31/19 14:18,"595 6th St, Boston, MA 02215" +245720,AA Batteries (4-pack),2,3.84,08/05/19 12:34,"460 Pine St, Boston, MA 02215" +245721,Apple Airpods Headphones,1,150,08/19/19 19:47,"952 Washington St, San Francisco, CA 94016" +245722,Apple Airpods Headphones,1,150,08/30/19 13:12,"112 Cherry St, Los Angeles, CA 90001" +245723,Lightning Charging Cable,1,14.95,08/15/19 06:22,"132 Lake St, Boston, MA 02215" +245724,Lightning Charging Cable,1,14.95,08/14/19 09:06,"210 West St, San Francisco, CA 94016" +245725,AAA Batteries (4-pack),2,2.99,08/31/19 12:17,"486 Hill St, New York City, NY 10001" +245726,Google Phone,1,600,08/31/19 21:14,"90 Lincoln St, New York City, NY 10001" +245727,Vareebadd Phone,1,400,08/26/19 17:44,"443 9th St, Dallas, TX 75001" +245727,USB-C Charging Cable,1,11.95,08/26/19 17:44,"443 9th St, Dallas, TX 75001" +245728,Lightning Charging Cable,1,14.95,08/07/19 17:27,"735 Willow St, Los Angeles, CA 90001" +245729,AAA Batteries (4-pack),2,2.99,08/15/19 19:50,"590 Cedar St, San Francisco, CA 94016" +245730,20in Monitor,1,109.99,08/12/19 18:49,"589 4th St, Los Angeles, CA 90001" +245731,Lightning Charging Cable,1,14.95,08/22/19 21:51,"272 Main St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +245732,27in FHD Monitor,1,149.99,08/29/19 16:31,"968 Lake St, San Francisco, CA 94016" +245733,Bose SoundSport Headphones,1,99.99,08/10/19 17:48,"340 11th St, Portland, OR 97035" +245734,Lightning Charging Cable,1,14.95,08/01/19 21:40,"965 Maple St, Atlanta, GA 30301" +245735,27in FHD Monitor,1,149.99,08/10/19 12:27,"472 5th St, Atlanta, GA 30301" +245736,iPhone,1,700,08/19/19 17:38,"849 4th St, Seattle, WA 98101" +245736,Lightning Charging Cable,2,14.95,08/19/19 17:38,"849 4th St, Seattle, WA 98101" +245737,Apple Airpods Headphones,1,150,08/04/19 09:26,"75 14th St, Los Angeles, CA 90001" +245738,AAA Batteries (4-pack),1,2.99,08/21/19 19:10,"557 Willow St, Seattle, WA 98101" +245739,USB-C Charging Cable,1,11.95,08/30/19 19:11,"102 8th St, Seattle, WA 98101" +245740,USB-C Charging Cable,1,11.95,08/31/19 10:34,"592 Wilson St, Los Angeles, CA 90001" +245741,Vareebadd Phone,1,400,08/22/19 11:27,"970 9th St, Seattle, WA 98101" +245742,AA Batteries (4-pack),1,3.84,08/29/19 20:51,"532 Walnut St, Seattle, WA 98101" +245743,Lightning Charging Cable,1,14.95,08/13/19 14:47,"847 Maple St, Los Angeles, CA 90001" +245744,27in FHD Monitor,1,149.99,08/07/19 20:54,"255 Sunset St, San Francisco, CA 94016" +245745,34in Ultrawide Monitor,1,379.99,08/09/19 08:54,"109 1st St, San Francisco, CA 94016" +245746,ThinkPad Laptop,1,999.99,08/28/19 14:09,"525 West St, San Francisco, CA 94016" +245747,AA Batteries (4-pack),1,3.84,08/04/19 21:13,"161 Pine St, Portland, ME 04101" +245748,AA Batteries (4-pack),1,3.84,08/28/19 21:48,"617 6th St, Los Angeles, CA 90001" +245749,USB-C Charging Cable,1,11.95,08/12/19 10:57,"68 1st St, Seattle, WA 98101" +245750,Lightning Charging Cable,1,14.95,08/03/19 16:27,"187 Chestnut St, Austin, TX 73301" +245751,iPhone,1,700,08/02/19 10:11,"235 North St, San Francisco, CA 94016" +245752,Lightning Charging Cable,1,14.95,08/14/19 16:55,"449 Chestnut St, San Francisco, CA 94016" +245753,AA Batteries (4-pack),2,3.84,08/08/19 18:32,"366 Cherry St, Austin, TX 73301" +245754,USB-C Charging Cable,1,11.95,08/22/19 23:44,"110 Center St, New York City, NY 10001" +245755,Vareebadd Phone,1,400,08/27/19 21:04,"25 Pine St, Austin, TX 73301" +245756,USB-C Charging Cable,1,11.95,08/31/19 11:31,"973 Johnson St, New York City, NY 10001" +245757,Wired Headphones,1,11.99,08/13/19 20:54,"197 7th St, San Francisco, CA 94016" +245758,27in FHD Monitor,1,149.99,08/26/19 11:49,"223 Dogwood St, New York City, NY 10001" +245759,iPhone,1,700,08/20/19 16:13,"461 9th St, Atlanta, GA 30301" +245760,Lightning Charging Cable,1,14.95,08/16/19 12:46,"81 Jackson St, Boston, MA 02215" +245761,Macbook Pro Laptop,1,1700,08/05/19 21:51,"213 9th St, San Francisco, CA 94016" +245762,USB-C Charging Cable,1,11.95,08/09/19 17:04,"262 Sunset St, Boston, MA 02215" +245763,USB-C Charging Cable,1,11.95,08/03/19 09:25,"418 9th St, Portland, ME 04101" +245764,Google Phone,1,600,08/23/19 16:36,"491 Lakeview St, Los Angeles, CA 90001" +245765,Wired Headphones,1,11.99,08/10/19 08:09,"319 Cedar St, San Francisco, CA 94016" +245766,AAA Batteries (4-pack),2,2.99,08/10/19 21:15,"178 11th St, San Francisco, CA 94016" +245767,Wired Headphones,1,11.99,08/23/19 20:49,"67 Lake St, Los Angeles, CA 90001" +245768,Flatscreen TV,1,300,08/17/19 09:38,"424 11th St, Boston, MA 02215" +245769,iPhone,1,700,08/05/19 16:28,"660 Church St, Boston, MA 02215" +245769,Lightning Charging Cable,1,14.95,08/05/19 16:28,"660 Church St, Boston, MA 02215" +245770,AAA Batteries (4-pack),2,2.99,08/02/19 20:56,"588 12th St, New York City, NY 10001" +245771,AA Batteries (4-pack),1,3.84,08/31/19 12:36,"842 Dogwood St, Boston, MA 02215" +245772,Apple Airpods Headphones,1,150,08/09/19 23:46,"405 Hill St, Boston, MA 02215" +245773,Google Phone,1,600,08/28/19 16:20,"89 Chestnut St, Boston, MA 02215" +245773,Wired Headphones,1,11.99,08/28/19 16:20,"89 Chestnut St, Boston, MA 02215" +245774,AA Batteries (4-pack),2,3.84,08/04/19 09:09,"66 Walnut St, Atlanta, GA 30301" +245775,iPhone,1,700,08/25/19 10:52,"585 Elm St, Los Angeles, CA 90001" +245775,Lightning Charging Cable,1,14.95,08/25/19 10:52,"585 Elm St, Los Angeles, CA 90001" +245776,Macbook Pro Laptop,1,1700,08/21/19 21:27,"814 Maple St, San Francisco, CA 94016" +245777,USB-C Charging Cable,1,11.95,08/21/19 10:53,"392 11th St, New York City, NY 10001" +245778,Vareebadd Phone,1,400,08/18/19 22:13,"943 Lake St, San Francisco, CA 94016" +245778,USB-C Charging Cable,1,11.95,08/18/19 22:13,"943 Lake St, San Francisco, CA 94016" +245779,ThinkPad Laptop,1,999.99,08/23/19 13:08,"965 Lakeview St, Atlanta, GA 30301" +245780,Vareebadd Phone,1,400,08/13/19 23:55,"911 Jackson St, San Francisco, CA 94016" +245781,Lightning Charging Cable,1,14.95,08/23/19 18:32,"724 Jackson St, Los Angeles, CA 90001" +245782,20in Monitor,1,109.99,08/09/19 13:36,"708 11th St, San Francisco, CA 94016" +245783,Apple Airpods Headphones,1,150,08/29/19 21:04,"914 1st St, Boston, MA 02215" +245784,AAA Batteries (4-pack),3,2.99,08/27/19 13:06,"672 12th St, New York City, NY 10001" +245785,ThinkPad Laptop,1,999.99,08/02/19 23:05,"175 14th St, San Francisco, CA 94016" +245786,AA Batteries (4-pack),1,3.84,08/09/19 22:50,"493 13th St, Seattle, WA 98101" +245787,iPhone,1,700,08/24/19 19:32,"928 Lake St, Los Angeles, CA 90001" +245788,27in 4K Gaming Monitor,1,389.99,08/04/19 14:24,"399 12th St, Seattle, WA 98101" +245789,Wired Headphones,1,11.99,08/13/19 22:59,"350 Adams St, Portland, OR 97035" +245790,AAA Batteries (4-pack),1,2.99,08/28/19 22:24,"627 Washington St, Portland, OR 97035" +245791,27in 4K Gaming Monitor,1,389.99,08/08/19 19:28,"717 14th St, San Francisco, CA 94016" +245792,AA Batteries (4-pack),1,3.84,08/09/19 18:27,"49 9th St, Boston, MA 02215" +245793,USB-C Charging Cable,1,11.95,08/10/19 21:24,"905 Madison St, Atlanta, GA 30301" +245794,Wired Headphones,1,11.99,08/18/19 06:51,"958 6th St, Atlanta, GA 30301" +245795,Bose SoundSport Headphones,1,99.99,08/01/19 18:21,"254 4th St, Austin, TX 73301" +245796,Bose SoundSport Headphones,1,99.99,08/03/19 15:23,"784 Cedar St, Austin, TX 73301" +245797,34in Ultrawide Monitor,1,379.99,08/11/19 23:59,"332 Jefferson St, San Francisco, CA 94016" +245798,USB-C Charging Cable,2,11.95,08/31/19 16:26,"283 6th St, Boston, MA 02215" +245799,Wired Headphones,1,11.99,08/14/19 09:03,"845 Lakeview St, Atlanta, GA 30301" +245800,Bose SoundSport Headphones,1,99.99,08/03/19 12:46,"69 12th St, Seattle, WA 98101" +245801,AAA Batteries (4-pack),1,2.99,08/12/19 20:53,"30 Main St, New York City, NY 10001" +245802,AA Batteries (4-pack),1,3.84,08/17/19 22:46,"934 Dogwood St, Los Angeles, CA 90001" +245803,Google Phone,1,600,08/26/19 00:57,"796 Jefferson St, Portland, OR 97035" +245804,USB-C Charging Cable,1,11.95,08/05/19 16:03,"970 Willow St, Boston, MA 02215" +245805,Lightning Charging Cable,1,14.95,08/03/19 10:29,"41 Park St, Dallas, TX 75001" +245806,Apple Airpods Headphones,1,150,08/01/19 18:24,"334 Cherry St, San Francisco, CA 94016" +245806,Lightning Charging Cable,1,14.95,08/01/19 18:24,"334 Cherry St, San Francisco, CA 94016" +245807,Google Phone,1,600,08/24/19 11:55,"736 River St, San Francisco, CA 94016" +245808,AA Batteries (4-pack),1,3.84,08/25/19 18:06,"79 Main St, Los Angeles, CA 90001" +245809,Flatscreen TV,1,300,08/04/19 09:27,"309 Johnson St, New York City, NY 10001" +245810,iPhone,1,700,08/20/19 10:35,"844 Washington St, Los Angeles, CA 90001" +245811,USB-C Charging Cable,1,11.95,08/22/19 14:13,"325 Chestnut St, New York City, NY 10001" +245812,Apple Airpods Headphones,1,150,08/30/19 07:25,"205 Dogwood St, Boston, MA 02215" +245813,Lightning Charging Cable,1,14.95,08/29/19 06:00,"191 West St, Seattle, WA 98101" +245814,iPhone,1,700,08/01/19 07:33,"372 Washington St, Austin, TX 73301" +245815,USB-C Charging Cable,1,11.95,08/04/19 22:07,"509 Chestnut St, San Francisco, CA 94016" +245816,AA Batteries (4-pack),1,3.84,08/27/19 07:40,"494 Adams St, Los Angeles, CA 90001" +245817,Wired Headphones,1,11.99,08/25/19 12:31,"827 Madison St, Atlanta, GA 30301" +245817,iPhone,1,700,08/25/19 12:31,"827 Madison St, Atlanta, GA 30301" +245818,Lightning Charging Cable,1,14.95,08/15/19 12:00,"137 Jackson St, Los Angeles, CA 90001" +245819,AA Batteries (4-pack),1,3.84,08/02/19 18:27,"150 2nd St, Portland, OR 97035" +245820,Bose SoundSport Headphones,1,99.99,08/20/19 11:15,"671 Madison St, San Francisco, CA 94016" +245821,27in FHD Monitor,1,149.99,08/29/19 10:08,"919 Sunset St, Los Angeles, CA 90001" +245822,AAA Batteries (4-pack),2,2.99,08/23/19 07:44,"874 South St, San Francisco, CA 94016" +245823,Lightning Charging Cable,1,14.95,08/02/19 19:14,"978 Lincoln St, San Francisco, CA 94016" +245824,ThinkPad Laptop,1,999.99,08/23/19 10:47,"608 Wilson St, San Francisco, CA 94016" +245824,ThinkPad Laptop,1,999.99,08/23/19 10:47,"608 Wilson St, San Francisco, CA 94016" +245825,Google Phone,1,600,08/25/19 12:35,"252 South St, Los Angeles, CA 90001" +245826,Wired Headphones,1,11.99,08/28/19 07:38,"211 Hill St, Seattle, WA 98101" +245827,Apple Airpods Headphones,1,150,08/28/19 08:03,"928 Center St, Portland, OR 97035" +245828,Bose SoundSport Headphones,1,99.99,08/20/19 12:09,"57 Lake St, Los Angeles, CA 90001" +245829,Bose SoundSport Headphones,1,99.99,08/06/19 12:03,"172 West St, San Francisco, CA 94016" +245830,Lightning Charging Cable,1,14.95,08/12/19 20:20,"678 7th St, New York City, NY 10001" +245831,27in FHD Monitor,1,149.99,08/20/19 18:04,"70 Meadow St, San Francisco, CA 94016" +245832,Flatscreen TV,1,300,08/07/19 12:30,"886 5th St, San Francisco, CA 94016" +245833,Bose SoundSport Headphones,1,99.99,08/10/19 17:53,"781 Sunset St, San Francisco, CA 94016" +245834,Lightning Charging Cable,1,14.95,08/29/19 21:22,"958 Sunset St, Portland, OR 97035" +245835,AA Batteries (4-pack),2,3.84,08/04/19 19:59,"258 Hill St, Los Angeles, CA 90001" +245836,Wired Headphones,1,11.99,08/11/19 15:36,"913 5th St, Seattle, WA 98101" +245837,AAA Batteries (4-pack),1,2.99,08/21/19 20:16,"493 Spruce St, Atlanta, GA 30301" +245838,Bose SoundSport Headphones,1,99.99,08/11/19 18:11,"601 Forest St, Austin, TX 73301" +245839,USB-C Charging Cable,1,11.95,08/03/19 22:24,"235 14th St, Los Angeles, CA 90001" +245840,Apple Airpods Headphones,1,150,08/15/19 13:17,"371 Adams St, Austin, TX 73301" +245841,Google Phone,1,600,08/08/19 01:05,"51 Johnson St, San Francisco, CA 94016" +245842,iPhone,1,700,08/13/19 17:50,"102 River St, New York City, NY 10001" +245843,27in FHD Monitor,1,149.99,08/23/19 08:17,"428 10th St, San Francisco, CA 94016" +245844,LG Dryer,1,600.0,08/27/19 09:17,"499 Elm St, Boston, MA 02215" +245845,USB-C Charging Cable,2,11.95,08/07/19 13:21,"152 Johnson St, Los Angeles, CA 90001" +245846,Lightning Charging Cable,1,14.95,08/03/19 17:33,"480 Hickory St, Portland, OR 97035" +245847,Apple Airpods Headphones,1,150,08/19/19 14:23,"636 Lake St, San Francisco, CA 94016" +245848,Wired Headphones,1,11.99,08/31/19 21:43,"457 Main St, Seattle, WA 98101" +245849,Google Phone,1,600,08/16/19 09:47,"326 Ridge St, New York City, NY 10001" +245850,Vareebadd Phone,1,400,08/09/19 13:29,"790 Hickory St, Seattle, WA 98101" +245851,Bose SoundSport Headphones,1,99.99,08/04/19 09:42,"663 Hickory St, Los Angeles, CA 90001" +245852,Lightning Charging Cable,1,14.95,08/07/19 12:45,"401 Hill St, Portland, ME 04101" +245853,AAA Batteries (4-pack),1,2.99,08/26/19 13:12,"57 Madison St, Seattle, WA 98101" +245854,Lightning Charging Cable,1,14.95,08/03/19 14:06,"526 Wilson St, Austin, TX 73301" +245855,USB-C Charging Cable,1,11.95,08/21/19 16:10,"478 Spruce St, Portland, OR 97035" +245855,AAA Batteries (4-pack),1,2.99,08/21/19 16:10,"478 Spruce St, Portland, OR 97035" +245856,Wired Headphones,1,11.99,08/28/19 19:58,"83 8th St, Los Angeles, CA 90001" +245857,AAA Batteries (4-pack),2,2.99,08/27/19 11:26,"629 Main St, San Francisco, CA 94016" +245858,AAA Batteries (4-pack),1,2.99,08/23/19 12:11,"127 Church St, San Francisco, CA 94016" +245859,AA Batteries (4-pack),2,3.84,08/24/19 13:41,"392 Meadow St, New York City, NY 10001" +245860,USB-C Charging Cable,1,11.95,08/17/19 19:57,"474 7th St, Atlanta, GA 30301" +245861,AAA Batteries (4-pack),1,2.99,08/19/19 13:20,"153 Dogwood St, New York City, NY 10001" +245862,AA Batteries (4-pack),2,3.84,08/06/19 10:27,"69 Johnson St, Los Angeles, CA 90001" +245863,AA Batteries (4-pack),4,3.84,08/08/19 17:00,"738 Madison St, Dallas, TX 75001" +245864,AAA Batteries (4-pack),2,2.99,08/02/19 12:43,"14 Park St, Boston, MA 02215" +245865,27in FHD Monitor,1,149.99,08/05/19 18:39,"234 Highland St, Austin, TX 73301" +245866,AAA Batteries (4-pack),1,2.99,08/17/19 23:57,"651 Washington St, Los Angeles, CA 90001" +245867,iPhone,1,700,08/02/19 16:17,"100 Hickory St, Portland, ME 04101" +245868,27in 4K Gaming Monitor,1,389.99,08/11/19 20:10,"165 Adams St, Boston, MA 02215" +245869,Google Phone,1,600,08/03/19 15:41,"363 Hill St, Portland, ME 04101" +245870,27in 4K Gaming Monitor,1,389.99,08/14/19 15:08,"716 Sunset St, Seattle, WA 98101" +245871,AA Batteries (4-pack),1,3.84,08/18/19 18:02,"280 4th St, San Francisco, CA 94016" +245872,AA Batteries (4-pack),1,3.84,08/06/19 20:04,"310 Hill St, Seattle, WA 98101" +245873,Wired Headphones,1,11.99,08/02/19 16:28,"854 Walnut St, Austin, TX 73301" +245874,AAA Batteries (4-pack),1,2.99,08/25/19 01:18,"804 14th St, Los Angeles, CA 90001" +245875,USB-C Charging Cable,1,11.95,08/26/19 15:12,"756 Willow St, Los Angeles, CA 90001" +245876,Lightning Charging Cable,1,14.95,08/22/19 17:58,"643 Sunset St, Seattle, WA 98101" +245877,Apple Airpods Headphones,1,150,08/12/19 09:57,"382 Pine St, New York City, NY 10001" +245878,Wired Headphones,1,11.99,08/28/19 18:16,"448 Walnut St, Los Angeles, CA 90001" +245879,Google Phone,1,600,08/02/19 00:36,"206 Sunset St, Dallas, TX 75001" +245879,Wired Headphones,1,11.99,08/02/19 00:36,"206 Sunset St, Dallas, TX 75001" +245880,Google Phone,1,600,08/03/19 02:22,"353 Johnson St, Atlanta, GA 30301" +245881,Flatscreen TV,1,300,09/01/19 02:27,"362 Wilson St, Atlanta, GA 30301" +245882,Lightning Charging Cable,1,14.95,08/31/19 10:15,"943 Johnson St, New York City, NY 10001" +245883,iPhone,1,700,08/25/19 12:01,"195 Wilson St, Portland, OR 97035" +245883,Lightning Charging Cable,1,14.95,08/25/19 12:01,"195 Wilson St, Portland, OR 97035" +245884,Bose SoundSport Headphones,1,99.99,08/11/19 10:39,"195 12th St, San Francisco, CA 94016" +245885,USB-C Charging Cable,1,11.95,08/14/19 00:38,"808 Lake St, San Francisco, CA 94016" +245886,Lightning Charging Cable,1,14.95,08/02/19 01:25,"417 Forest St, San Francisco, CA 94016" +245887,Flatscreen TV,1,300,08/07/19 22:52,"764 Dogwood St, San Francisco, CA 94016" +245888,AA Batteries (4-pack),1,3.84,08/19/19 01:38,"182 Chestnut St, Los Angeles, CA 90001" +245889,AA Batteries (4-pack),1,3.84,08/18/19 11:08,"632 Church St, Austin, TX 73301" +245889,Wired Headphones,1,11.99,08/18/19 11:08,"632 Church St, Austin, TX 73301" +245890,20in Monitor,1,109.99,08/17/19 18:49,"726 Johnson St, Los Angeles, CA 90001" +245891,USB-C Charging Cable,1,11.95,08/04/19 09:57,"263 1st St, Los Angeles, CA 90001" +245891,AAA Batteries (4-pack),1,2.99,08/04/19 09:57,"263 1st St, Los Angeles, CA 90001" +245892,USB-C Charging Cable,2,11.95,08/19/19 08:42,"466 Maple St, Boston, MA 02215" +245893,Apple Airpods Headphones,1,150,08/06/19 16:07,"212 Cherry St, San Francisco, CA 94016" +245894,Wired Headphones,1,11.99,08/10/19 14:55,"841 Madison St, Boston, MA 02215" +245895,Wired Headphones,1,11.99,08/29/19 16:47,"81 Pine St, Los Angeles, CA 90001" +245896,Vareebadd Phone,1,400,08/23/19 23:41,"833 Wilson St, Dallas, TX 75001" +245897,USB-C Charging Cable,1,11.95,08/25/19 11:54,"608 Hickory St, San Francisco, CA 94016" +245898,Flatscreen TV,1,300,08/14/19 22:46,"587 North St, Seattle, WA 98101" +245899,Flatscreen TV,1,300,08/22/19 22:28,"31 Adams St, Boston, MA 02215" +245900,Macbook Pro Laptop,1,1700,08/30/19 17:55,"305 Jefferson St, New York City, NY 10001" +245901,27in FHD Monitor,1,149.99,08/14/19 20:34,"102 Chestnut St, Dallas, TX 75001" +245902,Wired Headphones,1,11.99,08/26/19 23:13,"271 Elm St, Seattle, WA 98101" +245903,Lightning Charging Cable,1,14.95,08/02/19 16:39,"947 Hill St, Atlanta, GA 30301" +245904,ThinkPad Laptop,1,999.99,08/03/19 13:43,"731 Wilson St, New York City, NY 10001" +245905,Macbook Pro Laptop,1,1700,08/05/19 21:31,"958 Sunset St, Boston, MA 02215" +245906,27in FHD Monitor,1,149.99,08/25/19 00:19,"167 Center St, Austin, TX 73301" +245907,Google Phone,1,600,08/08/19 13:32,"751 Chestnut St, New York City, NY 10001" +245907,USB-C Charging Cable,1,11.95,08/08/19 13:32,"751 Chestnut St, New York City, NY 10001" +245908,Bose SoundSport Headphones,1,99.99,08/04/19 14:40,"1 7th St, Portland, OR 97035" +245909,27in 4K Gaming Monitor,1,389.99,08/09/19 15:43,"65 Park St, Seattle, WA 98101" +245910,AA Batteries (4-pack),1,3.84,08/17/19 20:26,"328 8th St, Boston, MA 02215" +245911,USB-C Charging Cable,1,11.95,08/31/19 12:01,"95 Lincoln St, New York City, NY 10001" +245912,Wired Headphones,1,11.99,08/03/19 19:43,"237 9th St, New York City, NY 10001" +245913,Wired Headphones,2,11.99,08/28/19 20:23,"743 Highland St, San Francisco, CA 94016" +245914,Bose SoundSport Headphones,1,99.99,08/12/19 08:18,"480 10th St, Atlanta, GA 30301" +245915,AA Batteries (4-pack),1,3.84,08/17/19 20:47,"356 Madison St, Seattle, WA 98101" +245915,34in Ultrawide Monitor,1,379.99,08/17/19 20:47,"356 Madison St, Seattle, WA 98101" +245916,Macbook Pro Laptop,1,1700,08/23/19 00:05,"450 Madison St, Portland, OR 97035" +245917,Apple Airpods Headphones,1,150,08/10/19 18:46,"893 Elm St, Boston, MA 02215" +245918,AA Batteries (4-pack),1,3.84,08/03/19 11:11,"425 Ridge St, Atlanta, GA 30301" +245919,ThinkPad Laptop,1,999.99,08/11/19 11:20,"907 Elm St, San Francisco, CA 94016" +245920,AA Batteries (4-pack),2,3.84,08/08/19 08:19,"412 Willow St, Atlanta, GA 30301" +245921,Macbook Pro Laptop,1,1700,08/03/19 19:16,"211 Spruce St, San Francisco, CA 94016" +245922,iPhone,1,700,08/04/19 11:50,"106 Lincoln St, Dallas, TX 75001" +245922,Wired Headphones,1,11.99,08/04/19 11:50,"106 Lincoln St, Dallas, TX 75001" +245923,Macbook Pro Laptop,1,1700,08/09/19 10:13,"589 Cherry St, Boston, MA 02215" +245924,AAA Batteries (4-pack),1,2.99,08/17/19 13:56,"803 West St, San Francisco, CA 94016" +245925,Flatscreen TV,1,300,08/16/19 19:13,"738 Cherry St, San Francisco, CA 94016" +245925,Macbook Pro Laptop,1,1700,08/16/19 19:13,"738 Cherry St, San Francisco, CA 94016" +245926,AA Batteries (4-pack),1,3.84,08/09/19 16:01,"262 South St, New York City, NY 10001" +245927,AA Batteries (4-pack),1,3.84,08/31/19 12:05,"878 River St, New York City, NY 10001" +245928,iPhone,1,700,08/13/19 23:24,"275 Elm St, San Francisco, CA 94016" +245929,Lightning Charging Cable,1,14.95,08/21/19 12:58,"445 Walnut St, Austin, TX 73301" +245930,Wired Headphones,1,11.99,08/27/19 10:48,"651 2nd St, Atlanta, GA 30301" +245931,20in Monitor,1,109.99,08/17/19 22:06,"256 River St, Seattle, WA 98101" +245932,Lightning Charging Cable,1,14.95,08/28/19 11:26,"596 Forest St, San Francisco, CA 94016" +245933,Lightning Charging Cable,2,14.95,08/31/19 14:16,"95 5th St, New York City, NY 10001" +245934,Lightning Charging Cable,1,14.95,08/25/19 15:28,"133 Park St, Boston, MA 02215" +245935,Lightning Charging Cable,1,14.95,08/23/19 18:38,"556 South St, Austin, TX 73301" +245936,USB-C Charging Cable,1,11.95,08/15/19 21:10,"140 Pine St, Los Angeles, CA 90001" +245937,Bose SoundSport Headphones,1,99.99,08/09/19 21:12,"918 Jefferson St, Atlanta, GA 30301" +245938,ThinkPad Laptop,1,999.99,08/10/19 13:53,"179 1st St, New York City, NY 10001" +245939,Lightning Charging Cable,1,14.95,08/18/19 14:51,"586 Sunset St, San Francisco, CA 94016" +245940,Lightning Charging Cable,1,14.95,08/03/19 00:52,"460 Forest St, Los Angeles, CA 90001" +245941,Lightning Charging Cable,1,14.95,08/28/19 17:38,"913 6th St, New York City, NY 10001" +245942,Lightning Charging Cable,1,14.95,08/21/19 20:34,"992 Hickory St, San Francisco, CA 94016" +245943,USB-C Charging Cable,1,11.95,08/11/19 13:10,"409 Ridge St, San Francisco, CA 94016" +245944,AAA Batteries (4-pack),1,2.99,08/23/19 11:47,"98 Main St, New York City, NY 10001" +245945,USB-C Charging Cable,1,11.95,08/01/19 09:54,"352 Cedar St, Boston, MA 02215" +245946,Google Phone,1,600,08/23/19 04:21,"714 River St, Boston, MA 02215" +245947,Wired Headphones,1,11.99,08/28/19 15:41,"805 Main St, Atlanta, GA 30301" +245948,ThinkPad Laptop,1,999.99,08/18/19 05:12,"818 Hill St, Atlanta, GA 30301" +245949,Lightning Charging Cable,1,14.95,08/22/19 14:01,"621 Hill St, Boston, MA 02215" +245950,Lightning Charging Cable,1,14.95,08/29/19 16:55,"303 Lake St, Portland, OR 97035" +245951,AAA Batteries (4-pack),4,2.99,08/29/19 20:26,"593 Willow St, Atlanta, GA 30301" +245952,USB-C Charging Cable,1,11.95,08/11/19 10:39,"748 2nd St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +245953,USB-C Charging Cable,1,11.95,08/26/19 22:16,"270 5th St, Dallas, TX 75001" +245954,Bose SoundSport Headphones,1,99.99,08/03/19 19:34,"575 River St, Atlanta, GA 30301" +245955,Wired Headphones,1,11.99,08/22/19 15:53,"139 Walnut St, Atlanta, GA 30301" +245956,AAA Batteries (4-pack),1,2.99,08/22/19 23:39,"240 South St, Austin, TX 73301" +245957,Apple Airpods Headphones,1,150,08/01/19 18:40,"861 Willow St, New York City, NY 10001" +245958,Lightning Charging Cable,1,14.95,08/30/19 23:45,"863 Lakeview St, New York City, NY 10001" +245959,Wired Headphones,1,11.99,08/09/19 08:42,"215 2nd St, Seattle, WA 98101" +245960,USB-C Charging Cable,1,11.95,08/14/19 11:41,"507 Center St, San Francisco, CA 94016" +245961,AA Batteries (4-pack),2,3.84,08/07/19 20:30,"984 5th St, Dallas, TX 75001" +245962,USB-C Charging Cable,1,11.95,08/26/19 08:30,"590 Church St, Los Angeles, CA 90001" +245963,Macbook Pro Laptop,1,1700,08/28/19 16:29,"876 11th St, Austin, TX 73301" +245964,Lightning Charging Cable,1,14.95,08/18/19 19:54,"102 Meadow St, Dallas, TX 75001" +245965,AAA Batteries (4-pack),1,2.99,08/18/19 14:38,"937 9th St, Boston, MA 02215" +245966,27in FHD Monitor,1,149.99,08/11/19 12:31,"412 South St, Los Angeles, CA 90001" +245967,Lightning Charging Cable,1,14.95,08/09/19 12:09,"249 Adams St, San Francisco, CA 94016" +245968,USB-C Charging Cable,1,11.95,08/29/19 17:56,"575 North St, Los Angeles, CA 90001" +245969,USB-C Charging Cable,1,11.95,08/23/19 20:38,"642 Lincoln St, San Francisco, CA 94016" +245970,27in 4K Gaming Monitor,1,389.99,08/31/19 02:37,"838 North St, San Francisco, CA 94016" +245971,Flatscreen TV,1,300,08/24/19 11:36,"644 Adams St, Boston, MA 02215" +245972,34in Ultrawide Monitor,1,379.99,08/21/19 07:38,"936 Sunset St, Seattle, WA 98101" +245973,20in Monitor,1,109.99,08/19/19 11:40,"521 Spruce St, San Francisco, CA 94016" +245974,AAA Batteries (4-pack),2,2.99,08/28/19 17:42,"358 13th St, Seattle, WA 98101" +245975,AA Batteries (4-pack),1,3.84,08/17/19 18:15,"395 Sunset St, Atlanta, GA 30301" +245976,Vareebadd Phone,1,400,08/21/19 09:36,"963 Lake St, Dallas, TX 75001" +245977,Apple Airpods Headphones,1,150,08/24/19 18:18,"534 8th St, Atlanta, GA 30301" +245978,Google Phone,1,600,08/29/19 14:36,"849 8th St, San Francisco, CA 94016" +245979,USB-C Charging Cable,1,11.95,08/09/19 18:37,"579 14th St, Atlanta, GA 30301" +245980,Flatscreen TV,1,300,08/05/19 10:08,"426 Lincoln St, Boston, MA 02215" +245981,USB-C Charging Cable,1,11.95,08/25/19 18:17,"572 6th St, New York City, NY 10001" +245982,AAA Batteries (4-pack),2,2.99,08/02/19 19:44,"205 Lake St, Atlanta, GA 30301" +245983,Wired Headphones,1,11.99,08/13/19 12:37,"605 10th St, San Francisco, CA 94016" +245984,LG Washing Machine,1,600.0,08/07/19 23:28,"385 Hill St, Boston, MA 02215" +245985,Wired Headphones,1,11.99,08/29/19 16:41,"194 Walnut St, Dallas, TX 75001" +245986,Flatscreen TV,1,300,08/08/19 23:15,"586 Center St, Los Angeles, CA 90001" +245987,ThinkPad Laptop,1,999.99,08/04/19 10:36,"852 Center St, Austin, TX 73301" +245988,Flatscreen TV,1,300,08/02/19 11:21,"137 South St, Los Angeles, CA 90001" +245989,Apple Airpods Headphones,1,150,08/18/19 12:07,"136 Highland St, New York City, NY 10001" +245990,Flatscreen TV,1,300,08/26/19 21:37,"177 Pine St, San Francisco, CA 94016" +245991,Lightning Charging Cable,1,14.95,08/19/19 20:12,"419 Washington St, Boston, MA 02215" +245991,USB-C Charging Cable,1,11.95,08/19/19 20:12,"419 Washington St, Boston, MA 02215" +245992,Flatscreen TV,1,300,08/04/19 11:29,"254 Main St, New York City, NY 10001" +245993,Wired Headphones,1,11.99,08/13/19 13:43,"420 Maple St, New York City, NY 10001" +245994,USB-C Charging Cable,1,11.95,08/26/19 10:24,"864 Jackson St, Seattle, WA 98101" +245995,Bose SoundSport Headphones,1,99.99,08/12/19 11:07,"821 Johnson St, Seattle, WA 98101" +245996,27in 4K Gaming Monitor,1,389.99,08/19/19 18:14,"352 Park St, San Francisco, CA 94016" +245997,Apple Airpods Headphones,1,150,08/10/19 09:08,"663 Sunset St, San Francisco, CA 94016" +245998,AAA Batteries (4-pack),3,2.99,08/25/19 18:53,"226 Forest St, San Francisco, CA 94016" +245999,Macbook Pro Laptop,1,1700,08/08/19 13:38,"277 14th St, Atlanta, GA 30301" +246000,USB-C Charging Cable,1,11.95,08/11/19 21:00,"957 4th St, Los Angeles, CA 90001" +246001,34in Ultrawide Monitor,1,379.99,08/04/19 22:38,"464 Willow St, Atlanta, GA 30301" +246002,ThinkPad Laptop,1,999.99,08/13/19 09:34,"329 Ridge St, Seattle, WA 98101" +246003,Bose SoundSport Headphones,1,99.99,08/31/19 07:29,"961 Elm St, San Francisco, CA 94016" +246004,Wired Headphones,1,11.99,08/16/19 09:33,"260 Spruce St, Austin, TX 73301" +246005,USB-C Charging Cable,1,11.95,08/14/19 14:43,"378 Madison St, Los Angeles, CA 90001" +246006,USB-C Charging Cable,1,11.95,08/14/19 09:04,"151 4th St, Boston, MA 02215" +246007,AA Batteries (4-pack),1,3.84,08/29/19 00:15,"369 4th St, San Francisco, CA 94016" +246008,Wired Headphones,1,11.99,08/16/19 12:31,"623 Sunset St, Atlanta, GA 30301" +246009,27in 4K Gaming Monitor,1,389.99,08/31/19 17:32,"892 Chestnut St, Los Angeles, CA 90001" +246010,Lightning Charging Cable,1,14.95,08/20/19 09:25,"730 Spruce St, San Francisco, CA 94016" +246011,34in Ultrawide Monitor,1,379.99,08/13/19 18:41,"573 4th St, Austin, TX 73301" +246012,AAA Batteries (4-pack),2,2.99,08/28/19 22:14,"108 Washington St, Portland, OR 97035" +246013,Google Phone,1,600,08/16/19 17:46,"828 8th St, New York City, NY 10001" +246013,Wired Headphones,1,11.99,08/16/19 17:46,"828 8th St, New York City, NY 10001" +246014,Apple Airpods Headphones,1,150,08/27/19 12:42,"617 13th St, Seattle, WA 98101" +246015,Apple Airpods Headphones,1,150,08/26/19 12:49,"97 Dogwood St, San Francisco, CA 94016" +246016,Apple Airpods Headphones,1,150,08/26/19 09:34,"585 2nd St, Atlanta, GA 30301" +246017,AA Batteries (4-pack),2,3.84,08/09/19 15:38,"888 North St, Los Angeles, CA 90001" +246018,27in FHD Monitor,1,149.99,08/17/19 00:53,"953 Lake St, New York City, NY 10001" +246019,USB-C Charging Cable,2,11.95,08/09/19 15:47,"400 Jefferson St, New York City, NY 10001" +246020,AAA Batteries (4-pack),1,2.99,08/10/19 10:30,"904 14th St, Atlanta, GA 30301" +246021,Wired Headphones,1,11.99,08/19/19 18:36,"78 13th St, San Francisco, CA 94016" +246022,AA Batteries (4-pack),2,3.84,08/21/19 18:49,"296 Adams St, San Francisco, CA 94016" +246023,Lightning Charging Cable,1,14.95,08/03/19 14:13,"810 Sunset St, Atlanta, GA 30301" +246024,Lightning Charging Cable,1,14.95,08/18/19 00:07,"204 12th St, Portland, ME 04101" +246025,Lightning Charging Cable,1,14.95,08/15/19 14:14,"539 Dogwood St, San Francisco, CA 94016" +246026,USB-C Charging Cable,1,11.95,08/13/19 18:08,"697 Church St, San Francisco, CA 94016" +246027,Wired Headphones,1,11.99,08/15/19 20:26,"178 Cherry St, Portland, ME 04101" +246028,Lightning Charging Cable,1,14.95,08/23/19 11:45,"997 Jackson St, San Francisco, CA 94016" +246029,Macbook Pro Laptop,1,1700,08/05/19 13:25,"364 Church St, Boston, MA 02215" +246030,AAA Batteries (4-pack),1,2.99,08/08/19 20:18,"456 Main St, Los Angeles, CA 90001" +246031,Flatscreen TV,1,300,08/15/19 12:13,"780 4th St, Portland, OR 97035" +246032,Lightning Charging Cable,1,14.95,08/09/19 09:13,"330 Madison St, Atlanta, GA 30301" +246033,AAA Batteries (4-pack),1,2.99,08/13/19 11:15,"593 Walnut St, Portland, OR 97035" +246034,27in 4K Gaming Monitor,1,389.99,08/08/19 22:14,"765 7th St, Seattle, WA 98101" +246035,USB-C Charging Cable,1,11.95,08/29/19 18:06,"30 Spruce St, Seattle, WA 98101" +246036,Wired Headphones,1,11.99,08/14/19 19:52,"88 Walnut St, Austin, TX 73301" +246037,Apple Airpods Headphones,1,150,08/31/19 18:35,"110 Ridge St, Dallas, TX 75001" +246038,Macbook Pro Laptop,1,1700,08/24/19 12:47,"942 Lakeview St, Los Angeles, CA 90001" +246039,27in 4K Gaming Monitor,1,389.99,08/11/19 20:10,"908 14th St, Boston, MA 02215" +246040,Bose SoundSport Headphones,1,99.99,08/14/19 19:29,"163 Willow St, New York City, NY 10001" +246041,AA Batteries (4-pack),1,3.84,08/05/19 07:09,"615 14th St, Boston, MA 02215" +246042,Flatscreen TV,1,300,08/17/19 06:02,"273 9th St, Boston, MA 02215" +246043,Vareebadd Phone,1,400,08/18/19 14:17,"90 Jefferson St, Los Angeles, CA 90001" +246044,ThinkPad Laptop,1,999.99,08/21/19 09:47,"294 Main St, Portland, ME 04101" +246045,USB-C Charging Cable,1,11.95,08/13/19 19:16,"640 Hickory St, Seattle, WA 98101" +246046,Wired Headphones,1,11.99,08/01/19 15:55,"223 11th St, New York City, NY 10001" +246047,Bose SoundSport Headphones,1,99.99,08/09/19 16:52,"813 Lakeview St, Los Angeles, CA 90001" +246048,Lightning Charging Cable,1,14.95,08/06/19 12:36,"491 9th St, San Francisco, CA 94016" +246049,USB-C Charging Cable,1,11.95,08/27/19 10:17,"932 River St, Los Angeles, CA 90001" +246050,Bose SoundSport Headphones,1,99.99,08/10/19 20:50,"700 Dogwood St, New York City, NY 10001" +246051,Lightning Charging Cable,2,14.95,08/22/19 21:38,"843 Wilson St, New York City, NY 10001" +246052,ThinkPad Laptop,1,999.99,08/15/19 11:31,"88 Lakeview St, Dallas, TX 75001" +246053,AA Batteries (4-pack),1,3.84,08/17/19 15:14,"61 Wilson St, Austin, TX 73301" +246054,AA Batteries (4-pack),1,3.84,08/11/19 12:26,"276 Forest St, Austin, TX 73301" +246055,Apple Airpods Headphones,1,150,08/12/19 00:33,"835 Lake St, Dallas, TX 75001" +246056,Bose SoundSport Headphones,1,99.99,08/19/19 13:21,"89 5th St, Dallas, TX 75001" +246057,Google Phone,1,600,08/17/19 12:31,"839 Ridge St, Portland, OR 97035" +246058,Lightning Charging Cable,1,14.95,08/24/19 21:15,"606 11th St, Portland, ME 04101" +246059,20in Monitor,1,109.99,08/27/19 21:54,"108 5th St, Seattle, WA 98101" +246060,ThinkPad Laptop,1,999.99,08/02/19 17:17,"632 Cedar St, San Francisco, CA 94016" +246061,20in Monitor,1,109.99,08/17/19 14:48,"702 Maple St, San Francisco, CA 94016" +246062,AA Batteries (4-pack),1,3.84,08/08/19 16:23,"958 13th St, Los Angeles, CA 90001" +246063,AAA Batteries (4-pack),1,2.99,08/26/19 08:01,"8 Cedar St, San Francisco, CA 94016" +246064,Apple Airpods Headphones,1,150,08/25/19 10:45,"798 Forest St, San Francisco, CA 94016" +246065,27in FHD Monitor,1,149.99,08/10/19 19:51,"116 Hill St, Boston, MA 02215" +246066,AA Batteries (4-pack),1,3.84,08/19/19 22:04,"938 6th St, San Francisco, CA 94016" +246067,AA Batteries (4-pack),1,3.84,08/19/19 07:36,"644 Spruce St, New York City, NY 10001" +246068,34in Ultrawide Monitor,1,379.99,08/23/19 03:43,"667 Center St, Portland, OR 97035" +246069,Google Phone,1,600,08/04/19 09:22,"101 1st St, Los Angeles, CA 90001" +246070,Lightning Charging Cable,2,14.95,08/07/19 20:58,"51 Highland St, San Francisco, CA 94016" +246071,Lightning Charging Cable,1,14.95,08/07/19 09:08,"857 Johnson St, Los Angeles, CA 90001" +246072,Bose SoundSport Headphones,1,99.99,08/12/19 17:05,"386 Lake St, Dallas, TX 75001" +246073,Macbook Pro Laptop,1,1700,08/12/19 20:14,"129 14th St, Seattle, WA 98101" +246074,AA Batteries (4-pack),1,3.84,08/30/19 21:42,"455 Johnson St, Boston, MA 02215" +246075,Lightning Charging Cable,1,14.95,08/05/19 03:22,"600 7th St, Los Angeles, CA 90001" +246076,Vareebadd Phone,1,400,08/22/19 09:29,"378 Willow St, Portland, OR 97035" +246077,ThinkPad Laptop,1,999.99,08/05/19 18:14,"865 Park St, Los Angeles, CA 90001" +246078,AAA Batteries (4-pack),1,2.99,08/15/19 01:16,"651 Highland St, Austin, TX 73301" +246079,iPhone,1,700,08/12/19 19:23,"401 Dogwood St, San Francisco, CA 94016" +246080,USB-C Charging Cable,1,11.95,08/09/19 10:44,"895 4th St, Dallas, TX 75001" +246081,Wired Headphones,1,11.99,08/18/19 15:15,"5 Sunset St, Los Angeles, CA 90001" +246082,Apple Airpods Headphones,1,150,08/13/19 16:42,"843 Elm St, Los Angeles, CA 90001" +246083,Wired Headphones,1,11.99,08/07/19 02:04,"950 Cherry St, Portland, OR 97035" +246084,27in FHD Monitor,1,149.99,08/18/19 13:05,"477 5th St, San Francisco, CA 94016" +246085,USB-C Charging Cable,1,11.95,08/03/19 10:12,"841 13th St, Boston, MA 02215" +246086,AA Batteries (4-pack),1,3.84,08/04/19 09:33,"979 Madison St, New York City, NY 10001" +246087,Apple Airpods Headphones,1,150,08/01/19 12:20,"709 Lake St, Boston, MA 02215" +246088,Macbook Pro Laptop,1,1700,08/04/19 16:57,"946 Willow St, San Francisco, CA 94016" +246089,AA Batteries (4-pack),3,3.84,08/24/19 14:12,"580 Johnson St, New York City, NY 10001" +246090,Flatscreen TV,1,300,08/06/19 20:00,"797 South St, New York City, NY 10001" +246091,Lightning Charging Cable,1,14.95,08/05/19 21:22,"248 10th St, Boston, MA 02215" +246092,USB-C Charging Cable,1,11.95,08/08/19 19:18,"661 Johnson St, Portland, ME 04101" +246093,27in FHD Monitor,1,149.99,08/20/19 23:12,"336 Elm St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +246094,27in 4K Gaming Monitor,1,389.99,08/16/19 22:45,"720 Wilson St, Dallas, TX 75001" +246095,Wired Headphones,1,11.99,08/27/19 11:16,"677 Elm St, New York City, NY 10001" +246096,Vareebadd Phone,1,400,08/14/19 21:48,"272 Forest St, Seattle, WA 98101" +246097,Wired Headphones,1,11.99,08/17/19 15:43,"730 Main St, Seattle, WA 98101" +246098,AAA Batteries (4-pack),1,2.99,08/31/19 17:01,"298 Lakeview St, Atlanta, GA 30301" +246099,USB-C Charging Cable,1,11.95,08/03/19 07:48,"45 Church St, Dallas, TX 75001" +246100,AA Batteries (4-pack),1,3.84,08/07/19 09:31,"448 Spruce St, Dallas, TX 75001" +246101,Lightning Charging Cable,1,14.95,08/16/19 11:25,"974 Willow St, Seattle, WA 98101" +246102,Bose SoundSport Headphones,1,99.99,08/07/19 14:57,"110 Johnson St, Los Angeles, CA 90001" +246103,AAA Batteries (4-pack),1,2.99,08/30/19 23:59,"553 Washington St, Dallas, TX 75001" +246104,Apple Airpods Headphones,1,150,08/05/19 15:01,"875 5th St, Dallas, TX 75001" +246105,Lightning Charging Cable,1,14.95,08/25/19 11:05,"745 Meadow St, New York City, NY 10001" +246106,AA Batteries (4-pack),1,3.84,08/19/19 15:59,"660 Hill St, Atlanta, GA 30301" +246107,Google Phone,1,600,08/09/19 07:58,"236 Madison St, San Francisco, CA 94016" +246108,ThinkPad Laptop,1,999.99,08/30/19 20:54,"752 Highland St, San Francisco, CA 94016" +246109,27in FHD Monitor,1,149.99,08/29/19 19:24,"436 Spruce St, San Francisco, CA 94016" +246110,20in Monitor,1,109.99,08/11/19 17:08,"723 Hill St, San Francisco, CA 94016" +246111,27in FHD Monitor,1,149.99,08/15/19 13:03,"945 Forest St, Seattle, WA 98101" +246112,Lightning Charging Cable,1,14.95,08/31/19 00:14,"470 Jackson St, Dallas, TX 75001" +246113,27in FHD Monitor,1,149.99,08/06/19 11:08,"354 6th St, Los Angeles, CA 90001" +246114,Macbook Pro Laptop,1,1700,08/03/19 12:05,"498 10th St, Seattle, WA 98101" +246115,USB-C Charging Cable,1,11.95,08/17/19 12:14,"847 Walnut St, Dallas, TX 75001" +246116,USB-C Charging Cable,1,11.95,08/07/19 18:12,"689 Jefferson St, San Francisco, CA 94016" +246117,Wired Headphones,1,11.99,08/23/19 10:26,"598 Sunset St, New York City, NY 10001" +246118,34in Ultrawide Monitor,1,379.99,08/02/19 11:03,"183 River St, Austin, TX 73301" +246119,AA Batteries (4-pack),1,3.84,08/30/19 22:33,"930 Willow St, Dallas, TX 75001" +246120,ThinkPad Laptop,1,999.99,08/21/19 14:51,"466 Main St, Atlanta, GA 30301" +246121,AA Batteries (4-pack),1,3.84,08/26/19 13:46,"232 14th St, San Francisco, CA 94016" +246122,Lightning Charging Cable,1,14.95,08/03/19 12:28,"778 Jackson St, Atlanta, GA 30301" +246122,Wired Headphones,1,11.99,08/03/19 12:28,"778 Jackson St, Atlanta, GA 30301" +246123,27in FHD Monitor,1,149.99,08/05/19 23:42,"858 Spruce St, Los Angeles, CA 90001" +246124,Lightning Charging Cable,1,14.95,08/27/19 12:09,"954 Cherry St, Portland, OR 97035" +246125,USB-C Charging Cable,1,11.95,08/15/19 21:21,"798 11th St, Los Angeles, CA 90001" +246126,Wired Headphones,1,11.99,08/12/19 01:36,"347 13th St, Boston, MA 02215" +246127,AA Batteries (4-pack),1,3.84,08/26/19 16:37,"665 Jackson St, San Francisco, CA 94016" +246128,LG Dryer,1,600.0,08/12/19 03:35,"486 Lake St, Boston, MA 02215" +246129,iPhone,1,700,08/27/19 17:16,"287 Main St, Portland, OR 97035" +246130,Bose SoundSport Headphones,1,99.99,08/07/19 01:15,"593 Walnut St, Seattle, WA 98101" +246131,27in FHD Monitor,1,149.99,08/17/19 18:03,"67 Lincoln St, Dallas, TX 75001" +246132,Lightning Charging Cable,1,14.95,08/19/19 20:29,"523 Lincoln St, Los Angeles, CA 90001" +246133,Lightning Charging Cable,1,14.95,08/24/19 10:02,"621 2nd St, Boston, MA 02215" +246134,Apple Airpods Headphones,1,150,08/25/19 15:57,"86 7th St, Boston, MA 02215" +246135,Bose SoundSport Headphones,1,99.99,08/14/19 22:28,"344 Jefferson St, Austin, TX 73301" +246136,Wired Headphones,1,11.99,08/22/19 12:38,"432 Hickory St, Los Angeles, CA 90001" +246137,27in 4K Gaming Monitor,1,389.99,08/17/19 19:54,"414 Center St, Los Angeles, CA 90001" +246138,Bose SoundSport Headphones,1,99.99,08/14/19 13:13,"726 South St, San Francisco, CA 94016" +246138,Apple Airpods Headphones,1,150,08/14/19 13:13,"726 South St, San Francisco, CA 94016" +246139,Lightning Charging Cable,1,14.95,08/05/19 20:48,"670 Washington St, Austin, TX 73301" +246140,Wired Headphones,1,11.99,08/25/19 23:53,"605 6th St, San Francisco, CA 94016" +246141,Flatscreen TV,1,300,08/21/19 18:09,"200 Madison St, Dallas, TX 75001" +246142,AAA Batteries (4-pack),1,2.99,08/27/19 18:14,"753 North St, Portland, OR 97035" +246143,USB-C Charging Cable,1,11.95,08/03/19 15:35,"807 Ridge St, Los Angeles, CA 90001" +246144,27in FHD Monitor,1,149.99,08/28/19 20:08,"104 Lakeview St, Los Angeles, CA 90001" +246145,Wired Headphones,1,11.99,08/26/19 02:45,"742 1st St, Austin, TX 73301" +246146,ThinkPad Laptop,1,999.99,08/17/19 14:51,"570 Washington St, Dallas, TX 75001" +246147,Apple Airpods Headphones,1,150,08/14/19 19:22,"205 Lakeview St, New York City, NY 10001" +246148,USB-C Charging Cable,1,11.95,08/04/19 14:18,"53 Hill St, New York City, NY 10001" +246149,AAA Batteries (4-pack),1,2.99,08/10/19 19:39,"382 Lakeview St, Dallas, TX 75001" +246150,AAA Batteries (4-pack),1,2.99,08/13/19 09:20,"356 North St, New York City, NY 10001" +246151,Google Phone,1,600,08/24/19 21:16,"849 8th St, Austin, TX 73301" +246151,USB-C Charging Cable,1,11.95,08/24/19 21:16,"849 8th St, Austin, TX 73301" +246152,27in 4K Gaming Monitor,1,389.99,08/18/19 17:16,"790 Sunset St, Atlanta, GA 30301" +246153,ThinkPad Laptop,1,999.99,08/20/19 19:48,"25 North St, Portland, OR 97035" +246154,20in Monitor,1,109.99,08/20/19 11:54,"644 Dogwood St, Seattle, WA 98101" +246155,27in 4K Gaming Monitor,1,389.99,08/28/19 12:39,"209 Park St, San Francisco, CA 94016" +246156,Bose SoundSport Headphones,1,99.99,08/31/19 22:45,"93 Forest St, New York City, NY 10001" +246157,20in Monitor,1,109.99,08/03/19 00:52,"770 Park St, Los Angeles, CA 90001" +246158,USB-C Charging Cable,1,11.95,08/07/19 14:30,"883 Dogwood St, San Francisco, CA 94016" +246159,USB-C Charging Cable,1,11.95,08/16/19 22:49,"847 Washington St, Austin, TX 73301" +246160,Apple Airpods Headphones,1,150,08/01/19 21:56,"297 Madison St, Boston, MA 02215" +246161,AA Batteries (4-pack),1,3.84,08/29/19 20:54,"968 Main St, Dallas, TX 75001" +246162,Lightning Charging Cable,1,14.95,08/13/19 04:52,"617 12th St, Seattle, WA 98101" +246163,Flatscreen TV,1,300,08/05/19 20:56,"282 4th St, San Francisco, CA 94016" +246164,Lightning Charging Cable,1,14.95,08/29/19 01:55,"795 Madison St, Boston, MA 02215" +246165,Apple Airpods Headphones,1,150,08/17/19 18:16,"232 Maple St, Los Angeles, CA 90001" +246166,Google Phone,1,600,08/22/19 12:21,"763 Ridge St, San Francisco, CA 94016" +246167,USB-C Charging Cable,1,11.95,08/14/19 12:56,"889 Jackson St, San Francisco, CA 94016" +246168,20in Monitor,1,109.99,08/24/19 09:18,"393 Center St, San Francisco, CA 94016" +246169,USB-C Charging Cable,2,11.95,08/15/19 18:34,"709 Church St, Portland, OR 97035" +246170,Wired Headphones,1,11.99,08/12/19 11:50,"411 2nd St, New York City, NY 10001" +246171,Wired Headphones,1,11.99,08/09/19 21:10,"603 4th St, New York City, NY 10001" +246172,USB-C Charging Cable,1,11.95,08/03/19 22:12,"250 Lakeview St, Los Angeles, CA 90001" +246173,Bose SoundSport Headphones,1,99.99,08/02/19 12:52,"509 Cedar St, New York City, NY 10001" +246174,AA Batteries (4-pack),1,3.84,08/10/19 16:36,"986 Hill St, San Francisco, CA 94016" +246175,AA Batteries (4-pack),1,3.84,08/21/19 12:10,"352 14th St, San Francisco, CA 94016" +246176,Flatscreen TV,1,300,08/13/19 02:23,"733 Walnut St, Portland, OR 97035" +246177,AAA Batteries (4-pack),2,2.99,08/07/19 15:47,"853 Church St, Austin, TX 73301" +246178,Macbook Pro Laptop,1,1700,08/18/19 11:54,"864 Washington St, Seattle, WA 98101" +246179,AA Batteries (4-pack),1,3.84,08/11/19 03:52,"944 Meadow St, San Francisco, CA 94016" +246180,ThinkPad Laptop,1,999.99,08/19/19 11:45,"605 Main St, Boston, MA 02215" +246181,Lightning Charging Cable,2,14.95,08/14/19 22:24,"412 Lakeview St, New York City, NY 10001" +246182,Apple Airpods Headphones,1,150,08/10/19 18:01,"721 Hill St, Dallas, TX 75001" +246183,AAA Batteries (4-pack),3,2.99,08/16/19 13:39,"619 14th St, Los Angeles, CA 90001" +246184,Lightning Charging Cable,1,14.95,08/24/19 10:09,"558 West St, Los Angeles, CA 90001" +246185,34in Ultrawide Monitor,1,379.99,08/17/19 00:24,"707 Johnson St, San Francisco, CA 94016" +246186,AA Batteries (4-pack),1,3.84,08/22/19 11:14,"496 Spruce St, New York City, NY 10001" +246187,Apple Airpods Headphones,1,150,08/17/19 22:49,"688 12th St, New York City, NY 10001" +246188,ThinkPad Laptop,1,999.99,08/13/19 17:49,"526 River St, Los Angeles, CA 90001" +246189,Wired Headphones,1,11.99,08/23/19 14:50,"549 Hill St, San Francisco, CA 94016" +246190,iPhone,1,700,08/28/19 13:01,"860 Forest St, Portland, OR 97035" +246191,ThinkPad Laptop,1,999.99,08/24/19 01:28,"107 Main St, Dallas, TX 75001" +246192,AA Batteries (4-pack),2,3.84,08/02/19 15:23,"395 Washington St, Austin, TX 73301" +246193,27in 4K Gaming Monitor,1,389.99,08/16/19 15:47,"37 Wilson St, Seattle, WA 98101" +246194,Wired Headphones,1,11.99,08/17/19 16:19,"222 Forest St, San Francisco, CA 94016" +246195,27in 4K Gaming Monitor,1,389.99,08/20/19 00:08,"439 14th St, Atlanta, GA 30301" +246196,Apple Airpods Headphones,1,150,08/06/19 15:36,"420 10th St, Seattle, WA 98101" +246197,ThinkPad Laptop,1,999.99,08/20/19 19:09,"458 2nd St, Austin, TX 73301" +246198,iPhone,1,700,08/23/19 09:30,"400 4th St, Seattle, WA 98101" +246199,Lightning Charging Cable,1,14.95,08/19/19 18:34,"311 Adams St, San Francisco, CA 94016" +246200,Bose SoundSport Headphones,1,99.99,08/26/19 13:05,"500 Elm St, Boston, MA 02215" +246201,Lightning Charging Cable,1,14.95,08/27/19 11:26,"847 Madison St, Portland, OR 97035" +246202,AA Batteries (4-pack),1,3.84,08/11/19 11:42,"810 West St, Atlanta, GA 30301" +246203,iPhone,1,700,08/22/19 19:19,"805 River St, Los Angeles, CA 90001" +246204,Lightning Charging Cable,1,14.95,08/15/19 22:20,"161 West St, New York City, NY 10001" +246205,Lightning Charging Cable,1,14.95,08/17/19 07:44,"561 1st St, San Francisco, CA 94016" +246206,Lightning Charging Cable,1,14.95,08/20/19 10:57,"65 13th St, Los Angeles, CA 90001" +246207,Wired Headphones,1,11.99,08/02/19 11:34,"199 5th St, Los Angeles, CA 90001" +246208,AA Batteries (4-pack),1,3.84,08/20/19 20:37,"109 Church St, San Francisco, CA 94016" +246209,AA Batteries (4-pack),1,3.84,08/12/19 02:07,"254 8th St, Portland, OR 97035" +246210,Lightning Charging Cable,1,14.95,08/07/19 07:53,"628 6th St, Dallas, TX 75001" +246211,AA Batteries (4-pack),1,3.84,08/21/19 21:12,"46 Elm St, Boston, MA 02215" +246212,Lightning Charging Cable,1,14.95,08/01/19 19:43,"618 Jackson St, New York City, NY 10001" +246213,AAA Batteries (4-pack),1,2.99,08/07/19 18:05,"832 11th St, Seattle, WA 98101" +246214,27in FHD Monitor,1,149.99,08/01/19 14:07,"470 13th St, Portland, OR 97035" +246215,AA Batteries (4-pack),1,3.84,08/21/19 15:33,"435 Main St, Dallas, TX 75001" +246216,Apple Airpods Headphones,1,150,08/03/19 11:39,"27 8th St, Boston, MA 02215" +246216,Google Phone,1,600,08/03/19 11:39,"27 8th St, Boston, MA 02215" +246217,Lightning Charging Cable,1,14.95,08/20/19 15:38,"516 Maple St, Atlanta, GA 30301" +246218,27in 4K Gaming Monitor,1,389.99,08/04/19 12:12,"535 Church St, New York City, NY 10001" +246219,27in FHD Monitor,1,149.99,08/10/19 20:18,"590 Cherry St, Boston, MA 02215" +246220,iPhone,1,700,08/19/19 18:35,"616 7th St, Los Angeles, CA 90001" +246221,AA Batteries (4-pack),1,3.84,08/21/19 19:18,"819 Church St, Atlanta, GA 30301" +246222,Google Phone,1,600,08/26/19 13:10,"96 Washington St, San Francisco, CA 94016" +246223,27in FHD Monitor,1,149.99,08/22/19 19:43,"51 Meadow St, Atlanta, GA 30301" +246224,AA Batteries (4-pack),1,3.84,08/01/19 12:17,"778 2nd St, Portland, OR 97035" +246225,Flatscreen TV,1,300,08/29/19 17:38,"14 Jefferson St, Los Angeles, CA 90001" +246226,Flatscreen TV,1,300,08/19/19 03:54,"375 Main St, Los Angeles, CA 90001" +246227,27in 4K Gaming Monitor,1,389.99,08/15/19 16:26,"623 Pine St, New York City, NY 10001" +246228,iPhone,1,700,08/18/19 13:59,"661 4th St, Portland, OR 97035" +246229,34in Ultrawide Monitor,1,379.99,08/09/19 23:58,"663 Jefferson St, San Francisco, CA 94016" +246230,USB-C Charging Cable,1,11.95,08/01/19 19:04,"255 West St, Seattle, WA 98101" +246231,AA Batteries (4-pack),1,3.84,08/10/19 12:50,"512 13th St, San Francisco, CA 94016" +246232,AA Batteries (4-pack),1,3.84,08/25/19 20:02,"555 Main St, Dallas, TX 75001" +246233,Lightning Charging Cable,1,14.95,09/01/19 04:18,"285 Center St, San Francisco, CA 94016" +246234,27in 4K Gaming Monitor,1,389.99,08/28/19 23:56,"967 Dogwood St, Austin, TX 73301" +246235,Lightning Charging Cable,1,14.95,08/28/19 15:12,"882 River St, Los Angeles, CA 90001" +246235,Lightning Charging Cable,1,14.95,08/28/19 15:12,"882 River St, Los Angeles, CA 90001" +246236,AAA Batteries (4-pack),2,2.99,08/01/19 21:17,"445 Jefferson St, Dallas, TX 75001" +246237,ThinkPad Laptop,1,999.99,08/23/19 17:50,"828 Jackson St, Boston, MA 02215" +246238,Lightning Charging Cable,1,14.95,08/23/19 22:50,"315 7th St, Los Angeles, CA 90001" +246239,Bose SoundSport Headphones,1,99.99,08/14/19 12:45,"464 13th St, Boston, MA 02215" +246240,Bose SoundSport Headphones,1,99.99,08/13/19 12:21,"627 Lakeview St, San Francisco, CA 94016" +246241,34in Ultrawide Monitor,1,379.99,08/20/19 14:01,"334 Wilson St, San Francisco, CA 94016" +246242,AAA Batteries (4-pack),4,2.99,08/06/19 23:00,"246 River St, Dallas, TX 75001" +246243,34in Ultrawide Monitor,1,379.99,08/29/19 19:24,"685 Hill St, San Francisco, CA 94016" +246244,iPhone,1,700,08/12/19 14:48,"888 Forest St, Los Angeles, CA 90001" +246245,Wired Headphones,1,11.99,08/03/19 10:02,"383 Lake St, Los Angeles, CA 90001" +246246,Wired Headphones,1,11.99,08/06/19 22:53,"523 Washington St, Los Angeles, CA 90001" +246247,USB-C Charging Cable,1,11.95,08/30/19 00:43,"268 Church St, New York City, NY 10001" +246248,Lightning Charging Cable,1,14.95,08/26/19 13:42,"401 12th St, Dallas, TX 75001" +246249,Lightning Charging Cable,1,14.95,08/28/19 10:36,"243 Lakeview St, Los Angeles, CA 90001" +246250,Wired Headphones,3,11.99,08/05/19 19:46,"779 Hill St, Portland, OR 97035" +246251,Lightning Charging Cable,1,14.95,08/26/19 07:26,"621 9th St, Portland, OR 97035" +246252,Lightning Charging Cable,1,14.95,08/12/19 18:09,"766 2nd St, Dallas, TX 75001" +246253,AA Batteries (4-pack),1,3.84,08/03/19 17:08,"236 Forest St, Boston, MA 02215" +246254,AA Batteries (4-pack),1,3.84,08/07/19 10:01,"688 Highland St, New York City, NY 10001" +246255,USB-C Charging Cable,1,11.95,08/03/19 23:55,"823 Lake St, Boston, MA 02215" +246256,Wired Headphones,1,11.99,08/27/19 11:04,"680 Lake St, San Francisco, CA 94016" +246257,Apple Airpods Headphones,1,150,08/23/19 12:20,"672 5th St, Atlanta, GA 30301" +246258,USB-C Charging Cable,1,11.95,08/09/19 13:19,"181 Willow St, Los Angeles, CA 90001" +246259,34in Ultrawide Monitor,1,379.99,08/03/19 16:14,"631 Meadow St, San Francisco, CA 94016" +246260,iPhone,1,700,08/06/19 16:47,"669 Walnut St, San Francisco, CA 94016" +246261,34in Ultrawide Monitor,1,379.99,08/26/19 23:27,"1 Park St, Portland, OR 97035" +246262,Wired Headphones,1,11.99,08/04/19 22:55,"480 Main St, Los Angeles, CA 90001" +246263,Lightning Charging Cable,1,14.95,08/06/19 09:14,"779 Jackson St, Dallas, TX 75001" +246264,ThinkPad Laptop,1,999.99,08/24/19 19:35,"93 Willow St, Austin, TX 73301" +246265,AA Batteries (4-pack),1,3.84,08/21/19 09:50,"838 River St, San Francisco, CA 94016" +246266,Macbook Pro Laptop,1,1700,08/27/19 22:44,"598 Center St, New York City, NY 10001" +246267,AA Batteries (4-pack),5,3.84,08/18/19 12:00,"980 Chestnut St, Boston, MA 02215" +246268,Macbook Pro Laptop,1,1700,08/05/19 18:04,"303 Pine St, Austin, TX 73301" +246269,Lightning Charging Cable,1,14.95,08/31/19 08:02,"375 11th St, Atlanta, GA 30301" +246270,USB-C Charging Cable,1,11.95,08/09/19 16:10,"327 2nd St, Los Angeles, CA 90001" +246271,Google Phone,1,600,08/20/19 10:57,"544 Meadow St, San Francisco, CA 94016" +246271,USB-C Charging Cable,1,11.95,08/20/19 10:57,"544 Meadow St, San Francisco, CA 94016" +246272,Wired Headphones,1,11.99,08/22/19 15:56,"786 West St, Austin, TX 73301" +246273,AA Batteries (4-pack),1,3.84,08/07/19 10:30,"385 Cedar St, Los Angeles, CA 90001" +246274,27in FHD Monitor,1,149.99,08/17/19 20:10,"70 Highland St, Los Angeles, CA 90001" +246275,Apple Airpods Headphones,1,150,08/21/19 13:44,"588 12th St, Dallas, TX 75001" +246276,AAA Batteries (4-pack),1,2.99,08/31/19 12:27,"523 9th St, San Francisco, CA 94016" +246277,Lightning Charging Cable,3,14.95,08/17/19 17:05,"305 Washington St, Boston, MA 02215" +246278,Apple Airpods Headphones,1,150,08/25/19 23:11,"100 Lakeview St, San Francisco, CA 94016" +246279,Macbook Pro Laptop,1,1700,08/21/19 12:09,"233 Pine St, San Francisco, CA 94016" +246280,27in FHD Monitor,2,149.99,08/17/19 22:51,"877 13th St, New York City, NY 10001" +246281,USB-C Charging Cable,1,11.95,08/28/19 11:55,"593 Sunset St, Seattle, WA 98101" +246282,Lightning Charging Cable,1,14.95,08/20/19 19:16,"60 4th St, San Francisco, CA 94016" +246283,Google Phone,1,600,08/10/19 14:01,"564 Cherry St, New York City, NY 10001" +246284,Lightning Charging Cable,1,14.95,08/08/19 19:24,"506 Walnut St, Portland, OR 97035" +246285,Wired Headphones,1,11.99,08/18/19 09:01,"618 Jackson St, Boston, MA 02215" +246286,20in Monitor,1,109.99,08/24/19 17:40,"336 2nd St, New York City, NY 10001" +246287,AAA Batteries (4-pack),1,2.99,08/28/19 14:08,"226 4th St, Los Angeles, CA 90001" +246288,Wired Headphones,1,11.99,08/13/19 18:44,"768 6th St, Atlanta, GA 30301" +246289,Lightning Charging Cable,1,14.95,08/01/19 08:49,"281 6th St, Los Angeles, CA 90001" +246290,Lightning Charging Cable,1,14.95,08/13/19 11:36,"97 Lakeview St, Los Angeles, CA 90001" +246291,AAA Batteries (4-pack),1,2.99,08/05/19 13:46,"638 2nd St, New York City, NY 10001" +246292,AA Batteries (4-pack),1,3.84,08/07/19 14:37,"986 Maple St, Boston, MA 02215" +246293,27in FHD Monitor,1,149.99,08/05/19 07:55,"246 Main St, Los Angeles, CA 90001" +246294,Lightning Charging Cable,1,14.95,08/20/19 13:36,"979 Cedar St, Austin, TX 73301" +246295,LG Washing Machine,1,600.0,08/20/19 06:02,"438 5th St, New York City, NY 10001" +246296,AAA Batteries (4-pack),2,2.99,08/14/19 14:23,"422 Madison St, New York City, NY 10001" +246297,27in FHD Monitor,1,149.99,08/22/19 14:20,"591 Cherry St, San Francisco, CA 94016" +246298,Wired Headphones,1,11.99,08/20/19 21:29,"497 Jackson St, San Francisco, CA 94016" +246299,20in Monitor,1,109.99,08/30/19 17:10,"639 Jackson St, Los Angeles, CA 90001" +246300,20in Monitor,1,109.99,08/07/19 13:32,"398 10th St, Portland, OR 97035" +246301,AA Batteries (4-pack),1,3.84,08/31/19 17:59,"581 9th St, New York City, NY 10001" +246302,AA Batteries (4-pack),1,3.84,08/06/19 19:41,"856 Highland St, San Francisco, CA 94016" +246303,AA Batteries (4-pack),1,3.84,08/06/19 19:54,"67 Washington St, Portland, OR 97035" +246304,AA Batteries (4-pack),1,3.84,08/19/19 11:14,"236 Main St, Austin, TX 73301" +246305,USB-C Charging Cable,2,11.95,08/30/19 11:22,"581 Hickory St, Dallas, TX 75001" +246306,AAA Batteries (4-pack),1,2.99,08/25/19 06:31,"826 12th St, San Francisco, CA 94016" +246307,USB-C Charging Cable,1,11.95,08/06/19 09:56,"436 Lake St, Los Angeles, CA 90001" +246308,Lightning Charging Cable,1,14.95,08/03/19 17:07,"654 8th St, New York City, NY 10001" +246309,Apple Airpods Headphones,1,150,08/12/19 12:37,"932 Dogwood St, New York City, NY 10001" +246310,AAA Batteries (4-pack),1,2.99,08/18/19 22:39,"235 Ridge St, Atlanta, GA 30301" +246311,Apple Airpods Headphones,1,150,08/19/19 21:26,"661 Cherry St, Dallas, TX 75001" +246312,AA Batteries (4-pack),1,3.84,08/28/19 11:39,"345 Forest St, San Francisco, CA 94016" +246313,20in Monitor,1,109.99,08/24/19 10:44,"611 5th St, New York City, NY 10001" +246314,Lightning Charging Cable,1,14.95,08/25/19 20:09,"53 Wilson St, Austin, TX 73301" +246315,20in Monitor,1,109.99,08/20/19 20:09,"881 Ridge St, Atlanta, GA 30301" +246316,Bose SoundSport Headphones,1,99.99,08/10/19 20:21,"974 West St, Los Angeles, CA 90001" +246317,Apple Airpods Headphones,1,150,08/21/19 11:17,"329 Hickory St, Dallas, TX 75001" +246318,AAA Batteries (4-pack),3,2.99,08/10/19 12:08,"1 1st St, Seattle, WA 98101" +246319,Lightning Charging Cable,1,14.95,08/28/19 14:53,"915 Hickory St, Dallas, TX 75001" +246320,Wired Headphones,1,11.99,08/22/19 14:21,"573 12th St, San Francisco, CA 94016" +246321,Lightning Charging Cable,1,14.95,08/02/19 19:51,"804 Hickory St, Portland, OR 97035" +246322,iPhone,1,700,08/29/19 16:15,"543 9th St, Los Angeles, CA 90001" +246322,Wired Headphones,1,11.99,08/29/19 16:15,"543 9th St, Los Angeles, CA 90001" +246323,Bose SoundSport Headphones,1,99.99,08/30/19 20:09,"531 Lakeview St, San Francisco, CA 94016" +246324,AAA Batteries (4-pack),1,2.99,08/29/19 11:20,"195 Sunset St, Boston, MA 02215" +246325,iPhone,1,700,08/26/19 18:54,"605 11th St, San Francisco, CA 94016" +246326,iPhone,1,700,08/26/19 18:47,"603 Jefferson St, Dallas, TX 75001" +246327,Wired Headphones,1,11.99,08/09/19 15:05,"492 Chestnut St, Los Angeles, CA 90001" +246328,Apple Airpods Headphones,1,150,08/26/19 15:23,"674 Wilson St, Boston, MA 02215" +246329,USB-C Charging Cable,1,11.95,08/25/19 11:50,"349 Church St, New York City, NY 10001" +246330,iPhone,1,700,08/19/19 11:55,"906 Pine St, San Francisco, CA 94016" +246330,Lightning Charging Cable,1,14.95,08/19/19 11:55,"906 Pine St, San Francisco, CA 94016" +246331,AA Batteries (4-pack),2,3.84,08/15/19 12:55,"304 Hill St, San Francisco, CA 94016" +246332,Apple Airpods Headphones,1,150,08/29/19 14:50,"501 Maple St, San Francisco, CA 94016" +246333,AA Batteries (4-pack),1,3.84,08/17/19 08:03,"921 11th St, Los Angeles, CA 90001" +246334,USB-C Charging Cable,1,11.95,08/31/19 18:27,"598 14th St, Austin, TX 73301" +246335,iPhone,1,700,09/01/19 02:41,"356 4th St, Dallas, TX 75001" +246335,Lightning Charging Cable,1,14.95,09/01/19 02:41,"356 4th St, Dallas, TX 75001" +246336,AAA Batteries (4-pack),2,2.99,08/01/19 10:56,"630 West St, Los Angeles, CA 90001" +246337,Lightning Charging Cable,2,14.95,08/20/19 20:38,"41 Ridge St, Boston, MA 02215" +246338,Apple Airpods Headphones,1,150,08/27/19 10:01,"483 Lincoln St, Los Angeles, CA 90001" +246339,AAA Batteries (4-pack),2,2.99,08/24/19 22:24,"393 12th St, Boston, MA 02215" +246340,AAA Batteries (4-pack),1,2.99,08/13/19 00:19,"831 Hill St, San Francisco, CA 94016" +246341,Apple Airpods Headphones,1,150,08/12/19 06:44,"46 1st St, New York City, NY 10001" +246342,AA Batteries (4-pack),1,3.84,08/14/19 12:04,"567 Park St, San Francisco, CA 94016" +246343,Wired Headphones,1,11.99,08/10/19 20:17,"488 Cherry St, Boston, MA 02215" +246344,AA Batteries (4-pack),1,3.84,08/31/19 08:57,"162 Maple St, Atlanta, GA 30301" +246345,AA Batteries (4-pack),1,3.84,08/10/19 17:58,"596 4th St, Boston, MA 02215" +246346,34in Ultrawide Monitor,1,379.99,08/21/19 14:30,"723 Lake St, Portland, OR 97035" +246347,Wired Headphones,1,11.99,08/07/19 13:05,"94 12th St, Dallas, TX 75001" +246348,27in 4K Gaming Monitor,1,389.99,08/06/19 17:51,"485 13th St, Boston, MA 02215" +246349,Lightning Charging Cable,1,14.95,08/14/19 23:41,"620 Willow St, Los Angeles, CA 90001" +246350,34in Ultrawide Monitor,1,379.99,08/28/19 00:36,"596 Johnson St, San Francisco, CA 94016" +246351,AAA Batteries (4-pack),2,2.99,08/30/19 17:20,"609 Pine St, Austin, TX 73301" +246352,AA Batteries (4-pack),1,3.84,08/26/19 14:08,"380 13th St, Atlanta, GA 30301" +246353,Lightning Charging Cable,1,14.95,08/25/19 13:42,"658 Hill St, New York City, NY 10001" +246354,27in FHD Monitor,1,149.99,08/31/19 13:16,"309 Highland St, New York City, NY 10001" +246355,Bose SoundSport Headphones,1,99.99,08/14/19 16:42,"669 Lakeview St, San Francisco, CA 94016" +246356,Google Phone,1,600,08/14/19 14:44,"643 Washington St, New York City, NY 10001" +246357,Wired Headphones,1,11.99,08/22/19 19:31,"61 Dogwood St, New York City, NY 10001" +246358,Bose SoundSport Headphones,1,99.99,08/12/19 10:33,"450 Cedar St, Los Angeles, CA 90001" +246359,27in FHD Monitor,1,149.99,08/02/19 21:47,"916 Elm St, San Francisco, CA 94016" +246360,Macbook Pro Laptop,1,1700,08/16/19 23:52,"524 Jackson St, Portland, OR 97035" +246361,AA Batteries (4-pack),1,3.84,08/25/19 22:02,"58 Center St, Los Angeles, CA 90001" +246362,Wired Headphones,1,11.99,08/16/19 21:14,"200 Cedar St, Seattle, WA 98101" +246363,Apple Airpods Headphones,1,150,08/29/19 21:39,"166 8th St, Dallas, TX 75001" +246364,AA Batteries (4-pack),1,3.84,08/21/19 14:45,"131 Main St, New York City, NY 10001" +246365,Lightning Charging Cable,1,14.95,08/26/19 06:07,"304 Highland St, San Francisco, CA 94016" +246366,AAA Batteries (4-pack),1,2.99,08/22/19 10:01,"896 Cedar St, Boston, MA 02215" +246367,USB-C Charging Cable,1,11.95,08/16/19 11:00,"421 Hill St, Los Angeles, CA 90001" +246368,iPhone,1,700,08/04/19 17:17,"575 River St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +246369,Lightning Charging Cable,1,14.95,08/07/19 19:35,"975 Adams St, Seattle, WA 98101" +246370,USB-C Charging Cable,1,11.95,08/27/19 15:14,"881 Elm St, Boston, MA 02215" +246371,AAA Batteries (4-pack),2,2.99,08/17/19 11:46,"266 Wilson St, San Francisco, CA 94016" +246372,AAA Batteries (4-pack),1,2.99,08/12/19 11:27,"982 Jackson St, Atlanta, GA 30301" +246373,27in 4K Gaming Monitor,1,389.99,08/24/19 06:33,"391 14th St, Seattle, WA 98101" +246374,Wired Headphones,1,11.99,08/29/19 22:08,"550 Hickory St, Boston, MA 02215" +246375,Lightning Charging Cable,1,14.95,08/07/19 10:11,"612 9th St, San Francisco, CA 94016" +246376,USB-C Charging Cable,1,11.95,08/26/19 10:24,"87 Park St, Atlanta, GA 30301" +246377,Bose SoundSport Headphones,1,99.99,08/30/19 18:42,"814 Jackson St, San Francisco, CA 94016" +246378,Apple Airpods Headphones,1,150,08/25/19 18:00,"929 9th St, San Francisco, CA 94016" +246379,USB-C Charging Cable,1,11.95,08/29/19 16:13,"443 Lakeview St, San Francisco, CA 94016" +246380,Bose SoundSport Headphones,1,99.99,08/13/19 18:35,"349 Lake St, Seattle, WA 98101" +246381,Apple Airpods Headphones,1,150,08/14/19 22:10,"176 Lakeview St, Los Angeles, CA 90001" +246382,Flatscreen TV,1,300,08/25/19 10:43,"705 River St, San Francisco, CA 94016" +246383,Apple Airpods Headphones,1,150,08/02/19 04:13,"78 Hill St, Atlanta, GA 30301" +246384,AAA Batteries (4-pack),2,2.99,08/26/19 19:36,"292 10th St, Boston, MA 02215" +246385,AA Batteries (4-pack),1,3.84,08/12/19 20:26,"624 4th St, Atlanta, GA 30301" +246386,Lightning Charging Cable,1,14.95,08/22/19 12:28,"191 7th St, Portland, OR 97035" +246387,Flatscreen TV,1,300,08/15/19 17:34,"181 Main St, San Francisco, CA 94016" +246388,USB-C Charging Cable,1,11.95,08/01/19 15:12,"535 North St, Seattle, WA 98101" +246389,Macbook Pro Laptop,1,1700,08/12/19 12:01,"457 Meadow St, Portland, OR 97035" +246390,27in 4K Gaming Monitor,1,389.99,08/01/19 17:10,"386 Sunset St, San Francisco, CA 94016" +246391,AAA Batteries (4-pack),2,2.99,08/29/19 12:08,"731 West St, Seattle, WA 98101" +246392,AAA Batteries (4-pack),1,2.99,08/12/19 07:17,"696 2nd St, Austin, TX 73301" +246393,34in Ultrawide Monitor,1,379.99,08/07/19 08:17,"950 7th St, Los Angeles, CA 90001" +246394,AA Batteries (4-pack),2,3.84,08/22/19 19:54,"729 4th St, Dallas, TX 75001" +246395,Lightning Charging Cable,1,14.95,08/04/19 13:24,"920 13th St, Portland, OR 97035" +246396,AA Batteries (4-pack),1,3.84,08/11/19 16:56,"355 Meadow St, Los Angeles, CA 90001" +246397,Apple Airpods Headphones,1,150,08/11/19 18:59,"180 Pine St, San Francisco, CA 94016" +246398,iPhone,1,700,08/10/19 11:10,"250 River St, Boston, MA 02215" +246399,Wired Headphones,1,11.99,08/18/19 18:53,"975 10th St, San Francisco, CA 94016" +246400,Macbook Pro Laptop,1,1700,08/13/19 15:01,"701 River St, San Francisco, CA 94016" +,,,,, +246401,AAA Batteries (4-pack),1,2.99,08/21/19 13:09,"173 Lakeview St, Los Angeles, CA 90001" +246402,Bose SoundSport Headphones,1,99.99,08/13/19 08:53,"640 Jackson St, San Francisco, CA 94016" +246403,Apple Airpods Headphones,1,150,08/20/19 21:07,"262 Sunset St, Atlanta, GA 30301" +246404,AA Batteries (4-pack),1,3.84,08/03/19 14:52,"103 Spruce St, Boston, MA 02215" +246405,AA Batteries (4-pack),1,3.84,08/21/19 11:25,"88 4th St, New York City, NY 10001" +246406,AAA Batteries (4-pack),2,2.99,08/07/19 22:32,"713 4th St, Los Angeles, CA 90001" +246407,Wired Headphones,1,11.99,08/09/19 17:29,"633 7th St, Austin, TX 73301" +246408,Vareebadd Phone,1,400,08/09/19 09:21,"717 Sunset St, Dallas, TX 75001" +246409,Apple Airpods Headphones,1,150,08/26/19 15:10,"392 11th St, Portland, OR 97035" +246410,Flatscreen TV,1,300,08/11/19 22:20,"115 6th St, Portland, OR 97035" +246411,AA Batteries (4-pack),1,3.84,08/30/19 19:30,"833 Lake St, Los Angeles, CA 90001" +246412,Macbook Pro Laptop,1,1700,08/01/19 13:34,"749 12th St, Boston, MA 02215" +246413,AAA Batteries (4-pack),1,2.99,08/29/19 11:04,"812 Cedar St, Austin, TX 73301" +246413,AAA Batteries (4-pack),2,2.99,08/29/19 11:04,"812 Cedar St, Austin, TX 73301" +246414,27in FHD Monitor,1,149.99,08/29/19 14:05,"944 Madison St, Los Angeles, CA 90001" +246415,AA Batteries (4-pack),1,3.84,08/06/19 18:38,"232 Cherry St, Dallas, TX 75001" +246416,27in FHD Monitor,1,149.99,08/31/19 15:57,"144 Lakeview St, Boston, MA 02215" +246417,Macbook Pro Laptop,1,1700,08/27/19 22:46,"806 Park St, San Francisco, CA 94016" +246418,AA Batteries (4-pack),1,3.84,08/24/19 17:46,"356 Madison St, Los Angeles, CA 90001" +246419,AAA Batteries (4-pack),1,2.99,08/16/19 08:12,"511 North St, New York City, NY 10001" +246420,USB-C Charging Cable,1,11.95,08/05/19 14:13,"649 Wilson St, San Francisco, CA 94016" +246421,Bose SoundSport Headphones,1,99.99,08/29/19 12:14,"39 2nd St, Portland, OR 97035" +246422,20in Monitor,1,109.99,08/04/19 20:29,"13 Lakeview St, San Francisco, CA 94016" +246423,Apple Airpods Headphones,1,150,08/03/19 23:00,"938 North St, New York City, NY 10001" +246424,AAA Batteries (4-pack),2,2.99,08/26/19 10:32,"606 Cedar St, Boston, MA 02215" +246425,ThinkPad Laptop,1,999.99,08/11/19 18:34,"916 12th St, Los Angeles, CA 90001" +246426,27in FHD Monitor,1,149.99,08/16/19 13:39,"947 Park St, Los Angeles, CA 90001" +246427,USB-C Charging Cable,1,11.95,08/21/19 16:17,"658 Chestnut St, Austin, TX 73301" +246428,AAA Batteries (4-pack),2,2.99,08/18/19 12:02,"818 2nd St, San Francisco, CA 94016" +246429,Lightning Charging Cable,1,14.95,08/28/19 23:32,"397 4th St, San Francisco, CA 94016" +246430,AAA Batteries (4-pack),1,2.99,08/12/19 20:05,"741 13th St, Atlanta, GA 30301" +246431,AA Batteries (4-pack),1,3.84,08/19/19 18:10,"590 6th St, New York City, NY 10001" +246432,AA Batteries (4-pack),2,3.84,08/19/19 23:35,"922 Main St, Los Angeles, CA 90001" +246433,27in 4K Gaming Monitor,1,389.99,08/26/19 10:14,"272 Maple St, San Francisco, CA 94016" +246434,Wired Headphones,1,11.99,08/21/19 21:48,"601 Hickory St, Los Angeles, CA 90001" +246435,Vareebadd Phone,1,400,08/11/19 02:21,"745 Main St, Dallas, TX 75001" +246436,AA Batteries (4-pack),1,3.84,08/23/19 14:38,"547 Hill St, Boston, MA 02215" +246437,AA Batteries (4-pack),1,3.84,08/16/19 12:40,"53 Adams St, Dallas, TX 75001" +246438,AAA Batteries (4-pack),1,2.99,08/07/19 22:28,"526 Elm St, San Francisco, CA 94016" +246439,LG Dryer,1,600.0,08/27/19 19:46,"426 River St, Boston, MA 02215" +246440,Lightning Charging Cable,1,14.95,08/11/19 11:03,"555 Main St, Seattle, WA 98101" +246441,27in FHD Monitor,1,149.99,08/27/19 09:32,"816 Lake St, Austin, TX 73301" +246442,Lightning Charging Cable,1,14.95,08/28/19 19:35,"452 6th St, Dallas, TX 75001" +246443,Lightning Charging Cable,1,14.95,08/19/19 11:42,"431 1st St, Seattle, WA 98101" +246444,Vareebadd Phone,1,400,08/27/19 12:34,"535 Hill St, Austin, TX 73301" +246445,USB-C Charging Cable,2,11.95,08/09/19 20:09,"980 West St, Atlanta, GA 30301" +246446,27in 4K Gaming Monitor,1,389.99,08/23/19 13:29,"177 Madison St, Boston, MA 02215" +246447,AA Batteries (4-pack),1,3.84,08/21/19 19:15,"419 Cedar St, Portland, ME 04101" +246448,AAA Batteries (4-pack),1,2.99,08/01/19 17:28,"406 Sunset St, Boston, MA 02215" +246449,USB-C Charging Cable,1,11.95,08/31/19 01:52,"2 Sunset St, Boston, MA 02215" +246450,Flatscreen TV,1,300,08/08/19 15:06,"984 Lakeview St, Dallas, TX 75001" +246451,34in Ultrawide Monitor,1,379.99,08/07/19 09:27,"511 Madison St, Dallas, TX 75001" +246452,AAA Batteries (4-pack),1,2.99,08/04/19 11:57,"526 Jefferson St, San Francisco, CA 94016" +246453,USB-C Charging Cable,1,11.95,08/14/19 17:01,"264 River St, Boston, MA 02215" +246454,Bose SoundSport Headphones,1,99.99,08/06/19 21:55,"114 Walnut St, Los Angeles, CA 90001" +246455,AAA Batteries (4-pack),1,2.99,08/02/19 13:31,"983 Ridge St, Boston, MA 02215" +246456,34in Ultrawide Monitor,1,379.99,08/17/19 09:40,"779 8th St, Dallas, TX 75001" +246457,Wired Headphones,1,11.99,08/13/19 19:23,"866 11th St, Los Angeles, CA 90001" +246458,Lightning Charging Cable,1,14.95,08/15/19 20:48,"388 Elm St, Los Angeles, CA 90001" +246459,AAA Batteries (4-pack),1,2.99,09/01/19 02:07,"954 9th St, Dallas, TX 75001" +246460,Lightning Charging Cable,1,14.95,08/15/19 20:20,"856 Wilson St, San Francisco, CA 94016" +246461,AAA Batteries (4-pack),1,2.99,08/02/19 10:18,"244 12th St, Atlanta, GA 30301" +246462,USB-C Charging Cable,1,11.95,08/28/19 14:42,"647 1st St, San Francisco, CA 94016" +246463,Lightning Charging Cable,2,14.95,08/02/19 17:46,"342 10th St, Boston, MA 02215" +246464,USB-C Charging Cable,1,11.95,08/27/19 12:02,"646 Dogwood St, Los Angeles, CA 90001" +246465,USB-C Charging Cable,1,11.95,08/06/19 10:41,"380 West St, Atlanta, GA 30301" +246466,ThinkPad Laptop,1,999.99,08/30/19 19:53,"171 5th St, Portland, OR 97035" +246467,AAA Batteries (4-pack),1,2.99,08/01/19 22:56,"833 Church St, San Francisco, CA 94016" +246468,Bose SoundSport Headphones,1,99.99,08/03/19 19:46,"296 South St, Los Angeles, CA 90001" +246469,20in Monitor,1,109.99,08/09/19 15:16,"998 Cedar St, Atlanta, GA 30301" +246470,iPhone,1,700,08/18/19 19:10,"92 Madison St, Portland, ME 04101" +246471,Lightning Charging Cable,1,14.95,08/19/19 12:22,"932 Jackson St, Los Angeles, CA 90001" +246472,AA Batteries (4-pack),2,3.84,08/04/19 22:15,"242 Washington St, Dallas, TX 75001" +246473,AAA Batteries (4-pack),3,2.99,08/29/19 19:58,"410 7th St, Boston, MA 02215" +246474,27in FHD Monitor,1,149.99,08/04/19 20:36,"699 Jefferson St, New York City, NY 10001" +246475,Lightning Charging Cable,1,14.95,08/15/19 21:59,"9 Lake St, San Francisco, CA 94016" +246476,USB-C Charging Cable,1,11.95,08/05/19 17:55,"98 Highland St, New York City, NY 10001" +246477,Bose SoundSport Headphones,1,99.99,08/28/19 14:16,"315 2nd St, Seattle, WA 98101" +246478,Apple Airpods Headphones,1,150,08/03/19 09:14,"188 Cedar St, Portland, OR 97035" +246479,iPhone,1,700,08/13/19 11:48,"564 Highland St, New York City, NY 10001" +246480,AAA Batteries (4-pack),4,2.99,08/13/19 11:24,"587 West St, Portland, ME 04101" +246481,Apple Airpods Headphones,1,150,08/07/19 20:18,"617 Elm St, San Francisco, CA 94016" +246482,iPhone,1,700,08/13/19 15:24,"599 Chestnut St, San Francisco, CA 94016" +246482,Lightning Charging Cable,1,14.95,08/13/19 15:24,"599 Chestnut St, San Francisco, CA 94016" +246483,27in FHD Monitor,1,149.99,08/25/19 15:25,"215 5th St, Dallas, TX 75001" +246484,USB-C Charging Cable,1,11.95,08/29/19 14:38,"545 11th St, Boston, MA 02215" +246485,20in Monitor,1,109.99,08/18/19 18:25,"361 5th St, Austin, TX 73301" +246486,Apple Airpods Headphones,1,150,08/11/19 13:00,"440 Lincoln St, San Francisco, CA 94016" +246487,Lightning Charging Cable,1,14.95,08/27/19 12:43,"772 7th St, New York City, NY 10001" +246488,Lightning Charging Cable,1,14.95,08/23/19 16:19,"629 11th St, Dallas, TX 75001" +246489,Apple Airpods Headphones,1,150,08/25/19 08:34,"808 South St, New York City, NY 10001" +246490,Apple Airpods Headphones,1,150,08/27/19 15:16,"318 14th St, Boston, MA 02215" +246491,34in Ultrawide Monitor,1,379.99,08/02/19 20:54,"104 Wilson St, Los Angeles, CA 90001" +246492,Bose SoundSport Headphones,1,99.99,08/12/19 16:27,"519 6th St, Boston, MA 02215" +246493,AAA Batteries (4-pack),1,2.99,08/15/19 16:29,"34 Lakeview St, Portland, OR 97035" +246494,AAA Batteries (4-pack),3,2.99,08/10/19 13:24,"768 Ridge St, San Francisco, CA 94016" +246495,AAA Batteries (4-pack),2,2.99,08/13/19 17:02,"645 Dogwood St, Los Angeles, CA 90001" +246496,AAA Batteries (4-pack),1,2.99,08/27/19 18:01,"218 Spruce St, Boston, MA 02215" +246497,Wired Headphones,1,11.99,08/25/19 21:59,"203 Willow St, Seattle, WA 98101" +246497,USB-C Charging Cable,1,11.95,08/25/19 21:59,"203 Willow St, Seattle, WA 98101" +246498,Lightning Charging Cable,1,14.95,08/25/19 13:12,"414 Pine St, Los Angeles, CA 90001" +246499,Apple Airpods Headphones,1,150,08/04/19 16:53,"440 4th St, Portland, OR 97035" +246500,Flatscreen TV,1,300,08/16/19 00:49,"184 Pine St, Seattle, WA 98101" +246501,Lightning Charging Cable,1,14.95,08/09/19 08:10,"452 Hickory St, San Francisco, CA 94016" +246502,AA Batteries (4-pack),1,3.84,08/10/19 10:26,"451 South St, San Francisco, CA 94016" +246503,USB-C Charging Cable,1,11.95,08/30/19 08:22,"614 Park St, Los Angeles, CA 90001" +246504,27in 4K Gaming Monitor,1,389.99,08/16/19 11:16,"694 14th St, San Francisco, CA 94016" +246505,AAA Batteries (4-pack),2,2.99,08/07/19 15:55,"262 Wilson St, Los Angeles, CA 90001" +246506,27in 4K Gaming Monitor,1,389.99,08/01/19 15:11,"11 Hickory St, New York City, NY 10001" +246507,Wired Headphones,1,11.99,08/29/19 21:56,"602 Forest St, Austin, TX 73301" +246508,Wired Headphones,2,11.99,08/16/19 10:34,"92 Lincoln St, San Francisco, CA 94016" +246509,Lightning Charging Cable,1,14.95,08/01/19 19:07,"743 Willow St, Los Angeles, CA 90001" +246510,Wired Headphones,1,11.99,08/19/19 11:00,"566 Center St, Seattle, WA 98101" +246511,Lightning Charging Cable,1,14.95,08/29/19 20:38,"660 Madison St, Los Angeles, CA 90001" +246512,Apple Airpods Headphones,1,150,08/02/19 18:09,"275 11th St, Boston, MA 02215" +246513,Wired Headphones,1,11.99,08/06/19 10:15,"547 Lincoln St, Seattle, WA 98101" +246514,AA Batteries (4-pack),1,3.84,08/13/19 07:40,"962 Cherry St, Los Angeles, CA 90001" +246515,Lightning Charging Cable,1,14.95,08/10/19 10:08,"343 Lincoln St, Dallas, TX 75001" +246516,USB-C Charging Cable,1,11.95,08/02/19 22:53,"37 4th St, Seattle, WA 98101" +246517,Wired Headphones,1,11.99,08/21/19 22:55,"223 Chestnut St, New York City, NY 10001" +246518,Apple Airpods Headphones,1,150,08/16/19 12:41,"101 12th St, Los Angeles, CA 90001" +246519,AAA Batteries (4-pack),1,2.99,08/12/19 08:31,"84 North St, New York City, NY 10001" +,,,,, +246520,Bose SoundSport Headphones,2,99.99,08/22/19 11:14,"109 14th St, Atlanta, GA 30301" +246521,34in Ultrawide Monitor,1,379.99,08/27/19 11:43,"707 Cherry St, New York City, NY 10001" +246522,Wired Headphones,1,11.99,08/13/19 18:31,"892 Ridge St, San Francisco, CA 94016" +246523,Google Phone,1,600,08/13/19 21:10,"527 Pine St, San Francisco, CA 94016" +246524,Flatscreen TV,1,300,08/15/19 17:17,"759 8th St, Los Angeles, CA 90001" +246525,Flatscreen TV,1,300,08/26/19 13:37,"461 12th St, Boston, MA 02215" +246526,Apple Airpods Headphones,1,150,08/05/19 20:03,"261 10th St, San Francisco, CA 94016" +246527,USB-C Charging Cable,1,11.95,08/25/19 08:20,"255 Lakeview St, San Francisco, CA 94016" +246528,Wired Headphones,1,11.99,08/22/19 16:45,"479 Forest St, New York City, NY 10001" +246529,AAA Batteries (4-pack),5,2.99,08/18/19 16:35,"179 Ridge St, Los Angeles, CA 90001" +246530,AA Batteries (4-pack),1,3.84,08/08/19 01:36,"407 Jackson St, New York City, NY 10001" +246531,AA Batteries (4-pack),2,3.84,08/26/19 19:48,"522 Maple St, Seattle, WA 98101" +246532,20in Monitor,1,109.99,08/26/19 22:29,"64 6th St, San Francisco, CA 94016" +246533,Google Phone,1,600,08/16/19 13:34,"250 North St, San Francisco, CA 94016" +246534,Lightning Charging Cable,1,14.95,08/10/19 12:22,"719 Center St, New York City, NY 10001" +246535,Bose SoundSport Headphones,1,99.99,08/02/19 08:32,"187 West St, Boston, MA 02215" +246536,Wired Headphones,1,11.99,08/03/19 09:25,"857 Willow St, Los Angeles, CA 90001" +246537,USB-C Charging Cable,1,11.95,08/10/19 21:00,"939 2nd St, New York City, NY 10001" +246538,Apple Airpods Headphones,1,150,08/23/19 11:42,"173 Ridge St, Los Angeles, CA 90001" +246539,34in Ultrawide Monitor,1,379.99,08/18/19 21:43,"144 Sunset St, Boston, MA 02215" +246540,iPhone,1,700,08/03/19 17:29,"818 13th St, Dallas, TX 75001" +246540,Lightning Charging Cable,1,14.95,08/03/19 17:29,"818 13th St, Dallas, TX 75001" +246541,AAA Batteries (4-pack),1,2.99,08/30/19 16:10,"434 Center St, San Francisco, CA 94016" +246542,AA Batteries (4-pack),2,3.84,08/31/19 14:52,"10 Sunset St, Los Angeles, CA 90001" +246543,Lightning Charging Cable,1,14.95,08/02/19 15:57,"135 12th St, Atlanta, GA 30301" +246544,iPhone,1,700,08/27/19 07:49,"365 1st St, New York City, NY 10001" +246545,Wired Headphones,1,11.99,08/26/19 18:51,"768 2nd St, Austin, TX 73301" +246546,USB-C Charging Cable,2,11.95,08/05/19 14:24,"804 Pine St, New York City, NY 10001" +246547,Bose SoundSport Headphones,1,99.99,08/07/19 00:23,"880 5th St, Seattle, WA 98101" +246548,Bose SoundSport Headphones,1,99.99,08/05/19 08:40,"948 Lincoln St, New York City, NY 10001" +246549,AA Batteries (4-pack),1,3.84,08/24/19 22:24,"802 Walnut St, Boston, MA 02215" +246550,Flatscreen TV,1,300,08/11/19 16:06,"158 Highland St, San Francisco, CA 94016" +246550,iPhone,1,700,08/11/19 16:06,"158 Highland St, San Francisco, CA 94016" +246551,Lightning Charging Cable,1,14.95,08/20/19 23:58,"103 Highland St, Boston, MA 02215" +246552,LG Washing Machine,1,600.0,08/19/19 09:30,"905 Hill St, Atlanta, GA 30301" +246553,Google Phone,1,600,08/05/19 06:59,"645 Ridge St, Boston, MA 02215" +246554,Lightning Charging Cable,1,14.95,08/22/19 11:43,"917 South St, Dallas, TX 75001" +246555,Wired Headphones,2,11.99,08/07/19 18:09,"447 2nd St, New York City, NY 10001" +246556,Bose SoundSport Headphones,1,99.99,08/21/19 18:04,"84 4th St, Los Angeles, CA 90001" +246557,27in FHD Monitor,1,149.99,08/26/19 17:56,"398 4th St, Austin, TX 73301" +246558,iPhone,1,700,08/03/19 15:02,"657 8th St, San Francisco, CA 94016" +246559,Lightning Charging Cable,1,14.95,08/29/19 02:44,"818 6th St, Los Angeles, CA 90001" +246560,Flatscreen TV,1,300,08/23/19 16:53,"215 North St, New York City, NY 10001" +246561,AA Batteries (4-pack),1,3.84,08/23/19 13:23,"413 Washington St, San Francisco, CA 94016" +246562,AAA Batteries (4-pack),3,2.99,08/08/19 18:09,"463 Wilson St, Los Angeles, CA 90001" +246563,Flatscreen TV,1,300,08/15/19 00:03,"667 Meadow St, Dallas, TX 75001" +246564,Lightning Charging Cable,1,14.95,08/24/19 07:25,"907 Cedar St, San Francisco, CA 94016" +246565,20in Monitor,1,109.99,08/18/19 18:05,"14 North St, San Francisco, CA 94016" +246566,27in FHD Monitor,1,149.99,08/20/19 18:18,"241 Johnson St, Austin, TX 73301" +246567,Bose SoundSport Headphones,1,99.99,08/09/19 23:02,"893 Washington St, Seattle, WA 98101" +246568,Lightning Charging Cable,1,14.95,08/28/19 01:28,"765 1st St, San Francisco, CA 94016" +246569,USB-C Charging Cable,1,11.95,08/20/19 19:34,"798 Chestnut St, Los Angeles, CA 90001" +246570,Apple Airpods Headphones,1,150,08/15/19 14:10,"404 2nd St, San Francisco, CA 94016" +246571,Apple Airpods Headphones,1,150,08/12/19 21:48,"940 Hill St, San Francisco, CA 94016" +246572,AA Batteries (4-pack),1,3.84,08/06/19 19:57,"898 Chestnut St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +246573,USB-C Charging Cable,1,11.95,08/31/19 11:05,"361 Spruce St, Los Angeles, CA 90001" +246574,Wired Headphones,1,11.99,08/01/19 22:39,"975 Jefferson St, Atlanta, GA 30301" +246575,ThinkPad Laptop,1,999.99,08/09/19 14:07,"341 2nd St, San Francisco, CA 94016" +246576,Bose SoundSport Headphones,1,99.99,08/28/19 10:45,"242 Forest St, Los Angeles, CA 90001" +246577,Apple Airpods Headphones,1,150,08/26/19 10:35,"320 Washington St, Atlanta, GA 30301" +246578,34in Ultrawide Monitor,1,379.99,08/11/19 21:24,"564 Center St, New York City, NY 10001" +246579,AAA Batteries (4-pack),1,2.99,08/27/19 11:29,"624 Pine St, Boston, MA 02215" +246580,Lightning Charging Cable,1,14.95,08/22/19 09:54,"237 Lincoln St, New York City, NY 10001" +246581,Google Phone,1,600,08/08/19 16:06,"880 1st St, Austin, TX 73301" +246582,AA Batteries (4-pack),1,3.84,08/15/19 12:01,"768 Park St, Portland, OR 97035" +246583,27in FHD Monitor,1,149.99,08/10/19 16:44,"632 Walnut St, San Francisco, CA 94016" +246584,AAA Batteries (4-pack),1,2.99,08/27/19 01:09,"528 Cedar St, Los Angeles, CA 90001" +246585,USB-C Charging Cable,1,11.95,08/05/19 06:01,"511 4th St, Los Angeles, CA 90001" +246585,Lightning Charging Cable,1,14.95,08/05/19 06:01,"511 4th St, Los Angeles, CA 90001" +246586,Bose SoundSport Headphones,1,99.99,08/29/19 00:13,"757 11th St, San Francisco, CA 94016" +246587,Apple Airpods Headphones,1,150,08/05/19 22:58,"826 7th St, San Francisco, CA 94016" +246588,Macbook Pro Laptop,1,1700,08/10/19 16:18,"928 4th St, Seattle, WA 98101" +246589,USB-C Charging Cable,2,11.95,08/18/19 20:26,"994 Cherry St, Portland, OR 97035" +246590,Apple Airpods Headphones,1,150,08/29/19 19:56,"900 Ridge St, Dallas, TX 75001" +246591,ThinkPad Laptop,1,999.99,08/09/19 21:03,"427 1st St, Los Angeles, CA 90001" +246591,AAA Batteries (4-pack),2,2.99,08/09/19 21:03,"427 1st St, Los Angeles, CA 90001" +246592,Apple Airpods Headphones,1,150,08/03/19 06:13,"882 River St, Austin, TX 73301" +246593,AA Batteries (4-pack),1,3.84,08/02/19 18:19,"349 12th St, Portland, OR 97035" +246594,34in Ultrawide Monitor,1,379.99,08/08/19 12:54,"986 Center St, San Francisco, CA 94016" +246595,27in 4K Gaming Monitor,1,389.99,08/30/19 23:34,"148 5th St, Seattle, WA 98101" +246596,USB-C Charging Cable,1,11.95,08/01/19 21:21,"224 North St, Dallas, TX 75001" +246597,iPhone,1,700,08/24/19 16:18,"723 Adams St, Atlanta, GA 30301" +246598,iPhone,1,700,08/21/19 11:16,"208 Adams St, New York City, NY 10001" +246598,Lightning Charging Cable,1,14.95,08/21/19 11:16,"208 Adams St, New York City, NY 10001" +246598,Apple Airpods Headphones,1,150,08/21/19 11:16,"208 Adams St, New York City, NY 10001" +246599,34in Ultrawide Monitor,1,379.99,08/15/19 08:18,"121 River St, San Francisco, CA 94016" +246600,AAA Batteries (4-pack),1,2.99,08/09/19 15:38,"888 River St, Seattle, WA 98101" +246601,Macbook Pro Laptop,1,1700,08/17/19 11:19,"876 Chestnut St, Seattle, WA 98101" +246602,Lightning Charging Cable,1,14.95,08/27/19 17:06,"901 Maple St, Austin, TX 73301" +246603,AA Batteries (4-pack),1,3.84,08/07/19 09:51,"491 Church St, San Francisco, CA 94016" +246604,Lightning Charging Cable,1,14.95,08/09/19 23:35,"695 7th St, Los Angeles, CA 90001" +246605,Lightning Charging Cable,1,14.95,08/20/19 12:02,"223 Lake St, Austin, TX 73301" +246606,27in 4K Gaming Monitor,1,389.99,08/12/19 07:53,"939 6th St, New York City, NY 10001" +246607,AA Batteries (4-pack),1,3.84,08/09/19 21:50,"929 13th St, Portland, OR 97035" +246608,Wired Headphones,1,11.99,08/06/19 14:56,"163 Walnut St, San Francisco, CA 94016" +246609,Macbook Pro Laptop,1,1700,08/05/19 18:19,"837 Walnut St, Portland, OR 97035" +246610,Bose SoundSport Headphones,1,99.99,08/05/19 19:15,"199 Jefferson St, San Francisco, CA 94016" +246611,Apple Airpods Headphones,1,150,08/02/19 22:12,"323 Johnson St, New York City, NY 10001" +246612,27in FHD Monitor,1,149.99,08/03/19 15:58,"230 13th St, Seattle, WA 98101" +246613,Bose SoundSport Headphones,1,99.99,08/16/19 21:30,"339 Center St, San Francisco, CA 94016" +246614,AAA Batteries (4-pack),1,2.99,08/27/19 13:27,"191 Pine St, San Francisco, CA 94016" +246615,Lightning Charging Cable,1,14.95,08/25/19 12:09,"577 Willow St, San Francisco, CA 94016" +246616,Google Phone,1,600,08/10/19 13:03,"911 Hill St, Atlanta, GA 30301" +246616,USB-C Charging Cable,1,11.95,08/10/19 13:03,"911 Hill St, Atlanta, GA 30301" +246617,Flatscreen TV,1,300,08/07/19 09:12,"135 9th St, San Francisco, CA 94016" +246618,LG Washing Machine,1,600.0,08/18/19 19:57,"304 Wilson St, Boston, MA 02215" +246619,Wired Headphones,1,11.99,08/06/19 16:05,"844 Hill St, Seattle, WA 98101" +246620,Wired Headphones,1,11.99,08/22/19 23:58,"14 Maple St, Portland, OR 97035" +246621,27in FHD Monitor,1,149.99,08/24/19 11:24,"395 Lakeview St, San Francisco, CA 94016" +246622,ThinkPad Laptop,1,999.99,08/31/19 19:41,"29 Elm St, San Francisco, CA 94016" +246623,Bose SoundSport Headphones,1,99.99,08/30/19 09:47,"861 8th St, Boston, MA 02215" +246624,Vareebadd Phone,1,400,08/14/19 13:19,"679 Madison St, Seattle, WA 98101" +246625,20in Monitor,1,109.99,08/06/19 17:19,"479 2nd St, Boston, MA 02215" +246626,AAA Batteries (4-pack),1,2.99,08/13/19 11:05,"331 Willow St, Los Angeles, CA 90001" +246627,Wired Headphones,1,11.99,08/13/19 11:11,"134 Johnson St, Atlanta, GA 30301" +246628,Lightning Charging Cable,2,14.95,08/10/19 13:52,"7 5th St, Austin, TX 73301" +246629,AAA Batteries (4-pack),1,2.99,08/22/19 18:35,"709 Highland St, Boston, MA 02215" +246630,27in 4K Gaming Monitor,1,389.99,08/21/19 19:47,"441 Lakeview St, Los Angeles, CA 90001" +246631,27in 4K Gaming Monitor,1,389.99,08/16/19 11:28,"128 Willow St, San Francisco, CA 94016" +246632,ThinkPad Laptop,1,999.99,08/09/19 01:56,"518 South St, San Francisco, CA 94016" +246633,iPhone,1,700,08/04/19 17:20,"413 Cedar St, Boston, MA 02215" +246634,Vareebadd Phone,1,400,08/18/19 20:33,"191 North St, San Francisco, CA 94016" +246635,ThinkPad Laptop,1,999.99,08/22/19 18:35,"684 10th St, Portland, OR 97035" +246636,34in Ultrawide Monitor,1,379.99,08/15/19 14:35,"277 Elm St, Portland, OR 97035" +246637,USB-C Charging Cable,1,11.95,08/05/19 01:24,"886 Lincoln St, Austin, TX 73301" +246638,Bose SoundSport Headphones,1,99.99,08/05/19 22:34,"582 9th St, New York City, NY 10001" +246639,27in 4K Gaming Monitor,1,389.99,08/15/19 11:31,"218 11th St, Boston, MA 02215" +246640,Apple Airpods Headphones,1,150,08/22/19 10:41,"501 1st St, Boston, MA 02215" +246641,Bose SoundSport Headphones,1,99.99,08/08/19 11:48,"979 4th St, Dallas, TX 75001" +246642,iPhone,1,700,08/28/19 16:21,"913 1st St, New York City, NY 10001" +246643,Apple Airpods Headphones,1,150,08/12/19 20:31,"780 Sunset St, San Francisco, CA 94016" +246644,USB-C Charging Cable,1,11.95,08/20/19 13:31,"435 West St, New York City, NY 10001" +246645,20in Monitor,1,109.99,08/03/19 16:29,"347 Church St, San Francisco, CA 94016" +246646,Vareebadd Phone,1,400,08/02/19 13:35,"677 Jackson St, San Francisco, CA 94016" +246647,USB-C Charging Cable,2,11.95,08/23/19 15:09,"199 10th St, San Francisco, CA 94016" +246648,AAA Batteries (4-pack),1,2.99,08/16/19 14:35,"907 Center St, San Francisco, CA 94016" +246649,Bose SoundSport Headphones,1,99.99,08/18/19 13:41,"738 Jefferson St, Seattle, WA 98101" +246650,Wired Headphones,1,11.99,08/16/19 16:53,"353 Spruce St, Atlanta, GA 30301" +246651,AAA Batteries (4-pack),1,2.99,08/14/19 17:59,"720 Lake St, San Francisco, CA 94016" +246652,AA Batteries (4-pack),1,3.84,08/25/19 10:47,"390 14th St, San Francisco, CA 94016" +246653,Bose SoundSport Headphones,1,99.99,08/11/19 06:29,"281 5th St, Dallas, TX 75001" +246654,AA Batteries (4-pack),1,3.84,08/09/19 12:02,"910 Madison St, San Francisco, CA 94016" +246655,USB-C Charging Cable,1,11.95,08/15/19 19:09,"125 West St, Dallas, TX 75001" +246656,AAA Batteries (4-pack),1,2.99,08/26/19 14:18,"936 Johnson St, San Francisco, CA 94016" +246657,Lightning Charging Cable,1,14.95,08/24/19 10:23,"72 5th St, San Francisco, CA 94016" +246658,AAA Batteries (4-pack),1,2.99,08/19/19 13:16,"333 Maple St, Atlanta, GA 30301" +246659,Lightning Charging Cable,1,14.95,08/16/19 19:19,"415 Center St, New York City, NY 10001" +246660,AA Batteries (4-pack),3,3.84,08/25/19 11:59,"751 Elm St, Dallas, TX 75001" +246661,Google Phone,1,600,08/29/19 14:26,"615 9th St, San Francisco, CA 94016" +246662,Apple Airpods Headphones,1,150,08/04/19 23:00,"287 Wilson St, Boston, MA 02215" +246663,Wired Headphones,2,11.99,08/06/19 15:16,"618 Cherry St, San Francisco, CA 94016" +246664,Lightning Charging Cable,3,14.95,08/09/19 22:28,"622 Chestnut St, Los Angeles, CA 90001" +246665,Google Phone,1,600,08/11/19 10:55,"511 Meadow St, Dallas, TX 75001" +246665,Bose SoundSport Headphones,1,99.99,08/11/19 10:55,"511 Meadow St, Dallas, TX 75001" +246666,Apple Airpods Headphones,1,150,08/02/19 11:03,"752 2nd St, Los Angeles, CA 90001" +246667,AA Batteries (4-pack),2,3.84,08/17/19 10:08,"729 North St, San Francisco, CA 94016" +246668,Lightning Charging Cable,1,14.95,08/15/19 12:36,"59 Jefferson St, Dallas, TX 75001" +246669,AAA Batteries (4-pack),1,2.99,08/19/19 15:24,"66 14th St, San Francisco, CA 94016" +246670,iPhone,1,700,08/28/19 20:51,"222 Willow St, New York City, NY 10001" +246671,Lightning Charging Cable,1,14.95,08/23/19 12:11,"755 5th St, San Francisco, CA 94016" +246672,USB-C Charging Cable,1,11.95,08/14/19 22:26,"554 Willow St, Boston, MA 02215" +246673,AA Batteries (4-pack),1,3.84,08/12/19 23:01,"514 Maple St, Atlanta, GA 30301" +246674,AAA Batteries (4-pack),1,2.99,08/11/19 09:01,"197 Highland St, San Francisco, CA 94016" +246675,27in 4K Gaming Monitor,1,389.99,08/15/19 21:26,"605 10th St, Seattle, WA 98101" +246676,USB-C Charging Cable,1,11.95,08/11/19 13:25,"939 2nd St, Boston, MA 02215" +246677,27in FHD Monitor,1,149.99,08/03/19 16:07,"399 Lake St, Los Angeles, CA 90001" +246678,Bose SoundSport Headphones,1,99.99,08/19/19 17:53,"204 North St, New York City, NY 10001" +246679,Wired Headphones,1,11.99,08/20/19 14:59,"786 Lakeview St, New York City, NY 10001" +246680,27in FHD Monitor,1,149.99,08/30/19 08:28,"819 Maple St, Seattle, WA 98101" +246681,Wired Headphones,1,11.99,08/04/19 21:08,"65 Park St, Portland, OR 97035" +246682,34in Ultrawide Monitor,1,379.99,08/22/19 06:00,"591 Sunset St, Portland, OR 97035" +246683,AAA Batteries (4-pack),1,2.99,08/10/19 19:02,"982 4th St, Los Angeles, CA 90001" +246684,USB-C Charging Cable,1,11.95,08/30/19 18:04,"853 1st St, Seattle, WA 98101" +246685,USB-C Charging Cable,1,11.95,08/11/19 11:59,"326 Walnut St, Portland, ME 04101" +246686,AA Batteries (4-pack),1,3.84,08/26/19 15:00,"321 Washington St, Seattle, WA 98101" +246687,AA Batteries (4-pack),1,3.84,08/03/19 12:45,"757 Lincoln St, Los Angeles, CA 90001" +246688,Lightning Charging Cable,1,14.95,08/04/19 18:53,"450 Hickory St, San Francisco, CA 94016" +246689,Bose SoundSport Headphones,1,99.99,08/08/19 16:40,"798 6th St, Atlanta, GA 30301" +246690,27in FHD Monitor,1,149.99,08/01/19 11:23,"465 Hill St, San Francisco, CA 94016" +246691,Apple Airpods Headphones,1,150,08/07/19 16:18,"522 12th St, San Francisco, CA 94016" +246692,AAA Batteries (4-pack),1,2.99,08/24/19 13:47,"975 2nd St, San Francisco, CA 94016" +246692,AAA Batteries (4-pack),1,2.99,08/24/19 13:47,"975 2nd St, San Francisco, CA 94016" +246693,USB-C Charging Cable,1,11.95,08/28/19 09:08,"328 Johnson St, Dallas, TX 75001" +246694,Lightning Charging Cable,1,14.95,08/30/19 18:49,"328 Center St, San Francisco, CA 94016" +246695,LG Dryer,1,600.0,08/14/19 00:12,"412 Main St, Los Angeles, CA 90001" +246696,27in FHD Monitor,1,149.99,08/17/19 10:14,"227 Jefferson St, Portland, OR 97035" +246697,Wired Headphones,1,11.99,08/31/19 22:28,"965 Maple St, Los Angeles, CA 90001" +246698,Lightning Charging Cable,1,14.95,08/18/19 18:02,"339 Jefferson St, New York City, NY 10001" +246698,AA Batteries (4-pack),2,3.84,08/18/19 18:02,"339 Jefferson St, New York City, NY 10001" +246699,27in 4K Gaming Monitor,1,389.99,08/11/19 17:00,"539 South St, Los Angeles, CA 90001" +246700,Macbook Pro Laptop,1,1700,08/02/19 06:48,"402 6th St, Dallas, TX 75001" +246701,Wired Headphones,1,11.99,08/18/19 18:59,"353 West St, Seattle, WA 98101" +246702,Apple Airpods Headphones,1,150,08/21/19 08:05,"584 9th St, Seattle, WA 98101" +246703,Flatscreen TV,1,300,08/25/19 12:56,"399 Wilson St, New York City, NY 10001" +246703,AA Batteries (4-pack),1,3.84,08/25/19 12:56,"399 Wilson St, New York City, NY 10001" +246704,Wired Headphones,1,11.99,08/14/19 20:24,"809 Meadow St, Los Angeles, CA 90001" +246705,ThinkPad Laptop,1,999.99,08/03/19 00:03,"361 Lake St, Los Angeles, CA 90001" +246706,20in Monitor,1,109.99,08/01/19 18:16,"2 Walnut St, San Francisco, CA 94016" +246707,AAA Batteries (4-pack),1,2.99,08/02/19 18:46,"281 Sunset St, San Francisco, CA 94016" +246708,Macbook Pro Laptop,1,1700,08/13/19 02:55,"668 Pine St, New York City, NY 10001" +246709,20in Monitor,1,109.99,08/24/19 13:04,"126 Lake St, Portland, OR 97035" +246710,Lightning Charging Cable,1,14.95,08/28/19 12:07,"650 Johnson St, New York City, NY 10001" +246711,20in Monitor,1,109.99,08/27/19 12:47,"750 Walnut St, Los Angeles, CA 90001" +246712,Bose SoundSport Headphones,1,99.99,08/21/19 03:41,"572 Elm St, San Francisco, CA 94016" +246713,Apple Airpods Headphones,1,150,08/04/19 22:24,"811 Washington St, New York City, NY 10001" +246714,LG Washing Machine,1,600.0,08/23/19 01:39,"350 North St, Dallas, TX 75001" +246715,AAA Batteries (4-pack),1,2.99,08/02/19 19:47,"295 Sunset St, Seattle, WA 98101" +246716,AA Batteries (4-pack),1,3.84,08/30/19 18:49,"714 Madison St, Los Angeles, CA 90001" +246717,Wired Headphones,1,11.99,08/09/19 09:48,"478 Washington St, San Francisco, CA 94016" +246718,27in FHD Monitor,1,149.99,08/17/19 10:42,"587 Ridge St, San Francisco, CA 94016" +246719,Apple Airpods Headphones,1,150,08/22/19 22:02,"563 2nd St, Dallas, TX 75001" +246720,Wired Headphones,1,11.99,08/17/19 21:29,"155 West St, Atlanta, GA 30301" +246721,AA Batteries (4-pack),2,3.84,08/13/19 19:56,"836 Maple St, Atlanta, GA 30301" +246722,iPhone,1,700,08/18/19 20:07,"692 4th St, New York City, NY 10001" +246722,Apple Airpods Headphones,1,150,08/18/19 20:07,"692 4th St, New York City, NY 10001" +246723,AAA Batteries (4-pack),1,2.99,08/20/19 10:44,"637 Park St, New York City, NY 10001" +246724,27in FHD Monitor,1,149.99,08/09/19 19:07,"964 Spruce St, Portland, OR 97035" +246725,34in Ultrawide Monitor,1,379.99,08/26/19 13:15,"184 Lake St, New York City, NY 10001" +246726,34in Ultrawide Monitor,1,379.99,08/29/19 15:00,"658 Sunset St, New York City, NY 10001" +246727,27in 4K Gaming Monitor,1,389.99,08/19/19 10:04,"405 Johnson St, New York City, NY 10001" +246728,Wired Headphones,2,11.99,08/13/19 21:45,"496 13th St, Seattle, WA 98101" +246729,AAA Batteries (4-pack),1,2.99,08/21/19 22:03,"219 9th St, Los Angeles, CA 90001" +246730,iPhone,1,700,08/08/19 13:26,"133 Johnson St, Boston, MA 02215" +246731,AA Batteries (4-pack),1,3.84,08/02/19 22:28,"716 Cherry St, Seattle, WA 98101" +246732,USB-C Charging Cable,1,11.95,08/06/19 22:06,"478 Cherry St, Austin, TX 73301" +246733,Macbook Pro Laptop,1,1700,08/26/19 22:49,"679 Lake St, Austin, TX 73301" +246734,27in FHD Monitor,1,149.99,08/18/19 22:43,"567 Sunset St, Seattle, WA 98101" +246735,USB-C Charging Cable,1,11.95,08/28/19 06:55,"912 South St, San Francisco, CA 94016" +246736,AAA Batteries (4-pack),3,2.99,08/20/19 11:21,"790 Center St, Portland, ME 04101" +246737,Bose SoundSport Headphones,1,99.99,08/04/19 14:19,"226 Center St, Boston, MA 02215" +246738,ThinkPad Laptop,1,999.99,08/01/19 20:07,"552 Hickory St, New York City, NY 10001" +246739,AA Batteries (4-pack),1,3.84,08/18/19 15:06,"364 6th St, San Francisco, CA 94016" +246740,Lightning Charging Cable,1,14.95,08/05/19 14:38,"970 8th St, San Francisco, CA 94016" +246741,AA Batteries (4-pack),1,3.84,08/13/19 16:25,"436 Washington St, Seattle, WA 98101" +246742,USB-C Charging Cable,1,11.95,08/14/19 20:20,"710 1st St, San Francisco, CA 94016" +246743,ThinkPad Laptop,1,999.99,08/29/19 07:51,"169 Hill St, Atlanta, GA 30301" +246744,34in Ultrawide Monitor,1,379.99,08/26/19 21:16,"734 Washington St, Boston, MA 02215" +246745,iPhone,1,700,08/14/19 23:43,"680 Hill St, New York City, NY 10001" +246746,Apple Airpods Headphones,1,150,08/31/19 15:14,"717 Dogwood St, Boston, MA 02215" +246747,Bose SoundSport Headphones,1,99.99,08/13/19 16:39,"987 5th St, San Francisco, CA 94016" +246748,LG Washing Machine,1,600.0,08/25/19 14:01,"379 Adams St, Austin, TX 73301" +246749,iPhone,1,700,08/19/19 14:18,"804 Church St, Boston, MA 02215" +246750,AAA Batteries (4-pack),1,2.99,08/17/19 20:29,"2 North St, Boston, MA 02215" +246751,AA Batteries (4-pack),1,3.84,08/11/19 10:31,"303 Walnut St, Los Angeles, CA 90001" +246752,AA Batteries (4-pack),1,3.84,08/13/19 22:35,"372 14th St, Seattle, WA 98101" +246753,USB-C Charging Cable,1,11.95,08/07/19 10:21,"627 Lakeview St, San Francisco, CA 94016" +246754,27in 4K Gaming Monitor,1,389.99,08/23/19 13:56,"958 12th St, Los Angeles, CA 90001" +246755,iPhone,1,700,08/22/19 23:25,"320 9th St, San Francisco, CA 94016" +246756,Lightning Charging Cable,1,14.95,08/08/19 17:51,"477 Johnson St, Seattle, WA 98101" +246757,27in 4K Gaming Monitor,1,389.99,08/03/19 22:49,"288 10th St, New York City, NY 10001" +246758,34in Ultrawide Monitor,1,379.99,08/05/19 10:57,"755 Church St, Portland, OR 97035" +246759,27in 4K Gaming Monitor,1,389.99,08/09/19 10:25,"201 Adams St, New York City, NY 10001" +246760,Lightning Charging Cable,1,14.95,08/29/19 13:37,"110 Jackson St, Dallas, TX 75001" +246761,Lightning Charging Cable,1,14.95,08/20/19 15:28,"40 Lake St, Los Angeles, CA 90001" +246762,Macbook Pro Laptop,1,1700,08/29/19 07:58,"336 Cedar St, New York City, NY 10001" +246763,Apple Airpods Headphones,1,150,08/30/19 10:45,"311 1st St, New York City, NY 10001" +246764,AAA Batteries (4-pack),1,2.99,08/06/19 11:43,"166 Lakeview St, Dallas, TX 75001" +246765,USB-C Charging Cable,1,11.95,08/23/19 11:36,"691 12th St, New York City, NY 10001" +246766,34in Ultrawide Monitor,1,379.99,08/26/19 12:43,"605 Spruce St, Seattle, WA 98101" +246767,Wired Headphones,2,11.99,08/19/19 14:18,"331 Lakeview St, San Francisco, CA 94016" +246768,20in Monitor,1,109.99,08/02/19 10:50,"413 Hickory St, San Francisco, CA 94016" +246769,USB-C Charging Cable,1,11.95,08/17/19 08:50,"781 12th St, Atlanta, GA 30301" +246770,Bose SoundSport Headphones,1,99.99,08/14/19 15:57,"719 9th St, San Francisco, CA 94016" +246771,Macbook Pro Laptop,1,1700,08/31/19 14:05,"139 11th St, Seattle, WA 98101" +246772,Wired Headphones,1,11.99,08/29/19 00:48,"260 Jefferson St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +246773,Macbook Pro Laptop,1,1700,08/05/19 17:03,"715 Lakeview St, Dallas, TX 75001" +246774,AA Batteries (4-pack),1,3.84,08/28/19 13:30,"200 Chestnut St, Atlanta, GA 30301" +246775,Bose SoundSport Headphones,1,99.99,08/03/19 22:16,"923 Hickory St, Boston, MA 02215" +246776,AA Batteries (4-pack),1,3.84,08/14/19 14:00,"537 9th St, Dallas, TX 75001" +246777,USB-C Charging Cable,1,11.95,08/08/19 17:31,"368 11th St, Boston, MA 02215" +246778,27in FHD Monitor,1,149.99,08/09/19 09:41,"315 2nd St, Atlanta, GA 30301" +246779,USB-C Charging Cable,1,11.95,08/03/19 21:39,"203 13th St, New York City, NY 10001" +246780,Wired Headphones,1,11.99,08/25/19 15:26,"203 Main St, Boston, MA 02215" +246781,Vareebadd Phone,1,400,08/26/19 13:23,"933 Chestnut St, Austin, TX 73301" +246782,USB-C Charging Cable,1,11.95,08/27/19 16:57,"453 Washington St, Los Angeles, CA 90001" +246783,34in Ultrawide Monitor,1,379.99,08/28/19 21:45,"660 Maple St, Seattle, WA 98101" +246784,Wired Headphones,1,11.99,08/30/19 11:31,"806 Church St, Atlanta, GA 30301" +246785,27in FHD Monitor,1,149.99,08/13/19 22:20,"347 12th St, Boston, MA 02215" +246786,34in Ultrawide Monitor,1,379.99,08/06/19 11:38,"534 Jackson St, Seattle, WA 98101" +246787,20in Monitor,1,109.99,08/30/19 12:10,"145 7th St, Portland, OR 97035" +246788,27in 4K Gaming Monitor,1,389.99,08/31/19 16:21,"219 9th St, New York City, NY 10001" +246789,AAA Batteries (4-pack),1,2.99,08/09/19 20:50,"908 12th St, Austin, TX 73301" +246790,Google Phone,1,600,08/28/19 23:17,"709 Wilson St, Seattle, WA 98101" +246791,AA Batteries (4-pack),2,3.84,08/29/19 20:57,"447 Adams St, San Francisco, CA 94016" +246792,USB-C Charging Cable,1,11.95,08/03/19 15:58,"703 Hill St, Atlanta, GA 30301" +246793,iPhone,1,700,08/15/19 12:19,"918 Johnson St, Boston, MA 02215" +246794,iPhone,1,700,08/07/19 12:04,"960 Maple St, New York City, NY 10001" +246795,Wired Headphones,1,11.99,08/17/19 10:36,"241 11th St, New York City, NY 10001" +246796,20in Monitor,1,109.99,08/08/19 17:08,"901 14th St, New York City, NY 10001" +246797,Bose SoundSport Headphones,1,99.99,08/28/19 19:34,"297 7th St, Los Angeles, CA 90001" +246798,Bose SoundSport Headphones,1,99.99,08/14/19 08:33,"985 Pine St, Boston, MA 02215" +246799,LG Dryer,1,600.0,08/01/19 13:14,"3 11th St, Seattle, WA 98101" +246800,Bose SoundSport Headphones,1,99.99,08/04/19 18:37,"121 2nd St, Boston, MA 02215" +246801,AA Batteries (4-pack),1,3.84,08/30/19 18:19,"858 2nd St, Seattle, WA 98101" +246802,Lightning Charging Cable,1,14.95,08/11/19 21:18,"885 Adams St, Atlanta, GA 30301" +246803,Apple Airpods Headphones,1,150,08/24/19 20:05,"341 Church St, Portland, OR 97035" +246804,Bose SoundSport Headphones,1,99.99,08/23/19 11:16,"87 Lakeview St, Atlanta, GA 30301" +246805,Wired Headphones,1,11.99,08/06/19 11:09,"892 South St, Portland, OR 97035" +246806,AA Batteries (4-pack),1,3.84,08/17/19 14:07,"463 Washington St, Atlanta, GA 30301" +246807,AA Batteries (4-pack),1,3.84,08/24/19 11:11,"579 Lincoln St, New York City, NY 10001" +246808,Apple Airpods Headphones,1,150,08/10/19 12:37,"819 Meadow St, Los Angeles, CA 90001" +246809,Bose SoundSport Headphones,1,99.99,08/28/19 19:33,"857 6th St, Austin, TX 73301" +246810,Apple Airpods Headphones,1,150,08/15/19 20:33,"218 Cherry St, Atlanta, GA 30301" +246811,Lightning Charging Cable,1,14.95,08/18/19 18:48,"528 Washington St, Dallas, TX 75001" +246812,AA Batteries (4-pack),1,3.84,08/07/19 13:05,"87 West St, San Francisco, CA 94016" +246813,Apple Airpods Headphones,1,150,08/25/19 17:06,"120 Lincoln St, New York City, NY 10001" +246814,Google Phone,1,600,08/21/19 20:33,"445 Jefferson St, Austin, TX 73301" +246815,USB-C Charging Cable,2,11.95,08/18/19 20:22,"654 Church St, Los Angeles, CA 90001" +246816,Google Phone,1,600,08/23/19 18:22,"357 Lake St, Dallas, TX 75001" +246817,27in 4K Gaming Monitor,1,389.99,08/26/19 10:43,"346 Madison St, Portland, OR 97035" +246818,34in Ultrawide Monitor,1,379.99,08/05/19 13:42,"592 9th St, New York City, NY 10001" +246819,27in FHD Monitor,1,149.99,08/01/19 11:10,"612 Lincoln St, San Francisco, CA 94016" +246820,Bose SoundSport Headphones,1,99.99,08/08/19 13:48,"77 6th St, Boston, MA 02215" +246821,27in FHD Monitor,1,149.99,08/04/19 10:11,"469 7th St, Boston, MA 02215" +246822,Apple Airpods Headphones,1,150,08/25/19 09:55,"372 Chestnut St, San Francisco, CA 94016" +246823,AAA Batteries (4-pack),1,2.99,08/27/19 09:36,"368 Maple St, Portland, OR 97035" +246824,Google Phone,1,600,08/04/19 20:14,"801 Highland St, Los Angeles, CA 90001" +246825,AA Batteries (4-pack),2,3.84,08/30/19 14:03,"69 12th St, San Francisco, CA 94016" +246826,Flatscreen TV,1,300,08/23/19 11:15,"465 Ridge St, Austin, TX 73301" +246827,Wired Headphones,1,11.99,08/17/19 18:57,"483 Johnson St, Portland, OR 97035" +246828,AAA Batteries (4-pack),1,2.99,08/07/19 09:27,"394 Park St, Los Angeles, CA 90001" +246829,34in Ultrawide Monitor,1,379.99,08/26/19 20:53,"371 Elm St, Los Angeles, CA 90001" +246830,AA Batteries (4-pack),1,3.84,08/17/19 17:12,"590 Johnson St, Los Angeles, CA 90001" +246831,27in FHD Monitor,1,149.99,08/26/19 16:04,"756 11th St, Los Angeles, CA 90001" +246832,AA Batteries (4-pack),1,3.84,08/28/19 06:00,"686 Hickory St, Seattle, WA 98101" +246833,Bose SoundSport Headphones,1,99.99,08/12/19 14:50,"990 8th St, Dallas, TX 75001" +246834,Google Phone,1,600,08/20/19 11:16,"894 Park St, San Francisco, CA 94016" +246835,Apple Airpods Headphones,1,150,08/01/19 09:06,"141 River St, San Francisco, CA 94016" +246836,AAA Batteries (4-pack),1,2.99,08/03/19 16:39,"398 9th St, Atlanta, GA 30301" +246837,20in Monitor,1,109.99,08/14/19 15:29,"96 11th St, Los Angeles, CA 90001" +246838,Lightning Charging Cable,1,14.95,08/25/19 19:05,"434 Meadow St, Seattle, WA 98101" +246839,Google Phone,1,600,08/15/19 01:13,"228 Jefferson St, San Francisco, CA 94016" +246840,AA Batteries (4-pack),2,3.84,08/07/19 19:25,"59 1st St, Boston, MA 02215" +246841,Vareebadd Phone,1,400,08/02/19 09:44,"207 5th St, Seattle, WA 98101" +246841,USB-C Charging Cable,1,11.95,08/02/19 09:44,"207 5th St, Seattle, WA 98101" +246842,AA Batteries (4-pack),1,3.84,08/04/19 20:20,"873 Hickory St, Los Angeles, CA 90001" +246843,Apple Airpods Headphones,1,150,08/11/19 16:29,"587 River St, Seattle, WA 98101" +246844,Wired Headphones,1,11.99,08/22/19 05:10,"17 6th St, New York City, NY 10001" +246845,Lightning Charging Cable,1,14.95,08/12/19 17:48,"51 Elm St, New York City, NY 10001" +246846,Flatscreen TV,1,300,08/12/19 10:48,"842 South St, Boston, MA 02215" +246847,AA Batteries (4-pack),3,3.84,08/06/19 13:01,"770 Church St, Austin, TX 73301" +246848,Lightning Charging Cable,1,14.95,08/13/19 17:15,"333 Jefferson St, San Francisco, CA 94016" +246849,34in Ultrawide Monitor,1,379.99,08/12/19 17:36,"328 Lincoln St, Boston, MA 02215" +246850,Bose SoundSport Headphones,1,99.99,08/07/19 10:00,"752 14th St, Austin, TX 73301" +246851,Lightning Charging Cable,1,14.95,08/11/19 15:47,"833 Park St, New York City, NY 10001" +246852,Wired Headphones,1,11.99,08/03/19 09:58,"202 Elm St, Dallas, TX 75001" +246853,Lightning Charging Cable,1,14.95,08/06/19 21:07,"55 5th St, Los Angeles, CA 90001" +246854,Lightning Charging Cable,1,14.95,08/15/19 13:38,"256 Lake St, Los Angeles, CA 90001" +246855,27in 4K Gaming Monitor,1,389.99,08/08/19 21:22,"137 Dogwood St, Portland, ME 04101" +246856,34in Ultrawide Monitor,1,379.99,08/17/19 18:10,"738 Dogwood St, New York City, NY 10001" +246857,ThinkPad Laptop,1,999.99,08/16/19 20:36,"67 River St, Seattle, WA 98101" +246858,27in FHD Monitor,1,149.99,08/20/19 21:26,"37 Hill St, Seattle, WA 98101" +246859,Bose SoundSport Headphones,1,99.99,08/15/19 18:10,"66 13th St, San Francisco, CA 94016" +246860,27in 4K Gaming Monitor,1,389.99,08/05/19 16:19,"803 Lakeview St, Los Angeles, CA 90001" +246861,USB-C Charging Cable,2,11.95,08/06/19 15:39,"870 Hill St, Seattle, WA 98101" +246862,USB-C Charging Cable,1,11.95,08/18/19 17:53,"47 9th St, Boston, MA 02215" +246863,Lightning Charging Cable,1,14.95,08/12/19 23:39,"320 Hill St, San Francisco, CA 94016" +246864,Google Phone,1,600,08/04/19 18:33,"994 Spruce St, New York City, NY 10001" +246865,USB-C Charging Cable,2,11.95,08/12/19 10:52,"680 Highland St, Atlanta, GA 30301" +246866,Macbook Pro Laptop,1,1700,08/09/19 20:04,"488 Ridge St, New York City, NY 10001" +246867,34in Ultrawide Monitor,1,379.99,08/03/19 17:35,"763 River St, New York City, NY 10001" +246868,34in Ultrawide Monitor,1,379.99,08/26/19 13:21,"754 Washington St, Atlanta, GA 30301" +246869,Wired Headphones,1,11.99,08/08/19 09:58,"203 Chestnut St, New York City, NY 10001" +246870,AAA Batteries (4-pack),4,2.99,08/25/19 05:53,"16 Park St, Seattle, WA 98101" +246871,iPhone,1,700,08/23/19 20:12,"295 Washington St, San Francisco, CA 94016" +246872,27in 4K Gaming Monitor,1,389.99,08/27/19 19:28,"451 Lincoln St, Portland, OR 97035" +246873,Wired Headphones,1,11.99,08/10/19 11:44,"275 Lake St, Boston, MA 02215" +246874,Wired Headphones,1,11.99,08/23/19 19:22,"387 Maple St, Atlanta, GA 30301" +246875,Apple Airpods Headphones,1,150,08/15/19 18:58,"100 Sunset St, San Francisco, CA 94016" +246876,27in 4K Gaming Monitor,1,389.99,08/10/19 07:43,"569 5th St, San Francisco, CA 94016" +246877,USB-C Charging Cable,1,11.95,08/12/19 12:57,"639 Lakeview St, Los Angeles, CA 90001" +246878,34in Ultrawide Monitor,1,379.99,08/07/19 22:22,"474 Johnson St, San Francisco, CA 94016" +246879,Google Phone,1,600,08/08/19 04:35,"243 11th St, Austin, TX 73301" +246880,34in Ultrawide Monitor,1,379.99,08/30/19 17:43,"287 Elm St, Dallas, TX 75001" +246881,USB-C Charging Cable,1,11.95,08/11/19 12:38,"335 Adams St, Portland, OR 97035" +246882,AA Batteries (4-pack),2,3.84,08/25/19 16:58,"146 13th St, Los Angeles, CA 90001" +246883,Flatscreen TV,1,300,08/16/19 13:48,"53 Adams St, Los Angeles, CA 90001" +246884,Lightning Charging Cable,1,14.95,08/11/19 19:54,"197 Jackson St, Portland, OR 97035" +246885,AA Batteries (4-pack),2,3.84,08/18/19 14:09,"970 Hill St, Los Angeles, CA 90001" +246886,AAA Batteries (4-pack),1,2.99,08/27/19 14:21,"626 Cedar St, San Francisco, CA 94016" +246886,AAA Batteries (4-pack),1,2.99,08/27/19 14:21,"626 Cedar St, San Francisco, CA 94016" +246887,Apple Airpods Headphones,1,150,08/09/19 08:42,"369 Main St, San Francisco, CA 94016" +246888,Apple Airpods Headphones,1,150,08/16/19 23:42,"251 Madison St, San Francisco, CA 94016" +246889,Wired Headphones,1,11.99,08/16/19 13:26,"852 5th St, Dallas, TX 75001" +246890,AAA Batteries (4-pack),1,2.99,08/11/19 11:44,"614 Jackson St, Boston, MA 02215" +246890,Bose SoundSport Headphones,1,99.99,08/11/19 11:44,"614 Jackson St, Boston, MA 02215" +246891,Apple Airpods Headphones,1,150,08/15/19 19:55,"799 Elm St, New York City, NY 10001" +246892,Apple Airpods Headphones,1,150,08/11/19 03:40,"606 Ridge St, Los Angeles, CA 90001" +246893,AA Batteries (4-pack),1,3.84,08/27/19 08:02,"565 Chestnut St, San Francisco, CA 94016" +246894,Apple Airpods Headphones,1,150,08/19/19 06:00,"681 8th St, San Francisco, CA 94016" +246895,AA Batteries (4-pack),2,3.84,08/21/19 21:05,"366 Chestnut St, Atlanta, GA 30301" +246896,USB-C Charging Cable,2,11.95,08/27/19 19:49,"403 Adams St, New York City, NY 10001" +246897,USB-C Charging Cable,1,11.95,08/04/19 20:45,"375 North St, San Francisco, CA 94016" +246898,ThinkPad Laptop,1,999.99,08/18/19 17:23,"754 1st St, Boston, MA 02215" +246899,Lightning Charging Cable,1,14.95,08/11/19 12:49,"322 Spruce St, San Francisco, CA 94016" +246900,AAA Batteries (4-pack),3,2.99,08/27/19 17:27,"648 12th St, Boston, MA 02215" +246901,AAA Batteries (4-pack),2,2.99,08/23/19 23:23,"739 14th St, Dallas, TX 75001" +246902,AAA Batteries (4-pack),1,2.99,08/31/19 11:10,"988 Spruce St, Austin, TX 73301" +246903,Google Phone,1,600,08/08/19 19:09,"916 Ridge St, New York City, NY 10001" +246904,Lightning Charging Cable,1,14.95,08/08/19 00:52,"951 River St, Los Angeles, CA 90001" +246905,Lightning Charging Cable,1,14.95,08/28/19 15:26,"246 Elm St, San Francisco, CA 94016" +246906,27in FHD Monitor,1,149.99,08/18/19 07:04,"4 South St, Los Angeles, CA 90001" +246907,Lightning Charging Cable,1,14.95,08/03/19 15:03,"160 Jefferson St, San Francisco, CA 94016" +246908,34in Ultrawide Monitor,1,379.99,08/14/19 10:41,"127 4th St, San Francisco, CA 94016" +246909,AAA Batteries (4-pack),1,2.99,08/15/19 19:37,"708 Ridge St, Atlanta, GA 30301" +246910,Lightning Charging Cable,1,14.95,08/07/19 19:49,"44 Forest St, Austin, TX 73301" +246911,Wired Headphones,1,11.99,08/17/19 06:47,"824 Main St, Portland, ME 04101" +246912,Vareebadd Phone,1,400,08/26/19 21:54,"273 South St, Boston, MA 02215" +246913,27in 4K Gaming Monitor,1,389.99,08/29/19 07:48,"296 14th St, Los Angeles, CA 90001" +246914,AAA Batteries (4-pack),1,2.99,08/12/19 21:10,"967 Wilson St, Atlanta, GA 30301" +246915,AA Batteries (4-pack),1,3.84,08/11/19 21:01,"264 Spruce St, Boston, MA 02215" +246916,Apple Airpods Headphones,1,150,08/31/19 11:43,"784 South St, Atlanta, GA 30301" +246917,34in Ultrawide Monitor,1,379.99,08/31/19 14:33,"802 10th St, Dallas, TX 75001" +246918,AA Batteries (4-pack),1,3.84,08/28/19 07:20,"704 Madison St, Atlanta, GA 30301" +246919,AAA Batteries (4-pack),1,2.99,08/30/19 08:37,"280 Sunset St, Portland, OR 97035" +246920,Macbook Pro Laptop,1,1700,08/23/19 14:21,"23 6th St, Los Angeles, CA 90001" +246921,AAA Batteries (4-pack),1,2.99,08/31/19 18:12,"185 1st St, Boston, MA 02215" +246922,AAA Batteries (4-pack),1,2.99,08/17/19 20:58,"479 Washington St, San Francisco, CA 94016" +246923,USB-C Charging Cable,1,11.95,08/07/19 17:14,"286 2nd St, New York City, NY 10001" +246924,Flatscreen TV,1,300,08/30/19 08:41,"48 Forest St, Seattle, WA 98101" +246924,AAA Batteries (4-pack),1,2.99,08/30/19 08:41,"48 Forest St, Seattle, WA 98101" +246925,Google Phone,1,600,08/11/19 11:48,"399 8th St, Los Angeles, CA 90001" +246925,Wired Headphones,1,11.99,08/11/19 11:48,"399 8th St, Los Angeles, CA 90001" +246926,ThinkPad Laptop,1,999.99,08/02/19 13:45,"260 12th St, San Francisco, CA 94016" +246927,AA Batteries (4-pack),1,3.84,08/21/19 10:14,"496 Highland St, San Francisco, CA 94016" +246928,AAA Batteries (4-pack),1,2.99,08/31/19 17:04,"163 Willow St, San Francisco, CA 94016" +246929,ThinkPad Laptop,1,999.99,08/21/19 13:13,"746 7th St, Dallas, TX 75001" +246930,USB-C Charging Cable,1,11.95,08/30/19 17:58,"944 Ridge St, Los Angeles, CA 90001" +246930,34in Ultrawide Monitor,1,379.99,08/30/19 17:58,"944 Ridge St, Los Angeles, CA 90001" +246931,Google Phone,1,600,08/21/19 16:58,"187 2nd St, San Francisco, CA 94016" +246932,ThinkPad Laptop,1,999.99,08/01/19 19:25,"609 1st St, New York City, NY 10001" +246933,iPhone,1,700,08/29/19 17:20,"350 Maple St, Austin, TX 73301" +246934,USB-C Charging Cable,1,11.95,08/21/19 14:49,"683 13th St, Los Angeles, CA 90001" +246935,iPhone,1,700,08/15/19 20:31,"504 Park St, Atlanta, GA 30301" +246936,iPhone,1,700,08/11/19 09:40,"821 Maple St, Atlanta, GA 30301" +246937,iPhone,1,700,08/04/19 14:00,"98 Spruce St, Seattle, WA 98101" +246938,Google Phone,1,600,08/24/19 21:31,"596 West St, San Francisco, CA 94016" +246939,Flatscreen TV,1,300,08/01/19 12:48,"75 Cedar St, Portland, OR 97035" +246940,USB-C Charging Cable,1,11.95,08/05/19 12:45,"597 Highland St, Portland, OR 97035" +246941,Lightning Charging Cable,1,14.95,08/22/19 15:09,"157 Adams St, New York City, NY 10001" +246942,Macbook Pro Laptop,1,1700,08/04/19 20:45,"744 Meadow St, San Francisco, CA 94016" +246943,USB-C Charging Cable,1,11.95,08/31/19 18:57,"981 Highland St, Dallas, TX 75001" +246944,Apple Airpods Headphones,1,150,08/30/19 20:48,"933 West St, Dallas, TX 75001" +246945,Lightning Charging Cable,1,14.95,08/07/19 21:19,"861 Ridge St, San Francisco, CA 94016" +246946,Lightning Charging Cable,2,14.95,08/30/19 20:30,"915 Chestnut St, Austin, TX 73301" +246947,AA Batteries (4-pack),2,3.84,08/15/19 08:21,"411 6th St, Seattle, WA 98101" +246948,Bose SoundSport Headphones,1,99.99,08/29/19 12:57,"811 Meadow St, New York City, NY 10001" +246949,USB-C Charging Cable,1,11.95,08/18/19 12:27,"125 Lincoln St, Portland, OR 97035" +246950,USB-C Charging Cable,1,11.95,08/29/19 11:36,"296 Cedar St, Los Angeles, CA 90001" +246951,Google Phone,1,600,08/01/19 10:15,"901 Spruce St, Los Angeles, CA 90001" +246951,USB-C Charging Cable,1,11.95,08/01/19 10:15,"901 Spruce St, Los Angeles, CA 90001" +246952,AAA Batteries (4-pack),1,2.99,08/22/19 19:51,"936 2nd St, Boston, MA 02215" +246953,Lightning Charging Cable,2,14.95,08/22/19 13:33,"814 Walnut St, Boston, MA 02215" +246954,AAA Batteries (4-pack),2,2.99,08/22/19 12:32,"863 5th St, San Francisco, CA 94016" +246955,34in Ultrawide Monitor,1,379.99,08/02/19 21:32,"615 Cherry St, Dallas, TX 75001" +246956,Wired Headphones,1,11.99,08/23/19 17:03,"206 Wilson St, Austin, TX 73301" +246957,Apple Airpods Headphones,1,150,08/16/19 12:39,"683 Hickory St, Los Angeles, CA 90001" +246958,ThinkPad Laptop,1,999.99,08/26/19 16:59,"871 11th St, Portland, OR 97035" +246959,AA Batteries (4-pack),1,3.84,08/09/19 00:20,"36 5th St, Portland, ME 04101" +246960,iPhone,1,700,08/22/19 07:55,"506 Dogwood St, San Francisco, CA 94016" +246961,34in Ultrawide Monitor,1,379.99,08/23/19 22:55,"554 2nd St, Los Angeles, CA 90001" +246962,AAA Batteries (4-pack),1,2.99,08/17/19 22:11,"836 Dogwood St, Atlanta, GA 30301" +246963,ThinkPad Laptop,1,999.99,08/24/19 21:42,"764 6th St, New York City, NY 10001" +246964,iPhone,1,700,08/07/19 21:34,"539 Forest St, Dallas, TX 75001" +246965,27in 4K Gaming Monitor,1,389.99,08/12/19 00:00,"600 Highland St, Portland, OR 97035" +246966,AAA Batteries (4-pack),1,2.99,08/27/19 11:13,"598 11th St, San Francisco, CA 94016" +246967,AAA Batteries (4-pack),1,2.99,08/27/19 17:18,"716 Washington St, Atlanta, GA 30301" +246968,Wired Headphones,1,11.99,08/15/19 08:26,"582 7th St, Atlanta, GA 30301" +246969,27in FHD Monitor,1,149.99,08/25/19 22:19,"536 North St, New York City, NY 10001" +246970,27in FHD Monitor,1,149.99,08/09/19 03:23,"737 Ridge St, Los Angeles, CA 90001" +246971,Vareebadd Phone,1,400,08/05/19 18:59,"719 Willow St, San Francisco, CA 94016" +246972,Flatscreen TV,1,300,08/22/19 09:18,"307 South St, Portland, ME 04101" +246973,USB-C Charging Cable,1,11.95,08/19/19 17:32,"98 7th St, San Francisco, CA 94016" +246974,ThinkPad Laptop,1,999.99,08/11/19 15:21,"905 Jefferson St, Los Angeles, CA 90001" +246975,Wired Headphones,2,11.99,08/29/19 08:09,"304 Lincoln St, Portland, OR 97035" +246976,USB-C Charging Cable,1,11.95,08/18/19 09:39,"539 Jefferson St, Boston, MA 02215" +246977,34in Ultrawide Monitor,1,379.99,08/01/19 23:12,"854 Ridge St, Atlanta, GA 30301" +246978,Lightning Charging Cable,1,14.95,08/28/19 15:12,"931 Center St, New York City, NY 10001" +246979,AAA Batteries (4-pack),1,2.99,08/11/19 13:30,"427 2nd St, Los Angeles, CA 90001" +246980,Lightning Charging Cable,1,14.95,08/26/19 16:06,"859 Dogwood St, San Francisco, CA 94016" +246981,AA Batteries (4-pack),2,3.84,08/24/19 17:00,"743 Forest St, San Francisco, CA 94016" +246982,Apple Airpods Headphones,1,150,08/29/19 12:24,"118 Elm St, Los Angeles, CA 90001" +246983,Vareebadd Phone,1,400,08/29/19 14:01,"390 Pine St, Seattle, WA 98101" +246984,AAA Batteries (4-pack),1,2.99,08/25/19 11:13,"971 2nd St, Atlanta, GA 30301" +246985,Lightning Charging Cable,1,14.95,08/20/19 17:33,"320 Pine St, San Francisco, CA 94016" +246986,27in FHD Monitor,1,149.99,08/15/19 18:35,"908 Lake St, Los Angeles, CA 90001" +246987,AAA Batteries (4-pack),2,2.99,09/01/19 00:03,"891 Pine St, San Francisco, CA 94016" +246988,Google Phone,1,600,08/29/19 16:43,"668 Meadow St, Portland, OR 97035" +246989,Lightning Charging Cable,1,14.95,08/18/19 19:38,"751 Church St, Los Angeles, CA 90001" +246990,USB-C Charging Cable,1,11.95,08/28/19 09:49,"219 Ridge St, Austin, TX 73301" +246991,AA Batteries (4-pack),1,3.84,08/23/19 15:41,"675 Madison St, San Francisco, CA 94016" +246992,Wired Headphones,1,11.99,08/29/19 13:32,"833 Pine St, Austin, TX 73301" +246993,USB-C Charging Cable,1,11.95,08/20/19 16:19,"595 Jefferson St, Portland, OR 97035" +246994,34in Ultrawide Monitor,1,379.99,08/05/19 13:04,"115 Johnson St, Boston, MA 02215" +246995,Wired Headphones,2,11.99,08/18/19 11:30,"155 Johnson St, Austin, TX 73301" +246996,AAA Batteries (4-pack),2,2.99,08/16/19 09:38,"234 Jefferson St, Seattle, WA 98101" +246997,Lightning Charging Cable,1,14.95,08/17/19 12:43,"598 Cherry St, New York City, NY 10001" +246998,AA Batteries (4-pack),2,3.84,08/25/19 08:52,"600 River St, Portland, OR 97035" +246999,Apple Airpods Headphones,1,150,08/03/19 20:00,"681 5th St, Austin, TX 73301" +247000,Lightning Charging Cable,1,14.95,08/01/19 09:56,"377 Cedar St, San Francisco, CA 94016" +247001,Bose SoundSport Headphones,1,99.99,08/20/19 20:48,"392 Ridge St, San Francisco, CA 94016" +247002,Lightning Charging Cable,2,14.95,08/10/19 12:25,"697 Johnson St, New York City, NY 10001" +247003,USB-C Charging Cable,1,11.95,08/02/19 15:06,"698 1st St, San Francisco, CA 94016" +247004,USB-C Charging Cable,1,11.95,08/10/19 11:49,"185 Madison St, Seattle, WA 98101" +247005,iPhone,1,700,08/23/19 02:24,"855 12th St, San Francisco, CA 94016" +247006,Lightning Charging Cable,1,14.95,08/31/19 12:01,"357 Chestnut St, New York City, NY 10001" +247007,Bose SoundSport Headphones,1,99.99,08/30/19 18:26,"849 North St, Los Angeles, CA 90001" +247008,USB-C Charging Cable,1,11.95,08/13/19 16:27,"162 Hill St, San Francisco, CA 94016" +247009,USB-C Charging Cable,1,11.95,08/06/19 13:46,"546 Meadow St, Austin, TX 73301" +247010,AA Batteries (4-pack),1,3.84,08/23/19 17:01,"406 Lake St, Los Angeles, CA 90001" +247011,34in Ultrawide Monitor,1,379.99,08/21/19 11:07,"373 Jefferson St, Los Angeles, CA 90001" +247012,Apple Airpods Headphones,1,150,08/02/19 18:04,"166 13th St, New York City, NY 10001" +247013,AAA Batteries (4-pack),2,2.99,08/27/19 23:06,"756 Sunset St, Los Angeles, CA 90001" +247014,Google Phone,1,600,08/31/19 12:01,"818 Jefferson St, San Francisco, CA 94016" +247014,AA Batteries (4-pack),1,3.84,08/31/19 12:01,"818 Jefferson St, San Francisco, CA 94016" +247015,USB-C Charging Cable,1,11.95,08/08/19 18:06,"810 Jackson St, Portland, OR 97035" +247016,27in FHD Monitor,1,149.99,08/21/19 17:56,"558 Meadow St, San Francisco, CA 94016" +247017,Wired Headphones,1,11.99,08/03/19 17:39,"698 11th St, San Francisco, CA 94016" +247018,Apple Airpods Headphones,1,150,08/22/19 09:35,"14 1st St, San Francisco, CA 94016" +247019,AA Batteries (4-pack),1,3.84,08/27/19 06:37,"550 Madison St, Boston, MA 02215" +247019,Wired Headphones,1,11.99,08/27/19 06:37,"550 Madison St, Boston, MA 02215" +247020,USB-C Charging Cable,1,11.95,08/22/19 14:26,"519 Meadow St, Los Angeles, CA 90001" +247021,Apple Airpods Headphones,1,150,08/13/19 18:18,"715 8th St, Portland, OR 97035" +247022,AA Batteries (4-pack),1,3.84,08/18/19 19:29,"515 5th St, Boston, MA 02215" +247023,27in FHD Monitor,1,149.99,08/06/19 12:49,"97 Wilson St, Los Angeles, CA 90001" +247024,Lightning Charging Cable,1,14.95,08/08/19 12:43,"966 Highland St, San Francisco, CA 94016" +247025,Flatscreen TV,1,300,08/12/19 13:41,"978 Highland St, New York City, NY 10001" +247026,27in 4K Gaming Monitor,1,389.99,08/29/19 13:03,"330 Adams St, Los Angeles, CA 90001" +247027,Google Phone,1,600,08/17/19 11:40,"460 Lakeview St, Portland, OR 97035" +247028,Apple Airpods Headphones,1,150,08/31/19 19:08,"210 Pine St, New York City, NY 10001" +247029,AA Batteries (4-pack),1,3.84,08/03/19 21:02,"514 Ridge St, San Francisco, CA 94016" +247030,AA Batteries (4-pack),1,3.84,08/01/19 20:58,"292 North St, San Francisco, CA 94016" +247031,Flatscreen TV,1,300,08/23/19 23:26,"24 West St, Seattle, WA 98101" +247032,34in Ultrawide Monitor,1,379.99,08/14/19 13:16,"385 1st St, San Francisco, CA 94016" +247033,Lightning Charging Cable,1,14.95,08/28/19 20:03,"731 10th St, Portland, OR 97035" +247034,AA Batteries (4-pack),1,3.84,08/15/19 11:30,"997 10th St, San Francisco, CA 94016" +247035,Flatscreen TV,1,300,08/22/19 13:13,"537 14th St, Atlanta, GA 30301" +247036,iPhone,1,700,08/07/19 03:10,"671 Jackson St, New York City, NY 10001" +247037,AAA Batteries (4-pack),1,2.99,08/04/19 13:15,"811 Lincoln St, San Francisco, CA 94016" +247038,AAA Batteries (4-pack),1,2.99,08/31/19 13:21,"535 Center St, Austin, TX 73301" +247039,AAA Batteries (4-pack),4,2.99,08/22/19 07:46,"870 Center St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +247040,USB-C Charging Cable,1,11.95,08/27/19 17:30,"883 Jackson St, Austin, TX 73301" +247041,iPhone,1,700,08/26/19 22:30,"241 Maple St, Los Angeles, CA 90001" +247041,Lightning Charging Cable,1,14.95,08/26/19 22:30,"241 Maple St, Los Angeles, CA 90001" +247042,34in Ultrawide Monitor,1,379.99,08/26/19 13:39,"380 Willow St, San Francisco, CA 94016" +247043,Bose SoundSport Headphones,1,99.99,08/25/19 16:23,"699 Park St, San Francisco, CA 94016" +247044,AA Batteries (4-pack),1,3.84,08/22/19 23:08,"914 Center St, San Francisco, CA 94016" +247045,Macbook Pro Laptop,1,1700,08/13/19 18:54,"647 Spruce St, San Francisco, CA 94016" +247046,Wired Headphones,1,11.99,08/30/19 19:44,"873 Center St, Dallas, TX 75001" +247047,Flatscreen TV,1,300,08/10/19 22:36,"52 Willow St, Boston, MA 02215" +247048,USB-C Charging Cable,1,11.95,08/31/19 08:16,"749 Jefferson St, Boston, MA 02215" +247049,Bose SoundSport Headphones,1,99.99,08/10/19 11:29,"965 West St, San Francisco, CA 94016" +247050,USB-C Charging Cable,1,11.95,08/05/19 20:51,"389 Cherry St, Dallas, TX 75001" +247051,USB-C Charging Cable,1,11.95,08/06/19 13:15,"834 Madison St, San Francisco, CA 94016" +247052,34in Ultrawide Monitor,1,379.99,08/14/19 12:40,"692 9th St, Los Angeles, CA 90001" +247053,AA Batteries (4-pack),1,3.84,08/21/19 22:00,"557 Wilson St, Atlanta, GA 30301" +247054,Lightning Charging Cable,1,14.95,08/28/19 16:42,"614 West St, Los Angeles, CA 90001" +247055,AA Batteries (4-pack),1,3.84,08/02/19 10:18,"646 Ridge St, San Francisco, CA 94016" +247056,USB-C Charging Cable,1,11.95,08/29/19 19:54,"26 Spruce St, Atlanta, GA 30301" +247057,Lightning Charging Cable,1,14.95,08/06/19 20:45,"16 11th St, Atlanta, GA 30301" +247058,34in Ultrawide Monitor,1,379.99,08/17/19 17:03,"292 Cedar St, Portland, OR 97035" +247059,Bose SoundSport Headphones,1,99.99,08/09/19 14:46,"320 Jackson St, San Francisco, CA 94016" +247060,34in Ultrawide Monitor,1,379.99,08/24/19 21:52,"1 5th St, New York City, NY 10001" +247061,Apple Airpods Headphones,1,150,08/08/19 11:12,"701 Johnson St, New York City, NY 10001" +247062,Wired Headphones,1,11.99,08/29/19 11:34,"850 2nd St, New York City, NY 10001" +247063,Bose SoundSport Headphones,1,99.99,08/10/19 10:07,"190 Jefferson St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +247064,USB-C Charging Cable,1,11.95,08/22/19 06:38,"392 Center St, Los Angeles, CA 90001" +247065,USB-C Charging Cable,1,11.95,08/04/19 18:16,"630 5th St, Seattle, WA 98101" +247066,Lightning Charging Cable,1,14.95,08/13/19 07:43,"478 Jackson St, Boston, MA 02215" +247067,Lightning Charging Cable,2,14.95,08/31/19 18:50,"394 11th St, Portland, OR 97035" +247068,AA Batteries (4-pack),1,3.84,08/27/19 21:44,"227 South St, Los Angeles, CA 90001" +,,,,, +247069,AA Batteries (4-pack),1,3.84,08/02/19 15:08,"223 Jefferson St, San Francisco, CA 94016" +247070,27in 4K Gaming Monitor,1,389.99,08/06/19 18:27,"482 Forest St, Boston, MA 02215" +247071,Lightning Charging Cable,1,14.95,08/05/19 15:46,"147 1st St, Seattle, WA 98101" +247072,Wired Headphones,1,11.99,08/10/19 22:34,"907 Jefferson St, New York City, NY 10001" +247073,Flatscreen TV,1,300,08/04/19 11:30,"874 Cedar St, Atlanta, GA 30301" +247074,34in Ultrawide Monitor,1,379.99,08/19/19 14:43,"494 Adams St, San Francisco, CA 94016" +247075,27in FHD Monitor,1,149.99,08/29/19 08:15,"694 Highland St, Los Angeles, CA 90001" +247076,AA Batteries (4-pack),1,3.84,08/17/19 14:30,"555 Spruce St, Boston, MA 02215" +247077,USB-C Charging Cable,2,11.95,08/11/19 12:00,"646 West St, San Francisco, CA 94016" +247078,AAA Batteries (4-pack),1,2.99,08/19/19 11:50,"42 River St, Portland, OR 97035" +247079,Bose SoundSport Headphones,1,99.99,08/20/19 20:33,"922 Forest St, Atlanta, GA 30301" +247080,Bose SoundSport Headphones,1,99.99,08/29/19 14:48,"395 Walnut St, Atlanta, GA 30301" +247081,USB-C Charging Cable,1,11.95,08/30/19 21:06,"800 13th St, New York City, NY 10001" +247082,AAA Batteries (4-pack),3,2.99,08/07/19 21:54,"350 Main St, Dallas, TX 75001" +247083,Vareebadd Phone,1,400,08/04/19 18:45,"293 Lakeview St, Atlanta, GA 30301" +247084,ThinkPad Laptop,1,999.99,08/20/19 09:10,"427 Madison St, Boston, MA 02215" +247085,27in 4K Gaming Monitor,1,389.99,08/26/19 12:32,"931 2nd St, New York City, NY 10001" +247086,Wired Headphones,1,11.99,08/28/19 07:40,"749 Pine St, Boston, MA 02215" +247087,iPhone,1,700,08/21/19 08:18,"916 12th St, San Francisco, CA 94016" +247088,AA Batteries (4-pack),1,3.84,08/07/19 08:01,"173 North St, San Francisco, CA 94016" +247089,AAA Batteries (4-pack),1,2.99,08/08/19 09:15,"933 Walnut St, Los Angeles, CA 90001" +247090,Apple Airpods Headphones,1,150,08/19/19 09:38,"853 9th St, New York City, NY 10001" +247091,20in Monitor,1,109.99,08/07/19 16:45,"931 Ridge St, Los Angeles, CA 90001" +247092,27in FHD Monitor,1,149.99,08/08/19 12:10,"798 Hill St, Boston, MA 02215" +247093,Wired Headphones,1,11.99,08/22/19 18:45,"57 Chestnut St, San Francisco, CA 94016" +247094,AA Batteries (4-pack),1,3.84,08/15/19 01:27,"859 Lake St, New York City, NY 10001" +247095,Wired Headphones,2,11.99,08/19/19 16:20,"860 11th St, San Francisco, CA 94016" +247096,Apple Airpods Headphones,1,150,08/03/19 01:00,"539 West St, San Francisco, CA 94016" +247097,ThinkPad Laptop,1,999.99,08/23/19 09:42,"649 Maple St, Austin, TX 73301" +247098,Macbook Pro Laptop,1,1700,08/16/19 20:47,"19 Madison St, Los Angeles, CA 90001" +247099,Lightning Charging Cable,1,14.95,08/31/19 13:31,"559 North St, Los Angeles, CA 90001" +247100,Lightning Charging Cable,1,14.95,08/03/19 18:31,"19 River St, Dallas, TX 75001" +247101,27in FHD Monitor,1,149.99,08/28/19 01:25,"308 Pine St, Dallas, TX 75001" +247102,AA Batteries (4-pack),1,3.84,08/11/19 18:01,"315 Pine St, San Francisco, CA 94016" +247103,Macbook Pro Laptop,1,1700,08/20/19 16:50,"395 Forest St, Atlanta, GA 30301" +247104,USB-C Charging Cable,1,11.95,08/15/19 00:03,"842 Lincoln St, Los Angeles, CA 90001" +247105,27in FHD Monitor,1,149.99,08/14/19 12:05,"821 River St, Dallas, TX 75001" +247106,AAA Batteries (4-pack),1,2.99,08/04/19 14:05,"178 13th St, Dallas, TX 75001" +247107,Wired Headphones,1,11.99,08/13/19 13:06,"115 9th St, New York City, NY 10001" +247108,AA Batteries (4-pack),1,3.84,08/31/19 17:49,"843 Willow St, Dallas, TX 75001" +247109,AAA Batteries (4-pack),1,2.99,08/07/19 17:28,"366 Highland St, Austin, TX 73301" +247110,AAA Batteries (4-pack),2,2.99,08/07/19 04:16,"689 Wilson St, San Francisco, CA 94016" +247111,Lightning Charging Cable,1,14.95,08/30/19 21:12,"704 South St, Los Angeles, CA 90001" +247112,AA Batteries (4-pack),2,3.84,08/14/19 22:49,"651 Maple St, Austin, TX 73301" +247113,AAA Batteries (4-pack),1,2.99,08/11/19 12:42,"312 Chestnut St, San Francisco, CA 94016" +247114,USB-C Charging Cable,1,11.95,08/26/19 20:47,"976 Adams St, Dallas, TX 75001" +247115,Apple Airpods Headphones,1,150,08/13/19 17:21,"591 11th St, Los Angeles, CA 90001" +247116,Wired Headphones,1,11.99,08/22/19 21:51,"519 Washington St, Atlanta, GA 30301" +247117,27in FHD Monitor,1,149.99,08/02/19 21:27,"738 Center St, Austin, TX 73301" +247118,USB-C Charging Cable,1,11.95,08/25/19 08:38,"331 West St, San Francisco, CA 94016" +247119,34in Ultrawide Monitor,1,379.99,08/24/19 09:43,"154 Madison St, Los Angeles, CA 90001" +247120,AA Batteries (4-pack),4,3.84,08/13/19 00:02,"941 10th St, New York City, NY 10001" +247121,LG Dryer,1,600.0,08/05/19 10:19,"571 Wilson St, San Francisco, CA 94016" +247122,USB-C Charging Cable,1,11.95,08/31/19 12:20,"172 Hill St, Dallas, TX 75001" +247123,Apple Airpods Headphones,1,150,08/28/19 13:33,"477 6th St, San Francisco, CA 94016" +247124,Bose SoundSport Headphones,1,99.99,08/24/19 11:03,"213 Pine St, Los Angeles, CA 90001" +247125,AAA Batteries (4-pack),1,2.99,08/31/19 09:11,"409 Ridge St, New York City, NY 10001" +247126,ThinkPad Laptop,1,999.99,08/18/19 15:17,"500 Church St, New York City, NY 10001" +247127,USB-C Charging Cable,1,11.95,08/28/19 21:21,"485 Madison St, San Francisco, CA 94016" +247128,AA Batteries (4-pack),3,3.84,08/15/19 17:41,"639 North St, San Francisco, CA 94016" +247129,USB-C Charging Cable,1,11.95,08/18/19 08:59,"79 River St, Boston, MA 02215" +247130,USB-C Charging Cable,1,11.95,08/08/19 17:20,"78 Pine St, Austin, TX 73301" +247131,USB-C Charging Cable,1,11.95,08/30/19 19:22,"958 11th St, New York City, NY 10001" +247132,27in FHD Monitor,1,149.99,08/03/19 22:53,"839 Jefferson St, New York City, NY 10001" +247133,USB-C Charging Cable,1,11.95,08/14/19 13:00,"893 Hickory St, Portland, OR 97035" +247134,Bose SoundSport Headphones,1,99.99,08/19/19 15:13,"975 9th St, San Francisco, CA 94016" +247135,AAA Batteries (4-pack),1,2.99,08/22/19 21:43,"100 Cherry St, Portland, OR 97035" +247136,AA Batteries (4-pack),3,3.84,08/15/19 17:56,"510 Madison St, San Francisco, CA 94016" +247137,Wired Headphones,1,11.99,08/04/19 18:45,"710 Jefferson St, San Francisco, CA 94016" +247138,Apple Airpods Headphones,1,150,08/08/19 12:32,"332 Chestnut St, Portland, ME 04101" +247139,27in FHD Monitor,1,149.99,08/07/19 23:39,"422 Madison St, Boston, MA 02215" +247140,27in FHD Monitor,1,149.99,08/08/19 20:09,"510 14th St, Seattle, WA 98101" +247141,AA Batteries (4-pack),1,3.84,08/13/19 09:57,"62 2nd St, Dallas, TX 75001" +247142,27in FHD Monitor,1,149.99,08/08/19 19:38,"108 West St, San Francisco, CA 94016" +247143,27in FHD Monitor,1,149.99,08/06/19 19:02,"904 Church St, New York City, NY 10001" +247144,AAA Batteries (4-pack),1,2.99,08/05/19 11:53,"357 Elm St, Dallas, TX 75001" +247145,Bose SoundSport Headphones,1,99.99,08/13/19 19:35,"10 1st St, San Francisco, CA 94016" +247146,AA Batteries (4-pack),1,3.84,08/17/19 21:28,"154 11th St, New York City, NY 10001" +247147,Lightning Charging Cable,1,14.95,08/08/19 11:02,"374 Johnson St, Los Angeles, CA 90001" +247148,LG Dryer,1,600.0,08/12/19 19:56,"368 Adams St, New York City, NY 10001" +247149,AAA Batteries (4-pack),1,2.99,08/21/19 18:37,"640 Forest St, Los Angeles, CA 90001" +247150,AAA Batteries (4-pack),2,2.99,08/06/19 20:15,"276 Chestnut St, Atlanta, GA 30301" +247151,AAA Batteries (4-pack),2,2.99,08/18/19 00:37,"876 10th St, New York City, NY 10001" +247152,ThinkPad Laptop,1,999.99,08/28/19 16:59,"921 Wilson St, San Francisco, CA 94016" +247153,AAA Batteries (4-pack),1,2.99,08/19/19 22:56,"948 10th St, New York City, NY 10001" +247153,20in Monitor,1,109.99,08/19/19 22:56,"948 10th St, New York City, NY 10001" +247154,Macbook Pro Laptop,1,1700,08/06/19 23:33,"794 Washington St, Los Angeles, CA 90001" +247155,Lightning Charging Cable,1,14.95,08/25/19 12:08,"459 Chestnut St, Atlanta, GA 30301" +247156,27in FHD Monitor,1,149.99,08/20/19 20:44,"401 1st St, Dallas, TX 75001" +247157,Flatscreen TV,1,300,08/31/19 15:58,"355 5th St, Atlanta, GA 30301" +247158,Wired Headphones,1,11.99,08/19/19 19:06,"336 West St, Los Angeles, CA 90001" +247159,Flatscreen TV,1,300,08/13/19 18:56,"600 Washington St, Los Angeles, CA 90001" +247160,USB-C Charging Cable,1,11.95,08/30/19 13:12,"811 Church St, New York City, NY 10001" +247161,Wired Headphones,1,11.99,08/18/19 15:25,"686 9th St, Boston, MA 02215" +247162,Apple Airpods Headphones,1,150,08/19/19 16:36,"90 11th St, Austin, TX 73301" +247163,Apple Airpods Headphones,1,150,08/13/19 21:04,"557 Spruce St, Dallas, TX 75001" +247164,Apple Airpods Headphones,1,150,08/06/19 17:24,"153 Maple St, San Francisco, CA 94016" +247165,Bose SoundSport Headphones,1,99.99,08/30/19 13:05,"314 8th St, New York City, NY 10001" +247166,Apple Airpods Headphones,1,150,08/25/19 15:45,"917 Dogwood St, Seattle, WA 98101" +247167,27in 4K Gaming Monitor,1,389.99,08/20/19 11:14,"690 Chestnut St, San Francisco, CA 94016" +247168,Apple Airpods Headphones,1,150,08/17/19 08:47,"26 Dogwood St, New York City, NY 10001" +247169,AAA Batteries (4-pack),1,2.99,08/04/19 22:26,"713 5th St, San Francisco, CA 94016" +247170,AA Batteries (4-pack),1,3.84,08/09/19 20:46,"14 Chestnut St, Atlanta, GA 30301" +247171,Macbook Pro Laptop,1,1700,08/19/19 11:23,"949 9th St, Seattle, WA 98101" +247172,Bose SoundSport Headphones,1,99.99,08/09/19 09:20,"635 Wilson St, Austin, TX 73301" +247173,Lightning Charging Cable,1,14.95,08/28/19 13:21,"98 Cedar St, Dallas, TX 75001" +247174,Lightning Charging Cable,1,14.95,08/28/19 17:18,"898 Adams St, Dallas, TX 75001" +247175,Bose SoundSport Headphones,1,99.99,08/07/19 06:15,"750 Sunset St, Portland, OR 97035" +247176,Bose SoundSport Headphones,1,99.99,08/22/19 07:28,"439 1st St, Atlanta, GA 30301" +247177,AA Batteries (4-pack),1,3.84,08/26/19 16:30,"619 Wilson St, Los Angeles, CA 90001" +247178,AAA Batteries (4-pack),1,2.99,08/23/19 22:13,"139 Center St, Los Angeles, CA 90001" +247179,Bose SoundSport Headphones,1,99.99,08/01/19 22:50,"658 7th St, Austin, TX 73301" +247180,20in Monitor,1,109.99,08/03/19 18:40,"919 River St, Boston, MA 02215" +247181,Apple Airpods Headphones,1,150,08/28/19 18:24,"562 Highland St, Dallas, TX 75001" +247182,Lightning Charging Cable,1,14.95,08/28/19 20:56,"394 Forest St, Los Angeles, CA 90001" +247183,Flatscreen TV,1,300,08/11/19 08:53,"417 Wilson St, San Francisco, CA 94016" +247184,Bose SoundSport Headphones,1,99.99,08/18/19 17:44,"764 Washington St, Boston, MA 02215" +247185,Flatscreen TV,1,300,08/22/19 13:51,"986 Spruce St, Austin, TX 73301" +247186,Wired Headphones,1,11.99,08/14/19 13:58,"792 12th St, San Francisco, CA 94016" +247187,AAA Batteries (4-pack),2,2.99,08/19/19 10:59,"900 Cedar St, San Francisco, CA 94016" +247188,iPhone,1,700,08/31/19 11:59,"539 Lake St, Portland, OR 97035" +247189,AA Batteries (4-pack),1,3.84,08/22/19 14:03,"251 Madison St, Dallas, TX 75001" +247190,34in Ultrawide Monitor,1,379.99,08/12/19 20:14,"696 River St, Boston, MA 02215" +247191,USB-C Charging Cable,1,11.95,08/10/19 11:52,"158 North St, Los Angeles, CA 90001" +247192,Flatscreen TV,1,300,08/08/19 11:07,"39 Madison St, New York City, NY 10001" +247193,Apple Airpods Headphones,1,150,08/22/19 17:59,"736 Walnut St, San Francisco, CA 94016" +247194,Bose SoundSport Headphones,1,99.99,08/03/19 18:33,"426 Ridge St, Los Angeles, CA 90001" +247195,Apple Airpods Headphones,1,150,08/07/19 18:07,"972 Chestnut St, Seattle, WA 98101" +247196,AA Batteries (4-pack),1,3.84,08/14/19 20:32,"496 Walnut St, Los Angeles, CA 90001" +247197,AA Batteries (4-pack),2,3.84,08/01/19 14:08,"735 Highland St, Austin, TX 73301" +247198,AAA Batteries (4-pack),1,2.99,08/20/19 11:39,"742 Pine St, Dallas, TX 75001" +247199,USB-C Charging Cable,1,11.95,08/20/19 18:26,"891 North St, Atlanta, GA 30301" +247200,Macbook Pro Laptop,1,1700,08/30/19 07:41,"13 Dogwood St, Dallas, TX 75001" +247201,Apple Airpods Headphones,1,150,08/09/19 18:58,"716 Cherry St, Boston, MA 02215" +247202,USB-C Charging Cable,1,11.95,08/12/19 04:32,"298 Maple St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +247203,27in 4K Gaming Monitor,1,389.99,08/26/19 12:01,"624 Washington St, New York City, NY 10001" +247204,AA Batteries (4-pack),3,3.84,08/19/19 14:02,"30 5th St, Boston, MA 02215" +247205,AAA Batteries (4-pack),1,2.99,08/25/19 07:44,"382 Madison St, Los Angeles, CA 90001" +247206,AA Batteries (4-pack),1,3.84,08/23/19 14:21,"986 Sunset St, Dallas, TX 75001" +247207,AA Batteries (4-pack),1,3.84,08/14/19 18:16,"613 Sunset St, San Francisco, CA 94016" +247208,34in Ultrawide Monitor,1,379.99,08/25/19 16:38,"413 4th St, Portland, OR 97035" +247209,USB-C Charging Cable,1,11.95,08/19/19 12:30,"682 Forest St, San Francisco, CA 94016" +247210,Wired Headphones,1,11.99,08/23/19 19:43,"555 8th St, Los Angeles, CA 90001" +247211,Google Phone,1,600,08/17/19 01:21,"126 Johnson St, New York City, NY 10001" +247212,Google Phone,1,600,08/09/19 08:38,"62 Chestnut St, Los Angeles, CA 90001" +247213,Bose SoundSport Headphones,1,99.99,08/16/19 15:28,"928 Church St, Boston, MA 02215" +247214,Apple Airpods Headphones,1,150,08/20/19 13:55,"346 Park St, Portland, OR 97035" +247215,Lightning Charging Cable,1,14.95,08/27/19 15:51,"799 Center St, San Francisco, CA 94016" +247216,AA Batteries (4-pack),1,3.84,08/17/19 20:28,"26 11th St, San Francisco, CA 94016" +247217,Wired Headphones,1,11.99,08/10/19 13:43,"68 Lincoln St, Seattle, WA 98101" +247218,Apple Airpods Headphones,1,150,08/17/19 15:09,"445 8th St, Seattle, WA 98101" +247219,27in FHD Monitor,1,149.99,08/21/19 12:08,"568 10th St, San Francisco, CA 94016" +247220,USB-C Charging Cable,1,11.95,08/20/19 13:09,"491 4th St, San Francisco, CA 94016" +247221,27in FHD Monitor,1,149.99,08/11/19 10:08,"51 13th St, Portland, ME 04101" +247222,USB-C Charging Cable,1,11.95,08/26/19 00:20,"631 6th St, Los Angeles, CA 90001" +247223,Flatscreen TV,1,300,08/20/19 12:55,"216 South St, Los Angeles, CA 90001" +247224,Bose SoundSport Headphones,1,99.99,08/09/19 20:19,"868 Hickory St, Los Angeles, CA 90001" +247225,Bose SoundSport Headphones,1,99.99,08/28/19 10:28,"492 Park St, San Francisco, CA 94016" +247226,AA Batteries (4-pack),1,3.84,08/19/19 17:37,"475 Pine St, Los Angeles, CA 90001" +247227,AAA Batteries (4-pack),2,2.99,08/18/19 16:13,"11 Hill St, Dallas, TX 75001" +247228,Google Phone,1,600,08/25/19 16:01,"1 5th St, Portland, OR 97035" +247229,Apple Airpods Headphones,1,150,08/29/19 10:14,"335 Jefferson St, Dallas, TX 75001" +247230,27in FHD Monitor,1,149.99,08/22/19 15:14,"40 14th St, San Francisco, CA 94016" +247231,20in Monitor,1,109.99,08/19/19 12:44,"76 South St, Dallas, TX 75001" +247232,USB-C Charging Cable,1,11.95,08/23/19 18:59,"65 Highland St, Austin, TX 73301" +247233,Apple Airpods Headphones,1,150,08/12/19 20:16,"307 Hickory St, Atlanta, GA 30301" +247234,ThinkPad Laptop,1,999.99,08/29/19 09:09,"422 Wilson St, Atlanta, GA 30301" +247235,ThinkPad Laptop,1,999.99,08/17/19 13:44,"777 West St, Seattle, WA 98101" +247236,USB-C Charging Cable,1,11.95,08/21/19 19:18,"259 Lake St, San Francisco, CA 94016" +247237,Google Phone,1,600,08/07/19 15:29,"634 1st St, New York City, NY 10001" +247237,Wired Headphones,1,11.99,08/07/19 15:29,"634 1st St, New York City, NY 10001" +247238,AA Batteries (4-pack),1,3.84,08/31/19 15:15,"118 5th St, Boston, MA 02215" +247239,USB-C Charging Cable,1,11.95,08/07/19 16:54,"657 Meadow St, Seattle, WA 98101" +247240,iPhone,1,700,08/19/19 22:32,"390 Madison St, San Francisco, CA 94016" +247241,AAA Batteries (4-pack),1,2.99,08/03/19 00:21,"291 Elm St, San Francisco, CA 94016" +247242,Apple Airpods Headphones,1,150,08/29/19 03:00,"46 Hill St, Atlanta, GA 30301" +247243,Macbook Pro Laptop,1,1700,08/24/19 16:45,"606 Washington St, Austin, TX 73301" +247244,27in FHD Monitor,1,149.99,08/07/19 12:36,"121 Main St, Austin, TX 73301" +247245,20in Monitor,1,109.99,08/31/19 10:56,"942 Hickory St, Boston, MA 02215" +247246,Apple Airpods Headphones,1,150,08/27/19 17:42,"113 8th St, San Francisco, CA 94016" +247247,34in Ultrawide Monitor,1,379.99,08/30/19 08:29,"145 River St, New York City, NY 10001" +247248,AAA Batteries (4-pack),2,2.99,08/21/19 00:54,"511 Lincoln St, Dallas, TX 75001" +247249,20in Monitor,1,109.99,08/16/19 23:25,"149 Cherry St, San Francisco, CA 94016" +247250,iPhone,1,700,08/01/19 18:13,"740 4th St, Boston, MA 02215" +247251,AA Batteries (4-pack),1,3.84,08/15/19 15:49,"562 Johnson St, Los Angeles, CA 90001" +247252,Wired Headphones,1,11.99,08/11/19 11:07,"566 Maple St, Boston, MA 02215" +247253,USB-C Charging Cable,1,11.95,08/02/19 12:06,"154 Lincoln St, Boston, MA 02215" +247254,Apple Airpods Headphones,1,150,08/19/19 21:39,"48 Sunset St, Los Angeles, CA 90001" +247255,AAA Batteries (4-pack),2,2.99,08/17/19 13:38,"899 Washington St, San Francisco, CA 94016" +247256,AAA Batteries (4-pack),2,2.99,08/05/19 12:21,"132 7th St, Austin, TX 73301" +247257,Lightning Charging Cable,1,14.95,08/28/19 16:16,"926 11th St, Atlanta, GA 30301" +247258,Apple Airpods Headphones,1,150,08/27/19 18:45,"100 Ridge St, New York City, NY 10001" +247259,USB-C Charging Cable,2,11.95,08/31/19 13:05,"983 Cherry St, Seattle, WA 98101" +247260,ThinkPad Laptop,1,999.99,08/09/19 09:13,"187 8th St, San Francisco, CA 94016" +247261,Lightning Charging Cable,1,14.95,08/25/19 20:32,"453 12th St, New York City, NY 10001" +247262,Wired Headphones,1,11.99,08/29/19 14:49,"53 Center St, Boston, MA 02215" +247263,AAA Batteries (4-pack),1,2.99,08/28/19 12:10,"82 Lincoln St, New York City, NY 10001" +247264,AA Batteries (4-pack),1,3.84,08/22/19 18:45,"31 Cherry St, Boston, MA 02215" +247265,Bose SoundSport Headphones,1,99.99,08/27/19 19:51,"717 Willow St, Los Angeles, CA 90001" +247266,ThinkPad Laptop,1,999.99,08/09/19 08:33,"396 Madison St, Atlanta, GA 30301" +247267,Apple Airpods Headphones,1,150,08/20/19 16:59,"175 14th St, Portland, ME 04101" +247268,27in FHD Monitor,1,149.99,08/11/19 20:19,"79 Church St, Boston, MA 02215" +247269,Wired Headphones,1,11.99,08/08/19 01:59,"554 8th St, San Francisco, CA 94016" +247270,Apple Airpods Headphones,1,150,08/08/19 16:13,"562 Adams St, New York City, NY 10001" +247271,34in Ultrawide Monitor,1,379.99,08/31/19 19:52,"261 8th St, Atlanta, GA 30301" +247272,AAA Batteries (4-pack),1,2.99,08/19/19 19:14,"970 Highland St, Seattle, WA 98101" +247273,27in FHD Monitor,1,149.99,08/03/19 11:02,"886 Cedar St, Los Angeles, CA 90001" +247274,AAA Batteries (4-pack),1,2.99,08/06/19 23:48,"174 12th St, Dallas, TX 75001" +247275,20in Monitor,1,109.99,08/13/19 22:19,"985 Walnut St, Portland, OR 97035" +247276,34in Ultrawide Monitor,1,379.99,08/29/19 21:52,"289 Jackson St, San Francisco, CA 94016" +247277,Wired Headphones,1,11.99,08/28/19 10:02,"89 North St, Dallas, TX 75001" +247278,Lightning Charging Cable,1,14.95,08/24/19 18:21,"766 Walnut St, Seattle, WA 98101" +247279,AA Batteries (4-pack),1,3.84,08/15/19 10:02,"158 Madison St, Boston, MA 02215" +247280,Lightning Charging Cable,1,14.95,08/16/19 10:12,"505 9th St, San Francisco, CA 94016" +247281,ThinkPad Laptop,1,999.99,08/30/19 16:13,"937 4th St, New York City, NY 10001" +247282,AA Batteries (4-pack),1,3.84,08/10/19 15:27,"653 Willow St, San Francisco, CA 94016" +247283,27in 4K Gaming Monitor,1,389.99,08/13/19 20:59,"246 Center St, Atlanta, GA 30301" +247284,Google Phone,1,600,08/19/19 13:51,"528 6th St, Boston, MA 02215" +247285,Bose SoundSport Headphones,1,99.99,08/17/19 11:19,"994 Cedar St, Los Angeles, CA 90001" +247286,AAA Batteries (4-pack),1,2.99,08/17/19 17:51,"636 Washington St, San Francisco, CA 94016" +247287,Wired Headphones,1,11.99,08/16/19 12:56,"458 8th St, Boston, MA 02215" +247288,USB-C Charging Cable,3,11.95,08/15/19 16:50,"438 11th St, Los Angeles, CA 90001" +247289,27in 4K Gaming Monitor,1,389.99,08/31/19 22:19,"237 Lake St, San Francisco, CA 94016" +247290,Flatscreen TV,1,300,08/05/19 10:13,"856 6th St, San Francisco, CA 94016" +247291,Apple Airpods Headphones,1,150,08/21/19 11:50,"419 Madison St, Los Angeles, CA 90001" +247292,USB-C Charging Cable,1,11.95,08/16/19 21:17,"862 Hill St, Portland, OR 97035" +247293,AAA Batteries (4-pack),1,2.99,08/31/19 22:58,"379 Forest St, Austin, TX 73301" +247294,Lightning Charging Cable,1,14.95,08/06/19 22:12,"476 Johnson St, San Francisco, CA 94016" +247295,Flatscreen TV,1,300,08/11/19 10:53,"557 Maple St, Seattle, WA 98101" +247296,Lightning Charging Cable,1,14.95,08/26/19 16:57,"271 Adams St, Austin, TX 73301" +247297,AA Batteries (4-pack),1,3.84,08/13/19 10:32,"174 Hickory St, Boston, MA 02215" +247298,AA Batteries (4-pack),1,3.84,08/26/19 14:01,"20 Lake St, New York City, NY 10001" +247299,Lightning Charging Cable,1,14.95,08/14/19 00:04,"849 Hill St, Boston, MA 02215" +247300,ThinkPad Laptop,1,999.99,08/16/19 13:42,"775 Madison St, San Francisco, CA 94016" +247301,20in Monitor,1,109.99,08/27/19 18:54,"491 Hill St, Atlanta, GA 30301" +247302,Lightning Charging Cable,1,14.95,08/02/19 18:07,"738 Ridge St, San Francisco, CA 94016" +247303,Lightning Charging Cable,1,14.95,08/12/19 14:02,"688 7th St, Seattle, WA 98101" +247304,Bose SoundSport Headphones,1,99.99,08/20/19 07:55,"626 8th St, Los Angeles, CA 90001" +247305,Lightning Charging Cable,1,14.95,08/29/19 11:20,"685 Spruce St, Dallas, TX 75001" +247306,AA Batteries (4-pack),1,3.84,08/29/19 20:50,"130 Hickory St, New York City, NY 10001" +247307,AA Batteries (4-pack),1,3.84,08/04/19 09:42,"402 Cherry St, New York City, NY 10001" +247308,AAA Batteries (4-pack),1,2.99,08/09/19 08:09,"486 Walnut St, San Francisco, CA 94016" +247309,AA Batteries (4-pack),1,3.84,08/19/19 22:44,"393 5th St, Los Angeles, CA 90001" +247310,iPhone,1,700,08/22/19 15:44,"210 Cedar St, Dallas, TX 75001" +247310,Lightning Charging Cable,1,14.95,08/22/19 15:44,"210 Cedar St, Dallas, TX 75001" +247311,AAA Batteries (4-pack),1,2.99,08/01/19 21:21,"419 Lincoln St, San Francisco, CA 94016" +247312,USB-C Charging Cable,1,11.95,08/22/19 18:38,"469 North St, Boston, MA 02215" +247313,USB-C Charging Cable,1,11.95,08/23/19 21:29,"171 13th St, San Francisco, CA 94016" +247314,Macbook Pro Laptop,1,1700,08/20/19 12:11,"370 Cherry St, Atlanta, GA 30301" +247315,Wired Headphones,1,11.99,08/09/19 08:16,"741 11th St, Portland, OR 97035" +247316,Lightning Charging Cable,1,14.95,08/08/19 20:30,"751 6th St, San Francisco, CA 94016" +247317,AA Batteries (4-pack),1,3.84,08/16/19 19:35,"145 Lincoln St, Los Angeles, CA 90001" +247318,Google Phone,1,600,08/27/19 21:58,"945 Forest St, New York City, NY 10001" +247318,USB-C Charging Cable,1,11.95,08/27/19 21:58,"945 Forest St, New York City, NY 10001" +247319,Lightning Charging Cable,1,14.95,08/13/19 19:49,"780 Elm St, Los Angeles, CA 90001" +247320,27in 4K Gaming Monitor,1,389.99,08/08/19 17:54,"734 Spruce St, San Francisco, CA 94016" +247321,34in Ultrawide Monitor,1,379.99,08/09/19 13:20,"39 Washington St, Boston, MA 02215" +247322,USB-C Charging Cable,1,11.95,08/14/19 16:32,"891 Willow St, Atlanta, GA 30301" +247323,USB-C Charging Cable,1,11.95,08/20/19 12:51,"669 Pine St, Atlanta, GA 30301" +247324,USB-C Charging Cable,1,11.95,08/09/19 15:38,"859 13th St, San Francisco, CA 94016" +247325,27in 4K Gaming Monitor,1,389.99,08/09/19 20:53,"153 4th St, San Francisco, CA 94016" +247326,27in 4K Gaming Monitor,1,389.99,08/11/19 17:48,"170 Elm St, Los Angeles, CA 90001" +247327,Wired Headphones,1,11.99,08/21/19 12:52,"740 Chestnut St, San Francisco, CA 94016" +247328,AAA Batteries (4-pack),1,2.99,08/03/19 15:39,"995 12th St, Seattle, WA 98101" +247329,Google Phone,1,600,08/06/19 21:17,"512 West St, San Francisco, CA 94016" +247330,Macbook Pro Laptop,1,1700,08/25/19 23:48,"449 West St, San Francisco, CA 94016" +247331,Lightning Charging Cable,1,14.95,08/28/19 09:21,"428 Park St, Boston, MA 02215" +247332,Apple Airpods Headphones,1,150,08/30/19 19:13,"477 8th St, Los Angeles, CA 90001" +247333,27in FHD Monitor,1,149.99,08/15/19 23:33,"992 River St, Boston, MA 02215" +247334,AAA Batteries (4-pack),2,2.99,08/03/19 12:16,"555 Main St, New York City, NY 10001" +247335,AAA Batteries (4-pack),5,2.99,08/25/19 19:44,"105 9th St, Los Angeles, CA 90001" +247336,Flatscreen TV,1,300,08/16/19 11:03,"976 Jefferson St, Boston, MA 02215" +247337,AAA Batteries (4-pack),3,2.99,08/26/19 20:22,"986 Hickory St, San Francisco, CA 94016" +247338,AA Batteries (4-pack),2,3.84,08/21/19 01:07,"579 Jackson St, Boston, MA 02215" +247339,USB-C Charging Cable,1,11.95,08/24/19 10:13,"495 South St, San Francisco, CA 94016" +247340,Wired Headphones,1,11.99,08/14/19 13:35,"511 Meadow St, San Francisco, CA 94016" +247341,Wired Headphones,1,11.99,08/06/19 16:16,"24 Church St, Los Angeles, CA 90001" +247342,iPhone,1,700,08/17/19 20:23,"611 Lake St, Seattle, WA 98101" +247342,Wired Headphones,1,11.99,08/17/19 20:23,"611 Lake St, Seattle, WA 98101" +247343,Bose SoundSport Headphones,1,99.99,08/23/19 19:05,"265 Willow St, New York City, NY 10001" +247344,34in Ultrawide Monitor,1,379.99,08/12/19 10:35,"240 Cherry St, Dallas, TX 75001" +247345,Lightning Charging Cable,1,14.95,08/17/19 17:30,"449 Elm St, San Francisco, CA 94016" +247346,Lightning Charging Cable,1,14.95,08/22/19 21:20,"576 Lake St, Boston, MA 02215" +247346,27in FHD Monitor,1,149.99,08/22/19 21:20,"576 Lake St, Boston, MA 02215" +247347,20in Monitor,1,109.99,08/12/19 09:33,"688 West St, New York City, NY 10001" +247348,AA Batteries (4-pack),1,3.84,08/20/19 11:42,"88 Hickory St, Atlanta, GA 30301" +247349,Apple Airpods Headphones,1,150,08/24/19 09:39,"951 Jackson St, New York City, NY 10001" +247350,Flatscreen TV,1,300,08/03/19 04:30,"326 10th St, San Francisco, CA 94016" +247351,Wired Headphones,1,11.99,08/19/19 23:26,"55 Jefferson St, Austin, TX 73301" +247352,USB-C Charging Cable,1,11.95,08/29/19 19:34,"510 Adams St, New York City, NY 10001" +247353,Wired Headphones,1,11.99,08/17/19 10:56,"269 6th St, Atlanta, GA 30301" +247354,Lightning Charging Cable,1,14.95,08/15/19 11:47,"661 Walnut St, Los Angeles, CA 90001" +247355,Wired Headphones,1,11.99,08/18/19 14:13,"569 6th St, Atlanta, GA 30301" +247356,Apple Airpods Headphones,1,150,08/23/19 15:27,"395 Spruce St, New York City, NY 10001" +247357,AAA Batteries (4-pack),1,2.99,08/25/19 15:39,"40 8th St, Los Angeles, CA 90001" +247358,27in FHD Monitor,1,149.99,08/06/19 19:59,"937 6th St, New York City, NY 10001" +247359,iPhone,1,700,08/28/19 13:33,"133 7th St, San Francisco, CA 94016" +247360,USB-C Charging Cable,1,11.95,08/10/19 14:46,"765 Lincoln St, Boston, MA 02215" +247361,Lightning Charging Cable,1,14.95,08/18/19 10:29,"360 Washington St, Los Angeles, CA 90001" +247362,USB-C Charging Cable,1,11.95,08/01/19 15:37,"328 13th St, New York City, NY 10001" +247363,27in 4K Gaming Monitor,1,389.99,08/07/19 20:20,"743 4th St, New York City, NY 10001" +247364,USB-C Charging Cable,1,11.95,08/16/19 16:38,"127 8th St, San Francisco, CA 94016" +,,,,, +247365,Bose SoundSport Headphones,1,99.99,08/08/19 15:33,"282 Park St, Seattle, WA 98101" +247366,iPhone,1,700,08/17/19 00:30,"27 13th St, Dallas, TX 75001" +247367,Google Phone,1,600,08/12/19 01:15,"753 Ridge St, Los Angeles, CA 90001" +247368,AAA Batteries (4-pack),1,2.99,08/08/19 07:42,"481 4th St, San Francisco, CA 94016" +247369,USB-C Charging Cable,1,11.95,08/27/19 23:56,"320 Cherry St, Portland, ME 04101" +247370,AA Batteries (4-pack),1,3.84,08/16/19 12:28,"115 8th St, Los Angeles, CA 90001" +247371,USB-C Charging Cable,1,11.95,08/29/19 22:36,"25 9th St, San Francisco, CA 94016" +247372,27in FHD Monitor,1,149.99,08/28/19 11:19,"868 Maple St, San Francisco, CA 94016" +247373,Wired Headphones,1,11.99,08/17/19 19:49,"640 Church St, Boston, MA 02215" +247374,Lightning Charging Cable,1,14.95,08/24/19 17:33,"146 9th St, San Francisco, CA 94016" +247375,Flatscreen TV,1,300,08/18/19 18:37,"815 4th St, San Francisco, CA 94016" +247376,USB-C Charging Cable,1,11.95,08/21/19 00:22,"535 Willow St, Austin, TX 73301" +247377,Bose SoundSport Headphones,1,99.99,08/28/19 21:17,"445 Lincoln St, Los Angeles, CA 90001" +247378,Lightning Charging Cable,1,14.95,08/30/19 13:33,"774 Jackson St, San Francisco, CA 94016" +247379,Wired Headphones,2,11.99,08/08/19 17:21,"139 Willow St, Portland, ME 04101" +247380,Apple Airpods Headphones,1,150,08/02/19 00:00,"907 1st St, New York City, NY 10001" +247381,Flatscreen TV,1,300,08/26/19 12:45,"288 North St, New York City, NY 10001" +247382,Lightning Charging Cable,1,14.95,08/12/19 16:34,"312 Lake St, San Francisco, CA 94016" +247383,AA Batteries (4-pack),1,3.84,08/01/19 16:25,"960 1st St, Los Angeles, CA 90001" +247384,27in 4K Gaming Monitor,1,389.99,08/11/19 11:43,"391 Dogwood St, New York City, NY 10001" +247385,USB-C Charging Cable,1,11.95,08/21/19 18:11,"52 Dogwood St, New York City, NY 10001" +247386,Bose SoundSport Headphones,1,99.99,08/31/19 15:06,"837 Willow St, Los Angeles, CA 90001" +247387,AAA Batteries (4-pack),1,2.99,08/19/19 13:34,"236 Jackson St, Dallas, TX 75001" +247388,Flatscreen TV,1,300,08/28/19 22:47,"795 Ridge St, Boston, MA 02215" +247389,Apple Airpods Headphones,1,150,08/18/19 15:07,"523 Washington St, San Francisco, CA 94016" +247390,Bose SoundSport Headphones,1,99.99,08/19/19 03:46,"240 Hill St, New York City, NY 10001" +247390,Bose SoundSport Headphones,1,99.99,08/19/19 03:46,"240 Hill St, New York City, NY 10001" +247391,ThinkPad Laptop,1,999.99,08/10/19 11:39,"904 Highland St, New York City, NY 10001" +247392,Lightning Charging Cable,1,14.95,08/15/19 20:43,"451 Lake St, New York City, NY 10001" +247393,Lightning Charging Cable,1,14.95,08/09/19 12:38,"793 2nd St, Atlanta, GA 30301" +247394,Apple Airpods Headphones,1,150,08/29/19 09:30,"18 Forest St, New York City, NY 10001" +247395,20in Monitor,1,109.99,08/20/19 14:31,"691 Forest St, Austin, TX 73301" +247396,Wired Headphones,1,11.99,08/22/19 13:39,"650 Highland St, San Francisco, CA 94016" +247397,USB-C Charging Cable,1,11.95,08/11/19 18:49,"242 4th St, Los Angeles, CA 90001" +247398,AA Batteries (4-pack),1,3.84,08/20/19 23:22,"635 Hill St, San Francisco, CA 94016" +247399,Wired Headphones,1,11.99,08/21/19 11:40,"11 Lincoln St, Dallas, TX 75001" +247400,USB-C Charging Cable,1,11.95,08/05/19 21:12,"936 4th St, Los Angeles, CA 90001" +247401,iPhone,1,700,08/01/19 20:41,"792 Highland St, San Francisco, CA 94016" +247402,iPhone,1,700,08/30/19 21:38,"851 Ridge St, Los Angeles, CA 90001" +247403,34in Ultrawide Monitor,1,379.99,08/19/19 21:27,"144 Lakeview St, San Francisco, CA 94016" +247404,Google Phone,1,600,08/14/19 11:54,"686 Center St, New York City, NY 10001" +247404,Wired Headphones,1,11.99,08/14/19 11:54,"686 Center St, New York City, NY 10001" +247405,USB-C Charging Cable,1,11.95,08/31/19 11:17,"979 12th St, San Francisco, CA 94016" +247406,Lightning Charging Cable,1,14.95,08/07/19 16:51,"856 Madison St, Boston, MA 02215" +247407,Apple Airpods Headphones,1,150,08/30/19 16:10,"465 Cedar St, San Francisco, CA 94016" +247408,USB-C Charging Cable,1,11.95,08/04/19 11:56,"31 Willow St, New York City, NY 10001" +247409,USB-C Charging Cable,2,11.95,08/26/19 13:32,"628 Spruce St, Seattle, WA 98101" +247410,AA Batteries (4-pack),1,3.84,08/13/19 23:24,"213 9th St, Portland, OR 97035" +247411,AA Batteries (4-pack),1,3.84,08/15/19 11:27,"9 2nd St, Los Angeles, CA 90001" +247412,AA Batteries (4-pack),1,3.84,08/28/19 17:16,"446 Highland St, Portland, ME 04101" +247413,USB-C Charging Cable,1,11.95,08/13/19 11:34,"285 Jefferson St, Dallas, TX 75001" +247414,iPhone,1,700,08/07/19 21:43,"765 River St, New York City, NY 10001" +247415,Flatscreen TV,1,300,08/07/19 22:25,"25 Lake St, Los Angeles, CA 90001" +247416,Wired Headphones,1,11.99,08/04/19 13:36,"527 Lincoln St, Boston, MA 02215" +247417,Wired Headphones,1,11.99,08/01/19 20:58,"369 12th St, Dallas, TX 75001" +247418,USB-C Charging Cable,1,11.95,08/03/19 23:27,"152 Pine St, Dallas, TX 75001" +247419,Bose SoundSport Headphones,1,99.99,08/05/19 21:32,"895 9th St, Austin, TX 73301" +247420,AAA Batteries (4-pack),1,2.99,08/01/19 13:54,"442 Park St, New York City, NY 10001" +247421,Wired Headphones,1,11.99,08/24/19 11:16,"253 Center St, San Francisco, CA 94016" +247422,AAA Batteries (4-pack),2,2.99,08/29/19 21:44,"95 Sunset St, Los Angeles, CA 90001" +247423,27in 4K Gaming Monitor,1,389.99,08/29/19 02:09,"483 Elm St, Dallas, TX 75001" +247424,Bose SoundSport Headphones,1,99.99,08/16/19 18:52,"292 Sunset St, Dallas, TX 75001" +247425,20in Monitor,1,109.99,08/28/19 14:43,"946 10th St, Atlanta, GA 30301" +247426,Vareebadd Phone,1,400,08/23/19 14:52,"464 Lake St, San Francisco, CA 94016" +247427,USB-C Charging Cable,1,11.95,08/09/19 15:01,"677 10th St, Los Angeles, CA 90001" +247428,iPhone,1,700,08/29/19 16:57,"49 7th St, Dallas, TX 75001" +247428,Apple Airpods Headphones,1,150,08/29/19 16:57,"49 7th St, Dallas, TX 75001" +247429,Google Phone,1,600,08/11/19 15:00,"107 Madison St, Dallas, TX 75001" +247430,iPhone,1,700,08/05/19 15:05,"338 Adams St, San Francisco, CA 94016" +247431,Lightning Charging Cable,1,14.95,08/28/19 14:37,"173 4th St, Dallas, TX 75001" +247432,USB-C Charging Cable,1,11.95,08/20/19 20:09,"15 Hickory St, Los Angeles, CA 90001" +247433,Flatscreen TV,1,300,08/12/19 12:45,"200 North St, Boston, MA 02215" +247434,iPhone,1,700,08/02/19 19:12,"954 Walnut St, New York City, NY 10001" +247435,Lightning Charging Cable,1,14.95,08/26/19 14:00,"945 6th St, Seattle, WA 98101" +247436,AAA Batteries (4-pack),1,2.99,08/03/19 21:12,"315 Lake St, Seattle, WA 98101" +247437,AAA Batteries (4-pack),1,2.99,08/07/19 19:11,"298 13th St, Seattle, WA 98101" +247438,AAA Batteries (4-pack),1,2.99,08/24/19 05:01,"330 Willow St, San Francisco, CA 94016" +247439,Flatscreen TV,1,300,08/04/19 17:06,"115 Chestnut St, Los Angeles, CA 90001" +247440,Lightning Charging Cable,2,14.95,08/20/19 10:33,"143 Washington St, Portland, OR 97035" +247441,Macbook Pro Laptop,1,1700,08/02/19 14:01,"170 Adams St, Boston, MA 02215" +247442,27in FHD Monitor,1,149.99,08/23/19 10:02,"247 River St, Seattle, WA 98101" +247443,20in Monitor,1,109.99,08/30/19 21:59,"409 Chestnut St, Los Angeles, CA 90001" +247444,USB-C Charging Cable,1,11.95,08/21/19 18:10,"177 5th St, San Francisco, CA 94016" +247445,AA Batteries (4-pack),1,3.84,08/01/19 18:10,"807 Main St, Dallas, TX 75001" +247446,Wired Headphones,1,11.99,08/15/19 14:16,"271 5th St, Boston, MA 02215" +247447,Wired Headphones,1,11.99,08/15/19 07:47,"747 6th St, San Francisco, CA 94016" +247448,AAA Batteries (4-pack),1,2.99,08/30/19 10:43,"682 8th St, New York City, NY 10001" +247449,Wired Headphones,1,11.99,08/21/19 17:54,"624 River St, Atlanta, GA 30301" +247450,AA Batteries (4-pack),1,3.84,08/10/19 19:51,"476 Highland St, Dallas, TX 75001" +247451,Lightning Charging Cable,1,14.95,08/17/19 20:50,"226 5th St, San Francisco, CA 94016" +247452,USB-C Charging Cable,1,11.95,08/16/19 22:26,"670 Lakeview St, San Francisco, CA 94016" +247453,USB-C Charging Cable,1,11.95,08/08/19 17:57,"477 Church St, Boston, MA 02215" +247454,USB-C Charging Cable,1,11.95,08/10/19 18:15,"790 Cherry St, Boston, MA 02215" +247455,Wired Headphones,1,11.99,08/24/19 02:42,"66 River St, Portland, OR 97035" +247456,Apple Airpods Headphones,1,150,08/14/19 10:29,"20 Hickory St, Los Angeles, CA 90001" +247457,AAA Batteries (4-pack),1,2.99,08/05/19 12:46,"205 Willow St, Seattle, WA 98101" +247458,USB-C Charging Cable,1,11.95,08/08/19 15:12,"583 Madison St, San Francisco, CA 94016" +247459,AA Batteries (4-pack),1,3.84,08/05/19 15:53,"433 Elm St, Los Angeles, CA 90001" +247460,Apple Airpods Headphones,1,150,08/15/19 15:55,"53 Cherry St, Seattle, WA 98101" +247461,iPhone,1,700,08/03/19 15:58,"272 7th St, Boston, MA 02215" +247462,34in Ultrawide Monitor,1,379.99,08/10/19 00:46,"790 7th St, San Francisco, CA 94016" +247463,Google Phone,1,600,08/14/19 18:01,"9 Walnut St, Portland, OR 97035" +247464,20in Monitor,1,109.99,08/17/19 15:59,"668 Cedar St, Los Angeles, CA 90001" +247465,Lightning Charging Cable,1,14.95,08/29/19 15:27,"823 Sunset St, Seattle, WA 98101" +247466,USB-C Charging Cable,1,11.95,08/28/19 10:34,"396 Cherry St, Los Angeles, CA 90001" +247467,USB-C Charging Cable,1,11.95,08/28/19 18:40,"227 Chestnut St, San Francisco, CA 94016" +247468,Apple Airpods Headphones,1,150,08/17/19 14:08,"741 Washington St, Dallas, TX 75001" +247469,Wired Headphones,3,11.99,08/09/19 19:13,"403 Forest St, San Francisco, CA 94016" +247470,AA Batteries (4-pack),1,3.84,08/18/19 12:10,"811 Washington St, Seattle, WA 98101" +247471,Flatscreen TV,1,300,08/31/19 12:02,"245 14th St, Los Angeles, CA 90001" +247472,AA Batteries (4-pack),1,3.84,08/05/19 12:28,"843 Lincoln St, Atlanta, GA 30301" +247473,Wired Headphones,1,11.99,08/22/19 15:29,"602 Elm St, San Francisco, CA 94016" +247474,AA Batteries (4-pack),1,3.84,08/06/19 20:32,"135 Main St, Boston, MA 02215" +247475,Lightning Charging Cable,1,14.95,08/17/19 13:55,"318 Maple St, Seattle, WA 98101" +247476,Google Phone,1,600,08/25/19 20:57,"743 12th St, Los Angeles, CA 90001" +247476,USB-C Charging Cable,1,11.95,08/25/19 20:57,"743 12th St, Los Angeles, CA 90001" +247476,Bose SoundSport Headphones,1,99.99,08/25/19 20:57,"743 12th St, Los Angeles, CA 90001" +247477,iPhone,1,700,08/04/19 19:33,"160 Maple St, San Francisco, CA 94016" +247478,USB-C Charging Cable,1,11.95,08/13/19 08:07,"433 14th St, San Francisco, CA 94016" +247479,Wired Headphones,2,11.99,08/29/19 08:58,"715 Wilson St, Los Angeles, CA 90001" +247480,Macbook Pro Laptop,1,1700,08/28/19 12:56,"410 Pine St, Atlanta, GA 30301" +247481,Apple Airpods Headphones,1,150,08/08/19 23:57,"284 2nd St, San Francisco, CA 94016" +247482,Wired Headphones,1,11.99,08/18/19 15:17,"202 9th St, Seattle, WA 98101" +247483,AA Batteries (4-pack),1,3.84,08/12/19 19:54,"549 Church St, Atlanta, GA 30301" +247484,34in Ultrawide Monitor,1,379.99,08/03/19 10:12,"797 Park St, San Francisco, CA 94016" +247485,27in FHD Monitor,1,149.99,08/16/19 09:32,"355 13th St, San Francisco, CA 94016" +247486,Lightning Charging Cable,1,14.95,08/28/19 21:37,"478 1st St, San Francisco, CA 94016" +247487,Bose SoundSport Headphones,1,99.99,08/05/19 20:10,"206 12th St, San Francisco, CA 94016" +247488,Apple Airpods Headphones,1,150,08/09/19 20:10,"619 Center St, San Francisco, CA 94016" +247489,Google Phone,1,600,08/13/19 14:17,"570 Dogwood St, Los Angeles, CA 90001" +247490,Flatscreen TV,1,300,08/05/19 00:43,"608 Madison St, San Francisco, CA 94016" +247491,Google Phone,1,600,08/20/19 23:38,"444 Hill St, Los Angeles, CA 90001" +247492,AAA Batteries (4-pack),2,2.99,08/03/19 20:30,"854 9th St, San Francisco, CA 94016" +247493,Google Phone,1,600,08/15/19 22:00,"565 North St, Los Angeles, CA 90001" +247493,USB-C Charging Cable,2,11.95,08/15/19 22:00,"565 North St, Los Angeles, CA 90001" +247493,Wired Headphones,1,11.99,08/15/19 22:00,"565 North St, Los Angeles, CA 90001" +247494,34in Ultrawide Monitor,1,379.99,08/28/19 10:28,"536 Jefferson St, Boston, MA 02215" +247495,AAA Batteries (4-pack),2,2.99,08/04/19 22:46,"302 9th St, Seattle, WA 98101" +247496,Flatscreen TV,1,300,08/20/19 19:49,"751 Wilson St, San Francisco, CA 94016" +247497,27in 4K Gaming Monitor,1,389.99,08/30/19 20:08,"132 Church St, Seattle, WA 98101" +247498,AAA Batteries (4-pack),2,2.99,08/07/19 13:31,"550 Jackson St, San Francisco, CA 94016" +247499,Apple Airpods Headphones,1,150,08/09/19 21:17,"893 7th St, New York City, NY 10001" +247500,Apple Airpods Headphones,1,150,08/16/19 14:59,"773 Adams St, New York City, NY 10001" +247501,Flatscreen TV,1,300,08/02/19 22:26,"113 Jackson St, Dallas, TX 75001" +247502,AA Batteries (4-pack),5,3.84,08/10/19 16:37,"203 5th St, Portland, ME 04101" +247503,Lightning Charging Cable,1,14.95,08/29/19 18:43,"63 Ridge St, San Francisco, CA 94016" +247504,Bose SoundSport Headphones,1,99.99,08/16/19 14:21,"252 Lakeview St, San Francisco, CA 94016" +247505,AAA Batteries (4-pack),2,2.99,08/24/19 10:55,"8 Johnson St, Portland, OR 97035" +247506,20in Monitor,1,109.99,08/08/19 14:19,"788 14th St, San Francisco, CA 94016" +247507,AAA Batteries (4-pack),1,2.99,08/12/19 13:54,"215 River St, Los Angeles, CA 90001" +247508,27in FHD Monitor,1,149.99,08/12/19 23:00,"940 Cherry St, New York City, NY 10001" +247509,20in Monitor,1,109.99,08/19/19 08:04,"362 Lincoln St, Boston, MA 02215" +247510,Bose SoundSport Headphones,1,99.99,08/26/19 21:51,"16 13th St, Seattle, WA 98101" +247511,Lightning Charging Cable,1,14.95,08/12/19 14:45,"450 Pine St, Los Angeles, CA 90001" +247512,AAA Batteries (4-pack),1,2.99,08/06/19 08:21,"842 Meadow St, Atlanta, GA 30301" +247513,USB-C Charging Cable,1,11.95,08/28/19 10:14,"403 11th St, San Francisco, CA 94016" +247514,Bose SoundSport Headphones,1,99.99,08/21/19 18:40,"385 2nd St, Portland, OR 97035" +247515,Macbook Pro Laptop,1,1700,08/03/19 23:15,"722 River St, Los Angeles, CA 90001" +247516,Apple Airpods Headphones,1,150,08/16/19 17:01,"415 Chestnut St, Atlanta, GA 30301" +247517,Lightning Charging Cable,1,14.95,08/09/19 20:13,"679 Lakeview St, San Francisco, CA 94016" +247518,iPhone,1,700,08/20/19 11:02,"163 Adams St, Dallas, TX 75001" +247519,34in Ultrawide Monitor,1,379.99,08/06/19 06:15,"332 13th St, San Francisco, CA 94016" +247520,AAA Batteries (4-pack),2,2.99,08/07/19 13:57,"812 Cedar St, San Francisco, CA 94016" +247521,USB-C Charging Cable,1,11.95,08/21/19 11:28,"395 Hickory St, Boston, MA 02215" +247522,USB-C Charging Cable,1,11.95,08/04/19 15:22,"397 Walnut St, San Francisco, CA 94016" +247523,Google Phone,1,600,08/27/19 16:26,"720 Hill St, Atlanta, GA 30301" +247524,Apple Airpods Headphones,1,150,08/22/19 09:58,"429 8th St, Atlanta, GA 30301" +247525,Wired Headphones,1,11.99,08/04/19 23:21,"261 Washington St, San Francisco, CA 94016" +247526,Lightning Charging Cable,1,14.95,08/16/19 21:45,"41 Cherry St, Boston, MA 02215" +247527,27in FHD Monitor,1,149.99,08/02/19 16:30,"976 Willow St, New York City, NY 10001" +247528,Apple Airpods Headphones,1,150,08/26/19 12:34,"500 Sunset St, Austin, TX 73301" +247529,27in 4K Gaming Monitor,1,389.99,08/24/19 00:45,"324 10th St, Los Angeles, CA 90001" +247530,Apple Airpods Headphones,1,150,08/31/19 22:06,"693 Willow St, Austin, TX 73301" +247531,34in Ultrawide Monitor,1,379.99,08/17/19 00:10,"627 Lakeview St, Seattle, WA 98101" +247532,Vareebadd Phone,1,400,08/06/19 20:55,"208 Washington St, Dallas, TX 75001" +247533,Lightning Charging Cable,1,14.95,08/05/19 19:03,"284 Park St, Atlanta, GA 30301" +247534,Wired Headphones,1,11.99,08/22/19 14:59,"559 Madison St, Dallas, TX 75001" +247535,27in 4K Gaming Monitor,1,389.99,08/20/19 17:21,"693 Sunset St, San Francisco, CA 94016" +247536,Google Phone,1,600,08/03/19 06:13,"61 6th St, San Francisco, CA 94016" +247536,USB-C Charging Cable,1,11.95,08/03/19 06:13,"61 6th St, San Francisco, CA 94016" +247537,Wired Headphones,1,11.99,08/29/19 21:55,"97 4th St, New York City, NY 10001" +247538,20in Monitor,1,109.99,08/07/19 13:28,"327 Lincoln St, Seattle, WA 98101" +247539,AAA Batteries (4-pack),1,2.99,08/27/19 12:07,"109 12th St, San Francisco, CA 94016" +247540,Macbook Pro Laptop,1,1700,08/18/19 09:20,"412 Church St, Seattle, WA 98101" +247541,AAA Batteries (4-pack),3,2.99,08/07/19 11:44,"87 Highland St, San Francisco, CA 94016" +247542,Flatscreen TV,1,300,08/05/19 19:21,"922 Willow St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +247543,AA Batteries (4-pack),1,3.84,08/11/19 22:58,"783 Park St, Boston, MA 02215" +247544,Wired Headphones,1,11.99,08/16/19 21:09,"847 Center St, Austin, TX 73301" +247545,Bose SoundSport Headphones,1,99.99,08/02/19 16:29,"285 Hill St, Seattle, WA 98101" +247546,AAA Batteries (4-pack),1,2.99,08/12/19 09:52,"140 River St, Dallas, TX 75001" +247547,Apple Airpods Headphones,1,150,08/09/19 14:23,"346 5th St, Atlanta, GA 30301" +247548,Wired Headphones,1,11.99,08/01/19 12:29,"264 Lakeview St, San Francisco, CA 94016" +247549,Lightning Charging Cable,1,14.95,08/27/19 11:32,"798 6th St, Dallas, TX 75001" +247550,Apple Airpods Headphones,1,150,08/29/19 23:37,"645 Jefferson St, Los Angeles, CA 90001" +247551,AAA Batteries (4-pack),1,2.99,08/14/19 17:01,"883 Washington St, Dallas, TX 75001" +247552,Apple Airpods Headphones,1,150,08/29/19 12:17,"88 Chestnut St, Los Angeles, CA 90001" +247552,Apple Airpods Headphones,1,150,08/29/19 12:17,"88 Chestnut St, Los Angeles, CA 90001" +247553,Wired Headphones,1,11.99,08/27/19 18:32,"551 Elm St, Dallas, TX 75001" +247554,USB-C Charging Cable,1,11.95,08/23/19 21:32,"693 Church St, Seattle, WA 98101" +247555,AA Batteries (4-pack),2,3.84,08/23/19 08:03,"223 Maple St, Boston, MA 02215" +247556,Google Phone,1,600,08/17/19 18:43,"256 Jefferson St, Los Angeles, CA 90001" +247557,20in Monitor,1,109.99,08/13/19 19:47,"342 Johnson St, San Francisco, CA 94016" +247558,34in Ultrawide Monitor,1,379.99,08/21/19 13:53,"94 Adams St, Dallas, TX 75001" +247559,Lightning Charging Cable,1,14.95,08/14/19 13:22,"875 Cedar St, New York City, NY 10001" +247560,27in 4K Gaming Monitor,1,389.99,08/02/19 18:47,"619 6th St, San Francisco, CA 94016" +247561,AAA Batteries (4-pack),1,2.99,08/02/19 12:51,"114 2nd St, Portland, OR 97035" +247562,Apple Airpods Headphones,1,150,08/04/19 16:42,"345 11th St, Los Angeles, CA 90001" +247563,27in 4K Gaming Monitor,1,389.99,08/04/19 21:12,"748 Highland St, Boston, MA 02215" +247564,AA Batteries (4-pack),1,3.84,08/29/19 19:36,"285 10th St, Los Angeles, CA 90001" +247565,Google Phone,1,600,08/17/19 10:35,"165 Walnut St, New York City, NY 10001" +247566,Wired Headphones,1,11.99,08/25/19 11:44,"110 Maple St, Portland, OR 97035" +247567,USB-C Charging Cable,1,11.95,08/21/19 20:10,"56 Hill St, New York City, NY 10001" +247568,34in Ultrawide Monitor,1,379.99,08/30/19 09:48,"74 West St, Austin, TX 73301" +247569,ThinkPad Laptop,1,999.99,08/08/19 22:06,"487 14th St, Atlanta, GA 30301" +247570,34in Ultrawide Monitor,1,379.99,08/07/19 11:58,"850 11th St, Dallas, TX 75001" +247571,Apple Airpods Headphones,1,150,08/10/19 23:57,"293 13th St, Boston, MA 02215" +247572,Wired Headphones,1,11.99,08/31/19 14:01,"846 Center St, Atlanta, GA 30301" +247573,AAA Batteries (4-pack),1,2.99,08/04/19 12:14,"568 Main St, Dallas, TX 75001" +247574,27in 4K Gaming Monitor,1,389.99,08/09/19 08:46,"634 Maple St, Los Angeles, CA 90001" +247575,Flatscreen TV,1,300,08/05/19 16:07,"540 Lincoln St, Los Angeles, CA 90001" +247576,AA Batteries (4-pack),1,3.84,08/25/19 18:22,"554 River St, San Francisco, CA 94016" +247577,Wired Headphones,1,11.99,08/11/19 10:58,"545 Hill St, Atlanta, GA 30301" +247578,AAA Batteries (4-pack),2,2.99,08/30/19 09:21,"791 South St, Atlanta, GA 30301" +247579,Flatscreen TV,1,300,08/27/19 12:02,"950 Chestnut St, Portland, OR 97035" +247580,Vareebadd Phone,1,400,08/10/19 17:26,"403 Dogwood St, Portland, OR 97035" +247580,USB-C Charging Cable,1,11.95,08/10/19 17:26,"403 Dogwood St, Portland, OR 97035" +247581,AA Batteries (4-pack),1,3.84,08/07/19 20:55,"113 8th St, San Francisco, CA 94016" +247582,Flatscreen TV,1,300,08/04/19 08:18,"490 2nd St, San Francisco, CA 94016" +247583,Wired Headphones,1,11.99,08/25/19 06:57,"550 Jefferson St, Atlanta, GA 30301" +247584,Macbook Pro Laptop,1,1700,08/26/19 07:43,"697 2nd St, Atlanta, GA 30301" +247585,Google Phone,1,600,08/21/19 20:19,"694 Hill St, Austin, TX 73301" +247586,AAA Batteries (4-pack),1,2.99,08/30/19 13:09,"392 Willow St, Boston, MA 02215" +247587,Apple Airpods Headphones,1,150,08/27/19 17:53,"627 8th St, San Francisco, CA 94016" +247588,Lightning Charging Cable,1,14.95,08/03/19 20:23,"389 6th St, Dallas, TX 75001" +247589,USB-C Charging Cable,1,11.95,08/24/19 22:39,"154 Spruce St, New York City, NY 10001" +247590,34in Ultrawide Monitor,1,379.99,08/20/19 17:23,"699 4th St, Boston, MA 02215" +247591,Wired Headphones,1,11.99,08/17/19 19:36,"765 Cherry St, New York City, NY 10001" +247592,Apple Airpods Headphones,1,150,08/16/19 15:18,"715 8th St, Austin, TX 73301" +247593,Apple Airpods Headphones,1,150,08/22/19 20:36,"698 Jackson St, Boston, MA 02215" +247594,iPhone,1,700,08/29/19 11:14,"466 Center St, San Francisco, CA 94016" +247595,27in FHD Monitor,1,149.99,08/15/19 08:47,"373 Main St, New York City, NY 10001" +247596,AAA Batteries (4-pack),3,2.99,08/22/19 20:18,"924 8th St, Boston, MA 02215" +247597,20in Monitor,1,109.99,08/27/19 14:40,"168 1st St, Los Angeles, CA 90001" +247598,Lightning Charging Cable,1,14.95,08/28/19 23:11,"492 14th St, San Francisco, CA 94016" +247599,Bose SoundSport Headphones,1,99.99,08/03/19 10:43,"70 Lakeview St, Dallas, TX 75001" +247600,Apple Airpods Headphones,1,150,08/04/19 18:05,"764 Main St, Dallas, TX 75001" +247601,Bose SoundSport Headphones,1,99.99,08/11/19 12:41,"840 Jefferson St, Seattle, WA 98101" +247602,Lightning Charging Cable,1,14.95,08/03/19 09:40,"831 Pine St, Seattle, WA 98101" +247603,AA Batteries (4-pack),3,3.84,08/14/19 21:39,"26 Willow St, Los Angeles, CA 90001" +247604,Lightning Charging Cable,1,14.95,08/15/19 16:54,"902 Jackson St, San Francisco, CA 94016" +247605,AAA Batteries (4-pack),1,2.99,08/13/19 01:45,"230 Lincoln St, Austin, TX 73301" +247606,AAA Batteries (4-pack),1,2.99,08/17/19 20:39,"815 Chestnut St, New York City, NY 10001" +247607,Wired Headphones,1,11.99,08/31/19 18:41,"519 Jackson St, Seattle, WA 98101" +247608,AAA Batteries (4-pack),2,2.99,08/30/19 09:47,"236 Chestnut St, San Francisco, CA 94016" +247609,27in 4K Gaming Monitor,1,389.99,08/25/19 17:08,"697 Meadow St, New York City, NY 10001" +247610,Lightning Charging Cable,1,14.95,08/13/19 00:46,"739 Jackson St, Boston, MA 02215" +247611,27in 4K Gaming Monitor,1,389.99,08/08/19 10:48,"907 Willow St, New York City, NY 10001" +247612,Lightning Charging Cable,1,14.95,08/16/19 21:34,"98 6th St, Atlanta, GA 30301" +247613,Lightning Charging Cable,1,14.95,08/01/19 17:39,"661 13th St, Los Angeles, CA 90001" +247614,Lightning Charging Cable,1,14.95,08/02/19 19:57,"771 Cedar St, Seattle, WA 98101" +247615,Flatscreen TV,1,300,08/18/19 08:45,"742 Forest St, New York City, NY 10001" +247616,AA Batteries (4-pack),1,3.84,08/21/19 11:42,"612 Willow St, San Francisco, CA 94016" +247617,USB-C Charging Cable,1,11.95,08/19/19 15:07,"158 Meadow St, San Francisco, CA 94016" +247618,Google Phone,1,600,08/11/19 10:59,"183 Cherry St, Portland, ME 04101" +247619,Bose SoundSport Headphones,1,99.99,08/03/19 19:20,"825 Park St, Los Angeles, CA 90001" +247620,Bose SoundSport Headphones,1,99.99,08/27/19 15:52,"294 Pine St, New York City, NY 10001" +247621,iPhone,1,700,08/21/19 11:16,"470 Park St, New York City, NY 10001" +247622,27in FHD Monitor,1,149.99,08/30/19 07:18,"443 Washington St, Dallas, TX 75001" +247623,AA Batteries (4-pack),1,3.84,08/16/19 13:29,"802 Lake St, Boston, MA 02215" +247624,Google Phone,1,600,08/23/19 11:12,"953 8th St, San Francisco, CA 94016" +247624,USB-C Charging Cable,1,11.95,08/23/19 11:12,"953 8th St, San Francisco, CA 94016" +247625,27in 4K Gaming Monitor,1,389.99,08/06/19 18:27,"423 Lakeview St, Boston, MA 02215" +247626,AAA Batteries (4-pack),1,2.99,08/04/19 18:42,"291 South St, Boston, MA 02215" +247627,AAA Batteries (4-pack),3,2.99,08/16/19 19:32,"892 Lakeview St, Atlanta, GA 30301" +247628,Lightning Charging Cable,1,14.95,08/17/19 11:44,"769 6th St, Portland, OR 97035" +247629,34in Ultrawide Monitor,1,379.99,08/19/19 07:38,"293 Main St, Austin, TX 73301" +247630,iPhone,1,700,08/25/19 19:06,"290 Jefferson St, Austin, TX 73301" +247631,ThinkPad Laptop,1,999.99,08/22/19 20:39,"435 Cedar St, New York City, NY 10001" +247632,Lightning Charging Cable,1,14.95,08/31/19 19:06,"286 Meadow St, San Francisco, CA 94016" +247633,USB-C Charging Cable,1,11.95,08/28/19 11:22,"454 West St, Portland, OR 97035" +247634,Apple Airpods Headphones,1,150,08/18/19 15:06,"113 Dogwood St, New York City, NY 10001" +247635,Lightning Charging Cable,1,14.95,08/14/19 07:08,"603 Chestnut St, New York City, NY 10001" +247636,34in Ultrawide Monitor,1,379.99,08/17/19 08:13,"30 4th St, Atlanta, GA 30301" +247637,Apple Airpods Headphones,1,150,08/08/19 19:16,"19 Ridge St, Austin, TX 73301" +247638,Wired Headphones,1,11.99,08/22/19 12:42,"600 Dogwood St, San Francisco, CA 94016" +247639,Bose SoundSport Headphones,1,99.99,08/28/19 11:18,"313 Jefferson St, Atlanta, GA 30301" +247640,Lightning Charging Cable,1,14.95,08/21/19 09:19,"992 Madison St, New York City, NY 10001" +247641,Wired Headphones,1,11.99,08/23/19 09:18,"741 Hill St, New York City, NY 10001" +247642,34in Ultrawide Monitor,1,379.99,08/25/19 10:47,"464 Elm St, Atlanta, GA 30301" +247643,Bose SoundSport Headphones,1,99.99,08/13/19 16:09,"955 Lake St, San Francisco, CA 94016" +247644,Apple Airpods Headphones,1,150,08/06/19 15:27,"412 10th St, San Francisco, CA 94016" +247645,Apple Airpods Headphones,1,150,08/29/19 11:43,"27 Jackson St, New York City, NY 10001" +247646,AA Batteries (4-pack),1,3.84,08/06/19 21:30,"247 11th St, Boston, MA 02215" +247647,Wired Headphones,1,11.99,08/16/19 15:55,"281 Church St, Seattle, WA 98101" +247648,27in 4K Gaming Monitor,1,389.99,08/09/19 11:46,"299 Hickory St, Boston, MA 02215" +247649,Lightning Charging Cable,1,14.95,08/08/19 09:58,"22 Adams St, Seattle, WA 98101" +247650,Wired Headphones,1,11.99,08/06/19 22:37,"244 Church St, San Francisco, CA 94016" +247651,Apple Airpods Headphones,1,150,08/10/19 20:36,"483 Washington St, New York City, NY 10001" +247652,27in 4K Gaming Monitor,1,389.99,08/29/19 16:49,"315 2nd St, New York City, NY 10001" +247653,AAA Batteries (4-pack),1,2.99,08/02/19 15:40,"410 1st St, San Francisco, CA 94016" +247654,Wired Headphones,1,11.99,08/08/19 21:05,"272 Wilson St, Austin, TX 73301" +247655,AAA Batteries (4-pack),3,2.99,08/02/19 20:01,"318 6th St, Austin, TX 73301" +247656,Bose SoundSport Headphones,1,99.99,08/24/19 15:51,"7 12th St, Boston, MA 02215" +247657,Apple Airpods Headphones,1,150,08/01/19 16:34,"697 Lake St, Seattle, WA 98101" +247658,AA Batteries (4-pack),2,3.84,08/08/19 22:02,"660 Church St, San Francisco, CA 94016" +247659,iPhone,1,700,08/26/19 06:27,"886 Ridge St, Seattle, WA 98101" +247660,AA Batteries (4-pack),1,3.84,08/15/19 22:06,"978 Johnson St, Boston, MA 02215" +247661,AA Batteries (4-pack),2,3.84,08/10/19 15:45,"644 Center St, Seattle, WA 98101" +247662,Wired Headphones,1,11.99,08/29/19 12:18,"364 Maple St, Boston, MA 02215" +247663,AA Batteries (4-pack),5,3.84,08/07/19 07:27,"270 Hickory St, Dallas, TX 75001" +247664,27in FHD Monitor,1,149.99,08/17/19 12:01,"864 Adams St, New York City, NY 10001" +247665,ThinkPad Laptop,1,999.99,08/26/19 00:17,"580 Adams St, Portland, OR 97035" +247666,Wired Headphones,1,11.99,08/04/19 22:35,"968 Elm St, Portland, OR 97035" +247667,27in 4K Gaming Monitor,1,389.99,08/31/19 13:33,"553 6th St, Los Angeles, CA 90001" +247668,AAA Batteries (4-pack),1,2.99,08/06/19 11:44,"826 Highland St, Boston, MA 02215" +247669,AAA Batteries (4-pack),1,2.99,08/22/19 16:47,"582 Ridge St, San Francisco, CA 94016" +247670,Google Phone,1,600,08/29/19 18:43,"969 Spruce St, Boston, MA 02215" +247670,USB-C Charging Cable,1,11.95,08/29/19 18:43,"969 Spruce St, Boston, MA 02215" +247671,Bose SoundSport Headphones,1,99.99,08/31/19 17:03,"854 River St, Los Angeles, CA 90001" +247672,Flatscreen TV,1,300,08/05/19 22:08,"608 Hill St, Boston, MA 02215" +247673,Wired Headphones,1,11.99,08/10/19 12:38,"299 River St, San Francisco, CA 94016" +247674,AA Batteries (4-pack),1,3.84,08/15/19 13:30,"532 9th St, Los Angeles, CA 90001" +247675,Lightning Charging Cable,1,14.95,08/11/19 21:07,"230 14th St, New York City, NY 10001" +247676,AAA Batteries (4-pack),1,2.99,08/30/19 16:15,"67 Willow St, Boston, MA 02215" +247677,Google Phone,1,600,08/10/19 21:37,"498 Center St, Los Angeles, CA 90001" +247678,Flatscreen TV,1,300,08/24/19 02:36,"308 Adams St, Seattle, WA 98101" +247679,Macbook Pro Laptop,1,1700,08/29/19 10:09,"543 Forest St, New York City, NY 10001" +247680,Lightning Charging Cable,1,14.95,08/12/19 11:57,"972 Ridge St, Boston, MA 02215" +247681,Wired Headphones,1,11.99,08/18/19 12:19,"601 Pine St, Atlanta, GA 30301" +247682,Bose SoundSport Headphones,1,99.99,08/09/19 20:36,"658 11th St, Los Angeles, CA 90001" +247683,Flatscreen TV,1,300,08/18/19 06:15,"585 Dogwood St, San Francisco, CA 94016" +247684,20in Monitor,1,109.99,08/20/19 21:45,"44 Lake St, Portland, OR 97035" +247685,Wired Headphones,1,11.99,08/22/19 19:55,"620 Pine St, Dallas, TX 75001" +247686,Apple Airpods Headphones,1,150,08/21/19 19:54,"383 Jefferson St, Boston, MA 02215" +247687,Wired Headphones,1,11.99,08/12/19 19:22,"558 2nd St, Portland, OR 97035" +247688,AAA Batteries (4-pack),1,2.99,08/15/19 13:25,"619 Lakeview St, San Francisco, CA 94016" +247689,AAA Batteries (4-pack),1,2.99,08/06/19 13:42,"790 Chestnut St, Dallas, TX 75001" +247690,Apple Airpods Headphones,1,150,08/20/19 03:16,"100 6th St, Portland, OR 97035" +247691,Wired Headphones,1,11.99,08/30/19 20:57,"987 Madison St, San Francisco, CA 94016" +247692,Wired Headphones,2,11.99,08/11/19 20:43,"99 Maple St, New York City, NY 10001" +247693,Bose SoundSport Headphones,1,99.99,08/22/19 01:12,"451 Center St, Atlanta, GA 30301" +247694,Lightning Charging Cable,1,14.95,08/19/19 18:31,"128 12th St, Los Angeles, CA 90001" +247695,Bose SoundSport Headphones,1,99.99,08/09/19 14:34,"111 6th St, San Francisco, CA 94016" +247696,Bose SoundSport Headphones,1,99.99,08/17/19 15:22,"1 11th St, San Francisco, CA 94016" +247697,Lightning Charging Cable,1,14.95,08/08/19 16:42,"606 Johnson St, San Francisco, CA 94016" +247698,Vareebadd Phone,1,400,08/12/19 12:12,"970 Lake St, Portland, OR 97035" +247699,AA Batteries (4-pack),1,3.84,08/07/19 20:32,"638 Pine St, Seattle, WA 98101" +247700,Wired Headphones,1,11.99,08/11/19 21:08,"171 Park St, San Francisco, CA 94016" +247700,27in 4K Gaming Monitor,1,389.99,08/11/19 21:08,"171 Park St, San Francisco, CA 94016" +247701,ThinkPad Laptop,1,999.99,08/10/19 18:01,"824 Willow St, Seattle, WA 98101" +247702,Lightning Charging Cable,1,14.95,08/28/19 00:30,"77 Hickory St, New York City, NY 10001" +247703,Apple Airpods Headphones,1,150,08/25/19 16:26,"538 12th St, Los Angeles, CA 90001" +247704,Apple Airpods Headphones,1,150,08/13/19 23:01,"862 Maple St, Los Angeles, CA 90001" +247705,ThinkPad Laptop,1,999.99,08/22/19 16:15,"839 14th St, Los Angeles, CA 90001" +247706,Bose SoundSport Headphones,1,99.99,08/12/19 08:30,"973 9th St, Los Angeles, CA 90001" +247707,USB-C Charging Cable,1,11.95,08/25/19 05:44,"389 Spruce St, New York City, NY 10001" +247708,Bose SoundSport Headphones,1,99.99,08/14/19 11:30,"826 Center St, Dallas, TX 75001" +247709,Bose SoundSport Headphones,1,99.99,08/27/19 13:06,"130 Madison St, Portland, OR 97035" +247710,AAA Batteries (4-pack),1,2.99,08/30/19 20:05,"349 Hickory St, Boston, MA 02215" +247711,ThinkPad Laptop,1,999.99,08/31/19 12:51,"172 6th St, San Francisco, CA 94016" +247712,AAA Batteries (4-pack),1,2.99,08/08/19 10:57,"674 Main St, Dallas, TX 75001" +247713,Apple Airpods Headphones,1,150,08/12/19 09:38,"80 Park St, San Francisco, CA 94016" +247714,Apple Airpods Headphones,1,150,08/24/19 14:29,"110 8th St, San Francisco, CA 94016" +247715,AA Batteries (4-pack),3,3.84,08/03/19 22:39,"455 4th St, New York City, NY 10001" +247716,Lightning Charging Cable,2,14.95,08/13/19 12:59,"584 West St, New York City, NY 10001" +247717,iPhone,1,700,08/28/19 06:32,"816 6th St, San Francisco, CA 94016" +247718,AAA Batteries (4-pack),1,2.99,08/09/19 12:26,"48 Park St, San Francisco, CA 94016" +247718,AAA Batteries (4-pack),1,2.99,08/09/19 12:26,"48 Park St, San Francisco, CA 94016" +247719,AA Batteries (4-pack),1,3.84,08/13/19 17:40,"423 Jackson St, Portland, OR 97035" +247720,Wired Headphones,1,11.99,08/05/19 02:11,"7 West St, Atlanta, GA 30301" +247721,Wired Headphones,1,11.99,08/05/19 10:52,"272 Washington St, Boston, MA 02215" +247722,AAA Batteries (4-pack),1,2.99,08/20/19 11:12,"794 Spruce St, Boston, MA 02215" +247723,AA Batteries (4-pack),1,3.84,08/08/19 10:53,"876 Walnut St, San Francisco, CA 94016" +247724,AAA Batteries (4-pack),2,2.99,08/21/19 16:52,"692 Hill St, Atlanta, GA 30301" +247725,20in Monitor,1,109.99,08/13/19 20:58,"594 Main St, Seattle, WA 98101" +247726,AAA Batteries (4-pack),1,2.99,08/28/19 15:37,"832 Madison St, San Francisco, CA 94016" +247727,Lightning Charging Cable,1,14.95,08/16/19 17:10,"482 4th St, Atlanta, GA 30301" +247728,AAA Batteries (4-pack),1,2.99,08/26/19 21:40,"496 9th St, Atlanta, GA 30301" +247729,20in Monitor,1,109.99,08/14/19 06:33,"732 West St, Portland, OR 97035" +247730,34in Ultrawide Monitor,1,379.99,08/20/19 18:08,"466 10th St, Austin, TX 73301" +247731,USB-C Charging Cable,1,11.95,08/11/19 20:20,"514 6th St, Dallas, TX 75001" +247732,Wired Headphones,2,11.99,08/22/19 18:42,"894 North St, Dallas, TX 75001" +247733,Wired Headphones,1,11.99,08/14/19 14:50,"911 9th St, San Francisco, CA 94016" +247734,AA Batteries (4-pack),1,3.84,08/28/19 11:28,"533 Madison St, Atlanta, GA 30301" +247735,Lightning Charging Cable,2,14.95,08/18/19 07:26,"974 11th St, Los Angeles, CA 90001" +247736,Apple Airpods Headphones,1,150,08/28/19 10:26,"267 Cherry St, Austin, TX 73301" +247737,AA Batteries (4-pack),1,3.84,08/31/19 00:46,"539 Washington St, Seattle, WA 98101" +247738,Wired Headphones,1,11.99,08/25/19 12:39,"532 5th St, Boston, MA 02215" +247739,iPhone,1,700,08/24/19 15:20,"842 6th St, New York City, NY 10001" +247740,LG Washing Machine,1,600.0,08/10/19 09:17,"765 Cherry St, San Francisco, CA 94016" +247741,Lightning Charging Cable,1,14.95,08/13/19 13:30,"74 1st St, New York City, NY 10001" +247742,Macbook Pro Laptop,1,1700,08/07/19 18:59,"944 Washington St, Austin, TX 73301" +247743,USB-C Charging Cable,1,11.95,08/15/19 12:27,"710 13th St, Dallas, TX 75001" +247744,USB-C Charging Cable,1,11.95,08/09/19 15:45,"559 Lakeview St, Austin, TX 73301" +247745,USB-C Charging Cable,1,11.95,08/24/19 23:39,"111 Park St, Los Angeles, CA 90001" +247746,AA Batteries (4-pack),1,3.84,08/25/19 15:50,"42 14th St, Boston, MA 02215" +247747,USB-C Charging Cable,1,11.95,08/26/19 11:20,"443 River St, Los Angeles, CA 90001" +247748,Lightning Charging Cable,1,14.95,08/09/19 21:36,"688 Ridge St, San Francisco, CA 94016" +247749,Apple Airpods Headphones,1,150,08/21/19 14:27,"289 Lake St, San Francisco, CA 94016" +247750,27in 4K Gaming Monitor,1,389.99,08/15/19 08:56,"879 Willow St, Los Angeles, CA 90001" +247751,USB-C Charging Cable,1,11.95,08/18/19 15:01,"418 Center St, Dallas, TX 75001" +247752,Bose SoundSport Headphones,1,99.99,08/12/19 23:21,"341 Center St, Los Angeles, CA 90001" +247753,AA Batteries (4-pack),1,3.84,08/14/19 20:09,"762 Center St, Portland, OR 97035" +247754,Lightning Charging Cable,1,14.95,08/25/19 16:57,"270 Ridge St, Los Angeles, CA 90001" +247755,Google Phone,1,600,08/26/19 16:40,"708 Main St, Los Angeles, CA 90001" +247755,USB-C Charging Cable,1,11.95,08/26/19 16:40,"708 Main St, Los Angeles, CA 90001" +247756,27in FHD Monitor,1,149.99,08/07/19 10:36,"566 Lake St, Los Angeles, CA 90001" +247757,USB-C Charging Cable,1,11.95,08/08/19 22:27,"941 North St, New York City, NY 10001" +247758,AA Batteries (4-pack),1,3.84,08/18/19 21:24,"658 Ridge St, Atlanta, GA 30301" +247759,AA Batteries (4-pack),1,3.84,08/28/19 16:38,"501 7th St, San Francisco, CA 94016" +247760,Lightning Charging Cable,1,14.95,08/24/19 17:17,"540 Walnut St, Los Angeles, CA 90001" +247761,AAA Batteries (4-pack),1,2.99,08/30/19 20:58,"66 Madison St, Portland, OR 97035" +247762,USB-C Charging Cable,1,11.95,08/13/19 13:35,"825 Jackson St, San Francisco, CA 94016" +247763,AAA Batteries (4-pack),1,2.99,08/04/19 18:54,"358 14th St, San Francisco, CA 94016" +247764,Apple Airpods Headphones,1,150,08/08/19 22:59,"597 Forest St, San Francisco, CA 94016" +247765,27in FHD Monitor,1,149.99,08/10/19 10:52,"330 13th St, Atlanta, GA 30301" +247766,Apple Airpods Headphones,1,150,08/25/19 08:46,"279 8th St, San Francisco, CA 94016" +247767,USB-C Charging Cable,1,11.95,08/25/19 17:07,"205 Meadow St, San Francisco, CA 94016" +247768,Bose SoundSport Headphones,1,99.99,08/06/19 21:28,"273 Spruce St, Boston, MA 02215" +247769,Wired Headphones,2,11.99,08/31/19 20:19,"320 12th St, Portland, OR 97035" +247770,Flatscreen TV,1,300,08/22/19 20:40,"726 13th St, San Francisco, CA 94016" +247771,USB-C Charging Cable,1,11.95,08/20/19 16:19,"861 Main St, San Francisco, CA 94016" +247772,27in FHD Monitor,1,149.99,08/20/19 11:56,"302 14th St, Dallas, TX 75001" +247773,AA Batteries (4-pack),2,3.84,08/10/19 23:25,"186 Jefferson St, San Francisco, CA 94016" +247774,Apple Airpods Headphones,1,150,08/31/19 12:49,"51 Dogwood St, Boston, MA 02215" +247775,AAA Batteries (4-pack),1,2.99,08/28/19 21:35,"993 West St, San Francisco, CA 94016" +247776,Lightning Charging Cable,1,14.95,08/13/19 16:02,"565 Church St, Portland, OR 97035" +247777,Bose SoundSport Headphones,1,99.99,08/03/19 18:19,"101 Meadow St, New York City, NY 10001" +247778,Lightning Charging Cable,1,14.95,08/12/19 13:25,"188 Willow St, New York City, NY 10001" +247779,Wired Headphones,1,11.99,08/25/19 18:51,"815 Washington St, New York City, NY 10001" +247780,AAA Batteries (4-pack),1,2.99,08/28/19 12:25,"990 Wilson St, Atlanta, GA 30301" +247781,Bose SoundSport Headphones,1,99.99,08/22/19 22:03,"7 Walnut St, Los Angeles, CA 90001" +247782,AA Batteries (4-pack),2,3.84,08/29/19 20:13,"289 4th St, Dallas, TX 75001" +247783,Flatscreen TV,1,300,08/13/19 16:56,"918 6th St, San Francisco, CA 94016" +247784,Apple Airpods Headphones,1,150,08/24/19 13:22,"419 7th St, Los Angeles, CA 90001" +247785,Bose SoundSport Headphones,1,99.99,08/30/19 13:20,"40 2nd St, New York City, NY 10001" +247786,AA Batteries (4-pack),1,3.84,08/22/19 21:37,"669 Pine St, Los Angeles, CA 90001" +247787,27in FHD Monitor,1,149.99,08/17/19 22:30,"21 8th St, Boston, MA 02215" +247788,Wired Headphones,1,11.99,08/13/19 19:18,"955 13th St, Dallas, TX 75001" +247789,Wired Headphones,1,11.99,08/04/19 14:28,"767 Jefferson St, New York City, NY 10001" +247790,Lightning Charging Cable,1,14.95,08/16/19 09:44,"471 Maple St, Seattle, WA 98101" +247791,AAA Batteries (4-pack),1,2.99,08/31/19 09:17,"955 13th St, Boston, MA 02215" +247792,Macbook Pro Laptop,1,1700,08/28/19 21:26,"874 4th St, New York City, NY 10001" +247793,Wired Headphones,1,11.99,08/14/19 00:51,"262 Chestnut St, San Francisco, CA 94016" +247794,Wired Headphones,1,11.99,08/28/19 16:43,"192 13th St, Boston, MA 02215" +247795,Bose SoundSport Headphones,1,99.99,08/28/19 10:41,"707 Dogwood St, San Francisco, CA 94016" +247796,AAA Batteries (4-pack),1,2.99,08/12/19 18:49,"822 Meadow St, San Francisco, CA 94016" +247797,AA Batteries (4-pack),2,3.84,08/06/19 21:14,"394 Cedar St, Los Angeles, CA 90001" +247798,20in Monitor,1,109.99,08/08/19 12:56,"456 Cherry St, Los Angeles, CA 90001" +247799,Flatscreen TV,1,300,08/04/19 11:47,"394 Park St, New York City, NY 10001" +247800,AAA Batteries (4-pack),1,2.99,08/17/19 09:54,"212 13th St, San Francisco, CA 94016" +247801,USB-C Charging Cable,1,11.95,08/11/19 00:48,"405 8th St, Portland, OR 97035" +247802,AA Batteries (4-pack),2,3.84,08/11/19 16:36,"157 Church St, Dallas, TX 75001" +247803,34in Ultrawide Monitor,1,379.99,08/13/19 18:09,"314 5th St, Los Angeles, CA 90001" +247804,AAA Batteries (4-pack),1,2.99,08/08/19 17:02,"426 Cherry St, Seattle, WA 98101" +247805,ThinkPad Laptop,1,999.99,08/23/19 14:05,"189 Main St, Atlanta, GA 30301" +247806,Lightning Charging Cable,1,14.95,08/27/19 12:11,"745 Center St, Portland, OR 97035" +247807,Lightning Charging Cable,1,14.95,08/17/19 09:53,"754 Sunset St, Austin, TX 73301" +247808,Wired Headphones,1,11.99,08/06/19 08:56,"881 Center St, San Francisco, CA 94016" +247809,USB-C Charging Cable,1,11.95,08/14/19 19:47,"278 Lake St, Los Angeles, CA 90001" +247810,AAA Batteries (4-pack),1,2.99,08/05/19 17:41,"24 Lincoln St, New York City, NY 10001" +247811,34in Ultrawide Monitor,1,379.99,08/04/19 05:18,"223 West St, Boston, MA 02215" +247812,Google Phone,1,600,08/22/19 22:52,"739 Jefferson St, Atlanta, GA 30301" +247813,AAA Batteries (4-pack),1,2.99,08/11/19 16:28,"606 10th St, San Francisco, CA 94016" +247814,AA Batteries (4-pack),1,3.84,08/10/19 11:41,"884 Johnson St, Boston, MA 02215" +247815,Bose SoundSport Headphones,1,99.99,08/08/19 10:51,"449 11th St, Austin, TX 73301" +247816,AA Batteries (4-pack),1,3.84,08/24/19 20:52,"566 13th St, San Francisco, CA 94016" +247817,Bose SoundSport Headphones,1,99.99,08/05/19 05:43,"217 North St, San Francisco, CA 94016" +247818,Vareebadd Phone,1,400,08/09/19 21:20,"869 Pine St, Boston, MA 02215" +247819,Macbook Pro Laptop,1,1700,08/21/19 17:38,"803 Meadow St, San Francisco, CA 94016" +247820,20in Monitor,1,109.99,08/18/19 13:47,"515 Elm St, New York City, NY 10001" +247821,Macbook Pro Laptop,1,1700,08/02/19 13:03,"911 River St, Boston, MA 02215" +247822,Wired Headphones,1,11.99,08/07/19 14:00,"987 9th St, Austin, TX 73301" +247823,34in Ultrawide Monitor,1,379.99,08/06/19 13:01,"794 Hickory St, New York City, NY 10001" +247824,Apple Airpods Headphones,1,150,08/11/19 08:52,"805 Meadow St, New York City, NY 10001" +247825,Bose SoundSport Headphones,1,99.99,08/14/19 23:34,"362 5th St, Dallas, TX 75001" +247826,Bose SoundSport Headphones,1,99.99,08/18/19 18:07,"129 Meadow St, Los Angeles, CA 90001" +247827,Bose SoundSport Headphones,1,99.99,08/13/19 09:16,"362 Forest St, Boston, MA 02215" +247828,Wired Headphones,1,11.99,08/04/19 18:46,"564 14th St, San Francisco, CA 94016" +247829,Wired Headphones,1,11.99,08/25/19 03:05,"877 South St, Boston, MA 02215" +247830,Bose SoundSport Headphones,1,99.99,08/21/19 11:23,"780 River St, Austin, TX 73301" +247831,USB-C Charging Cable,1,11.95,08/23/19 20:51,"760 Cedar St, Los Angeles, CA 90001" +247832,AA Batteries (4-pack),1,3.84,08/04/19 07:21,"784 5th St, San Francisco, CA 94016" +247833,Lightning Charging Cable,1,14.95,08/17/19 10:10,"873 14th St, Seattle, WA 98101" +247834,USB-C Charging Cable,1,11.95,08/04/19 09:34,"548 11th St, San Francisco, CA 94016" +247835,Lightning Charging Cable,1,14.95,08/26/19 09:13,"680 Madison St, San Francisco, CA 94016" +247836,Lightning Charging Cable,1,14.95,08/13/19 05:34,"473 Lincoln St, Portland, OR 97035" +247837,AAA Batteries (4-pack),1,2.99,08/23/19 21:55,"374 11th St, Portland, OR 97035" +247838,Lightning Charging Cable,1,14.95,08/30/19 13:37,"755 Meadow St, Seattle, WA 98101" +247839,Macbook Pro Laptop,1,1700,08/19/19 21:56,"382 Lake St, Los Angeles, CA 90001" +247840,AA Batteries (4-pack),2,3.84,08/04/19 23:51,"20 Forest St, San Francisco, CA 94016" +247841,AAA Batteries (4-pack),1,2.99,08/11/19 16:47,"641 Lakeview St, Dallas, TX 75001" +247842,AAA Batteries (4-pack),1,2.99,08/09/19 13:40,"177 Willow St, Austin, TX 73301" +247843,Vareebadd Phone,1,400,08/22/19 22:33,"311 West St, Atlanta, GA 30301" +247843,USB-C Charging Cable,1,11.95,08/22/19 22:33,"311 West St, Atlanta, GA 30301" +247844,iPhone,1,700,08/18/19 01:03,"337 5th St, Dallas, TX 75001" +247845,AAA Batteries (4-pack),1,2.99,08/31/19 19:21,"557 Main St, Atlanta, GA 30301" +247846,AA Batteries (4-pack),2,3.84,08/25/19 13:43,"317 North St, New York City, NY 10001" +247847,USB-C Charging Cable,1,11.95,08/19/19 19:43,"533 Hill St, San Francisco, CA 94016" +247848,Wired Headphones,1,11.99,08/28/19 08:23,"57 6th St, Seattle, WA 98101" +247849,Wired Headphones,1,11.99,08/22/19 11:53,"436 Pine St, Los Angeles, CA 90001" +247850,AA Batteries (4-pack),1,3.84,08/16/19 16:03,"22 8th St, San Francisco, CA 94016" +247851,Wired Headphones,1,11.99,08/21/19 10:45,"183 Sunset St, San Francisco, CA 94016" +247852,Google Phone,1,600,08/16/19 06:51,"606 1st St, Boston, MA 02215" +247853,27in FHD Monitor,1,149.99,08/05/19 21:27,"724 14th St, Atlanta, GA 30301" +247854,Lightning Charging Cable,1,14.95,08/19/19 10:56,"289 4th St, Austin, TX 73301" +247855,Wired Headphones,1,11.99,08/27/19 10:44,"450 Jefferson St, San Francisco, CA 94016" +247856,Lightning Charging Cable,1,14.95,08/29/19 16:44,"467 9th St, Seattle, WA 98101" +247857,USB-C Charging Cable,1,11.95,08/29/19 21:02,"832 6th St, Dallas, TX 75001" +247858,AA Batteries (4-pack),2,3.84,08/18/19 15:45,"191 4th St, New York City, NY 10001" +247859,Apple Airpods Headphones,1,150,08/01/19 05:47,"904 Jefferson St, San Francisco, CA 94016" +247860,Wired Headphones,1,11.99,08/01/19 10:57,"859 South St, San Francisco, CA 94016" +247860,Apple Airpods Headphones,1,150,08/01/19 10:57,"859 South St, San Francisco, CA 94016" +247861,iPhone,1,700,08/19/19 18:45,"157 Willow St, Atlanta, GA 30301" +247862,AAA Batteries (4-pack),1,2.99,08/08/19 19:45,"269 Jefferson St, Dallas, TX 75001" +247863,AAA Batteries (4-pack),1,2.99,08/20/19 21:08,"642 4th St, San Francisco, CA 94016" +247864,iPhone,1,700,08/03/19 10:42,"78 Willow St, Los Angeles, CA 90001" +247865,27in 4K Gaming Monitor,1,389.99,08/29/19 18:51,"420 Willow St, Boston, MA 02215" +247866,AAA Batteries (4-pack),2,2.99,08/19/19 13:01,"370 Cedar St, Boston, MA 02215" +247867,Wired Headphones,2,11.99,08/30/19 18:40,"283 Forest St, Dallas, TX 75001" +247868,Lightning Charging Cable,1,14.95,08/19/19 18:22,"787 13th St, Portland, OR 97035" +247869,USB-C Charging Cable,1,11.95,08/15/19 21:43,"504 Park St, San Francisco, CA 94016" +247870,AAA Batteries (4-pack),2,2.99,08/23/19 10:17,"545 Main St, Dallas, TX 75001" +247871,Lightning Charging Cable,1,14.95,08/11/19 23:05,"111 11th St, San Francisco, CA 94016" +247872,Lightning Charging Cable,1,14.95,08/29/19 12:58,"933 2nd St, Austin, TX 73301" +247873,AAA Batteries (4-pack),1,2.99,08/05/19 19:44,"174 Washington St, Boston, MA 02215" +247874,Apple Airpods Headphones,1,150,08/12/19 10:20,"958 Adams St, Los Angeles, CA 90001" +247875,Wired Headphones,1,11.99,08/05/19 20:04,"1 14th St, Los Angeles, CA 90001" +247876,Macbook Pro Laptop,1,1700,08/28/19 09:17,"149 6th St, Atlanta, GA 30301" +247877,Macbook Pro Laptop,1,1700,08/22/19 19:18,"591 Adams St, New York City, NY 10001" +247878,Bose SoundSport Headphones,1,99.99,08/06/19 01:02,"366 West St, Austin, TX 73301" +247879,AAA Batteries (4-pack),2,2.99,08/23/19 19:04,"105 Lakeview St, Los Angeles, CA 90001" +247880,Macbook Pro Laptop,1,1700,08/22/19 00:44,"764 North St, San Francisco, CA 94016" +247881,AA Batteries (4-pack),1,3.84,08/31/19 23:03,"147 Washington St, New York City, NY 10001" +247882,Apple Airpods Headphones,1,150,08/30/19 15:40,"922 Park St, Los Angeles, CA 90001" +247883,iPhone,1,700,08/27/19 06:02,"567 14th St, Seattle, WA 98101" +247884,AA Batteries (4-pack),3,3.84,08/16/19 08:06,"304 Main St, Atlanta, GA 30301" +247885,Bose SoundSport Headphones,1,99.99,08/09/19 10:42,"597 Walnut St, San Francisco, CA 94016" +247886,USB-C Charging Cable,1,11.95,08/30/19 11:34,"89 Hill St, Los Angeles, CA 90001" +247887,Apple Airpods Headphones,1,150,08/22/19 19:21,"943 Jackson St, San Francisco, CA 94016" +247888,Wired Headphones,2,11.99,08/04/19 16:04,"604 4th St, Atlanta, GA 30301" +247889,AAA Batteries (4-pack),2,2.99,08/16/19 08:34,"850 North St, Seattle, WA 98101" +247890,Bose SoundSport Headphones,1,99.99,08/27/19 23:49,"797 Maple St, Boston, MA 02215" +247891,Google Phone,1,600,08/30/19 11:15,"53 Meadow St, New York City, NY 10001" +247891,Wired Headphones,1,11.99,08/30/19 11:15,"53 Meadow St, New York City, NY 10001" +247892,Lightning Charging Cable,1,14.95,08/12/19 20:30,"515 14th St, San Francisco, CA 94016" +247893,AAA Batteries (4-pack),1,2.99,08/20/19 00:17,"269 West St, Atlanta, GA 30301" +247894,Macbook Pro Laptop,1,1700,08/01/19 22:18,"52 Washington St, Portland, OR 97035" +247895,27in FHD Monitor,1,149.99,08/12/19 17:26,"675 Washington St, San Francisco, CA 94016" +247896,Bose SoundSport Headphones,1,99.99,08/04/19 08:41,"472 Lake St, San Francisco, CA 94016" +247897,Apple Airpods Headphones,1,150,08/10/19 12:00,"531 Elm St, San Francisco, CA 94016" +247898,Macbook Pro Laptop,1,1700,08/10/19 00:48,"412 1st St, New York City, NY 10001" +247899,27in FHD Monitor,1,149.99,08/20/19 23:12,"405 Ridge St, Seattle, WA 98101" +247900,Lightning Charging Cable,1,14.95,08/26/19 21:23,"930 Forest St, San Francisco, CA 94016" +247901,USB-C Charging Cable,1,11.95,08/09/19 22:55,"472 Lakeview St, San Francisco, CA 94016" +247902,AAA Batteries (4-pack),1,2.99,08/15/19 12:58,"761 River St, New York City, NY 10001" +247903,USB-C Charging Cable,1,11.95,08/31/19 09:29,"173 South St, Los Angeles, CA 90001" +247904,Apple Airpods Headphones,1,150,08/25/19 14:42,"291 11th St, San Francisco, CA 94016" +247905,20in Monitor,1,109.99,08/05/19 01:44,"95 Jackson St, San Francisco, CA 94016" +247906,AA Batteries (4-pack),1,3.84,08/15/19 09:17,"605 Main St, Los Angeles, CA 90001" +247907,Lightning Charging Cable,1,14.95,08/04/19 11:17,"678 Jackson St, Seattle, WA 98101" +247908,Lightning Charging Cable,1,14.95,08/04/19 21:25,"418 Sunset St, San Francisco, CA 94016" +247909,USB-C Charging Cable,1,11.95,08/15/19 21:53,"836 Highland St, Los Angeles, CA 90001" +247910,Bose SoundSport Headphones,1,99.99,08/11/19 15:34,"982 Hill St, Portland, OR 97035" +247911,Google Phone,1,600,08/12/19 13:03,"189 South St, Seattle, WA 98101" +247911,Wired Headphones,1,11.99,08/12/19 13:03,"189 South St, Seattle, WA 98101" +247912,AAA Batteries (4-pack),1,2.99,08/09/19 18:35,"963 Wilson St, Los Angeles, CA 90001" +247913,AA Batteries (4-pack),2,3.84,08/12/19 19:35,"180 1st St, Boston, MA 02215" +247914,Bose SoundSport Headphones,1,99.99,08/06/19 20:01,"455 Forest St, San Francisco, CA 94016" +247915,Wired Headphones,1,11.99,08/30/19 18:01,"781 Washington St, San Francisco, CA 94016" +247915,USB-C Charging Cable,1,11.95,08/30/19 18:01,"781 Washington St, San Francisco, CA 94016" +247916,ThinkPad Laptop,1,999.99,08/02/19 11:08,"327 Jefferson St, Atlanta, GA 30301" +247917,Lightning Charging Cable,1,14.95,08/26/19 22:14,"206 Jackson St, San Francisco, CA 94016" +247918,Google Phone,1,600,08/16/19 11:13,"164 Lake St, San Francisco, CA 94016" +247919,iPhone,1,700,08/18/19 12:23,"894 13th St, Dallas, TX 75001" +247920,AA Batteries (4-pack),1,3.84,08/18/19 15:11,"255 Lakeview St, San Francisco, CA 94016" +247921,USB-C Charging Cable,1,11.95,08/06/19 10:07,"86 Johnson St, San Francisco, CA 94016" +247922,iPhone,1,700,08/23/19 18:54,"766 Hill St, Seattle, WA 98101" +247923,AAA Batteries (4-pack),1,2.99,08/24/19 08:53,"235 Spruce St, San Francisco, CA 94016" +247924,AA Batteries (4-pack),1,3.84,08/04/19 21:59,"194 9th St, Seattle, WA 98101" +247925,AA Batteries (4-pack),1,3.84,08/05/19 16:58,"318 South St, New York City, NY 10001" +247926,AA Batteries (4-pack),2,3.84,08/22/19 20:50,"662 Spruce St, Dallas, TX 75001" +247927,Bose SoundSport Headphones,1,99.99,08/21/19 13:02,"195 Meadow St, Boston, MA 02215" +247928,ThinkPad Laptop,1,999.99,08/01/19 17:11,"280 8th St, New York City, NY 10001" +247929,Flatscreen TV,1,300,08/11/19 11:59,"790 Forest St, Los Angeles, CA 90001" +247930,20in Monitor,1,109.99,08/20/19 10:54,"199 Washington St, Boston, MA 02215" +247931,Bose SoundSport Headphones,1,99.99,08/07/19 12:19,"444 Willow St, Boston, MA 02215" +247931,iPhone,1,700,08/07/19 12:19,"444 Willow St, Boston, MA 02215" +247932,Wired Headphones,1,11.99,08/15/19 10:04,"465 Spruce St, Los Angeles, CA 90001" +247933,Lightning Charging Cable,1,14.95,08/15/19 20:54,"155 1st St, Boston, MA 02215" +247934,27in FHD Monitor,1,149.99,08/30/19 20:02,"16 South St, San Francisco, CA 94016" +247935,Apple Airpods Headphones,1,150,08/25/19 15:37,"76 Center St, San Francisco, CA 94016" +247936,20in Monitor,1,109.99,08/23/19 14:16,"842 Willow St, San Francisco, CA 94016" +247937,USB-C Charging Cable,1,11.95,08/27/19 16:35,"990 Pine St, San Francisco, CA 94016" +247938,iPhone,1,700,08/04/19 09:50,"411 Lakeview St, Austin, TX 73301" +247939,Wired Headphones,1,11.99,08/24/19 15:27,"883 5th St, Atlanta, GA 30301" +247940,Flatscreen TV,1,300,08/16/19 17:41,"554 5th St, San Francisco, CA 94016" +247940,Apple Airpods Headphones,1,150,08/16/19 17:41,"554 5th St, San Francisco, CA 94016" +247941,27in 4K Gaming Monitor,1,389.99,08/18/19 14:58,"437 1st St, Austin, TX 73301" +247942,USB-C Charging Cable,2,11.95,08/13/19 12:06,"860 Forest St, San Francisco, CA 94016" +247943,27in 4K Gaming Monitor,1,389.99,08/31/19 09:07,"716 Johnson St, New York City, NY 10001" +247944,AA Batteries (4-pack),1,3.84,08/02/19 23:52,"941 10th St, New York City, NY 10001" +247945,USB-C Charging Cable,1,11.95,08/18/19 14:30,"579 Chestnut St, Dallas, TX 75001" +247946,USB-C Charging Cable,1,11.95,08/04/19 16:51,"202 Center St, New York City, NY 10001" +247947,Lightning Charging Cable,1,14.95,08/20/19 12:05,"656 Madison St, San Francisco, CA 94016" +247948,Google Phone,1,600,08/20/19 20:14,"275 Pine St, Atlanta, GA 30301" +247948,USB-C Charging Cable,1,11.95,08/20/19 20:14,"275 Pine St, Atlanta, GA 30301" +247949,USB-C Charging Cable,1,11.95,08/03/19 15:46,"124 Forest St, San Francisco, CA 94016" +247950,Lightning Charging Cable,1,14.95,08/13/19 19:52,"619 8th St, New York City, NY 10001" +247951,Lightning Charging Cable,1,14.95,08/24/19 17:33,"626 Jefferson St, Boston, MA 02215" +247952,AAA Batteries (4-pack),1,2.99,08/18/19 21:12,"993 North St, San Francisco, CA 94016" +247953,Apple Airpods Headphones,1,150,08/12/19 22:31,"694 Adams St, Dallas, TX 75001" +247954,27in FHD Monitor,1,149.99,08/11/19 10:40,"805 Meadow St, Los Angeles, CA 90001" +247955,27in 4K Gaming Monitor,1,389.99,08/31/19 13:24,"441 8th St, New York City, NY 10001" +247956,Flatscreen TV,1,300,08/02/19 10:20,"186 Cherry St, Atlanta, GA 30301" +247957,AAA Batteries (4-pack),1,2.99,08/30/19 17:31,"517 5th St, Los Angeles, CA 90001" +247958,AAA Batteries (4-pack),1,2.99,08/30/19 22:42,"233 Jackson St, San Francisco, CA 94016" +247959,Bose SoundSport Headphones,1,99.99,08/11/19 14:09,"457 Washington St, Los Angeles, CA 90001" +247960,AAA Batteries (4-pack),1,2.99,08/01/19 22:56,"50 Jackson St, Boston, MA 02215" +247961,Lightning Charging Cable,1,14.95,08/30/19 08:43,"271 Lake St, New York City, NY 10001" +247962,AA Batteries (4-pack),1,3.84,08/06/19 10:16,"348 Walnut St, San Francisco, CA 94016" +247963,20in Monitor,1,109.99,08/04/19 07:58,"995 Dogwood St, New York City, NY 10001" +247964,USB-C Charging Cable,1,11.95,08/19/19 22:35,"754 Cedar St, San Francisco, CA 94016" +247965,iPhone,1,700,08/02/19 13:04,"885 14th St, Los Angeles, CA 90001" +247966,USB-C Charging Cable,1,11.95,08/16/19 12:26,"846 Lake St, San Francisco, CA 94016" +247967,Apple Airpods Headphones,1,150,08/19/19 08:28,"437 Park St, Los Angeles, CA 90001" +247968,Google Phone,1,600,08/26/19 22:42,"861 North St, San Francisco, CA 94016" +247969,20in Monitor,1,109.99,08/06/19 18:42,"176 Madison St, Boston, MA 02215" +247970,Lightning Charging Cable,1,14.95,08/27/19 12:53,"46 Main St, New York City, NY 10001" +247971,Apple Airpods Headphones,1,150,08/17/19 16:32,"479 Hill St, Austin, TX 73301" +247972,Apple Airpods Headphones,1,150,08/13/19 22:02,"901 13th St, New York City, NY 10001" +247973,Apple Airpods Headphones,1,150,08/28/19 13:27,"566 7th St, Dallas, TX 75001" +247974,20in Monitor,2,109.99,08/08/19 12:20,"312 Walnut St, Atlanta, GA 30301" +247975,Apple Airpods Headphones,1,150,08/17/19 22:55,"560 Pine St, Los Angeles, CA 90001" +247976,Lightning Charging Cable,1,14.95,08/21/19 09:49,"822 1st St, Boston, MA 02215" +247977,USB-C Charging Cable,1,11.95,08/28/19 12:27,"309 Dogwood St, San Francisco, CA 94016" +247978,Lightning Charging Cable,2,14.95,08/19/19 19:51,"607 Johnson St, Seattle, WA 98101" +247979,27in 4K Gaming Monitor,1,389.99,08/26/19 14:44,"684 8th St, Portland, ME 04101" +247980,20in Monitor,1,109.99,08/24/19 10:29,"570 Lakeview St, Seattle, WA 98101" +247981,AAA Batteries (4-pack),1,2.99,08/05/19 14:06,"182 North St, Los Angeles, CA 90001" +247982,Wired Headphones,1,11.99,08/16/19 11:20,"890 Dogwood St, Boston, MA 02215" +247983,27in FHD Monitor,1,149.99,08/15/19 11:51,"972 Church St, San Francisco, CA 94016" +247984,Wired Headphones,1,11.99,08/26/19 14:58,"866 Wilson St, Atlanta, GA 30301" +247985,Apple Airpods Headphones,1,150,08/07/19 12:48,"174 West St, Los Angeles, CA 90001" +247986,Wired Headphones,1,11.99,08/06/19 21:42,"555 North St, New York City, NY 10001" +247987,Lightning Charging Cable,1,14.95,08/02/19 21:56,"128 11th St, New York City, NY 10001" +247988,AA Batteries (4-pack),3,3.84,08/03/19 09:57,"789 5th St, Austin, TX 73301" +247989,Apple Airpods Headphones,1,150,08/10/19 14:27,"331 Lincoln St, Boston, MA 02215" +247990,iPhone,1,700,08/17/19 14:42,"325 Willow St, San Francisco, CA 94016" +247991,Bose SoundSport Headphones,1,99.99,08/28/19 10:41,"132 Lincoln St, Boston, MA 02215" +247992,Google Phone,1,600,08/09/19 17:28,"788 Adams St, San Francisco, CA 94016" +247993,AAA Batteries (4-pack),1,2.99,08/10/19 19:22,"889 8th St, San Francisco, CA 94016" +247994,Lightning Charging Cable,1,14.95,08/25/19 19:17,"304 Church St, Seattle, WA 98101" +247995,Wired Headphones,1,11.99,08/26/19 16:37,"283 Cedar St, Portland, OR 97035" +247996,AA Batteries (4-pack),1,3.84,08/02/19 14:41,"943 Washington St, Boston, MA 02215" +247997,Bose SoundSport Headphones,1,99.99,08/03/19 07:31,"33 2nd St, New York City, NY 10001" +247998,ThinkPad Laptop,1,999.99,08/23/19 12:34,"289 Lake St, Los Angeles, CA 90001" +247999,iPhone,1,700,08/30/19 13:16,"610 North St, San Francisco, CA 94016" +248000,Bose SoundSport Headphones,1,99.99,08/26/19 08:44,"115 Jefferson St, Boston, MA 02215" +248001,USB-C Charging Cable,1,11.95,08/07/19 19:55,"818 Elm St, Atlanta, GA 30301" +248002,AA Batteries (4-pack),1,3.84,08/27/19 15:18,"260 Jackson St, Los Angeles, CA 90001" +248003,Wired Headphones,1,11.99,08/22/19 10:44,"964 West St, Portland, OR 97035" +248004,Wired Headphones,1,11.99,08/26/19 12:38,"647 Center St, Los Angeles, CA 90001" +248005,Apple Airpods Headphones,1,150,08/31/19 20:44,"462 6th St, Boston, MA 02215" +248006,USB-C Charging Cable,1,11.95,08/24/19 22:43,"593 Center St, New York City, NY 10001" +248007,AAA Batteries (4-pack),2,2.99,08/06/19 21:27,"775 Park St, New York City, NY 10001" +248008,USB-C Charging Cable,1,11.95,08/13/19 12:28,"252 Jackson St, New York City, NY 10001" +248009,AA Batteries (4-pack),1,3.84,08/12/19 09:22,"771 Hill St, San Francisco, CA 94016" +248010,Bose SoundSport Headphones,1,99.99,08/21/19 22:32,"317 Madison St, Portland, OR 97035" +248011,AAA Batteries (4-pack),1,2.99,08/01/19 21:34,"13 West St, San Francisco, CA 94016" +248012,Macbook Pro Laptop,1,1700,08/04/19 12:11,"588 Walnut St, New York City, NY 10001" +248013,AA Batteries (4-pack),2,3.84,08/08/19 19:37,"6 Washington St, Seattle, WA 98101" +248014,iPhone,1,700,08/19/19 12:25,"118 Jefferson St, San Francisco, CA 94016" +248015,27in 4K Gaming Monitor,1,389.99,08/22/19 12:02,"243 Dogwood St, Atlanta, GA 30301" +248016,34in Ultrawide Monitor,1,379.99,08/10/19 16:41,"709 Pine St, Austin, TX 73301" +248017,AAA Batteries (4-pack),1,2.99,08/04/19 04:59,"321 North St, Los Angeles, CA 90001" +248018,27in 4K Gaming Monitor,1,389.99,08/20/19 21:53,"429 Park St, Los Angeles, CA 90001" +248019,Bose SoundSport Headphones,1,99.99,08/03/19 10:24,"591 Forest St, San Francisco, CA 94016" +248020,iPhone,1,700,08/08/19 11:35,"676 Madison St, New York City, NY 10001" +248020,Apple Airpods Headphones,1,150,08/08/19 11:35,"676 Madison St, New York City, NY 10001" +248021,Macbook Pro Laptop,1,1700,08/27/19 08:33,"549 Lake St, San Francisco, CA 94016" +248021,Wired Headphones,1,11.99,08/27/19 08:33,"549 Lake St, San Francisco, CA 94016" +248022,USB-C Charging Cable,1,11.95,08/28/19 15:56,"875 Walnut St, San Francisco, CA 94016" +248023,AA Batteries (4-pack),1,3.84,08/27/19 11:55,"530 4th St, San Francisco, CA 94016" +248024,Bose SoundSport Headphones,1,99.99,08/23/19 13:12,"568 14th St, Atlanta, GA 30301" +248025,Apple Airpods Headphones,1,150,08/28/19 07:50,"46 North St, New York City, NY 10001" +248026,Wired Headphones,1,11.99,08/23/19 19:11,"789 Park St, Boston, MA 02215" +248027,iPhone,1,700,08/08/19 18:13,"569 Main St, New York City, NY 10001" +248027,Wired Headphones,1,11.99,08/08/19 18:13,"569 Main St, New York City, NY 10001" +248028,Apple Airpods Headphones,1,150,08/14/19 20:53,"842 North St, New York City, NY 10001" +248029,Bose SoundSport Headphones,1,99.99,08/19/19 15:09,"518 7th St, New York City, NY 10001" +248030,20in Monitor,1,109.99,08/25/19 23:04,"423 5th St, Dallas, TX 75001" +248031,Lightning Charging Cable,1,14.95,08/31/19 08:31,"802 6th St, Boston, MA 02215" +248032,Flatscreen TV,1,300,08/30/19 15:41,"717 8th St, Los Angeles, CA 90001" +248033,AAA Batteries (4-pack),3,2.99,08/10/19 14:59,"972 1st St, Seattle, WA 98101" +248034,Apple Airpods Headphones,1,150,08/11/19 20:18,"322 Dogwood St, Dallas, TX 75001" +248035,Macbook Pro Laptop,1,1700,08/03/19 23:21,"145 Elm St, New York City, NY 10001" +248036,ThinkPad Laptop,1,999.99,08/22/19 12:08,"82 Spruce St, Atlanta, GA 30301" +248037,Wired Headphones,1,11.99,08/12/19 14:39,"553 Maple St, New York City, NY 10001" +248038,27in FHD Monitor,1,149.99,08/24/19 12:34,"537 Jefferson St, Dallas, TX 75001" +248039,AA Batteries (4-pack),1,3.84,08/01/19 17:29,"42 Adams St, New York City, NY 10001" +248040,AA Batteries (4-pack),3,3.84,08/16/19 12:10,"796 Spruce St, San Francisco, CA 94016" +248041,ThinkPad Laptop,1,999.99,08/25/19 20:47,"188 Maple St, Boston, MA 02215" +248042,Wired Headphones,1,11.99,08/08/19 15:50,"350 Willow St, Dallas, TX 75001" +248043,AA Batteries (4-pack),1,3.84,08/27/19 17:23,"803 1st St, Atlanta, GA 30301" +248044,Bose SoundSport Headphones,1,99.99,08/26/19 17:43,"410 4th St, Boston, MA 02215" +248045,USB-C Charging Cable,1,11.95,08/01/19 11:36,"988 5th St, Los Angeles, CA 90001" +248046,Wired Headphones,1,11.99,08/17/19 17:34,"958 4th St, San Francisco, CA 94016" +248047,34in Ultrawide Monitor,1,379.99,08/20/19 13:03,"531 Sunset St, Dallas, TX 75001" +248048,Wired Headphones,1,11.99,08/26/19 10:47,"879 Jefferson St, Seattle, WA 98101" +248049,AA Batteries (4-pack),1,3.84,08/29/19 21:40,"637 Adams St, Boston, MA 02215" +248050,AAA Batteries (4-pack),1,2.99,08/14/19 13:21,"991 Highland St, Austin, TX 73301" +248051,Google Phone,1,600,08/23/19 14:45,"851 Highland St, Atlanta, GA 30301" +248052,Apple Airpods Headphones,1,150,08/31/19 22:07,"70 Lincoln St, Atlanta, GA 30301" +248053,AA Batteries (4-pack),1,3.84,08/17/19 18:13,"999 West St, New York City, NY 10001" +248054,AA Batteries (4-pack),1,3.84,08/15/19 10:51,"887 Sunset St, San Francisco, CA 94016" +248055,Wired Headphones,1,11.99,08/18/19 14:39,"290 Center St, Boston, MA 02215" +248056,Lightning Charging Cable,1,14.95,08/18/19 11:22,"120 Lake St, San Francisco, CA 94016" +248056,USB-C Charging Cable,1,11.95,08/18/19 11:22,"120 Lake St, San Francisco, CA 94016" +248057,USB-C Charging Cable,1,11.95,08/23/19 18:28,"934 Hill St, San Francisco, CA 94016" +248058,Bose SoundSport Headphones,1,99.99,08/04/19 18:59,"826 Ridge St, Dallas, TX 75001" +248059,27in 4K Gaming Monitor,1,389.99,08/23/19 12:28,"313 10th St, Seattle, WA 98101" +248060,Wired Headphones,1,11.99,08/08/19 12:45,"369 Wilson St, San Francisco, CA 94016" +248061,AAA Batteries (4-pack),1,2.99,08/11/19 11:01,"822 Adams St, Los Angeles, CA 90001" +248062,AAA Batteries (4-pack),1,2.99,08/25/19 21:07,"861 10th St, Atlanta, GA 30301" +248063,AAA Batteries (4-pack),1,2.99,08/10/19 20:26,"732 Willow St, San Francisco, CA 94016" +248064,AAA Batteries (4-pack),1,2.99,08/20/19 16:16,"802 13th St, Seattle, WA 98101" +248065,34in Ultrawide Monitor,1,379.99,08/05/19 17:47,"981 9th St, San Francisco, CA 94016" +248066,Wired Headphones,1,11.99,08/22/19 19:25,"94 5th St, New York City, NY 10001" +248067,USB-C Charging Cable,1,11.95,08/10/19 16:43,"701 Madison St, Boston, MA 02215" +248068,AA Batteries (4-pack),2,3.84,08/15/19 21:39,"5 Main St, Portland, OR 97035" +248069,Wired Headphones,1,11.99,08/16/19 19:21,"918 12th St, Austin, TX 73301" +248070,20in Monitor,1,109.99,08/13/19 00:44,"687 9th St, Los Angeles, CA 90001" +248071,AAA Batteries (4-pack),1,2.99,08/11/19 18:19,"139 Jackson St, Atlanta, GA 30301" +248072,Wired Headphones,1,11.99,08/11/19 20:33,"12 Main St, Dallas, TX 75001" +248073,Lightning Charging Cable,1,14.95,08/20/19 14:30,"523 2nd St, Dallas, TX 75001" +248074,27in 4K Gaming Monitor,1,389.99,08/14/19 19:52,"424 11th St, Seattle, WA 98101" +248075,Google Phone,1,600,08/04/19 11:55,"863 5th St, Los Angeles, CA 90001" +248075,USB-C Charging Cable,1,11.95,08/04/19 11:55,"863 5th St, Los Angeles, CA 90001" +248076,Bose SoundSport Headphones,1,99.99,08/07/19 12:53,"291 Ridge St, San Francisco, CA 94016" +248077,27in 4K Gaming Monitor,1,389.99,08/28/19 14:55,"934 Forest St, San Francisco, CA 94016" +248078,USB-C Charging Cable,1,11.95,08/17/19 03:53,"718 12th St, Boston, MA 02215" +248079,AA Batteries (4-pack),1,3.84,08/10/19 10:34,"919 Spruce St, San Francisco, CA 94016" +248080,Apple Airpods Headphones,1,150,08/11/19 09:09,"522 Park St, Boston, MA 02215" +248081,Wired Headphones,1,11.99,08/04/19 13:20,"182 North St, New York City, NY 10001" +248082,Wired Headphones,1,11.99,08/21/19 18:21,"590 Cedar St, San Francisco, CA 94016" +248083,Wired Headphones,1,11.99,08/21/19 11:55,"935 South St, Austin, TX 73301" +248084,AA Batteries (4-pack),1,3.84,08/06/19 06:55,"10 13th St, Los Angeles, CA 90001" +248085,27in FHD Monitor,1,149.99,08/06/19 15:30,"13 South St, San Francisco, CA 94016" +248086,20in Monitor,1,109.99,08/17/19 10:53,"330 Washington St, Seattle, WA 98101" +248087,USB-C Charging Cable,1,11.95,08/01/19 22:31,"695 4th St, Los Angeles, CA 90001" +248088,Lightning Charging Cable,1,14.95,08/13/19 20:40,"731 14th St, Seattle, WA 98101" +248089,iPhone,1,700,08/07/19 16:33,"147 13th St, Los Angeles, CA 90001" +248090,Apple Airpods Headphones,1,150,08/09/19 18:09,"265 Jackson St, San Francisco, CA 94016" +248091,20in Monitor,1,109.99,08/24/19 23:37,"782 Lincoln St, New York City, NY 10001" +248092,27in FHD Monitor,1,149.99,08/24/19 01:13,"690 North St, Seattle, WA 98101" +248093,Lightning Charging Cable,1,14.95,08/28/19 10:25,"176 Hickory St, San Francisco, CA 94016" +248094,Google Phone,1,600,08/25/19 11:08,"893 Lincoln St, Boston, MA 02215" +248095,Bose SoundSport Headphones,1,99.99,08/19/19 13:34,"540 Chestnut St, San Francisco, CA 94016" +248096,AAA Batteries (4-pack),1,2.99,08/20/19 11:27,"136 Forest St, New York City, NY 10001" +248097,Apple Airpods Headphones,1,150,08/13/19 19:07,"904 Jefferson St, Portland, OR 97035" +248098,Apple Airpods Headphones,1,150,08/01/19 18:44,"530 Johnson St, San Francisco, CA 94016" +248099,AAA Batteries (4-pack),1,2.99,08/24/19 17:50,"739 1st St, Los Angeles, CA 90001" +248100,Wired Headphones,1,11.99,08/01/19 09:18,"693 West St, Los Angeles, CA 90001" +248101,Wired Headphones,1,11.99,08/26/19 17:47,"831 Jackson St, Portland, ME 04101" +248102,AA Batteries (4-pack),5,3.84,08/21/19 17:57,"823 Hickory St, Seattle, WA 98101" +248103,USB-C Charging Cable,1,11.95,08/05/19 14:06,"254 14th St, Dallas, TX 75001" +248104,AAA Batteries (4-pack),3,2.99,08/09/19 20:53,"345 Madison St, New York City, NY 10001" +248105,AA Batteries (4-pack),1,3.84,08/15/19 17:38,"328 Adams St, Dallas, TX 75001" +248106,ThinkPad Laptop,1,999.99,08/24/19 17:24,"610 Main St, San Francisco, CA 94016" +248107,AA Batteries (4-pack),1,3.84,08/02/19 10:50,"173 5th St, New York City, NY 10001" +248108,AA Batteries (4-pack),1,3.84,08/12/19 21:39,"520 11th St, Boston, MA 02215" +248109,AAA Batteries (4-pack),1,2.99,08/11/19 20:49,"337 12th St, Austin, TX 73301" +248110,Wired Headphones,1,11.99,08/17/19 22:36,"141 12th St, Dallas, TX 75001" +248111,Bose SoundSport Headphones,1,99.99,08/17/19 08:02,"979 Lakeview St, New York City, NY 10001" +248112,Lightning Charging Cable,1,14.95,08/21/19 13:00,"144 Forest St, Boston, MA 02215" +248113,AA Batteries (4-pack),1,3.84,08/31/19 14:08,"367 4th St, San Francisco, CA 94016" +248114,Bose SoundSport Headphones,1,99.99,08/21/19 19:11,"82 Spruce St, Seattle, WA 98101" +248115,Wired Headphones,1,11.99,08/20/19 10:10,"181 Highland St, New York City, NY 10001" +248116,AAA Batteries (4-pack),1,2.99,08/16/19 18:48,"508 Johnson St, New York City, NY 10001" +248117,AA Batteries (4-pack),1,3.84,08/15/19 20:25,"743 Meadow St, San Francisco, CA 94016" +248118,ThinkPad Laptop,1,999.99,08/15/19 19:17,"230 Forest St, Los Angeles, CA 90001" +248119,Wired Headphones,1,11.99,08/23/19 16:35,"520 Lincoln St, San Francisco, CA 94016" +248120,Apple Airpods Headphones,1,150,08/06/19 11:18,"447 2nd St, Dallas, TX 75001" +248121,27in FHD Monitor,1,149.99,08/04/19 21:18,"997 North St, Los Angeles, CA 90001" +248122,iPhone,1,700,08/11/19 13:33,"563 Cedar St, Los Angeles, CA 90001" +248122,Apple Airpods Headphones,1,150,08/11/19 13:33,"563 Cedar St, Los Angeles, CA 90001" +248123,USB-C Charging Cable,1,11.95,08/26/19 23:17,"934 Cherry St, San Francisco, CA 94016" +248124,Lightning Charging Cable,1,14.95,08/24/19 12:10,"370 Park St, Atlanta, GA 30301" +248125,USB-C Charging Cable,1,11.95,08/28/19 16:53,"546 Cherry St, San Francisco, CA 94016" +248126,AA Batteries (4-pack),1,3.84,08/05/19 19:27,"750 Maple St, San Francisco, CA 94016" +248127,34in Ultrawide Monitor,1,379.99,08/21/19 13:28,"888 Walnut St, Boston, MA 02215" +248128,20in Monitor,1,109.99,08/03/19 16:15,"5 Hill St, Los Angeles, CA 90001" +248129,20in Monitor,1,109.99,08/05/19 15:56,"189 Meadow St, Dallas, TX 75001" +248130,20in Monitor,1,109.99,08/10/19 17:02,"548 Meadow St, Dallas, TX 75001" +248131,Lightning Charging Cable,1,14.95,08/21/19 07:41,"376 Lincoln St, Atlanta, GA 30301" +,,,,, +248132,AAA Batteries (4-pack),2,2.99,08/10/19 07:48,"708 Hickory St, Boston, MA 02215" +248133,USB-C Charging Cable,1,11.95,08/12/19 14:06,"386 Madison St, Dallas, TX 75001" +248134,ThinkPad Laptop,1,999.99,08/03/19 12:56,"691 Chestnut St, San Francisco, CA 94016" +248135,USB-C Charging Cable,1,11.95,08/30/19 20:12,"271 Adams St, San Francisco, CA 94016" +248136,Lightning Charging Cable,1,14.95,08/28/19 17:44,"164 12th St, Dallas, TX 75001" +248137,Wired Headphones,1,11.99,08/27/19 13:20,"729 Hill St, Boston, MA 02215" +248138,AA Batteries (4-pack),1,3.84,08/14/19 20:38,"199 5th St, Atlanta, GA 30301" +248139,Apple Airpods Headphones,1,150,08/19/19 22:59,"311 7th St, Portland, OR 97035" +248140,AAA Batteries (4-pack),1,2.99,08/17/19 12:51,"318 11th St, New York City, NY 10001" +248141,Apple Airpods Headphones,1,150,08/13/19 11:21,"50 North St, Seattle, WA 98101" +248142,AA Batteries (4-pack),1,3.84,08/23/19 09:53,"827 Center St, Portland, OR 97035" +248143,LG Dryer,1,600.0,08/25/19 14:24,"995 Wilson St, Seattle, WA 98101" +248144,AA Batteries (4-pack),2,3.84,08/06/19 10:17,"877 Jefferson St, Los Angeles, CA 90001" +248145,34in Ultrawide Monitor,1,379.99,08/20/19 09:48,"899 Dogwood St, San Francisco, CA 94016" +248146,Flatscreen TV,1,300,08/24/19 21:38,"802 Hickory St, Los Angeles, CA 90001" +248147,iPhone,1,700,08/17/19 21:28,"57 Hickory St, Boston, MA 02215" +248147,Lightning Charging Cable,1,14.95,08/17/19 21:28,"57 Hickory St, Boston, MA 02215" +248148,27in FHD Monitor,1,149.99,08/13/19 12:17,"40 Jefferson St, Boston, MA 02215" +248149,Lightning Charging Cable,1,14.95,08/21/19 17:29,"424 Madison St, Boston, MA 02215" +248150,Lightning Charging Cable,2,14.95,08/16/19 11:33,"536 North St, Portland, OR 97035" +248151,AAA Batteries (4-pack),1,2.99,08/17/19 11:01,"779 10th St, New York City, NY 10001" +248152,Bose SoundSport Headphones,1,99.99,08/30/19 22:45,"428 Johnson St, San Francisco, CA 94016" +248153,AA Batteries (4-pack),1,3.84,08/01/19 11:38,"344 2nd St, Los Angeles, CA 90001" +248154,20in Monitor,1,109.99,08/17/19 16:53,"495 Lincoln St, New York City, NY 10001" +248155,Wired Headphones,1,11.99,08/23/19 12:19,"606 Lake St, Los Angeles, CA 90001" +248156,Wired Headphones,1,11.99,08/20/19 18:57,"608 11th St, San Francisco, CA 94016" +248157,Bose SoundSport Headphones,1,99.99,08/20/19 23:04,"141 Main St, Seattle, WA 98101" +248158,Wired Headphones,1,11.99,08/15/19 14:39,"900 Lakeview St, Los Angeles, CA 90001" +248159,AAA Batteries (4-pack),3,2.99,08/06/19 14:16,"223 Hill St, San Francisco, CA 94016" +248160,Apple Airpods Headphones,1,150,08/24/19 10:18,"815 Lincoln St, New York City, NY 10001" +248161,Wired Headphones,4,11.99,08/08/19 23:25,"968 Wilson St, Dallas, TX 75001" +248162,AAA Batteries (4-pack),2,2.99,08/21/19 13:11,"613 Chestnut St, San Francisco, CA 94016" +248163,Lightning Charging Cable,1,14.95,08/01/19 19:09,"453 Pine St, New York City, NY 10001" +248164,iPhone,1,700,08/31/19 08:16,"276 Ridge St, Los Angeles, CA 90001" +248165,iPhone,1,700,08/16/19 14:44,"269 Church St, Boston, MA 02215" +248165,Lightning Charging Cable,1,14.95,08/16/19 14:44,"269 Church St, Boston, MA 02215" +248166,AAA Batteries (4-pack),2,2.99,08/26/19 14:36,"858 Highland St, Atlanta, GA 30301" +248167,27in FHD Monitor,1,149.99,08/14/19 00:26,"654 Sunset St, Dallas, TX 75001" +248168,Google Phone,1,600,08/28/19 19:30,"373 River St, San Francisco, CA 94016" +248169,AA Batteries (4-pack),1,3.84,08/11/19 20:54,"213 Adams St, Los Angeles, CA 90001" +248170,27in FHD Monitor,1,149.99,08/30/19 14:28,"646 Center St, San Francisco, CA 94016" +248171,AAA Batteries (4-pack),1,2.99,08/11/19 00:22,"679 Maple St, Boston, MA 02215" +248172,AA Batteries (4-pack),1,3.84,08/21/19 12:18,"604 6th St, Los Angeles, CA 90001" +248173,USB-C Charging Cable,1,11.95,08/28/19 18:20,"45 Park St, Portland, OR 97035" +248174,Lightning Charging Cable,1,14.95,08/23/19 15:01,"316 1st St, San Francisco, CA 94016" +248175,USB-C Charging Cable,1,11.95,08/01/19 15:12,"341 Park St, Boston, MA 02215" +248176,USB-C Charging Cable,1,11.95,08/18/19 16:33,"12 Elm St, San Francisco, CA 94016" +248177,Apple Airpods Headphones,1,150,08/23/19 21:15,"505 Hill St, San Francisco, CA 94016" +248178,AAA Batteries (4-pack),3,2.99,08/29/19 15:20,"415 Meadow St, New York City, NY 10001" +248179,Apple Airpods Headphones,1,150,08/22/19 11:06,"92 Madison St, Austin, TX 73301" +248180,34in Ultrawide Monitor,1,379.99,08/27/19 16:48,"200 Lake St, Atlanta, GA 30301" +248181,USB-C Charging Cable,1,11.95,08/16/19 18:14,"456 13th St, Atlanta, GA 30301" +248182,ThinkPad Laptop,1,999.99,08/18/19 07:34,"215 South St, New York City, NY 10001" +248183,Macbook Pro Laptop,1,1700,08/19/19 18:03,"431 Highland St, San Francisco, CA 94016" +248184,USB-C Charging Cable,1,11.95,08/05/19 13:30,"324 Park St, Atlanta, GA 30301" +248185,Wired Headphones,3,11.99,08/15/19 13:53,"251 Park St, Atlanta, GA 30301" +248186,AAA Batteries (4-pack),4,2.99,08/05/19 15:23,"436 1st St, Los Angeles, CA 90001" +248187,iPhone,1,700,08/31/19 22:46,"50 11th St, Los Angeles, CA 90001" +248188,USB-C Charging Cable,1,11.95,08/09/19 14:08,"874 West St, Seattle, WA 98101" +248189,27in FHD Monitor,1,149.99,08/22/19 09:42,"953 West St, Boston, MA 02215" +248190,USB-C Charging Cable,1,11.95,08/01/19 10:08,"538 North St, Atlanta, GA 30301" +248191,Bose SoundSport Headphones,1,99.99,08/25/19 10:26,"235 Pine St, San Francisco, CA 94016" +248192,USB-C Charging Cable,1,11.95,08/30/19 21:49,"785 4th St, New York City, NY 10001" +248193,AAA Batteries (4-pack),1,2.99,08/18/19 16:17,"626 Cherry St, San Francisco, CA 94016" +248194,USB-C Charging Cable,1,11.95,08/29/19 18:25,"727 North St, Boston, MA 02215" +248195,AAA Batteries (4-pack),1,2.99,08/04/19 18:50,"358 Center St, Los Angeles, CA 90001" +248196,AA Batteries (4-pack),2,3.84,08/29/19 22:37,"644 Cherry St, San Francisco, CA 94016" +248197,AA Batteries (4-pack),1,3.84,08/13/19 14:55,"843 6th St, Portland, ME 04101" +248198,Lightning Charging Cable,1,14.95,08/21/19 21:14,"42 Willow St, Los Angeles, CA 90001" +248199,AA Batteries (4-pack),1,3.84,08/10/19 10:42,"414 Hickory St, San Francisco, CA 94016" +248200,AAA Batteries (4-pack),4,2.99,08/09/19 07:56,"54 Willow St, Seattle, WA 98101" +248201,AA Batteries (4-pack),1,3.84,08/20/19 10:47,"623 8th St, Dallas, TX 75001" +248202,iPhone,1,700,08/02/19 00:39,"63 12th St, Los Angeles, CA 90001" +248203,AAA Batteries (4-pack),1,2.99,08/10/19 16:35,"817 6th St, Boston, MA 02215" +248204,AAA Batteries (4-pack),1,2.99,08/13/19 19:10,"773 Park St, Seattle, WA 98101" +248205,AAA Batteries (4-pack),1,2.99,08/15/19 20:45,"579 Adams St, Atlanta, GA 30301" +248206,27in FHD Monitor,1,149.99,08/04/19 20:59,"942 Forest St, San Francisco, CA 94016" +248207,AAA Batteries (4-pack),1,2.99,08/16/19 21:00,"902 Spruce St, Atlanta, GA 30301" +248208,Macbook Pro Laptop,1,1700,08/06/19 22:00,"112 Ridge St, Boston, MA 02215" +248209,AA Batteries (4-pack),1,3.84,08/27/19 20:39,"374 Park St, Atlanta, GA 30301" +248210,Lightning Charging Cable,1,14.95,08/23/19 13:38,"505 Johnson St, Los Angeles, CA 90001" +248211,27in 4K Gaming Monitor,1,389.99,08/14/19 09:21,"595 Lake St, New York City, NY 10001" +248212,27in 4K Gaming Monitor,1,389.99,08/04/19 22:25,"606 8th St, New York City, NY 10001" +248213,USB-C Charging Cable,1,11.95,08/04/19 12:26,"323 Park St, Boston, MA 02215" +248214,27in 4K Gaming Monitor,1,389.99,08/24/19 08:51,"227 Forest St, Los Angeles, CA 90001" +248215,Wired Headphones,1,11.99,08/15/19 21:03,"292 4th St, Seattle, WA 98101" +248216,Apple Airpods Headphones,1,150,08/24/19 19:19,"377 Willow St, Los Angeles, CA 90001" +248217,AAA Batteries (4-pack),2,2.99,08/01/19 14:43,"247 River St, Los Angeles, CA 90001" +248218,Wired Headphones,1,11.99,08/18/19 16:57,"706 Highland St, Austin, TX 73301" +248219,USB-C Charging Cable,1,11.95,08/29/19 11:17,"415 11th St, San Francisco, CA 94016" +248220,AA Batteries (4-pack),1,3.84,08/18/19 20:15,"608 Washington St, San Francisco, CA 94016" +248221,AA Batteries (4-pack),1,3.84,08/04/19 12:09,"1 Church St, San Francisco, CA 94016" +248222,AA Batteries (4-pack),2,3.84,08/29/19 10:27,"471 2nd St, New York City, NY 10001" +248223,AA Batteries (4-pack),1,3.84,08/30/19 18:03,"679 Johnson St, Seattle, WA 98101" +248224,Macbook Pro Laptop,1,1700,08/03/19 11:21,"381 Walnut St, Seattle, WA 98101" +248225,27in 4K Gaming Monitor,1,389.99,08/08/19 11:51,"869 West St, New York City, NY 10001" +248226,Bose SoundSport Headphones,1,99.99,08/25/19 11:32,"986 Main St, New York City, NY 10001" +248227,Lightning Charging Cable,1,14.95,08/23/19 11:20,"200 Ridge St, Atlanta, GA 30301" +248228,AAA Batteries (4-pack),3,2.99,08/07/19 21:14,"929 Madison St, Boston, MA 02215" +248229,AA Batteries (4-pack),1,3.84,08/12/19 19:16,"349 12th St, New York City, NY 10001" +248230,Flatscreen TV,1,300,08/13/19 08:22,"804 Hickory St, New York City, NY 10001" +248231,27in 4K Gaming Monitor,1,389.99,08/07/19 01:36,"695 Dogwood St, New York City, NY 10001" +248232,USB-C Charging Cable,1,11.95,08/03/19 13:20,"914 South St, San Francisco, CA 94016" +248233,Apple Airpods Headphones,1,150,08/20/19 19:08,"168 Wilson St, Austin, TX 73301" +248234,27in FHD Monitor,1,149.99,08/21/19 10:40,"406 Lake St, Boston, MA 02215" +248235,Apple Airpods Headphones,1,150,08/20/19 15:34,"98 Adams St, Portland, ME 04101" +248236,Lightning Charging Cable,1,14.95,08/05/19 21:20,"171 13th St, Dallas, TX 75001" +248237,AA Batteries (4-pack),1,3.84,08/23/19 19:13,"958 Park St, San Francisco, CA 94016" +248238,Apple Airpods Headphones,1,150,08/04/19 16:50,"89 4th St, Dallas, TX 75001" +248238,27in 4K Gaming Monitor,1,389.99,08/04/19 16:50,"89 4th St, Dallas, TX 75001" +248239,Wired Headphones,1,11.99,08/12/19 09:18,"369 8th St, San Francisco, CA 94016" +248240,Apple Airpods Headphones,1,150,08/11/19 17:45,"13 Lakeview St, Seattle, WA 98101" +248240,Wired Headphones,1,11.99,08/11/19 17:45,"13 Lakeview St, Seattle, WA 98101" +248241,Lightning Charging Cable,1,14.95,08/14/19 09:28,"184 13th St, San Francisco, CA 94016" +248242,Wired Headphones,1,11.99,08/22/19 18:31,"411 West St, Seattle, WA 98101" +248243,27in 4K Gaming Monitor,1,389.99,08/03/19 11:16,"968 Park St, Los Angeles, CA 90001" +248244,Google Phone,1,600,08/13/19 12:45,"125 Hickory St, Los Angeles, CA 90001" +248245,Wired Headphones,1,11.99,08/26/19 06:47,"587 Pine St, San Francisco, CA 94016" +248246,USB-C Charging Cable,1,11.95,08/24/19 19:12,"985 Johnson St, Los Angeles, CA 90001" +248247,Google Phone,1,600,08/23/19 12:28,"897 Ridge St, Seattle, WA 98101" +248248,AAA Batteries (4-pack),2,2.99,08/18/19 22:53,"39 West St, Dallas, TX 75001" +248249,Bose SoundSport Headphones,1,99.99,08/28/19 12:45,"976 South St, Boston, MA 02215" +248250,USB-C Charging Cable,1,11.95,08/12/19 09:01,"669 Lincoln St, San Francisco, CA 94016" +248251,Apple Airpods Headphones,1,150,08/07/19 16:16,"427 West St, Dallas, TX 75001" +248251,Wired Headphones,1,11.99,08/07/19 16:16,"427 West St, Dallas, TX 75001" +248252,Lightning Charging Cable,1,14.95,08/30/19 18:17,"643 8th St, Los Angeles, CA 90001" +248253,AA Batteries (4-pack),2,3.84,08/10/19 15:06,"647 6th St, Atlanta, GA 30301" +248254,Flatscreen TV,1,300,08/18/19 13:28,"456 Willow St, San Francisco, CA 94016" +248255,Lightning Charging Cable,1,14.95,08/16/19 14:06,"765 Washington St, New York City, NY 10001" +248256,Lightning Charging Cable,1,14.95,08/17/19 20:03,"912 Dogwood St, Austin, TX 73301" +248257,Wired Headphones,1,11.99,08/08/19 16:07,"951 Highland St, Dallas, TX 75001" +248258,AAA Batteries (4-pack),4,2.99,08/26/19 00:10,"842 Wilson St, Los Angeles, CA 90001" +248259,AA Batteries (4-pack),1,3.84,08/03/19 09:02,"340 Dogwood St, Los Angeles, CA 90001" +248260,Google Phone,1,600,08/17/19 22:21,"950 Washington St, Atlanta, GA 30301" +248261,Flatscreen TV,1,300,08/05/19 18:43,"805 Church St, San Francisco, CA 94016" +248262,AA Batteries (4-pack),1,3.84,08/24/19 15:26,"421 12th St, Austin, TX 73301" +248263,Wired Headphones,1,11.99,08/10/19 23:59,"305 Dogwood St, Seattle, WA 98101" +248264,AA Batteries (4-pack),2,3.84,08/01/19 18:34,"368 Johnson St, San Francisco, CA 94016" +248265,Bose SoundSport Headphones,1,99.99,08/24/19 12:09,"771 10th St, Los Angeles, CA 90001" +248266,Bose SoundSport Headphones,1,99.99,08/29/19 08:22,"449 North St, Austin, TX 73301" +248267,Macbook Pro Laptop,1,1700,08/26/19 23:02,"154 12th St, San Francisco, CA 94016" +248268,34in Ultrawide Monitor,1,379.99,08/02/19 15:15,"405 6th St, San Francisco, CA 94016" +248269,Lightning Charging Cable,1,14.95,08/30/19 12:57,"988 Church St, Dallas, TX 75001" +248270,USB-C Charging Cable,1,11.95,08/06/19 15:42,"492 South St, Atlanta, GA 30301" +248271,AAA Batteries (4-pack),1,2.99,08/07/19 23:20,"509 14th St, Portland, OR 97035" +248272,AA Batteries (4-pack),1,3.84,08/03/19 07:14,"389 Cherry St, Boston, MA 02215" +248273,Apple Airpods Headphones,1,150,08/15/19 22:05,"69 10th St, San Francisco, CA 94016" +248274,AA Batteries (4-pack),1,3.84,08/22/19 13:16,"967 10th St, San Francisco, CA 94016" +248275,Lightning Charging Cable,1,14.95,08/31/19 22:06,"980 Adams St, Dallas, TX 75001" +248276,USB-C Charging Cable,1,11.95,08/25/19 15:49,"309 River St, Atlanta, GA 30301" +248277,Google Phone,1,600,08/17/19 07:49,"388 Jackson St, Atlanta, GA 30301" +248278,Wired Headphones,1,11.99,08/21/19 10:46,"570 Willow St, Atlanta, GA 30301" +248279,Bose SoundSport Headphones,1,99.99,08/09/19 14:02,"947 9th St, Atlanta, GA 30301" +248280,AA Batteries (4-pack),1,3.84,08/29/19 15:01,"575 Chestnut St, Seattle, WA 98101" +248281,27in FHD Monitor,1,149.99,08/03/19 19:06,"15 Johnson St, Dallas, TX 75001" +248282,Apple Airpods Headphones,1,150,08/19/19 21:46,"434 Johnson St, Seattle, WA 98101" +248283,34in Ultrawide Monitor,1,379.99,08/19/19 19:20,"231 8th St, Dallas, TX 75001" +248284,Wired Headphones,1,11.99,08/23/19 19:24,"449 West St, San Francisco, CA 94016" +248285,Wired Headphones,1,11.99,08/12/19 09:24,"892 Adams St, Austin, TX 73301" +248286,20in Monitor,1,109.99,08/19/19 18:50,"292 North St, San Francisco, CA 94016" +248287,Macbook Pro Laptop,1,1700,08/13/19 09:37,"429 6th St, Los Angeles, CA 90001" +248288,Lightning Charging Cable,1,14.95,08/28/19 10:32,"530 8th St, Los Angeles, CA 90001" +248289,Apple Airpods Headphones,1,150,08/22/19 23:52,"772 8th St, Dallas, TX 75001" +248290,Macbook Pro Laptop,1,1700,08/12/19 09:17,"91 Jefferson St, Dallas, TX 75001" +248291,iPhone,1,700,08/13/19 08:58,"767 11th St, Austin, TX 73301" +248292,27in FHD Monitor,1,149.99,08/04/19 11:42,"255 Chestnut St, Austin, TX 73301" +248293,Wired Headphones,1,11.99,08/11/19 19:45,"590 6th St, Boston, MA 02215" +248294,USB-C Charging Cable,1,11.95,08/17/19 20:25,"215 Johnson St, Austin, TX 73301" +248295,Wired Headphones,1,11.99,08/24/19 05:45,"506 Center St, Seattle, WA 98101" +248296,20in Monitor,1,109.99,08/28/19 14:00,"413 Cherry St, San Francisco, CA 94016" +248297,AAA Batteries (4-pack),1,2.99,08/13/19 11:33,"412 6th St, San Francisco, CA 94016" +248298,AA Batteries (4-pack),2,3.84,08/31/19 17:08,"675 9th St, New York City, NY 10001" +248299,Wired Headphones,1,11.99,08/07/19 18:25,"705 Wilson St, San Francisco, CA 94016" +248300,AA Batteries (4-pack),1,3.84,08/31/19 20:04,"263 Walnut St, Los Angeles, CA 90001" +248301,Wired Headphones,1,11.99,08/15/19 00:59,"41 North St, Dallas, TX 75001" +248302,USB-C Charging Cable,1,11.95,08/18/19 23:43,"341 Center St, San Francisco, CA 94016" +248303,Wired Headphones,1,11.99,08/09/19 15:09,"827 Maple St, New York City, NY 10001" +248304,AAA Batteries (4-pack),7,2.99,08/23/19 20:35,"908 Ridge St, New York City, NY 10001" +248305,Apple Airpods Headphones,1,150,08/20/19 21:38,"213 Sunset St, Boston, MA 02215" +248306,Apple Airpods Headphones,1,150,08/29/19 15:41,"399 River St, New York City, NY 10001" +248307,AAA Batteries (4-pack),1,2.99,08/11/19 22:00,"815 Ridge St, San Francisco, CA 94016" +248308,Apple Airpods Headphones,1,150,08/31/19 19:50,"211 Lincoln St, Dallas, TX 75001" +248309,Lightning Charging Cable,1,14.95,08/25/19 10:37,"963 Lake St, New York City, NY 10001" +248310,Lightning Charging Cable,1,14.95,08/17/19 11:18,"414 Cedar St, Boston, MA 02215" +248311,27in FHD Monitor,1,149.99,08/13/19 12:10,"606 Lake St, Portland, OR 97035" +248312,Lightning Charging Cable,1,14.95,08/12/19 20:43,"49 Meadow St, Los Angeles, CA 90001" +248313,USB-C Charging Cable,1,11.95,08/12/19 17:02,"560 Dogwood St, San Francisco, CA 94016" +248314,Apple Airpods Headphones,1,150,08/31/19 10:24,"133 Meadow St, Atlanta, GA 30301" +248315,ThinkPad Laptop,1,999.99,08/03/19 09:16,"892 4th St, San Francisco, CA 94016" +248316,Lightning Charging Cable,1,14.95,08/08/19 18:52,"414 Highland St, Los Angeles, CA 90001" +248317,Apple Airpods Headphones,1,150,08/29/19 19:29,"996 7th St, Los Angeles, CA 90001" +248318,AA Batteries (4-pack),1,3.84,08/10/19 18:56,"197 Ridge St, San Francisco, CA 94016" +248319,20in Monitor,1,109.99,08/06/19 19:33,"725 River St, Portland, OR 97035" +248320,AA Batteries (4-pack),1,3.84,08/30/19 13:38,"981 Walnut St, San Francisco, CA 94016" +248321,Wired Headphones,1,11.99,08/03/19 20:14,"798 Jefferson St, San Francisco, CA 94016" +248322,AA Batteries (4-pack),2,3.84,08/28/19 11:56,"380 Jefferson St, Dallas, TX 75001" +248323,AAA Batteries (4-pack),1,2.99,08/07/19 01:11,"837 Maple St, San Francisco, CA 94016" +248324,27in 4K Gaming Monitor,1,389.99,08/18/19 00:29,"72 River St, Portland, OR 97035" +248325,USB-C Charging Cable,1,11.95,08/31/19 01:31,"120 Maple St, New York City, NY 10001" +248326,Flatscreen TV,1,300,08/09/19 16:11,"501 North St, Boston, MA 02215" +248327,Apple Airpods Headphones,1,150,08/06/19 18:51,"332 14th St, Seattle, WA 98101" +248328,AA Batteries (4-pack),1,3.84,08/14/19 21:01,"753 Lincoln St, Los Angeles, CA 90001" +248329,27in FHD Monitor,1,149.99,08/25/19 11:28,"875 Lake St, Austin, TX 73301" +248330,AAA Batteries (4-pack),1,2.99,08/11/19 08:42,"818 Forest St, Los Angeles, CA 90001" +248331,Lightning Charging Cable,1,14.95,08/08/19 13:25,"314 Ridge St, New York City, NY 10001" +248332,ThinkPad Laptop,1,999.99,08/13/19 13:57,"844 Dogwood St, Portland, OR 97035" +248333,AAA Batteries (4-pack),1,2.99,08/12/19 08:05,"225 Jackson St, San Francisco, CA 94016" +248334,Bose SoundSport Headphones,1,99.99,08/21/19 10:24,"936 9th St, Los Angeles, CA 90001" +248335,27in FHD Monitor,2,149.99,08/25/19 21:48,"938 Park St, Dallas, TX 75001" +248336,AAA Batteries (4-pack),2,2.99,08/21/19 16:06,"950 River St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +248337,Wired Headphones,1,11.99,08/10/19 11:22,"457 Cherry St, Atlanta, GA 30301" +248338,AA Batteries (4-pack),1,3.84,08/14/19 20:22,"6 Cherry St, Los Angeles, CA 90001" +248339,Lightning Charging Cable,1,14.95,08/22/19 12:27,"370 4th St, New York City, NY 10001" +248340,Wired Headphones,1,11.99,08/18/19 10:33,"110 Jackson St, Austin, TX 73301" +248341,USB-C Charging Cable,1,11.95,08/31/19 20:33,"3 Pine St, Austin, TX 73301" +248342,LG Dryer,1,600.0,08/01/19 07:58,"175 9th St, Atlanta, GA 30301" +248343,AAA Batteries (4-pack),1,2.99,08/07/19 09:12,"373 Pine St, Los Angeles, CA 90001" +248344,USB-C Charging Cable,1,11.95,08/20/19 18:04,"343 Madison St, Boston, MA 02215" +248344,AAA Batteries (4-pack),1,2.99,08/20/19 18:04,"343 Madison St, Boston, MA 02215" +248345,27in 4K Gaming Monitor,1,389.99,08/03/19 16:47,"831 Maple St, Austin, TX 73301" +248346,Lightning Charging Cable,1,14.95,08/13/19 13:36,"729 Lakeview St, Seattle, WA 98101" +248347,AAA Batteries (4-pack),1,2.99,08/08/19 11:59,"785 Jefferson St, New York City, NY 10001" +248348,AA Batteries (4-pack),1,3.84,08/27/19 13:53,"328 Ridge St, Boston, MA 02215" +248349,34in Ultrawide Monitor,1,379.99,08/07/19 01:12,"489 1st St, Boston, MA 02215" +248349,USB-C Charging Cable,1,11.95,08/07/19 01:12,"489 1st St, Boston, MA 02215" +248350,Bose SoundSport Headphones,1,99.99,08/03/19 23:57,"23 Jackson St, San Francisco, CA 94016" +248351,AA Batteries (4-pack),2,3.84,08/10/19 21:09,"918 Center St, Atlanta, GA 30301" +248352,iPhone,1,700,08/29/19 13:31,"733 5th St, Los Angeles, CA 90001" +248353,ThinkPad Laptop,1,999.99,08/21/19 17:17,"514 12th St, New York City, NY 10001" +248354,34in Ultrawide Monitor,1,379.99,08/17/19 10:26,"667 Center St, San Francisco, CA 94016" +248355,AA Batteries (4-pack),1,3.84,08/23/19 12:24,"522 Park St, Austin, TX 73301" +248356,AAA Batteries (4-pack),1,2.99,08/19/19 13:50,"427 Elm St, Dallas, TX 75001" +248357,27in 4K Gaming Monitor,1,389.99,08/09/19 18:36,"894 9th St, Boston, MA 02215" +248358,AA Batteries (4-pack),2,3.84,08/02/19 09:39,"723 Pine St, Los Angeles, CA 90001" +248359,34in Ultrawide Monitor,1,379.99,08/10/19 07:25,"283 Park St, Los Angeles, CA 90001" +248360,AA Batteries (4-pack),1,3.84,08/03/19 12:00,"494 Adams St, Austin, TX 73301" +248361,Lightning Charging Cable,1,14.95,08/04/19 10:41,"666 Jefferson St, Austin, TX 73301" +248362,AA Batteries (4-pack),1,3.84,08/03/19 08:57,"488 Hickory St, San Francisco, CA 94016" +248363,Lightning Charging Cable,1,14.95,08/03/19 12:34,"106 Elm St, San Francisco, CA 94016" +248363,20in Monitor,1,109.99,08/03/19 12:34,"106 Elm St, San Francisco, CA 94016" +248364,AAA Batteries (4-pack),1,2.99,08/10/19 12:50,"827 5th St, Dallas, TX 75001" +248365,AAA Batteries (4-pack),5,2.99,08/09/19 02:56,"866 11th St, San Francisco, CA 94016" +248366,34in Ultrawide Monitor,1,379.99,08/17/19 17:46,"715 Center St, Boston, MA 02215" +248367,Wired Headphones,1,11.99,08/20/19 15:29,"723 Adams St, Portland, ME 04101" +248368,Apple Airpods Headphones,1,150,08/23/19 17:37,"43 Johnson St, Boston, MA 02215" +248369,Lightning Charging Cable,1,14.95,08/28/19 11:10,"151 South St, New York City, NY 10001" +248370,Wired Headphones,2,11.99,08/02/19 12:14,"996 Adams St, San Francisco, CA 94016" +248371,AAA Batteries (4-pack),1,2.99,08/28/19 08:11,"951 Cedar St, New York City, NY 10001" +248372,27in 4K Gaming Monitor,1,389.99,08/26/19 16:35,"783 Willow St, San Francisco, CA 94016" +248373,AA Batteries (4-pack),1,3.84,08/19/19 16:34,"456 South St, Los Angeles, CA 90001" +248374,Flatscreen TV,1,300,08/09/19 10:29,"889 Sunset St, Boston, MA 02215" +248375,Wired Headphones,1,11.99,08/27/19 16:07,"338 Elm St, Atlanta, GA 30301" +248376,AAA Batteries (4-pack),1,2.99,08/03/19 13:01,"688 Lake St, Dallas, TX 75001" +248377,27in FHD Monitor,1,149.99,08/20/19 18:21,"169 9th St, San Francisco, CA 94016" +248378,USB-C Charging Cable,1,11.95,08/16/19 21:07,"659 Dogwood St, New York City, NY 10001" +248379,27in 4K Gaming Monitor,1,389.99,08/08/19 13:25,"862 Jackson St, Seattle, WA 98101" +248380,Wired Headphones,1,11.99,08/02/19 13:02,"264 Johnson St, Dallas, TX 75001" +248381,Bose SoundSport Headphones,1,99.99,08/30/19 21:39,"174 12th St, Boston, MA 02215" +248382,Bose SoundSport Headphones,1,99.99,08/27/19 13:09,"319 6th St, New York City, NY 10001" +248383,Apple Airpods Headphones,1,150,08/22/19 10:40,"786 North St, Seattle, WA 98101" +248384,USB-C Charging Cable,1,11.95,08/07/19 08:21,"787 North St, Boston, MA 02215" +248385,Apple Airpods Headphones,1,150,08/15/19 17:12,"275 Elm St, Boston, MA 02215" +248386,Lightning Charging Cable,1,14.95,08/10/19 06:00,"71 Lake St, San Francisco, CA 94016" +248387,AAA Batteries (4-pack),1,2.99,08/25/19 13:24,"368 1st St, San Francisco, CA 94016" +248388,USB-C Charging Cable,1,11.95,08/26/19 14:59,"8 6th St, Los Angeles, CA 90001" +248389,USB-C Charging Cable,1,11.95,08/25/19 21:52,"165 1st St, Boston, MA 02215" +248390,Lightning Charging Cable,1,14.95,08/04/19 21:22,"231 Highland St, Portland, OR 97035" +248391,USB-C Charging Cable,1,11.95,08/28/19 21:15,"270 Dogwood St, San Francisco, CA 94016" +248392,AAA Batteries (4-pack),1,2.99,08/05/19 09:07,"585 5th St, Atlanta, GA 30301" +248393,20in Monitor,1,109.99,08/28/19 06:24,"490 2nd St, Seattle, WA 98101" +248394,iPhone,1,700,08/09/19 17:35,"519 Cherry St, San Francisco, CA 94016" +248395,AAA Batteries (4-pack),1,2.99,08/28/19 13:18,"138 Dogwood St, Dallas, TX 75001" +248396,AAA Batteries (4-pack),1,2.99,08/18/19 20:47,"619 Pine St, Atlanta, GA 30301" +248397,USB-C Charging Cable,1,11.95,08/08/19 17:08,"923 West St, Boston, MA 02215" +248398,Wired Headphones,1,11.99,08/09/19 11:42,"95 Sunset St, Boston, MA 02215" +248399,Wired Headphones,1,11.99,08/03/19 15:48,"139 Dogwood St, New York City, NY 10001" +248400,Lightning Charging Cable,1,14.95,08/31/19 12:41,"258 Madison St, Portland, ME 04101" +248401,Wired Headphones,1,11.99,08/31/19 17:30,"669 Walnut St, Los Angeles, CA 90001" +248402,AAA Batteries (4-pack),2,2.99,08/08/19 13:07,"478 Pine St, Seattle, WA 98101" +248403,Bose SoundSport Headphones,1,99.99,08/18/19 18:26,"244 Cherry St, Portland, ME 04101" +248404,Wired Headphones,1,11.99,08/03/19 09:08,"879 4th St, Dallas, TX 75001" +248405,Lightning Charging Cable,1,14.95,08/12/19 19:31,"148 12th St, Boston, MA 02215" +248406,AA Batteries (4-pack),1,3.84,08/07/19 01:14,"751 Meadow St, New York City, NY 10001" +248407,Lightning Charging Cable,1,14.95,08/05/19 19:28,"581 1st St, New York City, NY 10001" +248408,AAA Batteries (4-pack),1,2.99,08/26/19 14:12,"431 Park St, New York City, NY 10001" +248409,Wired Headphones,1,11.99,08/30/19 12:06,"520 Church St, Austin, TX 73301" +248410,iPhone,1,700,08/09/19 19:53,"372 12th St, San Francisco, CA 94016" +248410,Apple Airpods Headphones,1,150,08/09/19 19:53,"372 12th St, San Francisco, CA 94016" +248411,Wired Headphones,1,11.99,08/05/19 17:27,"812 10th St, New York City, NY 10001" +248412,20in Monitor,1,109.99,08/12/19 00:17,"507 8th St, Atlanta, GA 30301" +248413,Apple Airpods Headphones,1,150,08/09/19 22:43,"893 Church St, Los Angeles, CA 90001" +248414,Wired Headphones,1,11.99,08/11/19 18:31,"881 12th St, San Francisco, CA 94016" +248415,Macbook Pro Laptop,1,1700,08/17/19 18:08,"851 4th St, Los Angeles, CA 90001" +248416,USB-C Charging Cable,2,11.95,08/20/19 10:34,"763 Walnut St, Los Angeles, CA 90001" +248417,USB-C Charging Cable,1,11.95,08/03/19 19:55,"140 River St, San Francisco, CA 94016" +248418,AA Batteries (4-pack),1,3.84,08/01/19 09:56,"299 Sunset St, Boston, MA 02215" +248419,Bose SoundSport Headphones,1,99.99,08/22/19 10:53,"7 9th St, Seattle, WA 98101" +248420,Bose SoundSport Headphones,1,99.99,08/16/19 18:34,"878 Adams St, New York City, NY 10001" +248421,Wired Headphones,1,11.99,08/29/19 19:50,"342 Washington St, San Francisco, CA 94016" +248422,Lightning Charging Cable,1,14.95,08/16/19 19:45,"390 Wilson St, San Francisco, CA 94016" +248423,Wired Headphones,1,11.99,08/30/19 17:53,"711 Main St, Boston, MA 02215" +248424,AA Batteries (4-pack),1,3.84,08/12/19 09:32,"574 5th St, Boston, MA 02215" +248425,Apple Airpods Headphones,1,150,08/25/19 20:27,"709 Highland St, Austin, TX 73301" +248426,Bose SoundSport Headphones,1,99.99,08/10/19 11:53,"519 Washington St, Atlanta, GA 30301" +248427,34in Ultrawide Monitor,1,379.99,08/26/19 14:44,"289 4th St, Portland, OR 97035" +248428,AAA Batteries (4-pack),3,2.99,08/10/19 21:52,"849 West St, San Francisco, CA 94016" +248429,Apple Airpods Headphones,1,150,08/12/19 03:00,"762 Adams St, San Francisco, CA 94016" +248430,USB-C Charging Cable,1,11.95,08/05/19 08:26,"10 14th St, San Francisco, CA 94016" +248431,USB-C Charging Cable,1,11.95,08/05/19 01:14,"379 Meadow St, Boston, MA 02215" +248432,AAA Batteries (4-pack),3,2.99,08/15/19 19:48,"817 Spruce St, Portland, ME 04101" +248433,27in 4K Gaming Monitor,1,389.99,08/28/19 20:52,"521 Elm St, New York City, NY 10001" +248434,Lightning Charging Cable,1,14.95,08/10/19 15:08,"463 Meadow St, San Francisco, CA 94016" +248435,Wired Headphones,1,11.99,08/15/19 19:07,"879 12th St, San Francisco, CA 94016" +248436,AAA Batteries (4-pack),5,2.99,08/25/19 20:32,"685 Cedar St, Seattle, WA 98101" +248437,Wired Headphones,2,11.99,08/07/19 12:22,"810 10th St, San Francisco, CA 94016" +248438,LG Washing Machine,1,600.0,08/25/19 16:29,"42 Center St, Atlanta, GA 30301" +248439,AA Batteries (4-pack),1,3.84,08/20/19 00:28,"845 Forest St, Dallas, TX 75001" +248440,ThinkPad Laptop,1,999.99,08/15/19 13:55,"434 11th St, New York City, NY 10001" +248441,Bose SoundSport Headphones,1,99.99,08/24/19 11:47,"266 River St, San Francisco, CA 94016" +248442,Lightning Charging Cable,1,14.95,08/01/19 16:09,"761 2nd St, New York City, NY 10001" +248443,34in Ultrawide Monitor,1,379.99,08/08/19 19:56,"188 12th St, San Francisco, CA 94016" +248444,Lightning Charging Cable,1,14.95,08/28/19 11:44,"229 Maple St, Boston, MA 02215" +248445,AAA Batteries (4-pack),1,2.99,08/13/19 23:19,"266 1st St, Dallas, TX 75001" +248446,Lightning Charging Cable,1,14.95,08/17/19 20:06,"935 Highland St, Boston, MA 02215" +248447,USB-C Charging Cable,1,11.95,08/04/19 09:57,"111 Ridge St, San Francisco, CA 94016" +248448,USB-C Charging Cable,1,11.95,08/03/19 21:16,"39 4th St, Portland, OR 97035" +248449,20in Monitor,1,109.99,08/25/19 12:58,"196 Lakeview St, Austin, TX 73301" +248450,AA Batteries (4-pack),1,3.84,08/30/19 20:51,"480 Church St, New York City, NY 10001" +248451,Google Phone,1,600,08/20/19 15:40,"706 Maple St, Los Angeles, CA 90001" +248452,Apple Airpods Headphones,1,150,08/28/19 17:56,"401 Wilson St, San Francisco, CA 94016" +248453,AAA Batteries (4-pack),2,2.99,08/05/19 18:58,"735 River St, Boston, MA 02215" +248454,Lightning Charging Cable,1,14.95,08/02/19 13:12,"643 9th St, Dallas, TX 75001" +248455,27in FHD Monitor,1,149.99,08/23/19 22:12,"698 Lakeview St, Boston, MA 02215" +248456,AA Batteries (4-pack),1,3.84,08/03/19 10:34,"174 Johnson St, Los Angeles, CA 90001" +248457,AAA Batteries (4-pack),1,2.99,08/14/19 20:53,"792 Cedar St, Seattle, WA 98101" +248458,USB-C Charging Cable,1,11.95,08/27/19 01:13,"34 8th St, Los Angeles, CA 90001" +248459,ThinkPad Laptop,1,999.99,08/06/19 16:54,"934 Highland St, Austin, TX 73301" +248460,Bose SoundSport Headphones,1,99.99,08/30/19 09:20,"94 Walnut St, Dallas, TX 75001" +248461,Lightning Charging Cable,1,14.95,08/31/19 16:06,"369 South St, Dallas, TX 75001" +248462,Google Phone,1,600,08/19/19 22:59,"270 9th St, New York City, NY 10001" +248463,34in Ultrawide Monitor,1,379.99,08/12/19 15:42,"624 Highland St, San Francisco, CA 94016" +248464,Bose SoundSport Headphones,1,99.99,08/07/19 17:16,"134 Johnson St, Boston, MA 02215" +248465,AAA Batteries (4-pack),1,2.99,08/11/19 23:07,"528 North St, Portland, OR 97035" +248466,AA Batteries (4-pack),1,3.84,08/24/19 08:13,"223 Hickory St, Boston, MA 02215" +248467,Lightning Charging Cable,1,14.95,08/01/19 18:50,"524 5th St, San Francisco, CA 94016" +248468,USB-C Charging Cable,1,11.95,08/12/19 10:41,"87 Dogwood St, Los Angeles, CA 90001" +248469,27in FHD Monitor,1,149.99,08/03/19 16:49,"61 1st St, Los Angeles, CA 90001" +248470,Apple Airpods Headphones,1,150,08/02/19 19:07,"211 Chestnut St, Boston, MA 02215" +248471,AA Batteries (4-pack),1,3.84,08/27/19 12:26,"484 Willow St, Seattle, WA 98101" +248472,Macbook Pro Laptop,1,1700,08/18/19 09:07,"524 Dogwood St, San Francisco, CA 94016" +248473,USB-C Charging Cable,1,11.95,08/10/19 21:57,"799 Center St, New York City, NY 10001" +248474,AA Batteries (4-pack),1,3.84,08/03/19 13:48,"287 Meadow St, San Francisco, CA 94016" +248475,27in 4K Gaming Monitor,1,389.99,08/14/19 14:33,"437 Chestnut St, New York City, NY 10001" +248476,27in FHD Monitor,1,149.99,08/04/19 13:11,"399 Park St, Los Angeles, CA 90001" +248477,USB-C Charging Cable,1,11.95,08/07/19 20:36,"894 Center St, San Francisco, CA 94016" +248478,Bose SoundSport Headphones,1,99.99,08/21/19 18:11,"548 Johnson St, San Francisco, CA 94016" +248479,Bose SoundSport Headphones,1,99.99,08/24/19 13:34,"132 Washington St, New York City, NY 10001" +248480,Flatscreen TV,1,300,08/08/19 03:49,"94 South St, San Francisco, CA 94016" +248481,AA Batteries (4-pack),1,3.84,08/20/19 07:58,"145 Walnut St, Seattle, WA 98101" +248482,Google Phone,1,600,08/19/19 14:22,"414 Park St, Dallas, TX 75001" +248482,Wired Headphones,1,11.99,08/19/19 14:22,"414 Park St, Dallas, TX 75001" +248483,USB-C Charging Cable,1,11.95,08/12/19 14:07,"329 Madison St, Portland, OR 97035" +248484,Bose SoundSport Headphones,1,99.99,08/09/19 18:29,"404 7th St, New York City, NY 10001" +248485,27in FHD Monitor,1,149.99,08/15/19 18:33,"390 Sunset St, Dallas, TX 75001" +248486,iPhone,1,700,08/29/19 18:44,"431 Cherry St, San Francisco, CA 94016" +248487,AAA Batteries (4-pack),1,2.99,08/06/19 21:24,"399 River St, Seattle, WA 98101" +248488,Wired Headphones,1,11.99,08/13/19 09:22,"427 2nd St, Dallas, TX 75001" +248489,AA Batteries (4-pack),1,3.84,08/14/19 01:30,"187 5th St, San Francisco, CA 94016" +248490,AAA Batteries (4-pack),1,2.99,08/20/19 17:08,"672 Johnson St, San Francisco, CA 94016" +248491,Apple Airpods Headphones,1,150,08/30/19 20:39,"677 5th St, San Francisco, CA 94016" +248492,USB-C Charging Cable,1,11.95,08/17/19 16:10,"580 14th St, Dallas, TX 75001" +248493,Bose SoundSport Headphones,1,99.99,08/14/19 15:16,"724 Jackson St, Portland, OR 97035" +248494,Bose SoundSport Headphones,1,99.99,08/16/19 12:11,"499 1st St, Austin, TX 73301" +248495,Flatscreen TV,1,300,08/21/19 15:01,"478 12th St, New York City, NY 10001" +248496,27in FHD Monitor,1,149.99,08/23/19 11:46,"931 Chestnut St, Boston, MA 02215" +248497,USB-C Charging Cable,1,11.95,08/25/19 12:16,"359 Wilson St, Seattle, WA 98101" +248498,Apple Airpods Headphones,1,150,08/26/19 17:41,"763 Pine St, Boston, MA 02215" +248499,Wired Headphones,1,11.99,08/15/19 18:08,"51 North St, Dallas, TX 75001" +248500,USB-C Charging Cable,1,11.95,08/20/19 19:18,"623 4th St, Boston, MA 02215" +248501,AA Batteries (4-pack),1,3.84,08/17/19 21:54,"284 Center St, Atlanta, GA 30301" +248502,Bose SoundSport Headphones,1,99.99,08/17/19 12:29,"48 Willow St, Los Angeles, CA 90001" +248503,AAA Batteries (4-pack),1,2.99,08/10/19 17:05,"774 8th St, New York City, NY 10001" +248504,USB-C Charging Cable,1,11.95,08/09/19 14:31,"8 Lincoln St, Dallas, TX 75001" +248505,34in Ultrawide Monitor,1,379.99,08/22/19 15:29,"842 10th St, New York City, NY 10001" +248506,Lightning Charging Cable,1,14.95,08/16/19 14:19,"225 14th St, San Francisco, CA 94016" +248507,27in 4K Gaming Monitor,1,389.99,08/29/19 14:12,"398 8th St, Dallas, TX 75001" +248508,Vareebadd Phone,1,400,08/30/19 21:39,"232 Cedar St, Boston, MA 02215" +248508,USB-C Charging Cable,1,11.95,08/30/19 21:39,"232 Cedar St, Boston, MA 02215" +248509,27in FHD Monitor,1,149.99,08/08/19 09:36,"780 13th St, San Francisco, CA 94016" +248510,Vareebadd Phone,1,400,08/29/19 13:29,"119 4th St, Dallas, TX 75001" +248510,Bose SoundSport Headphones,1,99.99,08/29/19 13:29,"119 4th St, Dallas, TX 75001" +248511,27in FHD Monitor,1,149.99,08/24/19 13:55,"9 West St, Portland, OR 97035" +248512,Bose SoundSport Headphones,1,99.99,08/11/19 21:44,"443 Spruce St, Atlanta, GA 30301" +248513,27in FHD Monitor,1,149.99,08/13/19 09:55,"523 Madison St, Los Angeles, CA 90001" +248514,USB-C Charging Cable,1,11.95,08/16/19 22:24,"594 West St, Boston, MA 02215" +248515,Apple Airpods Headphones,1,150,08/31/19 11:43,"505 South St, Seattle, WA 98101" +248516,Wired Headphones,1,11.99,08/22/19 20:54,"658 Chestnut St, Los Angeles, CA 90001" +248517,Google Phone,1,600,08/30/19 03:05,"196 Lakeview St, Los Angeles, CA 90001" +248518,Apple Airpods Headphones,1,150,08/02/19 11:26,"843 Park St, San Francisco, CA 94016" +248519,USB-C Charging Cable,1,11.95,08/28/19 10:54,"313 1st St, Portland, OR 97035" +248520,20in Monitor,1,109.99,08/06/19 16:39,"276 Walnut St, Dallas, TX 75001" +248521,34in Ultrawide Monitor,1,379.99,08/23/19 13:34,"229 Jefferson St, Portland, OR 97035" +248522,AA Batteries (4-pack),1,3.84,08/14/19 21:20,"894 West St, San Francisco, CA 94016" +248523,AAA Batteries (4-pack),1,2.99,08/27/19 10:05,"943 1st St, Boston, MA 02215" +248524,ThinkPad Laptop,1,999.99,08/26/19 10:27,"704 Maple St, Los Angeles, CA 90001" +248525,20in Monitor,1,109.99,08/16/19 10:19,"375 Center St, Atlanta, GA 30301" +248526,Lightning Charging Cable,1,14.95,08/30/19 19:39,"78 Lincoln St, Boston, MA 02215" +248527,27in 4K Gaming Monitor,1,389.99,08/18/19 11:03,"834 11th St, San Francisco, CA 94016" +248528,Flatscreen TV,1,300,08/22/19 11:14,"556 Madison St, Austin, TX 73301" +248529,Lightning Charging Cable,1,14.95,08/29/19 09:43,"445 6th St, New York City, NY 10001" +248530,20in Monitor,1,109.99,08/10/19 12:02,"628 12th St, New York City, NY 10001" +248531,Bose SoundSport Headphones,1,99.99,08/23/19 15:20,"598 11th St, Boston, MA 02215" +248532,AA Batteries (4-pack),1,3.84,08/05/19 14:25,"846 Cherry St, Los Angeles, CA 90001" +248532,AAA Batteries (4-pack),1,2.99,08/05/19 14:25,"846 Cherry St, Los Angeles, CA 90001" +248533,Apple Airpods Headphones,1,150,08/08/19 20:23,"759 Jefferson St, New York City, NY 10001" +248534,Macbook Pro Laptop,1,1700,08/28/19 10:18,"757 5th St, Seattle, WA 98101" +248535,USB-C Charging Cable,1,11.95,08/30/19 11:51,"454 Highland St, Los Angeles, CA 90001" +248536,Lightning Charging Cable,1,14.95,08/15/19 07:32,"889 South St, Atlanta, GA 30301" +248537,Google Phone,1,600,08/03/19 20:12,"718 Johnson St, Boston, MA 02215" +248538,Bose SoundSport Headphones,1,99.99,08/02/19 14:06,"114 4th St, San Francisco, CA 94016" +248539,USB-C Charging Cable,2,11.95,08/04/19 02:26,"444 North St, Boston, MA 02215" +248540,27in FHD Monitor,1,149.99,08/28/19 11:55,"526 Sunset St, New York City, NY 10001" +248541,AAA Batteries (4-pack),1,2.99,08/27/19 20:55,"520 7th St, Seattle, WA 98101" +248542,Wired Headphones,1,11.99,08/13/19 15:14,"883 4th St, San Francisco, CA 94016" +248543,AA Batteries (4-pack),1,3.84,08/11/19 10:21,"573 9th St, Seattle, WA 98101" +248544,AAA Batteries (4-pack),1,2.99,08/18/19 20:52,"549 Hickory St, Dallas, TX 75001" +248545,AAA Batteries (4-pack),1,2.99,08/18/19 20:09,"543 Lincoln St, San Francisco, CA 94016" +248546,Apple Airpods Headphones,1,150,08/10/19 09:13,"609 Main St, San Francisco, CA 94016" +248547,Wired Headphones,2,11.99,08/19/19 12:23,"240 Washington St, Los Angeles, CA 90001" +248548,Apple Airpods Headphones,1,150,08/26/19 19:09,"882 Lincoln St, New York City, NY 10001" +248549,Bose SoundSport Headphones,1,99.99,08/13/19 15:23,"503 4th St, Dallas, TX 75001" +248550,ThinkPad Laptop,1,999.99,08/23/19 15:27,"635 River St, Atlanta, GA 30301" +248551,Lightning Charging Cable,1,14.95,08/06/19 09:08,"88 Chestnut St, Los Angeles, CA 90001" +248552,Lightning Charging Cable,1,14.95,08/13/19 19:18,"636 Dogwood St, Los Angeles, CA 90001" +248553,Wired Headphones,1,11.99,08/29/19 11:37,"78 Lake St, San Francisco, CA 94016" +248554,Bose SoundSport Headphones,1,99.99,08/13/19 08:46,"657 Center St, New York City, NY 10001" +248555,Google Phone,1,600,08/14/19 14:44,"845 Jackson St, San Francisco, CA 94016" +248556,Wired Headphones,1,11.99,08/04/19 19:06,"965 Maple St, San Francisco, CA 94016" +248557,Lightning Charging Cable,1,14.95,08/29/19 20:17,"552 2nd St, Los Angeles, CA 90001" +248558,Flatscreen TV,1,300,08/30/19 07:35,"581 7th St, San Francisco, CA 94016" +248559,Flatscreen TV,1,300,08/17/19 14:56,"332 Chestnut St, Atlanta, GA 30301" +248560,iPhone,1,700,08/28/19 14:14,"211 4th St, New York City, NY 10001" +248561,Apple Airpods Headphones,1,150,08/20/19 14:18,"203 Walnut St, Dallas, TX 75001" +248562,Lightning Charging Cable,1,14.95,08/17/19 17:21,"8 8th St, San Francisco, CA 94016" +248563,AAA Batteries (4-pack),2,2.99,08/04/19 09:41,"294 North St, Los Angeles, CA 90001" +248564,USB-C Charging Cable,2,11.95,08/23/19 19:34,"114 Sunset St, New York City, NY 10001" +248565,27in FHD Monitor,1,149.99,08/07/19 21:43,"350 North St, New York City, NY 10001" +248566,AA Batteries (4-pack),1,3.84,08/03/19 07:39,"141 Church St, Boston, MA 02215" +248567,Bose SoundSport Headphones,1,99.99,08/14/19 17:07,"6 Johnson St, Seattle, WA 98101" +248568,Vareebadd Phone,1,400,08/30/19 14:45,"915 7th St, San Francisco, CA 94016" +248569,AA Batteries (4-pack),1,3.84,08/23/19 21:54,"687 Hill St, Los Angeles, CA 90001" +248570,Wired Headphones,1,11.99,08/16/19 20:27,"255 Hill St, Boston, MA 02215" +248571,iPhone,1,700,08/30/19 04:46,"317 Lake St, Dallas, TX 75001" +248571,Wired Headphones,2,11.99,08/30/19 04:46,"317 Lake St, Dallas, TX 75001" +248572,Wired Headphones,2,11.99,08/27/19 09:16,"592 Pine St, Seattle, WA 98101" +248573,Apple Airpods Headphones,1,150,08/11/19 23:08,"31 Madison St, Los Angeles, CA 90001" +248574,Google Phone,1,600,08/11/19 08:56,"502 South St, Los Angeles, CA 90001" +248575,Apple Airpods Headphones,1,150,08/03/19 20:34,"35 Lakeview St, San Francisco, CA 94016" +248576,AA Batteries (4-pack),1,3.84,08/25/19 15:34,"162 Forest St, Seattle, WA 98101" +248577,AAA Batteries (4-pack),1,2.99,08/06/19 14:21,"27 Jefferson St, New York City, NY 10001" +248578,Bose SoundSport Headphones,1,99.99,08/27/19 09:06,"834 Center St, New York City, NY 10001" +248579,Bose SoundSport Headphones,1,99.99,08/03/19 11:17,"297 10th St, San Francisco, CA 94016" +248580,34in Ultrawide Monitor,1,379.99,08/14/19 11:42,"963 Meadow St, Atlanta, GA 30301" +248581,AA Batteries (4-pack),2,3.84,08/09/19 17:35,"550 7th St, New York City, NY 10001" +248582,27in FHD Monitor,1,149.99,08/13/19 11:37,"826 Forest St, San Francisco, CA 94016" +248583,USB-C Charging Cable,1,11.95,08/31/19 20:24,"355 5th St, Portland, OR 97035" +248584,Apple Airpods Headphones,1,150,08/23/19 07:06,"39 Ridge St, San Francisco, CA 94016" +248585,AA Batteries (4-pack),1,3.84,08/04/19 14:14,"110 10th St, Los Angeles, CA 90001" +248586,AAA Batteries (4-pack),1,2.99,08/22/19 06:40,"795 South St, New York City, NY 10001" +248587,Google Phone,1,600,08/04/19 00:44,"112 Adams St, Seattle, WA 98101" +248587,USB-C Charging Cable,1,11.95,08/04/19 00:44,"112 Adams St, Seattle, WA 98101" +248588,USB-C Charging Cable,1,11.95,08/02/19 17:58,"553 Washington St, San Francisco, CA 94016" +248589,AA Batteries (4-pack),1,3.84,08/14/19 21:27,"859 Hill St, Atlanta, GA 30301" +248590,27in 4K Gaming Monitor,1,389.99,08/04/19 00:26,"830 Sunset St, San Francisco, CA 94016" +248591,34in Ultrawide Monitor,1,379.99,08/05/19 14:33,"986 Park St, Austin, TX 73301" +248592,USB-C Charging Cable,1,11.95,08/14/19 22:04,"339 Jefferson St, Dallas, TX 75001" +248593,Google Phone,1,600,08/14/19 14:09,"67 Lincoln St, San Francisco, CA 94016" +248593,USB-C Charging Cable,1,11.95,08/14/19 14:09,"67 Lincoln St, San Francisco, CA 94016" +248594,AA Batteries (4-pack),3,3.84,08/27/19 16:46,"473 Hill St, New York City, NY 10001" +248595,USB-C Charging Cable,1,11.95,08/29/19 19:00,"248 2nd St, Los Angeles, CA 90001" +248596,Wired Headphones,1,11.99,08/22/19 13:03,"7 South St, Los Angeles, CA 90001" +248597,AAA Batteries (4-pack),2,2.99,08/07/19 11:11,"106 Wilson St, Boston, MA 02215" +248598,Lightning Charging Cable,1,14.95,08/18/19 03:22,"107 Hill St, New York City, NY 10001" +248599,USB-C Charging Cable,1,11.95,08/11/19 16:08,"516 North St, Atlanta, GA 30301" +248600,Flatscreen TV,1,300,08/22/19 21:38,"751 Chestnut St, New York City, NY 10001" +248601,20in Monitor,1,109.99,08/27/19 11:41,"842 6th St, Atlanta, GA 30301" +248602,iPhone,1,700,08/23/19 00:49,"252 Lakeview St, San Francisco, CA 94016" +248603,Flatscreen TV,1,300,08/20/19 11:39,"804 Main St, Austin, TX 73301" +248604,Lightning Charging Cable,1,14.95,08/13/19 12:46,"374 Dogwood St, New York City, NY 10001" +248605,USB-C Charging Cable,1,11.95,08/20/19 11:51,"955 Lakeview St, San Francisco, CA 94016" +248606,Flatscreen TV,1,300,08/20/19 00:28,"448 Meadow St, San Francisco, CA 94016" +248607,Lightning Charging Cable,1,14.95,08/26/19 21:35,"249 Church St, Portland, OR 97035" +248608,Apple Airpods Headphones,1,150,08/31/19 23:38,"909 Forest St, Austin, TX 73301" +248609,Wired Headphones,1,11.99,08/31/19 14:59,"159 Washington St, New York City, NY 10001" +248610,Bose SoundSport Headphones,1,99.99,08/18/19 09:26,"454 Park St, San Francisco, CA 94016" +248611,USB-C Charging Cable,3,11.95,08/09/19 22:06,"490 Elm St, Seattle, WA 98101" +248612,27in 4K Gaming Monitor,1,389.99,08/06/19 14:14,"409 Hickory St, New York City, NY 10001" +248613,Google Phone,1,600,08/24/19 07:20,"277 1st St, Los Angeles, CA 90001" +248613,USB-C Charging Cable,1,11.95,08/24/19 07:20,"277 1st St, Los Angeles, CA 90001" +248614,27in FHD Monitor,1,149.99,08/13/19 21:41,"150 Willow St, San Francisco, CA 94016" +248615,Lightning Charging Cable,2,14.95,08/27/19 15:16,"543 Maple St, San Francisco, CA 94016" +248616,Macbook Pro Laptop,1,1700,08/31/19 00:12,"934 Lakeview St, Portland, OR 97035" +248617,Lightning Charging Cable,1,14.95,08/10/19 11:41,"331 Dogwood St, San Francisco, CA 94016" +248618,AAA Batteries (4-pack),1,2.99,08/20/19 17:09,"139 8th St, San Francisco, CA 94016" +248619,Wired Headphones,1,11.99,08/18/19 14:23,"667 Jackson St, Los Angeles, CA 90001" +248620,Bose SoundSport Headphones,1,99.99,08/23/19 23:44,"155 13th St, Boston, MA 02215" +248621,Bose SoundSport Headphones,1,99.99,08/08/19 19:56,"775 Cherry St, Portland, OR 97035" +248622,Vareebadd Phone,1,400,08/29/19 11:02,"6 North St, Boston, MA 02215" +248622,USB-C Charging Cable,1,11.95,08/29/19 11:02,"6 North St, Boston, MA 02215" +248623,Wired Headphones,1,11.99,08/03/19 15:30,"922 Adams St, San Francisco, CA 94016" +248624,AAA Batteries (4-pack),1,2.99,08/05/19 12:12,"810 Adams St, San Francisco, CA 94016" +248625,iPhone,1,700,08/31/19 18:15,"191 6th St, Atlanta, GA 30301" +248625,34in Ultrawide Monitor,1,379.99,08/31/19 18:15,"191 6th St, Atlanta, GA 30301" +248626,AA Batteries (4-pack),1,3.84,08/03/19 18:06,"886 10th St, Portland, OR 97035" +248627,USB-C Charging Cable,1,11.95,08/25/19 18:14,"61 Adams St, Los Angeles, CA 90001" +248628,USB-C Charging Cable,1,11.95,08/30/19 02:57,"456 Cherry St, San Francisco, CA 94016" +248629,Lightning Charging Cable,1,14.95,08/21/19 00:19,"265 Elm St, Atlanta, GA 30301" +248630,Wired Headphones,2,11.99,08/04/19 19:05,"779 Lincoln St, Boston, MA 02215" +248631,Lightning Charging Cable,1,14.95,08/28/19 11:36,"722 9th St, Austin, TX 73301" +248632,Wired Headphones,1,11.99,08/06/19 00:31,"754 Park St, Boston, MA 02215" +248633,Apple Airpods Headphones,1,150,08/13/19 11:19,"694 Lakeview St, Dallas, TX 75001" +248634,Flatscreen TV,1,300,08/21/19 14:56,"565 Willow St, Seattle, WA 98101" +248635,AAA Batteries (4-pack),3,2.99,08/24/19 10:47,"436 Willow St, Seattle, WA 98101" +248636,Wired Headphones,1,11.99,08/28/19 19:44,"800 4th St, Dallas, TX 75001" +248637,Bose SoundSport Headphones,1,99.99,08/24/19 08:07,"777 Dogwood St, Los Angeles, CA 90001" +248638,Flatscreen TV,1,300,08/22/19 06:21,"178 Forest St, New York City, NY 10001" +248639,Wired Headphones,1,11.99,08/09/19 17:00,"849 7th St, San Francisco, CA 94016" +248640,27in FHD Monitor,1,149.99,08/29/19 10:30,"119 Hickory St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +248641,Lightning Charging Cable,1,14.95,08/24/19 23:07,"601 Willow St, San Francisco, CA 94016" +248642,Wired Headphones,1,11.99,08/15/19 16:18,"98 Lake St, Austin, TX 73301" +248643,iPhone,1,700,08/13/19 05:46,"696 2nd St, San Francisco, CA 94016" +248644,Bose SoundSport Headphones,1,99.99,08/17/19 23:49,"688 6th St, San Francisco, CA 94016" +248645,27in 4K Gaming Monitor,1,389.99,08/25/19 17:49,"889 Highland St, Boston, MA 02215" +248646,AAA Batteries (4-pack),1,2.99,08/05/19 09:09,"402 10th St, San Francisco, CA 94016" +248647,USB-C Charging Cable,1,11.95,08/02/19 10:40,"579 Main St, Dallas, TX 75001" +248648,Wired Headphones,1,11.99,08/18/19 22:12,"162 Washington St, Los Angeles, CA 90001" +248649,Wired Headphones,1,11.99,08/07/19 18:59,"368 1st St, New York City, NY 10001" +248650,USB-C Charging Cable,2,11.95,08/15/19 23:33,"54 Meadow St, Seattle, WA 98101" +248651,Bose SoundSport Headphones,1,99.99,08/28/19 02:22,"475 Hickory St, Portland, ME 04101" +248652,AAA Batteries (4-pack),1,2.99,08/31/19 18:40,"37 Center St, Seattle, WA 98101" +248653,34in Ultrawide Monitor,1,379.99,08/01/19 20:05,"89 Jackson St, Boston, MA 02215" +248654,AAA Batteries (4-pack),1,2.99,08/23/19 20:49,"865 6th St, Austin, TX 73301" +248655,USB-C Charging Cable,1,11.95,08/28/19 15:41,"588 Meadow St, Atlanta, GA 30301" +248656,20in Monitor,1,109.99,08/24/19 10:13,"876 River St, San Francisco, CA 94016" +248656,AAA Batteries (4-pack),1,2.99,08/24/19 10:13,"876 River St, San Francisco, CA 94016" +248657,Lightning Charging Cable,1,14.95,08/26/19 11:01,"460 River St, Los Angeles, CA 90001" +248658,ThinkPad Laptop,1,999.99,08/06/19 17:31,"267 Johnson St, New York City, NY 10001" +248659,Bose SoundSport Headphones,1,99.99,08/12/19 15:51,"556 Adams St, Boston, MA 02215" +248660,LG Washing Machine,1,600.0,08/25/19 18:11,"994 14th St, San Francisco, CA 94016" +248661,Wired Headphones,1,11.99,08/28/19 10:52,"66 Cedar St, San Francisco, CA 94016" +248662,AAA Batteries (4-pack),1,2.99,08/20/19 15:59,"929 Cherry St, Los Angeles, CA 90001" +248663,Apple Airpods Headphones,1,150,08/30/19 21:34,"148 Lake St, Seattle, WA 98101" +248664,AA Batteries (4-pack),1,3.84,08/30/19 00:09,"598 Jackson St, San Francisco, CA 94016" +248665,27in 4K Gaming Monitor,1,389.99,08/20/19 20:43,"71 10th St, Seattle, WA 98101" +248666,27in 4K Gaming Monitor,1,389.99,08/08/19 08:35,"140 Forest St, New York City, NY 10001" +248667,27in FHD Monitor,1,149.99,08/08/19 17:24,"796 10th St, Los Angeles, CA 90001" +248668,Wired Headphones,1,11.99,09/01/19 01:49,"629 Church St, Los Angeles, CA 90001" +248669,34in Ultrawide Monitor,2,379.99,08/29/19 21:51,"78 1st St, Austin, TX 73301" +248670,Macbook Pro Laptop,1,1700,08/01/19 13:12,"15 Hill St, Austin, TX 73301" +248671,USB-C Charging Cable,1,11.95,08/06/19 17:57,"936 Johnson St, Los Angeles, CA 90001" +248672,Wired Headphones,1,11.99,08/19/19 13:54,"241 Jackson St, Dallas, TX 75001" +248673,AAA Batteries (4-pack),1,2.99,08/19/19 09:59,"830 8th St, Atlanta, GA 30301" +248674,Bose SoundSport Headphones,1,99.99,08/14/19 13:39,"578 Dogwood St, Los Angeles, CA 90001" +248675,iPhone,1,700,08/16/19 10:52,"529 Cedar St, San Francisco, CA 94016" +248676,Wired Headphones,1,11.99,08/28/19 19:36,"398 Maple St, Austin, TX 73301" +248676,34in Ultrawide Monitor,1,379.99,08/28/19 19:36,"398 Maple St, Austin, TX 73301" +248677,AAA Batteries (4-pack),1,2.99,08/08/19 15:57,"322 Cedar St, New York City, NY 10001" +248678,AA Batteries (4-pack),2,3.84,08/14/19 21:00,"944 West St, Dallas, TX 75001" +248679,Bose SoundSport Headphones,1,99.99,08/08/19 04:46,"381 1st St, Dallas, TX 75001" +248680,USB-C Charging Cable,1,11.95,08/02/19 18:43,"135 Washington St, New York City, NY 10001" +248680,Google Phone,1,600,08/02/19 18:43,"135 Washington St, New York City, NY 10001" +248681,ThinkPad Laptop,1,999.99,08/20/19 11:59,"9 Spruce St, San Francisco, CA 94016" +248682,Lightning Charging Cable,3,14.95,08/13/19 11:10,"155 Pine St, San Francisco, CA 94016" +248683,AA Batteries (4-pack),1,3.84,08/18/19 23:11,"183 Elm St, Los Angeles, CA 90001" +248684,Flatscreen TV,1,300,08/18/19 08:24,"767 Lake St, San Francisco, CA 94016" +248685,Wired Headphones,1,11.99,08/13/19 17:23,"415 Washington St, Dallas, TX 75001" +248686,Lightning Charging Cable,1,14.95,08/25/19 16:53,"618 Madison St, San Francisco, CA 94016" +248687,27in 4K Gaming Monitor,1,389.99,08/12/19 21:17,"594 River St, Boston, MA 02215" +248688,AA Batteries (4-pack),2,3.84,08/05/19 11:28,"78 Dogwood St, Los Angeles, CA 90001" +248689,AAA Batteries (4-pack),2,2.99,08/22/19 23:12,"227 Jackson St, Atlanta, GA 30301" +248690,20in Monitor,1,109.99,08/12/19 13:53,"52 Dogwood St, Austin, TX 73301" +248691,Lightning Charging Cable,1,14.95,08/30/19 22:06,"118 Main St, Portland, OR 97035" +248692,Flatscreen TV,1,300,08/21/19 16:32,"111 Hill St, New York City, NY 10001" +248692,Wired Headphones,1,11.99,08/21/19 16:32,"111 Hill St, New York City, NY 10001" +248693,Wired Headphones,1,11.99,08/02/19 17:21,"804 Lakeview St, Dallas, TX 75001" +248694,USB-C Charging Cable,1,11.95,08/10/19 22:53,"628 Pine St, Austin, TX 73301" +248695,Apple Airpods Headphones,1,150,08/31/19 11:03,"276 6th St, San Francisco, CA 94016" +248696,AA Batteries (4-pack),1,3.84,08/22/19 14:42,"153 Adams St, Los Angeles, CA 90001" +248697,USB-C Charging Cable,1,11.95,08/30/19 17:32,"139 Elm St, Seattle, WA 98101" +248698,iPhone,1,700,08/25/19 10:27,"206 Wilson St, New York City, NY 10001" +248699,Macbook Pro Laptop,1,1700,08/10/19 06:35,"403 Pine St, Los Angeles, CA 90001" +248700,Lightning Charging Cable,1,14.95,08/17/19 15:02,"727 Spruce St, Portland, OR 97035" +248701,USB-C Charging Cable,1,11.95,08/26/19 07:09,"147 Johnson St, San Francisco, CA 94016" +248702,AA Batteries (4-pack),1,3.84,08/16/19 23:40,"970 Cedar St, Dallas, TX 75001" +248703,20in Monitor,1,109.99,08/01/19 19:44,"685 14th St, Los Angeles, CA 90001" +248704,AAA Batteries (4-pack),1,2.99,08/08/19 11:39,"418 Washington St, Boston, MA 02215" +248705,Lightning Charging Cable,1,14.95,08/10/19 22:54,"997 Madison St, San Francisco, CA 94016" +248706,Apple Airpods Headphones,1,150,08/02/19 11:07,"652 2nd St, San Francisco, CA 94016" +248707,Flatscreen TV,1,300,08/10/19 11:53,"426 Dogwood St, Austin, TX 73301" +248708,USB-C Charging Cable,1,11.95,08/23/19 00:27,"355 Hill St, Boston, MA 02215" +248709,Apple Airpods Headphones,1,150,08/25/19 12:43,"284 7th St, San Francisco, CA 94016" +248710,27in 4K Gaming Monitor,1,389.99,08/23/19 10:09,"35 14th St, Dallas, TX 75001" +248711,Lightning Charging Cable,1,14.95,08/30/19 10:23,"767 Center St, Seattle, WA 98101" +248712,USB-C Charging Cable,1,11.95,08/09/19 13:51,"352 Church St, Boston, MA 02215" +248713,USB-C Charging Cable,1,11.95,08/17/19 02:53,"124 Center St, Portland, OR 97035" +248714,AAA Batteries (4-pack),1,2.99,08/21/19 21:11,"846 Elm St, Los Angeles, CA 90001" +248715,Bose SoundSport Headphones,1,99.99,08/31/19 19:30,"341 Madison St, Seattle, WA 98101" +248716,Wired Headphones,1,11.99,08/06/19 18:28,"178 1st St, New York City, NY 10001" +248717,20in Monitor,1,109.99,08/08/19 09:45,"895 Hickory St, Dallas, TX 75001" +248718,AAA Batteries (4-pack),1,2.99,08/25/19 17:13,"818 12th St, Los Angeles, CA 90001" +248719,Macbook Pro Laptop,1,1700,08/18/19 20:27,"950 Cedar St, Portland, OR 97035" +248720,27in 4K Gaming Monitor,1,389.99,08/20/19 09:55,"306 14th St, Los Angeles, CA 90001" +248721,Wired Headphones,1,11.99,08/11/19 15:52,"646 1st St, Portland, OR 97035" +248722,Apple Airpods Headphones,1,150,08/27/19 12:22,"583 Walnut St, San Francisco, CA 94016" +248723,AA Batteries (4-pack),1,3.84,08/16/19 07:13,"285 Lincoln St, New York City, NY 10001" +248724,Google Phone,1,600,08/11/19 18:57,"303 Adams St, New York City, NY 10001" +248725,iPhone,1,700,08/25/19 14:34,"343 Hickory St, Seattle, WA 98101" +248726,USB-C Charging Cable,1,11.95,08/29/19 08:28,"133 Willow St, Austin, TX 73301" +248727,27in FHD Monitor,1,149.99,08/04/19 21:02,"803 Ridge St, Atlanta, GA 30301" +248728,USB-C Charging Cable,1,11.95,08/21/19 10:17,"574 South St, Austin, TX 73301" +248729,Wired Headphones,1,11.99,08/27/19 08:25,"596 Meadow St, New York City, NY 10001" +248730,Wired Headphones,1,11.99,08/31/19 12:37,"29 Willow St, San Francisco, CA 94016" +248731,Bose SoundSport Headphones,1,99.99,08/26/19 18:05,"908 6th St, Seattle, WA 98101" +248732,AA Batteries (4-pack),1,3.84,08/13/19 15:45,"482 Jackson St, San Francisco, CA 94016" +248733,Apple Airpods Headphones,1,150,08/29/19 11:11,"222 Washington St, New York City, NY 10001" +248734,27in FHD Monitor,1,149.99,08/02/19 12:24,"63 Meadow St, New York City, NY 10001" +248735,AAA Batteries (4-pack),2,2.99,08/30/19 09:06,"526 Main St, San Francisco, CA 94016" +248736,34in Ultrawide Monitor,1,379.99,08/08/19 23:09,"34 10th St, Los Angeles, CA 90001" +248737,Lightning Charging Cable,1,14.95,08/21/19 10:16,"414 Sunset St, San Francisco, CA 94016" +248738,Macbook Pro Laptop,1,1700,08/11/19 08:36,"214 Meadow St, Portland, OR 97035" +248739,USB-C Charging Cable,1,11.95,08/10/19 00:27,"181 Church St, Atlanta, GA 30301" +248740,AAA Batteries (4-pack),1,2.99,08/01/19 23:12,"972 Highland St, Los Angeles, CA 90001" +248741,Wired Headphones,1,11.99,08/21/19 15:18,"1 Willow St, Boston, MA 02215" +248742,Vareebadd Phone,1,400,08/19/19 19:23,"812 Pine St, Atlanta, GA 30301" +248742,USB-C Charging Cable,1,11.95,08/19/19 19:23,"812 Pine St, Atlanta, GA 30301" +248743,AA Batteries (4-pack),1,3.84,08/20/19 12:58,"939 8th St, Portland, ME 04101" +248743,Lightning Charging Cable,1,14.95,08/20/19 12:58,"939 8th St, Portland, ME 04101" +248744,Apple Airpods Headphones,1,150,08/16/19 09:23,"174 Main St, Seattle, WA 98101" +248745,Bose SoundSport Headphones,1,99.99,08/31/19 19:31,"510 Lincoln St, Los Angeles, CA 90001" +248746,Wired Headphones,2,11.99,08/08/19 21:51,"120 1st St, San Francisco, CA 94016" +248747,Macbook Pro Laptop,1,1700,08/10/19 10:25,"561 Dogwood St, San Francisco, CA 94016" +248748,AA Batteries (4-pack),2,3.84,08/01/19 11:05,"523 12th St, Dallas, TX 75001" +248749,AA Batteries (4-pack),1,3.84,08/13/19 03:07,"272 Hill St, San Francisco, CA 94016" +248750,AA Batteries (4-pack),1,3.84,08/22/19 17:07,"941 Cherry St, San Francisco, CA 94016" +248751,Wired Headphones,1,11.99,08/03/19 16:52,"804 Dogwood St, Dallas, TX 75001" +248752,USB-C Charging Cable,1,11.95,08/30/19 13:50,"184 Jefferson St, Los Angeles, CA 90001" +248753,27in 4K Gaming Monitor,1,389.99,08/19/19 15:50,"638 Lincoln St, San Francisco, CA 94016" +248754,AA Batteries (4-pack),2,3.84,08/01/19 16:27,"171 Cherry St, San Francisco, CA 94016" +248755,Wired Headphones,1,11.99,08/17/19 13:22,"312 14th St, New York City, NY 10001" +248756,Bose SoundSport Headphones,1,99.99,08/08/19 11:44,"35 Highland St, Seattle, WA 98101" +248757,20in Monitor,1,109.99,08/03/19 12:11,"615 11th St, Seattle, WA 98101" +248758,Apple Airpods Headphones,1,150,08/26/19 19:09,"927 4th St, San Francisco, CA 94016" +248759,AAA Batteries (4-pack),1,2.99,08/17/19 15:40,"274 1st St, Dallas, TX 75001" +248760,Lightning Charging Cable,2,14.95,08/22/19 08:40,"755 Elm St, Los Angeles, CA 90001" +248761,Apple Airpods Headphones,1,150,08/05/19 15:42,"169 Spruce St, San Francisco, CA 94016" +248762,Apple Airpods Headphones,1,150,08/05/19 13:11,"861 Jefferson St, Seattle, WA 98101" +248763,AAA Batteries (4-pack),1,2.99,08/07/19 19:30,"368 13th St, San Francisco, CA 94016" +248764,27in 4K Gaming Monitor,1,389.99,08/01/19 08:33,"873 Park St, San Francisco, CA 94016" +248765,Bose SoundSport Headphones,1,99.99,08/06/19 09:03,"580 River St, Portland, OR 97035" +248766,AAA Batteries (4-pack),1,2.99,08/12/19 17:00,"82 Spruce St, Austin, TX 73301" +248767,27in FHD Monitor,1,149.99,08/21/19 08:47,"808 Hickory St, Dallas, TX 75001" +248768,Flatscreen TV,1,300,08/21/19 18:22,"412 Center St, Los Angeles, CA 90001" +248769,Bose SoundSport Headphones,1,99.99,08/07/19 19:59,"269 1st St, Atlanta, GA 30301" +248770,Bose SoundSport Headphones,1,99.99,08/23/19 12:34,"475 9th St, San Francisco, CA 94016" +248770,Lightning Charging Cable,1,14.95,08/23/19 12:34,"475 9th St, San Francisco, CA 94016" +248771,Flatscreen TV,1,300,08/28/19 18:25,"188 8th St, Atlanta, GA 30301" +248772,USB-C Charging Cable,1,11.95,08/23/19 12:57,"313 Center St, Los Angeles, CA 90001" +248773,AA Batteries (4-pack),1,3.84,08/20/19 12:41,"780 Highland St, San Francisco, CA 94016" +248774,AA Batteries (4-pack),1,3.84,08/14/19 13:15,"525 Sunset St, Los Angeles, CA 90001" +248775,USB-C Charging Cable,1,11.95,08/28/19 11:15,"286 Cedar St, Seattle, WA 98101" +248776,Google Phone,1,600,08/25/19 14:29,"188 Lincoln St, Atlanta, GA 30301" +248777,Wired Headphones,1,11.99,08/22/19 01:02,"874 Adams St, Portland, OR 97035" +248778,Lightning Charging Cable,1,14.95,08/28/19 18:51,"59 Park St, New York City, NY 10001" +248779,LG Washing Machine,1,600.0,08/14/19 20:45,"55 Park St, New York City, NY 10001" +248780,AAA Batteries (4-pack),1,2.99,08/11/19 08:24,"326 14th St, San Francisco, CA 94016" +248781,27in 4K Gaming Monitor,1,389.99,08/07/19 16:16,"398 South St, New York City, NY 10001" +248782,AAA Batteries (4-pack),3,2.99,08/28/19 16:10,"200 2nd St, Boston, MA 02215" +248783,iPhone,1,700,08/19/19 12:07,"515 Ridge St, Dallas, TX 75001" +248784,27in FHD Monitor,1,149.99,08/26/19 22:06,"190 Maple St, New York City, NY 10001" +248785,Lightning Charging Cable,1,14.95,08/02/19 21:01,"397 Sunset St, New York City, NY 10001" +248786,USB-C Charging Cable,1,11.95,08/21/19 13:35,"433 Johnson St, San Francisco, CA 94016" +248787,Vareebadd Phone,1,400,08/03/19 11:17,"869 12th St, New York City, NY 10001" +248787,USB-C Charging Cable,1,11.95,08/03/19 11:17,"869 12th St, New York City, NY 10001" +248788,Apple Airpods Headphones,1,150,08/21/19 16:49,"24 Walnut St, San Francisco, CA 94016" +248789,AA Batteries (4-pack),2,3.84,08/26/19 08:26,"988 Maple St, Portland, OR 97035" +248790,AAA Batteries (4-pack),1,2.99,08/24/19 16:28,"993 Washington St, Los Angeles, CA 90001" +248791,AAA Batteries (4-pack),2,2.99,08/16/19 17:59,"413 Willow St, Los Angeles, CA 90001" +248792,ThinkPad Laptop,1,999.99,08/25/19 14:37,"213 Adams St, San Francisco, CA 94016" +248793,Bose SoundSport Headphones,1,99.99,08/05/19 13:26,"803 Jefferson St, New York City, NY 10001" +248794,Bose SoundSport Headphones,1,99.99,08/22/19 17:36,"879 13th St, Atlanta, GA 30301" +248795,AA Batteries (4-pack),1,3.84,08/11/19 20:23,"337 14th St, San Francisco, CA 94016" +248796,USB-C Charging Cable,1,11.95,08/09/19 12:32,"827 Meadow St, San Francisco, CA 94016" +248797,iPhone,1,700,08/05/19 17:52,"225 7th St, Atlanta, GA 30301" +248798,20in Monitor,1,109.99,08/03/19 18:35,"615 Cedar St, Atlanta, GA 30301" +248799,27in 4K Gaming Monitor,1,389.99,08/05/19 11:47,"226 Main St, New York City, NY 10001" +248800,iPhone,1,700,08/05/19 11:21,"324 Church St, Boston, MA 02215" +248801,27in FHD Monitor,1,149.99,08/15/19 05:29,"891 Jackson St, Atlanta, GA 30301" +248802,AA Batteries (4-pack),1,3.84,08/14/19 08:21,"804 1st St, Atlanta, GA 30301" +248803,Wired Headphones,1,11.99,08/29/19 21:39,"99 Maple St, Boston, MA 02215" +248804,34in Ultrawide Monitor,1,379.99,08/21/19 20:40,"638 Jackson St, Los Angeles, CA 90001" +248805,AAA Batteries (4-pack),1,2.99,08/22/19 14:31,"143 Meadow St, Atlanta, GA 30301" +248806,USB-C Charging Cable,1,11.95,08/20/19 10:26,"962 12th St, Portland, ME 04101" +248807,Wired Headphones,1,11.99,08/29/19 14:22,"224 Highland St, New York City, NY 10001" +248808,AA Batteries (4-pack),2,3.84,08/08/19 20:48,"469 Lake St, Los Angeles, CA 90001" +248809,iPhone,1,700,08/24/19 19:48,"757 Forest St, Atlanta, GA 30301" +248810,Apple Airpods Headphones,1,150,08/07/19 08:26,"397 12th St, Los Angeles, CA 90001" +248811,AA Batteries (4-pack),1,3.84,08/03/19 17:53,"428 Highland St, Seattle, WA 98101" +248812,USB-C Charging Cable,1,11.95,08/05/19 13:14,"217 Wilson St, New York City, NY 10001" +248813,Wired Headphones,1,11.99,08/17/19 21:46,"603 5th St, Seattle, WA 98101" +248814,Apple Airpods Headphones,1,150,08/23/19 00:55,"78 Ridge St, San Francisco, CA 94016" +248815,AA Batteries (4-pack),1,3.84,08/17/19 18:45,"177 Cherry St, Los Angeles, CA 90001" +248816,AA Batteries (4-pack),1,3.84,08/24/19 18:12,"42 Jefferson St, New York City, NY 10001" +248817,AAA Batteries (4-pack),4,2.99,08/21/19 11:28,"195 Church St, Atlanta, GA 30301" +248818,USB-C Charging Cable,1,11.95,08/19/19 22:20,"771 Forest St, San Francisco, CA 94016" +248819,Wired Headphones,1,11.99,08/21/19 10:13,"505 4th St, Austin, TX 73301" +248820,34in Ultrawide Monitor,1,379.99,08/11/19 19:15,"592 Main St, Seattle, WA 98101" +248821,Flatscreen TV,1,300,08/31/19 15:57,"785 Adams St, Los Angeles, CA 90001" +248822,27in FHD Monitor,1,149.99,08/06/19 08:05,"378 Dogwood St, Atlanta, GA 30301" +248823,Macbook Pro Laptop,1,1700,08/23/19 10:59,"663 Center St, Portland, OR 97035" +248824,27in FHD Monitor,1,149.99,08/17/19 15:33,"135 13th St, San Francisco, CA 94016" +248825,AAA Batteries (4-pack),1,2.99,08/16/19 20:44,"787 Pine St, San Francisco, CA 94016" +248826,AAA Batteries (4-pack),1,2.99,08/10/19 22:20,"367 Lake St, Seattle, WA 98101" +248827,USB-C Charging Cable,1,11.95,08/08/19 10:30,"976 Meadow St, Seattle, WA 98101" +248828,27in FHD Monitor,1,149.99,08/23/19 19:44,"428 North St, Dallas, TX 75001" +248829,AAA Batteries (4-pack),2,2.99,08/13/19 12:27,"596 Johnson St, Portland, OR 97035" +248830,Wired Headphones,1,11.99,08/27/19 09:42,"951 12th St, San Francisco, CA 94016" +248831,Lightning Charging Cable,1,14.95,08/26/19 17:46,"454 Main St, New York City, NY 10001" +248832,Apple Airpods Headphones,1,150,08/10/19 16:12,"906 Meadow St, San Francisco, CA 94016" +248833,USB-C Charging Cable,2,11.95,08/24/19 23:55,"928 Center St, Los Angeles, CA 90001" +248834,AAA Batteries (4-pack),1,2.99,08/18/19 19:23,"524 Jefferson St, Seattle, WA 98101" +248835,Google Phone,1,600,08/13/19 21:24,"551 Pine St, Portland, OR 97035" +248836,27in 4K Gaming Monitor,1,389.99,08/17/19 10:32,"145 Maple St, Los Angeles, CA 90001" +248836,27in 4K Gaming Monitor,1,389.99,08/17/19 10:32,"145 Maple St, Los Angeles, CA 90001" +248837,Google Phone,1,600,08/14/19 12:42,"690 8th St, Boston, MA 02215" +248837,USB-C Charging Cable,2,11.95,08/14/19 12:42,"690 8th St, Boston, MA 02215" +248838,Lightning Charging Cable,1,14.95,08/12/19 16:57,"300 Lincoln St, Atlanta, GA 30301" +248839,27in 4K Gaming Monitor,1,389.99,08/20/19 14:29,"669 Wilson St, New York City, NY 10001" +248840,USB-C Charging Cable,2,11.95,08/10/19 15:31,"552 Willow St, Los Angeles, CA 90001" +248841,ThinkPad Laptop,1,999.99,08/06/19 17:40,"593 Sunset St, Dallas, TX 75001" +248842,Flatscreen TV,1,300,08/25/19 23:36,"43 4th St, Dallas, TX 75001" +248843,27in FHD Monitor,1,149.99,08/07/19 14:53,"254 11th St, San Francisco, CA 94016" +248844,AA Batteries (4-pack),4,3.84,08/29/19 17:55,"458 Center St, Atlanta, GA 30301" +248845,ThinkPad Laptop,1,999.99,08/20/19 10:51,"71 6th St, Dallas, TX 75001" +248846,Bose SoundSport Headphones,1,99.99,08/10/19 19:42,"570 Ridge St, Los Angeles, CA 90001" +248847,34in Ultrawide Monitor,1,379.99,08/15/19 17:22,"473 Lake St, New York City, NY 10001" +248848,AAA Batteries (4-pack),1,2.99,08/22/19 10:16,"188 Madison St, San Francisco, CA 94016" +248849,27in 4K Gaming Monitor,1,389.99,08/02/19 11:46,"415 13th St, New York City, NY 10001" +248850,Bose SoundSport Headphones,1,99.99,08/27/19 18:43,"968 Cedar St, New York City, NY 10001" +248851,27in 4K Gaming Monitor,1,389.99,08/10/19 11:26,"503 14th St, Boston, MA 02215" +248852,iPhone,1,700,08/26/19 13:44,"828 Wilson St, Austin, TX 73301" +248853,Lightning Charging Cable,1,14.95,08/31/19 18:00,"47 13th St, Atlanta, GA 30301" +248854,AA Batteries (4-pack),1,3.84,08/31/19 08:45,"430 Wilson St, San Francisco, CA 94016" +248855,AAA Batteries (4-pack),1,2.99,08/31/19 06:41,"29 Wilson St, Dallas, TX 75001" +248856,AA Batteries (4-pack),1,3.84,08/30/19 08:14,"587 Lake St, New York City, NY 10001" +248857,AAA Batteries (4-pack),1,2.99,08/29/19 16:31,"812 West St, Seattle, WA 98101" +248858,AA Batteries (4-pack),2,3.84,08/29/19 13:43,"711 Park St, Portland, OR 97035" +248859,Apple Airpods Headphones,1,150,08/31/19 00:34,"531 Wilson St, Dallas, TX 75001" +248860,AAA Batteries (4-pack),1,2.99,08/04/19 13:08,"309 9th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +248861,USB-C Charging Cable,1,11.95,08/20/19 14:41,"28 Sunset St, Seattle, WA 98101" +248862,Bose SoundSport Headphones,1,99.99,08/19/19 12:10,"531 Walnut St, San Francisco, CA 94016" +248863,Apple Airpods Headphones,1,150,08/13/19 06:02,"68 Ridge St, San Francisco, CA 94016" +248864,Lightning Charging Cable,1,14.95,08/20/19 23:22,"242 Maple St, San Francisco, CA 94016" +248865,AA Batteries (4-pack),2,3.84,08/12/19 17:37,"872 Jefferson St, Los Angeles, CA 90001" +248866,Lightning Charging Cable,1,14.95,08/18/19 14:48,"865 Church St, Austin, TX 73301" +248867,Apple Airpods Headphones,1,150,08/29/19 16:03,"749 Forest St, Boston, MA 02215" +248868,34in Ultrawide Monitor,1,379.99,08/22/19 20:57,"327 Willow St, Atlanta, GA 30301" +248869,AA Batteries (4-pack),1,3.84,08/07/19 07:11,"125 Cherry St, Boston, MA 02215" +248870,Bose SoundSport Headphones,1,99.99,08/15/19 15:22,"75 Walnut St, Dallas, TX 75001" +248871,AAA Batteries (4-pack),1,2.99,08/29/19 13:13,"926 West St, Los Angeles, CA 90001" +248872,Flatscreen TV,1,300,08/15/19 23:20,"802 9th St, Boston, MA 02215" +248873,Lightning Charging Cable,1,14.95,08/19/19 13:49,"874 14th St, Boston, MA 02215" +248874,Wired Headphones,1,11.99,08/27/19 15:42,"309 Highland St, New York City, NY 10001" +248875,USB-C Charging Cable,1,11.95,08/20/19 04:22,"944 Chestnut St, Los Angeles, CA 90001" +248876,AAA Batteries (4-pack),1,2.99,08/12/19 12:13,"97 Church St, New York City, NY 10001" +248877,AAA Batteries (4-pack),3,2.99,08/11/19 22:31,"885 West St, New York City, NY 10001" +248878,Wired Headphones,1,11.99,08/20/19 08:22,"939 Lincoln St, Los Angeles, CA 90001" +248879,AAA Batteries (4-pack),1,2.99,08/23/19 00:06,"640 Lake St, San Francisco, CA 94016" +248880,USB-C Charging Cable,1,11.95,08/13/19 10:12,"437 Meadow St, Los Angeles, CA 90001" +248881,Wired Headphones,1,11.99,08/15/19 12:07,"841 7th St, Los Angeles, CA 90001" +248882,ThinkPad Laptop,1,999.99,08/03/19 11:05,"769 Jackson St, Dallas, TX 75001" +248883,27in 4K Gaming Monitor,1,389.99,08/27/19 07:17,"419 Jackson St, Seattle, WA 98101" +248884,Wired Headphones,1,11.99,08/10/19 11:57,"736 Cedar St, Los Angeles, CA 90001" +248885,Wired Headphones,1,11.99,08/29/19 00:49,"8 11th St, Portland, OR 97035" +248886,Apple Airpods Headphones,1,150,08/20/19 08:11,"480 Forest St, Los Angeles, CA 90001" +248887,AA Batteries (4-pack),3,3.84,08/01/19 22:34,"165 Madison St, Boston, MA 02215" +248888,AAA Batteries (4-pack),2,2.99,08/15/19 17:34,"530 North St, San Francisco, CA 94016" +248889,USB-C Charging Cable,1,11.95,08/08/19 10:47,"50 Willow St, Atlanta, GA 30301" +248890,Google Phone,1,600,08/18/19 12:09,"70 Park St, Austin, TX 73301" +248890,USB-C Charging Cable,1,11.95,08/18/19 12:09,"70 Park St, Austin, TX 73301" +248891,AA Batteries (4-pack),1,3.84,08/30/19 00:22,"988 7th St, New York City, NY 10001" +248892,Apple Airpods Headphones,1,150,08/05/19 13:40,"573 14th St, San Francisco, CA 94016" +248892,USB-C Charging Cable,1,11.95,08/05/19 13:40,"573 14th St, San Francisco, CA 94016" +248893,Wired Headphones,1,11.99,08/14/19 10:53,"265 Johnson St, Austin, TX 73301" +248894,Apple Airpods Headphones,1,150,08/28/19 00:22,"776 Lake St, San Francisco, CA 94016" +248895,Bose SoundSport Headphones,1,99.99,08/11/19 09:48,"322 Center St, Atlanta, GA 30301" +248896,27in FHD Monitor,1,149.99,08/28/19 12:38,"899 Wilson St, New York City, NY 10001" +248897,27in FHD Monitor,1,149.99,08/05/19 17:37,"327 Maple St, San Francisco, CA 94016" +248898,AA Batteries (4-pack),1,3.84,08/07/19 08:55,"690 11th St, Seattle, WA 98101" +248899,Bose SoundSport Headphones,1,99.99,08/26/19 22:32,"163 Main St, New York City, NY 10001" +248900,Wired Headphones,1,11.99,08/11/19 01:07,"333 North St, New York City, NY 10001" +248901,Wired Headphones,1,11.99,08/02/19 03:35,"600 13th St, San Francisco, CA 94016" +248902,Bose SoundSport Headphones,1,99.99,08/05/19 22:54,"186 Maple St, New York City, NY 10001" +248903,Wired Headphones,1,11.99,08/26/19 21:30,"428 Park St, Austin, TX 73301" +248903,Lightning Charging Cable,1,14.95,08/26/19 21:30,"428 Park St, Austin, TX 73301" +248904,Apple Airpods Headphones,1,150,08/04/19 21:51,"232 Jefferson St, Atlanta, GA 30301" +248905,Macbook Pro Laptop,1,1700,08/19/19 18:19,"952 11th St, New York City, NY 10001" +248906,USB-C Charging Cable,1,11.95,08/31/19 09:29,"673 12th St, Portland, OR 97035" +248907,LG Washing Machine,1,600.0,08/09/19 14:42,"819 Forest St, New York City, NY 10001" +248908,iPhone,1,700,08/31/19 11:43,"542 9th St, Seattle, WA 98101" +248909,iPhone,1,700,08/02/19 22:36,"886 Hill St, Los Angeles, CA 90001" +248910,Google Phone,1,600,08/17/19 20:32,"491 Spruce St, Los Angeles, CA 90001" +248911,AA Batteries (4-pack),2,3.84,08/30/19 12:22,"860 Johnson St, Austin, TX 73301" +248912,AA Batteries (4-pack),3,3.84,08/10/19 16:41,"182 Main St, Portland, OR 97035" +248913,Apple Airpods Headphones,1,150,08/21/19 21:07,"686 Adams St, Seattle, WA 98101" +248914,USB-C Charging Cable,1,11.95,08/11/19 21:32,"318 Madison St, Seattle, WA 98101" +248915,27in 4K Gaming Monitor,1,389.99,08/26/19 13:23,"646 Forest St, New York City, NY 10001" +248916,34in Ultrawide Monitor,1,379.99,08/08/19 14:27,"564 7th St, Atlanta, GA 30301" +248917,Lightning Charging Cable,1,14.95,08/24/19 10:25,"287 Dogwood St, Los Angeles, CA 90001" +248918,USB-C Charging Cable,1,11.95,08/16/19 17:24,"520 Jefferson St, New York City, NY 10001" +248919,Lightning Charging Cable,1,14.95,08/31/19 18:57,"148 Center St, Los Angeles, CA 90001" +248920,Lightning Charging Cable,1,14.95,08/03/19 19:31,"968 Lincoln St, Los Angeles, CA 90001" +248921,AAA Batteries (4-pack),2,2.99,08/16/19 12:59,"941 Dogwood St, Los Angeles, CA 90001" +248922,LG Washing Machine,1,600.0,08/01/19 09:44,"203 Highland St, San Francisco, CA 94016" +248923,34in Ultrawide Monitor,1,379.99,08/23/19 17:55,"573 Jackson St, Seattle, WA 98101" +248924,USB-C Charging Cable,1,11.95,08/01/19 18:51,"250 Park St, San Francisco, CA 94016" +248925,Wired Headphones,1,11.99,08/24/19 09:41,"862 Jackson St, San Francisco, CA 94016" +248926,Macbook Pro Laptop,1,1700,08/09/19 09:27,"164 Center St, San Francisco, CA 94016" +248927,27in 4K Gaming Monitor,1,389.99,08/13/19 14:33,"926 Dogwood St, San Francisco, CA 94016" +248928,AA Batteries (4-pack),1,3.84,08/05/19 11:50,"73 Madison St, Austin, TX 73301" +248929,27in FHD Monitor,1,149.99,08/30/19 14:36,"563 Cedar St, Portland, ME 04101" +248930,Lightning Charging Cable,1,14.95,08/12/19 09:17,"37 Cedar St, San Francisco, CA 94016" +248931,AA Batteries (4-pack),1,3.84,08/02/19 13:57,"843 River St, Austin, TX 73301" +248932,USB-C Charging Cable,1,11.95,08/31/19 23:19,"863 South St, San Francisco, CA 94016" +248933,Lightning Charging Cable,1,14.95,08/08/19 09:42,"196 4th St, Austin, TX 73301" +248934,Apple Airpods Headphones,1,150,08/22/19 12:12,"217 West St, Portland, OR 97035" +248935,34in Ultrawide Monitor,1,379.99,08/23/19 23:44,"568 Sunset St, New York City, NY 10001" +248936,Bose SoundSport Headphones,1,99.99,08/06/19 21:13,"681 Chestnut St, Boston, MA 02215" +248937,Apple Airpods Headphones,1,150,08/27/19 18:25,"785 Hickory St, Los Angeles, CA 90001" +248938,iPhone,1,700,08/13/19 18:04,"715 Sunset St, New York City, NY 10001" +248938,Lightning Charging Cable,2,14.95,08/13/19 18:04,"715 Sunset St, New York City, NY 10001" +248939,AAA Batteries (4-pack),1,2.99,08/28/19 12:16,"33 Cherry St, San Francisco, CA 94016" +248940,27in 4K Gaming Monitor,1,389.99,08/08/19 16:03,"143 Cedar St, Austin, TX 73301" +248941,AA Batteries (4-pack),1,3.84,08/15/19 21:41,"378 Elm St, Dallas, TX 75001" +248942,Google Phone,1,600,08/23/19 18:36,"267 Elm St, Los Angeles, CA 90001" +248943,Apple Airpods Headphones,1,150,08/13/19 16:33,"404 Adams St, Los Angeles, CA 90001" +248944,AAA Batteries (4-pack),9,2.99,08/05/19 11:01,"31 9th St, Portland, OR 97035" +248945,27in 4K Gaming Monitor,1,389.99,08/21/19 14:47,"559 Lake St, San Francisco, CA 94016" +248946,Vareebadd Phone,1,400,08/03/19 07:03,"370 Hickory St, Los Angeles, CA 90001" +248947,AA Batteries (4-pack),1,3.84,08/17/19 16:56,"130 Forest St, Seattle, WA 98101" +248948,Apple Airpods Headphones,1,150,08/08/19 16:44,"492 Church St, San Francisco, CA 94016" +248949,USB-C Charging Cable,1,11.95,08/13/19 16:03,"573 Dogwood St, San Francisco, CA 94016" +248950,27in FHD Monitor,1,149.99,08/08/19 10:23,"721 North St, San Francisco, CA 94016" +248951,AAA Batteries (4-pack),1,2.99,08/02/19 12:51,"631 Johnson St, Portland, OR 97035" +248952,ThinkPad Laptop,1,999.99,08/16/19 10:54,"289 Chestnut St, Seattle, WA 98101" +248953,Google Phone,1,600,08/13/19 00:14,"754 Hickory St, Seattle, WA 98101" +248954,AA Batteries (4-pack),1,3.84,08/12/19 11:49,"742 Cherry St, Austin, TX 73301" +248955,Flatscreen TV,1,300,08/14/19 18:16,"597 12th St, Portland, OR 97035" +248956,Flatscreen TV,1,300,08/15/19 21:17,"521 1st St, San Francisco, CA 94016" +248957,AA Batteries (4-pack),1,3.84,08/15/19 13:20,"797 Lakeview St, San Francisco, CA 94016" +248958,AAA Batteries (4-pack),2,2.99,08/03/19 02:12,"527 Johnson St, Dallas, TX 75001" +248959,27in FHD Monitor,1,149.99,08/05/19 11:08,"823 Hickory St, San Francisco, CA 94016" +248960,Lightning Charging Cable,1,14.95,08/24/19 11:28,"812 Adams St, San Francisco, CA 94016" +248961,AAA Batteries (4-pack),1,2.99,08/02/19 11:20,"546 Meadow St, Boston, MA 02215" +248962,Apple Airpods Headphones,1,150,08/30/19 19:27,"11 Dogwood St, Los Angeles, CA 90001" +248963,Lightning Charging Cable,1,14.95,08/02/19 11:57,"627 North St, Boston, MA 02215" +248964,AA Batteries (4-pack),1,3.84,08/12/19 10:56,"533 South St, Boston, MA 02215" +248965,27in 4K Gaming Monitor,1,389.99,08/07/19 07:37,"219 Jackson St, Los Angeles, CA 90001" +248966,Lightning Charging Cable,1,14.95,08/06/19 09:54,"487 7th St, San Francisco, CA 94016" +248967,Wired Headphones,1,11.99,08/09/19 19:55,"300 Cherry St, Portland, ME 04101" +248968,Wired Headphones,1,11.99,08/24/19 19:47,"986 Hickory St, Los Angeles, CA 90001" +248969,34in Ultrawide Monitor,1,379.99,08/21/19 22:14,"754 Johnson St, Los Angeles, CA 90001" +248970,Apple Airpods Headphones,1,150,08/22/19 14:52,"914 Park St, New York City, NY 10001" +248971,27in FHD Monitor,1,149.99,08/27/19 19:48,"285 2nd St, Los Angeles, CA 90001" +248972,Wired Headphones,1,11.99,08/03/19 11:36,"492 Adams St, Austin, TX 73301" +248973,Lightning Charging Cable,1,14.95,08/08/19 21:20,"406 Lakeview St, Seattle, WA 98101" +248974,USB-C Charging Cable,1,11.95,08/18/19 22:09,"483 Main St, Boston, MA 02215" +248974,Lightning Charging Cable,1,14.95,08/18/19 22:09,"483 Main St, Boston, MA 02215" +248975,Wired Headphones,2,11.99,08/01/19 18:42,"452 Ridge St, San Francisco, CA 94016" +248976,AAA Batteries (4-pack),2,2.99,08/20/19 08:30,"494 Park St, Los Angeles, CA 90001" +248977,AAA Batteries (4-pack),1,2.99,08/19/19 15:19,"170 Sunset St, San Francisco, CA 94016" +248978,Lightning Charging Cable,1,14.95,08/20/19 00:31,"561 Pine St, San Francisco, CA 94016" +248979,Apple Airpods Headphones,1,150,08/28/19 16:09,"170 Cedar St, San Francisco, CA 94016" +248980,AAA Batteries (4-pack),2,2.99,08/21/19 09:04,"954 Main St, San Francisco, CA 94016" +248981,USB-C Charging Cable,1,11.95,08/25/19 15:49,"988 Hickory St, Atlanta, GA 30301" +248982,USB-C Charging Cable,1,11.95,08/06/19 19:43,"453 Lincoln St, San Francisco, CA 94016" +248983,AA Batteries (4-pack),2,3.84,08/02/19 17:58,"919 12th St, Los Angeles, CA 90001" +248984,AAA Batteries (4-pack),2,2.99,08/29/19 22:35,"74 Washington St, Seattle, WA 98101" +248985,AAA Batteries (4-pack),3,2.99,08/23/19 13:20,"539 Wilson St, San Francisco, CA 94016" +248986,Bose SoundSport Headphones,1,99.99,08/13/19 09:01,"976 Dogwood St, Seattle, WA 98101" +248987,Google Phone,1,600,08/31/19 16:20,"555 Hill St, Boston, MA 02215" +248987,Wired Headphones,1,11.99,08/31/19 16:20,"555 Hill St, Boston, MA 02215" +248988,iPhone,1,700,08/07/19 09:38,"917 9th St, San Francisco, CA 94016" +248989,34in Ultrawide Monitor,1,379.99,08/26/19 18:13,"397 2nd St, San Francisco, CA 94016" +248990,AA Batteries (4-pack),2,3.84,08/06/19 03:32,"751 10th St, San Francisco, CA 94016" +248991,ThinkPad Laptop,1,999.99,08/13/19 12:27,"638 Johnson St, Boston, MA 02215" +248992,USB-C Charging Cable,1,11.95,08/22/19 22:51,"485 Maple St, Los Angeles, CA 90001" +248993,27in FHD Monitor,1,149.99,08/12/19 17:11,"978 Church St, Dallas, TX 75001" +248994,AA Batteries (4-pack),2,3.84,08/17/19 18:36,"566 Elm St, New York City, NY 10001" +248995,Lightning Charging Cable,2,14.95,08/17/19 16:06,"96 North St, Portland, OR 97035" +248996,34in Ultrawide Monitor,1,379.99,08/02/19 18:05,"345 Hickory St, Los Angeles, CA 90001" +248997,27in FHD Monitor,1,149.99,08/11/19 19:28,"200 Sunset St, Los Angeles, CA 90001" +248998,Bose SoundSport Headphones,1,99.99,08/07/19 13:24,"556 Highland St, Portland, OR 97035" +248999,iPhone,1,700,08/06/19 22:03,"709 9th St, Seattle, WA 98101" +248999,Lightning Charging Cable,1,14.95,08/06/19 22:03,"709 9th St, Seattle, WA 98101" +249000,Apple Airpods Headphones,1,150,08/21/19 12:08,"514 Meadow St, Austin, TX 73301" +249001,27in FHD Monitor,1,149.99,08/30/19 20:30,"519 River St, San Francisco, CA 94016" +249002,USB-C Charging Cable,1,11.95,08/25/19 17:47,"548 Forest St, Boston, MA 02215" +249003,iPhone,1,700,08/15/19 00:33,"741 Spruce St, Boston, MA 02215" +249003,Lightning Charging Cable,1,14.95,08/15/19 00:33,"741 Spruce St, Boston, MA 02215" +249004,20in Monitor,1,109.99,08/30/19 22:27,"593 Main St, Atlanta, GA 30301" +249005,Flatscreen TV,1,300,08/28/19 09:55,"369 Adams St, Seattle, WA 98101" +249006,Flatscreen TV,1,300,08/11/19 17:34,"647 Ridge St, Boston, MA 02215" +249007,Apple Airpods Headphones,1,150,08/14/19 18:09,"507 Spruce St, Austin, TX 73301" +249008,Apple Airpods Headphones,1,150,08/19/19 18:21,"207 7th St, Austin, TX 73301" +249009,27in 4K Gaming Monitor,1,389.99,08/25/19 06:44,"503 North St, Boston, MA 02215" +249010,AAA Batteries (4-pack),1,2.99,08/07/19 13:46,"663 Lake St, San Francisco, CA 94016" +249011,Bose SoundSport Headphones,1,99.99,08/22/19 09:17,"424 6th St, Atlanta, GA 30301" +249012,Flatscreen TV,1,300,08/15/19 16:05,"841 1st St, San Francisco, CA 94016" +249013,Lightning Charging Cable,1,14.95,08/13/19 20:12,"326 Wilson St, San Francisco, CA 94016" +249014,AAA Batteries (4-pack),4,2.99,08/05/19 11:54,"83 6th St, Dallas, TX 75001" +249015,AAA Batteries (4-pack),1,2.99,08/08/19 12:38,"445 Center St, Boston, MA 02215" +249016,Lightning Charging Cable,1,14.95,08/06/19 17:05,"248 Willow St, San Francisco, CA 94016" +249017,Wired Headphones,1,11.99,08/01/19 17:04,"323 2nd St, Los Angeles, CA 90001" +249018,AAA Batteries (4-pack),1,2.99,08/11/19 15:46,"924 Forest St, Boston, MA 02215" +249018,Wired Headphones,1,11.99,08/11/19 15:46,"924 Forest St, Boston, MA 02215" +249019,20in Monitor,1,109.99,08/08/19 12:08,"144 Lakeview St, San Francisco, CA 94016" +249020,AAA Batteries (4-pack),4,2.99,08/01/19 18:19,"396 Forest St, Dallas, TX 75001" +249021,ThinkPad Laptop,1,999.99,08/14/19 15:37,"574 Lake St, Seattle, WA 98101" +249022,Lightning Charging Cable,3,14.95,08/29/19 11:33,"504 Elm St, Boston, MA 02215" +249023,iPhone,1,700,08/10/19 11:26,"693 Jefferson St, San Francisco, CA 94016" +249024,20in Monitor,1,109.99,08/26/19 14:39,"786 Church St, Boston, MA 02215" +249025,Wired Headphones,1,11.99,08/05/19 10:59,"597 Johnson St, Los Angeles, CA 90001" +249026,Lightning Charging Cable,1,14.95,08/08/19 20:31,"438 Lincoln St, Portland, OR 97035" +249027,Lightning Charging Cable,1,14.95,08/04/19 19:17,"74 Jefferson St, Dallas, TX 75001" +249028,20in Monitor,1,109.99,08/10/19 14:49,"362 North St, San Francisco, CA 94016" +249029,USB-C Charging Cable,1,11.95,08/02/19 23:51,"470 Dogwood St, New York City, NY 10001" +249030,ThinkPad Laptop,1,999.99,08/10/19 19:36,"700 Washington St, Portland, OR 97035" +249031,USB-C Charging Cable,1,11.95,08/13/19 15:32,"534 Highland St, San Francisco, CA 94016" +249032,iPhone,1,700,08/30/19 12:48,"918 Hill St, Dallas, TX 75001" +249033,AAA Batteries (4-pack),2,2.99,08/06/19 13:17,"28 Dogwood St, San Francisco, CA 94016" +249034,AAA Batteries (4-pack),1,2.99,08/09/19 09:08,"610 Chestnut St, Austin, TX 73301" +249035,AA Batteries (4-pack),1,3.84,08/26/19 11:10,"919 Cedar St, Seattle, WA 98101" +249036,Wired Headphones,1,11.99,08/30/19 20:51,"225 West St, Los Angeles, CA 90001" +249037,Wired Headphones,2,11.99,08/25/19 12:25,"278 Hill St, Austin, TX 73301" +249038,AA Batteries (4-pack),2,3.84,08/18/19 09:03,"822 7th St, Boston, MA 02215" +249039,AAA Batteries (4-pack),3,2.99,08/05/19 07:44,"356 Lake St, Seattle, WA 98101" +249040,Lightning Charging Cable,1,14.95,08/09/19 19:22,"234 Hickory St, Austin, TX 73301" +249041,USB-C Charging Cable,1,11.95,08/23/19 08:10,"971 Dogwood St, Seattle, WA 98101" +249042,Wired Headphones,1,11.99,08/04/19 18:02,"823 Jackson St, Dallas, TX 75001" +249043,Lightning Charging Cable,1,14.95,08/15/19 09:01,"586 Jefferson St, Dallas, TX 75001" +249044,USB-C Charging Cable,1,11.95,08/20/19 19:39,"820 North St, Boston, MA 02215" +249045,AA Batteries (4-pack),1,3.84,08/18/19 23:35,"549 Chestnut St, Los Angeles, CA 90001" +249046,Apple Airpods Headphones,1,150,08/31/19 08:13,"336 West St, Seattle, WA 98101" +249047,Wired Headphones,1,11.99,08/09/19 13:53,"891 Church St, Seattle, WA 98101" +249048,Wired Headphones,2,11.99,08/21/19 19:01,"628 11th St, Los Angeles, CA 90001" +249049,Wired Headphones,1,11.99,08/07/19 12:02,"714 6th St, Seattle, WA 98101" +249050,34in Ultrawide Monitor,1,379.99,08/06/19 16:38,"533 2nd St, San Francisco, CA 94016" +249051,USB-C Charging Cable,1,11.95,08/15/19 16:40,"17 Lincoln St, Atlanta, GA 30301" +249052,Apple Airpods Headphones,1,150,08/30/19 23:41,"197 North St, San Francisco, CA 94016" +249053,AA Batteries (4-pack),3,3.84,08/09/19 20:37,"500 Center St, Atlanta, GA 30301" +249054,Flatscreen TV,1,300,08/15/19 21:44,"131 Main St, San Francisco, CA 94016" +249055,iPhone,1,700,08/29/19 13:22,"413 Main St, Dallas, TX 75001" +249056,20in Monitor,1,109.99,08/12/19 19:50,"505 2nd St, Los Angeles, CA 90001" +249057,Google Phone,1,600,08/10/19 16:32,"90 Jackson St, New York City, NY 10001" +249057,USB-C Charging Cable,1,11.95,08/10/19 16:32,"90 Jackson St, New York City, NY 10001" +249058,Macbook Pro Laptop,1,1700,08/07/19 18:14,"729 Hill St, Boston, MA 02215" +249059,AA Batteries (4-pack),1,3.84,08/25/19 19:50,"972 Lincoln St, San Francisco, CA 94016" +249060,Lightning Charging Cable,1,14.95,08/19/19 17:43,"596 11th St, Los Angeles, CA 90001" +249061,Flatscreen TV,1,300,08/12/19 21:59,"837 Hickory St, San Francisco, CA 94016" +249062,Bose SoundSport Headphones,1,99.99,08/01/19 21:32,"815 Lakeview St, Los Angeles, CA 90001" +249063,AA Batteries (4-pack),1,3.84,08/10/19 12:42,"99 Jefferson St, Atlanta, GA 30301" +249064,Vareebadd Phone,1,400,08/24/19 07:57,"368 14th St, New York City, NY 10001" +249064,USB-C Charging Cable,1,11.95,08/24/19 07:57,"368 14th St, New York City, NY 10001" +249065,Wired Headphones,1,11.99,08/17/19 20:29,"307 Ridge St, New York City, NY 10001" +249066,Wired Headphones,1,11.99,08/10/19 18:46,"71 12th St, Los Angeles, CA 90001" +249067,AA Batteries (4-pack),1,3.84,08/06/19 02:16,"230 Park St, New York City, NY 10001" +249068,USB-C Charging Cable,1,11.95,08/26/19 20:03,"140 5th St, San Francisco, CA 94016" +249069,Bose SoundSport Headphones,1,99.99,08/14/19 19:47,"802 Hickory St, San Francisco, CA 94016" +249070,LG Washing Machine,1,600.0,08/28/19 09:08,"458 Madison St, Boston, MA 02215" +249071,Lightning Charging Cable,1,14.95,08/20/19 14:34,"461 6th St, New York City, NY 10001" +249072,Lightning Charging Cable,1,14.95,08/12/19 16:36,"420 Jackson St, San Francisco, CA 94016" +249073,27in 4K Gaming Monitor,1,389.99,08/14/19 21:03,"728 Adams St, Los Angeles, CA 90001" +249074,Lightning Charging Cable,1,14.95,08/28/19 11:52,"571 Pine St, New York City, NY 10001" +249075,34in Ultrawide Monitor,1,379.99,08/14/19 12:44,"97 Park St, San Francisco, CA 94016" +249076,AA Batteries (4-pack),1,3.84,08/30/19 23:01,"440 10th St, Portland, OR 97035" +249077,Macbook Pro Laptop,1,1700,08/18/19 21:14,"968 6th St, New York City, NY 10001" +249078,AA Batteries (4-pack),3,3.84,08/30/19 15:13,"650 Lincoln St, Boston, MA 02215" +249079,USB-C Charging Cable,1,11.95,08/17/19 06:24,"555 5th St, Seattle, WA 98101" +249080,Flatscreen TV,1,300,08/07/19 09:18,"892 4th St, Seattle, WA 98101" +249081,Bose SoundSport Headphones,1,99.99,08/21/19 00:05,"96 West St, Atlanta, GA 30301" +249082,ThinkPad Laptop,1,999.99,08/15/19 13:20,"980 Jefferson St, Atlanta, GA 30301" +249083,AAA Batteries (4-pack),2,2.99,08/15/19 21:35,"605 Lincoln St, New York City, NY 10001" +249084,Lightning Charging Cable,2,14.95,08/14/19 15:41,"251 9th St, San Francisco, CA 94016" +249085,Apple Airpods Headphones,1,150,08/24/19 17:02,"899 Forest St, San Francisco, CA 94016" +249086,AA Batteries (4-pack),1,3.84,08/15/19 15:39,"97 Park St, San Francisco, CA 94016" +249087,27in 4K Gaming Monitor,1,389.99,08/29/19 19:18,"951 9th St, Los Angeles, CA 90001" +249088,AA Batteries (4-pack),2,3.84,08/07/19 11:51,"343 12th St, Seattle, WA 98101" +249089,USB-C Charging Cable,1,11.95,08/15/19 08:00,"629 1st St, Atlanta, GA 30301" +249090,Bose SoundSport Headphones,1,99.99,08/05/19 16:51,"146 Cherry St, Los Angeles, CA 90001" +249091,iPhone,1,700,08/06/19 18:23,"108 Johnson St, Seattle, WA 98101" +249092,AA Batteries (4-pack),1,3.84,08/13/19 11:43,"521 River St, Los Angeles, CA 90001" +249093,AA Batteries (4-pack),1,3.84,08/02/19 21:04,"895 Lake St, Boston, MA 02215" +249094,Bose SoundSport Headphones,1,99.99,08/01/19 17:08,"809 Hill St, Atlanta, GA 30301" +249095,ThinkPad Laptop,1,999.99,08/24/19 17:39,"519 1st St, Atlanta, GA 30301" +249096,27in FHD Monitor,1,149.99,08/07/19 09:57,"161 Pine St, Los Angeles, CA 90001" +249097,AA Batteries (4-pack),1,3.84,08/29/19 11:31,"824 Hill St, Los Angeles, CA 90001" +249098,Apple Airpods Headphones,1,150,08/09/19 12:32,"432 Church St, San Francisco, CA 94016" +249099,AA Batteries (4-pack),1,3.84,08/17/19 21:00,"120 Cedar St, Austin, TX 73301" +249100,Apple Airpods Headphones,1,150,08/10/19 00:59,"97 10th St, Atlanta, GA 30301" +249101,Vareebadd Phone,1,400,08/27/19 12:35,"998 Johnson St, Los Angeles, CA 90001" +249101,USB-C Charging Cable,1,11.95,08/27/19 12:35,"998 Johnson St, Los Angeles, CA 90001" +249102,USB-C Charging Cable,1,11.95,08/22/19 11:58,"632 Lakeview St, Atlanta, GA 30301" +249103,Wired Headphones,1,11.99,08/09/19 19:55,"584 Center St, San Francisco, CA 94016" +249104,AAA Batteries (4-pack),2,2.99,08/07/19 11:53,"897 Adams St, Austin, TX 73301" +249105,34in Ultrawide Monitor,1,379.99,08/03/19 11:14,"920 West St, Boston, MA 02215" +249106,Bose SoundSport Headphones,1,99.99,08/13/19 13:28,"915 Chestnut St, Atlanta, GA 30301" +249107,AA Batteries (4-pack),1,3.84,08/13/19 19:52,"122 Dogwood St, Atlanta, GA 30301" +249108,AAA Batteries (4-pack),1,2.99,08/07/19 19:09,"180 Walnut St, New York City, NY 10001" +249109,AAA Batteries (4-pack),1,2.99,08/06/19 07:36,"764 Wilson St, Seattle, WA 98101" +249110,Wired Headphones,1,11.99,08/29/19 14:00,"955 2nd St, Boston, MA 02215" +249111,USB-C Charging Cable,1,11.95,08/08/19 11:22,"286 Maple St, San Francisco, CA 94016" +249112,Apple Airpods Headphones,1,150,08/24/19 09:14,"721 2nd St, San Francisco, CA 94016" +249113,34in Ultrawide Monitor,1,379.99,08/14/19 18:21,"164 5th St, San Francisco, CA 94016" +249114,Apple Airpods Headphones,1,150,08/18/19 12:05,"353 Lake St, New York City, NY 10001" +249115,AA Batteries (4-pack),1,3.84,08/26/19 15:53,"42 Jackson St, San Francisco, CA 94016" +249116,Lightning Charging Cable,1,14.95,08/25/19 21:18,"907 North St, New York City, NY 10001" +249117,AA Batteries (4-pack),1,3.84,08/17/19 21:36,"693 Hill St, New York City, NY 10001" +249117,Lightning Charging Cable,1,14.95,08/17/19 21:36,"693 Hill St, New York City, NY 10001" +249118,Wired Headphones,1,11.99,08/25/19 01:38,"794 11th St, Boston, MA 02215" +249119,Wired Headphones,1,11.99,08/28/19 14:10,"806 4th St, Portland, OR 97035" +249120,AA Batteries (4-pack),1,3.84,08/28/19 18:14,"186 Jefferson St, Portland, ME 04101" +249121,Wired Headphones,1,11.99,08/31/19 14:31,"184 11th St, Portland, OR 97035" +249122,Vareebadd Phone,1,400,08/29/19 19:12,"712 Meadow St, Boston, MA 02215" +249123,AAA Batteries (4-pack),1,2.99,08/28/19 07:32,"809 Wilson St, Los Angeles, CA 90001" +249124,AAA Batteries (4-pack),1,2.99,08/14/19 08:29,"738 1st St, Austin, TX 73301" +249125,Apple Airpods Headphones,1,150,08/20/19 07:54,"848 Ridge St, San Francisco, CA 94016" +249126,Apple Airpods Headphones,1,150,08/01/19 19:38,"862 Lincoln St, New York City, NY 10001" +249127,AA Batteries (4-pack),1,3.84,08/26/19 12:41,"512 Dogwood St, Los Angeles, CA 90001" +249128,34in Ultrawide Monitor,1,379.99,08/31/19 17:32,"757 Wilson St, Boston, MA 02215" +249129,Wired Headphones,1,11.99,08/07/19 11:41,"666 10th St, New York City, NY 10001" +249130,Macbook Pro Laptop,1,1700,08/17/19 21:14,"668 11th St, San Francisco, CA 94016" +249131,Apple Airpods Headphones,1,150,08/27/19 21:27,"528 North St, Los Angeles, CA 90001" +249132,Lightning Charging Cable,1,14.95,08/19/19 16:46,"338 6th St, Dallas, TX 75001" +249133,ThinkPad Laptop,1,999.99,08/01/19 12:33,"518 5th St, Portland, OR 97035" +249134,AAA Batteries (4-pack),1,2.99,08/02/19 14:13,"641 Pine St, Boston, MA 02215" +249135,iPhone,1,700,08/30/19 12:57,"291 6th St, San Francisco, CA 94016" +249135,Lightning Charging Cable,1,14.95,08/30/19 12:57,"291 6th St, San Francisco, CA 94016" +249136,AA Batteries (4-pack),2,3.84,08/08/19 23:01,"468 Walnut St, Los Angeles, CA 90001" +249137,Flatscreen TV,1,300,08/05/19 14:38,"804 Lincoln St, Boston, MA 02215" +249138,iPhone,1,700,08/02/19 06:53,"503 Cherry St, San Francisco, CA 94016" +249139,Macbook Pro Laptop,1,1700,08/09/19 11:37,"965 Hill St, Austin, TX 73301" +249140,Bose SoundSport Headphones,1,99.99,08/03/19 10:03,"598 Adams St, Atlanta, GA 30301" +249141,Apple Airpods Headphones,1,150,08/24/19 15:35,"160 Lakeview St, San Francisco, CA 94016" +249142,USB-C Charging Cable,2,11.95,08/13/19 17:10,"335 Spruce St, Dallas, TX 75001" +249143,AAA Batteries (4-pack),2,2.99,08/16/19 10:02,"60 Walnut St, San Francisco, CA 94016" +249144,ThinkPad Laptop,1,999.99,08/07/19 10:13,"306 Maple St, Los Angeles, CA 90001" +249145,AAA Batteries (4-pack),2,2.99,08/05/19 00:22,"660 Hickory St, New York City, NY 10001" +249146,34in Ultrawide Monitor,1,379.99,08/15/19 06:29,"354 Main St, Los Angeles, CA 90001" +249147,34in Ultrawide Monitor,1,379.99,08/30/19 09:29,"781 13th St, Portland, OR 97035" +249148,Macbook Pro Laptop,1,1700,08/22/19 10:44,"762 Elm St, San Francisco, CA 94016" +249149,AA Batteries (4-pack),1,3.84,08/25/19 17:03,"25 Wilson St, Los Angeles, CA 90001" +249150,iPhone,1,700,08/22/19 12:41,"615 10th St, Seattle, WA 98101" +249150,Bose SoundSport Headphones,1,99.99,08/22/19 12:41,"615 10th St, Seattle, WA 98101" +249151,Google Phone,1,600,08/04/19 02:21,"249 Lake St, Austin, TX 73301" +249152,AAA Batteries (4-pack),1,2.99,08/26/19 11:39,"844 Center St, Boston, MA 02215" +249153,Bose SoundSport Headphones,1,99.99,08/02/19 16:00,"944 Church St, Portland, OR 97035" +249154,Bose SoundSport Headphones,1,99.99,08/18/19 19:22,"444 Cedar St, Seattle, WA 98101" +249155,AAA Batteries (4-pack),1,2.99,08/16/19 17:21,"116 Church St, New York City, NY 10001" +249156,iPhone,1,700,08/11/19 21:43,"881 Adams St, Los Angeles, CA 90001" +249157,Lightning Charging Cable,1,14.95,08/20/19 20:08,"172 Sunset St, Seattle, WA 98101" +249158,Apple Airpods Headphones,1,150,08/01/19 18:44,"967 South St, San Francisco, CA 94016" +249159,27in 4K Gaming Monitor,1,389.99,08/01/19 12:24,"146 Hill St, Los Angeles, CA 90001" +249160,Apple Airpods Headphones,1,150,08/17/19 14:25,"527 6th St, San Francisco, CA 94016" +249161,Wired Headphones,1,11.99,08/01/19 15:36,"738 Park St, Atlanta, GA 30301" +249162,AAA Batteries (4-pack),1,2.99,08/14/19 21:53,"930 2nd St, Boston, MA 02215" +249163,Wired Headphones,1,11.99,08/20/19 11:05,"876 9th St, Boston, MA 02215" +249164,Lightning Charging Cable,3,14.95,08/13/19 13:22,"713 Wilson St, San Francisco, CA 94016" +249165,Apple Airpods Headphones,1,150,08/26/19 16:17,"25 Lincoln St, San Francisco, CA 94016" +249166,AAA Batteries (4-pack),1,2.99,08/10/19 14:32,"866 10th St, Austin, TX 73301" +249167,AA Batteries (4-pack),1,3.84,08/21/19 10:51,"324 Church St, Los Angeles, CA 90001" +249168,Apple Airpods Headphones,1,150,08/24/19 15:27,"183 Willow St, Boston, MA 02215" +249169,AA Batteries (4-pack),1,3.84,08/11/19 18:28,"257 Cherry St, San Francisco, CA 94016" +249170,AA Batteries (4-pack),2,3.84,08/11/19 13:24,"50 Main St, Atlanta, GA 30301" +249171,Bose SoundSport Headphones,1,99.99,08/10/19 15:29,"296 Cherry St, Boston, MA 02215" +249172,Bose SoundSport Headphones,1,99.99,08/23/19 06:36,"853 Chestnut St, Los Angeles, CA 90001" +249173,ThinkPad Laptop,1,999.99,08/15/19 12:38,"716 Pine St, Los Angeles, CA 90001" +249174,Macbook Pro Laptop,1,1700,08/24/19 15:26,"774 Walnut St, Portland, ME 04101" +249175,Apple Airpods Headphones,1,150,08/03/19 13:55,"748 6th St, Seattle, WA 98101" +249176,AAA Batteries (4-pack),1,2.99,08/10/19 19:35,"938 South St, San Francisco, CA 94016" +249177,Wired Headphones,1,11.99,08/19/19 23:09,"359 14th St, Los Angeles, CA 90001" +249178,USB-C Charging Cable,1,11.95,08/10/19 17:39,"404 Park St, San Francisco, CA 94016" +249179,Apple Airpods Headphones,1,150,08/11/19 13:43,"333 Meadow St, New York City, NY 10001" +249180,Apple Airpods Headphones,1,150,08/03/19 13:21,"136 Spruce St, San Francisco, CA 94016" +249181,Flatscreen TV,1,300,08/07/19 15:03,"955 14th St, New York City, NY 10001" +249182,ThinkPad Laptop,1,999.99,08/03/19 23:05,"666 Cherry St, Seattle, WA 98101" +249183,Bose SoundSport Headphones,1,99.99,08/12/19 14:37,"349 Park St, New York City, NY 10001" +249184,34in Ultrawide Monitor,1,379.99,08/23/19 17:11,"486 5th St, New York City, NY 10001" +249185,iPhone,1,700,08/16/19 16:16,"152 Lake St, New York City, NY 10001" +249186,34in Ultrawide Monitor,1,379.99,08/05/19 12:12,"937 Spruce St, Atlanta, GA 30301" +249187,iPhone,1,700,08/22/19 08:32,"900 Jefferson St, San Francisco, CA 94016" +249187,Wired Headphones,1,11.99,08/22/19 08:32,"900 Jefferson St, San Francisco, CA 94016" +249188,Lightning Charging Cable,1,14.95,08/21/19 11:06,"301 Spruce St, Dallas, TX 75001" +249189,USB-C Charging Cable,1,11.95,08/28/19 10:41,"138 5th St, San Francisco, CA 94016" +249190,Google Phone,1,600,08/11/19 11:50,"902 Adams St, Atlanta, GA 30301" +249191,Lightning Charging Cable,1,14.95,08/30/19 19:50,"579 14th St, San Francisco, CA 94016" +249192,AAA Batteries (4-pack),1,2.99,08/29/19 14:08,"92 Meadow St, San Francisco, CA 94016" +249193,AAA Batteries (4-pack),1,2.99,08/26/19 15:18,"125 10th St, Austin, TX 73301" +249194,Wired Headphones,1,11.99,08/02/19 23:14,"221 Adams St, New York City, NY 10001" +249195,AA Batteries (4-pack),1,3.84,08/17/19 14:51,"656 1st St, New York City, NY 10001" +249196,AA Batteries (4-pack),1,3.84,08/06/19 02:55,"442 Madison St, Boston, MA 02215" +249197,Vareebadd Phone,1,400,08/30/19 16:36,"985 14th St, San Francisco, CA 94016" +249198,Apple Airpods Headphones,1,150,08/04/19 21:02,"41 Jefferson St, Dallas, TX 75001" +249199,Google Phone,1,600,08/21/19 13:42,"144 Lincoln St, Portland, OR 97035" +249200,AA Batteries (4-pack),2,3.84,08/09/19 21:32,"289 Pine St, Dallas, TX 75001" +249201,Bose SoundSport Headphones,1,99.99,08/15/19 19:58,"603 8th St, Dallas, TX 75001" +249202,Wired Headphones,1,11.99,08/28/19 14:07,"60 14th St, New York City, NY 10001" +249203,Flatscreen TV,1,300,08/14/19 16:02,"824 Walnut St, Boston, MA 02215" +249204,Bose SoundSport Headphones,1,99.99,08/13/19 11:32,"738 Highland St, San Francisco, CA 94016" +249205,Bose SoundSport Headphones,1,99.99,08/11/19 15:48,"947 14th St, Atlanta, GA 30301" +249206,Apple Airpods Headphones,1,150,08/22/19 19:41,"592 Center St, Atlanta, GA 30301" +249207,27in 4K Gaming Monitor,1,389.99,08/29/19 19:13,"249 Adams St, Atlanta, GA 30301" +249208,Vareebadd Phone,1,400,08/09/19 08:00,"890 12th St, Seattle, WA 98101" +249209,USB-C Charging Cable,1,11.95,08/20/19 13:02,"187 Jefferson St, New York City, NY 10001" +249210,Apple Airpods Headphones,1,150,08/09/19 18:16,"685 South St, Seattle, WA 98101" +249211,34in Ultrawide Monitor,1,379.99,08/31/19 21:36,"42 Highland St, New York City, NY 10001" +249212,USB-C Charging Cable,1,11.95,08/18/19 23:34,"808 Madison St, Los Angeles, CA 90001" +249213,Wired Headphones,1,11.99,08/06/19 23:43,"699 11th St, Dallas, TX 75001" +249214,AA Batteries (4-pack),1,3.84,08/21/19 20:05,"89 14th St, Los Angeles, CA 90001" +249215,AA Batteries (4-pack),1,3.84,08/08/19 14:46,"227 River St, Los Angeles, CA 90001" +249216,Lightning Charging Cable,1,14.95,08/20/19 10:32,"943 Park St, Boston, MA 02215" +249217,34in Ultrawide Monitor,1,379.99,08/07/19 23:17,"810 Highland St, Dallas, TX 75001" +249218,iPhone,1,700,08/23/19 13:27,"392 Washington St, Portland, OR 97035" +249219,34in Ultrawide Monitor,1,379.99,08/06/19 18:13,"473 North St, Atlanta, GA 30301" +249220,Bose SoundSport Headphones,1,99.99,08/16/19 19:04,"427 Jefferson St, Dallas, TX 75001" +249221,iPhone,1,700,08/26/19 20:11,"869 Center St, Boston, MA 02215" +249222,USB-C Charging Cable,1,11.95,08/03/19 22:39,"462 Cherry St, Dallas, TX 75001" +249223,USB-C Charging Cable,1,11.95,08/13/19 10:51,"47 Adams St, Los Angeles, CA 90001" +249224,USB-C Charging Cable,1,11.95,08/20/19 09:52,"16 Wilson St, San Francisco, CA 94016" +249225,Macbook Pro Laptop,1,1700,08/27/19 09:38,"796 Chestnut St, San Francisco, CA 94016" +249226,AA Batteries (4-pack),1,3.84,08/03/19 17:37,"234 Willow St, New York City, NY 10001" +249227,ThinkPad Laptop,1,999.99,08/31/19 14:26,"103 Lakeview St, San Francisco, CA 94016" +249228,AA Batteries (4-pack),2,3.84,08/31/19 10:08,"961 Lake St, Seattle, WA 98101" +249229,Apple Airpods Headphones,1,150,08/23/19 16:54,"6 River St, San Francisco, CA 94016" diff --git a/sales_data/Sales_December_2019.csv b/sales_data/Sales_December_2019.csv new file mode 100644 index 0000000..86784c0 --- /dev/null +++ b/sales_data/Sales_December_2019.csv @@ -0,0 +1,24307 @@ +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +298467,USB-C Charging Cable,1,11.95,12/28/19 17:36,"968 6th St, San Francisco, CA 94016" +298468,Lightning Charging Cable,1,14.95,12/08/19 19:30,"327 5th St, New York City, NY 10001" +298469,Lightning Charging Cable,1,14.95,12/14/19 09:25,"190 Meadow St, New York City, NY 10001" +298470,Wired Headphones,1,11.99,12/04/19 18:46,"248 Sunset St, San Francisco, CA 94016" +298471,USB-C Charging Cable,1,11.95,12/27/19 14:18,"475 Cedar St, Boston, MA 02215" +298472,Wired Headphones,1,11.99,12/11/19 00:06,"428 Jefferson St, Los Angeles, CA 90001" +298473,Apple Airpods Headphones,1,150.0,12/31/19 18:17,"172 8th St, Atlanta, GA 30301" +298474,Apple Airpods Headphones,1,150.0,12/04/19 19:11,"151 12th St, San Francisco, CA 94016" +298475,AA Batteries (4-pack),2,3.84,12/20/19 07:02,"895 Madison St, San Francisco, CA 94016" +298476,AA Batteries (4-pack),2,3.84,12/13/19 12:51,"797 Maple St, Atlanta, GA 30301" +298477,iPhone,1,700.0,12/08/19 14:26,"756 North St, Boston, MA 02215" +298478,Flatscreen TV,1,300.0,12/19/19 20:02,"365 12th St, Portland, OR 97035" +298479,AA Batteries (4-pack),2,3.84,12/19/19 11:44,"799 Pine St, Atlanta, GA 30301" +298480,AA Batteries (4-pack),1,3.84,12/23/19 15:06,"842 8th St, New York City, NY 10001" +298481,Apple Airpods Headphones,1,150.0,12/19/19 22:41,"698 Jackson St, Los Angeles, CA 90001" +298482,Bose SoundSport Headphones,1,99.99,12/29/19 14:38,"152 7th St, San Francisco, CA 94016" +298483,34in Ultrawide Monitor,1,379.99,12/14/19 09:59,"37 Meadow St, New York City, NY 10001" +298484,Wired Headphones,1,11.99,12/07/19 17:47,"1 Willow St, New York City, NY 10001" +298485,AAA Batteries (4-pack),1,2.99,12/16/19 11:41,"974 Park St, Seattle, WA 98101" +298486,Flatscreen TV,1,300.0,12/20/19 13:42,"402 5th St, Los Angeles, CA 90001" +298487,Lightning Charging Cable,1,14.95,12/02/19 11:57,"193 Cedar St, Austin, TX 73301" +298488,Lightning Charging Cable,1,14.95,12/19/19 09:17,"475 9th St, Los Angeles, CA 90001" +298489,AAA Batteries (4-pack),1,2.99,12/09/19 19:14,"727 Adams St, San Francisco, CA 94016" +298490,Lightning Charging Cable,1,14.95,12/06/19 11:06,"434 Cedar St, Los Angeles, CA 90001" +298491,AA Batteries (4-pack),1,3.84,12/27/19 14:10,"726 Park St, Los Angeles, CA 90001" +298492,Wired Headphones,1,11.99,12/21/19 20:00,"163 Center St, Seattle, WA 98101" +298493,27in FHD Monitor,1,149.99,12/24/19 13:57,"642 2nd St, Atlanta, GA 30301" +298494,Macbook Pro Laptop,1,1700.0,12/15/19 18:07,"23 Willow St, San Francisco, CA 94016" +298495,Lightning Charging Cable,1,14.95,12/02/19 20:07,"758 Maple St, New York City, NY 10001" +298496,Macbook Pro Laptop,1,1700.0,12/22/19 16:29,"698 8th St, San Francisco, CA 94016" +298497,20in Monitor,1,109.99,12/28/19 14:08,"913 6th St, Los Angeles, CA 90001" +298498,AAA Batteries (4-pack),2,2.99,12/04/19 15:47,"940 1st St, New York City, NY 10001" +298499,Lightning Charging Cable,1,14.95,12/30/19 14:08,"457 Highland St, Atlanta, GA 30301" +298500,AA Batteries (4-pack),1,3.84,12/06/19 16:31,"362 South St, Dallas, TX 75001" +298501,Wired Headphones,1,11.99,12/18/19 13:32,"708 Walnut St, Atlanta, GA 30301" +298502,USB-C Charging Cable,1,11.95,12/26/19 11:16,"821 Wilson St, Boston, MA 02215" +298503,Lightning Charging Cable,1,14.95,12/13/19 14:55,"422 4th St, Boston, MA 02215" +298504,AA Batteries (4-pack),1,3.84,12/03/19 20:05,"795 Forest St, New York City, NY 10001" +298505,Bose SoundSport Headphones,1,99.99,12/13/19 17:18,"688 River St, Portland, OR 97035" +298506,Vareebadd Phone,1,400.0,12/07/19 01:48,"831 West St, San Francisco, CA 94016" +298507,iPhone,1,700.0,12/08/19 15:13,"735 11th St, New York City, NY 10001" +298508,AA Batteries (4-pack),1,3.84,12/09/19 09:32,"546 Hickory St, Los Angeles, CA 90001" +298509,Apple Airpods Headphones,1,150.0,12/26/19 18:08,"483 Elm St, Los Angeles, CA 90001" +298510,AA Batteries (4-pack),1,3.84,12/28/19 00:35,"170 13th St, Atlanta, GA 30301" +298511,Lightning Charging Cable,1,14.95,12/23/19 16:12,"765 Chestnut St, Boston, MA 02215" +298512,Bose SoundSport Headphones,1,99.99,12/02/19 08:45,"271 Ridge St, Boston, MA 02215" +298513,Macbook Pro Laptop,1,1700.0,12/22/19 09:56,"264 Pine St, Austin, TX 73301" +298514,USB-C Charging Cable,1,11.95,12/16/19 12:18,"750 Cedar St, Seattle, WA 98101" +298514,AA Batteries (4-pack),1,3.84,12/16/19 12:18,"750 Cedar St, Seattle, WA 98101" +298515,Macbook Pro Laptop,1,1700.0,12/17/19 10:22,"901 Ridge St, Dallas, TX 75001" +298516,Apple Airpods Headphones,1,150.0,12/31/19 14:38,"211 Pine St, Boston, MA 02215" +298517,AA Batteries (4-pack),1,3.84,12/28/19 13:16,"223 Washington St, Boston, MA 02215" +298518,AA Batteries (4-pack),2,3.84,12/09/19 03:03,"397 Sunset St, Seattle, WA 98101" +298519,Lightning Charging Cable,1,14.95,12/24/19 19:41,"646 Pine St, San Francisco, CA 94016" +298520,Apple Airpods Headphones,1,150.0,12/07/19 12:07,"152 Park St, Austin, TX 73301" +298521,Apple Airpods Headphones,1,150.0,12/13/19 00:08,"812 Main St, Atlanta, GA 30301" +298522,AA Batteries (4-pack),1,3.84,12/23/19 06:34,"650 Center St, Atlanta, GA 30301" +298523,Lightning Charging Cable,1,14.95,12/10/19 12:43,"648 River St, San Francisco, CA 94016" +298524,Macbook Pro Laptop,1,1700.0,12/02/19 19:52,"503 Hickory St, Portland, OR 97035" +298525,AA Batteries (4-pack),2,3.84,12/17/19 12:59,"898 Wilson St, San Francisco, CA 94016" +298526,AA Batteries (4-pack),3,3.84,12/26/19 16:28,"307 Main St, Portland, OR 97035" +298527,20in Monitor,1,109.99,12/05/19 21:19,"267 Spruce St, San Francisco, CA 94016" +298528,Wired Headphones,1,11.99,12/19/19 10:36,"82 Pine St, New York City, NY 10001" +298529,AA Batteries (4-pack),1,3.84,12/21/19 13:17,"696 Forest St, Boston, MA 02215" +298530,Bose SoundSport Headphones,1,99.99,12/15/19 08:17,"947 North St, San Francisco, CA 94016" +298531,AAA Batteries (4-pack),1,2.99,12/26/19 11:38,"745 Main St, Dallas, TX 75001" +298532,Apple Airpods Headphones,1,150.0,12/22/19 23:00,"857 West St, New York City, NY 10001" +298533,Lightning Charging Cable,1,14.95,12/26/19 14:06,"724 Ridge St, Boston, MA 02215" +298534,Lightning Charging Cable,1,14.95,12/22/19 10:50,"517 Jefferson St, San Francisco, CA 94016" +298535,Bose SoundSport Headphones,1,99.99,12/26/19 08:45,"312 1st St, Boston, MA 02215" +298536,27in 4K Gaming Monitor,1,389.99,12/22/19 17:11,"368 Center St, Atlanta, GA 30301" +298537,AAA Batteries (4-pack),1,2.99,12/27/19 00:12,"465 5th St, Seattle, WA 98101" +298538,AA Batteries (4-pack),1,3.84,12/23/19 12:26,"31 Walnut St, Boston, MA 02215" +298539,34in Ultrawide Monitor,1,379.99,12/24/19 14:02,"233 North St, Portland, OR 97035" +298540,iPhone,1,700.0,12/10/19 09:04,"19 North St, Seattle, WA 98101" +298541,Lightning Charging Cable,1,14.95,12/27/19 15:43,"297 Elm St, New York City, NY 10001" +298542,Apple Airpods Headphones,1,150.0,12/23/19 13:47,"906 Cedar St, Boston, MA 02215" +298543,AAA Batteries (4-pack),1,2.99,12/02/19 17:01,"291 Spruce St, Los Angeles, CA 90001" +298544,USB-C Charging Cable,1,11.95,12/18/19 13:23,"567 Hill St, Portland, OR 97035" +298545,34in Ultrawide Monitor,1,379.99,12/19/19 15:12,"795 Meadow St, Los Angeles, CA 90001" +298546,iPhone,1,700.0,12/12/19 19:56,"569 Church St, Los Angeles, CA 90001" +298547,Lightning Charging Cable,1,14.95,12/29/19 21:26,"217 Cedar St, Los Angeles, CA 90001" +298548,Lightning Charging Cable,1,14.95,12/25/19 10:11,"331 Willow St, Austin, TX 73301" +298549,USB-C Charging Cable,1,11.95,12/26/19 07:26,"127 South St, Austin, TX 73301" +298550,USB-C Charging Cable,1,11.95,12/02/19 19:58,"858 Center St, New York City, NY 10001" +298551,Lightning Charging Cable,1,14.95,12/15/19 18:37,"381 Elm St, Seattle, WA 98101" +298552,Lightning Charging Cable,1,14.95,12/03/19 18:35,"450 Wilson St, Austin, TX 73301" +298553,USB-C Charging Cable,1,11.95,12/21/19 18:19,"556 Dogwood St, Boston, MA 02215" +298554,iPhone,1,700.0,12/15/19 16:40,"604 Chestnut St, Los Angeles, CA 90001" +298555,27in FHD Monitor,1,149.99,12/01/19 06:40,"979 River St, Portland, OR 97035" +298556,USB-C Charging Cable,1,11.95,12/22/19 00:29,"336 4th St, Portland, OR 97035" +298557,AAA Batteries (4-pack),1,2.99,12/20/19 09:38,"862 North St, San Francisco, CA 94016" +298558,USB-C Charging Cable,1,11.95,12/29/19 20:00,"894 Park St, Portland, OR 97035" +298559,ThinkPad Laptop,1,999.99,12/16/19 13:34,"275 South St, New York City, NY 10001" +298560,AA Batteries (4-pack),2,3.84,12/08/19 14:54,"467 Forest St, Seattle, WA 98101" +298561,Wired Headphones,1,11.99,12/30/19 10:37,"499 South St, San Francisco, CA 94016" +298562,Lightning Charging Cable,1,14.95,12/19/19 09:13,"425 Park St, San Francisco, CA 94016" +298563,Lightning Charging Cable,1,14.95,12/25/19 13:39,"730 Meadow St, Los Angeles, CA 90001" +298564,USB-C Charging Cable,1,11.95,12/18/19 22:37,"433 Cedar St, New York City, NY 10001" +298565,Apple Airpods Headphones,1,150.0,12/26/19 16:16,"268 Hill St, New York City, NY 10001" +298566,Flatscreen TV,1,300.0,12/20/19 09:20,"894 11th St, San Francisco, CA 94016" +298567,Google Phone,1,600.0,12/02/19 15:13,"197 2nd St, San Francisco, CA 94016" +298567,USB-C Charging Cable,1,11.95,12/02/19 15:13,"197 2nd St, San Francisco, CA 94016" +298568,iPhone,1,700.0,12/17/19 21:28,"708 Cedar St, Atlanta, GA 30301" +298568,Apple Airpods Headphones,1,150.0,12/17/19 21:28,"708 Cedar St, Atlanta, GA 30301" +298569,Google Phone,1,600.0,12/26/19 17:47,"738 Pine St, San Francisco, CA 94016" +298570,Wired Headphones,1,11.99,12/23/19 18:37,"380 Cherry St, Boston, MA 02215" +298571,USB-C Charging Cable,1,11.95,12/26/19 19:28,"232 Park St, Los Angeles, CA 90001" +298572,ThinkPad Laptop,1,999.99,12/18/19 15:53,"673 Lincoln St, Seattle, WA 98101" +298573,USB-C Charging Cable,1,11.95,12/08/19 09:55,"425 Lakeview St, Boston, MA 02215" +298574,iPhone,1,700.0,12/21/19 21:18,"586 Ridge St, Boston, MA 02215" +298574,Apple Airpods Headphones,1,150.0,12/21/19 21:18,"586 Ridge St, Boston, MA 02215" +298575,Lightning Charging Cable,1,14.95,12/25/19 22:45,"373 Walnut St, Atlanta, GA 30301" +298576,iPhone,1,700.0,12/10/19 14:14,"10 River St, Dallas, TX 75001" +298577,USB-C Charging Cable,1,11.95,12/13/19 22:15,"150 12th St, Portland, ME 04101" +298578,Bose SoundSport Headphones,1,99.99,12/12/19 15:59,"287 1st St, Los Angeles, CA 90001" +298579,Lightning Charging Cable,2,14.95,12/28/19 13:02,"811 Madison St, Los Angeles, CA 90001" +298580,AAA Batteries (4-pack),1,2.99,12/29/19 05:03,"543 Church St, Portland, OR 97035" +298581,27in FHD Monitor,1,149.99,12/16/19 13:48,"287 Lake St, Seattle, WA 98101" +298582,AAA Batteries (4-pack),3,2.99,12/19/19 09:13,"174 9th St, San Francisco, CA 94016" +298583,27in 4K Gaming Monitor,1,389.99,12/17/19 00:04,"776 Elm St, Los Angeles, CA 90001" +298584,USB-C Charging Cable,1,11.95,12/15/19 14:19,"461 Ridge St, Los Angeles, CA 90001" +298585,AA Batteries (4-pack),1,3.84,12/01/19 18:49,"710 11th St, San Francisco, CA 94016" +298586,Apple Airpods Headphones,1,150.0,12/19/19 09:49,"742 Church St, San Francisco, CA 94016" +298587,Lightning Charging Cable,1,14.95,12/27/19 22:00,"291 Cherry St, Austin, TX 73301" +298588,20in Monitor,1,109.99,12/18/19 23:10,"11 Willow St, New York City, NY 10001" +298589,USB-C Charging Cable,2,11.95,12/17/19 13:02,"560 West St, San Francisco, CA 94016" +298590,Bose SoundSport Headphones,1,99.99,12/15/19 09:28,"892 Center St, Dallas, TX 75001" +298591,AA Batteries (4-pack),2,3.84,12/05/19 01:00,"278 Park St, New York City, NY 10001" +298592,iPhone,1,700.0,12/26/19 13:35,"236 4th St, San Francisco, CA 94016" +298593,AA Batteries (4-pack),1,3.84,12/10/19 14:40,"121 Elm St, Boston, MA 02215" +298594,27in 4K Gaming Monitor,1,389.99,12/01/19 06:03,"843 Willow St, San Francisco, CA 94016" +298595,AA Batteries (4-pack),1,3.84,12/02/19 22:45,"23 Sunset St, Seattle, WA 98101" +298596,AA Batteries (4-pack),1,3.84,12/24/19 20:01,"443 Walnut St, San Francisco, CA 94016" +298597,AAA Batteries (4-pack),1,2.99,12/22/19 11:17,"853 Washington St, Los Angeles, CA 90001" +298598,AA Batteries (4-pack),2,3.84,12/21/19 19:19,"207 Wilson St, Austin, TX 73301" +298599,AA Batteries (4-pack),2,3.84,12/14/19 22:05,"344 Sunset St, Los Angeles, CA 90001" +298600,Apple Airpods Headphones,1,150.0,12/03/19 22:31,"820 Maple St, Seattle, WA 98101" +298601,Apple Airpods Headphones,1,150.0,12/19/19 23:21,"151 North St, Austin, TX 73301" +298602,AA Batteries (4-pack),1,3.84,12/07/19 20:25,"430 7th St, Los Angeles, CA 90001" +298603,Google Phone,1,600.0,12/05/19 21:03,"404 Dogwood St, Boston, MA 02215" +298604,AAA Batteries (4-pack),1,2.99,12/13/19 13:22,"980 Dogwood St, San Francisco, CA 94016" +298605,AA Batteries (4-pack),2,3.84,12/27/19 11:44,"338 Hickory St, Seattle, WA 98101" +298606,Lightning Charging Cable,1,14.95,12/14/19 19:04,"272 South St, San Francisco, CA 94016" +298607,AAA Batteries (4-pack),2,2.99,12/22/19 20:21,"635 Pine St, San Francisco, CA 94016" +298608,Apple Airpods Headphones,1,150.0,12/24/19 11:31,"154 Lake St, Los Angeles, CA 90001" +298609,Apple Airpods Headphones,1,150.0,12/16/19 11:13,"966 5th St, Los Angeles, CA 90001" +298610,Wired Headphones,1,11.99,12/08/19 11:33,"649 Park St, Los Angeles, CA 90001" +298611,USB-C Charging Cable,1,11.95,12/20/19 15:49,"747 Highland St, Boston, MA 02215" +298612,AA Batteries (4-pack),2,3.84,12/03/19 15:53,"338 Madison St, San Francisco, CA 94016" +298613,Bose SoundSport Headphones,1,99.99,12/31/19 19:14,"697 9th St, Los Angeles, CA 90001" +298614,USB-C Charging Cable,1,11.95,12/17/19 12:12,"115 Hickory St, Boston, MA 02215" +298615,Lightning Charging Cable,1,14.95,12/19/19 03:21,"864 14th St, San Francisco, CA 94016" +298616,Apple Airpods Headphones,2,150.0,12/31/19 18:54,"702 Lincoln St, Boston, MA 02215" +298617,AAA Batteries (4-pack),1,2.99,12/12/19 17:18,"559 Highland St, San Francisco, CA 94016" +298618,27in FHD Monitor,1,149.99,12/05/19 20:48,"540 Highland St, San Francisco, CA 94016" +298619,34in Ultrawide Monitor,1,379.99,12/12/19 13:28,"38 Hill St, New York City, NY 10001" +298620,AAA Batteries (4-pack),3,2.99,12/20/19 12:52,"323 Elm St, Austin, TX 73301" +298621,AAA Batteries (4-pack),2,2.99,12/06/19 09:43,"159 Forest St, Dallas, TX 75001" +298622,27in 4K Gaming Monitor,1,389.99,12/28/19 16:26,"568 Pine St, San Francisco, CA 94016" +298623,34in Ultrawide Monitor,1,379.99,12/31/19 12:08,"477 Jefferson St, Dallas, TX 75001" +298624,AA Batteries (4-pack),1,3.84,12/11/19 16:24,"438 Lincoln St, New York City, NY 10001" +298625,Apple Airpods Headphones,1,150.0,12/29/19 17:44,"897 4th St, San Francisco, CA 94016" +298626,Apple Airpods Headphones,1,150.0,12/11/19 14:39,"215 West St, Seattle, WA 98101" +298627,Bose SoundSport Headphones,1,99.99,12/29/19 21:08,"369 Meadow St, Dallas, TX 75001" +298628,AA Batteries (4-pack),1,3.84,12/15/19 09:08,"515 6th St, San Francisco, CA 94016" +298629,Wired Headphones,1,11.99,12/14/19 00:18,"350 Johnson St, Boston, MA 02215" +298630,27in 4K Gaming Monitor,1,389.99,12/09/19 16:07,"515 Dogwood St, Dallas, TX 75001" +298631,USB-C Charging Cable,1,11.95,12/11/19 09:53,"789 Adams St, Portland, OR 97035" +298632,AA Batteries (4-pack),1,3.84,12/13/19 15:40,"539 9th St, Atlanta, GA 30301" +298633,AA Batteries (4-pack),1,3.84,12/21/19 21:56,"209 Church St, San Francisco, CA 94016" +298634,AA Batteries (4-pack),1,3.84,12/16/19 18:45,"898 Willow St, New York City, NY 10001" +298635,Google Phone,1,600.0,12/03/19 13:54,"470 Cedar St, Austin, TX 73301" +298635,USB-C Charging Cable,1,11.95,12/03/19 13:54,"470 Cedar St, Austin, TX 73301" +298636,ThinkPad Laptop,1,999.99,12/25/19 13:47,"998 West St, Los Angeles, CA 90001" +298637,Apple Airpods Headphones,1,150.0,12/14/19 15:28,"439 9th St, Dallas, TX 75001" +298638,USB-C Charging Cable,1,11.95,12/05/19 22:40,"765 Pine St, Seattle, WA 98101" +298639,Flatscreen TV,1,300.0,12/22/19 17:52,"717 Adams St, New York City, NY 10001" +298640,Apple Airpods Headphones,1,150.0,12/30/19 20:44,"890 Hickory St, Dallas, TX 75001" +298641,Wired Headphones,1,11.99,12/15/19 16:56,"298 Jackson St, Austin, TX 73301" +298642,AAA Batteries (4-pack),3,2.99,12/22/19 08:59,"954 5th St, Dallas, TX 75001" +298643,AA Batteries (4-pack),2,3.84,12/12/19 14:02,"230 12th St, San Francisco, CA 94016" +298644,Flatscreen TV,1,300.0,12/06/19 13:59,"200 8th St, Austin, TX 73301" +298645,USB-C Charging Cable,2,11.95,12/08/19 23:29,"387 Cherry St, Seattle, WA 98101" +298646,Apple Airpods Headphones,1,150.0,12/21/19 20:23,"496 Johnson St, Portland, OR 97035" +298647,Flatscreen TV,1,300.0,12/30/19 22:33,"378 Main St, New York City, NY 10001" +298648,AA Batteries (4-pack),1,3.84,12/31/19 14:01,"304 North St, Seattle, WA 98101" +298649,Wired Headphones,1,11.99,12/20/19 20:21,"82 Willow St, San Francisco, CA 94016" +298650,Apple Airpods Headphones,1,150.0,12/09/19 19:50,"197 9th St, New York City, NY 10001" +298651,AA Batteries (4-pack),1,3.84,12/11/19 20:47,"987 North St, San Francisco, CA 94016" +298652,Bose SoundSport Headphones,1,99.99,12/18/19 12:11,"722 Ridge St, San Francisco, CA 94016" +298653,AAA Batteries (4-pack),3,2.99,12/23/19 09:55,"936 14th St, Dallas, TX 75001" +298654,AA Batteries (4-pack),1,3.84,12/11/19 07:05,"700 10th St, Dallas, TX 75001" +298655,Bose SoundSport Headphones,1,99.99,12/18/19 11:19,"223 Walnut St, Boston, MA 02215" +298656,AA Batteries (4-pack),1,3.84,12/01/19 06:30,"82 7th St, San Francisco, CA 94016" +298657,34in Ultrawide Monitor,1,379.99,12/02/19 19:42,"199 Center St, Dallas, TX 75001" +298658,Apple Airpods Headphones,1,150.0,12/24/19 07:51,"599 Madison St, Boston, MA 02215" +298659,Lightning Charging Cable,1,14.95,12/14/19 21:25,"465 Cedar St, New York City, NY 10001" +298660,AAA Batteries (4-pack),2,2.99,12/07/19 15:09,"535 2nd St, Seattle, WA 98101" +298661,27in FHD Monitor,1,149.99,12/10/19 08:46,"453 Pine St, Los Angeles, CA 90001" +298662,AAA Batteries (4-pack),1,2.99,12/04/19 15:57,"434 Forest St, Portland, OR 97035" +298663,Bose SoundSport Headphones,1,99.99,12/03/19 09:59,"638 14th St, Atlanta, GA 30301" +298664,Wired Headphones,1,11.99,12/03/19 17:45,"769 6th St, San Francisco, CA 94016" +298665,Google Phone,1,600.0,12/18/19 14:45,"679 11th St, San Francisco, CA 94016" +298666,Lightning Charging Cable,1,14.95,12/15/19 15:52,"550 Washington St, Austin, TX 73301" +298667,20in Monitor,1,109.99,12/08/19 17:17,"341 Maple St, Dallas, TX 75001" +298668,USB-C Charging Cable,1,11.95,12/30/19 21:55,"263 5th St, San Francisco, CA 94016" +298669,AAA Batteries (4-pack),1,2.99,12/21/19 08:30,"111 Ridge St, San Francisco, CA 94016" +298670,USB-C Charging Cable,1,11.95,12/23/19 16:05,"741 Pine St, Atlanta, GA 30301" +298671,Flatscreen TV,1,300.0,12/03/19 14:23,"245 Main St, Dallas, TX 75001" +298672,iPhone,1,700.0,12/17/19 11:05,"485 Washington St, Los Angeles, CA 90001" +298673,Wired Headphones,1,11.99,12/24/19 13:32,"154 Walnut St, Los Angeles, CA 90001" +298674,USB-C Charging Cable,1,11.95,12/09/19 15:25,"238 Hill St, Los Angeles, CA 90001" +298675,Bose SoundSport Headphones,1,99.99,12/16/19 16:55,"477 11th St, New York City, NY 10001" +298676,ThinkPad Laptop,1,999.99,12/05/19 09:33,"474 11th St, New York City, NY 10001" +298677,ThinkPad Laptop,1,999.99,12/04/19 20:10,"199 Sunset St, Los Angeles, CA 90001" +298678,Wired Headphones,1,11.99,12/24/19 15:50,"923 Park St, Seattle, WA 98101" +298679,USB-C Charging Cable,1,11.95,12/19/19 20:30,"180 Spruce St, San Francisco, CA 94016" +298680,Flatscreen TV,1,300.0,12/09/19 20:52,"606 1st St, San Francisco, CA 94016" +298681,27in FHD Monitor,1,149.99,12/02/19 13:41,"179 8th St, San Francisco, CA 94016" +298682,Google Phone,1,600.0,12/11/19 16:55,"142 5th St, Boston, MA 02215" +298683,iPhone,1,700.0,12/29/19 18:10,"451 Dogwood St, Dallas, TX 75001" +298684,Bose SoundSport Headphones,1,99.99,12/06/19 16:10,"406 Lincoln St, Seattle, WA 98101" +298685,27in FHD Monitor,1,149.99,12/11/19 11:38,"641 North St, Austin, TX 73301" +298686,USB-C Charging Cable,1,11.95,12/04/19 07:28,"19 14th St, Portland, OR 97035" +298687,iPhone,1,700.0,12/07/19 09:54,"91 Lincoln St, Los Angeles, CA 90001" +298687,Wired Headphones,1,11.99,12/07/19 09:54,"91 Lincoln St, Los Angeles, CA 90001" +298688,27in FHD Monitor,1,149.99,12/11/19 23:09,"172 Wilson St, Boston, MA 02215" +298689,Bose SoundSport Headphones,1,99.99,12/27/19 02:34,"890 Jefferson St, San Francisco, CA 94016" +298690,USB-C Charging Cable,1,11.95,12/19/19 15:53,"205 Jefferson St, Portland, OR 97035" +298691,27in FHD Monitor,1,149.99,12/20/19 15:17,"573 14th St, Dallas, TX 75001" +298692,Bose SoundSport Headphones,1,99.99,12/10/19 16:35,"630 6th St, Los Angeles, CA 90001" +298693,Wired Headphones,1,11.99,12/23/19 22:12,"187 Lakeview St, New York City, NY 10001" +298694,Lightning Charging Cable,1,14.95,12/31/19 17:22,"314 Forest St, San Francisco, CA 94016" +298695,USB-C Charging Cable,1,11.95,12/06/19 18:49,"168 6th St, Austin, TX 73301" +298696,AA Batteries (4-pack),1,3.84,12/13/19 20:58,"623 Lakeview St, Dallas, TX 75001" +298697,Apple Airpods Headphones,1,150.0,12/09/19 10:30,"150 North St, Dallas, TX 75001" +298698,USB-C Charging Cable,1,11.95,12/05/19 20:53,"761 Wilson St, San Francisco, CA 94016" +298699,AA Batteries (4-pack),1,3.84,12/19/19 21:19,"58 Meadow St, New York City, NY 10001" +298700,AAA Batteries (4-pack),2,2.99,12/16/19 19:36,"122 2nd St, Austin, TX 73301" +298701,Vareebadd Phone,1,400.0,12/01/19 15:35,"859 Ridge St, Austin, TX 73301" +298702,Apple Airpods Headphones,1,150.0,12/18/19 16:30,"61 Jefferson St, Portland, OR 97035" +298703,Wired Headphones,1,11.99,12/03/19 16:30,"345 8th St, Los Angeles, CA 90001" +298703,Bose SoundSport Headphones,1,99.99,12/03/19 16:30,"345 8th St, Los Angeles, CA 90001" +298704,AAA Batteries (4-pack),3,2.99,12/08/19 13:35,"845 Sunset St, New York City, NY 10001" +298705,Apple Airpods Headphones,1,150.0,12/02/19 19:31,"783 Dogwood St, New York City, NY 10001" +298706,USB-C Charging Cable,1,11.95,12/21/19 10:13,"852 Madison St, Seattle, WA 98101" +298707,Wired Headphones,1,11.99,12/13/19 16:06,"266 14th St, Boston, MA 02215" +298708,USB-C Charging Cable,1,11.95,12/10/19 19:31,"351 Jefferson St, Boston, MA 02215" +298709,AA Batteries (4-pack),1,3.84,12/27/19 20:13,"669 North St, New York City, NY 10001" +298710,Wired Headphones,1,11.99,12/21/19 11:32,"574 Meadow St, San Francisco, CA 94016" +298711,Vareebadd Phone,1,400.0,12/22/19 23:38,"960 14th St, Los Angeles, CA 90001" +298712,Bose SoundSport Headphones,1,99.99,12/15/19 15:29,"137 Park St, San Francisco, CA 94016" +298713,ThinkPad Laptop,1,999.99,12/10/19 22:06,"65 North St, San Francisco, CA 94016" +298714,Lightning Charging Cable,1,14.95,12/03/19 23:02,"5 Highland St, San Francisco, CA 94016" +298715,27in 4K Gaming Monitor,1,389.99,12/04/19 15:35,"246 Ridge St, Portland, OR 97035" +298716,Google Phone,1,600.0,12/10/19 22:05,"596 Lake St, New York City, NY 10001" +298717,Vareebadd Phone,1,400.0,12/12/19 12:56,"419 Johnson St, San Francisco, CA 94016" +298718,Wired Headphones,1,11.99,12/16/19 09:49,"894 Pine St, New York City, NY 10001" +298718,USB-C Charging Cable,1,11.95,12/16/19 09:49,"894 Pine St, New York City, NY 10001" +298719,AAA Batteries (4-pack),2,2.99,12/12/19 17:06,"767 Pine St, Portland, OR 97035" +298720,AAA Batteries (4-pack),1,2.99,12/31/19 17:12,"537 Jefferson St, Portland, OR 97035" +298721,Lightning Charging Cable,1,14.95,12/07/19 23:26,"641 Jefferson St, New York City, NY 10001" +298722,27in FHD Monitor,1,149.99,12/21/19 14:08,"259 Hill St, San Francisco, CA 94016" +298723,USB-C Charging Cable,1,11.95,12/14/19 17:22,"735 Maple St, Seattle, WA 98101" +298724,Wired Headphones,1,11.99,12/22/19 14:10,"943 7th St, San Francisco, CA 94016" +298725,AA Batteries (4-pack),1,3.84,12/17/19 07:40,"392 Spruce St, Seattle, WA 98101" +298726,Lightning Charging Cable,1,14.95,12/28/19 12:03,"407 12th St, Los Angeles, CA 90001" +298727,Bose SoundSport Headphones,1,99.99,12/29/19 23:08,"459 Dogwood St, Dallas, TX 75001" +298728,34in Ultrawide Monitor,1,379.99,12/03/19 12:34,"556 Highland St, Atlanta, GA 30301" +298729,Bose SoundSport Headphones,2,99.99,12/01/19 18:19,"727 10th St, San Francisco, CA 94016" +298730,Apple Airpods Headphones,1,150.0,12/23/19 12:09,"43 Washington St, Portland, ME 04101" +298731,AAA Batteries (4-pack),1,2.99,12/31/19 20:45,"167 Hill St, Los Angeles, CA 90001" +298732,27in 4K Gaming Monitor,1,389.99,12/14/19 22:22,"619 Dogwood St, Los Angeles, CA 90001" +298733,AA Batteries (4-pack),1,3.84,12/25/19 11:13,"949 Dogwood St, New York City, NY 10001" +,,,,, +298734,27in FHD Monitor,1,149.99,12/17/19 17:54,"455 Highland St, Los Angeles, CA 90001" +298735,USB-C Charging Cable,1,11.95,12/28/19 14:36,"658 Cedar St, San Francisco, CA 94016" +298736,AAA Batteries (4-pack),1,2.99,12/27/19 14:46,"456 4th St, Seattle, WA 98101" +298737,AA Batteries (4-pack),1,3.84,12/31/19 07:20,"7 9th St, New York City, NY 10001" +298738,Flatscreen TV,1,300,12/20/19 13:30,"862 Maple St, Los Angeles, CA 90001" +298739,Lightning Charging Cable,1,14.95,12/19/19 10:43,"794 Jackson St, Boston, MA 02215" +298740,Apple Airpods Headphones,1,150,12/15/19 11:46,"878 Hickory St, San Francisco, CA 94016" +298741,AA Batteries (4-pack),2,3.84,12/28/19 09:26,"829 Elm St, Atlanta, GA 30301" +298742,Wired Headphones,1,11.99,12/06/19 18:35,"311 Chestnut St, Los Angeles, CA 90001" +298743,Vareebadd Phone,1,400,12/15/19 10:14,"259 Lakeview St, Dallas, TX 75001" +298743,USB-C Charging Cable,1,11.95,12/15/19 10:14,"259 Lakeview St, Dallas, TX 75001" +298744,USB-C Charging Cable,1,11.95,12/09/19 13:51,"471 Jackson St, Portland, ME 04101" +298745,Apple Airpods Headphones,1,150,12/28/19 07:06,"120 Ridge St, San Francisco, CA 94016" +298746,Vareebadd Phone,1,400,12/02/19 09:30,"989 Ridge St, San Francisco, CA 94016" +298747,Google Phone,1,600,12/25/19 10:48,"443 Church St, Los Angeles, CA 90001" +298748,34in Ultrawide Monitor,1,379.99,12/03/19 22:31,"9 Ridge St, Boston, MA 02215" +298749,20in Monitor,1,109.99,12/31/19 16:21,"739 Dogwood St, Dallas, TX 75001" +298750,Lightning Charging Cable,1,14.95,12/30/19 18:02,"586 10th St, Atlanta, GA 30301" +298751,AAA Batteries (4-pack),1,2.99,12/16/19 15:01,"173 Wilson St, Atlanta, GA 30301" +298752,USB-C Charging Cable,1,11.95,12/04/19 10:09,"547 Hill St, Atlanta, GA 30301" +298753,Bose SoundSport Headphones,1,99.99,12/06/19 13:53,"658 North St, New York City, NY 10001" +298754,27in FHD Monitor,1,149.99,12/16/19 10:46,"506 5th St, Dallas, TX 75001" +298755,AAA Batteries (4-pack),4,2.99,12/21/19 11:46,"658 Madison St, San Francisco, CA 94016" +298756,USB-C Charging Cable,2,11.95,12/30/19 09:51,"34 Cherry St, Austin, TX 73301" +298757,AA Batteries (4-pack),1,3.84,12/27/19 11:58,"268 11th St, Portland, ME 04101" +298758,iPhone,1,700,12/22/19 16:52,"988 Lake St, Seattle, WA 98101" +298759,Lightning Charging Cable,1,14.95,12/11/19 10:08,"391 Cherry St, Los Angeles, CA 90001" +298760,27in FHD Monitor,1,149.99,12/22/19 12:44,"927 10th St, San Francisco, CA 94016" +298761,AA Batteries (4-pack),2,3.84,12/18/19 10:24,"359 West St, Portland, OR 97035" +298762,AA Batteries (4-pack),1,3.84,12/28/19 18:24,"454 Pine St, New York City, NY 10001" +298763,Macbook Pro Laptop,1,1700,12/17/19 10:51,"240 Park St, New York City, NY 10001" +298764,Wired Headphones,1,11.99,12/10/19 21:18,"289 West St, Seattle, WA 98101" +298765,AA Batteries (4-pack),2,3.84,12/12/19 17:38,"652 South St, Los Angeles, CA 90001" +298766,USB-C Charging Cable,1,11.95,12/08/19 00:39,"280 North St, Austin, TX 73301" +298767,AA Batteries (4-pack),1,3.84,12/19/19 07:59,"585 13th St, Portland, ME 04101" +298768,Apple Airpods Headphones,1,150,12/31/19 14:50,"343 14th St, San Francisco, CA 94016" +298769,Google Phone,1,600,12/12/19 22:29,"955 Washington St, San Francisco, CA 94016" +298769,Wired Headphones,1,11.99,12/12/19 22:29,"955 Washington St, San Francisco, CA 94016" +298770,Bose SoundSport Headphones,1,99.99,12/19/19 01:28,"309 Church St, Los Angeles, CA 90001" +298771,USB-C Charging Cable,1,11.95,12/27/19 10:05,"768 10th St, Los Angeles, CA 90001" +298772,Apple Airpods Headphones,1,150,12/02/19 15:12,"143 11th St, Portland, OR 97035" +298773,USB-C Charging Cable,1,11.95,12/14/19 01:57,"313 Hickory St, Boston, MA 02215" +298774,USB-C Charging Cable,1,11.95,12/16/19 17:16,"735 Washington St, Los Angeles, CA 90001" +298775,Apple Airpods Headphones,1,150,12/16/19 16:12,"406 Jefferson St, New York City, NY 10001" +298776,Vareebadd Phone,1,400,12/01/19 20:21,"588 Willow St, Boston, MA 02215" +298777,USB-C Charging Cable,1,11.95,12/14/19 00:02,"649 South St, Los Angeles, CA 90001" +298778,Apple Airpods Headphones,1,150,12/29/19 12:33,"491 2nd St, New York City, NY 10001" +298779,AA Batteries (4-pack),2,3.84,12/01/19 15:56,"458 North St, Los Angeles, CA 90001" +298780,Flatscreen TV,1,300,12/02/19 08:55,"717 Hickory St, San Francisco, CA 94016" +298781,Apple Airpods Headphones,1,150,12/29/19 17:20,"860 Maple St, Seattle, WA 98101" +298782,Apple Airpods Headphones,1,150,12/20/19 21:00,"975 Jefferson St, San Francisco, CA 94016" +298783,AAA Batteries (4-pack),4,2.99,12/08/19 10:47,"202 Meadow St, Boston, MA 02215" +298784,USB-C Charging Cable,1,11.95,12/10/19 18:02,"894 Cedar St, Los Angeles, CA 90001" +298785,Lightning Charging Cable,1,14.95,12/09/19 19:46,"406 Lincoln St, Los Angeles, CA 90001" +298786,Wired Headphones,1,11.99,12/17/19 16:26,"541 Pine St, New York City, NY 10001" +298787,27in 4K Gaming Monitor,1,389.99,12/26/19 13:21,"588 Cedar St, New York City, NY 10001" +298788,Lightning Charging Cable,3,14.95,12/03/19 11:21,"904 14th St, Seattle, WA 98101" +298789,USB-C Charging Cable,1,11.95,12/22/19 15:10,"80 12th St, San Francisco, CA 94016" +298790,Lightning Charging Cable,1,14.95,12/01/19 06:46,"16 Cedar St, San Francisco, CA 94016" +298791,Bose SoundSport Headphones,1,99.99,12/03/19 19:12,"490 8th St, Los Angeles, CA 90001" +298792,USB-C Charging Cable,1,11.95,12/31/19 16:05,"966 12th St, Los Angeles, CA 90001" +298793,Lightning Charging Cable,1,14.95,12/12/19 21:48,"834 Pine St, Seattle, WA 98101" +298794,Google Phone,1,600,12/06/19 13:08,"204 1st St, Boston, MA 02215" +298795,AA Batteries (4-pack),1,3.84,12/19/19 22:35,"968 Ridge St, San Francisco, CA 94016" +298796,Lightning Charging Cable,1,14.95,12/10/19 15:42,"353 13th St, New York City, NY 10001" +298797,AAA Batteries (4-pack),1,2.99,12/02/19 17:19,"784 5th St, Dallas, TX 75001" +298798,Lightning Charging Cable,1,14.95,12/30/19 13:36,"463 4th St, Austin, TX 73301" +298799,AAA Batteries (4-pack),1,2.99,12/30/19 19:39,"244 North St, San Francisco, CA 94016" +298800,Wired Headphones,1,11.99,12/06/19 14:26,"264 Lakeview St, Seattle, WA 98101" +298801,iPhone,1,700,12/01/19 11:59,"220 Hill St, Austin, TX 73301" +298801,Lightning Charging Cable,1,14.95,12/01/19 11:59,"220 Hill St, Austin, TX 73301" +298802,USB-C Charging Cable,1,11.95,12/02/19 13:10,"838 Willow St, Los Angeles, CA 90001" +298803,Flatscreen TV,1,300,12/26/19 21:32,"780 Hickory St, San Francisco, CA 94016" +298804,Bose SoundSport Headphones,1,99.99,12/21/19 09:43,"616 Lake St, Austin, TX 73301" +298805,27in 4K Gaming Monitor,1,389.99,12/26/19 02:29,"400 7th St, Boston, MA 02215" +298806,Bose SoundSport Headphones,1,99.99,12/05/19 14:03,"722 14th St, Los Angeles, CA 90001" +,,,,, +298807,USB-C Charging Cable,1,11.95,12/22/19 21:38,"469 Spruce St, New York City, NY 10001" +298808,Lightning Charging Cable,1,14.95,12/11/19 19:16,"47 West St, Atlanta, GA 30301" +298809,AAA Batteries (4-pack),1,2.99,12/06/19 10:50,"339 Cedar St, New York City, NY 10001" +298810,AAA Batteries (4-pack),1,2.99,12/27/19 13:25,"709 13th St, San Francisco, CA 94016" +298811,Bose SoundSport Headphones,1,99.99,12/04/19 10:19,"933 Madison St, Dallas, TX 75001" +298812,USB-C Charging Cable,1,11.95,12/21/19 19:52,"488 10th St, San Francisco, CA 94016" +298813,USB-C Charging Cable,1,11.95,12/04/19 13:48,"874 12th St, Austin, TX 73301" +298814,Lightning Charging Cable,1,14.95,12/28/19 13:33,"776 Cherry St, Boston, MA 02215" +298815,Wired Headphones,1,11.99,12/05/19 19:21,"31 South St, Boston, MA 02215" +298816,AAA Batteries (4-pack),2,2.99,12/29/19 10:29,"234 Sunset St, Seattle, WA 98101" +298817,Wired Headphones,1,11.99,12/07/19 01:23,"169 6th St, San Francisco, CA 94016" +298818,USB-C Charging Cable,1,11.95,12/28/19 19:35,"993 10th St, San Francisco, CA 94016" +298819,Wired Headphones,2,11.99,12/21/19 13:36,"671 Forest St, Seattle, WA 98101" +298820,ThinkPad Laptop,1,999.99,12/22/19 18:56,"675 8th St, San Francisco, CA 94016" +298821,ThinkPad Laptop,1,999.99,12/19/19 21:12,"807 12th St, Los Angeles, CA 90001" +298822,Lightning Charging Cable,1,14.95,12/24/19 04:32,"288 North St, Dallas, TX 75001" +298823,AA Batteries (4-pack),1,3.84,12/29/19 18:02,"192 9th St, Los Angeles, CA 90001" +298824,USB-C Charging Cable,1,11.95,12/19/19 19:26,"741 Sunset St, Los Angeles, CA 90001" +298825,AA Batteries (4-pack),1,3.84,12/02/19 23:51,"311 2nd St, San Francisco, CA 94016" +298826,Vareebadd Phone,1,400,12/15/19 21:31,"792 Lakeview St, Seattle, WA 98101" +298827,AAA Batteries (4-pack),1,2.99,12/28/19 20:01,"10 10th St, Los Angeles, CA 90001" +298828,Lightning Charging Cable,1,14.95,12/19/19 21:45,"649 14th St, New York City, NY 10001" +298829,AA Batteries (4-pack),3,3.84,12/02/19 14:39,"330 Hickory St, Atlanta, GA 30301" +298830,Vareebadd Phone,1,400,12/27/19 21:44,"947 North St, New York City, NY 10001" +298830,USB-C Charging Cable,1,11.95,12/27/19 21:44,"947 North St, New York City, NY 10001" +298830,Wired Headphones,1,11.99,12/27/19 21:44,"947 North St, New York City, NY 10001" +298831,Bose SoundSport Headphones,1,99.99,12/19/19 20:55,"202 1st St, Boston, MA 02215" +298832,Wired Headphones,1,11.99,12/31/19 16:11,"176 Lakeview St, Los Angeles, CA 90001" +298833,AA Batteries (4-pack),1,3.84,12/22/19 21:22,"698 9th St, Boston, MA 02215" +298834,iPhone,1,700,12/21/19 17:02,"787 6th St, New York City, NY 10001" +298834,Lightning Charging Cable,1,14.95,12/21/19 17:02,"787 6th St, New York City, NY 10001" +298835,iPhone,1,700,12/02/19 11:16,"661 1st St, Seattle, WA 98101" +298836,USB-C Charging Cable,1,11.95,12/16/19 10:37,"609 Spruce St, Boston, MA 02215" +298836,iPhone,1,700,12/16/19 10:37,"609 Spruce St, Boston, MA 02215" +298837,Wired Headphones,2,11.99,12/19/19 11:16,"363 Willow St, Atlanta, GA 30301" +298838,USB-C Charging Cable,1,11.95,12/11/19 18:37,"504 Spruce St, New York City, NY 10001" +298839,27in 4K Gaming Monitor,1,389.99,12/12/19 02:06,"982 13th St, New York City, NY 10001" +298840,Lightning Charging Cable,1,14.95,12/22/19 00:38,"840 River St, Seattle, WA 98101" +298841,Wired Headphones,1,11.99,12/26/19 22:21,"11 Willow St, Los Angeles, CA 90001" +298842,AAA Batteries (4-pack),1,2.99,12/02/19 12:11,"250 Willow St, New York City, NY 10001" +298843,Apple Airpods Headphones,1,150,12/13/19 14:55,"95 7th St, San Francisco, CA 94016" +298844,Lightning Charging Cable,1,14.95,12/07/19 16:26,"551 Lakeview St, San Francisco, CA 94016" +298845,AAA Batteries (4-pack),2,2.99,12/28/19 10:44,"508 Washington St, Boston, MA 02215" +298846,Flatscreen TV,1,300,12/29/19 18:47,"224 North St, New York City, NY 10001" +298847,AA Batteries (4-pack),2,3.84,12/23/19 19:31,"296 6th St, Boston, MA 02215" +298848,20in Monitor,1,109.99,12/16/19 19:37,"167 Jackson St, San Francisco, CA 94016" +298849,Bose SoundSport Headphones,1,99.99,12/24/19 13:38,"262 10th St, San Francisco, CA 94016" +298850,Google Phone,1,600,12/10/19 13:17,"144 Maple St, Portland, OR 97035" +298851,Lightning Charging Cable,1,14.95,12/31/19 10:20,"585 Meadow St, New York City, NY 10001" +298852,Macbook Pro Laptop,1,1700,12/21/19 08:52,"717 Center St, Dallas, TX 75001" +298853,AA Batteries (4-pack),1,3.84,12/22/19 14:30,"638 Spruce St, New York City, NY 10001" +298854,Bose SoundSport Headphones,1,99.99,12/25/19 12:41,"807 River St, Boston, MA 02215" +298855,USB-C Charging Cable,1,11.95,12/20/19 22:39,"337 1st St, Boston, MA 02215" +298856,ThinkPad Laptop,1,999.99,12/15/19 18:17,"344 Hickory St, Los Angeles, CA 90001" +298857,AA Batteries (4-pack),1,3.84,12/23/19 21:07,"702 Lincoln St, Dallas, TX 75001" +298858,27in FHD Monitor,1,149.99,12/30/19 11:42,"407 7th St, New York City, NY 10001" +298858,Wired Headphones,1,11.99,12/30/19 11:42,"407 7th St, New York City, NY 10001" +298859,USB-C Charging Cable,1,11.95,12/23/19 18:40,"669 Main St, San Francisco, CA 94016" +298860,USB-C Charging Cable,1,11.95,12/14/19 20:44,"835 Walnut St, Dallas, TX 75001" +298861,Macbook Pro Laptop,1,1700,12/22/19 23:57,"626 Maple St, New York City, NY 10001" +298862,ThinkPad Laptop,1,999.99,12/10/19 22:23,"643 North St, Portland, OR 97035" +298862,Macbook Pro Laptop,1,1700,12/10/19 22:23,"643 North St, Portland, OR 97035" +298863,27in 4K Gaming Monitor,1,389.99,12/13/19 23:29,"346 10th St, Portland, OR 97035" +298864,27in FHD Monitor,1,149.99,12/18/19 18:21,"111 Cherry St, Los Angeles, CA 90001" +298865,USB-C Charging Cable,1,11.95,12/28/19 17:33,"607 2nd St, New York City, NY 10001" +298866,USB-C Charging Cable,1,11.95,12/26/19 15:22,"369 Madison St, San Francisco, CA 94016" +298867,Apple Airpods Headphones,1,150,12/28/19 15:56,"850 Madison St, New York City, NY 10001" +298868,iPhone,1,700,12/30/19 20:16,"936 12th St, Los Angeles, CA 90001" +298869,Apple Airpods Headphones,1,150,12/14/19 22:41,"496 Dogwood St, San Francisco, CA 94016" +298870,AA Batteries (4-pack),2,3.84,12/12/19 11:45,"551 Lake St, Boston, MA 02215" +298871,Wired Headphones,1,11.99,12/30/19 18:37,"718 Hill St, New York City, NY 10001" +298872,AAA Batteries (4-pack),2,2.99,12/31/19 17:58,"904 Hill St, Los Angeles, CA 90001" +298873,AA Batteries (4-pack),2,3.84,12/29/19 16:05,"668 9th St, Los Angeles, CA 90001" +298874,Lightning Charging Cable,1,14.95,12/04/19 13:36,"742 1st St, Austin, TX 73301" +298875,27in 4K Gaming Monitor,1,389.99,12/10/19 11:45,"897 Dogwood St, New York City, NY 10001" +298876,34in Ultrawide Monitor,1,379.99,12/17/19 17:54,"672 Hill St, Seattle, WA 98101" +298877,ThinkPad Laptop,1,999.99,12/03/19 11:02,"543 Jefferson St, Boston, MA 02215" +298878,Lightning Charging Cable,1,14.95,12/06/19 14:37,"310 Lakeview St, Boston, MA 02215" +298879,Lightning Charging Cable,1,14.95,12/16/19 16:35,"778 North St, San Francisco, CA 94016" +298880,USB-C Charging Cable,1,11.95,12/20/19 21:01,"712 Main St, Seattle, WA 98101" +298881,Apple Airpods Headphones,1,150,12/06/19 17:10,"945 9th St, Portland, OR 97035" +298882,Lightning Charging Cable,1,14.95,12/25/19 21:37,"450 Ridge St, Los Angeles, CA 90001" +298883,Lightning Charging Cable,1,14.95,12/09/19 18:38,"821 4th St, Portland, ME 04101" +298884,USB-C Charging Cable,1,11.95,12/15/19 17:27,"441 Maple St, Los Angeles, CA 90001" +298885,USB-C Charging Cable,1,11.95,12/08/19 12:24,"110 7th St, Portland, OR 97035" +298886,AAA Batteries (4-pack),1,2.99,12/19/19 12:00,"811 Lakeview St, San Francisco, CA 94016" +298887,Wired Headphones,1,11.99,12/01/19 02:43,"671 9th St, San Francisco, CA 94016" +298888,27in FHD Monitor,1,149.99,12/17/19 23:32,"568 River St, Atlanta, GA 30301" +298889,Wired Headphones,1,11.99,12/09/19 19:04,"206 2nd St, Portland, ME 04101" +298890,Wired Headphones,1,11.99,12/13/19 11:31,"752 5th St, New York City, NY 10001" +298891,AA Batteries (4-pack),2,3.84,12/29/19 22:55,"657 Hill St, San Francisco, CA 94016" +298892,AAA Batteries (4-pack),2,2.99,12/21/19 22:31,"249 Lincoln St, Boston, MA 02215" +298893,Google Phone,1,600,12/19/19 07:34,"438 Meadow St, Seattle, WA 98101" +298893,Bose SoundSport Headphones,2,99.99,12/19/19 07:34,"438 Meadow St, Seattle, WA 98101" +298894,USB-C Charging Cable,1,11.95,12/31/19 20:13,"504 West St, Los Angeles, CA 90001" +298895,AAA Batteries (4-pack),1,2.99,12/17/19 11:04,"755 Main St, San Francisco, CA 94016" +298896,USB-C Charging Cable,1,11.95,12/11/19 18:36,"493 5th St, Los Angeles, CA 90001" +298897,Macbook Pro Laptop,1,1700,12/20/19 20:25,"195 Lakeview St, San Francisco, CA 94016" +298898,Wired Headphones,1,11.99,12/25/19 17:45,"27 Lakeview St, New York City, NY 10001" +298899,Bose SoundSport Headphones,1,99.99,12/03/19 14:51,"581 Jackson St, Portland, OR 97035" +298900,AAA Batteries (4-pack),1,2.99,12/03/19 10:46,"800 Wilson St, New York City, NY 10001" +298901,Lightning Charging Cable,1,14.95,12/09/19 09:21,"300 South St, Los Angeles, CA 90001" +298902,AA Batteries (4-pack),1,3.84,12/12/19 17:21,"260 2nd St, Boston, MA 02215" +298903,27in FHD Monitor,1,149.99,12/31/19 19:32,"205 Spruce St, Los Angeles, CA 90001" +298904,USB-C Charging Cable,1,11.95,12/08/19 20:43,"291 1st St, Portland, OR 97035" +298905,iPhone,1,700,12/26/19 21:04,"752 Cedar St, New York City, NY 10001" +298906,AAA Batteries (4-pack),2,2.99,12/18/19 21:08,"408 14th St, Dallas, TX 75001" +298907,AA Batteries (4-pack),1,3.84,12/09/19 22:47,"413 Lakeview St, Los Angeles, CA 90001" +298908,Lightning Charging Cable,1,14.95,12/10/19 19:26,"208 1st St, Los Angeles, CA 90001" +298909,Apple Airpods Headphones,1,150,12/24/19 09:49,"877 Sunset St, Atlanta, GA 30301" +298910,AAA Batteries (4-pack),1,2.99,12/19/19 09:22,"221 Cherry St, San Francisco, CA 94016" +298911,27in 4K Gaming Monitor,1,389.99,12/31/19 09:37,"183 Hickory St, Dallas, TX 75001" +298912,AAA Batteries (4-pack),1,2.99,12/11/19 20:46,"548 Lincoln St, Boston, MA 02215" +298913,AAA Batteries (4-pack),1,2.99,12/20/19 21:56,"896 Hill St, San Francisco, CA 94016" +298914,AA Batteries (4-pack),2,3.84,12/08/19 16:46,"148 Highland St, Portland, OR 97035" +298914,AAA Batteries (4-pack),3,2.99,12/08/19 16:46,"148 Highland St, Portland, OR 97035" +298915,AA Batteries (4-pack),1,3.84,12/29/19 13:54,"530 14th St, New York City, NY 10001" +298916,USB-C Charging Cable,1,11.95,12/02/19 17:51,"226 Maple St, Boston, MA 02215" +298917,AA Batteries (4-pack),3,3.84,12/08/19 12:37,"345 Chestnut St, Seattle, WA 98101" +298918,Apple Airpods Headphones,1,150,12/01/19 14:19,"166 8th St, Portland, OR 97035" +298919,Lightning Charging Cable,1,14.95,12/09/19 10:46,"951 12th St, Los Angeles, CA 90001" +298920,Bose SoundSport Headphones,1,99.99,12/25/19 21:06,"222 Pine St, Boston, MA 02215" +298921,AAA Batteries (4-pack),2,2.99,12/09/19 23:02,"974 Main St, Seattle, WA 98101" +298922,AA Batteries (4-pack),1,3.84,12/10/19 13:21,"951 Walnut St, Dallas, TX 75001" +298923,Wired Headphones,1,11.99,12/20/19 17:10,"795 Park St, Boston, MA 02215" +298924,Macbook Pro Laptop,1,1700,12/16/19 21:10,"344 Meadow St, San Francisco, CA 94016" +298925,Lightning Charging Cable,1,14.95,12/10/19 15:15,"630 Adams St, New York City, NY 10001" +298926,34in Ultrawide Monitor,1,379.99,12/28/19 18:23,"532 Cedar St, New York City, NY 10001" +298927,Lightning Charging Cable,1,14.95,12/03/19 21:44,"109 Johnson St, Portland, OR 97035" +298928,Lightning Charging Cable,1,14.95,12/28/19 00:16,"515 Pine St, Los Angeles, CA 90001" +298929,27in FHD Monitor,1,149.99,12/20/19 22:14,"819 7th St, Portland, OR 97035" +298930,Google Phone,1,600,12/31/19 09:27,"997 1st St, New York City, NY 10001" +298931,27in 4K Gaming Monitor,1,389.99,12/17/19 21:15,"136 7th St, Los Angeles, CA 90001" +298932,Wired Headphones,1,11.99,12/26/19 21:04,"552 Walnut St, San Francisco, CA 94016" +298933,ThinkPad Laptop,1,999.99,12/15/19 07:58,"287 13th St, Los Angeles, CA 90001" +298934,USB-C Charging Cable,1,11.95,12/19/19 18:10,"482 Johnson St, New York City, NY 10001" +298935,Wired Headphones,1,11.99,12/29/19 18:02,"703 12th St, Dallas, TX 75001" +298936,34in Ultrawide Monitor,1,379.99,12/15/19 12:31,"492 10th St, Los Angeles, CA 90001" +298937,Bose SoundSport Headphones,1,99.99,12/14/19 23:16,"454 9th St, Seattle, WA 98101" +298938,Lightning Charging Cable,1,14.95,12/24/19 20:12,"675 Madison St, Boston, MA 02215" +298939,AA Batteries (4-pack),1,3.84,12/29/19 18:30,"475 Jefferson St, San Francisco, CA 94016" +298940,Bose SoundSport Headphones,1,99.99,12/01/19 17:20,"976 12th St, Boston, MA 02215" +298941,AA Batteries (4-pack),1,3.84,12/25/19 18:58,"228 Johnson St, Los Angeles, CA 90001" +298942,Wired Headphones,1,11.99,12/08/19 13:12,"372 Jackson St, Seattle, WA 98101" +298943,AAA Batteries (4-pack),2,2.99,12/22/19 13:20,"645 6th St, Los Angeles, CA 90001" +298944,Lightning Charging Cable,1,14.95,12/17/19 22:12,"781 Cherry St, Austin, TX 73301" +298945,AA Batteries (4-pack),1,3.84,12/28/19 09:32,"581 Lakeview St, New York City, NY 10001" +298946,iPhone,1,700,12/07/19 07:31,"605 7th St, New York City, NY 10001" +298947,Apple Airpods Headphones,1,150,12/13/19 03:57,"54 Hickory St, Boston, MA 02215" +298948,Lightning Charging Cable,1,14.95,12/30/19 01:54,"780 West St, Atlanta, GA 30301" +298949,iPhone,1,700,12/09/19 21:17,"563 Wilson St, Portland, ME 04101" +298950,ThinkPad Laptop,1,999.99,12/30/19 14:09,"344 Cedar St, New York City, NY 10001" +298951,Lightning Charging Cable,1,14.95,12/11/19 14:51,"811 Meadow St, San Francisco, CA 94016" +298952,USB-C Charging Cable,1,11.95,12/04/19 15:04,"979 Meadow St, San Francisco, CA 94016" +298953,27in FHD Monitor,1,149.99,12/31/19 20:25,"677 14th St, San Francisco, CA 94016" +298954,AA Batteries (4-pack),1,3.84,12/05/19 21:27,"225 Maple St, Seattle, WA 98101" +298955,Wired Headphones,1,11.99,12/30/19 23:01,"502 Walnut St, Austin, TX 73301" +298956,USB-C Charging Cable,1,11.95,12/07/19 16:46,"910 Lake St, Atlanta, GA 30301" +298957,Apple Airpods Headphones,1,150,12/25/19 11:53,"712 Center St, Atlanta, GA 30301" +298958,USB-C Charging Cable,1,11.95,12/06/19 16:16,"456 Walnut St, Dallas, TX 75001" +298959,AAA Batteries (4-pack),1,2.99,12/16/19 18:01,"85 Jackson St, San Francisco, CA 94016" +298960,Flatscreen TV,1,300,12/12/19 22:03,"603 2nd St, Austin, TX 73301" +298961,ThinkPad Laptop,1,999.99,12/24/19 18:08,"93 South St, New York City, NY 10001" +298962,AA Batteries (4-pack),1,3.84,12/10/19 13:14,"230 Cedar St, Los Angeles, CA 90001" +298963,USB-C Charging Cable,1,11.95,12/03/19 06:08,"445 North St, Los Angeles, CA 90001" +298964,34in Ultrawide Monitor,1,379.99,12/10/19 15:49,"264 Pine St, Austin, TX 73301" +298965,iPhone,1,700,12/11/19 13:11,"854 11th St, San Francisco, CA 94016" +298966,USB-C Charging Cable,1,11.95,12/26/19 16:57,"659 Forest St, Austin, TX 73301" +298967,AA Batteries (4-pack),1,3.84,12/12/19 19:27,"377 Maple St, Portland, OR 97035" +298968,AAA Batteries (4-pack),3,2.99,12/26/19 17:11,"877 Highland St, San Francisco, CA 94016" +298969,AA Batteries (4-pack),1,3.84,12/06/19 11:30,"776 Lincoln St, Los Angeles, CA 90001" +298970,AAA Batteries (4-pack),1,2.99,12/07/19 12:39,"237 Willow St, Austin, TX 73301" +298971,AA Batteries (4-pack),2,3.84,12/09/19 01:45,"825 Elm St, San Francisco, CA 94016" +298972,USB-C Charging Cable,1,11.95,12/11/19 15:01,"467 13th St, San Francisco, CA 94016" +298973,iPhone,1,700,12/01/19 16:45,"240 Dogwood St, Austin, TX 73301" +298973,Lightning Charging Cable,1,14.95,12/01/19 16:45,"240 Dogwood St, Austin, TX 73301" +298974,USB-C Charging Cable,1,11.95,12/29/19 17:23,"419 Jackson St, Los Angeles, CA 90001" +298975,AA Batteries (4-pack),1,3.84,12/02/19 10:47,"797 Jackson St, San Francisco, CA 94016" +298976,34in Ultrawide Monitor,1,379.99,12/16/19 16:26,"493 River St, Atlanta, GA 30301" +298977,USB-C Charging Cable,1,11.95,12/27/19 22:06,"394 Lake St, San Francisco, CA 94016" +298978,Macbook Pro Laptop,1,1700,12/15/19 17:50,"974 South St, Boston, MA 02215" +298979,AAA Batteries (4-pack),1,2.99,12/23/19 14:13,"520 South St, New York City, NY 10001" +298980,Apple Airpods Headphones,1,150,12/18/19 21:33,"385 South St, San Francisco, CA 94016" +298981,AA Batteries (4-pack),2,3.84,12/13/19 14:10,"261 Maple St, New York City, NY 10001" +298982,Wired Headphones,1,11.99,12/20/19 20:12,"859 Lincoln St, San Francisco, CA 94016" +298983,USB-C Charging Cable,1,11.95,12/13/19 16:18,"585 Lake St, Boston, MA 02215" +298984,USB-C Charging Cable,1,11.95,12/20/19 19:12,"848 Walnut St, Austin, TX 73301" +298985,AA Batteries (4-pack),2,3.84,12/22/19 20:33,"4 Meadow St, Boston, MA 02215" +298986,USB-C Charging Cable,1,11.95,12/03/19 17:01,"746 Jefferson St, Portland, OR 97035" +298987,USB-C Charging Cable,1,11.95,12/26/19 10:35,"955 Madison St, New York City, NY 10001" +298988,USB-C Charging Cable,1,11.95,12/29/19 11:25,"814 Center St, San Francisco, CA 94016" +298989,AA Batteries (4-pack),1,3.84,12/08/19 23:34,"167 2nd St, Atlanta, GA 30301" +298990,Apple Airpods Headphones,1,150,12/13/19 17:25,"764 Chestnut St, Seattle, WA 98101" +298991,AAA Batteries (4-pack),1,2.99,12/24/19 15:55,"685 West St, New York City, NY 10001" +298992,Apple Airpods Headphones,1,150,12/23/19 21:54,"971 Lakeview St, Austin, TX 73301" +298993,Apple Airpods Headphones,1,150,12/30/19 22:03,"862 Ridge St, Portland, OR 97035" +298994,Lightning Charging Cable,1,14.95,12/17/19 11:52,"396 Pine St, San Francisco, CA 94016" +298995,Flatscreen TV,1,300,12/20/19 16:56,"890 Jefferson St, Dallas, TX 75001" +298996,AAA Batteries (4-pack),1,2.99,12/03/19 22:24,"762 North St, Portland, OR 97035" +298997,Wired Headphones,1,11.99,12/02/19 21:40,"954 Cedar St, San Francisco, CA 94016" +298998,AA Batteries (4-pack),2,3.84,12/03/19 21:08,"454 6th St, Seattle, WA 98101" +298999,USB-C Charging Cable,1,11.95,12/03/19 16:26,"118 Main St, Los Angeles, CA 90001" +299000,Lightning Charging Cable,1,14.95,12/21/19 12:19,"270 Meadow St, San Francisco, CA 94016" +299001,AAA Batteries (4-pack),1,2.99,12/24/19 09:29,"574 Chestnut St, Los Angeles, CA 90001" +299002,AA Batteries (4-pack),1,3.84,12/23/19 20:18,"73 9th St, San Francisco, CA 94016" +299003,LG Dryer,1,600.0,12/21/19 06:13,"475 Ridge St, Seattle, WA 98101" +299004,Google Phone,1,600,12/19/19 09:25,"817 West St, San Francisco, CA 94016" +299005,AA Batteries (4-pack),1,3.84,12/16/19 18:43,"984 Park St, Dallas, TX 75001" +299006,Apple Airpods Headphones,1,150,12/20/19 12:35,"702 Cedar St, Austin, TX 73301" +299007,20in Monitor,1,109.99,12/29/19 15:23,"25 11th St, New York City, NY 10001" +299008,AAA Batteries (4-pack),1,2.99,12/31/19 18:37,"942 8th St, San Francisco, CA 94016" +299009,LG Dryer,1,600.0,12/11/19 08:43,"555 11th St, Portland, OR 97035" +299010,20in Monitor,1,109.99,12/18/19 08:52,"853 11th St, Boston, MA 02215" +299011,USB-C Charging Cable,1,11.95,12/10/19 14:15,"907 Pine St, San Francisco, CA 94016" +299012,Bose SoundSport Headphones,1,99.99,12/19/19 10:56,"478 10th St, Boston, MA 02215" +299013,27in 4K Gaming Monitor,1,389.99,12/07/19 13:32,"24 Center St, New York City, NY 10001" +299014,Lightning Charging Cable,1,14.95,12/28/19 18:17,"121 Adams St, San Francisco, CA 94016" +299015,27in FHD Monitor,1,149.99,12/27/19 14:31,"845 14th St, San Francisco, CA 94016" +299016,AA Batteries (4-pack),1,3.84,12/16/19 23:59,"899 8th St, New York City, NY 10001" +299017,Macbook Pro Laptop,1,1700,12/20/19 18:04,"86 6th St, San Francisco, CA 94016" +299018,Apple Airpods Headphones,1,150,12/16/19 16:04,"735 Lakeview St, Dallas, TX 75001" +299019,Bose SoundSport Headphones,1,99.99,12/24/19 11:07,"51 Sunset St, San Francisco, CA 94016" +299020,AA Batteries (4-pack),2,3.84,12/29/19 12:51,"979 Sunset St, Dallas, TX 75001" +299021,34in Ultrawide Monitor,1,379.99,12/09/19 20:59,"252 Lake St, San Francisco, CA 94016" +299022,USB-C Charging Cable,1,11.95,12/23/19 17:55,"867 Lincoln St, Austin, TX 73301" +299023,Wired Headphones,1,11.99,12/16/19 12:26,"979 1st St, Boston, MA 02215" +299024,Wired Headphones,1,11.99,12/15/19 22:16,"785 9th St, Los Angeles, CA 90001" +299025,Bose SoundSport Headphones,1,99.99,12/15/19 01:32,"441 Pine St, New York City, NY 10001" +299026,Wired Headphones,1,11.99,12/10/19 11:31,"497 Ridge St, Boston, MA 02215" +299027,AAA Batteries (4-pack),3,2.99,12/06/19 09:24,"153 South St, San Francisco, CA 94016" +299028,Apple Airpods Headphones,1,150,12/23/19 10:00,"229 Ridge St, Los Angeles, CA 90001" +299029,Lightning Charging Cable,1,14.95,12/24/19 00:48,"422 Lakeview St, San Francisco, CA 94016" +299030,AA Batteries (4-pack),1,3.84,12/29/19 00:24,"725 Hill St, Seattle, WA 98101" +299031,20in Monitor,1,109.99,12/12/19 20:30,"337 14th St, New York City, NY 10001" +299032,Bose SoundSport Headphones,1,99.99,12/28/19 11:38,"253 Adams St, Portland, OR 97035" +299033,Apple Airpods Headphones,1,150,12/27/19 10:18,"30 Lincoln St, San Francisco, CA 94016" +299034,AA Batteries (4-pack),2,3.84,12/20/19 15:02,"903 6th St, Los Angeles, CA 90001" +299035,AAA Batteries (4-pack),2,2.99,12/20/19 19:52,"875 10th St, San Francisco, CA 94016" +299036,AA Batteries (4-pack),1,3.84,12/02/19 13:54,"637 1st St, New York City, NY 10001" +299037,Bose SoundSport Headphones,1,99.99,12/30/19 12:38,"809 12th St, Austin, TX 73301" +299038,27in 4K Gaming Monitor,1,389.99,12/15/19 08:39,"392 Hill St, San Francisco, CA 94016" +299039,Apple Airpods Headphones,1,150,12/28/19 12:50,"645 6th St, New York City, NY 10001" +299040,AA Batteries (4-pack),1,3.84,12/03/19 10:59,"506 10th St, New York City, NY 10001" +299041,USB-C Charging Cable,2,11.95,12/27/19 13:00,"760 Dogwood St, Seattle, WA 98101" +299042,Wired Headphones,1,11.99,12/06/19 12:02,"711 Walnut St, Los Angeles, CA 90001" +299043,iPhone,1,700,12/17/19 18:22,"536 4th St, San Francisco, CA 94016" +299044,Apple Airpods Headphones,1,150,12/10/19 15:38,"802 10th St, New York City, NY 10001" +299045,Lightning Charging Cable,1,14.95,12/29/19 10:37,"480 Lakeview St, San Francisco, CA 94016" +299046,Lightning Charging Cable,1,14.95,12/08/19 12:25,"90 7th St, Boston, MA 02215" +299047,AA Batteries (4-pack),1,3.84,12/26/19 19:38,"451 11th St, Atlanta, GA 30301" +299048,27in FHD Monitor,1,149.99,12/20/19 06:53,"661 Cedar St, Los Angeles, CA 90001" +299049,Apple Airpods Headphones,1,150,12/16/19 14:55,"602 8th St, San Francisco, CA 94016" +299050,Wired Headphones,1,11.99,12/12/19 20:16,"389 4th St, Dallas, TX 75001" +299051,Lightning Charging Cable,1,14.95,12/15/19 10:23,"732 Elm St, New York City, NY 10001" +299052,AAA Batteries (4-pack),3,2.99,12/11/19 12:08,"45 7th St, New York City, NY 10001" +299053,Lightning Charging Cable,1,14.95,12/27/19 19:44,"963 2nd St, Portland, OR 97035" +299054,Bose SoundSport Headphones,1,99.99,12/18/19 10:07,"216 8th St, Portland, ME 04101" +299055,Apple Airpods Headphones,1,150,12/30/19 02:19,"117 Lake St, Boston, MA 02215" +299056,Bose SoundSport Headphones,1,99.99,12/24/19 22:46,"910 Elm St, San Francisco, CA 94016" +299057,Lightning Charging Cable,1,14.95,12/29/19 21:22,"93 Madison St, New York City, NY 10001" +299058,Apple Airpods Headphones,1,150,12/04/19 13:04,"487 Walnut St, Austin, TX 73301" +299059,AA Batteries (4-pack),1,3.84,12/14/19 22:04,"295 Jackson St, Seattle, WA 98101" +299060,27in FHD Monitor,1,149.99,12/14/19 08:56,"548 Sunset St, San Francisco, CA 94016" +299061,Lightning Charging Cable,1,14.95,12/05/19 12:37,"239 West St, Los Angeles, CA 90001" +299062,AA Batteries (4-pack),2,3.84,12/26/19 16:20,"536 North St, San Francisco, CA 94016" +299063,34in Ultrawide Monitor,1,379.99,12/31/19 12:22,"580 Cedar St, Boston, MA 02215" +299064,AAA Batteries (4-pack),2,2.99,12/01/19 12:51,"696 Center St, San Francisco, CA 94016" +299065,Wired Headphones,1,11.99,12/13/19 21:10,"338 Lincoln St, San Francisco, CA 94016" +299066,Bose SoundSport Headphones,1,99.99,12/02/19 20:26,"624 Pine St, Los Angeles, CA 90001" +299067,Bose SoundSport Headphones,1,99.99,12/27/19 18:49,"679 Adams St, Portland, OR 97035" +299068,AA Batteries (4-pack),1,3.84,12/24/19 19:55,"661 2nd St, New York City, NY 10001" +299069,Flatscreen TV,1,300,12/21/19 12:54,"729 Lincoln St, Boston, MA 02215" +299070,Apple Airpods Headphones,1,150,12/28/19 20:34,"927 Dogwood St, Dallas, TX 75001" +299071,Wired Headphones,1,11.99,12/30/19 22:45,"541 1st St, Seattle, WA 98101" +299072,Bose SoundSport Headphones,1,99.99,12/16/19 21:05,"638 12th St, Austin, TX 73301" +299073,Lightning Charging Cable,1,14.95,12/13/19 09:56,"137 Adams St, Austin, TX 73301" +299074,USB-C Charging Cable,1,11.95,12/13/19 11:31,"960 8th St, Los Angeles, CA 90001" +299075,AA Batteries (4-pack),1,3.84,12/26/19 13:34,"287 Pine St, Dallas, TX 75001" +299076,USB-C Charging Cable,1,11.95,12/08/19 11:35,"68 Highland St, New York City, NY 10001" +299077,AA Batteries (4-pack),1,3.84,12/18/19 21:16,"77 North St, Atlanta, GA 30301" +299078,USB-C Charging Cable,1,11.95,12/12/19 14:01,"490 Forest St, Seattle, WA 98101" +299079,Lightning Charging Cable,1,14.95,12/09/19 19:30,"554 Hickory St, San Francisco, CA 94016" +299080,34in Ultrawide Monitor,1,379.99,12/02/19 05:10,"375 1st St, New York City, NY 10001" +299081,Vareebadd Phone,1,400,12/29/19 10:44,"413 Willow St, Dallas, TX 75001" +299082,Lightning Charging Cable,1,14.95,12/22/19 18:45,"672 Lake St, Portland, OR 97035" +299082,AAA Batteries (4-pack),2,2.99,12/22/19 18:45,"672 Lake St, Portland, OR 97035" +299083,iPhone,1,700,12/02/19 13:44,"661 Hickory St, Portland, OR 97035" +299083,Wired Headphones,1,11.99,12/02/19 13:44,"661 Hickory St, Portland, OR 97035" +299084,AAA Batteries (4-pack),1,2.99,12/07/19 21:21,"998 Cedar St, New York City, NY 10001" +299085,Lightning Charging Cable,1,14.95,12/27/19 02:25,"454 Wilson St, Portland, OR 97035" +299086,Lightning Charging Cable,1,14.95,12/01/19 20:09,"366 Pine St, Boston, MA 02215" +299087,34in Ultrawide Monitor,1,379.99,12/07/19 21:19,"303 Wilson St, Boston, MA 02215" +299088,Flatscreen TV,1,300,12/15/19 19:44,"99 11th St, New York City, NY 10001" +299088,USB-C Charging Cable,1,11.95,12/15/19 19:44,"99 11th St, New York City, NY 10001" +299089,AAA Batteries (4-pack),1,2.99,12/18/19 16:53,"954 10th St, New York City, NY 10001" +299090,Lightning Charging Cable,1,14.95,12/16/19 16:56,"815 12th St, Atlanta, GA 30301" +299091,AA Batteries (4-pack),1,3.84,12/11/19 09:21,"510 Jackson St, Dallas, TX 75001" +299092,Google Phone,1,600,12/19/19 18:23,"133 Walnut St, Los Angeles, CA 90001" +299093,USB-C Charging Cable,1,11.95,12/13/19 07:28,"867 Lake St, Los Angeles, CA 90001" +299094,27in FHD Monitor,1,149.99,12/05/19 06:05,"806 Forest St, New York City, NY 10001" +299095,Macbook Pro Laptop,1,1700,12/18/19 10:58,"361 Cherry St, Austin, TX 73301" +299096,Apple Airpods Headphones,1,150,12/03/19 12:06,"174 River St, San Francisco, CA 94016" +299097,Flatscreen TV,1,300,12/26/19 13:19,"166 Jackson St, Austin, TX 73301" +299098,AA Batteries (4-pack),1,3.84,12/17/19 16:45,"968 14th St, San Francisco, CA 94016" +299099,USB-C Charging Cable,1,11.95,12/16/19 09:00,"136 Chestnut St, Los Angeles, CA 90001" +299100,Wired Headphones,1,11.99,12/06/19 07:24,"857 Spruce St, San Francisco, CA 94016" +299101,Apple Airpods Headphones,1,150,12/28/19 20:33,"781 West St, San Francisco, CA 94016" +299102,Bose SoundSport Headphones,1,99.99,12/24/19 17:10,"489 Cedar St, Dallas, TX 75001" +299103,Apple Airpods Headphones,1,150,12/19/19 13:33,"26 1st St, San Francisco, CA 94016" +299104,Apple Airpods Headphones,1,150,12/02/19 12:57,"349 Elm St, Boston, MA 02215" +299105,AAA Batteries (4-pack),1,2.99,12/21/19 21:47,"574 Center St, Atlanta, GA 30301" +299106,27in FHD Monitor,1,149.99,12/03/19 20:41,"822 13th St, San Francisco, CA 94016" +299107,AA Batteries (4-pack),1,3.84,12/12/19 17:34,"494 Center St, San Francisco, CA 94016" +299108,27in 4K Gaming Monitor,1,389.99,12/05/19 18:40,"237 14th St, Boston, MA 02215" +299109,Wired Headphones,1,11.99,12/12/19 04:53,"874 Adams St, Boston, MA 02215" +299109,USB-C Charging Cable,1,11.95,12/12/19 04:53,"874 Adams St, Boston, MA 02215" +299110,34in Ultrawide Monitor,1,379.99,12/03/19 07:52,"287 Park St, Seattle, WA 98101" +299111,Apple Airpods Headphones,1,150,12/14/19 11:39,"43 Center St, Portland, OR 97035" +299112,Lightning Charging Cable,1,14.95,12/09/19 22:32,"1 Forest St, San Francisco, CA 94016" +299113,Flatscreen TV,1,300,12/27/19 14:00,"808 Hill St, San Francisco, CA 94016" +299114,Lightning Charging Cable,1,14.95,12/30/19 12:49,"513 River St, San Francisco, CA 94016" +299115,AAA Batteries (4-pack),1,2.99,12/07/19 17:17,"872 Johnson St, San Francisco, CA 94016" +299116,Apple Airpods Headphones,1,150,12/21/19 13:07,"976 7th St, San Francisco, CA 94016" +299117,AAA Batteries (4-pack),2,2.99,12/19/19 19:50,"315 Hickory St, Los Angeles, CA 90001" +299118,20in Monitor,1,109.99,12/04/19 17:59,"924 5th St, San Francisco, CA 94016" +299119,Macbook Pro Laptop,1,1700,12/09/19 11:42,"848 Main St, Austin, TX 73301" +299120,ThinkPad Laptop,1,999.99,12/31/19 18:48,"349 Forest St, Boston, MA 02215" +299120,Flatscreen TV,1,300,12/31/19 18:48,"349 Forest St, Boston, MA 02215" +299121,AAA Batteries (4-pack),3,2.99,12/29/19 15:31,"456 Main St, San Francisco, CA 94016" +299122,Bose SoundSport Headphones,1,99.99,12/12/19 13:54,"593 2nd St, San Francisco, CA 94016" +299123,AAA Batteries (4-pack),1,2.99,12/08/19 21:50,"288 Madison St, San Francisco, CA 94016" +299124,AA Batteries (4-pack),2,3.84,12/13/19 14:25,"369 5th St, Los Angeles, CA 90001" +299125,27in 4K Gaming Monitor,1,389.99,12/01/19 17:54,"919 4th St, Dallas, TX 75001" +299126,27in 4K Gaming Monitor,1,389.99,12/02/19 20:06,"415 6th St, Boston, MA 02215" +299127,Flatscreen TV,1,300,12/18/19 17:06,"905 Ridge St, Seattle, WA 98101" +299128,AA Batteries (4-pack),2,3.84,12/24/19 17:12,"475 10th St, Boston, MA 02215" +299129,Wired Headphones,1,11.99,12/05/19 16:18,"285 5th St, Los Angeles, CA 90001" +299130,AAA Batteries (4-pack),1,2.99,12/14/19 15:02,"563 11th St, Boston, MA 02215" +299131,AAA Batteries (4-pack),1,2.99,12/04/19 12:47,"105 West St, Los Angeles, CA 90001" +299132,Lightning Charging Cable,1,14.95,12/20/19 11:10,"705 Walnut St, Portland, OR 97035" +299133,Wired Headphones,1,11.99,12/26/19 22:47,"786 Willow St, San Francisco, CA 94016" +299134,Lightning Charging Cable,1,14.95,12/09/19 15:07,"117 Johnson St, San Francisco, CA 94016" +299135,27in 4K Gaming Monitor,1,389.99,12/21/19 08:43,"79 Walnut St, New York City, NY 10001" +299136,Apple Airpods Headphones,1,150,12/04/19 14:12,"676 Dogwood St, Los Angeles, CA 90001" +299137,Apple Airpods Headphones,1,150,12/01/19 09:23,"847 Forest St, Boston, MA 02215" +299138,AA Batteries (4-pack),1,3.84,12/11/19 15:28,"883 4th St, Austin, TX 73301" +299139,Bose SoundSport Headphones,1,99.99,12/24/19 18:00,"653 North St, San Francisco, CA 94016" +299140,AAA Batteries (4-pack),1,2.99,12/16/19 20:50,"836 Lincoln St, San Francisco, CA 94016" +299141,Lightning Charging Cable,1,14.95,12/22/19 10:43,"943 North St, Atlanta, GA 30301" +299142,27in 4K Gaming Monitor,1,389.99,12/25/19 16:14,"855 8th St, Atlanta, GA 30301" +299143,Flatscreen TV,1,300,12/29/19 10:04,"231 Highland St, San Francisco, CA 94016" +299144,ThinkPad Laptop,1,999.99,12/24/19 15:01,"566 Hill St, San Francisco, CA 94016" +299145,Lightning Charging Cable,1,14.95,12/11/19 17:43,"829 5th St, Portland, OR 97035" +299146,AAA Batteries (4-pack),3,2.99,12/02/19 00:05,"414 River St, Seattle, WA 98101" +299147,Flatscreen TV,1,300,12/08/19 00:08,"805 Spruce St, San Francisco, CA 94016" +299148,Wired Headphones,1,11.99,12/14/19 12:42,"934 Ridge St, Atlanta, GA 30301" +299149,iPhone,1,700,12/17/19 10:05,"937 Lake St, San Francisco, CA 94016" +299150,AA Batteries (4-pack),1,3.84,12/15/19 01:17,"520 Ridge St, New York City, NY 10001" +299151,Google Phone,1,600,12/30/19 07:52,"638 Forest St, Atlanta, GA 30301" +299151,Wired Headphones,2,11.99,12/30/19 07:52,"638 Forest St, Atlanta, GA 30301" +299152,iPhone,1,700,12/11/19 20:38,"70 Washington St, Austin, TX 73301" +299153,Macbook Pro Laptop,1,1700,12/13/19 00:36,"426 Hill St, Los Angeles, CA 90001" +299154,34in Ultrawide Monitor,1,379.99,12/13/19 20:41,"405 2nd St, New York City, NY 10001" +299155,Wired Headphones,1,11.99,12/11/19 20:55,"892 Lincoln St, Dallas, TX 75001" +299156,Apple Airpods Headphones,1,150,12/03/19 16:39,"700 Main St, Los Angeles, CA 90001" +299157,AAA Batteries (4-pack),1,2.99,12/01/19 22:44,"85 Church St, Austin, TX 73301" +299158,AAA Batteries (4-pack),1,2.99,12/20/19 19:50,"104 6th St, Atlanta, GA 30301" +299159,27in FHD Monitor,1,149.99,12/31/19 16:06,"842 9th St, Boston, MA 02215" +299160,Macbook Pro Laptop,1,1700,12/05/19 12:14,"309 Church St, Seattle, WA 98101" +299161,AA Batteries (4-pack),2,3.84,12/01/19 17:52,"507 4th St, San Francisco, CA 94016" +299162,ThinkPad Laptop,1,999.99,12/25/19 18:38,"388 Willow St, Dallas, TX 75001" +299162,Apple Airpods Headphones,1,150,12/25/19 18:38,"388 Willow St, Dallas, TX 75001" +299163,Vareebadd Phone,1,400,12/25/19 09:09,"292 2nd St, Atlanta, GA 30301" +299163,Lightning Charging Cable,1,14.95,12/25/19 09:09,"292 2nd St, Atlanta, GA 30301" +299164,Wired Headphones,2,11.99,12/03/19 08:55,"230 Lake St, Dallas, TX 75001" +299165,ThinkPad Laptop,1,999.99,12/06/19 17:49,"968 Highland St, Boston, MA 02215" +299166,Macbook Pro Laptop,1,1700,12/02/19 08:27,"340 Willow St, New York City, NY 10001" +299167,Google Phone,1,600,12/18/19 10:43,"291 2nd St, San Francisco, CA 94016" +299168,AA Batteries (4-pack),1,3.84,12/03/19 19:13,"232 River St, Los Angeles, CA 90001" +299169,AA Batteries (4-pack),1,3.84,12/15/19 16:56,"509 9th St, Seattle, WA 98101" +299170,Wired Headphones,1,11.99,12/07/19 09:50,"972 7th St, Los Angeles, CA 90001" +299171,20in Monitor,1,109.99,12/07/19 13:26,"90 Maple St, Portland, OR 97035" +299172,USB-C Charging Cable,1,11.95,12/29/19 12:24,"38 9th St, San Francisco, CA 94016" +299173,Lightning Charging Cable,1,14.95,12/12/19 20:51,"565 Wilson St, Boston, MA 02215" +299174,AA Batteries (4-pack),2,3.84,12/26/19 20:09,"764 Johnson St, New York City, NY 10001" +299175,27in FHD Monitor,1,149.99,12/20/19 16:16,"8 10th St, San Francisco, CA 94016" +299176,Apple Airpods Headphones,1,150,12/21/19 10:24,"443 Jackson St, New York City, NY 10001" +299177,USB-C Charging Cable,1,11.95,12/13/19 17:57,"586 Jefferson St, Atlanta, GA 30301" +299178,Apple Airpods Headphones,1,150,12/07/19 06:34,"585 Johnson St, Dallas, TX 75001" +299179,Lightning Charging Cable,1,14.95,12/13/19 15:26,"360 1st St, Atlanta, GA 30301" +299180,Bose SoundSport Headphones,1,99.99,12/07/19 19:15,"216 Willow St, Atlanta, GA 30301" +299181,Apple Airpods Headphones,2,150,12/25/19 17:27,"683 Lake St, San Francisco, CA 94016" +299182,AA Batteries (4-pack),1,3.84,12/11/19 12:18,"165 1st St, San Francisco, CA 94016" +299183,iPhone,1,700,12/28/19 05:23,"415 West St, New York City, NY 10001" +299184,Wired Headphones,1,11.99,12/06/19 19:36,"814 Jackson St, Seattle, WA 98101" +299185,AAA Batteries (4-pack),3,2.99,12/13/19 15:08,"110 11th St, San Francisco, CA 94016" +299186,ThinkPad Laptop,1,999.99,12/08/19 19:26,"659 9th St, San Francisco, CA 94016" +299187,USB-C Charging Cable,1,11.95,12/09/19 10:16,"791 8th St, New York City, NY 10001" +299188,Google Phone,1,600,12/21/19 16:32,"620 Chestnut St, New York City, NY 10001" +299189,Lightning Charging Cable,1,14.95,12/29/19 22:13,"404 Johnson St, Seattle, WA 98101" +299190,USB-C Charging Cable,1,11.95,12/11/19 17:51,"971 Elm St, Dallas, TX 75001" +299191,Bose SoundSport Headphones,1,99.99,12/16/19 01:33,"582 12th St, Atlanta, GA 30301" +299192,AAA Batteries (4-pack),1,2.99,12/21/19 12:44,"852 Sunset St, San Francisco, CA 94016" +299193,USB-C Charging Cable,1,11.95,12/17/19 13:16,"183 7th St, New York City, NY 10001" +299194,Wired Headphones,1,11.99,12/11/19 20:57,"768 North St, San Francisco, CA 94016" +299195,AA Batteries (4-pack),1,3.84,12/19/19 12:08,"351 8th St, San Francisco, CA 94016" +299196,AAA Batteries (4-pack),1,2.99,12/30/19 12:21,"453 11th St, Los Angeles, CA 90001" +299197,Wired Headphones,1,11.99,12/23/19 19:09,"871 Ridge St, San Francisco, CA 94016" +299198,Apple Airpods Headphones,1,150,12/15/19 16:42,"445 1st St, Portland, ME 04101" +299199,Lightning Charging Cable,1,14.95,12/22/19 16:53,"286 7th St, San Francisco, CA 94016" +299200,USB-C Charging Cable,1,11.95,12/31/19 09:20,"52 Adams St, San Francisco, CA 94016" +299201,Apple Airpods Headphones,1,150,12/01/19 11:23,"141 Lake St, Los Angeles, CA 90001" +299202,20in Monitor,1,109.99,12/16/19 13:25,"91 14th St, Atlanta, GA 30301" +299203,iPhone,1,700,12/04/19 12:38,"973 13th St, Los Angeles, CA 90001" +299204,USB-C Charging Cable,1,11.95,12/24/19 14:08,"192 Washington St, New York City, NY 10001" +299205,USB-C Charging Cable,1,11.95,12/25/19 16:46,"266 Walnut St, San Francisco, CA 94016" +299206,27in 4K Gaming Monitor,1,389.99,12/27/19 19:00,"292 5th St, San Francisco, CA 94016" +299207,27in FHD Monitor,1,149.99,12/05/19 08:31,"878 Forest St, San Francisco, CA 94016" +299208,20in Monitor,1,109.99,12/08/19 07:54,"575 Sunset St, Seattle, WA 98101" +299209,Lightning Charging Cable,1,14.95,12/16/19 15:03,"421 Cedar St, Atlanta, GA 30301" +299210,AAA Batteries (4-pack),1,2.99,12/10/19 08:07,"177 6th St, Boston, MA 02215" +299211,Macbook Pro Laptop,1,1700,12/23/19 14:48,"772 11th St, Boston, MA 02215" +299212,Lightning Charging Cable,1,14.95,12/07/19 12:36,"784 5th St, San Francisco, CA 94016" +299213,Wired Headphones,1,11.99,12/19/19 21:25,"224 Wilson St, Boston, MA 02215" +299214,AAA Batteries (4-pack),4,2.99,12/05/19 16:48,"907 13th St, Los Angeles, CA 90001" +299215,27in 4K Gaming Monitor,1,389.99,12/09/19 16:47,"505 Jefferson St, Boston, MA 02215" +299216,AA Batteries (4-pack),1,3.84,12/30/19 07:57,"247 14th St, Boston, MA 02215" +299217,AAA Batteries (4-pack),1,2.99,12/14/19 11:57,"585 Wilson St, New York City, NY 10001" +299218,Lightning Charging Cable,1,14.95,12/20/19 22:06,"892 Center St, Boston, MA 02215" +299219,Apple Airpods Headphones,1,150,12/01/19 20:09,"707 Pine St, New York City, NY 10001" +299220,iPhone,1,700,12/03/19 18:43,"817 Lakeview St, Boston, MA 02215" +299221,Apple Airpods Headphones,1,150,12/06/19 18:50,"893 Chestnut St, Seattle, WA 98101" +299222,Apple Airpods Headphones,1,150,12/17/19 21:33,"348 Sunset St, New York City, NY 10001" +299223,AAA Batteries (4-pack),1,2.99,12/25/19 11:00,"567 Hickory St, Los Angeles, CA 90001" +299224,Apple Airpods Headphones,1,150,12/03/19 02:38,"506 Maple St, New York City, NY 10001" +299225,AAA Batteries (4-pack),2,2.99,12/22/19 18:18,"381 5th St, Atlanta, GA 30301" +299226,Apple Airpods Headphones,1,150,12/13/19 21:23,"114 North St, New York City, NY 10001" +299227,Lightning Charging Cable,1,14.95,12/06/19 11:10,"315 6th St, Los Angeles, CA 90001" +299228,27in 4K Gaming Monitor,1,389.99,12/25/19 17:09,"698 Park St, Austin, TX 73301" +299229,27in FHD Monitor,1,149.99,12/06/19 21:37,"782 11th St, New York City, NY 10001" +299230,Wired Headphones,1,11.99,12/18/19 15:11,"653 10th St, Los Angeles, CA 90001" +299231,AA Batteries (4-pack),1,3.84,12/13/19 10:35,"538 West St, San Francisco, CA 94016" +299232,iPhone,1,700,12/14/19 13:25,"818 6th St, San Francisco, CA 94016" +299233,USB-C Charging Cable,1,11.95,12/15/19 15:10,"157 8th St, Los Angeles, CA 90001" +299234,34in Ultrawide Monitor,1,379.99,12/26/19 17:24,"654 Dogwood St, Seattle, WA 98101" +299235,Google Phone,1,600,12/14/19 14:04,"160 Spruce St, Seattle, WA 98101" +299236,Macbook Pro Laptop,1,1700,12/14/19 18:38,"490 West St, Atlanta, GA 30301" +299237,Bose SoundSport Headphones,1,99.99,12/15/19 14:02,"246 Washington St, New York City, NY 10001" +299238,27in FHD Monitor,2,149.99,12/10/19 19:56,"41 Maple St, Boston, MA 02215" +299239,27in FHD Monitor,1,149.99,12/12/19 21:04,"214 Washington St, New York City, NY 10001" +299240,AA Batteries (4-pack),1,3.84,12/05/19 09:10,"216 Church St, Boston, MA 02215" +299241,Vareebadd Phone,1,400,12/08/19 08:43,"675 Cedar St, San Francisco, CA 94016" +299242,LG Dryer,1,600.0,12/12/19 19:24,"124 Johnson St, San Francisco, CA 94016" +299243,34in Ultrawide Monitor,1,379.99,12/23/19 20:24,"800 Jefferson St, Los Angeles, CA 90001" +299244,AAA Batteries (4-pack),2,2.99,12/05/19 16:55,"71 8th St, New York City, NY 10001" +299244,USB-C Charging Cable,1,11.95,12/05/19 16:55,"71 8th St, New York City, NY 10001" +299245,Apple Airpods Headphones,1,150,12/30/19 19:02,"921 Meadow St, Los Angeles, CA 90001" +299246,AAA Batteries (4-pack),1,2.99,12/24/19 12:40,"273 Sunset St, Boston, MA 02215" +299247,Flatscreen TV,1,300,12/14/19 11:51,"998 Center St, Los Angeles, CA 90001" +299248,AAA Batteries (4-pack),1,2.99,12/29/19 10:11,"698 7th St, Portland, OR 97035" +299249,Flatscreen TV,1,300,12/16/19 22:43,"572 Walnut St, Dallas, TX 75001" +299250,AA Batteries (4-pack),1,3.84,12/19/19 19:55,"661 Walnut St, San Francisco, CA 94016" +299251,AA Batteries (4-pack),1,3.84,12/11/19 12:33,"812 8th St, Portland, OR 97035" +299252,Lightning Charging Cable,1,14.95,12/25/19 17:32,"102 Hickory St, New York City, NY 10001" +299253,ThinkPad Laptop,1,999.99,12/22/19 15:00,"643 North St, Atlanta, GA 30301" +299254,27in FHD Monitor,1,149.99,12/05/19 10:50,"317 Center St, San Francisco, CA 94016" +299255,Apple Airpods Headphones,1,150,12/08/19 14:06,"137 1st St, San Francisco, CA 94016" +299256,Google Phone,1,600,12/04/19 19:02,"843 Hickory St, Los Angeles, CA 90001" +299257,Lightning Charging Cable,2,14.95,12/20/19 18:10,"545 Lakeview St, New York City, NY 10001" +299258,USB-C Charging Cable,1,11.95,12/05/19 13:49,"834 2nd St, Austin, TX 73301" +299259,Apple Airpods Headphones,1,150,12/30/19 19:00,"349 14th St, New York City, NY 10001" +299260,Bose SoundSport Headphones,1,99.99,12/01/19 11:20,"301 Hickory St, Los Angeles, CA 90001" +299261,iPhone,1,700,12/25/19 11:26,"181 Cedar St, Austin, TX 73301" +299262,Apple Airpods Headphones,1,150,12/14/19 09:59,"354 13th St, Boston, MA 02215" +299263,USB-C Charging Cable,1,11.95,12/26/19 16:17,"638 Pine St, Los Angeles, CA 90001" +299264,AAA Batteries (4-pack),1,2.99,12/13/19 21:44,"186 Hill St, San Francisco, CA 94016" +299265,Lightning Charging Cable,1,14.95,12/18/19 15:03,"900 Church St, Los Angeles, CA 90001" +299266,Apple Airpods Headphones,1,150,12/27/19 09:22,"471 Chestnut St, Dallas, TX 75001" +299267,Bose SoundSport Headphones,1,99.99,12/01/19 17:20,"480 Washington St, Boston, MA 02215" +299268,Flatscreen TV,1,300,12/18/19 07:36,"785 Lakeview St, San Francisco, CA 94016" +299269,Bose SoundSport Headphones,1,99.99,12/12/19 18:40,"466 7th St, New York City, NY 10001" +299270,Macbook Pro Laptop,1,1700,12/01/19 13:11,"232 North St, Los Angeles, CA 90001" +299271,ThinkPad Laptop,1,999.99,12/22/19 23:45,"552 Wilson St, San Francisco, CA 94016" +299272,iPhone,1,700,12/28/19 19:26,"321 7th St, New York City, NY 10001" +299272,Lightning Charging Cable,1,14.95,12/28/19 19:26,"321 7th St, New York City, NY 10001" +299273,27in FHD Monitor,1,149.99,12/04/19 16:22,"791 11th St, Boston, MA 02215" +299274,USB-C Charging Cable,1,11.95,12/27/19 16:33,"406 11th St, Atlanta, GA 30301" +299275,20in Monitor,1,109.99,12/07/19 21:21,"867 Adams St, New York City, NY 10001" +299276,AA Batteries (4-pack),2,3.84,12/18/19 12:09,"623 Meadow St, Los Angeles, CA 90001" +299277,ThinkPad Laptop,1,999.99,12/10/19 15:05,"594 Willow St, Los Angeles, CA 90001" +299277,Vareebadd Phone,1,400,12/10/19 15:05,"594 Willow St, Los Angeles, CA 90001" +299278,AAA Batteries (4-pack),1,2.99,12/08/19 06:24,"492 Maple St, Atlanta, GA 30301" +299279,Wired Headphones,1,11.99,12/24/19 14:42,"446 Lake St, Los Angeles, CA 90001" +299280,Wired Headphones,3,11.99,12/10/19 16:32,"558 Ridge St, Seattle, WA 98101" +299281,Wired Headphones,1,11.99,12/14/19 13:28,"873 Hickory St, Seattle, WA 98101" +299282,27in 4K Gaming Monitor,1,389.99,12/19/19 11:03,"969 Willow St, San Francisco, CA 94016" +299283,34in Ultrawide Monitor,1,379.99,12/03/19 10:41,"188 Madison St, Dallas, TX 75001" +299284,AA Batteries (4-pack),1,3.84,12/06/19 08:56,"338 Elm St, Seattle, WA 98101" +299285,Lightning Charging Cable,1,14.95,12/07/19 02:59,"951 Lincoln St, Dallas, TX 75001" +299286,AA Batteries (4-pack),1,3.84,12/26/19 04:27,"896 Chestnut St, Los Angeles, CA 90001" +299287,USB-C Charging Cable,1,11.95,12/21/19 16:28,"91 9th St, Portland, OR 97035" +299288,AA Batteries (4-pack),1,3.84,12/18/19 14:18,"485 4th St, Portland, ME 04101" +299289,AA Batteries (4-pack),1,3.84,12/11/19 17:43,"798 Lakeview St, Seattle, WA 98101" +299290,Wired Headphones,1,11.99,12/28/19 10:32,"58 5th St, Boston, MA 02215" +299291,Google Phone,1,600,12/05/19 18:17,"852 6th St, San Francisco, CA 94016" +299291,USB-C Charging Cable,1,11.95,12/05/19 18:17,"852 6th St, San Francisco, CA 94016" +299292,Wired Headphones,1,11.99,12/23/19 18:00,"51 Forest St, Los Angeles, CA 90001" +299293,Macbook Pro Laptop,1,1700,12/13/19 08:00,"364 Hickory St, Los Angeles, CA 90001" +299294,Lightning Charging Cable,1,14.95,12/15/19 12:31,"173 4th St, San Francisco, CA 94016" +299295,27in 4K Gaming Monitor,1,389.99,12/27/19 04:53,"508 Adams St, San Francisco, CA 94016" +299296,AAA Batteries (4-pack),1,2.99,12/03/19 07:44,"321 9th St, Los Angeles, CA 90001" +299297,Macbook Pro Laptop,1,1700,12/08/19 11:44,"669 Jackson St, San Francisco, CA 94016" +299298,Vareebadd Phone,1,400,12/19/19 17:26,"821 Walnut St, San Francisco, CA 94016" +299299,Wired Headphones,1,11.99,12/24/19 16:49,"288 Cedar St, San Francisco, CA 94016" +299300,USB-C Charging Cable,1,11.95,12/14/19 10:35,"325 Park St, San Francisco, CA 94016" +299301,iPhone,1,700,12/30/19 17:45,"879 Lake St, New York City, NY 10001" +299301,Lightning Charging Cable,1,14.95,12/30/19 17:45,"879 Lake St, New York City, NY 10001" +299302,Bose SoundSport Headphones,1,99.99,12/30/19 08:09,"18 Chestnut St, Atlanta, GA 30301" +299303,Lightning Charging Cable,1,14.95,12/09/19 10:09,"133 Maple St, San Francisco, CA 94016" +299304,AA Batteries (4-pack),2,3.84,12/23/19 18:48,"679 Adams St, Dallas, TX 75001" +299305,34in Ultrawide Monitor,1,379.99,12/24/19 20:33,"700 Lakeview St, Boston, MA 02215" +299306,Wired Headphones,1,11.99,12/14/19 14:36,"798 North St, San Francisco, CA 94016" +299307,USB-C Charging Cable,1,11.95,12/08/19 12:28,"751 Jefferson St, Los Angeles, CA 90001" +299308,AAA Batteries (4-pack),1,2.99,12/01/19 09:05,"27 Cherry St, San Francisco, CA 94016" +299309,Google Phone,1,600,12/19/19 00:50,"148 Dogwood St, San Francisco, CA 94016" +299310,AA Batteries (4-pack),1,3.84,12/15/19 17:57,"484 Sunset St, Los Angeles, CA 90001" +299311,27in FHD Monitor,1,149.99,12/23/19 08:52,"167 Pine St, Austin, TX 73301" +299312,Bose SoundSport Headphones,1,99.99,12/22/19 22:35,"713 Cherry St, San Francisco, CA 94016" +,,,,, +299313,Apple Airpods Headphones,1,150,12/20/19 18:49,"853 Jackson St, New York City, NY 10001" +299314,USB-C Charging Cable,2,11.95,12/18/19 08:26,"855 Ridge St, Los Angeles, CA 90001" +299315,Wired Headphones,1,11.99,12/22/19 10:39,"351 Wilson St, San Francisco, CA 94016" +299316,Lightning Charging Cable,1,14.95,12/13/19 11:50,"208 Washington St, Dallas, TX 75001" +299317,20in Monitor,1,109.99,12/14/19 20:32,"331 River St, Los Angeles, CA 90001" +299318,Lightning Charging Cable,1,14.95,12/01/19 15:18,"232 Lakeview St, San Francisco, CA 94016" +299319,Wired Headphones,1,11.99,12/27/19 14:46,"114 North St, New York City, NY 10001" +299320,AA Batteries (4-pack),1,3.84,12/02/19 21:51,"245 Pine St, New York City, NY 10001" +299321,Wired Headphones,1,11.99,12/04/19 12:38,"540 Maple St, New York City, NY 10001" +299322,34in Ultrawide Monitor,1,379.99,12/29/19 17:16,"377 Elm St, Los Angeles, CA 90001" +299323,AAA Batteries (4-pack),1,2.99,12/26/19 18:03,"383 5th St, Austin, TX 73301" +299324,Apple Airpods Headphones,1,150,12/17/19 09:15,"444 Willow St, New York City, NY 10001" +299325,iPhone,1,700,12/03/19 23:56,"871 6th St, New York City, NY 10001" +299325,Lightning Charging Cable,1,14.95,12/03/19 23:56,"871 6th St, New York City, NY 10001" +299326,Lightning Charging Cable,2,14.95,12/14/19 22:12,"116 Hill St, Austin, TX 73301" +299327,Flatscreen TV,1,300,12/09/19 19:37,"208 Main St, San Francisco, CA 94016" +299328,Apple Airpods Headphones,1,150,12/09/19 18:29,"289 6th St, San Francisco, CA 94016" +299329,Apple Airpods Headphones,1,150,12/14/19 10:07,"886 Hill St, New York City, NY 10001" +299330,Macbook Pro Laptop,1,1700,12/17/19 19:01,"280 Washington St, Los Angeles, CA 90001" +299331,ThinkPad Laptop,1,999.99,12/08/19 04:42,"374 6th St, Portland, ME 04101" +299332,Wired Headphones,1,11.99,12/09/19 22:15,"220 Johnson St, Atlanta, GA 30301" +299333,Lightning Charging Cable,1,14.95,12/23/19 16:04,"234 2nd St, San Francisco, CA 94016" +299334,Vareebadd Phone,1,400,12/06/19 18:22,"523 Meadow St, Los Angeles, CA 90001" +299335,Apple Airpods Headphones,1,150,12/19/19 04:29,"115 Cedar St, San Francisco, CA 94016" +299336,Apple Airpods Headphones,1,150,12/22/19 09:54,"926 Highland St, San Francisco, CA 94016" +299337,Macbook Pro Laptop,1,1700,12/21/19 19:36,"952 Washington St, San Francisco, CA 94016" +299338,USB-C Charging Cable,1,11.95,12/18/19 20:55,"946 9th St, Atlanta, GA 30301" +299339,AAA Batteries (4-pack),1,2.99,12/16/19 15:19,"113 Walnut St, Los Angeles, CA 90001" +299340,AA Batteries (4-pack),1,3.84,12/04/19 14:41,"782 6th St, Los Angeles, CA 90001" +299341,AAA Batteries (4-pack),2,2.99,12/10/19 14:06,"235 Lake St, San Francisco, CA 94016" +299342,AA Batteries (4-pack),1,3.84,12/26/19 09:30,"297 Spruce St, Los Angeles, CA 90001" +299343,Bose SoundSport Headphones,1,99.99,12/31/19 11:51,"390 13th St, Boston, MA 02215" +299344,Apple Airpods Headphones,1,150,12/13/19 16:57,"94 Highland St, Boston, MA 02215" +299345,AA Batteries (4-pack),2,3.84,12/12/19 10:06,"7 Willow St, Portland, ME 04101" +299346,AAA Batteries (4-pack),1,2.99,12/22/19 19:40,"34 Cherry St, New York City, NY 10001" +299347,20in Monitor,1,109.99,12/09/19 20:05,"124 Jefferson St, Los Angeles, CA 90001" +299348,Flatscreen TV,1,300,12/19/19 18:43,"727 11th St, Los Angeles, CA 90001" +299349,Apple Airpods Headphones,1,150,12/13/19 10:46,"294 Jefferson St, Los Angeles, CA 90001" +299350,Wired Headphones,1,11.99,12/21/19 18:46,"386 Dogwood St, San Francisco, CA 94016" +299351,Wired Headphones,1,11.99,12/07/19 11:57,"857 Lakeview St, Dallas, TX 75001" +299352,iPhone,1,700,12/06/19 13:34,"421 Adams St, New York City, NY 10001" +299353,Wired Headphones,1,11.99,12/07/19 14:43,"982 Wilson St, Los Angeles, CA 90001" +299354,AA Batteries (4-pack),1,3.84,12/02/19 20:23,"250 1st St, Austin, TX 73301" +299355,Macbook Pro Laptop,1,1700,12/27/19 21:30,"24 Lakeview St, New York City, NY 10001" +299356,34in Ultrawide Monitor,1,379.99,12/26/19 12:55,"984 8th St, New York City, NY 10001" +299357,Flatscreen TV,1,300,12/03/19 08:31,"539 1st St, Los Angeles, CA 90001" +299358,USB-C Charging Cable,1,11.95,12/14/19 07:50,"162 Hickory St, Dallas, TX 75001" +299359,Bose SoundSport Headphones,1,99.99,12/09/19 17:04,"552 Hickory St, San Francisco, CA 94016" +299360,USB-C Charging Cable,1,11.95,12/11/19 13:17,"688 Cherry St, San Francisco, CA 94016" +299361,Apple Airpods Headphones,1,150,12/09/19 14:30,"519 Maple St, Atlanta, GA 30301" +299362,AA Batteries (4-pack),1,3.84,12/15/19 18:04,"773 Main St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +299363,AA Batteries (4-pack),1,3.84,12/13/19 15:58,"751 8th St, San Francisco, CA 94016" +299364,Flatscreen TV,1,300,12/05/19 14:36,"379 Chestnut St, New York City, NY 10001" +299365,27in 4K Gaming Monitor,1,389.99,12/26/19 11:39,"128 Lincoln St, Seattle, WA 98101" +299366,Bose SoundSport Headphones,1,99.99,12/13/19 09:55,"865 1st St, San Francisco, CA 94016" +299367,USB-C Charging Cable,1,11.95,12/13/19 17:35,"487 1st St, Atlanta, GA 30301" +299368,AAA Batteries (4-pack),2,2.99,12/29/19 18:42,"342 9th St, Austin, TX 73301" +299369,AA Batteries (4-pack),1,3.84,12/26/19 08:40,"28 Meadow St, Dallas, TX 75001" +299370,Wired Headphones,1,11.99,12/27/19 20:14,"556 7th St, Atlanta, GA 30301" +299371,USB-C Charging Cable,1,11.95,12/13/19 19:37,"543 Pine St, Los Angeles, CA 90001" +299372,USB-C Charging Cable,1,11.95,12/16/19 06:23,"673 North St, New York City, NY 10001" +299373,Apple Airpods Headphones,1,150,12/29/19 19:19,"524 5th St, San Francisco, CA 94016" +299374,USB-C Charging Cable,2,11.95,12/31/19 14:05,"981 Adams St, San Francisco, CA 94016" +299375,27in 4K Gaming Monitor,1,389.99,12/14/19 20:59,"301 Church St, Atlanta, GA 30301" +299376,AAA Batteries (4-pack),1,2.99,12/17/19 20:14,"709 Dogwood St, Los Angeles, CA 90001" +299377,Lightning Charging Cable,1,14.95,12/06/19 13:30,"716 Lakeview St, Boston, MA 02215" +299378,USB-C Charging Cable,1,11.95,12/01/19 12:28,"175 West St, San Francisco, CA 94016" +299379,Flatscreen TV,1,300,12/10/19 00:23,"628 River St, Atlanta, GA 30301" +299380,Google Phone,1,600,12/19/19 19:35,"160 13th St, Atlanta, GA 30301" +299381,Wired Headphones,1,11.99,12/15/19 13:27,"84 Forest St, San Francisco, CA 94016" +299382,AAA Batteries (4-pack),1,2.99,12/08/19 23:12,"451 Hickory St, Boston, MA 02215" +299383,Google Phone,1,600,12/26/19 12:17,"969 5th St, Atlanta, GA 30301" +299384,iPhone,1,700,12/07/19 11:52,"193 7th St, San Francisco, CA 94016" +299385,Apple Airpods Headphones,1,150,12/01/19 07:15,"718 West St, Los Angeles, CA 90001" +299385,Wired Headphones,1,11.99,12/01/19 07:15,"718 West St, Los Angeles, CA 90001" +299386,Lightning Charging Cable,1,14.95,12/21/19 16:14,"598 Lincoln St, Austin, TX 73301" +299387,iPhone,1,700,12/04/19 21:28,"906 13th St, Austin, TX 73301" +299388,Lightning Charging Cable,1,14.95,12/10/19 00:22,"20 Pine St, New York City, NY 10001" +299389,Apple Airpods Headphones,1,150,12/06/19 17:13,"231 10th St, Los Angeles, CA 90001" +299390,USB-C Charging Cable,1,11.95,12/20/19 13:33,"32 6th St, San Francisco, CA 94016" +299391,Bose SoundSport Headphones,1,99.99,12/11/19 10:13,"397 Hickory St, Los Angeles, CA 90001" +299392,Macbook Pro Laptop,1,1700,12/08/19 11:57,"921 River St, Boston, MA 02215" +299393,Lightning Charging Cable,1,14.95,12/26/19 10:27,"302 5th St, Austin, TX 73301" +299394,20in Monitor,1,109.99,12/15/19 11:31,"106 11th St, Seattle, WA 98101" +299395,USB-C Charging Cable,1,11.95,12/20/19 12:41,"182 Chestnut St, Seattle, WA 98101" +299396,Bose SoundSport Headphones,1,99.99,12/11/19 23:51,"71 6th St, San Francisco, CA 94016" +299397,USB-C Charging Cable,1,11.95,12/10/19 19:59,"744 Madison St, New York City, NY 10001" +299398,Apple Airpods Headphones,1,150,12/13/19 22:52,"765 Spruce St, San Francisco, CA 94016" +299399,ThinkPad Laptop,1,999.99,12/29/19 22:05,"35 Church St, Los Angeles, CA 90001" +299400,27in FHD Monitor,1,149.99,12/16/19 21:17,"86 Cedar St, San Francisco, CA 94016" +299401,Macbook Pro Laptop,1,1700,12/25/19 04:23,"628 Park St, Dallas, TX 75001" +299402,AAA Batteries (4-pack),1,2.99,12/14/19 21:25,"488 River St, Los Angeles, CA 90001" +299403,Lightning Charging Cable,1,14.95,12/17/19 07:37,"346 11th St, Dallas, TX 75001" +299404,USB-C Charging Cable,1,11.95,12/25/19 15:22,"226 9th St, Boston, MA 02215" +299405,AA Batteries (4-pack),1,3.84,12/28/19 12:42,"517 South St, Dallas, TX 75001" +299406,AAA Batteries (4-pack),1,2.99,12/24/19 15:43,"614 14th St, Los Angeles, CA 90001" +299407,27in 4K Gaming Monitor,1,389.99,12/05/19 11:48,"360 Maple St, New York City, NY 10001" +299408,Wired Headphones,1,11.99,12/05/19 11:48,"363 Park St, New York City, NY 10001" +299409,ThinkPad Laptop,1,999.99,12/24/19 12:37,"657 Willow St, Portland, ME 04101" +299410,Wired Headphones,1,11.99,12/21/19 16:15,"502 13th St, Los Angeles, CA 90001" +299411,AAA Batteries (4-pack),1,2.99,12/26/19 14:05,"976 Forest St, San Francisco, CA 94016" +299412,Apple Airpods Headphones,1,150,12/22/19 22:06,"262 Jackson St, San Francisco, CA 94016" +299413,Bose SoundSport Headphones,1,99.99,12/02/19 18:46,"299 Wilson St, Atlanta, GA 30301" +299414,AA Batteries (4-pack),1,3.84,12/17/19 15:16,"162 5th St, Dallas, TX 75001" +299415,Lightning Charging Cable,1,14.95,12/22/19 17:21,"855 Johnson St, Seattle, WA 98101" +299416,Macbook Pro Laptop,1,1700,12/05/19 10:42,"585 Spruce St, Dallas, TX 75001" +299417,AAA Batteries (4-pack),2,2.99,12/04/19 09:03,"58 Cherry St, San Francisco, CA 94016" +299418,ThinkPad Laptop,1,999.99,12/18/19 12:40,"71 Hickory St, New York City, NY 10001" +299419,USB-C Charging Cable,1,11.95,12/29/19 16:52,"639 Chestnut St, Austin, TX 73301" +299420,Wired Headphones,1,11.99,12/09/19 22:15,"537 Lincoln St, Austin, TX 73301" +299421,Lightning Charging Cable,1,14.95,12/10/19 04:16,"629 12th St, New York City, NY 10001" +299422,Lightning Charging Cable,1,14.95,12/07/19 09:16,"835 Maple St, San Francisco, CA 94016" +299423,Apple Airpods Headphones,1,150,12/07/19 22:16,"499 Washington St, Boston, MA 02215" +299424,AA Batteries (4-pack),1,3.84,12/17/19 20:37,"890 Park St, Boston, MA 02215" +299425,Lightning Charging Cable,1,14.95,12/07/19 21:46,"394 2nd St, Boston, MA 02215" +299426,AA Batteries (4-pack),1,3.84,12/11/19 15:44,"920 Lake St, Boston, MA 02215" +299427,27in 4K Gaming Monitor,1,389.99,12/12/19 17:57,"660 Hill St, Dallas, TX 75001" +299428,USB-C Charging Cable,1,11.95,12/17/19 08:49,"131 7th St, Los Angeles, CA 90001" +299429,Bose SoundSport Headphones,1,99.99,12/24/19 19:43,"694 Willow St, San Francisco, CA 94016" +299430,27in 4K Gaming Monitor,1,389.99,12/05/19 09:13,"576 Washington St, San Francisco, CA 94016" +299431,iPhone,1,700,12/27/19 19:48,"853 Park St, San Francisco, CA 94016" +299431,Lightning Charging Cable,1,14.95,12/27/19 19:48,"853 Park St, San Francisco, CA 94016" +299432,Apple Airpods Headphones,1,150,12/27/19 18:54,"148 Cherry St, Atlanta, GA 30301" +299433,Wired Headphones,3,11.99,12/13/19 19:54,"455 9th St, Los Angeles, CA 90001" +299434,USB-C Charging Cable,1,11.95,12/10/19 13:58,"346 Lake St, Los Angeles, CA 90001" +299435,USB-C Charging Cable,1,11.95,12/12/19 20:45,"969 Walnut St, San Francisco, CA 94016" +299436,Flatscreen TV,1,300,12/03/19 12:25,"294 Church St, Atlanta, GA 30301" +299437,Google Phone,1,600,12/12/19 15:51,"672 Willow St, Atlanta, GA 30301" +299438,Wired Headphones,1,11.99,12/11/19 13:25,"497 Cedar St, Los Angeles, CA 90001" +299439,AA Batteries (4-pack),1,3.84,12/24/19 21:24,"910 4th St, Dallas, TX 75001" +299440,Google Phone,1,600,12/17/19 12:28,"70 Cherry St, Portland, ME 04101" +299440,USB-C Charging Cable,1,11.95,12/17/19 12:28,"70 Cherry St, Portland, ME 04101" +299441,AAA Batteries (4-pack),4,2.99,12/31/19 11:57,"888 Church St, Dallas, TX 75001" +299442,Vareebadd Phone,1,400,12/30/19 13:17,"910 Hill St, San Francisco, CA 94016" +299442,Bose SoundSport Headphones,1,99.99,12/30/19 13:17,"910 Hill St, San Francisco, CA 94016" +299443,ThinkPad Laptop,1,999.99,12/17/19 17:11,"168 8th St, San Francisco, CA 94016" +299444,AAA Batteries (4-pack),1,2.99,12/10/19 23:29,"685 Lincoln St, Atlanta, GA 30301" +299445,AA Batteries (4-pack),1,3.84,12/25/19 14:57,"276 North St, New York City, NY 10001" +299446,Bose SoundSport Headphones,1,99.99,12/19/19 20:31,"518 11th St, Boston, MA 02215" +299447,Apple Airpods Headphones,1,150,12/17/19 19:35,"662 Johnson St, Boston, MA 02215" +299448,Apple Airpods Headphones,1,150,12/05/19 09:18,"580 Dogwood St, San Francisco, CA 94016" +299449,Flatscreen TV,1,300,12/26/19 02:52,"311 Willow St, Los Angeles, CA 90001" +299450,Apple Airpods Headphones,1,150,12/11/19 12:31,"180 Jackson St, New York City, NY 10001" +299451,ThinkPad Laptop,1,999.99,12/08/19 09:33,"273 13th St, San Francisco, CA 94016" +299452,Apple Airpods Headphones,1,150,12/27/19 22:31,"456 Hill St, Atlanta, GA 30301" +299453,Wired Headphones,1,11.99,12/08/19 17:57,"637 Church St, San Francisco, CA 94016" +299454,Wired Headphones,1,11.99,12/21/19 17:33,"597 Main St, Seattle, WA 98101" +299455,34in Ultrawide Monitor,1,379.99,12/14/19 03:57,"44 4th St, Boston, MA 02215" +299456,AAA Batteries (4-pack),2,2.99,12/04/19 16:39,"619 Park St, Boston, MA 02215" +299457,AAA Batteries (4-pack),2,2.99,12/04/19 20:48,"148 Chestnut St, Dallas, TX 75001" +299458,AA Batteries (4-pack),4,3.84,12/22/19 12:10,"145 Highland St, Dallas, TX 75001" +299459,ThinkPad Laptop,1,999.99,12/12/19 13:42,"38 11th St, San Francisco, CA 94016" +299460,Lightning Charging Cable,1,14.95,12/08/19 21:10,"299 Center St, Atlanta, GA 30301" +299461,Apple Airpods Headphones,1,150,12/04/19 19:55,"501 Lake St, New York City, NY 10001" +299462,20in Monitor,1,109.99,12/06/19 19:29,"739 Jefferson St, Los Angeles, CA 90001" +299463,Google Phone,1,600,12/09/19 22:21,"422 Adams St, Seattle, WA 98101" +299464,USB-C Charging Cable,1,11.95,12/17/19 17:29,"369 2nd St, Los Angeles, CA 90001" +299465,Macbook Pro Laptop,1,1700,12/28/19 08:38,"413 Highland St, Portland, ME 04101" +299466,20in Monitor,1,109.99,12/27/19 14:06,"852 Johnson St, New York City, NY 10001" +299467,AAA Batteries (4-pack),1,2.99,12/04/19 10:44,"416 Meadow St, Atlanta, GA 30301" +299468,AAA Batteries (4-pack),4,2.99,12/31/19 00:18,"762 Cherry St, San Francisco, CA 94016" +299469,Google Phone,1,600,12/06/19 19:45,"675 10th St, Dallas, TX 75001" +299470,iPhone,1,700,12/13/19 09:59,"668 Park St, Boston, MA 02215" +299471,Macbook Pro Laptop,1,1700,12/08/19 20:26,"910 Spruce St, New York City, NY 10001" +299472,Lightning Charging Cable,1,14.95,12/11/19 12:23,"503 Maple St, New York City, NY 10001" +299473,27in FHD Monitor,1,149.99,12/16/19 12:25,"451 Johnson St, Los Angeles, CA 90001" +299474,AAA Batteries (4-pack),1,2.99,12/01/19 20:49,"797 Jefferson St, Los Angeles, CA 90001" +299475,Wired Headphones,1,11.99,12/12/19 19:05,"388 Main St, Portland, OR 97035" +299476,AA Batteries (4-pack),1,3.84,12/29/19 16:49,"976 Ridge St, New York City, NY 10001" +299477,34in Ultrawide Monitor,1,379.99,12/17/19 16:37,"651 7th St, San Francisco, CA 94016" +299478,ThinkPad Laptop,1,999.99,12/09/19 17:37,"289 7th St, Los Angeles, CA 90001" +299479,AA Batteries (4-pack),2,3.84,12/20/19 13:08,"440 Lake St, Dallas, TX 75001" +299479,AA Batteries (4-pack),1,3.84,12/20/19 13:08,"440 Lake St, Dallas, TX 75001" +299480,Lightning Charging Cable,1,14.95,12/11/19 12:43,"97 Madison St, Los Angeles, CA 90001" +299481,AAA Batteries (4-pack),3,2.99,12/24/19 12:49,"825 Cherry St, New York City, NY 10001" +299482,Apple Airpods Headphones,1,150,12/20/19 09:59,"783 Willow St, Los Angeles, CA 90001" +299483,Bose SoundSport Headphones,1,99.99,12/03/19 23:53,"701 Adams St, Los Angeles, CA 90001" +299484,iPhone,1,700,12/06/19 15:52,"531 Hill St, Atlanta, GA 30301" +299485,Apple Airpods Headphones,1,150,12/04/19 18:42,"95 Cedar St, San Francisco, CA 94016" +299486,AA Batteries (4-pack),1,3.84,12/28/19 15:56,"386 Wilson St, San Francisco, CA 94016" +299487,USB-C Charging Cable,1,11.95,12/04/19 09:15,"402 Park St, Los Angeles, CA 90001" +299488,AA Batteries (4-pack),1,3.84,12/29/19 15:13,"171 14th St, Los Angeles, CA 90001" +299488,AA Batteries (4-pack),1,3.84,12/29/19 15:13,"171 14th St, Los Angeles, CA 90001" +299489,34in Ultrawide Monitor,1,379.99,12/21/19 08:26,"654 Lakeview St, Atlanta, GA 30301" +299490,Lightning Charging Cable,1,14.95,12/13/19 20:21,"663 Lincoln St, Austin, TX 73301" +299491,Apple Airpods Headphones,1,150,12/06/19 15:17,"822 River St, San Francisco, CA 94016" +299492,AA Batteries (4-pack),3,3.84,12/03/19 16:08,"378 Adams St, New York City, NY 10001" +299493,AAA Batteries (4-pack),1,2.99,12/30/19 17:34,"682 West St, New York City, NY 10001" +299494,USB-C Charging Cable,1,11.95,12/07/19 18:36,"213 2nd St, Seattle, WA 98101" +299495,Wired Headphones,1,11.99,12/25/19 13:44,"86 Madison St, Los Angeles, CA 90001" +299496,Bose SoundSport Headphones,1,99.99,12/17/19 20:47,"215 Lincoln St, Los Angeles, CA 90001" +299497,iPhone,1,700,12/23/19 08:54,"843 6th St, San Francisco, CA 94016" +299498,AAA Batteries (4-pack),1,2.99,12/07/19 17:39,"94 Highland St, Boston, MA 02215" +299499,Lightning Charging Cable,1,14.95,12/26/19 15:24,"946 Main St, Los Angeles, CA 90001" +299500,AAA Batteries (4-pack),1,2.99,12/22/19 00:37,"899 Spruce St, New York City, NY 10001" +299501,AAA Batteries (4-pack),1,2.99,12/26/19 14:14,"765 West St, New York City, NY 10001" +299502,Lightning Charging Cable,2,14.95,12/05/19 14:04,"488 Forest St, Los Angeles, CA 90001" +299503,Vareebadd Phone,1,400,12/28/19 12:27,"149 Forest St, New York City, NY 10001" +299504,AAA Batteries (4-pack),1,2.99,12/28/19 11:16,"308 Elm St, New York City, NY 10001" +299505,Lightning Charging Cable,1,14.95,12/30/19 10:56,"29 9th St, Portland, OR 97035" +299506,Lightning Charging Cable,1,14.95,12/10/19 18:51,"938 Dogwood St, San Francisco, CA 94016" +299507,USB-C Charging Cable,3,11.95,12/05/19 06:30,"606 2nd St, San Francisco, CA 94016" +299508,34in Ultrawide Monitor,1,379.99,12/17/19 22:59,"708 Center St, Portland, OR 97035" +299509,LG Washing Machine,1,600.0,12/04/19 19:35,"640 13th St, Seattle, WA 98101" +299510,USB-C Charging Cable,1,11.95,12/10/19 19:51,"387 11th St, San Francisco, CA 94016" +299511,Wired Headphones,1,11.99,12/04/19 14:04,"2 Walnut St, New York City, NY 10001" +299512,34in Ultrawide Monitor,1,379.99,12/22/19 17:38,"470 Main St, Boston, MA 02215" +299513,USB-C Charging Cable,1,11.95,12/12/19 14:26,"901 Park St, San Francisco, CA 94016" +299514,Apple Airpods Headphones,1,150,12/26/19 17:24,"227 Cedar St, Los Angeles, CA 90001" +299515,AA Batteries (4-pack),2,3.84,12/07/19 11:11,"949 14th St, New York City, NY 10001" +299516,Wired Headphones,1,11.99,12/21/19 21:35,"963 Walnut St, San Francisco, CA 94016" +299517,27in 4K Gaming Monitor,1,389.99,12/14/19 14:44,"897 8th St, Dallas, TX 75001" +299518,34in Ultrawide Monitor,1,379.99,12/15/19 14:38,"122 11th St, Seattle, WA 98101" +299519,Bose SoundSport Headphones,1,99.99,12/17/19 17:15,"872 10th St, Dallas, TX 75001" +299520,Apple Airpods Headphones,1,150,12/31/19 12:30,"528 Chestnut St, San Francisco, CA 94016" +299521,AA Batteries (4-pack),2,3.84,12/22/19 15:44,"525 Jefferson St, New York City, NY 10001" +299522,USB-C Charging Cable,1,11.95,12/20/19 19:51,"857 2nd St, Atlanta, GA 30301" +299523,Wired Headphones,1,11.99,12/21/19 13:56,"763 Elm St, San Francisco, CA 94016" +299524,Apple Airpods Headphones,1,150,12/17/19 10:44,"105 Jackson St, Atlanta, GA 30301" +299525,USB-C Charging Cable,2,11.95,12/26/19 17:14,"548 Park St, Dallas, TX 75001" +299526,iPhone,1,700,12/06/19 09:03,"842 Lake St, Portland, OR 97035" +299527,Macbook Pro Laptop,1,1700,12/13/19 20:44,"479 Meadow St, San Francisco, CA 94016" +299528,AAA Batteries (4-pack),1,2.99,12/29/19 19:59,"215 1st St, Los Angeles, CA 90001" +299529,USB-C Charging Cable,1,11.95,12/13/19 15:51,"306 5th St, Atlanta, GA 30301" +299530,34in Ultrawide Monitor,1,379.99,12/24/19 17:31,"66 Pine St, Atlanta, GA 30301" +299531,AA Batteries (4-pack),4,3.84,12/31/19 07:15,"914 4th St, Boston, MA 02215" +299532,iPhone,1,700,12/06/19 19:00,"867 8th St, Dallas, TX 75001" +299533,iPhone,1,700,12/01/19 12:45,"260 14th St, New York City, NY 10001" +299534,Google Phone,1,600,12/24/19 00:42,"640 Dogwood St, Los Angeles, CA 90001" +299535,34in Ultrawide Monitor,1,379.99,12/28/19 09:37,"784 Highland St, San Francisco, CA 94016" +299536,Apple Airpods Headphones,1,150,12/13/19 06:45,"416 Elm St, Atlanta, GA 30301" +299537,27in FHD Monitor,1,149.99,12/01/19 16:56,"828 Maple St, Austin, TX 73301" +299538,iPhone,1,700,12/22/19 19:28,"861 Chestnut St, Seattle, WA 98101" +299539,USB-C Charging Cable,1,11.95,12/02/19 14:42,"388 Center St, Boston, MA 02215" +299540,AA Batteries (4-pack),1,3.84,12/02/19 17:00,"454 Pine St, Los Angeles, CA 90001" +299541,USB-C Charging Cable,1,11.95,12/27/19 14:20,"878 Adams St, Boston, MA 02215" +299542,ThinkPad Laptop,1,999.99,12/16/19 10:30,"568 Johnson St, Los Angeles, CA 90001" +299543,AAA Batteries (4-pack),1,2.99,12/30/19 21:57,"682 West St, Los Angeles, CA 90001" +299544,27in FHD Monitor,1,149.99,12/29/19 23:07,"883 River St, Portland, OR 97035" +299545,Lightning Charging Cable,1,14.95,12/06/19 00:04,"877 North St, Boston, MA 02215" +299546,AAA Batteries (4-pack),2,2.99,12/21/19 14:01,"328 Lakeview St, Atlanta, GA 30301" +299547,AAA Batteries (4-pack),3,2.99,12/20/19 22:49,"425 Jackson St, San Francisco, CA 94016" +299548,Google Phone,1,600,12/20/19 12:48,"665 Forest St, Austin, TX 73301" +299549,34in Ultrawide Monitor,1,379.99,12/24/19 15:35,"309 Washington St, Los Angeles, CA 90001" +299550,Wired Headphones,1,11.99,12/20/19 17:07,"323 Adams St, Los Angeles, CA 90001" +299551,Macbook Pro Laptop,1,1700,12/17/19 07:56,"117 9th St, Portland, OR 97035" +299552,34in Ultrawide Monitor,1,379.99,12/04/19 12:31,"285 Cedar St, Dallas, TX 75001" +299553,27in FHD Monitor,1,149.99,12/11/19 19:18,"829 Meadow St, Los Angeles, CA 90001" +299554,Bose SoundSport Headphones,1,99.99,12/19/19 16:43,"890 Hill St, Atlanta, GA 30301" +299555,Wired Headphones,2,11.99,12/12/19 20:50,"154 Ridge St, Los Angeles, CA 90001" +299556,ThinkPad Laptop,1,999.99,12/06/19 16:14,"485 Meadow St, Atlanta, GA 30301" +299557,USB-C Charging Cable,1,11.95,12/15/19 20:52,"925 7th St, Boston, MA 02215" +299558,27in FHD Monitor,1,149.99,12/14/19 14:23,"19 Walnut St, Boston, MA 02215" +299559,USB-C Charging Cable,1,11.95,12/07/19 15:18,"337 14th St, Atlanta, GA 30301" +299560,AAA Batteries (4-pack),2,2.99,12/30/19 09:19,"173 Lakeview St, Dallas, TX 75001" +299561,Apple Airpods Headphones,1,150,12/21/19 20:56,"123 Lake St, Boston, MA 02215" +299562,AAA Batteries (4-pack),1,2.99,12/12/19 08:42,"758 Lincoln St, Boston, MA 02215" +299563,Wired Headphones,1,11.99,12/08/19 21:06,"720 Willow St, San Francisco, CA 94016" +299564,Flatscreen TV,1,300,12/22/19 17:48,"298 1st St, Seattle, WA 98101" +299565,Wired Headphones,1,11.99,12/07/19 08:24,"931 8th St, Seattle, WA 98101" +299566,Bose SoundSport Headphones,1,99.99,12/10/19 15:05,"138 North St, New York City, NY 10001" +299567,Wired Headphones,1,11.99,12/15/19 21:04,"913 Hill St, Dallas, TX 75001" +299568,Bose SoundSport Headphones,1,99.99,12/11/19 09:47,"335 Main St, Los Angeles, CA 90001" +299569,AAA Batteries (4-pack),1,2.99,12/14/19 13:06,"809 Spruce St, Dallas, TX 75001" +299570,27in FHD Monitor,1,149.99,12/22/19 21:33,"642 Cedar St, San Francisco, CA 94016" +299571,USB-C Charging Cable,1,11.95,12/25/19 23:08,"306 North St, Dallas, TX 75001" +299572,AAA Batteries (4-pack),2,2.99,12/24/19 00:19,"448 Dogwood St, Los Angeles, CA 90001" +299573,Lightning Charging Cable,1,14.95,12/16/19 13:44,"671 Forest St, Los Angeles, CA 90001" +299574,Apple Airpods Headphones,1,150,12/05/19 20:00,"952 Pine St, Portland, OR 97035" +299575,27in FHD Monitor,1,149.99,12/27/19 13:38,"783 Jefferson St, Dallas, TX 75001" +299576,AA Batteries (4-pack),1,3.84,12/25/19 19:19,"628 Washington St, San Francisco, CA 94016" +299577,iPhone,1,700,12/05/19 20:36,"195 9th St, Portland, ME 04101" +299578,USB-C Charging Cable,1,11.95,12/16/19 16:56,"189 West St, San Francisco, CA 94016" +299579,20in Monitor,1,109.99,12/10/19 23:33,"279 Meadow St, Atlanta, GA 30301" +299580,AA Batteries (4-pack),1,3.84,12/22/19 13:02,"148 Main St, Boston, MA 02215" +299581,Lightning Charging Cable,1,14.95,12/25/19 13:33,"941 Forest St, San Francisco, CA 94016" +299582,Wired Headphones,1,11.99,12/29/19 10:53,"730 10th St, Seattle, WA 98101" +299583,AAA Batteries (4-pack),1,2.99,12/02/19 23:59,"819 Ridge St, Los Angeles, CA 90001" +299584,ThinkPad Laptop,1,999.99,12/23/19 15:11,"733 Dogwood St, Los Angeles, CA 90001" +299585,AAA Batteries (4-pack),1,2.99,12/17/19 11:41,"489 Jefferson St, Seattle, WA 98101" +299586,iPhone,1,700,12/10/19 12:43,"499 2nd St, San Francisco, CA 94016" +299587,AAA Batteries (4-pack),2,2.99,12/06/19 13:04,"883 Main St, Dallas, TX 75001" +299588,Wired Headphones,1,11.99,12/07/19 14:22,"162 13th St, Portland, OR 97035" +299589,Google Phone,1,600,12/31/19 17:43,"45 Meadow St, Seattle, WA 98101" +299589,USB-C Charging Cable,1,11.95,12/31/19 17:43,"45 Meadow St, Seattle, WA 98101" +299590,Wired Headphones,1,11.99,12/31/19 21:12,"876 Church St, Los Angeles, CA 90001" +299591,AA Batteries (4-pack),1,3.84,12/18/19 06:19,"289 Ridge St, Boston, MA 02215" +299592,Google Phone,1,600,12/26/19 20:39,"805 8th St, Atlanta, GA 30301" +299593,Flatscreen TV,1,300,12/15/19 15:40,"541 Lincoln St, Atlanta, GA 30301" +299594,AA Batteries (4-pack),1,3.84,12/15/19 21:52,"411 North St, Boston, MA 02215" +299595,27in FHD Monitor,1,149.99,12/30/19 18:00,"377 Center St, San Francisco, CA 94016" +299596,AAA Batteries (4-pack),1,2.99,12/28/19 11:46,"301 Main St, Seattle, WA 98101" +299597,Macbook Pro Laptop,1,1700,12/18/19 12:17,"996 5th St, San Francisco, CA 94016" +299598,Bose SoundSport Headphones,1,99.99,12/14/19 20:16,"888 6th St, Dallas, TX 75001" +299599,AAA Batteries (4-pack),2,2.99,12/25/19 12:26,"318 Main St, Dallas, TX 75001" +299600,iPhone,1,700,12/26/19 14:59,"780 Park St, New York City, NY 10001" +299600,Wired Headphones,1,11.99,12/26/19 14:59,"780 Park St, New York City, NY 10001" +299601,27in FHD Monitor,1,149.99,12/14/19 14:10,"368 Elm St, Boston, MA 02215" +299602,Lightning Charging Cable,2,14.95,12/03/19 00:34,"947 Spruce St, New York City, NY 10001" +299603,27in FHD Monitor,1,149.99,12/19/19 06:32,"483 Madison St, San Francisco, CA 94016" +299604,Apple Airpods Headphones,1,150,12/17/19 10:55,"308 Lake St, Dallas, TX 75001" +299605,Flatscreen TV,1,300,12/31/19 17:52,"22 Washington St, Portland, OR 97035" +299606,iPhone,1,700,12/17/19 17:27,"180 Adams St, Portland, OR 97035" +299607,20in Monitor,1,109.99,12/09/19 15:11,"378 2nd St, San Francisco, CA 94016" +299608,ThinkPad Laptop,1,999.99,12/04/19 09:34,"61 Pine St, Los Angeles, CA 90001" +299609,AAA Batteries (4-pack),2,2.99,12/24/19 13:38,"448 2nd St, San Francisco, CA 94016" +299610,AAA Batteries (4-pack),1,2.99,12/19/19 12:26,"590 Lake St, New York City, NY 10001" +299611,Lightning Charging Cable,1,14.95,12/20/19 17:21,"107 Elm St, Los Angeles, CA 90001" +299612,Wired Headphones,1,11.99,12/23/19 16:26,"676 Lincoln St, Seattle, WA 98101" +299613,Bose SoundSport Headphones,1,99.99,12/14/19 13:55,"13 14th St, New York City, NY 10001" +299614,AA Batteries (4-pack),1,3.84,12/22/19 13:37,"252 Jefferson St, San Francisco, CA 94016" +299615,Lightning Charging Cable,1,14.95,12/07/19 13:50,"319 Adams St, San Francisco, CA 94016" +299616,Apple Airpods Headphones,1,150,12/14/19 00:45,"933 7th St, New York City, NY 10001" +299617,Flatscreen TV,1,300,12/28/19 19:57,"323 Hill St, Portland, OR 97035" +299618,Wired Headphones,1,11.99,12/05/19 17:37,"958 Hickory St, San Francisco, CA 94016" +299619,AA Batteries (4-pack),1,3.84,12/02/19 21:37,"667 11th St, New York City, NY 10001" +299620,USB-C Charging Cable,1,11.95,12/23/19 20:16,"237 Spruce St, San Francisco, CA 94016" +299621,AA Batteries (4-pack),1,3.84,12/30/19 11:23,"255 Spruce St, Austin, TX 73301" +299622,20in Monitor,1,109.99,12/14/19 18:00,"155 Cedar St, Portland, ME 04101" +299623,AAA Batteries (4-pack),3,2.99,12/11/19 21:33,"250 Hickory St, Seattle, WA 98101" +299624,Wired Headphones,1,11.99,12/25/19 23:37,"209 Highland St, San Francisco, CA 94016" +299625,Wired Headphones,1,11.99,12/15/19 12:52,"191 8th St, Los Angeles, CA 90001" +299626,AA Batteries (4-pack),1,3.84,12/24/19 17:10,"828 Washington St, Portland, OR 97035" +299627,Apple Airpods Headphones,1,150,12/07/19 17:02,"943 Forest St, Los Angeles, CA 90001" +299628,USB-C Charging Cable,1,11.95,12/13/19 23:00,"136 Highland St, Boston, MA 02215" +299629,Wired Headphones,1,11.99,12/29/19 12:41,"750 Dogwood St, Austin, TX 73301" +299630,Flatscreen TV,1,300,12/16/19 12:47,"985 Lakeview St, Boston, MA 02215" +299631,iPhone,1,700,12/28/19 16:03,"834 1st St, Los Angeles, CA 90001" +299632,Google Phone,1,600,12/18/19 11:27,"202 Highland St, Seattle, WA 98101" +299633,Wired Headphones,1,11.99,12/26/19 08:41,"944 West St, Portland, OR 97035" +299634,AA Batteries (4-pack),3,3.84,12/15/19 13:41,"49 Lincoln St, Atlanta, GA 30301" +299635,Apple Airpods Headphones,1,150,12/01/19 15:55,"777 Maple St, San Francisco, CA 94016" +299636,AAA Batteries (4-pack),1,2.99,12/20/19 07:54,"412 North St, New York City, NY 10001" +299637,iPhone,1,700,12/07/19 11:46,"366 Madison St, Boston, MA 02215" +299637,Lightning Charging Cable,1,14.95,12/07/19 11:46,"366 Madison St, Boston, MA 02215" +299638,AAA Batteries (4-pack),1,2.99,12/01/19 16:59,"902 Wilson St, New York City, NY 10001" +299639,Bose SoundSport Headphones,1,99.99,12/11/19 08:15,"750 Park St, San Francisco, CA 94016" +299640,Wired Headphones,1,11.99,12/23/19 19:17,"623 River St, Boston, MA 02215" +299641,Vareebadd Phone,1,400,12/12/19 12:33,"801 Jackson St, Seattle, WA 98101" +299642,Wired Headphones,1,11.99,12/02/19 15:36,"856 West St, Dallas, TX 75001" +299643,Flatscreen TV,1,300,12/27/19 12:51,"225 Maple St, Seattle, WA 98101" +299644,Bose SoundSport Headphones,1,99.99,12/08/19 11:02,"51 4th St, New York City, NY 10001" +299645,USB-C Charging Cable,1,11.95,12/24/19 18:02,"202 5th St, Portland, OR 97035" +299646,LG Washing Machine,1,600.0,12/17/19 10:02,"620 Johnson St, Dallas, TX 75001" +299647,AAA Batteries (4-pack),1,2.99,12/26/19 13:55,"472 11th St, San Francisco, CA 94016" +299648,Bose SoundSport Headphones,1,99.99,12/23/19 14:29,"957 Hickory St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +299649,Wired Headphones,1,11.99,12/03/19 12:56,"883 Center St, San Francisco, CA 94016" +299650,AAA Batteries (4-pack),1,2.99,12/14/19 15:22,"931 Church St, San Francisco, CA 94016" +299651,USB-C Charging Cable,1,11.95,12/17/19 21:10,"549 10th St, Los Angeles, CA 90001" +299652,Apple Airpods Headphones,1,150,12/20/19 14:55,"723 Cedar St, Boston, MA 02215" +299653,AA Batteries (4-pack),1,3.84,12/05/19 19:28,"322 7th St, Seattle, WA 98101" +299654,Lightning Charging Cable,1,14.95,12/18/19 01:43,"94 Lake St, Atlanta, GA 30301" +299655,Lightning Charging Cable,1,14.95,12/06/19 15:32,"999 South St, Dallas, TX 75001" +299656,Bose SoundSport Headphones,1,99.99,12/27/19 10:53,"474 8th St, Boston, MA 02215" +299657,27in FHD Monitor,1,149.99,12/06/19 03:26,"542 Maple St, Boston, MA 02215" +299658,Lightning Charging Cable,1,14.95,12/07/19 21:03,"532 Lakeview St, Atlanta, GA 30301" +299659,27in FHD Monitor,1,149.99,12/01/19 16:35,"309 Jefferson St, Seattle, WA 98101" +299660,Bose SoundSport Headphones,1,99.99,12/11/19 06:21,"838 2nd St, San Francisco, CA 94016" +299661,USB-C Charging Cable,1,11.95,12/31/19 20:17,"606 13th St, Seattle, WA 98101" +299662,iPhone,1,700,12/22/19 10:34,"317 2nd St, New York City, NY 10001" +299662,Lightning Charging Cable,1,14.95,12/22/19 10:34,"317 2nd St, New York City, NY 10001" +299662,Wired Headphones,1,11.99,12/22/19 10:34,"317 2nd St, New York City, NY 10001" +299663,Lightning Charging Cable,1,14.95,12/27/19 01:42,"377 Ridge St, Los Angeles, CA 90001" +299664,AAA Batteries (4-pack),3,2.99,12/08/19 16:54,"877 Forest St, Boston, MA 02215" +299665,Macbook Pro Laptop,1,1700,12/01/19 15:43,"753 West St, Portland, OR 97035" +299666,AA Batteries (4-pack),2,3.84,12/14/19 09:43,"360 Pine St, San Francisco, CA 94016" +299667,Lightning Charging Cable,1,14.95,12/20/19 20:19,"460 Lincoln St, Los Angeles, CA 90001" +299668,ThinkPad Laptop,1,999.99,12/19/19 20:10,"778 Main St, Boston, MA 02215" +299669,20in Monitor,1,109.99,12/24/19 20:46,"930 7th St, San Francisco, CA 94016" +299670,27in FHD Monitor,2,149.99,12/23/19 04:25,"92 13th St, San Francisco, CA 94016" +299670,AAA Batteries (4-pack),2,2.99,12/23/19 04:25,"92 13th St, San Francisco, CA 94016" +299671,27in FHD Monitor,1,149.99,12/07/19 11:42,"704 Jackson St, Austin, TX 73301" +299672,Lightning Charging Cable,1,14.95,12/25/19 14:08,"965 6th St, San Francisco, CA 94016" +299673,USB-C Charging Cable,1,11.95,12/25/19 11:29,"130 6th St, Seattle, WA 98101" +299674,USB-C Charging Cable,1,11.95,12/28/19 20:46,"580 10th St, Seattle, WA 98101" +299675,AAA Batteries (4-pack),1,2.99,12/10/19 21:50,"663 Lincoln St, Boston, MA 02215" +299676,Bose SoundSport Headphones,1,99.99,12/11/19 11:18,"916 12th St, Seattle, WA 98101" +299677,Lightning Charging Cable,2,14.95,12/15/19 22:25,"239 Adams St, Austin, TX 73301" +299678,20in Monitor,1,109.99,12/05/19 19:38,"198 Church St, San Francisco, CA 94016" +299679,Bose SoundSport Headphones,1,99.99,12/22/19 17:55,"713 Washington St, Dallas, TX 75001" +299680,Apple Airpods Headphones,1,150,12/07/19 15:43,"714 13th St, San Francisco, CA 94016" +299681,Lightning Charging Cable,1,14.95,12/17/19 19:37,"587 West St, San Francisco, CA 94016" +299682,AA Batteries (4-pack),1,3.84,12/10/19 23:19,"596 South St, New York City, NY 10001" +299683,Wired Headphones,1,11.99,12/01/19 07:52,"656 Elm St, San Francisco, CA 94016" +299684,AA Batteries (4-pack),1,3.84,12/17/19 10:32,"328 Wilson St, Los Angeles, CA 90001" +299685,Bose SoundSport Headphones,1,99.99,12/16/19 14:13,"695 Chestnut St, Seattle, WA 98101" +299686,27in 4K Gaming Monitor,1,389.99,12/12/19 23:54,"994 13th St, Portland, ME 04101" +299687,Google Phone,1,600,12/12/19 05:12,"176 Center St, Dallas, TX 75001" +299687,Bose SoundSport Headphones,1,99.99,12/12/19 05:12,"176 Center St, Dallas, TX 75001" +299688,27in 4K Gaming Monitor,1,389.99,12/10/19 09:12,"410 North St, Boston, MA 02215" +299689,AA Batteries (4-pack),1,3.84,12/21/19 18:19,"619 Washington St, Boston, MA 02215" +299690,Bose SoundSport Headphones,1,99.99,12/15/19 19:59,"151 Lake St, New York City, NY 10001" +299691,Apple Airpods Headphones,1,150,12/23/19 21:10,"373 Washington St, Austin, TX 73301" +299692,AAA Batteries (4-pack),1,2.99,12/23/19 12:39,"957 Church St, New York City, NY 10001" +299693,AAA Batteries (4-pack),1,2.99,12/25/19 09:39,"827 Cedar St, Portland, ME 04101" +299694,USB-C Charging Cable,1,11.95,12/23/19 13:18,"487 Spruce St, Atlanta, GA 30301" +299695,AA Batteries (4-pack),2,3.84,12/16/19 21:42,"8 Church St, Seattle, WA 98101" +299696,Bose SoundSport Headphones,1,99.99,12/19/19 06:12,"463 Forest St, Boston, MA 02215" +299697,Wired Headphones,1,11.99,12/31/19 12:36,"112 West St, Los Angeles, CA 90001" +299698,Wired Headphones,1,11.99,12/21/19 00:09,"703 6th St, San Francisco, CA 94016" +299699,Lightning Charging Cable,1,14.95,12/06/19 12:51,"96 4th St, Dallas, TX 75001" +299700,Bose SoundSport Headphones,1,99.99,12/15/19 10:53,"645 11th St, Dallas, TX 75001" +299701,Bose SoundSport Headphones,1,99.99,12/29/19 15:35,"587 West St, Seattle, WA 98101" +299702,Bose SoundSport Headphones,1,99.99,12/12/19 20:10,"890 Jefferson St, San Francisco, CA 94016" +299703,iPhone,1,700,12/27/19 21:44,"289 Lake St, Atlanta, GA 30301" +299704,27in 4K Gaming Monitor,1,389.99,12/14/19 23:18,"274 Pine St, Portland, OR 97035" +299705,USB-C Charging Cable,1,11.95,12/19/19 17:14,"34 Jackson St, Boston, MA 02215" +299706,AAA Batteries (4-pack),1,2.99,12/09/19 21:22,"941 Sunset St, Seattle, WA 98101" +299707,27in FHD Monitor,1,149.99,12/13/19 17:51,"19 Pine St, Seattle, WA 98101" +299708,AA Batteries (4-pack),1,3.84,12/06/19 16:01,"615 West St, San Francisco, CA 94016" +299709,USB-C Charging Cable,1,11.95,12/24/19 15:16,"424 1st St, Los Angeles, CA 90001" +299710,Apple Airpods Headphones,1,150,12/24/19 09:35,"683 Willow St, Dallas, TX 75001" +299711,Wired Headphones,1,11.99,12/21/19 13:01,"973 Jackson St, New York City, NY 10001" +299712,AA Batteries (4-pack),1,3.84,12/26/19 18:48,"836 14th St, Los Angeles, CA 90001" +299713,AAA Batteries (4-pack),1,2.99,12/07/19 21:31,"129 Maple St, Portland, OR 97035" +299714,iPhone,1,700,12/16/19 17:18,"88 Madison St, Seattle, WA 98101" +299714,Lightning Charging Cable,1,14.95,12/16/19 17:18,"88 Madison St, Seattle, WA 98101" +299715,Flatscreen TV,1,300,12/23/19 14:43,"599 Chestnut St, Los Angeles, CA 90001" +299716,AA Batteries (4-pack),1,3.84,12/08/19 19:20,"202 Maple St, Atlanta, GA 30301" +299717,AA Batteries (4-pack),2,3.84,12/10/19 07:03,"380 Hill St, San Francisco, CA 94016" +299718,Apple Airpods Headphones,1,150,12/24/19 20:26,"14 River St, Los Angeles, CA 90001" +299719,Vareebadd Phone,1,400,12/29/19 17:11,"673 Johnson St, San Francisco, CA 94016" +299720,AAA Batteries (4-pack),1,2.99,12/12/19 10:50,"475 Wilson St, New York City, NY 10001" +299721,iPhone,1,700,12/27/19 11:50,"477 South St, New York City, NY 10001" +299722,Apple Airpods Headphones,1,150,12/02/19 00:11,"209 Lincoln St, Atlanta, GA 30301" +299723,Bose SoundSport Headphones,1,99.99,12/25/19 15:24,"824 Lincoln St, Boston, MA 02215" +299724,Google Phone,1,600,12/30/19 20:25,"12 Adams St, Seattle, WA 98101" +299724,USB-C Charging Cable,1,11.95,12/30/19 20:25,"12 Adams St, Seattle, WA 98101" +299725,Wired Headphones,1,11.99,12/02/19 07:02,"786 Chestnut St, Atlanta, GA 30301" +299726,27in 4K Gaming Monitor,1,389.99,12/27/19 19:46,"830 North St, San Francisco, CA 94016" +299727,Macbook Pro Laptop,1,1700,12/24/19 10:14,"368 Wilson St, Los Angeles, CA 90001" +299728,Wired Headphones,1,11.99,12/03/19 20:43,"701 9th St, New York City, NY 10001" +299729,Flatscreen TV,1,300,12/07/19 18:26,"204 Main St, Atlanta, GA 30301" +299730,Apple Airpods Headphones,1,150,12/08/19 21:36,"486 12th St, Boston, MA 02215" +299731,Macbook Pro Laptop,1,1700,12/19/19 22:56,"532 8th St, New York City, NY 10001" +299732,27in FHD Monitor,1,149.99,12/17/19 14:14,"637 6th St, San Francisco, CA 94016" +299733,AAA Batteries (4-pack),1,2.99,12/18/19 17:49,"35 Meadow St, Atlanta, GA 30301" +299734,AA Batteries (4-pack),1,3.84,12/10/19 18:04,"875 Highland St, San Francisco, CA 94016" +299735,Lightning Charging Cable,1,14.95,12/02/19 08:45,"96 Dogwood St, Los Angeles, CA 90001" +299736,Wired Headphones,1,11.99,12/23/19 12:18,"784 Chestnut St, Boston, MA 02215" +299736,Bose SoundSport Headphones,1,99.99,12/23/19 12:18,"784 Chestnut St, Boston, MA 02215" +299737,AAA Batteries (4-pack),1,2.99,12/11/19 08:27,"70 Maple St, Dallas, TX 75001" +299738,Lightning Charging Cable,2,14.95,12/11/19 13:14,"34 Cedar St, Los Angeles, CA 90001" +299739,Lightning Charging Cable,1,14.95,12/17/19 13:58,"378 8th St, Seattle, WA 98101" +299740,AAA Batteries (4-pack),1,2.99,12/05/19 17:04,"782 Lincoln St, Boston, MA 02215" +299741,Apple Airpods Headphones,1,150,12/20/19 21:45,"512 13th St, Portland, OR 97035" +299742,Lightning Charging Cable,1,14.95,12/03/19 16:03,"10 Wilson St, San Francisco, CA 94016" +299743,27in 4K Gaming Monitor,1,389.99,12/03/19 07:13,"556 West St, Boston, MA 02215" +299744,AA Batteries (4-pack),1,3.84,12/21/19 00:41,"670 9th St, Atlanta, GA 30301" +299745,USB-C Charging Cable,1,11.95,12/25/19 10:04,"758 4th St, Boston, MA 02215" +299746,Lightning Charging Cable,1,14.95,12/05/19 19:53,"297 8th St, San Francisco, CA 94016" +299747,Macbook Pro Laptop,1,1700,12/31/19 18:14,"85 Washington St, Seattle, WA 98101" +299748,Lightning Charging Cable,1,14.95,12/08/19 21:24,"919 Hill St, San Francisco, CA 94016" +299749,27in FHD Monitor,1,149.99,12/02/19 12:54,"381 Spruce St, New York City, NY 10001" +299750,AA Batteries (4-pack),3,3.84,12/31/19 20:34,"199 9th St, Boston, MA 02215" +299751,27in FHD Monitor,1,149.99,12/31/19 10:41,"40 13th St, Los Angeles, CA 90001" +299752,Lightning Charging Cable,1,14.95,12/14/19 12:47,"844 4th St, Los Angeles, CA 90001" +299753,Bose SoundSport Headphones,1,99.99,12/24/19 13:07,"629 Cedar St, Portland, OR 97035" +299754,Wired Headphones,1,11.99,12/07/19 15:20,"80 North St, Boston, MA 02215" +299755,iPhone,1,700,12/27/19 19:43,"651 8th St, San Francisco, CA 94016" +299756,Apple Airpods Headphones,1,150,12/21/19 23:50,"7 Sunset St, Los Angeles, CA 90001" +299757,USB-C Charging Cable,1,11.95,12/07/19 18:40,"512 1st St, Portland, OR 97035" +299758,AAA Batteries (4-pack),1,2.99,12/02/19 18:41,"938 Washington St, Atlanta, GA 30301" +299759,iPhone,1,700,12/05/19 22:33,"962 Dogwood St, Austin, TX 73301" +299760,Flatscreen TV,1,300,12/21/19 11:20,"833 8th St, Portland, OR 97035" +299761,AA Batteries (4-pack),1,3.84,12/12/19 10:51,"37 Hickory St, Seattle, WA 98101" +299762,AAA Batteries (4-pack),1,2.99,12/26/19 13:44,"330 Sunset St, Los Angeles, CA 90001" +299763,Bose SoundSport Headphones,1,99.99,12/20/19 17:15,"556 Willow St, Los Angeles, CA 90001" +299764,AA Batteries (4-pack),2,3.84,12/26/19 14:35,"618 Spruce St, San Francisco, CA 94016" +299765,AAA Batteries (4-pack),1,2.99,12/09/19 09:55,"267 7th St, San Francisco, CA 94016" +299766,Wired Headphones,1,11.99,12/30/19 14:55,"573 Church St, Los Angeles, CA 90001" +299767,AA Batteries (4-pack),1,3.84,12/25/19 11:46,"722 10th St, Los Angeles, CA 90001" +299768,Macbook Pro Laptop,1,1700,12/25/19 16:42,"56 Lincoln St, Austin, TX 73301" +299769,Lightning Charging Cable,1,14.95,12/25/19 19:20,"79 Highland St, Boston, MA 02215" +299770,AA Batteries (4-pack),1,3.84,12/14/19 13:52,"284 6th St, Boston, MA 02215" +299771,AA Batteries (4-pack),1,3.84,12/17/19 07:27,"519 4th St, Austin, TX 73301" +299772,AAA Batteries (4-pack),1,2.99,12/23/19 20:11,"374 Sunset St, San Francisco, CA 94016" +299773,AAA Batteries (4-pack),1,2.99,12/23/19 16:13,"663 Cherry St, Los Angeles, CA 90001" +299774,Bose SoundSport Headphones,1,99.99,12/10/19 12:56,"830 Wilson St, Boston, MA 02215" +299775,AA Batteries (4-pack),1,3.84,12/03/19 15:59,"764 Center St, Boston, MA 02215" +299776,Bose SoundSport Headphones,1,99.99,12/05/19 13:09,"730 Jackson St, Seattle, WA 98101" +299777,Bose SoundSport Headphones,1,99.99,12/06/19 09:38,"78 Willow St, Atlanta, GA 30301" +299778,ThinkPad Laptop,1,999.99,12/12/19 23:42,"916 Meadow St, Seattle, WA 98101" +299778,20in Monitor,1,109.99,12/12/19 23:42,"916 Meadow St, Seattle, WA 98101" +299779,AA Batteries (4-pack),1,3.84,12/17/19 05:19,"581 Hickory St, San Francisco, CA 94016" +299780,AAA Batteries (4-pack),2,2.99,12/22/19 13:47,"991 Sunset St, Los Angeles, CA 90001" +299781,34in Ultrawide Monitor,1,379.99,12/08/19 06:51,"406 Lake St, San Francisco, CA 94016" +299782,Apple Airpods Headphones,1,150,12/19/19 11:29,"419 Walnut St, Austin, TX 73301" +299783,Wired Headphones,1,11.99,12/25/19 19:35,"370 Adams St, Portland, OR 97035" +299784,Lightning Charging Cable,1,14.95,12/07/19 19:25,"372 10th St, Dallas, TX 75001" +299785,Lightning Charging Cable,1,14.95,12/25/19 19:20,"469 Spruce St, San Francisco, CA 94016" +299786,Wired Headphones,1,11.99,12/20/19 11:08,"949 Washington St, Seattle, WA 98101" +299787,AAA Batteries (4-pack),2,2.99,12/08/19 13:55,"272 Spruce St, Austin, TX 73301" +299788,Apple Airpods Headphones,1,150,12/29/19 22:13,"433 13th St, San Francisco, CA 94016" +299789,USB-C Charging Cable,1,11.95,12/18/19 18:24,"705 Adams St, San Francisco, CA 94016" +299790,Bose SoundSport Headphones,1,99.99,12/13/19 22:30,"949 10th St, Boston, MA 02215" +299791,AAA Batteries (4-pack),3,2.99,12/25/19 11:55,"167 Chestnut St, Boston, MA 02215" +299792,Wired Headphones,1,11.99,12/16/19 08:40,"680 1st St, Atlanta, GA 30301" +299793,Apple Airpods Headphones,1,150,12/30/19 21:20,"837 9th St, Portland, ME 04101" +299794,AAA Batteries (4-pack),3,2.99,12/23/19 15:16,"696 10th St, San Francisco, CA 94016" +299795,Bose SoundSport Headphones,1,99.99,12/02/19 17:29,"434 11th St, Dallas, TX 75001" +299796,27in 4K Gaming Monitor,1,389.99,12/02/19 19:15,"802 Meadow St, Austin, TX 73301" +299797,AAA Batteries (4-pack),2,2.99,12/08/19 10:14,"74 14th St, New York City, NY 10001" +299798,AAA Batteries (4-pack),1,2.99,12/13/19 07:19,"27 10th St, Portland, OR 97035" +299799,Flatscreen TV,1,300,12/31/19 22:23,"792 Main St, San Francisco, CA 94016" +299800,AAA Batteries (4-pack),1,2.99,12/29/19 21:02,"931 11th St, San Francisco, CA 94016" +299801,AA Batteries (4-pack),2,3.84,12/19/19 20:58,"208 Park St, New York City, NY 10001" +299802,Bose SoundSport Headphones,1,99.99,12/15/19 11:56,"56 Dogwood St, Boston, MA 02215" +299802,Bose SoundSport Headphones,1,99.99,12/15/19 11:56,"56 Dogwood St, Boston, MA 02215" +299803,Apple Airpods Headphones,1,150,12/09/19 02:09,"163 Pine St, Atlanta, GA 30301" +299804,Vareebadd Phone,1,400,12/27/19 10:41,"328 Ridge St, Portland, ME 04101" +299805,USB-C Charging Cable,1,11.95,12/27/19 13:24,"916 Madison St, Los Angeles, CA 90001" +299806,iPhone,1,700,12/31/19 22:28,"682 Highland St, Seattle, WA 98101" +299807,Lightning Charging Cable,1,14.95,12/16/19 00:09,"502 Forest St, San Francisco, CA 94016" +299808,AA Batteries (4-pack),1,3.84,12/10/19 20:34,"849 9th St, Austin, TX 73301" +299809,AAA Batteries (4-pack),1,2.99,12/28/19 18:17,"784 Adams St, San Francisco, CA 94016" +299810,20in Monitor,1,109.99,12/10/19 13:18,"403 4th St, Seattle, WA 98101" +299811,AA Batteries (4-pack),1,3.84,12/09/19 11:05,"440 Cedar St, Boston, MA 02215" +299812,AA Batteries (4-pack),1,3.84,12/11/19 18:53,"171 Forest St, Boston, MA 02215" +299813,Bose SoundSport Headphones,1,99.99,12/22/19 20:21,"465 Main St, Atlanta, GA 30301" +299814,AA Batteries (4-pack),1,3.84,12/10/19 11:46,"998 Lake St, San Francisco, CA 94016" +299815,Bose SoundSport Headphones,1,99.99,12/07/19 07:58,"857 Main St, Dallas, TX 75001" +299816,Bose SoundSport Headphones,1,99.99,12/03/19 11:41,"825 Walnut St, Los Angeles, CA 90001" +299816,AAA Batteries (4-pack),1,2.99,12/03/19 11:41,"825 Walnut St, Los Angeles, CA 90001" +299817,Bose SoundSport Headphones,1,99.99,12/30/19 21:15,"180 6th St, San Francisco, CA 94016" +299818,USB-C Charging Cable,1,11.95,12/12/19 10:48,"814 Spruce St, Los Angeles, CA 90001" +299819,AA Batteries (4-pack),1,3.84,12/30/19 15:31,"139 10th St, New York City, NY 10001" +299820,AAA Batteries (4-pack),1,2.99,12/07/19 17:42,"789 Main St, Atlanta, GA 30301" +299821,ThinkPad Laptop,1,999.99,12/13/19 10:59,"830 2nd St, Los Angeles, CA 90001" +299822,AAA Batteries (4-pack),1,2.99,12/22/19 11:34,"226 Sunset St, Seattle, WA 98101" +299823,AAA Batteries (4-pack),5,2.99,12/25/19 23:08,"234 Park St, Portland, OR 97035" +299824,Wired Headphones,1,11.99,12/26/19 18:54,"453 Forest St, Portland, OR 97035" +299825,34in Ultrawide Monitor,1,379.99,12/21/19 11:52,"954 Highland St, Dallas, TX 75001" +299826,AA Batteries (4-pack),2,3.84,12/19/19 17:41,"45 Hickory St, Portland, OR 97035" +299827,Apple Airpods Headphones,1,150,12/24/19 12:32,"175 Ridge St, San Francisco, CA 94016" +299828,ThinkPad Laptop,1,999.99,12/08/19 10:42,"314 Dogwood St, San Francisco, CA 94016" +299829,iPhone,1,700,12/01/19 19:34,"435 11th St, Boston, MA 02215" +299830,Wired Headphones,1,11.99,12/11/19 11:06,"429 Main St, San Francisco, CA 94016" +299831,USB-C Charging Cable,1,11.95,12/23/19 11:34,"58 Park St, San Francisco, CA 94016" +299832,34in Ultrawide Monitor,1,379.99,12/31/19 11:28,"133 Spruce St, Atlanta, GA 30301" +299833,Macbook Pro Laptop,1,1700,12/21/19 20:14,"732 Johnson St, Seattle, WA 98101" +299834,Lightning Charging Cable,1,14.95,12/26/19 13:29,"256 Elm St, San Francisco, CA 94016" +299835,20in Monitor,1,109.99,12/28/19 21:19,"745 Hickory St, Los Angeles, CA 90001" +299836,Lightning Charging Cable,1,14.95,12/21/19 23:22,"94 5th St, San Francisco, CA 94016" +299837,Lightning Charging Cable,1,14.95,12/12/19 16:10,"385 8th St, New York City, NY 10001" +299838,27in 4K Gaming Monitor,1,389.99,12/14/19 23:50,"96 14th St, San Francisco, CA 94016" +299839,Wired Headphones,1,11.99,12/30/19 22:33,"646 Sunset St, Seattle, WA 98101" +299840,Wired Headphones,1,11.99,12/25/19 19:54,"983 Johnson St, San Francisco, CA 94016" +299841,Apple Airpods Headphones,1,150,12/12/19 13:40,"613 Lake St, San Francisco, CA 94016" +299842,Apple Airpods Headphones,1,150,12/12/19 15:15,"482 Maple St, Los Angeles, CA 90001" +299843,27in 4K Gaming Monitor,1,389.99,12/14/19 14:49,"600 6th St, Dallas, TX 75001" +,,,,, +299844,27in FHD Monitor,1,149.99,12/28/19 18:01,"729 Ridge St, San Francisco, CA 94016" +299845,Lightning Charging Cable,2,14.95,12/19/19 18:25,"503 5th St, Atlanta, GA 30301" +299846,Apple Airpods Headphones,1,150,12/29/19 18:53,"507 6th St, Los Angeles, CA 90001" +299847,34in Ultrawide Monitor,1,379.99,12/16/19 22:42,"218 Johnson St, Portland, OR 97035" +299848,Macbook Pro Laptop,1,1700,12/19/19 20:13,"606 Meadow St, Austin, TX 73301" +299849,Apple Airpods Headphones,1,150,12/21/19 13:48,"993 1st St, Atlanta, GA 30301" +299850,34in Ultrawide Monitor,1,379.99,12/28/19 13:05,"123 2nd St, Atlanta, GA 30301" +299851,Wired Headphones,1,11.99,12/15/19 09:45,"131 Main St, Austin, TX 73301" +299852,USB-C Charging Cable,1,11.95,12/23/19 22:46,"102 8th St, Los Angeles, CA 90001" +299853,Apple Airpods Headphones,1,150,12/21/19 14:04,"169 River St, Austin, TX 73301" +299854,Wired Headphones,1,11.99,12/27/19 00:35,"727 Church St, Austin, TX 73301" +299855,USB-C Charging Cable,1,11.95,12/21/19 23:00,"693 Dogwood St, Boston, MA 02215" +299856,Apple Airpods Headphones,1,150,12/28/19 17:14,"884 Maple St, Dallas, TX 75001" +299857,Wired Headphones,1,11.99,12/14/19 15:55,"623 Park St, Boston, MA 02215" +299858,Lightning Charging Cable,1,14.95,12/28/19 10:37,"312 Park St, Austin, TX 73301" +299859,AAA Batteries (4-pack),2,2.99,12/18/19 17:42,"927 West St, San Francisco, CA 94016" +299860,Lightning Charging Cable,1,14.95,12/27/19 11:37,"896 Wilson St, Los Angeles, CA 90001" +299861,27in FHD Monitor,1,149.99,12/05/19 21:03,"432 14th St, New York City, NY 10001" +299862,34in Ultrawide Monitor,1,379.99,12/27/19 20:49,"684 5th St, Los Angeles, CA 90001" +299863,34in Ultrawide Monitor,1,379.99,12/31/19 08:32,"176 Cedar St, Atlanta, GA 30301" +299864,Apple Airpods Headphones,1,150,12/04/19 12:59,"165 Willow St, Boston, MA 02215" +299865,ThinkPad Laptop,1,999.99,12/18/19 22:36,"249 River St, Los Angeles, CA 90001" +299866,Wired Headphones,1,11.99,12/12/19 17:49,"5 14th St, Los Angeles, CA 90001" +299866,Apple Airpods Headphones,1,150,12/12/19 17:49,"5 14th St, Los Angeles, CA 90001" +299867,Lightning Charging Cable,1,14.95,12/29/19 12:48,"878 Lincoln St, Portland, OR 97035" +299868,Apple Airpods Headphones,1,150,12/30/19 12:33,"942 Hickory St, Atlanta, GA 30301" +299869,Apple Airpods Headphones,1,150,12/06/19 17:32,"229 Church St, San Francisco, CA 94016" +299870,Bose SoundSport Headphones,1,99.99,01/01/20 02:29,"193 Maple St, San Francisco, CA 94016" +299871,iPhone,1,700,12/20/19 21:51,"13 Dogwood St, Boston, MA 02215" +299871,Wired Headphones,1,11.99,12/20/19 21:51,"13 Dogwood St, Boston, MA 02215" +299872,AA Batteries (4-pack),3,3.84,12/01/19 11:48,"617 Pine St, New York City, NY 10001" +299873,AAA Batteries (4-pack),1,2.99,12/08/19 19:00,"366 Wilson St, Dallas, TX 75001" +299874,Flatscreen TV,1,300,12/14/19 11:59,"70 Hickory St, San Francisco, CA 94016" +299875,Wired Headphones,1,11.99,12/27/19 08:08,"235 Meadow St, Dallas, TX 75001" +299876,27in 4K Gaming Monitor,1,389.99,12/07/19 22:54,"495 Main St, Los Angeles, CA 90001" +299877,AAA Batteries (4-pack),1,2.99,12/04/19 19:43,"41 14th St, Dallas, TX 75001" +299878,USB-C Charging Cable,1,11.95,12/23/19 10:27,"181 River St, San Francisco, CA 94016" +299879,34in Ultrawide Monitor,1,379.99,12/17/19 17:11,"652 Madison St, San Francisco, CA 94016" +299880,Lightning Charging Cable,1,14.95,12/12/19 07:02,"869 8th St, Los Angeles, CA 90001" +299881,Wired Headphones,1,11.99,12/29/19 19:31,"90 Park St, Atlanta, GA 30301" +299882,LG Dryer,1,600.0,12/20/19 01:46,"310 Meadow St, Seattle, WA 98101" +299883,Wired Headphones,1,11.99,12/16/19 12:17,"969 Madison St, Boston, MA 02215" +299884,Apple Airpods Headphones,1,150,12/12/19 22:32,"440 Main St, Dallas, TX 75001" +299885,AAA Batteries (4-pack),2,2.99,12/20/19 17:15,"53 Chestnut St, Los Angeles, CA 90001" +299886,27in 4K Gaming Monitor,1,389.99,12/30/19 18:23,"237 Jefferson St, Los Angeles, CA 90001" +299887,Wired Headphones,2,11.99,12/14/19 15:04,"790 12th St, Portland, OR 97035" +299888,AA Batteries (4-pack),2,3.84,12/17/19 16:47,"757 Ridge St, Los Angeles, CA 90001" +299889,Bose SoundSport Headphones,1,99.99,12/14/19 17:47,"483 Pine St, Los Angeles, CA 90001" +299890,AAA Batteries (4-pack),1,2.99,12/12/19 16:23,"893 12th St, Atlanta, GA 30301" +299891,27in FHD Monitor,1,149.99,12/20/19 15:14,"964 9th St, Portland, OR 97035" +299892,Google Phone,1,600,12/11/19 20:40,"425 Elm St, Dallas, TX 75001" +299893,27in 4K Gaming Monitor,1,389.99,12/21/19 17:44,"552 12th St, New York City, NY 10001" +299894,Apple Airpods Headphones,1,150,12/22/19 13:15,"825 Cherry St, Seattle, WA 98101" +299895,USB-C Charging Cable,1,11.95,12/19/19 00:21,"852 Lake St, Boston, MA 02215" +299896,34in Ultrawide Monitor,1,379.99,12/14/19 00:05,"88 9th St, San Francisco, CA 94016" +299897,AAA Batteries (4-pack),2,2.99,12/09/19 23:07,"787 West St, Portland, ME 04101" +299898,iPhone,1,700,12/22/19 18:04,"426 Church St, Los Angeles, CA 90001" +299899,USB-C Charging Cable,1,11.95,12/22/19 07:17,"180 Park St, San Francisco, CA 94016" +299900,AAA Batteries (4-pack),1,2.99,12/26/19 09:37,"689 South St, San Francisco, CA 94016" +299901,Lightning Charging Cable,1,14.95,12/08/19 09:24,"566 2nd St, Atlanta, GA 30301" +299902,Lightning Charging Cable,1,14.95,12/13/19 01:37,"507 2nd St, San Francisco, CA 94016" +299903,USB-C Charging Cable,1,11.95,12/01/19 06:53,"774 Lakeview St, Atlanta, GA 30301" +299904,Lightning Charging Cable,1,14.95,12/18/19 17:47,"100 Willow St, New York City, NY 10001" +299905,Lightning Charging Cable,1,14.95,12/19/19 19:54,"592 Washington St, San Francisco, CA 94016" +299906,Bose SoundSport Headphones,1,99.99,12/09/19 08:49,"875 Hill St, Los Angeles, CA 90001" +299907,AA Batteries (4-pack),1,3.84,12/28/19 23:19,"837 Jackson St, Austin, TX 73301" +299908,AAA Batteries (4-pack),1,2.99,12/26/19 15:00,"679 Madison St, Los Angeles, CA 90001" +299909,27in 4K Gaming Monitor,1,389.99,12/26/19 22:14,"916 River St, Seattle, WA 98101" +299910,AA Batteries (4-pack),1,3.84,12/27/19 14:47,"598 Ridge St, Seattle, WA 98101" +299911,27in FHD Monitor,1,149.99,12/09/19 12:43,"89 Chestnut St, New York City, NY 10001" +299912,USB-C Charging Cable,1,11.95,12/24/19 11:46,"404 2nd St, Boston, MA 02215" +299913,34in Ultrawide Monitor,1,379.99,12/30/19 09:41,"60 Meadow St, Dallas, TX 75001" +299914,AAA Batteries (4-pack),1,2.99,12/12/19 19:39,"892 Walnut St, New York City, NY 10001" +299915,AAA Batteries (4-pack),1,2.99,12/17/19 15:04,"561 4th St, Portland, OR 97035" +299916,AAA Batteries (4-pack),1,2.99,12/30/19 20:10,"375 Lincoln St, San Francisco, CA 94016" +299917,Wired Headphones,1,11.99,12/29/19 09:00,"836 Madison St, Seattle, WA 98101" +299918,AAA Batteries (4-pack),1,2.99,12/07/19 17:49,"749 6th St, Portland, OR 97035" +299919,Lightning Charging Cable,1,14.95,12/22/19 05:51,"95 South St, Boston, MA 02215" +299920,AAA Batteries (4-pack),1,2.99,12/13/19 22:19,"256 Meadow St, Atlanta, GA 30301" +299921,USB-C Charging Cable,1,11.95,12/29/19 08:04,"890 Lakeview St, Atlanta, GA 30301" +299922,Wired Headphones,2,11.99,12/12/19 07:36,"887 10th St, Atlanta, GA 30301" +299923,Flatscreen TV,1,300,12/08/19 18:09,"603 7th St, Portland, ME 04101" +299924,AA Batteries (4-pack),1,3.84,12/08/19 18:55,"343 11th St, Dallas, TX 75001" +299925,27in 4K Gaming Monitor,1,389.99,12/18/19 08:32,"93 Spruce St, San Francisco, CA 94016" +299926,Apple Airpods Headphones,1,150,12/30/19 14:30,"474 Lake St, Los Angeles, CA 90001" +299927,AAA Batteries (4-pack),1,2.99,12/22/19 09:59,"488 Cedar St, Los Angeles, CA 90001" +299928,Apple Airpods Headphones,1,150,12/08/19 21:31,"490 Ridge St, Portland, ME 04101" +299929,AAA Batteries (4-pack),1,2.99,12/18/19 10:29,"882 Maple St, Boston, MA 02215" +299930,AAA Batteries (4-pack),1,2.99,12/18/19 11:05,"696 9th St, San Francisco, CA 94016" +299931,Google Phone,1,600,12/07/19 20:15,"528 Lincoln St, Austin, TX 73301" +299931,Wired Headphones,1,11.99,12/07/19 20:15,"528 Lincoln St, Austin, TX 73301" +299932,Bose SoundSport Headphones,1,99.99,12/06/19 16:12,"171 Hill St, Dallas, TX 75001" +299933,Lightning Charging Cable,1,14.95,12/23/19 10:44,"639 10th St, Seattle, WA 98101" +299934,Wired Headphones,1,11.99,12/16/19 11:02,"360 Chestnut St, Portland, OR 97035" +299935,AA Batteries (4-pack),1,3.84,12/19/19 04:17,"86 Forest St, Austin, TX 73301" +299936,Wired Headphones,1,11.99,12/19/19 23:58,"496 11th St, New York City, NY 10001" +299937,Bose SoundSport Headphones,1,99.99,12/30/19 19:10,"780 Meadow St, Portland, OR 97035" +299938,AAA Batteries (4-pack),3,2.99,12/11/19 01:14,"890 5th St, New York City, NY 10001" +299939,USB-C Charging Cable,2,11.95,12/24/19 14:27,"621 Park St, Dallas, TX 75001" +299940,AAA Batteries (4-pack),2,2.99,12/05/19 12:23,"2 Forest St, Los Angeles, CA 90001" +299941,27in 4K Gaming Monitor,1,389.99,12/28/19 09:50,"126 12th St, San Francisco, CA 94016" +299942,iPhone,1,700,12/11/19 20:59,"456 Ridge St, San Francisco, CA 94016" +299943,AA Batteries (4-pack),1,3.84,12/20/19 00:46,"821 Hill St, San Francisco, CA 94016" +299944,Wired Headphones,1,11.99,12/07/19 15:35,"641 Main St, San Francisco, CA 94016" +299945,iPhone,1,700,12/12/19 13:02,"704 6th St, San Francisco, CA 94016" +299945,Wired Headphones,1,11.99,12/12/19 13:02,"704 6th St, San Francisco, CA 94016" +299946,27in FHD Monitor,1,149.99,12/07/19 08:34,"93 Sunset St, Atlanta, GA 30301" +299947,Macbook Pro Laptop,1,1700,12/25/19 20:45,"977 5th St, Boston, MA 02215" +299948,AA Batteries (4-pack),1,3.84,12/10/19 05:07,"557 Church St, Austin, TX 73301" +299949,Wired Headphones,1,11.99,12/12/19 23:45,"157 Dogwood St, Atlanta, GA 30301" +299950,27in 4K Gaming Monitor,1,389.99,12/16/19 22:26,"386 Cedar St, Portland, ME 04101" +299951,AAA Batteries (4-pack),1,2.99,12/13/19 18:22,"359 Hickory St, San Francisco, CA 94016" +299952,27in 4K Gaming Monitor,1,389.99,12/22/19 07:57,"790 Cherry St, Boston, MA 02215" +299953,27in 4K Gaming Monitor,1,389.99,12/08/19 17:14,"949 Lakeview St, Atlanta, GA 30301" +299954,USB-C Charging Cable,1,11.95,12/29/19 21:36,"126 Jefferson St, Seattle, WA 98101" +299955,AAA Batteries (4-pack),1,2.99,12/01/19 08:05,"53 Lake St, Portland, ME 04101" +299956,Apple Airpods Headphones,1,150,12/09/19 21:17,"573 Cherry St, Atlanta, GA 30301" +299957,Wired Headphones,1,11.99,12/08/19 11:25,"489 8th St, Boston, MA 02215" +299958,27in FHD Monitor,1,149.99,12/20/19 20:00,"653 12th St, Portland, OR 97035" +299959,20in Monitor,1,109.99,12/23/19 12:29,"58 11th St, New York City, NY 10001" +299960,27in FHD Monitor,1,149.99,12/07/19 12:04,"494 Center St, Boston, MA 02215" +299961,Apple Airpods Headphones,1,150,12/02/19 15:14,"537 Sunset St, Portland, OR 97035" +299962,Apple Airpods Headphones,1,150,12/21/19 18:34,"546 4th St, Los Angeles, CA 90001" +299963,AA Batteries (4-pack),1,3.84,12/16/19 21:10,"120 Main St, San Francisco, CA 94016" +299964,27in FHD Monitor,1,149.99,12/11/19 22:49,"935 Washington St, Los Angeles, CA 90001" +299965,Apple Airpods Headphones,1,150,12/02/19 14:08,"409 4th St, Dallas, TX 75001" +299966,20in Monitor,1,109.99,12/27/19 07:43,"237 4th St, Boston, MA 02215" +299967,20in Monitor,1,109.99,12/20/19 19:47,"18 Walnut St, Boston, MA 02215" +299968,AAA Batteries (4-pack),2,2.99,12/27/19 16:05,"406 Sunset St, Dallas, TX 75001" +299969,AA Batteries (4-pack),1,3.84,12/01/19 13:26,"430 Church St, Seattle, WA 98101" +299970,Lightning Charging Cable,1,14.95,12/25/19 12:47,"402 Wilson St, San Francisco, CA 94016" +299971,AA Batteries (4-pack),1,3.84,12/14/19 19:18,"41 Forest St, Los Angeles, CA 90001" +299972,Google Phone,1,600,12/27/19 13:15,"467 14th St, Dallas, TX 75001" +299973,AA Batteries (4-pack),2,3.84,12/18/19 23:44,"778 Adams St, San Francisco, CA 94016" +299974,AA Batteries (4-pack),3,3.84,12/17/19 20:27,"479 6th St, San Francisco, CA 94016" +299975,AAA Batteries (4-pack),1,2.99,12/03/19 20:08,"657 Ridge St, New York City, NY 10001" +299976,Apple Airpods Headphones,1,150,12/21/19 14:04,"966 4th St, Boston, MA 02215" +299977,AAA Batteries (4-pack),1,2.99,12/15/19 22:27,"258 South St, San Francisco, CA 94016" +299978,AA Batteries (4-pack),1,3.84,12/11/19 09:14,"190 13th St, Portland, OR 97035" +299979,AA Batteries (4-pack),1,3.84,12/12/19 22:18,"46 Madison St, Los Angeles, CA 90001" +299980,27in FHD Monitor,1,149.99,12/31/19 15:15,"563 Johnson St, New York City, NY 10001" +299981,AAA Batteries (4-pack),3,2.99,12/17/19 19:33,"268 Jackson St, Austin, TX 73301" +299982,27in 4K Gaming Monitor,1,389.99,12/25/19 16:21,"832 Lincoln St, Los Angeles, CA 90001" +299983,Bose SoundSport Headphones,1,99.99,12/20/19 06:36,"624 Pine St, Dallas, TX 75001" +299984,Google Phone,1,600,12/26/19 14:01,"33 Hickory St, Los Angeles, CA 90001" +299985,AAA Batteries (4-pack),1,2.99,12/04/19 22:32,"39 6th St, San Francisco, CA 94016" +299986,Apple Airpods Headphones,1,150,12/22/19 18:31,"873 Maple St, New York City, NY 10001" +299987,27in FHD Monitor,1,149.99,12/14/19 12:15,"846 Lakeview St, Seattle, WA 98101" +299988,USB-C Charging Cable,1,11.95,12/10/19 18:02,"495 North St, Atlanta, GA 30301" +299989,Wired Headphones,1,11.99,12/02/19 21:47,"414 South St, San Francisco, CA 94016" +299990,Lightning Charging Cable,1,14.95,12/26/19 20:59,"591 Lincoln St, San Francisco, CA 94016" +299991,Google Phone,1,600,12/31/19 12:48,"750 Forest St, San Francisco, CA 94016" +299992,Lightning Charging Cable,1,14.95,12/11/19 18:09,"742 Lincoln St, Portland, OR 97035" +299993,27in FHD Monitor,1,149.99,12/24/19 00:04,"261 Ridge St, Atlanta, GA 30301" +299994,AA Batteries (4-pack),1,3.84,12/13/19 18:56,"804 Madison St, New York City, NY 10001" +299995,Wired Headphones,1,11.99,12/31/19 20:45,"917 Center St, San Francisco, CA 94016" +299996,Lightning Charging Cable,1,14.95,12/08/19 20:35,"177 Adams St, New York City, NY 10001" +299997,LG Dryer,1,600.0,12/10/19 14:02,"433 Washington St, Atlanta, GA 30301" +299998,Google Phone,1,600,12/08/19 16:15,"114 Washington St, New York City, NY 10001" +299998,USB-C Charging Cable,1,11.95,12/08/19 16:15,"114 Washington St, New York City, NY 10001" +299999,Flatscreen TV,1,300,12/21/19 19:52,"794 Willow St, Los Angeles, CA 90001" +300000,Lightning Charging Cable,1,14.95,12/26/19 18:59,"999 North St, Los Angeles, CA 90001" +300001,Lightning Charging Cable,1,14.95,12/20/19 18:17,"700 Cherry St, Los Angeles, CA 90001" +300002,27in FHD Monitor,2,149.99,12/23/19 14:20,"900 Washington St, Los Angeles, CA 90001" +300003,Bose SoundSport Headphones,1,99.99,12/03/19 19:48,"449 Highland St, Los Angeles, CA 90001" +300004,USB-C Charging Cable,1,11.95,12/03/19 21:49,"647 Church St, Austin, TX 73301" +300005,Wired Headphones,1,11.99,12/24/19 22:47,"94 13th St, Boston, MA 02215" +300006,Wired Headphones,1,11.99,12/04/19 16:47,"599 Elm St, San Francisco, CA 94016" +300007,AA Batteries (4-pack),1,3.84,12/21/19 14:51,"968 Lakeview St, Portland, OR 97035" +300008,USB-C Charging Cable,1,11.95,12/14/19 18:26,"579 10th St, Portland, OR 97035" +300009,USB-C Charging Cable,1,11.95,12/12/19 17:15,"627 Hill St, Atlanta, GA 30301" +300010,USB-C Charging Cable,1,11.95,12/29/19 13:09,"299 14th St, New York City, NY 10001" +300011,Macbook Pro Laptop,1,1700,12/04/19 21:42,"717 13th St, Seattle, WA 98101" +300012,Macbook Pro Laptop,1,1700,12/23/19 20:49,"529 8th St, Dallas, TX 75001" +300013,27in FHD Monitor,1,149.99,12/24/19 20:43,"681 River St, San Francisco, CA 94016" +300014,Lightning Charging Cable,1,14.95,12/06/19 18:45,"755 5th St, Los Angeles, CA 90001" +300015,Flatscreen TV,1,300,12/27/19 20:32,"337 7th St, San Francisco, CA 94016" +300016,iPhone,1,700,12/08/19 15:33,"279 Dogwood St, Boston, MA 02215" +300017,USB-C Charging Cable,1,11.95,12/27/19 19:57,"858 Center St, Los Angeles, CA 90001" +300018,Wired Headphones,2,11.99,12/27/19 00:39,"463 Maple St, Boston, MA 02215" +300019,AAA Batteries (4-pack),1,2.99,12/01/19 20:03,"959 Elm St, Boston, MA 02215" +300020,Lightning Charging Cable,1,14.95,12/27/19 15:16,"692 Center St, Boston, MA 02215" +300021,Wired Headphones,1,11.99,12/17/19 16:20,"277 Church St, San Francisco, CA 94016" +300022,iPhone,1,700,12/18/19 20:15,"104 12th St, San Francisco, CA 94016" +300023,27in 4K Gaming Monitor,1,389.99,12/02/19 12:51,"305 Hickory St, Boston, MA 02215" +300024,Apple Airpods Headphones,1,150,12/12/19 22:56,"192 Highland St, Austin, TX 73301" +300025,Bose SoundSport Headphones,1,99.99,12/17/19 13:56,"110 Lake St, Seattle, WA 98101" +300026,Lightning Charging Cable,1,14.95,12/08/19 10:41,"587 Center St, San Francisco, CA 94016" +300027,Bose SoundSport Headphones,1,99.99,12/25/19 20:44,"89 9th St, Los Angeles, CA 90001" +300028,Bose SoundSport Headphones,1,99.99,12/31/19 20:09,"787 Chestnut St, San Francisco, CA 94016" +300029,Apple Airpods Headphones,1,150,12/30/19 18:08,"495 14th St, Los Angeles, CA 90001" +300030,USB-C Charging Cable,1,11.95,12/05/19 00:13,"342 River St, Seattle, WA 98101" +300031,AA Batteries (4-pack),1,3.84,12/02/19 09:26,"143 Lakeview St, Seattle, WA 98101" +300032,Apple Airpods Headphones,1,150,12/08/19 01:21,"341 Adams St, San Francisco, CA 94016" +300033,AAA Batteries (4-pack),1,2.99,12/26/19 11:44,"749 Madison St, Los Angeles, CA 90001" +300034,Macbook Pro Laptop,1,1700,12/27/19 13:54,"593 Madison St, Seattle, WA 98101" +300035,Flatscreen TV,1,300,12/18/19 11:16,"291 12th St, Los Angeles, CA 90001" +300036,Bose SoundSport Headphones,1,99.99,12/09/19 23:14,"23 Johnson St, Boston, MA 02215" +300037,Bose SoundSport Headphones,1,99.99,12/29/19 13:37,"308 Main St, Los Angeles, CA 90001" +300038,Bose SoundSport Headphones,1,99.99,12/31/19 21:38,"661 Willow St, Austin, TX 73301" +300039,Apple Airpods Headphones,1,150,12/05/19 12:14,"208 Park St, Austin, TX 73301" +300040,Lightning Charging Cable,1,14.95,12/23/19 10:35,"957 Lakeview St, Los Angeles, CA 90001" +300041,Lightning Charging Cable,1,14.95,12/11/19 14:08,"353 Willow St, San Francisco, CA 94016" +300042,Macbook Pro Laptop,1,1700,12/04/19 17:00,"651 Park St, Seattle, WA 98101" +300042,AAA Batteries (4-pack),2,2.99,12/04/19 17:00,"651 Park St, Seattle, WA 98101" +300043,USB-C Charging Cable,1,11.95,12/18/19 04:35,"169 Madison St, Seattle, WA 98101" +300044,Wired Headphones,1,11.99,12/26/19 10:37,"128 Wilson St, San Francisco, CA 94016" +300045,Macbook Pro Laptop,1,1700,12/21/19 14:33,"297 River St, Atlanta, GA 30301" +300046,AAA Batteries (4-pack),1,2.99,12/14/19 11:30,"344 Jefferson St, Seattle, WA 98101" +300047,Bose SoundSport Headphones,1,99.99,12/18/19 15:16,"424 Lakeview St, Boston, MA 02215" +300048,AAA Batteries (4-pack),1,2.99,12/26/19 21:08,"170 9th St, San Francisco, CA 94016" +300049,AAA Batteries (4-pack),1,2.99,12/02/19 11:41,"936 Adams St, San Francisco, CA 94016" +300050,AAA Batteries (4-pack),1,2.99,12/10/19 21:41,"698 Lincoln St, Boston, MA 02215" +300051,AAA Batteries (4-pack),1,2.99,12/13/19 17:48,"158 West St, Atlanta, GA 30301" +300052,Apple Airpods Headphones,1,150,12/07/19 00:13,"290 Center St, Austin, TX 73301" +300053,AA Batteries (4-pack),1,3.84,12/26/19 15:12,"215 9th St, San Francisco, CA 94016" +300054,34in Ultrawide Monitor,1,379.99,12/17/19 08:20,"586 7th St, Atlanta, GA 30301" +300055,Wired Headphones,1,11.99,12/19/19 17:48,"222 Washington St, Boston, MA 02215" +300056,AAA Batteries (4-pack),1,2.99,12/05/19 09:52,"437 Ridge St, Los Angeles, CA 90001" +300057,ThinkPad Laptop,1,999.99,12/21/19 13:12,"803 Ridge St, San Francisco, CA 94016" +300058,Vareebadd Phone,1,400,12/21/19 22:30,"669 South St, San Francisco, CA 94016" +300059,Lightning Charging Cable,1,14.95,12/10/19 17:28,"517 Highland St, Los Angeles, CA 90001" +300060,27in 4K Gaming Monitor,1,389.99,12/14/19 21:28,"50 Forest St, San Francisco, CA 94016" +300061,AA Batteries (4-pack),1,3.84,12/30/19 16:42,"230 10th St, Atlanta, GA 30301" +300062,27in 4K Gaming Monitor,1,389.99,12/09/19 10:23,"30 Lakeview St, Boston, MA 02215" +300063,Lightning Charging Cable,1,14.95,12/04/19 21:14,"572 1st St, Atlanta, GA 30301" +300064,Macbook Pro Laptop,1,1700,12/16/19 10:23,"574 Chestnut St, New York City, NY 10001" +300065,20in Monitor,1,109.99,12/08/19 11:12,"401 1st St, Boston, MA 02215" +300065,AA Batteries (4-pack),1,3.84,12/08/19 11:12,"401 1st St, Boston, MA 02215" +300066,Flatscreen TV,1,300,12/08/19 19:06,"138 2nd St, San Francisco, CA 94016" +300067,Apple Airpods Headphones,1,150,12/05/19 18:14,"348 Jackson St, New York City, NY 10001" +300068,Wired Headphones,1,11.99,12/14/19 13:24,"808 Forest St, Portland, OR 97035" +300069,Lightning Charging Cable,1,14.95,12/22/19 10:26,"527 Hickory St, New York City, NY 10001" +300070,Vareebadd Phone,1,400,12/25/19 10:07,"406 Cherry St, Boston, MA 02215" +300070,USB-C Charging Cable,1,11.95,12/25/19 10:07,"406 Cherry St, Boston, MA 02215" +300071,LG Washing Machine,1,600.0,12/24/19 17:44,"258 West St, San Francisco, CA 94016" +300072,AA Batteries (4-pack),2,3.84,12/17/19 17:32,"316 Lakeview St, Dallas, TX 75001" +300073,AA Batteries (4-pack),1,3.84,12/05/19 14:09,"186 Chestnut St, San Francisco, CA 94016" +300074,USB-C Charging Cable,1,11.95,12/13/19 19:51,"202 8th St, Los Angeles, CA 90001" +300075,Apple Airpods Headphones,1,150,12/24/19 15:52,"726 River St, Boston, MA 02215" +300076,Wired Headphones,2,11.99,12/08/19 12:20,"348 Hill St, Dallas, TX 75001" +300077,Wired Headphones,1,11.99,12/19/19 19:08,"478 Lake St, Los Angeles, CA 90001" +300078,Apple Airpods Headphones,1,150,12/23/19 16:05,"966 Spruce St, Austin, TX 73301" +300079,Vareebadd Phone,1,400,12/13/19 12:34,"653 Wilson St, Atlanta, GA 30301" +300080,AAA Batteries (4-pack),1,2.99,12/05/19 15:20,"642 Jefferson St, Boston, MA 02215" +300081,AA Batteries (4-pack),1,3.84,12/31/19 09:32,"6 North St, San Francisco, CA 94016" +300082,USB-C Charging Cable,1,11.95,12/20/19 21:32,"922 Pine St, Los Angeles, CA 90001" +300083,Lightning Charging Cable,1,14.95,12/29/19 09:26,"956 11th St, Los Angeles, CA 90001" +300084,AA Batteries (4-pack),3,3.84,12/08/19 15:09,"144 Sunset St, San Francisco, CA 94016" +300085,Apple Airpods Headphones,1,150,12/08/19 16:12,"149 North St, Dallas, TX 75001" +300086,Vareebadd Phone,1,400,12/18/19 17:28,"918 Johnson St, Boston, MA 02215" +300087,Apple Airpods Headphones,1,150,12/29/19 14:51,"790 Spruce St, Boston, MA 02215" +300088,Wired Headphones,1,11.99,12/18/19 15:02,"952 13th St, San Francisco, CA 94016" +300089,ThinkPad Laptop,1,999.99,12/23/19 13:09,"832 8th St, Los Angeles, CA 90001" +300090,AAA Batteries (4-pack),3,2.99,12/18/19 13:59,"353 Cherry St, Los Angeles, CA 90001" +300091,Lightning Charging Cable,1,14.95,12/11/19 12:03,"712 Hill St, Seattle, WA 98101" +300092,Apple Airpods Headphones,1,150,12/01/19 14:19,"514 Forest St, Dallas, TX 75001" +300093,AAA Batteries (4-pack),1,2.99,12/06/19 18:05,"169 8th St, New York City, NY 10001" +300094,Apple Airpods Headphones,1,150,12/22/19 17:14,"463 Adams St, Los Angeles, CA 90001" +300095,AA Batteries (4-pack),1,3.84,12/26/19 14:39,"262 Hill St, Boston, MA 02215" +300096,AA Batteries (4-pack),1,3.84,12/05/19 16:31,"301 Sunset St, Portland, OR 97035" +300097,Flatscreen TV,1,300,12/30/19 11:58,"714 Maple St, Boston, MA 02215" +300098,Bose SoundSport Headphones,1,99.99,12/26/19 10:42,"774 Washington St, Boston, MA 02215" +300099,USB-C Charging Cable,1,11.95,12/05/19 14:07,"681 1st St, Los Angeles, CA 90001" +300100,Wired Headphones,1,11.99,12/13/19 21:41,"584 Hill St, San Francisco, CA 94016" +300101,Wired Headphones,1,11.99,12/11/19 19:50,"88 Hickory St, San Francisco, CA 94016" +300102,Bose SoundSport Headphones,1,99.99,12/11/19 00:16,"758 Meadow St, San Francisco, CA 94016" +300103,Lightning Charging Cable,1,14.95,12/17/19 10:25,"871 Jefferson St, Los Angeles, CA 90001" +300104,AAA Batteries (4-pack),1,2.99,12/21/19 06:02,"699 11th St, New York City, NY 10001" +300105,Flatscreen TV,1,300,12/05/19 18:56,"417 1st St, Seattle, WA 98101" +300106,Lightning Charging Cable,1,14.95,12/08/19 11:47,"500 Walnut St, Atlanta, GA 30301" +300107,Lightning Charging Cable,1,14.95,12/05/19 06:20,"150 Chestnut St, Portland, OR 97035" +300108,Wired Headphones,1,11.99,12/11/19 21:35,"165 13th St, Seattle, WA 98101" +300109,Apple Airpods Headphones,1,150,12/29/19 10:42,"774 Church St, Los Angeles, CA 90001" +300109,iPhone,1,700,12/29/19 10:42,"774 Church St, Los Angeles, CA 90001" +300110,Apple Airpods Headphones,1,150,12/05/19 16:44,"917 11th St, Seattle, WA 98101" +300111,Wired Headphones,1,11.99,12/16/19 22:29,"703 Spruce St, New York City, NY 10001" +300112,AAA Batteries (4-pack),1,2.99,12/18/19 12:36,"873 Jefferson St, Seattle, WA 98101" +300113,USB-C Charging Cable,2,11.95,12/05/19 08:01,"344 Pine St, Dallas, TX 75001" +300114,Apple Airpods Headphones,1,150,12/17/19 11:53,"9 Main St, San Francisco, CA 94016" +300115,AA Batteries (4-pack),1,3.84,12/20/19 18:52,"526 5th St, Atlanta, GA 30301" +300116,Bose SoundSport Headphones,1,99.99,12/11/19 21:40,"894 Forest St, Los Angeles, CA 90001" +300117,USB-C Charging Cable,1,11.95,12/22/19 17:57,"54 Dogwood St, San Francisco, CA 94016" +300118,34in Ultrawide Monitor,1,379.99,12/12/19 12:07,"437 North St, Seattle, WA 98101" +300119,Macbook Pro Laptop,1,1700,12/07/19 15:22,"453 11th St, New York City, NY 10001" +300120,AA Batteries (4-pack),3,3.84,12/23/19 10:27,"314 Lincoln St, San Francisco, CA 94016" +300121,AAA Batteries (4-pack),1,2.99,12/14/19 21:19,"929 Wilson St, New York City, NY 10001" +300122,USB-C Charging Cable,1,11.95,12/22/19 12:36,"680 Johnson St, San Francisco, CA 94016" +300123,USB-C Charging Cable,1,11.95,12/11/19 13:48,"651 Sunset St, Boston, MA 02215" +300124,Macbook Pro Laptop,1,1700,12/04/19 11:44,"174 Chestnut St, New York City, NY 10001" +300125,iPhone,1,700,12/17/19 23:11,"881 Meadow St, Dallas, TX 75001" +300125,Lightning Charging Cable,1,14.95,12/17/19 23:11,"881 Meadow St, Dallas, TX 75001" +300126,AA Batteries (4-pack),1,3.84,12/21/19 15:04,"56 Jefferson St, San Francisco, CA 94016" +300127,iPhone,1,700,12/23/19 16:59,"208 Hickory St, Los Angeles, CA 90001" +300128,Google Phone,1,600,12/09/19 17:41,"408 Center St, Dallas, TX 75001" +300129,AA Batteries (4-pack),1,3.84,12/03/19 12:49,"941 12th St, New York City, NY 10001" +300130,Bose SoundSport Headphones,1,99.99,12/20/19 14:57,"935 Johnson St, Austin, TX 73301" +300131,Lightning Charging Cable,2,14.95,12/27/19 14:35,"774 Cedar St, San Francisco, CA 94016" +300132,USB-C Charging Cable,1,11.95,12/04/19 17:57,"679 Maple St, San Francisco, CA 94016" +300133,USB-C Charging Cable,1,11.95,12/22/19 15:57,"618 North St, San Francisco, CA 94016" +300134,iPhone,1,700,12/10/19 12:26,"356 Cedar St, Boston, MA 02215" +300135,AAA Batteries (4-pack),1,2.99,12/27/19 17:31,"56 14th St, San Francisco, CA 94016" +300136,Macbook Pro Laptop,1,1700,12/02/19 21:12,"664 Meadow St, Dallas, TX 75001" +300137,ThinkPad Laptop,1,999.99,12/07/19 18:48,"432 Cedar St, San Francisco, CA 94016" +300138,Wired Headphones,1,11.99,12/13/19 09:57,"184 14th St, Los Angeles, CA 90001" +300139,iPhone,1,700,12/18/19 16:45,"121 9th St, Los Angeles, CA 90001" +300140,Lightning Charging Cable,1,14.95,12/24/19 23:46,"180 Hickory St, Boston, MA 02215" +300141,Wired Headphones,1,11.99,12/30/19 21:59,"374 Cedar St, Seattle, WA 98101" +300142,Bose SoundSport Headphones,1,99.99,12/01/19 10:37,"752 Lake St, New York City, NY 10001" +300143,Lightning Charging Cable,1,14.95,12/11/19 17:44,"510 2nd St, Atlanta, GA 30301" +300144,Google Phone,1,600,12/18/19 23:05,"659 7th St, Portland, ME 04101" +300145,27in 4K Gaming Monitor,1,389.99,12/06/19 10:29,"899 West St, Los Angeles, CA 90001" +300146,27in 4K Gaming Monitor,1,389.99,12/06/19 20:35,"789 River St, San Francisco, CA 94016" +300147,Apple Airpods Headphones,1,150,12/21/19 16:05,"350 4th St, Los Angeles, CA 90001" +300148,Apple Airpods Headphones,1,150,12/24/19 18:09,"416 Chestnut St, Portland, OR 97035" +300149,AAA Batteries (4-pack),2,2.99,12/04/19 18:28,"797 Walnut St, Los Angeles, CA 90001" +300150,27in 4K Gaming Monitor,1,389.99,12/26/19 15:30,"990 6th St, Dallas, TX 75001" +300151,AA Batteries (4-pack),1,3.84,12/25/19 11:45,"47 11th St, New York City, NY 10001" +300152,Lightning Charging Cable,1,14.95,12/28/19 15:06,"373 Johnson St, San Francisco, CA 94016" +300153,27in 4K Gaming Monitor,1,389.99,12/20/19 18:54,"517 5th St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +300154,AA Batteries (4-pack),1,3.84,12/09/19 09:25,"713 Washington St, Atlanta, GA 30301" +300155,Apple Airpods Headphones,1,150,12/31/19 19:24,"930 Meadow St, Dallas, TX 75001" +300156,Bose SoundSport Headphones,1,99.99,12/17/19 19:24,"752 Johnson St, Austin, TX 73301" +300157,USB-C Charging Cable,1,11.95,12/07/19 21:45,"243 Cedar St, Seattle, WA 98101" +300158,AA Batteries (4-pack),1,3.84,12/17/19 18:30,"532 2nd St, New York City, NY 10001" +300159,20in Monitor,1,109.99,12/29/19 16:40,"35 6th St, San Francisco, CA 94016" +300160,USB-C Charging Cable,1,11.95,12/09/19 12:00,"734 Lakeview St, Portland, OR 97035" +300161,iPhone,1,700,12/21/19 13:24,"247 Forest St, New York City, NY 10001" +300162,AAA Batteries (4-pack),3,2.99,12/15/19 19:44,"191 Spruce St, Los Angeles, CA 90001" +300163,27in FHD Monitor,1,149.99,12/09/19 13:50,"264 Lake St, San Francisco, CA 94016" +300164,34in Ultrawide Monitor,1,379.99,12/19/19 16:56,"587 10th St, Atlanta, GA 30301" +300165,USB-C Charging Cable,1,11.95,12/06/19 07:13,"885 Jackson St, Austin, TX 73301" +300166,Wired Headphones,1,11.99,12/01/19 17:42,"236 Highland St, Austin, TX 73301" +300167,USB-C Charging Cable,1,11.95,12/06/19 09:04,"30 Johnson St, Dallas, TX 75001" +300168,Wired Headphones,1,11.99,12/20/19 12:13,"702 1st St, Los Angeles, CA 90001" +300169,AAA Batteries (4-pack),1,2.99,12/14/19 20:29,"889 7th St, Dallas, TX 75001" +300170,USB-C Charging Cable,1,11.95,12/02/19 10:12,"740 12th St, Portland, OR 97035" +300171,Wired Headphones,1,11.99,12/19/19 23:24,"625 Hickory St, Austin, TX 73301" +300172,27in 4K Gaming Monitor,1,389.99,12/25/19 11:42,"971 Willow St, Los Angeles, CA 90001" +300173,USB-C Charging Cable,1,11.95,12/20/19 17:33,"914 Pine St, Los Angeles, CA 90001" +300174,27in FHD Monitor,1,149.99,12/05/19 19:53,"349 Highland St, Los Angeles, CA 90001" +300175,27in 4K Gaming Monitor,1,389.99,12/22/19 19:15,"234 Willow St, Portland, OR 97035" +300176,Apple Airpods Headphones,1,150,12/29/19 10:48,"669 Willow St, San Francisco, CA 94016" +300177,ThinkPad Laptop,1,999.99,12/30/19 15:53,"694 10th St, San Francisco, CA 94016" +300178,AAA Batteries (4-pack),2,2.99,12/14/19 15:17,"307 Hickory St, San Francisco, CA 94016" +300179,AA Batteries (4-pack),1,3.84,12/10/19 16:28,"119 Highland St, Los Angeles, CA 90001" +300180,AA Batteries (4-pack),1,3.84,12/16/19 11:05,"281 Hill St, Los Angeles, CA 90001" +300181,34in Ultrawide Monitor,1,379.99,12/27/19 16:55,"938 Forest St, Boston, MA 02215" +300182,AA Batteries (4-pack),1,3.84,12/03/19 20:29,"623 Johnson St, San Francisco, CA 94016" +300183,iPhone,1,700,12/29/19 15:34,"681 13th St, Portland, OR 97035" +300184,Apple Airpods Headphones,1,150,12/21/19 21:35,"366 Adams St, Austin, TX 73301" +300185,Wired Headphones,1,11.99,12/01/19 10:44,"317 Jackson St, San Francisco, CA 94016" +300186,USB-C Charging Cable,1,11.95,12/22/19 13:10,"164 Lakeview St, Atlanta, GA 30301" +300187,Bose SoundSport Headphones,1,99.99,12/23/19 18:58,"927 6th St, Dallas, TX 75001" +300188,AAA Batteries (4-pack),1,2.99,12/05/19 16:32,"996 Willow St, Atlanta, GA 30301" +300189,AA Batteries (4-pack),2,3.84,12/24/19 15:43,"504 Meadow St, Portland, OR 97035" +300190,AAA Batteries (4-pack),1,2.99,12/12/19 21:33,"630 Maple St, New York City, NY 10001" +300191,USB-C Charging Cable,2,11.95,12/17/19 13:58,"321 13th St, Atlanta, GA 30301" +300192,27in FHD Monitor,1,149.99,12/26/19 18:48,"233 Park St, New York City, NY 10001" +300193,LG Dryer,1,600.0,12/14/19 08:32,"366 Chestnut St, New York City, NY 10001" +300194,Apple Airpods Headphones,1,150,12/23/19 09:46,"778 10th St, Boston, MA 02215" +300195,Apple Airpods Headphones,1,150,12/27/19 12:44,"394 Madison St, San Francisco, CA 94016" +300196,iPhone,1,700,12/03/19 10:14,"928 Jackson St, Atlanta, GA 30301" +300196,Wired Headphones,1,11.99,12/03/19 10:14,"928 Jackson St, Atlanta, GA 30301" +300197,AAA Batteries (4-pack),1,2.99,12/25/19 19:40,"623 West St, Los Angeles, CA 90001" +300198,Flatscreen TV,1,300,12/24/19 22:03,"167 Meadow St, Boston, MA 02215" +300198,Wired Headphones,1,11.99,12/24/19 22:03,"167 Meadow St, Boston, MA 02215" +300199,AAA Batteries (4-pack),2,2.99,12/31/19 19:30,"507 Adams St, Los Angeles, CA 90001" +300200,AA Batteries (4-pack),1,3.84,12/03/19 08:33,"815 Jefferson St, Portland, ME 04101" +300201,AAA Batteries (4-pack),1,2.99,12/04/19 11:05,"728 Jackson St, San Francisco, CA 94016" +300202,AAA Batteries (4-pack),1,2.99,12/08/19 14:26,"241 Forest St, Dallas, TX 75001" +300203,AA Batteries (4-pack),1,3.84,12/29/19 19:45,"343 10th St, Dallas, TX 75001" +300204,Lightning Charging Cable,1,14.95,12/14/19 17:26,"458 11th St, San Francisco, CA 94016" +300205,Wired Headphones,2,11.99,12/17/19 20:59,"464 Ridge St, Atlanta, GA 30301" +300206,AA Batteries (4-pack),1,3.84,12/07/19 22:27,"998 8th St, Portland, OR 97035" +300207,Bose SoundSport Headphones,2,99.99,12/26/19 20:17,"244 River St, New York City, NY 10001" +300208,Bose SoundSport Headphones,1,99.99,12/20/19 11:32,"799 2nd St, San Francisco, CA 94016" +300209,USB-C Charging Cable,1,11.95,12/01/19 12:57,"842 Chestnut St, Boston, MA 02215" +300210,iPhone,1,700,12/02/19 10:59,"435 Lakeview St, Boston, MA 02215" +300211,20in Monitor,1,109.99,12/03/19 17:56,"315 Hill St, Portland, OR 97035" +300212,Bose SoundSport Headphones,1,99.99,12/10/19 20:53,"1 2nd St, Dallas, TX 75001" +300213,ThinkPad Laptop,1,999.99,12/05/19 19:48,"724 Lincoln St, Austin, TX 73301" +300214,USB-C Charging Cable,1,11.95,12/13/19 14:30,"804 Wilson St, Dallas, TX 75001" +300215,USB-C Charging Cable,1,11.95,12/26/19 19:06,"994 South St, Seattle, WA 98101" +300216,AA Batteries (4-pack),1,3.84,12/29/19 22:35,"420 Hill St, San Francisco, CA 94016" +300217,AAA Batteries (4-pack),1,2.99,12/28/19 06:56,"769 Washington St, Dallas, TX 75001" +300218,AAA Batteries (4-pack),1,2.99,12/30/19 10:24,"748 Forest St, Seattle, WA 98101" +300219,Macbook Pro Laptop,1,1700,12/21/19 16:30,"480 1st St, New York City, NY 10001" +300220,34in Ultrawide Monitor,1,379.99,12/28/19 17:06,"616 South St, Los Angeles, CA 90001" +300221,LG Dryer,1,600.0,12/25/19 03:15,"777 4th St, Dallas, TX 75001" +300222,AAA Batteries (4-pack),2,2.99,12/28/19 16:44,"428 13th St, Austin, TX 73301" +300223,USB-C Charging Cable,1,11.95,12/13/19 18:41,"30 Hickory St, San Francisco, CA 94016" +300224,AA Batteries (4-pack),1,3.84,12/06/19 23:48,"112 South St, Los Angeles, CA 90001" +300225,AA Batteries (4-pack),1,3.84,12/14/19 20:39,"95 6th St, Los Angeles, CA 90001" +300226,27in FHD Monitor,1,149.99,12/07/19 10:52,"611 Dogwood St, New York City, NY 10001" +300227,Bose SoundSport Headphones,1,99.99,12/21/19 20:21,"476 Elm St, San Francisco, CA 94016" +300228,AAA Batteries (4-pack),1,2.99,12/21/19 00:08,"633 South St, Seattle, WA 98101" +300229,Bose SoundSport Headphones,1,99.99,12/18/19 15:35,"398 Spruce St, Austin, TX 73301" +300230,20in Monitor,1,109.99,12/03/19 16:21,"84 7th St, Boston, MA 02215" +300231,USB-C Charging Cable,1,11.95,12/16/19 18:54,"742 13th St, San Francisco, CA 94016" +300231,AAA Batteries (4-pack),1,2.99,12/16/19 18:54,"742 13th St, San Francisco, CA 94016" +300232,Lightning Charging Cable,1,14.95,12/11/19 17:04,"287 4th St, San Francisco, CA 94016" +300233,AA Batteries (4-pack),1,3.84,12/09/19 16:23,"378 Cedar St, Boston, MA 02215" +300234,Bose SoundSport Headphones,1,99.99,12/30/19 18:12,"584 Johnson St, Boston, MA 02215" +300235,ThinkPad Laptop,1,999.99,12/23/19 10:20,"84 Hill St, San Francisco, CA 94016" +300236,Lightning Charging Cable,1,14.95,12/22/19 07:42,"685 Sunset St, Boston, MA 02215" +300237,AAA Batteries (4-pack),1,2.99,12/16/19 11:16,"494 5th St, San Francisco, CA 94016" +300238,34in Ultrawide Monitor,1,379.99,12/26/19 11:20,"278 Madison St, San Francisco, CA 94016" +300239,Apple Airpods Headphones,1,150,12/22/19 14:53,"686 Maple St, Los Angeles, CA 90001" +300240,Lightning Charging Cable,1,14.95,12/20/19 10:20,"731 6th St, New York City, NY 10001" +300241,Lightning Charging Cable,1,14.95,12/05/19 20:10,"668 Dogwood St, Dallas, TX 75001" +300242,Macbook Pro Laptop,1,1700,12/26/19 13:39,"251 Hill St, Portland, OR 97035" +300243,Apple Airpods Headphones,1,150,12/10/19 16:13,"849 Center St, Atlanta, GA 30301" +300244,Wired Headphones,1,11.99,12/26/19 14:38,"692 2nd St, San Francisco, CA 94016" +300245,AAA Batteries (4-pack),1,2.99,12/27/19 15:40,"339 14th St, Atlanta, GA 30301" +300246,Flatscreen TV,1,300,12/24/19 15:26,"222 Walnut St, Dallas, TX 75001" +300247,27in FHD Monitor,1,149.99,12/26/19 16:20,"660 12th St, Los Angeles, CA 90001" +300248,Vareebadd Phone,1,400,12/31/19 09:04,"224 Johnson St, Austin, TX 73301" +300249,AA Batteries (4-pack),2,3.84,12/02/19 12:53,"216 Walnut St, Boston, MA 02215" +300250,Macbook Pro Laptop,1,1700,12/12/19 13:17,"638 Hill St, San Francisco, CA 94016" +300251,34in Ultrawide Monitor,1,379.99,12/07/19 13:47,"131 Jefferson St, San Francisco, CA 94016" +300252,USB-C Charging Cable,1,11.95,12/09/19 08:38,"632 Cherry St, Los Angeles, CA 90001" +300253,AAA Batteries (4-pack),2,2.99,12/21/19 04:28,"518 5th St, Boston, MA 02215" +300254,27in 4K Gaming Monitor,1,389.99,12/22/19 13:38,"877 8th St, Los Angeles, CA 90001" +300255,20in Monitor,1,109.99,12/10/19 23:21,"514 West St, San Francisco, CA 94016" +300256,AAA Batteries (4-pack),2,2.99,12/21/19 20:12,"795 Cherry St, Los Angeles, CA 90001" +300257,AA Batteries (4-pack),1,3.84,12/27/19 20:57,"444 Johnson St, Portland, OR 97035" +300258,Apple Airpods Headphones,1,150,12/19/19 09:31,"185 2nd St, Los Angeles, CA 90001" +300259,Apple Airpods Headphones,1,150,12/18/19 21:58,"8 Main St, San Francisco, CA 94016" +300260,Apple Airpods Headphones,1,150,12/25/19 01:44,"943 Center St, New York City, NY 10001" +300261,Wired Headphones,1,11.99,12/14/19 19:36,"429 Spruce St, Boston, MA 02215" +300262,USB-C Charging Cable,1,11.95,12/05/19 13:48,"899 Willow St, Los Angeles, CA 90001" +300263,Lightning Charging Cable,1,14.95,12/16/19 12:38,"382 9th St, Los Angeles, CA 90001" +300264,Apple Airpods Headphones,1,150,12/19/19 13:44,"455 North St, Portland, OR 97035" +300265,Lightning Charging Cable,1,14.95,12/28/19 19:59,"511 Willow St, Boston, MA 02215" +300266,Lightning Charging Cable,1,14.95,12/09/19 20:27,"831 Johnson St, Los Angeles, CA 90001" +300267,Flatscreen TV,1,300,12/23/19 18:35,"478 14th St, Dallas, TX 75001" +300268,AAA Batteries (4-pack),1,2.99,12/21/19 12:09,"859 Highland St, Dallas, TX 75001" +300269,Bose SoundSport Headphones,1,99.99,12/12/19 04:34,"546 5th St, Austin, TX 73301" +300270,Macbook Pro Laptop,1,1700,12/22/19 10:41,"284 Sunset St, San Francisco, CA 94016" +300271,27in FHD Monitor,1,149.99,12/08/19 23:48,"333 Washington St, Austin, TX 73301" +300272,27in 4K Gaming Monitor,1,389.99,12/15/19 23:10,"804 Church St, San Francisco, CA 94016" +300273,Lightning Charging Cable,1,14.95,12/01/19 16:29,"381 Jackson St, San Francisco, CA 94016" +300274,ThinkPad Laptop,1,999.99,12/14/19 07:56,"326 1st St, Los Angeles, CA 90001" +300275,USB-C Charging Cable,1,11.95,12/15/19 09:55,"54 Chestnut St, San Francisco, CA 94016" +300276,Lightning Charging Cable,1,14.95,12/19/19 21:30,"30 Elm St, San Francisco, CA 94016" +300277,Wired Headphones,1,11.99,12/31/19 13:21,"592 North St, Boston, MA 02215" +300278,20in Monitor,1,109.99,12/12/19 19:52,"195 Park St, Atlanta, GA 30301" +300279,Macbook Pro Laptop,1,1700,12/27/19 17:48,"607 1st St, Los Angeles, CA 90001" +300280,AA Batteries (4-pack),1,3.84,12/18/19 23:59,"857 Adams St, New York City, NY 10001" +300281,Wired Headphones,1,11.99,12/07/19 23:16,"875 West St, San Francisco, CA 94016" +300282,Apple Airpods Headphones,1,150,12/12/19 15:11,"793 Highland St, San Francisco, CA 94016" +300283,Vareebadd Phone,1,400,12/27/19 11:43,"910 6th St, Los Angeles, CA 90001" +300284,Macbook Pro Laptop,1,1700,12/31/19 18:46,"485 Wilson St, Boston, MA 02215" +300285,27in 4K Gaming Monitor,1,389.99,12/02/19 19:18,"343 Main St, San Francisco, CA 94016" +300286,34in Ultrawide Monitor,1,379.99,12/08/19 13:28,"324 Forest St, Seattle, WA 98101" +300287,Apple Airpods Headphones,1,150,12/21/19 17:51,"62 Main St, Los Angeles, CA 90001" +300288,27in FHD Monitor,1,149.99,12/09/19 22:46,"278 Elm St, Seattle, WA 98101" +300289,Wired Headphones,1,11.99,12/14/19 11:16,"605 Pine St, Los Angeles, CA 90001" +300290,Vareebadd Phone,1,400,12/23/19 21:59,"202 Highland St, Los Angeles, CA 90001" +300291,AAA Batteries (4-pack),3,2.99,12/07/19 18:32,"350 4th St, San Francisco, CA 94016" +300292,Lightning Charging Cable,2,14.95,12/06/19 11:21,"358 2nd St, San Francisco, CA 94016" +300293,27in FHD Monitor,1,149.99,12/27/19 21:29,"680 Park St, Los Angeles, CA 90001" +300294,AA Batteries (4-pack),2,3.84,12/10/19 19:53,"876 11th St, San Francisco, CA 94016" +300295,Apple Airpods Headphones,1,150,12/31/19 19:23,"706 8th St, Seattle, WA 98101" +300296,AA Batteries (4-pack),1,3.84,12/24/19 10:16,"968 Willow St, San Francisco, CA 94016" +300297,34in Ultrawide Monitor,1,379.99,12/29/19 10:11,"205 Forest St, Portland, ME 04101" +300298,Apple Airpods Headphones,1,150,12/05/19 06:51,"696 9th St, Los Angeles, CA 90001" +300299,USB-C Charging Cable,1,11.95,12/25/19 11:41,"813 5th St, Seattle, WA 98101" +300300,Macbook Pro Laptop,1,1700,12/25/19 20:23,"266 Lake St, Seattle, WA 98101" +300301,Bose SoundSport Headphones,1,99.99,12/19/19 21:02,"252 Ridge St, New York City, NY 10001" +300302,AA Batteries (4-pack),1,3.84,12/29/19 16:06,"578 Maple St, Austin, TX 73301" +300303,Wired Headphones,1,11.99,12/13/19 16:59,"709 13th St, Boston, MA 02215" +300304,27in FHD Monitor,1,149.99,12/04/19 11:44,"255 Walnut St, San Francisco, CA 94016" +300305,USB-C Charging Cable,1,11.95,12/19/19 22:26,"386 8th St, Boston, MA 02215" +300305,Bose SoundSport Headphones,1,99.99,12/19/19 22:26,"386 8th St, Boston, MA 02215" +300306,AA Batteries (4-pack),1,3.84,12/17/19 12:04,"530 Maple St, Dallas, TX 75001" +300307,Flatscreen TV,2,300,12/24/19 21:12,"718 Elm St, Boston, MA 02215" +300308,27in FHD Monitor,1,149.99,12/10/19 12:04,"465 Madison St, Los Angeles, CA 90001" +300309,Lightning Charging Cable,1,14.95,12/22/19 09:59,"71 Dogwood St, Seattle, WA 98101" +300310,Wired Headphones,1,11.99,12/30/19 11:00,"550 12th St, Los Angeles, CA 90001" +300311,Apple Airpods Headphones,1,150,12/20/19 11:46,"755 Meadow St, Seattle, WA 98101" +300312,iPhone,1,700,12/30/19 19:02,"228 Willow St, Atlanta, GA 30301" +300313,Google Phone,1,600,12/22/19 01:35,"427 Hickory St, San Francisco, CA 94016" +300313,USB-C Charging Cable,1,11.95,12/22/19 01:35,"427 Hickory St, San Francisco, CA 94016" +300313,Bose SoundSport Headphones,1,99.99,12/22/19 01:35,"427 Hickory St, San Francisco, CA 94016" +300314,27in FHD Monitor,1,149.99,12/14/19 00:21,"911 River St, Portland, ME 04101" +300315,AAA Batteries (4-pack),1,2.99,12/05/19 22:53,"41 Dogwood St, Boston, MA 02215" +300316,Lightning Charging Cable,1,14.95,12/22/19 12:50,"64 6th St, San Francisco, CA 94016" +300316,ThinkPad Laptop,1,999.99,12/22/19 12:50,"64 6th St, San Francisco, CA 94016" +300317,Wired Headphones,1,11.99,12/31/19 16:13,"120 Center St, New York City, NY 10001" +300318,USB-C Charging Cable,1,11.95,12/02/19 21:44,"376 Willow St, Boston, MA 02215" +300319,27in FHD Monitor,1,149.99,12/27/19 10:48,"606 4th St, Seattle, WA 98101" +300320,USB-C Charging Cable,1,11.95,12/22/19 20:43,"826 Maple St, Seattle, WA 98101" +300321,34in Ultrawide Monitor,1,379.99,12/19/19 08:37,"885 North St, New York City, NY 10001" +300322,Wired Headphones,1,11.99,12/25/19 11:05,"564 8th St, New York City, NY 10001" +300323,AAA Batteries (4-pack),1,2.99,12/13/19 17:54,"401 9th St, Seattle, WA 98101" +300324,ThinkPad Laptop,1,999.99,12/09/19 12:37,"813 Wilson St, San Francisco, CA 94016" +300325,Lightning Charging Cable,2,14.95,12/26/19 10:16,"37 Jefferson St, Dallas, TX 75001" +300326,Bose SoundSport Headphones,1,99.99,12/23/19 10:16,"196 14th St, Atlanta, GA 30301" +300327,Apple Airpods Headphones,1,150,12/08/19 14:47,"438 Main St, New York City, NY 10001" +300328,Apple Airpods Headphones,1,150,12/17/19 13:43,"421 5th St, Portland, OR 97035" +300329,Apple Airpods Headphones,1,150,12/01/19 15:40,"730 4th St, Los Angeles, CA 90001" +300330,ThinkPad Laptop,1,999.99,12/04/19 08:54,"948 Maple St, San Francisco, CA 94016" +300330,20in Monitor,1,109.99,12/04/19 08:54,"948 Maple St, San Francisco, CA 94016" +300331,AAA Batteries (4-pack),1,2.99,12/08/19 18:27,"439 4th St, San Francisco, CA 94016" +300332,AA Batteries (4-pack),1,3.84,12/05/19 19:49,"596 12th St, Boston, MA 02215" +300333,Lightning Charging Cable,1,14.95,12/27/19 08:04,"643 Cherry St, Dallas, TX 75001" +300334,AAA Batteries (4-pack),1,2.99,12/14/19 13:00,"242 Willow St, Los Angeles, CA 90001" +300335,Apple Airpods Headphones,1,150,12/16/19 17:09,"811 1st St, Los Angeles, CA 90001" +300336,USB-C Charging Cable,1,11.95,12/29/19 11:39,"653 Jefferson St, Austin, TX 73301" +300337,27in 4K Gaming Monitor,1,389.99,12/30/19 19:58,"777 Meadow St, Los Angeles, CA 90001" +300338,USB-C Charging Cable,1,11.95,12/19/19 22:07,"554 Willow St, San Francisco, CA 94016" +300339,AA Batteries (4-pack),1,3.84,12/16/19 09:23,"135 8th St, Atlanta, GA 30301" +300340,Lightning Charging Cable,1,14.95,12/31/19 08:52,"220 Main St, Boston, MA 02215" +300341,Vareebadd Phone,1,400,12/14/19 22:11,"688 Washington St, Los Angeles, CA 90001" +300342,AAA Batteries (4-pack),1,2.99,12/17/19 22:01,"923 Meadow St, San Francisco, CA 94016" +300343,34in Ultrawide Monitor,1,379.99,12/22/19 16:20,"258 9th St, New York City, NY 10001" +300344,Vareebadd Phone,1,400,12/20/19 11:09,"440 Jefferson St, Austin, TX 73301" +300344,USB-C Charging Cable,1,11.95,12/20/19 11:09,"440 Jefferson St, Austin, TX 73301" +300345,Apple Airpods Headphones,1,150,12/26/19 13:28,"689 12th St, New York City, NY 10001" +300346,AAA Batteries (4-pack),1,2.99,12/04/19 15:24,"963 8th St, Boston, MA 02215" +300347,Wired Headphones,1,11.99,12/18/19 10:22,"243 Sunset St, Seattle, WA 98101" +300348,27in FHD Monitor,1,149.99,12/14/19 11:21,"271 Church St, San Francisco, CA 94016" +300349,USB-C Charging Cable,1,11.95,12/30/19 20:10,"127 Center St, Atlanta, GA 30301" +300350,Bose SoundSport Headphones,1,99.99,12/25/19 07:35,"944 8th St, New York City, NY 10001" +300351,Wired Headphones,1,11.99,12/29/19 09:51,"836 Hickory St, San Francisco, CA 94016" +300352,Lightning Charging Cable,1,14.95,12/09/19 08:54,"93 Meadow St, Los Angeles, CA 90001" +300353,USB-C Charging Cable,1,11.95,12/04/19 18:46,"98 Ridge St, New York City, NY 10001" +300354,Lightning Charging Cable,1,14.95,12/13/19 21:18,"922 Spruce St, San Francisco, CA 94016" +300355,27in 4K Gaming Monitor,1,389.99,12/13/19 22:35,"242 Chestnut St, San Francisco, CA 94016" +300356,Lightning Charging Cable,1,14.95,12/23/19 19:12,"852 Cherry St, New York City, NY 10001" +300357,USB-C Charging Cable,1,11.95,12/26/19 15:16,"74 8th St, Portland, ME 04101" +300358,Wired Headphones,1,11.99,12/20/19 20:29,"458 1st St, San Francisco, CA 94016" +300359,Bose SoundSport Headphones,1,99.99,12/12/19 23:47,"72 Ridge St, San Francisco, CA 94016" +300360,Macbook Pro Laptop,1,1700,12/15/19 12:36,"482 Lakeview St, New York City, NY 10001" +300361,AAA Batteries (4-pack),1,2.99,12/19/19 23:47,"991 Jefferson St, Austin, TX 73301" +300362,27in 4K Gaming Monitor,1,389.99,12/17/19 12:49,"324 Willow St, Austin, TX 73301" +300363,Lightning Charging Cable,2,14.95,12/15/19 17:27,"633 Willow St, Portland, OR 97035" +300364,Wired Headphones,1,11.99,12/09/19 20:10,"734 14th St, Portland, OR 97035" +300365,Apple Airpods Headphones,1,150,12/25/19 06:25,"505 River St, Dallas, TX 75001" +300366,34in Ultrawide Monitor,1,379.99,12/23/19 22:54,"441 11th St, San Francisco, CA 94016" +300367,AAA Batteries (4-pack),3,2.99,12/18/19 10:11,"925 8th St, Austin, TX 73301" +300368,Lightning Charging Cable,1,14.95,12/25/19 19:10,"868 Jackson St, Boston, MA 02215" +300369,AAA Batteries (4-pack),1,2.99,12/12/19 12:01,"320 Johnson St, New York City, NY 10001" +300370,AA Batteries (4-pack),2,3.84,12/06/19 10:45,"203 2nd St, Dallas, TX 75001" +300370,USB-C Charging Cable,1,11.95,12/06/19 10:45,"203 2nd St, Dallas, TX 75001" +300371,Bose SoundSport Headphones,1,99.99,12/29/19 07:15,"843 Lakeview St, Boston, MA 02215" +300372,AAA Batteries (4-pack),1,2.99,12/29/19 13:30,"153 Walnut St, Dallas, TX 75001" +300373,27in FHD Monitor,1,149.99,12/06/19 09:19,"557 Hill St, New York City, NY 10001" +300373,34in Ultrawide Monitor,1,379.99,12/06/19 09:19,"557 Hill St, New York City, NY 10001" +300374,Bose SoundSport Headphones,1,99.99,12/22/19 16:16,"317 Maple St, Austin, TX 73301" +300375,Google Phone,1,600,12/12/19 14:04,"28 Jefferson St, San Francisco, CA 94016" +300376,Wired Headphones,1,11.99,12/05/19 23:39,"752 Washington St, Portland, OR 97035" +300377,Lightning Charging Cable,1,14.95,12/13/19 19:33,"525 9th St, Los Angeles, CA 90001" +300378,Apple Airpods Headphones,1,150,12/06/19 07:25,"513 Madison St, San Francisco, CA 94016" +300379,AA Batteries (4-pack),2,3.84,12/14/19 11:49,"424 Cedar St, New York City, NY 10001" +300380,Macbook Pro Laptop,1,1700,12/11/19 18:49,"935 Spruce St, Seattle, WA 98101" +300381,Macbook Pro Laptop,1,1700,12/28/19 11:57,"457 Sunset St, New York City, NY 10001" +300382,27in FHD Monitor,1,149.99,12/28/19 15:02,"260 Pine St, Los Angeles, CA 90001" +300383,Macbook Pro Laptop,1,1700,12/02/19 11:13,"853 4th St, Austin, TX 73301" +300384,Apple Airpods Headphones,1,150,12/11/19 13:20,"277 Main St, Los Angeles, CA 90001" +300385,Apple Airpods Headphones,1,150,12/16/19 21:29,"560 West St, San Francisco, CA 94016" +300385,Bose SoundSport Headphones,1,99.99,12/16/19 21:29,"560 West St, San Francisco, CA 94016" +300386,Google Phone,1,600,12/08/19 20:59,"120 Highland St, Atlanta, GA 30301" +300386,USB-C Charging Cable,1,11.95,12/08/19 20:59,"120 Highland St, Atlanta, GA 30301" +300387,Bose SoundSport Headphones,1,99.99,12/29/19 17:31,"877 Dogwood St, Los Angeles, CA 90001" +300388,Apple Airpods Headphones,1,150,12/25/19 04:13,"464 Washington St, New York City, NY 10001" +300389,34in Ultrawide Monitor,1,379.99,12/09/19 11:21,"54 Johnson St, Dallas, TX 75001" +300390,Apple Airpods Headphones,1,150,12/29/19 19:06,"129 Lake St, Dallas, TX 75001" +300391,AA Batteries (4-pack),1,3.84,12/04/19 19:29,"761 Cherry St, Seattle, WA 98101" +300392,Wired Headphones,1,11.99,12/11/19 08:26,"616 12th St, San Francisco, CA 94016" +300393,Wired Headphones,1,11.99,12/05/19 09:38,"686 Pine St, Dallas, TX 75001" +300394,Wired Headphones,1,11.99,12/17/19 02:31,"29 Adams St, San Francisco, CA 94016" +300395,27in FHD Monitor,1,149.99,12/12/19 16:54,"465 West St, Atlanta, GA 30301" +300396,AAA Batteries (4-pack),1,2.99,12/17/19 16:04,"444 11th St, San Francisco, CA 94016" +300397,USB-C Charging Cable,1,11.95,12/21/19 09:44,"901 Spruce St, San Francisco, CA 94016" +300398,34in Ultrawide Monitor,1,379.99,12/16/19 18:20,"848 Johnson St, New York City, NY 10001" +300399,20in Monitor,1,109.99,12/31/19 12:58,"384 River St, San Francisco, CA 94016" +300400,20in Monitor,1,109.99,12/15/19 18:53,"62 Meadow St, Austin, TX 73301" +300401,Google Phone,1,600,12/23/19 11:54,"958 Jefferson St, Atlanta, GA 30301" +300402,USB-C Charging Cable,1,11.95,12/17/19 17:12,"442 Chestnut St, San Francisco, CA 94016" +300403,Flatscreen TV,1,300,12/08/19 18:31,"22 Johnson St, New York City, NY 10001" +300404,AAA Batteries (4-pack),1,2.99,12/22/19 19:58,"840 1st St, New York City, NY 10001" +300405,AAA Batteries (4-pack),1,2.99,12/29/19 09:39,"644 8th St, Portland, OR 97035" +300406,AAA Batteries (4-pack),1,2.99,12/30/19 18:59,"563 4th St, San Francisco, CA 94016" +300407,AA Batteries (4-pack),3,3.84,12/23/19 20:16,"310 Park St, Los Angeles, CA 90001" +300408,27in FHD Monitor,1,149.99,12/02/19 14:46,"330 South St, San Francisco, CA 94016" +300409,ThinkPad Laptop,1,999.99,12/08/19 23:04,"498 10th St, Los Angeles, CA 90001" +300410,Lightning Charging Cable,1,14.95,12/20/19 13:42,"609 Sunset St, Austin, TX 73301" +300411,iPhone,1,700,12/10/19 16:38,"222 Cedar St, San Francisco, CA 94016" +300412,LG Dryer,1,600.0,12/21/19 10:16,"328 West St, Austin, TX 73301" +300413,Flatscreen TV,1,300,12/24/19 23:38,"705 13th St, San Francisco, CA 94016" +300414,Wired Headphones,1,11.99,12/12/19 17:13,"473 5th St, Seattle, WA 98101" +300415,AA Batteries (4-pack),1,3.84,12/28/19 06:55,"552 1st St, Boston, MA 02215" +300416,Lightning Charging Cable,1,14.95,12/31/19 19:41,"745 12th St, Austin, TX 73301" +300417,USB-C Charging Cable,1,11.95,12/22/19 15:29,"806 River St, Atlanta, GA 30301" +300418,Bose SoundSport Headphones,1,99.99,12/13/19 19:24,"39 Forest St, San Francisco, CA 94016" +300419,iPhone,1,700,12/14/19 15:06,"542 10th St, Seattle, WA 98101" +300420,Macbook Pro Laptop,1,1700,12/05/19 17:13,"705 Main St, Los Angeles, CA 90001" +300421,AA Batteries (4-pack),1,3.84,12/17/19 12:43,"857 12th St, Austin, TX 73301" +300422,AAA Batteries (4-pack),3,2.99,12/05/19 18:45,"159 Jackson St, Atlanta, GA 30301" +300423,Wired Headphones,1,11.99,12/16/19 16:33,"208 Hill St, San Francisco, CA 94016" +300424,ThinkPad Laptop,1,999.99,12/20/19 20:52,"218 Forest St, Los Angeles, CA 90001" +300425,USB-C Charging Cable,1,11.95,12/24/19 03:07,"761 Pine St, New York City, NY 10001" +300426,Apple Airpods Headphones,1,150,12/20/19 14:19,"79 Lakeview St, Portland, OR 97035" +300427,20in Monitor,1,109.99,12/06/19 13:02,"210 11th St, New York City, NY 10001" +300428,Wired Headphones,1,11.99,12/13/19 17:10,"558 Elm St, Atlanta, GA 30301" +300429,Wired Headphones,1,11.99,12/22/19 12:30,"538 Chestnut St, New York City, NY 10001" +300430,USB-C Charging Cable,1,11.95,12/11/19 20:27,"54 Main St, Austin, TX 73301" +300431,USB-C Charging Cable,1,11.95,12/13/19 11:56,"704 Johnson St, Portland, OR 97035" +300432,Lightning Charging Cable,1,14.95,12/14/19 11:34,"579 Cherry St, San Francisco, CA 94016" +300433,AA Batteries (4-pack),1,3.84,12/21/19 20:25,"591 6th St, San Francisco, CA 94016" +300434,iPhone,1,700,12/28/19 17:17,"749 Center St, Atlanta, GA 30301" +300435,20in Monitor,1,109.99,12/19/19 16:35,"958 Cherry St, Los Angeles, CA 90001" +300436,AAA Batteries (4-pack),3,2.99,12/09/19 23:14,"623 Sunset St, Los Angeles, CA 90001" +300437,Lightning Charging Cable,1,14.95,12/31/19 00:16,"171 Church St, Portland, OR 97035" +300438,27in 4K Gaming Monitor,1,389.99,12/06/19 18:36,"829 Dogwood St, Atlanta, GA 30301" +300439,27in FHD Monitor,1,149.99,12/22/19 17:58,"479 Lake St, San Francisco, CA 94016" +300440,Wired Headphones,1,11.99,12/04/19 21:31,"477 Madison St, Los Angeles, CA 90001" +300441,AA Batteries (4-pack),3,3.84,12/26/19 09:21,"112 Hill St, Los Angeles, CA 90001" +300442,AA Batteries (4-pack),1,3.84,12/19/19 21:50,"551 Lincoln St, Austin, TX 73301" +300443,Bose SoundSport Headphones,1,99.99,12/20/19 14:54,"829 13th St, San Francisco, CA 94016" +300444,AA Batteries (4-pack),1,3.84,12/04/19 10:19,"162 Washington St, Atlanta, GA 30301" +300445,Lightning Charging Cable,1,14.95,12/11/19 14:55,"605 Main St, San Francisco, CA 94016" +300446,AA Batteries (4-pack),2,3.84,12/04/19 22:56,"362 Ridge St, New York City, NY 10001" +300447,34in Ultrawide Monitor,1,379.99,12/31/19 13:46,"36 Meadow St, Los Angeles, CA 90001" +300448,AAA Batteries (4-pack),2,2.99,12/15/19 09:28,"742 South St, Portland, ME 04101" +300449,27in 4K Gaming Monitor,1,389.99,12/01/19 17:13,"282 Jackson St, Seattle, WA 98101" +300450,Lightning Charging Cable,1,14.95,12/29/19 15:57,"915 4th St, New York City, NY 10001" +300451,Bose SoundSport Headphones,1,99.99,12/08/19 09:10,"821 Lake St, Los Angeles, CA 90001" +300452,Google Phone,1,600,12/20/19 14:35,"664 Elm St, Boston, MA 02215" +300452,USB-C Charging Cable,1,11.95,12/20/19 14:35,"664 Elm St, Boston, MA 02215" +300453,AA Batteries (4-pack),1,3.84,12/25/19 07:21,"11 Pine St, Seattle, WA 98101" +300454,Lightning Charging Cable,2,14.95,12/01/19 20:08,"744 Jefferson St, Portland, OR 97035" +300455,Wired Headphones,1,11.99,12/22/19 19:58,"713 Ridge St, Seattle, WA 98101" +300456,USB-C Charging Cable,1,11.95,12/16/19 05:05,"222 Forest St, Los Angeles, CA 90001" +300457,Apple Airpods Headphones,2,150,12/20/19 09:05,"877 Wilson St, San Francisco, CA 94016" +300458,AAA Batteries (4-pack),1,2.99,12/05/19 22:19,"887 Cherry St, San Francisco, CA 94016" +300459,Bose SoundSport Headphones,1,99.99,12/28/19 13:55,"170 Center St, Dallas, TX 75001" +300460,27in FHD Monitor,1,149.99,12/31/19 07:45,"460 West St, Los Angeles, CA 90001" +300461,Bose SoundSport Headphones,1,99.99,12/11/19 16:42,"118 12th St, Austin, TX 73301" +300462,Wired Headphones,1,11.99,12/07/19 15:05,"152 Hill St, Boston, MA 02215" +300463,Google Phone,1,600,12/16/19 22:05,"656 2nd St, Atlanta, GA 30301" +300464,34in Ultrawide Monitor,1,379.99,12/26/19 21:49,"998 11th St, Seattle, WA 98101" +300465,Google Phone,1,600,12/24/19 00:30,"722 Hill St, San Francisco, CA 94016" +300466,Bose SoundSport Headphones,1,99.99,12/07/19 19:00,"453 Main St, New York City, NY 10001" +300467,USB-C Charging Cable,1,11.95,12/16/19 11:06,"475 Chestnut St, Los Angeles, CA 90001" +300468,Bose SoundSport Headphones,1,99.99,12/01/19 17:54,"431 Lincoln St, Los Angeles, CA 90001" +300469,34in Ultrawide Monitor,1,379.99,12/29/19 22:27,"119 5th St, San Francisco, CA 94016" +300470,Bose SoundSport Headphones,1,99.99,12/05/19 18:30,"711 Dogwood St, Los Angeles, CA 90001" +300471,Lightning Charging Cable,1,14.95,12/12/19 13:30,"589 Cherry St, Portland, OR 97035" +300472,AA Batteries (4-pack),1,3.84,12/25/19 17:31,"47 Madison St, San Francisco, CA 94016" +300473,Apple Airpods Headphones,1,150,12/11/19 12:04,"562 Spruce St, Dallas, TX 75001" +300474,USB-C Charging Cable,1,11.95,12/28/19 20:07,"542 2nd St, San Francisco, CA 94016" +300475,Lightning Charging Cable,1,14.95,12/15/19 11:05,"416 West St, San Francisco, CA 94016" +300476,ThinkPad Laptop,1,999.99,12/12/19 02:57,"209 North St, Boston, MA 02215" +300477,Wired Headphones,1,11.99,12/26/19 12:36,"55 Madison St, Austin, TX 73301" +300478,AAA Batteries (4-pack),1,2.99,12/24/19 15:47,"720 Johnson St, Portland, OR 97035" +300479,USB-C Charging Cable,1,11.95,12/14/19 01:54,"298 Dogwood St, Dallas, TX 75001" +300480,Bose SoundSport Headphones,1,99.99,12/21/19 16:27,"376 Center St, Dallas, TX 75001" +300481,27in 4K Gaming Monitor,1,389.99,12/19/19 16:48,"251 Ridge St, San Francisco, CA 94016" +300482,Apple Airpods Headphones,1,150,12/10/19 12:19,"218 5th St, Atlanta, GA 30301" +300483,AAA Batteries (4-pack),1,2.99,12/13/19 00:40,"589 Park St, Atlanta, GA 30301" +300484,USB-C Charging Cable,1,11.95,12/21/19 11:55,"100 Walnut St, Portland, OR 97035" +300485,iPhone,1,700,12/21/19 12:43,"337 Hill St, San Francisco, CA 94016" +300486,AA Batteries (4-pack),1,3.84,12/23/19 20:09,"343 9th St, San Francisco, CA 94016" +300487,Apple Airpods Headphones,1,150,12/17/19 12:09,"726 Lakeview St, Los Angeles, CA 90001" +300488,Wired Headphones,2,11.99,12/23/19 14:54,"343 Jackson St, New York City, NY 10001" +300489,USB-C Charging Cable,1,11.95,12/12/19 17:17,"729 Pine St, New York City, NY 10001" +300490,AAA Batteries (4-pack),2,2.99,12/15/19 12:10,"53 Jefferson St, Atlanta, GA 30301" +300491,Bose SoundSport Headphones,1,99.99,12/02/19 17:40,"9 Maple St, San Francisco, CA 94016" +300492,Lightning Charging Cable,1,14.95,12/01/19 10:40,"862 Forest St, Austin, TX 73301" +,,,,, +300493,20in Monitor,1,109.99,12/19/19 21:38,"869 Dogwood St, Seattle, WA 98101" +300494,iPhone,1,700,12/08/19 18:52,"118 5th St, New York City, NY 10001" +300494,Wired Headphones,1,11.99,12/08/19 18:52,"118 5th St, New York City, NY 10001" +300495,USB-C Charging Cable,1,11.95,12/01/19 15:17,"379 11th St, Los Angeles, CA 90001" +300496,20in Monitor,1,109.99,12/24/19 20:24,"947 Main St, Los Angeles, CA 90001" +300497,iPhone,1,700,12/07/19 20:22,"329 South St, Boston, MA 02215" +300498,34in Ultrawide Monitor,1,379.99,12/26/19 10:50,"198 2nd St, Los Angeles, CA 90001" +300499,27in 4K Gaming Monitor,1,389.99,12/25/19 12:30,"713 Jefferson St, Seattle, WA 98101" +300500,Google Phone,1,600,12/27/19 11:34,"675 Elm St, Portland, OR 97035" +300501,Bose SoundSport Headphones,1,99.99,12/20/19 16:20,"747 North St, New York City, NY 10001" +300502,27in FHD Monitor,1,149.99,12/25/19 22:03,"113 Center St, Los Angeles, CA 90001" +300503,27in FHD Monitor,1,149.99,12/27/19 22:13,"117 2nd St, Los Angeles, CA 90001" +300504,AA Batteries (4-pack),2,3.84,12/18/19 16:52,"70 Highland St, Portland, OR 97035" +300505,USB-C Charging Cable,1,11.95,12/03/19 00:44,"296 Pine St, Portland, OR 97035" +300506,20in Monitor,1,109.99,12/16/19 17:42,"246 River St, Los Angeles, CA 90001" +300507,iPhone,1,700,12/28/19 03:53,"184 4th St, San Francisco, CA 94016" +300508,AAA Batteries (4-pack),2,2.99,12/22/19 18:23,"783 Madison St, Seattle, WA 98101" +300509,20in Monitor,1,109.99,12/16/19 12:29,"598 Maple St, San Francisco, CA 94016" +300510,34in Ultrawide Monitor,1,379.99,12/23/19 13:26,"199 Center St, New York City, NY 10001" +300511,34in Ultrawide Monitor,1,379.99,12/07/19 13:52,"310 5th St, Dallas, TX 75001" +300512,iPhone,1,700,12/07/19 14:16,"919 Cherry St, San Francisco, CA 94016" +300513,AA Batteries (4-pack),1,3.84,12/30/19 19:35,"365 Jackson St, Seattle, WA 98101" +300514,Lightning Charging Cable,1,14.95,12/22/19 08:09,"473 Washington St, Dallas, TX 75001" +300515,AA Batteries (4-pack),2,3.84,12/04/19 17:53,"819 7th St, Austin, TX 73301" +300516,ThinkPad Laptop,1,999.99,12/26/19 23:48,"857 Lake St, Atlanta, GA 30301" +300517,27in FHD Monitor,1,149.99,12/07/19 23:21,"811 Highland St, Atlanta, GA 30301" +300518,27in FHD Monitor,1,149.99,12/11/19 14:41,"126 Johnson St, Los Angeles, CA 90001" +300519,Bose SoundSport Headphones,1,99.99,12/07/19 01:18,"352 Park St, Dallas, TX 75001" +300520,27in 4K Gaming Monitor,1,389.99,12/15/19 20:37,"238 11th St, San Francisco, CA 94016" +300521,AAA Batteries (4-pack),2,2.99,12/23/19 20:29,"918 Center St, Los Angeles, CA 90001" +300522,Lightning Charging Cable,1,14.95,12/29/19 12:52,"378 5th St, San Francisco, CA 94016" +300523,USB-C Charging Cable,1,11.95,12/02/19 17:57,"724 Elm St, San Francisco, CA 94016" +300524,27in FHD Monitor,1,149.99,12/05/19 18:55,"803 River St, Seattle, WA 98101" +300525,USB-C Charging Cable,1,11.95,12/30/19 07:35,"640 Lakeview St, Portland, OR 97035" +300526,Wired Headphones,1,11.99,12/19/19 12:51,"875 Jackson St, Boston, MA 02215" +300527,AA Batteries (4-pack),2,3.84,12/12/19 11:41,"485 Wilson St, San Francisco, CA 94016" +300528,20in Monitor,1,109.99,12/18/19 23:55,"655 Pine St, San Francisco, CA 94016" +300529,iPhone,1,700,12/20/19 20:56,"951 Ridge St, Dallas, TX 75001" +300529,Lightning Charging Cable,1,14.95,12/20/19 20:56,"951 Ridge St, Dallas, TX 75001" +300529,Wired Headphones,1,11.99,12/20/19 20:56,"951 Ridge St, Dallas, TX 75001" +300530,Apple Airpods Headphones,1,150,12/30/19 13:15,"941 Lake St, San Francisco, CA 94016" +300531,USB-C Charging Cable,1,11.95,12/10/19 19:48,"289 11th St, San Francisco, CA 94016" +300532,Bose SoundSport Headphones,1,99.99,12/31/19 12:55,"757 6th St, San Francisco, CA 94016" +300533,Lightning Charging Cable,1,14.95,12/21/19 00:02,"901 Elm St, Atlanta, GA 30301" +300534,27in FHD Monitor,1,149.99,12/17/19 23:53,"486 Lincoln St, Portland, ME 04101" +300535,AA Batteries (4-pack),2,3.84,12/03/19 14:11,"740 Willow St, San Francisco, CA 94016" +300536,USB-C Charging Cable,1,11.95,12/27/19 17:23,"564 14th St, New York City, NY 10001" +300537,Apple Airpods Headphones,1,150,12/06/19 16:32,"518 Johnson St, Los Angeles, CA 90001" +300538,Flatscreen TV,1,300,12/15/19 11:10,"968 Adams St, Los Angeles, CA 90001" +300539,Vareebadd Phone,1,400,12/02/19 13:22,"196 Center St, Portland, ME 04101" +300540,Lightning Charging Cable,1,14.95,12/09/19 20:22,"920 13th St, Dallas, TX 75001" +300541,Lightning Charging Cable,1,14.95,12/15/19 17:10,"445 Pine St, San Francisco, CA 94016" +300542,Wired Headphones,1,11.99,12/02/19 19:04,"232 Lake St, New York City, NY 10001" +300543,USB-C Charging Cable,1,11.95,12/27/19 08:36,"995 6th St, Los Angeles, CA 90001" +300544,AAA Batteries (4-pack),2,2.99,12/20/19 23:38,"565 Park St, San Francisco, CA 94016" +300545,Apple Airpods Headphones,1,150,12/19/19 18:27,"470 Madison St, Seattle, WA 98101" +300546,AA Batteries (4-pack),1,3.84,12/28/19 12:37,"207 North St, Dallas, TX 75001" +300547,Lightning Charging Cable,1,14.95,12/01/19 08:59,"439 Jackson St, Boston, MA 02215" +300548,AA Batteries (4-pack),2,3.84,12/29/19 11:56,"612 Ridge St, Boston, MA 02215" +300549,AAA Batteries (4-pack),1,2.99,12/01/19 21:04,"113 2nd St, Seattle, WA 98101" +300550,AAA Batteries (4-pack),1,2.99,12/25/19 19:53,"333 Willow St, San Francisco, CA 94016" +300551,AA Batteries (4-pack),1,3.84,12/23/19 12:17,"451 13th St, San Francisco, CA 94016" +300551,Flatscreen TV,1,300,12/23/19 12:17,"451 13th St, San Francisco, CA 94016" +300552,Wired Headphones,1,11.99,12/23/19 07:52,"725 Forest St, Los Angeles, CA 90001" +300553,AAA Batteries (4-pack),1,2.99,12/30/19 13:39,"29 Johnson St, Atlanta, GA 30301" +300554,Lightning Charging Cable,1,14.95,12/29/19 19:45,"969 8th St, Seattle, WA 98101" +300555,USB-C Charging Cable,1,11.95,12/24/19 21:28,"733 Cedar St, Boston, MA 02215" +300556,AAA Batteries (4-pack),2,2.99,12/15/19 12:38,"548 Cherry St, Los Angeles, CA 90001" +300557,AAA Batteries (4-pack),2,2.99,12/24/19 16:08,"604 North St, Atlanta, GA 30301" +300558,AAA Batteries (4-pack),1,2.99,12/28/19 00:03,"829 2nd St, San Francisco, CA 94016" +300559,Macbook Pro Laptop,1,1700,12/09/19 15:15,"982 Lake St, New York City, NY 10001" +300560,iPhone,1,700,12/27/19 18:49,"342 Main St, San Francisco, CA 94016" +300561,Apple Airpods Headphones,1,150,12/04/19 11:24,"838 Park St, Dallas, TX 75001" +300562,Wired Headphones,1,11.99,12/20/19 20:23,"775 Forest St, San Francisco, CA 94016" +300563,AA Batteries (4-pack),2,3.84,12/11/19 10:01,"168 Center St, Los Angeles, CA 90001" +300564,AAA Batteries (4-pack),1,2.99,12/12/19 14:10,"884 Jefferson St, San Francisco, CA 94016" +300565,27in 4K Gaming Monitor,1,389.99,12/18/19 12:05,"159 Johnson St, Dallas, TX 75001" +300566,USB-C Charging Cable,1,11.95,12/17/19 18:40,"611 Cherry St, Boston, MA 02215" +300567,Lightning Charging Cable,1,14.95,12/07/19 16:41,"918 Center St, Boston, MA 02215" +300568,AAA Batteries (4-pack),2,2.99,12/17/19 20:41,"735 Hickory St, San Francisco, CA 94016" +300569,Apple Airpods Headphones,1,150,12/15/19 16:52,"499 Park St, Dallas, TX 75001" +300570,AAA Batteries (4-pack),1,2.99,12/16/19 12:03,"565 Wilson St, Los Angeles, CA 90001" +300571,Flatscreen TV,1,300,12/27/19 18:08,"288 Center St, Seattle, WA 98101" +300572,Apple Airpods Headphones,1,150,12/24/19 10:17,"439 Willow St, San Francisco, CA 94016" +300573,Wired Headphones,1,11.99,12/23/19 14:08,"935 Chestnut St, Los Angeles, CA 90001" +300574,AA Batteries (4-pack),1,3.84,12/28/19 20:16,"911 Lake St, New York City, NY 10001" +300574,AA Batteries (4-pack),1,3.84,12/28/19 20:16,"911 Lake St, New York City, NY 10001" +300575,ThinkPad Laptop,1,999.99,12/05/19 10:51,"702 Dogwood St, Portland, OR 97035" +300576,Lightning Charging Cable,1,14.95,12/09/19 10:20,"680 Jackson St, Atlanta, GA 30301" +300577,Bose SoundSport Headphones,1,99.99,12/21/19 23:36,"934 12th St, Los Angeles, CA 90001" +300578,Lightning Charging Cable,1,14.95,12/27/19 06:11,"600 Adams St, New York City, NY 10001" +300579,AA Batteries (4-pack),1,3.84,12/03/19 13:47,"733 Washington St, New York City, NY 10001" +300580,ThinkPad Laptop,1,999.99,12/23/19 21:32,"683 14th St, Los Angeles, CA 90001" +300581,Lightning Charging Cable,1,14.95,12/03/19 06:28,"156 Elm St, Seattle, WA 98101" +300582,AA Batteries (4-pack),1,3.84,12/03/19 15:22,"879 Center St, New York City, NY 10001" +300583,27in 4K Gaming Monitor,1,389.99,12/13/19 00:00,"962 7th St, San Francisco, CA 94016" +300584,27in FHD Monitor,1,149.99,12/28/19 16:35,"147 Washington St, Los Angeles, CA 90001" +300585,USB-C Charging Cable,1,11.95,12/29/19 13:47,"592 Chestnut St, New York City, NY 10001" +300586,AAA Batteries (4-pack),1,2.99,12/01/19 12:31,"845 6th St, Boston, MA 02215" +300587,34in Ultrawide Monitor,1,379.99,12/17/19 08:27,"38 Cedar St, Los Angeles, CA 90001" +300588,AAA Batteries (4-pack),1,2.99,12/17/19 15:17,"478 Jackson St, Portland, OR 97035" +300589,Apple Airpods Headphones,1,150,12/12/19 15:45,"207 Madison St, Boston, MA 02215" +300589,Wired Headphones,1,11.99,12/12/19 15:45,"207 Madison St, Boston, MA 02215" +300590,iPhone,1,700,12/24/19 05:20,"94 Meadow St, San Francisco, CA 94016" +300591,iPhone,1,700,12/25/19 19:28,"391 1st St, San Francisco, CA 94016" +300591,Apple Airpods Headphones,1,150,12/25/19 19:28,"391 1st St, San Francisco, CA 94016" +300592,AAA Batteries (4-pack),1,2.99,12/25/19 11:06,"321 Meadow St, San Francisco, CA 94016" +300593,Apple Airpods Headphones,1,150,12/27/19 22:03,"167 13th St, New York City, NY 10001" +300594,AA Batteries (4-pack),1,3.84,12/18/19 21:59,"694 Willow St, Seattle, WA 98101" +300594,Lightning Charging Cable,1,14.95,12/18/19 21:59,"694 Willow St, Seattle, WA 98101" +300595,Apple Airpods Headphones,1,150,12/17/19 17:46,"407 Lake St, Los Angeles, CA 90001" +300595,34in Ultrawide Monitor,1,379.99,12/17/19 17:46,"407 Lake St, Los Angeles, CA 90001" +300596,Lightning Charging Cable,1,14.95,12/10/19 09:19,"419 Jefferson St, San Francisco, CA 94016" +300597,Lightning Charging Cable,1,14.95,12/08/19 15:33,"761 Walnut St, New York City, NY 10001" +300598,Lightning Charging Cable,2,14.95,12/20/19 16:45,"518 Maple St, Seattle, WA 98101" +300599,Wired Headphones,1,11.99,12/16/19 14:02,"881 Cedar St, San Francisco, CA 94016" +300600,27in 4K Gaming Monitor,1,389.99,12/08/19 00:09,"333 Lake St, Seattle, WA 98101" +300601,27in FHD Monitor,1,149.99,12/01/19 14:21,"532 Wilson St, Boston, MA 02215" +300602,USB-C Charging Cable,1,11.95,12/21/19 20:25,"16 Cedar St, Austin, TX 73301" +300603,Vareebadd Phone,1,400,12/06/19 21:28,"247 Pine St, San Francisco, CA 94016" +300603,USB-C Charging Cable,1,11.95,12/06/19 21:28,"247 Pine St, San Francisco, CA 94016" +300604,AAA Batteries (4-pack),1,2.99,12/05/19 18:42,"141 Washington St, New York City, NY 10001" +300605,Apple Airpods Headphones,1,150,12/04/19 19:06,"418 Adams St, San Francisco, CA 94016" +300606,Bose SoundSport Headphones,1,99.99,12/15/19 09:00,"190 Adams St, Los Angeles, CA 90001" +300607,USB-C Charging Cable,1,11.95,12/25/19 16:33,"294 North St, Dallas, TX 75001" +300608,AA Batteries (4-pack),1,3.84,12/18/19 17:20,"464 6th St, San Francisco, CA 94016" +300609,Apple Airpods Headphones,1,150,12/31/19 06:36,"651 Main St, Los Angeles, CA 90001" +300610,Wired Headphones,1,11.99,12/24/19 20:06,"533 West St, New York City, NY 10001" +300611,Macbook Pro Laptop,1,1700,12/14/19 14:59,"304 2nd St, Los Angeles, CA 90001" +300612,AA Batteries (4-pack),1,3.84,12/11/19 17:59,"222 12th St, Dallas, TX 75001" +300613,Apple Airpods Headphones,1,150,12/27/19 16:56,"266 Willow St, Boston, MA 02215" +300614,Vareebadd Phone,1,400,12/07/19 12:55,"921 Highland St, New York City, NY 10001" +300615,iPhone,1,700,12/04/19 22:38,"564 West St, Los Angeles, CA 90001" +300616,Flatscreen TV,1,300,12/22/19 15:48,"519 Center St, New York City, NY 10001" +,,,,, +300617,Wired Headphones,2,11.99,12/12/19 18:46,"693 Lakeview St, Atlanta, GA 30301" +300618,Lightning Charging Cable,1,14.95,12/15/19 08:18,"840 Church St, Dallas, TX 75001" +300619,Wired Headphones,1,11.99,12/05/19 19:03,"769 River St, San Francisco, CA 94016" +300620,20in Monitor,1,109.99,12/11/19 15:55,"949 4th St, San Francisco, CA 94016" +300621,Google Phone,1,600,12/11/19 09:34,"128 Walnut St, Boston, MA 02215" +300622,Bose SoundSport Headphones,1,99.99,12/07/19 08:48,"462 Spruce St, San Francisco, CA 94016" +300623,Lightning Charging Cable,1,14.95,12/20/19 17:39,"203 Main St, Seattle, WA 98101" +300623,Google Phone,1,600,12/20/19 17:39,"203 Main St, Seattle, WA 98101" +300624,Flatscreen TV,1,300,12/06/19 18:47,"495 Park St, Austin, TX 73301" +300625,AAA Batteries (4-pack),1,2.99,12/24/19 09:11,"103 Jackson St, Austin, TX 73301" +300626,27in 4K Gaming Monitor,1,389.99,12/22/19 20:41,"39 Jefferson St, Los Angeles, CA 90001" +300627,USB-C Charging Cable,1,11.95,12/09/19 11:40,"629 5th St, San Francisco, CA 94016" +300628,Wired Headphones,2,11.99,12/18/19 23:32,"211 Hickory St, Boston, MA 02215" +300629,iPhone,1,700,12/05/19 21:08,"182 Cedar St, Portland, ME 04101" +300630,Bose SoundSport Headphones,1,99.99,12/13/19 11:46,"502 West St, Los Angeles, CA 90001" +300631,Bose SoundSport Headphones,1,99.99,12/11/19 08:17,"572 Jackson St, New York City, NY 10001" +300632,Vareebadd Phone,1,400,12/12/19 17:25,"77 Church St, New York City, NY 10001" +300633,Wired Headphones,1,11.99,12/15/19 15:42,"685 9th St, Boston, MA 02215" +300634,27in 4K Gaming Monitor,1,389.99,12/19/19 16:04,"821 7th St, New York City, NY 10001" +300635,USB-C Charging Cable,1,11.95,12/14/19 10:01,"395 Johnson St, Seattle, WA 98101" +300636,34in Ultrawide Monitor,1,379.99,12/04/19 00:02,"65 Lake St, Atlanta, GA 30301" +300637,Apple Airpods Headphones,1,150,12/21/19 05:03,"922 14th St, San Francisco, CA 94016" +300638,34in Ultrawide Monitor,1,379.99,12/17/19 11:09,"24 Forest St, Dallas, TX 75001" +300639,USB-C Charging Cable,1,11.95,12/15/19 20:45,"11 Wilson St, Dallas, TX 75001" +300640,Bose SoundSport Headphones,1,99.99,12/22/19 17:44,"440 Maple St, Los Angeles, CA 90001" +300641,USB-C Charging Cable,1,11.95,12/25/19 19:01,"819 Forest St, Los Angeles, CA 90001" +300642,Lightning Charging Cable,1,14.95,12/22/19 10:48,"296 South St, Atlanta, GA 30301" +300642,Apple Airpods Headphones,1,150,12/22/19 10:48,"296 South St, Atlanta, GA 30301" +300643,AA Batteries (4-pack),1,3.84,12/30/19 08:12,"497 7th St, Boston, MA 02215" +300644,Macbook Pro Laptop,1,1700,12/22/19 13:37,"167 Pine St, Boston, MA 02215" +300645,Bose SoundSport Headphones,1,99.99,12/22/19 19:36,"162 Washington St, Seattle, WA 98101" +300646,AA Batteries (4-pack),1,3.84,12/31/19 06:56,"335 Hill St, Los Angeles, CA 90001" +300647,USB-C Charging Cable,1,11.95,12/23/19 08:57,"514 1st St, Portland, ME 04101" +300648,27in FHD Monitor,1,149.99,12/08/19 18:37,"603 Johnson St, Portland, OR 97035" +300649,ThinkPad Laptop,1,999.99,12/08/19 21:26,"954 13th St, Portland, OR 97035" +300650,Apple Airpods Headphones,1,150,12/20/19 08:44,"263 South St, New York City, NY 10001" +300651,AA Batteries (4-pack),1,3.84,12/02/19 15:52,"757 Forest St, New York City, NY 10001" +300652,Apple Airpods Headphones,1,150,12/12/19 15:28,"677 Jefferson St, Seattle, WA 98101" +300653,Bose SoundSport Headphones,1,99.99,12/25/19 21:05,"331 Forest St, San Francisco, CA 94016" +300654,Flatscreen TV,1,300,12/30/19 15:45,"812 Jefferson St, Austin, TX 73301" +300655,Vareebadd Phone,1,400,12/23/19 10:14,"247 Elm St, San Francisco, CA 94016" +300656,Wired Headphones,1,11.99,12/07/19 11:54,"536 Hill St, Boston, MA 02215" +300657,AAA Batteries (4-pack),1,2.99,12/23/19 18:18,"787 8th St, Dallas, TX 75001" +300657,Macbook Pro Laptop,1,1700,12/23/19 18:18,"787 8th St, Dallas, TX 75001" +300658,Apple Airpods Headphones,1,150,12/17/19 19:09,"800 Forest St, San Francisco, CA 94016" +300659,AA Batteries (4-pack),1,3.84,12/07/19 09:14,"815 Cherry St, San Francisco, CA 94016" +300660,USB-C Charging Cable,1,11.95,12/30/19 19:40,"43 Johnson St, Los Angeles, CA 90001" +300661,Google Phone,1,600,12/17/19 08:04,"698 9th St, San Francisco, CA 94016" +300662,Wired Headphones,1,11.99,12/05/19 19:19,"180 8th St, San Francisco, CA 94016" +300663,20in Monitor,1,109.99,12/05/19 18:47,"450 West St, Dallas, TX 75001" +300664,Vareebadd Phone,1,400,12/03/19 19:45,"790 Chestnut St, Los Angeles, CA 90001" +300665,USB-C Charging Cable,1,11.95,12/16/19 08:26,"738 Lincoln St, Portland, OR 97035" +300666,AA Batteries (4-pack),1,3.84,12/02/19 10:13,"58 Lincoln St, Dallas, TX 75001" +300667,Apple Airpods Headphones,1,150,12/14/19 18:36,"717 Lincoln St, New York City, NY 10001" +300667,AA Batteries (4-pack),3,3.84,12/14/19 18:36,"717 Lincoln St, New York City, NY 10001" +300668,USB-C Charging Cable,1,11.95,12/20/19 20:42,"764 Spruce St, New York City, NY 10001" +300669,Bose SoundSport Headphones,1,99.99,12/23/19 08:02,"980 Forest St, San Francisco, CA 94016" +300670,Bose SoundSport Headphones,1,99.99,12/14/19 22:22,"465 Madison St, Dallas, TX 75001" +300670,LG Washing Machine,1,600.0,12/14/19 22:22,"465 Madison St, Dallas, TX 75001" +300671,Wired Headphones,1,11.99,12/26/19 12:12,"132 Maple St, San Francisco, CA 94016" +300672,Apple Airpods Headphones,1,150,12/22/19 10:28,"330 Lake St, San Francisco, CA 94016" +300673,Lightning Charging Cable,1,14.95,12/27/19 19:34,"451 1st St, San Francisco, CA 94016" +300674,LG Washing Machine,1,600.0,12/14/19 11:34,"184 Forest St, San Francisco, CA 94016" +300675,AAA Batteries (4-pack),1,2.99,12/04/19 11:04,"375 Jefferson St, New York City, NY 10001" +300676,Vareebadd Phone,1,400,12/08/19 10:15,"145 North St, Portland, OR 97035" +300677,Wired Headphones,1,11.99,12/10/19 22:44,"955 Main St, Dallas, TX 75001" +300678,Lightning Charging Cable,1,14.95,12/20/19 21:30,"882 Cherry St, San Francisco, CA 94016" +300679,Wired Headphones,1,11.99,12/20/19 16:14,"609 Hickory St, New York City, NY 10001" +300680,AAA Batteries (4-pack),1,2.99,12/27/19 21:39,"397 Elm St, Atlanta, GA 30301" +300681,Flatscreen TV,1,300,12/18/19 17:06,"59 Ridge St, San Francisco, CA 94016" +300682,27in 4K Gaming Monitor,1,389.99,12/24/19 21:28,"751 10th St, Dallas, TX 75001" +300683,AA Batteries (4-pack),3,3.84,12/11/19 05:47,"486 Washington St, Austin, TX 73301" +300684,27in FHD Monitor,1,149.99,12/20/19 20:42,"933 Cedar St, San Francisco, CA 94016" +300685,Flatscreen TV,1,300,12/26/19 19:22,"184 10th St, San Francisco, CA 94016" +300686,Macbook Pro Laptop,1,1700,12/27/19 11:52,"96 Sunset St, Dallas, TX 75001" +300687,27in 4K Gaming Monitor,1,389.99,12/17/19 14:41,"284 Willow St, San Francisco, CA 94016" +300688,Bose SoundSport Headphones,1,99.99,12/04/19 16:10,"857 Spruce St, San Francisco, CA 94016" +300689,Flatscreen TV,1,300,12/11/19 10:35,"808 Elm St, Los Angeles, CA 90001" +300690,Lightning Charging Cable,1,14.95,12/28/19 17:34,"296 Jackson St, Austin, TX 73301" +300691,Lightning Charging Cable,1,14.95,12/23/19 14:23,"359 Lakeview St, Dallas, TX 75001" +300692,Bose SoundSport Headphones,1,99.99,12/24/19 15:37,"233 Madison St, New York City, NY 10001" +300693,AA Batteries (4-pack),1,3.84,12/27/19 10:58,"399 Elm St, New York City, NY 10001" +300694,Lightning Charging Cable,1,14.95,12/25/19 10:18,"720 5th St, Boston, MA 02215" +300695,USB-C Charging Cable,1,11.95,12/19/19 17:10,"145 Ridge St, New York City, NY 10001" +300696,AAA Batteries (4-pack),1,2.99,12/13/19 16:59,"417 Adams St, Boston, MA 02215" +300697,Lightning Charging Cable,1,14.95,12/08/19 14:01,"182 14th St, Los Angeles, CA 90001" +300698,AA Batteries (4-pack),1,3.84,12/09/19 12:05,"71 Elm St, New York City, NY 10001" +300699,Lightning Charging Cable,1,14.95,12/10/19 21:18,"544 Hill St, Los Angeles, CA 90001" +300700,AA Batteries (4-pack),1,3.84,12/11/19 16:38,"40 Spruce St, Seattle, WA 98101" +300701,Apple Airpods Headphones,1,150,12/09/19 12:10,"932 Walnut St, Los Angeles, CA 90001" +300702,27in FHD Monitor,1,149.99,12/01/19 20:28,"821 Madison St, Dallas, TX 75001" +300703,Apple Airpods Headphones,1,150,12/18/19 10:03,"810 Ridge St, San Francisco, CA 94016" +300704,Apple Airpods Headphones,1,150,12/30/19 17:45,"619 Lincoln St, New York City, NY 10001" +300704,Wired Headphones,1,11.99,12/30/19 17:45,"619 Lincoln St, New York City, NY 10001" +300705,27in FHD Monitor,1,149.99,12/28/19 23:59,"829 Meadow St, Austin, TX 73301" +300706,Bose SoundSport Headphones,1,99.99,12/09/19 14:49,"360 Johnson St, San Francisco, CA 94016" +300707,Bose SoundSport Headphones,1,99.99,12/21/19 12:03,"775 Elm St, Los Angeles, CA 90001" +300708,27in 4K Gaming Monitor,1,389.99,12/03/19 13:11,"517 North St, Los Angeles, CA 90001" +300709,USB-C Charging Cable,3,11.95,12/14/19 23:05,"808 North St, Dallas, TX 75001" +300710,Lightning Charging Cable,1,14.95,12/08/19 10:55,"717 Cherry St, San Francisco, CA 94016" +300711,Lightning Charging Cable,1,14.95,12/29/19 18:33,"979 Adams St, San Francisco, CA 94016" +300712,Lightning Charging Cable,1,14.95,12/30/19 11:29,"365 Jackson St, Los Angeles, CA 90001" +300713,USB-C Charging Cable,1,11.95,12/04/19 23:56,"94 Adams St, Los Angeles, CA 90001" +300714,USB-C Charging Cable,1,11.95,12/03/19 11:06,"374 Lakeview St, Austin, TX 73301" +300715,AA Batteries (4-pack),1,3.84,12/06/19 17:14,"364 Jackson St, San Francisco, CA 94016" +300716,Vareebadd Phone,1,400,12/23/19 11:06,"251 Cedar St, Los Angeles, CA 90001" +300717,Bose SoundSport Headphones,1,99.99,12/17/19 12:59,"919 Hill St, San Francisco, CA 94016" +300718,Wired Headphones,1,11.99,12/07/19 15:28,"413 1st St, Los Angeles, CA 90001" +300719,AAA Batteries (4-pack),1,2.99,12/10/19 19:26,"557 Wilson St, San Francisco, CA 94016" +300720,Bose SoundSport Headphones,1,99.99,12/14/19 13:55,"157 Lincoln St, Portland, OR 97035" +300721,AA Batteries (4-pack),1,3.84,12/04/19 09:08,"119 Sunset St, New York City, NY 10001" +300722,Wired Headphones,1,11.99,12/20/19 10:51,"51 Church St, Dallas, TX 75001" +300723,Macbook Pro Laptop,1,1700,12/31/19 16:18,"52 Walnut St, San Francisco, CA 94016" +300724,27in 4K Gaming Monitor,1,389.99,12/02/19 01:28,"778 4th St, San Francisco, CA 94016" +300725,Lightning Charging Cable,1,14.95,01/01/20 00:27,"480 12th St, San Francisco, CA 94016" +300726,AAA Batteries (4-pack),1,2.99,12/09/19 18:54,"791 Ridge St, Boston, MA 02215" +300727,Lightning Charging Cable,1,14.95,12/23/19 23:20,"981 Jefferson St, Seattle, WA 98101" +300728,Lightning Charging Cable,1,14.95,12/20/19 17:41,"963 Spruce St, San Francisco, CA 94016" +300729,iPhone,1,700,12/19/19 20:10,"604 Spruce St, Atlanta, GA 30301" +300729,Lightning Charging Cable,1,14.95,12/19/19 20:10,"604 Spruce St, Atlanta, GA 30301" +300730,Lightning Charging Cable,1,14.95,12/20/19 18:01,"717 13th St, Los Angeles, CA 90001" +300731,AA Batteries (4-pack),2,3.84,12/29/19 19:41,"741 Hill St, New York City, NY 10001" +300732,USB-C Charging Cable,1,11.95,12/06/19 08:35,"461 11th St, San Francisco, CA 94016" +300733,iPhone,1,700,12/13/19 20:56,"361 Lincoln St, Los Angeles, CA 90001" +300733,Lightning Charging Cable,2,14.95,12/13/19 20:56,"361 Lincoln St, Los Angeles, CA 90001" +300734,AA Batteries (4-pack),1,3.84,12/16/19 15:22,"107 Main St, Los Angeles, CA 90001" +300735,27in 4K Gaming Monitor,1,389.99,12/27/19 08:51,"192 Pine St, Atlanta, GA 30301" +300736,Bose SoundSport Headphones,1,99.99,12/12/19 20:29,"49 8th St, Portland, OR 97035" +300737,Lightning Charging Cable,1,14.95,12/01/19 19:54,"891 Forest St, Los Angeles, CA 90001" +300738,iPhone,1,700,12/09/19 16:27,"85 Washington St, Seattle, WA 98101" +300739,Google Phone,1,600,12/12/19 19:19,"114 Adams St, Los Angeles, CA 90001" +300740,AAA Batteries (4-pack),1,2.99,12/03/19 14:51,"660 11th St, Atlanta, GA 30301" +300741,ThinkPad Laptop,1,999.99,12/09/19 15:20,"848 Lakeview St, New York City, NY 10001" +300742,Wired Headphones,2,11.99,12/27/19 08:38,"630 Johnson St, Los Angeles, CA 90001" +300743,AAA Batteries (4-pack),1,2.99,12/11/19 11:15,"304 Hill St, Los Angeles, CA 90001" +300744,Bose SoundSport Headphones,1,99.99,12/01/19 19:40,"684 12th St, San Francisco, CA 94016" +300745,AA Batteries (4-pack),1,3.84,12/29/19 07:30,"715 Maple St, Atlanta, GA 30301" +300746,AAA Batteries (4-pack),1,2.99,12/13/19 08:18,"313 Center St, San Francisco, CA 94016" +300747,Lightning Charging Cable,1,14.95,12/25/19 19:19,"130 12th St, San Francisco, CA 94016" +300748,Bose SoundSport Headphones,1,99.99,12/05/19 17:34,"21 Willow St, Portland, OR 97035" +300749,27in FHD Monitor,2,149.99,12/16/19 21:17,"404 Johnson St, New York City, NY 10001" +300750,AA Batteries (4-pack),1,3.84,12/20/19 07:14,"948 Dogwood St, Portland, OR 97035" +300751,Apple Airpods Headphones,1,150,12/09/19 11:00,"521 Walnut St, Los Angeles, CA 90001" +300751,Lightning Charging Cable,1,14.95,12/09/19 11:00,"521 Walnut St, Los Angeles, CA 90001" +300752,Lightning Charging Cable,1,14.95,12/27/19 11:38,"124 Dogwood St, San Francisco, CA 94016" +300753,USB-C Charging Cable,1,11.95,12/24/19 18:41,"720 Johnson St, San Francisco, CA 94016" +300754,AA Batteries (4-pack),1,3.84,12/24/19 22:14,"347 Lakeview St, New York City, NY 10001" +300755,27in FHD Monitor,1,149.99,12/01/19 13:19,"284 11th St, San Francisco, CA 94016" +300756,AA Batteries (4-pack),1,3.84,12/17/19 20:20,"584 Walnut St, Boston, MA 02215" +300757,Bose SoundSport Headphones,1,99.99,12/03/19 21:54,"875 2nd St, Dallas, TX 75001" +300758,27in 4K Gaming Monitor,1,389.99,12/06/19 08:25,"219 Lincoln St, Dallas, TX 75001" +300759,AA Batteries (4-pack),1,3.84,12/01/19 13:46,"670 2nd St, Dallas, TX 75001" +300760,Google Phone,1,600,12/21/19 20:18,"916 Lincoln St, New York City, NY 10001" +300760,USB-C Charging Cable,2,11.95,12/21/19 20:18,"916 Lincoln St, New York City, NY 10001" +300761,Lightning Charging Cable,1,14.95,12/15/19 16:14,"369 Spruce St, Boston, MA 02215" +300762,AA Batteries (4-pack),1,3.84,12/12/19 09:39,"442 Spruce St, Dallas, TX 75001" +300763,Bose SoundSport Headphones,1,99.99,12/30/19 23:19,"870 Jefferson St, San Francisco, CA 94016" +300764,34in Ultrawide Monitor,1,379.99,12/25/19 22:20,"319 Lake St, San Francisco, CA 94016" +300765,27in FHD Monitor,1,149.99,12/02/19 22:45,"962 Jackson St, San Francisco, CA 94016" +300766,Bose SoundSport Headphones,1,99.99,12/11/19 21:56,"724 Cedar St, Austin, TX 73301" +300767,AA Batteries (4-pack),2,3.84,12/15/19 03:31,"16 5th St, Atlanta, GA 30301" +300768,Apple Airpods Headphones,1,150,12/01/19 22:31,"89 8th St, Los Angeles, CA 90001" +300769,Bose SoundSport Headphones,1,99.99,12/19/19 14:16,"46 Church St, Los Angeles, CA 90001" +300770,iPhone,1,700,12/15/19 21:27,"190 South St, San Francisco, CA 94016" +300770,Wired Headphones,1,11.99,12/15/19 21:27,"190 South St, San Francisco, CA 94016" +300771,USB-C Charging Cable,1,11.95,12/01/19 14:24,"771 Willow St, New York City, NY 10001" +300772,Apple Airpods Headphones,1,150,12/05/19 18:59,"356 7th St, San Francisco, CA 94016" +300773,34in Ultrawide Monitor,1,379.99,12/01/19 16:21,"390 Maple St, Atlanta, GA 30301" +300774,iPhone,1,700,12/15/19 20:29,"895 8th St, Seattle, WA 98101" +300775,iPhone,1,700,12/06/19 17:39,"220 1st St, Atlanta, GA 30301" +300776,34in Ultrawide Monitor,1,379.99,12/08/19 13:34,"51 Washington St, Seattle, WA 98101" +300777,Bose SoundSport Headphones,1,99.99,12/17/19 15:45,"133 11th St, Los Angeles, CA 90001" +300778,Lightning Charging Cable,1,14.95,12/19/19 13:33,"839 7th St, Portland, OR 97035" +300779,AAA Batteries (4-pack),4,2.99,12/25/19 12:22,"155 Hickory St, San Francisco, CA 94016" +300780,AA Batteries (4-pack),1,3.84,12/22/19 01:03,"993 Wilson St, Los Angeles, CA 90001" +300781,20in Monitor,1,109.99,12/06/19 15:00,"798 River St, Los Angeles, CA 90001" +300782,Wired Headphones,1,11.99,12/25/19 07:07,"736 8th St, Boston, MA 02215" +300783,Macbook Pro Laptop,1,1700,12/17/19 16:36,"304 6th St, Dallas, TX 75001" +300784,Wired Headphones,1,11.99,12/12/19 13:56,"179 West St, Boston, MA 02215" +300785,USB-C Charging Cable,1,11.95,12/28/19 17:30,"245 Ridge St, Seattle, WA 98101" +300786,Lightning Charging Cable,2,14.95,12/22/19 20:47,"933 Spruce St, San Francisco, CA 94016" +300787,iPhone,1,700,12/09/19 13:22,"727 River St, New York City, NY 10001" +300788,Apple Airpods Headphones,1,150,12/31/19 17:45,"980 Chestnut St, Los Angeles, CA 90001" +300789,Vareebadd Phone,1,400,12/03/19 12:07,"664 Madison St, Seattle, WA 98101" +300789,USB-C Charging Cable,1,11.95,12/03/19 12:07,"664 Madison St, Seattle, WA 98101" +300790,34in Ultrawide Monitor,1,379.99,12/22/19 20:54,"255 Hill St, San Francisco, CA 94016" +300791,Macbook Pro Laptop,1,1700,12/18/19 16:59,"908 13th St, Austin, TX 73301" +300792,AA Batteries (4-pack),1,3.84,12/22/19 20:31,"709 Maple St, Boston, MA 02215" +300793,Lightning Charging Cable,1,14.95,12/03/19 12:22,"551 Highland St, Los Angeles, CA 90001" +300794,Flatscreen TV,1,300,12/31/19 17:07,"480 Hill St, San Francisco, CA 94016" +300795,Bose SoundSport Headphones,1,99.99,12/28/19 15:55,"907 1st St, San Francisco, CA 94016" +300796,AA Batteries (4-pack),4,3.84,12/19/19 19:38,"471 Lincoln St, Seattle, WA 98101" +300797,USB-C Charging Cable,1,11.95,12/23/19 11:50,"925 North St, Atlanta, GA 30301" +300798,Google Phone,1,600,12/30/19 13:10,"148 Washington St, San Francisco, CA 94016" +300799,Lightning Charging Cable,1,14.95,12/07/19 06:06,"448 10th St, New York City, NY 10001" +300800,USB-C Charging Cable,1,11.95,12/03/19 19:54,"303 8th St, Austin, TX 73301" +300801,Google Phone,1,600,12/06/19 10:51,"52 Cherry St, Boston, MA 02215" +300802,Google Phone,1,600,12/01/19 20:51,"344 Hickory St, New York City, NY 10001" +300803,27in FHD Monitor,1,149.99,12/03/19 00:14,"870 Main St, San Francisco, CA 94016" +300804,Apple Airpods Headphones,1,150,12/01/19 11:36,"565 Maple St, Los Angeles, CA 90001" +300805,ThinkPad Laptop,1,999.99,12/28/19 18:06,"661 Maple St, New York City, NY 10001" +300806,Lightning Charging Cable,1,14.95,12/22/19 15:01,"23 6th St, Los Angeles, CA 90001" +300807,USB-C Charging Cable,1,11.95,12/12/19 21:48,"263 7th St, New York City, NY 10001" +300808,AAA Batteries (4-pack),1,2.99,12/23/19 09:37,"893 Lakeview St, San Francisco, CA 94016" +300809,Lightning Charging Cable,1,14.95,12/28/19 15:38,"180 Center St, Atlanta, GA 30301" +300810,AAA Batteries (4-pack),2,2.99,12/29/19 22:43,"833 12th St, Boston, MA 02215" +300811,Bose SoundSport Headphones,1,99.99,12/01/19 13:13,"954 7th St, Seattle, WA 98101" +300812,AAA Batteries (4-pack),3,2.99,12/21/19 19:13,"267 West St, Los Angeles, CA 90001" +300813,Google Phone,1,600,12/03/19 17:50,"311 Meadow St, San Francisco, CA 94016" +300814,iPhone,1,700,12/25/19 00:43,"487 Cedar St, Austin, TX 73301" +300814,Apple Airpods Headphones,1,150,12/25/19 00:43,"487 Cedar St, Austin, TX 73301" +300815,iPhone,1,700,12/18/19 11:50,"655 14th St, Dallas, TX 75001" +300816,27in FHD Monitor,1,149.99,12/20/19 02:20,"821 West St, Dallas, TX 75001" +300817,Wired Headphones,1,11.99,12/01/19 21:08,"477 Highland St, Atlanta, GA 30301" +300818,AAA Batteries (4-pack),1,2.99,12/03/19 18:52,"162 Adams St, New York City, NY 10001" +300819,Wired Headphones,1,11.99,12/15/19 18:02,"257 10th St, Atlanta, GA 30301" +300820,AAA Batteries (4-pack),2,2.99,12/20/19 19:23,"761 2nd St, Boston, MA 02215" +300821,AA Batteries (4-pack),1,3.84,12/02/19 17:49,"211 Willow St, New York City, NY 10001" +300822,Bose SoundSport Headphones,1,99.99,12/28/19 14:59,"531 4th St, San Francisco, CA 94016" +300823,Wired Headphones,1,11.99,12/04/19 14:39,"50 11th St, Dallas, TX 75001" +300824,Apple Airpods Headphones,1,150,12/19/19 19:38,"387 4th St, Atlanta, GA 30301" +300825,Macbook Pro Laptop,1,1700,12/31/19 05:59,"637 Forest St, San Francisco, CA 94016" +300826,Lightning Charging Cable,2,14.95,12/19/19 13:05,"763 Cherry St, Los Angeles, CA 90001" +300827,Bose SoundSport Headphones,1,99.99,12/23/19 23:06,"175 Cedar St, San Francisco, CA 94016" +300828,AA Batteries (4-pack),2,3.84,12/20/19 09:52,"805 South St, Los Angeles, CA 90001" +300829,AAA Batteries (4-pack),4,2.99,12/07/19 17:26,"921 Lakeview St, Los Angeles, CA 90001" +300830,Vareebadd Phone,1,400,12/31/19 19:06,"71 13th St, Austin, TX 73301" +300831,27in FHD Monitor,1,149.99,12/28/19 21:09,"803 Elm St, Boston, MA 02215" +300832,20in Monitor,1,109.99,12/14/19 00:29,"142 River St, San Francisco, CA 94016" +300833,27in FHD Monitor,1,149.99,12/04/19 20:29,"299 Lakeview St, San Francisco, CA 94016" +300834,AA Batteries (4-pack),1,3.84,12/13/19 20:21,"695 Madison St, Los Angeles, CA 90001" +300835,Macbook Pro Laptop,1,1700,12/27/19 09:58,"966 Ridge St, Dallas, TX 75001" +300836,AAA Batteries (4-pack),1,2.99,12/31/19 10:43,"846 8th St, Dallas, TX 75001" +300837,AAA Batteries (4-pack),1,2.99,12/07/19 17:37,"552 Park St, Austin, TX 73301" +300838,Lightning Charging Cable,2,14.95,12/20/19 08:37,"913 Meadow St, San Francisco, CA 94016" +300839,iPhone,1,700,12/28/19 17:10,"47 Forest St, Portland, OR 97035" +300840,Apple Airpods Headphones,1,150,12/02/19 19:23,"587 Hill St, New York City, NY 10001" +300841,USB-C Charging Cable,1,11.95,12/10/19 12:47,"886 Jackson St, Atlanta, GA 30301" +300842,34in Ultrawide Monitor,1,379.99,12/07/19 23:11,"510 South St, Los Angeles, CA 90001" +300843,Google Phone,1,600,12/30/19 17:13,"838 6th St, San Francisco, CA 94016" +300844,Apple Airpods Headphones,1,150,12/03/19 20:47,"516 Hickory St, New York City, NY 10001" +300845,USB-C Charging Cable,2,11.95,12/07/19 10:01,"806 Church St, Austin, TX 73301" +300846,Lightning Charging Cable,1,14.95,12/20/19 07:56,"775 12th St, Los Angeles, CA 90001" +300847,AAA Batteries (4-pack),2,2.99,12/14/19 21:47,"361 Chestnut St, Los Angeles, CA 90001" +300848,AAA Batteries (4-pack),2,2.99,12/12/19 06:09,"709 14th St, Seattle, WA 98101" +300849,Flatscreen TV,1,300,12/04/19 21:56,"603 Spruce St, San Francisco, CA 94016" +300850,AAA Batteries (4-pack),1,2.99,12/01/19 16:09,"705 12th St, Seattle, WA 98101" +300851,Wired Headphones,1,11.99,12/23/19 00:44,"399 Jefferson St, Los Angeles, CA 90001" +300852,iPhone,1,700,12/04/19 15:33,"317 North St, New York City, NY 10001" +300853,20in Monitor,1,109.99,12/06/19 11:59,"33 Cherry St, San Francisco, CA 94016" +300854,Wired Headphones,1,11.99,12/22/19 11:58,"26 Park St, Atlanta, GA 30301" +300855,AAA Batteries (4-pack),1,2.99,12/13/19 13:23,"523 South St, Los Angeles, CA 90001" +300856,27in 4K Gaming Monitor,1,389.99,12/20/19 12:18,"481 5th St, Boston, MA 02215" +300857,USB-C Charging Cable,1,11.95,12/23/19 20:21,"233 Elm St, Los Angeles, CA 90001" +300858,Flatscreen TV,1,300,12/10/19 09:46,"132 5th St, San Francisco, CA 94016" +300859,Vareebadd Phone,1,400,12/07/19 15:27,"826 Adams St, New York City, NY 10001" +300859,USB-C Charging Cable,1,11.95,12/07/19 15:27,"826 Adams St, New York City, NY 10001" +300860,Wired Headphones,1,11.99,12/08/19 09:09,"234 North St, San Francisco, CA 94016" +300861,AA Batteries (4-pack),1,3.84,12/20/19 15:11,"400 10th St, Boston, MA 02215" +300862,Wired Headphones,1,11.99,12/24/19 14:46,"336 South St, Dallas, TX 75001" +300863,Lightning Charging Cable,1,14.95,12/31/19 08:07,"215 11th St, San Francisco, CA 94016" +300864,Bose SoundSport Headphones,1,99.99,12/05/19 22:57,"800 Adams St, Portland, ME 04101" +300865,Lightning Charging Cable,2,14.95,12/05/19 20:38,"302 2nd St, San Francisco, CA 94016" +300866,iPhone,1,700,12/27/19 18:57,"365 Madison St, San Francisco, CA 94016" +300867,AAA Batteries (4-pack),2,2.99,12/08/19 18:46,"135 North St, San Francisco, CA 94016" +300868,Wired Headphones,1,11.99,12/22/19 23:53,"24 Hickory St, Portland, ME 04101" +300869,Wired Headphones,1,11.99,12/02/19 11:26,"232 Lincoln St, San Francisco, CA 94016" +300870,AAA Batteries (4-pack),1,2.99,12/03/19 20:58,"599 Cherry St, Los Angeles, CA 90001" +300871,AAA Batteries (4-pack),1,2.99,12/11/19 11:32,"429 Madison St, Los Angeles, CA 90001" +300872,Bose SoundSport Headphones,1,99.99,12/10/19 11:16,"86 Park St, Austin, TX 73301" +300873,AA Batteries (4-pack),1,3.84,12/12/19 21:29,"158 Jefferson St, Los Angeles, CA 90001" +300874,27in FHD Monitor,1,149.99,12/02/19 15:20,"476 Cherry St, Los Angeles, CA 90001" +300875,Wired Headphones,1,11.99,12/29/19 17:05,"336 Elm St, New York City, NY 10001" +300876,Wired Headphones,1,11.99,12/16/19 13:55,"294 5th St, Dallas, TX 75001" +300877,AAA Batteries (4-pack),2,2.99,12/02/19 15:42,"98 Cedar St, Seattle, WA 98101" +300878,Lightning Charging Cable,1,14.95,12/09/19 18:00,"368 2nd St, New York City, NY 10001" +300879,Flatscreen TV,1,300,12/16/19 23:28,"569 6th St, Los Angeles, CA 90001" +300880,Apple Airpods Headphones,1,150,12/11/19 16:27,"490 13th St, Austin, TX 73301" +300881,27in FHD Monitor,1,149.99,12/05/19 23:10,"763 Church St, San Francisco, CA 94016" +300882,Macbook Pro Laptop,1,1700,12/01/19 14:33,"1 Lincoln St, Boston, MA 02215" +300883,AAA Batteries (4-pack),1,2.99,12/24/19 20:08,"784 Church St, Los Angeles, CA 90001" +300884,Apple Airpods Headphones,1,150,12/31/19 22:27,"419 Sunset St, Seattle, WA 98101" +300885,USB-C Charging Cable,1,11.95,12/25/19 08:55,"742 Pine St, New York City, NY 10001" +300886,Lightning Charging Cable,1,14.95,12/15/19 10:35,"759 Adams St, Portland, OR 97035" +300887,AAA Batteries (4-pack),1,2.99,12/02/19 11:17,"841 13th St, Austin, TX 73301" +300888,Lightning Charging Cable,1,14.95,12/12/19 23:12,"286 Adams St, Los Angeles, CA 90001" +300889,Wired Headphones,1,11.99,12/29/19 10:19,"460 Johnson St, New York City, NY 10001" +300890,Wired Headphones,1,11.99,12/19/19 07:50,"918 Meadow St, Atlanta, GA 30301" +300891,AA Batteries (4-pack),1,3.84,12/29/19 10:50,"351 Madison St, Dallas, TX 75001" +300892,AAA Batteries (4-pack),1,2.99,12/18/19 13:19,"346 Johnson St, San Francisco, CA 94016" +300893,AAA Batteries (4-pack),1,2.99,12/28/19 10:50,"478 Elm St, New York City, NY 10001" +300894,27in 4K Gaming Monitor,1,389.99,12/16/19 08:32,"985 Elm St, San Francisco, CA 94016" +300895,USB-C Charging Cable,1,11.95,12/22/19 17:45,"723 Church St, Boston, MA 02215" +300896,Lightning Charging Cable,1,14.95,12/02/19 18:18,"710 12th St, New York City, NY 10001" +300897,Apple Airpods Headphones,1,150,12/15/19 23:08,"486 Main St, Boston, MA 02215" +300898,Lightning Charging Cable,1,14.95,12/19/19 15:31,"124 Maple St, Austin, TX 73301" +300899,AA Batteries (4-pack),2,3.84,12/06/19 21:18,"324 Walnut St, Austin, TX 73301" +300900,Wired Headphones,2,11.99,12/08/19 10:55,"39 Elm St, San Francisco, CA 94016" +300901,Lightning Charging Cable,1,14.95,12/21/19 19:49,"100 5th St, New York City, NY 10001" +300902,USB-C Charging Cable,1,11.95,12/16/19 16:39,"382 7th St, Portland, OR 97035" +300903,Wired Headphones,1,11.99,12/25/19 22:11,"879 Adams St, San Francisco, CA 94016" +300904,USB-C Charging Cable,1,11.95,12/25/19 13:53,"697 Meadow St, San Francisco, CA 94016" +300905,Lightning Charging Cable,1,14.95,12/05/19 11:06,"616 Highland St, San Francisco, CA 94016" +300906,AAA Batteries (4-pack),1,2.99,12/27/19 19:06,"480 6th St, San Francisco, CA 94016" +300907,AA Batteries (4-pack),2,3.84,12/21/19 17:51,"219 Lake St, Boston, MA 02215" +300908,AAA Batteries (4-pack),1,2.99,12/08/19 14:11,"360 Lakeview St, Boston, MA 02215" +300909,Bose SoundSport Headphones,1,99.99,12/19/19 14:09,"23 Meadow St, Atlanta, GA 30301" +300910,AA Batteries (4-pack),1,3.84,12/21/19 10:20,"488 14th St, San Francisco, CA 94016" +300911,27in FHD Monitor,1,149.99,12/11/19 07:44,"944 Hickory St, San Francisco, CA 94016" +300912,Bose SoundSport Headphones,1,99.99,12/18/19 15:11,"851 Washington St, Atlanta, GA 30301" +300913,27in 4K Gaming Monitor,1,389.99,12/27/19 14:09,"581 11th St, San Francisco, CA 94016" +300914,Lightning Charging Cable,1,14.95,12/23/19 19:58,"721 Elm St, San Francisco, CA 94016" +300915,Lightning Charging Cable,1,14.95,12/03/19 15:36,"261 South St, Atlanta, GA 30301" +300916,Wired Headphones,1,11.99,12/24/19 12:45,"166 Elm St, Boston, MA 02215" +300917,Apple Airpods Headphones,1,150,12/20/19 00:57,"870 Park St, San Francisco, CA 94016" +300918,AAA Batteries (4-pack),1,2.99,12/21/19 14:29,"892 Lake St, Dallas, TX 75001" +300919,AAA Batteries (4-pack),1,2.99,12/24/19 20:04,"885 Wilson St, Atlanta, GA 30301" +300920,USB-C Charging Cable,1,11.95,12/31/19 13:04,"149 Park St, San Francisco, CA 94016" +300921,Lightning Charging Cable,1,14.95,12/06/19 14:01,"379 Pine St, San Francisco, CA 94016" +300922,Bose SoundSport Headphones,1,99.99,12/14/19 22:42,"291 Adams St, New York City, NY 10001" +300923,27in 4K Gaming Monitor,1,389.99,12/02/19 22:01,"658 Jackson St, Boston, MA 02215" +300924,Lightning Charging Cable,1,14.95,12/09/19 12:13,"405 Meadow St, New York City, NY 10001" +300925,Wired Headphones,1,11.99,12/08/19 13:31,"354 Main St, New York City, NY 10001" +300926,Wired Headphones,1,11.99,12/15/19 18:08,"805 Hickory St, Boston, MA 02215" +300927,Macbook Pro Laptop,1,1700,12/22/19 12:40,"271 13th St, San Francisco, CA 94016" +300928,Google Phone,1,600,12/29/19 06:05,"127 Elm St, Los Angeles, CA 90001" +300928,Bose SoundSport Headphones,1,99.99,12/29/19 06:05,"127 Elm St, Los Angeles, CA 90001" +300929,27in FHD Monitor,1,149.99,12/28/19 18:03,"745 13th St, Los Angeles, CA 90001" +300930,AAA Batteries (4-pack),2,2.99,12/21/19 02:33,"308 6th St, New York City, NY 10001" +300931,AA Batteries (4-pack),1,3.84,12/23/19 18:54,"581 1st St, Boston, MA 02215" +300932,27in FHD Monitor,1,149.99,12/17/19 15:15,"382 North St, New York City, NY 10001" +300933,AA Batteries (4-pack),1,3.84,12/25/19 18:13,"425 Cedar St, San Francisco, CA 94016" +300934,Lightning Charging Cable,1,14.95,12/20/19 08:47,"485 Dogwood St, San Francisco, CA 94016" +300935,Bose SoundSport Headphones,1,99.99,12/17/19 12:13,"449 Lincoln St, San Francisco, CA 94016" +300936,Bose SoundSport Headphones,1,99.99,12/18/19 16:42,"486 River St, San Francisco, CA 94016" +300937,Lightning Charging Cable,1,14.95,12/14/19 12:18,"208 Sunset St, San Francisco, CA 94016" +300938,Flatscreen TV,1,300,12/06/19 18:41,"472 2nd St, Boston, MA 02215" +300939,Lightning Charging Cable,1,14.95,12/22/19 20:01,"570 2nd St, San Francisco, CA 94016" +300940,Wired Headphones,1,11.99,12/31/19 19:07,"508 Lakeview St, Portland, OR 97035" +300941,Lightning Charging Cable,1,14.95,12/05/19 07:23,"142 Dogwood St, Dallas, TX 75001" +300942,USB-C Charging Cable,1,11.95,12/01/19 17:05,"485 Church St, Boston, MA 02215" +300943,27in FHD Monitor,1,149.99,12/28/19 12:42,"885 14th St, Dallas, TX 75001" +300944,Wired Headphones,1,11.99,12/07/19 15:15,"902 South St, New York City, NY 10001" +300945,AA Batteries (4-pack),1,3.84,12/15/19 09:24,"608 Lake St, Los Angeles, CA 90001" +300946,AA Batteries (4-pack),3,3.84,12/05/19 06:59,"388 Elm St, San Francisco, CA 94016" +300947,Apple Airpods Headphones,1,150,12/27/19 16:36,"542 10th St, Los Angeles, CA 90001" +300948,Lightning Charging Cable,1,14.95,12/02/19 10:34,"663 Jefferson St, New York City, NY 10001" +300949,AAA Batteries (4-pack),2,2.99,12/22/19 19:43,"101 Maple St, Los Angeles, CA 90001" +300950,Wired Headphones,1,11.99,12/15/19 13:02,"351 North St, Seattle, WA 98101" +300951,AAA Batteries (4-pack),1,2.99,12/22/19 11:35,"221 10th St, Atlanta, GA 30301" +300952,Google Phone,1,600,12/29/19 18:39,"251 Maple St, Los Angeles, CA 90001" +300953,AAA Batteries (4-pack),2,2.99,12/03/19 11:33,"382 Chestnut St, Los Angeles, CA 90001" +300954,Bose SoundSport Headphones,1,99.99,12/10/19 13:31,"29 Jefferson St, Boston, MA 02215" +300955,ThinkPad Laptop,1,999.99,12/31/19 11:08,"692 1st St, Portland, OR 97035" +300956,Macbook Pro Laptop,1,1700,12/17/19 08:54,"645 Washington St, Seattle, WA 98101" +300957,Macbook Pro Laptop,1,1700,12/03/19 17:21,"471 Highland St, San Francisco, CA 94016" +300958,USB-C Charging Cable,1,11.95,12/08/19 09:54,"495 Highland St, Seattle, WA 98101" +300959,AAA Batteries (4-pack),1,2.99,12/23/19 12:52,"379 Johnson St, San Francisco, CA 94016" +300960,AA Batteries (4-pack),1,3.84,12/25/19 21:23,"97 Church St, Los Angeles, CA 90001" +300960,Apple Airpods Headphones,1,150,12/25/19 21:23,"97 Church St, Los Angeles, CA 90001" +300961,Lightning Charging Cable,1,14.95,12/17/19 19:37,"696 7th St, Portland, OR 97035" +300962,Bose SoundSport Headphones,1,99.99,12/26/19 15:10,"870 Center St, Seattle, WA 98101" +300963,20in Monitor,1,109.99,12/25/19 20:35,"493 Jefferson St, San Francisco, CA 94016" +300964,Macbook Pro Laptop,1,1700,12/07/19 17:14,"188 2nd St, Dallas, TX 75001" +300965,Lightning Charging Cable,1,14.95,12/20/19 19:22,"998 Walnut St, Boston, MA 02215" +300966,AA Batteries (4-pack),1,3.84,12/31/19 20:20,"816 Cedar St, New York City, NY 10001" +300967,Wired Headphones,1,11.99,12/11/19 11:58,"708 7th St, New York City, NY 10001" +300968,Lightning Charging Cable,1,14.95,12/29/19 22:10,"465 1st St, Boston, MA 02215" +300969,AAA Batteries (4-pack),1,2.99,12/06/19 12:23,"898 1st St, Atlanta, GA 30301" +300970,USB-C Charging Cable,1,11.95,12/19/19 08:16,"158 Washington St, Dallas, TX 75001" +300971,AA Batteries (4-pack),1,3.84,12/29/19 14:25,"600 11th St, Portland, ME 04101" +300972,Lightning Charging Cable,1,14.95,12/14/19 15:09,"792 Elm St, Los Angeles, CA 90001" +300973,Google Phone,1,600,12/20/19 07:04,"459 Madison St, Portland, OR 97035" +300974,Lightning Charging Cable,1,14.95,12/06/19 23:19,"854 Maple St, San Francisco, CA 94016" +300975,AAA Batteries (4-pack),1,2.99,12/18/19 14:14,"274 9th St, San Francisco, CA 94016" +300976,Apple Airpods Headphones,1,150,12/31/19 17:28,"223 Jefferson St, Los Angeles, CA 90001" +300977,Macbook Pro Laptop,1,1700,12/17/19 06:38,"225 4th St, New York City, NY 10001" +300977,AA Batteries (4-pack),1,3.84,12/17/19 06:38,"225 4th St, New York City, NY 10001" +300978,Apple Airpods Headphones,1,150,12/25/19 07:10,"954 6th St, Los Angeles, CA 90001" +300979,AA Batteries (4-pack),1,3.84,12/28/19 19:30,"78 Maple St, New York City, NY 10001" +300980,AAA Batteries (4-pack),1,2.99,12/16/19 17:29,"41 8th St, Boston, MA 02215" +300981,USB-C Charging Cable,1,11.95,12/28/19 20:26,"864 North St, New York City, NY 10001" +300982,AAA Batteries (4-pack),2,2.99,12/18/19 18:28,"893 Jackson St, Seattle, WA 98101" +300983,Apple Airpods Headphones,1,150,12/18/19 07:04,"516 Meadow St, Los Angeles, CA 90001" +300984,Apple Airpods Headphones,1,150,12/20/19 22:03,"163 River St, Portland, OR 97035" +300985,34in Ultrawide Monitor,1,379.99,12/04/19 11:32,"326 8th St, Boston, MA 02215" +300986,Apple Airpods Headphones,2,150,12/07/19 21:31,"975 Washington St, Atlanta, GA 30301" +300987,USB-C Charging Cable,1,11.95,12/20/19 08:18,"85 South St, Dallas, TX 75001" +300988,AA Batteries (4-pack),3,3.84,12/27/19 10:15,"343 Lake St, Los Angeles, CA 90001" +300989,Lightning Charging Cable,1,14.95,12/11/19 09:40,"822 Johnson St, San Francisco, CA 94016" +300990,USB-C Charging Cable,1,11.95,12/09/19 00:30,"309 Sunset St, Los Angeles, CA 90001" +300991,Apple Airpods Headphones,1,150,12/24/19 14:20,"953 Jackson St, Seattle, WA 98101" +300992,iPhone,1,700,12/25/19 15:17,"526 West St, Seattle, WA 98101" +300993,Apple Airpods Headphones,1,150,12/08/19 23:04,"136 Lakeview St, Los Angeles, CA 90001" +300994,Lightning Charging Cable,1,14.95,12/12/19 20:26,"492 11th St, Los Angeles, CA 90001" +300995,AA Batteries (4-pack),2,3.84,12/20/19 18:00,"515 12th St, Los Angeles, CA 90001" +300996,USB-C Charging Cable,1,11.95,12/04/19 00:24,"173 8th St, Los Angeles, CA 90001" +300997,Wired Headphones,1,11.99,12/17/19 16:51,"892 Washington St, Boston, MA 02215" +300998,Vareebadd Phone,1,400,12/03/19 21:00,"631 Highland St, Atlanta, GA 30301" +300999,27in 4K Gaming Monitor,1,389.99,12/20/19 10:04,"900 Lakeview St, Austin, TX 73301" +301000,Apple Airpods Headphones,1,150,12/25/19 22:46,"271 Wilson St, Boston, MA 02215" +301001,Apple Airpods Headphones,1,150,12/10/19 08:54,"377 Walnut St, San Francisco, CA 94016" +301002,Apple Airpods Headphones,1,150,12/20/19 00:12,"284 7th St, New York City, NY 10001" +301003,USB-C Charging Cable,1,11.95,12/16/19 16:13,"398 8th St, San Francisco, CA 94016" +301004,34in Ultrawide Monitor,1,379.99,12/24/19 20:39,"136 7th St, San Francisco, CA 94016" +301005,27in 4K Gaming Monitor,1,389.99,12/30/19 21:50,"931 Wilson St, Dallas, TX 75001" +301005,Flatscreen TV,1,300,12/30/19 21:50,"931 Wilson St, Dallas, TX 75001" +301006,27in 4K Gaming Monitor,1,389.99,12/21/19 17:50,"733 12th St, Atlanta, GA 30301" +301007,Apple Airpods Headphones,1,150,12/01/19 22:32,"375 Adams St, New York City, NY 10001" +301008,Lightning Charging Cable,1,14.95,12/14/19 21:05,"951 Forest St, Boston, MA 02215" +301009,Wired Headphones,1,11.99,12/24/19 13:06,"321 Sunset St, San Francisco, CA 94016" +301010,AAA Batteries (4-pack),1,2.99,12/22/19 20:00,"625 Cedar St, New York City, NY 10001" +301011,Lightning Charging Cable,1,14.95,12/02/19 20:17,"363 Main St, San Francisco, CA 94016" +301012,USB-C Charging Cable,1,11.95,12/10/19 15:59,"391 Pine St, Los Angeles, CA 90001" +301013,AAA Batteries (4-pack),3,2.99,12/05/19 15:33,"790 Madison St, Atlanta, GA 30301" +301014,Lightning Charging Cable,1,14.95,12/08/19 12:16,"713 Forest St, New York City, NY 10001" +301015,Bose SoundSport Headphones,1,99.99,12/07/19 22:18,"115 2nd St, San Francisco, CA 94016" +301016,ThinkPad Laptop,1,999.99,12/28/19 17:35,"184 13th St, New York City, NY 10001" +301017,20in Monitor,1,109.99,12/04/19 14:22,"507 Maple St, Portland, ME 04101" +301018,AAA Batteries (4-pack),3,2.99,12/27/19 17:53,"653 Chestnut St, San Francisco, CA 94016" +301019,USB-C Charging Cable,1,11.95,12/23/19 13:55,"519 9th St, San Francisco, CA 94016" +301019,AAA Batteries (4-pack),2,2.99,12/23/19 13:55,"519 9th St, San Francisco, CA 94016" +301020,iPhone,1,700,12/31/19 03:43,"162 Walnut St, San Francisco, CA 94016" +301021,USB-C Charging Cable,1,11.95,12/15/19 07:11,"754 South St, New York City, NY 10001" +301022,AAA Batteries (4-pack),1,2.99,12/14/19 13:36,"586 Lincoln St, San Francisco, CA 94016" +301023,AAA Batteries (4-pack),1,2.99,12/18/19 00:28,"685 6th St, Los Angeles, CA 90001" +301024,Apple Airpods Headphones,1,150,12/05/19 09:34,"722 2nd St, San Francisco, CA 94016" +301025,Apple Airpods Headphones,1,150,12/11/19 17:24,"299 13th St, Atlanta, GA 30301" +301026,Lightning Charging Cable,1,14.95,12/14/19 17:11,"280 Wilson St, San Francisco, CA 94016" +301027,Bose SoundSport Headphones,1,99.99,12/22/19 18:38,"979 River St, Los Angeles, CA 90001" +301028,AAA Batteries (4-pack),2,2.99,12/04/19 16:45,"21 7th St, San Francisco, CA 94016" +301029,Wired Headphones,1,11.99,12/18/19 20:33,"152 Spruce St, New York City, NY 10001" +301030,AA Batteries (4-pack),1,3.84,12/16/19 10:15,"265 Adams St, New York City, NY 10001" +301031,USB-C Charging Cable,1,11.95,12/03/19 12:30,"479 Jackson St, Austin, TX 73301" +301031,ThinkPad Laptop,1,999.99,12/03/19 12:30,"479 Jackson St, Austin, TX 73301" +301032,Lightning Charging Cable,1,14.95,12/05/19 10:19,"932 Church St, Boston, MA 02215" +301033,USB-C Charging Cable,1,11.95,12/19/19 15:41,"315 Lincoln St, Atlanta, GA 30301" +301034,AAA Batteries (4-pack),1,2.99,12/25/19 11:46,"803 Church St, Los Angeles, CA 90001" +301035,Google Phone,1,600,12/19/19 10:50,"304 Wilson St, New York City, NY 10001" +301036,AA Batteries (4-pack),1,3.84,12/14/19 10:37,"586 Ridge St, Portland, OR 97035" +301037,Wired Headphones,1,11.99,12/07/19 08:33,"345 13th St, San Francisco, CA 94016" +301038,AA Batteries (4-pack),1,3.84,12/28/19 15:22,"534 Walnut St, Seattle, WA 98101" +301039,Apple Airpods Headphones,1,150,12/04/19 14:19,"70 Willow St, San Francisco, CA 94016" +301040,Bose SoundSport Headphones,1,99.99,12/21/19 23:47,"243 Cherry St, Seattle, WA 98101" +301041,Bose SoundSport Headphones,1,99.99,12/11/19 22:44,"891 Lincoln St, San Francisco, CA 94016" +301042,AA Batteries (4-pack),1,3.84,12/06/19 19:03,"906 North St, New York City, NY 10001" +301043,27in 4K Gaming Monitor,1,389.99,12/08/19 10:46,"613 Lakeview St, Boston, MA 02215" +301044,Macbook Pro Laptop,1,1700,12/30/19 09:29,"880 Park St, Los Angeles, CA 90001" +301045,Apple Airpods Headphones,1,150,12/02/19 18:58,"682 Lincoln St, Atlanta, GA 30301" +301046,AAA Batteries (4-pack),2,2.99,12/24/19 19:33,"933 5th St, New York City, NY 10001" +301047,Wired Headphones,1,11.99,12/31/19 20:35,"663 10th St, Seattle, WA 98101" +301048,Bose SoundSport Headphones,1,99.99,12/11/19 12:13,"487 Elm St, San Francisco, CA 94016" +301049,Apple Airpods Headphones,1,150,12/01/19 18:25,"405 1st St, Los Angeles, CA 90001" +301050,AA Batteries (4-pack),1,3.84,12/04/19 18:56,"110 14th St, San Francisco, CA 94016" +301051,AAA Batteries (4-pack),3,2.99,12/22/19 15:33,"128 6th St, Los Angeles, CA 90001" +301052,20in Monitor,1,109.99,12/05/19 15:12,"27 Maple St, Atlanta, GA 30301" +301053,iPhone,1,700,12/27/19 14:11,"857 Meadow St, New York City, NY 10001" +301053,Lightning Charging Cable,1,14.95,12/27/19 14:11,"857 Meadow St, New York City, NY 10001" +301054,iPhone,1,700,12/01/19 15:23,"756 Lake St, Boston, MA 02215" +301055,Bose SoundSport Headphones,1,99.99,12/09/19 13:33,"507 Ridge St, Austin, TX 73301" +301056,34in Ultrawide Monitor,1,379.99,12/24/19 10:01,"842 1st St, Portland, OR 97035" +301057,Lightning Charging Cable,1,14.95,12/24/19 09:50,"76 Adams St, Dallas, TX 75001" +301058,Wired Headphones,1,11.99,12/16/19 20:47,"176 Lincoln St, New York City, NY 10001" +301059,Wired Headphones,1,11.99,12/29/19 14:24,"364 Ridge St, Boston, MA 02215" +301060,USB-C Charging Cable,1,11.95,12/24/19 18:31,"518 11th St, San Francisco, CA 94016" +301061,Lightning Charging Cable,1,14.95,12/25/19 22:34,"669 Spruce St, San Francisco, CA 94016" +301062,USB-C Charging Cable,1,11.95,12/28/19 16:26,"595 Hickory St, Austin, TX 73301" +301063,Bose SoundSport Headphones,1,99.99,12/17/19 20:23,"131 Meadow St, Seattle, WA 98101" +301064,AA Batteries (4-pack),1,3.84,12/21/19 19:51,"999 Pine St, Boston, MA 02215" +301065,Wired Headphones,1,11.99,12/27/19 03:53,"797 1st St, San Francisco, CA 94016" +301066,Lightning Charging Cable,2,14.95,12/28/19 12:50,"593 North St, Los Angeles, CA 90001" +301067,AA Batteries (4-pack),1,3.84,12/12/19 12:18,"959 Jefferson St, Los Angeles, CA 90001" +301068,AA Batteries (4-pack),1,3.84,12/15/19 21:53,"567 10th St, Boston, MA 02215" +301069,AA Batteries (4-pack),1,3.84,12/08/19 18:58,"413 Madison St, Los Angeles, CA 90001" +301070,Apple Airpods Headphones,1,150,12/30/19 18:14,"66 Hickory St, Los Angeles, CA 90001" +301071,USB-C Charging Cable,1,11.95,12/02/19 14:51,"968 5th St, Boston, MA 02215" +301072,ThinkPad Laptop,1,999.99,12/21/19 20:54,"71 Madison St, Boston, MA 02215" +301073,LG Dryer,1,600.0,12/29/19 12:22,"750 Highland St, Seattle, WA 98101" +301074,AA Batteries (4-pack),2,3.84,12/01/19 16:43,"563 4th St, Seattle, WA 98101" +301075,USB-C Charging Cable,1,11.95,12/06/19 14:51,"956 Elm St, San Francisco, CA 94016" +301076,27in 4K Gaming Monitor,1,389.99,12/06/19 00:03,"364 Adams St, New York City, NY 10001" +301077,Lightning Charging Cable,1,14.95,12/14/19 10:05,"640 Hill St, Dallas, TX 75001" +301078,27in 4K Gaming Monitor,1,389.99,12/30/19 08:12,"589 Pine St, Los Angeles, CA 90001" +301079,AA Batteries (4-pack),1,3.84,12/31/19 19:23,"755 9th St, Atlanta, GA 30301" +301080,iPhone,1,700,12/27/19 00:38,"751 13th St, Atlanta, GA 30301" +301081,AA Batteries (4-pack),2,3.84,12/31/19 17:49,"657 Sunset St, Seattle, WA 98101" +301082,AAA Batteries (4-pack),3,2.99,12/28/19 22:40,"618 Lake St, Seattle, WA 98101" +301083,Lightning Charging Cable,1,14.95,12/31/19 03:41,"596 5th St, Portland, OR 97035" +301084,Google Phone,1,600,12/07/19 19:02,"445 Cherry St, Seattle, WA 98101" +301085,Lightning Charging Cable,1,14.95,12/24/19 20:23,"91 12th St, San Francisco, CA 94016" +301086,34in Ultrawide Monitor,1,379.99,12/23/19 17:12,"916 Jackson St, San Francisco, CA 94016" +301087,AA Batteries (4-pack),1,3.84,12/29/19 19:03,"200 Jefferson St, Seattle, WA 98101" +301088,Bose SoundSport Headphones,1,99.99,12/18/19 21:41,"131 Johnson St, New York City, NY 10001" +301089,ThinkPad Laptop,1,999.99,12/16/19 23:04,"132 Main St, Portland, ME 04101" +301090,AAA Batteries (4-pack),1,2.99,12/07/19 16:54,"183 Madison St, San Francisco, CA 94016" +301091,Wired Headphones,1,11.99,12/06/19 17:52,"863 North St, San Francisco, CA 94016" +301092,AAA Batteries (4-pack),4,2.99,12/06/19 12:40,"167 4th St, Boston, MA 02215" +301093,Apple Airpods Headphones,1,150,12/11/19 20:50,"3 Maple St, San Francisco, CA 94016" +301094,USB-C Charging Cable,1,11.95,12/08/19 10:08,"794 Meadow St, Los Angeles, CA 90001" +301095,Macbook Pro Laptop,1,1700,12/19/19 09:04,"50 Lakeview St, Seattle, WA 98101" +301096,AA Batteries (4-pack),1,3.84,12/16/19 19:43,"390 Pine St, New York City, NY 10001" +301097,Lightning Charging Cable,1,14.95,12/24/19 13:26,"513 Jefferson St, Atlanta, GA 30301" +301098,Flatscreen TV,1,300,12/31/19 19:35,"349 River St, Los Angeles, CA 90001" +301099,Lightning Charging Cable,1,14.95,12/26/19 07:13,"608 Spruce St, New York City, NY 10001" +301100,Macbook Pro Laptop,1,1700,12/17/19 04:44,"771 Lincoln St, San Francisco, CA 94016" +301101,Flatscreen TV,1,300,12/02/19 20:39,"230 Forest St, Seattle, WA 98101" +301102,USB-C Charging Cable,1,11.95,12/26/19 17:36,"231 Hill St, San Francisco, CA 94016" +301103,27in FHD Monitor,1,149.99,12/24/19 09:39,"415 West St, Los Angeles, CA 90001" +301104,Wired Headphones,1,11.99,12/04/19 02:02,"443 Madison St, Austin, TX 73301" +301105,27in 4K Gaming Monitor,1,389.99,12/26/19 11:34,"961 2nd St, New York City, NY 10001" +301106,Lightning Charging Cable,1,14.95,12/16/19 23:35,"204 Spruce St, Los Angeles, CA 90001" +301107,USB-C Charging Cable,1,11.95,12/31/19 20:03,"127 Elm St, Seattle, WA 98101" +301108,34in Ultrawide Monitor,1,379.99,12/30/19 22:12,"212 12th St, San Francisco, CA 94016" +301109,Wired Headphones,1,11.99,12/31/19 17:27,"868 Dogwood St, Los Angeles, CA 90001" +301110,AA Batteries (4-pack),1,3.84,12/29/19 06:32,"706 Maple St, Seattle, WA 98101" +301111,Flatscreen TV,1,300,12/25/19 15:40,"597 14th St, San Francisco, CA 94016" +301112,AAA Batteries (4-pack),1,2.99,12/05/19 20:36,"263 Park St, Austin, TX 73301" +301113,27in FHD Monitor,1,149.99,12/28/19 13:38,"266 Pine St, Seattle, WA 98101" +301114,Google Phone,1,600,12/09/19 10:34,"15 11th St, Boston, MA 02215" +301114,USB-C Charging Cable,1,11.95,12/09/19 10:34,"15 11th St, Boston, MA 02215" +301115,Lightning Charging Cable,2,14.95,12/16/19 12:12,"870 1st St, Los Angeles, CA 90001" +301116,Wired Headphones,1,11.99,12/24/19 12:10,"972 14th St, Boston, MA 02215" +301117,Apple Airpods Headphones,1,150,12/24/19 11:00,"118 Pine St, Los Angeles, CA 90001" +301118,27in 4K Gaming Monitor,1,389.99,12/27/19 18:32,"170 7th St, Los Angeles, CA 90001" +301119,USB-C Charging Cable,1,11.95,12/27/19 15:16,"74 Cedar St, San Francisco, CA 94016" +301120,Wired Headphones,1,11.99,12/15/19 12:27,"697 Spruce St, Dallas, TX 75001" +301121,Lightning Charging Cable,1,14.95,12/10/19 12:19,"730 Washington St, Atlanta, GA 30301" +301122,USB-C Charging Cable,1,11.95,12/05/19 17:46,"532 Meadow St, Seattle, WA 98101" +301123,AAA Batteries (4-pack),5,2.99,12/18/19 07:12,"643 9th St, Atlanta, GA 30301" +301124,AAA Batteries (4-pack),1,2.99,12/30/19 14:50,"414 8th St, New York City, NY 10001" +301125,AAA Batteries (4-pack),1,2.99,12/09/19 10:14,"704 11th St, Boston, MA 02215" +301126,27in 4K Gaming Monitor,1,389.99,12/15/19 12:26,"319 Jackson St, Portland, OR 97035" +301127,Lightning Charging Cable,1,14.95,12/11/19 13:43,"759 Meadow St, Atlanta, GA 30301" +301128,USB-C Charging Cable,1,11.95,12/10/19 19:58,"516 Hill St, San Francisco, CA 94016" +301129,ThinkPad Laptop,1,999.99,12/18/19 12:15,"582 West St, Boston, MA 02215" +301130,27in 4K Gaming Monitor,1,389.99,12/30/19 07:26,"708 Lakeview St, San Francisco, CA 94016" +301131,Bose SoundSport Headphones,1,99.99,12/31/19 10:24,"417 Main St, San Francisco, CA 94016" +301132,34in Ultrawide Monitor,1,379.99,12/26/19 01:21,"43 Wilson St, San Francisco, CA 94016" +301133,Apple Airpods Headphones,1,150,12/30/19 19:47,"66 7th St, Los Angeles, CA 90001" +301134,AA Batteries (4-pack),1,3.84,12/14/19 16:03,"214 1st St, San Francisco, CA 94016" +301135,27in FHD Monitor,1,149.99,12/02/19 06:08,"978 South St, Seattle, WA 98101" +301136,LG Dryer,1,600.0,12/31/19 20:17,"859 6th St, San Francisco, CA 94016" +301137,USB-C Charging Cable,1,11.95,12/19/19 21:12,"846 Spruce St, Dallas, TX 75001" +301138,Wired Headphones,1,11.99,12/02/19 12:05,"99 Wilson St, Atlanta, GA 30301" +301139,Apple Airpods Headphones,1,150,12/19/19 14:57,"237 Lakeview St, Los Angeles, CA 90001" +301140,Bose SoundSport Headphones,1,99.99,12/14/19 16:41,"260 9th St, Atlanta, GA 30301" +301141,AAA Batteries (4-pack),1,2.99,12/16/19 10:33,"805 14th St, Los Angeles, CA 90001" +301142,34in Ultrawide Monitor,1,379.99,12/15/19 16:41,"147 Elm St, San Francisco, CA 94016" +301143,Google Phone,1,600,12/12/19 20:09,"261 9th St, Los Angeles, CA 90001" +301144,Apple Airpods Headphones,1,150,12/28/19 06:55,"556 Park St, New York City, NY 10001" +301145,USB-C Charging Cable,1,11.95,12/29/19 00:12,"535 Wilson St, Boston, MA 02215" +301146,Google Phone,1,600,12/11/19 15:40,"307 Maple St, Los Angeles, CA 90001" +301147,34in Ultrawide Monitor,1,379.99,12/19/19 09:16,"434 Johnson St, Seattle, WA 98101" +301148,Lightning Charging Cable,2,14.95,12/20/19 11:03,"348 6th St, Portland, OR 97035" +301149,USB-C Charging Cable,1,11.95,12/09/19 11:44,"766 Lincoln St, Los Angeles, CA 90001" +301150,AA Batteries (4-pack),1,3.84,12/31/19 00:16,"162 Dogwood St, San Francisco, CA 94016" +301151,AA Batteries (4-pack),3,3.84,12/02/19 09:48,"449 Wilson St, San Francisco, CA 94016" +301152,AAA Batteries (4-pack),1,2.99,12/18/19 20:56,"861 West St, San Francisco, CA 94016" +301153,Apple Airpods Headphones,1,150,12/15/19 08:21,"822 Jackson St, Seattle, WA 98101" +301154,34in Ultrawide Monitor,1,379.99,12/23/19 20:15,"978 Cedar St, San Francisco, CA 94016" +301155,USB-C Charging Cable,1,11.95,12/29/19 10:23,"261 Madison St, Atlanta, GA 30301" +301156,AAA Batteries (4-pack),1,2.99,12/03/19 19:36,"799 Main St, Austin, TX 73301" +301157,27in 4K Gaming Monitor,1,389.99,12/10/19 11:45,"639 5th St, Atlanta, GA 30301" +301158,AAA Batteries (4-pack),1,2.99,12/18/19 18:20,"460 Lincoln St, San Francisco, CA 94016" +301159,AA Batteries (4-pack),1,3.84,12/03/19 14:27,"530 Adams St, Los Angeles, CA 90001" +301160,Lightning Charging Cable,1,14.95,12/28/19 18:20,"476 Center St, Seattle, WA 98101" +301161,AA Batteries (4-pack),2,3.84,12/24/19 14:41,"461 4th St, Atlanta, GA 30301" +301162,27in 4K Gaming Monitor,1,389.99,12/14/19 06:48,"682 Washington St, New York City, NY 10001" +301163,AA Batteries (4-pack),1,3.84,12/03/19 23:00,"570 8th St, San Francisco, CA 94016" +301164,USB-C Charging Cable,1,11.95,12/27/19 14:23,"304 14th St, Boston, MA 02215" +301165,USB-C Charging Cable,1,11.95,12/09/19 19:10,"274 Madison St, Atlanta, GA 30301" +301166,Flatscreen TV,1,300,12/09/19 11:47,"432 Jefferson St, Atlanta, GA 30301" +301167,34in Ultrawide Monitor,1,379.99,12/10/19 15:27,"819 7th St, New York City, NY 10001" +301168,Lightning Charging Cable,1,14.95,12/23/19 09:26,"219 9th St, New York City, NY 10001" +301169,20in Monitor,1,109.99,12/23/19 14:26,"217 11th St, Atlanta, GA 30301" +301169,AA Batteries (4-pack),2,3.84,12/23/19 14:26,"217 11th St, Atlanta, GA 30301" +301170,Lightning Charging Cable,1,14.95,12/06/19 14:39,"283 West St, Boston, MA 02215" +301171,ThinkPad Laptop,1,999.99,12/09/19 19:08,"349 Johnson St, Austin, TX 73301" +301172,AAA Batteries (4-pack),1,2.99,12/08/19 20:26,"452 11th St, Seattle, WA 98101" +301173,Lightning Charging Cable,1,14.95,12/08/19 19:57,"745 Lakeview St, Atlanta, GA 30301" +301174,USB-C Charging Cable,1,11.95,12/26/19 10:39,"816 12th St, New York City, NY 10001" +301175,Google Phone,1,600,12/09/19 16:45,"999 Walnut St, Los Angeles, CA 90001" +301176,AA Batteries (4-pack),1,3.84,12/07/19 16:36,"697 Hickory St, Los Angeles, CA 90001" +301177,27in FHD Monitor,1,149.99,12/28/19 15:40,"811 West St, Boston, MA 02215" +301178,Apple Airpods Headphones,1,150,12/18/19 00:07,"625 Cedar St, Austin, TX 73301" +301179,AA Batteries (4-pack),1,3.84,12/12/19 16:07,"101 Forest St, Dallas, TX 75001" +301180,Macbook Pro Laptop,1,1700,12/22/19 21:32,"663 11th St, New York City, NY 10001" +301181,Bose SoundSport Headphones,1,99.99,12/29/19 21:51,"342 12th St, San Francisco, CA 94016" +301182,27in 4K Gaming Monitor,1,389.99,12/09/19 01:53,"905 Washington St, Boston, MA 02215" +301183,Lightning Charging Cable,1,14.95,12/24/19 12:20,"740 Cedar St, Los Angeles, CA 90001" +301184,27in FHD Monitor,1,149.99,12/10/19 11:45,"624 Sunset St, Austin, TX 73301" +301185,Google Phone,1,600,12/07/19 23:41,"222 Park St, Dallas, TX 75001" +301186,Apple Airpods Headphones,1,150,12/04/19 07:56,"617 River St, Los Angeles, CA 90001" +301187,20in Monitor,1,109.99,12/03/19 21:22,"140 14th St, Boston, MA 02215" +301188,AAA Batteries (4-pack),1,2.99,12/24/19 17:15,"685 10th St, Austin, TX 73301" +301189,iPhone,1,700,12/16/19 10:48,"237 Forest St, San Francisco, CA 94016" +301190,Wired Headphones,1,11.99,12/23/19 16:12,"643 Jackson St, New York City, NY 10001" +301191,Lightning Charging Cable,1,14.95,12/02/19 06:13,"37 Wilson St, New York City, NY 10001" +301192,Wired Headphones,1,11.99,12/09/19 17:29,"302 Park St, New York City, NY 10001" +301193,Bose SoundSport Headphones,1,99.99,12/07/19 09:44,"884 Church St, Seattle, WA 98101" +301194,USB-C Charging Cable,1,11.95,12/03/19 14:15,"184 Pine St, Atlanta, GA 30301" +301195,USB-C Charging Cable,1,11.95,12/31/19 13:55,"963 10th St, Austin, TX 73301" +301196,Lightning Charging Cable,2,14.95,12/24/19 13:57,"947 Jefferson St, Dallas, TX 75001" +301197,AAA Batteries (4-pack),1,2.99,12/14/19 07:49,"402 Lincoln St, New York City, NY 10001" +301197,AA Batteries (4-pack),1,3.84,12/14/19 07:49,"402 Lincoln St, New York City, NY 10001" +301198,27in FHD Monitor,1,149.99,12/29/19 10:30,"674 River St, Los Angeles, CA 90001" +301199,AAA Batteries (4-pack),1,2.99,12/24/19 18:06,"78 Hill St, San Francisco, CA 94016" +301200,AAA Batteries (4-pack),1,2.99,12/26/19 11:54,"549 Highland St, New York City, NY 10001" +301201,LG Dryer,1,600.0,12/10/19 19:42,"716 9th St, Los Angeles, CA 90001" +301202,Apple Airpods Headphones,1,150,12/30/19 12:24,"718 Cedar St, Dallas, TX 75001" +301203,Wired Headphones,1,11.99,12/10/19 11:13,"723 South St, Los Angeles, CA 90001" +301204,iPhone,1,700,12/23/19 21:27,"762 Forest St, Boston, MA 02215" +301205,AAA Batteries (4-pack),1,2.99,12/13/19 19:24,"151 1st St, San Francisco, CA 94016" +301206,Lightning Charging Cable,1,14.95,12/18/19 20:00,"165 River St, Boston, MA 02215" +301207,Google Phone,1,600,12/25/19 19:44,"661 Church St, Portland, OR 97035" +301208,Apple Airpods Headphones,1,150,12/28/19 21:29,"528 North St, New York City, NY 10001" +301209,AAA Batteries (4-pack),1,2.99,12/10/19 16:32,"385 Church St, New York City, NY 10001" +301210,iPhone,1,700,12/21/19 18:56,"208 13th St, New York City, NY 10001" +301211,AA Batteries (4-pack),2,3.84,12/26/19 12:57,"606 Main St, Austin, TX 73301" +301212,AA Batteries (4-pack),1,3.84,12/25/19 11:50,"12 Walnut St, Boston, MA 02215" +301213,34in Ultrawide Monitor,1,379.99,12/03/19 12:58,"875 Hill St, Dallas, TX 75001" +301214,Wired Headphones,1,11.99,12/20/19 23:07,"945 Walnut St, Boston, MA 02215" +301214,AA Batteries (4-pack),1,3.84,12/20/19 23:07,"945 Walnut St, Boston, MA 02215" +301215,Lightning Charging Cable,1,14.95,12/11/19 08:23,"646 Center St, Dallas, TX 75001" +301216,USB-C Charging Cable,1,11.95,12/18/19 10:25,"226 7th St, Los Angeles, CA 90001" +301217,Wired Headphones,1,11.99,12/24/19 18:07,"705 Cedar St, Austin, TX 73301" +301218,34in Ultrawide Monitor,1,379.99,12/09/19 10:35,"136 West St, San Francisco, CA 94016" +301219,Bose SoundSport Headphones,1,99.99,12/18/19 07:22,"317 8th St, Austin, TX 73301" +301220,27in FHD Monitor,1,149.99,12/01/19 15:32,"170 Washington St, San Francisco, CA 94016" +301221,Lightning Charging Cable,1,14.95,12/18/19 18:18,"882 2nd St, San Francisco, CA 94016" +301222,Lightning Charging Cable,1,14.95,12/29/19 10:01,"721 Willow St, Los Angeles, CA 90001" +301223,20in Monitor,1,109.99,12/16/19 00:51,"623 Hill St, Atlanta, GA 30301" +301224,AAA Batteries (4-pack),2,2.99,12/23/19 19:24,"49 Park St, Austin, TX 73301" +301225,AAA Batteries (4-pack),1,2.99,12/08/19 13:21,"657 Johnson St, New York City, NY 10001" +301226,Lightning Charging Cable,1,14.95,12/18/19 22:44,"53 1st St, Atlanta, GA 30301" +301227,27in FHD Monitor,1,149.99,12/30/19 16:17,"448 10th St, Portland, OR 97035" +301228,LG Washing Machine,1,600.0,12/10/19 09:42,"664 Elm St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +301229,Lightning Charging Cable,1,14.95,12/05/19 18:09,"873 5th St, Seattle, WA 98101" +301230,Wired Headphones,1,11.99,12/20/19 15:18,"960 Park St, San Francisco, CA 94016" +301231,USB-C Charging Cable,1,11.95,01/01/20 00:19,"131 5th St, New York City, NY 10001" +301232,USB-C Charging Cable,1,11.95,12/06/19 22:09,"645 Forest St, Dallas, TX 75001" +301233,USB-C Charging Cable,1,11.95,12/16/19 08:22,"763 Walnut St, Boston, MA 02215" +301234,Apple Airpods Headphones,1,150,12/19/19 15:43,"462 Hill St, Boston, MA 02215" +301235,Lightning Charging Cable,1,14.95,12/14/19 20:27,"846 Spruce St, Austin, TX 73301" +301236,Bose SoundSport Headphones,1,99.99,12/05/19 14:16,"462 West St, Los Angeles, CA 90001" +301237,Vareebadd Phone,1,400,12/09/19 17:22,"434 Washington St, Los Angeles, CA 90001" +301238,USB-C Charging Cable,2,11.95,12/20/19 23:55,"514 10th St, Boston, MA 02215" +301238,Bose SoundSport Headphones,1,99.99,12/20/19 23:55,"514 10th St, Boston, MA 02215" +301239,Apple Airpods Headphones,1,150,12/13/19 13:08,"402 Meadow St, Portland, OR 97035" +301240,Bose SoundSport Headphones,1,99.99,12/18/19 21:56,"908 2nd St, Seattle, WA 98101" +301241,AA Batteries (4-pack),1,3.84,12/31/19 14:32,"404 1st St, Atlanta, GA 30301" +301242,AAA Batteries (4-pack),1,2.99,12/05/19 20:07,"940 Ridge St, New York City, NY 10001" +301243,iPhone,1,700,12/18/19 21:11,"442 Willow St, Dallas, TX 75001" +301244,Bose SoundSport Headphones,1,99.99,12/14/19 19:02,"907 6th St, Boston, MA 02215" +301245,Lightning Charging Cable,1,14.95,12/19/19 20:56,"689 10th St, Boston, MA 02215" +301246,Wired Headphones,1,11.99,12/21/19 13:43,"485 Jefferson St, San Francisco, CA 94016" +301247,iPhone,1,700,12/15/19 12:00,"573 9th St, Los Angeles, CA 90001" +301248,USB-C Charging Cable,1,11.95,12/13/19 08:44,"174 Wilson St, Los Angeles, CA 90001" +301249,34in Ultrawide Monitor,1,379.99,12/02/19 18:56,"215 11th St, Seattle, WA 98101" +301250,Bose SoundSport Headphones,1,99.99,12/03/19 13:33,"852 10th St, Atlanta, GA 30301" +301251,AA Batteries (4-pack),1,3.84,12/03/19 19:27,"463 2nd St, Los Angeles, CA 90001" +301252,iPhone,1,700,12/15/19 13:11,"498 Johnson St, Dallas, TX 75001" +301253,27in 4K Gaming Monitor,1,389.99,12/20/19 19:19,"31 11th St, Dallas, TX 75001" +301254,20in Monitor,1,109.99,12/03/19 20:50,"764 West St, San Francisco, CA 94016" +301255,Lightning Charging Cable,1,14.95,12/23/19 17:14,"589 Lincoln St, Portland, OR 97035" +301256,ThinkPad Laptop,1,999.99,12/06/19 09:38,"181 Wilson St, Los Angeles, CA 90001" +301257,Bose SoundSport Headphones,1,99.99,12/19/19 22:44,"75 Hickory St, New York City, NY 10001" +301258,Apple Airpods Headphones,1,150,12/01/19 14:32,"303 Willow St, New York City, NY 10001" +301259,AAA Batteries (4-pack),1,2.99,12/26/19 00:43,"405 12th St, Atlanta, GA 30301" +301260,Lightning Charging Cable,1,14.95,12/04/19 02:13,"143 Jefferson St, Dallas, TX 75001" +301261,USB-C Charging Cable,1,11.95,12/14/19 15:58,"633 5th St, Los Angeles, CA 90001" +301262,Wired Headphones,1,11.99,12/07/19 17:18,"136 Hickory St, San Francisco, CA 94016" +301263,AA Batteries (4-pack),2,3.84,12/27/19 11:25,"442 Meadow St, San Francisco, CA 94016" +301264,AA Batteries (4-pack),1,3.84,12/29/19 09:18,"731 Jefferson St, Atlanta, GA 30301" +301265,Lightning Charging Cable,1,14.95,12/05/19 19:40,"757 6th St, San Francisco, CA 94016" +301266,AAA Batteries (4-pack),3,2.99,12/09/19 14:37,"995 Sunset St, New York City, NY 10001" +301267,AAA Batteries (4-pack),2,2.99,12/08/19 10:54,"633 13th St, Seattle, WA 98101" +301268,Lightning Charging Cable,1,14.95,12/04/19 18:05,"373 Maple St, Austin, TX 73301" +301269,Wired Headphones,1,11.99,12/07/19 17:13,"674 Chestnut St, Seattle, WA 98101" +301270,AAA Batteries (4-pack),1,2.99,12/17/19 11:52,"733 Jefferson St, Los Angeles, CA 90001" +301271,iPhone,1,700,12/14/19 17:33,"212 Lakeview St, Seattle, WA 98101" +301272,Wired Headphones,2,11.99,12/07/19 08:47,"562 7th St, New York City, NY 10001" +301273,Apple Airpods Headphones,1,150,12/31/19 22:14,"487 9th St, Atlanta, GA 30301" +301274,AAA Batteries (4-pack),2,2.99,12/31/19 19:10,"361 Lakeview St, Boston, MA 02215" +301275,AA Batteries (4-pack),1,3.84,12/09/19 13:12,"885 6th St, San Francisco, CA 94016" +301276,AAA Batteries (4-pack),1,2.99,12/12/19 18:52,"81 11th St, San Francisco, CA 94016" +301277,iPhone,1,700,12/10/19 22:28,"105 Lake St, Los Angeles, CA 90001" +301277,Lightning Charging Cable,1,14.95,12/10/19 22:28,"105 Lake St, Los Angeles, CA 90001" +301278,USB-C Charging Cable,1,11.95,12/09/19 22:44,"394 Wilson St, Boston, MA 02215" +301279,Apple Airpods Headphones,1,150,12/07/19 12:57,"664 Chestnut St, New York City, NY 10001" +301280,20in Monitor,1,109.99,12/27/19 07:05,"559 8th St, Seattle, WA 98101" +301281,Lightning Charging Cable,1,14.95,12/29/19 15:12,"678 Lake St, Atlanta, GA 30301" +301282,Apple Airpods Headphones,1,150,12/12/19 16:06,"823 Hill St, Seattle, WA 98101" +301283,Wired Headphones,1,11.99,12/06/19 09:53,"106 14th St, Dallas, TX 75001" +301284,Flatscreen TV,1,300,12/22/19 15:39,"352 5th St, New York City, NY 10001" +301285,USB-C Charging Cable,1,11.95,12/29/19 20:39,"92 Jackson St, Boston, MA 02215" +301286,Bose SoundSport Headphones,1,99.99,12/10/19 11:48,"43 Jackson St, Los Angeles, CA 90001" +301287,Lightning Charging Cable,1,14.95,12/22/19 11:52,"23 2nd St, Los Angeles, CA 90001" +301288,AA Batteries (4-pack),2,3.84,12/30/19 21:46,"457 North St, Seattle, WA 98101" +301289,AAA Batteries (4-pack),3,2.99,12/28/19 13:47,"105 Dogwood St, Boston, MA 02215" +301290,AA Batteries (4-pack),2,3.84,12/22/19 16:11,"115 Ridge St, San Francisco, CA 94016" +301291,Lightning Charging Cable,1,14.95,12/07/19 16:39,"456 Sunset St, Los Angeles, CA 90001" +301292,Lightning Charging Cable,1,14.95,12/11/19 07:37,"525 Walnut St, San Francisco, CA 94016" +301293,Apple Airpods Headphones,1,150,12/12/19 20:49,"758 Church St, Seattle, WA 98101" +301294,USB-C Charging Cable,1,11.95,12/08/19 13:40,"738 River St, San Francisco, CA 94016" +301295,USB-C Charging Cable,1,11.95,12/22/19 11:37,"198 Highland St, Los Angeles, CA 90001" +301296,Lightning Charging Cable,1,14.95,12/02/19 20:41,"109 Elm St, Boston, MA 02215" +301297,Vareebadd Phone,1,400,12/11/19 14:43,"294 6th St, Seattle, WA 98101" +301298,Flatscreen TV,1,300,12/11/19 13:33,"429 11th St, New York City, NY 10001" +301299,Apple Airpods Headphones,1,150,12/01/19 13:45,"306 1st St, Portland, OR 97035" +301300,Lightning Charging Cable,1,14.95,12/07/19 20:29,"638 7th St, Boston, MA 02215" +301301,Flatscreen TV,1,300,12/23/19 20:30,"990 Ridge St, San Francisco, CA 94016" +301302,AAA Batteries (4-pack),1,2.99,12/13/19 10:52,"928 Maple St, Atlanta, GA 30301" +301303,34in Ultrawide Monitor,1,379.99,12/05/19 09:53,"526 Jackson St, Los Angeles, CA 90001" +301304,Lightning Charging Cable,1,14.95,12/26/19 14:50,"149 Johnson St, San Francisco, CA 94016" +301305,Google Phone,1,600,12/27/19 00:33,"895 11th St, Los Angeles, CA 90001" +301306,Apple Airpods Headphones,1,150,12/29/19 17:09,"955 1st St, San Francisco, CA 94016" +301307,AA Batteries (4-pack),2,3.84,12/07/19 09:17,"632 14th St, Atlanta, GA 30301" +301308,USB-C Charging Cable,1,11.95,12/18/19 14:31,"739 Church St, New York City, NY 10001" +301309,Wired Headphones,1,11.99,12/16/19 14:19,"212 Meadow St, San Francisco, CA 94016" +301310,iPhone,1,700,12/08/19 20:33,"188 Adams St, Los Angeles, CA 90001" +301310,Wired Headphones,1,11.99,12/08/19 20:33,"188 Adams St, Los Angeles, CA 90001" +301311,34in Ultrawide Monitor,1,379.99,12/26/19 17:02,"316 2nd St, Los Angeles, CA 90001" +301312,27in 4K Gaming Monitor,1,389.99,12/05/19 18:09,"908 Chestnut St, Seattle, WA 98101" +301313,27in 4K Gaming Monitor,1,389.99,12/14/19 11:16,"614 Meadow St, Austin, TX 73301" +301314,Macbook Pro Laptop,1,1700,12/05/19 00:25,"905 Sunset St, New York City, NY 10001" +301315,AA Batteries (4-pack),1,3.84,12/02/19 10:13,"868 8th St, New York City, NY 10001" +301316,27in 4K Gaming Monitor,1,389.99,12/10/19 19:52,"732 South St, Dallas, TX 75001" +301317,AA Batteries (4-pack),1,3.84,12/23/19 10:25,"638 North St, Boston, MA 02215" +301318,Macbook Pro Laptop,1,1700,12/10/19 11:21,"642 Willow St, Los Angeles, CA 90001" +301319,AA Batteries (4-pack),1,3.84,12/17/19 19:53,"498 Park St, Atlanta, GA 30301" +301320,Vareebadd Phone,1,400,12/04/19 17:20,"79 Cherry St, San Francisco, CA 94016" +301321,AA Batteries (4-pack),3,3.84,12/10/19 18:38,"464 Main St, San Francisco, CA 94016" +301322,AAA Batteries (4-pack),1,2.99,12/10/19 19:21,"52 12th St, San Francisco, CA 94016" +301323,20in Monitor,1,109.99,12/16/19 22:52,"838 10th St, Atlanta, GA 30301" +301324,27in 4K Gaming Monitor,1,389.99,12/20/19 16:07,"234 Center St, San Francisco, CA 94016" +301325,Apple Airpods Headphones,1,150,12/30/19 01:18,"231 14th St, San Francisco, CA 94016" +301326,AA Batteries (4-pack),2,3.84,12/28/19 11:34,"200 7th St, San Francisco, CA 94016" +301327,Bose SoundSport Headphones,1,99.99,12/15/19 12:31,"60 10th St, Dallas, TX 75001" +301328,34in Ultrawide Monitor,1,379.99,12/05/19 21:58,"727 10th St, San Francisco, CA 94016" +301329,AA Batteries (4-pack),1,3.84,12/05/19 10:48,"899 River St, San Francisco, CA 94016" +301330,AA Batteries (4-pack),2,3.84,12/10/19 19:44,"610 Willow St, Boston, MA 02215" +301331,Lightning Charging Cable,1,14.95,12/03/19 15:40,"674 Washington St, Dallas, TX 75001" +301332,LG Dryer,1,600.0,12/05/19 13:28,"577 12th St, Los Angeles, CA 90001" +301333,Bose SoundSport Headphones,1,99.99,12/29/19 10:56,"99 Center St, Atlanta, GA 30301" +301334,Flatscreen TV,1,300,12/05/19 21:21,"492 West St, Boston, MA 02215" +301335,Wired Headphones,1,11.99,12/21/19 09:49,"942 Main St, Dallas, TX 75001" +301336,34in Ultrawide Monitor,1,379.99,12/04/19 18:03,"920 Lincoln St, San Francisco, CA 94016" +301337,Vareebadd Phone,1,400,12/06/19 18:12,"805 Hill St, San Francisco, CA 94016" +301338,34in Ultrawide Monitor,1,379.99,12/09/19 11:08,"377 Pine St, San Francisco, CA 94016" +301339,Wired Headphones,1,11.99,12/10/19 07:27,"194 Jackson St, Seattle, WA 98101" +,,,,, +301340,27in 4K Gaming Monitor,1,389.99,12/09/19 14:21,"913 7th St, Los Angeles, CA 90001" +301341,AAA Batteries (4-pack),1,2.99,12/02/19 11:16,"181 Wilson St, Los Angeles, CA 90001" +301342,LG Dryer,1,600.0,12/22/19 08:51,"6 Sunset St, Boston, MA 02215" +301343,Apple Airpods Headphones,1,150,12/12/19 22:41,"523 Adams St, Atlanta, GA 30301" +301344,Bose SoundSport Headphones,1,99.99,12/01/19 08:43,"432 1st St, Dallas, TX 75001" +301345,USB-C Charging Cable,1,11.95,12/24/19 20:34,"997 Center St, Portland, OR 97035" +301346,AAA Batteries (4-pack),2,2.99,12/07/19 11:55,"827 4th St, Boston, MA 02215" +301347,27in FHD Monitor,1,149.99,12/03/19 21:41,"599 11th St, San Francisco, CA 94016" +301348,USB-C Charging Cable,1,11.95,12/09/19 18:51,"791 North St, Boston, MA 02215" +301349,Wired Headphones,1,11.99,12/12/19 18:19,"533 Cedar St, Austin, TX 73301" +301350,AA Batteries (4-pack),1,3.84,12/27/19 20:29,"615 West St, Portland, OR 97035" +301351,iPhone,1,700,12/21/19 19:49,"632 Willow St, San Francisco, CA 94016" +301351,Lightning Charging Cable,1,14.95,12/21/19 19:49,"632 Willow St, San Francisco, CA 94016" +301352,AA Batteries (4-pack),1,3.84,12/24/19 14:55,"163 North St, New York City, NY 10001" +301353,AAA Batteries (4-pack),1,2.99,12/23/19 12:38,"648 Walnut St, Seattle, WA 98101" +301354,20in Monitor,1,109.99,12/20/19 00:49,"833 Washington St, Los Angeles, CA 90001" +301355,AA Batteries (4-pack),2,3.84,12/23/19 19:39,"547 Maple St, New York City, NY 10001" +301356,Apple Airpods Headphones,1,150,12/14/19 10:44,"963 9th St, Los Angeles, CA 90001" +301357,Wired Headphones,1,11.99,12/30/19 12:13,"784 Dogwood St, San Francisco, CA 94016" +301358,iPhone,1,700,12/02/19 15:54,"281 4th St, San Francisco, CA 94016" +301359,iPhone,1,700,12/08/19 14:48,"349 Lake St, Los Angeles, CA 90001" +301359,Lightning Charging Cable,1,14.95,12/08/19 14:48,"349 Lake St, Los Angeles, CA 90001" +301360,27in FHD Monitor,1,149.99,12/29/19 14:20,"170 Main St, Portland, OR 97035" +301361,Apple Airpods Headphones,1,150,12/25/19 16:42,"175 Madison St, Boston, MA 02215" +301362,AA Batteries (4-pack),1,3.84,12/21/19 08:00,"869 Elm St, Dallas, TX 75001" +301363,Macbook Pro Laptop,1,1700,12/15/19 20:20,"104 Walnut St, San Francisco, CA 94016" +301364,AAA Batteries (4-pack),1,2.99,12/07/19 16:28,"406 Ridge St, San Francisco, CA 94016" +301365,Lightning Charging Cable,1,14.95,12/07/19 10:12,"624 7th St, New York City, NY 10001" +301366,AA Batteries (4-pack),1,3.84,12/18/19 19:13,"758 4th St, Dallas, TX 75001" +301367,USB-C Charging Cable,1,11.95,12/07/19 09:25,"811 Meadow St, Los Angeles, CA 90001" +301368,Apple Airpods Headphones,1,150,12/20/19 13:57,"746 Willow St, Dallas, TX 75001" +301369,Lightning Charging Cable,1,14.95,12/06/19 17:24,"229 Center St, Austin, TX 73301" +301370,ThinkPad Laptop,1,999.99,12/01/19 17:44,"331 Lakeview St, Boston, MA 02215" +301371,27in FHD Monitor,1,149.99,12/28/19 22:45,"73 Lakeview St, Dallas, TX 75001" +301372,Wired Headphones,2,11.99,12/16/19 20:54,"702 South St, San Francisco, CA 94016" +301373,USB-C Charging Cable,1,11.95,12/13/19 16:30,"267 Elm St, Boston, MA 02215" +301374,Wired Headphones,1,11.99,12/23/19 04:24,"120 Maple St, New York City, NY 10001" +301375,34in Ultrawide Monitor,1,379.99,12/21/19 06:59,"721 Elm St, Austin, TX 73301" +301376,Apple Airpods Headphones,1,150,12/29/19 12:12,"690 Willow St, Los Angeles, CA 90001" +301377,Lightning Charging Cable,1,14.95,12/20/19 12:30,"265 Cherry St, Boston, MA 02215" +301378,Apple Airpods Headphones,1,150,12/02/19 21:05,"163 Pine St, Austin, TX 73301" +301379,USB-C Charging Cable,1,11.95,12/20/19 10:59,"674 Pine St, San Francisco, CA 94016" +301380,AA Batteries (4-pack),2,3.84,12/20/19 07:21,"264 Meadow St, Austin, TX 73301" +301381,Lightning Charging Cable,1,14.95,12/17/19 23:16,"905 7th St, Atlanta, GA 30301" +301382,AA Batteries (4-pack),1,3.84,12/26/19 12:04,"932 Cherry St, Atlanta, GA 30301" +301383,Google Phone,1,600,12/09/19 04:53,"300 Main St, San Francisco, CA 94016" +301384,Google Phone,1,600,12/15/19 12:39,"543 Washington St, Los Angeles, CA 90001" +301384,USB-C Charging Cable,1,11.95,12/15/19 12:39,"543 Washington St, Los Angeles, CA 90001" +301385,Flatscreen TV,1,300,12/20/19 17:04,"880 Lake St, Los Angeles, CA 90001" +301386,AAA Batteries (4-pack),1,2.99,12/17/19 13:30,"928 Madison St, Austin, TX 73301" +301387,iPhone,1,700,12/14/19 17:38,"927 Madison St, New York City, NY 10001" +301388,USB-C Charging Cable,1,11.95,12/24/19 16:49,"245 Walnut St, Los Angeles, CA 90001" +301389,AAA Batteries (4-pack),3,2.99,12/03/19 10:32,"372 Lakeview St, Boston, MA 02215" +301390,USB-C Charging Cable,1,11.95,12/14/19 22:23,"735 7th St, Atlanta, GA 30301" +301391,Bose SoundSport Headphones,1,99.99,12/07/19 18:46,"139 5th St, Dallas, TX 75001" +301392,Lightning Charging Cable,1,14.95,12/22/19 12:04,"448 Wilson St, Austin, TX 73301" +301393,AA Batteries (4-pack),1,3.84,12/30/19 21:16,"480 West St, Boston, MA 02215" +301394,AAA Batteries (4-pack),1,2.99,12/19/19 19:51,"646 Park St, Seattle, WA 98101" +301395,Lightning Charging Cable,1,14.95,12/01/19 07:41,"977 Cherry St, Portland, OR 97035" +301396,Lightning Charging Cable,1,14.95,12/07/19 08:52,"323 4th St, New York City, NY 10001" +301397,Google Phone,1,600,12/05/19 11:01,"520 Johnson St, Dallas, TX 75001" +301397,27in 4K Gaming Monitor,1,389.99,12/05/19 11:01,"520 Johnson St, Dallas, TX 75001" +301398,AA Batteries (4-pack),1,3.84,12/05/19 11:41,"514 Washington St, Boston, MA 02215" +301399,Wired Headphones,1,11.99,12/10/19 08:08,"888 12th St, Dallas, TX 75001" +301400,27in FHD Monitor,1,149.99,12/08/19 12:14,"37 Spruce St, Austin, TX 73301" +301401,AA Batteries (4-pack),1,3.84,12/08/19 15:06,"825 Cedar St, Dallas, TX 75001" +301402,USB-C Charging Cable,1,11.95,12/09/19 11:49,"838 River St, Seattle, WA 98101" +301403,USB-C Charging Cable,2,11.95,12/07/19 15:25,"335 Pine St, Seattle, WA 98101" +301404,Lightning Charging Cable,1,14.95,12/14/19 00:26,"760 Johnson St, San Francisco, CA 94016" +301405,Wired Headphones,1,11.99,12/29/19 20:16,"149 13th St, Atlanta, GA 30301" +301406,AA Batteries (4-pack),1,3.84,12/07/19 17:25,"585 5th St, Los Angeles, CA 90001" +301407,AAA Batteries (4-pack),1,2.99,12/05/19 13:39,"454 14th St, Atlanta, GA 30301" +301408,Bose SoundSport Headphones,1,99.99,12/20/19 13:35,"195 Center St, Los Angeles, CA 90001" +301409,Wired Headphones,1,11.99,12/31/19 23:14,"870 7th St, New York City, NY 10001" +301410,AA Batteries (4-pack),5,3.84,12/09/19 11:31,"919 Forest St, New York City, NY 10001" +301411,Lightning Charging Cable,1,14.95,12/25/19 16:23,"453 11th St, Seattle, WA 98101" +301412,AAA Batteries (4-pack),1,2.99,12/23/19 20:18,"729 Church St, New York City, NY 10001" +301413,USB-C Charging Cable,1,11.95,12/15/19 14:26,"866 Spruce St, Los Angeles, CA 90001" +301414,USB-C Charging Cable,1,11.95,12/03/19 23:06,"444 River St, Atlanta, GA 30301" +301415,ThinkPad Laptop,1,999.99,12/22/19 18:41,"410 Lakeview St, Atlanta, GA 30301" +301416,Bose SoundSport Headphones,1,99.99,12/21/19 19:11,"755 Ridge St, Atlanta, GA 30301" +301417,AA Batteries (4-pack),1,3.84,12/05/19 14:55,"67 Wilson St, New York City, NY 10001" +301418,Wired Headphones,1,11.99,12/15/19 09:51,"769 Meadow St, Atlanta, GA 30301" +301419,USB-C Charging Cable,1,11.95,12/14/19 10:04,"564 Wilson St, Dallas, TX 75001" +301420,Lightning Charging Cable,1,14.95,12/04/19 11:14,"934 12th St, Los Angeles, CA 90001" +301421,Bose SoundSport Headphones,1,99.99,12/04/19 18:18,"630 14th St, Atlanta, GA 30301" +,,,,, +301422,Lightning Charging Cable,1,14.95,12/09/19 20:38,"734 9th St, Atlanta, GA 30301" +301423,Apple Airpods Headphones,1,150,12/26/19 20:20,"83 Spruce St, Portland, OR 97035" +301424,AA Batteries (4-pack),2,3.84,12/18/19 09:14,"222 Sunset St, Los Angeles, CA 90001" +301425,Google Phone,1,600,12/19/19 13:41,"41 Lakeview St, New York City, NY 10001" +301425,Bose SoundSport Headphones,1,99.99,12/19/19 13:41,"41 Lakeview St, New York City, NY 10001" +301426,27in 4K Gaming Monitor,1,389.99,12/19/19 07:57,"195 Willow St, San Francisco, CA 94016" +301427,AA Batteries (4-pack),1,3.84,12/29/19 15:52,"631 Chestnut St, San Francisco, CA 94016" +301428,AA Batteries (4-pack),2,3.84,12/16/19 20:46,"451 8th St, Portland, OR 97035" +301429,USB-C Charging Cable,1,11.95,12/01/19 19:02,"387 Highland St, San Francisco, CA 94016" +301430,Bose SoundSport Headphones,2,99.99,12/18/19 09:26,"58 2nd St, New York City, NY 10001" +301431,USB-C Charging Cable,1,11.95,12/22/19 08:40,"943 7th St, San Francisco, CA 94016" +301432,AA Batteries (4-pack),1,3.84,12/12/19 22:28,"70 Hill St, Los Angeles, CA 90001" +301433,LG Dryer,1,600.0,12/25/19 23:15,"580 10th St, San Francisco, CA 94016" +301434,Google Phone,1,600,12/28/19 21:54,"485 Adams St, Seattle, WA 98101" +301435,AAA Batteries (4-pack),1,2.99,12/29/19 11:29,"10 Main St, Seattle, WA 98101" +301436,Bose SoundSport Headphones,1,99.99,12/18/19 18:11,"788 Jackson St, Los Angeles, CA 90001" +301437,AAA Batteries (4-pack),1,2.99,12/30/19 16:54,"966 River St, Los Angeles, CA 90001" +301438,USB-C Charging Cable,1,11.95,12/31/19 14:57,"121 13th St, San Francisco, CA 94016" +301439,Lightning Charging Cable,1,14.95,12/24/19 09:51,"352 Elm St, Boston, MA 02215" +301440,USB-C Charging Cable,1,11.95,12/28/19 11:43,"409 Maple St, New York City, NY 10001" +301441,Apple Airpods Headphones,1,150,12/24/19 19:53,"630 Madison St, Atlanta, GA 30301" +301442,27in FHD Monitor,1,149.99,12/28/19 00:07,"379 Chestnut St, Austin, TX 73301" +301443,AAA Batteries (4-pack),1,2.99,12/18/19 15:27,"851 8th St, Dallas, TX 75001" +301444,Bose SoundSport Headphones,1,99.99,12/30/19 21:50,"721 10th St, San Francisco, CA 94016" +301445,Macbook Pro Laptop,1,1700,12/16/19 19:31,"345 Park St, San Francisco, CA 94016" +301446,AA Batteries (4-pack),1,3.84,12/01/19 10:12,"927 13th St, San Francisco, CA 94016" +301447,AA Batteries (4-pack),1,3.84,12/08/19 14:26,"443 7th St, San Francisco, CA 94016" +301448,Bose SoundSport Headphones,1,99.99,12/31/19 14:41,"378 Willow St, New York City, NY 10001" +301449,USB-C Charging Cable,1,11.95,12/01/19 18:15,"44 10th St, Boston, MA 02215" +301450,Wired Headphones,1,11.99,12/31/19 21:15,"731 Meadow St, Portland, OR 97035" +301451,USB-C Charging Cable,1,11.95,12/16/19 17:01,"679 8th St, Seattle, WA 98101" +301452,34in Ultrawide Monitor,1,379.99,12/01/19 20:08,"783 Chestnut St, Boston, MA 02215" +301453,USB-C Charging Cable,1,11.95,12/25/19 13:36,"262 Hickory St, Austin, TX 73301" +301454,AAA Batteries (4-pack),1,2.99,12/21/19 08:16,"304 Elm St, Atlanta, GA 30301" +301455,USB-C Charging Cable,1,11.95,12/04/19 12:29,"828 4th St, Los Angeles, CA 90001" +301456,AA Batteries (4-pack),1,3.84,12/16/19 18:22,"288 Main St, Dallas, TX 75001" +301457,Wired Headphones,1,11.99,12/08/19 20:13,"95 2nd St, Los Angeles, CA 90001" +301458,iPhone,1,700,12/01/19 09:15,"812 13th St, Portland, OR 97035" +301459,AAA Batteries (4-pack),3,2.99,12/01/19 17:12,"731 Jackson St, San Francisco, CA 94016" +301460,Apple Airpods Headphones,1,150,12/04/19 22:49,"319 Lincoln St, New York City, NY 10001" +301461,Google Phone,1,600,12/16/19 18:59,"417 2nd St, Atlanta, GA 30301" +301462,Apple Airpods Headphones,1,150,12/26/19 13:14,"230 Park St, Austin, TX 73301" +301463,Lightning Charging Cable,1,14.95,12/12/19 20:34,"446 Cedar St, Boston, MA 02215" +301464,Macbook Pro Laptop,1,1700,12/19/19 20:22,"435 Wilson St, Portland, OR 97035" +301465,27in FHD Monitor,1,149.99,12/01/19 10:42,"616 Pine St, Dallas, TX 75001" +301466,USB-C Charging Cable,2,11.95,12/01/19 13:52,"160 Johnson St, New York City, NY 10001" +301467,34in Ultrawide Monitor,1,379.99,12/24/19 23:05,"996 Willow St, New York City, NY 10001" +301468,Bose SoundSport Headphones,1,99.99,12/28/19 13:40,"111 Lake St, Los Angeles, CA 90001" +301469,USB-C Charging Cable,1,11.95,12/04/19 20:33,"819 Cedar St, Seattle, WA 98101" +301470,27in 4K Gaming Monitor,1,389.99,12/25/19 13:05,"117 Willow St, Los Angeles, CA 90001" +301471,Wired Headphones,1,11.99,12/27/19 10:51,"72 Highland St, San Francisco, CA 94016" +301472,Macbook Pro Laptop,1,1700,12/04/19 12:08,"631 Walnut St, Dallas, TX 75001" +301473,Bose SoundSport Headphones,1,99.99,12/08/19 07:14,"138 Dogwood St, Austin, TX 73301" +301474,20in Monitor,1,109.99,12/06/19 00:50,"601 13th St, San Francisco, CA 94016" +301475,AAA Batteries (4-pack),1,2.99,12/01/19 17:05,"977 Wilson St, New York City, NY 10001" +301476,Wired Headphones,1,11.99,12/14/19 20:41,"55 Park St, New York City, NY 10001" +301477,AAA Batteries (4-pack),1,2.99,12/23/19 20:04,"756 Ridge St, San Francisco, CA 94016" +301478,AA Batteries (4-pack),1,3.84,12/11/19 14:18,"196 Jackson St, Los Angeles, CA 90001" +301479,AAA Batteries (4-pack),2,2.99,12/18/19 17:28,"283 Center St, Boston, MA 02215" +301480,iPhone,1,700,12/18/19 10:20,"334 North St, Los Angeles, CA 90001" +301481,Wired Headphones,1,11.99,12/29/19 18:23,"959 5th St, San Francisco, CA 94016" +301482,AAA Batteries (4-pack),1,2.99,12/20/19 13:55,"499 7th St, San Francisco, CA 94016" +301483,Bose SoundSport Headphones,1,99.99,12/30/19 20:59,"792 11th St, San Francisco, CA 94016" +301484,Vareebadd Phone,1,400,12/19/19 15:31,"401 Park St, San Francisco, CA 94016" +301485,AAA Batteries (4-pack),1,2.99,12/13/19 10:58,"20 Dogwood St, Boston, MA 02215" +301486,Flatscreen TV,1,300,12/27/19 14:55,"855 Hickory St, Austin, TX 73301" +301487,AA Batteries (4-pack),2,3.84,12/19/19 12:27,"336 Willow St, Boston, MA 02215" +301488,Macbook Pro Laptop,1,1700,12/26/19 12:55,"693 11th St, Atlanta, GA 30301" +301489,Lightning Charging Cable,1,14.95,12/04/19 09:54,"821 Maple St, Los Angeles, CA 90001" +301490,20in Monitor,1,109.99,12/13/19 12:21,"239 Lakeview St, New York City, NY 10001" +301491,Apple Airpods Headphones,1,150,12/11/19 23:38,"96 Main St, Los Angeles, CA 90001" +301492,Macbook Pro Laptop,1,1700,12/18/19 07:51,"918 Main St, Los Angeles, CA 90001" +301493,AA Batteries (4-pack),1,3.84,12/15/19 17:53,"184 12th St, Dallas, TX 75001" +301494,Google Phone,1,600,12/31/19 10:01,"696 Adams St, San Francisco, CA 94016" +301495,Apple Airpods Headphones,1,150,12/26/19 13:02,"110 10th St, New York City, NY 10001" +301496,Wired Headphones,1,11.99,12/20/19 20:47,"420 Pine St, Los Angeles, CA 90001" +301497,Bose SoundSport Headphones,1,99.99,12/05/19 20:41,"578 Jackson St, San Francisco, CA 94016" +301498,USB-C Charging Cable,1,11.95,12/08/19 09:45,"338 6th St, San Francisco, CA 94016" +301499,Bose SoundSport Headphones,1,99.99,12/25/19 20:50,"948 Sunset St, Los Angeles, CA 90001" +301500,USB-C Charging Cable,1,11.95,12/19/19 09:19,"927 River St, Atlanta, GA 30301" +301500,Bose SoundSport Headphones,1,99.99,12/19/19 09:19,"927 River St, Atlanta, GA 30301" +301501,Apple Airpods Headphones,1,150,12/25/19 18:43,"647 Dogwood St, Los Angeles, CA 90001" +301502,USB-C Charging Cable,1,11.95,12/21/19 15:37,"135 Maple St, Boston, MA 02215" +301503,Wired Headphones,1,11.99,12/18/19 12:05,"95 Highland St, Atlanta, GA 30301" +301504,AA Batteries (4-pack),1,3.84,12/27/19 13:23,"818 River St, Atlanta, GA 30301" +301505,27in FHD Monitor,1,149.99,12/13/19 22:14,"181 Maple St, Boston, MA 02215" +301506,Apple Airpods Headphones,1,150,12/20/19 13:46,"16 Maple St, Austin, TX 73301" +301507,Wired Headphones,1,11.99,12/04/19 19:24,"47 Cedar St, Los Angeles, CA 90001" +301508,AAA Batteries (4-pack),2,2.99,12/28/19 23:50,"778 11th St, Dallas, TX 75001" +301509,AAA Batteries (4-pack),2,2.99,12/08/19 08:07,"702 Madison St, Boston, MA 02215" +301510,AA Batteries (4-pack),1,3.84,12/22/19 12:24,"905 8th St, New York City, NY 10001" +301511,Flatscreen TV,1,300,12/09/19 15:05,"104 Johnson St, New York City, NY 10001" +301512,Lightning Charging Cable,1,14.95,12/07/19 16:14,"530 Center St, Boston, MA 02215" +301513,Lightning Charging Cable,1,14.95,12/15/19 15:21,"772 Hill St, San Francisco, CA 94016" +301514,USB-C Charging Cable,1,11.95,12/12/19 19:01,"653 7th St, Atlanta, GA 30301" +301515,Vareebadd Phone,1,400,12/16/19 23:44,"824 Ridge St, San Francisco, CA 94016" +301516,27in 4K Gaming Monitor,1,389.99,12/04/19 19:08,"207 Hill St, Seattle, WA 98101" +301517,AAA Batteries (4-pack),1,2.99,12/20/19 09:39,"484 Jefferson St, Los Angeles, CA 90001" +301518,USB-C Charging Cable,1,11.95,12/29/19 12:03,"845 Johnson St, Austin, TX 73301" +301519,AA Batteries (4-pack),1,3.84,12/23/19 18:48,"802 Church St, San Francisco, CA 94016" +301520,27in 4K Gaming Monitor,1,389.99,12/17/19 00:10,"643 4th St, Los Angeles, CA 90001" +301521,Apple Airpods Headphones,1,150,12/27/19 18:59,"11 Church St, Dallas, TX 75001" +301522,iPhone,1,700,12/15/19 19:57,"59 Cedar St, Seattle, WA 98101" +301523,Wired Headphones,1,11.99,12/07/19 23:24,"954 Chestnut St, San Francisco, CA 94016" +301524,AA Batteries (4-pack),2,3.84,12/14/19 20:11,"683 Washington St, Atlanta, GA 30301" +301525,USB-C Charging Cable,1,11.95,12/28/19 21:02,"849 Cherry St, Los Angeles, CA 90001" +301526,ThinkPad Laptop,1,999.99,12/12/19 14:16,"997 Ridge St, Portland, OR 97035" +301527,Lightning Charging Cable,2,14.95,12/19/19 20:19,"130 Sunset St, Portland, OR 97035" +301528,AAA Batteries (4-pack),3,2.99,12/18/19 11:54,"295 West St, San Francisco, CA 94016" +301529,Apple Airpods Headphones,1,150,12/17/19 18:19,"151 Wilson St, San Francisco, CA 94016" +301530,Flatscreen TV,1,300,12/14/19 12:22,"716 Lakeview St, Austin, TX 73301" +301531,AAA Batteries (4-pack),4,2.99,12/18/19 09:58,"19 11th St, New York City, NY 10001" +301532,20in Monitor,1,109.99,12/25/19 19:37,"513 Walnut St, Seattle, WA 98101" +301533,27in 4K Gaming Monitor,1,389.99,12/03/19 10:29,"258 8th St, New York City, NY 10001" +301534,AA Batteries (4-pack),1,3.84,12/07/19 19:12,"920 River St, Seattle, WA 98101" +301535,Flatscreen TV,1,300,12/06/19 12:50,"756 13th St, Boston, MA 02215" +301536,Apple Airpods Headphones,1,150,12/28/19 20:40,"860 1st St, Austin, TX 73301" +301537,Lightning Charging Cable,1,14.95,12/10/19 13:48,"599 Wilson St, Atlanta, GA 30301" +301538,USB-C Charging Cable,1,11.95,12/07/19 21:40,"328 14th St, Dallas, TX 75001" +301539,AAA Batteries (4-pack),1,2.99,12/10/19 22:07,"509 7th St, Los Angeles, CA 90001" +301540,Apple Airpods Headphones,1,150,12/15/19 08:31,"393 Lincoln St, Dallas, TX 75001" +301541,USB-C Charging Cable,1,11.95,12/12/19 18:18,"722 11th St, Atlanta, GA 30301" +301542,Apple Airpods Headphones,1,150,12/17/19 21:38,"622 Wilson St, Boston, MA 02215" +301543,27in 4K Gaming Monitor,1,389.99,12/08/19 01:47,"717 Spruce St, Boston, MA 02215" +301544,Lightning Charging Cable,1,14.95,12/15/19 16:02,"819 Willow St, Dallas, TX 75001" +301545,Wired Headphones,1,11.99,12/17/19 16:21,"777 River St, San Francisco, CA 94016" +301546,USB-C Charging Cable,1,11.95,01/01/20 03:31,"988 Center St, Los Angeles, CA 90001" +301547,Apple Airpods Headphones,1,150,12/06/19 14:23,"180 6th St, San Francisco, CA 94016" +301548,Macbook Pro Laptop,1,1700,12/21/19 15:47,"181 10th St, Los Angeles, CA 90001" +301549,Flatscreen TV,1,300,12/05/19 12:39,"372 Walnut St, Los Angeles, CA 90001" +301550,Lightning Charging Cable,1,14.95,12/08/19 16:12,"465 Church St, Atlanta, GA 30301" +301551,USB-C Charging Cable,1,11.95,12/16/19 00:04,"637 Lake St, San Francisco, CA 94016" +301552,AAA Batteries (4-pack),1,2.99,12/02/19 17:41,"828 Spruce St, San Francisco, CA 94016" +301553,AA Batteries (4-pack),1,3.84,12/21/19 09:57,"537 8th St, Los Angeles, CA 90001" +301554,Bose SoundSport Headphones,1,99.99,12/18/19 20:20,"869 Forest St, San Francisco, CA 94016" +301555,iPhone,1,700,12/26/19 22:46,"590 South St, Los Angeles, CA 90001" +301556,USB-C Charging Cable,1,11.95,12/04/19 21:14,"576 Sunset St, Los Angeles, CA 90001" +301557,USB-C Charging Cable,2,11.95,12/04/19 22:59,"596 Main St, Boston, MA 02215" +301558,AA Batteries (4-pack),1,3.84,12/30/19 19:55,"860 Spruce St, San Francisco, CA 94016" +301559,Bose SoundSport Headphones,1,99.99,12/02/19 05:53,"246 South St, Los Angeles, CA 90001" +301560,Apple Airpods Headphones,1,150,12/14/19 18:50,"662 Walnut St, Boston, MA 02215" +301561,Wired Headphones,1,11.99,12/14/19 22:52,"493 Elm St, San Francisco, CA 94016" +301562,ThinkPad Laptop,1,999.99,12/03/19 21:21,"101 North St, Dallas, TX 75001" +301563,Lightning Charging Cable,1,14.95,12/01/19 12:16,"166 Jackson St, San Francisco, CA 94016" +301564,27in 4K Gaming Monitor,1,389.99,12/17/19 09:28,"363 13th St, New York City, NY 10001" +301565,Wired Headphones,1,11.99,12/22/19 16:47,"375 Elm St, Atlanta, GA 30301" +301566,Lightning Charging Cable,1,14.95,12/02/19 19:05,"185 Jackson St, Boston, MA 02215" +301567,Apple Airpods Headphones,1,150,12/14/19 17:45,"69 West St, Atlanta, GA 30301" +301568,Lightning Charging Cable,1,14.95,12/20/19 19:07,"933 Forest St, San Francisco, CA 94016" +301569,AAA Batteries (4-pack),2,2.99,12/18/19 14:07,"527 10th St, Austin, TX 73301" +301570,AAA Batteries (4-pack),1,2.99,12/27/19 15:23,"519 Jackson St, Los Angeles, CA 90001" +301571,AAA Batteries (4-pack),1,2.99,12/04/19 16:30,"867 Walnut St, Portland, OR 97035" +301572,ThinkPad Laptop,1,999.99,12/24/19 18:42,"117 Jackson St, San Francisco, CA 94016" +301573,Bose SoundSport Headphones,1,99.99,12/06/19 15:51,"713 Washington St, New York City, NY 10001" +301574,USB-C Charging Cable,1,11.95,12/18/19 00:01,"762 Meadow St, Portland, ME 04101" +301575,34in Ultrawide Monitor,1,379.99,12/02/19 14:30,"740 14th St, Austin, TX 73301" +301576,Wired Headphones,1,11.99,12/21/19 11:46,"871 Main St, San Francisco, CA 94016" +301577,Google Phone,1,600,12/08/19 12:47,"441 Cedar St, Boston, MA 02215" +301578,ThinkPad Laptop,1,999.99,12/26/19 18:11,"187 Center St, San Francisco, CA 94016" +301579,Bose SoundSport Headphones,1,99.99,12/16/19 14:16,"35 Park St, Boston, MA 02215" +301580,Bose SoundSport Headphones,1,99.99,12/20/19 20:21,"937 Hickory St, Austin, TX 73301" +301581,USB-C Charging Cable,1,11.95,12/12/19 23:12,"950 Cedar St, San Francisco, CA 94016" +301582,Lightning Charging Cable,1,14.95,12/25/19 23:24,"615 Cedar St, Atlanta, GA 30301" +301583,Wired Headphones,1,11.99,12/10/19 17:35,"299 West St, New York City, NY 10001" +301584,AA Batteries (4-pack),1,3.84,12/24/19 21:27,"274 Hill St, San Francisco, CA 94016" +301585,Bose SoundSport Headphones,1,99.99,12/29/19 00:31,"942 2nd St, Seattle, WA 98101" +301586,Wired Headphones,1,11.99,12/18/19 20:09,"723 North St, Boston, MA 02215" +301587,27in FHD Monitor,1,149.99,12/09/19 10:48,"183 Main St, Atlanta, GA 30301" +301588,USB-C Charging Cable,1,11.95,12/12/19 07:40,"492 1st St, Los Angeles, CA 90001" +301589,Wired Headphones,1,11.99,12/24/19 22:25,"182 South St, Los Angeles, CA 90001" +301590,USB-C Charging Cable,1,11.95,12/29/19 19:55,"736 Hill St, Atlanta, GA 30301" +301591,AA Batteries (4-pack),1,3.84,12/10/19 18:09,"969 Cedar St, New York City, NY 10001" +301592,AAA Batteries (4-pack),2,2.99,12/27/19 12:11,"738 Dogwood St, New York City, NY 10001" +301593,Macbook Pro Laptop,1,1700,12/06/19 13:14,"556 5th St, New York City, NY 10001" +301594,AAA Batteries (4-pack),3,2.99,12/28/19 10:03,"385 South St, Boston, MA 02215" +301595,Lightning Charging Cable,1,14.95,12/10/19 15:21,"929 Cedar St, San Francisco, CA 94016" +301596,USB-C Charging Cable,1,11.95,12/30/19 17:55,"66 12th St, Austin, TX 73301" +301597,AA Batteries (4-pack),1,3.84,12/09/19 14:49,"243 Maple St, San Francisco, CA 94016" +301598,27in 4K Gaming Monitor,1,389.99,12/04/19 15:13,"10 4th St, Austin, TX 73301" +301599,Vareebadd Phone,1,400,12/21/19 17:20,"703 Ridge St, New York City, NY 10001" +301600,Lightning Charging Cable,1,14.95,12/15/19 11:19,"591 Madison St, New York City, NY 10001" +301601,Bose SoundSport Headphones,1,99.99,12/01/19 12:20,"485 South St, New York City, NY 10001" +301602,AAA Batteries (4-pack),2,2.99,12/12/19 16:24,"827 Lakeview St, San Francisco, CA 94016" +301603,Lightning Charging Cable,1,14.95,12/01/19 13:00,"918 Cedar St, Los Angeles, CA 90001" +301604,Apple Airpods Headphones,1,150,12/10/19 23:46,"970 West St, Austin, TX 73301" +301605,AA Batteries (4-pack),1,3.84,12/04/19 20:26,"468 Highland St, Seattle, WA 98101" +301606,AA Batteries (4-pack),2,3.84,12/27/19 20:38,"925 Ridge St, Atlanta, GA 30301" +301607,Google Phone,1,600,12/14/19 01:38,"167 Dogwood St, Boston, MA 02215" +301608,ThinkPad Laptop,1,999.99,12/21/19 07:52,"578 Park St, Portland, OR 97035" +301609,USB-C Charging Cable,1,11.95,12/24/19 09:31,"851 Hill St, San Francisco, CA 94016" +301610,AAA Batteries (4-pack),1,2.99,12/09/19 08:43,"479 Walnut St, Boston, MA 02215" +301611,AA Batteries (4-pack),1,3.84,12/03/19 17:01,"198 Jackson St, Los Angeles, CA 90001" +301612,Wired Headphones,2,11.99,12/25/19 17:19,"131 Hill St, San Francisco, CA 94016" +301613,34in Ultrawide Monitor,1,379.99,12/25/19 16:36,"152 North St, Boston, MA 02215" +301614,ThinkPad Laptop,1,999.99,12/25/19 20:59,"471 11th St, Boston, MA 02215" +301615,AA Batteries (4-pack),7,3.84,12/26/19 13:56,"100 13th St, Los Angeles, CA 90001" +301616,Google Phone,1,600,12/27/19 10:15,"683 Chestnut St, New York City, NY 10001" +301616,iPhone,1,700,12/27/19 10:15,"683 Chestnut St, New York City, NY 10001" +301617,Macbook Pro Laptop,1,1700,12/07/19 23:36,"622 Johnson St, Los Angeles, CA 90001" +301618,AAA Batteries (4-pack),1,2.99,12/10/19 08:07,"186 Spruce St, Dallas, TX 75001" +301619,Google Phone,1,600,12/22/19 15:39,"636 Main St, San Francisco, CA 94016" +301620,USB-C Charging Cable,1,11.95,12/29/19 11:00,"899 11th St, Los Angeles, CA 90001" +301621,Bose SoundSport Headphones,1,99.99,12/29/19 03:08,"209 14th St, Dallas, TX 75001" +301622,Lightning Charging Cable,1,14.95,12/31/19 11:24,"480 Jefferson St, Los Angeles, CA 90001" +301623,iPhone,1,700,12/20/19 20:15,"789 West St, Austin, TX 73301" +301624,Apple Airpods Headphones,1,150,12/01/19 10:20,"51 Hickory St, New York City, NY 10001" +301625,USB-C Charging Cable,1,11.95,12/17/19 18:39,"786 West St, Atlanta, GA 30301" +301626,ThinkPad Laptop,1,999.99,12/22/19 12:21,"991 12th St, San Francisco, CA 94016" +301627,AAA Batteries (4-pack),1,2.99,12/18/19 08:16,"268 Jackson St, Atlanta, GA 30301" +301628,Bose SoundSport Headphones,1,99.99,12/28/19 09:21,"283 Church St, New York City, NY 10001" +301629,27in FHD Monitor,2,149.99,12/22/19 22:31,"543 5th St, New York City, NY 10001" +301630,AA Batteries (4-pack),2,3.84,12/23/19 00:26,"960 Church St, San Francisco, CA 94016" +301631,Lightning Charging Cable,1,14.95,12/01/19 21:59,"7 Jefferson St, San Francisco, CA 94016" +301632,ThinkPad Laptop,1,999.99,12/28/19 18:43,"210 Highland St, New York City, NY 10001" +301633,Lightning Charging Cable,1,14.95,12/10/19 01:09,"597 Highland St, Atlanta, GA 30301" +301634,Lightning Charging Cable,1,14.95,12/03/19 13:06,"307 Highland St, Boston, MA 02215" +301635,AAA Batteries (4-pack),1,2.99,12/18/19 23:02,"468 9th St, Dallas, TX 75001" +301636,Lightning Charging Cable,2,14.95,12/08/19 22:19,"372 Dogwood St, Portland, OR 97035" +301637,Lightning Charging Cable,2,14.95,12/16/19 09:36,"451 13th St, San Francisco, CA 94016" +301638,Bose SoundSport Headphones,1,99.99,12/01/19 07:09,"500 Highland St, Boston, MA 02215" +301639,Wired Headphones,1,11.99,12/18/19 12:40,"291 Dogwood St, Dallas, TX 75001" +301640,USB-C Charging Cable,1,11.95,12/14/19 07:46,"780 Hickory St, Los Angeles, CA 90001" +301641,AA Batteries (4-pack),1,3.84,12/22/19 20:29,"135 1st St, San Francisco, CA 94016" +301642,AAA Batteries (4-pack),1,2.99,12/04/19 18:54,"708 2nd St, San Francisco, CA 94016" +301643,AAA Batteries (4-pack),1,2.99,12/25/19 23:10,"279 Meadow St, Boston, MA 02215" +301644,Wired Headphones,1,11.99,12/15/19 10:31,"490 Johnson St, Portland, OR 97035" +301645,Bose SoundSport Headphones,1,99.99,12/27/19 13:05,"921 Hickory St, Los Angeles, CA 90001" +301646,27in FHD Monitor,1,149.99,12/19/19 11:59,"581 Center St, Los Angeles, CA 90001" +301647,Flatscreen TV,1,300,12/29/19 10:03,"215 10th St, San Francisco, CA 94016" +301648,Google Phone,1,600,12/27/19 06:28,"644 Washington St, Los Angeles, CA 90001" +301649,Bose SoundSport Headphones,1,99.99,12/01/19 23:17,"22 13th St, Los Angeles, CA 90001" +301650,Bose SoundSport Headphones,1,99.99,12/28/19 09:52,"728 11th St, New York City, NY 10001" +301651,iPhone,1,700,12/09/19 19:32,"631 Park St, Los Angeles, CA 90001" +301652,20in Monitor,1,109.99,12/08/19 11:40,"996 Hickory St, New York City, NY 10001" +301653,Flatscreen TV,1,300,12/28/19 22:54,"82 Chestnut St, Los Angeles, CA 90001" +301654,34in Ultrawide Monitor,1,379.99,12/04/19 21:01,"715 Washington St, San Francisco, CA 94016" +301655,ThinkPad Laptop,1,999.99,12/19/19 13:43,"637 North St, Austin, TX 73301" +301656,Apple Airpods Headphones,1,150,12/16/19 10:51,"145 13th St, San Francisco, CA 94016" +301657,Flatscreen TV,1,300,12/26/19 13:52,"367 9th St, Boston, MA 02215" +301658,AA Batteries (4-pack),1,3.84,12/10/19 23:50,"442 Hickory St, San Francisco, CA 94016" +301659,27in FHD Monitor,1,149.99,12/24/19 13:17,"139 11th St, San Francisco, CA 94016" +301660,Apple Airpods Headphones,1,150,12/24/19 10:46,"801 Meadow St, New York City, NY 10001" +301661,USB-C Charging Cable,2,11.95,12/06/19 10:11,"391 8th St, Dallas, TX 75001" +301662,AA Batteries (4-pack),1,3.84,12/26/19 20:39,"660 Johnson St, Austin, TX 73301" +301663,AAA Batteries (4-pack),1,2.99,12/14/19 13:27,"229 Lakeview St, New York City, NY 10001" +301664,USB-C Charging Cable,1,11.95,12/30/19 19:51,"8 9th St, San Francisco, CA 94016" +301665,AA Batteries (4-pack),3,3.84,12/18/19 12:57,"290 2nd St, Atlanta, GA 30301" +301666,Flatscreen TV,1,300,12/13/19 00:31,"183 14th St, Austin, TX 73301" +301667,iPhone,1,700,12/29/19 17:41,"365 14th St, Los Angeles, CA 90001" +301667,Lightning Charging Cable,1,14.95,12/29/19 17:41,"365 14th St, Los Angeles, CA 90001" +301668,Flatscreen TV,1,300,12/12/19 19:12,"983 Lake St, Portland, ME 04101" +301669,AA Batteries (4-pack),2,3.84,12/24/19 21:31,"970 11th St, San Francisco, CA 94016" +301670,AAA Batteries (4-pack),1,2.99,12/07/19 14:20,"192 Meadow St, San Francisco, CA 94016" +301671,Wired Headphones,1,11.99,12/14/19 16:29,"131 Madison St, San Francisco, CA 94016" +301672,iPhone,1,700,12/12/19 15:30,"649 6th St, San Francisco, CA 94016" +301673,AAA Batteries (4-pack),1,2.99,12/16/19 21:03,"833 Main St, San Francisco, CA 94016" +301674,Wired Headphones,1,11.99,12/29/19 19:56,"518 Center St, San Francisco, CA 94016" +301675,USB-C Charging Cable,1,11.95,12/26/19 13:54,"523 Lincoln St, Dallas, TX 75001" +301676,ThinkPad Laptop,1,999.99,12/20/19 11:04,"738 Jackson St, Seattle, WA 98101" +301677,27in FHD Monitor,1,149.99,12/16/19 13:57,"214 Elm St, New York City, NY 10001" +301678,27in FHD Monitor,1,149.99,12/25/19 19:39,"888 Church St, New York City, NY 10001" +301679,Bose SoundSport Headphones,1,99.99,12/08/19 22:15,"854 Pine St, Los Angeles, CA 90001" +301680,AAA Batteries (4-pack),2,2.99,12/31/19 10:54,"326 Lakeview St, Seattle, WA 98101" +301681,20in Monitor,1,109.99,12/14/19 20:58,"778 10th St, San Francisco, CA 94016" +301682,27in 4K Gaming Monitor,1,389.99,12/07/19 18:52,"983 South St, New York City, NY 10001" +301683,AA Batteries (4-pack),1,3.84,12/01/19 20:50,"623 Lake St, Seattle, WA 98101" +301684,Lightning Charging Cable,1,14.95,12/03/19 11:12,"666 Main St, Portland, OR 97035" +301685,27in FHD Monitor,1,149.99,12/02/19 12:27,"654 West St, Atlanta, GA 30301" +301686,Apple Airpods Headphones,1,150,12/18/19 22:53,"828 Washington St, San Francisco, CA 94016" +301687,AA Batteries (4-pack),2,3.84,12/08/19 03:41,"519 2nd St, San Francisco, CA 94016" +301688,ThinkPad Laptop,1,999.99,12/16/19 23:01,"684 8th St, San Francisco, CA 94016" +301689,Lightning Charging Cable,1,14.95,12/14/19 05:43,"989 Cherry St, Atlanta, GA 30301" +301690,Lightning Charging Cable,1,14.95,12/19/19 17:58,"126 12th St, Dallas, TX 75001" +301691,Apple Airpods Headphones,1,150,12/23/19 08:58,"557 13th St, Los Angeles, CA 90001" +301692,27in 4K Gaming Monitor,1,389.99,12/05/19 14:28,"401 Jackson St, Los Angeles, CA 90001" +301693,USB-C Charging Cable,1,11.95,12/21/19 09:31,"241 Adams St, Los Angeles, CA 90001" +301694,AAA Batteries (4-pack),1,2.99,12/19/19 17:58,"937 Wilson St, San Francisco, CA 94016" +301695,Google Phone,1,600,12/08/19 08:56,"107 Lake St, New York City, NY 10001" +301696,Lightning Charging Cable,1,14.95,12/28/19 05:44,"724 Chestnut St, Los Angeles, CA 90001" +301697,34in Ultrawide Monitor,1,379.99,12/10/19 11:09,"24 Hickory St, Los Angeles, CA 90001" +301697,USB-C Charging Cable,1,11.95,12/10/19 11:09,"24 Hickory St, Los Angeles, CA 90001" +301698,Bose SoundSport Headphones,1,99.99,12/17/19 01:25,"466 South St, Los Angeles, CA 90001" +301699,27in FHD Monitor,1,149.99,12/01/19 19:54,"145 9th St, Atlanta, GA 30301" +301700,USB-C Charging Cable,1,11.95,12/16/19 18:18,"302 14th St, Boston, MA 02215" +301701,iPhone,1,700,12/14/19 12:05,"691 River St, Austin, TX 73301" +301702,AAA Batteries (4-pack),1,2.99,12/16/19 20:00,"833 13th St, New York City, NY 10001" +301703,USB-C Charging Cable,1,11.95,12/18/19 20:02,"102 Pine St, Dallas, TX 75001" +301704,USB-C Charging Cable,2,11.95,12/17/19 09:30,"613 North St, New York City, NY 10001" +301705,Wired Headphones,1,11.99,12/15/19 15:55,"766 Madison St, Los Angeles, CA 90001" +301706,USB-C Charging Cable,1,11.95,12/09/19 01:01,"31 River St, Atlanta, GA 30301" +301707,USB-C Charging Cable,1,11.95,12/21/19 19:47,"140 12th St, Los Angeles, CA 90001" +301708,USB-C Charging Cable,1,11.95,12/03/19 12:59,"313 12th St, Boston, MA 02215" +301709,Google Phone,1,600,12/11/19 21:12,"373 5th St, San Francisco, CA 94016" +301709,USB-C Charging Cable,1,11.95,12/11/19 21:12,"373 5th St, San Francisco, CA 94016" +301710,Lightning Charging Cable,1,14.95,12/18/19 21:14,"238 Main St, San Francisco, CA 94016" +301711,USB-C Charging Cable,1,11.95,12/18/19 13:56,"393 Willow St, San Francisco, CA 94016" +301712,20in Monitor,1,109.99,12/13/19 23:00,"891 Wilson St, Seattle, WA 98101" +301713,Apple Airpods Headphones,1,150,12/19/19 19:07,"933 Forest St, Seattle, WA 98101" +301714,Macbook Pro Laptop,1,1700,12/27/19 15:49,"28 13th St, New York City, NY 10001" +301715,AA Batteries (4-pack),2,3.84,12/08/19 15:25,"604 1st St, San Francisco, CA 94016" +301716,Macbook Pro Laptop,1,1700,12/19/19 17:21,"260 Meadow St, Dallas, TX 75001" +301717,AAA Batteries (4-pack),3,2.99,12/19/19 11:31,"455 14th St, Dallas, TX 75001" +301718,ThinkPad Laptop,1,999.99,12/30/19 14:35,"211 South St, Portland, OR 97035" +301719,Bose SoundSport Headphones,1,99.99,12/28/19 12:35,"884 8th St, San Francisco, CA 94016" +301720,AAA Batteries (4-pack),1,2.99,12/12/19 17:22,"448 9th St, Austin, TX 73301" +301721,Wired Headphones,1,11.99,12/23/19 09:56,"152 5th St, San Francisco, CA 94016" +301722,AAA Batteries (4-pack),1,2.99,12/27/19 10:35,"881 Elm St, San Francisco, CA 94016" +301723,Apple Airpods Headphones,1,150,12/03/19 10:20,"657 South St, Los Angeles, CA 90001" +301724,AA Batteries (4-pack),1,3.84,12/31/19 13:01,"498 Main St, Seattle, WA 98101" +301725,AAA Batteries (4-pack),1,2.99,12/20/19 22:02,"290 Main St, Los Angeles, CA 90001" +301726,ThinkPad Laptop,1,999.99,12/22/19 22:47,"757 Elm St, Los Angeles, CA 90001" +301727,Bose SoundSport Headphones,1,99.99,12/16/19 00:13,"404 Meadow St, San Francisco, CA 94016" +301728,USB-C Charging Cable,1,11.95,12/20/19 16:12,"738 Park St, Los Angeles, CA 90001" +301729,Apple Airpods Headphones,1,150,12/15/19 17:20,"838 14th St, Los Angeles, CA 90001" +301730,Apple Airpods Headphones,1,150,12/16/19 09:03,"466 Forest St, Boston, MA 02215" +301731,Lightning Charging Cable,1,14.95,12/20/19 21:38,"680 10th St, San Francisco, CA 94016" +301732,AA Batteries (4-pack),4,3.84,12/21/19 12:32,"584 Church St, San Francisco, CA 94016" +301733,AA Batteries (4-pack),1,3.84,12/12/19 08:19,"433 9th St, Boston, MA 02215" +301734,AAA Batteries (4-pack),2,2.99,12/11/19 11:35,"772 1st St, San Francisco, CA 94016" +301734,Macbook Pro Laptop,1,1700,12/11/19 11:35,"772 1st St, San Francisco, CA 94016" +301735,Lightning Charging Cable,1,14.95,12/10/19 20:44,"907 West St, Atlanta, GA 30301" +301736,Apple Airpods Headphones,1,150,12/20/19 09:07,"127 Elm St, Boston, MA 02215" +301737,AA Batteries (4-pack),1,3.84,12/19/19 13:06,"771 11th St, Atlanta, GA 30301" +301738,27in FHD Monitor,1,149.99,12/24/19 13:05,"815 Hill St, Boston, MA 02215" +301739,Lightning Charging Cable,1,14.95,12/07/19 09:15,"673 Spruce St, Los Angeles, CA 90001" +301740,AA Batteries (4-pack),1,3.84,12/22/19 00:18,"828 Church St, San Francisco, CA 94016" +301741,Wired Headphones,1,11.99,12/18/19 09:23,"648 Adams St, San Francisco, CA 94016" +301742,Lightning Charging Cable,1,14.95,12/05/19 21:15,"32 Hill St, Seattle, WA 98101" +301743,20in Monitor,1,109.99,12/26/19 15:45,"224 8th St, Los Angeles, CA 90001" +301744,AAA Batteries (4-pack),2,2.99,12/14/19 11:42,"591 Lakeview St, Seattle, WA 98101" +301745,Lightning Charging Cable,2,14.95,12/17/19 17:43,"694 Highland St, New York City, NY 10001" +301746,Wired Headphones,1,11.99,12/05/19 17:03,"497 Church St, San Francisco, CA 94016" +301747,ThinkPad Laptop,1,999.99,12/20/19 08:28,"793 River St, New York City, NY 10001" +301748,34in Ultrawide Monitor,1,379.99,12/11/19 18:22,"454 Forest St, Seattle, WA 98101" +301748,34in Ultrawide Monitor,1,379.99,12/11/19 18:22,"454 Forest St, Seattle, WA 98101" +301749,AAA Batteries (4-pack),2,2.99,12/09/19 16:18,"563 6th St, Portland, OR 97035" +301750,Vareebadd Phone,1,400,12/10/19 15:57,"218 Jefferson St, New York City, NY 10001" +301751,iPhone,1,700,12/06/19 17:20,"381 Spruce St, Los Angeles, CA 90001" +301752,Bose SoundSport Headphones,1,99.99,12/24/19 08:03,"629 2nd St, Los Angeles, CA 90001" +301753,AAA Batteries (4-pack),1,2.99,12/19/19 19:47,"63 4th St, San Francisco, CA 94016" +301754,AA Batteries (4-pack),2,3.84,12/26/19 00:30,"644 Meadow St, New York City, NY 10001" +301755,AAA Batteries (4-pack),3,2.99,12/30/19 15:10,"740 2nd St, Austin, TX 73301" +301756,AA Batteries (4-pack),1,3.84,12/29/19 12:21,"28 Highland St, Los Angeles, CA 90001" +301757,AA Batteries (4-pack),1,3.84,12/04/19 21:13,"404 Adams St, San Francisco, CA 94016" +301758,Apple Airpods Headphones,1,150,12/30/19 00:50,"185 2nd St, San Francisco, CA 94016" +301759,AA Batteries (4-pack),1,3.84,12/23/19 15:06,"972 Maple St, San Francisco, CA 94016" +301760,Bose SoundSport Headphones,1,99.99,12/17/19 09:01,"847 Ridge St, Atlanta, GA 30301" +301761,ThinkPad Laptop,1,999.99,12/01/19 05:44,"153 Ridge St, Los Angeles, CA 90001" +301762,Bose SoundSport Headphones,1,99.99,12/05/19 01:58,"963 Lake St, Seattle, WA 98101" +301763,Wired Headphones,1,11.99,12/06/19 21:53,"649 Walnut St, Boston, MA 02215" +301764,AA Batteries (4-pack),1,3.84,12/25/19 19:57,"108 11th St, Boston, MA 02215" +301765,AA Batteries (4-pack),4,3.84,12/15/19 20:27,"80 6th St, Austin, TX 73301" +301766,27in FHD Monitor,1,149.99,12/19/19 11:09,"798 7th St, Dallas, TX 75001" +301767,Apple Airpods Headphones,1,150,12/23/19 00:17,"376 Cherry St, Dallas, TX 75001" +301768,USB-C Charging Cable,1,11.95,12/03/19 12:26,"941 Hill St, Dallas, TX 75001" +301769,AA Batteries (4-pack),1,3.84,12/25/19 18:30,"829 Meadow St, Portland, OR 97035" +301770,iPhone,1,700,12/24/19 17:42,"856 Cherry St, Austin, TX 73301" +301770,Lightning Charging Cable,1,14.95,12/24/19 17:42,"856 Cherry St, Austin, TX 73301" +301771,Wired Headphones,1,11.99,12/30/19 00:53,"492 Cherry St, Atlanta, GA 30301" +301772,Lightning Charging Cable,1,14.95,12/31/19 04:18,"426 9th St, San Francisco, CA 94016" +301773,27in FHD Monitor,1,149.99,12/06/19 10:11,"200 Cherry St, New York City, NY 10001" +301774,Lightning Charging Cable,1,14.95,12/20/19 20:22,"39 Willow St, Los Angeles, CA 90001" +301775,AA Batteries (4-pack),1,3.84,12/07/19 13:24,"716 1st St, Los Angeles, CA 90001" +301776,Wired Headphones,1,11.99,12/13/19 16:43,"937 Cherry St, San Francisco, CA 94016" +301777,AA Batteries (4-pack),1,3.84,12/06/19 22:18,"128 5th St, San Francisco, CA 94016" +301778,AAA Batteries (4-pack),1,2.99,12/14/19 16:25,"650 11th St, Atlanta, GA 30301" +301779,Wired Headphones,1,11.99,12/06/19 11:38,"302 Johnson St, San Francisco, CA 94016" +301780,AA Batteries (4-pack),1,3.84,12/08/19 18:58,"346 9th St, San Francisco, CA 94016" +301781,Apple Airpods Headphones,1,150,12/28/19 10:05,"445 1st St, San Francisco, CA 94016" +301782,AAA Batteries (4-pack),2,2.99,12/22/19 11:27,"725 Park St, Boston, MA 02215" +301783,AAA Batteries (4-pack),1,2.99,12/05/19 12:04,"162 North St, Austin, TX 73301" +301784,iPhone,1,700,12/29/19 06:32,"865 5th St, Portland, OR 97035" +301784,Lightning Charging Cable,1,14.95,12/29/19 06:32,"865 5th St, Portland, OR 97035" +301785,Bose SoundSport Headphones,1,99.99,12/20/19 17:44,"880 Lincoln St, San Francisco, CA 94016" +301786,AA Batteries (4-pack),1,3.84,12/01/19 21:27,"286 Elm St, New York City, NY 10001" +301787,AA Batteries (4-pack),1,3.84,12/25/19 11:07,"911 Chestnut St, Boston, MA 02215" +301788,27in 4K Gaming Monitor,1,389.99,12/26/19 08:31,"342 Hill St, Seattle, WA 98101" +301789,20in Monitor,1,109.99,12/25/19 23:50,"286 Lincoln St, Dallas, TX 75001" +301790,AAA Batteries (4-pack),1,2.99,12/23/19 21:17,"995 6th St, Boston, MA 02215" +301791,AAA Batteries (4-pack),1,2.99,12/26/19 20:48,"275 5th St, Boston, MA 02215" +301792,Macbook Pro Laptop,1,1700,12/20/19 03:50,"492 River St, Seattle, WA 98101" +301793,USB-C Charging Cable,1,11.95,12/07/19 16:14,"605 Chestnut St, San Francisco, CA 94016" +301794,Macbook Pro Laptop,1,1700,12/28/19 21:50,"396 11th St, Seattle, WA 98101" +301795,AA Batteries (4-pack),1,3.84,12/06/19 22:31,"158 6th St, Los Angeles, CA 90001" +301796,27in FHD Monitor,1,149.99,12/09/19 21:56,"788 Pine St, San Francisco, CA 94016" +301797,Wired Headphones,1,11.99,12/31/19 15:43,"38 Willow St, New York City, NY 10001" +301798,Wired Headphones,1,11.99,12/21/19 09:46,"128 2nd St, Los Angeles, CA 90001" +301799,Flatscreen TV,1,300,12/10/19 20:58,"506 1st St, Dallas, TX 75001" +301800,Lightning Charging Cable,1,14.95,12/14/19 10:35,"556 River St, Portland, OR 97035" +301801,USB-C Charging Cable,1,11.95,12/22/19 13:52,"719 Elm St, Atlanta, GA 30301" +301802,Vareebadd Phone,1,400,12/31/19 12:40,"731 Lakeview St, Boston, MA 02215" +301803,AAA Batteries (4-pack),1,2.99,12/28/19 12:45,"251 Main St, Austin, TX 73301" +301804,Wired Headphones,1,11.99,12/08/19 14:29,"591 River St, New York City, NY 10001" +301805,AA Batteries (4-pack),1,3.84,12/29/19 17:15,"953 Cherry St, Atlanta, GA 30301" +301806,34in Ultrawide Monitor,1,379.99,12/31/19 16:13,"956 Walnut St, San Francisco, CA 94016" +301807,20in Monitor,1,109.99,12/29/19 22:51,"635 Meadow St, Atlanta, GA 30301" +301808,Lightning Charging Cable,1,14.95,12/31/19 15:25,"531 4th St, Los Angeles, CA 90001" +301809,27in FHD Monitor,1,149.99,12/22/19 11:15,"162 14th St, Seattle, WA 98101" +301810,27in FHD Monitor,1,149.99,12/26/19 08:32,"213 Adams St, New York City, NY 10001" +301811,Wired Headphones,1,11.99,12/04/19 12:33,"506 4th St, Atlanta, GA 30301" +301812,USB-C Charging Cable,1,11.95,12/15/19 17:06,"96 Highland St, Los Angeles, CA 90001" +301813,USB-C Charging Cable,1,11.95,12/28/19 19:09,"409 Spruce St, San Francisco, CA 94016" +301814,USB-C Charging Cable,1,11.95,12/12/19 20:06,"610 Adams St, Atlanta, GA 30301" +301815,AAA Batteries (4-pack),2,2.99,12/26/19 20:20,"915 Lake St, Seattle, WA 98101" +301816,AA Batteries (4-pack),1,3.84,12/16/19 14:06,"836 Lake St, Los Angeles, CA 90001" +301817,Flatscreen TV,1,300,12/18/19 18:25,"770 Maple St, San Francisco, CA 94016" +301818,AA Batteries (4-pack),1,3.84,12/02/19 16:34,"775 Wilson St, New York City, NY 10001" +301819,Wired Headphones,1,11.99,12/10/19 12:29,"279 Spruce St, Los Angeles, CA 90001" +301820,USB-C Charging Cable,1,11.95,12/15/19 07:50,"116 Lake St, New York City, NY 10001" +301821,USB-C Charging Cable,1,11.95,12/31/19 19:12,"652 Park St, New York City, NY 10001" +301822,Bose SoundSport Headphones,1,99.99,12/29/19 21:44,"431 Lakeview St, Austin, TX 73301" +301823,Macbook Pro Laptop,1,1700,12/26/19 09:20,"151 North St, Seattle, WA 98101" +301824,Apple Airpods Headphones,1,150,12/25/19 08:23,"727 12th St, Seattle, WA 98101" +301825,Lightning Charging Cable,1,14.95,12/29/19 08:00,"779 11th St, New York City, NY 10001" +301826,Apple Airpods Headphones,1,150,12/18/19 02:40,"931 Maple St, Los Angeles, CA 90001" +301827,USB-C Charging Cable,1,11.95,12/31/19 23:12,"724 Lakeview St, Dallas, TX 75001" +301828,Macbook Pro Laptop,1,1700,12/20/19 09:29,"921 Forest St, San Francisco, CA 94016" +301829,27in 4K Gaming Monitor,1,389.99,12/22/19 19:37,"800 1st St, San Francisco, CA 94016" +301830,Bose SoundSport Headphones,1,99.99,12/05/19 10:37,"905 Pine St, New York City, NY 10001" +301831,Flatscreen TV,1,300,12/11/19 18:42,"335 10th St, Boston, MA 02215" +301832,Apple Airpods Headphones,1,150,12/24/19 20:35,"112 5th St, San Francisco, CA 94016" +301833,Apple Airpods Headphones,1,150,12/12/19 23:23,"410 Jackson St, San Francisco, CA 94016" +301834,AAA Batteries (4-pack),3,2.99,12/28/19 11:50,"588 Ridge St, Los Angeles, CA 90001" +301835,Wired Headphones,1,11.99,12/27/19 23:35,"670 Sunset St, New York City, NY 10001" +301836,Lightning Charging Cable,1,14.95,12/27/19 15:14,"170 10th St, Los Angeles, CA 90001" +301837,AAA Batteries (4-pack),2,2.99,12/23/19 20:37,"186 4th St, Austin, TX 73301" +301838,27in 4K Gaming Monitor,1,389.99,12/09/19 11:20,"448 South St, Austin, TX 73301" +301839,AAA Batteries (4-pack),1,2.99,12/14/19 19:12,"986 Adams St, Seattle, WA 98101" +301840,Wired Headphones,1,11.99,12/01/19 20:52,"733 11th St, Seattle, WA 98101" +301841,USB-C Charging Cable,1,11.95,12/17/19 14:51,"993 West St, Portland, OR 97035" +301842,Lightning Charging Cable,1,14.95,12/04/19 22:21,"668 1st St, San Francisco, CA 94016" +301843,Lightning Charging Cable,2,14.95,12/15/19 19:14,"570 13th St, San Francisco, CA 94016" +301844,AAA Batteries (4-pack),1,2.99,12/04/19 13:12,"373 9th St, Los Angeles, CA 90001" +301845,Lightning Charging Cable,1,14.95,12/31/19 15:23,"980 Hickory St, Boston, MA 02215" +301846,AAA Batteries (4-pack),2,2.99,12/09/19 11:53,"280 Pine St, Boston, MA 02215" +301847,20in Monitor,1,109.99,12/27/19 15:00,"821 5th St, Boston, MA 02215" +301848,Google Phone,1,600,12/19/19 23:34,"496 Forest St, Austin, TX 73301" +301848,USB-C Charging Cable,1,11.95,12/19/19 23:34,"496 Forest St, Austin, TX 73301" +301849,27in FHD Monitor,1,149.99,12/11/19 11:29,"905 Lake St, Boston, MA 02215" +301850,USB-C Charging Cable,1,11.95,12/12/19 00:54,"699 Park St, Boston, MA 02215" +301851,34in Ultrawide Monitor,1,379.99,12/02/19 17:01,"413 6th St, Boston, MA 02215" +301852,34in Ultrawide Monitor,1,379.99,12/06/19 21:18,"171 Lincoln St, Boston, MA 02215" +301853,AAA Batteries (4-pack),2,2.99,12/24/19 16:25,"965 Washington St, Seattle, WA 98101" +301854,Lightning Charging Cable,1,14.95,12/01/19 09:08,"187 West St, San Francisco, CA 94016" +301855,Flatscreen TV,1,300,12/21/19 13:08,"74 Wilson St, San Francisco, CA 94016" +301856,27in FHD Monitor,1,149.99,12/12/19 14:55,"892 Jefferson St, Los Angeles, CA 90001" +301857,27in 4K Gaming Monitor,1,389.99,12/20/19 20:03,"574 Lincoln St, San Francisco, CA 94016" +301858,27in FHD Monitor,1,149.99,12/10/19 09:07,"535 Walnut St, San Francisco, CA 94016" +301859,Lightning Charging Cable,1,14.95,12/18/19 16:52,"840 Walnut St, Los Angeles, CA 90001" +301860,27in 4K Gaming Monitor,1,389.99,12/01/19 02:11,"10 North St, Boston, MA 02215" +301861,27in 4K Gaming Monitor,1,389.99,12/23/19 14:12,"505 12th St, Seattle, WA 98101" +301862,Wired Headphones,1,11.99,12/06/19 23:28,"946 Ridge St, San Francisco, CA 94016" +301863,Macbook Pro Laptop,1,1700,12/21/19 14:11,"439 Ridge St, Boston, MA 02215" +301864,Wired Headphones,1,11.99,12/17/19 11:24,"297 Lincoln St, New York City, NY 10001" +301865,Apple Airpods Headphones,1,150,12/22/19 09:18,"784 Cedar St, New York City, NY 10001" +301866,USB-C Charging Cable,1,11.95,12/11/19 10:30,"55 5th St, New York City, NY 10001" +301867,Google Phone,1,600,12/24/19 10:41,"58 Highland St, Los Angeles, CA 90001" +301868,Flatscreen TV,1,300,12/10/19 10:41,"527 2nd St, San Francisco, CA 94016" +301869,AA Batteries (4-pack),1,3.84,12/12/19 07:21,"48 Pine St, New York City, NY 10001" +301870,AAA Batteries (4-pack),2,2.99,12/23/19 20:08,"56 12th St, San Francisco, CA 94016" +301871,AAA Batteries (4-pack),1,2.99,12/20/19 18:33,"817 Forest St, Atlanta, GA 30301" +301872,Wired Headphones,1,11.99,12/26/19 13:10,"77 Maple St, Dallas, TX 75001" +301873,iPhone,1,700,12/03/19 18:47,"166 Johnson St, Portland, OR 97035" +301874,AA Batteries (4-pack),2,3.84,12/21/19 13:27,"51 Adams St, Boston, MA 02215" +301875,AAA Batteries (4-pack),1,2.99,12/21/19 17:36,"743 Jefferson St, Boston, MA 02215" +301876,Lightning Charging Cable,1,14.95,12/11/19 14:10,"658 Pine St, San Francisco, CA 94016" +301877,Apple Airpods Headphones,1,150,12/28/19 09:58,"666 Jackson St, Seattle, WA 98101" +301878,USB-C Charging Cable,1,11.95,12/31/19 13:59,"514 Cedar St, San Francisco, CA 94016" +301879,Wired Headphones,1,11.99,12/13/19 15:47,"988 Meadow St, Dallas, TX 75001" +301880,Lightning Charging Cable,1,14.95,12/25/19 12:00,"790 Lincoln St, Los Angeles, CA 90001" +301881,Wired Headphones,1,11.99,12/29/19 20:38,"99 Hill St, Atlanta, GA 30301" +301882,iPhone,1,700,12/15/19 22:46,"310 River St, Seattle, WA 98101" +301883,iPhone,1,700,12/25/19 17:55,"407 South St, Boston, MA 02215" +301884,Lightning Charging Cable,1,14.95,12/27/19 13:09,"185 Maple St, San Francisco, CA 94016" +301885,ThinkPad Laptop,1,999.99,12/09/19 07:32,"75 Pine St, San Francisco, CA 94016" +301886,Wired Headphones,1,11.99,12/02/19 18:36,"231 Jackson St, New York City, NY 10001" +301887,USB-C Charging Cable,2,11.95,12/24/19 09:19,"204 12th St, San Francisco, CA 94016" +301888,USB-C Charging Cable,2,11.95,12/27/19 20:00,"862 Willow St, Portland, ME 04101" +301889,AA Batteries (4-pack),1,3.84,12/04/19 16:50,"550 Center St, New York City, NY 10001" +301890,Wired Headphones,1,11.99,12/18/19 21:28,"839 Ridge St, New York City, NY 10001" +301891,Bose SoundSport Headphones,1,99.99,12/14/19 20:01,"962 11th St, Portland, OR 97035" +301892,27in FHD Monitor,1,149.99,12/30/19 22:16,"874 River St, Boston, MA 02215" +301893,Apple Airpods Headphones,1,150,12/23/19 12:34,"83 Madison St, New York City, NY 10001" +301894,iPhone,1,700,12/22/19 11:28,"267 Lake St, New York City, NY 10001" +301895,AA Batteries (4-pack),1,3.84,12/21/19 21:21,"760 Meadow St, New York City, NY 10001" +301896,USB-C Charging Cable,2,11.95,12/31/19 22:29,"858 South St, Dallas, TX 75001" +301897,Bose SoundSport Headphones,1,99.99,12/19/19 20:22,"326 Hickory St, Los Angeles, CA 90001" +301898,Wired Headphones,1,11.99,12/21/19 23:07,"797 North St, Boston, MA 02215" +301899,Apple Airpods Headphones,1,150,12/23/19 11:49,"153 Center St, Portland, OR 97035" +301900,Apple Airpods Headphones,1,150,12/18/19 17:05,"816 Dogwood St, Boston, MA 02215" +301901,Macbook Pro Laptop,1,1700,12/03/19 22:54,"120 2nd St, San Francisco, CA 94016" +301902,20in Monitor,1,109.99,12/05/19 21:14,"353 14th St, Dallas, TX 75001" +301903,AAA Batteries (4-pack),1,2.99,12/20/19 12:49,"542 Lake St, San Francisco, CA 94016" +301904,AAA Batteries (4-pack),1,2.99,12/25/19 10:07,"70 Cherry St, Los Angeles, CA 90001" +301905,34in Ultrawide Monitor,1,379.99,12/31/19 20:04,"603 South St, San Francisco, CA 94016" +301906,27in FHD Monitor,1,149.99,12/06/19 18:08,"67 Forest St, Boston, MA 02215" +301907,Apple Airpods Headphones,1,150,12/04/19 09:19,"634 Forest St, Portland, OR 97035" +301908,USB-C Charging Cable,1,11.95,12/26/19 18:31,"510 Pine St, San Francisco, CA 94016" +301909,Lightning Charging Cable,1,14.95,12/15/19 16:39,"968 Hill St, Atlanta, GA 30301" +301910,AA Batteries (4-pack),1,3.84,12/25/19 18:55,"577 Ridge St, Boston, MA 02215" +301910,Apple Airpods Headphones,1,150,12/25/19 18:55,"577 Ridge St, Boston, MA 02215" +301911,Lightning Charging Cable,3,14.95,12/05/19 12:47,"548 12th St, Atlanta, GA 30301" +301912,iPhone,1,700,12/19/19 14:25,"218 Pine St, Dallas, TX 75001" +301912,Lightning Charging Cable,1,14.95,12/19/19 14:25,"218 Pine St, Dallas, TX 75001" +301913,Flatscreen TV,1,300,12/27/19 10:09,"216 Church St, Boston, MA 02215" +301914,Bose SoundSport Headphones,1,99.99,12/29/19 13:31,"562 Willow St, San Francisco, CA 94016" +301915,34in Ultrawide Monitor,1,379.99,12/22/19 12:02,"822 Main St, Boston, MA 02215" +301916,Bose SoundSport Headphones,1,99.99,12/22/19 22:56,"618 Hickory St, San Francisco, CA 94016" +301917,Wired Headphones,1,11.99,12/10/19 07:52,"141 North St, Atlanta, GA 30301" +301918,27in FHD Monitor,1,149.99,12/30/19 13:33,"258 2nd St, San Francisco, CA 94016" +301919,Lightning Charging Cable,1,14.95,12/24/19 18:42,"482 13th St, New York City, NY 10001" +301920,ThinkPad Laptop,1,999.99,12/12/19 22:49,"942 Main St, San Francisco, CA 94016" +301921,ThinkPad Laptop,1,999.99,12/28/19 10:16,"878 2nd St, New York City, NY 10001" +301922,AA Batteries (4-pack),1,3.84,12/15/19 17:12,"335 Walnut St, San Francisco, CA 94016" +301923,Wired Headphones,1,11.99,12/19/19 13:47,"772 Washington St, Los Angeles, CA 90001" +301924,AA Batteries (4-pack),3,3.84,12/31/19 13:07,"914 Willow St, Portland, OR 97035" +301925,AAA Batteries (4-pack),3,2.99,12/12/19 12:36,"992 8th St, Portland, OR 97035" +301926,AA Batteries (4-pack),1,3.84,12/17/19 21:49,"975 Sunset St, Boston, MA 02215" +301927,AA Batteries (4-pack),1,3.84,12/22/19 13:07,"362 South St, Boston, MA 02215" +301928,AAA Batteries (4-pack),1,2.99,12/17/19 14:12,"877 Wilson St, Boston, MA 02215" +301929,27in FHD Monitor,1,149.99,12/12/19 23:17,"211 7th St, Atlanta, GA 30301" +301930,USB-C Charging Cable,1,11.95,12/03/19 22:25,"136 Elm St, Los Angeles, CA 90001" +301931,Lightning Charging Cable,1,14.95,12/16/19 04:06,"460 2nd St, Dallas, TX 75001" +301932,AAA Batteries (4-pack),4,2.99,12/27/19 16:25,"778 Dogwood St, Portland, OR 97035" +301933,iPhone,1,700,12/12/19 17:06,"411 2nd St, New York City, NY 10001" +301934,Flatscreen TV,1,300,12/02/19 21:50,"136 Willow St, Boston, MA 02215" +301935,Vareebadd Phone,1,400,12/14/19 18:12,"324 Highland St, New York City, NY 10001" +301936,Lightning Charging Cable,1,14.95,12/30/19 19:19,"69 8th St, San Francisco, CA 94016" +301937,iPhone,1,700,12/20/19 11:15,"905 River St, New York City, NY 10001" +301937,Lightning Charging Cable,1,14.95,12/20/19 11:15,"905 River St, New York City, NY 10001" +301938,Wired Headphones,1,11.99,12/01/19 16:43,"578 Adams St, Atlanta, GA 30301" +301939,AAA Batteries (4-pack),4,2.99,12/30/19 09:46,"237 2nd St, San Francisco, CA 94016" +301940,USB-C Charging Cable,1,11.95,12/16/19 14:51,"925 Elm St, San Francisco, CA 94016" +301941,USB-C Charging Cable,1,11.95,12/07/19 01:09,"355 10th St, Boston, MA 02215" +301942,27in FHD Monitor,1,149.99,12/22/19 19:59,"799 Meadow St, San Francisco, CA 94016" +301943,Lightning Charging Cable,1,14.95,12/11/19 08:53,"313 Chestnut St, Atlanta, GA 30301" +301944,AA Batteries (4-pack),1,3.84,12/13/19 19:01,"402 Madison St, Austin, TX 73301" +301945,USB-C Charging Cable,1,11.95,12/23/19 18:39,"646 6th St, San Francisco, CA 94016" +301946,Bose SoundSport Headphones,1,99.99,12/12/19 21:13,"671 11th St, Austin, TX 73301" +301947,Lightning Charging Cable,1,14.95,12/20/19 20:52,"968 Elm St, San Francisco, CA 94016" +301948,AA Batteries (4-pack),1,3.84,12/11/19 09:38,"106 South St, New York City, NY 10001" +301949,Macbook Pro Laptop,1,1700,12/22/19 22:07,"517 South St, New York City, NY 10001" +301950,Lightning Charging Cable,1,14.95,12/28/19 15:22,"306 13th St, Atlanta, GA 30301" +301951,Wired Headphones,1,11.99,12/25/19 15:52,"765 Wilson St, San Francisco, CA 94016" +301952,AA Batteries (4-pack),1,3.84,12/24/19 14:48,"563 Main St, Portland, ME 04101" +301953,Wired Headphones,1,11.99,12/26/19 20:30,"910 Madison St, San Francisco, CA 94016" +301954,Google Phone,1,600,12/14/19 10:13,"731 13th St, San Francisco, CA 94016" +301955,AAA Batteries (4-pack),1,2.99,12/05/19 10:11,"39 South St, Los Angeles, CA 90001" +301956,27in FHD Monitor,1,149.99,12/18/19 23:31,"675 10th St, San Francisco, CA 94016" +301957,Wired Headphones,1,11.99,12/19/19 11:13,"206 Lakeview St, San Francisco, CA 94016" +301958,Lightning Charging Cable,1,14.95,12/03/19 14:10,"829 Jefferson St, New York City, NY 10001" +301959,Flatscreen TV,1,300,12/27/19 10:21,"881 6th St, San Francisco, CA 94016" +301959,AAA Batteries (4-pack),2,2.99,12/27/19 10:21,"881 6th St, San Francisco, CA 94016" +301960,AA Batteries (4-pack),2,3.84,12/27/19 10:41,"125 2nd St, San Francisco, CA 94016" +301961,Google Phone,1,600,12/02/19 18:53,"577 1st St, Los Angeles, CA 90001" +301962,Lightning Charging Cable,1,14.95,12/31/19 13:29,"644 Dogwood St, Dallas, TX 75001" +301963,Flatscreen TV,1,300,12/27/19 02:15,"486 North St, San Francisco, CA 94016" +301964,Bose SoundSport Headphones,1,99.99,12/12/19 21:33,"661 4th St, San Francisco, CA 94016" +301965,AAA Batteries (4-pack),1,2.99,12/15/19 12:59,"616 Center St, San Francisco, CA 94016" +301966,Wired Headphones,1,11.99,12/22/19 11:31,"592 4th St, New York City, NY 10001" +301967,Apple Airpods Headphones,1,150,12/30/19 11:46,"551 Lincoln St, Portland, OR 97035" +301968,Lightning Charging Cable,1,14.95,12/21/19 21:54,"617 South St, Seattle, WA 98101" +301969,USB-C Charging Cable,1,11.95,12/20/19 12:51,"164 Lakeview St, Dallas, TX 75001" +301970,Vareebadd Phone,1,400,12/22/19 23:08,"248 Jefferson St, Austin, TX 73301" +301971,27in FHD Monitor,1,149.99,12/13/19 00:04,"137 Hickory St, New York City, NY 10001" +301972,Lightning Charging Cable,1,14.95,12/28/19 20:46,"20 4th St, San Francisco, CA 94016" +301973,Google Phone,1,600,12/19/19 11:24,"799 Cedar St, Los Angeles, CA 90001" +301973,USB-C Charging Cable,1,11.95,12/19/19 11:24,"799 Cedar St, Los Angeles, CA 90001" +301974,AA Batteries (4-pack),1,3.84,12/01/19 16:21,"765 Lake St, Atlanta, GA 30301" +301975,AAA Batteries (4-pack),3,2.99,12/21/19 11:31,"546 Main St, Portland, ME 04101" +301976,AA Batteries (4-pack),1,3.84,12/18/19 19:44,"955 Ridge St, San Francisco, CA 94016" +301977,AAA Batteries (4-pack),1,2.99,12/11/19 15:10,"241 Lincoln St, Seattle, WA 98101" +301978,Wired Headphones,1,11.99,12/12/19 17:31,"577 14th St, Seattle, WA 98101" +301979,Bose SoundSport Headphones,1,99.99,12/22/19 12:54,"746 Elm St, Los Angeles, CA 90001" +301980,Vareebadd Phone,1,400,12/11/19 17:58,"643 Chestnut St, Austin, TX 73301" +301980,USB-C Charging Cable,1,11.95,12/11/19 17:58,"643 Chestnut St, Austin, TX 73301" +301981,Flatscreen TV,1,300,12/30/19 09:59,"776 Park St, Dallas, TX 75001" +301982,Apple Airpods Headphones,1,150,12/25/19 10:15,"442 Sunset St, Seattle, WA 98101" +301983,Bose SoundSport Headphones,1,99.99,12/18/19 11:58,"10 1st St, Boston, MA 02215" +301984,AAA Batteries (4-pack),3,2.99,12/09/19 08:24,"280 Lake St, Los Angeles, CA 90001" +301985,AAA Batteries (4-pack),1,2.99,12/19/19 20:10,"187 Maple St, Seattle, WA 98101" +301986,USB-C Charging Cable,2,11.95,12/13/19 15:32,"402 South St, San Francisco, CA 94016" +301987,AAA Batteries (4-pack),1,2.99,12/19/19 12:04,"154 Dogwood St, Austin, TX 73301" +301988,Lightning Charging Cable,1,14.95,12/26/19 22:37,"963 Willow St, San Francisco, CA 94016" +301989,iPhone,1,700,12/01/19 14:18,"546 Wilson St, San Francisco, CA 94016" +301990,Lightning Charging Cable,1,14.95,12/03/19 17:21,"906 2nd St, New York City, NY 10001" +301991,Macbook Pro Laptop,1,1700,12/26/19 00:37,"103 2nd St, San Francisco, CA 94016" +301992,AA Batteries (4-pack),1,3.84,12/15/19 10:51,"201 Highland St, New York City, NY 10001" +301993,AAA Batteries (4-pack),1,2.99,12/27/19 10:12,"420 Washington St, Boston, MA 02215" +301994,Macbook Pro Laptop,1,1700,12/04/19 17:37,"825 Highland St, San Francisco, CA 94016" +301995,27in FHD Monitor,1,149.99,12/10/19 22:53,"633 11th St, Los Angeles, CA 90001" +301996,AA Batteries (4-pack),4,3.84,12/08/19 16:01,"609 Hill St, Dallas, TX 75001" +301997,27in FHD Monitor,1,149.99,12/16/19 16:08,"454 Ridge St, New York City, NY 10001" +301998,LG Washing Machine,1,600.0,12/27/19 10:29,"681 North St, New York City, NY 10001" +301999,AA Batteries (4-pack),1,3.84,12/11/19 21:45,"742 South St, Los Angeles, CA 90001" +302000,AAA Batteries (4-pack),2,2.99,12/09/19 13:36,"670 Park St, Los Angeles, CA 90001" +302001,Google Phone,1,600,12/13/19 15:59,"976 Lake St, New York City, NY 10001" +302002,USB-C Charging Cable,2,11.95,12/15/19 01:32,"732 10th St, San Francisco, CA 94016" +302003,Lightning Charging Cable,1,14.95,12/14/19 20:14,"196 Main St, Boston, MA 02215" +302004,AA Batteries (4-pack),1,3.84,12/01/19 16:26,"106 12th St, Austin, TX 73301" +302005,27in FHD Monitor,1,149.99,12/20/19 19:09,"625 West St, Seattle, WA 98101" +302006,34in Ultrawide Monitor,1,379.99,12/16/19 23:21,"115 Johnson St, San Francisco, CA 94016" +302007,AA Batteries (4-pack),1,3.84,12/15/19 21:18,"712 Sunset St, Los Angeles, CA 90001" +302008,AA Batteries (4-pack),1,3.84,12/17/19 20:31,"431 7th St, Dallas, TX 75001" +302009,Google Phone,1,600,12/27/19 19:29,"679 1st St, New York City, NY 10001" +302009,Bose SoundSport Headphones,1,99.99,12/27/19 19:29,"679 1st St, New York City, NY 10001" +302010,AA Batteries (4-pack),3,3.84,12/13/19 13:35,"103 Maple St, San Francisco, CA 94016" +302011,27in FHD Monitor,1,149.99,12/05/19 13:18,"518 South St, New York City, NY 10001" +302012,AAA Batteries (4-pack),3,2.99,12/20/19 08:35,"27 Dogwood St, Atlanta, GA 30301" +302013,AA Batteries (4-pack),1,3.84,12/24/19 13:31,"56 5th St, Dallas, TX 75001" +302014,iPhone,1,700,12/19/19 18:56,"949 Lincoln St, Seattle, WA 98101" +302015,Macbook Pro Laptop,1,1700,12/02/19 16:12,"720 Pine St, Atlanta, GA 30301" +302016,iPhone,1,700,12/12/19 19:51,"986 14th St, Portland, OR 97035" +302017,USB-C Charging Cable,1,11.95,12/18/19 16:58,"686 11th St, Los Angeles, CA 90001" +302018,AA Batteries (4-pack),1,3.84,12/02/19 20:20,"221 Spruce St, Austin, TX 73301" +302019,AA Batteries (4-pack),1,3.84,12/20/19 20:42,"162 Cherry St, Portland, OR 97035" +302020,Wired Headphones,1,11.99,12/13/19 20:50,"378 2nd St, Dallas, TX 75001" +302021,Apple Airpods Headphones,1,150,12/27/19 17:02,"681 13th St, San Francisco, CA 94016" +302022,Vareebadd Phone,1,400,12/24/19 21:21,"273 Elm St, San Francisco, CA 94016" +302023,AA Batteries (4-pack),1,3.84,12/27/19 10:49,"567 Jackson St, San Francisco, CA 94016" +302024,Wired Headphones,1,11.99,12/31/19 14:37,"430 Madison St, Los Angeles, CA 90001" +302025,27in 4K Gaming Monitor,1,389.99,12/27/19 20:53,"486 1st St, Seattle, WA 98101" +302026,LG Washing Machine,1,600.0,12/19/19 22:44,"327 Walnut St, Seattle, WA 98101" +302027,Wired Headphones,1,11.99,12/22/19 16:13,"866 Cherry St, Los Angeles, CA 90001" +302028,27in FHD Monitor,1,149.99,12/30/19 17:27,"250 Center St, Boston, MA 02215" +302029,Vareebadd Phone,1,400,12/29/19 19:30,"732 Hickory St, Boston, MA 02215" +302030,AA Batteries (4-pack),1,3.84,12/26/19 14:25,"5 1st St, Los Angeles, CA 90001" +302031,34in Ultrawide Monitor,1,379.99,12/17/19 12:46,"55 Lake St, San Francisco, CA 94016" +302032,AAA Batteries (4-pack),1,2.99,12/19/19 12:55,"298 Main St, San Francisco, CA 94016" +302033,AA Batteries (4-pack),1,3.84,12/03/19 17:13,"349 River St, Los Angeles, CA 90001" +302034,USB-C Charging Cable,1,11.95,12/09/19 13:01,"946 Lincoln St, Los Angeles, CA 90001" +302035,Wired Headphones,1,11.99,12/16/19 12:58,"759 Chestnut St, Austin, TX 73301" +302036,Flatscreen TV,1,300,12/26/19 12:45,"604 11th St, San Francisco, CA 94016" +302037,USB-C Charging Cable,1,11.95,12/01/19 21:10,"633 6th St, Seattle, WA 98101" +302038,Wired Headphones,1,11.99,12/07/19 17:59,"148 Chestnut St, Boston, MA 02215" +302039,AAA Batteries (4-pack),1,2.99,12/07/19 14:08,"626 9th St, Boston, MA 02215" +302040,iPhone,1,700,12/27/19 20:27,"856 Hickory St, Atlanta, GA 30301" +302040,Apple Airpods Headphones,1,150,12/27/19 20:27,"856 Hickory St, Atlanta, GA 30301" +302041,Wired Headphones,1,11.99,12/27/19 18:29,"760 11th St, San Francisco, CA 94016" +302042,AAA Batteries (4-pack),1,2.99,12/10/19 22:24,"385 Willow St, Austin, TX 73301" +302043,AA Batteries (4-pack),2,3.84,12/14/19 21:27,"946 Sunset St, San Francisco, CA 94016" +302044,Flatscreen TV,1,300,12/19/19 16:58,"869 9th St, San Francisco, CA 94016" +302045,34in Ultrawide Monitor,1,379.99,12/06/19 10:19,"819 Jefferson St, San Francisco, CA 94016" +302046,AA Batteries (4-pack),1,3.84,12/07/19 21:49,"505 Johnson St, New York City, NY 10001" +302047,USB-C Charging Cable,1,11.95,12/16/19 10:44,"540 Church St, Seattle, WA 98101" +302048,Apple Airpods Headphones,1,150,12/27/19 19:08,"680 Meadow St, Portland, OR 97035" +302049,AAA Batteries (4-pack),2,2.99,12/19/19 18:38,"565 Adams St, Portland, OR 97035" +302050,USB-C Charging Cable,1,11.95,12/10/19 21:43,"891 Ridge St, Seattle, WA 98101" +302051,AA Batteries (4-pack),2,3.84,12/27/19 14:40,"486 Center St, Boston, MA 02215" +302052,AAA Batteries (4-pack),2,2.99,12/01/19 20:57,"950 Chestnut St, New York City, NY 10001" +302053,AA Batteries (4-pack),1,3.84,12/01/19 23:37,"292 11th St, Seattle, WA 98101" +302054,LG Washing Machine,1,600.0,12/01/19 10:54,"384 Spruce St, Dallas, TX 75001" +302055,34in Ultrawide Monitor,1,379.99,12/10/19 10:48,"57 Cherry St, Austin, TX 73301" +302056,Bose SoundSport Headphones,1,99.99,12/10/19 09:25,"337 Johnson St, New York City, NY 10001" +302057,Wired Headphones,1,11.99,01/01/20 00:54,"168 Pine St, Atlanta, GA 30301" +302058,Wired Headphones,1,11.99,12/27/19 12:07,"847 Adams St, Los Angeles, CA 90001" +302059,AAA Batteries (4-pack),1,2.99,12/19/19 13:04,"302 11th St, Portland, OR 97035" +302060,USB-C Charging Cable,1,11.95,12/16/19 20:32,"639 North St, Dallas, TX 75001" +302061,34in Ultrawide Monitor,1,379.99,12/27/19 16:42,"548 Lake St, San Francisco, CA 94016" +302062,USB-C Charging Cable,1,11.95,12/11/19 12:22,"904 Maple St, Los Angeles, CA 90001" +302063,Bose SoundSport Headphones,1,99.99,12/24/19 19:36,"552 North St, Los Angeles, CA 90001" +302064,27in 4K Gaming Monitor,1,389.99,12/05/19 23:14,"511 9th St, Boston, MA 02215" +302065,Wired Headphones,1,11.99,12/23/19 18:13,"922 Forest St, San Francisco, CA 94016" +302066,27in FHD Monitor,1,149.99,12/06/19 20:23,"533 Wilson St, San Francisco, CA 94016" +302067,20in Monitor,1,109.99,12/11/19 19:36,"103 8th St, San Francisco, CA 94016" +302068,AAA Batteries (4-pack),2,2.99,12/06/19 20:44,"557 Maple St, New York City, NY 10001" +302069,Bose SoundSport Headphones,1,99.99,12/04/19 23:32,"596 Johnson St, Dallas, TX 75001" +302070,AAA Batteries (4-pack),2,2.99,12/08/19 20:08,"118 Sunset St, Los Angeles, CA 90001" +302071,34in Ultrawide Monitor,1,379.99,12/27/19 08:07,"750 River St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +302072,27in 4K Gaming Monitor,1,389.99,12/11/19 11:27,"158 6th St, San Francisco, CA 94016" +302073,LG Washing Machine,1,600.0,12/25/19 16:38,"640 River St, San Francisco, CA 94016" +302074,iPhone,1,700,12/01/19 20:16,"759 Adams St, New York City, NY 10001" +302075,LG Dryer,1,600.0,12/02/19 12:27,"941 North St, San Francisco, CA 94016" +302076,Google Phone,1,600,12/01/19 19:38,"645 Ridge St, Portland, OR 97035" +302077,USB-C Charging Cable,1,11.95,12/09/19 21:32,"834 5th St, Seattle, WA 98101" +302078,Google Phone,1,600,12/09/19 21:03,"173 1st St, San Francisco, CA 94016" +302079,Wired Headphones,1,11.99,12/01/19 17:00,"917 6th St, San Francisco, CA 94016" +302080,Apple Airpods Headphones,1,150,12/12/19 00:48,"133 Lake St, Boston, MA 02215" +302081,Wired Headphones,1,11.99,12/07/19 00:27,"94 Ridge St, Atlanta, GA 30301" +302082,Wired Headphones,1,11.99,12/14/19 23:12,"731 Forest St, San Francisco, CA 94016" +302083,Flatscreen TV,1,300,12/06/19 10:48,"241 Cedar St, Los Angeles, CA 90001" +302084,27in FHD Monitor,1,149.99,12/15/19 21:55,"55 Meadow St, Los Angeles, CA 90001" +302085,AAA Batteries (4-pack),3,2.99,12/12/19 12:06,"304 10th St, Austin, TX 73301" +302086,Bose SoundSport Headphones,1,99.99,12/10/19 13:34,"618 South St, Los Angeles, CA 90001" +302087,USB-C Charging Cable,1,11.95,12/25/19 18:46,"410 West St, Atlanta, GA 30301" +302088,27in 4K Gaming Monitor,1,389.99,12/26/19 12:26,"869 Meadow St, Los Angeles, CA 90001" +302089,Google Phone,1,600,12/23/19 19:28,"957 Highland St, San Francisco, CA 94016" +302089,Bose SoundSport Headphones,1,99.99,12/23/19 19:28,"957 Highland St, San Francisco, CA 94016" +302090,AAA Batteries (4-pack),1,2.99,12/07/19 05:03,"544 Main St, Atlanta, GA 30301" +302091,USB-C Charging Cable,1,11.95,12/31/19 23:23,"376 2nd St, San Francisco, CA 94016" +302092,iPhone,1,700,12/12/19 13:30,"363 Chestnut St, San Francisco, CA 94016" +302093,Wired Headphones,1,11.99,12/12/19 21:34,"478 Spruce St, Los Angeles, CA 90001" +302094,USB-C Charging Cable,2,11.95,12/23/19 12:49,"705 Chestnut St, San Francisco, CA 94016" +302095,Apple Airpods Headphones,1,150,12/21/19 16:54,"692 1st St, San Francisco, CA 94016" +302096,34in Ultrawide Monitor,1,379.99,12/17/19 10:18,"916 Main St, Los Angeles, CA 90001" +302097,27in FHD Monitor,1,149.99,12/09/19 11:22,"320 Church St, Boston, MA 02215" +302098,USB-C Charging Cable,1,11.95,12/22/19 12:13,"813 Washington St, Portland, OR 97035" +302099,Lightning Charging Cable,1,14.95,12/22/19 20:13,"924 River St, Portland, OR 97035" +302100,Macbook Pro Laptop,1,1700,12/19/19 07:53,"508 10th St, San Francisco, CA 94016" +302101,Bose SoundSport Headphones,1,99.99,12/10/19 17:30,"153 Lake St, Atlanta, GA 30301" +302102,Bose SoundSport Headphones,1,99.99,12/19/19 21:31,"627 Main St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +302103,Macbook Pro Laptop,1,1700,12/30/19 12:28,"911 River St, San Francisco, CA 94016" +302104,ThinkPad Laptop,1,999.99,12/24/19 19:30,"564 Main St, San Francisco, CA 94016" +302105,Vareebadd Phone,1,400,12/30/19 19:21,"300 Highland St, Portland, ME 04101" +302106,Wired Headphones,1,11.99,12/03/19 12:08,"526 South St, Seattle, WA 98101" +302107,AAA Batteries (4-pack),1,2.99,12/04/19 12:18,"287 5th St, Atlanta, GA 30301" +302108,iPhone,1,700,12/03/19 10:38,"563 Wilson St, Boston, MA 02215" +302108,Lightning Charging Cable,1,14.95,12/03/19 10:38,"563 Wilson St, Boston, MA 02215" +302109,Flatscreen TV,1,300,12/28/19 16:22,"449 Park St, New York City, NY 10001" +302110,Flatscreen TV,1,300,12/13/19 10:35,"634 Hickory St, Los Angeles, CA 90001" +302111,Lightning Charging Cable,1,14.95,12/17/19 16:50,"194 Chestnut St, Los Angeles, CA 90001" +302112,Wired Headphones,1,11.99,12/08/19 22:57,"987 Forest St, Seattle, WA 98101" +302113,Wired Headphones,1,11.99,12/31/19 12:30,"798 1st St, Los Angeles, CA 90001" +302114,Apple Airpods Headphones,2,150,12/19/19 11:52,"334 1st St, Boston, MA 02215" +302115,AAA Batteries (4-pack),1,2.99,12/12/19 12:34,"707 1st St, Austin, TX 73301" +302116,27in FHD Monitor,1,149.99,12/20/19 13:54,"237 5th St, Boston, MA 02215" +302117,USB-C Charging Cable,1,11.95,12/03/19 00:43,"966 4th St, Austin, TX 73301" +302118,AAA Batteries (4-pack),2,2.99,12/11/19 22:12,"387 Maple St, San Francisco, CA 94016" +302119,AA Batteries (4-pack),1,3.84,12/12/19 12:54,"816 Jefferson St, Los Angeles, CA 90001" +302120,USB-C Charging Cable,1,11.95,12/30/19 20:58,"893 Park St, San Francisco, CA 94016" +302121,Bose SoundSport Headphones,1,99.99,12/18/19 11:09,"802 1st St, San Francisco, CA 94016" +302122,27in 4K Gaming Monitor,2,389.99,12/28/19 15:52,"580 9th St, Seattle, WA 98101" +302123,AA Batteries (4-pack),1,3.84,12/17/19 09:20,"422 Adams St, New York City, NY 10001" +302124,ThinkPad Laptop,1,999.99,12/10/19 02:36,"305 Chestnut St, San Francisco, CA 94016" +302125,AA Batteries (4-pack),1,3.84,12/29/19 11:37,"465 Highland St, Dallas, TX 75001" +302126,AA Batteries (4-pack),1,3.84,12/07/19 12:22,"965 9th St, Los Angeles, CA 90001" +302127,AAA Batteries (4-pack),1,2.99,12/03/19 14:49,"356 Highland St, Los Angeles, CA 90001" +302128,AAA Batteries (4-pack),1,2.99,12/15/19 19:45,"635 Chestnut St, Los Angeles, CA 90001" +302129,Apple Airpods Headphones,1,150,12/22/19 12:14,"788 Chestnut St, Portland, OR 97035" +302130,USB-C Charging Cable,1,11.95,12/03/19 10:00,"407 Ridge St, Boston, MA 02215" +302131,Flatscreen TV,1,300,12/30/19 01:09,"713 Dogwood St, New York City, NY 10001" +302132,AA Batteries (4-pack),2,3.84,12/28/19 18:32,"442 7th St, New York City, NY 10001" +302133,20in Monitor,1,109.99,12/20/19 14:38,"458 Lincoln St, San Francisco, CA 94016" +302134,Vareebadd Phone,1,400,12/29/19 11:52,"17 Center St, Atlanta, GA 30301" +302135,AA Batteries (4-pack),1,3.84,12/29/19 11:37,"307 14th St, New York City, NY 10001" +302136,USB-C Charging Cable,1,11.95,12/05/19 11:50,"848 Spruce St, Atlanta, GA 30301" +302137,USB-C Charging Cable,1,11.95,12/21/19 20:16,"166 10th St, Dallas, TX 75001" +302138,Wired Headphones,1,11.99,12/13/19 17:07,"152 Dogwood St, Seattle, WA 98101" +302139,Bose SoundSport Headphones,1,99.99,12/11/19 14:36,"865 Washington St, San Francisco, CA 94016" +302140,AAA Batteries (4-pack),1,2.99,12/19/19 15:23,"558 Center St, New York City, NY 10001" +302141,27in 4K Gaming Monitor,1,389.99,12/04/19 17:10,"735 Highland St, Boston, MA 02215" +302142,Macbook Pro Laptop,1,1700,12/06/19 11:09,"532 Pine St, Los Angeles, CA 90001" +302143,AA Batteries (4-pack),2,3.84,12/13/19 18:34,"930 Lincoln St, Seattle, WA 98101" +302144,Wired Headphones,1,11.99,12/12/19 18:35,"738 13th St, Los Angeles, CA 90001" +302145,iPhone,1,700,12/25/19 19:51,"627 Hickory St, San Francisco, CA 94016" +302146,AA Batteries (4-pack),1,3.84,12/18/19 08:01,"97 Forest St, Portland, ME 04101" +302147,USB-C Charging Cable,1,11.95,12/18/19 19:03,"926 Church St, Seattle, WA 98101" +302148,AAA Batteries (4-pack),1,2.99,12/13/19 22:49,"175 6th St, New York City, NY 10001" +302149,Google Phone,1,600,12/23/19 00:05,"399 Dogwood St, San Francisco, CA 94016" +302150,Wired Headphones,1,11.99,12/17/19 10:39,"152 14th St, San Francisco, CA 94016" +302151,Macbook Pro Laptop,1,1700,12/08/19 10:35,"408 Lake St, Los Angeles, CA 90001" +302152,27in 4K Gaming Monitor,1,389.99,12/10/19 12:16,"273 1st St, Boston, MA 02215" +302153,ThinkPad Laptop,1,999.99,12/15/19 15:52,"129 Elm St, Atlanta, GA 30301" +302154,AAA Batteries (4-pack),1,2.99,12/30/19 22:40,"722 Jackson St, Dallas, TX 75001" +302155,USB-C Charging Cable,3,11.95,12/02/19 10:45,"713 13th St, New York City, NY 10001" +302156,USB-C Charging Cable,1,11.95,12/13/19 23:56,"224 9th St, Los Angeles, CA 90001" +302157,USB-C Charging Cable,1,11.95,12/05/19 06:00,"228 7th St, Seattle, WA 98101" +302158,Wired Headphones,1,11.99,12/16/19 12:22,"498 Hill St, New York City, NY 10001" +302159,Macbook Pro Laptop,1,1700,12/11/19 16:14,"622 Maple St, Seattle, WA 98101" +302160,Wired Headphones,1,11.99,12/13/19 13:32,"222 Cedar St, San Francisco, CA 94016" +302161,USB-C Charging Cable,1,11.95,12/15/19 14:20,"20 Willow St, Dallas, TX 75001" +302162,34in Ultrawide Monitor,1,379.99,12/08/19 16:50,"104 Church St, Boston, MA 02215" +302163,USB-C Charging Cable,1,11.95,12/05/19 13:50,"385 Spruce St, San Francisco, CA 94016" +302164,Flatscreen TV,1,300,12/23/19 00:11,"928 12th St, New York City, NY 10001" +302165,USB-C Charging Cable,1,11.95,12/25/19 10:52,"730 Lake St, New York City, NY 10001" +302166,Macbook Pro Laptop,1,1700,12/27/19 12:20,"235 Lake St, San Francisco, CA 94016" +302167,Lightning Charging Cable,1,14.95,12/21/19 20:08,"975 Highland St, Los Angeles, CA 90001" +302168,20in Monitor,1,109.99,12/05/19 14:13,"283 Spruce St, Austin, TX 73301" +302169,Macbook Pro Laptop,1,1700,12/25/19 10:13,"38 Adams St, New York City, NY 10001" +302170,Bose SoundSport Headphones,1,99.99,12/05/19 00:49,"564 Lake St, Seattle, WA 98101" +302171,Lightning Charging Cable,1,14.95,12/21/19 13:47,"689 Highland St, San Francisco, CA 94016" +302172,AA Batteries (4-pack),1,3.84,12/25/19 20:36,"350 4th St, Los Angeles, CA 90001" +302173,AA Batteries (4-pack),2,3.84,12/18/19 14:11,"404 Cedar St, Seattle, WA 98101" +,,,,, +302174,Wired Headphones,1,11.99,12/10/19 21:23,"393 Adams St, Dallas, TX 75001" +302175,34in Ultrawide Monitor,1,379.99,12/25/19 19:00,"809 Lakeview St, Atlanta, GA 30301" +302176,Macbook Pro Laptop,1,1700,12/19/19 19:50,"103 Cherry St, San Francisco, CA 94016" +302177,AAA Batteries (4-pack),1,2.99,12/23/19 12:25,"394 7th St, Atlanta, GA 30301" +302178,Lightning Charging Cable,1,14.95,12/08/19 10:59,"696 7th St, New York City, NY 10001" +302179,Apple Airpods Headphones,1,150,12/30/19 12:34,"190 12th St, Austin, TX 73301" +302180,AAA Batteries (4-pack),1,2.99,12/28/19 19:44,"183 Madison St, Los Angeles, CA 90001" +302181,USB-C Charging Cable,1,11.95,12/12/19 12:54,"718 Johnson St, New York City, NY 10001" +302182,Lightning Charging Cable,1,14.95,12/19/19 20:55,"513 10th St, Portland, ME 04101" +302183,AAA Batteries (4-pack),3,2.99,12/16/19 19:03,"556 Church St, San Francisco, CA 94016" +302184,AA Batteries (4-pack),2,3.84,12/23/19 10:41,"675 2nd St, Austin, TX 73301" +302185,Lightning Charging Cable,1,14.95,12/15/19 18:56,"529 Dogwood St, San Francisco, CA 94016" +302186,Wired Headphones,1,11.99,12/12/19 15:32,"132 9th St, Los Angeles, CA 90001" +302187,27in FHD Monitor,1,149.99,12/27/19 07:39,"887 River St, Boston, MA 02215" +302188,AA Batteries (4-pack),1,3.84,12/08/19 08:41,"31 11th St, Los Angeles, CA 90001" +302189,AAA Batteries (4-pack),2,2.99,12/08/19 23:48,"376 Lake St, San Francisco, CA 94016" +302190,Google Phone,1,600,12/08/19 19:13,"751 4th St, Boston, MA 02215" +302190,USB-C Charging Cable,1,11.95,12/08/19 19:13,"751 4th St, Boston, MA 02215" +302191,Wired Headphones,1,11.99,12/30/19 21:28,"344 Forest St, New York City, NY 10001" +302192,Bose SoundSport Headphones,1,99.99,12/04/19 14:58,"936 4th St, Portland, OR 97035" +302193,iPhone,1,700,12/03/19 16:12,"343 Jackson St, Portland, OR 97035" +302194,iPhone,1,700,12/11/19 21:32,"237 Highland St, Portland, OR 97035" +302195,Lightning Charging Cable,1,14.95,12/03/19 20:58,"182 13th St, Seattle, WA 98101" +302196,AA Batteries (4-pack),5,3.84,12/19/19 17:08,"435 Jackson St, Austin, TX 73301" +302197,AA Batteries (4-pack),1,3.84,12/13/19 09:57,"181 Elm St, Atlanta, GA 30301" +302198,Google Phone,1,600,12/17/19 10:39,"403 Dogwood St, Boston, MA 02215" +302198,USB-C Charging Cable,1,11.95,12/17/19 10:39,"403 Dogwood St, Boston, MA 02215" +302199,27in FHD Monitor,1,149.99,12/20/19 00:34,"470 Jackson St, San Francisco, CA 94016" +302200,Apple Airpods Headphones,1,150,12/20/19 12:00,"930 Lincoln St, San Francisco, CA 94016" +302201,27in 4K Gaming Monitor,1,389.99,12/31/19 17:40,"955 Lincoln St, Los Angeles, CA 90001" +302202,USB-C Charging Cable,1,11.95,12/26/19 12:32,"431 Spruce St, Los Angeles, CA 90001" +302203,27in 4K Gaming Monitor,1,389.99,12/01/19 13:21,"217 Highland St, Dallas, TX 75001" +302204,27in 4K Gaming Monitor,1,389.99,12/02/19 17:42,"863 13th St, Seattle, WA 98101" +302205,Macbook Pro Laptop,1,1700,12/12/19 07:37,"403 Adams St, San Francisco, CA 94016" +302206,Lightning Charging Cable,1,14.95,12/26/19 13:07,"418 6th St, San Francisco, CA 94016" +302207,AAA Batteries (4-pack),1,2.99,12/18/19 10:03,"738 Hill St, Atlanta, GA 30301" +302208,AA Batteries (4-pack),2,3.84,12/25/19 18:55,"543 Chestnut St, San Francisco, CA 94016" +302209,Wired Headphones,1,11.99,12/28/19 11:18,"7 Spruce St, Portland, ME 04101" +302210,USB-C Charging Cable,1,11.95,12/05/19 12:14,"727 North St, Dallas, TX 75001" +302211,USB-C Charging Cable,1,11.95,12/10/19 00:47,"504 North St, New York City, NY 10001" +302212,AA Batteries (4-pack),2,3.84,12/19/19 11:46,"328 Cedar St, New York City, NY 10001" +302213,AAA Batteries (4-pack),2,2.99,12/18/19 17:33,"424 Park St, Dallas, TX 75001" +302214,Bose SoundSport Headphones,1,99.99,12/01/19 21:57,"393 Maple St, San Francisco, CA 94016" +302215,Lightning Charging Cable,1,14.95,12/16/19 19:10,"360 Washington St, Austin, TX 73301" +302216,Lightning Charging Cable,1,14.95,12/08/19 08:23,"934 Jackson St, New York City, NY 10001" +302217,AAA Batteries (4-pack),2,2.99,12/05/19 14:12,"790 Lake St, New York City, NY 10001" +302218,Lightning Charging Cable,1,14.95,12/01/19 15:31,"943 Ridge St, Atlanta, GA 30301" +302219,Lightning Charging Cable,1,14.95,12/19/19 11:46,"219 Lake St, Los Angeles, CA 90001" +302220,Apple Airpods Headphones,1,150,12/17/19 17:19,"465 Hill St, Seattle, WA 98101" +302221,AAA Batteries (4-pack),1,2.99,12/16/19 10:16,"562 6th St, Boston, MA 02215" +302222,27in 4K Gaming Monitor,1,389.99,12/01/19 11:56,"69 Lakeview St, Boston, MA 02215" +302223,Bose SoundSport Headphones,1,99.99,12/15/19 11:16,"145 Lakeview St, New York City, NY 10001" +302224,Wired Headphones,1,11.99,12/14/19 20:54,"936 Washington St, Portland, OR 97035" +302225,Apple Airpods Headphones,1,150,12/30/19 16:36,"721 2nd St, San Francisco, CA 94016" +302226,20in Monitor,1,109.99,12/13/19 15:49,"889 Lakeview St, Boston, MA 02215" +302227,Apple Airpods Headphones,1,150,12/01/19 17:15,"795 Jefferson St, Boston, MA 02215" +302228,USB-C Charging Cable,1,11.95,12/18/19 22:13,"196 Pine St, Seattle, WA 98101" +302229,Bose SoundSport Headphones,1,99.99,12/19/19 17:18,"567 4th St, Portland, ME 04101" +302230,Google Phone,1,600,12/16/19 17:46,"617 Johnson St, New York City, NY 10001" +302231,AA Batteries (4-pack),2,3.84,12/22/19 21:41,"260 2nd St, Atlanta, GA 30301" +302232,AAA Batteries (4-pack),1,2.99,12/22/19 18:51,"260 Lakeview St, New York City, NY 10001" +302233,Google Phone,1,600,12/30/19 13:15,"892 Sunset St, Boston, MA 02215" +302234,USB-C Charging Cable,2,11.95,12/26/19 18:05,"270 7th St, San Francisco, CA 94016" +302235,AAA Batteries (4-pack),4,2.99,12/31/19 17:02,"113 Church St, Boston, MA 02215" +302236,Lightning Charging Cable,1,14.95,12/30/19 12:59,"632 11th St, Portland, OR 97035" +302237,27in FHD Monitor,1,149.99,12/12/19 09:27,"561 Lakeview St, New York City, NY 10001" +302238,AA Batteries (4-pack),2,3.84,12/20/19 08:52,"479 Lincoln St, Boston, MA 02215" +302239,LG Washing Machine,1,600.0,12/02/19 21:11,"693 7th St, Dallas, TX 75001" +302240,Lightning Charging Cable,1,14.95,12/18/19 11:04,"65 Hickory St, Los Angeles, CA 90001" +302241,USB-C Charging Cable,1,11.95,12/26/19 01:51,"253 Forest St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +302242,Apple Airpods Headphones,1,150,12/05/19 14:46,"945 Walnut St, Los Angeles, CA 90001" +302243,Lightning Charging Cable,1,14.95,12/19/19 19:29,"754 Adams St, Portland, OR 97035" +302244,USB-C Charging Cable,1,11.95,12/14/19 19:05,"370 Lakeview St, Boston, MA 02215" +302245,Wired Headphones,2,11.99,12/21/19 20:25,"938 Jackson St, New York City, NY 10001" +302246,Bose SoundSport Headphones,1,99.99,12/28/19 10:21,"393 Pine St, Seattle, WA 98101" +302247,Google Phone,1,600,12/22/19 19:23,"682 Lakeview St, Los Angeles, CA 90001" +302248,AAA Batteries (4-pack),1,2.99,12/14/19 11:28,"811 Pine St, Atlanta, GA 30301" +302249,AA Batteries (4-pack),3,3.84,12/26/19 10:14,"948 Dogwood St, San Francisco, CA 94016" +302250,AAA Batteries (4-pack),1,2.99,12/08/19 01:32,"385 Cherry St, Atlanta, GA 30301" +302251,Lightning Charging Cable,2,14.95,12/10/19 05:59,"883 Meadow St, Los Angeles, CA 90001" +302252,AA Batteries (4-pack),1,3.84,12/23/19 19:33,"966 Hickory St, San Francisco, CA 94016" +302253,Lightning Charging Cable,1,14.95,12/06/19 17:52,"356 Washington St, Boston, MA 02215" +302254,Google Phone,1,600,12/12/19 14:05,"493 Elm St, San Francisco, CA 94016" +302255,AA Batteries (4-pack),1,3.84,12/14/19 01:37,"610 North St, Dallas, TX 75001" +302256,AA Batteries (4-pack),1,3.84,12/29/19 16:50,"521 12th St, New York City, NY 10001" +302257,Macbook Pro Laptop,1,1700,12/10/19 23:56,"358 Lakeview St, New York City, NY 10001" +302258,27in FHD Monitor,1,149.99,12/01/19 20:14,"468 Walnut St, Los Angeles, CA 90001" +302259,AA Batteries (4-pack),1,3.84,12/22/19 16:52,"295 8th St, Los Angeles, CA 90001" +302260,34in Ultrawide Monitor,1,379.99,12/11/19 13:43,"691 Center St, San Francisco, CA 94016" +302261,Lightning Charging Cable,2,14.95,12/04/19 23:32,"967 Lincoln St, Atlanta, GA 30301" +302262,Flatscreen TV,1,300,12/19/19 17:16,"822 Park St, San Francisco, CA 94016" +302263,AAA Batteries (4-pack),1,2.99,12/22/19 18:29,"363 7th St, Portland, ME 04101" +302264,AAA Batteries (4-pack),1,2.99,12/16/19 13:02,"36 2nd St, Seattle, WA 98101" +302265,34in Ultrawide Monitor,1,379.99,12/11/19 11:59,"24 14th St, Seattle, WA 98101" +302266,Lightning Charging Cable,1,14.95,12/28/19 23:40,"344 Forest St, Boston, MA 02215" +302267,Google Phone,1,600,12/05/19 23:53,"959 Elm St, San Francisco, CA 94016" +302268,Apple Airpods Headphones,1,150,12/26/19 17:27,"690 2nd St, Los Angeles, CA 90001" +302269,USB-C Charging Cable,1,11.95,12/01/19 11:55,"985 Pine St, Los Angeles, CA 90001" +302270,AA Batteries (4-pack),1,3.84,12/10/19 12:35,"488 Hickory St, Los Angeles, CA 90001" +302271,AAA Batteries (4-pack),2,2.99,12/25/19 20:11,"500 2nd St, New York City, NY 10001" +302272,Google Phone,1,600,12/24/19 19:57,"207 Walnut St, Portland, OR 97035" +302272,USB-C Charging Cable,1,11.95,12/24/19 19:57,"207 Walnut St, Portland, OR 97035" +302272,Bose SoundSport Headphones,1,99.99,12/24/19 19:57,"207 Walnut St, Portland, OR 97035" +302273,Lightning Charging Cable,1,14.95,12/29/19 01:16,"719 9th St, New York City, NY 10001" +302274,USB-C Charging Cable,1,11.95,12/26/19 18:26,"708 Walnut St, Dallas, TX 75001" +302275,Bose SoundSport Headphones,1,99.99,12/02/19 12:45,"945 West St, San Francisco, CA 94016" +302276,Apple Airpods Headphones,1,150,12/14/19 07:53,"405 Cedar St, New York City, NY 10001" +302277,AAA Batteries (4-pack),1,2.99,12/20/19 13:12,"794 Wilson St, Los Angeles, CA 90001" +302278,AAA Batteries (4-pack),2,2.99,12/03/19 14:02,"331 Spruce St, San Francisco, CA 94016" +302279,Apple Airpods Headphones,1,150,12/19/19 20:54,"614 River St, Portland, OR 97035" +302280,20in Monitor,1,109.99,12/06/19 14:02,"237 14th St, San Francisco, CA 94016" +302281,27in 4K Gaming Monitor,1,389.99,12/19/19 12:28,"126 West St, San Francisco, CA 94016" +302282,Wired Headphones,1,11.99,12/09/19 13:43,"689 Johnson St, Los Angeles, CA 90001" +302283,AA Batteries (4-pack),1,3.84,12/01/19 05:27,"710 Ridge St, Portland, OR 97035" +302284,Apple Airpods Headphones,1,150,12/05/19 17:39,"838 Park St, Los Angeles, CA 90001" +302285,iPhone,1,700,12/17/19 19:56,"975 Jackson St, Seattle, WA 98101" +302286,Lightning Charging Cable,1,14.95,12/03/19 06:27,"583 Lincoln St, Los Angeles, CA 90001" +302287,20in Monitor,1,109.99,12/17/19 12:03,"123 Elm St, San Francisco, CA 94016" +302288,Wired Headphones,1,11.99,12/14/19 18:52,"751 Lake St, New York City, NY 10001" +302289,Lightning Charging Cable,1,14.95,12/23/19 21:26,"860 Lake St, Austin, TX 73301" +302289,USB-C Charging Cable,1,11.95,12/23/19 21:26,"860 Lake St, Austin, TX 73301" +302290,AAA Batteries (4-pack),2,2.99,12/24/19 16:10,"962 Elm St, San Francisco, CA 94016" +302291,Bose SoundSport Headphones,1,99.99,12/21/19 01:13,"21 Elm St, New York City, NY 10001" +302292,AAA Batteries (4-pack),3,2.99,12/25/19 05:37,"550 13th St, Los Angeles, CA 90001" +302293,USB-C Charging Cable,1,11.95,12/03/19 04:13,"762 Spruce St, Dallas, TX 75001" +302294,AA Batteries (4-pack),2,3.84,12/11/19 01:06,"373 Dogwood St, San Francisco, CA 94016" +302295,27in FHD Monitor,1,149.99,12/29/19 05:29,"751 Jefferson St, Austin, TX 73301" +302296,Lightning Charging Cable,1,14.95,12/12/19 21:43,"869 Elm St, Los Angeles, CA 90001" +302297,Google Phone,1,600,12/25/19 20:28,"330 Hickory St, Atlanta, GA 30301" +302298,Lightning Charging Cable,1,14.95,12/31/19 20:47,"843 Pine St, Los Angeles, CA 90001" +302299,Wired Headphones,1,11.99,12/26/19 23:35,"306 Willow St, Atlanta, GA 30301" +302300,USB-C Charging Cable,1,11.95,12/26/19 09:07,"72 West St, Atlanta, GA 30301" +302301,AAA Batteries (4-pack),2,2.99,12/04/19 09:39,"213 Cedar St, New York City, NY 10001" +302302,AAA Batteries (4-pack),1,2.99,12/29/19 17:50,"950 10th St, Dallas, TX 75001" +302303,USB-C Charging Cable,1,11.95,12/01/19 21:29,"191 River St, San Francisco, CA 94016" +302304,34in Ultrawide Monitor,1,379.99,12/27/19 01:02,"371 Lake St, San Francisco, CA 94016" +302305,USB-C Charging Cable,1,11.95,12/05/19 04:15,"868 Park St, Boston, MA 02215" +302306,27in 4K Gaming Monitor,1,389.99,12/21/19 11:05,"639 8th St, Seattle, WA 98101" +302307,Lightning Charging Cable,1,14.95,12/22/19 11:59,"765 5th St, New York City, NY 10001" +302308,Flatscreen TV,1,300,12/06/19 07:56,"139 7th St, Atlanta, GA 30301" +302309,AA Batteries (4-pack),1,3.84,12/08/19 08:22,"410 9th St, Boston, MA 02215" +302310,Apple Airpods Headphones,1,150,12/14/19 16:08,"194 1st St, Dallas, TX 75001" +302311,AA Batteries (4-pack),1,3.84,12/12/19 20:21,"541 Adams St, Seattle, WA 98101" +302312,Bose SoundSport Headphones,1,99.99,12/25/19 18:25,"566 North St, Boston, MA 02215" +302313,Apple Airpods Headphones,1,150,12/26/19 21:16,"621 Willow St, Atlanta, GA 30301" +302314,Apple Airpods Headphones,1,150,12/12/19 23:18,"16 Walnut St, Los Angeles, CA 90001" +302315,Apple Airpods Headphones,1,150,12/17/19 20:09,"167 Cherry St, Los Angeles, CA 90001" +302316,USB-C Charging Cable,1,11.95,12/22/19 16:04,"919 12th St, Boston, MA 02215" +302317,iPhone,1,700,12/23/19 09:54,"19 Meadow St, Los Angeles, CA 90001" +302318,Lightning Charging Cable,1,14.95,12/21/19 17:37,"91 Cherry St, Seattle, WA 98101" +302319,AAA Batteries (4-pack),1,2.99,12/14/19 21:33,"624 Hill St, Boston, MA 02215" +302320,Google Phone,1,600,12/28/19 14:11,"142 Park St, San Francisco, CA 94016" +302321,AA Batteries (4-pack),1,3.84,12/14/19 11:39,"457 Wilson St, San Francisco, CA 94016" +302322,AAA Batteries (4-pack),1,2.99,12/06/19 13:03,"912 Park St, Los Angeles, CA 90001" +302323,Bose SoundSport Headphones,1,99.99,12/02/19 08:37,"986 Hickory St, Seattle, WA 98101" +302324,AAA Batteries (4-pack),1,2.99,12/07/19 10:53,"90 Center St, Austin, TX 73301" +302325,Lightning Charging Cable,1,14.95,12/27/19 15:01,"313 10th St, Seattle, WA 98101" +302326,20in Monitor,1,109.99,12/22/19 21:07,"725 7th St, Portland, OR 97035" +302327,27in 4K Gaming Monitor,1,389.99,12/31/19 08:52,"386 Dogwood St, San Francisco, CA 94016" +302328,34in Ultrawide Monitor,1,379.99,12/31/19 16:13,"459 Park St, Atlanta, GA 30301" +302329,AA Batteries (4-pack),1,3.84,12/29/19 12:05,"692 Cherry St, Boston, MA 02215" +302330,34in Ultrawide Monitor,1,379.99,12/11/19 08:55,"306 South St, New York City, NY 10001" +302331,Bose SoundSport Headphones,1,99.99,12/06/19 10:24,"297 West St, Seattle, WA 98101" +302332,Macbook Pro Laptop,1,1700,12/29/19 09:22,"489 Forest St, Los Angeles, CA 90001" +302333,34in Ultrawide Monitor,1,379.99,12/18/19 08:53,"509 Cherry St, Dallas, TX 75001" +302334,Lightning Charging Cable,1,14.95,12/29/19 17:23,"434 Walnut St, Los Angeles, CA 90001" +302335,AA Batteries (4-pack),1,3.84,12/19/19 18:27,"521 Wilson St, San Francisco, CA 94016" +302336,Apple Airpods Headphones,1,150,12/08/19 15:01,"90 7th St, San Francisco, CA 94016" +302337,Lightning Charging Cable,1,14.95,12/30/19 13:55,"33 Jackson St, Boston, MA 02215" +302338,AA Batteries (4-pack),1,3.84,12/30/19 14:19,"542 Hill St, Los Angeles, CA 90001" +302339,USB-C Charging Cable,1,11.95,12/23/19 07:21,"335 Chestnut St, San Francisco, CA 94016" +302340,Wired Headphones,1,11.99,12/08/19 12:43,"283 Cedar St, Atlanta, GA 30301" +302341,USB-C Charging Cable,1,11.95,12/25/19 16:55,"725 Pine St, Dallas, TX 75001" +302342,iPhone,1,700,12/31/19 14:19,"883 Madison St, Atlanta, GA 30301" +302343,27in FHD Monitor,1,149.99,12/22/19 08:42,"247 Sunset St, Los Angeles, CA 90001" +302344,AAA Batteries (4-pack),1,2.99,12/06/19 01:29,"816 Hill St, New York City, NY 10001" +302345,Apple Airpods Headphones,1,150,12/03/19 17:50,"452 Elm St, San Francisco, CA 94016" +302346,27in 4K Gaming Monitor,1,389.99,12/16/19 15:22,"6 Cedar St, Los Angeles, CA 90001" +302347,20in Monitor,1,109.99,12/19/19 19:37,"901 Maple St, New York City, NY 10001" +302348,LG Washing Machine,1,600.0,12/11/19 16:49,"686 12th St, Dallas, TX 75001" +302349,Google Phone,1,600,12/22/19 15:18,"665 13th St, Boston, MA 02215" +302350,AAA Batteries (4-pack),1,2.99,12/23/19 00:15,"464 West St, New York City, NY 10001" +302351,AA Batteries (4-pack),1,3.84,12/20/19 14:44,"271 12th St, Atlanta, GA 30301" +302352,AA Batteries (4-pack),2,3.84,12/02/19 08:15,"292 4th St, New York City, NY 10001" +302353,Wired Headphones,1,11.99,12/31/19 10:22,"121 Cedar St, San Francisco, CA 94016" +302354,Apple Airpods Headphones,1,150,12/16/19 14:55,"273 Lakeview St, Dallas, TX 75001" +302355,USB-C Charging Cable,1,11.95,12/10/19 13:15,"165 Hill St, New York City, NY 10001" +302356,AAA Batteries (4-pack),2,2.99,12/01/19 19:42,"924 West St, San Francisco, CA 94016" +302357,Bose SoundSport Headphones,1,99.99,12/21/19 12:55,"749 Hill St, New York City, NY 10001" +302358,AA Batteries (4-pack),1,3.84,12/05/19 20:39,"308 Ridge St, Atlanta, GA 30301" +302359,Flatscreen TV,1,300,12/01/19 14:35,"668 11th St, San Francisco, CA 94016" +302360,AA Batteries (4-pack),1,3.84,12/28/19 11:49,"192 Jefferson St, San Francisco, CA 94016" +302361,AAA Batteries (4-pack),2,2.99,12/10/19 17:18,"147 Elm St, Seattle, WA 98101" +302362,27in FHD Monitor,1,149.99,12/04/19 23:01,"680 Wilson St, San Francisco, CA 94016" +302363,Macbook Pro Laptop,1,1700,12/31/19 17:27,"689 13th St, Los Angeles, CA 90001" +302364,AA Batteries (4-pack),1,3.84,12/28/19 14:56,"851 Jackson St, New York City, NY 10001" +302365,USB-C Charging Cable,1,11.95,12/01/19 12:57,"132 Dogwood St, New York City, NY 10001" +302366,Wired Headphones,1,11.99,12/07/19 10:17,"268 Elm St, Los Angeles, CA 90001" +302367,AA Batteries (4-pack),1,3.84,12/29/19 20:07,"660 Chestnut St, San Francisco, CA 94016" +302368,AAA Batteries (4-pack),1,2.99,12/26/19 04:16,"832 Washington St, Portland, OR 97035" +302369,iPhone,1,700,12/19/19 13:56,"155 12th St, New York City, NY 10001" +302369,Wired Headphones,1,11.99,12/19/19 13:56,"155 12th St, New York City, NY 10001" +302370,Apple Airpods Headphones,1,150,12/06/19 15:01,"483 Jackson St, Boston, MA 02215" +302371,27in 4K Gaming Monitor,1,389.99,12/04/19 11:48,"990 11th St, San Francisco, CA 94016" +302372,Wired Headphones,1,11.99,12/22/19 19:51,"411 Jackson St, San Francisco, CA 94016" +302373,Wired Headphones,1,11.99,12/09/19 14:33,"955 Highland St, Los Angeles, CA 90001" +302374,AA Batteries (4-pack),1,3.84,12/08/19 13:49,"249 Lincoln St, Seattle, WA 98101" +302375,Wired Headphones,1,11.99,12/02/19 13:15,"726 Hickory St, Boston, MA 02215" +302376,AAA Batteries (4-pack),1,2.99,12/09/19 09:17,"248 Hickory St, Los Angeles, CA 90001" +302377,Lightning Charging Cable,1,14.95,12/21/19 12:27,"26 Sunset St, Atlanta, GA 30301" +302378,27in FHD Monitor,1,149.99,12/18/19 18:12,"510 Willow St, San Francisco, CA 94016" +302379,27in 4K Gaming Monitor,1,389.99,12/20/19 16:34,"107 River St, Portland, OR 97035" +302380,34in Ultrawide Monitor,1,379.99,12/19/19 20:54,"596 Adams St, Boston, MA 02215" +302381,Wired Headphones,1,11.99,12/22/19 11:54,"726 Main St, San Francisco, CA 94016" +302382,ThinkPad Laptop,1,999.99,12/18/19 15:19,"717 North St, San Francisco, CA 94016" +302383,iPhone,1,700,12/04/19 11:26,"36 Washington St, Portland, ME 04101" +302384,Apple Airpods Headphones,1,150,12/04/19 22:36,"484 Jefferson St, Los Angeles, CA 90001" +302385,Wired Headphones,1,11.99,12/18/19 18:14,"621 Hickory St, Los Angeles, CA 90001" +302386,Flatscreen TV,1,300,12/06/19 15:01,"675 6th St, Boston, MA 02215" +302387,USB-C Charging Cable,1,11.95,12/23/19 13:09,"291 10th St, Boston, MA 02215" +302388,USB-C Charging Cable,1,11.95,12/22/19 22:23,"224 Park St, San Francisco, CA 94016" +302389,Lightning Charging Cable,1,14.95,12/25/19 19:34,"203 Dogwood St, Los Angeles, CA 90001" +302390,AAA Batteries (4-pack),1,2.99,12/15/19 10:41,"17 Spruce St, Los Angeles, CA 90001" +302391,AA Batteries (4-pack),1,3.84,12/26/19 22:05,"925 Spruce St, Portland, OR 97035" +302392,Bose SoundSport Headphones,1,99.99,12/04/19 18:03,"910 Ridge St, San Francisco, CA 94016" +302393,27in FHD Monitor,1,149.99,12/23/19 19:07,"670 5th St, San Francisco, CA 94016" +302394,AA Batteries (4-pack),1,3.84,12/07/19 15:31,"48 Wilson St, Atlanta, GA 30301" +302394,Apple Airpods Headphones,1,150,12/07/19 15:31,"48 Wilson St, Atlanta, GA 30301" +302395,Wired Headphones,1,11.99,12/14/19 15:56,"254 13th St, Los Angeles, CA 90001" +302396,Bose SoundSport Headphones,1,99.99,12/05/19 20:23,"567 10th St, San Francisco, CA 94016" +302397,AA Batteries (4-pack),1,3.84,12/09/19 20:42,"910 Adams St, Boston, MA 02215" +302398,AAA Batteries (4-pack),1,2.99,12/02/19 15:21,"722 Park St, Boston, MA 02215" +302399,27in FHD Monitor,1,149.99,12/11/19 18:57,"4 Pine St, Boston, MA 02215" +302400,Flatscreen TV,1,300,12/24/19 11:45,"345 South St, San Francisco, CA 94016" +302400,Macbook Pro Laptop,1,1700,12/24/19 11:45,"345 South St, San Francisco, CA 94016" +302401,27in 4K Gaming Monitor,1,389.99,12/21/19 10:11,"8 Cherry St, San Francisco, CA 94016" +302402,LG Dryer,1,600.0,12/11/19 17:08,"713 Ridge St, New York City, NY 10001" +302403,Wired Headphones,1,11.99,12/12/19 21:24,"210 Spruce St, Boston, MA 02215" +302404,AA Batteries (4-pack),2,3.84,12/31/19 17:37,"621 Madison St, New York City, NY 10001" +302405,27in FHD Monitor,1,149.99,12/10/19 13:37,"800 10th St, New York City, NY 10001" +302406,AA Batteries (4-pack),2,3.84,12/15/19 15:56,"956 Washington St, Portland, OR 97035" +302407,USB-C Charging Cable,1,11.95,12/29/19 10:39,"782 Lakeview St, Los Angeles, CA 90001" +302408,AAA Batteries (4-pack),1,2.99,12/30/19 19:17,"649 Center St, New York City, NY 10001" +302409,Bose SoundSport Headphones,1,99.99,12/05/19 17:54,"540 6th St, Portland, ME 04101" +302410,AAA Batteries (4-pack),1,2.99,12/23/19 13:55,"676 Lake St, Austin, TX 73301" +302411,AA Batteries (4-pack),1,3.84,12/09/19 19:26,"565 Adams St, Portland, OR 97035" +302412,AA Batteries (4-pack),2,3.84,12/23/19 15:52,"995 Park St, Atlanta, GA 30301" +302412,Lightning Charging Cable,1,14.95,12/23/19 15:52,"995 Park St, Atlanta, GA 30301" +302413,Apple Airpods Headphones,1,150,12/21/19 07:05,"21 Main St, Boston, MA 02215" +302414,Apple Airpods Headphones,1,150,12/26/19 17:27,"531 Cedar St, Atlanta, GA 30301" +302415,Lightning Charging Cable,1,14.95,12/09/19 16:12,"28 Main St, Boston, MA 02215" +302416,Bose SoundSport Headphones,1,99.99,12/22/19 17:28,"398 Hill St, Dallas, TX 75001" +302417,Lightning Charging Cable,2,14.95,12/30/19 07:39,"416 Chestnut St, Seattle, WA 98101" +,,,,, +302418,34in Ultrawide Monitor,1,379.99,12/16/19 12:50,"998 Walnut St, New York City, NY 10001" +302419,USB-C Charging Cable,1,11.95,12/14/19 10:01,"274 10th St, New York City, NY 10001" +302420,Flatscreen TV,1,300,12/21/19 16:09,"350 Park St, Los Angeles, CA 90001" +302421,34in Ultrawide Monitor,1,379.99,12/27/19 20:27,"750 12th St, San Francisco, CA 94016" +302421,Apple Airpods Headphones,1,150,12/27/19 20:27,"750 12th St, San Francisco, CA 94016" +302422,Wired Headphones,1,11.99,12/26/19 09:05,"560 6th St, New York City, NY 10001" +302423,USB-C Charging Cable,1,11.95,12/08/19 08:22,"59 Forest St, New York City, NY 10001" +302424,Wired Headphones,1,11.99,12/24/19 00:06,"218 6th St, San Francisco, CA 94016" +302425,USB-C Charging Cable,1,11.95,12/30/19 09:16,"581 Spruce St, Dallas, TX 75001" +302426,AA Batteries (4-pack),1,3.84,12/15/19 13:46,"665 Lakeview St, Atlanta, GA 30301" +302427,Apple Airpods Headphones,1,150,12/17/19 21:15,"726 Dogwood St, Portland, OR 97035" +302428,USB-C Charging Cable,1,11.95,12/21/19 12:11,"762 Maple St, San Francisco, CA 94016" +302429,Google Phone,1,600,12/21/19 11:28,"549 6th St, Dallas, TX 75001" +302430,USB-C Charging Cable,1,11.95,12/11/19 23:20,"328 2nd St, Seattle, WA 98101" +302431,AAA Batteries (4-pack),2,2.99,12/23/19 20:10,"273 10th St, Austin, TX 73301" +302432,Wired Headphones,1,11.99,12/19/19 13:19,"829 12th St, New York City, NY 10001" +302433,34in Ultrawide Monitor,1,379.99,12/17/19 06:44,"977 Washington St, Atlanta, GA 30301" +302434,27in FHD Monitor,1,149.99,12/21/19 11:25,"20 7th St, New York City, NY 10001" +302435,AAA Batteries (4-pack),1,2.99,12/18/19 22:04,"762 14th St, New York City, NY 10001" +302436,Lightning Charging Cable,1,14.95,12/14/19 20:24,"448 Willow St, Los Angeles, CA 90001" +302437,Bose SoundSport Headphones,1,99.99,12/13/19 15:00,"228 Johnson St, Seattle, WA 98101" +302438,AAA Batteries (4-pack),1,2.99,12/20/19 14:15,"256 5th St, New York City, NY 10001" +302439,Macbook Pro Laptop,1,1700,12/15/19 21:46,"90 Willow St, Boston, MA 02215" +302440,Wired Headphones,2,11.99,12/11/19 16:10,"952 Pine St, Boston, MA 02215" +302441,Flatscreen TV,1,300,12/16/19 16:24,"16 Adams St, New York City, NY 10001" +302442,USB-C Charging Cable,1,11.95,12/10/19 09:07,"183 14th St, New York City, NY 10001" +302443,Vareebadd Phone,1,400,12/13/19 18:22,"321 Forest St, Los Angeles, CA 90001" +302444,Flatscreen TV,1,300,12/03/19 16:30,"779 Main St, Los Angeles, CA 90001" +302445,USB-C Charging Cable,1,11.95,12/25/19 17:53,"697 Maple St, Atlanta, GA 30301" +302446,Wired Headphones,1,11.99,12/06/19 18:11,"634 4th St, San Francisco, CA 94016" +302447,Wired Headphones,1,11.99,12/28/19 10:19,"859 Jefferson St, Dallas, TX 75001" +302448,Bose SoundSport Headphones,1,99.99,12/05/19 05:49,"39 West St, Austin, TX 73301" +302449,AA Batteries (4-pack),1,3.84,12/07/19 19:39,"399 Lake St, Boston, MA 02215" +302450,AAA Batteries (4-pack),1,2.99,12/13/19 12:38,"916 6th St, San Francisco, CA 94016" +302451,iPhone,1,700,12/26/19 13:22,"369 Hickory St, Austin, TX 73301" +302452,Wired Headphones,1,11.99,12/14/19 13:33,"854 Cedar St, Los Angeles, CA 90001" +302453,27in FHD Monitor,1,149.99,12/02/19 08:07,"167 Church St, Los Angeles, CA 90001" +302454,USB-C Charging Cable,1,11.95,12/18/19 23:17,"652 11th St, San Francisco, CA 94016" +302455,Flatscreen TV,1,300,12/30/19 22:02,"33 10th St, Dallas, TX 75001" +302456,LG Washing Machine,1,600.0,12/30/19 17:32,"852 Hickory St, Atlanta, GA 30301" +302457,Bose SoundSport Headphones,1,99.99,12/29/19 10:30,"737 West St, San Francisco, CA 94016" +302458,Lightning Charging Cable,1,14.95,12/20/19 20:00,"324 10th St, Portland, OR 97035" +302459,Apple Airpods Headphones,1,150,12/10/19 01:30,"913 Lake St, San Francisco, CA 94016" +302460,Google Phone,1,600,12/06/19 17:14,"823 Lake St, New York City, NY 10001" +302461,Bose SoundSport Headphones,1,99.99,12/14/19 22:07,"580 South St, Seattle, WA 98101" +302462,AAA Batteries (4-pack),1,2.99,12/27/19 12:22,"836 13th St, Boston, MA 02215" +302463,USB-C Charging Cable,1,11.95,12/09/19 10:34,"816 Wilson St, San Francisco, CA 94016" +302464,Apple Airpods Headphones,1,150,12/17/19 20:20,"795 Johnson St, Dallas, TX 75001" +302465,20in Monitor,1,109.99,12/07/19 21:42,"723 Cedar St, New York City, NY 10001" +302466,27in 4K Gaming Monitor,1,389.99,12/02/19 18:01,"108 Hill St, New York City, NY 10001" +302467,Wired Headphones,1,11.99,12/24/19 13:19,"300 Chestnut St, Los Angeles, CA 90001" +302468,Flatscreen TV,1,300,12/15/19 18:47,"492 Willow St, Austin, TX 73301" +302469,Google Phone,1,600,12/28/19 11:32,"742 North St, Boston, MA 02215" +302470,Google Phone,1,600,12/13/19 12:21,"683 Center St, New York City, NY 10001" +302470,Bose SoundSport Headphones,1,99.99,12/13/19 12:21,"683 Center St, New York City, NY 10001" +302471,AAA Batteries (4-pack),2,2.99,12/11/19 11:27,"479 4th St, Atlanta, GA 30301" +302472,Apple Airpods Headphones,1,150,12/31/19 16:33,"644 Main St, San Francisco, CA 94016" +302473,Apple Airpods Headphones,1,150,12/19/19 21:04,"644 8th St, Dallas, TX 75001" +302474,Bose SoundSport Headphones,1,99.99,12/04/19 13:40,"843 Lincoln St, Seattle, WA 98101" +302475,Lightning Charging Cable,1,14.95,12/05/19 16:49,"253 Lincoln St, Seattle, WA 98101" +302476,Macbook Pro Laptop,1,1700,12/06/19 15:28,"224 5th St, Los Angeles, CA 90001" +302477,Macbook Pro Laptop,1,1700,12/11/19 12:46,"315 Cedar St, San Francisco, CA 94016" +302478,Lightning Charging Cable,1,14.95,12/20/19 09:21,"754 Washington St, Atlanta, GA 30301" +302479,Wired Headphones,1,11.99,12/16/19 12:10,"504 Walnut St, San Francisco, CA 94016" +302480,20in Monitor,1,109.99,12/20/19 12:53,"232 11th St, San Francisco, CA 94016" +302481,AAA Batteries (4-pack),1,2.99,12/13/19 17:13,"700 Washington St, New York City, NY 10001" +302482,Bose SoundSport Headphones,1,99.99,12/04/19 13:28,"660 River St, San Francisco, CA 94016" +302483,USB-C Charging Cable,1,11.95,12/12/19 11:18,"44 Johnson St, Portland, OR 97035" +302484,AA Batteries (4-pack),1,3.84,12/03/19 00:25,"522 River St, Seattle, WA 98101" +302485,Apple Airpods Headphones,1,150,12/02/19 22:05,"270 Main St, San Francisco, CA 94016" +302486,Wired Headphones,1,11.99,12/13/19 13:24,"454 5th St, San Francisco, CA 94016" +302487,iPhone,1,700,12/17/19 13:56,"143 Park St, San Francisco, CA 94016" +302487,Wired Headphones,1,11.99,12/17/19 13:56,"143 Park St, San Francisco, CA 94016" +302488,27in 4K Gaming Monitor,1,389.99,12/31/19 11:11,"969 Cherry St, Austin, TX 73301" +302489,AAA Batteries (4-pack),4,2.99,12/29/19 15:19,"628 1st St, Austin, TX 73301" +302490,27in 4K Gaming Monitor,1,389.99,12/25/19 23:06,"716 Spruce St, Atlanta, GA 30301" +302491,Lightning Charging Cable,1,14.95,12/03/19 09:13,"213 Cedar St, San Francisco, CA 94016" +302492,Lightning Charging Cable,1,14.95,12/05/19 23:44,"750 Madison St, Austin, TX 73301" +302493,27in FHD Monitor,1,149.99,12/25/19 10:12,"751 Hickory St, New York City, NY 10001" +302493,Lightning Charging Cable,1,14.95,12/25/19 10:12,"751 Hickory St, New York City, NY 10001" +302494,AAA Batteries (4-pack),1,2.99,12/25/19 00:58,"191 Church St, Atlanta, GA 30301" +302495,Google Phone,1,600,12/11/19 17:59,"99 West St, San Francisco, CA 94016" +302495,Bose SoundSport Headphones,1,99.99,12/11/19 17:59,"99 West St, San Francisco, CA 94016" +302496,34in Ultrawide Monitor,1,379.99,12/23/19 22:57,"633 Forest St, Los Angeles, CA 90001" +302497,Wired Headphones,1,11.99,12/04/19 06:28,"833 8th St, San Francisco, CA 94016" +302498,Bose SoundSport Headphones,1,99.99,12/07/19 15:40,"856 West St, Los Angeles, CA 90001" +302499,Lightning Charging Cable,1,14.95,12/28/19 14:12,"721 Center St, Boston, MA 02215" +302500,AAA Batteries (4-pack),1,2.99,12/24/19 18:44,"21 Park St, Portland, OR 97035" +302501,Wired Headphones,1,11.99,12/09/19 09:00,"285 Meadow St, Los Angeles, CA 90001" +302502,Wired Headphones,1,11.99,12/30/19 10:03,"910 Highland St, Dallas, TX 75001" +302503,Lightning Charging Cable,1,14.95,12/24/19 22:13,"166 Madison St, New York City, NY 10001" +302504,Google Phone,1,600,12/07/19 20:26,"53 Jackson St, San Francisco, CA 94016" +302505,Lightning Charging Cable,1,14.95,12/06/19 19:03,"331 11th St, Los Angeles, CA 90001" +302506,34in Ultrawide Monitor,1,379.99,12/14/19 05:51,"780 Cherry St, Los Angeles, CA 90001" +302507,Bose SoundSport Headphones,1,99.99,12/05/19 08:04,"800 Chestnut St, Portland, ME 04101" +302508,AAA Batteries (4-pack),1,2.99,12/28/19 12:38,"939 Church St, Seattle, WA 98101" +302509,34in Ultrawide Monitor,1,379.99,12/02/19 23:17,"241 11th St, Atlanta, GA 30301" +302510,Apple Airpods Headphones,1,150,12/22/19 21:23,"295 Spruce St, New York City, NY 10001" +302511,Macbook Pro Laptop,1,1700,12/31/19 17:53,"119 Johnson St, Atlanta, GA 30301" +302512,Wired Headphones,1,11.99,12/08/19 08:06,"6 Madison St, Austin, TX 73301" +302513,Wired Headphones,1,11.99,12/16/19 19:28,"894 Madison St, Los Angeles, CA 90001" +302514,AAA Batteries (4-pack),1,2.99,12/25/19 20:16,"893 Meadow St, Dallas, TX 75001" +302515,34in Ultrawide Monitor,1,379.99,12/21/19 16:01,"45 Johnson St, Los Angeles, CA 90001" +302516,Lightning Charging Cable,1,14.95,12/11/19 16:33,"657 Madison St, Boston, MA 02215" +302517,USB-C Charging Cable,1,11.95,12/23/19 00:10,"898 7th St, Portland, OR 97035" +302518,Wired Headphones,1,11.99,12/04/19 21:35,"98 Lincoln St, Boston, MA 02215" +302519,34in Ultrawide Monitor,1,379.99,12/15/19 00:59,"491 Pine St, Boston, MA 02215" +302520,Lightning Charging Cable,1,14.95,12/13/19 17:25,"53 Hill St, San Francisco, CA 94016" +302521,AA Batteries (4-pack),1,3.84,12/11/19 12:45,"301 Elm St, Atlanta, GA 30301" +302522,iPhone,1,700,12/31/19 15:26,"172 10th St, Dallas, TX 75001" +302522,Lightning Charging Cable,2,14.95,12/31/19 15:26,"172 10th St, Dallas, TX 75001" +302523,Vareebadd Phone,1,400,12/17/19 10:53,"333 Elm St, San Francisco, CA 94016" +302524,Bose SoundSport Headphones,1,99.99,12/27/19 10:11,"956 Spruce St, New York City, NY 10001" +302525,USB-C Charging Cable,1,11.95,12/08/19 17:41,"731 Wilson St, Portland, OR 97035" +302526,USB-C Charging Cable,1,11.95,12/28/19 17:39,"670 Willow St, San Francisco, CA 94016" +302527,Bose SoundSport Headphones,1,99.99,12/03/19 20:20,"277 Pine St, San Francisco, CA 94016" +302528,iPhone,1,700,12/09/19 06:53,"325 Dogwood St, Los Angeles, CA 90001" +302529,iPhone,1,700,12/17/19 17:26,"203 6th St, New York City, NY 10001" +302530,iPhone,1,700,12/27/19 14:04,"643 North St, Boston, MA 02215" +302531,27in 4K Gaming Monitor,1,389.99,12/08/19 10:49,"226 Center St, Boston, MA 02215" +302532,USB-C Charging Cable,1,11.95,12/12/19 07:41,"400 Lakeview St, Los Angeles, CA 90001" +302533,AAA Batteries (4-pack),1,2.99,12/26/19 11:58,"856 Church St, Atlanta, GA 30301" +302534,27in 4K Gaming Monitor,1,389.99,12/07/19 07:39,"259 Hickory St, New York City, NY 10001" +302535,iPhone,1,700,12/17/19 22:25,"995 Hickory St, San Francisco, CA 94016" +302536,AA Batteries (4-pack),1,3.84,12/27/19 00:24,"392 Spruce St, Seattle, WA 98101" +302537,ThinkPad Laptop,1,999.99,12/18/19 05:48,"925 Maple St, Los Angeles, CA 90001" +302538,USB-C Charging Cable,1,11.95,12/14/19 22:23,"980 Jefferson St, Atlanta, GA 30301" +302539,Apple Airpods Headphones,1,150,12/09/19 18:54,"214 1st St, Seattle, WA 98101" +302540,Apple Airpods Headphones,1,150,12/14/19 06:28,"367 Walnut St, Atlanta, GA 30301" +302541,USB-C Charging Cable,1,11.95,12/23/19 11:42,"511 Pine St, Atlanta, GA 30301" +302542,USB-C Charging Cable,1,11.95,12/30/19 20:29,"771 Center St, Dallas, TX 75001" +302543,Wired Headphones,1,11.99,12/18/19 10:09,"439 12th St, Boston, MA 02215" +302544,Wired Headphones,1,11.99,12/18/19 14:28,"199 Cherry St, San Francisco, CA 94016" +302544,20in Monitor,1,109.99,12/18/19 14:28,"199 Cherry St, San Francisco, CA 94016" +302545,USB-C Charging Cable,1,11.95,12/19/19 13:33,"962 Madison St, Atlanta, GA 30301" +302546,USB-C Charging Cable,1,11.95,12/01/19 12:22,"502 Forest St, Los Angeles, CA 90001" +302547,Macbook Pro Laptop,1,1700,12/06/19 11:43,"25 11th St, Austin, TX 73301" +302548,27in FHD Monitor,1,149.99,12/09/19 10:41,"47 Meadow St, Los Angeles, CA 90001" +302549,iPhone,1,700,12/24/19 18:39,"402 Main St, New York City, NY 10001" +302549,Lightning Charging Cable,1,14.95,12/24/19 18:39,"402 Main St, New York City, NY 10001" +302550,USB-C Charging Cable,1,11.95,12/18/19 19:56,"103 6th St, San Francisco, CA 94016" +302551,Wired Headphones,1,11.99,12/03/19 18:00,"386 Cedar St, Austin, TX 73301" +302552,Wired Headphones,1,11.99,12/29/19 07:06,"484 Maple St, Los Angeles, CA 90001" +302553,Vareebadd Phone,1,400,12/02/19 12:34,"397 North St, Atlanta, GA 30301" +302554,Lightning Charging Cable,1,14.95,12/23/19 13:19,"820 8th St, San Francisco, CA 94016" +302555,Wired Headphones,1,11.99,12/11/19 00:12,"509 Willow St, Boston, MA 02215" +302556,USB-C Charging Cable,1,11.95,12/07/19 17:12,"643 Dogwood St, San Francisco, CA 94016" +302557,Bose SoundSport Headphones,1,99.99,12/30/19 23:11,"766 Lake St, Atlanta, GA 30301" +302558,Bose SoundSport Headphones,1,99.99,12/26/19 23:25,"313 Madison St, San Francisco, CA 94016" +302559,USB-C Charging Cable,1,11.95,12/24/19 13:14,"212 Johnson St, Boston, MA 02215" +302560,USB-C Charging Cable,1,11.95,12/21/19 17:23,"365 Sunset St, Dallas, TX 75001" +302561,AAA Batteries (4-pack),1,2.99,12/22/19 14:43,"733 Hickory St, San Francisco, CA 94016" +302562,27in FHD Monitor,1,149.99,12/13/19 14:17,"97 Center St, New York City, NY 10001" +302563,iPhone,1,700,12/27/19 00:05,"107 Jackson St, Boston, MA 02215" +302564,Flatscreen TV,1,300,12/14/19 17:34,"639 10th St, San Francisco, CA 94016" +302565,Google Phone,1,600,12/20/19 09:56,"613 Main St, San Francisco, CA 94016" +302565,USB-C Charging Cable,1,11.95,12/20/19 09:56,"613 Main St, San Francisco, CA 94016" +302566,AA Batteries (4-pack),1,3.84,12/09/19 09:35,"94 Chestnut St, San Francisco, CA 94016" +302567,Wired Headphones,1,11.99,12/17/19 12:30,"756 South St, Los Angeles, CA 90001" +302568,USB-C Charging Cable,1,11.95,12/09/19 13:22,"358 10th St, Los Angeles, CA 90001" +302569,AAA Batteries (4-pack),1,2.99,12/26/19 10:00,"511 Highland St, Atlanta, GA 30301" +302570,AAA Batteries (4-pack),1,2.99,12/13/19 20:42,"630 Park St, Austin, TX 73301" +302571,Wired Headphones,1,11.99,12/22/19 10:28,"781 4th St, New York City, NY 10001" +302572,AA Batteries (4-pack),2,3.84,12/03/19 17:03,"733 Walnut St, Dallas, TX 75001" +302573,Flatscreen TV,1,300,12/27/19 14:16,"300 Dogwood St, Austin, TX 73301" +302574,Apple Airpods Headphones,1,150,12/14/19 11:56,"494 North St, Boston, MA 02215" +302575,27in FHD Monitor,1,149.99,12/23/19 19:32,"485 Pine St, Atlanta, GA 30301" +302576,USB-C Charging Cable,1,11.95,12/17/19 20:36,"138 Ridge St, Los Angeles, CA 90001" +302577,iPhone,1,700,12/05/19 04:47,"453 Highland St, New York City, NY 10001" +302578,Flatscreen TV,1,300,12/27/19 10:15,"722 Forest St, Boston, MA 02215" +302579,AAA Batteries (4-pack),1,2.99,12/16/19 19:25,"360 Adams St, Austin, TX 73301" +302580,Lightning Charging Cable,1,14.95,12/19/19 19:39,"596 Lakeview St, Seattle, WA 98101" +302581,27in FHD Monitor,1,149.99,12/03/19 18:58,"517 Hill St, Los Angeles, CA 90001" +302582,Bose SoundSport Headphones,1,99.99,12/04/19 15:06,"973 Lincoln St, Los Angeles, CA 90001" +302583,AAA Batteries (4-pack),1,2.99,12/18/19 18:28,"131 Hickory St, Dallas, TX 75001" +302584,27in FHD Monitor,1,149.99,12/22/19 15:28,"84 4th St, Los Angeles, CA 90001" +302585,Google Phone,1,600,12/09/19 19:48,"468 Park St, New York City, NY 10001" +302585,Wired Headphones,1,11.99,12/09/19 19:48,"468 Park St, New York City, NY 10001" +302586,AA Batteries (4-pack),1,3.84,12/20/19 11:28,"93 12th St, Austin, TX 73301" +302587,USB-C Charging Cable,2,11.95,12/25/19 01:59,"185 Madison St, Portland, OR 97035" +302588,Google Phone,1,600,12/02/19 14:05,"329 2nd St, San Francisco, CA 94016" +302589,Lightning Charging Cable,1,14.95,12/26/19 00:47,"982 14th St, San Francisco, CA 94016" +302590,Apple Airpods Headphones,1,150,12/04/19 11:54,"350 Lake St, Boston, MA 02215" +302591,20in Monitor,1,109.99,12/09/19 12:26,"961 West St, San Francisco, CA 94016" +302592,AA Batteries (4-pack),1,3.84,12/16/19 10:07,"267 North St, Dallas, TX 75001" +302593,Wired Headphones,1,11.99,12/28/19 14:31,"342 Pine St, Atlanta, GA 30301" +302594,iPhone,1,700,12/12/19 23:10,"829 Johnson St, Dallas, TX 75001" +302594,Wired Headphones,1,11.99,12/12/19 23:10,"829 Johnson St, Dallas, TX 75001" +302595,ThinkPad Laptop,1,999.99,12/28/19 08:34,"288 Cedar St, New York City, NY 10001" +302595,Apple Airpods Headphones,1,150,12/28/19 08:34,"288 Cedar St, New York City, NY 10001" +302596,AAA Batteries (4-pack),2,2.99,12/14/19 10:13,"836 Chestnut St, Seattle, WA 98101" +302597,AA Batteries (4-pack),1,3.84,12/15/19 20:25,"541 Lakeview St, Seattle, WA 98101" +302598,LG Washing Machine,1,600.0,12/21/19 08:08,"388 12th St, Atlanta, GA 30301" +302599,Apple Airpods Headphones,1,150,12/29/19 22:34,"383 South St, New York City, NY 10001" +302600,AAA Batteries (4-pack),1,2.99,12/10/19 18:01,"892 Center St, Portland, ME 04101" +302601,27in FHD Monitor,1,149.99,12/06/19 17:05,"200 Pine St, Dallas, TX 75001" +302602,Apple Airpods Headphones,1,150,12/29/19 03:12,"51 Johnson St, Dallas, TX 75001" +302603,Lightning Charging Cable,1,14.95,12/25/19 18:58,"47 Church St, Austin, TX 73301" +302604,AA Batteries (4-pack),1,3.84,12/15/19 14:37,"185 Lake St, Seattle, WA 98101" +302605,USB-C Charging Cable,1,11.95,12/24/19 13:26,"542 Maple St, Austin, TX 73301" +302606,Lightning Charging Cable,1,14.95,12/05/19 16:48,"251 Walnut St, San Francisco, CA 94016" +302606,USB-C Charging Cable,1,11.95,12/05/19 16:48,"251 Walnut St, San Francisco, CA 94016" +302607,Flatscreen TV,1,300,12/24/19 09:02,"481 Willow St, New York City, NY 10001" +302608,27in FHD Monitor,1,149.99,12/30/19 12:20,"262 Washington St, New York City, NY 10001" +302609,Apple Airpods Headphones,1,150,12/31/19 15:05,"143 Washington St, Portland, OR 97035" +302610,USB-C Charging Cable,2,11.95,12/08/19 13:43,"661 Chestnut St, San Francisco, CA 94016" +302611,AA Batteries (4-pack),1,3.84,12/16/19 17:48,"796 Cherry St, New York City, NY 10001" +302612,Wired Headphones,1,11.99,12/03/19 06:33,"308 Lake St, Portland, OR 97035" +302613,34in Ultrawide Monitor,1,379.99,12/02/19 10:34,"513 5th St, Austin, TX 73301" +302614,Apple Airpods Headphones,1,150,12/12/19 18:06,"566 5th St, Los Angeles, CA 90001" +302615,27in 4K Gaming Monitor,1,389.99,12/01/19 08:14,"474 Jefferson St, Boston, MA 02215" +302616,Wired Headphones,1,11.99,12/17/19 11:30,"219 West St, Dallas, TX 75001" +302617,Wired Headphones,1,11.99,12/27/19 21:43,"250 Lincoln St, Seattle, WA 98101" +302618,AAA Batteries (4-pack),1,2.99,12/22/19 11:24,"108 Maple St, Seattle, WA 98101" +302619,Bose SoundSport Headphones,1,99.99,12/03/19 16:04,"136 Ridge St, Boston, MA 02215" +302620,Wired Headphones,1,11.99,12/11/19 10:41,"376 2nd St, Los Angeles, CA 90001" +302621,Bose SoundSport Headphones,1,99.99,12/02/19 21:53,"886 Lake St, San Francisco, CA 94016" +302622,AA Batteries (4-pack),1,3.84,12/16/19 20:40,"114 11th St, San Francisco, CA 94016" +302623,AA Batteries (4-pack),2,3.84,12/18/19 12:09,"877 Washington St, New York City, NY 10001" +302624,34in Ultrawide Monitor,1,379.99,12/14/19 16:51,"355 1st St, Atlanta, GA 30301" +302625,Bose SoundSport Headphones,1,99.99,12/26/19 11:14,"781 14th St, Los Angeles, CA 90001" +302626,Flatscreen TV,1,300,12/26/19 03:42,"724 Hill St, Los Angeles, CA 90001" +302627,20in Monitor,1,109.99,12/18/19 18:59,"995 Washington St, Dallas, TX 75001" +302628,27in FHD Monitor,1,149.99,12/29/19 17:00,"917 8th St, Atlanta, GA 30301" +302629,Lightning Charging Cable,1,14.95,12/14/19 21:00,"196 Willow St, Atlanta, GA 30301" +302630,AA Batteries (4-pack),1,3.84,12/27/19 13:42,"685 Wilson St, Austin, TX 73301" +302631,AAA Batteries (4-pack),2,2.99,12/21/19 09:24,"51 2nd St, Los Angeles, CA 90001" +302632,USB-C Charging Cable,1,11.95,12/18/19 21:44,"804 Cherry St, Austin, TX 73301" +302633,27in FHD Monitor,1,149.99,12/13/19 21:26,"67 Park St, Boston, MA 02215" +302634,iPhone,1,700,12/01/19 11:33,"647 Ridge St, San Francisco, CA 94016" +,,,,, +302635,Lightning Charging Cable,1,14.95,12/30/19 02:17,"746 Pine St, Boston, MA 02215" +302636,Lightning Charging Cable,2,14.95,12/06/19 12:18,"412 Willow St, New York City, NY 10001" +302637,AAA Batteries (4-pack),2,2.99,12/10/19 21:34,"301 Meadow St, Seattle, WA 98101" +302638,Lightning Charging Cable,1,14.95,12/14/19 18:28,"165 River St, Austin, TX 73301" +302639,Google Phone,1,600,12/24/19 11:19,"719 Chestnut St, Los Angeles, CA 90001" +302639,USB-C Charging Cable,1,11.95,12/24/19 11:19,"719 Chestnut St, Los Angeles, CA 90001" +302640,AA Batteries (4-pack),2,3.84,12/27/19 17:41,"884 Ridge St, Austin, TX 73301" +302641,AA Batteries (4-pack),1,3.84,12/29/19 12:13,"558 West St, Dallas, TX 75001" +302642,Lightning Charging Cable,1,14.95,12/01/19 13:18,"819 Hill St, Boston, MA 02215" +302643,34in Ultrawide Monitor,1,379.99,12/04/19 08:07,"979 Spruce St, Los Angeles, CA 90001" +302644,Flatscreen TV,1,300,12/15/19 13:28,"721 2nd St, New York City, NY 10001" +302645,Apple Airpods Headphones,1,150,12/31/19 10:21,"423 Cherry St, Los Angeles, CA 90001" +302646,AA Batteries (4-pack),2,3.84,12/16/19 10:04,"888 8th St, San Francisco, CA 94016" +302647,Apple Airpods Headphones,1,150,12/13/19 12:20,"222 7th St, Los Angeles, CA 90001" +302648,AA Batteries (4-pack),1,3.84,12/05/19 16:15,"974 Chestnut St, San Francisco, CA 94016" +302649,AAA Batteries (4-pack),1,2.99,12/11/19 13:27,"379 6th St, Austin, TX 73301" +302650,27in FHD Monitor,1,149.99,12/09/19 00:57,"389 Jefferson St, Boston, MA 02215" +302651,Lightning Charging Cable,1,14.95,12/28/19 12:21,"806 Forest St, Austin, TX 73301" +302652,Lightning Charging Cable,1,14.95,12/18/19 23:22,"154 Highland St, San Francisco, CA 94016" +302653,34in Ultrawide Monitor,1,379.99,12/15/19 13:44,"197 Adams St, New York City, NY 10001" +302654,27in 4K Gaming Monitor,1,389.99,12/03/19 13:14,"773 Main St, San Francisco, CA 94016" +302655,20in Monitor,1,109.99,12/30/19 19:10,"303 Lakeview St, Boston, MA 02215" +302656,AA Batteries (4-pack),2,3.84,12/04/19 16:15,"298 13th St, Seattle, WA 98101" +302657,USB-C Charging Cable,1,11.95,12/06/19 07:06,"348 9th St, Boston, MA 02215" +302658,Lightning Charging Cable,1,14.95,12/11/19 12:53,"427 Elm St, San Francisco, CA 94016" +302659,USB-C Charging Cable,1,11.95,12/08/19 19:54,"737 Highland St, Los Angeles, CA 90001" +,,,,, +302660,Lightning Charging Cable,1,14.95,12/09/19 15:57,"51 Forest St, Los Angeles, CA 90001" +302661,AAA Batteries (4-pack),2,2.99,12/24/19 20:36,"626 Main St, San Francisco, CA 94016" +302662,AA Batteries (4-pack),1,3.84,12/08/19 10:44,"269 14th St, Boston, MA 02215" +302663,34in Ultrawide Monitor,1,379.99,12/16/19 10:02,"621 Highland St, Portland, ME 04101" +302664,27in FHD Monitor,1,149.99,12/10/19 00:18,"222 Cedar St, Seattle, WA 98101" +302665,Vareebadd Phone,1,400,12/25/19 23:32,"827 8th St, San Francisco, CA 94016" +302666,Wired Headphones,1,11.99,12/15/19 18:01,"799 Elm St, Seattle, WA 98101" +302667,USB-C Charging Cable,1,11.95,12/06/19 21:06,"100 Church St, Portland, OR 97035" +302668,AA Batteries (4-pack),2,3.84,12/31/19 19:06,"683 Main St, New York City, NY 10001" +302669,Apple Airpods Headphones,1,150,12/06/19 06:16,"896 Pine St, San Francisco, CA 94016" +302670,Google Phone,1,600,12/15/19 21:18,"520 Willow St, New York City, NY 10001" +302670,USB-C Charging Cable,1,11.95,12/15/19 21:18,"520 Willow St, New York City, NY 10001" +302671,Bose SoundSport Headphones,1,99.99,12/10/19 10:10,"664 Jackson St, Los Angeles, CA 90001" +302672,Apple Airpods Headphones,1,150,12/08/19 10:20,"368 West St, Atlanta, GA 30301" +302673,USB-C Charging Cable,1,11.95,12/10/19 17:59,"144 Johnson St, San Francisco, CA 94016" +302674,27in FHD Monitor,1,149.99,12/30/19 16:44,"649 North St, San Francisco, CA 94016" +302675,Macbook Pro Laptop,1,1700,12/13/19 13:39,"857 Walnut St, San Francisco, CA 94016" +302676,27in 4K Gaming Monitor,1,389.99,12/01/19 19:42,"909 Forest St, San Francisco, CA 94016" +302677,Lightning Charging Cable,1,14.95,12/11/19 13:45,"420 Cherry St, Seattle, WA 98101" +302678,AAA Batteries (4-pack),1,2.99,12/03/19 14:42,"258 Maple St, Atlanta, GA 30301" +302679,Macbook Pro Laptop,1,1700,12/30/19 15:27,"485 Jefferson St, Austin, TX 73301" +302680,Lightning Charging Cable,1,14.95,12/17/19 18:26,"533 Johnson St, San Francisco, CA 94016" +302681,AA Batteries (4-pack),2,3.84,12/15/19 09:56,"548 Church St, Seattle, WA 98101" +302682,Bose SoundSport Headphones,1,99.99,12/11/19 13:55,"77 12th St, San Francisco, CA 94016" +302683,Wired Headphones,1,11.99,12/12/19 12:28,"32 Spruce St, San Francisco, CA 94016" +302684,Lightning Charging Cable,1,14.95,12/08/19 14:56,"579 Sunset St, Portland, OR 97035" +302685,AAA Batteries (4-pack),3,2.99,12/31/19 19:41,"16 Wilson St, San Francisco, CA 94016" +302686,Flatscreen TV,1,300,12/20/19 21:12,"729 Ridge St, Austin, TX 73301" +302687,iPhone,1,700,12/29/19 10:19,"19 14th St, Dallas, TX 75001" +302688,AAA Batteries (4-pack),1,2.99,12/21/19 16:17,"963 Jefferson St, San Francisco, CA 94016" +302689,AAA Batteries (4-pack),1,2.99,12/03/19 15:29,"893 Cedar St, Boston, MA 02215" +302690,Apple Airpods Headphones,2,150,12/03/19 20:04,"503 1st St, New York City, NY 10001" +302691,AA Batteries (4-pack),2,3.84,12/04/19 22:42,"594 Elm St, Seattle, WA 98101" +302692,USB-C Charging Cable,2,11.95,12/18/19 17:45,"780 Adams St, Atlanta, GA 30301" +302693,Bose SoundSport Headphones,1,99.99,12/12/19 18:41,"809 Pine St, Atlanta, GA 30301" +302694,Lightning Charging Cable,1,14.95,12/16/19 16:28,"747 Johnson St, Los Angeles, CA 90001" +302695,Lightning Charging Cable,1,14.95,12/10/19 11:08,"905 Main St, Los Angeles, CA 90001" +302696,Wired Headphones,1,11.99,12/08/19 22:28,"774 9th St, Dallas, TX 75001" +302697,Wired Headphones,1,11.99,12/22/19 18:04,"400 Adams St, San Francisco, CA 94016" +302698,Apple Airpods Headphones,1,150,12/17/19 12:42,"575 4th St, Austin, TX 73301" +302699,Flatscreen TV,1,300,12/28/19 18:22,"410 Elm St, San Francisco, CA 94016" +302700,34in Ultrawide Monitor,1,379.99,12/06/19 10:15,"89 Elm St, Portland, OR 97035" +302701,27in 4K Gaming Monitor,1,389.99,12/06/19 20:30,"98 Cedar St, Los Angeles, CA 90001" +302702,20in Monitor,1,109.99,12/09/19 13:48,"824 Hill St, Portland, OR 97035" +302702,USB-C Charging Cable,1,11.95,12/09/19 13:48,"824 Hill St, Portland, OR 97035" +302703,AAA Batteries (4-pack),1,2.99,12/26/19 23:16,"704 Jefferson St, Portland, OR 97035" +302704,AA Batteries (4-pack),1,3.84,12/12/19 17:07,"807 Elm St, Boston, MA 02215" +302705,20in Monitor,1,109.99,12/09/19 09:30,"432 North St, Los Angeles, CA 90001" +302706,AA Batteries (4-pack),2,3.84,12/09/19 20:36,"885 Elm St, San Francisco, CA 94016" +302707,Google Phone,1,600,12/14/19 10:33,"453 Maple St, Atlanta, GA 30301" +302708,iPhone,1,700,12/02/19 12:56,"437 North St, San Francisco, CA 94016" +302709,AAA Batteries (4-pack),1,2.99,12/31/19 17:43,"73 Sunset St, Atlanta, GA 30301" +302710,Lightning Charging Cable,1,14.95,12/07/19 09:41,"878 North St, Seattle, WA 98101" +302711,Lightning Charging Cable,2,14.95,12/31/19 10:50,"963 Hickory St, Seattle, WA 98101" +302712,20in Monitor,1,109.99,12/27/19 17:57,"978 Ridge St, Portland, OR 97035" +302713,Wired Headphones,1,11.99,12/23/19 14:41,"899 Highland St, San Francisco, CA 94016" +302714,Wired Headphones,2,11.99,12/13/19 01:25,"281 Jefferson St, San Francisco, CA 94016" +302715,Lightning Charging Cable,1,14.95,12/26/19 12:44,"526 Hill St, New York City, NY 10001" +302716,AA Batteries (4-pack),1,3.84,12/19/19 18:19,"777 Hill St, Austin, TX 73301" +302717,27in FHD Monitor,1,149.99,12/18/19 10:07,"818 11th St, Portland, ME 04101" +302718,USB-C Charging Cable,1,11.95,12/17/19 18:40,"987 Hill St, New York City, NY 10001" +302719,Flatscreen TV,1,300,12/02/19 14:34,"788 9th St, San Francisco, CA 94016" +302720,iPhone,1,700,12/21/19 15:01,"381 11th St, San Francisco, CA 94016" +302721,AAA Batteries (4-pack),1,2.99,12/06/19 08:21,"335 11th St, Los Angeles, CA 90001" +302722,Lightning Charging Cable,1,14.95,12/25/19 18:30,"310 Dogwood St, New York City, NY 10001" +302723,USB-C Charging Cable,1,11.95,12/16/19 14:28,"592 Spruce St, Boston, MA 02215" +302724,Wired Headphones,1,11.99,12/15/19 13:48,"387 Meadow St, San Francisco, CA 94016" +302725,AAA Batteries (4-pack),3,2.99,12/24/19 11:23,"108 Johnson St, Dallas, TX 75001" +302726,27in FHD Monitor,1,149.99,12/17/19 13:15,"549 6th St, Boston, MA 02215" +302727,USB-C Charging Cable,1,11.95,12/13/19 08:20,"731 12th St, San Francisco, CA 94016" +302728,AAA Batteries (4-pack),1,2.99,12/11/19 12:50,"902 5th St, Boston, MA 02215" +302729,USB-C Charging Cable,1,11.95,12/03/19 13:08,"171 Maple St, Los Angeles, CA 90001" +302730,27in 4K Gaming Monitor,1,389.99,12/16/19 01:48,"480 Cedar St, Dallas, TX 75001" +302731,Lightning Charging Cable,2,14.95,12/19/19 11:25,"446 1st St, Boston, MA 02215" +302732,Lightning Charging Cable,1,14.95,12/19/19 09:03,"761 Cedar St, Seattle, WA 98101" +302733,Google Phone,1,600,12/12/19 16:49,"848 Main St, New York City, NY 10001" +302734,USB-C Charging Cable,1,11.95,12/22/19 17:25,"590 Church St, Boston, MA 02215" +302735,20in Monitor,1,109.99,12/03/19 13:50,"258 10th St, Atlanta, GA 30301" +302736,Apple Airpods Headphones,1,150,12/31/19 13:11,"577 4th St, San Francisco, CA 94016" +302737,AAA Batteries (4-pack),1,2.99,12/25/19 17:39,"122 2nd St, San Francisco, CA 94016" +302738,27in FHD Monitor,1,149.99,12/19/19 13:29,"271 Ridge St, San Francisco, CA 94016" +302739,Vareebadd Phone,1,400,12/24/19 07:27,"819 Lakeview St, Boston, MA 02215" +302740,AAA Batteries (4-pack),3,2.99,12/17/19 22:08,"451 Jackson St, Boston, MA 02215" +302741,Lightning Charging Cable,1,14.95,12/27/19 12:16,"641 13th St, New York City, NY 10001" +302742,27in FHD Monitor,1,149.99,12/08/19 21:00,"256 6th St, New York City, NY 10001" +302743,iPhone,1,700,12/29/19 22:48,"78 Washington St, Los Angeles, CA 90001" +302743,Apple Airpods Headphones,1,150,12/29/19 22:48,"78 Washington St, Los Angeles, CA 90001" +302744,27in 4K Gaming Monitor,1,389.99,12/03/19 18:25,"562 River St, Los Angeles, CA 90001" +302745,AAA Batteries (4-pack),1,2.99,12/23/19 19:07,"314 Park St, New York City, NY 10001" +302746,Bose SoundSport Headphones,1,99.99,12/27/19 19:07,"86 Adams St, Atlanta, GA 30301" +302747,iPhone,1,700,12/14/19 15:55,"645 Adams St, Seattle, WA 98101" +302748,Bose SoundSport Headphones,1,99.99,12/02/19 10:57,"574 West St, Dallas, TX 75001" +302749,USB-C Charging Cable,2,11.95,12/27/19 11:34,"986 River St, New York City, NY 10001" +302750,20in Monitor,1,109.99,12/08/19 22:19,"685 10th St, Atlanta, GA 30301" +302751,Lightning Charging Cable,1,14.95,12/14/19 13:28,"429 12th St, Atlanta, GA 30301" +302752,Google Phone,1,600,12/17/19 20:50,"871 Main St, San Francisco, CA 94016" +302753,Wired Headphones,1,11.99,12/03/19 16:49,"675 North St, Portland, OR 97035" +302754,Wired Headphones,1,11.99,12/22/19 14:48,"371 Chestnut St, Boston, MA 02215" +302755,27in FHD Monitor,1,149.99,12/09/19 16:38,"228 Jefferson St, Dallas, TX 75001" +302756,iPhone,1,700,12/19/19 12:24,"747 Adams St, Portland, ME 04101" +302757,AA Batteries (4-pack),1,3.84,12/20/19 17:53,"890 Cherry St, Portland, ME 04101" +302758,Bose SoundSport Headphones,1,99.99,12/22/19 15:43,"814 Pine St, Austin, TX 73301" +302759,AAA Batteries (4-pack),1,2.99,12/16/19 15:49,"684 Cedar St, Austin, TX 73301" +302760,iPhone,1,700,12/11/19 08:07,"634 8th St, Dallas, TX 75001" +302761,AAA Batteries (4-pack),1,2.99,12/09/19 12:49,"139 Main St, San Francisco, CA 94016" +302762,AAA Batteries (4-pack),2,2.99,12/07/19 22:00,"129 Maple St, San Francisco, CA 94016" +302763,iPhone,1,700,12/06/19 21:51,"119 River St, Austin, TX 73301" +302763,Lightning Charging Cable,1,14.95,12/06/19 21:51,"119 River St, Austin, TX 73301" +302763,Wired Headphones,1,11.99,12/06/19 21:51,"119 River St, Austin, TX 73301" +302763,Flatscreen TV,1,300,12/06/19 21:51,"119 River St, Austin, TX 73301" +302764,Wired Headphones,1,11.99,01/01/20 04:45,"767 Church St, Seattle, WA 98101" +302765,Lightning Charging Cable,1,14.95,12/18/19 22:44,"772 4th St, Seattle, WA 98101" +302766,Apple Airpods Headphones,1,150,12/26/19 13:11,"510 Maple St, Atlanta, GA 30301" +302767,AAA Batteries (4-pack),1,2.99,12/23/19 23:35,"399 Lake St, Los Angeles, CA 90001" +302768,AAA Batteries (4-pack),2,2.99,12/19/19 17:53,"529 5th St, Los Angeles, CA 90001" +302769,Google Phone,1,600,12/17/19 21:47,"509 Lake St, Portland, OR 97035" +302770,Wired Headphones,1,11.99,12/28/19 21:04,"616 Jackson St, Atlanta, GA 30301" +302771,Wired Headphones,1,11.99,12/20/19 11:17,"800 North St, Boston, MA 02215" +302772,Flatscreen TV,1,300,12/23/19 10:35,"478 Maple St, Portland, OR 97035" +302773,27in FHD Monitor,1,149.99,12/24/19 20:16,"310 13th St, Los Angeles, CA 90001" +302774,27in 4K Gaming Monitor,1,389.99,12/09/19 16:22,"689 Forest St, Seattle, WA 98101" +302775,AAA Batteries (4-pack),2,2.99,12/28/19 12:12,"653 5th St, New York City, NY 10001" +302776,27in 4K Gaming Monitor,1,389.99,12/09/19 11:40,"750 Jefferson St, New York City, NY 10001" +302777,Lightning Charging Cable,1,14.95,12/27/19 12:19,"913 10th St, New York City, NY 10001" +302777,Lightning Charging Cable,1,14.95,12/27/19 12:19,"913 10th St, New York City, NY 10001" +302778,Lightning Charging Cable,1,14.95,12/17/19 14:20,"777 Jackson St, Los Angeles, CA 90001" +302779,Apple Airpods Headphones,1,150,12/09/19 14:34,"360 Meadow St, Los Angeles, CA 90001" +302780,Flatscreen TV,1,300,12/13/19 20:30,"979 Madison St, San Francisco, CA 94016" +302781,USB-C Charging Cable,1,11.95,12/21/19 07:33,"318 Spruce St, Seattle, WA 98101" +302782,AAA Batteries (4-pack),2,2.99,12/18/19 18:07,"805 Highland St, New York City, NY 10001" +302783,USB-C Charging Cable,1,11.95,12/05/19 16:31,"613 Walnut St, Seattle, WA 98101" +302784,Vareebadd Phone,1,400,12/30/19 12:00,"249 Jefferson St, Portland, OR 97035" +302785,USB-C Charging Cable,2,11.95,12/12/19 05:26,"772 Pine St, San Francisco, CA 94016" +302786,Lightning Charging Cable,1,14.95,12/18/19 06:58,"310 Jackson St, San Francisco, CA 94016" +302787,Apple Airpods Headphones,1,150,12/09/19 13:11,"366 Walnut St, Dallas, TX 75001" +302788,Apple Airpods Headphones,1,150,12/10/19 12:25,"344 14th St, Los Angeles, CA 90001" +302789,AAA Batteries (4-pack),2,2.99,12/22/19 12:14,"297 Maple St, Boston, MA 02215" +302790,Macbook Pro Laptop,1,1700,12/15/19 16:59,"103 Park St, New York City, NY 10001" +302791,Apple Airpods Headphones,1,150,12/13/19 21:15,"524 13th St, San Francisco, CA 94016" +302792,Lightning Charging Cable,1,14.95,12/30/19 00:15,"639 Wilson St, San Francisco, CA 94016" +302793,Macbook Pro Laptop,1,1700,12/07/19 21:46,"493 Lake St, San Francisco, CA 94016" +302794,27in FHD Monitor,1,149.99,12/06/19 23:42,"318 Willow St, San Francisco, CA 94016" +302795,Bose SoundSport Headphones,2,99.99,12/26/19 17:50,"618 Pine St, Boston, MA 02215" +302796,Google Phone,1,600,12/13/19 23:58,"400 6th St, Boston, MA 02215" +302796,Wired Headphones,1,11.99,12/13/19 23:58,"400 6th St, Boston, MA 02215" +302797,Lightning Charging Cable,1,14.95,12/13/19 02:24,"241 1st St, Atlanta, GA 30301" +302798,USB-C Charging Cable,1,11.95,12/26/19 01:21,"189 Willow St, Boston, MA 02215" +302799,Macbook Pro Laptop,1,1700,12/24/19 09:38,"27 Willow St, San Francisco, CA 94016" +302800,ThinkPad Laptop,1,999.99,12/07/19 15:11,"122 North St, Seattle, WA 98101" +302801,AA Batteries (4-pack),1,3.84,12/25/19 20:07,"194 North St, San Francisco, CA 94016" +302802,Apple Airpods Headphones,1,150,12/14/19 14:30,"490 Jackson St, Seattle, WA 98101" +302803,20in Monitor,1,109.99,12/04/19 13:28,"327 Cherry St, Portland, OR 97035" +302804,Apple Airpods Headphones,1,150,12/12/19 15:13,"976 Madison St, Atlanta, GA 30301" +302805,Bose SoundSport Headphones,1,99.99,12/01/19 20:56,"818 7th St, Dallas, TX 75001" +302806,Wired Headphones,1,11.99,12/10/19 13:04,"391 8th St, Boston, MA 02215" +302807,AA Batteries (4-pack),2,3.84,12/05/19 08:07,"568 Forest St, San Francisco, CA 94016" +302808,USB-C Charging Cable,2,11.95,12/12/19 13:58,"780 4th St, Seattle, WA 98101" +302809,LG Washing Machine,1,600.0,12/18/19 01:55,"542 Maple St, Atlanta, GA 30301" +302810,USB-C Charging Cable,1,11.95,12/22/19 21:16,"209 10th St, Atlanta, GA 30301" +302811,Apple Airpods Headphones,1,150,12/08/19 19:43,"223 Park St, New York City, NY 10001" +302812,USB-C Charging Cable,1,11.95,12/19/19 15:02,"249 Church St, Seattle, WA 98101" +302813,Lightning Charging Cable,1,14.95,12/24/19 07:19,"541 Meadow St, Austin, TX 73301" +302814,AAA Batteries (4-pack),1,2.99,12/03/19 15:00,"200 Cherry St, San Francisco, CA 94016" +302815,Wired Headphones,1,11.99,12/28/19 09:57,"305 2nd St, New York City, NY 10001" +302816,AAA Batteries (4-pack),1,2.99,12/15/19 13:53,"420 Wilson St, San Francisco, CA 94016" +302817,AAA Batteries (4-pack),2,2.99,12/16/19 07:12,"371 South St, Atlanta, GA 30301" +302818,Lightning Charging Cable,1,14.95,12/11/19 22:12,"346 Washington St, San Francisco, CA 94016" +302819,Bose SoundSport Headphones,2,99.99,12/27/19 20:54,"136 Church St, San Francisco, CA 94016" +302820,27in FHD Monitor,2,149.99,12/02/19 11:19,"383 4th St, Boston, MA 02215" +302821,27in 4K Gaming Monitor,1,389.99,12/19/19 00:50,"910 Johnson St, Los Angeles, CA 90001" +302822,AAA Batteries (4-pack),1,2.99,12/01/19 22:52,"672 Church St, Seattle, WA 98101" +302823,Lightning Charging Cable,1,14.95,12/20/19 03:07,"391 Adams St, San Francisco, CA 94016" +302824,USB-C Charging Cable,1,11.95,12/22/19 21:09,"523 Park St, Dallas, TX 75001" +302825,34in Ultrawide Monitor,1,379.99,12/14/19 21:52,"834 Lincoln St, Los Angeles, CA 90001" +302826,Wired Headphones,1,11.99,12/21/19 14:38,"849 Hickory St, Atlanta, GA 30301" +302827,AAA Batteries (4-pack),1,2.99,12/08/19 21:21,"377 Highland St, New York City, NY 10001" +302828,Vareebadd Phone,1,400,12/24/19 23:41,"733 Meadow St, Seattle, WA 98101" +302829,34in Ultrawide Monitor,1,379.99,12/11/19 14:00,"734 Walnut St, Los Angeles, CA 90001" +302830,USB-C Charging Cable,2,11.95,12/31/19 11:50,"551 9th St, Los Angeles, CA 90001" +302830,Lightning Charging Cable,1,14.95,12/31/19 11:50,"551 9th St, Los Angeles, CA 90001" +302831,Bose SoundSport Headphones,1,99.99,12/03/19 17:10,"131 6th St, Dallas, TX 75001" +302832,Macbook Pro Laptop,1,1700,12/11/19 13:20,"156 Johnson St, San Francisco, CA 94016" +302833,Google Phone,1,600,12/20/19 13:24,"812 Lake St, Boston, MA 02215" +302833,USB-C Charging Cable,1,11.95,12/20/19 13:24,"812 Lake St, Boston, MA 02215" +302834,Flatscreen TV,1,300,12/09/19 17:45,"918 9th St, Seattle, WA 98101" +302835,AA Batteries (4-pack),2,3.84,12/20/19 22:21,"625 Lakeview St, Los Angeles, CA 90001" +302836,Wired Headphones,1,11.99,12/29/19 20:28,"638 2nd St, Atlanta, GA 30301" +302837,Bose SoundSport Headphones,1,99.99,12/17/19 01:23,"189 Hickory St, Portland, OR 97035" +302838,Apple Airpods Headphones,1,150,12/09/19 16:47,"156 Johnson St, San Francisco, CA 94016" +302839,Wired Headphones,1,11.99,12/20/19 00:44,"791 Maple St, Seattle, WA 98101" +302840,Lightning Charging Cable,1,14.95,12/14/19 08:34,"427 Sunset St, New York City, NY 10001" +302841,27in 4K Gaming Monitor,1,389.99,12/26/19 22:08,"870 Lakeview St, Portland, ME 04101" +302842,AAA Batteries (4-pack),1,2.99,12/17/19 10:35,"676 Ridge St, Los Angeles, CA 90001" +302843,USB-C Charging Cable,1,11.95,12/22/19 12:02,"946 1st St, Dallas, TX 75001" +302844,20in Monitor,1,109.99,12/02/19 12:18,"90 Dogwood St, New York City, NY 10001" +302845,Lightning Charging Cable,1,14.95,12/22/19 14:10,"610 1st St, Dallas, TX 75001" +302846,34in Ultrawide Monitor,1,379.99,12/14/19 23:02,"10 Spruce St, Austin, TX 73301" +302847,Bose SoundSport Headphones,1,99.99,12/26/19 23:30,"93 2nd St, Portland, OR 97035" +302848,AA Batteries (4-pack),2,3.84,12/22/19 19:49,"748 Willow St, Atlanta, GA 30301" +302849,Bose SoundSport Headphones,1,99.99,12/24/19 23:45,"32 4th St, Seattle, WA 98101" +302850,Macbook Pro Laptop,1,1700,12/31/19 22:19,"133 8th St, Dallas, TX 75001" +302851,Macbook Pro Laptop,1,1700,12/10/19 13:17,"230 Dogwood St, Dallas, TX 75001" +302852,Flatscreen TV,1,300,12/03/19 22:48,"126 West St, Boston, MA 02215" +302853,AAA Batteries (4-pack),3,2.99,12/31/19 23:44,"648 14th St, Boston, MA 02215" +302854,AA Batteries (4-pack),2,3.84,12/22/19 14:14,"437 13th St, San Francisco, CA 94016" +302855,AAA Batteries (4-pack),1,2.99,12/08/19 12:51,"493 Spruce St, Atlanta, GA 30301" +302856,Vareebadd Phone,1,400,12/06/19 22:59,"342 Main St, Portland, ME 04101" +302857,Wired Headphones,1,11.99,12/11/19 10:33,"443 Jackson St, San Francisco, CA 94016" +302858,27in FHD Monitor,1,149.99,12/03/19 15:03,"827 Willow St, Los Angeles, CA 90001" +302859,USB-C Charging Cable,1,11.95,12/27/19 18:38,"137 2nd St, Seattle, WA 98101" +302860,Wired Headphones,1,11.99,12/06/19 18:36,"101 Main St, Dallas, TX 75001" +302861,AA Batteries (4-pack),1,3.84,12/09/19 22:20,"661 12th St, Dallas, TX 75001" +302862,USB-C Charging Cable,1,11.95,12/02/19 18:10,"734 Maple St, Seattle, WA 98101" +302863,AA Batteries (4-pack),1,3.84,12/20/19 17:47,"942 13th St, San Francisco, CA 94016" +302864,Apple Airpods Headphones,1,150,12/26/19 22:01,"841 Lincoln St, New York City, NY 10001" +302865,20in Monitor,1,109.99,12/10/19 19:21,"226 5th St, Dallas, TX 75001" +302866,Apple Airpods Headphones,1,150,12/15/19 16:50,"19 Jackson St, Atlanta, GA 30301" +302867,USB-C Charging Cable,1,11.95,12/09/19 14:10,"550 Washington St, Los Angeles, CA 90001" +302868,Lightning Charging Cable,1,14.95,12/24/19 12:46,"577 13th St, Los Angeles, CA 90001" +302869,AAA Batteries (4-pack),1,2.99,12/09/19 21:13,"455 Johnson St, Atlanta, GA 30301" +302870,Macbook Pro Laptop,1,1700,12/17/19 17:27,"803 Maple St, New York City, NY 10001" +302871,Apple Airpods Headphones,1,150,12/02/19 11:05,"905 Johnson St, San Francisco, CA 94016" +302872,Lightning Charging Cable,1,14.95,12/25/19 20:49,"754 6th St, Los Angeles, CA 90001" +302873,Bose SoundSport Headphones,1,99.99,12/23/19 07:16,"775 2nd St, New York City, NY 10001" +302874,AAA Batteries (4-pack),1,2.99,12/18/19 19:09,"69 6th St, Los Angeles, CA 90001" +302875,34in Ultrawide Monitor,1,379.99,12/25/19 14:26,"946 Johnson St, San Francisco, CA 94016" +302876,Lightning Charging Cable,1,14.95,12/07/19 22:53,"806 Cedar St, Seattle, WA 98101" +302877,USB-C Charging Cable,1,11.95,12/14/19 17:31,"100 11th St, San Francisco, CA 94016" +302878,iPhone,1,700,12/30/19 21:06,"264 11th St, Los Angeles, CA 90001" +302879,Apple Airpods Headphones,1,150,12/18/19 13:12,"786 Hill St, Boston, MA 02215" +302880,AAA Batteries (4-pack),2,2.99,12/09/19 15:41,"273 1st St, Boston, MA 02215" +302881,Wired Headphones,1,11.99,12/03/19 20:58,"947 Elm St, San Francisco, CA 94016" +302882,Bose SoundSport Headphones,1,99.99,12/07/19 23:11,"730 Washington St, Boston, MA 02215" +302883,34in Ultrawide Monitor,1,379.99,12/10/19 11:23,"153 West St, Los Angeles, CA 90001" +302884,AA Batteries (4-pack),1,3.84,12/21/19 22:03,"326 9th St, Los Angeles, CA 90001" +302885,Wired Headphones,1,11.99,12/10/19 20:23,"389 Adams St, Dallas, TX 75001" +302886,Apple Airpods Headphones,1,150,12/10/19 13:00,"495 Jackson St, Los Angeles, CA 90001" +302887,AAA Batteries (4-pack),1,2.99,12/26/19 19:46,"523 Lakeview St, Atlanta, GA 30301" +302888,Apple Airpods Headphones,1,150,12/15/19 00:54,"908 Walnut St, Austin, TX 73301" +302889,AA Batteries (4-pack),1,3.84,12/27/19 22:35,"394 Washington St, Portland, OR 97035" +302890,AAA Batteries (4-pack),1,2.99,12/23/19 04:27,"444 Chestnut St, San Francisco, CA 94016" +302891,AAA Batteries (4-pack),1,2.99,12/04/19 21:53,"228 Wilson St, San Francisco, CA 94016" +302892,AA Batteries (4-pack),1,3.84,12/15/19 18:07,"862 Adams St, Atlanta, GA 30301" +302893,AA Batteries (4-pack),1,3.84,12/08/19 13:50,"875 West St, New York City, NY 10001" +302894,AA Batteries (4-pack),1,3.84,12/25/19 09:12,"915 1st St, San Francisco, CA 94016" +302895,Lightning Charging Cable,1,14.95,12/13/19 20:37,"385 11th St, Boston, MA 02215" +302896,Bose SoundSport Headphones,1,99.99,12/08/19 15:04,"907 West St, San Francisco, CA 94016" +302897,AA Batteries (4-pack),2,3.84,12/11/19 00:55,"878 5th St, Los Angeles, CA 90001" +302898,AAA Batteries (4-pack),2,2.99,12/27/19 20:39,"348 West St, Los Angeles, CA 90001" +302899,USB-C Charging Cable,1,11.95,12/27/19 11:05,"509 Hill St, Los Angeles, CA 90001" +302900,Wired Headphones,1,11.99,12/27/19 14:18,"47 Pine St, San Francisco, CA 94016" +302901,Wired Headphones,1,11.99,12/25/19 18:55,"475 Washington St, Dallas, TX 75001" +302902,Wired Headphones,1,11.99,12/13/19 15:22,"280 West St, San Francisco, CA 94016" +302903,Wired Headphones,1,11.99,12/12/19 19:54,"556 Lake St, Dallas, TX 75001" +302904,Macbook Pro Laptop,1,1700,12/27/19 09:20,"296 Cedar St, San Francisco, CA 94016" +302905,AAA Batteries (4-pack),5,2.99,12/01/19 09:51,"634 Spruce St, Austin, TX 73301" +302906,USB-C Charging Cable,1,11.95,12/11/19 12:15,"712 Church St, San Francisco, CA 94016" +302907,AA Batteries (4-pack),2,3.84,12/29/19 00:47,"120 River St, Los Angeles, CA 90001" +302908,iPhone,1,700,12/30/19 18:29,"794 4th St, Seattle, WA 98101" +302909,USB-C Charging Cable,1,11.95,12/03/19 20:51,"479 Adams St, San Francisco, CA 94016" +302910,ThinkPad Laptop,1,999.99,12/06/19 11:52,"908 Park St, San Francisco, CA 94016" +302911,AA Batteries (4-pack),1,3.84,12/27/19 10:12,"776 Ridge St, Boston, MA 02215" +302912,Lightning Charging Cable,1,14.95,12/23/19 04:57,"722 Lake St, Los Angeles, CA 90001" +302913,Lightning Charging Cable,1,14.95,12/16/19 13:41,"161 Lake St, Los Angeles, CA 90001" +302914,LG Dryer,1,600.0,12/18/19 19:15,"240 Ridge St, Austin, TX 73301" +302915,Macbook Pro Laptop,1,1700,12/13/19 13:28,"471 11th St, Los Angeles, CA 90001" +302916,Wired Headphones,1,11.99,12/27/19 13:09,"607 Jefferson St, New York City, NY 10001" +302917,iPhone,1,700,12/16/19 12:39,"164 10th St, Boston, MA 02215" +302918,AA Batteries (4-pack),1,3.84,12/13/19 20:50,"929 Cedar St, San Francisco, CA 94016" +302919,27in FHD Monitor,1,149.99,12/30/19 17:35,"208 12th St, San Francisco, CA 94016" +302920,USB-C Charging Cable,2,11.95,12/16/19 17:25,"516 Lincoln St, Atlanta, GA 30301" +302921,Vareebadd Phone,1,400,12/21/19 22:02,"183 South St, Seattle, WA 98101" +302921,USB-C Charging Cable,1,11.95,12/21/19 22:02,"183 South St, Seattle, WA 98101" +302921,Wired Headphones,1,11.99,12/21/19 22:02,"183 South St, Seattle, WA 98101" +302922,USB-C Charging Cable,1,11.95,12/24/19 00:12,"921 Cherry St, Portland, ME 04101" +302923,AA Batteries (4-pack),1,3.84,12/06/19 17:17,"708 Spruce St, Seattle, WA 98101" +302924,USB-C Charging Cable,1,11.95,12/09/19 23:10,"989 Maple St, New York City, NY 10001" +302925,USB-C Charging Cable,1,11.95,12/19/19 21:11,"64 Hickory St, Los Angeles, CA 90001" +302926,34in Ultrawide Monitor,1,379.99,12/21/19 21:41,"530 Ridge St, Los Angeles, CA 90001" +302927,Lightning Charging Cable,1,14.95,12/04/19 23:58,"362 Cedar St, Boston, MA 02215" +302928,27in 4K Gaming Monitor,1,389.99,12/05/19 09:01,"284 Cedar St, Atlanta, GA 30301" +302929,AAA Batteries (4-pack),1,2.99,12/03/19 23:17,"936 Cherry St, Atlanta, GA 30301" +302930,ThinkPad Laptop,1,999.99,12/16/19 08:09,"275 Spruce St, New York City, NY 10001" +302931,ThinkPad Laptop,1,999.99,12/18/19 15:59,"124 Cherry St, New York City, NY 10001" +302932,AA Batteries (4-pack),1,3.84,12/20/19 18:29,"507 2nd St, New York City, NY 10001" +302933,Apple Airpods Headphones,1,150,12/02/19 13:03,"85 Adams St, Atlanta, GA 30301" +302934,USB-C Charging Cable,1,11.95,12/09/19 20:52,"367 1st St, Seattle, WA 98101" +302935,Lightning Charging Cable,1,14.95,12/14/19 21:21,"777 10th St, Los Angeles, CA 90001" +302936,27in FHD Monitor,1,149.99,12/09/19 12:13,"254 10th St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +302937,ThinkPad Laptop,1,999.99,12/25/19 09:31,"524 14th St, Seattle, WA 98101" +302938,Wired Headphones,1,11.99,12/20/19 12:17,"439 Jackson St, Seattle, WA 98101" +302939,Lightning Charging Cable,1,14.95,12/08/19 15:20,"515 Jackson St, Portland, OR 97035" +302940,Lightning Charging Cable,1,14.95,12/12/19 07:21,"632 6th St, San Francisco, CA 94016" +302941,Apple Airpods Headphones,1,150,12/07/19 17:16,"52 North St, Austin, TX 73301" +302942,Lightning Charging Cable,1,14.95,12/15/19 14:47,"412 5th St, Los Angeles, CA 90001" +302943,USB-C Charging Cable,1,11.95,12/14/19 08:46,"736 Forest St, Portland, OR 97035" +302944,AAA Batteries (4-pack),1,2.99,12/18/19 20:17,"316 Jackson St, Boston, MA 02215" +302945,USB-C Charging Cable,1,11.95,12/13/19 10:00,"597 Highland St, New York City, NY 10001" +302946,AAA Batteries (4-pack),1,2.99,12/13/19 22:21,"352 Main St, New York City, NY 10001" +302947,34in Ultrawide Monitor,1,379.99,12/30/19 18:32,"174 8th St, Los Angeles, CA 90001" +302948,Flatscreen TV,1,300,12/07/19 09:06,"540 12th St, Portland, OR 97035" +302949,Lightning Charging Cable,1,14.95,12/21/19 09:59,"877 11th St, Boston, MA 02215" +302950,AAA Batteries (4-pack),1,2.99,12/19/19 08:27,"126 Hill St, Boston, MA 02215" +302951,Lightning Charging Cable,1,14.95,12/10/19 07:33,"149 West St, Dallas, TX 75001" +302952,USB-C Charging Cable,1,11.95,12/10/19 12:56,"226 8th St, Austin, TX 73301" +302953,Google Phone,1,600,12/27/19 18:18,"120 Maple St, San Francisco, CA 94016" +302954,USB-C Charging Cable,1,11.95,12/16/19 16:27,"309 Pine St, Los Angeles, CA 90001" +302955,Vareebadd Phone,1,400,12/30/19 17:28,"13 Spruce St, San Francisco, CA 94016" +302956,AAA Batteries (4-pack),1,2.99,12/05/19 19:40,"749 Pine St, Dallas, TX 75001" +302957,AA Batteries (4-pack),3,3.84,12/30/19 16:58,"824 Willow St, San Francisco, CA 94016" +302958,Wired Headphones,1,11.99,12/12/19 12:21,"443 Willow St, San Francisco, CA 94016" +302959,AA Batteries (4-pack),1,3.84,12/09/19 19:24,"315 Lake St, Los Angeles, CA 90001" +302960,AAA Batteries (4-pack),3,2.99,12/02/19 19:33,"322 Jackson St, San Francisco, CA 94016" +302961,34in Ultrawide Monitor,1,379.99,12/15/19 10:22,"831 2nd St, San Francisco, CA 94016" +302962,ThinkPad Laptop,1,999.99,12/25/19 22:24,"717 4th St, Atlanta, GA 30301" +302963,USB-C Charging Cable,2,11.95,12/30/19 14:01,"400 11th St, Austin, TX 73301" +302964,Macbook Pro Laptop,1,1700,12/23/19 20:08,"924 Jackson St, Portland, OR 97035" +302965,27in FHD Monitor,1,149.99,12/25/19 23:31,"253 Madison St, Austin, TX 73301" +302966,iPhone,1,700,12/12/19 15:55,"408 6th St, Dallas, TX 75001" +302966,Lightning Charging Cable,1,14.95,12/12/19 15:55,"408 6th St, Dallas, TX 75001" +302967,Flatscreen TV,1,300,12/20/19 13:25,"299 Walnut St, Portland, OR 97035" +302968,USB-C Charging Cable,1,11.95,12/01/19 22:23,"535 9th St, Los Angeles, CA 90001" +302969,27in 4K Gaming Monitor,1,389.99,12/20/19 16:45,"916 South St, Los Angeles, CA 90001" +302970,34in Ultrawide Monitor,1,379.99,12/29/19 10:00,"86 Maple St, Seattle, WA 98101" +302971,AA Batteries (4-pack),1,3.84,12/31/19 16:41,"32 Wilson St, Los Angeles, CA 90001" +302972,Apple Airpods Headphones,1,150,12/24/19 15:35,"268 Pine St, Portland, OR 97035" +302973,iPhone,1,700,12/29/19 11:35,"457 12th St, New York City, NY 10001" +302973,Lightning Charging Cable,1,14.95,12/29/19 11:35,"457 12th St, New York City, NY 10001" +302974,ThinkPad Laptop,1,999.99,12/19/19 12:27,"245 8th St, Boston, MA 02215" +302975,USB-C Charging Cable,1,11.95,12/06/19 17:46,"510 13th St, Seattle, WA 98101" +302976,USB-C Charging Cable,1,11.95,12/09/19 01:25,"517 Jefferson St, San Francisco, CA 94016" +302977,AAA Batteries (4-pack),1,2.99,12/25/19 11:23,"495 Lake St, San Francisco, CA 94016" +302978,Wired Headphones,1,11.99,12/15/19 22:28,"65 12th St, Los Angeles, CA 90001" +302979,USB-C Charging Cable,1,11.95,12/27/19 12:19,"470 6th St, Boston, MA 02215" +302980,Vareebadd Phone,1,400,12/10/19 10:30,"554 River St, Boston, MA 02215" +302981,Lightning Charging Cable,1,14.95,12/28/19 10:40,"859 8th St, Los Angeles, CA 90001" +302982,AAA Batteries (4-pack),2,2.99,12/27/19 18:56,"248 8th St, Austin, TX 73301" +302982,USB-C Charging Cable,1,11.95,12/27/19 18:56,"248 8th St, Austin, TX 73301" +302983,34in Ultrawide Monitor,1,379.99,12/22/19 19:14,"217 West St, Los Angeles, CA 90001" +302984,Wired Headphones,2,11.99,12/18/19 10:21,"638 Willow St, Dallas, TX 75001" +302985,AAA Batteries (4-pack),1,2.99,12/17/19 13:13,"28 Jefferson St, San Francisco, CA 94016" +302986,27in FHD Monitor,1,149.99,12/14/19 19:47,"468 6th St, Dallas, TX 75001" +302987,Wired Headphones,1,11.99,12/20/19 07:46,"650 Jefferson St, San Francisco, CA 94016" +302988,USB-C Charging Cable,1,11.95,12/23/19 21:43,"411 Main St, Boston, MA 02215" +302989,USB-C Charging Cable,1,11.95,12/12/19 19:48,"94 8th St, New York City, NY 10001" +302990,USB-C Charging Cable,1,11.95,12/03/19 13:51,"80 11th St, San Francisco, CA 94016" +302991,USB-C Charging Cable,1,11.95,12/09/19 15:38,"822 Pine St, New York City, NY 10001" +302992,USB-C Charging Cable,1,11.95,12/15/19 13:23,"266 4th St, Los Angeles, CA 90001" +302993,Macbook Pro Laptop,1,1700,12/24/19 16:47,"530 Wilson St, Portland, ME 04101" +302994,AAA Batteries (4-pack),2,2.99,12/30/19 00:13,"344 6th St, San Francisco, CA 94016" +302995,AAA Batteries (4-pack),1,2.99,12/27/19 10:31,"536 Johnson St, Portland, ME 04101" +302996,Wired Headphones,1,11.99,12/24/19 07:48,"547 8th St, Dallas, TX 75001" +302997,Lightning Charging Cable,1,14.95,12/09/19 12:40,"986 Jackson St, Los Angeles, CA 90001" +302998,34in Ultrawide Monitor,1,379.99,12/08/19 15:17,"534 1st St, New York City, NY 10001" +302999,34in Ultrawide Monitor,1,379.99,12/04/19 22:52,"45 Elm St, Los Angeles, CA 90001" +303000,AAA Batteries (4-pack),2,2.99,12/22/19 11:08,"423 Johnson St, Los Angeles, CA 90001" +303001,AAA Batteries (4-pack),1,2.99,12/24/19 19:43,"727 South St, Austin, TX 73301" +303002,Bose SoundSport Headphones,1,99.99,12/06/19 23:02,"252 Main St, Boston, MA 02215" +303003,Lightning Charging Cable,1,14.95,12/23/19 19:47,"313 1st St, Seattle, WA 98101" +303004,AAA Batteries (4-pack),2,2.99,12/06/19 14:32,"775 12th St, Los Angeles, CA 90001" +303005,AAA Batteries (4-pack),1,2.99,12/23/19 10:53,"46 Adams St, Los Angeles, CA 90001" +303006,AA Batteries (4-pack),1,3.84,12/03/19 14:04,"136 Elm St, Seattle, WA 98101" +303007,AAA Batteries (4-pack),1,2.99,12/03/19 17:51,"854 Maple St, Atlanta, GA 30301" +303007,Wired Headphones,1,11.99,12/03/19 17:51,"854 Maple St, Atlanta, GA 30301" +303008,Apple Airpods Headphones,1,150,12/08/19 11:15,"457 Lake St, New York City, NY 10001" +303009,20in Monitor,1,109.99,12/13/19 17:46,"264 Hickory St, San Francisco, CA 94016" +303010,Lightning Charging Cable,1,14.95,12/09/19 17:30,"164 8th St, Austin, TX 73301" +303011,AAA Batteries (4-pack),2,2.99,12/03/19 21:50,"640 North St, San Francisco, CA 94016" +303012,34in Ultrawide Monitor,1,379.99,12/23/19 15:08,"885 West St, Boston, MA 02215" +303013,AAA Batteries (4-pack),1,2.99,12/23/19 17:32,"319 11th St, Seattle, WA 98101" +303014,Apple Airpods Headphones,1,150,12/26/19 15:04,"816 Forest St, Boston, MA 02215" +303015,34in Ultrawide Monitor,1,379.99,12/15/19 19:17,"566 River St, Los Angeles, CA 90001" +303016,34in Ultrawide Monitor,1,379.99,12/05/19 20:58,"664 Willow St, Portland, OR 97035" +303017,Apple Airpods Headphones,1,150,12/27/19 08:55,"304 Church St, Seattle, WA 98101" +303018,USB-C Charging Cable,2,11.95,12/12/19 11:25,"86 1st St, Los Angeles, CA 90001" +303019,Apple Airpods Headphones,1,150,12/23/19 19:23,"326 10th St, Portland, ME 04101" +303020,Bose SoundSport Headphones,1,99.99,12/03/19 18:37,"377 Main St, Dallas, TX 75001" +303021,Lightning Charging Cable,1,14.95,12/30/19 10:15,"277 Chestnut St, Portland, OR 97035" +303022,27in FHD Monitor,1,149.99,12/04/19 09:12,"257 North St, Los Angeles, CA 90001" +303023,Apple Airpods Headphones,1,150,12/09/19 11:44,"196 Dogwood St, Seattle, WA 98101" +303024,34in Ultrawide Monitor,1,379.99,12/19/19 14:41,"98 Madison St, Los Angeles, CA 90001" +303025,ThinkPad Laptop,1,999.99,12/20/19 21:59,"52 Forest St, San Francisco, CA 94016" +303026,iPhone,1,700,12/20/19 23:56,"824 1st St, Austin, TX 73301" +303027,Wired Headphones,1,11.99,12/20/19 08:12,"832 5th St, San Francisco, CA 94016" +303028,Bose SoundSport Headphones,1,99.99,12/08/19 21:39,"29 River St, New York City, NY 10001" +303029,Bose SoundSport Headphones,1,99.99,12/17/19 19:43,"321 13th St, Los Angeles, CA 90001" +303030,27in FHD Monitor,1,149.99,12/19/19 18:46,"771 West St, Los Angeles, CA 90001" +303031,27in 4K Gaming Monitor,1,389.99,12/30/19 13:31,"12 Lincoln St, New York City, NY 10001" +303032,AA Batteries (4-pack),1,3.84,12/14/19 08:23,"397 7th St, New York City, NY 10001" +303033,Apple Airpods Headphones,1,150,12/11/19 22:30,"912 North St, Los Angeles, CA 90001" +303034,AA Batteries (4-pack),1,3.84,12/09/19 11:49,"477 Cedar St, San Francisco, CA 94016" +303035,USB-C Charging Cable,1,11.95,12/14/19 09:53,"71 Wilson St, Los Angeles, CA 90001" +303036,AAA Batteries (4-pack),1,2.99,12/15/19 11:25,"890 Walnut St, Dallas, TX 75001" +303037,USB-C Charging Cable,2,11.95,12/01/19 10:43,"686 Hill St, Los Angeles, CA 90001" +303038,27in FHD Monitor,1,149.99,12/10/19 21:34,"800 Walnut St, San Francisco, CA 94016" +303039,AA Batteries (4-pack),1,3.84,12/20/19 23:39,"650 5th St, Dallas, TX 75001" +303040,Macbook Pro Laptop,1,1700,12/06/19 16:02,"616 Lincoln St, San Francisco, CA 94016" +303041,27in 4K Gaming Monitor,2,389.99,12/16/19 16:15,"799 Washington St, San Francisco, CA 94016" +303042,34in Ultrawide Monitor,1,379.99,12/16/19 21:45,"718 Spruce St, Boston, MA 02215" +303043,Lightning Charging Cable,1,14.95,12/16/19 12:34,"919 Wilson St, Los Angeles, CA 90001" +303044,34in Ultrawide Monitor,1,379.99,12/21/19 12:31,"343 14th St, San Francisco, CA 94016" +303045,Lightning Charging Cable,1,14.95,12/03/19 09:34,"933 8th St, Boston, MA 02215" +303046,Lightning Charging Cable,1,14.95,12/08/19 13:34,"628 South St, San Francisco, CA 94016" +303047,Bose SoundSport Headphones,1,99.99,12/18/19 17:28,"197 Highland St, New York City, NY 10001" +303048,Lightning Charging Cable,1,14.95,12/17/19 23:22,"796 Willow St, Boston, MA 02215" +303049,Apple Airpods Headphones,1,150,12/31/19 11:40,"599 River St, Boston, MA 02215" +303050,AAA Batteries (4-pack),2,2.99,12/07/19 20:20,"32 River St, Atlanta, GA 30301" +303051,AA Batteries (4-pack),2,3.84,12/21/19 15:14,"375 4th St, Seattle, WA 98101" +303052,USB-C Charging Cable,1,11.95,12/01/19 15:28,"821 13th St, San Francisco, CA 94016" +303053,AA Batteries (4-pack),1,3.84,12/18/19 08:15,"611 Walnut St, New York City, NY 10001" +303054,Wired Headphones,1,11.99,12/01/19 15:44,"765 10th St, Boston, MA 02215" +303055,Lightning Charging Cable,1,14.95,12/26/19 19:15,"580 Highland St, San Francisco, CA 94016" +303056,USB-C Charging Cable,1,11.95,12/21/19 11:35,"708 Elm St, Seattle, WA 98101" +303057,AA Batteries (4-pack),1,3.84,12/24/19 15:52,"190 Lake St, New York City, NY 10001" +303058,AA Batteries (4-pack),1,3.84,12/09/19 16:17,"701 11th St, Los Angeles, CA 90001" +303059,AAA Batteries (4-pack),1,2.99,12/28/19 09:49,"582 Washington St, Atlanta, GA 30301" +303060,USB-C Charging Cable,1,11.95,12/04/19 18:00,"256 Center St, Los Angeles, CA 90001" +303061,Lightning Charging Cable,1,14.95,12/10/19 13:49,"18 Johnson St, Seattle, WA 98101" +303062,USB-C Charging Cable,2,11.95,12/17/19 23:40,"895 Dogwood St, Atlanta, GA 30301" +303063,USB-C Charging Cable,1,11.95,12/03/19 19:31,"324 Hickory St, Portland, OR 97035" +303064,Apple Airpods Headphones,1,150,12/10/19 07:22,"940 Johnson St, Los Angeles, CA 90001" +303065,Apple Airpods Headphones,1,150,12/06/19 18:04,"906 Johnson St, Los Angeles, CA 90001" +303066,AA Batteries (4-pack),1,3.84,12/05/19 12:22,"961 10th St, Seattle, WA 98101" +303067,27in FHD Monitor,1,149.99,12/11/19 18:51,"347 14th St, Seattle, WA 98101" +303068,20in Monitor,1,109.99,12/16/19 00:47,"824 Elm St, Los Angeles, CA 90001" +303069,Lightning Charging Cable,1,14.95,12/27/19 13:54,"387 Center St, San Francisco, CA 94016" +303070,AA Batteries (4-pack),1,3.84,12/13/19 15:17,"461 Sunset St, San Francisco, CA 94016" +303071,Apple Airpods Headphones,1,150,12/28/19 23:03,"444 Jackson St, San Francisco, CA 94016" +303072,Wired Headphones,1,11.99,12/11/19 11:38,"118 14th St, Austin, TX 73301" +303073,AAA Batteries (4-pack),1,2.99,12/03/19 20:13,"228 Hickory St, Atlanta, GA 30301" +303074,Apple Airpods Headphones,2,150,12/05/19 10:54,"306 Adams St, Boston, MA 02215" +303075,27in 4K Gaming Monitor,1,389.99,12/07/19 20:44,"980 Meadow St, Los Angeles, CA 90001" +303076,Bose SoundSport Headphones,1,99.99,12/25/19 11:35,"830 Willow St, Seattle, WA 98101" +303077,Wired Headphones,1,11.99,12/15/19 18:18,"62 2nd St, Boston, MA 02215" +303078,20in Monitor,1,109.99,12/21/19 15:47,"741 Park St, New York City, NY 10001" +303079,AAA Batteries (4-pack),3,2.99,12/09/19 11:00,"610 Adams St, Los Angeles, CA 90001" +303080,USB-C Charging Cable,1,11.95,12/07/19 19:04,"825 13th St, Dallas, TX 75001" +303081,Apple Airpods Headphones,1,150,12/20/19 17:55,"102 Park St, New York City, NY 10001" +303082,iPhone,1,700,12/28/19 14:36,"317 Sunset St, San Francisco, CA 94016" +303082,Lightning Charging Cable,1,14.95,12/28/19 14:36,"317 Sunset St, San Francisco, CA 94016" +303083,27in 4K Gaming Monitor,1,389.99,12/04/19 16:10,"74 Park St, New York City, NY 10001" +303084,USB-C Charging Cable,1,11.95,12/20/19 20:14,"668 Lake St, San Francisco, CA 94016" +303085,Flatscreen TV,1,300,12/31/19 14:13,"402 10th St, New York City, NY 10001" +303086,Flatscreen TV,1,300,12/21/19 12:34,"378 River St, New York City, NY 10001" +,,,,, +303087,Lightning Charging Cable,1,14.95,12/29/19 12:15,"636 12th St, New York City, NY 10001" +303088,AA Batteries (4-pack),1,3.84,12/26/19 15:53,"406 9th St, New York City, NY 10001" +303089,USB-C Charging Cable,1,11.95,12/29/19 18:51,"171 Lincoln St, Los Angeles, CA 90001" +303090,Lightning Charging Cable,2,14.95,12/21/19 20:39,"444 Johnson St, New York City, NY 10001" +303091,Bose SoundSport Headphones,1,99.99,12/01/19 07:03,"792 1st St, Atlanta, GA 30301" +303092,AA Batteries (4-pack),2,3.84,12/12/19 19:44,"435 12th St, Dallas, TX 75001" +303093,AA Batteries (4-pack),3,3.84,12/20/19 15:38,"497 Sunset St, New York City, NY 10001" +303094,27in FHD Monitor,1,149.99,12/15/19 16:22,"149 Pine St, Seattle, WA 98101" +303095,Apple Airpods Headphones,1,150,12/25/19 22:13,"345 Maple St, Los Angeles, CA 90001" +303096,Lightning Charging Cable,1,14.95,12/20/19 18:39,"515 9th St, Seattle, WA 98101" +303097,Bose SoundSport Headphones,1,99.99,12/15/19 02:18,"355 Forest St, Atlanta, GA 30301" +303098,AAA Batteries (4-pack),1,2.99,12/24/19 13:59,"406 14th St, Atlanta, GA 30301" +303099,ThinkPad Laptop,1,999.99,12/05/19 12:39,"424 11th St, Dallas, TX 75001" +303100,USB-C Charging Cable,1,11.95,12/24/19 07:06,"125 Park St, New York City, NY 10001" +303100,Google Phone,1,600,12/24/19 07:06,"125 Park St, New York City, NY 10001" +303101,Apple Airpods Headphones,1,150,12/20/19 10:42,"663 6th St, San Francisco, CA 94016" +303102,34in Ultrawide Monitor,1,379.99,12/05/19 15:15,"418 West St, New York City, NY 10001" +303103,AAA Batteries (4-pack),1,2.99,12/16/19 17:12,"870 Highland St, New York City, NY 10001" +303104,Wired Headphones,1,11.99,12/20/19 18:51,"948 Jefferson St, Portland, OR 97035" +303105,AA Batteries (4-pack),1,3.84,12/08/19 20:26,"245 2nd St, New York City, NY 10001" +303106,ThinkPad Laptop,1,999.99,12/12/19 00:30,"606 Adams St, Los Angeles, CA 90001" +303107,Bose SoundSport Headphones,1,99.99,12/12/19 20:52,"489 Johnson St, Los Angeles, CA 90001" +303108,AAA Batteries (4-pack),1,2.99,12/01/19 18:27,"37 Spruce St, Seattle, WA 98101" +303109,Bose SoundSport Headphones,1,99.99,12/30/19 10:30,"235 Center St, Austin, TX 73301" +303110,AA Batteries (4-pack),1,3.84,12/07/19 10:13,"154 Highland St, San Francisco, CA 94016" +303111,Flatscreen TV,1,300,12/04/19 14:05,"447 Spruce St, San Francisco, CA 94016" +303112,Flatscreen TV,1,300,12/23/19 15:55,"496 Hill St, Dallas, TX 75001" +303112,27in 4K Gaming Monitor,1,389.99,12/23/19 15:55,"496 Hill St, Dallas, TX 75001" +303113,Macbook Pro Laptop,1,1700,12/26/19 01:41,"271 Chestnut St, Portland, OR 97035" +303114,Google Phone,1,600,12/11/19 17:32,"451 Lake St, Boston, MA 02215" +303115,Apple Airpods Headphones,1,150,12/10/19 15:00,"744 Main St, Los Angeles, CA 90001" +303116,USB-C Charging Cable,1,11.95,12/24/19 19:52,"666 North St, Dallas, TX 75001" +303117,iPhone,1,700,12/25/19 21:32,"424 14th St, Atlanta, GA 30301" +303118,Lightning Charging Cable,1,14.95,12/05/19 13:06,"766 Maple St, New York City, NY 10001" +303119,AA Batteries (4-pack),1,3.84,12/19/19 11:37,"41 River St, Dallas, TX 75001" +303120,Lightning Charging Cable,1,14.95,12/21/19 14:59,"596 Jefferson St, New York City, NY 10001" +303121,AAA Batteries (4-pack),1,2.99,12/20/19 23:48,"768 Sunset St, Boston, MA 02215" +303122,AA Batteries (4-pack),1,3.84,12/28/19 12:06,"471 Jefferson St, Seattle, WA 98101" +303123,AAA Batteries (4-pack),2,2.99,12/14/19 08:11,"160 10th St, San Francisco, CA 94016" +303124,34in Ultrawide Monitor,1,379.99,12/16/19 15:30,"552 Johnson St, Boston, MA 02215" +303125,iPhone,1,700,12/29/19 16:57,"325 Jackson St, Boston, MA 02215" +303125,Apple Airpods Headphones,1,150,12/29/19 16:57,"325 Jackson St, Boston, MA 02215" +303126,AA Batteries (4-pack),1,3.84,12/09/19 07:58,"586 Park St, Portland, OR 97035" +303127,20in Monitor,1,109.99,12/14/19 22:34,"277 Jackson St, Los Angeles, CA 90001" +303128,USB-C Charging Cable,1,11.95,12/10/19 16:52,"562 Maple St, Los Angeles, CA 90001" +303129,Lightning Charging Cable,1,14.95,12/30/19 00:07,"602 Johnson St, New York City, NY 10001" +303130,Lightning Charging Cable,1,14.95,12/08/19 20:22,"679 River St, San Francisco, CA 94016" +303131,AA Batteries (4-pack),1,3.84,12/18/19 18:50,"131 Lake St, Los Angeles, CA 90001" +303132,27in 4K Gaming Monitor,1,389.99,12/30/19 13:42,"358 Pine St, Austin, TX 73301" +303133,27in FHD Monitor,1,149.99,12/16/19 23:11,"865 Jefferson St, Los Angeles, CA 90001" +303134,USB-C Charging Cable,1,11.95,12/05/19 18:57,"243 Hill St, San Francisco, CA 94016" +303135,Lightning Charging Cable,1,14.95,12/06/19 09:50,"973 Hill St, San Francisco, CA 94016" +303136,34in Ultrawide Monitor,1,379.99,12/01/19 21:22,"532 Lakeview St, Los Angeles, CA 90001" +303137,Flatscreen TV,1,300,12/28/19 19:30,"773 14th St, Los Angeles, CA 90001" +303138,AA Batteries (4-pack),1,3.84,12/14/19 17:52,"737 Park St, Portland, OR 97035" +303139,USB-C Charging Cable,1,11.95,12/17/19 08:45,"192 13th St, Portland, OR 97035" +303140,Google Phone,1,600,12/26/19 00:35,"857 Lakeview St, Dallas, TX 75001" +303141,Bose SoundSport Headphones,1,99.99,12/22/19 14:01,"955 South St, Los Angeles, CA 90001" +303142,Lightning Charging Cable,1,14.95,12/30/19 21:39,"756 8th St, Atlanta, GA 30301" +303143,Apple Airpods Headphones,1,150,12/03/19 21:58,"428 Sunset St, Austin, TX 73301" +303144,AAA Batteries (4-pack),1,2.99,12/30/19 05:56,"401 Lakeview St, Los Angeles, CA 90001" +303145,Wired Headphones,1,11.99,12/01/19 18:34,"422 Highland St, Dallas, TX 75001" +303146,Lightning Charging Cable,1,14.95,12/05/19 13:07,"401 North St, Los Angeles, CA 90001" +303147,Google Phone,1,600,12/08/19 09:11,"758 Ridge St, San Francisco, CA 94016" +303148,Bose SoundSport Headphones,1,99.99,12/10/19 16:49,"837 Maple St, Dallas, TX 75001" +303149,AA Batteries (4-pack),1,3.84,12/03/19 22:05,"402 Highland St, San Francisco, CA 94016" +303150,Lightning Charging Cable,1,14.95,12/09/19 12:40,"835 West St, Seattle, WA 98101" +303151,Lightning Charging Cable,1,14.95,12/23/19 18:30,"256 Forest St, Portland, OR 97035" +303152,Lightning Charging Cable,1,14.95,12/03/19 10:04,"242 Cherry St, New York City, NY 10001" +303153,USB-C Charging Cable,1,11.95,12/13/19 18:07,"360 Jackson St, San Francisco, CA 94016" +303154,20in Monitor,1,109.99,12/29/19 10:08,"97 5th St, Los Angeles, CA 90001" +303155,iPhone,1,700,12/28/19 08:19,"775 Elm St, San Francisco, CA 94016" +303156,Wired Headphones,1,11.99,12/26/19 11:47,"791 Hill St, New York City, NY 10001" +303157,Lightning Charging Cable,1,14.95,12/27/19 15:22,"615 12th St, Portland, OR 97035" +303158,Bose SoundSport Headphones,1,99.99,12/17/19 08:25,"823 Johnson St, Atlanta, GA 30301" +303159,Apple Airpods Headphones,1,150,12/22/19 10:57,"42 Center St, Boston, MA 02215" +303160,Bose SoundSport Headphones,1,99.99,12/14/19 22:39,"405 Main St, Austin, TX 73301" +303161,Bose SoundSport Headphones,1,99.99,12/05/19 10:43,"740 8th St, San Francisco, CA 94016" +303162,34in Ultrawide Monitor,1,379.99,12/14/19 21:09,"725 Forest St, San Francisco, CA 94016" +303163,Apple Airpods Headphones,1,150,12/01/19 12:46,"348 Wilson St, Los Angeles, CA 90001" +303164,iPhone,1,700,12/06/19 22:27,"881 Hill St, New York City, NY 10001" +303165,Google Phone,1,600,12/29/19 05:39,"761 Elm St, Austin, TX 73301" +303166,Lightning Charging Cable,1,14.95,12/16/19 11:09,"282 North St, San Francisco, CA 94016" +303167,20in Monitor,1,109.99,12/27/19 23:14,"643 Willow St, Seattle, WA 98101" +303168,Apple Airpods Headphones,1,150,12/17/19 10:18,"790 Wilson St, San Francisco, CA 94016" +303169,iPhone,1,700,12/25/19 23:15,"963 Adams St, Los Angeles, CA 90001" +303169,Wired Headphones,1,11.99,12/25/19 23:15,"963 Adams St, Los Angeles, CA 90001" +303170,USB-C Charging Cable,1,11.95,12/01/19 22:31,"208 Maple St, Boston, MA 02215" +303171,USB-C Charging Cable,1,11.95,12/30/19 07:33,"594 4th St, Austin, TX 73301" +303172,Wired Headphones,1,11.99,12/19/19 17:46,"205 9th St, Dallas, TX 75001" +303172,Flatscreen TV,1,300,12/19/19 17:46,"205 9th St, Dallas, TX 75001" +303173,34in Ultrawide Monitor,1,379.99,12/30/19 11:47,"21 Dogwood St, San Francisco, CA 94016" +303174,AA Batteries (4-pack),2,3.84,12/12/19 08:02,"922 Spruce St, New York City, NY 10001" +303175,ThinkPad Laptop,1,999.99,12/21/19 21:16,"681 11th St, Boston, MA 02215" +303176,USB-C Charging Cable,1,11.95,12/10/19 21:40,"452 Lake St, New York City, NY 10001" +303177,AA Batteries (4-pack),1,3.84,12/05/19 13:04,"915 5th St, Los Angeles, CA 90001" +303178,AA Batteries (4-pack),2,3.84,12/19/19 10:10,"82 South St, Atlanta, GA 30301" +303179,Lightning Charging Cable,1,14.95,12/13/19 22:26,"598 7th St, Portland, ME 04101" +303180,Lightning Charging Cable,1,14.95,12/11/19 00:08,"280 13th St, San Francisco, CA 94016" +303181,Apple Airpods Headphones,1,150,12/23/19 20:34,"759 Hill St, New York City, NY 10001" +303182,AAA Batteries (4-pack),2,2.99,12/23/19 16:28,"149 4th St, Portland, OR 97035" +303183,AA Batteries (4-pack),1,3.84,12/06/19 09:29,"286 Park St, Boston, MA 02215" +303184,USB-C Charging Cable,1,11.95,12/06/19 04:41,"687 Willow St, Austin, TX 73301" +303185,USB-C Charging Cable,1,11.95,12/07/19 12:28,"347 Spruce St, Boston, MA 02215" +303186,Wired Headphones,1,11.99,12/20/19 08:39,"968 Cherry St, San Francisco, CA 94016" +303187,27in 4K Gaming Monitor,1,389.99,12/08/19 22:32,"694 Elm St, San Francisco, CA 94016" +303188,AAA Batteries (4-pack),3,2.99,12/23/19 16:55,"756 Dogwood St, Los Angeles, CA 90001" +303189,Macbook Pro Laptop,1,1700,12/29/19 10:45,"620 Park St, Los Angeles, CA 90001" +303190,Bose SoundSport Headphones,1,99.99,12/19/19 08:32,"79 Willow St, New York City, NY 10001" +303191,Macbook Pro Laptop,1,1700,12/02/19 16:00,"218 Jackson St, Dallas, TX 75001" +303192,AA Batteries (4-pack),2,3.84,12/29/19 22:43,"685 Jefferson St, Portland, OR 97035" +303193,Wired Headphones,1,11.99,12/11/19 21:11,"244 Sunset St, Boston, MA 02215" +303194,27in FHD Monitor,1,149.99,12/21/19 11:22,"555 5th St, New York City, NY 10001" +303195,AAA Batteries (4-pack),2,2.99,12/18/19 19:58,"581 Lake St, San Francisco, CA 94016" +303196,AA Batteries (4-pack),2,3.84,12/16/19 20:32,"507 Madison St, Dallas, TX 75001" +303197,USB-C Charging Cable,1,11.95,12/22/19 19:29,"191 South St, Atlanta, GA 30301" +303198,USB-C Charging Cable,1,11.95,12/14/19 11:35,"927 Church St, New York City, NY 10001" +303199,USB-C Charging Cable,1,11.95,12/26/19 17:43,"734 1st St, San Francisco, CA 94016" +303200,27in 4K Gaming Monitor,1,389.99,12/31/19 23:11,"847 Lincoln St, Seattle, WA 98101" +303201,AA Batteries (4-pack),1,3.84,12/07/19 16:22,"764 Washington St, Boston, MA 02215" +303202,USB-C Charging Cable,1,11.95,12/15/19 18:37,"650 11th St, Dallas, TX 75001" +303203,Lightning Charging Cable,1,14.95,12/02/19 19:29,"483 Willow St, New York City, NY 10001" +303204,20in Monitor,1,109.99,12/28/19 11:48,"672 5th St, San Francisco, CA 94016" +303205,Bose SoundSport Headphones,1,99.99,12/11/19 18:58,"823 Willow St, Atlanta, GA 30301" +303206,Apple Airpods Headphones,1,150,12/01/19 22:24,"747 Wilson St, Los Angeles, CA 90001" +303207,USB-C Charging Cable,2,11.95,12/28/19 12:29,"481 Highland St, San Francisco, CA 94016" +303208,AA Batteries (4-pack),1,3.84,12/20/19 13:24,"391 Chestnut St, San Francisco, CA 94016" +303209,Wired Headphones,1,11.99,12/24/19 11:12,"421 Jackson St, Los Angeles, CA 90001" +303210,34in Ultrawide Monitor,1,379.99,12/16/19 22:53,"591 Pine St, Seattle, WA 98101" +303211,Wired Headphones,2,11.99,12/31/19 09:37,"53 Adams St, San Francisco, CA 94016" +303212,Google Phone,1,600,12/20/19 19:38,"619 West St, Boston, MA 02215" +303213,AAA Batteries (4-pack),2,2.99,12/10/19 04:16,"11 10th St, San Francisco, CA 94016" +303214,Lightning Charging Cable,1,14.95,12/08/19 08:43,"595 Washington St, Los Angeles, CA 90001" +303215,Apple Airpods Headphones,1,150,12/30/19 11:18,"251 Park St, Los Angeles, CA 90001" +303216,ThinkPad Laptop,1,999.99,12/02/19 07:29,"874 5th St, Boston, MA 02215" +303217,Apple Airpods Headphones,1,150,12/25/19 18:55,"143 West St, San Francisco, CA 94016" +303218,USB-C Charging Cable,1,11.95,12/08/19 14:42,"321 Ridge St, Portland, OR 97035" +303219,AAA Batteries (4-pack),1,2.99,12/21/19 12:36,"522 Ridge St, Seattle, WA 98101" +303220,Wired Headphones,1,11.99,12/23/19 11:45,"276 Wilson St, San Francisco, CA 94016" +303221,Bose SoundSport Headphones,1,99.99,12/01/19 20:16,"953 Johnson St, San Francisco, CA 94016" +303222,USB-C Charging Cable,1,11.95,12/19/19 17:22,"455 Washington St, Los Angeles, CA 90001" +303223,27in 4K Gaming Monitor,1,389.99,12/08/19 16:21,"181 Hill St, Boston, MA 02215" +303224,Bose SoundSport Headphones,1,99.99,12/12/19 12:04,"351 4th St, Dallas, TX 75001" +303225,AA Batteries (4-pack),2,3.84,12/13/19 06:59,"315 2nd St, Los Angeles, CA 90001" +303226,Lightning Charging Cable,2,14.95,12/16/19 18:58,"24 2nd St, Boston, MA 02215" +303227,USB-C Charging Cable,1,11.95,12/18/19 21:40,"364 Meadow St, Dallas, TX 75001" +303228,27in 4K Gaming Monitor,1,389.99,12/01/19 13:10,"32 Maple St, Boston, MA 02215" +303229,Bose SoundSport Headphones,1,99.99,12/31/19 21:06,"128 Lincoln St, New York City, NY 10001" +303230,ThinkPad Laptop,1,999.99,12/07/19 09:47,"17 6th St, Portland, OR 97035" +303231,USB-C Charging Cable,1,11.95,12/07/19 11:11,"521 Highland St, Seattle, WA 98101" +303232,AA Batteries (4-pack),1,3.84,12/18/19 14:10,"906 Willow St, Los Angeles, CA 90001" +303233,USB-C Charging Cable,1,11.95,12/11/19 02:52,"730 13th St, Los Angeles, CA 90001" +303234,AAA Batteries (4-pack),1,2.99,12/11/19 11:29,"363 Hickory St, Dallas, TX 75001" +303235,iPhone,1,700,12/16/19 18:56,"583 2nd St, San Francisco, CA 94016" +303235,Lightning Charging Cable,1,14.95,12/16/19 18:56,"583 2nd St, San Francisco, CA 94016" +303236,Bose SoundSport Headphones,1,99.99,12/09/19 15:44,"817 Church St, Portland, OR 97035" +303237,Macbook Pro Laptop,1,1700,12/28/19 11:04,"695 Chestnut St, New York City, NY 10001" +303238,Lightning Charging Cable,1,14.95,12/28/19 13:44,"978 Elm St, Austin, TX 73301" +303239,AAA Batteries (4-pack),1,2.99,12/07/19 13:48,"791 2nd St, San Francisco, CA 94016" +303240,27in FHD Monitor,1,149.99,12/29/19 12:42,"665 4th St, Los Angeles, CA 90001" +303241,Lightning Charging Cable,1,14.95,12/26/19 12:41,"755 Sunset St, San Francisco, CA 94016" +303242,AAA Batteries (4-pack),1,2.99,12/17/19 14:42,"404 Maple St, Dallas, TX 75001" +303243,Wired Headphones,2,11.99,12/19/19 14:32,"735 2nd St, San Francisco, CA 94016" +303244,LG Washing Machine,1,600.0,12/25/19 15:17,"639 7th St, Austin, TX 73301" +303245,Lightning Charging Cable,1,14.95,12/04/19 21:44,"610 Highland St, San Francisco, CA 94016" +303246,20in Monitor,1,109.99,12/16/19 11:37,"819 Highland St, San Francisco, CA 94016" +303247,ThinkPad Laptop,1,999.99,12/24/19 14:23,"916 12th St, Seattle, WA 98101" +303248,Wired Headphones,1,11.99,12/23/19 08:42,"734 Sunset St, Atlanta, GA 30301" +303249,AA Batteries (4-pack),2,3.84,12/14/19 18:04,"3 Forest St, Seattle, WA 98101" +303250,iPhone,1,700,12/17/19 13:31,"395 Forest St, Austin, TX 73301" +303251,27in FHD Monitor,1,149.99,12/30/19 12:46,"971 8th St, San Francisco, CA 94016" +303252,Bose SoundSport Headphones,1,99.99,12/13/19 21:55,"982 Wilson St, Atlanta, GA 30301" +303253,Bose SoundSport Headphones,1,99.99,12/21/19 01:38,"460 6th St, New York City, NY 10001" +303254,AAA Batteries (4-pack),1,2.99,12/12/19 09:06,"386 Hill St, Seattle, WA 98101" +303255,27in FHD Monitor,1,149.99,12/14/19 14:45,"466 12th St, San Francisco, CA 94016" +303256,iPhone,1,700,12/25/19 15:38,"22 Forest St, New York City, NY 10001" +303257,Macbook Pro Laptop,1,1700,12/09/19 07:39,"967 Dogwood St, Boston, MA 02215" +303258,Bose SoundSport Headphones,1,99.99,12/28/19 07:51,"497 Hickory St, Los Angeles, CA 90001" +303259,Flatscreen TV,1,300,12/10/19 22:01,"332 Main St, New York City, NY 10001" +303260,Google Phone,1,600,12/23/19 21:33,"7 Highland St, New York City, NY 10001" +303261,AAA Batteries (4-pack),2,2.99,12/04/19 10:29,"700 12th St, Boston, MA 02215" +303262,Google Phone,1,600,12/17/19 12:38,"806 Wilson St, San Francisco, CA 94016" +303262,USB-C Charging Cable,1,11.95,12/17/19 12:38,"806 Wilson St, San Francisco, CA 94016" +303263,LG Washing Machine,1,600.0,12/28/19 10:25,"200 Jefferson St, Boston, MA 02215" +303264,AAA Batteries (4-pack),3,2.99,12/19/19 12:34,"33 Lakeview St, San Francisco, CA 94016" +303265,LG Dryer,1,600.0,12/27/19 10:14,"760 Dogwood St, San Francisco, CA 94016" +303265,iPhone,1,700,12/27/19 10:14,"760 Dogwood St, San Francisco, CA 94016" +303266,USB-C Charging Cable,1,11.95,12/13/19 21:04,"350 Lakeview St, Boston, MA 02215" +303267,Apple Airpods Headphones,1,150,12/08/19 07:18,"549 South St, New York City, NY 10001" +303267,34in Ultrawide Monitor,1,379.99,12/08/19 07:18,"549 South St, New York City, NY 10001" +303268,ThinkPad Laptop,1,999.99,12/25/19 12:04,"285 4th St, San Francisco, CA 94016" +303269,AA Batteries (4-pack),1,3.84,12/05/19 20:52,"381 13th St, Los Angeles, CA 90001" +303270,Google Phone,1,600,12/03/19 00:04,"369 Ridge St, New York City, NY 10001" +303271,iPhone,1,700,12/06/19 14:25,"257 Elm St, New York City, NY 10001" +303272,iPhone,1,700,12/09/19 09:52,"483 Jackson St, San Francisco, CA 94016" +303273,AA Batteries (4-pack),2,3.84,12/05/19 13:54,"185 Pine St, San Francisco, CA 94016" +303274,Wired Headphones,1,11.99,12/06/19 13:15,"135 Hickory St, Austin, TX 73301" +303275,AAA Batteries (4-pack),1,2.99,12/14/19 19:32,"94 Park St, Seattle, WA 98101" +303276,USB-C Charging Cable,1,11.95,12/17/19 12:00,"569 Johnson St, Boston, MA 02215" +303277,Wired Headphones,1,11.99,01/01/20 00:48,"338 Forest St, Los Angeles, CA 90001" +303278,Wired Headphones,1,11.99,12/22/19 17:57,"412 5th St, Atlanta, GA 30301" +303279,Apple Airpods Headphones,1,150,12/06/19 18:34,"927 7th St, Los Angeles, CA 90001" +303280,Wired Headphones,1,11.99,12/31/19 11:09,"628 North St, New York City, NY 10001" +303281,Apple Airpods Headphones,1,150,12/02/19 13:32,"902 14th St, Portland, OR 97035" +303282,Apple Airpods Headphones,1,150,12/19/19 20:47,"336 Sunset St, Boston, MA 02215" +303283,Flatscreen TV,1,300,12/24/19 16:54,"194 Highland St, Boston, MA 02215" +303284,Bose SoundSport Headphones,1,99.99,12/06/19 10:14,"7 Elm St, Austin, TX 73301" +303285,27in FHD Monitor,1,149.99,12/22/19 15:38,"661 4th St, San Francisco, CA 94016" +303286,AA Batteries (4-pack),2,3.84,12/13/19 18:13,"390 13th St, Dallas, TX 75001" +303287,AA Batteries (4-pack),1,3.84,12/02/19 18:05,"72 Wilson St, San Francisco, CA 94016" +303288,LG Washing Machine,1,600.0,12/23/19 12:50,"955 Madison St, Seattle, WA 98101" +303289,USB-C Charging Cable,1,11.95,12/10/19 19:49,"352 Center St, San Francisco, CA 94016" +303289,Wired Headphones,1,11.99,12/10/19 19:49,"352 Center St, San Francisco, CA 94016" +303290,Wired Headphones,1,11.99,12/25/19 20:29,"564 Cherry St, Portland, OR 97035" +303291,Bose SoundSport Headphones,1,99.99,12/29/19 13:43,"725 Cedar St, Portland, OR 97035" +303292,27in FHD Monitor,1,149.99,12/31/19 08:47,"902 River St, Dallas, TX 75001" +303293,Lightning Charging Cable,1,14.95,12/20/19 23:15,"36 South St, Seattle, WA 98101" +303294,Apple Airpods Headphones,1,150,12/19/19 07:13,"333 Jefferson St, Atlanta, GA 30301" +303295,iPhone,1,700,12/17/19 21:08,"395 Jackson St, Boston, MA 02215" +303296,Lightning Charging Cable,1,14.95,12/17/19 19:53,"151 11th St, Dallas, TX 75001" +303297,Google Phone,1,600,12/06/19 16:29,"175 Elm St, Seattle, WA 98101" +303298,Lightning Charging Cable,1,14.95,12/16/19 19:14,"583 Spruce St, Dallas, TX 75001" +303299,Apple Airpods Headphones,1,150,12/26/19 09:11,"342 Walnut St, San Francisco, CA 94016" +303300,AAA Batteries (4-pack),1,2.99,12/25/19 10:35,"463 Sunset St, Portland, OR 97035" +303301,ThinkPad Laptop,1,999.99,12/06/19 08:33,"976 Cedar St, Los Angeles, CA 90001" +303302,Lightning Charging Cable,1,14.95,12/12/19 18:34,"146 Hill St, San Francisco, CA 94016" +303303,Bose SoundSport Headphones,1,99.99,12/15/19 11:43,"881 6th St, Austin, TX 73301" +303304,AA Batteries (4-pack),2,3.84,12/25/19 18:20,"191 2nd St, San Francisco, CA 94016" +303305,iPhone,1,700,12/30/19 21:05,"788 West St, Los Angeles, CA 90001" +303306,AAA Batteries (4-pack),2,2.99,12/29/19 14:00,"226 Ridge St, Los Angeles, CA 90001" +303307,Macbook Pro Laptop,1,1700,12/06/19 18:36,"818 6th St, San Francisco, CA 94016" +303308,Vareebadd Phone,1,400,12/07/19 16:56,"4 Hickory St, Boston, MA 02215" +303309,Lightning Charging Cable,1,14.95,12/10/19 12:07,"422 Dogwood St, Los Angeles, CA 90001" +303310,AAA Batteries (4-pack),1,2.99,12/16/19 14:24,"700 5th St, Los Angeles, CA 90001" +303311,Lightning Charging Cable,1,14.95,12/15/19 17:06,"895 Dogwood St, San Francisco, CA 94016" +303312,iPhone,1,700,12/04/19 09:14,"134 Adams St, Los Angeles, CA 90001" +303313,Apple Airpods Headphones,1,150,12/30/19 19:09,"160 Chestnut St, Boston, MA 02215" +303314,Apple Airpods Headphones,1,150,12/12/19 15:26,"624 2nd St, San Francisco, CA 94016" +303315,AAA Batteries (4-pack),1,2.99,12/05/19 08:56,"754 Jackson St, Atlanta, GA 30301" +303316,Lightning Charging Cable,1,14.95,12/17/19 21:11,"367 North St, New York City, NY 10001" +303317,iPhone,1,700,12/09/19 07:37,"144 Park St, Atlanta, GA 30301" +303318,USB-C Charging Cable,1,11.95,12/06/19 13:14,"396 Hill St, Boston, MA 02215" +303319,AAA Batteries (4-pack),2,2.99,12/10/19 13:52,"750 Lakeview St, Atlanta, GA 30301" +303320,AAA Batteries (4-pack),1,2.99,12/06/19 03:21,"928 11th St, Boston, MA 02215" +303321,USB-C Charging Cable,1,11.95,12/05/19 19:42,"643 Cedar St, Los Angeles, CA 90001" +303322,27in FHD Monitor,1,149.99,12/10/19 10:23,"704 Forest St, Atlanta, GA 30301" +303323,Apple Airpods Headphones,1,150,12/29/19 13:41,"39 Dogwood St, New York City, NY 10001" +303324,Wired Headphones,1,11.99,12/17/19 17:50,"972 Lincoln St, San Francisco, CA 94016" +303325,ThinkPad Laptop,1,999.99,12/16/19 09:20,"247 South St, Dallas, TX 75001" +303326,Google Phone,1,600,12/23/19 17:27,"659 Johnson St, Portland, OR 97035" +303327,Macbook Pro Laptop,1,1700,12/20/19 19:33,"994 7th St, New York City, NY 10001" +303328,Wired Headphones,1,11.99,12/25/19 15:11,"953 7th St, San Francisco, CA 94016" +303329,USB-C Charging Cable,1,11.95,12/01/19 19:48,"253 Center St, Seattle, WA 98101" +303330,iPhone,1,700,12/30/19 13:55,"586 5th St, Los Angeles, CA 90001" +303331,Apple Airpods Headphones,1,150,12/09/19 08:35,"2 Jackson St, Boston, MA 02215" +303332,USB-C Charging Cable,1,11.95,12/14/19 11:02,"573 Cherry St, Boston, MA 02215" +303333,AAA Batteries (4-pack),1,2.99,12/15/19 00:54,"24 Pine St, Austin, TX 73301" +303334,Wired Headphones,1,11.99,12/05/19 13:26,"857 Maple St, Los Angeles, CA 90001" +303335,LG Dryer,1,600.0,12/29/19 19:50,"582 12th St, Boston, MA 02215" +303336,USB-C Charging Cable,1,11.95,12/31/19 10:02,"425 River St, New York City, NY 10001" +303337,iPhone,1,700,12/04/19 08:57,"949 Maple St, San Francisco, CA 94016" +303338,Wired Headphones,1,11.99,12/22/19 08:54,"694 Hickory St, San Francisco, CA 94016" +303339,27in 4K Gaming Monitor,1,389.99,12/11/19 15:57,"432 Washington St, Los Angeles, CA 90001" +303340,ThinkPad Laptop,1,999.99,12/28/19 22:11,"314 Park St, San Francisco, CA 94016" +303341,USB-C Charging Cable,1,11.95,12/31/19 22:45,"219 Willow St, New York City, NY 10001" +303342,Macbook Pro Laptop,1,1700,12/09/19 17:30,"41 Johnson St, San Francisco, CA 94016" +303343,Wired Headphones,1,11.99,12/10/19 18:53,"998 9th St, New York City, NY 10001" +303344,Bose SoundSport Headphones,1,99.99,12/25/19 11:18,"309 Chestnut St, New York City, NY 10001" +303345,AA Batteries (4-pack),1,3.84,12/26/19 17:30,"413 12th St, New York City, NY 10001" +303346,AA Batteries (4-pack),2,3.84,12/24/19 16:19,"408 Elm St, Portland, OR 97035" +303347,Bose SoundSport Headphones,1,99.99,12/18/19 07:01,"921 Cedar St, San Francisco, CA 94016" +303348,Flatscreen TV,1,300,12/27/19 11:18,"9 Elm St, Boston, MA 02215" +303349,USB-C Charging Cable,1,11.95,12/25/19 14:27,"113 Sunset St, Los Angeles, CA 90001" +303350,34in Ultrawide Monitor,1,379.99,12/10/19 20:21,"408 9th St, San Francisco, CA 94016" +303351,Bose SoundSport Headphones,1,99.99,12/04/19 21:47,"485 13th St, Los Angeles, CA 90001" +303352,AA Batteries (4-pack),1,3.84,12/10/19 17:13,"240 7th St, Atlanta, GA 30301" +303352,Bose SoundSport Headphones,1,99.99,12/10/19 17:13,"240 7th St, Atlanta, GA 30301" +303353,Lightning Charging Cable,1,14.95,12/09/19 22:58,"827 Jefferson St, San Francisco, CA 94016" +303354,USB-C Charging Cable,1,11.95,12/16/19 15:31,"608 Hill St, San Francisco, CA 94016" +303355,Apple Airpods Headphones,1,150,12/16/19 13:28,"120 Willow St, New York City, NY 10001" +303356,AA Batteries (4-pack),1,3.84,12/05/19 13:11,"551 Hickory St, San Francisco, CA 94016" +303357,Apple Airpods Headphones,1,150,12/13/19 21:27,"141 12th St, Dallas, TX 75001" +303358,USB-C Charging Cable,1,11.95,12/25/19 20:46,"300 6th St, Dallas, TX 75001" +303359,Wired Headphones,1,11.99,12/02/19 09:46,"493 Washington St, New York City, NY 10001" +303360,USB-C Charging Cable,1,11.95,12/01/19 12:04,"582 Willow St, San Francisco, CA 94016" +303361,Google Phone,1,600,12/27/19 13:33,"638 Meadow St, San Francisco, CA 94016" +303362,Lightning Charging Cable,1,14.95,12/24/19 12:21,"877 Cedar St, Boston, MA 02215" +303363,Google Phone,1,600,12/09/19 09:39,"349 Washington St, Los Angeles, CA 90001" +303364,Bose SoundSport Headphones,1,99.99,12/07/19 09:57,"139 2nd St, San Francisco, CA 94016" +303365,AAA Batteries (4-pack),1,2.99,12/12/19 12:40,"457 4th St, Los Angeles, CA 90001" +,,,,, +303366,Flatscreen TV,1,300,12/18/19 16:08,"492 Center St, Los Angeles, CA 90001" +303367,AA Batteries (4-pack),1,3.84,12/08/19 05:22,"961 6th St, San Francisco, CA 94016" +,,,,, +303368,Wired Headphones,1,11.99,12/22/19 19:33,"841 Madison St, Los Angeles, CA 90001" +303369,AA Batteries (4-pack),1,3.84,12/10/19 23:19,"864 Willow St, Dallas, TX 75001" +303370,USB-C Charging Cable,1,11.95,12/03/19 14:32,"421 Lake St, Atlanta, GA 30301" +303371,iPhone,1,700,12/21/19 00:36,"195 12th St, Los Angeles, CA 90001" +303372,Apple Airpods Headphones,1,150,12/17/19 10:42,"685 Adams St, New York City, NY 10001" +303373,Bose SoundSport Headphones,1,99.99,12/25/19 12:57,"964 Jackson St, Los Angeles, CA 90001" +303374,AAA Batteries (4-pack),2,2.99,12/28/19 09:11,"313 10th St, Boston, MA 02215" +303375,AA Batteries (4-pack),1,3.84,12/24/19 20:21,"87 Pine St, Dallas, TX 75001" +303376,Vareebadd Phone,1,400,12/13/19 00:45,"894 Lake St, Austin, TX 73301" +303377,USB-C Charging Cable,1,11.95,12/12/19 13:07,"650 Church St, New York City, NY 10001" +303378,ThinkPad Laptop,1,999.99,12/19/19 17:43,"224 13th St, Portland, OR 97035" +303379,Bose SoundSport Headphones,1,99.99,12/26/19 15:08,"766 Meadow St, New York City, NY 10001" +303380,Wired Headphones,1,11.99,12/08/19 11:22,"681 Sunset St, Dallas, TX 75001" +303381,Wired Headphones,1,11.99,12/23/19 21:09,"289 Jefferson St, Los Angeles, CA 90001" +303382,AA Batteries (4-pack),1,3.84,12/28/19 19:14,"876 Chestnut St, Seattle, WA 98101" +303383,Lightning Charging Cable,1,14.95,12/01/19 10:49,"295 Sunset St, New York City, NY 10001" +303384,Vareebadd Phone,1,400,12/10/19 20:37,"753 Elm St, San Francisco, CA 94016" +303385,USB-C Charging Cable,1,11.95,12/05/19 15:07,"320 14th St, Atlanta, GA 30301" +303386,27in 4K Gaming Monitor,1,389.99,12/23/19 18:00,"747 Washington St, San Francisco, CA 94016" +303387,Apple Airpods Headphones,1,150,12/25/19 11:34,"960 Cedar St, Boston, MA 02215" +303388,AAA Batteries (4-pack),1,2.99,12/29/19 01:25,"463 Dogwood St, New York City, NY 10001" +303389,USB-C Charging Cable,1,11.95,12/21/19 19:40,"436 11th St, Austin, TX 73301" +303390,Google Phone,1,600,12/06/19 16:58,"497 12th St, Seattle, WA 98101" +303391,Google Phone,1,600,12/27/19 18:19,"822 Cedar St, Austin, TX 73301" +303392,AAA Batteries (4-pack),1,2.99,12/25/19 18:19,"235 Main St, Portland, ME 04101" +303393,Lightning Charging Cable,2,14.95,12/14/19 15:58,"727 Ridge St, Boston, MA 02215" +303394,34in Ultrawide Monitor,1,379.99,12/13/19 10:34,"578 Center St, Seattle, WA 98101" +303395,Lightning Charging Cable,1,14.95,12/24/19 15:46,"74 Cherry St, Seattle, WA 98101" +303396,20in Monitor,1,109.99,12/31/19 11:45,"231 13th St, San Francisco, CA 94016" +303397,20in Monitor,1,109.99,12/16/19 16:31,"505 Pine St, New York City, NY 10001" +303398,ThinkPad Laptop,1,999.99,12/06/19 12:18,"203 Walnut St, Portland, OR 97035" +303399,AA Batteries (4-pack),1,3.84,12/27/19 20:24,"265 West St, Portland, OR 97035" +303400,Lightning Charging Cable,1,14.95,12/19/19 21:24,"597 Pine St, Austin, TX 73301" +303401,AAA Batteries (4-pack),1,2.99,12/22/19 12:33,"897 Hill St, Los Angeles, CA 90001" +303402,Wired Headphones,1,11.99,12/31/19 20:06,"518 Pine St, New York City, NY 10001" +303403,iPhone,1,700,12/21/19 15:31,"624 Meadow St, Portland, ME 04101" +303404,AAA Batteries (4-pack),1,2.99,12/03/19 10:09,"915 11th St, San Francisco, CA 94016" +303405,Apple Airpods Headphones,1,150,12/24/19 17:30,"927 1st St, Seattle, WA 98101" +303406,AA Batteries (4-pack),2,3.84,12/28/19 20:42,"785 Meadow St, Atlanta, GA 30301" +303407,Lightning Charging Cable,1,14.95,12/20/19 19:23,"822 South St, Los Angeles, CA 90001" +303408,Wired Headphones,1,11.99,12/02/19 22:52,"286 Jefferson St, Dallas, TX 75001" +303409,Apple Airpods Headphones,1,150,12/16/19 13:47,"825 Johnson St, Seattle, WA 98101" +303410,20in Monitor,1,109.99,12/01/19 18:00,"109 Pine St, San Francisco, CA 94016" +303411,Flatscreen TV,1,300,12/28/19 11:32,"685 Elm St, San Francisco, CA 94016" +303412,Macbook Pro Laptop,1,1700,12/30/19 21:56,"11 14th St, New York City, NY 10001" +303413,27in FHD Monitor,1,149.99,12/24/19 18:05,"892 Maple St, San Francisco, CA 94016" +303414,Wired Headphones,1,11.99,12/10/19 06:40,"312 7th St, Los Angeles, CA 90001" +303415,USB-C Charging Cable,1,11.95,12/30/19 15:00,"903 Hill St, New York City, NY 10001" +303416,Bose SoundSport Headphones,1,99.99,12/13/19 18:34,"135 Walnut St, Portland, OR 97035" +303417,AA Batteries (4-pack),1,3.84,12/04/19 12:04,"644 Pine St, Los Angeles, CA 90001" +303418,Wired Headphones,1,11.99,12/27/19 21:22,"785 Center St, Austin, TX 73301" +303419,USB-C Charging Cable,1,11.95,12/13/19 22:15,"646 Cherry St, Boston, MA 02215" +303420,AAA Batteries (4-pack),3,2.99,12/17/19 21:08,"735 North St, New York City, NY 10001" +303421,AA Batteries (4-pack),3,3.84,12/22/19 16:04,"480 Pine St, Atlanta, GA 30301" +303422,27in FHD Monitor,1,149.99,12/14/19 19:10,"134 Jefferson St, San Francisco, CA 94016" +303423,27in FHD Monitor,1,149.99,12/19/19 19:07,"145 Church St, San Francisco, CA 94016" +303424,27in FHD Monitor,1,149.99,12/13/19 21:19,"364 Highland St, Los Angeles, CA 90001" +303425,Lightning Charging Cable,1,14.95,12/18/19 19:11,"990 1st St, Dallas, TX 75001" +303426,Bose SoundSport Headphones,1,99.99,12/08/19 23:41,"722 Willow St, New York City, NY 10001" +303427,AA Batteries (4-pack),1,3.84,12/31/19 20:17,"29 Church St, New York City, NY 10001" +303428,Flatscreen TV,1,300,12/21/19 18:57,"115 Pine St, Dallas, TX 75001" +303429,20in Monitor,1,109.99,12/01/19 17:35,"286 Main St, Los Angeles, CA 90001" +303430,USB-C Charging Cable,1,11.95,12/26/19 10:57,"795 Lake St, Atlanta, GA 30301" +303430,ThinkPad Laptop,1,999.99,12/26/19 10:57,"795 Lake St, Atlanta, GA 30301" +303431,27in FHD Monitor,1,149.99,12/10/19 01:00,"654 1st St, Austin, TX 73301" +303432,Bose SoundSport Headphones,1,99.99,12/11/19 20:05,"635 West St, Los Angeles, CA 90001" +303433,AA Batteries (4-pack),1,3.84,12/18/19 21:24,"416 Spruce St, Seattle, WA 98101" +303434,AAA Batteries (4-pack),2,2.99,12/03/19 09:00,"680 Park St, Seattle, WA 98101" +303435,27in 4K Gaming Monitor,1,389.99,12/10/19 17:16,"194 West St, San Francisco, CA 94016" +303436,iPhone,1,700,12/26/19 12:00,"133 14th St, Los Angeles, CA 90001" +303436,Lightning Charging Cable,1,14.95,12/26/19 12:00,"133 14th St, Los Angeles, CA 90001" +303437,USB-C Charging Cable,1,11.95,12/06/19 21:56,"11 Center St, Seattle, WA 98101" +303438,AAA Batteries (4-pack),2,2.99,12/17/19 19:12,"239 Chestnut St, Los Angeles, CA 90001" +303439,Apple Airpods Headphones,1,150,12/08/19 01:10,"456 7th St, San Francisco, CA 94016" +303440,Macbook Pro Laptop,1,1700,12/04/19 18:09,"760 Jackson St, Boston, MA 02215" +303441,AAA Batteries (4-pack),1,2.99,12/05/19 21:22,"890 Jackson St, Atlanta, GA 30301" +303442,iPhone,1,700,12/28/19 19:49,"847 Elm St, San Francisco, CA 94016" +303443,27in FHD Monitor,1,149.99,12/05/19 10:55,"614 10th St, Seattle, WA 98101" +303444,USB-C Charging Cable,1,11.95,12/21/19 22:35,"767 Pine St, Atlanta, GA 30301" +303445,Apple Airpods Headphones,1,150,12/01/19 16:36,"734 Sunset St, New York City, NY 10001" +303446,Apple Airpods Headphones,1,150,12/16/19 21:26,"129 Lake St, Boston, MA 02215" +303447,Lightning Charging Cable,1,14.95,12/12/19 15:07,"653 Main St, San Francisco, CA 94016" +303448,iPhone,1,700,12/24/19 12:35,"136 12th St, San Francisco, CA 94016" +303449,Apple Airpods Headphones,1,150,12/22/19 17:03,"986 9th St, Seattle, WA 98101" +303450,Bose SoundSport Headphones,1,99.99,12/26/19 19:50,"9 Sunset St, Los Angeles, CA 90001" +303451,AA Batteries (4-pack),1,3.84,12/21/19 16:19,"77 Ridge St, Portland, ME 04101" +303452,iPhone,1,700,12/23/19 05:03,"569 Jackson St, Atlanta, GA 30301" +303453,20in Monitor,1,109.99,12/28/19 15:08,"198 Madison St, San Francisco, CA 94016" +303454,AA Batteries (4-pack),1,3.84,12/26/19 15:43,"93 Cherry St, Boston, MA 02215" +303455,Macbook Pro Laptop,1,1700,12/29/19 17:36,"31 7th St, San Francisco, CA 94016" +303456,Apple Airpods Headphones,1,150,12/18/19 19:00,"461 Lakeview St, Austin, TX 73301" +303457,AAA Batteries (4-pack),1,2.99,12/01/19 23:03,"249 Jackson St, Boston, MA 02215" +303458,Wired Headphones,1,11.99,12/13/19 10:29,"563 Center St, San Francisco, CA 94016" +303459,Flatscreen TV,1,300,12/07/19 06:49,"866 Walnut St, San Francisco, CA 94016" +303460,AAA Batteries (4-pack),1,2.99,12/23/19 20:37,"392 Jefferson St, Seattle, WA 98101" +303461,Apple Airpods Headphones,1,150,12/11/19 13:12,"692 Wilson St, San Francisco, CA 94016" +303462,27in FHD Monitor,1,149.99,12/13/19 19:30,"342 6th St, San Francisco, CA 94016" +303463,20in Monitor,1,109.99,12/17/19 15:58,"748 Hill St, Los Angeles, CA 90001" +303464,27in 4K Gaming Monitor,1,389.99,12/28/19 11:26,"613 Madison St, Boston, MA 02215" +303465,AAA Batteries (4-pack),6,2.99,12/29/19 11:57,"527 Spruce St, Austin, TX 73301" +303466,Apple Airpods Headphones,1,150,12/05/19 00:25,"875 Church St, Boston, MA 02215" +303467,Wired Headphones,1,11.99,12/30/19 13:19,"924 Lincoln St, Atlanta, GA 30301" +303468,USB-C Charging Cable,1,11.95,12/25/19 19:20,"133 Johnson St, Dallas, TX 75001" +303469,Apple Airpods Headphones,1,150,12/17/19 09:04,"941 Meadow St, San Francisco, CA 94016" +303470,Bose SoundSport Headphones,1,99.99,12/02/19 11:34,"616 Pine St, New York City, NY 10001" +303471,AAA Batteries (4-pack),1,2.99,12/18/19 19:48,"842 2nd St, Los Angeles, CA 90001" +303472,AA Batteries (4-pack),3,3.84,12/26/19 19:23,"438 14th St, Boston, MA 02215" +303473,Bose SoundSport Headphones,1,99.99,12/03/19 13:52,"90 Washington St, Los Angeles, CA 90001" +303474,Lightning Charging Cable,1,14.95,12/21/19 21:18,"183 Elm St, Dallas, TX 75001" +303475,AAA Batteries (4-pack),4,2.99,12/17/19 17:11,"526 1st St, Los Angeles, CA 90001" +303476,20in Monitor,1,109.99,12/05/19 23:09,"985 Hickory St, Portland, OR 97035" +303477,Bose SoundSport Headphones,1,99.99,12/06/19 10:12,"588 River St, Dallas, TX 75001" +303478,34in Ultrawide Monitor,1,379.99,12/12/19 18:25,"68 Spruce St, New York City, NY 10001" +303479,Vareebadd Phone,1,400,12/09/19 19:18,"920 Pine St, Dallas, TX 75001" +303480,Lightning Charging Cable,2,14.95,12/26/19 20:06,"44 Hickory St, Los Angeles, CA 90001" +303481,AAA Batteries (4-pack),1,2.99,12/10/19 13:02,"768 13th St, Seattle, WA 98101" +303482,Apple Airpods Headphones,1,150,12/02/19 15:05,"901 7th St, Dallas, TX 75001" +303483,Apple Airpods Headphones,1,150,12/02/19 09:06,"636 Adams St, San Francisco, CA 94016" +303484,Lightning Charging Cable,1,14.95,12/26/19 10:29,"188 Church St, New York City, NY 10001" +303485,20in Monitor,1,109.99,12/19/19 14:09,"241 Park St, Los Angeles, CA 90001" +303486,34in Ultrawide Monitor,1,379.99,12/15/19 09:08,"91 Pine St, San Francisco, CA 94016" +303487,27in FHD Monitor,1,149.99,12/31/19 11:40,"429 1st St, Atlanta, GA 30301" +303488,Apple Airpods Headphones,2,150,12/23/19 20:30,"268 Hickory St, New York City, NY 10001" +303489,Wired Headphones,1,11.99,12/15/19 21:42,"634 South St, Portland, OR 97035" +303490,Bose SoundSport Headphones,1,99.99,12/13/19 12:58,"351 Park St, Los Angeles, CA 90001" +303490,27in FHD Monitor,1,149.99,12/13/19 12:58,"351 Park St, Los Angeles, CA 90001" +303491,Wired Headphones,1,11.99,12/29/19 21:06,"222 4th St, Los Angeles, CA 90001" +303492,AA Batteries (4-pack),1,3.84,12/10/19 10:53,"101 Adams St, San Francisco, CA 94016" +303493,AAA Batteries (4-pack),1,2.99,12/22/19 17:10,"530 Dogwood St, Seattle, WA 98101" +303494,27in 4K Gaming Monitor,1,389.99,12/21/19 21:09,"734 Wilson St, Los Angeles, CA 90001" +303495,Wired Headphones,1,11.99,12/11/19 04:37,"624 Willow St, Los Angeles, CA 90001" +303496,Wired Headphones,2,11.99,12/30/19 10:35,"271 Cherry St, Atlanta, GA 30301" +303497,Apple Airpods Headphones,1,150,12/17/19 18:42,"368 Maple St, Los Angeles, CA 90001" +303498,AA Batteries (4-pack),1,3.84,12/15/19 17:31,"404 Cherry St, Atlanta, GA 30301" +303499,Google Phone,1,600,12/26/19 04:41,"301 Lake St, Los Angeles, CA 90001" +303500,ThinkPad Laptop,1,999.99,12/27/19 19:54,"92 Washington St, Atlanta, GA 30301" +303501,Lightning Charging Cable,1,14.95,12/14/19 11:52,"782 Washington St, Los Angeles, CA 90001" +303502,Google Phone,1,600,12/08/19 05:38,"856 North St, Atlanta, GA 30301" +303503,Google Phone,1,600,12/04/19 21:32,"308 Wilson St, Boston, MA 02215" +303504,Flatscreen TV,1,300,12/06/19 16:52,"304 North St, San Francisco, CA 94016" +303505,AA Batteries (4-pack),1,3.84,12/25/19 20:35,"712 Jackson St, Los Angeles, CA 90001" +303506,Apple Airpods Headphones,1,150,12/17/19 17:09,"306 12th St, Portland, ME 04101" +303507,Wired Headphones,1,11.99,12/09/19 19:50,"695 Elm St, Atlanta, GA 30301" +303508,LG Dryer,1,600.0,12/24/19 09:16,"11 River St, Austin, TX 73301" +303509,Bose SoundSport Headphones,2,99.99,12/08/19 21:41,"578 Lincoln St, San Francisco, CA 94016" +303510,Macbook Pro Laptop,1,1700,12/11/19 20:58,"580 Jefferson St, Dallas, TX 75001" +303511,ThinkPad Laptop,1,999.99,12/09/19 12:56,"790 Sunset St, Boston, MA 02215" +303512,Wired Headphones,2,11.99,12/06/19 12:40,"895 Lakeview St, Los Angeles, CA 90001" +303513,Wired Headphones,1,11.99,12/10/19 21:23,"172 12th St, San Francisco, CA 94016" +303514,Lightning Charging Cable,1,14.95,12/02/19 15:57,"904 Main St, Atlanta, GA 30301" +303515,34in Ultrawide Monitor,1,379.99,12/09/19 16:34,"479 Washington St, Los Angeles, CA 90001" +303516,27in 4K Gaming Monitor,1,389.99,12/21/19 13:13,"779 Park St, Boston, MA 02215" +303517,27in 4K Gaming Monitor,1,389.99,12/29/19 14:49,"773 Cherry St, New York City, NY 10001" +303518,AA Batteries (4-pack),1,3.84,12/24/19 22:28,"626 North St, Los Angeles, CA 90001" +303519,USB-C Charging Cable,1,11.95,12/10/19 10:44,"835 Jackson St, Dallas, TX 75001" +303520,AA Batteries (4-pack),1,3.84,12/03/19 21:49,"108 Church St, Austin, TX 73301" +303521,Wired Headphones,1,11.99,12/24/19 06:38,"408 Maple St, San Francisco, CA 94016" +303522,AAA Batteries (4-pack),1,2.99,12/05/19 14:56,"333 Johnson St, San Francisco, CA 94016" +303523,34in Ultrawide Monitor,1,379.99,12/29/19 16:55,"345 Dogwood St, Portland, OR 97035" +303524,USB-C Charging Cable,3,11.95,12/04/19 19:59,"664 Washington St, Los Angeles, CA 90001" +303525,AA Batteries (4-pack),1,3.84,12/14/19 12:02,"220 South St, Atlanta, GA 30301" +303526,Vareebadd Phone,1,400,12/29/19 14:03,"379 Center St, Los Angeles, CA 90001" +303527,LG Washing Machine,1,600.0,12/20/19 07:05,"783 Highland St, Portland, OR 97035" +303528,Apple Airpods Headphones,1,150,12/02/19 12:49,"470 Jefferson St, San Francisco, CA 94016" +303529,27in FHD Monitor,1,149.99,12/22/19 17:57,"242 Meadow St, San Francisco, CA 94016" +303530,Lightning Charging Cable,1,14.95,12/07/19 10:42,"239 13th St, Los Angeles, CA 90001" +303531,20in Monitor,1,109.99,12/14/19 07:55,"678 Elm St, Seattle, WA 98101" +303532,Wired Headphones,1,11.99,12/09/19 15:43,"711 Lake St, San Francisco, CA 94016" +303533,LG Dryer,1,600.0,12/30/19 16:48,"754 1st St, Los Angeles, CA 90001" +303533,20in Monitor,1,109.99,12/30/19 16:48,"754 1st St, Los Angeles, CA 90001" +303534,Lightning Charging Cable,1,14.95,12/03/19 01:14,"668 Lake St, Seattle, WA 98101" +303535,ThinkPad Laptop,1,999.99,12/16/19 13:47,"494 10th St, Portland, OR 97035" +303536,USB-C Charging Cable,1,11.95,12/26/19 09:13,"570 14th St, Atlanta, GA 30301" +303537,AAA Batteries (4-pack),1,2.99,12/05/19 12:07,"267 Chestnut St, San Francisco, CA 94016" +303538,Wired Headphones,1,11.99,12/05/19 19:53,"521 Madison St, Los Angeles, CA 90001" +303539,Wired Headphones,1,11.99,12/24/19 06:04,"823 North St, New York City, NY 10001" +303540,Wired Headphones,1,11.99,12/23/19 15:50,"953 Lake St, Atlanta, GA 30301" +303541,iPhone,1,700,12/06/19 20:16,"607 Spruce St, Seattle, WA 98101" +303542,AAA Batteries (4-pack),1,2.99,12/27/19 11:07,"810 Main St, San Francisco, CA 94016" +303543,AA Batteries (4-pack),3,3.84,12/01/19 18:02,"77 River St, Dallas, TX 75001" +303544,Bose SoundSport Headphones,1,99.99,12/07/19 11:23,"26 West St, Los Angeles, CA 90001" +303545,ThinkPad Laptop,1,999.99,12/06/19 13:42,"303 8th St, Atlanta, GA 30301" +303546,Bose SoundSport Headphones,1,99.99,12/10/19 10:34,"997 4th St, Austin, TX 73301" +303547,Vareebadd Phone,1,400,12/24/19 12:44,"948 Sunset St, New York City, NY 10001" +303547,Apple Airpods Headphones,1,150,12/24/19 12:44,"948 Sunset St, New York City, NY 10001" +303548,Google Phone,1,600,12/26/19 10:49,"321 Spruce St, Dallas, TX 75001" +303548,USB-C Charging Cable,1,11.95,12/26/19 10:49,"321 Spruce St, Dallas, TX 75001" +303549,Bose SoundSport Headphones,1,99.99,12/19/19 12:43,"473 Jefferson St, Los Angeles, CA 90001" +303550,Bose SoundSport Headphones,1,99.99,12/24/19 15:51,"394 Hill St, San Francisco, CA 94016" +303551,Lightning Charging Cable,1,14.95,12/31/19 11:48,"773 Sunset St, San Francisco, CA 94016" +303552,Wired Headphones,1,11.99,12/04/19 09:28,"184 13th St, Boston, MA 02215" +303552,34in Ultrawide Monitor,1,379.99,12/04/19 09:28,"184 13th St, Boston, MA 02215" +303553,iPhone,1,700,12/02/19 00:40,"203 8th St, Austin, TX 73301" +303553,Apple Airpods Headphones,1,150,12/02/19 00:40,"203 8th St, Austin, TX 73301" +303554,27in 4K Gaming Monitor,1,389.99,12/08/19 11:42,"46 Highland St, Los Angeles, CA 90001" +303555,27in 4K Gaming Monitor,1,389.99,12/29/19 08:30,"314 Dogwood St, New York City, NY 10001" +303556,27in 4K Gaming Monitor,1,389.99,12/06/19 15:59,"933 Hill St, Dallas, TX 75001" +303557,Apple Airpods Headphones,1,150,12/03/19 01:37,"364 South St, Los Angeles, CA 90001" +303558,USB-C Charging Cable,1,11.95,12/25/19 17:51,"302 Forest St, San Francisco, CA 94016" +303559,34in Ultrawide Monitor,1,379.99,12/10/19 05:15,"286 Highland St, Dallas, TX 75001" +303560,Lightning Charging Cable,1,14.95,12/11/19 17:49,"153 Washington St, Los Angeles, CA 90001" +303561,34in Ultrawide Monitor,1,379.99,12/23/19 17:40,"847 Highland St, Seattle, WA 98101" +303562,20in Monitor,1,109.99,12/17/19 21:37,"23 8th St, Austin, TX 73301" +303563,USB-C Charging Cable,1,11.95,12/03/19 20:51,"77 14th St, Los Angeles, CA 90001" +303564,AA Batteries (4-pack),1,3.84,12/29/19 19:49,"904 Lake St, San Francisco, CA 94016" +303565,Vareebadd Phone,1,400,12/09/19 15:25,"266 Lake St, New York City, NY 10001" +303566,Bose SoundSport Headphones,1,99.99,12/31/19 20:06,"880 Main St, San Francisco, CA 94016" +303567,AAA Batteries (4-pack),3,2.99,12/20/19 05:51,"741 Sunset St, San Francisco, CA 94016" +303568,USB-C Charging Cable,1,11.95,12/27/19 17:22,"469 Chestnut St, San Francisco, CA 94016" +303569,USB-C Charging Cable,2,11.95,12/19/19 15:30,"455 9th St, Los Angeles, CA 90001" +303570,AAA Batteries (4-pack),1,2.99,12/20/19 12:28,"207 Madison St, Austin, TX 73301" +303571,27in FHD Monitor,1,149.99,12/04/19 16:56,"202 Washington St, Atlanta, GA 30301" +303572,USB-C Charging Cable,3,11.95,12/20/19 00:59,"189 Elm St, San Francisco, CA 94016" +303573,USB-C Charging Cable,1,11.95,12/17/19 13:38,"772 Adams St, Dallas, TX 75001" +303574,27in FHD Monitor,1,149.99,12/17/19 10:32,"913 Pine St, San Francisco, CA 94016" +303575,Macbook Pro Laptop,1,1700,12/11/19 14:50,"326 6th St, Los Angeles, CA 90001" +303576,Lightning Charging Cable,1,14.95,12/31/19 15:18,"603 1st St, New York City, NY 10001" +303577,AAA Batteries (4-pack),1,2.99,12/07/19 22:47,"632 5th St, New York City, NY 10001" +303578,USB-C Charging Cable,1,11.95,12/14/19 20:12,"647 10th St, San Francisco, CA 94016" +303579,Bose SoundSport Headphones,1,99.99,12/02/19 18:47,"668 Walnut St, San Francisco, CA 94016" +303579,Wired Headphones,1,11.99,12/02/19 18:47,"668 Walnut St, San Francisco, CA 94016" +303580,AAA Batteries (4-pack),1,2.99,12/23/19 15:24,"546 Pine St, Portland, OR 97035" +303581,Bose SoundSport Headphones,1,99.99,12/11/19 20:43,"746 Park St, New York City, NY 10001" +303582,34in Ultrawide Monitor,1,379.99,12/15/19 21:47,"41 River St, New York City, NY 10001" +303583,27in 4K Gaming Monitor,1,389.99,12/07/19 11:07,"302 Lincoln St, New York City, NY 10001" +303584,AA Batteries (4-pack),1,3.84,12/24/19 11:50,"639 Highland St, San Francisco, CA 94016" +303585,AA Batteries (4-pack),1,3.84,12/05/19 10:22,"915 Hickory St, Austin, TX 73301" +303586,AAA Batteries (4-pack),1,2.99,12/20/19 16:11,"988 12th St, Dallas, TX 75001" +303587,Apple Airpods Headphones,1,150,12/19/19 16:46,"595 Hickory St, Seattle, WA 98101" +303588,Bose SoundSport Headphones,1,99.99,12/19/19 10:58,"670 South St, New York City, NY 10001" +303589,Wired Headphones,1,11.99,12/11/19 18:37,"559 13th St, Los Angeles, CA 90001" +303590,34in Ultrawide Monitor,1,379.99,12/21/19 11:22,"555 South St, Los Angeles, CA 90001" +303591,Lightning Charging Cable,1,14.95,12/07/19 19:15,"964 Meadow St, Atlanta, GA 30301" +303592,34in Ultrawide Monitor,1,379.99,12/05/19 16:04,"698 7th St, San Francisco, CA 94016" +303593,AAA Batteries (4-pack),2,2.99,12/16/19 11:46,"773 Pine St, Boston, MA 02215" +303594,AAA Batteries (4-pack),1,2.99,12/16/19 15:06,"79 12th St, Atlanta, GA 30301" +303595,iPhone,1,700,12/04/19 09:51,"374 West St, New York City, NY 10001" +303596,Lightning Charging Cable,1,14.95,12/15/19 13:59,"159 Meadow St, Los Angeles, CA 90001" +303597,AAA Batteries (4-pack),2,2.99,12/13/19 10:02,"188 South St, Austin, TX 73301" +303598,AAA Batteries (4-pack),1,2.99,12/09/19 17:34,"273 Johnson St, Los Angeles, CA 90001" +303599,Wired Headphones,1,11.99,12/14/19 11:24,"857 Forest St, Dallas, TX 75001" +303600,LG Washing Machine,1,600.0,12/29/19 20:46,"436 Lake St, San Francisco, CA 94016" +303601,AAA Batteries (4-pack),1,2.99,12/09/19 09:53,"489 South St, San Francisco, CA 94016" +303602,34in Ultrawide Monitor,1,379.99,12/13/19 20:26,"588 Washington St, San Francisco, CA 94016" +303603,27in FHD Monitor,1,149.99,12/17/19 03:20,"351 Hill St, Portland, OR 97035" +303604,Wired Headphones,1,11.99,12/21/19 10:53,"363 Cherry St, Atlanta, GA 30301" +303605,27in 4K Gaming Monitor,1,389.99,12/20/19 08:23,"29 Ridge St, New York City, NY 10001" +303606,USB-C Charging Cable,1,11.95,12/24/19 12:01,"222 Johnson St, Portland, OR 97035" +303607,AAA Batteries (4-pack),1,2.99,12/10/19 18:44,"216 Chestnut St, San Francisco, CA 94016" +303608,Lightning Charging Cable,1,14.95,12/10/19 09:33,"656 Highland St, New York City, NY 10001" +303609,Flatscreen TV,1,300,12/27/19 07:18,"438 10th St, San Francisco, CA 94016" +303610,20in Monitor,1,109.99,12/16/19 14:43,"633 Johnson St, Seattle, WA 98101" +303611,Bose SoundSport Headphones,1,99.99,12/16/19 05:18,"851 2nd St, San Francisco, CA 94016" +303612,AAA Batteries (4-pack),1,2.99,12/18/19 23:30,"985 Lakeview St, Dallas, TX 75001" +303613,ThinkPad Laptop,1,999.99,12/23/19 17:01,"564 Lake St, San Francisco, CA 94016" +303614,Wired Headphones,1,11.99,12/28/19 12:28,"817 6th St, Seattle, WA 98101" +303615,Bose SoundSport Headphones,1,99.99,12/26/19 21:12,"383 Lincoln St, San Francisco, CA 94016" +303616,AA Batteries (4-pack),1,3.84,12/16/19 15:55,"967 Main St, San Francisco, CA 94016" +303617,Bose SoundSport Headphones,1,99.99,12/29/19 23:06,"133 Jefferson St, San Francisco, CA 94016" +303618,USB-C Charging Cable,1,11.95,12/22/19 06:46,"423 Ridge St, San Francisco, CA 94016" +303619,USB-C Charging Cable,2,11.95,12/09/19 08:27,"667 Park St, New York City, NY 10001" +303620,Bose SoundSport Headphones,1,99.99,12/31/19 00:16,"831 Pine St, Dallas, TX 75001" +303621,Apple Airpods Headphones,1,150,12/26/19 14:49,"300 Highland St, Los Angeles, CA 90001" +303622,AAA Batteries (4-pack),3,2.99,12/18/19 11:35,"887 Willow St, Boston, MA 02215" +303623,AAA Batteries (4-pack),1,2.99,12/13/19 10:28,"826 Madison St, San Francisco, CA 94016" +303624,Bose SoundSport Headphones,1,99.99,12/03/19 10:36,"474 Willow St, Portland, ME 04101" +303625,Lightning Charging Cable,1,14.95,12/19/19 20:44,"616 Jefferson St, Boston, MA 02215" +303626,Lightning Charging Cable,1,14.95,12/24/19 16:19,"650 Elm St, San Francisco, CA 94016" +303627,27in 4K Gaming Monitor,1,389.99,12/07/19 13:29,"617 9th St, San Francisco, CA 94016" +303628,USB-C Charging Cable,1,11.95,12/18/19 22:28,"490 Spruce St, Boston, MA 02215" +303629,Macbook Pro Laptop,1,1700,12/20/19 13:36,"436 Lake St, Austin, TX 73301" +303630,USB-C Charging Cable,1,11.95,12/13/19 23:16,"515 River St, New York City, NY 10001" +303631,27in FHD Monitor,1,149.99,12/22/19 11:13,"492 12th St, Los Angeles, CA 90001" +303632,Wired Headphones,1,11.99,12/14/19 13:02,"187 Ridge St, New York City, NY 10001" +303633,AAA Batteries (4-pack),3,2.99,12/31/19 14:05,"263 Chestnut St, Boston, MA 02215" +303634,Lightning Charging Cable,1,14.95,12/18/19 13:49,"663 10th St, San Francisco, CA 94016" +303635,iPhone,1,700,12/21/19 17:26,"386 13th St, Portland, OR 97035" +303636,Wired Headphones,1,11.99,12/21/19 18:00,"164 Jefferson St, Los Angeles, CA 90001" +303637,Vareebadd Phone,1,400,12/30/19 21:07,"350 11th St, Portland, OR 97035" +303637,USB-C Charging Cable,1,11.95,12/30/19 21:07,"350 11th St, Portland, OR 97035" +303638,Apple Airpods Headphones,1,150,12/19/19 10:16,"943 Elm St, New York City, NY 10001" +303639,Google Phone,1,600,12/18/19 22:15,"921 1st St, San Francisco, CA 94016" +303640,Lightning Charging Cable,1,14.95,12/07/19 20:23,"54 Cedar St, San Francisco, CA 94016" +303641,Google Phone,1,600,12/10/19 20:31,"61 Sunset St, Los Angeles, CA 90001" +303641,USB-C Charging Cable,1,11.95,12/10/19 20:31,"61 Sunset St, Los Angeles, CA 90001" +303642,AA Batteries (4-pack),1,3.84,12/02/19 20:10,"920 Lake St, Dallas, TX 75001" +303643,Wired Headphones,1,11.99,12/23/19 12:43,"774 Forest St, New York City, NY 10001" +303644,Apple Airpods Headphones,1,150,12/22/19 10:46,"468 Highland St, Seattle, WA 98101" +303645,Bose SoundSport Headphones,1,99.99,12/05/19 21:56,"794 Main St, Portland, OR 97035" +303646,Apple Airpods Headphones,1,150,12/12/19 00:48,"760 Highland St, San Francisco, CA 94016" +303647,AAA Batteries (4-pack),2,2.99,12/15/19 21:29,"670 13th St, Dallas, TX 75001" +303648,27in FHD Monitor,1,149.99,12/07/19 09:36,"522 Walnut St, Los Angeles, CA 90001" +303649,AAA Batteries (4-pack),1,2.99,12/18/19 12:22,"294 Jackson St, Los Angeles, CA 90001" +303650,27in 4K Gaming Monitor,1,389.99,12/11/19 18:57,"252 Maple St, Atlanta, GA 30301" +303651,AA Batteries (4-pack),1,3.84,12/11/19 13:00,"658 9th St, Boston, MA 02215" +303652,ThinkPad Laptop,1,999.99,12/25/19 22:14,"440 River St, Austin, TX 73301" +303653,34in Ultrawide Monitor,1,379.99,12/20/19 15:21,"858 Lincoln St, San Francisco, CA 94016" +303654,ThinkPad Laptop,1,999.99,12/09/19 21:54,"150 6th St, Atlanta, GA 30301" +303655,34in Ultrawide Monitor,1,379.99,12/07/19 13:17,"521 Maple St, San Francisco, CA 94016" +303656,Flatscreen TV,1,300,12/17/19 14:07,"29 Washington St, Los Angeles, CA 90001" +303657,Lightning Charging Cable,2,14.95,12/22/19 21:28,"539 Spruce St, Atlanta, GA 30301" +303658,Wired Headphones,1,11.99,12/05/19 17:33,"293 8th St, New York City, NY 10001" +303659,LG Dryer,1,600.0,12/09/19 11:26,"803 8th St, New York City, NY 10001" +303659,Lightning Charging Cable,1,14.95,12/09/19 11:26,"803 8th St, New York City, NY 10001" +,,,,, +303660,Lightning Charging Cable,1,14.95,12/15/19 17:22,"653 Forest St, San Francisco, CA 94016" +303661,Bose SoundSport Headphones,1,99.99,12/11/19 10:23,"960 8th St, Boston, MA 02215" +303662,Lightning Charging Cable,2,14.95,12/01/19 15:02,"142 Main St, San Francisco, CA 94016" +303663,Apple Airpods Headphones,1,150,12/25/19 21:32,"390 Highland St, Boston, MA 02215" +303664,USB-C Charging Cable,1,11.95,12/05/19 16:18,"43 6th St, Los Angeles, CA 90001" +303665,34in Ultrawide Monitor,1,379.99,12/04/19 14:36,"383 Madison St, Seattle, WA 98101" +303666,Bose SoundSport Headphones,1,99.99,12/17/19 19:34,"515 13th St, San Francisco, CA 94016" +303667,Apple Airpods Headphones,1,150,12/27/19 08:58,"982 12th St, San Francisco, CA 94016" +303668,AA Batteries (4-pack),1,3.84,12/23/19 20:14,"848 Cherry St, Los Angeles, CA 90001" +303669,USB-C Charging Cable,1,11.95,12/04/19 18:51,"569 Forest St, Portland, OR 97035" +303670,AA Batteries (4-pack),1,3.84,12/21/19 15:58,"931 Johnson St, Boston, MA 02215" +303671,Wired Headphones,1,11.99,12/31/19 15:50,"787 Church St, San Francisco, CA 94016" +303672,USB-C Charging Cable,1,11.95,12/09/19 12:37,"996 Lincoln St, San Francisco, CA 94016" +303673,Bose SoundSport Headphones,1,99.99,12/15/19 16:51,"921 Willow St, Dallas, TX 75001" +303674,20in Monitor,1,109.99,12/29/19 11:24,"141 South St, Atlanta, GA 30301" +303675,ThinkPad Laptop,1,999.99,12/20/19 20:27,"552 4th St, Los Angeles, CA 90001" +303676,Flatscreen TV,1,300,12/01/19 17:27,"257 2nd St, San Francisco, CA 94016" +303677,Apple Airpods Headphones,1,150,12/15/19 10:12,"20 4th St, San Francisco, CA 94016" +303678,AA Batteries (4-pack),1,3.84,12/29/19 16:30,"610 Maple St, Dallas, TX 75001" +303679,20in Monitor,1,109.99,12/04/19 10:48,"858 Maple St, Austin, TX 73301" +303680,Bose SoundSport Headphones,1,99.99,12/18/19 12:34,"114 River St, Los Angeles, CA 90001" +303681,Wired Headphones,1,11.99,12/20/19 16:44,"758 Hickory St, San Francisco, CA 94016" +303682,Lightning Charging Cable,1,14.95,12/29/19 21:30,"285 14th St, Los Angeles, CA 90001" +303683,Wired Headphones,1,11.99,12/02/19 16:36,"835 Elm St, San Francisco, CA 94016" +303684,AA Batteries (4-pack),1,3.84,12/05/19 01:07,"457 Johnson St, San Francisco, CA 94016" +303685,Lightning Charging Cable,2,14.95,12/20/19 14:10,"400 13th St, Atlanta, GA 30301" +303686,Bose SoundSport Headphones,1,99.99,12/09/19 19:39,"881 Willow St, Los Angeles, CA 90001" +303687,Vareebadd Phone,1,400,12/30/19 07:09,"58 12th St, San Francisco, CA 94016" +303688,USB-C Charging Cable,1,11.95,12/19/19 16:12,"861 Sunset St, New York City, NY 10001" +303689,Lightning Charging Cable,1,14.95,12/19/19 13:05,"842 Cedar St, San Francisco, CA 94016" +303690,AA Batteries (4-pack),1,3.84,12/05/19 13:55,"136 Jackson St, Los Angeles, CA 90001" +303691,AA Batteries (4-pack),1,3.84,12/26/19 18:34,"200 Hill St, San Francisco, CA 94016" +303692,iPhone,1,700,12/28/19 14:52,"308 13th St, Atlanta, GA 30301" +303693,27in FHD Monitor,1,149.99,12/25/19 20:44,"64 13th St, Los Angeles, CA 90001" +303694,Lightning Charging Cable,1,14.95,12/15/19 13:48,"284 Hickory St, Seattle, WA 98101" +303695,Lightning Charging Cable,1,14.95,12/30/19 13:04,"90 Meadow St, Seattle, WA 98101" +303696,AAA Batteries (4-pack),1,2.99,12/06/19 16:37,"83 12th St, Austin, TX 73301" +303697,USB-C Charging Cable,2,11.95,12/10/19 09:03,"45 Park St, Portland, ME 04101" +303698,AAA Batteries (4-pack),1,2.99,12/06/19 21:53,"898 1st St, Portland, ME 04101" +303699,USB-C Charging Cable,1,11.95,12/23/19 12:38,"7 West St, New York City, NY 10001" +303700,Wired Headphones,1,11.99,12/08/19 23:25,"303 South St, San Francisco, CA 94016" +303701,Flatscreen TV,1,300,12/23/19 08:48,"114 Walnut St, San Francisco, CA 94016" +303702,Bose SoundSport Headphones,1,99.99,12/19/19 11:50,"184 Ridge St, Seattle, WA 98101" +303703,AA Batteries (4-pack),1,3.84,12/31/19 19:33,"994 Chestnut St, San Francisco, CA 94016" +303704,iPhone,1,700,12/07/19 10:53,"660 Lake St, Portland, OR 97035" +303705,Google Phone,1,600,12/05/19 13:31,"323 Jefferson St, San Francisco, CA 94016" +303706,Apple Airpods Headphones,1,150,12/01/19 12:12,"508 North St, Boston, MA 02215" +303707,AA Batteries (4-pack),1,3.84,12/24/19 11:00,"270 Walnut St, New York City, NY 10001" +303708,Lightning Charging Cable,1,14.95,12/03/19 11:23,"72 5th St, Boston, MA 02215" +303709,AA Batteries (4-pack),1,3.84,12/29/19 14:23,"494 5th St, Los Angeles, CA 90001" +303710,LG Dryer,1,600.0,12/24/19 20:06,"119 8th St, San Francisco, CA 94016" +303710,20in Monitor,1,109.99,12/24/19 20:06,"119 8th St, San Francisco, CA 94016" +303711,USB-C Charging Cable,1,11.95,12/19/19 20:14,"263 12th St, San Francisco, CA 94016" +303712,27in FHD Monitor,1,149.99,12/09/19 15:49,"506 11th St, San Francisco, CA 94016" +303713,Google Phone,1,600,12/04/19 20:19,"767 Wilson St, San Francisco, CA 94016" +303714,USB-C Charging Cable,1,11.95,12/06/19 06:31,"70 Maple St, Atlanta, GA 30301" +303715,AAA Batteries (4-pack),1,2.99,12/29/19 01:22,"920 14th St, Los Angeles, CA 90001" +303716,USB-C Charging Cable,1,11.95,12/07/19 16:46,"835 Center St, New York City, NY 10001" +303717,AA Batteries (4-pack),1,3.84,12/16/19 09:24,"378 Ridge St, Los Angeles, CA 90001" +303718,AA Batteries (4-pack),1,3.84,12/09/19 13:37,"833 Johnson St, Seattle, WA 98101" +303719,Wired Headphones,1,11.99,12/17/19 19:27,"998 10th St, San Francisco, CA 94016" +303720,Lightning Charging Cable,1,14.95,12/10/19 20:28,"797 Lakeview St, San Francisco, CA 94016" +303721,AA Batteries (4-pack),1,3.84,12/20/19 14:27,"2 4th St, San Francisco, CA 94016" +303722,USB-C Charging Cable,1,11.95,12/05/19 15:19,"943 Madison St, Atlanta, GA 30301" +303723,Wired Headphones,2,11.99,12/21/19 09:59,"753 7th St, San Francisco, CA 94016" +303723,Macbook Pro Laptop,1,1700,12/21/19 09:59,"753 7th St, San Francisco, CA 94016" +303724,Lightning Charging Cable,1,14.95,12/17/19 21:13,"126 9th St, Seattle, WA 98101" +303725,Lightning Charging Cable,2,14.95,12/25/19 19:03,"499 West St, Atlanta, GA 30301" +303726,Wired Headphones,1,11.99,12/20/19 18:47,"710 Wilson St, San Francisco, CA 94016" +303727,USB-C Charging Cable,2,11.95,12/24/19 11:28,"530 6th St, Boston, MA 02215" +303728,Wired Headphones,1,11.99,12/05/19 10:59,"578 Main St, Portland, OR 97035" +303729,AAA Batteries (4-pack),1,2.99,12/21/19 09:49,"297 8th St, Los Angeles, CA 90001" +303730,20in Monitor,1,109.99,12/17/19 21:15,"218 13th St, Portland, OR 97035" +303731,Bose SoundSport Headphones,1,99.99,12/06/19 22:19,"243 Cherry St, Los Angeles, CA 90001" +303732,USB-C Charging Cable,1,11.95,12/24/19 14:06,"591 West St, San Francisco, CA 94016" +303733,Lightning Charging Cable,1,14.95,12/17/19 11:06,"209 Hill St, Austin, TX 73301" +303734,USB-C Charging Cable,1,11.95,12/20/19 18:54,"541 Lake St, Atlanta, GA 30301" +303735,20in Monitor,1,109.99,12/02/19 00:53,"307 Cedar St, San Francisco, CA 94016" +303736,AA Batteries (4-pack),2,3.84,12/29/19 21:00,"870 Willow St, San Francisco, CA 94016" +303737,AA Batteries (4-pack),2,3.84,12/11/19 00:47,"870 Center St, Austin, TX 73301" +303738,Vareebadd Phone,1,400,12/07/19 22:24,"344 Lincoln St, San Francisco, CA 94016" +303739,Lightning Charging Cable,1,14.95,12/15/19 23:25,"725 Wilson St, New York City, NY 10001" +303740,USB-C Charging Cable,1,11.95,12/31/19 17:06,"548 Washington St, Atlanta, GA 30301" +303741,27in 4K Gaming Monitor,1,389.99,12/27/19 14:46,"673 Washington St, Portland, OR 97035" +303742,Lightning Charging Cable,1,14.95,12/13/19 11:57,"669 Ridge St, Atlanta, GA 30301" +303743,Wired Headphones,1,11.99,12/06/19 12:13,"252 Madison St, Los Angeles, CA 90001" +303744,AAA Batteries (4-pack),1,2.99,12/22/19 21:25,"716 Jackson St, Seattle, WA 98101" +303745,27in 4K Gaming Monitor,1,389.99,12/09/19 14:50,"823 6th St, New York City, NY 10001" +303746,LG Washing Machine,1,600.0,12/06/19 16:40,"342 2nd St, Atlanta, GA 30301" +303747,USB-C Charging Cable,1,11.95,12/16/19 01:31,"633 Park St, Seattle, WA 98101" +303748,Wired Headphones,1,11.99,12/27/19 10:59,"676 1st St, Austin, TX 73301" +303749,AAA Batteries (4-pack),1,2.99,12/24/19 09:49,"978 13th St, Austin, TX 73301" +303750,27in FHD Monitor,1,149.99,12/25/19 23:53,"246 Jefferson St, Atlanta, GA 30301" +303751,USB-C Charging Cable,1,11.95,12/20/19 00:21,"677 Elm St, New York City, NY 10001" +303752,Vareebadd Phone,1,400,12/04/19 22:51,"89 Wilson St, New York City, NY 10001" +303753,Macbook Pro Laptop,1,1700,12/17/19 22:06,"631 Madison St, San Francisco, CA 94016" +303754,Lightning Charging Cable,1,14.95,12/25/19 12:53,"686 Hickory St, New York City, NY 10001" +303755,AAA Batteries (4-pack),1,2.99,12/05/19 19:18,"659 Cedar St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +303756,Wired Headphones,1,11.99,12/27/19 16:30,"707 11th St, New York City, NY 10001" +303757,Apple Airpods Headphones,1,150,12/20/19 14:57,"734 Washington St, Atlanta, GA 30301" +303758,Lightning Charging Cable,1,14.95,12/09/19 17:29,"838 West St, Atlanta, GA 30301" +303759,Lightning Charging Cable,1,14.95,12/21/19 20:40,"290 14th St, Seattle, WA 98101" +303759,AAA Batteries (4-pack),1,2.99,12/21/19 20:40,"290 14th St, Seattle, WA 98101" +303760,Bose SoundSport Headphones,1,99.99,12/01/19 22:20,"345 12th St, Los Angeles, CA 90001" +303761,AAA Batteries (4-pack),1,2.99,12/18/19 20:00,"924 13th St, Boston, MA 02215" +303762,27in FHD Monitor,1,149.99,12/13/19 17:04,"688 14th St, Atlanta, GA 30301" +303763,AAA Batteries (4-pack),2,2.99,12/01/19 18:25,"663 Cedar St, San Francisco, CA 94016" +303764,Lightning Charging Cable,1,14.95,12/05/19 20:48,"185 Center St, Atlanta, GA 30301" +303765,AA Batteries (4-pack),1,3.84,12/20/19 11:32,"418 Spruce St, Seattle, WA 98101" +303766,Lightning Charging Cable,1,14.95,12/12/19 08:45,"606 Meadow St, New York City, NY 10001" +303767,Lightning Charging Cable,1,14.95,12/17/19 10:53,"795 Park St, New York City, NY 10001" +303768,ThinkPad Laptop,1,999.99,12/11/19 20:36,"568 12th St, Boston, MA 02215" +303769,AA Batteries (4-pack),1,3.84,12/25/19 20:16,"66 Ridge St, Austin, TX 73301" +303770,USB-C Charging Cable,1,11.95,12/14/19 21:11,"959 Dogwood St, Los Angeles, CA 90001" +303771,34in Ultrawide Monitor,1,379.99,12/17/19 09:39,"993 Main St, Los Angeles, CA 90001" +303772,27in 4K Gaming Monitor,1,389.99,12/24/19 14:03,"461 Lakeview St, Los Angeles, CA 90001" +303773,AA Batteries (4-pack),1,3.84,12/17/19 18:48,"643 Dogwood St, Los Angeles, CA 90001" +303774,Wired Headphones,2,11.99,12/25/19 12:55,"217 Main St, Seattle, WA 98101" +303775,Lightning Charging Cable,1,14.95,12/28/19 09:29,"424 Highland St, San Francisco, CA 94016" +303776,Wired Headphones,1,11.99,12/21/19 23:07,"51 5th St, San Francisco, CA 94016" +303777,Wired Headphones,1,11.99,12/05/19 17:32,"673 Washington St, San Francisco, CA 94016" +303778,USB-C Charging Cable,1,11.95,12/20/19 01:21,"581 10th St, Los Angeles, CA 90001" +303779,AAA Batteries (4-pack),4,2.99,12/19/19 09:43,"745 14th St, Atlanta, GA 30301" +303780,27in FHD Monitor,1,149.99,12/04/19 21:48,"500 1st St, New York City, NY 10001" +303781,Lightning Charging Cable,1,14.95,12/02/19 11:41,"764 North St, Dallas, TX 75001" +303782,34in Ultrawide Monitor,1,379.99,12/05/19 08:54,"858 West St, Dallas, TX 75001" +303783,AA Batteries (4-pack),1,3.84,12/30/19 13:21,"588 South St, Dallas, TX 75001" +303784,27in FHD Monitor,1,149.99,01/01/20 01:48,"304 7th St, Los Angeles, CA 90001" +303785,AA Batteries (4-pack),1,3.84,12/03/19 13:32,"619 Ridge St, New York City, NY 10001" +303786,Apple Airpods Headphones,1,150,12/09/19 09:12,"240 1st St, Portland, OR 97035" +303787,AA Batteries (4-pack),1,3.84,12/30/19 12:52,"172 Spruce St, Los Angeles, CA 90001" +303788,Lightning Charging Cable,2,14.95,12/23/19 17:50,"281 Lake St, Los Angeles, CA 90001" +303789,Lightning Charging Cable,1,14.95,12/14/19 00:37,"844 Cherry St, Los Angeles, CA 90001" +303790,Wired Headphones,1,11.99,12/31/19 20:37,"746 Maple St, New York City, NY 10001" +303791,AA Batteries (4-pack),2,3.84,12/08/19 10:45,"912 Washington St, Boston, MA 02215" +303792,AAA Batteries (4-pack),1,2.99,12/31/19 08:04,"221 North St, New York City, NY 10001" +303793,USB-C Charging Cable,1,11.95,12/11/19 20:59,"461 Lakeview St, Los Angeles, CA 90001" +303794,27in FHD Monitor,1,149.99,12/06/19 09:13,"184 Walnut St, New York City, NY 10001" +303795,Vareebadd Phone,1,400,12/09/19 17:49,"802 11th St, San Francisco, CA 94016" +303796,Wired Headphones,1,11.99,12/30/19 08:11,"713 Chestnut St, New York City, NY 10001" +303797,Bose SoundSport Headphones,1,99.99,12/27/19 18:08,"683 South St, Los Angeles, CA 90001" +303798,Flatscreen TV,1,300,12/21/19 08:11,"76 Dogwood St, Portland, OR 97035" +303799,USB-C Charging Cable,1,11.95,12/20/19 09:40,"753 Johnson St, Boston, MA 02215" +303800,27in FHD Monitor,1,149.99,12/29/19 19:10,"644 Forest St, New York City, NY 10001" +303801,Bose SoundSport Headphones,1,99.99,12/19/19 21:16,"746 West St, San Francisco, CA 94016" +303802,Lightning Charging Cable,1,14.95,12/30/19 11:53,"294 Cedar St, Seattle, WA 98101" +303803,iPhone,1,700,12/23/19 11:05,"890 Park St, Dallas, TX 75001" +303804,AAA Batteries (4-pack),4,2.99,12/06/19 14:51,"941 Dogwood St, Seattle, WA 98101" +303805,34in Ultrawide Monitor,1,379.99,12/29/19 10:23,"842 Main St, Portland, OR 97035" +303806,AAA Batteries (4-pack),1,2.99,12/24/19 19:13,"3 Park St, San Francisco, CA 94016" +303807,USB-C Charging Cable,1,11.95,12/05/19 11:12,"521 14th St, New York City, NY 10001" +303808,Apple Airpods Headphones,1,150,12/21/19 04:42,"434 Park St, New York City, NY 10001" +303809,AAA Batteries (4-pack),1,2.99,12/09/19 19:06,"536 North St, San Francisco, CA 94016" +303810,Bose SoundSport Headphones,1,99.99,12/28/19 13:40,"125 Meadow St, San Francisco, CA 94016" +303810,Lightning Charging Cable,1,14.95,12/28/19 13:40,"125 Meadow St, San Francisco, CA 94016" +303811,34in Ultrawide Monitor,1,379.99,12/25/19 16:04,"647 1st St, Seattle, WA 98101" +303812,USB-C Charging Cable,3,11.95,12/06/19 21:37,"24 Dogwood St, Dallas, TX 75001" +303813,Wired Headphones,2,11.99,12/26/19 16:35,"847 2nd St, Dallas, TX 75001" +303814,AAA Batteries (4-pack),1,2.99,12/07/19 22:10,"537 South St, San Francisco, CA 94016" +303815,Apple Airpods Headphones,1,150,12/07/19 16:10,"586 Dogwood St, Los Angeles, CA 90001" +303816,Apple Airpods Headphones,1,150,12/23/19 09:17,"761 13th St, Boston, MA 02215" +303817,Apple Airpods Headphones,1,150,12/26/19 15:35,"260 North St, San Francisco, CA 94016" +303818,AA Batteries (4-pack),1,3.84,12/03/19 03:22,"438 Church St, Dallas, TX 75001" +303819,AA Batteries (4-pack),1,3.84,12/10/19 22:00,"512 6th St, Boston, MA 02215" +303820,USB-C Charging Cable,1,11.95,12/10/19 09:13,"200 Center St, Boston, MA 02215" +303821,USB-C Charging Cable,1,11.95,12/22/19 06:47,"800 Lincoln St, Boston, MA 02215" +303822,Wired Headphones,1,11.99,12/16/19 21:06,"187 Willow St, Boston, MA 02215" +303823,Google Phone,1,600,12/04/19 11:16,"686 Cedar St, Boston, MA 02215" +303824,USB-C Charging Cable,1,11.95,12/08/19 11:26,"745 8th St, Boston, MA 02215" +303825,USB-C Charging Cable,1,11.95,12/31/19 20:37,"885 Jefferson St, Portland, OR 97035" +303826,34in Ultrawide Monitor,1,379.99,12/04/19 11:42,"500 River St, Seattle, WA 98101" +303827,Wired Headphones,1,11.99,12/06/19 16:13,"692 Park St, Boston, MA 02215" +303828,AA Batteries (4-pack),1,3.84,12/21/19 16:14,"692 Church St, San Francisco, CA 94016" +303829,AAA Batteries (4-pack),1,2.99,12/14/19 14:39,"510 Park St, San Francisco, CA 94016" +303830,Flatscreen TV,1,300,12/22/19 01:13,"524 Forest St, Seattle, WA 98101" +303831,AAA Batteries (4-pack),1,2.99,12/13/19 15:47,"853 Meadow St, San Francisco, CA 94016" +303832,27in 4K Gaming Monitor,1,389.99,12/24/19 20:50,"679 9th St, Portland, OR 97035" +303833,34in Ultrawide Monitor,1,379.99,12/07/19 09:24,"678 Highland St, Portland, OR 97035" +303834,Vareebadd Phone,1,400,12/07/19 14:51,"591 South St, Atlanta, GA 30301" +303834,Bose SoundSport Headphones,1,99.99,12/07/19 14:51,"591 South St, Atlanta, GA 30301" +303835,AA Batteries (4-pack),1,3.84,12/29/19 19:13,"272 Wilson St, Dallas, TX 75001" +303836,Bose SoundSport Headphones,1,99.99,12/16/19 13:32,"394 1st St, Los Angeles, CA 90001" +303837,iPhone,1,700,12/03/19 21:01,"625 2nd St, Dallas, TX 75001" +303838,AAA Batteries (4-pack),1,2.99,12/15/19 20:07,"34 Highland St, New York City, NY 10001" +303839,Lightning Charging Cable,1,14.95,12/18/19 14:37,"507 Elm St, Austin, TX 73301" +303840,USB-C Charging Cable,1,11.95,12/10/19 17:54,"410 1st St, New York City, NY 10001" +303841,Lightning Charging Cable,1,14.95,12/07/19 08:52,"844 River St, Los Angeles, CA 90001" +303842,34in Ultrawide Monitor,1,379.99,12/31/19 11:16,"433 Johnson St, Los Angeles, CA 90001" +303843,Lightning Charging Cable,1,14.95,12/11/19 21:17,"585 West St, San Francisco, CA 94016" +303844,Apple Airpods Headphones,1,150,12/20/19 08:52,"876 Washington St, New York City, NY 10001" +303845,USB-C Charging Cable,1,11.95,12/29/19 12:29,"866 Forest St, Dallas, TX 75001" +303846,Apple Airpods Headphones,1,150,12/20/19 09:48,"295 Lakeview St, San Francisco, CA 94016" +303847,Lightning Charging Cable,1,14.95,12/12/19 13:21,"629 River St, Boston, MA 02215" +303848,AA Batteries (4-pack),1,3.84,12/19/19 23:48,"352 Willow St, Los Angeles, CA 90001" +303849,Bose SoundSport Headphones,1,99.99,12/01/19 14:18,"140 Cedar St, New York City, NY 10001" +303850,Wired Headphones,1,11.99,12/30/19 05:40,"174 Church St, Atlanta, GA 30301" +303851,AA Batteries (4-pack),1,3.84,12/05/19 10:57,"201 South St, New York City, NY 10001" +303852,Google Phone,1,600,12/18/19 16:24,"667 11th St, San Francisco, CA 94016" +303853,Bose SoundSport Headphones,1,99.99,12/20/19 17:55,"193 Highland St, New York City, NY 10001" +303854,Lightning Charging Cable,1,14.95,12/11/19 18:15,"944 8th St, Los Angeles, CA 90001" +303855,Bose SoundSport Headphones,1,99.99,12/11/19 20:53,"373 Cedar St, Boston, MA 02215" +303856,Wired Headphones,1,11.99,12/30/19 15:07,"202 11th St, Dallas, TX 75001" +303857,USB-C Charging Cable,1,11.95,12/27/19 17:51,"295 Park St, Los Angeles, CA 90001" +303858,AAA Batteries (4-pack),1,2.99,12/15/19 20:37,"614 Center St, New York City, NY 10001" +303859,Wired Headphones,1,11.99,12/01/19 19:43,"692 12th St, Los Angeles, CA 90001" +303860,AAA Batteries (4-pack),1,2.99,12/22/19 03:03,"986 Main St, San Francisco, CA 94016" +303861,Bose SoundSport Headphones,1,99.99,12/26/19 15:46,"426 Pine St, Portland, OR 97035" +303862,USB-C Charging Cable,1,11.95,12/21/19 15:09,"965 2nd St, New York City, NY 10001" +303863,27in FHD Monitor,1,149.99,12/25/19 12:30,"885 Dogwood St, Los Angeles, CA 90001" +303864,Lightning Charging Cable,1,14.95,12/18/19 18:13,"192 Pine St, Atlanta, GA 30301" +303865,27in 4K Gaming Monitor,1,389.99,12/27/19 07:27,"410 West St, Boston, MA 02215" +303866,USB-C Charging Cable,1,11.95,12/21/19 13:33,"830 Meadow St, Atlanta, GA 30301" +303867,Google Phone,1,600,12/08/19 16:39,"186 Park St, San Francisco, CA 94016" +303867,USB-C Charging Cable,1,11.95,12/08/19 16:39,"186 Park St, San Francisco, CA 94016" +303868,Bose SoundSport Headphones,1,99.99,12/21/19 12:06,"775 West St, San Francisco, CA 94016" +303869,AA Batteries (4-pack),1,3.84,12/01/19 20:40,"660 13th St, Los Angeles, CA 90001" +303870,Lightning Charging Cable,1,14.95,12/16/19 15:11,"898 Chestnut St, San Francisco, CA 94016" +303871,Wired Headphones,1,11.99,12/07/19 12:57,"607 6th St, Los Angeles, CA 90001" +303872,Bose SoundSport Headphones,2,99.99,12/05/19 19:04,"144 Chestnut St, Austin, TX 73301" +303873,AA Batteries (4-pack),1,3.84,12/12/19 18:59,"241 9th St, Boston, MA 02215" +303874,ThinkPad Laptop,1,999.99,12/28/19 11:13,"10 West St, Dallas, TX 75001" +303875,AAA Batteries (4-pack),1,2.99,12/01/19 08:58,"815 13th St, Los Angeles, CA 90001" +303876,27in 4K Gaming Monitor,1,389.99,12/14/19 18:13,"709 River St, Dallas, TX 75001" +303877,Google Phone,1,600,12/29/19 10:05,"812 Maple St, Atlanta, GA 30301" +303878,34in Ultrawide Monitor,1,379.99,12/22/19 22:50,"644 12th St, Atlanta, GA 30301" +303879,Bose SoundSport Headphones,1,99.99,12/13/19 09:35,"921 Sunset St, Boston, MA 02215" +303880,AAA Batteries (4-pack),1,2.99,12/11/19 11:46,"578 West St, San Francisco, CA 94016" +303881,USB-C Charging Cable,1,11.95,12/22/19 22:20,"480 Madison St, Austin, TX 73301" +303882,AAA Batteries (4-pack),3,2.99,12/23/19 22:37,"726 Hickory St, Seattle, WA 98101" +303883,USB-C Charging Cable,1,11.95,12/13/19 13:52,"432 2nd St, Seattle, WA 98101" +303884,Lightning Charging Cable,1,14.95,12/30/19 18:13,"152 Cherry St, Los Angeles, CA 90001" +303885,Apple Airpods Headphones,1,150,12/28/19 20:27,"25 Sunset St, Boston, MA 02215" +303886,AAA Batteries (4-pack),4,2.99,12/15/19 17:00,"242 8th St, Austin, TX 73301" +303886,AA Batteries (4-pack),1,3.84,12/15/19 17:00,"242 8th St, Austin, TX 73301" +303887,AAA Batteries (4-pack),4,2.99,12/30/19 08:54,"306 Highland St, Los Angeles, CA 90001" +303888,Wired Headphones,1,11.99,12/09/19 10:55,"786 South St, San Francisco, CA 94016" +303889,20in Monitor,1,109.99,12/21/19 17:30,"992 Meadow St, San Francisco, CA 94016" +303890,ThinkPad Laptop,1,999.99,12/05/19 09:15,"586 Cherry St, Dallas, TX 75001" +303891,ThinkPad Laptop,1,999.99,12/12/19 08:24,"731 Cherry St, San Francisco, CA 94016" +303892,Lightning Charging Cable,1,14.95,12/18/19 17:51,"866 4th St, Boston, MA 02215" +303893,USB-C Charging Cable,1,11.95,12/17/19 13:35,"129 Spruce St, Portland, OR 97035" +303894,Lightning Charging Cable,1,14.95,12/21/19 17:22,"835 11th St, New York City, NY 10001" +303895,Apple Airpods Headphones,1,150,12/11/19 15:25,"608 11th St, Atlanta, GA 30301" +303896,Flatscreen TV,1,300,12/07/19 14:17,"509 Highland St, Los Angeles, CA 90001" +303897,Google Phone,1,600,12/07/19 07:56,"158 Pine St, Los Angeles, CA 90001" +303897,USB-C Charging Cable,1,11.95,12/07/19 07:56,"158 Pine St, Los Angeles, CA 90001" +303898,USB-C Charging Cable,1,11.95,12/16/19 17:51,"912 5th St, Portland, OR 97035" +303899,iPhone,1,700,12/22/19 17:14,"755 Spruce St, Austin, TX 73301" +303899,Lightning Charging Cable,1,14.95,12/22/19 17:14,"755 Spruce St, Austin, TX 73301" +303900,iPhone,1,700,12/24/19 13:00,"609 Cedar St, Portland, OR 97035" +303900,Lightning Charging Cable,1,14.95,12/24/19 13:00,"609 Cedar St, Portland, OR 97035" +303900,Wired Headphones,1,11.99,12/24/19 13:00,"609 Cedar St, Portland, OR 97035" +303901,20in Monitor,1,109.99,01/01/20 00:15,"318 Lincoln St, Seattle, WA 98101" +303902,AA Batteries (4-pack),1,3.84,12/12/19 21:37,"149 Cherry St, Los Angeles, CA 90001" +303903,Flatscreen TV,1,300,12/29/19 16:35,"67 6th St, Atlanta, GA 30301" +303904,USB-C Charging Cable,1,11.95,12/16/19 12:18,"392 Highland St, Boston, MA 02215" +303905,Google Phone,1,600,12/03/19 19:14,"399 Main St, New York City, NY 10001" +303905,USB-C Charging Cable,1,11.95,12/03/19 19:14,"399 Main St, New York City, NY 10001" +303906,Lightning Charging Cable,1,14.95,12/25/19 16:16,"29 Sunset St, Seattle, WA 98101" +303907,AA Batteries (4-pack),1,3.84,12/24/19 18:42,"202 12th St, Portland, OR 97035" +,,,,, +303908,USB-C Charging Cable,1,11.95,12/09/19 15:15,"408 Jackson St, Los Angeles, CA 90001" +303909,AAA Batteries (4-pack),1,2.99,12/09/19 17:04,"577 1st St, San Francisco, CA 94016" +303910,27in 4K Gaming Monitor,1,389.99,12/25/19 19:42,"984 Ridge St, New York City, NY 10001" +303911,USB-C Charging Cable,2,11.95,12/01/19 23:04,"347 13th St, Los Angeles, CA 90001" +303912,34in Ultrawide Monitor,1,379.99,12/05/19 16:40,"542 Sunset St, San Francisco, CA 94016" +303913,20in Monitor,1,109.99,12/13/19 16:13,"978 Elm St, San Francisco, CA 94016" +303914,AA Batteries (4-pack),2,3.84,12/29/19 10:05,"577 South St, Seattle, WA 98101" +303915,USB-C Charging Cable,1,11.95,12/13/19 14:05,"514 Cherry St, Portland, OR 97035" +303916,Lightning Charging Cable,1,14.95,12/04/19 19:59,"718 Johnson St, Atlanta, GA 30301" +303917,Lightning Charging Cable,1,14.95,12/13/19 08:40,"753 12th St, New York City, NY 10001" +303918,AAA Batteries (4-pack),1,2.99,12/27/19 10:59,"529 Church St, Boston, MA 02215" +303919,USB-C Charging Cable,1,11.95,12/30/19 05:58,"235 8th St, Boston, MA 02215" +303920,AAA Batteries (4-pack),1,2.99,12/29/19 23:03,"697 Dogwood St, San Francisco, CA 94016" +303921,Apple Airpods Headphones,1,150,12/15/19 10:51,"240 Adams St, Los Angeles, CA 90001" +303922,Lightning Charging Cable,1,14.95,12/14/19 23:37,"617 Elm St, Los Angeles, CA 90001" +303923,iPhone,1,700,12/09/19 16:40,"931 Sunset St, Seattle, WA 98101" +303923,Apple Airpods Headphones,1,150,12/09/19 16:40,"931 Sunset St, Seattle, WA 98101" +303924,Bose SoundSport Headphones,1,99.99,12/01/19 15:25,"840 Johnson St, Boston, MA 02215" +303925,27in FHD Monitor,1,149.99,12/08/19 02:18,"815 11th St, Los Angeles, CA 90001" +303926,Bose SoundSport Headphones,1,99.99,12/20/19 22:49,"687 1st St, Dallas, TX 75001" +303926,ThinkPad Laptop,1,999.99,12/20/19 22:49,"687 1st St, Dallas, TX 75001" +303927,USB-C Charging Cable,1,11.95,12/22/19 17:56,"122 4th St, Dallas, TX 75001" +303928,Macbook Pro Laptop,1,1700,12/21/19 21:23,"94 South St, Seattle, WA 98101" +303929,Bose SoundSport Headphones,1,99.99,12/04/19 12:42,"622 10th St, San Francisco, CA 94016" +303930,ThinkPad Laptop,1,999.99,12/22/19 10:35,"67 Sunset St, Atlanta, GA 30301" +303931,AA Batteries (4-pack),1,3.84,12/26/19 00:00,"206 Washington St, Portland, OR 97035" +303932,AAA Batteries (4-pack),2,2.99,12/10/19 18:48,"729 Johnson St, Los Angeles, CA 90001" +303933,Bose SoundSport Headphones,1,99.99,12/10/19 11:47,"640 Willow St, Boston, MA 02215" +303934,AAA Batteries (4-pack),1,2.99,12/18/19 22:52,"748 2nd St, Seattle, WA 98101" +303935,34in Ultrawide Monitor,1,379.99,12/27/19 22:33,"504 9th St, New York City, NY 10001" +303936,Bose SoundSport Headphones,1,99.99,12/20/19 17:05,"674 Park St, Portland, OR 97035" +303937,27in FHD Monitor,1,149.99,12/25/19 18:42,"637 Spruce St, Seattle, WA 98101" +303938,Apple Airpods Headphones,1,150,12/12/19 10:14,"585 West St, San Francisco, CA 94016" +303939,USB-C Charging Cable,1,11.95,12/06/19 06:15,"17 Center St, San Francisco, CA 94016" +303940,AAA Batteries (4-pack),1,2.99,12/17/19 23:48,"873 Cherry St, Dallas, TX 75001" +303941,USB-C Charging Cable,1,11.95,12/22/19 21:35,"869 Hill St, Boston, MA 02215" +303942,Wired Headphones,1,11.99,12/02/19 16:47,"336 Pine St, Portland, OR 97035" +303943,20in Monitor,1,109.99,12/14/19 18:53,"978 Main St, Los Angeles, CA 90001" +303944,Macbook Pro Laptop,1,1700,12/08/19 21:49,"177 Walnut St, New York City, NY 10001" +303945,USB-C Charging Cable,1,11.95,12/23/19 17:40,"789 12th St, New York City, NY 10001" +303946,USB-C Charging Cable,1,11.95,12/06/19 19:44,"450 North St, Boston, MA 02215" +303947,27in 4K Gaming Monitor,1,389.99,12/03/19 11:35,"392 Washington St, New York City, NY 10001" +303948,USB-C Charging Cable,1,11.95,12/29/19 11:29,"24 Lincoln St, Austin, TX 73301" +303949,34in Ultrawide Monitor,1,379.99,12/10/19 12:10,"947 Meadow St, Atlanta, GA 30301" +303950,AAA Batteries (4-pack),3,2.99,12/25/19 19:58,"595 2nd St, New York City, NY 10001" +303951,Lightning Charging Cable,1,14.95,12/10/19 15:58,"497 North St, New York City, NY 10001" +303952,AA Batteries (4-pack),1,3.84,12/27/19 21:17,"785 Center St, Seattle, WA 98101" +303953,27in FHD Monitor,1,149.99,12/17/19 11:38,"844 Adams St, San Francisco, CA 94016" +303954,Flatscreen TV,1,300,12/27/19 10:05,"542 Madison St, San Francisco, CA 94016" +303955,Macbook Pro Laptop,1,1700,12/21/19 19:54,"922 Johnson St, Boston, MA 02215" +303956,27in 4K Gaming Monitor,1,389.99,12/28/19 12:38,"946 Walnut St, Los Angeles, CA 90001" +303957,Bose SoundSport Headphones,1,99.99,12/20/19 12:41,"345 8th St, Austin, TX 73301" +303958,Lightning Charging Cable,1,14.95,12/08/19 16:23,"580 Washington St, Los Angeles, CA 90001" +303959,Flatscreen TV,1,300,12/24/19 20:00,"691 Johnson St, Atlanta, GA 30301" +303960,AAA Batteries (4-pack),1,2.99,12/03/19 15:13,"401 7th St, Boston, MA 02215" +303961,Wired Headphones,1,11.99,12/15/19 16:08,"198 Jefferson St, Atlanta, GA 30301" +303962,Wired Headphones,1,11.99,12/14/19 15:46,"766 5th St, San Francisco, CA 94016" +303963,Wired Headphones,1,11.99,12/20/19 19:12,"818 Walnut St, Los Angeles, CA 90001" +303964,Lightning Charging Cable,1,14.95,12/25/19 23:05,"218 Hill St, Seattle, WA 98101" +303965,AAA Batteries (4-pack),1,2.99,12/14/19 11:47,"533 Forest St, Portland, OR 97035" +303966,Lightning Charging Cable,1,14.95,12/04/19 21:51,"133 Lincoln St, Boston, MA 02215" +303967,Macbook Pro Laptop,1,1700,12/19/19 08:23,"529 Elm St, San Francisco, CA 94016" +303968,Lightning Charging Cable,1,14.95,12/14/19 12:01,"750 9th St, Los Angeles, CA 90001" +303969,20in Monitor,1,109.99,12/04/19 10:08,"997 Wilson St, Boston, MA 02215" +303970,Bose SoundSport Headphones,1,99.99,12/18/19 21:07,"443 Center St, New York City, NY 10001" +303971,AAA Batteries (4-pack),1,2.99,12/14/19 11:45,"671 Walnut St, Atlanta, GA 30301" +303972,AAA Batteries (4-pack),1,2.99,12/09/19 08:28,"273 Meadow St, San Francisco, CA 94016" +303973,Bose SoundSport Headphones,1,99.99,12/13/19 13:28,"242 Hickory St, Atlanta, GA 30301" +303974,AAA Batteries (4-pack),2,2.99,12/14/19 13:18,"679 4th St, San Francisco, CA 94016" +303975,ThinkPad Laptop,1,999.99,12/18/19 22:04,"188 Johnson St, Portland, OR 97035" +303976,27in FHD Monitor,1,149.99,12/04/19 14:40,"987 4th St, Boston, MA 02215" +303977,AAA Batteries (4-pack),1,2.99,12/14/19 22:27,"363 Maple St, Seattle, WA 98101" +303978,USB-C Charging Cable,1,11.95,12/30/19 18:19,"146 1st St, San Francisco, CA 94016" +303979,Wired Headphones,1,11.99,12/10/19 23:25,"952 10th St, Austin, TX 73301" +303980,iPhone,1,700,12/01/19 16:56,"911 4th St, Los Angeles, CA 90001" +303981,Apple Airpods Headphones,1,150,12/09/19 11:14,"721 Adams St, Boston, MA 02215" +303982,34in Ultrawide Monitor,1,379.99,12/31/19 16:32,"813 Dogwood St, Boston, MA 02215" +303983,34in Ultrawide Monitor,1,379.99,12/16/19 20:15,"149 Wilson St, Los Angeles, CA 90001" +303984,USB-C Charging Cable,1,11.95,12/18/19 09:03,"366 Johnson St, San Francisco, CA 94016" +303985,USB-C Charging Cable,1,11.95,12/23/19 14:44,"17 Meadow St, Boston, MA 02215" +303986,LG Washing Machine,1,600.0,12/21/19 12:33,"399 Madison St, San Francisco, CA 94016" +303987,USB-C Charging Cable,1,11.95,12/15/19 19:00,"228 Jackson St, Portland, OR 97035" +303988,AAA Batteries (4-pack),1,2.99,12/11/19 18:57,"953 Center St, Los Angeles, CA 90001" +303989,Bose SoundSport Headphones,1,99.99,12/05/19 18:48,"752 South St, Austin, TX 73301" +303990,LG Dryer,1,600.0,12/02/19 19:19,"435 4th St, New York City, NY 10001" +303991,iPhone,1,700,12/06/19 20:53,"549 Hickory St, Austin, TX 73301" +303992,USB-C Charging Cable,1,11.95,12/23/19 14:16,"576 Walnut St, San Francisco, CA 94016" +303993,AA Batteries (4-pack),1,3.84,12/26/19 13:51,"790 North St, Los Angeles, CA 90001" +303994,USB-C Charging Cable,1,11.95,12/13/19 05:33,"665 Ridge St, Seattle, WA 98101" +303995,AA Batteries (4-pack),1,3.84,12/12/19 15:58,"116 Chestnut St, Dallas, TX 75001" +303995,Lightning Charging Cable,1,14.95,12/12/19 15:58,"116 Chestnut St, Dallas, TX 75001" +303996,ThinkPad Laptop,1,999.99,12/16/19 19:38,"966 North St, Austin, TX 73301" +303997,USB-C Charging Cable,1,11.95,12/30/19 00:28,"658 Ridge St, Portland, OR 97035" +303998,AAA Batteries (4-pack),3,2.99,12/20/19 13:34,"277 Meadow St, San Francisco, CA 94016" +303999,27in FHD Monitor,1,149.99,12/04/19 11:43,"987 14th St, Portland, OR 97035" +304000,AAA Batteries (4-pack),1,2.99,12/16/19 22:43,"490 Main St, Los Angeles, CA 90001" +304001,Lightning Charging Cable,1,14.95,12/17/19 11:34,"543 Madison St, San Francisco, CA 94016" +304002,Apple Airpods Headphones,1,150,12/04/19 22:36,"835 Johnson St, Los Angeles, CA 90001" +304003,Bose SoundSport Headphones,1,99.99,12/03/19 19:11,"453 10th St, Los Angeles, CA 90001" +304004,USB-C Charging Cable,2,11.95,12/20/19 11:46,"181 12th St, San Francisco, CA 94016" +304005,USB-C Charging Cable,1,11.95,12/23/19 19:13,"367 Jefferson St, Los Angeles, CA 90001" +304006,AA Batteries (4-pack),3,3.84,12/15/19 02:13,"8 11th St, San Francisco, CA 94016" +304007,USB-C Charging Cable,1,11.95,12/14/19 20:45,"860 Maple St, Los Angeles, CA 90001" +304008,34in Ultrawide Monitor,1,379.99,12/13/19 22:39,"238 Jackson St, Boston, MA 02215" +304009,iPhone,1,700,12/30/19 17:37,"107 Chestnut St, San Francisco, CA 94016" +304010,Apple Airpods Headphones,1,150,12/22/19 14:34,"232 Jackson St, San Francisco, CA 94016" +304011,USB-C Charging Cable,1,11.95,12/29/19 12:54,"124 West St, Seattle, WA 98101" +304011,Wired Headphones,2,11.99,12/29/19 12:54,"124 West St, Seattle, WA 98101" +304012,AA Batteries (4-pack),1,3.84,12/21/19 17:14,"375 Johnson St, Los Angeles, CA 90001" +304013,AA Batteries (4-pack),2,3.84,12/21/19 12:53,"504 Lake St, San Francisco, CA 94016" +304014,USB-C Charging Cable,2,11.95,12/29/19 14:38,"363 8th St, San Francisco, CA 94016" +304015,Flatscreen TV,1,300,12/09/19 14:35,"25 Main St, Los Angeles, CA 90001" +304016,USB-C Charging Cable,1,11.95,12/20/19 10:37,"977 Washington St, Los Angeles, CA 90001" +304017,AA Batteries (4-pack),1,3.84,12/08/19 01:04,"178 Highland St, New York City, NY 10001" +304018,Bose SoundSport Headphones,1,99.99,12/05/19 14:51,"525 Church St, San Francisco, CA 94016" +304019,Apple Airpods Headphones,1,150,12/16/19 09:19,"765 Elm St, Dallas, TX 75001" +304020,Vareebadd Phone,1,400,12/29/19 19:25,"191 Park St, Portland, ME 04101" +304020,34in Ultrawide Monitor,1,379.99,12/29/19 19:25,"191 Park St, Portland, ME 04101" +304021,USB-C Charging Cable,1,11.95,12/02/19 16:54,"427 Center St, Atlanta, GA 30301" +304022,LG Dryer,1,600.0,12/17/19 17:41,"733 4th St, San Francisco, CA 94016" +304023,27in 4K Gaming Monitor,1,389.99,12/05/19 19:32,"4 Pine St, Los Angeles, CA 90001" +304024,Lightning Charging Cable,1,14.95,12/20/19 11:24,"115 North St, Dallas, TX 75001" +304025,27in 4K Gaming Monitor,1,389.99,12/16/19 16:08,"328 5th St, Los Angeles, CA 90001" +304026,iPhone,1,700,12/05/19 15:48,"303 Hickory St, Austin, TX 73301" +304027,Google Phone,1,600,12/16/19 23:23,"89 Lake St, New York City, NY 10001" +304028,USB-C Charging Cable,1,11.95,12/23/19 10:51,"421 Hill St, New York City, NY 10001" +304029,iPhone,1,700,12/30/19 12:06,"878 Cherry St, New York City, NY 10001" +304030,Google Phone,1,600,12/24/19 12:23,"822 Sunset St, Los Angeles, CA 90001" +304031,34in Ultrawide Monitor,1,379.99,12/24/19 09:46,"845 7th St, Seattle, WA 98101" +304032,34in Ultrawide Monitor,1,379.99,12/12/19 10:31,"824 Walnut St, San Francisco, CA 94016" +304033,Lightning Charging Cable,1,14.95,01/01/20 02:30,"94 Cedar St, Austin, TX 73301" +304034,AAA Batteries (4-pack),1,2.99,12/11/19 22:34,"2 Madison St, Boston, MA 02215" +304035,Lightning Charging Cable,1,14.95,12/22/19 08:34,"751 Forest St, Seattle, WA 98101" +304036,ThinkPad Laptop,1,999.99,12/02/19 12:29,"582 Meadow St, New York City, NY 10001" +304037,Apple Airpods Headphones,1,150,12/28/19 12:19,"632 Cherry St, Austin, TX 73301" +304038,AA Batteries (4-pack),1,3.84,12/25/19 12:03,"312 Hill St, Austin, TX 73301" +304039,Google Phone,1,600,12/30/19 14:35,"641 10th St, New York City, NY 10001" +304040,AAA Batteries (4-pack),1,2.99,12/03/19 10:42,"408 1st St, Boston, MA 02215" +304041,AAA Batteries (4-pack),1,2.99,12/20/19 15:23,"167 Cedar St, San Francisco, CA 94016" +304042,Lightning Charging Cable,1,14.95,12/13/19 03:37,"59 Hill St, San Francisco, CA 94016" +304043,USB-C Charging Cable,1,11.95,12/24/19 18:41,"584 14th St, New York City, NY 10001" +304044,AAA Batteries (4-pack),1,2.99,12/11/19 14:04,"369 Meadow St, San Francisco, CA 94016" +304045,Bose SoundSport Headphones,1,99.99,12/17/19 10:07,"622 Chestnut St, Atlanta, GA 30301" +304046,AAA Batteries (4-pack),2,2.99,12/21/19 15:36,"210 11th St, San Francisco, CA 94016" +304047,27in FHD Monitor,1,149.99,12/24/19 09:49,"251 North St, San Francisco, CA 94016" +304048,27in FHD Monitor,1,149.99,12/21/19 08:19,"119 West St, Seattle, WA 98101" +304049,Lightning Charging Cable,1,14.95,12/01/19 18:01,"136 Lake St, San Francisco, CA 94016" +304050,AA Batteries (4-pack),2,3.84,12/22/19 14:22,"898 2nd St, Dallas, TX 75001" +304051,Lightning Charging Cable,1,14.95,12/03/19 17:44,"50 Wilson St, Atlanta, GA 30301" +304052,Apple Airpods Headphones,1,150,12/12/19 13:46,"906 Adams St, Boston, MA 02215" +304053,Apple Airpods Headphones,1,150,12/25/19 10:03,"513 4th St, San Francisco, CA 94016" +304054,Wired Headphones,1,11.99,12/11/19 23:05,"83 Meadow St, Austin, TX 73301" +304055,Apple Airpods Headphones,1,150,12/25/19 15:13,"900 Hill St, Los Angeles, CA 90001" +304056,USB-C Charging Cable,2,11.95,12/29/19 12:31,"227 Madison St, Dallas, TX 75001" +304057,Lightning Charging Cable,1,14.95,12/06/19 12:57,"559 8th St, San Francisco, CA 94016" +304058,USB-C Charging Cable,1,11.95,12/29/19 14:01,"908 Lincoln St, Atlanta, GA 30301" +304059,Apple Airpods Headphones,1,150,12/22/19 13:18,"758 12th St, San Francisco, CA 94016" +304060,20in Monitor,1,109.99,12/02/19 20:30,"924 Meadow St, New York City, NY 10001" +304061,27in 4K Gaming Monitor,1,389.99,12/18/19 10:26,"366 Forest St, Los Angeles, CA 90001" +304062,Apple Airpods Headphones,1,150,12/24/19 16:22,"671 Lincoln St, Atlanta, GA 30301" +304063,34in Ultrawide Monitor,1,379.99,12/05/19 22:28,"444 Elm St, Dallas, TX 75001" +304064,ThinkPad Laptop,1,999.99,12/07/19 23:45,"132 Highland St, New York City, NY 10001" +304065,AAA Batteries (4-pack),2,2.99,12/08/19 22:45,"759 Cedar St, San Francisco, CA 94016" +304066,AAA Batteries (4-pack),1,2.99,12/23/19 13:29,"307 Meadow St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +304067,LG Dryer,1,600.0,12/15/19 14:32,"936 4th St, Austin, TX 73301" +304068,Bose SoundSport Headphones,1,99.99,12/25/19 23:46,"8 Johnson St, Seattle, WA 98101" +304069,Vareebadd Phone,1,400,12/27/19 09:14,"459 Cedar St, Seattle, WA 98101" +304070,Wired Headphones,1,11.99,12/18/19 13:50,"805 Dogwood St, Boston, MA 02215" +304071,Wired Headphones,1,11.99,12/16/19 21:25,"868 River St, Dallas, TX 75001" +304072,USB-C Charging Cable,1,11.95,12/05/19 12:59,"462 North St, Portland, OR 97035" +304073,AAA Batteries (4-pack),1,2.99,12/18/19 10:15,"350 Center St, Seattle, WA 98101" +304074,Lightning Charging Cable,1,14.95,12/15/19 14:25,"150 River St, Seattle, WA 98101" +304075,20in Monitor,2,109.99,12/11/19 22:00,"539 Highland St, Atlanta, GA 30301" +304076,USB-C Charging Cable,1,11.95,12/24/19 16:34,"590 Wilson St, New York City, NY 10001" +304076,Apple Airpods Headphones,1,150,12/24/19 16:34,"590 Wilson St, New York City, NY 10001" +304077,Apple Airpods Headphones,1,150,12/31/19 08:21,"126 Forest St, Los Angeles, CA 90001" +304078,Wired Headphones,1,11.99,12/17/19 16:02,"624 Lake St, Dallas, TX 75001" +304079,Macbook Pro Laptop,1,1700,12/06/19 09:01,"951 Lake St, Seattle, WA 98101" +304080,Wired Headphones,1,11.99,12/17/19 17:02,"212 Highland St, Austin, TX 73301" +304081,AAA Batteries (4-pack),1,2.99,12/07/19 14:39,"951 5th St, Atlanta, GA 30301" +304081,27in FHD Monitor,1,149.99,12/07/19 14:39,"951 5th St, Atlanta, GA 30301" +304082,Flatscreen TV,1,300,12/16/19 14:42,"252 12th St, Seattle, WA 98101" +304083,AA Batteries (4-pack),2,3.84,12/17/19 07:55,"193 Willow St, San Francisco, CA 94016" +304084,Lightning Charging Cable,1,14.95,12/20/19 22:02,"641 Chestnut St, San Francisco, CA 94016" +304085,Bose SoundSport Headphones,1,99.99,12/20/19 22:38,"491 14th St, Dallas, TX 75001" +304086,Lightning Charging Cable,1,14.95,12/14/19 17:25,"93 11th St, Atlanta, GA 30301" +304087,USB-C Charging Cable,1,11.95,12/19/19 18:24,"525 Maple St, Los Angeles, CA 90001" +304088,Wired Headphones,3,11.99,12/18/19 05:39,"17 Church St, San Francisco, CA 94016" +304089,Lightning Charging Cable,1,14.95,12/15/19 00:41,"376 North St, Seattle, WA 98101" +304090,Lightning Charging Cable,1,14.95,12/07/19 09:06,"188 12th St, Los Angeles, CA 90001" +304091,Wired Headphones,1,11.99,12/29/19 20:48,"385 Adams St, San Francisco, CA 94016" +304092,34in Ultrawide Monitor,1,379.99,12/28/19 19:26,"486 Lake St, Austin, TX 73301" +304093,27in FHD Monitor,1,149.99,12/28/19 21:01,"112 Sunset St, Boston, MA 02215" +304094,Apple Airpods Headphones,1,150,12/02/19 09:28,"577 Church St, Los Angeles, CA 90001" +304095,AA Batteries (4-pack),1,3.84,12/12/19 11:15,"128 2nd St, San Francisco, CA 94016" +304096,USB-C Charging Cable,1,11.95,12/28/19 21:21,"120 Washington St, Seattle, WA 98101" +304097,AAA Batteries (4-pack),2,2.99,12/28/19 18:38,"467 Walnut St, Los Angeles, CA 90001" +304098,Apple Airpods Headphones,1,150,12/26/19 22:58,"307 Center St, Atlanta, GA 30301" +304099,iPhone,1,700,12/19/19 00:47,"305 Maple St, Los Angeles, CA 90001" +304100,27in FHD Monitor,1,149.99,12/25/19 21:07,"398 Meadow St, San Francisco, CA 94016" +304101,AAA Batteries (4-pack),1,2.99,12/25/19 11:49,"773 Center St, Dallas, TX 75001" +304102,27in FHD Monitor,1,149.99,12/20/19 12:03,"799 Adams St, Boston, MA 02215" +304103,Google Phone,1,600,12/25/19 10:58,"814 Wilson St, Boston, MA 02215" +304104,AAA Batteries (4-pack),2,2.99,12/08/19 22:20,"515 11th St, Boston, MA 02215" +304105,ThinkPad Laptop,1,999.99,12/29/19 22:56,"469 Dogwood St, San Francisco, CA 94016" +304106,Google Phone,1,600,12/25/19 06:08,"968 Center St, Boston, MA 02215" +304107,AAA Batteries (4-pack),1,2.99,12/16/19 10:34,"504 Johnson St, New York City, NY 10001" +304108,Lightning Charging Cable,1,14.95,12/08/19 20:47,"527 Adams St, Portland, ME 04101" +304109,USB-C Charging Cable,1,11.95,12/16/19 09:25,"829 9th St, San Francisco, CA 94016" +304110,Wired Headphones,1,11.99,12/29/19 07:21,"821 Highland St, San Francisco, CA 94016" +304111,AAA Batteries (4-pack),2,2.99,12/10/19 23:46,"881 Sunset St, Boston, MA 02215" +304112,AAA Batteries (4-pack),1,2.99,12/07/19 11:30,"949 Washington St, Boston, MA 02215" +304113,AAA Batteries (4-pack),1,2.99,12/25/19 12:46,"459 Madison St, San Francisco, CA 94016" +304114,Wired Headphones,1,11.99,12/11/19 05:04,"370 5th St, San Francisco, CA 94016" +304115,Bose SoundSport Headphones,1,99.99,12/12/19 08:50,"793 Hickory St, Atlanta, GA 30301" +304116,Lightning Charging Cable,1,14.95,12/02/19 23:43,"30 Maple St, Portland, ME 04101" +304117,USB-C Charging Cable,1,11.95,12/14/19 18:14,"461 5th St, San Francisco, CA 94016" +304118,Apple Airpods Headphones,1,150,12/24/19 17:45,"176 Willow St, Atlanta, GA 30301" +304119,27in 4K Gaming Monitor,1,389.99,12/10/19 22:26,"852 River St, Dallas, TX 75001" +304120,USB-C Charging Cable,1,11.95,12/06/19 15:17,"716 Forest St, San Francisco, CA 94016" +304121,USB-C Charging Cable,1,11.95,12/04/19 16:27,"685 1st St, Los Angeles, CA 90001" +304122,AAA Batteries (4-pack),2,2.99,12/25/19 06:42,"931 7th St, Seattle, WA 98101" +304123,Lightning Charging Cable,1,14.95,12/23/19 23:03,"922 Lake St, San Francisco, CA 94016" +304124,USB-C Charging Cable,1,11.95,12/11/19 20:55,"865 4th St, San Francisco, CA 94016" +304125,Macbook Pro Laptop,1,1700,12/07/19 13:22,"962 Maple St, San Francisco, CA 94016" +304126,Vareebadd Phone,1,400,12/18/19 21:04,"716 Highland St, Austin, TX 73301" +304126,USB-C Charging Cable,1,11.95,12/18/19 21:04,"716 Highland St, Austin, TX 73301" +304127,AAA Batteries (4-pack),1,2.99,12/29/19 11:35,"141 Church St, Los Angeles, CA 90001" +304128,Apple Airpods Headphones,1,150,12/11/19 10:28,"958 14th St, New York City, NY 10001" +304129,AAA Batteries (4-pack),2,2.99,12/13/19 10:07,"418 West St, Dallas, TX 75001" +304130,Apple Airpods Headphones,1,150,12/24/19 23:18,"99 9th St, San Francisco, CA 94016" +304131,Apple Airpods Headphones,1,150,12/17/19 07:21,"102 12th St, New York City, NY 10001" +304132,Flatscreen TV,1,300,12/10/19 21:01,"610 13th St, Atlanta, GA 30301" +304133,Bose SoundSport Headphones,1,99.99,12/31/19 16:02,"585 Hickory St, San Francisco, CA 94016" +304134,Apple Airpods Headphones,1,150,12/14/19 14:16,"630 Forest St, Los Angeles, CA 90001" +304135,USB-C Charging Cable,1,11.95,12/22/19 11:05,"528 Park St, Seattle, WA 98101" +304136,Lightning Charging Cable,1,14.95,12/26/19 17:07,"339 8th St, Boston, MA 02215" +304137,Apple Airpods Headphones,1,150,12/07/19 12:58,"549 Spruce St, San Francisco, CA 94016" +304138,Apple Airpods Headphones,1,150,12/22/19 14:17,"762 Forest St, San Francisco, CA 94016" +304139,Bose SoundSport Headphones,1,99.99,12/05/19 18:43,"572 South St, Los Angeles, CA 90001" +304140,Lightning Charging Cable,1,14.95,12/11/19 09:45,"754 4th St, Los Angeles, CA 90001" +304141,Wired Headphones,1,11.99,12/11/19 14:07,"775 Park St, Atlanta, GA 30301" +304142,Wired Headphones,1,11.99,12/31/19 22:20,"783 Walnut St, Boston, MA 02215" +304143,Macbook Pro Laptop,1,1700,12/03/19 11:37,"668 Meadow St, New York City, NY 10001" +304144,AAA Batteries (4-pack),2,2.99,12/19/19 13:08,"967 Center St, Portland, ME 04101" +304145,Flatscreen TV,1,300,12/09/19 12:48,"182 9th St, Los Angeles, CA 90001" +304146,27in FHD Monitor,1,149.99,12/10/19 11:16,"533 South St, San Francisco, CA 94016" +304147,AA Batteries (4-pack),2,3.84,12/06/19 19:35,"357 Hill St, Seattle, WA 98101" +304148,27in FHD Monitor,1,149.99,12/07/19 16:30,"244 7th St, New York City, NY 10001" +304149,Bose SoundSport Headphones,1,99.99,12/29/19 12:25,"862 Maple St, Los Angeles, CA 90001" +304150,Google Phone,1,600,12/17/19 00:54,"425 Lake St, San Francisco, CA 94016" +304151,Apple Airpods Headphones,1,150,12/19/19 21:31,"856 Washington St, Atlanta, GA 30301" +304152,AA Batteries (4-pack),1,3.84,12/13/19 20:28,"967 Willow St, Austin, TX 73301" +304153,Apple Airpods Headphones,1,150,12/09/19 12:33,"52 Dogwood St, New York City, NY 10001" +304154,27in 4K Gaming Monitor,1,389.99,12/28/19 21:58,"413 Hickory St, New York City, NY 10001" +304155,ThinkPad Laptop,1,999.99,12/05/19 01:16,"384 Meadow St, New York City, NY 10001" +304156,AAA Batteries (4-pack),1,2.99,12/19/19 18:11,"691 Washington St, New York City, NY 10001" +304157,USB-C Charging Cable,2,11.95,12/13/19 00:12,"721 Willow St, Los Angeles, CA 90001" +304158,Wired Headphones,1,11.99,12/15/19 19:18,"753 2nd St, Seattle, WA 98101" +304159,USB-C Charging Cable,1,11.95,12/31/19 16:20,"250 Sunset St, San Francisco, CA 94016" +304160,Vareebadd Phone,1,400,12/15/19 11:39,"917 5th St, New York City, NY 10001" +304160,Wired Headphones,1,11.99,12/15/19 11:39,"917 5th St, New York City, NY 10001" +304161,Vareebadd Phone,1,400,12/23/19 18:59,"109 6th St, Atlanta, GA 30301" +304161,Wired Headphones,1,11.99,12/23/19 18:59,"109 6th St, Atlanta, GA 30301" +304162,27in 4K Gaming Monitor,1,389.99,12/29/19 18:03,"624 Johnson St, Los Angeles, CA 90001" +304163,AAA Batteries (4-pack),1,2.99,12/06/19 01:09,"318 13th St, Seattle, WA 98101" +304164,27in 4K Gaming Monitor,1,389.99,12/18/19 09:49,"806 West St, New York City, NY 10001" +304165,ThinkPad Laptop,1,999.99,12/21/19 09:44,"356 6th St, Dallas, TX 75001" +304166,Macbook Pro Laptop,1,1700,12/05/19 22:49,"459 1st St, Atlanta, GA 30301" +304167,Wired Headphones,1,11.99,12/30/19 09:08,"731 Church St, New York City, NY 10001" +304168,Wired Headphones,2,11.99,12/24/19 10:57,"684 Cedar St, Portland, OR 97035" +304169,AA Batteries (4-pack),1,3.84,12/05/19 20:17,"746 Washington St, Boston, MA 02215" +304170,USB-C Charging Cable,1,11.95,12/17/19 19:40,"802 Lake St, Los Angeles, CA 90001" +304171,Wired Headphones,1,11.99,12/05/19 12:27,"409 Center St, Los Angeles, CA 90001" +304172,iPhone,1,700,12/02/19 12:26,"322 9th St, Los Angeles, CA 90001" +304173,Wired Headphones,1,11.99,12/21/19 08:44,"406 10th St, San Francisco, CA 94016" +304174,Macbook Pro Laptop,1,1700,12/14/19 19:26,"961 10th St, Boston, MA 02215" +304175,Lightning Charging Cable,1,14.95,12/28/19 18:52,"968 Lakeview St, San Francisco, CA 94016" +304176,Wired Headphones,1,11.99,12/19/19 23:31,"551 Hickory St, Atlanta, GA 30301" +304177,AA Batteries (4-pack),1,3.84,12/13/19 21:13,"401 Washington St, Los Angeles, CA 90001" +304178,AA Batteries (4-pack),1,3.84,12/21/19 15:41,"233 Main St, Seattle, WA 98101" +304179,Wired Headphones,1,11.99,12/02/19 13:22,"311 Madison St, Atlanta, GA 30301" +304180,Macbook Pro Laptop,1,1700,12/11/19 18:23,"277 Jefferson St, Boston, MA 02215" +304181,Apple Airpods Headphones,1,150,12/26/19 23:39,"942 1st St, San Francisco, CA 94016" +304182,Google Phone,1,600,12/19/19 10:59,"142 Cherry St, Los Angeles, CA 90001" +304183,AAA Batteries (4-pack),1,2.99,12/08/19 03:06,"571 Center St, New York City, NY 10001" +304184,AA Batteries (4-pack),1,3.84,12/08/19 00:12,"172 13th St, San Francisco, CA 94016" +304185,AAA Batteries (4-pack),1,2.99,12/14/19 18:08,"309 Hickory St, Atlanta, GA 30301" +304186,USB-C Charging Cable,1,11.95,12/19/19 17:02,"343 Elm St, San Francisco, CA 94016" +304187,AAA Batteries (4-pack),2,2.99,12/17/19 20:15,"403 Willow St, Seattle, WA 98101" +304188,AA Batteries (4-pack),2,3.84,12/08/19 12:25,"135 Church St, Dallas, TX 75001" +304189,Apple Airpods Headphones,1,150,12/14/19 20:23,"357 Jefferson St, Seattle, WA 98101" +304190,27in 4K Gaming Monitor,1,389.99,12/30/19 18:08,"909 Main St, Portland, OR 97035" +304191,AAA Batteries (4-pack),1,2.99,12/15/19 22:05,"721 Walnut St, Los Angeles, CA 90001" +304192,AA Batteries (4-pack),1,3.84,12/31/19 15:32,"438 Johnson St, Atlanta, GA 30301" +304193,USB-C Charging Cable,1,11.95,12/31/19 11:08,"58 North St, Los Angeles, CA 90001" +304194,Google Phone,1,600,12/10/19 15:48,"76 11th St, New York City, NY 10001" +304194,USB-C Charging Cable,1,11.95,12/10/19 15:48,"76 11th St, New York City, NY 10001" +304195,Wired Headphones,2,11.99,12/14/19 20:30,"652 2nd St, Austin, TX 73301" +304196,Bose SoundSport Headphones,1,99.99,12/27/19 12:50,"964 West St, Los Angeles, CA 90001" +304197,AA Batteries (4-pack),1,3.84,12/16/19 17:41,"519 Church St, Seattle, WA 98101" +304197,Lightning Charging Cable,1,14.95,12/16/19 17:41,"519 Church St, Seattle, WA 98101" +304198,34in Ultrawide Monitor,1,379.99,12/18/19 15:20,"825 Sunset St, Seattle, WA 98101" +304199,Lightning Charging Cable,1,14.95,12/07/19 13:03,"165 10th St, Los Angeles, CA 90001" +304200,27in FHD Monitor,1,149.99,12/17/19 20:15,"468 Madison St, Boston, MA 02215" +304201,USB-C Charging Cable,1,11.95,12/13/19 12:21,"106 Dogwood St, San Francisco, CA 94016" +304202,Wired Headphones,1,11.99,12/04/19 21:57,"565 Willow St, San Francisco, CA 94016" +304203,Apple Airpods Headphones,1,150,12/06/19 11:32,"94 Meadow St, Atlanta, GA 30301" +304204,Bose SoundSport Headphones,1,99.99,12/16/19 13:39,"827 Park St, Atlanta, GA 30301" +304205,USB-C Charging Cable,1,11.95,12/17/19 12:14,"116 7th St, New York City, NY 10001" +304206,Wired Headphones,1,11.99,12/01/19 10:27,"758 Dogwood St, Los Angeles, CA 90001" +304207,Macbook Pro Laptop,1,1700,12/27/19 08:22,"350 Elm St, San Francisco, CA 94016" +304208,27in FHD Monitor,1,149.99,12/05/19 21:16,"16 Adams St, Seattle, WA 98101" +304209,USB-C Charging Cable,1,11.95,12/29/19 16:53,"90 Cherry St, Seattle, WA 98101" +304210,Lightning Charging Cable,1,14.95,12/13/19 19:06,"586 Church St, Portland, OR 97035" +304211,Macbook Pro Laptop,1,1700,12/08/19 13:13,"784 Main St, Boston, MA 02215" +304212,Wired Headphones,1,11.99,12/27/19 16:56,"825 10th St, San Francisco, CA 94016" +304213,AA Batteries (4-pack),1,3.84,12/23/19 00:35,"218 Maple St, Atlanta, GA 30301" +304214,Wired Headphones,2,11.99,12/23/19 09:28,"817 Jackson St, Dallas, TX 75001" +304215,Lightning Charging Cable,1,14.95,12/29/19 21:32,"971 7th St, New York City, NY 10001" +304216,27in 4K Gaming Monitor,1,389.99,12/15/19 19:49,"221 13th St, New York City, NY 10001" +304217,Wired Headphones,1,11.99,12/06/19 22:53,"795 South St, Boston, MA 02215" +304218,27in FHD Monitor,1,149.99,12/25/19 07:05,"124 Adams St, Dallas, TX 75001" +304219,34in Ultrawide Monitor,1,379.99,12/12/19 07:09,"237 Elm St, New York City, NY 10001" +304220,Lightning Charging Cable,1,14.95,12/15/19 12:06,"616 River St, Portland, OR 97035" +304221,Apple Airpods Headphones,1,150,12/14/19 12:46,"573 Cherry St, Los Angeles, CA 90001" +304222,Bose SoundSport Headphones,1,99.99,12/04/19 21:13,"585 Jackson St, Seattle, WA 98101" +304223,AA Batteries (4-pack),2,3.84,12/31/19 20:42,"93 Maple St, San Francisco, CA 94016" +304224,USB-C Charging Cable,1,11.95,12/22/19 08:32,"390 Park St, New York City, NY 10001" +304225,USB-C Charging Cable,2,11.95,12/28/19 18:37,"122 Center St, San Francisco, CA 94016" +304226,Bose SoundSport Headphones,1,99.99,12/31/19 22:01,"908 Jackson St, Los Angeles, CA 90001" +304227,USB-C Charging Cable,1,11.95,12/01/19 11:54,"687 Lincoln St, Austin, TX 73301" +304228,Apple Airpods Headphones,1,150,12/04/19 13:40,"763 4th St, Portland, ME 04101" +304229,USB-C Charging Cable,1,11.95,12/14/19 21:52,"967 Pine St, Boston, MA 02215" +304230,iPhone,1,700,12/13/19 14:16,"917 Jackson St, Boston, MA 02215" +304231,AAA Batteries (4-pack),1,2.99,12/05/19 21:49,"1 Park St, San Francisco, CA 94016" +304232,AAA Batteries (4-pack),1,2.99,12/02/19 14:21,"837 9th St, San Francisco, CA 94016" +304233,Lightning Charging Cable,1,14.95,12/31/19 17:48,"65 Pine St, New York City, NY 10001" +304234,Vareebadd Phone,1,400,12/11/19 19:51,"966 Chestnut St, New York City, NY 10001" +304234,USB-C Charging Cable,1,11.95,12/11/19 19:51,"966 Chestnut St, New York City, NY 10001" +304235,Lightning Charging Cable,1,14.95,12/03/19 13:10,"574 Washington St, New York City, NY 10001" +304236,27in 4K Gaming Monitor,1,389.99,12/27/19 15:53,"257 Willow St, Boston, MA 02215" +304237,Lightning Charging Cable,1,14.95,12/25/19 18:56,"517 Jefferson St, San Francisco, CA 94016" +304238,Apple Airpods Headphones,1,150,12/30/19 10:42,"869 Highland St, Dallas, TX 75001" +304239,iPhone,1,700,12/03/19 18:02,"339 11th St, New York City, NY 10001" +304240,Wired Headphones,1,11.99,12/03/19 11:03,"988 Lincoln St, Seattle, WA 98101" +304241,Lightning Charging Cable,1,14.95,12/11/19 06:47,"989 Maple St, Atlanta, GA 30301" +304242,27in FHD Monitor,1,149.99,12/08/19 10:20,"646 5th St, New York City, NY 10001" +304243,AA Batteries (4-pack),1,3.84,12/17/19 17:36,"755 2nd St, San Francisco, CA 94016" +304244,27in 4K Gaming Monitor,1,389.99,12/26/19 07:56,"866 8th St, Los Angeles, CA 90001" +304245,27in FHD Monitor,1,149.99,12/02/19 13:54,"24 Hickory St, New York City, NY 10001" +304246,27in FHD Monitor,1,149.99,12/29/19 13:54,"780 Madison St, New York City, NY 10001" +304247,USB-C Charging Cable,1,11.95,12/05/19 00:50,"694 7th St, San Francisco, CA 94016" +304248,Lightning Charging Cable,1,14.95,12/04/19 16:06,"546 Washington St, San Francisco, CA 94016" +304249,AA Batteries (4-pack),1,3.84,12/21/19 12:24,"653 Wilson St, San Francisco, CA 94016" +304250,Apple Airpods Headphones,1,150,12/05/19 16:22,"222 Highland St, San Francisco, CA 94016" +304251,USB-C Charging Cable,1,11.95,12/22/19 11:54,"800 Washington St, Portland, OR 97035" +304252,AAA Batteries (4-pack),1,2.99,12/27/19 20:15,"3 Elm St, San Francisco, CA 94016" +304253,20in Monitor,1,109.99,12/23/19 15:57,"803 Lake St, Atlanta, GA 30301" +304254,27in 4K Gaming Monitor,1,389.99,12/13/19 04:39,"284 8th St, Seattle, WA 98101" +304255,iPhone,1,700,12/27/19 00:00,"168 Chestnut St, Los Angeles, CA 90001" +304255,Lightning Charging Cable,2,14.95,12/27/19 00:00,"168 Chestnut St, Los Angeles, CA 90001" +304256,27in 4K Gaming Monitor,1,389.99,12/18/19 11:00,"887 6th St, San Francisco, CA 94016" +304257,Flatscreen TV,1,300,12/31/19 20:41,"143 13th St, Portland, ME 04101" +304258,Apple Airpods Headphones,1,150,12/16/19 20:08,"925 Elm St, Los Angeles, CA 90001" +304259,USB-C Charging Cable,1,11.95,12/14/19 09:30,"723 Hickory St, San Francisco, CA 94016" +304260,Apple Airpods Headphones,1,150,12/21/19 13:48,"936 Lake St, Los Angeles, CA 90001" +304261,USB-C Charging Cable,1,11.95,12/04/19 21:23,"72 Adams St, Los Angeles, CA 90001" +304262,Lightning Charging Cable,1,14.95,12/29/19 07:48,"133 Meadow St, Los Angeles, CA 90001" +304263,Lightning Charging Cable,1,14.95,12/19/19 16:52,"686 Sunset St, Atlanta, GA 30301" +304264,AA Batteries (4-pack),2,3.84,12/01/19 12:23,"181 10th St, Atlanta, GA 30301" +304265,Apple Airpods Headphones,1,150,12/24/19 17:25,"98 Main St, Seattle, WA 98101" +304266,AAA Batteries (4-pack),2,2.99,12/07/19 15:03,"151 Cedar St, San Francisco, CA 94016" +304267,Lightning Charging Cable,1,14.95,12/20/19 18:26,"508 Madison St, Los Angeles, CA 90001" +304268,AA Batteries (4-pack),1,3.84,12/21/19 18:01,"354 River St, New York City, NY 10001" +304269,27in FHD Monitor,1,149.99,12/14/19 19:46,"983 Jackson St, Los Angeles, CA 90001" +304270,USB-C Charging Cable,1,11.95,12/19/19 20:31,"586 Park St, Austin, TX 73301" +304271,Apple Airpods Headphones,1,150,12/03/19 12:52,"853 Jefferson St, Portland, OR 97035" +304272,Wired Headphones,1,11.99,12/23/19 12:17,"976 7th St, New York City, NY 10001" +304273,AAA Batteries (4-pack),1,2.99,12/25/19 22:24,"583 Johnson St, San Francisco, CA 94016" +304274,34in Ultrawide Monitor,1,379.99,12/25/19 18:57,"861 Maple St, Los Angeles, CA 90001" +304274,AAA Batteries (4-pack),2,2.99,12/25/19 18:57,"861 Maple St, Los Angeles, CA 90001" +304275,AA Batteries (4-pack),1,3.84,12/13/19 11:09,"586 Center St, Boston, MA 02215" +304276,Wired Headphones,1,11.99,12/29/19 12:17,"655 Main St, Los Angeles, CA 90001" +304277,Bose SoundSport Headphones,1,99.99,12/28/19 21:02,"512 Jefferson St, Boston, MA 02215" +304278,AA Batteries (4-pack),3,3.84,12/18/19 09:24,"617 Dogwood St, Los Angeles, CA 90001" +304279,iPhone,1,700,12/13/19 11:16,"133 South St, New York City, NY 10001" +304279,Lightning Charging Cable,2,14.95,12/13/19 11:16,"133 South St, New York City, NY 10001" +304280,27in FHD Monitor,1,149.99,12/04/19 16:14,"131 Church St, New York City, NY 10001" +304281,AA Batteries (4-pack),1,3.84,12/21/19 21:40,"110 Jackson St, Los Angeles, CA 90001" +304282,Bose SoundSport Headphones,1,99.99,12/17/19 18:28,"454 1st St, Dallas, TX 75001" +304282,Bose SoundSport Headphones,1,99.99,12/17/19 18:28,"454 1st St, Dallas, TX 75001" +304283,Google Phone,1,600,12/15/19 12:22,"601 North St, Seattle, WA 98101" +304284,Wired Headphones,1,11.99,12/15/19 09:26,"202 Jefferson St, Los Angeles, CA 90001" +304285,Apple Airpods Headphones,1,150,12/05/19 15:35,"982 North St, San Francisco, CA 94016" +304286,Lightning Charging Cable,1,14.95,12/13/19 16:11,"314 Center St, San Francisco, CA 94016" +304286,AA Batteries (4-pack),1,3.84,12/13/19 16:11,"314 Center St, San Francisco, CA 94016" +304287,34in Ultrawide Monitor,1,379.99,12/17/19 14:16,"6 Washington St, Seattle, WA 98101" +304288,Google Phone,1,600,12/12/19 04:42,"802 Walnut St, Atlanta, GA 30301" +304289,AA Batteries (4-pack),2,3.84,12/02/19 23:32,"407 Sunset St, Austin, TX 73301" +304290,Lightning Charging Cable,2,14.95,12/03/19 12:56,"360 7th St, Boston, MA 02215" +304291,Vareebadd Phone,1,400,12/10/19 13:09,"57 2nd St, Los Angeles, CA 90001" +304292,Bose SoundSport Headphones,1,99.99,12/07/19 06:45,"564 Meadow St, San Francisco, CA 94016" +304293,34in Ultrawide Monitor,1,379.99,12/04/19 18:49,"719 Madison St, Seattle, WA 98101" +304294,ThinkPad Laptop,1,999.99,12/04/19 11:27,"569 10th St, New York City, NY 10001" +304295,Flatscreen TV,1,300,12/30/19 06:46,"236 Lake St, Los Angeles, CA 90001" +304296,Apple Airpods Headphones,1,150,12/01/19 18:44,"278 Madison St, Los Angeles, CA 90001" +304297,27in 4K Gaming Monitor,1,389.99,12/22/19 13:52,"364 Ridge St, Austin, TX 73301" +304298,AAA Batteries (4-pack),1,2.99,12/02/19 11:39,"679 North St, New York City, NY 10001" +304299,AAA Batteries (4-pack),1,2.99,12/18/19 17:36,"566 4th St, Los Angeles, CA 90001" +304300,ThinkPad Laptop,1,999.99,12/17/19 17:12,"531 7th St, Los Angeles, CA 90001" +304301,Bose SoundSport Headphones,1,99.99,12/21/19 11:09,"307 6th St, Los Angeles, CA 90001" +304302,Wired Headphones,2,11.99,12/11/19 15:35,"625 Jackson St, Atlanta, GA 30301" +304303,Lightning Charging Cable,1,14.95,12/05/19 11:47,"237 Jackson St, Dallas, TX 75001" +304304,Apple Airpods Headphones,1,150,12/13/19 08:18,"635 North St, Los Angeles, CA 90001" +304305,Apple Airpods Headphones,1,150,12/02/19 15:56,"249 Chestnut St, Los Angeles, CA 90001" +304306,Apple Airpods Headphones,1,150,12/05/19 12:55,"598 10th St, Portland, OR 97035" +304307,Lightning Charging Cable,1,14.95,12/14/19 20:27,"723 8th St, Seattle, WA 98101" +304308,ThinkPad Laptop,1,999.99,12/26/19 18:36,"502 Pine St, Portland, OR 97035" +304309,AA Batteries (4-pack),1,3.84,12/03/19 23:52,"813 Spruce St, San Francisco, CA 94016" +304310,34in Ultrawide Monitor,1,379.99,12/24/19 10:12,"8 Hill St, Atlanta, GA 30301" +304311,Wired Headphones,1,11.99,12/13/19 15:35,"294 Highland St, Dallas, TX 75001" +304312,Apple Airpods Headphones,1,150,12/12/19 19:11,"392 Highland St, San Francisco, CA 94016" +304313,AAA Batteries (4-pack),1,2.99,12/26/19 14:41,"625 Center St, Atlanta, GA 30301" +304314,Lightning Charging Cable,1,14.95,12/31/19 18:24,"657 Maple St, Atlanta, GA 30301" +304315,27in FHD Monitor,1,149.99,12/31/19 10:58,"10 Dogwood St, Portland, OR 97035" +304316,Apple Airpods Headphones,1,150,12/21/19 18:51,"832 Cherry St, Los Angeles, CA 90001" +304317,AAA Batteries (4-pack),1,2.99,12/15/19 16:39,"979 North St, Dallas, TX 75001" +304318,Apple Airpods Headphones,1,150,12/17/19 20:03,"119 Jackson St, Los Angeles, CA 90001" +304319,Lightning Charging Cable,1,14.95,12/06/19 08:12,"66 Adams St, San Francisco, CA 94016" +304320,ThinkPad Laptop,1,999.99,12/12/19 19:21,"919 Lincoln St, New York City, NY 10001" +304321,Bose SoundSport Headphones,1,99.99,12/02/19 14:29,"438 14th St, Portland, ME 04101" +304321,Lightning Charging Cable,2,14.95,12/02/19 14:29,"438 14th St, Portland, ME 04101" +304322,27in 4K Gaming Monitor,1,389.99,12/19/19 19:40,"93 Sunset St, Portland, OR 97035" +304323,iPhone,1,700,12/10/19 15:44,"962 Chestnut St, Boston, MA 02215" +304324,Google Phone,1,600,12/27/19 07:46,"683 10th St, Los Angeles, CA 90001" +304325,AAA Batteries (4-pack),1,2.99,12/10/19 13:38,"114 Sunset St, Austin, TX 73301" +304326,AA Batteries (4-pack),1,3.84,12/02/19 22:19,"479 Lakeview St, Los Angeles, CA 90001" +304327,Google Phone,1,600,12/07/19 12:16,"559 11th St, New York City, NY 10001" +304327,USB-C Charging Cable,1,11.95,12/07/19 12:16,"559 11th St, New York City, NY 10001" +304328,27in FHD Monitor,1,149.99,12/24/19 15:23,"908 Lakeview St, New York City, NY 10001" +304329,AA Batteries (4-pack),3,3.84,12/21/19 13:16,"367 Adams St, New York City, NY 10001" +304330,Lightning Charging Cable,2,14.95,12/13/19 20:29,"438 Wilson St, San Francisco, CA 94016" +304331,Apple Airpods Headphones,1,150,12/28/19 11:58,"761 Forest St, San Francisco, CA 94016" +304332,USB-C Charging Cable,1,11.95,12/24/19 14:53,"470 Lincoln St, New York City, NY 10001" +304333,Apple Airpods Headphones,1,150,12/22/19 23:29,"229 Lincoln St, San Francisco, CA 94016" +304334,27in FHD Monitor,1,149.99,12/24/19 22:30,"569 Ridge St, San Francisco, CA 94016" +304335,Wired Headphones,1,11.99,12/21/19 10:02,"182 Lincoln St, Boston, MA 02215" +304336,AAA Batteries (4-pack),1,2.99,12/04/19 14:51,"664 1st St, Atlanta, GA 30301" +304337,AAA Batteries (4-pack),1,2.99,12/19/19 20:01,"994 Willow St, Los Angeles, CA 90001" +304338,Apple Airpods Headphones,1,150,12/24/19 19:38,"523 Sunset St, Portland, OR 97035" +304339,Wired Headphones,1,11.99,12/24/19 11:05,"435 Hill St, San Francisco, CA 94016" +304340,34in Ultrawide Monitor,1,379.99,12/16/19 19:57,"675 12th St, San Francisco, CA 94016" +304341,AA Batteries (4-pack),1,3.84,12/20/19 09:53,"891 13th St, Dallas, TX 75001" +304342,iPhone,1,700,12/20/19 18:58,"454 6th St, San Francisco, CA 94016" +304343,USB-C Charging Cable,1,11.95,12/18/19 15:42,"656 Highland St, Los Angeles, CA 90001" +304344,Apple Airpods Headphones,1,150,12/25/19 13:01,"866 1st St, San Francisco, CA 94016" +304345,USB-C Charging Cable,1,11.95,12/14/19 10:38,"303 Elm St, Boston, MA 02215" +304346,Bose SoundSport Headphones,1,99.99,12/04/19 22:45,"238 1st St, Seattle, WA 98101" +304347,AAA Batteries (4-pack),1,2.99,12/16/19 16:22,"556 8th St, San Francisco, CA 94016" +304348,USB-C Charging Cable,1,11.95,12/31/19 10:50,"705 Madison St, Seattle, WA 98101" +304349,Bose SoundSport Headphones,1,99.99,12/15/19 21:33,"928 Willow St, Boston, MA 02215" +304350,Wired Headphones,1,11.99,12/01/19 06:09,"816 Johnson St, San Francisco, CA 94016" +304351,Apple Airpods Headphones,1,150,12/01/19 16:56,"836 Main St, Portland, OR 97035" +304352,AAA Batteries (4-pack),1,2.99,12/25/19 08:40,"623 Cherry St, Seattle, WA 98101" +304353,27in 4K Gaming Monitor,1,389.99,12/10/19 16:33,"656 Ridge St, Boston, MA 02215" +304354,34in Ultrawide Monitor,1,379.99,12/26/19 00:22,"257 Church St, New York City, NY 10001" +304355,AA Batteries (4-pack),2,3.84,12/21/19 18:56,"366 River St, San Francisco, CA 94016" +304356,Vareebadd Phone,1,400,12/13/19 14:00,"537 7th St, San Francisco, CA 94016" +304356,Wired Headphones,1,11.99,12/13/19 14:00,"537 7th St, San Francisco, CA 94016" +304357,Wired Headphones,1,11.99,12/12/19 22:53,"939 Jefferson St, New York City, NY 10001" +304358,Bose SoundSport Headphones,1,99.99,12/16/19 13:56,"36 9th St, Los Angeles, CA 90001" +304359,AA Batteries (4-pack),1,3.84,12/24/19 10:02,"676 Pine St, Dallas, TX 75001" +304360,27in 4K Gaming Monitor,1,389.99,12/01/19 21:02,"85 South St, Portland, OR 97035" +304361,Wired Headphones,1,11.99,12/17/19 09:25,"7 Cedar St, New York City, NY 10001" +304362,iPhone,1,700,12/11/19 11:05,"892 Park St, New York City, NY 10001" +304363,iPhone,1,700,12/02/19 18:04,"454 Adams St, San Francisco, CA 94016" +304364,AA Batteries (4-pack),1,3.84,12/03/19 13:32,"955 Church St, Los Angeles, CA 90001" +304365,USB-C Charging Cable,1,11.95,12/20/19 13:22,"424 Cedar St, Seattle, WA 98101" +304366,Macbook Pro Laptop,1,1700,12/20/19 03:52,"653 Cedar St, Los Angeles, CA 90001" +304367,AAA Batteries (4-pack),2,2.99,12/16/19 11:04,"233 Walnut St, San Francisco, CA 94016" +304368,Lightning Charging Cable,1,14.95,12/24/19 17:47,"507 Forest St, San Francisco, CA 94016" +304369,Lightning Charging Cable,1,14.95,12/21/19 16:25,"316 1st St, Boston, MA 02215" +304370,Flatscreen TV,1,300,12/30/19 08:41,"811 North St, San Francisco, CA 94016" +304371,Wired Headphones,1,11.99,12/07/19 17:28,"373 7th St, Atlanta, GA 30301" +304372,Bose SoundSport Headphones,1,99.99,12/06/19 11:15,"175 Center St, New York City, NY 10001" +304373,Lightning Charging Cable,1,14.95,12/24/19 13:23,"655 6th St, San Francisco, CA 94016" +304374,20in Monitor,1,109.99,12/28/19 20:14,"434 Elm St, Boston, MA 02215" +304375,AAA Batteries (4-pack),1,2.99,12/06/19 20:26,"219 11th St, Dallas, TX 75001" +304376,Flatscreen TV,1,300,12/07/19 12:51,"817 Johnson St, Dallas, TX 75001" +304377,Bose SoundSport Headphones,1,99.99,12/10/19 09:11,"349 8th St, Seattle, WA 98101" +304378,Apple Airpods Headphones,1,150,12/27/19 22:55,"832 Elm St, Boston, MA 02215" +304379,AA Batteries (4-pack),2,3.84,12/09/19 23:50,"759 Cherry St, Los Angeles, CA 90001" +304380,AAA Batteries (4-pack),2,2.99,12/24/19 17:26,"196 Jefferson St, San Francisco, CA 94016" +304381,AAA Batteries (4-pack),1,2.99,12/13/19 08:32,"982 5th St, San Francisco, CA 94016" +304382,USB-C Charging Cable,1,11.95,12/14/19 22:38,"94 Hill St, San Francisco, CA 94016" +304383,Wired Headphones,1,11.99,12/16/19 20:09,"428 Park St, Seattle, WA 98101" +304384,Google Phone,1,600,12/24/19 17:00,"82 North St, Atlanta, GA 30301" +304385,USB-C Charging Cable,1,11.95,12/06/19 19:09,"315 Chestnut St, Los Angeles, CA 90001" +304386,AA Batteries (4-pack),3,3.84,12/18/19 09:43,"752 West St, Seattle, WA 98101" +304387,34in Ultrawide Monitor,1,379.99,12/29/19 18:25,"95 4th St, Boston, MA 02215" +304388,Macbook Pro Laptop,1,1700,12/12/19 09:57,"250 2nd St, Boston, MA 02215" +304389,AAA Batteries (4-pack),1,2.99,12/16/19 21:36,"713 Hill St, Boston, MA 02215" +304390,AA Batteries (4-pack),1,3.84,12/18/19 15:38,"395 Adams St, San Francisco, CA 94016" +304391,Apple Airpods Headphones,1,150,12/26/19 10:49,"585 Lincoln St, Austin, TX 73301" +304392,AAA Batteries (4-pack),1,2.99,12/19/19 21:36,"785 Lake St, Portland, ME 04101" +304393,27in 4K Gaming Monitor,1,389.99,12/12/19 18:06,"1 Pine St, Boston, MA 02215" +304394,AAA Batteries (4-pack),1,2.99,12/04/19 21:39,"854 Elm St, San Francisco, CA 94016" +304395,AAA Batteries (4-pack),2,2.99,12/23/19 22:17,"868 6th St, New York City, NY 10001" +304396,AAA Batteries (4-pack),1,2.99,12/16/19 15:57,"142 Lincoln St, Atlanta, GA 30301" +304397,Flatscreen TV,1,300,12/01/19 20:36,"916 2nd St, Boston, MA 02215" +304398,USB-C Charging Cable,1,11.95,12/03/19 18:02,"55 5th St, Seattle, WA 98101" +304399,Lightning Charging Cable,1,14.95,12/18/19 20:02,"704 8th St, Los Angeles, CA 90001" +304400,ThinkPad Laptop,1,999.99,12/23/19 15:10,"546 12th St, Los Angeles, CA 90001" +304401,Lightning Charging Cable,1,14.95,12/04/19 06:14,"863 Highland St, San Francisco, CA 94016" +304402,Apple Airpods Headphones,1,150,12/14/19 19:03,"476 Dogwood St, Seattle, WA 98101" +304403,Wired Headphones,1,11.99,12/11/19 13:13,"172 Main St, Dallas, TX 75001" +304404,AA Batteries (4-pack),1,3.84,12/28/19 14:45,"118 Lincoln St, Dallas, TX 75001" +304404,Wired Headphones,1,11.99,12/28/19 14:45,"118 Lincoln St, Dallas, TX 75001" +304405,Vareebadd Phone,1,400,12/18/19 09:41,"572 12th St, San Francisco, CA 94016" +304406,USB-C Charging Cable,1,11.95,12/28/19 19:36,"783 Ridge St, Boston, MA 02215" +304407,iPhone,1,700,12/11/19 20:03,"73 Forest St, Austin, TX 73301" +304408,USB-C Charging Cable,1,11.95,12/07/19 15:51,"687 Spruce St, San Francisco, CA 94016" +304409,AA Batteries (4-pack),2,3.84,12/05/19 11:19,"683 4th St, New York City, NY 10001" +304410,Bose SoundSport Headphones,1,99.99,12/22/19 11:39,"813 8th St, Dallas, TX 75001" +304411,USB-C Charging Cable,1,11.95,12/22/19 17:19,"715 Park St, Dallas, TX 75001" +304412,Vareebadd Phone,1,400,12/29/19 17:18,"683 13th St, San Francisco, CA 94016" +304413,27in FHD Monitor,1,149.99,12/13/19 12:09,"355 Walnut St, Atlanta, GA 30301" +304414,Bose SoundSport Headphones,1,99.99,12/03/19 22:22,"478 Washington St, Los Angeles, CA 90001" +304415,Lightning Charging Cable,1,14.95,12/11/19 08:04,"314 Main St, New York City, NY 10001" +304416,Apple Airpods Headphones,1,150,12/01/19 19:23,"378 Cedar St, New York City, NY 10001" +304417,Lightning Charging Cable,2,14.95,12/21/19 08:01,"143 North St, Austin, TX 73301" +304418,27in FHD Monitor,1,149.99,12/25/19 15:02,"799 6th St, New York City, NY 10001" +304419,USB-C Charging Cable,1,11.95,12/13/19 08:17,"717 Center St, Los Angeles, CA 90001" +304420,AA Batteries (4-pack),1,3.84,12/03/19 07:03,"237 Ridge St, Seattle, WA 98101" +304421,USB-C Charging Cable,2,11.95,12/30/19 07:33,"969 5th St, Seattle, WA 98101" +304422,Google Phone,1,600,12/12/19 22:20,"724 14th St, Los Angeles, CA 90001" +304423,Bose SoundSport Headphones,1,99.99,12/06/19 20:05,"636 Jefferson St, San Francisco, CA 94016" +304424,Bose SoundSport Headphones,1,99.99,12/28/19 18:23,"796 Lake St, New York City, NY 10001" +304425,AA Batteries (4-pack),1,3.84,12/28/19 08:51,"45 Johnson St, New York City, NY 10001" +304426,LG Dryer,1,600.0,12/24/19 21:16,"190 8th St, San Francisco, CA 94016" +304427,27in 4K Gaming Monitor,1,389.99,12/26/19 10:33,"644 Lake St, Austin, TX 73301" +304428,27in 4K Gaming Monitor,1,389.99,12/05/19 17:34,"367 Spruce St, San Francisco, CA 94016" +304429,Wired Headphones,1,11.99,12/24/19 19:18,"819 1st St, Atlanta, GA 30301" +304430,AAA Batteries (4-pack),1,2.99,12/14/19 13:54,"720 Chestnut St, Los Angeles, CA 90001" +304431,Flatscreen TV,1,300,12/09/19 16:03,"409 Church St, Portland, OR 97035" +304432,Wired Headphones,1,11.99,12/09/19 22:33,"354 1st St, Atlanta, GA 30301" +304433,Bose SoundSport Headphones,1,99.99,12/29/19 10:27,"826 Ridge St, Los Angeles, CA 90001" +304434,iPhone,1,700,12/31/19 22:15,"183 Forest St, Portland, OR 97035" +304435,Bose SoundSport Headphones,1,99.99,12/02/19 22:40,"563 4th St, Los Angeles, CA 90001" +304436,AAA Batteries (4-pack),1,2.99,12/30/19 14:47,"942 Adams St, Seattle, WA 98101" +304437,ThinkPad Laptop,1,999.99,12/02/19 13:20,"786 Adams St, Seattle, WA 98101" +304438,AAA Batteries (4-pack),1,2.99,12/16/19 10:46,"171 Washington St, Seattle, WA 98101" +304439,Apple Airpods Headphones,1,150,12/23/19 17:09,"71 Chestnut St, Portland, OR 97035" +304440,USB-C Charging Cable,1,11.95,12/11/19 10:05,"262 South St, San Francisco, CA 94016" +304441,Bose SoundSport Headphones,1,99.99,12/21/19 00:34,"771 River St, Los Angeles, CA 90001" +304442,USB-C Charging Cable,1,11.95,12/03/19 19:29,"420 Cherry St, New York City, NY 10001" +304443,Wired Headphones,1,11.99,12/27/19 13:06,"439 Spruce St, Los Angeles, CA 90001" +304444,AA Batteries (4-pack),1,3.84,12/19/19 17:37,"449 Wilson St, Boston, MA 02215" +304445,Bose SoundSport Headphones,1,99.99,12/27/19 12:30,"154 Walnut St, Dallas, TX 75001" +304446,Lightning Charging Cable,2,14.95,12/29/19 22:17,"147 River St, Los Angeles, CA 90001" +304447,AA Batteries (4-pack),2,3.84,12/17/19 21:45,"533 Johnson St, Portland, ME 04101" +304448,Bose SoundSport Headphones,1,99.99,12/04/19 00:18,"549 Elm St, Dallas, TX 75001" +304449,Google Phone,1,600,12/01/19 20:24,"294 Spruce St, San Francisco, CA 94016" +304450,AA Batteries (4-pack),1,3.84,12/24/19 08:00,"328 14th St, Los Angeles, CA 90001" +304451,Bose SoundSport Headphones,1,99.99,12/19/19 13:58,"933 12th St, Seattle, WA 98101" +304452,AA Batteries (4-pack),1,3.84,12/06/19 19:01,"892 2nd St, New York City, NY 10001" +304453,Bose SoundSport Headphones,1,99.99,12/22/19 21:31,"24 Walnut St, New York City, NY 10001" +304454,27in 4K Gaming Monitor,1,389.99,12/07/19 19:05,"171 Spruce St, Los Angeles, CA 90001" +304455,AAA Batteries (4-pack),1,2.99,12/23/19 01:52,"882 Main St, Boston, MA 02215" +304456,Google Phone,1,600,12/06/19 09:23,"146 West St, Portland, OR 97035" +304456,Bose SoundSport Headphones,1,99.99,12/06/19 09:23,"146 West St, Portland, OR 97035" +304457,Apple Airpods Headphones,1,150,12/19/19 14:37,"2 12th St, Los Angeles, CA 90001" +304458,Bose SoundSport Headphones,1,99.99,12/14/19 18:11,"398 Dogwood St, San Francisco, CA 94016" +304459,Wired Headphones,1,11.99,12/04/19 14:38,"656 Center St, San Francisco, CA 94016" +304460,AA Batteries (4-pack),1,3.84,12/25/19 20:42,"474 Walnut St, Seattle, WA 98101" +304461,USB-C Charging Cable,1,11.95,12/04/19 12:55,"3 5th St, Atlanta, GA 30301" +304462,Flatscreen TV,1,300,12/31/19 13:39,"220 Hill St, Boston, MA 02215" +304463,Wired Headphones,1,11.99,12/05/19 12:47,"601 Washington St, Los Angeles, CA 90001" +304464,AA Batteries (4-pack),1,3.84,12/23/19 15:10,"163 Lakeview St, Atlanta, GA 30301" +304465,USB-C Charging Cable,1,11.95,12/14/19 02:06,"414 Main St, Austin, TX 73301" +304466,AAA Batteries (4-pack),1,2.99,12/14/19 19:29,"127 Wilson St, Portland, ME 04101" +304467,AAA Batteries (4-pack),1,2.99,12/18/19 00:14,"365 South St, San Francisco, CA 94016" +304468,34in Ultrawide Monitor,1,379.99,12/31/19 21:57,"447 1st St, Boston, MA 02215" +304469,Wired Headphones,1,11.99,12/15/19 15:03,"109 14th St, Los Angeles, CA 90001" +304470,Wired Headphones,1,11.99,12/26/19 16:25,"912 Chestnut St, Atlanta, GA 30301" +304471,Bose SoundSport Headphones,1,99.99,12/10/19 18:58,"153 Cherry St, New York City, NY 10001" +304472,AAA Batteries (4-pack),1,2.99,12/18/19 21:26,"601 1st St, New York City, NY 10001" +304473,Lightning Charging Cable,1,14.95,12/31/19 00:16,"120 Cedar St, Seattle, WA 98101" +304474,AA Batteries (4-pack),1,3.84,12/04/19 06:58,"483 2nd St, Austin, TX 73301" +304475,USB-C Charging Cable,2,11.95,12/30/19 21:43,"993 6th St, Atlanta, GA 30301" +304476,Lightning Charging Cable,1,14.95,12/02/19 20:26,"636 4th St, Austin, TX 73301" +304477,Apple Airpods Headphones,1,150,12/06/19 21:19,"348 River St, Los Angeles, CA 90001" +304478,USB-C Charging Cable,1,11.95,12/02/19 20:21,"443 12th St, New York City, NY 10001" +304479,LG Washing Machine,1,600.0,12/15/19 20:31,"211 Dogwood St, Dallas, TX 75001" +304480,iPhone,1,700,12/09/19 07:59,"27 8th St, Los Angeles, CA 90001" +304481,ThinkPad Laptop,1,999.99,12/20/19 16:45,"951 Madison St, Portland, OR 97035" +304482,USB-C Charging Cable,1,11.95,12/30/19 11:47,"112 Madison St, Atlanta, GA 30301" +304483,Apple Airpods Headphones,1,150,12/10/19 12:50,"134 Church St, San Francisco, CA 94016" +304484,Wired Headphones,2,11.99,12/03/19 11:07,"524 13th St, Portland, OR 97035" +304485,Apple Airpods Headphones,1,150,12/11/19 22:11,"538 5th St, Seattle, WA 98101" +304486,Wired Headphones,1,11.99,12/04/19 19:26,"965 11th St, Seattle, WA 98101" +304487,Lightning Charging Cable,1,14.95,12/20/19 08:28,"62 Hill St, Portland, ME 04101" +304488,USB-C Charging Cable,1,11.95,12/21/19 17:26,"83 Adams St, San Francisco, CA 94016" +304489,AAA Batteries (4-pack),2,2.99,12/16/19 19:22,"186 10th St, Atlanta, GA 30301" +304490,AA Batteries (4-pack),1,3.84,12/13/19 12:52,"198 Walnut St, Atlanta, GA 30301" +304491,AA Batteries (4-pack),1,3.84,12/16/19 11:32,"167 West St, Portland, OR 97035" +304492,AAA Batteries (4-pack),3,2.99,12/14/19 11:49,"435 1st St, New York City, NY 10001" +304493,Vareebadd Phone,1,400,12/12/19 20:14,"245 11th St, San Francisco, CA 94016" +304494,USB-C Charging Cable,1,11.95,12/26/19 10:30,"795 Johnson St, New York City, NY 10001" +304495,Bose SoundSport Headphones,1,99.99,12/09/19 11:28,"667 Washington St, San Francisco, CA 94016" +304496,AAA Batteries (4-pack),2,2.99,12/02/19 14:16,"76 12th St, Dallas, TX 75001" +304497,Lightning Charging Cable,1,14.95,12/12/19 21:28,"53 Meadow St, Portland, OR 97035" +304498,27in FHD Monitor,1,149.99,12/19/19 19:15,"58 Park St, Portland, OR 97035" +304499,AA Batteries (4-pack),2,3.84,12/17/19 08:42,"257 Madison St, Atlanta, GA 30301" +304500,Lightning Charging Cable,1,14.95,12/19/19 07:14,"841 14th St, San Francisco, CA 94016" +304501,27in 4K Gaming Monitor,1,389.99,12/17/19 13:08,"812 Jackson St, Seattle, WA 98101" +304502,USB-C Charging Cable,1,11.95,12/27/19 18:02,"495 Hickory St, Seattle, WA 98101" +304503,Lightning Charging Cable,1,14.95,12/30/19 17:31,"258 Jackson St, San Francisco, CA 94016" +304504,AAA Batteries (4-pack),2,2.99,12/14/19 23:07,"395 Elm St, Los Angeles, CA 90001" +304505,ThinkPad Laptop,1,999.99,12/20/19 21:50,"591 Maple St, Los Angeles, CA 90001" +304506,Apple Airpods Headphones,1,150,12/25/19 19:24,"818 7th St, Boston, MA 02215" +304507,Lightning Charging Cable,1,14.95,12/11/19 08:44,"76 Sunset St, San Francisco, CA 94016" +304508,AA Batteries (4-pack),1,3.84,12/23/19 10:27,"167 South St, Portland, OR 97035" +304509,Google Phone,1,600,12/19/19 12:54,"632 4th St, Atlanta, GA 30301" +304510,Apple Airpods Headphones,1,150,12/03/19 00:35,"266 West St, San Francisco, CA 94016" +304511,AAA Batteries (4-pack),1,2.99,12/17/19 14:05,"331 Park St, San Francisco, CA 94016" +304512,Lightning Charging Cable,1,14.95,12/30/19 14:14,"861 5th St, Seattle, WA 98101" +304512,USB-C Charging Cable,1,11.95,12/30/19 14:14,"861 5th St, Seattle, WA 98101" +304513,Vareebadd Phone,1,400,12/26/19 09:49,"130 11th St, Seattle, WA 98101" +304514,AAA Batteries (4-pack),2,2.99,12/26/19 16:31,"906 9th St, New York City, NY 10001" +304515,iPhone,1,700,12/05/19 17:53,"289 Lakeview St, Portland, ME 04101" +304516,Lightning Charging Cable,1,14.95,12/15/19 21:30,"841 Main St, Dallas, TX 75001" +304517,AA Batteries (4-pack),1,3.84,12/13/19 15:17,"680 Jackson St, Portland, OR 97035" +304518,AAA Batteries (4-pack),1,2.99,12/30/19 17:27,"493 6th St, Boston, MA 02215" +304519,Lightning Charging Cable,1,14.95,12/03/19 21:17,"471 4th St, San Francisco, CA 94016" +304520,20in Monitor,1,109.99,12/17/19 19:09,"972 Jackson St, Austin, TX 73301" +304521,AAA Batteries (4-pack),1,2.99,12/16/19 19:09,"337 14th St, San Francisco, CA 94016" +304522,Wired Headphones,1,11.99,12/15/19 23:41,"669 12th St, Portland, OR 97035" +304523,ThinkPad Laptop,1,999.99,12/20/19 17:57,"120 Spruce St, New York City, NY 10001" +304523,27in FHD Monitor,1,149.99,12/20/19 17:57,"120 Spruce St, New York City, NY 10001" +304524,USB-C Charging Cable,1,11.95,12/21/19 21:51,"281 Pine St, San Francisco, CA 94016" +304525,Lightning Charging Cable,1,14.95,12/06/19 22:11,"632 South St, Los Angeles, CA 90001" +304526,AAA Batteries (4-pack),2,2.99,12/24/19 18:27,"499 Hill St, Dallas, TX 75001" +304527,Wired Headphones,2,11.99,12/27/19 14:02,"199 11th St, Atlanta, GA 30301" +304528,AAA Batteries (4-pack),1,2.99,12/19/19 11:52,"911 8th St, Portland, OR 97035" +304529,USB-C Charging Cable,1,11.95,12/05/19 15:09,"833 Sunset St, Boston, MA 02215" +304530,Google Phone,1,600,12/25/19 14:12,"758 Park St, Los Angeles, CA 90001" +304531,Macbook Pro Laptop,1,1700,12/24/19 18:44,"361 4th St, Austin, TX 73301" +304532,AA Batteries (4-pack),1,3.84,12/20/19 15:58,"255 Cedar St, Boston, MA 02215" +304533,27in FHD Monitor,1,149.99,12/05/19 16:21,"230 Jefferson St, Portland, OR 97035" +304534,AA Batteries (4-pack),1,3.84,12/09/19 08:23,"812 Church St, Seattle, WA 98101" +304535,Lightning Charging Cable,2,14.95,12/31/19 00:39,"451 Lakeview St, San Francisco, CA 94016" +304536,Lightning Charging Cable,1,14.95,12/08/19 23:46,"862 Jackson St, New York City, NY 10001" +304537,34in Ultrawide Monitor,1,379.99,12/28/19 17:29,"320 Cedar St, Los Angeles, CA 90001" +304538,Lightning Charging Cable,1,14.95,12/28/19 00:16,"719 Church St, Austin, TX 73301" +304539,USB-C Charging Cable,1,11.95,12/09/19 16:48,"963 Forest St, Atlanta, GA 30301" +304540,Bose SoundSport Headphones,1,99.99,12/12/19 18:35,"943 2nd St, Los Angeles, CA 90001" +304541,AAA Batteries (4-pack),1,2.99,12/10/19 11:25,"314 Highland St, Dallas, TX 75001" +304542,AAA Batteries (4-pack),1,2.99,12/31/19 12:17,"77 Hill St, New York City, NY 10001" +304543,AA Batteries (4-pack),1,3.84,12/02/19 14:52,"850 South St, Boston, MA 02215" +304544,USB-C Charging Cable,1,11.95,12/13/19 14:20,"430 Highland St, San Francisco, CA 94016" +304545,Bose SoundSport Headphones,1,99.99,12/11/19 00:51,"870 Church St, San Francisco, CA 94016" +304546,Lightning Charging Cable,1,14.95,12/07/19 21:11,"256 Willow St, Dallas, TX 75001" +304547,AAA Batteries (4-pack),1,2.99,12/17/19 13:32,"107 Jefferson St, Seattle, WA 98101" +304548,27in 4K Gaming Monitor,1,389.99,12/22/19 13:53,"19 Hickory St, Los Angeles, CA 90001" +304549,AAA Batteries (4-pack),1,2.99,12/30/19 23:26,"196 Maple St, New York City, NY 10001" +304550,Bose SoundSport Headphones,1,99.99,12/16/19 15:05,"527 Cedar St, Dallas, TX 75001" +304551,AA Batteries (4-pack),1,3.84,12/17/19 14:07,"819 4th St, San Francisco, CA 94016" +304552,USB-C Charging Cable,1,11.95,12/02/19 20:25,"792 Hill St, Los Angeles, CA 90001" +304552,Apple Airpods Headphones,1,150,12/02/19 20:25,"792 Hill St, Los Angeles, CA 90001" +304553,Bose SoundSport Headphones,1,99.99,12/28/19 16:02,"89 14th St, Portland, OR 97035" +304553,AA Batteries (4-pack),1,3.84,12/28/19 16:02,"89 14th St, Portland, OR 97035" +304554,iPhone,1,700,12/12/19 10:54,"277 5th St, San Francisco, CA 94016" +304555,Macbook Pro Laptop,1,1700,12/03/19 18:53,"358 Lincoln St, San Francisco, CA 94016" +304556,20in Monitor,1,109.99,12/02/19 19:27,"704 10th St, Atlanta, GA 30301" +304557,AA Batteries (4-pack),2,3.84,12/29/19 19:33,"551 7th St, Los Angeles, CA 90001" +304558,Wired Headphones,1,11.99,12/15/19 12:32,"732 Washington St, Atlanta, GA 30301" +304559,Lightning Charging Cable,1,14.95,12/21/19 14:07,"794 Madison St, Atlanta, GA 30301" +304560,iPhone,1,700,12/24/19 11:32,"490 14th St, Seattle, WA 98101" +304561,Flatscreen TV,1,300,12/24/19 23:13,"774 Center St, San Francisco, CA 94016" +304562,27in FHD Monitor,1,149.99,12/27/19 23:11,"643 9th St, Los Angeles, CA 90001" +304563,USB-C Charging Cable,1,11.95,12/21/19 13:52,"529 Washington St, Los Angeles, CA 90001" +304564,Lightning Charging Cable,1,14.95,12/19/19 21:47,"530 14th St, Atlanta, GA 30301" +304565,iPhone,1,700,12/27/19 21:37,"724 1st St, New York City, NY 10001" +304566,USB-C Charging Cable,1,11.95,12/27/19 18:23,"960 8th St, Portland, OR 97035" +304567,Lightning Charging Cable,1,14.95,12/26/19 22:47,"734 Madison St, Seattle, WA 98101" +304568,Bose SoundSport Headphones,1,99.99,12/21/19 21:34,"3 2nd St, Atlanta, GA 30301" +304569,Bose SoundSport Headphones,1,99.99,12/06/19 11:37,"199 Jefferson St, Los Angeles, CA 90001" +304570,Lightning Charging Cable,1,14.95,12/16/19 09:17,"289 Elm St, Los Angeles, CA 90001" +304571,Wired Headphones,2,11.99,12/29/19 19:18,"614 Lake St, Los Angeles, CA 90001" +304572,AAA Batteries (4-pack),1,2.99,12/02/19 13:14,"297 7th St, San Francisco, CA 94016" +304573,34in Ultrawide Monitor,1,379.99,12/30/19 19:35,"611 14th St, New York City, NY 10001" +304574,Lightning Charging Cable,1,14.95,12/09/19 15:04,"495 Adams St, Austin, TX 73301" +304575,AA Batteries (4-pack),1,3.84,12/24/19 22:18,"331 Dogwood St, Dallas, TX 75001" +304576,Bose SoundSport Headphones,1,99.99,12/08/19 16:51,"741 Maple St, Boston, MA 02215" +304577,27in FHD Monitor,1,149.99,12/02/19 15:55,"839 7th St, San Francisco, CA 94016" +304578,Bose SoundSport Headphones,1,99.99,12/19/19 11:04,"600 Hill St, San Francisco, CA 94016" +304579,Wired Headphones,1,11.99,12/21/19 09:56,"183 Dogwood St, San Francisco, CA 94016" +304580,iPhone,1,700,12/10/19 08:17,"714 1st St, San Francisco, CA 94016" +304581,AA Batteries (4-pack),1,3.84,12/01/19 10:43,"389 Forest St, San Francisco, CA 94016" +304582,AAA Batteries (4-pack),2,2.99,12/04/19 18:55,"71 13th St, San Francisco, CA 94016" +304583,Wired Headphones,1,11.99,12/28/19 21:17,"365 West St, Atlanta, GA 30301" +304584,Lightning Charging Cable,1,14.95,12/27/19 00:10,"697 Spruce St, San Francisco, CA 94016" +304585,Apple Airpods Headphones,1,150,12/22/19 17:28,"429 Madison St, San Francisco, CA 94016" +304586,Bose SoundSport Headphones,1,99.99,12/09/19 10:28,"184 6th St, Boston, MA 02215" +304587,ThinkPad Laptop,1,999.99,12/19/19 19:46,"185 Hickory St, San Francisco, CA 94016" +304588,27in FHD Monitor,1,149.99,12/14/19 18:48,"253 South St, San Francisco, CA 94016" +304589,Wired Headphones,1,11.99,12/20/19 22:00,"250 13th St, Portland, OR 97035" +304589,iPhone,1,700,12/20/19 22:00,"250 13th St, Portland, OR 97035" +304590,34in Ultrawide Monitor,1,379.99,12/20/19 14:03,"795 Hickory St, Portland, ME 04101" +304591,AAA Batteries (4-pack),1,2.99,12/05/19 19:28,"767 Hill St, Los Angeles, CA 90001" +304592,Lightning Charging Cable,1,14.95,12/14/19 19:47,"567 Elm St, San Francisco, CA 94016" +304593,Wired Headphones,1,11.99,12/23/19 18:06,"707 Sunset St, San Francisco, CA 94016" +304593,Lightning Charging Cable,1,14.95,12/23/19 18:06,"707 Sunset St, San Francisco, CA 94016" +304594,Wired Headphones,1,11.99,12/08/19 21:04,"617 Center St, New York City, NY 10001" +304595,Apple Airpods Headphones,1,150,12/11/19 17:01,"584 Cherry St, New York City, NY 10001" +304596,Apple Airpods Headphones,1,150,12/28/19 20:08,"79 4th St, San Francisco, CA 94016" +304597,Bose SoundSport Headphones,1,99.99,12/19/19 10:33,"211 Cherry St, Portland, OR 97035" +304598,Apple Airpods Headphones,1,150,12/12/19 13:16,"625 4th St, San Francisco, CA 94016" +304599,Bose SoundSport Headphones,1,99.99,12/22/19 00:45,"359 Lakeview St, Dallas, TX 75001" +304600,Lightning Charging Cable,1,14.95,12/26/19 16:13,"886 12th St, Boston, MA 02215" +304601,Apple Airpods Headphones,1,150,12/26/19 20:29,"93 Jefferson St, Dallas, TX 75001" +304602,Lightning Charging Cable,1,14.95,12/04/19 22:36,"136 13th St, Atlanta, GA 30301" +304603,Bose SoundSport Headphones,1,99.99,12/22/19 22:32,"309 Center St, San Francisco, CA 94016" +304604,Lightning Charging Cable,1,14.95,12/03/19 11:58,"758 Dogwood St, Seattle, WA 98101" +304605,AA Batteries (4-pack),1,3.84,12/05/19 08:46,"394 Washington St, Boston, MA 02215" +304606,27in 4K Gaming Monitor,1,389.99,12/06/19 01:23,"765 Jackson St, Austin, TX 73301" +304607,AAA Batteries (4-pack),1,2.99,12/20/19 20:44,"166 Park St, San Francisco, CA 94016" +304608,Apple Airpods Headphones,1,150,12/23/19 23:24,"646 Adams St, San Francisco, CA 94016" +304609,Flatscreen TV,1,300,12/05/19 19:17,"597 North St, Dallas, TX 75001" +304610,AAA Batteries (4-pack),1,2.99,12/25/19 19:48,"492 Spruce St, Atlanta, GA 30301" +304611,USB-C Charging Cable,1,11.95,12/26/19 11:00,"321 9th St, Boston, MA 02215" +304612,USB-C Charging Cable,1,11.95,12/25/19 20:40,"91 2nd St, Atlanta, GA 30301" +304613,AA Batteries (4-pack),2,3.84,12/05/19 11:43,"983 Madison St, Austin, TX 73301" +304614,34in Ultrawide Monitor,1,379.99,12/20/19 10:10,"246 14th St, Atlanta, GA 30301" +304615,iPhone,1,700,12/15/19 10:01,"218 5th St, Seattle, WA 98101" +304616,AAA Batteries (4-pack),1,2.99,12/05/19 11:24,"43 River St, Boston, MA 02215" +304617,Macbook Pro Laptop,1,1700,12/10/19 09:45,"125 Pine St, San Francisco, CA 94016" +304618,27in FHD Monitor,1,149.99,12/11/19 11:30,"84 Willow St, Dallas, TX 75001" +304619,Flatscreen TV,1,300,12/22/19 00:22,"700 12th St, Boston, MA 02215" +304620,Bose SoundSport Headphones,1,99.99,12/06/19 22:10,"542 Johnson St, Dallas, TX 75001" +304621,Wired Headphones,1,11.99,12/10/19 12:58,"880 Center St, San Francisco, CA 94016" +304622,AA Batteries (4-pack),1,3.84,12/14/19 11:49,"388 Willow St, San Francisco, CA 94016" +304623,USB-C Charging Cable,1,11.95,12/17/19 17:28,"939 Meadow St, Seattle, WA 98101" +304624,iPhone,1,700,12/12/19 20:15,"998 7th St, San Francisco, CA 94016" +304625,ThinkPad Laptop,1,999.99,12/29/19 17:07,"431 Adams St, San Francisco, CA 94016" +304626,AA Batteries (4-pack),1,3.84,12/27/19 12:13,"758 Dogwood St, Portland, OR 97035" +304627,Bose SoundSport Headphones,1,99.99,12/26/19 09:34,"144 Church St, San Francisco, CA 94016" +304628,Flatscreen TV,1,300,12/06/19 17:37,"717 Willow St, Los Angeles, CA 90001" +304629,Vareebadd Phone,1,400,12/26/19 23:42,"343 Cedar St, San Francisco, CA 94016" +304630,27in FHD Monitor,1,149.99,12/24/19 15:48,"114 Willow St, San Francisco, CA 94016" +304631,Wired Headphones,1,11.99,12/07/19 10:53,"269 10th St, New York City, NY 10001" +304632,27in 4K Gaming Monitor,1,389.99,12/03/19 23:09,"107 Lake St, Boston, MA 02215" +304633,Macbook Pro Laptop,1,1700,12/23/19 15:49,"140 Main St, Dallas, TX 75001" +,,,,, +304634,Bose SoundSport Headphones,1,99.99,12/17/19 19:24,"238 6th St, San Francisco, CA 94016" +304635,Lightning Charging Cable,1,14.95,12/20/19 18:41,"247 Sunset St, San Francisco, CA 94016" +304636,Wired Headphones,1,11.99,12/09/19 20:54,"576 Lake St, Dallas, TX 75001" +304637,Google Phone,1,600,12/19/19 00:02,"405 9th St, New York City, NY 10001" +304638,AA Batteries (4-pack),1,3.84,12/01/19 19:14,"975 Washington St, Portland, OR 97035" +304639,AA Batteries (4-pack),3,3.84,12/24/19 21:15,"505 Sunset St, San Francisco, CA 94016" +304640,27in 4K Gaming Monitor,1,389.99,12/02/19 12:00,"798 West St, New York City, NY 10001" +304640,Google Phone,1,600,12/02/19 12:00,"798 West St, New York City, NY 10001" +304641,Flatscreen TV,1,300,12/26/19 14:34,"115 Walnut St, Boston, MA 02215" +304642,AAA Batteries (4-pack),1,2.99,12/20/19 10:16,"346 11th St, San Francisco, CA 94016" +304643,Apple Airpods Headphones,1,150,12/15/19 09:00,"728 Center St, Los Angeles, CA 90001" +304644,Bose SoundSport Headphones,2,99.99,12/01/19 14:20,"624 Forest St, San Francisco, CA 94016" +304645,Vareebadd Phone,1,400,12/02/19 23:34,"144 Elm St, Dallas, TX 75001" +304646,Vareebadd Phone,1,400,12/11/19 16:58,"306 11th St, New York City, NY 10001" +304646,Bose SoundSport Headphones,1,99.99,12/11/19 16:58,"306 11th St, New York City, NY 10001" +304646,Wired Headphones,1,11.99,12/11/19 16:58,"306 11th St, New York City, NY 10001" +304647,34in Ultrawide Monitor,1,379.99,12/16/19 12:43,"904 Lincoln St, San Francisco, CA 94016" +304648,Wired Headphones,1,11.99,12/20/19 11:37,"224 11th St, Dallas, TX 75001" +304649,AA Batteries (4-pack),2,3.84,12/15/19 19:15,"321 10th St, Seattle, WA 98101" +304650,AAA Batteries (4-pack),3,2.99,12/10/19 20:02,"911 Dogwood St, Boston, MA 02215" +304651,27in 4K Gaming Monitor,1,389.99,12/09/19 01:32,"883 West St, San Francisco, CA 94016" +304652,USB-C Charging Cable,1,11.95,12/08/19 08:54,"410 Jackson St, Boston, MA 02215" +304653,USB-C Charging Cable,1,11.95,12/18/19 01:07,"863 Pine St, San Francisco, CA 94016" +304654,Macbook Pro Laptop,1,1700,12/18/19 17:50,"858 Madison St, Atlanta, GA 30301" +304655,Apple Airpods Headphones,1,150,12/22/19 11:45,"646 Lakeview St, San Francisco, CA 94016" +304656,27in 4K Gaming Monitor,1,389.99,12/17/19 17:36,"614 Washington St, San Francisco, CA 94016" +304657,Bose SoundSport Headphones,1,99.99,12/11/19 14:22,"990 5th St, San Francisco, CA 94016" +304658,27in 4K Gaming Monitor,1,389.99,12/20/19 17:45,"729 14th St, Atlanta, GA 30301" +304659,AAA Batteries (4-pack),4,2.99,12/31/19 18:52,"434 Chestnut St, Seattle, WA 98101" +304660,Apple Airpods Headphones,1,150,12/15/19 19:57,"560 Meadow St, San Francisco, CA 94016" +304661,iPhone,1,700,12/29/19 10:40,"94 10th St, Portland, OR 97035" +304661,Wired Headphones,1,11.99,12/29/19 10:40,"94 10th St, Portland, OR 97035" +304662,Apple Airpods Headphones,1,150,12/19/19 22:17,"30 Chestnut St, Seattle, WA 98101" +304663,Apple Airpods Headphones,1,150,12/09/19 14:26,"548 Adams St, San Francisco, CA 94016" +304663,AA Batteries (4-pack),1,3.84,12/09/19 14:26,"548 Adams St, San Francisco, CA 94016" +304664,iPhone,1,700,12/06/19 16:24,"265 Lake St, Boston, MA 02215" +304665,USB-C Charging Cable,1,11.95,12/11/19 18:01,"38 Johnson St, Los Angeles, CA 90001" +304666,AAA Batteries (4-pack),1,2.99,12/14/19 18:14,"349 Ridge St, Boston, MA 02215" +304667,Flatscreen TV,1,300,12/02/19 22:25,"702 Meadow St, New York City, NY 10001" +304668,AA Batteries (4-pack),5,3.84,12/25/19 18:48,"252 Meadow St, Los Angeles, CA 90001" +304669,Lightning Charging Cable,1,14.95,12/07/19 13:36,"693 South St, Los Angeles, CA 90001" +304670,USB-C Charging Cable,2,11.95,12/19/19 20:32,"730 Forest St, San Francisco, CA 94016" +304671,AA Batteries (4-pack),2,3.84,12/08/19 13:45,"650 Washington St, New York City, NY 10001" +304672,USB-C Charging Cable,1,11.95,12/09/19 15:43,"870 6th St, Austin, TX 73301" +304673,AAA Batteries (4-pack),1,2.99,12/07/19 16:57,"502 Washington St, Portland, OR 97035" +304674,27in FHD Monitor,1,149.99,12/31/19 18:37,"308 11th St, San Francisco, CA 94016" +304675,AAA Batteries (4-pack),1,2.99,12/22/19 13:17,"45 11th St, San Francisco, CA 94016" +304676,27in FHD Monitor,1,149.99,12/19/19 09:26,"70 Main St, San Francisco, CA 94016" +304677,27in FHD Monitor,1,149.99,12/15/19 12:06,"775 Forest St, New York City, NY 10001" +304678,Apple Airpods Headphones,1,150,12/04/19 14:49,"178 Sunset St, San Francisco, CA 94016" +304679,Apple Airpods Headphones,1,150,12/01/19 17:21,"614 Jackson St, New York City, NY 10001" +304680,USB-C Charging Cable,2,11.95,12/15/19 08:34,"431 Willow St, San Francisco, CA 94016" +304681,Lightning Charging Cable,1,14.95,12/19/19 10:53,"845 Sunset St, Los Angeles, CA 90001" +304682,AAA Batteries (4-pack),1,2.99,12/01/19 12:37,"937 Maple St, Atlanta, GA 30301" +304683,Wired Headphones,1,11.99,12/12/19 19:34,"499 Hill St, San Francisco, CA 94016" +304684,Bose SoundSport Headphones,1,99.99,12/01/19 14:22,"208 2nd St, Seattle, WA 98101" +304685,Apple Airpods Headphones,1,150,12/21/19 12:25,"825 Lincoln St, Seattle, WA 98101" +304686,Apple Airpods Headphones,1,150,12/24/19 13:00,"29 North St, Atlanta, GA 30301" +304687,Lightning Charging Cable,1,14.95,12/02/19 14:24,"559 Meadow St, San Francisco, CA 94016" +304688,Lightning Charging Cable,1,14.95,12/05/19 09:53,"802 Cherry St, New York City, NY 10001" +304689,AAA Batteries (4-pack),1,2.99,12/16/19 14:04,"138 Spruce St, Atlanta, GA 30301" +304690,USB-C Charging Cable,1,11.95,12/13/19 23:13,"379 Lincoln St, Los Angeles, CA 90001" +304691,20in Monitor,1,109.99,12/18/19 19:53,"134 14th St, Seattle, WA 98101" +304692,Apple Airpods Headphones,1,150,12/11/19 22:13,"573 Johnson St, Seattle, WA 98101" +304693,20in Monitor,1,109.99,12/05/19 14:34,"877 Jefferson St, San Francisco, CA 94016" +304694,Google Phone,1,600,12/09/19 13:00,"783 9th St, Dallas, TX 75001" +304694,Wired Headphones,2,11.99,12/09/19 13:00,"783 9th St, Dallas, TX 75001" +304695,AA Batteries (4-pack),1,3.84,12/15/19 20:39,"290 9th St, Los Angeles, CA 90001" +304696,AA Batteries (4-pack),1,3.84,12/18/19 21:13,"986 Cedar St, Dallas, TX 75001" +304697,AA Batteries (4-pack),3,3.84,12/24/19 11:17,"486 Adams St, New York City, NY 10001" +304698,Apple Airpods Headphones,1,150,12/20/19 10:44,"935 North St, San Francisco, CA 94016" +304699,Lightning Charging Cable,1,14.95,12/16/19 12:24,"515 Spruce St, Seattle, WA 98101" +304700,Apple Airpods Headphones,1,150,12/07/19 14:12,"193 8th St, New York City, NY 10001" +304701,AAA Batteries (4-pack),1,2.99,12/19/19 15:25,"862 Madison St, Dallas, TX 75001" +304702,iPhone,1,700,12/17/19 18:12,"65 Forest St, Boston, MA 02215" +304703,USB-C Charging Cable,1,11.95,12/15/19 20:33,"227 Dogwood St, San Francisco, CA 94016" +304704,Lightning Charging Cable,1,14.95,12/10/19 13:50,"407 Main St, Los Angeles, CA 90001" +304705,AA Batteries (4-pack),1,3.84,12/27/19 11:50,"119 Adams St, Los Angeles, CA 90001" +304706,USB-C Charging Cable,1,11.95,12/02/19 07:59,"48 2nd St, San Francisco, CA 94016" +304707,Flatscreen TV,1,300,12/18/19 20:02,"946 Dogwood St, Austin, TX 73301" +304708,Lightning Charging Cable,1,14.95,12/02/19 19:43,"732 Center St, Los Angeles, CA 90001" +304709,Lightning Charging Cable,1,14.95,12/03/19 11:43,"96 Meadow St, Dallas, TX 75001" +304710,iPhone,1,700,12/14/19 16:45,"941 13th St, Los Angeles, CA 90001" +304711,Lightning Charging Cable,1,14.95,12/06/19 20:37,"233 1st St, Los Angeles, CA 90001" +304712,AAA Batteries (4-pack),1,2.99,12/24/19 20:47,"99 Church St, New York City, NY 10001" +304713,Lightning Charging Cable,1,14.95,12/04/19 07:10,"979 5th St, Atlanta, GA 30301" +304714,iPhone,1,700,12/25/19 18:36,"85 Cherry St, Austin, TX 73301" +304715,AAA Batteries (4-pack),3,2.99,12/05/19 21:01,"464 Hill St, Atlanta, GA 30301" +304716,USB-C Charging Cable,1,11.95,12/26/19 14:14,"496 Cedar St, Seattle, WA 98101" +304717,AA Batteries (4-pack),2,3.84,12/02/19 20:55,"500 9th St, Atlanta, GA 30301" +304718,Wired Headphones,1,11.99,12/07/19 22:48,"558 Lake St, Los Angeles, CA 90001" +304719,USB-C Charging Cable,1,11.95,12/02/19 14:17,"134 14th St, Dallas, TX 75001" +304720,34in Ultrawide Monitor,1,379.99,12/31/19 13:10,"507 14th St, New York City, NY 10001" +304721,AAA Batteries (4-pack),2,2.99,12/24/19 17:00,"644 Dogwood St, Dallas, TX 75001" +304722,27in FHD Monitor,1,149.99,12/30/19 10:35,"829 Walnut St, Los Angeles, CA 90001" +304723,Google Phone,1,600,12/23/19 09:43,"682 13th St, Portland, OR 97035" +304724,AAA Batteries (4-pack),1,2.99,12/11/19 14:29,"479 9th St, Los Angeles, CA 90001" +304725,USB-C Charging Cable,1,11.95,12/21/19 21:51,"116 13th St, Seattle, WA 98101" +304725,Wired Headphones,1,11.99,12/21/19 21:51,"116 13th St, Seattle, WA 98101" +304726,AA Batteries (4-pack),3,3.84,12/23/19 14:32,"631 Hickory St, Atlanta, GA 30301" +304727,27in 4K Gaming Monitor,1,389.99,12/13/19 00:59,"879 Ridge St, Portland, OR 97035" +304728,USB-C Charging Cable,1,11.95,12/01/19 09:50,"323 14th St, San Francisco, CA 94016" +304729,27in 4K Gaming Monitor,1,389.99,12/27/19 12:15,"247 14th St, San Francisco, CA 94016" +304730,Flatscreen TV,1,300,12/17/19 12:04,"449 Lakeview St, Boston, MA 02215" +304731,Bose SoundSport Headphones,1,99.99,12/13/19 10:46,"462 North St, San Francisco, CA 94016" +304732,AAA Batteries (4-pack),2,2.99,12/21/19 08:21,"449 Church St, San Francisco, CA 94016" +304733,LG Washing Machine,1,600.0,12/31/19 12:38,"161 West St, New York City, NY 10001" +304734,AA Batteries (4-pack),2,3.84,12/01/19 21:17,"562 1st St, Seattle, WA 98101" +304735,Wired Headphones,1,11.99,12/23/19 12:47,"704 Lake St, Boston, MA 02215" +304736,Apple Airpods Headphones,1,150,12/26/19 12:49,"137 Hill St, Seattle, WA 98101" +304737,AAA Batteries (4-pack),2,2.99,12/28/19 12:14,"627 Highland St, Seattle, WA 98101" +304738,USB-C Charging Cable,1,11.95,12/29/19 09:41,"289 North St, Dallas, TX 75001" +304739,27in FHD Monitor,1,149.99,12/10/19 20:55,"938 4th St, San Francisco, CA 94016" +304740,iPhone,1,700,12/16/19 08:11,"275 5th St, San Francisco, CA 94016" +304740,Lightning Charging Cable,1,14.95,12/16/19 08:11,"275 5th St, San Francisco, CA 94016" +304741,iPhone,1,700,12/02/19 21:10,"401 Forest St, San Francisco, CA 94016" +304742,Google Phone,1,600,12/26/19 09:14,"860 Jackson St, Atlanta, GA 30301" +304743,ThinkPad Laptop,1,999.99,12/04/19 15:28,"101 Spruce St, San Francisco, CA 94016" +304744,iPhone,1,700,12/24/19 10:29,"360 South St, Atlanta, GA 30301" +304745,USB-C Charging Cable,1,11.95,12/11/19 10:12,"277 Lake St, Boston, MA 02215" +304746,AA Batteries (4-pack),3,3.84,12/05/19 19:14,"239 Johnson St, Austin, TX 73301" +304747,27in FHD Monitor,1,149.99,12/12/19 14:31,"7 Wilson St, San Francisco, CA 94016" +304748,Lightning Charging Cable,1,14.95,12/10/19 15:56,"628 Dogwood St, San Francisco, CA 94016" +304749,Macbook Pro Laptop,1,1700,12/12/19 19:33,"882 Madison St, San Francisco, CA 94016" +304750,Wired Headphones,1,11.99,12/11/19 19:49,"701 Spruce St, Los Angeles, CA 90001" +304751,AAA Batteries (4-pack),1,2.99,12/03/19 13:37,"753 Walnut St, Dallas, TX 75001" +304752,USB-C Charging Cable,1,11.95,12/22/19 18:26,"907 Washington St, San Francisco, CA 94016" +304753,AAA Batteries (4-pack),1,2.99,12/31/19 15:45,"348 Spruce St, Atlanta, GA 30301" +304754,USB-C Charging Cable,1,11.95,12/03/19 13:27,"11 Jefferson St, San Francisco, CA 94016" +304755,LG Dryer,1,600.0,12/01/19 19:07,"652 6th St, Austin, TX 73301" +304756,AA Batteries (4-pack),1,3.84,12/09/19 15:44,"823 Washington St, San Francisco, CA 94016" +304757,AAA Batteries (4-pack),1,2.99,12/05/19 13:42,"51 Park St, Los Angeles, CA 90001" +304758,27in 4K Gaming Monitor,1,389.99,12/14/19 19:25,"230 Washington St, Los Angeles, CA 90001" +304759,Wired Headphones,1,11.99,12/16/19 13:53,"991 Lincoln St, Seattle, WA 98101" +304760,27in FHD Monitor,1,149.99,12/30/19 17:57,"839 Chestnut St, San Francisco, CA 94016" +304761,AAA Batteries (4-pack),1,2.99,12/08/19 14:06,"363 North St, Dallas, TX 75001" +304762,AAA Batteries (4-pack),2,2.99,12/15/19 12:02,"710 Church St, New York City, NY 10001" +304763,27in 4K Gaming Monitor,1,389.99,12/30/19 16:41,"379 Cherry St, Dallas, TX 75001" +304764,Macbook Pro Laptop,1,1700,12/24/19 05:47,"931 Center St, Atlanta, GA 30301" +304765,Flatscreen TV,1,300,12/02/19 21:59,"146 Willow St, Boston, MA 02215" +304766,Lightning Charging Cable,1,14.95,12/21/19 19:52,"665 Forest St, New York City, NY 10001" +304767,Wired Headphones,2,11.99,12/10/19 21:53,"732 1st St, Los Angeles, CA 90001" +304768,USB-C Charging Cable,1,11.95,12/15/19 11:31,"100 2nd St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +304769,Wired Headphones,1,11.99,12/04/19 15:41,"583 Johnson St, San Francisco, CA 94016" +304770,USB-C Charging Cable,2,11.95,12/25/19 16:25,"103 Dogwood St, Atlanta, GA 30301" +304771,Flatscreen TV,1,300,12/09/19 11:21,"209 Center St, New York City, NY 10001" +304772,USB-C Charging Cable,1,11.95,12/01/19 13:01,"38 12th St, Boston, MA 02215" +304773,Lightning Charging Cable,1,14.95,12/02/19 17:36,"997 6th St, San Francisco, CA 94016" +304774,Wired Headphones,1,11.99,12/18/19 19:49,"849 Main St, Portland, ME 04101" +304775,Bose SoundSport Headphones,1,99.99,12/11/19 12:48,"651 Sunset St, Atlanta, GA 30301" +304775,AA Batteries (4-pack),1,3.84,12/11/19 12:48,"651 Sunset St, Atlanta, GA 30301" +304776,AA Batteries (4-pack),1,3.84,12/20/19 21:09,"52 Lincoln St, Dallas, TX 75001" +304777,Wired Headphones,1,11.99,12/21/19 15:56,"360 14th St, Los Angeles, CA 90001" +304778,Apple Airpods Headphones,1,150,12/30/19 01:23,"961 13th St, Los Angeles, CA 90001" +304779,Vareebadd Phone,1,400,12/08/19 11:28,"534 11th St, Los Angeles, CA 90001" +304779,USB-C Charging Cable,1,11.95,12/08/19 11:28,"534 11th St, Los Angeles, CA 90001" +304779,Wired Headphones,1,11.99,12/08/19 11:28,"534 11th St, Los Angeles, CA 90001" +304779,Lightning Charging Cable,1,14.95,12/08/19 11:28,"534 11th St, Los Angeles, CA 90001" +304780,Lightning Charging Cable,1,14.95,12/13/19 12:20,"863 11th St, San Francisco, CA 94016" +304781,Lightning Charging Cable,1,14.95,12/10/19 19:38,"260 Jackson St, Los Angeles, CA 90001" +304782,USB-C Charging Cable,1,11.95,12/10/19 20:41,"173 7th St, San Francisco, CA 94016" +304783,20in Monitor,1,109.99,12/10/19 19:11,"645 Johnson St, Atlanta, GA 30301" +304784,Apple Airpods Headphones,1,150,12/07/19 11:09,"608 Meadow St, San Francisco, CA 94016" +304785,AAA Batteries (4-pack),1,2.99,12/10/19 11:56,"872 Johnson St, Dallas, TX 75001" +304786,Wired Headphones,1,11.99,12/20/19 10:43,"531 Madison St, New York City, NY 10001" +304787,27in FHD Monitor,1,149.99,12/11/19 08:22,"987 9th St, Dallas, TX 75001" +304788,Bose SoundSport Headphones,1,99.99,12/06/19 11:24,"287 Johnson St, San Francisco, CA 94016" +304789,27in FHD Monitor,1,149.99,12/28/19 16:37,"720 Jackson St, Atlanta, GA 30301" +304790,Wired Headphones,1,11.99,12/17/19 21:49,"498 Jefferson St, Atlanta, GA 30301" +304791,Wired Headphones,2,11.99,12/23/19 01:47,"616 Forest St, Los Angeles, CA 90001" +304792,Bose SoundSport Headphones,1,99.99,12/26/19 15:47,"387 Adams St, Los Angeles, CA 90001" +304793,USB-C Charging Cable,1,11.95,12/22/19 12:50,"614 West St, San Francisco, CA 94016" +304794,27in FHD Monitor,1,149.99,12/08/19 22:46,"705 Cedar St, San Francisco, CA 94016" +304795,AA Batteries (4-pack),1,3.84,12/13/19 12:16,"346 Highland St, Atlanta, GA 30301" +304796,Flatscreen TV,1,300,12/03/19 20:09,"480 Willow St, Austin, TX 73301" +304797,AA Batteries (4-pack),1,3.84,12/31/19 15:22,"259 Main St, Boston, MA 02215" +304798,Bose SoundSport Headphones,1,99.99,12/27/19 02:37,"128 Sunset St, Austin, TX 73301" +304799,AAA Batteries (4-pack),1,2.99,12/15/19 17:16,"581 Sunset St, Boston, MA 02215" +304800,Flatscreen TV,1,300,12/17/19 15:11,"977 Wilson St, San Francisco, CA 94016" +304801,AA Batteries (4-pack),1,3.84,12/31/19 18:41,"171 Wilson St, New York City, NY 10001" +304802,27in FHD Monitor,1,149.99,12/02/19 08:29,"374 14th St, San Francisco, CA 94016" +304803,Apple Airpods Headphones,1,150,12/26/19 11:15,"150 Ridge St, Boston, MA 02215" +304804,AA Batteries (4-pack),2,3.84,12/01/19 15:48,"363 Spruce St, San Francisco, CA 94016" +304805,Macbook Pro Laptop,1,1700,12/14/19 22:05,"295 West St, Dallas, TX 75001" +304806,AA Batteries (4-pack),1,3.84,12/01/19 19:22,"829 Ridge St, Los Angeles, CA 90001" +304807,AAA Batteries (4-pack),1,2.99,12/04/19 21:03,"510 Chestnut St, Los Angeles, CA 90001" +304808,27in 4K Gaming Monitor,1,389.99,12/22/19 10:26,"926 2nd St, Seattle, WA 98101" +304809,Apple Airpods Headphones,1,150,12/14/19 22:55,"388 Ridge St, San Francisco, CA 94016" +304810,USB-C Charging Cable,1,11.95,12/20/19 20:45,"970 Lake St, Seattle, WA 98101" +304811,Wired Headphones,1,11.99,12/31/19 17:49,"11 Church St, Atlanta, GA 30301" +304812,Wired Headphones,1,11.99,12/09/19 18:53,"198 6th St, Boston, MA 02215" +304813,Wired Headphones,1,11.99,12/07/19 18:26,"795 8th St, San Francisco, CA 94016" +304814,27in FHD Monitor,1,149.99,12/21/19 18:11,"92 Willow St, Dallas, TX 75001" +304815,Lightning Charging Cable,1,14.95,12/03/19 16:09,"211 Highland St, San Francisco, CA 94016" +304816,AAA Batteries (4-pack),1,2.99,12/06/19 21:56,"598 Maple St, Austin, TX 73301" +304817,Wired Headphones,1,11.99,12/30/19 13:20,"874 12th St, Boston, MA 02215" +304818,Bose SoundSport Headphones,1,99.99,12/13/19 14:36,"668 Wilson St, San Francisco, CA 94016" +304819,iPhone,1,700,12/05/19 21:10,"487 Center St, New York City, NY 10001" +304819,Bose SoundSport Headphones,1,99.99,12/05/19 21:10,"487 Center St, New York City, NY 10001" +304820,AAA Batteries (4-pack),2,2.99,12/12/19 18:22,"748 Pine St, San Francisco, CA 94016" +304821,Vareebadd Phone,1,400,12/20/19 19:41,"957 Wilson St, San Francisco, CA 94016" +304821,USB-C Charging Cable,1,11.95,12/20/19 19:41,"957 Wilson St, San Francisco, CA 94016" +304822,Bose SoundSport Headphones,1,99.99,12/10/19 15:13,"433 1st St, Austin, TX 73301" +304823,AA Batteries (4-pack),1,3.84,12/18/19 11:55,"746 West St, San Francisco, CA 94016" +304824,Lightning Charging Cable,1,14.95,12/12/19 10:10,"630 Chestnut St, San Francisco, CA 94016" +304825,Wired Headphones,1,11.99,12/15/19 19:16,"562 West St, New York City, NY 10001" +304825,Lightning Charging Cable,2,14.95,12/15/19 19:16,"562 West St, New York City, NY 10001" +304826,AA Batteries (4-pack),1,3.84,12/17/19 15:15,"631 Lakeview St, Los Angeles, CA 90001" +304827,Apple Airpods Headphones,1,150,12/09/19 22:47,"985 1st St, Atlanta, GA 30301" +304828,Lightning Charging Cable,1,14.95,12/07/19 12:33,"901 7th St, New York City, NY 10001" +304829,AAA Batteries (4-pack),2,2.99,12/07/19 13:54,"818 Maple St, New York City, NY 10001" +304830,Macbook Pro Laptop,1,1700,12/23/19 21:19,"350 14th St, Los Angeles, CA 90001" +304831,AAA Batteries (4-pack),1,2.99,12/10/19 07:27,"253 Park St, Portland, OR 97035" +304832,AA Batteries (4-pack),2,3.84,12/13/19 15:28,"741 1st St, San Francisco, CA 94016" +304833,AAA Batteries (4-pack),1,2.99,12/23/19 08:53,"731 Madison St, San Francisco, CA 94016" +304834,Apple Airpods Headphones,1,150,12/17/19 19:56,"25 Madison St, San Francisco, CA 94016" +304835,Wired Headphones,1,11.99,12/14/19 22:02,"565 10th St, Los Angeles, CA 90001" +304836,USB-C Charging Cable,2,11.95,12/08/19 23:37,"434 Center St, Boston, MA 02215" +304837,Wired Headphones,1,11.99,12/18/19 21:52,"768 Willow St, Boston, MA 02215" +304838,Flatscreen TV,1,300,12/24/19 02:14,"152 10th St, Boston, MA 02215" +304839,Lightning Charging Cable,1,14.95,12/17/19 10:57,"407 5th St, Dallas, TX 75001" +304840,Wired Headphones,1,11.99,12/15/19 18:17,"426 Church St, San Francisco, CA 94016" +304841,Flatscreen TV,1,300,12/22/19 18:07,"383 Willow St, San Francisco, CA 94016" +304842,AA Batteries (4-pack),1,3.84,12/15/19 13:25,"157 14th St, Los Angeles, CA 90001" +304843,Lightning Charging Cable,1,14.95,12/24/19 09:47,"236 Church St, Los Angeles, CA 90001" +304844,AA Batteries (4-pack),1,3.84,12/05/19 12:04,"563 6th St, Boston, MA 02215" +304845,Wired Headphones,2,11.99,12/05/19 17:46,"443 Adams St, New York City, NY 10001" +304846,Lightning Charging Cable,1,14.95,12/03/19 20:23,"150 8th St, San Francisco, CA 94016" +304847,Lightning Charging Cable,1,14.95,12/11/19 12:09,"809 Center St, Los Angeles, CA 90001" +304848,AAA Batteries (4-pack),4,2.99,12/08/19 20:47,"802 14th St, Portland, OR 97035" +304849,Wired Headphones,1,11.99,12/26/19 19:28,"688 2nd St, San Francisco, CA 94016" +304850,USB-C Charging Cable,1,11.95,12/19/19 11:28,"578 4th St, Dallas, TX 75001" +304851,20in Monitor,1,109.99,12/26/19 17:04,"172 South St, Austin, TX 73301" +304852,Wired Headphones,1,11.99,12/07/19 20:08,"276 Jefferson St, Boston, MA 02215" +304853,AA Batteries (4-pack),1,3.84,12/21/19 12:47,"322 5th St, Seattle, WA 98101" +304853,Wired Headphones,1,11.99,12/21/19 12:47,"322 5th St, Seattle, WA 98101" +304854,AA Batteries (4-pack),1,3.84,12/21/19 13:06,"570 4th St, Boston, MA 02215" +304855,ThinkPad Laptop,1,999.99,12/23/19 12:37,"177 1st St, Los Angeles, CA 90001" +304856,Bose SoundSport Headphones,1,99.99,12/25/19 10:59,"325 Lincoln St, Atlanta, GA 30301" +304857,AAA Batteries (4-pack),1,2.99,12/02/19 17:13,"515 13th St, New York City, NY 10001" +304858,USB-C Charging Cable,1,11.95,12/22/19 13:18,"294 Chestnut St, San Francisco, CA 94016" +304859,Apple Airpods Headphones,1,150,12/07/19 10:19,"655 Adams St, Los Angeles, CA 90001" +304860,LG Washing Machine,1,600.0,12/01/19 21:52,"834 Hickory St, Portland, OR 97035" +304861,AA Batteries (4-pack),1,3.84,12/14/19 00:03,"788 Adams St, Los Angeles, CA 90001" +304862,AAA Batteries (4-pack),1,2.99,12/31/19 06:10,"5 Washington St, San Francisco, CA 94016" +304863,USB-C Charging Cable,1,11.95,12/30/19 14:16,"429 Pine St, Seattle, WA 98101" +304864,34in Ultrawide Monitor,1,379.99,12/28/19 22:52,"75 11th St, New York City, NY 10001" +304865,AA Batteries (4-pack),1,3.84,12/21/19 17:39,"142 River St, Boston, MA 02215" +304866,Google Phone,1,600,12/07/19 14:44,"76 Adams St, Boston, MA 02215" +304867,27in 4K Gaming Monitor,1,389.99,12/03/19 13:10,"481 Park St, San Francisco, CA 94016" +304868,AAA Batteries (4-pack),1,2.99,12/14/19 13:52,"601 10th St, San Francisco, CA 94016" +304869,Lightning Charging Cable,1,14.95,12/04/19 11:13,"521 Hickory St, Dallas, TX 75001" +304870,Apple Airpods Headphones,1,150,12/30/19 17:16,"912 Hill St, San Francisco, CA 94016" +304871,27in FHD Monitor,1,149.99,12/26/19 13:14,"905 Ridge St, San Francisco, CA 94016" +304872,Macbook Pro Laptop,1,1700,12/09/19 01:11,"577 10th St, New York City, NY 10001" +304873,Flatscreen TV,1,300,12/17/19 23:18,"374 Elm St, Portland, OR 97035" +304874,ThinkPad Laptop,1,999.99,12/16/19 19:27,"991 6th St, New York City, NY 10001" +304875,Wired Headphones,1,11.99,12/21/19 19:11,"223 10th St, Los Angeles, CA 90001" +304876,27in 4K Gaming Monitor,1,389.99,12/25/19 20:19,"355 Center St, San Francisco, CA 94016" +304877,USB-C Charging Cable,1,11.95,12/21/19 10:23,"922 Jefferson St, Boston, MA 02215" +304878,20in Monitor,1,109.99,12/12/19 13:49,"657 Spruce St, New York City, NY 10001" +304879,27in 4K Gaming Monitor,1,389.99,12/10/19 07:46,"418 Hickory St, San Francisco, CA 94016" +304880,USB-C Charging Cable,1,11.95,12/24/19 20:58,"342 9th St, Los Angeles, CA 90001" +304881,AAA Batteries (4-pack),1,2.99,12/21/19 16:32,"882 Center St, Los Angeles, CA 90001" +304882,Apple Airpods Headphones,1,150,12/18/19 09:16,"216 Jackson St, Los Angeles, CA 90001" +304883,ThinkPad Laptop,1,999.99,12/22/19 16:01,"817 Sunset St, San Francisco, CA 94016" +304884,Lightning Charging Cable,1,14.95,12/19/19 20:59,"280 South St, New York City, NY 10001" +304885,AAA Batteries (4-pack),2,2.99,12/30/19 14:56,"430 Church St, Austin, TX 73301" +304886,AAA Batteries (4-pack),4,2.99,12/10/19 23:22,"752 Hill St, San Francisco, CA 94016" +304887,USB-C Charging Cable,1,11.95,12/16/19 16:25,"542 8th St, Los Angeles, CA 90001" +304888,27in 4K Gaming Monitor,1,389.99,12/19/19 12:03,"567 Johnson St, San Francisco, CA 94016" +304889,USB-C Charging Cable,1,11.95,12/22/19 05:00,"760 Jackson St, Los Angeles, CA 90001" +304890,ThinkPad Laptop,1,999.99,12/03/19 06:01,"487 Park St, Boston, MA 02215" +304891,AAA Batteries (4-pack),1,2.99,12/28/19 00:25,"280 12th St, Austin, TX 73301" +304892,LG Washing Machine,1,600.0,12/25/19 17:13,"458 Maple St, Dallas, TX 75001" +304893,Lightning Charging Cable,1,14.95,12/31/19 08:56,"489 10th St, Portland, ME 04101" +304894,20in Monitor,1,109.99,12/01/19 19:51,"44 Wilson St, New York City, NY 10001" +304895,Apple Airpods Headphones,1,150,12/13/19 18:41,"134 Hill St, Los Angeles, CA 90001" +304896,Wired Headphones,1,11.99,12/23/19 19:19,"905 5th St, Boston, MA 02215" +304897,AA Batteries (4-pack),1,3.84,12/05/19 18:26,"214 Main St, Dallas, TX 75001" +304898,AA Batteries (4-pack),3,3.84,12/23/19 15:17,"768 Dogwood St, San Francisco, CA 94016" +304899,AA Batteries (4-pack),3,3.84,12/02/19 20:35,"919 4th St, San Francisco, CA 94016" +304900,USB-C Charging Cable,2,11.95,12/31/19 07:55,"768 West St, New York City, NY 10001" +304901,27in FHD Monitor,1,149.99,12/03/19 12:20,"133 Walnut St, Austin, TX 73301" +304902,Wired Headphones,1,11.99,12/20/19 16:49,"36 4th St, San Francisco, CA 94016" +304903,Wired Headphones,1,11.99,12/17/19 14:07,"366 5th St, Los Angeles, CA 90001" +,,,,, +304904,AAA Batteries (4-pack),3,2.99,12/03/19 08:07,"391 7th St, Dallas, TX 75001" +304905,Google Phone,1,600,12/07/19 09:20,"351 Jackson St, New York City, NY 10001" +304905,Wired Headphones,2,11.99,12/07/19 09:20,"351 Jackson St, New York City, NY 10001" +304906,AAA Batteries (4-pack),1,2.99,12/14/19 13:55,"450 Center St, Atlanta, GA 30301" +304907,Bose SoundSport Headphones,1,99.99,12/03/19 06:57,"955 Maple St, Portland, OR 97035" +304908,Apple Airpods Headphones,1,150,12/05/19 18:30,"545 Willow St, Boston, MA 02215" +304909,Bose SoundSport Headphones,1,99.99,12/05/19 16:59,"246 Washington St, Los Angeles, CA 90001" +304910,Wired Headphones,1,11.99,12/16/19 20:56,"528 Highland St, Dallas, TX 75001" +304911,Apple Airpods Headphones,1,150,12/03/19 10:44,"792 Church St, Austin, TX 73301" +304912,Lightning Charging Cable,1,14.95,12/12/19 19:24,"19 South St, Portland, OR 97035" +304913,LG Washing Machine,1,600.0,12/12/19 20:39,"430 7th St, Dallas, TX 75001" +304914,Flatscreen TV,1,300,12/20/19 17:05,"681 Hill St, Seattle, WA 98101" +304915,iPhone,1,700,12/03/19 17:13,"645 Dogwood St, New York City, NY 10001" +304916,Wired Headphones,1,11.99,12/05/19 10:35,"376 2nd St, Dallas, TX 75001" +304917,Wired Headphones,1,11.99,12/18/19 20:24,"137 8th St, Boston, MA 02215" +304918,AAA Batteries (4-pack),3,2.99,12/30/19 21:44,"673 Meadow St, San Francisco, CA 94016" +304919,USB-C Charging Cable,1,11.95,12/01/19 10:55,"455 Dogwood St, San Francisco, CA 94016" +304920,34in Ultrawide Monitor,1,379.99,12/14/19 19:26,"891 South St, Seattle, WA 98101" +304921,Flatscreen TV,1,300,12/02/19 08:03,"832 Ridge St, New York City, NY 10001" +304922,AA Batteries (4-pack),2,3.84,12/25/19 07:38,"188 Willow St, Dallas, TX 75001" +304923,Apple Airpods Headphones,1,150,12/12/19 22:09,"267 Dogwood St, Seattle, WA 98101" +304924,iPhone,1,700,12/02/19 13:52,"779 Wilson St, Boston, MA 02215" +304925,Wired Headphones,1,11.99,12/01/19 20:30,"291 11th St, San Francisco, CA 94016" +304926,Apple Airpods Headphones,1,150,12/09/19 01:06,"987 Sunset St, Boston, MA 02215" +304927,Vareebadd Phone,1,400,12/25/19 21:35,"192 Park St, Atlanta, GA 30301" +304928,27in 4K Gaming Monitor,1,389.99,12/25/19 16:48,"130 Cedar St, New York City, NY 10001" +304929,iPhone,1,700,12/15/19 23:41,"588 Hill St, Atlanta, GA 30301" +304930,27in FHD Monitor,1,149.99,12/20/19 15:08,"911 Spruce St, San Francisco, CA 94016" +304931,AA Batteries (4-pack),1,3.84,12/22/19 23:47,"767 Forest St, New York City, NY 10001" +304932,AAA Batteries (4-pack),1,2.99,12/24/19 08:28,"264 North St, New York City, NY 10001" +304933,AA Batteries (4-pack),2,3.84,12/08/19 17:14,"121 Washington St, San Francisco, CA 94016" +304934,Apple Airpods Headphones,1,150,12/31/19 12:07,"528 Highland St, New York City, NY 10001" +304935,AA Batteries (4-pack),1,3.84,12/04/19 23:39,"929 Willow St, Austin, TX 73301" +304936,AA Batteries (4-pack),1,3.84,12/25/19 17:02,"440 4th St, New York City, NY 10001" +304937,Lightning Charging Cable,1,14.95,12/28/19 11:17,"920 Sunset St, Los Angeles, CA 90001" +304938,Apple Airpods Headphones,1,150,12/19/19 21:57,"951 11th St, Los Angeles, CA 90001" +304939,27in 4K Gaming Monitor,1,389.99,12/25/19 13:37,"985 Sunset St, New York City, NY 10001" +304940,Apple Airpods Headphones,1,150,12/24/19 21:25,"525 Elm St, New York City, NY 10001" +304941,Bose SoundSport Headphones,1,99.99,12/10/19 17:49,"981 Adams St, Boston, MA 02215" +304942,AAA Batteries (4-pack),1,2.99,12/18/19 22:03,"416 West St, Seattle, WA 98101" +304943,AAA Batteries (4-pack),1,2.99,12/01/19 19:00,"302 2nd St, Los Angeles, CA 90001" +304944,AA Batteries (4-pack),1,3.84,12/12/19 12:57,"823 14th St, Los Angeles, CA 90001" +304945,AAA Batteries (4-pack),2,2.99,12/25/19 16:45,"111 Church St, New York City, NY 10001" +304946,34in Ultrawide Monitor,1,379.99,12/12/19 16:41,"913 Forest St, Los Angeles, CA 90001" +304947,Bose SoundSport Headphones,1,99.99,12/19/19 23:52,"286 Hill St, Atlanta, GA 30301" +304948,ThinkPad Laptop,1,999.99,12/14/19 22:38,"899 Ridge St, San Francisco, CA 94016" +304949,27in 4K Gaming Monitor,1,389.99,12/22/19 13:43,"435 Johnson St, New York City, NY 10001" +304950,Apple Airpods Headphones,1,150,12/16/19 09:11,"89 Chestnut St, Seattle, WA 98101" +304951,ThinkPad Laptop,1,999.99,12/20/19 20:18,"260 8th St, Atlanta, GA 30301" +304952,Lightning Charging Cable,1,14.95,12/15/19 08:38,"853 Adams St, Dallas, TX 75001" +304953,AAA Batteries (4-pack),2,2.99,12/01/19 21:40,"269 Park St, San Francisco, CA 94016" +304954,27in 4K Gaming Monitor,1,389.99,12/04/19 18:08,"400 Hickory St, New York City, NY 10001" +304955,AA Batteries (4-pack),3,3.84,12/18/19 21:41,"950 Hill St, San Francisco, CA 94016" +304956,20in Monitor,1,109.99,12/04/19 10:19,"251 Chestnut St, Seattle, WA 98101" +304957,27in 4K Gaming Monitor,1,389.99,12/02/19 10:59,"279 9th St, New York City, NY 10001" +304958,Wired Headphones,1,11.99,12/24/19 17:33,"584 West St, San Francisco, CA 94016" +304959,AA Batteries (4-pack),2,3.84,12/04/19 19:27,"656 Washington St, Los Angeles, CA 90001" +304960,AA Batteries (4-pack),1,3.84,12/23/19 19:02,"22 11th St, Boston, MA 02215" +304961,Wired Headphones,2,11.99,12/31/19 15:16,"6 Jackson St, New York City, NY 10001" +304962,Apple Airpods Headphones,1,150,12/12/19 02:13,"568 South St, Dallas, TX 75001" +304963,LG Washing Machine,1,600.0,12/16/19 08:48,"142 14th St, Austin, TX 73301" +304964,Flatscreen TV,1,300,12/30/19 14:29,"227 Elm St, San Francisco, CA 94016" +304965,Macbook Pro Laptop,1,1700,12/24/19 16:32,"216 Chestnut St, Austin, TX 73301" +304966,AAA Batteries (4-pack),1,2.99,12/24/19 12:08,"724 12th St, New York City, NY 10001" +304967,USB-C Charging Cable,1,11.95,12/27/19 15:11,"928 Ridge St, Los Angeles, CA 90001" +304968,Bose SoundSport Headphones,1,99.99,12/20/19 17:39,"894 Elm St, New York City, NY 10001" +304969,AA Batteries (4-pack),2,3.84,12/16/19 12:53,"798 Lincoln St, San Francisco, CA 94016" +304970,Google Phone,1,600,12/28/19 20:21,"625 Meadow St, San Francisco, CA 94016" +304971,AAA Batteries (4-pack),1,2.99,12/02/19 19:08,"915 8th St, Los Angeles, CA 90001" +304972,AA Batteries (4-pack),1,3.84,12/10/19 18:14,"923 12th St, San Francisco, CA 94016" +304973,USB-C Charging Cable,1,11.95,12/18/19 02:42,"105 6th St, New York City, NY 10001" +304974,Wired Headphones,1,11.99,12/02/19 07:35,"360 Church St, Los Angeles, CA 90001" +304975,Bose SoundSport Headphones,1,99.99,12/14/19 10:23,"737 Jefferson St, Portland, OR 97035" +304976,AAA Batteries (4-pack),2,2.99,12/26/19 09:41,"376 Jackson St, San Francisco, CA 94016" +304976,AAA Batteries (4-pack),1,2.99,12/26/19 09:41,"376 Jackson St, San Francisco, CA 94016" +304977,Bose SoundSport Headphones,1,99.99,12/13/19 10:20,"374 4th St, Los Angeles, CA 90001" +304978,Bose SoundSport Headphones,1,99.99,12/10/19 20:13,"909 Center St, Dallas, TX 75001" +304979,Apple Airpods Headphones,1,150,12/10/19 07:37,"810 River St, New York City, NY 10001" +304980,Macbook Pro Laptop,1,1700,12/12/19 10:08,"912 West St, New York City, NY 10001" +304981,Macbook Pro Laptop,1,1700,12/13/19 10:53,"945 Jefferson St, Seattle, WA 98101" +304981,Lightning Charging Cable,1,14.95,12/13/19 10:53,"945 Jefferson St, Seattle, WA 98101" +304982,Apple Airpods Headphones,1,150,12/03/19 17:19,"627 Lake St, Los Angeles, CA 90001" +304983,20in Monitor,1,109.99,12/12/19 09:42,"67 5th St, Atlanta, GA 30301" +304984,Apple Airpods Headphones,1,150,12/13/19 18:18,"702 Washington St, New York City, NY 10001" +304985,Macbook Pro Laptop,1,1700,12/13/19 10:42,"394 Sunset St, Los Angeles, CA 90001" +304986,Apple Airpods Headphones,1,150,12/31/19 15:20,"154 Jefferson St, San Francisco, CA 94016" +304987,USB-C Charging Cable,1,11.95,12/26/19 20:35,"802 9th St, Los Angeles, CA 90001" +304988,AAA Batteries (4-pack),1,2.99,12/17/19 17:27,"187 Highland St, Boston, MA 02215" +304989,iPhone,1,700,12/25/19 18:43,"180 13th St, Boston, MA 02215" +304990,AA Batteries (4-pack),2,3.84,12/04/19 18:14,"871 Jefferson St, Boston, MA 02215" +304991,Lightning Charging Cable,1,14.95,12/30/19 22:54,"257 Pine St, Atlanta, GA 30301" +304992,Apple Airpods Headphones,1,150,12/30/19 00:13,"274 Chestnut St, San Francisco, CA 94016" +304993,Wired Headphones,2,11.99,12/15/19 00:36,"454 Cherry St, Boston, MA 02215" +304994,AAA Batteries (4-pack),1,2.99,12/15/19 17:10,"401 Highland St, San Francisco, CA 94016" +304995,AA Batteries (4-pack),2,3.84,12/05/19 12:38,"692 Spruce St, San Francisco, CA 94016" +304996,20in Monitor,1,109.99,12/24/19 12:33,"859 Park St, Los Angeles, CA 90001" +304997,USB-C Charging Cable,1,11.95,12/03/19 16:24,"766 North St, Boston, MA 02215" +304998,Wired Headphones,1,11.99,12/26/19 15:37,"192 South St, Portland, OR 97035" +304999,USB-C Charging Cable,1,11.95,12/01/19 11:58,"280 7th St, Seattle, WA 98101" +305000,Flatscreen TV,1,300,12/04/19 12:25,"744 Highland St, San Francisco, CA 94016" +305001,Apple Airpods Headphones,1,150,12/03/19 07:20,"209 Hill St, San Francisco, CA 94016" +305002,AA Batteries (4-pack),1,3.84,12/03/19 01:45,"197 Washington St, Atlanta, GA 30301" +305003,AA Batteries (4-pack),1,3.84,12/12/19 20:08,"835 Forest St, Los Angeles, CA 90001" +305004,AA Batteries (4-pack),1,3.84,12/08/19 09:14,"115 8th St, New York City, NY 10001" +305005,Lightning Charging Cable,1,14.95,12/30/19 19:55,"372 13th St, Dallas, TX 75001" +305006,Wired Headphones,1,11.99,12/22/19 17:14,"360 Hill St, Los Angeles, CA 90001" +305007,AA Batteries (4-pack),2,3.84,12/16/19 18:45,"708 Dogwood St, Boston, MA 02215" +305008,AA Batteries (4-pack),3,3.84,12/17/19 18:43,"671 8th St, San Francisco, CA 94016" +305009,AAA Batteries (4-pack),1,2.99,12/06/19 13:59,"980 Pine St, Los Angeles, CA 90001" +305010,AAA Batteries (4-pack),2,2.99,12/24/19 10:07,"266 8th St, Atlanta, GA 30301" +305011,ThinkPad Laptop,1,999.99,12/24/19 16:13,"61 Maple St, Los Angeles, CA 90001" +305012,27in 4K Gaming Monitor,1,389.99,12/08/19 08:58,"770 Jefferson St, San Francisco, CA 94016" +305013,iPhone,1,700,12/28/19 05:34,"76 Adams St, Boston, MA 02215" +305014,Flatscreen TV,1,300,12/13/19 07:53,"738 6th St, San Francisco, CA 94016" +305015,AA Batteries (4-pack),1,3.84,12/31/19 12:52,"679 Pine St, San Francisco, CA 94016" +305016,Apple Airpods Headphones,1,150,12/29/19 19:58,"501 West St, San Francisco, CA 94016" +305017,Apple Airpods Headphones,1,150,12/03/19 10:41,"942 13th St, Los Angeles, CA 90001" +305018,AA Batteries (4-pack),1,3.84,12/27/19 12:15,"267 12th St, Los Angeles, CA 90001" +305019,AAA Batteries (4-pack),1,2.99,12/21/19 19:11,"763 Wilson St, San Francisco, CA 94016" +305020,Apple Airpods Headphones,1,150,12/01/19 16:46,"424 Chestnut St, San Francisco, CA 94016" +305021,Wired Headphones,1,11.99,12/19/19 11:54,"913 Walnut St, San Francisco, CA 94016" +305022,Google Phone,1,600,12/30/19 10:02,"990 Maple St, Dallas, TX 75001" +305022,USB-C Charging Cable,1,11.95,12/30/19 10:02,"990 Maple St, Dallas, TX 75001" +305023,USB-C Charging Cable,1,11.95,12/27/19 18:00,"846 10th St, New York City, NY 10001" +305024,AAA Batteries (4-pack),2,2.99,12/06/19 16:04,"471 4th St, Atlanta, GA 30301" +305025,Google Phone,1,600,12/25/19 13:36,"909 5th St, San Francisco, CA 94016" +305026,ThinkPad Laptop,1,999.99,12/10/19 15:31,"469 Elm St, Atlanta, GA 30301" +305027,AA Batteries (4-pack),2,3.84,12/27/19 14:03,"582 Cedar St, Dallas, TX 75001" +305028,USB-C Charging Cable,1,11.95,12/22/19 00:49,"180 North St, New York City, NY 10001" +305029,34in Ultrawide Monitor,1,379.99,12/03/19 17:41,"254 Johnson St, Seattle, WA 98101" +305030,34in Ultrawide Monitor,1,379.99,12/25/19 00:23,"205 Meadow St, Seattle, WA 98101" +305031,Flatscreen TV,1,300,12/16/19 13:17,"998 Cherry St, New York City, NY 10001" +305032,Apple Airpods Headphones,1,150,12/02/19 02:20,"983 11th St, Los Angeles, CA 90001" +305033,AAA Batteries (4-pack),1,2.99,12/05/19 20:22,"746 Park St, San Francisco, CA 94016" +305034,34in Ultrawide Monitor,1,379.99,12/20/19 15:34,"537 Highland St, San Francisco, CA 94016" +305035,AA Batteries (4-pack),1,3.84,12/14/19 21:15,"481 8th St, Atlanta, GA 30301" +305036,AA Batteries (4-pack),1,3.84,12/29/19 09:45,"673 8th St, San Francisco, CA 94016" +305037,Wired Headphones,1,11.99,12/25/19 15:55,"411 12th St, San Francisco, CA 94016" +305038,AA Batteries (4-pack),1,3.84,12/11/19 15:49,"35 Cherry St, Los Angeles, CA 90001" +305039,Lightning Charging Cable,1,14.95,12/25/19 12:38,"692 Elm St, New York City, NY 10001" +305040,Google Phone,1,600,12/02/19 03:12,"686 Spruce St, Boston, MA 02215" +305041,USB-C Charging Cable,1,11.95,12/14/19 13:35,"374 Washington St, Los Angeles, CA 90001" +305042,AA Batteries (4-pack),1,3.84,12/13/19 20:33,"839 Chestnut St, San Francisco, CA 94016" +305043,AA Batteries (4-pack),1,3.84,12/04/19 23:30,"134 Maple St, Dallas, TX 75001" +305044,AAA Batteries (4-pack),4,2.99,12/28/19 13:11,"372 Adams St, Los Angeles, CA 90001" +305045,USB-C Charging Cable,1,11.95,12/23/19 16:42,"262 Forest St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +305046,20in Monitor,1,109.99,12/01/19 18:12,"875 11th St, Seattle, WA 98101" +305047,Apple Airpods Headphones,1,150,12/26/19 15:02,"835 North St, Los Angeles, CA 90001" +305048,Bose SoundSport Headphones,1,99.99,12/08/19 12:08,"244 12th St, San Francisco, CA 94016" +305049,27in 4K Gaming Monitor,1,389.99,12/03/19 14:58,"376 Center St, San Francisco, CA 94016" +305050,Vareebadd Phone,1,400,12/08/19 12:31,"57 Meadow St, San Francisco, CA 94016" +305051,AA Batteries (4-pack),2,3.84,12/08/19 06:13,"797 Ridge St, Austin, TX 73301" +305052,USB-C Charging Cable,1,11.95,12/02/19 18:01,"381 Jefferson St, San Francisco, CA 94016" +305053,27in 4K Gaming Monitor,1,389.99,12/02/19 19:08,"948 Lakeview St, Los Angeles, CA 90001" +305054,27in FHD Monitor,1,149.99,12/28/19 17:33,"40 1st St, San Francisco, CA 94016" +305055,iPhone,1,700,12/07/19 09:22,"705 Jefferson St, San Francisco, CA 94016" +305056,34in Ultrawide Monitor,1,379.99,12/26/19 16:37,"786 Main St, Austin, TX 73301" +305057,AA Batteries (4-pack),1,3.84,12/31/19 18:59,"716 7th St, San Francisco, CA 94016" +305058,AAA Batteries (4-pack),1,2.99,12/16/19 14:41,"150 14th St, San Francisco, CA 94016" +305059,USB-C Charging Cable,1,11.95,12/01/19 13:56,"570 Highland St, Portland, OR 97035" +305060,ThinkPad Laptop,1,999.99,12/17/19 16:15,"263 Forest St, Dallas, TX 75001" +305061,Apple Airpods Headphones,2,150,12/24/19 20:38,"347 7th St, New York City, NY 10001" +305062,27in FHD Monitor,1,149.99,12/05/19 19:34,"937 Cedar St, Atlanta, GA 30301" +305063,Macbook Pro Laptop,1,1700,12/03/19 17:07,"6 Elm St, San Francisco, CA 94016" +305064,ThinkPad Laptop,1,999.99,12/24/19 18:07,"195 Willow St, San Francisco, CA 94016" +305065,iPhone,1,700,12/26/19 12:44,"954 Hill St, Los Angeles, CA 90001" +305065,Lightning Charging Cable,1,14.95,12/26/19 12:44,"954 Hill St, Los Angeles, CA 90001" +305066,Wired Headphones,1,11.99,12/24/19 13:28,"467 Hickory St, New York City, NY 10001" +305067,Vareebadd Phone,1,400,12/25/19 18:53,"720 12th St, Portland, ME 04101" +305068,Lightning Charging Cable,1,14.95,12/28/19 12:27,"259 Highland St, San Francisco, CA 94016" +305069,Macbook Pro Laptop,1,1700,12/17/19 15:56,"807 Cedar St, New York City, NY 10001" +305070,AAA Batteries (4-pack),1,2.99,12/30/19 15:04,"172 Madison St, New York City, NY 10001" +305071,27in 4K Gaming Monitor,1,389.99,12/06/19 11:09,"150 7th St, Atlanta, GA 30301" +305072,AAA Batteries (4-pack),2,2.99,12/05/19 22:21,"529 Meadow St, Atlanta, GA 30301" +305073,AA Batteries (4-pack),2,3.84,12/19/19 12:39,"521 Elm St, Portland, OR 97035" +305074,AAA Batteries (4-pack),1,2.99,12/24/19 19:03,"60 Walnut St, Austin, TX 73301" +305075,Apple Airpods Headphones,1,150,12/25/19 15:04,"87 Adams St, Seattle, WA 98101" +305076,27in FHD Monitor,1,149.99,12/08/19 12:23,"740 14th St, Seattle, WA 98101" +305077,27in 4K Gaming Monitor,1,389.99,12/24/19 23:56,"630 Forest St, San Francisco, CA 94016" +305078,Wired Headphones,1,11.99,12/19/19 11:47,"611 14th St, Portland, OR 97035" +305079,AAA Batteries (4-pack),1,2.99,12/21/19 20:39,"725 Lincoln St, New York City, NY 10001" +305080,Vareebadd Phone,1,400,12/21/19 21:22,"214 Willow St, Seattle, WA 98101" +305081,AAA Batteries (4-pack),1,2.99,12/27/19 21:38,"528 Walnut St, San Francisco, CA 94016" +305082,Lightning Charging Cable,1,14.95,12/26/19 22:04,"994 Spruce St, Los Angeles, CA 90001" +305083,AA Batteries (4-pack),1,3.84,12/17/19 09:02,"322 Ridge St, Boston, MA 02215" +305084,AAA Batteries (4-pack),1,2.99,12/28/19 15:38,"627 Lincoln St, Austin, TX 73301" +305085,Apple Airpods Headphones,1,150,12/04/19 11:35,"172 River St, Los Angeles, CA 90001" +305086,AAA Batteries (4-pack),2,2.99,12/12/19 12:01,"87 Madison St, Boston, MA 02215" +305087,AA Batteries (4-pack),1,3.84,12/19/19 20:03,"163 Lincoln St, New York City, NY 10001" +305088,AA Batteries (4-pack),2,3.84,12/11/19 05:39,"863 Lakeview St, New York City, NY 10001" +305089,34in Ultrawide Monitor,1,379.99,12/17/19 10:17,"594 Lake St, Atlanta, GA 30301" +305090,USB-C Charging Cable,1,11.95,12/01/19 15:16,"332 Meadow St, Austin, TX 73301" +305091,Lightning Charging Cable,1,14.95,12/01/19 09:18,"991 Hickory St, New York City, NY 10001" +305092,Vareebadd Phone,1,400,12/16/19 21:52,"739 12th St, Dallas, TX 75001" +305093,Apple Airpods Headphones,1,150,12/03/19 21:16,"202 Center St, San Francisco, CA 94016" +305094,USB-C Charging Cable,2,11.95,12/20/19 00:04,"102 Willow St, Los Angeles, CA 90001" +305095,34in Ultrawide Monitor,1,379.99,12/01/19 20:51,"306 Cherry St, San Francisco, CA 94016" +305096,Apple Airpods Headphones,1,150,12/02/19 04:05,"377 Sunset St, San Francisco, CA 94016" +305097,AAA Batteries (4-pack),1,2.99,12/07/19 06:52,"79 Washington St, Boston, MA 02215" +305098,Lightning Charging Cable,1,14.95,12/23/19 14:39,"249 1st St, Los Angeles, CA 90001" +305099,27in FHD Monitor,2,149.99,12/15/19 19:16,"269 Willow St, Boston, MA 02215" +305100,Lightning Charging Cable,1,14.95,12/26/19 17:12,"466 Elm St, Boston, MA 02215" +305101,Bose SoundSport Headphones,1,99.99,12/16/19 12:12,"537 Meadow St, Atlanta, GA 30301" +305102,USB-C Charging Cable,1,11.95,12/12/19 12:54,"335 Johnson St, Los Angeles, CA 90001" +305103,Apple Airpods Headphones,1,150,12/02/19 17:09,"989 Walnut St, Portland, OR 97035" +305104,Wired Headphones,1,11.99,12/21/19 08:59,"197 Hill St, San Francisco, CA 94016" +305105,27in FHD Monitor,1,149.99,12/22/19 09:43,"60 West St, New York City, NY 10001" +305106,USB-C Charging Cable,1,11.95,12/19/19 09:52,"193 South St, New York City, NY 10001" +305107,Apple Airpods Headphones,1,150,12/24/19 12:56,"484 North St, Portland, ME 04101" +305108,Bose SoundSport Headphones,1,99.99,12/27/19 16:26,"3 1st St, San Francisco, CA 94016" +305109,Wired Headphones,1,11.99,12/06/19 05:30,"258 Park St, Dallas, TX 75001" +305110,AAA Batteries (4-pack),1,2.99,12/15/19 14:25,"440 Wilson St, Boston, MA 02215" +305111,Bose SoundSport Headphones,1,99.99,12/31/19 01:38,"518 Maple St, San Francisco, CA 94016" +305112,AA Batteries (4-pack),1,3.84,12/22/19 17:26,"877 Hickory St, San Francisco, CA 94016" +305113,20in Monitor,1,109.99,12/18/19 20:34,"912 Dogwood St, San Francisco, CA 94016" +305114,AA Batteries (4-pack),1,3.84,12/04/19 10:16,"407 Cherry St, New York City, NY 10001" +305115,Bose SoundSport Headphones,1,99.99,12/24/19 21:03,"469 Madison St, Los Angeles, CA 90001" +305116,27in FHD Monitor,1,149.99,12/18/19 15:28,"676 Hill St, Boston, MA 02215" +305117,AAA Batteries (4-pack),1,2.99,12/15/19 06:48,"868 Willow St, Los Angeles, CA 90001" +305118,Bose SoundSport Headphones,1,99.99,12/15/19 16:00,"281 West St, Boston, MA 02215" +305119,AA Batteries (4-pack),1,3.84,12/06/19 18:08,"328 14th St, Boston, MA 02215" +305120,AAA Batteries (4-pack),1,2.99,12/13/19 21:32,"810 Pine St, Seattle, WA 98101" +305121,ThinkPad Laptop,1,999.99,12/03/19 10:04,"544 Dogwood St, Dallas, TX 75001" +305122,Apple Airpods Headphones,1,150,12/16/19 16:39,"11 West St, New York City, NY 10001" +305123,Wired Headphones,1,11.99,12/22/19 21:13,"510 Spruce St, San Francisco, CA 94016" +305124,iPhone,1,700,12/26/19 16:59,"126 Lake St, San Francisco, CA 94016" +305125,Apple Airpods Headphones,1,150,12/21/19 17:03,"972 Madison St, Portland, OR 97035" +305126,Flatscreen TV,1,300,12/14/19 20:48,"225 Jefferson St, Boston, MA 02215" +305127,AAA Batteries (4-pack),1,2.99,12/02/19 21:16,"372 Lincoln St, Los Angeles, CA 90001" +305128,AAA Batteries (4-pack),3,2.99,12/04/19 19:33,"342 5th St, San Francisco, CA 94016" +305129,Google Phone,1,600,12/07/19 18:30,"61 Hickory St, Los Angeles, CA 90001" +305130,27in FHD Monitor,1,149.99,12/26/19 14:11,"161 Lincoln St, Los Angeles, CA 90001" +305131,Macbook Pro Laptop,1,1700,12/15/19 16:03,"7 Cedar St, Los Angeles, CA 90001" +305132,Lightning Charging Cable,1,14.95,12/05/19 09:17,"328 6th St, Los Angeles, CA 90001" +305133,Lightning Charging Cable,1,14.95,12/25/19 22:29,"364 Johnson St, San Francisco, CA 94016" +305134,Bose SoundSport Headphones,1,99.99,12/09/19 10:29,"279 13th St, Atlanta, GA 30301" +305135,Lightning Charging Cable,1,14.95,12/25/19 12:56,"23 Meadow St, Austin, TX 73301" +305136,AA Batteries (4-pack),1,3.84,12/20/19 12:03,"318 4th St, Atlanta, GA 30301" +305137,AAA Batteries (4-pack),1,2.99,12/21/19 06:59,"598 Wilson St, Los Angeles, CA 90001" +305138,Bose SoundSport Headphones,1,99.99,12/04/19 17:12,"391 South St, Los Angeles, CA 90001" +305139,Bose SoundSport Headphones,1,99.99,12/31/19 18:09,"691 13th St, San Francisco, CA 94016" +305140,Apple Airpods Headphones,1,150,12/13/19 15:41,"169 Adams St, Los Angeles, CA 90001" +305141,AA Batteries (4-pack),4,3.84,12/13/19 00:26,"425 North St, San Francisco, CA 94016" +305142,USB-C Charging Cable,1,11.95,12/30/19 11:15,"509 Hickory St, San Francisco, CA 94016" +305143,Apple Airpods Headphones,1,150,12/09/19 10:27,"994 South St, San Francisco, CA 94016" +305144,Lightning Charging Cable,1,14.95,12/12/19 17:13,"339 Washington St, Los Angeles, CA 90001" +305145,AA Batteries (4-pack),1,3.84,12/08/19 18:21,"22 Ridge St, Seattle, WA 98101" +305146,AAA Batteries (4-pack),1,2.99,12/04/19 12:10,"719 13th St, New York City, NY 10001" +305147,Bose SoundSport Headphones,1,99.99,12/09/19 21:53,"432 Chestnut St, Los Angeles, CA 90001" +305148,Google Phone,1,600,12/24/19 12:11,"5 Madison St, Dallas, TX 75001" +305148,USB-C Charging Cable,1,11.95,12/24/19 12:11,"5 Madison St, Dallas, TX 75001" +305149,Wired Headphones,1,11.99,12/24/19 15:33,"775 11th St, San Francisco, CA 94016" +305150,AAA Batteries (4-pack),1,2.99,12/10/19 11:18,"921 Jackson St, Atlanta, GA 30301" +305151,USB-C Charging Cable,1,11.95,12/29/19 16:56,"451 Jackson St, New York City, NY 10001" +305152,Lightning Charging Cable,1,14.95,12/12/19 05:22,"105 Ridge St, San Francisco, CA 94016" +305153,27in 4K Gaming Monitor,1,389.99,12/12/19 22:25,"162 Forest St, San Francisco, CA 94016" +305154,Lightning Charging Cable,1,14.95,12/27/19 11:31,"81 Washington St, San Francisco, CA 94016" +305155,Lightning Charging Cable,1,14.95,12/24/19 09:33,"656 North St, Portland, OR 97035" +305156,AAA Batteries (4-pack),3,2.99,12/08/19 23:36,"274 1st St, New York City, NY 10001" +305157,Lightning Charging Cable,2,14.95,12/16/19 15:49,"693 Washington St, San Francisco, CA 94016" +305158,34in Ultrawide Monitor,1,379.99,12/27/19 08:53,"523 Willow St, Boston, MA 02215" +305159,Bose SoundSport Headphones,1,99.99,12/29/19 17:25,"192 Maple St, Boston, MA 02215" +305160,Vareebadd Phone,1,400,12/31/19 17:07,"573 Elm St, San Francisco, CA 94016" +305161,iPhone,1,700,12/02/19 10:04,"145 Park St, New York City, NY 10001" +305161,Lightning Charging Cable,1,14.95,12/02/19 10:04,"145 Park St, New York City, NY 10001" +305162,Apple Airpods Headphones,1,150,12/21/19 10:49,"91 2nd St, Los Angeles, CA 90001" +305163,Apple Airpods Headphones,1,150,12/02/19 17:43,"335 Maple St, Portland, OR 97035" +305164,iPhone,1,700,12/17/19 18:01,"695 South St, Atlanta, GA 30301" +305165,USB-C Charging Cable,1,11.95,12/06/19 21:36,"672 Meadow St, Boston, MA 02215" +305166,Apple Airpods Headphones,1,150,12/10/19 13:30,"968 4th St, Seattle, WA 98101" +305167,Bose SoundSport Headphones,1,99.99,12/09/19 12:59,"48 Wilson St, Los Angeles, CA 90001" +305168,Apple Airpods Headphones,1,150,12/20/19 10:00,"230 Highland St, Boston, MA 02215" +305169,USB-C Charging Cable,1,11.95,12/31/19 09:01,"523 North St, Austin, TX 73301" +305170,Lightning Charging Cable,1,14.95,12/06/19 21:43,"30 Chestnut St, San Francisco, CA 94016" +305171,USB-C Charging Cable,1,11.95,12/11/19 00:03,"519 Washington St, Los Angeles, CA 90001" +305172,AAA Batteries (4-pack),1,2.99,12/15/19 15:37,"27 Spruce St, Boston, MA 02215" +305173,Wired Headphones,1,11.99,12/10/19 16:50,"165 12th St, Boston, MA 02215" +305174,Lightning Charging Cable,1,14.95,12/10/19 05:29,"437 Main St, New York City, NY 10001" +305175,Google Phone,1,600,12/11/19 19:03,"139 Cherry St, San Francisco, CA 94016" +305175,USB-C Charging Cable,1,11.95,12/11/19 19:03,"139 Cherry St, San Francisco, CA 94016" +305176,USB-C Charging Cable,1,11.95,12/16/19 22:29,"917 5th St, San Francisco, CA 94016" +305177,Wired Headphones,1,11.99,12/02/19 09:49,"47 Park St, Atlanta, GA 30301" +305178,34in Ultrawide Monitor,1,379.99,12/13/19 21:37,"123 Forest St, San Francisco, CA 94016" +305179,Lightning Charging Cable,1,14.95,12/30/19 17:07,"530 Walnut St, Los Angeles, CA 90001" +305180,Bose SoundSport Headphones,1,99.99,12/01/19 17:07,"768 Ridge St, Boston, MA 02215" +305181,AAA Batteries (4-pack),1,2.99,12/18/19 13:48,"903 13th St, Los Angeles, CA 90001" +305182,AA Batteries (4-pack),2,3.84,12/12/19 20:04,"517 2nd St, Austin, TX 73301" +305183,AAA Batteries (4-pack),3,2.99,12/16/19 21:41,"639 Forest St, New York City, NY 10001" +305184,Vareebadd Phone,1,400,12/30/19 11:18,"186 Cherry St, San Francisco, CA 94016" +305185,Lightning Charging Cable,1,14.95,12/08/19 09:20,"289 14th St, Austin, TX 73301" +305186,USB-C Charging Cable,1,11.95,12/09/19 11:16,"47 Maple St, San Francisco, CA 94016" +305187,Lightning Charging Cable,1,14.95,12/07/19 01:53,"304 Maple St, San Francisco, CA 94016" +305188,20in Monitor,1,109.99,12/02/19 21:35,"914 Highland St, San Francisco, CA 94016" +305189,20in Monitor,1,109.99,12/06/19 11:22,"693 Elm St, San Francisco, CA 94016" +305190,Lightning Charging Cable,1,14.95,12/29/19 09:57,"275 Cherry St, Dallas, TX 75001" +305191,Apple Airpods Headphones,1,150,12/29/19 06:47,"629 1st St, New York City, NY 10001" +305192,AA Batteries (4-pack),2,3.84,12/04/19 16:11,"579 Cherry St, Austin, TX 73301" +305193,Lightning Charging Cable,1,14.95,12/01/19 23:42,"143 Johnson St, New York City, NY 10001" +305194,AA Batteries (4-pack),1,3.84,12/12/19 23:14,"76 Lincoln St, New York City, NY 10001" +305195,Lightning Charging Cable,1,14.95,12/08/19 13:25,"617 Jefferson St, Portland, ME 04101" +305196,AAA Batteries (4-pack),3,2.99,12/09/19 22:33,"844 West St, New York City, NY 10001" +305197,USB-C Charging Cable,1,11.95,12/11/19 10:57,"477 River St, San Francisco, CA 94016" +305198,AA Batteries (4-pack),1,3.84,12/12/19 15:18,"958 Lakeview St, Los Angeles, CA 90001" +305199,Apple Airpods Headphones,1,150,12/26/19 09:37,"236 South St, Dallas, TX 75001" +305200,AA Batteries (4-pack),1,3.84,12/01/19 06:28,"976 9th St, Los Angeles, CA 90001" +305201,Macbook Pro Laptop,1,1700,12/06/19 17:17,"251 Lakeview St, Seattle, WA 98101" +305202,Wired Headphones,1,11.99,12/18/19 03:40,"60 13th St, Los Angeles, CA 90001" +305203,Google Phone,1,600,12/22/19 15:48,"855 Center St, Atlanta, GA 30301" +305203,USB-C Charging Cable,1,11.95,12/22/19 15:48,"855 Center St, Atlanta, GA 30301" +305203,Wired Headphones,1,11.99,12/22/19 15:48,"855 Center St, Atlanta, GA 30301" +305204,Lightning Charging Cable,1,14.95,12/16/19 06:59,"243 Dogwood St, Austin, TX 73301" +305205,Flatscreen TV,1,300,12/07/19 18:36,"881 Center St, Seattle, WA 98101" +305206,27in 4K Gaming Monitor,1,389.99,12/09/19 08:25,"624 8th St, San Francisco, CA 94016" +305207,iPhone,1,700,12/29/19 10:18,"836 Cedar St, San Francisco, CA 94016" +305208,AA Batteries (4-pack),1,3.84,12/08/19 21:41,"107 Hickory St, Austin, TX 73301" +305209,AAA Batteries (4-pack),1,2.99,12/15/19 11:45,"652 Main St, Los Angeles, CA 90001" +305210,ThinkPad Laptop,1,999.99,12/18/19 20:38,"694 1st St, New York City, NY 10001" +305211,Macbook Pro Laptop,1,1700,12/18/19 22:33,"20 4th St, Los Angeles, CA 90001" +305212,ThinkPad Laptop,1,999.99,12/13/19 12:28,"224 Maple St, Dallas, TX 75001" +305213,AAA Batteries (4-pack),3,2.99,12/29/19 22:37,"894 Highland St, Atlanta, GA 30301" +305214,USB-C Charging Cable,1,11.95,12/31/19 15:13,"96 Lakeview St, Portland, OR 97035" +305215,USB-C Charging Cable,1,11.95,12/20/19 18:57,"312 Church St, Austin, TX 73301" +305216,Apple Airpods Headphones,1,150,12/23/19 11:54,"209 Hickory St, Dallas, TX 75001" +305217,Macbook Pro Laptop,1,1700,12/05/19 19:37,"932 Willow St, Dallas, TX 75001" +305218,Lightning Charging Cable,1,14.95,12/16/19 12:59,"70 Church St, San Francisco, CA 94016" +305219,USB-C Charging Cable,1,11.95,12/04/19 20:01,"899 10th St, Portland, OR 97035" +305220,ThinkPad Laptop,1,999.99,12/28/19 09:49,"879 8th St, Portland, OR 97035" +305221,Wired Headphones,1,11.99,12/27/19 20:26,"971 Adams St, San Francisco, CA 94016" +305222,Lightning Charging Cable,1,14.95,12/10/19 10:01,"819 Lincoln St, Seattle, WA 98101" +305222,AA Batteries (4-pack),1,3.84,12/10/19 10:01,"819 Lincoln St, Seattle, WA 98101" +305223,27in FHD Monitor,1,149.99,12/12/19 13:20,"654 Lincoln St, New York City, NY 10001" +305224,Apple Airpods Headphones,1,150,12/01/19 21:36,"96 12th St, San Francisco, CA 94016" +305225,AAA Batteries (4-pack),1,2.99,12/31/19 20:40,"104 14th St, Boston, MA 02215" +305226,Wired Headphones,1,11.99,12/09/19 12:10,"193 Highland St, Los Angeles, CA 90001" +305227,Bose SoundSport Headphones,1,99.99,12/30/19 13:16,"225 Johnson St, Boston, MA 02215" +305228,Bose SoundSport Headphones,1,99.99,12/10/19 02:39,"31 13th St, Atlanta, GA 30301" +305229,Wired Headphones,1,11.99,12/19/19 08:55,"790 Church St, Seattle, WA 98101" +305230,AAA Batteries (4-pack),1,2.99,12/12/19 12:14,"870 4th St, Atlanta, GA 30301" +305231,Flatscreen TV,1,300,12/04/19 16:30,"631 Adams St, Los Angeles, CA 90001" +305232,AAA Batteries (4-pack),1,2.99,12/17/19 01:39,"760 Johnson St, Atlanta, GA 30301" +305233,Bose SoundSport Headphones,1,99.99,12/05/19 15:16,"848 11th St, San Francisco, CA 94016" +305234,AA Batteries (4-pack),1,3.84,12/26/19 14:35,"875 Maple St, New York City, NY 10001" +305235,Wired Headphones,1,11.99,12/03/19 14:06,"599 Elm St, Dallas, TX 75001" +305236,Wired Headphones,1,11.99,12/19/19 12:41,"688 Chestnut St, Los Angeles, CA 90001" +305237,Wired Headphones,1,11.99,12/12/19 15:52,"131 South St, New York City, NY 10001" +305238,34in Ultrawide Monitor,1,379.99,12/30/19 22:43,"811 West St, Los Angeles, CA 90001" +305239,AA Batteries (4-pack),2,3.84,12/05/19 20:26,"834 Lake St, Seattle, WA 98101" +305240,iPhone,1,700,12/19/19 10:33,"199 Chestnut St, San Francisco, CA 94016" +305241,Bose SoundSport Headphones,1,99.99,12/25/19 17:39,"31 Jackson St, Seattle, WA 98101" +305242,Lightning Charging Cable,1,14.95,12/06/19 20:12,"742 1st St, Los Angeles, CA 90001" +305243,27in FHD Monitor,1,149.99,12/28/19 20:43,"316 6th St, Portland, OR 97035" +305244,27in FHD Monitor,1,149.99,12/23/19 09:17,"748 9th St, San Francisco, CA 94016" +305245,iPhone,1,700,12/26/19 06:42,"579 Wilson St, Dallas, TX 75001" +305246,Macbook Pro Laptop,1,1700,12/08/19 14:25,"724 Walnut St, New York City, NY 10001" +305247,Apple Airpods Headphones,1,150,12/25/19 07:24,"612 Jackson St, Austin, TX 73301" +305248,Wired Headphones,1,11.99,12/27/19 12:03,"817 4th St, New York City, NY 10001" +305249,ThinkPad Laptop,1,999.99,12/05/19 15:30,"988 13th St, Dallas, TX 75001" +305250,USB-C Charging Cable,1,11.95,12/10/19 10:50,"379 Sunset St, Dallas, TX 75001" +305251,Flatscreen TV,1,300,12/04/19 01:34,"759 4th St, San Francisco, CA 94016" +305252,AA Batteries (4-pack),1,3.84,12/11/19 18:33,"413 West St, Portland, OR 97035" +305253,AA Batteries (4-pack),2,3.84,12/20/19 15:33,"837 Dogwood St, San Francisco, CA 94016" +305254,Flatscreen TV,1,300,12/30/19 17:20,"292 Jackson St, Dallas, TX 75001" +305255,Google Phone,1,600,12/18/19 16:25,"886 North St, San Francisco, CA 94016" +305256,Wired Headphones,1,11.99,12/05/19 13:49,"407 Jackson St, New York City, NY 10001" +305257,Lightning Charging Cable,2,14.95,12/23/19 19:05,"766 14th St, Austin, TX 73301" +305258,AA Batteries (4-pack),1,3.84,12/16/19 19:43,"330 Chestnut St, Los Angeles, CA 90001" +305259,34in Ultrawide Monitor,1,379.99,12/08/19 16:28,"609 13th St, Boston, MA 02215" +305260,ThinkPad Laptop,1,999.99,12/22/19 19:56,"690 West St, Austin, TX 73301" +305261,AAA Batteries (4-pack),1,2.99,12/09/19 07:42,"548 Maple St, Dallas, TX 75001" +305262,AAA Batteries (4-pack),1,2.99,12/08/19 10:09,"108 River St, San Francisco, CA 94016" +305263,USB-C Charging Cable,1,11.95,12/03/19 13:02,"991 Lake St, Boston, MA 02215" +305264,Lightning Charging Cable,1,14.95,12/27/19 11:49,"880 Cedar St, New York City, NY 10001" +305265,AA Batteries (4-pack),1,3.84,12/14/19 09:43,"661 Dogwood St, Los Angeles, CA 90001" +305266,Bose SoundSport Headphones,1,99.99,12/06/19 18:25,"855 Madison St, New York City, NY 10001" +305267,Bose SoundSport Headphones,1,99.99,12/14/19 15:50,"297 4th St, Los Angeles, CA 90001" +305268,USB-C Charging Cable,1,11.95,12/27/19 13:13,"548 Cedar St, Portland, ME 04101" +305269,AAA Batteries (4-pack),2,2.99,12/26/19 21:48,"239 Sunset St, Los Angeles, CA 90001" +305270,iPhone,1,700,12/05/19 20:59,"933 7th St, Seattle, WA 98101" +305271,Apple Airpods Headphones,1,150,12/11/19 14:17,"465 North St, Dallas, TX 75001" +305272,AAA Batteries (4-pack),1,2.99,12/23/19 14:55,"994 Willow St, San Francisco, CA 94016" +305273,Flatscreen TV,1,300,12/09/19 19:21,"414 Chestnut St, Atlanta, GA 30301" +305274,USB-C Charging Cable,1,11.95,12/13/19 23:06,"450 Dogwood St, Seattle, WA 98101" +305275,Wired Headphones,1,11.99,12/10/19 11:46,"431 Lakeview St, Seattle, WA 98101" +305276,Wired Headphones,2,11.99,12/04/19 19:31,"441 Washington St, San Francisco, CA 94016" +305277,iPhone,1,700,12/31/19 09:40,"437 Lake St, Dallas, TX 75001" +305278,AA Batteries (4-pack),1,3.84,12/06/19 22:57,"652 2nd St, Seattle, WA 98101" +305279,Lightning Charging Cable,1,14.95,12/30/19 11:33,"598 Meadow St, Dallas, TX 75001" +305280,Lightning Charging Cable,1,14.95,12/03/19 08:21,"222 8th St, San Francisco, CA 94016" +305281,AAA Batteries (4-pack),1,2.99,12/02/19 12:43,"406 Lake St, Boston, MA 02215" +305282,27in FHD Monitor,1,149.99,12/04/19 08:52,"174 Ridge St, Dallas, TX 75001" +305283,AAA Batteries (4-pack),3,2.99,12/06/19 15:05,"240 Washington St, Los Angeles, CA 90001" +305284,ThinkPad Laptop,1,999.99,12/31/19 11:30,"306 Dogwood St, Seattle, WA 98101" +305285,AAA Batteries (4-pack),1,2.99,12/31/19 17:13,"655 Spruce St, San Francisco, CA 94016" +305286,27in FHD Monitor,1,149.99,12/05/19 10:53,"158 Center St, Boston, MA 02215" +305287,AA Batteries (4-pack),1,3.84,12/31/19 14:58,"680 Elm St, Seattle, WA 98101" +305288,Lightning Charging Cable,1,14.95,12/23/19 19:30,"974 11th St, Boston, MA 02215" +305289,AAA Batteries (4-pack),1,2.99,12/23/19 10:31,"768 Church St, Dallas, TX 75001" +305290,27in FHD Monitor,1,149.99,12/02/19 11:49,"666 2nd St, Boston, MA 02215" +305291,AA Batteries (4-pack),1,3.84,12/25/19 20:24,"517 River St, New York City, NY 10001" +305292,AA Batteries (4-pack),2,3.84,12/18/19 20:12,"74 Ridge St, Los Angeles, CA 90001" +305293,Lightning Charging Cable,1,14.95,12/18/19 01:43,"69 Hickory St, Dallas, TX 75001" +305294,34in Ultrawide Monitor,1,379.99,12/28/19 10:14,"2 11th St, Portland, OR 97035" +305295,USB-C Charging Cable,1,11.95,12/22/19 10:14,"120 Elm St, San Francisco, CA 94016" +305296,AA Batteries (4-pack),1,3.84,12/31/19 00:49,"596 Ridge St, San Francisco, CA 94016" +305297,27in 4K Gaming Monitor,1,389.99,12/19/19 10:13,"85 River St, Seattle, WA 98101" +305297,Lightning Charging Cable,1,14.95,12/19/19 10:13,"85 River St, Seattle, WA 98101" +305298,Bose SoundSport Headphones,1,99.99,12/15/19 13:58,"593 Jefferson St, Portland, OR 97035" +305299,Wired Headphones,1,11.99,12/15/19 18:03,"374 6th St, New York City, NY 10001" +305300,Macbook Pro Laptop,1,1700,12/17/19 20:00,"142 Madison St, Los Angeles, CA 90001" +305301,Apple Airpods Headphones,1,150,12/09/19 09:49,"714 2nd St, New York City, NY 10001" +305302,Wired Headphones,1,11.99,12/22/19 11:12,"599 Wilson St, Los Angeles, CA 90001" +305303,Wired Headphones,2,11.99,12/06/19 13:17,"310 Hickory St, Atlanta, GA 30301" +305304,Google Phone,1,600,12/22/19 16:08,"238 West St, New York City, NY 10001" +305305,Google Phone,1,600,12/02/19 03:53,"396 Wilson St, Boston, MA 02215" +305305,34in Ultrawide Monitor,1,379.99,12/02/19 03:53,"396 Wilson St, Boston, MA 02215" +305306,AA Batteries (4-pack),1,3.84,12/08/19 15:32,"481 Pine St, Los Angeles, CA 90001" +305307,ThinkPad Laptop,1,999.99,12/12/19 15:46,"232 Cherry St, Los Angeles, CA 90001" +305308,Bose SoundSport Headphones,1,99.99,12/21/19 23:29,"796 13th St, Boston, MA 02215" +305309,Bose SoundSport Headphones,1,99.99,12/29/19 18:43,"893 North St, New York City, NY 10001" +305310,USB-C Charging Cable,2,11.95,12/11/19 09:26,"392 Elm St, San Francisco, CA 94016" +305311,USB-C Charging Cable,1,11.95,12/07/19 21:11,"875 8th St, Dallas, TX 75001" +305312,34in Ultrawide Monitor,1,379.99,12/09/19 21:35,"349 Main St, Dallas, TX 75001" +305313,Apple Airpods Headphones,1,150,12/27/19 23:06,"230 2nd St, Dallas, TX 75001" +305314,Wired Headphones,2,11.99,12/04/19 11:55,"690 Jackson St, San Francisco, CA 94016" +305315,27in FHD Monitor,1,149.99,12/29/19 10:31,"832 Meadow St, Austin, TX 73301" +305316,27in 4K Gaming Monitor,1,389.99,12/15/19 15:51,"20 Willow St, Seattle, WA 98101" +305317,AAA Batteries (4-pack),1,2.99,12/21/19 21:56,"298 River St, New York City, NY 10001" +305318,Google Phone,1,600,12/03/19 15:01,"30 Park St, San Francisco, CA 94016" +305319,AA Batteries (4-pack),2,3.84,12/24/19 17:21,"397 11th St, San Francisco, CA 94016" +305320,Flatscreen TV,1,300,12/15/19 17:46,"937 Sunset St, New York City, NY 10001" +305321,27in FHD Monitor,1,149.99,12/10/19 21:37,"386 Forest St, Austin, TX 73301" +305321,Flatscreen TV,1,300,12/10/19 21:37,"386 Forest St, Austin, TX 73301" +305322,Wired Headphones,1,11.99,12/08/19 22:54,"808 Main St, Atlanta, GA 30301" +305323,27in 4K Gaming Monitor,1,389.99,12/02/19 22:27,"750 Maple St, New York City, NY 10001" +305324,Wired Headphones,1,11.99,12/04/19 10:40,"487 10th St, Boston, MA 02215" +305325,Lightning Charging Cable,1,14.95,12/04/19 08:02,"782 Cherry St, Atlanta, GA 30301" +305326,AAA Batteries (4-pack),1,2.99,12/16/19 19:08,"542 Maple St, Dallas, TX 75001" +305327,USB-C Charging Cable,1,11.95,12/15/19 14:45,"732 Spruce St, Seattle, WA 98101" +305328,iPhone,1,700,12/14/19 21:39,"631 Pine St, Portland, ME 04101" +305329,AA Batteries (4-pack),3,3.84,12/02/19 18:38,"111 12th St, Boston, MA 02215" +305330,Apple Airpods Headphones,1,150,12/03/19 10:11,"433 Jefferson St, Dallas, TX 75001" +305331,AAA Batteries (4-pack),2,2.99,12/08/19 15:53,"281 Dogwood St, New York City, NY 10001" +305332,AA Batteries (4-pack),2,3.84,12/17/19 22:59,"645 Lake St, Boston, MA 02215" +305333,Wired Headphones,1,11.99,12/13/19 15:28,"303 8th St, San Francisco, CA 94016" +305334,Flatscreen TV,1,300,12/24/19 16:09,"368 Jefferson St, Portland, ME 04101" +305335,USB-C Charging Cable,1,11.95,12/21/19 18:18,"170 Dogwood St, New York City, NY 10001" +305336,Macbook Pro Laptop,1,1700,12/05/19 09:15,"243 7th St, Seattle, WA 98101" +305337,Bose SoundSport Headphones,1,99.99,12/18/19 23:52,"937 Jefferson St, Seattle, WA 98101" +305338,ThinkPad Laptop,1,999.99,12/16/19 20:08,"315 Main St, San Francisco, CA 94016" +305339,Apple Airpods Headphones,1,150,12/30/19 08:16,"717 Elm St, Dallas, TX 75001" +305340,Bose SoundSport Headphones,1,99.99,12/27/19 15:39,"709 Wilson St, San Francisco, CA 94016" +305341,USB-C Charging Cable,1,11.95,12/20/19 09:14,"415 13th St, Austin, TX 73301" +305342,Lightning Charging Cable,1,14.95,12/07/19 10:24,"72 Meadow St, San Francisco, CA 94016" +305343,AAA Batteries (4-pack),1,2.99,12/24/19 14:21,"56 6th St, Los Angeles, CA 90001" +305344,Lightning Charging Cable,2,14.95,12/29/19 15:21,"136 Pine St, Boston, MA 02215" +305345,Lightning Charging Cable,1,14.95,12/23/19 12:24,"175 Forest St, Dallas, TX 75001" +305346,USB-C Charging Cable,1,11.95,12/16/19 16:39,"434 Wilson St, Austin, TX 73301" +305347,Vareebadd Phone,1,400,12/12/19 19:27,"949 River St, San Francisco, CA 94016" +305347,Bose SoundSport Headphones,1,99.99,12/12/19 19:27,"949 River St, San Francisco, CA 94016" +305348,USB-C Charging Cable,1,11.95,12/13/19 08:53,"113 Willow St, Portland, OR 97035" +305349,USB-C Charging Cable,1,11.95,12/24/19 18:51,"431 West St, Austin, TX 73301" +,,,,, +305350,Wired Headphones,1,11.99,12/02/19 11:28,"874 Jefferson St, Dallas, TX 75001" +305351,Apple Airpods Headphones,1,150,12/25/19 23:35,"297 Meadow St, San Francisco, CA 94016" +305352,Apple Airpods Headphones,1,150,12/07/19 07:50,"258 West St, Portland, OR 97035" +305353,Lightning Charging Cable,1,14.95,12/19/19 10:53,"10 Ridge St, Austin, TX 73301" +305354,USB-C Charging Cable,1,11.95,12/10/19 18:09,"973 Cherry St, New York City, NY 10001" +305355,iPhone,1,700,12/01/19 21:41,"806 Center St, Los Angeles, CA 90001" +305356,USB-C Charging Cable,1,11.95,12/30/19 17:37,"3 Elm St, Austin, TX 73301" +305357,Apple Airpods Headphones,1,150,12/08/19 17:15,"153 Church St, Dallas, TX 75001" +305358,AAA Batteries (4-pack),1,2.99,12/31/19 17:06,"652 2nd St, Portland, OR 97035" +305359,Bose SoundSport Headphones,1,99.99,12/15/19 15:44,"95 Washington St, Portland, ME 04101" +305360,Wired Headphones,1,11.99,12/27/19 13:54,"960 Ridge St, Los Angeles, CA 90001" +305361,Bose SoundSport Headphones,1,99.99,12/07/19 06:52,"679 6th St, San Francisco, CA 94016" +305362,AAA Batteries (4-pack),1,2.99,12/22/19 00:13,"125 Lake St, Los Angeles, CA 90001" +305363,AA Batteries (4-pack),2,3.84,12/11/19 09:45,"248 2nd St, Los Angeles, CA 90001" +305364,Bose SoundSport Headphones,1,99.99,12/29/19 11:24,"858 5th St, Seattle, WA 98101" +305365,Google Phone,1,600,12/26/19 15:55,"189 Wilson St, Austin, TX 73301" +305366,Apple Airpods Headphones,1,150,12/28/19 18:11,"478 Lincoln St, San Francisco, CA 94016" +305367,Wired Headphones,1,11.99,12/23/19 00:14,"717 River St, Los Angeles, CA 90001" +305368,27in FHD Monitor,1,149.99,12/22/19 10:01,"529 13th St, Austin, TX 73301" +305369,AA Batteries (4-pack),1,3.84,12/15/19 19:58,"642 10th St, Seattle, WA 98101" +305370,Apple Airpods Headphones,1,150,12/12/19 19:43,"824 7th St, San Francisco, CA 94016" +305371,Lightning Charging Cable,1,14.95,12/12/19 20:16,"25 Hill St, New York City, NY 10001" +305372,20in Monitor,1,109.99,12/14/19 16:30,"70 Sunset St, San Francisco, CA 94016" +305373,Bose SoundSport Headphones,1,99.99,12/16/19 11:41,"329 Johnson St, Dallas, TX 75001" +305374,Flatscreen TV,1,300,12/23/19 07:33,"921 2nd St, Los Angeles, CA 90001" +305375,AA Batteries (4-pack),1,3.84,12/02/19 18:19,"769 Cedar St, Boston, MA 02215" +305376,34in Ultrawide Monitor,1,379.99,12/30/19 14:02,"773 Walnut St, New York City, NY 10001" +305377,USB-C Charging Cable,1,11.95,12/19/19 15:13,"77 West St, Los Angeles, CA 90001" +305378,Lightning Charging Cable,1,14.95,12/09/19 14:15,"911 Lakeview St, New York City, NY 10001" +305379,iPhone,1,700,12/05/19 22:59,"373 Lincoln St, San Francisco, CA 94016" +305379,Wired Headphones,1,11.99,12/05/19 22:59,"373 Lincoln St, San Francisco, CA 94016" +305380,LG Washing Machine,1,600.0,12/20/19 23:54,"196 Jackson St, New York City, NY 10001" +305381,Wired Headphones,1,11.99,12/14/19 13:20,"4 Sunset St, Atlanta, GA 30301" +305382,USB-C Charging Cable,1,11.95,12/09/19 09:27,"383 Elm St, San Francisco, CA 94016" +305383,Apple Airpods Headphones,1,150,12/02/19 13:01,"566 Pine St, Austin, TX 73301" +305384,Wired Headphones,1,11.99,12/07/19 21:02,"506 Main St, San Francisco, CA 94016" +305385,iPhone,1,700,12/24/19 07:30,"101 Dogwood St, Portland, OR 97035" +305385,Apple Airpods Headphones,1,150,12/24/19 07:30,"101 Dogwood St, Portland, OR 97035" +305386,Google Phone,1,600,12/21/19 14:19,"562 Adams St, San Francisco, CA 94016" +305387,Lightning Charging Cable,1,14.95,12/23/19 15:41,"286 Dogwood St, Seattle, WA 98101" +305388,Lightning Charging Cable,1,14.95,12/29/19 20:28,"630 8th St, New York City, NY 10001" +305389,34in Ultrawide Monitor,1,379.99,12/01/19 13:32,"380 6th St, New York City, NY 10001" +305390,AA Batteries (4-pack),1,3.84,12/07/19 16:43,"641 13th St, San Francisco, CA 94016" +305391,AA Batteries (4-pack),1,3.84,12/31/19 14:21,"361 Johnson St, Dallas, TX 75001" +305392,USB-C Charging Cable,1,11.95,12/13/19 02:12,"882 10th St, Dallas, TX 75001" +305393,Apple Airpods Headphones,1,150,12/06/19 13:40,"752 Pine St, Los Angeles, CA 90001" +305394,27in 4K Gaming Monitor,1,389.99,12/16/19 20:01,"624 Jackson St, San Francisco, CA 94016" +305395,Macbook Pro Laptop,1,1700,12/23/19 15:27,"780 Lakeview St, Dallas, TX 75001" +305396,Bose SoundSport Headphones,1,99.99,12/09/19 16:53,"548 Lakeview St, Austin, TX 73301" +305397,Macbook Pro Laptop,1,1700,12/03/19 17:13,"838 6th St, Portland, OR 97035" +305398,AA Batteries (4-pack),1,3.84,12/21/19 16:57,"252 Willow St, New York City, NY 10001" +305399,34in Ultrawide Monitor,1,379.99,12/03/19 18:04,"561 Hill St, Seattle, WA 98101" +305400,AAA Batteries (4-pack),1,2.99,12/08/19 09:47,"240 Church St, Atlanta, GA 30301" +305401,AAA Batteries (4-pack),1,2.99,12/03/19 17:26,"591 Park St, San Francisco, CA 94016" +305402,Apple Airpods Headphones,1,150,12/15/19 18:46,"960 6th St, Los Angeles, CA 90001" +305403,USB-C Charging Cable,1,11.95,12/29/19 16:55,"308 Maple St, Los Angeles, CA 90001" +305404,Google Phone,1,600,12/16/19 15:10,"769 Sunset St, Portland, OR 97035" +305404,USB-C Charging Cable,1,11.95,12/16/19 15:10,"769 Sunset St, Portland, OR 97035" +305405,Macbook Pro Laptop,1,1700,12/31/19 09:06,"328 12th St, New York City, NY 10001" +305406,USB-C Charging Cable,1,11.95,12/23/19 03:10,"24 9th St, Seattle, WA 98101" +305407,Apple Airpods Headphones,1,150,12/11/19 20:34,"26 Hickory St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +305408,Apple Airpods Headphones,1,150,12/07/19 09:54,"695 Center St, Seattle, WA 98101" +305409,Lightning Charging Cable,1,14.95,12/15/19 18:03,"803 Chestnut St, Portland, OR 97035" +305410,AA Batteries (4-pack),1,3.84,12/18/19 23:38,"489 Forest St, San Francisco, CA 94016" +305411,AAA Batteries (4-pack),1,2.99,12/06/19 10:15,"112 Maple St, Los Angeles, CA 90001" +305412,Google Phone,1,600,12/13/19 09:17,"633 Cherry St, Atlanta, GA 30301" +305413,20in Monitor,1,109.99,12/25/19 12:57,"17 Lake St, San Francisco, CA 94016" +305414,AA Batteries (4-pack),4,3.84,12/17/19 13:10,"52 13th St, San Francisco, CA 94016" +305415,Lightning Charging Cable,1,14.95,12/14/19 10:56,"624 8th St, New York City, NY 10001" +305416,Wired Headphones,1,11.99,12/22/19 19:51,"300 12th St, New York City, NY 10001" +305417,USB-C Charging Cable,1,11.95,12/08/19 17:07,"510 Hill St, San Francisco, CA 94016" +305418,Bose SoundSport Headphones,1,99.99,12/31/19 16:50,"139 Park St, Los Angeles, CA 90001" +305419,27in FHD Monitor,1,149.99,12/15/19 10:55,"987 1st St, Portland, OR 97035" +305420,34in Ultrawide Monitor,1,379.99,12/07/19 09:50,"148 Ridge St, Dallas, TX 75001" +305421,AA Batteries (4-pack),2,3.84,12/07/19 17:24,"749 9th St, San Francisco, CA 94016" +305422,Flatscreen TV,1,300,12/10/19 16:43,"836 West St, San Francisco, CA 94016" +305423,34in Ultrawide Monitor,1,379.99,12/02/19 20:38,"676 Forest St, Dallas, TX 75001" +305424,Lightning Charging Cable,1,14.95,12/11/19 13:46,"413 Lincoln St, Austin, TX 73301" +305425,LG Washing Machine,1,600.0,12/20/19 12:00,"296 Sunset St, Austin, TX 73301" +305426,Apple Airpods Headphones,1,150,12/30/19 06:37,"374 Chestnut St, San Francisco, CA 94016" +305427,Google Phone,1,600,12/19/19 22:10,"439 South St, Atlanta, GA 30301" +305427,Wired Headphones,1,11.99,12/19/19 22:10,"439 South St, Atlanta, GA 30301" +305428,Apple Airpods Headphones,1,150,12/21/19 22:12,"759 Forest St, New York City, NY 10001" +305429,Lightning Charging Cable,1,14.95,12/02/19 10:02,"837 Pine St, Dallas, TX 75001" +305430,34in Ultrawide Monitor,1,379.99,12/07/19 10:17,"814 Hill St, Austin, TX 73301" +305431,USB-C Charging Cable,1,11.95,12/06/19 10:44,"367 6th St, Boston, MA 02215" +305432,Google Phone,1,600,12/02/19 20:07,"880 Meadow St, Atlanta, GA 30301" +305433,27in 4K Gaming Monitor,1,389.99,12/12/19 16:45,"231 Maple St, New York City, NY 10001" +305434,Wired Headphones,1,11.99,12/15/19 10:49,"608 7th St, Atlanta, GA 30301" +305435,AAA Batteries (4-pack),1,2.99,12/22/19 11:02,"116 Spruce St, Atlanta, GA 30301" +305436,Wired Headphones,1,11.99,12/08/19 18:31,"460 Willow St, Seattle, WA 98101" +305437,Wired Headphones,1,11.99,12/19/19 09:10,"146 Pine St, New York City, NY 10001" +305438,AA Batteries (4-pack),1,3.84,12/05/19 11:51,"323 Adams St, New York City, NY 10001" +305439,AA Batteries (4-pack),1,3.84,12/10/19 02:59,"286 Sunset St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +305440,Lightning Charging Cable,1,14.95,12/30/19 21:34,"414 Johnson St, Dallas, TX 75001" +305441,AAA Batteries (4-pack),2,2.99,12/28/19 00:42,"663 River St, San Francisco, CA 94016" +305442,Macbook Pro Laptop,1,1700,12/06/19 11:19,"934 Lakeview St, Boston, MA 02215" +305443,27in FHD Monitor,1,149.99,12/10/19 15:20,"716 Hickory St, Atlanta, GA 30301" +305444,Flatscreen TV,1,300,12/18/19 16:44,"92 Highland St, New York City, NY 10001" +305445,AAA Batteries (4-pack),1,2.99,12/17/19 17:17,"817 Maple St, Atlanta, GA 30301" +305446,Apple Airpods Headphones,1,150,12/04/19 13:33,"854 Washington St, San Francisco, CA 94016" +305447,Macbook Pro Laptop,1,1700,12/18/19 20:40,"565 Ridge St, Los Angeles, CA 90001" +305448,34in Ultrawide Monitor,1,379.99,12/21/19 03:45,"289 Hickory St, San Francisco, CA 94016" +305449,Bose SoundSport Headphones,1,99.99,12/28/19 09:44,"299 1st St, Atlanta, GA 30301" +305450,USB-C Charging Cable,1,11.95,12/05/19 19:20,"63 Center St, Los Angeles, CA 90001" +305451,27in 4K Gaming Monitor,1,389.99,12/10/19 10:28,"862 11th St, Portland, OR 97035" +305452,20in Monitor,1,109.99,12/09/19 12:12,"727 6th St, Atlanta, GA 30301" +305453,Flatscreen TV,1,300,12/25/19 18:46,"723 Hickory St, Dallas, TX 75001" +305454,27in FHD Monitor,1,149.99,12/30/19 07:09,"650 Meadow St, Austin, TX 73301" +305455,Apple Airpods Headphones,1,150,12/21/19 20:26,"501 Pine St, Boston, MA 02215" +305456,Lightning Charging Cable,1,14.95,12/17/19 19:07,"865 13th St, New York City, NY 10001" +305457,Lightning Charging Cable,2,14.95,12/20/19 13:20,"56 Pine St, Los Angeles, CA 90001" +305458,Apple Airpods Headphones,1,150,12/05/19 23:27,"460 North St, San Francisco, CA 94016" +305459,Apple Airpods Headphones,1,150,12/09/19 01:22,"682 Park St, San Francisco, CA 94016" +305460,Vareebadd Phone,1,400,12/14/19 11:56,"759 Church St, Atlanta, GA 30301" +305460,USB-C Charging Cable,1,11.95,12/14/19 11:56,"759 Church St, Atlanta, GA 30301" +305460,Wired Headphones,1,11.99,12/14/19 11:56,"759 Church St, Atlanta, GA 30301" +305461,LG Washing Machine,1,600.0,12/23/19 11:09,"387 4th St, Los Angeles, CA 90001" +305462,Lightning Charging Cable,1,14.95,12/02/19 16:37,"367 Johnson St, Dallas, TX 75001" +305463,27in FHD Monitor,1,149.99,12/06/19 06:54,"981 4th St, Portland, OR 97035" +305464,34in Ultrawide Monitor,1,379.99,12/10/19 12:57,"595 South St, Seattle, WA 98101" +305465,AAA Batteries (4-pack),2,2.99,12/27/19 21:18,"396 Jefferson St, Boston, MA 02215" +305466,27in 4K Gaming Monitor,1,389.99,12/21/19 07:48,"554 11th St, Dallas, TX 75001" +305467,Lightning Charging Cable,1,14.95,12/15/19 19:25,"730 Spruce St, Los Angeles, CA 90001" +305468,27in 4K Gaming Monitor,1,389.99,12/28/19 16:39,"9 Johnson St, Los Angeles, CA 90001" +305469,27in 4K Gaming Monitor,1,389.99,12/24/19 13:24,"108 7th St, Dallas, TX 75001" +305470,Apple Airpods Headphones,1,150,12/06/19 08:32,"777 Chestnut St, Austin, TX 73301" +305471,AAA Batteries (4-pack),3,2.99,12/01/19 12:31,"129 8th St, Dallas, TX 75001" +305472,USB-C Charging Cable,1,11.95,12/14/19 10:19,"974 11th St, San Francisco, CA 94016" +305473,USB-C Charging Cable,1,11.95,12/21/19 08:12,"882 Willow St, Los Angeles, CA 90001" +305474,AA Batteries (4-pack),2,3.84,12/11/19 21:50,"731 Chestnut St, San Francisco, CA 94016" +305475,Apple Airpods Headphones,1,150,12/07/19 10:07,"471 Ridge St, New York City, NY 10001" +305476,AAA Batteries (4-pack),3,2.99,12/19/19 00:37,"620 Elm St, New York City, NY 10001" +305477,Apple Airpods Headphones,1,150,12/04/19 21:11,"333 Church St, Boston, MA 02215" +305478,27in 4K Gaming Monitor,1,389.99,12/02/19 16:41,"391 Center St, Atlanta, GA 30301" +305479,USB-C Charging Cable,1,11.95,12/27/19 11:50,"478 West St, San Francisco, CA 94016" +305480,Apple Airpods Headphones,1,150,12/09/19 23:54,"672 Dogwood St, Boston, MA 02215" +305481,Wired Headphones,2,11.99,12/25/19 15:00,"536 Cherry St, New York City, NY 10001" +305482,AAA Batteries (4-pack),1,2.99,12/13/19 14:42,"587 Hill St, Boston, MA 02215" +305483,Google Phone,1,600,12/10/19 04:38,"555 South St, Boston, MA 02215" +305484,Bose SoundSport Headphones,1,99.99,12/03/19 15:46,"822 Walnut St, Atlanta, GA 30301" +305485,Wired Headphones,1,11.99,12/17/19 19:39,"731 Main St, San Francisco, CA 94016" +305486,AA Batteries (4-pack),2,3.84,12/24/19 01:26,"280 1st St, Dallas, TX 75001" +305487,AAA Batteries (4-pack),1,2.99,12/22/19 21:10,"815 7th St, Atlanta, GA 30301" +305488,Lightning Charging Cable,1,14.95,12/23/19 18:44,"207 1st St, Seattle, WA 98101" +305489,ThinkPad Laptop,1,999.99,12/04/19 15:26,"355 Hickory St, Boston, MA 02215" +305490,Wired Headphones,1,11.99,12/21/19 23:19,"38 Lincoln St, Los Angeles, CA 90001" +305491,USB-C Charging Cable,2,11.95,12/10/19 20:11,"480 River St, Los Angeles, CA 90001" +305492,AA Batteries (4-pack),1,3.84,12/01/19 10:26,"817 Lakeview St, San Francisco, CA 94016" +305493,27in 4K Gaming Monitor,1,389.99,12/29/19 02:05,"446 Adams St, San Francisco, CA 94016" +305494,iPhone,1,700,12/29/19 06:41,"609 Elm St, New York City, NY 10001" +305495,27in 4K Gaming Monitor,1,389.99,12/18/19 13:35,"323 8th St, San Francisco, CA 94016" +305496,Lightning Charging Cable,1,14.95,12/19/19 12:20,"461 Hill St, New York City, NY 10001" +305497,Wired Headphones,1,11.99,12/26/19 12:04,"413 8th St, New York City, NY 10001" +305498,Wired Headphones,1,11.99,12/03/19 12:52,"567 Cherry St, Portland, OR 97035" +305499,Wired Headphones,1,11.99,12/31/19 20:07,"202 Cherry St, San Francisco, CA 94016" +305500,Bose SoundSport Headphones,1,99.99,12/14/19 16:45,"35 Jackson St, Portland, ME 04101" +305501,Flatscreen TV,1,300,12/08/19 12:42,"596 Walnut St, San Francisco, CA 94016" +305502,AAA Batteries (4-pack),1,2.99,12/08/19 17:05,"248 12th St, Portland, OR 97035" +305503,Bose SoundSport Headphones,1,99.99,12/17/19 21:05,"769 5th St, San Francisco, CA 94016" +305504,Flatscreen TV,1,300,12/21/19 09:56,"195 Chestnut St, Portland, OR 97035" +305505,Lightning Charging Cable,1,14.95,12/15/19 00:15,"659 Willow St, Seattle, WA 98101" +305506,USB-C Charging Cable,2,11.95,12/07/19 21:20,"122 Main St, Portland, ME 04101" +305507,Wired Headphones,1,11.99,12/12/19 11:28,"67 Highland St, Dallas, TX 75001" +305508,Google Phone,1,600,12/02/19 12:54,"723 Chestnut St, Boston, MA 02215" +305509,34in Ultrawide Monitor,1,379.99,12/12/19 11:36,"23 9th St, Atlanta, GA 30301" +305510,Apple Airpods Headphones,1,150,12/21/19 15:07,"622 Walnut St, Los Angeles, CA 90001" +305511,AAA Batteries (4-pack),2,2.99,12/28/19 18:22,"429 Lincoln St, Los Angeles, CA 90001" +305512,AAA Batteries (4-pack),3,2.99,12/23/19 10:41,"327 14th St, Portland, OR 97035" +305513,20in Monitor,1,109.99,12/31/19 07:10,"470 River St, Los Angeles, CA 90001" +305514,Google Phone,1,600,12/31/19 13:22,"881 South St, Los Angeles, CA 90001" +305515,Macbook Pro Laptop,1,1700,12/07/19 17:44,"518 Chestnut St, New York City, NY 10001" +305516,USB-C Charging Cable,1,11.95,12/17/19 18:34,"398 Hill St, San Francisco, CA 94016" +305517,AAA Batteries (4-pack),1,2.99,12/16/19 10:25,"337 Forest St, Portland, OR 97035" +305518,USB-C Charging Cable,1,11.95,12/31/19 17:08,"749 Willow St, Seattle, WA 98101" +305519,Macbook Pro Laptop,1,1700,12/07/19 10:34,"588 1st St, Los Angeles, CA 90001" +305520,27in 4K Gaming Monitor,1,389.99,12/30/19 09:30,"564 Spruce St, Boston, MA 02215" +305521,Lightning Charging Cable,1,14.95,12/07/19 18:50,"645 Main St, New York City, NY 10001" +305521,Bose SoundSport Headphones,1,99.99,12/07/19 18:50,"645 Main St, New York City, NY 10001" +305522,34in Ultrawide Monitor,1,379.99,12/07/19 18:17,"795 10th St, Austin, TX 73301" +305523,Bose SoundSport Headphones,1,99.99,12/04/19 20:49,"514 7th St, San Francisco, CA 94016" +305524,AA Batteries (4-pack),1,3.84,12/27/19 04:50,"150 7th St, Austin, TX 73301" +305525,AA Batteries (4-pack),2,3.84,12/02/19 10:04,"813 4th St, Portland, OR 97035" +305526,Wired Headphones,1,11.99,12/31/19 14:07,"362 Walnut St, New York City, NY 10001" +305527,Wired Headphones,1,11.99,12/03/19 11:05,"665 Main St, New York City, NY 10001" +305528,27in 4K Gaming Monitor,1,389.99,12/30/19 04:53,"651 13th St, Atlanta, GA 30301" +305529,AAA Batteries (4-pack),1,2.99,12/13/19 10:28,"743 2nd St, Boston, MA 02215" +305530,AAA Batteries (4-pack),1,2.99,12/01/19 13:08,"935 Hill St, New York City, NY 10001" +305531,Wired Headphones,1,11.99,12/23/19 12:53,"407 South St, San Francisco, CA 94016" +305532,iPhone,1,700,12/08/19 00:25,"431 10th St, Los Angeles, CA 90001" +305533,Bose SoundSport Headphones,2,99.99,12/01/19 17:01,"717 Pine St, Boston, MA 02215" +305533,Bose SoundSport Headphones,1,99.99,12/01/19 17:01,"717 Pine St, Boston, MA 02215" +305534,Bose SoundSport Headphones,1,99.99,12/10/19 11:44,"625 South St, San Francisco, CA 94016" +305535,AA Batteries (4-pack),2,3.84,12/22/19 07:49,"399 Hickory St, Dallas, TX 75001" +305536,AAA Batteries (4-pack),2,2.99,12/27/19 15:18,"450 1st St, Atlanta, GA 30301" +305537,27in 4K Gaming Monitor,1,389.99,12/10/19 21:07,"624 5th St, New York City, NY 10001" +305538,AAA Batteries (4-pack),2,2.99,12/11/19 18:20,"610 8th St, Los Angeles, CA 90001" +305539,AA Batteries (4-pack),2,3.84,12/11/19 19:03,"893 North St, Austin, TX 73301" +305540,AA Batteries (4-pack),2,3.84,12/10/19 11:27,"169 9th St, San Francisco, CA 94016" +305541,34in Ultrawide Monitor,1,379.99,12/02/19 15:48,"501 Chestnut St, Los Angeles, CA 90001" +305541,Lightning Charging Cable,1,14.95,12/02/19 15:48,"501 Chestnut St, Los Angeles, CA 90001" +305542,USB-C Charging Cable,1,11.95,12/12/19 22:18,"645 Pine St, Los Angeles, CA 90001" +305543,AA Batteries (4-pack),1,3.84,01/01/20 01:05,"337 Center St, Atlanta, GA 30301" +305544,AA Batteries (4-pack),2,3.84,12/15/19 16:33,"408 Jefferson St, Portland, OR 97035" +305545,27in FHD Monitor,1,149.99,12/13/19 11:05,"318 Maple St, Austin, TX 73301" +305546,Lightning Charging Cable,1,14.95,12/18/19 17:29,"515 Lincoln St, San Francisco, CA 94016" +305547,27in 4K Gaming Monitor,1,389.99,12/23/19 17:15,"931 Meadow St, Austin, TX 73301" +305548,ThinkPad Laptop,1,999.99,12/18/19 14:05,"304 8th St, San Francisco, CA 94016" +305549,iPhone,1,700,12/24/19 16:53,"508 Dogwood St, San Francisco, CA 94016" +305550,AAA Batteries (4-pack),2,2.99,12/13/19 22:07,"744 River St, Portland, OR 97035" +305551,AAA Batteries (4-pack),1,2.99,12/21/19 09:21,"563 9th St, New York City, NY 10001" +305552,USB-C Charging Cable,1,11.95,12/22/19 11:04,"912 North St, Dallas, TX 75001" +305553,Lightning Charging Cable,1,14.95,12/15/19 15:23,"729 Lincoln St, Boston, MA 02215" +305554,USB-C Charging Cable,1,11.95,12/10/19 11:50,"307 Lake St, Los Angeles, CA 90001" +305555,USB-C Charging Cable,2,11.95,12/23/19 08:07,"289 Lakeview St, Los Angeles, CA 90001" +305556,AAA Batteries (4-pack),1,2.99,12/07/19 18:34,"794 Lake St, New York City, NY 10001" +305557,20in Monitor,1,109.99,12/30/19 08:49,"178 Washington St, Atlanta, GA 30301" +305558,Wired Headphones,1,11.99,12/02/19 12:35,"493 10th St, Los Angeles, CA 90001" +305559,27in 4K Gaming Monitor,1,389.99,12/11/19 21:01,"942 2nd St, San Francisco, CA 94016" +305560,20in Monitor,1,109.99,12/11/19 07:29,"180 South St, Los Angeles, CA 90001" +305561,LG Dryer,1,600.0,12/12/19 07:57,"592 2nd St, San Francisco, CA 94016" +305562,USB-C Charging Cable,1,11.95,12/08/19 13:42,"585 12th St, Dallas, TX 75001" +305563,Vareebadd Phone,1,400,12/10/19 15:34,"358 8th St, San Francisco, CA 94016" +305563,Bose SoundSport Headphones,1,99.99,12/10/19 15:34,"358 8th St, San Francisco, CA 94016" +305563,Wired Headphones,1,11.99,12/10/19 15:34,"358 8th St, San Francisco, CA 94016" +305564,AAA Batteries (4-pack),1,2.99,12/31/19 13:02,"957 Cherry St, Atlanta, GA 30301" +305565,USB-C Charging Cable,1,11.95,12/10/19 21:05,"186 Cedar St, San Francisco, CA 94016" +305566,AA Batteries (4-pack),1,3.84,12/17/19 12:34,"80 Highland St, Los Angeles, CA 90001" +305567,Lightning Charging Cable,1,14.95,12/30/19 13:10,"613 South St, San Francisco, CA 94016" +305568,27in 4K Gaming Monitor,1,389.99,12/15/19 12:21,"100 Dogwood St, Austin, TX 73301" +305569,AAA Batteries (4-pack),2,2.99,12/19/19 18:59,"172 6th St, Atlanta, GA 30301" +305570,Lightning Charging Cable,1,14.95,12/22/19 21:33,"794 Church St, Atlanta, GA 30301" +305571,Wired Headphones,1,11.99,12/03/19 12:01,"363 2nd St, Dallas, TX 75001" +305572,27in FHD Monitor,1,149.99,12/15/19 15:15,"318 North St, San Francisco, CA 94016" +305573,27in FHD Monitor,1,149.99,12/22/19 12:29,"97 Spruce St, Portland, OR 97035" +305574,USB-C Charging Cable,1,11.95,12/08/19 10:07,"621 5th St, San Francisco, CA 94016" +305575,AAA Batteries (4-pack),1,2.99,12/07/19 21:25,"827 Center St, San Francisco, CA 94016" +305576,Bose SoundSport Headphones,1,99.99,12/26/19 22:25,"744 12th St, Boston, MA 02215" +305577,AAA Batteries (4-pack),1,2.99,12/31/19 14:02,"311 West St, Los Angeles, CA 90001" +305578,AA Batteries (4-pack),1,3.84,12/04/19 18:34,"257 Ridge St, Seattle, WA 98101" +305579,Bose SoundSport Headphones,1,99.99,12/17/19 14:21,"963 10th St, Boston, MA 02215" +305580,27in FHD Monitor,1,149.99,12/04/19 01:47,"880 Dogwood St, San Francisco, CA 94016" +305581,Apple Airpods Headphones,1,150,12/24/19 11:46,"855 Jefferson St, Atlanta, GA 30301" +305582,Lightning Charging Cable,1,14.95,12/02/19 14:31,"106 Hill St, Dallas, TX 75001" +305583,USB-C Charging Cable,1,11.95,12/02/19 19:09,"833 5th St, Los Angeles, CA 90001" +305584,AA Batteries (4-pack),1,3.84,12/11/19 14:24,"631 Elm St, New York City, NY 10001" +305585,AA Batteries (4-pack),2,3.84,12/20/19 02:07,"901 Lincoln St, New York City, NY 10001" +305586,Wired Headphones,1,11.99,12/03/19 09:28,"691 South St, Boston, MA 02215" +305587,AA Batteries (4-pack),2,3.84,12/05/19 21:48,"175 Center St, San Francisco, CA 94016" +305588,Bose SoundSport Headphones,1,99.99,12/23/19 06:10,"548 Cherry St, San Francisco, CA 94016" +305589,Wired Headphones,1,11.99,12/12/19 11:34,"704 North St, Dallas, TX 75001" +305590,USB-C Charging Cable,1,11.95,12/19/19 14:31,"185 Wilson St, Boston, MA 02215" +305591,AAA Batteries (4-pack),1,2.99,12/06/19 13:34,"19 Cedar St, Los Angeles, CA 90001" +305592,Flatscreen TV,1,300,12/17/19 19:54,"41 Wilson St, San Francisco, CA 94016" +305593,Wired Headphones,1,11.99,12/14/19 13:14,"273 Church St, Los Angeles, CA 90001" +305594,Apple Airpods Headphones,1,150,12/17/19 00:14,"844 Cedar St, San Francisco, CA 94016" +305595,Wired Headphones,1,11.99,12/25/19 19:14,"952 5th St, San Francisco, CA 94016" +305596,iPhone,1,700,12/08/19 13:20,"109 Highland St, Los Angeles, CA 90001" +305597,AA Batteries (4-pack),1,3.84,12/28/19 15:49,"792 Highland St, New York City, NY 10001" +305598,iPhone,1,700,12/05/19 17:13,"502 Main St, Boston, MA 02215" +305598,Wired Headphones,1,11.99,12/05/19 17:13,"502 Main St, Boston, MA 02215" +305599,34in Ultrawide Monitor,1,379.99,12/29/19 21:53,"567 Madison St, Boston, MA 02215" +305600,Apple Airpods Headphones,1,150,12/12/19 06:12,"39 Chestnut St, Austin, TX 73301" +305601,27in FHD Monitor,1,149.99,12/07/19 00:53,"29 Jefferson St, San Francisco, CA 94016" +305602,iPhone,1,700,12/25/19 10:03,"976 2nd St, Seattle, WA 98101" +305603,AAA Batteries (4-pack),1,2.99,12/04/19 13:24,"363 Jefferson St, Austin, TX 73301" +305604,AAA Batteries (4-pack),1,2.99,12/22/19 16:10,"660 2nd St, Atlanta, GA 30301" +305605,AAA Batteries (4-pack),1,2.99,12/23/19 10:16,"21 Cedar St, San Francisco, CA 94016" +305606,iPhone,1,700,12/13/19 15:07,"647 Pine St, Portland, OR 97035" +305607,USB-C Charging Cable,1,11.95,12/01/19 22:22,"160 2nd St, Los Angeles, CA 90001" +305608,AA Batteries (4-pack),2,3.84,12/01/19 14:12,"240 Sunset St, Dallas, TX 75001" +305609,USB-C Charging Cable,1,11.95,12/02/19 12:31,"637 Dogwood St, Seattle, WA 98101" +305610,27in 4K Gaming Monitor,1,389.99,12/07/19 08:56,"292 Jefferson St, New York City, NY 10001" +305611,AA Batteries (4-pack),3,3.84,12/21/19 21:45,"59 Adams St, Portland, ME 04101" +305612,AA Batteries (4-pack),3,3.84,12/25/19 12:00,"831 Willow St, Dallas, TX 75001" +305613,USB-C Charging Cable,1,11.95,12/06/19 19:37,"140 River St, San Francisco, CA 94016" +305614,AA Batteries (4-pack),1,3.84,12/03/19 12:41,"817 Johnson St, Los Angeles, CA 90001" +305615,Macbook Pro Laptop,1,1700,12/25/19 18:55,"691 Maple St, Portland, OR 97035" +305616,Wired Headphones,1,11.99,12/18/19 11:55,"362 12th St, Seattle, WA 98101" +305617,Bose SoundSport Headphones,1,99.99,12/11/19 20:06,"736 Johnson St, Seattle, WA 98101" +305618,Bose SoundSport Headphones,1,99.99,12/23/19 15:05,"461 14th St, Seattle, WA 98101" +305619,USB-C Charging Cable,1,11.95,12/08/19 07:53,"318 Washington St, New York City, NY 10001" +305620,Apple Airpods Headphones,1,150,12/12/19 17:32,"842 Main St, Austin, TX 73301" +305621,USB-C Charging Cable,1,11.95,12/16/19 08:18,"327 Lincoln St, New York City, NY 10001" +305622,Bose SoundSport Headphones,1,99.99,12/05/19 17:07,"245 Hickory St, Portland, OR 97035" +305622,Bose SoundSport Headphones,1,99.99,12/05/19 17:07,"245 Hickory St, Portland, OR 97035" +305623,Wired Headphones,1,11.99,12/05/19 18:46,"127 River St, Los Angeles, CA 90001" +305624,USB-C Charging Cable,1,11.95,12/10/19 22:50,"410 Chestnut St, New York City, NY 10001" +305625,27in 4K Gaming Monitor,1,389.99,12/22/19 05:26,"744 Highland St, New York City, NY 10001" +305626,Wired Headphones,1,11.99,12/25/19 11:23,"950 West St, Portland, ME 04101" +305627,Lightning Charging Cable,1,14.95,12/07/19 15:38,"666 9th St, Atlanta, GA 30301" +305628,Apple Airpods Headphones,1,150,12/06/19 07:20,"725 5th St, San Francisco, CA 94016" +305629,AA Batteries (4-pack),1,3.84,12/09/19 10:48,"819 Center St, San Francisco, CA 94016" +305630,AA Batteries (4-pack),1,3.84,12/27/19 18:53,"966 Willow St, San Francisco, CA 94016" +305631,Macbook Pro Laptop,1,1700,12/08/19 05:35,"786 Madison St, Boston, MA 02215" +305632,Wired Headphones,1,11.99,12/04/19 08:49,"368 Adams St, Boston, MA 02215" +305632,Apple Airpods Headphones,1,150,12/04/19 08:49,"368 Adams St, Boston, MA 02215" +305633,27in FHD Monitor,1,149.99,12/20/19 13:48,"670 12th St, Los Angeles, CA 90001" +305634,ThinkPad Laptop,1,999.99,12/06/19 13:57,"717 Jefferson St, Atlanta, GA 30301" +305635,Apple Airpods Headphones,1,150,12/27/19 19:14,"486 Hill St, Seattle, WA 98101" +305636,34in Ultrawide Monitor,1,379.99,12/29/19 14:05,"635 Spruce St, Dallas, TX 75001" +305637,Wired Headphones,1,11.99,12/11/19 16:31,"315 Meadow St, Seattle, WA 98101" +305637,Lightning Charging Cable,1,14.95,12/11/19 16:31,"315 Meadow St, Seattle, WA 98101" +305638,Lightning Charging Cable,1,14.95,12/14/19 19:23,"321 Highland St, New York City, NY 10001" +305639,Lightning Charging Cable,1,14.95,12/19/19 10:10,"154 Meadow St, San Francisco, CA 94016" +305640,AAA Batteries (4-pack),2,2.99,12/07/19 10:26,"883 Lake St, Dallas, TX 75001" +305641,Lightning Charging Cable,1,14.95,12/16/19 01:53,"512 Hickory St, Seattle, WA 98101" +305642,20in Monitor,1,109.99,12/24/19 09:45,"97 12th St, New York City, NY 10001" +305643,LG Washing Machine,1,600.0,12/25/19 20:07,"78 Forest St, Austin, TX 73301" +305644,Bose SoundSport Headphones,1,99.99,12/19/19 22:01,"401 Washington St, New York City, NY 10001" +305645,USB-C Charging Cable,1,11.95,12/20/19 08:14,"554 Ridge St, San Francisco, CA 94016" +305646,Wired Headphones,1,11.99,12/21/19 12:03,"120 Jefferson St, Portland, OR 97035" +305647,AAA Batteries (4-pack),2,2.99,12/28/19 15:39,"97 2nd St, Los Angeles, CA 90001" +305648,27in FHD Monitor,1,149.99,12/04/19 08:50,"904 Spruce St, Los Angeles, CA 90001" +305649,Bose SoundSport Headphones,1,99.99,12/24/19 12:38,"201 Adams St, New York City, NY 10001" +305650,27in 4K Gaming Monitor,1,389.99,12/01/19 17:13,"762 Church St, Los Angeles, CA 90001" +305651,AAA Batteries (4-pack),1,2.99,12/21/19 22:57,"110 Maple St, Los Angeles, CA 90001" +305652,AAA Batteries (4-pack),1,2.99,12/08/19 17:09,"179 West St, San Francisco, CA 94016" +305653,AA Batteries (4-pack),1,3.84,12/31/19 23:18,"657 7th St, San Francisco, CA 94016" +305654,USB-C Charging Cable,1,11.95,12/16/19 18:50,"787 Cedar St, Portland, OR 97035" +305655,Bose SoundSport Headphones,1,99.99,12/18/19 21:30,"281 Spruce St, Los Angeles, CA 90001" +305656,AAA Batteries (4-pack),1,2.99,12/05/19 07:13,"539 Lincoln St, Los Angeles, CA 90001" +305657,Lightning Charging Cable,1,14.95,12/19/19 18:38,"738 South St, Los Angeles, CA 90001" +305658,Wired Headphones,1,11.99,12/13/19 12:09,"16 8th St, San Francisco, CA 94016" +305659,iPhone,1,700,12/02/19 08:13,"155 Jackson St, Atlanta, GA 30301" +305660,Apple Airpods Headphones,1,150,12/25/19 17:14,"140 South St, San Francisco, CA 94016" +305661,AAA Batteries (4-pack),3,2.99,12/24/19 07:10,"260 Ridge St, Los Angeles, CA 90001" +305662,Bose SoundSport Headphones,1,99.99,12/14/19 15:13,"336 Wilson St, Dallas, TX 75001" +305663,Lightning Charging Cable,1,14.95,12/18/19 20:13,"119 Walnut St, Atlanta, GA 30301" +305664,AA Batteries (4-pack),1,3.84,12/04/19 18:03,"10 6th St, Seattle, WA 98101" +305665,AA Batteries (4-pack),1,3.84,12/10/19 14:18,"800 Sunset St, New York City, NY 10001" +305666,Vareebadd Phone,1,400,12/09/19 21:44,"317 Forest St, Boston, MA 02215" +305666,USB-C Charging Cable,2,11.95,12/09/19 21:44,"317 Forest St, Boston, MA 02215" +305667,Bose SoundSport Headphones,1,99.99,12/06/19 09:49,"64 1st St, Austin, TX 73301" +305668,AA Batteries (4-pack),1,3.84,12/04/19 15:53,"10 West St, Austin, TX 73301" +305669,Wired Headphones,1,11.99,12/31/19 23:20,"847 Jackson St, Seattle, WA 98101" +305670,Bose SoundSport Headphones,1,99.99,12/08/19 08:10,"807 North St, Austin, TX 73301" +305671,ThinkPad Laptop,1,999.99,12/15/19 07:00,"853 Lincoln St, Atlanta, GA 30301" +305672,AA Batteries (4-pack),1,3.84,12/01/19 16:40,"8 Cedar St, Los Angeles, CA 90001" +305673,USB-C Charging Cable,2,11.95,12/11/19 03:18,"112 8th St, Boston, MA 02215" +305674,AA Batteries (4-pack),1,3.84,12/07/19 21:14,"738 Madison St, Atlanta, GA 30301" +305675,Lightning Charging Cable,1,14.95,12/13/19 22:45,"769 10th St, New York City, NY 10001" +305676,34in Ultrawide Monitor,1,379.99,12/16/19 08:46,"666 Walnut St, San Francisco, CA 94016" +305677,AAA Batteries (4-pack),2,2.99,12/26/19 17:42,"606 Sunset St, San Francisco, CA 94016" +305678,Wired Headphones,2,11.99,12/15/19 01:05,"909 South St, San Francisco, CA 94016" +305679,Wired Headphones,2,11.99,12/15/19 09:33,"31 Walnut St, San Francisco, CA 94016" +305680,USB-C Charging Cable,1,11.95,12/28/19 17:24,"30 1st St, Dallas, TX 75001" +305681,27in FHD Monitor,1,149.99,12/22/19 14:46,"534 Johnson St, Boston, MA 02215" +305682,USB-C Charging Cable,1,11.95,12/22/19 10:48,"14 Jefferson St, Boston, MA 02215" +305683,AA Batteries (4-pack),2,3.84,12/25/19 12:47,"525 North St, Atlanta, GA 30301" +305684,27in 4K Gaming Monitor,1,389.99,12/13/19 15:34,"859 Cedar St, Los Angeles, CA 90001" +305685,Bose SoundSport Headphones,1,99.99,12/04/19 18:39,"765 Cedar St, Los Angeles, CA 90001" +305686,Lightning Charging Cable,3,14.95,12/24/19 17:10,"954 Park St, Austin, TX 73301" +305687,Apple Airpods Headphones,1,150,12/04/19 18:49,"662 7th St, Boston, MA 02215" +305688,Lightning Charging Cable,1,14.95,12/12/19 09:58,"339 Lakeview St, Austin, TX 73301" +305689,Wired Headphones,1,11.99,12/03/19 17:19,"360 Jackson St, Portland, OR 97035" +305690,AA Batteries (4-pack),1,3.84,12/20/19 20:43,"406 Chestnut St, Dallas, TX 75001" +305691,AAA Batteries (4-pack),1,2.99,12/15/19 15:21,"243 Adams St, Atlanta, GA 30301" +305692,iPhone,1,700,12/16/19 13:47,"647 North St, New York City, NY 10001" +305693,Wired Headphones,1,11.99,12/16/19 10:15,"949 West St, Los Angeles, CA 90001" +305694,Lightning Charging Cable,1,14.95,12/10/19 12:29,"336 Washington St, Los Angeles, CA 90001" +305695,Wired Headphones,1,11.99,12/10/19 19:43,"694 Park St, Los Angeles, CA 90001" +305696,AA Batteries (4-pack),2,3.84,12/31/19 16:14,"297 2nd St, Atlanta, GA 30301" +305697,Flatscreen TV,1,300,12/28/19 21:01,"463 Spruce St, Seattle, WA 98101" +305698,iPhone,1,700,12/17/19 12:36,"870 Hill St, Austin, TX 73301" +305699,Apple Airpods Headphones,1,150,12/05/19 13:49,"785 Hill St, Boston, MA 02215" +305700,USB-C Charging Cable,1,11.95,12/30/19 23:26,"913 Lincoln St, Atlanta, GA 30301" +305701,27in 4K Gaming Monitor,1,389.99,12/11/19 05:39,"454 Cedar St, Austin, TX 73301" +305702,AAA Batteries (4-pack),2,2.99,12/06/19 21:59,"356 14th St, Boston, MA 02215" +305703,Lightning Charging Cable,1,14.95,12/31/19 21:51,"511 Cedar St, Los Angeles, CA 90001" +305704,Bose SoundSport Headphones,1,99.99,12/21/19 14:18,"92 Cherry St, San Francisco, CA 94016" +305705,34in Ultrawide Monitor,1,379.99,12/14/19 17:38,"371 Johnson St, Los Angeles, CA 90001" +305706,Flatscreen TV,1,300,12/23/19 16:01,"178 Cherry St, Boston, MA 02215" +305707,Apple Airpods Headphones,1,150,12/03/19 19:04,"915 2nd St, Los Angeles, CA 90001" +305708,Bose SoundSport Headphones,1,99.99,12/15/19 18:04,"367 Maple St, Seattle, WA 98101" +305709,Flatscreen TV,1,300,12/12/19 20:59,"469 Main St, New York City, NY 10001" +305710,AA Batteries (4-pack),1,3.84,12/05/19 16:04,"162 Chestnut St, Dallas, TX 75001" +305710,Lightning Charging Cable,1,14.95,12/05/19 16:04,"162 Chestnut St, Dallas, TX 75001" +305711,ThinkPad Laptop,1,999.99,12/17/19 21:12,"938 Maple St, Seattle, WA 98101" +305712,iPhone,1,700,12/13/19 20:31,"107 Main St, San Francisco, CA 94016" +305713,Apple Airpods Headphones,1,150,12/30/19 18:42,"428 South St, Austin, TX 73301" +305714,Lightning Charging Cable,1,14.95,12/08/19 09:24,"893 Lake St, Boston, MA 02215" +305715,Wired Headphones,1,11.99,12/08/19 21:00,"354 Cedar St, Atlanta, GA 30301" +305716,20in Monitor,1,109.99,12/15/19 09:20,"997 Lakeview St, Los Angeles, CA 90001" +305717,Wired Headphones,1,11.99,12/24/19 16:41,"486 Elm St, New York City, NY 10001" +305718,LG Washing Machine,1,600.0,12/02/19 22:21,"46 Jackson St, Portland, OR 97035" +305719,Wired Headphones,2,11.99,12/16/19 14:11,"19 9th St, New York City, NY 10001" +305720,Macbook Pro Laptop,1,1700,12/08/19 09:59,"624 11th St, Boston, MA 02215" +305721,27in 4K Gaming Monitor,1,389.99,12/24/19 16:14,"94 Lakeview St, Los Angeles, CA 90001" +305722,27in FHD Monitor,1,149.99,12/19/19 08:46,"814 Maple St, New York City, NY 10001" +305723,27in 4K Gaming Monitor,1,389.99,12/18/19 12:45,"477 11th St, New York City, NY 10001" +305724,34in Ultrawide Monitor,1,379.99,12/06/19 18:18,"367 Walnut St, San Francisco, CA 94016" +305725,USB-C Charging Cable,1,11.95,12/07/19 18:26,"723 Park St, Portland, ME 04101" +305726,AA Batteries (4-pack),2,3.84,12/10/19 20:40,"879 10th St, New York City, NY 10001" +305727,Lightning Charging Cable,1,14.95,12/12/19 23:17,"941 South St, Portland, OR 97035" +305728,Flatscreen TV,1,300,12/28/19 18:29,"285 Sunset St, Dallas, TX 75001" +305729,27in 4K Gaming Monitor,1,389.99,12/20/19 11:35,"137 Park St, Portland, OR 97035" +305730,27in FHD Monitor,1,149.99,12/06/19 23:50,"520 South St, New York City, NY 10001" +305731,USB-C Charging Cable,2,11.95,12/23/19 16:28,"853 Ridge St, New York City, NY 10001" +305732,USB-C Charging Cable,1,11.95,12/29/19 12:18,"65 Forest St, Atlanta, GA 30301" +305733,USB-C Charging Cable,1,11.95,12/05/19 13:35,"46 11th St, Los Angeles, CA 90001" +305734,Bose SoundSport Headphones,1,99.99,12/12/19 10:13,"874 Johnson St, Boston, MA 02215" +305735,ThinkPad Laptop,1,999.99,12/15/19 13:04,"915 Walnut St, Seattle, WA 98101" +305736,27in 4K Gaming Monitor,1,389.99,12/31/19 18:37,"583 Sunset St, Los Angeles, CA 90001" +305737,AA Batteries (4-pack),1,3.84,12/07/19 16:22,"139 Dogwood St, San Francisco, CA 94016" +305738,AAA Batteries (4-pack),3,2.99,12/09/19 15:17,"291 13th St, New York City, NY 10001" +305739,AA Batteries (4-pack),1,3.84,12/18/19 00:01,"259 7th St, Portland, OR 97035" +305740,Bose SoundSport Headphones,1,99.99,12/22/19 08:46,"879 Meadow St, Atlanta, GA 30301" +305741,27in FHD Monitor,1,149.99,12/31/19 09:29,"30 Jackson St, Atlanta, GA 30301" +305742,iPhone,1,700,12/08/19 20:13,"608 Lincoln St, Portland, OR 97035" +305743,Macbook Pro Laptop,1,1700,12/25/19 14:48,"561 Main St, San Francisco, CA 94016" +305744,USB-C Charging Cable,1,11.95,12/22/19 20:52,"936 7th St, Seattle, WA 98101" +305745,Apple Airpods Headphones,1,150,12/18/19 22:43,"420 Maple St, Austin, TX 73301" +305746,Flatscreen TV,1,300,12/24/19 19:14,"143 Dogwood St, Los Angeles, CA 90001" +305747,27in FHD Monitor,1,149.99,12/01/19 19:34,"510 Ridge St, San Francisco, CA 94016" +305748,Wired Headphones,1,11.99,12/10/19 21:38,"352 Pine St, San Francisco, CA 94016" +305749,Wired Headphones,1,11.99,12/22/19 15:16,"215 Elm St, Los Angeles, CA 90001" +305749,Lightning Charging Cable,1,14.95,12/22/19 15:16,"215 Elm St, Los Angeles, CA 90001" +305750,USB-C Charging Cable,1,11.95,12/30/19 20:06,"444 Hickory St, Atlanta, GA 30301" +305751,AA Batteries (4-pack),3,3.84,12/20/19 10:07,"426 North St, San Francisco, CA 94016" +305752,Bose SoundSport Headphones,1,99.99,12/29/19 21:09,"431 River St, Los Angeles, CA 90001" +305753,AA Batteries (4-pack),1,3.84,12/30/19 03:26,"511 2nd St, San Francisco, CA 94016" +305754,Lightning Charging Cable,1,14.95,12/20/19 15:34,"230 Dogwood St, San Francisco, CA 94016" +305755,USB-C Charging Cable,1,11.95,12/19/19 09:01,"215 2nd St, Los Angeles, CA 90001" +305756,AAA Batteries (4-pack),1,2.99,12/30/19 18:33,"772 Center St, Portland, OR 97035" +305757,27in 4K Gaming Monitor,1,389.99,12/05/19 09:20,"73 Madison St, San Francisco, CA 94016" +305758,iPhone,1,700,12/09/19 17:02,"826 Forest St, New York City, NY 10001" +305759,AA Batteries (4-pack),1,3.84,12/13/19 10:11,"897 Cherry St, San Francisco, CA 94016" +305760,USB-C Charging Cable,1,11.95,12/20/19 19:26,"139 Washington St, New York City, NY 10001" +305761,AA Batteries (4-pack),1,3.84,12/22/19 10:52,"190 Lincoln St, Portland, OR 97035" +305762,AAA Batteries (4-pack),3,2.99,12/27/19 13:00,"359 Pine St, Atlanta, GA 30301" +305763,34in Ultrawide Monitor,1,379.99,12/17/19 13:08,"256 Jefferson St, San Francisco, CA 94016" +305764,Lightning Charging Cable,1,14.95,12/13/19 17:19,"10 Lakeview St, Boston, MA 02215" +305765,AAA Batteries (4-pack),1,2.99,12/10/19 18:53,"762 Johnson St, Atlanta, GA 30301" +305766,Lightning Charging Cable,1,14.95,12/15/19 18:21,"575 Maple St, Atlanta, GA 30301" +305767,AAA Batteries (4-pack),1,2.99,12/07/19 08:49,"896 Madison St, Atlanta, GA 30301" +305768,Lightning Charging Cable,1,14.95,12/06/19 12:53,"240 Lakeview St, Seattle, WA 98101" +305769,USB-C Charging Cable,1,11.95,12/20/19 22:42,"439 Lake St, Los Angeles, CA 90001" +305770,ThinkPad Laptop,1,999.99,12/08/19 11:31,"846 Johnson St, Seattle, WA 98101" +305771,AAA Batteries (4-pack),1,2.99,12/01/19 14:34,"165 Walnut St, Atlanta, GA 30301" +305772,Wired Headphones,1,11.99,12/27/19 12:57,"371 13th St, Los Angeles, CA 90001" +305773,Wired Headphones,1,11.99,12/19/19 11:14,"103 12th St, Boston, MA 02215" +305774,27in FHD Monitor,1,149.99,12/25/19 17:38,"186 North St, Seattle, WA 98101" +305775,Google Phone,1,600,12/08/19 12:43,"356 North St, Los Angeles, CA 90001" +305775,USB-C Charging Cable,1,11.95,12/08/19 12:43,"356 North St, Los Angeles, CA 90001" +305776,ThinkPad Laptop,1,999.99,12/11/19 19:17,"166 Willow St, Dallas, TX 75001" +305777,Vareebadd Phone,1,400,12/22/19 18:50,"286 Lake St, Atlanta, GA 30301" +305777,Bose SoundSport Headphones,1,99.99,12/22/19 18:50,"286 Lake St, Atlanta, GA 30301" +305778,Lightning Charging Cable,1,14.95,12/21/19 14:19,"554 Madison St, San Francisco, CA 94016" +305779,27in 4K Gaming Monitor,1,389.99,12/26/19 10:20,"530 Hickory St, Atlanta, GA 30301" +305780,AA Batteries (4-pack),1,3.84,12/24/19 00:15,"994 Walnut St, San Francisco, CA 94016" +305781,USB-C Charging Cable,1,11.95,12/11/19 14:11,"179 Center St, Atlanta, GA 30301" +305782,Bose SoundSport Headphones,1,99.99,12/30/19 20:31,"747 Park St, San Francisco, CA 94016" +305783,Bose SoundSport Headphones,1,99.99,12/20/19 19:18,"617 North St, Seattle, WA 98101" +305784,Lightning Charging Cable,1,14.95,12/22/19 21:06,"911 River St, Seattle, WA 98101" +305785,Apple Airpods Headphones,1,150,12/29/19 21:56,"953 13th St, San Francisco, CA 94016" +305786,AAA Batteries (4-pack),2,2.99,12/17/19 11:03,"593 12th St, New York City, NY 10001" +305787,AAA Batteries (4-pack),1,2.99,12/28/19 09:21,"763 Pine St, Dallas, TX 75001" +305788,Apple Airpods Headphones,1,150,12/19/19 10:07,"679 Madison St, Boston, MA 02215" +305789,27in 4K Gaming Monitor,1,389.99,12/15/19 17:23,"785 Lakeview St, Seattle, WA 98101" +305790,27in 4K Gaming Monitor,1,389.99,12/13/19 12:20,"747 Elm St, Austin, TX 73301" +305791,Wired Headphones,1,11.99,12/24/19 21:01,"124 Jefferson St, Seattle, WA 98101" +305791,AA Batteries (4-pack),1,3.84,12/24/19 21:01,"124 Jefferson St, Seattle, WA 98101" +305792,Flatscreen TV,1,300,12/12/19 21:49,"651 9th St, Los Angeles, CA 90001" +305793,27in 4K Gaming Monitor,1,389.99,12/14/19 19:34,"848 Pine St, New York City, NY 10001" +305794,27in FHD Monitor,1,149.99,12/11/19 22:14,"654 Cedar St, Austin, TX 73301" +305795,AA Batteries (4-pack),1,3.84,12/04/19 11:23,"398 North St, New York City, NY 10001" +305796,AA Batteries (4-pack),1,3.84,12/22/19 08:45,"605 Hickory St, Atlanta, GA 30301" +305797,AA Batteries (4-pack),1,3.84,12/04/19 17:49,"49 8th St, Austin, TX 73301" +305798,USB-C Charging Cable,1,11.95,12/13/19 11:27,"550 Sunset St, Austin, TX 73301" +305799,27in FHD Monitor,1,149.99,12/13/19 20:12,"440 5th St, San Francisco, CA 94016" +305800,AAA Batteries (4-pack),1,2.99,12/09/19 10:14,"733 Lakeview St, Dallas, TX 75001" +305801,Apple Airpods Headphones,1,150,12/10/19 13:02,"807 Maple St, San Francisco, CA 94016" +305802,Wired Headphones,2,11.99,12/03/19 12:18,"949 Main St, Los Angeles, CA 90001" +305803,27in 4K Gaming Monitor,1,389.99,12/08/19 19:35,"656 Forest St, Seattle, WA 98101" +305804,Wired Headphones,1,11.99,12/09/19 20:00,"700 9th St, Portland, OR 97035" +305805,AAA Batteries (4-pack),1,2.99,12/20/19 10:40,"602 Ridge St, Boston, MA 02215" +305806,Wired Headphones,1,11.99,12/27/19 21:22,"69 Willow St, Los Angeles, CA 90001" +305807,ThinkPad Laptop,1,999.99,12/18/19 07:59,"29 Cherry St, Portland, OR 97035" +305808,AA Batteries (4-pack),1,3.84,12/29/19 13:32,"659 12th St, San Francisco, CA 94016" +305809,iPhone,1,700,12/08/19 06:50,"991 West St, New York City, NY 10001" +305810,AAA Batteries (4-pack),2,2.99,12/04/19 17:16,"874 Willow St, San Francisco, CA 94016" +305811,Vareebadd Phone,1,400,12/13/19 17:29,"977 South St, Atlanta, GA 30301" +305812,USB-C Charging Cable,1,11.95,12/25/19 17:25,"97 Lincoln St, Los Angeles, CA 90001" +305813,27in FHD Monitor,1,149.99,12/14/19 13:51,"181 Park St, San Francisco, CA 94016" +305814,20in Monitor,1,109.99,12/23/19 17:07,"15 10th St, Los Angeles, CA 90001" +305815,USB-C Charging Cable,1,11.95,12/05/19 00:02,"850 Dogwood St, San Francisco, CA 94016" +305816,USB-C Charging Cable,2,11.95,12/11/19 11:14,"661 2nd St, Dallas, TX 75001" +305817,AA Batteries (4-pack),1,3.84,12/11/19 11:27,"567 7th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +305818,Macbook Pro Laptop,1,1700,12/08/19 12:43,"764 Sunset St, Boston, MA 02215" +305819,27in 4K Gaming Monitor,1,389.99,12/20/19 11:46,"669 11th St, New York City, NY 10001" +305820,Google Phone,1,600,12/06/19 17:30,"919 Lincoln St, Austin, TX 73301" +305820,Wired Headphones,1,11.99,12/06/19 17:30,"919 Lincoln St, Austin, TX 73301" +305821,AA Batteries (4-pack),1,3.84,12/24/19 22:14,"85 Meadow St, Austin, TX 73301" +305822,Apple Airpods Headphones,1,150,12/25/19 17:52,"839 6th St, Austin, TX 73301" +305823,20in Monitor,1,109.99,12/25/19 11:50,"249 Pine St, Dallas, TX 75001" +305824,Wired Headphones,1,11.99,12/23/19 12:59,"284 Lake St, San Francisco, CA 94016" +305825,Flatscreen TV,1,300,12/09/19 09:48,"643 Lakeview St, New York City, NY 10001" +305826,Macbook Pro Laptop,1,1700,12/30/19 10:45,"907 2nd St, Los Angeles, CA 90001" +305827,AA Batteries (4-pack),1,3.84,12/04/19 09:55,"191 North St, Los Angeles, CA 90001" +305828,AAA Batteries (4-pack),1,2.99,12/01/19 09:39,"430 6th St, New York City, NY 10001" +305829,Lightning Charging Cable,1,14.95,12/16/19 20:56,"9 Adams St, San Francisco, CA 94016" +305830,20in Monitor,1,109.99,12/15/19 10:11,"178 Maple St, Los Angeles, CA 90001" +305831,USB-C Charging Cable,1,11.95,12/06/19 21:45,"46 Center St, San Francisco, CA 94016" +305832,Google Phone,1,600,12/04/19 12:47,"417 Church St, San Francisco, CA 94016" +305833,USB-C Charging Cable,1,11.95,12/05/19 06:49,"911 Forest St, Austin, TX 73301" +305834,USB-C Charging Cable,3,11.95,12/12/19 12:12,"152 2nd St, Boston, MA 02215" +305835,Bose SoundSport Headphones,1,99.99,12/06/19 21:30,"500 Hill St, Dallas, TX 75001" +305836,Google Phone,1,600,12/27/19 14:24,"116 2nd St, Boston, MA 02215" +305837,AAA Batteries (4-pack),2,2.99,12/31/19 10:13,"770 Meadow St, New York City, NY 10001" +305838,AA Batteries (4-pack),1,3.84,12/13/19 10:55,"706 Pine St, San Francisco, CA 94016" +305839,27in 4K Gaming Monitor,1,389.99,12/15/19 07:51,"105 5th St, Los Angeles, CA 90001" +305840,Lightning Charging Cable,1,14.95,12/18/19 18:37,"552 9th St, Los Angeles, CA 90001" +305841,iPhone,1,700,12/31/19 12:47,"86 13th St, Dallas, TX 75001" +305842,20in Monitor,1,109.99,12/30/19 12:14,"615 Meadow St, Los Angeles, CA 90001" +305843,Bose SoundSport Headphones,1,99.99,12/18/19 18:37,"433 Washington St, Atlanta, GA 30301" +305844,Vareebadd Phone,1,400,12/31/19 20:22,"862 Spruce St, San Francisco, CA 94016" +305845,Bose SoundSport Headphones,1,99.99,12/14/19 09:59,"566 Cedar St, San Francisco, CA 94016" +305846,ThinkPad Laptop,1,999.99,12/20/19 14:52,"293 13th St, Portland, OR 97035" +305847,Wired Headphones,1,11.99,12/13/19 16:26,"583 Jefferson St, Seattle, WA 98101" +305847,Lightning Charging Cable,1,14.95,12/13/19 16:26,"583 Jefferson St, Seattle, WA 98101" +305848,Wired Headphones,1,11.99,12/27/19 19:05,"15 Main St, San Francisco, CA 94016" +305849,AA Batteries (4-pack),1,3.84,12/12/19 11:11,"396 Ridge St, Los Angeles, CA 90001" +305850,USB-C Charging Cable,1,11.95,12/08/19 13:46,"843 2nd St, San Francisco, CA 94016" +305851,34in Ultrawide Monitor,1,379.99,12/04/19 22:16,"821 7th St, Boston, MA 02215" +305852,USB-C Charging Cable,1,11.95,12/14/19 17:09,"266 1st St, San Francisco, CA 94016" +305853,AA Batteries (4-pack),1,3.84,12/01/19 08:40,"236 5th St, Portland, OR 97035" +305854,Bose SoundSport Headphones,1,99.99,12/18/19 20:18,"47 Forest St, San Francisco, CA 94016" +305855,Apple Airpods Headphones,2,150,12/17/19 23:02,"179 Spruce St, San Francisco, CA 94016" +305856,27in 4K Gaming Monitor,1,389.99,12/21/19 20:55,"604 Hill St, Los Angeles, CA 90001" +305857,27in 4K Gaming Monitor,1,389.99,12/06/19 09:12,"930 1st St, Austin, TX 73301" +305858,USB-C Charging Cable,1,11.95,12/19/19 02:00,"221 Park St, Los Angeles, CA 90001" +305859,Lightning Charging Cable,1,14.95,12/30/19 12:15,"142 2nd St, San Francisco, CA 94016" +305860,34in Ultrawide Monitor,1,379.99,12/21/19 08:21,"389 North St, Seattle, WA 98101" +305861,Apple Airpods Headphones,1,150,12/21/19 10:35,"149 Lakeview St, San Francisco, CA 94016" +305862,USB-C Charging Cable,1,11.95,12/08/19 16:07,"612 Washington St, San Francisco, CA 94016" +305863,USB-C Charging Cable,1,11.95,12/18/19 06:24,"919 Church St, Austin, TX 73301" +305864,Lightning Charging Cable,1,14.95,12/14/19 19:39,"399 Elm St, New York City, NY 10001" +305865,Macbook Pro Laptop,1,1700,12/01/19 17:39,"550 Pine St, Seattle, WA 98101" +305866,Lightning Charging Cable,1,14.95,12/25/19 19:27,"274 Lake St, San Francisco, CA 94016" +305867,AAA Batteries (4-pack),2,2.99,01/01/20 00:23,"286 Lakeview St, Seattle, WA 98101" +305868,Bose SoundSport Headphones,1,99.99,12/01/19 17:30,"909 Dogwood St, San Francisco, CA 94016" +305869,USB-C Charging Cable,1,11.95,12/28/19 15:26,"821 12th St, New York City, NY 10001" +305870,Lightning Charging Cable,1,14.95,12/24/19 02:52,"868 11th St, San Francisco, CA 94016" +305871,Flatscreen TV,1,300,12/08/19 07:01,"390 Lincoln St, New York City, NY 10001" +305872,USB-C Charging Cable,1,11.95,12/12/19 21:28,"532 Elm St, San Francisco, CA 94016" +305873,Bose SoundSport Headphones,1,99.99,12/13/19 19:25,"116 14th St, Boston, MA 02215" +305874,iPhone,1,700,12/26/19 20:16,"25 4th St, Seattle, WA 98101" +305875,Bose SoundSport Headphones,1,99.99,12/24/19 19:11,"848 Walnut St, Portland, OR 97035" +305876,Apple Airpods Headphones,1,150,12/26/19 21:19,"635 Church St, New York City, NY 10001" +305877,Bose SoundSport Headphones,1,99.99,12/26/19 21:22,"775 Hickory St, Dallas, TX 75001" +305878,AA Batteries (4-pack),1,3.84,12/07/19 09:18,"936 Willow St, Dallas, TX 75001" +305878,Apple Airpods Headphones,1,150,12/07/19 09:18,"936 Willow St, Dallas, TX 75001" +305879,Wired Headphones,1,11.99,12/03/19 14:15,"659 Sunset St, San Francisco, CA 94016" +305880,USB-C Charging Cable,1,11.95,12/14/19 01:07,"904 West St, Los Angeles, CA 90001" +305881,Apple Airpods Headphones,1,150,12/01/19 19:54,"399 Park St, Los Angeles, CA 90001" +305882,iPhone,1,700,12/31/19 17:15,"587 7th St, San Francisco, CA 94016" +305883,USB-C Charging Cable,1,11.95,12/22/19 13:23,"387 6th St, Portland, OR 97035" +305884,USB-C Charging Cable,1,11.95,12/11/19 15:17,"537 Lincoln St, San Francisco, CA 94016" +305885,AA Batteries (4-pack),2,3.84,12/01/19 21:35,"183 North St, San Francisco, CA 94016" +305886,Apple Airpods Headphones,1,150,12/06/19 11:39,"2 Lake St, New York City, NY 10001" +305887,AA Batteries (4-pack),1,3.84,12/15/19 21:42,"669 West St, San Francisco, CA 94016" +305888,Lightning Charging Cable,1,14.95,12/19/19 19:22,"692 Main St, Los Angeles, CA 90001" +305889,AAA Batteries (4-pack),1,2.99,12/15/19 23:29,"68 Maple St, Dallas, TX 75001" +305890,AA Batteries (4-pack),1,3.84,12/06/19 12:07,"11 Hill St, Dallas, TX 75001" +305891,34in Ultrawide Monitor,1,379.99,12/25/19 14:43,"340 Cedar St, Austin, TX 73301" +305892,USB-C Charging Cable,1,11.95,12/13/19 08:49,"661 Lincoln St, Atlanta, GA 30301" +305893,AAA Batteries (4-pack),1,2.99,12/21/19 15:40,"688 Johnson St, San Francisco, CA 94016" +305894,ThinkPad Laptop,1,999.99,12/06/19 11:41,"889 14th St, San Francisco, CA 94016" +305895,Vareebadd Phone,1,400,12/26/19 09:57,"410 Hickory St, Austin, TX 73301" +305896,27in FHD Monitor,1,149.99,12/12/19 21:30,"27 North St, Los Angeles, CA 90001" +305897,ThinkPad Laptop,1,999.99,12/23/19 12:53,"891 River St, Seattle, WA 98101" +305898,Google Phone,1,600,12/26/19 04:35,"79 Madison St, Boston, MA 02215" +305899,Apple Airpods Headphones,1,150,12/22/19 12:18,"340 North St, Portland, OR 97035" +305900,Bose SoundSport Headphones,1,99.99,12/10/19 09:53,"524 2nd St, Los Angeles, CA 90001" +305901,USB-C Charging Cable,1,11.95,12/20/19 21:48,"184 Center St, New York City, NY 10001" +305902,Apple Airpods Headphones,1,150,12/07/19 14:01,"816 8th St, New York City, NY 10001" +305903,USB-C Charging Cable,1,11.95,12/14/19 11:52,"731 Willow St, Atlanta, GA 30301" +305904,AAA Batteries (4-pack),2,2.99,12/15/19 21:16,"410 Maple St, Boston, MA 02215" +305905,Bose SoundSport Headphones,1,99.99,12/30/19 12:36,"41 Forest St, Austin, TX 73301" +305906,27in FHD Monitor,1,149.99,12/31/19 16:31,"935 Highland St, Boston, MA 02215" +305907,iPhone,1,700,12/21/19 18:08,"652 South St, Atlanta, GA 30301" +305908,USB-C Charging Cable,2,11.95,12/10/19 11:12,"377 Church St, Dallas, TX 75001" +305909,Google Phone,1,600,12/26/19 22:37,"705 Walnut St, Seattle, WA 98101" +305910,Apple Airpods Headphones,1,150,12/22/19 09:31,"598 South St, Atlanta, GA 30301" +305911,USB-C Charging Cable,2,11.95,12/22/19 16:03,"706 12th St, Seattle, WA 98101" +305912,Apple Airpods Headphones,1,150,12/30/19 16:41,"694 4th St, San Francisco, CA 94016" +305913,ThinkPad Laptop,1,999.99,12/15/19 00:57,"281 Dogwood St, Dallas, TX 75001" +305914,USB-C Charging Cable,1,11.95,12/25/19 18:14,"855 Madison St, Atlanta, GA 30301" +305915,Wired Headphones,1,11.99,12/12/19 16:09,"119 6th St, Los Angeles, CA 90001" +305916,Bose SoundSport Headphones,1,99.99,12/03/19 07:41,"304 6th St, Portland, ME 04101" +305917,27in FHD Monitor,1,149.99,12/26/19 09:57,"739 Center St, Los Angeles, CA 90001" +305918,34in Ultrawide Monitor,1,379.99,12/01/19 06:10,"531 South St, Austin, TX 73301" +305919,AA Batteries (4-pack),1,3.84,12/09/19 12:23,"606 Forest St, Seattle, WA 98101" +305920,Bose SoundSport Headphones,1,99.99,12/09/19 22:03,"965 Willow St, Los Angeles, CA 90001" +305921,Apple Airpods Headphones,1,150,12/12/19 10:12,"762 Jefferson St, Atlanta, GA 30301" +305922,iPhone,1,700,12/25/19 23:18,"786 North St, Boston, MA 02215" +305923,Lightning Charging Cable,1,14.95,12/12/19 14:09,"375 Wilson St, New York City, NY 10001" +305924,AA Batteries (4-pack),2,3.84,12/01/19 11:24,"525 Dogwood St, New York City, NY 10001" +305925,USB-C Charging Cable,1,11.95,12/23/19 21:52,"470 Pine St, New York City, NY 10001" +305926,Lightning Charging Cable,1,14.95,12/02/19 16:02,"299 Hill St, Portland, OR 97035" +305927,Google Phone,1,600,12/05/19 19:06,"549 Wilson St, Atlanta, GA 30301" +305928,AAA Batteries (4-pack),2,2.99,12/18/19 10:37,"837 4th St, Boston, MA 02215" +305929,27in 4K Gaming Monitor,1,389.99,12/02/19 18:51,"528 Park St, Los Angeles, CA 90001" +305930,Bose SoundSport Headphones,1,99.99,12/19/19 01:32,"526 Madison St, Los Angeles, CA 90001" +305931,iPhone,1,700,12/09/19 18:41,"37 Lake St, San Francisco, CA 94016" +305931,Wired Headphones,2,11.99,12/09/19 18:41,"37 Lake St, San Francisco, CA 94016" +305932,AAA Batteries (4-pack),1,2.99,12/14/19 19:47,"804 Maple St, San Francisco, CA 94016" +305933,AA Batteries (4-pack),1,3.84,12/12/19 16:54,"90 Dogwood St, Austin, TX 73301" +305934,AA Batteries (4-pack),2,3.84,12/30/19 20:26,"311 Sunset St, New York City, NY 10001" +305935,USB-C Charging Cable,1,11.95,12/29/19 12:52,"485 Lakeview St, Boston, MA 02215" +305936,Bose SoundSport Headphones,1,99.99,12/28/19 09:52,"900 Madison St, Dallas, TX 75001" +305937,27in 4K Gaming Monitor,1,389.99,12/10/19 19:14,"326 Center St, Boston, MA 02215" +305938,27in FHD Monitor,1,149.99,12/24/19 17:39,"518 Walnut St, New York City, NY 10001" +305939,Flatscreen TV,1,300,12/25/19 12:36,"583 Cedar St, San Francisco, CA 94016" +305940,Bose SoundSport Headphones,1,99.99,12/23/19 13:36,"894 13th St, San Francisco, CA 94016" +305941,Bose SoundSport Headphones,1,99.99,12/20/19 09:37,"322 Adams St, Dallas, TX 75001" +305942,Wired Headphones,2,11.99,12/14/19 23:07,"60 2nd St, San Francisco, CA 94016" +305943,AAA Batteries (4-pack),1,2.99,12/25/19 16:49,"724 11th St, Los Angeles, CA 90001" +305944,27in FHD Monitor,1,149.99,12/19/19 21:26,"714 River St, Dallas, TX 75001" +305945,USB-C Charging Cable,1,11.95,12/08/19 11:57,"456 13th St, San Francisco, CA 94016" +305946,34in Ultrawide Monitor,1,379.99,12/16/19 21:51,"563 Adams St, San Francisco, CA 94016" +305947,Wired Headphones,1,11.99,12/14/19 21:55,"32 5th St, Los Angeles, CA 90001" +305948,Bose SoundSport Headphones,1,99.99,12/16/19 20:10,"355 Church St, Austin, TX 73301" +305949,Apple Airpods Headphones,1,150,12/08/19 10:41,"68 Willow St, Boston, MA 02215" +305950,Vareebadd Phone,1,400,12/02/19 14:36,"839 12th St, San Francisco, CA 94016" +305951,Lightning Charging Cable,1,14.95,12/08/19 17:37,"785 Hill St, San Francisco, CA 94016" +305952,27in 4K Gaming Monitor,1,389.99,12/22/19 11:03,"886 7th St, New York City, NY 10001" +305953,AAA Batteries (4-pack),1,2.99,12/10/19 15:15,"206 Lincoln St, Austin, TX 73301" +305954,AA Batteries (4-pack),2,3.84,12/31/19 18:54,"548 Maple St, Los Angeles, CA 90001" +305955,USB-C Charging Cable,1,11.95,12/12/19 08:34,"478 North St, New York City, NY 10001" +305956,AA Batteries (4-pack),1,3.84,12/03/19 14:53,"520 Jackson St, Seattle, WA 98101" +305957,Bose SoundSport Headphones,1,99.99,12/19/19 19:13,"82 Meadow St, New York City, NY 10001" +305958,USB-C Charging Cable,1,11.95,12/08/19 15:22,"63 6th St, Dallas, TX 75001" +305959,USB-C Charging Cable,1,11.95,12/05/19 09:42,"994 Adams St, San Francisco, CA 94016" +305960,Lightning Charging Cable,1,14.95,12/19/19 13:24,"77 Church St, Los Angeles, CA 90001" +305961,AA Batteries (4-pack),5,3.84,12/02/19 21:34,"708 Madison St, Los Angeles, CA 90001" +305962,27in FHD Monitor,1,149.99,12/19/19 19:24,"653 Jefferson St, San Francisco, CA 94016" +305963,AA Batteries (4-pack),1,3.84,12/24/19 21:55,"705 West St, Seattle, WA 98101" +305964,Bose SoundSport Headphones,1,99.99,12/22/19 14:11,"900 Walnut St, Portland, OR 97035" +305965,AAA Batteries (4-pack),3,2.99,12/01/19 23:23,"75 11th St, Boston, MA 02215" +305966,AAA Batteries (4-pack),1,2.99,12/23/19 10:08,"423 Willow St, New York City, NY 10001" +305967,ThinkPad Laptop,1,999.99,12/31/19 21:57,"210 Chestnut St, Dallas, TX 75001" +305968,USB-C Charging Cable,1,11.95,12/17/19 13:03,"562 South St, Los Angeles, CA 90001" +305969,AA Batteries (4-pack),1,3.84,12/12/19 15:18,"566 Spruce St, Dallas, TX 75001" +305970,AA Batteries (4-pack),1,3.84,12/29/19 14:21,"340 Lakeview St, Los Angeles, CA 90001" +305971,34in Ultrawide Monitor,1,379.99,12/19/19 16:00,"318 Highland St, Boston, MA 02215" +305972,Flatscreen TV,1,300,12/28/19 13:07,"128 West St, Boston, MA 02215" +305972,Flatscreen TV,1,300,12/28/19 13:07,"128 West St, Boston, MA 02215" +305973,iPhone,1,700,12/06/19 18:16,"752 9th St, Dallas, TX 75001" +305974,AAA Batteries (4-pack),2,2.99,12/05/19 12:54,"948 12th St, Austin, TX 73301" +305975,34in Ultrawide Monitor,1,379.99,12/13/19 18:10,"430 Lincoln St, Los Angeles, CA 90001" +305976,USB-C Charging Cable,1,11.95,12/09/19 21:16,"254 9th St, Atlanta, GA 30301" +305977,27in 4K Gaming Monitor,1,389.99,12/08/19 19:02,"862 Sunset St, Los Angeles, CA 90001" +305978,Apple Airpods Headphones,1,150,12/14/19 13:01,"164 10th St, Los Angeles, CA 90001" +305979,Lightning Charging Cable,1,14.95,12/23/19 09:05,"40 12th St, Los Angeles, CA 90001" +305980,27in FHD Monitor,1,149.99,12/04/19 17:58,"556 1st St, Austin, TX 73301" +305981,Apple Airpods Headphones,1,150,12/30/19 09:05,"710 Pine St, Boston, MA 02215" +305982,Flatscreen TV,1,300,12/25/19 20:05,"112 Meadow St, Atlanta, GA 30301" +305982,AA Batteries (4-pack),1,3.84,12/25/19 20:05,"112 Meadow St, Atlanta, GA 30301" +305983,AA Batteries (4-pack),1,3.84,12/25/19 00:46,"471 Madison St, San Francisco, CA 94016" +305984,AA Batteries (4-pack),1,3.84,12/20/19 12:56,"381 Chestnut St, San Francisco, CA 94016" +305985,Apple Airpods Headphones,1,150,12/01/19 13:17,"60 Meadow St, San Francisco, CA 94016" +305986,Bose SoundSport Headphones,1,99.99,12/04/19 09:57,"399 Spruce St, New York City, NY 10001" +305987,AAA Batteries (4-pack),1,2.99,12/11/19 15:06,"480 Hickory St, San Francisco, CA 94016" +305988,ThinkPad Laptop,1,999.99,12/02/19 14:23,"627 8th St, San Francisco, CA 94016" +305989,iPhone,1,700,12/03/19 14:41,"118 Center St, San Francisco, CA 94016" +305990,Vareebadd Phone,1,400,12/11/19 18:58,"527 Church St, Los Angeles, CA 90001" +305991,ThinkPad Laptop,1,999.99,12/18/19 17:46,"536 West St, Seattle, WA 98101" +305992,Lightning Charging Cable,1,14.95,12/03/19 20:25,"277 Hickory St, Dallas, TX 75001" +305993,Wired Headphones,1,11.99,12/14/19 21:02,"621 Forest St, Austin, TX 73301" +305994,AAA Batteries (4-pack),1,2.99,12/27/19 20:12,"800 Jackson St, New York City, NY 10001" +305995,Flatscreen TV,2,300,12/06/19 00:10,"530 Madison St, Seattle, WA 98101" +305996,Macbook Pro Laptop,1,1700,12/18/19 20:13,"226 Maple St, Dallas, TX 75001" +305997,AAA Batteries (4-pack),1,2.99,12/27/19 15:44,"16 9th St, Los Angeles, CA 90001" +305998,USB-C Charging Cable,1,11.95,12/12/19 13:39,"314 Sunset St, Atlanta, GA 30301" +305999,34in Ultrawide Monitor,1,379.99,12/11/19 13:08,"204 Lakeview St, San Francisco, CA 94016" +306000,Apple Airpods Headphones,1,150,12/10/19 16:34,"819 7th St, New York City, NY 10001" +306001,USB-C Charging Cable,1,11.95,12/17/19 00:19,"775 9th St, Dallas, TX 75001" +306002,Bose SoundSport Headphones,1,99.99,12/02/19 20:30,"775 River St, New York City, NY 10001" +306003,20in Monitor,1,109.99,12/22/19 14:09,"507 Adams St, Los Angeles, CA 90001" +306004,27in FHD Monitor,1,149.99,12/09/19 16:43,"648 Jackson St, San Francisco, CA 94016" +306005,USB-C Charging Cable,1,11.95,12/31/19 12:53,"386 Church St, Dallas, TX 75001" +306006,AA Batteries (4-pack),2,3.84,12/04/19 19:06,"49 Chestnut St, Seattle, WA 98101" +306007,Wired Headphones,1,11.99,12/15/19 21:11,"769 Walnut St, Dallas, TX 75001" +306008,Apple Airpods Headphones,1,150,12/14/19 19:39,"823 Spruce St, Los Angeles, CA 90001" +306009,Lightning Charging Cable,2,14.95,12/08/19 22:06,"742 Spruce St, Boston, MA 02215" +306010,Lightning Charging Cable,1,14.95,12/11/19 11:22,"784 7th St, Boston, MA 02215" +306011,AA Batteries (4-pack),1,3.84,12/03/19 11:45,"292 2nd St, Boston, MA 02215" +306012,Flatscreen TV,1,300,12/26/19 16:51,"977 Jefferson St, Los Angeles, CA 90001" +306013,Apple Airpods Headphones,1,150,12/07/19 16:30,"515 2nd St, Atlanta, GA 30301" +306014,27in FHD Monitor,1,149.99,12/21/19 13:01,"404 14th St, Boston, MA 02215" +306015,Apple Airpods Headphones,1,150,12/05/19 16:47,"388 Jackson St, New York City, NY 10001" +306016,Bose SoundSport Headphones,1,99.99,12/03/19 12:01,"777 Cherry St, San Francisco, CA 94016" +306017,Wired Headphones,1,11.99,12/28/19 17:38,"269 South St, Los Angeles, CA 90001" +306018,Bose SoundSport Headphones,1,99.99,12/30/19 07:59,"221 Johnson St, Boston, MA 02215" +306019,AAA Batteries (4-pack),1,2.99,12/12/19 21:03,"73 Adams St, Los Angeles, CA 90001" +306020,27in 4K Gaming Monitor,1,389.99,12/12/19 09:19,"724 11th St, Portland, OR 97035" +306021,USB-C Charging Cable,1,11.95,12/04/19 20:01,"187 West St, San Francisco, CA 94016" +306022,Bose SoundSport Headphones,1,99.99,12/22/19 09:17,"825 Johnson St, Boston, MA 02215" +306023,Google Phone,1,600,12/26/19 17:51,"144 West St, San Francisco, CA 94016" +306024,Wired Headphones,1,11.99,12/16/19 09:30,"307 Pine St, San Francisco, CA 94016" +306025,USB-C Charging Cable,1,11.95,12/23/19 19:53,"501 Forest St, Los Angeles, CA 90001" +306026,AAA Batteries (4-pack),1,2.99,12/05/19 21:21,"492 Jackson St, Portland, OR 97035" +306027,27in 4K Gaming Monitor,1,389.99,12/15/19 01:28,"675 Spruce St, San Francisco, CA 94016" +306028,Apple Airpods Headphones,1,150,12/26/19 22:51,"379 West St, San Francisco, CA 94016" +306029,Apple Airpods Headphones,1,150,12/05/19 13:34,"950 Forest St, Austin, TX 73301" +306030,Bose SoundSport Headphones,1,99.99,12/10/19 06:34,"506 Lakeview St, Atlanta, GA 30301" +306030,Bose SoundSport Headphones,1,99.99,12/10/19 06:34,"506 Lakeview St, Atlanta, GA 30301" +306031,27in FHD Monitor,1,149.99,12/19/19 19:10,"403 Pine St, San Francisco, CA 94016" +306032,Lightning Charging Cable,1,14.95,12/10/19 17:56,"331 River St, Boston, MA 02215" +306033,Lightning Charging Cable,1,14.95,12/06/19 07:50,"671 5th St, Atlanta, GA 30301" +306034,iPhone,1,700,12/11/19 10:49,"972 Adams St, Los Angeles, CA 90001" +306035,ThinkPad Laptop,1,999.99,12/11/19 20:32,"934 8th St, Los Angeles, CA 90001" +306036,Wired Headphones,1,11.99,12/02/19 13:06,"792 South St, Los Angeles, CA 90001" +306037,Wired Headphones,1,11.99,12/02/19 12:12,"932 Sunset St, San Francisco, CA 94016" +306038,Wired Headphones,1,11.99,12/10/19 22:07,"792 Main St, Boston, MA 02215" +306039,Lightning Charging Cable,1,14.95,12/22/19 05:59,"5 Cedar St, Atlanta, GA 30301" +306040,USB-C Charging Cable,1,11.95,12/27/19 11:27,"627 Wilson St, Dallas, TX 75001" +306041,Apple Airpods Headphones,1,150,12/28/19 01:26,"75 Washington St, Los Angeles, CA 90001" +306042,USB-C Charging Cable,1,11.95,12/16/19 09:58,"229 4th St, Portland, OR 97035" +306043,AA Batteries (4-pack),1,3.84,12/04/19 14:41,"280 Ridge St, San Francisco, CA 94016" +306044,Wired Headphones,1,11.99,12/08/19 11:56,"702 North St, San Francisco, CA 94016" +306045,34in Ultrawide Monitor,1,379.99,12/13/19 19:44,"650 River St, San Francisco, CA 94016" +306046,AA Batteries (4-pack),1,3.84,12/08/19 11:36,"534 Johnson St, New York City, NY 10001" +306047,Flatscreen TV,1,300,12/25/19 08:05,"811 Washington St, Atlanta, GA 30301" +306048,Apple Airpods Headphones,1,150,12/08/19 21:49,"378 Johnson St, Atlanta, GA 30301" +306049,AAA Batteries (4-pack),1,2.99,12/01/19 10:30,"104 Lake St, Seattle, WA 98101" +306050,AA Batteries (4-pack),2,3.84,12/10/19 14:43,"672 Chestnut St, Austin, TX 73301" +306051,USB-C Charging Cable,1,11.95,12/13/19 21:34,"728 8th St, San Francisco, CA 94016" +306052,Lightning Charging Cable,1,14.95,12/16/19 18:51,"382 Hill St, Los Angeles, CA 90001" +306053,iPhone,1,700,12/01/19 13:39,"756 Willow St, Seattle, WA 98101" +306053,Lightning Charging Cable,1,14.95,12/01/19 13:39,"756 Willow St, Seattle, WA 98101" +306054,AA Batteries (4-pack),1,3.84,12/10/19 20:28,"595 Johnson St, New York City, NY 10001" +306055,AAA Batteries (4-pack),1,2.99,12/09/19 22:16,"121 South St, Dallas, TX 75001" +306056,Wired Headphones,1,11.99,12/27/19 17:38,"858 Elm St, Atlanta, GA 30301" +306057,Wired Headphones,1,11.99,12/01/19 22:06,"328 4th St, Los Angeles, CA 90001" +306058,Apple Airpods Headphones,1,150,12/12/19 20:48,"265 Cedar St, Los Angeles, CA 90001" +306059,USB-C Charging Cable,1,11.95,12/31/19 22:35,"606 Main St, New York City, NY 10001" +306060,Wired Headphones,1,11.99,12/25/19 16:48,"413 Jefferson St, Atlanta, GA 30301" +306061,AAA Batteries (4-pack),1,2.99,12/07/19 12:57,"439 Lincoln St, San Francisco, CA 94016" +306062,Macbook Pro Laptop,1,1700,12/28/19 16:48,"889 Willow St, New York City, NY 10001" +306063,Lightning Charging Cable,1,14.95,12/27/19 10:40,"144 Lakeview St, Los Angeles, CA 90001" +306064,AA Batteries (4-pack),2,3.84,12/06/19 10:57,"957 Walnut St, San Francisco, CA 94016" +306065,AAA Batteries (4-pack),1,2.99,12/28/19 09:56,"723 10th St, San Francisco, CA 94016" +306066,20in Monitor,1,109.99,12/09/19 21:05,"571 Hickory St, San Francisco, CA 94016" +306067,Macbook Pro Laptop,1,1700,12/16/19 09:06,"372 Wilson St, New York City, NY 10001" +306068,Flatscreen TV,1,300,12/17/19 07:26,"80 Willow St, Austin, TX 73301" +306069,AA Batteries (4-pack),1,3.84,12/16/19 18:13,"960 South St, Los Angeles, CA 90001" +306070,USB-C Charging Cable,1,11.95,12/16/19 08:48,"720 West St, Boston, MA 02215" +306071,Wired Headphones,1,11.99,12/09/19 23:45,"679 Walnut St, Portland, OR 97035" +306072,27in FHD Monitor,1,149.99,12/07/19 18:57,"432 Maple St, San Francisco, CA 94016" +306073,AAA Batteries (4-pack),1,2.99,12/10/19 17:04,"117 Main St, Boston, MA 02215" +306073,Apple Airpods Headphones,1,150,12/10/19 17:04,"117 Main St, Boston, MA 02215" +306074,AAA Batteries (4-pack),5,2.99,12/14/19 19:13,"729 Spruce St, San Francisco, CA 94016" +306075,34in Ultrawide Monitor,1,379.99,12/07/19 22:36,"940 12th St, Portland, ME 04101" +306076,Lightning Charging Cable,1,14.95,12/26/19 19:27,"652 Spruce St, Seattle, WA 98101" +306077,Lightning Charging Cable,1,14.95,12/01/19 20:42,"335 Ridge St, San Francisco, CA 94016" +306078,Google Phone,1,600,12/27/19 19:20,"490 Chestnut St, Los Angeles, CA 90001" +306079,ThinkPad Laptop,1,999.99,12/04/19 15:21,"751 1st St, Dallas, TX 75001" +306080,AAA Batteries (4-pack),1,2.99,12/17/19 13:44,"549 Cherry St, Atlanta, GA 30301" +306081,ThinkPad Laptop,1,999.99,12/11/19 07:25,"818 12th St, San Francisco, CA 94016" +306082,34in Ultrawide Monitor,1,379.99,12/01/19 22:54,"869 10th St, Los Angeles, CA 90001" +306083,Lightning Charging Cable,1,14.95,12/30/19 20:11,"176 Sunset St, Los Angeles, CA 90001" +306084,Apple Airpods Headphones,1,150,12/04/19 10:02,"429 Forest St, Los Angeles, CA 90001" +306085,20in Monitor,1,109.99,12/05/19 20:30,"514 Maple St, Seattle, WA 98101" +306086,AAA Batteries (4-pack),3,2.99,12/22/19 13:45,"36 Chestnut St, Atlanta, GA 30301" +306087,Apple Airpods Headphones,1,150,12/21/19 16:42,"145 Wilson St, Boston, MA 02215" +306088,Bose SoundSport Headphones,1,99.99,12/11/19 14:34,"949 Washington St, San Francisco, CA 94016" +306089,34in Ultrawide Monitor,1,379.99,12/05/19 07:31,"76 11th St, Atlanta, GA 30301" +306090,AA Batteries (4-pack),1,3.84,12/27/19 18:10,"940 Dogwood St, Seattle, WA 98101" +306091,Flatscreen TV,1,300,12/31/19 14:44,"360 Jackson St, Dallas, TX 75001" +306092,AA Batteries (4-pack),1,3.84,12/17/19 12:36,"223 Walnut St, San Francisco, CA 94016" +306093,USB-C Charging Cable,1,11.95,12/03/19 23:05,"47 Maple St, Portland, OR 97035" +306094,Apple Airpods Headphones,1,150,12/10/19 23:19,"790 Center St, Portland, OR 97035" +306095,AA Batteries (4-pack),1,3.84,12/23/19 11:40,"927 Sunset St, Dallas, TX 75001" +306096,Wired Headphones,1,11.99,12/15/19 10:26,"800 Willow St, Dallas, TX 75001" +306097,Apple Airpods Headphones,1,150,12/01/19 19:00,"649 5th St, San Francisco, CA 94016" +306098,LG Washing Machine,1,600.0,12/16/19 21:45,"467 Lake St, New York City, NY 10001" +306099,Bose SoundSport Headphones,1,99.99,12/16/19 00:52,"287 12th St, San Francisco, CA 94016" +306100,AAA Batteries (4-pack),1,2.99,12/13/19 00:17,"734 Pine St, San Francisco, CA 94016" +306101,27in 4K Gaming Monitor,1,389.99,12/17/19 10:58,"849 North St, Dallas, TX 75001" +306102,AA Batteries (4-pack),1,3.84,12/02/19 19:38,"844 Lakeview St, San Francisco, CA 94016" +306103,Google Phone,1,600,12/16/19 12:09,"313 Cedar St, Los Angeles, CA 90001" +306104,34in Ultrawide Monitor,1,379.99,12/27/19 16:16,"563 4th St, Dallas, TX 75001" +306105,ThinkPad Laptop,1,999.99,12/20/19 12:28,"503 Hill St, Portland, OR 97035" +306106,Lightning Charging Cable,1,14.95,12/18/19 14:07,"672 9th St, New York City, NY 10001" +306107,ThinkPad Laptop,1,999.99,12/29/19 18:39,"401 Willow St, Seattle, WA 98101" +306108,AA Batteries (4-pack),1,3.84,12/19/19 09:20,"45 Wilson St, Portland, OR 97035" +306109,AAA Batteries (4-pack),1,2.99,12/16/19 20:35,"553 Adams St, San Francisco, CA 94016" +306110,AAA Batteries (4-pack),1,2.99,12/18/19 09:16,"117 Cedar St, Dallas, TX 75001" +306111,Lightning Charging Cable,1,14.95,12/28/19 20:38,"540 Lakeview St, Boston, MA 02215" +306112,AAA Batteries (4-pack),1,2.99,12/07/19 08:23,"415 Hickory St, Los Angeles, CA 90001" +306113,USB-C Charging Cable,1,11.95,12/14/19 14:13,"73 Dogwood St, Boston, MA 02215" +306114,AA Batteries (4-pack),1,3.84,12/10/19 13:51,"277 Hill St, Los Angeles, CA 90001" +306115,USB-C Charging Cable,1,11.95,12/21/19 22:57,"940 Spruce St, San Francisco, CA 94016" +306116,27in 4K Gaming Monitor,1,389.99,12/07/19 14:10,"482 14th St, New York City, NY 10001" +306117,27in 4K Gaming Monitor,1,389.99,12/14/19 15:13,"797 Elm St, Atlanta, GA 30301" +306118,USB-C Charging Cable,1,11.95,12/12/19 21:47,"17 1st St, Dallas, TX 75001" +306119,20in Monitor,1,109.99,12/28/19 14:26,"317 Meadow St, Seattle, WA 98101" +306120,iPhone,1,700,12/11/19 12:59,"479 Dogwood St, New York City, NY 10001" +306121,iPhone,1,700,12/13/19 10:31,"899 10th St, Seattle, WA 98101" +306122,Apple Airpods Headphones,1,150,12/26/19 20:51,"32 14th St, Seattle, WA 98101" +306123,34in Ultrawide Monitor,1,379.99,12/04/19 13:25,"328 7th St, New York City, NY 10001" +306124,Google Phone,1,600,12/11/19 07:17,"660 Spruce St, San Francisco, CA 94016" +306125,20in Monitor,1,109.99,12/12/19 16:32,"134 7th St, San Francisco, CA 94016" +306126,USB-C Charging Cable,1,11.95,12/02/19 23:21,"840 Walnut St, Los Angeles, CA 90001" +306127,Flatscreen TV,1,300,12/08/19 21:35,"389 14th St, Seattle, WA 98101" +306128,Wired Headphones,1,11.99,12/08/19 19:00,"858 Forest St, Los Angeles, CA 90001" +306129,USB-C Charging Cable,1,11.95,12/29/19 15:07,"878 7th St, San Francisco, CA 94016" +306130,Wired Headphones,1,11.99,12/02/19 20:02,"802 9th St, Austin, TX 73301" +306131,Lightning Charging Cable,1,14.95,12/24/19 19:23,"816 1st St, Seattle, WA 98101" +306132,AAA Batteries (4-pack),2,2.99,12/02/19 02:45,"21 Washington St, Austin, TX 73301" +306133,iPhone,1,700,12/24/19 14:57,"774 Pine St, San Francisco, CA 94016" +306134,Wired Headphones,1,11.99,12/29/19 13:13,"187 Meadow St, San Francisco, CA 94016" +306135,27in FHD Monitor,1,149.99,12/07/19 16:14,"257 Adams St, Los Angeles, CA 90001" +306136,Apple Airpods Headphones,1,150,12/09/19 21:54,"640 Johnson St, Austin, TX 73301" +306137,AAA Batteries (4-pack),1,2.99,12/05/19 03:21,"673 Dogwood St, San Francisco, CA 94016" +306138,27in FHD Monitor,1,149.99,12/06/19 19:07,"207 Adams St, Los Angeles, CA 90001" +306139,Lightning Charging Cable,1,14.95,12/22/19 08:29,"885 Hickory St, Seattle, WA 98101" +306140,LG Washing Machine,1,600.0,12/16/19 19:57,"816 West St, Austin, TX 73301" +306141,Lightning Charging Cable,1,14.95,12/16/19 20:44,"748 Jefferson St, Atlanta, GA 30301" +306142,Flatscreen TV,1,300,12/26/19 10:47,"507 14th St, San Francisco, CA 94016" +306143,Lightning Charging Cable,1,14.95,12/04/19 10:27,"867 Lincoln St, Los Angeles, CA 90001" +306144,AAA Batteries (4-pack),2,2.99,12/08/19 22:32,"171 8th St, Boston, MA 02215" +306145,Wired Headphones,1,11.99,12/06/19 23:33,"451 Jefferson St, Seattle, WA 98101" +306146,27in FHD Monitor,1,149.99,12/17/19 23:20,"917 Park St, Boston, MA 02215" +306147,Lightning Charging Cable,1,14.95,12/15/19 19:24,"219 7th St, Los Angeles, CA 90001" +306148,27in FHD Monitor,1,149.99,12/12/19 15:58,"468 Cedar St, Portland, OR 97035" +306149,AAA Batteries (4-pack),1,2.99,12/02/19 13:05,"440 Lake St, Portland, OR 97035" +306150,27in 4K Gaming Monitor,1,389.99,12/15/19 09:36,"561 10th St, San Francisco, CA 94016" +306151,Wired Headphones,1,11.99,12/02/19 17:23,"224 Main St, San Francisco, CA 94016" +306152,Bose SoundSport Headphones,1,99.99,12/31/19 12:18,"306 Forest St, New York City, NY 10001" +306153,AA Batteries (4-pack),1,3.84,12/14/19 22:45,"238 North St, Atlanta, GA 30301" +306154,AA Batteries (4-pack),1,3.84,12/15/19 20:52,"461 5th St, Los Angeles, CA 90001" +306155,Wired Headphones,1,11.99,12/17/19 22:05,"263 Lake St, Seattle, WA 98101" +306156,AA Batteries (4-pack),1,3.84,12/31/19 08:20,"271 Wilson St, San Francisco, CA 94016" +306157,LG Washing Machine,1,600.0,12/29/19 21:24,"571 Lincoln St, Los Angeles, CA 90001" +306158,AA Batteries (4-pack),2,3.84,12/28/19 20:04,"437 7th St, Boston, MA 02215" +306159,Bose SoundSport Headphones,1,99.99,12/02/19 22:29,"67 10th St, New York City, NY 10001" +306160,27in 4K Gaming Monitor,1,389.99,12/23/19 12:51,"902 Jefferson St, San Francisco, CA 94016" +306161,27in FHD Monitor,1,149.99,12/19/19 14:23,"676 Elm St, San Francisco, CA 94016" +306162,AA Batteries (4-pack),2,3.84,12/12/19 12:04,"639 Lincoln St, Dallas, TX 75001" +306163,USB-C Charging Cable,1,11.95,12/25/19 06:58,"88 Jackson St, Seattle, WA 98101" +306164,Apple Airpods Headphones,1,150,12/20/19 12:55,"810 Johnson St, Atlanta, GA 30301" +306165,AA Batteries (4-pack),2,3.84,12/27/19 14:59,"523 14th St, Seattle, WA 98101" +306166,ThinkPad Laptop,1,999.99,12/31/19 07:45,"910 Walnut St, Los Angeles, CA 90001" +306167,AAA Batteries (4-pack),1,2.99,12/26/19 16:35,"319 Jackson St, Seattle, WA 98101" +306168,AAA Batteries (4-pack),1,2.99,12/31/19 17:05,"903 Center St, San Francisco, CA 94016" +306169,Lightning Charging Cable,1,14.95,12/30/19 14:04,"275 Ridge St, Los Angeles, CA 90001" +306170,Flatscreen TV,1,300,12/22/19 10:31,"480 2nd St, Austin, TX 73301" +306171,USB-C Charging Cable,1,11.95,12/13/19 17:19,"568 Cherry St, Seattle, WA 98101" +306172,iPhone,1,700,12/15/19 09:27,"324 Highland St, Seattle, WA 98101" +306173,Vareebadd Phone,1,400,12/03/19 00:24,"877 Maple St, Seattle, WA 98101" +306174,Google Phone,1,600,12/14/19 22:12,"406 Wilson St, Boston, MA 02215" +306175,AAA Batteries (4-pack),3,2.99,12/11/19 11:50,"816 Jefferson St, Boston, MA 02215" +306176,AA Batteries (4-pack),2,3.84,12/15/19 13:37,"281 7th St, Seattle, WA 98101" +306177,USB-C Charging Cable,2,11.95,12/28/19 13:25,"609 Willow St, New York City, NY 10001" +306178,AAA Batteries (4-pack),1,2.99,12/06/19 11:29,"591 8th St, Portland, ME 04101" +306179,Wired Headphones,1,11.99,12/10/19 20:44,"472 Center St, Los Angeles, CA 90001" +306180,Wired Headphones,1,11.99,12/31/19 17:12,"111 Main St, San Francisco, CA 94016" +306181,AAA Batteries (4-pack),4,2.99,12/29/19 04:39,"596 Park St, Seattle, WA 98101" +306182,USB-C Charging Cable,1,11.95,12/25/19 08:11,"183 Chestnut St, New York City, NY 10001" +306183,Apple Airpods Headphones,1,150,12/14/19 09:44,"304 Jefferson St, Austin, TX 73301" +306184,Wired Headphones,1,11.99,12/21/19 13:42,"672 Lakeview St, Portland, OR 97035" +306185,Flatscreen TV,1,300,12/19/19 07:14,"180 Maple St, San Francisco, CA 94016" +306186,27in 4K Gaming Monitor,1,389.99,12/13/19 01:00,"900 Wilson St, Atlanta, GA 30301" +306187,Lightning Charging Cable,1,14.95,12/08/19 08:31,"952 Chestnut St, San Francisco, CA 94016" +306188,Apple Airpods Headphones,1,150,12/13/19 18:37,"414 10th St, Dallas, TX 75001" +306189,AA Batteries (4-pack),2,3.84,12/08/19 12:34,"285 14th St, Los Angeles, CA 90001" +306190,Bose SoundSport Headphones,1,99.99,12/17/19 13:23,"639 2nd St, Seattle, WA 98101" +306191,Apple Airpods Headphones,1,150,12/11/19 20:28,"771 1st St, Atlanta, GA 30301" +306192,USB-C Charging Cable,1,11.95,12/04/19 18:29,"728 Pine St, Boston, MA 02215" +306193,AA Batteries (4-pack),1,3.84,12/15/19 19:16,"266 Jackson St, Los Angeles, CA 90001" +306194,34in Ultrawide Monitor,1,379.99,12/25/19 22:25,"70 Spruce St, Austin, TX 73301" +306195,USB-C Charging Cable,1,11.95,12/03/19 14:31,"362 Center St, Boston, MA 02215" +306196,27in FHD Monitor,1,149.99,12/01/19 14:30,"406 9th St, Los Angeles, CA 90001" +306197,Lightning Charging Cable,1,14.95,12/05/19 16:14,"285 Main St, Boston, MA 02215" +306197,AAA Batteries (4-pack),2,2.99,12/05/19 16:14,"285 Main St, Boston, MA 02215" +306198,Bose SoundSport Headphones,1,99.99,12/15/19 09:54,"943 North St, New York City, NY 10001" +306199,34in Ultrawide Monitor,1,379.99,12/06/19 15:33,"279 7th St, San Francisco, CA 94016" +306200,AAA Batteries (4-pack),1,2.99,12/30/19 07:36,"689 Main St, Seattle, WA 98101" +306201,Wired Headphones,1,11.99,12/31/19 23:21,"794 Walnut St, Seattle, WA 98101" +306202,Bose SoundSport Headphones,1,99.99,12/18/19 20:48,"723 North St, San Francisco, CA 94016" +306203,Flatscreen TV,1,300,12/21/19 13:42,"407 North St, Los Angeles, CA 90001" +306204,Apple Airpods Headphones,1,150,12/21/19 20:35,"63 Church St, Boston, MA 02215" +306205,Bose SoundSport Headphones,1,99.99,12/21/19 15:17,"81 1st St, New York City, NY 10001" +306206,AAA Batteries (4-pack),3,2.99,12/27/19 12:43,"696 Madison St, Seattle, WA 98101" +306207,34in Ultrawide Monitor,1,379.99,12/29/19 08:32,"69 Ridge St, Boston, MA 02215" +306208,AA Batteries (4-pack),1,3.84,12/25/19 14:02,"252 South St, San Francisco, CA 94016" +306209,Macbook Pro Laptop,1,1700,12/14/19 18:35,"11 Lake St, Portland, ME 04101" +306210,27in 4K Gaming Monitor,1,389.99,12/25/19 11:50,"869 Johnson St, Los Angeles, CA 90001" +306211,Bose SoundSport Headphones,1,99.99,12/28/19 20:07,"700 Maple St, New York City, NY 10001" +306212,20in Monitor,1,109.99,12/31/19 05:37,"120 Adams St, San Francisco, CA 94016" +306213,iPhone,1,700,12/12/19 20:04,"920 10th St, Boston, MA 02215" +306214,Wired Headphones,1,11.99,12/19/19 12:42,"189 7th St, Los Angeles, CA 90001" +306215,34in Ultrawide Monitor,1,379.99,12/17/19 00:11,"33 Lakeview St, Seattle, WA 98101" +306216,USB-C Charging Cable,1,11.95,12/03/19 10:38,"489 Maple St, Austin, TX 73301" +306217,27in FHD Monitor,1,149.99,12/26/19 07:27,"845 Lincoln St, Boston, MA 02215" +306218,Vareebadd Phone,1,400,12/26/19 11:53,"167 Wilson St, Boston, MA 02215" +306219,AA Batteries (4-pack),1,3.84,12/09/19 14:49,"666 Park St, San Francisco, CA 94016" +306220,AAA Batteries (4-pack),2,2.99,12/16/19 12:46,"991 2nd St, Seattle, WA 98101" +306221,Bose SoundSport Headphones,1,99.99,12/03/19 08:01,"840 Ridge St, New York City, NY 10001" +306222,Lightning Charging Cable,1,14.95,12/18/19 23:50,"32 Sunset St, San Francisco, CA 94016" +306222,Wired Headphones,1,11.99,12/18/19 23:50,"32 Sunset St, San Francisco, CA 94016" +306223,Bose SoundSport Headphones,1,99.99,12/05/19 17:49,"186 2nd St, Atlanta, GA 30301" +306224,Flatscreen TV,1,300,12/20/19 18:37,"164 Center St, San Francisco, CA 94016" +306225,Wired Headphones,1,11.99,12/13/19 08:46,"19 8th St, New York City, NY 10001" +306226,34in Ultrawide Monitor,1,379.99,12/15/19 08:17,"973 Wilson St, Los Angeles, CA 90001" +306226,27in 4K Gaming Monitor,1,389.99,12/15/19 08:17,"973 Wilson St, Los Angeles, CA 90001" +306227,Wired Headphones,1,11.99,12/17/19 10:52,"978 Elm St, Portland, OR 97035" +306228,USB-C Charging Cable,1,11.95,12/09/19 13:19,"223 Sunset St, San Francisco, CA 94016" +306229,AAA Batteries (4-pack),2,2.99,12/09/19 10:29,"793 Washington St, Austin, TX 73301" +306230,AA Batteries (4-pack),1,3.84,12/20/19 21:11,"699 Lakeview St, San Francisco, CA 94016" +306231,Lightning Charging Cable,1,14.95,12/09/19 09:39,"734 Spruce St, Dallas, TX 75001" +306232,Lightning Charging Cable,1,14.95,12/14/19 21:23,"94 2nd St, San Francisco, CA 94016" +306233,Bose SoundSport Headphones,1,99.99,12/19/19 20:07,"485 Park St, New York City, NY 10001" +306234,AA Batteries (4-pack),1,3.84,12/07/19 19:41,"612 Cedar St, Atlanta, GA 30301" +306235,Apple Airpods Headphones,1,150,12/15/19 21:13,"870 Meadow St, San Francisco, CA 94016" +306236,AAA Batteries (4-pack),1,2.99,12/09/19 20:21,"215 Willow St, Los Angeles, CA 90001" +306237,Wired Headphones,1,11.99,12/16/19 19:25,"276 Adams St, San Francisco, CA 94016" +306238,34in Ultrawide Monitor,1,379.99,12/10/19 12:13,"242 Park St, Boston, MA 02215" +306239,AAA Batteries (4-pack),2,2.99,12/01/19 14:13,"880 Adams St, Atlanta, GA 30301" +306240,Apple Airpods Headphones,1,150,12/24/19 21:13,"452 Spruce St, San Francisco, CA 94016" +306241,USB-C Charging Cable,1,11.95,12/30/19 20:01,"714 2nd St, Los Angeles, CA 90001" +306242,Lightning Charging Cable,1,14.95,12/19/19 18:46,"726 Jackson St, New York City, NY 10001" +306243,AAA Batteries (4-pack),1,2.99,12/03/19 18:45,"160 6th St, Portland, OR 97035" +306244,AAA Batteries (4-pack),1,2.99,12/11/19 13:25,"503 10th St, Dallas, TX 75001" +306245,Wired Headphones,1,11.99,12/24/19 13:18,"786 11th St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +306246,USB-C Charging Cable,1,11.95,12/06/19 22:34,"795 Maple St, Los Angeles, CA 90001" +306247,Apple Airpods Headphones,1,150,12/30/19 10:13,"423 Walnut St, San Francisco, CA 94016" +306248,iPhone,1,700,12/29/19 11:20,"496 Lincoln St, Portland, OR 97035" +306249,iPhone,1,700,12/03/19 01:42,"26 Johnson St, San Francisco, CA 94016" +306249,Lightning Charging Cable,1,14.95,12/03/19 01:42,"26 Johnson St, San Francisco, CA 94016" +306250,Lightning Charging Cable,1,14.95,12/17/19 18:33,"215 Dogwood St, San Francisco, CA 94016" +306251,27in 4K Gaming Monitor,1,389.99,12/29/19 11:39,"22 Cedar St, Portland, ME 04101" +306252,Lightning Charging Cable,1,14.95,12/12/19 21:38,"829 Lakeview St, Portland, ME 04101" +306253,iPhone,1,700,12/09/19 07:39,"729 Lake St, Los Angeles, CA 90001" +306254,Apple Airpods Headphones,1,150,12/26/19 13:55,"307 8th St, Portland, OR 97035" +306255,Wired Headphones,1,11.99,12/26/19 17:23,"121 Dogwood St, Dallas, TX 75001" +306256,USB-C Charging Cable,1,11.95,12/08/19 17:21,"666 Washington St, Atlanta, GA 30301" +306257,Lightning Charging Cable,1,14.95,12/13/19 02:56,"600 8th St, Boston, MA 02215" +306258,Macbook Pro Laptop,1,1700,12/20/19 14:07,"260 Dogwood St, Dallas, TX 75001" +306259,AA Batteries (4-pack),1,3.84,12/24/19 18:53,"324 Hill St, San Francisco, CA 94016" +306260,Flatscreen TV,1,300,12/03/19 13:27,"810 Ridge St, San Francisco, CA 94016" +306261,AAA Batteries (4-pack),2,2.99,12/16/19 08:18,"707 Washington St, New York City, NY 10001" +306262,AA Batteries (4-pack),1,3.84,12/07/19 05:29,"232 14th St, Portland, OR 97035" +306263,USB-C Charging Cable,2,11.95,12/01/19 17:15,"313 Adams St, San Francisco, CA 94016" +306264,AAA Batteries (4-pack),3,2.99,12/31/19 16:53,"366 West St, New York City, NY 10001" +306265,USB-C Charging Cable,1,11.95,12/29/19 13:51,"843 Lake St, San Francisco, CA 94016" +306266,Lightning Charging Cable,2,14.95,12/30/19 14:10,"81 Spruce St, San Francisco, CA 94016" +306267,Lightning Charging Cable,1,14.95,12/10/19 15:11,"318 Hill St, Austin, TX 73301" +306268,Apple Airpods Headphones,1,150,12/23/19 15:12,"959 Church St, San Francisco, CA 94016" +306269,27in FHD Monitor,1,149.99,12/26/19 19:57,"605 Wilson St, New York City, NY 10001" +306270,USB-C Charging Cable,1,11.95,12/10/19 13:00,"808 9th St, Atlanta, GA 30301" +306271,AAA Batteries (4-pack),1,2.99,12/17/19 11:28,"257 Meadow St, Dallas, TX 75001" +306272,USB-C Charging Cable,1,11.95,12/02/19 15:26,"149 6th St, Portland, OR 97035" +306273,Lightning Charging Cable,1,14.95,12/23/19 07:40,"362 North St, San Francisco, CA 94016" +306274,AA Batteries (4-pack),1,3.84,12/18/19 07:13,"452 Sunset St, Portland, OR 97035" +306275,Flatscreen TV,1,300,12/09/19 15:38,"621 South St, Los Angeles, CA 90001" +306276,AA Batteries (4-pack),1,3.84,12/07/19 18:05,"145 Adams St, Seattle, WA 98101" +306277,Lightning Charging Cable,1,14.95,12/24/19 07:52,"425 Ridge St, San Francisco, CA 94016" +306278,AA Batteries (4-pack),1,3.84,12/10/19 10:42,"983 Lakeview St, Boston, MA 02215" +306279,Bose SoundSport Headphones,1,99.99,12/14/19 16:24,"612 Spruce St, San Francisco, CA 94016" +306280,27in 4K Gaming Monitor,1,389.99,12/14/19 19:41,"721 Church St, San Francisco, CA 94016" +306281,USB-C Charging Cable,1,11.95,12/28/19 16:00,"176 10th St, Los Angeles, CA 90001" +306282,iPhone,1,700,12/15/19 20:12,"111 South St, San Francisco, CA 94016" +306283,Bose SoundSport Headphones,1,99.99,12/06/19 19:28,"672 9th St, New York City, NY 10001" +306284,Bose SoundSport Headphones,1,99.99,12/05/19 14:04,"289 Highland St, Boston, MA 02215" +306285,Lightning Charging Cable,1,14.95,12/16/19 10:16,"763 River St, Los Angeles, CA 90001" +306286,Apple Airpods Headphones,1,150,12/19/19 13:24,"73 5th St, New York City, NY 10001" +306287,USB-C Charging Cable,1,11.95,12/16/19 19:09,"972 4th St, San Francisco, CA 94016" +306288,Macbook Pro Laptop,1,1700,12/16/19 12:49,"415 8th St, Los Angeles, CA 90001" +306289,iPhone,1,700,12/15/19 11:36,"122 13th St, Atlanta, GA 30301" +306289,Lightning Charging Cable,2,14.95,12/15/19 11:36,"122 13th St, Atlanta, GA 30301" +306290,20in Monitor,1,109.99,12/18/19 00:53,"634 Washington St, Seattle, WA 98101" +306291,Apple Airpods Headphones,1,150,12/31/19 07:29,"901 Walnut St, Los Angeles, CA 90001" +306292,AAA Batteries (4-pack),1,2.99,12/26/19 12:15,"681 Church St, Los Angeles, CA 90001" +306293,AAA Batteries (4-pack),3,2.99,12/18/19 17:01,"918 11th St, New York City, NY 10001" +306294,ThinkPad Laptop,1,999.99,12/19/19 16:36,"172 8th St, Los Angeles, CA 90001" +306295,27in 4K Gaming Monitor,1,389.99,12/02/19 18:47,"293 South St, Atlanta, GA 30301" +306296,Wired Headphones,1,11.99,12/14/19 16:42,"481 Church St, San Francisco, CA 94016" +306297,USB-C Charging Cable,1,11.95,12/16/19 18:37,"871 Meadow St, Los Angeles, CA 90001" +306298,USB-C Charging Cable,1,11.95,12/04/19 14:01,"217 Chestnut St, San Francisco, CA 94016" +306299,20in Monitor,1,109.99,12/02/19 14:49,"630 Elm St, New York City, NY 10001" +306300,Flatscreen TV,1,300,12/15/19 15:52,"367 River St, Los Angeles, CA 90001" +306301,27in FHD Monitor,1,149.99,12/20/19 15:00,"593 14th St, Boston, MA 02215" +306302,Google Phone,1,600,12/29/19 21:12,"903 Meadow St, Los Angeles, CA 90001" +306303,USB-C Charging Cable,1,11.95,12/20/19 12:45,"745 Church St, Boston, MA 02215" +306304,27in FHD Monitor,1,149.99,12/29/19 20:57,"46 5th St, New York City, NY 10001" +306305,AA Batteries (4-pack),1,3.84,12/25/19 20:52,"803 Adams St, San Francisco, CA 94016" +306306,Macbook Pro Laptop,1,1700,12/27/19 20:53,"334 Jackson St, Los Angeles, CA 90001" +306307,AAA Batteries (4-pack),1,2.99,12/25/19 18:46,"966 Chestnut St, Austin, TX 73301" +306308,Lightning Charging Cable,1,14.95,12/16/19 18:15,"183 10th St, Atlanta, GA 30301" +306309,Apple Airpods Headphones,1,150,12/20/19 13:33,"132 Sunset St, San Francisco, CA 94016" +306310,Bose SoundSport Headphones,1,99.99,12/05/19 12:13,"828 Walnut St, Portland, OR 97035" +306311,Apple Airpods Headphones,1,150,12/30/19 05:02,"550 Sunset St, Los Angeles, CA 90001" +306312,Wired Headphones,1,11.99,12/16/19 05:01,"238 13th St, Seattle, WA 98101" +306313,Bose SoundSport Headphones,1,99.99,12/13/19 17:17,"658 Lake St, Austin, TX 73301" +306314,AA Batteries (4-pack),1,3.84,12/02/19 18:58,"604 Hickory St, Boston, MA 02215" +306315,Lightning Charging Cable,1,14.95,12/30/19 09:08,"35 Dogwood St, Los Angeles, CA 90001" +306316,USB-C Charging Cable,1,11.95,12/18/19 00:38,"761 Church St, New York City, NY 10001" +306317,Flatscreen TV,1,300,12/26/19 11:23,"1 Spruce St, Austin, TX 73301" +306318,Lightning Charging Cable,1,14.95,12/11/19 22:44,"79 Walnut St, Boston, MA 02215" +306319,USB-C Charging Cable,1,11.95,12/28/19 13:51,"241 Jackson St, New York City, NY 10001" +306320,Apple Airpods Headphones,1,150,12/20/19 11:56,"750 Pine St, New York City, NY 10001" +306321,27in FHD Monitor,1,149.99,12/17/19 12:37,"258 6th St, Los Angeles, CA 90001" +306322,AA Batteries (4-pack),1,3.84,12/18/19 13:46,"582 Washington St, New York City, NY 10001" +306323,27in 4K Gaming Monitor,1,389.99,12/25/19 18:52,"710 1st St, Portland, OR 97035" +306324,34in Ultrawide Monitor,1,379.99,12/10/19 08:12,"626 South St, New York City, NY 10001" +306325,Flatscreen TV,1,300,12/13/19 21:55,"514 Adams St, San Francisco, CA 94016" +306326,ThinkPad Laptop,1,999.99,12/07/19 20:02,"17 Cherry St, Atlanta, GA 30301" +306327,AAA Batteries (4-pack),1,2.99,12/09/19 18:07,"688 North St, Dallas, TX 75001" +306327,AA Batteries (4-pack),1,3.84,12/09/19 18:07,"688 North St, Dallas, TX 75001" +306328,Lightning Charging Cable,1,14.95,12/30/19 22:58,"892 Maple St, San Francisco, CA 94016" +306329,Lightning Charging Cable,1,14.95,12/16/19 12:41,"220 Willow St, Atlanta, GA 30301" +306330,Flatscreen TV,1,300,12/22/19 10:29,"30 Madison St, Dallas, TX 75001" +306331,27in FHD Monitor,1,149.99,12/27/19 16:29,"781 Hickory St, Los Angeles, CA 90001" +,,,,, +306332,AA Batteries (4-pack),1,3.84,12/02/19 09:24,"281 Center St, San Francisco, CA 94016" +306333,Bose SoundSport Headphones,1,99.99,12/18/19 13:54,"823 Lincoln St, San Francisco, CA 94016" +306334,Wired Headphones,1,11.99,12/25/19 08:28,"12 South St, New York City, NY 10001" +306335,27in FHD Monitor,1,149.99,12/03/19 13:48,"588 Ridge St, Portland, OR 97035" +306336,Wired Headphones,1,11.99,12/06/19 19:40,"66 9th St, San Francisco, CA 94016" +306337,34in Ultrawide Monitor,1,379.99,12/12/19 06:02,"763 13th St, San Francisco, CA 94016" +306338,Apple Airpods Headphones,1,150,12/12/19 22:45,"255 Chestnut St, Los Angeles, CA 90001" +306339,AA Batteries (4-pack),2,3.84,12/20/19 04:27,"666 Lakeview St, Dallas, TX 75001" +306340,20in Monitor,1,109.99,12/25/19 11:57,"465 Lake St, New York City, NY 10001" +306341,Google Phone,1,600,12/23/19 11:02,"745 Adams St, Boston, MA 02215" +306342,AA Batteries (4-pack),1,3.84,12/08/19 21:18,"336 Jefferson St, Boston, MA 02215" +306343,20in Monitor,1,109.99,12/16/19 11:33,"765 North St, Dallas, TX 75001" +306344,Apple Airpods Headphones,1,150,12/23/19 10:52,"116 Church St, Seattle, WA 98101" +306345,27in 4K Gaming Monitor,1,389.99,12/27/19 00:30,"859 Church St, Boston, MA 02215" +306346,Wired Headphones,1,11.99,12/22/19 20:45,"917 Elm St, New York City, NY 10001" +306347,USB-C Charging Cable,1,11.95,12/18/19 09:24,"563 Washington St, Los Angeles, CA 90001" +306348,AAA Batteries (4-pack),1,2.99,12/05/19 14:02,"638 Madison St, San Francisco, CA 94016" +306349,iPhone,1,700,12/29/19 16:25,"425 Maple St, Boston, MA 02215" +306350,Bose SoundSport Headphones,1,99.99,12/27/19 16:37,"12 1st St, San Francisco, CA 94016" +306351,Flatscreen TV,1,300,12/21/19 09:45,"607 11th St, Los Angeles, CA 90001" +306352,Apple Airpods Headphones,1,150,12/31/19 15:28,"213 Cherry St, Seattle, WA 98101" +306353,Lightning Charging Cable,1,14.95,12/02/19 10:14,"892 South St, New York City, NY 10001" +306354,Wired Headphones,1,11.99,12/26/19 08:40,"822 Church St, Atlanta, GA 30301" +306355,Apple Airpods Headphones,1,150,12/22/19 14:14,"386 Adams St, Boston, MA 02215" +306356,Lightning Charging Cable,1,14.95,12/18/19 23:11,"132 Spruce St, Boston, MA 02215" +306357,Wired Headphones,1,11.99,12/12/19 13:33,"587 Dogwood St, Los Angeles, CA 90001" +306358,Bose SoundSport Headphones,1,99.99,12/25/19 12:08,"622 Lincoln St, Boston, MA 02215" +306359,20in Monitor,1,109.99,12/22/19 18:32,"613 Adams St, Austin, TX 73301" +306360,USB-C Charging Cable,1,11.95,12/18/19 16:37,"772 7th St, Los Angeles, CA 90001" +306361,AAA Batteries (4-pack),2,2.99,12/20/19 12:34,"260 Church St, Boston, MA 02215" +306362,Wired Headphones,1,11.99,12/18/19 10:22,"524 River St, San Francisco, CA 94016" +306363,AA Batteries (4-pack),2,3.84,12/27/19 19:48,"140 1st St, Los Angeles, CA 90001" +306364,AAA Batteries (4-pack),1,2.99,12/26/19 12:21,"844 9th St, Atlanta, GA 30301" +306365,34in Ultrawide Monitor,1,379.99,12/08/19 22:26,"560 Spruce St, New York City, NY 10001" +306366,iPhone,1,700,12/30/19 12:20,"188 Spruce St, Boston, MA 02215" +306367,AAA Batteries (4-pack),1,2.99,12/03/19 15:30,"55 2nd St, Austin, TX 73301" +306368,Macbook Pro Laptop,1,1700,12/14/19 06:02,"972 River St, Boston, MA 02215" +306369,Macbook Pro Laptop,1,1700,12/15/19 11:52,"58 Hill St, Boston, MA 02215" +306370,27in FHD Monitor,1,149.99,12/25/19 22:06,"597 Cherry St, San Francisco, CA 94016" +306371,27in 4K Gaming Monitor,1,389.99,12/09/19 06:23,"809 Washington St, New York City, NY 10001" +306372,Wired Headphones,1,11.99,12/31/19 14:03,"115 South St, Dallas, TX 75001" +306373,34in Ultrawide Monitor,1,379.99,12/29/19 19:15,"45 Elm St, San Francisco, CA 94016" +306374,Wired Headphones,1,11.99,12/23/19 01:16,"499 Jackson St, Los Angeles, CA 90001" +306375,Lightning Charging Cable,1,14.95,12/17/19 09:54,"443 Church St, San Francisco, CA 94016" +306376,20in Monitor,1,109.99,12/28/19 08:23,"82 14th St, Austin, TX 73301" +306377,Lightning Charging Cable,1,14.95,12/23/19 19:20,"652 Church St, Boston, MA 02215" +306378,AA Batteries (4-pack),3,3.84,12/11/19 12:33,"564 9th St, New York City, NY 10001" +306379,AAA Batteries (4-pack),4,2.99,12/12/19 18:34,"60 9th St, Los Angeles, CA 90001" +306380,AA Batteries (4-pack),2,3.84,12/29/19 08:55,"689 Lincoln St, Portland, ME 04101" +306381,iPhone,1,700,12/11/19 22:44,"609 Highland St, San Francisco, CA 94016" +306382,AAA Batteries (4-pack),1,2.99,12/19/19 12:06,"736 Hill St, Boston, MA 02215" +306383,AA Batteries (4-pack),1,3.84,12/09/19 21:28,"589 Jefferson St, Atlanta, GA 30301" +306384,Lightning Charging Cable,1,14.95,12/27/19 16:30,"979 South St, San Francisco, CA 94016" +306385,AA Batteries (4-pack),2,3.84,12/27/19 19:43,"769 Lincoln St, San Francisco, CA 94016" +306386,Lightning Charging Cable,1,14.95,12/31/19 17:25,"660 Dogwood St, Seattle, WA 98101" +306387,Wired Headphones,1,11.99,12/10/19 16:10,"68 Lakeview St, San Francisco, CA 94016" +306388,34in Ultrawide Monitor,1,379.99,12/12/19 12:39,"205 Cedar St, Atlanta, GA 30301" +306389,AA Batteries (4-pack),1,3.84,12/06/19 21:03,"701 2nd St, Boston, MA 02215" +306390,Lightning Charging Cable,1,14.95,12/22/19 10:38,"442 Ridge St, Los Angeles, CA 90001" +306391,AA Batteries (4-pack),1,3.84,12/24/19 19:43,"748 River St, San Francisco, CA 94016" +306392,Flatscreen TV,1,300,12/05/19 10:56,"847 Maple St, New York City, NY 10001" +306393,27in FHD Monitor,1,149.99,12/16/19 23:05,"943 River St, Los Angeles, CA 90001" +306394,AAA Batteries (4-pack),1,2.99,12/17/19 16:56,"201 River St, Los Angeles, CA 90001" +306395,AA Batteries (4-pack),1,3.84,12/24/19 15:15,"36 River St, Los Angeles, CA 90001" +306396,Apple Airpods Headphones,1,150,12/07/19 03:04,"950 Dogwood St, San Francisco, CA 94016" +306397,Lightning Charging Cable,1,14.95,12/28/19 11:51,"664 5th St, Boston, MA 02215" +306398,Lightning Charging Cable,1,14.95,12/30/19 10:35,"649 Main St, Portland, OR 97035" +306399,27in FHD Monitor,1,149.99,12/29/19 13:28,"676 Elm St, Atlanta, GA 30301" +306400,AAA Batteries (4-pack),2,2.99,12/09/19 17:48,"710 Lake St, San Francisco, CA 94016" +306401,AAA Batteries (4-pack),3,2.99,12/17/19 06:25,"855 Pine St, Portland, OR 97035" +306402,Lightning Charging Cable,1,14.95,12/13/19 21:23,"430 Spruce St, San Francisco, CA 94016" +306403,Wired Headphones,1,11.99,12/21/19 17:39,"616 1st St, Portland, OR 97035" +306404,Wired Headphones,1,11.99,12/22/19 12:53,"374 Johnson St, San Francisco, CA 94016" +306405,Bose SoundSport Headphones,1,99.99,12/23/19 09:50,"467 Willow St, Seattle, WA 98101" +306406,Wired Headphones,1,11.99,12/27/19 12:37,"267 13th St, Atlanta, GA 30301" +306406,Wired Headphones,1,11.99,12/27/19 12:37,"267 13th St, Atlanta, GA 30301" +306407,Wired Headphones,1,11.99,12/11/19 08:43,"190 Cedar St, Boston, MA 02215" +306408,Apple Airpods Headphones,1,150,12/28/19 08:14,"862 Jackson St, San Francisco, CA 94016" +306409,USB-C Charging Cable,1,11.95,12/13/19 10:36,"598 5th St, Portland, ME 04101" +306410,Lightning Charging Cable,1,14.95,12/25/19 17:22,"651 Forest St, Dallas, TX 75001" +306411,iPhone,1,700,12/08/19 19:40,"463 Forest St, Boston, MA 02215" +306412,USB-C Charging Cable,1,11.95,12/19/19 09:19,"488 Madison St, San Francisco, CA 94016" +306413,AA Batteries (4-pack),1,3.84,12/30/19 10:41,"766 Main St, New York City, NY 10001" +306414,iPhone,1,700,12/16/19 19:57,"342 Dogwood St, Seattle, WA 98101" +306415,Bose SoundSport Headphones,1,99.99,12/13/19 09:50,"582 Johnson St, New York City, NY 10001" +306416,Flatscreen TV,1,300,12/15/19 18:32,"980 14th St, Atlanta, GA 30301" +306417,Flatscreen TV,1,300,12/20/19 13:30,"179 6th St, San Francisco, CA 94016" +306418,AAA Batteries (4-pack),2,2.99,12/30/19 20:56,"414 9th St, New York City, NY 10001" +306419,Apple Airpods Headphones,1,150,12/10/19 11:52,"555 4th St, San Francisco, CA 94016" +306420,Wired Headphones,1,11.99,12/09/19 16:58,"25 Center St, Austin, TX 73301" +306421,AA Batteries (4-pack),1,3.84,12/11/19 12:06,"311 Johnson St, Austin, TX 73301" +306422,Lightning Charging Cable,1,14.95,12/03/19 10:54,"739 Maple St, Boston, MA 02215" +306423,AAA Batteries (4-pack),1,2.99,12/05/19 11:08,"858 Johnson St, Los Angeles, CA 90001" +306424,AA Batteries (4-pack),1,3.84,12/02/19 16:31,"761 12th St, Los Angeles, CA 90001" +306425,AAA Batteries (4-pack),2,2.99,12/19/19 17:14,"286 5th St, Dallas, TX 75001" +306426,USB-C Charging Cable,1,11.95,12/23/19 12:11,"26 Washington St, Seattle, WA 98101" +306427,ThinkPad Laptop,1,999.99,12/12/19 22:18,"59 4th St, New York City, NY 10001" +306428,Apple Airpods Headphones,1,150,12/23/19 06:05,"303 Pine St, Los Angeles, CA 90001" +306429,27in FHD Monitor,1,149.99,12/25/19 13:28,"367 Highland St, Boston, MA 02215" +306430,USB-C Charging Cable,1,11.95,12/15/19 19:31,"350 Dogwood St, New York City, NY 10001" +306431,Wired Headphones,1,11.99,12/26/19 20:38,"656 Cherry St, San Francisco, CA 94016" +306432,Apple Airpods Headphones,1,150,12/31/19 11:41,"688 Ridge St, Dallas, TX 75001" +306433,Macbook Pro Laptop,1,1700,12/11/19 18:50,"134 Sunset St, Boston, MA 02215" +306434,34in Ultrawide Monitor,1,379.99,12/21/19 13:19,"478 Meadow St, Seattle, WA 98101" +306435,Wired Headphones,1,11.99,12/18/19 06:58,"661 Lake St, Seattle, WA 98101" +306435,Google Phone,1,600,12/18/19 06:58,"661 Lake St, Seattle, WA 98101" +306436,Vareebadd Phone,1,400,12/07/19 04:02,"79 Elm St, Los Angeles, CA 90001" +306437,34in Ultrawide Monitor,1,379.99,12/16/19 18:47,"769 Forest St, Seattle, WA 98101" +306438,Macbook Pro Laptop,1,1700,12/07/19 09:18,"675 Cedar St, San Francisco, CA 94016" +306439,34in Ultrawide Monitor,1,379.99,12/14/19 16:43,"592 4th St, Portland, OR 97035" +306440,Lightning Charging Cable,2,14.95,12/14/19 17:39,"242 Forest St, New York City, NY 10001" +306441,iPhone,1,700,12/17/19 01:56,"589 4th St, Los Angeles, CA 90001" +306442,Wired Headphones,1,11.99,12/19/19 20:46,"169 Highland St, Los Angeles, CA 90001" +306443,Bose SoundSport Headphones,1,99.99,12/20/19 09:18,"139 12th St, Boston, MA 02215" +306444,Google Phone,1,600,12/16/19 17:00,"368 Maple St, San Francisco, CA 94016" +306444,Wired Headphones,1,11.99,12/16/19 17:00,"368 Maple St, San Francisco, CA 94016" +306445,Apple Airpods Headphones,1,150,12/24/19 14:15,"380 1st St, New York City, NY 10001" +306446,AAA Batteries (4-pack),2,2.99,12/06/19 00:19,"518 Washington St, Boston, MA 02215" +306447,34in Ultrawide Monitor,1,379.99,12/03/19 13:07,"508 Maple St, Atlanta, GA 30301" +306448,AA Batteries (4-pack),1,3.84,12/19/19 06:48,"722 12th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +306449,Wired Headphones,1,11.99,12/16/19 11:54,"305 Dogwood St, Boston, MA 02215" +306450,LG Dryer,1,600.0,12/06/19 15:35,"735 Main St, Boston, MA 02215" +306451,Lightning Charging Cable,2,14.95,12/27/19 23:45,"517 North St, Boston, MA 02215" +306452,USB-C Charging Cable,1,11.95,12/27/19 11:16,"822 5th St, New York City, NY 10001" +306453,Wired Headphones,2,11.99,12/20/19 21:36,"10 1st St, Los Angeles, CA 90001" +306454,Bose SoundSport Headphones,1,99.99,12/04/19 15:32,"998 Highland St, New York City, NY 10001" +306455,34in Ultrawide Monitor,1,379.99,12/23/19 17:51,"473 Spruce St, San Francisco, CA 94016" +306456,Apple Airpods Headphones,1,150,12/25/19 16:27,"348 6th St, Atlanta, GA 30301" +306457,Wired Headphones,1,11.99,12/02/19 18:27,"669 Elm St, Portland, OR 97035" +306458,34in Ultrawide Monitor,1,379.99,12/13/19 19:26,"597 Church St, Los Angeles, CA 90001" +306459,AAA Batteries (4-pack),1,2.99,12/24/19 08:55,"623 Walnut St, Portland, OR 97035" +306460,LG Dryer,1,600.0,12/13/19 18:44,"741 Forest St, Los Angeles, CA 90001" +306461,AA Batteries (4-pack),2,3.84,12/28/19 14:53,"564 Chestnut St, Los Angeles, CA 90001" +306462,AAA Batteries (4-pack),1,2.99,12/07/19 17:21,"465 Washington St, San Francisco, CA 94016" +306463,Wired Headphones,1,11.99,12/20/19 15:36,"947 8th St, San Francisco, CA 94016" +306464,Wired Headphones,1,11.99,12/05/19 06:40,"153 Lincoln St, San Francisco, CA 94016" +306465,Google Phone,1,600,12/20/19 20:08,"419 Chestnut St, Austin, TX 73301" +306466,USB-C Charging Cable,1,11.95,12/31/19 13:20,"455 Walnut St, San Francisco, CA 94016" +306467,34in Ultrawide Monitor,1,379.99,12/22/19 10:18,"294 Forest St, Portland, OR 97035" +306468,27in FHD Monitor,1,149.99,12/26/19 02:14,"954 Lake St, New York City, NY 10001" +306469,27in 4K Gaming Monitor,1,389.99,12/22/19 16:01,"924 Ridge St, San Francisco, CA 94016" +306470,iPhone,1,700,12/20/19 20:07,"742 2nd St, New York City, NY 10001" +306470,Wired Headphones,1,11.99,12/20/19 20:07,"742 2nd St, New York City, NY 10001" +306471,USB-C Charging Cable,1,11.95,12/27/19 17:02,"511 Maple St, Portland, OR 97035" +306472,27in 4K Gaming Monitor,1,389.99,12/24/19 01:10,"888 Jefferson St, Boston, MA 02215" +306472,AA Batteries (4-pack),1,3.84,12/24/19 01:10,"888 Jefferson St, Boston, MA 02215" +306473,Bose SoundSport Headphones,1,99.99,12/13/19 21:35,"505 Church St, San Francisco, CA 94016" +306474,Wired Headphones,1,11.99,12/05/19 08:16,"363 8th St, Los Angeles, CA 90001" +306475,34in Ultrawide Monitor,1,379.99,12/15/19 18:25,"313 6th St, Dallas, TX 75001" +306476,Vareebadd Phone,1,400,12/14/19 14:09,"695 10th St, Austin, TX 73301" +306476,USB-C Charging Cable,1,11.95,12/14/19 14:09,"695 10th St, Austin, TX 73301" +306477,Wired Headphones,1,11.99,12/03/19 13:53,"530 Lakeview St, Los Angeles, CA 90001" +306478,AA Batteries (4-pack),1,3.84,12/16/19 18:34,"566 Lincoln St, San Francisco, CA 94016" +306479,Apple Airpods Headphones,1,150,12/22/19 21:21,"887 8th St, Los Angeles, CA 90001" +306480,AA Batteries (4-pack),1,3.84,12/14/19 13:05,"372 Lake St, Boston, MA 02215" +306481,Wired Headphones,1,11.99,12/18/19 11:25,"634 6th St, New York City, NY 10001" +306482,Apple Airpods Headphones,1,150,12/29/19 08:45,"454 Lakeview St, San Francisco, CA 94016" +306483,Lightning Charging Cable,1,14.95,12/16/19 09:49,"284 6th St, Seattle, WA 98101" +306484,34in Ultrawide Monitor,1,379.99,12/02/19 01:07,"929 Maple St, Boston, MA 02215" +306485,27in FHD Monitor,1,149.99,12/20/19 16:16,"100 Madison St, New York City, NY 10001" +306486,AAA Batteries (4-pack),1,2.99,12/26/19 09:47,"608 7th St, Seattle, WA 98101" +306487,Lightning Charging Cable,1,14.95,12/23/19 10:38,"70 6th St, Portland, OR 97035" +306488,Wired Headphones,1,11.99,12/05/19 18:16,"298 Jackson St, New York City, NY 10001" +306489,USB-C Charging Cable,1,11.95,12/03/19 21:41,"867 Lakeview St, Dallas, TX 75001" +306490,Bose SoundSport Headphones,1,99.99,12/09/19 20:55,"624 Cedar St, San Francisco, CA 94016" +306491,AAA Batteries (4-pack),1,2.99,12/23/19 18:05,"813 Main St, Los Angeles, CA 90001" +306492,Macbook Pro Laptop,1,1700,12/15/19 06:46,"560 7th St, New York City, NY 10001" +306493,USB-C Charging Cable,1,11.95,12/08/19 20:07,"136 Dogwood St, Boston, MA 02215" +306494,20in Monitor,1,109.99,12/14/19 10:18,"171 Maple St, Boston, MA 02215" +306495,27in FHD Monitor,1,149.99,12/29/19 14:27,"356 6th St, San Francisco, CA 94016" +306496,Lightning Charging Cable,1,14.95,12/15/19 17:48,"784 River St, San Francisco, CA 94016" +306497,AA Batteries (4-pack),1,3.84,12/07/19 12:32,"38 Highland St, Dallas, TX 75001" +306498,USB-C Charging Cable,1,11.95,12/16/19 17:57,"940 River St, New York City, NY 10001" +306499,Lightning Charging Cable,1,14.95,12/29/19 19:22,"43 10th St, Seattle, WA 98101" +306500,Lightning Charging Cable,1,14.95,12/15/19 12:46,"763 Meadow St, Atlanta, GA 30301" +306501,Lightning Charging Cable,1,14.95,12/09/19 14:30,"340 Lake St, San Francisco, CA 94016" +306502,27in FHD Monitor,1,149.99,12/07/19 08:51,"308 Wilson St, Los Angeles, CA 90001" +306503,AAA Batteries (4-pack),1,2.99,12/20/19 13:59,"496 Madison St, Dallas, TX 75001" +306504,USB-C Charging Cable,1,11.95,12/24/19 11:37,"192 10th St, San Francisco, CA 94016" +306505,AA Batteries (4-pack),2,3.84,12/27/19 11:05,"836 West St, New York City, NY 10001" +306506,AAA Batteries (4-pack),2,2.99,12/04/19 16:56,"441 6th St, Seattle, WA 98101" +306507,Lightning Charging Cable,1,14.95,12/21/19 13:29,"345 6th St, Atlanta, GA 30301" +306508,Bose SoundSport Headphones,1,99.99,12/12/19 23:18,"920 2nd St, Portland, ME 04101" +306509,27in FHD Monitor,1,149.99,12/13/19 14:05,"110 4th St, San Francisco, CA 94016" +306510,27in FHD Monitor,1,149.99,12/03/19 08:44,"357 11th St, San Francisco, CA 94016" +306511,USB-C Charging Cable,1,11.95,12/27/19 19:34,"605 River St, Los Angeles, CA 90001" +306512,AA Batteries (4-pack),1,3.84,12/01/19 18:04,"442 Hill St, San Francisco, CA 94016" +306513,Lightning Charging Cable,1,14.95,12/16/19 17:18,"730 Dogwood St, San Francisco, CA 94016" +306514,Apple Airpods Headphones,1,150,12/24/19 18:34,"63 Sunset St, Boston, MA 02215" +306515,20in Monitor,1,109.99,12/15/19 18:26,"281 Hickory St, New York City, NY 10001" +306516,34in Ultrawide Monitor,1,379.99,12/23/19 16:29,"912 9th St, Atlanta, GA 30301" +306517,Lightning Charging Cable,1,14.95,12/05/19 11:45,"391 Cedar St, Seattle, WA 98101" +306518,AAA Batteries (4-pack),1,2.99,12/12/19 09:05,"859 North St, New York City, NY 10001" +306519,34in Ultrawide Monitor,1,379.99,12/01/19 07:54,"43 Highland St, Los Angeles, CA 90001" +306520,AA Batteries (4-pack),1,3.84,12/31/19 15:21,"742 Washington St, New York City, NY 10001" +306521,AA Batteries (4-pack),1,3.84,12/31/19 16:33,"829 8th St, San Francisco, CA 94016" +306522,iPhone,1,700,12/26/19 17:51,"448 9th St, San Francisco, CA 94016" +306523,Lightning Charging Cable,1,14.95,12/02/19 06:31,"59 Maple St, Seattle, WA 98101" +306524,Lightning Charging Cable,1,14.95,12/15/19 12:37,"288 Forest St, Los Angeles, CA 90001" +306525,Vareebadd Phone,1,400,12/09/19 20:59,"240 Hickory St, San Francisco, CA 94016" +306526,AAA Batteries (4-pack),1,2.99,12/28/19 15:46,"937 Maple St, Los Angeles, CA 90001" +306527,iPhone,1,700,12/24/19 13:35,"793 5th St, Boston, MA 02215" +306528,Wired Headphones,1,11.99,12/06/19 15:11,"678 2nd St, Los Angeles, CA 90001" +306529,Wired Headphones,1,11.99,12/20/19 04:14,"906 North St, Atlanta, GA 30301" +306530,Bose SoundSport Headphones,1,99.99,12/26/19 02:39,"23 Main St, Portland, OR 97035" +306531,Flatscreen TV,1,300,12/22/19 09:33,"755 4th St, New York City, NY 10001" +306532,Apple Airpods Headphones,1,150,12/26/19 23:32,"912 Elm St, Los Angeles, CA 90001" +306533,AA Batteries (4-pack),2,3.84,12/22/19 14:10,"434 Jefferson St, Boston, MA 02215" +306534,USB-C Charging Cable,1,11.95,12/15/19 05:31,"398 Elm St, Boston, MA 02215" +306535,AAA Batteries (4-pack),1,2.99,12/15/19 20:57,"333 1st St, New York City, NY 10001" +306536,Lightning Charging Cable,1,14.95,12/10/19 10:10,"215 Pine St, Los Angeles, CA 90001" +306537,Lightning Charging Cable,1,14.95,12/04/19 19:31,"219 4th St, Dallas, TX 75001" +306538,Google Phone,1,600,12/31/19 11:36,"727 Jackson St, Los Angeles, CA 90001" +306539,Bose SoundSport Headphones,1,99.99,12/22/19 19:40,"181 Willow St, New York City, NY 10001" +306540,27in FHD Monitor,1,149.99,12/11/19 14:24,"585 Main St, Los Angeles, CA 90001" +306541,34in Ultrawide Monitor,1,379.99,12/04/19 07:39,"572 5th St, Boston, MA 02215" +306542,AAA Batteries (4-pack),1,2.99,12/21/19 13:28,"934 River St, San Francisco, CA 94016" +306543,Apple Airpods Headphones,1,150,12/03/19 11:33,"225 2nd St, New York City, NY 10001" +306544,Bose SoundSport Headphones,1,99.99,12/05/19 12:52,"407 Maple St, Los Angeles, CA 90001" +306545,AA Batteries (4-pack),1,3.84,12/11/19 13:24,"541 Cherry St, New York City, NY 10001" +306546,iPhone,1,700,12/20/19 17:37,"993 Maple St, San Francisco, CA 94016" +306547,Flatscreen TV,1,300,12/26/19 11:53,"109 Hill St, New York City, NY 10001" +306548,Apple Airpods Headphones,1,150,12/26/19 11:59,"545 Madison St, Dallas, TX 75001" +306549,20in Monitor,1,109.99,12/06/19 16:30,"874 Cedar St, Atlanta, GA 30301" +306550,Bose SoundSport Headphones,2,99.99,12/04/19 13:25,"207 Adams St, San Francisco, CA 94016" +306551,Wired Headphones,1,11.99,12/24/19 17:09,"165 Lincoln St, Seattle, WA 98101" +306552,AA Batteries (4-pack),2,3.84,12/24/19 11:08,"860 Madison St, Atlanta, GA 30301" +306553,AAA Batteries (4-pack),1,2.99,12/14/19 17:15,"270 Center St, San Francisco, CA 94016" +306554,Macbook Pro Laptop,1,1700,12/05/19 20:22,"752 Cedar St, San Francisco, CA 94016" +306555,Apple Airpods Headphones,1,150,12/04/19 16:01,"691 Elm St, Atlanta, GA 30301" +306556,Lightning Charging Cable,1,14.95,12/13/19 13:57,"480 Spruce St, Boston, MA 02215" +306557,AAA Batteries (4-pack),1,2.99,12/10/19 16:13,"195 Church St, Dallas, TX 75001" +306558,USB-C Charging Cable,1,11.95,12/05/19 15:52,"734 River St, Portland, ME 04101" +306559,LG Washing Machine,1,600.0,12/03/19 14:58,"104 Sunset St, Los Angeles, CA 90001" +306560,20in Monitor,1,109.99,12/21/19 07:01,"93 Wilson St, New York City, NY 10001" +306561,Apple Airpods Headphones,1,150,12/24/19 23:04,"848 Washington St, Los Angeles, CA 90001" +306562,iPhone,1,700,12/05/19 22:43,"642 Maple St, Austin, TX 73301" +306563,Apple Airpods Headphones,1,150,12/06/19 23:28,"160 Washington St, Los Angeles, CA 90001" +306564,Apple Airpods Headphones,1,150,12/28/19 00:38,"82 6th St, New York City, NY 10001" +306565,Bose SoundSport Headphones,1,99.99,12/25/19 21:07,"879 2nd St, Boston, MA 02215" +306566,27in FHD Monitor,1,149.99,12/05/19 16:55,"624 12th St, Seattle, WA 98101" +306567,Macbook Pro Laptop,1,1700,12/23/19 18:12,"311 9th St, Los Angeles, CA 90001" +306568,AA Batteries (4-pack),1,3.84,12/06/19 09:38,"278 Sunset St, Los Angeles, CA 90001" +306569,iPhone,1,700,12/20/19 17:06,"574 Madison St, Los Angeles, CA 90001" +306569,Wired Headphones,1,11.99,12/20/19 17:06,"574 Madison St, Los Angeles, CA 90001" +306570,AAA Batteries (4-pack),1,2.99,12/16/19 07:50,"175 12th St, San Francisco, CA 94016" +306571,AA Batteries (4-pack),1,3.84,12/05/19 10:47,"666 10th St, Seattle, WA 98101" +306572,Lightning Charging Cable,1,14.95,12/16/19 18:17,"634 Walnut St, Portland, OR 97035" +306573,AAA Batteries (4-pack),1,2.99,12/24/19 18:38,"492 Main St, Los Angeles, CA 90001" +306574,iPhone,1,700,12/12/19 13:54,"145 Maple St, San Francisco, CA 94016" +306575,27in FHD Monitor,1,149.99,12/28/19 19:12,"256 Forest St, Boston, MA 02215" +306576,Apple Airpods Headphones,1,150,12/23/19 23:53,"717 Willow St, New York City, NY 10001" +306577,Bose SoundSport Headphones,1,99.99,12/16/19 21:12,"189 Johnson St, Boston, MA 02215" +306578,34in Ultrawide Monitor,1,379.99,12/08/19 11:53,"42 11th St, Los Angeles, CA 90001" +306579,Lightning Charging Cable,2,14.95,12/03/19 17:53,"615 13th St, Boston, MA 02215" +306580,Macbook Pro Laptop,1,1700,12/07/19 12:13,"730 River St, Dallas, TX 75001" +306581,Macbook Pro Laptop,1,1700,12/26/19 23:15,"178 Sunset St, San Francisco, CA 94016" +306582,USB-C Charging Cable,1,11.95,12/15/19 23:44,"751 Forest St, Boston, MA 02215" +306583,Apple Airpods Headphones,1,150,12/10/19 20:16,"335 1st St, New York City, NY 10001" +306584,AA Batteries (4-pack),1,3.84,12/03/19 15:41,"501 River St, Atlanta, GA 30301" +306585,Flatscreen TV,1,300,12/20/19 21:15,"432 Johnson St, Seattle, WA 98101" +306586,USB-C Charging Cable,1,11.95,12/27/19 15:55,"515 Willow St, San Francisco, CA 94016" +306587,AA Batteries (4-pack),1,3.84,12/04/19 07:06,"493 Lakeview St, Los Angeles, CA 90001" +306588,Apple Airpods Headphones,1,150,12/25/19 16:20,"878 2nd St, New York City, NY 10001" +306589,Apple Airpods Headphones,1,150,12/04/19 14:17,"67 9th St, Seattle, WA 98101" +306590,USB-C Charging Cable,1,11.95,12/07/19 11:15,"202 Maple St, New York City, NY 10001" +306591,Wired Headphones,1,11.99,12/13/19 20:36,"285 Forest St, Portland, OR 97035" +306592,USB-C Charging Cable,1,11.95,12/12/19 15:26,"660 Main St, San Francisco, CA 94016" +306593,27in 4K Gaming Monitor,1,389.99,12/03/19 11:17,"993 North St, San Francisco, CA 94016" +306594,AAA Batteries (4-pack),4,2.99,12/15/19 19:55,"148 6th St, Atlanta, GA 30301" +306595,Flatscreen TV,1,300,12/16/19 16:55,"530 Hill St, Los Angeles, CA 90001" +306596,Lightning Charging Cable,1,14.95,12/07/19 20:54,"254 Madison St, Atlanta, GA 30301" +306597,iPhone,1,700,12/19/19 15:38,"537 South St, San Francisco, CA 94016" +306598,Lightning Charging Cable,1,14.95,12/17/19 20:13,"347 Adams St, New York City, NY 10001" +306599,Bose SoundSport Headphones,1,99.99,12/29/19 20:48,"519 Main St, Portland, OR 97035" +306600,USB-C Charging Cable,1,11.95,12/30/19 19:25,"367 Pine St, Boston, MA 02215" +306601,AA Batteries (4-pack),1,3.84,12/07/19 22:59,"727 Chestnut St, New York City, NY 10001" +306602,Lightning Charging Cable,1,14.95,12/21/19 17:51,"118 Wilson St, Atlanta, GA 30301" +306603,AA Batteries (4-pack),1,3.84,12/10/19 18:31,"113 6th St, New York City, NY 10001" +306604,USB-C Charging Cable,1,11.95,12/12/19 12:09,"848 Park St, New York City, NY 10001" +306605,Google Phone,1,600,12/24/19 21:34,"109 Wilson St, New York City, NY 10001" +306605,USB-C Charging Cable,1,11.95,12/24/19 21:34,"109 Wilson St, New York City, NY 10001" +306606,Apple Airpods Headphones,1,150,12/04/19 13:45,"991 Chestnut St, Boston, MA 02215" +306607,USB-C Charging Cable,1,11.95,12/03/19 09:05,"225 7th St, New York City, NY 10001" +306608,Apple Airpods Headphones,1,150,12/22/19 19:33,"14 Madison St, San Francisco, CA 94016" +306609,USB-C Charging Cable,1,11.95,12/22/19 20:57,"962 Hill St, Dallas, TX 75001" +306610,Wired Headphones,1,11.99,12/06/19 15:25,"439 Walnut St, New York City, NY 10001" +306611,iPhone,1,700,12/10/19 13:16,"821 Adams St, Seattle, WA 98101" +306611,Lightning Charging Cable,1,14.95,12/10/19 13:16,"821 Adams St, Seattle, WA 98101" +306612,Lightning Charging Cable,1,14.95,12/11/19 12:10,"620 Church St, Boston, MA 02215" +306613,AAA Batteries (4-pack),1,2.99,12/12/19 11:18,"440 Chestnut St, Austin, TX 73301" +306614,AA Batteries (4-pack),2,3.84,12/03/19 17:21,"504 Adams St, San Francisco, CA 94016" +306615,AA Batteries (4-pack),1,3.84,12/18/19 00:34,"418 Willow St, Portland, OR 97035" +306616,Bose SoundSport Headphones,1,99.99,12/01/19 12:15,"476 Walnut St, New York City, NY 10001" +306617,20in Monitor,1,109.99,12/14/19 08:00,"272 Forest St, Portland, ME 04101" +306618,AAA Batteries (4-pack),1,2.99,12/14/19 20:33,"682 Lakeview St, Portland, OR 97035" +306619,AA Batteries (4-pack),1,3.84,12/20/19 10:51,"243 Jackson St, San Francisco, CA 94016" +306620,USB-C Charging Cable,2,11.95,12/01/19 21:48,"13 Lake St, New York City, NY 10001" +306621,AAA Batteries (4-pack),1,2.99,12/25/19 09:21,"132 Park St, Atlanta, GA 30301" +,,,,, +306622,Apple Airpods Headphones,1,150,12/26/19 18:59,"131 1st St, Atlanta, GA 30301" +306623,Flatscreen TV,1,300,12/03/19 05:58,"309 Ridge St, Dallas, TX 75001" +306624,Wired Headphones,1,11.99,12/25/19 21:40,"307 Lincoln St, San Francisco, CA 94016" +306625,34in Ultrawide Monitor,1,379.99,12/08/19 20:59,"596 Johnson St, Dallas, TX 75001" +306626,Macbook Pro Laptop,1,1700,12/14/19 18:44,"526 Hickory St, San Francisco, CA 94016" +306627,Wired Headphones,1,11.99,12/26/19 16:48,"476 9th St, Los Angeles, CA 90001" +306628,Google Phone,1,600,12/04/19 10:27,"996 2nd St, Los Angeles, CA 90001" +306628,USB-C Charging Cable,1,11.95,12/04/19 10:27,"996 2nd St, Los Angeles, CA 90001" +306629,AAA Batteries (4-pack),1,2.99,12/25/19 06:53,"494 West St, Seattle, WA 98101" +306630,AAA Batteries (4-pack),1,2.99,12/26/19 11:29,"289 1st St, Dallas, TX 75001" +306631,AAA Batteries (4-pack),1,2.99,12/21/19 20:21,"181 Lakeview St, Boston, MA 02215" +306632,Wired Headphones,1,11.99,12/25/19 08:44,"17 Madison St, Los Angeles, CA 90001" +306633,Lightning Charging Cable,1,14.95,12/24/19 21:31,"104 River St, Seattle, WA 98101" +306634,Flatscreen TV,1,300,12/14/19 20:47,"518 Elm St, Boston, MA 02215" +306635,AAA Batteries (4-pack),1,2.99,12/28/19 13:35,"67 5th St, San Francisco, CA 94016" +306636,Macbook Pro Laptop,1,1700,12/28/19 06:36,"979 5th St, New York City, NY 10001" +306637,Wired Headphones,1,11.99,12/30/19 20:53,"460 13th St, Austin, TX 73301" +306638,USB-C Charging Cable,1,11.95,12/01/19 09:43,"149 13th St, Los Angeles, CA 90001" +306639,iPhone,1,700,12/13/19 00:39,"572 Elm St, Portland, OR 97035" +306640,Bose SoundSport Headphones,1,99.99,12/25/19 08:52,"540 Park St, Austin, TX 73301" +306641,Lightning Charging Cable,1,14.95,12/21/19 21:09,"782 14th St, New York City, NY 10001" +306642,27in 4K Gaming Monitor,1,389.99,12/16/19 19:41,"381 Forest St, San Francisco, CA 94016" +306643,AAA Batteries (4-pack),1,2.99,12/19/19 09:18,"102 12th St, Seattle, WA 98101" +306644,Flatscreen TV,1,300,12/22/19 11:49,"529 Highland St, San Francisco, CA 94016" +306644,27in FHD Monitor,1,149.99,12/22/19 11:49,"529 Highland St, San Francisco, CA 94016" +306645,Lightning Charging Cable,1,14.95,12/29/19 22:24,"183 9th St, San Francisco, CA 94016" +306646,iPhone,1,700,12/19/19 20:46,"48 Elm St, Los Angeles, CA 90001" +306647,Apple Airpods Headphones,1,150,12/16/19 10:52,"43 Maple St, New York City, NY 10001" +306648,Bose SoundSport Headphones,1,99.99,12/02/19 20:05,"921 Pine St, Boston, MA 02215" +306649,27in FHD Monitor,1,149.99,12/22/19 10:15,"354 Ridge St, Los Angeles, CA 90001" +306650,20in Monitor,1,109.99,12/04/19 18:58,"990 Meadow St, Dallas, TX 75001" +306651,iPhone,1,700,12/03/19 23:46,"814 South St, New York City, NY 10001" +306651,Apple Airpods Headphones,1,150,12/03/19 23:46,"814 South St, New York City, NY 10001" +306652,Lightning Charging Cable,1,14.95,12/01/19 11:02,"250 Madison St, Austin, TX 73301" +306653,USB-C Charging Cable,1,11.95,12/31/19 21:46,"289 Walnut St, Austin, TX 73301" +306654,Lightning Charging Cable,1,14.95,12/12/19 19:05,"249 Jackson St, Atlanta, GA 30301" +306655,Apple Airpods Headphones,1,150,12/31/19 09:01,"69 Cedar St, San Francisco, CA 94016" +306656,Wired Headphones,1,11.99,12/10/19 11:09,"189 14th St, San Francisco, CA 94016" +306657,USB-C Charging Cable,1,11.95,12/04/19 19:46,"567 Main St, San Francisco, CA 94016" +306658,Google Phone,1,600,12/21/19 15:34,"902 Main St, New York City, NY 10001" +306659,Apple Airpods Headphones,1,150,12/31/19 18:20,"375 2nd St, New York City, NY 10001" +306660,AA Batteries (4-pack),3,3.84,12/27/19 20:51,"823 Park St, Seattle, WA 98101" +306661,Lightning Charging Cable,1,14.95,12/24/19 16:05,"230 2nd St, San Francisco, CA 94016" +306662,34in Ultrawide Monitor,1,379.99,12/17/19 11:17,"916 Dogwood St, Austin, TX 73301" +306662,Wired Headphones,1,11.99,12/17/19 11:17,"916 Dogwood St, Austin, TX 73301" +306663,Lightning Charging Cable,1,14.95,12/22/19 11:33,"931 South St, Los Angeles, CA 90001" +306664,Google Phone,1,600,12/20/19 11:52,"836 Main St, Austin, TX 73301" +306664,USB-C Charging Cable,1,11.95,12/20/19 11:52,"836 Main St, Austin, TX 73301" +306665,USB-C Charging Cable,1,11.95,12/19/19 19:05,"28 Wilson St, Dallas, TX 75001" +306666,Lightning Charging Cable,1,14.95,12/12/19 21:56,"787 Adams St, Dallas, TX 75001" +306667,AA Batteries (4-pack),1,3.84,12/07/19 22:09,"711 11th St, San Francisco, CA 94016" +306668,Bose SoundSport Headphones,1,99.99,12/18/19 11:58,"597 5th St, Seattle, WA 98101" +306668,34in Ultrawide Monitor,1,379.99,12/18/19 11:58,"597 5th St, Seattle, WA 98101" +306669,AAA Batteries (4-pack),4,2.99,12/29/19 09:28,"842 Jackson St, Dallas, TX 75001" +306670,Macbook Pro Laptop,1,1700,12/27/19 19:20,"428 2nd St, San Francisco, CA 94016" +306671,USB-C Charging Cable,1,11.95,12/02/19 14:03,"607 6th St, Los Angeles, CA 90001" +306672,Wired Headphones,1,11.99,12/11/19 03:41,"663 Maple St, Los Angeles, CA 90001" +306673,Apple Airpods Headphones,1,150,12/18/19 11:06,"356 Highland St, Seattle, WA 98101" +306674,Lightning Charging Cable,1,14.95,12/09/19 19:42,"624 Jackson St, Portland, OR 97035" +306675,Apple Airpods Headphones,1,150,12/28/19 08:55,"508 North St, New York City, NY 10001" +306676,AA Batteries (4-pack),3,3.84,12/12/19 14:27,"44 Maple St, Los Angeles, CA 90001" +306677,Bose SoundSport Headphones,1,99.99,12/19/19 19:01,"397 Cedar St, Los Angeles, CA 90001" +306678,Apple Airpods Headphones,1,150,12/16/19 16:36,"185 Meadow St, Portland, OR 97035" +306679,27in 4K Gaming Monitor,1,389.99,12/04/19 18:49,"529 River St, Seattle, WA 98101" +306680,ThinkPad Laptop,1,999.99,12/13/19 00:22,"923 Madison St, San Francisco, CA 94016" +306681,Apple Airpods Headphones,1,150,12/18/19 07:04,"293 Willow St, New York City, NY 10001" +306682,AA Batteries (4-pack),1,3.84,12/22/19 11:49,"183 Johnson St, Seattle, WA 98101" +306683,AAA Batteries (4-pack),1,2.99,12/11/19 11:48,"631 Spruce St, San Francisco, CA 94016" +306684,Google Phone,1,600,12/16/19 19:14,"721 2nd St, New York City, NY 10001" +306685,Lightning Charging Cable,1,14.95,12/31/19 21:54,"153 5th St, San Francisco, CA 94016" +306686,AAA Batteries (4-pack),2,2.99,12/05/19 11:04,"39 Sunset St, Boston, MA 02215" +306687,Bose SoundSport Headphones,1,99.99,12/21/19 04:12,"714 12th St, Atlanta, GA 30301" +306688,AA Batteries (4-pack),2,3.84,12/29/19 21:58,"127 13th St, Atlanta, GA 30301" +306689,Bose SoundSport Headphones,1,99.99,12/11/19 16:29,"718 10th St, Los Angeles, CA 90001" +306690,USB-C Charging Cable,1,11.95,12/11/19 14:50,"97 Adams St, San Francisco, CA 94016" +306691,Wired Headphones,2,11.99,12/22/19 08:17,"445 Park St, New York City, NY 10001" +306692,USB-C Charging Cable,1,11.95,12/30/19 14:27,"319 Ridge St, Boston, MA 02215" +306693,27in 4K Gaming Monitor,1,389.99,12/23/19 13:53,"908 South St, San Francisco, CA 94016" +,,,,, +306694,27in FHD Monitor,1,149.99,12/10/19 14:27,"147 12th St, Los Angeles, CA 90001" +306695,AA Batteries (4-pack),1,3.84,12/05/19 18:09,"272 Johnson St, Austin, TX 73301" +306696,Wired Headphones,1,11.99,12/18/19 15:24,"384 4th St, New York City, NY 10001" +306697,AA Batteries (4-pack),4,3.84,12/04/19 14:45,"389 Hickory St, San Francisco, CA 94016" +306698,Apple Airpods Headphones,1,150,12/19/19 20:07,"717 Church St, Dallas, TX 75001" +306699,AA Batteries (4-pack),1,3.84,12/18/19 00:33,"892 9th St, Portland, OR 97035" +306700,Flatscreen TV,1,300,12/23/19 12:23,"323 Forest St, New York City, NY 10001" +306701,Wired Headphones,1,11.99,12/18/19 01:44,"979 1st St, Dallas, TX 75001" +306702,27in FHD Monitor,1,149.99,12/05/19 01:06,"604 Wilson St, San Francisco, CA 94016" +306703,Lightning Charging Cable,1,14.95,12/22/19 17:15,"545 14th St, Dallas, TX 75001" +306704,USB-C Charging Cable,1,11.95,12/22/19 17:50,"319 Maple St, New York City, NY 10001" +306705,Wired Headphones,1,11.99,12/11/19 23:54,"393 River St, Seattle, WA 98101" +306706,20in Monitor,1,109.99,12/23/19 11:40,"778 Washington St, Boston, MA 02215" +306707,27in FHD Monitor,1,149.99,12/22/19 14:00,"303 Walnut St, Los Angeles, CA 90001" +306708,27in 4K Gaming Monitor,1,389.99,12/16/19 22:52,"649 Lake St, Boston, MA 02215" +306709,Flatscreen TV,1,300,12/10/19 13:56,"270 4th St, Los Angeles, CA 90001" +306710,27in 4K Gaming Monitor,1,389.99,12/03/19 19:04,"38 Washington St, San Francisco, CA 94016" +306711,Lightning Charging Cable,1,14.95,12/26/19 11:35,"318 Lake St, Atlanta, GA 30301" +306712,Wired Headphones,1,11.99,12/09/19 09:23,"45 12th St, Los Angeles, CA 90001" +306713,Wired Headphones,1,11.99,12/19/19 16:25,"911 Lakeview St, Seattle, WA 98101" +306714,USB-C Charging Cable,1,11.95,12/01/19 20:24,"635 Madison St, Boston, MA 02215" +306715,USB-C Charging Cable,2,11.95,12/10/19 14:42,"190 8th St, Dallas, TX 75001" +306716,iPhone,1,700,12/22/19 18:23,"323 Meadow St, Los Angeles, CA 90001" +306717,AAA Batteries (4-pack),1,2.99,12/14/19 11:09,"107 Jefferson St, Dallas, TX 75001" +306718,AAA Batteries (4-pack),1,2.99,12/22/19 07:42,"222 Washington St, San Francisco, CA 94016" +306718,20in Monitor,1,109.99,12/22/19 07:42,"222 Washington St, San Francisco, CA 94016" +306719,27in FHD Monitor,1,149.99,12/10/19 11:04,"247 Chestnut St, New York City, NY 10001" +306720,Apple Airpods Headphones,1,150,12/06/19 08:56,"22 Cherry St, Austin, TX 73301" +306721,Apple Airpods Headphones,1,150,12/01/19 07:45,"110 Pine St, Los Angeles, CA 90001" +306722,Apple Airpods Headphones,1,150,12/17/19 22:48,"459 Madison St, San Francisco, CA 94016" +306723,Bose SoundSport Headphones,1,99.99,12/24/19 22:03,"76 11th St, Austin, TX 73301" +306724,Macbook Pro Laptop,1,1700,12/15/19 14:07,"839 4th St, San Francisco, CA 94016" +306725,Bose SoundSport Headphones,1,99.99,12/12/19 21:43,"571 Lincoln St, Portland, OR 97035" +306726,Flatscreen TV,1,300,12/31/19 05:48,"104 13th St, Boston, MA 02215" +306727,AA Batteries (4-pack),1,3.84,12/09/19 16:53,"435 Cedar St, Atlanta, GA 30301" +306728,Wired Headphones,1,11.99,12/06/19 14:00,"146 13th St, Atlanta, GA 30301" +306729,27in FHD Monitor,1,149.99,12/14/19 18:17,"117 9th St, New York City, NY 10001" +306730,Lightning Charging Cable,1,14.95,12/13/19 13:07,"838 Meadow St, Los Angeles, CA 90001" +306731,AA Batteries (4-pack),3,3.84,12/04/19 10:42,"417 Main St, San Francisco, CA 94016" +306731,Lightning Charging Cable,1,14.95,12/04/19 10:42,"417 Main St, San Francisco, CA 94016" +306732,Bose SoundSport Headphones,1,99.99,12/11/19 15:57,"92 Jackson St, San Francisco, CA 94016" +306733,USB-C Charging Cable,1,11.95,12/05/19 17:57,"761 13th St, New York City, NY 10001" +306734,Macbook Pro Laptop,1,1700,12/13/19 12:39,"989 Johnson St, Los Angeles, CA 90001" +306735,20in Monitor,1,109.99,12/14/19 20:03,"138 Center St, Los Angeles, CA 90001" +306736,Google Phone,1,600,12/01/19 14:12,"908 Main St, Atlanta, GA 30301" +306736,Bose SoundSport Headphones,1,99.99,12/01/19 14:12,"908 Main St, Atlanta, GA 30301" +306737,AA Batteries (4-pack),1,3.84,12/22/19 10:47,"174 Jackson St, Dallas, TX 75001" +306738,iPhone,1,700,12/31/19 20:19,"301 Wilson St, Boston, MA 02215" +306738,Lightning Charging Cable,1,14.95,12/31/19 20:19,"301 Wilson St, Boston, MA 02215" +306739,iPhone,1,700,12/25/19 08:53,"255 Willow St, San Francisco, CA 94016" +306739,Wired Headphones,1,11.99,12/25/19 08:53,"255 Willow St, San Francisco, CA 94016" +306740,Lightning Charging Cable,1,14.95,12/30/19 22:33,"349 Hickory St, Los Angeles, CA 90001" +306741,iPhone,1,700,12/29/19 15:03,"115 Sunset St, Los Angeles, CA 90001" +306742,USB-C Charging Cable,1,11.95,12/03/19 12:41,"796 9th St, Seattle, WA 98101" +306743,USB-C Charging Cable,1,11.95,12/23/19 10:07,"655 11th St, San Francisco, CA 94016" +306744,AAA Batteries (4-pack),1,2.99,12/23/19 02:19,"324 Church St, San Francisco, CA 94016" +306745,Vareebadd Phone,1,400,12/02/19 14:04,"29 12th St, Boston, MA 02215" +306745,Bose SoundSport Headphones,1,99.99,12/02/19 14:04,"29 12th St, Boston, MA 02215" +306746,iPhone,1,700,12/13/19 00:20,"656 14th St, San Francisco, CA 94016" +306747,Apple Airpods Headphones,1,150,12/24/19 10:45,"462 Pine St, Boston, MA 02215" +306748,Apple Airpods Headphones,1,150,12/20/19 10:39,"542 South St, Boston, MA 02215" +306749,USB-C Charging Cable,1,11.95,12/28/19 16:24,"574 Walnut St, Los Angeles, CA 90001" +306750,AA Batteries (4-pack),2,3.84,12/29/19 10:36,"928 9th St, Seattle, WA 98101" +306751,AAA Batteries (4-pack),1,2.99,12/22/19 15:51,"759 Dogwood St, San Francisco, CA 94016" +306752,34in Ultrawide Monitor,1,379.99,12/27/19 14:14,"428 9th St, Seattle, WA 98101" +306753,20in Monitor,1,109.99,12/26/19 14:39,"774 Jackson St, Portland, ME 04101" +306754,Bose SoundSport Headphones,1,99.99,12/01/19 14:17,"166 14th St, New York City, NY 10001" +306755,Flatscreen TV,1,300,12/09/19 08:47,"730 Washington St, Austin, TX 73301" +306756,AA Batteries (4-pack),1,3.84,12/29/19 14:56,"489 West St, Dallas, TX 75001" +306757,Wired Headphones,1,11.99,12/16/19 11:12,"545 7th St, Seattle, WA 98101" +306758,ThinkPad Laptop,1,999.99,12/09/19 23:55,"382 North St, Boston, MA 02215" +306759,34in Ultrawide Monitor,1,379.99,12/11/19 00:47,"167 Lakeview St, Atlanta, GA 30301" +306760,Bose SoundSport Headphones,1,99.99,12/27/19 10:14,"17 River St, Dallas, TX 75001" +306761,AA Batteries (4-pack),1,3.84,12/18/19 12:01,"850 North St, Seattle, WA 98101" +306762,Macbook Pro Laptop,1,1700,12/14/19 10:41,"832 North St, Los Angeles, CA 90001" +306763,Flatscreen TV,1,300,12/05/19 21:10,"555 8th St, Portland, ME 04101" +306764,AAA Batteries (4-pack),1,2.99,12/14/19 20:12,"746 Lake St, New York City, NY 10001" +306765,AAA Batteries (4-pack),1,2.99,12/05/19 23:52,"150 Hill St, Atlanta, GA 30301" +306766,AAA Batteries (4-pack),2,2.99,12/10/19 15:25,"166 11th St, Los Angeles, CA 90001" +306767,Apple Airpods Headphones,1,150,12/07/19 10:43,"520 Sunset St, Austin, TX 73301" +306768,Wired Headphones,1,11.99,12/17/19 18:43,"891 Lincoln St, New York City, NY 10001" +306769,AA Batteries (4-pack),1,3.84,12/09/19 15:56,"988 Sunset St, San Francisco, CA 94016" +306770,Flatscreen TV,1,300,12/22/19 09:51,"73 6th St, Los Angeles, CA 90001" +306771,Apple Airpods Headphones,1,150,12/24/19 17:33,"922 Madison St, Los Angeles, CA 90001" +306772,27in 4K Gaming Monitor,1,389.99,12/01/19 18:07,"387 9th St, San Francisco, CA 94016" +306773,AAA Batteries (4-pack),1,2.99,12/30/19 20:22,"184 1st St, San Francisco, CA 94016" +306774,Apple Airpods Headphones,1,150,12/09/19 16:31,"633 Cedar St, New York City, NY 10001" +306775,USB-C Charging Cable,1,11.95,12/03/19 18:42,"329 2nd St, Seattle, WA 98101" +306776,27in FHD Monitor,1,149.99,12/19/19 08:10,"562 6th St, Seattle, WA 98101" +306777,Wired Headphones,1,11.99,12/14/19 10:45,"545 Jackson St, San Francisco, CA 94016" +306778,AA Batteries (4-pack),2,3.84,12/17/19 00:28,"191 Lakeview St, San Francisco, CA 94016" +306778,AA Batteries (4-pack),3,3.84,12/17/19 00:28,"191 Lakeview St, San Francisco, CA 94016" +306779,Wired Headphones,1,11.99,12/15/19 10:04,"236 7th St, Dallas, TX 75001" +306780,27in FHD Monitor,1,149.99,12/13/19 06:43,"249 North St, New York City, NY 10001" +306781,USB-C Charging Cable,1,11.95,12/18/19 11:30,"372 Sunset St, Dallas, TX 75001" +306782,27in FHD Monitor,1,149.99,12/13/19 16:06,"927 Main St, Los Angeles, CA 90001" +306783,Wired Headphones,1,11.99,12/30/19 10:37,"62 Meadow St, New York City, NY 10001" +306784,USB-C Charging Cable,1,11.95,12/07/19 09:47,"462 10th St, Boston, MA 02215" +306785,AA Batteries (4-pack),1,3.84,12/23/19 15:31,"727 Sunset St, Dallas, TX 75001" +306786,34in Ultrawide Monitor,1,379.99,12/26/19 11:43,"432 Cherry St, Los Angeles, CA 90001" +306787,27in FHD Monitor,1,149.99,12/22/19 09:32,"324 Pine St, Los Angeles, CA 90001" +306788,20in Monitor,1,109.99,12/25/19 17:42,"718 Lakeview St, San Francisco, CA 94016" +306789,AAA Batteries (4-pack),1,2.99,12/21/19 14:18,"560 Wilson St, Austin, TX 73301" +306790,AAA Batteries (4-pack),1,2.99,12/11/19 12:53,"487 Jackson St, San Francisco, CA 94016" +306791,AA Batteries (4-pack),1,3.84,12/02/19 15:04,"901 Jefferson St, New York City, NY 10001" +306792,iPhone,1,700,12/06/19 11:59,"209 Sunset St, Boston, MA 02215" +306793,Google Phone,1,600,12/26/19 13:39,"978 Spruce St, Los Angeles, CA 90001" +306794,Google Phone,1,600,12/03/19 13:13,"265 Forest St, Seattle, WA 98101" +306795,AAA Batteries (4-pack),1,2.99,12/08/19 17:33,"353 Center St, San Francisco, CA 94016" +306796,USB-C Charging Cable,1,11.95,12/13/19 18:49,"235 Highland St, San Francisco, CA 94016" +306796,USB-C Charging Cable,1,11.95,12/13/19 18:49,"235 Highland St, San Francisco, CA 94016" +306797,Bose SoundSport Headphones,1,99.99,12/15/19 21:27,"909 Ridge St, Los Angeles, CA 90001" +306798,Wired Headphones,1,11.99,12/27/19 19:39,"550 Washington St, San Francisco, CA 94016" +306799,Bose SoundSport Headphones,1,99.99,12/12/19 14:24,"612 Adams St, New York City, NY 10001" +306800,Wired Headphones,1,11.99,12/14/19 15:00,"18 2nd St, Los Angeles, CA 90001" +306801,AA Batteries (4-pack),1,3.84,12/23/19 11:46,"598 Hill St, San Francisco, CA 94016" +306802,iPhone,1,700,12/29/19 21:28,"34 Main St, New York City, NY 10001" +306803,Lightning Charging Cable,1,14.95,12/08/19 09:42,"382 11th St, San Francisco, CA 94016" +306804,AAA Batteries (4-pack),1,2.99,12/14/19 19:01,"22 7th St, Boston, MA 02215" +306805,USB-C Charging Cable,1,11.95,12/30/19 19:12,"69 Wilson St, San Francisco, CA 94016" +306806,27in 4K Gaming Monitor,1,389.99,12/23/19 20:17,"267 South St, San Francisco, CA 94016" +306807,AAA Batteries (4-pack),1,2.99,12/10/19 22:35,"299 Park St, New York City, NY 10001" +306808,USB-C Charging Cable,1,11.95,12/23/19 18:36,"144 9th St, Atlanta, GA 30301" +306809,20in Monitor,1,109.99,12/05/19 14:48,"663 11th St, Atlanta, GA 30301" +306810,USB-C Charging Cable,1,11.95,12/13/19 19:51,"194 Cedar St, Seattle, WA 98101" +306811,Wired Headphones,1,11.99,12/05/19 20:28,"962 River St, Portland, OR 97035" +306812,Wired Headphones,1,11.99,12/30/19 19:22,"727 Jackson St, Austin, TX 73301" +306813,Wired Headphones,1,11.99,12/26/19 16:36,"965 Center St, Seattle, WA 98101" +306814,Apple Airpods Headphones,1,150,12/19/19 21:00,"993 Adams St, San Francisco, CA 94016" +306815,AA Batteries (4-pack),1,3.84,12/07/19 11:39,"812 Dogwood St, Atlanta, GA 30301" +306816,Wired Headphones,1,11.99,12/22/19 11:29,"331 Lincoln St, Atlanta, GA 30301" +306817,27in FHD Monitor,1,149.99,12/26/19 15:02,"341 Hickory St, Atlanta, GA 30301" +306817,Apple Airpods Headphones,1,150,12/26/19 15:02,"341 Hickory St, Atlanta, GA 30301" +306818,Wired Headphones,1,11.99,12/17/19 20:33,"294 Pine St, San Francisco, CA 94016" +306819,Google Phone,1,600,12/19/19 08:09,"666 Cherry St, San Francisco, CA 94016" +306819,Wired Headphones,1,11.99,12/19/19 08:09,"666 Cherry St, San Francisco, CA 94016" +306820,Wired Headphones,1,11.99,12/22/19 05:06,"349 Cedar St, Atlanta, GA 30301" +,,,,, +306821,Wired Headphones,1,11.99,12/28/19 00:01,"807 Maple St, New York City, NY 10001" +306822,Wired Headphones,1,11.99,12/02/19 13:35,"39 Pine St, Los Angeles, CA 90001" +306823,AAA Batteries (4-pack),1,2.99,12/03/19 20:10,"495 5th St, Los Angeles, CA 90001" +306824,AAA Batteries (4-pack),3,2.99,12/19/19 10:15,"832 12th St, Austin, TX 73301" +306825,AAA Batteries (4-pack),1,2.99,12/22/19 09:53,"988 North St, Atlanta, GA 30301" +306826,AAA Batteries (4-pack),3,2.99,12/24/19 18:39,"216 Spruce St, New York City, NY 10001" +306827,iPhone,1,700,12/09/19 17:25,"213 10th St, San Francisco, CA 94016" +306828,USB-C Charging Cable,1,11.95,12/12/19 10:02,"375 Washington St, Boston, MA 02215" +306829,Wired Headphones,1,11.99,12/08/19 12:34,"360 Cherry St, Los Angeles, CA 90001" +306830,AA Batteries (4-pack),1,3.84,12/11/19 10:51,"492 12th St, Dallas, TX 75001" +306831,Bose SoundSport Headphones,1,99.99,12/06/19 16:52,"2 Jefferson St, New York City, NY 10001" +306832,Bose SoundSport Headphones,1,99.99,12/16/19 18:09,"169 Cherry St, Seattle, WA 98101" +306833,Flatscreen TV,1,300,12/07/19 14:01,"983 Dogwood St, New York City, NY 10001" +306834,Wired Headphones,1,11.99,12/09/19 19:28,"164 7th St, Los Angeles, CA 90001" +306835,Wired Headphones,1,11.99,12/31/19 10:19,"101 Walnut St, Los Angeles, CA 90001" +306836,Macbook Pro Laptop,1,1700,12/14/19 22:35,"366 Meadow St, San Francisco, CA 94016" +306837,Google Phone,1,600,12/29/19 18:57,"728 Church St, New York City, NY 10001" +306837,USB-C Charging Cable,1,11.95,12/29/19 18:57,"728 Church St, New York City, NY 10001" +306838,Lightning Charging Cable,1,14.95,12/02/19 21:57,"819 11th St, Boston, MA 02215" +306839,AAA Batteries (4-pack),1,2.99,12/14/19 17:17,"588 5th St, Los Angeles, CA 90001" +306840,Lightning Charging Cable,1,14.95,12/14/19 12:41,"944 Madison St, Los Angeles, CA 90001" +306841,USB-C Charging Cable,1,11.95,12/01/19 16:08,"736 Ridge St, New York City, NY 10001" +306842,AAA Batteries (4-pack),1,2.99,12/15/19 16:25,"760 River St, Los Angeles, CA 90001" +306843,Lightning Charging Cable,1,14.95,12/31/19 09:15,"764 Adams St, Portland, OR 97035" +306844,ThinkPad Laptop,1,999.99,12/06/19 23:56,"677 Maple St, Austin, TX 73301" +306845,USB-C Charging Cable,1,11.95,12/30/19 21:04,"43 Meadow St, Portland, OR 97035" +306846,Wired Headphones,1,11.99,01/01/20 06:22,"680 Highland St, Seattle, WA 98101" +306847,ThinkPad Laptop,1,999.99,12/04/19 09:56,"849 Willow St, Dallas, TX 75001" +306848,Bose SoundSport Headphones,1,99.99,12/16/19 15:06,"996 South St, Atlanta, GA 30301" +306848,USB-C Charging Cable,1,11.95,12/16/19 15:06,"996 South St, Atlanta, GA 30301" +306849,AA Batteries (4-pack),1,3.84,12/28/19 20:21,"58 4th St, Dallas, TX 75001" +306850,USB-C Charging Cable,1,11.95,12/25/19 10:30,"785 Madison St, Dallas, TX 75001" +306851,34in Ultrawide Monitor,1,379.99,12/24/19 11:10,"565 Chestnut St, San Francisco, CA 94016" +306852,USB-C Charging Cable,1,11.95,12/25/19 07:29,"876 North St, San Francisco, CA 94016" +306853,Macbook Pro Laptop,1,1700,12/17/19 11:09,"585 Adams St, New York City, NY 10001" +306854,Wired Headphones,1,11.99,12/18/19 20:25,"567 Johnson St, Boston, MA 02215" +306855,Vareebadd Phone,1,400,12/29/19 21:04,"549 South St, Los Angeles, CA 90001" +306856,Lightning Charging Cable,1,14.95,12/11/19 21:01,"966 9th St, Austin, TX 73301" +306857,Lightning Charging Cable,1,14.95,12/31/19 12:51,"494 North St, New York City, NY 10001" +306858,Bose SoundSport Headphones,1,99.99,12/04/19 23:45,"235 Hill St, San Francisco, CA 94016" +306859,27in 4K Gaming Monitor,1,389.99,12/14/19 20:11,"333 South St, Los Angeles, CA 90001" +306860,AA Batteries (4-pack),1,3.84,12/10/19 18:06,"827 2nd St, New York City, NY 10001" +306861,Google Phone,1,600,12/30/19 18:03,"738 Meadow St, New York City, NY 10001" +306861,Bose SoundSport Headphones,1,99.99,12/30/19 18:03,"738 Meadow St, New York City, NY 10001" +306862,20in Monitor,1,109.99,12/10/19 16:49,"649 Lake St, San Francisco, CA 94016" +306863,AAA Batteries (4-pack),1,2.99,12/10/19 22:12,"991 Wilson St, San Francisco, CA 94016" +306864,USB-C Charging Cable,1,11.95,12/13/19 16:59,"832 Church St, Boston, MA 02215" +306865,AA Batteries (4-pack),1,3.84,12/03/19 19:40,"579 Lakeview St, Los Angeles, CA 90001" +306865,Google Phone,1,600,12/03/19 19:40,"579 Lakeview St, Los Angeles, CA 90001" +306866,Bose SoundSport Headphones,1,99.99,12/18/19 07:37,"605 12th St, Portland, OR 97035" +306867,USB-C Charging Cable,1,11.95,12/25/19 12:24,"266 Sunset St, Portland, ME 04101" +306868,Apple Airpods Headphones,1,150,12/18/19 11:54,"496 Dogwood St, San Francisco, CA 94016" +306869,USB-C Charging Cable,1,11.95,12/31/19 21:30,"611 Spruce St, Atlanta, GA 30301" +306870,AAA Batteries (4-pack),3,2.99,12/28/19 08:14,"189 Church St, Dallas, TX 75001" +306870,ThinkPad Laptop,1,999.99,12/28/19 08:14,"189 Church St, Dallas, TX 75001" +306871,Wired Headphones,1,11.99,12/16/19 23:57,"536 Highland St, San Francisco, CA 94016" +306872,USB-C Charging Cable,1,11.95,12/28/19 00:33,"220 2nd St, Los Angeles, CA 90001" +306873,Flatscreen TV,1,300,12/22/19 16:22,"547 13th St, Boston, MA 02215" +306874,AA Batteries (4-pack),2,3.84,12/04/19 22:45,"574 Main St, Los Angeles, CA 90001" +306875,Google Phone,1,600,12/14/19 19:47,"888 Wilson St, New York City, NY 10001" +306875,Wired Headphones,1,11.99,12/14/19 19:47,"888 Wilson St, New York City, NY 10001" +306876,Lightning Charging Cable,1,14.95,12/24/19 22:30,"42 Washington St, Atlanta, GA 30301" +306877,Wired Headphones,1,11.99,12/28/19 07:27,"916 Meadow St, Boston, MA 02215" +306878,34in Ultrawide Monitor,1,379.99,12/14/19 12:21,"422 Jackson St, Seattle, WA 98101" +306879,AAA Batteries (4-pack),1,2.99,12/20/19 01:27,"443 Dogwood St, Los Angeles, CA 90001" +306880,USB-C Charging Cable,1,11.95,12/03/19 17:44,"797 Park St, Seattle, WA 98101" +306881,AA Batteries (4-pack),1,3.84,12/07/19 19:17,"157 Spruce St, San Francisco, CA 94016" +306882,AAA Batteries (4-pack),2,2.99,12/26/19 16:35,"288 10th St, San Francisco, CA 94016" +306883,27in FHD Monitor,1,149.99,12/14/19 15:50,"285 Park St, Atlanta, GA 30301" +306884,USB-C Charging Cable,1,11.95,12/22/19 15:36,"611 7th St, Austin, TX 73301" +306885,Bose SoundSport Headphones,1,99.99,12/04/19 10:52,"485 Meadow St, Atlanta, GA 30301" +306886,Wired Headphones,1,11.99,12/04/19 08:57,"87 Johnson St, San Francisco, CA 94016" +306887,27in 4K Gaming Monitor,1,389.99,12/08/19 18:23,"28 Adams St, Los Angeles, CA 90001" +306888,Bose SoundSport Headphones,1,99.99,12/31/19 17:16,"904 Dogwood St, San Francisco, CA 94016" +306889,USB-C Charging Cable,1,11.95,12/22/19 16:07,"784 1st St, San Francisco, CA 94016" +306890,34in Ultrawide Monitor,1,379.99,12/01/19 18:00,"889 South St, New York City, NY 10001" +306891,27in FHD Monitor,2,149.99,12/04/19 10:54,"849 Cedar St, Austin, TX 73301" +306892,Google Phone,1,600,12/01/19 18:52,"559 Willow St, New York City, NY 10001" +306893,Wired Headphones,1,11.99,12/23/19 10:02,"948 7th St, Boston, MA 02215" +306894,27in FHD Monitor,1,149.99,12/11/19 23:45,"689 Spruce St, San Francisco, CA 94016" +306895,27in FHD Monitor,1,149.99,12/11/19 09:54,"494 9th St, San Francisco, CA 94016" +306896,AA Batteries (4-pack),1,3.84,12/06/19 13:38,"372 Hill St, San Francisco, CA 94016" +306897,USB-C Charging Cable,1,11.95,12/10/19 09:38,"519 Forest St, Los Angeles, CA 90001" +306898,AAA Batteries (4-pack),1,2.99,12/30/19 12:01,"593 Jackson St, San Francisco, CA 94016" +306899,Lightning Charging Cable,1,14.95,12/03/19 19:17,"102 North St, San Francisco, CA 94016" +306900,20in Monitor,1,109.99,12/07/19 18:18,"515 River St, Austin, TX 73301" +306901,Apple Airpods Headphones,1,150,12/06/19 09:10,"334 Lincoln St, Los Angeles, CA 90001" +306902,Wired Headphones,1,11.99,12/23/19 13:10,"973 Washington St, Boston, MA 02215" +306903,Lightning Charging Cable,1,14.95,12/26/19 18:36,"14 Spruce St, Boston, MA 02215" +306904,Lightning Charging Cable,1,14.95,12/27/19 05:54,"412 13th St, Dallas, TX 75001" +306905,AAA Batteries (4-pack),3,2.99,12/07/19 12:56,"337 Elm St, New York City, NY 10001" +306906,USB-C Charging Cable,1,11.95,12/01/19 19:02,"886 Lake St, Los Angeles, CA 90001" +306907,Bose SoundSport Headphones,1,99.99,12/10/19 20:35,"294 7th St, Los Angeles, CA 90001" +306908,Lightning Charging Cable,1,14.95,12/30/19 02:31,"694 Lakeview St, Dallas, TX 75001" +306909,34in Ultrawide Monitor,1,379.99,12/13/19 19:00,"587 Cedar St, Boston, MA 02215" +306910,Lightning Charging Cable,1,14.95,12/20/19 14:19,"200 Spruce St, Atlanta, GA 30301" +306911,34in Ultrawide Monitor,1,379.99,12/14/19 19:08,"47 Highland St, Portland, OR 97035" +306912,USB-C Charging Cable,1,11.95,01/01/20 02:31,"203 Jefferson St, San Francisco, CA 94016" +306913,Lightning Charging Cable,1,14.95,12/20/19 13:01,"202 Lakeview St, Seattle, WA 98101" +306914,Apple Airpods Headphones,1,150,12/18/19 17:57,"899 2nd St, San Francisco, CA 94016" +306915,USB-C Charging Cable,2,11.95,12/22/19 20:13,"553 Lincoln St, Boston, MA 02215" +306916,27in 4K Gaming Monitor,1,389.99,12/15/19 20:11,"513 5th St, Dallas, TX 75001" +306917,Bose SoundSport Headphones,1,99.99,12/02/19 10:39,"693 9th St, San Francisco, CA 94016" +306918,Apple Airpods Headphones,1,150,12/22/19 17:10,"152 River St, Atlanta, GA 30301" +306919,Macbook Pro Laptop,1,1700,12/02/19 10:00,"628 Meadow St, Los Angeles, CA 90001" +306920,Apple Airpods Headphones,1,150,12/10/19 06:05,"672 Dogwood St, Seattle, WA 98101" +,,,,, +306921,AA Batteries (4-pack),1,3.84,12/26/19 11:04,"594 West St, Los Angeles, CA 90001" +306922,AAA Batteries (4-pack),2,2.99,12/17/19 09:10,"794 4th St, New York City, NY 10001" +306923,ThinkPad Laptop,1,999.99,12/26/19 14:13,"511 10th St, New York City, NY 10001" +306924,Wired Headphones,2,11.99,12/18/19 17:52,"603 14th St, San Francisco, CA 94016" +306925,Apple Airpods Headphones,1,150,12/28/19 17:36,"52 West St, Los Angeles, CA 90001" +306926,iPhone,1,700,12/17/19 17:27,"65 12th St, San Francisco, CA 94016" +306927,USB-C Charging Cable,1,11.95,12/11/19 09:40,"588 Elm St, Dallas, TX 75001" +306928,iPhone,1,700,12/09/19 15:39,"794 Sunset St, Atlanta, GA 30301" +306929,USB-C Charging Cable,1,11.95,12/22/19 07:12,"63 14th St, San Francisco, CA 94016" +306930,USB-C Charging Cable,1,11.95,12/22/19 20:36,"547 Cherry St, Portland, OR 97035" +306931,Bose SoundSport Headphones,1,99.99,12/07/19 14:54,"413 Spruce St, Boston, MA 02215" +306932,Wired Headphones,1,11.99,12/03/19 09:42,"857 Pine St, New York City, NY 10001" +306933,AAA Batteries (4-pack),1,2.99,12/25/19 21:54,"821 Maple St, San Francisco, CA 94016" +306933,Bose SoundSport Headphones,1,99.99,12/25/19 21:54,"821 Maple St, San Francisco, CA 94016" +306934,Bose SoundSport Headphones,1,99.99,12/26/19 11:11,"790 Forest St, Los Angeles, CA 90001" +306935,Lightning Charging Cable,1,14.95,12/11/19 21:51,"780 Church St, San Francisco, CA 94016" +306936,AAA Batteries (4-pack),1,2.99,12/27/19 04:54,"622 Cherry St, Boston, MA 02215" +306937,Google Phone,1,600,12/08/19 06:34,"184 Pine St, Los Angeles, CA 90001" +306938,USB-C Charging Cable,1,11.95,12/03/19 16:27,"157 Cherry St, Seattle, WA 98101" +306939,ThinkPad Laptop,1,999.99,12/12/19 20:38,"24 13th St, Los Angeles, CA 90001" +306940,Macbook Pro Laptop,1,1700,12/02/19 21:20,"426 North St, Austin, TX 73301" +306941,Apple Airpods Headphones,1,150,12/16/19 11:01,"45 Willow St, Los Angeles, CA 90001" +306942,AA Batteries (4-pack),1,3.84,12/04/19 20:03,"524 River St, Los Angeles, CA 90001" +306943,Bose SoundSport Headphones,1,99.99,12/13/19 14:57,"946 Lake St, New York City, NY 10001" +306944,34in Ultrawide Monitor,1,379.99,12/18/19 20:54,"630 13th St, Portland, OR 97035" +306945,USB-C Charging Cable,1,11.95,12/01/19 09:34,"79 9th St, San Francisco, CA 94016" +306946,AAA Batteries (4-pack),2,2.99,12/31/19 11:37,"817 Washington St, Los Angeles, CA 90001" +306947,Flatscreen TV,1,300,12/16/19 11:32,"636 2nd St, Portland, OR 97035" +306948,Lightning Charging Cable,1,14.95,12/26/19 21:23,"388 Hill St, Seattle, WA 98101" +306949,Apple Airpods Headphones,1,150,12/20/19 14:43,"919 North St, Boston, MA 02215" +306950,Wired Headphones,1,11.99,12/12/19 10:33,"315 Willow St, Austin, TX 73301" +306951,Wired Headphones,1,11.99,12/02/19 21:05,"422 5th St, Seattle, WA 98101" +306952,27in FHD Monitor,1,149.99,12/05/19 00:09,"545 Elm St, San Francisco, CA 94016" +306953,AA Batteries (4-pack),1,3.84,12/20/19 09:21,"798 Lakeview St, New York City, NY 10001" +306954,Wired Headphones,1,11.99,12/19/19 10:53,"110 Adams St, New York City, NY 10001" +306955,20in Monitor,1,109.99,12/26/19 06:46,"673 Chestnut St, Los Angeles, CA 90001" +306956,Macbook Pro Laptop,1,1700,12/26/19 20:43,"334 North St, Seattle, WA 98101" +306957,Wired Headphones,1,11.99,12/11/19 21:11,"572 Dogwood St, Atlanta, GA 30301" +306958,AA Batteries (4-pack),1,3.84,12/16/19 10:01,"749 Cedar St, Atlanta, GA 30301" +306959,27in 4K Gaming Monitor,1,389.99,12/27/19 19:02,"235 Spruce St, Los Angeles, CA 90001" +306960,AA Batteries (4-pack),6,3.84,12/03/19 02:07,"781 South St, Los Angeles, CA 90001" +306961,Lightning Charging Cable,2,14.95,12/15/19 22:35,"525 Forest St, Atlanta, GA 30301" +306962,AAA Batteries (4-pack),1,2.99,12/08/19 12:53,"424 Lincoln St, New York City, NY 10001" +306963,Wired Headphones,1,11.99,12/08/19 18:47,"157 Hill St, Los Angeles, CA 90001" +306964,AA Batteries (4-pack),1,3.84,12/12/19 12:42,"543 10th St, Boston, MA 02215" +306965,Apple Airpods Headphones,1,150,12/13/19 08:22,"242 Elm St, San Francisco, CA 94016" +306966,AAA Batteries (4-pack),2,2.99,12/19/19 18:40,"186 Elm St, San Francisco, CA 94016" +306967,Bose SoundSport Headphones,1,99.99,12/14/19 13:35,"981 Madison St, Atlanta, GA 30301" +306968,27in FHD Monitor,1,149.99,12/22/19 16:04,"55 Elm St, New York City, NY 10001" +306969,ThinkPad Laptop,1,999.99,12/12/19 16:44,"819 Wilson St, San Francisco, CA 94016" +306970,Lightning Charging Cable,1,14.95,12/14/19 08:29,"38 West St, Los Angeles, CA 90001" +306971,27in FHD Monitor,1,149.99,12/01/19 14:20,"894 2nd St, San Francisco, CA 94016" +306972,Wired Headphones,1,11.99,12/30/19 19:09,"544 Highland St, Los Angeles, CA 90001" +306973,Bose SoundSport Headphones,1,99.99,12/01/19 13:31,"832 Johnson St, Dallas, TX 75001" +306974,27in FHD Monitor,1,149.99,12/20/19 09:47,"493 Main St, San Francisco, CA 94016" +306974,AAA Batteries (4-pack),1,2.99,12/20/19 09:47,"493 Main St, San Francisco, CA 94016" +306975,USB-C Charging Cable,1,11.95,12/06/19 20:16,"673 Dogwood St, San Francisco, CA 94016" +306976,Apple Airpods Headphones,1,150,12/10/19 18:07,"285 North St, Seattle, WA 98101" +306977,AA Batteries (4-pack),1,3.84,12/21/19 12:00,"525 12th St, Los Angeles, CA 90001" +306978,27in FHD Monitor,1,149.99,12/28/19 13:52,"340 Jackson St, Los Angeles, CA 90001" +306979,27in 4K Gaming Monitor,1,389.99,12/26/19 19:32,"779 Hickory St, New York City, NY 10001" +306980,iPhone,1,700,12/11/19 12:01,"363 10th St, Los Angeles, CA 90001" +306981,AAA Batteries (4-pack),1,2.99,12/20/19 11:50,"311 Madison St, Dallas, TX 75001" +306982,Google Phone,1,600,12/23/19 08:46,"235 Sunset St, Los Angeles, CA 90001" +306983,Macbook Pro Laptop,1,1700,12/06/19 14:15,"247 13th St, Los Angeles, CA 90001" +306984,34in Ultrawide Monitor,1,379.99,12/08/19 13:26,"528 14th St, Boston, MA 02215" +306985,Wired Headphones,1,11.99,12/14/19 15:58,"194 North St, San Francisco, CA 94016" +306986,AA Batteries (4-pack),1,3.84,12/02/19 14:41,"970 Pine St, San Francisco, CA 94016" +306987,Lightning Charging Cable,1,14.95,12/06/19 14:24,"761 11th St, New York City, NY 10001" +306988,USB-C Charging Cable,1,11.95,12/14/19 07:15,"539 River St, Los Angeles, CA 90001" +306989,27in FHD Monitor,1,149.99,12/12/19 18:17,"443 12th St, New York City, NY 10001" +306990,USB-C Charging Cable,1,11.95,12/31/19 20:11,"358 7th St, San Francisco, CA 94016" +306991,AA Batteries (4-pack),1,3.84,12/29/19 10:11,"220 Elm St, Los Angeles, CA 90001" +306992,AA Batteries (4-pack),1,3.84,12/30/19 18:58,"131 Jackson St, Los Angeles, CA 90001" +306993,AAA Batteries (4-pack),1,2.99,12/03/19 17:25,"41 Ridge St, Los Angeles, CA 90001" +306994,Apple Airpods Headphones,1,150,12/27/19 09:12,"437 Cherry St, Austin, TX 73301" +306995,Lightning Charging Cable,1,14.95,12/08/19 13:55,"989 Madison St, Los Angeles, CA 90001" +306996,AA Batteries (4-pack),1,3.84,12/23/19 15:51,"51 Lake St, Boston, MA 02215" +306997,Google Phone,1,600,12/31/19 01:59,"61 Pine St, Portland, OR 97035" +306998,LG Dryer,1,600.0,12/12/19 19:49,"782 Ridge St, New York City, NY 10001" +306999,AAA Batteries (4-pack),2,2.99,12/22/19 18:58,"869 5th St, Los Angeles, CA 90001" +307000,Lightning Charging Cable,1,14.95,12/17/19 01:13,"504 10th St, New York City, NY 10001" +307001,AAA Batteries (4-pack),1,2.99,12/11/19 22:04,"303 Lincoln St, Seattle, WA 98101" +307002,USB-C Charging Cable,1,11.95,12/18/19 11:17,"281 Sunset St, Los Angeles, CA 90001" +307003,LG Dryer,1,600.0,12/23/19 20:02,"83 Johnson St, San Francisco, CA 94016" +307004,AAA Batteries (4-pack),1,2.99,12/29/19 00:57,"619 6th St, Seattle, WA 98101" +307005,Apple Airpods Headphones,1,150,12/27/19 12:21,"134 Center St, Los Angeles, CA 90001" +307006,AA Batteries (4-pack),1,3.84,12/09/19 18:47,"271 Wilson St, Atlanta, GA 30301" +307007,20in Monitor,1,109.99,12/23/19 18:28,"783 7th St, Boston, MA 02215" +307008,Lightning Charging Cable,1,14.95,12/10/19 11:39,"353 Hickory St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +307009,Google Phone,1,600,12/13/19 14:04,"102 4th St, San Francisco, CA 94016" +307010,AA Batteries (4-pack),1,3.84,12/13/19 14:45,"544 Pine St, Atlanta, GA 30301" +307011,34in Ultrawide Monitor,1,379.99,12/27/19 16:02,"171 Madison St, Austin, TX 73301" +307012,USB-C Charging Cable,1,11.95,12/20/19 17:14,"560 Cherry St, San Francisco, CA 94016" +307013,AA Batteries (4-pack),2,3.84,12/29/19 17:34,"74 1st St, New York City, NY 10001" +307014,AAA Batteries (4-pack),1,2.99,12/07/19 18:59,"355 11th St, Boston, MA 02215" +307015,AA Batteries (4-pack),1,3.84,12/31/19 13:14,"756 9th St, Los Angeles, CA 90001" +307016,LG Washing Machine,1,600.0,12/19/19 21:37,"617 Spruce St, Dallas, TX 75001" +307017,34in Ultrawide Monitor,1,379.99,12/28/19 04:07,"832 Hill St, San Francisco, CA 94016" +307018,Lightning Charging Cable,1,14.95,12/02/19 12:08,"483 Johnson St, Boston, MA 02215" +307019,Wired Headphones,1,11.99,12/04/19 14:41,"140 Walnut St, Seattle, WA 98101" +307020,Bose SoundSport Headphones,1,99.99,12/10/19 15:22,"622 Cedar St, Boston, MA 02215" +307021,iPhone,1,700,12/08/19 00:24,"885 14th St, New York City, NY 10001" +307022,Lightning Charging Cable,2,14.95,12/23/19 21:59,"254 Maple St, San Francisco, CA 94016" +307023,Wired Headphones,1,11.99,12/20/19 18:20,"16 North St, Atlanta, GA 30301" +307024,Flatscreen TV,1,300,12/08/19 13:25,"128 4th St, Portland, OR 97035" +307025,Apple Airpods Headphones,1,150,12/29/19 12:57,"821 Lakeview St, Portland, OR 97035" +307026,Lightning Charging Cable,1,14.95,12/07/19 20:37,"761 Lake St, San Francisco, CA 94016" +307027,Apple Airpods Headphones,1,150,12/13/19 17:11,"305 Pine St, Boston, MA 02215" +307028,Lightning Charging Cable,1,14.95,12/05/19 17:50,"64 Sunset St, Austin, TX 73301" +307029,Bose SoundSport Headphones,2,99.99,12/21/19 16:16,"442 Center St, Los Angeles, CA 90001" +307030,Macbook Pro Laptop,1,1700,12/22/19 12:47,"423 2nd St, Dallas, TX 75001" +307031,AA Batteries (4-pack),1,3.84,12/13/19 20:14,"584 Ridge St, Los Angeles, CA 90001" +307032,Wired Headphones,1,11.99,12/07/19 20:47,"666 South St, New York City, NY 10001" +307033,USB-C Charging Cable,1,11.95,12/06/19 14:39,"868 11th St, New York City, NY 10001" +307034,iPhone,1,700,12/14/19 13:14,"569 Walnut St, New York City, NY 10001" +307035,Wired Headphones,1,11.99,12/17/19 11:15,"459 Chestnut St, Dallas, TX 75001" +307036,Lightning Charging Cable,1,14.95,12/31/19 17:26,"545 Dogwood St, Seattle, WA 98101" +307037,ThinkPad Laptop,1,999.99,12/12/19 10:33,"741 9th St, New York City, NY 10001" +307038,Lightning Charging Cable,1,14.95,12/24/19 18:59,"965 Willow St, New York City, NY 10001" +307039,AA Batteries (4-pack),2,3.84,12/27/19 18:43,"973 Forest St, Los Angeles, CA 90001" +307040,Flatscreen TV,1,300,12/15/19 17:20,"560 Park St, Los Angeles, CA 90001" +307041,Wired Headphones,1,11.99,12/29/19 20:48,"943 South St, Boston, MA 02215" +307042,Lightning Charging Cable,1,14.95,12/25/19 15:09,"978 Center St, Los Angeles, CA 90001" +307043,LG Dryer,1,600.0,12/26/19 12:28,"857 Lincoln St, Austin, TX 73301" +307044,Apple Airpods Headphones,1,150,12/28/19 20:48,"340 Elm St, San Francisco, CA 94016" +307045,AA Batteries (4-pack),1,3.84,12/19/19 19:27,"419 Maple St, Seattle, WA 98101" +307046,AAA Batteries (4-pack),1,2.99,12/25/19 21:50,"525 7th St, San Francisco, CA 94016" +307047,Lightning Charging Cable,1,14.95,12/14/19 09:42,"234 Forest St, New York City, NY 10001" +307048,Lightning Charging Cable,1,14.95,12/20/19 14:23,"90 Center St, Seattle, WA 98101" +307049,Wired Headphones,1,11.99,12/13/19 00:18,"576 Lake St, Portland, OR 97035" +307050,USB-C Charging Cable,1,11.95,12/25/19 13:48,"180 7th St, San Francisco, CA 94016" +307051,27in 4K Gaming Monitor,1,389.99,12/10/19 19:40,"80 Walnut St, San Francisco, CA 94016" +307052,AA Batteries (4-pack),1,3.84,12/24/19 00:13,"797 Spruce St, Los Angeles, CA 90001" +307053,27in 4K Gaming Monitor,1,389.99,12/24/19 09:17,"806 5th St, Seattle, WA 98101" +307054,Lightning Charging Cable,1,14.95,12/07/19 12:49,"509 South St, Portland, ME 04101" +307055,27in FHD Monitor,1,149.99,12/25/19 15:46,"517 Chestnut St, San Francisco, CA 94016" +307056,34in Ultrawide Monitor,1,379.99,12/05/19 12:43,"845 Forest St, San Francisco, CA 94016" +307057,Bose SoundSport Headphones,1,99.99,12/11/19 08:20,"957 Highland St, San Francisco, CA 94016" +307058,USB-C Charging Cable,1,11.95,12/18/19 18:35,"829 4th St, Dallas, TX 75001" +307059,27in FHD Monitor,1,149.99,12/13/19 18:24,"283 Hill St, Los Angeles, CA 90001" +307060,34in Ultrawide Monitor,1,379.99,12/24/19 01:44,"754 Johnson St, Seattle, WA 98101" +307061,USB-C Charging Cable,1,11.95,12/26/19 22:53,"551 13th St, Dallas, TX 75001" +307062,Macbook Pro Laptop,1,1700,12/11/19 17:46,"552 1st St, Seattle, WA 98101" +307063,USB-C Charging Cable,1,11.95,12/06/19 14:53,"242 Forest St, New York City, NY 10001" +307064,Wired Headphones,1,11.99,12/02/19 15:19,"122 Lincoln St, Boston, MA 02215" +307065,USB-C Charging Cable,1,11.95,12/25/19 19:48,"51 Jackson St, Los Angeles, CA 90001" +307066,AAA Batteries (4-pack),1,2.99,12/01/19 09:48,"784 Walnut St, New York City, NY 10001" +307067,USB-C Charging Cable,1,11.95,12/02/19 22:56,"121 Lincoln St, New York City, NY 10001" +307068,Apple Airpods Headphones,1,150,12/05/19 02:30,"422 7th St, New York City, NY 10001" +307069,USB-C Charging Cable,1,11.95,12/16/19 15:42,"153 6th St, Austin, TX 73301" +307070,Lightning Charging Cable,1,14.95,12/09/19 23:23,"935 Maple St, Boston, MA 02215" +307071,AAA Batteries (4-pack),4,2.99,12/19/19 12:52,"389 Washington St, Dallas, TX 75001" +307071,ThinkPad Laptop,1,999.99,12/19/19 12:52,"389 Washington St, Dallas, TX 75001" +307072,AA Batteries (4-pack),1,3.84,12/21/19 20:02,"253 Elm St, San Francisco, CA 94016" +307073,Lightning Charging Cable,1,14.95,12/04/19 20:15,"225 12th St, New York City, NY 10001" +307074,USB-C Charging Cable,1,11.95,12/24/19 14:21,"504 Dogwood St, Atlanta, GA 30301" +307075,Wired Headphones,1,11.99,12/17/19 13:19,"786 7th St, San Francisco, CA 94016" +307076,Flatscreen TV,1,300,12/05/19 22:58,"578 River St, Seattle, WA 98101" +307077,AAA Batteries (4-pack),1,2.99,12/23/19 09:44,"904 9th St, Los Angeles, CA 90001" +307078,Wired Headphones,1,11.99,12/23/19 23:35,"496 14th St, New York City, NY 10001" +307079,Apple Airpods Headphones,1,150,12/25/19 22:08,"718 4th St, Boston, MA 02215" +307080,Apple Airpods Headphones,1,150,12/01/19 03:28,"603 Wilson St, Dallas, TX 75001" +307081,27in FHD Monitor,1,149.99,12/08/19 14:22,"615 River St, Los Angeles, CA 90001" +307082,AAA Batteries (4-pack),1,2.99,12/22/19 11:43,"18 North St, Boston, MA 02215" +307083,USB-C Charging Cable,2,11.95,12/21/19 10:56,"850 South St, San Francisco, CA 94016" +307084,USB-C Charging Cable,1,11.95,12/14/19 15:09,"399 7th St, Portland, OR 97035" +307085,27in FHD Monitor,1,149.99,12/28/19 20:24,"882 Spruce St, Seattle, WA 98101" +307086,USB-C Charging Cable,1,11.95,12/17/19 15:18,"482 Washington St, Atlanta, GA 30301" +307087,AAA Batteries (4-pack),1,2.99,12/18/19 09:09,"866 West St, Boston, MA 02215" +307088,AAA Batteries (4-pack),1,2.99,12/07/19 09:11,"360 1st St, Seattle, WA 98101" +307089,Lightning Charging Cable,1,14.95,12/14/19 00:50,"434 Elm St, San Francisco, CA 94016" +307090,ThinkPad Laptop,1,999.99,12/28/19 13:07,"683 Hill St, Boston, MA 02215" +307091,Apple Airpods Headphones,1,150,12/29/19 09:22,"222 6th St, New York City, NY 10001" +307092,AAA Batteries (4-pack),1,2.99,12/22/19 16:48,"296 Cherry St, Portland, OR 97035" +307093,Bose SoundSport Headphones,1,99.99,12/02/19 22:33,"698 Chestnut St, Boston, MA 02215" +307094,Wired Headphones,1,11.99,12/22/19 11:11,"437 9th St, Dallas, TX 75001" +307095,27in 4K Gaming Monitor,1,389.99,12/11/19 21:15,"807 Elm St, San Francisco, CA 94016" +307096,Flatscreen TV,1,300,12/07/19 21:57,"244 Johnson St, San Francisco, CA 94016" +307097,iPhone,1,700,12/28/19 13:59,"755 Walnut St, Seattle, WA 98101" +307098,ThinkPad Laptop,1,999.99,12/28/19 18:02,"52 Spruce St, San Francisco, CA 94016" +307099,Bose SoundSport Headphones,1,99.99,12/17/19 16:53,"893 Main St, San Francisco, CA 94016" +307100,27in 4K Gaming Monitor,1,389.99,12/27/19 11:59,"876 Elm St, Dallas, TX 75001" +307101,Google Phone,1,600,12/16/19 18:44,"779 2nd St, San Francisco, CA 94016" +307102,27in FHD Monitor,1,149.99,12/02/19 18:40,"78 14th St, Los Angeles, CA 90001" +307103,Google Phone,1,600,12/27/19 21:33,"511 Park St, Los Angeles, CA 90001" +307103,USB-C Charging Cable,1,11.95,12/27/19 21:33,"511 Park St, Los Angeles, CA 90001" +307104,Wired Headphones,1,11.99,12/12/19 15:44,"23 Jackson St, Atlanta, GA 30301" +307105,Lightning Charging Cable,1,14.95,12/09/19 22:02,"835 Main St, Los Angeles, CA 90001" +307106,20in Monitor,1,109.99,12/21/19 22:19,"260 Chestnut St, New York City, NY 10001" +307107,Lightning Charging Cable,1,14.95,12/20/19 21:22,"56 8th St, Dallas, TX 75001" +307108,Wired Headphones,1,11.99,12/27/19 14:00,"245 Lakeview St, Seattle, WA 98101" +307109,27in FHD Monitor,1,149.99,12/18/19 20:46,"825 Ridge St, Los Angeles, CA 90001" +307110,Wired Headphones,1,11.99,12/07/19 10:37,"634 West St, San Francisco, CA 94016" +307111,AA Batteries (4-pack),1,3.84,12/18/19 09:42,"144 13th St, Seattle, WA 98101" +307112,20in Monitor,1,109.99,12/23/19 13:36,"433 2nd St, San Francisco, CA 94016" +307113,27in FHD Monitor,1,149.99,12/30/19 15:05,"227 Highland St, Los Angeles, CA 90001" +307114,Wired Headphones,1,11.99,12/18/19 07:01,"807 Lincoln St, Boston, MA 02215" +307115,Vareebadd Phone,1,400,12/07/19 18:45,"772 River St, San Francisco, CA 94016" +307115,USB-C Charging Cable,1,11.95,12/07/19 18:45,"772 River St, San Francisco, CA 94016" +307116,ThinkPad Laptop,1,999.99,12/04/19 19:25,"833 9th St, Seattle, WA 98101" +307117,Wired Headphones,1,11.99,12/26/19 20:11,"581 Park St, Seattle, WA 98101" +307118,Lightning Charging Cable,1,14.95,12/04/19 16:33,"494 Adams St, Atlanta, GA 30301" +307119,AA Batteries (4-pack),1,3.84,12/26/19 11:18,"806 Cherry St, Dallas, TX 75001" +307120,Wired Headphones,1,11.99,12/13/19 08:33,"901 Washington St, San Francisco, CA 94016" +307121,Bose SoundSport Headphones,1,99.99,12/10/19 20:57,"323 12th St, Los Angeles, CA 90001" +307122,27in FHD Monitor,1,149.99,12/05/19 15:54,"560 1st St, Seattle, WA 98101" +307123,USB-C Charging Cable,1,11.95,12/04/19 20:54,"633 Jackson St, Atlanta, GA 30301" +307124,USB-C Charging Cable,1,11.95,12/26/19 09:15,"165 Hill St, Portland, ME 04101" +307125,USB-C Charging Cable,1,11.95,12/08/19 18:37,"252 2nd St, Atlanta, GA 30301" +307126,Google Phone,1,600,12/05/19 10:16,"313 Elm St, New York City, NY 10001" +307127,Lightning Charging Cable,2,14.95,12/19/19 00:09,"992 Cedar St, New York City, NY 10001" +307128,Google Phone,1,600,12/16/19 12:30,"968 Pine St, Boston, MA 02215" +307129,AA Batteries (4-pack),1,3.84,12/12/19 13:46,"91 Wilson St, San Francisco, CA 94016" +307130,AAA Batteries (4-pack),3,2.99,12/28/19 00:18,"779 Cedar St, Boston, MA 02215" +307131,Lightning Charging Cable,1,14.95,12/20/19 22:15,"949 Lake St, San Francisco, CA 94016" +307132,AA Batteries (4-pack),1,3.84,12/01/19 17:36,"480 Jefferson St, Los Angeles, CA 90001" +307133,Wired Headphones,2,11.99,12/28/19 10:38,"872 Sunset St, Seattle, WA 98101" +307134,Wired Headphones,1,11.99,12/15/19 14:15,"545 Lakeview St, Dallas, TX 75001" +307135,AAA Batteries (4-pack),2,2.99,12/21/19 08:04,"906 1st St, Los Angeles, CA 90001" +307136,20in Monitor,1,109.99,12/03/19 13:13,"237 Spruce St, Seattle, WA 98101" +307137,Vareebadd Phone,1,400,12/19/19 16:16,"415 Elm St, San Francisco, CA 94016" +307137,Bose SoundSport Headphones,1,99.99,12/19/19 16:16,"415 Elm St, San Francisco, CA 94016" +307137,Wired Headphones,1,11.99,12/19/19 16:16,"415 Elm St, San Francisco, CA 94016" +307138,Apple Airpods Headphones,1,150,12/14/19 17:17,"873 Wilson St, Portland, ME 04101" +307139,34in Ultrawide Monitor,1,379.99,12/12/19 10:49,"447 Pine St, Boston, MA 02215" +307140,Lightning Charging Cable,1,14.95,12/31/19 00:11,"326 Lakeview St, Seattle, WA 98101" +307141,Lightning Charging Cable,1,14.95,12/03/19 03:48,"532 Adams St, Los Angeles, CA 90001" +307142,Bose SoundSport Headphones,1,99.99,12/12/19 19:39,"564 5th St, Los Angeles, CA 90001" +307143,AAA Batteries (4-pack),1,2.99,12/17/19 21:32,"247 9th St, Los Angeles, CA 90001" +307144,Macbook Pro Laptop,1,1700,12/11/19 23:36,"373 North St, San Francisco, CA 94016" +307145,Wired Headphones,1,11.99,12/28/19 11:43,"571 Sunset St, Los Angeles, CA 90001" +307146,USB-C Charging Cable,1,11.95,12/22/19 23:49,"215 Chestnut St, New York City, NY 10001" +307147,AAA Batteries (4-pack),1,2.99,12/21/19 18:18,"735 Wilson St, Dallas, TX 75001" +307148,Flatscreen TV,1,300,12/26/19 19:03,"433 Highland St, Los Angeles, CA 90001" +307149,AA Batteries (4-pack),1,3.84,12/25/19 10:58,"956 Highland St, San Francisco, CA 94016" +307150,Bose SoundSport Headphones,1,99.99,12/17/19 19:43,"926 Lake St, Los Angeles, CA 90001" +307151,Flatscreen TV,1,300,12/13/19 10:38,"153 Spruce St, Portland, ME 04101" +307152,27in 4K Gaming Monitor,1,389.99,12/20/19 05:30,"666 Sunset St, Dallas, TX 75001" +307153,Wired Headphones,1,11.99,12/08/19 23:56,"754 6th St, Los Angeles, CA 90001" +307154,Lightning Charging Cable,1,14.95,12/24/19 09:59,"26 Cedar St, San Francisco, CA 94016" +307155,USB-C Charging Cable,1,11.95,12/06/19 19:38,"982 1st St, Boston, MA 02215" +307156,Apple Airpods Headphones,1,150,12/31/19 12:53,"416 Jackson St, Dallas, TX 75001" +307157,iPhone,1,700,12/15/19 16:44,"768 River St, Los Angeles, CA 90001" +307157,Lightning Charging Cable,1,14.95,12/15/19 16:44,"768 River St, Los Angeles, CA 90001" +307158,AA Batteries (4-pack),2,3.84,12/12/19 12:44,"298 13th St, San Francisco, CA 94016" +307159,ThinkPad Laptop,1,999.99,12/08/19 15:28,"603 2nd St, Los Angeles, CA 90001" +307160,Macbook Pro Laptop,1,1700,12/19/19 19:01,"918 Highland St, San Francisco, CA 94016" +307161,34in Ultrawide Monitor,1,379.99,12/18/19 17:03,"903 9th St, San Francisco, CA 94016" +307162,Bose SoundSport Headphones,1,99.99,12/02/19 11:46,"509 Adams St, New York City, NY 10001" +307163,AAA Batteries (4-pack),1,2.99,12/05/19 21:34,"940 Walnut St, New York City, NY 10001" +307164,Bose SoundSport Headphones,1,99.99,12/12/19 19:46,"527 Walnut St, Los Angeles, CA 90001" +307165,USB-C Charging Cable,1,11.95,12/08/19 18:13,"198 Sunset St, Atlanta, GA 30301" +307166,Apple Airpods Headphones,1,150,12/23/19 11:26,"655 2nd St, Los Angeles, CA 90001" +307167,AA Batteries (4-pack),1,3.84,12/06/19 19:03,"255 Maple St, Los Angeles, CA 90001" +307168,AA Batteries (4-pack),1,3.84,12/26/19 19:38,"727 Johnson St, Boston, MA 02215" +307169,Wired Headphones,1,11.99,12/08/19 19:35,"77 Cedar St, San Francisco, CA 94016" +307170,27in FHD Monitor,1,149.99,12/03/19 17:14,"363 Wilson St, San Francisco, CA 94016" +307171,20in Monitor,1,109.99,12/29/19 15:38,"190 Jefferson St, San Francisco, CA 94016" +307172,USB-C Charging Cable,1,11.95,12/14/19 15:54,"836 2nd St, Austin, TX 73301" +307173,AAA Batteries (4-pack),1,2.99,12/30/19 02:11,"612 Elm St, San Francisco, CA 94016" +307174,27in FHD Monitor,1,149.99,12/24/19 01:19,"540 Cedar St, Seattle, WA 98101" +307175,iPhone,1,700,12/24/19 12:46,"365 Park St, Los Angeles, CA 90001" +307176,iPhone,1,700,12/01/19 09:43,"232 Madison St, New York City, NY 10001" +307177,27in 4K Gaming Monitor,1,389.99,12/31/19 03:49,"969 Lincoln St, New York City, NY 10001" +307178,Flatscreen TV,1,300,12/08/19 13:57,"253 Walnut St, New York City, NY 10001" +307179,27in FHD Monitor,1,149.99,12/18/19 13:58,"377 2nd St, San Francisco, CA 94016" +307180,Apple Airpods Headphones,1,150,12/15/19 16:59,"708 Forest St, Los Angeles, CA 90001" +307181,AAA Batteries (4-pack),1,2.99,12/16/19 09:35,"210 10th St, Los Angeles, CA 90001" +307182,Wired Headphones,1,11.99,12/26/19 10:55,"922 Church St, Los Angeles, CA 90001" +307183,Wired Headphones,1,11.99,12/06/19 17:09,"668 Pine St, Portland, OR 97035" +307184,ThinkPad Laptop,1,999.99,12/27/19 15:13,"897 Highland St, Austin, TX 73301" +307185,27in 4K Gaming Monitor,1,389.99,12/04/19 12:16,"473 4th St, Austin, TX 73301" +307186,Flatscreen TV,1,300,12/11/19 23:56,"777 Lake St, San Francisco, CA 94016" +307187,Apple Airpods Headphones,1,150,12/12/19 21:00,"874 Sunset St, New York City, NY 10001" +307188,Apple Airpods Headphones,1,150,12/07/19 12:21,"755 North St, San Francisco, CA 94016" +307189,Google Phone,1,600,12/10/19 05:58,"608 South St, Atlanta, GA 30301" +307190,iPhone,1,700,12/10/19 15:56,"237 Elm St, Austin, TX 73301" +307191,AA Batteries (4-pack),1,3.84,12/27/19 01:45,"215 1st St, New York City, NY 10001" +307192,AAA Batteries (4-pack),2,2.99,12/20/19 15:23,"496 Elm St, Los Angeles, CA 90001" +307193,27in 4K Gaming Monitor,1,389.99,12/29/19 21:15,"13 Johnson St, Dallas, TX 75001" +307194,Flatscreen TV,1,300,12/28/19 22:07,"253 12th St, New York City, NY 10001" +307195,AAA Batteries (4-pack),1,2.99,12/22/19 16:42,"15 Adams St, San Francisco, CA 94016" +307196,AA Batteries (4-pack),1,3.84,12/24/19 23:02,"25 Chestnut St, San Francisco, CA 94016" +307197,AAA Batteries (4-pack),1,2.99,12/20/19 22:28,"645 Hill St, Dallas, TX 75001" +307198,iPhone,1,700,12/16/19 07:42,"884 Jefferson St, San Francisco, CA 94016" +307199,USB-C Charging Cable,1,11.95,12/19/19 17:47,"88 Cedar St, Atlanta, GA 30301" +307200,Lightning Charging Cable,1,14.95,12/12/19 04:15,"939 West St, Atlanta, GA 30301" +307201,AA Batteries (4-pack),1,3.84,12/24/19 20:18,"830 West St, New York City, NY 10001" +307202,AAA Batteries (4-pack),1,2.99,12/23/19 21:48,"406 10th St, New York City, NY 10001" +307203,Google Phone,1,600,12/17/19 09:11,"992 Dogwood St, Seattle, WA 98101" +307204,Wired Headphones,1,11.99,12/11/19 15:31,"591 Washington St, Boston, MA 02215" +307205,AAA Batteries (4-pack),4,2.99,12/17/19 19:25,"48 Jackson St, Atlanta, GA 30301" +307206,USB-C Charging Cable,1,11.95,12/26/19 19:03,"455 Washington St, New York City, NY 10001" +307207,Bose SoundSport Headphones,1,99.99,12/04/19 19:15,"466 Lake St, Portland, OR 97035" +307208,AA Batteries (4-pack),2,3.84,12/14/19 20:16,"943 Highland St, Los Angeles, CA 90001" +307209,Vareebadd Phone,1,400,12/03/19 09:27,"135 Highland St, Boston, MA 02215" +307210,Lightning Charging Cable,1,14.95,12/25/19 15:08,"608 12th St, New York City, NY 10001" +307211,27in 4K Gaming Monitor,1,389.99,12/30/19 06:49,"131 Lake St, Dallas, TX 75001" +307212,Macbook Pro Laptop,1,1700,12/15/19 10:16,"535 Meadow St, New York City, NY 10001" +307213,Wired Headphones,1,11.99,12/11/19 11:46,"15 Lake St, San Francisco, CA 94016" +307214,AA Batteries (4-pack),1,3.84,12/03/19 12:05,"747 Lakeview St, Los Angeles, CA 90001" +307215,27in FHD Monitor,1,149.99,12/25/19 11:52,"210 Center St, Boston, MA 02215" +307216,Wired Headphones,1,11.99,12/24/19 13:05,"528 Hickory St, Boston, MA 02215" +307217,Flatscreen TV,1,300,12/14/19 19:54,"486 Sunset St, Boston, MA 02215" +307218,27in FHD Monitor,1,149.99,12/30/19 11:54,"940 Chestnut St, Boston, MA 02215" +307219,AAA Batteries (4-pack),1,2.99,12/24/19 07:44,"55 10th St, New York City, NY 10001" +307220,34in Ultrawide Monitor,1,379.99,12/24/19 10:36,"576 Pine St, Boston, MA 02215" +307221,AA Batteries (4-pack),2,3.84,12/23/19 12:08,"375 Washington St, San Francisco, CA 94016" +307222,Wired Headphones,1,11.99,12/26/19 13:06,"496 Lake St, New York City, NY 10001" +307223,AA Batteries (4-pack),1,3.84,12/23/19 16:55,"257 Highland St, Los Angeles, CA 90001" +307224,Wired Headphones,2,11.99,12/08/19 21:12,"640 Cedar St, Atlanta, GA 30301" +307225,iPhone,1,700,12/20/19 11:30,"719 Walnut St, New York City, NY 10001" +307226,27in 4K Gaming Monitor,1,389.99,12/13/19 21:13,"245 North St, Dallas, TX 75001" +307227,USB-C Charging Cable,1,11.95,12/31/19 15:38,"468 9th St, San Francisco, CA 94016" +307228,AAA Batteries (4-pack),1,2.99,12/27/19 15:41,"525 River St, Dallas, TX 75001" +307229,Bose SoundSport Headphones,1,99.99,12/09/19 19:18,"954 Willow St, San Francisco, CA 94016" +307230,Wired Headphones,1,11.99,12/21/19 18:33,"44 River St, San Francisco, CA 94016" +307231,Macbook Pro Laptop,1,1700,12/01/19 12:19,"305 River St, Atlanta, GA 30301" +307232,USB-C Charging Cable,1,11.95,12/07/19 00:16,"166 Hill St, Los Angeles, CA 90001" +307233,AAA Batteries (4-pack),1,2.99,12/07/19 17:35,"848 8th St, San Francisco, CA 94016" +307234,Macbook Pro Laptop,1,1700,12/29/19 09:05,"644 11th St, New York City, NY 10001" +307235,USB-C Charging Cable,1,11.95,12/13/19 08:18,"948 1st St, Atlanta, GA 30301" +307236,27in 4K Gaming Monitor,1,389.99,12/08/19 15:43,"56 5th St, Los Angeles, CA 90001" +307237,AA Batteries (4-pack),1,3.84,12/22/19 10:17,"993 13th St, Los Angeles, CA 90001" +307238,LG Dryer,1,600.0,12/20/19 14:44,"342 Wilson St, Austin, TX 73301" +307239,AAA Batteries (4-pack),2,2.99,12/22/19 21:15,"22 Washington St, Los Angeles, CA 90001" +307240,AAA Batteries (4-pack),1,2.99,12/06/19 12:47,"325 Lakeview St, Atlanta, GA 30301" +307241,AAA Batteries (4-pack),3,2.99,12/31/19 22:07,"17 Jackson St, San Francisco, CA 94016" +307242,AAA Batteries (4-pack),1,2.99,12/21/19 22:21,"621 Jefferson St, Los Angeles, CA 90001" +307243,USB-C Charging Cable,1,11.95,12/17/19 16:50,"272 Jefferson St, Seattle, WA 98101" +307244,AAA Batteries (4-pack),2,2.99,12/24/19 11:39,"565 10th St, Boston, MA 02215" +307245,AA Batteries (4-pack),1,3.84,12/18/19 00:12,"665 12th St, Atlanta, GA 30301" +307246,Wired Headphones,1,11.99,12/01/19 21:58,"422 Hill St, Seattle, WA 98101" +307247,AA Batteries (4-pack),1,3.84,12/18/19 18:24,"216 Lincoln St, San Francisco, CA 94016" +307248,ThinkPad Laptop,1,999.99,12/05/19 19:23,"829 Center St, San Francisco, CA 94016" +307249,Lightning Charging Cable,1,14.95,12/03/19 07:37,"501 Jefferson St, Boston, MA 02215" +307250,AAA Batteries (4-pack),1,2.99,12/23/19 13:28,"295 Adams St, Atlanta, GA 30301" +307250,27in 4K Gaming Monitor,1,389.99,12/23/19 13:28,"295 Adams St, Atlanta, GA 30301" +307251,Bose SoundSport Headphones,1,99.99,12/09/19 12:30,"30 Highland St, San Francisco, CA 94016" +307252,27in 4K Gaming Monitor,1,389.99,12/21/19 22:32,"752 Hill St, San Francisco, CA 94016" +307253,34in Ultrawide Monitor,1,379.99,12/22/19 10:08,"454 Lincoln St, San Francisco, CA 94016" +307254,Lightning Charging Cable,1,14.95,12/27/19 22:27,"644 Lincoln St, San Francisco, CA 94016" +307255,iPhone,1,700,12/10/19 14:36,"30 Lakeview St, Dallas, TX 75001" +307256,Google Phone,1,600,12/01/19 14:05,"989 Maple St, San Francisco, CA 94016" +307256,USB-C Charging Cable,1,11.95,12/01/19 14:05,"989 Maple St, San Francisco, CA 94016" +307257,AA Batteries (4-pack),1,3.84,12/24/19 13:25,"98 14th St, San Francisco, CA 94016" +307258,USB-C Charging Cable,2,11.95,12/05/19 12:45,"730 South St, Boston, MA 02215" +307259,Bose SoundSport Headphones,1,99.99,12/05/19 09:22,"363 12th St, Seattle, WA 98101" +307260,Bose SoundSport Headphones,1,99.99,12/15/19 14:28,"372 Lake St, Los Angeles, CA 90001" +307261,USB-C Charging Cable,1,11.95,12/24/19 09:00,"903 Forest St, New York City, NY 10001" +307262,Bose SoundSport Headphones,1,99.99,12/30/19 16:00,"982 Chestnut St, Dallas, TX 75001" +307263,Bose SoundSport Headphones,1,99.99,12/09/19 12:39,"60 2nd St, Boston, MA 02215" +307264,Bose SoundSport Headphones,1,99.99,12/05/19 11:29,"931 7th St, San Francisco, CA 94016" +307265,AA Batteries (4-pack),1,3.84,12/27/19 20:59,"621 Dogwood St, Seattle, WA 98101" +307266,Wired Headphones,1,11.99,12/13/19 13:47,"631 Cherry St, Los Angeles, CA 90001" +307267,AAA Batteries (4-pack),1,2.99,12/16/19 09:03,"767 Spruce St, New York City, NY 10001" +307267,AA Batteries (4-pack),3,3.84,12/16/19 09:03,"767 Spruce St, New York City, NY 10001" +307268,Lightning Charging Cable,1,14.95,12/30/19 05:50,"526 6th St, Dallas, TX 75001" +307269,34in Ultrawide Monitor,1,379.99,12/01/19 12:51,"655 9th St, Atlanta, GA 30301" +307270,AAA Batteries (4-pack),3,2.99,12/28/19 19:11,"312 9th St, New York City, NY 10001" +307271,34in Ultrawide Monitor,1,379.99,12/30/19 23:21,"680 Main St, Los Angeles, CA 90001" +307272,Lightning Charging Cable,1,14.95,12/18/19 12:24,"955 Dogwood St, Atlanta, GA 30301" +307273,Wired Headphones,1,11.99,12/10/19 14:48,"223 1st St, New York City, NY 10001" +307274,AAA Batteries (4-pack),2,2.99,12/01/19 16:22,"329 Park St, Atlanta, GA 30301" +307275,Bose SoundSport Headphones,1,99.99,12/01/19 23:19,"629 Elm St, San Francisco, CA 94016" +307276,AA Batteries (4-pack),1,3.84,12/31/19 23:19,"696 West St, Boston, MA 02215" +307277,AA Batteries (4-pack),4,3.84,12/11/19 21:58,"270 Meadow St, San Francisco, CA 94016" +307278,20in Monitor,1,109.99,12/05/19 10:52,"64 Jefferson St, New York City, NY 10001" +307278,20in Monitor,1,109.99,12/05/19 10:52,"64 Jefferson St, New York City, NY 10001" +307279,ThinkPad Laptop,1,999.99,12/07/19 11:45,"568 13th St, Boston, MA 02215" +307280,Apple Airpods Headphones,1,150,12/21/19 08:07,"957 Center St, Austin, TX 73301" +307281,Apple Airpods Headphones,1,150,12/06/19 18:24,"76 Chestnut St, San Francisco, CA 94016" +307281,Lightning Charging Cable,1,14.95,12/06/19 18:24,"76 Chestnut St, San Francisco, CA 94016" +307282,iPhone,1,700,12/22/19 22:58,"98 Forest St, New York City, NY 10001" +307283,LG Washing Machine,1,600.0,12/08/19 07:24,"332 Dogwood St, Atlanta, GA 30301" +307284,34in Ultrawide Monitor,1,379.99,12/03/19 18:04,"658 Willow St, Dallas, TX 75001" +307285,AA Batteries (4-pack),1,3.84,12/04/19 17:10,"948 Jackson St, Portland, OR 97035" +307286,USB-C Charging Cable,1,11.95,12/18/19 18:30,"172 Willow St, New York City, NY 10001" +307287,Lightning Charging Cable,1,14.95,12/26/19 19:05,"118 Lakeview St, Seattle, WA 98101" +307288,Vareebadd Phone,1,400,12/19/19 16:36,"767 Madison St, Los Angeles, CA 90001" +307288,USB-C Charging Cable,1,11.95,12/19/19 16:36,"767 Madison St, Los Angeles, CA 90001" +307289,Macbook Pro Laptop,1,1700,12/30/19 13:14,"332 7th St, San Francisco, CA 94016" +307290,AAA Batteries (4-pack),2,2.99,12/16/19 12:05,"397 Forest St, Austin, TX 73301" +307291,USB-C Charging Cable,2,11.95,12/19/19 20:43,"822 Jackson St, San Francisco, CA 94016" +307292,AAA Batteries (4-pack),1,2.99,12/13/19 18:27,"165 Church St, San Francisco, CA 94016" +307293,Wired Headphones,1,11.99,12/25/19 14:44,"940 7th St, Seattle, WA 98101" +307294,USB-C Charging Cable,1,11.95,12/06/19 18:35,"930 Lakeview St, San Francisco, CA 94016" +307295,Bose SoundSport Headphones,1,99.99,12/24/19 21:01,"370 Main St, Austin, TX 73301" +307296,Apple Airpods Headphones,1,150,12/11/19 14:53,"341 Jackson St, San Francisco, CA 94016" +307297,Vareebadd Phone,1,400,12/08/19 19:24,"4 Main St, Boston, MA 02215" +307297,Wired Headphones,1,11.99,12/08/19 19:24,"4 Main St, Boston, MA 02215" +307298,34in Ultrawide Monitor,1,379.99,12/23/19 01:17,"267 5th St, Seattle, WA 98101" +307299,USB-C Charging Cable,1,11.95,12/03/19 13:52,"810 Jackson St, New York City, NY 10001" +307300,27in 4K Gaming Monitor,1,389.99,12/30/19 22:19,"494 Madison St, San Francisco, CA 94016" +307301,Lightning Charging Cable,1,14.95,12/01/19 21:50,"213 Jackson St, Boston, MA 02215" +307301,Flatscreen TV,1,300,12/01/19 21:50,"213 Jackson St, Boston, MA 02215" +307302,Apple Airpods Headphones,1,150,12/03/19 16:08,"568 Lakeview St, San Francisco, CA 94016" +307303,AAA Batteries (4-pack),1,2.99,12/03/19 13:53,"769 Meadow St, Dallas, TX 75001" +307304,Macbook Pro Laptop,1,1700,12/13/19 14:25,"143 Adams St, San Francisco, CA 94016" +307305,USB-C Charging Cable,1,11.95,12/07/19 19:32,"942 Adams St, Austin, TX 73301" +307306,20in Monitor,1,109.99,12/06/19 10:45,"990 Church St, Dallas, TX 75001" +307307,20in Monitor,1,109.99,12/12/19 14:06,"624 13th St, San Francisco, CA 94016" +307308,AA Batteries (4-pack),1,3.84,12/11/19 14:50,"788 Spruce St, Seattle, WA 98101" +307309,Lightning Charging Cable,2,14.95,12/19/19 18:46,"319 Maple St, Boston, MA 02215" +307310,20in Monitor,1,109.99,12/23/19 11:01,"368 Pine St, New York City, NY 10001" +307311,USB-C Charging Cable,1,11.95,12/05/19 05:49,"541 Washington St, Boston, MA 02215" +307312,AA Batteries (4-pack),1,3.84,12/23/19 12:20,"843 Cherry St, San Francisco, CA 94016" +307313,Apple Airpods Headphones,1,150,12/21/19 23:37,"199 South St, San Francisco, CA 94016" +307314,Wired Headphones,2,11.99,12/23/19 13:16,"284 Washington St, San Francisco, CA 94016" +307315,Google Phone,1,600,12/06/19 21:23,"485 Sunset St, San Francisco, CA 94016" +307316,27in FHD Monitor,1,149.99,12/12/19 20:13,"327 Jackson St, New York City, NY 10001" +307317,AAA Batteries (4-pack),2,2.99,12/18/19 18:43,"366 Hickory St, Boston, MA 02215" +307318,USB-C Charging Cable,1,11.95,12/27/19 13:35,"102 Madison St, New York City, NY 10001" +307319,Bose SoundSport Headphones,1,99.99,12/09/19 19:12,"650 4th St, New York City, NY 10001" +307320,AAA Batteries (4-pack),1,2.99,12/29/19 08:28,"201 8th St, Boston, MA 02215" +307321,iPhone,1,700,12/16/19 20:34,"100 Lakeview St, Atlanta, GA 30301" +307322,27in 4K Gaming Monitor,1,389.99,12/16/19 08:23,"753 Cherry St, Dallas, TX 75001" +307323,Wired Headphones,1,11.99,12/01/19 14:17,"138 Center St, Austin, TX 73301" +307324,AAA Batteries (4-pack),1,2.99,12/19/19 12:29,"550 Jackson St, San Francisco, CA 94016" +307325,Wired Headphones,1,11.99,12/08/19 10:29,"12 9th St, Los Angeles, CA 90001" +307326,AAA Batteries (4-pack),1,2.99,12/13/19 20:26,"337 Washington St, Atlanta, GA 30301" +307327,USB-C Charging Cable,1,11.95,12/09/19 06:33,"162 13th St, Austin, TX 73301" +307328,USB-C Charging Cable,1,11.95,12/28/19 09:28,"908 13th St, Seattle, WA 98101" +307329,Wired Headphones,1,11.99,12/18/19 22:11,"709 14th St, Portland, OR 97035" +307330,Lightning Charging Cable,1,14.95,12/04/19 00:44,"94 Wilson St, Seattle, WA 98101" +307331,iPhone,1,700,12/31/19 21:44,"784 Johnson St, San Francisco, CA 94016" +307332,iPhone,1,700,12/23/19 08:33,"217 Ridge St, New York City, NY 10001" +307333,Apple Airpods Headphones,1,150,12/25/19 11:41,"739 8th St, Boston, MA 02215" +307334,Flatscreen TV,1,300,12/07/19 12:57,"14 Maple St, San Francisco, CA 94016" +307335,iPhone,1,700,12/02/19 19:30,"550 10th St, Los Angeles, CA 90001" +307336,Wired Headphones,1,11.99,12/12/19 11:09,"208 Hickory St, San Francisco, CA 94016" +307337,Google Phone,1,600,12/03/19 13:02,"828 12th St, Dallas, TX 75001" +307338,27in FHD Monitor,1,149.99,12/02/19 12:51,"247 8th St, San Francisco, CA 94016" +307339,AAA Batteries (4-pack),1,2.99,12/19/19 02:22,"421 Hickory St, Seattle, WA 98101" +307340,Lightning Charging Cable,1,14.95,12/09/19 20:58,"653 Cherry St, New York City, NY 10001" +307341,Bose SoundSport Headphones,1,99.99,12/13/19 13:16,"129 4th St, Los Angeles, CA 90001" +307342,USB-C Charging Cable,1,11.95,12/07/19 08:31,"953 Lincoln St, New York City, NY 10001" +307343,Bose SoundSport Headphones,1,99.99,12/15/19 15:06,"979 11th St, Dallas, TX 75001" +307344,ThinkPad Laptop,1,999.99,12/15/19 16:34,"114 Main St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +307345,Bose SoundSport Headphones,1,99.99,12/23/19 16:56,"955 Johnson St, San Francisco, CA 94016" +307346,Apple Airpods Headphones,1,150,12/09/19 20:13,"817 Cedar St, Los Angeles, CA 90001" +307347,AAA Batteries (4-pack),1,2.99,12/24/19 11:34,"30 Spruce St, New York City, NY 10001" +307348,Apple Airpods Headphones,1,150,12/13/19 23:05,"899 Lakeview St, San Francisco, CA 94016" +307349,USB-C Charging Cable,1,11.95,12/21/19 17:52,"674 Forest St, Atlanta, GA 30301" +307350,Bose SoundSport Headphones,1,99.99,12/09/19 11:52,"124 Meadow St, Boston, MA 02215" +307351,Lightning Charging Cable,1,14.95,12/12/19 18:15,"652 Wilson St, Dallas, TX 75001" +307352,Wired Headphones,1,11.99,12/19/19 11:54,"898 Church St, Boston, MA 02215" +307353,Wired Headphones,1,11.99,12/28/19 18:00,"5 Willow St, Boston, MA 02215" +307354,27in FHD Monitor,1,149.99,12/23/19 11:39,"137 5th St, Los Angeles, CA 90001" +307355,Lightning Charging Cable,1,14.95,12/04/19 09:51,"694 Hill St, Los Angeles, CA 90001" +307356,34in Ultrawide Monitor,1,379.99,12/08/19 13:44,"87 Pine St, San Francisco, CA 94016" +307357,AAA Batteries (4-pack),1,2.99,12/13/19 23:14,"679 North St, San Francisco, CA 94016" +307358,Lightning Charging Cable,2,14.95,12/10/19 13:27,"152 Wilson St, Portland, ME 04101" +307359,Apple Airpods Headphones,1,150,12/16/19 17:02,"789 Adams St, Los Angeles, CA 90001" +307360,Wired Headphones,3,11.99,12/07/19 18:13,"999 13th St, Seattle, WA 98101" +307361,AAA Batteries (4-pack),1,2.99,12/29/19 13:33,"254 River St, Los Angeles, CA 90001" +307362,Apple Airpods Headphones,1,150,12/09/19 07:33,"771 11th St, Boston, MA 02215" +307363,AA Batteries (4-pack),2,3.84,12/14/19 10:03,"808 4th St, San Francisco, CA 94016" +307364,Apple Airpods Headphones,1,150,12/27/19 13:05,"68 14th St, New York City, NY 10001" +,,,,, +307365,iPhone,1,700,12/11/19 20:54,"414 Church St, Dallas, TX 75001" +307366,27in 4K Gaming Monitor,1,389.99,12/11/19 19:42,"616 Maple St, New York City, NY 10001" +307367,Apple Airpods Headphones,1,150,12/01/19 20:44,"879 4th St, Dallas, TX 75001" +307368,Wired Headphones,1,11.99,12/18/19 12:20,"47 Meadow St, Portland, OR 97035" +307369,iPhone,1,700,12/29/19 21:42,"938 Maple St, Austin, TX 73301" +307370,Apple Airpods Headphones,1,150,12/21/19 21:49,"530 10th St, Dallas, TX 75001" +307371,AA Batteries (4-pack),2,3.84,12/13/19 16:20,"197 Church St, Dallas, TX 75001" +307372,27in 4K Gaming Monitor,1,389.99,12/14/19 20:38,"57 Meadow St, Boston, MA 02215" +307373,Bose SoundSport Headphones,1,99.99,12/20/19 12:53,"880 Adams St, Los Angeles, CA 90001" +307374,Apple Airpods Headphones,1,150,12/31/19 15:13,"42 Hickory St, Dallas, TX 75001" +307375,AAA Batteries (4-pack),1,2.99,12/20/19 07:29,"216 Cedar St, New York City, NY 10001" +307376,Lightning Charging Cable,1,14.95,12/14/19 17:12,"792 Madison St, Austin, TX 73301" +307377,AAA Batteries (4-pack),1,2.99,12/21/19 17:12,"20 Maple St, Dallas, TX 75001" +307378,Wired Headphones,1,11.99,12/08/19 00:57,"686 Elm St, Portland, OR 97035" +307379,USB-C Charging Cable,1,11.95,12/30/19 10:00,"489 11th St, Boston, MA 02215" +307380,Macbook Pro Laptop,1,1700,12/20/19 19:43,"602 Spruce St, Boston, MA 02215" +307381,AAA Batteries (4-pack),2,2.99,12/02/19 18:11,"896 Johnson St, Seattle, WA 98101" +307382,AAA Batteries (4-pack),2,2.99,12/24/19 08:23,"587 Wilson St, Seattle, WA 98101" +307383,Google Phone,1,600,12/31/19 09:47,"280 North St, Portland, OR 97035" +307384,Google Phone,1,600,12/09/19 21:09,"227 2nd St, Austin, TX 73301" +307385,Apple Airpods Headphones,1,150,12/13/19 10:26,"766 Main St, Dallas, TX 75001" +307386,Bose SoundSport Headphones,1,99.99,12/21/19 21:52,"607 14th St, Dallas, TX 75001" +307386,AA Batteries (4-pack),1,3.84,12/21/19 21:52,"607 14th St, Dallas, TX 75001" +307387,USB-C Charging Cable,2,11.95,12/12/19 20:10,"629 Cherry St, Boston, MA 02215" +307388,Lightning Charging Cable,1,14.95,12/10/19 23:01,"850 Sunset St, San Francisco, CA 94016" +307389,AAA Batteries (4-pack),1,2.99,12/16/19 01:20,"498 Spruce St, Atlanta, GA 30301" +307390,Bose SoundSport Headphones,1,99.99,12/30/19 13:01,"955 Jackson St, Atlanta, GA 30301" +307391,Flatscreen TV,1,300,12/11/19 22:39,"391 Walnut St, Dallas, TX 75001" +307392,Lightning Charging Cable,1,14.95,12/14/19 19:30,"862 Madison St, Dallas, TX 75001" +307393,34in Ultrawide Monitor,1,379.99,12/01/19 15:05,"536 Madison St, Los Angeles, CA 90001" +307394,AAA Batteries (4-pack),2,2.99,12/27/19 13:54,"236 Adams St, New York City, NY 10001" +307395,AA Batteries (4-pack),1,3.84,12/15/19 16:57,"199 Chestnut St, New York City, NY 10001" +307396,Apple Airpods Headphones,1,150,12/18/19 07:35,"39 Maple St, Boston, MA 02215" +307397,Apple Airpods Headphones,1,150,12/02/19 03:00,"876 Cherry St, San Francisco, CA 94016" +307398,AA Batteries (4-pack),3,3.84,12/24/19 15:53,"722 8th St, Austin, TX 73301" +307399,Lightning Charging Cable,1,14.95,12/10/19 16:00,"818 Hickory St, Los Angeles, CA 90001" +307400,Bose SoundSport Headphones,1,99.99,12/03/19 17:38,"683 North St, Los Angeles, CA 90001" +307401,AA Batteries (4-pack),1,3.84,12/21/19 22:14,"744 4th St, New York City, NY 10001" +307402,20in Monitor,1,109.99,12/27/19 11:59,"602 8th St, Austin, TX 73301" +307403,iPhone,1,700,12/26/19 12:07,"685 Madison St, Portland, OR 97035" +307404,AAA Batteries (4-pack),1,2.99,12/02/19 11:59,"227 Lake St, San Francisco, CA 94016" +307405,AA Batteries (4-pack),1,3.84,12/27/19 13:57,"772 South St, San Francisco, CA 94016" +307406,AA Batteries (4-pack),1,3.84,12/20/19 15:14,"282 Hill St, New York City, NY 10001" +307407,USB-C Charging Cable,1,11.95,12/22/19 16:41,"452 Lakeview St, Seattle, WA 98101" +307408,Macbook Pro Laptop,1,1700,12/07/19 16:44,"522 2nd St, Dallas, TX 75001" +307409,AAA Batteries (4-pack),3,2.99,12/20/19 13:11,"862 West St, San Francisco, CA 94016" +307410,34in Ultrawide Monitor,1,379.99,12/04/19 07:27,"398 North St, Los Angeles, CA 90001" +307411,AAA Batteries (4-pack),3,2.99,12/22/19 21:22,"405 Sunset St, San Francisco, CA 94016" +307412,AAA Batteries (4-pack),1,2.99,12/20/19 18:17,"423 14th St, Boston, MA 02215" +307413,Flatscreen TV,1,300,12/10/19 18:26,"352 Meadow St, Seattle, WA 98101" +307414,iPhone,1,700,12/05/19 13:16,"941 Lincoln St, San Francisco, CA 94016" +307415,Lightning Charging Cable,1,14.95,12/14/19 09:55,"272 South St, San Francisco, CA 94016" +307415,Wired Headphones,1,11.99,12/14/19 09:55,"272 South St, San Francisco, CA 94016" +307416,USB-C Charging Cable,1,11.95,12/25/19 11:51,"825 Center St, San Francisco, CA 94016" +307417,AAA Batteries (4-pack),3,2.99,12/06/19 14:18,"432 Center St, Seattle, WA 98101" +307418,USB-C Charging Cable,1,11.95,12/21/19 23:39,"3 5th St, San Francisco, CA 94016" +307419,Lightning Charging Cable,1,14.95,12/12/19 13:58,"82 7th St, Boston, MA 02215" +307420,AAA Batteries (4-pack),2,2.99,12/08/19 12:00,"16 Johnson St, Los Angeles, CA 90001" +307421,27in FHD Monitor,1,149.99,12/01/19 16:02,"625 River St, Dallas, TX 75001" +307422,Google Phone,1,600,12/12/19 13:03,"519 Dogwood St, San Francisco, CA 94016" +307423,Apple Airpods Headphones,1,150,12/24/19 15:27,"701 Willow St, Austin, TX 73301" +307424,34in Ultrawide Monitor,1,379.99,12/17/19 12:47,"672 Washington St, Seattle, WA 98101" +307425,USB-C Charging Cable,3,11.95,12/17/19 20:43,"868 West St, Austin, TX 73301" +307426,Lightning Charging Cable,1,14.95,12/27/19 17:01,"630 Cherry St, Seattle, WA 98101" +307427,Wired Headphones,1,11.99,01/01/20 01:30,"28 Forest St, San Francisco, CA 94016" +307428,Lightning Charging Cable,2,14.95,12/03/19 18:05,"629 Meadow St, San Francisco, CA 94016" +307429,Wired Headphones,1,11.99,12/06/19 22:17,"956 2nd St, Austin, TX 73301" +307430,Wired Headphones,1,11.99,12/15/19 20:06,"311 Elm St, New York City, NY 10001" +307431,20in Monitor,1,109.99,12/16/19 00:14,"597 Sunset St, New York City, NY 10001" +307432,Lightning Charging Cable,1,14.95,12/31/19 12:33,"242 12th St, Seattle, WA 98101" +307433,Apple Airpods Headphones,1,150,12/13/19 18:45,"827 Washington St, Los Angeles, CA 90001" +307434,Vareebadd Phone,1,400,12/16/19 11:41,"17 12th St, Seattle, WA 98101" +307434,Wired Headphones,1,11.99,12/16/19 11:41,"17 12th St, Seattle, WA 98101" +307435,Apple Airpods Headphones,1,150,12/21/19 22:20,"219 Cedar St, Boston, MA 02215" +307436,Wired Headphones,1,11.99,12/07/19 13:09,"322 North St, New York City, NY 10001" +307437,USB-C Charging Cable,1,11.95,12/05/19 08:43,"380 Walnut St, Seattle, WA 98101" +307438,Google Phone,1,600,12/11/19 15:41,"620 7th St, San Francisco, CA 94016" +307439,AA Batteries (4-pack),1,3.84,12/11/19 14:32,"69 Forest St, Los Angeles, CA 90001" +307440,Bose SoundSport Headphones,1,99.99,12/08/19 22:47,"355 Hickory St, Los Angeles, CA 90001" +307441,USB-C Charging Cable,1,11.95,12/26/19 14:58,"763 Dogwood St, Seattle, WA 98101" +307442,USB-C Charging Cable,1,11.95,12/16/19 10:14,"384 Chestnut St, Atlanta, GA 30301" +307443,AAA Batteries (4-pack),2,2.99,12/10/19 01:06,"915 Forest St, Seattle, WA 98101" +307444,AA Batteries (4-pack),1,3.84,12/13/19 19:01,"99 8th St, San Francisco, CA 94016" +307445,Lightning Charging Cable,2,14.95,12/09/19 21:19,"266 Ridge St, San Francisco, CA 94016" +307446,Bose SoundSport Headphones,1,99.99,12/21/19 12:50,"102 River St, Seattle, WA 98101" +307447,Wired Headphones,1,11.99,12/26/19 18:57,"3 West St, Austin, TX 73301" +307448,AA Batteries (4-pack),1,3.84,12/14/19 08:23,"128 Hill St, New York City, NY 10001" +307449,Bose SoundSport Headphones,1,99.99,12/19/19 12:15,"110 Lincoln St, Boston, MA 02215" +307450,34in Ultrawide Monitor,1,379.99,12/01/19 17:01,"667 Adams St, Dallas, TX 75001" +307451,34in Ultrawide Monitor,1,379.99,12/03/19 10:57,"456 Lakeview St, Seattle, WA 98101" +307452,AAA Batteries (4-pack),1,2.99,12/26/19 16:49,"640 Hill St, Dallas, TX 75001" +307453,USB-C Charging Cable,3,11.95,12/27/19 12:27,"912 2nd St, New York City, NY 10001" +307454,Lightning Charging Cable,1,14.95,12/07/19 18:59,"123 11th St, Portland, OR 97035" +307455,LG Washing Machine,1,600.0,12/28/19 09:33,"698 Elm St, Los Angeles, CA 90001" +307456,AA Batteries (4-pack),1,3.84,12/16/19 23:53,"32 Center St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +307457,Wired Headphones,1,11.99,12/04/19 18:36,"29 Willow St, Seattle, WA 98101" +307458,AAA Batteries (4-pack),1,2.99,12/28/19 06:44,"561 Lakeview St, Los Angeles, CA 90001" +307459,Wired Headphones,1,11.99,12/26/19 20:23,"239 2nd St, Seattle, WA 98101" +307460,34in Ultrawide Monitor,1,379.99,12/21/19 09:52,"458 Cherry St, Atlanta, GA 30301" +307461,Bose SoundSport Headphones,1,99.99,12/30/19 22:37,"734 Meadow St, Los Angeles, CA 90001" +307462,ThinkPad Laptop,1,999.99,12/20/19 16:02,"709 Jefferson St, Austin, TX 73301" +307463,Apple Airpods Headphones,1,150,12/09/19 21:52,"223 West St, Portland, OR 97035" +307464,Wired Headphones,1,11.99,12/17/19 15:05,"350 14th St, Los Angeles, CA 90001" +307465,Wired Headphones,1,11.99,12/13/19 23:06,"43 Hickory St, New York City, NY 10001" +307466,USB-C Charging Cable,1,11.95,12/17/19 22:11,"562 Highland St, Seattle, WA 98101" +307467,Lightning Charging Cable,1,14.95,12/12/19 20:44,"39 Jackson St, Seattle, WA 98101" +307468,USB-C Charging Cable,1,11.95,12/01/19 21:56,"17 Cherry St, Los Angeles, CA 90001" +307469,AAA Batteries (4-pack),1,2.99,12/31/19 12:51,"566 South St, Austin, TX 73301" +307470,Wired Headphones,1,11.99,12/04/19 08:50,"660 Highland St, Los Angeles, CA 90001" +307471,Google Phone,1,600,12/04/19 07:46,"278 Spruce St, Los Angeles, CA 90001" +307472,AA Batteries (4-pack),1,3.84,12/03/19 19:23,"872 Forest St, Seattle, WA 98101" +307473,USB-C Charging Cable,1,11.95,12/13/19 20:41,"264 11th St, San Francisco, CA 94016" +307474,Lightning Charging Cable,1,14.95,12/24/19 13:45,"529 Pine St, Seattle, WA 98101" +307475,AA Batteries (4-pack),1,3.84,12/31/19 11:05,"963 14th St, Portland, OR 97035" +307476,27in 4K Gaming Monitor,1,389.99,12/07/19 18:05,"509 Madison St, New York City, NY 10001" +307477,ThinkPad Laptop,1,999.99,12/17/19 18:08,"58 Washington St, New York City, NY 10001" +307478,20in Monitor,1,109.99,12/06/19 14:55,"329 Wilson St, New York City, NY 10001" +307479,Lightning Charging Cable,1,14.95,12/18/19 14:36,"663 Center St, San Francisco, CA 94016" +307480,AAA Batteries (4-pack),1,2.99,12/03/19 13:45,"834 Willow St, New York City, NY 10001" +307481,Bose SoundSport Headphones,1,99.99,12/23/19 11:56,"72 Cherry St, Portland, OR 97035" +307482,Wired Headphones,1,11.99,12/03/19 16:57,"285 11th St, Dallas, TX 75001" +307483,Bose SoundSport Headphones,1,99.99,12/26/19 14:21,"616 14th St, Los Angeles, CA 90001" +307484,27in 4K Gaming Monitor,1,389.99,12/12/19 08:31,"990 Lakeview St, Austin, TX 73301" +307485,Bose SoundSport Headphones,1,99.99,12/28/19 00:47,"541 Forest St, San Francisco, CA 94016" +307486,AAA Batteries (4-pack),1,2.99,12/21/19 19:34,"797 2nd St, Boston, MA 02215" +307487,Bose SoundSport Headphones,1,99.99,12/25/19 20:04,"82 Hickory St, San Francisco, CA 94016" +307488,34in Ultrawide Monitor,1,379.99,12/26/19 00:00,"973 Lake St, Boston, MA 02215" +307489,AA Batteries (4-pack),1,3.84,12/02/19 15:50,"981 Cedar St, Austin, TX 73301" +307490,AA Batteries (4-pack),2,3.84,12/17/19 15:49,"767 Highland St, San Francisco, CA 94016" +307491,Lightning Charging Cable,1,14.95,12/12/19 20:32,"634 Dogwood St, New York City, NY 10001" +307492,20in Monitor,1,109.99,12/13/19 18:53,"463 Lincoln St, Los Angeles, CA 90001" +307493,Google Phone,1,600,12/16/19 04:06,"107 Pine St, Boston, MA 02215" +307494,Lightning Charging Cable,1,14.95,12/26/19 13:22,"862 South St, Atlanta, GA 30301" +307495,AA Batteries (4-pack),2,3.84,12/14/19 04:47,"36 13th St, Dallas, TX 75001" +307496,ThinkPad Laptop,1,999.99,12/26/19 11:39,"565 Cedar St, Seattle, WA 98101" +307497,Macbook Pro Laptop,1,1700,12/20/19 14:32,"76 Madison St, New York City, NY 10001" +307498,Lightning Charging Cable,1,14.95,12/17/19 15:18,"38 12th St, Atlanta, GA 30301" +307499,Macbook Pro Laptop,1,1700,12/22/19 11:18,"710 Park St, San Francisco, CA 94016" +307500,Flatscreen TV,1,300,12/16/19 13:08,"396 6th St, Los Angeles, CA 90001" +307501,Lightning Charging Cable,1,14.95,12/09/19 22:41,"88 7th St, Boston, MA 02215" +307502,AAA Batteries (4-pack),1,2.99,12/22/19 22:01,"853 12th St, Seattle, WA 98101" +307503,Lightning Charging Cable,1,14.95,12/01/19 20:12,"55 14th St, Boston, MA 02215" +307504,27in 4K Gaming Monitor,1,389.99,12/27/19 07:26,"201 Walnut St, New York City, NY 10001" +307505,27in FHD Monitor,1,149.99,12/29/19 23:30,"88 Washington St, San Francisco, CA 94016" +307506,AA Batteries (4-pack),3,3.84,12/22/19 09:09,"410 Park St, Los Angeles, CA 90001" +307507,AA Batteries (4-pack),1,3.84,12/26/19 11:17,"929 Lincoln St, Seattle, WA 98101" +307508,AAA Batteries (4-pack),2,2.99,12/24/19 11:28,"845 Lakeview St, Austin, TX 73301" +307509,27in FHD Monitor,1,149.99,12/21/19 17:23,"257 Willow St, Boston, MA 02215" +307510,Bose SoundSport Headphones,1,99.99,12/14/19 15:14,"774 Lake St, San Francisco, CA 94016" +307511,USB-C Charging Cable,1,11.95,12/29/19 21:51,"225 Lincoln St, San Francisco, CA 94016" +307512,27in 4K Gaming Monitor,1,389.99,12/14/19 08:07,"253 Maple St, Los Angeles, CA 90001" +307513,Lightning Charging Cable,2,14.95,12/09/19 19:45,"926 9th St, Portland, OR 97035" +307514,USB-C Charging Cable,1,11.95,12/29/19 15:23,"661 Ridge St, San Francisco, CA 94016" +307515,AAA Batteries (4-pack),1,2.99,12/18/19 23:39,"755 Forest St, San Francisco, CA 94016" +307516,AA Batteries (4-pack),1,3.84,12/30/19 22:54,"258 Highland St, Austin, TX 73301" +307517,Bose SoundSport Headphones,1,99.99,12/02/19 20:22,"534 Jefferson St, San Francisco, CA 94016" +307518,Lightning Charging Cable,1,14.95,12/11/19 11:42,"300 Park St, Atlanta, GA 30301" +307519,Wired Headphones,1,11.99,12/13/19 20:44,"403 12th St, New York City, NY 10001" +307520,USB-C Charging Cable,1,11.95,12/23/19 14:15,"973 13th St, San Francisco, CA 94016" +307521,LG Dryer,1,600.0,12/14/19 11:50,"368 6th St, Boston, MA 02215" +307522,iPhone,1,700,12/26/19 18:01,"691 7th St, Boston, MA 02215" +307523,Bose SoundSport Headphones,1,99.99,12/17/19 06:46,"651 Center St, Portland, ME 04101" +307524,Lightning Charging Cable,2,14.95,12/09/19 21:41,"673 13th St, Seattle, WA 98101" +307525,Lightning Charging Cable,1,14.95,12/31/19 18:17,"583 6th St, Los Angeles, CA 90001" +307526,AA Batteries (4-pack),1,3.84,12/10/19 15:08,"86 Maple St, Dallas, TX 75001" +307527,USB-C Charging Cable,1,11.95,12/20/19 21:14,"770 Park St, New York City, NY 10001" +307528,Bose SoundSport Headphones,1,99.99,12/19/19 13:27,"301 Willow St, New York City, NY 10001" +307529,Bose SoundSport Headphones,1,99.99,12/07/19 15:05,"893 Walnut St, Portland, ME 04101" +307530,USB-C Charging Cable,1,11.95,12/23/19 07:25,"866 Jackson St, New York City, NY 10001" +307531,Apple Airpods Headphones,1,150,12/22/19 18:04,"354 North St, Los Angeles, CA 90001" +307532,AA Batteries (4-pack),1,3.84,12/17/19 15:36,"862 Park St, New York City, NY 10001" +307533,27in FHD Monitor,1,149.99,12/26/19 02:07,"636 Lake St, Austin, TX 73301" +307534,Bose SoundSport Headphones,1,99.99,12/25/19 17:39,"217 West St, New York City, NY 10001" +307535,AAA Batteries (4-pack),1,2.99,12/07/19 11:53,"605 Spruce St, New York City, NY 10001" +307536,Apple Airpods Headphones,1,150,12/01/19 14:26,"169 Washington St, Los Angeles, CA 90001" +307537,Apple Airpods Headphones,1,150,12/03/19 20:51,"339 Hickory St, New York City, NY 10001" +307538,Apple Airpods Headphones,1,150,12/28/19 09:14,"776 Church St, Portland, OR 97035" +307539,AAA Batteries (4-pack),5,2.99,12/19/19 10:21,"719 Maple St, Seattle, WA 98101" +307540,USB-C Charging Cable,1,11.95,12/21/19 19:54,"961 South St, San Francisco, CA 94016" +307541,USB-C Charging Cable,1,11.95,12/27/19 10:11,"489 Lake St, Los Angeles, CA 90001" +307542,LG Dryer,1,600.0,12/20/19 15:00,"863 Lake St, San Francisco, CA 94016" +307543,AA Batteries (4-pack),5,3.84,12/08/19 08:46,"822 8th St, New York City, NY 10001" +307544,USB-C Charging Cable,1,11.95,12/29/19 23:47,"530 Washington St, New York City, NY 10001" +307545,Lightning Charging Cable,1,14.95,12/18/19 21:08,"616 North St, Boston, MA 02215" +307546,USB-C Charging Cable,1,11.95,12/23/19 14:16,"397 Cherry St, San Francisco, CA 94016" +307547,Bose SoundSport Headphones,1,99.99,12/13/19 23:29,"403 11th St, Los Angeles, CA 90001" +307547,20in Monitor,1,109.99,12/13/19 23:29,"403 11th St, Los Angeles, CA 90001" +307548,AAA Batteries (4-pack),1,2.99,12/02/19 00:16,"596 Spruce St, Atlanta, GA 30301" +307549,20in Monitor,1,109.99,12/12/19 15:43,"157 4th St, Boston, MA 02215" +307550,34in Ultrawide Monitor,1,379.99,12/18/19 09:03,"893 Cherry St, Boston, MA 02215" +307551,27in 4K Gaming Monitor,1,389.99,12/08/19 07:48,"46 Park St, San Francisco, CA 94016" +307552,USB-C Charging Cable,1,11.95,12/16/19 09:51,"570 River St, Dallas, TX 75001" +307553,AAA Batteries (4-pack),1,2.99,12/02/19 10:50,"927 Lincoln St, Boston, MA 02215" +307554,34in Ultrawide Monitor,1,379.99,12/22/19 15:26,"108 Lake St, Seattle, WA 98101" +307555,Wired Headphones,1,11.99,12/25/19 16:23,"499 Main St, Portland, OR 97035" +307556,AAA Batteries (4-pack),1,2.99,12/11/19 00:01,"541 9th St, San Francisco, CA 94016" +307556,27in FHD Monitor,1,149.99,12/11/19 00:01,"541 9th St, San Francisco, CA 94016" +307557,Apple Airpods Headphones,1,150,12/16/19 20:11,"717 Forest St, San Francisco, CA 94016" +307558,Wired Headphones,2,11.99,12/20/19 18:08,"816 Ridge St, Boston, MA 02215" +307559,34in Ultrawide Monitor,1,379.99,12/14/19 16:31,"23 Ridge St, New York City, NY 10001" +307560,27in FHD Monitor,1,149.99,12/26/19 19:21,"138 11th St, Austin, TX 73301" +307561,USB-C Charging Cable,1,11.95,12/28/19 23:45,"240 Dogwood St, Portland, ME 04101" +307562,Wired Headphones,1,11.99,12/13/19 15:32,"502 Dogwood St, New York City, NY 10001" +307563,Lightning Charging Cable,1,14.95,12/18/19 09:41,"283 Lake St, Los Angeles, CA 90001" +307564,AAA Batteries (4-pack),1,2.99,12/27/19 11:39,"968 Spruce St, Boston, MA 02215" +307565,Wired Headphones,1,11.99,12/12/19 19:01,"227 South St, New York City, NY 10001" +307566,AA Batteries (4-pack),1,3.84,12/21/19 07:28,"462 Meadow St, Seattle, WA 98101" +307567,ThinkPad Laptop,1,999.99,12/23/19 13:16,"424 Church St, San Francisco, CA 94016" +307568,27in 4K Gaming Monitor,1,389.99,12/31/19 11:45,"754 Lakeview St, Los Angeles, CA 90001" +307569,Wired Headphones,1,11.99,12/29/19 11:01,"429 Lake St, San Francisco, CA 94016" +307570,Apple Airpods Headphones,1,150,12/26/19 12:04,"938 1st St, New York City, NY 10001" +307571,iPhone,1,700,12/23/19 20:32,"791 West St, Boston, MA 02215" +307572,AA Batteries (4-pack),1,3.84,12/20/19 18:58,"992 Sunset St, New York City, NY 10001" +307573,20in Monitor,1,109.99,12/09/19 20:01,"535 Dogwood St, Seattle, WA 98101" +307574,Apple Airpods Headphones,1,150,12/27/19 13:35,"843 1st St, Boston, MA 02215" +307575,AAA Batteries (4-pack),1,2.99,12/03/19 18:56,"533 12th St, Los Angeles, CA 90001" +307576,Wired Headphones,1,11.99,12/08/19 15:06,"736 Cherry St, San Francisco, CA 94016" +307577,AAA Batteries (4-pack),3,2.99,12/19/19 08:56,"802 Spruce St, San Francisco, CA 94016" +307578,AAA Batteries (4-pack),1,2.99,12/10/19 12:38,"644 Cedar St, Los Angeles, CA 90001" +307579,34in Ultrawide Monitor,1,379.99,12/23/19 12:19,"424 Church St, Los Angeles, CA 90001" +307580,Apple Airpods Headphones,1,150,12/24/19 16:35,"974 Main St, San Francisco, CA 94016" +307581,Lightning Charging Cable,1,14.95,12/08/19 17:30,"949 12th St, Boston, MA 02215" +307582,20in Monitor,1,109.99,12/16/19 18:58,"347 Lake St, Los Angeles, CA 90001" +307583,Flatscreen TV,1,300,12/17/19 06:21,"562 7th St, Atlanta, GA 30301" +307584,27in 4K Gaming Monitor,1,389.99,12/10/19 07:59,"742 Madison St, Boston, MA 02215" +307585,27in 4K Gaming Monitor,1,389.99,12/06/19 22:51,"332 7th St, Boston, MA 02215" +307586,Lightning Charging Cable,1,14.95,12/25/19 20:40,"856 Cherry St, San Francisco, CA 94016" +307587,Bose SoundSport Headphones,1,99.99,12/27/19 17:10,"824 Forest St, San Francisco, CA 94016" +307588,USB-C Charging Cable,1,11.95,12/29/19 15:40,"869 Spruce St, New York City, NY 10001" +307589,Apple Airpods Headphones,1,150,12/21/19 18:46,"778 Meadow St, New York City, NY 10001" +307590,AAA Batteries (4-pack),1,2.99,12/17/19 22:24,"465 7th St, Los Angeles, CA 90001" +307591,USB-C Charging Cable,1,11.95,12/12/19 16:50,"986 Hickory St, Boston, MA 02215" +307592,AA Batteries (4-pack),1,3.84,12/25/19 13:22,"169 Sunset St, Atlanta, GA 30301" +307593,USB-C Charging Cable,1,11.95,12/11/19 18:44,"409 Chestnut St, San Francisco, CA 94016" +307594,Bose SoundSport Headphones,1,99.99,12/30/19 21:19,"902 North St, Boston, MA 02215" +307595,Wired Headphones,1,11.99,12/25/19 18:50,"831 Hickory St, San Francisco, CA 94016" +307596,Wired Headphones,1,11.99,12/04/19 15:42,"265 Willow St, San Francisco, CA 94016" +307597,Macbook Pro Laptop,1,1700,12/20/19 15:50,"920 River St, Los Angeles, CA 90001" +307598,Wired Headphones,1,11.99,12/15/19 16:39,"711 Washington St, San Francisco, CA 94016" +307599,Bose SoundSport Headphones,1,99.99,12/30/19 20:27,"586 9th St, Atlanta, GA 30301" +307600,Macbook Pro Laptop,1,1700,12/15/19 18:54,"747 Meadow St, New York City, NY 10001" +307601,AA Batteries (4-pack),1,3.84,12/17/19 16:27,"148 9th St, San Francisco, CA 94016" +307602,AA Batteries (4-pack),3,3.84,12/18/19 14:08,"684 Meadow St, Atlanta, GA 30301" +307603,Lightning Charging Cable,1,14.95,12/15/19 14:48,"532 Walnut St, Boston, MA 02215" +307604,Apple Airpods Headphones,1,150,12/16/19 15:11,"693 Park St, Boston, MA 02215" +307605,Lightning Charging Cable,1,14.95,12/31/19 20:52,"63 Church St, San Francisco, CA 94016" +307606,Wired Headphones,1,11.99,12/06/19 12:18,"141 Lake St, Portland, ME 04101" +307607,AA Batteries (4-pack),1,3.84,12/01/19 23:24,"313 Willow St, Atlanta, GA 30301" +307608,Google Phone,1,600,12/22/19 18:46,"997 2nd St, Los Angeles, CA 90001" +307608,USB-C Charging Cable,1,11.95,12/22/19 18:46,"997 2nd St, Los Angeles, CA 90001" +307609,USB-C Charging Cable,1,11.95,12/22/19 12:34,"850 Jefferson St, Los Angeles, CA 90001" +307610,Apple Airpods Headphones,1,150,12/04/19 12:25,"695 North St, Los Angeles, CA 90001" +307611,Apple Airpods Headphones,1,150,12/17/19 18:19,"280 Walnut St, San Francisco, CA 94016" +307612,ThinkPad Laptop,1,999.99,12/24/19 19:57,"741 11th St, Portland, OR 97035" +307613,iPhone,1,700,12/10/19 17:17,"979 1st St, Los Angeles, CA 90001" +307614,Bose SoundSport Headphones,1,99.99,12/17/19 08:44,"722 Sunset St, Atlanta, GA 30301" +307615,Lightning Charging Cable,1,14.95,12/29/19 11:48,"146 North St, San Francisco, CA 94016" +307616,USB-C Charging Cable,1,11.95,12/01/19 16:51,"401 Jackson St, Boston, MA 02215" +307617,AA Batteries (4-pack),1,3.84,12/05/19 21:18,"433 2nd St, San Francisco, CA 94016" +307618,Bose SoundSport Headphones,1,99.99,12/08/19 14:38,"254 Lake St, Boston, MA 02215" +307619,Flatscreen TV,1,300,12/12/19 18:18,"265 Adams St, Austin, TX 73301" +307620,AA Batteries (4-pack),1,3.84,12/27/19 01:55,"102 Lakeview St, Los Angeles, CA 90001" +307621,Wired Headphones,1,11.99,12/17/19 10:52,"698 West St, Los Angeles, CA 90001" +307622,Macbook Pro Laptop,1,1700,12/01/19 14:14,"388 Pine St, Portland, OR 97035" +307623,AA Batteries (4-pack),1,3.84,12/04/19 21:00,"433 Elm St, Atlanta, GA 30301" +307624,USB-C Charging Cable,1,11.95,12/23/19 16:07,"466 Dogwood St, Los Angeles, CA 90001" +307625,USB-C Charging Cable,1,11.95,12/23/19 14:53,"919 Lakeview St, New York City, NY 10001" +307626,Lightning Charging Cable,1,14.95,12/03/19 17:01,"772 Sunset St, Seattle, WA 98101" +307627,34in Ultrawide Monitor,1,379.99,12/10/19 23:57,"460 Cedar St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +307628,USB-C Charging Cable,1,11.95,12/10/19 12:36,"880 River St, San Francisco, CA 94016" +307629,27in 4K Gaming Monitor,1,389.99,12/29/19 11:39,"682 4th St, San Francisco, CA 94016" +307630,Wired Headphones,1,11.99,12/26/19 12:14,"908 Forest St, Portland, OR 97035" +307631,34in Ultrawide Monitor,1,379.99,12/16/19 06:42,"3 Ridge St, San Francisco, CA 94016" +307632,Lightning Charging Cable,1,14.95,12/04/19 13:23,"43 Lincoln St, New York City, NY 10001" +307633,Lightning Charging Cable,1,14.95,12/16/19 20:47,"746 Jackson St, Boston, MA 02215" +307634,AA Batteries (4-pack),1,3.84,12/14/19 13:09,"906 7th St, New York City, NY 10001" +307635,AA Batteries (4-pack),1,3.84,12/12/19 16:37,"517 Adams St, San Francisco, CA 94016" +307636,27in 4K Gaming Monitor,1,389.99,12/28/19 18:41,"103 Washington St, Seattle, WA 98101" +307637,Lightning Charging Cable,1,14.95,12/06/19 13:28,"202 Washington St, Los Angeles, CA 90001" +307638,Lightning Charging Cable,1,14.95,12/13/19 13:16,"58 12th St, Los Angeles, CA 90001" +307639,iPhone,1,700,12/17/19 15:28,"593 Johnson St, New York City, NY 10001" +307640,ThinkPad Laptop,1,999.99,12/28/19 19:09,"104 Washington St, San Francisco, CA 94016" +307641,Macbook Pro Laptop,1,1700,12/26/19 16:12,"311 Lake St, Atlanta, GA 30301" +307642,USB-C Charging Cable,1,11.95,12/03/19 12:43,"41 13th St, Los Angeles, CA 90001" +307643,AAA Batteries (4-pack),1,2.99,12/15/19 18:37,"50 South St, Los Angeles, CA 90001" +307644,34in Ultrawide Monitor,1,379.99,12/04/19 17:07,"559 Pine St, Dallas, TX 75001" +307645,AA Batteries (4-pack),1,3.84,12/20/19 08:39,"98 4th St, San Francisco, CA 94016" +307646,AA Batteries (4-pack),1,3.84,12/26/19 12:29,"933 Adams St, Portland, OR 97035" +307647,27in FHD Monitor,1,149.99,12/26/19 17:34,"328 Lakeview St, Dallas, TX 75001" +307648,Lightning Charging Cable,1,14.95,12/23/19 16:45,"764 2nd St, San Francisco, CA 94016" +307649,Lightning Charging Cable,1,14.95,12/18/19 21:32,"496 13th St, San Francisco, CA 94016" +307650,AAA Batteries (4-pack),1,2.99,12/10/19 13:36,"261 Washington St, Los Angeles, CA 90001" +307651,AAA Batteries (4-pack),1,2.99,12/18/19 21:41,"687 Chestnut St, New York City, NY 10001" +307652,Lightning Charging Cable,1,14.95,12/19/19 12:05,"401 West St, Los Angeles, CA 90001" +307653,AA Batteries (4-pack),2,3.84,12/07/19 18:51,"582 12th St, San Francisco, CA 94016" +307654,USB-C Charging Cable,2,11.95,12/09/19 23:42,"806 Lakeview St, San Francisco, CA 94016" +307655,Bose SoundSport Headphones,1,99.99,12/07/19 16:12,"741 Adams St, Austin, TX 73301" +307656,Lightning Charging Cable,1,14.95,12/26/19 13:26,"684 Wilson St, Los Angeles, CA 90001" +307657,AAA Batteries (4-pack),1,2.99,12/11/19 21:20,"876 Cherry St, New York City, NY 10001" +307658,USB-C Charging Cable,1,11.95,12/02/19 13:18,"66 12th St, Portland, ME 04101" +307659,AA Batteries (4-pack),2,3.84,12/20/19 21:00,"69 Sunset St, Los Angeles, CA 90001" +307660,27in FHD Monitor,1,149.99,12/26/19 12:10,"848 9th St, Portland, OR 97035" +307661,USB-C Charging Cable,1,11.95,12/03/19 20:38,"318 Cedar St, Seattle, WA 98101" +307662,USB-C Charging Cable,1,11.95,12/09/19 12:59,"125 Adams St, Atlanta, GA 30301" +307663,Bose SoundSport Headphones,1,99.99,12/25/19 09:17,"268 Center St, Boston, MA 02215" +307664,AA Batteries (4-pack),1,3.84,12/16/19 18:30,"880 Cherry St, Los Angeles, CA 90001" +307665,Flatscreen TV,1,300,12/27/19 10:49,"298 Ridge St, Seattle, WA 98101" +307666,USB-C Charging Cable,1,11.95,12/08/19 18:45,"781 Jefferson St, Seattle, WA 98101" +307666,AA Batteries (4-pack),2,3.84,12/08/19 18:45,"781 Jefferson St, Seattle, WA 98101" +307667,USB-C Charging Cable,1,11.95,12/25/19 11:24,"572 Center St, Austin, TX 73301" +307668,20in Monitor,1,109.99,12/09/19 01:02,"27 South St, Atlanta, GA 30301" +307669,Lightning Charging Cable,1,14.95,12/06/19 19:22,"825 12th St, Los Angeles, CA 90001" +307670,Apple Airpods Headphones,1,150,12/25/19 23:27,"183 Center St, Boston, MA 02215" +307671,Apple Airpods Headphones,1,150,12/21/19 15:44,"867 Hill St, Dallas, TX 75001" +307672,iPhone,1,700,12/30/19 16:59,"698 5th St, San Francisco, CA 94016" +307673,ThinkPad Laptop,1,999.99,12/23/19 12:07,"658 Chestnut St, Dallas, TX 75001" +307674,AAA Batteries (4-pack),1,2.99,12/07/19 11:53,"788 Hickory St, Seattle, WA 98101" +307675,AA Batteries (4-pack),1,3.84,12/08/19 17:13,"187 Jackson St, Boston, MA 02215" +307676,Wired Headphones,1,11.99,12/19/19 19:45,"396 Main St, New York City, NY 10001" +307677,Apple Airpods Headphones,1,150,12/13/19 12:44,"540 Adams St, Dallas, TX 75001" +307678,AAA Batteries (4-pack),1,2.99,12/31/19 14:25,"911 Lincoln St, Los Angeles, CA 90001" +307679,USB-C Charging Cable,1,11.95,12/11/19 09:44,"558 14th St, Boston, MA 02215" +307680,USB-C Charging Cable,1,11.95,12/25/19 19:27,"665 Chestnut St, Los Angeles, CA 90001" +307681,USB-C Charging Cable,1,11.95,12/22/19 22:51,"811 Hickory St, Atlanta, GA 30301" +307682,Lightning Charging Cable,1,14.95,12/27/19 06:26,"754 Meadow St, San Francisco, CA 94016" +307683,AA Batteries (4-pack),3,3.84,12/31/19 08:48,"167 12th St, Seattle, WA 98101" +307684,AA Batteries (4-pack),1,3.84,12/04/19 12:51,"364 Center St, Boston, MA 02215" +307685,Lightning Charging Cable,1,14.95,12/15/19 13:36,"759 Main St, Dallas, TX 75001" +307686,Lightning Charging Cable,1,14.95,12/09/19 11:18,"230 Walnut St, San Francisco, CA 94016" +307687,27in 4K Gaming Monitor,1,389.99,12/04/19 11:26,"269 Maple St, Atlanta, GA 30301" +307688,Apple Airpods Headphones,1,150,12/24/19 10:34,"332 North St, Boston, MA 02215" +307689,Lightning Charging Cable,1,14.95,12/18/19 12:41,"145 Walnut St, Los Angeles, CA 90001" +307690,Lightning Charging Cable,1,14.95,12/28/19 10:37,"170 Meadow St, San Francisco, CA 94016" +307691,27in 4K Gaming Monitor,1,389.99,12/02/19 11:16,"28 Lincoln St, New York City, NY 10001" +307692,AA Batteries (4-pack),1,3.84,12/19/19 23:09,"884 Forest St, Seattle, WA 98101" +307693,ThinkPad Laptop,1,999.99,12/26/19 14:08,"12 Park St, New York City, NY 10001" +307694,Wired Headphones,2,11.99,12/18/19 11:54,"748 Lakeview St, Atlanta, GA 30301" +307695,AA Batteries (4-pack),1,3.84,12/25/19 12:58,"598 11th St, Boston, MA 02215" +307696,Wired Headphones,1,11.99,12/10/19 10:26,"431 Main St, Boston, MA 02215" +307697,Flatscreen TV,1,300,12/12/19 19:41,"501 6th St, San Francisco, CA 94016" +307698,Google Phone,1,600,12/31/19 08:33,"748 Walnut St, Boston, MA 02215" +307699,Lightning Charging Cable,1,14.95,12/18/19 10:14,"622 9th St, Los Angeles, CA 90001" +307700,USB-C Charging Cable,1,11.95,12/09/19 17:13,"996 Cherry St, Boston, MA 02215" +307701,27in 4K Gaming Monitor,1,389.99,12/11/19 18:59,"486 8th St, Austin, TX 73301" +307702,Lightning Charging Cable,1,14.95,12/16/19 20:10,"970 10th St, Los Angeles, CA 90001" +307703,USB-C Charging Cable,1,11.95,12/27/19 10:03,"436 Spruce St, San Francisco, CA 94016" +307704,Bose SoundSport Headphones,1,99.99,12/08/19 10:38,"293 13th St, New York City, NY 10001" +307705,USB-C Charging Cable,1,11.95,12/25/19 10:06,"67 Main St, Portland, OR 97035" +307706,Wired Headphones,1,11.99,12/28/19 22:15,"45 Jackson St, Austin, TX 73301" +307707,Apple Airpods Headphones,1,150,12/15/19 10:11,"212 Main St, Austin, TX 73301" +307708,AA Batteries (4-pack),1,3.84,12/20/19 13:17,"259 Chestnut St, Atlanta, GA 30301" +307709,Bose SoundSport Headphones,1,99.99,12/18/19 15:13,"504 Park St, Los Angeles, CA 90001" +307710,AA Batteries (4-pack),2,3.84,12/02/19 09:43,"299 Jefferson St, Seattle, WA 98101" +307711,20in Monitor,1,109.99,12/14/19 12:22,"211 Meadow St, San Francisco, CA 94016" +307712,27in 4K Gaming Monitor,1,389.99,12/17/19 11:29,"426 Sunset St, New York City, NY 10001" +307713,Bose SoundSport Headphones,1,99.99,12/20/19 14:47,"333 2nd St, Atlanta, GA 30301" +307714,27in 4K Gaming Monitor,1,389.99,12/15/19 14:15,"487 Jackson St, New York City, NY 10001" +307715,Apple Airpods Headphones,1,150,12/15/19 11:07,"908 2nd St, Seattle, WA 98101" +307716,Bose SoundSport Headphones,1,99.99,12/08/19 15:23,"954 Washington St, Austin, TX 73301" +307717,AAA Batteries (4-pack),2,2.99,12/09/19 16:19,"648 Washington St, New York City, NY 10001" +307718,USB-C Charging Cable,1,11.95,12/04/19 08:18,"171 Chestnut St, New York City, NY 10001" +307719,Wired Headphones,1,11.99,12/08/19 12:07,"671 13th St, Seattle, WA 98101" +307720,27in FHD Monitor,1,149.99,12/23/19 12:52,"294 River St, Los Angeles, CA 90001" +307721,Apple Airpods Headphones,1,150,12/09/19 18:57,"997 Lake St, Boston, MA 02215" +307722,Bose SoundSport Headphones,1,99.99,12/08/19 11:24,"991 Hill St, Los Angeles, CA 90001" +307723,Wired Headphones,1,11.99,12/16/19 00:14,"324 9th St, Boston, MA 02215" +307724,USB-C Charging Cable,1,11.95,12/14/19 15:18,"533 Maple St, Atlanta, GA 30301" +307725,USB-C Charging Cable,1,11.95,12/06/19 16:15,"344 4th St, Boston, MA 02215" +307726,AA Batteries (4-pack),1,3.84,12/23/19 15:01,"193 Pine St, Seattle, WA 98101" +307727,Bose SoundSport Headphones,1,99.99,12/29/19 14:07,"228 4th St, Austin, TX 73301" +307728,Flatscreen TV,1,300,12/03/19 21:37,"586 2nd St, San Francisco, CA 94016" +307729,AAA Batteries (4-pack),1,2.99,12/15/19 06:41,"277 Walnut St, San Francisco, CA 94016" +307730,Lightning Charging Cable,1,14.95,12/06/19 22:24,"373 Park St, Atlanta, GA 30301" +307731,USB-C Charging Cable,3,11.95,12/13/19 02:49,"356 West St, Dallas, TX 75001" +307732,AAA Batteries (4-pack),2,2.99,12/11/19 20:36,"295 Forest St, San Francisco, CA 94016" +307733,Macbook Pro Laptop,1,1700,12/02/19 14:52,"713 Jefferson St, San Francisco, CA 94016" +307734,AAA Batteries (4-pack),2,2.99,12/15/19 08:37,"10 Meadow St, Austin, TX 73301" +307735,Wired Headphones,1,11.99,12/30/19 14:59,"246 12th St, Atlanta, GA 30301" +307736,Lightning Charging Cable,1,14.95,12/02/19 12:01,"86 Willow St, Boston, MA 02215" +307737,Lightning Charging Cable,1,14.95,12/27/19 11:48,"274 Dogwood St, San Francisco, CA 94016" +307738,Wired Headphones,2,11.99,12/22/19 22:49,"892 Center St, New York City, NY 10001" +307739,USB-C Charging Cable,1,11.95,12/23/19 16:47,"72 5th St, San Francisco, CA 94016" +307740,Apple Airpods Headphones,1,150,12/04/19 13:03,"627 1st St, Boston, MA 02215" +307741,Bose SoundSport Headphones,1,99.99,12/09/19 15:13,"16 4th St, San Francisco, CA 94016" +307742,AA Batteries (4-pack),2,3.84,12/28/19 08:26,"632 West St, San Francisco, CA 94016" +307743,AAA Batteries (4-pack),1,2.99,12/22/19 14:25,"635 Church St, Austin, TX 73301" +307744,AAA Batteries (4-pack),1,2.99,12/14/19 22:07,"568 14th St, New York City, NY 10001" +307745,USB-C Charging Cable,1,11.95,12/12/19 23:40,"99 8th St, Boston, MA 02215" +307746,Wired Headphones,1,11.99,12/20/19 18:06,"758 Highland St, Dallas, TX 75001" +307747,Wired Headphones,1,11.99,12/17/19 17:45,"334 Main St, Austin, TX 73301" +307748,Wired Headphones,1,11.99,12/12/19 21:48,"71 Spruce St, Seattle, WA 98101" +307749,Bose SoundSport Headphones,1,99.99,12/30/19 10:12,"521 10th St, Seattle, WA 98101" +307750,Bose SoundSport Headphones,1,99.99,12/21/19 19:03,"411 7th St, Dallas, TX 75001" +307751,Apple Airpods Headphones,1,150,12/01/19 17:14,"125 Hill St, Los Angeles, CA 90001" +307752,AA Batteries (4-pack),1,3.84,12/24/19 08:55,"364 10th St, New York City, NY 10001" +307753,AA Batteries (4-pack),1,3.84,12/11/19 13:39,"329 12th St, Los Angeles, CA 90001" +307754,AA Batteries (4-pack),1,3.84,12/13/19 14:02,"126 8th St, New York City, NY 10001" +307755,USB-C Charging Cable,1,11.95,12/04/19 08:41,"704 9th St, Boston, MA 02215" +307756,Macbook Pro Laptop,1,1700,12/20/19 11:50,"651 Dogwood St, Boston, MA 02215" +307757,AA Batteries (4-pack),1,3.84,12/20/19 23:52,"747 Wilson St, Boston, MA 02215" +307758,AAA Batteries (4-pack),1,2.99,12/10/19 11:04,"606 Washington St, San Francisco, CA 94016" +307759,Wired Headphones,1,11.99,12/27/19 18:30,"914 10th St, San Francisco, CA 94016" +307760,Wired Headphones,1,11.99,12/10/19 20:05,"934 River St, New York City, NY 10001" +307761,Lightning Charging Cable,1,14.95,12/19/19 18:39,"639 Adams St, Boston, MA 02215" +307762,AA Batteries (4-pack),1,3.84,12/11/19 15:21,"562 Sunset St, San Francisco, CA 94016" +307763,Vareebadd Phone,1,400,12/01/19 16:44,"981 Main St, Seattle, WA 98101" +307764,USB-C Charging Cable,1,11.95,12/14/19 22:46,"889 1st St, New York City, NY 10001" +307765,Apple Airpods Headphones,1,150,12/05/19 11:02,"968 Meadow St, Atlanta, GA 30301" +307766,AAA Batteries (4-pack),1,2.99,12/23/19 13:51,"553 Lakeview St, Seattle, WA 98101" +307767,Lightning Charging Cable,1,14.95,12/24/19 19:00,"648 Cedar St, Dallas, TX 75001" +307768,iPhone,1,700,12/22/19 17:39,"55 North St, Atlanta, GA 30301" +307769,Apple Airpods Headphones,1,150,12/30/19 16:11,"275 Jackson St, Los Angeles, CA 90001" +307770,Lightning Charging Cable,1,14.95,12/06/19 23:25,"32 10th St, San Francisco, CA 94016" +307771,Wired Headphones,1,11.99,12/29/19 10:08,"919 Cedar St, San Francisco, CA 94016" +307772,USB-C Charging Cable,1,11.95,12/18/19 15:11,"868 Pine St, New York City, NY 10001" +307773,AAA Batteries (4-pack),2,2.99,12/05/19 18:19,"270 Forest St, Atlanta, GA 30301" +307774,AA Batteries (4-pack),2,3.84,12/18/19 16:35,"794 Jackson St, New York City, NY 10001" +307775,20in Monitor,1,109.99,12/06/19 00:13,"991 10th St, Los Angeles, CA 90001" +307776,AAA Batteries (4-pack),1,2.99,12/29/19 10:16,"485 Johnson St, Boston, MA 02215" +307777,USB-C Charging Cable,1,11.95,12/24/19 19:25,"720 Lincoln St, Seattle, WA 98101" +307778,Wired Headphones,1,11.99,12/12/19 17:08,"87 1st St, New York City, NY 10001" +307779,iPhone,1,700,12/12/19 14:07,"573 Madison St, New York City, NY 10001" +307779,Lightning Charging Cable,1,14.95,12/12/19 14:07,"573 Madison St, New York City, NY 10001" +307780,AAA Batteries (4-pack),1,2.99,12/19/19 18:51,"180 Spruce St, Atlanta, GA 30301" +307781,AAA Batteries (4-pack),1,2.99,12/25/19 18:37,"801 Cherry St, New York City, NY 10001" +307782,AA Batteries (4-pack),1,3.84,12/23/19 08:40,"181 Chestnut St, San Francisco, CA 94016" +307783,AA Batteries (4-pack),1,3.84,12/31/19 15:05,"91 Main St, Austin, TX 73301" +307784,34in Ultrawide Monitor,1,379.99,12/08/19 12:34,"62 4th St, New York City, NY 10001" +307785,Wired Headphones,1,11.99,12/18/19 19:27,"100 4th St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +307786,Lightning Charging Cable,1,14.95,12/09/19 12:21,"149 Main St, Atlanta, GA 30301" +307787,AA Batteries (4-pack),3,3.84,12/18/19 00:04,"726 Madison St, San Francisco, CA 94016" +307788,AA Batteries (4-pack),1,3.84,12/18/19 17:17,"486 Dogwood St, Seattle, WA 98101" +307789,Wired Headphones,1,11.99,12/09/19 22:01,"226 Highland St, New York City, NY 10001" +307790,Wired Headphones,1,11.99,12/04/19 13:54,"47 Park St, New York City, NY 10001" +307791,Lightning Charging Cable,1,14.95,12/02/19 09:20,"849 Church St, Portland, OR 97035" +307792,AA Batteries (4-pack),1,3.84,12/30/19 17:11,"457 Hill St, San Francisco, CA 94016" +307793,USB-C Charging Cable,1,11.95,12/15/19 20:27,"57 North St, Boston, MA 02215" +307794,Bose SoundSport Headphones,1,99.99,12/24/19 23:56,"247 Lakeview St, Los Angeles, CA 90001" +307795,27in FHD Monitor,1,149.99,12/08/19 10:34,"661 Madison St, Atlanta, GA 30301" +307796,Apple Airpods Headphones,1,150,12/26/19 22:29,"855 8th St, San Francisco, CA 94016" +307797,Apple Airpods Headphones,1,150,12/31/19 15:38,"835 Lakeview St, Atlanta, GA 30301" +307798,27in 4K Gaming Monitor,1,389.99,12/10/19 12:10,"899 Church St, Boston, MA 02215" +307799,AA Batteries (4-pack),2,3.84,12/01/19 23:42,"770 13th St, Los Angeles, CA 90001" +307800,34in Ultrawide Monitor,2,379.99,12/31/19 01:42,"126 2nd St, Los Angeles, CA 90001" +307801,Bose SoundSport Headphones,1,99.99,12/29/19 12:53,"836 Sunset St, Boston, MA 02215" +307802,Lightning Charging Cable,1,14.95,12/16/19 14:51,"744 5th St, Dallas, TX 75001" +307803,Lightning Charging Cable,1,14.95,12/15/19 22:41,"977 Jackson St, New York City, NY 10001" +307804,AAA Batteries (4-pack),3,2.99,12/06/19 21:14,"109 2nd St, Atlanta, GA 30301" +307805,27in FHD Monitor,1,149.99,12/23/19 08:08,"118 Forest St, San Francisco, CA 94016" +307806,27in FHD Monitor,1,149.99,12/17/19 17:06,"690 Cherry St, San Francisco, CA 94016" +307807,AAA Batteries (4-pack),6,2.99,12/07/19 08:26,"632 6th St, Los Angeles, CA 90001" +307808,34in Ultrawide Monitor,1,379.99,12/24/19 21:18,"342 Walnut St, Dallas, TX 75001" +307809,AA Batteries (4-pack),1,3.84,12/13/19 14:16,"538 14th St, San Francisco, CA 94016" +307810,AA Batteries (4-pack),1,3.84,12/03/19 09:45,"315 Lakeview St, Los Angeles, CA 90001" +307811,Bose SoundSport Headphones,1,99.99,12/23/19 15:25,"483 Cedar St, Portland, OR 97035" +307812,AAA Batteries (4-pack),1,2.99,12/30/19 14:05,"899 Main St, Dallas, TX 75001" +307813,ThinkPad Laptop,1,999.99,12/18/19 18:06,"740 Jefferson St, Los Angeles, CA 90001" +307814,Google Phone,1,600,12/23/19 21:01,"895 14th St, San Francisco, CA 94016" +307815,Lightning Charging Cable,2,14.95,12/03/19 19:21,"214 Main St, Dallas, TX 75001" +307816,USB-C Charging Cable,1,11.95,12/29/19 15:36,"9 8th St, San Francisco, CA 94016" +307817,Apple Airpods Headphones,1,150,12/11/19 15:58,"996 Adams St, Portland, ME 04101" +307818,27in FHD Monitor,1,149.99,12/12/19 10:02,"512 8th St, Dallas, TX 75001" +307819,AAA Batteries (4-pack),2,2.99,12/28/19 07:53,"240 Washington St, Dallas, TX 75001" +307820,Lightning Charging Cable,1,14.95,12/01/19 06:46,"736 Sunset St, Boston, MA 02215" +307821,iPhone,1,700,12/18/19 18:54,"984 4th St, New York City, NY 10001" +307822,Wired Headphones,1,11.99,12/12/19 17:26,"146 4th St, San Francisco, CA 94016" +307823,Macbook Pro Laptop,1,1700,12/26/19 16:28,"47 South St, Los Angeles, CA 90001" +307824,Lightning Charging Cable,1,14.95,12/23/19 22:23,"160 Elm St, Seattle, WA 98101" +307825,AA Batteries (4-pack),1,3.84,12/03/19 15:03,"884 Lakeview St, San Francisco, CA 94016" +307826,34in Ultrawide Monitor,1,379.99,12/07/19 21:06,"55 6th St, San Francisco, CA 94016" +307827,Vareebadd Phone,1,400,12/13/19 17:40,"503 Lincoln St, Los Angeles, CA 90001" +307828,Bose SoundSport Headphones,1,99.99,12/29/19 18:33,"590 Dogwood St, Austin, TX 73301" +307829,AAA Batteries (4-pack),2,2.99,12/18/19 20:11,"734 13th St, San Francisco, CA 94016" +307830,Lightning Charging Cable,1,14.95,12/08/19 16:45,"767 Cherry St, Portland, OR 97035" +307831,20in Monitor,1,109.99,12/21/19 17:52,"345 8th St, Boston, MA 02215" +307832,27in FHD Monitor,1,149.99,12/06/19 13:01,"980 Chestnut St, Portland, OR 97035" +307833,Wired Headphones,1,11.99,12/20/19 14:11,"397 6th St, Seattle, WA 98101" +307834,Lightning Charging Cable,1,14.95,12/18/19 11:20,"919 11th St, New York City, NY 10001" +307835,Flatscreen TV,1,300,12/14/19 19:47,"837 West St, Boston, MA 02215" +307836,Apple Airpods Headphones,1,150,12/03/19 10:59,"136 Wilson St, New York City, NY 10001" +307837,Apple Airpods Headphones,1,150,12/01/19 09:59,"805 14th St, San Francisco, CA 94016" +307838,Google Phone,1,600,12/11/19 05:28,"396 Chestnut St, San Francisco, CA 94016" +307839,Lightning Charging Cable,1,14.95,12/19/19 10:55,"238 7th St, New York City, NY 10001" +307840,iPhone,1,700,12/27/19 07:11,"808 Park St, Los Angeles, CA 90001" +307841,Bose SoundSport Headphones,1,99.99,12/22/19 05:32,"272 Lincoln St, San Francisco, CA 94016" +307842,Apple Airpods Headphones,1,150,12/11/19 10:58,"854 Madison St, Los Angeles, CA 90001" +307843,Apple Airpods Headphones,1,150,12/22/19 13:11,"451 Spruce St, New York City, NY 10001" +307844,27in FHD Monitor,1,149.99,12/23/19 12:47,"364 Cedar St, Seattle, WA 98101" +307845,AA Batteries (4-pack),1,3.84,12/25/19 18:36,"728 Washington St, Seattle, WA 98101" +307846,Apple Airpods Headphones,1,150,12/05/19 17:48,"600 Ridge St, Portland, ME 04101" +307847,USB-C Charging Cable,1,11.95,12/27/19 02:21,"89 7th St, San Francisco, CA 94016" +307848,USB-C Charging Cable,1,11.95,12/02/19 12:45,"514 9th St, San Francisco, CA 94016" +307849,Vareebadd Phone,1,400,12/11/19 23:42,"250 Meadow St, San Francisco, CA 94016" +307850,iPhone,1,700,12/19/19 09:13,"986 5th St, Atlanta, GA 30301" +307850,Wired Headphones,1,11.99,12/19/19 09:13,"986 5th St, Atlanta, GA 30301" +307851,AA Batteries (4-pack),1,3.84,12/13/19 20:13,"989 Ridge St, Boston, MA 02215" +307852,Lightning Charging Cable,1,14.95,12/11/19 12:52,"222 Jackson St, Boston, MA 02215" +307853,AA Batteries (4-pack),1,3.84,12/25/19 16:26,"41 2nd St, Seattle, WA 98101" +307854,USB-C Charging Cable,1,11.95,12/18/19 17:39,"984 Hill St, San Francisco, CA 94016" +307855,AAA Batteries (4-pack),1,2.99,12/26/19 10:51,"202 6th St, Los Angeles, CA 90001" +307856,USB-C Charging Cable,1,11.95,12/03/19 13:41,"295 9th St, Los Angeles, CA 90001" +307857,Google Phone,1,600,12/04/19 16:11,"76 Willow St, Seattle, WA 98101" +307858,AAA Batteries (4-pack),1,2.99,12/19/19 11:07,"702 Hill St, Boston, MA 02215" +307859,Apple Airpods Headphones,1,150,12/29/19 18:29,"641 Meadow St, Atlanta, GA 30301" +307860,Google Phone,1,600,12/08/19 10:03,"291 Meadow St, Portland, OR 97035" +307861,Google Phone,1,600,12/12/19 16:39,"821 11th St, Dallas, TX 75001" +307862,20in Monitor,1,109.99,12/14/19 21:18,"556 7th St, Seattle, WA 98101" +307863,20in Monitor,1,109.99,12/24/19 00:39,"849 12th St, Los Angeles, CA 90001" +307864,Lightning Charging Cable,1,14.95,12/13/19 22:39,"304 West St, Boston, MA 02215" +307865,Lightning Charging Cable,1,14.95,12/23/19 23:59,"764 Lakeview St, Seattle, WA 98101" +307866,AA Batteries (4-pack),1,3.84,12/06/19 19:43,"482 Willow St, Los Angeles, CA 90001" +307867,Wired Headphones,1,11.99,12/20/19 21:21,"818 Spruce St, Los Angeles, CA 90001" +307868,Lightning Charging Cable,1,14.95,12/23/19 19:28,"653 Cedar St, San Francisco, CA 94016" +307869,AAA Batteries (4-pack),1,2.99,12/17/19 19:32,"724 South St, Seattle, WA 98101" +307870,iPhone,1,700,12/24/19 09:36,"376 12th St, Los Angeles, CA 90001" +307871,AA Batteries (4-pack),1,3.84,12/19/19 21:29,"35 Hill St, Dallas, TX 75001" +307872,Google Phone,1,600,12/10/19 16:13,"489 Hickory St, Dallas, TX 75001" +307873,AA Batteries (4-pack),2,3.84,12/28/19 22:15,"645 Maple St, Dallas, TX 75001" +307874,Lightning Charging Cable,2,14.95,12/30/19 17:41,"364 Wilson St, Austin, TX 73301" +307875,Bose SoundSport Headphones,1,99.99,12/18/19 14:09,"104 2nd St, Portland, OR 97035" +307876,AA Batteries (4-pack),1,3.84,12/14/19 07:13,"288 4th St, Atlanta, GA 30301" +307877,USB-C Charging Cable,1,11.95,12/16/19 23:45,"386 Center St, New York City, NY 10001" +307878,34in Ultrawide Monitor,1,379.99,12/23/19 13:40,"742 Willow St, New York City, NY 10001" +307879,AA Batteries (4-pack),1,3.84,12/23/19 23:08,"206 Johnson St, Atlanta, GA 30301" +307880,AAA Batteries (4-pack),1,2.99,12/07/19 16:21,"573 6th St, Seattle, WA 98101" +307881,Macbook Pro Laptop,1,1700,12/26/19 13:43,"215 West St, Seattle, WA 98101" +307882,Wired Headphones,1,11.99,12/09/19 00:02,"29 North St, Los Angeles, CA 90001" +307883,USB-C Charging Cable,2,11.95,12/23/19 16:18,"618 Jackson St, Boston, MA 02215" +307884,34in Ultrawide Monitor,1,379.99,12/24/19 14:12,"220 Adams St, Atlanta, GA 30301" +307885,iPhone,1,700,12/03/19 22:26,"973 Lincoln St, New York City, NY 10001" +307885,Lightning Charging Cable,1,14.95,12/03/19 22:26,"973 Lincoln St, New York City, NY 10001" +307886,Apple Airpods Headphones,1,150,12/10/19 16:10,"770 Dogwood St, San Francisco, CA 94016" +307887,USB-C Charging Cable,1,11.95,12/29/19 20:08,"256 13th St, Portland, OR 97035" +307888,34in Ultrawide Monitor,1,379.99,12/22/19 20:26,"63 Walnut St, Los Angeles, CA 90001" +307889,Lightning Charging Cable,1,14.95,12/08/19 16:48,"222 Elm St, New York City, NY 10001" +307890,USB-C Charging Cable,1,11.95,12/23/19 12:15,"877 Main St, Los Angeles, CA 90001" +307891,Bose SoundSport Headphones,1,99.99,12/21/19 09:22,"639 7th St, New York City, NY 10001" +307892,AA Batteries (4-pack),3,3.84,12/10/19 13:01,"963 Lincoln St, Austin, TX 73301" +307893,Wired Headphones,1,11.99,12/08/19 00:31,"258 Hickory St, Los Angeles, CA 90001" +307894,USB-C Charging Cable,1,11.95,12/17/19 12:02,"425 Elm St, New York City, NY 10001" +307895,Lightning Charging Cable,1,14.95,12/01/19 09:02,"619 Cedar St, Seattle, WA 98101" +307896,AA Batteries (4-pack),2,3.84,12/01/19 11:37,"295 14th St, Boston, MA 02215" +307897,Google Phone,1,600,12/15/19 13:21,"312 Ridge St, Dallas, TX 75001" +307898,USB-C Charging Cable,1,11.95,12/24/19 08:42,"681 4th St, Boston, MA 02215" +307899,Lightning Charging Cable,1,14.95,12/16/19 06:53,"399 12th St, Boston, MA 02215" +307900,34in Ultrawide Monitor,1,379.99,12/30/19 00:32,"671 Church St, Los Angeles, CA 90001" +,,,,, +307901,USB-C Charging Cable,1,11.95,12/16/19 21:52,"84 Hill St, Austin, TX 73301" +307902,Macbook Pro Laptop,1,1700,12/16/19 16:37,"817 Park St, San Francisco, CA 94016" +307903,iPhone,1,700,12/26/19 17:49,"174 Highland St, New York City, NY 10001" +307904,USB-C Charging Cable,1,11.95,12/09/19 11:25,"922 1st St, Los Angeles, CA 90001" +307905,AAA Batteries (4-pack),1,2.99,12/27/19 01:32,"407 9th St, New York City, NY 10001" +307906,AA Batteries (4-pack),1,3.84,12/22/19 22:17,"923 Willow St, Seattle, WA 98101" +307906,iPhone,1,700,12/22/19 22:17,"923 Willow St, Seattle, WA 98101" +307907,Lightning Charging Cable,1,14.95,12/30/19 13:10,"392 Elm St, Boston, MA 02215" +307908,Wired Headphones,1,11.99,12/18/19 11:48,"100 North St, Portland, OR 97035" +307909,USB-C Charging Cable,1,11.95,12/10/19 11:21,"50 Highland St, New York City, NY 10001" +307910,AA Batteries (4-pack),2,3.84,12/22/19 12:53,"867 Main St, San Francisco, CA 94016" +307911,ThinkPad Laptop,1,999.99,12/29/19 21:30,"2 River St, Portland, ME 04101" +307912,Bose SoundSport Headphones,1,99.99,12/21/19 14:40,"341 Jefferson St, Portland, OR 97035" +307913,34in Ultrawide Monitor,1,379.99,12/26/19 18:23,"680 2nd St, Atlanta, GA 30301" +307914,iPhone,1,700,12/24/19 10:30,"3 North St, Austin, TX 73301" +307915,iPhone,1,700,12/17/19 07:41,"648 8th St, San Francisco, CA 94016" +307915,Wired Headphones,1,11.99,12/17/19 07:41,"648 8th St, San Francisco, CA 94016" +307916,Bose SoundSport Headphones,1,99.99,12/14/19 20:45,"50 1st St, Dallas, TX 75001" +307917,Macbook Pro Laptop,1,1700,12/04/19 11:54,"121 10th St, San Francisco, CA 94016" +307918,Flatscreen TV,1,300,12/20/19 11:14,"559 2nd St, Dallas, TX 75001" +307919,Lightning Charging Cable,1,14.95,12/29/19 19:23,"521 Dogwood St, New York City, NY 10001" +307919,Apple Airpods Headphones,1,150,12/29/19 19:23,"521 Dogwood St, New York City, NY 10001" +307920,Bose SoundSport Headphones,1,99.99,12/20/19 12:35,"634 West St, Los Angeles, CA 90001" +307921,AAA Batteries (4-pack),2,2.99,12/27/19 11:47,"126 14th St, Seattle, WA 98101" +307922,Apple Airpods Headphones,1,150,12/05/19 11:46,"399 Willow St, Los Angeles, CA 90001" +307923,USB-C Charging Cable,1,11.95,12/02/19 13:49,"7 Lakeview St, New York City, NY 10001" +307924,AA Batteries (4-pack),2,3.84,12/26/19 20:00,"157 Main St, Los Angeles, CA 90001" +307925,ThinkPad Laptop,1,999.99,12/02/19 12:32,"657 7th St, Austin, TX 73301" +307926,AA Batteries (4-pack),2,3.84,12/31/19 20:23,"278 Church St, Atlanta, GA 30301" +307927,Lightning Charging Cable,1,14.95,12/01/19 18:13,"891 Dogwood St, Dallas, TX 75001" +307928,AAA Batteries (4-pack),1,2.99,12/04/19 20:29,"510 Jackson St, Dallas, TX 75001" +307929,USB-C Charging Cable,1,11.95,12/11/19 15:05,"338 Jackson St, New York City, NY 10001" +307930,Lightning Charging Cable,1,14.95,12/16/19 19:00,"972 Madison St, Austin, TX 73301" +307931,iPhone,1,700,12/04/19 12:37,"794 Forest St, New York City, NY 10001" +307931,Lightning Charging Cable,1,14.95,12/04/19 12:37,"794 Forest St, New York City, NY 10001" +307932,USB-C Charging Cable,1,11.95,12/28/19 09:31,"241 Hickory St, Atlanta, GA 30301" +307933,USB-C Charging Cable,1,11.95,12/13/19 18:19,"745 Maple St, San Francisco, CA 94016" +307934,AAA Batteries (4-pack),1,2.99,12/20/19 12:21,"653 Ridge St, Boston, MA 02215" +307935,AAA Batteries (4-pack),1,2.99,12/27/19 16:01,"865 Walnut St, New York City, NY 10001" +307936,AAA Batteries (4-pack),1,2.99,12/02/19 20:25,"53 Jackson St, Los Angeles, CA 90001" +307937,Bose SoundSport Headphones,1,99.99,12/02/19 07:40,"247 13th St, Atlanta, GA 30301" +307938,USB-C Charging Cable,1,11.95,12/02/19 13:45,"482 2nd St, San Francisco, CA 94016" +307939,27in FHD Monitor,1,149.99,12/09/19 12:14,"13 Dogwood St, Portland, OR 97035" +307940,Apple Airpods Headphones,1,150,12/26/19 12:26,"122 Ridge St, Los Angeles, CA 90001" +307941,Macbook Pro Laptop,1,1700,12/31/19 11:31,"161 Lakeview St, Atlanta, GA 30301" +307942,AAA Batteries (4-pack),1,2.99,12/27/19 19:40,"501 1st St, New York City, NY 10001" +307943,AA Batteries (4-pack),1,3.84,12/16/19 22:52,"206 North St, Los Angeles, CA 90001" +307944,34in Ultrawide Monitor,1,379.99,12/14/19 11:39,"506 Adams St, Boston, MA 02215" +307945,Apple Airpods Headphones,1,150,12/11/19 23:34,"937 Cherry St, Los Angeles, CA 90001" +307946,34in Ultrawide Monitor,1,379.99,12/14/19 14:54,"959 River St, Boston, MA 02215" +307947,Macbook Pro Laptop,2,1700,12/06/19 22:03,"414 Park St, Los Angeles, CA 90001" +307948,AAA Batteries (4-pack),1,2.99,12/19/19 11:58,"587 North St, Los Angeles, CA 90001" +307949,27in 4K Gaming Monitor,1,389.99,12/30/19 12:26,"554 Lakeview St, Portland, OR 97035" +307950,Apple Airpods Headphones,1,150,12/05/19 14:09,"241 Center St, Dallas, TX 75001" +307951,Apple Airpods Headphones,2,150,12/09/19 20:40,"742 7th St, San Francisco, CA 94016" +307952,AAA Batteries (4-pack),1,2.99,12/19/19 18:49,"511 Wilson St, Boston, MA 02215" +307953,AAA Batteries (4-pack),1,2.99,12/12/19 15:01,"364 Walnut St, Los Angeles, CA 90001" +307954,20in Monitor,1,109.99,12/01/19 23:08,"885 Sunset St, Boston, MA 02215" +307955,Wired Headphones,1,11.99,12/27/19 20:24,"301 Church St, Boston, MA 02215" +307956,Apple Airpods Headphones,1,150,12/14/19 22:05,"267 Ridge St, Seattle, WA 98101" +307957,Apple Airpods Headphones,1,150,12/12/19 14:58,"498 8th St, Los Angeles, CA 90001" +307958,34in Ultrawide Monitor,1,379.99,12/09/19 22:27,"962 Church St, Los Angeles, CA 90001" +307959,USB-C Charging Cable,1,11.95,12/16/19 14:23,"6 Hickory St, Los Angeles, CA 90001" +307960,Apple Airpods Headphones,1,150,12/30/19 11:52,"364 Hickory St, Dallas, TX 75001" +307961,Wired Headphones,1,11.99,12/21/19 14:44,"815 Wilson St, Los Angeles, CA 90001" +307962,Wired Headphones,2,11.99,12/18/19 13:02,"398 14th St, Dallas, TX 75001" +307963,AA Batteries (4-pack),1,3.84,12/19/19 15:54,"73 6th St, Atlanta, GA 30301" +307964,Bose SoundSport Headphones,1,99.99,12/03/19 18:51,"520 Adams St, San Francisco, CA 94016" +307965,AA Batteries (4-pack),2,3.84,12/24/19 12:46,"430 Pine St, Dallas, TX 75001" +307966,Google Phone,1,600,12/10/19 12:50,"253 South St, New York City, NY 10001" +307967,AA Batteries (4-pack),1,3.84,12/03/19 19:51,"70 Sunset St, New York City, NY 10001" +307968,iPhone,1,700,12/20/19 09:44,"67 13th St, Los Angeles, CA 90001" +307969,AAA Batteries (4-pack),1,2.99,12/08/19 15:03,"513 9th St, San Francisco, CA 94016" +307970,AA Batteries (4-pack),1,3.84,12/31/19 12:01,"841 Cherry St, Seattle, WA 98101" +307970,Bose SoundSport Headphones,1,99.99,12/31/19 12:01,"841 Cherry St, Seattle, WA 98101" +307971,Lightning Charging Cable,1,14.95,12/01/19 20:24,"742 Pine St, San Francisco, CA 94016" +307972,AAA Batteries (4-pack),1,2.99,12/23/19 08:23,"493 River St, Atlanta, GA 30301" +307973,USB-C Charging Cable,1,11.95,12/27/19 15:33,"492 Ridge St, Seattle, WA 98101" +307974,USB-C Charging Cable,1,11.95,12/10/19 23:28,"960 10th St, Boston, MA 02215" +307975,ThinkPad Laptop,1,999.99,12/09/19 13:59,"390 8th St, San Francisco, CA 94016" +307976,Bose SoundSport Headphones,2,99.99,12/19/19 16:19,"680 Park St, Los Angeles, CA 90001" +307977,USB-C Charging Cable,1,11.95,12/31/19 18:26,"997 12th St, Dallas, TX 75001" +307978,27in FHD Monitor,1,149.99,12/17/19 08:52,"594 Forest St, Austin, TX 73301" +307979,27in FHD Monitor,1,149.99,12/13/19 14:27,"3 North St, Seattle, WA 98101" +307980,Flatscreen TV,1,300,12/23/19 22:30,"489 Church St, San Francisco, CA 94016" +307981,Lightning Charging Cable,1,14.95,12/06/19 20:08,"732 Johnson St, Austin, TX 73301" +307982,27in FHD Monitor,1,149.99,12/31/19 20:04,"412 Center St, Boston, MA 02215" +307983,Wired Headphones,1,11.99,12/30/19 21:39,"930 Dogwood St, New York City, NY 10001" +307984,USB-C Charging Cable,1,11.95,12/09/19 12:58,"984 Elm St, Los Angeles, CA 90001" +307985,Lightning Charging Cable,1,14.95,12/21/19 23:21,"757 2nd St, Los Angeles, CA 90001" +307986,Lightning Charging Cable,1,14.95,12/24/19 17:44,"625 11th St, Austin, TX 73301" +307987,Lightning Charging Cable,1,14.95,12/26/19 17:11,"610 Maple St, Seattle, WA 98101" +307988,Wired Headphones,1,11.99,12/10/19 00:55,"998 Meadow St, Seattle, WA 98101" +307989,Bose SoundSport Headphones,1,99.99,12/03/19 17:50,"102 Lincoln St, Los Angeles, CA 90001" +307990,Bose SoundSport Headphones,1,99.99,12/31/19 01:14,"408 Ridge St, San Francisco, CA 94016" +307991,AA Batteries (4-pack),3,3.84,12/20/19 20:18,"443 Madison St, Los Angeles, CA 90001" +307992,ThinkPad Laptop,1,999.99,12/29/19 20:27,"496 Willow St, Portland, OR 97035" +307993,iPhone,1,700,12/06/19 21:20,"70 Walnut St, Los Angeles, CA 90001" +307994,Flatscreen TV,1,300,12/28/19 09:28,"540 South St, San Francisco, CA 94016" +307995,Google Phone,1,600,12/16/19 12:51,"255 Lincoln St, San Francisco, CA 94016" +307996,Vareebadd Phone,1,400,12/16/19 09:38,"72 Park St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +307997,USB-C Charging Cable,1,11.95,12/10/19 14:28,"954 Maple St, Portland, OR 97035" +307998,USB-C Charging Cable,1,11.95,12/31/19 07:23,"247 West St, Los Angeles, CA 90001" +307999,AA Batteries (4-pack),2,3.84,12/02/19 14:43,"360 Elm St, New York City, NY 10001" +308000,AA Batteries (4-pack),1,3.84,12/27/19 19:09,"3 Wilson St, Los Angeles, CA 90001" +308001,34in Ultrawide Monitor,1,379.99,12/02/19 10:56,"143 5th St, Atlanta, GA 30301" +308002,Apple Airpods Headphones,1,150,12/15/19 01:10,"10 Hickory St, Austin, TX 73301" +308003,27in FHD Monitor,1,149.99,12/10/19 20:03,"841 Dogwood St, Atlanta, GA 30301" +308004,Wired Headphones,1,11.99,12/20/19 01:22,"818 5th St, Boston, MA 02215" +308005,iPhone,1,700,12/22/19 16:58,"415 Elm St, Atlanta, GA 30301" +308006,Apple Airpods Headphones,1,150,12/13/19 18:55,"653 1st St, New York City, NY 10001" +308007,27in FHD Monitor,1,149.99,12/08/19 07:41,"973 Lake St, Seattle, WA 98101" +308008,Wired Headphones,1,11.99,12/19/19 14:11,"285 10th St, Los Angeles, CA 90001" +308009,Wired Headphones,1,11.99,12/17/19 18:42,"136 Church St, San Francisco, CA 94016" +308010,27in FHD Monitor,1,149.99,12/20/19 15:12,"226 11th St, San Francisco, CA 94016" +308011,AAA Batteries (4-pack),1,2.99,12/25/19 11:43,"535 Chestnut St, New York City, NY 10001" +308012,Lightning Charging Cable,2,14.95,12/05/19 18:53,"271 Wilson St, Atlanta, GA 30301" +308013,ThinkPad Laptop,1,999.99,12/03/19 19:44,"642 4th St, San Francisco, CA 94016" +308014,Apple Airpods Headphones,1,150,12/14/19 21:11,"687 Meadow St, San Francisco, CA 94016" +308015,ThinkPad Laptop,1,999.99,12/08/19 11:56,"433 Wilson St, Los Angeles, CA 90001" +308016,Apple Airpods Headphones,1,150,12/15/19 21:01,"212 12th St, San Francisco, CA 94016" +308017,iPhone,1,700,12/28/19 11:23,"715 River St, Seattle, WA 98101" +308018,34in Ultrawide Monitor,1,379.99,12/30/19 18:12,"636 Wilson St, Boston, MA 02215" +308019,AAA Batteries (4-pack),3,2.99,12/23/19 11:06,"498 Church St, Los Angeles, CA 90001" +308020,AAA Batteries (4-pack),1,2.99,12/09/19 20:50,"766 Lincoln St, Seattle, WA 98101" +308021,LG Dryer,1,600.0,12/06/19 09:59,"443 1st St, San Francisco, CA 94016" +308022,Google Phone,1,600,12/06/19 11:16,"866 13th St, Dallas, TX 75001" +308023,Bose SoundSport Headphones,1,99.99,12/20/19 22:20,"611 River St, Los Angeles, CA 90001" +308024,Bose SoundSport Headphones,2,99.99,12/22/19 19:42,"629 Adams St, Seattle, WA 98101" +308025,USB-C Charging Cable,1,11.95,12/05/19 14:03,"7 Hickory St, Los Angeles, CA 90001" +308026,Wired Headphones,1,11.99,12/26/19 02:14,"919 Park St, Los Angeles, CA 90001" +308027,Wired Headphones,1,11.99,12/05/19 22:04,"214 Chestnut St, Boston, MA 02215" +308028,Wired Headphones,1,11.99,12/09/19 13:25,"194 10th St, New York City, NY 10001" +308029,Flatscreen TV,1,300,12/11/19 15:42,"236 Ridge St, Seattle, WA 98101" +308030,Lightning Charging Cable,1,14.95,12/20/19 11:23,"231 Forest St, Los Angeles, CA 90001" +308031,Apple Airpods Headphones,1,150,12/10/19 09:29,"327 Main St, San Francisco, CA 94016" +308032,ThinkPad Laptop,1,999.99,12/26/19 19:26,"429 Willow St, Atlanta, GA 30301" +308033,Wired Headphones,1,11.99,12/24/19 06:41,"331 7th St, New York City, NY 10001" +308034,Wired Headphones,1,11.99,12/16/19 16:29,"817 Maple St, San Francisco, CA 94016" +308035,27in FHD Monitor,1,149.99,12/29/19 16:48,"480 7th St, New York City, NY 10001" +308036,Lightning Charging Cable,1,14.95,12/23/19 10:38,"614 Washington St, Atlanta, GA 30301" +308037,Wired Headphones,1,11.99,12/28/19 09:50,"600 12th St, Atlanta, GA 30301" +308038,Wired Headphones,1,11.99,12/27/19 14:57,"749 13th St, San Francisco, CA 94016" +308039,AA Batteries (4-pack),2,3.84,12/01/19 10:06,"848 Lincoln St, Seattle, WA 98101" +308040,Bose SoundSport Headphones,1,99.99,12/24/19 23:00,"192 Walnut St, Portland, OR 97035" +308041,27in FHD Monitor,1,149.99,12/06/19 13:00,"710 South St, Boston, MA 02215" +308042,Lightning Charging Cable,1,14.95,12/21/19 12:43,"963 Lake St, San Francisco, CA 94016" +308043,Wired Headphones,1,11.99,12/23/19 00:23,"770 Park St, Los Angeles, CA 90001" +308044,Wired Headphones,1,11.99,12/28/19 19:04,"192 Cedar St, Boston, MA 02215" +308045,AAA Batteries (4-pack),1,2.99,12/30/19 22:08,"258 Meadow St, Atlanta, GA 30301" +308046,34in Ultrawide Monitor,1,379.99,12/06/19 17:55,"528 Elm St, New York City, NY 10001" +308047,USB-C Charging Cable,1,11.95,12/01/19 18:43,"5 Elm St, Atlanta, GA 30301" +308048,AAA Batteries (4-pack),1,2.99,12/09/19 19:55,"553 Lincoln St, Los Angeles, CA 90001" +308049,Macbook Pro Laptop,1,1700,12/03/19 23:20,"773 Lake St, Portland, OR 97035" +308050,AAA Batteries (4-pack),1,2.99,12/24/19 20:12,"443 Park St, San Francisco, CA 94016" +308051,Lightning Charging Cable,1,14.95,12/13/19 13:18,"830 River St, Austin, TX 73301" +308052,Google Phone,1,600,12/20/19 18:55,"836 Center St, Dallas, TX 75001" +308053,USB-C Charging Cable,1,11.95,12/22/19 09:06,"789 4th St, New York City, NY 10001" +308054,Wired Headphones,2,11.99,12/02/19 11:55,"40 Highland St, San Francisco, CA 94016" +308055,LG Dryer,1,600.0,12/25/19 14:54,"951 North St, Los Angeles, CA 90001" +308056,Apple Airpods Headphones,1,150,12/21/19 14:13,"408 5th St, Dallas, TX 75001" +308057,Lightning Charging Cable,1,14.95,12/25/19 13:51,"1 Adams St, Seattle, WA 98101" +308058,Apple Airpods Headphones,1,150,12/07/19 01:50,"524 7th St, Boston, MA 02215" +308059,34in Ultrawide Monitor,1,379.99,12/05/19 12:23,"370 Pine St, New York City, NY 10001" +308060,AAA Batteries (4-pack),1,2.99,12/28/19 15:35,"32 Lake St, Boston, MA 02215" +308061,AA Batteries (4-pack),2,3.84,12/15/19 21:03,"172 5th St, Dallas, TX 75001" +308062,Lightning Charging Cable,1,14.95,12/15/19 22:08,"580 Center St, Boston, MA 02215" +308063,Bose SoundSport Headphones,1,99.99,12/26/19 08:22,"208 14th St, New York City, NY 10001" +308064,Bose SoundSport Headphones,1,99.99,12/18/19 07:08,"580 Lakeview St, San Francisco, CA 94016" +308065,27in FHD Monitor,1,149.99,12/13/19 17:06,"973 Park St, New York City, NY 10001" +308066,27in FHD Monitor,1,149.99,12/20/19 22:59,"544 Jackson St, Austin, TX 73301" +308067,AA Batteries (4-pack),1,3.84,12/15/19 20:47,"614 12th St, Atlanta, GA 30301" +308068,AA Batteries (4-pack),1,3.84,12/11/19 21:09,"309 Highland St, New York City, NY 10001" +308069,USB-C Charging Cable,1,11.95,12/01/19 07:45,"326 Cedar St, Boston, MA 02215" +308070,Apple Airpods Headphones,1,150,12/24/19 14:37,"124 Wilson St, New York City, NY 10001" +308071,20in Monitor,1,109.99,12/05/19 21:49,"99 11th St, Boston, MA 02215" +308072,AA Batteries (4-pack),1,3.84,12/03/19 17:45,"300 6th St, San Francisco, CA 94016" +308073,Lightning Charging Cable,1,14.95,12/02/19 11:30,"281 Maple St, Los Angeles, CA 90001" +308074,Apple Airpods Headphones,1,150,12/05/19 07:06,"797 Cherry St, San Francisco, CA 94016" +308075,ThinkPad Laptop,1,999.99,12/06/19 16:18,"974 14th St, San Francisco, CA 94016" +308076,AAA Batteries (4-pack),2,2.99,12/24/19 17:32,"708 Hill St, San Francisco, CA 94016" +308077,AA Batteries (4-pack),1,3.84,12/13/19 23:19,"567 Forest St, Los Angeles, CA 90001" +308078,AAA Batteries (4-pack),1,2.99,12/19/19 16:54,"370 Elm St, Dallas, TX 75001" +308079,Lightning Charging Cable,1,14.95,12/07/19 08:26,"250 11th St, Seattle, WA 98101" +308080,Bose SoundSport Headphones,1,99.99,12/28/19 14:31,"756 Elm St, Portland, OR 97035" +308081,AA Batteries (4-pack),1,3.84,12/12/19 11:23,"304 Dogwood St, San Francisco, CA 94016" +308082,AA Batteries (4-pack),2,3.84,12/22/19 01:19,"809 Highland St, San Francisco, CA 94016" +308083,AAA Batteries (4-pack),1,2.99,12/22/19 14:02,"37 Lake St, Boston, MA 02215" +308084,ThinkPad Laptop,1,999.99,12/08/19 22:30,"203 Spruce St, Atlanta, GA 30301" +308085,Apple Airpods Headphones,1,150,12/30/19 07:39,"215 Ridge St, Atlanta, GA 30301" +308086,34in Ultrawide Monitor,1,379.99,12/26/19 16:25,"52 West St, Seattle, WA 98101" +308087,Lightning Charging Cable,1,14.95,12/11/19 12:42,"959 Center St, Atlanta, GA 30301" +308088,Apple Airpods Headphones,1,150,12/31/19 14:18,"817 South St, San Francisco, CA 94016" +308089,34in Ultrawide Monitor,1,379.99,12/29/19 19:58,"22 Cherry St, Los Angeles, CA 90001" +308090,USB-C Charging Cable,1,11.95,12/29/19 13:30,"641 6th St, Boston, MA 02215" +308091,Lightning Charging Cable,1,14.95,12/25/19 19:52,"868 4th St, Boston, MA 02215" +308092,Apple Airpods Headphones,1,150,12/24/19 11:21,"461 4th St, Atlanta, GA 30301" +308093,AA Batteries (4-pack),1,3.84,12/09/19 08:25,"566 14th St, Los Angeles, CA 90001" +308094,AA Batteries (4-pack),1,3.84,12/29/19 16:45,"365 Lake St, San Francisco, CA 94016" +308095,Apple Airpods Headphones,1,150,12/30/19 11:57,"502 Elm St, Portland, OR 97035" +308096,AAA Batteries (4-pack),2,2.99,12/16/19 17:29,"520 14th St, Los Angeles, CA 90001" +308097,USB-C Charging Cable,1,11.95,12/16/19 15:15,"155 Cherry St, Los Angeles, CA 90001" +308098,AA Batteries (4-pack),1,3.84,12/11/19 18:58,"538 10th St, New York City, NY 10001" +308099,iPhone,1,700,12/30/19 12:59,"741 Park St, San Francisco, CA 94016" +308100,34in Ultrawide Monitor,1,379.99,12/19/19 14:40,"803 South St, Los Angeles, CA 90001" +308101,Bose SoundSport Headphones,1,99.99,12/16/19 17:38,"553 Dogwood St, Los Angeles, CA 90001" +308102,AAA Batteries (4-pack),1,2.99,12/18/19 12:40,"472 Washington St, San Francisco, CA 94016" +308103,Lightning Charging Cable,1,14.95,12/09/19 12:41,"769 10th St, San Francisco, CA 94016" +308104,AAA Batteries (4-pack),1,2.99,12/19/19 00:31,"280 Lincoln St, Los Angeles, CA 90001" +308105,Bose SoundSport Headphones,1,99.99,12/19/19 15:44,"739 Chestnut St, Dallas, TX 75001" +308106,27in 4K Gaming Monitor,1,389.99,12/30/19 16:43,"174 2nd St, Atlanta, GA 30301" +308107,AAA Batteries (4-pack),1,2.99,12/19/19 21:08,"956 Cedar St, Seattle, WA 98101" +308108,AA Batteries (4-pack),1,3.84,12/20/19 22:57,"714 Pine St, San Francisco, CA 94016" +308109,Bose SoundSport Headphones,1,99.99,12/06/19 09:41,"641 14th St, Dallas, TX 75001" +308110,Macbook Pro Laptop,1,1700,12/02/19 14:24,"28 2nd St, Portland, OR 97035" +308111,Lightning Charging Cable,1,14.95,12/18/19 18:12,"434 Willow St, Boston, MA 02215" +308112,Apple Airpods Headphones,1,150,12/21/19 21:19,"948 Wilson St, New York City, NY 10001" +308113,27in 4K Gaming Monitor,1,389.99,12/29/19 18:47,"221 Meadow St, San Francisco, CA 94016" +308114,USB-C Charging Cable,1,11.95,12/12/19 10:36,"227 Hill St, San Francisco, CA 94016" +308115,Lightning Charging Cable,3,14.95,12/04/19 13:19,"605 Ridge St, San Francisco, CA 94016" +308116,Wired Headphones,1,11.99,12/21/19 19:51,"45 Church St, Portland, ME 04101" +308117,27in FHD Monitor,1,149.99,12/27/19 20:41,"926 Highland St, Portland, OR 97035" +308118,iPhone,1,700,12/08/19 18:23,"861 Hill St, Los Angeles, CA 90001" +308119,Apple Airpods Headphones,1,150,12/06/19 09:26,"839 West St, Atlanta, GA 30301" +308120,Flatscreen TV,1,300,12/05/19 17:56,"846 Madison St, Dallas, TX 75001" +308121,USB-C Charging Cable,1,11.95,12/17/19 18:13,"573 River St, San Francisco, CA 94016" +308122,USB-C Charging Cable,1,11.95,12/07/19 11:17,"288 7th St, Los Angeles, CA 90001" +308123,AAA Batteries (4-pack),1,2.99,12/28/19 13:57,"632 Adams St, New York City, NY 10001" +308124,Bose SoundSport Headphones,1,99.99,12/05/19 14:32,"78 North St, Atlanta, GA 30301" +308125,ThinkPad Laptop,1,999.99,12/11/19 17:50,"506 Center St, Portland, OR 97035" +308126,Bose SoundSport Headphones,1,99.99,12/10/19 18:05,"810 Jackson St, Los Angeles, CA 90001" +308127,Vareebadd Phone,1,400,12/19/19 15:32,"527 River St, Los Angeles, CA 90001" +308128,Macbook Pro Laptop,1,1700,12/18/19 13:56,"932 14th St, Dallas, TX 75001" +308129,Apple Airpods Headphones,1,150,12/17/19 17:10,"97 14th St, Los Angeles, CA 90001" +308130,AAA Batteries (4-pack),1,2.99,12/22/19 13:10,"949 Spruce St, Austin, TX 73301" +308131,USB-C Charging Cable,1,11.95,12/11/19 08:22,"786 1st St, Boston, MA 02215" +308132,Google Phone,1,600,12/10/19 13:43,"819 8th St, Seattle, WA 98101" +308132,Wired Headphones,1,11.99,12/10/19 13:43,"819 8th St, Seattle, WA 98101" +308133,Lightning Charging Cable,2,14.95,12/25/19 11:41,"966 12th St, Los Angeles, CA 90001" +308134,USB-C Charging Cable,1,11.95,12/08/19 22:13,"182 Cedar St, Boston, MA 02215" +308135,20in Monitor,1,109.99,12/28/19 13:25,"520 Lake St, New York City, NY 10001" +308136,USB-C Charging Cable,1,11.95,12/26/19 15:11,"410 6th St, San Francisco, CA 94016" +308137,AAA Batteries (4-pack),1,2.99,12/06/19 21:32,"727 1st St, San Francisco, CA 94016" +308138,27in FHD Monitor,1,149.99,12/07/19 12:11,"148 Sunset St, Austin, TX 73301" +308139,Wired Headphones,1,11.99,12/25/19 15:23,"210 Cedar St, New York City, NY 10001" +308140,Wired Headphones,1,11.99,12/23/19 18:51,"932 Lincoln St, New York City, NY 10001" +308141,27in 4K Gaming Monitor,1,389.99,12/10/19 15:52,"737 Madison St, Austin, TX 73301" +308142,Flatscreen TV,1,300,12/29/19 07:48,"696 Meadow St, Boston, MA 02215" +308143,AA Batteries (4-pack),1,3.84,12/19/19 12:08,"387 8th St, Austin, TX 73301" +308144,USB-C Charging Cable,1,11.95,12/30/19 17:19,"649 13th St, San Francisco, CA 94016" +308145,Lightning Charging Cable,1,14.95,12/16/19 10:36,"273 10th St, Portland, OR 97035" +308146,USB-C Charging Cable,1,11.95,12/19/19 16:36,"637 Jackson St, San Francisco, CA 94016" +308147,Google Phone,1,600,12/03/19 11:13,"293 7th St, Atlanta, GA 30301" +308147,Lightning Charging Cable,2,14.95,12/03/19 11:13,"293 7th St, Atlanta, GA 30301" +308148,Lightning Charging Cable,1,14.95,12/04/19 13:53,"807 North St, Dallas, TX 75001" +308149,AA Batteries (4-pack),2,3.84,12/14/19 17:06,"774 Spruce St, San Francisco, CA 94016" +308150,AA Batteries (4-pack),2,3.84,12/19/19 07:44,"505 Dogwood St, Los Angeles, CA 90001" +308151,Lightning Charging Cable,1,14.95,12/09/19 14:24,"878 Center St, San Francisco, CA 94016" +308152,Lightning Charging Cable,1,14.95,12/20/19 20:22,"33 Washington St, Boston, MA 02215" +308153,AAA Batteries (4-pack),1,2.99,12/29/19 19:02,"383 12th St, New York City, NY 10001" +308154,ThinkPad Laptop,1,999.99,12/04/19 19:57,"226 Wilson St, Boston, MA 02215" +308155,27in FHD Monitor,1,149.99,12/30/19 10:53,"660 Lake St, New York City, NY 10001" +308156,AA Batteries (4-pack),1,3.84,12/25/19 17:30,"236 10th St, Austin, TX 73301" +308157,ThinkPad Laptop,1,999.99,12/11/19 20:33,"519 Willow St, Los Angeles, CA 90001" +308158,ThinkPad Laptop,1,999.99,12/29/19 18:21,"147 4th St, Austin, TX 73301" +308159,USB-C Charging Cable,1,11.95,12/07/19 10:19,"414 1st St, Seattle, WA 98101" +308160,27in FHD Monitor,1,149.99,12/22/19 11:15,"904 8th St, New York City, NY 10001" +308161,AA Batteries (4-pack),1,3.84,12/10/19 14:00,"537 Sunset St, New York City, NY 10001" +308162,Lightning Charging Cable,1,14.95,12/16/19 13:54,"636 Jefferson St, Boston, MA 02215" +308163,Apple Airpods Headphones,1,150,12/06/19 11:05,"438 Willow St, Boston, MA 02215" +308164,AA Batteries (4-pack),3,3.84,12/13/19 20:42,"71 Lakeview St, Atlanta, GA 30301" +308165,AA Batteries (4-pack),1,3.84,12/05/19 10:23,"262 9th St, Atlanta, GA 30301" +308166,Wired Headphones,1,11.99,12/03/19 10:51,"675 Main St, San Francisco, CA 94016" +308167,Bose SoundSport Headphones,2,99.99,12/25/19 15:05,"168 5th St, San Francisco, CA 94016" +308168,Lightning Charging Cable,1,14.95,12/25/19 06:25,"148 Main St, Seattle, WA 98101" +308169,USB-C Charging Cable,1,11.95,12/05/19 14:09,"228 2nd St, Los Angeles, CA 90001" +308170,27in FHD Monitor,1,149.99,12/23/19 20:27,"937 Maple St, Los Angeles, CA 90001" +308171,USB-C Charging Cable,1,11.95,12/19/19 13:12,"518 Elm St, New York City, NY 10001" +308172,AAA Batteries (4-pack),1,2.99,12/23/19 11:09,"123 5th St, Dallas, TX 75001" +308173,Apple Airpods Headphones,1,150,12/09/19 18:26,"113 Walnut St, San Francisco, CA 94016" +308174,Wired Headphones,1,11.99,12/27/19 12:13,"831 Dogwood St, San Francisco, CA 94016" +308175,AA Batteries (4-pack),1,3.84,12/31/19 10:24,"253 8th St, Los Angeles, CA 90001" +308176,USB-C Charging Cable,1,11.95,12/16/19 23:12,"656 11th St, Atlanta, GA 30301" +308177,Wired Headphones,1,11.99,12/02/19 14:28,"378 12th St, Boston, MA 02215" +308178,AA Batteries (4-pack),1,3.84,12/23/19 21:53,"883 Meadow St, San Francisco, CA 94016" +308179,27in 4K Gaming Monitor,1,389.99,12/04/19 16:19,"477 10th St, Boston, MA 02215" +308180,Lightning Charging Cable,1,14.95,12/02/19 23:08,"675 2nd St, Portland, OR 97035" +308181,Apple Airpods Headphones,1,150,12/04/19 18:42,"591 13th St, San Francisco, CA 94016" +308182,Flatscreen TV,1,300,12/31/19 22:00,"172 Jackson St, San Francisco, CA 94016" +308183,27in FHD Monitor,1,149.99,12/01/19 09:43,"327 9th St, San Francisco, CA 94016" +308184,Apple Airpods Headphones,1,150,12/24/19 22:42,"152 Dogwood St, Boston, MA 02215" +308185,Apple Airpods Headphones,1,150,12/03/19 23:36,"342 Jefferson St, Seattle, WA 98101" +308186,Wired Headphones,2,11.99,12/09/19 00:22,"624 12th St, Dallas, TX 75001" +308187,AA Batteries (4-pack),2,3.84,12/08/19 23:26,"929 12th St, Los Angeles, CA 90001" +308188,AA Batteries (4-pack),1,3.84,12/27/19 21:45,"67 Meadow St, San Francisco, CA 94016" +308189,Apple Airpods Headphones,1,150,12/19/19 06:49,"356 Forest St, Los Angeles, CA 90001" +308190,USB-C Charging Cable,1,11.95,12/27/19 13:00,"418 Dogwood St, New York City, NY 10001" +308191,AAA Batteries (4-pack),2,2.99,12/10/19 00:55,"529 Lake St, New York City, NY 10001" +308192,AA Batteries (4-pack),2,3.84,12/05/19 19:01,"81 Johnson St, Boston, MA 02215" +308193,27in FHD Monitor,1,149.99,12/23/19 11:56,"199 North St, Dallas, TX 75001" +308194,AA Batteries (4-pack),1,3.84,12/21/19 19:31,"373 Main St, San Francisco, CA 94016" +308195,Flatscreen TV,1,300,12/31/19 18:28,"684 Pine St, Boston, MA 02215" +308196,AAA Batteries (4-pack),3,2.99,12/02/19 08:54,"15 Hill St, New York City, NY 10001" +308197,Wired Headphones,1,11.99,12/01/19 19:25,"351 Dogwood St, Dallas, TX 75001" +308198,Lightning Charging Cable,1,14.95,12/21/19 12:16,"714 Walnut St, San Francisco, CA 94016" +308199,34in Ultrawide Monitor,1,379.99,12/16/19 16:43,"432 Cherry St, Seattle, WA 98101" +308200,iPhone,1,700,12/06/19 07:30,"728 Elm St, San Francisco, CA 94016" +308200,Apple Airpods Headphones,1,150,12/06/19 07:30,"728 Elm St, San Francisco, CA 94016" +308200,Bose SoundSport Headphones,1,99.99,12/06/19 07:30,"728 Elm St, San Francisco, CA 94016" +308201,AAA Batteries (4-pack),1,2.99,12/20/19 20:51,"116 9th St, San Francisco, CA 94016" +308202,Lightning Charging Cable,1,14.95,12/10/19 15:27,"637 Sunset St, Boston, MA 02215" +308203,Bose SoundSport Headphones,1,99.99,12/25/19 17:39,"933 Washington St, Seattle, WA 98101" +308204,Lightning Charging Cable,1,14.95,12/15/19 19:15,"166 5th St, Atlanta, GA 30301" +308205,USB-C Charging Cable,1,11.95,12/31/19 09:15,"732 West St, New York City, NY 10001" +308206,Lightning Charging Cable,1,14.95,12/27/19 10:36,"542 11th St, New York City, NY 10001" +308207,Bose SoundSport Headphones,1,99.99,12/16/19 16:02,"48 12th St, New York City, NY 10001" +308208,Wired Headphones,1,11.99,12/09/19 11:12,"700 Meadow St, Los Angeles, CA 90001" +308209,Lightning Charging Cable,1,14.95,12/20/19 16:03,"188 Hickory St, Atlanta, GA 30301" +308210,Flatscreen TV,1,300,12/15/19 16:54,"675 Maple St, Los Angeles, CA 90001" +308211,Wired Headphones,1,11.99,12/10/19 17:23,"608 Maple St, San Francisco, CA 94016" +308212,Google Phone,1,600,12/01/19 23:42,"979 Lincoln St, Los Angeles, CA 90001" +308212,Wired Headphones,1,11.99,12/01/19 23:42,"979 Lincoln St, Los Angeles, CA 90001" +308212,Wired Headphones,1,11.99,12/01/19 23:42,"979 Lincoln St, Los Angeles, CA 90001" +308213,Apple Airpods Headphones,1,150,12/07/19 18:29,"989 Wilson St, New York City, NY 10001" +308214,Google Phone,1,600,12/08/19 19:06,"268 Hickory St, Los Angeles, CA 90001" +308215,27in 4K Gaming Monitor,1,389.99,12/23/19 19:05,"504 Adams St, Seattle, WA 98101" +308216,Wired Headphones,1,11.99,12/25/19 12:17,"448 4th St, San Francisco, CA 94016" +308217,AA Batteries (4-pack),2,3.84,12/27/19 16:58,"565 Highland St, Boston, MA 02215" +308218,Apple Airpods Headphones,1,150,12/25/19 22:44,"252 Pine St, San Francisco, CA 94016" +308219,AAA Batteries (4-pack),1,2.99,12/03/19 05:46,"313 4th St, Dallas, TX 75001" +308220,Wired Headphones,1,11.99,12/30/19 20:50,"92 14th St, New York City, NY 10001" +308221,AA Batteries (4-pack),3,3.84,12/13/19 17:15,"505 Lakeview St, San Francisco, CA 94016" +308222,ThinkPad Laptop,1,999.99,12/06/19 06:53,"360 Church St, New York City, NY 10001" +308223,Apple Airpods Headphones,1,150,12/12/19 15:30,"343 North St, Austin, TX 73301" +308224,USB-C Charging Cable,1,11.95,12/20/19 09:45,"575 4th St, Atlanta, GA 30301" +308225,27in FHD Monitor,1,149.99,12/05/19 18:57,"336 14th St, Boston, MA 02215" +308226,Apple Airpods Headphones,1,150,12/08/19 13:42,"88 Chestnut St, Boston, MA 02215" +308227,AAA Batteries (4-pack),1,2.99,12/14/19 19:42,"767 8th St, New York City, NY 10001" +308228,34in Ultrawide Monitor,1,379.99,12/25/19 20:27,"954 Lincoln St, Los Angeles, CA 90001" +308229,Google Phone,1,600,12/05/19 00:25,"200 7th St, Boston, MA 02215" +308229,USB-C Charging Cable,1,11.95,12/05/19 00:25,"200 7th St, Boston, MA 02215" +308230,iPhone,1,700,12/12/19 20:56,"947 Elm St, Dallas, TX 75001" +308231,Google Phone,1,600,12/11/19 09:01,"857 Walnut St, Seattle, WA 98101" +308231,USB-C Charging Cable,1,11.95,12/11/19 09:01,"857 Walnut St, Seattle, WA 98101" +308232,AAA Batteries (4-pack),5,2.99,12/09/19 10:19,"729 Chestnut St, Atlanta, GA 30301" +308233,AAA Batteries (4-pack),2,2.99,12/22/19 15:57,"735 Chestnut St, San Francisco, CA 94016" +308234,Lightning Charging Cable,1,14.95,12/28/19 20:52,"249 Chestnut St, San Francisco, CA 94016" +308235,LG Washing Machine,1,600.0,12/09/19 15:46,"365 Forest St, New York City, NY 10001" +308236,Lightning Charging Cable,1,14.95,12/26/19 13:36,"963 1st St, Los Angeles, CA 90001" +308237,Lightning Charging Cable,1,14.95,12/14/19 23:51,"210 Wilson St, New York City, NY 10001" +308238,Bose SoundSport Headphones,1,99.99,12/29/19 12:29,"674 Main St, Boston, MA 02215" +308239,AA Batteries (4-pack),2,3.84,12/02/19 20:02,"443 Adams St, Boston, MA 02215" +308240,Google Phone,1,600,12/18/19 14:17,"810 North St, Atlanta, GA 30301" +308241,27in 4K Gaming Monitor,1,389.99,12/27/19 14:40,"278 12th St, New York City, NY 10001" +308242,Google Phone,1,600,12/06/19 21:02,"399 Dogwood St, Austin, TX 73301" +308243,27in 4K Gaming Monitor,1,389.99,12/06/19 15:48,"773 South St, San Francisco, CA 94016" +308244,Apple Airpods Headphones,1,150,12/27/19 20:21,"439 11th St, Boston, MA 02215" +308245,USB-C Charging Cable,1,11.95,12/26/19 14:29,"280 Washington St, Los Angeles, CA 90001" +308245,27in FHD Monitor,1,149.99,12/26/19 14:29,"280 Washington St, Los Angeles, CA 90001" +308246,USB-C Charging Cable,1,11.95,12/31/19 15:09,"738 Lakeview St, San Francisco, CA 94016" +308247,27in FHD Monitor,1,149.99,12/07/19 21:34,"283 Madison St, Los Angeles, CA 90001" +308248,Lightning Charging Cable,1,14.95,12/22/19 21:41,"731 River St, New York City, NY 10001" +308249,Bose SoundSport Headphones,1,99.99,12/31/19 10:59,"322 Johnson St, Boston, MA 02215" +308250,AAA Batteries (4-pack),1,2.99,12/05/19 14:43,"899 Maple St, New York City, NY 10001" +308251,AAA Batteries (4-pack),1,2.99,12/16/19 20:59,"163 Lakeview St, Los Angeles, CA 90001" +308252,Wired Headphones,1,11.99,12/15/19 17:35,"596 7th St, Seattle, WA 98101" +308253,AAA Batteries (4-pack),1,2.99,12/16/19 22:29,"182 Lakeview St, San Francisco, CA 94016" +308254,LG Washing Machine,1,600.0,12/28/19 08:40,"454 Maple St, Atlanta, GA 30301" +308255,AA Batteries (4-pack),1,3.84,12/10/19 15:49,"974 2nd St, San Francisco, CA 94016" +308256,USB-C Charging Cable,1,11.95,12/24/19 09:46,"119 Meadow St, Dallas, TX 75001" +308257,USB-C Charging Cable,1,11.95,12/16/19 17:19,"664 Hill St, Atlanta, GA 30301" +308258,Lightning Charging Cable,1,14.95,12/01/19 11:57,"997 Lincoln St, San Francisco, CA 94016" +308259,Lightning Charging Cable,2,14.95,12/21/19 16:21,"665 Washington St, Portland, ME 04101" +308260,Lightning Charging Cable,1,14.95,12/13/19 13:51,"352 14th St, New York City, NY 10001" +308261,Flatscreen TV,1,300,12/26/19 09:04,"889 7th St, Dallas, TX 75001" +308262,USB-C Charging Cable,1,11.95,12/04/19 22:56,"385 Lake St, New York City, NY 10001" +308263,20in Monitor,1,109.99,12/07/19 10:16,"998 10th St, Boston, MA 02215" +308264,iPhone,1,700,12/08/19 10:53,"145 Elm St, Seattle, WA 98101" +308265,iPhone,1,700,12/21/19 08:10,"761 Center St, Portland, OR 97035" +308265,Wired Headphones,1,11.99,12/21/19 08:10,"761 Center St, Portland, OR 97035" +308266,Apple Airpods Headphones,1,150,12/07/19 04:57,"596 10th St, Atlanta, GA 30301" +308267,Wired Headphones,1,11.99,12/26/19 20:44,"499 Forest St, Boston, MA 02215" +308268,Apple Airpods Headphones,1,150,12/22/19 14:54,"183 9th St, Seattle, WA 98101" +308269,27in 4K Gaming Monitor,1,389.99,12/12/19 07:14,"115 Dogwood St, Atlanta, GA 30301" +308270,Macbook Pro Laptop,1,1700,12/03/19 06:57,"812 Adams St, Atlanta, GA 30301" +308271,Wired Headphones,1,11.99,12/20/19 08:20,"839 Cherry St, Los Angeles, CA 90001" +308272,Apple Airpods Headphones,1,150,12/07/19 19:24,"169 Spruce St, Los Angeles, CA 90001" +308273,Google Phone,1,600,12/02/19 20:14,"557 Forest St, Boston, MA 02215" +308274,USB-C Charging Cable,1,11.95,12/28/19 08:59,"762 Park St, Portland, ME 04101" +308275,Bose SoundSport Headphones,1,99.99,12/13/19 12:56,"506 Hill St, San Francisco, CA 94016" +308276,Apple Airpods Headphones,1,150,12/06/19 20:26,"888 10th St, Dallas, TX 75001" +308277,Lightning Charging Cable,1,14.95,12/22/19 18:53,"216 13th St, Los Angeles, CA 90001" +308278,AA Batteries (4-pack),1,3.84,12/02/19 18:10,"705 10th St, Seattle, WA 98101" +308279,Wired Headphones,1,11.99,12/08/19 22:51,"549 13th St, Boston, MA 02215" +308280,Bose SoundSport Headphones,1,99.99,12/27/19 16:42,"205 1st St, Seattle, WA 98101" +308281,iPhone,1,700,12/03/19 16:41,"790 Johnson St, Dallas, TX 75001" +308282,AAA Batteries (4-pack),2,2.99,12/29/19 10:38,"779 Lakeview St, New York City, NY 10001" +308283,AA Batteries (4-pack),2,3.84,12/08/19 16:00,"37 Forest St, San Francisco, CA 94016" +308284,Vareebadd Phone,1,400,12/18/19 11:36,"405 Lake St, Los Angeles, CA 90001" +308284,USB-C Charging Cable,1,11.95,12/18/19 11:36,"405 Lake St, Los Angeles, CA 90001" +308285,AAA Batteries (4-pack),1,2.99,12/08/19 19:55,"945 Sunset St, Boston, MA 02215" +308286,Bose SoundSport Headphones,1,99.99,12/15/19 22:01,"869 Cherry St, Portland, OR 97035" +308287,34in Ultrawide Monitor,1,379.99,12/08/19 19:18,"17 Willow St, San Francisco, CA 94016" +308288,Lightning Charging Cable,1,14.95,12/31/19 15:16,"406 Wilson St, Los Angeles, CA 90001" +308289,AA Batteries (4-pack),1,3.84,12/26/19 17:50,"701 South St, San Francisco, CA 94016" +308290,Wired Headphones,1,11.99,12/03/19 07:27,"946 1st St, Los Angeles, CA 90001" +308291,Lightning Charging Cable,1,14.95,12/05/19 15:55,"743 North St, Austin, TX 73301" +308292,AAA Batteries (4-pack),1,2.99,12/12/19 18:20,"282 Pine St, San Francisco, CA 94016" +308293,USB-C Charging Cable,1,11.95,12/22/19 13:34,"361 8th St, New York City, NY 10001" +308294,AAA Batteries (4-pack),1,2.99,12/25/19 23:10,"235 11th St, Dallas, TX 75001" +308295,USB-C Charging Cable,1,11.95,12/07/19 21:05,"32 Pine St, Los Angeles, CA 90001" +308296,Lightning Charging Cable,1,14.95,12/05/19 14:02,"676 Wilson St, Boston, MA 02215" +308297,Wired Headphones,1,11.99,12/10/19 20:08,"942 North St, Atlanta, GA 30301" +308298,USB-C Charging Cable,1,11.95,12/31/19 20:01,"698 Lakeview St, San Francisco, CA 94016" +308299,Bose SoundSport Headphones,1,99.99,12/04/19 19:29,"74 Willow St, Atlanta, GA 30301" +308300,AA Batteries (4-pack),2,3.84,12/12/19 13:40,"38 6th St, Boston, MA 02215" +308301,Bose SoundSport Headphones,1,99.99,12/11/19 09:36,"426 Adams St, Seattle, WA 98101" +308302,34in Ultrawide Monitor,1,379.99,12/18/19 14:04,"415 Johnson St, New York City, NY 10001" +308303,USB-C Charging Cable,1,11.95,12/06/19 19:42,"75 Wilson St, San Francisco, CA 94016" +308304,AAA Batteries (4-pack),7,2.99,12/01/19 06:25,"437 Ridge St, Dallas, TX 75001" +308305,Apple Airpods Headphones,1,150,12/08/19 15:48,"531 Cedar St, New York City, NY 10001" +308306,AA Batteries (4-pack),2,3.84,12/03/19 00:40,"472 Jackson St, Seattle, WA 98101" +308307,Lightning Charging Cable,1,14.95,12/13/19 21:58,"491 Jackson St, Los Angeles, CA 90001" +308308,USB-C Charging Cable,1,11.95,12/11/19 23:09,"299 Park St, New York City, NY 10001" +308309,AA Batteries (4-pack),1,3.84,12/28/19 06:23,"154 South St, Boston, MA 02215" +308310,USB-C Charging Cable,1,11.95,12/08/19 11:27,"797 Lake St, Los Angeles, CA 90001" +308311,ThinkPad Laptop,1,999.99,12/15/19 08:26,"948 Lincoln St, Portland, ME 04101" +308312,AA Batteries (4-pack),1,3.84,12/16/19 23:16,"920 Lincoln St, Austin, TX 73301" +308313,AAA Batteries (4-pack),2,2.99,12/13/19 08:16,"900 Cherry St, Boston, MA 02215" +308314,20in Monitor,1,109.99,12/25/19 18:16,"451 2nd St, San Francisco, CA 94016" +308315,34in Ultrawide Monitor,1,379.99,12/24/19 10:25,"819 Johnson St, Seattle, WA 98101" +308316,USB-C Charging Cable,1,11.95,12/09/19 18:06,"1 Park St, Los Angeles, CA 90001" +308317,USB-C Charging Cable,1,11.95,12/22/19 14:27,"444 14th St, Los Angeles, CA 90001" +308318,Apple Airpods Headphones,1,150,12/10/19 17:10,"682 Cherry St, Seattle, WA 98101" +308319,USB-C Charging Cable,1,11.95,12/14/19 12:29,"122 Lake St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +308320,34in Ultrawide Monitor,1,379.99,12/25/19 17:01,"412 Cherry St, San Francisco, CA 94016" +308320,Wired Headphones,1,11.99,12/25/19 17:01,"412 Cherry St, San Francisco, CA 94016" +308321,AA Batteries (4-pack),1,3.84,12/26/19 10:07,"652 Dogwood St, New York City, NY 10001" +308322,Lightning Charging Cable,1,14.95,12/27/19 19:17,"668 12th St, Los Angeles, CA 90001" +308323,Wired Headphones,3,11.99,12/24/19 13:35,"894 4th St, San Francisco, CA 94016" +308324,Apple Airpods Headphones,1,150,12/11/19 21:31,"389 Hill St, Seattle, WA 98101" +308325,ThinkPad Laptop,1,999.99,12/04/19 13:07,"642 Sunset St, Dallas, TX 75001" +308326,34in Ultrawide Monitor,1,379.99,12/21/19 07:40,"854 Forest St, Portland, OR 97035" +308327,34in Ultrawide Monitor,1,379.99,12/20/19 01:39,"457 Church St, New York City, NY 10001" +308328,Google Phone,1,600,12/08/19 10:07,"749 2nd St, Los Angeles, CA 90001" +308329,27in FHD Monitor,1,149.99,12/05/19 13:30,"364 Main St, New York City, NY 10001" +308330,Google Phone,1,600,12/10/19 15:31,"588 Pine St, Los Angeles, CA 90001" +308331,Apple Airpods Headphones,1,150,12/05/19 19:17,"555 Hill St, Boston, MA 02215" +308332,USB-C Charging Cable,2,11.95,12/22/19 18:30,"816 Forest St, Los Angeles, CA 90001" +308333,AAA Batteries (4-pack),1,2.99,12/15/19 21:34,"563 1st St, San Francisco, CA 94016" +308334,USB-C Charging Cable,1,11.95,12/13/19 12:51,"431 13th St, Dallas, TX 75001" +308335,USB-C Charging Cable,1,11.95,12/21/19 14:00,"125 River St, Boston, MA 02215" +308336,AA Batteries (4-pack),1,3.84,12/12/19 15:00,"712 South St, San Francisco, CA 94016" +308337,AA Batteries (4-pack),1,3.84,12/15/19 21:55,"266 North St, New York City, NY 10001" +308338,AAA Batteries (4-pack),1,2.99,12/08/19 18:51,"310 Jackson St, Los Angeles, CA 90001" +308339,AAA Batteries (4-pack),3,2.99,12/22/19 13:03,"660 4th St, Los Angeles, CA 90001" +308340,AA Batteries (4-pack),2,3.84,12/27/19 20:52,"334 Church St, Portland, OR 97035" +308341,27in FHD Monitor,1,149.99,12/13/19 20:40,"572 Wilson St, Los Angeles, CA 90001" +308342,AAA Batteries (4-pack),1,2.99,12/25/19 15:42,"214 Hickory St, Boston, MA 02215" +308343,AA Batteries (4-pack),1,3.84,12/15/19 15:54,"435 Jackson St, Boston, MA 02215" +308344,Lightning Charging Cable,1,14.95,12/06/19 18:54,"810 North St, Seattle, WA 98101" +308345,AAA Batteries (4-pack),2,2.99,12/28/19 08:23,"222 Wilson St, Los Angeles, CA 90001" +308346,AA Batteries (4-pack),1,3.84,12/08/19 19:19,"239 6th St, Austin, TX 73301" +308347,Bose SoundSport Headphones,1,99.99,12/29/19 17:02,"609 Forest St, San Francisco, CA 94016" +308348,27in FHD Monitor,1,149.99,12/24/19 14:13,"608 Hickory St, Los Angeles, CA 90001" +308349,AA Batteries (4-pack),1,3.84,12/29/19 08:28,"535 8th St, New York City, NY 10001" +308350,USB-C Charging Cable,1,11.95,12/31/19 14:42,"910 Church St, Atlanta, GA 30301" +308351,Vareebadd Phone,1,400,12/25/19 20:42,"873 Center St, Portland, OR 97035" +308352,Flatscreen TV,1,300,12/11/19 15:23,"109 Center St, Austin, TX 73301" +308353,27in 4K Gaming Monitor,1,389.99,12/02/19 12:54,"431 Park St, Los Angeles, CA 90001" +308354,AA Batteries (4-pack),2,3.84,12/15/19 22:28,"479 Walnut St, Austin, TX 73301" +308355,Wired Headphones,1,11.99,12/29/19 17:36,"797 Lincoln St, San Francisco, CA 94016" +308356,Lightning Charging Cable,1,14.95,12/12/19 22:27,"9 Adams St, Boston, MA 02215" +308357,AAA Batteries (4-pack),2,2.99,12/13/19 22:51,"837 4th St, Los Angeles, CA 90001" +308358,Wired Headphones,1,11.99,12/11/19 09:38,"42 Lakeview St, Los Angeles, CA 90001" +308359,USB-C Charging Cable,1,11.95,12/25/19 23:31,"826 Lincoln St, San Francisco, CA 94016" +308360,USB-C Charging Cable,1,11.95,12/19/19 13:14,"416 Center St, Dallas, TX 75001" +308361,27in 4K Gaming Monitor,1,389.99,12/09/19 13:48,"33 Lakeview St, San Francisco, CA 94016" +308362,Lightning Charging Cable,1,14.95,12/10/19 14:42,"964 Cedar St, Seattle, WA 98101" +308363,Wired Headphones,2,11.99,12/02/19 18:04,"889 13th St, Boston, MA 02215" +308364,Apple Airpods Headphones,1,150,12/29/19 21:20,"795 Cherry St, Atlanta, GA 30301" +308365,USB-C Charging Cable,1,11.95,12/14/19 09:39,"892 6th St, Portland, OR 97035" +308366,Bose SoundSport Headphones,1,99.99,12/21/19 16:47,"334 4th St, Atlanta, GA 30301" +308367,AAA Batteries (4-pack),1,2.99,12/14/19 23:06,"560 Pine St, New York City, NY 10001" +308368,Bose SoundSport Headphones,1,99.99,12/02/19 07:44,"360 13th St, New York City, NY 10001" +308369,AAA Batteries (4-pack),1,2.99,12/19/19 13:18,"961 11th St, San Francisco, CA 94016" +308370,Lightning Charging Cable,1,14.95,12/21/19 18:31,"573 9th St, Atlanta, GA 30301" +308371,AA Batteries (4-pack),1,3.84,12/26/19 12:11,"230 Main St, Boston, MA 02215" +308372,Lightning Charging Cable,1,14.95,12/24/19 15:01,"910 West St, San Francisco, CA 94016" +308373,Google Phone,1,600,12/26/19 21:27,"678 Willow St, Boston, MA 02215" +308374,AA Batteries (4-pack),1,3.84,12/26/19 08:26,"258 Lake St, New York City, NY 10001" +308375,USB-C Charging Cable,1,11.95,12/03/19 19:38,"313 Wilson St, Atlanta, GA 30301" +308376,Lightning Charging Cable,1,14.95,12/05/19 09:10,"638 Main St, San Francisco, CA 94016" +308377,AA Batteries (4-pack),1,3.84,12/26/19 17:44,"313 Madison St, Seattle, WA 98101" +308378,Macbook Pro Laptop,1,1700,12/23/19 12:14,"155 Cherry St, Portland, OR 97035" +308379,AA Batteries (4-pack),1,3.84,12/10/19 09:13,"34 Elm St, Boston, MA 02215" +308380,Lightning Charging Cable,1,14.95,12/26/19 02:47,"119 Cedar St, San Francisco, CA 94016" +308381,27in 4K Gaming Monitor,1,389.99,12/23/19 16:44,"876 Jefferson St, Los Angeles, CA 90001" +308382,Wired Headphones,1,11.99,12/13/19 21:28,"464 4th St, Los Angeles, CA 90001" +308383,27in FHD Monitor,1,149.99,12/10/19 09:26,"239 Pine St, New York City, NY 10001" +308384,AA Batteries (4-pack),1,3.84,12/01/19 13:12,"222 River St, Seattle, WA 98101" +308385,AA Batteries (4-pack),1,3.84,12/01/19 19:54,"898 Center St, Dallas, TX 75001" +308386,Lightning Charging Cable,1,14.95,12/20/19 07:37,"504 Center St, Boston, MA 02215" +308387,LG Dryer,1,600.0,12/28/19 12:23,"750 9th St, Atlanta, GA 30301" +308388,34in Ultrawide Monitor,1,379.99,12/10/19 13:32,"330 Main St, Dallas, TX 75001" +308389,AA Batteries (4-pack),2,3.84,12/06/19 17:46,"586 Pine St, Atlanta, GA 30301" +308390,USB-C Charging Cable,2,11.95,12/09/19 14:11,"504 Pine St, Portland, OR 97035" +308391,Apple Airpods Headphones,1,150,12/10/19 00:09,"226 Center St, Portland, OR 97035" +308392,AAA Batteries (4-pack),1,2.99,12/18/19 15:04,"59 Maple St, Los Angeles, CA 90001" +308392,Wired Headphones,1,11.99,12/18/19 15:04,"59 Maple St, Los Angeles, CA 90001" +308393,34in Ultrawide Monitor,1,379.99,12/01/19 14:09,"795 6th St, San Francisco, CA 94016" +308394,Wired Headphones,1,11.99,12/20/19 16:50,"194 Johnson St, Austin, TX 73301" +308395,AA Batteries (4-pack),1,3.84,12/18/19 18:12,"89 Walnut St, Atlanta, GA 30301" +308396,Wired Headphones,1,11.99,12/21/19 14:07,"767 Lakeview St, San Francisco, CA 94016" +308397,Apple Airpods Headphones,1,150,12/01/19 19:55,"362 Maple St, Austin, TX 73301" +308398,Apple Airpods Headphones,1,150,12/17/19 23:16,"311 12th St, Seattle, WA 98101" +308399,USB-C Charging Cable,1,11.95,12/19/19 14:02,"628 Walnut St, Boston, MA 02215" +308400,Bose SoundSport Headphones,1,99.99,12/13/19 13:51,"374 Lincoln St, Atlanta, GA 30301" +308401,AA Batteries (4-pack),1,3.84,12/17/19 10:43,"570 Lincoln St, Los Angeles, CA 90001" +308402,AAA Batteries (4-pack),1,2.99,12/28/19 14:18,"981 Willow St, San Francisco, CA 94016" +308403,Wired Headphones,1,11.99,12/25/19 19:40,"941 Hickory St, Los Angeles, CA 90001" +308404,Apple Airpods Headphones,1,150,12/16/19 11:53,"797 Cedar St, Seattle, WA 98101" +308405,AAA Batteries (4-pack),2,2.99,12/30/19 07:09,"992 6th St, San Francisco, CA 94016" +308406,27in 4K Gaming Monitor,1,389.99,12/06/19 14:47,"975 Elm St, Dallas, TX 75001" +308407,Lightning Charging Cable,1,14.95,12/27/19 12:41,"639 Lincoln St, San Francisco, CA 94016" +308408,USB-C Charging Cable,1,11.95,12/09/19 09:24,"707 2nd St, Portland, OR 97035" +308409,Bose SoundSport Headphones,1,99.99,12/14/19 20:45,"588 Highland St, Dallas, TX 75001" +308410,AA Batteries (4-pack),1,3.84,12/14/19 23:17,"299 Cherry St, Los Angeles, CA 90001" +308411,Wired Headphones,1,11.99,12/30/19 13:32,"532 Maple St, Seattle, WA 98101" +308412,Wired Headphones,3,11.99,12/27/19 19:35,"592 Maple St, Dallas, TX 75001" +308413,Bose SoundSport Headphones,1,99.99,12/21/19 23:27,"885 Cherry St, Seattle, WA 98101" +308414,AAA Batteries (4-pack),1,2.99,12/11/19 20:39,"663 14th St, Austin, TX 73301" +308415,27in FHD Monitor,1,149.99,12/24/19 09:28,"568 Center St, Seattle, WA 98101" +308416,iPhone,1,700,12/15/19 20:15,"796 Sunset St, New York City, NY 10001" +308416,Lightning Charging Cable,1,14.95,12/15/19 20:15,"796 Sunset St, New York City, NY 10001" +308417,iPhone,1,700,12/08/19 09:20,"922 Jefferson St, Dallas, TX 75001" +308417,Lightning Charging Cable,1,14.95,12/08/19 09:20,"922 Jefferson St, Dallas, TX 75001" +308418,AAA Batteries (4-pack),1,2.99,12/04/19 19:22,"101 5th St, Austin, TX 73301" +308419,Lightning Charging Cable,1,14.95,12/28/19 09:04,"494 Park St, Los Angeles, CA 90001" +308420,Google Phone,1,600,12/07/19 14:26,"715 Ridge St, New York City, NY 10001" +308421,Wired Headphones,1,11.99,12/13/19 18:30,"800 2nd St, San Francisco, CA 94016" +308422,AAA Batteries (4-pack),1,2.99,12/21/19 14:53,"888 Highland St, Atlanta, GA 30301" +308423,27in 4K Gaming Monitor,1,389.99,12/26/19 19:04,"622 Walnut St, Atlanta, GA 30301" +308424,Wired Headphones,1,11.99,12/04/19 10:37,"187 12th St, San Francisco, CA 94016" +308425,27in FHD Monitor,1,149.99,12/06/19 10:35,"346 Lakeview St, Los Angeles, CA 90001" +308426,ThinkPad Laptop,1,999.99,12/14/19 18:32,"601 Lincoln St, Atlanta, GA 30301" +308427,27in FHD Monitor,1,149.99,12/12/19 19:04,"928 West St, Atlanta, GA 30301" +308428,ThinkPad Laptop,1,999.99,12/21/19 07:38,"615 4th St, Boston, MA 02215" +308429,AA Batteries (4-pack),1,3.84,12/11/19 02:26,"62 1st St, Seattle, WA 98101" +308430,Wired Headphones,1,11.99,12/31/19 01:47,"874 14th St, San Francisco, CA 94016" +308431,27in FHD Monitor,1,149.99,12/27/19 19:27,"410 2nd St, Los Angeles, CA 90001" +308432,Wired Headphones,1,11.99,12/07/19 21:09,"530 Highland St, Dallas, TX 75001" +308433,Flatscreen TV,1,300,12/07/19 17:54,"926 Cherry St, San Francisco, CA 94016" +308434,Wired Headphones,1,11.99,12/26/19 16:16,"94 Hill St, New York City, NY 10001" +308435,27in 4K Gaming Monitor,1,389.99,12/09/19 22:11,"84 Jefferson St, San Francisco, CA 94016" +308436,Bose SoundSport Headphones,1,99.99,12/21/19 18:46,"817 Forest St, New York City, NY 10001" +308437,20in Monitor,1,109.99,12/02/19 22:06,"863 South St, Dallas, TX 75001" +308438,AA Batteries (4-pack),1,3.84,12/11/19 05:58,"456 Maple St, New York City, NY 10001" +308439,Lightning Charging Cable,1,14.95,12/03/19 17:01,"662 14th St, Seattle, WA 98101" +,,,,, +308440,AAA Batteries (4-pack),1,2.99,12/04/19 16:06,"3 Cedar St, Austin, TX 73301" +308441,Wired Headphones,1,11.99,12/27/19 14:37,"391 River St, San Francisco, CA 94016" +308442,AAA Batteries (4-pack),3,2.99,12/12/19 20:19,"421 Washington St, San Francisco, CA 94016" +308443,27in FHD Monitor,1,149.99,12/31/19 18:31,"647 Walnut St, San Francisco, CA 94016" +308444,AA Batteries (4-pack),1,3.84,12/25/19 10:20,"354 4th St, Boston, MA 02215" +308445,Wired Headphones,1,11.99,12/02/19 08:29,"584 Highland St, San Francisco, CA 94016" +308445,27in 4K Gaming Monitor,1,389.99,12/02/19 08:29,"584 Highland St, San Francisco, CA 94016" +308446,USB-C Charging Cable,2,11.95,12/24/19 07:08,"70 Meadow St, Los Angeles, CA 90001" +308447,Lightning Charging Cable,1,14.95,12/02/19 11:19,"69 Adams St, Boston, MA 02215" +308448,Lightning Charging Cable,2,14.95,12/21/19 12:21,"499 Center St, Dallas, TX 75001" +308449,AA Batteries (4-pack),2,3.84,12/31/19 12:41,"830 Hickory St, Los Angeles, CA 90001" +308450,Apple Airpods Headphones,1,150,12/25/19 13:33,"464 Chestnut St, Dallas, TX 75001" +308451,AAA Batteries (4-pack),1,2.99,12/19/19 21:45,"309 Wilson St, Austin, TX 73301" +308452,Lightning Charging Cable,1,14.95,12/23/19 19:57,"367 Lake St, Portland, OR 97035" +308453,Wired Headphones,2,11.99,12/13/19 21:55,"661 Elm St, San Francisco, CA 94016" +308454,Lightning Charging Cable,1,14.95,12/17/19 16:47,"566 Adams St, Portland, OR 97035" +308455,Apple Airpods Headphones,1,150,12/19/19 13:08,"97 Sunset St, Boston, MA 02215" +308456,Lightning Charging Cable,1,14.95,12/18/19 11:58,"623 North St, Dallas, TX 75001" +308457,USB-C Charging Cable,1,11.95,12/07/19 08:19,"687 Wilson St, San Francisco, CA 94016" +308458,AAA Batteries (4-pack),1,2.99,12/31/19 02:17,"893 Lincoln St, New York City, NY 10001" +308459,Apple Airpods Headphones,1,150,12/08/19 22:28,"39 13th St, Atlanta, GA 30301" +308460,34in Ultrawide Monitor,1,379.99,12/19/19 06:51,"318 Hickory St, Boston, MA 02215" +308461,AA Batteries (4-pack),1,3.84,12/31/19 15:10,"872 Spruce St, Boston, MA 02215" +308462,Apple Airpods Headphones,1,150,12/02/19 11:58,"582 Hickory St, Los Angeles, CA 90001" +308462,Lightning Charging Cable,1,14.95,12/02/19 11:58,"582 Hickory St, Los Angeles, CA 90001" +308463,USB-C Charging Cable,2,11.95,12/04/19 13:06,"476 Chestnut St, San Francisco, CA 94016" +308464,AA Batteries (4-pack),1,3.84,12/15/19 16:04,"706 4th St, Los Angeles, CA 90001" +308465,Apple Airpods Headphones,1,150,12/14/19 23:13,"648 Lincoln St, Los Angeles, CA 90001" +308466,Wired Headphones,1,11.99,12/27/19 11:21,"327 5th St, Dallas, TX 75001" +308467,Bose SoundSport Headphones,1,99.99,12/21/19 15:11,"193 River St, Atlanta, GA 30301" +308468,27in FHD Monitor,1,149.99,12/10/19 08:42,"814 Lincoln St, San Francisco, CA 94016" +308469,USB-C Charging Cable,1,11.95,12/24/19 10:39,"729 Lake St, New York City, NY 10001" +308470,USB-C Charging Cable,1,11.95,12/28/19 12:49,"531 7th St, Atlanta, GA 30301" +308471,AA Batteries (4-pack),1,3.84,12/23/19 20:16,"751 Maple St, Austin, TX 73301" +308471,Macbook Pro Laptop,1,1700,12/23/19 20:16,"751 Maple St, Austin, TX 73301" +308472,AA Batteries (4-pack),1,3.84,12/18/19 09:20,"527 Hill St, Los Angeles, CA 90001" +308473,AA Batteries (4-pack),1,3.84,12/05/19 14:57,"362 Johnson St, San Francisco, CA 94016" +308474,AA Batteries (4-pack),1,3.84,12/04/19 14:09,"31 Main St, Atlanta, GA 30301" +308475,27in 4K Gaming Monitor,1,389.99,12/02/19 14:02,"374 Ridge St, Dallas, TX 75001" +308476,Google Phone,1,600,12/23/19 11:18,"921 Elm St, Los Angeles, CA 90001" +308477,Apple Airpods Headphones,1,150,12/14/19 16:02,"871 Highland St, New York City, NY 10001" +308478,AAA Batteries (4-pack),1,2.99,12/25/19 00:09,"432 13th St, Los Angeles, CA 90001" +308479,Apple Airpods Headphones,1,150,12/27/19 14:53,"765 Willow St, San Francisco, CA 94016" +308480,Apple Airpods Headphones,1,150,12/18/19 06:45,"229 Chestnut St, San Francisco, CA 94016" +308480,Apple Airpods Headphones,1,150,12/18/19 06:45,"229 Chestnut St, San Francisco, CA 94016" +308481,Wired Headphones,1,11.99,12/19/19 18:50,"430 Hickory St, San Francisco, CA 94016" +308482,Wired Headphones,1,11.99,12/13/19 11:27,"67 Madison St, Seattle, WA 98101" +308483,USB-C Charging Cable,1,11.95,12/26/19 12:31,"896 Chestnut St, New York City, NY 10001" +308484,AAA Batteries (4-pack),1,2.99,12/29/19 21:25,"116 Church St, Atlanta, GA 30301" +308485,USB-C Charging Cable,1,11.95,12/01/19 11:08,"927 13th St, New York City, NY 10001" +308486,27in 4K Gaming Monitor,1,389.99,12/06/19 21:12,"736 Spruce St, Los Angeles, CA 90001" +308487,Lightning Charging Cable,1,14.95,12/07/19 22:47,"914 Willow St, Los Angeles, CA 90001" +308488,Apple Airpods Headphones,1,150,12/27/19 16:58,"229 Lake St, San Francisco, CA 94016" +308489,Google Phone,1,600,12/18/19 16:57,"996 Forest St, Boston, MA 02215" +308489,Bose SoundSport Headphones,1,99.99,12/18/19 16:57,"996 Forest St, Boston, MA 02215" +308490,AA Batteries (4-pack),1,3.84,12/03/19 15:57,"970 Hickory St, San Francisco, CA 94016" +308491,USB-C Charging Cable,2,11.95,12/26/19 09:07,"576 Center St, Los Angeles, CA 90001" +308492,USB-C Charging Cable,1,11.95,12/08/19 16:09,"479 Cedar St, Atlanta, GA 30301" +308493,Wired Headphones,1,11.99,12/27/19 17:54,"72 13th St, Dallas, TX 75001" +308494,Lightning Charging Cable,1,14.95,12/24/19 17:24,"347 Washington St, Los Angeles, CA 90001" +308495,AAA Batteries (4-pack),2,2.99,12/24/19 12:49,"175 Adams St, New York City, NY 10001" +308496,AAA Batteries (4-pack),3,2.99,12/22/19 23:35,"405 13th St, Portland, ME 04101" +308497,27in FHD Monitor,1,149.99,12/02/19 12:22,"650 Pine St, Portland, OR 97035" +308498,Lightning Charging Cable,1,14.95,12/25/19 12:58,"451 Pine St, Los Angeles, CA 90001" +308499,AAA Batteries (4-pack),2,2.99,12/29/19 19:57,"838 Adams St, Atlanta, GA 30301" +308500,AA Batteries (4-pack),1,3.84,12/18/19 19:36,"779 Dogwood St, San Francisco, CA 94016" +308501,USB-C Charging Cable,1,11.95,12/04/19 14:04,"346 Chestnut St, Los Angeles, CA 90001" +308502,Bose SoundSport Headphones,1,99.99,12/30/19 14:35,"860 Spruce St, San Francisco, CA 94016" +308503,Vareebadd Phone,1,400,12/15/19 10:13,"727 Walnut St, San Francisco, CA 94016" +308503,USB-C Charging Cable,1,11.95,12/15/19 10:13,"727 Walnut St, San Francisco, CA 94016" +308504,Wired Headphones,1,11.99,12/09/19 08:58,"610 Wilson St, San Francisco, CA 94016" +308505,Lightning Charging Cable,1,14.95,12/31/19 08:24,"128 Main St, Portland, ME 04101" +308506,AA Batteries (4-pack),1,3.84,12/20/19 17:58,"184 Johnson St, San Francisco, CA 94016" +308507,AA Batteries (4-pack),1,3.84,12/09/19 11:41,"101 North St, Atlanta, GA 30301" +308508,Wired Headphones,1,11.99,12/10/19 20:10,"91 Dogwood St, New York City, NY 10001" +308509,Apple Airpods Headphones,1,150,12/19/19 12:50,"239 11th St, San Francisco, CA 94016" +308510,27in FHD Monitor,1,149.99,12/14/19 16:51,"434 11th St, New York City, NY 10001" +308511,Wired Headphones,1,11.99,12/24/19 18:40,"551 Elm St, San Francisco, CA 94016" +308512,Bose SoundSport Headphones,1,99.99,12/10/19 20:31,"46 7th St, San Francisco, CA 94016" +308513,USB-C Charging Cable,1,11.95,12/26/19 15:57,"646 South St, Boston, MA 02215" +308514,Wired Headphones,1,11.99,12/17/19 11:10,"795 Cherry St, San Francisco, CA 94016" +308515,AA Batteries (4-pack),1,3.84,12/01/19 14:56,"838 10th St, New York City, NY 10001" +308516,Lightning Charging Cable,1,14.95,12/04/19 23:49,"111 9th St, Dallas, TX 75001" +308517,Apple Airpods Headphones,1,150,12/29/19 19:14,"202 Willow St, New York City, NY 10001" +308518,LG Dryer,1,600.0,12/11/19 18:47,"276 Jefferson St, San Francisco, CA 94016" +308519,Google Phone,1,600,12/16/19 17:50,"89 West St, Los Angeles, CA 90001" +308520,27in 4K Gaming Monitor,1,389.99,12/22/19 16:49,"843 Ridge St, Boston, MA 02215" +308521,Apple Airpods Headphones,1,150,12/17/19 16:16,"612 Johnson St, Los Angeles, CA 90001" +308522,AAA Batteries (4-pack),1,2.99,12/20/19 12:14,"593 7th St, Seattle, WA 98101" +308523,Lightning Charging Cable,1,14.95,12/25/19 15:18,"262 Washington St, Dallas, TX 75001" +308524,iPhone,1,700,12/25/19 12:12,"815 5th St, San Francisco, CA 94016" +308525,Apple Airpods Headphones,1,150,12/24/19 09:02,"168 Maple St, Portland, OR 97035" +308526,AA Batteries (4-pack),1,3.84,12/14/19 06:08,"578 Lakeview St, Boston, MA 02215" +308527,34in Ultrawide Monitor,1,379.99,12/28/19 15:49,"499 13th St, Seattle, WA 98101" +308528,Lightning Charging Cable,1,14.95,12/04/19 09:33,"30 Wilson St, San Francisco, CA 94016" +308529,27in FHD Monitor,1,149.99,12/29/19 14:07,"270 6th St, San Francisco, CA 94016" +308530,AAA Batteries (4-pack),1,2.99,12/02/19 14:11,"238 1st St, Portland, OR 97035" +308531,iPhone,1,700,12/20/19 16:08,"907 Chestnut St, Atlanta, GA 30301" +308531,Lightning Charging Cable,1,14.95,12/20/19 16:08,"907 Chestnut St, Atlanta, GA 30301" +308532,34in Ultrawide Monitor,1,379.99,12/15/19 16:36,"314 Park St, Dallas, TX 75001" +308533,AA Batteries (4-pack),1,3.84,12/28/19 22:05,"3 Walnut St, San Francisco, CA 94016" +308534,USB-C Charging Cable,1,11.95,12/17/19 13:12,"836 River St, San Francisco, CA 94016" +308535,Apple Airpods Headphones,1,150,12/18/19 17:26,"764 6th St, San Francisco, CA 94016" +308536,AAA Batteries (4-pack),1,2.99,12/19/19 21:55,"198 14th St, Boston, MA 02215" +308537,AA Batteries (4-pack),1,3.84,12/19/19 20:39,"61 14th St, Seattle, WA 98101" +308538,Apple Airpods Headphones,1,150,12/23/19 22:57,"564 Meadow St, Boston, MA 02215" +308539,Lightning Charging Cable,1,14.95,12/17/19 17:54,"279 11th St, San Francisco, CA 94016" +308540,Bose SoundSport Headphones,1,99.99,12/19/19 08:56,"556 South St, San Francisco, CA 94016" +308541,Macbook Pro Laptop,1,1700,12/09/19 22:47,"73 West St, Atlanta, GA 30301" +308542,Lightning Charging Cable,1,14.95,12/07/19 12:34,"42 River St, New York City, NY 10001" +308543,USB-C Charging Cable,1,11.95,12/30/19 19:06,"631 Dogwood St, Seattle, WA 98101" +308544,Lightning Charging Cable,1,14.95,12/24/19 15:53,"966 Hill St, New York City, NY 10001" +308545,ThinkPad Laptop,1,999.99,12/11/19 08:28,"114 Jefferson St, San Francisco, CA 94016" +308546,Flatscreen TV,1,300,12/13/19 16:30,"871 River St, New York City, NY 10001" +308547,Google Phone,1,600,12/28/19 10:39,"129 Meadow St, Seattle, WA 98101" +308547,USB-C Charging Cable,1,11.95,12/28/19 10:39,"129 Meadow St, Seattle, WA 98101" +308548,USB-C Charging Cable,1,11.95,12/11/19 21:51,"717 Jackson St, Boston, MA 02215" +308549,AAA Batteries (4-pack),1,2.99,12/02/19 14:33,"518 6th St, Los Angeles, CA 90001" +308550,USB-C Charging Cable,1,11.95,12/31/19 01:56,"233 Cherry St, Los Angeles, CA 90001" +308551,iPhone,1,700,12/02/19 18:26,"806 7th St, Atlanta, GA 30301" +308551,Lightning Charging Cable,1,14.95,12/02/19 18:26,"806 7th St, Atlanta, GA 30301" +308552,Lightning Charging Cable,1,14.95,12/13/19 16:53,"312 Dogwood St, New York City, NY 10001" +308553,Apple Airpods Headphones,1,150,12/27/19 13:53,"182 Highland St, Los Angeles, CA 90001" +308554,AA Batteries (4-pack),3,3.84,12/28/19 18:25,"148 River St, Los Angeles, CA 90001" +308555,AAA Batteries (4-pack),1,2.99,12/15/19 20:43,"608 Meadow St, San Francisco, CA 94016" +308556,Wired Headphones,1,11.99,12/23/19 18:18,"334 North St, San Francisco, CA 94016" +308557,Google Phone,1,600,12/22/19 19:18,"32 7th St, Los Angeles, CA 90001" +308558,Apple Airpods Headphones,1,150,12/21/19 16:31,"566 Park St, San Francisco, CA 94016" +308559,Apple Airpods Headphones,1,150,12/23/19 17:34,"622 1st St, Dallas, TX 75001" +308560,Google Phone,1,600,12/04/19 22:21,"134 South St, Austin, TX 73301" +308560,Wired Headphones,2,11.99,12/04/19 22:21,"134 South St, Austin, TX 73301" +308561,Vareebadd Phone,1,400,12/17/19 17:27,"10 1st St, Los Angeles, CA 90001" +308562,ThinkPad Laptop,1,999.99,12/25/19 22:47,"127 Hickory St, San Francisco, CA 94016" +308563,USB-C Charging Cable,1,11.95,12/27/19 16:12,"468 13th St, Los Angeles, CA 90001" +308564,34in Ultrawide Monitor,1,379.99,12/17/19 17:50,"919 Cedar St, San Francisco, CA 94016" +308565,Wired Headphones,1,11.99,12/06/19 17:53,"518 14th St, New York City, NY 10001" +308566,Wired Headphones,1,11.99,12/20/19 01:02,"242 Hill St, Portland, OR 97035" +308567,Google Phone,1,600,12/15/19 20:21,"755 Church St, Portland, OR 97035" +308568,AAA Batteries (4-pack),1,2.99,12/07/19 21:17,"357 Chestnut St, San Francisco, CA 94016" +308569,Lightning Charging Cable,1,14.95,12/22/19 20:51,"762 South St, Los Angeles, CA 90001" +308570,Lightning Charging Cable,1,14.95,12/28/19 12:13,"60 Pine St, Los Angeles, CA 90001" +308571,20in Monitor,1,109.99,12/30/19 11:55,"270 Lake St, Atlanta, GA 30301" +308572,27in FHD Monitor,1,149.99,12/24/19 16:35,"155 Willow St, Los Angeles, CA 90001" +308573,AAA Batteries (4-pack),1,2.99,12/30/19 15:05,"970 Church St, New York City, NY 10001" +308574,AA Batteries (4-pack),1,3.84,12/13/19 15:56,"11 Maple St, Los Angeles, CA 90001" +308575,USB-C Charging Cable,1,11.95,12/30/19 20:20,"479 Elm St, Boston, MA 02215" +308576,AAA Batteries (4-pack),1,2.99,12/13/19 18:54,"377 6th St, San Francisco, CA 94016" +308577,AA Batteries (4-pack),2,3.84,12/10/19 12:39,"60 Highland St, Atlanta, GA 30301" +308578,USB-C Charging Cable,1,11.95,12/04/19 22:49,"170 South St, Los Angeles, CA 90001" +308579,Flatscreen TV,1,300,12/12/19 13:20,"728 12th St, Los Angeles, CA 90001" +308580,Lightning Charging Cable,1,14.95,12/04/19 09:35,"81 Highland St, San Francisco, CA 94016" +308581,Google Phone,1,600,12/16/19 11:45,"335 2nd St, Portland, OR 97035" +308581,34in Ultrawide Monitor,1,379.99,12/16/19 11:45,"335 2nd St, Portland, OR 97035" +308582,AAA Batteries (4-pack),1,2.99,12/23/19 07:21,"218 Chestnut St, Austin, TX 73301" +308583,34in Ultrawide Monitor,1,379.99,12/29/19 11:34,"869 Forest St, Los Angeles, CA 90001" +308584,Wired Headphones,1,11.99,12/30/19 11:13,"515 Hill St, Atlanta, GA 30301" +308585,20in Monitor,2,109.99,12/05/19 04:57,"770 Lincoln St, Los Angeles, CA 90001" +308586,ThinkPad Laptop,1,999.99,12/31/19 07:42,"844 Pine St, Boston, MA 02215" +308587,Bose SoundSport Headphones,1,99.99,12/21/19 08:22,"204 Main St, Los Angeles, CA 90001" +308588,Wired Headphones,1,11.99,12/22/19 05:32,"942 Walnut St, San Francisco, CA 94016" +308589,AAA Batteries (4-pack),1,2.99,12/31/19 18:28,"176 Hill St, San Francisco, CA 94016" +308590,27in FHD Monitor,1,149.99,12/21/19 12:29,"733 Cherry St, Portland, OR 97035" +308591,AAA Batteries (4-pack),2,2.99,12/24/19 10:15,"525 Church St, Los Angeles, CA 90001" +308592,27in FHD Monitor,1,149.99,12/18/19 21:20,"137 Spruce St, Los Angeles, CA 90001" +308593,27in FHD Monitor,1,149.99,12/04/19 22:33,"273 Center St, Dallas, TX 75001" +308594,AA Batteries (4-pack),2,3.84,12/14/19 21:51,"224 River St, New York City, NY 10001" +308595,Wired Headphones,1,11.99,12/06/19 22:34,"144 11th St, San Francisco, CA 94016" +308596,USB-C Charging Cable,1,11.95,12/24/19 12:52,"544 Church St, Dallas, TX 75001" +308597,Lightning Charging Cable,1,14.95,12/07/19 21:02,"4 Cedar St, Los Angeles, CA 90001" +308598,Bose SoundSport Headphones,1,99.99,12/07/19 12:42,"441 Center St, Los Angeles, CA 90001" +308599,AAA Batteries (4-pack),1,2.99,12/24/19 12:33,"215 Lakeview St, Los Angeles, CA 90001" +308600,AAA Batteries (4-pack),1,2.99,12/09/19 19:00,"766 Maple St, Atlanta, GA 30301" +308601,Lightning Charging Cable,2,14.95,12/25/19 10:41,"323 Jefferson St, Dallas, TX 75001" +308602,Lightning Charging Cable,1,14.95,12/12/19 21:35,"441 Walnut St, Boston, MA 02215" +308603,27in FHD Monitor,1,149.99,12/31/19 21:38,"79 5th St, Boston, MA 02215" +308604,AA Batteries (4-pack),1,3.84,12/06/19 23:06,"445 Main St, San Francisco, CA 94016" +308605,27in FHD Monitor,1,149.99,12/02/19 23:24,"571 Meadow St, Los Angeles, CA 90001" +308606,Lightning Charging Cable,1,14.95,12/06/19 20:42,"692 8th St, Los Angeles, CA 90001" +308607,27in FHD Monitor,1,149.99,12/07/19 07:10,"72 Center St, Los Angeles, CA 90001" +308608,Google Phone,1,600,12/22/19 14:00,"436 Sunset St, New York City, NY 10001" +308609,AAA Batteries (4-pack),1,2.99,12/21/19 18:45,"853 Center St, San Francisco, CA 94016" +308610,AAA Batteries (4-pack),1,2.99,12/14/19 14:21,"842 Main St, San Francisco, CA 94016" +308611,27in FHD Monitor,1,149.99,12/20/19 08:38,"227 Chestnut St, New York City, NY 10001" +308612,USB-C Charging Cable,1,11.95,12/05/19 17:42,"352 11th St, San Francisco, CA 94016" +308613,Lightning Charging Cable,1,14.95,12/17/19 10:51,"563 10th St, New York City, NY 10001" +308614,AAA Batteries (4-pack),1,2.99,12/28/19 19:24,"668 Highland St, Los Angeles, CA 90001" +308615,Wired Headphones,1,11.99,12/04/19 14:13,"482 Elm St, San Francisco, CA 94016" +308616,20in Monitor,1,109.99,12/04/19 08:28,"503 5th St, Portland, OR 97035" +308617,Lightning Charging Cable,1,14.95,12/09/19 12:35,"727 Chestnut St, Los Angeles, CA 90001" +308618,Bose SoundSport Headphones,1,99.99,12/23/19 22:45,"747 Walnut St, Los Angeles, CA 90001" +308619,USB-C Charging Cable,1,11.95,12/09/19 20:57,"497 10th St, Portland, OR 97035" +308620,Lightning Charging Cable,1,14.95,12/19/19 17:11,"841 North St, Seattle, WA 98101" +308621,AAA Batteries (4-pack),2,2.99,12/20/19 08:59,"735 South St, New York City, NY 10001" +308622,iPhone,1,700,12/18/19 12:27,"213 Chestnut St, New York City, NY 10001" +308622,Lightning Charging Cable,2,14.95,12/18/19 12:27,"213 Chestnut St, New York City, NY 10001" +308623,Lightning Charging Cable,1,14.95,12/01/19 13:36,"29 4th St, Seattle, WA 98101" +308624,AAA Batteries (4-pack),1,2.99,12/22/19 19:03,"393 Jackson St, Los Angeles, CA 90001" +308625,ThinkPad Laptop,1,999.99,12/07/19 13:45,"367 11th St, Atlanta, GA 30301" +308626,Google Phone,1,600,12/09/19 17:47,"537 North St, Los Angeles, CA 90001" +308627,AAA Batteries (4-pack),2,2.99,12/25/19 03:53,"514 Lake St, Seattle, WA 98101" +308628,Wired Headphones,1,11.99,12/24/19 05:00,"391 Adams St, Atlanta, GA 30301" +308629,Apple Airpods Headphones,1,150,12/02/19 20:44,"621 Church St, Los Angeles, CA 90001" +308630,Wired Headphones,1,11.99,12/04/19 14:39,"229 Dogwood St, San Francisco, CA 94016" +308631,20in Monitor,1,109.99,12/28/19 16:28,"84 13th St, New York City, NY 10001" +308632,USB-C Charging Cable,1,11.95,12/12/19 09:40,"750 North St, San Francisco, CA 94016" +308633,34in Ultrawide Monitor,1,379.99,12/11/19 13:21,"381 River St, San Francisco, CA 94016" +308634,Bose SoundSport Headphones,1,99.99,12/26/19 08:25,"149 South St, Atlanta, GA 30301" +308635,USB-C Charging Cable,1,11.95,12/27/19 09:32,"556 14th St, Boston, MA 02215" +308636,AAA Batteries (4-pack),1,2.99,12/08/19 16:39,"967 Madison St, Portland, OR 97035" +308637,AAA Batteries (4-pack),1,2.99,12/04/19 13:19,"495 West St, San Francisco, CA 94016" +308638,ThinkPad Laptop,1,999.99,12/26/19 08:37,"250 Meadow St, New York City, NY 10001" +308639,Lightning Charging Cable,1,14.95,12/13/19 15:46,"462 Maple St, Boston, MA 02215" +308640,AA Batteries (4-pack),1,3.84,12/02/19 20:15,"87 Lake St, Boston, MA 02215" +308641,27in 4K Gaming Monitor,1,389.99,12/17/19 19:05,"708 Pine St, Seattle, WA 98101" +308642,USB-C Charging Cable,1,11.95,12/27/19 09:59,"345 4th St, San Francisco, CA 94016" +308643,USB-C Charging Cable,1,11.95,12/21/19 18:01,"453 Forest St, San Francisco, CA 94016" +308644,AAA Batteries (4-pack),2,2.99,12/13/19 18:02,"612 Spruce St, Dallas, TX 75001" +308645,Wired Headphones,1,11.99,12/06/19 21:19,"319 14th St, San Francisco, CA 94016" +308646,AAA Batteries (4-pack),1,2.99,12/31/19 21:53,"655 North St, Atlanta, GA 30301" +308647,USB-C Charging Cable,1,11.95,12/04/19 15:23,"127 Sunset St, San Francisco, CA 94016" +308648,AA Batteries (4-pack),1,3.84,12/26/19 21:44,"719 Wilson St, Portland, OR 97035" +308649,AA Batteries (4-pack),1,3.84,12/20/19 08:34,"28 14th St, San Francisco, CA 94016" +308650,AA Batteries (4-pack),2,3.84,12/12/19 15:15,"966 Spruce St, Boston, MA 02215" +308651,AA Batteries (4-pack),2,3.84,12/22/19 09:54,"117 Elm St, Boston, MA 02215" +308652,USB-C Charging Cable,1,11.95,12/02/19 08:01,"103 Lake St, Austin, TX 73301" +308653,AA Batteries (4-pack),2,3.84,12/21/19 17:37,"442 Forest St, San Francisco, CA 94016" +308654,Lightning Charging Cable,1,14.95,12/07/19 12:46,"562 Willow St, New York City, NY 10001" +308655,Lightning Charging Cable,1,14.95,12/17/19 16:56,"642 Center St, Atlanta, GA 30301" +308656,AAA Batteries (4-pack),2,2.99,12/08/19 09:26,"237 4th St, San Francisco, CA 94016" +308657,Wired Headphones,1,11.99,12/19/19 15:30,"89 Maple St, Boston, MA 02215" +308658,Wired Headphones,1,11.99,12/08/19 16:46,"896 Cherry St, Los Angeles, CA 90001" +308659,27in 4K Gaming Monitor,1,389.99,12/28/19 16:32,"972 West St, San Francisco, CA 94016" +308660,USB-C Charging Cable,1,11.95,12/17/19 08:18,"937 Cedar St, Portland, ME 04101" +308661,USB-C Charging Cable,1,11.95,12/26/19 13:25,"574 6th St, Atlanta, GA 30301" +308662,20in Monitor,1,109.99,12/05/19 22:55,"879 Spruce St, San Francisco, CA 94016" +308663,34in Ultrawide Monitor,1,379.99,12/08/19 13:34,"713 4th St, Los Angeles, CA 90001" +308664,AA Batteries (4-pack),1,3.84,12/13/19 14:27,"453 Park St, Portland, OR 97035" +308665,Lightning Charging Cable,1,14.95,12/17/19 10:54,"844 Forest St, Los Angeles, CA 90001" +308666,Apple Airpods Headphones,1,150,12/24/19 20:11,"165 West St, San Francisco, CA 94016" +308667,27in FHD Monitor,1,149.99,12/30/19 22:23,"11 9th St, Austin, TX 73301" +308668,USB-C Charging Cable,1,11.95,12/06/19 14:10,"161 7th St, San Francisco, CA 94016" +308669,USB-C Charging Cable,1,11.95,12/17/19 14:25,"977 Walnut St, San Francisco, CA 94016" +308670,AA Batteries (4-pack),1,3.84,12/30/19 18:29,"685 5th St, Dallas, TX 75001" +308671,AAA Batteries (4-pack),1,2.99,12/27/19 10:28,"484 Center St, New York City, NY 10001" +308672,AA Batteries (4-pack),1,3.84,12/30/19 07:59,"737 Center St, San Francisco, CA 94016" +308673,ThinkPad Laptop,1,999.99,12/09/19 19:20,"5 10th St, Dallas, TX 75001" +308674,AA Batteries (4-pack),1,3.84,12/12/19 00:09,"202 2nd St, San Francisco, CA 94016" +308675,20in Monitor,1,109.99,12/15/19 20:54,"311 Spruce St, San Francisco, CA 94016" +308676,Google Phone,1,600,12/06/19 10:09,"362 Jefferson St, Dallas, TX 75001" +308676,Apple Airpods Headphones,1,150,12/06/19 10:09,"362 Jefferson St, Dallas, TX 75001" +308677,Apple Airpods Headphones,1,150,12/18/19 16:27,"191 Church St, San Francisco, CA 94016" +308678,AAA Batteries (4-pack),1,2.99,12/30/19 12:05,"530 Madison St, Dallas, TX 75001" +308679,AAA Batteries (4-pack),1,2.99,12/03/19 19:46,"857 Meadow St, Boston, MA 02215" +308680,USB-C Charging Cable,1,11.95,12/31/19 13:14,"377 Cedar St, Dallas, TX 75001" +308681,AA Batteries (4-pack),1,3.84,12/01/19 16:05,"137 13th St, Los Angeles, CA 90001" +308682,Google Phone,1,600,12/22/19 23:56,"331 5th St, Los Angeles, CA 90001" +308683,USB-C Charging Cable,1,11.95,12/20/19 23:17,"791 Walnut St, New York City, NY 10001" +308684,Macbook Pro Laptop,1,1700,12/22/19 11:12,"957 Main St, Portland, OR 97035" +308685,Google Phone,1,600,12/13/19 23:29,"991 Walnut St, Dallas, TX 75001" +308686,Wired Headphones,1,11.99,12/17/19 20:54,"986 Johnson St, San Francisco, CA 94016" +308687,USB-C Charging Cable,1,11.95,12/19/19 12:20,"957 Cherry St, San Francisco, CA 94016" +308688,AA Batteries (4-pack),2,3.84,12/16/19 07:35,"609 Center St, Austin, TX 73301" +308689,ThinkPad Laptop,1,999.99,12/22/19 19:32,"84 4th St, San Francisco, CA 94016" +308690,Lightning Charging Cable,1,14.95,12/08/19 11:57,"739 11th St, Los Angeles, CA 90001" +308691,iPhone,1,700,12/29/19 13:43,"188 Jefferson St, San Francisco, CA 94016" +308692,Google Phone,1,600,12/08/19 16:21,"171 Elm St, San Francisco, CA 94016" +308692,USB-C Charging Cable,1,11.95,12/08/19 16:21,"171 Elm St, San Francisco, CA 94016" +308693,Lightning Charging Cable,1,14.95,12/27/19 20:33,"471 Johnson St, Dallas, TX 75001" +308694,Lightning Charging Cable,1,14.95,12/12/19 19:38,"270 Dogwood St, Los Angeles, CA 90001" +308695,27in 4K Gaming Monitor,1,389.99,12/23/19 21:27,"119 Highland St, Seattle, WA 98101" +308696,Apple Airpods Headphones,1,150,12/18/19 15:51,"131 Lakeview St, New York City, NY 10001" +308697,Lightning Charging Cable,1,14.95,12/10/19 10:27,"514 Willow St, Los Angeles, CA 90001" +308698,iPhone,1,700,12/22/19 01:07,"888 Park St, Austin, TX 73301" +308698,Wired Headphones,1,11.99,12/22/19 01:07,"888 Park St, Austin, TX 73301" +308699,27in 4K Gaming Monitor,1,389.99,12/10/19 16:17,"211 Chestnut St, Austin, TX 73301" +308700,Lightning Charging Cable,1,14.95,12/28/19 17:35,"733 Elm St, San Francisco, CA 94016" +308701,AAA Batteries (4-pack),1,2.99,12/14/19 09:44,"14 Jackson St, Los Angeles, CA 90001" +308702,Bose SoundSport Headphones,1,99.99,12/15/19 07:39,"197 Walnut St, Boston, MA 02215" +308703,AAA Batteries (4-pack),2,2.99,12/05/19 15:54,"529 Jackson St, Dallas, TX 75001" +308704,AA Batteries (4-pack),1,3.84,12/25/19 20:38,"194 Church St, Atlanta, GA 30301" +308705,Google Phone,1,600,12/25/19 20:56,"321 Walnut St, New York City, NY 10001" +308706,Lightning Charging Cable,1,14.95,12/14/19 23:53,"853 8th St, Boston, MA 02215" +308707,Apple Airpods Headphones,1,150,12/29/19 16:57,"415 Cherry St, Los Angeles, CA 90001" +308708,AA Batteries (4-pack),1,3.84,12/07/19 11:32,"516 10th St, San Francisco, CA 94016" +308709,Lightning Charging Cable,1,14.95,12/12/19 10:02,"877 13th St, Los Angeles, CA 90001" +308710,ThinkPad Laptop,1,999.99,12/24/19 10:54,"796 Hill St, San Francisco, CA 94016" +308711,AA Batteries (4-pack),1,3.84,12/29/19 11:22,"474 Jefferson St, Seattle, WA 98101" +308712,27in FHD Monitor,1,149.99,12/19/19 10:04,"162 Lincoln St, Seattle, WA 98101" +308713,Lightning Charging Cable,1,14.95,12/21/19 08:40,"518 Elm St, San Francisco, CA 94016" +308714,USB-C Charging Cable,1,11.95,12/13/19 08:41,"4 Lakeview St, Boston, MA 02215" +308715,Lightning Charging Cable,2,14.95,12/22/19 12:09,"669 4th St, Portland, OR 97035" +308716,AA Batteries (4-pack),1,3.84,12/24/19 22:24,"412 Jackson St, Portland, OR 97035" +308717,Wired Headphones,1,11.99,12/05/19 21:32,"871 Church St, San Francisco, CA 94016" +308718,USB-C Charging Cable,1,11.95,12/20/19 23:13,"838 Cherry St, Portland, OR 97035" +308719,Macbook Pro Laptop,1,1700,12/21/19 21:55,"851 Highland St, Portland, OR 97035" +308720,Google Phone,1,600,12/31/19 00:48,"961 7th St, San Francisco, CA 94016" +308721,iPhone,1,700,12/05/19 20:24,"120 Main St, Los Angeles, CA 90001" +308721,Wired Headphones,1,11.99,12/05/19 20:24,"120 Main St, Los Angeles, CA 90001" +308722,Macbook Pro Laptop,1,1700,12/13/19 07:38,"343 Maple St, Atlanta, GA 30301" +308723,AA Batteries (4-pack),2,3.84,12/14/19 22:05,"116 4th St, Boston, MA 02215" +308724,Flatscreen TV,1,300,12/05/19 17:22,"883 Adams St, San Francisco, CA 94016" +308725,Bose SoundSport Headphones,1,99.99,12/16/19 16:17,"766 South St, Boston, MA 02215" +308726,AA Batteries (4-pack),1,3.84,12/03/19 09:48,"749 Cherry St, Boston, MA 02215" +308727,27in 4K Gaming Monitor,1,389.99,12/11/19 00:51,"364 Lakeview St, New York City, NY 10001" +308728,34in Ultrawide Monitor,1,379.99,12/19/19 21:35,"626 Lakeview St, Portland, ME 04101" +308729,Lightning Charging Cable,1,14.95,12/28/19 22:03,"444 Washington St, Atlanta, GA 30301" +308730,USB-C Charging Cable,1,11.95,12/16/19 02:13,"836 Madison St, Seattle, WA 98101" +308731,Bose SoundSport Headphones,1,99.99,12/27/19 12:05,"551 Elm St, Seattle, WA 98101" +308732,Google Phone,1,600,12/27/19 02:07,"541 Cherry St, Portland, ME 04101" +308732,USB-C Charging Cable,1,11.95,12/27/19 02:07,"541 Cherry St, Portland, ME 04101" +308733,Apple Airpods Headphones,1,150,12/06/19 16:29,"508 River St, Austin, TX 73301" +308734,27in FHD Monitor,1,149.99,12/08/19 08:44,"601 Meadow St, New York City, NY 10001" +308735,Bose SoundSport Headphones,1,99.99,12/21/19 11:06,"121 Main St, Los Angeles, CA 90001" +308736,34in Ultrawide Monitor,1,379.99,12/02/19 18:40,"797 4th St, San Francisco, CA 94016" +308737,20in Monitor,1,109.99,12/25/19 08:59,"848 5th St, Portland, ME 04101" +308738,AAA Batteries (4-pack),1,2.99,12/22/19 15:29,"827 2nd St, San Francisco, CA 94016" +308739,Apple Airpods Headphones,1,150,12/17/19 01:25,"420 9th St, Los Angeles, CA 90001" +308740,27in 4K Gaming Monitor,1,389.99,12/14/19 22:11,"893 1st St, San Francisco, CA 94016" +308741,Apple Airpods Headphones,1,150,12/04/19 13:48,"207 Center St, Boston, MA 02215" +308742,Google Phone,1,600,12/31/19 08:31,"804 9th St, Los Angeles, CA 90001" +308742,USB-C Charging Cable,1,11.95,12/31/19 08:31,"804 9th St, Los Angeles, CA 90001" +308742,Wired Headphones,1,11.99,12/31/19 08:31,"804 9th St, Los Angeles, CA 90001" +308743,AA Batteries (4-pack),2,3.84,12/07/19 03:19,"667 Hill St, San Francisco, CA 94016" +308744,AA Batteries (4-pack),1,3.84,12/07/19 00:40,"220 Madison St, Austin, TX 73301" +308745,27in FHD Monitor,1,149.99,12/29/19 02:06,"995 South St, San Francisco, CA 94016" +308746,AAA Batteries (4-pack),1,2.99,12/03/19 07:28,"247 9th St, Boston, MA 02215" +308747,Lightning Charging Cable,1,14.95,12/30/19 10:52,"480 Cherry St, Los Angeles, CA 90001" +308748,Lightning Charging Cable,1,14.95,12/09/19 15:37,"82 4th St, Portland, OR 97035" +308749,iPhone,1,700,12/08/19 16:20,"328 Cedar St, Los Angeles, CA 90001" +308750,USB-C Charging Cable,1,11.95,12/02/19 18:29,"183 Park St, Boston, MA 02215" +308751,USB-C Charging Cable,1,11.95,12/24/19 13:12,"405 Maple St, New York City, NY 10001" +308752,Vareebadd Phone,1,400,12/14/19 19:46,"914 Elm St, San Francisco, CA 94016" +308753,Macbook Pro Laptop,1,1700,12/19/19 19:05,"112 Lake St, Boston, MA 02215" +308754,AA Batteries (4-pack),1,3.84,12/18/19 16:26,"714 Pine St, San Francisco, CA 94016" +308755,Wired Headphones,1,11.99,12/08/19 17:31,"540 Jackson St, San Francisco, CA 94016" +308756,AA Batteries (4-pack),1,3.84,12/25/19 01:11,"72 2nd St, New York City, NY 10001" +308757,AA Batteries (4-pack),4,3.84,12/09/19 21:19,"822 11th St, San Francisco, CA 94016" +308758,Lightning Charging Cable,1,14.95,12/19/19 23:13,"562 Walnut St, Seattle, WA 98101" +308759,USB-C Charging Cable,1,11.95,12/19/19 23:45,"311 9th St, Boston, MA 02215" +308760,Wired Headphones,1,11.99,12/02/19 07:20,"731 Highland St, Los Angeles, CA 90001" +308761,27in FHD Monitor,1,149.99,12/27/19 10:32,"128 Church St, Dallas, TX 75001" +308762,ThinkPad Laptop,1,999.99,12/14/19 09:32,"952 Lake St, Atlanta, GA 30301" +308763,AAA Batteries (4-pack),1,2.99,12/15/19 12:23,"608 South St, San Francisco, CA 94016" +308764,Wired Headphones,2,11.99,12/11/19 10:32,"459 Walnut St, Atlanta, GA 30301" +308765,Apple Airpods Headphones,1,150,12/29/19 23:51,"574 Pine St, Dallas, TX 75001" +308766,Wired Headphones,2,11.99,12/10/19 12:17,"241 Spruce St, Austin, TX 73301" +308767,Wired Headphones,1,11.99,12/22/19 12:59,"849 Maple St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +308768,27in 4K Gaming Monitor,1,389.99,12/16/19 12:03,"218 8th St, Dallas, TX 75001" +308768,Lightning Charging Cable,1,14.95,12/16/19 12:03,"218 8th St, Dallas, TX 75001" +308769,Bose SoundSport Headphones,1,99.99,12/21/19 15:55,"969 River St, San Francisco, CA 94016" +308770,Wired Headphones,1,11.99,12/11/19 22:25,"631 Johnson St, Seattle, WA 98101" +308771,Lightning Charging Cable,1,14.95,12/30/19 10:24,"257 Cherry St, Los Angeles, CA 90001" +308772,AAA Batteries (4-pack),1,2.99,12/20/19 09:24,"950 7th St, San Francisco, CA 94016" +308772,AA Batteries (4-pack),1,3.84,12/20/19 09:24,"950 7th St, San Francisco, CA 94016" +308773,27in 4K Gaming Monitor,1,389.99,12/25/19 13:19,"8 River St, Seattle, WA 98101" +308774,Bose SoundSport Headphones,1,99.99,12/31/19 12:55,"665 Pine St, New York City, NY 10001" +,,,,, +308775,AA Batteries (4-pack),1,3.84,12/23/19 17:02,"917 Lake St, San Francisco, CA 94016" +308776,Wired Headphones,1,11.99,12/26/19 19:11,"289 Johnson St, New York City, NY 10001" +308777,27in 4K Gaming Monitor,1,389.99,12/26/19 15:59,"440 8th St, New York City, NY 10001" +308778,Lightning Charging Cable,2,14.95,12/28/19 22:15,"837 Dogwood St, New York City, NY 10001" +308779,20in Monitor,1,109.99,12/04/19 22:02,"794 13th St, New York City, NY 10001" +308780,Lightning Charging Cable,1,14.95,12/05/19 13:06,"249 Ridge St, San Francisco, CA 94016" +308781,AAA Batteries (4-pack),1,2.99,12/08/19 12:51,"445 Johnson St, Seattle, WA 98101" +308782,Wired Headphones,1,11.99,12/24/19 15:03,"499 Elm St, New York City, NY 10001" +308783,Lightning Charging Cable,1,14.95,12/21/19 13:51,"211 River St, New York City, NY 10001" +308784,USB-C Charging Cable,1,11.95,12/31/19 17:15,"755 Main St, San Francisco, CA 94016" +308785,Apple Airpods Headphones,1,150,12/16/19 20:56,"613 South St, San Francisco, CA 94016" +308786,ThinkPad Laptop,1,999.99,12/23/19 21:39,"98 Cedar St, Boston, MA 02215" +308787,USB-C Charging Cable,1,11.95,12/30/19 19:49,"513 Jackson St, New York City, NY 10001" +308788,AA Batteries (4-pack),2,3.84,12/18/19 10:22,"207 Center St, Dallas, TX 75001" +308789,Bose SoundSport Headphones,1,99.99,12/14/19 16:09,"651 Washington St, Dallas, TX 75001" +308789,AAA Batteries (4-pack),1,2.99,12/14/19 16:09,"651 Washington St, Dallas, TX 75001" +308790,Wired Headphones,1,11.99,12/23/19 02:14,"273 14th St, Portland, ME 04101" +308791,Flatscreen TV,1,300,12/14/19 10:44,"649 Church St, New York City, NY 10001" +308792,Apple Airpods Headphones,1,150,12/11/19 14:16,"20 South St, San Francisco, CA 94016" +308793,27in 4K Gaming Monitor,1,389.99,12/14/19 15:00,"892 11th St, Dallas, TX 75001" +308794,Wired Headphones,1,11.99,12/21/19 06:20,"62 Hill St, New York City, NY 10001" +308795,Lightning Charging Cable,1,14.95,12/27/19 15:09,"36 Highland St, Seattle, WA 98101" +308796,USB-C Charging Cable,1,11.95,12/02/19 15:32,"911 Madison St, San Francisco, CA 94016" +308797,Lightning Charging Cable,1,14.95,12/02/19 20:47,"888 River St, Boston, MA 02215" +308798,ThinkPad Laptop,1,999.99,12/27/19 10:08,"294 Sunset St, Dallas, TX 75001" +308799,Flatscreen TV,1,300,12/13/19 08:55,"361 Center St, Boston, MA 02215" +308800,AA Batteries (4-pack),1,3.84,12/05/19 06:17,"255 Sunset St, Portland, OR 97035" +308801,Apple Airpods Headphones,1,150,12/18/19 14:26,"758 12th St, Seattle, WA 98101" +308802,Bose SoundSport Headphones,1,99.99,12/02/19 15:20,"98 1st St, New York City, NY 10001" +308803,27in 4K Gaming Monitor,1,389.99,12/24/19 00:09,"593 Adams St, Boston, MA 02215" +308804,AA Batteries (4-pack),1,3.84,12/01/19 13:29,"362 Lake St, Los Angeles, CA 90001" +308805,Bose SoundSport Headphones,1,99.99,12/18/19 14:27,"102 Walnut St, Austin, TX 73301" +308806,Wired Headphones,1,11.99,12/16/19 13:19,"265 Spruce St, San Francisco, CA 94016" +308807,Apple Airpods Headphones,1,150,12/20/19 12:45,"854 Ridge St, Los Angeles, CA 90001" +308808,Apple Airpods Headphones,1,150,12/23/19 16:32,"161 Lake St, Dallas, TX 75001" +308809,Bose SoundSport Headphones,1,99.99,12/02/19 09:17,"113 West St, Dallas, TX 75001" +308810,AA Batteries (4-pack),4,3.84,12/13/19 11:39,"692 Hill St, New York City, NY 10001" +308811,USB-C Charging Cable,1,11.95,12/20/19 22:09,"874 10th St, Atlanta, GA 30301" +308812,ThinkPad Laptop,1,999.99,12/20/19 19:42,"662 Cedar St, Portland, OR 97035" +308813,USB-C Charging Cable,1,11.95,12/15/19 20:50,"434 Ridge St, Austin, TX 73301" +308814,LG Dryer,1,600.0,12/03/19 15:12,"836 Park St, Atlanta, GA 30301" +308815,Wired Headphones,1,11.99,12/03/19 10:22,"687 Adams St, Boston, MA 02215" +308816,Bose SoundSport Headphones,1,99.99,12/06/19 17:49,"856 6th St, New York City, NY 10001" +308817,AA Batteries (4-pack),1,3.84,12/31/19 22:22,"18 4th St, San Francisco, CA 94016" +308818,LG Washing Machine,1,600.0,12/05/19 15:24,"828 Johnson St, San Francisco, CA 94016" +308819,Google Phone,1,600,12/06/19 21:50,"318 Center St, New York City, NY 10001" +308820,USB-C Charging Cable,1,11.95,12/16/19 15:29,"239 11th St, Dallas, TX 75001" +308821,USB-C Charging Cable,1,11.95,12/19/19 22:10,"357 4th St, Boston, MA 02215" +308822,AAA Batteries (4-pack),2,2.99,12/15/19 20:28,"333 13th St, New York City, NY 10001" +308823,USB-C Charging Cable,1,11.95,12/23/19 15:05,"60 Church St, Los Angeles, CA 90001" +308824,iPhone,1,700,12/27/19 20:01,"950 Elm St, Portland, OR 97035" +308825,Wired Headphones,1,11.99,12/19/19 19:17,"982 Cherry St, Portland, OR 97035" +308826,Lightning Charging Cable,1,14.95,12/18/19 15:33,"748 7th St, Austin, TX 73301" +308827,AAA Batteries (4-pack),1,2.99,12/23/19 14:19,"647 2nd St, Atlanta, GA 30301" +308828,AAA Batteries (4-pack),1,2.99,12/02/19 23:59,"318 Meadow St, New York City, NY 10001" +308829,AAA Batteries (4-pack),1,2.99,12/21/19 21:51,"136 Cherry St, San Francisco, CA 94016" +308830,Wired Headphones,1,11.99,12/16/19 20:37,"634 13th St, Los Angeles, CA 90001" +308831,Lightning Charging Cable,1,14.95,12/29/19 19:40,"84 12th St, San Francisco, CA 94016" +308832,AAA Batteries (4-pack),1,2.99,12/06/19 11:22,"896 North St, Atlanta, GA 30301" +308833,Lightning Charging Cable,1,14.95,12/26/19 11:45,"661 Spruce St, New York City, NY 10001" +308834,AA Batteries (4-pack),1,3.84,12/13/19 21:30,"187 Lakeview St, New York City, NY 10001" +308835,iPhone,1,700,12/23/19 12:48,"51 Dogwood St, Dallas, TX 75001" +308835,Wired Headphones,1,11.99,12/23/19 12:48,"51 Dogwood St, Dallas, TX 75001" +308836,Lightning Charging Cable,1,14.95,12/24/19 00:30,"494 Cedar St, Portland, OR 97035" +308837,USB-C Charging Cable,1,11.95,12/09/19 18:30,"367 Ridge St, Atlanta, GA 30301" +308838,USB-C Charging Cable,1,11.95,12/25/19 12:13,"203 Jefferson St, San Francisco, CA 94016" +308839,Wired Headphones,1,11.99,12/02/19 16:49,"208 13th St, Atlanta, GA 30301" +308840,Flatscreen TV,1,300,12/22/19 05:01,"219 Maple St, Atlanta, GA 30301" +308841,AAA Batteries (4-pack),5,2.99,12/22/19 10:20,"858 Elm St, San Francisco, CA 94016" +308842,AA Batteries (4-pack),1,3.84,12/05/19 14:53,"78 1st St, San Francisco, CA 94016" +308843,AA Batteries (4-pack),1,3.84,12/11/19 17:45,"844 2nd St, Los Angeles, CA 90001" +308844,AA Batteries (4-pack),3,3.84,12/16/19 05:08,"182 Lakeview St, San Francisco, CA 94016" +308845,Lightning Charging Cable,1,14.95,12/14/19 19:20,"956 5th St, New York City, NY 10001" +308846,USB-C Charging Cable,2,11.95,12/04/19 20:26,"163 Meadow St, San Francisco, CA 94016" +308847,AAA Batteries (4-pack),1,2.99,12/10/19 20:16,"228 Park St, Los Angeles, CA 90001" +308848,AAA Batteries (4-pack),1,2.99,12/23/19 06:16,"381 2nd St, Dallas, TX 75001" +308849,Google Phone,1,600,12/22/19 17:09,"26 10th St, New York City, NY 10001" +308849,Wired Headphones,1,11.99,12/22/19 17:09,"26 10th St, New York City, NY 10001" +308850,AAA Batteries (4-pack),1,2.99,12/10/19 22:14,"612 Center St, Dallas, TX 75001" +308851,27in FHD Monitor,1,149.99,12/14/19 17:04,"321 Sunset St, San Francisco, CA 94016" +308852,Apple Airpods Headphones,1,150,12/28/19 13:33,"666 Meadow St, San Francisco, CA 94016" +308853,Google Phone,1,600,12/19/19 08:41,"123 Wilson St, San Francisco, CA 94016" +308854,iPhone,1,700,12/20/19 19:34,"429 Adams St, Austin, TX 73301" +308855,iPhone,1,700,12/18/19 21:07,"531 Lake St, Los Angeles, CA 90001" +308855,Lightning Charging Cable,1,14.95,12/18/19 21:07,"531 Lake St, Los Angeles, CA 90001" +308856,Wired Headphones,2,11.99,12/11/19 10:48,"907 Dogwood St, San Francisco, CA 94016" +308857,Flatscreen TV,1,300,12/19/19 15:59,"710 11th St, Dallas, TX 75001" +308858,Wired Headphones,2,11.99,12/22/19 09:13,"910 Johnson St, Portland, OR 97035" +308859,Apple Airpods Headphones,1,150,12/06/19 21:00,"713 Cedar St, Boston, MA 02215" +308860,Bose SoundSport Headphones,1,99.99,12/20/19 13:00,"998 Willow St, Austin, TX 73301" +308861,iPhone,1,700,12/15/19 22:05,"364 Spruce St, Seattle, WA 98101" +308862,Lightning Charging Cable,1,14.95,12/17/19 20:06,"178 Lake St, San Francisco, CA 94016" +308863,ThinkPad Laptop,1,999.99,12/11/19 19:45,"771 13th St, San Francisco, CA 94016" +308864,Flatscreen TV,1,300,12/09/19 05:51,"938 4th St, Los Angeles, CA 90001" +308865,Wired Headphones,1,11.99,12/11/19 10:30,"917 7th St, Boston, MA 02215" +308866,USB-C Charging Cable,1,11.95,12/29/19 16:20,"367 Johnson St, San Francisco, CA 94016" +308867,Lightning Charging Cable,1,14.95,12/05/19 13:53,"26 Church St, Atlanta, GA 30301" +308868,USB-C Charging Cable,1,11.95,12/27/19 22:49,"848 14th St, San Francisco, CA 94016" +308869,AAA Batteries (4-pack),1,2.99,12/06/19 19:22,"129 11th St, Boston, MA 02215" +308870,USB-C Charging Cable,1,11.95,12/16/19 15:33,"860 4th St, New York City, NY 10001" +308871,AAA Batteries (4-pack),2,2.99,12/17/19 07:57,"218 Lake St, Seattle, WA 98101" +308872,AA Batteries (4-pack),1,3.84,12/20/19 21:00,"95 4th St, San Francisco, CA 94016" +308873,27in FHD Monitor,1,149.99,12/07/19 13:01,"46 6th St, New York City, NY 10001" +308874,Lightning Charging Cable,1,14.95,12/10/19 20:56,"56 Sunset St, Seattle, WA 98101" +308875,USB-C Charging Cable,1,11.95,12/28/19 09:06,"215 Spruce St, New York City, NY 10001" +308876,Bose SoundSport Headphones,1,99.99,12/16/19 13:03,"170 Ridge St, Los Angeles, CA 90001" +308877,Apple Airpods Headphones,1,150,12/07/19 09:34,"523 Chestnut St, Los Angeles, CA 90001" +308878,34in Ultrawide Monitor,1,379.99,12/24/19 16:06,"637 Lake St, San Francisco, CA 94016" +308879,34in Ultrawide Monitor,1,379.99,12/23/19 12:43,"550 8th St, Los Angeles, CA 90001" +308880,AAA Batteries (4-pack),1,2.99,12/11/19 17:17,"884 Church St, Boston, MA 02215" +308881,27in 4K Gaming Monitor,1,389.99,12/12/19 13:59,"441 Walnut St, Boston, MA 02215" +308882,27in FHD Monitor,1,149.99,12/26/19 22:19,"127 5th St, Los Angeles, CA 90001" +308883,Apple Airpods Headphones,1,150,12/12/19 18:34,"167 Lincoln St, Atlanta, GA 30301" +308884,ThinkPad Laptop,1,999.99,12/08/19 14:03,"977 Lakeview St, Austin, TX 73301" +308885,Vareebadd Phone,1,400,12/04/19 19:49,"672 Wilson St, San Francisco, CA 94016" +308885,Bose SoundSport Headphones,1,99.99,12/04/19 19:49,"672 Wilson St, San Francisco, CA 94016" +308886,Apple Airpods Headphones,1,150,12/15/19 11:17,"438 12th St, San Francisco, CA 94016" +308887,Vareebadd Phone,1,400,12/23/19 04:48,"552 Madison St, New York City, NY 10001" +308888,Wired Headphones,1,11.99,12/20/19 10:09,"53 2nd St, Austin, TX 73301" +308889,USB-C Charging Cable,1,11.95,12/28/19 17:11,"375 9th St, San Francisco, CA 94016" +308890,AAA Batteries (4-pack),1,2.99,12/22/19 09:49,"607 Ridge St, San Francisco, CA 94016" +308891,ThinkPad Laptop,1,999.99,12/03/19 18:54,"89 4th St, New York City, NY 10001" +308892,Lightning Charging Cable,1,14.95,12/02/19 10:40,"784 12th St, Los Angeles, CA 90001" +308893,AAA Batteries (4-pack),1,2.99,12/16/19 16:11,"617 Willow St, Portland, OR 97035" +308894,Wired Headphones,1,11.99,12/22/19 19:08,"241 Lakeview St, San Francisco, CA 94016" +308895,Wired Headphones,1,11.99,12/12/19 12:57,"459 West St, San Francisco, CA 94016" +308896,AAA Batteries (4-pack),1,2.99,12/28/19 21:45,"612 10th St, Boston, MA 02215" +308897,Flatscreen TV,1,300,12/30/19 15:25,"577 Walnut St, Seattle, WA 98101" +308898,AAA Batteries (4-pack),4,2.99,12/17/19 19:33,"686 Adams St, Los Angeles, CA 90001" +308898,AAA Batteries (4-pack),2,2.99,12/17/19 19:33,"686 Adams St, Los Angeles, CA 90001" +308899,Google Phone,1,600,12/24/19 22:22,"696 Lake St, Atlanta, GA 30301" +308899,AAA Batteries (4-pack),1,2.99,12/24/19 22:22,"696 Lake St, Atlanta, GA 30301" +308900,Bose SoundSport Headphones,1,99.99,12/13/19 13:05,"596 Maple St, Portland, OR 97035" +308901,Apple Airpods Headphones,1,150,12/14/19 22:17,"161 Adams St, Dallas, TX 75001" +308902,AA Batteries (4-pack),1,3.84,12/25/19 14:38,"844 West St, San Francisco, CA 94016" +308903,Wired Headphones,1,11.99,12/05/19 10:17,"643 Forest St, Los Angeles, CA 90001" +308904,USB-C Charging Cable,1,11.95,12/16/19 09:54,"50 14th St, Boston, MA 02215" +308905,ThinkPad Laptop,1,999.99,12/02/19 10:57,"554 River St, New York City, NY 10001" +308906,Lightning Charging Cable,1,14.95,12/29/19 19:06,"141 Jefferson St, Portland, OR 97035" +308907,AA Batteries (4-pack),1,3.84,12/22/19 12:11,"258 Church St, Atlanta, GA 30301" +308908,Lightning Charging Cable,1,14.95,12/23/19 14:36,"728 7th St, Dallas, TX 75001" +308909,Lightning Charging Cable,1,14.95,12/26/19 12:44,"471 Lincoln St, New York City, NY 10001" +308910,USB-C Charging Cable,1,11.95,12/15/19 16:01,"509 Main St, New York City, NY 10001" +308911,27in 4K Gaming Monitor,1,389.99,12/23/19 18:44,"922 Forest St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +308912,AA Batteries (4-pack),1,3.84,12/04/19 19:56,"506 Highland St, Dallas, TX 75001" +308913,Wired Headphones,1,11.99,12/29/19 11:49,"734 Highland St, Seattle, WA 98101" +308914,USB-C Charging Cable,1,11.95,12/18/19 00:17,"956 Spruce St, Atlanta, GA 30301" +308915,ThinkPad Laptop,1,999.99,12/28/19 19:40,"559 Willow St, Dallas, TX 75001" +308916,20in Monitor,1,109.99,12/12/19 08:41,"595 Spruce St, San Francisco, CA 94016" +308917,Wired Headphones,1,11.99,12/30/19 16:01,"882 1st St, Seattle, WA 98101" +308918,Apple Airpods Headphones,1,150,12/24/19 22:38,"688 River St, San Francisco, CA 94016" +308919,Lightning Charging Cable,1,14.95,12/04/19 11:44,"595 Hickory St, San Francisco, CA 94016" +308920,AA Batteries (4-pack),1,3.84,12/12/19 18:06,"864 11th St, Seattle, WA 98101" +308921,20in Monitor,1,109.99,12/15/19 12:52,"898 Church St, Boston, MA 02215" +308922,AAA Batteries (4-pack),3,2.99,12/11/19 11:43,"198 Spruce St, San Francisco, CA 94016" +308923,Lightning Charging Cable,1,14.95,12/05/19 11:30,"158 Maple St, Los Angeles, CA 90001" +308924,AA Batteries (4-pack),1,3.84,12/05/19 11:19,"295 Ridge St, New York City, NY 10001" +308925,iPhone,1,700,12/11/19 07:04,"919 Pine St, New York City, NY 10001" +308926,Apple Airpods Headphones,1,150,12/14/19 17:33,"690 Highland St, New York City, NY 10001" +308927,USB-C Charging Cable,1,11.95,12/04/19 10:15,"207 Main St, Seattle, WA 98101" +308928,Wired Headphones,1,11.99,12/22/19 11:38,"881 Dogwood St, Austin, TX 73301" +308929,AA Batteries (4-pack),1,3.84,12/17/19 15:51,"562 Lakeview St, New York City, NY 10001" +308930,27in FHD Monitor,1,149.99,12/09/19 16:15,"155 Pine St, Los Angeles, CA 90001" +308931,Apple Airpods Headphones,1,150,12/28/19 23:43,"412 4th St, Boston, MA 02215" +308932,AAA Batteries (4-pack),1,2.99,12/28/19 16:02,"457 Spruce St, San Francisco, CA 94016" +308933,Wired Headphones,1,11.99,12/05/19 12:41,"38 Main St, Boston, MA 02215" +308934,AA Batteries (4-pack),1,3.84,12/09/19 23:13,"728 West St, Boston, MA 02215" +308935,Wired Headphones,1,11.99,12/31/19 14:48,"211 Chestnut St, Los Angeles, CA 90001" +308936,Apple Airpods Headphones,1,150,12/22/19 18:55,"384 Jackson St, Seattle, WA 98101" +308937,AAA Batteries (4-pack),1,2.99,12/14/19 18:23,"195 North St, New York City, NY 10001" +308938,Wired Headphones,1,11.99,12/14/19 19:45,"525 Willow St, Atlanta, GA 30301" +308939,Vareebadd Phone,1,400,12/01/19 18:09,"17 Madison St, New York City, NY 10001" +308939,Wired Headphones,1,11.99,12/01/19 18:09,"17 Madison St, New York City, NY 10001" +308940,Google Phone,1,600,12/02/19 08:58,"354 Dogwood St, New York City, NY 10001" +308940,USB-C Charging Cable,1,11.95,12/02/19 08:58,"354 Dogwood St, New York City, NY 10001" +308941,20in Monitor,1,109.99,12/17/19 15:01,"847 14th St, San Francisco, CA 94016" +308942,AA Batteries (4-pack),2,3.84,12/05/19 17:51,"123 Forest St, New York City, NY 10001" +308943,20in Monitor,1,109.99,12/26/19 22:24,"341 Madison St, San Francisco, CA 94016" +308944,iPhone,1,700,12/14/19 17:32,"840 Pine St, Seattle, WA 98101" +308945,iPhone,1,700,12/17/19 14:37,"341 Lincoln St, Portland, OR 97035" +308946,Bose SoundSport Headphones,1,99.99,12/07/19 13:42,"624 10th St, San Francisco, CA 94016" +308947,iPhone,1,700,12/26/19 12:40,"560 West St, San Francisco, CA 94016" +308948,USB-C Charging Cable,1,11.95,12/31/19 13:16,"711 Chestnut St, Atlanta, GA 30301" +308948,Lightning Charging Cable,1,14.95,12/31/19 13:16,"711 Chestnut St, Atlanta, GA 30301" +308949,Bose SoundSport Headphones,1,99.99,12/02/19 16:41,"2 Lakeview St, Atlanta, GA 30301" +308950,USB-C Charging Cable,1,11.95,12/25/19 17:56,"129 Jackson St, Dallas, TX 75001" +308951,27in 4K Gaming Monitor,1,389.99,12/10/19 13:12,"727 Elm St, Dallas, TX 75001" +308952,Flatscreen TV,1,300,12/09/19 14:40,"635 Jefferson St, Atlanta, GA 30301" +308953,iPhone,1,700,12/30/19 19:57,"957 Pine St, Los Angeles, CA 90001" +308954,Wired Headphones,1,11.99,12/02/19 19:09,"447 Spruce St, Seattle, WA 98101" +308955,AAA Batteries (4-pack),2,2.99,12/02/19 13:26,"769 Center St, Atlanta, GA 30301" +308956,AA Batteries (4-pack),1,3.84,12/03/19 03:32,"198 Johnson St, New York City, NY 10001" +308957,AA Batteries (4-pack),1,3.84,12/30/19 12:07,"364 Cherry St, Seattle, WA 98101" +308958,AA Batteries (4-pack),1,3.84,12/29/19 10:57,"747 South St, Portland, OR 97035" +308959,AA Batteries (4-pack),1,3.84,12/11/19 14:43,"171 8th St, Los Angeles, CA 90001" +308959,AA Batteries (4-pack),1,3.84,12/11/19 14:43,"171 8th St, Los Angeles, CA 90001" +308960,AAA Batteries (4-pack),1,2.99,12/27/19 16:16,"639 Sunset St, San Francisco, CA 94016" +308960,Lightning Charging Cable,1,14.95,12/27/19 16:16,"639 Sunset St, San Francisco, CA 94016" +308961,Lightning Charging Cable,1,14.95,12/22/19 03:34,"156 2nd St, San Francisco, CA 94016" +308962,ThinkPad Laptop,1,999.99,12/30/19 13:56,"341 South St, Los Angeles, CA 90001" +308963,27in FHD Monitor,1,149.99,12/07/19 10:34,"742 Highland St, San Francisco, CA 94016" +308964,Google Phone,1,600,12/20/19 10:57,"141 River St, Austin, TX 73301" +308964,Bose SoundSport Headphones,1,99.99,12/20/19 10:57,"141 River St, Austin, TX 73301" +308965,27in 4K Gaming Monitor,1,389.99,12/22/19 19:15,"629 12th St, San Francisco, CA 94016" +308966,Wired Headphones,1,11.99,12/21/19 14:59,"983 West St, San Francisco, CA 94016" +308967,USB-C Charging Cable,1,11.95,12/21/19 21:05,"635 Lake St, Portland, OR 97035" +308968,AA Batteries (4-pack),1,3.84,12/05/19 23:31,"490 Elm St, Portland, OR 97035" +308969,AAA Batteries (4-pack),2,2.99,12/08/19 12:43,"135 1st St, New York City, NY 10001" +308970,Apple Airpods Headphones,1,150,12/13/19 12:39,"694 Elm St, San Francisco, CA 94016" +308971,Bose SoundSport Headphones,1,99.99,12/11/19 21:28,"331 4th St, Seattle, WA 98101" +308972,Lightning Charging Cable,1,14.95,12/17/19 18:09,"784 Johnson St, Los Angeles, CA 90001" +308973,Wired Headphones,1,11.99,12/15/19 23:35,"684 Meadow St, Los Angeles, CA 90001" +308974,27in FHD Monitor,1,149.99,12/12/19 23:27,"417 14th St, San Francisco, CA 94016" +308975,AA Batteries (4-pack),1,3.84,12/30/19 18:16,"227 West St, San Francisco, CA 94016" +308976,USB-C Charging Cable,1,11.95,12/07/19 10:02,"66 Johnson St, San Francisco, CA 94016" +308977,AAA Batteries (4-pack),1,2.99,12/17/19 18:38,"944 Johnson St, Austin, TX 73301" +308978,Lightning Charging Cable,1,14.95,12/27/19 03:28,"552 Church St, San Francisco, CA 94016" +308979,AAA Batteries (4-pack),2,2.99,12/30/19 13:08,"21 Center St, Seattle, WA 98101" +308980,Vareebadd Phone,1,400,12/26/19 18:00,"157 Highland St, San Francisco, CA 94016" +308981,AA Batteries (4-pack),2,3.84,12/30/19 15:15,"673 Washington St, San Francisco, CA 94016" +308982,AA Batteries (4-pack),2,3.84,12/21/19 16:29,"745 Elm St, Seattle, WA 98101" +308983,ThinkPad Laptop,1,999.99,12/28/19 08:13,"567 4th St, Seattle, WA 98101" +308984,20in Monitor,1,109.99,12/28/19 18:13,"623 Main St, New York City, NY 10001" +308985,Flatscreen TV,1,300,12/03/19 09:23,"786 Forest St, New York City, NY 10001" +308986,Wired Headphones,1,11.99,12/13/19 16:50,"960 Adams St, New York City, NY 10001" +308987,Wired Headphones,1,11.99,12/08/19 16:53,"731 Walnut St, Boston, MA 02215" +308988,Macbook Pro Laptop,1,1700,12/16/19 14:12,"162 Ridge St, Dallas, TX 75001" +308989,Wired Headphones,1,11.99,12/11/19 20:10,"241 11th St, San Francisco, CA 94016" +308990,Wired Headphones,1,11.99,12/27/19 22:28,"566 Wilson St, San Francisco, CA 94016" +308991,27in 4K Gaming Monitor,1,389.99,12/20/19 19:21,"203 Hickory St, Atlanta, GA 30301" +308992,AAA Batteries (4-pack),3,2.99,12/04/19 17:01,"357 Park St, Seattle, WA 98101" +308993,Apple Airpods Headphones,1,150,12/27/19 19:04,"866 5th St, Portland, OR 97035" +308994,Apple Airpods Headphones,1,150,01/01/20 00:10,"844 Meadow St, New York City, NY 10001" +308995,Bose SoundSport Headphones,1,99.99,12/04/19 21:35,"735 11th St, New York City, NY 10001" +308996,ThinkPad Laptop,1,999.99,12/16/19 11:23,"239 Spruce St, San Francisco, CA 94016" +308997,USB-C Charging Cable,1,11.95,12/06/19 13:44,"60 North St, San Francisco, CA 94016" +308998,iPhone,1,700,12/25/19 08:51,"702 Elm St, San Francisco, CA 94016" +308999,Wired Headphones,1,11.99,12/23/19 00:18,"73 Cedar St, Atlanta, GA 30301" +309000,Macbook Pro Laptop,1,1700,12/23/19 10:55,"778 10th St, Los Angeles, CA 90001" +309001,20in Monitor,1,109.99,12/03/19 19:19,"66 Center St, Portland, ME 04101" +309002,AA Batteries (4-pack),1,3.84,12/23/19 07:53,"811 Hill St, San Francisco, CA 94016" +309003,Google Phone,1,600,12/21/19 21:49,"809 Forest St, Boston, MA 02215" +309004,Wired Headphones,1,11.99,12/01/19 18:46,"598 Ridge St, San Francisco, CA 94016" +309005,Macbook Pro Laptop,1,1700,12/09/19 06:22,"306 Church St, Atlanta, GA 30301" +309006,Apple Airpods Headphones,1,150,12/18/19 18:03,"200 Ridge St, New York City, NY 10001" +309007,USB-C Charging Cable,2,11.95,12/22/19 23:03,"177 Park St, Seattle, WA 98101" +309008,USB-C Charging Cable,1,11.95,12/26/19 17:27,"437 Spruce St, Portland, OR 97035" +309009,Apple Airpods Headphones,1,150,12/11/19 21:35,"414 Hickory St, San Francisco, CA 94016" +309010,Wired Headphones,1,11.99,12/15/19 09:35,"589 Highland St, San Francisco, CA 94016" +309011,LG Washing Machine,1,600.0,12/23/19 18:06,"434 Cedar St, New York City, NY 10001" +309012,Bose SoundSport Headphones,1,99.99,12/09/19 01:00,"729 Spruce St, Seattle, WA 98101" +309013,USB-C Charging Cable,1,11.95,12/09/19 09:20,"976 11th St, Dallas, TX 75001" +309014,AA Batteries (4-pack),1,3.84,12/14/19 19:31,"518 8th St, New York City, NY 10001" +309015,Apple Airpods Headphones,1,150,12/27/19 19:29,"240 1st St, Seattle, WA 98101" +309016,USB-C Charging Cable,1,11.95,12/19/19 12:08,"785 9th St, San Francisco, CA 94016" +309017,Lightning Charging Cable,1,14.95,12/28/19 19:44,"206 Main St, Boston, MA 02215" +309018,USB-C Charging Cable,2,11.95,12/24/19 10:18,"210 Church St, Austin, TX 73301" +309019,Lightning Charging Cable,1,14.95,12/19/19 18:16,"91 Sunset St, New York City, NY 10001" +309020,AA Batteries (4-pack),1,3.84,12/24/19 21:18,"674 Cedar St, Austin, TX 73301" +309021,Bose SoundSport Headphones,1,99.99,12/05/19 17:09,"422 13th St, Los Angeles, CA 90001" +309022,AAA Batteries (4-pack),1,2.99,12/09/19 21:16,"865 14th St, Austin, TX 73301" +309023,Apple Airpods Headphones,1,150,12/11/19 17:54,"429 12th St, Boston, MA 02215" +309024,AAA Batteries (4-pack),1,2.99,12/18/19 23:19,"750 Center St, Los Angeles, CA 90001" +309025,Flatscreen TV,1,300,12/23/19 21:30,"926 Ridge St, San Francisco, CA 94016" +309026,Bose SoundSport Headphones,1,99.99,12/07/19 14:41,"875 Willow St, Seattle, WA 98101" +309027,AAA Batteries (4-pack),4,2.99,12/18/19 11:33,"85 7th St, Portland, ME 04101" +309028,27in 4K Gaming Monitor,1,389.99,12/04/19 20:13,"599 10th St, San Francisco, CA 94016" +309029,AAA Batteries (4-pack),1,2.99,12/03/19 13:07,"39 Lake St, San Francisco, CA 94016" +309030,Flatscreen TV,1,300,12/23/19 18:59,"938 7th St, New York City, NY 10001" +309031,Apple Airpods Headphones,1,150,12/18/19 12:14,"18 Johnson St, Los Angeles, CA 90001" +309032,Bose SoundSport Headphones,1,99.99,12/01/19 13:29,"146 Madison St, Los Angeles, CA 90001" +309033,Wired Headphones,1,11.99,12/16/19 04:18,"37 13th St, New York City, NY 10001" +309034,27in FHD Monitor,1,149.99,12/07/19 20:40,"575 West St, Los Angeles, CA 90001" +309035,Wired Headphones,1,11.99,12/24/19 20:54,"263 Forest St, Boston, MA 02215" +309036,USB-C Charging Cable,1,11.95,12/16/19 14:26,"281 Spruce St, Los Angeles, CA 90001" +309037,AA Batteries (4-pack),1,3.84,12/25/19 12:23,"925 Elm St, New York City, NY 10001" +309038,Wired Headphones,1,11.99,12/08/19 18:23,"178 Sunset St, Dallas, TX 75001" +309039,20in Monitor,1,109.99,12/01/19 19:43,"699 Sunset St, Boston, MA 02215" +309040,Bose SoundSport Headphones,1,99.99,12/27/19 20:59,"217 12th St, New York City, NY 10001" +309041,27in 4K Gaming Monitor,1,389.99,12/14/19 10:22,"675 Park St, San Francisco, CA 94016" +309042,Flatscreen TV,1,300,12/04/19 13:07,"878 Church St, New York City, NY 10001" +309043,USB-C Charging Cable,1,11.95,12/31/19 10:46,"146 Jackson St, New York City, NY 10001" +309044,USB-C Charging Cable,1,11.95,12/13/19 10:44,"418 11th St, Austin, TX 73301" +309045,Vareebadd Phone,1,400,12/26/19 12:02,"354 12th St, Los Angeles, CA 90001" +309046,Wired Headphones,1,11.99,12/07/19 17:51,"168 2nd St, San Francisco, CA 94016" +309047,27in 4K Gaming Monitor,1,389.99,12/01/19 16:43,"944 Main St, Atlanta, GA 30301" +309048,Flatscreen TV,1,300,12/18/19 09:46,"383 Lincoln St, Los Angeles, CA 90001" +309049,Bose SoundSport Headphones,1,99.99,12/09/19 18:21,"596 Adams St, Portland, OR 97035" +309050,27in 4K Gaming Monitor,1,389.99,12/12/19 22:48,"32 Maple St, San Francisco, CA 94016" +309051,USB-C Charging Cable,1,11.95,12/12/19 17:41,"114 4th St, Los Angeles, CA 90001" +309052,Apple Airpods Headphones,1,150,12/07/19 10:45,"521 Chestnut St, San Francisco, CA 94016" +309053,Google Phone,1,600,12/06/19 18:33,"456 Jefferson St, New York City, NY 10001" +309054,Wired Headphones,1,11.99,12/14/19 12:14,"241 Hill St, Dallas, TX 75001" +309055,Wired Headphones,1,11.99,12/10/19 10:20,"285 11th St, San Francisco, CA 94016" +309056,Google Phone,1,600,12/05/19 20:37,"722 10th St, Boston, MA 02215" +309057,Wired Headphones,2,11.99,12/08/19 23:29,"566 Chestnut St, Atlanta, GA 30301" +309058,USB-C Charging Cable,1,11.95,12/24/19 14:29,"282 Johnson St, Austin, TX 73301" +309059,27in FHD Monitor,1,149.99,12/10/19 19:04,"972 Dogwood St, Boston, MA 02215" +309060,Wired Headphones,1,11.99,12/20/19 13:21,"786 Jefferson St, Austin, TX 73301" +309061,Macbook Pro Laptop,1,1700,12/10/19 21:44,"969 12th St, Boston, MA 02215" +309062,Apple Airpods Headphones,1,150,12/07/19 20:28,"455 Jefferson St, New York City, NY 10001" +309063,Lightning Charging Cable,1,14.95,12/03/19 22:48,"113 Elm St, Atlanta, GA 30301" +309064,Lightning Charging Cable,1,14.95,12/21/19 21:48,"795 10th St, Portland, ME 04101" +309065,ThinkPad Laptop,1,999.99,12/10/19 17:53,"517 Walnut St, Boston, MA 02215" +309066,34in Ultrawide Monitor,1,379.99,12/08/19 12:00,"900 Jackson St, Austin, TX 73301" +309067,34in Ultrawide Monitor,1,379.99,12/09/19 12:41,"12 12th St, Los Angeles, CA 90001" +309068,AAA Batteries (4-pack),1,2.99,12/05/19 08:08,"563 Church St, San Francisco, CA 94016" +309069,Apple Airpods Headphones,1,150,12/31/19 18:15,"201 Sunset St, New York City, NY 10001" +309070,20in Monitor,1,109.99,12/09/19 20:59,"759 North St, Portland, OR 97035" +309071,Flatscreen TV,1,300,12/06/19 06:25,"305 10th St, New York City, NY 10001" +309072,Wired Headphones,1,11.99,12/06/19 14:49,"789 4th St, Los Angeles, CA 90001" +309073,34in Ultrawide Monitor,1,379.99,12/29/19 08:30,"581 Highland St, San Francisco, CA 94016" +309074,AA Batteries (4-pack),2,3.84,12/22/19 09:25,"770 North St, San Francisco, CA 94016" +309075,iPhone,1,700,12/03/19 09:55,"398 Jefferson St, Boston, MA 02215" +309076,27in 4K Gaming Monitor,1,389.99,12/19/19 19:57,"469 Lincoln St, Dallas, TX 75001" +309077,27in 4K Gaming Monitor,1,389.99,12/22/19 13:31,"2 Forest St, Boston, MA 02215" +309078,USB-C Charging Cable,2,11.95,12/01/19 18:48,"334 Forest St, Seattle, WA 98101" +309079,27in 4K Gaming Monitor,1,389.99,12/10/19 20:13,"29 Willow St, Austin, TX 73301" +309080,USB-C Charging Cable,1,11.95,12/11/19 21:38,"680 Walnut St, Boston, MA 02215" +309081,Google Phone,1,600,12/24/19 16:43,"772 Church St, Seattle, WA 98101" +309082,Bose SoundSport Headphones,1,99.99,12/03/19 10:12,"836 Cherry St, New York City, NY 10001" +309083,Bose SoundSport Headphones,1,99.99,12/18/19 20:36,"760 Center St, Seattle, WA 98101" +309084,AA Batteries (4-pack),1,3.84,12/29/19 14:28,"107 4th St, Seattle, WA 98101" +309085,USB-C Charging Cable,1,11.95,12/09/19 18:03,"322 Washington St, San Francisco, CA 94016" +309086,27in 4K Gaming Monitor,1,389.99,12/05/19 09:14,"602 Spruce St, Atlanta, GA 30301" +309087,Apple Airpods Headphones,1,150,12/19/19 20:53,"613 8th St, Los Angeles, CA 90001" +309088,Lightning Charging Cable,1,14.95,12/22/19 20:52,"297 10th St, San Francisco, CA 94016" +309089,AA Batteries (4-pack),1,3.84,12/05/19 07:56,"16 Dogwood St, Boston, MA 02215" +309090,ThinkPad Laptop,1,999.99,12/08/19 11:54,"804 1st St, San Francisco, CA 94016" +309091,Lightning Charging Cable,1,14.95,12/23/19 10:02,"679 6th St, Boston, MA 02215" +309092,Lightning Charging Cable,1,14.95,12/11/19 12:39,"64 Maple St, San Francisco, CA 94016" +309093,AA Batteries (4-pack),1,3.84,12/21/19 23:13,"776 Highland St, New York City, NY 10001" +309094,ThinkPad Laptop,1,999.99,12/04/19 11:26,"558 Pine St, Boston, MA 02215" +309095,Bose SoundSport Headphones,1,99.99,12/24/19 12:13,"123 5th St, San Francisco, CA 94016" +309096,USB-C Charging Cable,1,11.95,12/10/19 11:52,"843 6th St, Boston, MA 02215" +309097,Wired Headphones,1,11.99,12/20/19 17:22,"110 North St, Seattle, WA 98101" +309098,Google Phone,1,600,12/06/19 19:56,"390 Lakeview St, Atlanta, GA 30301" +309099,USB-C Charging Cable,1,11.95,12/18/19 08:55,"335 Park St, New York City, NY 10001" +309100,AA Batteries (4-pack),1,3.84,12/01/19 18:58,"334 12th St, New York City, NY 10001" +309101,AA Batteries (4-pack),1,3.84,12/12/19 15:26,"606 Hickory St, Boston, MA 02215" +309102,20in Monitor,1,109.99,12/24/19 08:10,"961 Main St, San Francisco, CA 94016" +309103,Wired Headphones,1,11.99,12/27/19 21:17,"17 Ridge St, New York City, NY 10001" +309104,Lightning Charging Cable,1,14.95,12/06/19 21:59,"433 Washington St, Boston, MA 02215" +309105,AAA Batteries (4-pack),2,2.99,12/04/19 10:24,"519 Wilson St, Dallas, TX 75001" +309106,Bose SoundSport Headphones,1,99.99,12/10/19 06:15,"887 Ridge St, San Francisco, CA 94016" +309107,Apple Airpods Headphones,1,150,12/11/19 13:14,"366 6th St, San Francisco, CA 94016" +309108,Lightning Charging Cable,1,14.95,12/29/19 17:26,"912 Cedar St, San Francisco, CA 94016" +309109,USB-C Charging Cable,1,11.95,12/01/19 11:02,"788 Jefferson St, Los Angeles, CA 90001" +309110,Lightning Charging Cable,1,14.95,12/09/19 19:11,"941 1st St, Dallas, TX 75001" +309111,AAA Batteries (4-pack),1,2.99,12/02/19 17:33,"725 10th St, Atlanta, GA 30301" +309112,USB-C Charging Cable,2,11.95,12/29/19 18:09,"858 West St, New York City, NY 10001" +309113,Apple Airpods Headphones,1,150,12/10/19 18:01,"250 Highland St, Austin, TX 73301" +309114,Wired Headphones,1,11.99,12/07/19 23:56,"118 Walnut St, Dallas, TX 75001" +309115,USB-C Charging Cable,2,11.95,12/25/19 09:09,"556 Chestnut St, Atlanta, GA 30301" +309115,Lightning Charging Cable,1,14.95,12/25/19 09:09,"556 Chestnut St, Atlanta, GA 30301" +309116,27in FHD Monitor,1,149.99,12/25/19 13:34,"583 Sunset St, Dallas, TX 75001" +309117,AA Batteries (4-pack),1,3.84,12/13/19 12:07,"204 Hill St, Boston, MA 02215" +309118,Macbook Pro Laptop,1,1700,12/02/19 09:08,"388 Johnson St, Los Angeles, CA 90001" +309119,Bose SoundSport Headphones,1,99.99,12/19/19 11:06,"880 4th St, San Francisco, CA 94016" +309120,USB-C Charging Cable,3,11.95,12/07/19 11:44,"722 Meadow St, New York City, NY 10001" +309121,Bose SoundSport Headphones,1,99.99,12/29/19 01:42,"617 7th St, Seattle, WA 98101" +309122,Macbook Pro Laptop,1,1700,12/08/19 11:18,"532 13th St, San Francisco, CA 94016" +309123,Bose SoundSport Headphones,1,99.99,12/05/19 11:26,"616 Sunset St, Los Angeles, CA 90001" +309124,Lightning Charging Cable,1,14.95,12/01/19 16:02,"458 Meadow St, Atlanta, GA 30301" +309125,27in 4K Gaming Monitor,1,389.99,12/16/19 18:44,"120 Dogwood St, San Francisco, CA 94016" +309126,Bose SoundSport Headphones,1,99.99,12/15/19 15:05,"586 North St, Boston, MA 02215" +309127,Bose SoundSport Headphones,1,99.99,12/07/19 10:46,"765 Cherry St, Dallas, TX 75001" +309128,USB-C Charging Cable,1,11.95,12/17/19 22:00,"719 Jefferson St, New York City, NY 10001" +309129,USB-C Charging Cable,1,11.95,12/30/19 20:34,"141 Jackson St, Seattle, WA 98101" +309130,AA Batteries (4-pack),1,3.84,12/06/19 09:41,"225 Church St, New York City, NY 10001" +309131,USB-C Charging Cable,1,11.95,12/25/19 19:18,"204 Cherry St, Dallas, TX 75001" +309132,Bose SoundSport Headphones,1,99.99,12/20/19 22:24,"194 9th St, Boston, MA 02215" +309133,Bose SoundSport Headphones,1,99.99,12/27/19 23:53,"611 Walnut St, Seattle, WA 98101" +309134,AAA Batteries (4-pack),1,2.99,12/10/19 14:11,"572 Lake St, San Francisco, CA 94016" +309135,AAA Batteries (4-pack),1,2.99,12/11/19 12:10,"321 Elm St, Austin, TX 73301" +309136,20in Monitor,1,109.99,12/10/19 14:30,"84 Ridge St, San Francisco, CA 94016" +309137,Apple Airpods Headphones,1,150,12/29/19 07:39,"538 Cherry St, Austin, TX 73301" +309138,Wired Headphones,1,11.99,12/10/19 18:32,"634 Willow St, San Francisco, CA 94016" +309139,Apple Airpods Headphones,1,150,12/27/19 01:17,"653 11th St, Los Angeles, CA 90001" +309140,Lightning Charging Cable,1,14.95,12/21/19 20:00,"459 Dogwood St, San Francisco, CA 94016" +309141,20in Monitor,1,109.99,12/06/19 13:22,"608 Jackson St, New York City, NY 10001" +309142,AA Batteries (4-pack),1,3.84,12/27/19 22:45,"27 Adams St, Atlanta, GA 30301" +309143,Wired Headphones,2,11.99,12/19/19 12:29,"156 Elm St, New York City, NY 10001" +309144,USB-C Charging Cable,1,11.95,12/11/19 19:59,"235 7th St, San Francisco, CA 94016" +309145,ThinkPad Laptop,1,999.99,12/28/19 21:31,"44 13th St, Los Angeles, CA 90001" +309146,AAA Batteries (4-pack),1,2.99,12/28/19 15:42,"370 2nd St, New York City, NY 10001" +309147,iPhone,1,700,12/12/19 12:33,"302 Chestnut St, Seattle, WA 98101" +309148,Apple Airpods Headphones,1,150,12/10/19 08:38,"614 10th St, Los Angeles, CA 90001" +309149,ThinkPad Laptop,1,999.99,12/06/19 15:27,"810 North St, San Francisco, CA 94016" +309150,AA Batteries (4-pack),1,3.84,12/03/19 23:08,"8 Maple St, Los Angeles, CA 90001" +309151,Wired Headphones,1,11.99,12/18/19 08:05,"987 Maple St, Boston, MA 02215" +309152,AA Batteries (4-pack),1,3.84,12/28/19 16:37,"241 Meadow St, New York City, NY 10001" +309153,Lightning Charging Cable,1,14.95,12/03/19 18:20,"77 Jackson St, Seattle, WA 98101" +309154,AA Batteries (4-pack),1,3.84,12/07/19 15:16,"141 South St, Los Angeles, CA 90001" +309155,Bose SoundSport Headphones,1,99.99,12/26/19 18:26,"888 Highland St, San Francisco, CA 94016" +309156,Apple Airpods Headphones,1,150,12/25/19 17:52,"650 Lakeview St, Los Angeles, CA 90001" +309157,27in FHD Monitor,1,149.99,12/13/19 10:33,"231 Lake St, Los Angeles, CA 90001" +309158,AAA Batteries (4-pack),4,2.99,12/16/19 16:56,"109 Ridge St, San Francisco, CA 94016" +309159,Macbook Pro Laptop,1,1700,12/04/19 22:36,"776 Cherry St, Dallas, TX 75001" +309159,Bose SoundSport Headphones,1,99.99,12/04/19 22:36,"776 Cherry St, Dallas, TX 75001" +309160,USB-C Charging Cable,1,11.95,12/12/19 22:26,"225 2nd St, Dallas, TX 75001" +309161,27in FHD Monitor,1,149.99,12/23/19 17:48,"129 Maple St, Seattle, WA 98101" +309162,Apple Airpods Headphones,1,150,12/22/19 12:31,"302 Willow St, Boston, MA 02215" +309163,Google Phone,1,600,12/26/19 06:17,"501 Jackson St, New York City, NY 10001" +309164,Macbook Pro Laptop,1,1700,12/14/19 07:12,"243 4th St, Dallas, TX 75001" +309165,Wired Headphones,1,11.99,12/14/19 08:38,"512 Chestnut St, San Francisco, CA 94016" +309166,AAA Batteries (4-pack),1,2.99,12/09/19 16:19,"871 7th St, Los Angeles, CA 90001" +309167,20in Monitor,1,109.99,12/02/19 07:31,"188 Spruce St, Boston, MA 02215" +309168,Lightning Charging Cable,1,14.95,12/27/19 21:23,"326 4th St, Los Angeles, CA 90001" +309169,Bose SoundSport Headphones,1,99.99,12/27/19 10:05,"605 6th St, Portland, OR 97035" +309170,USB-C Charging Cable,1,11.95,12/23/19 15:59,"781 7th St, San Francisco, CA 94016" +309171,27in 4K Gaming Monitor,1,389.99,12/07/19 13:17,"897 10th St, Dallas, TX 75001" +309172,Google Phone,1,600,12/29/19 23:17,"672 7th St, Dallas, TX 75001" +309173,Apple Airpods Headphones,1,150,12/29/19 09:09,"251 2nd St, Los Angeles, CA 90001" +309174,Wired Headphones,1,11.99,12/09/19 10:54,"884 River St, Seattle, WA 98101" +309175,27in FHD Monitor,1,149.99,12/16/19 13:12,"85 1st St, Atlanta, GA 30301" +309176,USB-C Charging Cable,1,11.95,12/07/19 20:41,"412 Hill St, Boston, MA 02215" +309177,Flatscreen TV,1,300,12/13/19 11:53,"538 Madison St, Dallas, TX 75001" +309178,Apple Airpods Headphones,1,150,12/29/19 12:07,"467 West St, San Francisco, CA 94016" +309179,Flatscreen TV,1,300,12/09/19 22:26,"19 Forest St, Portland, OR 97035" +309180,Flatscreen TV,1,300,12/01/19 10:51,"647 Elm St, Seattle, WA 98101" +309181,AAA Batteries (4-pack),1,2.99,12/16/19 09:00,"693 10th St, Dallas, TX 75001" +309182,Bose SoundSport Headphones,1,99.99,12/04/19 15:10,"936 Main St, San Francisco, CA 94016" +309183,Macbook Pro Laptop,1,1700,12/27/19 14:38,"381 Lake St, San Francisco, CA 94016" +309184,USB-C Charging Cable,1,11.95,12/25/19 16:51,"466 Highland St, Los Angeles, CA 90001" +309185,20in Monitor,1,109.99,12/14/19 09:27,"24 Walnut St, Los Angeles, CA 90001" +309186,USB-C Charging Cable,1,11.95,12/22/19 16:22,"729 Willow St, New York City, NY 10001" +309187,Lightning Charging Cable,1,14.95,12/05/19 15:57,"612 12th St, Dallas, TX 75001" +309188,AA Batteries (4-pack),1,3.84,12/25/19 18:59,"679 South St, Austin, TX 73301" +309189,AA Batteries (4-pack),1,3.84,12/31/19 10:56,"182 North St, Boston, MA 02215" +309190,AA Batteries (4-pack),1,3.84,12/09/19 16:22,"959 5th St, Los Angeles, CA 90001" +309191,Wired Headphones,1,11.99,12/08/19 17:00,"927 Main St, San Francisco, CA 94016" +309192,iPhone,1,700,12/31/19 11:32,"780 North St, Austin, TX 73301" +309193,27in FHD Monitor,1,149.99,12/07/19 14:13,"763 Johnson St, Dallas, TX 75001" +309194,20in Monitor,1,109.99,12/12/19 19:08,"645 North St, New York City, NY 10001" +309195,Lightning Charging Cable,1,14.95,12/15/19 20:21,"914 Adams St, New York City, NY 10001" +309196,Wired Headphones,1,11.99,12/10/19 11:42,"445 Cherry St, Seattle, WA 98101" +309197,Bose SoundSport Headphones,1,99.99,12/21/19 20:09,"836 Lincoln St, New York City, NY 10001" +309198,Wired Headphones,1,11.99,12/09/19 06:51,"299 12th St, Atlanta, GA 30301" +309199,iPhone,1,700,12/01/19 10:31,"115 14th St, Los Angeles, CA 90001" +309200,AAA Batteries (4-pack),1,2.99,12/22/19 16:49,"472 Ridge St, San Francisco, CA 94016" +309201,iPhone,1,700,12/31/19 13:45,"457 River St, Los Angeles, CA 90001" +309201,Wired Headphones,2,11.99,12/31/19 13:45,"457 River St, Los Angeles, CA 90001" +309202,Wired Headphones,1,11.99,12/24/19 09:13,"797 6th St, Portland, OR 97035" +309203,Flatscreen TV,1,300,12/29/19 22:19,"253 Jefferson St, New York City, NY 10001" +309204,Google Phone,1,600,12/16/19 07:48,"323 6th St, Portland, OR 97035" +309205,Apple Airpods Headphones,1,150,12/12/19 14:59,"497 6th St, New York City, NY 10001" +309206,Lightning Charging Cable,1,14.95,12/11/19 22:14,"682 9th St, San Francisco, CA 94016" +309207,AAA Batteries (4-pack),1,2.99,12/19/19 09:40,"224 Dogwood St, Boston, MA 02215" +309208,Apple Airpods Headphones,1,150,12/26/19 15:27,"767 South St, San Francisco, CA 94016" +309209,Wired Headphones,1,11.99,12/26/19 00:58,"248 West St, Portland, OR 97035" +309210,USB-C Charging Cable,2,11.95,12/16/19 17:18,"369 Walnut St, Dallas, TX 75001" +309211,AAA Batteries (4-pack),1,2.99,12/23/19 13:03,"166 Lincoln St, Dallas, TX 75001" +309212,AA Batteries (4-pack),2,3.84,12/02/19 12:32,"295 South St, Dallas, TX 75001" +309213,Apple Airpods Headphones,1,150,12/14/19 20:54,"703 Highland St, Dallas, TX 75001" +309214,Lightning Charging Cable,1,14.95,12/26/19 12:09,"942 Hickory St, New York City, NY 10001" +309215,Wired Headphones,1,11.99,12/01/19 07:36,"483 Elm St, Boston, MA 02215" +309216,AAA Batteries (4-pack),1,2.99,12/31/19 15:19,"470 South St, Austin, TX 73301" +309217,USB-C Charging Cable,1,11.95,12/01/19 20:57,"387 9th St, Portland, OR 97035" +309218,AAA Batteries (4-pack),2,2.99,12/27/19 03:04,"803 10th St, San Francisco, CA 94016" +309219,Wired Headphones,1,11.99,12/24/19 09:58,"757 Walnut St, San Francisco, CA 94016" +309220,iPhone,1,700,12/22/19 18:22,"323 Pine St, Portland, OR 97035" +309221,27in FHD Monitor,1,149.99,12/17/19 11:58,"398 Maple St, San Francisco, CA 94016" +309222,AAA Batteries (4-pack),2,2.99,12/16/19 09:56,"226 5th St, San Francisco, CA 94016" +309223,27in FHD Monitor,1,149.99,12/14/19 12:36,"881 13th St, Atlanta, GA 30301" +309224,AAA Batteries (4-pack),2,2.99,12/06/19 22:10,"28 Highland St, Los Angeles, CA 90001" +309225,Vareebadd Phone,1,400,12/01/19 16:03,"213 7th St, Seattle, WA 98101" +309226,Macbook Pro Laptop,1,1700,12/13/19 16:37,"151 Hickory St, Seattle, WA 98101" +309227,USB-C Charging Cable,1,11.95,12/08/19 15:45,"385 Lakeview St, Dallas, TX 75001" +309228,Google Phone,1,600,12/30/19 12:41,"393 Cedar St, Boston, MA 02215" +309229,Google Phone,1,600,12/26/19 17:45,"953 9th St, Dallas, TX 75001" +309230,Apple Airpods Headphones,2,150,12/04/19 13:31,"292 12th St, Seattle, WA 98101" +309231,ThinkPad Laptop,1,999.99,12/09/19 12:08,"296 Highland St, New York City, NY 10001" +309232,Apple Airpods Headphones,1,150,12/17/19 16:59,"396 6th St, San Francisco, CA 94016" +309233,AAA Batteries (4-pack),2,2.99,12/03/19 12:09,"92 South St, Los Angeles, CA 90001" +309234,27in 4K Gaming Monitor,1,389.99,12/19/19 18:48,"491 Willow St, Dallas, TX 75001" +309235,Macbook Pro Laptop,1,1700,12/20/19 13:44,"179 Chestnut St, Dallas, TX 75001" +309236,Lightning Charging Cable,1,14.95,12/20/19 05:15,"373 South St, New York City, NY 10001" +309237,AA Batteries (4-pack),2,3.84,12/25/19 13:44,"479 11th St, Atlanta, GA 30301" +309238,Macbook Pro Laptop,1,1700,12/03/19 17:39,"396 Elm St, New York City, NY 10001" +309239,Bose SoundSport Headphones,1,99.99,12/29/19 18:19,"170 Madison St, San Francisco, CA 94016" +309240,Wired Headphones,1,11.99,12/23/19 14:14,"279 Walnut St, Boston, MA 02215" +309241,Google Phone,1,600,12/14/19 19:33,"14 Wilson St, Atlanta, GA 30301" +309242,AAA Batteries (4-pack),1,2.99,12/30/19 13:46,"859 Church St, Seattle, WA 98101" +309243,LG Washing Machine,1,600.0,12/14/19 19:57,"822 Adams St, Los Angeles, CA 90001" +309244,USB-C Charging Cable,2,11.95,12/05/19 15:50,"726 Highland St, San Francisco, CA 94016" +309245,27in FHD Monitor,1,149.99,12/10/19 12:40,"758 Chestnut St, San Francisco, CA 94016" +309246,AAA Batteries (4-pack),1,2.99,12/09/19 11:09,"444 Pine St, San Francisco, CA 94016" +309247,AA Batteries (4-pack),1,3.84,12/07/19 11:46,"802 Hickory St, Portland, OR 97035" +309248,Lightning Charging Cable,1,14.95,12/03/19 20:45,"55 Madison St, Boston, MA 02215" +309249,Apple Airpods Headphones,1,150,12/26/19 20:14,"942 South St, Seattle, WA 98101" +309250,AAA Batteries (4-pack),1,2.99,12/10/19 22:29,"737 Madison St, New York City, NY 10001" +309251,AA Batteries (4-pack),2,3.84,12/21/19 13:36,"695 Main St, New York City, NY 10001" +309252,ThinkPad Laptop,1,999.99,12/24/19 16:07,"94 Jackson St, San Francisco, CA 94016" +309253,27in 4K Gaming Monitor,1,389.99,12/24/19 18:18,"242 Meadow St, Atlanta, GA 30301" +309254,Bose SoundSport Headphones,1,99.99,12/04/19 11:47,"917 Ridge St, Boston, MA 02215" +309255,Bose SoundSport Headphones,1,99.99,12/29/19 11:24,"913 Sunset St, Seattle, WA 98101" +309256,AAA Batteries (4-pack),4,2.99,12/19/19 12:37,"990 Walnut St, Los Angeles, CA 90001" +309257,AAA Batteries (4-pack),1,2.99,12/27/19 20:32,"390 Lakeview St, Austin, TX 73301" +309258,20in Monitor,1,109.99,12/19/19 20:26,"769 Ridge St, Austin, TX 73301" +309259,Wired Headphones,1,11.99,12/16/19 22:59,"634 Washington St, Seattle, WA 98101" +309260,20in Monitor,1,109.99,12/22/19 08:33,"933 2nd St, Boston, MA 02215" +309261,AAA Batteries (4-pack),1,2.99,12/08/19 15:06,"998 Adams St, Seattle, WA 98101" +309262,Lightning Charging Cable,1,14.95,12/26/19 20:09,"392 Hickory St, Los Angeles, CA 90001" +309263,20in Monitor,1,109.99,12/14/19 10:57,"592 South St, Dallas, TX 75001" +309264,Bose SoundSport Headphones,1,99.99,12/27/19 18:12,"4 Maple St, San Francisco, CA 94016" +309265,Lightning Charging Cable,1,14.95,12/05/19 18:44,"71 Hickory St, San Francisco, CA 94016" +309266,Macbook Pro Laptop,1,1700,12/08/19 11:21,"123 Pine St, Boston, MA 02215" +309267,AAA Batteries (4-pack),1,2.99,12/05/19 19:24,"863 Johnson St, Seattle, WA 98101" +309268,Lightning Charging Cable,1,14.95,12/06/19 13:15,"596 Jackson St, New York City, NY 10001" +309269,Wired Headphones,1,11.99,12/02/19 00:42,"261 Dogwood St, New York City, NY 10001" +309270,Apple Airpods Headphones,1,150,12/25/19 22:19,"554 11th St, Los Angeles, CA 90001" +309271,USB-C Charging Cable,1,11.95,12/02/19 12:03,"313 Meadow St, Austin, TX 73301" +309272,Flatscreen TV,1,300,12/27/19 22:06,"903 10th St, San Francisco, CA 94016" +309273,AAA Batteries (4-pack),1,2.99,12/25/19 10:58,"748 13th St, New York City, NY 10001" +309274,AAA Batteries (4-pack),1,2.99,12/27/19 19:31,"624 Forest St, San Francisco, CA 94016" +309275,Bose SoundSport Headphones,1,99.99,12/15/19 06:52,"64 Washington St, Austin, TX 73301" +309276,27in 4K Gaming Monitor,1,389.99,12/23/19 15:16,"558 South St, Seattle, WA 98101" +309277,Apple Airpods Headphones,1,150,12/10/19 19:58,"948 Highland St, New York City, NY 10001" +309278,Lightning Charging Cable,1,14.95,12/07/19 22:23,"656 14th St, Los Angeles, CA 90001" +309279,AAA Batteries (4-pack),1,2.99,12/07/19 06:53,"12 Hill St, New York City, NY 10001" +309280,Lightning Charging Cable,1,14.95,12/23/19 20:02,"205 Lake St, Atlanta, GA 30301" +309281,Wired Headphones,1,11.99,12/12/19 12:25,"909 Jackson St, Austin, TX 73301" +309282,34in Ultrawide Monitor,1,379.99,12/15/19 09:52,"863 Jefferson St, Atlanta, GA 30301" +309283,USB-C Charging Cable,1,11.95,12/06/19 09:59,"300 5th St, New York City, NY 10001" +309284,Lightning Charging Cable,1,14.95,12/30/19 23:28,"295 Hill St, New York City, NY 10001" +309285,AA Batteries (4-pack),1,3.84,12/02/19 14:38,"719 14th St, San Francisco, CA 94016" +309286,AAA Batteries (4-pack),3,2.99,12/27/19 22:15,"638 Madison St, San Francisco, CA 94016" +309287,AA Batteries (4-pack),1,3.84,12/19/19 18:55,"343 10th St, San Francisco, CA 94016" +309288,USB-C Charging Cable,1,11.95,12/16/19 13:39,"734 10th St, Los Angeles, CA 90001" +309289,Google Phone,1,600,12/30/19 11:13,"3 River St, San Francisco, CA 94016" +309289,USB-C Charging Cable,1,11.95,12/30/19 11:13,"3 River St, San Francisco, CA 94016" +309290,AAA Batteries (4-pack),1,2.99,12/11/19 14:32,"352 Maple St, San Francisco, CA 94016" +309291,USB-C Charging Cable,1,11.95,12/17/19 13:34,"490 Jefferson St, San Francisco, CA 94016" +309292,USB-C Charging Cable,1,11.95,12/07/19 13:20,"960 Forest St, Boston, MA 02215" +309293,Apple Airpods Headphones,1,150,12/03/19 21:33,"972 Jackson St, New York City, NY 10001" +309294,USB-C Charging Cable,1,11.95,12/23/19 21:55,"629 Cedar St, Atlanta, GA 30301" +309295,Lightning Charging Cable,1,14.95,12/04/19 11:00,"15 Spruce St, San Francisco, CA 94016" +309296,Bose SoundSport Headphones,1,99.99,12/16/19 13:20,"133 5th St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +309297,27in FHD Monitor,1,149.99,12/12/19 22:36,"207 North St, Atlanta, GA 30301" +309298,Lightning Charging Cable,1,14.95,01/01/20 00:11,"439 North St, Seattle, WA 98101" +309299,Google Phone,1,600,12/30/19 02:15,"446 Main St, San Francisco, CA 94016" +309300,Lightning Charging Cable,1,14.95,12/09/19 13:33,"280 Cherry St, San Francisco, CA 94016" +309300,Lightning Charging Cable,1,14.95,12/09/19 13:33,"280 Cherry St, San Francisco, CA 94016" +309301,Bose SoundSport Headphones,1,99.99,12/16/19 00:05,"383 11th St, Portland, ME 04101" +309302,27in FHD Monitor,1,149.99,12/17/19 17:11,"578 8th St, New York City, NY 10001" +309303,AAA Batteries (4-pack),1,2.99,12/14/19 16:36,"604 6th St, Los Angeles, CA 90001" +309304,Flatscreen TV,1,300,12/01/19 14:28,"595 Jackson St, Dallas, TX 75001" +309305,Bose SoundSport Headphones,1,99.99,12/13/19 07:03,"935 Chestnut St, Los Angeles, CA 90001" +309306,AAA Batteries (4-pack),1,2.99,12/06/19 17:18,"684 Jackson St, Seattle, WA 98101" +309307,AA Batteries (4-pack),1,3.84,12/14/19 14:05,"741 Park St, Atlanta, GA 30301" +309308,Bose SoundSport Headphones,1,99.99,12/06/19 11:29,"754 14th St, Los Angeles, CA 90001" +309309,AA Batteries (4-pack),1,3.84,12/12/19 15:04,"261 Johnson St, Austin, TX 73301" +309310,Apple Airpods Headphones,1,150,12/27/19 01:44,"436 Adams St, San Francisco, CA 94016" +309311,Lightning Charging Cable,1,14.95,12/02/19 11:16,"593 11th St, New York City, NY 10001" +309312,AAA Batteries (4-pack),2,2.99,12/11/19 19:27,"687 14th St, Portland, OR 97035" +309313,Lightning Charging Cable,1,14.95,12/01/19 22:23,"429 North St, Los Angeles, CA 90001" +309314,AAA Batteries (4-pack),1,2.99,12/12/19 15:11,"4 Wilson St, Austin, TX 73301" +309315,AA Batteries (4-pack),1,3.84,12/08/19 13:46,"144 Dogwood St, Los Angeles, CA 90001" +309316,Wired Headphones,1,11.99,12/10/19 11:10,"393 Sunset St, Portland, OR 97035" +309317,Lightning Charging Cable,1,14.95,12/31/19 10:58,"831 Jackson St, Dallas, TX 75001" +309318,Wired Headphones,1,11.99,12/23/19 14:33,"605 Lincoln St, Portland, OR 97035" +309319,27in FHD Monitor,1,149.99,12/23/19 09:28,"627 Madison St, Portland, OR 97035" +309320,AA Batteries (4-pack),2,3.84,12/25/19 19:53,"243 13th St, San Francisco, CA 94016" +309321,34in Ultrawide Monitor,1,379.99,12/21/19 19:35,"815 Pine St, Austin, TX 73301" +309322,Lightning Charging Cable,1,14.95,12/19/19 17:21,"600 Jefferson St, New York City, NY 10001" +309323,AA Batteries (4-pack),1,3.84,12/11/19 23:56,"133 Spruce St, Atlanta, GA 30301" +309324,AAA Batteries (4-pack),1,2.99,12/07/19 19:16,"449 Park St, New York City, NY 10001" +309325,USB-C Charging Cable,1,11.95,12/02/19 13:36,"249 Cedar St, Los Angeles, CA 90001" +309326,Wired Headphones,1,11.99,12/14/19 12:30,"136 Cedar St, Seattle, WA 98101" +309327,AA Batteries (4-pack),1,3.84,12/11/19 16:27,"886 7th St, Austin, TX 73301" +309328,Lightning Charging Cable,1,14.95,12/08/19 21:30,"176 Jackson St, San Francisco, CA 94016" +309329,34in Ultrawide Monitor,1,379.99,12/24/19 15:31,"372 Hickory St, San Francisco, CA 94016" +309330,Apple Airpods Headphones,1,150,12/21/19 09:58,"458 Pine St, Boston, MA 02215" +309331,Google Phone,1,600,12/19/19 20:38,"495 Adams St, San Francisco, CA 94016" +309332,AAA Batteries (4-pack),1,2.99,12/12/19 14:58,"187 Walnut St, Los Angeles, CA 90001" +309333,Apple Airpods Headphones,1,150,12/30/19 22:35,"646 Meadow St, Atlanta, GA 30301" +309334,Macbook Pro Laptop,1,1700,01/01/20 00:49,"995 Walnut St, Seattle, WA 98101" +309335,iPhone,1,700,12/23/19 10:55,"631 13th St, Atlanta, GA 30301" +309336,34in Ultrawide Monitor,1,379.99,12/08/19 21:14,"761 South St, New York City, NY 10001" +309337,ThinkPad Laptop,1,999.99,12/17/19 06:26,"603 Forest St, San Francisco, CA 94016" +309338,AAA Batteries (4-pack),2,2.99,12/12/19 14:29,"97 6th St, Los Angeles, CA 90001" +309339,27in FHD Monitor,1,149.99,12/06/19 14:56,"98 7th St, Los Angeles, CA 90001" +309340,Flatscreen TV,1,300,12/26/19 14:56,"813 13th St, Boston, MA 02215" +309341,AAA Batteries (4-pack),1,2.99,12/08/19 07:24,"103 Jackson St, San Francisco, CA 94016" +309342,Google Phone,1,600,12/06/19 19:24,"523 Lincoln St, San Francisco, CA 94016" +309343,USB-C Charging Cable,1,11.95,12/29/19 16:09,"69 Walnut St, San Francisco, CA 94016" +309343,27in FHD Monitor,1,149.99,12/29/19 16:09,"69 Walnut St, San Francisco, CA 94016" +309344,AAA Batteries (4-pack),2,2.99,12/01/19 11:19,"505 Dogwood St, San Francisco, CA 94016" +309345,Wired Headphones,1,11.99,12/10/19 09:02,"568 Dogwood St, Los Angeles, CA 90001" +309346,AA Batteries (4-pack),1,3.84,12/30/19 13:26,"669 Lake St, New York City, NY 10001" +309347,AA Batteries (4-pack),1,3.84,12/23/19 21:45,"462 7th St, Dallas, TX 75001" +309348,Lightning Charging Cable,1,14.95,12/14/19 16:46,"577 7th St, Los Angeles, CA 90001" +309349,27in 4K Gaming Monitor,1,389.99,12/20/19 20:45,"769 Jackson St, Los Angeles, CA 90001" +309350,Lightning Charging Cable,1,14.95,12/17/19 15:55,"854 Ridge St, San Francisco, CA 94016" +309351,Lightning Charging Cable,1,14.95,12/22/19 09:51,"799 West St, Los Angeles, CA 90001" +309352,AAA Batteries (4-pack),1,2.99,12/29/19 08:26,"844 7th St, Los Angeles, CA 90001" +309353,iPhone,1,700,12/11/19 10:33,"765 6th St, Portland, ME 04101" +309354,AAA Batteries (4-pack),2,2.99,12/15/19 08:14,"810 5th St, San Francisco, CA 94016" +309355,Lightning Charging Cable,1,14.95,12/03/19 19:48,"276 Johnson St, San Francisco, CA 94016" +309356,34in Ultrawide Monitor,1,379.99,12/26/19 11:15,"493 Ridge St, Boston, MA 02215" +309357,27in FHD Monitor,1,149.99,12/04/19 09:52,"688 Hill St, Austin, TX 73301" +309358,20in Monitor,1,109.99,12/04/19 15:43,"779 Dogwood St, Los Angeles, CA 90001" +309359,Lightning Charging Cable,1,14.95,12/08/19 19:29,"851 Jefferson St, Austin, TX 73301" +309359,AAA Batteries (4-pack),1,2.99,12/08/19 19:29,"851 Jefferson St, Austin, TX 73301" +309360,Wired Headphones,1,11.99,12/10/19 23:58,"780 2nd St, San Francisco, CA 94016" +309361,Apple Airpods Headphones,1,150,12/04/19 12:24,"696 9th St, Portland, OR 97035" +309362,AAA Batteries (4-pack),1,2.99,12/08/19 16:59,"766 Lakeview St, San Francisco, CA 94016" +309363,AA Batteries (4-pack),1,3.84,12/15/19 07:51,"242 South St, San Francisco, CA 94016" +309364,Macbook Pro Laptop,1,1700,12/24/19 11:57,"753 Meadow St, Seattle, WA 98101" +309365,Apple Airpods Headphones,1,150,12/19/19 15:19,"869 14th St, Los Angeles, CA 90001" +309366,Bose SoundSport Headphones,1,99.99,12/12/19 10:03,"178 Forest St, San Francisco, CA 94016" +309367,Flatscreen TV,1,300,12/04/19 07:10,"236 Washington St, Atlanta, GA 30301" +309368,AAA Batteries (4-pack),3,2.99,12/29/19 21:05,"225 Walnut St, Atlanta, GA 30301" +309369,AA Batteries (4-pack),1,3.84,12/11/19 16:56,"765 Elm St, New York City, NY 10001" +309370,Bose SoundSport Headphones,1,99.99,12/18/19 16:40,"388 Lincoln St, Portland, OR 97035" +309371,AA Batteries (4-pack),1,3.84,12/30/19 22:37,"683 Willow St, San Francisco, CA 94016" +309372,USB-C Charging Cable,1,11.95,12/04/19 18:24,"925 Spruce St, Los Angeles, CA 90001" +309373,AAA Batteries (4-pack),1,2.99,12/01/19 21:26,"22 Meadow St, Portland, OR 97035" +309374,USB-C Charging Cable,1,11.95,12/20/19 22:00,"806 14th St, San Francisco, CA 94016" +309375,AA Batteries (4-pack),1,3.84,12/29/19 22:40,"830 10th St, Los Angeles, CA 90001" +309376,27in FHD Monitor,1,149.99,12/11/19 13:08,"926 Cedar St, Boston, MA 02215" +309377,27in FHD Monitor,1,149.99,12/22/19 10:53,"949 River St, San Francisco, CA 94016" +309378,Bose SoundSport Headphones,1,99.99,12/04/19 12:20,"891 Lake St, Dallas, TX 75001" +309379,Flatscreen TV,1,300,12/02/19 11:14,"780 12th St, Los Angeles, CA 90001" +309380,Wired Headphones,1,11.99,12/31/19 15:59,"812 Walnut St, Atlanta, GA 30301" +309381,AAA Batteries (4-pack),1,2.99,12/12/19 22:42,"146 11th St, San Francisco, CA 94016" +309382,Apple Airpods Headphones,1,150,12/16/19 06:15,"550 Highland St, Los Angeles, CA 90001" +309383,AA Batteries (4-pack),1,3.84,12/24/19 17:40,"892 Hickory St, San Francisco, CA 94016" +309384,ThinkPad Laptop,1,999.99,12/19/19 16:01,"880 Walnut St, Portland, OR 97035" +309385,34in Ultrawide Monitor,1,379.99,12/15/19 16:04,"99 Center St, Portland, OR 97035" +309386,Wired Headphones,1,11.99,12/27/19 18:22,"17 Adams St, San Francisco, CA 94016" +309387,Lightning Charging Cable,1,14.95,12/31/19 13:35,"319 13th St, San Francisco, CA 94016" +309388,USB-C Charging Cable,1,11.95,12/21/19 09:46,"598 13th St, Atlanta, GA 30301" +309389,Wired Headphones,1,11.99,12/24/19 14:15,"474 7th St, Dallas, TX 75001" +309390,Lightning Charging Cable,1,14.95,12/20/19 20:31,"33 Park St, Portland, OR 97035" +309391,AA Batteries (4-pack),1,3.84,12/02/19 16:47,"255 South St, Boston, MA 02215" +309391,20in Monitor,1,109.99,12/02/19 16:47,"255 South St, Boston, MA 02215" +309392,Wired Headphones,1,11.99,12/12/19 15:09,"293 13th St, Dallas, TX 75001" +309393,iPhone,1,700,12/01/19 13:34,"149 Hill St, Portland, ME 04101" +309394,Wired Headphones,1,11.99,12/23/19 11:28,"732 14th St, Portland, OR 97035" +309395,Wired Headphones,1,11.99,12/12/19 22:19,"821 River St, San Francisco, CA 94016" +309396,Apple Airpods Headphones,1,150,12/29/19 15:43,"516 Madison St, Boston, MA 02215" +309397,AAA Batteries (4-pack),1,2.99,12/12/19 18:50,"931 Spruce St, Portland, OR 97035" +309398,AAA Batteries (4-pack),1,2.99,12/12/19 08:47,"414 Forest St, Atlanta, GA 30301" +309399,Lightning Charging Cable,1,14.95,12/05/19 14:23,"984 Church St, New York City, NY 10001" +309400,Wired Headphones,1,11.99,12/20/19 06:44,"760 Jefferson St, Atlanta, GA 30301" +309401,Google Phone,1,600,12/20/19 21:33,"245 Madison St, San Francisco, CA 94016" +309402,Lightning Charging Cable,2,14.95,12/30/19 05:35,"687 Lake St, San Francisco, CA 94016" +309403,Apple Airpods Headphones,1,150,12/16/19 00:37,"889 Johnson St, New York City, NY 10001" +309404,AA Batteries (4-pack),1,3.84,12/07/19 21:26,"42 Highland St, Los Angeles, CA 90001" +309405,AA Batteries (4-pack),2,3.84,12/30/19 12:07,"848 Johnson St, San Francisco, CA 94016" +309406,ThinkPad Laptop,1,999.99,12/06/19 15:41,"426 Dogwood St, Atlanta, GA 30301" +309407,27in FHD Monitor,1,149.99,12/23/19 00:38,"366 River St, Los Angeles, CA 90001" +309408,Apple Airpods Headphones,1,150,12/10/19 18:33,"359 Washington St, San Francisco, CA 94016" +309409,iPhone,1,700,12/10/19 09:48,"790 8th St, Boston, MA 02215" +309410,USB-C Charging Cable,1,11.95,12/29/19 20:29,"702 Sunset St, Los Angeles, CA 90001" +309411,Lightning Charging Cable,1,14.95,12/17/19 15:00,"215 Lakeview St, Boston, MA 02215" +309412,AAA Batteries (4-pack),3,2.99,12/29/19 06:32,"362 Adams St, Los Angeles, CA 90001" +309413,iPhone,1,700,12/03/19 13:56,"949 Hill St, New York City, NY 10001" +309413,Wired Headphones,1,11.99,12/03/19 13:56,"949 Hill St, New York City, NY 10001" +309414,Lightning Charging Cable,1,14.95,12/04/19 23:38,"354 13th St, New York City, NY 10001" +309415,iPhone,1,700,12/17/19 19:53,"305 12th St, Boston, MA 02215" +309415,Wired Headphones,1,11.99,12/17/19 19:53,"305 12th St, Boston, MA 02215" +309416,USB-C Charging Cable,1,11.95,12/10/19 17:09,"681 13th St, Seattle, WA 98101" +309417,34in Ultrawide Monitor,1,379.99,12/20/19 23:40,"940 Willow St, San Francisco, CA 94016" +309418,Apple Airpods Headphones,1,150,12/19/19 19:13,"49 Hickory St, Dallas, TX 75001" +309419,34in Ultrawide Monitor,1,379.99,12/13/19 08:28,"628 5th St, San Francisco, CA 94016" +309420,34in Ultrawide Monitor,1,379.99,12/14/19 16:11,"453 Hill St, Los Angeles, CA 90001" +309421,USB-C Charging Cable,1,11.95,12/03/19 18:56,"408 6th St, San Francisco, CA 94016" +309422,AAA Batteries (4-pack),1,2.99,12/10/19 12:05,"744 Center St, Los Angeles, CA 90001" +309423,AAA Batteries (4-pack),1,2.99,12/16/19 11:51,"527 Church St, Atlanta, GA 30301" +309424,AAA Batteries (4-pack),2,2.99,12/10/19 13:23,"703 Lake St, Dallas, TX 75001" +309425,Wired Headphones,1,11.99,12/02/19 15:51,"65 Washington St, San Francisco, CA 94016" +309426,Bose SoundSport Headphones,1,99.99,12/28/19 07:14,"26 Elm St, Portland, OR 97035" +309427,27in FHD Monitor,1,149.99,12/06/19 07:12,"205 Cherry St, San Francisco, CA 94016" +309428,34in Ultrawide Monitor,1,379.99,12/30/19 16:31,"295 Park St, Dallas, TX 75001" +309429,AA Batteries (4-pack),1,3.84,12/19/19 09:21,"105 Lakeview St, Los Angeles, CA 90001" +309430,AA Batteries (4-pack),1,3.84,12/09/19 21:26,"267 Park St, Boston, MA 02215" +309431,Bose SoundSport Headphones,1,99.99,12/27/19 15:16,"656 Jackson St, New York City, NY 10001" +309432,Bose SoundSport Headphones,1,99.99,12/08/19 18:20,"414 Jefferson St, Atlanta, GA 30301" +309433,iPhone,1,700,12/16/19 12:46,"38 Hickory St, San Francisco, CA 94016" +309434,AA Batteries (4-pack),1,3.84,12/24/19 03:27,"973 Elm St, New York City, NY 10001" +309435,AAA Batteries (4-pack),2,2.99,12/07/19 02:46,"569 4th St, San Francisco, CA 94016" +309436,Flatscreen TV,1,300,12/25/19 22:19,"181 Cherry St, Los Angeles, CA 90001" +309437,AAA Batteries (4-pack),1,2.99,12/04/19 01:36,"397 2nd St, Portland, OR 97035" +309438,Lightning Charging Cable,1,14.95,12/09/19 08:20,"360 Forest St, Atlanta, GA 30301" +309439,Apple Airpods Headphones,1,150,12/07/19 19:39,"959 Main St, Atlanta, GA 30301" +309440,Vareebadd Phone,1,400,12/04/19 16:06,"287 Dogwood St, Portland, OR 97035" +309440,Wired Headphones,1,11.99,12/04/19 16:06,"287 Dogwood St, Portland, OR 97035" +309441,27in FHD Monitor,1,149.99,12/06/19 10:33,"976 Pine St, New York City, NY 10001" +309441,Apple Airpods Headphones,1,150,12/06/19 10:33,"976 Pine St, New York City, NY 10001" +309442,Lightning Charging Cable,1,14.95,12/30/19 13:15,"999 Pine St, Los Angeles, CA 90001" +309443,AA Batteries (4-pack),1,3.84,12/12/19 22:32,"418 Jackson St, Seattle, WA 98101" +309444,iPhone,1,700,12/26/19 15:56,"590 8th St, Atlanta, GA 30301" +309445,34in Ultrawide Monitor,1,379.99,12/16/19 10:20,"998 Sunset St, San Francisco, CA 94016" +309446,Lightning Charging Cable,1,14.95,12/11/19 08:49,"266 Center St, Seattle, WA 98101" +309447,AA Batteries (4-pack),1,3.84,12/02/19 08:13,"821 Ridge St, Atlanta, GA 30301" +309448,USB-C Charging Cable,1,11.95,12/15/19 23:27,"932 Hill St, San Francisco, CA 94016" +309449,ThinkPad Laptop,1,999.99,12/24/19 05:32,"934 Meadow St, Austin, TX 73301" +309450,AAA Batteries (4-pack),2,2.99,12/21/19 10:52,"326 South St, San Francisco, CA 94016" +309451,20in Monitor,1,109.99,12/14/19 18:03,"448 Sunset St, New York City, NY 10001" +309452,USB-C Charging Cable,2,11.95,12/09/19 09:13,"513 Highland St, Portland, ME 04101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +309453,ThinkPad Laptop,1,999.99,12/25/19 13:17,"394 Main St, Los Angeles, CA 90001" +309454,27in FHD Monitor,1,149.99,12/23/19 15:09,"361 12th St, Seattle, WA 98101" +309455,AAA Batteries (4-pack),2,2.99,12/03/19 20:01,"698 Washington St, San Francisco, CA 94016" +309456,Lightning Charging Cable,1,14.95,12/02/19 21:26,"145 Walnut St, Atlanta, GA 30301" +309457,Wired Headphones,1,11.99,12/16/19 19:16,"515 Park St, Los Angeles, CA 90001" +309458,AA Batteries (4-pack),1,3.84,12/06/19 23:25,"263 Center St, Los Angeles, CA 90001" +309459,Wired Headphones,1,11.99,12/14/19 17:29,"371 River St, San Francisco, CA 94016" +309460,Lightning Charging Cable,1,14.95,12/20/19 19:34,"558 Cherry St, Atlanta, GA 30301" +309461,AAA Batteries (4-pack),1,2.99,12/11/19 20:15,"757 Lincoln St, San Francisco, CA 94016" +309462,Wired Headphones,1,11.99,12/07/19 18:26,"405 7th St, New York City, NY 10001" +309463,Wired Headphones,1,11.99,12/30/19 10:34,"746 Jefferson St, San Francisco, CA 94016" +309464,Lightning Charging Cable,1,14.95,12/03/19 22:54,"74 Park St, Los Angeles, CA 90001" +309465,34in Ultrawide Monitor,1,379.99,12/29/19 20:58,"996 Hill St, Seattle, WA 98101" +309466,USB-C Charging Cable,1,11.95,12/05/19 18:16,"489 6th St, San Francisco, CA 94016" +309467,Google Phone,1,600,12/12/19 05:52,"686 5th St, New York City, NY 10001" +309468,Flatscreen TV,1,300,12/30/19 14:36,"536 14th St, San Francisco, CA 94016" +309469,Wired Headphones,1,11.99,12/29/19 00:06,"424 14th St, Dallas, TX 75001" +309470,Apple Airpods Headphones,1,150,12/10/19 09:02,"113 1st St, San Francisco, CA 94016" +309471,Apple Airpods Headphones,1,150,12/23/19 19:02,"370 Wilson St, New York City, NY 10001" +309472,AA Batteries (4-pack),1,3.84,12/29/19 17:18,"94 Sunset St, Dallas, TX 75001" +309473,AA Batteries (4-pack),1,3.84,12/16/19 14:20,"483 Highland St, Los Angeles, CA 90001" +309474,Wired Headphones,1,11.99,12/09/19 12:16,"875 5th St, Los Angeles, CA 90001" +309475,Wired Headphones,1,11.99,12/05/19 15:23,"684 Washington St, Los Angeles, CA 90001" +309476,Wired Headphones,1,11.99,12/30/19 15:41,"584 8th St, San Francisco, CA 94016" +309477,iPhone,1,700,12/30/19 21:11,"610 2nd St, Atlanta, GA 30301" +309477,Lightning Charging Cable,1,14.95,12/30/19 21:11,"610 2nd St, Atlanta, GA 30301" +309478,AA Batteries (4-pack),2,3.84,12/03/19 12:08,"328 Main St, San Francisco, CA 94016" +309479,Lightning Charging Cable,1,14.95,12/06/19 20:01,"42 11th St, Austin, TX 73301" +309480,34in Ultrawide Monitor,1,379.99,12/23/19 18:22,"131 7th St, San Francisco, CA 94016" +309481,20in Monitor,1,109.99,12/14/19 22:24,"545 Maple St, Boston, MA 02215" +309482,Lightning Charging Cable,1,14.95,12/10/19 13:29,"131 10th St, San Francisco, CA 94016" +309483,Lightning Charging Cable,1,14.95,12/19/19 21:08,"751 Lake St, Austin, TX 73301" +309484,USB-C Charging Cable,1,11.95,12/01/19 21:08,"606 12th St, Boston, MA 02215" +309485,AAA Batteries (4-pack),1,2.99,12/01/19 23:55,"554 Jefferson St, San Francisco, CA 94016" +309486,Bose SoundSport Headphones,1,99.99,12/08/19 13:03,"564 Dogwood St, Portland, OR 97035" +309487,AAA Batteries (4-pack),1,2.99,12/26/19 17:35,"724 2nd St, New York City, NY 10001" +309488,Lightning Charging Cable,1,14.95,12/21/19 20:11,"682 Madison St, Los Angeles, CA 90001" +309489,ThinkPad Laptop,1,999.99,12/19/19 10:25,"348 11th St, Seattle, WA 98101" +309490,Google Phone,1,600,12/28/19 20:02,"137 Hill St, San Francisco, CA 94016" +309491,34in Ultrawide Monitor,1,379.99,12/23/19 07:47,"523 Jackson St, New York City, NY 10001" +309492,Macbook Pro Laptop,1,1700,12/03/19 00:11,"718 Ridge St, Seattle, WA 98101" +309493,AAA Batteries (4-pack),2,2.99,12/31/19 21:17,"629 Walnut St, New York City, NY 10001" +309494,USB-C Charging Cable,1,11.95,12/23/19 10:48,"309 6th St, Boston, MA 02215" +309495,Bose SoundSport Headphones,1,99.99,12/23/19 21:36,"686 Church St, New York City, NY 10001" +309496,USB-C Charging Cable,1,11.95,12/03/19 10:23,"885 5th St, Dallas, TX 75001" +309497,Lightning Charging Cable,1,14.95,12/12/19 17:32,"262 Adams St, San Francisco, CA 94016" +309498,Lightning Charging Cable,1,14.95,12/22/19 21:47,"439 Center St, San Francisco, CA 94016" +309499,iPhone,2,700,12/30/19 20:30,"832 Forest St, San Francisco, CA 94016" +309500,iPhone,1,700,12/23/19 22:36,"250 Maple St, Boston, MA 02215" +309500,Lightning Charging Cable,1,14.95,12/23/19 22:36,"250 Maple St, Boston, MA 02215" +309500,Apple Airpods Headphones,1,150,12/23/19 22:36,"250 Maple St, Boston, MA 02215" +309501,Apple Airpods Headphones,1,150,12/31/19 12:05,"558 Sunset St, Portland, ME 04101" +309502,AAA Batteries (4-pack),2,2.99,12/15/19 21:11,"169 4th St, Los Angeles, CA 90001" +309503,Bose SoundSport Headphones,1,99.99,12/27/19 21:29,"724 North St, San Francisco, CA 94016" +309504,Wired Headphones,1,11.99,12/07/19 19:19,"279 6th St, New York City, NY 10001" +309504,ThinkPad Laptop,1,999.99,12/07/19 19:19,"279 6th St, New York City, NY 10001" +309505,34in Ultrawide Monitor,1,379.99,12/10/19 17:20,"589 Maple St, Dallas, TX 75001" +309506,AAA Batteries (4-pack),1,2.99,12/06/19 12:40,"669 Spruce St, New York City, NY 10001" +309507,Lightning Charging Cable,1,14.95,12/19/19 13:31,"316 Hickory St, New York City, NY 10001" +309508,AA Batteries (4-pack),1,3.84,12/20/19 16:57,"990 4th St, New York City, NY 10001" +309509,USB-C Charging Cable,1,11.95,12/05/19 10:18,"826 Ridge St, Atlanta, GA 30301" +309510,LG Dryer,1,600.0,12/23/19 13:30,"939 4th St, Dallas, TX 75001" +309511,AAA Batteries (4-pack),3,2.99,12/15/19 21:42,"603 North St, Boston, MA 02215" +309512,AA Batteries (4-pack),1,3.84,12/10/19 13:14,"108 Hickory St, New York City, NY 10001" +309513,Bose SoundSport Headphones,1,99.99,12/16/19 14:53,"870 2nd St, Austin, TX 73301" +309514,USB-C Charging Cable,1,11.95,12/03/19 13:18,"29 Walnut St, Austin, TX 73301" +,,,,, +309515,USB-C Charging Cable,2,11.95,12/02/19 15:33,"347 Jefferson St, New York City, NY 10001" +309516,Wired Headphones,1,11.99,12/28/19 00:12,"34 7th St, New York City, NY 10001" +309517,AA Batteries (4-pack),1,3.84,12/14/19 16:15,"992 Spruce St, Los Angeles, CA 90001" +309518,Wired Headphones,1,11.99,12/24/19 17:41,"437 5th St, New York City, NY 10001" +309519,AA Batteries (4-pack),3,3.84,12/03/19 12:22,"710 11th St, Atlanta, GA 30301" +309520,USB-C Charging Cable,1,11.95,12/01/19 12:15,"841 6th St, Portland, OR 97035" +309521,Wired Headphones,1,11.99,12/21/19 09:43,"725 Main St, Austin, TX 73301" +309522,Lightning Charging Cable,1,14.95,12/18/19 14:59,"268 13th St, New York City, NY 10001" +309523,Apple Airpods Headphones,1,150,12/07/19 14:48,"929 10th St, San Francisco, CA 94016" +309524,AA Batteries (4-pack),1,3.84,12/27/19 10:58,"435 Jackson St, New York City, NY 10001" +309525,AA Batteries (4-pack),1,3.84,12/13/19 18:06,"294 Jackson St, San Francisco, CA 94016" +309526,Bose SoundSport Headphones,1,99.99,12/12/19 17:37,"253 Adams St, San Francisco, CA 94016" +309527,Apple Airpods Headphones,1,150,12/02/19 21:17,"81 Jefferson St, San Francisco, CA 94016" +309528,AA Batteries (4-pack),1,3.84,12/28/19 12:17,"713 13th St, Dallas, TX 75001" +309529,Wired Headphones,1,11.99,12/13/19 21:09,"811 Jefferson St, San Francisco, CA 94016" +309530,USB-C Charging Cable,1,11.95,12/24/19 07:32,"679 4th St, Boston, MA 02215" +309531,Flatscreen TV,1,300,12/14/19 19:36,"663 Madison St, Los Angeles, CA 90001" +309532,Google Phone,1,600,12/17/19 16:30,"495 Cherry St, Boston, MA 02215" +309532,Bose SoundSport Headphones,1,99.99,12/17/19 16:30,"495 Cherry St, Boston, MA 02215" +309533,27in 4K Gaming Monitor,1,389.99,12/14/19 22:22,"986 Adams St, Boston, MA 02215" +309534,Lightning Charging Cable,1,14.95,12/21/19 10:35,"4 Main St, Los Angeles, CA 90001" +309535,Bose SoundSport Headphones,1,99.99,12/24/19 16:40,"407 Church St, Dallas, TX 75001" +309536,20in Monitor,1,109.99,12/10/19 18:20,"362 9th St, San Francisco, CA 94016" +309537,Apple Airpods Headphones,1,150,12/14/19 18:05,"630 West St, Los Angeles, CA 90001" +309538,Lightning Charging Cable,1,14.95,12/08/19 18:35,"541 Chestnut St, New York City, NY 10001" +309539,Macbook Pro Laptop,1,1700,12/20/19 17:46,"218 Center St, Austin, TX 73301" +309540,AAA Batteries (4-pack),1,2.99,12/16/19 20:59,"519 Main St, Austin, TX 73301" +309541,Google Phone,1,600,12/18/19 22:04,"294 12th St, Boston, MA 02215" +309541,USB-C Charging Cable,1,11.95,12/18/19 22:04,"294 12th St, Boston, MA 02215" +309542,AA Batteries (4-pack),2,3.84,12/05/19 19:22,"895 Sunset St, Los Angeles, CA 90001" +309543,Apple Airpods Headphones,1,150,12/12/19 21:45,"509 Chestnut St, Atlanta, GA 30301" +309544,20in Monitor,1,109.99,12/17/19 16:46,"612 Lincoln St, San Francisco, CA 94016" +309545,27in FHD Monitor,1,149.99,12/26/19 02:18,"367 Johnson St, Portland, OR 97035" +309546,AAA Batteries (4-pack),1,2.99,12/16/19 10:07,"843 7th St, Los Angeles, CA 90001" +309547,27in FHD Monitor,1,149.99,12/18/19 17:41,"956 Adams St, Atlanta, GA 30301" +309548,USB-C Charging Cable,1,11.95,12/19/19 16:43,"289 Cedar St, San Francisco, CA 94016" +309549,Lightning Charging Cable,1,14.95,12/09/19 12:59,"573 Cherry St, Dallas, TX 75001" +309550,Bose SoundSport Headphones,1,99.99,12/07/19 07:36,"385 6th St, Los Angeles, CA 90001" +309551,27in FHD Monitor,1,149.99,12/19/19 20:29,"599 West St, Dallas, TX 75001" +309552,Apple Airpods Headphones,1,150,12/23/19 11:26,"460 Hill St, Seattle, WA 98101" +309553,USB-C Charging Cable,1,11.95,12/30/19 13:22,"483 12th St, Boston, MA 02215" +309554,ThinkPad Laptop,1,999.99,12/07/19 19:22,"742 11th St, Portland, OR 97035" +309555,AA Batteries (4-pack),1,3.84,12/16/19 10:42,"293 Jefferson St, New York City, NY 10001" +309556,20in Monitor,1,109.99,12/08/19 06:42,"629 Forest St, Seattle, WA 98101" +309557,AA Batteries (4-pack),1,3.84,12/10/19 12:20,"180 Pine St, Los Angeles, CA 90001" +309558,AAA Batteries (4-pack),1,2.99,12/29/19 14:27,"132 Adams St, Los Angeles, CA 90001" +309559,Apple Airpods Headphones,1,150,12/07/19 06:06,"111 Sunset St, Dallas, TX 75001" +309560,AA Batteries (4-pack),1,3.84,12/19/19 18:00,"505 Johnson St, Boston, MA 02215" +309561,Google Phone,1,600,12/21/19 11:36,"538 Chestnut St, Los Angeles, CA 90001" +309562,Google Phone,1,600,12/06/19 20:40,"60 Lakeview St, Portland, OR 97035" +309563,20in Monitor,1,109.99,12/22/19 16:33,"328 Meadow St, San Francisco, CA 94016" +309564,Wired Headphones,1,11.99,12/16/19 12:02,"515 11th St, Atlanta, GA 30301" +309565,Flatscreen TV,1,300,12/13/19 02:04,"396 Spruce St, Austin, TX 73301" +309566,AAA Batteries (4-pack),1,2.99,12/07/19 12:30,"196 Park St, San Francisco, CA 94016" +309567,USB-C Charging Cable,1,11.95,12/01/19 14:10,"810 Meadow St, Dallas, TX 75001" +309568,Apple Airpods Headphones,1,150,12/17/19 17:14,"903 12th St, Los Angeles, CA 90001" +309569,Apple Airpods Headphones,1,150,12/24/19 15:56,"378 Spruce St, San Francisco, CA 94016" +309570,Macbook Pro Laptop,1,1700,12/25/19 00:58,"394 Willow St, Portland, OR 97035" +309571,Wired Headphones,1,11.99,12/03/19 15:43,"616 Cherry St, New York City, NY 10001" +309572,USB-C Charging Cable,1,11.95,12/23/19 17:11,"743 Lake St, Boston, MA 02215" +309573,Lightning Charging Cable,1,14.95,12/28/19 08:35,"2 Lake St, New York City, NY 10001" +309574,USB-C Charging Cable,1,11.95,12/08/19 16:10,"854 5th St, Los Angeles, CA 90001" +309575,Bose SoundSport Headphones,1,99.99,12/25/19 08:18,"184 Elm St, Portland, OR 97035" +309576,Macbook Pro Laptop,1,1700,12/24/19 11:50,"995 Johnson St, San Francisco, CA 94016" +309577,20in Monitor,1,109.99,12/20/19 13:26,"520 Main St, Los Angeles, CA 90001" +309578,AA Batteries (4-pack),1,3.84,12/09/19 13:56,"793 Chestnut St, San Francisco, CA 94016" +309579,Wired Headphones,1,11.99,12/12/19 10:20,"504 Cedar St, San Francisco, CA 94016" +309579,27in 4K Gaming Monitor,1,389.99,12/12/19 10:20,"504 Cedar St, San Francisco, CA 94016" +309580,27in 4K Gaming Monitor,1,389.99,12/13/19 20:28,"489 Spruce St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +309581,Lightning Charging Cable,1,14.95,12/24/19 15:32,"651 Cherry St, Dallas, TX 75001" +309582,Google Phone,1,600,12/02/19 20:56,"405 Main St, San Francisco, CA 94016" +309583,34in Ultrawide Monitor,1,379.99,12/25/19 19:10,"980 Park St, Los Angeles, CA 90001" +309584,AAA Batteries (4-pack),2,2.99,12/05/19 17:06,"353 Elm St, Portland, ME 04101" +309585,AA Batteries (4-pack),1,3.84,12/16/19 17:53,"777 Chestnut St, Seattle, WA 98101" +309586,Google Phone,1,600,12/09/19 22:08,"565 12th St, San Francisco, CA 94016" +309586,USB-C Charging Cable,2,11.95,12/09/19 22:08,"565 12th St, San Francisco, CA 94016" +309586,Bose SoundSport Headphones,1,99.99,12/09/19 22:08,"565 12th St, San Francisco, CA 94016" +309587,AA Batteries (4-pack),1,3.84,12/05/19 21:24,"174 9th St, Seattle, WA 98101" +309588,LG Washing Machine,1,600.0,12/18/19 12:50,"597 2nd St, Los Angeles, CA 90001" +309589,USB-C Charging Cable,1,11.95,12/29/19 17:09,"840 Center St, Seattle, WA 98101" +309590,AA Batteries (4-pack),1,3.84,12/30/19 10:54,"383 North St, Portland, OR 97035" +309591,Flatscreen TV,1,300,12/23/19 19:34,"206 Main St, Los Angeles, CA 90001" +309592,Wired Headphones,1,11.99,12/25/19 21:16,"586 Jefferson St, Austin, TX 73301" +309593,iPhone,1,700,12/23/19 18:41,"208 11th St, San Francisco, CA 94016" +309593,Lightning Charging Cable,1,14.95,12/23/19 18:41,"208 11th St, San Francisco, CA 94016" +309593,Apple Airpods Headphones,1,150,12/23/19 18:41,"208 11th St, San Francisco, CA 94016" +309594,Bose SoundSport Headphones,1,99.99,12/04/19 11:01,"109 7th St, San Francisco, CA 94016" +309595,Macbook Pro Laptop,1,1700,12/29/19 22:21,"505 Church St, Los Angeles, CA 90001" +309596,AAA Batteries (4-pack),1,2.99,12/09/19 22:30,"699 Hill St, Boston, MA 02215" +309597,27in 4K Gaming Monitor,1,389.99,12/23/19 13:16,"388 Wilson St, Los Angeles, CA 90001" +309598,Google Phone,1,600,12/19/19 23:05,"189 Forest St, Austin, TX 73301" +309598,Wired Headphones,1,11.99,12/19/19 23:05,"189 Forest St, Austin, TX 73301" +309599,USB-C Charging Cable,1,11.95,12/22/19 13:01,"67 Jackson St, Dallas, TX 75001" +309600,AA Batteries (4-pack),2,3.84,12/30/19 17:13,"633 Johnson St, San Francisco, CA 94016" +309601,USB-C Charging Cable,1,11.95,12/04/19 21:48,"684 9th St, San Francisco, CA 94016" +309602,AA Batteries (4-pack),1,3.84,12/26/19 19:16,"389 Center St, San Francisco, CA 94016" +309603,USB-C Charging Cable,1,11.95,12/20/19 12:30,"810 Center St, Dallas, TX 75001" +309604,Macbook Pro Laptop,1,1700,12/13/19 13:57,"349 Cherry St, Atlanta, GA 30301" +309605,Google Phone,1,600,12/18/19 15:51,"812 2nd St, Los Angeles, CA 90001" +309606,ThinkPad Laptop,1,999.99,12/19/19 16:19,"1 Chestnut St, Atlanta, GA 30301" +309607,AAA Batteries (4-pack),3,2.99,12/24/19 09:57,"191 Madison St, Austin, TX 73301" +309608,Vareebadd Phone,1,400,12/29/19 17:05,"520 Lakeview St, Atlanta, GA 30301" +309609,Apple Airpods Headphones,1,150,12/21/19 22:09,"32 Meadow St, New York City, NY 10001" +309610,AA Batteries (4-pack),2,3.84,12/18/19 15:32,"853 Hickory St, Dallas, TX 75001" +309611,Lightning Charging Cable,1,14.95,12/28/19 11:29,"222 Spruce St, Dallas, TX 75001" +309612,Bose SoundSport Headphones,1,99.99,12/15/19 00:29,"633 Cedar St, Seattle, WA 98101" +309613,Bose SoundSport Headphones,1,99.99,12/06/19 19:56,"640 Lakeview St, San Francisco, CA 94016" +309614,USB-C Charging Cable,1,11.95,12/12/19 23:46,"990 Park St, Los Angeles, CA 90001" +309615,USB-C Charging Cable,1,11.95,12/23/19 12:08,"866 13th St, New York City, NY 10001" +309616,USB-C Charging Cable,1,11.95,12/19/19 22:43,"327 Chestnut St, San Francisco, CA 94016" +309617,Apple Airpods Headphones,1,150,12/30/19 11:56,"525 1st St, Seattle, WA 98101" +309618,Google Phone,1,600,12/26/19 18:07,"946 South St, San Francisco, CA 94016" +309619,Lightning Charging Cable,1,14.95,12/18/19 10:58,"294 8th St, San Francisco, CA 94016" +309620,Flatscreen TV,1,300,12/25/19 04:04,"776 6th St, New York City, NY 10001" +309621,Macbook Pro Laptop,1,1700,12/23/19 15:49,"473 9th St, Los Angeles, CA 90001" +309622,AAA Batteries (4-pack),1,2.99,12/08/19 15:06,"82 Lake St, Atlanta, GA 30301" +309623,Wired Headphones,1,11.99,12/19/19 12:50,"945 Main St, New York City, NY 10001" +309624,Apple Airpods Headphones,1,150,12/13/19 06:10,"112 Lake St, New York City, NY 10001" +309625,Wired Headphones,2,11.99,12/22/19 14:30,"61 Pine St, Los Angeles, CA 90001" +309625,Macbook Pro Laptop,1,1700,12/22/19 14:30,"61 Pine St, Los Angeles, CA 90001" +309626,Macbook Pro Laptop,1,1700,12/21/19 01:58,"392 Pine St, New York City, NY 10001" +309627,Apple Airpods Headphones,1,150,12/06/19 18:22,"712 Jackson St, Los Angeles, CA 90001" +309628,Macbook Pro Laptop,1,1700,12/07/19 15:29,"284 6th St, Dallas, TX 75001" +309629,Wired Headphones,1,11.99,12/04/19 09:38,"367 Highland St, Portland, OR 97035" +309630,Wired Headphones,1,11.99,12/28/19 10:57,"1 Hickory St, Atlanta, GA 30301" +309631,iPhone,1,700,12/29/19 19:41,"417 8th St, San Francisco, CA 94016" +309631,Wired Headphones,1,11.99,12/29/19 19:41,"417 8th St, San Francisco, CA 94016" +309632,AAA Batteries (4-pack),1,2.99,12/15/19 12:41,"445 6th St, Seattle, WA 98101" +309633,AAA Batteries (4-pack),2,2.99,12/07/19 15:12,"828 Madison St, New York City, NY 10001" +309634,AA Batteries (4-pack),1,3.84,12/30/19 00:21,"638 Washington St, Austin, TX 73301" +309635,Macbook Pro Laptop,1,1700,12/20/19 09:29,"315 11th St, Boston, MA 02215" +309636,27in FHD Monitor,1,149.99,12/06/19 16:08,"470 6th St, Portland, ME 04101" +309637,USB-C Charging Cable,1,11.95,12/07/19 13:10,"661 10th St, Boston, MA 02215" +309638,Bose SoundSport Headphones,1,99.99,12/10/19 11:47,"370 Elm St, Los Angeles, CA 90001" +309639,AAA Batteries (4-pack),1,2.99,12/27/19 15:25,"963 2nd St, Boston, MA 02215" +309640,AAA Batteries (4-pack),1,2.99,12/12/19 11:05,"556 10th St, Los Angeles, CA 90001" +309641,Wired Headphones,1,11.99,12/11/19 18:23,"788 10th St, San Francisco, CA 94016" +309642,Lightning Charging Cable,2,14.95,12/30/19 10:02,"16 Hill St, Boston, MA 02215" +309643,34in Ultrawide Monitor,1,379.99,12/03/19 18:04,"142 Chestnut St, Boston, MA 02215" +309644,AA Batteries (4-pack),1,3.84,12/20/19 17:38,"924 North St, San Francisco, CA 94016" +309645,AA Batteries (4-pack),1,3.84,12/30/19 21:42,"407 Forest St, Los Angeles, CA 90001" +309646,Bose SoundSport Headphones,1,99.99,12/01/19 11:19,"15 11th St, New York City, NY 10001" +309647,Lightning Charging Cable,1,14.95,12/05/19 15:37,"162 Willow St, Atlanta, GA 30301" +309648,AA Batteries (4-pack),2,3.84,12/31/19 08:57,"970 Highland St, San Francisco, CA 94016" +309649,Bose SoundSport Headphones,2,99.99,12/31/19 09:33,"301 11th St, New York City, NY 10001" +309650,AA Batteries (4-pack),1,3.84,12/09/19 16:34,"747 12th St, Seattle, WA 98101" +309651,Bose SoundSport Headphones,1,99.99,12/20/19 14:22,"885 8th St, San Francisco, CA 94016" +309652,USB-C Charging Cable,1,11.95,12/09/19 10:59,"611 Forest St, New York City, NY 10001" +309653,Bose SoundSport Headphones,1,99.99,12/07/19 22:56,"962 Jackson St, Boston, MA 02215" +309654,ThinkPad Laptop,1,999.99,12/14/19 12:47,"862 12th St, Los Angeles, CA 90001" +309655,AA Batteries (4-pack),1,3.84,12/25/19 15:56,"365 Pine St, San Francisco, CA 94016" +309656,AA Batteries (4-pack),1,3.84,12/18/19 20:00,"165 Ridge St, San Francisco, CA 94016" +309657,iPhone,1,700,12/20/19 09:52,"725 11th St, San Francisco, CA 94016" +309658,Macbook Pro Laptop,1,1700,12/19/19 18:13,"149 4th St, New York City, NY 10001" +309659,Macbook Pro Laptop,1,1700,12/06/19 21:34,"47 8th St, Portland, ME 04101" +309660,34in Ultrawide Monitor,1,379.99,12/03/19 07:54,"473 8th St, Seattle, WA 98101" +309661,34in Ultrawide Monitor,1,379.99,12/21/19 01:25,"953 Hickory St, Los Angeles, CA 90001" +309662,34in Ultrawide Monitor,1,379.99,12/26/19 15:23,"803 Spruce St, Austin, TX 73301" +309663,Lightning Charging Cable,1,14.95,12/06/19 09:00,"909 Madison St, Los Angeles, CA 90001" +309664,AAA Batteries (4-pack),3,2.99,12/22/19 18:38,"702 11th St, Atlanta, GA 30301" +309665,AAA Batteries (4-pack),3,2.99,12/04/19 16:27,"909 Dogwood St, Dallas, TX 75001" +,,,,, +309666,USB-C Charging Cable,1,11.95,12/10/19 12:49,"509 West St, Boston, MA 02215" +309667,Bose SoundSport Headphones,1,99.99,12/09/19 10:35,"569 13th St, Los Angeles, CA 90001" +309668,Bose SoundSport Headphones,1,99.99,12/19/19 07:13,"72 Ridge St, Portland, OR 97035" +309669,Vareebadd Phone,1,400,12/07/19 15:22,"482 Johnson St, Boston, MA 02215" +309670,iPhone,1,700,12/01/19 17:30,"713 Jefferson St, Portland, OR 97035" +309671,34in Ultrawide Monitor,1,379.99,12/10/19 13:36,"269 Chestnut St, Atlanta, GA 30301" +309672,AA Batteries (4-pack),1,3.84,12/19/19 15:50,"34 Lincoln St, San Francisco, CA 94016" +309673,Apple Airpods Headphones,1,150,12/30/19 09:12,"894 Forest St, San Francisco, CA 94016" +309674,Lightning Charging Cable,1,14.95,12/08/19 23:37,"685 Lakeview St, San Francisco, CA 94016" +309675,AAA Batteries (4-pack),2,2.99,12/02/19 07:17,"297 Jefferson St, Boston, MA 02215" +309676,USB-C Charging Cable,1,11.95,12/05/19 21:23,"205 Madison St, Boston, MA 02215" +309677,Flatscreen TV,1,300,12/09/19 10:12,"483 13th St, Los Angeles, CA 90001" +309678,AAA Batteries (4-pack),1,2.99,12/04/19 11:41,"51 Madison St, Boston, MA 02215" +309679,Macbook Pro Laptop,1,1700,12/22/19 15:08,"798 Hill St, Los Angeles, CA 90001" +309680,27in FHD Monitor,1,149.99,12/26/19 10:53,"239 11th St, San Francisco, CA 94016" +309680,Lightning Charging Cable,1,14.95,12/26/19 10:53,"239 11th St, San Francisco, CA 94016" +309681,Lightning Charging Cable,1,14.95,12/29/19 09:52,"984 Adams St, Boston, MA 02215" +309682,Apple Airpods Headphones,1,150,12/18/19 14:57,"156 2nd St, San Francisco, CA 94016" +309683,27in FHD Monitor,1,149.99,12/14/19 00:57,"814 Hill St, Boston, MA 02215" +309684,Lightning Charging Cable,1,14.95,12/27/19 21:58,"468 Hill St, Los Angeles, CA 90001" +309685,USB-C Charging Cable,1,11.95,12/04/19 11:35,"526 Center St, San Francisco, CA 94016" +309686,AAA Batteries (4-pack),1,2.99,12/20/19 12:26,"967 10th St, San Francisco, CA 94016" +309687,20in Monitor,1,109.99,12/21/19 12:59,"114 6th St, New York City, NY 10001" +309688,34in Ultrawide Monitor,1,379.99,12/12/19 22:25,"732 Hickory St, Los Angeles, CA 90001" +309689,27in FHD Monitor,1,149.99,12/06/19 21:05,"1 West St, Atlanta, GA 30301" +309690,USB-C Charging Cable,1,11.95,12/31/19 12:20,"598 Spruce St, Atlanta, GA 30301" +309691,AA Batteries (4-pack),1,3.84,12/25/19 14:34,"85 Lake St, New York City, NY 10001" +309692,Macbook Pro Laptop,1,1700,12/09/19 21:57,"243 Pine St, Los Angeles, CA 90001" +309693,Lightning Charging Cable,1,14.95,12/31/19 16:58,"344 14th St, Atlanta, GA 30301" +309694,AAA Batteries (4-pack),1,2.99,12/07/19 13:49,"51 Maple St, Atlanta, GA 30301" +309695,34in Ultrawide Monitor,1,379.99,12/14/19 10:04,"30 Adams St, San Francisco, CA 94016" +309696,Apple Airpods Headphones,1,150,12/27/19 23:32,"687 11th St, New York City, NY 10001" +309697,Apple Airpods Headphones,1,150,12/20/19 18:11,"860 2nd St, New York City, NY 10001" +309698,AA Batteries (4-pack),1,3.84,12/02/19 19:54,"965 Ridge St, San Francisco, CA 94016" +309699,USB-C Charging Cable,1,11.95,12/17/19 15:14,"16 Spruce St, San Francisco, CA 94016" +309700,20in Monitor,1,109.99,12/04/19 12:38,"418 Lincoln St, Los Angeles, CA 90001" +309701,Lightning Charging Cable,1,14.95,12/14/19 21:08,"595 North St, San Francisco, CA 94016" +309702,AA Batteries (4-pack),1,3.84,12/25/19 17:03,"263 Dogwood St, San Francisco, CA 94016" +309703,AA Batteries (4-pack),1,3.84,12/25/19 09:33,"371 Lake St, San Francisco, CA 94016" +309704,Apple Airpods Headphones,1,150,12/06/19 21:13,"732 7th St, Seattle, WA 98101" +309705,Wired Headphones,1,11.99,12/10/19 14:40,"308 Hill St, Seattle, WA 98101" +309706,USB-C Charging Cable,1,11.95,12/14/19 12:15,"881 Cedar St, Seattle, WA 98101" +309707,34in Ultrawide Monitor,1,379.99,12/14/19 09:02,"753 10th St, San Francisco, CA 94016" +309708,Bose SoundSport Headphones,1,99.99,12/19/19 14:51,"561 Adams St, Atlanta, GA 30301" +309709,Wired Headphones,1,11.99,12/30/19 21:04,"581 Jefferson St, Atlanta, GA 30301" +309710,AA Batteries (4-pack),2,3.84,12/23/19 12:46,"764 Church St, Boston, MA 02215" +309711,AAA Batteries (4-pack),1,2.99,12/21/19 19:26,"285 Hill St, Atlanta, GA 30301" +309712,Flatscreen TV,1,300,12/29/19 12:14,"833 Chestnut St, Seattle, WA 98101" +309713,Lightning Charging Cable,1,14.95,12/24/19 19:30,"320 7th St, Boston, MA 02215" +309714,USB-C Charging Cable,2,11.95,12/24/19 21:07,"845 Washington St, Los Angeles, CA 90001" +309715,Bose SoundSport Headphones,1,99.99,12/11/19 15:13,"241 8th St, New York City, NY 10001" +309716,AAA Batteries (4-pack),1,2.99,12/29/19 00:02,"527 Hill St, Portland, OR 97035" +309717,Apple Airpods Headphones,1,150,12/07/19 19:30,"185 8th St, Los Angeles, CA 90001" +309718,Bose SoundSport Headphones,1,99.99,12/23/19 21:16,"280 4th St, Atlanta, GA 30301" +309719,AA Batteries (4-pack),1,3.84,12/09/19 09:34,"817 7th St, Boston, MA 02215" +309720,Bose SoundSport Headphones,1,99.99,12/09/19 15:11,"234 5th St, Atlanta, GA 30301" +309721,Flatscreen TV,1,300,12/30/19 14:31,"24 Walnut St, Seattle, WA 98101" +309722,Bose SoundSport Headphones,1,99.99,12/03/19 10:06,"177 2nd St, San Francisco, CA 94016" +309723,Apple Airpods Headphones,1,150,12/03/19 21:31,"157 9th St, San Francisco, CA 94016" +309724,Apple Airpods Headphones,1,150,12/12/19 00:00,"102 Adams St, San Francisco, CA 94016" +309725,Lightning Charging Cable,1,14.95,12/03/19 13:35,"200 1st St, New York City, NY 10001" +309726,Lightning Charging Cable,1,14.95,12/03/19 20:23,"905 Chestnut St, Seattle, WA 98101" +309727,Wired Headphones,2,11.99,12/18/19 09:18,"299 Lake St, San Francisco, CA 94016" +309728,Macbook Pro Laptop,1,1700,12/15/19 23:45,"428 Cedar St, Seattle, WA 98101" +309729,Lightning Charging Cable,1,14.95,12/18/19 14:04,"879 Lincoln St, San Francisco, CA 94016" +309730,Wired Headphones,1,11.99,12/12/19 00:16,"404 Lakeview St, Los Angeles, CA 90001" +309731,34in Ultrawide Monitor,1,379.99,12/30/19 20:10,"853 Ridge St, Seattle, WA 98101" +309732,Flatscreen TV,1,300,12/15/19 13:05,"988 Walnut St, New York City, NY 10001" +309733,AAA Batteries (4-pack),5,2.99,12/24/19 15:03,"981 River St, San Francisco, CA 94016" +309734,USB-C Charging Cable,1,11.95,12/25/19 11:38,"192 Center St, San Francisco, CA 94016" +309734,iPhone,1,700,12/25/19 11:38,"192 Center St, San Francisco, CA 94016" +309735,Wired Headphones,1,11.99,12/02/19 18:14,"370 1st St, Boston, MA 02215" +309736,USB-C Charging Cable,1,11.95,12/17/19 22:24,"61 1st St, Boston, MA 02215" +309737,AAA Batteries (4-pack),2,2.99,12/13/19 03:11,"412 4th St, Portland, ME 04101" +309738,Apple Airpods Headphones,1,150,12/14/19 22:18,"826 Sunset St, Seattle, WA 98101" +309739,iPhone,1,700,12/17/19 07:46,"479 Pine St, Portland, ME 04101" +309740,ThinkPad Laptop,1,999.99,12/12/19 10:47,"250 8th St, Boston, MA 02215" +309741,27in 4K Gaming Monitor,1,389.99,12/08/19 18:42,"144 7th St, San Francisco, CA 94016" +309742,Wired Headphones,1,11.99,12/13/19 18:49,"101 Chestnut St, Los Angeles, CA 90001" +309743,Wired Headphones,1,11.99,12/25/19 16:53,"323 Forest St, San Francisco, CA 94016" +309744,Apple Airpods Headphones,1,150,12/14/19 12:44,"5 2nd St, Los Angeles, CA 90001" +309745,34in Ultrawide Monitor,1,379.99,12/04/19 05:40,"392 Elm St, Atlanta, GA 30301" +309746,ThinkPad Laptop,1,999.99,12/09/19 01:24,"467 Madison St, San Francisco, CA 94016" +309747,34in Ultrawide Monitor,1,379.99,12/17/19 15:21,"869 River St, Boston, MA 02215" +309748,Flatscreen TV,1,300,12/22/19 17:51,"330 Wilson St, Seattle, WA 98101" +309749,Macbook Pro Laptop,1,1700,12/17/19 12:18,"595 Ridge St, New York City, NY 10001" +309749,Flatscreen TV,1,300,12/17/19 12:18,"595 Ridge St, New York City, NY 10001" +309750,AAA Batteries (4-pack),2,2.99,12/22/19 15:55,"926 1st St, Los Angeles, CA 90001" +309751,Lightning Charging Cable,1,14.95,12/23/19 21:24,"85 Sunset St, New York City, NY 10001" +309752,Lightning Charging Cable,1,14.95,12/21/19 07:28,"895 2nd St, Atlanta, GA 30301" +309753,20in Monitor,1,109.99,12/23/19 07:44,"656 Willow St, Los Angeles, CA 90001" +309754,Google Phone,1,600,12/05/19 17:54,"936 Cedar St, San Francisco, CA 94016" +309754,USB-C Charging Cable,1,11.95,12/05/19 17:54,"936 Cedar St, San Francisco, CA 94016" +309755,Google Phone,1,600,12/22/19 18:00,"481 Lake St, Atlanta, GA 30301" +309755,Wired Headphones,1,11.99,12/22/19 18:00,"481 Lake St, Atlanta, GA 30301" +309756,AA Batteries (4-pack),1,3.84,12/10/19 14:26,"773 11th St, San Francisco, CA 94016" +309757,Wired Headphones,1,11.99,12/13/19 09:01,"742 Ridge St, New York City, NY 10001" +309758,Flatscreen TV,1,300,12/27/19 00:34,"332 Park St, Seattle, WA 98101" +309759,Lightning Charging Cable,1,14.95,12/04/19 08:18,"805 Maple St, Atlanta, GA 30301" +309760,Apple Airpods Headphones,1,150,12/12/19 15:04,"922 Meadow St, Los Angeles, CA 90001" +309761,AA Batteries (4-pack),2,3.84,12/11/19 15:38,"517 Ridge St, Seattle, WA 98101" +309762,Flatscreen TV,1,300,12/29/19 12:04,"273 Highland St, Austin, TX 73301" +309763,AAA Batteries (4-pack),3,2.99,12/30/19 21:08,"991 Lakeview St, Seattle, WA 98101" +309764,iPhone,1,700,12/11/19 19:17,"277 Highland St, Seattle, WA 98101" +309764,Wired Headphones,1,11.99,12/11/19 19:17,"277 Highland St, Seattle, WA 98101" +309765,Apple Airpods Headphones,1,150,12/24/19 10:38,"378 Church St, New York City, NY 10001" +309766,iPhone,1,700,12/10/19 15:54,"511 Washington St, San Francisco, CA 94016" +309766,Wired Headphones,1,11.99,12/10/19 15:54,"511 Washington St, San Francisco, CA 94016" +309767,USB-C Charging Cable,1,11.95,12/24/19 10:28,"836 Spruce St, San Francisco, CA 94016" +309768,AAA Batteries (4-pack),1,2.99,12/21/19 15:21,"357 Hill St, San Francisco, CA 94016" +309769,27in FHD Monitor,1,149.99,12/06/19 15:08,"391 2nd St, Los Angeles, CA 90001" +309770,Lightning Charging Cable,1,14.95,12/28/19 14:59,"780 Madison St, Austin, TX 73301" +309771,Bose SoundSport Headphones,1,99.99,12/22/19 21:45,"464 Church St, Los Angeles, CA 90001" +309772,Google Phone,1,600,12/05/19 12:10,"755 Cherry St, Boston, MA 02215" +309773,USB-C Charging Cable,1,11.95,12/01/19 10:21,"72 Sunset St, New York City, NY 10001" +309773,Macbook Pro Laptop,1,1700,12/01/19 10:21,"72 Sunset St, New York City, NY 10001" +309774,Google Phone,1,600,12/20/19 21:37,"345 6th St, Boston, MA 02215" +309774,USB-C Charging Cable,1,11.95,12/20/19 21:37,"345 6th St, Boston, MA 02215" +309775,Apple Airpods Headphones,1,150,12/12/19 08:29,"78 11th St, San Francisco, CA 94016" +309776,Flatscreen TV,1,300,12/05/19 20:15,"836 Pine St, San Francisco, CA 94016" +309777,27in 4K Gaming Monitor,1,389.99,12/13/19 17:35,"350 1st St, Atlanta, GA 30301" +309778,27in FHD Monitor,1,149.99,12/22/19 13:13,"817 Lake St, Seattle, WA 98101" +309779,Apple Airpods Headphones,1,150,12/31/19 07:18,"360 Walnut St, San Francisco, CA 94016" +309780,20in Monitor,1,109.99,12/07/19 11:40,"23 Washington St, Boston, MA 02215" +309781,20in Monitor,1,109.99,12/12/19 11:56,"137 Cherry St, New York City, NY 10001" +309782,Apple Airpods Headphones,1,150,12/30/19 09:12,"955 Forest St, Dallas, TX 75001" +309783,Lightning Charging Cable,1,14.95,12/10/19 12:25,"18 Spruce St, Dallas, TX 75001" +309784,Wired Headphones,1,11.99,12/24/19 08:41,"639 North St, San Francisco, CA 94016" +309785,27in FHD Monitor,1,149.99,12/28/19 20:38,"603 13th St, Los Angeles, CA 90001" +309786,Flatscreen TV,1,300,12/26/19 10:30,"701 Hill St, San Francisco, CA 94016" +309787,USB-C Charging Cable,1,11.95,12/18/19 16:34,"932 9th St, San Francisco, CA 94016" +309788,AAA Batteries (4-pack),2,2.99,12/04/19 19:05,"269 West St, Los Angeles, CA 90001" +309789,AAA Batteries (4-pack),1,2.99,12/24/19 20:06,"166 Lincoln St, Dallas, TX 75001" +309790,ThinkPad Laptop,1,999.99,12/03/19 18:55,"852 Center St, Seattle, WA 98101" +309791,USB-C Charging Cable,1,11.95,12/17/19 20:43,"288 4th St, Dallas, TX 75001" +309792,Bose SoundSport Headphones,1,99.99,12/25/19 20:03,"407 10th St, San Francisco, CA 94016" +309793,ThinkPad Laptop,1,999.99,12/17/19 12:07,"362 7th St, Los Angeles, CA 90001" +309793,AA Batteries (4-pack),1,3.84,12/17/19 12:07,"362 7th St, Los Angeles, CA 90001" +309794,AAA Batteries (4-pack),1,2.99,12/11/19 11:57,"290 Hickory St, New York City, NY 10001" +309795,AA Batteries (4-pack),1,3.84,12/13/19 22:41,"986 Center St, Atlanta, GA 30301" +309796,Bose SoundSport Headphones,1,99.99,12/31/19 11:48,"230 Ridge St, San Francisco, CA 94016" +309797,Apple Airpods Headphones,1,150,12/29/19 15:21,"233 Jefferson St, New York City, NY 10001" +309798,AA Batteries (4-pack),5,3.84,12/20/19 18:41,"3 Chestnut St, Austin, TX 73301" +309799,ThinkPad Laptop,1,999.99,12/30/19 13:29,"764 12th St, Seattle, WA 98101" +309800,Wired Headphones,1,11.99,12/17/19 07:38,"534 Washington St, San Francisco, CA 94016" +309801,AAA Batteries (4-pack),1,2.99,12/20/19 23:46,"688 7th St, San Francisco, CA 94016" +309802,Lightning Charging Cable,1,14.95,12/26/19 22:07,"522 14th St, San Francisco, CA 94016" +309803,Bose SoundSport Headphones,1,99.99,12/02/19 16:31,"231 Lakeview St, Boston, MA 02215" +309804,Lightning Charging Cable,1,14.95,12/31/19 15:08,"632 North St, San Francisco, CA 94016" +309805,Flatscreen TV,1,300,12/16/19 17:54,"385 North St, Los Angeles, CA 90001" +309806,Lightning Charging Cable,1,14.95,12/31/19 11:31,"151 Adams St, Seattle, WA 98101" +309807,Lightning Charging Cable,1,14.95,12/07/19 20:35,"945 10th St, Portland, ME 04101" +309808,34in Ultrawide Monitor,1,379.99,12/28/19 12:13,"284 Park St, Seattle, WA 98101" +309809,USB-C Charging Cable,1,11.95,12/10/19 16:13,"579 Dogwood St, Portland, OR 97035" +309810,Macbook Pro Laptop,1,1700,12/26/19 07:45,"393 Ridge St, Atlanta, GA 30301" +309811,iPhone,1,700,12/07/19 11:08,"287 Park St, Los Angeles, CA 90001" +309811,Apple Airpods Headphones,1,150,12/07/19 11:08,"287 Park St, Los Angeles, CA 90001" +309812,Wired Headphones,1,11.99,12/19/19 16:11,"707 14th St, New York City, NY 10001" +309813,Wired Headphones,1,11.99,12/25/19 01:05,"766 Johnson St, Atlanta, GA 30301" +309814,Lightning Charging Cable,1,14.95,12/24/19 02:29,"966 8th St, Portland, OR 97035" +309815,Apple Airpods Headphones,1,150,12/22/19 04:49,"905 Hill St, Los Angeles, CA 90001" +309816,Lightning Charging Cable,1,14.95,12/31/19 13:56,"525 Adams St, Atlanta, GA 30301" +309817,AA Batteries (4-pack),1,3.84,12/07/19 17:09,"854 9th St, San Francisco, CA 94016" +309818,AA Batteries (4-pack),1,3.84,12/02/19 13:26,"417 Main St, San Francisco, CA 94016" +309819,34in Ultrawide Monitor,1,379.99,12/11/19 14:02,"187 North St, New York City, NY 10001" +309820,Google Phone,1,600,12/12/19 18:27,"497 6th St, Atlanta, GA 30301" +309821,27in 4K Gaming Monitor,1,389.99,12/31/19 13:40,"506 7th St, San Francisco, CA 94016" +309822,AAA Batteries (4-pack),1,2.99,12/02/19 14:26,"898 13th St, Boston, MA 02215" +309823,USB-C Charging Cable,1,11.95,12/16/19 14:16,"422 River St, Portland, OR 97035" +309824,Bose SoundSport Headphones,1,99.99,12/27/19 00:06,"454 Forest St, New York City, NY 10001" +309825,Bose SoundSport Headphones,1,99.99,12/10/19 16:09,"891 Ridge St, Los Angeles, CA 90001" +309826,AA Batteries (4-pack),2,3.84,12/04/19 08:39,"394 South St, Boston, MA 02215" +309827,Lightning Charging Cable,1,14.95,12/30/19 01:12,"22 1st St, Portland, OR 97035" +309828,AA Batteries (4-pack),3,3.84,12/20/19 18:25,"508 Maple St, Austin, TX 73301" +309829,Lightning Charging Cable,1,14.95,12/11/19 11:43,"78 2nd St, San Francisco, CA 94016" +309830,Google Phone,1,600,12/31/19 21:36,"340 5th St, New York City, NY 10001" +309831,34in Ultrawide Monitor,1,379.99,12/08/19 14:54,"653 1st St, New York City, NY 10001" +309832,AA Batteries (4-pack),2,3.84,12/10/19 09:48,"369 Washington St, San Francisco, CA 94016" +309833,Wired Headphones,1,11.99,12/26/19 14:40,"919 Main St, New York City, NY 10001" +309834,34in Ultrawide Monitor,1,379.99,12/08/19 18:30,"594 14th St, Portland, OR 97035" +309835,20in Monitor,1,109.99,12/25/19 16:40,"297 North St, Seattle, WA 98101" +309836,AA Batteries (4-pack),1,3.84,12/21/19 14:50,"62 Hill St, Los Angeles, CA 90001" +309837,Flatscreen TV,1,300,12/19/19 08:56,"134 Main St, Austin, TX 73301" +309838,27in FHD Monitor,1,149.99,12/20/19 17:56,"141 Walnut St, Los Angeles, CA 90001" +309839,Lightning Charging Cable,1,14.95,12/29/19 22:05,"345 Lincoln St, New York City, NY 10001" +309840,Flatscreen TV,1,300,12/31/19 09:51,"730 West St, San Francisco, CA 94016" +309841,Wired Headphones,1,11.99,12/30/19 13:13,"834 4th St, San Francisco, CA 94016" +309842,20in Monitor,1,109.99,12/17/19 14:41,"734 Hickory St, San Francisco, CA 94016" +309843,USB-C Charging Cable,1,11.95,12/01/19 10:28,"490 4th St, Atlanta, GA 30301" +309844,iPhone,1,700,12/29/19 06:08,"363 1st St, Seattle, WA 98101" +309845,Wired Headphones,1,11.99,12/12/19 14:29,"285 Church St, Austin, TX 73301" +309846,27in 4K Gaming Monitor,1,389.99,12/31/19 15:32,"418 Dogwood St, Austin, TX 73301" +309847,ThinkPad Laptop,1,999.99,12/23/19 23:29,"313 Wilson St, Portland, OR 97035" +309848,Apple Airpods Headphones,1,150,12/12/19 09:35,"395 Wilson St, San Francisco, CA 94016" +309849,Lightning Charging Cable,1,14.95,12/09/19 10:17,"190 Hill St, Dallas, TX 75001" +309850,27in FHD Monitor,1,149.99,12/31/19 17:51,"911 Lakeview St, Atlanta, GA 30301" +309851,Lightning Charging Cable,1,14.95,12/31/19 22:54,"492 Highland St, Dallas, TX 75001" +309852,AA Batteries (4-pack),2,3.84,12/04/19 07:20,"648 10th St, San Francisco, CA 94016" +309853,AA Batteries (4-pack),1,3.84,12/29/19 08:27,"330 Lakeview St, Los Angeles, CA 90001" +309854,AA Batteries (4-pack),1,3.84,12/10/19 08:22,"333 Forest St, Portland, OR 97035" +309855,iPhone,1,700,12/19/19 17:26,"250 Ridge St, Austin, TX 73301" +309855,Wired Headphones,1,11.99,12/19/19 17:26,"250 Ridge St, Austin, TX 73301" +309856,27in FHD Monitor,1,149.99,12/16/19 08:21,"123 Hill St, Boston, MA 02215" +309857,Macbook Pro Laptop,1,1700,12/27/19 12:05,"572 4th St, Los Angeles, CA 90001" +309858,AAA Batteries (4-pack),1,2.99,12/05/19 06:31,"935 North St, New York City, NY 10001" +309859,Google Phone,1,600,12/19/19 17:39,"734 5th St, San Francisco, CA 94016" +309860,AAA Batteries (4-pack),1,2.99,12/29/19 12:06,"93 Lakeview St, Dallas, TX 75001" +309861,Bose SoundSport Headphones,1,99.99,12/13/19 09:42,"287 1st St, Portland, OR 97035" +309862,iPhone,1,700,12/12/19 07:35,"162 Church St, Los Angeles, CA 90001" +309863,Bose SoundSport Headphones,1,99.99,12/19/19 13:01,"271 2nd St, San Francisco, CA 94016" +309864,AAA Batteries (4-pack),1,2.99,12/24/19 15:35,"475 Jefferson St, Boston, MA 02215" +309865,27in 4K Gaming Monitor,1,389.99,12/03/19 11:37,"767 Jefferson St, New York City, NY 10001" +309866,AAA Batteries (4-pack),1,2.99,12/05/19 22:09,"10 Wilson St, Dallas, TX 75001" +309867,Apple Airpods Headphones,1,150,12/13/19 16:01,"665 Hickory St, San Francisco, CA 94016" +309868,AAA Batteries (4-pack),1,2.99,12/24/19 01:06,"52 7th St, San Francisco, CA 94016" +309869,Bose SoundSport Headphones,1,99.99,12/05/19 10:52,"681 North St, San Francisco, CA 94016" +309870,Google Phone,1,600,12/18/19 22:27,"769 1st St, San Francisco, CA 94016" +309871,Wired Headphones,1,11.99,12/15/19 01:09,"959 Park St, Boston, MA 02215" +309872,Bose SoundSport Headphones,1,99.99,12/15/19 15:58,"577 Jefferson St, Seattle, WA 98101" +309873,Wired Headphones,1,11.99,12/20/19 17:01,"330 Lincoln St, San Francisco, CA 94016" +309874,27in FHD Monitor,1,149.99,12/05/19 10:06,"595 Cherry St, San Francisco, CA 94016" +309875,Lightning Charging Cable,1,14.95,12/04/19 18:28,"320 Madison St, Seattle, WA 98101" +309876,AA Batteries (4-pack),1,3.84,12/20/19 14:38,"781 Meadow St, San Francisco, CA 94016" +309877,USB-C Charging Cable,1,11.95,12/30/19 03:24,"627 5th St, Los Angeles, CA 90001" +309878,Flatscreen TV,1,300,12/05/19 08:42,"384 Dogwood St, Seattle, WA 98101" +309879,AAA Batteries (4-pack),1,2.99,12/17/19 19:24,"744 West St, Seattle, WA 98101" +309880,Bose SoundSport Headphones,1,99.99,12/07/19 09:40,"917 Cedar St, San Francisco, CA 94016" +309881,Wired Headphones,1,11.99,12/24/19 08:21,"22 Elm St, New York City, NY 10001" +309882,Bose SoundSport Headphones,1,99.99,12/16/19 21:46,"659 Meadow St, Portland, OR 97035" +309883,Bose SoundSport Headphones,1,99.99,12/31/19 09:33,"403 Washington St, New York City, NY 10001" +309884,34in Ultrawide Monitor,1,379.99,12/01/19 07:24,"292 Highland St, Los Angeles, CA 90001" +309885,iPhone,1,700,12/16/19 15:22,"903 12th St, Atlanta, GA 30301" +309886,34in Ultrawide Monitor,1,379.99,12/01/19 20:22,"595 Highland St, Dallas, TX 75001" +309887,Lightning Charging Cable,2,14.95,12/21/19 09:12,"677 Highland St, Dallas, TX 75001" +309888,Apple Airpods Headphones,1,150,12/05/19 09:56,"464 9th St, New York City, NY 10001" +309889,Lightning Charging Cable,1,14.95,12/20/19 09:42,"246 Meadow St, New York City, NY 10001" +309890,20in Monitor,1,109.99,12/26/19 07:47,"739 14th St, New York City, NY 10001" +309891,Apple Airpods Headphones,1,150,12/11/19 07:47,"534 Sunset St, Portland, OR 97035" +309892,Lightning Charging Cable,1,14.95,12/19/19 20:33,"999 Hill St, Los Angeles, CA 90001" +309893,Bose SoundSport Headphones,1,99.99,12/20/19 07:17,"229 Hickory St, Seattle, WA 98101" +309894,AAA Batteries (4-pack),2,2.99,12/24/19 18:51,"398 14th St, Dallas, TX 75001" +,,,,, +309895,34in Ultrawide Monitor,1,379.99,12/24/19 04:29,"330 Highland St, Austin, TX 73301" +309896,Wired Headphones,1,11.99,12/01/19 14:19,"607 Chestnut St, Los Angeles, CA 90001" +309897,20in Monitor,1,109.99,12/10/19 15:23,"446 Chestnut St, Los Angeles, CA 90001" +309898,AAA Batteries (4-pack),1,2.99,12/20/19 07:31,"496 Main St, Los Angeles, CA 90001" +309899,USB-C Charging Cable,1,11.95,12/30/19 09:18,"463 Main St, Portland, OR 97035" +309900,AAA Batteries (4-pack),1,2.99,12/06/19 12:24,"284 Cherry St, Boston, MA 02215" +309901,20in Monitor,1,109.99,12/13/19 15:23,"453 13th St, Portland, ME 04101" +309902,Flatscreen TV,1,300,12/14/19 15:35,"119 Pine St, Portland, OR 97035" +309903,AA Batteries (4-pack),2,3.84,12/27/19 10:38,"131 Sunset St, New York City, NY 10001" +309904,Lightning Charging Cable,1,14.95,12/15/19 10:53,"399 10th St, Dallas, TX 75001" +309905,Wired Headphones,1,11.99,12/15/19 19:08,"958 Washington St, Atlanta, GA 30301" +309906,Wired Headphones,1,11.99,12/17/19 14:23,"394 Jackson St, San Francisco, CA 94016" +309907,USB-C Charging Cable,1,11.95,12/01/19 11:32,"796 Ridge St, Atlanta, GA 30301" +309908,USB-C Charging Cable,1,11.95,12/23/19 13:02,"545 Cherry St, Los Angeles, CA 90001" +309909,Bose SoundSport Headphones,1,99.99,12/07/19 14:10,"906 5th St, Austin, TX 73301" +309910,USB-C Charging Cable,1,11.95,12/04/19 13:37,"388 Lake St, San Francisco, CA 94016" +309911,AA Batteries (4-pack),4,3.84,12/05/19 16:09,"615 2nd St, Dallas, TX 75001" +309912,AA Batteries (4-pack),2,3.84,12/22/19 13:29,"273 8th St, Seattle, WA 98101" +309913,Bose SoundSport Headphones,1,99.99,12/25/19 19:37,"467 Johnson St, New York City, NY 10001" +309914,AAA Batteries (4-pack),1,2.99,12/20/19 08:31,"740 Main St, Atlanta, GA 30301" +309915,Google Phone,1,600,12/08/19 09:06,"354 North St, Atlanta, GA 30301" +309916,Macbook Pro Laptop,1,1700,12/19/19 09:13,"138 Park St, Los Angeles, CA 90001" +309917,Bose SoundSport Headphones,1,99.99,12/17/19 11:22,"918 Lakeview St, Boston, MA 02215" +309918,27in 4K Gaming Monitor,1,389.99,12/30/19 21:14,"680 6th St, New York City, NY 10001" +309919,Google Phone,1,600,12/31/19 12:30,"752 Highland St, Los Angeles, CA 90001" +309919,Wired Headphones,1,11.99,12/31/19 12:30,"752 Highland St, Los Angeles, CA 90001" +309920,Lightning Charging Cable,1,14.95,12/11/19 08:54,"990 Elm St, Atlanta, GA 30301" +309921,34in Ultrawide Monitor,1,379.99,12/21/19 06:26,"531 Forest St, Seattle, WA 98101" +309922,Wired Headphones,1,11.99,12/18/19 08:02,"867 Ridge St, Los Angeles, CA 90001" +309923,Flatscreen TV,1,300,12/05/19 16:59,"285 8th St, San Francisco, CA 94016" +309924,Wired Headphones,1,11.99,12/29/19 07:13,"938 13th St, San Francisco, CA 94016" +309925,Google Phone,1,600,12/16/19 19:23,"674 Adams St, Dallas, TX 75001" +309926,Google Phone,1,600,12/11/19 09:18,"729 Hill St, Boston, MA 02215" +309927,27in FHD Monitor,1,149.99,12/15/19 18:04,"412 River St, Los Angeles, CA 90001" +309928,Wired Headphones,1,11.99,12/23/19 00:15,"212 Cedar St, Boston, MA 02215" +309929,USB-C Charging Cable,1,11.95,12/24/19 09:02,"811 Washington St, Atlanta, GA 30301" +309930,USB-C Charging Cable,1,11.95,12/03/19 17:30,"219 Jefferson St, Boston, MA 02215" +309931,Lightning Charging Cable,1,14.95,12/24/19 22:08,"503 Dogwood St, Seattle, WA 98101" +309932,Wired Headphones,1,11.99,12/13/19 09:19,"931 South St, Los Angeles, CA 90001" +309933,AAA Batteries (4-pack),1,2.99,12/21/19 19:37,"604 Main St, San Francisco, CA 94016" +309934,Wired Headphones,2,11.99,12/16/19 17:32,"427 Main St, San Francisco, CA 94016" +309935,Apple Airpods Headphones,1,150,12/22/19 22:09,"712 Chestnut St, New York City, NY 10001" +309936,Lightning Charging Cable,1,14.95,12/30/19 18:16,"630 Main St, Seattle, WA 98101" +309937,AAA Batteries (4-pack),2,2.99,12/20/19 16:50,"87 1st St, Atlanta, GA 30301" +309938,Wired Headphones,1,11.99,12/11/19 17:33,"219 Walnut St, New York City, NY 10001" +309939,AA Batteries (4-pack),1,3.84,12/28/19 18:10,"486 5th St, San Francisco, CA 94016" +309940,AAA Batteries (4-pack),3,2.99,12/23/19 07:27,"365 Lincoln St, San Francisco, CA 94016" +309941,Google Phone,1,600,12/05/19 14:47,"895 6th St, Los Angeles, CA 90001" +309941,Bose SoundSport Headphones,1,99.99,12/05/19 14:47,"895 6th St, Los Angeles, CA 90001" +309942,Lightning Charging Cable,1,14.95,12/15/19 21:02,"466 8th St, San Francisco, CA 94016" +309943,34in Ultrawide Monitor,1,379.99,12/20/19 12:05,"466 11th St, Boston, MA 02215" +309944,Bose SoundSport Headphones,1,99.99,12/19/19 10:20,"537 9th St, San Francisco, CA 94016" +309945,Wired Headphones,2,11.99,12/17/19 11:38,"306 Park St, San Francisco, CA 94016" +309946,LG Washing Machine,1,600.0,12/12/19 11:45,"558 Johnson St, Los Angeles, CA 90001" +309947,ThinkPad Laptop,1,999.99,12/12/19 15:41,"853 Lincoln St, New York City, NY 10001" +309948,Lightning Charging Cable,1,14.95,12/20/19 19:56,"861 2nd St, San Francisco, CA 94016" +309949,AA Batteries (4-pack),1,3.84,12/05/19 14:24,"980 Church St, San Francisco, CA 94016" +309950,Macbook Pro Laptop,1,1700,12/07/19 19:33,"878 West St, New York City, NY 10001" +309951,USB-C Charging Cable,1,11.95,12/23/19 11:05,"698 Elm St, Los Angeles, CA 90001" +309952,Wired Headphones,1,11.99,12/13/19 22:11,"213 Lincoln St, Seattle, WA 98101" +309953,AAA Batteries (4-pack),1,2.99,12/28/19 13:43,"874 Hill St, Boston, MA 02215" +309954,Apple Airpods Headphones,1,150,12/27/19 22:33,"378 6th St, Los Angeles, CA 90001" +309955,27in FHD Monitor,1,149.99,12/30/19 12:43,"530 Willow St, New York City, NY 10001" +309956,Lightning Charging Cable,1,14.95,12/01/19 14:00,"219 South St, Boston, MA 02215" +309957,Apple Airpods Headphones,1,150,12/17/19 13:08,"378 Park St, Dallas, TX 75001" +309958,Vareebadd Phone,1,400,12/30/19 09:24,"168 Highland St, Austin, TX 73301" +309958,Bose SoundSport Headphones,1,99.99,12/30/19 09:24,"168 Highland St, Austin, TX 73301" +309959,AA Batteries (4-pack),1,3.84,12/12/19 21:31,"831 12th St, Dallas, TX 75001" +309960,Lightning Charging Cable,1,14.95,12/27/19 08:32,"820 South St, Dallas, TX 75001" +309961,Bose SoundSport Headphones,1,99.99,12/04/19 20:56,"753 River St, Los Angeles, CA 90001" +309962,Macbook Pro Laptop,1,1700,12/31/19 12:16,"222 Hickory St, Los Angeles, CA 90001" +309963,34in Ultrawide Monitor,1,379.99,12/06/19 09:21,"434 Lake St, San Francisco, CA 94016" +309964,27in 4K Gaming Monitor,1,389.99,12/10/19 22:08,"885 Jackson St, San Francisco, CA 94016" +309965,Wired Headphones,3,11.99,12/08/19 18:56,"666 4th St, Los Angeles, CA 90001" +309966,AA Batteries (4-pack),1,3.84,12/23/19 01:25,"94 7th St, Dallas, TX 75001" +309967,Lightning Charging Cable,1,14.95,12/09/19 17:04,"493 Hill St, Portland, OR 97035" +309968,USB-C Charging Cable,1,11.95,12/11/19 13:35,"902 4th St, Boston, MA 02215" +309969,Google Phone,1,600,12/02/19 10:51,"18 13th St, Portland, OR 97035" +309970,AAA Batteries (4-pack),2,2.99,12/03/19 11:25,"830 Ridge St, Atlanta, GA 30301" +309971,Apple Airpods Headphones,1,150,12/03/19 23:56,"243 Dogwood St, Atlanta, GA 30301" +309972,AA Batteries (4-pack),1,3.84,12/06/19 13:34,"458 Cedar St, Seattle, WA 98101" +309972,LG Washing Machine,1,600.0,12/06/19 13:34,"458 Cedar St, Seattle, WA 98101" +309973,20in Monitor,1,109.99,12/25/19 16:55,"209 Jefferson St, Atlanta, GA 30301" +309974,USB-C Charging Cable,1,11.95,12/03/19 13:16,"946 7th St, Boston, MA 02215" +309975,Wired Headphones,1,11.99,12/11/19 13:31,"293 Cherry St, Atlanta, GA 30301" +309975,USB-C Charging Cable,1,11.95,12/11/19 13:31,"293 Cherry St, Atlanta, GA 30301" +309976,Wired Headphones,1,11.99,12/12/19 16:01,"666 Park St, Atlanta, GA 30301" +309977,AA Batteries (4-pack),1,3.84,12/22/19 09:48,"105 Dogwood St, Dallas, TX 75001" +309978,Google Phone,1,600,12/29/19 16:20,"37 Washington St, Los Angeles, CA 90001" +309979,Lightning Charging Cable,1,14.95,12/30/19 15:13,"943 Madison St, San Francisco, CA 94016" +309980,AAA Batteries (4-pack),1,2.99,12/12/19 15:21,"695 North St, San Francisco, CA 94016" +309981,Lightning Charging Cable,1,14.95,12/04/19 11:23,"517 Lincoln St, New York City, NY 10001" +309982,AAA Batteries (4-pack),2,2.99,12/01/19 04:41,"487 Ridge St, New York City, NY 10001" +309982,Apple Airpods Headphones,1,150,12/01/19 04:41,"487 Ridge St, New York City, NY 10001" +309983,Lightning Charging Cable,1,14.95,12/07/19 21:30,"241 South St, Seattle, WA 98101" +309984,AAA Batteries (4-pack),4,2.99,12/22/19 16:03,"145 Willow St, Austin, TX 73301" +309985,Flatscreen TV,1,300,12/29/19 21:44,"396 Church St, San Francisco, CA 94016" +309986,Wired Headphones,1,11.99,12/15/19 12:18,"278 Lakeview St, San Francisco, CA 94016" +309987,AAA Batteries (4-pack),1,2.99,12/08/19 16:30,"224 11th St, Seattle, WA 98101" +309988,AAA Batteries (4-pack),1,2.99,12/15/19 22:30,"508 Dogwood St, San Francisco, CA 94016" +309989,27in 4K Gaming Monitor,1,389.99,12/14/19 09:27,"166 Washington St, San Francisco, CA 94016" +309990,Lightning Charging Cable,1,14.95,12/08/19 00:25,"898 Center St, Atlanta, GA 30301" +309991,AA Batteries (4-pack),1,3.84,12/30/19 11:57,"703 Madison St, Portland, OR 97035" +309992,AAA Batteries (4-pack),2,2.99,12/10/19 13:41,"280 Ridge St, Austin, TX 73301" +309993,Wired Headphones,1,11.99,12/25/19 08:23,"527 Wilson St, San Francisco, CA 94016" +309994,AAA Batteries (4-pack),1,2.99,12/15/19 22:42,"824 Hill St, San Francisco, CA 94016" +309995,27in 4K Gaming Monitor,1,389.99,12/23/19 20:48,"204 Elm St, New York City, NY 10001" +309996,Lightning Charging Cable,1,14.95,12/01/19 20:29,"709 South St, Seattle, WA 98101" +309997,Wired Headphones,1,11.99,12/06/19 01:28,"567 2nd St, New York City, NY 10001" +309998,Lightning Charging Cable,1,14.95,12/27/19 08:29,"724 Adams St, New York City, NY 10001" +309999,AA Batteries (4-pack),2,3.84,12/04/19 18:54,"219 Maple St, San Francisco, CA 94016" +310000,Bose SoundSport Headphones,1,99.99,12/25/19 17:31,"643 Dogwood St, Seattle, WA 98101" +310001,AA Batteries (4-pack),3,3.84,12/20/19 21:17,"441 Maple St, Seattle, WA 98101" +310002,Lightning Charging Cable,1,14.95,12/20/19 06:27,"411 Hill St, Los Angeles, CA 90001" +310002,LG Dryer,1,600.0,12/20/19 06:27,"411 Hill St, Los Angeles, CA 90001" +310003,34in Ultrawide Monitor,1,379.99,12/13/19 21:45,"62 Dogwood St, Portland, OR 97035" +310004,iPhone,1,700,12/15/19 13:47,"892 Jefferson St, Portland, ME 04101" +310004,Wired Headphones,1,11.99,12/15/19 13:47,"892 Jefferson St, Portland, ME 04101" +310005,USB-C Charging Cable,1,11.95,12/25/19 20:09,"149 Lake St, Dallas, TX 75001" +310006,AA Batteries (4-pack),1,3.84,12/02/19 20:28,"193 4th St, Atlanta, GA 30301" +310007,LG Dryer,1,600.0,12/21/19 19:54,"108 13th St, Los Angeles, CA 90001" +310008,Apple Airpods Headphones,1,150,12/10/19 17:48,"71 1st St, San Francisco, CA 94016" +310009,USB-C Charging Cable,1,11.95,12/10/19 18:41,"191 Lincoln St, New York City, NY 10001" +310009,iPhone,1,700,12/10/19 18:41,"191 Lincoln St, New York City, NY 10001" +310010,USB-C Charging Cable,1,11.95,12/12/19 19:23,"79 Church St, Los Angeles, CA 90001" +310011,AAA Batteries (4-pack),1,2.99,12/13/19 22:08,"813 South St, Los Angeles, CA 90001" +310012,34in Ultrawide Monitor,1,379.99,12/31/19 19:03,"763 Main St, Portland, OR 97035" +310013,USB-C Charging Cable,1,11.95,12/21/19 11:36,"709 Sunset St, Atlanta, GA 30301" +310014,USB-C Charging Cable,1,11.95,12/20/19 18:14,"498 Madison St, Atlanta, GA 30301" +310015,Wired Headphones,1,11.99,12/24/19 07:25,"219 Chestnut St, San Francisco, CA 94016" +310016,Lightning Charging Cable,1,14.95,12/23/19 13:30,"884 Church St, Portland, OR 97035" +310017,USB-C Charging Cable,1,11.95,12/05/19 12:25,"965 South St, Portland, ME 04101" +310018,AAA Batteries (4-pack),1,2.99,12/30/19 21:58,"602 Adams St, San Francisco, CA 94016" +310019,USB-C Charging Cable,1,11.95,12/03/19 01:36,"459 Madison St, Los Angeles, CA 90001" +310020,ThinkPad Laptop,1,999.99,12/09/19 16:15,"970 Spruce St, San Francisco, CA 94016" +310021,34in Ultrawide Monitor,1,379.99,12/15/19 21:02,"199 Pine St, Los Angeles, CA 90001" +310022,AA Batteries (4-pack),2,3.84,12/06/19 16:13,"846 Main St, San Francisco, CA 94016" +310023,Google Phone,1,600,12/31/19 12:39,"28 Main St, San Francisco, CA 94016" +310024,20in Monitor,1,109.99,12/09/19 08:28,"407 Church St, New York City, NY 10001" +310025,34in Ultrawide Monitor,1,379.99,12/25/19 17:12,"824 Lakeview St, Los Angeles, CA 90001" +310026,USB-C Charging Cable,1,11.95,12/15/19 23:00,"965 Dogwood St, Los Angeles, CA 90001" +310027,AA Batteries (4-pack),1,3.84,12/17/19 16:18,"798 Hickory St, Seattle, WA 98101" +310028,Lightning Charging Cable,1,14.95,12/28/19 18:12,"310 Dogwood St, Boston, MA 02215" +310029,AA Batteries (4-pack),2,3.84,12/30/19 16:41,"767 Forest St, San Francisco, CA 94016" +310030,Wired Headphones,1,11.99,12/01/19 09:40,"627 Lincoln St, San Francisco, CA 94016" +310031,AAA Batteries (4-pack),2,2.99,12/05/19 03:42,"691 10th St, New York City, NY 10001" +310032,27in FHD Monitor,1,149.99,12/29/19 10:59,"712 Meadow St, San Francisco, CA 94016" +310033,USB-C Charging Cable,1,11.95,12/13/19 12:26,"876 Elm St, Austin, TX 73301" +310034,AA Batteries (4-pack),2,3.84,12/31/19 16:08,"672 5th St, Los Angeles, CA 90001" +310035,AA Batteries (4-pack),1,3.84,12/09/19 22:49,"454 4th St, San Francisco, CA 94016" +310036,Vareebadd Phone,1,400,12/18/19 10:43,"383 Elm St, Atlanta, GA 30301" +310036,Bose SoundSport Headphones,1,99.99,12/18/19 10:43,"383 Elm St, Atlanta, GA 30301" +310037,USB-C Charging Cable,1,11.95,12/28/19 07:53,"610 Walnut St, Atlanta, GA 30301" +310038,34in Ultrawide Monitor,1,379.99,12/25/19 09:23,"866 1st St, San Francisco, CA 94016" +310039,ThinkPad Laptop,1,999.99,12/04/19 14:28,"80 Highland St, Los Angeles, CA 90001" +310040,Bose SoundSport Headphones,1,99.99,12/13/19 21:09,"884 Hill St, Atlanta, GA 30301" +310041,AAA Batteries (4-pack),4,2.99,12/17/19 23:21,"331 Meadow St, Boston, MA 02215" +310042,AAA Batteries (4-pack),1,2.99,12/31/19 23:03,"688 Main St, Los Angeles, CA 90001" +310043,AAA Batteries (4-pack),3,2.99,12/24/19 19:08,"994 Lincoln St, Los Angeles, CA 90001" +310044,Vareebadd Phone,1,400,12/29/19 13:34,"444 Lakeview St, Portland, ME 04101" +310045,AA Batteries (4-pack),2,3.84,12/12/19 13:53,"397 Johnson St, Los Angeles, CA 90001" +310046,Apple Airpods Headphones,1,150,12/21/19 01:19,"126 Jefferson St, San Francisco, CA 94016" +310047,27in 4K Gaming Monitor,1,389.99,12/13/19 12:27,"125 11th St, Dallas, TX 75001" +310048,Bose SoundSport Headphones,1,99.99,12/24/19 17:03,"976 Main St, Atlanta, GA 30301" +310048,AA Batteries (4-pack),1,3.84,12/24/19 17:03,"976 Main St, Atlanta, GA 30301" +310049,Apple Airpods Headphones,1,150,12/02/19 11:13,"760 4th St, Austin, TX 73301" +310050,Apple Airpods Headphones,1,150,12/21/19 09:35,"493 Sunset St, San Francisco, CA 94016" +310051,27in FHD Monitor,1,149.99,12/05/19 07:37,"104 8th St, San Francisco, CA 94016" +310052,USB-C Charging Cable,2,11.95,12/15/19 10:50,"931 Main St, Seattle, WA 98101" +310053,AA Batteries (4-pack),1,3.84,12/13/19 07:48,"139 Main St, San Francisco, CA 94016" +310054,Apple Airpods Headphones,1,150,12/12/19 16:38,"183 Walnut St, Dallas, TX 75001" +310055,27in FHD Monitor,1,149.99,12/27/19 12:51,"689 Cedar St, San Francisco, CA 94016" +310056,AA Batteries (4-pack),1,3.84,12/13/19 15:57,"318 Johnson St, San Francisco, CA 94016" +310057,Flatscreen TV,1,300,12/27/19 19:31,"778 Maple St, Atlanta, GA 30301" +310058,Wired Headphones,1,11.99,12/28/19 21:41,"751 11th St, Boston, MA 02215" +310059,Vareebadd Phone,1,400,12/13/19 20:56,"812 8th St, San Francisco, CA 94016" +310060,AAA Batteries (4-pack),1,2.99,12/15/19 20:21,"557 North St, Atlanta, GA 30301" +310061,Lightning Charging Cable,1,14.95,12/09/19 12:13,"334 10th St, San Francisco, CA 94016" +310062,Lightning Charging Cable,1,14.95,12/07/19 12:24,"806 Ridge St, New York City, NY 10001" +310063,Vareebadd Phone,1,400,12/14/19 05:50,"902 1st St, Los Angeles, CA 90001" +310064,Lightning Charging Cable,1,14.95,12/24/19 11:06,"331 9th St, San Francisco, CA 94016" +310065,Wired Headphones,1,11.99,12/03/19 11:25,"922 4th St, New York City, NY 10001" +310066,AA Batteries (4-pack),1,3.84,12/31/19 12:42,"67 Hill St, San Francisco, CA 94016" +310067,AA Batteries (4-pack),1,3.84,12/04/19 13:32,"411 Hill St, Boston, MA 02215" +310068,Flatscreen TV,1,300,12/13/19 22:53,"646 5th St, Austin, TX 73301" +310069,AA Batteries (4-pack),1,3.84,12/05/19 13:25,"427 7th St, New York City, NY 10001" +310070,Macbook Pro Laptop,1,1700,12/13/19 12:54,"727 Madison St, San Francisco, CA 94016" +310071,Apple Airpods Headphones,1,150,12/28/19 12:13,"993 Maple St, Los Angeles, CA 90001" +310072,Wired Headphones,1,11.99,12/15/19 13:23,"186 Willow St, Los Angeles, CA 90001" +310073,Bose SoundSport Headphones,1,99.99,12/09/19 01:15,"780 6th St, Boston, MA 02215" +310073,AA Batteries (4-pack),1,3.84,12/09/19 01:15,"780 6th St, Boston, MA 02215" +310074,USB-C Charging Cable,2,11.95,12/16/19 22:45,"136 Cherry St, San Francisco, CA 94016" +310075,Lightning Charging Cable,2,14.95,12/23/19 17:21,"709 Cedar St, Dallas, TX 75001" +310076,AAA Batteries (4-pack),3,2.99,12/07/19 15:02,"236 2nd St, Dallas, TX 75001" +310077,USB-C Charging Cable,1,11.95,12/11/19 12:02,"894 Hickory St, Boston, MA 02215" +310078,USB-C Charging Cable,2,11.95,12/27/19 20:01,"885 Lake St, Seattle, WA 98101" +310079,Lightning Charging Cable,1,14.95,12/06/19 18:43,"741 Lake St, Los Angeles, CA 90001" +310080,27in FHD Monitor,1,149.99,12/13/19 10:40,"114 Church St, New York City, NY 10001" +310081,AA Batteries (4-pack),1,3.84,12/05/19 22:17,"668 6th St, San Francisco, CA 94016" +310082,27in FHD Monitor,1,149.99,12/05/19 17:24,"388 11th St, Los Angeles, CA 90001" +310083,AAA Batteries (4-pack),1,2.99,12/08/19 13:54,"78 14th St, San Francisco, CA 94016" +310084,iPhone,1,700,12/04/19 20:36,"738 Highland St, Atlanta, GA 30301" +310085,AAA Batteries (4-pack),2,2.99,12/08/19 16:08,"285 Forest St, Atlanta, GA 30301" +310086,AAA Batteries (4-pack),2,2.99,12/26/19 13:37,"761 11th St, Atlanta, GA 30301" +310087,AA Batteries (4-pack),1,3.84,12/26/19 13:11,"173 Wilson St, Los Angeles, CA 90001" +310088,Wired Headphones,1,11.99,12/29/19 09:18,"760 Pine St, San Francisco, CA 94016" +310089,Vareebadd Phone,1,400,12/23/19 10:50,"595 11th St, Austin, TX 73301" +310090,AAA Batteries (4-pack),2,2.99,12/22/19 09:36,"600 Highland St, San Francisco, CA 94016" +310091,USB-C Charging Cable,1,11.95,12/03/19 06:55,"821 Cherry St, New York City, NY 10001" +310092,27in 4K Gaming Monitor,1,389.99,12/22/19 18:56,"516 River St, Seattle, WA 98101" +310093,Wired Headphones,1,11.99,12/24/19 08:06,"803 Adams St, San Francisco, CA 94016" +310094,Google Phone,1,600,12/27/19 09:45,"875 9th St, San Francisco, CA 94016" +310095,Wired Headphones,1,11.99,12/24/19 21:18,"694 9th St, San Francisco, CA 94016" +310096,Bose SoundSport Headphones,1,99.99,12/01/19 20:51,"751 7th St, Los Angeles, CA 90001" +310097,Wired Headphones,1,11.99,12/08/19 17:23,"899 West St, Atlanta, GA 30301" +310098,Macbook Pro Laptop,1,1700,12/22/19 22:59,"206 7th St, Los Angeles, CA 90001" +310099,Wired Headphones,1,11.99,12/23/19 16:54,"947 Spruce St, New York City, NY 10001" +310100,AAA Batteries (4-pack),1,2.99,12/15/19 05:48,"750 Spruce St, Dallas, TX 75001" +310101,AA Batteries (4-pack),1,3.84,12/09/19 10:48,"846 Lake St, San Francisco, CA 94016" +310102,Apple Airpods Headphones,1,150,12/23/19 10:20,"131 Elm St, Atlanta, GA 30301" +310103,Apple Airpods Headphones,1,150,12/08/19 22:11,"539 Meadow St, San Francisco, CA 94016" +310104,27in 4K Gaming Monitor,1,389.99,12/09/19 14:02,"27 9th St, Atlanta, GA 30301" +310105,iPhone,1,700,12/15/19 21:19,"103 7th St, New York City, NY 10001" +310106,Lightning Charging Cable,1,14.95,12/14/19 10:51,"919 Elm St, San Francisco, CA 94016" +310107,USB-C Charging Cable,1,11.95,12/21/19 12:37,"299 Highland St, Dallas, TX 75001" +310108,AAA Batteries (4-pack),1,2.99,12/05/19 21:12,"459 4th St, Portland, OR 97035" +310109,20in Monitor,1,109.99,12/04/19 09:57,"826 Main St, San Francisco, CA 94016" +310110,Lightning Charging Cable,1,14.95,12/15/19 11:28,"491 Ridge St, Boston, MA 02215" +310111,AA Batteries (4-pack),1,3.84,12/11/19 13:52,"215 10th St, New York City, NY 10001" +310112,AA Batteries (4-pack),1,3.84,12/28/19 14:39,"574 8th St, Dallas, TX 75001" +310113,USB-C Charging Cable,1,11.95,12/09/19 17:42,"850 14th St, New York City, NY 10001" +310114,AA Batteries (4-pack),2,3.84,12/02/19 21:06,"187 9th St, San Francisco, CA 94016" +310115,Apple Airpods Headphones,1,150,12/03/19 18:30,"733 Pine St, Portland, OR 97035" +310116,Lightning Charging Cable,1,14.95,12/17/19 18:19,"564 Washington St, Los Angeles, CA 90001" +310117,AAA Batteries (4-pack),1,2.99,12/20/19 10:25,"673 Jefferson St, Dallas, TX 75001" +310118,Vareebadd Phone,1,400,12/25/19 00:17,"825 Elm St, Dallas, TX 75001" +310119,USB-C Charging Cable,1,11.95,12/29/19 21:58,"268 Church St, Dallas, TX 75001" +310120,AA Batteries (4-pack),1,3.84,12/21/19 11:05,"90 Forest St, Portland, OR 97035" +310121,Bose SoundSport Headphones,1,99.99,12/01/19 10:40,"818 Sunset St, New York City, NY 10001" +310122,ThinkPad Laptop,1,999.99,12/03/19 10:43,"958 Johnson St, Los Angeles, CA 90001" +310123,AA Batteries (4-pack),2,3.84,12/12/19 10:45,"633 Lake St, Boston, MA 02215" +,,,,, +310124,Wired Headphones,1,11.99,12/10/19 05:16,"703 Jefferson St, New York City, NY 10001" +310125,Lightning Charging Cable,1,14.95,12/16/19 23:57,"777 13th St, Atlanta, GA 30301" +310126,Vareebadd Phone,1,400,12/27/19 15:27,"677 8th St, Boston, MA 02215" +310126,Wired Headphones,1,11.99,12/27/19 15:27,"677 8th St, Boston, MA 02215" +310127,AA Batteries (4-pack),1,3.84,12/03/19 14:04,"692 1st St, San Francisco, CA 94016" +310128,AA Batteries (4-pack),2,3.84,12/18/19 21:16,"358 Park St, San Francisco, CA 94016" +310129,27in 4K Gaming Monitor,1,389.99,12/19/19 11:04,"854 11th St, Los Angeles, CA 90001" +310130,Lightning Charging Cable,1,14.95,12/08/19 09:20,"158 Washington St, Austin, TX 73301" +310131,Flatscreen TV,1,300,12/14/19 17:35,"442 Lakeview St, Austin, TX 73301" +310132,LG Dryer,1,600.0,12/16/19 22:08,"916 Willow St, San Francisco, CA 94016" +310133,AA Batteries (4-pack),1,3.84,12/31/19 10:47,"989 Center St, Los Angeles, CA 90001" +310134,Lightning Charging Cable,1,14.95,12/23/19 17:49,"819 Johnson St, Dallas, TX 75001" +310135,34in Ultrawide Monitor,1,379.99,12/17/19 19:17,"89 7th St, Boston, MA 02215" +310136,AA Batteries (4-pack),2,3.84,12/23/19 12:40,"54 Cherry St, Austin, TX 73301" +310137,27in FHD Monitor,1,149.99,12/15/19 17:12,"235 6th St, Los Angeles, CA 90001" +310138,Apple Airpods Headphones,1,150,12/06/19 12:39,"756 Forest St, San Francisco, CA 94016" +310139,Macbook Pro Laptop,1,1700,12/09/19 10:40,"520 Dogwood St, Los Angeles, CA 90001" +310140,USB-C Charging Cable,1,11.95,12/09/19 14:35,"115 River St, San Francisco, CA 94016" +310141,AA Batteries (4-pack),2,3.84,12/26/19 08:23,"328 1st St, Atlanta, GA 30301" +310142,Wired Headphones,1,11.99,12/02/19 21:23,"202 11th St, San Francisco, CA 94016" +310143,27in FHD Monitor,1,149.99,12/24/19 16:17,"355 Walnut St, San Francisco, CA 94016" +310144,27in FHD Monitor,1,149.99,12/26/19 08:27,"867 Sunset St, San Francisco, CA 94016" +310145,AAA Batteries (4-pack),1,2.99,12/20/19 18:51,"894 10th St, San Francisco, CA 94016" +310146,USB-C Charging Cable,2,11.95,12/29/19 18:30,"911 Willow St, Austin, TX 73301" +310147,iPhone,1,700,12/15/19 07:38,"574 Main St, San Francisco, CA 94016" +310148,Google Phone,1,600,12/16/19 23:16,"187 Lincoln St, San Francisco, CA 94016" +310149,27in FHD Monitor,1,149.99,12/28/19 15:16,"401 2nd St, New York City, NY 10001" +310150,AA Batteries (4-pack),1,3.84,12/08/19 16:31,"828 8th St, Seattle, WA 98101" +310151,USB-C Charging Cable,1,11.95,12/04/19 08:22,"585 Forest St, Austin, TX 73301" +310152,Google Phone,1,600,12/18/19 18:14,"895 12th St, Portland, OR 97035" +310153,Lightning Charging Cable,1,14.95,12/11/19 20:13,"159 12th St, Dallas, TX 75001" +310154,27in FHD Monitor,1,149.99,12/23/19 22:51,"482 Cherry St, Seattle, WA 98101" +310155,AA Batteries (4-pack),1,3.84,12/06/19 15:27,"980 Cedar St, New York City, NY 10001" +310156,Macbook Pro Laptop,1,1700,12/08/19 11:08,"595 Wilson St, Seattle, WA 98101" +310157,iPhone,1,700,12/12/19 19:58,"434 Johnson St, New York City, NY 10001" +310158,AAA Batteries (4-pack),2,2.99,12/31/19 16:33,"644 Maple St, Seattle, WA 98101" +310159,Wired Headphones,1,11.99,12/06/19 12:25,"691 North St, Austin, TX 73301" +310160,AA Batteries (4-pack),1,3.84,12/13/19 12:17,"301 1st St, Boston, MA 02215" +310161,Lightning Charging Cable,1,14.95,12/22/19 22:10,"593 Hickory St, Boston, MA 02215" +310162,Wired Headphones,1,11.99,12/05/19 14:55,"743 Walnut St, Dallas, TX 75001" +310163,Apple Airpods Headphones,1,150,12/21/19 21:34,"519 9th St, New York City, NY 10001" +310164,Flatscreen TV,1,300,12/03/19 09:16,"697 13th St, Los Angeles, CA 90001" +310165,USB-C Charging Cable,1,11.95,12/06/19 20:57,"347 Walnut St, New York City, NY 10001" +310166,USB-C Charging Cable,1,11.95,12/09/19 10:50,"47 Dogwood St, Atlanta, GA 30301" +310167,Apple Airpods Headphones,1,150,12/03/19 11:21,"54 Dogwood St, Portland, OR 97035" +310168,Apple Airpods Headphones,1,150,12/16/19 19:45,"101 4th St, Los Angeles, CA 90001" +310169,USB-C Charging Cable,1,11.95,12/23/19 13:48,"770 12th St, Boston, MA 02215" +310170,Wired Headphones,1,11.99,12/28/19 10:06,"909 Wilson St, Boston, MA 02215" +310171,USB-C Charging Cable,1,11.95,12/06/19 10:44,"78 Elm St, San Francisco, CA 94016" +310172,Google Phone,1,600,12/25/19 13:36,"676 2nd St, Los Angeles, CA 90001" +310173,Apple Airpods Headphones,1,150,12/08/19 09:53,"249 10th St, Los Angeles, CA 90001" +310174,USB-C Charging Cable,1,11.95,12/05/19 19:21,"834 8th St, Atlanta, GA 30301" +310175,Lightning Charging Cable,1,14.95,12/23/19 15:26,"737 Ridge St, New York City, NY 10001" +310176,Lightning Charging Cable,1,14.95,12/09/19 16:29,"44 Highland St, New York City, NY 10001" +310177,AAA Batteries (4-pack),2,2.99,12/05/19 01:17,"314 2nd St, San Francisco, CA 94016" +310178,Lightning Charging Cable,1,14.95,12/30/19 15:34,"602 8th St, Portland, OR 97035" +310179,USB-C Charging Cable,1,11.95,12/13/19 09:18,"331 Main St, Los Angeles, CA 90001" +310180,Lightning Charging Cable,1,14.95,12/01/19 13:56,"435 Cedar St, New York City, NY 10001" +310181,AAA Batteries (4-pack),1,2.99,12/11/19 12:31,"49 Meadow St, Seattle, WA 98101" +310182,27in FHD Monitor,1,149.99,12/02/19 13:14,"822 12th St, San Francisco, CA 94016" +310183,Lightning Charging Cable,1,14.95,12/04/19 13:52,"790 1st St, San Francisco, CA 94016" +310184,Apple Airpods Headphones,1,150,01/01/20 03:01,"531 6th St, Atlanta, GA 30301" +310185,iPhone,1,700,12/13/19 21:41,"671 Dogwood St, San Francisco, CA 94016" +310185,Wired Headphones,1,11.99,12/13/19 21:41,"671 Dogwood St, San Francisco, CA 94016" +310186,Macbook Pro Laptop,1,1700,12/29/19 17:00,"392 Main St, San Francisco, CA 94016" +310187,20in Monitor,1,109.99,12/20/19 15:17,"382 Jefferson St, Atlanta, GA 30301" +310188,USB-C Charging Cable,1,11.95,12/26/19 12:17,"275 Sunset St, Austin, TX 73301" +310189,Bose SoundSport Headphones,1,99.99,12/14/19 18:48,"712 11th St, Austin, TX 73301" +310190,27in 4K Gaming Monitor,1,389.99,12/22/19 19:33,"948 Madison St, New York City, NY 10001" +310191,27in 4K Gaming Monitor,1,389.99,12/24/19 16:42,"78 West St, New York City, NY 10001" +310192,Wired Headphones,1,11.99,12/09/19 12:42,"588 Lake St, San Francisco, CA 94016" +310193,Lightning Charging Cable,1,14.95,12/20/19 18:31,"138 10th St, New York City, NY 10001" +310194,AAA Batteries (4-pack),2,2.99,12/11/19 09:32,"990 11th St, San Francisco, CA 94016" +310195,Google Phone,1,600,12/02/19 21:37,"408 6th St, San Francisco, CA 94016" +310196,Lightning Charging Cable,1,14.95,12/19/19 19:27,"592 Johnson St, San Francisco, CA 94016" +310197,ThinkPad Laptop,1,999.99,12/20/19 09:20,"198 4th St, New York City, NY 10001" +310198,AAA Batteries (4-pack),2,2.99,12/25/19 13:46,"454 South St, Seattle, WA 98101" +310199,Wired Headphones,1,11.99,12/21/19 14:53,"774 Meadow St, San Francisco, CA 94016" +310200,AAA Batteries (4-pack),2,2.99,12/15/19 05:30,"635 Pine St, San Francisco, CA 94016" +310201,AAA Batteries (4-pack),1,2.99,12/14/19 18:10,"230 Lake St, Boston, MA 02215" +310202,USB-C Charging Cable,1,11.95,12/10/19 23:03,"446 12th St, Atlanta, GA 30301" +310203,20in Monitor,1,109.99,12/12/19 12:26,"572 Spruce St, Dallas, TX 75001" +310204,Flatscreen TV,1,300,12/08/19 01:00,"220 10th St, San Francisco, CA 94016" +310205,USB-C Charging Cable,1,11.95,12/18/19 20:28,"356 8th St, Boston, MA 02215" +310206,Google Phone,1,600,12/31/19 13:57,"491 Adams St, Los Angeles, CA 90001" +310207,Google Phone,1,600,12/29/19 01:35,"550 Hickory St, Atlanta, GA 30301" +310208,iPhone,1,700,12/11/19 18:53,"188 Park St, Portland, OR 97035" +310209,AA Batteries (4-pack),2,3.84,12/05/19 07:18,"212 Ridge St, Dallas, TX 75001" +310210,Apple Airpods Headphones,1,150,12/22/19 21:59,"293 Dogwood St, Los Angeles, CA 90001" +310211,Apple Airpods Headphones,1,150,12/17/19 05:36,"70 Wilson St, Seattle, WA 98101" +310212,USB-C Charging Cable,1,11.95,12/02/19 15:05,"495 6th St, New York City, NY 10001" +310213,Flatscreen TV,1,300,12/15/19 09:11,"589 4th St, Seattle, WA 98101" +310214,Macbook Pro Laptop,1,1700,12/31/19 08:37,"823 West St, Dallas, TX 75001" +310215,27in FHD Monitor,1,149.99,12/12/19 12:46,"58 Washington St, New York City, NY 10001" +310216,Lightning Charging Cable,1,14.95,12/17/19 19:54,"629 Washington St, Austin, TX 73301" +310217,AA Batteries (4-pack),1,3.84,12/07/19 21:52,"909 14th St, New York City, NY 10001" +310218,Wired Headphones,1,11.99,12/15/19 17:30,"284 Wilson St, San Francisco, CA 94016" +310219,Apple Airpods Headphones,1,150,12/19/19 06:44,"417 9th St, Los Angeles, CA 90001" +310220,USB-C Charging Cable,2,11.95,12/28/19 12:22,"955 Adams St, Boston, MA 02215" +310221,27in 4K Gaming Monitor,1,389.99,12/23/19 15:53,"556 Walnut St, Boston, MA 02215" +310222,Apple Airpods Headphones,1,150,12/31/19 10:26,"545 2nd St, San Francisco, CA 94016" +310223,Bose SoundSport Headphones,1,99.99,12/10/19 20:52,"165 West St, Boston, MA 02215" +310224,Apple Airpods Headphones,1,150,12/23/19 20:11,"600 Hickory St, Los Angeles, CA 90001" +310225,USB-C Charging Cable,1,11.95,12/24/19 15:54,"663 Hickory St, Los Angeles, CA 90001" +310225,Wired Headphones,1,11.99,12/24/19 15:54,"663 Hickory St, Los Angeles, CA 90001" +310226,AAA Batteries (4-pack),1,2.99,12/27/19 13:05,"823 14th St, San Francisco, CA 94016" +310227,AA Batteries (4-pack),1,3.84,12/20/19 18:15,"107 Madison St, Boston, MA 02215" +310228,AA Batteries (4-pack),1,3.84,12/24/19 18:24,"607 Willow St, Portland, OR 97035" +310229,AA Batteries (4-pack),3,3.84,12/20/19 08:36,"305 Elm St, Boston, MA 02215" +310229,AAA Batteries (4-pack),1,2.99,12/20/19 08:36,"305 Elm St, Boston, MA 02215" +310230,27in 4K Gaming Monitor,1,389.99,12/17/19 10:28,"141 Pine St, Boston, MA 02215" +310231,34in Ultrawide Monitor,1,379.99,12/13/19 22:28,"427 9th St, Atlanta, GA 30301" +310232,AA Batteries (4-pack),1,3.84,12/30/19 02:19,"254 Elm St, Portland, OR 97035" +310233,34in Ultrawide Monitor,1,379.99,12/15/19 17:34,"43 Center St, New York City, NY 10001" +310234,Vareebadd Phone,1,400,12/13/19 16:25,"692 Forest St, Portland, OR 97035" +310234,Wired Headphones,2,11.99,12/13/19 16:25,"692 Forest St, Portland, OR 97035" +310235,20in Monitor,1,109.99,12/01/19 13:00,"894 Madison St, New York City, NY 10001" +310236,Vareebadd Phone,1,400,12/26/19 16:59,"962 8th St, New York City, NY 10001" +310237,AAA Batteries (4-pack),1,2.99,12/17/19 11:37,"570 South St, San Francisco, CA 94016" +310238,AA Batteries (4-pack),1,3.84,12/01/19 21:52,"362 Lake St, Los Angeles, CA 90001" +310239,USB-C Charging Cable,1,11.95,12/03/19 14:57,"755 Dogwood St, Seattle, WA 98101" +310240,Apple Airpods Headphones,1,150,12/13/19 22:35,"609 10th St, Boston, MA 02215" +310241,AAA Batteries (4-pack),1,2.99,12/07/19 21:02,"754 Church St, San Francisco, CA 94016" +310242,AAA Batteries (4-pack),2,2.99,12/17/19 10:34,"71 Chestnut St, Austin, TX 73301" +310243,34in Ultrawide Monitor,1,379.99,12/11/19 17:25,"633 West St, San Francisco, CA 94016" +310244,AA Batteries (4-pack),1,3.84,12/22/19 14:58,"28 9th St, Seattle, WA 98101" +310245,34in Ultrawide Monitor,1,379.99,12/03/19 09:52,"400 4th St, San Francisco, CA 94016" +310246,34in Ultrawide Monitor,1,379.99,12/22/19 11:53,"783 Church St, Portland, OR 97035" +310247,AAA Batteries (4-pack),3,2.99,12/09/19 12:56,"199 Lake St, New York City, NY 10001" +310248,Bose SoundSport Headphones,1,99.99,12/22/19 15:23,"324 14th St, New York City, NY 10001" +310249,AA Batteries (4-pack),1,3.84,12/10/19 12:03,"908 Forest St, Los Angeles, CA 90001" +310250,Wired Headphones,1,11.99,12/06/19 11:18,"38 Hickory St, San Francisco, CA 94016" +310250,AAA Batteries (4-pack),1,2.99,12/06/19 11:18,"38 Hickory St, San Francisco, CA 94016" +310251,Apple Airpods Headphones,1,150,12/11/19 23:13,"890 Ridge St, Los Angeles, CA 90001" +310252,Apple Airpods Headphones,1,150,12/08/19 22:46,"933 Highland St, Los Angeles, CA 90001" +310253,LG Dryer,1,600.0,12/26/19 20:22,"329 12th St, Los Angeles, CA 90001" +310254,Lightning Charging Cable,1,14.95,12/13/19 08:16,"3 Madison St, Atlanta, GA 30301" +310255,Wired Headphones,1,11.99,12/01/19 10:41,"622 Sunset St, San Francisco, CA 94016" +310256,USB-C Charging Cable,2,11.95,12/18/19 22:19,"193 2nd St, New York City, NY 10001" +310257,20in Monitor,1,109.99,12/19/19 14:46,"336 1st St, Austin, TX 73301" +310258,Bose SoundSport Headphones,1,99.99,12/31/19 16:22,"977 Elm St, San Francisco, CA 94016" +310259,AA Batteries (4-pack),3,3.84,12/24/19 20:34,"81 Highland St, Boston, MA 02215" +310260,20in Monitor,1,109.99,12/12/19 21:30,"577 2nd St, San Francisco, CA 94016" +310261,USB-C Charging Cable,1,11.95,12/10/19 17:34,"864 Highland St, Austin, TX 73301" +310262,iPhone,1,700,12/07/19 00:09,"861 Lakeview St, Boston, MA 02215" +310262,Lightning Charging Cable,1,14.95,12/07/19 00:09,"861 Lakeview St, Boston, MA 02215" +310263,27in FHD Monitor,1,149.99,12/31/19 17:54,"297 Walnut St, San Francisco, CA 94016" +310264,27in 4K Gaming Monitor,1,389.99,12/09/19 19:42,"662 Church St, New York City, NY 10001" +310265,Bose SoundSport Headphones,1,99.99,12/20/19 13:16,"181 Willow St, San Francisco, CA 94016" +310266,USB-C Charging Cable,1,11.95,12/21/19 21:36,"636 Park St, San Francisco, CA 94016" +310267,27in FHD Monitor,1,149.99,12/09/19 22:31,"852 2nd St, Austin, TX 73301" +310268,Flatscreen TV,1,300,12/22/19 07:09,"319 Main St, Boston, MA 02215" +310269,Wired Headphones,1,11.99,12/09/19 18:50,"179 Madison St, Atlanta, GA 30301" +310270,Bose SoundSport Headphones,1,99.99,12/02/19 20:19,"887 12th St, San Francisco, CA 94016" +310271,iPhone,1,700,12/05/19 21:00,"640 Hickory St, Boston, MA 02215" +310271,Lightning Charging Cable,1,14.95,12/05/19 21:00,"640 Hickory St, Boston, MA 02215" +310272,Wired Headphones,1,11.99,12/17/19 17:00,"94 Lakeview St, San Francisco, CA 94016" +310273,27in FHD Monitor,1,149.99,12/29/19 21:11,"537 13th St, San Francisco, CA 94016" +310274,AAA Batteries (4-pack),1,2.99,12/28/19 22:35,"95 North St, Boston, MA 02215" +310275,AA Batteries (4-pack),1,3.84,12/19/19 23:59,"301 1st St, San Francisco, CA 94016" +310276,Bose SoundSport Headphones,1,99.99,12/23/19 00:20,"194 2nd St, Seattle, WA 98101" +310277,AAA Batteries (4-pack),1,2.99,12/08/19 16:20,"57 Wilson St, New York City, NY 10001" +310278,Google Phone,1,600,12/05/19 06:15,"66 Main St, Portland, OR 97035" +310279,Wired Headphones,1,11.99,12/26/19 18:12,"838 Lincoln St, Boston, MA 02215" +310280,USB-C Charging Cable,1,11.95,12/30/19 13:02,"643 4th St, San Francisco, CA 94016" +310281,AA Batteries (4-pack),1,3.84,12/03/19 19:54,"964 Willow St, Los Angeles, CA 90001" +310282,27in FHD Monitor,1,149.99,12/26/19 15:52,"384 2nd St, San Francisco, CA 94016" +310283,27in FHD Monitor,1,149.99,12/13/19 11:00,"667 Highland St, San Francisco, CA 94016" +310284,Lightning Charging Cable,1,14.95,12/08/19 12:08,"112 Cedar St, Los Angeles, CA 90001" +310285,iPhone,1,700,12/10/19 20:45,"796 Spruce St, Los Angeles, CA 90001" +310286,Lightning Charging Cable,1,14.95,12/27/19 18:22,"977 Highland St, Atlanta, GA 30301" +310287,Lightning Charging Cable,1,14.95,12/21/19 12:42,"484 Ridge St, Boston, MA 02215" +310288,USB-C Charging Cable,2,11.95,12/07/19 17:13,"117 Church St, Dallas, TX 75001" +310289,Vareebadd Phone,1,400,12/07/19 19:02,"863 Park St, Los Angeles, CA 90001" +310290,AAA Batteries (4-pack),1,2.99,12/22/19 19:38,"436 4th St, Los Angeles, CA 90001" +310291,Lightning Charging Cable,1,14.95,12/29/19 21:23,"646 Cedar St, Portland, OR 97035" +310292,Flatscreen TV,2,300,12/27/19 11:34,"544 Spruce St, San Francisco, CA 94016" +310293,USB-C Charging Cable,1,11.95,12/25/19 16:50,"806 Maple St, Seattle, WA 98101" +310294,Bose SoundSport Headphones,1,99.99,12/26/19 15:05,"833 Meadow St, Los Angeles, CA 90001" +310295,20in Monitor,1,109.99,12/22/19 20:44,"655 6th St, Dallas, TX 75001" +310296,Apple Airpods Headphones,1,150,12/20/19 11:25,"388 Jackson St, Seattle, WA 98101" +310297,Apple Airpods Headphones,1,150,12/20/19 12:50,"968 10th St, San Francisco, CA 94016" +310298,Wired Headphones,2,11.99,12/22/19 19:08,"395 14th St, San Francisco, CA 94016" +310299,ThinkPad Laptop,1,999.99,12/24/19 22:49,"506 Wilson St, New York City, NY 10001" +310300,Apple Airpods Headphones,1,150,12/31/19 10:35,"532 6th St, Atlanta, GA 30301" +310301,Google Phone,1,600,12/05/19 20:47,"270 Dogwood St, San Francisco, CA 94016" +310302,Lightning Charging Cable,1,14.95,12/01/19 15:33,"916 Lincoln St, Los Angeles, CA 90001" +310303,Wired Headphones,1,11.99,12/12/19 16:23,"92 12th St, Atlanta, GA 30301" +310304,AA Batteries (4-pack),2,3.84,12/31/19 13:02,"513 North St, Los Angeles, CA 90001" +310305,Wired Headphones,1,11.99,12/12/19 00:30,"419 5th St, New York City, NY 10001" +310306,AA Batteries (4-pack),1,3.84,12/07/19 21:55,"390 5th St, Seattle, WA 98101" +310307,USB-C Charging Cable,1,11.95,12/20/19 14:30,"309 Maple St, Seattle, WA 98101" +310308,USB-C Charging Cable,1,11.95,12/22/19 18:52,"840 Spruce St, Seattle, WA 98101" +310309,27in 4K Gaming Monitor,1,389.99,12/05/19 16:17,"634 Sunset St, Portland, OR 97035" +310310,AAA Batteries (4-pack),1,2.99,12/12/19 23:50,"112 Lincoln St, Los Angeles, CA 90001" +310311,USB-C Charging Cable,1,11.95,12/24/19 16:49,"657 Hickory St, Dallas, TX 75001" +310312,Lightning Charging Cable,1,14.95,12/22/19 13:42,"193 Elm St, Portland, OR 97035" +310313,ThinkPad Laptop,1,999.99,12/17/19 19:58,"380 Hill St, New York City, NY 10001" +310314,AAA Batteries (4-pack),1,2.99,12/22/19 18:31,"59 10th St, New York City, NY 10001" +310315,20in Monitor,1,109.99,12/14/19 14:27,"388 6th St, San Francisco, CA 94016" +310316,iPhone,1,700,12/29/19 07:58,"884 Chestnut St, Austin, TX 73301" +310316,Wired Headphones,1,11.99,12/29/19 07:58,"884 Chestnut St, Austin, TX 73301" +310317,Apple Airpods Headphones,1,150,12/17/19 01:46,"401 Adams St, Dallas, TX 75001" +310318,27in 4K Gaming Monitor,1,389.99,12/20/19 18:02,"458 Highland St, Austin, TX 73301" +310319,Bose SoundSport Headphones,1,99.99,12/25/19 14:38,"459 Johnson St, Seattle, WA 98101" +310320,Lightning Charging Cable,1,14.95,12/06/19 14:34,"825 2nd St, Seattle, WA 98101" +310321,AA Batteries (4-pack),1,3.84,12/24/19 23:09,"225 Adams St, New York City, NY 10001" +310322,Bose SoundSport Headphones,1,99.99,12/15/19 08:35,"544 8th St, Boston, MA 02215" +310323,Apple Airpods Headphones,1,150,12/25/19 16:30,"507 2nd St, Austin, TX 73301" +310324,Lightning Charging Cable,1,14.95,12/07/19 10:58,"219 11th St, Austin, TX 73301" +310325,27in 4K Gaming Monitor,1,389.99,12/24/19 14:37,"121 North St, Atlanta, GA 30301" +310326,USB-C Charging Cable,1,11.95,12/04/19 14:13,"990 River St, Austin, TX 73301" +310327,AAA Batteries (4-pack),2,2.99,12/03/19 04:22,"758 Sunset St, New York City, NY 10001" +310328,34in Ultrawide Monitor,1,379.99,01/01/20 01:24,"284 12th St, Atlanta, GA 30301" +310329,USB-C Charging Cable,1,11.95,12/29/19 16:29,"310 Hickory St, San Francisco, CA 94016" +310330,AA Batteries (4-pack),1,3.84,12/29/19 10:11,"420 Adams St, San Francisco, CA 94016" +310331,Lightning Charging Cable,1,14.95,12/21/19 21:39,"99 Willow St, San Francisco, CA 94016" +310332,34in Ultrawide Monitor,1,379.99,12/07/19 11:17,"760 Johnson St, Seattle, WA 98101" +310333,Lightning Charging Cable,1,14.95,12/16/19 18:39,"503 Cherry St, Los Angeles, CA 90001" +310334,Apple Airpods Headphones,1,150,12/09/19 08:34,"446 Chestnut St, Boston, MA 02215" +310335,USB-C Charging Cable,1,11.95,12/10/19 18:42,"14 8th St, New York City, NY 10001" +310336,AA Batteries (4-pack),2,3.84,12/25/19 23:35,"70 10th St, Los Angeles, CA 90001" +310336,Bose SoundSport Headphones,1,99.99,12/25/19 23:35,"70 10th St, Los Angeles, CA 90001" +310337,Flatscreen TV,1,300,12/16/19 09:28,"9 Park St, Dallas, TX 75001" +310338,34in Ultrawide Monitor,1,379.99,12/03/19 12:15,"363 Highland St, Atlanta, GA 30301" +310339,Flatscreen TV,1,300,12/13/19 12:41,"45 14th St, Seattle, WA 98101" +310340,Lightning Charging Cable,1,14.95,12/12/19 08:36,"115 Wilson St, Boston, MA 02215" +310341,Lightning Charging Cable,1,14.95,12/06/19 23:27,"710 6th St, Los Angeles, CA 90001" +310342,ThinkPad Laptop,1,999.99,12/14/19 12:24,"138 Hill St, Los Angeles, CA 90001" +310343,Lightning Charging Cable,1,14.95,12/06/19 22:28,"13 Maple St, San Francisco, CA 94016" +310344,34in Ultrawide Monitor,1,379.99,12/08/19 14:31,"592 10th St, Atlanta, GA 30301" +310345,20in Monitor,1,109.99,12/19/19 15:29,"211 Park St, Austin, TX 73301" +310346,27in FHD Monitor,1,149.99,12/02/19 19:25,"180 Lake St, Dallas, TX 75001" +310347,USB-C Charging Cable,1,11.95,12/22/19 20:31,"12 Sunset St, Boston, MA 02215" +310348,Apple Airpods Headphones,1,150,12/26/19 10:25,"397 13th St, New York City, NY 10001" +310349,Wired Headphones,1,11.99,12/28/19 16:01,"573 Main St, Atlanta, GA 30301" +310350,ThinkPad Laptop,1,999.99,12/15/19 11:42,"189 Meadow St, San Francisco, CA 94016" +310351,Wired Headphones,1,11.99,12/18/19 12:46,"816 Spruce St, Los Angeles, CA 90001" +310352,20in Monitor,1,109.99,12/17/19 15:50,"507 Ridge St, Seattle, WA 98101" +310353,USB-C Charging Cable,1,11.95,12/15/19 19:25,"173 Cedar St, Portland, OR 97035" +310354,AA Batteries (4-pack),2,3.84,12/27/19 15:32,"518 Dogwood St, Dallas, TX 75001" +310355,LG Dryer,1,600.0,12/31/19 12:04,"39 South St, Dallas, TX 75001" +310356,USB-C Charging Cable,1,11.95,12/24/19 18:34,"926 Spruce St, Austin, TX 73301" +310357,34in Ultrawide Monitor,1,379.99,12/11/19 15:38,"799 7th St, Dallas, TX 75001" +310358,20in Monitor,1,109.99,12/26/19 15:28,"594 7th St, Boston, MA 02215" +310359,AAA Batteries (4-pack),4,2.99,12/30/19 05:36,"22 Park St, New York City, NY 10001" +310360,Lightning Charging Cable,1,14.95,12/09/19 14:49,"68 Cherry St, Seattle, WA 98101" +310361,Bose SoundSport Headphones,1,99.99,12/25/19 11:55,"917 Highland St, Dallas, TX 75001" +310362,Google Phone,1,600,12/28/19 08:37,"510 2nd St, Boston, MA 02215" +310362,Lightning Charging Cable,1,14.95,12/28/19 08:37,"510 2nd St, Boston, MA 02215" +310363,AAA Batteries (4-pack),1,2.99,12/11/19 18:08,"673 Adams St, Los Angeles, CA 90001" +310364,Bose SoundSport Headphones,1,99.99,12/14/19 18:01,"557 Wilson St, Los Angeles, CA 90001" +310365,Macbook Pro Laptop,1,1700,12/09/19 13:53,"499 Ridge St, Los Angeles, CA 90001" +310366,Wired Headphones,1,11.99,12/12/19 17:31,"699 Cherry St, Dallas, TX 75001" +310367,AAA Batteries (4-pack),2,2.99,12/28/19 14:31,"971 Chestnut St, Los Angeles, CA 90001" +310368,LG Washing Machine,1,600.0,12/01/19 10:31,"840 Elm St, Atlanta, GA 30301" +310369,AAA Batteries (4-pack),2,2.99,12/28/19 14:35,"882 Highland St, New York City, NY 10001" +310370,Lightning Charging Cable,1,14.95,12/22/19 02:01,"706 4th St, New York City, NY 10001" +310371,AAA Batteries (4-pack),1,2.99,12/09/19 08:44,"594 Forest St, Boston, MA 02215" +310372,AAA Batteries (4-pack),1,2.99,12/03/19 22:17,"979 Walnut St, Portland, OR 97035" +310373,AAA Batteries (4-pack),2,2.99,12/24/19 12:23,"707 Washington St, Los Angeles, CA 90001" +310374,Bose SoundSport Headphones,1,99.99,12/23/19 19:58,"275 Highland St, New York City, NY 10001" +310375,Wired Headphones,1,11.99,12/04/19 20:50,"77 Main St, New York City, NY 10001" +310376,Apple Airpods Headphones,1,150,12/25/19 21:41,"425 Willow St, Dallas, TX 75001" +310377,AAA Batteries (4-pack),1,2.99,12/19/19 11:07,"181 2nd St, San Francisco, CA 94016" +310378,Wired Headphones,1,11.99,12/30/19 04:13,"708 9th St, New York City, NY 10001" +310379,Lightning Charging Cable,2,14.95,12/06/19 10:46,"347 Willow St, Los Angeles, CA 90001" +310380,Apple Airpods Headphones,1,150,12/03/19 10:18,"163 Willow St, New York City, NY 10001" +310381,USB-C Charging Cable,1,11.95,12/29/19 22:43,"749 Maple St, New York City, NY 10001" +310382,Wired Headphones,2,11.99,12/06/19 08:05,"665 River St, Seattle, WA 98101" +310383,Wired Headphones,1,11.99,12/09/19 13:58,"217 Park St, Boston, MA 02215" +310384,Lightning Charging Cable,1,14.95,12/22/19 13:26,"136 Hickory St, Atlanta, GA 30301" +310385,USB-C Charging Cable,1,11.95,12/14/19 13:34,"120 Jefferson St, Austin, TX 73301" +310386,Wired Headphones,1,11.99,12/21/19 09:36,"658 Jackson St, Atlanta, GA 30301" +310387,AA Batteries (4-pack),1,3.84,12/11/19 15:12,"315 Hill St, Portland, OR 97035" +310388,Wired Headphones,1,11.99,12/12/19 13:57,"48 Meadow St, New York City, NY 10001" +310389,Apple Airpods Headphones,1,150,12/16/19 10:11,"549 West St, New York City, NY 10001" +310390,Wired Headphones,1,11.99,12/05/19 22:31,"403 Jefferson St, San Francisco, CA 94016" +310391,USB-C Charging Cable,1,11.95,12/25/19 11:02,"595 Lincoln St, Los Angeles, CA 90001" +310392,Apple Airpods Headphones,1,150,12/18/19 21:45,"504 North St, Austin, TX 73301" +310393,Wired Headphones,1,11.99,12/12/19 12:36,"827 Lakeview St, San Francisco, CA 94016" +310394,Apple Airpods Headphones,1,150,12/11/19 09:12,"684 12th St, San Francisco, CA 94016" +310395,AAA Batteries (4-pack),2,2.99,12/12/19 17:26,"214 Maple St, Atlanta, GA 30301" +310396,AA Batteries (4-pack),1,3.84,12/07/19 16:42,"652 Dogwood St, Seattle, WA 98101" +310397,Wired Headphones,1,11.99,12/15/19 08:13,"273 Dogwood St, Portland, OR 97035" +310398,AA Batteries (4-pack),1,3.84,12/05/19 18:12,"82 2nd St, Portland, OR 97035" +310399,20in Monitor,1,109.99,12/31/19 17:53,"926 River St, Dallas, TX 75001" +310400,USB-C Charging Cable,1,11.95,12/20/19 18:07,"133 12th St, Boston, MA 02215" +310401,Lightning Charging Cable,1,14.95,12/31/19 20:02,"540 Lake St, Los Angeles, CA 90001" +310402,USB-C Charging Cable,1,11.95,12/03/19 08:18,"422 6th St, Los Angeles, CA 90001" +310403,iPhone,1,700,12/27/19 20:40,"49 Spruce St, San Francisco, CA 94016" +310404,AAA Batteries (4-pack),1,2.99,12/22/19 17:53,"453 2nd St, Portland, ME 04101" +310405,AA Batteries (4-pack),1,3.84,12/17/19 20:07,"581 8th St, San Francisco, CA 94016" +310406,Bose SoundSport Headphones,1,99.99,12/03/19 14:07,"647 Church St, Boston, MA 02215" +310407,USB-C Charging Cable,1,11.95,12/31/19 16:10,"886 Pine St, Seattle, WA 98101" +310408,27in 4K Gaming Monitor,1,389.99,12/28/19 13:32,"713 Chestnut St, Portland, OR 97035" +310409,AA Batteries (4-pack),1,3.84,12/14/19 16:23,"33 1st St, San Francisco, CA 94016" +310410,ThinkPad Laptop,1,999.99,12/21/19 14:01,"485 4th St, Seattle, WA 98101" +310411,AAA Batteries (4-pack),1,2.99,12/16/19 18:59,"962 Lake St, Los Angeles, CA 90001" +310412,Apple Airpods Headphones,1,150,12/07/19 21:39,"469 Walnut St, Seattle, WA 98101" +310413,Wired Headphones,1,11.99,12/21/19 08:44,"40 Lake St, Los Angeles, CA 90001" +310414,27in FHD Monitor,1,149.99,12/23/19 19:58,"877 Hill St, Los Angeles, CA 90001" +310415,20in Monitor,1,109.99,12/16/19 19:01,"482 1st St, Los Angeles, CA 90001" +310416,AA Batteries (4-pack),2,3.84,12/21/19 09:37,"11 6th St, Los Angeles, CA 90001" +310417,AA Batteries (4-pack),1,3.84,12/05/19 13:14,"304 Sunset St, Seattle, WA 98101" +310418,Lightning Charging Cable,1,14.95,12/05/19 18:19,"752 Elm St, San Francisco, CA 94016" +310419,Apple Airpods Headphones,1,150,12/28/19 22:04,"928 14th St, New York City, NY 10001" +310420,AA Batteries (4-pack),2,3.84,12/23/19 21:02,"892 Adams St, Seattle, WA 98101" +310421,AA Batteries (4-pack),1,3.84,12/18/19 09:36,"764 2nd St, Seattle, WA 98101" +310422,USB-C Charging Cable,1,11.95,12/12/19 18:12,"207 Pine St, Dallas, TX 75001" +310423,AA Batteries (4-pack),1,3.84,12/11/19 00:27,"143 4th St, Boston, MA 02215" +310424,Lightning Charging Cable,1,14.95,12/16/19 18:51,"474 West St, Atlanta, GA 30301" +310425,Wired Headphones,1,11.99,12/10/19 13:34,"99 Maple St, Atlanta, GA 30301" +310426,34in Ultrawide Monitor,1,379.99,12/19/19 09:49,"451 Johnson St, Dallas, TX 75001" +310427,27in FHD Monitor,1,149.99,12/31/19 10:46,"537 Lake St, San Francisco, CA 94016" +310428,iPhone,1,700,12/28/19 13:04,"287 13th St, New York City, NY 10001" +310429,USB-C Charging Cable,1,11.95,12/04/19 13:48,"124 Sunset St, Boston, MA 02215" +310430,Wired Headphones,2,11.99,12/15/19 20:37,"258 Ridge St, Atlanta, GA 30301" +310430,Wired Headphones,1,11.99,12/15/19 20:37,"258 Ridge St, Atlanta, GA 30301" +310431,Bose SoundSport Headphones,1,99.99,12/30/19 13:38,"184 Wilson St, Los Angeles, CA 90001" +310432,AAA Batteries (4-pack),4,2.99,12/17/19 20:29,"424 West St, Los Angeles, CA 90001" +310433,Wired Headphones,1,11.99,12/31/19 10:39,"205 1st St, New York City, NY 10001" +310434,27in 4K Gaming Monitor,1,389.99,12/16/19 11:44,"907 12th St, Austin, TX 73301" +310435,Google Phone,1,600,12/16/19 03:14,"946 Jefferson St, Boston, MA 02215" +310436,Wired Headphones,1,11.99,12/29/19 18:59,"533 Ridge St, Atlanta, GA 30301" +310437,Wired Headphones,1,11.99,12/21/19 22:37,"520 Meadow St, Los Angeles, CA 90001" +310438,AAA Batteries (4-pack),2,2.99,12/29/19 10:36,"694 Main St, New York City, NY 10001" +310439,34in Ultrawide Monitor,1,379.99,12/04/19 19:02,"484 9th St, San Francisco, CA 94016" +310440,34in Ultrawide Monitor,1,379.99,12/27/19 23:25,"776 Maple St, Dallas, TX 75001" +310441,Apple Airpods Headphones,1,150,12/31/19 14:32,"31 Hickory St, Seattle, WA 98101" +310442,Google Phone,1,600,12/01/19 10:58,"433 Cherry St, Los Angeles, CA 90001" +310443,20in Monitor,1,109.99,12/09/19 16:01,"518 Center St, Boston, MA 02215" +310444,AA Batteries (4-pack),1,3.84,12/26/19 13:45,"991 Maple St, San Francisco, CA 94016" +310445,27in 4K Gaming Monitor,1,389.99,12/18/19 21:28,"951 10th St, New York City, NY 10001" +310446,AAA Batteries (4-pack),1,2.99,12/29/19 11:26,"85 10th St, Austin, TX 73301" +310447,Wired Headphones,2,11.99,12/16/19 13:53,"420 Forest St, Seattle, WA 98101" +310448,Wired Headphones,1,11.99,12/21/19 11:20,"270 Jefferson St, Portland, OR 97035" +310449,Apple Airpods Headphones,1,150,12/05/19 14:35,"29 Spruce St, Los Angeles, CA 90001" +310450,20in Monitor,1,109.99,12/19/19 18:02,"112 Cedar St, New York City, NY 10001" +310451,AAA Batteries (4-pack),1,2.99,12/25/19 11:48,"190 Chestnut St, New York City, NY 10001" +310452,USB-C Charging Cable,1,11.95,12/30/19 22:22,"886 Lincoln St, Los Angeles, CA 90001" +310453,Lightning Charging Cable,1,14.95,12/09/19 12:14,"844 1st St, Los Angeles, CA 90001" +310454,AAA Batteries (4-pack),1,2.99,12/31/19 19:07,"111 Center St, Dallas, TX 75001" +310455,Lightning Charging Cable,1,14.95,12/20/19 16:45,"514 9th St, Los Angeles, CA 90001" +310456,AA Batteries (4-pack),1,3.84,12/29/19 13:22,"241 11th St, Portland, ME 04101" +310457,AA Batteries (4-pack),1,3.84,12/09/19 19:41,"78 Willow St, New York City, NY 10001" +310458,Lightning Charging Cable,1,14.95,12/11/19 20:13,"165 South St, Los Angeles, CA 90001" +310459,Lightning Charging Cable,1,14.95,12/11/19 10:33,"832 Walnut St, Los Angeles, CA 90001" +310460,Google Phone,1,600,12/13/19 11:56,"838 Spruce St, Atlanta, GA 30301" +310461,34in Ultrawide Monitor,1,379.99,12/11/19 14:52,"435 Washington St, Atlanta, GA 30301" +310462,iPhone,1,700,12/30/19 21:23,"245 River St, Portland, OR 97035" +310462,Apple Airpods Headphones,1,150,12/30/19 21:23,"245 River St, Portland, OR 97035" +310463,AAA Batteries (4-pack),1,2.99,12/27/19 21:05,"789 Hickory St, Boston, MA 02215" +310464,27in 4K Gaming Monitor,1,389.99,12/13/19 17:48,"754 2nd St, San Francisco, CA 94016" +310465,Lightning Charging Cable,1,14.95,12/16/19 16:40,"647 Ridge St, Dallas, TX 75001" +310466,Bose SoundSport Headphones,1,99.99,12/08/19 13:50,"480 Forest St, Atlanta, GA 30301" +310467,iPhone,1,700,12/22/19 19:58,"614 Walnut St, Seattle, WA 98101" +310468,AAA Batteries (4-pack),2,2.99,12/21/19 19:01,"439 Hill St, Los Angeles, CA 90001" +310469,USB-C Charging Cable,1,11.95,12/13/19 17:24,"563 Madison St, San Francisco, CA 94016" +310470,AA Batteries (4-pack),1,3.84,12/01/19 15:19,"136 Lakeview St, Dallas, TX 75001" +310471,Macbook Pro Laptop,1,1700,12/02/19 02:45,"181 South St, Portland, OR 97035" +310472,AAA Batteries (4-pack),1,2.99,12/22/19 05:08,"903 Washington St, Dallas, TX 75001" +310473,Lightning Charging Cable,1,14.95,12/21/19 11:03,"239 Madison St, San Francisco, CA 94016" +310474,AAA Batteries (4-pack),1,2.99,12/21/19 10:21,"846 Jefferson St, San Francisco, CA 94016" +310475,Apple Airpods Headphones,1,150,12/01/19 17:52,"845 6th St, Austin, TX 73301" +310476,Lightning Charging Cable,1,14.95,12/02/19 22:04,"460 13th St, San Francisco, CA 94016" +310477,Lightning Charging Cable,1,14.95,12/16/19 14:18,"687 Center St, Austin, TX 73301" +310478,Wired Headphones,1,11.99,12/11/19 20:14,"149 7th St, Austin, TX 73301" +310478,iPhone,1,700,12/11/19 20:14,"149 7th St, Austin, TX 73301" +310479,AA Batteries (4-pack),3,3.84,12/05/19 12:39,"948 Elm St, New York City, NY 10001" +310480,Lightning Charging Cable,1,14.95,12/22/19 16:48,"202 2nd St, Atlanta, GA 30301" +310481,Wired Headphones,1,11.99,12/06/19 12:38,"341 12th St, Atlanta, GA 30301" +310482,AAA Batteries (4-pack),1,2.99,12/05/19 20:45,"248 Madison St, San Francisco, CA 94016" +310483,Apple Airpods Headphones,1,150,12/11/19 12:59,"294 Highland St, San Francisco, CA 94016" +310484,Wired Headphones,1,11.99,12/30/19 20:42,"756 Adams St, Austin, TX 73301" +310485,USB-C Charging Cable,1,11.95,12/08/19 22:49,"985 Park St, New York City, NY 10001" +310486,AA Batteries (4-pack),1,3.84,12/11/19 16:58,"883 Jackson St, Seattle, WA 98101" +310487,Lightning Charging Cable,1,14.95,12/31/19 14:10,"365 Adams St, Boston, MA 02215" +310488,USB-C Charging Cable,2,11.95,12/22/19 16:11,"360 Forest St, Atlanta, GA 30301" +310489,Bose SoundSport Headphones,1,99.99,12/21/19 16:13,"41 Pine St, New York City, NY 10001" +310490,Wired Headphones,1,11.99,12/19/19 12:12,"221 Elm St, Los Angeles, CA 90001" +310491,Macbook Pro Laptop,1,1700,12/05/19 19:37,"221 Dogwood St, Atlanta, GA 30301" +310492,AA Batteries (4-pack),2,3.84,12/16/19 12:40,"261 Washington St, San Francisco, CA 94016" +310493,Bose SoundSport Headphones,1,99.99,12/19/19 07:43,"675 Hill St, Austin, TX 73301" +310494,Lightning Charging Cable,1,14.95,12/01/19 14:00,"213 Hickory St, Seattle, WA 98101" +310495,Google Phone,1,600,12/18/19 23:53,"762 Highland St, Portland, OR 97035" +310496,34in Ultrawide Monitor,1,379.99,12/09/19 22:13,"470 2nd St, San Francisco, CA 94016" +310497,AA Batteries (4-pack),1,3.84,12/30/19 07:05,"209 Jackson St, Portland, OR 97035" +310498,Google Phone,1,600,12/16/19 23:18,"774 Meadow St, New York City, NY 10001" +310499,AAA Batteries (4-pack),1,2.99,12/24/19 15:34,"774 13th St, Atlanta, GA 30301" +310500,Google Phone,1,600,12/05/19 20:49,"181 Hill St, San Francisco, CA 94016" +310500,USB-C Charging Cable,1,11.95,12/05/19 20:49,"181 Hill St, San Francisco, CA 94016" +310501,27in 4K Gaming Monitor,1,389.99,12/10/19 08:54,"276 10th St, New York City, NY 10001" +310502,AA Batteries (4-pack),2,3.84,12/28/19 12:55,"785 8th St, Los Angeles, CA 90001" +310503,Lightning Charging Cable,1,14.95,12/15/19 05:20,"391 11th St, Atlanta, GA 30301" +310504,34in Ultrawide Monitor,1,379.99,12/17/19 19:09,"942 Madison St, New York City, NY 10001" +310505,AA Batteries (4-pack),1,3.84,12/26/19 15:38,"255 Hickory St, San Francisco, CA 94016" +310505,USB-C Charging Cable,1,11.95,12/26/19 15:38,"255 Hickory St, San Francisco, CA 94016" +310506,USB-C Charging Cable,1,11.95,12/24/19 23:34,"931 Willow St, Seattle, WA 98101" +310507,AA Batteries (4-pack),2,3.84,12/22/19 08:12,"678 Ridge St, San Francisco, CA 94016" +310508,Google Phone,1,600,12/11/19 13:30,"32 Washington St, Los Angeles, CA 90001" +310509,USB-C Charging Cable,1,11.95,12/04/19 17:31,"509 9th St, Dallas, TX 75001" +310510,AA Batteries (4-pack),1,3.84,12/02/19 12:33,"787 8th St, San Francisco, CA 94016" +310511,Bose SoundSport Headphones,1,99.99,12/04/19 12:40,"274 Lakeview St, Dallas, TX 75001" +310512,Bose SoundSport Headphones,1,99.99,12/30/19 19:17,"923 Jackson St, San Francisco, CA 94016" +310513,Lightning Charging Cable,1,14.95,12/19/19 00:23,"68 Hill St, Los Angeles, CA 90001" +310514,Macbook Pro Laptop,1,1700,12/21/19 22:20,"431 5th St, New York City, NY 10001" +310515,USB-C Charging Cable,1,11.95,12/27/19 00:46,"33 Elm St, Dallas, TX 75001" +310516,USB-C Charging Cable,1,11.95,12/12/19 09:04,"877 Cherry St, Seattle, WA 98101" +310517,Lightning Charging Cable,1,14.95,12/31/19 22:54,"348 11th St, San Francisco, CA 94016" +310518,Wired Headphones,1,11.99,12/03/19 20:12,"449 Park St, San Francisco, CA 94016" +310519,Lightning Charging Cable,1,14.95,12/10/19 10:05,"279 Walnut St, San Francisco, CA 94016" +310520,USB-C Charging Cable,1,11.95,12/22/19 21:04,"943 Park St, Boston, MA 02215" +310521,Apple Airpods Headphones,1,150,12/24/19 06:38,"631 1st St, Boston, MA 02215" +310522,AA Batteries (4-pack),3,3.84,12/05/19 19:54,"326 Johnson St, New York City, NY 10001" +310523,AAA Batteries (4-pack),4,2.99,12/27/19 16:42,"458 West St, Los Angeles, CA 90001" +310524,Apple Airpods Headphones,1,150,12/21/19 17:13,"657 Jefferson St, San Francisco, CA 94016" +310525,Apple Airpods Headphones,1,150,12/25/19 09:42,"588 Forest St, San Francisco, CA 94016" +310526,Bose SoundSport Headphones,1,99.99,12/19/19 20:06,"461 Maple St, San Francisco, CA 94016" +310526,Google Phone,1,600,12/19/19 20:06,"461 Maple St, San Francisco, CA 94016" +310527,34in Ultrawide Monitor,1,379.99,12/04/19 13:02,"643 Elm St, San Francisco, CA 94016" +310528,Lightning Charging Cable,1,14.95,12/07/19 20:41,"281 River St, New York City, NY 10001" +310529,AA Batteries (4-pack),1,3.84,12/04/19 13:23,"712 Elm St, Los Angeles, CA 90001" +310530,USB-C Charging Cable,1,11.95,12/11/19 08:18,"490 Hickory St, San Francisco, CA 94016" +310531,Apple Airpods Headphones,1,150,12/25/19 09:27,"882 West St, San Francisco, CA 94016" +310532,AA Batteries (4-pack),1,3.84,12/08/19 11:17,"58 Madison St, Atlanta, GA 30301" +310533,Lightning Charging Cable,1,14.95,12/09/19 16:17,"566 12th St, Dallas, TX 75001" +310534,ThinkPad Laptop,1,999.99,12/12/19 11:09,"357 Jackson St, Atlanta, GA 30301" +310535,27in FHD Monitor,1,149.99,12/13/19 18:32,"129 Washington St, Seattle, WA 98101" +310536,27in 4K Gaming Monitor,1,389.99,12/24/19 09:14,"379 Adams St, Seattle, WA 98101" +310537,USB-C Charging Cable,1,11.95,12/11/19 19:40,"360 Center St, San Francisco, CA 94016" +310538,34in Ultrawide Monitor,1,379.99,12/22/19 12:25,"569 Main St, San Francisco, CA 94016" +310539,USB-C Charging Cable,1,11.95,12/02/19 08:56,"63 5th St, Los Angeles, CA 90001" +310540,USB-C Charging Cable,1,11.95,12/01/19 10:44,"745 Dogwood St, Los Angeles, CA 90001" +310541,USB-C Charging Cable,1,11.95,12/09/19 11:06,"793 Washington St, Los Angeles, CA 90001" +310542,Wired Headphones,1,11.99,12/31/19 12:23,"154 Lakeview St, Boston, MA 02215" +310543,34in Ultrawide Monitor,1,379.99,12/31/19 10:24,"89 Lake St, Los Angeles, CA 90001" +310544,Lightning Charging Cable,1,14.95,12/12/19 01:56,"597 Sunset St, Portland, OR 97035" +310545,AA Batteries (4-pack),1,3.84,12/10/19 13:52,"8 Hickory St, San Francisco, CA 94016" +310546,AAA Batteries (4-pack),2,2.99,12/25/19 18:40,"618 Adams St, Dallas, TX 75001" +310547,Lightning Charging Cable,1,14.95,12/08/19 16:57,"593 11th St, Austin, TX 73301" +310548,Bose SoundSport Headphones,1,99.99,12/19/19 21:08,"123 Lake St, Atlanta, GA 30301" +310549,Flatscreen TV,1,300,12/16/19 20:19,"788 Elm St, San Francisco, CA 94016" +310550,Google Phone,1,600,12/12/19 09:37,"40 Wilson St, Los Angeles, CA 90001" +310550,USB-C Charging Cable,1,11.95,12/12/19 09:37,"40 Wilson St, Los Angeles, CA 90001" +310551,Bose SoundSport Headphones,1,99.99,12/25/19 11:55,"1 Pine St, New York City, NY 10001" +310552,27in 4K Gaming Monitor,1,389.99,12/26/19 04:54,"237 North St, Los Angeles, CA 90001" +310553,AAA Batteries (4-pack),1,2.99,12/11/19 12:15,"500 Ridge St, San Francisco, CA 94016" +310554,AA Batteries (4-pack),1,3.84,12/10/19 17:18,"221 South St, San Francisco, CA 94016" +310555,AA Batteries (4-pack),1,3.84,12/13/19 19:32,"512 8th St, Boston, MA 02215" +310556,Wired Headphones,1,11.99,12/29/19 11:46,"846 Lakeview St, New York City, NY 10001" +310557,USB-C Charging Cable,1,11.95,12/16/19 13:23,"694 Willow St, Boston, MA 02215" +310558,Lightning Charging Cable,1,14.95,12/20/19 21:52,"784 Hill St, Los Angeles, CA 90001" +310559,AA Batteries (4-pack),1,3.84,12/01/19 10:35,"504 Jackson St, Los Angeles, CA 90001" +310560,Lightning Charging Cable,1,14.95,12/05/19 18:09,"422 11th St, Atlanta, GA 30301" +310561,AA Batteries (4-pack),1,3.84,12/09/19 09:33,"738 Meadow St, Boston, MA 02215" +310562,27in FHD Monitor,1,149.99,12/20/19 08:12,"988 Chestnut St, Austin, TX 73301" +310563,LG Washing Machine,1,600.0,12/12/19 12:22,"102 7th St, Los Angeles, CA 90001" +310564,Lightning Charging Cable,2,14.95,12/08/19 13:29,"893 Jackson St, Boston, MA 02215" +310565,ThinkPad Laptop,1,999.99,12/12/19 13:59,"584 Highland St, Austin, TX 73301" +310566,Vareebadd Phone,1,400,12/04/19 13:48,"699 Willow St, Dallas, TX 75001" +310567,20in Monitor,1,109.99,12/10/19 08:46,"678 Cedar St, San Francisco, CA 94016" +310568,AA Batteries (4-pack),3,3.84,12/16/19 15:10,"85 Wilson St, New York City, NY 10001" +310569,Macbook Pro Laptop,1,1700,12/18/19 09:38,"949 8th St, San Francisco, CA 94016" +310570,Apple Airpods Headphones,1,150,12/02/19 17:30,"436 9th St, Dallas, TX 75001" +310571,Wired Headphones,1,11.99,12/25/19 21:24,"870 10th St, San Francisco, CA 94016" +310572,Lightning Charging Cable,1,14.95,12/04/19 21:22,"382 Forest St, Portland, ME 04101" +310573,Bose SoundSport Headphones,1,99.99,12/24/19 10:23,"733 Adams St, New York City, NY 10001" +310574,USB-C Charging Cable,1,11.95,12/16/19 13:17,"940 8th St, Boston, MA 02215" +310575,USB-C Charging Cable,1,11.95,12/31/19 22:39,"226 Lake St, San Francisco, CA 94016" +310576,USB-C Charging Cable,2,11.95,12/17/19 21:44,"512 Jefferson St, Portland, ME 04101" +310577,34in Ultrawide Monitor,1,379.99,12/18/19 20:34,"822 Lincoln St, Seattle, WA 98101" +310578,AAA Batteries (4-pack),2,2.99,12/27/19 21:50,"535 Cherry St, San Francisco, CA 94016" +310579,AAA Batteries (4-pack),1,2.99,12/15/19 15:18,"339 9th St, San Francisco, CA 94016" +310580,Macbook Pro Laptop,1,1700,12/02/19 22:01,"335 Meadow St, San Francisco, CA 94016" +310581,Vareebadd Phone,1,400,12/29/19 23:12,"282 South St, Seattle, WA 98101" +310582,Lightning Charging Cable,1,14.95,12/15/19 10:27,"53 8th St, Los Angeles, CA 90001" +310583,Lightning Charging Cable,1,14.95,12/07/19 10:00,"325 Adams St, San Francisco, CA 94016" +310584,27in 4K Gaming Monitor,1,389.99,12/06/19 18:40,"953 River St, Portland, OR 97035" +310585,Lightning Charging Cable,1,14.95,12/09/19 13:31,"640 Meadow St, New York City, NY 10001" +310586,USB-C Charging Cable,1,11.95,12/21/19 22:16,"576 Hickory St, San Francisco, CA 94016" +310587,Lightning Charging Cable,1,14.95,12/09/19 20:29,"651 12th St, San Francisco, CA 94016" +310588,Wired Headphones,1,11.99,12/01/19 11:41,"170 Forest St, New York City, NY 10001" +310589,34in Ultrawide Monitor,1,379.99,12/27/19 14:21,"892 Walnut St, Los Angeles, CA 90001" +310590,AAA Batteries (4-pack),3,2.99,12/26/19 09:44,"340 Highland St, Boston, MA 02215" +310591,AAA Batteries (4-pack),1,2.99,12/24/19 22:12,"31 Spruce St, Dallas, TX 75001" +310592,Wired Headphones,1,11.99,12/24/19 09:45,"306 Sunset St, Atlanta, GA 30301" +310593,AA Batteries (4-pack),2,3.84,12/08/19 16:43,"447 Hill St, Los Angeles, CA 90001" +310594,Lightning Charging Cable,1,14.95,12/17/19 17:36,"626 Johnson St, Seattle, WA 98101" +310595,20in Monitor,1,109.99,12/05/19 15:55,"875 Center St, Los Angeles, CA 90001" +310596,27in FHD Monitor,1,149.99,12/03/19 19:29,"358 Wilson St, San Francisco, CA 94016" +310597,USB-C Charging Cable,1,11.95,12/11/19 12:24,"397 Dogwood St, New York City, NY 10001" +310598,Lightning Charging Cable,1,14.95,12/16/19 12:42,"455 Hickory St, Boston, MA 02215" +310599,Lightning Charging Cable,1,14.95,12/11/19 21:57,"274 4th St, Boston, MA 02215" +310600,Lightning Charging Cable,1,14.95,12/27/19 16:24,"159 Spruce St, San Francisco, CA 94016" +310601,USB-C Charging Cable,1,11.95,12/14/19 10:32,"755 Sunset St, Boston, MA 02215" +310602,Lightning Charging Cable,1,14.95,12/22/19 21:57,"969 Highland St, Portland, OR 97035" +310603,Bose SoundSport Headphones,1,99.99,12/19/19 23:52,"66 Wilson St, Boston, MA 02215" +310604,27in FHD Monitor,1,149.99,12/10/19 11:14,"990 7th St, San Francisco, CA 94016" +310605,iPhone,1,700,12/03/19 19:06,"568 2nd St, San Francisco, CA 94016" +310605,Lightning Charging Cable,1,14.95,12/03/19 19:06,"568 2nd St, San Francisco, CA 94016" +310606,Vareebadd Phone,1,400,12/22/19 10:42,"364 Church St, Los Angeles, CA 90001" +310606,Bose SoundSport Headphones,1,99.99,12/22/19 10:42,"364 Church St, Los Angeles, CA 90001" +310607,27in FHD Monitor,1,149.99,12/29/19 01:56,"670 Dogwood St, Atlanta, GA 30301" +310608,Bose SoundSport Headphones,1,99.99,12/26/19 12:41,"650 South St, Portland, OR 97035" +310609,Lightning Charging Cable,1,14.95,12/07/19 13:50,"532 Johnson St, Boston, MA 02215" +310610,Wired Headphones,1,11.99,12/18/19 21:50,"500 Walnut St, San Francisco, CA 94016" +310611,Google Phone,1,600,12/29/19 09:01,"842 8th St, Atlanta, GA 30301" +310611,USB-C Charging Cable,1,11.95,12/29/19 09:01,"842 8th St, Atlanta, GA 30301" +310612,Bose SoundSport Headphones,1,99.99,12/21/19 13:41,"745 Hickory St, Portland, ME 04101" +310613,Bose SoundSport Headphones,1,99.99,12/03/19 15:12,"198 Lake St, Boston, MA 02215" +310614,Vareebadd Phone,1,400,12/30/19 18:29,"317 Spruce St, Boston, MA 02215" +310615,Lightning Charging Cable,1,14.95,12/11/19 11:45,"262 9th St, San Francisco, CA 94016" +310615,Macbook Pro Laptop,1,1700,12/11/19 11:45,"262 9th St, San Francisco, CA 94016" +310616,Bose SoundSport Headphones,1,99.99,12/06/19 11:09,"715 4th St, Los Angeles, CA 90001" +310617,20in Monitor,1,109.99,12/31/19 10:13,"955 Jefferson St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +310618,USB-C Charging Cable,1,11.95,12/09/19 13:37,"938 11th St, Austin, TX 73301" +310619,AA Batteries (4-pack),4,3.84,12/23/19 11:44,"495 Maple St, San Francisco, CA 94016" +310620,AAA Batteries (4-pack),1,2.99,12/13/19 22:47,"374 4th St, New York City, NY 10001" +310621,USB-C Charging Cable,1,11.95,12/01/19 21:53,"891 Willow St, Seattle, WA 98101" +310621,Apple Airpods Headphones,1,150,12/01/19 21:53,"891 Willow St, Seattle, WA 98101" +310622,iPhone,1,700,12/23/19 11:12,"543 Main St, Dallas, TX 75001" +310623,Flatscreen TV,1,300,12/30/19 19:54,"284 Elm St, New York City, NY 10001" +310624,Bose SoundSport Headphones,1,99.99,12/26/19 21:08,"322 River St, Austin, TX 73301" +310625,Apple Airpods Headphones,1,150,12/08/19 08:16,"362 Chestnut St, Boston, MA 02215" +310626,Apple Airpods Headphones,1,150,12/20/19 19:13,"131 1st St, Dallas, TX 75001" +310627,Apple Airpods Headphones,1,150,12/01/19 13:52,"781 9th St, Atlanta, GA 30301" +310628,27in 4K Gaming Monitor,1,389.99,12/27/19 10:46,"467 9th St, Los Angeles, CA 90001" +310629,Bose SoundSport Headphones,1,99.99,12/19/19 14:00,"19 Hickory St, Boston, MA 02215" +310630,Apple Airpods Headphones,1,150,12/18/19 18:13,"22 Spruce St, Dallas, TX 75001" +310630,Google Phone,1,600,12/18/19 18:13,"22 Spruce St, Dallas, TX 75001" +310631,Lightning Charging Cable,1,14.95,12/15/19 18:51,"213 7th St, San Francisco, CA 94016" +310632,27in FHD Monitor,1,149.99,12/06/19 19:28,"17 Spruce St, San Francisco, CA 94016" +310633,Apple Airpods Headphones,1,150,12/30/19 13:44,"404 Jefferson St, Boston, MA 02215" +310634,34in Ultrawide Monitor,1,379.99,12/16/19 10:20,"149 Jefferson St, Boston, MA 02215" +310635,Wired Headphones,1,11.99,12/10/19 13:01,"793 Chestnut St, San Francisco, CA 94016" +310636,USB-C Charging Cable,1,11.95,12/29/19 16:43,"690 Hill St, Seattle, WA 98101" +310637,Bose SoundSport Headphones,1,99.99,12/17/19 20:16,"815 Washington St, Portland, OR 97035" +310638,USB-C Charging Cable,1,11.95,12/30/19 06:54,"910 Park St, Los Angeles, CA 90001" +310639,AA Batteries (4-pack),1,3.84,12/10/19 11:32,"574 Ridge St, Los Angeles, CA 90001" +310640,Vareebadd Phone,1,400,12/07/19 19:04,"396 Center St, San Francisco, CA 94016" +310640,Bose SoundSport Headphones,1,99.99,12/07/19 19:04,"396 Center St, San Francisco, CA 94016" +310641,Apple Airpods Headphones,1,150,12/25/19 23:08,"715 River St, New York City, NY 10001" +310642,USB-C Charging Cable,2,11.95,12/12/19 21:02,"908 Main St, Seattle, WA 98101" +310643,Lightning Charging Cable,1,14.95,12/01/19 22:11,"429 Johnson St, New York City, NY 10001" +310644,AA Batteries (4-pack),1,3.84,12/21/19 18:33,"754 Jefferson St, Austin, TX 73301" +310645,Wired Headphones,1,11.99,12/05/19 19:25,"581 Center St, Boston, MA 02215" +310646,34in Ultrawide Monitor,1,379.99,12/03/19 00:52,"642 Forest St, Atlanta, GA 30301" +310646,Macbook Pro Laptop,1,1700,12/03/19 00:52,"642 Forest St, Atlanta, GA 30301" +310647,Bose SoundSport Headphones,1,99.99,12/14/19 12:44,"667 Johnson St, San Francisco, CA 94016" +310648,Lightning Charging Cable,1,14.95,12/14/19 09:28,"335 5th St, Dallas, TX 75001" +310649,Lightning Charging Cable,1,14.95,12/10/19 09:37,"173 Hill St, Seattle, WA 98101" +310650,Apple Airpods Headphones,1,150,12/31/19 21:29,"294 5th St, Boston, MA 02215" +310651,27in 4K Gaming Monitor,1,389.99,12/01/19 15:52,"261 Lake St, Atlanta, GA 30301" +310652,AAA Batteries (4-pack),1,2.99,12/04/19 13:00,"161 Meadow St, Dallas, TX 75001" +310653,AA Batteries (4-pack),2,3.84,12/08/19 11:26,"445 Lake St, Austin, TX 73301" +310654,AAA Batteries (4-pack),2,2.99,12/25/19 15:04,"390 North St, Boston, MA 02215" +310655,27in FHD Monitor,1,149.99,12/03/19 18:16,"362 8th St, Los Angeles, CA 90001" +310656,Wired Headphones,1,11.99,12/24/19 21:20,"434 9th St, Austin, TX 73301" +310657,Lightning Charging Cable,1,14.95,12/13/19 06:15,"510 11th St, Los Angeles, CA 90001" +310658,ThinkPad Laptop,1,999.99,12/18/19 13:45,"276 6th St, New York City, NY 10001" +310659,27in FHD Monitor,1,149.99,12/16/19 12:37,"5 Johnson St, Austin, TX 73301" +310660,iPhone,1,700,12/21/19 11:45,"691 River St, San Francisco, CA 94016" +310661,AAA Batteries (4-pack),1,2.99,12/06/19 21:57,"253 1st St, Los Angeles, CA 90001" +310662,Apple Airpods Headphones,1,150,12/02/19 10:30,"624 9th St, Los Angeles, CA 90001" +310663,AAA Batteries (4-pack),2,2.99,12/17/19 13:06,"325 Church St, San Francisco, CA 94016" +310664,Wired Headphones,1,11.99,12/05/19 16:43,"830 North St, San Francisco, CA 94016" +310665,USB-C Charging Cable,1,11.95,12/03/19 12:04,"180 Park St, New York City, NY 10001" +310666,Lightning Charging Cable,1,14.95,12/04/19 23:03,"388 Main St, Los Angeles, CA 90001" +310667,AAA Batteries (4-pack),2,2.99,12/01/19 20:44,"276 Elm St, Dallas, TX 75001" +310668,27in 4K Gaming Monitor,1,389.99,12/05/19 12:06,"233 13th St, San Francisco, CA 94016" +310669,27in FHD Monitor,1,149.99,12/16/19 15:16,"667 2nd St, San Francisco, CA 94016" +310670,AA Batteries (4-pack),1,3.84,12/19/19 08:50,"879 Chestnut St, Atlanta, GA 30301" +310671,USB-C Charging Cable,1,11.95,12/01/19 14:50,"403 Main St, San Francisco, CA 94016" +310672,USB-C Charging Cable,1,11.95,12/01/19 23:26,"321 Jefferson St, San Francisco, CA 94016" +310673,AAA Batteries (4-pack),1,2.99,12/30/19 11:52,"970 Main St, Seattle, WA 98101" +310674,Lightning Charging Cable,1,14.95,12/14/19 16:12,"883 River St, San Francisco, CA 94016" +310675,Apple Airpods Headphones,1,150,12/15/19 01:53,"352 6th St, New York City, NY 10001" +310676,AAA Batteries (4-pack),1,2.99,12/05/19 18:35,"790 Main St, New York City, NY 10001" +310677,Lightning Charging Cable,1,14.95,12/02/19 21:43,"564 Ridge St, New York City, NY 10001" +310678,Wired Headphones,1,11.99,12/22/19 19:46,"314 Spruce St, Austin, TX 73301" +310678,Lightning Charging Cable,1,14.95,12/22/19 19:46,"314 Spruce St, Austin, TX 73301" +310679,AAA Batteries (4-pack),2,2.99,12/09/19 19:10,"645 Madison St, New York City, NY 10001" +310680,AA Batteries (4-pack),1,3.84,12/23/19 18:30,"228 Jefferson St, San Francisco, CA 94016" +310681,USB-C Charging Cable,1,11.95,12/29/19 19:28,"62 Madison St, Los Angeles, CA 90001" +310682,USB-C Charging Cable,1,11.95,12/08/19 14:37,"318 Jackson St, Boston, MA 02215" +310683,Wired Headphones,1,11.99,12/06/19 11:07,"204 Chestnut St, San Francisco, CA 94016" +310684,34in Ultrawide Monitor,1,379.99,12/11/19 19:06,"964 Jackson St, Portland, ME 04101" +310685,USB-C Charging Cable,1,11.95,12/04/19 14:48,"933 Dogwood St, Atlanta, GA 30301" +310686,Apple Airpods Headphones,1,150,12/21/19 15:52,"767 2nd St, Los Angeles, CA 90001" +310687,Bose SoundSport Headphones,1,99.99,12/31/19 10:11,"562 Highland St, Los Angeles, CA 90001" +310688,Lightning Charging Cable,1,14.95,12/06/19 12:04,"103 Church St, Boston, MA 02215" +310689,Vareebadd Phone,1,400,12/11/19 11:53,"649 Madison St, San Francisco, CA 94016" +310689,USB-C Charging Cable,1,11.95,12/11/19 11:53,"649 Madison St, San Francisco, CA 94016" +310690,AAA Batteries (4-pack),1,2.99,12/27/19 07:12,"38 14th St, San Francisco, CA 94016" +310691,AAA Batteries (4-pack),2,2.99,12/11/19 00:32,"354 Madison St, Seattle, WA 98101" +310692,34in Ultrawide Monitor,1,379.99,12/03/19 16:25,"901 Hickory St, San Francisco, CA 94016" +310693,27in 4K Gaming Monitor,1,389.99,12/22/19 09:55,"75 Pine St, Dallas, TX 75001" +310694,Bose SoundSport Headphones,1,99.99,12/28/19 15:37,"44 Highland St, Dallas, TX 75001" +310695,Lightning Charging Cable,1,14.95,12/29/19 15:27,"75 Hickory St, Portland, ME 04101" +310696,Wired Headphones,1,11.99,12/09/19 20:02,"81 Spruce St, San Francisco, CA 94016" +310697,AA Batteries (4-pack),1,3.84,12/25/19 07:44,"722 14th St, San Francisco, CA 94016" +310698,Lightning Charging Cable,1,14.95,12/14/19 12:01,"704 Main St, New York City, NY 10001" +310699,Bose SoundSport Headphones,1,99.99,12/12/19 10:12,"493 Spruce St, New York City, NY 10001" +310700,Lightning Charging Cable,1,14.95,12/28/19 16:55,"987 South St, Los Angeles, CA 90001" +310701,AAA Batteries (4-pack),1,2.99,12/24/19 18:08,"199 7th St, New York City, NY 10001" +310702,AA Batteries (4-pack),1,3.84,12/05/19 21:38,"507 11th St, Dallas, TX 75001" +310703,27in FHD Monitor,1,149.99,12/12/19 15:03,"412 Walnut St, Dallas, TX 75001" +310704,Wired Headphones,1,11.99,12/29/19 17:34,"423 Main St, Dallas, TX 75001" +310705,ThinkPad Laptop,1,999.99,12/13/19 10:38,"667 8th St, San Francisco, CA 94016" +310706,USB-C Charging Cable,1,11.95,12/03/19 19:52,"629 5th St, San Francisco, CA 94016" +310707,Lightning Charging Cable,1,14.95,12/19/19 09:44,"452 Ridge St, Atlanta, GA 30301" +310708,Wired Headphones,1,11.99,12/23/19 21:22,"201 Walnut St, New York City, NY 10001" +310709,USB-C Charging Cable,1,11.95,12/06/19 09:28,"578 Lakeview St, Portland, OR 97035" +310710,Lightning Charging Cable,1,14.95,12/27/19 06:51,"116 13th St, San Francisco, CA 94016" +310711,Wired Headphones,1,11.99,12/25/19 08:16,"189 Hill St, Dallas, TX 75001" +310712,34in Ultrawide Monitor,1,379.99,12/17/19 05:24,"34 Johnson St, New York City, NY 10001" +310713,27in FHD Monitor,1,149.99,12/27/19 13:30,"426 Maple St, Boston, MA 02215" +310714,27in 4K Gaming Monitor,1,389.99,12/20/19 13:33,"106 Jackson St, San Francisco, CA 94016" +310715,Bose SoundSport Headphones,1,99.99,12/31/19 01:48,"643 8th St, Boston, MA 02215" +310716,Lightning Charging Cable,1,14.95,12/26/19 07:49,"756 Elm St, San Francisco, CA 94016" +310717,Wired Headphones,1,11.99,12/06/19 06:23,"368 Johnson St, Dallas, TX 75001" +310718,Flatscreen TV,1,300,12/31/19 21:26,"833 Lincoln St, Los Angeles, CA 90001" +310719,Macbook Pro Laptop,1,1700,12/19/19 11:42,"127 Maple St, San Francisco, CA 94016" +310720,AA Batteries (4-pack),1,3.84,12/18/19 16:13,"946 Cherry St, Los Angeles, CA 90001" +310721,AA Batteries (4-pack),1,3.84,12/06/19 12:35,"789 Wilson St, Dallas, TX 75001" +310722,USB-C Charging Cable,1,11.95,12/08/19 19:41,"459 Maple St, San Francisco, CA 94016" +310723,27in 4K Gaming Monitor,1,389.99,12/07/19 08:05,"899 Pine St, New York City, NY 10001" +310724,USB-C Charging Cable,1,11.95,12/10/19 07:22,"598 Park St, Austin, TX 73301" +310725,Bose SoundSport Headphones,1,99.99,12/12/19 11:58,"714 1st St, Seattle, WA 98101" +310726,Wired Headphones,1,11.99,12/20/19 19:50,"322 South St, Atlanta, GA 30301" +310727,AAA Batteries (4-pack),1,2.99,12/23/19 10:44,"377 Adams St, San Francisco, CA 94016" +310728,Vareebadd Phone,1,400,12/07/19 08:55,"116 Chestnut St, Atlanta, GA 30301" +310729,AAA Batteries (4-pack),2,2.99,12/05/19 16:35,"769 River St, Los Angeles, CA 90001" +310730,Apple Airpods Headphones,1,150,12/25/19 13:07,"348 Pine St, Seattle, WA 98101" +310731,Lightning Charging Cable,1,14.95,12/03/19 14:18,"554 Madison St, New York City, NY 10001" +310732,Apple Airpods Headphones,1,150,12/25/19 11:27,"871 2nd St, San Francisco, CA 94016" +310733,USB-C Charging Cable,1,11.95,12/19/19 15:38,"576 Madison St, San Francisco, CA 94016" +310734,Lightning Charging Cable,1,14.95,12/15/19 13:40,"629 North St, New York City, NY 10001" +310735,34in Ultrawide Monitor,1,379.99,12/29/19 22:32,"263 Hickory St, Seattle, WA 98101" +310736,AAA Batteries (4-pack),1,2.99,12/14/19 08:28,"5 South St, Dallas, TX 75001" +310737,AAA Batteries (4-pack),1,2.99,12/16/19 22:06,"598 Ridge St, New York City, NY 10001" +310738,34in Ultrawide Monitor,1,379.99,12/14/19 05:28,"724 Center St, Boston, MA 02215" +310738,LG Dryer,1,600.0,12/14/19 05:28,"724 Center St, Boston, MA 02215" +310739,USB-C Charging Cable,1,11.95,12/05/19 12:44,"810 West St, Portland, OR 97035" +310740,USB-C Charging Cable,1,11.95,12/31/19 22:05,"485 Spruce St, Dallas, TX 75001" +310741,Google Phone,1,600,12/28/19 22:03,"81 12th St, Los Angeles, CA 90001" +310742,Apple Airpods Headphones,1,150,12/12/19 15:25,"839 Hickory St, Seattle, WA 98101" +310743,27in FHD Monitor,1,149.99,12/09/19 19:29,"72 13th St, Dallas, TX 75001" +310744,ThinkPad Laptop,1,999.99,12/22/19 15:00,"583 Sunset St, Atlanta, GA 30301" +310745,Wired Headphones,1,11.99,12/23/19 19:52,"750 Maple St, Atlanta, GA 30301" +310746,Lightning Charging Cable,1,14.95,12/24/19 21:40,"569 5th St, Los Angeles, CA 90001" +310746,Bose SoundSport Headphones,1,99.99,12/24/19 21:40,"569 5th St, Los Angeles, CA 90001" +310747,Lightning Charging Cable,1,14.95,12/28/19 16:22,"453 Wilson St, Los Angeles, CA 90001" +310747,34in Ultrawide Monitor,1,379.99,12/28/19 16:22,"453 Wilson St, Los Angeles, CA 90001" +310748,USB-C Charging Cable,1,11.95,12/25/19 19:45,"730 Forest St, San Francisco, CA 94016" +310749,27in FHD Monitor,1,149.99,12/17/19 00:00,"863 12th St, San Francisco, CA 94016" +310750,27in 4K Gaming Monitor,1,389.99,12/20/19 10:45,"514 7th St, Atlanta, GA 30301" +310751,USB-C Charging Cable,1,11.95,12/15/19 08:49,"507 Center St, Dallas, TX 75001" +310752,AA Batteries (4-pack),4,3.84,12/01/19 20:19,"162 2nd St, San Francisco, CA 94016" +310753,Wired Headphones,1,11.99,12/04/19 13:20,"191 Elm St, Austin, TX 73301" +310754,USB-C Charging Cable,1,11.95,12/06/19 11:55,"884 6th St, Boston, MA 02215" +310755,Apple Airpods Headphones,1,150,12/26/19 18:12,"64 Hickory St, Los Angeles, CA 90001" +310756,iPhone,1,700,12/21/19 14:43,"8 8th St, Austin, TX 73301" +310757,34in Ultrawide Monitor,1,379.99,12/03/19 23:23,"479 Cedar St, Austin, TX 73301" +310758,AA Batteries (4-pack),1,3.84,12/08/19 09:57,"406 Main St, San Francisco, CA 94016" +310759,USB-C Charging Cable,1,11.95,12/30/19 19:19,"318 Willow St, Los Angeles, CA 90001" +310760,Bose SoundSport Headphones,1,99.99,12/08/19 09:14,"840 Madison St, Dallas, TX 75001" +310761,AAA Batteries (4-pack),1,2.99,12/26/19 17:54,"159 Cedar St, Boston, MA 02215" +310762,Lightning Charging Cable,1,14.95,12/28/19 21:43,"730 Highland St, Austin, TX 73301" +310763,Wired Headphones,1,11.99,12/17/19 12:01,"581 North St, San Francisco, CA 94016" +310764,27in FHD Monitor,1,149.99,12/17/19 14:28,"193 Elm St, New York City, NY 10001" +310765,USB-C Charging Cable,1,11.95,12/06/19 18:17,"122 Adams St, San Francisco, CA 94016" +310766,Wired Headphones,1,11.99,12/16/19 16:06,"693 Center St, Seattle, WA 98101" +310767,AA Batteries (4-pack),2,3.84,12/12/19 22:13,"694 Spruce St, Los Angeles, CA 90001" +310768,Bose SoundSport Headphones,1,99.99,12/20/19 12:24,"967 12th St, Los Angeles, CA 90001" +310769,AA Batteries (4-pack),1,3.84,12/05/19 08:51,"481 Cherry St, Portland, OR 97035" +310770,Wired Headphones,1,11.99,12/13/19 23:41,"399 9th St, Seattle, WA 98101" +310771,34in Ultrawide Monitor,1,379.99,12/11/19 11:07,"132 10th St, Los Angeles, CA 90001" +310772,Flatscreen TV,1,300,12/09/19 10:19,"830 1st St, San Francisco, CA 94016" +310773,Wired Headphones,1,11.99,12/20/19 10:19,"668 Adams St, Dallas, TX 75001" +310774,AAA Batteries (4-pack),1,2.99,12/17/19 14:17,"412 5th St, San Francisco, CA 94016" +310775,iPhone,1,700,12/05/19 09:56,"189 Meadow St, Portland, OR 97035" +310776,USB-C Charging Cable,1,11.95,12/19/19 13:01,"171 11th St, New York City, NY 10001" +310777,AAA Batteries (4-pack),2,2.99,12/01/19 19:47,"522 West St, New York City, NY 10001" +310778,27in 4K Gaming Monitor,1,389.99,12/11/19 22:06,"901 North St, Austin, TX 73301" +310779,Wired Headphones,1,11.99,12/27/19 16:07,"219 Johnson St, Boston, MA 02215" +310780,Wired Headphones,1,11.99,12/20/19 16:55,"553 West St, San Francisco, CA 94016" +310781,Apple Airpods Headphones,1,150,12/19/19 11:52,"509 Main St, Seattle, WA 98101" +310782,AA Batteries (4-pack),2,3.84,12/09/19 17:50,"486 Lincoln St, Portland, ME 04101" +310783,ThinkPad Laptop,1,999.99,12/29/19 14:23,"129 Maple St, Atlanta, GA 30301" +310784,AA Batteries (4-pack),1,3.84,12/16/19 13:21,"742 Lincoln St, Portland, OR 97035" +310785,Vareebadd Phone,1,400,12/01/19 19:07,"592 12th St, New York City, NY 10001" +310786,Lightning Charging Cable,1,14.95,12/09/19 22:58,"820 River St, Los Angeles, CA 90001" +310787,AAA Batteries (4-pack),1,2.99,12/06/19 12:11,"706 West St, Los Angeles, CA 90001" +310788,Google Phone,1,600,12/03/19 08:59,"877 14th St, Portland, OR 97035" +310789,AA Batteries (4-pack),1,3.84,12/17/19 10:56,"924 Jackson St, Austin, TX 73301" +310790,Flatscreen TV,1,300,12/30/19 11:48,"534 Cedar St, Atlanta, GA 30301" +310791,ThinkPad Laptop,1,999.99,12/05/19 08:58,"38 1st St, San Francisco, CA 94016" +310792,AAA Batteries (4-pack),1,2.99,12/29/19 17:16,"715 1st St, Boston, MA 02215" +310793,Lightning Charging Cable,1,14.95,12/06/19 14:28,"650 Dogwood St, Atlanta, GA 30301" +310794,Wired Headphones,1,11.99,12/05/19 22:27,"162 River St, Atlanta, GA 30301" +310795,34in Ultrawide Monitor,1,379.99,12/16/19 10:06,"218 Jefferson St, Boston, MA 02215" +310796,Lightning Charging Cable,1,14.95,12/01/19 10:32,"533 Lake St, San Francisco, CA 94016" +310797,Bose SoundSport Headphones,1,99.99,12/23/19 17:09,"919 11th St, Seattle, WA 98101" +310798,AA Batteries (4-pack),1,3.84,12/27/19 09:58,"559 Chestnut St, Boston, MA 02215" +310799,Apple Airpods Headphones,1,150,12/13/19 16:14,"560 Johnson St, Portland, OR 97035" +310800,Wired Headphones,1,11.99,12/09/19 16:53,"358 Lincoln St, San Francisco, CA 94016" +310801,USB-C Charging Cable,1,11.95,12/15/19 20:29,"777 Elm St, Portland, OR 97035" +310802,Macbook Pro Laptop,1,1700,12/31/19 10:25,"380 Spruce St, New York City, NY 10001" +310803,iPhone,1,700,12/24/19 20:25,"912 South St, New York City, NY 10001" +310803,Google Phone,1,600,12/24/19 20:25,"912 South St, New York City, NY 10001" +310804,Wired Headphones,1,11.99,12/01/19 14:43,"860 7th St, Los Angeles, CA 90001" +310805,Flatscreen TV,1,300,12/03/19 05:48,"78 8th St, Los Angeles, CA 90001" +310806,Bose SoundSport Headphones,1,99.99,12/06/19 12:41,"167 4th St, Atlanta, GA 30301" +310807,iPhone,1,700,12/13/19 11:42,"803 Dogwood St, Dallas, TX 75001" +310808,Vareebadd Phone,1,400,12/28/19 13:36,"160 Forest St, Boston, MA 02215" +310808,USB-C Charging Cable,1,11.95,12/28/19 13:36,"160 Forest St, Boston, MA 02215" +310808,Wired Headphones,1,11.99,12/28/19 13:36,"160 Forest St, Boston, MA 02215" +310809,34in Ultrawide Monitor,1,379.99,12/10/19 20:00,"962 8th St, San Francisco, CA 94016" +310810,27in 4K Gaming Monitor,1,389.99,12/02/19 13:47,"765 Lincoln St, Los Angeles, CA 90001" +310811,AA Batteries (4-pack),1,3.84,12/23/19 10:30,"478 Maple St, Boston, MA 02215" +310811,Bose SoundSport Headphones,1,99.99,12/23/19 10:30,"478 Maple St, Boston, MA 02215" +310812,Wired Headphones,1,11.99,12/25/19 18:35,"950 Lake St, Portland, OR 97035" +310813,Bose SoundSport Headphones,1,99.99,12/31/19 21:46,"679 Cherry St, Atlanta, GA 30301" +310814,USB-C Charging Cable,1,11.95,12/07/19 17:50,"622 Pine St, San Francisco, CA 94016" +310815,Apple Airpods Headphones,1,150,12/30/19 10:08,"558 Church St, Atlanta, GA 30301" +310816,27in 4K Gaming Monitor,1,389.99,12/14/19 13:45,"984 Park St, Portland, OR 97035" +310817,Wired Headphones,1,11.99,12/30/19 12:50,"411 Hickory St, Atlanta, GA 30301" +310818,ThinkPad Laptop,1,999.99,12/27/19 12:43,"817 6th St, Portland, OR 97035" +310819,USB-C Charging Cable,1,11.95,12/20/19 23:58,"317 Elm St, Portland, OR 97035" +310820,AAA Batteries (4-pack),1,2.99,12/13/19 09:12,"595 Church St, Los Angeles, CA 90001" +310821,Apple Airpods Headphones,1,150,12/30/19 12:15,"603 Pine St, San Francisco, CA 94016" +310822,27in FHD Monitor,1,149.99,12/23/19 23:26,"944 Madison St, New York City, NY 10001" +310823,Apple Airpods Headphones,1,150,12/24/19 09:12,"703 Highland St, New York City, NY 10001" +310824,Wired Headphones,1,11.99,12/11/19 18:11,"382 Cedar St, San Francisco, CA 94016" +310825,AA Batteries (4-pack),1,3.84,12/29/19 19:07,"383 Elm St, Los Angeles, CA 90001" +310826,Apple Airpods Headphones,1,150,12/24/19 09:49,"908 Hickory St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +310827,Bose SoundSport Headphones,1,99.99,12/26/19 15:18,"886 West St, San Francisco, CA 94016" +310828,34in Ultrawide Monitor,1,379.99,12/28/19 16:53,"527 5th St, Los Angeles, CA 90001" +310829,27in FHD Monitor,1,149.99,12/20/19 00:25,"745 10th St, Atlanta, GA 30301" +310830,AAA Batteries (4-pack),2,2.99,12/30/19 17:02,"306 Wilson St, Dallas, TX 75001" +310831,Lightning Charging Cable,1,14.95,12/06/19 16:55,"272 8th St, Seattle, WA 98101" +310832,27in FHD Monitor,1,149.99,12/07/19 14:22,"405 1st St, New York City, NY 10001" +310833,Google Phone,1,600,12/27/19 13:30,"25 Hill St, San Francisco, CA 94016" +310834,Macbook Pro Laptop,1,1700,12/07/19 19:07,"121 Hickory St, Los Angeles, CA 90001" +310835,Lightning Charging Cable,1,14.95,12/10/19 02:05,"341 Cedar St, San Francisco, CA 94016" +310836,Macbook Pro Laptop,1,1700,12/19/19 23:23,"646 Ridge St, Austin, TX 73301" +310837,Bose SoundSport Headphones,1,99.99,12/26/19 00:59,"879 Hickory St, New York City, NY 10001" +310838,34in Ultrawide Monitor,1,379.99,12/18/19 08:38,"456 Spruce St, Seattle, WA 98101" +310839,iPhone,1,700,12/02/19 17:12,"35 Cedar St, Los Angeles, CA 90001" +310840,Lightning Charging Cable,2,14.95,12/01/19 14:47,"142 Washington St, New York City, NY 10001" +310841,Flatscreen TV,1,300,12/24/19 21:51,"879 Pine St, Seattle, WA 98101" +310841,USB-C Charging Cable,2,11.95,12/24/19 21:51,"879 Pine St, Seattle, WA 98101" +,,,,, +310842,Macbook Pro Laptop,1,1700,12/14/19 00:17,"397 Spruce St, Los Angeles, CA 90001" +310843,USB-C Charging Cable,1,11.95,12/08/19 16:52,"688 Hill St, Dallas, TX 75001" +310844,USB-C Charging Cable,1,11.95,12/06/19 13:08,"317 Johnson St, Boston, MA 02215" +310845,Lightning Charging Cable,1,14.95,12/11/19 22:07,"463 Madison St, Austin, TX 73301" +310846,USB-C Charging Cable,1,11.95,12/28/19 12:45,"180 Sunset St, Dallas, TX 75001" +310847,ThinkPad Laptop,1,999.99,12/04/19 17:21,"931 Spruce St, Portland, OR 97035" +310848,AA Batteries (4-pack),1,3.84,12/24/19 12:45,"577 Cedar St, San Francisco, CA 94016" +310849,USB-C Charging Cable,1,11.95,12/10/19 09:31,"880 Adams St, Boston, MA 02215" +310850,27in FHD Monitor,1,149.99,12/08/19 17:05,"486 9th St, Los Angeles, CA 90001" +310851,Lightning Charging Cable,1,14.95,12/07/19 13:32,"22 Lakeview St, Portland, OR 97035" +310852,AA Batteries (4-pack),1,3.84,12/04/19 14:04,"633 Center St, San Francisco, CA 94016" +310853,AAA Batteries (4-pack),1,2.99,12/03/19 20:53,"154 Sunset St, New York City, NY 10001" +310854,Wired Headphones,1,11.99,12/17/19 15:46,"955 Sunset St, Austin, TX 73301" +310855,Apple Airpods Headphones,1,150,12/10/19 06:11,"335 Madison St, San Francisco, CA 94016" +310856,AA Batteries (4-pack),1,3.84,12/16/19 15:45,"281 2nd St, Dallas, TX 75001" +310857,USB-C Charging Cable,1,11.95,12/26/19 21:33,"365 11th St, New York City, NY 10001" +310858,USB-C Charging Cable,1,11.95,12/28/19 14:02,"31 Washington St, Los Angeles, CA 90001" +310859,Apple Airpods Headphones,1,150,12/10/19 09:14,"43 10th St, New York City, NY 10001" +310860,Wired Headphones,1,11.99,12/15/19 17:36,"936 Park St, Dallas, TX 75001" +310861,Flatscreen TV,1,300,12/26/19 12:08,"815 Elm St, Los Angeles, CA 90001" +310862,AA Batteries (4-pack),1,3.84,12/24/19 13:46,"844 7th St, Austin, TX 73301" +310863,Wired Headphones,1,11.99,12/14/19 19:10,"595 Hickory St, San Francisco, CA 94016" +310864,Wired Headphones,1,11.99,12/18/19 11:46,"859 Hickory St, Austin, TX 73301" +310865,AA Batteries (4-pack),1,3.84,12/17/19 12:16,"608 Lake St, Boston, MA 02215" +310866,USB-C Charging Cable,1,11.95,12/22/19 15:06,"207 11th St, New York City, NY 10001" +310867,34in Ultrawide Monitor,1,379.99,12/21/19 17:38,"199 11th St, Los Angeles, CA 90001" +310868,AAA Batteries (4-pack),1,2.99,12/31/19 16:08,"779 4th St, New York City, NY 10001" +310869,AAA Batteries (4-pack),1,2.99,12/12/19 12:00,"182 11th St, Los Angeles, CA 90001" +310870,USB-C Charging Cable,1,11.95,12/04/19 09:51,"606 2nd St, Boston, MA 02215" +310871,AA Batteries (4-pack),1,3.84,12/02/19 23:28,"841 Jackson St, San Francisco, CA 94016" +310872,AA Batteries (4-pack),1,3.84,12/30/19 19:30,"205 North St, San Francisco, CA 94016" +310873,USB-C Charging Cable,1,11.95,12/06/19 18:23,"221 Walnut St, San Francisco, CA 94016" +310874,Lightning Charging Cable,1,14.95,12/10/19 15:56,"420 2nd St, Seattle, WA 98101" +310875,ThinkPad Laptop,1,999.99,12/06/19 19:23,"568 Cherry St, Dallas, TX 75001" +310876,Bose SoundSport Headphones,1,99.99,12/27/19 22:19,"841 Cherry St, New York City, NY 10001" +310877,Macbook Pro Laptop,1,1700,12/16/19 06:29,"535 Forest St, Atlanta, GA 30301" +310878,34in Ultrawide Monitor,1,379.99,12/14/19 15:41,"632 Elm St, New York City, NY 10001" +310878,Apple Airpods Headphones,1,150,12/14/19 15:41,"632 Elm St, New York City, NY 10001" +310879,Google Phone,1,600,12/16/19 20:59,"170 Meadow St, Boston, MA 02215" +310880,USB-C Charging Cable,2,11.95,12/13/19 19:28,"336 Walnut St, Austin, TX 73301" +310881,Apple Airpods Headphones,1,150,12/19/19 16:48,"845 Pine St, Boston, MA 02215" +310882,27in FHD Monitor,1,149.99,12/23/19 20:59,"910 Lake St, Los Angeles, CA 90001" +310883,USB-C Charging Cable,1,11.95,12/30/19 18:32,"173 Madison St, Seattle, WA 98101" +310884,Lightning Charging Cable,1,14.95,12/16/19 17:19,"326 Spruce St, San Francisco, CA 94016" +310885,Google Phone,1,600,12/26/19 13:39,"586 River St, San Francisco, CA 94016" +310885,USB-C Charging Cable,1,11.95,12/26/19 13:39,"586 River St, San Francisco, CA 94016" +310886,Lightning Charging Cable,1,14.95,12/31/19 15:53,"266 11th St, San Francisco, CA 94016" +310887,Vareebadd Phone,1,400,12/02/19 10:06,"266 Park St, San Francisco, CA 94016" +310888,Wired Headphones,1,11.99,12/03/19 09:36,"958 8th St, Atlanta, GA 30301" +310889,Lightning Charging Cable,1,14.95,12/17/19 13:49,"49 Meadow St, Los Angeles, CA 90001" +310890,Google Phone,1,600,12/12/19 14:42,"722 8th St, San Francisco, CA 94016" +310891,Wired Headphones,1,11.99,12/18/19 01:23,"69 Washington St, New York City, NY 10001" +310892,Lightning Charging Cable,1,14.95,12/04/19 16:18,"353 Church St, New York City, NY 10001" +310893,Lightning Charging Cable,1,14.95,12/04/19 22:18,"184 5th St, San Francisco, CA 94016" +310894,USB-C Charging Cable,1,11.95,12/10/19 20:47,"799 11th St, San Francisco, CA 94016" +310895,AA Batteries (4-pack),1,3.84,12/05/19 20:39,"656 Johnson St, New York City, NY 10001" +310896,Wired Headphones,1,11.99,12/27/19 18:53,"500 South St, Atlanta, GA 30301" +310897,AAA Batteries (4-pack),1,2.99,12/09/19 23:28,"304 Chestnut St, San Francisco, CA 94016" +310898,27in FHD Monitor,1,149.99,12/28/19 18:14,"475 Center St, Los Angeles, CA 90001" +310899,Wired Headphones,1,11.99,12/08/19 21:41,"5 Wilson St, Dallas, TX 75001" +310900,AAA Batteries (4-pack),2,2.99,12/09/19 14:01,"554 Lincoln St, San Francisco, CA 94016" +310901,iPhone,1,700,12/20/19 17:37,"446 Adams St, San Francisco, CA 94016" +310902,Apple Airpods Headphones,1,150,12/31/19 21:37,"741 South St, Seattle, WA 98101" +310903,34in Ultrawide Monitor,1,379.99,12/04/19 06:59,"640 Maple St, Los Angeles, CA 90001" +310904,Macbook Pro Laptop,1,1700,12/24/19 12:54,"705 Wilson St, Los Angeles, CA 90001" +310905,Google Phone,1,600,12/25/19 13:45,"277 6th St, Dallas, TX 75001" +310906,Wired Headphones,1,11.99,12/31/19 21:54,"893 7th St, New York City, NY 10001" +310907,USB-C Charging Cable,1,11.95,12/17/19 17:46,"916 Hickory St, Portland, OR 97035" +310908,Macbook Pro Laptop,1,1700,12/18/19 23:09,"913 South St, Dallas, TX 75001" +310909,27in FHD Monitor,1,149.99,12/21/19 21:32,"351 Adams St, Boston, MA 02215" +310910,Bose SoundSport Headphones,1,99.99,12/26/19 23:49,"70 5th St, San Francisco, CA 94016" +310910,AAA Batteries (4-pack),2,2.99,12/26/19 23:49,"70 5th St, San Francisco, CA 94016" +310911,Apple Airpods Headphones,1,150,12/20/19 09:25,"647 Lincoln St, Boston, MA 02215" +310912,Wired Headphones,1,11.99,12/05/19 17:24,"300 Cedar St, Portland, OR 97035" +310913,Bose SoundSport Headphones,1,99.99,12/11/19 21:46,"621 Highland St, San Francisco, CA 94016" +310914,Lightning Charging Cable,1,14.95,12/29/19 19:10,"73 Main St, Portland, OR 97035" +310915,AAA Batteries (4-pack),1,2.99,12/05/19 12:46,"808 10th St, Los Angeles, CA 90001" +310916,Apple Airpods Headphones,1,150,12/02/19 07:36,"618 Chestnut St, New York City, NY 10001" +310917,AA Batteries (4-pack),1,3.84,12/30/19 18:48,"814 Main St, San Francisco, CA 94016" +310918,USB-C Charging Cable,1,11.95,12/12/19 05:38,"806 Hickory St, Los Angeles, CA 90001" +310919,Apple Airpods Headphones,1,150,12/03/19 23:37,"844 Wilson St, San Francisco, CA 94016" +,,,,, +310920,Lightning Charging Cable,1,14.95,12/23/19 21:24,"189 12th St, Atlanta, GA 30301" +310921,Lightning Charging Cable,1,14.95,12/28/19 18:09,"654 12th St, New York City, NY 10001" +310922,Vareebadd Phone,1,400,12/30/19 15:46,"142 Park St, Los Angeles, CA 90001" +310923,Apple Airpods Headphones,1,150,12/30/19 15:58,"395 Lincoln St, Atlanta, GA 30301" +310924,Lightning Charging Cable,2,14.95,12/25/19 18:29,"375 Hill St, San Francisco, CA 94016" +310925,Apple Airpods Headphones,1,150,12/15/19 16:20,"306 Spruce St, Austin, TX 73301" +310925,AA Batteries (4-pack),2,3.84,12/15/19 16:20,"306 Spruce St, Austin, TX 73301" +310926,AA Batteries (4-pack),2,3.84,12/18/19 06:26,"160 13th St, San Francisco, CA 94016" +310927,Lightning Charging Cable,1,14.95,12/10/19 15:58,"889 Lake St, Portland, OR 97035" +310928,27in FHD Monitor,1,149.99,12/27/19 17:53,"611 Jackson St, Boston, MA 02215" +310929,AAA Batteries (4-pack),1,2.99,12/22/19 22:26,"93 Forest St, Seattle, WA 98101" +310930,AA Batteries (4-pack),1,3.84,12/25/19 20:03,"279 Lake St, New York City, NY 10001" +310931,USB-C Charging Cable,1,11.95,12/09/19 10:20,"3 Jefferson St, Boston, MA 02215" +310932,Apple Airpods Headphones,1,150,12/27/19 19:04,"61 Lincoln St, Dallas, TX 75001" +310933,Bose SoundSport Headphones,1,99.99,12/30/19 12:45,"150 Chestnut St, Boston, MA 02215" +310934,LG Dryer,1,600.0,12/12/19 11:53,"465 10th St, Boston, MA 02215" +310935,AAA Batteries (4-pack),1,2.99,12/06/19 15:56,"280 South St, Boston, MA 02215" +310936,Flatscreen TV,1,300,12/14/19 01:43,"29 Cherry St, Boston, MA 02215" +310937,Google Phone,1,600,12/01/19 11:27,"446 North St, Boston, MA 02215" +310938,USB-C Charging Cable,1,11.95,12/21/19 07:06,"182 Highland St, San Francisco, CA 94016" +310939,Lightning Charging Cable,1,14.95,12/12/19 08:22,"674 10th St, Boston, MA 02215" +310940,Apple Airpods Headphones,1,150,12/04/19 10:13,"439 Ridge St, Boston, MA 02215" +310941,Bose SoundSport Headphones,1,99.99,12/11/19 15:44,"82 West St, San Francisco, CA 94016" +310942,Macbook Pro Laptop,1,1700,12/10/19 00:31,"932 4th St, San Francisco, CA 94016" +310943,USB-C Charging Cable,1,11.95,12/15/19 08:17,"2 North St, Atlanta, GA 30301" +310944,27in FHD Monitor,1,149.99,12/01/19 15:23,"673 Elm St, New York City, NY 10001" +310945,Apple Airpods Headphones,1,150,12/24/19 11:46,"38 7th St, Dallas, TX 75001" +310946,Apple Airpods Headphones,1,150,12/16/19 18:53,"277 11th St, San Francisco, CA 94016" +310947,34in Ultrawide Monitor,1,379.99,12/29/19 18:42,"367 10th St, San Francisco, CA 94016" +310948,iPhone,1,700,12/04/19 19:57,"972 1st St, Portland, OR 97035" +310949,iPhone,1,700,12/05/19 11:25,"945 Cedar St, Los Angeles, CA 90001" +310950,AA Batteries (4-pack),1,3.84,12/07/19 21:52,"836 13th St, Los Angeles, CA 90001" +310951,Wired Headphones,1,11.99,12/03/19 17:24,"134 North St, Atlanta, GA 30301" +310952,AAA Batteries (4-pack),2,2.99,12/14/19 12:00,"482 Dogwood St, New York City, NY 10001" +310953,Apple Airpods Headphones,1,150,12/25/19 17:53,"858 Jackson St, San Francisco, CA 94016" +310954,Bose SoundSport Headphones,1,99.99,12/18/19 21:52,"604 Madison St, Portland, OR 97035" +310955,AA Batteries (4-pack),1,3.84,12/11/19 19:14,"178 Lake St, San Francisco, CA 94016" +310956,Vareebadd Phone,1,400,12/24/19 20:26,"985 Center St, New York City, NY 10001" +310956,Wired Headphones,2,11.99,12/24/19 20:26,"985 Center St, New York City, NY 10001" +310957,AAA Batteries (4-pack),1,2.99,12/10/19 17:25,"294 11th St, Portland, OR 97035" +310958,Lightning Charging Cable,1,14.95,12/23/19 15:16,"210 13th St, Seattle, WA 98101" +310959,Wired Headphones,1,11.99,12/28/19 13:55,"885 Pine St, San Francisco, CA 94016" +310960,Flatscreen TV,1,300,12/10/19 08:09,"817 North St, Los Angeles, CA 90001" +310961,Lightning Charging Cable,1,14.95,12/11/19 22:47,"860 14th St, San Francisco, CA 94016" +310962,Lightning Charging Cable,1,14.95,12/21/19 07:56,"603 Lake St, Seattle, WA 98101" +310963,Wired Headphones,1,11.99,12/13/19 22:02,"662 6th St, Atlanta, GA 30301" +310964,AA Batteries (4-pack),2,3.84,12/20/19 22:56,"431 Johnson St, New York City, NY 10001" +310965,27in 4K Gaming Monitor,1,389.99,12/11/19 11:47,"532 North St, San Francisco, CA 94016" +310966,20in Monitor,1,109.99,12/31/19 22:01,"348 Lincoln St, New York City, NY 10001" +310967,Wired Headphones,1,11.99,12/22/19 13:40,"39 Pine St, Austin, TX 73301" +310968,Apple Airpods Headphones,1,150,12/30/19 20:01,"414 South St, Austin, TX 73301" +310968,AAA Batteries (4-pack),1,2.99,12/30/19 20:01,"414 South St, Austin, TX 73301" +310969,LG Dryer,1,600.0,12/13/19 14:27,"863 Walnut St, Seattle, WA 98101" +310970,Wired Headphones,1,11.99,12/28/19 14:59,"581 9th St, Los Angeles, CA 90001" +310971,USB-C Charging Cable,1,11.95,12/15/19 18:42,"971 Maple St, Atlanta, GA 30301" +310972,Wired Headphones,1,11.99,12/19/19 12:59,"217 2nd St, Los Angeles, CA 90001" +310973,AAA Batteries (4-pack),1,2.99,12/14/19 09:53,"462 Ridge St, Boston, MA 02215" +310974,USB-C Charging Cable,1,11.95,12/20/19 10:33,"502 Forest St, San Francisco, CA 94016" +310975,AA Batteries (4-pack),2,3.84,12/21/19 12:36,"629 Cherry St, Atlanta, GA 30301" +310976,34in Ultrawide Monitor,1,379.99,12/06/19 10:55,"449 14th St, Los Angeles, CA 90001" +310977,Apple Airpods Headphones,1,150,12/26/19 17:45,"612 Hill St, Austin, TX 73301" +310978,iPhone,1,700,12/14/19 09:25,"530 Lincoln St, New York City, NY 10001" +310979,Apple Airpods Headphones,1,150,12/13/19 10:26,"659 Dogwood St, Austin, TX 73301" +310980,AA Batteries (4-pack),2,3.84,12/18/19 21:37,"296 Cedar St, Austin, TX 73301" +310981,USB-C Charging Cable,1,11.95,12/20/19 10:55,"8 9th St, San Francisco, CA 94016" +310982,USB-C Charging Cable,1,11.95,12/24/19 04:12,"325 6th St, Los Angeles, CA 90001" +310982,Apple Airpods Headphones,1,150,12/24/19 04:12,"325 6th St, Los Angeles, CA 90001" +310983,27in FHD Monitor,1,149.99,12/20/19 09:54,"318 Lincoln St, New York City, NY 10001" +310984,AA Batteries (4-pack),1,3.84,12/01/19 15:17,"532 4th St, Dallas, TX 75001" +310985,Lightning Charging Cable,1,14.95,12/28/19 07:58,"656 Wilson St, New York City, NY 10001" +310986,27in FHD Monitor,1,149.99,12/17/19 08:55,"139 River St, Los Angeles, CA 90001" +310987,iPhone,1,700,12/28/19 13:21,"544 Jefferson St, Boston, MA 02215" +310988,Bose SoundSport Headphones,1,99.99,12/25/19 19:40,"290 Cherry St, Boston, MA 02215" +310989,AA Batteries (4-pack),2,3.84,12/06/19 08:11,"777 14th St, San Francisco, CA 94016" +310990,Macbook Pro Laptop,1,1700,12/03/19 08:59,"162 6th St, Boston, MA 02215" +310991,ThinkPad Laptop,1,999.99,12/27/19 18:32,"877 Church St, San Francisco, CA 94016" +310992,Wired Headphones,1,11.99,12/05/19 20:16,"777 Madison St, Los Angeles, CA 90001" +310993,27in 4K Gaming Monitor,1,389.99,12/01/19 12:06,"98 1st St, Dallas, TX 75001" +310994,AA Batteries (4-pack),1,3.84,12/03/19 08:00,"825 Hill St, Los Angeles, CA 90001" +310995,Wired Headphones,1,11.99,12/22/19 16:44,"734 12th St, San Francisco, CA 94016" +310996,Lightning Charging Cable,1,14.95,12/19/19 13:15,"637 Forest St, San Francisco, CA 94016" +310997,Lightning Charging Cable,1,14.95,12/02/19 18:23,"74 13th St, San Francisco, CA 94016" +310998,Apple Airpods Headphones,1,150,12/12/19 17:51,"185 1st St, Austin, TX 73301" +310999,34in Ultrawide Monitor,1,379.99,12/31/19 20:13,"719 Park St, Austin, TX 73301" +311000,AAA Batteries (4-pack),1,2.99,12/20/19 14:34,"241 Forest St, Seattle, WA 98101" +311001,AAA Batteries (4-pack),1,2.99,12/03/19 19:30,"757 Cherry St, San Francisco, CA 94016" +311002,AA Batteries (4-pack),2,3.84,12/18/19 16:20,"308 Chestnut St, Boston, MA 02215" +311003,Lightning Charging Cable,1,14.95,12/29/19 11:49,"818 Wilson St, San Francisco, CA 94016" +311004,Lightning Charging Cable,1,14.95,12/21/19 22:29,"892 2nd St, Los Angeles, CA 90001" +311005,AAA Batteries (4-pack),1,2.99,12/04/19 14:46,"21 Sunset St, Seattle, WA 98101" +311006,USB-C Charging Cable,1,11.95,12/17/19 21:32,"833 8th St, Portland, OR 97035" +311007,AAA Batteries (4-pack),1,2.99,12/20/19 19:59,"791 Willow St, New York City, NY 10001" +311008,iPhone,1,700,12/02/19 16:23,"242 Willow St, Portland, OR 97035" +311009,Flatscreen TV,1,300,12/06/19 12:14,"918 1st St, Dallas, TX 75001" +311010,Wired Headphones,1,11.99,12/12/19 18:46,"253 6th St, Portland, OR 97035" +311011,Google Phone,1,600,12/22/19 12:57,"17 South St, Portland, OR 97035" +311012,Wired Headphones,1,11.99,12/16/19 13:37,"463 Lake St, Boston, MA 02215" +311013,ThinkPad Laptop,1,999.99,12/05/19 10:54,"208 2nd St, San Francisco, CA 94016" +311014,Wired Headphones,1,11.99,12/18/19 17:41,"750 Jefferson St, San Francisco, CA 94016" +311015,Apple Airpods Headphones,1,150,12/19/19 20:25,"723 Meadow St, New York City, NY 10001" +311016,USB-C Charging Cable,1,11.95,12/28/19 00:32,"738 Center St, San Francisco, CA 94016" +311017,iPhone,1,700,12/17/19 09:27,"607 Hickory St, Boston, MA 02215" +311018,27in FHD Monitor,1,149.99,12/01/19 21:22,"421 Maple St, Austin, TX 73301" +311019,USB-C Charging Cable,1,11.95,12/30/19 14:28,"924 Cherry St, New York City, NY 10001" +311020,Apple Airpods Headphones,1,150,12/26/19 17:56,"955 Highland St, Los Angeles, CA 90001" +311021,27in 4K Gaming Monitor,1,389.99,12/14/19 10:33,"128 West St, Seattle, WA 98101" +311021,27in FHD Monitor,1,149.99,12/14/19 10:33,"128 West St, Seattle, WA 98101" +311022,Wired Headphones,1,11.99,12/31/19 13:00,"267 Hickory St, New York City, NY 10001" +311023,Bose SoundSport Headphones,1,99.99,12/02/19 12:56,"853 10th St, Portland, OR 97035" +311024,27in FHD Monitor,1,149.99,12/21/19 21:11,"511 Lake St, New York City, NY 10001" +311025,AAA Batteries (4-pack),2,2.99,12/27/19 10:10,"702 River St, San Francisco, CA 94016" +311026,27in FHD Monitor,1,149.99,12/03/19 04:46,"426 11th St, Seattle, WA 98101" +311027,Wired Headphones,1,11.99,12/26/19 07:34,"289 Spruce St, San Francisco, CA 94016" +311028,Google Phone,1,600,12/17/19 15:18,"869 Cherry St, Seattle, WA 98101" +311029,34in Ultrawide Monitor,1,379.99,12/04/19 16:37,"728 Meadow St, New York City, NY 10001" +311030,AA Batteries (4-pack),2,3.84,12/02/19 23:09,"812 5th St, Los Angeles, CA 90001" +311031,34in Ultrawide Monitor,1,379.99,12/28/19 13:34,"388 Pine St, Dallas, TX 75001" +311032,AAA Batteries (4-pack),2,2.99,12/31/19 08:01,"303 Center St, Dallas, TX 75001" +311033,AA Batteries (4-pack),1,3.84,12/04/19 16:50,"855 Meadow St, Dallas, TX 75001" +311034,Apple Airpods Headphones,1,150,12/03/19 08:08,"616 Lakeview St, Portland, OR 97035" +311035,Wired Headphones,1,11.99,12/02/19 09:54,"675 Elm St, Seattle, WA 98101" +311036,Wired Headphones,1,11.99,12/26/19 22:04,"645 Chestnut St, Atlanta, GA 30301" +311037,Wired Headphones,1,11.99,12/30/19 22:43,"891 12th St, San Francisco, CA 94016" +311038,Wired Headphones,1,11.99,12/17/19 09:30,"619 Lakeview St, Los Angeles, CA 90001" +311039,AA Batteries (4-pack),5,3.84,12/19/19 20:57,"649 Pine St, Dallas, TX 75001" +311040,Wired Headphones,1,11.99,12/25/19 11:54,"265 12th St, Seattle, WA 98101" +311041,Lightning Charging Cable,1,14.95,12/30/19 20:51,"966 12th St, Atlanta, GA 30301" +311042,Wired Headphones,1,11.99,12/28/19 22:32,"984 Johnson St, San Francisco, CA 94016" +311043,Macbook Pro Laptop,1,1700,12/26/19 16:36,"756 Ridge St, Seattle, WA 98101" +311044,Google Phone,1,600,12/18/19 15:03,"174 12th St, Los Angeles, CA 90001" +311045,Bose SoundSport Headphones,1,99.99,12/09/19 16:08,"807 Meadow St, San Francisco, CA 94016" +311046,Lightning Charging Cable,1,14.95,12/06/19 06:29,"642 7th St, Atlanta, GA 30301" +311047,Wired Headphones,1,11.99,12/12/19 17:33,"363 Church St, Atlanta, GA 30301" +311048,Lightning Charging Cable,1,14.95,12/24/19 18:21,"321 Chestnut St, San Francisco, CA 94016" +311049,Bose SoundSport Headphones,1,99.99,12/04/19 20:00,"185 Willow St, Dallas, TX 75001" +311050,27in 4K Gaming Monitor,1,389.99,12/14/19 14:48,"100 Sunset St, San Francisco, CA 94016" +,,,,, +311051,Flatscreen TV,1,300,12/12/19 16:38,"329 Church St, Los Angeles, CA 90001" +311052,AAA Batteries (4-pack),1,2.99,12/09/19 21:52,"965 4th St, New York City, NY 10001" +311053,Lightning Charging Cable,2,14.95,12/25/19 20:10,"30 Center St, Boston, MA 02215" +311054,20in Monitor,1,109.99,12/29/19 21:57,"351 Meadow St, Boston, MA 02215" +311055,27in 4K Gaming Monitor,1,389.99,12/19/19 12:08,"332 Cherry St, New York City, NY 10001" +311056,AAA Batteries (4-pack),2,2.99,12/29/19 11:58,"908 Center St, San Francisco, CA 94016" +311057,AA Batteries (4-pack),2,3.84,12/07/19 12:15,"401 Main St, New York City, NY 10001" +311058,AAA Batteries (4-pack),1,2.99,12/07/19 11:23,"480 Cedar St, Boston, MA 02215" +311058,USB-C Charging Cable,1,11.95,12/07/19 11:23,"480 Cedar St, Boston, MA 02215" +311059,Lightning Charging Cable,1,14.95,12/17/19 14:18,"24 Meadow St, Seattle, WA 98101" +311060,AA Batteries (4-pack),1,3.84,12/22/19 00:04,"25 Madison St, San Francisco, CA 94016" +311061,Wired Headphones,1,11.99,12/26/19 13:32,"937 Johnson St, New York City, NY 10001" +311062,AA Batteries (4-pack),2,3.84,12/05/19 18:22,"146 Pine St, Austin, TX 73301" +311063,34in Ultrawide Monitor,1,379.99,12/29/19 16:30,"544 Wilson St, San Francisco, CA 94016" +311064,20in Monitor,1,109.99,12/25/19 04:33,"819 South St, Seattle, WA 98101" +311065,34in Ultrawide Monitor,1,379.99,12/23/19 17:06,"550 1st St, San Francisco, CA 94016" +311066,Wired Headphones,1,11.99,12/06/19 18:23,"598 14th St, Los Angeles, CA 90001" +311067,Lightning Charging Cable,1,14.95,12/15/19 09:07,"974 2nd St, Atlanta, GA 30301" +311068,Flatscreen TV,1,300,12/02/19 17:58,"362 9th St, New York City, NY 10001" +311069,iPhone,1,700,12/22/19 08:28,"635 Madison St, Dallas, TX 75001" +311070,USB-C Charging Cable,1,11.95,12/05/19 19:20,"395 River St, New York City, NY 10001" +311071,Apple Airpods Headphones,1,150,12/27/19 18:13,"687 Sunset St, San Francisco, CA 94016" +311071,AA Batteries (4-pack),1,3.84,12/27/19 18:13,"687 Sunset St, San Francisco, CA 94016" +311072,USB-C Charging Cable,1,11.95,12/21/19 10:03,"191 6th St, Dallas, TX 75001" +311073,USB-C Charging Cable,2,11.95,12/13/19 20:57,"48 South St, Seattle, WA 98101" +311074,USB-C Charging Cable,1,11.95,12/24/19 19:40,"123 Adams St, Austin, TX 73301" +311075,Apple Airpods Headphones,1,150,12/05/19 20:34,"466 Dogwood St, Portland, OR 97035" +311076,Lightning Charging Cable,1,14.95,12/29/19 12:16,"191 Sunset St, Portland, OR 97035" +311077,Apple Airpods Headphones,1,150,12/11/19 15:44,"802 North St, Los Angeles, CA 90001" +311078,Lightning Charging Cable,1,14.95,12/16/19 06:21,"707 Willow St, Atlanta, GA 30301" +311079,Wired Headphones,1,11.99,12/28/19 16:09,"475 6th St, San Francisco, CA 94016" +311080,Apple Airpods Headphones,1,150,12/17/19 18:10,"363 Sunset St, San Francisco, CA 94016" +311081,Apple Airpods Headphones,1,150,12/25/19 22:14,"581 Madison St, New York City, NY 10001" +311082,Apple Airpods Headphones,1,150,12/18/19 18:32,"93 South St, San Francisco, CA 94016" +311083,Vareebadd Phone,1,400,12/31/19 21:58,"864 Adams St, New York City, NY 10001" +311083,USB-C Charging Cable,1,11.95,12/31/19 21:58,"864 Adams St, New York City, NY 10001" +311084,Bose SoundSport Headphones,1,99.99,12/25/19 12:56,"543 North St, Los Angeles, CA 90001" +311085,USB-C Charging Cable,1,11.95,12/24/19 21:06,"744 Park St, San Francisco, CA 94016" +311086,Lightning Charging Cable,1,14.95,12/04/19 08:14,"802 Maple St, Portland, OR 97035" +311087,Bose SoundSport Headphones,1,99.99,12/02/19 17:48,"938 Washington St, New York City, NY 10001" +311088,Macbook Pro Laptop,1,1700,12/10/19 21:56,"923 Lincoln St, Atlanta, GA 30301" +311089,34in Ultrawide Monitor,1,379.99,12/12/19 14:28,"940 Sunset St, New York City, NY 10001" +311090,27in FHD Monitor,1,149.99,12/02/19 12:50,"883 West St, San Francisco, CA 94016" +311091,Apple Airpods Headphones,1,150,12/06/19 23:47,"545 13th St, Boston, MA 02215" +311092,27in FHD Monitor,1,149.99,12/29/19 17:54,"52 Ridge St, Seattle, WA 98101" +311093,Apple Airpods Headphones,1,150,12/27/19 12:27,"970 Meadow St, Portland, OR 97035" +311094,AA Batteries (4-pack),1,3.84,12/28/19 21:51,"713 Spruce St, New York City, NY 10001" +311095,USB-C Charging Cable,1,11.95,12/06/19 11:08,"265 5th St, Austin, TX 73301" +311096,34in Ultrawide Monitor,1,379.99,12/02/19 17:19,"257 4th St, Dallas, TX 75001" +311097,AAA Batteries (4-pack),3,2.99,12/15/19 09:37,"339 Maple St, Boston, MA 02215" +311098,27in 4K Gaming Monitor,1,389.99,12/24/19 21:00,"891 Ridge St, Portland, ME 04101" +311099,Lightning Charging Cable,1,14.95,12/25/19 16:24,"109 Church St, Atlanta, GA 30301" +311100,Apple Airpods Headphones,1,150,12/13/19 19:43,"994 Meadow St, Dallas, TX 75001" +311101,Lightning Charging Cable,1,14.95,12/03/19 22:36,"123 Spruce St, Dallas, TX 75001" +311102,USB-C Charging Cable,1,11.95,12/02/19 21:58,"313 Hill St, San Francisco, CA 94016" +311103,Lightning Charging Cable,1,14.95,12/13/19 07:40,"233 Washington St, New York City, NY 10001" +311104,Apple Airpods Headphones,1,150,12/25/19 21:54,"682 South St, Atlanta, GA 30301" +311105,AAA Batteries (4-pack),1,2.99,12/07/19 14:54,"449 Jefferson St, San Francisco, CA 94016" +311106,Wired Headphones,1,11.99,12/07/19 09:57,"170 Lakeview St, Atlanta, GA 30301" +311107,ThinkPad Laptop,1,999.99,12/14/19 11:24,"942 Adams St, Austin, TX 73301" +311108,Bose SoundSport Headphones,1,99.99,12/22/19 14:42,"75 Pine St, Los Angeles, CA 90001" +311109,Lightning Charging Cable,1,14.95,12/15/19 10:29,"631 River St, Dallas, TX 75001" +311110,Wired Headphones,1,11.99,12/23/19 20:39,"366 Lakeview St, Atlanta, GA 30301" +311111,Flatscreen TV,1,300,12/25/19 21:24,"169 North St, Los Angeles, CA 90001" +311112,AA Batteries (4-pack),1,3.84,12/22/19 20:05,"330 Cedar St, Dallas, TX 75001" +311113,Vareebadd Phone,1,400,12/12/19 20:27,"803 Hill St, San Francisco, CA 94016" +311114,27in FHD Monitor,1,149.99,12/27/19 09:10,"62 Hickory St, New York City, NY 10001" +311115,Lightning Charging Cable,1,14.95,12/30/19 17:45,"178 Chestnut St, San Francisco, CA 94016" +311116,Wired Headphones,2,11.99,12/10/19 13:21,"474 Church St, San Francisco, CA 94016" +311117,USB-C Charging Cable,1,11.95,12/06/19 08:07,"59 River St, Boston, MA 02215" +311118,Wired Headphones,1,11.99,12/26/19 10:26,"150 Chestnut St, New York City, NY 10001" +311119,iPhone,1,700,12/03/19 21:26,"829 Hickory St, Los Angeles, CA 90001" +311120,Lightning Charging Cable,1,14.95,12/23/19 19:38,"852 Lake St, Los Angeles, CA 90001" +311121,Lightning Charging Cable,1,14.95,12/02/19 16:10,"268 13th St, Boston, MA 02215" +311122,34in Ultrawide Monitor,1,379.99,12/30/19 15:07,"623 12th St, Boston, MA 02215" +311123,27in FHD Monitor,1,149.99,12/06/19 21:14,"112 West St, Dallas, TX 75001" +311124,Flatscreen TV,1,300,12/29/19 07:56,"158 10th St, San Francisco, CA 94016" +311125,Bose SoundSport Headphones,1,99.99,12/23/19 18:25,"11 Walnut St, San Francisco, CA 94016" +311126,USB-C Charging Cable,1,11.95,12/25/19 14:27,"811 Pine St, San Francisco, CA 94016" +311127,Flatscreen TV,1,300,12/13/19 14:28,"772 Ridge St, San Francisco, CA 94016" +311128,AAA Batteries (4-pack),1,2.99,12/05/19 13:17,"180 11th St, San Francisco, CA 94016" +311129,Apple Airpods Headphones,1,150,12/16/19 21:42,"839 West St, Boston, MA 02215" +311130,iPhone,1,700,12/25/19 10:48,"59 Jackson St, New York City, NY 10001" +311130,Lightning Charging Cable,1,14.95,12/25/19 10:48,"59 Jackson St, New York City, NY 10001" +311131,iPhone,1,700,12/09/19 19:28,"854 10th St, San Francisco, CA 94016" +311131,Lightning Charging Cable,1,14.95,12/09/19 19:28,"854 10th St, San Francisco, CA 94016" +311132,Vareebadd Phone,1,400,12/27/19 23:41,"807 Spruce St, Los Angeles, CA 90001" +311133,Vareebadd Phone,1,400,12/15/19 23:24,"349 Center St, Atlanta, GA 30301" +311134,USB-C Charging Cable,1,11.95,12/08/19 11:28,"184 Sunset St, Los Angeles, CA 90001" +311135,USB-C Charging Cable,1,11.95,12/12/19 16:19,"479 Chestnut St, Los Angeles, CA 90001" +311136,iPhone,1,700,12/05/19 18:23,"295 Sunset St, San Francisco, CA 94016" +311137,Google Phone,1,600,12/20/19 15:14,"910 Ridge St, Los Angeles, CA 90001" +311138,Wired Headphones,1,11.99,12/14/19 13:43,"578 West St, Seattle, WA 98101" +311139,ThinkPad Laptop,1,999.99,12/18/19 07:12,"527 River St, Austin, TX 73301" +311140,iPhone,1,700,12/10/19 20:48,"891 North St, San Francisco, CA 94016" +311141,AA Batteries (4-pack),1,3.84,12/12/19 09:20,"913 Maple St, Portland, OR 97035" +311142,34in Ultrawide Monitor,1,379.99,12/12/19 01:11,"57 8th St, Los Angeles, CA 90001" +311143,27in 4K Gaming Monitor,1,389.99,12/02/19 10:15,"913 Church St, San Francisco, CA 94016" +311144,Flatscreen TV,1,300,12/23/19 12:34,"37 7th St, Atlanta, GA 30301" +311145,USB-C Charging Cable,1,11.95,12/15/19 22:36,"620 Hill St, Los Angeles, CA 90001" +311146,27in 4K Gaming Monitor,1,389.99,12/15/19 10:15,"54 Cedar St, San Francisco, CA 94016" +311147,Bose SoundSport Headphones,1,99.99,12/10/19 07:52,"207 Hill St, Atlanta, GA 30301" +311148,Flatscreen TV,1,300,12/16/19 21:48,"365 Cedar St, San Francisco, CA 94016" +311149,Wired Headphones,1,11.99,12/23/19 19:26,"498 Willow St, Dallas, TX 75001" +311150,Bose SoundSport Headphones,1,99.99,12/11/19 16:25,"904 Jefferson St, San Francisco, CA 94016" +311151,USB-C Charging Cable,1,11.95,12/05/19 11:02,"509 Chestnut St, Seattle, WA 98101" +311152,Bose SoundSport Headphones,1,99.99,12/29/19 06:12,"454 Madison St, Boston, MA 02215" +311153,USB-C Charging Cable,1,11.95,12/30/19 11:10,"996 8th St, Portland, ME 04101" +311154,AAA Batteries (4-pack),2,2.99,12/14/19 07:16,"133 Church St, Portland, OR 97035" +311155,Bose SoundSport Headphones,1,99.99,12/22/19 18:15,"902 Spruce St, Los Angeles, CA 90001" +311156,Wired Headphones,1,11.99,12/21/19 12:47,"839 Spruce St, Portland, OR 97035" +311157,Google Phone,1,600,12/19/19 19:01,"617 Jackson St, Boston, MA 02215" +311158,USB-C Charging Cable,1,11.95,12/29/19 20:53,"207 11th St, New York City, NY 10001" +311159,Apple Airpods Headphones,1,150,12/10/19 14:01,"828 Jackson St, New York City, NY 10001" +311160,Bose SoundSport Headphones,1,99.99,12/02/19 13:17,"642 Ridge St, San Francisco, CA 94016" +311161,Bose SoundSport Headphones,1,99.99,12/17/19 23:25,"416 Hill St, Los Angeles, CA 90001" +311162,Lightning Charging Cable,1,14.95,12/16/19 20:38,"868 Sunset St, San Francisco, CA 94016" +311163,AA Batteries (4-pack),1,3.84,12/28/19 16:21,"463 2nd St, Seattle, WA 98101" +311164,USB-C Charging Cable,1,11.95,12/16/19 17:03,"38 Willow St, San Francisco, CA 94016" +311165,Lightning Charging Cable,1,14.95,12/22/19 12:04,"460 Highland St, Dallas, TX 75001" +311166,AA Batteries (4-pack),1,3.84,12/01/19 10:15,"697 Jefferson St, San Francisco, CA 94016" +311167,34in Ultrawide Monitor,2,379.99,12/28/19 10:29,"454 Maple St, Portland, OR 97035" +311168,AA Batteries (4-pack),1,3.84,12/26/19 19:34,"129 14th St, Los Angeles, CA 90001" +311169,Lightning Charging Cable,3,14.95,12/16/19 23:10,"949 Church St, Los Angeles, CA 90001" +311170,AAA Batteries (4-pack),1,2.99,12/18/19 21:37,"174 6th St, San Francisco, CA 94016" +311171,AA Batteries (4-pack),2,3.84,12/29/19 14:21,"573 6th St, Boston, MA 02215" +311172,Google Phone,1,600,12/30/19 09:23,"191 Elm St, New York City, NY 10001" +311173,Bose SoundSport Headphones,1,99.99,12/31/19 01:22,"146 2nd St, New York City, NY 10001" +311174,AAA Batteries (4-pack),1,2.99,12/10/19 18:47,"686 Spruce St, New York City, NY 10001" +311175,27in 4K Gaming Monitor,1,389.99,12/25/19 22:09,"541 North St, New York City, NY 10001" +311176,Bose SoundSport Headphones,1,99.99,12/23/19 13:54,"635 South St, Los Angeles, CA 90001" +311176,AA Batteries (4-pack),1,3.84,12/23/19 13:54,"635 South St, Los Angeles, CA 90001" +311177,20in Monitor,1,109.99,12/30/19 00:33,"214 Washington St, Portland, OR 97035" +311178,Bose SoundSport Headphones,1,99.99,12/13/19 06:23,"454 4th St, New York City, NY 10001" +311179,Apple Airpods Headphones,1,150,12/25/19 12:43,"172 Forest St, Los Angeles, CA 90001" +311180,AAA Batteries (4-pack),1,2.99,12/30/19 19:24,"808 Maple St, San Francisco, CA 94016" +311181,Wired Headphones,1,11.99,12/07/19 15:37,"80 Meadow St, New York City, NY 10001" +311182,Lightning Charging Cable,1,14.95,12/03/19 17:55,"226 Lincoln St, Portland, OR 97035" +311183,Flatscreen TV,1,300,12/28/19 08:28,"45 North St, San Francisco, CA 94016" +311184,Apple Airpods Headphones,1,150,12/03/19 14:53,"372 Pine St, New York City, NY 10001" +311185,Wired Headphones,3,11.99,12/13/19 19:12,"628 Dogwood St, Boston, MA 02215" +311186,AAA Batteries (4-pack),1,2.99,12/28/19 22:50,"387 Hill St, Boston, MA 02215" +311187,27in 4K Gaming Monitor,1,389.99,12/15/19 21:24,"519 Pine St, Los Angeles, CA 90001" +311188,20in Monitor,1,109.99,12/26/19 16:53,"859 12th St, Dallas, TX 75001" +311189,USB-C Charging Cable,1,11.95,12/02/19 15:56,"203 13th St, Los Angeles, CA 90001" +311190,USB-C Charging Cable,1,11.95,12/22/19 06:33,"551 11th St, Atlanta, GA 30301" +311191,AAA Batteries (4-pack),4,2.99,12/06/19 13:09,"436 Hill St, Dallas, TX 75001" +311192,Apple Airpods Headphones,1,150,12/02/19 00:16,"489 Maple St, Los Angeles, CA 90001" +311193,Wired Headphones,1,11.99,12/10/19 10:03,"38 Spruce St, Los Angeles, CA 90001" +311194,Wired Headphones,1,11.99,12/25/19 11:06,"95 North St, Los Angeles, CA 90001" +311195,Wired Headphones,1,11.99,12/11/19 11:50,"178 Wilson St, Los Angeles, CA 90001" +311196,ThinkPad Laptop,1,999.99,12/12/19 00:48,"114 Hickory St, Seattle, WA 98101" +311197,AA Batteries (4-pack),1,3.84,12/30/19 21:36,"385 Cedar St, Austin, TX 73301" +311198,iPhone,1,700,12/28/19 11:37,"481 5th St, Los Angeles, CA 90001" +311199,Wired Headphones,1,11.99,12/21/19 10:41,"702 Ridge St, Seattle, WA 98101" +311200,Bose SoundSport Headphones,1,99.99,12/18/19 20:56,"497 Johnson St, Portland, OR 97035" +311201,Apple Airpods Headphones,1,150,12/01/19 10:17,"608 10th St, San Francisco, CA 94016" +311202,AA Batteries (4-pack),1,3.84,12/28/19 16:50,"874 Adams St, San Francisco, CA 94016" +311203,AA Batteries (4-pack),1,3.84,12/23/19 10:57,"885 Park St, Austin, TX 73301" +311204,34in Ultrawide Monitor,1,379.99,12/29/19 20:46,"35 Adams St, San Francisco, CA 94016" +311205,AA Batteries (4-pack),1,3.84,12/12/19 20:05,"361 Church St, Boston, MA 02215" +311206,34in Ultrawide Monitor,1,379.99,12/13/19 18:23,"732 North St, Austin, TX 73301" +311207,iPhone,1,700,12/16/19 15:38,"279 Lincoln St, Dallas, TX 75001" +311208,AA Batteries (4-pack),2,3.84,12/17/19 10:17,"698 Walnut St, San Francisco, CA 94016" +311209,Google Phone,1,600,12/05/19 21:45,"751 Meadow St, Austin, TX 73301" +311210,Lightning Charging Cable,1,14.95,12/10/19 20:53,"195 Willow St, San Francisco, CA 94016" +311211,Flatscreen TV,1,300,12/31/19 20:02,"119 Center St, Portland, OR 97035" +311212,27in 4K Gaming Monitor,1,389.99,12/16/19 11:13,"812 Forest St, Los Angeles, CA 90001" +311213,Lightning Charging Cable,1,14.95,12/18/19 23:54,"714 9th St, San Francisco, CA 94016" +311214,USB-C Charging Cable,1,11.95,12/15/19 00:37,"279 Maple St, New York City, NY 10001" +311214,Flatscreen TV,1,300,12/15/19 00:37,"279 Maple St, New York City, NY 10001" +311215,Flatscreen TV,1,300,12/05/19 06:33,"534 Elm St, New York City, NY 10001" +311216,Bose SoundSport Headphones,1,99.99,12/31/19 11:44,"631 Sunset St, Portland, ME 04101" +311217,Lightning Charging Cable,1,14.95,12/21/19 05:51,"615 Highland St, Dallas, TX 75001" +311218,AA Batteries (4-pack),1,3.84,12/20/19 07:01,"266 Adams St, New York City, NY 10001" +311219,27in 4K Gaming Monitor,1,389.99,12/10/19 19:57,"504 Madison St, New York City, NY 10001" +311220,Apple Airpods Headphones,1,150,12/11/19 15:27,"357 1st St, San Francisco, CA 94016" +311221,Wired Headphones,1,11.99,12/07/19 17:57,"484 Jackson St, Atlanta, GA 30301" +311222,AAA Batteries (4-pack),3,2.99,12/04/19 14:09,"164 Dogwood St, Dallas, TX 75001" +311223,AA Batteries (4-pack),2,3.84,12/16/19 22:03,"64 Cherry St, San Francisco, CA 94016" +311224,Wired Headphones,1,11.99,12/17/19 18:42,"913 10th St, New York City, NY 10001" +311225,AA Batteries (4-pack),1,3.84,12/07/19 11:10,"897 12th St, Seattle, WA 98101" +311226,USB-C Charging Cable,1,11.95,12/06/19 12:40,"821 North St, Dallas, TX 75001" +311227,AAA Batteries (4-pack),1,2.99,12/27/19 23:19,"858 Church St, San Francisco, CA 94016" +311228,34in Ultrawide Monitor,1,379.99,12/24/19 11:58,"206 Cedar St, Seattle, WA 98101" +311229,Apple Airpods Headphones,1,150,12/10/19 06:05,"284 Lincoln St, Los Angeles, CA 90001" +311230,27in 4K Gaming Monitor,1,389.99,12/24/19 21:36,"568 Dogwood St, Atlanta, GA 30301" +311231,Apple Airpods Headphones,1,150,12/23/19 11:41,"761 4th St, San Francisco, CA 94016" +311232,AAA Batteries (4-pack),2,2.99,12/05/19 21:34,"146 Chestnut St, San Francisco, CA 94016" +311232,LG Washing Machine,1,600.0,12/05/19 21:34,"146 Chestnut St, San Francisco, CA 94016" +311233,27in 4K Gaming Monitor,1,389.99,12/12/19 05:12,"223 South St, Austin, TX 73301" +311234,Lightning Charging Cable,1,14.95,12/09/19 20:10,"195 14th St, Austin, TX 73301" +311235,Google Phone,1,600,12/10/19 10:22,"476 Park St, San Francisco, CA 94016" +311235,USB-C Charging Cable,1,11.95,12/10/19 10:22,"476 Park St, San Francisco, CA 94016" +311236,Lightning Charging Cable,1,14.95,12/19/19 12:06,"887 Washington St, San Francisco, CA 94016" +311236,Bose SoundSport Headphones,1,99.99,12/19/19 12:06,"887 Washington St, San Francisco, CA 94016" +311237,AA Batteries (4-pack),1,3.84,12/10/19 10:41,"993 Jackson St, Los Angeles, CA 90001" +311238,Apple Airpods Headphones,1,150,12/02/19 08:42,"98 9th St, Seattle, WA 98101" +311239,Apple Airpods Headphones,1,150,12/14/19 12:08,"892 Center St, Boston, MA 02215" +311240,Wired Headphones,1,11.99,12/09/19 19:49,"311 12th St, New York City, NY 10001" +311241,Wired Headphones,1,11.99,12/25/19 14:40,"931 North St, Atlanta, GA 30301" +311242,Lightning Charging Cable,1,14.95,12/29/19 12:29,"258 River St, Dallas, TX 75001" +311243,Lightning Charging Cable,1,14.95,12/23/19 17:32,"761 Center St, Dallas, TX 75001" +311244,27in 4K Gaming Monitor,1,389.99,12/20/19 06:01,"974 Lake St, Los Angeles, CA 90001" +311245,Lightning Charging Cable,1,14.95,12/13/19 17:03,"902 11th St, Los Angeles, CA 90001" +311246,AAA Batteries (4-pack),2,2.99,12/08/19 20:47,"865 Meadow St, Atlanta, GA 30301" +311247,27in FHD Monitor,1,149.99,12/09/19 09:44,"505 Hill St, San Francisco, CA 94016" +311248,Lightning Charging Cable,1,14.95,12/01/19 12:15,"649 Walnut St, Los Angeles, CA 90001" +311249,AAA Batteries (4-pack),1,2.99,12/22/19 20:41,"783 Chestnut St, New York City, NY 10001" +311250,USB-C Charging Cable,1,11.95,12/14/19 00:09,"854 Walnut St, San Francisco, CA 94016" +311250,27in 4K Gaming Monitor,1,389.99,12/14/19 00:09,"854 Walnut St, San Francisco, CA 94016" +311251,Google Phone,1,600,12/08/19 21:10,"716 Jefferson St, San Francisco, CA 94016" +311252,AA Batteries (4-pack),2,3.84,12/17/19 14:47,"844 Washington St, New York City, NY 10001" +311253,Apple Airpods Headphones,1,150,12/21/19 14:55,"62 Lincoln St, New York City, NY 10001" +311254,27in FHD Monitor,1,149.99,12/24/19 17:22,"845 5th St, Los Angeles, CA 90001" +311255,27in 4K Gaming Monitor,1,389.99,12/26/19 10:03,"759 11th St, Seattle, WA 98101" +311256,Lightning Charging Cable,1,14.95,12/19/19 22:00,"528 Jefferson St, Los Angeles, CA 90001" +311257,Bose SoundSport Headphones,1,99.99,12/06/19 11:05,"539 9th St, Austin, TX 73301" +311258,34in Ultrawide Monitor,1,379.99,12/16/19 08:03,"523 Adams St, Boston, MA 02215" +311259,iPhone,1,700,12/09/19 13:42,"360 Maple St, Portland, OR 97035" +311259,USB-C Charging Cable,2,11.95,12/09/19 13:42,"360 Maple St, Portland, OR 97035" +311260,34in Ultrawide Monitor,1,379.99,12/17/19 18:09,"79 West St, Seattle, WA 98101" +311261,ThinkPad Laptop,1,999.99,12/25/19 21:24,"756 5th St, New York City, NY 10001" +311262,Google Phone,1,600,12/04/19 22:22,"322 11th St, Atlanta, GA 30301" +311263,Apple Airpods Headphones,1,150,12/15/19 08:39,"246 Lakeview St, Portland, OR 97035" +311264,AAA Batteries (4-pack),2,2.99,12/19/19 13:33,"891 Walnut St, Los Angeles, CA 90001" +311265,27in FHD Monitor,1,149.99,12/14/19 13:21,"17 Hickory St, New York City, NY 10001" +311266,iPhone,1,700,12/07/19 21:24,"47 Dogwood St, Portland, OR 97035" +311267,Google Phone,1,600,12/31/19 15:33,"728 Ridge St, Los Angeles, CA 90001" +311268,Bose SoundSport Headphones,1,99.99,12/28/19 23:45,"402 13th St, San Francisco, CA 94016" +311268,Lightning Charging Cable,1,14.95,12/28/19 23:45,"402 13th St, San Francisco, CA 94016" +311269,27in FHD Monitor,1,149.99,12/25/19 11:05,"942 Lake St, Austin, TX 73301" +311270,AA Batteries (4-pack),1,3.84,12/27/19 23:16,"372 10th St, Portland, OR 97035" +311271,27in FHD Monitor,1,149.99,12/11/19 20:38,"684 Church St, Atlanta, GA 30301" +311272,Macbook Pro Laptop,1,1700,12/19/19 20:21,"74 2nd St, San Francisco, CA 94016" +311273,Lightning Charging Cable,1,14.95,12/05/19 12:42,"456 Ridge St, Boston, MA 02215" +311274,AAA Batteries (4-pack),1,2.99,12/12/19 20:36,"147 Park St, San Francisco, CA 94016" +311275,USB-C Charging Cable,1,11.95,12/17/19 19:45,"650 North St, New York City, NY 10001" +311276,iPhone,1,700,12/07/19 16:06,"151 West St, Boston, MA 02215" +311277,Lightning Charging Cable,2,14.95,12/09/19 03:14,"448 Hickory St, San Francisco, CA 94016" +311278,AAA Batteries (4-pack),2,2.99,12/10/19 13:17,"13 Park St, Atlanta, GA 30301" +311279,Lightning Charging Cable,1,14.95,12/20/19 18:54,"669 Walnut St, New York City, NY 10001" +311280,Lightning Charging Cable,1,14.95,12/13/19 12:58,"878 Lincoln St, Dallas, TX 75001" +311281,AA Batteries (4-pack),1,3.84,12/24/19 18:17,"580 2nd St, San Francisco, CA 94016" +311282,ThinkPad Laptop,1,999.99,12/31/19 16:55,"304 Spruce St, Austin, TX 73301" +311283,AA Batteries (4-pack),1,3.84,12/13/19 14:18,"949 Maple St, Boston, MA 02215" +311284,Wired Headphones,1,11.99,12/03/19 17:16,"771 Walnut St, New York City, NY 10001" +311285,USB-C Charging Cable,1,11.95,12/06/19 08:44,"52 Jackson St, San Francisco, CA 94016" +311286,Lightning Charging Cable,2,14.95,12/24/19 03:04,"698 Willow St, Los Angeles, CA 90001" +311287,ThinkPad Laptop,1,999.99,12/03/19 14:43,"796 South St, Atlanta, GA 30301" +311288,iPhone,1,700,12/05/19 11:54,"272 Cherry St, San Francisco, CA 94016" +311289,Lightning Charging Cable,1,14.95,12/12/19 22:43,"478 Madison St, New York City, NY 10001" +311290,AA Batteries (4-pack),1,3.84,12/01/19 23:23,"44 Jefferson St, Portland, ME 04101" +311291,USB-C Charging Cable,1,11.95,12/15/19 10:08,"446 Spruce St, Atlanta, GA 30301" +311292,Wired Headphones,1,11.99,12/01/19 13:15,"666 Ridge St, San Francisco, CA 94016" +311293,Wired Headphones,1,11.99,12/15/19 11:25,"459 West St, San Francisco, CA 94016" +311294,LG Dryer,1,600.0,12/18/19 15:57,"840 Adams St, Los Angeles, CA 90001" +311295,AAA Batteries (4-pack),1,2.99,12/09/19 08:53,"463 South St, Boston, MA 02215" +311296,USB-C Charging Cable,1,11.95,12/18/19 21:42,"167 Walnut St, San Francisco, CA 94016" +311297,34in Ultrawide Monitor,1,379.99,12/10/19 13:04,"490 Hickory St, Seattle, WA 98101" +311298,AAA Batteries (4-pack),1,2.99,12/09/19 15:54,"942 Sunset St, Los Angeles, CA 90001" +311299,Lightning Charging Cable,1,14.95,12/19/19 18:03,"268 9th St, New York City, NY 10001" +311300,Google Phone,1,600,12/07/19 16:29,"95 Jefferson St, New York City, NY 10001" +311301,Apple Airpods Headphones,1,150,12/25/19 19:30,"471 Adams St, San Francisco, CA 94016" +311302,Wired Headphones,1,11.99,12/24/19 19:48,"112 Ridge St, San Francisco, CA 94016" +311303,USB-C Charging Cable,1,11.95,12/14/19 15:49,"325 Jackson St, Austin, TX 73301" +311304,20in Monitor,1,109.99,12/11/19 23:11,"936 North St, San Francisco, CA 94016" +311305,iPhone,1,700,12/15/19 20:17,"844 14th St, Los Angeles, CA 90001" +311305,Lightning Charging Cable,1,14.95,12/15/19 20:17,"844 14th St, Los Angeles, CA 90001" +311306,AA Batteries (4-pack),1,3.84,12/17/19 12:20,"756 Hill St, Atlanta, GA 30301" +311307,Lightning Charging Cable,1,14.95,12/29/19 15:29,"514 Jefferson St, Boston, MA 02215" +311308,Lightning Charging Cable,2,14.95,12/25/19 20:15,"515 Pine St, Atlanta, GA 30301" +311309,Google Phone,1,600,12/29/19 10:22,"245 10th St, Los Angeles, CA 90001" +311309,USB-C Charging Cable,1,11.95,12/29/19 10:22,"245 10th St, Los Angeles, CA 90001" +311309,Bose SoundSport Headphones,1,99.99,12/29/19 10:22,"245 10th St, Los Angeles, CA 90001" +311310,AAA Batteries (4-pack),3,2.99,12/25/19 20:54,"412 Elm St, San Francisco, CA 94016" +311311,27in 4K Gaming Monitor,1,389.99,12/28/19 22:59,"486 8th St, Dallas, TX 75001" +311312,Bose SoundSport Headphones,1,99.99,12/14/19 18:52,"356 11th St, San Francisco, CA 94016" +311313,USB-C Charging Cable,1,11.95,12/18/19 13:12,"377 Highland St, Dallas, TX 75001" +311314,USB-C Charging Cable,1,11.95,12/03/19 16:45,"111 Maple St, San Francisco, CA 94016" +311315,AA Batteries (4-pack),1,3.84,12/03/19 13:25,"941 7th St, Austin, TX 73301" +311316,AA Batteries (4-pack),1,3.84,12/05/19 16:36,"924 Center St, Boston, MA 02215" +311317,Lightning Charging Cable,2,14.95,12/07/19 10:47,"554 North St, Seattle, WA 98101" +311318,Lightning Charging Cable,2,14.95,12/12/19 17:33,"769 Spruce St, Dallas, TX 75001" +311319,AA Batteries (4-pack),1,3.84,12/24/19 17:47,"633 West St, New York City, NY 10001" +311320,AA Batteries (4-pack),1,3.84,12/19/19 23:36,"465 Meadow St, Austin, TX 73301" +311321,Wired Headphones,1,11.99,12/25/19 17:14,"626 Jefferson St, Austin, TX 73301" +311322,Lightning Charging Cable,1,14.95,12/16/19 13:09,"108 2nd St, New York City, NY 10001" +311323,Apple Airpods Headphones,1,150,12/13/19 16:52,"614 Hill St, Portland, OR 97035" +311324,AAA Batteries (4-pack),3,2.99,12/11/19 02:36,"845 11th St, San Francisco, CA 94016" +311325,27in FHD Monitor,1,149.99,12/13/19 10:21,"38 Park St, Dallas, TX 75001" +311326,34in Ultrawide Monitor,1,379.99,12/07/19 14:12,"406 River St, Seattle, WA 98101" +311327,Wired Headphones,1,11.99,12/01/19 22:31,"332 Walnut St, San Francisco, CA 94016" +311328,USB-C Charging Cable,2,11.95,12/03/19 10:30,"549 2nd St, San Francisco, CA 94016" +311329,Apple Airpods Headphones,1,150,12/18/19 14:28,"594 Willow St, Austin, TX 73301" +311330,USB-C Charging Cable,1,11.95,12/09/19 12:27,"590 Elm St, Seattle, WA 98101" +311331,Bose SoundSport Headphones,1,99.99,12/13/19 23:35,"898 11th St, Austin, TX 73301" +311332,USB-C Charging Cable,1,11.95,12/22/19 18:37,"832 Madison St, Los Angeles, CA 90001" +311333,Wired Headphones,1,11.99,12/30/19 07:57,"71 Maple St, Los Angeles, CA 90001" +311334,AA Batteries (4-pack),2,3.84,12/29/19 18:31,"996 Elm St, Los Angeles, CA 90001" +311335,Wired Headphones,1,11.99,12/04/19 17:01,"229 Ridge St, Seattle, WA 98101" +311336,Google Phone,1,600,12/25/19 06:29,"689 Center St, Dallas, TX 75001" +311337,20in Monitor,1,109.99,12/25/19 19:38,"918 Center St, Dallas, TX 75001" +311338,Vareebadd Phone,1,400,12/21/19 12:31,"992 1st St, San Francisco, CA 94016" +311339,Lightning Charging Cable,1,14.95,12/21/19 19:12,"330 9th St, Boston, MA 02215" +311340,Wired Headphones,1,11.99,12/05/19 09:34,"994 Pine St, Los Angeles, CA 90001" +311341,Macbook Pro Laptop,1,1700,12/19/19 13:13,"577 Ridge St, Los Angeles, CA 90001" +311342,Bose SoundSport Headphones,1,99.99,12/17/19 09:08,"302 Highland St, Boston, MA 02215" +311343,27in 4K Gaming Monitor,1,389.99,12/03/19 13:41,"223 South St, Los Angeles, CA 90001" +311344,USB-C Charging Cable,1,11.95,12/09/19 18:17,"841 4th St, Seattle, WA 98101" +311345,Wired Headphones,1,11.99,12/28/19 16:09,"626 Church St, New York City, NY 10001" +311346,USB-C Charging Cable,1,11.95,12/19/19 01:25,"60 Meadow St, New York City, NY 10001" +311347,AA Batteries (4-pack),2,3.84,12/15/19 19:46,"538 14th St, San Francisco, CA 94016" +311348,34in Ultrawide Monitor,1,379.99,12/19/19 18:25,"984 Elm St, Portland, OR 97035" +311349,AA Batteries (4-pack),1,3.84,12/09/19 11:47,"698 Dogwood St, Seattle, WA 98101" +311350,USB-C Charging Cable,1,11.95,12/07/19 14:32,"888 Cedar St, New York City, NY 10001" +311351,Wired Headphones,1,11.99,12/01/19 13:48,"870 Jefferson St, Seattle, WA 98101" +311352,Bose SoundSport Headphones,1,99.99,12/07/19 16:40,"27 6th St, San Francisco, CA 94016" +311353,USB-C Charging Cable,1,11.95,12/26/19 19:05,"412 River St, New York City, NY 10001" +311354,AAA Batteries (4-pack),1,2.99,12/20/19 22:09,"942 Dogwood St, Los Angeles, CA 90001" +311355,AA Batteries (4-pack),1,3.84,12/05/19 15:54,"432 River St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +311356,USB-C Charging Cable,1,11.95,12/10/19 20:15,"88 11th St, New York City, NY 10001" +311357,Vareebadd Phone,1,400,12/11/19 18:07,"283 Chestnut St, Austin, TX 73301" +311357,Wired Headphones,1,11.99,12/11/19 18:07,"283 Chestnut St, Austin, TX 73301" +311358,20in Monitor,1,109.99,12/01/19 15:35,"912 Johnson St, Boston, MA 02215" +311359,USB-C Charging Cable,1,11.95,12/22/19 20:58,"658 Church St, Austin, TX 73301" +311360,Lightning Charging Cable,1,14.95,12/17/19 13:25,"599 South St, Seattle, WA 98101" +311361,Macbook Pro Laptop,1,1700,12/07/19 00:22,"78 Madison St, Seattle, WA 98101" +311362,Lightning Charging Cable,2,14.95,12/14/19 23:51,"753 Main St, San Francisco, CA 94016" +311363,AAA Batteries (4-pack),1,2.99,12/01/19 07:14,"997 Cedar St, Austin, TX 73301" +311364,AAA Batteries (4-pack),1,2.99,12/27/19 22:15,"707 Wilson St, San Francisco, CA 94016" +311365,AAA Batteries (4-pack),3,2.99,12/27/19 11:14,"898 Lakeview St, San Francisco, CA 94016" +311366,AAA Batteries (4-pack),1,2.99,12/29/19 23:22,"728 Lakeview St, San Francisco, CA 94016" +311367,Bose SoundSport Headphones,1,99.99,12/07/19 13:01,"197 Forest St, San Francisco, CA 94016" +311368,AAA Batteries (4-pack),4,2.99,12/02/19 15:10,"404 Cedar St, Boston, MA 02215" +311369,USB-C Charging Cable,1,11.95,12/01/19 17:42,"298 12th St, New York City, NY 10001" +311370,AA Batteries (4-pack),1,3.84,12/18/19 16:40,"121 13th St, Atlanta, GA 30301" +311371,Lightning Charging Cable,1,14.95,12/26/19 19:13,"31 Madison St, Boston, MA 02215" +311372,Lightning Charging Cable,1,14.95,12/03/19 10:26,"589 Johnson St, Boston, MA 02215" +311373,Bose SoundSport Headphones,1,99.99,12/19/19 21:26,"559 9th St, Los Angeles, CA 90001" +311374,LG Dryer,1,600.0,12/30/19 01:23,"410 Dogwood St, New York City, NY 10001" +311375,Google Phone,1,600,12/02/19 14:11,"75 Highland St, New York City, NY 10001" +311376,AAA Batteries (4-pack),1,2.99,12/06/19 12:47,"304 14th St, Los Angeles, CA 90001" +311377,27in FHD Monitor,1,149.99,12/19/19 13:58,"930 Lakeview St, San Francisco, CA 94016" +311378,AA Batteries (4-pack),1,3.84,12/21/19 22:28,"632 West St, San Francisco, CA 94016" +311379,Vareebadd Phone,1,400,12/04/19 19:16,"431 Johnson St, Atlanta, GA 30301" +311380,iPhone,1,700,12/06/19 21:29,"795 Hickory St, San Francisco, CA 94016" +311381,AA Batteries (4-pack),1,3.84,12/09/19 07:53,"701 Ridge St, Dallas, TX 75001" +311382,Apple Airpods Headphones,1,150,12/07/19 16:53,"730 Washington St, Los Angeles, CA 90001" +311383,iPhone,1,700,12/21/19 10:31,"535 Hickory St, San Francisco, CA 94016" +311383,Lightning Charging Cable,1,14.95,12/21/19 10:31,"535 Hickory St, San Francisco, CA 94016" +311383,Wired Headphones,2,11.99,12/21/19 10:31,"535 Hickory St, San Francisco, CA 94016" +311384,USB-C Charging Cable,1,11.95,12/23/19 22:57,"54 14th St, Seattle, WA 98101" +311385,AAA Batteries (4-pack),1,2.99,12/08/19 15:54,"165 12th St, New York City, NY 10001" +311386,Bose SoundSport Headphones,1,99.99,12/30/19 11:51,"576 Jefferson St, Atlanta, GA 30301" +311387,ThinkPad Laptop,1,999.99,12/15/19 19:51,"883 Walnut St, Austin, TX 73301" +311388,20in Monitor,1,109.99,12/09/19 08:03,"91 Center St, San Francisco, CA 94016" +311389,Google Phone,1,600,12/26/19 20:13,"612 Washington St, San Francisco, CA 94016" +311390,34in Ultrawide Monitor,1,379.99,12/24/19 22:07,"644 Main St, Los Angeles, CA 90001" +311391,USB-C Charging Cable,1,11.95,12/29/19 14:35,"654 South St, San Francisco, CA 94016" +311392,USB-C Charging Cable,1,11.95,12/19/19 15:05,"509 Adams St, Los Angeles, CA 90001" +311393,Lightning Charging Cable,1,14.95,12/06/19 15:06,"725 6th St, Boston, MA 02215" +311394,Lightning Charging Cable,1,14.95,12/03/19 20:08,"604 Washington St, San Francisco, CA 94016" +311395,USB-C Charging Cable,1,11.95,12/09/19 13:43,"543 Meadow St, Boston, MA 02215" +311396,USB-C Charging Cable,1,11.95,12/03/19 10:50,"986 River St, Atlanta, GA 30301" +311397,Wired Headphones,1,11.99,12/13/19 13:06,"422 West St, San Francisco, CA 94016" +311398,AA Batteries (4-pack),1,3.84,12/01/19 18:33,"50 Main St, New York City, NY 10001" +311399,USB-C Charging Cable,1,11.95,12/26/19 11:12,"549 Wilson St, San Francisco, CA 94016" +311400,Apple Airpods Headphones,1,150,12/17/19 18:02,"307 12th St, Boston, MA 02215" +311401,Macbook Pro Laptop,1,1700,12/06/19 11:00,"95 2nd St, Austin, TX 73301" +311402,AA Batteries (4-pack),1,3.84,12/13/19 13:39,"390 Madison St, Boston, MA 02215" +311402,AAA Batteries (4-pack),1,2.99,12/13/19 13:39,"390 Madison St, Boston, MA 02215" +311403,ThinkPad Laptop,1,999.99,12/25/19 16:31,"880 Walnut St, Austin, TX 73301" +311404,AAA Batteries (4-pack),2,2.99,12/16/19 13:02,"71 13th St, Los Angeles, CA 90001" +311405,Wired Headphones,1,11.99,12/12/19 15:56,"509 Church St, Dallas, TX 75001" +311406,Vareebadd Phone,1,400,12/12/19 21:39,"251 Park St, Atlanta, GA 30301" +311407,AA Batteries (4-pack),1,3.84,12/26/19 10:35,"466 Forest St, Portland, OR 97035" +311408,Bose SoundSport Headphones,1,99.99,12/18/19 14:04,"309 Elm St, Dallas, TX 75001" +311409,Bose SoundSport Headphones,1,99.99,12/17/19 13:34,"289 Wilson St, San Francisco, CA 94016" +311410,Apple Airpods Headphones,1,150,12/26/19 16:30,"29 Lake St, Boston, MA 02215" +311411,Lightning Charging Cable,1,14.95,12/22/19 19:20,"143 Forest St, San Francisco, CA 94016" +311412,AAA Batteries (4-pack),1,2.99,12/04/19 09:55,"445 Pine St, Los Angeles, CA 90001" +311413,Lightning Charging Cable,1,14.95,12/12/19 00:41,"714 Lake St, San Francisco, CA 94016" +311414,iPhone,1,700,12/29/19 11:31,"616 Park St, Atlanta, GA 30301" +311415,iPhone,1,700,12/01/19 21:14,"353 Highland St, Seattle, WA 98101" +311416,AAA Batteries (4-pack),1,2.99,12/04/19 12:19,"754 4th St, Los Angeles, CA 90001" +311417,Lightning Charging Cable,1,14.95,12/14/19 16:59,"568 Madison St, San Francisco, CA 94016" +311418,Lightning Charging Cable,1,14.95,12/03/19 18:19,"853 6th St, Portland, ME 04101" +311419,Bose SoundSport Headphones,1,99.99,12/01/19 18:31,"30 Spruce St, Boston, MA 02215" +311420,Lightning Charging Cable,1,14.95,12/18/19 12:52,"833 South St, Atlanta, GA 30301" +311421,ThinkPad Laptop,1,999.99,12/07/19 01:04,"425 Lake St, Dallas, TX 75001" +311422,AAA Batteries (4-pack),1,2.99,12/01/19 13:58,"148 Cedar St, Seattle, WA 98101" +311423,AAA Batteries (4-pack),3,2.99,12/11/19 10:17,"67 Ridge St, New York City, NY 10001" +311424,AAA Batteries (4-pack),1,2.99,12/29/19 17:59,"665 Lake St, Seattle, WA 98101" +311425,Apple Airpods Headphones,1,150,12/06/19 09:06,"411 4th St, New York City, NY 10001" +311426,USB-C Charging Cable,1,11.95,12/13/19 11:16,"2 South St, Austin, TX 73301" +311427,Google Phone,1,600,12/28/19 14:55,"218 Lakeview St, San Francisco, CA 94016" +311428,Bose SoundSport Headphones,1,99.99,12/22/19 05:53,"632 Maple St, New York City, NY 10001" +311429,USB-C Charging Cable,1,11.95,12/19/19 12:48,"390 1st St, Los Angeles, CA 90001" +311430,Lightning Charging Cable,1,14.95,12/07/19 12:20,"512 Cherry St, Dallas, TX 75001" +311431,AAA Batteries (4-pack),2,2.99,12/09/19 02:51,"435 River St, Los Angeles, CA 90001" +311432,USB-C Charging Cable,1,11.95,12/04/19 07:34,"19 Johnson St, Boston, MA 02215" +311433,USB-C Charging Cable,1,11.95,12/12/19 20:35,"148 Park St, Atlanta, GA 30301" +311434,Wired Headphones,1,11.99,12/20/19 17:53,"210 Elm St, San Francisco, CA 94016" +311435,34in Ultrawide Monitor,1,379.99,12/02/19 20:40,"708 Park St, Boston, MA 02215" +311436,AAA Batteries (4-pack),1,2.99,12/28/19 19:28,"374 6th St, Atlanta, GA 30301" +311437,27in FHD Monitor,1,149.99,12/05/19 16:43,"890 Center St, San Francisco, CA 94016" +311438,Bose SoundSport Headphones,1,99.99,12/09/19 07:29,"258 Willow St, Dallas, TX 75001" +311439,Lightning Charging Cable,1,14.95,12/03/19 00:31,"248 Spruce St, Seattle, WA 98101" +311440,AAA Batteries (4-pack),1,2.99,12/03/19 23:06,"489 Lincoln St, San Francisco, CA 94016" +311441,34in Ultrawide Monitor,1,379.99,12/07/19 18:04,"521 14th St, San Francisco, CA 94016" +311442,Vareebadd Phone,1,400,12/01/19 19:20,"429 Hill St, New York City, NY 10001" +311443,Apple Airpods Headphones,1,150,12/21/19 10:47,"192 Johnson St, Portland, OR 97035" +311444,AA Batteries (4-pack),2,3.84,12/07/19 07:26,"281 River St, Portland, ME 04101" +311445,AAA Batteries (4-pack),3,2.99,12/02/19 11:37,"675 River St, Dallas, TX 75001" +311446,USB-C Charging Cable,1,11.95,12/05/19 10:42,"665 Lincoln St, Atlanta, GA 30301" +311447,Bose SoundSport Headphones,1,99.99,12/01/19 13:49,"797 Dogwood St, San Francisco, CA 94016" +311448,Wired Headphones,1,11.99,12/11/19 21:50,"864 Jackson St, Boston, MA 02215" +311449,Lightning Charging Cable,1,14.95,12/04/19 17:34,"103 Hickory St, Dallas, TX 75001" +311450,27in FHD Monitor,1,149.99,12/11/19 19:39,"620 Jackson St, Los Angeles, CA 90001" +311450,AAA Batteries (4-pack),1,2.99,12/11/19 19:39,"620 Jackson St, Los Angeles, CA 90001" +311451,Wired Headphones,1,11.99,12/14/19 14:22,"286 Highland St, Boston, MA 02215" +311452,AA Batteries (4-pack),1,3.84,12/10/19 13:51,"881 Cherry St, San Francisco, CA 94016" +311453,27in 4K Gaming Monitor,1,389.99,12/27/19 17:31,"474 South St, Atlanta, GA 30301" +311454,Wired Headphones,1,11.99,12/09/19 00:24,"660 West St, New York City, NY 10001" +311455,Flatscreen TV,1,300,12/04/19 21:04,"796 Dogwood St, Seattle, WA 98101" +311456,AA Batteries (4-pack),1,3.84,12/05/19 19:14,"611 West St, Austin, TX 73301" +311457,AAA Batteries (4-pack),1,2.99,12/20/19 06:44,"491 Sunset St, Dallas, TX 75001" +311458,Flatscreen TV,1,300,12/26/19 19:20,"513 Main St, Los Angeles, CA 90001" +311459,27in FHD Monitor,1,149.99,12/01/19 22:06,"555 Lincoln St, Seattle, WA 98101" +311460,USB-C Charging Cable,1,11.95,12/15/19 13:07,"108 14th St, San Francisco, CA 94016" +311461,AAA Batteries (4-pack),1,2.99,12/30/19 19:05,"585 Chestnut St, Los Angeles, CA 90001" +311462,Lightning Charging Cable,1,14.95,12/16/19 14:33,"702 Willow St, New York City, NY 10001" +311463,Lightning Charging Cable,1,14.95,12/23/19 18:24,"962 Sunset St, New York City, NY 10001" +311464,Google Phone,1,600,12/12/19 00:02,"833 14th St, New York City, NY 10001" +311465,Bose SoundSport Headphones,1,99.99,12/21/19 16:10,"720 Jefferson St, San Francisco, CA 94016" +311466,Wired Headphones,1,11.99,12/31/19 17:25,"462 North St, Dallas, TX 75001" +311466,ThinkPad Laptop,1,999.99,12/31/19 17:25,"462 North St, Dallas, TX 75001" +311467,AAA Batteries (4-pack),1,2.99,12/19/19 12:43,"143 Church St, Dallas, TX 75001" +311468,Wired Headphones,3,11.99,12/22/19 10:45,"505 Highland St, Atlanta, GA 30301" +311469,Bose SoundSport Headphones,1,99.99,12/02/19 16:22,"854 Chestnut St, Austin, TX 73301" +311470,AAA Batteries (4-pack),1,2.99,12/17/19 05:45,"586 Willow St, Los Angeles, CA 90001" +311471,iPhone,1,700,12/02/19 10:58,"566 Walnut St, Dallas, TX 75001" +311472,Flatscreen TV,1,300,12/31/19 11:44,"739 Jefferson St, Atlanta, GA 30301" +311473,Wired Headphones,2,11.99,12/17/19 09:20,"975 Jefferson St, Los Angeles, CA 90001" +311474,AAA Batteries (4-pack),2,2.99,12/26/19 11:54,"146 Lake St, Boston, MA 02215" +311475,Google Phone,1,600,12/14/19 10:32,"579 9th St, Austin, TX 73301" +311476,USB-C Charging Cable,1,11.95,12/23/19 10:50,"675 Chestnut St, New York City, NY 10001" +311477,Lightning Charging Cable,2,14.95,12/08/19 23:16,"705 5th St, Austin, TX 73301" +311478,Vareebadd Phone,1,400,01/01/20 00:55,"124 Forest St, San Francisco, CA 94016" +311479,LG Dryer,1,600.0,12/30/19 20:19,"568 Jackson St, Atlanta, GA 30301" +311480,27in 4K Gaming Monitor,1,389.99,12/30/19 21:39,"109 North St, Boston, MA 02215" +311481,Flatscreen TV,1,300,12/29/19 09:51,"217 South St, Austin, TX 73301" +311482,Google Phone,1,600,12/10/19 14:03,"839 Jackson St, San Francisco, CA 94016" +311483,USB-C Charging Cable,2,11.95,12/26/19 16:30,"251 Park St, Dallas, TX 75001" +311484,Flatscreen TV,1,300,12/18/19 17:37,"520 Spruce St, New York City, NY 10001" +311485,Bose SoundSport Headphones,1,99.99,12/07/19 22:16,"71 Jackson St, Portland, OR 97035" +311486,iPhone,1,700,12/29/19 22:01,"217 Hill St, New York City, NY 10001" +311487,34in Ultrawide Monitor,1,379.99,12/23/19 08:54,"371 River St, Portland, OR 97035" +311488,Apple Airpods Headphones,1,150,12/17/19 17:53,"888 11th St, New York City, NY 10001" +311489,Vareebadd Phone,1,400,12/14/19 18:28,"356 Jefferson St, Seattle, WA 98101" +311490,Bose SoundSport Headphones,1,99.99,12/14/19 19:35,"22 Maple St, San Francisco, CA 94016" +311491,AA Batteries (4-pack),1,3.84,12/14/19 20:16,"484 Highland St, San Francisco, CA 94016" +311492,34in Ultrawide Monitor,1,379.99,12/06/19 18:44,"56 Maple St, San Francisco, CA 94016" +311493,20in Monitor,1,109.99,12/31/19 10:46,"798 Maple St, Austin, TX 73301" +311494,20in Monitor,1,109.99,12/24/19 07:46,"576 South St, Boston, MA 02215" +311495,Wired Headphones,1,11.99,12/30/19 12:31,"71 9th St, New York City, NY 10001" +311496,AAA Batteries (4-pack),1,2.99,12/13/19 17:40,"675 4th St, Los Angeles, CA 90001" +311497,Google Phone,1,600,12/13/19 18:03,"176 Maple St, Boston, MA 02215" +311498,AAA Batteries (4-pack),1,2.99,12/10/19 12:41,"138 4th St, Los Angeles, CA 90001" +311499,AAA Batteries (4-pack),1,2.99,12/19/19 21:38,"471 Jefferson St, Seattle, WA 98101" +311500,Wired Headphones,1,11.99,12/11/19 23:57,"380 Adams St, Los Angeles, CA 90001" +311501,Apple Airpods Headphones,1,150,12/04/19 11:42,"496 10th St, San Francisco, CA 94016" +311502,Macbook Pro Laptop,1,1700,12/12/19 18:33,"901 9th St, Boston, MA 02215" +311503,27in FHD Monitor,1,149.99,12/08/19 18:22,"952 Elm St, Atlanta, GA 30301" +311504,34in Ultrawide Monitor,1,379.99,12/13/19 22:02,"427 2nd St, New York City, NY 10001" +311505,Apple Airpods Headphones,1,150,12/19/19 14:10,"418 Dogwood St, Los Angeles, CA 90001" +311506,ThinkPad Laptop,1,999.99,12/05/19 20:21,"568 Walnut St, New York City, NY 10001" +311506,AA Batteries (4-pack),1,3.84,12/05/19 20:21,"568 Walnut St, New York City, NY 10001" +311507,AAA Batteries (4-pack),1,2.99,12/08/19 20:28,"280 Hill St, San Francisco, CA 94016" +311508,USB-C Charging Cable,1,11.95,12/13/19 18:20,"496 1st St, New York City, NY 10001" +311509,AA Batteries (4-pack),1,3.84,12/16/19 18:47,"623 Forest St, Boston, MA 02215" +311510,Wired Headphones,1,11.99,12/28/19 06:32,"989 Spruce St, Boston, MA 02215" +311511,Lightning Charging Cable,1,14.95,12/09/19 21:24,"306 1st St, Los Angeles, CA 90001" +311512,Apple Airpods Headphones,1,150,12/18/19 14:30,"464 Chestnut St, Los Angeles, CA 90001" +311513,USB-C Charging Cable,1,11.95,12/23/19 17:12,"478 10th St, Atlanta, GA 30301" +311514,Wired Headphones,1,11.99,12/18/19 23:07,"914 Meadow St, Portland, OR 97035" +311515,Vareebadd Phone,1,400,12/21/19 21:44,"956 Lakeview St, New York City, NY 10001" +311516,Apple Airpods Headphones,1,150,12/02/19 19:21,"606 Madison St, San Francisco, CA 94016" +311517,iPhone,1,700,12/17/19 09:20,"865 Main St, San Francisco, CA 94016" +311518,Apple Airpods Headphones,1,150,12/12/19 13:37,"359 Johnson St, Los Angeles, CA 90001" +311519,AA Batteries (4-pack),1,3.84,12/31/19 22:42,"422 10th St, Los Angeles, CA 90001" +311520,27in FHD Monitor,1,149.99,12/02/19 19:31,"689 Elm St, San Francisco, CA 94016" +311521,Lightning Charging Cable,1,14.95,12/29/19 13:23,"65 Maple St, Los Angeles, CA 90001" +311522,Lightning Charging Cable,1,14.95,12/13/19 20:27,"803 9th St, Los Angeles, CA 90001" +311523,Lightning Charging Cable,1,14.95,12/17/19 08:46,"1 Spruce St, Boston, MA 02215" +311524,Wired Headphones,1,11.99,12/03/19 16:49,"141 9th St, New York City, NY 10001" +311525,Bose SoundSport Headphones,1,99.99,12/06/19 19:00,"483 Pine St, San Francisco, CA 94016" +311526,Macbook Pro Laptop,1,1700,12/20/19 08:30,"87 Hickory St, Portland, ME 04101" +311527,Apple Airpods Headphones,1,150,12/10/19 22:08,"43 Jefferson St, Seattle, WA 98101" +311528,27in FHD Monitor,1,149.99,12/24/19 09:24,"988 Pine St, Boston, MA 02215" +311529,AA Batteries (4-pack),3,3.84,12/30/19 18:45,"900 14th St, San Francisco, CA 94016" +311530,AA Batteries (4-pack),2,3.84,12/01/19 17:11,"469 6th St, San Francisco, CA 94016" +311531,Google Phone,1,600,12/13/19 17:53,"402 Hickory St, Dallas, TX 75001" +311531,Bose SoundSport Headphones,1,99.99,12/13/19 17:53,"402 Hickory St, Dallas, TX 75001" +311532,USB-C Charging Cable,1,11.95,12/05/19 09:48,"922 14th St, Seattle, WA 98101" +311533,Google Phone,1,600,12/31/19 12:40,"96 Hickory St, New York City, NY 10001" +311534,27in 4K Gaming Monitor,1,389.99,12/28/19 13:54,"824 10th St, Austin, TX 73301" +311535,27in 4K Gaming Monitor,1,389.99,12/10/19 10:48,"452 13th St, Boston, MA 02215" +311536,Vareebadd Phone,1,400,12/17/19 10:44,"374 Jefferson St, New York City, NY 10001" +311537,Macbook Pro Laptop,1,1700,12/25/19 11:47,"609 Dogwood St, Dallas, TX 75001" +311538,Wired Headphones,1,11.99,12/09/19 00:43,"519 1st St, San Francisco, CA 94016" +311539,AAA Batteries (4-pack),1,2.99,12/05/19 20:10,"944 Park St, San Francisco, CA 94016" +311540,27in FHD Monitor,1,149.99,12/15/19 19:05,"258 Church St, New York City, NY 10001" +311541,20in Monitor,1,109.99,12/04/19 19:01,"692 10th St, Los Angeles, CA 90001" +311542,Lightning Charging Cable,1,14.95,12/17/19 10:19,"99 5th St, Los Angeles, CA 90001" +311543,Wired Headphones,3,11.99,12/03/19 21:16,"653 10th St, Atlanta, GA 30301" +311544,Lightning Charging Cable,1,14.95,12/18/19 11:31,"94 6th St, New York City, NY 10001" +311545,AAA Batteries (4-pack),1,2.99,12/22/19 14:12,"677 Sunset St, Boston, MA 02215" +311546,USB-C Charging Cable,1,11.95,12/20/19 22:15,"19 Maple St, Los Angeles, CA 90001" +311547,27in 4K Gaming Monitor,1,389.99,12/07/19 22:36,"44 Jefferson St, San Francisco, CA 94016" +311548,USB-C Charging Cable,1,11.95,12/31/19 13:52,"806 Chestnut St, Los Angeles, CA 90001" +311549,iPhone,1,700,12/25/19 02:36,"736 14th St, Boston, MA 02215" +311550,AA Batteries (4-pack),1,3.84,12/16/19 11:58,"507 North St, Los Angeles, CA 90001" +311551,34in Ultrawide Monitor,1,379.99,12/23/19 23:37,"285 Wilson St, San Francisco, CA 94016" +311552,USB-C Charging Cable,1,11.95,12/29/19 13:07,"386 Dogwood St, Austin, TX 73301" +311553,Wired Headphones,1,11.99,12/06/19 18:22,"6 Elm St, Atlanta, GA 30301" +311554,iPhone,1,700,12/01/19 15:43,"353 10th St, Dallas, TX 75001" +311554,Apple Airpods Headphones,1,150,12/01/19 15:43,"353 10th St, Dallas, TX 75001" +311555,34in Ultrawide Monitor,1,379.99,12/03/19 08:13,"280 Lakeview St, Austin, TX 73301" +311556,Wired Headphones,1,11.99,12/15/19 14:45,"970 Lincoln St, San Francisco, CA 94016" +311557,Bose SoundSport Headphones,1,99.99,12/31/19 21:45,"201 Spruce St, Los Angeles, CA 90001" +311558,USB-C Charging Cable,1,11.95,12/01/19 10:33,"903 Cedar St, Portland, OR 97035" +311559,AAA Batteries (4-pack),1,2.99,12/02/19 18:08,"309 2nd St, Los Angeles, CA 90001" +311560,Bose SoundSport Headphones,1,99.99,12/04/19 15:26,"333 Hickory St, Boston, MA 02215" +311561,AAA Batteries (4-pack),3,2.99,12/16/19 11:57,"963 Jefferson St, San Francisco, CA 94016" +311562,AAA Batteries (4-pack),1,2.99,12/09/19 18:05,"132 Church St, San Francisco, CA 94016" +311563,AA Batteries (4-pack),2,3.84,12/20/19 07:44,"509 Spruce St, Atlanta, GA 30301" +311564,Lightning Charging Cable,1,14.95,12/04/19 17:33,"393 North St, San Francisco, CA 94016" +311565,Wired Headphones,1,11.99,12/13/19 17:20,"23 Church St, San Francisco, CA 94016" +311566,Lightning Charging Cable,2,14.95,12/30/19 15:18,"864 13th St, Dallas, TX 75001" +311567,Lightning Charging Cable,1,14.95,12/21/19 20:28,"683 5th St, Portland, ME 04101" +311568,Lightning Charging Cable,1,14.95,12/07/19 09:33,"515 8th St, Seattle, WA 98101" +311569,Google Phone,1,600,12/29/19 16:37,"368 12th St, San Francisco, CA 94016" +311570,USB-C Charging Cable,1,11.95,12/11/19 19:18,"118 Maple St, Atlanta, GA 30301" +311571,Bose SoundSport Headphones,1,99.99,12/07/19 20:59,"460 Church St, Los Angeles, CA 90001" +311572,Apple Airpods Headphones,1,150,12/09/19 21:11,"168 Wilson St, San Francisco, CA 94016" +311573,AA Batteries (4-pack),1,3.84,12/18/19 14:54,"385 West St, Los Angeles, CA 90001" +311574,Wired Headphones,1,11.99,12/15/19 15:59,"328 Walnut St, Los Angeles, CA 90001" +311575,USB-C Charging Cable,1,11.95,12/12/19 16:10,"150 Washington St, San Francisco, CA 94016" +311576,ThinkPad Laptop,1,999.99,12/11/19 06:46,"586 Church St, Atlanta, GA 30301" +311577,Lightning Charging Cable,1,14.95,12/05/19 17:28,"73 River St, San Francisco, CA 94016" +311578,iPhone,1,700,12/21/19 17:17,"308 River St, Dallas, TX 75001" +311579,USB-C Charging Cable,1,11.95,12/31/19 01:38,"230 Ridge St, Atlanta, GA 30301" +311580,Bose SoundSport Headphones,1,99.99,12/02/19 14:59,"600 Lake St, San Francisco, CA 94016" +311581,AAA Batteries (4-pack),2,2.99,12/26/19 11:12,"608 Johnson St, San Francisco, CA 94016" +311582,27in FHD Monitor,1,149.99,12/27/19 14:22,"104 Highland St, Portland, OR 97035" +311583,LG Dryer,1,600.0,12/20/19 09:50,"127 13th St, Portland, ME 04101" +311584,34in Ultrawide Monitor,1,379.99,12/16/19 11:48,"409 1st St, Los Angeles, CA 90001" +311585,AAA Batteries (4-pack),2,2.99,12/15/19 09:21,"700 North St, Seattle, WA 98101" +311586,AA Batteries (4-pack),1,3.84,12/16/19 09:10,"975 Church St, Austin, TX 73301" +311587,27in 4K Gaming Monitor,1,389.99,12/27/19 14:51,"506 Ridge St, Austin, TX 73301" +311588,AAA Batteries (4-pack),1,2.99,12/04/19 14:08,"576 Sunset St, Austin, TX 73301" +311589,Wired Headphones,1,11.99,12/02/19 23:21,"685 Main St, Los Angeles, CA 90001" +311590,Wired Headphones,1,11.99,12/18/19 21:25,"469 Madison St, Seattle, WA 98101" +311591,AA Batteries (4-pack),1,3.84,12/07/19 17:42,"486 5th St, San Francisco, CA 94016" +311592,AA Batteries (4-pack),2,3.84,12/05/19 17:16,"286 Lincoln St, Seattle, WA 98101" +311593,Vareebadd Phone,1,400,12/01/19 15:20,"830 Maple St, San Francisco, CA 94016" +311594,AAA Batteries (4-pack),1,2.99,12/01/19 22:16,"109 West St, Dallas, TX 75001" +311595,Google Phone,1,600,12/26/19 13:54,"899 Forest St, San Francisco, CA 94016" +311596,Wired Headphones,1,11.99,12/07/19 09:44,"994 Lincoln St, San Francisco, CA 94016" +311597,Lightning Charging Cable,1,14.95,12/03/19 11:33,"927 River St, Portland, OR 97035" +311598,USB-C Charging Cable,1,11.95,12/26/19 10:08,"492 6th St, Boston, MA 02215" +311599,Wired Headphones,1,11.99,12/23/19 23:10,"487 Wilson St, Atlanta, GA 30301" +311600,34in Ultrawide Monitor,1,379.99,12/19/19 20:46,"446 12th St, Atlanta, GA 30301" +311601,USB-C Charging Cable,1,11.95,12/26/19 23:42,"258 Adams St, Austin, TX 73301" +311602,27in 4K Gaming Monitor,1,389.99,12/27/19 06:13,"528 5th St, Dallas, TX 75001" +311603,27in FHD Monitor,1,149.99,12/07/19 12:23,"336 Sunset St, Los Angeles, CA 90001" +311604,Wired Headphones,1,11.99,12/23/19 23:56,"12 Forest St, Boston, MA 02215" +311605,27in 4K Gaming Monitor,1,389.99,12/21/19 10:28,"763 West St, New York City, NY 10001" +311606,Apple Airpods Headphones,1,150,12/26/19 19:00,"18 Main St, Seattle, WA 98101" +311607,Flatscreen TV,1,300,12/22/19 22:43,"50 Elm St, Portland, OR 97035" +311608,Apple Airpods Headphones,1,150,12/26/19 16:02,"563 10th St, San Francisco, CA 94016" +311609,ThinkPad Laptop,1,999.99,12/21/19 18:57,"509 5th St, New York City, NY 10001" +311610,Apple Airpods Headphones,1,150,12/13/19 10:16,"279 Jefferson St, Seattle, WA 98101" +311611,USB-C Charging Cable,1,11.95,12/20/19 06:42,"855 Main St, Dallas, TX 75001" +311612,ThinkPad Laptop,1,999.99,12/30/19 20:04,"855 11th St, San Francisco, CA 94016" +311613,27in FHD Monitor,1,149.99,12/12/19 15:26,"315 Wilson St, Seattle, WA 98101" +311614,Lightning Charging Cable,1,14.95,12/18/19 16:37,"425 North St, Boston, MA 02215" +311615,AAA Batteries (4-pack),1,2.99,12/03/19 19:39,"216 Ridge St, Dallas, TX 75001" +311616,Macbook Pro Laptop,1,1700,12/10/19 19:24,"976 Washington St, San Francisco, CA 94016" +311617,AA Batteries (4-pack),1,3.84,12/12/19 23:44,"934 5th St, Boston, MA 02215" +311618,Macbook Pro Laptop,1,1700,12/15/19 14:14,"844 Center St, Boston, MA 02215" +311619,Google Phone,1,600,12/08/19 13:39,"214 Center St, New York City, NY 10001" +311619,USB-C Charging Cable,2,11.95,12/08/19 13:39,"214 Center St, New York City, NY 10001" +311620,27in FHD Monitor,1,149.99,12/09/19 11:06,"142 4th St, Atlanta, GA 30301" +311621,AA Batteries (4-pack),1,3.84,12/29/19 17:26,"93 4th St, Seattle, WA 98101" +311622,ThinkPad Laptop,1,999.99,12/14/19 10:50,"376 2nd St, Atlanta, GA 30301" +311623,USB-C Charging Cable,1,11.95,12/14/19 15:16,"50 Walnut St, Los Angeles, CA 90001" +311624,Wired Headphones,2,11.99,12/11/19 21:32,"142 Adams St, Dallas, TX 75001" +311625,Lightning Charging Cable,1,14.95,12/31/19 14:41,"460 Highland St, New York City, NY 10001" +311626,27in 4K Gaming Monitor,1,389.99,12/02/19 16:10,"405 Park St, Portland, OR 97035" +311627,27in FHD Monitor,1,149.99,12/30/19 23:46,"553 1st St, San Francisco, CA 94016" +311628,Wired Headphones,1,11.99,12/02/19 17:41,"308 Maple St, Seattle, WA 98101" +311629,USB-C Charging Cable,1,11.95,12/05/19 19:00,"309 Washington St, Los Angeles, CA 90001" +311630,Wired Headphones,1,11.99,12/02/19 10:44,"894 8th St, New York City, NY 10001" +311631,AA Batteries (4-pack),1,3.84,12/14/19 01:18,"840 Forest St, New York City, NY 10001" +311632,Lightning Charging Cable,1,14.95,12/30/19 19:39,"293 Forest St, Los Angeles, CA 90001" +311633,iPhone,1,700,12/11/19 08:46,"716 River St, San Francisco, CA 94016" +311633,Apple Airpods Headphones,1,150,12/11/19 08:46,"716 River St, San Francisco, CA 94016" +311634,Bose SoundSport Headphones,1,99.99,12/20/19 18:52,"63 12th St, Austin, TX 73301" +311635,AA Batteries (4-pack),1,3.84,12/31/19 10:40,"160 Johnson St, New York City, NY 10001" +311636,USB-C Charging Cable,1,11.95,12/04/19 17:21,"908 5th St, Seattle, WA 98101" +311637,Wired Headphones,1,11.99,12/12/19 14:56,"814 Hill St, Seattle, WA 98101" +311638,Lightning Charging Cable,1,14.95,12/11/19 09:12,"752 Hickory St, Dallas, TX 75001" +311639,Wired Headphones,1,11.99,12/07/19 07:23,"585 South St, Portland, OR 97035" +311640,Macbook Pro Laptop,1,1700,12/19/19 20:02,"217 Adams St, San Francisco, CA 94016" +311641,20in Monitor,1,109.99,12/31/19 12:38,"342 8th St, New York City, NY 10001" +311642,AAA Batteries (4-pack),1,2.99,12/14/19 22:28,"29 12th St, Dallas, TX 75001" +311643,AAA Batteries (4-pack),1,2.99,12/06/19 08:04,"803 Cherry St, New York City, NY 10001" +311644,Flatscreen TV,1,300,12/06/19 12:38,"632 Wilson St, Portland, OR 97035" +311645,USB-C Charging Cable,1,11.95,12/08/19 14:32,"698 Hill St, Boston, MA 02215" +311646,Wired Headphones,1,11.99,12/18/19 14:48,"118 13th St, Portland, OR 97035" +311647,Wired Headphones,1,11.99,12/17/19 21:06,"213 4th St, Los Angeles, CA 90001" +311648,AAA Batteries (4-pack),1,2.99,12/18/19 13:36,"613 Ridge St, Boston, MA 02215" +311649,AAA Batteries (4-pack),1,2.99,12/29/19 21:02,"511 14th St, Boston, MA 02215" +311650,Vareebadd Phone,1,400,12/28/19 20:41,"21 Maple St, San Francisco, CA 94016" +311651,Lightning Charging Cable,2,14.95,12/11/19 17:40,"563 Hickory St, Los Angeles, CA 90001" +311652,USB-C Charging Cable,1,11.95,12/03/19 04:52,"905 Center St, Dallas, TX 75001" +311653,Macbook Pro Laptop,1,1700,12/26/19 05:14,"670 Hickory St, Portland, OR 97035" +311654,USB-C Charging Cable,2,11.95,12/29/19 21:46,"686 Jackson St, San Francisco, CA 94016" +311655,AAA Batteries (4-pack),1,2.99,12/08/19 12:44,"685 4th St, Los Angeles, CA 90001" +311656,34in Ultrawide Monitor,1,379.99,12/07/19 10:47,"424 Jefferson St, San Francisco, CA 94016" +311657,USB-C Charging Cable,1,11.95,12/19/19 14:27,"750 Walnut St, Seattle, WA 98101" +311658,USB-C Charging Cable,1,11.95,12/09/19 07:17,"637 Church St, Dallas, TX 75001" +311659,34in Ultrawide Monitor,1,379.99,12/26/19 00:34,"623 North St, Austin, TX 73301" +311660,AA Batteries (4-pack),2,3.84,12/25/19 13:54,"837 Meadow St, Dallas, TX 75001" +311661,27in FHD Monitor,1,149.99,12/13/19 17:59,"309 Chestnut St, Seattle, WA 98101" +311662,iPhone,1,700,12/16/19 15:25,"943 Cherry St, San Francisco, CA 94016" +311663,USB-C Charging Cable,1,11.95,12/05/19 16:15,"74 Hill St, New York City, NY 10001" +311664,USB-C Charging Cable,1,11.95,12/04/19 22:05,"241 South St, Atlanta, GA 30301" +311665,AAA Batteries (4-pack),2,2.99,12/29/19 10:26,"747 Church St, Austin, TX 73301" +311666,Apple Airpods Headphones,1,150,12/28/19 12:19,"124 Walnut St, San Francisco, CA 94016" +311667,Bose SoundSport Headphones,1,99.99,12/08/19 23:13,"183 14th St, Austin, TX 73301" +311668,Bose SoundSport Headphones,1,99.99,12/14/19 14:29,"71 Meadow St, Portland, OR 97035" +311669,20in Monitor,1,109.99,12/31/19 13:19,"806 Maple St, Seattle, WA 98101" +311670,Bose SoundSport Headphones,1,99.99,12/28/19 17:15,"363 Highland St, Boston, MA 02215" +311671,Apple Airpods Headphones,1,150,12/27/19 13:15,"310 Willow St, Boston, MA 02215" +311672,USB-C Charging Cable,1,11.95,12/04/19 12:00,"429 Sunset St, Atlanta, GA 30301" +311673,Bose SoundSport Headphones,1,99.99,12/13/19 11:33,"925 Washington St, Dallas, TX 75001" +311673,Wired Headphones,1,11.99,12/13/19 11:33,"925 Washington St, Dallas, TX 75001" +311674,AA Batteries (4-pack),2,3.84,12/27/19 21:07,"932 Highland St, Los Angeles, CA 90001" +311675,Apple Airpods Headphones,1,150,12/14/19 20:38,"389 Spruce St, San Francisco, CA 94016" +311676,Lightning Charging Cable,1,14.95,12/09/19 17:32,"623 Lincoln St, Atlanta, GA 30301" +311677,AAA Batteries (4-pack),2,2.99,12/19/19 17:13,"291 8th St, San Francisco, CA 94016" +311678,Wired Headphones,1,11.99,12/04/19 21:07,"943 Hickory St, New York City, NY 10001" +311679,34in Ultrawide Monitor,1,379.99,12/18/19 15:56,"730 Willow St, Austin, TX 73301" +311680,USB-C Charging Cable,1,11.95,12/16/19 11:47,"789 5th St, Seattle, WA 98101" +311681,AA Batteries (4-pack),1,3.84,12/10/19 22:05,"157 12th St, San Francisco, CA 94016" +311682,Lightning Charging Cable,1,14.95,12/26/19 21:20,"144 11th St, San Francisco, CA 94016" +311683,Macbook Pro Laptop,1,1700,12/30/19 12:42,"829 Hill St, Los Angeles, CA 90001" +311684,27in FHD Monitor,1,149.99,12/03/19 19:22,"225 Main St, New York City, NY 10001" +311685,USB-C Charging Cable,1,11.95,12/26/19 09:31,"558 Pine St, San Francisco, CA 94016" +311686,LG Dryer,1,600.0,12/03/19 18:29,"434 6th St, Los Angeles, CA 90001" +311687,iPhone,1,700,12/17/19 12:04,"192 Forest St, New York City, NY 10001" +311688,27in FHD Monitor,1,149.99,12/03/19 10:05,"204 8th St, San Francisco, CA 94016" +311689,AAA Batteries (4-pack),2,2.99,12/04/19 14:47,"625 North St, Los Angeles, CA 90001" +311690,Wired Headphones,1,11.99,12/14/19 13:09,"597 Ridge St, Boston, MA 02215" +311691,Bose SoundSport Headphones,1,99.99,12/14/19 17:41,"465 Chestnut St, New York City, NY 10001" +311692,USB-C Charging Cable,1,11.95,12/22/19 19:51,"140 Lakeview St, Boston, MA 02215" +311693,AA Batteries (4-pack),1,3.84,12/03/19 20:54,"334 Willow St, San Francisco, CA 94016" +311694,27in FHD Monitor,1,149.99,12/14/19 20:56,"651 South St, Seattle, WA 98101" +311695,AA Batteries (4-pack),1,3.84,12/26/19 16:54,"397 9th St, San Francisco, CA 94016" +311696,Lightning Charging Cable,1,14.95,12/04/19 20:07,"665 Highland St, Los Angeles, CA 90001" +311697,Macbook Pro Laptop,1,1700,12/16/19 17:38,"322 River St, Los Angeles, CA 90001" +311698,Flatscreen TV,1,300,12/21/19 22:19,"375 Ridge St, San Francisco, CA 94016" +311699,Wired Headphones,1,11.99,12/15/19 10:16,"325 Hickory St, Los Angeles, CA 90001" +311700,Wired Headphones,1,11.99,12/18/19 20:20,"480 Willow St, Los Angeles, CA 90001" +311701,Flatscreen TV,1,300,12/16/19 21:42,"130 9th St, Dallas, TX 75001" +311702,USB-C Charging Cable,1,11.95,12/09/19 20:55,"74 Cherry St, San Francisco, CA 94016" +311703,Bose SoundSport Headphones,1,99.99,12/26/19 12:58,"873 9th St, New York City, NY 10001" +311704,Lightning Charging Cable,1,14.95,12/24/19 19:14,"336 Maple St, New York City, NY 10001" +311705,Apple Airpods Headphones,1,150,12/17/19 11:26,"820 Highland St, San Francisco, CA 94016" +311706,AA Batteries (4-pack),1,3.84,12/25/19 16:30,"170 Walnut St, New York City, NY 10001" +311707,Google Phone,1,600,12/30/19 12:10,"761 Johnson St, New York City, NY 10001" +311707,USB-C Charging Cable,1,11.95,12/30/19 12:10,"761 Johnson St, New York City, NY 10001" +311708,Flatscreen TV,1,300,12/18/19 12:06,"52 Walnut St, Dallas, TX 75001" +311709,AAA Batteries (4-pack),1,2.99,12/08/19 17:48,"698 Center St, San Francisco, CA 94016" +311710,USB-C Charging Cable,1,11.95,12/31/19 21:19,"454 Jackson St, San Francisco, CA 94016" +311711,AAA Batteries (4-pack),2,2.99,12/07/19 22:58,"176 Elm St, San Francisco, CA 94016" +311712,27in FHD Monitor,1,149.99,12/02/19 00:04,"903 Park St, Los Angeles, CA 90001" +311713,Wired Headphones,1,11.99,12/22/19 16:14,"253 1st St, Boston, MA 02215" +311714,Wired Headphones,1,11.99,12/17/19 17:56,"487 Lake St, Dallas, TX 75001" +311715,Wired Headphones,1,11.99,12/22/19 14:43,"471 2nd St, Boston, MA 02215" +311716,Apple Airpods Headphones,1,150,12/22/19 18:43,"938 Maple St, Boston, MA 02215" +311717,Macbook Pro Laptop,1,1700,12/31/19 10:54,"432 9th St, Los Angeles, CA 90001" +311718,Bose SoundSport Headphones,1,99.99,12/10/19 06:49,"773 Elm St, Atlanta, GA 30301" +311719,iPhone,1,700,12/11/19 11:56,"565 Main St, San Francisco, CA 94016" +311720,AAA Batteries (4-pack),2,2.99,12/14/19 14:06,"802 West St, San Francisco, CA 94016" +311721,Apple Airpods Headphones,1,150,12/15/19 17:16,"245 11th St, New York City, NY 10001" +311722,USB-C Charging Cable,1,11.95,12/23/19 14:24,"285 7th St, Dallas, TX 75001" +311723,USB-C Charging Cable,1,11.95,12/16/19 14:39,"752 Pine St, San Francisco, CA 94016" +311724,AA Batteries (4-pack),2,3.84,12/27/19 11:33,"65 Jackson St, Dallas, TX 75001" +311725,iPhone,1,700,12/05/19 23:21,"464 Ridge St, New York City, NY 10001" +311725,Lightning Charging Cable,1,14.95,12/05/19 23:21,"464 Ridge St, New York City, NY 10001" +311726,AA Batteries (4-pack),1,3.84,12/31/19 17:05,"734 4th St, New York City, NY 10001" +311727,Lightning Charging Cable,1,14.95,12/09/19 06:50,"114 Meadow St, Dallas, TX 75001" +311728,AA Batteries (4-pack),1,3.84,12/31/19 18:45,"599 West St, Los Angeles, CA 90001" +311729,27in 4K Gaming Monitor,1,389.99,12/10/19 11:07,"537 Maple St, Los Angeles, CA 90001" +311730,Wired Headphones,1,11.99,12/03/19 22:16,"672 Elm St, Los Angeles, CA 90001" +311731,USB-C Charging Cable,1,11.95,12/31/19 12:52,"561 Lakeview St, Atlanta, GA 30301" +311732,34in Ultrawide Monitor,1,379.99,12/11/19 15:03,"734 South St, New York City, NY 10001" +311733,ThinkPad Laptop,1,999.99,12/18/19 15:28,"24 1st St, San Francisco, CA 94016" +311734,Apple Airpods Headphones,1,150,12/21/19 14:54,"406 7th St, Portland, ME 04101" +311735,34in Ultrawide Monitor,1,379.99,12/14/19 21:47,"594 Washington St, New York City, NY 10001" +311736,AA Batteries (4-pack),1,3.84,12/25/19 19:58,"763 Main St, Los Angeles, CA 90001" +311737,27in 4K Gaming Monitor,2,389.99,12/09/19 14:54,"517 Jefferson St, Los Angeles, CA 90001" +311738,USB-C Charging Cable,1,11.95,12/26/19 00:58,"674 13th St, San Francisco, CA 94016" +311739,AA Batteries (4-pack),1,3.84,12/20/19 14:45,"81 Madison St, Atlanta, GA 30301" +311740,iPhone,1,700,12/28/19 19:17,"883 Jefferson St, San Francisco, CA 94016" +311741,Google Phone,1,600,12/01/19 22:28,"873 Hickory St, San Francisco, CA 94016" +311742,iPhone,1,700,12/02/19 08:04,"508 Meadow St, Seattle, WA 98101" +311742,Lightning Charging Cable,1,14.95,12/02/19 08:04,"508 Meadow St, Seattle, WA 98101" +311743,iPhone,1,700,12/27/19 16:06,"330 Pine St, Los Angeles, CA 90001" +311744,27in FHD Monitor,1,149.99,12/27/19 19:14,"398 Washington St, Los Angeles, CA 90001" +311745,20in Monitor,1,109.99,12/20/19 20:58,"889 2nd St, Atlanta, GA 30301" +311746,Flatscreen TV,1,300,12/16/19 06:45,"281 1st St, New York City, NY 10001" +311747,AAA Batteries (4-pack),2,2.99,12/02/19 16:56,"160 11th St, Los Angeles, CA 90001" +311748,Lightning Charging Cable,1,14.95,12/09/19 17:43,"711 Lincoln St, Los Angeles, CA 90001" +311749,AA Batteries (4-pack),1,3.84,12/05/19 18:29,"678 1st St, San Francisco, CA 94016" +311750,Apple Airpods Headphones,1,150,12/02/19 16:09,"500 West St, Austin, TX 73301" +311751,Wired Headphones,1,11.99,12/16/19 15:49,"363 West St, Portland, OR 97035" +311752,Wired Headphones,1,11.99,12/09/19 20:20,"677 Center St, Los Angeles, CA 90001" +311753,iPhone,1,700,12/01/19 21:35,"421 Madison St, New York City, NY 10001" +311754,AA Batteries (4-pack),1,3.84,12/16/19 19:34,"45 Lakeview St, Atlanta, GA 30301" +311755,Google Phone,1,600,12/08/19 12:55,"494 Lake St, Boston, MA 02215" +311756,Macbook Pro Laptop,1,1700,12/12/19 18:40,"376 Main St, Boston, MA 02215" +311757,Macbook Pro Laptop,1,1700,12/27/19 01:01,"443 Cedar St, Los Angeles, CA 90001" +311758,iPhone,1,700,12/11/19 15:25,"623 North St, Atlanta, GA 30301" +311759,LG Washing Machine,1,600.0,12/04/19 00:08,"670 1st St, Los Angeles, CA 90001" +311760,AA Batteries (4-pack),1,3.84,12/11/19 16:48,"851 Jackson St, Boston, MA 02215" +311761,Lightning Charging Cable,1,14.95,12/15/19 06:17,"508 River St, Boston, MA 02215" +311762,AAA Batteries (4-pack),1,2.99,12/06/19 18:23,"211 Lake St, Los Angeles, CA 90001" +311763,27in 4K Gaming Monitor,1,389.99,12/14/19 20:29,"130 Jackson St, San Francisco, CA 94016" +311764,Apple Airpods Headphones,1,150,12/29/19 20:04,"803 North St, New York City, NY 10001" +311765,Bose SoundSport Headphones,1,99.99,12/16/19 15:41,"163 Walnut St, San Francisco, CA 94016" +311766,Wired Headphones,1,11.99,12/22/19 19:47,"883 Meadow St, Los Angeles, CA 90001" +311767,AA Batteries (4-pack),1,3.84,12/09/19 13:32,"778 Ridge St, Dallas, TX 75001" +311768,ThinkPad Laptop,1,999.99,12/29/19 21:16,"900 Elm St, Atlanta, GA 30301" +311769,ThinkPad Laptop,1,999.99,12/18/19 18:19,"161 Cedar St, San Francisco, CA 94016" +311770,USB-C Charging Cable,1,11.95,12/15/19 20:02,"869 Cedar St, New York City, NY 10001" +311771,Lightning Charging Cable,1,14.95,12/21/19 14:25,"687 Cherry St, San Francisco, CA 94016" +311772,AA Batteries (4-pack),1,3.84,12/24/19 01:17,"122 6th St, San Francisco, CA 94016" +311773,Wired Headphones,3,11.99,12/02/19 19:49,"476 11th St, Seattle, WA 98101" +311774,27in 4K Gaming Monitor,1,389.99,12/01/19 15:19,"553 10th St, San Francisco, CA 94016" +311775,27in FHD Monitor,1,149.99,12/19/19 17:20,"526 2nd St, San Francisco, CA 94016" +311776,USB-C Charging Cable,1,11.95,12/19/19 19:33,"230 Madison St, New York City, NY 10001" +311777,34in Ultrawide Monitor,1,379.99,12/24/19 11:09,"461 7th St, Portland, OR 97035" +311778,AAA Batteries (4-pack),3,2.99,12/06/19 13:12,"79 Washington St, San Francisco, CA 94016" +311779,Lightning Charging Cable,1,14.95,12/21/19 20:15,"548 Maple St, New York City, NY 10001" +311780,27in FHD Monitor,1,149.99,12/20/19 23:41,"623 Sunset St, Boston, MA 02215" +311781,USB-C Charging Cable,1,11.95,12/01/19 21:42,"89 West St, Dallas, TX 75001" +311782,Google Phone,1,600,12/21/19 20:46,"860 Lake St, Los Angeles, CA 90001" +311783,AAA Batteries (4-pack),2,2.99,12/21/19 23:15,"447 13th St, San Francisco, CA 94016" +311784,USB-C Charging Cable,1,11.95,12/26/19 00:00,"49 Hill St, Atlanta, GA 30301" +311785,20in Monitor,1,109.99,12/27/19 15:09,"884 Willow St, Portland, OR 97035" +311786,AAA Batteries (4-pack),1,2.99,12/28/19 12:21,"123 12th St, San Francisco, CA 94016" +311787,USB-C Charging Cable,1,11.95,12/06/19 16:16,"962 Elm St, Atlanta, GA 30301" +311788,20in Monitor,1,109.99,12/25/19 22:48,"393 Lincoln St, Dallas, TX 75001" +311789,Apple Airpods Headphones,1,150,12/26/19 14:40,"204 North St, San Francisco, CA 94016" +311790,Apple Airpods Headphones,1,150,12/02/19 18:15,"261 Meadow St, Austin, TX 73301" +311791,AAA Batteries (4-pack),1,2.99,12/28/19 14:37,"141 1st St, San Francisco, CA 94016" +311792,AAA Batteries (4-pack),1,2.99,12/06/19 09:46,"801 Forest St, Dallas, TX 75001" +311793,Wired Headphones,2,11.99,12/25/19 19:33,"824 Washington St, San Francisco, CA 94016" +311794,Bose SoundSport Headphones,1,99.99,12/08/19 11:57,"989 10th St, Atlanta, GA 30301" +311795,AA Batteries (4-pack),1,3.84,12/10/19 12:30,"613 West St, Dallas, TX 75001" +311796,AAA Batteries (4-pack),2,2.99,12/20/19 13:40,"17 1st St, Los Angeles, CA 90001" +311797,Wired Headphones,1,11.99,12/30/19 16:39,"332 Maple St, Los Angeles, CA 90001" +311798,Bose SoundSport Headphones,1,99.99,12/23/19 21:09,"385 14th St, Los Angeles, CA 90001" +311799,Wired Headphones,1,11.99,12/22/19 23:13,"525 Forest St, New York City, NY 10001" +311800,LG Washing Machine,1,600.0,12/09/19 02:54,"84 7th St, Seattle, WA 98101" +311801,Wired Headphones,1,11.99,12/16/19 17:31,"562 Lake St, New York City, NY 10001" +311802,Lightning Charging Cable,1,14.95,12/24/19 13:05,"280 9th St, New York City, NY 10001" +311803,20in Monitor,1,109.99,12/31/19 00:43,"655 Main St, Los Angeles, CA 90001" +311804,Apple Airpods Headphones,1,150,12/06/19 16:58,"545 Wilson St, San Francisco, CA 94016" +311805,USB-C Charging Cable,1,11.95,12/02/19 21:14,"804 Walnut St, New York City, NY 10001" +311806,Wired Headphones,1,11.99,12/27/19 18:43,"756 12th St, Portland, ME 04101" +311807,Macbook Pro Laptop,1,1700,12/31/19 13:56,"717 Dogwood St, Los Angeles, CA 90001" +311808,iPhone,1,700,12/18/19 17:15,"135 10th St, Austin, TX 73301" +311809,27in 4K Gaming Monitor,1,389.99,12/03/19 19:18,"200 Wilson St, San Francisco, CA 94016" +311810,Vareebadd Phone,1,400,12/29/19 16:14,"187 Johnson St, Seattle, WA 98101" +311811,AAA Batteries (4-pack),1,2.99,12/17/19 14:12,"725 7th St, San Francisco, CA 94016" +311812,Apple Airpods Headphones,1,150,12/04/19 20:43,"570 Sunset St, Boston, MA 02215" +311813,Bose SoundSport Headphones,1,99.99,12/07/19 09:51,"934 Washington St, Los Angeles, CA 90001" +311814,34in Ultrawide Monitor,1,379.99,12/19/19 19:19,"834 South St, San Francisco, CA 94016" +311815,Wired Headphones,1,11.99,12/09/19 11:42,"93 Lincoln St, Los Angeles, CA 90001" +311816,Bose SoundSport Headphones,1,99.99,12/01/19 03:02,"902 1st St, San Francisco, CA 94016" +311817,34in Ultrawide Monitor,1,379.99,12/05/19 13:06,"755 Walnut St, Los Angeles, CA 90001" +311818,USB-C Charging Cable,1,11.95,12/27/19 11:07,"907 Walnut St, Portland, OR 97035" +311819,Bose SoundSport Headphones,1,99.99,12/28/19 20:25,"648 Wilson St, Austin, TX 73301" +311820,ThinkPad Laptop,1,999.99,12/01/19 08:17,"320 Adams St, San Francisco, CA 94016" +311821,Macbook Pro Laptop,1,1700,12/27/19 20:52,"759 Cherry St, New York City, NY 10001" +311822,AA Batteries (4-pack),1,3.84,12/22/19 14:17,"4 Cherry St, Atlanta, GA 30301" +311823,AAA Batteries (4-pack),2,2.99,12/29/19 23:14,"245 Main St, Los Angeles, CA 90001" +311824,27in 4K Gaming Monitor,1,389.99,12/01/19 11:17,"616 Park St, New York City, NY 10001" +311825,Lightning Charging Cable,1,14.95,12/27/19 21:36,"783 Forest St, Boston, MA 02215" +311826,AA Batteries (4-pack),1,3.84,12/29/19 11:30,"583 Willow St, San Francisco, CA 94016" +311827,Wired Headphones,1,11.99,12/13/19 14:54,"95 Washington St, New York City, NY 10001" +311828,Lightning Charging Cable,1,14.95,12/16/19 10:10,"752 West St, Dallas, TX 75001" +311829,Macbook Pro Laptop,1,1700,12/31/19 22:34,"317 Lake St, Los Angeles, CA 90001" +311830,Flatscreen TV,1,300,12/25/19 14:45,"799 2nd St, Austin, TX 73301" +311831,AA Batteries (4-pack),2,3.84,12/26/19 18:48,"907 Hill St, New York City, NY 10001" +311832,AAA Batteries (4-pack),1,2.99,12/20/19 01:07,"18 Washington St, Austin, TX 73301" +311833,27in FHD Monitor,1,149.99,12/01/19 19:23,"863 Wilson St, Boston, MA 02215" +311834,Bose SoundSport Headphones,1,99.99,12/15/19 16:38,"654 Adams St, San Francisco, CA 94016" +311835,USB-C Charging Cable,1,11.95,12/06/19 18:38,"679 Adams St, New York City, NY 10001" +311836,Lightning Charging Cable,2,14.95,12/13/19 14:30,"87 Cherry St, San Francisco, CA 94016" +311837,ThinkPad Laptop,1,999.99,12/22/19 11:43,"615 Lake St, Portland, OR 97035" +311838,Google Phone,1,600,12/01/19 18:32,"377 Hickory St, San Francisco, CA 94016" +311838,Wired Headphones,1,11.99,12/01/19 18:32,"377 Hickory St, San Francisco, CA 94016" +311839,USB-C Charging Cable,1,11.95,12/31/19 23:14,"702 Chestnut St, New York City, NY 10001" +311840,Bose SoundSport Headphones,1,99.99,12/08/19 19:04,"895 Center St, San Francisco, CA 94016" +311841,iPhone,1,700,12/06/19 08:27,"890 Adams St, Atlanta, GA 30301" +311841,Apple Airpods Headphones,1,150,12/06/19 08:27,"890 Adams St, Atlanta, GA 30301" +311842,Wired Headphones,2,11.99,12/30/19 15:35,"662 Spruce St, Seattle, WA 98101" +311843,AAA Batteries (4-pack),1,2.99,12/07/19 11:04,"983 2nd St, Dallas, TX 75001" +311844,USB-C Charging Cable,1,11.95,12/04/19 14:07,"173 Spruce St, Atlanta, GA 30301" +311845,34in Ultrawide Monitor,1,379.99,12/13/19 22:27,"680 Elm St, San Francisco, CA 94016" +311846,Wired Headphones,1,11.99,12/28/19 16:34,"11 Church St, New York City, NY 10001" +311847,Flatscreen TV,1,300,12/23/19 23:20,"219 Jackson St, Austin, TX 73301" +311848,Wired Headphones,1,11.99,12/06/19 21:38,"850 Lake St, Seattle, WA 98101" +311849,27in FHD Monitor,1,149.99,12/31/19 17:04,"481 Chestnut St, New York City, NY 10001" +311850,20in Monitor,1,109.99,12/08/19 16:12,"590 Chestnut St, San Francisco, CA 94016" +311851,iPhone,1,700,12/11/19 22:01,"400 Dogwood St, San Francisco, CA 94016" +311852,iPhone,1,700,12/04/19 17:33,"201 Lincoln St, Boston, MA 02215" +311852,Lightning Charging Cable,1,14.95,12/04/19 17:33,"201 Lincoln St, Boston, MA 02215" +311852,Apple Airpods Headphones,1,150,12/04/19 17:33,"201 Lincoln St, Boston, MA 02215" +311853,AAA Batteries (4-pack),1,2.99,12/08/19 21:06,"565 8th St, Boston, MA 02215" +311854,Lightning Charging Cable,1,14.95,12/15/19 16:06,"940 Washington St, Los Angeles, CA 90001" +311855,Apple Airpods Headphones,1,150,12/02/19 10:07,"590 Lake St, New York City, NY 10001" +311856,USB-C Charging Cable,2,11.95,12/11/19 17:44,"11 West St, San Francisco, CA 94016" +311857,27in 4K Gaming Monitor,1,389.99,12/28/19 23:10,"242 Ridge St, San Francisco, CA 94016" +311858,Apple Airpods Headphones,1,150,12/24/19 10:56,"779 Adams St, San Francisco, CA 94016" +311859,Bose SoundSport Headphones,1,99.99,12/29/19 18:16,"200 Jefferson St, Los Angeles, CA 90001" +311860,AAA Batteries (4-pack),1,2.99,12/15/19 17:44,"158 Willow St, Los Angeles, CA 90001" +311861,Bose SoundSport Headphones,1,99.99,12/18/19 11:30,"111 Lakeview St, Los Angeles, CA 90001" +311862,Bose SoundSport Headphones,1,99.99,12/20/19 09:27,"521 Jackson St, Portland, OR 97035" +311863,34in Ultrawide Monitor,1,379.99,12/14/19 14:52,"179 Johnson St, Atlanta, GA 30301" +311864,Apple Airpods Headphones,1,150,12/09/19 10:17,"448 Cedar St, New York City, NY 10001" +311865,ThinkPad Laptop,1,999.99,12/03/19 20:05,"552 10th St, Portland, OR 97035" +311866,AAA Batteries (4-pack),1,2.99,12/22/19 12:54,"201 West St, San Francisco, CA 94016" +311867,Bose SoundSport Headphones,1,99.99,12/27/19 06:47,"219 River St, Dallas, TX 75001" +311868,AAA Batteries (4-pack),2,2.99,12/13/19 21:58,"32 Jefferson St, Atlanta, GA 30301" +311869,Lightning Charging Cable,1,14.95,12/06/19 12:55,"33 North St, Boston, MA 02215" +311870,Apple Airpods Headphones,1,150,12/15/19 11:39,"786 7th St, Los Angeles, CA 90001" +311871,Wired Headphones,1,11.99,12/31/19 20:18,"125 Lake St, Atlanta, GA 30301" +311872,Lightning Charging Cable,1,14.95,12/15/19 21:10,"943 Meadow St, New York City, NY 10001" +311873,AAA Batteries (4-pack),1,2.99,12/18/19 20:52,"489 Lincoln St, Portland, OR 97035" +311874,AAA Batteries (4-pack),3,2.99,12/19/19 14:41,"442 Park St, San Francisco, CA 94016" +311875,AA Batteries (4-pack),2,3.84,12/19/19 14:05,"787 Ridge St, Seattle, WA 98101" +311876,AA Batteries (4-pack),1,3.84,12/28/19 15:31,"853 6th St, Portland, OR 97035" +311877,Bose SoundSport Headphones,2,99.99,12/28/19 17:21,"704 11th St, New York City, NY 10001" +311878,iPhone,1,700,12/22/19 14:02,"224 Cherry St, San Francisco, CA 94016" +311878,Lightning Charging Cable,1,14.95,12/22/19 14:02,"224 Cherry St, San Francisco, CA 94016" +311879,USB-C Charging Cable,1,11.95,12/02/19 15:29,"417 Lakeview St, New York City, NY 10001" +311880,AA Batteries (4-pack),1,3.84,12/22/19 09:01,"984 Chestnut St, Los Angeles, CA 90001" +311881,20in Monitor,1,109.99,12/06/19 10:39,"383 Elm St, Atlanta, GA 30301" +311882,Bose SoundSport Headphones,1,99.99,12/24/19 13:22,"444 Center St, New York City, NY 10001" +311883,Lightning Charging Cable,1,14.95,12/30/19 15:55,"979 Highland St, New York City, NY 10001" +311884,27in FHD Monitor,1,149.99,12/03/19 08:48,"937 Lincoln St, Dallas, TX 75001" +311885,Wired Headphones,1,11.99,12/09/19 14:55,"881 8th St, Dallas, TX 75001" +311886,Wired Headphones,1,11.99,12/25/19 09:20,"200 Johnson St, Los Angeles, CA 90001" +311887,20in Monitor,1,109.99,12/16/19 20:11,"783 Church St, San Francisco, CA 94016" +311888,Lightning Charging Cable,1,14.95,12/09/19 21:49,"44 Hickory St, Los Angeles, CA 90001" +311889,Macbook Pro Laptop,1,1700,12/09/19 18:41,"551 Park St, Boston, MA 02215" +311890,AA Batteries (4-pack),3,3.84,12/04/19 14:19,"730 9th St, Portland, OR 97035" +311891,Wired Headphones,1,11.99,12/31/19 19:20,"948 Jefferson St, San Francisco, CA 94016" +311892,Lightning Charging Cable,1,14.95,12/31/19 16:41,"147 Madison St, New York City, NY 10001" +311893,Wired Headphones,1,11.99,12/03/19 22:43,"835 Cedar St, Los Angeles, CA 90001" +311894,Wired Headphones,1,11.99,12/26/19 08:13,"229 1st St, Seattle, WA 98101" +311895,ThinkPad Laptop,1,999.99,12/05/19 09:37,"579 Lake St, Boston, MA 02215" +311896,Apple Airpods Headphones,1,150,12/12/19 11:22,"816 12th St, San Francisco, CA 94016" +311897,34in Ultrawide Monitor,1,379.99,12/03/19 17:55,"55 10th St, San Francisco, CA 94016" +311898,AA Batteries (4-pack),1,3.84,12/05/19 08:45,"462 6th St, Portland, ME 04101" +311899,Wired Headphones,1,11.99,12/28/19 07:19,"481 10th St, New York City, NY 10001" +311900,AAA Batteries (4-pack),2,2.99,12/22/19 20:40,"43 Pine St, New York City, NY 10001" +311901,AA Batteries (4-pack),1,3.84,12/05/19 17:51,"411 10th St, Los Angeles, CA 90001" +311902,Apple Airpods Headphones,1,150,12/03/19 16:57,"870 10th St, Los Angeles, CA 90001" +311903,Google Phone,1,600,12/12/19 12:55,"648 West St, San Francisco, CA 94016" +311904,AA Batteries (4-pack),1,3.84,12/11/19 13:07,"735 Elm St, Boston, MA 02215" +311905,Macbook Pro Laptop,1,1700,12/05/19 01:26,"435 Walnut St, New York City, NY 10001" +311906,AAA Batteries (4-pack),1,2.99,12/17/19 11:45,"182 1st St, Atlanta, GA 30301" +311907,USB-C Charging Cable,1,11.95,12/30/19 00:05,"710 Lincoln St, Seattle, WA 98101" +311908,USB-C Charging Cable,1,11.95,12/08/19 19:02,"31 Hickory St, Boston, MA 02215" +311909,Apple Airpods Headphones,1,150,12/04/19 20:58,"302 1st St, Dallas, TX 75001" +311910,Macbook Pro Laptop,1,1700,12/18/19 21:02,"108 13th St, Seattle, WA 98101" +311911,USB-C Charging Cable,1,11.95,12/04/19 10:36,"356 Forest St, Atlanta, GA 30301" +311912,Apple Airpods Headphones,1,150,12/03/19 20:14,"965 Lake St, San Francisco, CA 94016" +311913,AAA Batteries (4-pack),5,2.99,12/08/19 20:05,"547 Forest St, Seattle, WA 98101" +311914,AA Batteries (4-pack),1,3.84,12/05/19 16:09,"35 Jefferson St, San Francisco, CA 94016" +311915,Lightning Charging Cable,1,14.95,12/11/19 08:37,"108 7th St, Boston, MA 02215" +311916,Apple Airpods Headphones,1,150,12/25/19 21:35,"814 South St, San Francisco, CA 94016" +311917,Apple Airpods Headphones,1,150,12/06/19 12:05,"780 Chestnut St, Boston, MA 02215" +311918,Bose SoundSport Headphones,1,99.99,12/31/19 14:53,"81 River St, Portland, OR 97035" +311919,27in 4K Gaming Monitor,1,389.99,12/05/19 21:38,"667 Maple St, New York City, NY 10001" +311920,AAA Batteries (4-pack),1,2.99,12/31/19 18:42,"838 Adams St, San Francisco, CA 94016" +311921,iPhone,1,700,12/30/19 14:23,"794 Chestnut St, Los Angeles, CA 90001" +311922,Lightning Charging Cable,1,14.95,12/28/19 09:12,"662 Wilson St, Seattle, WA 98101" +311923,Lightning Charging Cable,1,14.95,12/26/19 17:41,"844 Cherry St, New York City, NY 10001" +311924,iPhone,1,700,12/22/19 09:54,"980 Maple St, San Francisco, CA 94016" +311925,Lightning Charging Cable,1,14.95,12/12/19 11:54,"114 Ridge St, Seattle, WA 98101" +311926,Wired Headphones,1,11.99,12/20/19 17:31,"949 Cedar St, San Francisco, CA 94016" +311927,Lightning Charging Cable,1,14.95,12/23/19 10:04,"453 2nd St, San Francisco, CA 94016" +311928,LG Dryer,1,600.0,12/16/19 21:22,"28 Elm St, New York City, NY 10001" +311929,27in 4K Gaming Monitor,1,389.99,12/10/19 08:46,"463 Pine St, Los Angeles, CA 90001" +311930,USB-C Charging Cable,1,11.95,12/17/19 12:36,"482 Madison St, Atlanta, GA 30301" +311931,27in FHD Monitor,1,149.99,12/17/19 17:39,"931 8th St, New York City, NY 10001" +311932,Google Phone,1,600,12/01/19 11:57,"733 Cherry St, New York City, NY 10001" +311933,AA Batteries (4-pack),4,3.84,12/26/19 19:51,"891 South St, Atlanta, GA 30301" +311934,27in FHD Monitor,1,149.99,12/04/19 14:50,"830 Lakeview St, Los Angeles, CA 90001" +311935,Wired Headphones,1,11.99,12/06/19 13:38,"903 11th St, Los Angeles, CA 90001" +311936,Bose SoundSport Headphones,1,99.99,12/25/19 11:15,"577 5th St, Dallas, TX 75001" +311937,AAA Batteries (4-pack),1,2.99,12/20/19 10:21,"107 7th St, Los Angeles, CA 90001" +311938,Lightning Charging Cable,1,14.95,12/29/19 22:42,"531 6th St, Los Angeles, CA 90001" +311939,USB-C Charging Cable,1,11.95,12/15/19 21:11,"266 6th St, San Francisco, CA 94016" +311940,Apple Airpods Headphones,1,150,12/25/19 09:32,"403 Hickory St, New York City, NY 10001" +311941,27in FHD Monitor,1,149.99,12/23/19 15:52,"206 Adams St, Austin, TX 73301" +311942,Apple Airpods Headphones,1,150,12/03/19 01:49,"927 Lincoln St, Atlanta, GA 30301" +311943,20in Monitor,1,109.99,12/03/19 16:03,"320 Pine St, Seattle, WA 98101" +311944,27in 4K Gaming Monitor,1,389.99,12/04/19 20:55,"736 Hill St, Atlanta, GA 30301" +311945,34in Ultrawide Monitor,1,379.99,12/15/19 16:34,"848 Walnut St, Los Angeles, CA 90001" +311946,USB-C Charging Cable,1,11.95,12/27/19 22:17,"631 11th St, New York City, NY 10001" +311947,AAA Batteries (4-pack),1,2.99,12/01/19 23:42,"39 8th St, Seattle, WA 98101" +311948,AA Batteries (4-pack),1,3.84,12/21/19 18:26,"148 Cedar St, Seattle, WA 98101" +311949,AAA Batteries (4-pack),2,2.99,12/05/19 19:46,"852 7th St, San Francisco, CA 94016" +311950,Apple Airpods Headphones,1,150,12/26/19 21:09,"395 Elm St, New York City, NY 10001" +311951,20in Monitor,1,109.99,12/12/19 12:58,"980 Pine St, Los Angeles, CA 90001" +311952,20in Monitor,1,109.99,12/14/19 15:50,"165 Chestnut St, San Francisco, CA 94016" +311953,Bose SoundSport Headphones,1,99.99,12/02/19 12:48,"518 Hill St, Seattle, WA 98101" +311954,AAA Batteries (4-pack),1,2.99,12/08/19 13:32,"879 Lincoln St, Seattle, WA 98101" +311955,Bose SoundSport Headphones,1,99.99,12/07/19 12:55,"564 Forest St, Seattle, WA 98101" +311956,iPhone,1,700,12/05/19 22:55,"779 Adams St, Dallas, TX 75001" +311957,Lightning Charging Cable,1,14.95,12/26/19 11:14,"424 Meadow St, San Francisco, CA 94016" +311958,USB-C Charging Cable,1,11.95,12/20/19 10:06,"376 Wilson St, New York City, NY 10001" +311959,27in FHD Monitor,1,149.99,12/19/19 17:48,"117 Lincoln St, Seattle, WA 98101" +311960,Bose SoundSport Headphones,1,99.99,12/02/19 12:09,"290 Wilson St, Boston, MA 02215" +311961,AAA Batteries (4-pack),1,2.99,12/14/19 13:03,"339 Dogwood St, Portland, OR 97035" +311962,27in FHD Monitor,1,149.99,12/20/19 08:42,"911 Walnut St, Portland, OR 97035" +311963,Lightning Charging Cable,1,14.95,12/07/19 18:18,"133 5th St, San Francisco, CA 94016" +311964,AA Batteries (4-pack),1,3.84,12/18/19 15:00,"375 8th St, New York City, NY 10001" +311965,AAA Batteries (4-pack),2,2.99,12/18/19 20:33,"860 Main St, New York City, NY 10001" +311966,USB-C Charging Cable,1,11.95,12/17/19 14:27,"782 Madison St, Austin, TX 73301" +311967,iPhone,1,700,12/02/19 21:04,"189 7th St, Boston, MA 02215" +311967,Lightning Charging Cable,1,14.95,12/02/19 21:04,"189 7th St, Boston, MA 02215" +311968,Lightning Charging Cable,2,14.95,12/22/19 18:59,"435 North St, New York City, NY 10001" +311969,USB-C Charging Cable,1,11.95,12/09/19 15:26,"149 Hill St, Dallas, TX 75001" +311970,34in Ultrawide Monitor,1,379.99,12/13/19 07:41,"576 9th St, Los Angeles, CA 90001" +311971,AA Batteries (4-pack),3,3.84,12/27/19 19:14,"953 Elm St, Portland, OR 97035" +311972,ThinkPad Laptop,1,999.99,12/12/19 19:19,"433 Jefferson St, New York City, NY 10001" +311973,AA Batteries (4-pack),1,3.84,12/02/19 11:27,"309 South St, Boston, MA 02215" +311974,AA Batteries (4-pack),2,3.84,12/25/19 15:22,"295 4th St, Austin, TX 73301" +311975,ThinkPad Laptop,1,999.99,12/09/19 16:25,"49 1st St, Boston, MA 02215" +311976,Lightning Charging Cable,1,14.95,12/29/19 15:46,"924 Johnson St, New York City, NY 10001" +311977,27in 4K Gaming Monitor,1,389.99,12/17/19 17:41,"574 1st St, Austin, TX 73301" +311978,AAA Batteries (4-pack),1,2.99,12/16/19 23:01,"546 9th St, Atlanta, GA 30301" +311979,34in Ultrawide Monitor,1,379.99,12/20/19 19:59,"865 9th St, Boston, MA 02215" +311980,USB-C Charging Cable,2,11.95,12/07/19 13:48,"867 Adams St, Portland, ME 04101" +311981,27in 4K Gaming Monitor,1,389.99,12/06/19 10:54,"305 Wilson St, Portland, ME 04101" +311982,AA Batteries (4-pack),1,3.84,12/20/19 23:48,"431 West St, Boston, MA 02215" +311983,Apple Airpods Headphones,1,150,12/08/19 16:26,"486 1st St, New York City, NY 10001" +311984,27in 4K Gaming Monitor,1,389.99,12/06/19 21:10,"587 11th St, Los Angeles, CA 90001" +311985,Apple Airpods Headphones,1,150,12/25/19 11:26,"791 South St, Los Angeles, CA 90001" +311986,20in Monitor,1,109.99,12/09/19 12:35,"578 Chestnut St, Boston, MA 02215" +311987,iPhone,1,700,12/28/19 18:32,"102 Pine St, New York City, NY 10001" +311988,Wired Headphones,2,11.99,12/17/19 14:59,"379 Forest St, San Francisco, CA 94016" +311989,AA Batteries (4-pack),2,3.84,12/03/19 12:27,"632 8th St, San Francisco, CA 94016" +311990,20in Monitor,1,109.99,12/28/19 18:23,"664 13th St, San Francisco, CA 94016" +311991,AAA Batteries (4-pack),1,2.99,12/23/19 22:54,"152 Maple St, Atlanta, GA 30301" +311992,Wired Headphones,2,11.99,12/14/19 13:46,"149 10th St, San Francisco, CA 94016" +311993,AAA Batteries (4-pack),1,2.99,12/11/19 11:48,"788 Meadow St, Los Angeles, CA 90001" +311994,Apple Airpods Headphones,1,150,12/17/19 20:27,"872 Cedar St, Dallas, TX 75001" +311995,AA Batteries (4-pack),2,3.84,12/14/19 14:58,"311 Maple St, Atlanta, GA 30301" +311996,Wired Headphones,1,11.99,12/28/19 09:09,"706 Jackson St, New York City, NY 10001" +311997,AAA Batteries (4-pack),1,2.99,12/14/19 14:08,"410 Main St, San Francisco, CA 94016" +311998,AA Batteries (4-pack),1,3.84,12/02/19 18:49,"402 Center St, Seattle, WA 98101" +311999,AA Batteries (4-pack),1,3.84,12/06/19 22:49,"457 Lakeview St, Seattle, WA 98101" +311999,Apple Airpods Headphones,1,150,12/06/19 22:49,"457 Lakeview St, Seattle, WA 98101" +312000,Apple Airpods Headphones,1,150,12/23/19 10:40,"525 6th St, Boston, MA 02215" +312001,Vareebadd Phone,1,400,12/12/19 01:50,"260 8th St, Los Angeles, CA 90001" +312001,Wired Headphones,1,11.99,12/12/19 01:50,"260 8th St, Los Angeles, CA 90001" +312002,AAA Batteries (4-pack),1,2.99,12/30/19 06:40,"36 Wilson St, New York City, NY 10001" +312003,Wired Headphones,1,11.99,12/23/19 11:59,"253 Sunset St, New York City, NY 10001" +312004,Bose SoundSport Headphones,1,99.99,12/16/19 21:52,"75 Cedar St, Los Angeles, CA 90001" +312005,AA Batteries (4-pack),1,3.84,12/04/19 22:24,"807 Spruce St, Los Angeles, CA 90001" +312006,Apple Airpods Headphones,1,150,12/19/19 10:49,"852 Madison St, Boston, MA 02215" +312007,AAA Batteries (4-pack),1,2.99,12/29/19 08:00,"178 South St, Boston, MA 02215" +312008,USB-C Charging Cable,1,11.95,12/03/19 12:01,"447 2nd St, San Francisco, CA 94016" +312009,Apple Airpods Headphones,1,150,12/13/19 01:41,"198 Walnut St, San Francisco, CA 94016" +312010,Lightning Charging Cable,1,14.95,12/05/19 19:41,"256 River St, Portland, OR 97035" +312011,ThinkPad Laptop,1,999.99,12/07/19 15:55,"584 5th St, San Francisco, CA 94016" +312012,Macbook Pro Laptop,1,1700,12/10/19 12:15,"31 Adams St, New York City, NY 10001" +312013,USB-C Charging Cable,1,11.95,12/11/19 08:54,"679 River St, Austin, TX 73301" +312014,AAA Batteries (4-pack),1,2.99,12/19/19 09:38,"232 14th St, San Francisco, CA 94016" +312015,AA Batteries (4-pack),1,3.84,12/29/19 10:20,"454 10th St, San Francisco, CA 94016" +312016,Wired Headphones,1,11.99,12/23/19 11:02,"566 Lakeview St, New York City, NY 10001" +312017,AAA Batteries (4-pack),1,2.99,12/07/19 21:00,"68 Hill St, Boston, MA 02215" +312018,Bose SoundSport Headphones,1,99.99,12/31/19 06:16,"400 South St, San Francisco, CA 94016" +312019,27in 4K Gaming Monitor,1,389.99,12/26/19 21:02,"636 14th St, Los Angeles, CA 90001" +312020,AA Batteries (4-pack),2,3.84,12/23/19 19:04,"282 Jefferson St, Atlanta, GA 30301" +312021,AAA Batteries (4-pack),4,2.99,12/22/19 15:47,"906 Lincoln St, San Francisco, CA 94016" +312022,Lightning Charging Cable,1,14.95,12/18/19 19:32,"228 4th St, Atlanta, GA 30301" +312023,USB-C Charging Cable,2,11.95,12/29/19 21:40,"473 Johnson St, San Francisco, CA 94016" +312024,Apple Airpods Headphones,1,150,12/09/19 12:04,"914 6th St, Portland, OR 97035" +312025,Lightning Charging Cable,1,14.95,12/09/19 17:05,"718 Elm St, Seattle, WA 98101" +312026,USB-C Charging Cable,1,11.95,12/29/19 22:33,"21 Forest St, San Francisco, CA 94016" +312027,Macbook Pro Laptop,1,1700,12/19/19 22:49,"121 River St, New York City, NY 10001" +312028,AAA Batteries (4-pack),2,2.99,12/04/19 09:59,"525 13th St, Portland, OR 97035" +312029,AA Batteries (4-pack),1,3.84,12/19/19 19:35,"788 Lincoln St, Dallas, TX 75001" +312030,AA Batteries (4-pack),1,3.84,12/30/19 22:56,"859 Cherry St, Portland, OR 97035" +312031,USB-C Charging Cable,1,11.95,12/01/19 12:53,"55 Johnson St, New York City, NY 10001" +312032,27in FHD Monitor,1,149.99,12/30/19 06:29,"886 Main St, San Francisco, CA 94016" +312033,Lightning Charging Cable,1,14.95,12/19/19 14:54,"685 Cedar St, Boston, MA 02215" +312034,Lightning Charging Cable,1,14.95,12/31/19 15:18,"309 9th St, San Francisco, CA 94016" +312035,AA Batteries (4-pack),2,3.84,12/28/19 23:41,"484 Hickory St, Boston, MA 02215" +312036,AA Batteries (4-pack),1,3.84,12/29/19 12:34,"793 South St, Boston, MA 02215" +312037,Flatscreen TV,1,300,12/11/19 22:23,"538 Spruce St, San Francisco, CA 94016" +312038,Lightning Charging Cable,1,14.95,12/05/19 20:09,"993 Washington St, San Francisco, CA 94016" +312039,USB-C Charging Cable,2,11.95,12/26/19 13:54,"826 Cedar St, New York City, NY 10001" +312040,Wired Headphones,1,11.99,12/13/19 23:26,"203 10th St, Los Angeles, CA 90001" +312041,Lightning Charging Cable,1,14.95,12/06/19 23:19,"702 Madison St, San Francisco, CA 94016" +312042,Flatscreen TV,1,300,12/21/19 00:21,"687 River St, Los Angeles, CA 90001" +312043,Macbook Pro Laptop,1,1700,12/19/19 09:31,"292 Hill St, Los Angeles, CA 90001" +312044,27in FHD Monitor,1,149.99,12/17/19 10:53,"513 Chestnut St, New York City, NY 10001" +312045,Lightning Charging Cable,1,14.95,12/19/19 13:52,"413 Lincoln St, Atlanta, GA 30301" +312046,Apple Airpods Headphones,1,150,12/19/19 13:39,"452 Jefferson St, San Francisco, CA 94016" +312047,AAA Batteries (4-pack),2,2.99,12/19/19 14:21,"297 Sunset St, Portland, OR 97035" +312048,Wired Headphones,1,11.99,12/31/19 18:33,"336 7th St, Dallas, TX 75001" +312049,Bose SoundSport Headphones,1,99.99,12/15/19 05:24,"365 North St, Atlanta, GA 30301" +312050,Flatscreen TV,1,300,12/08/19 14:39,"464 Pine St, Seattle, WA 98101" +312051,34in Ultrawide Monitor,1,379.99,12/13/19 20:57,"399 Washington St, Portland, OR 97035" +312052,USB-C Charging Cable,1,11.95,12/31/19 20:04,"77 Lakeview St, San Francisco, CA 94016" +312053,Flatscreen TV,1,300,12/01/19 23:22,"748 Dogwood St, Austin, TX 73301" +312054,Lightning Charging Cable,1,14.95,12/30/19 13:13,"557 Highland St, San Francisco, CA 94016" +312055,Wired Headphones,1,11.99,12/20/19 13:31,"71 1st St, Los Angeles, CA 90001" +312056,Lightning Charging Cable,1,14.95,12/08/19 21:53,"223 Hill St, San Francisco, CA 94016" +312057,27in FHD Monitor,1,149.99,12/10/19 14:22,"135 Walnut St, San Francisco, CA 94016" +312058,Bose SoundSport Headphones,1,99.99,12/07/19 23:05,"254 7th St, San Francisco, CA 94016" +312059,Bose SoundSport Headphones,1,99.99,12/04/19 15:09,"371 Center St, Los Angeles, CA 90001" +312060,AA Batteries (4-pack),1,3.84,12/01/19 12:38,"896 Jefferson St, Atlanta, GA 30301" +312061,Lightning Charging Cable,1,14.95,12/29/19 12:19,"974 5th St, New York City, NY 10001" +312062,Lightning Charging Cable,1,14.95,12/02/19 22:06,"272 Spruce St, Los Angeles, CA 90001" +312063,27in FHD Monitor,1,149.99,12/11/19 20:43,"793 Madison St, San Francisco, CA 94016" +312064,AA Batteries (4-pack),1,3.84,12/04/19 19:05,"698 11th St, San Francisco, CA 94016" +312065,AAA Batteries (4-pack),3,2.99,12/12/19 16:53,"360 Madison St, Atlanta, GA 30301" +312066,AAA Batteries (4-pack),2,2.99,12/20/19 10:37,"149 Dogwood St, Seattle, WA 98101" +312067,Bose SoundSport Headphones,1,99.99,12/26/19 21:04,"349 7th St, Dallas, TX 75001" +312068,Wired Headphones,1,11.99,12/13/19 21:47,"218 8th St, Atlanta, GA 30301" +312069,iPhone,2,700,12/07/19 09:24,"289 Park St, Austin, TX 73301" +312070,Apple Airpods Headphones,1,150,12/25/19 08:20,"294 2nd St, San Francisco, CA 94016" +312071,Macbook Pro Laptop,1,1700,12/07/19 15:24,"430 South St, Atlanta, GA 30301" +312072,USB-C Charging Cable,1,11.95,12/04/19 13:53,"695 4th St, San Francisco, CA 94016" +312073,USB-C Charging Cable,1,11.95,12/11/19 17:49,"554 5th St, Atlanta, GA 30301" +312074,AA Batteries (4-pack),3,3.84,12/15/19 14:02,"731 6th St, Seattle, WA 98101" +312075,AA Batteries (4-pack),1,3.84,12/02/19 10:02,"678 Jefferson St, Portland, ME 04101" +312076,AAA Batteries (4-pack),1,2.99,12/06/19 22:17,"691 11th St, Atlanta, GA 30301" +312077,AA Batteries (4-pack),2,3.84,12/14/19 19:15,"497 Washington St, Los Angeles, CA 90001" +312078,AAA Batteries (4-pack),1,2.99,12/29/19 13:18,"313 Meadow St, San Francisco, CA 94016" +312079,AAA Batteries (4-pack),1,2.99,12/17/19 06:30,"469 Johnson St, Los Angeles, CA 90001" +312079,Macbook Pro Laptop,1,1700,12/17/19 06:30,"469 Johnson St, Los Angeles, CA 90001" +312080,iPhone,1,700,12/31/19 22:05,"576 Main St, Los Angeles, CA 90001" +312081,27in 4K Gaming Monitor,1,389.99,12/23/19 13:29,"937 13th St, Los Angeles, CA 90001" +312082,Bose SoundSport Headphones,1,99.99,12/14/19 14:04,"261 Forest St, San Francisco, CA 94016" +312083,iPhone,1,700,12/14/19 11:18,"35 Lincoln St, New York City, NY 10001" +312084,AA Batteries (4-pack),1,3.84,12/04/19 16:19,"185 10th St, San Francisco, CA 94016" +312085,AA Batteries (4-pack),3,3.84,12/20/19 16:07,"378 7th St, Portland, OR 97035" +312086,Apple Airpods Headphones,1,150,12/19/19 20:22,"190 Park St, Boston, MA 02215" +312087,27in FHD Monitor,1,149.99,12/03/19 10:44,"179 Spruce St, Boston, MA 02215" +312088,20in Monitor,1,109.99,12/17/19 10:25,"566 5th St, New York City, NY 10001" +312089,Wired Headphones,1,11.99,12/10/19 10:37,"610 Johnson St, New York City, NY 10001" +312090,ThinkPad Laptop,1,999.99,12/01/19 16:36,"633 Church St, Dallas, TX 75001" +312091,AAA Batteries (4-pack),1,2.99,12/16/19 17:10,"181 Maple St, Portland, OR 97035" +312092,USB-C Charging Cable,1,11.95,12/25/19 18:26,"933 West St, New York City, NY 10001" +312093,iPhone,1,700,12/03/19 15:25,"443 Jackson St, Boston, MA 02215" +312093,Lightning Charging Cable,1,14.95,12/03/19 15:25,"443 Jackson St, Boston, MA 02215" +312094,AA Batteries (4-pack),1,3.84,12/08/19 14:00,"326 6th St, Boston, MA 02215" +312095,AAA Batteries (4-pack),2,2.99,12/13/19 15:16,"566 Cedar St, New York City, NY 10001" +312096,Bose SoundSport Headphones,1,99.99,12/30/19 14:19,"721 Johnson St, New York City, NY 10001" +312097,USB-C Charging Cable,2,11.95,12/10/19 13:20,"597 Church St, Boston, MA 02215" +312098,Apple Airpods Headphones,1,150,12/11/19 19:54,"654 10th St, Los Angeles, CA 90001" +312099,AAA Batteries (4-pack),1,2.99,12/18/19 15:25,"750 Center St, San Francisco, CA 94016" +312099,USB-C Charging Cable,1,11.95,12/18/19 15:25,"750 Center St, San Francisco, CA 94016" +312100,34in Ultrawide Monitor,1,379.99,12/12/19 15:27,"471 Jackson St, Atlanta, GA 30301" +312101,USB-C Charging Cable,1,11.95,12/22/19 20:01,"175 Madison St, San Francisco, CA 94016" +312102,Lightning Charging Cable,1,14.95,12/21/19 09:50,"425 Madison St, Atlanta, GA 30301" +312103,USB-C Charging Cable,1,11.95,12/22/19 12:55,"292 Ridge St, Boston, MA 02215" +312104,Bose SoundSport Headphones,1,99.99,12/01/19 16:16,"645 South St, San Francisco, CA 94016" +312105,34in Ultrawide Monitor,1,379.99,12/26/19 11:53,"141 Hill St, San Francisco, CA 94016" +312106,27in FHD Monitor,1,149.99,12/28/19 16:59,"345 Lincoln St, Austin, TX 73301" +312107,Google Phone,1,600,12/05/19 08:26,"649 Hickory St, San Francisco, CA 94016" +312108,AAA Batteries (4-pack),1,2.99,12/31/19 14:17,"166 Lake St, Dallas, TX 75001" +312108,ThinkPad Laptop,1,999.99,12/31/19 14:17,"166 Lake St, Dallas, TX 75001" +312109,Wired Headphones,1,11.99,12/06/19 20:41,"339 Lakeview St, San Francisco, CA 94016" +312110,AA Batteries (4-pack),1,3.84,12/28/19 13:08,"114 North St, San Francisco, CA 94016" +312111,Google Phone,1,600,12/02/19 09:41,"530 13th St, Portland, OR 97035" +312112,Wired Headphones,1,11.99,12/27/19 23:09,"635 12th St, Seattle, WA 98101" +312113,AA Batteries (4-pack),1,3.84,12/27/19 08:33,"113 Chestnut St, Los Angeles, CA 90001" +312114,AA Batteries (4-pack),2,3.84,12/27/19 19:27,"71 Highland St, San Francisco, CA 94016" +312115,Bose SoundSport Headphones,1,99.99,12/12/19 17:06,"847 Willow St, San Francisco, CA 94016" +312116,Bose SoundSport Headphones,1,99.99,12/03/19 08:33,"867 Main St, Atlanta, GA 30301" +312117,Wired Headphones,1,11.99,12/12/19 18:45,"743 Johnson St, Austin, TX 73301" +312118,iPhone,1,700,12/22/19 17:23,"562 1st St, Boston, MA 02215" +312119,AAA Batteries (4-pack),1,2.99,12/25/19 10:54,"408 8th St, Dallas, TX 75001" +312120,Wired Headphones,1,11.99,12/19/19 12:07,"855 Elm St, Los Angeles, CA 90001" +312121,Google Phone,1,600,12/14/19 17:30,"217 Dogwood St, New York City, NY 10001" +312122,Apple Airpods Headphones,1,150,12/13/19 11:50,"396 Forest St, Atlanta, GA 30301" +312123,Vareebadd Phone,1,400,12/28/19 16:19,"497 West St, New York City, NY 10001" +312123,USB-C Charging Cable,2,11.95,12/28/19 16:19,"497 West St, New York City, NY 10001" +312124,27in FHD Monitor,1,149.99,12/04/19 22:33,"186 8th St, San Francisco, CA 94016" +312125,Wired Headphones,1,11.99,12/15/19 00:21,"806 Lake St, Boston, MA 02215" +312126,Bose SoundSport Headphones,1,99.99,12/19/19 10:13,"792 Pine St, Dallas, TX 75001" +312127,Lightning Charging Cable,1,14.95,12/10/19 14:51,"920 Johnson St, San Francisco, CA 94016" +312128,USB-C Charging Cable,1,11.95,12/08/19 17:49,"183 Lake St, Seattle, WA 98101" +312129,Lightning Charging Cable,1,14.95,12/27/19 19:01,"308 Wilson St, San Francisco, CA 94016" +312130,AA Batteries (4-pack),1,3.84,12/19/19 18:05,"811 Main St, Dallas, TX 75001" +312131,27in FHD Monitor,1,149.99,12/16/19 07:57,"856 1st St, Boston, MA 02215" +312132,20in Monitor,1,109.99,12/14/19 02:24,"535 River St, Los Angeles, CA 90001" +312133,Macbook Pro Laptop,1,1700,12/06/19 18:16,"110 Meadow St, Boston, MA 02215" +312134,AA Batteries (4-pack),1,3.84,12/26/19 09:25,"503 Center St, Los Angeles, CA 90001" +312135,AAA Batteries (4-pack),1,2.99,12/07/19 10:53,"942 Spruce St, New York City, NY 10001" +312136,AAA Batteries (4-pack),1,2.99,12/23/19 09:22,"712 14th St, San Francisco, CA 94016" +312137,Lightning Charging Cable,1,14.95,12/13/19 21:19,"530 11th St, San Francisco, CA 94016" +312138,AAA Batteries (4-pack),1,2.99,12/11/19 20:20,"289 Washington St, Los Angeles, CA 90001" +312139,USB-C Charging Cable,1,11.95,12/27/19 12:04,"150 Center St, Seattle, WA 98101" +312140,Lightning Charging Cable,1,14.95,12/02/19 21:23,"503 Center St, Atlanta, GA 30301" +312141,Wired Headphones,1,11.99,12/04/19 14:29,"390 Park St, Boston, MA 02215" +312142,AAA Batteries (4-pack),1,2.99,12/19/19 13:52,"194 10th St, San Francisco, CA 94016" +312143,Bose SoundSport Headphones,1,99.99,12/04/19 07:33,"835 Dogwood St, Boston, MA 02215" +312144,AAA Batteries (4-pack),1,2.99,12/23/19 17:25,"543 12th St, San Francisco, CA 94016" +312145,Google Phone,1,600,12/20/19 14:19,"434 13th St, Los Angeles, CA 90001" +312146,AAA Batteries (4-pack),1,2.99,12/05/19 16:58,"344 Main St, Portland, OR 97035" +312147,USB-C Charging Cable,2,11.95,12/09/19 13:12,"461 11th St, San Francisco, CA 94016" +312148,AAA Batteries (4-pack),5,2.99,12/12/19 08:45,"62 Walnut St, Atlanta, GA 30301" +312149,Vareebadd Phone,1,400,12/26/19 02:21,"245 Walnut St, San Francisco, CA 94016" +312149,USB-C Charging Cable,1,11.95,12/26/19 02:21,"245 Walnut St, San Francisco, CA 94016" +312150,Vareebadd Phone,1,400,01/01/20 00:14,"187 1st St, Los Angeles, CA 90001" +312151,AAA Batteries (4-pack),1,2.99,12/12/19 13:13,"934 River St, San Francisco, CA 94016" +312152,AA Batteries (4-pack),3,3.84,12/16/19 12:56,"142 Highland St, Boston, MA 02215" +312153,Lightning Charging Cable,1,14.95,12/17/19 13:54,"589 Forest St, Portland, OR 97035" +312154,iPhone,1,700,12/11/19 17:07,"173 Elm St, New York City, NY 10001" +312154,Apple Airpods Headphones,1,150,12/11/19 17:07,"173 Elm St, New York City, NY 10001" +312155,USB-C Charging Cable,1,11.95,12/16/19 16:24,"336 Park St, San Francisco, CA 94016" +312156,Flatscreen TV,1,300,12/09/19 16:43,"361 Maple St, Austin, TX 73301" +312157,USB-C Charging Cable,1,11.95,12/07/19 23:48,"764 Lake St, Atlanta, GA 30301" +312158,USB-C Charging Cable,1,11.95,12/31/19 19:56,"902 Dogwood St, Austin, TX 73301" +312159,34in Ultrawide Monitor,1,379.99,12/20/19 09:54,"149 Main St, Austin, TX 73301" +312160,AAA Batteries (4-pack),1,2.99,12/01/19 18:55,"912 Washington St, Dallas, TX 75001" +312161,Wired Headphones,1,11.99,12/03/19 21:17,"962 9th St, Dallas, TX 75001" +312162,27in 4K Gaming Monitor,1,389.99,12/26/19 16:24,"464 Adams St, Los Angeles, CA 90001" +312163,AA Batteries (4-pack),1,3.84,12/10/19 17:02,"790 Spruce St, San Francisco, CA 94016" +312164,USB-C Charging Cable,2,11.95,12/08/19 11:27,"180 11th St, Atlanta, GA 30301" +312165,AAA Batteries (4-pack),1,2.99,12/11/19 02:32,"963 Jefferson St, Los Angeles, CA 90001" +312166,27in 4K Gaming Monitor,1,389.99,12/06/19 02:26,"582 Hill St, Seattle, WA 98101" +312167,USB-C Charging Cable,1,11.95,01/01/20 00:10,"510 Dogwood St, Portland, OR 97035" +312168,Wired Headphones,1,11.99,12/03/19 16:07,"991 Lakeview St, Atlanta, GA 30301" +312169,Lightning Charging Cable,1,14.95,12/08/19 18:43,"357 11th St, New York City, NY 10001" +312170,Apple Airpods Headphones,1,150,12/10/19 22:12,"606 5th St, Atlanta, GA 30301" +312171,iPhone,1,700,12/25/19 14:25,"473 Meadow St, New York City, NY 10001" +312172,AAA Batteries (4-pack),1,2.99,12/23/19 07:53,"876 Lake St, Atlanta, GA 30301" +312172,Google Phone,1,600,12/23/19 07:53,"876 Lake St, Atlanta, GA 30301" +312173,USB-C Charging Cable,1,11.95,12/18/19 04:56,"912 7th St, Dallas, TX 75001" +312174,USB-C Charging Cable,1,11.95,12/30/19 16:56,"18 Meadow St, Portland, OR 97035" +312175,Vareebadd Phone,1,400,12/13/19 18:59,"703 North St, Atlanta, GA 30301" +312175,AAA Batteries (4-pack),1,2.99,12/13/19 18:59,"703 North St, Atlanta, GA 30301" +312176,AA Batteries (4-pack),1,3.84,12/10/19 10:21,"819 1st St, Los Angeles, CA 90001" +312177,Wired Headphones,1,11.99,12/28/19 20:27,"342 Elm St, New York City, NY 10001" +312178,Apple Airpods Headphones,1,150,12/11/19 12:59,"488 Madison St, Dallas, TX 75001" +312179,27in 4K Gaming Monitor,1,389.99,12/21/19 15:51,"661 Maple St, Los Angeles, CA 90001" +312180,USB-C Charging Cable,1,11.95,12/01/19 08:31,"723 Jefferson St, Dallas, TX 75001" +312181,AA Batteries (4-pack),1,3.84,12/19/19 19:18,"52 River St, Los Angeles, CA 90001" +312182,Wired Headphones,1,11.99,12/22/19 08:30,"745 Main St, Dallas, TX 75001" +312183,AA Batteries (4-pack),1,3.84,12/24/19 12:36,"767 South St, Atlanta, GA 30301" +312184,Lightning Charging Cable,1,14.95,12/29/19 17:28,"398 Chestnut St, San Francisco, CA 94016" +312185,Apple Airpods Headphones,1,150,12/19/19 18:12,"245 4th St, Portland, ME 04101" +312186,Wired Headphones,2,11.99,12/04/19 22:29,"691 12th St, Los Angeles, CA 90001" +312187,27in 4K Gaming Monitor,1,389.99,12/07/19 22:09,"892 Meadow St, Portland, OR 97035" +312188,iPhone,1,700,12/10/19 12:06,"407 Sunset St, San Francisco, CA 94016" +312189,AA Batteries (4-pack),1,3.84,12/03/19 07:59,"665 Pine St, Los Angeles, CA 90001" +312190,AA Batteries (4-pack),1,3.84,12/08/19 21:05,"51 10th St, Boston, MA 02215" +312191,Wired Headphones,1,11.99,12/24/19 07:59,"68 6th St, San Francisco, CA 94016" +312192,34in Ultrawide Monitor,1,379.99,12/25/19 12:40,"201 Cherry St, San Francisco, CA 94016" +312193,AAA Batteries (4-pack),3,2.99,12/23/19 09:14,"60 10th St, San Francisco, CA 94016" +312194,AAA Batteries (4-pack),1,2.99,12/20/19 16:27,"32 Lakeview St, Portland, ME 04101" +312195,27in FHD Monitor,1,149.99,12/21/19 17:17,"913 West St, Los Angeles, CA 90001" +312196,USB-C Charging Cable,1,11.95,12/08/19 20:15,"246 Jackson St, Dallas, TX 75001" +312197,USB-C Charging Cable,1,11.95,12/14/19 23:33,"749 Walnut St, San Francisco, CA 94016" +312198,Apple Airpods Headphones,1,150,12/31/19 10:46,"504 River St, Los Angeles, CA 90001" +312199,AAA Batteries (4-pack),2,2.99,12/28/19 09:53,"861 Lincoln St, San Francisco, CA 94016" +312200,AA Batteries (4-pack),1,3.84,12/07/19 18:50,"592 Elm St, Austin, TX 73301" +312201,Lightning Charging Cable,1,14.95,12/04/19 11:30,"641 West St, Atlanta, GA 30301" +312202,Vareebadd Phone,1,400,12/05/19 14:40,"800 South St, Austin, TX 73301" +312203,AA Batteries (4-pack),1,3.84,12/28/19 22:35,"741 5th St, Dallas, TX 75001" +312204,USB-C Charging Cable,1,11.95,12/30/19 22:27,"307 Highland St, Portland, OR 97035" +312205,USB-C Charging Cable,1,11.95,12/17/19 11:11,"166 Main St, Los Angeles, CA 90001" +312206,34in Ultrawide Monitor,1,379.99,12/31/19 19:03,"853 Elm St, New York City, NY 10001" +312207,AA Batteries (4-pack),1,3.84,12/23/19 08:37,"879 9th St, Boston, MA 02215" +312208,Lightning Charging Cable,1,14.95,12/27/19 10:39,"992 Elm St, San Francisco, CA 94016" +312209,Apple Airpods Headphones,1,150,12/19/19 22:58,"413 Wilson St, Los Angeles, CA 90001" +312210,USB-C Charging Cable,1,11.95,12/07/19 11:26,"888 Washington St, Boston, MA 02215" +312211,Flatscreen TV,1,300,12/02/19 20:09,"755 West St, Boston, MA 02215" +312212,Google Phone,1,600,12/16/19 15:03,"456 Meadow St, San Francisco, CA 94016" +312212,USB-C Charging Cable,1,11.95,12/16/19 15:03,"456 Meadow St, San Francisco, CA 94016" +312213,AAA Batteries (4-pack),1,2.99,12/12/19 21:19,"64 Lincoln St, Portland, OR 97035" +312214,USB-C Charging Cable,1,11.95,12/21/19 15:23,"409 12th St, Los Angeles, CA 90001" +312215,USB-C Charging Cable,1,11.95,12/20/19 18:16,"993 Cherry St, New York City, NY 10001" +312216,Bose SoundSport Headphones,1,99.99,12/14/19 21:10,"864 Adams St, Boston, MA 02215" +312217,Flatscreen TV,1,300,12/27/19 02:46,"435 Jackson St, San Francisco, CA 94016" +312218,AA Batteries (4-pack),1,3.84,12/28/19 20:03,"281 Chestnut St, Dallas, TX 75001" +312219,Bose SoundSport Headphones,1,99.99,12/02/19 08:49,"154 South St, San Francisco, CA 94016" +312220,AAA Batteries (4-pack),1,2.99,12/16/19 11:44,"389 Main St, New York City, NY 10001" +312221,Bose SoundSport Headphones,1,99.99,12/14/19 19:44,"349 13th St, Los Angeles, CA 90001" +312222,LG Dryer,1,600.0,12/25/19 14:29,"975 2nd St, Atlanta, GA 30301" +312223,34in Ultrawide Monitor,1,379.99,12/20/19 09:06,"102 Main St, Dallas, TX 75001" +312224,Wired Headphones,1,11.99,12/24/19 00:50,"122 6th St, Portland, ME 04101" +312225,USB-C Charging Cable,2,11.95,12/23/19 21:12,"132 6th St, New York City, NY 10001" +312226,Wired Headphones,1,11.99,12/19/19 20:44,"20 8th St, San Francisco, CA 94016" +312227,27in 4K Gaming Monitor,1,389.99,12/03/19 14:23,"539 Sunset St, San Francisco, CA 94016" +312228,Bose SoundSport Headphones,1,99.99,12/13/19 08:59,"742 Hickory St, Atlanta, GA 30301" +312229,AA Batteries (4-pack),1,3.84,12/02/19 18:54,"804 Dogwood St, San Francisco, CA 94016" +312230,Google Phone,1,600,12/02/19 17:28,"34 Hickory St, San Francisco, CA 94016" +312231,AA Batteries (4-pack),2,3.84,12/18/19 22:08,"781 Ridge St, Los Angeles, CA 90001" +312232,27in 4K Gaming Monitor,1,389.99,12/20/19 10:32,"185 West St, Seattle, WA 98101" +312233,Wired Headphones,1,11.99,12/17/19 11:56,"44 4th St, New York City, NY 10001" +312234,Lightning Charging Cable,1,14.95,12/20/19 10:16,"853 1st St, San Francisco, CA 94016" +312235,AAA Batteries (4-pack),5,2.99,12/14/19 19:49,"275 Lake St, Los Angeles, CA 90001" +312236,AAA Batteries (4-pack),1,2.99,12/10/19 12:20,"775 Main St, Los Angeles, CA 90001" +312237,34in Ultrawide Monitor,1,379.99,12/13/19 12:41,"880 Forest St, San Francisco, CA 94016" +312238,Flatscreen TV,1,300,12/21/19 09:20,"567 Chestnut St, Seattle, WA 98101" +312239,AAA Batteries (4-pack),1,2.99,12/23/19 17:10,"997 13th St, San Francisco, CA 94016" +312240,USB-C Charging Cable,1,11.95,12/11/19 17:13,"426 Forest St, Seattle, WA 98101" +312241,Apple Airpods Headphones,1,150,12/19/19 10:19,"783 12th St, Boston, MA 02215" +312242,Apple Airpods Headphones,1,150,12/15/19 13:07,"55 6th St, Atlanta, GA 30301" +312243,Google Phone,1,600,12/11/19 19:21,"119 Forest St, Dallas, TX 75001" +312244,27in FHD Monitor,1,149.99,12/03/19 18:05,"753 7th St, Portland, OR 97035" +312245,Wired Headphones,1,11.99,12/31/19 10:41,"896 12th St, Boston, MA 02215" +312246,Wired Headphones,2,11.99,12/21/19 13:37,"288 Dogwood St, San Francisco, CA 94016" +312247,USB-C Charging Cable,1,11.95,12/14/19 11:46,"720 Madison St, New York City, NY 10001" +312248,AA Batteries (4-pack),1,3.84,12/14/19 20:47,"567 Pine St, Austin, TX 73301" +312249,27in FHD Monitor,1,149.99,12/05/19 18:18,"806 River St, Portland, OR 97035" +312250,Lightning Charging Cable,1,14.95,12/18/19 12:59,"314 Hickory St, New York City, NY 10001" +312251,Lightning Charging Cable,1,14.95,12/31/19 15:59,"604 Cedar St, San Francisco, CA 94016" +312252,Flatscreen TV,1,300,12/09/19 20:51,"375 Highland St, Seattle, WA 98101" +312253,Wired Headphones,1,11.99,12/23/19 21:57,"636 West St, Portland, ME 04101" +312254,Lightning Charging Cable,1,14.95,12/23/19 22:15,"211 Cherry St, Los Angeles, CA 90001" +312255,AAA Batteries (4-pack),1,2.99,12/20/19 12:47,"186 13th St, Atlanta, GA 30301" +312256,Lightning Charging Cable,1,14.95,12/02/19 20:53,"53 Cherry St, Atlanta, GA 30301" +312257,Google Phone,1,600,12/10/19 23:15,"833 4th St, New York City, NY 10001" +312258,Apple Airpods Headphones,1,150,12/13/19 06:33,"882 Jackson St, San Francisco, CA 94016" +312259,AAA Batteries (4-pack),2,2.99,12/31/19 16:29,"569 Pine St, San Francisco, CA 94016" +312260,Lightning Charging Cable,1,14.95,12/07/19 08:00,"881 9th St, Seattle, WA 98101" +312261,USB-C Charging Cable,1,11.95,12/30/19 18:02,"962 9th St, Atlanta, GA 30301" +312262,iPhone,1,700,12/13/19 15:50,"444 Dogwood St, New York City, NY 10001" +312262,Lightning Charging Cable,1,14.95,12/13/19 15:50,"444 Dogwood St, New York City, NY 10001" +312263,Wired Headphones,1,11.99,12/16/19 17:54,"856 Walnut St, Dallas, TX 75001" +312264,Vareebadd Phone,1,400,12/05/19 20:45,"534 9th St, Seattle, WA 98101" +312265,USB-C Charging Cable,1,11.95,12/03/19 22:18,"249 Madison St, Portland, OR 97035" +312266,USB-C Charging Cable,1,11.95,12/13/19 15:53,"378 5th St, San Francisco, CA 94016" +312267,USB-C Charging Cable,1,11.95,12/22/19 13:27,"453 Lake St, New York City, NY 10001" +312268,Wired Headphones,1,11.99,12/23/19 21:59,"999 Cedar St, Austin, TX 73301" +312269,Google Phone,1,600,12/28/19 13:47,"879 Wilson St, San Francisco, CA 94016" +312270,Wired Headphones,2,11.99,12/14/19 15:16,"902 Forest St, Portland, OR 97035" +312271,Wired Headphones,1,11.99,12/02/19 18:04,"551 5th St, Atlanta, GA 30301" +312272,Lightning Charging Cable,1,14.95,12/14/19 20:06,"309 Willow St, New York City, NY 10001" +312273,Apple Airpods Headphones,1,150,12/06/19 15:36,"75 Jefferson St, Seattle, WA 98101" +312274,Wired Headphones,1,11.99,12/20/19 09:48,"645 River St, San Francisco, CA 94016" +312275,Lightning Charging Cable,1,14.95,12/24/19 13:38,"88 Hill St, Atlanta, GA 30301" +312276,AA Batteries (4-pack),1,3.84,12/05/19 13:51,"851 Lincoln St, Boston, MA 02215" +312277,iPhone,1,700,12/09/19 12:41,"328 Church St, San Francisco, CA 94016" +312278,Wired Headphones,1,11.99,12/23/19 16:22,"720 Willow St, Boston, MA 02215" +312279,Macbook Pro Laptop,1,1700,12/18/19 20:07,"813 South St, Los Angeles, CA 90001" +312280,Wired Headphones,1,11.99,12/25/19 16:50,"594 9th St, Los Angeles, CA 90001" +312281,Google Phone,1,600,12/26/19 14:55,"944 8th St, Boston, MA 02215" +312281,USB-C Charging Cable,1,11.95,12/26/19 14:55,"944 8th St, Boston, MA 02215" +312281,Bose SoundSport Headphones,1,99.99,12/26/19 14:55,"944 8th St, Boston, MA 02215" +312282,Lightning Charging Cable,1,14.95,12/06/19 11:45,"267 Adams St, Dallas, TX 75001" +312283,Flatscreen TV,1,300,12/30/19 19:14,"572 Spruce St, New York City, NY 10001" +312284,Apple Airpods Headphones,1,150,12/24/19 13:26,"803 Chestnut St, Los Angeles, CA 90001" +312285,AA Batteries (4-pack),2,3.84,12/23/19 07:31,"241 Cedar St, Los Angeles, CA 90001" +312286,AA Batteries (4-pack),2,3.84,12/04/19 21:40,"147 11th St, New York City, NY 10001" +312287,Apple Airpods Headphones,1,150,12/26/19 14:49,"656 9th St, San Francisco, CA 94016" +312288,27in 4K Gaming Monitor,1,389.99,12/15/19 17:48,"12 14th St, San Francisco, CA 94016" +312289,Lightning Charging Cable,2,14.95,12/29/19 13:01,"228 7th St, Los Angeles, CA 90001" +312290,Bose SoundSport Headphones,1,99.99,12/09/19 15:32,"717 South St, Boston, MA 02215" +312291,Wired Headphones,1,11.99,12/23/19 15:48,"809 Jefferson St, Atlanta, GA 30301" +312292,USB-C Charging Cable,1,11.95,12/29/19 01:36,"600 Johnson St, Seattle, WA 98101" +312293,27in FHD Monitor,1,149.99,12/05/19 12:48,"25 12th St, Boston, MA 02215" +312294,Flatscreen TV,1,300,12/31/19 09:56,"962 Center St, Los Angeles, CA 90001" +312295,AA Batteries (4-pack),1,3.84,12/22/19 22:49,"798 7th St, Boston, MA 02215" +312296,Wired Headphones,1,11.99,12/29/19 18:41,"983 Lincoln St, Dallas, TX 75001" +312297,Apple Airpods Headphones,1,150,12/23/19 12:01,"344 Jefferson St, New York City, NY 10001" +312298,AAA Batteries (4-pack),1,2.99,12/12/19 12:27,"332 Hill St, Atlanta, GA 30301" +312299,34in Ultrawide Monitor,1,379.99,12/03/19 17:46,"960 River St, New York City, NY 10001" +312300,AA Batteries (4-pack),3,3.84,12/22/19 19:11,"890 West St, Boston, MA 02215" +312301,USB-C Charging Cable,1,11.95,12/07/19 19:40,"256 Hill St, Portland, ME 04101" +312302,Wired Headphones,1,11.99,12/06/19 11:51,"822 Madison St, San Francisco, CA 94016" +312303,Lightning Charging Cable,2,14.95,12/20/19 18:46,"289 13th St, Seattle, WA 98101" +312304,AAA Batteries (4-pack),3,2.99,12/06/19 21:50,"874 13th St, Los Angeles, CA 90001" +312305,Wired Headphones,1,11.99,12/23/19 15:30,"229 Meadow St, San Francisco, CA 94016" +312306,AA Batteries (4-pack),1,3.84,12/06/19 19:15,"716 Sunset St, Seattle, WA 98101" +312307,AAA Batteries (4-pack),1,2.99,12/07/19 22:31,"435 Center St, Dallas, TX 75001" +312308,27in FHD Monitor,1,149.99,12/26/19 20:32,"982 Highland St, Dallas, TX 75001" +312309,AA Batteries (4-pack),1,3.84,12/16/19 11:40,"978 Church St, Atlanta, GA 30301" +312310,AAA Batteries (4-pack),1,2.99,12/18/19 07:47,"945 Wilson St, Dallas, TX 75001" +312311,Bose SoundSport Headphones,1,99.99,12/22/19 20:38,"404 Willow St, San Francisco, CA 94016" +312312,AAA Batteries (4-pack),2,2.99,12/18/19 20:45,"826 Dogwood St, Seattle, WA 98101" +312313,Lightning Charging Cable,1,14.95,12/13/19 22:40,"601 Elm St, San Francisco, CA 94016" +312314,AA Batteries (4-pack),2,3.84,12/11/19 09:36,"951 Lincoln St, Dallas, TX 75001" +312315,USB-C Charging Cable,1,11.95,12/01/19 06:00,"30 Madison St, Los Angeles, CA 90001" +312316,Wired Headphones,1,11.99,12/31/19 20:01,"970 Park St, Boston, MA 02215" +312317,Apple Airpods Headphones,1,150,12/08/19 19:04,"7 Madison St, San Francisco, CA 94016" +312318,USB-C Charging Cable,1,11.95,12/11/19 18:51,"705 4th St, New York City, NY 10001" +312319,AA Batteries (4-pack),1,3.84,12/20/19 15:37,"46 Chestnut St, Boston, MA 02215" +312320,Bose SoundSport Headphones,1,99.99,12/20/19 12:55,"381 Chestnut St, San Francisco, CA 94016" +312321,Bose SoundSport Headphones,1,99.99,12/10/19 13:27,"287 Park St, Boston, MA 02215" +312322,27in FHD Monitor,1,149.99,12/16/19 08:38,"846 Meadow St, Boston, MA 02215" +312323,Lightning Charging Cable,2,14.95,12/18/19 17:17,"694 13th St, San Francisco, CA 94016" +312324,27in 4K Gaming Monitor,1,389.99,12/11/19 19:59,"171 1st St, San Francisco, CA 94016" +312325,Apple Airpods Headphones,1,150,12/28/19 09:34,"805 6th St, Seattle, WA 98101" +312326,Macbook Pro Laptop,1,1700,12/04/19 15:34,"721 Walnut St, San Francisco, CA 94016" +312327,Wired Headphones,1,11.99,12/24/19 00:01,"818 River St, Dallas, TX 75001" +312328,USB-C Charging Cable,1,11.95,12/10/19 16:41,"687 Main St, Dallas, TX 75001" +312329,Wired Headphones,1,11.99,12/20/19 14:39,"29 Lakeview St, New York City, NY 10001" +312330,USB-C Charging Cable,1,11.95,12/25/19 11:50,"646 Jefferson St, Portland, ME 04101" +312331,AAA Batteries (4-pack),3,2.99,12/11/19 20:15,"875 Chestnut St, Boston, MA 02215" +312332,Wired Headphones,3,11.99,12/08/19 13:56,"40 Lake St, Boston, MA 02215" +312333,Wired Headphones,1,11.99,12/02/19 23:03,"716 12th St, Los Angeles, CA 90001" +312334,USB-C Charging Cable,1,11.95,12/25/19 12:19,"206 10th St, San Francisco, CA 94016" +312335,Wired Headphones,1,11.99,12/10/19 23:52,"886 Lake St, New York City, NY 10001" +312336,ThinkPad Laptop,1,999.99,12/07/19 12:38,"150 Church St, New York City, NY 10001" +312337,AA Batteries (4-pack),1,3.84,12/19/19 16:51,"718 South St, San Francisco, CA 94016" +312338,Wired Headphones,1,11.99,12/23/19 13:15,"924 Meadow St, San Francisco, CA 94016" +312339,34in Ultrawide Monitor,1,379.99,12/06/19 07:42,"695 6th St, San Francisco, CA 94016" +312340,Lightning Charging Cable,1,14.95,12/06/19 19:51,"232 Cherry St, Los Angeles, CA 90001" +312341,AAA Batteries (4-pack),1,2.99,12/29/19 13:06,"24 Lincoln St, Seattle, WA 98101" +312341,Apple Airpods Headphones,1,150,12/29/19 13:06,"24 Lincoln St, Seattle, WA 98101" +312342,Lightning Charging Cable,1,14.95,12/15/19 21:58,"128 River St, New York City, NY 10001" +312343,Macbook Pro Laptop,1,1700,12/11/19 12:36,"370 Forest St, Los Angeles, CA 90001" +312344,Lightning Charging Cable,1,14.95,12/31/19 11:30,"913 13th St, Portland, OR 97035" +312345,Apple Airpods Headphones,1,150,12/28/19 17:36,"238 Adams St, New York City, NY 10001" +312346,AA Batteries (4-pack),1,3.84,12/12/19 15:29,"989 8th St, New York City, NY 10001" +312347,USB-C Charging Cable,1,11.95,12/18/19 17:41,"134 Jackson St, Boston, MA 02215" +312348,Flatscreen TV,1,300,12/10/19 17:18,"992 Hill St, Portland, OR 97035" +312349,Lightning Charging Cable,1,14.95,12/07/19 11:11,"828 4th St, New York City, NY 10001" +312350,Bose SoundSport Headphones,1,99.99,12/29/19 12:28,"927 South St, Boston, MA 02215" +,,,,, +312351,Bose SoundSport Headphones,1,99.99,12/23/19 18:49,"487 11th St, Los Angeles, CA 90001" +312352,27in FHD Monitor,1,149.99,12/28/19 06:34,"13 10th St, San Francisco, CA 94016" +312353,Google Phone,1,600,12/27/19 16:23,"702 6th St, Dallas, TX 75001" +312354,AA Batteries (4-pack),1,3.84,12/22/19 19:56,"258 Center St, Seattle, WA 98101" +312355,Wired Headphones,1,11.99,12/11/19 22:53,"939 10th St, Boston, MA 02215" +312356,Wired Headphones,1,11.99,12/10/19 13:00,"983 Ridge St, San Francisco, CA 94016" +312357,Apple Airpods Headphones,1,150,12/03/19 20:06,"317 Lakeview St, Atlanta, GA 30301" +312358,USB-C Charging Cable,1,11.95,12/26/19 19:15,"224 Adams St, New York City, NY 10001" +312359,USB-C Charging Cable,1,11.95,12/19/19 18:22,"858 Wilson St, Dallas, TX 75001" +312360,Wired Headphones,1,11.99,12/28/19 21:17,"717 Willow St, Los Angeles, CA 90001" +312361,iPhone,1,700,12/02/19 22:47,"774 Main St, Los Angeles, CA 90001" +312361,Lightning Charging Cable,1,14.95,12/02/19 22:47,"774 Main St, Los Angeles, CA 90001" +312362,Apple Airpods Headphones,1,150,12/06/19 10:45,"115 6th St, Seattle, WA 98101" +312363,Wired Headphones,1,11.99,12/01/19 08:56,"475 Maple St, Boston, MA 02215" +312364,Wired Headphones,1,11.99,12/13/19 18:02,"640 Jackson St, Portland, OR 97035" +312365,Google Phone,1,600,12/23/19 04:49,"507 Jefferson St, Dallas, TX 75001" +312365,Wired Headphones,1,11.99,12/23/19 04:49,"507 Jefferson St, Dallas, TX 75001" +312366,USB-C Charging Cable,1,11.95,12/02/19 11:41,"727 13th St, Los Angeles, CA 90001" +312367,Wired Headphones,1,11.99,12/08/19 09:59,"475 2nd St, Boston, MA 02215" +312368,AAA Batteries (4-pack),1,2.99,12/19/19 14:09,"650 9th St, San Francisco, CA 94016" +312369,Lightning Charging Cable,1,14.95,12/11/19 11:28,"684 Sunset St, Boston, MA 02215" +312370,Google Phone,1,600,12/15/19 11:49,"936 Center St, Boston, MA 02215" +312371,Macbook Pro Laptop,1,1700,12/06/19 11:02,"484 Pine St, San Francisco, CA 94016" +312372,Lightning Charging Cable,1,14.95,12/27/19 09:24,"831 Highland St, Austin, TX 73301" +312373,USB-C Charging Cable,1,11.95,12/24/19 23:15,"633 South St, Los Angeles, CA 90001" +312374,Apple Airpods Headphones,1,150,12/10/19 21:41,"425 Chestnut St, Boston, MA 02215" +312375,AA Batteries (4-pack),1,3.84,12/21/19 22:13,"830 Walnut St, Dallas, TX 75001" +312376,Apple Airpods Headphones,1,150,12/24/19 16:57,"804 River St, Boston, MA 02215" +312377,Lightning Charging Cable,1,14.95,12/28/19 11:07,"625 Jefferson St, Dallas, TX 75001" +312378,AA Batteries (4-pack),1,3.84,12/17/19 21:28,"970 9th St, Portland, OR 97035" +312379,AA Batteries (4-pack),1,3.84,12/27/19 13:41,"342 14th St, Atlanta, GA 30301" +312380,USB-C Charging Cable,1,11.95,12/12/19 15:07,"525 Forest St, Los Angeles, CA 90001" +312381,Lightning Charging Cable,1,14.95,12/20/19 21:00,"743 12th St, New York City, NY 10001" +312382,Google Phone,1,600,12/23/19 12:57,"773 8th St, Portland, OR 97035" +312383,27in FHD Monitor,1,149.99,12/22/19 15:13,"954 Maple St, San Francisco, CA 94016" +312384,Wired Headphones,1,11.99,12/09/19 19:21,"535 11th St, Los Angeles, CA 90001" +312385,AAA Batteries (4-pack),1,2.99,12/14/19 21:46,"174 Meadow St, San Francisco, CA 94016" +312386,AA Batteries (4-pack),2,3.84,12/29/19 12:13,"220 Walnut St, Portland, OR 97035" +312387,ThinkPad Laptop,1,999.99,12/19/19 18:50,"745 Lincoln St, Los Angeles, CA 90001" +312388,Apple Airpods Headphones,1,150,12/05/19 15:33,"952 Forest St, Los Angeles, CA 90001" +312389,20in Monitor,1,109.99,12/21/19 16:14,"23 10th St, Los Angeles, CA 90001" +312390,AA Batteries (4-pack),1,3.84,12/06/19 12:29,"732 Main St, Portland, ME 04101" +312391,Apple Airpods Headphones,1,150,12/16/19 16:55,"939 Meadow St, New York City, NY 10001" +312392,Lightning Charging Cable,1,14.95,12/29/19 11:50,"725 Church St, New York City, NY 10001" +312393,iPhone,1,700,12/26/19 22:05,"581 2nd St, Boston, MA 02215" +312394,AA Batteries (4-pack),1,3.84,12/26/19 13:18,"316 Johnson St, Austin, TX 73301" +312395,AA Batteries (4-pack),1,3.84,12/19/19 19:08,"190 1st St, Los Angeles, CA 90001" +312396,Lightning Charging Cable,1,14.95,12/11/19 18:12,"526 Cherry St, San Francisco, CA 94016" +312397,Bose SoundSport Headphones,1,99.99,12/19/19 15:29,"446 11th St, San Francisco, CA 94016" +312398,USB-C Charging Cable,1,11.95,12/01/19 08:28,"266 7th St, San Francisco, CA 94016" +312399,Google Phone,1,600,12/01/19 22:26,"150 Dogwood St, Atlanta, GA 30301" +312400,Lightning Charging Cable,1,14.95,12/15/19 09:54,"158 6th St, Los Angeles, CA 90001" +312401,Apple Airpods Headphones,1,150,12/10/19 22:22,"589 Sunset St, Seattle, WA 98101" +312402,34in Ultrawide Monitor,1,379.99,12/22/19 19:52,"155 4th St, New York City, NY 10001" +312403,AAA Batteries (4-pack),1,2.99,12/17/19 08:40,"619 Cedar St, New York City, NY 10001" +312404,Bose SoundSport Headphones,1,99.99,12/28/19 12:38,"71 13th St, Portland, OR 97035" +312405,AAA Batteries (4-pack),1,2.99,12/21/19 17:36,"291 South St, New York City, NY 10001" +312406,ThinkPad Laptop,1,999.99,12/27/19 16:39,"192 6th St, Atlanta, GA 30301" +312407,Lightning Charging Cable,1,14.95,12/14/19 16:51,"354 8th St, San Francisco, CA 94016" +312408,ThinkPad Laptop,1,999.99,12/12/19 20:38,"114 2nd St, Boston, MA 02215" +312408,Lightning Charging Cable,1,14.95,12/12/19 20:38,"114 2nd St, Boston, MA 02215" +312409,Apple Airpods Headphones,1,150,12/07/19 10:23,"190 8th St, San Francisco, CA 94016" +312410,iPhone,1,700,12/15/19 00:12,"436 Church St, Boston, MA 02215" +312410,Lightning Charging Cable,1,14.95,12/15/19 00:12,"436 Church St, Boston, MA 02215" +312411,Lightning Charging Cable,1,14.95,12/03/19 18:42,"467 Center St, Austin, TX 73301" +312412,iPhone,1,700,12/03/19 17:25,"214 2nd St, Seattle, WA 98101" +312412,Lightning Charging Cable,1,14.95,12/03/19 17:25,"214 2nd St, Seattle, WA 98101" +312413,27in FHD Monitor,1,149.99,12/16/19 11:17,"280 Hickory St, San Francisco, CA 94016" +312414,Bose SoundSport Headphones,1,99.99,12/31/19 12:49,"463 Walnut St, San Francisco, CA 94016" +312415,AA Batteries (4-pack),1,3.84,12/13/19 21:54,"315 North St, San Francisco, CA 94016" +312416,AA Batteries (4-pack),1,3.84,12/07/19 20:06,"434 7th St, New York City, NY 10001" +312417,Flatscreen TV,1,300,12/25/19 12:45,"111 Walnut St, Dallas, TX 75001" +312418,Lightning Charging Cable,1,14.95,12/27/19 18:45,"568 12th St, Austin, TX 73301" +312419,AAA Batteries (4-pack),3,2.99,12/09/19 13:04,"237 Highland St, New York City, NY 10001" +312420,AAA Batteries (4-pack),1,2.99,12/05/19 12:34,"427 Maple St, San Francisco, CA 94016" +312421,Apple Airpods Headphones,1,150,12/31/19 11:26,"375 Lakeview St, Portland, OR 97035" +312422,USB-C Charging Cable,1,11.95,12/07/19 15:35,"304 Wilson St, Boston, MA 02215" +312423,AA Batteries (4-pack),1,3.84,12/12/19 13:42,"136 West St, Los Angeles, CA 90001" +312424,27in 4K Gaming Monitor,1,389.99,12/04/19 17:53,"591 Lincoln St, Los Angeles, CA 90001" +312425,iPhone,1,700,12/04/19 11:28,"849 12th St, San Francisco, CA 94016" +312426,ThinkPad Laptop,1,999.99,12/09/19 13:15,"150 10th St, Boston, MA 02215" +312427,AAA Batteries (4-pack),2,2.99,12/21/19 11:42,"210 12th St, New York City, NY 10001" +312428,Lightning Charging Cable,1,14.95,12/15/19 21:03,"103 4th St, San Francisco, CA 94016" +312429,AA Batteries (4-pack),1,3.84,12/19/19 19:24,"878 Highland St, Dallas, TX 75001" +312430,Wired Headphones,1,11.99,12/04/19 12:10,"931 Jefferson St, Seattle, WA 98101" +312431,Apple Airpods Headphones,1,150,12/30/19 11:32,"60 Elm St, Atlanta, GA 30301" +312432,Lightning Charging Cable,1,14.95,12/09/19 12:59,"626 Johnson St, Austin, TX 73301" +312433,Lightning Charging Cable,1,14.95,12/14/19 13:13,"180 Spruce St, New York City, NY 10001" +312434,Lightning Charging Cable,1,14.95,12/01/19 07:57,"837 Jefferson St, New York City, NY 10001" +312435,USB-C Charging Cable,1,11.95,12/18/19 15:00,"612 Willow St, Boston, MA 02215" +312436,Flatscreen TV,1,300,12/25/19 11:57,"134 Pine St, New York City, NY 10001" +312437,USB-C Charging Cable,1,11.95,12/24/19 08:07,"778 Cherry St, Atlanta, GA 30301" +312438,USB-C Charging Cable,1,11.95,12/29/19 18:44,"812 Ridge St, San Francisco, CA 94016" +312439,AA Batteries (4-pack),1,3.84,12/20/19 10:44,"445 Adams St, New York City, NY 10001" +312440,USB-C Charging Cable,1,11.95,12/10/19 21:36,"727 Jackson St, Boston, MA 02215" +312441,20in Monitor,1,109.99,12/04/19 16:16,"366 7th St, Seattle, WA 98101" +312442,AAA Batteries (4-pack),1,2.99,12/09/19 06:09,"913 Hickory St, San Francisco, CA 94016" +312443,Lightning Charging Cable,1,14.95,12/13/19 10:25,"882 8th St, Boston, MA 02215" +312444,AA Batteries (4-pack),1,3.84,12/18/19 17:55,"602 Hickory St, Portland, ME 04101" +312445,Apple Airpods Headphones,1,150,12/27/19 20:37,"535 Jefferson St, San Francisco, CA 94016" +312446,ThinkPad Laptop,1,999.99,12/12/19 17:52,"766 Walnut St, San Francisco, CA 94016" +312447,Bose SoundSport Headphones,1,99.99,12/06/19 07:43,"836 West St, Seattle, WA 98101" +312448,Macbook Pro Laptop,1,1700,12/24/19 16:36,"579 Lincoln St, San Francisco, CA 94016" +312449,AAA Batteries (4-pack),2,2.99,12/21/19 17:24,"15 North St, New York City, NY 10001" +312450,USB-C Charging Cable,1,11.95,12/03/19 19:57,"491 Hickory St, Austin, TX 73301" +312451,AAA Batteries (4-pack),2,2.99,12/05/19 13:54,"859 Forest St, Seattle, WA 98101" +312451,AA Batteries (4-pack),1,3.84,12/05/19 13:54,"859 Forest St, Seattle, WA 98101" +312452,Google Phone,1,600,12/13/19 16:10,"646 6th St, Atlanta, GA 30301" +312452,USB-C Charging Cable,1,11.95,12/13/19 16:10,"646 6th St, Atlanta, GA 30301" +312453,Bose SoundSport Headphones,1,99.99,12/26/19 12:02,"556 Hickory St, Boston, MA 02215" +312454,AA Batteries (4-pack),1,3.84,12/05/19 11:19,"17 14th St, Los Angeles, CA 90001" +312455,Lightning Charging Cable,2,14.95,12/12/19 22:25,"958 Ridge St, Austin, TX 73301" +312456,USB-C Charging Cable,1,11.95,12/02/19 10:52,"689 Madison St, Seattle, WA 98101" +312457,Macbook Pro Laptop,1,1700,12/03/19 19:10,"379 6th St, Atlanta, GA 30301" +312457,27in FHD Monitor,1,149.99,12/03/19 19:10,"379 6th St, Atlanta, GA 30301" +312458,iPhone,1,700,12/17/19 14:44,"886 Lakeview St, Portland, ME 04101" +312459,Lightning Charging Cable,1,14.95,12/21/19 19:28,"408 13th St, Los Angeles, CA 90001" +312460,Bose SoundSport Headphones,1,99.99,12/16/19 07:44,"287 Jackson St, Atlanta, GA 30301" +312461,27in FHD Monitor,1,149.99,12/24/19 09:39,"80 13th St, San Francisco, CA 94016" +312462,Flatscreen TV,1,300,12/29/19 19:45,"842 1st St, Atlanta, GA 30301" +312463,USB-C Charging Cable,1,11.95,12/11/19 17:33,"935 Park St, Los Angeles, CA 90001" +312464,AAA Batteries (4-pack),1,2.99,12/06/19 15:22,"645 1st St, New York City, NY 10001" +312465,ThinkPad Laptop,1,999.99,12/02/19 19:23,"942 9th St, Dallas, TX 75001" +312466,AAA Batteries (4-pack),1,2.99,12/05/19 06:55,"314 West St, Dallas, TX 75001" +312467,AAA Batteries (4-pack),3,2.99,12/09/19 18:58,"986 Pine St, New York City, NY 10001" +312468,Lightning Charging Cable,1,14.95,12/22/19 15:00,"144 North St, San Francisco, CA 94016" +312469,27in FHD Monitor,1,149.99,12/19/19 10:49,"124 13th St, Los Angeles, CA 90001" +312470,AAA Batteries (4-pack),1,2.99,12/25/19 07:23,"263 12th St, Los Angeles, CA 90001" +312471,Apple Airpods Headphones,1,150,12/30/19 20:13,"595 Sunset St, Boston, MA 02215" +312472,Wired Headphones,2,11.99,12/29/19 12:43,"983 Walnut St, Los Angeles, CA 90001" +312473,Google Phone,1,600,12/12/19 13:28,"657 Lake St, Los Angeles, CA 90001" +312474,USB-C Charging Cable,3,11.95,12/22/19 08:52,"921 Walnut St, Austin, TX 73301" +312475,AAA Batteries (4-pack),1,2.99,12/27/19 21:53,"333 Park St, Dallas, TX 75001" +312476,USB-C Charging Cable,1,11.95,12/11/19 13:01,"767 Cedar St, San Francisco, CA 94016" +312477,LG Dryer,1,600.0,12/09/19 15:52,"245 6th St, San Francisco, CA 94016" +312478,AAA Batteries (4-pack),2,2.99,12/11/19 12:02,"243 9th St, New York City, NY 10001" +312479,27in FHD Monitor,1,149.99,12/28/19 06:30,"15 Hickory St, Austin, TX 73301" +312480,AAA Batteries (4-pack),2,2.99,12/23/19 14:11,"731 Ridge St, Portland, OR 97035" +312481,Apple Airpods Headphones,1,150,12/31/19 19:09,"991 4th St, New York City, NY 10001" +312482,Google Phone,1,600,12/23/19 10:21,"166 Lake St, Los Angeles, CA 90001" +312483,Bose SoundSport Headphones,1,99.99,12/13/19 19:44,"785 2nd St, Austin, TX 73301" +312484,Lightning Charging Cable,1,14.95,12/03/19 09:33,"586 Hickory St, Atlanta, GA 30301" +312485,AAA Batteries (4-pack),1,2.99,12/13/19 14:52,"749 Pine St, Seattle, WA 98101" +312486,20in Monitor,1,109.99,12/20/19 17:40,"997 Park St, New York City, NY 10001" +312487,Apple Airpods Headphones,1,150,12/24/19 15:27,"649 5th St, Seattle, WA 98101" +312488,Vareebadd Phone,1,400,12/07/19 19:39,"998 Forest St, Austin, TX 73301" +312489,Lightning Charging Cable,1,14.95,12/03/19 21:53,"417 South St, Atlanta, GA 30301" +312490,AA Batteries (4-pack),1,3.84,12/15/19 15:30,"983 8th St, San Francisco, CA 94016" +312491,USB-C Charging Cable,1,11.95,12/06/19 11:59,"805 Washington St, Los Angeles, CA 90001" +312492,Lightning Charging Cable,1,14.95,12/04/19 13:13,"220 Adams St, Seattle, WA 98101" +312493,AAA Batteries (4-pack),1,2.99,12/07/19 09:35,"319 Maple St, San Francisco, CA 94016" +312494,AA Batteries (4-pack),1,3.84,12/30/19 19:51,"230 Lake St, Seattle, WA 98101" +312495,27in 4K Gaming Monitor,1,389.99,12/08/19 18:17,"129 Wilson St, San Francisco, CA 94016" +312496,27in 4K Gaming Monitor,1,389.99,12/07/19 13:18,"51 South St, San Francisco, CA 94016" +312497,Flatscreen TV,1,300,12/04/19 23:02,"370 5th St, New York City, NY 10001" +312498,Apple Airpods Headphones,1,150,12/29/19 08:19,"379 Park St, Boston, MA 02215" +312499,Apple Airpods Headphones,1,150,12/14/19 15:21,"995 4th St, San Francisco, CA 94016" +312500,Flatscreen TV,1,300,12/20/19 16:55,"717 River St, Dallas, TX 75001" +312500,AA Batteries (4-pack),1,3.84,12/20/19 16:55,"717 River St, Dallas, TX 75001" +312501,20in Monitor,1,109.99,12/14/19 18:16,"978 Washington St, Boston, MA 02215" +312502,Apple Airpods Headphones,1,150,12/01/19 14:35,"656 2nd St, Dallas, TX 75001" +312503,USB-C Charging Cable,1,11.95,12/15/19 11:09,"123 Washington St, Boston, MA 02215" +312504,USB-C Charging Cable,1,11.95,12/23/19 19:51,"738 7th St, San Francisco, CA 94016" +312505,AAA Batteries (4-pack),2,2.99,12/31/19 11:54,"334 6th St, Dallas, TX 75001" +312506,27in FHD Monitor,1,149.99,12/21/19 16:09,"864 5th St, Dallas, TX 75001" +312507,AAA Batteries (4-pack),2,2.99,12/17/19 15:11,"703 Meadow St, Atlanta, GA 30301" +312508,iPhone,1,700,12/11/19 19:42,"614 Cedar St, Boston, MA 02215" +312509,USB-C Charging Cable,1,11.95,12/29/19 18:35,"340 Cedar St, Los Angeles, CA 90001" +312510,Apple Airpods Headphones,1,150,12/27/19 15:40,"1 Ridge St, San Francisco, CA 94016" +312511,Wired Headphones,1,11.99,12/05/19 18:24,"895 11th St, San Francisco, CA 94016" +312512,20in Monitor,1,109.99,12/02/19 23:06,"111 Park St, Los Angeles, CA 90001" +312513,AAA Batteries (4-pack),1,2.99,12/17/19 09:08,"921 5th St, San Francisco, CA 94016" +312514,ThinkPad Laptop,1,999.99,12/06/19 22:05,"606 Pine St, Atlanta, GA 30301" +312515,AA Batteries (4-pack),1,3.84,12/27/19 04:09,"553 Dogwood St, Atlanta, GA 30301" +312516,Wired Headphones,1,11.99,12/04/19 15:33,"307 West St, Austin, TX 73301" +312517,Apple Airpods Headphones,1,150,12/02/19 00:01,"380 Hickory St, New York City, NY 10001" +312518,Bose SoundSport Headphones,1,99.99,12/17/19 00:19,"600 Lakeview St, Boston, MA 02215" +312519,Google Phone,1,600,12/02/19 09:15,"416 Lincoln St, Dallas, TX 75001" +312519,Bose SoundSport Headphones,1,99.99,12/02/19 09:15,"416 Lincoln St, Dallas, TX 75001" +312520,Wired Headphones,1,11.99,12/07/19 19:49,"722 Madison St, Dallas, TX 75001" +312521,34in Ultrawide Monitor,1,379.99,12/17/19 09:44,"731 Walnut St, San Francisco, CA 94016" +312522,Wired Headphones,1,11.99,12/04/19 18:54,"641 Jackson St, Boston, MA 02215" +312523,Lightning Charging Cable,1,14.95,12/20/19 09:23,"238 Lakeview St, New York City, NY 10001" +312524,Bose SoundSport Headphones,1,99.99,12/09/19 11:32,"599 South St, New York City, NY 10001" +312525,AAA Batteries (4-pack),1,2.99,12/04/19 14:54,"798 Hill St, Los Angeles, CA 90001" +312526,USB-C Charging Cable,1,11.95,12/12/19 21:54,"500 6th St, Los Angeles, CA 90001" +312527,AAA Batteries (4-pack),1,2.99,12/24/19 09:19,"206 Madison St, Portland, OR 97035" +312528,AAA Batteries (4-pack),3,2.99,12/12/19 18:00,"649 Church St, New York City, NY 10001" +312529,27in FHD Monitor,1,149.99,12/25/19 16:50,"721 11th St, Portland, OR 97035" +312530,Macbook Pro Laptop,1,1700,12/08/19 10:35,"206 Lincoln St, San Francisco, CA 94016" +312531,AAA Batteries (4-pack),1,2.99,12/21/19 11:57,"181 14th St, Boston, MA 02215" +312532,Macbook Pro Laptop,1,1700,12/12/19 17:24,"15 Center St, New York City, NY 10001" +312533,Wired Headphones,1,11.99,12/20/19 13:36,"544 Dogwood St, Boston, MA 02215" +312534,AA Batteries (4-pack),1,3.84,12/26/19 19:39,"555 Sunset St, Atlanta, GA 30301" +312535,Wired Headphones,1,11.99,12/13/19 12:49,"441 6th St, Los Angeles, CA 90001" +312536,AAA Batteries (4-pack),1,2.99,12/15/19 22:31,"325 Park St, New York City, NY 10001" +312537,Bose SoundSport Headphones,1,99.99,12/29/19 01:19,"714 Willow St, San Francisco, CA 94016" +312538,Flatscreen TV,1,300,12/06/19 20:57,"143 8th St, San Francisco, CA 94016" +312539,USB-C Charging Cable,1,11.95,12/04/19 06:39,"347 Washington St, San Francisco, CA 94016" +312540,Apple Airpods Headphones,1,150,12/15/19 15:06,"205 1st St, Portland, ME 04101" +312541,AAA Batteries (4-pack),1,2.99,12/14/19 14:45,"53 Sunset St, Portland, OR 97035" +312542,AA Batteries (4-pack),1,3.84,12/11/19 15:46,"449 Forest St, San Francisco, CA 94016" +312543,USB-C Charging Cable,1,11.95,12/23/19 21:05,"57 7th St, Boston, MA 02215" +312544,iPhone,1,700,12/27/19 12:21,"546 14th St, Los Angeles, CA 90001" +312545,Wired Headphones,1,11.99,12/10/19 00:17,"24 Park St, Dallas, TX 75001" +312546,27in 4K Gaming Monitor,1,389.99,12/30/19 14:04,"242 Pine St, Portland, OR 97035" +312547,AA Batteries (4-pack),1,3.84,12/01/19 18:59,"665 Lake St, Los Angeles, CA 90001" +312548,Wired Headphones,1,11.99,12/16/19 23:22,"709 Johnson St, Seattle, WA 98101" +312549,Wired Headphones,1,11.99,12/28/19 09:35,"123 Willow St, Portland, OR 97035" +312550,Bose SoundSport Headphones,1,99.99,12/18/19 14:38,"868 North St, New York City, NY 10001" +312551,Lightning Charging Cable,1,14.95,12/23/19 13:01,"211 Jefferson St, Los Angeles, CA 90001" +312552,USB-C Charging Cable,1,11.95,12/30/19 12:06,"266 Cherry St, San Francisco, CA 94016" +312553,USB-C Charging Cable,1,11.95,12/04/19 17:34,"887 13th St, Los Angeles, CA 90001" +312554,Apple Airpods Headphones,1,150,12/05/19 11:59,"860 Lake St, Atlanta, GA 30301" +312555,27in 4K Gaming Monitor,1,389.99,12/01/19 20:04,"708 Cedar St, Atlanta, GA 30301" +312556,AA Batteries (4-pack),2,3.84,12/08/19 12:46,"909 Church St, Dallas, TX 75001" +312557,USB-C Charging Cable,1,11.95,12/16/19 07:48,"527 Jefferson St, Los Angeles, CA 90001" +312558,USB-C Charging Cable,1,11.95,12/20/19 06:03,"855 Sunset St, Dallas, TX 75001" +312559,iPhone,1,700,12/18/19 15:11,"833 Johnson St, Dallas, TX 75001" +312560,iPhone,1,700,12/16/19 19:47,"162 Dogwood St, San Francisco, CA 94016" +312561,Bose SoundSport Headphones,1,99.99,12/12/19 16:00,"581 2nd St, Portland, OR 97035" +312562,Wired Headphones,1,11.99,12/03/19 12:59,"780 Forest St, Portland, OR 97035" +312563,Apple Airpods Headphones,1,150,12/11/19 16:10,"885 Hill St, Atlanta, GA 30301" +312564,Lightning Charging Cable,1,14.95,12/02/19 17:54,"731 Hickory St, Portland, OR 97035" +312565,27in FHD Monitor,1,149.99,12/11/19 22:23,"856 Willow St, Los Angeles, CA 90001" +312566,Lightning Charging Cable,1,14.95,12/08/19 09:45,"330 Main St, San Francisco, CA 94016" +312567,USB-C Charging Cable,1,11.95,12/18/19 17:45,"830 River St, Portland, OR 97035" +312568,Wired Headphones,1,11.99,12/02/19 10:35,"198 Hill St, Portland, OR 97035" +312569,AA Batteries (4-pack),2,3.84,12/01/19 19:04,"56 14th St, San Francisco, CA 94016" +312570,AA Batteries (4-pack),1,3.84,12/23/19 18:01,"608 2nd St, Los Angeles, CA 90001" +312571,Lightning Charging Cable,1,14.95,12/11/19 17:32,"779 Highland St, Boston, MA 02215" +312572,AAA Batteries (4-pack),3,2.99,12/29/19 00:38,"983 North St, Los Angeles, CA 90001" +312573,Bose SoundSport Headphones,1,99.99,12/22/19 13:13,"804 Maple St, San Francisco, CA 94016" +312574,LG Washing Machine,1,600.0,12/17/19 20:53,"694 10th St, New York City, NY 10001" +312575,iPhone,1,700,12/13/19 14:18,"55 2nd St, San Francisco, CA 94016" +312576,Lightning Charging Cable,1,14.95,12/21/19 12:25,"95 Spruce St, San Francisco, CA 94016" +312577,27in 4K Gaming Monitor,1,389.99,12/08/19 07:07,"22 4th St, San Francisco, CA 94016" +312578,Apple Airpods Headphones,1,150,12/19/19 08:01,"676 13th St, Dallas, TX 75001" +312579,Lightning Charging Cable,1,14.95,12/28/19 16:53,"905 Pine St, Boston, MA 02215" +312580,ThinkPad Laptop,1,999.99,12/05/19 23:59,"85 Maple St, San Francisco, CA 94016" +312581,Apple Airpods Headphones,1,150,12/04/19 19:11,"555 8th St, San Francisco, CA 94016" +312582,Lightning Charging Cable,1,14.95,12/07/19 10:33,"815 North St, New York City, NY 10001" +312583,Apple Airpods Headphones,1,150,12/17/19 07:38,"783 Center St, San Francisco, CA 94016" +312584,34in Ultrawide Monitor,1,379.99,12/15/19 16:33,"36 Jefferson St, San Francisco, CA 94016" +312584,Wired Headphones,1,11.99,12/15/19 16:33,"36 Jefferson St, San Francisco, CA 94016" +312585,Wired Headphones,1,11.99,12/14/19 15:10,"551 Adams St, Boston, MA 02215" +312586,ThinkPad Laptop,1,999.99,12/08/19 08:16,"879 South St, Boston, MA 02215" +312587,27in 4K Gaming Monitor,1,389.99,12/24/19 10:27,"381 Johnson St, Portland, OR 97035" +312588,Bose SoundSport Headphones,1,99.99,12/29/19 12:14,"545 Jackson St, San Francisco, CA 94016" +312589,AAA Batteries (4-pack),1,2.99,12/22/19 09:24,"854 Hill St, Boston, MA 02215" +312590,Lightning Charging Cable,1,14.95,12/10/19 14:37,"228 2nd St, New York City, NY 10001" +312591,Lightning Charging Cable,1,14.95,12/11/19 19:28,"750 River St, New York City, NY 10001" +312592,Macbook Pro Laptop,1,1700,12/22/19 22:50,"198 7th St, Boston, MA 02215" +312593,Bose SoundSport Headphones,1,99.99,12/28/19 16:12,"70 Main St, Atlanta, GA 30301" +312594,AAA Batteries (4-pack),1,2.99,12/25/19 19:41,"968 South St, San Francisco, CA 94016" +312595,Apple Airpods Headphones,1,150,12/10/19 19:52,"385 Cedar St, Boston, MA 02215" +312596,Google Phone,1,600,12/22/19 22:21,"870 Adams St, New York City, NY 10001" +312597,Lightning Charging Cable,1,14.95,12/30/19 16:40,"312 Wilson St, New York City, NY 10001" +312598,Lightning Charging Cable,1,14.95,12/19/19 15:46,"147 Jefferson St, Atlanta, GA 30301" +312599,AAA Batteries (4-pack),1,2.99,12/08/19 21:44,"153 Chestnut St, Seattle, WA 98101" +312600,Wired Headphones,1,11.99,12/30/19 21:44,"220 Jackson St, New York City, NY 10001" +312601,USB-C Charging Cable,1,11.95,12/10/19 17:55,"295 Church St, Los Angeles, CA 90001" +312602,Macbook Pro Laptop,1,1700,12/02/19 07:45,"103 South St, New York City, NY 10001" +312603,20in Monitor,1,109.99,12/19/19 08:44,"476 West St, Seattle, WA 98101" +312604,AA Batteries (4-pack),1,3.84,12/17/19 13:08,"664 12th St, Atlanta, GA 30301" +312605,Wired Headphones,1,11.99,12/18/19 15:11,"957 2nd St, Atlanta, GA 30301" +312606,AA Batteries (4-pack),1,3.84,12/25/19 22:33,"336 Johnson St, San Francisco, CA 94016" +312607,Bose SoundSport Headphones,1,99.99,12/15/19 16:16,"471 Highland St, Boston, MA 02215" +312608,Vareebadd Phone,1,400,12/24/19 23:30,"353 Park St, Seattle, WA 98101" +312609,Bose SoundSport Headphones,1,99.99,12/26/19 12:07,"850 Wilson St, Austin, TX 73301" +312610,Lightning Charging Cable,1,14.95,12/01/19 14:54,"585 Maple St, Los Angeles, CA 90001" +312611,AA Batteries (4-pack),1,3.84,12/11/19 13:27,"477 Center St, San Francisco, CA 94016" +312612,AAA Batteries (4-pack),1,2.99,12/21/19 13:59,"195 Cherry St, San Francisco, CA 94016" +312613,USB-C Charging Cable,1,11.95,12/10/19 11:31,"878 Johnson St, New York City, NY 10001" +312614,34in Ultrawide Monitor,1,379.99,12/03/19 02:41,"820 1st St, Atlanta, GA 30301" +312615,AA Batteries (4-pack),2,3.84,12/24/19 15:36,"752 West St, Austin, TX 73301" +312616,USB-C Charging Cable,2,11.95,12/06/19 21:08,"56 Washington St, Los Angeles, CA 90001" +312617,Wired Headphones,1,11.99,12/19/19 19:28,"422 Cedar St, New York City, NY 10001" +312618,AA Batteries (4-pack),1,3.84,12/28/19 22:22,"286 Pine St, New York City, NY 10001" +312619,AAA Batteries (4-pack),2,2.99,12/08/19 10:56,"253 Hickory St, Austin, TX 73301" +312620,Bose SoundSport Headphones,1,99.99,12/24/19 16:10,"289 Walnut St, Los Angeles, CA 90001" +312621,AAA Batteries (4-pack),1,2.99,12/11/19 18:50,"905 11th St, Los Angeles, CA 90001" +312622,Wired Headphones,1,11.99,12/14/19 10:09,"614 Lakeview St, Boston, MA 02215" +312623,Apple Airpods Headphones,1,150,12/15/19 11:37,"871 Adams St, Boston, MA 02215" +312623,Lightning Charging Cable,1,14.95,12/15/19 11:37,"871 Adams St, Boston, MA 02215" +312624,Lightning Charging Cable,1,14.95,12/30/19 18:59,"994 Lake St, Boston, MA 02215" +312625,Lightning Charging Cable,1,14.95,12/02/19 18:13,"259 Meadow St, Austin, TX 73301" +312626,Bose SoundSport Headphones,1,99.99,12/09/19 12:14,"757 1st St, San Francisco, CA 94016" +312627,AA Batteries (4-pack),1,3.84,12/22/19 19:19,"604 Wilson St, Dallas, TX 75001" +312628,Lightning Charging Cable,1,14.95,12/27/19 21:58,"543 Jefferson St, Seattle, WA 98101" +312629,USB-C Charging Cable,2,11.95,12/06/19 09:33,"735 Lincoln St, Boston, MA 02215" +312630,27in FHD Monitor,1,149.99,12/18/19 10:49,"352 Lakeview St, Dallas, TX 75001" +312631,Apple Airpods Headphones,1,150,12/14/19 18:15,"448 Adams St, New York City, NY 10001" +312632,Wired Headphones,1,11.99,12/31/19 20:01,"245 8th St, Atlanta, GA 30301" +312633,USB-C Charging Cable,1,11.95,12/14/19 22:31,"138 Main St, Los Angeles, CA 90001" +312634,AA Batteries (4-pack),1,3.84,12/14/19 14:58,"156 Pine St, Austin, TX 73301" +312635,iPhone,1,700,12/04/19 11:01,"274 Spruce St, Los Angeles, CA 90001" +312636,USB-C Charging Cable,1,11.95,12/17/19 10:54,"460 11th St, Dallas, TX 75001" +312637,LG Dryer,1,600.0,12/26/19 23:07,"817 Spruce St, San Francisco, CA 94016" +312638,USB-C Charging Cable,1,11.95,12/10/19 17:49,"464 Chestnut St, Austin, TX 73301" +312639,AA Batteries (4-pack),1,3.84,12/25/19 22:59,"910 2nd St, New York City, NY 10001" +312640,27in FHD Monitor,1,149.99,12/02/19 15:09,"218 Adams St, San Francisco, CA 94016" +312641,USB-C Charging Cable,1,11.95,12/28/19 14:13,"316 Spruce St, New York City, NY 10001" +312642,Flatscreen TV,1,300,12/22/19 11:58,"308 Dogwood St, Dallas, TX 75001" +312643,Flatscreen TV,1,300,12/05/19 13:06,"11 1st St, Portland, OR 97035" +312644,34in Ultrawide Monitor,1,379.99,12/11/19 20:51,"222 Church St, San Francisco, CA 94016" +312645,Macbook Pro Laptop,1,1700,12/15/19 14:56,"8 Main St, San Francisco, CA 94016" +312646,Apple Airpods Headphones,1,150,12/25/19 08:08,"676 Center St, San Francisco, CA 94016" +312647,AA Batteries (4-pack),1,3.84,12/23/19 23:04,"655 West St, New York City, NY 10001" +312648,Wired Headphones,1,11.99,12/05/19 10:45,"110 Ridge St, Los Angeles, CA 90001" +312649,Wired Headphones,1,11.99,12/11/19 14:53,"440 North St, San Francisco, CA 94016" +312650,Lightning Charging Cable,2,14.95,12/04/19 00:45,"664 Dogwood St, Los Angeles, CA 90001" +312651,Wired Headphones,1,11.99,12/09/19 19:23,"110 Maple St, Los Angeles, CA 90001" +312652,Wired Headphones,1,11.99,12/21/19 23:05,"532 9th St, Austin, TX 73301" +312653,LG Dryer,1,600.0,12/09/19 08:34,"849 7th St, Portland, OR 97035" +312654,iPhone,1,700,12/16/19 17:24,"108 4th St, Los Angeles, CA 90001" +312654,Lightning Charging Cable,1,14.95,12/16/19 17:24,"108 4th St, Los Angeles, CA 90001" +312655,Flatscreen TV,1,300,12/25/19 10:39,"397 1st St, Atlanta, GA 30301" +312656,Wired Headphones,1,11.99,12/09/19 22:05,"760 Church St, San Francisco, CA 94016" +312657,27in FHD Monitor,1,149.99,12/31/19 18:34,"986 Johnson St, San Francisco, CA 94016" +312658,Apple Airpods Headphones,1,150,12/20/19 00:04,"62 Church St, Los Angeles, CA 90001" +312659,Wired Headphones,1,11.99,12/05/19 20:55,"955 Lakeview St, Dallas, TX 75001" +312660,34in Ultrawide Monitor,1,379.99,12/16/19 14:30,"822 Pine St, Portland, OR 97035" +312661,AAA Batteries (4-pack),1,2.99,12/08/19 16:26,"752 Park St, San Francisco, CA 94016" +312662,Bose SoundSport Headphones,1,99.99,12/26/19 18:43,"443 West St, Atlanta, GA 30301" +312663,LG Dryer,1,600.0,12/27/19 10:00,"437 10th St, Seattle, WA 98101" +312664,Lightning Charging Cable,1,14.95,12/21/19 09:47,"414 Jackson St, Boston, MA 02215" +312665,Apple Airpods Headphones,1,150,12/05/19 13:43,"508 14th St, Austin, TX 73301" +312666,ThinkPad Laptop,1,999.99,12/13/19 09:48,"594 12th St, Portland, OR 97035" +312667,Wired Headphones,1,11.99,12/28/19 14:04,"400 7th St, San Francisco, CA 94016" +312668,iPhone,1,700,12/08/19 13:26,"406 Dogwood St, Portland, ME 04101" +312669,Macbook Pro Laptop,1,1700,12/08/19 12:51,"811 Forest St, San Francisco, CA 94016" +312670,27in FHD Monitor,1,149.99,12/01/19 12:42,"422 Meadow St, Los Angeles, CA 90001" +312671,Lightning Charging Cable,1,14.95,12/04/19 03:28,"44 Willow St, Seattle, WA 98101" +312672,Flatscreen TV,1,300,12/05/19 10:18,"24 Willow St, Seattle, WA 98101" +312673,Bose SoundSport Headphones,1,99.99,12/29/19 18:31,"995 North St, San Francisco, CA 94016" +312674,27in 4K Gaming Monitor,1,389.99,12/03/19 18:11,"95 5th St, Los Angeles, CA 90001" +312675,34in Ultrawide Monitor,1,379.99,12/10/19 22:30,"388 12th St, Austin, TX 73301" +312676,USB-C Charging Cable,1,11.95,12/07/19 17:13,"138 5th St, Boston, MA 02215" +312677,ThinkPad Laptop,1,999.99,12/20/19 07:55,"343 Hickory St, San Francisco, CA 94016" +312678,27in FHD Monitor,1,149.99,12/16/19 21:07,"859 Washington St, San Francisco, CA 94016" +312679,USB-C Charging Cable,1,11.95,12/25/19 13:04,"570 6th St, Seattle, WA 98101" +312680,AA Batteries (4-pack),4,3.84,12/12/19 15:39,"826 Pine St, New York City, NY 10001" +312681,USB-C Charging Cable,1,11.95,12/08/19 18:19,"100 1st St, Los Angeles, CA 90001" +312682,27in 4K Gaming Monitor,1,389.99,12/08/19 08:04,"658 Chestnut St, Atlanta, GA 30301" +312682,Wired Headphones,1,11.99,12/08/19 08:04,"658 Chestnut St, Atlanta, GA 30301" +312683,Wired Headphones,1,11.99,12/12/19 08:49,"459 Highland St, New York City, NY 10001" +312684,Lightning Charging Cable,1,14.95,12/10/19 23:43,"883 North St, Atlanta, GA 30301" +312685,27in FHD Monitor,1,149.99,12/23/19 15:18,"576 9th St, Los Angeles, CA 90001" +312686,USB-C Charging Cable,1,11.95,12/03/19 15:52,"641 10th St, Los Angeles, CA 90001" +312687,iPhone,1,700,12/20/19 15:01,"684 Park St, San Francisco, CA 94016" +312688,Lightning Charging Cable,1,14.95,12/25/19 15:54,"727 Washington St, Seattle, WA 98101" +312689,Wired Headphones,1,11.99,12/13/19 18:43,"800 West St, San Francisco, CA 94016" +312690,USB-C Charging Cable,1,11.95,12/30/19 15:26,"290 Lincoln St, Portland, OR 97035" +312691,27in 4K Gaming Monitor,1,389.99,12/09/19 21:16,"863 2nd St, Austin, TX 73301" +312691,AA Batteries (4-pack),1,3.84,12/09/19 21:16,"863 2nd St, Austin, TX 73301" +312692,AAA Batteries (4-pack),1,2.99,12/20/19 18:58,"182 Maple St, San Francisco, CA 94016" +312693,Apple Airpods Headphones,1,150,12/28/19 12:15,"480 Spruce St, Seattle, WA 98101" +312694,Flatscreen TV,1,300,12/26/19 09:00,"162 West St, Seattle, WA 98101" +312695,Lightning Charging Cable,1,14.95,12/13/19 17:00,"904 Walnut St, Los Angeles, CA 90001" +312696,Wired Headphones,1,11.99,12/25/19 14:43,"361 4th St, Los Angeles, CA 90001" +312696,Lightning Charging Cable,1,14.95,12/25/19 14:43,"361 4th St, Los Angeles, CA 90001" +312697,USB-C Charging Cable,1,11.95,12/26/19 14:12,"226 Chestnut St, New York City, NY 10001" +312698,USB-C Charging Cable,1,11.95,12/26/19 15:39,"241 Main St, Los Angeles, CA 90001" +312699,Apple Airpods Headphones,1,150,12/12/19 22:19,"49 Church St, Boston, MA 02215" +312700,Macbook Pro Laptop,1,1700,12/27/19 11:36,"619 Main St, Portland, OR 97035" +312701,USB-C Charging Cable,1,11.95,12/09/19 19:31,"397 Wilson St, San Francisco, CA 94016" +312702,Wired Headphones,1,11.99,12/04/19 12:12,"321 Elm St, San Francisco, CA 94016" +312703,Google Phone,1,600,12/26/19 12:30,"292 Washington St, San Francisco, CA 94016" +312704,ThinkPad Laptop,1,999.99,12/19/19 17:24,"368 Madison St, San Francisco, CA 94016" +312705,27in FHD Monitor,1,149.99,12/18/19 16:30,"606 Jackson St, San Francisco, CA 94016" +312706,Flatscreen TV,1,300,12/07/19 22:50,"643 8th St, San Francisco, CA 94016" +312707,Apple Airpods Headphones,1,150,12/22/19 21:49,"891 Elm St, Seattle, WA 98101" +312708,USB-C Charging Cable,1,11.95,12/09/19 21:56,"421 Washington St, New York City, NY 10001" +312709,Lightning Charging Cable,1,14.95,12/20/19 20:25,"76 Wilson St, Atlanta, GA 30301" +312710,iPhone,1,700,12/11/19 11:21,"544 6th St, Austin, TX 73301" +312710,Lightning Charging Cable,1,14.95,12/11/19 11:21,"544 6th St, Austin, TX 73301" +312711,Wired Headphones,1,11.99,12/24/19 10:09,"200 Lakeview St, Boston, MA 02215" +312712,USB-C Charging Cable,1,11.95,12/30/19 23:23,"893 5th St, Portland, OR 97035" +312713,USB-C Charging Cable,1,11.95,12/11/19 18:48,"724 Dogwood St, Dallas, TX 75001" +312714,Apple Airpods Headphones,1,150,12/18/19 23:22,"904 North St, Los Angeles, CA 90001" +312715,iPhone,1,700,12/08/19 15:27,"767 2nd St, Dallas, TX 75001" +312716,27in FHD Monitor,1,149.99,12/07/19 08:50,"270 1st St, New York City, NY 10001" +312717,USB-C Charging Cable,1,11.95,12/14/19 12:05,"915 Elm St, Seattle, WA 98101" +312718,20in Monitor,1,109.99,12/16/19 18:39,"748 Pine St, San Francisco, CA 94016" +312719,USB-C Charging Cable,1,11.95,12/02/19 19:00,"249 11th St, Seattle, WA 98101" +312720,AAA Batteries (4-pack),1,2.99,12/19/19 08:43,"760 2nd St, New York City, NY 10001" +312721,AA Batteries (4-pack),1,3.84,12/10/19 10:21,"287 Adams St, Boston, MA 02215" +312722,Macbook Pro Laptop,1,1700,12/28/19 11:37,"99 9th St, Los Angeles, CA 90001" +312723,USB-C Charging Cable,1,11.95,12/05/19 01:34,"901 8th St, Portland, OR 97035" +312724,Lightning Charging Cable,1,14.95,12/21/19 19:26,"41 Adams St, Portland, OR 97035" +312725,USB-C Charging Cable,1,11.95,12/14/19 14:21,"323 Main St, Portland, OR 97035" +312726,AAA Batteries (4-pack),1,2.99,12/15/19 10:56,"885 Dogwood St, Los Angeles, CA 90001" +312727,Google Phone,1,600,12/13/19 10:27,"69 River St, Los Angeles, CA 90001" +312728,20in Monitor,1,109.99,12/22/19 23:18,"726 1st St, Boston, MA 02215" +312729,AAA Batteries (4-pack),1,2.99,12/30/19 01:10,"162 1st St, Los Angeles, CA 90001" +312730,AA Batteries (4-pack),1,3.84,12/07/19 13:40,"153 Walnut St, Boston, MA 02215" +312731,27in 4K Gaming Monitor,1,389.99,12/03/19 10:24,"673 South St, Dallas, TX 75001" +312732,34in Ultrawide Monitor,1,379.99,12/06/19 13:46,"356 Madison St, Boston, MA 02215" +312733,27in FHD Monitor,1,149.99,12/14/19 16:36,"799 Lakeview St, San Francisco, CA 94016" +312734,Apple Airpods Headphones,1,150,12/07/19 21:19,"151 Sunset St, San Francisco, CA 94016" +312735,USB-C Charging Cable,2,11.95,12/25/19 12:29,"911 9th St, Atlanta, GA 30301" +312736,27in FHD Monitor,1,149.99,12/12/19 21:04,"233 Elm St, Los Angeles, CA 90001" +312737,34in Ultrawide Monitor,1,379.99,12/19/19 09:47,"404 8th St, San Francisco, CA 94016" +312738,27in FHD Monitor,1,149.99,12/27/19 11:09,"582 10th St, San Francisco, CA 94016" +312739,USB-C Charging Cable,1,11.95,12/03/19 12:31,"903 South St, Boston, MA 02215" +312740,27in FHD Monitor,1,149.99,12/23/19 18:06,"721 South St, Boston, MA 02215" +312741,27in FHD Monitor,1,149.99,12/23/19 21:19,"42 Cedar St, Boston, MA 02215" +312742,Lightning Charging Cable,1,14.95,12/16/19 00:54,"57 Sunset St, Austin, TX 73301" +312743,Apple Airpods Headphones,1,150,12/09/19 01:28,"89 Forest St, Los Angeles, CA 90001" +312744,AAA Batteries (4-pack),2,2.99,12/13/19 16:21,"666 River St, Boston, MA 02215" +312745,Lightning Charging Cable,1,14.95,12/04/19 10:27,"313 Chestnut St, New York City, NY 10001" +312746,Apple Airpods Headphones,1,150,12/11/19 10:29,"511 1st St, Dallas, TX 75001" +312747,Wired Headphones,1,11.99,12/08/19 06:14,"155 Hill St, Dallas, TX 75001" +312748,AAA Batteries (4-pack),3,2.99,12/08/19 13:58,"17 Jackson St, Boston, MA 02215" +312749,Lightning Charging Cable,2,14.95,12/18/19 22:25,"217 West St, Boston, MA 02215" +312750,Apple Airpods Headphones,1,150,12/20/19 09:46,"218 North St, New York City, NY 10001" +312751,Lightning Charging Cable,1,14.95,12/16/19 20:26,"605 North St, Los Angeles, CA 90001" +312752,Flatscreen TV,1,300,12/20/19 07:18,"196 Main St, Seattle, WA 98101" +312753,Wired Headphones,1,11.99,12/29/19 23:22,"903 Church St, San Francisco, CA 94016" +312754,Wired Headphones,1,11.99,12/31/19 07:44,"459 Lakeview St, San Francisco, CA 94016" +312754,USB-C Charging Cable,1,11.95,12/31/19 07:44,"459 Lakeview St, San Francisco, CA 94016" +312755,Apple Airpods Headphones,1,150,12/12/19 11:54,"408 14th St, Dallas, TX 75001" +312756,Lightning Charging Cable,1,14.95,12/24/19 18:41,"686 Meadow St, Dallas, TX 75001" +312757,USB-C Charging Cable,1,11.95,12/25/19 00:49,"257 5th St, Los Angeles, CA 90001" +312758,34in Ultrawide Monitor,1,379.99,12/25/19 08:53,"84 14th St, New York City, NY 10001" +312759,Bose SoundSport Headphones,1,99.99,12/31/19 13:15,"992 Park St, San Francisco, CA 94016" +312760,LG Washing Machine,1,600.0,12/10/19 12:25,"903 Madison St, New York City, NY 10001" +312761,34in Ultrawide Monitor,1,379.99,12/03/19 07:42,"462 North St, San Francisco, CA 94016" +312762,AA Batteries (4-pack),1,3.84,12/19/19 06:31,"953 Cherry St, Portland, OR 97035" +312763,Apple Airpods Headphones,1,150,12/25/19 00:13,"599 Chestnut St, Atlanta, GA 30301" +312764,34in Ultrawide Monitor,1,379.99,12/08/19 18:08,"337 2nd St, San Francisco, CA 94016" +312765,ThinkPad Laptop,1,999.99,12/20/19 12:33,"371 Adams St, San Francisco, CA 94016" +312766,AAA Batteries (4-pack),4,2.99,12/11/19 22:00,"173 12th St, San Francisco, CA 94016" +312767,Google Phone,1,600,12/24/19 18:26,"605 Pine St, San Francisco, CA 94016" +312767,Wired Headphones,1,11.99,12/24/19 18:26,"605 Pine St, San Francisco, CA 94016" +312768,Google Phone,1,600,12/06/19 09:13,"44 12th St, San Francisco, CA 94016" +312769,Lightning Charging Cable,1,14.95,12/22/19 11:16,"555 13th St, San Francisco, CA 94016" +312770,Google Phone,1,600,12/12/19 16:03,"992 Adams St, Austin, TX 73301" +312771,Apple Airpods Headphones,1,150,12/18/19 11:27,"502 Willow St, San Francisco, CA 94016" +312772,USB-C Charging Cable,1,11.95,12/31/19 23:58,"896 13th St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +312773,iPhone,1,700,12/18/19 16:56,"757 5th St, New York City, NY 10001" +312774,Wired Headphones,1,11.99,12/28/19 06:08,"151 Lake St, New York City, NY 10001" +312775,AA Batteries (4-pack),1,3.84,12/10/19 16:10,"266 Walnut St, Austin, TX 73301" +312776,AAA Batteries (4-pack),1,2.99,12/03/19 13:59,"717 Maple St, Atlanta, GA 30301" +312777,AA Batteries (4-pack),1,3.84,12/22/19 06:00,"853 Highland St, Los Angeles, CA 90001" +312778,Wired Headphones,1,11.99,12/15/19 09:53,"794 Maple St, New York City, NY 10001" +312779,AAA Batteries (4-pack),1,2.99,12/20/19 20:48,"48 Maple St, Dallas, TX 75001" +312780,USB-C Charging Cable,1,11.95,12/30/19 19:53,"809 Hill St, Los Angeles, CA 90001" +312781,Lightning Charging Cable,1,14.95,12/03/19 12:44,"476 Cherry St, Dallas, TX 75001" +312782,Flatscreen TV,1,300,12/11/19 15:29,"435 North St, Los Angeles, CA 90001" +312783,AAA Batteries (4-pack),1,2.99,12/04/19 14:42,"895 Lincoln St, Boston, MA 02215" +312784,Lightning Charging Cable,2,14.95,12/19/19 16:23,"840 4th St, Seattle, WA 98101" +312785,Lightning Charging Cable,1,14.95,12/05/19 19:09,"955 7th St, Dallas, TX 75001" +312785,Bose SoundSport Headphones,1,99.99,12/05/19 19:09,"955 7th St, Dallas, TX 75001" +312786,USB-C Charging Cable,1,11.95,12/22/19 12:53,"331 Meadow St, Los Angeles, CA 90001" +312787,AA Batteries (4-pack),1,3.84,12/02/19 21:11,"42 1st St, Portland, OR 97035" +312788,AA Batteries (4-pack),1,3.84,12/30/19 11:22,"937 14th St, Austin, TX 73301" +312789,Apple Airpods Headphones,1,150,12/12/19 18:55,"248 North St, Los Angeles, CA 90001" +312790,AA Batteries (4-pack),1,3.84,12/07/19 00:48,"954 Church St, Atlanta, GA 30301" +312791,AAA Batteries (4-pack),2,2.99,12/23/19 12:16,"884 West St, Portland, ME 04101" +312792,ThinkPad Laptop,1,999.99,12/30/19 08:23,"901 Lakeview St, Atlanta, GA 30301" +312793,USB-C Charging Cable,1,11.95,12/22/19 16:33,"937 Wilson St, New York City, NY 10001" +312794,iPhone,1,700,12/04/19 12:23,"791 Ridge St, Seattle, WA 98101" +312795,Wired Headphones,1,11.99,12/10/19 11:03,"503 Sunset St, Dallas, TX 75001" +312796,Apple Airpods Headphones,1,150,12/14/19 14:11,"25 Lake St, San Francisco, CA 94016" +312797,Flatscreen TV,1,300,12/06/19 10:54,"282 Jefferson St, Los Angeles, CA 90001" +312798,Wired Headphones,1,11.99,12/21/19 10:25,"596 13th St, Dallas, TX 75001" +312799,34in Ultrawide Monitor,1,379.99,12/11/19 19:55,"847 Jefferson St, Portland, OR 97035" +312800,AA Batteries (4-pack),1,3.84,12/18/19 11:00,"858 Spruce St, Los Angeles, CA 90001" +312801,AAA Batteries (4-pack),1,2.99,12/29/19 14:57,"811 Walnut St, San Francisco, CA 94016" +312802,Wired Headphones,1,11.99,12/05/19 22:10,"424 Maple St, Dallas, TX 75001" +312803,AAA Batteries (4-pack),2,2.99,12/26/19 21:26,"143 Wilson St, Los Angeles, CA 90001" +312804,AA Batteries (4-pack),1,3.84,12/21/19 09:18,"733 Highland St, Austin, TX 73301" +312805,AA Batteries (4-pack),1,3.84,12/31/19 12:02,"596 4th St, Boston, MA 02215" +312806,AA Batteries (4-pack),1,3.84,12/07/19 12:44,"385 Elm St, Atlanta, GA 30301" +312807,Bose SoundSport Headphones,1,99.99,12/28/19 18:01,"395 Main St, Los Angeles, CA 90001" +312808,USB-C Charging Cable,2,11.95,12/05/19 19:10,"330 6th St, San Francisco, CA 94016" +312809,ThinkPad Laptop,1,999.99,12/02/19 11:41,"940 5th St, Boston, MA 02215" +312810,Wired Headphones,1,11.99,12/25/19 21:21,"104 Spruce St, Portland, OR 97035" +312811,20in Monitor,1,109.99,12/12/19 00:58,"20 Pine St, Dallas, TX 75001" +312812,iPhone,1,700,12/21/19 11:00,"130 Jackson St, San Francisco, CA 94016" +312813,AA Batteries (4-pack),1,3.84,12/20/19 14:57,"772 Hickory St, San Francisco, CA 94016" +312814,AAA Batteries (4-pack),3,2.99,12/27/19 12:35,"335 Hill St, Seattle, WA 98101" +312815,AAA Batteries (4-pack),1,2.99,12/22/19 15:15,"673 13th St, New York City, NY 10001" +312816,Bose SoundSport Headphones,1,99.99,12/26/19 20:03,"561 5th St, Atlanta, GA 30301" +312817,27in FHD Monitor,1,149.99,12/10/19 14:55,"456 Washington St, Seattle, WA 98101" +312818,Apple Airpods Headphones,1,150,12/07/19 13:30,"970 14th St, Dallas, TX 75001" +312819,34in Ultrawide Monitor,1,379.99,12/09/19 10:39,"569 13th St, Boston, MA 02215" +312820,Wired Headphones,1,11.99,12/31/19 14:20,"440 4th St, San Francisco, CA 94016" +312821,Wired Headphones,1,11.99,12/23/19 11:07,"737 Highland St, Seattle, WA 98101" +312822,Vareebadd Phone,1,400,12/08/19 14:40,"325 Willow St, Seattle, WA 98101" +312822,USB-C Charging Cable,1,11.95,12/08/19 14:40,"325 Willow St, Seattle, WA 98101" +312823,ThinkPad Laptop,1,999.99,12/16/19 12:02,"274 Cherry St, Los Angeles, CA 90001" +312824,Apple Airpods Headphones,1,150,12/20/19 15:16,"809 Sunset St, Boston, MA 02215" +312825,Macbook Pro Laptop,1,1700,12/26/19 13:31,"457 Walnut St, Dallas, TX 75001" +312826,20in Monitor,1,109.99,12/28/19 20:43,"285 Lincoln St, New York City, NY 10001" +312827,Wired Headphones,2,11.99,12/09/19 14:53,"113 Johnson St, San Francisco, CA 94016" +312828,AAA Batteries (4-pack),1,2.99,12/01/19 20:12,"92 Washington St, Portland, OR 97035" +312829,Lightning Charging Cable,1,14.95,12/05/19 12:32,"935 Maple St, Austin, TX 73301" +312830,Bose SoundSport Headphones,1,99.99,12/28/19 14:17,"231 Lakeview St, Los Angeles, CA 90001" +312831,Wired Headphones,1,11.99,12/08/19 18:32,"103 14th St, Los Angeles, CA 90001" +312832,Wired Headphones,1,11.99,12/22/19 22:47,"854 Jackson St, San Francisco, CA 94016" +312833,Google Phone,1,600,12/21/19 23:00,"911 Hill St, Seattle, WA 98101" +312834,Apple Airpods Headphones,1,150,12/22/19 10:29,"701 8th St, Dallas, TX 75001" +312835,AA Batteries (4-pack),1,3.84,12/01/19 08:33,"841 Jefferson St, Boston, MA 02215" +312836,Wired Headphones,1,11.99,12/14/19 09:00,"865 10th St, Austin, TX 73301" +312837,34in Ultrawide Monitor,1,379.99,12/08/19 10:55,"615 7th St, Los Angeles, CA 90001" +312838,Bose SoundSport Headphones,1,99.99,12/08/19 19:38,"563 South St, New York City, NY 10001" +312839,AA Batteries (4-pack),1,3.84,12/27/19 10:02,"807 North St, Boston, MA 02215" +312840,27in FHD Monitor,1,149.99,12/19/19 13:52,"591 Jefferson St, Dallas, TX 75001" +312841,AA Batteries (4-pack),1,3.84,12/29/19 19:56,"759 4th St, San Francisco, CA 94016" +312842,Lightning Charging Cable,1,14.95,12/15/19 10:54,"485 Lincoln St, Los Angeles, CA 90001" +312843,Lightning Charging Cable,1,14.95,12/05/19 20:40,"256 Pine St, New York City, NY 10001" +312844,34in Ultrawide Monitor,1,379.99,12/09/19 23:07,"400 Lake St, Los Angeles, CA 90001" +312845,Macbook Pro Laptop,1,1700,12/09/19 18:05,"275 Hickory St, Atlanta, GA 30301" +312846,USB-C Charging Cable,1,11.95,12/24/19 08:58,"34 Forest St, Atlanta, GA 30301" +312846,Wired Headphones,1,11.99,12/24/19 08:58,"34 Forest St, Atlanta, GA 30301" +312847,USB-C Charging Cable,1,11.95,12/12/19 20:59,"863 12th St, Dallas, TX 75001" +312848,Wired Headphones,1,11.99,12/22/19 21:15,"427 Ridge St, New York City, NY 10001" +312849,USB-C Charging Cable,1,11.95,12/10/19 19:10,"505 Hickory St, New York City, NY 10001" +312850,Wired Headphones,1,11.99,12/31/19 12:24,"292 Willow St, Portland, ME 04101" +312851,AA Batteries (4-pack),1,3.84,12/20/19 19:15,"117 14th St, Los Angeles, CA 90001" +312852,AA Batteries (4-pack),1,3.84,12/24/19 13:58,"646 Center St, San Francisco, CA 94016" +312853,Lightning Charging Cable,1,14.95,12/17/19 08:15,"997 13th St, Boston, MA 02215" +312854,Apple Airpods Headphones,1,150,12/12/19 08:09,"790 Washington St, Atlanta, GA 30301" +312855,Apple Airpods Headphones,1,150,12/06/19 19:53,"685 West St, Los Angeles, CA 90001" +312856,AA Batteries (4-pack),1,3.84,12/22/19 11:36,"343 Hickory St, San Francisco, CA 94016" +312857,27in FHD Monitor,1,149.99,12/11/19 14:32,"256 2nd St, San Francisco, CA 94016" +312858,Lightning Charging Cable,1,14.95,12/22/19 20:43,"441 Lake St, San Francisco, CA 94016" +312859,iPhone,1,700,12/11/19 11:32,"854 River St, Boston, MA 02215" +312860,27in FHD Monitor,1,149.99,12/21/19 18:55,"595 Chestnut St, Austin, TX 73301" +312861,Lightning Charging Cable,1,14.95,12/07/19 22:28,"14 Meadow St, Portland, OR 97035" +312862,Bose SoundSport Headphones,1,99.99,12/09/19 19:31,"607 Madison St, San Francisco, CA 94016" +312863,AAA Batteries (4-pack),1,2.99,12/24/19 13:44,"305 Cedar St, San Francisco, CA 94016" +312864,Lightning Charging Cable,1,14.95,12/18/19 18:28,"783 Adams St, Portland, OR 97035" +312865,Apple Airpods Headphones,1,150,12/18/19 13:01,"662 Walnut St, Boston, MA 02215" +312866,27in FHD Monitor,1,149.99,12/12/19 14:53,"486 5th St, Portland, OR 97035" +312867,Google Phone,1,600,12/07/19 14:36,"366 4th St, Dallas, TX 75001" +312868,AA Batteries (4-pack),1,3.84,12/08/19 13:08,"358 Meadow St, San Francisco, CA 94016" +312869,ThinkPad Laptop,1,999.99,12/01/19 11:46,"257 Hickory St, San Francisco, CA 94016" +312869,Apple Airpods Headphones,1,150,12/01/19 11:46,"257 Hickory St, San Francisco, CA 94016" +312870,Bose SoundSport Headphones,1,99.99,12/21/19 16:47,"239 Church St, San Francisco, CA 94016" +312871,Macbook Pro Laptop,1,1700,12/09/19 13:18,"300 Elm St, San Francisco, CA 94016" +312872,34in Ultrawide Monitor,1,379.99,12/12/19 08:26,"672 West St, Portland, OR 97035" +312873,Wired Headphones,1,11.99,12/17/19 19:12,"781 Chestnut St, Portland, OR 97035" +312874,Lightning Charging Cable,1,14.95,12/24/19 13:55,"476 Lake St, San Francisco, CA 94016" +312875,Wired Headphones,1,11.99,12/14/19 02:55,"304 5th St, Los Angeles, CA 90001" +312876,iPhone,1,700,12/18/19 22:51,"273 Cedar St, Los Angeles, CA 90001" +312877,AA Batteries (4-pack),3,3.84,12/15/19 18:10,"926 Adams St, New York City, NY 10001" +312878,LG Dryer,1,600.0,12/01/19 14:40,"75 Center St, Portland, ME 04101" +312879,Lightning Charging Cable,1,14.95,12/13/19 10:22,"710 Lincoln St, Los Angeles, CA 90001" +312880,iPhone,1,700,01/01/20 00:35,"838 10th St, Seattle, WA 98101" +312881,Bose SoundSport Headphones,1,99.99,12/20/19 21:06,"171 Meadow St, Seattle, WA 98101" +312882,Apple Airpods Headphones,1,150,12/09/19 16:03,"198 5th St, San Francisco, CA 94016" +312883,Google Phone,1,600,12/03/19 17:28,"175 Washington St, San Francisco, CA 94016" +312884,USB-C Charging Cable,1,11.95,12/19/19 10:18,"204 Lincoln St, Seattle, WA 98101" +312885,AAA Batteries (4-pack),1,2.99,12/14/19 08:32,"26 4th St, Dallas, TX 75001" +312886,Macbook Pro Laptop,1,1700,12/20/19 16:06,"516 Ridge St, Seattle, WA 98101" +312887,USB-C Charging Cable,1,11.95,12/08/19 18:54,"318 Sunset St, Atlanta, GA 30301" +312888,USB-C Charging Cable,1,11.95,12/04/19 07:15,"778 14th St, Austin, TX 73301" +312889,AAA Batteries (4-pack),1,2.99,12/12/19 00:34,"363 Cherry St, San Francisco, CA 94016" +312890,AA Batteries (4-pack),1,3.84,12/20/19 19:09,"670 13th St, San Francisco, CA 94016" +312891,Bose SoundSport Headphones,1,99.99,12/01/19 13:52,"210 Jefferson St, Los Angeles, CA 90001" +312892,Wired Headphones,1,11.99,12/28/19 09:59,"771 Center St, San Francisco, CA 94016" +312893,USB-C Charging Cable,1,11.95,12/13/19 00:38,"231 10th St, Portland, OR 97035" +312894,Wired Headphones,1,11.99,12/31/19 00:21,"414 2nd St, Atlanta, GA 30301" +312895,AAA Batteries (4-pack),2,2.99,12/07/19 20:36,"247 Johnson St, Los Angeles, CA 90001" +312896,Wired Headphones,1,11.99,12/04/19 20:27,"100 Church St, Los Angeles, CA 90001" +312897,AAA Batteries (4-pack),1,2.99,12/10/19 11:05,"191 6th St, Boston, MA 02215" +312898,USB-C Charging Cable,1,11.95,12/04/19 11:57,"44 Lincoln St, New York City, NY 10001" +312899,Bose SoundSport Headphones,1,99.99,12/02/19 15:52,"362 River St, Atlanta, GA 30301" +312900,AA Batteries (4-pack),1,3.84,12/08/19 22:06,"787 Chestnut St, Boston, MA 02215" +312901,Flatscreen TV,1,300,12/31/19 13:35,"516 Cedar St, Dallas, TX 75001" +312902,Google Phone,1,600,12/12/19 13:27,"852 9th St, Los Angeles, CA 90001" +312902,USB-C Charging Cable,1,11.95,12/12/19 13:27,"852 9th St, Los Angeles, CA 90001" +312902,Bose SoundSport Headphones,1,99.99,12/12/19 13:27,"852 9th St, Los Angeles, CA 90001" +312903,27in FHD Monitor,1,149.99,12/27/19 10:50,"349 River St, San Francisco, CA 94016" +312904,Lightning Charging Cable,1,14.95,12/04/19 01:54,"132 Lincoln St, Dallas, TX 75001" +312905,AAA Batteries (4-pack),2,2.99,12/17/19 10:06,"589 Main St, Dallas, TX 75001" +312906,AA Batteries (4-pack),2,3.84,12/07/19 10:14,"391 Cherry St, New York City, NY 10001" +312907,AAA Batteries (4-pack),1,2.99,12/16/19 21:08,"247 9th St, Los Angeles, CA 90001" +312908,Wired Headphones,1,11.99,12/07/19 12:39,"206 Spruce St, Seattle, WA 98101" +312909,Bose SoundSport Headphones,1,99.99,12/04/19 19:52,"89 Park St, New York City, NY 10001" +312910,Wired Headphones,1,11.99,12/23/19 13:20,"880 Pine St, Los Angeles, CA 90001" +312911,Lightning Charging Cable,1,14.95,12/25/19 16:10,"935 Ridge St, Boston, MA 02215" +312912,Lightning Charging Cable,1,14.95,12/23/19 19:53,"805 North St, New York City, NY 10001" +312913,USB-C Charging Cable,1,11.95,12/24/19 20:39,"581 Church St, Austin, TX 73301" +312914,Lightning Charging Cable,1,14.95,12/28/19 02:04,"80 Spruce St, Boston, MA 02215" +312915,Wired Headphones,1,11.99,12/01/19 20:26,"127 Park St, New York City, NY 10001" +312916,AAA Batteries (4-pack),2,2.99,12/07/19 09:05,"204 Washington St, Portland, OR 97035" +312917,27in 4K Gaming Monitor,1,389.99,12/11/19 17:09,"593 5th St, Los Angeles, CA 90001" +312918,Lightning Charging Cable,1,14.95,12/15/19 08:17,"258 Park St, San Francisco, CA 94016" +312919,Flatscreen TV,1,300,12/01/19 19:10,"455 Main St, New York City, NY 10001" +312920,Wired Headphones,1,11.99,12/11/19 23:27,"951 1st St, San Francisco, CA 94016" +312921,Vareebadd Phone,1,400,12/24/19 12:12,"511 8th St, New York City, NY 10001" +312921,USB-C Charging Cable,1,11.95,12/24/19 12:12,"511 8th St, New York City, NY 10001" +312922,20in Monitor,1,109.99,12/15/19 18:37,"736 Hickory St, New York City, NY 10001" +312923,AAA Batteries (4-pack),1,2.99,12/04/19 04:50,"665 12th St, Portland, OR 97035" +312924,USB-C Charging Cable,1,11.95,12/12/19 08:26,"58 9th St, San Francisco, CA 94016" +312925,Lightning Charging Cable,1,14.95,12/08/19 18:39,"188 Lakeview St, Seattle, WA 98101" +312926,iPhone,1,700,12/25/19 12:10,"939 12th St, Los Angeles, CA 90001" +312927,Bose SoundSport Headphones,1,99.99,12/02/19 13:46,"949 Church St, Seattle, WA 98101" +312928,Bose SoundSport Headphones,1,99.99,12/22/19 13:06,"564 Park St, Boston, MA 02215" +312929,AAA Batteries (4-pack),3,2.99,12/18/19 23:39,"195 South St, Portland, OR 97035" +312930,USB-C Charging Cable,1,11.95,12/28/19 11:31,"419 Ridge St, Los Angeles, CA 90001" +312931,Wired Headphones,1,11.99,12/16/19 17:21,"901 Madison St, Los Angeles, CA 90001" +312932,Wired Headphones,1,11.99,12/31/19 15:11,"365 Adams St, San Francisco, CA 94016" +312933,Bose SoundSport Headphones,1,99.99,12/10/19 18:40,"846 Jackson St, San Francisco, CA 94016" +312934,Apple Airpods Headphones,1,150,12/25/19 15:43,"332 North St, New York City, NY 10001" +312935,AA Batteries (4-pack),1,3.84,12/08/19 20:24,"812 Maple St, Atlanta, GA 30301" +312936,Bose SoundSport Headphones,1,99.99,12/11/19 22:09,"69 Jackson St, New York City, NY 10001" +312937,AAA Batteries (4-pack),1,2.99,12/20/19 18:39,"792 Sunset St, Portland, OR 97035" +312938,AAA Batteries (4-pack),1,2.99,12/17/19 22:03,"348 Walnut St, Los Angeles, CA 90001" +312939,iPhone,1,700,12/15/19 10:33,"782 Madison St, Seattle, WA 98101" +312940,USB-C Charging Cable,1,11.95,12/10/19 08:21,"816 Chestnut St, Dallas, TX 75001" +312941,AAA Batteries (4-pack),1,2.99,12/21/19 17:55,"751 Meadow St, Dallas, TX 75001" +312942,Lightning Charging Cable,1,14.95,12/07/19 19:24,"514 8th St, Boston, MA 02215" +312943,Lightning Charging Cable,2,14.95,12/06/19 13:00,"331 River St, New York City, NY 10001" +312944,Flatscreen TV,1,300,12/21/19 11:25,"918 Lincoln St, San Francisco, CA 94016" +312945,Lightning Charging Cable,1,14.95,12/06/19 10:57,"625 13th St, Dallas, TX 75001" +312946,Wired Headphones,1,11.99,12/12/19 16:15,"290 14th St, Austin, TX 73301" +312947,iPhone,1,700,12/09/19 17:38,"146 West St, New York City, NY 10001" +312948,27in 4K Gaming Monitor,1,389.99,12/30/19 23:08,"609 10th St, San Francisco, CA 94016" +312949,AAA Batteries (4-pack),1,2.99,12/03/19 19:36,"364 12th St, Seattle, WA 98101" +312950,AA Batteries (4-pack),1,3.84,12/06/19 18:02,"519 12th St, Austin, TX 73301" +312951,USB-C Charging Cable,1,11.95,12/29/19 16:14,"965 River St, San Francisco, CA 94016" +312952,Apple Airpods Headphones,1,150,12/03/19 21:05,"393 Washington St, Los Angeles, CA 90001" +312953,Lightning Charging Cable,2,14.95,12/26/19 16:43,"348 8th St, San Francisco, CA 94016" +312954,Wired Headphones,1,11.99,12/31/19 22:45,"647 11th St, Dallas, TX 75001" +312955,ThinkPad Laptop,1,999.99,12/24/19 19:44,"798 Cherry St, Portland, OR 97035" +312956,iPhone,1,700,12/14/19 20:47,"441 Maple St, Boston, MA 02215" +312957,20in Monitor,1,109.99,12/28/19 16:54,"569 5th St, Dallas, TX 75001" +312958,USB-C Charging Cable,2,11.95,12/16/19 08:58,"754 Johnson St, Los Angeles, CA 90001" +312959,Bose SoundSport Headphones,1,99.99,12/31/19 12:22,"193 Meadow St, San Francisco, CA 94016" +312960,34in Ultrawide Monitor,1,379.99,12/16/19 12:11,"660 Willow St, Los Angeles, CA 90001" +312961,34in Ultrawide Monitor,1,379.99,12/16/19 09:14,"871 Maple St, Seattle, WA 98101" +312962,AAA Batteries (4-pack),2,2.99,12/21/19 16:01,"376 Main St, Los Angeles, CA 90001" +312963,USB-C Charging Cable,1,11.95,12/16/19 10:48,"417 West St, Austin, TX 73301" +312964,iPhone,1,700,12/02/19 14:10,"913 Park St, Atlanta, GA 30301" +312964,Lightning Charging Cable,1,14.95,12/02/19 14:10,"913 Park St, Atlanta, GA 30301" +312965,Vareebadd Phone,1,400,12/27/19 10:24,"410 Spruce St, San Francisco, CA 94016" +312966,27in FHD Monitor,1,149.99,12/02/19 15:09,"779 Jackson St, Austin, TX 73301" +312967,Apple Airpods Headphones,1,150,12/10/19 16:39,"301 Spruce St, Los Angeles, CA 90001" +312968,Google Phone,1,600,12/07/19 19:28,"322 8th St, San Francisco, CA 94016" +312969,34in Ultrawide Monitor,1,379.99,12/12/19 01:20,"889 South St, New York City, NY 10001" +312970,Wired Headphones,1,11.99,12/01/19 21:53,"340 Adams St, San Francisco, CA 94016" +312971,Wired Headphones,1,11.99,12/18/19 08:27,"185 7th St, San Francisco, CA 94016" +312972,Wired Headphones,1,11.99,12/07/19 18:36,"695 South St, San Francisco, CA 94016" +312973,Wired Headphones,1,11.99,12/16/19 13:09,"388 Spruce St, Austin, TX 73301" +312974,Apple Airpods Headphones,1,150,12/03/19 09:01,"754 Elm St, San Francisco, CA 94016" +312975,Wired Headphones,1,11.99,12/22/19 18:38,"250 9th St, San Francisco, CA 94016" +312976,ThinkPad Laptop,1,999.99,12/27/19 15:43,"171 10th St, New York City, NY 10001" +312977,Lightning Charging Cable,1,14.95,12/28/19 13:04,"773 Pine St, Seattle, WA 98101" +312978,Wired Headphones,1,11.99,12/02/19 14:45,"638 Willow St, Boston, MA 02215" +312979,Apple Airpods Headphones,1,150,12/30/19 13:48,"545 13th St, San Francisco, CA 94016" +312980,AAA Batteries (4-pack),2,2.99,12/03/19 15:39,"609 Spruce St, San Francisco, CA 94016" +312981,AA Batteries (4-pack),1,3.84,12/04/19 12:38,"356 Johnson St, Portland, OR 97035" +312982,USB-C Charging Cable,1,11.95,12/03/19 09:58,"920 Wilson St, San Francisco, CA 94016" +312983,USB-C Charging Cable,1,11.95,12/07/19 20:38,"670 Sunset St, New York City, NY 10001" +312984,AAA Batteries (4-pack),2,2.99,12/16/19 12:07,"829 4th St, San Francisco, CA 94016" +312985,34in Ultrawide Monitor,1,379.99,12/22/19 10:48,"598 Center St, New York City, NY 10001" +312986,Wired Headphones,1,11.99,12/08/19 16:54,"593 10th St, New York City, NY 10001" +312987,34in Ultrawide Monitor,1,379.99,12/27/19 09:42,"699 Sunset St, San Francisco, CA 94016" +312988,27in FHD Monitor,1,149.99,12/12/19 11:23,"31 Lincoln St, Los Angeles, CA 90001" +312989,ThinkPad Laptop,1,999.99,12/25/19 16:00,"98 11th St, Los Angeles, CA 90001" +312990,34in Ultrawide Monitor,1,379.99,12/27/19 21:36,"914 Lakeview St, San Francisco, CA 94016" +312991,AAA Batteries (4-pack),1,2.99,12/09/19 10:16,"856 River St, Boston, MA 02215" +312992,Wired Headphones,1,11.99,12/01/19 10:39,"480 Cherry St, Portland, OR 97035" +312993,AA Batteries (4-pack),1,3.84,12/24/19 13:54,"700 6th St, New York City, NY 10001" +312994,Lightning Charging Cable,1,14.95,12/07/19 20:26,"880 Wilson St, Boston, MA 02215" +312995,USB-C Charging Cable,1,11.95,12/31/19 12:08,"772 West St, Boston, MA 02215" +312996,Macbook Pro Laptop,1,1700,12/12/19 00:01,"811 1st St, Atlanta, GA 30301" +312997,AA Batteries (4-pack),1,3.84,12/25/19 11:51,"724 8th St, Los Angeles, CA 90001" +312998,Wired Headphones,1,11.99,12/01/19 16:39,"458 River St, Dallas, TX 75001" +312999,Apple Airpods Headphones,1,150,12/05/19 18:53,"497 Madison St, Los Angeles, CA 90001" +313000,Wired Headphones,1,11.99,12/22/19 16:19,"438 Johnson St, New York City, NY 10001" +313001,USB-C Charging Cable,1,11.95,12/25/19 23:43,"655 Lake St, Boston, MA 02215" +313002,Vareebadd Phone,1,400,12/23/19 10:43,"501 North St, San Francisco, CA 94016" +313003,34in Ultrawide Monitor,1,379.99,12/29/19 23:42,"738 Willow St, Boston, MA 02215" +313004,AA Batteries (4-pack),1,3.84,12/24/19 12:30,"584 Park St, New York City, NY 10001" +313005,AAA Batteries (4-pack),1,2.99,12/07/19 23:35,"154 4th St, San Francisco, CA 94016" +313005,AAA Batteries (4-pack),1,2.99,12/07/19 23:35,"154 4th St, San Francisco, CA 94016" +313006,AAA Batteries (4-pack),1,2.99,12/25/19 20:53,"279 Wilson St, Atlanta, GA 30301" +313007,iPhone,1,700,12/15/19 20:06,"82 5th St, Dallas, TX 75001" +313008,27in FHD Monitor,1,149.99,12/07/19 09:47,"179 Sunset St, San Francisco, CA 94016" +313009,Lightning Charging Cable,1,14.95,12/22/19 10:21,"756 Park St, Atlanta, GA 30301" +313010,AAA Batteries (4-pack),4,2.99,12/11/19 22:00,"605 Highland St, Austin, TX 73301" +313011,Lightning Charging Cable,1,14.95,12/13/19 23:07,"861 Wilson St, New York City, NY 10001" +313012,Lightning Charging Cable,1,14.95,12/07/19 22:36,"137 Chestnut St, Boston, MA 02215" +313013,USB-C Charging Cable,1,11.95,12/04/19 09:22,"642 Hickory St, Seattle, WA 98101" +313014,AA Batteries (4-pack),2,3.84,12/08/19 15:27,"776 9th St, Boston, MA 02215" +313015,Wired Headphones,1,11.99,12/18/19 20:46,"268 Willow St, Seattle, WA 98101" +313016,LG Washing Machine,1,600.0,12/02/19 12:23,"414 Park St, Seattle, WA 98101" +313017,iPhone,1,700,12/24/19 15:12,"743 5th St, New York City, NY 10001" +313018,Lightning Charging Cable,1,14.95,12/15/19 16:29,"760 Pine St, Boston, MA 02215" +313019,Apple Airpods Headphones,1,150,12/29/19 18:13,"749 Jackson St, New York City, NY 10001" +313020,AAA Batteries (4-pack),3,2.99,12/05/19 14:11,"509 9th St, New York City, NY 10001" +313021,AA Batteries (4-pack),1,3.84,12/14/19 23:05,"708 1st St, Portland, OR 97035" +313022,Bose SoundSport Headphones,1,99.99,12/17/19 10:18,"251 5th St, San Francisco, CA 94016" +313023,Bose SoundSport Headphones,1,99.99,12/04/19 12:27,"697 14th St, Boston, MA 02215" +313024,34in Ultrawide Monitor,1,379.99,12/27/19 10:07,"761 Church St, Boston, MA 02215" +313025,USB-C Charging Cable,1,11.95,12/12/19 14:31,"985 14th St, Austin, TX 73301" +313026,Lightning Charging Cable,1,14.95,12/29/19 14:54,"784 Jackson St, Seattle, WA 98101" +313027,Bose SoundSport Headphones,1,99.99,12/07/19 09:50,"634 Ridge St, Los Angeles, CA 90001" +313028,AAA Batteries (4-pack),1,2.99,12/01/19 08:45,"378 Lake St, San Francisco, CA 94016" +313029,AAA Batteries (4-pack),2,2.99,12/08/19 07:23,"280 5th St, Seattle, WA 98101" +313030,USB-C Charging Cable,1,11.95,12/19/19 21:26,"246 Sunset St, Boston, MA 02215" +313031,Apple Airpods Headphones,1,150,12/05/19 01:14,"303 Jefferson St, Boston, MA 02215" +313032,Lightning Charging Cable,1,14.95,12/08/19 20:31,"99 Johnson St, San Francisco, CA 94016" +313033,Lightning Charging Cable,1,14.95,12/27/19 19:50,"614 Maple St, Los Angeles, CA 90001" +313034,20in Monitor,1,109.99,12/12/19 18:51,"819 Adams St, San Francisco, CA 94016" +313034,USB-C Charging Cable,1,11.95,12/12/19 18:51,"819 Adams St, San Francisco, CA 94016" +313035,AA Batteries (4-pack),1,3.84,12/30/19 16:20,"223 Madison St, Los Angeles, CA 90001" +313036,Google Phone,1,600,12/01/19 20:00,"16 10th St, San Francisco, CA 94016" +313037,iPhone,1,700,12/29/19 21:54,"403 Lincoln St, New York City, NY 10001" +313037,Lightning Charging Cable,1,14.95,12/29/19 21:54,"403 Lincoln St, New York City, NY 10001" +313037,Wired Headphones,1,11.99,12/29/19 21:54,"403 Lincoln St, New York City, NY 10001" +313038,Google Phone,1,600,12/13/19 16:45,"523 Madison St, Portland, OR 97035" +313039,Wired Headphones,1,11.99,12/13/19 04:20,"582 13th St, Portland, OR 97035" +313040,AAA Batteries (4-pack),2,2.99,12/05/19 13:21,"239 Jackson St, San Francisco, CA 94016" +313041,Lightning Charging Cable,1,14.95,12/11/19 20:47,"488 Wilson St, Boston, MA 02215" +313042,Macbook Pro Laptop,1,1700,12/31/19 23:46,"724 Washington St, San Francisco, CA 94016" +313043,Wired Headphones,1,11.99,12/15/19 20:37,"219 Highland St, San Francisco, CA 94016" +313044,USB-C Charging Cable,1,11.95,12/19/19 22:34,"681 6th St, San Francisco, CA 94016" +313045,Bose SoundSport Headphones,1,99.99,12/26/19 20:19,"904 4th St, San Francisco, CA 94016" +313046,Apple Airpods Headphones,1,150,12/18/19 12:10,"795 Meadow St, Portland, OR 97035" +313047,USB-C Charging Cable,1,11.95,12/27/19 20:18,"540 Wilson St, Boston, MA 02215" +313048,34in Ultrawide Monitor,1,379.99,12/18/19 21:21,"346 1st St, San Francisco, CA 94016" +313049,Lightning Charging Cable,2,14.95,12/02/19 11:02,"367 River St, Los Angeles, CA 90001" +313050,iPhone,1,700,12/28/19 19:38,"79 Forest St, San Francisco, CA 94016" +313051,Lightning Charging Cable,1,14.95,12/14/19 13:25,"189 Sunset St, New York City, NY 10001" +313052,AA Batteries (4-pack),1,3.84,12/05/19 13:37,"667 6th St, New York City, NY 10001" +313053,20in Monitor,1,109.99,12/15/19 15:09,"840 Lincoln St, Boston, MA 02215" +313054,27in 4K Gaming Monitor,1,389.99,12/31/19 10:48,"264 Highland St, Los Angeles, CA 90001" +313055,Apple Airpods Headphones,1,150,12/06/19 17:29,"926 West St, San Francisco, CA 94016" +313056,Lightning Charging Cable,1,14.95,12/22/19 11:23,"357 11th St, San Francisco, CA 94016" +313057,Lightning Charging Cable,1,14.95,12/21/19 19:59,"178 5th St, San Francisco, CA 94016" +313058,27in FHD Monitor,1,149.99,12/24/19 10:57,"30 South St, Portland, ME 04101" +313059,Lightning Charging Cable,1,14.95,12/31/19 11:27,"15 Lake St, Los Angeles, CA 90001" +313060,34in Ultrawide Monitor,1,379.99,12/07/19 15:52,"138 Ridge St, Los Angeles, CA 90001" +313061,iPhone,1,700,12/01/19 08:02,"26 Park St, Boston, MA 02215" +313062,34in Ultrawide Monitor,1,379.99,12/03/19 19:11,"481 Pine St, Boston, MA 02215" +313063,USB-C Charging Cable,1,11.95,12/31/19 11:29,"700 2nd St, New York City, NY 10001" +313064,Bose SoundSport Headphones,1,99.99,12/13/19 08:09,"989 Jackson St, Seattle, WA 98101" +313065,27in 4K Gaming Monitor,1,389.99,12/14/19 23:28,"83 West St, Los Angeles, CA 90001" +313066,iPhone,1,700,12/18/19 19:38,"341 Park St, San Francisco, CA 94016" +313067,AA Batteries (4-pack),2,3.84,12/25/19 20:20,"365 9th St, San Francisco, CA 94016" +313068,USB-C Charging Cable,1,11.95,12/03/19 20:46,"587 Highland St, Dallas, TX 75001" +313069,Bose SoundSport Headphones,1,99.99,12/22/19 19:57,"129 Elm St, San Francisco, CA 94016" +313070,AAA Batteries (4-pack),2,2.99,12/14/19 21:12,"178 4th St, New York City, NY 10001" +313071,Macbook Pro Laptop,1,1700,12/20/19 14:34,"7 12th St, Los Angeles, CA 90001" +313072,USB-C Charging Cable,1,11.95,12/20/19 01:42,"255 Ridge St, Los Angeles, CA 90001" +313073,iPhone,1,700,12/06/19 18:46,"350 Madison St, New York City, NY 10001" +313074,AA Batteries (4-pack),2,3.84,12/05/19 01:53,"554 Madison St, New York City, NY 10001" +313075,iPhone,1,700,12/06/19 22:50,"290 2nd St, San Francisco, CA 94016" +313076,Lightning Charging Cable,1,14.95,12/05/19 19:34,"207 Elm St, Dallas, TX 75001" +313077,AA Batteries (4-pack),1,3.84,12/27/19 18:18,"800 Lakeview St, New York City, NY 10001" +313078,AA Batteries (4-pack),1,3.84,12/19/19 11:26,"163 Maple St, Dallas, TX 75001" +313079,Wired Headphones,1,11.99,12/21/19 23:01,"123 Maple St, San Francisco, CA 94016" +,,,,, +313080,AAA Batteries (4-pack),1,2.99,12/10/19 13:25,"549 Main St, San Francisco, CA 94016" +313081,AA Batteries (4-pack),1,3.84,12/19/19 11:32,"512 River St, New York City, NY 10001" +313082,Wired Headphones,1,11.99,12/05/19 11:32,"727 Ridge St, Portland, OR 97035" +313083,34in Ultrawide Monitor,1,379.99,12/05/19 19:17,"795 13th St, Boston, MA 02215" +313083,Apple Airpods Headphones,1,150,12/05/19 19:17,"795 13th St, Boston, MA 02215" +313084,Bose SoundSport Headphones,1,99.99,12/22/19 01:47,"379 Cedar St, San Francisco, CA 94016" +313085,AA Batteries (4-pack),2,3.84,12/19/19 22:32,"814 5th St, San Francisco, CA 94016" +313086,Lightning Charging Cable,1,14.95,12/16/19 18:10,"911 South St, Boston, MA 02215" +313087,Lightning Charging Cable,1,14.95,12/15/19 22:38,"163 10th St, New York City, NY 10001" +313088,AAA Batteries (4-pack),1,2.99,12/16/19 14:20,"967 Cedar St, Dallas, TX 75001" +313089,34in Ultrawide Monitor,1,379.99,12/04/19 09:17,"705 14th St, Los Angeles, CA 90001" +313090,AAA Batteries (4-pack),1,2.99,12/08/19 15:38,"29 Lakeview St, Seattle, WA 98101" +313091,AAA Batteries (4-pack),1,2.99,12/14/19 09:44,"106 9th St, Los Angeles, CA 90001" +313092,ThinkPad Laptop,1,999.99,12/23/19 13:09,"222 Sunset St, Los Angeles, CA 90001" +313093,ThinkPad Laptop,1,999.99,12/23/19 21:51,"734 Jefferson St, Seattle, WA 98101" +313094,Lightning Charging Cable,1,14.95,12/03/19 11:35,"155 Cedar St, Atlanta, GA 30301" +313094,iPhone,1,700,12/03/19 11:35,"155 Cedar St, Atlanta, GA 30301" +313095,27in 4K Gaming Monitor,1,389.99,12/25/19 20:00,"456 6th St, San Francisco, CA 94016" +313096,34in Ultrawide Monitor,1,379.99,12/07/19 14:26,"70 4th St, Seattle, WA 98101" +313097,USB-C Charging Cable,1,11.95,12/24/19 12:36,"181 12th St, New York City, NY 10001" +313098,Wired Headphones,1,11.99,12/21/19 09:32,"265 River St, Atlanta, GA 30301" +313099,27in FHD Monitor,1,149.99,12/08/19 10:21,"228 14th St, San Francisco, CA 94016" +313100,Google Phone,1,600,12/31/19 15:55,"55 Highland St, New York City, NY 10001" +313100,Bose SoundSport Headphones,1,99.99,12/31/19 15:55,"55 Highland St, New York City, NY 10001" +313101,Bose SoundSport Headphones,1,99.99,12/27/19 07:32,"72 14th St, Portland, OR 97035" +313102,AAA Batteries (4-pack),1,2.99,12/05/19 01:56,"23 5th St, Atlanta, GA 30301" +313103,Lightning Charging Cable,1,14.95,12/01/19 20:18,"306 West St, San Francisco, CA 94016" +313104,AAA Batteries (4-pack),1,2.99,12/25/19 15:56,"420 8th St, Atlanta, GA 30301" +313105,AA Batteries (4-pack),3,3.84,12/27/19 11:07,"217 Willow St, Los Angeles, CA 90001" +313106,Flatscreen TV,1,300,12/05/19 16:57,"850 Jackson St, Atlanta, GA 30301" +313107,USB-C Charging Cable,1,11.95,12/15/19 20:22,"50 12th St, Seattle, WA 98101" +313108,Apple Airpods Headphones,1,150,12/27/19 10:35,"141 Dogwood St, Los Angeles, CA 90001" +313109,27in 4K Gaming Monitor,1,389.99,12/22/19 15:41,"7 Park St, San Francisco, CA 94016" +313110,Bose SoundSport Headphones,1,99.99,12/13/19 22:08,"130 Lincoln St, Los Angeles, CA 90001" +313111,AAA Batteries (4-pack),2,2.99,12/13/19 12:41,"801 7th St, Los Angeles, CA 90001" +313112,Wired Headphones,1,11.99,12/02/19 11:01,"748 South St, Los Angeles, CA 90001" +313113,27in 4K Gaming Monitor,1,389.99,12/12/19 21:33,"200 Lake St, San Francisco, CA 94016" +313114,Wired Headphones,1,11.99,12/23/19 09:23,"295 North St, Dallas, TX 75001" +313115,USB-C Charging Cable,1,11.95,12/03/19 19:26,"422 Dogwood St, Dallas, TX 75001" +313116,iPhone,1,700,12/08/19 10:37,"932 13th St, Austin, TX 73301" +313117,Lightning Charging Cable,1,14.95,12/15/19 16:21,"932 Adams St, Dallas, TX 75001" +313118,iPhone,1,700,12/18/19 16:56,"955 11th St, San Francisco, CA 94016" +313118,Apple Airpods Headphones,1,150,12/18/19 16:56,"955 11th St, San Francisco, CA 94016" +313119,Wired Headphones,1,11.99,12/28/19 15:44,"755 7th St, New York City, NY 10001" +313120,ThinkPad Laptop,1,999.99,12/27/19 23:27,"507 Maple St, Austin, TX 73301" +313121,27in 4K Gaming Monitor,1,389.99,12/09/19 13:51,"629 8th St, Austin, TX 73301" +313122,Macbook Pro Laptop,1,1700,12/27/19 12:17,"470 Lakeview St, Atlanta, GA 30301" +313123,Apple Airpods Headphones,1,150,12/26/19 08:26,"611 Willow St, Dallas, TX 75001" +313124,AA Batteries (4-pack),1,3.84,12/25/19 17:31,"379 Lake St, Atlanta, GA 30301" +313125,Lightning Charging Cable,1,14.95,12/15/19 17:14,"735 Lakeview St, San Francisco, CA 94016" +313126,Lightning Charging Cable,1,14.95,12/24/19 10:57,"920 7th St, Los Angeles, CA 90001" +313127,AAA Batteries (4-pack),1,2.99,12/31/19 20:19,"218 Wilson St, Seattle, WA 98101" +313128,USB-C Charging Cable,1,11.95,12/01/19 16:07,"21 Hickory St, Austin, TX 73301" +313129,27in 4K Gaming Monitor,1,389.99,12/26/19 19:47,"835 Lakeview St, New York City, NY 10001" +313130,Wired Headphones,1,11.99,12/25/19 07:15,"160 5th St, Atlanta, GA 30301" +313131,Apple Airpods Headphones,1,150,12/05/19 19:46,"130 North St, Boston, MA 02215" +313132,USB-C Charging Cable,1,11.95,12/30/19 13:15,"65 Lakeview St, New York City, NY 10001" +313133,Apple Airpods Headphones,1,150,12/24/19 09:04,"6 Dogwood St, Portland, OR 97035" +313134,34in Ultrawide Monitor,1,379.99,12/13/19 10:22,"390 7th St, San Francisco, CA 94016" +313135,Lightning Charging Cable,2,14.95,12/23/19 00:21,"233 6th St, Dallas, TX 75001" +313136,Flatscreen TV,1,300,12/19/19 11:28,"165 Chestnut St, Boston, MA 02215" +313137,Bose SoundSport Headphones,1,99.99,12/12/19 18:18,"18 11th St, New York City, NY 10001" +313138,Lightning Charging Cable,1,14.95,12/03/19 22:51,"27 13th St, San Francisco, CA 94016" +313139,27in 4K Gaming Monitor,1,389.99,12/04/19 20:12,"364 Highland St, Boston, MA 02215" +313140,USB-C Charging Cable,1,11.95,12/14/19 19:26,"554 Jackson St, Atlanta, GA 30301" +313141,Lightning Charging Cable,1,14.95,12/10/19 11:49,"697 Johnson St, Los Angeles, CA 90001" +313142,USB-C Charging Cable,1,11.95,12/20/19 17:13,"864 Meadow St, Austin, TX 73301" +313143,AA Batteries (4-pack),1,3.84,12/24/19 20:33,"731 Adams St, Los Angeles, CA 90001" +313144,Bose SoundSport Headphones,1,99.99,12/19/19 21:46,"208 1st St, Los Angeles, CA 90001" +313145,Lightning Charging Cable,1,14.95,12/21/19 22:03,"742 Willow St, Los Angeles, CA 90001" +313146,Lightning Charging Cable,1,14.95,12/07/19 14:36,"224 Elm St, San Francisco, CA 94016" +313147,27in FHD Monitor,1,149.99,12/20/19 12:13,"719 8th St, Portland, OR 97035" +313148,Google Phone,1,600,12/21/19 19:20,"430 Cedar St, Atlanta, GA 30301" +313149,ThinkPad Laptop,1,999.99,12/31/19 13:50,"444 Main St, Austin, TX 73301" +313150,Wired Headphones,1,11.99,12/10/19 12:29,"393 8th St, Los Angeles, CA 90001" +313151,AAA Batteries (4-pack),1,2.99,12/21/19 18:39,"665 5th St, Seattle, WA 98101" +313152,AA Batteries (4-pack),1,3.84,12/19/19 21:53,"804 Chestnut St, Seattle, WA 98101" +313153,Macbook Pro Laptop,1,1700,12/20/19 20:06,"44 Sunset St, Atlanta, GA 30301" +313154,iPhone,1,700,12/08/19 21:31,"546 Highland St, Dallas, TX 75001" +313154,Lightning Charging Cable,1,14.95,12/08/19 21:31,"546 Highland St, Dallas, TX 75001" +313154,Apple Airpods Headphones,1,150,12/08/19 21:31,"546 Highland St, Dallas, TX 75001" +313155,AAA Batteries (4-pack),1,2.99,12/26/19 11:29,"682 6th St, San Francisco, CA 94016" +313156,Apple Airpods Headphones,1,150,12/20/19 20:58,"501 Forest St, Boston, MA 02215" +313157,AA Batteries (4-pack),1,3.84,12/15/19 22:11,"414 Adams St, New York City, NY 10001" +313158,AA Batteries (4-pack),1,3.84,12/02/19 07:45,"553 Johnson St, New York City, NY 10001" +313159,iPhone,1,700,12/29/19 15:43,"706 Center St, Los Angeles, CA 90001" +313160,Lightning Charging Cable,1,14.95,12/06/19 10:51,"849 Center St, San Francisco, CA 94016" +313161,Bose SoundSport Headphones,1,99.99,12/05/19 20:17,"303 Church St, Los Angeles, CA 90001" +313162,Apple Airpods Headphones,1,150,12/08/19 07:21,"898 Lakeview St, New York City, NY 10001" +313163,AA Batteries (4-pack),2,3.84,12/07/19 12:13,"659 Dogwood St, Portland, OR 97035" +313164,Lightning Charging Cable,1,14.95,12/16/19 12:52,"681 Washington St, New York City, NY 10001" +313165,27in FHD Monitor,1,149.99,12/18/19 08:26,"491 River St, San Francisco, CA 94016" +313166,Lightning Charging Cable,1,14.95,12/25/19 23:09,"316 Hill St, Los Angeles, CA 90001" +313167,34in Ultrawide Monitor,1,379.99,12/10/19 10:54,"577 Walnut St, San Francisco, CA 94016" +313168,Apple Airpods Headphones,1,150,12/13/19 08:34,"257 Chestnut St, Seattle, WA 98101" +313169,AA Batteries (4-pack),1,3.84,12/04/19 10:30,"569 Walnut St, Los Angeles, CA 90001" +313170,34in Ultrawide Monitor,1,379.99,12/02/19 22:08,"271 Sunset St, Boston, MA 02215" +313171,Google Phone,1,600,12/02/19 11:39,"821 4th St, Los Angeles, CA 90001" +313172,Apple Airpods Headphones,1,150,12/13/19 20:42,"567 Dogwood St, Austin, TX 73301" +313173,Lightning Charging Cable,1,14.95,12/06/19 22:49,"817 6th St, Seattle, WA 98101" +313174,Lightning Charging Cable,1,14.95,12/09/19 18:42,"361 Hickory St, Los Angeles, CA 90001" +313175,Bose SoundSport Headphones,1,99.99,12/15/19 09:21,"984 Washington St, Austin, TX 73301" +313176,Flatscreen TV,1,300,12/25/19 10:55,"343 2nd St, Los Angeles, CA 90001" +313177,AAA Batteries (4-pack),1,2.99,12/01/19 16:43,"163 Main St, San Francisco, CA 94016" +313178,Google Phone,1,600,12/25/19 20:30,"376 Ridge St, Los Angeles, CA 90001" +313179,Macbook Pro Laptop,1,1700,12/27/19 17:59,"334 Hill St, Atlanta, GA 30301" +313180,USB-C Charging Cable,1,11.95,12/22/19 21:16,"746 Elm St, New York City, NY 10001" +313181,Lightning Charging Cable,1,14.95,12/12/19 14:20,"608 Lake St, Los Angeles, CA 90001" +313182,Bose SoundSport Headphones,1,99.99,12/11/19 06:38,"37 Cedar St, Portland, OR 97035" +313183,Apple Airpods Headphones,1,150,12/07/19 20:30,"227 Wilson St, San Francisco, CA 94016" +313184,AA Batteries (4-pack),2,3.84,12/27/19 12:38,"703 5th St, Austin, TX 73301" +313185,AA Batteries (4-pack),1,3.84,12/01/19 13:28,"267 Ridge St, Austin, TX 73301" +313186,Apple Airpods Headphones,1,150,12/20/19 08:15,"838 Spruce St, Portland, OR 97035" +313187,Bose SoundSport Headphones,1,99.99,12/14/19 14:32,"40 Hill St, Boston, MA 02215" +313188,AAA Batteries (4-pack),3,2.99,12/31/19 08:29,"472 13th St, Boston, MA 02215" +313189,Flatscreen TV,1,300,12/03/19 03:38,"913 5th St, New York City, NY 10001" +313190,Google Phone,1,600,12/21/19 13:16,"124 Jefferson St, San Francisco, CA 94016" +313191,USB-C Charging Cable,1,11.95,12/23/19 17:02,"689 Hickory St, Los Angeles, CA 90001" +313192,Lightning Charging Cable,1,14.95,12/13/19 22:38,"153 Washington St, New York City, NY 10001" +313193,Wired Headphones,1,11.99,12/15/19 21:46,"200 Pine St, Los Angeles, CA 90001" +313194,AA Batteries (4-pack),1,3.84,12/19/19 09:44,"493 6th St, San Francisco, CA 94016" +313195,Wired Headphones,1,11.99,12/18/19 17:30,"46 9th St, Atlanta, GA 30301" +313196,AA Batteries (4-pack),1,3.84,12/21/19 18:04,"570 Jackson St, Los Angeles, CA 90001" +313197,USB-C Charging Cable,1,11.95,12/19/19 18:31,"848 10th St, New York City, NY 10001" +313198,Wired Headphones,1,11.99,12/30/19 16:40,"835 Meadow St, Portland, OR 97035" +313199,USB-C Charging Cable,1,11.95,12/21/19 16:31,"809 7th St, Austin, TX 73301" +313200,Wired Headphones,1,11.99,12/24/19 12:43,"363 Walnut St, Seattle, WA 98101" +313201,Vareebadd Phone,1,400,12/06/19 20:53,"745 North St, Seattle, WA 98101" +313202,AA Batteries (4-pack),1,3.84,12/04/19 16:37,"583 Hickory St, Boston, MA 02215" +313203,34in Ultrawide Monitor,1,379.99,12/09/19 03:06,"328 6th St, Boston, MA 02215" +313204,Wired Headphones,1,11.99,12/28/19 12:58,"831 2nd St, Dallas, TX 75001" +313205,Google Phone,1,600,12/06/19 13:43,"977 Madison St, Atlanta, GA 30301" +313206,AAA Batteries (4-pack),2,2.99,12/31/19 10:50,"611 Madison St, Boston, MA 02215" +313207,Lightning Charging Cable,1,14.95,12/28/19 00:58,"254 Center St, Los Angeles, CA 90001" +313208,20in Monitor,1,109.99,12/01/19 13:54,"544 9th St, New York City, NY 10001" +313209,AA Batteries (4-pack),1,3.84,12/10/19 01:59,"526 5th St, Boston, MA 02215" +313210,34in Ultrawide Monitor,1,379.99,12/31/19 16:33,"927 Chestnut St, Los Angeles, CA 90001" +313211,Bose SoundSport Headphones,1,99.99,12/25/19 17:04,"464 Church St, Austin, TX 73301" +313212,Lightning Charging Cable,1,14.95,12/01/19 09:05,"317 Center St, Portland, OR 97035" +313213,USB-C Charging Cable,1,11.95,12/17/19 13:05,"439 Lincoln St, Austin, TX 73301" +313214,Lightning Charging Cable,1,14.95,12/01/19 11:52,"782 4th St, New York City, NY 10001" +313215,ThinkPad Laptop,1,999.99,12/07/19 18:02,"502 River St, New York City, NY 10001" +313216,USB-C Charging Cable,1,11.95,12/27/19 01:00,"952 Sunset St, New York City, NY 10001" +313217,Wired Headphones,1,11.99,12/13/19 14:34,"289 Park St, Portland, OR 97035" +313218,Lightning Charging Cable,1,14.95,12/07/19 11:23,"916 14th St, Boston, MA 02215" +313219,Lightning Charging Cable,2,14.95,12/06/19 22:22,"912 Forest St, Los Angeles, CA 90001" +313220,Vareebadd Phone,1,400,12/16/19 16:10,"135 Cedar St, San Francisco, CA 94016" +313220,USB-C Charging Cable,1,11.95,12/16/19 16:10,"135 Cedar St, San Francisco, CA 94016" +313221,Wired Headphones,1,11.99,12/14/19 17:17,"421 Willow St, Portland, OR 97035" +313222,USB-C Charging Cable,1,11.95,12/18/19 13:26,"666 Dogwood St, San Francisco, CA 94016" +313223,27in FHD Monitor,1,149.99,12/08/19 13:04,"570 Sunset St, San Francisco, CA 94016" +313224,Vareebadd Phone,1,400,12/18/19 07:16,"339 Center St, New York City, NY 10001" +313225,Macbook Pro Laptop,1,1700,12/18/19 18:26,"523 9th St, Portland, ME 04101" +313226,Wired Headphones,1,11.99,12/07/19 22:23,"210 Willow St, San Francisco, CA 94016" +313227,Lightning Charging Cable,1,14.95,12/31/19 10:12,"272 South St, Boston, MA 02215" +313228,AA Batteries (4-pack),1,3.84,12/05/19 17:04,"88 Dogwood St, San Francisco, CA 94016" +313229,AAA Batteries (4-pack),1,2.99,12/25/19 06:13,"619 9th St, San Francisco, CA 94016" +313230,Wired Headphones,1,11.99,12/05/19 14:17,"301 West St, San Francisco, CA 94016" +313231,Apple Airpods Headphones,1,150,12/26/19 10:07,"502 14th St, San Francisco, CA 94016" +313232,AA Batteries (4-pack),2,3.84,12/11/19 19:04,"491 11th St, Boston, MA 02215" +313233,USB-C Charging Cable,1,11.95,12/24/19 15:01,"433 West St, Los Angeles, CA 90001" +313233,Lightning Charging Cable,1,14.95,12/24/19 15:01,"433 West St, Los Angeles, CA 90001" +313234,AAA Batteries (4-pack),1,2.99,12/21/19 00:57,"606 Meadow St, Boston, MA 02215" +313235,AA Batteries (4-pack),1,3.84,12/25/19 19:52,"764 Cherry St, New York City, NY 10001" +313236,Apple Airpods Headphones,1,150,12/26/19 07:37,"462 Center St, Dallas, TX 75001" +313237,AA Batteries (4-pack),1,3.84,12/07/19 12:18,"478 Washington St, San Francisco, CA 94016" +313238,Bose SoundSport Headphones,1,99.99,12/16/19 11:44,"409 Spruce St, Atlanta, GA 30301" +313239,USB-C Charging Cable,1,11.95,12/23/19 18:14,"643 Willow St, Los Angeles, CA 90001" +313240,USB-C Charging Cable,1,11.95,12/26/19 13:28,"448 West St, New York City, NY 10001" +313241,AAA Batteries (4-pack),1,2.99,12/09/19 10:08,"146 2nd St, Austin, TX 73301" +313242,Lightning Charging Cable,1,14.95,12/07/19 23:36,"329 10th St, San Francisco, CA 94016" +313243,Wired Headphones,1,11.99,12/26/19 22:02,"343 14th St, San Francisco, CA 94016" +313244,Lightning Charging Cable,1,14.95,12/24/19 12:56,"730 Adams St, Boston, MA 02215" +313244,Wired Headphones,1,11.99,12/24/19 12:56,"730 Adams St, Boston, MA 02215" +313245,USB-C Charging Cable,1,11.95,12/12/19 16:19,"734 Wilson St, San Francisco, CA 94016" +313246,Lightning Charging Cable,1,14.95,12/05/19 15:58,"555 Ridge St, San Francisco, CA 94016" +313247,USB-C Charging Cable,1,11.95,12/25/19 15:40,"859 4th St, Boston, MA 02215" +313248,Wired Headphones,1,11.99,12/29/19 21:04,"342 14th St, Los Angeles, CA 90001" +313249,Lightning Charging Cable,1,14.95,12/09/19 13:37,"764 Cedar St, San Francisco, CA 94016" +313250,AAA Batteries (4-pack),2,2.99,12/17/19 18:09,"920 Spruce St, Portland, OR 97035" +313251,Wired Headphones,1,11.99,12/21/19 07:53,"643 Main St, San Francisco, CA 94016" +313252,Apple Airpods Headphones,1,150,12/28/19 13:24,"291 Johnson St, New York City, NY 10001" +313253,Apple Airpods Headphones,1,150,12/18/19 14:24,"264 10th St, New York City, NY 10001" +313254,Wired Headphones,1,11.99,12/22/19 01:36,"603 South St, San Francisco, CA 94016" +313255,Lightning Charging Cable,1,14.95,12/18/19 11:00,"658 Main St, Boston, MA 02215" +313256,Lightning Charging Cable,1,14.95,12/24/19 06:26,"281 Maple St, San Francisco, CA 94016" +313257,AA Batteries (4-pack),2,3.84,12/22/19 20:55,"935 Adams St, Boston, MA 02215" +313258,Bose SoundSport Headphones,1,99.99,12/20/19 09:29,"407 1st St, Dallas, TX 75001" +313258,Wired Headphones,1,11.99,12/20/19 09:29,"407 1st St, Dallas, TX 75001" +313259,ThinkPad Laptop,1,999.99,12/08/19 09:18,"25 Jackson St, San Francisco, CA 94016" +313260,Lightning Charging Cable,1,14.95,12/09/19 12:25,"718 4th St, Atlanta, GA 30301" +313261,Bose SoundSport Headphones,1,99.99,12/05/19 12:34,"587 13th St, New York City, NY 10001" +313262,Apple Airpods Headphones,1,150,12/27/19 08:32,"876 Dogwood St, San Francisco, CA 94016" +313263,Lightning Charging Cable,1,14.95,12/05/19 14:25,"204 Dogwood St, Boston, MA 02215" +313264,AA Batteries (4-pack),1,3.84,12/09/19 11:11,"97 Church St, San Francisco, CA 94016" +313265,27in FHD Monitor,1,149.99,12/10/19 17:14,"906 Center St, San Francisco, CA 94016" +313266,AAA Batteries (4-pack),6,2.99,12/23/19 08:33,"732 Madison St, New York City, NY 10001" +313267,USB-C Charging Cable,1,11.95,12/22/19 10:33,"911 14th St, Austin, TX 73301" +313268,iPhone,1,700,12/27/19 20:13,"944 Johnson St, Boston, MA 02215" +313269,Wired Headphones,1,11.99,12/11/19 21:53,"995 8th St, Seattle, WA 98101" +313270,27in FHD Monitor,1,149.99,12/11/19 18:04,"254 8th St, Seattle, WA 98101" +313271,Wired Headphones,1,11.99,12/26/19 11:35,"436 Elm St, San Francisco, CA 94016" +313272,Lightning Charging Cable,1,14.95,12/02/19 16:59,"437 Cherry St, Boston, MA 02215" +313273,Wired Headphones,1,11.99,12/12/19 12:48,"445 Walnut St, Boston, MA 02215" +313274,Lightning Charging Cable,1,14.95,12/04/19 01:11,"466 10th St, San Francisco, CA 94016" +313275,27in FHD Monitor,1,149.99,12/31/19 11:58,"144 Washington St, Seattle, WA 98101" +313276,20in Monitor,1,109.99,12/17/19 16:46,"486 Dogwood St, Austin, TX 73301" +313277,iPhone,1,700,12/16/19 22:49,"543 Cedar St, Atlanta, GA 30301" +313278,AAA Batteries (4-pack),1,2.99,12/30/19 21:06,"75 4th St, San Francisco, CA 94016" +313279,AA Batteries (4-pack),1,3.84,12/01/19 20:29,"762 Johnson St, San Francisco, CA 94016" +313280,AAA Batteries (4-pack),3,2.99,12/03/19 10:12,"950 6th St, Los Angeles, CA 90001" +313281,Apple Airpods Headphones,1,150,12/08/19 19:50,"36 2nd St, Los Angeles, CA 90001" +313282,Lightning Charging Cable,1,14.95,12/16/19 18:51,"948 7th St, Los Angeles, CA 90001" +313283,AAA Batteries (4-pack),1,2.99,12/23/19 08:05,"872 5th St, Los Angeles, CA 90001" +313284,Lightning Charging Cable,1,14.95,12/14/19 14:56,"822 Cedar St, San Francisco, CA 94016" +313285,AA Batteries (4-pack),1,3.84,12/31/19 19:26,"542 Lakeview St, San Francisco, CA 94016" +313286,AA Batteries (4-pack),2,3.84,12/27/19 22:28,"224 10th St, New York City, NY 10001" +313287,USB-C Charging Cable,2,11.95,12/13/19 11:33,"935 Chestnut St, San Francisco, CA 94016" +313288,ThinkPad Laptop,1,999.99,12/07/19 23:19,"504 Chestnut St, New York City, NY 10001" +313289,Lightning Charging Cable,1,14.95,12/12/19 09:18,"392 North St, Seattle, WA 98101" +313290,AA Batteries (4-pack),1,3.84,12/29/19 22:14,"253 Cedar St, Los Angeles, CA 90001" +313291,Google Phone,1,600,12/30/19 18:22,"60 7th St, New York City, NY 10001" +313292,iPhone,1,700,12/19/19 10:52,"97 Chestnut St, San Francisco, CA 94016" +313292,Wired Headphones,1,11.99,12/19/19 10:52,"97 Chestnut St, San Francisco, CA 94016" +313293,Wired Headphones,1,11.99,12/05/19 15:33,"505 Hickory St, Los Angeles, CA 90001" +313294,34in Ultrawide Monitor,1,379.99,12/04/19 00:25,"26 8th St, Dallas, TX 75001" +313295,27in FHD Monitor,1,149.99,12/02/19 18:29,"666 14th St, Boston, MA 02215" +313296,iPhone,1,700,12/26/19 16:54,"647 Meadow St, San Francisco, CA 94016" +313297,AA Batteries (4-pack),1,3.84,12/02/19 10:33,"497 River St, New York City, NY 10001" +313298,27in FHD Monitor,1,149.99,12/05/19 21:12,"155 6th St, Seattle, WA 98101" +313299,AAA Batteries (4-pack),1,2.99,12/17/19 15:08,"795 Park St, San Francisco, CA 94016" +313300,iPhone,1,700,12/24/19 22:08,"418 1st St, Dallas, TX 75001" +313301,Lightning Charging Cable,1,14.95,12/27/19 22:08,"500 Church St, Boston, MA 02215" +313302,AAA Batteries (4-pack),3,2.99,12/19/19 14:16,"232 11th St, Portland, ME 04101" +313303,AA Batteries (4-pack),1,3.84,12/29/19 18:33,"705 1st St, Boston, MA 02215" +313304,Lightning Charging Cable,1,14.95,12/04/19 11:00,"53 Spruce St, New York City, NY 10001" +313305,AAA Batteries (4-pack),1,2.99,12/24/19 18:27,"861 Highland St, San Francisco, CA 94016" +313306,AAA Batteries (4-pack),1,2.99,12/24/19 18:09,"500 12th St, Boston, MA 02215" +313307,LG Washing Machine,1,600.0,12/24/19 15:51,"435 Walnut St, New York City, NY 10001" +313308,Apple Airpods Headphones,1,150,12/19/19 10:40,"585 River St, Seattle, WA 98101" +313309,AAA Batteries (4-pack),1,2.99,12/15/19 20:14,"806 Adams St, San Francisco, CA 94016" +313310,Wired Headphones,1,11.99,12/10/19 19:44,"354 Sunset St, San Francisco, CA 94016" +313311,Wired Headphones,1,11.99,12/05/19 13:15,"547 7th St, New York City, NY 10001" +313312,Lightning Charging Cable,1,14.95,12/06/19 23:09,"686 Meadow St, Seattle, WA 98101" +313313,LG Washing Machine,1,600.0,12/15/19 06:56,"162 Cedar St, Seattle, WA 98101" +313314,USB-C Charging Cable,1,11.95,12/03/19 20:59,"388 7th St, Seattle, WA 98101" +313315,20in Monitor,1,109.99,12/28/19 23:03,"242 Washington St, San Francisco, CA 94016" +313316,27in 4K Gaming Monitor,1,389.99,12/13/19 14:42,"516 Highland St, Seattle, WA 98101" +313317,20in Monitor,1,109.99,12/04/19 14:27,"512 Dogwood St, Los Angeles, CA 90001" +313318,AAA Batteries (4-pack),1,2.99,12/16/19 06:21,"373 Willow St, Atlanta, GA 30301" +313319,ThinkPad Laptop,1,999.99,12/25/19 15:34,"491 Park St, Seattle, WA 98101" +313320,27in FHD Monitor,1,149.99,12/20/19 20:18,"563 Hill St, San Francisco, CA 94016" +313321,USB-C Charging Cable,1,11.95,12/04/19 16:32,"864 Chestnut St, San Francisco, CA 94016" +313322,Lightning Charging Cable,1,14.95,12/16/19 13:53,"47 Maple St, Portland, OR 97035" +313323,Bose SoundSport Headphones,1,99.99,12/12/19 00:45,"172 10th St, Los Angeles, CA 90001" +313324,AA Batteries (4-pack),1,3.84,12/25/19 10:11,"546 9th St, Atlanta, GA 30301" +313325,USB-C Charging Cable,1,11.95,12/14/19 10:39,"143 Dogwood St, San Francisco, CA 94016" +313326,34in Ultrawide Monitor,1,379.99,12/12/19 19:13,"142 6th St, Austin, TX 73301" +313327,AA Batteries (4-pack),4,3.84,12/21/19 17:01,"309 Sunset St, Los Angeles, CA 90001" +313328,Wired Headphones,1,11.99,12/21/19 21:15,"35 West St, Austin, TX 73301" +313329,AAA Batteries (4-pack),4,2.99,12/15/19 21:41,"352 2nd St, New York City, NY 10001" +313330,AA Batteries (4-pack),2,3.84,12/25/19 17:09,"702 7th St, New York City, NY 10001" +313331,27in 4K Gaming Monitor,1,389.99,12/28/19 20:56,"96 Chestnut St, San Francisco, CA 94016" +313332,Bose SoundSport Headphones,1,99.99,12/31/19 00:41,"676 Ridge St, New York City, NY 10001" +313333,AA Batteries (4-pack),2,3.84,12/16/19 17:44,"863 Hill St, New York City, NY 10001" +313334,AA Batteries (4-pack),1,3.84,12/30/19 06:01,"394 Lakeview St, New York City, NY 10001" +313335,Lightning Charging Cable,1,14.95,12/05/19 13:40,"90 Chestnut St, San Francisco, CA 94016" +313336,USB-C Charging Cable,1,11.95,12/24/19 07:07,"459 Sunset St, Portland, OR 97035" +313337,Lightning Charging Cable,1,14.95,12/22/19 08:26,"589 Hickory St, Boston, MA 02215" +313338,AA Batteries (4-pack),2,3.84,12/30/19 12:16,"554 Chestnut St, San Francisco, CA 94016" +313339,Wired Headphones,1,11.99,12/09/19 15:20,"890 11th St, Seattle, WA 98101" +313340,AA Batteries (4-pack),2,3.84,12/06/19 19:09,"533 Main St, San Francisco, CA 94016" +313341,Lightning Charging Cable,1,14.95,12/10/19 09:03,"282 Ridge St, Portland, OR 97035" +313342,AA Batteries (4-pack),1,3.84,12/18/19 17:11,"663 South St, Portland, OR 97035" +313343,AAA Batteries (4-pack),3,2.99,12/30/19 12:01,"179 12th St, Boston, MA 02215" +313344,USB-C Charging Cable,1,11.95,12/23/19 21:59,"908 Adams St, San Francisco, CA 94016" +313345,Vareebadd Phone,1,400,12/08/19 06:40,"976 Spruce St, Atlanta, GA 30301" +313346,Wired Headphones,2,11.99,12/21/19 10:50,"468 13th St, San Francisco, CA 94016" +313347,Lightning Charging Cable,2,14.95,12/16/19 22:55,"684 Meadow St, San Francisco, CA 94016" +313348,Google Phone,1,600,12/18/19 10:06,"302 Lake St, Atlanta, GA 30301" +313348,Wired Headphones,1,11.99,12/18/19 10:06,"302 Lake St, Atlanta, GA 30301" +313349,USB-C Charging Cable,2,11.95,12/13/19 11:57,"250 Hill St, Atlanta, GA 30301" +313350,Flatscreen TV,1,300,12/12/19 23:24,"671 Lake St, Boston, MA 02215" +313351,Wired Headphones,1,11.99,12/26/19 08:46,"327 12th St, Los Angeles, CA 90001" +313352,USB-C Charging Cable,1,11.95,01/01/20 02:29,"8 Cherry St, Portland, OR 97035" +313353,27in FHD Monitor,1,149.99,12/24/19 11:00,"635 Hickory St, San Francisco, CA 94016" +313354,20in Monitor,1,109.99,12/08/19 22:13,"220 Forest St, Austin, TX 73301" +313355,Lightning Charging Cable,1,14.95,12/02/19 13:48,"822 8th St, Los Angeles, CA 90001" +313356,AA Batteries (4-pack),1,3.84,12/21/19 09:17,"827 Willow St, Atlanta, GA 30301" +313357,27in FHD Monitor,1,149.99,12/14/19 09:41,"356 12th St, Seattle, WA 98101" +313358,AAA Batteries (4-pack),1,2.99,12/28/19 14:35,"932 4th St, San Francisco, CA 94016" +313359,AAA Batteries (4-pack),1,2.99,12/23/19 21:11,"957 Jackson St, Seattle, WA 98101" +313360,USB-C Charging Cable,1,11.95,12/13/19 22:42,"658 Chestnut St, Boston, MA 02215" +313361,AAA Batteries (4-pack),2,2.99,12/18/19 19:38,"680 13th St, Boston, MA 02215" +313362,USB-C Charging Cable,2,11.95,12/23/19 02:10,"91 Forest St, New York City, NY 10001" +313363,AA Batteries (4-pack),1,3.84,12/05/19 13:07,"556 Highland St, San Francisco, CA 94016" +313364,27in 4K Gaming Monitor,1,389.99,12/11/19 20:29,"681 Church St, Los Angeles, CA 90001" +313365,AAA Batteries (4-pack),1,2.99,12/25/19 09:55,"168 Hill St, Los Angeles, CA 90001" +313366,Apple Airpods Headphones,1,150,12/22/19 15:52,"4 Johnson St, Boston, MA 02215" +313367,AAA Batteries (4-pack),1,2.99,12/19/19 12:50,"281 2nd St, New York City, NY 10001" +313368,Bose SoundSport Headphones,1,99.99,12/18/19 20:29,"396 Willow St, Los Angeles, CA 90001" +313369,27in 4K Gaming Monitor,1,389.99,12/27/19 15:30,"843 9th St, Boston, MA 02215" +313370,AAA Batteries (4-pack),1,2.99,12/03/19 13:27,"966 Elm St, San Francisco, CA 94016" +313371,Apple Airpods Headphones,2,150,12/10/19 10:37,"394 Meadow St, Atlanta, GA 30301" +313372,34in Ultrawide Monitor,1,379.99,12/23/19 11:21,"160 North St, New York City, NY 10001" +313372,AAA Batteries (4-pack),1,2.99,12/23/19 11:21,"160 North St, New York City, NY 10001" +313373,Lightning Charging Cable,1,14.95,12/07/19 14:56,"50 West St, Los Angeles, CA 90001" +313374,iPhone,1,700,12/07/19 15:15,"840 Jackson St, Boston, MA 02215" +313375,Wired Headphones,2,11.99,12/03/19 08:30,"954 North St, Boston, MA 02215" +313376,20in Monitor,1,109.99,12/11/19 17:55,"956 Wilson St, Los Angeles, CA 90001" +313376,USB-C Charging Cable,1,11.95,12/11/19 17:55,"956 Wilson St, Los Angeles, CA 90001" +313377,27in 4K Gaming Monitor,1,389.99,12/01/19 20:27,"89 Madison St, Dallas, TX 75001" +313378,Wired Headphones,1,11.99,12/24/19 09:58,"192 1st St, Seattle, WA 98101" +313379,Lightning Charging Cable,1,14.95,12/15/19 11:25,"652 Lake St, San Francisco, CA 94016" +313380,AA Batteries (4-pack),1,3.84,12/24/19 14:10,"243 Pine St, San Francisco, CA 94016" +313381,AA Batteries (4-pack),1,3.84,12/17/19 18:20,"304 6th St, Portland, OR 97035" +313382,Wired Headphones,1,11.99,12/30/19 18:10,"704 Forest St, Atlanta, GA 30301" +313382,AA Batteries (4-pack),2,3.84,12/30/19 18:10,"704 Forest St, Atlanta, GA 30301" +313383,Apple Airpods Headphones,1,150,12/12/19 13:49,"585 Wilson St, San Francisco, CA 94016" +313384,AAA Batteries (4-pack),3,2.99,12/29/19 00:37,"547 7th St, Dallas, TX 75001" +313385,iPhone,1,700,12/28/19 16:41,"122 Main St, San Francisco, CA 94016" +313386,Bose SoundSport Headphones,1,99.99,12/23/19 19:08,"171 7th St, San Francisco, CA 94016" +313387,Google Phone,1,600,12/21/19 12:44,"251 Wilson St, San Francisco, CA 94016" +313388,AAA Batteries (4-pack),1,2.99,12/25/19 17:37,"392 Sunset St, Boston, MA 02215" +313389,Flatscreen TV,1,300,12/10/19 20:10,"495 14th St, Los Angeles, CA 90001" +313390,ThinkPad Laptop,1,999.99,12/05/19 09:49,"418 Church St, Los Angeles, CA 90001" +313391,Macbook Pro Laptop,1,1700,12/13/19 22:49,"906 14th St, San Francisco, CA 94016" +313392,ThinkPad Laptop,1,999.99,12/10/19 19:13,"466 Jackson St, San Francisco, CA 94016" +313393,Wired Headphones,1,11.99,12/16/19 18:37,"450 South St, San Francisco, CA 94016" +313394,Wired Headphones,1,11.99,12/25/19 23:47,"897 Cedar St, Boston, MA 02215" +313395,iPhone,1,700,12/15/19 15:09,"359 Spruce St, New York City, NY 10001" +313395,Apple Airpods Headphones,1,150,12/15/19 15:09,"359 Spruce St, New York City, NY 10001" +313396,AA Batteries (4-pack),1,3.84,12/04/19 18:57,"776 Main St, Portland, OR 97035" +313397,Lightning Charging Cable,1,14.95,12/07/19 10:54,"557 9th St, Boston, MA 02215" +313398,Lightning Charging Cable,1,14.95,12/15/19 11:26,"430 6th St, New York City, NY 10001" +313399,27in 4K Gaming Monitor,1,389.99,12/11/19 22:01,"258 Hickory St, San Francisco, CA 94016" +313400,Apple Airpods Headphones,1,150,12/02/19 22:23,"440 7th St, Seattle, WA 98101" +313401,AAA Batteries (4-pack),2,2.99,12/01/19 10:55,"247 14th St, Los Angeles, CA 90001" +313402,Wired Headphones,1,11.99,12/03/19 13:54,"247 Madison St, Dallas, TX 75001" +313403,Bose SoundSport Headphones,1,99.99,12/18/19 18:00,"680 14th St, New York City, NY 10001" +313404,Apple Airpods Headphones,1,150,12/27/19 10:08,"61 Adams St, Portland, OR 97035" +313405,USB-C Charging Cable,1,11.95,12/15/19 16:27,"906 Chestnut St, Austin, TX 73301" +313406,Wired Headphones,3,11.99,12/03/19 11:26,"478 Hill St, Portland, ME 04101" +313407,Lightning Charging Cable,1,14.95,12/08/19 15:47,"644 Walnut St, Los Angeles, CA 90001" +313408,Flatscreen TV,1,300,12/19/19 10:19,"304 4th St, San Francisco, CA 94016" +313409,Lightning Charging Cable,1,14.95,12/10/19 10:14,"852 2nd St, New York City, NY 10001" +313410,USB-C Charging Cable,1,11.95,12/09/19 07:55,"858 Lakeview St, Portland, ME 04101" +313411,USB-C Charging Cable,1,11.95,12/27/19 20:46,"467 Elm St, Seattle, WA 98101" +313412,AA Batteries (4-pack),1,3.84,12/05/19 08:02,"866 5th St, Boston, MA 02215" +313413,34in Ultrawide Monitor,1,379.99,12/02/19 17:57,"463 Ridge St, New York City, NY 10001" +313414,AA Batteries (4-pack),1,3.84,12/31/19 16:34,"930 North St, Atlanta, GA 30301" +313415,Bose SoundSport Headphones,1,99.99,12/14/19 07:47,"43 5th St, Los Angeles, CA 90001" +313416,Flatscreen TV,1,300,12/02/19 09:25,"296 11th St, Dallas, TX 75001" +313417,Lightning Charging Cable,1,14.95,12/07/19 00:14,"907 Lake St, New York City, NY 10001" +313418,AAA Batteries (4-pack),2,2.99,12/29/19 11:34,"909 Hickory St, Boston, MA 02215" +313419,Wired Headphones,1,11.99,12/18/19 20:18,"26 Jefferson St, Austin, TX 73301" +313420,AA Batteries (4-pack),2,3.84,12/05/19 01:33,"357 6th St, Los Angeles, CA 90001" +313421,AA Batteries (4-pack),1,3.84,12/09/19 00:12,"954 Cedar St, San Francisco, CA 94016" +313422,iPhone,1,700,12/23/19 09:57,"780 Adams St, New York City, NY 10001" +313423,AA Batteries (4-pack),1,3.84,12/06/19 08:40,"711 5th St, Atlanta, GA 30301" +313424,Bose SoundSport Headphones,2,99.99,12/19/19 13:21,"131 Ridge St, Boston, MA 02215" +313425,USB-C Charging Cable,1,11.95,12/03/19 15:26,"394 13th St, Atlanta, GA 30301" +313426,AA Batteries (4-pack),1,3.84,12/31/19 17:01,"514 2nd St, Austin, TX 73301" +313427,USB-C Charging Cable,2,11.95,12/20/19 20:37,"309 River St, Los Angeles, CA 90001" +313428,Lightning Charging Cable,1,14.95,12/02/19 09:44,"527 2nd St, Los Angeles, CA 90001" +313429,iPhone,1,700,12/05/19 23:17,"687 Washington St, San Francisco, CA 94016" +313430,34in Ultrawide Monitor,1,379.99,12/07/19 17:03,"180 Highland St, San Francisco, CA 94016" +313431,Wired Headphones,1,11.99,12/19/19 15:20,"47 River St, Seattle, WA 98101" +313432,Bose SoundSport Headphones,1,99.99,12/04/19 17:51,"472 Jackson St, San Francisco, CA 94016" +313432,Flatscreen TV,1,300,12/04/19 17:51,"472 Jackson St, San Francisco, CA 94016" +313433,Macbook Pro Laptop,1,1700,12/19/19 19:44,"702 1st St, San Francisco, CA 94016" +313434,Apple Airpods Headphones,1,150,12/28/19 12:29,"567 Madison St, Boston, MA 02215" +313435,USB-C Charging Cable,1,11.95,12/11/19 07:44,"54 Lakeview St, New York City, NY 10001" +,,,,, +313436,AA Batteries (4-pack),1,3.84,12/22/19 11:22,"242 6th St, Los Angeles, CA 90001" +313437,AAA Batteries (4-pack),1,2.99,12/06/19 12:03,"972 South St, Boston, MA 02215" +313438,Lightning Charging Cable,1,14.95,12/15/19 20:58,"152 West St, Boston, MA 02215" +313439,20in Monitor,1,109.99,12/05/19 11:13,"29 North St, Atlanta, GA 30301" +313440,AAA Batteries (4-pack),1,2.99,12/09/19 21:04,"51 Maple St, San Francisco, CA 94016" +313441,Lightning Charging Cable,1,14.95,12/18/19 11:54,"978 Walnut St, New York City, NY 10001" +313441,Bose SoundSport Headphones,1,99.99,12/18/19 11:54,"978 Walnut St, New York City, NY 10001" +313442,iPhone,1,700,12/02/19 22:35,"788 Pine St, Los Angeles, CA 90001" +313442,Lightning Charging Cable,1,14.95,12/02/19 22:35,"788 Pine St, Los Angeles, CA 90001" +313443,Wired Headphones,1,11.99,12/08/19 18:51,"345 Lakeview St, Portland, ME 04101" +313444,20in Monitor,1,109.99,12/06/19 16:34,"891 Hickory St, Boston, MA 02215" +313445,iPhone,1,700,12/04/19 08:52,"439 11th St, Seattle, WA 98101" +313445,Lightning Charging Cable,1,14.95,12/04/19 08:52,"439 11th St, Seattle, WA 98101" +313446,AA Batteries (4-pack),1,3.84,12/12/19 10:04,"280 Lincoln St, Boston, MA 02215" +313447,27in FHD Monitor,1,149.99,12/09/19 11:50,"129 Willow St, New York City, NY 10001" +313448,AA Batteries (4-pack),5,3.84,12/23/19 20:22,"889 Hickory St, New York City, NY 10001" +313449,27in 4K Gaming Monitor,1,389.99,12/29/19 18:09,"290 6th St, New York City, NY 10001" +313450,Bose SoundSport Headphones,1,99.99,12/13/19 13:14,"403 Pine St, Los Angeles, CA 90001" +313451,Google Phone,1,600,12/28/19 16:29,"24 Willow St, San Francisco, CA 94016" +313452,34in Ultrawide Monitor,1,379.99,12/23/19 09:14,"869 Cedar St, San Francisco, CA 94016" +313453,USB-C Charging Cable,1,11.95,12/31/19 13:16,"650 Lincoln St, Boston, MA 02215" +313454,AA Batteries (4-pack),2,3.84,12/10/19 17:19,"910 Ridge St, Boston, MA 02215" +313455,iPhone,1,700,12/13/19 05:00,"566 Cherry St, New York City, NY 10001" +313455,Apple Airpods Headphones,1,150,12/13/19 05:00,"566 Cherry St, New York City, NY 10001" +313456,Wired Headphones,1,11.99,12/28/19 14:39,"437 Johnson St, New York City, NY 10001" +313457,Wired Headphones,1,11.99,12/05/19 14:48,"485 6th St, Seattle, WA 98101" +313458,Apple Airpods Headphones,1,150,12/31/19 20:20,"875 Lincoln St, New York City, NY 10001" +313459,27in FHD Monitor,1,149.99,12/26/19 12:00,"48 Pine St, Portland, ME 04101" +313460,Wired Headphones,2,11.99,12/16/19 11:33,"882 4th St, San Francisco, CA 94016" +313461,USB-C Charging Cable,1,11.95,12/12/19 12:17,"293 13th St, San Francisco, CA 94016" +313462,Wired Headphones,1,11.99,12/01/19 22:35,"210 Madison St, Portland, OR 97035" +313463,iPhone,1,700,12/15/19 06:56,"384 14th St, Boston, MA 02215" +313464,20in Monitor,1,109.99,12/30/19 02:31,"828 Dogwood St, New York City, NY 10001" +313465,USB-C Charging Cable,1,11.95,12/02/19 19:51,"371 Lakeview St, New York City, NY 10001" +313466,20in Monitor,1,109.99,12/13/19 11:33,"768 9th St, New York City, NY 10001" +313467,20in Monitor,1,109.99,12/21/19 06:28,"371 5th St, Atlanta, GA 30301" +313468,AAA Batteries (4-pack),1,2.99,12/05/19 21:11,"407 Pine St, Austin, TX 73301" +313469,Wired Headphones,1,11.99,12/22/19 14:30,"291 Elm St, Seattle, WA 98101" +313470,Lightning Charging Cable,1,14.95,12/21/19 00:52,"234 8th St, Seattle, WA 98101" +313471,USB-C Charging Cable,1,11.95,12/02/19 10:04,"68 Jackson St, Portland, OR 97035" +313472,USB-C Charging Cable,1,11.95,12/15/19 19:25,"964 11th St, Atlanta, GA 30301" +313473,AAA Batteries (4-pack),1,2.99,12/22/19 12:18,"682 5th St, Atlanta, GA 30301" +313474,27in FHD Monitor,1,149.99,12/08/19 23:10,"383 Hickory St, Portland, OR 97035" +313475,AAA Batteries (4-pack),1,2.99,12/23/19 06:54,"535 Jefferson St, Seattle, WA 98101" +313476,Vareebadd Phone,1,400,12/10/19 20:18,"121 Highland St, New York City, NY 10001" +313477,Lightning Charging Cable,1,14.95,12/13/19 16:28,"437 Main St, Seattle, WA 98101" +313478,AA Batteries (4-pack),1,3.84,12/15/19 13:06,"605 Forest St, San Francisco, CA 94016" +313479,27in 4K Gaming Monitor,1,389.99,12/19/19 22:22,"585 8th St, San Francisco, CA 94016" +313480,Lightning Charging Cable,1,14.95,12/27/19 11:21,"807 7th St, Los Angeles, CA 90001" +313481,AAA Batteries (4-pack),3,2.99,12/15/19 19:25,"13 Highland St, Dallas, TX 75001" +313482,iPhone,1,700,12/13/19 22:05,"515 Pine St, Austin, TX 73301" +313483,Wired Headphones,1,11.99,12/18/19 23:07,"682 Spruce St, Austin, TX 73301" +313484,27in 4K Gaming Monitor,1,389.99,12/13/19 12:55,"393 Dogwood St, Atlanta, GA 30301" +313485,Wired Headphones,1,11.99,12/28/19 17:48,"625 Lake St, Atlanta, GA 30301" +313486,Wired Headphones,1,11.99,12/27/19 20:13,"78 West St, Los Angeles, CA 90001" +313487,27in 4K Gaming Monitor,1,389.99,12/31/19 23:40,"894 Ridge St, Dallas, TX 75001" +313488,27in 4K Gaming Monitor,1,389.99,12/11/19 10:02,"35 Elm St, San Francisco, CA 94016" +313488,Apple Airpods Headphones,1,150,12/11/19 10:02,"35 Elm St, San Francisco, CA 94016" +313489,Lightning Charging Cable,1,14.95,12/23/19 17:49,"882 Church St, Boston, MA 02215" +313490,Wired Headphones,1,11.99,12/29/19 16:11,"592 Dogwood St, Austin, TX 73301" +313491,Apple Airpods Headphones,1,150,12/05/19 16:59,"774 Meadow St, New York City, NY 10001" +313492,Google Phone,1,600,12/04/19 17:08,"125 6th St, San Francisco, CA 94016" +313492,Bose SoundSport Headphones,1,99.99,12/04/19 17:08,"125 6th St, San Francisco, CA 94016" +313493,AAA Batteries (4-pack),1,2.99,12/23/19 11:25,"696 Hickory St, San Francisco, CA 94016" +313494,iPhone,1,700,12/19/19 10:34,"688 Jackson St, San Francisco, CA 94016" +313495,Apple Airpods Headphones,1,150,12/06/19 21:25,"566 Hickory St, Boston, MA 02215" +313496,AA Batteries (4-pack),1,3.84,12/16/19 15:12,"466 2nd St, Atlanta, GA 30301" +313497,Lightning Charging Cable,2,14.95,12/04/19 07:45,"365 Maple St, San Francisco, CA 94016" +313498,USB-C Charging Cable,1,11.95,12/02/19 11:34,"427 12th St, San Francisco, CA 94016" +313499,Bose SoundSport Headphones,1,99.99,12/11/19 12:59,"720 River St, Seattle, WA 98101" +313500,Flatscreen TV,1,300,12/09/19 11:16,"846 Washington St, Seattle, WA 98101" +313501,Vareebadd Phone,1,400,12/18/19 22:21,"714 Church St, Los Angeles, CA 90001" +313501,USB-C Charging Cable,1,11.95,12/18/19 22:21,"714 Church St, Los Angeles, CA 90001" +313501,AA Batteries (4-pack),2,3.84,12/18/19 22:21,"714 Church St, Los Angeles, CA 90001" +313502,AA Batteries (4-pack),2,3.84,12/23/19 16:04,"413 14th St, Los Angeles, CA 90001" +313503,Bose SoundSport Headphones,1,99.99,12/29/19 18:50,"912 2nd St, New York City, NY 10001" +313504,Bose SoundSport Headphones,1,99.99,12/25/19 18:00,"309 Maple St, Atlanta, GA 30301" +313505,34in Ultrawide Monitor,1,379.99,12/17/19 18:35,"453 Washington St, Boston, MA 02215" +313506,AA Batteries (4-pack),1,3.84,12/12/19 17:07,"107 Hickory St, New York City, NY 10001" +313507,Lightning Charging Cable,1,14.95,12/07/19 10:52,"843 Jackson St, Dallas, TX 75001" +313508,USB-C Charging Cable,1,11.95,12/13/19 20:08,"475 13th St, Los Angeles, CA 90001" +313509,Apple Airpods Headphones,1,150,12/20/19 13:16,"310 6th St, San Francisco, CA 94016" +313510,ThinkPad Laptop,1,999.99,12/09/19 10:32,"805 1st St, Atlanta, GA 30301" +313511,27in FHD Monitor,1,149.99,12/28/19 13:04,"309 13th St, San Francisco, CA 94016" +313512,Apple Airpods Headphones,1,150,12/19/19 17:09,"579 Center St, New York City, NY 10001" +313513,ThinkPad Laptop,1,999.99,12/12/19 18:37,"81 Dogwood St, Los Angeles, CA 90001" +313514,Wired Headphones,1,11.99,12/20/19 20:04,"688 Spruce St, Portland, OR 97035" +313515,Wired Headphones,1,11.99,12/07/19 20:59,"447 South St, New York City, NY 10001" +313516,Lightning Charging Cable,2,14.95,12/04/19 17:46,"726 Johnson St, Austin, TX 73301" +313517,USB-C Charging Cable,1,11.95,12/30/19 22:59,"252 Church St, Dallas, TX 75001" +313518,AA Batteries (4-pack),1,3.84,12/25/19 01:43,"866 Jefferson St, San Francisco, CA 94016" +313519,AAA Batteries (4-pack),1,2.99,12/18/19 12:57,"296 13th St, Atlanta, GA 30301" +313520,AAA Batteries (4-pack),1,2.99,12/23/19 18:56,"465 Madison St, Atlanta, GA 30301" +313521,iPhone,1,700,12/16/19 16:43,"550 Pine St, Los Angeles, CA 90001" +313522,Macbook Pro Laptop,1,1700,12/17/19 14:13,"779 13th St, San Francisco, CA 94016" +313523,USB-C Charging Cable,1,11.95,12/09/19 01:23,"200 South St, Seattle, WA 98101" +313524,USB-C Charging Cable,1,11.95,12/17/19 17:14,"157 Highland St, Atlanta, GA 30301" +313525,AA Batteries (4-pack),2,3.84,12/20/19 09:04,"429 Highland St, Austin, TX 73301" +313526,AA Batteries (4-pack),1,3.84,12/18/19 14:40,"97 Park St, Seattle, WA 98101" +313527,Lightning Charging Cable,1,14.95,12/18/19 09:37,"328 Lake St, San Francisco, CA 94016" +313528,Bose SoundSport Headphones,1,99.99,12/14/19 20:50,"767 Spruce St, San Francisco, CA 94016" +313529,AA Batteries (4-pack),1,3.84,12/25/19 11:56,"240 Center St, Austin, TX 73301" +313530,AA Batteries (4-pack),1,3.84,12/19/19 11:54,"838 Cherry St, Portland, ME 04101" +313531,AAA Batteries (4-pack),3,2.99,12/07/19 10:32,"336 11th St, San Francisco, CA 94016" +313532,USB-C Charging Cable,1,11.95,12/12/19 10:12,"557 Wilson St, San Francisco, CA 94016" +313533,Apple Airpods Headphones,1,150,12/06/19 13:52,"885 10th St, Austin, TX 73301" +313534,34in Ultrawide Monitor,1,379.99,12/13/19 13:09,"286 Church St, Los Angeles, CA 90001" +313535,AA Batteries (4-pack),1,3.84,12/20/19 13:32,"353 Chestnut St, Atlanta, GA 30301" +313536,Wired Headphones,1,11.99,12/29/19 16:58,"947 Highland St, Boston, MA 02215" +313537,Wired Headphones,1,11.99,12/21/19 14:52,"423 Hickory St, New York City, NY 10001" +313538,Lightning Charging Cable,2,14.95,12/20/19 16:49,"12 Center St, New York City, NY 10001" +313539,Apple Airpods Headphones,1,150,12/20/19 20:04,"235 1st St, New York City, NY 10001" +313540,Lightning Charging Cable,1,14.95,12/09/19 10:04,"884 1st St, Boston, MA 02215" +313541,AAA Batteries (4-pack),1,2.99,12/19/19 12:40,"535 Ridge St, San Francisco, CA 94016" +313542,AA Batteries (4-pack),1,3.84,12/16/19 23:06,"228 South St, Boston, MA 02215" +313543,Wired Headphones,1,11.99,12/24/19 07:23,"458 13th St, Austin, TX 73301" +313544,AA Batteries (4-pack),1,3.84,12/08/19 10:06,"52 10th St, Boston, MA 02215" +313545,iPhone,1,700,12/17/19 15:07,"799 Hill St, Boston, MA 02215" +313546,AAA Batteries (4-pack),3,2.99,12/14/19 13:56,"984 Forest St, Seattle, WA 98101" +313547,USB-C Charging Cable,1,11.95,12/08/19 13:46,"418 Maple St, New York City, NY 10001" +313548,AAA Batteries (4-pack),1,2.99,12/07/19 06:26,"515 Chestnut St, Los Angeles, CA 90001" +313549,Bose SoundSport Headphones,1,99.99,12/18/19 20:47,"899 Highland St, Los Angeles, CA 90001" +313550,Google Phone,1,600,12/04/19 20:53,"981 Meadow St, San Francisco, CA 94016" +313551,USB-C Charging Cable,1,11.95,12/07/19 07:56,"869 Willow St, New York City, NY 10001" +313552,AAA Batteries (4-pack),4,2.99,12/21/19 22:33,"717 10th St, Dallas, TX 75001" +313553,Google Phone,1,600,12/28/19 14:14,"207 River St, Atlanta, GA 30301" +313554,USB-C Charging Cable,1,11.95,12/01/19 08:51,"909 Highland St, Los Angeles, CA 90001" +313555,Macbook Pro Laptop,1,1700,12/30/19 13:38,"190 10th St, Los Angeles, CA 90001" +313556,USB-C Charging Cable,1,11.95,12/09/19 15:36,"555 Meadow St, Seattle, WA 98101" +313557,USB-C Charging Cable,1,11.95,12/17/19 07:02,"695 Jefferson St, Boston, MA 02215" +313557,Apple Airpods Headphones,1,150,12/17/19 07:02,"695 Jefferson St, Boston, MA 02215" +313558,Apple Airpods Headphones,1,150,12/08/19 06:25,"953 Pine St, Los Angeles, CA 90001" +313559,USB-C Charging Cable,1,11.95,12/22/19 15:41,"583 Meadow St, Atlanta, GA 30301" +313560,LG Dryer,1,600.0,12/20/19 22:47,"710 Jefferson St, Atlanta, GA 30301" +313561,AA Batteries (4-pack),1,3.84,12/23/19 15:33,"82 14th St, San Francisco, CA 94016" +313562,Wired Headphones,1,11.99,12/18/19 10:56,"841 8th St, Seattle, WA 98101" +313563,20in Monitor,1,109.99,12/03/19 18:27,"570 Wilson St, San Francisco, CA 94016" +313564,AA Batteries (4-pack),1,3.84,12/15/19 20:49,"909 Willow St, San Francisco, CA 94016" +313565,Lightning Charging Cable,1,14.95,12/28/19 19:37,"747 Center St, Atlanta, GA 30301" +313566,20in Monitor,1,109.99,12/04/19 14:44,"395 11th St, San Francisco, CA 94016" +313567,AAA Batteries (4-pack),2,2.99,12/23/19 16:42,"991 2nd St, Seattle, WA 98101" +313568,Apple Airpods Headphones,1,150,12/22/19 21:36,"388 West St, San Francisco, CA 94016" +313569,Bose SoundSport Headphones,1,99.99,12/20/19 19:22,"312 13th St, Atlanta, GA 30301" +313570,Bose SoundSport Headphones,1,99.99,12/10/19 11:38,"297 Wilson St, San Francisco, CA 94016" +313571,Lightning Charging Cable,1,14.95,12/30/19 01:14,"735 Elm St, San Francisco, CA 94016" +313572,Wired Headphones,1,11.99,12/29/19 12:20,"224 Forest St, Boston, MA 02215" +313573,USB-C Charging Cable,1,11.95,12/27/19 15:34,"839 Pine St, Dallas, TX 75001" +313574,Flatscreen TV,1,300,12/07/19 16:16,"22 Elm St, San Francisco, CA 94016" +313575,AA Batteries (4-pack),1,3.84,12/30/19 11:53,"689 13th St, Boston, MA 02215" +313576,Bose SoundSport Headphones,1,99.99,12/22/19 07:49,"749 Chestnut St, Boston, MA 02215" +313577,Macbook Pro Laptop,1,1700,12/25/19 16:33,"125 Meadow St, Los Angeles, CA 90001" +313578,AA Batteries (4-pack),1,3.84,12/10/19 08:32,"888 River St, Dallas, TX 75001" +313579,AA Batteries (4-pack),1,3.84,12/04/19 12:48,"616 Maple St, Dallas, TX 75001" +313580,AAA Batteries (4-pack),1,2.99,12/14/19 19:47,"230 River St, Boston, MA 02215" +313581,AA Batteries (4-pack),1,3.84,12/25/19 20:38,"504 Church St, Austin, TX 73301" +313582,AAA Batteries (4-pack),1,2.99,12/04/19 18:59,"425 Forest St, Dallas, TX 75001" +313583,27in FHD Monitor,1,149.99,12/31/19 11:49,"736 Hickory St, New York City, NY 10001" +313584,20in Monitor,1,109.99,12/14/19 14:07,"778 Maple St, Los Angeles, CA 90001" +313585,USB-C Charging Cable,1,11.95,12/14/19 17:37,"863 Pine St, Austin, TX 73301" +313586,Bose SoundSport Headphones,1,99.99,12/16/19 17:14,"534 Lake St, Austin, TX 73301" +313587,USB-C Charging Cable,1,11.95,12/10/19 14:19,"263 Maple St, New York City, NY 10001" +313588,Apple Airpods Headphones,1,150,12/08/19 09:45,"16 Park St, San Francisco, CA 94016" +313589,Lightning Charging Cable,1,14.95,12/19/19 11:10,"962 Main St, New York City, NY 10001" +313590,27in FHD Monitor,1,149.99,12/23/19 23:18,"632 Cedar St, San Francisco, CA 94016" +313591,Bose SoundSport Headphones,1,99.99,12/21/19 10:03,"581 Washington St, San Francisco, CA 94016" +313592,27in FHD Monitor,1,149.99,12/18/19 20:25,"771 Cherry St, Seattle, WA 98101" +313592,Lightning Charging Cable,1,14.95,12/18/19 20:25,"771 Cherry St, Seattle, WA 98101" +313593,34in Ultrawide Monitor,1,379.99,12/03/19 19:25,"836 Highland St, Boston, MA 02215" +313594,LG Washing Machine,1,600.0,12/16/19 12:19,"65 Cedar St, Atlanta, GA 30301" +313595,USB-C Charging Cable,1,11.95,12/30/19 10:55,"974 Forest St, Austin, TX 73301" +313596,USB-C Charging Cable,1,11.95,12/17/19 06:15,"561 13th St, San Francisco, CA 94016" +313597,USB-C Charging Cable,1,11.95,12/04/19 11:36,"281 Lakeview St, Portland, OR 97035" +313598,34in Ultrawide Monitor,1,379.99,12/06/19 20:48,"808 Park St, San Francisco, CA 94016" +313599,Macbook Pro Laptop,1,1700,12/23/19 22:44,"73 12th St, Portland, ME 04101" +313600,Bose SoundSport Headphones,1,99.99,12/25/19 19:27,"915 Lake St, San Francisco, CA 94016" +313601,AA Batteries (4-pack),1,3.84,12/17/19 12:22,"630 Walnut St, Los Angeles, CA 90001" +313602,Bose SoundSport Headphones,1,99.99,12/22/19 09:55,"630 Madison St, Austin, TX 73301" +313603,AA Batteries (4-pack),1,3.84,12/08/19 16:07,"603 Jefferson St, Los Angeles, CA 90001" +313604,Apple Airpods Headphones,1,150,12/02/19 22:10,"747 Cedar St, Austin, TX 73301" +313605,AA Batteries (4-pack),2,3.84,12/19/19 18:07,"596 5th St, Austin, TX 73301" +313606,AA Batteries (4-pack),1,3.84,12/17/19 21:28,"539 8th St, New York City, NY 10001" +313607,Lightning Charging Cable,1,14.95,12/28/19 11:32,"502 Elm St, Atlanta, GA 30301" +313608,Wired Headphones,1,11.99,12/28/19 15:19,"254 13th St, San Francisco, CA 94016" +313609,AA Batteries (4-pack),1,3.84,12/30/19 21:13,"39 Main St, Boston, MA 02215" +313610,AA Batteries (4-pack),1,3.84,12/13/19 20:39,"811 8th St, San Francisco, CA 94016" +313611,AA Batteries (4-pack),2,3.84,12/10/19 23:55,"858 Lakeview St, Boston, MA 02215" +313612,Lightning Charging Cable,1,14.95,12/03/19 10:11,"51 Hill St, Portland, OR 97035" +313613,AAA Batteries (4-pack),3,2.99,12/12/19 08:31,"567 Forest St, Atlanta, GA 30301" +313614,27in 4K Gaming Monitor,1,389.99,12/29/19 09:36,"653 13th St, San Francisco, CA 94016" +313615,Wired Headphones,1,11.99,12/09/19 14:08,"190 South St, Portland, OR 97035" +313616,Bose SoundSport Headphones,1,99.99,12/03/19 22:38,"854 Elm St, Los Angeles, CA 90001" +313617,Lightning Charging Cable,1,14.95,12/03/19 14:59,"734 13th St, Seattle, WA 98101" +313618,Apple Airpods Headphones,1,150,12/30/19 18:34,"697 Walnut St, San Francisco, CA 94016" +313619,27in 4K Gaming Monitor,1,389.99,12/05/19 20:00,"855 River St, San Francisco, CA 94016" +313620,Wired Headphones,1,11.99,12/04/19 22:40,"623 13th St, Los Angeles, CA 90001" +313621,AAA Batteries (4-pack),4,2.99,12/10/19 00:57,"70 Wilson St, San Francisco, CA 94016" +313622,27in 4K Gaming Monitor,1,389.99,12/23/19 05:32,"550 Sunset St, Seattle, WA 98101" +313623,iPhone,1,700,12/09/19 10:33,"264 Highland St, Los Angeles, CA 90001" +313624,AAA Batteries (4-pack),1,2.99,12/17/19 14:48,"175 Willow St, Seattle, WA 98101" +313625,USB-C Charging Cable,1,11.95,12/09/19 23:44,"46 11th St, Los Angeles, CA 90001" +313626,27in FHD Monitor,1,149.99,12/11/19 14:51,"196 Chestnut St, San Francisco, CA 94016" +313627,Lightning Charging Cable,1,14.95,12/21/19 19:15,"306 Cedar St, Dallas, TX 75001" +313628,Apple Airpods Headphones,1,150,12/27/19 22:09,"779 1st St, Dallas, TX 75001" +313629,LG Washing Machine,1,600.0,12/22/19 07:48,"861 West St, San Francisco, CA 94016" +313630,AA Batteries (4-pack),1,3.84,12/11/19 19:47,"824 Dogwood St, San Francisco, CA 94016" +313631,20in Monitor,1,109.99,12/23/19 18:20,"811 Hill St, San Francisco, CA 94016" +313632,Lightning Charging Cable,1,14.95,12/08/19 20:46,"410 Maple St, Austin, TX 73301" +313633,Wired Headphones,1,11.99,12/15/19 18:23,"806 Center St, San Francisco, CA 94016" +313634,Wired Headphones,1,11.99,12/02/19 14:15,"488 11th St, Los Angeles, CA 90001" +313635,Bose SoundSport Headphones,1,99.99,12/22/19 19:08,"660 Elm St, San Francisco, CA 94016" +313636,Lightning Charging Cable,1,14.95,12/18/19 14:24,"960 Willow St, Los Angeles, CA 90001" +313637,Flatscreen TV,1,300,12/21/19 00:36,"405 Lincoln St, Dallas, TX 75001" +313638,27in FHD Monitor,1,149.99,12/13/19 18:20,"461 Ridge St, Atlanta, GA 30301" +313639,AA Batteries (4-pack),1,3.84,12/20/19 20:03,"893 Main St, Boston, MA 02215" +313640,Lightning Charging Cable,1,14.95,12/16/19 17:55,"821 1st St, New York City, NY 10001" +313641,Wired Headphones,1,11.99,12/24/19 22:06,"739 Elm St, New York City, NY 10001" +313642,Macbook Pro Laptop,1,1700,12/01/19 12:09,"473 Hill St, Austin, TX 73301" +313643,Lightning Charging Cable,1,14.95,12/15/19 09:17,"355 5th St, New York City, NY 10001" +313644,Wired Headphones,1,11.99,12/11/19 19:26,"713 Dogwood St, Seattle, WA 98101" +313645,AAA Batteries (4-pack),1,2.99,12/18/19 15:03,"638 Jefferson St, San Francisco, CA 94016" +313646,27in FHD Monitor,1,149.99,12/12/19 20:53,"445 Walnut St, New York City, NY 10001" +313647,AAA Batteries (4-pack),1,2.99,12/10/19 12:03,"39 Forest St, Seattle, WA 98101" +313648,34in Ultrawide Monitor,1,379.99,12/28/19 21:17,"875 13th St, Dallas, TX 75001" +313649,Apple Airpods Headphones,1,150,12/23/19 19:07,"676 Hill St, Portland, OR 97035" +313650,27in 4K Gaming Monitor,1,389.99,12/10/19 00:36,"503 Chestnut St, Portland, OR 97035" +313651,Wired Headphones,1,11.99,12/30/19 11:17,"216 12th St, Dallas, TX 75001" +313652,AAA Batteries (4-pack),2,2.99,12/27/19 21:11,"773 Jefferson St, Dallas, TX 75001" +313653,Lightning Charging Cable,1,14.95,12/26/19 21:23,"453 Walnut St, San Francisco, CA 94016" +313654,Bose SoundSport Headphones,1,99.99,12/08/19 06:42,"682 4th St, Los Angeles, CA 90001" +313655,AA Batteries (4-pack),2,3.84,12/21/19 22:00,"793 River St, Dallas, TX 75001" +313656,34in Ultrawide Monitor,1,379.99,12/20/19 17:51,"751 Meadow St, San Francisco, CA 94016" +313657,AA Batteries (4-pack),1,3.84,12/07/19 12:34,"357 13th St, Austin, TX 73301" +313658,Wired Headphones,1,11.99,12/14/19 10:39,"373 Pine St, Atlanta, GA 30301" +313659,ThinkPad Laptop,1,999.99,12/23/19 18:59,"275 Madison St, San Francisco, CA 94016" +313660,Apple Airpods Headphones,1,150,12/27/19 11:19,"133 9th St, San Francisco, CA 94016" +313661,Apple Airpods Headphones,1,150,12/22/19 21:37,"14 Sunset St, Los Angeles, CA 90001" +313662,27in FHD Monitor,1,149.99,12/08/19 18:23,"333 Cherry St, San Francisco, CA 94016" +313663,Apple Airpods Headphones,1,150,12/16/19 10:40,"908 9th St, New York City, NY 10001" +313664,Lightning Charging Cable,1,14.95,12/26/19 18:14,"749 10th St, Atlanta, GA 30301" +313665,USB-C Charging Cable,1,11.95,12/16/19 15:00,"88 Johnson St, Seattle, WA 98101" +313666,iPhone,1,700,12/16/19 23:43,"278 Elm St, Portland, OR 97035" +313666,Apple Airpods Headphones,1,150,12/16/19 23:43,"278 Elm St, Portland, OR 97035" +313667,Google Phone,1,600,12/05/19 00:20,"834 Cherry St, San Francisco, CA 94016" +313668,27in FHD Monitor,1,149.99,12/12/19 20:08,"618 Johnson St, San Francisco, CA 94016" +313669,Bose SoundSport Headphones,1,99.99,12/27/19 17:15,"639 7th St, San Francisco, CA 94016" +313670,iPhone,1,700,12/20/19 19:14,"658 Chestnut St, San Francisco, CA 94016" +313671,USB-C Charging Cable,1,11.95,12/31/19 21:22,"958 8th St, Atlanta, GA 30301" +313672,USB-C Charging Cable,1,11.95,12/14/19 23:42,"859 Chestnut St, New York City, NY 10001" +313673,27in 4K Gaming Monitor,1,389.99,12/10/19 11:28,"522 Hickory St, Dallas, TX 75001" +313674,Vareebadd Phone,1,400,12/01/19 16:44,"71 Sunset St, New York City, NY 10001" +313675,AAA Batteries (4-pack),1,2.99,12/31/19 13:18,"503 5th St, Los Angeles, CA 90001" +313676,AAA Batteries (4-pack),3,2.99,12/25/19 10:49,"398 1st St, New York City, NY 10001" +313677,USB-C Charging Cable,1,11.95,12/20/19 15:17,"794 Ridge St, Boston, MA 02215" +313678,Lightning Charging Cable,1,14.95,12/20/19 20:40,"362 Lakeview St, San Francisco, CA 94016" +313678,Apple Airpods Headphones,1,150,12/20/19 20:40,"362 Lakeview St, San Francisco, CA 94016" +313679,Lightning Charging Cable,1,14.95,12/26/19 19:57,"257 Hill St, New York City, NY 10001" +313680,AA Batteries (4-pack),1,3.84,12/26/19 18:09,"329 Church St, San Francisco, CA 94016" +313681,iPhone,1,700,12/13/19 10:35,"756 7th St, Boston, MA 02215" +313682,Bose SoundSport Headphones,1,99.99,12/31/19 20:13,"550 7th St, Los Angeles, CA 90001" +313683,Apple Airpods Headphones,1,150,12/15/19 16:17,"746 2nd St, San Francisco, CA 94016" +313684,AA Batteries (4-pack),1,3.84,12/31/19 21:55,"666 13th St, New York City, NY 10001" +313685,ThinkPad Laptop,1,999.99,12/11/19 08:41,"266 Madison St, New York City, NY 10001" +313686,Lightning Charging Cable,1,14.95,12/07/19 11:16,"428 Willow St, San Francisco, CA 94016" +313687,Vareebadd Phone,1,400,12/18/19 11:27,"42 Lincoln St, Portland, OR 97035" +313687,Wired Headphones,1,11.99,12/18/19 11:27,"42 Lincoln St, Portland, OR 97035" +313688,Bose SoundSport Headphones,1,99.99,12/27/19 11:02,"990 Center St, New York City, NY 10001" +313689,Bose SoundSport Headphones,1,99.99,12/25/19 11:55,"68 Ridge St, Seattle, WA 98101" +313690,Google Phone,1,600,12/10/19 19:57,"786 Highland St, Portland, ME 04101" +313690,USB-C Charging Cable,1,11.95,12/10/19 19:57,"786 Highland St, Portland, ME 04101" +313691,Bose SoundSport Headphones,1,99.99,12/02/19 12:21,"233 Cedar St, Atlanta, GA 30301" +313692,AAA Batteries (4-pack),1,2.99,12/13/19 02:03,"824 4th St, Boston, MA 02215" +313693,Wired Headphones,2,11.99,12/22/19 19:54,"124 Ridge St, San Francisco, CA 94016" +313694,LG Washing Machine,1,600.0,12/20/19 23:12,"897 Johnson St, San Francisco, CA 94016" +313694,27in 4K Gaming Monitor,1,389.99,12/20/19 23:12,"897 Johnson St, San Francisco, CA 94016" +313695,AAA Batteries (4-pack),1,2.99,12/05/19 08:03,"705 Lincoln St, Los Angeles, CA 90001" +313696,USB-C Charging Cable,1,11.95,12/18/19 08:03,"479 Maple St, Atlanta, GA 30301" +313697,Google Phone,1,600,12/22/19 14:47,"890 Elm St, Dallas, TX 75001" +313698,iPhone,1,700,12/08/19 23:44,"83 River St, New York City, NY 10001" +313699,Lightning Charging Cable,1,14.95,12/23/19 18:44,"645 Sunset St, Austin, TX 73301" +313700,AA Batteries (4-pack),1,3.84,12/24/19 19:32,"488 South St, San Francisco, CA 94016" +313701,Wired Headphones,1,11.99,12/05/19 23:14,"447 Johnson St, San Francisco, CA 94016" +313702,AA Batteries (4-pack),2,3.84,12/18/19 20:08,"3 Pine St, New York City, NY 10001" +313703,27in FHD Monitor,1,149.99,12/30/19 09:39,"508 Adams St, Los Angeles, CA 90001" +313704,20in Monitor,1,109.99,12/31/19 00:55,"504 Main St, Portland, OR 97035" +313705,Bose SoundSport Headphones,1,99.99,12/24/19 12:36,"911 Washington St, Dallas, TX 75001" +313705,27in 4K Gaming Monitor,1,389.99,12/24/19 12:36,"911 Washington St, Dallas, TX 75001" +313706,Flatscreen TV,1,300,12/19/19 18:34,"142 Sunset St, Dallas, TX 75001" +313707,AAA Batteries (4-pack),1,2.99,12/15/19 13:16,"790 Dogwood St, Seattle, WA 98101" +313708,Wired Headphones,1,11.99,12/31/19 00:09,"233 Park St, San Francisco, CA 94016" +313709,Apple Airpods Headphones,1,150,12/09/19 08:08,"6 6th St, San Francisco, CA 94016" +313710,USB-C Charging Cable,1,11.95,12/04/19 20:41,"189 Willow St, Los Angeles, CA 90001" +313711,Flatscreen TV,1,300,12/06/19 22:30,"909 Forest St, Boston, MA 02215" +313712,Lightning Charging Cable,1,14.95,12/30/19 14:13,"359 Willow St, Seattle, WA 98101" +313713,Bose SoundSport Headphones,1,99.99,12/10/19 14:29,"8 South St, San Francisco, CA 94016" +313714,Bose SoundSport Headphones,1,99.99,12/28/19 10:32,"590 Spruce St, Portland, OR 97035" +313715,Vareebadd Phone,1,400,12/03/19 22:21,"82 5th St, Austin, TX 73301" +313715,USB-C Charging Cable,1,11.95,12/03/19 22:21,"82 5th St, Austin, TX 73301" +313716,Apple Airpods Headphones,1,150,12/26/19 19:44,"276 Ridge St, Seattle, WA 98101" +313717,USB-C Charging Cable,1,11.95,12/03/19 09:12,"378 Willow St, Atlanta, GA 30301" +313718,Apple Airpods Headphones,1,150,12/13/19 21:16,"391 Adams St, San Francisco, CA 94016" +313719,Lightning Charging Cable,1,14.95,12/30/19 09:45,"539 North St, Boston, MA 02215" +313720,AA Batteries (4-pack),1,3.84,12/12/19 17:37,"992 Jefferson St, Dallas, TX 75001" +313721,Lightning Charging Cable,1,14.95,12/05/19 16:01,"258 Pine St, Seattle, WA 98101" +313722,27in FHD Monitor,1,149.99,12/24/19 15:45,"306 Hill St, Atlanta, GA 30301" +313723,Macbook Pro Laptop,1,1700,12/21/19 09:03,"53 5th St, Boston, MA 02215" +313724,AAA Batteries (4-pack),1,2.99,12/05/19 14:59,"296 10th St, Los Angeles, CA 90001" +313725,iPhone,1,700,12/04/19 17:39,"86 6th St, Los Angeles, CA 90001" +313726,27in 4K Gaming Monitor,1,389.99,12/27/19 21:50,"295 4th St, Boston, MA 02215" +313727,Apple Airpods Headphones,1,150,12/15/19 16:01,"338 Adams St, Los Angeles, CA 90001" +313728,iPhone,1,700,12/10/19 20:09,"804 Wilson St, Boston, MA 02215" +313729,Apple Airpods Headphones,1,150,12/04/19 10:58,"633 13th St, Los Angeles, CA 90001" +313730,AAA Batteries (4-pack),1,2.99,12/31/19 22:38,"378 Highland St, Los Angeles, CA 90001" +313731,27in 4K Gaming Monitor,1,389.99,12/25/19 10:28,"246 Washington St, Los Angeles, CA 90001" +313732,AA Batteries (4-pack),1,3.84,12/12/19 12:00,"348 South St, Portland, OR 97035" +313732,34in Ultrawide Monitor,1,379.99,12/12/19 12:00,"348 South St, Portland, OR 97035" +313733,Lightning Charging Cable,1,14.95,12/22/19 09:30,"462 Pine St, Boston, MA 02215" +313734,Lightning Charging Cable,1,14.95,12/15/19 18:37,"501 4th St, Los Angeles, CA 90001" +313735,27in FHD Monitor,1,149.99,12/25/19 12:02,"853 Park St, New York City, NY 10001" +313736,USB-C Charging Cable,1,11.95,12/24/19 12:16,"451 Cedar St, Los Angeles, CA 90001" +313737,USB-C Charging Cable,1,11.95,12/07/19 01:13,"366 Pine St, Seattle, WA 98101" +313738,USB-C Charging Cable,1,11.95,12/13/19 10:33,"6 14th St, San Francisco, CA 94016" +313739,34in Ultrawide Monitor,1,379.99,12/20/19 05:17,"417 4th St, Los Angeles, CA 90001" +313740,34in Ultrawide Monitor,1,379.99,12/16/19 15:35,"952 Johnson St, Los Angeles, CA 90001" +313741,27in FHD Monitor,1,149.99,12/08/19 12:44,"477 Dogwood St, San Francisco, CA 94016" +313742,USB-C Charging Cable,1,11.95,12/03/19 20:17,"776 Lake St, San Francisco, CA 94016" +313743,34in Ultrawide Monitor,1,379.99,12/22/19 20:00,"657 12th St, New York City, NY 10001" +313744,Vareebadd Phone,1,400,12/20/19 22:43,"407 9th St, Seattle, WA 98101" +313745,Wired Headphones,1,11.99,12/18/19 16:08,"644 Elm St, Boston, MA 02215" +313745,AA Batteries (4-pack),6,3.84,12/18/19 16:08,"644 Elm St, Boston, MA 02215" +313746,Lightning Charging Cable,1,14.95,12/12/19 19:25,"82 Dogwood St, Boston, MA 02215" +313747,Wired Headphones,1,11.99,12/01/19 15:57,"58 4th St, Atlanta, GA 30301" +313748,AA Batteries (4-pack),1,3.84,12/06/19 23:36,"413 West St, Los Angeles, CA 90001" +313749,USB-C Charging Cable,1,11.95,12/01/19 16:06,"13 West St, Boston, MA 02215" +313750,iPhone,1,700,12/20/19 19:23,"669 Madison St, San Francisco, CA 94016" +313751,AA Batteries (4-pack),1,3.84,12/24/19 10:19,"666 14th St, Dallas, TX 75001" +313752,AAA Batteries (4-pack),1,2.99,12/06/19 05:42,"529 1st St, Seattle, WA 98101" +313753,Apple Airpods Headphones,1,150,12/21/19 14:38,"479 10th St, New York City, NY 10001" +313754,Wired Headphones,1,11.99,12/24/19 22:16,"903 6th St, Los Angeles, CA 90001" +313755,Wired Headphones,1,11.99,12/19/19 09:27,"14 Main St, San Francisco, CA 94016" +313756,AA Batteries (4-pack),1,3.84,12/28/19 22:12,"428 12th St, San Francisco, CA 94016" +313757,Lightning Charging Cable,3,14.95,12/20/19 10:52,"183 Elm St, Portland, OR 97035" +313758,Bose SoundSport Headphones,1,99.99,12/16/19 18:04,"111 Lincoln St, Dallas, TX 75001" +313759,Lightning Charging Cable,1,14.95,12/26/19 10:15,"802 Wilson St, Boston, MA 02215" +313760,Flatscreen TV,1,300,12/14/19 20:54,"539 Adams St, Austin, TX 73301" +313761,Lightning Charging Cable,1,14.95,12/11/19 08:14,"226 Forest St, San Francisco, CA 94016" +313762,Google Phone,1,600,12/07/19 17:10,"371 Willow St, New York City, NY 10001" +313762,USB-C Charging Cable,1,11.95,12/07/19 17:10,"371 Willow St, New York City, NY 10001" +313763,Flatscreen TV,1,300,12/26/19 19:40,"678 Washington St, San Francisco, CA 94016" +313764,USB-C Charging Cable,1,11.95,12/19/19 21:49,"822 Madison St, Boston, MA 02215" +313765,Flatscreen TV,1,300,12/04/19 13:09,"194 North St, Boston, MA 02215" +313766,AAA Batteries (4-pack),1,2.99,12/23/19 07:09,"294 Park St, Seattle, WA 98101" +313767,USB-C Charging Cable,1,11.95,12/19/19 15:38,"990 West St, San Francisco, CA 94016" +313768,Wired Headphones,1,11.99,12/05/19 12:34,"318 Chestnut St, Atlanta, GA 30301" +313769,Bose SoundSport Headphones,1,99.99,12/15/19 01:08,"564 Dogwood St, New York City, NY 10001" +313770,USB-C Charging Cable,1,11.95,12/18/19 16:10,"391 5th St, Boston, MA 02215" +313771,AA Batteries (4-pack),1,3.84,12/10/19 05:11,"306 Wilson St, New York City, NY 10001" +313772,Bose SoundSport Headphones,1,99.99,12/19/19 12:03,"739 River St, Portland, OR 97035" +313773,ThinkPad Laptop,1,999.99,12/21/19 11:03,"287 Hill St, Atlanta, GA 30301" +313774,USB-C Charging Cable,1,11.95,12/27/19 15:28,"756 Jackson St, Seattle, WA 98101" +313775,iPhone,1,700,12/25/19 12:04,"258 Forest St, Los Angeles, CA 90001" +313776,27in 4K Gaming Monitor,1,389.99,12/02/19 08:22,"814 Dogwood St, Austin, TX 73301" +313777,Bose SoundSport Headphones,1,99.99,12/25/19 10:55,"350 Willow St, Los Angeles, CA 90001" +313778,USB-C Charging Cable,1,11.95,12/24/19 14:31,"384 2nd St, San Francisco, CA 94016" +313779,27in FHD Monitor,1,149.99,12/17/19 20:08,"721 Lincoln St, Austin, TX 73301" +313780,USB-C Charging Cable,1,11.95,12/25/19 10:44,"136 Hill St, Portland, OR 97035" +313781,AAA Batteries (4-pack),2,2.99,12/05/19 10:19,"106 Center St, Atlanta, GA 30301" +313781,Lightning Charging Cable,1,14.95,12/05/19 10:19,"106 Center St, Atlanta, GA 30301" +313782,Lightning Charging Cable,1,14.95,12/23/19 20:44,"761 River St, Los Angeles, CA 90001" +313783,AA Batteries (4-pack),3,3.84,12/06/19 05:57,"324 Ridge St, Seattle, WA 98101" +313784,Lightning Charging Cable,1,14.95,12/23/19 11:30,"833 5th St, San Francisco, CA 94016" +313785,27in 4K Gaming Monitor,1,389.99,12/11/19 08:28,"543 West St, Atlanta, GA 30301" +313786,AA Batteries (4-pack),1,3.84,01/01/20 01:47,"478 Cedar St, Boston, MA 02215" +313787,Flatscreen TV,1,300,12/19/19 05:25,"963 Main St, San Francisco, CA 94016" +313788,Wired Headphones,1,11.99,12/14/19 09:08,"611 Hickory St, Atlanta, GA 30301" +313789,Bose SoundSport Headphones,1,99.99,12/29/19 10:42,"773 Lincoln St, Boston, MA 02215" +313790,AA Batteries (4-pack),1,3.84,12/06/19 11:26,"594 Lake St, San Francisco, CA 94016" +313791,27in 4K Gaming Monitor,1,389.99,12/01/19 19:28,"54 Cedar St, New York City, NY 10001" +313792,27in FHD Monitor,1,149.99,12/24/19 15:50,"972 Washington St, Austin, TX 73301" +313793,Google Phone,1,600,12/04/19 19:49,"462 Park St, New York City, NY 10001" +313794,Lightning Charging Cable,1,14.95,12/20/19 19:24,"36 Forest St, Los Angeles, CA 90001" +313795,Lightning Charging Cable,1,14.95,12/26/19 08:34,"361 Lincoln St, Los Angeles, CA 90001" +313796,Google Phone,1,600,12/23/19 22:31,"412 9th St, Los Angeles, CA 90001" +313797,Wired Headphones,1,11.99,12/20/19 20:22,"804 13th St, Dallas, TX 75001" +313798,AAA Batteries (4-pack),1,2.99,12/03/19 23:48,"909 Church St, Portland, OR 97035" +313799,Apple Airpods Headphones,1,150,12/03/19 13:14,"67 9th St, Boston, MA 02215" +313800,AAA Batteries (4-pack),1,2.99,12/27/19 01:39,"305 Jefferson St, New York City, NY 10001" +313801,Bose SoundSport Headphones,1,99.99,12/28/19 16:17,"141 South St, New York City, NY 10001" +313802,AA Batteries (4-pack),1,3.84,12/21/19 09:27,"917 Forest St, San Francisco, CA 94016" +313803,AAA Batteries (4-pack),1,2.99,12/30/19 13:39,"565 Hill St, New York City, NY 10001" +313804,USB-C Charging Cable,1,11.95,12/03/19 20:31,"408 Dogwood St, Boston, MA 02215" +313805,20in Monitor,1,109.99,12/09/19 21:02,"622 Forest St, San Francisco, CA 94016" +313806,Lightning Charging Cable,1,14.95,12/03/19 18:58,"10 Adams St, San Francisco, CA 94016" +313807,Wired Headphones,1,11.99,12/23/19 10:37,"658 Chestnut St, Los Angeles, CA 90001" +313808,27in FHD Monitor,1,149.99,12/01/19 17:01,"924 Highland St, Dallas, TX 75001" +313809,Vareebadd Phone,1,400,12/15/19 15:42,"396 10th St, San Francisco, CA 94016" +313809,USB-C Charging Cable,1,11.95,12/15/19 15:42,"396 10th St, San Francisco, CA 94016" +313810,27in 4K Gaming Monitor,1,389.99,12/14/19 14:32,"84 13th St, Dallas, TX 75001" +313811,Lightning Charging Cable,1,14.95,12/05/19 06:39,"123 Jackson St, San Francisco, CA 94016" +313812,Bose SoundSport Headphones,1,99.99,12/13/19 12:06,"389 Main St, Austin, TX 73301" +313813,Wired Headphones,1,11.99,12/12/19 09:49,"598 Maple St, New York City, NY 10001" +313814,USB-C Charging Cable,1,11.95,12/15/19 10:29,"212 9th St, Los Angeles, CA 90001" +313815,Wired Headphones,1,11.99,12/28/19 14:15,"30 West St, San Francisco, CA 94016" +313816,Bose SoundSport Headphones,1,99.99,12/06/19 23:02,"986 14th St, San Francisco, CA 94016" +313817,Lightning Charging Cable,1,14.95,01/01/20 01:09,"550 West St, New York City, NY 10001" +313818,AA Batteries (4-pack),1,3.84,12/09/19 00:47,"391 8th St, Atlanta, GA 30301" +313819,27in 4K Gaming Monitor,1,389.99,12/11/19 12:02,"644 Wilson St, Boston, MA 02215" +313820,AAA Batteries (4-pack),1,2.99,12/07/19 00:39,"888 Lake St, Los Angeles, CA 90001" +313821,AA Batteries (4-pack),1,3.84,12/16/19 18:23,"452 Lake St, Boston, MA 02215" +313822,AA Batteries (4-pack),1,3.84,12/05/19 07:19,"85 Cherry St, Portland, OR 97035" +313823,20in Monitor,1,109.99,12/14/19 22:44,"27 Dogwood St, San Francisco, CA 94016" +313824,Lightning Charging Cable,1,14.95,12/05/19 12:01,"537 Lincoln St, Seattle, WA 98101" +313825,LG Washing Machine,1,600.0,12/22/19 12:02,"435 Ridge St, Portland, ME 04101" +313826,Wired Headphones,1,11.99,12/31/19 21:28,"987 Park St, Dallas, TX 75001" +313827,27in FHD Monitor,1,149.99,12/16/19 13:19,"696 Jackson St, San Francisco, CA 94016" +313828,Apple Airpods Headphones,1,150,12/02/19 21:52,"720 8th St, Dallas, TX 75001" +313829,Wired Headphones,1,11.99,12/09/19 17:57,"735 11th St, Dallas, TX 75001" +313830,34in Ultrawide Monitor,1,379.99,12/02/19 22:25,"747 River St, Seattle, WA 98101" +313831,Flatscreen TV,1,300,12/02/19 08:26,"68 Chestnut St, Seattle, WA 98101" +313832,AA Batteries (4-pack),1,3.84,12/25/19 21:23,"526 South St, New York City, NY 10001" +313833,AA Batteries (4-pack),2,3.84,12/08/19 11:45,"395 South St, San Francisco, CA 94016" +313834,Lightning Charging Cable,1,14.95,12/06/19 22:20,"790 Lincoln St, Boston, MA 02215" +313835,Wired Headphones,1,11.99,12/19/19 09:59,"573 Forest St, New York City, NY 10001" +313836,USB-C Charging Cable,1,11.95,12/19/19 12:06,"260 6th St, Boston, MA 02215" +313837,USB-C Charging Cable,1,11.95,12/24/19 13:04,"181 Spruce St, New York City, NY 10001" +313837,Lightning Charging Cable,1,14.95,12/24/19 13:04,"181 Spruce St, New York City, NY 10001" +313838,Bose SoundSport Headphones,1,99.99,12/19/19 13:13,"667 Hickory St, Los Angeles, CA 90001" +313839,AAA Batteries (4-pack),1,2.99,12/09/19 12:45,"585 10th St, San Francisco, CA 94016" +313840,Wired Headphones,1,11.99,12/01/19 19:39,"742 1st St, Los Angeles, CA 90001" +313841,Lightning Charging Cable,1,14.95,12/24/19 10:56,"773 Willow St, New York City, NY 10001" +313842,LG Washing Machine,1,600.0,12/04/19 01:46,"165 Jackson St, Atlanta, GA 30301" +313843,Lightning Charging Cable,1,14.95,12/01/19 09:21,"278 11th St, Dallas, TX 75001" +313844,iPhone,1,700,12/20/19 19:00,"111 Walnut St, New York City, NY 10001" +313844,iPhone,1,700,12/20/19 19:00,"111 Walnut St, New York City, NY 10001" +313845,Macbook Pro Laptop,1,1700,12/26/19 16:46,"925 Madison St, San Francisco, CA 94016" +313846,ThinkPad Laptop,1,999.99,12/16/19 14:33,"880 6th St, Atlanta, GA 30301" +313847,Apple Airpods Headphones,1,150,12/31/19 10:42,"137 Lake St, Los Angeles, CA 90001" +313848,Google Phone,1,600,12/20/19 01:54,"850 Church St, Atlanta, GA 30301" +313848,Wired Headphones,1,11.99,12/20/19 01:54,"850 Church St, Atlanta, GA 30301" +313849,27in FHD Monitor,1,149.99,12/05/19 14:05,"595 1st St, Los Angeles, CA 90001" +313850,Lightning Charging Cable,1,14.95,12/07/19 13:01,"646 5th St, New York City, NY 10001" +313851,Wired Headphones,1,11.99,12/08/19 20:01,"388 Elm St, San Francisco, CA 94016" +313852,Flatscreen TV,1,300,12/19/19 17:09,"204 2nd St, San Francisco, CA 94016" +313853,Lightning Charging Cable,1,14.95,12/08/19 19:35,"969 Lincoln St, Dallas, TX 75001" +313854,AA Batteries (4-pack),1,3.84,12/29/19 12:05,"729 Lakeview St, Austin, TX 73301" +313855,AA Batteries (4-pack),2,3.84,12/20/19 18:06,"593 River St, New York City, NY 10001" +313856,AAA Batteries (4-pack),1,2.99,12/04/19 13:10,"857 Spruce St, San Francisco, CA 94016" +313857,Bose SoundSport Headphones,1,99.99,12/07/19 14:15,"850 Forest St, New York City, NY 10001" +313858,Wired Headphones,1,11.99,12/08/19 18:03,"412 Jefferson St, Los Angeles, CA 90001" +313859,Lightning Charging Cable,1,14.95,12/19/19 09:31,"735 River St, San Francisco, CA 94016" +313860,27in 4K Gaming Monitor,1,389.99,12/04/19 14:15,"855 Washington St, San Francisco, CA 94016" +313861,AAA Batteries (4-pack),1,2.99,12/07/19 16:13,"260 Lake St, San Francisco, CA 94016" +313862,Wired Headphones,1,11.99,12/22/19 10:24,"28 1st St, Los Angeles, CA 90001" +313863,Wired Headphones,1,11.99,12/03/19 19:09,"66 Elm St, Seattle, WA 98101" +313864,AAA Batteries (4-pack),1,2.99,12/11/19 19:28,"996 14th St, New York City, NY 10001" +313865,USB-C Charging Cable,1,11.95,12/31/19 20:18,"126 7th St, San Francisco, CA 94016" +313866,Wired Headphones,1,11.99,12/04/19 09:47,"107 Church St, San Francisco, CA 94016" +313867,Lightning Charging Cable,1,14.95,12/15/19 21:57,"147 Madison St, Boston, MA 02215" +313868,AAA Batteries (4-pack),1,2.99,12/24/19 17:27,"14 Main St, Los Angeles, CA 90001" +313869,Google Phone,1,600,12/16/19 18:50,"219 13th St, Portland, OR 97035" +313870,Apple Airpods Headphones,1,150,12/13/19 16:11,"749 8th St, Dallas, TX 75001" +313871,AA Batteries (4-pack),1,3.84,12/22/19 15:09,"934 Wilson St, San Francisco, CA 94016" +313872,34in Ultrawide Monitor,1,379.99,12/27/19 17:41,"72 Elm St, Los Angeles, CA 90001" +313873,27in 4K Gaming Monitor,1,389.99,12/23/19 16:51,"400 Lakeview St, Boston, MA 02215" +313874,34in Ultrawide Monitor,1,379.99,12/26/19 17:09,"30 Highland St, Los Angeles, CA 90001" +313875,27in FHD Monitor,1,149.99,12/28/19 14:38,"316 Sunset St, Seattle, WA 98101" +313876,AAA Batteries (4-pack),1,2.99,12/04/19 11:42,"898 4th St, Los Angeles, CA 90001" +313877,Bose SoundSport Headphones,1,99.99,12/03/19 11:19,"272 Forest St, Dallas, TX 75001" +313878,Lightning Charging Cable,1,14.95,12/19/19 16:07,"739 Park St, San Francisco, CA 94016" +313879,AAA Batteries (4-pack),2,2.99,12/30/19 10:41,"811 Pine St, Austin, TX 73301" +313880,27in 4K Gaming Monitor,1,389.99,12/27/19 18:17,"903 Jefferson St, Los Angeles, CA 90001" +313881,AA Batteries (4-pack),2,3.84,12/13/19 12:39,"413 6th St, Boston, MA 02215" +313882,Bose SoundSport Headphones,1,99.99,12/01/19 11:29,"398 Sunset St, Atlanta, GA 30301" +313883,Wired Headphones,1,11.99,12/14/19 19:48,"897 West St, Los Angeles, CA 90001" +313884,34in Ultrawide Monitor,1,379.99,12/10/19 07:46,"375 Hickory St, Seattle, WA 98101" +313885,USB-C Charging Cable,2,11.95,12/01/19 21:18,"33 9th St, Atlanta, GA 30301" +313886,27in 4K Gaming Monitor,1,389.99,12/28/19 12:45,"168 Walnut St, New York City, NY 10001" +313887,AAA Batteries (4-pack),1,2.99,12/07/19 06:19,"390 Meadow St, Atlanta, GA 30301" +313888,AA Batteries (4-pack),1,3.84,12/09/19 19:49,"815 Maple St, Atlanta, GA 30301" +313889,AAA Batteries (4-pack),3,2.99,12/27/19 11:06,"766 Jackson St, Los Angeles, CA 90001" +313890,AA Batteries (4-pack),1,3.84,12/24/19 22:58,"371 9th St, Atlanta, GA 30301" +313891,Flatscreen TV,1,300,12/18/19 12:10,"901 Lake St, San Francisco, CA 94016" +313892,AA Batteries (4-pack),1,3.84,12/02/19 22:54,"143 13th St, Los Angeles, CA 90001" +313893,34in Ultrawide Monitor,1,379.99,12/09/19 11:35,"429 Washington St, New York City, NY 10001" +313894,AA Batteries (4-pack),1,3.84,12/26/19 17:05,"787 Maple St, New York City, NY 10001" +313895,AAA Batteries (4-pack),1,2.99,12/05/19 08:52,"869 14th St, Atlanta, GA 30301" +313896,USB-C Charging Cable,1,11.95,12/16/19 21:24,"29 10th St, San Francisco, CA 94016" +313896,USB-C Charging Cable,1,11.95,12/16/19 21:24,"29 10th St, San Francisco, CA 94016" +313897,27in 4K Gaming Monitor,1,389.99,12/23/19 00:35,"161 Walnut St, Boston, MA 02215" +313898,AA Batteries (4-pack),1,3.84,12/26/19 23:34,"456 5th St, Atlanta, GA 30301" +313899,Bose SoundSport Headphones,1,99.99,12/27/19 11:04,"130 Johnson St, Portland, OR 97035" +313900,27in 4K Gaming Monitor,1,389.99,12/11/19 19:29,"237 Cedar St, Dallas, TX 75001" +313901,Bose SoundSport Headphones,1,99.99,12/29/19 12:05,"853 7th St, Los Angeles, CA 90001" +313902,AA Batteries (4-pack),1,3.84,12/07/19 20:27,"123 13th St, San Francisco, CA 94016" +313903,AA Batteries (4-pack),1,3.84,12/19/19 15:37,"859 Dogwood St, Los Angeles, CA 90001" +313904,AAA Batteries (4-pack),1,2.99,12/08/19 20:52,"900 Highland St, Seattle, WA 98101" +313905,27in 4K Gaming Monitor,1,389.99,12/07/19 21:50,"19 South St, Atlanta, GA 30301" +313906,Macbook Pro Laptop,1,1700,12/26/19 11:44,"430 Church St, Portland, ME 04101" +313907,Lightning Charging Cable,1,14.95,12/29/19 19:44,"196 Sunset St, San Francisco, CA 94016" +313908,Lightning Charging Cable,1,14.95,12/20/19 11:37,"424 Dogwood St, New York City, NY 10001" +313909,AA Batteries (4-pack),1,3.84,12/30/19 21:14,"730 Cedar St, Seattle, WA 98101" +313910,27in FHD Monitor,1,149.99,12/14/19 17:17,"747 1st St, New York City, NY 10001" +313911,Bose SoundSport Headphones,1,99.99,12/08/19 11:51,"905 West St, San Francisco, CA 94016" +313912,Lightning Charging Cable,1,14.95,12/19/19 18:48,"280 2nd St, Dallas, TX 75001" +313913,Lightning Charging Cable,1,14.95,12/02/19 17:52,"298 Meadow St, Portland, OR 97035" +313914,Vareebadd Phone,1,400,12/07/19 12:17,"573 Meadow St, Atlanta, GA 30301" +313914,Wired Headphones,1,11.99,12/07/19 12:17,"573 Meadow St, Atlanta, GA 30301" +313915,USB-C Charging Cable,1,11.95,12/06/19 18:49,"861 11th St, Los Angeles, CA 90001" +313916,Wired Headphones,1,11.99,12/30/19 23:18,"3 Sunset St, Boston, MA 02215" +313917,USB-C Charging Cable,1,11.95,12/02/19 18:56,"784 Jackson St, San Francisco, CA 94016" +313918,USB-C Charging Cable,1,11.95,12/22/19 12:39,"334 Main St, Boston, MA 02215" +313919,Lightning Charging Cable,1,14.95,12/11/19 17:46,"374 4th St, New York City, NY 10001" +313920,USB-C Charging Cable,1,11.95,12/26/19 23:39,"281 Chestnut St, Los Angeles, CA 90001" +313921,USB-C Charging Cable,1,11.95,12/08/19 22:29,"885 Church St, San Francisco, CA 94016" +313922,27in FHD Monitor,1,149.99,12/14/19 20:12,"912 5th St, Dallas, TX 75001" +313923,ThinkPad Laptop,1,999.99,12/31/19 22:08,"516 Cedar St, San Francisco, CA 94016" +313924,Wired Headphones,1,11.99,12/10/19 08:44,"606 Lake St, Los Angeles, CA 90001" +313925,USB-C Charging Cable,1,11.95,12/17/19 16:57,"554 Center St, San Francisco, CA 94016" +313926,27in 4K Gaming Monitor,1,389.99,12/13/19 08:50,"900 1st St, San Francisco, CA 94016" +313927,AAA Batteries (4-pack),1,2.99,12/02/19 11:41,"63 7th St, Los Angeles, CA 90001" +313928,Lightning Charging Cable,1,14.95,12/10/19 18:04,"549 West St, Los Angeles, CA 90001" +313929,Apple Airpods Headphones,1,150,12/21/19 19:16,"281 1st St, Boston, MA 02215" +313930,Lightning Charging Cable,1,14.95,12/21/19 12:35,"227 Park St, Seattle, WA 98101" +313931,AAA Batteries (4-pack),1,2.99,12/26/19 17:12,"730 Forest St, Los Angeles, CA 90001" +313932,USB-C Charging Cable,1,11.95,12/02/19 14:29,"165 8th St, Austin, TX 73301" +313933,AAA Batteries (4-pack),2,2.99,12/03/19 20:06,"587 Lincoln St, San Francisco, CA 94016" +313934,27in 4K Gaming Monitor,1,389.99,12/22/19 18:36,"32 North St, San Francisco, CA 94016" +313934,USB-C Charging Cable,1,11.95,12/22/19 18:36,"32 North St, San Francisco, CA 94016" +313935,Wired Headphones,1,11.99,12/02/19 16:07,"168 Highland St, Seattle, WA 98101" +313936,Lightning Charging Cable,1,14.95,12/04/19 11:36,"465 Forest St, Austin, TX 73301" +313937,Bose SoundSport Headphones,1,99.99,12/18/19 20:06,"726 Wilson St, San Francisco, CA 94016" +313938,AA Batteries (4-pack),1,3.84,12/30/19 13:07,"745 12th St, Austin, TX 73301" +313939,27in 4K Gaming Monitor,1,389.99,12/03/19 12:24,"307 Church St, Los Angeles, CA 90001" +313940,Bose SoundSport Headphones,1,99.99,12/13/19 15:14,"841 Madison St, San Francisco, CA 94016" +313941,Macbook Pro Laptop,1,1700,12/17/19 13:21,"836 1st St, Los Angeles, CA 90001" +313942,USB-C Charging Cable,1,11.95,12/08/19 14:37,"81 Maple St, Boston, MA 02215" +313942,Vareebadd Phone,1,400,12/08/19 14:37,"81 Maple St, Boston, MA 02215" +313943,AA Batteries (4-pack),2,3.84,12/04/19 21:06,"183 Jefferson St, Boston, MA 02215" +313944,Apple Airpods Headphones,1,150,12/25/19 07:49,"87 Dogwood St, San Francisco, CA 94016" +313945,Wired Headphones,1,11.99,12/23/19 10:19,"847 13th St, San Francisco, CA 94016" +313946,iPhone,1,700,12/19/19 11:45,"369 North St, Atlanta, GA 30301" +313947,Wired Headphones,1,11.99,12/30/19 22:11,"894 Pine St, Portland, OR 97035" +313948,Wired Headphones,1,11.99,12/20/19 13:46,"859 8th St, New York City, NY 10001" +313949,Wired Headphones,1,11.99,12/16/19 15:05,"666 Dogwood St, New York City, NY 10001" +313950,Apple Airpods Headphones,1,150,12/16/19 10:27,"319 Pine St, Los Angeles, CA 90001" +313951,34in Ultrawide Monitor,1,379.99,12/09/19 15:18,"538 Chestnut St, Portland, OR 97035" +313952,USB-C Charging Cable,1,11.95,12/27/19 18:06,"558 7th St, New York City, NY 10001" +313953,34in Ultrawide Monitor,1,379.99,12/13/19 11:36,"588 10th St, Los Angeles, CA 90001" +313954,Apple Airpods Headphones,1,150,12/23/19 20:34,"268 6th St, Portland, OR 97035" +313955,USB-C Charging Cable,1,11.95,12/11/19 05:15,"852 2nd St, Seattle, WA 98101" +313956,AA Batteries (4-pack),4,3.84,12/13/19 08:34,"434 Lake St, Portland, OR 97035" +313957,AA Batteries (4-pack),2,3.84,12/29/19 09:44,"400 Wilson St, San Francisco, CA 94016" +313958,Google Phone,1,600,12/11/19 02:32,"743 12th St, Boston, MA 02215" +313959,Google Phone,1,600,12/08/19 13:13,"507 10th St, San Francisco, CA 94016" +313960,Wired Headphones,1,11.99,12/09/19 09:39,"423 9th St, New York City, NY 10001" +313961,USB-C Charging Cable,1,11.95,12/04/19 13:44,"393 Dogwood St, Los Angeles, CA 90001" +313962,USB-C Charging Cable,1,11.95,12/19/19 10:48,"356 Highland St, Atlanta, GA 30301" +313963,Apple Airpods Headphones,1,150,12/24/19 12:01,"12 Adams St, Boston, MA 02215" +313964,20in Monitor,1,109.99,12/22/19 12:49,"11 Chestnut St, Dallas, TX 75001" +313965,USB-C Charging Cable,1,11.95,12/09/19 18:55,"963 Hickory St, Austin, TX 73301" +313966,AAA Batteries (4-pack),2,2.99,12/27/19 11:01,"470 Wilson St, Los Angeles, CA 90001" +313967,Lightning Charging Cable,1,14.95,12/18/19 22:34,"586 10th St, San Francisco, CA 94016" +313968,20in Monitor,1,109.99,12/08/19 09:13,"593 Jefferson St, Boston, MA 02215" +313969,USB-C Charging Cable,1,11.95,12/16/19 23:27,"9 Cherry St, San Francisco, CA 94016" +313970,USB-C Charging Cable,1,11.95,12/26/19 10:45,"76 2nd St, Portland, OR 97035" +313971,Macbook Pro Laptop,1,1700,12/17/19 17:09,"651 5th St, New York City, NY 10001" +313972,27in FHD Monitor,1,149.99,12/04/19 10:26,"534 West St, Atlanta, GA 30301" +313973,AA Batteries (4-pack),1,3.84,12/08/19 18:20,"310 4th St, Los Angeles, CA 90001" +313974,USB-C Charging Cable,1,11.95,12/17/19 10:34,"260 Ridge St, Los Angeles, CA 90001" +313975,USB-C Charging Cable,1,11.95,12/02/19 10:05,"646 14th St, Dallas, TX 75001" +313976,AAA Batteries (4-pack),1,2.99,12/16/19 18:02,"369 Lake St, San Francisco, CA 94016" +313977,Lightning Charging Cable,1,14.95,12/27/19 19:22,"247 Johnson St, New York City, NY 10001" +313978,Apple Airpods Headphones,1,150,12/29/19 13:53,"616 Maple St, Austin, TX 73301" +313979,Wired Headphones,1,11.99,12/19/19 23:26,"840 13th St, Boston, MA 02215" +313980,Bose SoundSport Headphones,1,99.99,12/19/19 00:57,"940 12th St, Los Angeles, CA 90001" +313981,AA Batteries (4-pack),2,3.84,12/30/19 01:51,"769 Walnut St, Los Angeles, CA 90001" +313982,ThinkPad Laptop,1,999.99,12/05/19 05:51,"67 Cedar St, New York City, NY 10001" +313983,AAA Batteries (4-pack),2,2.99,12/05/19 12:14,"557 4th St, Atlanta, GA 30301" +313984,AA Batteries (4-pack),1,3.84,12/03/19 14:45,"398 Madison St, San Francisco, CA 94016" +313985,27in FHD Monitor,1,149.99,12/07/19 12:09,"788 River St, New York City, NY 10001" +313986,AA Batteries (4-pack),1,3.84,12/12/19 10:16,"279 12th St, Boston, MA 02215" +313987,AA Batteries (4-pack),1,3.84,12/05/19 13:09,"780 Park St, New York City, NY 10001" +313988,Lightning Charging Cable,1,14.95,12/22/19 18:09,"798 Highland St, Los Angeles, CA 90001" +313989,Apple Airpods Headphones,1,150,12/16/19 18:04,"153 Lake St, Atlanta, GA 30301" +313990,Bose SoundSport Headphones,1,99.99,12/08/19 19:31,"195 Madison St, Los Angeles, CA 90001" +313991,Wired Headphones,1,11.99,12/17/19 12:10,"54 Walnut St, Austin, TX 73301" +313992,Bose SoundSport Headphones,1,99.99,12/01/19 15:46,"116 Spruce St, Dallas, TX 75001" +313993,AA Batteries (4-pack),1,3.84,12/26/19 19:51,"356 Cherry St, San Francisco, CA 94016" +313994,AAA Batteries (4-pack),2,2.99,12/22/19 14:55,"857 Maple St, San Francisco, CA 94016" +313995,AAA Batteries (4-pack),1,2.99,12/19/19 12:40,"179 Park St, San Francisco, CA 94016" +313996,USB-C Charging Cable,1,11.95,12/07/19 15:14,"310 River St, Dallas, TX 75001" +313996,Flatscreen TV,1,300,12/07/19 15:14,"310 River St, Dallas, TX 75001" +313997,27in 4K Gaming Monitor,1,389.99,12/06/19 19:30,"148 Elm St, Los Angeles, CA 90001" +313998,AAA Batteries (4-pack),1,2.99,12/05/19 23:49,"174 Forest St, Portland, OR 97035" +313999,USB-C Charging Cable,1,11.95,12/16/19 02:55,"60 Cherry St, Los Angeles, CA 90001" +314000,USB-C Charging Cable,1,11.95,12/26/19 13:32,"747 9th St, Atlanta, GA 30301" +314001,Flatscreen TV,1,300,12/07/19 22:53,"250 Cedar St, Seattle, WA 98101" +314002,USB-C Charging Cable,1,11.95,12/31/19 19:11,"691 12th St, Los Angeles, CA 90001" +314003,USB-C Charging Cable,1,11.95,12/20/19 13:08,"924 South St, New York City, NY 10001" +314004,34in Ultrawide Monitor,1,379.99,12/24/19 21:35,"722 Cedar St, Los Angeles, CA 90001" +314005,AA Batteries (4-pack),2,3.84,12/05/19 22:23,"494 Spruce St, Seattle, WA 98101" +314006,Lightning Charging Cable,1,14.95,12/04/19 09:27,"67 6th St, Seattle, WA 98101" +314007,USB-C Charging Cable,1,11.95,12/11/19 22:11,"566 11th St, Boston, MA 02215" +314008,Vareebadd Phone,1,400,12/19/19 01:35,"586 Wilson St, Dallas, TX 75001" +314008,USB-C Charging Cable,1,11.95,12/19/19 01:35,"586 Wilson St, Dallas, TX 75001" +314009,AAA Batteries (4-pack),3,2.99,12/29/19 18:52,"923 Madison St, Boston, MA 02215" +314010,ThinkPad Laptop,1,999.99,12/25/19 00:04,"208 Madison St, Portland, ME 04101" +314011,27in FHD Monitor,1,149.99,12/28/19 18:17,"641 6th St, Los Angeles, CA 90001" +314012,34in Ultrawide Monitor,1,379.99,12/28/19 21:51,"996 South St, Atlanta, GA 30301" +314013,27in FHD Monitor,1,149.99,12/19/19 14:54,"879 Lake St, New York City, NY 10001" +314014,Macbook Pro Laptop,1,1700,12/16/19 16:59,"677 4th St, San Francisco, CA 94016" +314015,USB-C Charging Cable,1,11.95,12/31/19 22:18,"348 Maple St, New York City, NY 10001" +314016,27in 4K Gaming Monitor,1,389.99,12/28/19 13:32,"92 Adams St, Los Angeles, CA 90001" +314017,AA Batteries (4-pack),1,3.84,12/24/19 20:20,"356 Washington St, Los Angeles, CA 90001" +314018,Flatscreen TV,1,300,12/20/19 18:00,"673 Main St, Atlanta, GA 30301" +314019,Macbook Pro Laptop,1,1700,12/28/19 11:32,"346 Walnut St, Atlanta, GA 30301" +314020,AA Batteries (4-pack),1,3.84,12/16/19 16:34,"804 Walnut St, Portland, OR 97035" +314021,Vareebadd Phone,1,400,12/29/19 11:37,"234 Hickory St, New York City, NY 10001" +314022,Lightning Charging Cable,2,14.95,12/30/19 20:20,"285 11th St, New York City, NY 10001" +314023,Vareebadd Phone,1,400,12/28/19 08:01,"411 Main St, Los Angeles, CA 90001" +314023,Wired Headphones,1,11.99,12/28/19 08:01,"411 Main St, Los Angeles, CA 90001" +314024,Lightning Charging Cable,1,14.95,12/28/19 12:26,"606 West St, New York City, NY 10001" +314025,USB-C Charging Cable,1,11.95,12/30/19 17:31,"789 14th St, New York City, NY 10001" +314026,AAA Batteries (4-pack),2,2.99,12/05/19 01:47,"31 Lakeview St, Seattle, WA 98101" +314027,Bose SoundSport Headphones,1,99.99,12/21/19 16:51,"869 9th St, Atlanta, GA 30301" +314028,Lightning Charging Cable,1,14.95,12/14/19 19:15,"346 South St, Portland, OR 97035" +314029,AAA Batteries (4-pack),2,2.99,12/06/19 01:33,"947 1st St, Boston, MA 02215" +314030,USB-C Charging Cable,1,11.95,12/03/19 16:18,"444 Lincoln St, San Francisco, CA 94016" +314031,AAA Batteries (4-pack),1,2.99,12/11/19 03:25,"23 Willow St, Boston, MA 02215" +314032,AAA Batteries (4-pack),4,2.99,12/14/19 19:41,"133 Dogwood St, Boston, MA 02215" +314033,iPhone,1,700,12/18/19 11:47,"176 Dogwood St, Seattle, WA 98101" +314034,USB-C Charging Cable,1,11.95,12/18/19 21:53,"886 Willow St, Boston, MA 02215" +314035,ThinkPad Laptop,1,999.99,12/15/19 11:00,"937 8th St, Dallas, TX 75001" +314036,AA Batteries (4-pack),2,3.84,12/18/19 12:16,"472 Ridge St, Los Angeles, CA 90001" +314037,ThinkPad Laptop,1,999.99,12/11/19 00:09,"250 South St, Austin, TX 73301" +314038,USB-C Charging Cable,2,11.95,12/11/19 12:22,"799 Pine St, Boston, MA 02215" +314039,Bose SoundSport Headphones,1,99.99,12/03/19 20:18,"374 Church St, New York City, NY 10001" +314040,AAA Batteries (4-pack),2,2.99,12/03/19 15:48,"816 10th St, San Francisco, CA 94016" +314041,Flatscreen TV,1,300,12/27/19 09:51,"596 Lake St, San Francisco, CA 94016" +314042,Bose SoundSport Headphones,1,99.99,12/28/19 19:22,"490 Washington St, Los Angeles, CA 90001" +314043,Wired Headphones,1,11.99,12/25/19 11:49,"158 7th St, Portland, OR 97035" +314044,USB-C Charging Cable,1,11.95,12/05/19 11:44,"122 Jackson St, Austin, TX 73301" +314045,27in FHD Monitor,1,149.99,12/30/19 15:39,"368 Lakeview St, Dallas, TX 75001" +314046,USB-C Charging Cable,1,11.95,12/13/19 11:22,"767 Willow St, San Francisco, CA 94016" +314047,AA Batteries (4-pack),1,3.84,12/07/19 12:57,"144 Main St, Atlanta, GA 30301" +314048,34in Ultrawide Monitor,1,379.99,12/25/19 14:44,"774 Spruce St, Dallas, TX 75001" +314049,Wired Headphones,1,11.99,12/28/19 16:05,"323 Walnut St, Dallas, TX 75001" +314050,Lightning Charging Cable,1,14.95,12/08/19 01:32,"584 Maple St, Boston, MA 02215" +314051,USB-C Charging Cable,1,11.95,12/10/19 21:00,"546 Johnson St, Seattle, WA 98101" +314052,Macbook Pro Laptop,1,1700,12/20/19 16:23,"430 6th St, Austin, TX 73301" +314053,Vareebadd Phone,1,400,12/13/19 09:23,"134 7th St, Atlanta, GA 30301" +314053,Wired Headphones,1,11.99,12/13/19 09:23,"134 7th St, Atlanta, GA 30301" +314054,Apple Airpods Headphones,1,150,12/20/19 23:22,"317 12th St, Dallas, TX 75001" +314054,USB-C Charging Cable,1,11.95,12/20/19 23:22,"317 12th St, Dallas, TX 75001" +314055,Wired Headphones,1,11.99,12/13/19 12:26,"469 11th St, Dallas, TX 75001" +314056,USB-C Charging Cable,1,11.95,12/03/19 12:16,"545 10th St, Seattle, WA 98101" +314057,Lightning Charging Cable,1,14.95,12/02/19 13:07,"251 14th St, Boston, MA 02215" +314058,Bose SoundSport Headphones,1,99.99,12/21/19 20:41,"692 Forest St, New York City, NY 10001" +314059,Bose SoundSport Headphones,1,99.99,12/17/19 10:14,"153 8th St, San Francisco, CA 94016" +314060,USB-C Charging Cable,1,11.95,12/26/19 07:10,"783 12th St, Atlanta, GA 30301" +314061,Lightning Charging Cable,1,14.95,12/20/19 07:02,"632 9th St, New York City, NY 10001" +314062,USB-C Charging Cable,1,11.95,12/05/19 11:12,"620 2nd St, Dallas, TX 75001" +314063,AAA Batteries (4-pack),1,2.99,12/21/19 19:28,"884 Park St, Boston, MA 02215" +314064,AAA Batteries (4-pack),2,2.99,12/17/19 01:49,"719 Lakeview St, New York City, NY 10001" +314065,Apple Airpods Headphones,1,150,12/01/19 08:08,"137 8th St, Boston, MA 02215" +314066,Lightning Charging Cable,1,14.95,12/25/19 09:58,"92 Johnson St, San Francisco, CA 94016" +314067,Bose SoundSport Headphones,1,99.99,12/17/19 19:47,"588 4th St, New York City, NY 10001" +314067,USB-C Charging Cable,1,11.95,12/17/19 19:47,"588 4th St, New York City, NY 10001" +314068,Wired Headphones,1,11.99,12/03/19 11:41,"626 Center St, Austin, TX 73301" +314069,Wired Headphones,1,11.99,12/13/19 15:18,"212 Meadow St, Austin, TX 73301" +314070,LG Dryer,1,600.0,12/13/19 14:36,"409 11th St, Los Angeles, CA 90001" +314071,AAA Batteries (4-pack),1,2.99,12/15/19 13:23,"628 Jackson St, Seattle, WA 98101" +314072,27in 4K Gaming Monitor,1,389.99,12/07/19 09:51,"335 Willow St, San Francisco, CA 94016" +314073,Flatscreen TV,1,300,12/09/19 19:29,"930 Johnson St, Los Angeles, CA 90001" +314074,ThinkPad Laptop,1,999.99,12/19/19 19:58,"628 Center St, San Francisco, CA 94016" +314075,AA Batteries (4-pack),1,3.84,12/08/19 21:26,"101 Hickory St, Boston, MA 02215" +314076,27in FHD Monitor,1,149.99,12/25/19 15:41,"471 Lakeview St, Boston, MA 02215" +314077,USB-C Charging Cable,1,11.95,12/15/19 20:29,"727 10th St, Los Angeles, CA 90001" +314078,USB-C Charging Cable,1,11.95,12/25/19 20:45,"5 Lakeview St, New York City, NY 10001" +314079,Lightning Charging Cable,1,14.95,12/06/19 10:26,"300 7th St, San Francisco, CA 94016" +314080,27in 4K Gaming Monitor,1,389.99,12/22/19 12:47,"567 5th St, Atlanta, GA 30301" +314081,27in 4K Gaming Monitor,1,389.99,12/01/19 10:30,"706 10th St, Los Angeles, CA 90001" +314082,Wired Headphones,1,11.99,12/26/19 17:15,"406 Adams St, Boston, MA 02215" +314083,AA Batteries (4-pack),1,3.84,12/31/19 15:54,"131 14th St, San Francisco, CA 94016" +314084,27in FHD Monitor,1,149.99,12/01/19 21:02,"810 11th St, Dallas, TX 75001" +314085,AA Batteries (4-pack),1,3.84,12/21/19 16:04,"330 Walnut St, Los Angeles, CA 90001" +314086,iPhone,1,700,12/04/19 20:36,"699 5th St, San Francisco, CA 94016" +314087,USB-C Charging Cable,1,11.95,12/19/19 07:43,"877 1st St, New York City, NY 10001" +314088,Wired Headphones,1,11.99,12/05/19 17:29,"341 6th St, San Francisco, CA 94016" +314089,Wired Headphones,1,11.99,12/17/19 10:30,"579 Hill St, San Francisco, CA 94016" +314090,Google Phone,1,600,12/07/19 04:24,"360 Park St, Los Angeles, CA 90001" +314091,Macbook Pro Laptop,1,1700,12/22/19 13:13,"370 11th St, Los Angeles, CA 90001" +314092,27in FHD Monitor,1,149.99,12/20/19 12:00,"776 Pine St, Dallas, TX 75001" +314093,Apple Airpods Headphones,1,150,12/26/19 21:32,"980 1st St, Portland, ME 04101" +314094,AA Batteries (4-pack),2,3.84,12/21/19 10:29,"4 Walnut St, New York City, NY 10001" +314095,Google Phone,1,600,12/24/19 20:02,"312 Main St, Atlanta, GA 30301" +314096,27in 4K Gaming Monitor,1,389.99,12/07/19 20:44,"442 West St, Los Angeles, CA 90001" +,,,,, +314097,iPhone,1,700,12/25/19 23:30,"632 8th St, Los Angeles, CA 90001" +314098,Apple Airpods Headphones,1,150,12/27/19 20:02,"435 Elm St, New York City, NY 10001" +314099,Bose SoundSport Headphones,1,99.99,12/01/19 22:19,"67 West St, San Francisco, CA 94016" +314100,Wired Headphones,1,11.99,12/26/19 21:31,"198 Chestnut St, San Francisco, CA 94016" +314101,Lightning Charging Cable,1,14.95,12/30/19 10:41,"608 Adams St, San Francisco, CA 94016" +314102,AA Batteries (4-pack),1,3.84,12/30/19 10:28,"804 5th St, San Francisco, CA 94016" +314103,20in Monitor,1,109.99,12/03/19 18:42,"326 7th St, Dallas, TX 75001" +314103,AA Batteries (4-pack),1,3.84,12/03/19 18:42,"326 7th St, Dallas, TX 75001" +314104,Bose SoundSport Headphones,1,99.99,12/29/19 22:16,"63 Chestnut St, Boston, MA 02215" +314105,iPhone,1,700,12/10/19 14:13,"849 5th St, San Francisco, CA 94016" +,,,,, +314106,Bose SoundSport Headphones,1,99.99,12/04/19 12:05,"235 12th St, Dallas, TX 75001" +314107,Lightning Charging Cable,1,14.95,12/13/19 13:36,"692 Madison St, Los Angeles, CA 90001" +314108,USB-C Charging Cable,1,11.95,12/07/19 22:38,"730 West St, Austin, TX 73301" +314109,Google Phone,1,600,12/26/19 19:38,"857 Cherry St, New York City, NY 10001" +314110,Wired Headphones,1,11.99,12/01/19 22:02,"89 11th St, Dallas, TX 75001" +314111,AA Batteries (4-pack),1,3.84,12/15/19 12:38,"88 4th St, Boston, MA 02215" +314112,Macbook Pro Laptop,1,1700,12/30/19 12:44,"839 Maple St, Atlanta, GA 30301" +314113,USB-C Charging Cable,1,11.95,12/27/19 09:15,"168 Ridge St, Boston, MA 02215" +314114,iPhone,1,700,12/29/19 14:35,"602 14th St, Seattle, WA 98101" +314115,AAA Batteries (4-pack),2,2.99,12/09/19 04:02,"508 Jefferson St, Los Angeles, CA 90001" +314116,Apple Airpods Headphones,1,150,12/28/19 18:59,"260 Lake St, New York City, NY 10001" +314117,USB-C Charging Cable,1,11.95,12/14/19 15:48,"95 11th St, San Francisco, CA 94016" +314118,USB-C Charging Cable,1,11.95,12/17/19 17:04,"749 Adams St, New York City, NY 10001" +314119,Lightning Charging Cable,1,14.95,12/15/19 18:36,"245 Walnut St, Austin, TX 73301" +314120,Wired Headphones,1,11.99,12/21/19 15:18,"375 Meadow St, Seattle, WA 98101" +314121,Apple Airpods Headphones,1,150,12/28/19 12:59,"526 11th St, Austin, TX 73301" +314122,27in FHD Monitor,1,149.99,12/11/19 10:28,"728 2nd St, Los Angeles, CA 90001" +314123,27in FHD Monitor,1,149.99,12/08/19 00:17,"407 Highland St, Boston, MA 02215" +314124,Bose SoundSport Headphones,1,99.99,12/19/19 22:16,"575 Pine St, Boston, MA 02215" +314125,20in Monitor,1,109.99,12/17/19 22:57,"98 Johnson St, San Francisco, CA 94016" +314126,Macbook Pro Laptop,1,1700,12/12/19 16:33,"598 Chestnut St, San Francisco, CA 94016" +314127,Lightning Charging Cable,1,14.95,12/09/19 20:08,"26 Hickory St, New York City, NY 10001" +314128,Flatscreen TV,1,300,01/01/20 00:53,"426 Forest St, San Francisco, CA 94016" +314129,Flatscreen TV,1,300,12/12/19 15:33,"396 1st St, New York City, NY 10001" +314130,Apple Airpods Headphones,1,150,12/06/19 12:49,"963 Madison St, Los Angeles, CA 90001" +314131,USB-C Charging Cable,1,11.95,12/07/19 23:24,"946 8th St, Boston, MA 02215" +314132,AAA Batteries (4-pack),1,2.99,12/10/19 22:38,"895 1st St, Seattle, WA 98101" +314133,27in 4K Gaming Monitor,1,389.99,12/31/19 17:20,"914 South St, Boston, MA 02215" +314134,USB-C Charging Cable,2,11.95,12/16/19 23:17,"826 Hill St, Seattle, WA 98101" +314135,LG Dryer,1,600.0,12/12/19 14:05,"398 11th St, Atlanta, GA 30301" +314136,Apple Airpods Headphones,1,150,12/30/19 07:20,"554 14th St, Austin, TX 73301" +314137,Lightning Charging Cable,1,14.95,12/05/19 21:32,"880 7th St, Boston, MA 02215" +314138,27in FHD Monitor,1,149.99,12/18/19 15:57,"316 2nd St, New York City, NY 10001" +314139,Google Phone,1,600,12/17/19 09:21,"566 Highland St, Dallas, TX 75001" +314140,Wired Headphones,1,11.99,12/26/19 12:06,"208 Hill St, San Francisco, CA 94016" +314141,Bose SoundSport Headphones,1,99.99,12/28/19 21:30,"607 8th St, San Francisco, CA 94016" +314142,Wired Headphones,2,11.99,12/06/19 19:58,"447 Hill St, Austin, TX 73301" +314143,27in 4K Gaming Monitor,1,389.99,12/04/19 19:36,"40 Maple St, Los Angeles, CA 90001" +314144,Lightning Charging Cable,1,14.95,12/26/19 18:32,"813 Elm St, Seattle, WA 98101" +314145,Wired Headphones,1,11.99,12/11/19 13:06,"150 Elm St, Los Angeles, CA 90001" +314146,iPhone,1,700,12/04/19 20:15,"492 Johnson St, Atlanta, GA 30301" +314147,34in Ultrawide Monitor,1,379.99,12/12/19 09:07,"830 Walnut St, New York City, NY 10001" +314148,Flatscreen TV,1,300,12/17/19 21:15,"555 6th St, Austin, TX 73301" +314149,Wired Headphones,1,11.99,12/26/19 13:21,"358 Dogwood St, San Francisco, CA 94016" +314150,27in FHD Monitor,1,149.99,12/23/19 17:22,"636 Meadow St, Boston, MA 02215" +314151,AAA Batteries (4-pack),1,2.99,12/01/19 16:28,"45 Church St, Atlanta, GA 30301" +314152,Apple Airpods Headphones,1,150,12/13/19 07:27,"674 Cherry St, Los Angeles, CA 90001" +314153,Lightning Charging Cable,1,14.95,12/28/19 14:39,"994 7th St, San Francisco, CA 94016" +314154,USB-C Charging Cable,1,11.95,12/26/19 13:31,"959 10th St, New York City, NY 10001" +314155,USB-C Charging Cable,1,11.95,12/30/19 07:52,"208 Hickory St, Seattle, WA 98101" +314156,AAA Batteries (4-pack),2,2.99,12/07/19 12:38,"72 2nd St, Boston, MA 02215" +314157,AAA Batteries (4-pack),1,2.99,12/13/19 12:29,"339 Lakeview St, San Francisco, CA 94016" +314158,AA Batteries (4-pack),1,3.84,12/11/19 09:30,"41 9th St, New York City, NY 10001" +314159,ThinkPad Laptop,1,999.99,12/13/19 23:05,"680 Lakeview St, San Francisco, CA 94016" +314160,Wired Headphones,1,11.99,12/29/19 16:31,"351 11th St, New York City, NY 10001" +314161,Apple Airpods Headphones,1,150,12/10/19 11:40,"45 Washington St, Atlanta, GA 30301" +314162,Lightning Charging Cable,1,14.95,12/29/19 15:03,"793 Lincoln St, Seattle, WA 98101" +314163,USB-C Charging Cable,1,11.95,12/17/19 23:07,"271 Center St, San Francisco, CA 94016" +314164,Flatscreen TV,1,300,12/14/19 14:38,"218 9th St, San Francisco, CA 94016" +,,,,, +314165,Lightning Charging Cable,1,14.95,12/23/19 08:11,"306 Center St, San Francisco, CA 94016" +314166,Lightning Charging Cable,1,14.95,12/17/19 12:34,"121 10th St, Seattle, WA 98101" +314167,USB-C Charging Cable,1,11.95,12/30/19 00:41,"283 Jefferson St, Boston, MA 02215" +314168,AAA Batteries (4-pack),2,2.99,12/21/19 15:38,"388 Maple St, Atlanta, GA 30301" +314169,Wired Headphones,1,11.99,12/31/19 17:23,"50 Ridge St, Portland, OR 97035" +314170,AAA Batteries (4-pack),1,2.99,12/23/19 06:19,"929 Church St, Dallas, TX 75001" +314171,Bose SoundSport Headphones,1,99.99,12/12/19 11:45,"124 River St, San Francisco, CA 94016" +314172,Macbook Pro Laptop,1,1700,12/27/19 14:55,"278 Adams St, Atlanta, GA 30301" +314173,USB-C Charging Cable,1,11.95,12/16/19 16:37,"113 Hill St, Boston, MA 02215" +314174,Apple Airpods Headphones,1,150,12/20/19 19:17,"929 Ridge St, Boston, MA 02215" +314175,USB-C Charging Cable,1,11.95,12/31/19 10:43,"619 Park St, Portland, OR 97035" +314176,27in FHD Monitor,1,149.99,12/01/19 16:16,"277 13th St, San Francisco, CA 94016" +314177,AA Batteries (4-pack),1,3.84,12/02/19 08:17,"398 Madison St, Atlanta, GA 30301" +314178,USB-C Charging Cable,1,11.95,12/13/19 00:31,"458 Center St, Atlanta, GA 30301" +314179,USB-C Charging Cable,1,11.95,12/11/19 13:13,"41 Lake St, Atlanta, GA 30301" +314180,AAA Batteries (4-pack),1,2.99,12/31/19 15:58,"980 13th St, San Francisco, CA 94016" +314181,Vareebadd Phone,1,400,12/29/19 10:03,"425 Church St, Atlanta, GA 30301" +314181,USB-C Charging Cable,1,11.95,12/29/19 10:03,"425 Church St, Atlanta, GA 30301" +314182,USB-C Charging Cable,2,11.95,12/08/19 16:44,"147 Hickory St, Dallas, TX 75001" +314183,USB-C Charging Cable,1,11.95,12/15/19 15:33,"385 Main St, Los Angeles, CA 90001" +314184,34in Ultrawide Monitor,1,379.99,12/12/19 16:56,"471 Lakeview St, San Francisco, CA 94016" +,,,,, +314185,AAA Batteries (4-pack),1,2.99,12/15/19 12:24,"626 Elm St, Austin, TX 73301" +314186,AAA Batteries (4-pack),1,2.99,12/02/19 20:17,"688 North St, Austin, TX 73301" +314187,Wired Headphones,1,11.99,12/14/19 09:00,"541 Church St, Los Angeles, CA 90001" +314188,AAA Batteries (4-pack),1,2.99,12/12/19 11:37,"488 Jefferson St, Seattle, WA 98101" +314189,Wired Headphones,1,11.99,12/23/19 10:14,"276 12th St, San Francisco, CA 94016" +314190,Lightning Charging Cable,1,14.95,12/25/19 09:57,"548 Washington St, Los Angeles, CA 90001" +314191,AAA Batteries (4-pack),1,2.99,12/03/19 13:48,"695 Spruce St, Los Angeles, CA 90001" +314192,Lightning Charging Cable,1,14.95,12/01/19 08:10,"23 Highland St, Atlanta, GA 30301" +314193,LG Washing Machine,1,600.0,12/02/19 15:31,"832 Maple St, New York City, NY 10001" +314194,AA Batteries (4-pack),2,3.84,12/06/19 18:26,"983 1st St, Portland, OR 97035" +314195,27in 4K Gaming Monitor,1,389.99,12/08/19 10:02,"890 Spruce St, San Francisco, CA 94016" +314196,Apple Airpods Headphones,1,150,12/19/19 11:43,"626 Cedar St, Portland, OR 97035" +314197,Bose SoundSport Headphones,1,99.99,12/12/19 11:58,"893 Meadow St, Austin, TX 73301" +314198,AAA Batteries (4-pack),1,2.99,12/16/19 07:51,"945 Ridge St, San Francisco, CA 94016" +314199,AA Batteries (4-pack),2,3.84,12/07/19 11:17,"881 Highland St, San Francisco, CA 94016" +314200,Lightning Charging Cable,2,14.95,12/17/19 20:12,"548 Forest St, San Francisco, CA 94016" +314201,Wired Headphones,1,11.99,12/02/19 16:11,"783 Hickory St, Dallas, TX 75001" +314202,ThinkPad Laptop,1,999.99,12/29/19 20:24,"620 West St, San Francisco, CA 94016" +314203,Lightning Charging Cable,1,14.95,12/02/19 22:26,"294 Jefferson St, San Francisco, CA 94016" +314204,Google Phone,1,600,12/18/19 10:16,"335 6th St, San Francisco, CA 94016" +314204,Bose SoundSport Headphones,1,99.99,12/18/19 10:16,"335 6th St, San Francisco, CA 94016" +314205,Lightning Charging Cable,1,14.95,12/09/19 12:24,"209 Church St, San Francisco, CA 94016" +314206,AAA Batteries (4-pack),1,2.99,12/07/19 12:02,"36 Willow St, Seattle, WA 98101" +314207,Wired Headphones,1,11.99,12/25/19 15:13,"955 14th St, Boston, MA 02215" +314208,Lightning Charging Cable,1,14.95,12/31/19 14:07,"69 2nd St, Dallas, TX 75001" +314209,Flatscreen TV,1,300,12/25/19 23:05,"626 Maple St, San Francisco, CA 94016" +314210,Macbook Pro Laptop,1,1700,12/28/19 09:06,"176 Lakeview St, Los Angeles, CA 90001" +314211,USB-C Charging Cable,1,11.95,12/30/19 12:14,"50 South St, Boston, MA 02215" +314212,USB-C Charging Cable,1,11.95,12/07/19 20:54,"448 Johnson St, Portland, OR 97035" +314213,Apple Airpods Headphones,1,150,12/20/19 19:19,"625 Center St, San Francisco, CA 94016" +314214,Lightning Charging Cable,1,14.95,12/18/19 17:31,"360 Ridge St, Boston, MA 02215" +314215,Bose SoundSport Headphones,1,99.99,12/20/19 16:47,"505 Lake St, New York City, NY 10001" +314216,AA Batteries (4-pack),2,3.84,12/29/19 20:59,"790 West St, San Francisco, CA 94016" +314217,Wired Headphones,2,11.99,12/20/19 18:33,"847 Hickory St, Boston, MA 02215" +314218,USB-C Charging Cable,1,11.95,12/16/19 20:12,"97 Pine St, Boston, MA 02215" +314219,USB-C Charging Cable,1,11.95,12/01/19 19:54,"970 12th St, San Francisco, CA 94016" +314220,27in 4K Gaming Monitor,1,389.99,12/21/19 20:29,"166 Adams St, New York City, NY 10001" +314221,27in 4K Gaming Monitor,1,389.99,12/17/19 14:47,"504 Center St, New York City, NY 10001" +314222,AA Batteries (4-pack),2,3.84,12/24/19 10:04,"438 11th St, San Francisco, CA 94016" +314223,Macbook Pro Laptop,1,1700,12/26/19 20:46,"345 Sunset St, Portland, OR 97035" +314224,Lightning Charging Cable,1,14.95,12/08/19 09:02,"319 Jefferson St, Austin, TX 73301" +314225,Apple Airpods Headphones,1,150,12/26/19 23:08,"712 1st St, Boston, MA 02215" +314226,Lightning Charging Cable,1,14.95,12/16/19 13:17,"907 Park St, New York City, NY 10001" +314227,Google Phone,1,600,12/26/19 08:36,"210 Jefferson St, San Francisco, CA 94016" +314228,Wired Headphones,1,11.99,12/04/19 23:30,"690 Johnson St, San Francisco, CA 94016" +314229,34in Ultrawide Monitor,1,379.99,12/31/19 19:40,"801 Sunset St, San Francisco, CA 94016" +314229,27in 4K Gaming Monitor,1,389.99,12/31/19 19:40,"801 Sunset St, San Francisco, CA 94016" +314230,iPhone,1,700,12/11/19 17:09,"162 Washington St, Atlanta, GA 30301" +314231,Vareebadd Phone,1,400,12/29/19 21:34,"619 Cherry St, Seattle, WA 98101" +314232,Bose SoundSport Headphones,1,99.99,12/29/19 14:45,"977 1st St, New York City, NY 10001" +314233,27in FHD Monitor,1,149.99,12/02/19 07:32,"83 Madison St, Los Angeles, CA 90001" +314234,Bose SoundSport Headphones,1,99.99,12/24/19 20:39,"696 Madison St, Dallas, TX 75001" +314235,Macbook Pro Laptop,1,1700,12/14/19 16:14,"136 Pine St, Boston, MA 02215" +314236,Wired Headphones,1,11.99,12/06/19 20:21,"110 Sunset St, Dallas, TX 75001" +314237,27in FHD Monitor,1,149.99,12/05/19 09:53,"43 Hickory St, Los Angeles, CA 90001" +314238,Apple Airpods Headphones,1,150,12/12/19 19:03,"794 11th St, New York City, NY 10001" +314239,AAA Batteries (4-pack),1,2.99,12/04/19 12:05,"397 Madison St, San Francisco, CA 94016" +314240,USB-C Charging Cable,1,11.95,12/08/19 22:15,"861 Highland St, Dallas, TX 75001" +314241,AA Batteries (4-pack),2,3.84,12/24/19 15:40,"947 Cherry St, Boston, MA 02215" +314242,Flatscreen TV,1,300,12/22/19 22:34,"54 Park St, San Francisco, CA 94016" +314243,34in Ultrawide Monitor,1,379.99,12/19/19 12:35,"433 Hickory St, Los Angeles, CA 90001" +314244,AA Batteries (4-pack),1,3.84,12/04/19 20:37,"435 10th St, Atlanta, GA 30301" +314245,USB-C Charging Cable,1,11.95,12/09/19 23:09,"414 Elm St, Seattle, WA 98101" +314246,Lightning Charging Cable,1,14.95,12/16/19 19:35,"64 10th St, Los Angeles, CA 90001" +314247,USB-C Charging Cable,1,11.95,12/01/19 09:02,"482 Elm St, San Francisco, CA 94016" +314248,USB-C Charging Cable,1,11.95,12/27/19 11:46,"432 Washington St, Boston, MA 02215" +314249,Lightning Charging Cable,1,14.95,12/28/19 17:06,"757 Sunset St, San Francisco, CA 94016" +314250,Bose SoundSport Headphones,1,99.99,12/24/19 12:49,"768 Pine St, San Francisco, CA 94016" +314251,USB-C Charging Cable,1,11.95,12/01/19 20:32,"588 Hill St, Los Angeles, CA 90001" +314252,Google Phone,1,600,12/30/19 17:13,"751 Main St, Atlanta, GA 30301" +314253,Apple Airpods Headphones,1,150,12/29/19 22:46,"471 Jefferson St, Atlanta, GA 30301" +314254,AA Batteries (4-pack),1,3.84,12/25/19 03:05,"718 14th St, Los Angeles, CA 90001" +314255,27in FHD Monitor,1,149.99,12/19/19 13:24,"148 North St, Los Angeles, CA 90001" +314256,Apple Airpods Headphones,1,150,12/23/19 13:49,"225 Cedar St, Portland, ME 04101" +314257,Lightning Charging Cable,1,14.95,12/29/19 21:57,"995 River St, Los Angeles, CA 90001" +314258,Bose SoundSport Headphones,1,99.99,12/21/19 10:27,"130 River St, Seattle, WA 98101" +314259,Apple Airpods Headphones,1,150,12/08/19 16:11,"121 6th St, Los Angeles, CA 90001" +314260,Macbook Pro Laptop,1,1700,12/27/19 14:07,"991 North St, New York City, NY 10001" +314261,AA Batteries (4-pack),1,3.84,12/07/19 12:27,"549 Cherry St, Austin, TX 73301" +314262,AAA Batteries (4-pack),1,2.99,12/12/19 18:38,"471 Park St, San Francisco, CA 94016" +314263,Wired Headphones,1,11.99,12/28/19 08:34,"730 North St, Austin, TX 73301" +314264,34in Ultrawide Monitor,1,379.99,12/17/19 22:27,"956 Park St, San Francisco, CA 94016" +314265,Wired Headphones,1,11.99,12/01/19 10:33,"793 Center St, New York City, NY 10001" +314266,Bose SoundSport Headphones,1,99.99,12/16/19 11:37,"141 5th St, Atlanta, GA 30301" +314267,Wired Headphones,1,11.99,12/01/19 15:46,"167 6th St, San Francisco, CA 94016" +314268,AA Batteries (4-pack),2,3.84,12/29/19 21:52,"239 Center St, San Francisco, CA 94016" +314269,AA Batteries (4-pack),1,3.84,12/23/19 09:18,"468 11th St, Portland, OR 97035" +314270,20in Monitor,1,109.99,12/09/19 20:55,"444 Cedar St, New York City, NY 10001" +314271,USB-C Charging Cable,1,11.95,12/08/19 16:29,"221 Johnson St, San Francisco, CA 94016" +314272,Macbook Pro Laptop,1,1700,12/30/19 16:06,"520 5th St, San Francisco, CA 94016" +314273,AA Batteries (4-pack),1,3.84,12/18/19 18:13,"585 Lakeview St, Los Angeles, CA 90001" +314274,AAA Batteries (4-pack),1,2.99,12/20/19 19:13,"772 Walnut St, Dallas, TX 75001" +314275,Lightning Charging Cable,1,14.95,12/04/19 12:08,"289 Chestnut St, San Francisco, CA 94016" +314276,Apple Airpods Headphones,1,150,12/15/19 06:58,"810 Jefferson St, New York City, NY 10001" +314277,Wired Headphones,1,11.99,12/20/19 00:24,"105 West St, Los Angeles, CA 90001" +314277,Bose SoundSport Headphones,1,99.99,12/20/19 00:24,"105 West St, Los Angeles, CA 90001" +314278,Bose SoundSport Headphones,1,99.99,12/29/19 11:18,"936 1st St, Dallas, TX 75001" +314279,USB-C Charging Cable,1,11.95,12/24/19 13:55,"246 Spruce St, Seattle, WA 98101" +314280,Wired Headphones,1,11.99,12/30/19 16:52,"456 Church St, Los Angeles, CA 90001" +314281,AA Batteries (4-pack),1,3.84,12/26/19 17:47,"644 6th St, Seattle, WA 98101" +314281,27in FHD Monitor,1,149.99,12/26/19 17:47,"644 6th St, Seattle, WA 98101" +314282,Apple Airpods Headphones,1,150,12/14/19 11:29,"389 2nd St, Dallas, TX 75001" +314283,AA Batteries (4-pack),1,3.84,12/18/19 18:53,"681 2nd St, Los Angeles, CA 90001" +314284,USB-C Charging Cable,1,11.95,01/01/20 00:32,"553 Center St, San Francisco, CA 94016" +314285,Apple Airpods Headphones,1,150,12/19/19 15:40,"921 Cedar St, Los Angeles, CA 90001" +314286,Lightning Charging Cable,1,14.95,12/19/19 19:06,"673 Willow St, San Francisco, CA 94016" +314287,Bose SoundSport Headphones,1,99.99,12/16/19 06:37,"416 Wilson St, Dallas, TX 75001" +314288,iPhone,1,700,12/14/19 17:43,"11 Pine St, Boston, MA 02215" +314289,ThinkPad Laptop,1,999.99,12/26/19 12:03,"751 14th St, Austin, TX 73301" +314290,iPhone,1,700,12/08/19 11:28,"226 Center St, Atlanta, GA 30301" +314291,AAA Batteries (4-pack),4,2.99,12/18/19 21:32,"473 Lake St, Atlanta, GA 30301" +314292,27in FHD Monitor,1,149.99,12/06/19 10:34,"696 Maple St, Boston, MA 02215" +314293,34in Ultrawide Monitor,1,379.99,12/18/19 15:13,"398 11th St, Portland, OR 97035" +314294,AAA Batteries (4-pack),1,2.99,12/09/19 23:46,"75 8th St, New York City, NY 10001" +314295,USB-C Charging Cable,1,11.95,12/09/19 13:59,"74 13th St, Atlanta, GA 30301" +314296,USB-C Charging Cable,1,11.95,12/09/19 10:23,"350 Meadow St, Austin, TX 73301" +314297,USB-C Charging Cable,1,11.95,12/26/19 13:57,"699 10th St, San Francisco, CA 94016" +314298,Lightning Charging Cable,1,14.95,12/09/19 23:34,"533 Ridge St, San Francisco, CA 94016" +314299,USB-C Charging Cable,1,11.95,12/29/19 20:46,"762 13th St, Boston, MA 02215" +314300,27in FHD Monitor,1,149.99,12/31/19 18:11,"593 Spruce St, Los Angeles, CA 90001" +314301,AAA Batteries (4-pack),1,2.99,12/18/19 19:08,"294 6th St, Portland, OR 97035" +314302,Apple Airpods Headphones,1,150,12/25/19 12:36,"337 Jefferson St, Atlanta, GA 30301" +314303,Wired Headphones,2,11.99,12/16/19 16:12,"36 8th St, Los Angeles, CA 90001" +314304,Bose SoundSport Headphones,1,99.99,12/12/19 14:18,"20 13th St, Atlanta, GA 30301" +314305,Wired Headphones,1,11.99,12/01/19 08:36,"78 Cedar St, San Francisco, CA 94016" +314306,Bose SoundSport Headphones,1,99.99,12/12/19 15:08,"688 Hickory St, Boston, MA 02215" +314307,Bose SoundSport Headphones,1,99.99,12/02/19 20:37,"460 Maple St, Seattle, WA 98101" +314308,Flatscreen TV,1,300,12/22/19 14:59,"303 6th St, New York City, NY 10001" +314309,Google Phone,1,600,12/30/19 10:01,"301 Wilson St, New York City, NY 10001" +314309,USB-C Charging Cable,1,11.95,12/30/19 10:01,"301 Wilson St, New York City, NY 10001" +314310,AA Batteries (4-pack),1,3.84,12/05/19 23:29,"711 14th St, New York City, NY 10001" +314311,Wired Headphones,1,11.99,12/28/19 21:20,"406 Lincoln St, Los Angeles, CA 90001" +,,,,, +314312,34in Ultrawide Monitor,1,379.99,12/31/19 17:37,"464 2nd St, San Francisco, CA 94016" +314313,Wired Headphones,2,11.99,12/13/19 20:03,"308 Main St, San Francisco, CA 94016" +314314,AA Batteries (4-pack),1,3.84,12/22/19 00:02,"412 Jefferson St, Portland, ME 04101" +314315,Flatscreen TV,1,300,12/02/19 14:24,"672 12th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +314316,27in FHD Monitor,1,149.99,12/09/19 14:03,"572 Center St, San Francisco, CA 94016" +314317,27in FHD Monitor,1,149.99,12/07/19 09:09,"24 Wilson St, Atlanta, GA 30301" +314318,iPhone,1,700,12/16/19 05:43,"595 River St, New York City, NY 10001" +314319,27in FHD Monitor,1,149.99,12/20/19 13:04,"562 Church St, New York City, NY 10001" +314320,USB-C Charging Cable,1,11.95,12/31/19 13:39,"928 Park St, Los Angeles, CA 90001" +314320,iPhone,1,700,12/31/19 13:39,"928 Park St, Los Angeles, CA 90001" +314321,Bose SoundSport Headphones,1,99.99,12/13/19 18:21,"693 Jackson St, Portland, OR 97035" +314322,AAA Batteries (4-pack),2,2.99,12/19/19 08:10,"319 Johnson St, Portland, OR 97035" +314323,USB-C Charging Cable,1,11.95,12/23/19 20:30,"762 Meadow St, Seattle, WA 98101" +314324,20in Monitor,1,109.99,12/14/19 20:48,"158 Meadow St, San Francisco, CA 94016" +314325,Apple Airpods Headphones,1,150,12/08/19 10:01,"744 Center St, San Francisco, CA 94016" +314326,AA Batteries (4-pack),1,3.84,12/17/19 17:10,"602 Jefferson St, Los Angeles, CA 90001" +314327,Lightning Charging Cable,1,14.95,12/06/19 11:26,"270 Elm St, San Francisco, CA 94016" +314328,Wired Headphones,1,11.99,12/14/19 10:11,"90 Walnut St, Boston, MA 02215" +314329,AA Batteries (4-pack),1,3.84,12/04/19 09:41,"858 Highland St, Portland, OR 97035" +314330,Bose SoundSport Headphones,1,99.99,12/11/19 16:56,"537 Johnson St, Boston, MA 02215" +314331,27in FHD Monitor,1,149.99,12/27/19 14:13,"503 Center St, San Francisco, CA 94016" +314332,USB-C Charging Cable,1,11.95,12/26/19 08:59,"198 5th St, Boston, MA 02215" +314333,Flatscreen TV,1,300,12/10/19 14:53,"340 9th St, San Francisco, CA 94016" +314334,USB-C Charging Cable,1,11.95,12/17/19 16:29,"951 Elm St, Boston, MA 02215" +314335,AAA Batteries (4-pack),1,2.99,12/03/19 09:49,"31 Jefferson St, Los Angeles, CA 90001" +314336,USB-C Charging Cable,1,11.95,12/09/19 15:36,"42 Maple St, New York City, NY 10001" +314337,USB-C Charging Cable,1,11.95,12/15/19 17:54,"314 Hickory St, Portland, OR 97035" +314338,Bose SoundSport Headphones,1,99.99,12/30/19 18:56,"334 8th St, New York City, NY 10001" +314339,20in Monitor,1,109.99,12/12/19 10:51,"703 Lincoln St, Boston, MA 02215" +314340,USB-C Charging Cable,1,11.95,12/30/19 18:11,"340 5th St, San Francisco, CA 94016" +314341,AAA Batteries (4-pack),1,2.99,12/08/19 10:29,"692 Cedar St, New York City, NY 10001" +314342,Lightning Charging Cable,1,14.95,12/17/19 17:45,"709 Forest St, New York City, NY 10001" +314343,ThinkPad Laptop,1,999.99,12/10/19 15:53,"449 Highland St, New York City, NY 10001" +314344,Apple Airpods Headphones,1,150,12/30/19 18:11,"608 Elm St, San Francisco, CA 94016" +314345,AA Batteries (4-pack),2,3.84,12/07/19 16:12,"164 10th St, Portland, OR 97035" +314346,34in Ultrawide Monitor,1,379.99,12/02/19 18:29,"796 Church St, Los Angeles, CA 90001" +314347,AA Batteries (4-pack),1,3.84,12/04/19 21:57,"448 Sunset St, Austin, TX 73301" +314348,AAA Batteries (4-pack),1,2.99,12/02/19 05:02,"637 13th St, Los Angeles, CA 90001" +314349,Wired Headphones,1,11.99,12/24/19 17:15,"183 1st St, San Francisco, CA 94016" +314350,iPhone,1,700,12/14/19 12:26,"112 Chestnut St, New York City, NY 10001" +314351,27in 4K Gaming Monitor,1,389.99,12/05/19 09:38,"988 Cedar St, New York City, NY 10001" +314352,Bose SoundSport Headphones,1,99.99,12/17/19 10:13,"524 Lakeview St, Portland, OR 97035" +314353,Google Phone,1,600,12/02/19 10:28,"248 Ridge St, Boston, MA 02215" +314354,AAA Batteries (4-pack),2,2.99,12/22/19 16:04,"281 Highland St, Dallas, TX 75001" +314355,Bose SoundSport Headphones,1,99.99,12/01/19 12:39,"681 Sunset St, New York City, NY 10001" +314356,AA Batteries (4-pack),1,3.84,12/29/19 09:34,"406 6th St, New York City, NY 10001" +314357,iPhone,1,700,12/06/19 18:48,"677 Elm St, New York City, NY 10001" +314358,AA Batteries (4-pack),1,3.84,12/22/19 11:16,"836 Wilson St, Portland, OR 97035" +314359,USB-C Charging Cable,1,11.95,12/03/19 12:57,"237 Lincoln St, San Francisco, CA 94016" +314360,27in FHD Monitor,1,149.99,12/04/19 14:19,"339 Ridge St, Portland, OR 97035" +314361,AAA Batteries (4-pack),1,2.99,12/28/19 20:05,"628 5th St, Los Angeles, CA 90001" +314362,Wired Headphones,1,11.99,12/30/19 10:49,"714 Willow St, Seattle, WA 98101" +314363,Bose SoundSport Headphones,1,99.99,12/20/19 09:58,"263 Jackson St, New York City, NY 10001" +314364,Lightning Charging Cable,1,14.95,12/24/19 10:40,"553 Lincoln St, New York City, NY 10001" +314365,iPhone,1,700,12/16/19 13:40,"203 North St, Seattle, WA 98101" +314366,27in FHD Monitor,1,149.99,12/02/19 13:55,"900 South St, Los Angeles, CA 90001" +314367,Google Phone,1,600,12/04/19 17:17,"879 Maple St, Portland, OR 97035" +314368,USB-C Charging Cable,1,11.95,12/08/19 17:10,"138 9th St, Los Angeles, CA 90001" +314369,iPhone,1,700,12/05/19 15:16,"751 Main St, San Francisco, CA 94016" +314369,Lightning Charging Cable,1,14.95,12/05/19 15:16,"751 Main St, San Francisco, CA 94016" +314369,Wired Headphones,1,11.99,12/05/19 15:16,"751 Main St, San Francisco, CA 94016" +314370,AAA Batteries (4-pack),1,2.99,12/30/19 13:00,"4 Spruce St, San Francisco, CA 94016" +314371,AAA Batteries (4-pack),1,2.99,12/05/19 16:11,"739 12th St, Los Angeles, CA 90001" +314372,Wired Headphones,1,11.99,12/07/19 23:36,"429 Jackson St, Boston, MA 02215" +314373,USB-C Charging Cable,1,11.95,12/31/19 00:47,"577 Walnut St, Dallas, TX 75001" +314374,AA Batteries (4-pack),1,3.84,12/22/19 09:07,"129 Jefferson St, Dallas, TX 75001" +314375,Macbook Pro Laptop,1,1700,12/14/19 20:24,"611 Maple St, San Francisco, CA 94016" +314376,AAA Batteries (4-pack),3,2.99,12/17/19 18:27,"192 Lake St, Dallas, TX 75001" +314377,Apple Airpods Headphones,1,150,12/05/19 14:03,"834 Adams St, Austin, TX 73301" +314378,AA Batteries (4-pack),2,3.84,12/13/19 13:44,"765 5th St, Los Angeles, CA 90001" +314379,Lightning Charging Cable,1,14.95,12/17/19 08:45,"912 Church St, San Francisco, CA 94016" +314380,Apple Airpods Headphones,1,150,12/27/19 09:21,"197 8th St, San Francisco, CA 94016" +314381,Wired Headphones,1,11.99,12/03/19 08:56,"644 2nd St, Portland, OR 97035" +314381,Wired Headphones,1,11.99,12/03/19 08:56,"644 2nd St, Portland, OR 97035" +314382,Macbook Pro Laptop,1,1700,12/24/19 18:57,"462 Lakeview St, Los Angeles, CA 90001" +314383,AA Batteries (4-pack),1,3.84,12/21/19 20:47,"336 Ridge St, Atlanta, GA 30301" +314384,Google Phone,1,600,12/30/19 22:40,"239 Adams St, Los Angeles, CA 90001" +314385,AA Batteries (4-pack),1,3.84,12/04/19 17:41,"429 Wilson St, San Francisco, CA 94016" +314386,AA Batteries (4-pack),1,3.84,12/21/19 11:54,"630 West St, San Francisco, CA 94016" +314387,USB-C Charging Cable,1,11.95,12/18/19 08:09,"295 10th St, San Francisco, CA 94016" +314388,AAA Batteries (4-pack),2,2.99,12/05/19 14:40,"312 Park St, San Francisco, CA 94016" +314389,AA Batteries (4-pack),4,3.84,12/22/19 19:02,"183 Sunset St, San Francisco, CA 94016" +314390,AAA Batteries (4-pack),1,2.99,12/31/19 17:16,"616 Adams St, New York City, NY 10001" +314391,Wired Headphones,1,11.99,12/18/19 18:35,"842 6th St, Austin, TX 73301" +314392,Wired Headphones,1,11.99,12/09/19 23:59,"350 Church St, Los Angeles, CA 90001" +314393,Wired Headphones,1,11.99,12/29/19 21:51,"56 Cherry St, Atlanta, GA 30301" +314394,Apple Airpods Headphones,1,150,12/23/19 10:58,"520 West St, Los Angeles, CA 90001" +314395,Macbook Pro Laptop,1,1700,12/24/19 10:08,"807 7th St, Dallas, TX 75001" +314396,AAA Batteries (4-pack),1,2.99,12/12/19 10:38,"644 Elm St, Los Angeles, CA 90001" +314397,Lightning Charging Cable,1,14.95,12/18/19 22:42,"90 5th St, San Francisco, CA 94016" +314398,AAA Batteries (4-pack),1,2.99,12/16/19 02:24,"277 Chestnut St, Boston, MA 02215" +314399,Lightning Charging Cable,1,14.95,12/22/19 17:28,"339 Maple St, Dallas, TX 75001" +314400,AA Batteries (4-pack),1,3.84,12/16/19 12:44,"767 Maple St, Los Angeles, CA 90001" +314401,iPhone,1,700,12/05/19 12:21,"411 Main St, Boston, MA 02215" +314402,Apple Airpods Headphones,1,150,12/08/19 22:52,"782 Lakeview St, New York City, NY 10001" +314403,USB-C Charging Cable,1,11.95,12/14/19 12:05,"16 Johnson St, New York City, NY 10001" +314404,AA Batteries (4-pack),1,3.84,12/07/19 05:50,"796 2nd St, New York City, NY 10001" +314405,iPhone,1,700,12/02/19 10:39,"682 Dogwood St, San Francisco, CA 94016" +314405,Lightning Charging Cable,1,14.95,12/02/19 10:39,"682 Dogwood St, San Francisco, CA 94016" +314406,Apple Airpods Headphones,1,150,12/05/19 20:30,"343 Cherry St, Dallas, TX 75001" +314407,iPhone,1,700,12/03/19 17:13,"103 Adams St, Boston, MA 02215" +314408,AAA Batteries (4-pack),2,2.99,12/10/19 09:14,"338 River St, Austin, TX 73301" +314409,USB-C Charging Cable,1,11.95,12/08/19 20:10,"397 13th St, Atlanta, GA 30301" +314410,AAA Batteries (4-pack),4,2.99,12/03/19 07:34,"792 Lake St, Los Angeles, CA 90001" +314411,Lightning Charging Cable,1,14.95,12/15/19 12:54,"535 Main St, Boston, MA 02215" +314412,Wired Headphones,1,11.99,12/12/19 18:27,"272 Jefferson St, New York City, NY 10001" +314413,AAA Batteries (4-pack),4,2.99,12/21/19 21:12,"55 Willow St, New York City, NY 10001" +314414,AA Batteries (4-pack),2,3.84,12/24/19 21:38,"463 5th St, Atlanta, GA 30301" +314415,Google Phone,1,600,12/13/19 11:31,"174 Center St, Seattle, WA 98101" +314416,Lightning Charging Cable,1,14.95,12/22/19 19:04,"315 Main St, Seattle, WA 98101" +314417,Bose SoundSport Headphones,1,99.99,12/05/19 19:26,"192 Cedar St, Los Angeles, CA 90001" +314418,34in Ultrawide Monitor,1,379.99,12/02/19 00:16,"823 Cherry St, San Francisco, CA 94016" +314419,Wired Headphones,1,11.99,12/16/19 21:45,"257 7th St, San Francisco, CA 94016" +314420,Lightning Charging Cable,1,14.95,12/01/19 19:27,"423 Dogwood St, New York City, NY 10001" +314421,ThinkPad Laptop,1,999.99,12/03/19 15:35,"129 Center St, San Francisco, CA 94016" +314422,Lightning Charging Cable,1,14.95,12/23/19 00:08,"200 1st St, San Francisco, CA 94016" +314423,Wired Headphones,1,11.99,12/14/19 10:59,"794 12th St, San Francisco, CA 94016" +314424,LG Dryer,1,600.0,12/22/19 21:23,"339 1st St, Los Angeles, CA 90001" +314425,Flatscreen TV,1,300,12/28/19 17:36,"810 7th St, Austin, TX 73301" +314426,Lightning Charging Cable,1,14.95,12/17/19 18:22,"531 Pine St, Los Angeles, CA 90001" +314427,AA Batteries (4-pack),1,3.84,12/02/19 00:50,"234 Jackson St, Atlanta, GA 30301" +314428,Apple Airpods Headphones,1,150,12/13/19 20:24,"95 Willow St, Dallas, TX 75001" +314429,AAA Batteries (4-pack),1,2.99,12/09/19 09:28,"165 Jefferson St, Boston, MA 02215" +314430,AA Batteries (4-pack),1,3.84,12/02/19 10:54,"835 Johnson St, Boston, MA 02215" +314431,iPhone,1,700,12/17/19 19:29,"380 Walnut St, Austin, TX 73301" +314431,Wired Headphones,1,11.99,12/17/19 19:29,"380 Walnut St, Austin, TX 73301" +314432,Lightning Charging Cable,1,14.95,12/24/19 18:46,"422 7th St, Boston, MA 02215" +314433,Lightning Charging Cable,1,14.95,12/30/19 19:17,"977 Hill St, San Francisco, CA 94016" +314434,Apple Airpods Headphones,1,150,12/16/19 12:25,"562 Adams St, Dallas, TX 75001" +314435,Lightning Charging Cable,2,14.95,12/19/19 14:51,"790 Chestnut St, New York City, NY 10001" +314436,Google Phone,1,600,12/11/19 12:36,"40 5th St, New York City, NY 10001" +314437,Lightning Charging Cable,1,14.95,12/25/19 16:53,"170 Johnson St, Austin, TX 73301" +314438,Macbook Pro Laptop,1,1700,12/08/19 21:08,"206 12th St, Los Angeles, CA 90001" +314439,Wired Headphones,1,11.99,12/01/19 15:18,"352 9th St, Atlanta, GA 30301" +314440,Google Phone,1,600,12/06/19 07:54,"970 Hickory St, Dallas, TX 75001" +314441,Wired Headphones,1,11.99,12/15/19 15:57,"705 Center St, Dallas, TX 75001" +314442,USB-C Charging Cable,1,11.95,12/15/19 06:58,"653 Ridge St, San Francisco, CA 94016" +314443,AAA Batteries (4-pack),1,2.99,12/11/19 09:59,"386 Maple St, Seattle, WA 98101" +314444,Lightning Charging Cable,1,14.95,12/24/19 16:00,"575 Hill St, Los Angeles, CA 90001" +314445,Apple Airpods Headphones,1,150,12/19/19 12:03,"374 North St, Atlanta, GA 30301" +314446,27in 4K Gaming Monitor,1,389.99,12/13/19 11:24,"289 Chestnut St, Boston, MA 02215" +314447,Macbook Pro Laptop,1,1700,12/08/19 09:33,"660 7th St, Portland, OR 97035" +314448,Wired Headphones,1,11.99,12/20/19 10:50,"399 Cherry St, San Francisco, CA 94016" +314449,USB-C Charging Cable,1,11.95,12/02/19 14:55,"666 12th St, Seattle, WA 98101" +314450,iPhone,1,700,12/21/19 14:55,"178 Hickory St, Atlanta, GA 30301" +314451,AAA Batteries (4-pack),1,2.99,12/06/19 08:19,"883 Cherry St, Portland, OR 97035" +314452,Apple Airpods Headphones,1,150,12/16/19 16:54,"739 7th St, Los Angeles, CA 90001" +314453,USB-C Charging Cable,1,11.95,12/19/19 09:36,"393 West St, Atlanta, GA 30301" +314454,34in Ultrawide Monitor,1,379.99,12/12/19 12:42,"358 Adams St, San Francisco, CA 94016" +314455,Wired Headphones,1,11.99,12/29/19 15:08,"514 Lincoln St, Dallas, TX 75001" +314456,AA Batteries (4-pack),1,3.84,12/13/19 09:51,"188 Lakeview St, Portland, OR 97035" +314457,AAA Batteries (4-pack),2,2.99,12/21/19 08:44,"407 6th St, New York City, NY 10001" +314458,Vareebadd Phone,1,400,12/10/19 17:51,"338 West St, Portland, OR 97035" +314458,USB-C Charging Cable,2,11.95,12/10/19 17:51,"338 West St, Portland, OR 97035" +314459,Apple Airpods Headphones,1,150,12/11/19 11:23,"498 Cedar St, New York City, NY 10001" +314460,Apple Airpods Headphones,1,150,12/21/19 11:27,"535 12th St, San Francisco, CA 94016" +314461,AA Batteries (4-pack),3,3.84,12/31/19 12:22,"712 Dogwood St, Boston, MA 02215" +314462,AA Batteries (4-pack),1,3.84,12/08/19 02:06,"946 Dogwood St, Atlanta, GA 30301" +314462,Wired Headphones,1,11.99,12/08/19 02:06,"946 Dogwood St, Atlanta, GA 30301" +314463,AA Batteries (4-pack),1,3.84,12/23/19 14:40,"567 1st St, New York City, NY 10001" +314464,Wired Headphones,1,11.99,12/17/19 16:05,"273 Lincoln St, Dallas, TX 75001" +314465,Wired Headphones,1,11.99,12/08/19 12:06,"371 11th St, Portland, OR 97035" +314466,Wired Headphones,1,11.99,12/20/19 18:59,"75 8th St, Seattle, WA 98101" +314467,USB-C Charging Cable,1,11.95,12/16/19 16:13,"751 Lincoln St, Los Angeles, CA 90001" +314468,27in 4K Gaming Monitor,1,389.99,12/17/19 05:38,"480 Washington St, Portland, OR 97035" +314469,ThinkPad Laptop,1,999.99,12/28/19 13:33,"832 4th St, Atlanta, GA 30301" +314470,ThinkPad Laptop,1,999.99,12/01/19 07:56,"698 Hickory St, San Francisco, CA 94016" +314471,Bose SoundSport Headphones,1,99.99,12/24/19 16:05,"417 Highland St, Los Angeles, CA 90001" +314472,iPhone,1,700,12/14/19 16:13,"934 Ridge St, San Francisco, CA 94016" +314472,Lightning Charging Cable,3,14.95,12/14/19 16:13,"934 Ridge St, San Francisco, CA 94016" +314473,AA Batteries (4-pack),1,3.84,12/07/19 14:11,"429 Park St, San Francisco, CA 94016" +314474,27in FHD Monitor,1,149.99,12/05/19 12:53,"943 Elm St, Seattle, WA 98101" +314475,iPhone,1,700,12/02/19 21:16,"920 Cherry St, New York City, NY 10001" +314475,AAA Batteries (4-pack),1,2.99,12/02/19 21:16,"920 Cherry St, New York City, NY 10001" +314476,Lightning Charging Cable,1,14.95,12/07/19 17:17,"819 Jackson St, Dallas, TX 75001" +314477,AA Batteries (4-pack),1,3.84,12/28/19 10:14,"357 4th St, Dallas, TX 75001" +314478,Wired Headphones,1,11.99,12/26/19 20:30,"218 Spruce St, San Francisco, CA 94016" +314479,Lightning Charging Cable,1,14.95,12/24/19 00:41,"473 North St, Los Angeles, CA 90001" +314480,AA Batteries (4-pack),2,3.84,12/22/19 20:15,"929 Wilson St, Dallas, TX 75001" +314481,USB-C Charging Cable,1,11.95,12/05/19 13:50,"242 Willow St, San Francisco, CA 94016" +314482,Google Phone,1,600,12/09/19 21:23,"824 8th St, Atlanta, GA 30301" +314483,27in FHD Monitor,1,149.99,12/18/19 12:15,"383 14th St, Austin, TX 73301" +314484,LG Dryer,1,600.0,12/10/19 21:17,"621 Forest St, Seattle, WA 98101" +314485,AAA Batteries (4-pack),1,2.99,12/30/19 19:12,"914 Park St, Portland, OR 97035" +314486,Apple Airpods Headphones,1,150,12/24/19 16:41,"536 Pine St, Atlanta, GA 30301" +314487,Lightning Charging Cable,1,14.95,12/23/19 19:01,"468 Spruce St, New York City, NY 10001" +314488,Apple Airpods Headphones,1,150,12/01/19 10:28,"2 6th St, Los Angeles, CA 90001" +314489,Google Phone,1,600,12/31/19 15:08,"591 Lake St, Atlanta, GA 30301" +314490,20in Monitor,1,109.99,12/15/19 23:06,"627 Chestnut St, Boston, MA 02215" +314491,AA Batteries (4-pack),1,3.84,12/13/19 10:11,"914 Pine St, Atlanta, GA 30301" +314492,Google Phone,1,600,12/03/19 12:33,"22 Lincoln St, San Francisco, CA 94016" +314492,USB-C Charging Cable,1,11.95,12/03/19 12:33,"22 Lincoln St, San Francisco, CA 94016" +314493,Macbook Pro Laptop,1,1700,12/20/19 09:21,"760 West St, San Francisco, CA 94016" +314494,Wired Headphones,1,11.99,12/17/19 12:11,"378 8th St, Boston, MA 02215" +314495,Wired Headphones,1,11.99,12/05/19 19:21,"436 Hickory St, Dallas, TX 75001" +314496,Lightning Charging Cable,1,14.95,12/04/19 11:09,"467 Jefferson St, Los Angeles, CA 90001" +314497,LG Dryer,1,600.0,12/27/19 14:33,"923 Forest St, Austin, TX 73301" +314498,iPhone,1,700,12/16/19 11:48,"613 Jefferson St, Los Angeles, CA 90001" +314498,Lightning Charging Cable,1,14.95,12/16/19 11:48,"613 Jefferson St, Los Angeles, CA 90001" +314498,Wired Headphones,1,11.99,12/16/19 11:48,"613 Jefferson St, Los Angeles, CA 90001" +314499,AA Batteries (4-pack),3,3.84,12/12/19 05:31,"751 Hickory St, Atlanta, GA 30301" +314500,Bose SoundSport Headphones,1,99.99,12/28/19 13:07,"181 11th St, Portland, OR 97035" +314501,ThinkPad Laptop,1,999.99,12/03/19 09:43,"436 Willow St, Seattle, WA 98101" +314502,Lightning Charging Cable,1,14.95,12/09/19 15:06,"864 14th St, Boston, MA 02215" +314503,AA Batteries (4-pack),1,3.84,12/18/19 20:15,"693 Main St, New York City, NY 10001" +314504,27in 4K Gaming Monitor,1,389.99,12/06/19 17:56,"223 7th St, Boston, MA 02215" +314505,34in Ultrawide Monitor,1,379.99,12/01/19 15:47,"413 Chestnut St, San Francisco, CA 94016" +314506,27in FHD Monitor,1,149.99,12/22/19 09:30,"747 Jackson St, San Francisco, CA 94016" +314507,Wired Headphones,1,11.99,12/13/19 23:39,"719 Washington St, Boston, MA 02215" +314508,Apple Airpods Headphones,1,150,12/04/19 14:51,"54 Lakeview St, Atlanta, GA 30301" +314509,USB-C Charging Cable,1,11.95,12/19/19 16:26,"515 Hill St, San Francisco, CA 94016" +314510,ThinkPad Laptop,1,999.99,12/18/19 17:28,"651 Lakeview St, Austin, TX 73301" +314511,AAA Batteries (4-pack),1,2.99,12/03/19 22:21,"715 Lincoln St, Boston, MA 02215" +314512,Bose SoundSport Headphones,1,99.99,12/08/19 14:55,"978 Highland St, San Francisco, CA 94016" +314513,iPhone,1,700,12/27/19 15:41,"855 9th St, New York City, NY 10001" +314514,AAA Batteries (4-pack),2,2.99,12/09/19 18:42,"468 Highland St, Austin, TX 73301" +314515,Google Phone,1,600,12/18/19 19:23,"145 Highland St, Boston, MA 02215" +314516,AA Batteries (4-pack),1,3.84,12/06/19 16:38,"852 Lake St, New York City, NY 10001" +314517,Apple Airpods Headphones,1,150,12/30/19 10:06,"204 13th St, Boston, MA 02215" +314518,AA Batteries (4-pack),1,3.84,12/09/19 14:02,"871 Cedar St, Boston, MA 02215" +314519,Flatscreen TV,1,300,12/10/19 16:00,"268 7th St, New York City, NY 10001" +314520,27in 4K Gaming Monitor,1,389.99,12/11/19 17:25,"993 Center St, Dallas, TX 75001" +314521,Lightning Charging Cable,1,14.95,12/25/19 13:23,"81 Adams St, Dallas, TX 75001" +314522,Wired Headphones,1,11.99,12/06/19 21:00,"296 Main St, Seattle, WA 98101" +314523,AAA Batteries (4-pack),2,2.99,12/05/19 14:08,"640 8th St, San Francisco, CA 94016" +314524,27in FHD Monitor,1,149.99,12/19/19 15:45,"453 Highland St, San Francisco, CA 94016" +314525,AA Batteries (4-pack),2,3.84,12/14/19 11:30,"151 Jefferson St, San Francisco, CA 94016" +314526,Lightning Charging Cable,1,14.95,12/24/19 23:59,"637 Adams St, Los Angeles, CA 90001" +314527,AA Batteries (4-pack),1,3.84,12/10/19 11:44,"92 Cherry St, Dallas, TX 75001" +314528,AAA Batteries (4-pack),1,2.99,12/19/19 13:27,"37 Main St, Boston, MA 02215" +314529,34in Ultrawide Monitor,1,379.99,12/02/19 20:16,"128 South St, Portland, OR 97035" +314530,AAA Batteries (4-pack),1,2.99,12/06/19 08:18,"801 Highland St, Atlanta, GA 30301" +314531,27in FHD Monitor,1,149.99,12/14/19 19:51,"616 Jackson St, New York City, NY 10001" +314532,Vareebadd Phone,1,400,12/08/19 10:44,"47 Lake St, Portland, OR 97035" +314532,Wired Headphones,1,11.99,12/08/19 10:44,"47 Lake St, Portland, OR 97035" +314533,ThinkPad Laptop,1,999.99,12/01/19 19:06,"15 Lake St, Atlanta, GA 30301" +314534,Lightning Charging Cable,1,14.95,12/07/19 21:06,"13 Jackson St, Dallas, TX 75001" +314535,27in 4K Gaming Monitor,1,389.99,12/21/19 12:27,"505 Lincoln St, Los Angeles, CA 90001" +314536,USB-C Charging Cable,1,11.95,12/14/19 15:53,"770 6th St, Los Angeles, CA 90001" +314537,27in 4K Gaming Monitor,1,389.99,12/22/19 09:23,"160 Sunset St, New York City, NY 10001" +314538,iPhone,1,700,12/15/19 06:52,"654 South St, Austin, TX 73301" +314538,Lightning Charging Cable,1,14.95,12/15/19 06:52,"654 South St, Austin, TX 73301" +314539,iPhone,1,700,12/31/19 09:00,"449 Lakeview St, Portland, OR 97035" +314540,AA Batteries (4-pack),2,3.84,12/20/19 16:36,"633 Madison St, Atlanta, GA 30301" +314541,Flatscreen TV,1,300,12/01/19 18:17,"795 9th St, Seattle, WA 98101" +314542,AAA Batteries (4-pack),1,2.99,12/10/19 11:26,"875 8th St, Boston, MA 02215" +314543,Apple Airpods Headphones,1,150,12/09/19 12:11,"479 8th St, Atlanta, GA 30301" +314544,Lightning Charging Cable,1,14.95,12/26/19 10:18,"575 Maple St, Los Angeles, CA 90001" +314545,Lightning Charging Cable,1,14.95,12/15/19 00:00,"573 Wilson St, New York City, NY 10001" +314546,Flatscreen TV,1,300,12/23/19 12:17,"843 Ridge St, Los Angeles, CA 90001" +314547,AA Batteries (4-pack),1,3.84,12/17/19 16:27,"506 1st St, Los Angeles, CA 90001" +314548,27in FHD Monitor,1,149.99,12/29/19 19:49,"105 Lakeview St, Boston, MA 02215" +314549,Macbook Pro Laptop,1,1700,12/16/19 20:54,"893 4th St, Los Angeles, CA 90001" +314550,Lightning Charging Cable,1,14.95,12/19/19 09:38,"404 Washington St, Portland, OR 97035" +314551,Lightning Charging Cable,1,14.95,12/03/19 19:30,"725 Cherry St, Austin, TX 73301" +314552,20in Monitor,1,109.99,12/09/19 21:25,"531 Sunset St, Austin, TX 73301" +314553,iPhone,1,700,12/21/19 12:03,"969 12th St, San Francisco, CA 94016" +314554,AA Batteries (4-pack),1,3.84,12/07/19 07:49,"755 Hickory St, San Francisco, CA 94016" +314555,AAA Batteries (4-pack),1,2.99,12/24/19 14:42,"551 West St, Austin, TX 73301" +314556,27in 4K Gaming Monitor,1,389.99,12/27/19 18:31,"189 7th St, San Francisco, CA 94016" +314557,AAA Batteries (4-pack),1,2.99,12/01/19 11:12,"284 River St, Boston, MA 02215" +314558,ThinkPad Laptop,1,999.99,12/23/19 18:40,"111 Chestnut St, Atlanta, GA 30301" +314559,27in 4K Gaming Monitor,1,389.99,12/18/19 13:48,"222 6th St, Atlanta, GA 30301" +314560,20in Monitor,1,109.99,12/30/19 19:21,"191 South St, Seattle, WA 98101" +314561,Apple Airpods Headphones,1,150,12/31/19 00:01,"812 Johnson St, San Francisco, CA 94016" +314562,Google Phone,1,600,12/18/19 12:47,"500 7th St, Seattle, WA 98101" +314563,Apple Airpods Headphones,1,150,12/11/19 13:58,"581 Johnson St, New York City, NY 10001" +314564,AA Batteries (4-pack),1,3.84,12/29/19 20:32,"764 North St, Boston, MA 02215" +314565,AA Batteries (4-pack),3,3.84,12/19/19 20:27,"461 Adams St, New York City, NY 10001" +314566,Apple Airpods Headphones,1,150,12/05/19 12:56,"765 10th St, Los Angeles, CA 90001" +314567,Apple Airpods Headphones,1,150,12/22/19 04:48,"658 Lake St, Los Angeles, CA 90001" +314568,Bose SoundSport Headphones,1,99.99,12/21/19 10:55,"128 Main St, San Francisco, CA 94016" +314569,Wired Headphones,1,11.99,12/23/19 09:46,"387 Washington St, San Francisco, CA 94016" +314570,Apple Airpods Headphones,1,150,12/15/19 13:27,"501 North St, San Francisco, CA 94016" +314571,AAA Batteries (4-pack),2,2.99,12/26/19 03:46,"234 River St, Boston, MA 02215" +314572,AA Batteries (4-pack),1,3.84,12/11/19 07:17,"54 Willow St, Los Angeles, CA 90001" +314573,Macbook Pro Laptop,1,1700,12/31/19 01:06,"251 Jefferson St, Austin, TX 73301" +314574,Flatscreen TV,1,300,12/04/19 19:20,"105 4th St, Austin, TX 73301" +314575,Lightning Charging Cable,1,14.95,12/13/19 06:47,"6 Park St, Seattle, WA 98101" +314576,iPhone,1,700,12/05/19 22:08,"72 Lincoln St, San Francisco, CA 94016" +314577,Wired Headphones,1,11.99,12/13/19 14:22,"438 Walnut St, Austin, TX 73301" +314578,20in Monitor,1,109.99,12/26/19 15:25,"519 Hill St, Los Angeles, CA 90001" +314579,Lightning Charging Cable,1,14.95,12/07/19 20:31,"866 Sunset St, Dallas, TX 75001" +314580,Lightning Charging Cable,1,14.95,12/07/19 19:39,"921 6th St, Los Angeles, CA 90001" +314581,Apple Airpods Headphones,1,150,12/05/19 11:39,"286 Walnut St, New York City, NY 10001" +314582,Google Phone,1,600,12/11/19 11:11,"441 Lakeview St, Los Angeles, CA 90001" +314582,Bose SoundSport Headphones,1,99.99,12/11/19 11:11,"441 Lakeview St, Los Angeles, CA 90001" +314583,iPhone,1,700,12/03/19 16:04,"908 Forest St, Austin, TX 73301" +314583,Apple Airpods Headphones,1,150,12/03/19 16:04,"908 Forest St, Austin, TX 73301" +314584,AAA Batteries (4-pack),1,2.99,12/31/19 17:30,"845 12th St, Boston, MA 02215" +314585,Flatscreen TV,1,300,12/10/19 20:57,"338 Ridge St, Portland, OR 97035" +314586,USB-C Charging Cable,1,11.95,12/04/19 11:42,"233 11th St, New York City, NY 10001" +314587,Apple Airpods Headphones,1,150,12/13/19 13:25,"449 Johnson St, Austin, TX 73301" +314588,Flatscreen TV,1,300,12/16/19 11:01,"368 North St, Los Angeles, CA 90001" +314589,AA Batteries (4-pack),1,3.84,12/06/19 13:22,"188 West St, Los Angeles, CA 90001" +314590,Flatscreen TV,1,300,12/09/19 12:35,"382 Johnson St, Seattle, WA 98101" +314591,Vareebadd Phone,1,400,12/09/19 12:35,"263 Dogwood St, Dallas, TX 75001" +314592,27in FHD Monitor,1,149.99,12/24/19 00:48,"312 5th St, San Francisco, CA 94016" +314593,Lightning Charging Cable,1,14.95,12/07/19 09:33,"444 Washington St, Portland, OR 97035" +314594,AAA Batteries (4-pack),2,2.99,12/23/19 03:17,"549 Spruce St, New York City, NY 10001" +314595,27in 4K Gaming Monitor,1,389.99,12/22/19 18:11,"799 Pine St, San Francisco, CA 94016" +314596,27in FHD Monitor,1,149.99,12/30/19 17:29,"337 Adams St, Los Angeles, CA 90001" +314597,AAA Batteries (4-pack),3,2.99,12/14/19 10:45,"744 13th St, Dallas, TX 75001" +314598,USB-C Charging Cable,1,11.95,12/29/19 00:57,"786 12th St, Boston, MA 02215" +314599,Flatscreen TV,1,300,12/22/19 19:27,"345 West St, Atlanta, GA 30301" +314600,34in Ultrawide Monitor,1,379.99,12/08/19 17:52,"386 Cedar St, Austin, TX 73301" +314600,USB-C Charging Cable,1,11.95,12/08/19 17:52,"386 Cedar St, Austin, TX 73301" +314601,Bose SoundSport Headphones,1,99.99,12/05/19 13:51,"319 North St, Atlanta, GA 30301" +314602,27in 4K Gaming Monitor,1,389.99,12/09/19 20:24,"303 Willow St, Los Angeles, CA 90001" +314603,27in FHD Monitor,1,149.99,12/08/19 23:00,"775 Walnut St, San Francisco, CA 94016" +314604,Google Phone,1,600,12/22/19 23:45,"388 Main St, Dallas, TX 75001" +314605,USB-C Charging Cable,1,11.95,12/02/19 10:36,"503 Willow St, New York City, NY 10001" +314606,Wired Headphones,1,11.99,12/25/19 17:03,"336 Forest St, Boston, MA 02215" +314607,AA Batteries (4-pack),1,3.84,12/12/19 18:03,"815 Jackson St, San Francisco, CA 94016" +314608,Bose SoundSport Headphones,1,99.99,12/13/19 01:28,"102 Cedar St, Los Angeles, CA 90001" +314609,iPhone,1,700,12/20/19 12:20,"200 North St, San Francisco, CA 94016" +314610,AA Batteries (4-pack),1,3.84,12/05/19 09:22,"860 Lake St, Boston, MA 02215" +314611,20in Monitor,1,109.99,12/08/19 23:18,"613 Lake St, New York City, NY 10001" +314612,27in 4K Gaming Monitor,1,389.99,12/10/19 10:54,"963 2nd St, Los Angeles, CA 90001" +314613,USB-C Charging Cable,1,11.95,12/20/19 21:41,"498 13th St, Seattle, WA 98101" +314614,AAA Batteries (4-pack),2,2.99,12/19/19 19:44,"673 9th St, San Francisco, CA 94016" +314615,AA Batteries (4-pack),3,3.84,12/14/19 19:12,"237 Hickory St, Portland, OR 97035" +314616,Wired Headphones,1,11.99,12/17/19 15:12,"608 6th St, New York City, NY 10001" +314617,Lightning Charging Cable,1,14.95,12/04/19 01:30,"96 Dogwood St, San Francisco, CA 94016" +314618,AAA Batteries (4-pack),1,2.99,12/23/19 19:13,"473 Chestnut St, Dallas, TX 75001" +314619,AAA Batteries (4-pack),1,2.99,12/25/19 14:38,"539 Lakeview St, Atlanta, GA 30301" +314620,Flatscreen TV,1,300,12/14/19 13:08,"461 Lake St, Dallas, TX 75001" +314621,Lightning Charging Cable,1,14.95,12/17/19 21:17,"186 12th St, Portland, OR 97035" +314622,34in Ultrawide Monitor,1,379.99,12/13/19 20:39,"118 14th St, Dallas, TX 75001" +314623,USB-C Charging Cable,1,11.95,12/14/19 18:00,"432 Johnson St, Boston, MA 02215" +314624,Wired Headphones,1,11.99,12/27/19 13:50,"756 Maple St, Los Angeles, CA 90001" +314625,LG Washing Machine,1,600.0,12/16/19 18:29,"48 2nd St, San Francisco, CA 94016" +314626,AAA Batteries (4-pack),2,2.99,12/15/19 19:47,"687 Forest St, Dallas, TX 75001" +314627,LG Washing Machine,1,600.0,12/20/19 12:19,"963 Lake St, San Francisco, CA 94016" +314628,Apple Airpods Headphones,1,150,12/31/19 20:42,"293 Madison St, Los Angeles, CA 90001" +314629,Apple Airpods Headphones,1,150,12/21/19 13:10,"459 Cherry St, San Francisco, CA 94016" +314630,USB-C Charging Cable,1,11.95,12/12/19 22:47,"268 Elm St, New York City, NY 10001" +314631,iPhone,1,700,12/15/19 20:58,"600 Walnut St, San Francisco, CA 94016" +314632,Bose SoundSport Headphones,1,99.99,12/14/19 14:22,"464 Chestnut St, New York City, NY 10001" +314633,20in Monitor,1,109.99,12/08/19 10:41,"902 12th St, San Francisco, CA 94016" +314634,Apple Airpods Headphones,1,150,12/24/19 07:50,"708 Pine St, Boston, MA 02215" +314635,AAA Batteries (4-pack),2,2.99,12/20/19 08:32,"418 West St, Seattle, WA 98101" +314636,USB-C Charging Cable,1,11.95,12/16/19 15:31,"298 Pine St, Austin, TX 73301" +314637,Wired Headphones,1,11.99,12/24/19 13:11,"654 Meadow St, New York City, NY 10001" +314638,AA Batteries (4-pack),1,3.84,12/25/19 19:08,"550 Lincoln St, New York City, NY 10001" +314639,AA Batteries (4-pack),1,3.84,12/10/19 15:20,"905 Ridge St, New York City, NY 10001" +314640,iPhone,1,700,12/17/19 15:35,"444 Pine St, Portland, OR 97035" +314640,Lightning Charging Cable,1,14.95,12/17/19 15:35,"444 Pine St, Portland, OR 97035" +314641,AA Batteries (4-pack),2,3.84,12/26/19 21:23,"49 2nd St, Portland, ME 04101" +314642,ThinkPad Laptop,1,999.99,12/01/19 11:47,"687 Ridge St, Dallas, TX 75001" +314643,USB-C Charging Cable,1,11.95,12/25/19 21:52,"753 Wilson St, Portland, ME 04101" +314644,AAA Batteries (4-pack),2,2.99,12/02/19 12:07,"998 Jefferson St, San Francisco, CA 94016" +314645,AA Batteries (4-pack),1,3.84,12/01/19 08:55,"988 West St, San Francisco, CA 94016" +314646,Apple Airpods Headphones,1,150,12/19/19 10:41,"637 Lakeview St, New York City, NY 10001" +314647,Lightning Charging Cable,1,14.95,12/29/19 22:25,"430 8th St, New York City, NY 10001" +314648,Apple Airpods Headphones,1,150,12/13/19 20:04,"756 Park St, Los Angeles, CA 90001" +314649,LG Dryer,1,600.0,12/23/19 11:04,"685 Jefferson St, Los Angeles, CA 90001" +314650,Bose SoundSport Headphones,1,99.99,12/07/19 17:55,"185 14th St, Los Angeles, CA 90001" +314651,AA Batteries (4-pack),1,3.84,12/01/19 13:16,"715 Maple St, New York City, NY 10001" +314652,AAA Batteries (4-pack),1,2.99,12/23/19 18:07,"562 Willow St, San Francisco, CA 94016" +314653,20in Monitor,1,109.99,12/15/19 16:28,"319 Madison St, Los Angeles, CA 90001" +314654,AAA Batteries (4-pack),1,2.99,12/26/19 09:53,"590 Maple St, New York City, NY 10001" +314655,Wired Headphones,1,11.99,12/26/19 07:11,"392 North St, Boston, MA 02215" +314656,Apple Airpods Headphones,1,150,12/26/19 12:57,"46 Hill St, Boston, MA 02215" +314657,USB-C Charging Cable,1,11.95,12/15/19 11:12,"744 North St, Dallas, TX 75001" +314658,AAA Batteries (4-pack),1,2.99,12/26/19 14:50,"726 Lincoln St, Dallas, TX 75001" +314659,ThinkPad Laptop,1,999.99,12/09/19 06:26,"287 4th St, Los Angeles, CA 90001" +314660,Lightning Charging Cable,1,14.95,12/09/19 17:55,"714 Park St, San Francisco, CA 94016" +314661,Lightning Charging Cable,1,14.95,12/07/19 21:07,"991 Highland St, New York City, NY 10001" +314662,Macbook Pro Laptop,1,1700,12/10/19 17:39,"322 Johnson St, Los Angeles, CA 90001" +314663,AA Batteries (4-pack),1,3.84,12/12/19 13:47,"949 Ridge St, Dallas, TX 75001" +314664,27in 4K Gaming Monitor,1,389.99,12/14/19 13:38,"147 West St, Seattle, WA 98101" +314665,Flatscreen TV,1,300,12/05/19 21:29,"761 Jackson St, San Francisco, CA 94016" +314666,AAA Batteries (4-pack),1,2.99,12/03/19 02:48,"790 Sunset St, Boston, MA 02215" +314667,Bose SoundSport Headphones,1,99.99,12/17/19 23:45,"172 Elm St, New York City, NY 10001" +314668,iPhone,1,700,12/22/19 17:13,"984 12th St, Atlanta, GA 30301" +314669,AA Batteries (4-pack),1,3.84,12/29/19 23:45,"47 Lake St, San Francisco, CA 94016" +,,,,, +314670,Lightning Charging Cable,1,14.95,12/10/19 16:31,"468 Main St, Atlanta, GA 30301" +314671,Wired Headphones,1,11.99,12/30/19 11:37,"292 Highland St, Dallas, TX 75001" +314672,AA Batteries (4-pack),1,3.84,12/11/19 20:53,"602 Church St, Portland, OR 97035" +314673,USB-C Charging Cable,1,11.95,12/23/19 02:40,"468 7th St, San Francisco, CA 94016" +314674,Lightning Charging Cable,1,14.95,12/22/19 22:24,"151 Hickory St, Portland, ME 04101" +314675,Lightning Charging Cable,1,14.95,12/04/19 20:03,"305 Chestnut St, New York City, NY 10001" +314676,AAA Batteries (4-pack),1,2.99,12/10/19 20:14,"740 Johnson St, San Francisco, CA 94016" +314677,USB-C Charging Cable,1,11.95,12/30/19 12:12,"439 7th St, Dallas, TX 75001" +314678,Google Phone,1,600,12/13/19 16:01,"560 Adams St, Los Angeles, CA 90001" +314678,Wired Headphones,1,11.99,12/13/19 16:01,"560 Adams St, Los Angeles, CA 90001" +314679,27in FHD Monitor,1,149.99,12/23/19 21:20,"852 2nd St, San Francisco, CA 94016" +314680,AA Batteries (4-pack),2,3.84,12/23/19 18:07,"488 North St, Dallas, TX 75001" +314681,Bose SoundSport Headphones,1,99.99,12/29/19 18:54,"646 13th St, Los Angeles, CA 90001" +314682,Apple Airpods Headphones,1,150,12/24/19 12:02,"715 7th St, Dallas, TX 75001" +314683,Bose SoundSport Headphones,1,99.99,12/27/19 21:37,"924 Spruce St, New York City, NY 10001" +314684,Google Phone,1,600,12/06/19 14:52,"53 Lakeview St, New York City, NY 10001" +314685,Apple Airpods Headphones,1,150,12/25/19 23:31,"568 Hill St, San Francisco, CA 94016" +314686,AA Batteries (4-pack),1,3.84,12/28/19 21:11,"343 Lake St, Seattle, WA 98101" +314687,AAA Batteries (4-pack),1,2.99,12/26/19 17:06,"890 14th St, San Francisco, CA 94016" +314688,AA Batteries (4-pack),1,3.84,12/05/19 13:42,"321 6th St, New York City, NY 10001" +314689,AA Batteries (4-pack),1,3.84,12/01/19 10:58,"813 Forest St, Los Angeles, CA 90001" +314690,Wired Headphones,1,11.99,12/18/19 13:57,"12 Ridge St, Atlanta, GA 30301" +314691,Apple Airpods Headphones,1,150,12/06/19 06:13,"566 Wilson St, New York City, NY 10001" +314692,AA Batteries (4-pack),3,3.84,12/23/19 11:16,"726 Spruce St, Atlanta, GA 30301" +314693,34in Ultrawide Monitor,1,379.99,12/12/19 14:18,"715 Jackson St, Atlanta, GA 30301" +314694,Wired Headphones,1,11.99,12/05/19 09:44,"454 Cedar St, San Francisco, CA 94016" +314695,AAA Batteries (4-pack),2,2.99,12/30/19 14:06,"746 Highland St, San Francisco, CA 94016" +314696,Wired Headphones,1,11.99,12/11/19 13:49,"942 Park St, New York City, NY 10001" +314697,AAA Batteries (4-pack),1,2.99,12/15/19 10:24,"259 Cedar St, San Francisco, CA 94016" +314698,Bose SoundSport Headphones,1,99.99,12/11/19 19:37,"659 Chestnut St, Atlanta, GA 30301" +314699,ThinkPad Laptop,1,999.99,12/31/19 18:58,"399 Jefferson St, Los Angeles, CA 90001" +314700,Flatscreen TV,1,300,12/09/19 18:41,"206 Dogwood St, Los Angeles, CA 90001" +314701,AA Batteries (4-pack),1,3.84,12/18/19 11:39,"940 8th St, San Francisco, CA 94016" +314702,34in Ultrawide Monitor,1,379.99,12/20/19 11:10,"593 Maple St, Boston, MA 02215" +314703,ThinkPad Laptop,1,999.99,12/05/19 12:16,"46 Wilson St, San Francisco, CA 94016" +314704,Apple Airpods Headphones,1,150,12/11/19 10:44,"40 9th St, Boston, MA 02215" +314705,AAA Batteries (4-pack),1,2.99,12/10/19 10:08,"947 Lakeview St, Atlanta, GA 30301" +314706,AA Batteries (4-pack),1,3.84,12/19/19 23:07,"511 2nd St, San Francisco, CA 94016" +314707,Wired Headphones,1,11.99,12/10/19 22:46,"820 Willow St, Austin, TX 73301" +314708,Vareebadd Phone,1,400,12/27/19 14:38,"270 Highland St, Seattle, WA 98101" +314708,USB-C Charging Cable,1,11.95,12/27/19 14:38,"270 Highland St, Seattle, WA 98101" +314709,Lightning Charging Cable,1,14.95,12/12/19 10:40,"995 Cherry St, Seattle, WA 98101" +314710,Macbook Pro Laptop,1,1700,12/17/19 12:47,"804 Lincoln St, Boston, MA 02215" +314711,Bose SoundSport Headphones,1,99.99,12/18/19 17:58,"45 Hickory St, San Francisco, CA 94016" +314712,Bose SoundSport Headphones,1,99.99,12/03/19 23:09,"5 Madison St, Atlanta, GA 30301" +314713,Google Phone,1,600,12/23/19 16:01,"994 Chestnut St, Portland, ME 04101" +314713,USB-C Charging Cable,1,11.95,12/23/19 16:01,"994 Chestnut St, Portland, ME 04101" +314714,Vareebadd Phone,1,400,12/05/19 18:32,"895 Jackson St, San Francisco, CA 94016" +314715,USB-C Charging Cable,1,11.95,12/15/19 10:02,"350 Meadow St, Atlanta, GA 30301" +314716,27in 4K Gaming Monitor,1,389.99,12/30/19 22:02,"416 Lincoln St, San Francisco, CA 94016" +314717,AAA Batteries (4-pack),2,2.99,12/31/19 18:01,"155 2nd St, San Francisco, CA 94016" +314718,27in FHD Monitor,1,149.99,12/21/19 20:08,"560 13th St, Los Angeles, CA 90001" +314719,USB-C Charging Cable,1,11.95,12/19/19 10:27,"850 Main St, San Francisco, CA 94016" +314720,AAA Batteries (4-pack),1,2.99,12/08/19 10:10,"745 6th St, Boston, MA 02215" +314721,AAA Batteries (4-pack),1,2.99,12/10/19 00:01,"216 Johnson St, Seattle, WA 98101" +314722,Bose SoundSport Headphones,1,99.99,12/28/19 12:11,"561 Chestnut St, New York City, NY 10001" +314723,AAA Batteries (4-pack),1,2.99,12/07/19 18:49,"460 Meadow St, Dallas, TX 75001" +314724,USB-C Charging Cable,1,11.95,12/08/19 14:30,"147 Hill St, Seattle, WA 98101" +314725,Apple Airpods Headphones,1,150,12/12/19 17:35,"351 5th St, San Francisco, CA 94016" +314726,AAA Batteries (4-pack),2,2.99,12/05/19 12:14,"217 Adams St, San Francisco, CA 94016" +314727,USB-C Charging Cable,1,11.95,12/02/19 15:30,"973 Jackson St, Boston, MA 02215" +314728,34in Ultrawide Monitor,1,379.99,12/11/19 01:07,"143 Adams St, Atlanta, GA 30301" +314729,iPhone,1,700,12/05/19 11:21,"586 Elm St, Portland, OR 97035" +314730,Lightning Charging Cable,2,14.95,12/25/19 18:02,"748 Dogwood St, New York City, NY 10001" +314731,Wired Headphones,1,11.99,12/24/19 10:12,"602 Madison St, Dallas, TX 75001" +314732,Wired Headphones,1,11.99,12/20/19 12:49,"865 1st St, Boston, MA 02215" +314733,Bose SoundSport Headphones,1,99.99,12/21/19 16:27,"793 Lake St, Austin, TX 73301" +314734,Google Phone,1,600,12/05/19 10:44,"212 Park St, San Francisco, CA 94016" +314735,USB-C Charging Cable,1,11.95,12/15/19 15:54,"517 Lake St, San Francisco, CA 94016" +314736,AAA Batteries (4-pack),2,2.99,12/13/19 01:39,"125 Adams St, New York City, NY 10001" +314737,USB-C Charging Cable,1,11.95,12/24/19 16:05,"96 Madison St, Portland, OR 97035" +314738,AAA Batteries (4-pack),1,2.99,12/30/19 18:48,"434 Elm St, Atlanta, GA 30301" +314739,Apple Airpods Headphones,1,150,12/12/19 06:50,"545 Wilson St, Boston, MA 02215" +314740,USB-C Charging Cable,1,11.95,12/28/19 21:51,"722 9th St, Seattle, WA 98101" +314741,AA Batteries (4-pack),1,3.84,12/22/19 12:13,"544 2nd St, Atlanta, GA 30301" +314742,USB-C Charging Cable,1,11.95,12/20/19 22:52,"274 Adams St, Dallas, TX 75001" +314743,Bose SoundSport Headphones,1,99.99,12/12/19 17:29,"627 Hill St, Los Angeles, CA 90001" +314744,Lightning Charging Cable,1,14.95,12/31/19 16:33,"252 Willow St, San Francisco, CA 94016" +314745,Bose SoundSport Headphones,1,99.99,12/17/19 21:12,"521 8th St, Los Angeles, CA 90001" +314746,AAA Batteries (4-pack),2,2.99,12/24/19 22:38,"842 Highland St, Dallas, TX 75001" +314747,AA Batteries (4-pack),2,3.84,12/21/19 08:20,"657 Maple St, San Francisco, CA 94016" +314748,Apple Airpods Headphones,1,150,12/30/19 10:31,"144 Washington St, Los Angeles, CA 90001" +314749,AA Batteries (4-pack),1,3.84,12/09/19 10:04,"997 Willow St, Austin, TX 73301" +314750,Apple Airpods Headphones,1,150,12/09/19 17:26,"536 Forest St, Austin, TX 73301" +314751,AAA Batteries (4-pack),1,2.99,12/29/19 13:05,"474 Madison St, New York City, NY 10001" +314752,27in 4K Gaming Monitor,2,389.99,12/31/19 12:18,"985 12th St, Portland, ME 04101" +314753,iPhone,1,700,12/15/19 16:47,"356 Willow St, Los Angeles, CA 90001" +314754,Bose SoundSport Headphones,1,99.99,12/24/19 14:27,"121 Jackson St, Boston, MA 02215" +314755,27in 4K Gaming Monitor,1,389.99,12/14/19 11:29,"944 Maple St, San Francisco, CA 94016" +314756,ThinkPad Laptop,1,999.99,12/25/19 10:56,"703 South St, Atlanta, GA 30301" +314757,27in FHD Monitor,1,149.99,12/24/19 18:14,"909 Pine St, New York City, NY 10001" +314758,Flatscreen TV,1,300,12/31/19 20:27,"586 Lincoln St, Seattle, WA 98101" +314759,AAA Batteries (4-pack),1,2.99,12/28/19 17:38,"172 Maple St, Los Angeles, CA 90001" +314760,Lightning Charging Cable,1,14.95,12/25/19 10:51,"248 Forest St, Seattle, WA 98101" +314761,Wired Headphones,1,11.99,12/05/19 10:57,"700 River St, Boston, MA 02215" +314762,Apple Airpods Headphones,1,150,12/26/19 07:31,"126 Dogwood St, San Francisco, CA 94016" +314763,AAA Batteries (4-pack),1,2.99,12/24/19 14:51,"501 Dogwood St, Dallas, TX 75001" +314764,Macbook Pro Laptop,1,1700,12/09/19 15:15,"120 Meadow St, Los Angeles, CA 90001" +314765,AA Batteries (4-pack),2,3.84,12/07/19 17:15,"553 Spruce St, Atlanta, GA 30301" +314766,Wired Headphones,1,11.99,12/24/19 10:31,"819 Maple St, New York City, NY 10001" +314767,20in Monitor,1,109.99,12/06/19 22:15,"322 5th St, Portland, ME 04101" +314768,Lightning Charging Cable,1,14.95,12/25/19 15:25,"577 Johnson St, Seattle, WA 98101" +314769,Wired Headphones,1,11.99,12/13/19 19:27,"189 Hill St, San Francisco, CA 94016" +314770,iPhone,1,700,12/14/19 20:33,"84 Cherry St, Atlanta, GA 30301" +314770,Apple Airpods Headphones,1,150,12/14/19 20:33,"84 Cherry St, Atlanta, GA 30301" +314771,Apple Airpods Headphones,1,150,12/31/19 16:51,"779 2nd St, Portland, OR 97035" +314772,Google Phone,1,600,12/29/19 09:11,"922 8th St, Portland, OR 97035" +314772,USB-C Charging Cable,1,11.95,12/29/19 09:11,"922 8th St, Portland, OR 97035" +314772,Wired Headphones,1,11.99,12/29/19 09:11,"922 8th St, Portland, OR 97035" +314773,iPhone,1,700,12/30/19 21:11,"593 Wilson St, Seattle, WA 98101" +314773,Wired Headphones,1,11.99,12/30/19 21:11,"593 Wilson St, Seattle, WA 98101" +314774,Bose SoundSport Headphones,1,99.99,12/31/19 14:19,"88 Walnut St, Atlanta, GA 30301" +314775,USB-C Charging Cable,1,11.95,12/30/19 11:53,"442 Forest St, San Francisco, CA 94016" +314776,Vareebadd Phone,1,400,12/24/19 13:21,"339 9th St, Seattle, WA 98101" +314777,20in Monitor,1,109.99,12/12/19 14:47,"190 4th St, San Francisco, CA 94016" +314778,Lightning Charging Cable,1,14.95,12/06/19 22:37,"620 2nd St, Boston, MA 02215" +314779,27in FHD Monitor,1,149.99,12/08/19 07:53,"293 Highland St, Boston, MA 02215" +314780,Google Phone,1,600,12/26/19 22:24,"379 North St, Los Angeles, CA 90001" +314781,Lightning Charging Cable,1,14.95,12/18/19 14:45,"121 Adams St, San Francisco, CA 94016" +314782,34in Ultrawide Monitor,1,379.99,12/26/19 18:03,"481 11th St, Dallas, TX 75001" +314782,Wired Headphones,1,11.99,12/26/19 18:03,"481 11th St, Dallas, TX 75001" +314783,iPhone,1,700,12/27/19 22:27,"682 Lakeview St, San Francisco, CA 94016" +314784,Flatscreen TV,1,300,12/01/19 17:49,"294 Highland St, Atlanta, GA 30301" +314785,Lightning Charging Cable,1,14.95,12/28/19 12:26,"506 12th St, Portland, OR 97035" +314786,ThinkPad Laptop,1,999.99,12/17/19 18:48,"525 2nd St, Austin, TX 73301" +314787,27in 4K Gaming Monitor,1,389.99,12/02/19 07:14,"487 Church St, Atlanta, GA 30301" +314788,Flatscreen TV,1,300,12/04/19 14:28,"30 Highland St, Los Angeles, CA 90001" +314789,Bose SoundSport Headphones,1,99.99,12/07/19 16:25,"686 Park St, San Francisco, CA 94016" +314790,34in Ultrawide Monitor,1,379.99,12/24/19 10:38,"323 Hill St, Boston, MA 02215" +314791,AA Batteries (4-pack),1,3.84,12/30/19 10:43,"65 13th St, Boston, MA 02215" +314792,Bose SoundSport Headphones,1,99.99,12/08/19 16:02,"746 Hill St, Los Angeles, CA 90001" +314793,Bose SoundSport Headphones,1,99.99,12/10/19 12:53,"592 13th St, Seattle, WA 98101" +314794,USB-C Charging Cable,1,11.95,12/03/19 03:21,"509 4th St, New York City, NY 10001" +314795,Apple Airpods Headphones,1,150,12/01/19 17:36,"644 Lakeview St, New York City, NY 10001" +314796,Wired Headphones,1,11.99,12/11/19 09:57,"238 Jackson St, San Francisco, CA 94016" +314797,Bose SoundSport Headphones,1,99.99,12/28/19 01:35,"873 Forest St, Boston, MA 02215" +314798,Vareebadd Phone,1,400,12/19/19 09:32,"867 11th St, Dallas, TX 75001" +314799,AAA Batteries (4-pack),3,2.99,12/20/19 17:32,"509 2nd St, Seattle, WA 98101" +314800,AAA Batteries (4-pack),1,2.99,12/10/19 09:48,"748 Dogwood St, Boston, MA 02215" +314801,Lightning Charging Cable,1,14.95,12/30/19 08:30,"504 1st St, Dallas, TX 75001" +314802,iPhone,1,700,12/23/19 15:59,"885 Cedar St, San Francisco, CA 94016" +314803,27in 4K Gaming Monitor,1,389.99,12/09/19 18:38,"249 12th St, San Francisco, CA 94016" +314804,34in Ultrawide Monitor,1,379.99,12/24/19 12:06,"589 1st St, Boston, MA 02215" +314805,AAA Batteries (4-pack),1,2.99,12/29/19 13:42,"436 North St, Boston, MA 02215" +314806,AAA Batteries (4-pack),1,2.99,12/04/19 20:06,"208 Madison St, Atlanta, GA 30301" +314807,Lightning Charging Cable,1,14.95,12/01/19 15:11,"898 Willow St, Seattle, WA 98101" +314808,27in FHD Monitor,1,149.99,12/05/19 19:35,"418 11th St, Boston, MA 02215" +314809,Flatscreen TV,1,300,12/16/19 12:28,"523 Johnson St, Los Angeles, CA 90001" +314810,Wired Headphones,1,11.99,12/24/19 18:08,"113 8th St, Atlanta, GA 30301" +314811,AAA Batteries (4-pack),1,2.99,12/25/19 09:43,"27 Madison St, New York City, NY 10001" +314812,27in 4K Gaming Monitor,1,389.99,12/13/19 14:52,"937 Ridge St, New York City, NY 10001" +314813,USB-C Charging Cable,1,11.95,12/03/19 18:55,"243 West St, Boston, MA 02215" +314814,Lightning Charging Cable,1,14.95,12/10/19 11:38,"100 4th St, Boston, MA 02215" +314815,USB-C Charging Cable,2,11.95,12/03/19 11:17,"993 Cedar St, Seattle, WA 98101" +314816,AA Batteries (4-pack),1,3.84,12/05/19 12:27,"195 North St, Seattle, WA 98101" +314817,Lightning Charging Cable,1,14.95,12/25/19 12:12,"243 Lincoln St, Seattle, WA 98101" +314818,Lightning Charging Cable,1,14.95,12/14/19 14:23,"131 Maple St, New York City, NY 10001" +314819,Bose SoundSport Headphones,1,99.99,12/13/19 19:59,"433 Meadow St, Boston, MA 02215" +314819,USB-C Charging Cable,1,11.95,12/13/19 19:59,"433 Meadow St, Boston, MA 02215" +314820,Lightning Charging Cable,1,14.95,12/02/19 18:19,"850 Lincoln St, Portland, OR 97035" +314821,USB-C Charging Cable,1,11.95,12/07/19 18:07,"221 Pine St, Los Angeles, CA 90001" +314822,27in 4K Gaming Monitor,1,389.99,12/01/19 23:45,"836 Lincoln St, Los Angeles, CA 90001" +314823,Lightning Charging Cable,2,14.95,12/17/19 17:56,"142 Maple St, Boston, MA 02215" +314824,AAA Batteries (4-pack),1,2.99,12/06/19 09:42,"733 Highland St, New York City, NY 10001" +314825,USB-C Charging Cable,2,11.95,12/24/19 21:22,"493 Cedar St, Austin, TX 73301" +314826,AA Batteries (4-pack),1,3.84,12/10/19 21:51,"543 Walnut St, Atlanta, GA 30301" +314827,Lightning Charging Cable,1,14.95,12/24/19 17:19,"675 2nd St, San Francisco, CA 94016" +314828,27in 4K Gaming Monitor,1,389.99,12/27/19 11:01,"340 Hickory St, Austin, TX 73301" +314829,Flatscreen TV,1,300,12/19/19 20:09,"95 Ridge St, Dallas, TX 75001" +314830,USB-C Charging Cable,1,11.95,12/11/19 05:13,"416 Spruce St, Portland, OR 97035" +314831,Macbook Pro Laptop,1,1700,12/26/19 19:37,"403 2nd St, Portland, OR 97035" +314832,Wired Headphones,1,11.99,12/23/19 05:01,"362 Willow St, San Francisco, CA 94016" +314833,Lightning Charging Cable,1,14.95,12/11/19 10:38,"49 11th St, New York City, NY 10001" +314834,AA Batteries (4-pack),1,3.84,12/15/19 19:49,"393 13th St, Los Angeles, CA 90001" +314835,AA Batteries (4-pack),1,3.84,12/14/19 22:20,"824 7th St, San Francisco, CA 94016" +314836,AA Batteries (4-pack),1,3.84,12/24/19 20:13,"958 Jackson St, San Francisco, CA 94016" +314837,27in FHD Monitor,1,149.99,12/05/19 21:37,"414 Lakeview St, Seattle, WA 98101" +314838,Google Phone,1,600,12/16/19 08:11,"829 Lake St, Los Angeles, CA 90001" +314839,27in FHD Monitor,1,149.99,12/17/19 12:12,"922 11th St, Boston, MA 02215" +314840,Apple Airpods Headphones,1,150,12/24/19 16:40,"278 Forest St, Seattle, WA 98101" +314841,Wired Headphones,1,11.99,12/08/19 12:24,"946 West St, Boston, MA 02215" +314842,Bose SoundSport Headphones,1,99.99,12/16/19 13:18,"744 Pine St, San Francisco, CA 94016" +314843,USB-C Charging Cable,2,11.95,12/15/19 20:22,"973 13th St, New York City, NY 10001" +314844,USB-C Charging Cable,1,11.95,12/09/19 18:08,"843 Elm St, Dallas, TX 75001" +314845,Bose SoundSport Headphones,1,99.99,12/10/19 12:45,"109 Pine St, Boston, MA 02215" +314846,Apple Airpods Headphones,1,150,01/01/20 00:48,"530 Washington St, Boston, MA 02215" +314847,27in FHD Monitor,1,149.99,12/11/19 13:28,"210 West St, San Francisco, CA 94016" +314848,27in 4K Gaming Monitor,1,389.99,12/29/19 23:55,"648 Willow St, Los Angeles, CA 90001" +314849,Lightning Charging Cable,2,14.95,12/11/19 14:37,"415 Cherry St, New York City, NY 10001" +314850,AA Batteries (4-pack),1,3.84,12/19/19 11:18,"425 River St, Atlanta, GA 30301" +314851,Apple Airpods Headphones,1,150,12/09/19 20:48,"393 Washington St, Los Angeles, CA 90001" +314852,Wired Headphones,1,11.99,12/13/19 18:09,"344 5th St, Los Angeles, CA 90001" +314853,USB-C Charging Cable,1,11.95,12/13/19 19:49,"180 Maple St, Los Angeles, CA 90001" +314853,AA Batteries (4-pack),1,3.84,12/13/19 19:49,"180 Maple St, Los Angeles, CA 90001" +314854,Wired Headphones,1,11.99,12/01/19 20:03,"662 Madison St, Boston, MA 02215" +314855,AAA Batteries (4-pack),2,2.99,12/04/19 18:59,"35 10th St, San Francisco, CA 94016" +314856,AA Batteries (4-pack),1,3.84,12/01/19 17:58,"758 Adams St, Boston, MA 02215" +314857,AA Batteries (4-pack),1,3.84,12/04/19 12:59,"933 Meadow St, Portland, OR 97035" +314858,USB-C Charging Cable,1,11.95,12/01/19 16:42,"445 8th St, Boston, MA 02215" +314859,Wired Headphones,1,11.99,12/21/19 13:47,"532 Willow St, San Francisco, CA 94016" +314860,Lightning Charging Cable,1,14.95,12/04/19 16:54,"36 Meadow St, Seattle, WA 98101" +314861,Wired Headphones,1,11.99,12/17/19 16:02,"255 Highland St, San Francisco, CA 94016" +314862,Lightning Charging Cable,1,14.95,12/25/19 16:10,"995 6th St, San Francisco, CA 94016" +314863,iPhone,1,700,12/10/19 19:11,"688 Sunset St, San Francisco, CA 94016" +314863,Wired Headphones,1,11.99,12/10/19 19:11,"688 Sunset St, San Francisco, CA 94016" +314864,USB-C Charging Cable,1,11.95,12/06/19 13:22,"86 11th St, Dallas, TX 75001" +314865,Vareebadd Phone,1,400,12/27/19 16:40,"244 Maple St, Seattle, WA 98101" +314866,Apple Airpods Headphones,1,150,12/20/19 21:23,"585 Meadow St, Dallas, TX 75001" +314867,34in Ultrawide Monitor,1,379.99,12/24/19 20:02,"770 1st St, Austin, TX 73301" +314868,Wired Headphones,1,11.99,12/21/19 13:23,"69 Elm St, Austin, TX 73301" +314869,USB-C Charging Cable,1,11.95,12/30/19 14:04,"14 1st St, Atlanta, GA 30301" +314870,Apple Airpods Headphones,1,150,12/20/19 15:55,"631 Meadow St, New York City, NY 10001" +314871,34in Ultrawide Monitor,1,379.99,12/14/19 15:38,"754 Hill St, Boston, MA 02215" +314872,27in FHD Monitor,1,149.99,12/22/19 14:55,"9 Maple St, Seattle, WA 98101" +314873,AAA Batteries (4-pack),2,2.99,12/08/19 13:55,"948 7th St, Atlanta, GA 30301" +314874,AA Batteries (4-pack),1,3.84,12/26/19 11:01,"374 Pine St, Los Angeles, CA 90001" +314875,AA Batteries (4-pack),3,3.84,12/05/19 09:51,"498 Pine St, Los Angeles, CA 90001" +314876,27in FHD Monitor,1,149.99,12/20/19 23:28,"514 2nd St, San Francisco, CA 94016" +314877,LG Dryer,1,600.0,12/22/19 13:31,"105 Forest St, San Francisco, CA 94016" +314878,Wired Headphones,1,11.99,12/21/19 21:28,"345 Adams St, Seattle, WA 98101" +314879,Bose SoundSport Headphones,1,99.99,12/30/19 20:19,"560 Wilson St, New York City, NY 10001" +314880,Wired Headphones,1,11.99,12/24/19 17:54,"617 Maple St, San Francisco, CA 94016" +314881,Lightning Charging Cable,1,14.95,12/21/19 09:22,"577 Dogwood St, New York City, NY 10001" +314882,Apple Airpods Headphones,1,150,12/17/19 15:35,"244 Hill St, New York City, NY 10001" +314883,27in FHD Monitor,1,149.99,12/18/19 09:48,"484 13th St, Atlanta, GA 30301" +314884,27in 4K Gaming Monitor,1,389.99,12/09/19 05:44,"591 6th St, Atlanta, GA 30301" +314885,Google Phone,1,600,12/14/19 16:26,"937 West St, Atlanta, GA 30301" +314886,Wired Headphones,1,11.99,12/08/19 09:43,"241 Hickory St, Seattle, WA 98101" +314887,Wired Headphones,2,11.99,12/21/19 02:25,"586 Adams St, San Francisco, CA 94016" +314888,AAA Batteries (4-pack),1,2.99,12/05/19 20:21,"372 Lincoln St, Seattle, WA 98101" +314889,27in 4K Gaming Monitor,1,389.99,12/05/19 22:59,"378 Forest St, San Francisco, CA 94016" +314890,USB-C Charging Cable,1,11.95,12/09/19 13:42,"164 Ridge St, Boston, MA 02215" +314891,34in Ultrawide Monitor,1,379.99,12/11/19 22:37,"958 10th St, Portland, ME 04101" +314892,Bose SoundSport Headphones,1,99.99,12/10/19 22:22,"37 Walnut St, San Francisco, CA 94016" +314893,Bose SoundSport Headphones,1,99.99,12/17/19 22:29,"684 Chestnut St, Atlanta, GA 30301" +314894,Google Phone,1,600,12/02/19 23:26,"227 Chestnut St, Atlanta, GA 30301" +314895,Wired Headphones,1,11.99,12/20/19 15:22,"832 Pine St, San Francisco, CA 94016" +314896,AA Batteries (4-pack),1,3.84,12/12/19 19:35,"871 Adams St, Los Angeles, CA 90001" +314897,AA Batteries (4-pack),1,3.84,12/13/19 17:32,"150 Ridge St, Portland, ME 04101" +314898,ThinkPad Laptop,1,999.99,12/10/19 11:17,"722 Maple St, Dallas, TX 75001" +314899,Wired Headphones,1,11.99,12/07/19 15:40,"145 Highland St, Atlanta, GA 30301" +314900,USB-C Charging Cable,1,11.95,12/16/19 09:30,"790 4th St, Los Angeles, CA 90001" +314901,AA Batteries (4-pack),1,3.84,12/16/19 14:41,"446 Center St, San Francisco, CA 94016" +314902,USB-C Charging Cable,1,11.95,12/08/19 22:59,"186 Forest St, Portland, OR 97035" +314903,Apple Airpods Headphones,1,150,12/13/19 20:06,"570 Spruce St, San Francisco, CA 94016" +314904,USB-C Charging Cable,1,11.95,12/25/19 18:18,"679 Cedar St, Los Angeles, CA 90001" +314905,Lightning Charging Cable,1,14.95,12/20/19 01:27,"272 Hill St, San Francisco, CA 94016" +314906,AA Batteries (4-pack),1,3.84,12/09/19 09:59,"26 Walnut St, Seattle, WA 98101" +314907,AA Batteries (4-pack),1,3.84,12/31/19 08:41,"347 Church St, Austin, TX 73301" +314908,AA Batteries (4-pack),1,3.84,12/18/19 14:41,"318 South St, San Francisco, CA 94016" +314909,AAA Batteries (4-pack),4,2.99,12/16/19 16:54,"222 Elm St, Boston, MA 02215" +314910,USB-C Charging Cable,2,11.95,12/10/19 17:17,"759 Jefferson St, San Francisco, CA 94016" +314911,Bose SoundSport Headphones,1,99.99,12/01/19 23:22,"579 Willow St, New York City, NY 10001" +314912,Bose SoundSport Headphones,1,99.99,12/05/19 17:14,"485 Walnut St, New York City, NY 10001" +314913,AAA Batteries (4-pack),1,2.99,12/27/19 12:04,"616 8th St, Dallas, TX 75001" +314914,Wired Headphones,1,11.99,12/13/19 09:08,"965 9th St, Portland, OR 97035" +314915,AA Batteries (4-pack),2,3.84,12/22/19 08:58,"109 Pine St, San Francisco, CA 94016" +314916,Lightning Charging Cable,2,14.95,12/22/19 20:33,"705 Jackson St, San Francisco, CA 94016" +314917,Macbook Pro Laptop,1,1700,12/24/19 13:35,"833 Hickory St, Austin, TX 73301" +314918,Apple Airpods Headphones,1,150,12/19/19 17:22,"918 Jackson St, New York City, NY 10001" +314919,Lightning Charging Cable,1,14.95,12/17/19 18:09,"236 7th St, Boston, MA 02215" +314920,AA Batteries (4-pack),2,3.84,12/15/19 20:48,"13 Meadow St, Boston, MA 02215" +314921,Lightning Charging Cable,1,14.95,12/21/19 09:22,"322 Spruce St, Seattle, WA 98101" +314922,Lightning Charging Cable,1,14.95,12/09/19 06:46,"588 Elm St, Los Angeles, CA 90001" +314923,AA Batteries (4-pack),1,3.84,12/08/19 18:53,"714 Wilson St, Los Angeles, CA 90001" +314924,ThinkPad Laptop,1,999.99,12/29/19 13:47,"898 Hickory St, Dallas, TX 75001" +314925,Lightning Charging Cable,1,14.95,12/09/19 17:10,"521 8th St, San Francisco, CA 94016" +314926,AA Batteries (4-pack),1,3.84,12/29/19 09:55,"956 2nd St, Dallas, TX 75001" +314927,Wired Headphones,1,11.99,12/16/19 13:01,"471 12th St, Los Angeles, CA 90001" +314928,Bose SoundSport Headphones,1,99.99,12/14/19 17:21,"412 Lake St, Atlanta, GA 30301" +314929,AAA Batteries (4-pack),3,2.99,12/14/19 18:15,"230 Hill St, San Francisco, CA 94016" +314930,iPhone,1,700,12/23/19 13:04,"805 Pine St, Atlanta, GA 30301" +314931,Apple Airpods Headphones,1,150,12/01/19 16:27,"910 Dogwood St, Portland, OR 97035" +314932,20in Monitor,1,109.99,12/01/19 14:40,"848 Johnson St, Los Angeles, CA 90001" +314933,Bose SoundSport Headphones,1,99.99,12/18/19 22:18,"746 North St, San Francisco, CA 94016" +314934,AAA Batteries (4-pack),1,2.99,12/24/19 13:19,"132 10th St, Dallas, TX 75001" +314935,Wired Headphones,2,11.99,12/05/19 07:14,"396 10th St, Seattle, WA 98101" +314936,Lightning Charging Cable,1,14.95,12/10/19 12:41,"833 Walnut St, Los Angeles, CA 90001" +314937,Lightning Charging Cable,1,14.95,12/16/19 00:59,"77 Hickory St, Los Angeles, CA 90001" +314938,20in Monitor,1,109.99,12/14/19 20:07,"137 10th St, New York City, NY 10001" +314939,Flatscreen TV,1,300,12/18/19 09:17,"739 Jackson St, Portland, OR 97035" +314940,34in Ultrawide Monitor,1,379.99,12/29/19 12:10,"678 2nd St, San Francisco, CA 94016" +314941,27in FHD Monitor,1,149.99,12/18/19 17:55,"554 Dogwood St, Boston, MA 02215" +314942,27in 4K Gaming Monitor,1,389.99,12/24/19 19:53,"534 North St, San Francisco, CA 94016" +314942,Macbook Pro Laptop,1,1700,12/24/19 19:53,"534 North St, San Francisco, CA 94016" +314943,27in FHD Monitor,1,149.99,12/09/19 20:14,"988 Willow St, Los Angeles, CA 90001" +314944,USB-C Charging Cable,1,11.95,12/31/19 11:46,"744 Walnut St, Seattle, WA 98101" +314945,AAA Batteries (4-pack),2,2.99,12/27/19 00:29,"263 Highland St, Seattle, WA 98101" +314946,Wired Headphones,1,11.99,12/31/19 10:11,"63 Sunset St, San Francisco, CA 94016" +314947,Wired Headphones,1,11.99,12/17/19 06:56,"917 Center St, San Francisco, CA 94016" +314948,AAA Batteries (4-pack),1,2.99,12/25/19 20:47,"797 Pine St, Dallas, TX 75001" +314949,27in 4K Gaming Monitor,1,389.99,12/12/19 12:22,"794 5th St, Boston, MA 02215" +314950,Google Phone,1,600,12/13/19 11:08,"435 Spruce St, San Francisco, CA 94016" +314950,USB-C Charging Cable,1,11.95,12/13/19 11:08,"435 Spruce St, San Francisco, CA 94016" +314951,27in FHD Monitor,1,149.99,12/22/19 16:09,"674 South St, Atlanta, GA 30301" +314952,iPhone,1,700,12/09/19 21:06,"968 Cedar St, San Francisco, CA 94016" +314953,Flatscreen TV,1,300,12/13/19 11:03,"32 Walnut St, Seattle, WA 98101" +314954,Wired Headphones,1,11.99,12/06/19 19:39,"911 Dogwood St, San Francisco, CA 94016" +314955,iPhone,1,700,12/30/19 09:38,"408 Chestnut St, New York City, NY 10001" +314956,Macbook Pro Laptop,1,1700,12/12/19 19:15,"712 Madison St, San Francisco, CA 94016" +314957,AA Batteries (4-pack),1,3.84,12/06/19 10:01,"940 11th St, Los Angeles, CA 90001" +314958,USB-C Charging Cable,1,11.95,12/11/19 13:53,"20 1st St, San Francisco, CA 94016" +314959,Wired Headphones,1,11.99,12/31/19 14:32,"287 Lakeview St, Boston, MA 02215" +314960,Google Phone,1,600,12/01/19 08:17,"881 6th St, San Francisco, CA 94016" +314961,Bose SoundSport Headphones,1,99.99,12/18/19 15:52,"894 Lincoln St, San Francisco, CA 94016" +314962,AA Batteries (4-pack),3,3.84,01/01/20 00:26,"340 Lakeview St, New York City, NY 10001" +314963,27in 4K Gaming Monitor,1,389.99,12/19/19 20:43,"862 Lake St, New York City, NY 10001" +314964,AA Batteries (4-pack),1,3.84,12/03/19 16:33,"67 Hickory St, New York City, NY 10001" +314965,AAA Batteries (4-pack),2,2.99,12/20/19 23:53,"178 Chestnut St, Austin, TX 73301" +314966,USB-C Charging Cable,1,11.95,12/03/19 15:31,"853 Main St, Los Angeles, CA 90001" +314967,Macbook Pro Laptop,1,1700,12/23/19 21:47,"494 West St, Los Angeles, CA 90001" +314968,AA Batteries (4-pack),1,3.84,12/12/19 13:07,"932 Forest St, Dallas, TX 75001" +314969,AA Batteries (4-pack),1,3.84,12/31/19 12:30,"60 11th St, Austin, TX 73301" +314970,Bose SoundSport Headphones,1,99.99,12/05/19 01:08,"149 River St, San Francisco, CA 94016" +314971,iPhone,1,700,12/10/19 05:22,"415 2nd St, San Francisco, CA 94016" +314972,Lightning Charging Cable,1,14.95,12/06/19 10:08,"721 Cedar St, Los Angeles, CA 90001" +314973,Wired Headphones,1,11.99,12/04/19 19:16,"25 Madison St, New York City, NY 10001" +314974,Flatscreen TV,1,300,12/06/19 21:41,"821 Cherry St, San Francisco, CA 94016" +314975,AAA Batteries (4-pack),1,2.99,12/10/19 16:04,"545 North St, San Francisco, CA 94016" +314976,ThinkPad Laptop,1,999.99,12/02/19 09:39,"12 Meadow St, Boston, MA 02215" +314977,ThinkPad Laptop,1,999.99,12/24/19 10:40,"616 Spruce St, San Francisco, CA 94016" +314978,USB-C Charging Cable,1,11.95,12/13/19 17:24,"37 Hill St, Dallas, TX 75001" +314979,Bose SoundSport Headphones,1,99.99,12/28/19 10:54,"389 Spruce St, Los Angeles, CA 90001" +314980,ThinkPad Laptop,1,999.99,12/14/19 14:09,"243 14th St, San Francisco, CA 94016" +314981,Bose SoundSport Headphones,1,99.99,12/30/19 16:45,"706 Ridge St, New York City, NY 10001" +314982,USB-C Charging Cable,1,11.95,12/26/19 19:51,"258 10th St, San Francisco, CA 94016" +314983,AAA Batteries (4-pack),1,2.99,12/08/19 23:25,"938 Jefferson St, Boston, MA 02215" +314984,Lightning Charging Cable,2,14.95,12/19/19 17:13,"300 5th St, San Francisco, CA 94016" +314985,27in FHD Monitor,1,149.99,12/15/19 23:39,"643 1st St, New York City, NY 10001" +314986,Flatscreen TV,1,300,12/12/19 18:20,"994 11th St, Boston, MA 02215" +314987,Wired Headphones,1,11.99,12/03/19 19:56,"989 7th St, Austin, TX 73301" +314988,Apple Airpods Headphones,1,150,12/31/19 11:44,"762 12th St, Los Angeles, CA 90001" +314989,Lightning Charging Cable,1,14.95,12/25/19 13:08,"222 11th St, San Francisco, CA 94016" +314990,iPhone,1,700,12/11/19 07:56,"789 Walnut St, San Francisco, CA 94016" +314991,AAA Batteries (4-pack),1,2.99,12/29/19 00:17,"464 4th St, San Francisco, CA 94016" +314992,AAA Batteries (4-pack),1,2.99,12/19/19 19:57,"130 Cherry St, San Francisco, CA 94016" +314993,USB-C Charging Cable,1,11.95,12/06/19 09:55,"757 Jefferson St, San Francisco, CA 94016" +314994,Bose SoundSport Headphones,1,99.99,12/05/19 19:39,"897 Walnut St, San Francisco, CA 94016" +314995,Lightning Charging Cable,1,14.95,12/09/19 16:06,"308 12th St, Boston, MA 02215" +314996,27in 4K Gaming Monitor,1,389.99,12/25/19 22:14,"318 West St, Los Angeles, CA 90001" +314997,AA Batteries (4-pack),1,3.84,12/03/19 18:48,"566 4th St, Seattle, WA 98101" +314998,Lightning Charging Cable,1,14.95,12/02/19 09:38,"403 Meadow St, Los Angeles, CA 90001" +314999,Vareebadd Phone,1,400,12/02/19 12:56,"86 Hill St, New York City, NY 10001" +314999,Bose SoundSport Headphones,1,99.99,12/02/19 12:56,"86 Hill St, New York City, NY 10001" +315000,Wired Headphones,1,11.99,12/01/19 23:32,"957 River St, Portland, OR 97035" +315001,Wired Headphones,1,11.99,12/16/19 13:08,"943 Hickory St, Boston, MA 02215" +315002,Google Phone,1,600,12/28/19 11:08,"78 South St, Los Angeles, CA 90001" +315002,USB-C Charging Cable,1,11.95,12/28/19 11:08,"78 South St, Los Angeles, CA 90001" +315003,USB-C Charging Cable,1,11.95,12/27/19 16:07,"379 Madison St, Dallas, TX 75001" +315004,20in Monitor,1,109.99,12/28/19 03:26,"700 North St, Boston, MA 02215" +315005,AA Batteries (4-pack),1,3.84,12/30/19 20:35,"238 11th St, Atlanta, GA 30301" +315006,USB-C Charging Cable,1,11.95,12/08/19 06:41,"538 2nd St, Dallas, TX 75001" +315007,AAA Batteries (4-pack),1,2.99,12/24/19 09:34,"358 9th St, New York City, NY 10001" +315008,20in Monitor,1,109.99,12/18/19 18:44,"880 Main St, San Francisco, CA 94016" +315009,AAA Batteries (4-pack),2,2.99,12/06/19 13:05,"306 Church St, San Francisco, CA 94016" +315010,27in FHD Monitor,1,149.99,12/01/19 21:41,"214 11th St, San Francisco, CA 94016" +315011,Flatscreen TV,1,300,12/18/19 07:54,"688 Cherry St, San Francisco, CA 94016" +315012,AA Batteries (4-pack),2,3.84,12/05/19 08:53,"376 9th St, New York City, NY 10001" +315013,AA Batteries (4-pack),1,3.84,12/30/19 21:39,"375 Madison St, New York City, NY 10001" +315014,Google Phone,1,600,12/20/19 09:56,"10 Main St, Portland, OR 97035" +315014,Wired Headphones,1,11.99,12/20/19 09:56,"10 Main St, Portland, OR 97035" +315015,Wired Headphones,1,11.99,12/03/19 16:43,"932 5th St, Boston, MA 02215" +315016,Bose SoundSport Headphones,1,99.99,12/11/19 12:34,"217 West St, New York City, NY 10001" +315017,USB-C Charging Cable,1,11.95,12/02/19 19:30,"964 7th St, New York City, NY 10001" +315018,AAA Batteries (4-pack),4,2.99,12/28/19 01:55,"268 Walnut St, Los Angeles, CA 90001" +315019,AAA Batteries (4-pack),3,2.99,12/09/19 20:36,"466 Forest St, Portland, OR 97035" +315020,Bose SoundSport Headphones,1,99.99,12/31/19 20:16,"728 Madison St, San Francisco, CA 94016" +315021,USB-C Charging Cable,1,11.95,12/22/19 19:23,"702 Jackson St, Boston, MA 02215" +315022,USB-C Charging Cable,1,11.95,12/28/19 09:44,"52 2nd St, Austin, TX 73301" +315023,AA Batteries (4-pack),1,3.84,12/16/19 22:16,"912 Park St, Boston, MA 02215" +315024,AAA Batteries (4-pack),1,2.99,12/17/19 13:44,"902 Sunset St, San Francisco, CA 94016" +315025,Apple Airpods Headphones,1,150,12/16/19 09:59,"302 Willow St, Portland, OR 97035" +315026,Google Phone,1,600,12/08/19 18:44,"246 Highland St, San Francisco, CA 94016" +315026,Wired Headphones,1,11.99,12/08/19 18:44,"246 Highland St, San Francisco, CA 94016" +315027,34in Ultrawide Monitor,1,379.99,12/12/19 00:31,"271 Lakeview St, Los Angeles, CA 90001" +315028,AAA Batteries (4-pack),1,2.99,12/15/19 19:06,"658 Spruce St, New York City, NY 10001" +315029,USB-C Charging Cable,1,11.95,12/27/19 12:40,"295 Johnson St, New York City, NY 10001" +315030,AA Batteries (4-pack),1,3.84,12/20/19 13:30,"917 7th St, Los Angeles, CA 90001" +315031,AA Batteries (4-pack),1,3.84,12/12/19 12:11,"542 Madison St, Boston, MA 02215" +315032,iPhone,1,700,12/18/19 10:20,"447 Madison St, Dallas, TX 75001" +315033,Apple Airpods Headphones,1,150,12/05/19 02:20,"718 Highland St, San Francisco, CA 94016" +315034,Flatscreen TV,1,300,12/08/19 10:22,"509 Maple St, Seattle, WA 98101" +315035,AAA Batteries (4-pack),2,2.99,12/23/19 13:28,"207 Jackson St, Seattle, WA 98101" +315036,AA Batteries (4-pack),1,3.84,12/30/19 19:20,"77 Highland St, San Francisco, CA 94016" +315037,USB-C Charging Cable,1,11.95,12/05/19 17:55,"232 Johnson St, Austin, TX 73301" +315038,AAA Batteries (4-pack),1,2.99,12/12/19 20:18,"958 Maple St, New York City, NY 10001" +315038,AAA Batteries (4-pack),2,2.99,12/12/19 20:18,"958 Maple St, New York City, NY 10001" +315039,AAA Batteries (4-pack),1,2.99,12/17/19 16:56,"413 Lincoln St, San Francisco, CA 94016" +315040,USB-C Charging Cable,1,11.95,12/05/19 15:10,"902 9th St, Los Angeles, CA 90001" +315041,AA Batteries (4-pack),1,3.84,12/15/19 10:47,"50 Meadow St, San Francisco, CA 94016" +315042,AAA Batteries (4-pack),1,2.99,12/18/19 21:46,"959 North St, San Francisco, CA 94016" +315043,27in FHD Monitor,1,149.99,12/27/19 20:41,"687 Cherry St, Seattle, WA 98101" +315044,Flatscreen TV,1,300,12/14/19 11:59,"598 Cherry St, Austin, TX 73301" +315045,Lightning Charging Cable,1,14.95,12/14/19 11:31,"759 10th St, Portland, OR 97035" +315046,ThinkPad Laptop,1,999.99,12/14/19 19:11,"911 Park St, Boston, MA 02215" +315047,USB-C Charging Cable,1,11.95,12/02/19 20:48,"160 Dogwood St, Portland, OR 97035" +315048,Bose SoundSport Headphones,1,99.99,12/08/19 16:13,"420 Spruce St, San Francisco, CA 94016" +315049,USB-C Charging Cable,1,11.95,12/02/19 14:00,"481 Park St, Los Angeles, CA 90001" +315050,USB-C Charging Cable,1,11.95,12/05/19 18:31,"706 Pine St, San Francisco, CA 94016" +315051,AAA Batteries (4-pack),3,2.99,12/05/19 18:43,"802 14th St, Austin, TX 73301" +315052,iPhone,1,700,12/05/19 13:16,"919 9th St, New York City, NY 10001" +315053,Macbook Pro Laptop,1,1700,12/23/19 19:41,"746 6th St, Los Angeles, CA 90001" +315054,Vareebadd Phone,1,400,12/23/19 19:44,"892 Madison St, San Francisco, CA 94016" +315055,AA Batteries (4-pack),2,3.84,12/15/19 10:38,"479 Cherry St, Austin, TX 73301" +315056,Google Phone,1,600,12/02/19 21:21,"880 Cherry St, Seattle, WA 98101" +315057,iPhone,1,700,12/27/19 12:28,"525 Washington St, San Francisco, CA 94016" +315058,Wired Headphones,1,11.99,12/21/19 08:57,"927 Hickory St, New York City, NY 10001" +315059,Wired Headphones,1,11.99,12/05/19 13:43,"4 Main St, Los Angeles, CA 90001" +315060,USB-C Charging Cable,1,11.95,12/17/19 16:08,"222 Lake St, Seattle, WA 98101" +315061,27in 4K Gaming Monitor,1,389.99,12/05/19 20:13,"1 Main St, San Francisco, CA 94016" +315062,Apple Airpods Headphones,1,150,12/21/19 23:51,"939 Center St, San Francisco, CA 94016" +315062,Apple Airpods Headphones,1,150,12/21/19 23:51,"939 Center St, San Francisco, CA 94016" +,,,,, +315063,iPhone,1,700,12/16/19 20:17,"841 8th St, Atlanta, GA 30301" +315064,Apple Airpods Headphones,1,150,12/17/19 21:25,"88 Johnson St, San Francisco, CA 94016" +315065,20in Monitor,1,109.99,12/08/19 18:32,"715 10th St, San Francisco, CA 94016" +315066,27in 4K Gaming Monitor,1,389.99,12/13/19 07:32,"382 Jackson St, Los Angeles, CA 90001" +315067,AA Batteries (4-pack),3,3.84,12/21/19 23:34,"628 11th St, San Francisco, CA 94016" +315068,Apple Airpods Headphones,1,150,12/31/19 10:56,"515 4th St, San Francisco, CA 94016" +315069,27in 4K Gaming Monitor,1,389.99,12/11/19 19:44,"351 Jackson St, San Francisco, CA 94016" +315070,iPhone,1,700,12/05/19 18:11,"459 Jefferson St, San Francisco, CA 94016" +315071,Wired Headphones,1,11.99,12/17/19 14:43,"938 Lake St, New York City, NY 10001" +315072,Flatscreen TV,1,300,12/19/19 18:00,"572 Elm St, Austin, TX 73301" +315073,iPhone,1,700,12/20/19 12:07,"3 Hill St, Boston, MA 02215" +315073,Lightning Charging Cable,1,14.95,12/20/19 12:07,"3 Hill St, Boston, MA 02215" +315074,Apple Airpods Headphones,1,150,12/06/19 10:43,"896 Forest St, San Francisco, CA 94016" +315075,Wired Headphones,1,11.99,12/17/19 21:59,"949 Cherry St, Boston, MA 02215" +315076,27in FHD Monitor,1,149.99,12/08/19 02:43,"645 2nd St, Los Angeles, CA 90001" +315077,Bose SoundSport Headphones,1,99.99,12/06/19 23:57,"189 River St, San Francisco, CA 94016" +315078,Wired Headphones,1,11.99,12/17/19 10:47,"582 Washington St, New York City, NY 10001" +315079,AA Batteries (4-pack),1,3.84,12/30/19 15:07,"795 9th St, San Francisco, CA 94016" +315080,AAA Batteries (4-pack),1,2.99,12/30/19 20:26,"322 Lincoln St, Los Angeles, CA 90001" +315081,Bose SoundSport Headphones,1,99.99,12/02/19 10:14,"376 Church St, New York City, NY 10001" +315082,27in 4K Gaming Monitor,1,389.99,12/24/19 11:34,"377 Meadow St, Los Angeles, CA 90001" +315083,AA Batteries (4-pack),1,3.84,12/19/19 04:45,"753 14th St, New York City, NY 10001" +315084,Lightning Charging Cable,1,14.95,12/30/19 17:39,"522 West St, New York City, NY 10001" +315085,Lightning Charging Cable,1,14.95,12/22/19 18:35,"799 Dogwood St, Atlanta, GA 30301" +315086,AA Batteries (4-pack),2,3.84,12/13/19 14:07,"429 Center St, Boston, MA 02215" +315087,AA Batteries (4-pack),2,3.84,12/20/19 22:13,"865 7th St, New York City, NY 10001" +315088,Wired Headphones,1,11.99,12/20/19 15:49,"300 14th St, Los Angeles, CA 90001" +315089,iPhone,1,700,12/03/19 03:21,"152 Jefferson St, Austin, TX 73301" +315089,Apple Airpods Headphones,1,150,12/03/19 03:21,"152 Jefferson St, Austin, TX 73301" +315090,27in FHD Monitor,1,149.99,12/26/19 19:44,"807 2nd St, San Francisco, CA 94016" +315091,Lightning Charging Cable,1,14.95,12/24/19 23:11,"929 Washington St, Los Angeles, CA 90001" +315092,Wired Headphones,1,11.99,12/20/19 12:55,"541 Center St, Seattle, WA 98101" +315093,Lightning Charging Cable,1,14.95,12/05/19 18:15,"854 Park St, San Francisco, CA 94016" +315094,Apple Airpods Headphones,1,150,12/22/19 22:21,"745 9th St, Boston, MA 02215" +315094,AA Batteries (4-pack),1,3.84,12/22/19 22:21,"745 9th St, Boston, MA 02215" +315095,AAA Batteries (4-pack),1,2.99,12/26/19 14:40,"601 Adams St, Los Angeles, CA 90001" +315096,Apple Airpods Headphones,1,150,12/13/19 13:59,"681 Washington St, New York City, NY 10001" +315097,Apple Airpods Headphones,1,150,12/28/19 21:34,"434 7th St, Seattle, WA 98101" +315098,USB-C Charging Cable,1,11.95,12/27/19 17:27,"402 Elm St, New York City, NY 10001" +315099,USB-C Charging Cable,1,11.95,12/23/19 13:02,"163 Main St, San Francisco, CA 94016" +315100,Lightning Charging Cable,1,14.95,12/21/19 15:21,"665 Sunset St, Atlanta, GA 30301" +315101,AA Batteries (4-pack),1,3.84,12/26/19 20:03,"226 Sunset St, San Francisco, CA 94016" +315102,AAA Batteries (4-pack),3,2.99,12/28/19 17:43,"831 Madison St, Los Angeles, CA 90001" +315103,iPhone,1,700,12/13/19 16:15,"57 North St, Boston, MA 02215" +315104,USB-C Charging Cable,1,11.95,12/26/19 09:11,"599 Madison St, Boston, MA 02215" +315105,34in Ultrawide Monitor,1,379.99,12/30/19 21:47,"466 Chestnut St, San Francisco, CA 94016" +315106,34in Ultrawide Monitor,1,379.99,12/17/19 11:28,"451 5th St, Austin, TX 73301" +315107,Bose SoundSport Headphones,1,99.99,12/08/19 14:46,"539 11th St, Atlanta, GA 30301" +315108,Flatscreen TV,1,300,12/22/19 15:07,"276 9th St, San Francisco, CA 94016" +315109,Macbook Pro Laptop,1,1700,12/03/19 19:34,"352 Walnut St, San Francisco, CA 94016" +315110,Bose SoundSport Headphones,1,99.99,12/28/19 23:59,"72 5th St, New York City, NY 10001" +315111,27in 4K Gaming Monitor,1,389.99,12/01/19 14:35,"466 Lincoln St, Los Angeles, CA 90001" +315112,Wired Headphones,1,11.99,12/23/19 12:31,"889 8th St, Boston, MA 02215" +315113,Macbook Pro Laptop,1,1700,12/02/19 00:21,"888 Johnson St, Seattle, WA 98101" +315114,Google Phone,1,600,12/29/19 23:56,"614 11th St, Los Angeles, CA 90001" +315115,USB-C Charging Cable,1,11.95,12/11/19 15:37,"42 River St, Portland, OR 97035" +315116,AAA Batteries (4-pack),1,2.99,12/14/19 01:27,"240 Center St, Atlanta, GA 30301" +315117,Wired Headphones,1,11.99,12/30/19 21:03,"148 Center St, Portland, OR 97035" +315118,27in 4K Gaming Monitor,1,389.99,12/09/19 14:51,"858 Meadow St, Atlanta, GA 30301" +315119,AA Batteries (4-pack),1,3.84,12/25/19 14:20,"147 Washington St, Los Angeles, CA 90001" +315120,USB-C Charging Cable,1,11.95,12/19/19 18:36,"808 West St, New York City, NY 10001" +315121,AA Batteries (4-pack),1,3.84,12/17/19 20:22,"640 6th St, Los Angeles, CA 90001" +315122,Flatscreen TV,1,300,12/09/19 13:20,"787 Main St, Dallas, TX 75001" +315123,AA Batteries (4-pack),2,3.84,12/20/19 08:28,"819 Cherry St, Boston, MA 02215" +315124,ThinkPad Laptop,1,999.99,12/23/19 11:50,"132 South St, Los Angeles, CA 90001" +315125,USB-C Charging Cable,1,11.95,12/02/19 16:01,"501 6th St, Los Angeles, CA 90001" +315126,AA Batteries (4-pack),1,3.84,12/18/19 14:57,"427 Hill St, Dallas, TX 75001" +315127,Apple Airpods Headphones,1,150,12/25/19 11:15,"589 Meadow St, San Francisco, CA 94016" +315128,Lightning Charging Cable,1,14.95,12/29/19 10:09,"447 Forest St, New York City, NY 10001" +315129,Wired Headphones,1,11.99,12/16/19 13:38,"805 7th St, Portland, OR 97035" +315130,AA Batteries (4-pack),1,3.84,12/18/19 21:51,"30 River St, Atlanta, GA 30301" +315131,20in Monitor,1,109.99,12/14/19 20:36,"20 Walnut St, San Francisco, CA 94016" +315132,Apple Airpods Headphones,1,150,12/06/19 10:25,"478 Ridge St, Boston, MA 02215" +315133,34in Ultrawide Monitor,1,379.99,12/08/19 20:19,"1 8th St, Atlanta, GA 30301" +315134,AAA Batteries (4-pack),1,2.99,12/12/19 12:03,"302 Elm St, New York City, NY 10001" +315135,Wired Headphones,1,11.99,12/17/19 18:46,"617 Cedar St, San Francisco, CA 94016" +315136,Wired Headphones,2,11.99,12/26/19 18:45,"728 6th St, Atlanta, GA 30301" +315137,AAA Batteries (4-pack),1,2.99,12/05/19 13:11,"717 Pine St, Dallas, TX 75001" +315138,27in FHD Monitor,1,149.99,12/05/19 07:23,"133 14th St, San Francisco, CA 94016" +315139,27in FHD Monitor,1,149.99,12/05/19 19:20,"237 2nd St, New York City, NY 10001" +315140,Wired Headphones,1,11.99,12/12/19 23:06,"129 Highland St, Seattle, WA 98101" +315141,20in Monitor,1,109.99,12/27/19 12:22,"18 Adams St, Los Angeles, CA 90001" +315142,LG Dryer,1,600.0,12/19/19 14:02,"731 7th St, New York City, NY 10001" +315143,Wired Headphones,1,11.99,12/18/19 10:39,"460 Willow St, San Francisco, CA 94016" +315144,USB-C Charging Cable,1,11.95,12/30/19 15:03,"422 2nd St, Portland, OR 97035" +315145,Lightning Charging Cable,1,14.95,12/28/19 13:07,"742 11th St, Dallas, TX 75001" +315146,Wired Headphones,1,11.99,12/25/19 21:57,"526 Church St, Seattle, WA 98101" +315147,USB-C Charging Cable,1,11.95,12/09/19 18:14,"453 Hickory St, Boston, MA 02215" +315148,Macbook Pro Laptop,1,1700,12/16/19 14:34,"859 River St, New York City, NY 10001" +315149,AA Batteries (4-pack),2,3.84,12/12/19 13:52,"622 Lake St, Atlanta, GA 30301" +315150,Bose SoundSport Headphones,1,99.99,12/30/19 11:27,"302 Hickory St, San Francisco, CA 94016" +315151,Apple Airpods Headphones,1,150,12/22/19 18:22,"339 Adams St, San Francisco, CA 94016" +315152,Wired Headphones,2,11.99,12/26/19 07:32,"500 Cherry St, Atlanta, GA 30301" +315153,iPhone,1,700,12/31/19 16:27,"936 West St, San Francisco, CA 94016" +315153,Lightning Charging Cable,1,14.95,12/31/19 16:27,"936 West St, San Francisco, CA 94016" +315154,Wired Headphones,1,11.99,12/12/19 21:46,"55 Spruce St, Atlanta, GA 30301" +315155,Apple Airpods Headphones,1,150,12/20/19 23:47,"706 Hill St, Dallas, TX 75001" +315156,AAA Batteries (4-pack),1,2.99,12/27/19 15:52,"723 Walnut St, Seattle, WA 98101" +315157,27in 4K Gaming Monitor,1,389.99,12/16/19 18:35,"649 Cedar St, New York City, NY 10001" +315158,27in FHD Monitor,1,149.99,12/01/19 11:40,"599 9th St, Atlanta, GA 30301" +315159,USB-C Charging Cable,1,11.95,12/06/19 12:35,"95 Lakeview St, Seattle, WA 98101" +315160,Vareebadd Phone,1,400,12/20/19 09:17,"653 5th St, New York City, NY 10001" +315160,Wired Headphones,1,11.99,12/20/19 09:17,"653 5th St, New York City, NY 10001" +315161,Apple Airpods Headphones,1,150,12/15/19 19:48,"102 Center St, Dallas, TX 75001" +315162,Apple Airpods Headphones,1,150,12/22/19 20:30,"566 8th St, San Francisco, CA 94016" +315163,Lightning Charging Cable,1,14.95,12/26/19 00:02,"791 Dogwood St, Seattle, WA 98101" +315164,Flatscreen TV,1,300,12/10/19 20:47,"318 Cedar St, Atlanta, GA 30301" +315165,USB-C Charging Cable,2,11.95,12/09/19 19:21,"318 13th St, New York City, NY 10001" +315166,Bose SoundSport Headphones,1,99.99,12/06/19 19:03,"251 2nd St, Los Angeles, CA 90001" +315167,Bose SoundSport Headphones,1,99.99,12/27/19 16:34,"175 8th St, San Francisco, CA 94016" +315168,AA Batteries (4-pack),1,3.84,12/01/19 14:24,"466 10th St, Portland, ME 04101" +315169,Apple Airpods Headphones,1,150,12/06/19 17:29,"289 Madison St, New York City, NY 10001" +315170,Wired Headphones,1,11.99,12/24/19 21:31,"504 River St, Portland, OR 97035" +315171,AA Batteries (4-pack),2,3.84,12/22/19 13:27,"806 Hickory St, San Francisco, CA 94016" +315171,AAA Batteries (4-pack),1,2.99,12/22/19 13:27,"806 Hickory St, San Francisco, CA 94016" +315172,27in 4K Gaming Monitor,1,389.99,12/28/19 08:28,"839 Madison St, Seattle, WA 98101" +315173,USB-C Charging Cable,1,11.95,12/16/19 11:02,"363 9th St, Dallas, TX 75001" +315174,27in FHD Monitor,1,149.99,12/01/19 19:22,"885 Meadow St, Boston, MA 02215" +315175,Lightning Charging Cable,1,14.95,12/19/19 18:52,"769 Lake St, San Francisco, CA 94016" +315176,AAA Batteries (4-pack),2,2.99,12/15/19 12:51,"9 Main St, Boston, MA 02215" +315177,Vareebadd Phone,1,400,12/31/19 14:28,"829 13th St, San Francisco, CA 94016" +315178,Bose SoundSport Headphones,1,99.99,12/08/19 18:40,"742 Wilson St, New York City, NY 10001" +315179,Bose SoundSport Headphones,1,99.99,12/23/19 15:35,"792 9th St, Boston, MA 02215" +315180,34in Ultrawide Monitor,1,379.99,12/13/19 15:13,"995 Madison St, Seattle, WA 98101" +315181,iPhone,1,700,12/26/19 19:05,"154 Johnson St, New York City, NY 10001" +315182,Lightning Charging Cable,1,14.95,12/02/19 15:01,"823 Maple St, San Francisco, CA 94016" +315183,27in FHD Monitor,1,149.99,12/04/19 07:34,"233 Cherry St, San Francisco, CA 94016" +315184,27in 4K Gaming Monitor,1,389.99,12/29/19 16:20,"525 13th St, Los Angeles, CA 90001" +315185,20in Monitor,1,109.99,12/26/19 10:25,"513 4th St, Los Angeles, CA 90001" +315186,iPhone,1,700,12/16/19 07:13,"510 Jackson St, Boston, MA 02215" +315187,AAA Batteries (4-pack),1,2.99,12/11/19 21:01,"892 Pine St, Austin, TX 73301" +315188,Bose SoundSport Headphones,1,99.99,12/10/19 21:34,"304 Lakeview St, San Francisco, CA 94016" +315189,USB-C Charging Cable,1,11.95,12/08/19 14:01,"756 Lakeview St, San Francisco, CA 94016" +315190,USB-C Charging Cable,1,11.95,12/06/19 20:10,"884 Center St, Boston, MA 02215" +315191,Apple Airpods Headphones,1,150,12/29/19 12:50,"708 Cedar St, Boston, MA 02215" +315192,iPhone,1,700,12/14/19 20:47,"182 West St, Atlanta, GA 30301" +315192,Apple Airpods Headphones,1,150,12/14/19 20:47,"182 West St, Atlanta, GA 30301" +315193,AAA Batteries (4-pack),5,2.99,12/21/19 07:18,"904 Spruce St, Atlanta, GA 30301" +315194,Macbook Pro Laptop,1,1700,12/25/19 07:53,"824 14th St, San Francisco, CA 94016" +315194,AAA Batteries (4-pack),1,2.99,12/25/19 07:53,"824 14th St, San Francisco, CA 94016" +315195,34in Ultrawide Monitor,1,379.99,12/04/19 22:44,"431 Lake St, Seattle, WA 98101" +315196,AAA Batteries (4-pack),1,2.99,12/06/19 20:00,"665 South St, San Francisco, CA 94016" +315197,AAA Batteries (4-pack),2,2.99,12/28/19 22:38,"779 Elm St, Austin, TX 73301" +315198,27in 4K Gaming Monitor,1,389.99,12/01/19 20:13,"53 Lake St, New York City, NY 10001" +315199,Lightning Charging Cable,1,14.95,12/01/19 16:19,"993 Madison St, San Francisco, CA 94016" +315200,Wired Headphones,1,11.99,12/11/19 15:22,"879 Adams St, Portland, OR 97035" +315201,ThinkPad Laptop,1,999.99,12/02/19 19:02,"818 4th St, San Francisco, CA 94016" +315202,AA Batteries (4-pack),1,3.84,12/11/19 19:44,"547 South St, San Francisco, CA 94016" +315203,USB-C Charging Cable,1,11.95,12/20/19 08:29,"957 1st St, San Francisco, CA 94016" +315204,USB-C Charging Cable,1,11.95,12/30/19 17:25,"846 12th St, New York City, NY 10001" +315205,USB-C Charging Cable,1,11.95,12/25/19 21:19,"784 1st St, New York City, NY 10001" +315206,iPhone,1,700,12/03/19 18:17,"375 14th St, Los Angeles, CA 90001" +315207,Lightning Charging Cable,1,14.95,12/24/19 16:40,"127 Maple St, Austin, TX 73301" +315208,Bose SoundSport Headphones,1,99.99,12/26/19 13:36,"116 Maple St, Seattle, WA 98101" +315209,AAA Batteries (4-pack),1,2.99,12/20/19 08:55,"674 10th St, Portland, OR 97035" +315210,USB-C Charging Cable,1,11.95,12/30/19 18:46,"608 Church St, Los Angeles, CA 90001" +315211,Lightning Charging Cable,1,14.95,12/31/19 20:15,"593 14th St, New York City, NY 10001" +315212,AAA Batteries (4-pack),2,2.99,12/25/19 08:57,"444 Park St, Portland, ME 04101" +315213,AAA Batteries (4-pack),2,2.99,12/31/19 14:24,"957 Dogwood St, Boston, MA 02215" +315214,AA Batteries (4-pack),2,3.84,12/11/19 18:43,"841 Highland St, Portland, OR 97035" +315215,USB-C Charging Cable,1,11.95,12/28/19 18:32,"780 Willow St, San Francisco, CA 94016" +315216,Lightning Charging Cable,1,14.95,12/26/19 13:09,"254 Walnut St, Los Angeles, CA 90001" +315217,AAA Batteries (4-pack),2,2.99,12/28/19 18:18,"68 5th St, San Francisco, CA 94016" +315218,USB-C Charging Cable,1,11.95,12/01/19 17:55,"518 Pine St, San Francisco, CA 94016" +315219,Lightning Charging Cable,1,14.95,12/29/19 15:04,"696 Chestnut St, Los Angeles, CA 90001" +315220,AAA Batteries (4-pack),2,2.99,12/02/19 22:18,"954 Park St, Dallas, TX 75001" +315221,Apple Airpods Headphones,1,150,12/29/19 11:37,"686 Park St, Dallas, TX 75001" +315222,Bose SoundSport Headphones,1,99.99,12/31/19 12:33,"99 11th St, New York City, NY 10001" +315223,AA Batteries (4-pack),1,3.84,12/27/19 11:04,"99 5th St, Los Angeles, CA 90001" +315224,Google Phone,1,600,12/28/19 12:58,"448 12th St, San Francisco, CA 94016" +315224,Wired Headphones,1,11.99,12/28/19 12:58,"448 12th St, San Francisco, CA 94016" +315225,Apple Airpods Headphones,1,150,12/27/19 19:53,"990 Wilson St, Atlanta, GA 30301" +315226,AAA Batteries (4-pack),2,2.99,12/23/19 11:09,"207 Highland St, Austin, TX 73301" +315227,Bose SoundSport Headphones,1,99.99,12/22/19 05:07,"26 Jackson St, San Francisco, CA 94016" +315228,USB-C Charging Cable,1,11.95,12/06/19 20:18,"248 Park St, Seattle, WA 98101" +315229,AA Batteries (4-pack),4,3.84,12/16/19 01:57,"170 9th St, Boston, MA 02215" +315230,Wired Headphones,1,11.99,12/27/19 13:23,"666 1st St, Los Angeles, CA 90001" +315231,Apple Airpods Headphones,1,150,12/25/19 11:02,"174 Hill St, Boston, MA 02215" +315232,AA Batteries (4-pack),1,3.84,12/14/19 14:49,"281 Highland St, Dallas, TX 75001" +315233,Apple Airpods Headphones,1,150,12/21/19 10:43,"595 River St, New York City, NY 10001" +315234,Bose SoundSport Headphones,1,99.99,12/28/19 20:01,"948 Hill St, San Francisco, CA 94016" +315235,AA Batteries (4-pack),1,3.84,12/21/19 17:52,"225 Hickory St, Portland, OR 97035" +315236,34in Ultrawide Monitor,1,379.99,12/12/19 15:42,"894 Maple St, Portland, OR 97035" +315237,Lightning Charging Cable,1,14.95,12/18/19 19:04,"961 Main St, Los Angeles, CA 90001" +315238,Lightning Charging Cable,1,14.95,12/18/19 22:56,"184 Elm St, Boston, MA 02215" +315239,27in 4K Gaming Monitor,1,389.99,12/02/19 18:34,"560 Pine St, San Francisco, CA 94016" +315240,USB-C Charging Cable,1,11.95,12/19/19 10:38,"352 Ridge St, San Francisco, CA 94016" +315241,AA Batteries (4-pack),1,3.84,12/17/19 22:39,"356 11th St, Atlanta, GA 30301" +315242,Wired Headphones,1,11.99,12/25/19 13:56,"328 Walnut St, Los Angeles, CA 90001" +315243,34in Ultrawide Monitor,1,379.99,12/04/19 17:14,"834 Main St, Los Angeles, CA 90001" +315244,Wired Headphones,3,11.99,12/01/19 16:14,"100 Elm St, New York City, NY 10001" +315245,34in Ultrawide Monitor,1,379.99,12/12/19 15:39,"512 10th St, Portland, OR 97035" +315246,Lightning Charging Cable,1,14.95,12/13/19 13:18,"182 Hill St, Boston, MA 02215" +315247,Bose SoundSport Headphones,1,99.99,12/27/19 12:56,"714 11th St, Los Angeles, CA 90001" +315248,27in 4K Gaming Monitor,1,389.99,12/24/19 13:16,"697 Willow St, Portland, OR 97035" +315249,Lightning Charging Cable,1,14.95,12/28/19 21:30,"212 12th St, Los Angeles, CA 90001" +315250,AA Batteries (4-pack),1,3.84,12/31/19 15:28,"108 Washington St, New York City, NY 10001" +315251,Google Phone,1,600,12/27/19 07:13,"190 Main St, Atlanta, GA 30301" +315252,Wired Headphones,1,11.99,12/11/19 14:19,"845 West St, Dallas, TX 75001" +315253,AAA Batteries (4-pack),1,2.99,12/11/19 18:03,"885 Pine St, Portland, OR 97035" +315254,Wired Headphones,1,11.99,12/06/19 19:12,"18 1st St, Dallas, TX 75001" +315255,34in Ultrawide Monitor,1,379.99,12/21/19 07:51,"953 Forest St, New York City, NY 10001" +315256,USB-C Charging Cable,1,11.95,12/23/19 10:31,"282 13th St, Boston, MA 02215" +315257,Vareebadd Phone,1,400,12/07/19 08:00,"794 Meadow St, Los Angeles, CA 90001" +315258,AA Batteries (4-pack),1,3.84,12/21/19 15:11,"136 Sunset St, Dallas, TX 75001" +315259,Lightning Charging Cable,2,14.95,12/11/19 19:01,"644 Main St, Boston, MA 02215" +315260,Apple Airpods Headphones,1,150,12/13/19 23:43,"569 Main St, Los Angeles, CA 90001" +315261,AA Batteries (4-pack),2,3.84,12/31/19 20:40,"924 Hill St, Los Angeles, CA 90001" +315262,Lightning Charging Cable,1,14.95,12/23/19 05:18,"254 Washington St, Seattle, WA 98101" +315263,20in Monitor,1,109.99,12/11/19 12:51,"375 Johnson St, Boston, MA 02215" +315264,AA Batteries (4-pack),1,3.84,12/31/19 12:46,"341 Maple St, Dallas, TX 75001" +315265,27in 4K Gaming Monitor,1,389.99,12/13/19 12:50,"833 Sunset St, San Francisco, CA 94016" +315266,Bose SoundSport Headphones,1,99.99,12/24/19 02:16,"51 Forest St, Boston, MA 02215" +315267,27in FHD Monitor,1,149.99,12/23/19 20:52,"616 Sunset St, Boston, MA 02215" +315268,27in FHD Monitor,1,149.99,12/17/19 08:59,"190 Wilson St, Seattle, WA 98101" +315269,Bose SoundSport Headphones,1,99.99,12/22/19 14:58,"123 Elm St, San Francisco, CA 94016" +315270,AAA Batteries (4-pack),2,2.99,12/07/19 12:51,"500 Ridge St, Los Angeles, CA 90001" +315271,USB-C Charging Cable,1,11.95,12/02/19 23:43,"228 West St, San Francisco, CA 94016" +315272,USB-C Charging Cable,1,11.95,12/04/19 09:19,"816 Chestnut St, Austin, TX 73301" +315273,Flatscreen TV,1,300,12/13/19 11:39,"965 Cedar St, San Francisco, CA 94016" +315274,iPhone,1,700,12/20/19 12:19,"110 Sunset St, Portland, OR 97035" +315275,27in FHD Monitor,1,149.99,12/25/19 20:06,"144 Hill St, San Francisco, CA 94016" +315276,Lightning Charging Cable,1,14.95,12/27/19 17:43,"443 Washington St, Dallas, TX 75001" +315277,AA Batteries (4-pack),1,3.84,12/11/19 14:53,"686 South St, Atlanta, GA 30301" +315278,27in FHD Monitor,1,149.99,12/18/19 10:12,"808 Maple St, San Francisco, CA 94016" +315279,Lightning Charging Cable,1,14.95,12/02/19 11:13,"662 South St, Boston, MA 02215" +315280,Lightning Charging Cable,1,14.95,12/07/19 11:03,"268 1st St, Austin, TX 73301" +315281,Wired Headphones,1,11.99,12/10/19 10:25,"148 6th St, San Francisco, CA 94016" +315282,iPhone,1,700,12/26/19 09:35,"452 Johnson St, New York City, NY 10001" +315283,iPhone,1,700,12/13/19 18:21,"386 12th St, Dallas, TX 75001" +315284,27in FHD Monitor,1,149.99,12/26/19 11:42,"45 Maple St, Portland, OR 97035" +315285,Flatscreen TV,1,300,12/21/19 13:52,"607 13th St, Los Angeles, CA 90001" +315286,34in Ultrawide Monitor,1,379.99,12/28/19 00:00,"417 Willow St, San Francisco, CA 94016" +315287,Wired Headphones,1,11.99,12/20/19 15:35,"223 9th St, San Francisco, CA 94016" +315288,USB-C Charging Cable,1,11.95,12/18/19 16:54,"997 14th St, Boston, MA 02215" +315289,Apple Airpods Headphones,1,150,12/08/19 00:03,"398 North St, Atlanta, GA 30301" +315290,34in Ultrawide Monitor,1,379.99,12/19/19 01:13,"488 Walnut St, Los Angeles, CA 90001" +315291,27in 4K Gaming Monitor,1,389.99,12/14/19 22:43,"890 2nd St, Dallas, TX 75001" +315292,Google Phone,1,600,12/01/19 11:52,"956 11th St, Atlanta, GA 30301" +315293,AAA Batteries (4-pack),2,2.99,12/02/19 21:33,"227 Lakeview St, Atlanta, GA 30301" +315294,Macbook Pro Laptop,1,1700,12/06/19 21:27,"136 River St, Boston, MA 02215" +315295,ThinkPad Laptop,1,999.99,12/27/19 18:32,"996 Spruce St, Dallas, TX 75001" +315296,AA Batteries (4-pack),1,3.84,12/07/19 18:38,"896 2nd St, Boston, MA 02215" +315297,Bose SoundSport Headphones,1,99.99,12/27/19 13:21,"101 Cedar St, New York City, NY 10001" +315298,Wired Headphones,1,11.99,12/23/19 22:05,"525 Cherry St, Boston, MA 02215" +315299,AAA Batteries (4-pack),1,2.99,12/01/19 19:43,"184 14th St, Los Angeles, CA 90001" +315300,AAA Batteries (4-pack),2,2.99,12/10/19 20:14,"56 Center St, Dallas, TX 75001" +315301,27in FHD Monitor,1,149.99,12/23/19 12:27,"285 Cherry St, Los Angeles, CA 90001" +315302,iPhone,1,700,12/16/19 12:30,"609 Lake St, San Francisco, CA 94016" +315303,AAA Batteries (4-pack),1,2.99,12/28/19 11:09,"722 Wilson St, Portland, OR 97035" +315304,AAA Batteries (4-pack),1,2.99,12/20/19 10:08,"747 Meadow St, Dallas, TX 75001" +315305,AAA Batteries (4-pack),3,2.99,12/13/19 08:44,"906 River St, New York City, NY 10001" +315306,AA Batteries (4-pack),1,3.84,12/07/19 12:50,"255 Lincoln St, Boston, MA 02215" +315307,Bose SoundSport Headphones,1,99.99,12/24/19 08:31,"918 7th St, San Francisco, CA 94016" +315308,Lightning Charging Cable,1,14.95,12/02/19 10:48,"161 Center St, San Francisco, CA 94016" +315309,Bose SoundSport Headphones,1,99.99,12/10/19 17:13,"92 1st St, Atlanta, GA 30301" +315310,USB-C Charging Cable,1,11.95,12/19/19 18:54,"565 12th St, New York City, NY 10001" +315311,AAA Batteries (4-pack),1,2.99,12/17/19 11:31,"485 Spruce St, Atlanta, GA 30301" +315312,iPhone,1,700,12/10/19 15:01,"302 14th St, Dallas, TX 75001" +315312,Lightning Charging Cable,1,14.95,12/10/19 15:01,"302 14th St, Dallas, TX 75001" +315313,Apple Airpods Headphones,1,150,12/07/19 20:42,"360 Dogwood St, Boston, MA 02215" +315314,USB-C Charging Cable,1,11.95,12/12/19 18:16,"45 9th St, San Francisco, CA 94016" +315315,34in Ultrawide Monitor,1,379.99,12/03/19 18:48,"961 9th St, Boston, MA 02215" +315316,Apple Airpods Headphones,1,150,12/31/19 18:31,"382 Walnut St, Boston, MA 02215" +315317,Lightning Charging Cable,1,14.95,12/20/19 23:58,"981 14th St, New York City, NY 10001" +315318,AA Batteries (4-pack),2,3.84,12/19/19 12:42,"330 Hill St, Dallas, TX 75001" +315319,27in 4K Gaming Monitor,1,389.99,12/08/19 17:59,"149 Lake St, Boston, MA 02215" +315320,27in 4K Gaming Monitor,1,389.99,12/18/19 21:07,"722 Spruce St, Boston, MA 02215" +315321,Apple Airpods Headphones,1,150,12/16/19 11:49,"985 Cedar St, Dallas, TX 75001" +315322,Lightning Charging Cable,1,14.95,12/31/19 09:46,"357 Chestnut St, Austin, TX 73301" +315323,AA Batteries (4-pack),1,3.84,12/12/19 22:11,"89 Lincoln St, Portland, ME 04101" +315324,ThinkPad Laptop,1,999.99,12/09/19 14:14,"278 Cedar St, Boston, MA 02215" +315325,USB-C Charging Cable,2,11.95,12/14/19 18:12,"417 4th St, Los Angeles, CA 90001" +315326,AAA Batteries (4-pack),1,2.99,12/19/19 14:18,"710 Johnson St, Portland, OR 97035" +315327,Wired Headphones,1,11.99,12/13/19 20:10,"455 6th St, New York City, NY 10001" +315328,iPhone,1,700,12/28/19 09:23,"346 Ridge St, Dallas, TX 75001" +315328,Apple Airpods Headphones,1,150,12/28/19 09:23,"346 Ridge St, Dallas, TX 75001" +315328,Wired Headphones,1,11.99,12/28/19 09:23,"346 Ridge St, Dallas, TX 75001" +315329,AAA Batteries (4-pack),1,2.99,12/24/19 23:10,"57 Johnson St, Portland, OR 97035" +315330,AA Batteries (4-pack),1,3.84,12/24/19 11:55,"941 Park St, Boston, MA 02215" +315331,27in 4K Gaming Monitor,1,389.99,12/13/19 05:28,"209 Johnson St, New York City, NY 10001" +315332,USB-C Charging Cable,1,11.95,12/24/19 23:14,"45 Maple St, San Francisco, CA 94016" +315333,Lightning Charging Cable,1,14.95,12/15/19 09:43,"47 Walnut St, San Francisco, CA 94016" +315334,Flatscreen TV,1,300,12/18/19 09:39,"599 Ridge St, Los Angeles, CA 90001" +315335,Bose SoundSport Headphones,1,99.99,12/03/19 21:10,"632 Jackson St, Austin, TX 73301" +315336,iPhone,1,700,12/27/19 19:59,"337 Center St, Los Angeles, CA 90001" +315336,Lightning Charging Cable,1,14.95,12/27/19 19:59,"337 Center St, Los Angeles, CA 90001" +315336,Wired Headphones,1,11.99,12/27/19 19:59,"337 Center St, Los Angeles, CA 90001" +315337,Bose SoundSport Headphones,1,99.99,12/01/19 06:53,"398 Lakeview St, Dallas, TX 75001" +315338,AAA Batteries (4-pack),1,2.99,12/08/19 18:54,"564 14th St, New York City, NY 10001" +315339,Lightning Charging Cable,1,14.95,12/27/19 15:54,"487 6th St, San Francisco, CA 94016" +315340,USB-C Charging Cable,1,11.95,12/06/19 23:50,"586 Washington St, Atlanta, GA 30301" +315340,Lightning Charging Cable,2,14.95,12/06/19 23:50,"586 Washington St, Atlanta, GA 30301" +315341,AA Batteries (4-pack),1,3.84,12/05/19 20:07,"768 5th St, New York City, NY 10001" +315342,Bose SoundSport Headphones,1,99.99,12/10/19 21:25,"471 12th St, New York City, NY 10001" +315343,Bose SoundSport Headphones,1,99.99,12/11/19 11:14,"123 Park St, San Francisco, CA 94016" +315344,AA Batteries (4-pack),1,3.84,12/27/19 18:51,"869 1st St, Boston, MA 02215" +315345,AA Batteries (4-pack),1,3.84,12/08/19 10:54,"175 5th St, Seattle, WA 98101" +315346,34in Ultrawide Monitor,1,379.99,12/16/19 21:31,"844 14th St, Boston, MA 02215" +315347,Bose SoundSport Headphones,1,99.99,12/21/19 18:52,"943 Center St, New York City, NY 10001" +315348,Macbook Pro Laptop,1,1700,12/18/19 18:32,"653 River St, San Francisco, CA 94016" +315349,Apple Airpods Headphones,1,150,12/17/19 13:57,"75 Cedar St, San Francisco, CA 94016" +315350,Vareebadd Phone,1,400,12/27/19 17:40,"318 Cherry St, San Francisco, CA 94016" +315351,Wired Headphones,1,11.99,12/13/19 16:24,"811 North St, Boston, MA 02215" +315352,AAA Batteries (4-pack),2,2.99,12/08/19 20:35,"803 Church St, Seattle, WA 98101" +315353,Wired Headphones,1,11.99,12/06/19 13:55,"648 Elm St, Atlanta, GA 30301" +315353,Lightning Charging Cable,1,14.95,12/06/19 13:55,"648 Elm St, Atlanta, GA 30301" +315354,USB-C Charging Cable,1,11.95,12/07/19 21:50,"248 Hill St, Los Angeles, CA 90001" +315355,27in FHD Monitor,1,149.99,12/03/19 12:28,"602 Main St, Portland, OR 97035" +315356,Lightning Charging Cable,1,14.95,12/20/19 20:34,"660 Washington St, San Francisco, CA 94016" +315357,AA Batteries (4-pack),1,3.84,12/03/19 19:39,"724 Maple St, San Francisco, CA 94016" +315358,Flatscreen TV,1,300,12/31/19 21:33,"655 Maple St, San Francisco, CA 94016" +315359,Apple Airpods Headphones,1,150,12/12/19 10:33,"710 9th St, Seattle, WA 98101" +315360,Wired Headphones,1,11.99,12/26/19 09:30,"551 Pine St, Dallas, TX 75001" +315361,Flatscreen TV,1,300,12/12/19 23:04,"798 Church St, San Francisco, CA 94016" +315362,iPhone,1,700,12/24/19 12:46,"168 Cedar St, San Francisco, CA 94016" +315362,Lightning Charging Cable,1,14.95,12/24/19 12:46,"168 Cedar St, San Francisco, CA 94016" +315363,AAA Batteries (4-pack),2,2.99,12/04/19 00:00,"392 Willow St, Dallas, TX 75001" +315364,27in FHD Monitor,1,149.99,12/16/19 14:10,"867 Madison St, Portland, OR 97035" +315365,Wired Headphones,1,11.99,12/15/19 22:01,"542 Cherry St, Los Angeles, CA 90001" +315366,AA Batteries (4-pack),1,3.84,12/12/19 12:48,"361 10th St, San Francisco, CA 94016" +315367,Bose SoundSport Headphones,1,99.99,12/13/19 22:24,"963 Church St, Boston, MA 02215" +315368,Bose SoundSport Headphones,1,99.99,12/08/19 10:51,"52 Washington St, Austin, TX 73301" +315369,AAA Batteries (4-pack),1,2.99,12/08/19 12:48,"564 Johnson St, San Francisco, CA 94016" +315370,iPhone,1,700,12/25/19 23:21,"306 Forest St, New York City, NY 10001" +315371,Flatscreen TV,1,300,12/07/19 15:12,"293 Jackson St, Portland, OR 97035" +315372,27in FHD Monitor,1,149.99,12/27/19 08:26,"149 Hill St, Los Angeles, CA 90001" +315373,AAA Batteries (4-pack),1,2.99,12/22/19 23:50,"818 Meadow St, Atlanta, GA 30301" +315374,Google Phone,1,600,12/06/19 23:40,"432 8th St, Boston, MA 02215" +315375,34in Ultrawide Monitor,1,379.99,12/08/19 13:34,"743 Ridge St, Los Angeles, CA 90001" +315376,Apple Airpods Headphones,1,150,12/13/19 09:56,"833 7th St, Los Angeles, CA 90001" +315377,AA Batteries (4-pack),2,3.84,12/25/19 13:32,"742 13th St, Boston, MA 02215" +315378,iPhone,1,700,12/12/19 22:26,"715 10th St, Atlanta, GA 30301" +315379,AAA Batteries (4-pack),1,2.99,12/05/19 21:03,"658 Maple St, New York City, NY 10001" +315379,AA Batteries (4-pack),1,3.84,12/05/19 21:03,"658 Maple St, New York City, NY 10001" +315380,AAA Batteries (4-pack),2,2.99,12/04/19 22:31,"368 Cedar St, Dallas, TX 75001" +315381,Bose SoundSport Headphones,1,99.99,12/04/19 16:04,"72 Lake St, Boston, MA 02215" +315382,AAA Batteries (4-pack),1,2.99,12/06/19 10:02,"179 5th St, Atlanta, GA 30301" +315383,Flatscreen TV,1,300,12/09/19 20:22,"901 Ridge St, New York City, NY 10001" +315384,AA Batteries (4-pack),2,3.84,12/22/19 12:44,"795 1st St, Los Angeles, CA 90001" +315385,Lightning Charging Cable,1,14.95,12/21/19 23:22,"419 Maple St, Boston, MA 02215" +315386,34in Ultrawide Monitor,1,379.99,12/19/19 22:02,"337 14th St, Atlanta, GA 30301" +315387,Wired Headphones,2,11.99,12/05/19 14:30,"542 Center St, New York City, NY 10001" +315388,Bose SoundSport Headphones,1,99.99,12/16/19 19:58,"974 Dogwood St, Los Angeles, CA 90001" +,,,,, +315389,AAA Batteries (4-pack),2,2.99,12/19/19 17:07,"53 South St, Atlanta, GA 30301" +315390,USB-C Charging Cable,1,11.95,12/25/19 21:01,"172 Wilson St, Boston, MA 02215" +315391,AAA Batteries (4-pack),2,2.99,12/08/19 01:13,"350 14th St, New York City, NY 10001" +315392,Lightning Charging Cable,1,14.95,12/07/19 21:11,"425 Church St, Seattle, WA 98101" +315393,Google Phone,1,600,12/28/19 11:19,"40 Main St, Los Angeles, CA 90001" +315394,Lightning Charging Cable,1,14.95,12/21/19 19:28,"619 Sunset St, New York City, NY 10001" +315395,Bose SoundSport Headphones,1,99.99,12/12/19 12:31,"154 Ridge St, San Francisco, CA 94016" +315396,AAA Batteries (4-pack),1,2.99,12/24/19 14:48,"742 5th St, New York City, NY 10001" +315397,AAA Batteries (4-pack),1,2.99,12/07/19 18:06,"119 Chestnut St, Los Angeles, CA 90001" +315398,Lightning Charging Cable,1,14.95,12/05/19 17:05,"893 Meadow St, New York City, NY 10001" +315399,20in Monitor,1,109.99,12/30/19 08:44,"32 11th St, Los Angeles, CA 90001" +315400,Lightning Charging Cable,1,14.95,12/23/19 07:15,"362 Dogwood St, Portland, OR 97035" +315401,34in Ultrawide Monitor,1,379.99,12/30/19 16:29,"86 7th St, Seattle, WA 98101" +315402,Wired Headphones,1,11.99,12/26/19 12:40,"351 Spruce St, Atlanta, GA 30301" +315403,Lightning Charging Cable,1,14.95,12/17/19 21:52,"115 Jefferson St, Los Angeles, CA 90001" +315404,LG Washing Machine,1,600.0,12/06/19 19:31,"976 Hickory St, San Francisco, CA 94016" +315405,Vareebadd Phone,1,400,12/26/19 10:56,"952 South St, Portland, OR 97035" +315406,Lightning Charging Cable,1,14.95,12/25/19 22:36,"417 Maple St, Atlanta, GA 30301" +315407,AA Batteries (4-pack),1,3.84,12/02/19 09:40,"102 Center St, Boston, MA 02215" +315408,Google Phone,1,600,12/20/19 17:13,"56 12th St, San Francisco, CA 94016" +315408,Bose SoundSport Headphones,1,99.99,12/20/19 17:13,"56 12th St, San Francisco, CA 94016" +315409,USB-C Charging Cable,1,11.95,12/19/19 17:28,"753 Ridge St, Los Angeles, CA 90001" +315410,Wired Headphones,1,11.99,12/31/19 23:18,"608 Highland St, Seattle, WA 98101" +315411,Apple Airpods Headphones,1,150,12/26/19 16:46,"357 12th St, San Francisco, CA 94016" +315412,AA Batteries (4-pack),2,3.84,12/21/19 13:13,"82 Highland St, San Francisco, CA 94016" +315413,AA Batteries (4-pack),1,3.84,12/15/19 16:21,"266 6th St, Portland, OR 97035" +315414,AAA Batteries (4-pack),1,2.99,12/27/19 15:05,"441 5th St, Los Angeles, CA 90001" +315415,27in 4K Gaming Monitor,1,389.99,12/25/19 05:51,"394 Cherry St, San Francisco, CA 94016" +315416,AAA Batteries (4-pack),1,2.99,12/06/19 00:08,"264 Dogwood St, Boston, MA 02215" +315417,Lightning Charging Cable,1,14.95,12/15/19 07:13,"498 North St, San Francisco, CA 94016" +315418,USB-C Charging Cable,1,11.95,12/22/19 13:30,"984 Wilson St, Los Angeles, CA 90001" +315419,Apple Airpods Headphones,1,150,12/31/19 10:43,"502 Forest St, Seattle, WA 98101" +315420,Lightning Charging Cable,1,14.95,12/02/19 21:52,"475 River St, Seattle, WA 98101" +315421,Bose SoundSport Headphones,1,99.99,12/08/19 16:31,"650 1st St, Boston, MA 02215" +315422,Lightning Charging Cable,1,14.95,12/02/19 14:09,"559 8th St, Los Angeles, CA 90001" +315423,Bose SoundSport Headphones,1,99.99,12/01/19 13:24,"687 13th St, Boston, MA 02215" +315424,Wired Headphones,1,11.99,12/26/19 22:14,"174 Lincoln St, San Francisco, CA 94016" +315425,USB-C Charging Cable,1,11.95,12/02/19 18:55,"325 10th St, New York City, NY 10001" +315426,Lightning Charging Cable,1,14.95,12/25/19 17:26,"473 Wilson St, Austin, TX 73301" +315427,Macbook Pro Laptop,1,1700,12/27/19 23:12,"443 Willow St, New York City, NY 10001" +315428,Wired Headphones,1,11.99,12/18/19 00:33,"685 Cedar St, Atlanta, GA 30301" +315429,AA Batteries (4-pack),2,3.84,12/10/19 01:46,"570 Maple St, Boston, MA 02215" +315430,Apple Airpods Headphones,1,150,12/20/19 21:28,"109 Forest St, San Francisco, CA 94016" +315431,Apple Airpods Headphones,1,150,12/09/19 19:15,"156 Cherry St, Los Angeles, CA 90001" +315432,AA Batteries (4-pack),1,3.84,12/31/19 11:30,"650 Elm St, San Francisco, CA 94016" +315433,ThinkPad Laptop,1,999.99,12/15/19 19:46,"60 Ridge St, San Francisco, CA 94016" +315434,Macbook Pro Laptop,1,1700,12/03/19 17:03,"880 8th St, San Francisco, CA 94016" +315435,AA Batteries (4-pack),5,3.84,12/22/19 23:46,"996 Lincoln St, Seattle, WA 98101" +315436,Wired Headphones,1,11.99,12/01/19 18:52,"129 Pine St, Boston, MA 02215" +315437,USB-C Charging Cable,1,11.95,12/01/19 10:50,"648 Johnson St, Los Angeles, CA 90001" +315438,AA Batteries (4-pack),1,3.84,12/15/19 12:04,"369 Lake St, New York City, NY 10001" +315439,Bose SoundSport Headphones,1,99.99,12/26/19 08:02,"622 South St, Los Angeles, CA 90001" +315440,USB-C Charging Cable,1,11.95,12/27/19 10:03,"255 South St, San Francisco, CA 94016" +315441,AA Batteries (4-pack),1,3.84,12/18/19 00:32,"204 Elm St, San Francisco, CA 94016" +315442,Wired Headphones,1,11.99,12/18/19 18:04,"576 11th St, Boston, MA 02215" +315443,34in Ultrawide Monitor,1,379.99,12/24/19 16:24,"901 2nd St, New York City, NY 10001" +315444,iPhone,1,700,12/06/19 08:25,"544 Chestnut St, Seattle, WA 98101" +315445,Bose SoundSport Headphones,1,99.99,12/10/19 14:29,"652 Wilson St, San Francisco, CA 94016" +315446,USB-C Charging Cable,1,11.95,12/31/19 10:35,"960 Park St, Dallas, TX 75001" +315447,AA Batteries (4-pack),2,3.84,12/06/19 20:03,"309 Adams St, Dallas, TX 75001" +315448,20in Monitor,1,109.99,12/19/19 09:14,"576 7th St, Dallas, TX 75001" +315449,ThinkPad Laptop,1,999.99,12/11/19 18:11,"990 Jefferson St, Los Angeles, CA 90001" +315450,Apple Airpods Headphones,1,150,12/31/19 19:06,"9 Spruce St, Seattle, WA 98101" +315451,AAA Batteries (4-pack),1,2.99,12/09/19 04:11,"899 Center St, Dallas, TX 75001" +315452,AAA Batteries (4-pack),1,2.99,12/25/19 14:44,"655 Church St, New York City, NY 10001" +315453,Bose SoundSport Headphones,1,99.99,12/30/19 12:48,"35 10th St, San Francisco, CA 94016" +315454,Apple Airpods Headphones,1,150,12/27/19 18:59,"233 7th St, San Francisco, CA 94016" +315455,Flatscreen TV,1,300,12/05/19 12:31,"155 South St, Dallas, TX 75001" +315456,iPhone,1,700,12/02/19 02:58,"277 10th St, Austin, TX 73301" +315457,USB-C Charging Cable,1,11.95,12/17/19 09:11,"620 Lincoln St, Los Angeles, CA 90001" +315458,USB-C Charging Cable,1,11.95,12/31/19 14:10,"534 12th St, San Francisco, CA 94016" +315459,AAA Batteries (4-pack),1,2.99,12/06/19 13:04,"217 Lincoln St, Seattle, WA 98101" +315460,Apple Airpods Headphones,1,150,12/30/19 11:47,"749 Johnson St, Seattle, WA 98101" +315461,USB-C Charging Cable,1,11.95,12/03/19 07:51,"769 Maple St, Austin, TX 73301" +315462,Bose SoundSport Headphones,1,99.99,12/23/19 08:23,"883 14th St, San Francisco, CA 94016" +315463,34in Ultrawide Monitor,1,379.99,12/21/19 09:32,"582 Elm St, Los Angeles, CA 90001" +315464,27in 4K Gaming Monitor,1,389.99,12/24/19 12:22,"319 Park St, San Francisco, CA 94016" +315465,34in Ultrawide Monitor,1,379.99,12/09/19 11:11,"371 Main St, Boston, MA 02215" +315466,27in FHD Monitor,1,149.99,12/29/19 09:43,"619 Hill St, Portland, OR 97035" +315467,Lightning Charging Cable,1,14.95,12/25/19 08:52,"200 Maple St, Seattle, WA 98101" +315468,27in FHD Monitor,1,149.99,12/31/19 16:32,"901 4th St, San Francisco, CA 94016" +315469,Apple Airpods Headphones,1,150,12/03/19 20:35,"23 7th St, San Francisco, CA 94016" +315470,Wired Headphones,1,11.99,12/07/19 14:12,"542 Washington St, New York City, NY 10001" +315471,Lightning Charging Cable,1,14.95,12/14/19 20:43,"181 Wilson St, New York City, NY 10001" +315472,USB-C Charging Cable,1,11.95,12/07/19 20:25,"624 13th St, San Francisco, CA 94016" +315473,ThinkPad Laptop,1,999.99,12/31/19 12:26,"123 Meadow St, San Francisco, CA 94016" +315474,Lightning Charging Cable,1,14.95,12/13/19 15:47,"648 Johnson St, Dallas, TX 75001" +315475,AA Batteries (4-pack),1,3.84,12/15/19 08:11,"423 4th St, Boston, MA 02215" +315476,Google Phone,1,600,12/14/19 21:04,"880 Lincoln St, Atlanta, GA 30301" +315477,27in FHD Monitor,1,149.99,12/18/19 10:25,"579 Forest St, New York City, NY 10001" +315478,Lightning Charging Cable,1,14.95,12/23/19 18:54,"849 Jackson St, Los Angeles, CA 90001" +315479,34in Ultrawide Monitor,1,379.99,12/17/19 21:06,"21 6th St, Portland, OR 97035" +315480,Wired Headphones,1,11.99,12/31/19 22:21,"275 Adams St, San Francisco, CA 94016" +315481,27in FHD Monitor,1,149.99,12/03/19 19:52,"989 Pine St, San Francisco, CA 94016" +315482,AA Batteries (4-pack),1,3.84,12/07/19 14:44,"59 9th St, Austin, TX 73301" +315483,USB-C Charging Cable,1,11.95,12/14/19 15:00,"666 Highland St, New York City, NY 10001" +315484,AAA Batteries (4-pack),2,2.99,12/28/19 23:43,"928 9th St, Seattle, WA 98101" +315485,AA Batteries (4-pack),1,3.84,12/01/19 11:36,"178 Elm St, Boston, MA 02215" +315486,Vareebadd Phone,1,400,12/13/19 23:13,"366 Walnut St, Los Angeles, CA 90001" +315486,Bose SoundSport Headphones,1,99.99,12/13/19 23:13,"366 Walnut St, Los Angeles, CA 90001" +315487,Apple Airpods Headphones,1,150,12/31/19 12:17,"773 13th St, Los Angeles, CA 90001" +315488,Wired Headphones,1,11.99,12/28/19 17:37,"801 Maple St, Los Angeles, CA 90001" +315489,Lightning Charging Cable,1,14.95,12/14/19 21:01,"187 Cedar St, Atlanta, GA 30301" +315490,AA Batteries (4-pack),1,3.84,12/21/19 19:21,"438 9th St, New York City, NY 10001" +315491,Macbook Pro Laptop,1,1700,12/20/19 23:36,"285 West St, New York City, NY 10001" +315492,Wired Headphones,1,11.99,12/23/19 09:22,"78 Church St, Dallas, TX 75001" +315493,Wired Headphones,1,11.99,12/21/19 10:23,"40 7th St, Atlanta, GA 30301" +315494,Lightning Charging Cable,2,14.95,12/06/19 13:35,"932 North St, Atlanta, GA 30301" +315495,27in 4K Gaming Monitor,1,389.99,12/30/19 12:25,"913 Johnson St, New York City, NY 10001" +315496,Wired Headphones,1,11.99,12/18/19 00:10,"752 Hickory St, New York City, NY 10001" +315497,34in Ultrawide Monitor,1,379.99,12/18/19 09:53,"121 Walnut St, Los Angeles, CA 90001" +315498,Apple Airpods Headphones,1,150,12/30/19 17:03,"719 13th St, Dallas, TX 75001" +315499,AA Batteries (4-pack),1,3.84,12/24/19 18:34,"443 West St, Portland, OR 97035" +315500,AAA Batteries (4-pack),3,2.99,12/01/19 18:13,"310 Willow St, Los Angeles, CA 90001" +315501,Flatscreen TV,1,300,12/30/19 09:58,"487 Hickory St, Portland, OR 97035" +315502,Flatscreen TV,1,300,12/13/19 23:22,"839 Dogwood St, Dallas, TX 75001" +315503,27in FHD Monitor,1,149.99,12/30/19 17:04,"621 North St, Seattle, WA 98101" +315503,Wired Headphones,1,11.99,12/30/19 17:04,"621 North St, Seattle, WA 98101" +315504,Bose SoundSport Headphones,1,99.99,12/13/19 19:11,"14 Wilson St, Austin, TX 73301" +315505,Wired Headphones,1,11.99,12/31/19 09:13,"640 5th St, Dallas, TX 75001" +315506,Google Phone,1,600,12/13/19 17:01,"211 Madison St, Dallas, TX 75001" +315506,Wired Headphones,2,11.99,12/13/19 17:01,"211 Madison St, Dallas, TX 75001" +315507,AA Batteries (4-pack),2,3.84,12/12/19 14:50,"471 North St, Seattle, WA 98101" +315508,AA Batteries (4-pack),2,3.84,12/18/19 13:06,"350 North St, San Francisco, CA 94016" +315509,27in 4K Gaming Monitor,1,389.99,12/23/19 06:38,"623 Pine St, Los Angeles, CA 90001" +315510,AAA Batteries (4-pack),1,2.99,12/30/19 17:33,"3 12th St, San Francisco, CA 94016" +315511,AA Batteries (4-pack),2,3.84,12/28/19 14:13,"540 Dogwood St, Portland, OR 97035" +315512,iPhone,1,700,12/02/19 15:25,"39 Sunset St, Los Angeles, CA 90001" +315512,Lightning Charging Cable,1,14.95,12/02/19 15:25,"39 Sunset St, Los Angeles, CA 90001" +315513,USB-C Charging Cable,1,11.95,12/04/19 15:25,"531 14th St, Los Angeles, CA 90001" +315514,AAA Batteries (4-pack),1,2.99,12/10/19 23:11,"248 6th St, Boston, MA 02215" +315515,Lightning Charging Cable,1,14.95,12/31/19 01:24,"167 4th St, New York City, NY 10001" +315516,Bose SoundSport Headphones,1,99.99,12/18/19 21:13,"733 13th St, New York City, NY 10001" +315517,LG Washing Machine,1,600.0,12/14/19 16:59,"365 River St, Portland, ME 04101" +315518,Bose SoundSport Headphones,1,99.99,12/23/19 08:51,"233 Hickory St, New York City, NY 10001" +315519,Lightning Charging Cable,2,14.95,12/03/19 08:34,"598 Highland St, Seattle, WA 98101" +315520,34in Ultrawide Monitor,1,379.99,12/14/19 08:17,"561 6th St, Boston, MA 02215" +315520,Wired Headphones,3,11.99,12/14/19 08:17,"561 6th St, Boston, MA 02215" +315521,USB-C Charging Cable,1,11.95,12/19/19 22:20,"243 6th St, Los Angeles, CA 90001" +315522,USB-C Charging Cable,1,11.95,12/31/19 23:25,"818 Hickory St, Boston, MA 02215" +315523,Bose SoundSport Headphones,1,99.99,12/20/19 17:23,"637 5th St, Los Angeles, CA 90001" +315524,Apple Airpods Headphones,1,150,12/25/19 14:50,"165 Highland St, Los Angeles, CA 90001" +315525,Apple Airpods Headphones,1,150,12/08/19 23:33,"514 Main St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +315526,Apple Airpods Headphones,1,150,12/18/19 21:24,"419 Willow St, San Francisco, CA 94016" +315527,27in 4K Gaming Monitor,1,389.99,12/27/19 20:15,"246 Jefferson St, Seattle, WA 98101" +315528,USB-C Charging Cable,1,11.95,12/15/19 21:25,"999 Lincoln St, Portland, ME 04101" +315529,AAA Batteries (4-pack),1,2.99,12/08/19 12:24,"985 11th St, San Francisco, CA 94016" +315530,Apple Airpods Headphones,1,150,12/08/19 20:07,"220 Walnut St, Atlanta, GA 30301" +315531,Vareebadd Phone,1,400,12/06/19 17:27,"13 River St, San Francisco, CA 94016" +315532,AAA Batteries (4-pack),1,2.99,12/09/19 17:42,"101 Chestnut St, Los Angeles, CA 90001" +315533,Vareebadd Phone,1,400,12/19/19 14:12,"238 6th St, Atlanta, GA 30301" +315534,Lightning Charging Cable,1,14.95,12/11/19 03:19,"427 Chestnut St, Seattle, WA 98101" +315535,USB-C Charging Cable,1,11.95,12/11/19 12:38,"615 Hill St, Los Angeles, CA 90001" +315536,Lightning Charging Cable,1,14.95,12/04/19 18:54,"880 5th St, Atlanta, GA 30301" +315537,iPhone,1,700,12/25/19 01:38,"776 11th St, Dallas, TX 75001" +315538,AA Batteries (4-pack),1,3.84,12/09/19 06:30,"726 Walnut St, Seattle, WA 98101" +315539,Wired Headphones,1,11.99,12/24/19 12:00,"994 Chestnut St, Boston, MA 02215" +315540,Lightning Charging Cable,1,14.95,12/29/19 21:01,"723 Highland St, San Francisco, CA 94016" +315541,Lightning Charging Cable,1,14.95,12/12/19 02:23,"606 North St, San Francisco, CA 94016" +315542,iPhone,1,700,12/05/19 13:37,"157 Lincoln St, San Francisco, CA 94016" +315543,27in FHD Monitor,1,149.99,12/05/19 09:05,"537 Church St, Portland, OR 97035" +315544,USB-C Charging Cable,1,11.95,12/27/19 18:21,"32 Main St, Los Angeles, CA 90001" +315545,Apple Airpods Headphones,1,150,12/07/19 01:01,"127 Pine St, San Francisco, CA 94016" +315546,Wired Headphones,1,11.99,12/03/19 10:13,"749 Elm St, Los Angeles, CA 90001" +315547,34in Ultrawide Monitor,1,379.99,12/23/19 20:01,"503 River St, San Francisco, CA 94016" +315548,Google Phone,1,600,12/09/19 17:35,"20 Walnut St, Los Angeles, CA 90001" +315549,Apple Airpods Headphones,1,150,12/06/19 18:04,"298 Hill St, Boston, MA 02215" +315550,Wired Headphones,1,11.99,12/07/19 17:46,"970 Elm St, Atlanta, GA 30301" +315551,27in FHD Monitor,1,149.99,12/24/19 19:40,"872 Lake St, San Francisco, CA 94016" +315552,Macbook Pro Laptop,1,1700,12/30/19 09:07,"115 West St, San Francisco, CA 94016" +315553,AAA Batteries (4-pack),2,2.99,12/16/19 18:57,"448 2nd St, Seattle, WA 98101" +315554,AA Batteries (4-pack),1,3.84,12/12/19 09:20,"389 Madison St, Los Angeles, CA 90001" +315555,AAA Batteries (4-pack),4,2.99,12/24/19 18:52,"21 13th St, San Francisco, CA 94016" +315556,LG Washing Machine,1,600.0,12/14/19 16:29,"753 1st St, Portland, OR 97035" +315557,Google Phone,1,600,12/14/19 19:58,"740 Hill St, San Francisco, CA 94016" +315557,AA Batteries (4-pack),1,3.84,12/14/19 19:58,"740 Hill St, San Francisco, CA 94016" +315558,AAA Batteries (4-pack),1,2.99,12/19/19 04:55,"619 Washington St, New York City, NY 10001" +315559,AA Batteries (4-pack),1,3.84,12/01/19 21:24,"247 1st St, Portland, OR 97035" +315560,Wired Headphones,1,11.99,12/20/19 10:25,"313 Chestnut St, San Francisco, CA 94016" +315561,USB-C Charging Cable,1,11.95,12/04/19 12:05,"606 Lincoln St, New York City, NY 10001" +315562,Google Phone,1,600,12/09/19 14:13,"87 Maple St, Boston, MA 02215" +315563,Bose SoundSport Headphones,1,99.99,12/01/19 15:58,"93 Dogwood St, San Francisco, CA 94016" +315564,Macbook Pro Laptop,1,1700,12/31/19 20:57,"514 6th St, Seattle, WA 98101" +315565,27in 4K Gaming Monitor,1,389.99,12/08/19 09:37,"553 Hill St, Atlanta, GA 30301" +315566,USB-C Charging Cable,1,11.95,12/05/19 22:17,"956 5th St, New York City, NY 10001" +315567,Lightning Charging Cable,1,14.95,12/17/19 11:10,"710 Adams St, Seattle, WA 98101" +315568,AA Batteries (4-pack),1,3.84,12/10/19 12:34,"457 10th St, San Francisco, CA 94016" +315569,Lightning Charging Cable,1,14.95,12/15/19 16:24,"134 Forest St, Los Angeles, CA 90001" +315570,Google Phone,1,600,12/21/19 19:22,"785 Ridge St, New York City, NY 10001" +315570,Bose SoundSport Headphones,1,99.99,12/21/19 19:22,"785 Ridge St, New York City, NY 10001" +315571,Google Phone,1,600,12/11/19 19:20,"907 14th St, Portland, OR 97035" +315571,Wired Headphones,1,11.99,12/11/19 19:20,"907 14th St, Portland, OR 97035" +315572,Bose SoundSport Headphones,1,99.99,12/26/19 20:13,"293 Washington St, San Francisco, CA 94016" +315573,Lightning Charging Cable,1,14.95,12/23/19 12:28,"532 Jefferson St, New York City, NY 10001" +315574,34in Ultrawide Monitor,1,379.99,12/28/19 10:12,"382 5th St, New York City, NY 10001" +315575,27in 4K Gaming Monitor,1,389.99,12/04/19 13:37,"7 West St, Dallas, TX 75001" +315576,AAA Batteries (4-pack),1,2.99,12/29/19 19:09,"136 2nd St, Los Angeles, CA 90001" +315577,27in 4K Gaming Monitor,1,389.99,01/01/20 00:54,"233 1st St, New York City, NY 10001" +315578,Apple Airpods Headphones,1,150,12/09/19 14:52,"357 Main St, Los Angeles, CA 90001" +315579,Flatscreen TV,1,300,12/06/19 10:04,"688 6th St, San Francisco, CA 94016" +315580,Lightning Charging Cable,1,14.95,12/26/19 04:07,"419 9th St, Boston, MA 02215" +315581,AA Batteries (4-pack),2,3.84,12/25/19 15:32,"776 1st St, Dallas, TX 75001" +315582,Lightning Charging Cable,1,14.95,12/28/19 23:16,"978 6th St, Seattle, WA 98101" +315583,AAA Batteries (4-pack),1,2.99,12/05/19 22:13,"495 Chestnut St, San Francisco, CA 94016" +315584,iPhone,1,700,12/30/19 18:21,"310 North St, San Francisco, CA 94016" +315584,Lightning Charging Cable,1,14.95,12/30/19 18:21,"310 North St, San Francisco, CA 94016" +315584,Wired Headphones,1,11.99,12/30/19 18:21,"310 North St, San Francisco, CA 94016" +315585,AA Batteries (4-pack),1,3.84,12/09/19 22:01,"734 8th St, San Francisco, CA 94016" +315586,Lightning Charging Cable,1,14.95,12/06/19 08:56,"444 Jackson St, San Francisco, CA 94016" +315587,USB-C Charging Cable,1,11.95,12/19/19 12:09,"284 4th St, Los Angeles, CA 90001" +315588,AA Batteries (4-pack),2,3.84,12/16/19 22:36,"506 Johnson St, San Francisco, CA 94016" +315589,AA Batteries (4-pack),1,3.84,12/04/19 09:48,"649 Sunset St, San Francisco, CA 94016" +315590,Lightning Charging Cable,1,14.95,12/23/19 22:45,"523 Hickory St, Seattle, WA 98101" +315591,Macbook Pro Laptop,1,1700,12/20/19 13:11,"769 Park St, San Francisco, CA 94016" +315592,USB-C Charging Cable,1,11.95,12/28/19 10:39,"454 Ridge St, New York City, NY 10001" +315593,AA Batteries (4-pack),1,3.84,12/10/19 23:41,"203 7th St, San Francisco, CA 94016" +315594,20in Monitor,1,109.99,12/27/19 14:45,"6 Jefferson St, San Francisco, CA 94016" +315595,AA Batteries (4-pack),1,3.84,12/23/19 21:59,"331 7th St, New York City, NY 10001" +315596,34in Ultrawide Monitor,1,379.99,12/13/19 19:26,"400 Wilson St, Dallas, TX 75001" +315597,Apple Airpods Headphones,1,150,12/17/19 11:37,"293 4th St, New York City, NY 10001" +315598,Wired Headphones,1,11.99,12/21/19 12:03,"345 Sunset St, San Francisco, CA 94016" +315599,AA Batteries (4-pack),1,3.84,12/30/19 15:32,"716 Madison St, New York City, NY 10001" +315600,27in 4K Gaming Monitor,1,389.99,12/22/19 21:36,"958 Cherry St, Austin, TX 73301" +315601,USB-C Charging Cable,1,11.95,12/05/19 23:27,"267 Walnut St, Dallas, TX 75001" +315602,AA Batteries (4-pack),1,3.84,12/14/19 22:36,"28 Forest St, Boston, MA 02215" +315603,27in FHD Monitor,1,149.99,12/24/19 13:46,"719 Lakeview St, San Francisco, CA 94016" +315604,Lightning Charging Cable,1,14.95,12/19/19 12:53,"222 2nd St, New York City, NY 10001" +315605,AAA Batteries (4-pack),1,2.99,12/19/19 11:53,"906 6th St, New York City, NY 10001" +315606,AAA Batteries (4-pack),4,2.99,12/07/19 15:13,"793 Ridge St, New York City, NY 10001" +315607,Lightning Charging Cable,2,14.95,12/27/19 22:42,"383 7th St, San Francisco, CA 94016" +315608,27in FHD Monitor,1,149.99,12/20/19 19:42,"796 12th St, New York City, NY 10001" +315609,AAA Batteries (4-pack),3,2.99,12/13/19 06:34,"697 Hill St, Boston, MA 02215" +315610,AAA Batteries (4-pack),1,2.99,12/20/19 10:52,"530 South St, New York City, NY 10001" +315611,Lightning Charging Cable,1,14.95,12/29/19 22:44,"386 6th St, Dallas, TX 75001" +315612,AAA Batteries (4-pack),2,2.99,12/25/19 12:26,"6 9th St, San Francisco, CA 94016" +315613,iPhone,1,700,12/06/19 11:50,"6 14th St, Portland, ME 04101" +315614,Bose SoundSport Headphones,1,99.99,12/26/19 13:47,"464 Maple St, San Francisco, CA 94016" +315615,Wired Headphones,1,11.99,12/02/19 22:38,"15 Chestnut St, New York City, NY 10001" +315616,AA Batteries (4-pack),2,3.84,12/03/19 10:53,"52 Lake St, New York City, NY 10001" +315617,Lightning Charging Cable,1,14.95,12/24/19 10:10,"67 Highland St, New York City, NY 10001" +315618,AAA Batteries (4-pack),1,2.99,12/24/19 08:47,"380 Pine St, Dallas, TX 75001" +315619,AA Batteries (4-pack),1,3.84,12/03/19 22:37,"811 Church St, Dallas, TX 75001" +315620,Apple Airpods Headphones,1,150,12/17/19 02:01,"901 Jackson St, San Francisco, CA 94016" +315621,Wired Headphones,2,11.99,12/18/19 14:10,"568 Pine St, New York City, NY 10001" +315622,27in FHD Monitor,1,149.99,12/16/19 21:57,"117 North St, Portland, OR 97035" +315623,Wired Headphones,1,11.99,12/27/19 07:43,"656 Adams St, San Francisco, CA 94016" +315624,Apple Airpods Headphones,1,150,12/26/19 17:22,"527 Spruce St, Seattle, WA 98101" +315625,LG Dryer,1,600.0,12/29/19 12:16,"367 Main St, San Francisco, CA 94016" +315626,AA Batteries (4-pack),2,3.84,12/04/19 20:51,"572 14th St, Los Angeles, CA 90001" +315627,Wired Headphones,1,11.99,12/18/19 23:54,"723 Forest St, San Francisco, CA 94016" +315628,Lightning Charging Cable,1,14.95,12/26/19 22:07,"932 River St, Boston, MA 02215" +315629,Bose SoundSport Headphones,1,99.99,12/31/19 17:07,"62 Madison St, Dallas, TX 75001" +315630,Lightning Charging Cable,1,14.95,12/08/19 16:45,"164 8th St, Boston, MA 02215" +315631,USB-C Charging Cable,1,11.95,12/15/19 17:11,"812 Willow St, Portland, OR 97035" +315632,34in Ultrawide Monitor,1,379.99,12/02/19 14:15,"46 Pine St, Boston, MA 02215" +315632,USB-C Charging Cable,1,11.95,12/02/19 14:15,"46 Pine St, Boston, MA 02215" +315633,ThinkPad Laptop,1,999.99,12/28/19 12:00,"19 Forest St, Atlanta, GA 30301" +315634,Bose SoundSport Headphones,1,99.99,12/23/19 19:53,"368 Jefferson St, San Francisco, CA 94016" +315635,AAA Batteries (4-pack),2,2.99,12/23/19 23:29,"732 Pine St, Seattle, WA 98101" +315636,AA Batteries (4-pack),1,3.84,12/14/19 17:51,"160 Jackson St, Boston, MA 02215" +315637,AA Batteries (4-pack),2,3.84,12/15/19 07:31,"833 Lincoln St, Portland, OR 97035" +315638,AA Batteries (4-pack),2,3.84,12/15/19 13:15,"36 Adams St, San Francisco, CA 94016" +315639,AA Batteries (4-pack),1,3.84,12/02/19 14:22,"448 Walnut St, Los Angeles, CA 90001" +315640,Lightning Charging Cable,1,14.95,12/13/19 07:56,"301 River St, San Francisco, CA 94016" +315641,USB-C Charging Cable,1,11.95,12/26/19 10:30,"580 Jefferson St, Los Angeles, CA 90001" +315642,AAA Batteries (4-pack),1,2.99,12/24/19 22:05,"156 Park St, Los Angeles, CA 90001" +315643,USB-C Charging Cable,1,11.95,12/13/19 19:43,"521 Lakeview St, New York City, NY 10001" +315643,Apple Airpods Headphones,1,150,12/13/19 19:43,"521 Lakeview St, New York City, NY 10001" +315644,AAA Batteries (4-pack),2,2.99,12/27/19 17:33,"574 Walnut St, Boston, MA 02215" +315645,Lightning Charging Cable,1,14.95,12/01/19 10:48,"610 Washington St, Portland, OR 97035" +315646,27in FHD Monitor,1,149.99,12/02/19 13:42,"448 Forest St, New York City, NY 10001" +315647,Wired Headphones,1,11.99,12/07/19 09:42,"936 Madison St, Los Angeles, CA 90001" +315648,USB-C Charging Cable,1,11.95,12/18/19 19:23,"571 Madison St, Seattle, WA 98101" +315649,Flatscreen TV,1,300,12/26/19 16:25,"172 13th St, Portland, OR 97035" +315650,Apple Airpods Headphones,1,150,12/28/19 13:15,"872 Meadow St, San Francisco, CA 94016" +315651,Wired Headphones,1,11.99,12/31/19 22:55,"22 South St, Portland, OR 97035" +315652,AAA Batteries (4-pack),3,2.99,12/19/19 12:50,"17 6th St, Boston, MA 02215" +315653,ThinkPad Laptop,1,999.99,12/15/19 05:32,"698 Hickory St, Boston, MA 02215" +315654,Apple Airpods Headphones,1,150,12/28/19 17:43,"602 Elm St, Austin, TX 73301" +315655,Apple Airpods Headphones,1,150,12/19/19 11:13,"859 Meadow St, Los Angeles, CA 90001" +315656,Apple Airpods Headphones,1,150,12/19/19 18:08,"511 Main St, Atlanta, GA 30301" +315657,27in FHD Monitor,1,149.99,12/26/19 23:59,"507 Lincoln St, Seattle, WA 98101" +315658,USB-C Charging Cable,1,11.95,12/22/19 18:47,"371 Sunset St, Boston, MA 02215" +315659,Lightning Charging Cable,1,14.95,12/07/19 16:33,"640 Dogwood St, Seattle, WA 98101" +315660,AAA Batteries (4-pack),1,2.99,12/31/19 21:54,"36 Spruce St, Los Angeles, CA 90001" +315661,27in 4K Gaming Monitor,1,389.99,12/13/19 00:58,"920 Adams St, San Francisco, CA 94016" +315662,AA Batteries (4-pack),1,3.84,12/08/19 17:39,"689 13th St, Dallas, TX 75001" +315663,Google Phone,1,600,12/13/19 23:49,"812 Cedar St, Austin, TX 73301" +315664,Lightning Charging Cable,1,14.95,12/15/19 15:44,"280 Cedar St, San Francisco, CA 94016" +315665,Lightning Charging Cable,1,14.95,12/06/19 08:14,"273 Willow St, Austin, TX 73301" +315666,27in 4K Gaming Monitor,1,389.99,12/13/19 01:53,"305 Hill St, New York City, NY 10001" +315667,20in Monitor,1,109.99,12/26/19 16:01,"20 Spruce St, Portland, OR 97035" +315668,AAA Batteries (4-pack),1,2.99,12/21/19 14:58,"203 10th St, San Francisco, CA 94016" +315669,AAA Batteries (4-pack),1,2.99,12/14/19 21:13,"319 Willow St, Atlanta, GA 30301" +315670,AAA Batteries (4-pack),3,2.99,12/21/19 11:08,"556 13th St, New York City, NY 10001" +315671,Flatscreen TV,1,300,12/27/19 23:32,"937 Chestnut St, New York City, NY 10001" +315672,Macbook Pro Laptop,1,1700,12/21/19 12:22,"176 Adams St, Portland, OR 97035" +315673,Google Phone,1,600,12/18/19 10:55,"359 Lake St, Los Angeles, CA 90001" +315674,Wired Headphones,1,11.99,12/27/19 18:03,"968 Chestnut St, Seattle, WA 98101" +315674,Lightning Charging Cable,1,14.95,12/27/19 18:03,"968 Chestnut St, Seattle, WA 98101" +315675,Wired Headphones,1,11.99,12/08/19 17:08,"568 West St, Dallas, TX 75001" +315676,Wired Headphones,1,11.99,12/13/19 19:46,"138 Chestnut St, Dallas, TX 75001" +315677,Macbook Pro Laptop,1,1700,12/03/19 20:53,"467 2nd St, Boston, MA 02215" +315678,Flatscreen TV,1,300,12/29/19 21:09,"201 Chestnut St, New York City, NY 10001" +315679,USB-C Charging Cable,1,11.95,12/03/19 08:51,"510 13th St, New York City, NY 10001" +315680,Wired Headphones,1,11.99,12/27/19 11:51,"636 10th St, Boston, MA 02215" +315681,AAA Batteries (4-pack),2,2.99,12/12/19 07:31,"659 West St, Austin, TX 73301" +315682,AAA Batteries (4-pack),1,2.99,12/31/19 20:22,"236 Jefferson St, Portland, OR 97035" +315683,Apple Airpods Headphones,1,150,12/02/19 20:52,"356 13th St, Boston, MA 02215" +315684,Macbook Pro Laptop,1,1700,12/21/19 22:17,"726 7th St, Atlanta, GA 30301" +315685,AAA Batteries (4-pack),1,2.99,12/04/19 02:54,"984 Highland St, Atlanta, GA 30301" +315686,Wired Headphones,1,11.99,12/18/19 15:27,"781 Park St, Atlanta, GA 30301" +315687,AAA Batteries (4-pack),1,2.99,12/17/19 16:06,"685 Ridge St, San Francisco, CA 94016" +315688,Wired Headphones,1,11.99,12/18/19 11:13,"9 Chestnut St, Atlanta, GA 30301" +315689,Wired Headphones,1,11.99,12/22/19 20:00,"476 7th St, Los Angeles, CA 90001" +315690,USB-C Charging Cable,1,11.95,12/15/19 13:31,"998 Elm St, San Francisco, CA 94016" +315691,USB-C Charging Cable,1,11.95,12/15/19 16:40,"970 Johnson St, Los Angeles, CA 90001" +315692,AA Batteries (4-pack),1,3.84,12/27/19 13:31,"260 Lakeview St, Dallas, TX 75001" +315693,34in Ultrawide Monitor,1,379.99,12/01/19 17:24,"606 2nd St, San Francisco, CA 94016" +315694,Wired Headphones,1,11.99,12/28/19 14:29,"492 Walnut St, Boston, MA 02215" +315695,USB-C Charging Cable,1,11.95,12/06/19 21:10,"243 Highland St, San Francisco, CA 94016" +315696,USB-C Charging Cable,1,11.95,12/02/19 12:33,"498 Jackson St, San Francisco, CA 94016" +315697,AAA Batteries (4-pack),1,2.99,12/17/19 13:49,"858 Park St, New York City, NY 10001" +315698,Google Phone,1,600,12/27/19 21:10,"209 Lincoln St, San Francisco, CA 94016" +315699,AA Batteries (4-pack),4,3.84,12/23/19 11:30,"929 Lake St, Dallas, TX 75001" +315700,Wired Headphones,1,11.99,12/15/19 06:13,"25 South St, Dallas, TX 75001" +315701,USB-C Charging Cable,1,11.95,12/29/19 13:22,"457 Sunset St, Austin, TX 73301" +315702,Bose SoundSport Headphones,1,99.99,12/24/19 19:26,"172 Center St, Portland, OR 97035" +315703,AAA Batteries (4-pack),1,2.99,12/08/19 13:38,"310 14th St, Portland, ME 04101" +315704,Apple Airpods Headphones,1,150,12/24/19 11:06,"209 4th St, Boston, MA 02215" +315705,Lightning Charging Cable,1,14.95,12/08/19 10:37,"675 7th St, Boston, MA 02215" +315706,iPhone,1,700,12/28/19 09:21,"727 Ridge St, Seattle, WA 98101" +315707,Bose SoundSport Headphones,1,99.99,12/02/19 09:15,"161 Highland St, Atlanta, GA 30301" +315708,AA Batteries (4-pack),1,3.84,12/04/19 11:26,"520 Adams St, Boston, MA 02215" +315709,USB-C Charging Cable,1,11.95,12/01/19 10:11,"869 Sunset St, Los Angeles, CA 90001" +315710,AA Batteries (4-pack),1,3.84,12/13/19 09:26,"863 Highland St, Los Angeles, CA 90001" +315711,Macbook Pro Laptop,1,1700,12/23/19 16:14,"62 Forest St, Seattle, WA 98101" +315712,27in FHD Monitor,1,149.99,12/22/19 09:44,"773 Sunset St, Atlanta, GA 30301" +315713,AAA Batteries (4-pack),2,2.99,12/03/19 11:36,"63 Sunset St, San Francisco, CA 94016" +315714,AAA Batteries (4-pack),3,2.99,12/05/19 19:42,"928 11th St, Los Angeles, CA 90001" +315715,Wired Headphones,1,11.99,12/16/19 19:47,"853 Maple St, Dallas, TX 75001" +315716,AAA Batteries (4-pack),1,2.99,12/01/19 20:30,"137 Jefferson St, Atlanta, GA 30301" +315717,AA Batteries (4-pack),1,3.84,12/07/19 08:47,"985 North St, Seattle, WA 98101" +315718,Apple Airpods Headphones,1,150,12/07/19 18:30,"754 9th St, New York City, NY 10001" +315719,Lightning Charging Cable,1,14.95,12/01/19 13:51,"44 Spruce St, Los Angeles, CA 90001" +315720,AAA Batteries (4-pack),2,2.99,12/04/19 20:20,"482 Jackson St, New York City, NY 10001" +315721,Wired Headphones,1,11.99,12/01/19 19:04,"444 South St, Boston, MA 02215" +315722,Macbook Pro Laptop,1,1700,12/23/19 20:15,"996 Meadow St, Portland, OR 97035" +315723,27in FHD Monitor,1,149.99,12/25/19 20:51,"909 1st St, Boston, MA 02215" +315724,USB-C Charging Cable,1,11.95,12/10/19 09:50,"735 Forest St, San Francisco, CA 94016" +315725,27in FHD Monitor,1,149.99,12/28/19 18:17,"772 Chestnut St, Boston, MA 02215" +315726,USB-C Charging Cable,1,11.95,12/28/19 20:56,"255 River St, New York City, NY 10001" +315727,Flatscreen TV,1,300,12/17/19 22:16,"747 Jefferson St, Austin, TX 73301" +315728,ThinkPad Laptop,1,999.99,12/01/19 19:53,"19 Dogwood St, Los Angeles, CA 90001" +315729,iPhone,1,700,12/01/19 15:30,"683 West St, New York City, NY 10001" +315730,Lightning Charging Cable,1,14.95,12/07/19 13:51,"930 Chestnut St, San Francisco, CA 94016" +315731,USB-C Charging Cable,1,11.95,12/21/19 20:32,"408 Cherry St, Seattle, WA 98101" +315732,Flatscreen TV,1,300,12/26/19 13:26,"351 Adams St, Boston, MA 02215" +315733,34in Ultrawide Monitor,1,379.99,12/09/19 22:44,"560 6th St, Atlanta, GA 30301" +315734,AAA Batteries (4-pack),1,2.99,12/30/19 16:24,"659 Center St, Los Angeles, CA 90001" +315735,Wired Headphones,1,11.99,12/09/19 19:30,"481 Highland St, San Francisco, CA 94016" +315736,AA Batteries (4-pack),1,3.84,12/26/19 10:50,"747 Cedar St, San Francisco, CA 94016" +315737,Lightning Charging Cable,1,14.95,12/10/19 19:32,"921 Hill St, Austin, TX 73301" +315738,Google Phone,1,600,12/08/19 19:16,"366 Lakeview St, San Francisco, CA 94016" +315739,AAA Batteries (4-pack),3,2.99,12/05/19 11:59,"939 Pine St, Portland, OR 97035" +315740,Wired Headphones,1,11.99,12/04/19 01:03,"478 12th St, New York City, NY 10001" +315741,AA Batteries (4-pack),1,3.84,12/06/19 03:46,"889 Sunset St, Los Angeles, CA 90001" +315742,Wired Headphones,2,11.99,12/09/19 21:51,"666 Lakeview St, Austin, TX 73301" +315743,Wired Headphones,1,11.99,12/07/19 22:22,"311 14th St, Boston, MA 02215" +315744,Bose SoundSport Headphones,1,99.99,12/17/19 20:58,"483 Center St, Portland, ME 04101" +315745,Wired Headphones,1,11.99,12/17/19 00:34,"367 14th St, San Francisco, CA 94016" +315746,Lightning Charging Cable,1,14.95,12/19/19 19:09,"129 Jefferson St, New York City, NY 10001" +315747,Wired Headphones,1,11.99,12/30/19 06:08,"436 North St, Los Angeles, CA 90001" +315748,iPhone,1,700,12/01/19 13:05,"537 10th St, Dallas, TX 75001" +315749,Wired Headphones,1,11.99,12/27/19 16:52,"936 9th St, Dallas, TX 75001" +315750,AA Batteries (4-pack),1,3.84,12/20/19 21:55,"891 14th St, Dallas, TX 75001" +315751,ThinkPad Laptop,1,999.99,12/11/19 10:12,"111 Dogwood St, Dallas, TX 75001" +315752,AA Batteries (4-pack),1,3.84,12/03/19 11:57,"745 Lake St, San Francisco, CA 94016" +315753,Bose SoundSport Headphones,1,99.99,12/17/19 18:26,"27 Forest St, San Francisco, CA 94016" +315754,USB-C Charging Cable,1,11.95,12/01/19 19:49,"732 West St, Austin, TX 73301" +315755,Apple Airpods Headphones,1,150,12/15/19 07:45,"890 Spruce St, San Francisco, CA 94016" +315756,Lightning Charging Cable,1,14.95,12/11/19 12:41,"698 Adams St, Dallas, TX 75001" +315757,34in Ultrawide Monitor,1,379.99,12/07/19 07:14,"394 Jefferson St, Los Angeles, CA 90001" +315758,Apple Airpods Headphones,1,150,12/27/19 13:13,"325 Chestnut St, San Francisco, CA 94016" +315759,Flatscreen TV,1,300,12/26/19 23:20,"44 5th St, Boston, MA 02215" +315760,Apple Airpods Headphones,1,150,12/26/19 22:57,"352 Jackson St, Dallas, TX 75001" +315761,27in FHD Monitor,1,149.99,12/14/19 20:57,"53 Jackson St, Los Angeles, CA 90001" +315762,27in FHD Monitor,1,149.99,12/19/19 13:54,"53 Lincoln St, Los Angeles, CA 90001" +315763,AA Batteries (4-pack),1,3.84,12/22/19 10:27,"889 Cedar St, San Francisco, CA 94016" +315764,USB-C Charging Cable,1,11.95,12/07/19 23:53,"57 12th St, San Francisco, CA 94016" +315765,iPhone,1,700,12/07/19 20:04,"985 Pine St, Boston, MA 02215" +315766,AA Batteries (4-pack),1,3.84,12/30/19 19:57,"625 Spruce St, Atlanta, GA 30301" +315767,AAA Batteries (4-pack),1,2.99,12/08/19 12:34,"856 Lakeview St, Dallas, TX 75001" +315768,AA Batteries (4-pack),1,3.84,12/07/19 10:51,"265 Hill St, San Francisco, CA 94016" +315769,Apple Airpods Headphones,1,150,12/08/19 18:51,"693 5th St, Boston, MA 02215" +315770,iPhone,1,700,12/22/19 13:31,"841 Forest St, San Francisco, CA 94016" +315771,AA Batteries (4-pack),2,3.84,12/08/19 17:18,"271 2nd St, New York City, NY 10001" +315772,USB-C Charging Cable,1,11.95,12/09/19 07:38,"968 12th St, Atlanta, GA 30301" +315773,iPhone,1,700,12/25/19 17:03,"112 9th St, Los Angeles, CA 90001" +315774,Bose SoundSport Headphones,1,99.99,01/01/20 02:38,"566 North St, New York City, NY 10001" +315775,27in FHD Monitor,1,149.99,12/31/19 19:15,"849 Lakeview St, Los Angeles, CA 90001" +315776,Apple Airpods Headphones,1,150,12/08/19 06:47,"673 5th St, Atlanta, GA 30301" +315777,Bose SoundSport Headphones,1,99.99,12/04/19 09:40,"975 Park St, San Francisco, CA 94016" +315778,Apple Airpods Headphones,1,150,12/10/19 06:48,"628 Walnut St, Seattle, WA 98101" +315779,Bose SoundSport Headphones,1,99.99,12/20/19 18:54,"763 Dogwood St, Portland, OR 97035" +315780,AAA Batteries (4-pack),1,2.99,12/11/19 20:35,"51 Main St, New York City, NY 10001" +315781,27in 4K Gaming Monitor,1,389.99,12/07/19 17:34,"425 4th St, Atlanta, GA 30301" +315782,AAA Batteries (4-pack),2,2.99,12/01/19 17:34,"40 Chestnut St, San Francisco, CA 94016" +315783,ThinkPad Laptop,1,999.99,12/30/19 08:24,"224 Jefferson St, San Francisco, CA 94016" +315784,Vareebadd Phone,1,400,12/26/19 23:47,"233 14th St, Boston, MA 02215" +315784,USB-C Charging Cable,1,11.95,12/26/19 23:47,"233 14th St, Boston, MA 02215" +315785,Apple Airpods Headphones,1,150,12/31/19 17:34,"47 Lake St, San Francisco, CA 94016" +315786,Wired Headphones,1,11.99,12/26/19 17:30,"464 Hickory St, Atlanta, GA 30301" +315787,ThinkPad Laptop,1,999.99,12/14/19 17:13,"443 11th St, Los Angeles, CA 90001" +315788,20in Monitor,1,109.99,12/28/19 21:27,"553 7th St, San Francisco, CA 94016" +315789,Vareebadd Phone,1,400,12/27/19 20:36,"205 Dogwood St, Boston, MA 02215" +315790,34in Ultrawide Monitor,1,379.99,12/02/19 14:02,"541 Elm St, Dallas, TX 75001" +315791,Wired Headphones,1,11.99,12/06/19 16:21,"157 Cedar St, Dallas, TX 75001" +315792,Wired Headphones,1,11.99,12/22/19 08:32,"675 Johnson St, Boston, MA 02215" +315793,Wired Headphones,1,11.99,12/07/19 18:38,"153 Cherry St, Los Angeles, CA 90001" +315794,27in FHD Monitor,1,149.99,12/04/19 18:27,"614 13th St, San Francisco, CA 94016" +315795,AA Batteries (4-pack),1,3.84,12/02/19 01:51,"374 7th St, Los Angeles, CA 90001" +315796,Apple Airpods Headphones,1,150,12/17/19 12:35,"267 9th St, Atlanta, GA 30301" +315797,AA Batteries (4-pack),1,3.84,12/11/19 20:53,"948 1st St, San Francisco, CA 94016" +315798,AA Batteries (4-pack),2,3.84,12/11/19 15:23,"964 Forest St, Austin, TX 73301" +315799,iPhone,1,700,12/24/19 15:24,"819 Lake St, Dallas, TX 75001" +315800,iPhone,1,700,12/24/19 19:51,"103 14th St, New York City, NY 10001" +315801,Wired Headphones,1,11.99,12/27/19 13:06,"561 Meadow St, New York City, NY 10001" +315802,Bose SoundSport Headphones,1,99.99,12/07/19 16:14,"303 Lincoln St, Dallas, TX 75001" +315803,Lightning Charging Cable,1,14.95,12/21/19 20:36,"957 2nd St, San Francisco, CA 94016" +315804,AA Batteries (4-pack),1,3.84,12/20/19 22:55,"785 11th St, Los Angeles, CA 90001" +315805,iPhone,1,700,12/03/19 20:40,"782 Church St, Boston, MA 02215" +315806,iPhone,1,700,12/01/19 17:36,"724 Jackson St, San Francisco, CA 94016" +315806,Wired Headphones,1,11.99,12/01/19 17:36,"724 Jackson St, San Francisco, CA 94016" +315807,AAA Batteries (4-pack),2,2.99,12/24/19 19:25,"800 Dogwood St, Los Angeles, CA 90001" +315808,AAA Batteries (4-pack),1,2.99,12/28/19 13:01,"454 9th St, Los Angeles, CA 90001" +315809,Lightning Charging Cable,1,14.95,12/17/19 19:09,"623 Pine St, San Francisco, CA 94016" +315810,Bose SoundSport Headphones,1,99.99,12/14/19 10:07,"159 Forest St, Los Angeles, CA 90001" +315811,Wired Headphones,1,11.99,12/29/19 22:22,"605 Hickory St, San Francisco, CA 94016" +315812,AAA Batteries (4-pack),1,2.99,12/24/19 09:51,"445 13th St, Atlanta, GA 30301" +315813,Bose SoundSport Headphones,1,99.99,12/01/19 12:18,"435 Jackson St, Seattle, WA 98101" +315814,Wired Headphones,1,11.99,12/10/19 11:37,"300 Hill St, San Francisco, CA 94016" +315815,Wired Headphones,2,11.99,12/31/19 20:56,"529 2nd St, Dallas, TX 75001" +315816,Bose SoundSport Headphones,1,99.99,01/01/20 05:27,"649 9th St, Los Angeles, CA 90001" +315817,Apple Airpods Headphones,1,150,12/01/19 20:44,"785 Pine St, Atlanta, GA 30301" +315818,Apple Airpods Headphones,1,150,12/02/19 14:10,"718 Adams St, Atlanta, GA 30301" +315819,Wired Headphones,1,11.99,12/16/19 13:12,"261 13th St, Los Angeles, CA 90001" +315820,AA Batteries (4-pack),1,3.84,12/16/19 13:02,"932 Highland St, Portland, OR 97035" +315821,USB-C Charging Cable,1,11.95,12/30/19 10:29,"605 Cherry St, Los Angeles, CA 90001" +315822,Bose SoundSport Headphones,1,99.99,12/11/19 17:56,"318 5th St, San Francisco, CA 94016" +315822,Google Phone,1,600,12/11/19 17:56,"318 5th St, San Francisco, CA 94016" +315823,Apple Airpods Headphones,1,150,12/22/19 15:46,"606 7th St, San Francisco, CA 94016" +315824,Bose SoundSport Headphones,1,99.99,12/19/19 12:32,"503 4th St, San Francisco, CA 94016" +315825,AA Batteries (4-pack),1,3.84,12/31/19 12:09,"879 Walnut St, Austin, TX 73301" +315826,USB-C Charging Cable,1,11.95,12/18/19 16:00,"468 Lakeview St, Boston, MA 02215" +315827,LG Dryer,1,600.0,12/17/19 20:31,"523 Johnson St, Portland, OR 97035" +315828,USB-C Charging Cable,1,11.95,12/26/19 22:14,"396 Jackson St, Portland, ME 04101" +315829,Lightning Charging Cable,1,14.95,12/25/19 19:55,"418 12th St, Atlanta, GA 30301" +315830,Bose SoundSport Headphones,1,99.99,12/31/19 11:35,"242 Lake St, New York City, NY 10001" +315831,Lightning Charging Cable,1,14.95,12/07/19 15:30,"846 Forest St, New York City, NY 10001" +315832,AA Batteries (4-pack),1,3.84,12/03/19 14:17,"970 14th St, Seattle, WA 98101" +315833,27in 4K Gaming Monitor,1,389.99,12/03/19 23:17,"874 West St, Seattle, WA 98101" +315834,34in Ultrawide Monitor,1,379.99,12/03/19 19:50,"179 Johnson St, San Francisco, CA 94016" +315835,Macbook Pro Laptop,1,1700,12/04/19 03:25,"601 Center St, New York City, NY 10001" +315836,Bose SoundSport Headphones,1,99.99,12/04/19 17:01,"983 Highland St, San Francisco, CA 94016" +315837,AAA Batteries (4-pack),2,2.99,12/04/19 12:53,"159 Main St, Los Angeles, CA 90001" +315837,Lightning Charging Cable,1,14.95,12/04/19 12:53,"159 Main St, Los Angeles, CA 90001" +315838,AA Batteries (4-pack),1,3.84,12/10/19 13:07,"93 Sunset St, Dallas, TX 75001" +315839,iPhone,1,700,12/19/19 11:51,"233 Center St, Atlanta, GA 30301" +315840,27in FHD Monitor,1,149.99,12/19/19 21:14,"726 South St, Los Angeles, CA 90001" +315841,USB-C Charging Cable,1,11.95,12/07/19 00:10,"434 6th St, Los Angeles, CA 90001" +315842,USB-C Charging Cable,1,11.95,12/04/19 16:50,"266 1st St, Seattle, WA 98101" +315843,AA Batteries (4-pack),2,3.84,12/25/19 17:52,"268 Adams St, Los Angeles, CA 90001" +315844,Lightning Charging Cable,1,14.95,12/25/19 13:15,"514 5th St, Boston, MA 02215" +315845,AAA Batteries (4-pack),4,2.99,12/01/19 13:09,"797 Center St, Dallas, TX 75001" +315846,AAA Batteries (4-pack),2,2.99,12/09/19 17:40,"767 North St, New York City, NY 10001" +315847,27in 4K Gaming Monitor,1,389.99,12/14/19 13:21,"604 9th St, Boston, MA 02215" +315848,Bose SoundSport Headphones,1,99.99,12/31/19 09:48,"231 4th St, Boston, MA 02215" +315849,Wired Headphones,1,11.99,12/26/19 16:13,"563 9th St, Los Angeles, CA 90001" +315850,AAA Batteries (4-pack),1,2.99,12/11/19 19:38,"850 9th St, Los Angeles, CA 90001" +315851,Lightning Charging Cable,1,14.95,12/12/19 21:39,"506 Adams St, Seattle, WA 98101" +315852,Lightning Charging Cable,1,14.95,12/05/19 13:15,"381 South St, Portland, OR 97035" +315853,Lightning Charging Cable,1,14.95,12/03/19 14:02,"492 Hickory St, Los Angeles, CA 90001" +315854,Bose SoundSport Headphones,1,99.99,12/08/19 07:38,"947 Washington St, Seattle, WA 98101" +315855,Macbook Pro Laptop,1,1700,12/31/19 09:12,"156 West St, Seattle, WA 98101" +315856,AAA Batteries (4-pack),1,2.99,12/08/19 16:41,"11 Pine St, Portland, OR 97035" +315857,Macbook Pro Laptop,1,1700,12/25/19 05:34,"908 Lake St, Los Angeles, CA 90001" +315858,Lightning Charging Cable,1,14.95,12/08/19 11:03,"200 South St, Dallas, TX 75001" +315859,Wired Headphones,1,11.99,12/28/19 14:05,"533 Willow St, Atlanta, GA 30301" +315860,Apple Airpods Headphones,1,150,12/16/19 19:41,"992 Chestnut St, San Francisco, CA 94016" +315861,AAA Batteries (4-pack),1,2.99,12/18/19 07:23,"646 Sunset St, San Francisco, CA 94016" +315862,Lightning Charging Cable,1,14.95,12/21/19 05:34,"970 1st St, Portland, OR 97035" +315863,AAA Batteries (4-pack),1,2.99,12/10/19 16:22,"427 Madison St, Dallas, TX 75001" +315864,Apple Airpods Headphones,1,150,12/13/19 12:12,"92 Forest St, Los Angeles, CA 90001" +315865,Wired Headphones,1,11.99,12/21/19 20:42,"136 2nd St, San Francisco, CA 94016" +315866,AA Batteries (4-pack),1,3.84,12/19/19 15:21,"418 Spruce St, New York City, NY 10001" +315867,AA Batteries (4-pack),1,3.84,12/13/19 05:44,"651 North St, New York City, NY 10001" +315868,Apple Airpods Headphones,1,150,12/02/19 17:24,"837 Park St, Los Angeles, CA 90001" +315869,Bose SoundSport Headphones,1,99.99,12/04/19 07:50,"213 Johnson St, Boston, MA 02215" +315870,Vareebadd Phone,1,400,12/10/19 16:57,"255 Spruce St, New York City, NY 10001" +315871,AAA Batteries (4-pack),1,2.99,12/15/19 19:29,"570 Johnson St, Los Angeles, CA 90001" +315872,AAA Batteries (4-pack),2,2.99,12/21/19 20:37,"649 12th St, New York City, NY 10001" +315873,Bose SoundSport Headphones,1,99.99,12/20/19 13:06,"620 5th St, New York City, NY 10001" +315874,27in 4K Gaming Monitor,1,389.99,12/02/19 18:35,"335 Johnson St, San Francisco, CA 94016" +315875,Apple Airpods Headphones,1,150,12/30/19 22:29,"493 8th St, Los Angeles, CA 90001" +315876,34in Ultrawide Monitor,1,379.99,12/09/19 18:47,"848 Walnut St, Los Angeles, CA 90001" +315877,AA Batteries (4-pack),1,3.84,12/23/19 16:46,"806 11th St, San Francisco, CA 94016" +315878,27in 4K Gaming Monitor,1,389.99,12/16/19 15:40,"327 Jackson St, New York City, NY 10001" +315879,Lightning Charging Cable,1,14.95,12/31/19 19:56,"467 6th St, Seattle, WA 98101" +315880,Lightning Charging Cable,1,14.95,12/10/19 11:28,"917 9th St, San Francisco, CA 94016" +315881,Wired Headphones,1,11.99,12/02/19 18:56,"202 6th St, San Francisco, CA 94016" +315882,Wired Headphones,1,11.99,12/06/19 20:46,"476 Cedar St, Atlanta, GA 30301" +315883,20in Monitor,1,109.99,12/14/19 13:56,"626 10th St, San Francisco, CA 94016" +315884,Wired Headphones,1,11.99,12/24/19 21:02,"415 8th St, Los Angeles, CA 90001" +315885,USB-C Charging Cable,1,11.95,12/10/19 16:26,"168 Adams St, Boston, MA 02215" +315886,Apple Airpods Headphones,1,150,12/22/19 12:21,"103 6th St, Austin, TX 73301" +315887,Google Phone,1,600,12/20/19 19:57,"675 Cherry St, San Francisco, CA 94016" +315888,20in Monitor,1,109.99,12/31/19 09:22,"802 13th St, Atlanta, GA 30301" +315889,AAA Batteries (4-pack),2,2.99,12/10/19 10:13,"337 Jefferson St, Los Angeles, CA 90001" +315890,Wired Headphones,1,11.99,12/12/19 10:42,"825 South St, San Francisco, CA 94016" +315891,Lightning Charging Cable,2,14.95,12/16/19 14:22,"919 Chestnut St, Seattle, WA 98101" +315892,Apple Airpods Headphones,1,150,12/03/19 23:42,"463 Jackson St, San Francisco, CA 94016" +315893,Macbook Pro Laptop,1,1700,12/20/19 13:25,"452 Hill St, Atlanta, GA 30301" +315894,Lightning Charging Cable,1,14.95,12/10/19 12:13,"27 Dogwood St, Austin, TX 73301" +315895,27in 4K Gaming Monitor,1,389.99,12/31/19 18:48,"353 11th St, Portland, OR 97035" +315896,Flatscreen TV,1,300,12/08/19 23:55,"982 River St, Boston, MA 02215" +315897,Wired Headphones,1,11.99,12/11/19 11:52,"551 Main St, New York City, NY 10001" +315898,ThinkPad Laptop,1,999.99,12/04/19 23:24,"2 8th St, San Francisco, CA 94016" +315899,AA Batteries (4-pack),1,3.84,12/19/19 14:27,"522 Meadow St, Boston, MA 02215" +315900,Lightning Charging Cable,1,14.95,12/08/19 19:44,"77 North St, Austin, TX 73301" +315901,AAA Batteries (4-pack),1,2.99,12/19/19 16:05,"369 Johnson St, Boston, MA 02215" +315902,iPhone,1,700,12/20/19 19:35,"7 Spruce St, Los Angeles, CA 90001" +315902,Apple Airpods Headphones,1,150,12/20/19 19:35,"7 Spruce St, Los Angeles, CA 90001" +315903,LG Washing Machine,1,600.0,12/29/19 19:39,"271 River St, Austin, TX 73301" +315904,USB-C Charging Cable,1,11.95,12/18/19 07:46,"351 Lincoln St, San Francisco, CA 94016" +315905,AAA Batteries (4-pack),3,2.99,12/09/19 18:47,"522 Park St, Austin, TX 73301" +315906,AAA Batteries (4-pack),1,2.99,12/12/19 21:48,"901 6th St, Los Angeles, CA 90001" +315907,Bose SoundSport Headphones,1,99.99,12/04/19 17:16,"119 Hickory St, New York City, NY 10001" +315908,AAA Batteries (4-pack),1,2.99,12/21/19 11:58,"646 Church St, San Francisco, CA 94016" +315909,AAA Batteries (4-pack),1,2.99,12/08/19 11:54,"206 14th St, San Francisco, CA 94016" +315910,Wired Headphones,1,11.99,12/13/19 19:17,"591 Church St, San Francisco, CA 94016" +315911,Wired Headphones,1,11.99,12/11/19 20:22,"681 8th St, Atlanta, GA 30301" +315912,Bose SoundSport Headphones,1,99.99,12/15/19 06:20,"145 Cedar St, Los Angeles, CA 90001" +315913,AA Batteries (4-pack),1,3.84,12/04/19 13:30,"749 North St, New York City, NY 10001" +315914,USB-C Charging Cable,1,11.95,12/06/19 21:20,"809 Center St, Atlanta, GA 30301" +315915,Apple Airpods Headphones,1,150,12/25/19 15:07,"506 Church St, New York City, NY 10001" +315916,Bose SoundSport Headphones,1,99.99,12/23/19 06:33,"944 Park St, New York City, NY 10001" +315917,Vareebadd Phone,1,400,12/16/19 13:06,"495 Park St, Dallas, TX 75001" +315918,20in Monitor,1,109.99,12/11/19 16:30,"423 Lake St, San Francisco, CA 94016" +315919,AAA Batteries (4-pack),7,2.99,12/13/19 11:58,"323 Main St, New York City, NY 10001" +315920,27in 4K Gaming Monitor,1,389.99,12/08/19 10:58,"239 Pine St, Boston, MA 02215" +315921,Apple Airpods Headphones,1,150,12/22/19 22:29,"587 Spruce St, Atlanta, GA 30301" +315922,AAA Batteries (4-pack),1,2.99,12/08/19 10:26,"288 Chestnut St, Los Angeles, CA 90001" +315923,USB-C Charging Cable,1,11.95,12/19/19 20:21,"274 West St, San Francisco, CA 94016" +315924,Bose SoundSport Headphones,1,99.99,12/07/19 11:04,"922 West St, San Francisco, CA 94016" +315925,AA Batteries (4-pack),1,3.84,12/04/19 13:05,"602 Hill St, San Francisco, CA 94016" +315926,Lightning Charging Cable,1,14.95,12/11/19 13:28,"158 Meadow St, San Francisco, CA 94016" +315927,Wired Headphones,1,11.99,12/25/19 12:44,"216 Forest St, San Francisco, CA 94016" +315928,20in Monitor,1,109.99,12/26/19 14:16,"338 Lakeview St, San Francisco, CA 94016" +315929,Lightning Charging Cable,1,14.95,12/04/19 09:39,"964 Walnut St, Seattle, WA 98101" +315930,Lightning Charging Cable,1,14.95,12/07/19 18:39,"944 Park St, Boston, MA 02215" +315931,Apple Airpods Headphones,1,150,12/06/19 20:07,"21 Church St, San Francisco, CA 94016" +315932,Lightning Charging Cable,1,14.95,12/06/19 12:06,"244 Hickory St, Dallas, TX 75001" +315933,27in FHD Monitor,1,149.99,12/10/19 19:54,"195 Meadow St, Los Angeles, CA 90001" +315934,AAA Batteries (4-pack),1,2.99,12/28/19 15:54,"14 Hill St, Portland, OR 97035" +315935,iPhone,1,700,12/30/19 12:26,"755 West St, Los Angeles, CA 90001" +315935,Wired Headphones,1,11.99,12/30/19 12:26,"755 West St, Los Angeles, CA 90001" +315936,Apple Airpods Headphones,1,150,12/06/19 11:36,"945 11th St, New York City, NY 10001" +315937,AAA Batteries (4-pack),2,2.99,12/13/19 17:25,"469 Highland St, Atlanta, GA 30301" +315938,Macbook Pro Laptop,1,1700,12/04/19 18:48,"227 Main St, San Francisco, CA 94016" +315939,AA Batteries (4-pack),2,3.84,12/20/19 20:01,"291 Hill St, San Francisco, CA 94016" +315940,Lightning Charging Cable,1,14.95,12/20/19 22:33,"542 7th St, Los Angeles, CA 90001" +315941,Lightning Charging Cable,1,14.95,12/02/19 23:36,"864 Lincoln St, Portland, OR 97035" +315942,AAA Batteries (4-pack),1,2.99,12/06/19 15:02,"498 Sunset St, Atlanta, GA 30301" +315943,AAA Batteries (4-pack),2,2.99,12/02/19 18:26,"420 Washington St, San Francisco, CA 94016" +315944,USB-C Charging Cable,1,11.95,12/11/19 14:17,"266 Meadow St, Seattle, WA 98101" +315945,Apple Airpods Headphones,1,150,12/22/19 09:48,"13 North St, San Francisco, CA 94016" +315946,Lightning Charging Cable,1,14.95,12/03/19 22:20,"24 Jackson St, Portland, OR 97035" +315947,27in FHD Monitor,1,149.99,12/20/19 21:01,"152 5th St, Dallas, TX 75001" +315948,USB-C Charging Cable,1,11.95,12/06/19 16:28,"66 South St, San Francisco, CA 94016" +315949,AA Batteries (4-pack),2,3.84,12/20/19 11:41,"883 Center St, San Francisco, CA 94016" +315950,Bose SoundSport Headphones,1,99.99,12/06/19 00:35,"526 Hill St, Dallas, TX 75001" +315951,USB-C Charging Cable,1,11.95,12/31/19 11:19,"144 Ridge St, Los Angeles, CA 90001" +315952,Apple Airpods Headphones,1,150,12/25/19 11:03,"129 Willow St, Dallas, TX 75001" +315953,AAA Batteries (4-pack),5,2.99,12/26/19 23:02,"219 10th St, Austin, TX 73301" +315954,Flatscreen TV,1,300,12/12/19 13:51,"633 Dogwood St, Boston, MA 02215" +315955,AA Batteries (4-pack),1,3.84,12/29/19 17:11,"467 11th St, New York City, NY 10001" +315956,AA Batteries (4-pack),1,3.84,12/08/19 14:05,"917 Lake St, Boston, MA 02215" +315957,AAA Batteries (4-pack),1,2.99,12/31/19 18:54,"976 Forest St, San Francisco, CA 94016" +315958,34in Ultrawide Monitor,1,379.99,12/10/19 01:15,"266 Maple St, San Francisco, CA 94016" +315959,AA Batteries (4-pack),1,3.84,12/17/19 16:22,"596 Lakeview St, New York City, NY 10001" +315960,Apple Airpods Headphones,1,150,12/10/19 08:42,"484 Jackson St, Atlanta, GA 30301" +315961,AAA Batteries (4-pack),1,2.99,12/20/19 21:46,"728 Lincoln St, Austin, TX 73301" +315962,AAA Batteries (4-pack),1,2.99,12/26/19 15:50,"547 Main St, San Francisco, CA 94016" +315963,27in FHD Monitor,1,149.99,12/20/19 15:02,"203 14th St, Dallas, TX 75001" +315964,34in Ultrawide Monitor,1,379.99,12/23/19 16:44,"95 Lincoln St, Austin, TX 73301" +315965,Macbook Pro Laptop,1,1700,12/03/19 20:38,"911 Washington St, San Francisco, CA 94016" +315966,AA Batteries (4-pack),1,3.84,12/14/19 17:40,"293 Lincoln St, Dallas, TX 75001" +315967,Google Phone,1,600,12/15/19 14:56,"919 Cherry St, Atlanta, GA 30301" +315968,Lightning Charging Cable,1,14.95,12/15/19 14:11,"652 12th St, Los Angeles, CA 90001" +315969,Vareebadd Phone,1,400,12/21/19 10:56,"156 11th St, Austin, TX 73301" +315970,Bose SoundSport Headphones,1,99.99,12/17/19 08:43,"911 14th St, Portland, OR 97035" +315970,USB-C Charging Cable,1,11.95,12/17/19 08:43,"911 14th St, Portland, OR 97035" +315971,AAA Batteries (4-pack),1,2.99,12/20/19 12:32,"44 Ridge St, San Francisco, CA 94016" +315972,27in 4K Gaming Monitor,1,389.99,12/20/19 23:13,"444 Sunset St, San Francisco, CA 94016" +315973,Wired Headphones,1,11.99,12/10/19 23:30,"669 4th St, Los Angeles, CA 90001" +315974,USB-C Charging Cable,1,11.95,12/20/19 08:02,"180 North St, Los Angeles, CA 90001" +315975,Apple Airpods Headphones,1,150,12/06/19 18:11,"122 4th St, New York City, NY 10001" +315976,20in Monitor,1,109.99,12/29/19 12:10,"95 West St, Atlanta, GA 30301" +315977,Lightning Charging Cable,1,14.95,12/19/19 10:43,"77 Wilson St, Los Angeles, CA 90001" +315978,iPhone,1,700,12/12/19 22:58,"216 Walnut St, Austin, TX 73301" +315979,AA Batteries (4-pack),1,3.84,12/28/19 16:42,"746 Cherry St, San Francisco, CA 94016" +315980,27in FHD Monitor,1,149.99,12/05/19 20:47,"836 Elm St, Atlanta, GA 30301" +315981,AAA Batteries (4-pack),1,2.99,12/15/19 17:22,"780 1st St, San Francisco, CA 94016" +315982,Wired Headphones,1,11.99,12/08/19 10:21,"698 Johnson St, Boston, MA 02215" +315983,USB-C Charging Cable,1,11.95,12/24/19 16:44,"864 North St, San Francisco, CA 94016" +315984,AA Batteries (4-pack),1,3.84,12/03/19 13:51,"961 Main St, Los Angeles, CA 90001" +315985,AAA Batteries (4-pack),1,2.99,12/11/19 10:17,"5 Cedar St, New York City, NY 10001" +315986,USB-C Charging Cable,1,11.95,12/20/19 17:20,"205 Jackson St, San Francisco, CA 94016" +315987,Macbook Pro Laptop,1,1700,12/18/19 11:45,"588 11th St, Boston, MA 02215" +315988,Lightning Charging Cable,1,14.95,12/15/19 12:59,"802 Elm St, Atlanta, GA 30301" +315989,Apple Airpods Headphones,1,150,12/04/19 22:42,"292 7th St, Los Angeles, CA 90001" +315989,Wired Headphones,1,11.99,12/04/19 22:42,"292 7th St, Los Angeles, CA 90001" +315990,Bose SoundSport Headphones,1,99.99,12/22/19 15:35,"417 11th St, Los Angeles, CA 90001" +315991,AAA Batteries (4-pack),1,2.99,12/02/19 22:24,"743 Highland St, San Francisco, CA 94016" +315992,27in FHD Monitor,1,149.99,12/09/19 16:20,"352 Center St, San Francisco, CA 94016" +315993,Lightning Charging Cable,1,14.95,12/14/19 15:07,"19 Willow St, San Francisco, CA 94016" +315994,AAA Batteries (4-pack),1,2.99,12/27/19 15:10,"256 Walnut St, San Francisco, CA 94016" +315995,AA Batteries (4-pack),1,3.84,12/10/19 17:45,"523 1st St, San Francisco, CA 94016" +315996,Apple Airpods Headphones,1,150,12/26/19 23:05,"846 Cedar St, Austin, TX 73301" +315997,AAA Batteries (4-pack),3,2.99,12/12/19 22:29,"963 8th St, Boston, MA 02215" +315998,Google Phone,1,600,12/28/19 15:46,"574 Spruce St, Los Angeles, CA 90001" +315999,Lightning Charging Cable,1,14.95,12/08/19 01:31,"120 Cherry St, Dallas, TX 75001" +316000,Google Phone,1,600,12/31/19 11:13,"404 Lincoln St, Seattle, WA 98101" +316001,Apple Airpods Headphones,1,150,12/25/19 12:52,"772 Meadow St, Atlanta, GA 30301" +316002,AA Batteries (4-pack),1,3.84,12/08/19 12:23,"585 Willow St, Austin, TX 73301" +316003,AAA Batteries (4-pack),1,2.99,12/30/19 19:12,"749 8th St, San Francisco, CA 94016" +316004,Wired Headphones,1,11.99,12/21/19 20:04,"602 Lakeview St, Austin, TX 73301" +316005,Google Phone,1,600,12/11/19 23:03,"823 Center St, San Francisco, CA 94016" +316006,AAA Batteries (4-pack),1,2.99,12/29/19 12:04,"619 Cedar St, Los Angeles, CA 90001" +316007,27in 4K Gaming Monitor,1,389.99,12/01/19 13:04,"511 5th St, San Francisco, CA 94016" +316008,AA Batteries (4-pack),1,3.84,12/21/19 07:54,"817 13th St, San Francisco, CA 94016" +316009,Lightning Charging Cable,1,14.95,12/03/19 11:45,"140 1st St, Los Angeles, CA 90001" +316010,Wired Headphones,1,11.99,12/17/19 10:11,"899 Johnson St, San Francisco, CA 94016" +316011,Lightning Charging Cable,1,14.95,12/08/19 18:22,"77 14th St, Los Angeles, CA 90001" +316012,34in Ultrawide Monitor,1,379.99,12/29/19 17:05,"670 4th St, San Francisco, CA 94016" +316013,AA Batteries (4-pack),1,3.84,12/16/19 08:00,"871 Ridge St, Portland, OR 97035" +316014,Flatscreen TV,1,300,12/16/19 17:10,"329 Hickory St, San Francisco, CA 94016" +316015,AA Batteries (4-pack),1,3.84,12/31/19 09:22,"611 Church St, Los Angeles, CA 90001" +316016,Lightning Charging Cable,1,14.95,12/14/19 09:44,"125 Hill St, Dallas, TX 75001" +316017,Lightning Charging Cable,1,14.95,12/31/19 07:57,"633 West St, Boston, MA 02215" +316018,27in FHD Monitor,1,149.99,12/31/19 08:37,"980 North St, Portland, ME 04101" +316019,Bose SoundSport Headphones,1,99.99,12/22/19 18:05,"714 North St, New York City, NY 10001" +316020,ThinkPad Laptop,1,999.99,12/17/19 12:28,"30 North St, San Francisco, CA 94016" +316021,AA Batteries (4-pack),1,3.84,12/01/19 15:43,"101 Ridge St, Atlanta, GA 30301" +316022,AA Batteries (4-pack),1,3.84,12/12/19 21:34,"504 Center St, New York City, NY 10001" +316023,AA Batteries (4-pack),1,3.84,12/08/19 14:48,"744 Center St, Boston, MA 02215" +316024,Lightning Charging Cable,1,14.95,12/21/19 18:17,"220 Cherry St, San Francisco, CA 94016" +316025,USB-C Charging Cable,1,11.95,12/29/19 15:32,"1 7th St, Los Angeles, CA 90001" +316026,USB-C Charging Cable,1,11.95,12/02/19 12:08,"196 Cherry St, San Francisco, CA 94016" +316027,Apple Airpods Headphones,1,150,12/08/19 11:38,"897 Dogwood St, Boston, MA 02215" +316028,Apple Airpods Headphones,1,150,12/03/19 11:15,"69 Lincoln St, Dallas, TX 75001" +316029,Lightning Charging Cable,1,14.95,12/30/19 19:27,"870 Johnson St, New York City, NY 10001" +316030,USB-C Charging Cable,1,11.95,12/08/19 18:12,"635 River St, San Francisco, CA 94016" +316031,Wired Headphones,1,11.99,12/26/19 22:40,"109 South St, San Francisco, CA 94016" +316032,AAA Batteries (4-pack),2,2.99,12/25/19 19:31,"761 Main St, New York City, NY 10001" +316033,AA Batteries (4-pack),1,3.84,12/14/19 09:24,"472 8th St, Austin, TX 73301" +316034,Lightning Charging Cable,1,14.95,12/11/19 09:05,"767 5th St, Los Angeles, CA 90001" +316035,Wired Headphones,1,11.99,12/15/19 16:32,"770 West St, Austin, TX 73301" +316036,USB-C Charging Cable,2,11.95,12/15/19 12:03,"667 Wilson St, Portland, OR 97035" +316037,Macbook Pro Laptop,1,1700,12/28/19 12:49,"855 Forest St, San Francisco, CA 94016" +316038,Flatscreen TV,1,300,12/19/19 18:35,"292 Washington St, Boston, MA 02215" +316039,AAA Batteries (4-pack),1,2.99,12/18/19 20:56,"435 Adams St, Seattle, WA 98101" +316040,27in FHD Monitor,1,149.99,12/23/19 22:40,"271 Lake St, Dallas, TX 75001" +316041,Wired Headphones,1,11.99,12/23/19 20:43,"43 11th St, Portland, OR 97035" +316042,Wired Headphones,1,11.99,12/30/19 21:05,"987 2nd St, New York City, NY 10001" +316043,Bose SoundSport Headphones,1,99.99,12/06/19 18:31,"303 Maple St, Atlanta, GA 30301" +316044,Google Phone,1,600,12/09/19 16:53,"317 Dogwood St, Atlanta, GA 30301" +316045,Flatscreen TV,1,300,12/23/19 22:45,"213 5th St, Boston, MA 02215" +316046,Wired Headphones,1,11.99,12/03/19 06:33,"172 10th St, Los Angeles, CA 90001" +316047,AA Batteries (4-pack),2,3.84,12/07/19 14:25,"529 6th St, Dallas, TX 75001" +316048,Bose SoundSport Headphones,1,99.99,12/04/19 14:52,"541 Cherry St, Atlanta, GA 30301" +316049,Lightning Charging Cable,1,14.95,12/05/19 17:14,"795 5th St, Los Angeles, CA 90001" +316050,Bose SoundSport Headphones,1,99.99,12/07/19 12:17,"196 Madison St, Los Angeles, CA 90001" +316051,USB-C Charging Cable,1,11.95,12/16/19 15:43,"486 Jackson St, San Francisco, CA 94016" +316052,Lightning Charging Cable,1,14.95,12/10/19 10:21,"45 Lincoln St, San Francisco, CA 94016" +316053,Wired Headphones,1,11.99,12/29/19 10:05,"126 Dogwood St, Los Angeles, CA 90001" +316054,Flatscreen TV,1,300,12/15/19 13:19,"839 Cedar St, San Francisco, CA 94016" +316055,Lightning Charging Cable,1,14.95,12/05/19 18:42,"559 2nd St, Los Angeles, CA 90001" +316056,Bose SoundSport Headphones,1,99.99,12/03/19 19:06,"515 Cherry St, Boston, MA 02215" +316057,Bose SoundSport Headphones,1,99.99,12/20/19 18:17,"357 Park St, Dallas, TX 75001" +316058,Bose SoundSport Headphones,1,99.99,12/02/19 01:42,"252 Park St, Portland, OR 97035" +316059,Lightning Charging Cable,1,14.95,12/07/19 08:58,"829 Main St, Boston, MA 02215" +316060,Wired Headphones,1,11.99,12/05/19 19:32,"360 6th St, Los Angeles, CA 90001" +316060,Wired Headphones,1,11.99,12/05/19 19:32,"360 6th St, Los Angeles, CA 90001" +316061,Lightning Charging Cable,1,14.95,12/07/19 14:23,"855 Cherry St, Seattle, WA 98101" +316062,LG Dryer,1,600.0,12/02/19 16:59,"4 Willow St, Boston, MA 02215" +316063,Vareebadd Phone,1,400,12/14/19 12:03,"801 13th St, Boston, MA 02215" +316064,Lightning Charging Cable,1,14.95,12/30/19 07:29,"18 Jackson St, Los Angeles, CA 90001" +316065,Apple Airpods Headphones,1,150,12/25/19 12:22,"867 6th St, New York City, NY 10001" +316066,AAA Batteries (4-pack),3,2.99,12/21/19 21:21,"701 Park St, New York City, NY 10001" +316067,iPhone,1,700,12/21/19 11:59,"931 Meadow St, New York City, NY 10001" +316068,27in 4K Gaming Monitor,1,389.99,12/25/19 08:50,"108 2nd St, Atlanta, GA 30301" +316069,USB-C Charging Cable,1,11.95,12/07/19 09:28,"808 9th St, Dallas, TX 75001" +316070,34in Ultrawide Monitor,1,379.99,12/16/19 01:21,"342 Wilson St, Los Angeles, CA 90001" +316071,Wired Headphones,1,11.99,12/05/19 15:12,"464 Jefferson St, Dallas, TX 75001" +316072,Lightning Charging Cable,2,14.95,12/06/19 12:33,"563 Spruce St, Los Angeles, CA 90001" +316073,ThinkPad Laptop,1,999.99,12/05/19 10:00,"849 Church St, Atlanta, GA 30301" +316074,Apple Airpods Headphones,1,150,12/30/19 14:41,"217 Pine St, Boston, MA 02215" +316074,Lightning Charging Cable,1,14.95,12/30/19 14:41,"217 Pine St, Boston, MA 02215" +316075,Bose SoundSport Headphones,1,99.99,12/09/19 19:55,"47 South St, Atlanta, GA 30301" +316075,Lightning Charging Cable,1,14.95,12/09/19 19:55,"47 South St, Atlanta, GA 30301" +316076,Wired Headphones,1,11.99,12/07/19 21:05,"275 2nd St, Los Angeles, CA 90001" +316077,34in Ultrawide Monitor,1,379.99,12/25/19 05:37,"661 4th St, Los Angeles, CA 90001" +316078,Lightning Charging Cable,1,14.95,12/26/19 14:15,"644 Lincoln St, San Francisco, CA 94016" +316079,AA Batteries (4-pack),1,3.84,12/03/19 11:07,"447 Jackson St, Dallas, TX 75001" +316080,USB-C Charging Cable,1,11.95,12/15/19 18:25,"926 Elm St, Boston, MA 02215" +316081,USB-C Charging Cable,1,11.95,12/30/19 17:27,"925 Jackson St, Atlanta, GA 30301" +316082,USB-C Charging Cable,1,11.95,12/06/19 20:13,"355 Walnut St, Atlanta, GA 30301" +316083,Bose SoundSport Headphones,1,99.99,12/25/19 20:16,"735 Madison St, Seattle, WA 98101" +316084,USB-C Charging Cable,1,11.95,12/02/19 20:28,"135 Maple St, San Francisco, CA 94016" +316085,AA Batteries (4-pack),1,3.84,12/17/19 15:57,"208 5th St, San Francisco, CA 94016" +316086,27in 4K Gaming Monitor,1,389.99,12/18/19 09:33,"679 11th St, San Francisco, CA 94016" +316087,Wired Headphones,1,11.99,12/06/19 20:12,"897 5th St, Los Angeles, CA 90001" +316088,AA Batteries (4-pack),1,3.84,12/19/19 13:55,"970 Willow St, Los Angeles, CA 90001" +316089,Vareebadd Phone,1,400,12/02/19 16:40,"944 Madison St, Dallas, TX 75001" +316089,USB-C Charging Cable,1,11.95,12/02/19 16:40,"944 Madison St, Dallas, TX 75001" +316090,AAA Batteries (4-pack),1,2.99,12/29/19 15:09,"269 Ridge St, Austin, TX 73301" +316091,USB-C Charging Cable,1,11.95,12/16/19 07:03,"679 Lake St, Los Angeles, CA 90001" +316092,27in 4K Gaming Monitor,1,389.99,12/20/19 13:56,"521 10th St, San Francisco, CA 94016" +316093,Wired Headphones,1,11.99,12/09/19 23:21,"147 Jackson St, Los Angeles, CA 90001" +316094,27in FHD Monitor,1,149.99,12/21/19 21:08,"827 River St, San Francisco, CA 94016" +316095,Lightning Charging Cable,1,14.95,12/16/19 15:38,"969 Meadow St, Atlanta, GA 30301" +316096,USB-C Charging Cable,1,11.95,12/07/19 20:25,"670 Jackson St, Los Angeles, CA 90001" +316097,Apple Airpods Headphones,1,150,12/03/19 00:40,"979 Chestnut St, Boston, MA 02215" +316097,Apple Airpods Headphones,1,150,12/03/19 00:40,"979 Chestnut St, Boston, MA 02215" +316098,AA Batteries (4-pack),1,3.84,12/11/19 12:51,"8 5th St, New York City, NY 10001" +316099,Lightning Charging Cable,1,14.95,12/18/19 01:37,"165 7th St, New York City, NY 10001" +316100,34in Ultrawide Monitor,1,379.99,12/17/19 12:22,"445 Willow St, Portland, ME 04101" +316101,Vareebadd Phone,1,400,12/16/19 00:00,"77 Willow St, Boston, MA 02215" +316102,27in 4K Gaming Monitor,1,389.99,12/12/19 23:10,"235 Highland St, Dallas, TX 75001" +316103,USB-C Charging Cable,4,11.95,12/04/19 16:59,"142 West St, San Francisco, CA 94016" +316104,USB-C Charging Cable,1,11.95,12/25/19 09:02,"144 Meadow St, San Francisco, CA 94016" +316105,USB-C Charging Cable,1,11.95,12/17/19 18:18,"166 8th St, San Francisco, CA 94016" +316106,Google Phone,1,600,12/15/19 03:58,"544 Dogwood St, Seattle, WA 98101" +316107,Apple Airpods Headphones,1,150,12/07/19 00:02,"380 12th St, Atlanta, GA 30301" +316108,USB-C Charging Cable,1,11.95,12/02/19 16:58,"817 Sunset St, Portland, OR 97035" +316109,Apple Airpods Headphones,1,150,12/10/19 16:54,"104 Park St, New York City, NY 10001" +316110,Bose SoundSport Headphones,1,99.99,12/08/19 21:17,"404 Walnut St, Austin, TX 73301" +316111,AA Batteries (4-pack),1,3.84,12/26/19 20:38,"211 10th St, San Francisco, CA 94016" +316112,USB-C Charging Cable,1,11.95,12/23/19 19:04,"50 Elm St, Los Angeles, CA 90001" +316113,iPhone,1,700,12/13/19 12:58,"209 North St, Los Angeles, CA 90001" +316114,Google Phone,1,600,12/24/19 13:38,"38 Spruce St, Atlanta, GA 30301" +316115,ThinkPad Laptop,1,999.99,12/27/19 11:12,"979 12th St, Boston, MA 02215" +316116,Apple Airpods Headphones,1,150,12/20/19 12:29,"297 West St, Los Angeles, CA 90001" +316117,20in Monitor,1,109.99,12/18/19 01:12,"207 Sunset St, Dallas, TX 75001" +316118,AAA Batteries (4-pack),1,2.99,12/14/19 21:46,"831 4th St, New York City, NY 10001" +316119,Google Phone,1,600,12/28/19 11:59,"451 Lincoln St, Austin, TX 73301" +316120,34in Ultrawide Monitor,1,379.99,12/03/19 08:11,"627 Park St, Atlanta, GA 30301" +316121,AA Batteries (4-pack),1,3.84,12/13/19 22:09,"289 4th St, San Francisco, CA 94016" +316122,Lightning Charging Cable,1,14.95,12/21/19 18:17,"600 Maple St, New York City, NY 10001" +316123,Lightning Charging Cable,1,14.95,12/17/19 23:16,"86 Johnson St, San Francisco, CA 94016" +316124,Lightning Charging Cable,1,14.95,12/19/19 20:39,"563 Spruce St, New York City, NY 10001" +316124,AA Batteries (4-pack),3,3.84,12/19/19 20:39,"563 Spruce St, New York City, NY 10001" +316125,Lightning Charging Cable,1,14.95,12/30/19 16:26,"677 Dogwood St, Austin, TX 73301" +316126,Google Phone,1,600,12/27/19 01:32,"439 Ridge St, Los Angeles, CA 90001" +316127,Wired Headphones,2,11.99,12/04/19 20:07,"698 River St, Los Angeles, CA 90001" +316128,AA Batteries (4-pack),1,3.84,12/23/19 13:44,"973 Lincoln St, San Francisco, CA 94016" +316129,Wired Headphones,1,11.99,12/30/19 19:24,"718 13th St, New York City, NY 10001" +316130,iPhone,1,700,12/12/19 07:47,"471 Walnut St, New York City, NY 10001" +316130,Apple Airpods Headphones,1,150,12/12/19 07:47,"471 Walnut St, New York City, NY 10001" +316131,Flatscreen TV,1,300,12/10/19 09:32,"820 Maple St, Austin, TX 73301" +316132,Macbook Pro Laptop,1,1700,12/23/19 14:18,"270 14th St, Boston, MA 02215" +316133,USB-C Charging Cable,1,11.95,12/12/19 14:15,"845 Ridge St, Los Angeles, CA 90001" +316134,USB-C Charging Cable,1,11.95,12/09/19 01:28,"493 Jackson St, Los Angeles, CA 90001" +316135,AA Batteries (4-pack),1,3.84,12/02/19 16:51,"896 11th St, Dallas, TX 75001" +316136,USB-C Charging Cable,1,11.95,12/20/19 18:21,"730 Ridge St, San Francisco, CA 94016" +316137,27in 4K Gaming Monitor,1,389.99,12/07/19 13:24,"534 Main St, Portland, OR 97035" +316138,Bose SoundSport Headphones,1,99.99,12/31/19 21:12,"339 Center St, Boston, MA 02215" +316139,Lightning Charging Cable,1,14.95,12/23/19 15:40,"512 Cedar St, Austin, TX 73301" +316140,AA Batteries (4-pack),1,3.84,12/10/19 09:07,"604 Adams St, Los Angeles, CA 90001" +316141,USB-C Charging Cable,1,11.95,12/21/19 01:47,"602 Sunset St, Seattle, WA 98101" +316142,Lightning Charging Cable,1,14.95,12/07/19 20:18,"370 Highland St, Boston, MA 02215" +316143,Apple Airpods Headphones,1,150,12/22/19 18:27,"206 Dogwood St, San Francisco, CA 94016" +316144,Lightning Charging Cable,1,14.95,12/22/19 23:15,"561 7th St, Boston, MA 02215" +316145,Wired Headphones,1,11.99,12/02/19 17:40,"984 Church St, Boston, MA 02215" +316146,USB-C Charging Cable,3,11.95,12/27/19 10:18,"483 Johnson St, New York City, NY 10001" +316147,Lightning Charging Cable,1,14.95,12/14/19 12:26,"631 North St, Boston, MA 02215" +316148,Lightning Charging Cable,1,14.95,12/10/19 14:59,"208 8th St, Austin, TX 73301" +316149,AAA Batteries (4-pack),1,2.99,12/02/19 14:04,"281 1st St, New York City, NY 10001" +316150,USB-C Charging Cable,1,11.95,12/19/19 15:55,"116 Spruce St, New York City, NY 10001" +316151,AAA Batteries (4-pack),1,2.99,12/24/19 13:22,"574 10th St, New York City, NY 10001" +316152,AA Batteries (4-pack),1,3.84,12/10/19 22:26,"836 10th St, Seattle, WA 98101" +316153,Flatscreen TV,1,300,12/12/19 19:18,"491 Hill St, New York City, NY 10001" +316154,AAA Batteries (4-pack),1,2.99,12/27/19 14:00,"77 Hickory St, New York City, NY 10001" +316155,Bose SoundSport Headphones,2,99.99,12/05/19 12:35,"795 2nd St, Dallas, TX 75001" +316156,27in 4K Gaming Monitor,1,389.99,12/21/19 21:27,"499 South St, Los Angeles, CA 90001" +316157,USB-C Charging Cable,1,11.95,12/02/19 16:03,"795 Cherry St, Los Angeles, CA 90001" +316158,Lightning Charging Cable,1,14.95,12/23/19 16:02,"699 River St, Seattle, WA 98101" +316159,iPhone,1,700,12/25/19 13:27,"356 South St, San Francisco, CA 94016" +316160,Bose SoundSport Headphones,1,99.99,12/22/19 22:13,"821 South St, Portland, OR 97035" +316161,Lightning Charging Cable,1,14.95,12/30/19 09:12,"811 Walnut St, San Francisco, CA 94016" +316162,ThinkPad Laptop,1,999.99,12/11/19 22:05,"936 7th St, Atlanta, GA 30301" +316163,AA Batteries (4-pack),2,3.84,12/23/19 18:53,"947 5th St, Dallas, TX 75001" +316164,Lightning Charging Cable,1,14.95,12/27/19 14:58,"661 2nd St, Dallas, TX 75001" +316165,Macbook Pro Laptop,1,1700,12/21/19 13:00,"471 Chestnut St, Atlanta, GA 30301" +316166,AAA Batteries (4-pack),1,2.99,12/10/19 14:48,"637 North St, New York City, NY 10001" +316167,AA Batteries (4-pack),1,3.84,12/05/19 13:28,"16 Willow St, San Francisco, CA 94016" +316168,AAA Batteries (4-pack),1,2.99,12/16/19 05:46,"95 7th St, Los Angeles, CA 90001" +316169,Wired Headphones,1,11.99,12/08/19 19:27,"746 14th St, Boston, MA 02215" +316170,Bose SoundSport Headphones,1,99.99,12/03/19 17:53,"13 7th St, Boston, MA 02215" +316171,USB-C Charging Cable,1,11.95,12/26/19 18:03,"293 Spruce St, San Francisco, CA 94016" +316172,USB-C Charging Cable,1,11.95,12/13/19 13:15,"172 7th St, Atlanta, GA 30301" +316173,Lightning Charging Cable,1,14.95,12/30/19 22:19,"55 Ridge St, Boston, MA 02215" +316174,iPhone,1,700,12/30/19 07:24,"516 1st St, San Francisco, CA 94016" +316175,AA Batteries (4-pack),1,3.84,12/12/19 21:31,"796 Church St, Boston, MA 02215" +316176,Bose SoundSport Headphones,1,99.99,12/22/19 12:09,"153 River St, New York City, NY 10001" +316177,AA Batteries (4-pack),1,3.84,12/15/19 19:55,"572 9th St, San Francisco, CA 94016" +316178,USB-C Charging Cable,1,11.95,12/14/19 18:04,"273 Adams St, New York City, NY 10001" +316179,27in 4K Gaming Monitor,1,389.99,12/19/19 22:12,"427 Main St, Los Angeles, CA 90001" +316180,Apple Airpods Headphones,1,150,12/03/19 09:31,"322 Jackson St, San Francisco, CA 94016" +316181,27in FHD Monitor,1,149.99,12/20/19 14:40,"209 Chestnut St, Boston, MA 02215" +316182,AAA Batteries (4-pack),1,2.99,12/25/19 08:44,"924 Washington St, Boston, MA 02215" +316183,AAA Batteries (4-pack),1,2.99,12/31/19 14:59,"572 Lincoln St, Boston, MA 02215" +316184,Apple Airpods Headphones,1,150,12/03/19 20:23,"813 Johnson St, Los Angeles, CA 90001" +316185,Lightning Charging Cable,1,14.95,12/18/19 10:42,"110 10th St, Boston, MA 02215" +316186,Lightning Charging Cable,1,14.95,12/13/19 12:12,"548 Spruce St, San Francisco, CA 94016" +316187,Bose SoundSport Headphones,1,99.99,12/09/19 09:19,"609 Center St, Dallas, TX 75001" +316188,Lightning Charging Cable,1,14.95,12/05/19 17:19,"836 Walnut St, Seattle, WA 98101" +316189,27in 4K Gaming Monitor,1,389.99,12/22/19 14:07,"82 1st St, Atlanta, GA 30301" +,,,,, +316190,Lightning Charging Cable,1,14.95,12/08/19 09:32,"375 Lincoln St, New York City, NY 10001" +316191,Bose SoundSport Headphones,1,99.99,12/29/19 20:28,"383 Jefferson St, San Francisco, CA 94016" +316192,USB-C Charging Cable,1,11.95,12/17/19 18:03,"137 Park St, New York City, NY 10001" +316193,Apple Airpods Headphones,1,150,12/29/19 14:00,"693 7th St, New York City, NY 10001" +316194,Bose SoundSport Headphones,1,99.99,12/09/19 20:24,"495 9th St, San Francisco, CA 94016" +316195,34in Ultrawide Monitor,1,379.99,12/21/19 21:54,"795 Center St, New York City, NY 10001" +316196,27in 4K Gaming Monitor,1,389.99,12/26/19 11:57,"43 Cherry St, Portland, ME 04101" +316197,iPhone,1,700,12/26/19 20:39,"168 South St, New York City, NY 10001" +316198,Wired Headphones,1,11.99,12/21/19 00:45,"354 Chestnut St, Los Angeles, CA 90001" +316199,Lightning Charging Cable,1,14.95,12/23/19 09:36,"261 7th St, San Francisco, CA 94016" +316200,Bose SoundSport Headphones,1,99.99,12/11/19 21:53,"600 Cherry St, Seattle, WA 98101" +316201,Apple Airpods Headphones,1,150,12/11/19 11:59,"704 Maple St, Dallas, TX 75001" +316202,Wired Headphones,1,11.99,12/15/19 22:22,"210 Hickory St, Atlanta, GA 30301" +316203,Lightning Charging Cable,2,14.95,12/17/19 10:00,"816 Highland St, Boston, MA 02215" +316204,Lightning Charging Cable,1,14.95,12/13/19 20:15,"104 12th St, Boston, MA 02215" +316205,27in 4K Gaming Monitor,1,389.99,12/11/19 10:07,"36 West St, New York City, NY 10001" +316206,USB-C Charging Cable,1,11.95,12/23/19 15:11,"80 Washington St, Boston, MA 02215" +316207,Apple Airpods Headphones,1,150,12/06/19 15:02,"75 2nd St, Los Angeles, CA 90001" +316208,Bose SoundSport Headphones,1,99.99,12/30/19 11:33,"788 West St, Dallas, TX 75001" +316209,AA Batteries (4-pack),1,3.84,12/21/19 17:59,"800 North St, San Francisco, CA 94016" +316210,Apple Airpods Headphones,1,150,12/31/19 21:36,"49 Forest St, Boston, MA 02215" +316211,Wired Headphones,1,11.99,12/06/19 14:42,"142 8th St, Portland, OR 97035" +316212,Lightning Charging Cable,1,14.95,12/27/19 10:56,"921 Cedar St, Los Angeles, CA 90001" +316213,Wired Headphones,1,11.99,12/31/19 22:49,"782 West St, Portland, OR 97035" +316214,Bose SoundSport Headphones,1,99.99,12/13/19 19:52,"372 Jefferson St, San Francisco, CA 94016" +316215,Apple Airpods Headphones,1,150,12/14/19 08:19,"248 Pine St, Boston, MA 02215" +316216,AA Batteries (4-pack),1,3.84,12/03/19 23:26,"179 River St, Austin, TX 73301" +316217,27in FHD Monitor,1,149.99,12/04/19 11:48,"41 12th St, New York City, NY 10001" +316218,AAA Batteries (4-pack),2,2.99,12/18/19 20:59,"154 Lincoln St, Los Angeles, CA 90001" +316219,Lightning Charging Cable,1,14.95,12/31/19 22:31,"424 Willow St, Seattle, WA 98101" +316220,USB-C Charging Cable,1,11.95,12/26/19 15:58,"470 10th St, San Francisco, CA 94016" +316221,AAA Batteries (4-pack),1,2.99,12/27/19 16:28,"635 Ridge St, Seattle, WA 98101" +316222,Bose SoundSport Headphones,1,99.99,12/21/19 18:04,"427 8th St, San Francisco, CA 94016" +316223,AAA Batteries (4-pack),1,2.99,12/06/19 12:27,"696 Church St, San Francisco, CA 94016" +316224,USB-C Charging Cable,1,11.95,12/25/19 21:54,"844 Jackson St, Los Angeles, CA 90001" +316225,AA Batteries (4-pack),1,3.84,12/20/19 16:48,"355 North St, Portland, OR 97035" +316226,27in FHD Monitor,1,149.99,12/26/19 20:57,"226 Hickory St, Seattle, WA 98101" +316227,USB-C Charging Cable,1,11.95,12/25/19 06:16,"16 1st St, Los Angeles, CA 90001" +316228,Wired Headphones,1,11.99,12/25/19 11:59,"927 Jefferson St, New York City, NY 10001" +316229,Lightning Charging Cable,1,14.95,12/02/19 23:28,"466 Madison St, Dallas, TX 75001" +316230,Wired Headphones,1,11.99,12/11/19 22:53,"559 Spruce St, San Francisco, CA 94016" +316231,ThinkPad Laptop,1,999.99,12/06/19 13:38,"261 Lakeview St, Dallas, TX 75001" +316232,AA Batteries (4-pack),1,3.84,12/04/19 12:59,"866 Cherry St, Atlanta, GA 30301" +316233,Macbook Pro Laptop,1,1700,12/10/19 07:54,"998 Johnson St, Seattle, WA 98101" +316233,AAA Batteries (4-pack),2,2.99,12/10/19 07:54,"998 Johnson St, Seattle, WA 98101" +316234,AAA Batteries (4-pack),2,2.99,12/09/19 18:28,"59 Cherry St, San Francisco, CA 94016" +316235,Apple Airpods Headphones,1,150,12/09/19 13:24,"720 West St, San Francisco, CA 94016" +316236,Lightning Charging Cable,2,14.95,12/04/19 19:57,"160 Maple St, Atlanta, GA 30301" +316237,Lightning Charging Cable,1,14.95,12/31/19 11:09,"922 West St, Los Angeles, CA 90001" +316238,Bose SoundSport Headphones,1,99.99,12/08/19 23:10,"946 6th St, Dallas, TX 75001" +316239,Lightning Charging Cable,1,14.95,12/29/19 09:04,"37 1st St, Portland, ME 04101" +,,,,, +316240,Wired Headphones,2,11.99,12/10/19 18:03,"300 11th St, San Francisco, CA 94016" +316241,27in 4K Gaming Monitor,1,389.99,12/05/19 16:23,"168 Main St, New York City, NY 10001" +316242,AAA Batteries (4-pack),3,2.99,12/15/19 15:19,"893 Madison St, Los Angeles, CA 90001" +316243,Lightning Charging Cable,1,14.95,12/09/19 11:55,"637 13th St, Portland, OR 97035" +316244,AAA Batteries (4-pack),2,2.99,12/29/19 21:04,"581 River St, San Francisco, CA 94016" +316245,20in Monitor,1,109.99,12/20/19 21:50,"969 13th St, Austin, TX 73301" +316245,34in Ultrawide Monitor,1,379.99,12/20/19 21:50,"969 13th St, Austin, TX 73301" +316246,USB-C Charging Cable,1,11.95,12/18/19 22:04,"923 Chestnut St, San Francisco, CA 94016" +316247,AA Batteries (4-pack),1,3.84,12/12/19 06:19,"343 8th St, Atlanta, GA 30301" +316248,Macbook Pro Laptop,1,1700,12/08/19 10:33,"143 Forest St, Portland, ME 04101" +316249,34in Ultrawide Monitor,1,379.99,12/29/19 09:49,"432 2nd St, San Francisco, CA 94016" +316250,AA Batteries (4-pack),3,3.84,12/05/19 04:17,"153 Meadow St, San Francisco, CA 94016" +316251,Vareebadd Phone,1,400,01/01/20 00:51,"713 5th St, New York City, NY 10001" +316252,Wired Headphones,1,11.99,12/17/19 21:48,"52 Wilson St, Portland, ME 04101" +316253,AA Batteries (4-pack),1,3.84,12/24/19 18:00,"717 6th St, Atlanta, GA 30301" +316254,Flatscreen TV,1,300,12/20/19 14:01,"710 Dogwood St, Dallas, TX 75001" +316255,AAA Batteries (4-pack),1,2.99,12/16/19 16:03,"731 Church St, Los Angeles, CA 90001" +316255,Flatscreen TV,1,300,12/16/19 16:03,"731 Church St, Los Angeles, CA 90001" +316256,Bose SoundSport Headphones,1,99.99,12/04/19 14:53,"868 2nd St, Austin, TX 73301" +316257,Flatscreen TV,1,300,12/08/19 01:56,"592 Sunset St, Portland, OR 97035" +316258,USB-C Charging Cable,1,11.95,12/27/19 09:27,"594 River St, Los Angeles, CA 90001" +316259,Macbook Pro Laptop,1,1700,12/31/19 23:10,"711 Walnut St, Los Angeles, CA 90001" +316260,Bose SoundSport Headphones,1,99.99,12/11/19 12:56,"295 Maple St, Dallas, TX 75001" +316261,Apple Airpods Headphones,1,150,12/05/19 18:12,"32 Cherry St, Atlanta, GA 30301" +316262,USB-C Charging Cable,1,11.95,12/22/19 09:13,"390 10th St, San Francisco, CA 94016" +316263,AA Batteries (4-pack),2,3.84,12/20/19 19:00,"490 2nd St, Los Angeles, CA 90001" +316264,AAA Batteries (4-pack),1,2.99,12/25/19 21:15,"421 Willow St, Seattle, WA 98101" +316265,Wired Headphones,1,11.99,12/11/19 12:45,"604 Dogwood St, San Francisco, CA 94016" +316266,27in 4K Gaming Monitor,1,389.99,12/27/19 14:25,"619 11th St, New York City, NY 10001" +316266,Bose SoundSport Headphones,1,99.99,12/27/19 14:25,"619 11th St, New York City, NY 10001" +316267,AA Batteries (4-pack),1,3.84,12/31/19 16:07,"599 Wilson St, Portland, OR 97035" +316268,AAA Batteries (4-pack),3,2.99,12/26/19 11:53,"725 10th St, San Francisco, CA 94016" +316269,Wired Headphones,1,11.99,12/15/19 18:14,"317 Madison St, Seattle, WA 98101" +316270,Lightning Charging Cable,1,14.95,12/24/19 19:48,"21 1st St, Boston, MA 02215" +316271,AAA Batteries (4-pack),1,2.99,12/05/19 12:01,"704 West St, San Francisco, CA 94016" +316272,USB-C Charging Cable,1,11.95,12/06/19 13:30,"761 Spruce St, Seattle, WA 98101" +316273,AAA Batteries (4-pack),2,2.99,12/21/19 12:51,"129 Madison St, San Francisco, CA 94016" +316274,Bose SoundSport Headphones,1,99.99,12/26/19 09:03,"158 Jackson St, Los Angeles, CA 90001" +316275,USB-C Charging Cable,1,11.95,12/26/19 21:48,"670 14th St, San Francisco, CA 94016" +316276,iPhone,1,700,12/08/19 20:42,"56 11th St, Portland, OR 97035" +316276,Apple Airpods Headphones,2,150,12/08/19 20:42,"56 11th St, Portland, OR 97035" +316277,Lightning Charging Cable,1,14.95,12/19/19 12:26,"602 Church St, Dallas, TX 75001" +316278,20in Monitor,1,109.99,12/16/19 11:43,"933 Wilson St, New York City, NY 10001" +316279,Wired Headphones,1,11.99,12/17/19 09:13,"148 7th St, San Francisco, CA 94016" +316280,Lightning Charging Cable,2,14.95,12/24/19 09:22,"832 River St, Boston, MA 02215" +316281,34in Ultrawide Monitor,1,379.99,12/12/19 18:41,"371 2nd St, Austin, TX 73301" +316282,Wired Headphones,1,11.99,12/10/19 18:12,"732 Johnson St, Los Angeles, CA 90001" +316283,AA Batteries (4-pack),1,3.84,12/14/19 10:46,"619 Forest St, Atlanta, GA 30301" +316284,USB-C Charging Cable,1,11.95,12/25/19 12:20,"895 Pine St, Austin, TX 73301" +316285,Flatscreen TV,1,300,12/16/19 22:04,"429 Ridge St, Atlanta, GA 30301" +316286,Wired Headphones,1,11.99,12/18/19 18:00,"2 River St, Seattle, WA 98101" +316287,Wired Headphones,1,11.99,12/06/19 17:41,"633 5th St, New York City, NY 10001" +316288,Wired Headphones,1,11.99,12/13/19 18:34,"534 Park St, Austin, TX 73301" +316289,Wired Headphones,1,11.99,12/08/19 06:34,"209 Johnson St, Atlanta, GA 30301" +316290,LG Washing Machine,1,600.0,12/13/19 13:12,"859 2nd St, New York City, NY 10001" +316291,Wired Headphones,1,11.99,12/12/19 11:58,"578 6th St, Los Angeles, CA 90001" +316292,iPhone,1,700,12/03/19 09:24,"942 Spruce St, San Francisco, CA 94016" +316293,Apple Airpods Headphones,1,150,12/11/19 14:08,"992 Hill St, Dallas, TX 75001" +316294,27in FHD Monitor,1,149.99,12/08/19 12:49,"534 Elm St, Austin, TX 73301" +316295,AAA Batteries (4-pack),1,2.99,12/02/19 15:53,"33 Lake St, San Francisco, CA 94016" +316296,Lightning Charging Cable,1,14.95,12/26/19 19:25,"854 Forest St, San Francisco, CA 94016" +316297,27in 4K Gaming Monitor,1,389.99,12/19/19 18:08,"928 6th St, New York City, NY 10001" +316298,Apple Airpods Headphones,1,150,12/10/19 12:49,"726 West St, Atlanta, GA 30301" +316299,USB-C Charging Cable,2,11.95,12/01/19 21:35,"161 13th St, Seattle, WA 98101" +316300,AA Batteries (4-pack),3,3.84,12/29/19 11:34,"51 Spruce St, Dallas, TX 75001" +316301,Flatscreen TV,1,300,12/08/19 14:24,"94 8th St, San Francisco, CA 94016" +316302,Wired Headphones,1,11.99,12/28/19 16:08,"252 Lake St, Portland, ME 04101" +316303,Lightning Charging Cable,2,14.95,12/15/19 11:07,"973 Ridge St, Los Angeles, CA 90001" +316304,Vareebadd Phone,1,400,12/19/19 21:38,"643 Hill St, Los Angeles, CA 90001" +316305,Wired Headphones,1,11.99,12/03/19 11:25,"667 Johnson St, Dallas, TX 75001" +316306,Vareebadd Phone,1,400,12/01/19 19:49,"635 Ridge St, San Francisco, CA 94016" +316306,USB-C Charging Cable,1,11.95,12/01/19 19:49,"635 Ridge St, San Francisco, CA 94016" +316307,Google Phone,1,600,12/18/19 09:00,"404 Wilson St, Los Angeles, CA 90001" +316308,USB-C Charging Cable,1,11.95,12/24/19 11:22,"345 Lincoln St, Austin, TX 73301" +316309,Lightning Charging Cable,1,14.95,12/13/19 00:46,"574 Elm St, Los Angeles, CA 90001" +316310,Vareebadd Phone,1,400,12/14/19 00:30,"652 Chestnut St, San Francisco, CA 94016" +316311,USB-C Charging Cable,1,11.95,12/08/19 22:12,"785 5th St, Austin, TX 73301" +316312,AAA Batteries (4-pack),1,2.99,12/15/19 20:39,"441 Adams St, New York City, NY 10001" +316313,USB-C Charging Cable,1,11.95,12/02/19 11:39,"501 Church St, New York City, NY 10001" +316314,Apple Airpods Headphones,1,150,12/05/19 20:56,"152 Johnson St, Los Angeles, CA 90001" +316315,USB-C Charging Cable,1,11.95,12/17/19 10:31,"365 Wilson St, Los Angeles, CA 90001" +316316,AAA Batteries (4-pack),2,2.99,12/12/19 19:07,"984 North St, Dallas, TX 75001" +316317,Wired Headphones,1,11.99,12/03/19 22:06,"836 10th St, Boston, MA 02215" +316318,Lightning Charging Cable,1,14.95,12/17/19 09:31,"485 Lincoln St, Dallas, TX 75001" +316319,AA Batteries (4-pack),1,3.84,12/30/19 13:39,"73 Johnson St, New York City, NY 10001" +316320,Bose SoundSport Headphones,1,99.99,12/24/19 22:30,"518 Hickory St, Dallas, TX 75001" +316320,AAA Batteries (4-pack),1,2.99,12/24/19 22:30,"518 Hickory St, Dallas, TX 75001" +316321,AAA Batteries (4-pack),1,2.99,12/04/19 13:00,"952 12th St, Los Angeles, CA 90001" +316322,AAA Batteries (4-pack),1,2.99,12/16/19 07:10,"814 West St, San Francisco, CA 94016" +316323,Apple Airpods Headphones,1,150,12/24/19 14:51,"908 Highland St, Seattle, WA 98101" +316324,AAA Batteries (4-pack),1,2.99,12/08/19 11:12,"441 13th St, Dallas, TX 75001" +316325,Lightning Charging Cable,1,14.95,12/01/19 17:22,"380 Walnut St, Atlanta, GA 30301" +316326,AAA Batteries (4-pack),5,2.99,12/04/19 06:55,"853 Spruce St, Seattle, WA 98101" +316327,Apple Airpods Headphones,1,150,12/22/19 18:45,"332 Madison St, Los Angeles, CA 90001" +316328,Apple Airpods Headphones,1,150,12/11/19 17:27,"78 10th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +316329,Apple Airpods Headphones,1,150,12/18/19 12:01,"819 West St, Portland, OR 97035" +316330,Apple Airpods Headphones,1,150,12/26/19 09:49,"30 Lake St, Portland, OR 97035" +316331,Lightning Charging Cable,1,14.95,12/14/19 15:18,"99 Sunset St, New York City, NY 10001" +316332,Bose SoundSport Headphones,1,99.99,12/05/19 18:56,"976 10th St, San Francisco, CA 94016" +316333,USB-C Charging Cable,2,11.95,12/13/19 13:12,"768 Cherry St, Seattle, WA 98101" +316334,Flatscreen TV,1,300,12/22/19 16:20,"834 Cherry St, San Francisco, CA 94016" +316335,Bose SoundSport Headphones,1,99.99,12/21/19 06:27,"746 Willow St, Boston, MA 02215" +316336,iPhone,1,700,12/02/19 18:04,"534 7th St, Dallas, TX 75001" +316337,AAA Batteries (4-pack),1,2.99,12/10/19 13:42,"511 7th St, Los Angeles, CA 90001" +316338,27in FHD Monitor,1,149.99,12/02/19 22:49,"507 Willow St, San Francisco, CA 94016" +316339,Google Phone,1,600,12/01/19 20:28,"936 Pine St, New York City, NY 10001" +316339,USB-C Charging Cable,1,11.95,12/01/19 20:28,"936 Pine St, New York City, NY 10001" +316340,27in FHD Monitor,1,149.99,12/12/19 18:24,"434 Dogwood St, San Francisco, CA 94016" +316341,Wired Headphones,1,11.99,12/25/19 15:49,"180 Johnson St, San Francisco, CA 94016" +316342,USB-C Charging Cable,1,11.95,12/26/19 15:27,"721 Meadow St, Los Angeles, CA 90001" +316343,USB-C Charging Cable,1,11.95,12/18/19 18:01,"876 Church St, Dallas, TX 75001" +316344,Wired Headphones,1,11.99,12/26/19 12:55,"954 Forest St, New York City, NY 10001" +316345,USB-C Charging Cable,1,11.95,12/22/19 21:57,"50 Cherry St, San Francisco, CA 94016" +316346,Lightning Charging Cable,1,14.95,12/17/19 19:46,"846 Pine St, San Francisco, CA 94016" +316347,iPhone,1,700,12/27/19 23:50,"443 Forest St, Boston, MA 02215" +316348,Wired Headphones,1,11.99,12/27/19 21:43,"768 Walnut St, San Francisco, CA 94016" +316349,ThinkPad Laptop,1,999.99,12/19/19 10:56,"665 Elm St, Dallas, TX 75001" +316350,Lightning Charging Cable,1,14.95,12/22/19 21:25,"917 Jackson St, San Francisco, CA 94016" +316351,Flatscreen TV,1,300,12/22/19 19:12,"336 Johnson St, San Francisco, CA 94016" +316352,Vareebadd Phone,1,400,12/30/19 09:44,"536 9th St, Portland, ME 04101" +316353,Wired Headphones,1,11.99,12/17/19 17:47,"100 12th St, San Francisco, CA 94016" +316354,Bose SoundSport Headphones,1,99.99,12/04/19 19:10,"302 5th St, San Francisco, CA 94016" +316355,Apple Airpods Headphones,1,150,12/31/19 10:21,"306 14th St, Dallas, TX 75001" +316356,Apple Airpods Headphones,1,150,12/08/19 14:27,"148 Forest St, Los Angeles, CA 90001" +316357,Vareebadd Phone,1,400,12/23/19 17:33,"426 6th St, Austin, TX 73301" +316357,USB-C Charging Cable,1,11.95,12/23/19 17:33,"426 6th St, Austin, TX 73301" +316358,USB-C Charging Cable,1,11.95,12/29/19 19:45,"796 Cherry St, San Francisco, CA 94016" +316359,USB-C Charging Cable,1,11.95,12/26/19 19:51,"116 5th St, Portland, OR 97035" +316360,AAA Batteries (4-pack),4,2.99,12/31/19 16:53,"303 Walnut St, San Francisco, CA 94016" +316361,AAA Batteries (4-pack),2,2.99,12/27/19 12:19,"627 Lake St, Los Angeles, CA 90001" +316362,AAA Batteries (4-pack),6,2.99,12/09/19 10:37,"966 14th St, Austin, TX 73301" +316363,Google Phone,1,600,12/17/19 09:13,"831 7th St, New York City, NY 10001" +316364,Apple Airpods Headphones,1,150,12/10/19 20:54,"377 5th St, Boston, MA 02215" +316365,Bose SoundSport Headphones,1,99.99,12/31/19 11:19,"630 Meadow St, Boston, MA 02215" +316366,27in 4K Gaming Monitor,1,389.99,12/14/19 18:50,"230 Wilson St, New York City, NY 10001" +316367,Google Phone,1,600,12/14/19 06:09,"343 10th St, Los Angeles, CA 90001" +316368,LG Washing Machine,1,600.0,01/01/20 01:14,"667 Ridge St, New York City, NY 10001" +316369,Bose SoundSport Headphones,1,99.99,12/17/19 09:32,"671 West St, Atlanta, GA 30301" +316370,34in Ultrawide Monitor,1,379.99,12/18/19 17:49,"981 Elm St, Austin, TX 73301" +316371,AA Batteries (4-pack),1,3.84,12/16/19 12:44,"397 Ridge St, Los Angeles, CA 90001" +316372,AA Batteries (4-pack),1,3.84,12/19/19 18:03,"422 5th St, New York City, NY 10001" +316373,27in 4K Gaming Monitor,1,389.99,12/06/19 18:59,"551 1st St, Los Angeles, CA 90001" +316374,34in Ultrawide Monitor,1,379.99,12/04/19 22:06,"712 Cherry St, Los Angeles, CA 90001" +316375,Bose SoundSport Headphones,1,99.99,12/20/19 17:03,"311 River St, San Francisco, CA 94016" +316376,20in Monitor,1,109.99,12/14/19 08:58,"103 Main St, Atlanta, GA 30301" +316377,AA Batteries (4-pack),2,3.84,12/03/19 15:05,"894 Cedar St, Dallas, TX 75001" +316378,Lightning Charging Cable,1,14.95,12/02/19 14:30,"292 West St, Los Angeles, CA 90001" +316379,Lightning Charging Cable,1,14.95,12/13/19 21:16,"506 Church St, Atlanta, GA 30301" +316380,Wired Headphones,1,11.99,12/01/19 14:33,"955 Spruce St, Boston, MA 02215" +316381,AAA Batteries (4-pack),1,2.99,12/08/19 19:46,"287 9th St, Austin, TX 73301" +316382,Vareebadd Phone,1,400,12/23/19 23:49,"753 14th St, Atlanta, GA 30301" +316383,AA Batteries (4-pack),1,3.84,12/31/19 15:03,"608 Cedar St, San Francisco, CA 94016" +316384,27in FHD Monitor,1,149.99,12/18/19 16:19,"746 Park St, Los Angeles, CA 90001" +316385,USB-C Charging Cable,2,11.95,12/18/19 15:54,"7 Hickory St, San Francisco, CA 94016" +316386,ThinkPad Laptop,1,999.99,12/29/19 11:26,"79 10th St, San Francisco, CA 94016" +316387,USB-C Charging Cable,1,11.95,12/07/19 09:41,"13 12th St, Boston, MA 02215" +316388,34in Ultrawide Monitor,1,379.99,12/23/19 12:10,"269 13th St, San Francisco, CA 94016" +316389,USB-C Charging Cable,2,11.95,12/27/19 22:55,"911 Johnson St, Portland, ME 04101" +316390,27in FHD Monitor,1,149.99,12/12/19 21:42,"64 14th St, Seattle, WA 98101" +316391,Lightning Charging Cable,1,14.95,12/20/19 17:47,"775 Washington St, Boston, MA 02215" +316392,USB-C Charging Cable,2,11.95,12/05/19 11:49,"614 14th St, San Francisco, CA 94016" +316393,Lightning Charging Cable,1,14.95,12/17/19 10:50,"150 5th St, San Francisco, CA 94016" +316394,iPhone,1,700,12/31/19 01:12,"937 2nd St, New York City, NY 10001" +316395,Google Phone,1,600,12/12/19 14:48,"277 Lakeview St, New York City, NY 10001" +316396,27in 4K Gaming Monitor,1,389.99,12/21/19 12:45,"333 1st St, Atlanta, GA 30301" +316397,Wired Headphones,1,11.99,12/01/19 11:18,"433 Main St, Los Angeles, CA 90001" +316398,Bose SoundSport Headphones,1,99.99,12/10/19 23:31,"211 North St, Seattle, WA 98101" +316399,LG Dryer,1,600.0,12/10/19 12:52,"747 Chestnut St, Boston, MA 02215" +316400,Wired Headphones,1,11.99,12/20/19 13:07,"164 Center St, Boston, MA 02215" +316401,AAA Batteries (4-pack),1,2.99,12/26/19 16:30,"72 Johnson St, Atlanta, GA 30301" +316402,USB-C Charging Cable,1,11.95,12/09/19 22:01,"762 Main St, New York City, NY 10001" +316403,USB-C Charging Cable,1,11.95,12/29/19 16:01,"299 12th St, Austin, TX 73301" +316404,27in 4K Gaming Monitor,1,389.99,12/18/19 22:40,"729 Hill St, San Francisco, CA 94016" +316405,34in Ultrawide Monitor,1,379.99,12/09/19 09:28,"38 Willow St, Boston, MA 02215" +316406,34in Ultrawide Monitor,1,379.99,12/25/19 21:40,"325 Lakeview St, Boston, MA 02215" +316407,Lightning Charging Cable,1,14.95,12/11/19 10:12,"489 12th St, San Francisco, CA 94016" +316408,AA Batteries (4-pack),1,3.84,12/25/19 10:20,"962 Church St, Los Angeles, CA 90001" +316409,AAA Batteries (4-pack),1,2.99,12/21/19 13:00,"509 Park St, Dallas, TX 75001" +316410,34in Ultrawide Monitor,1,379.99,12/19/19 12:50,"433 11th St, Boston, MA 02215" +316411,Apple Airpods Headphones,1,150,12/31/19 16:27,"848 6th St, San Francisco, CA 94016" +316412,AAA Batteries (4-pack),1,2.99,12/20/19 17:10,"181 Meadow St, Los Angeles, CA 90001" +316413,USB-C Charging Cable,1,11.95,12/28/19 14:23,"458 1st St, Portland, OR 97035" +316414,iPhone,1,700,12/18/19 14:42,"419 Pine St, Portland, OR 97035" +316415,Lightning Charging Cable,1,14.95,12/07/19 09:30,"594 Cedar St, Austin, TX 73301" +316416,Wired Headphones,1,11.99,12/06/19 21:58,"289 Lincoln St, Boston, MA 02215" +316417,34in Ultrawide Monitor,1,379.99,12/30/19 22:17,"160 Meadow St, Los Angeles, CA 90001" +316418,27in FHD Monitor,1,149.99,12/26/19 17:14,"118 Lakeview St, Boston, MA 02215" +316419,AA Batteries (4-pack),1,3.84,12/28/19 00:03,"533 Willow St, New York City, NY 10001" +316420,20in Monitor,1,109.99,12/07/19 15:54,"835 10th St, San Francisco, CA 94016" +316421,AAA Batteries (4-pack),1,2.99,12/04/19 12:34,"623 Lincoln St, San Francisco, CA 94016" +316422,iPhone,1,700,12/20/19 23:48,"115 South St, Austin, TX 73301" +316423,Bose SoundSport Headphones,1,99.99,12/31/19 22:22,"701 Hill St, Los Angeles, CA 90001" +316424,Apple Airpods Headphones,1,150,12/09/19 20:35,"373 South St, Dallas, TX 75001" +316425,AAA Batteries (4-pack),1,2.99,12/22/19 13:19,"311 Spruce St, Los Angeles, CA 90001" +316426,Vareebadd Phone,1,400,12/06/19 10:34,"363 Madison St, Los Angeles, CA 90001" +316427,AAA Batteries (4-pack),1,2.99,12/01/19 18:38,"512 4th St, Seattle, WA 98101" +316428,Macbook Pro Laptop,1,1700,12/12/19 14:36,"366 Johnson St, San Francisco, CA 94016" +316429,Apple Airpods Headphones,2,150,12/13/19 20:55,"785 Johnson St, Boston, MA 02215" +316430,Wired Headphones,1,11.99,12/01/19 16:41,"244 Main St, Los Angeles, CA 90001" +316431,Bose SoundSport Headphones,1,99.99,12/28/19 16:11,"77 14th St, San Francisco, CA 94016" +316432,Lightning Charging Cable,1,14.95,12/14/19 12:50,"437 Sunset St, Los Angeles, CA 90001" +316433,Lightning Charging Cable,1,14.95,12/19/19 15:17,"117 6th St, Los Angeles, CA 90001" +316434,27in 4K Gaming Monitor,1,389.99,12/01/19 09:49,"320 South St, Los Angeles, CA 90001" +316435,USB-C Charging Cable,1,11.95,12/19/19 10:13,"889 Lincoln St, San Francisco, CA 94016" +316436,20in Monitor,1,109.99,12/20/19 11:08,"240 10th St, Portland, ME 04101" +316437,27in FHD Monitor,1,149.99,12/10/19 15:13,"916 Meadow St, Atlanta, GA 30301" +316438,34in Ultrawide Monitor,1,379.99,12/13/19 13:07,"299 11th St, San Francisco, CA 94016" +316439,AAA Batteries (4-pack),2,2.99,12/27/19 21:57,"236 Cedar St, San Francisco, CA 94016" +316440,AAA Batteries (4-pack),1,2.99,12/25/19 19:27,"488 Highland St, Seattle, WA 98101" +316441,AA Batteries (4-pack),1,3.84,12/01/19 08:00,"204 Forest St, Portland, OR 97035" +316442,27in 4K Gaming Monitor,1,389.99,12/03/19 19:02,"320 Jackson St, Atlanta, GA 30301" +316443,USB-C Charging Cable,1,11.95,12/20/19 08:20,"318 4th St, San Francisco, CA 94016" +316444,27in 4K Gaming Monitor,1,389.99,12/10/19 19:29,"885 West St, Los Angeles, CA 90001" +316445,Wired Headphones,1,11.99,12/14/19 20:00,"566 Washington St, Atlanta, GA 30301" +316446,Wired Headphones,1,11.99,12/21/19 14:09,"551 Ridge St, San Francisco, CA 94016" +316447,27in FHD Monitor,1,149.99,12/22/19 22:25,"114 10th St, Los Angeles, CA 90001" +316448,AAA Batteries (4-pack),1,2.99,12/28/19 08:06,"496 Meadow St, Los Angeles, CA 90001" +316449,Macbook Pro Laptop,1,1700,12/06/19 12:24,"890 Willow St, Austin, TX 73301" +316450,AAA Batteries (4-pack),3,2.99,12/30/19 19:26,"850 Main St, Boston, MA 02215" +316451,Lightning Charging Cable,1,14.95,12/04/19 21:01,"897 13th St, Austin, TX 73301" +316452,USB-C Charging Cable,1,11.95,12/19/19 15:21,"225 Jefferson St, Portland, OR 97035" +316453,Wired Headphones,1,11.99,12/12/19 12:37,"769 Cherry St, Boston, MA 02215" +316454,Apple Airpods Headphones,1,150,12/22/19 02:40,"132 Highland St, Los Angeles, CA 90001" +316455,USB-C Charging Cable,1,11.95,12/16/19 21:38,"897 Pine St, Austin, TX 73301" +316456,Bose SoundSport Headphones,1,99.99,12/15/19 09:26,"909 Hickory St, New York City, NY 10001" +316457,Bose SoundSport Headphones,1,99.99,12/18/19 14:16,"452 Dogwood St, Austin, TX 73301" +316458,AA Batteries (4-pack),1,3.84,12/19/19 11:47,"120 River St, Austin, TX 73301" +316459,Lightning Charging Cable,1,14.95,12/12/19 18:02,"499 7th St, San Francisco, CA 94016" +316460,20in Monitor,1,109.99,12/01/19 22:58,"402 10th St, Dallas, TX 75001" +316461,27in FHD Monitor,1,149.99,12/10/19 01:37,"979 1st St, Boston, MA 02215" +316462,Lightning Charging Cable,1,14.95,12/06/19 22:03,"241 11th St, Seattle, WA 98101" +316463,Lightning Charging Cable,1,14.95,12/17/19 16:08,"64 Madison St, Seattle, WA 98101" +316464,Apple Airpods Headphones,1,150,12/11/19 23:08,"547 13th St, Atlanta, GA 30301" +316465,Apple Airpods Headphones,1,150,12/25/19 17:03,"583 12th St, Los Angeles, CA 90001" +316466,Wired Headphones,1,11.99,12/12/19 07:25,"930 Church St, Dallas, TX 75001" +316467,Google Phone,1,600,12/08/19 01:23,"587 West St, Portland, OR 97035" +316467,USB-C Charging Cable,1,11.95,12/08/19 01:23,"587 West St, Portland, OR 97035" +316468,Apple Airpods Headphones,1,150,12/30/19 13:58,"4 River St, Boston, MA 02215" +316469,Lightning Charging Cable,1,14.95,12/13/19 13:14,"542 2nd St, Seattle, WA 98101" +316470,iPhone,1,700,12/21/19 19:37,"624 Cherry St, Seattle, WA 98101" +316471,Apple Airpods Headphones,1,150,12/26/19 07:09,"520 6th St, San Francisco, CA 94016" +316472,20in Monitor,1,109.99,12/22/19 17:48,"845 1st St, Boston, MA 02215" +316473,Lightning Charging Cable,1,14.95,12/10/19 10:31,"523 North St, San Francisco, CA 94016" +316474,USB-C Charging Cable,1,11.95,12/27/19 13:08,"775 Elm St, Los Angeles, CA 90001" +316475,Wired Headphones,2,11.99,12/30/19 17:51,"391 Church St, Los Angeles, CA 90001" +316476,USB-C Charging Cable,1,11.95,12/24/19 21:56,"941 5th St, San Francisco, CA 94016" +316477,USB-C Charging Cable,1,11.95,12/18/19 19:53,"141 13th St, Portland, ME 04101" +316478,Apple Airpods Headphones,1,150,12/04/19 15:06,"687 12th St, Seattle, WA 98101" +316479,AA Batteries (4-pack),1,3.84,12/14/19 12:26,"564 Ridge St, Los Angeles, CA 90001" +316480,Macbook Pro Laptop,1,1700,12/08/19 20:59,"369 Maple St, Boston, MA 02215" +316481,USB-C Charging Cable,1,11.95,12/12/19 11:42,"804 5th St, Los Angeles, CA 90001" +316482,Apple Airpods Headphones,1,150,12/24/19 20:56,"901 Washington St, Austin, TX 73301" +316483,AAA Batteries (4-pack),1,2.99,12/04/19 10:34,"681 6th St, Portland, OR 97035" +316484,Lightning Charging Cable,1,14.95,12/29/19 03:05,"179 12th St, Los Angeles, CA 90001" +316485,27in FHD Monitor,1,149.99,12/07/19 10:17,"77 Center St, San Francisco, CA 94016" +316486,34in Ultrawide Monitor,1,379.99,12/18/19 14:49,"455 Main St, Portland, OR 97035" +316487,Lightning Charging Cable,1,14.95,12/22/19 16:55,"532 11th St, Portland, OR 97035" +316488,Wired Headphones,1,11.99,12/18/19 19:19,"592 13th St, Los Angeles, CA 90001" +316489,Lightning Charging Cable,1,14.95,12/06/19 10:15,"424 Walnut St, Portland, ME 04101" +316490,AAA Batteries (4-pack),2,2.99,12/20/19 16:04,"854 South St, Boston, MA 02215" +316491,Bose SoundSport Headphones,1,99.99,12/23/19 21:23,"969 Church St, San Francisco, CA 94016" +316492,USB-C Charging Cable,1,11.95,12/08/19 08:49,"14 14th St, Portland, ME 04101" +316493,USB-C Charging Cable,1,11.95,12/28/19 14:10,"633 Jefferson St, Austin, TX 73301" +316494,Wired Headphones,1,11.99,12/17/19 11:37,"568 Hickory St, San Francisco, CA 94016" +316495,27in 4K Gaming Monitor,1,389.99,12/05/19 10:23,"515 Pine St, New York City, NY 10001" +316495,Lightning Charging Cable,1,14.95,12/05/19 10:23,"515 Pine St, New York City, NY 10001" +316496,Apple Airpods Headphones,1,150,12/16/19 12:29,"786 Lakeview St, Seattle, WA 98101" +316497,34in Ultrawide Monitor,1,379.99,12/19/19 17:05,"116 Hill St, New York City, NY 10001" +316498,34in Ultrawide Monitor,1,379.99,12/08/19 19:15,"936 Sunset St, San Francisco, CA 94016" +316499,Wired Headphones,1,11.99,12/26/19 15:40,"759 Elm St, Seattle, WA 98101" +316500,AAA Batteries (4-pack),1,2.99,12/15/19 13:12,"200 Cherry St, Dallas, TX 75001" +316501,Bose SoundSport Headphones,1,99.99,12/08/19 20:14,"579 River St, Dallas, TX 75001" +316502,Lightning Charging Cable,1,14.95,12/01/19 18:31,"513 Cherry St, San Francisco, CA 94016" +316503,iPhone,1,700,12/20/19 20:42,"210 13th St, Seattle, WA 98101" +316504,Macbook Pro Laptop,1,1700,12/31/19 10:18,"928 Washington St, Portland, OR 97035" +316505,USB-C Charging Cable,1,11.95,12/23/19 19:10,"406 Jefferson St, Seattle, WA 98101" +316506,Google Phone,1,600,12/24/19 01:10,"998 5th St, Boston, MA 02215" +316506,Lightning Charging Cable,1,14.95,12/24/19 01:10,"998 5th St, Boston, MA 02215" +316507,AAA Batteries (4-pack),1,2.99,12/02/19 20:23,"36 Washington St, Boston, MA 02215" +316508,Wired Headphones,1,11.99,12/09/19 13:51,"898 Elm St, Los Angeles, CA 90001" +316509,34in Ultrawide Monitor,1,379.99,12/26/19 14:54,"193 Lake St, Seattle, WA 98101" +316510,34in Ultrawide Monitor,1,379.99,12/29/19 12:16,"987 Sunset St, Atlanta, GA 30301" +316511,AA Batteries (4-pack),2,3.84,12/12/19 13:07,"517 Willow St, Atlanta, GA 30301" +316511,Lightning Charging Cable,1,14.95,12/12/19 13:07,"517 Willow St, Atlanta, GA 30301" +316512,Lightning Charging Cable,1,14.95,12/19/19 18:51,"730 Highland St, Los Angeles, CA 90001" +316513,AA Batteries (4-pack),1,3.84,12/21/19 11:50,"748 Park St, Boston, MA 02215" +316514,AA Batteries (4-pack),1,3.84,12/13/19 18:50,"262 South St, Portland, OR 97035" +316515,ThinkPad Laptop,1,999.99,12/27/19 00:59,"166 13th St, San Francisco, CA 94016" +316516,USB-C Charging Cable,1,11.95,12/22/19 12:10,"156 11th St, Seattle, WA 98101" +316517,USB-C Charging Cable,1,11.95,12/30/19 19:07,"575 Elm St, Portland, OR 97035" +316518,Bose SoundSport Headphones,1,99.99,12/14/19 09:02,"851 Lakeview St, San Francisco, CA 94016" +316519,AAA Batteries (4-pack),2,2.99,12/29/19 23:41,"781 5th St, San Francisco, CA 94016" +316520,Wired Headphones,1,11.99,12/26/19 16:45,"351 Elm St, Austin, TX 73301" +316520,20in Monitor,1,109.99,12/26/19 16:45,"351 Elm St, Austin, TX 73301" +316521,Lightning Charging Cable,1,14.95,12/21/19 18:37,"269 Chestnut St, Los Angeles, CA 90001" +316522,AAA Batteries (4-pack),2,2.99,12/13/19 22:00,"447 Walnut St, Seattle, WA 98101" +316523,Lightning Charging Cable,2,14.95,12/15/19 08:08,"641 River St, New York City, NY 10001" +316524,AAA Batteries (4-pack),1,2.99,12/19/19 18:24,"7 Pine St, Seattle, WA 98101" +316525,27in FHD Monitor,1,149.99,12/26/19 09:20,"962 Spruce St, Boston, MA 02215" +316526,AAA Batteries (4-pack),1,2.99,12/09/19 12:44,"471 Ridge St, Los Angeles, CA 90001" +316527,AAA Batteries (4-pack),3,2.99,12/19/19 14:02,"325 11th St, San Francisco, CA 94016" +316528,27in FHD Monitor,1,149.99,12/22/19 09:34,"232 Main St, Los Angeles, CA 90001" +316529,Wired Headphones,1,11.99,12/04/19 10:35,"112 2nd St, Portland, OR 97035" +316530,Wired Headphones,2,11.99,12/25/19 12:46,"628 7th St, Atlanta, GA 30301" +316531,Apple Airpods Headphones,1,150,12/30/19 10:46,"719 1st St, New York City, NY 10001" +316532,AA Batteries (4-pack),1,3.84,12/29/19 02:45,"422 1st St, Los Angeles, CA 90001" +316533,Apple Airpods Headphones,1,150,12/17/19 14:48,"552 Washington St, Seattle, WA 98101" +316534,Flatscreen TV,1,300,12/11/19 11:31,"412 14th St, Dallas, TX 75001" +316535,Bose SoundSport Headphones,1,99.99,12/30/19 21:39,"391 Dogwood St, Portland, OR 97035" +316536,Lightning Charging Cable,1,14.95,12/01/19 14:43,"991 Madison St, Austin, TX 73301" +316537,Bose SoundSport Headphones,1,99.99,12/28/19 06:45,"797 Jefferson St, New York City, NY 10001" +316538,Bose SoundSport Headphones,1,99.99,12/08/19 18:01,"30 14th St, Dallas, TX 75001" +316539,AAA Batteries (4-pack),1,2.99,12/23/19 22:36,"997 Lake St, Los Angeles, CA 90001" +316540,Apple Airpods Headphones,1,150,12/02/19 09:06,"609 12th St, Dallas, TX 75001" +316541,Apple Airpods Headphones,1,150,12/27/19 07:46,"592 Wilson St, Seattle, WA 98101" +316542,USB-C Charging Cable,1,11.95,12/26/19 11:54,"33 Maple St, Portland, OR 97035" +316543,Lightning Charging Cable,1,14.95,12/30/19 11:35,"852 Madison St, Los Angeles, CA 90001" +316544,Bose SoundSport Headphones,1,99.99,12/24/19 15:24,"497 11th St, Los Angeles, CA 90001" +316545,Lightning Charging Cable,1,14.95,12/27/19 23:55,"645 9th St, Los Angeles, CA 90001" +316546,Bose SoundSport Headphones,1,99.99,12/14/19 23:31,"386 River St, New York City, NY 10001" +316547,Apple Airpods Headphones,1,150,12/24/19 17:54,"234 Highland St, San Francisco, CA 94016" +316548,Google Phone,1,600,12/24/19 19:45,"403 Forest St, San Francisco, CA 94016" +316549,Lightning Charging Cable,1,14.95,12/26/19 09:22,"307 6th St, Los Angeles, CA 90001" +316550,Lightning Charging Cable,1,14.95,12/19/19 08:42,"977 9th St, Atlanta, GA 30301" +316551,AA Batteries (4-pack),1,3.84,12/06/19 18:22,"554 Adams St, Los Angeles, CA 90001" +316552,Apple Airpods Headphones,1,150,12/13/19 16:47,"137 12th St, San Francisco, CA 94016" +316553,27in FHD Monitor,1,149.99,12/02/19 13:26,"822 Pine St, Los Angeles, CA 90001" +316554,Vareebadd Phone,1,400,12/22/19 04:39,"466 Madison St, Seattle, WA 98101" +316555,Apple Airpods Headphones,1,150,12/18/19 13:53,"633 1st St, San Francisco, CA 94016" +316556,20in Monitor,1,109.99,12/19/19 18:07,"708 Ridge St, Los Angeles, CA 90001" +316557,AA Batteries (4-pack),2,3.84,12/27/19 19:36,"777 Pine St, Dallas, TX 75001" +316558,27in FHD Monitor,1,149.99,12/27/19 13:52,"219 Sunset St, New York City, NY 10001" +316559,AA Batteries (4-pack),1,3.84,12/10/19 14:53,"98 Ridge St, Los Angeles, CA 90001" +316560,AAA Batteries (4-pack),2,2.99,12/09/19 12:10,"753 Madison St, Los Angeles, CA 90001" +316561,Apple Airpods Headphones,1,150,12/06/19 22:25,"194 Walnut St, Boston, MA 02215" +316562,ThinkPad Laptop,1,999.99,12/22/19 10:25,"278 11th St, Seattle, WA 98101" +316563,USB-C Charging Cable,1,11.95,12/02/19 23:38,"490 Lake St, Los Angeles, CA 90001" +316564,USB-C Charging Cable,1,11.95,12/28/19 12:25,"561 5th St, Boston, MA 02215" +316565,Wired Headphones,1,11.99,12/30/19 08:09,"3 Forest St, New York City, NY 10001" +316566,ThinkPad Laptop,1,999.99,12/28/19 09:45,"660 2nd St, San Francisco, CA 94016" +316567,AAA Batteries (4-pack),1,2.99,12/07/19 03:40,"276 Jefferson St, New York City, NY 10001" +316568,iPhone,1,700,12/14/19 22:58,"546 Jefferson St, Boston, MA 02215" +316569,ThinkPad Laptop,1,999.99,12/30/19 00:20,"932 Center St, Seattle, WA 98101" +316570,Apple Airpods Headphones,1,150,12/31/19 19:55,"624 Johnson St, Seattle, WA 98101" +316571,Lightning Charging Cable,1,14.95,12/17/19 00:04,"998 8th St, San Francisco, CA 94016" +316572,Apple Airpods Headphones,1,150,12/29/19 08:19,"636 4th St, Los Angeles, CA 90001" +316573,Lightning Charging Cable,1,14.95,12/10/19 01:18,"461 Johnson St, Boston, MA 02215" +316574,Wired Headphones,1,11.99,12/05/19 12:02,"303 River St, San Francisco, CA 94016" +316575,Wired Headphones,1,11.99,12/29/19 19:10,"211 Lincoln St, New York City, NY 10001" +316576,AA Batteries (4-pack),1,3.84,12/19/19 20:31,"658 11th St, Austin, TX 73301" +316577,AAA Batteries (4-pack),1,2.99,12/13/19 02:01,"342 Chestnut St, Seattle, WA 98101" +316578,Apple Airpods Headphones,1,150,12/03/19 17:26,"742 4th St, Los Angeles, CA 90001" +316579,Apple Airpods Headphones,1,150,12/12/19 14:09,"153 Hill St, Portland, OR 97035" +316580,Lightning Charging Cable,1,14.95,12/15/19 16:47,"893 Spruce St, San Francisco, CA 94016" +316581,AAA Batteries (4-pack),2,2.99,12/13/19 13:37,"210 Chestnut St, Seattle, WA 98101" +316582,USB-C Charging Cable,1,11.95,12/20/19 10:31,"90 River St, Portland, OR 97035" +316583,ThinkPad Laptop,1,999.99,12/26/19 15:33,"14 Chestnut St, San Francisco, CA 94016" +316584,Lightning Charging Cable,1,14.95,12/02/19 11:56,"931 Washington St, Los Angeles, CA 90001" +316585,27in 4K Gaming Monitor,1,389.99,12/28/19 12:36,"201 Lake St, San Francisco, CA 94016" +316586,27in FHD Monitor,1,149.99,12/06/19 19:23,"955 10th St, Atlanta, GA 30301" +316587,34in Ultrawide Monitor,1,379.99,12/01/19 14:18,"662 Meadow St, Atlanta, GA 30301" +316588,AA Batteries (4-pack),1,3.84,12/17/19 17:35,"366 Willow St, San Francisco, CA 94016" +316589,Bose SoundSport Headphones,1,99.99,12/12/19 10:48,"215 1st St, Portland, OR 97035" +316590,Bose SoundSport Headphones,1,99.99,12/26/19 12:09,"145 Washington St, Los Angeles, CA 90001" +316591,USB-C Charging Cable,1,11.95,12/04/19 21:00,"277 Elm St, Dallas, TX 75001" +316592,USB-C Charging Cable,1,11.95,12/10/19 21:41,"452 Dogwood St, Atlanta, GA 30301" +316593,AAA Batteries (4-pack),1,2.99,12/26/19 15:08,"192 9th St, Dallas, TX 75001" +316594,20in Monitor,1,109.99,12/22/19 12:28,"625 Madison St, Los Angeles, CA 90001" +316595,USB-C Charging Cable,1,11.95,12/31/19 11:59,"168 North St, Boston, MA 02215" +316596,AAA Batteries (4-pack),2,2.99,12/17/19 17:11,"281 10th St, San Francisco, CA 94016" +316597,Google Phone,1,600,12/26/19 09:03,"856 2nd St, Portland, OR 97035" +316598,Bose SoundSport Headphones,1,99.99,12/12/19 12:59,"131 Willow St, Austin, TX 73301" +316599,Lightning Charging Cable,1,14.95,12/09/19 19:21,"914 1st St, Los Angeles, CA 90001" +316600,AAA Batteries (4-pack),2,2.99,12/25/19 15:42,"298 Spruce St, Atlanta, GA 30301" +316601,AA Batteries (4-pack),1,3.84,12/21/19 14:16,"486 South St, Los Angeles, CA 90001" +316602,Lightning Charging Cable,1,14.95,12/30/19 22:06,"957 11th St, Austin, TX 73301" +316603,Lightning Charging Cable,3,14.95,12/16/19 09:34,"306 Center St, Atlanta, GA 30301" +316604,USB-C Charging Cable,1,11.95,12/04/19 09:21,"107 7th St, San Francisco, CA 94016" +316605,Wired Headphones,1,11.99,12/23/19 20:52,"504 8th St, New York City, NY 10001" +316606,Bose SoundSport Headphones,1,99.99,12/25/19 10:08,"319 Park St, Seattle, WA 98101" +316607,USB-C Charging Cable,2,11.95,12/19/19 09:03,"128 Hill St, Los Angeles, CA 90001" +316608,USB-C Charging Cable,1,11.95,12/11/19 18:39,"377 Park St, New York City, NY 10001" +316609,iPhone,1,700,12/02/19 11:08,"512 Maple St, Seattle, WA 98101" +316610,AA Batteries (4-pack),3,3.84,12/10/19 14:51,"480 7th St, New York City, NY 10001" +316611,Apple Airpods Headphones,1,150,12/07/19 15:23,"829 Forest St, Boston, MA 02215" +316612,Lightning Charging Cable,1,14.95,12/22/19 11:42,"491 Elm St, Dallas, TX 75001" +316613,27in FHD Monitor,1,149.99,12/01/19 11:28,"609 Hill St, Dallas, TX 75001" +316614,27in FHD Monitor,1,149.99,12/13/19 17:17,"564 Walnut St, Portland, OR 97035" +316615,Apple Airpods Headphones,1,150,12/01/19 22:56,"316 Main St, San Francisco, CA 94016" +316616,Wired Headphones,1,11.99,12/22/19 17:41,"721 Center St, Boston, MA 02215" +316617,27in 4K Gaming Monitor,1,389.99,12/21/19 19:35,"251 Spruce St, Boston, MA 02215" +316617,Apple Airpods Headphones,1,150,12/21/19 19:35,"251 Spruce St, Boston, MA 02215" +316618,34in Ultrawide Monitor,1,379.99,12/29/19 19:40,"342 Walnut St, Boston, MA 02215" +316619,27in FHD Monitor,1,149.99,12/30/19 15:48,"90 Dogwood St, Los Angeles, CA 90001" +316620,USB-C Charging Cable,1,11.95,12/31/19 11:42,"372 Forest St, Seattle, WA 98101" +316621,34in Ultrawide Monitor,1,379.99,12/27/19 12:07,"917 Willow St, San Francisco, CA 94016" +316622,Wired Headphones,1,11.99,12/06/19 09:04,"231 Forest St, Atlanta, GA 30301" +316623,AAA Batteries (4-pack),1,2.99,12/04/19 12:17,"892 Washington St, Boston, MA 02215" +316624,Lightning Charging Cable,2,14.95,12/03/19 02:09,"376 Spruce St, San Francisco, CA 94016" +316625,27in FHD Monitor,1,149.99,12/18/19 12:05,"154 Park St, Boston, MA 02215" +316626,27in 4K Gaming Monitor,1,389.99,12/31/19 16:52,"437 Meadow St, San Francisco, CA 94016" +316627,Bose SoundSport Headphones,1,99.99,12/20/19 14:10,"974 North St, Los Angeles, CA 90001" +316628,AA Batteries (4-pack),1,3.84,12/03/19 14:54,"301 7th St, Austin, TX 73301" +316629,USB-C Charging Cable,1,11.95,12/17/19 20:31,"879 Willow St, Los Angeles, CA 90001" +316630,AA Batteries (4-pack),1,3.84,12/16/19 11:42,"61 Willow St, Boston, MA 02215" +316631,20in Monitor,1,109.99,12/21/19 20:06,"589 Jackson St, Los Angeles, CA 90001" +316632,27in FHD Monitor,1,149.99,12/16/19 22:12,"685 River St, Dallas, TX 75001" +316633,AA Batteries (4-pack),1,3.84,12/13/19 10:54,"128 5th St, San Francisco, CA 94016" +316634,AAA Batteries (4-pack),3,2.99,12/22/19 17:02,"886 North St, San Francisco, CA 94016" +316635,Google Phone,1,600,12/15/19 23:08,"179 Jefferson St, Austin, TX 73301" +316636,Wired Headphones,1,11.99,12/29/19 20:31,"82 Park St, San Francisco, CA 94016" +316637,AAA Batteries (4-pack),1,2.99,12/05/19 17:26,"603 Elm St, New York City, NY 10001" +316638,AA Batteries (4-pack),1,3.84,12/11/19 15:16,"677 Jackson St, Los Angeles, CA 90001" +316639,AA Batteries (4-pack),2,3.84,12/11/19 12:41,"449 6th St, Los Angeles, CA 90001" +316640,Lightning Charging Cable,1,14.95,12/06/19 21:06,"177 Cherry St, Dallas, TX 75001" +316641,AAA Batteries (4-pack),3,2.99,12/17/19 06:54,"692 Jefferson St, Austin, TX 73301" +316642,iPhone,1,700,12/05/19 09:23,"76 8th St, Portland, OR 97035" +316642,Wired Headphones,1,11.99,12/05/19 09:23,"76 8th St, Portland, OR 97035" +316643,Apple Airpods Headphones,1,150,12/21/19 18:06,"484 Wilson St, Boston, MA 02215" +316644,USB-C Charging Cable,1,11.95,12/04/19 16:38,"687 Church St, Atlanta, GA 30301" +316645,AA Batteries (4-pack),1,3.84,12/30/19 13:29,"785 2nd St, Dallas, TX 75001" +316646,Wired Headphones,1,11.99,12/22/19 14:30,"161 4th St, San Francisco, CA 94016" +316647,Wired Headphones,2,11.99,12/11/19 14:02,"890 5th St, Los Angeles, CA 90001" +316648,Apple Airpods Headphones,1,150,12/26/19 16:39,"852 Main St, New York City, NY 10001" +316649,ThinkPad Laptop,1,999.99,12/25/19 14:16,"128 Lakeview St, Seattle, WA 98101" +316650,Wired Headphones,1,11.99,12/02/19 19:34,"745 9th St, San Francisco, CA 94016" +316651,AA Batteries (4-pack),1,3.84,12/19/19 18:16,"50 Washington St, Portland, ME 04101" +316652,AAA Batteries (4-pack),3,2.99,12/28/19 10:52,"350 Cherry St, Boston, MA 02215" +316653,iPhone,1,700,12/24/19 13:02,"895 13th St, Atlanta, GA 30301" +316654,Apple Airpods Headphones,1,150,12/11/19 12:18,"162 Madison St, San Francisco, CA 94016" +316655,Apple Airpods Headphones,1,150,12/20/19 00:16,"206 Lincoln St, San Francisco, CA 94016" +316656,Lightning Charging Cable,1,14.95,12/17/19 06:33,"245 West St, Seattle, WA 98101" +316657,27in FHD Monitor,1,149.99,12/23/19 20:07,"99 6th St, Los Angeles, CA 90001" +,,,,, +316658,27in FHD Monitor,1,149.99,12/02/19 22:16,"274 Center St, Seattle, WA 98101" +316659,AAA Batteries (4-pack),1,2.99,12/11/19 18:58,"317 Lakeview St, New York City, NY 10001" +316659,Lightning Charging Cable,1,14.95,12/11/19 18:58,"317 Lakeview St, New York City, NY 10001" +316660,AAA Batteries (4-pack),1,2.99,12/03/19 11:44,"641 6th St, San Francisco, CA 94016" +316661,Wired Headphones,1,11.99,12/24/19 10:43,"328 Lincoln St, New York City, NY 10001" +316662,AA Batteries (4-pack),2,3.84,12/10/19 18:21,"743 Church St, Seattle, WA 98101" +316663,Google Phone,1,600,12/11/19 14:56,"382 7th St, Los Angeles, CA 90001" +316663,USB-C Charging Cable,1,11.95,12/11/19 14:56,"382 7th St, Los Angeles, CA 90001" +316664,AA Batteries (4-pack),1,3.84,12/24/19 12:52,"518 Main St, Dallas, TX 75001" +316665,AA Batteries (4-pack),2,3.84,12/26/19 10:29,"985 Dogwood St, Atlanta, GA 30301" +316666,Bose SoundSport Headphones,1,99.99,12/28/19 03:21,"474 13th St, Atlanta, GA 30301" +316667,Bose SoundSport Headphones,1,99.99,12/07/19 10:38,"227 13th St, Seattle, WA 98101" +316668,iPhone,1,700,12/17/19 20:57,"555 Cherry St, San Francisco, CA 94016" +316669,iPhone,1,700,12/19/19 16:47,"972 9th St, Boston, MA 02215" +316670,Bose SoundSport Headphones,1,99.99,12/19/19 09:12,"339 6th St, San Francisco, CA 94016" +316671,Apple Airpods Headphones,1,150,12/04/19 17:27,"662 Walnut St, San Francisco, CA 94016" +316672,Lightning Charging Cable,1,14.95,12/28/19 20:09,"198 11th St, Dallas, TX 75001" +316673,Macbook Pro Laptop,1,1700,12/23/19 10:59,"267 Highland St, Dallas, TX 75001" +316674,Bose SoundSport Headphones,1,99.99,12/31/19 14:47,"31 Dogwood St, Portland, OR 97035" +316675,USB-C Charging Cable,1,11.95,12/15/19 19:20,"713 Spruce St, San Francisco, CA 94016" +316676,AA Batteries (4-pack),1,3.84,12/28/19 18:26,"416 West St, Dallas, TX 75001" +316677,Macbook Pro Laptop,1,1700,12/02/19 16:59,"515 Lincoln St, Atlanta, GA 30301" +316678,Wired Headphones,1,11.99,12/22/19 11:57,"614 9th St, Los Angeles, CA 90001" +316679,AA Batteries (4-pack),1,3.84,12/20/19 15:26,"41 Dogwood St, Atlanta, GA 30301" +316680,Lightning Charging Cable,1,14.95,12/19/19 17:23,"152 Wilson St, New York City, NY 10001" +316681,34in Ultrawide Monitor,1,379.99,12/09/19 20:10,"226 Hill St, Portland, OR 97035" +316682,27in FHD Monitor,1,149.99,12/07/19 21:33,"731 Washington St, New York City, NY 10001" +316683,Macbook Pro Laptop,1,1700,12/25/19 11:55,"746 Ridge St, Seattle, WA 98101" +316684,27in FHD Monitor,1,149.99,12/25/19 15:15,"20 Madison St, Portland, OR 97035" +316685,20in Monitor,1,109.99,12/18/19 14:23,"251 7th St, Boston, MA 02215" +316686,Wired Headphones,1,11.99,12/18/19 12:02,"346 5th St, Seattle, WA 98101" +316687,ThinkPad Laptop,1,999.99,12/20/19 12:59,"502 7th St, Los Angeles, CA 90001" +316688,20in Monitor,1,109.99,12/14/19 08:19,"222 Cherry St, Boston, MA 02215" +316689,34in Ultrawide Monitor,1,379.99,12/21/19 09:00,"277 North St, San Francisco, CA 94016" +316690,Apple Airpods Headphones,1,150,12/09/19 21:59,"585 Cedar St, Los Angeles, CA 90001" +316691,iPhone,1,700,12/12/19 18:05,"378 Hill St, San Francisco, CA 94016" +316691,Apple Airpods Headphones,1,150,12/12/19 18:05,"378 Hill St, San Francisco, CA 94016" +316692,Flatscreen TV,1,300,12/10/19 15:01,"854 Elm St, Los Angeles, CA 90001" +316693,USB-C Charging Cable,1,11.95,12/05/19 12:51,"590 West St, San Francisco, CA 94016" +316694,AAA Batteries (4-pack),2,2.99,12/08/19 17:18,"249 Church St, Los Angeles, CA 90001" +316695,USB-C Charging Cable,1,11.95,12/22/19 01:06,"13 Lakeview St, Atlanta, GA 30301" +316696,AAA Batteries (4-pack),1,2.99,12/30/19 09:06,"486 Church St, Los Angeles, CA 90001" +316696,AAA Batteries (4-pack),1,2.99,12/30/19 09:06,"486 Church St, Los Angeles, CA 90001" +316697,AA Batteries (4-pack),3,3.84,12/29/19 20:09,"551 Meadow St, Boston, MA 02215" +316698,AA Batteries (4-pack),1,3.84,12/24/19 19:06,"197 Maple St, Los Angeles, CA 90001" +316699,AAA Batteries (4-pack),2,2.99,12/25/19 20:30,"258 12th St, Atlanta, GA 30301" +316700,USB-C Charging Cable,1,11.95,12/14/19 16:16,"506 Willow St, San Francisco, CA 94016" +316701,Wired Headphones,1,11.99,12/19/19 09:11,"849 Highland St, Portland, OR 97035" +316702,AA Batteries (4-pack),1,3.84,12/30/19 23:18,"18 10th St, Austin, TX 73301" +316703,Google Phone,1,600,12/23/19 13:28,"519 Pine St, San Francisco, CA 94016" +316704,Lightning Charging Cable,1,14.95,12/10/19 23:31,"238 Chestnut St, Portland, ME 04101" +316705,27in FHD Monitor,1,149.99,12/21/19 11:53,"631 Church St, Los Angeles, CA 90001" +316706,USB-C Charging Cable,1,11.95,12/28/19 16:05,"487 South St, New York City, NY 10001" +316707,USB-C Charging Cable,1,11.95,12/31/19 09:59,"662 Johnson St, Los Angeles, CA 90001" +316708,Google Phone,1,600,12/21/19 15:19,"563 Madison St, Portland, OR 97035" +316708,USB-C Charging Cable,1,11.95,12/21/19 15:19,"563 Madison St, Portland, OR 97035" +316709,20in Monitor,1,109.99,12/19/19 18:08,"778 6th St, Seattle, WA 98101" +316710,AAA Batteries (4-pack),1,2.99,12/08/19 06:02,"966 Wilson St, San Francisco, CA 94016" +316711,27in 4K Gaming Monitor,1,389.99,12/14/19 16:04,"52 Forest St, Los Angeles, CA 90001" +316712,iPhone,1,700,12/27/19 12:34,"285 Church St, Seattle, WA 98101" +316713,AAA Batteries (4-pack),1,2.99,12/20/19 21:36,"592 11th St, Los Angeles, CA 90001" +316714,USB-C Charging Cable,1,11.95,12/01/19 18:28,"190 Lincoln St, Boston, MA 02215" +316715,ThinkPad Laptop,1,999.99,12/03/19 20:33,"773 Hickory St, San Francisco, CA 94016" +316716,Bose SoundSport Headphones,1,99.99,12/27/19 16:01,"573 Lake St, Dallas, TX 75001" +316717,Wired Headphones,1,11.99,12/26/19 07:47,"798 Hill St, Portland, OR 97035" +316718,Wired Headphones,1,11.99,12/22/19 22:55,"194 Walnut St, San Francisco, CA 94016" +316719,AA Batteries (4-pack),1,3.84,12/02/19 12:53,"522 Forest St, Seattle, WA 98101" +316720,USB-C Charging Cable,1,11.95,12/11/19 08:30,"563 Jefferson St, New York City, NY 10001" +316721,Lightning Charging Cable,1,14.95,12/16/19 12:53,"642 11th St, Los Angeles, CA 90001" +316722,iPhone,1,700,12/05/19 09:39,"323 Chestnut St, Dallas, TX 75001" +316723,AAA Batteries (4-pack),1,2.99,12/22/19 21:20,"995 Maple St, New York City, NY 10001" +316724,Wired Headphones,1,11.99,12/31/19 11:56,"285 Main St, San Francisco, CA 94016" +316725,34in Ultrawide Monitor,1,379.99,12/30/19 20:36,"103 Cedar St, Seattle, WA 98101" +316726,Apple Airpods Headphones,1,150,12/28/19 18:12,"250 Park St, New York City, NY 10001" +316727,34in Ultrawide Monitor,1,379.99,12/25/19 19:52,"488 Lake St, New York City, NY 10001" +316728,Wired Headphones,1,11.99,12/12/19 22:15,"858 12th St, Boston, MA 02215" +316729,Bose SoundSport Headphones,1,99.99,12/20/19 17:45,"27 Wilson St, Dallas, TX 75001" +316730,20in Monitor,1,109.99,12/11/19 22:07,"639 4th St, Austin, TX 73301" +316731,27in FHD Monitor,1,149.99,12/21/19 17:02,"148 4th St, New York City, NY 10001" +316732,Apple Airpods Headphones,1,150,12/23/19 12:13,"277 West St, Austin, TX 73301" +316733,iPhone,1,700,12/01/19 12:31,"457 West St, Los Angeles, CA 90001" +316734,Bose SoundSport Headphones,1,99.99,12/12/19 04:33,"303 Lake St, Seattle, WA 98101" +316735,Vareebadd Phone,1,400,12/06/19 22:04,"555 Spruce St, Los Angeles, CA 90001" +316735,USB-C Charging Cable,1,11.95,12/06/19 22:04,"555 Spruce St, Los Angeles, CA 90001" +316736,USB-C Charging Cable,1,11.95,12/14/19 22:29,"857 10th St, Dallas, TX 75001" +316737,Lightning Charging Cable,1,14.95,12/05/19 10:56,"812 Dogwood St, San Francisco, CA 94016" +,,,,, +316738,Wired Headphones,2,11.99,12/29/19 09:41,"539 Pine St, New York City, NY 10001" +316739,Lightning Charging Cable,1,14.95,12/18/19 16:17,"229 Chestnut St, Los Angeles, CA 90001" +316740,27in FHD Monitor,1,149.99,12/19/19 15:19,"874 Washington St, Atlanta, GA 30301" +316741,27in 4K Gaming Monitor,1,389.99,12/08/19 14:12,"871 West St, San Francisco, CA 94016" +316742,20in Monitor,1,109.99,12/27/19 07:41,"13 10th St, New York City, NY 10001" +316743,Lightning Charging Cable,1,14.95,12/14/19 19:25,"99 South St, Austin, TX 73301" +316744,USB-C Charging Cable,1,11.95,12/01/19 21:16,"941 Ridge St, Dallas, TX 75001" +316745,AA Batteries (4-pack),1,3.84,12/03/19 18:48,"349 13th St, San Francisco, CA 94016" +316746,AA Batteries (4-pack),2,3.84,12/01/19 14:55,"416 Johnson St, Los Angeles, CA 90001" +316747,Wired Headphones,1,11.99,12/17/19 05:55,"246 Spruce St, Los Angeles, CA 90001" +316748,34in Ultrawide Monitor,1,379.99,12/14/19 19:48,"633 Johnson St, Los Angeles, CA 90001" +316749,AA Batteries (4-pack),1,3.84,12/08/19 11:01,"185 Hickory St, New York City, NY 10001" +316750,Macbook Pro Laptop,1,1700,12/30/19 20:23,"103 Jefferson St, Portland, OR 97035" +316751,Wired Headphones,1,11.99,12/17/19 11:33,"591 Park St, Los Angeles, CA 90001" +316752,Lightning Charging Cable,1,14.95,12/28/19 13:53,"841 Lakeview St, New York City, NY 10001" +316753,Apple Airpods Headphones,1,150,12/28/19 16:50,"437 6th St, Seattle, WA 98101" +316754,AA Batteries (4-pack),1,3.84,12/09/19 19:11,"830 Madison St, New York City, NY 10001" +316755,AA Batteries (4-pack),2,3.84,12/12/19 11:08,"323 Forest St, Atlanta, GA 30301" +316756,Bose SoundSport Headphones,1,99.99,12/30/19 18:17,"54 2nd St, Los Angeles, CA 90001" +316757,Bose SoundSport Headphones,1,99.99,12/16/19 11:36,"765 Maple St, Boston, MA 02215" +316758,USB-C Charging Cable,1,11.95,12/18/19 09:31,"919 4th St, San Francisco, CA 94016" +316759,AAA Batteries (4-pack),1,2.99,12/01/19 20:46,"892 Hill St, New York City, NY 10001" +316760,Apple Airpods Headphones,1,150,12/03/19 00:16,"490 Main St, Atlanta, GA 30301" +316761,Lightning Charging Cable,1,14.95,12/05/19 15:48,"734 14th St, Seattle, WA 98101" +316762,Lightning Charging Cable,1,14.95,12/03/19 05:12,"101 Lakeview St, Los Angeles, CA 90001" +316763,AA Batteries (4-pack),1,3.84,12/27/19 09:06,"525 2nd St, New York City, NY 10001" +316764,27in 4K Gaming Monitor,1,389.99,12/05/19 17:12,"629 Jefferson St, Seattle, WA 98101" +316765,Lightning Charging Cable,1,14.95,12/13/19 14:25,"228 Johnson St, San Francisco, CA 94016" +316766,iPhone,1,700,12/26/19 01:10,"702 4th St, San Francisco, CA 94016" +316767,Apple Airpods Headphones,1,150,12/08/19 22:44,"347 Willow St, Los Angeles, CA 90001" +316768,USB-C Charging Cable,1,11.95,12/18/19 20:16,"86 Wilson St, Boston, MA 02215" +316769,AAA Batteries (4-pack),2,2.99,12/10/19 11:21,"593 Sunset St, New York City, NY 10001" +316770,ThinkPad Laptop,1,999.99,12/27/19 19:49,"890 River St, Los Angeles, CA 90001" +316771,Apple Airpods Headphones,1,150,12/20/19 20:05,"38 Chestnut St, Portland, OR 97035" +316772,27in 4K Gaming Monitor,1,389.99,12/23/19 09:59,"22 Maple St, San Francisco, CA 94016" +316773,USB-C Charging Cable,1,11.95,12/10/19 13:45,"205 9th St, Dallas, TX 75001" +316774,Bose SoundSport Headphones,1,99.99,12/05/19 23:13,"707 South St, Portland, OR 97035" +316775,USB-C Charging Cable,1,11.95,12/06/19 20:37,"433 Jefferson St, San Francisco, CA 94016" +316776,AA Batteries (4-pack),1,3.84,12/19/19 20:48,"693 7th St, Boston, MA 02215" +316777,Wired Headphones,1,11.99,12/23/19 08:33,"14 13th St, Los Angeles, CA 90001" +316778,27in 4K Gaming Monitor,1,389.99,12/03/19 09:16,"110 4th St, Los Angeles, CA 90001" +316779,AA Batteries (4-pack),2,3.84,12/18/19 18:16,"133 Sunset St, San Francisco, CA 94016" +316780,USB-C Charging Cable,1,11.95,12/12/19 14:10,"80 14th St, Seattle, WA 98101" +316781,AA Batteries (4-pack),1,3.84,12/17/19 08:03,"708 Hickory St, San Francisco, CA 94016" +316782,iPhone,1,700,12/26/19 10:35,"197 Wilson St, New York City, NY 10001" +316783,Lightning Charging Cable,1,14.95,12/30/19 20:13,"655 Hickory St, Austin, TX 73301" +316784,Lightning Charging Cable,1,14.95,12/27/19 21:10,"264 Jackson St, New York City, NY 10001" +316785,iPhone,1,700,12/22/19 12:57,"942 North St, New York City, NY 10001" +316786,AAA Batteries (4-pack),1,2.99,12/28/19 11:21,"749 Spruce St, Los Angeles, CA 90001" +316787,Wired Headphones,1,11.99,12/15/19 18:11,"763 Willow St, New York City, NY 10001" +316788,Google Phone,1,600,12/02/19 23:35,"512 Jackson St, Seattle, WA 98101" +316789,Lightning Charging Cable,1,14.95,12/16/19 09:11,"421 6th St, San Francisco, CA 94016" +316790,Wired Headphones,1,11.99,12/05/19 10:07,"967 Lake St, New York City, NY 10001" +316791,Lightning Charging Cable,1,14.95,12/30/19 18:26,"905 Ridge St, Atlanta, GA 30301" +316792,USB-C Charging Cable,1,11.95,12/22/19 10:54,"363 1st St, Dallas, TX 75001" +316793,Bose SoundSport Headphones,1,99.99,12/21/19 08:43,"548 Walnut St, San Francisco, CA 94016" +316794,Lightning Charging Cable,2,14.95,12/08/19 20:56,"464 Meadow St, New York City, NY 10001" +316795,Google Phone,1,600,12/07/19 11:17,"577 Lakeview St, San Francisco, CA 94016" +316796,ThinkPad Laptop,1,999.99,12/23/19 17:20,"866 7th St, Atlanta, GA 30301" +316797,20in Monitor,1,109.99,12/07/19 12:18,"812 River St, New York City, NY 10001" +316798,Lightning Charging Cable,1,14.95,12/27/19 22:51,"362 Walnut St, San Francisco, CA 94016" +316799,USB-C Charging Cable,1,11.95,12/14/19 11:10,"324 River St, Los Angeles, CA 90001" +316800,AAA Batteries (4-pack),1,2.99,12/27/19 15:26,"6 North St, Los Angeles, CA 90001" +316801,USB-C Charging Cable,1,11.95,12/07/19 07:18,"385 Johnson St, Boston, MA 02215" +316802,Apple Airpods Headphones,1,150,12/20/19 19:42,"349 Madison St, Atlanta, GA 30301" +316803,34in Ultrawide Monitor,1,379.99,12/24/19 12:53,"411 Highland St, Dallas, TX 75001" +316804,USB-C Charging Cable,1,11.95,12/04/19 14:03,"223 Wilson St, New York City, NY 10001" +316805,Apple Airpods Headphones,1,150,12/03/19 11:08,"698 Park St, San Francisco, CA 94016" +316806,Flatscreen TV,1,300,12/13/19 23:50,"642 Chestnut St, San Francisco, CA 94016" +316807,AA Batteries (4-pack),1,3.84,12/05/19 17:46,"711 Jefferson St, Seattle, WA 98101" +316808,Wired Headphones,1,11.99,12/24/19 17:38,"391 14th St, Los Angeles, CA 90001" +316809,USB-C Charging Cable,1,11.95,12/23/19 01:11,"668 West St, San Francisco, CA 94016" +316810,Bose SoundSport Headphones,1,99.99,12/09/19 11:30,"285 8th St, Los Angeles, CA 90001" +316811,Apple Airpods Headphones,1,150,12/15/19 20:38,"2 Willow St, Boston, MA 02215" +316812,Wired Headphones,1,11.99,12/17/19 19:07,"214 4th St, Atlanta, GA 30301" +316813,34in Ultrawide Monitor,1,379.99,12/11/19 10:50,"152 Spruce St, New York City, NY 10001" +316813,AA Batteries (4-pack),1,3.84,12/11/19 10:50,"152 Spruce St, New York City, NY 10001" +316814,Wired Headphones,1,11.99,12/15/19 17:59,"395 Cedar St, New York City, NY 10001" +316815,AAA Batteries (4-pack),3,2.99,12/05/19 21:10,"407 4th St, Atlanta, GA 30301" +316816,Macbook Pro Laptop,1,1700,12/02/19 06:38,"94 North St, Austin, TX 73301" +316817,AA Batteries (4-pack),1,3.84,12/27/19 14:47,"527 Madison St, Los Angeles, CA 90001" +316818,Wired Headphones,1,11.99,12/04/19 20:04,"810 Wilson St, New York City, NY 10001" +316819,27in FHD Monitor,1,149.99,12/04/19 12:42,"644 Center St, Seattle, WA 98101" +316820,USB-C Charging Cable,1,11.95,12/12/19 14:30,"832 River St, San Francisco, CA 94016" +316821,Lightning Charging Cable,1,14.95,12/26/19 08:21,"576 4th St, Atlanta, GA 30301" +316822,Apple Airpods Headphones,1,150,12/17/19 22:00,"216 Sunset St, Los Angeles, CA 90001" +316823,Wired Headphones,1,11.99,12/27/19 18:05,"248 Meadow St, Boston, MA 02215" +316824,USB-C Charging Cable,1,11.95,12/23/19 10:18,"239 12th St, Atlanta, GA 30301" +316825,AA Batteries (4-pack),1,3.84,12/11/19 22:27,"233 2nd St, San Francisco, CA 94016" +316826,Apple Airpods Headphones,1,150,12/18/19 18:50,"880 Center St, Los Angeles, CA 90001" +316827,iPhone,1,700,12/25/19 00:35,"896 Chestnut St, New York City, NY 10001" +316828,USB-C Charging Cable,1,11.95,12/26/19 13:42,"91 Lake St, Los Angeles, CA 90001" +316829,34in Ultrawide Monitor,1,379.99,12/13/19 23:11,"295 Sunset St, San Francisco, CA 94016" +316830,Wired Headphones,1,11.99,12/25/19 12:03,"8 Johnson St, San Francisco, CA 94016" +316831,ThinkPad Laptop,1,999.99,12/18/19 07:21,"798 Lakeview St, Boston, MA 02215" +316832,AA Batteries (4-pack),3,3.84,12/05/19 08:37,"966 Spruce St, Boston, MA 02215" +316833,AA Batteries (4-pack),2,3.84,12/24/19 15:54,"545 9th St, Los Angeles, CA 90001" +316834,AAA Batteries (4-pack),1,2.99,12/26/19 07:49,"855 4th St, Austin, TX 73301" +316834,AAA Batteries (4-pack),1,2.99,12/26/19 07:49,"855 4th St, Austin, TX 73301" +316835,AAA Batteries (4-pack),1,2.99,12/17/19 11:31,"600 1st St, Atlanta, GA 30301" +316836,Lightning Charging Cable,1,14.95,12/06/19 13:44,"12 Cedar St, Boston, MA 02215" +316837,Apple Airpods Headphones,1,150,12/01/19 23:54,"998 Willow St, San Francisco, CA 94016" +316838,20in Monitor,1,109.99,12/24/19 20:12,"681 Pine St, New York City, NY 10001" +316839,AA Batteries (4-pack),2,3.84,12/18/19 00:35,"920 4th St, Seattle, WA 98101" +316840,iPhone,1,700,12/02/19 11:15,"647 Ridge St, New York City, NY 10001" +316841,Bose SoundSport Headphones,1,99.99,12/10/19 13:17,"790 13th St, New York City, NY 10001" +316842,Macbook Pro Laptop,1,1700,12/28/19 13:55,"21 7th St, San Francisco, CA 94016" +316843,Bose SoundSport Headphones,1,99.99,12/21/19 07:57,"944 5th St, Austin, TX 73301" +316844,AA Batteries (4-pack),1,3.84,12/11/19 17:21,"597 Wilson St, Dallas, TX 75001" +316845,Google Phone,1,600,12/10/19 21:39,"24 Church St, New York City, NY 10001" +316845,Wired Headphones,1,11.99,12/10/19 21:39,"24 Church St, New York City, NY 10001" +316846,34in Ultrawide Monitor,1,379.99,12/03/19 15:37,"688 Pine St, Los Angeles, CA 90001" +316847,Bose SoundSport Headphones,1,99.99,12/19/19 09:28,"648 Dogwood St, Seattle, WA 98101" +316848,27in 4K Gaming Monitor,1,389.99,12/13/19 20:23,"155 Lincoln St, Atlanta, GA 30301" +316849,Apple Airpods Headphones,1,150,12/14/19 05:29,"826 Johnson St, Dallas, TX 75001" +316850,Bose SoundSport Headphones,1,99.99,12/13/19 08:11,"161 Main St, Seattle, WA 98101" +316851,USB-C Charging Cable,1,11.95,12/18/19 08:40,"124 Cedar St, Dallas, TX 75001" +316852,Vareebadd Phone,1,400,12/14/19 07:58,"120 9th St, San Francisco, CA 94016" +316853,Wired Headphones,2,11.99,12/01/19 09:15,"276 Johnson St, Los Angeles, CA 90001" +316854,AAA Batteries (4-pack),2,2.99,12/14/19 16:44,"613 Wilson St, Dallas, TX 75001" +316855,20in Monitor,1,109.99,12/11/19 13:46,"131 5th St, Austin, TX 73301" +316856,USB-C Charging Cable,1,11.95,12/21/19 06:25,"850 Spruce St, New York City, NY 10001" +316857,iPhone,1,700,12/23/19 11:57,"987 Chestnut St, San Francisco, CA 94016" +316858,Lightning Charging Cable,1,14.95,12/04/19 13:10,"387 7th St, Los Angeles, CA 90001" +316859,Apple Airpods Headphones,1,150,12/16/19 21:49,"904 Wilson St, San Francisco, CA 94016" +316860,Macbook Pro Laptop,1,1700,12/14/19 12:56,"764 Sunset St, Los Angeles, CA 90001" +316861,AAA Batteries (4-pack),1,2.99,12/07/19 08:55,"384 1st St, Los Angeles, CA 90001" +316862,AA Batteries (4-pack),2,3.84,12/20/19 12:41,"156 Cedar St, San Francisco, CA 94016" +316863,Apple Airpods Headphones,1,150,12/25/19 19:39,"718 South St, San Francisco, CA 94016" +316864,Lightning Charging Cable,1,14.95,12/11/19 19:16,"3 Cedar St, San Francisco, CA 94016" +316865,AAA Batteries (4-pack),1,2.99,12/04/19 20:22,"318 Main St, Seattle, WA 98101" +316866,iPhone,1,700,12/13/19 17:07,"575 Sunset St, San Francisco, CA 94016" +316867,27in 4K Gaming Monitor,1,389.99,12/25/19 23:02,"76 Washington St, Los Angeles, CA 90001" +316868,iPhone,1,700,12/27/19 15:54,"428 4th St, San Francisco, CA 94016" +316869,Lightning Charging Cable,2,14.95,12/19/19 14:15,"85 Jefferson St, Atlanta, GA 30301" +316870,AAA Batteries (4-pack),1,2.99,12/18/19 11:44,"803 Center St, Los Angeles, CA 90001" +316871,Flatscreen TV,1,300,12/09/19 00:09,"174 9th St, Los Angeles, CA 90001" +316872,Wired Headphones,1,11.99,12/01/19 21:52,"217 Highland St, Atlanta, GA 30301" +316873,Apple Airpods Headphones,1,150,12/12/19 11:19,"665 Main St, Austin, TX 73301" +316874,34in Ultrawide Monitor,1,379.99,12/25/19 11:31,"555 5th St, San Francisco, CA 94016" +316875,Apple Airpods Headphones,1,150,12/08/19 19:05,"403 Forest St, Los Angeles, CA 90001" +316876,Apple Airpods Headphones,1,150,12/03/19 20:37,"718 11th St, Portland, OR 97035" +316877,AAA Batteries (4-pack),1,2.99,12/31/19 22:50,"48 Jefferson St, San Francisco, CA 94016" +316878,Lightning Charging Cable,2,14.95,12/12/19 14:56,"695 Pine St, San Francisco, CA 94016" +316879,34in Ultrawide Monitor,1,379.99,12/21/19 11:41,"655 Hickory St, San Francisco, CA 94016" +316880,AAA Batteries (4-pack),1,2.99,12/18/19 13:31,"642 Sunset St, Dallas, TX 75001" +316881,Apple Airpods Headphones,1,150,12/25/19 12:49,"668 Jackson St, New York City, NY 10001" +316882,AAA Batteries (4-pack),2,2.99,12/13/19 12:01,"731 Center St, Los Angeles, CA 90001" +316883,USB-C Charging Cable,1,11.95,12/10/19 17:54,"125 Lakeview St, Seattle, WA 98101" +316884,34in Ultrawide Monitor,1,379.99,12/11/19 19:59,"960 Church St, Boston, MA 02215" +316885,Macbook Pro Laptop,1,1700,12/25/19 10:05,"134 8th St, Atlanta, GA 30301" +316886,Bose SoundSport Headphones,1,99.99,12/02/19 14:03,"228 Lake St, Portland, OR 97035" +316887,AA Batteries (4-pack),1,3.84,12/12/19 10:32,"406 Walnut St, San Francisco, CA 94016" +316888,Wired Headphones,2,11.99,12/16/19 17:34,"859 Church St, Atlanta, GA 30301" +316889,Wired Headphones,1,11.99,12/10/19 20:09,"850 11th St, New York City, NY 10001" +316890,AAA Batteries (4-pack),2,2.99,12/18/19 16:23,"997 River St, San Francisco, CA 94016" +316891,Apple Airpods Headphones,1,150,12/20/19 12:14,"803 9th St, Los Angeles, CA 90001" +316892,Apple Airpods Headphones,1,150,12/27/19 08:01,"386 North St, San Francisco, CA 94016" +316893,34in Ultrawide Monitor,1,379.99,12/25/19 21:18,"175 Johnson St, San Francisco, CA 94016" +316894,USB-C Charging Cable,1,11.95,12/26/19 12:20,"473 Wilson St, San Francisco, CA 94016" +316895,AAA Batteries (4-pack),1,2.99,12/09/19 14:57,"183 Cedar St, San Francisco, CA 94016" +316896,27in 4K Gaming Monitor,1,389.99,12/22/19 10:58,"467 4th St, New York City, NY 10001" +316897,Lightning Charging Cable,3,14.95,12/03/19 15:33,"799 Park St, Seattle, WA 98101" +316898,AA Batteries (4-pack),1,3.84,12/23/19 12:30,"761 Church St, Seattle, WA 98101" +316899,Apple Airpods Headphones,1,150,12/17/19 13:10,"216 Pine St, Los Angeles, CA 90001" +316899,Wired Headphones,1,11.99,12/17/19 13:10,"216 Pine St, Los Angeles, CA 90001" +316900,AA Batteries (4-pack),3,3.84,12/16/19 16:07,"418 Hickory St, Los Angeles, CA 90001" +316900,iPhone,1,700,12/16/19 16:07,"418 Hickory St, Los Angeles, CA 90001" +316901,Bose SoundSport Headphones,1,99.99,12/17/19 09:45,"479 Cedar St, Boston, MA 02215" +316902,Bose SoundSport Headphones,1,99.99,12/18/19 22:33,"254 Adams St, San Francisco, CA 94016" +316903,AAA Batteries (4-pack),2,2.99,12/17/19 17:38,"944 Jackson St, San Francisco, CA 94016" +316904,20in Monitor,1,109.99,12/17/19 10:38,"475 Lake St, Austin, TX 73301" +316905,Google Phone,1,600,12/25/19 11:41,"402 4th St, New York City, NY 10001" +316906,Apple Airpods Headphones,1,150,12/06/19 14:01,"638 Walnut St, San Francisco, CA 94016" +316907,Wired Headphones,2,11.99,12/15/19 15:15,"640 10th St, Seattle, WA 98101" +316908,Wired Headphones,1,11.99,12/01/19 19:35,"736 Ridge St, Seattle, WA 98101" +316909,USB-C Charging Cable,1,11.95,12/07/19 00:31,"185 Maple St, Portland, OR 97035" +316910,Lightning Charging Cable,1,14.95,12/28/19 23:11,"506 River St, San Francisco, CA 94016" +316911,Lightning Charging Cable,1,14.95,12/09/19 22:14,"67 Madison St, San Francisco, CA 94016" +316912,Apple Airpods Headphones,1,150,12/13/19 15:11,"155 1st St, New York City, NY 10001" +316913,Bose SoundSport Headphones,1,99.99,12/30/19 20:30,"606 2nd St, Dallas, TX 75001" +316914,iPhone,1,700,12/28/19 22:22,"329 Lincoln St, Austin, TX 73301" +316915,Flatscreen TV,1,300,12/10/19 21:38,"932 Pine St, San Francisco, CA 94016" +316916,USB-C Charging Cable,1,11.95,12/18/19 19:41,"889 Ridge St, San Francisco, CA 94016" +316917,AAA Batteries (4-pack),2,2.99,12/31/19 07:56,"881 Washington St, Boston, MA 02215" +316918,Lightning Charging Cable,1,14.95,12/29/19 09:36,"729 Walnut St, New York City, NY 10001" +316919,Lightning Charging Cable,1,14.95,12/27/19 16:58,"568 Sunset St, Austin, TX 73301" +316920,34in Ultrawide Monitor,1,379.99,12/24/19 11:48,"895 12th St, Los Angeles, CA 90001" +316921,Wired Headphones,1,11.99,12/17/19 21:29,"827 Hickory St, Los Angeles, CA 90001" +316922,ThinkPad Laptop,1,999.99,12/24/19 20:37,"569 Ridge St, New York City, NY 10001" +316923,Apple Airpods Headphones,1,150,12/28/19 07:19,"122 Jackson St, Dallas, TX 75001" +316924,AAA Batteries (4-pack),2,2.99,12/19/19 20:44,"561 Main St, Seattle, WA 98101" +316925,Apple Airpods Headphones,1,150,12/04/19 01:53,"782 Willow St, Portland, OR 97035" +316926,Lightning Charging Cable,1,14.95,12/07/19 20:35,"419 14th St, San Francisco, CA 94016" +316927,AAA Batteries (4-pack),1,2.99,12/19/19 20:53,"744 5th St, Portland, ME 04101" +316928,Wired Headphones,1,11.99,12/09/19 21:02,"275 Forest St, Dallas, TX 75001" +316929,Bose SoundSport Headphones,1,99.99,12/01/19 10:24,"167 Willow St, Austin, TX 73301" +316930,AAA Batteries (4-pack),1,2.99,12/15/19 14:34,"42 6th St, San Francisco, CA 94016" +316931,AA Batteries (4-pack),1,3.84,12/12/19 16:24,"880 Cedar St, Austin, TX 73301" +316932,AAA Batteries (4-pack),1,2.99,12/31/19 22:17,"140 Adams St, Los Angeles, CA 90001" +316933,AA Batteries (4-pack),1,3.84,12/23/19 16:48,"549 Elm St, Seattle, WA 98101" +316934,AA Batteries (4-pack),1,3.84,12/18/19 19:28,"955 Lake St, San Francisco, CA 94016" +316935,Wired Headphones,1,11.99,12/24/19 19:21,"806 Chestnut St, San Francisco, CA 94016" +316936,ThinkPad Laptop,1,999.99,12/06/19 12:47,"195 8th St, Atlanta, GA 30301" +316937,AA Batteries (4-pack),2,3.84,12/07/19 12:38,"744 Washington St, San Francisco, CA 94016" +316938,USB-C Charging Cable,1,11.95,12/30/19 12:28,"259 Willow St, Boston, MA 02215" +316939,AAA Batteries (4-pack),2,2.99,12/11/19 20:04,"389 Jackson St, San Francisco, CA 94016" +316940,AAA Batteries (4-pack),3,2.99,12/03/19 17:55,"715 10th St, Austin, TX 73301" +316941,Flatscreen TV,1,300,12/08/19 13:12,"130 Meadow St, San Francisco, CA 94016" +316942,Apple Airpods Headphones,1,150,12/08/19 07:43,"690 Walnut St, San Francisco, CA 94016" +316943,ThinkPad Laptop,1,999.99,12/20/19 14:13,"799 13th St, San Francisco, CA 94016" +316944,27in FHD Monitor,1,149.99,12/17/19 00:47,"521 9th St, Los Angeles, CA 90001" +316945,Apple Airpods Headphones,1,150,12/16/19 17:13,"622 River St, San Francisco, CA 94016" +316946,USB-C Charging Cable,1,11.95,12/15/19 13:38,"919 Wilson St, New York City, NY 10001" +316947,Lightning Charging Cable,2,14.95,12/01/19 10:59,"415 Lake St, Atlanta, GA 30301" +316948,Google Phone,1,600,12/05/19 11:14,"867 Center St, Austin, TX 73301" +316949,USB-C Charging Cable,1,11.95,12/31/19 10:41,"614 Highland St, Los Angeles, CA 90001" +316950,27in FHD Monitor,1,149.99,12/02/19 14:32,"451 Forest St, Portland, OR 97035" +316951,Apple Airpods Headphones,1,150,12/28/19 17:47,"158 Hill St, San Francisco, CA 94016" +316952,27in 4K Gaming Monitor,1,389.99,12/15/19 09:33,"301 Dogwood St, Boston, MA 02215" +316953,Apple Airpods Headphones,1,150,12/10/19 10:36,"408 7th St, San Francisco, CA 94016" +316954,Wired Headphones,1,11.99,12/31/19 17:17,"68 Washington St, New York City, NY 10001" +316955,Apple Airpods Headphones,1,150,12/18/19 14:46,"840 Pine St, San Francisco, CA 94016" +316956,USB-C Charging Cable,1,11.95,12/01/19 17:54,"145 1st St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +316957,Bose SoundSport Headphones,1,99.99,12/22/19 14:40,"994 Highland St, Austin, TX 73301" +316958,Google Phone,1,600,12/16/19 06:21,"494 14th St, San Francisco, CA 94016" +316959,Apple Airpods Headphones,1,150,12/22/19 15:09,"10 Forest St, Dallas, TX 75001" +316960,Bose SoundSport Headphones,1,99.99,12/06/19 17:12,"351 Dogwood St, Boston, MA 02215" +316961,AA Batteries (4-pack),1,3.84,12/23/19 15:34,"873 Cherry St, Los Angeles, CA 90001" +316962,Apple Airpods Headphones,1,150,12/17/19 23:09,"561 12th St, Atlanta, GA 30301" +316963,Google Phone,1,600,12/05/19 10:56,"745 Center St, Dallas, TX 75001" +316963,Wired Headphones,1,11.99,12/05/19 10:56,"745 Center St, Dallas, TX 75001" +316964,Bose SoundSport Headphones,1,99.99,12/24/19 12:15,"433 Willow St, San Francisco, CA 94016" +316965,Lightning Charging Cable,1,14.95,12/14/19 16:58,"62 Hickory St, New York City, NY 10001" +316966,20in Monitor,1,109.99,12/17/19 12:17,"983 Washington St, Seattle, WA 98101" +316967,Apple Airpods Headphones,1,150,12/30/19 21:19,"610 Wilson St, San Francisco, CA 94016" +316968,LG Dryer,1,600.0,12/05/19 20:10,"862 Lakeview St, San Francisco, CA 94016" +316969,Lightning Charging Cable,1,14.95,12/24/19 12:37,"180 12th St, Austin, TX 73301" +316970,USB-C Charging Cable,1,11.95,12/17/19 17:06,"627 Elm St, Boston, MA 02215" +316971,Apple Airpods Headphones,1,150,12/17/19 10:57,"581 Center St, Atlanta, GA 30301" +316972,USB-C Charging Cable,1,11.95,12/01/19 18:09,"120 Forest St, San Francisco, CA 94016" +316973,27in FHD Monitor,1,149.99,12/25/19 19:00,"753 Lake St, Seattle, WA 98101" +316974,iPhone,1,700,12/10/19 12:23,"536 Spruce St, Los Angeles, CA 90001" +316974,Wired Headphones,1,11.99,12/10/19 12:23,"536 Spruce St, Los Angeles, CA 90001" +316975,USB-C Charging Cable,2,11.95,12/04/19 22:58,"598 12th St, Boston, MA 02215" +316976,Lightning Charging Cable,1,14.95,12/27/19 11:29,"712 Maple St, Boston, MA 02215" +316977,Flatscreen TV,1,300,12/14/19 10:04,"146 Church St, Los Angeles, CA 90001" +316978,27in 4K Gaming Monitor,1,389.99,12/12/19 07:01,"95 14th St, Portland, OR 97035" +316979,Lightning Charging Cable,1,14.95,12/28/19 16:42,"308 Chestnut St, New York City, NY 10001" +316980,iPhone,1,700,12/19/19 02:03,"134 Sunset St, Dallas, TX 75001" +316981,34in Ultrawide Monitor,1,379.99,12/15/19 22:43,"585 Ridge St, Portland, ME 04101" +316982,Apple Airpods Headphones,1,150,12/21/19 14:33,"221 10th St, New York City, NY 10001" +316983,USB-C Charging Cable,1,11.95,12/22/19 12:01,"14 11th St, Los Angeles, CA 90001" +316984,AAA Batteries (4-pack),1,2.99,12/26/19 19:46,"337 14th St, Los Angeles, CA 90001" +316985,27in FHD Monitor,1,149.99,12/01/19 20:48,"875 Pine St, Dallas, TX 75001" +316986,iPhone,1,700,12/31/19 21:19,"734 11th St, Boston, MA 02215" +316986,Lightning Charging Cable,1,14.95,12/31/19 21:19,"734 11th St, Boston, MA 02215" +316987,USB-C Charging Cable,1,11.95,12/01/19 08:33,"682 Ridge St, San Francisco, CA 94016" +316988,Apple Airpods Headphones,1,150,12/14/19 17:50,"798 7th St, Austin, TX 73301" +316989,AA Batteries (4-pack),1,3.84,12/12/19 12:33,"530 Madison St, Los Angeles, CA 90001" +316990,AAA Batteries (4-pack),1,2.99,12/03/19 17:45,"31 Madison St, San Francisco, CA 94016" +316991,AAA Batteries (4-pack),2,2.99,12/15/19 12:14,"552 Church St, San Francisco, CA 94016" +316992,AAA Batteries (4-pack),1,2.99,12/16/19 23:33,"508 12th St, Boston, MA 02215" +316993,AA Batteries (4-pack),1,3.84,12/11/19 06:56,"973 11th St, Boston, MA 02215" +316993,27in FHD Monitor,1,149.99,12/11/19 06:56,"973 11th St, Boston, MA 02215" +316994,Wired Headphones,1,11.99,12/10/19 20:30,"670 12th St, Dallas, TX 75001" +316995,USB-C Charging Cable,1,11.95,12/14/19 12:11,"394 7th St, Austin, TX 73301" +316996,AA Batteries (4-pack),1,3.84,12/08/19 00:04,"219 Walnut St, New York City, NY 10001" +316997,Apple Airpods Headphones,1,150,12/27/19 09:57,"355 Jackson St, Seattle, WA 98101" +316998,AA Batteries (4-pack),1,3.84,12/03/19 15:05,"168 Ridge St, Boston, MA 02215" +316999,Lightning Charging Cable,1,14.95,12/26/19 14:32,"724 Sunset St, New York City, NY 10001" +317000,Apple Airpods Headphones,1,150,12/29/19 18:46,"987 Washington St, Los Angeles, CA 90001" +317001,27in 4K Gaming Monitor,1,389.99,12/16/19 00:58,"420 7th St, San Francisco, CA 94016" +317002,Wired Headphones,1,11.99,12/21/19 14:44,"625 Hickory St, Portland, OR 97035" +317003,USB-C Charging Cable,1,11.95,12/01/19 11:01,"923 Wilson St, San Francisco, CA 94016" +317004,AAA Batteries (4-pack),2,2.99,12/20/19 06:01,"568 Adams St, Austin, TX 73301" +317005,USB-C Charging Cable,1,11.95,12/25/19 13:20,"544 Dogwood St, Boston, MA 02215" +317006,AAA Batteries (4-pack),1,2.99,12/08/19 08:49,"191 4th St, Seattle, WA 98101" +317007,Wired Headphones,1,11.99,12/16/19 17:23,"472 Madison St, Atlanta, GA 30301" +317008,USB-C Charging Cable,1,11.95,12/11/19 18:06,"473 Lake St, Atlanta, GA 30301" +317009,Macbook Pro Laptop,1,1700,12/18/19 17:31,"731 Johnson St, San Francisco, CA 94016" +317010,AA Batteries (4-pack),1,3.84,12/25/19 14:09,"192 Forest St, New York City, NY 10001" +317011,Lightning Charging Cable,1,14.95,12/21/19 21:32,"467 10th St, Los Angeles, CA 90001" +317012,AA Batteries (4-pack),1,3.84,12/14/19 08:57,"264 Jefferson St, Portland, OR 97035" +317013,Apple Airpods Headphones,1,150,12/29/19 21:14,"399 South St, San Francisco, CA 94016" +317014,Apple Airpods Headphones,1,150,12/08/19 22:46,"612 Jefferson St, San Francisco, CA 94016" +317015,Bose SoundSport Headphones,1,99.99,12/24/19 01:07,"440 Cedar St, Boston, MA 02215" +317016,Wired Headphones,1,11.99,12/10/19 13:46,"826 Washington St, San Francisco, CA 94016" +317017,Vareebadd Phone,1,400,12/29/19 13:06,"885 14th St, San Francisco, CA 94016" +317018,Wired Headphones,1,11.99,12/21/19 11:52,"379 Cedar St, Portland, OR 97035" +317019,Bose SoundSport Headphones,1,99.99,12/01/19 10:42,"918 Spruce St, Atlanta, GA 30301" +317020,iPhone,1,700,12/30/19 23:24,"816 10th St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +317021,27in FHD Monitor,1,149.99,12/10/19 23:20,"266 Lakeview St, Austin, TX 73301" +317022,AA Batteries (4-pack),1,3.84,12/30/19 11:02,"265 Chestnut St, San Francisco, CA 94016" +317023,27in FHD Monitor,1,149.99,12/09/19 12:52,"25 Cedar St, New York City, NY 10001" +317024,Wired Headphones,1,11.99,12/19/19 10:48,"596 Wilson St, Dallas, TX 75001" +317025,Lightning Charging Cable,1,14.95,12/26/19 18:16,"970 Lake St, Los Angeles, CA 90001" +317026,27in 4K Gaming Monitor,1,389.99,12/13/19 08:20,"798 Adams St, San Francisco, CA 94016" +317027,Wired Headphones,1,11.99,12/06/19 01:25,"853 Main St, Atlanta, GA 30301" +317028,Wired Headphones,1,11.99,12/07/19 21:04,"660 Cedar St, San Francisco, CA 94016" +317029,Apple Airpods Headphones,1,150,12/07/19 22:51,"884 River St, Atlanta, GA 30301" +317030,Macbook Pro Laptop,1,1700,12/26/19 20:35,"607 Wilson St, San Francisco, CA 94016" +317031,Flatscreen TV,1,300,12/31/19 13:30,"468 9th St, New York City, NY 10001" +317032,Lightning Charging Cable,1,14.95,12/13/19 12:06,"876 River St, New York City, NY 10001" +317033,USB-C Charging Cable,1,11.95,12/19/19 15:53,"271 Maple St, San Francisco, CA 94016" +317034,USB-C Charging Cable,1,11.95,12/09/19 23:24,"754 Johnson St, Los Angeles, CA 90001" +317035,Lightning Charging Cable,1,14.95,12/23/19 10:31,"624 Adams St, Los Angeles, CA 90001" +317036,Bose SoundSport Headphones,1,99.99,12/01/19 14:29,"316 Madison St, New York City, NY 10001" +317037,AAA Batteries (4-pack),1,2.99,12/22/19 09:09,"656 2nd St, Los Angeles, CA 90001" +317038,27in 4K Gaming Monitor,1,389.99,12/11/19 12:27,"80 Wilson St, Atlanta, GA 30301" +317039,Bose SoundSport Headphones,1,99.99,12/05/19 13:01,"916 Hill St, Seattle, WA 98101" +317040,Lightning Charging Cable,1,14.95,12/08/19 17:17,"1 2nd St, Los Angeles, CA 90001" +317041,Google Phone,1,600,12/17/19 10:27,"507 West St, Los Angeles, CA 90001" +317042,USB-C Charging Cable,1,11.95,12/16/19 20:39,"751 12th St, San Francisco, CA 94016" +317043,AAA Batteries (4-pack),1,2.99,12/24/19 20:40,"38 Church St, New York City, NY 10001" +317044,Flatscreen TV,1,300,12/15/19 23:33,"910 Jefferson St, Dallas, TX 75001" +317045,Wired Headphones,2,11.99,12/18/19 10:14,"802 Ridge St, Los Angeles, CA 90001" +317046,27in 4K Gaming Monitor,1,389.99,12/21/19 16:43,"322 Pine St, New York City, NY 10001" +317047,34in Ultrawide Monitor,1,379.99,12/19/19 20:02,"502 South St, San Francisco, CA 94016" +317048,Bose SoundSport Headphones,1,99.99,12/17/19 10:41,"795 North St, Boston, MA 02215" +317049,AA Batteries (4-pack),1,3.84,12/23/19 18:30,"254 Hill St, San Francisco, CA 94016" +317050,34in Ultrawide Monitor,1,379.99,12/26/19 19:15,"121 Hill St, New York City, NY 10001" +317051,Wired Headphones,1,11.99,12/23/19 12:00,"74 Forest St, Los Angeles, CA 90001" +317051,iPhone,1,700,12/23/19 12:00,"74 Forest St, Los Angeles, CA 90001" +317052,iPhone,1,700,12/21/19 23:49,"858 13th St, Los Angeles, CA 90001" +317053,iPhone,1,700,12/19/19 10:55,"109 Center St, Portland, ME 04101" +317054,Flatscreen TV,1,300,12/21/19 11:13,"198 Ridge St, Boston, MA 02215" +317055,Wired Headphones,2,11.99,12/16/19 17:58,"606 Sunset St, Boston, MA 02215" +317056,AA Batteries (4-pack),1,3.84,12/14/19 19:51,"92 Chestnut St, San Francisco, CA 94016" +317057,Bose SoundSport Headphones,1,99.99,12/25/19 13:45,"153 South St, Los Angeles, CA 90001" +317058,Wired Headphones,1,11.99,12/20/19 13:05,"185 Chestnut St, San Francisco, CA 94016" +317059,Flatscreen TV,1,300,12/10/19 10:54,"879 6th St, New York City, NY 10001" +317060,iPhone,1,700,12/17/19 14:45,"27 North St, San Francisco, CA 94016" +317061,Lightning Charging Cable,2,14.95,12/28/19 08:29,"838 North St, San Francisco, CA 94016" +317062,AA Batteries (4-pack),1,3.84,12/12/19 15:08,"367 Main St, Boston, MA 02215" +317063,Apple Airpods Headphones,1,150,12/01/19 13:13,"811 Pine St, Boston, MA 02215" +317064,Bose SoundSport Headphones,1,99.99,12/05/19 11:36,"4 13th St, Boston, MA 02215" +317065,Bose SoundSport Headphones,1,99.99,12/22/19 05:59,"950 North St, San Francisco, CA 94016" +317066,27in FHD Monitor,1,149.99,12/07/19 21:51,"997 Washington St, New York City, NY 10001" +317067,Wired Headphones,1,11.99,12/02/19 11:52,"220 Hickory St, Portland, OR 97035" +317068,Lightning Charging Cable,1,14.95,12/24/19 15:39,"30 Pine St, Los Angeles, CA 90001" +317069,AAA Batteries (4-pack),1,2.99,12/01/19 22:10,"851 Elm St, San Francisco, CA 94016" +317070,Wired Headphones,1,11.99,12/20/19 07:00,"758 8th St, Portland, OR 97035" +,,,,, +317071,Flatscreen TV,1,300,12/23/19 17:59,"612 Jefferson St, Los Angeles, CA 90001" +317072,Bose SoundSport Headphones,1,99.99,12/08/19 02:45,"523 Lincoln St, Los Angeles, CA 90001" +317073,Bose SoundSport Headphones,1,99.99,12/10/19 13:08,"356 1st St, San Francisco, CA 94016" +317073,34in Ultrawide Monitor,1,379.99,12/10/19 13:08,"356 1st St, San Francisco, CA 94016" +317074,Vareebadd Phone,1,400,12/06/19 10:29,"143 Chestnut St, San Francisco, CA 94016" +317074,Wired Headphones,1,11.99,12/06/19 10:29,"143 Chestnut St, San Francisco, CA 94016" +317075,AAA Batteries (4-pack),1,2.99,12/08/19 22:43,"737 Cherry St, San Francisco, CA 94016" +317076,USB-C Charging Cable,1,11.95,12/10/19 20:26,"487 Adams St, Atlanta, GA 30301" +317077,Macbook Pro Laptop,1,1700,12/06/19 13:26,"42 10th St, Atlanta, GA 30301" +317078,Bose SoundSport Headphones,1,99.99,12/21/19 15:34,"208 11th St, Atlanta, GA 30301" +317079,USB-C Charging Cable,1,11.95,12/19/19 10:53,"733 South St, New York City, NY 10001" +317080,AA Batteries (4-pack),1,3.84,12/02/19 19:24,"616 Cedar St, Boston, MA 02215" +317081,USB-C Charging Cable,1,11.95,12/08/19 20:58,"662 13th St, Boston, MA 02215" +317082,AA Batteries (4-pack),1,3.84,12/21/19 06:44,"52 West St, San Francisco, CA 94016" +317083,USB-C Charging Cable,1,11.95,12/08/19 12:31,"773 Dogwood St, New York City, NY 10001" +317084,20in Monitor,1,109.99,12/05/19 23:36,"683 Park St, Boston, MA 02215" +317085,Wired Headphones,2,11.99,12/16/19 13:47,"442 Ridge St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +317086,Macbook Pro Laptop,1,1700,12/09/19 09:54,"373 West St, Austin, TX 73301" +317087,iPhone,1,700,12/06/19 00:01,"750 10th St, Los Angeles, CA 90001" +317088,iPhone,1,700,12/24/19 13:22,"89 Maple St, Seattle, WA 98101" +317089,USB-C Charging Cable,1,11.95,12/02/19 08:43,"186 Ridge St, San Francisco, CA 94016" +317090,AAA Batteries (4-pack),1,2.99,12/13/19 19:35,"473 12th St, Los Angeles, CA 90001" +317091,34in Ultrawide Monitor,1,379.99,12/01/19 14:18,"107 Madison St, Austin, TX 73301" +317092,20in Monitor,1,109.99,12/29/19 15:35,"924 1st St, Boston, MA 02215" +317093,Vareebadd Phone,1,400,12/01/19 13:52,"80 1st St, San Francisco, CA 94016" +317093,USB-C Charging Cable,1,11.95,12/01/19 13:52,"80 1st St, San Francisco, CA 94016" +317094,Lightning Charging Cable,1,14.95,12/13/19 17:04,"646 Church St, Dallas, TX 75001" +317095,Macbook Pro Laptop,1,1700,12/31/19 20:08,"122 Walnut St, Los Angeles, CA 90001" +317096,AA Batteries (4-pack),1,3.84,12/12/19 06:56,"617 Wilson St, New York City, NY 10001" +317097,20in Monitor,1,109.99,12/26/19 17:50,"681 Hickory St, New York City, NY 10001" +317098,iPhone,1,700,12/13/19 14:53,"193 10th St, Atlanta, GA 30301" +317098,Wired Headphones,1,11.99,12/13/19 14:53,"193 10th St, Atlanta, GA 30301" +317099,Macbook Pro Laptop,1,1700,12/25/19 10:57,"99 Adams St, San Francisco, CA 94016" +317100,AAA Batteries (4-pack),2,2.99,12/02/19 19:12,"697 12th St, Boston, MA 02215" +317101,Wired Headphones,1,11.99,12/12/19 14:16,"885 Spruce St, San Francisco, CA 94016" +317102,USB-C Charging Cable,1,11.95,12/31/19 20:27,"861 1st St, Portland, ME 04101" +317103,AA Batteries (4-pack),1,3.84,12/20/19 06:52,"161 5th St, Los Angeles, CA 90001" +317104,Lightning Charging Cable,1,14.95,12/26/19 16:37,"696 9th St, Austin, TX 73301" +317105,27in FHD Monitor,1,149.99,12/10/19 13:01,"361 River St, Portland, OR 97035" +317105,Wired Headphones,1,11.99,12/10/19 13:01,"361 River St, Portland, OR 97035" +317106,Bose SoundSport Headphones,1,99.99,12/15/19 06:40,"850 South St, New York City, NY 10001" +317106,Macbook Pro Laptop,1,1700,12/15/19 06:40,"850 South St, New York City, NY 10001" +317107,Lightning Charging Cable,1,14.95,12/06/19 18:30,"122 Forest St, Portland, OR 97035" +317108,20in Monitor,1,109.99,12/08/19 11:34,"640 Wilson St, Atlanta, GA 30301" +317109,USB-C Charging Cable,1,11.95,12/21/19 12:45,"782 Sunset St, San Francisco, CA 94016" +317110,Bose SoundSport Headphones,1,99.99,12/13/19 12:03,"444 Highland St, Boston, MA 02215" +317111,AAA Batteries (4-pack),2,2.99,12/31/19 01:09,"445 Main St, Los Angeles, CA 90001" +317112,Apple Airpods Headphones,1,150,12/06/19 16:49,"645 Pine St, Los Angeles, CA 90001" +317113,USB-C Charging Cable,1,11.95,12/05/19 00:51,"892 Hill St, Los Angeles, CA 90001" +317114,AAA Batteries (4-pack),2,2.99,12/29/19 17:35,"469 North St, San Francisco, CA 94016" +317115,34in Ultrawide Monitor,1,379.99,12/08/19 13:08,"738 4th St, Seattle, WA 98101" +317116,Wired Headphones,1,11.99,12/30/19 10:00,"307 Washington St, Los Angeles, CA 90001" +317117,AA Batteries (4-pack),3,3.84,12/02/19 21:35,"274 West St, Portland, OR 97035" +317118,Bose SoundSport Headphones,1,99.99,12/10/19 23:29,"633 Chestnut St, Los Angeles, CA 90001" +317119,Bose SoundSport Headphones,1,99.99,12/19/19 06:06,"529 1st St, Portland, OR 97035" +317120,AA Batteries (4-pack),2,3.84,12/25/19 17:31,"864 Pine St, San Francisco, CA 94016" +317121,Lightning Charging Cable,1,14.95,12/26/19 15:06,"566 12th St, San Francisco, CA 94016" +317122,Apple Airpods Headphones,1,150,12/31/19 15:08,"988 Lincoln St, New York City, NY 10001" +317123,Flatscreen TV,1,300,12/08/19 11:30,"657 Main St, Dallas, TX 75001" +317124,USB-C Charging Cable,1,11.95,12/15/19 20:15,"907 Forest St, Boston, MA 02215" +317125,AA Batteries (4-pack),2,3.84,12/11/19 18:38,"715 Main St, Seattle, WA 98101" +317126,Apple Airpods Headphones,1,150,12/21/19 19:09,"203 7th St, San Francisco, CA 94016" +317127,USB-C Charging Cable,1,11.95,12/18/19 02:18,"787 2nd St, Boston, MA 02215" +317128,AAA Batteries (4-pack),1,2.99,12/28/19 11:05,"126 Cherry St, Atlanta, GA 30301" +317129,27in FHD Monitor,1,149.99,12/17/19 11:21,"320 Jackson St, Atlanta, GA 30301" +317130,Bose SoundSport Headphones,1,99.99,12/02/19 13:49,"388 Sunset St, Boston, MA 02215" +317131,Macbook Pro Laptop,1,1700,12/07/19 00:50,"205 Forest St, Portland, OR 97035" +317132,Apple Airpods Headphones,1,150,12/24/19 13:30,"43 North St, New York City, NY 10001" +317133,34in Ultrawide Monitor,1,379.99,12/19/19 03:22,"905 West St, Los Angeles, CA 90001" +317134,Lightning Charging Cable,1,14.95,12/26/19 10:06,"864 Chestnut St, San Francisco, CA 94016" +317135,Macbook Pro Laptop,1,1700,12/01/19 17:34,"939 12th St, New York City, NY 10001" +317136,Bose SoundSport Headphones,1,99.99,12/26/19 18:11,"217 14th St, Austin, TX 73301" +317137,iPhone,1,700,12/01/19 21:21,"858 Church St, Seattle, WA 98101" +317138,34in Ultrawide Monitor,1,379.99,12/23/19 14:09,"272 Elm St, Boston, MA 02215" +317139,Lightning Charging Cable,1,14.95,12/17/19 20:33,"904 Church St, Portland, OR 97035" +317140,Macbook Pro Laptop,1,1700,12/13/19 23:35,"923 Hill St, Seattle, WA 98101" +317141,Macbook Pro Laptop,1,1700,12/11/19 17:13,"842 6th St, Los Angeles, CA 90001" +317142,Wired Headphones,1,11.99,12/10/19 15:20,"420 4th St, New York City, NY 10001" +317143,Macbook Pro Laptop,1,1700,12/16/19 20:42,"837 Washington St, San Francisco, CA 94016" +317144,AAA Batteries (4-pack),3,2.99,12/04/19 08:11,"370 Main St, San Francisco, CA 94016" +317145,34in Ultrawide Monitor,1,379.99,12/06/19 23:32,"241 Johnson St, New York City, NY 10001" +317146,AAA Batteries (4-pack),1,2.99,12/27/19 14:56,"855 Cherry St, San Francisco, CA 94016" +317147,AA Batteries (4-pack),2,3.84,12/06/19 07:21,"656 14th St, Los Angeles, CA 90001" +317148,Bose SoundSport Headphones,1,99.99,12/18/19 12:48,"634 Cedar St, Dallas, TX 75001" +317149,Google Phone,1,600,12/12/19 16:39,"305 Washington St, Los Angeles, CA 90001" +317149,Wired Headphones,2,11.99,12/12/19 16:39,"305 Washington St, Los Angeles, CA 90001" +317150,Lightning Charging Cable,2,14.95,12/01/19 16:59,"708 2nd St, Boston, MA 02215" +317151,27in 4K Gaming Monitor,1,389.99,12/13/19 10:35,"768 Hickory St, Portland, OR 97035" +317152,27in 4K Gaming Monitor,1,389.99,12/20/19 20:30,"484 Pine St, Dallas, TX 75001" +317153,ThinkPad Laptop,1,999.99,12/06/19 00:45,"721 Church St, Portland, OR 97035" +317154,Bose SoundSport Headphones,1,99.99,12/06/19 07:00,"407 West St, San Francisco, CA 94016" +317155,Bose SoundSport Headphones,1,99.99,12/21/19 22:24,"34 Forest St, San Francisco, CA 94016" +317156,Apple Airpods Headphones,1,150,12/06/19 14:01,"258 Center St, Los Angeles, CA 90001" +317157,27in FHD Monitor,1,149.99,12/22/19 15:43,"674 Madison St, San Francisco, CA 94016" +317158,ThinkPad Laptop,1,999.99,12/06/19 04:52,"470 Cherry St, San Francisco, CA 94016" +317159,USB-C Charging Cable,1,11.95,12/12/19 09:10,"96 Lakeview St, Seattle, WA 98101" +317160,Lightning Charging Cable,1,14.95,12/08/19 17:13,"278 Washington St, San Francisco, CA 94016" +317161,Bose SoundSport Headphones,1,99.99,12/27/19 14:19,"478 Madison St, Los Angeles, CA 90001" +317162,AA Batteries (4-pack),2,3.84,12/26/19 20:39,"9 Adams St, Seattle, WA 98101" +317163,27in FHD Monitor,1,149.99,12/21/19 20:27,"796 Lake St, Los Angeles, CA 90001" +317164,Google Phone,1,600,12/26/19 15:52,"699 Johnson St, San Francisco, CA 94016" +317165,34in Ultrawide Monitor,1,379.99,12/16/19 16:32,"310 Hill St, San Francisco, CA 94016" +317166,34in Ultrawide Monitor,1,379.99,12/31/19 12:20,"251 Madison St, San Francisco, CA 94016" +317167,AA Batteries (4-pack),1,3.84,12/06/19 20:26,"541 5th St, Atlanta, GA 30301" +317168,AAA Batteries (4-pack),1,2.99,12/22/19 13:32,"638 Hill St, New York City, NY 10001" +317169,Lightning Charging Cable,1,14.95,12/10/19 18:48,"76 Dogwood St, Seattle, WA 98101" +317170,AA Batteries (4-pack),1,3.84,12/20/19 22:34,"542 Willow St, Dallas, TX 75001" +317171,USB-C Charging Cable,1,11.95,12/10/19 21:24,"597 8th St, Boston, MA 02215" +317172,iPhone,1,700,12/12/19 18:57,"500 14th St, Seattle, WA 98101" +317173,AA Batteries (4-pack),1,3.84,12/03/19 22:14,"492 Forest St, San Francisco, CA 94016" +317174,AAA Batteries (4-pack),2,2.99,12/30/19 13:28,"92 Jefferson St, Boston, MA 02215" +317175,AAA Batteries (4-pack),2,2.99,12/09/19 15:23,"458 Madison St, Los Angeles, CA 90001" +317176,USB-C Charging Cable,1,11.95,12/16/19 20:33,"206 Forest St, Los Angeles, CA 90001" +317177,AAA Batteries (4-pack),1,2.99,12/23/19 19:40,"905 Sunset St, San Francisco, CA 94016" +317178,Wired Headphones,1,11.99,12/17/19 15:22,"410 Washington St, Dallas, TX 75001" +317179,iPhone,1,700,12/03/19 19:03,"390 Meadow St, San Francisco, CA 94016" +317179,Lightning Charging Cable,1,14.95,12/03/19 19:03,"390 Meadow St, San Francisco, CA 94016" +317180,USB-C Charging Cable,1,11.95,12/17/19 13:24,"508 Madison St, Boston, MA 02215" +317181,Vareebadd Phone,1,400,12/20/19 21:08,"183 Hickory St, New York City, NY 10001" +317182,Apple Airpods Headphones,1,150,12/13/19 20:58,"781 Church St, San Francisco, CA 94016" +317183,USB-C Charging Cable,1,11.95,12/21/19 10:20,"344 14th St, Seattle, WA 98101" +317184,AAA Batteries (4-pack),2,2.99,12/12/19 10:00,"170 West St, Boston, MA 02215" +317185,20in Monitor,1,109.99,12/02/19 18:37,"297 Wilson St, Seattle, WA 98101" +317186,AA Batteries (4-pack),1,3.84,12/26/19 10:48,"199 12th St, San Francisco, CA 94016" +317187,AA Batteries (4-pack),1,3.84,12/18/19 16:45,"267 South St, Portland, OR 97035" +317188,Wired Headphones,1,11.99,12/08/19 14:02,"855 Lincoln St, Austin, TX 73301" +317189,AA Batteries (4-pack),1,3.84,12/14/19 21:23,"865 South St, Seattle, WA 98101" +317190,AAA Batteries (4-pack),1,2.99,12/19/19 21:15,"629 Pine St, Los Angeles, CA 90001" +317191,27in FHD Monitor,1,149.99,12/14/19 01:30,"830 Center St, Boston, MA 02215" +317192,Wired Headphones,1,11.99,12/18/19 18:06,"792 Cherry St, Boston, MA 02215" +,,,,, +317193,Apple Airpods Headphones,1,150,12/19/19 11:12,"903 7th St, New York City, NY 10001" +317194,Lightning Charging Cable,1,14.95,12/09/19 10:52,"814 Adams St, Atlanta, GA 30301" +317195,Lightning Charging Cable,1,14.95,12/20/19 17:28,"62 Park St, San Francisco, CA 94016" +317196,AAA Batteries (4-pack),1,2.99,12/05/19 11:51,"954 Center St, Los Angeles, CA 90001" +317197,Apple Airpods Headphones,1,150,12/18/19 12:38,"692 Willow St, Dallas, TX 75001" +317198,27in 4K Gaming Monitor,1,389.99,12/30/19 19:32,"4 Main St, Austin, TX 73301" +317199,AA Batteries (4-pack),1,3.84,12/22/19 15:03,"758 10th St, Austin, TX 73301" +317200,Lightning Charging Cable,1,14.95,12/14/19 19:31,"138 Spruce St, New York City, NY 10001" +317201,Vareebadd Phone,1,400,12/11/19 11:43,"276 Walnut St, San Francisco, CA 94016" +317202,AAA Batteries (4-pack),1,2.99,12/28/19 23:41,"617 13th St, New York City, NY 10001" +317202,Lightning Charging Cable,1,14.95,12/28/19 23:41,"617 13th St, New York City, NY 10001" +317203,Wired Headphones,1,11.99,12/28/19 18:10,"634 Jefferson St, Los Angeles, CA 90001" +317204,Flatscreen TV,1,300,12/07/19 20:41,"186 Jefferson St, New York City, NY 10001" +317205,Macbook Pro Laptop,1,1700,12/07/19 08:43,"562 Highland St, San Francisco, CA 94016" +317206,AA Batteries (4-pack),1,3.84,12/03/19 11:02,"716 Adams St, San Francisco, CA 94016" +317207,Macbook Pro Laptop,1,1700,12/03/19 14:09,"8 Maple St, New York City, NY 10001" +317208,AAA Batteries (4-pack),1,2.99,12/04/19 11:30,"558 7th St, Portland, OR 97035" +317209,34in Ultrawide Monitor,1,379.99,12/06/19 08:51,"772 1st St, Los Angeles, CA 90001" +317210,USB-C Charging Cable,1,11.95,12/30/19 18:56,"660 14th St, Seattle, WA 98101" +317211,LG Washing Machine,1,600.0,12/27/19 10:35,"60 Meadow St, Los Angeles, CA 90001" +317212,USB-C Charging Cable,1,11.95,12/06/19 14:51,"111 Church St, Atlanta, GA 30301" +317213,27in FHD Monitor,1,149.99,12/02/19 08:30,"749 Main St, Portland, OR 97035" +317214,Flatscreen TV,1,300,12/29/19 16:45,"52 River St, Los Angeles, CA 90001" +317215,27in FHD Monitor,1,149.99,12/29/19 12:27,"153 Ridge St, Seattle, WA 98101" +317216,34in Ultrawide Monitor,1,379.99,12/29/19 11:28,"801 Forest St, New York City, NY 10001" +317217,AA Batteries (4-pack),1,3.84,12/11/19 11:33,"297 2nd St, Austin, TX 73301" +317218,AA Batteries (4-pack),3,3.84,12/07/19 20:43,"424 Ridge St, San Francisco, CA 94016" +317219,Wired Headphones,1,11.99,12/17/19 00:44,"155 Wilson St, Atlanta, GA 30301" +317220,Lightning Charging Cable,1,14.95,12/22/19 11:36,"209 2nd St, Los Angeles, CA 90001" +317221,ThinkPad Laptop,1,999.99,12/19/19 10:34,"251 Main St, Portland, OR 97035" +317221,USB-C Charging Cable,1,11.95,12/19/19 10:34,"251 Main St, Portland, OR 97035" +317222,Wired Headphones,1,11.99,12/29/19 19:58,"842 Cherry St, Seattle, WA 98101" +317223,Lightning Charging Cable,1,14.95,12/01/19 12:17,"711 Jefferson St, San Francisco, CA 94016" +317224,27in FHD Monitor,1,149.99,12/19/19 21:31,"373 9th St, Dallas, TX 75001" +317224,Lightning Charging Cable,1,14.95,12/19/19 21:31,"373 9th St, Dallas, TX 75001" +317225,Apple Airpods Headphones,1,150,12/12/19 12:01,"287 Jackson St, San Francisco, CA 94016" +317226,AA Batteries (4-pack),1,3.84,12/26/19 20:53,"256 South St, Seattle, WA 98101" +317227,iPhone,1,700,12/01/19 19:33,"411 West St, San Francisco, CA 94016" +317228,Lightning Charging Cable,1,14.95,12/11/19 02:04,"866 11th St, San Francisco, CA 94016" +317229,AA Batteries (4-pack),1,3.84,12/07/19 20:13,"400 Jefferson St, Seattle, WA 98101" +317230,AA Batteries (4-pack),1,3.84,12/07/19 15:38,"519 Dogwood St, Atlanta, GA 30301" +317231,Apple Airpods Headphones,1,150,12/22/19 18:37,"361 11th St, Austin, TX 73301" +317232,AAA Batteries (4-pack),1,2.99,12/16/19 20:38,"881 Ridge St, Los Angeles, CA 90001" +317233,Apple Airpods Headphones,1,150,12/28/19 14:23,"58 Washington St, Los Angeles, CA 90001" +317234,Lightning Charging Cable,1,14.95,12/23/19 20:25,"695 10th St, Atlanta, GA 30301" +317235,Macbook Pro Laptop,1,1700,12/19/19 09:20,"735 Forest St, Los Angeles, CA 90001" +317236,Lightning Charging Cable,1,14.95,12/23/19 15:42,"504 13th St, Los Angeles, CA 90001" +317237,Bose SoundSport Headphones,1,99.99,12/25/19 20:04,"138 7th St, Boston, MA 02215" +317238,USB-C Charging Cable,1,11.95,12/06/19 17:30,"935 Dogwood St, San Francisco, CA 94016" +317238,AAA Batteries (4-pack),2,2.99,12/06/19 17:30,"935 Dogwood St, San Francisco, CA 94016" +317239,iPhone,1,700,12/11/19 17:16,"719 1st St, Austin, TX 73301" +317240,Wired Headphones,1,11.99,12/16/19 19:07,"447 2nd St, Austin, TX 73301" +317241,AA Batteries (4-pack),1,3.84,12/03/19 14:21,"100 Maple St, Los Angeles, CA 90001" +317242,Lightning Charging Cable,1,14.95,12/18/19 13:22,"123 Cedar St, Boston, MA 02215" +317243,Lightning Charging Cable,1,14.95,12/23/19 18:47,"536 Washington St, New York City, NY 10001" +317244,Lightning Charging Cable,1,14.95,12/22/19 20:25,"516 Cedar St, Boston, MA 02215" +317245,27in 4K Gaming Monitor,1,389.99,12/26/19 12:13,"49 Cherry St, San Francisco, CA 94016" +317246,AAA Batteries (4-pack),1,2.99,12/30/19 08:46,"527 Pine St, Seattle, WA 98101" +317247,USB-C Charging Cable,1,11.95,12/29/19 16:58,"207 Walnut St, New York City, NY 10001" +317248,Lightning Charging Cable,1,14.95,12/22/19 23:07,"428 Washington St, Dallas, TX 75001" +317249,27in 4K Gaming Monitor,1,389.99,12/28/19 12:52,"370 Pine St, Los Angeles, CA 90001" +317250,Apple Airpods Headphones,1,150,12/30/19 10:40,"888 Highland St, San Francisco, CA 94016" +317251,Lightning Charging Cable,1,14.95,12/23/19 19:30,"315 River St, Boston, MA 02215" +317252,Wired Headphones,1,11.99,12/23/19 05:59,"798 Johnson St, San Francisco, CA 94016" +317253,USB-C Charging Cable,1,11.95,12/15/19 22:38,"739 9th St, New York City, NY 10001" +317254,Lightning Charging Cable,2,14.95,12/06/19 12:55,"613 12th St, San Francisco, CA 94016" +317255,AA Batteries (4-pack),3,3.84,12/06/19 19:16,"416 Dogwood St, San Francisco, CA 94016" +317256,27in FHD Monitor,1,149.99,12/02/19 17:30,"649 Sunset St, Seattle, WA 98101" +317257,Wired Headphones,1,11.99,12/30/19 16:44,"209 Lincoln St, Dallas, TX 75001" +317258,AA Batteries (4-pack),1,3.84,12/10/19 11:30,"926 Dogwood St, Atlanta, GA 30301" +317259,iPhone,1,700,12/31/19 22:34,"268 1st St, Boston, MA 02215" +317259,Wired Headphones,1,11.99,12/31/19 22:34,"268 1st St, Boston, MA 02215" +317260,AAA Batteries (4-pack),1,2.99,12/07/19 11:39,"769 Hill St, New York City, NY 10001" +317261,Wired Headphones,1,11.99,12/23/19 10:04,"867 4th St, Los Angeles, CA 90001" +317262,USB-C Charging Cable,1,11.95,12/16/19 13:01,"404 River St, San Francisco, CA 94016" +317263,USB-C Charging Cable,1,11.95,12/24/19 06:10,"33 Main St, New York City, NY 10001" +317264,Lightning Charging Cable,1,14.95,12/08/19 20:41,"705 Hickory St, Seattle, WA 98101" +317265,Bose SoundSport Headphones,1,99.99,12/05/19 15:28,"350 Ridge St, San Francisco, CA 94016" +317266,Apple Airpods Headphones,1,150,12/18/19 12:54,"945 Main St, Portland, OR 97035" +317267,27in 4K Gaming Monitor,1,389.99,12/26/19 22:18,"580 Wilson St, Portland, OR 97035" +317268,27in FHD Monitor,1,149.99,12/25/19 22:36,"539 Spruce St, San Francisco, CA 94016" +317269,34in Ultrawide Monitor,1,379.99,12/08/19 01:07,"140 Adams St, Dallas, TX 75001" +317270,27in FHD Monitor,1,149.99,12/26/19 16:02,"463 6th St, Portland, OR 97035" +317271,20in Monitor,1,109.99,12/15/19 14:38,"239 14th St, Atlanta, GA 30301" +317272,27in FHD Monitor,1,149.99,12/24/19 18:13,"51 Cherry St, New York City, NY 10001" +317273,Apple Airpods Headphones,1,150,12/28/19 18:33,"350 6th St, Dallas, TX 75001" +317274,USB-C Charging Cable,1,11.95,12/27/19 17:57,"331 11th St, Boston, MA 02215" +317275,Wired Headphones,1,11.99,12/22/19 11:32,"375 Highland St, Los Angeles, CA 90001" +317276,27in FHD Monitor,1,149.99,12/12/19 21:57,"491 Madison St, Austin, TX 73301" +317277,Wired Headphones,1,11.99,12/04/19 11:01,"831 Forest St, Austin, TX 73301" +317278,Google Phone,1,600,12/24/19 08:14,"936 Cherry St, San Francisco, CA 94016" +317279,Apple Airpods Headphones,1,150,12/13/19 10:53,"715 Pine St, Austin, TX 73301" +317280,USB-C Charging Cable,1,11.95,12/02/19 21:22,"914 Hill St, San Francisco, CA 94016" +317281,AA Batteries (4-pack),1,3.84,12/30/19 22:32,"493 4th St, Boston, MA 02215" +317282,Wired Headphones,1,11.99,12/29/19 17:04,"764 6th St, Los Angeles, CA 90001" +317283,AAA Batteries (4-pack),3,2.99,12/27/19 12:47,"350 Main St, Los Angeles, CA 90001" +317284,AA Batteries (4-pack),1,3.84,12/09/19 15:38,"217 13th St, Boston, MA 02215" +317285,Apple Airpods Headphones,1,150,12/04/19 14:03,"603 Lake St, Los Angeles, CA 90001" +317286,Bose SoundSport Headphones,1,99.99,12/04/19 13:45,"1 Meadow St, Seattle, WA 98101" +317287,AA Batteries (4-pack),3,3.84,12/26/19 17:22,"562 Park St, San Francisco, CA 94016" +317288,27in 4K Gaming Monitor,1,389.99,12/25/19 19:58,"37 9th St, Boston, MA 02215" +317289,AAA Batteries (4-pack),1,2.99,12/23/19 15:59,"948 13th St, Los Angeles, CA 90001" +317290,AA Batteries (4-pack),1,3.84,12/29/19 15:20,"605 Elm St, Atlanta, GA 30301" +317291,Google Phone,1,600,12/02/19 15:42,"906 5th St, Boston, MA 02215" +317292,AA Batteries (4-pack),1,3.84,12/19/19 11:13,"744 8th St, Austin, TX 73301" +317293,27in FHD Monitor,1,149.99,12/23/19 18:36,"283 Highland St, San Francisco, CA 94016" +317294,Flatscreen TV,1,300,12/05/19 16:40,"655 13th St, Los Angeles, CA 90001" +317295,AAA Batteries (4-pack),2,2.99,12/14/19 12:21,"600 Hill St, Atlanta, GA 30301" +317296,Wired Headphones,1,11.99,12/04/19 22:08,"561 1st St, Portland, ME 04101" +317297,Apple Airpods Headphones,1,150,12/23/19 17:09,"935 5th St, Austin, TX 73301" +317298,27in 4K Gaming Monitor,1,389.99,12/30/19 11:09,"994 8th St, Los Angeles, CA 90001" +317299,iPhone,1,700,12/17/19 17:36,"510 Hickory St, Atlanta, GA 30301" +317299,Wired Headphones,1,11.99,12/17/19 17:36,"510 Hickory St, Atlanta, GA 30301" +317300,AAA Batteries (4-pack),4,2.99,12/04/19 06:54,"921 Lake St, Austin, TX 73301" +317301,AA Batteries (4-pack),1,3.84,12/18/19 13:42,"698 Center St, New York City, NY 10001" +317302,AAA Batteries (4-pack),1,2.99,12/23/19 06:04,"58 Pine St, San Francisco, CA 94016" +317303,USB-C Charging Cable,1,11.95,12/09/19 10:39,"559 South St, Los Angeles, CA 90001" +317304,AA Batteries (4-pack),1,3.84,12/19/19 09:40,"777 Dogwood St, Dallas, TX 75001" +,,,,, +317305,34in Ultrawide Monitor,1,379.99,12/29/19 21:58,"851 Spruce St, San Francisco, CA 94016" +317306,Flatscreen TV,1,300,12/13/19 08:38,"89 Spruce St, Boston, MA 02215" +317307,AAA Batteries (4-pack),1,2.99,12/08/19 12:29,"880 Cedar St, Atlanta, GA 30301" +317308,Apple Airpods Headphones,1,150,12/22/19 13:22,"405 Center St, Los Angeles, CA 90001" +317309,USB-C Charging Cable,1,11.95,12/19/19 12:14,"823 Meadow St, Portland, OR 97035" +317310,Bose SoundSport Headphones,1,99.99,12/27/19 14:14,"883 4th St, Atlanta, GA 30301" +317311,Flatscreen TV,1,300,12/20/19 21:24,"736 Hickory St, San Francisco, CA 94016" +317312,Lightning Charging Cable,1,14.95,12/29/19 21:49,"112 Adams St, Atlanta, GA 30301" +317313,AA Batteries (4-pack),1,3.84,12/27/19 22:55,"706 1st St, New York City, NY 10001" +317314,Lightning Charging Cable,1,14.95,12/13/19 14:51,"167 Sunset St, New York City, NY 10001" +317315,Apple Airpods Headphones,1,150,12/22/19 14:02,"959 Main St, San Francisco, CA 94016" +317316,USB-C Charging Cable,1,11.95,12/20/19 20:36,"968 Lincoln St, San Francisco, CA 94016" +317317,Wired Headphones,1,11.99,12/27/19 11:13,"762 Dogwood St, Austin, TX 73301" +317318,USB-C Charging Cable,1,11.95,12/03/19 08:01,"241 10th St, Seattle, WA 98101" +317319,AAA Batteries (4-pack),1,2.99,12/20/19 21:14,"373 Washington St, Seattle, WA 98101" +317320,Apple Airpods Headphones,1,150,12/27/19 20:33,"891 Dogwood St, New York City, NY 10001" +317321,27in 4K Gaming Monitor,1,389.99,12/06/19 19:52,"312 Adams St, Atlanta, GA 30301" +317322,Lightning Charging Cable,1,14.95,12/16/19 13:59,"468 Church St, New York City, NY 10001" +317323,AA Batteries (4-pack),1,3.84,12/08/19 18:13,"67 9th St, San Francisco, CA 94016" +317324,AA Batteries (4-pack),1,3.84,12/20/19 11:05,"354 Elm St, Boston, MA 02215" +317325,AA Batteries (4-pack),2,3.84,12/14/19 10:25,"255 Adams St, Atlanta, GA 30301" +317326,USB-C Charging Cable,1,11.95,12/06/19 21:31,"785 Maple St, Los Angeles, CA 90001" +317327,Apple Airpods Headphones,1,150,12/20/19 15:55,"184 Hill St, Los Angeles, CA 90001" +317328,ThinkPad Laptop,1,999.99,12/02/19 20:48,"316 Wilson St, Seattle, WA 98101" +317329,Bose SoundSport Headphones,1,99.99,12/30/19 01:33,"575 Hickory St, San Francisco, CA 94016" +317330,27in 4K Gaming Monitor,1,389.99,12/05/19 12:50,"597 Hill St, Portland, OR 97035" +317331,AAA Batteries (4-pack),1,2.99,12/10/19 19:40,"959 Lincoln St, San Francisco, CA 94016" +317332,AA Batteries (4-pack),2,3.84,12/12/19 22:49,"783 7th St, New York City, NY 10001" +317333,Apple Airpods Headphones,1,150,12/17/19 20:38,"273 Willow St, New York City, NY 10001" +317334,Google Phone,1,600,12/15/19 07:15,"918 Center St, New York City, NY 10001" +317335,AA Batteries (4-pack),1,3.84,12/01/19 22:35,"144 2nd St, Boston, MA 02215" +317336,27in FHD Monitor,1,149.99,12/22/19 14:31,"313 Dogwood St, Atlanta, GA 30301" +317337,Bose SoundSport Headphones,1,99.99,12/27/19 14:42,"312 9th St, New York City, NY 10001" +317338,Bose SoundSport Headphones,1,99.99,12/21/19 11:16,"215 13th St, Dallas, TX 75001" +317339,Lightning Charging Cable,1,14.95,12/01/19 12:47,"792 Hill St, San Francisco, CA 94016" +317340,Wired Headphones,1,11.99,12/19/19 13:25,"578 Spruce St, Portland, ME 04101" +317341,Apple Airpods Headphones,1,150,12/25/19 11:49,"108 Lake St, Los Angeles, CA 90001" +317342,34in Ultrawide Monitor,1,379.99,12/25/19 15:49,"446 Lakeview St, Los Angeles, CA 90001" +317343,AAA Batteries (4-pack),1,2.99,12/29/19 12:35,"360 2nd St, Los Angeles, CA 90001" +317344,ThinkPad Laptop,1,999.99,12/23/19 22:32,"130 5th St, Seattle, WA 98101" +317345,Bose SoundSport Headphones,1,99.99,12/05/19 21:25,"693 9th St, New York City, NY 10001" +317346,AA Batteries (4-pack),1,3.84,12/02/19 21:39,"588 Washington St, Los Angeles, CA 90001" +317347,USB-C Charging Cable,1,11.95,12/25/19 09:28,"250 14th St, Atlanta, GA 30301" +317348,USB-C Charging Cable,1,11.95,12/22/19 19:46,"822 Dogwood St, San Francisco, CA 94016" +317349,LG Dryer,1,600.0,12/24/19 02:40,"761 Pine St, New York City, NY 10001" +317350,Lightning Charging Cable,1,14.95,12/08/19 18:26,"448 Church St, Los Angeles, CA 90001" +317351,Apple Airpods Headphones,1,150,12/30/19 20:52,"135 14th St, Boston, MA 02215" +317352,Apple Airpods Headphones,1,150,12/01/19 20:48,"116 7th St, San Francisco, CA 94016" +317353,AA Batteries (4-pack),1,3.84,12/13/19 13:42,"606 Johnson St, Los Angeles, CA 90001" +317354,AAA Batteries (4-pack),1,2.99,12/29/19 13:56,"343 Jackson St, Los Angeles, CA 90001" +317355,AAA Batteries (4-pack),2,2.99,12/20/19 21:51,"840 Lincoln St, San Francisco, CA 94016" +317356,Apple Airpods Headphones,1,150,12/14/19 11:29,"848 6th St, San Francisco, CA 94016" +317357,AA Batteries (4-pack),1,3.84,12/22/19 16:03,"329 Cherry St, Dallas, TX 75001" +317358,Lightning Charging Cable,1,14.95,12/20/19 21:05,"668 14th St, Austin, TX 73301" +317359,27in 4K Gaming Monitor,1,389.99,12/13/19 19:45,"869 Hill St, Seattle, WA 98101" +317360,ThinkPad Laptop,1,999.99,12/12/19 07:21,"961 Maple St, Los Angeles, CA 90001" +317361,AAA Batteries (4-pack),3,2.99,12/04/19 19:14,"389 5th St, San Francisco, CA 94016" +317362,Apple Airpods Headphones,1,150,12/09/19 21:52,"3 10th St, Los Angeles, CA 90001" +317363,USB-C Charging Cable,1,11.95,12/20/19 19:18,"672 Dogwood St, San Francisco, CA 94016" +317364,AA Batteries (4-pack),1,3.84,12/23/19 13:39,"358 Chestnut St, Dallas, TX 75001" +317365,27in 4K Gaming Monitor,1,389.99,12/11/19 09:10,"842 Center St, Atlanta, GA 30301" +317366,Wired Headphones,1,11.99,12/16/19 10:23,"137 5th St, New York City, NY 10001" +317367,USB-C Charging Cable,1,11.95,12/02/19 16:40,"452 Wilson St, San Francisco, CA 94016" +317368,20in Monitor,1,109.99,12/27/19 21:18,"378 Center St, Atlanta, GA 30301" +317369,AA Batteries (4-pack),1,3.84,12/05/19 19:26,"848 Madison St, New York City, NY 10001" +317370,Apple Airpods Headphones,1,150,12/23/19 19:37,"6 South St, Dallas, TX 75001" +317371,Apple Airpods Headphones,1,150,12/30/19 16:23,"686 9th St, Boston, MA 02215" +317372,AAA Batteries (4-pack),1,2.99,12/22/19 14:04,"366 Spruce St, Dallas, TX 75001" +317373,AA Batteries (4-pack),3,3.84,12/03/19 12:36,"523 12th St, Austin, TX 73301" +317374,Lightning Charging Cable,1,14.95,12/27/19 20:40,"160 Lakeview St, Atlanta, GA 30301" +317375,AAA Batteries (4-pack),2,2.99,12/18/19 14:52,"70 Meadow St, Dallas, TX 75001" +317376,Wired Headphones,1,11.99,12/18/19 16:22,"357 5th St, New York City, NY 10001" +317377,Lightning Charging Cable,1,14.95,12/28/19 20:46,"551 6th St, Atlanta, GA 30301" +317378,AAA Batteries (4-pack),1,2.99,12/23/19 19:45,"805 Meadow St, San Francisco, CA 94016" +317379,AAA Batteries (4-pack),1,2.99,12/20/19 00:42,"694 Park St, San Francisco, CA 94016" +317380,iPhone,1,700,12/12/19 08:00,"136 Spruce St, New York City, NY 10001" +317381,AA Batteries (4-pack),1,3.84,12/20/19 19:04,"777 Cedar St, Dallas, TX 75001" +317382,USB-C Charging Cable,1,11.95,12/22/19 18:32,"17 14th St, Boston, MA 02215" +317383,AA Batteries (4-pack),1,3.84,12/17/19 10:41,"975 8th St, Boston, MA 02215" +317384,Lightning Charging Cable,1,14.95,12/30/19 11:35,"159 10th St, Portland, OR 97035" +317385,Wired Headphones,1,11.99,12/01/19 06:00,"358 Hill St, San Francisco, CA 94016" +317386,ThinkPad Laptop,1,999.99,12/23/19 00:07,"615 Wilson St, Boston, MA 02215" +317387,AAA Batteries (4-pack),1,2.99,12/04/19 18:01,"213 Dogwood St, New York City, NY 10001" +317388,AAA Batteries (4-pack),1,2.99,12/31/19 19:50,"285 Jackson St, Austin, TX 73301" +317389,USB-C Charging Cable,1,11.95,12/17/19 18:00,"580 Elm St, Seattle, WA 98101" +317390,AAA Batteries (4-pack),2,2.99,12/29/19 16:57,"549 West St, Boston, MA 02215" +317391,Bose SoundSport Headphones,1,99.99,12/05/19 00:10,"414 Jefferson St, San Francisco, CA 94016" +317392,Bose SoundSport Headphones,1,99.99,12/17/19 17:56,"952 Wilson St, Los Angeles, CA 90001" +317393,USB-C Charging Cable,1,11.95,12/18/19 14:45,"428 Main St, Seattle, WA 98101" +317394,Bose SoundSport Headphones,1,99.99,12/20/19 10:44,"309 Lincoln St, Austin, TX 73301" +317395,USB-C Charging Cable,1,11.95,12/02/19 13:13,"728 Chestnut St, Dallas, TX 75001" +317396,Wired Headphones,1,11.99,12/29/19 17:05,"892 Ridge St, Seattle, WA 98101" +317397,Apple Airpods Headphones,1,150,12/06/19 09:46,"73 12th St, Los Angeles, CA 90001" +317398,20in Monitor,1,109.99,12/09/19 17:24,"44 14th St, Portland, OR 97035" +317399,AAA Batteries (4-pack),1,2.99,12/17/19 13:17,"38 6th St, Dallas, TX 75001" +317400,Wired Headphones,1,11.99,12/28/19 09:48,"915 Jefferson St, San Francisco, CA 94016" +317401,Macbook Pro Laptop,1,1700,12/18/19 19:56,"944 Maple St, Dallas, TX 75001" +317402,Wired Headphones,1,11.99,12/05/19 23:55,"427 Walnut St, Boston, MA 02215" +317403,27in FHD Monitor,1,149.99,12/18/19 20:30,"965 Cedar St, Portland, OR 97035" +317404,Lightning Charging Cable,1,14.95,12/03/19 07:15,"924 Madison St, Boston, MA 02215" +317405,Lightning Charging Cable,1,14.95,12/22/19 13:28,"51 Hickory St, Boston, MA 02215" +317406,Google Phone,1,600,12/13/19 15:14,"901 Jackson St, New York City, NY 10001" +317406,USB-C Charging Cable,1,11.95,12/13/19 15:14,"901 Jackson St, New York City, NY 10001" +317407,27in FHD Monitor,1,149.99,12/24/19 15:31,"663 Wilson St, Boston, MA 02215" +317408,Bose SoundSport Headphones,1,99.99,12/17/19 11:52,"959 14th St, Boston, MA 02215" +317409,AAA Batteries (4-pack),1,2.99,12/18/19 18:21,"301 6th St, Atlanta, GA 30301" +317410,AA Batteries (4-pack),1,3.84,12/04/19 22:45,"318 Spruce St, Los Angeles, CA 90001" +317411,Wired Headphones,1,11.99,12/22/19 22:59,"979 North St, Atlanta, GA 30301" +317412,iPhone,1,700,12/04/19 22:07,"712 Dogwood St, New York City, NY 10001" +317413,iPhone,1,700,12/14/19 17:49,"486 Walnut St, New York City, NY 10001" +317414,Apple Airpods Headphones,1,150,12/04/19 14:57,"748 Johnson St, Boston, MA 02215" +317415,USB-C Charging Cable,2,11.95,12/12/19 19:02,"674 6th St, Boston, MA 02215" +317416,Lightning Charging Cable,1,14.95,12/05/19 17:51,"736 Sunset St, Austin, TX 73301" +317417,27in 4K Gaming Monitor,2,389.99,12/03/19 08:24,"984 Maple St, Boston, MA 02215" +317418,USB-C Charging Cable,1,11.95,12/30/19 17:42,"762 Lincoln St, Boston, MA 02215" +317419,Lightning Charging Cable,1,14.95,12/25/19 09:49,"235 Meadow St, San Francisco, CA 94016" +317420,Flatscreen TV,1,300,12/18/19 07:54,"701 11th St, San Francisco, CA 94016" +317421,27in 4K Gaming Monitor,1,389.99,12/05/19 14:52,"493 Elm St, San Francisco, CA 94016" +317422,Google Phone,1,600,12/13/19 10:47,"800 Cherry St, Boston, MA 02215" +317423,20in Monitor,1,109.99,12/13/19 18:14,"266 Church St, Dallas, TX 75001" +317424,34in Ultrawide Monitor,1,379.99,12/11/19 18:25,"540 13th St, Los Angeles, CA 90001" +317425,Flatscreen TV,1,300,12/14/19 14:48,"403 Jefferson St, Seattle, WA 98101" +317426,AAA Batteries (4-pack),1,2.99,12/26/19 15:33,"685 River St, Boston, MA 02215" +317427,AAA Batteries (4-pack),1,2.99,12/02/19 17:57,"765 Willow St, New York City, NY 10001" +317428,Macbook Pro Laptop,1,1700,12/30/19 12:14,"130 Jefferson St, Atlanta, GA 30301" +317429,Google Phone,1,600,12/17/19 23:01,"217 Lakeview St, Los Angeles, CA 90001" +317429,Flatscreen TV,1,300,12/17/19 23:01,"217 Lakeview St, Los Angeles, CA 90001" +317430,Vareebadd Phone,1,400,12/10/19 18:11,"539 Walnut St, San Francisco, CA 94016" +317431,AAA Batteries (4-pack),3,2.99,12/30/19 17:38,"473 2nd St, Los Angeles, CA 90001" +317432,AA Batteries (4-pack),1,3.84,12/07/19 11:26,"472 4th St, San Francisco, CA 94016" +317433,USB-C Charging Cable,1,11.95,12/31/19 23:03,"266 10th St, Los Angeles, CA 90001" +317434,Wired Headphones,1,11.99,12/10/19 01:22,"930 Johnson St, Atlanta, GA 30301" +317435,Wired Headphones,1,11.99,12/30/19 19:25,"81 10th St, Boston, MA 02215" +317435,USB-C Charging Cable,1,11.95,12/30/19 19:25,"81 10th St, Boston, MA 02215" +317436,AA Batteries (4-pack),1,3.84,12/31/19 12:54,"6 14th St, Los Angeles, CA 90001" +317437,USB-C Charging Cable,2,11.95,12/25/19 12:07,"477 Center St, San Francisco, CA 94016" +317438,Wired Headphones,1,11.99,12/07/19 12:53,"715 12th St, Los Angeles, CA 90001" +317439,AAA Batteries (4-pack),2,2.99,12/04/19 18:24,"851 Main St, San Francisco, CA 94016" +317440,AA Batteries (4-pack),1,3.84,12/02/19 17:17,"426 Jefferson St, Seattle, WA 98101" +317441,Wired Headphones,1,11.99,12/01/19 12:15,"6 Church St, Boston, MA 02215" +317442,AAA Batteries (4-pack),1,2.99,12/01/19 12:42,"806 14th St, Los Angeles, CA 90001" +317443,USB-C Charging Cable,1,11.95,12/04/19 09:25,"728 10th St, San Francisco, CA 94016" +317444,AA Batteries (4-pack),2,3.84,12/24/19 12:46,"977 Lincoln St, Los Angeles, CA 90001" +317445,USB-C Charging Cable,1,11.95,12/22/19 09:17,"24 South St, Los Angeles, CA 90001" +317446,AAA Batteries (4-pack),1,2.99,12/20/19 21:26,"238 Pine St, Dallas, TX 75001" +317447,Wired Headphones,1,11.99,12/03/19 10:51,"544 7th St, Seattle, WA 98101" +317448,AA Batteries (4-pack),2,3.84,12/14/19 13:36,"591 Willow St, New York City, NY 10001" +317448,27in 4K Gaming Monitor,1,389.99,12/14/19 13:36,"591 Willow St, New York City, NY 10001" +317449,Google Phone,1,600,12/15/19 23:05,"28 10th St, Austin, TX 73301" +317450,USB-C Charging Cable,1,11.95,12/16/19 10:17,"175 9th St, Los Angeles, CA 90001" +317451,Bose SoundSport Headphones,1,99.99,12/01/19 17:24,"717 11th St, Boston, MA 02215" +317452,AAA Batteries (4-pack),3,2.99,12/30/19 19:28,"852 Washington St, Seattle, WA 98101" +317453,Wired Headphones,1,11.99,12/07/19 14:34,"414 13th St, Dallas, TX 75001" +317454,iPhone,1,700,12/22/19 14:58,"667 10th St, Los Angeles, CA 90001" +317455,Apple Airpods Headphones,1,150,12/08/19 17:29,"65 Wilson St, Dallas, TX 75001" +317456,Apple Airpods Headphones,1,150,12/26/19 16:09,"758 Maple St, New York City, NY 10001" +317457,USB-C Charging Cable,1,11.95,12/12/19 12:52,"693 Church St, Portland, OR 97035" +317458,iPhone,1,700,12/16/19 18:23,"91 1st St, New York City, NY 10001" +317459,AA Batteries (4-pack),2,3.84,12/17/19 00:18,"309 1st St, San Francisco, CA 94016" +317460,Lightning Charging Cable,1,14.95,12/11/19 18:47,"441 Adams St, Dallas, TX 75001" +317461,Apple Airpods Headphones,1,150,12/08/19 09:33,"762 Dogwood St, Austin, TX 73301" +317462,ThinkPad Laptop,1,999.99,12/20/19 09:21,"983 Pine St, Portland, ME 04101" +317463,Apple Airpods Headphones,1,150,12/15/19 16:56,"634 Dogwood St, Los Angeles, CA 90001" +317464,iPhone,1,700,12/04/19 13:59,"128 Washington St, Seattle, WA 98101" +317464,ThinkPad Laptop,1,999.99,12/04/19 13:59,"128 Washington St, Seattle, WA 98101" +317465,AAA Batteries (4-pack),1,2.99,12/30/19 19:44,"691 Lincoln St, San Francisco, CA 94016" +317466,Lightning Charging Cable,1,14.95,12/07/19 10:11,"710 6th St, New York City, NY 10001" +317467,AAA Batteries (4-pack),1,2.99,12/18/19 15:19,"58 4th St, New York City, NY 10001" +317468,Wired Headphones,1,11.99,12/09/19 19:31,"71 Church St, Los Angeles, CA 90001" +317469,USB-C Charging Cable,1,11.95,12/31/19 08:00,"636 Forest St, Austin, TX 73301" +317470,Bose SoundSport Headphones,1,99.99,12/30/19 19:42,"512 9th St, Los Angeles, CA 90001" +317471,AAA Batteries (4-pack),3,2.99,12/25/19 21:16,"181 2nd St, San Francisco, CA 94016" +317472,Lightning Charging Cable,1,14.95,12/03/19 18:24,"898 4th St, Boston, MA 02215" +317473,Lightning Charging Cable,1,14.95,12/07/19 16:56,"306 13th St, Boston, MA 02215" +317473,Apple Airpods Headphones,1,150,12/07/19 16:56,"306 13th St, Boston, MA 02215" +317474,Bose SoundSport Headphones,1,99.99,12/05/19 11:19,"619 8th St, Los Angeles, CA 90001" +317475,Apple Airpods Headphones,1,150,12/17/19 08:39,"920 13th St, Los Angeles, CA 90001" +317476,Lightning Charging Cable,1,14.95,12/08/19 20:37,"669 Cherry St, Atlanta, GA 30301" +317477,AA Batteries (4-pack),1,3.84,12/06/19 13:05,"534 8th St, San Francisco, CA 94016" +317478,Apple Airpods Headphones,1,150,12/12/19 20:28,"54 Jackson St, Los Angeles, CA 90001" +317479,Wired Headphones,1,11.99,12/22/19 13:12,"357 Church St, Dallas, TX 75001" +317480,Wired Headphones,1,11.99,12/22/19 09:50,"532 13th St, San Francisco, CA 94016" +317481,Wired Headphones,2,11.99,12/04/19 19:54,"98 9th St, San Francisco, CA 94016" +317482,Wired Headphones,1,11.99,12/06/19 13:08,"31 North St, Los Angeles, CA 90001" +317483,20in Monitor,1,109.99,12/03/19 12:33,"883 Jackson St, New York City, NY 10001" +317484,Wired Headphones,1,11.99,12/13/19 10:16,"274 11th St, Los Angeles, CA 90001" +317485,AA Batteries (4-pack),1,3.84,12/18/19 10:42,"621 North St, San Francisco, CA 94016" +317486,Macbook Pro Laptop,1,1700,12/22/19 01:07,"351 Center St, Atlanta, GA 30301" +317487,USB-C Charging Cable,1,11.95,12/03/19 10:05,"779 Maple St, Dallas, TX 75001" +317488,AA Batteries (4-pack),3,3.84,12/09/19 15:32,"789 Lake St, Los Angeles, CA 90001" +317489,34in Ultrawide Monitor,1,379.99,12/03/19 20:21,"213 5th St, Los Angeles, CA 90001" +317490,iPhone,1,700,12/11/19 10:07,"860 Washington St, Austin, TX 73301" +317491,Lightning Charging Cable,1,14.95,12/04/19 12:54,"951 8th St, Los Angeles, CA 90001" +317492,27in 4K Gaming Monitor,1,389.99,12/04/19 00:17,"164 Highland St, Boston, MA 02215" +317493,Macbook Pro Laptop,1,1700,12/07/19 09:31,"245 Elm St, San Francisco, CA 94016" +317494,Lightning Charging Cable,1,14.95,12/02/19 10:11,"308 Walnut St, San Francisco, CA 94016" +317495,USB-C Charging Cable,1,11.95,12/20/19 18:05,"757 Center St, Los Angeles, CA 90001" +317496,Apple Airpods Headphones,1,150,12/18/19 20:48,"778 12th St, Portland, OR 97035" +317497,USB-C Charging Cable,1,11.95,12/18/19 10:53,"16 Walnut St, San Francisco, CA 94016" +317498,AAA Batteries (4-pack),2,2.99,12/02/19 09:24,"367 Lake St, Los Angeles, CA 90001" +317499,USB-C Charging Cable,2,11.95,12/07/19 21:29,"862 6th St, Boston, MA 02215" +317500,AA Batteries (4-pack),1,3.84,12/25/19 11:54,"323 8th St, Portland, OR 97035" +317501,Google Phone,1,600,12/18/19 11:58,"911 Walnut St, Los Angeles, CA 90001" +317502,34in Ultrawide Monitor,1,379.99,12/29/19 12:29,"924 10th St, Boston, MA 02215" +317503,iPhone,1,700,12/02/19 09:33,"303 11th St, San Francisco, CA 94016" +317503,Lightning Charging Cable,1,14.95,12/02/19 09:33,"303 11th St, San Francisco, CA 94016" +317504,Wired Headphones,1,11.99,12/09/19 22:03,"638 12th St, Austin, TX 73301" +317505,AA Batteries (4-pack),2,3.84,12/21/19 16:22,"956 Cedar St, Dallas, TX 75001" +317506,Wired Headphones,1,11.99,12/30/19 11:19,"719 Madison St, Seattle, WA 98101" +317507,iPhone,1,700,12/17/19 09:20,"428 Church St, San Francisco, CA 94016" +317508,AA Batteries (4-pack),1,3.84,12/12/19 12:43,"820 7th St, Atlanta, GA 30301" +317509,USB-C Charging Cable,2,11.95,12/24/19 17:08,"925 Jefferson St, Portland, OR 97035" +317510,Apple Airpods Headphones,1,150,12/11/19 17:18,"346 Johnson St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +317511,27in FHD Monitor,1,149.99,12/06/19 14:52,"593 Wilson St, Dallas, TX 75001" +317512,USB-C Charging Cable,1,11.95,12/21/19 12:21,"923 Hill St, Boston, MA 02215" +317513,Bose SoundSport Headphones,1,99.99,12/22/19 01:14,"491 5th St, Seattle, WA 98101" +317514,Wired Headphones,1,11.99,12/10/19 10:53,"732 6th St, Los Angeles, CA 90001" +317515,USB-C Charging Cable,1,11.95,12/23/19 14:02,"507 Dogwood St, Austin, TX 73301" +317516,Bose SoundSport Headphones,1,99.99,12/11/19 13:21,"869 West St, San Francisco, CA 94016" +317517,AA Batteries (4-pack),1,3.84,12/06/19 16:13,"30 Spruce St, San Francisco, CA 94016" +317518,Lightning Charging Cable,1,14.95,12/09/19 21:03,"327 River St, Los Angeles, CA 90001" +317519,Bose SoundSport Headphones,1,99.99,12/27/19 12:01,"487 Meadow St, Portland, ME 04101" +317520,Wired Headphones,1,11.99,12/02/19 10:33,"19 14th St, San Francisco, CA 94016" +317521,USB-C Charging Cable,1,11.95,12/29/19 17:09,"720 Highland St, New York City, NY 10001" +317522,Google Phone,1,600,12/08/19 18:55,"366 Adams St, San Francisco, CA 94016" +317522,USB-C Charging Cable,1,11.95,12/08/19 18:55,"366 Adams St, San Francisco, CA 94016" +317523,Lightning Charging Cable,1,14.95,12/16/19 15:14,"476 4th St, San Francisco, CA 94016" +317524,27in FHD Monitor,1,149.99,12/16/19 12:10,"950 Adams St, San Francisco, CA 94016" +317525,USB-C Charging Cable,1,11.95,12/24/19 19:06,"875 Ridge St, Portland, ME 04101" +317525,Bose SoundSport Headphones,1,99.99,12/24/19 19:06,"875 Ridge St, Portland, ME 04101" +317526,27in 4K Gaming Monitor,1,389.99,12/08/19 21:04,"290 Dogwood St, Seattle, WA 98101" +317527,iPhone,1,700,12/11/19 17:23,"19 Park St, Boston, MA 02215" +317528,Wired Headphones,1,11.99,12/22/19 21:02,"373 Center St, Austin, TX 73301" +317529,Wired Headphones,1,11.99,12/04/19 18:13,"913 Wilson St, Seattle, WA 98101" +317530,34in Ultrawide Monitor,1,379.99,12/09/19 12:57,"914 Spruce St, New York City, NY 10001" +317531,20in Monitor,1,109.99,12/08/19 19:43,"101 10th St, San Francisco, CA 94016" +317532,Macbook Pro Laptop,1,1700,12/01/19 21:53,"886 Cedar St, Los Angeles, CA 90001" +317533,Lightning Charging Cable,1,14.95,12/18/19 10:00,"75 4th St, Portland, OR 97035" +317534,USB-C Charging Cable,1,11.95,12/03/19 20:40,"349 Madison St, Los Angeles, CA 90001" +317535,ThinkPad Laptop,1,999.99,12/03/19 14:20,"455 4th St, Austin, TX 73301" +317536,AAA Batteries (4-pack),1,2.99,12/03/19 10:59,"195 1st St, Los Angeles, CA 90001" +317537,34in Ultrawide Monitor,1,379.99,12/11/19 18:27,"56 Jackson St, San Francisco, CA 94016" +317538,AA Batteries (4-pack),1,3.84,12/13/19 10:04,"79 Meadow St, New York City, NY 10001" +317539,Wired Headphones,1,11.99,12/21/19 17:42,"331 9th St, Dallas, TX 75001" +317540,34in Ultrawide Monitor,1,379.99,12/24/19 15:01,"882 Hickory St, San Francisco, CA 94016" +317541,iPhone,1,700,12/24/19 15:57,"208 Meadow St, San Francisco, CA 94016" +317542,AA Batteries (4-pack),1,3.84,12/06/19 12:39,"381 Elm St, Los Angeles, CA 90001" +317543,27in 4K Gaming Monitor,1,389.99,12/07/19 16:57,"370 Cherry St, Dallas, TX 75001" +317544,Google Phone,1,600,12/02/19 15:01,"481 11th St, Seattle, WA 98101" +317545,AA Batteries (4-pack),1,3.84,12/20/19 17:34,"497 North St, New York City, NY 10001" +317546,34in Ultrawide Monitor,1,379.99,12/15/19 14:44,"609 Spruce St, Austin, TX 73301" +317547,Wired Headphones,1,11.99,12/20/19 18:46,"169 Park St, Los Angeles, CA 90001" +317548,AA Batteries (4-pack),3,3.84,12/23/19 14:41,"205 Adams St, San Francisco, CA 94016" +317549,iPhone,1,700,12/20/19 18:42,"708 Wilson St, Boston, MA 02215" +317550,USB-C Charging Cable,1,11.95,12/10/19 15:17,"947 Lake St, San Francisco, CA 94016" +317551,Lightning Charging Cable,1,14.95,12/13/19 23:43,"831 River St, San Francisco, CA 94016" +317552,AA Batteries (4-pack),1,3.84,12/02/19 23:03,"534 Cedar St, San Francisco, CA 94016" +317553,Flatscreen TV,1,300,12/06/19 18:03,"523 Madison St, New York City, NY 10001" +317554,Apple Airpods Headphones,1,150,12/30/19 12:20,"977 9th St, Portland, OR 97035" +317555,Google Phone,1,600,12/22/19 17:22,"489 Cedar St, Seattle, WA 98101" +317556,Wired Headphones,1,11.99,12/22/19 20:41,"430 Church St, San Francisco, CA 94016" +317557,iPhone,1,700,12/01/19 11:02,"363 Willow St, New York City, NY 10001" +317558,Lightning Charging Cable,2,14.95,12/03/19 17:13,"924 Highland St, New York City, NY 10001" +317559,Lightning Charging Cable,1,14.95,12/20/19 19:10,"298 Highland St, Atlanta, GA 30301" +317560,AAA Batteries (4-pack),1,2.99,12/25/19 15:24,"145 4th St, Seattle, WA 98101" +317561,Lightning Charging Cable,1,14.95,12/08/19 07:35,"876 6th St, San Francisco, CA 94016" +317562,USB-C Charging Cable,1,11.95,12/14/19 14:19,"398 Meadow St, Portland, OR 97035" +317563,AA Batteries (4-pack),1,3.84,12/26/19 17:54,"549 Hickory St, Los Angeles, CA 90001" +317564,Lightning Charging Cable,1,14.95,12/05/19 18:14,"550 Jackson St, San Francisco, CA 94016" +317565,Apple Airpods Headphones,1,150,12/19/19 22:26,"443 Forest St, New York City, NY 10001" +317566,AAA Batteries (4-pack),1,2.99,12/04/19 03:45,"660 14th St, Los Angeles, CA 90001" +317567,Lightning Charging Cable,1,14.95,12/16/19 12:08,"718 6th St, New York City, NY 10001" +317568,Wired Headphones,1,11.99,12/15/19 17:40,"661 Washington St, Seattle, WA 98101" +317569,AAA Batteries (4-pack),1,2.99,12/30/19 06:00,"813 Center St, Boston, MA 02215" +317570,Google Phone,1,600,12/09/19 16:23,"8 Walnut St, San Francisco, CA 94016" +317571,Bose SoundSport Headphones,1,99.99,12/07/19 18:02,"83 7th St, Boston, MA 02215" +317572,Flatscreen TV,1,300,12/29/19 01:32,"31 Jefferson St, Seattle, WA 98101" +317573,Wired Headphones,1,11.99,12/28/19 21:10,"498 Washington St, Dallas, TX 75001" +317574,Bose SoundSport Headphones,1,99.99,12/24/19 13:57,"458 Center St, Los Angeles, CA 90001" +317575,Lightning Charging Cable,1,14.95,12/14/19 11:43,"240 Jefferson St, San Francisco, CA 94016" +317576,AA Batteries (4-pack),1,3.84,12/02/19 16:48,"150 Cedar St, Los Angeles, CA 90001" +317577,LG Washing Machine,1,600.0,12/09/19 11:09,"437 Walnut St, Boston, MA 02215" +317578,Apple Airpods Headphones,1,150,12/05/19 00:44,"547 11th St, Los Angeles, CA 90001" +317579,Apple Airpods Headphones,1,150,12/10/19 14:55,"439 Jefferson St, San Francisco, CA 94016" +317580,AA Batteries (4-pack),1,3.84,12/30/19 23:05,"532 Sunset St, Austin, TX 73301" +317581,Bose SoundSport Headphones,1,99.99,12/08/19 08:11,"782 1st St, Seattle, WA 98101" +317582,27in FHD Monitor,1,149.99,12/03/19 11:26,"755 South St, Los Angeles, CA 90001" +317583,ThinkPad Laptop,1,999.99,12/21/19 08:40,"105 5th St, New York City, NY 10001" +317584,AA Batteries (4-pack),1,3.84,12/16/19 14:56,"479 Church St, San Francisco, CA 94016" +317585,USB-C Charging Cable,1,11.95,12/18/19 10:59,"956 7th St, San Francisco, CA 94016" +317586,Lightning Charging Cable,1,14.95,12/02/19 15:33,"915 Hill St, Portland, ME 04101" +317587,Apple Airpods Headphones,1,150,12/09/19 22:54,"6 Adams St, Austin, TX 73301" +317588,Macbook Pro Laptop,1,1700,12/14/19 23:35,"36 Ridge St, Austin, TX 73301" +317589,AAA Batteries (4-pack),1,2.99,12/10/19 13:50,"622 Hill St, San Francisco, CA 94016" +317590,27in FHD Monitor,1,149.99,12/07/19 00:00,"406 Church St, Seattle, WA 98101" +317591,iPhone,1,700,12/31/19 19:11,"971 South St, San Francisco, CA 94016" +317592,LG Washing Machine,1,600.0,12/22/19 11:14,"639 Jefferson St, Portland, OR 97035" +317593,34in Ultrawide Monitor,1,379.99,12/06/19 14:02,"395 6th St, San Francisco, CA 94016" +317594,iPhone,1,700,12/14/19 08:51,"190 West St, Atlanta, GA 30301" +317595,AAA Batteries (4-pack),2,2.99,12/27/19 13:34,"921 Lakeview St, Portland, OR 97035" +317596,34in Ultrawide Monitor,1,379.99,12/03/19 18:11,"551 12th St, Los Angeles, CA 90001" +317597,USB-C Charging Cable,1,11.95,12/05/19 12:15,"842 10th St, Seattle, WA 98101" +317598,AAA Batteries (4-pack),1,2.99,12/23/19 12:13,"74 Highland St, Portland, OR 97035" +317599,Wired Headphones,1,11.99,12/20/19 00:43,"735 Jefferson St, San Francisco, CA 94016" +317600,AAA Batteries (4-pack),1,2.99,12/15/19 16:14,"908 4th St, San Francisco, CA 94016" +317601,27in FHD Monitor,1,149.99,12/14/19 16:59,"300 Church St, Austin, TX 73301" +317602,Lightning Charging Cable,1,14.95,12/21/19 13:52,"474 Ridge St, Los Angeles, CA 90001" +317603,Apple Airpods Headphones,1,150,12/19/19 21:39,"487 Johnson St, San Francisco, CA 94016" +317604,AAA Batteries (4-pack),1,2.99,12/01/19 21:21,"792 Adams St, Seattle, WA 98101" +317605,AA Batteries (4-pack),1,3.84,12/28/19 13:35,"205 Maple St, Seattle, WA 98101" +317606,AAA Batteries (4-pack),4,2.99,12/28/19 12:52,"930 Church St, Boston, MA 02215" +317607,Macbook Pro Laptop,1,1700,12/04/19 22:34,"505 Cherry St, Los Angeles, CA 90001" +317608,ThinkPad Laptop,1,999.99,12/02/19 20:48,"17 Madison St, San Francisco, CA 94016" +317609,Apple Airpods Headphones,1,150,12/08/19 09:25,"57 13th St, Boston, MA 02215" +317610,AA Batteries (4-pack),1,3.84,12/23/19 23:11,"418 Chestnut St, New York City, NY 10001" +317611,AAA Batteries (4-pack),1,2.99,12/17/19 19:03,"824 Lincoln St, Los Angeles, CA 90001" +317612,Google Phone,1,600,12/27/19 14:12,"296 11th St, Boston, MA 02215" +317612,Wired Headphones,1,11.99,12/27/19 14:12,"296 11th St, Boston, MA 02215" +317613,Google Phone,1,600,12/10/19 16:38,"944 Walnut St, San Francisco, CA 94016" +317614,34in Ultrawide Monitor,1,379.99,12/05/19 20:01,"127 2nd St, San Francisco, CA 94016" +317615,AA Batteries (4-pack),1,3.84,12/07/19 21:03,"421 8th St, New York City, NY 10001" +317616,Bose SoundSport Headphones,1,99.99,12/25/19 11:04,"603 Hickory St, San Francisco, CA 94016" +317617,AAA Batteries (4-pack),1,2.99,12/09/19 12:39,"343 Adams St, Los Angeles, CA 90001" +317618,AAA Batteries (4-pack),1,2.99,12/22/19 08:36,"376 5th St, New York City, NY 10001" +317619,Macbook Pro Laptop,1,1700,12/03/19 13:51,"512 Jackson St, New York City, NY 10001" +317620,20in Monitor,1,109.99,12/11/19 19:03,"326 Sunset St, Seattle, WA 98101" +317621,Flatscreen TV,1,300,12/30/19 21:05,"377 2nd St, San Francisco, CA 94016" +317622,Flatscreen TV,1,300,12/30/19 12:09,"160 12th St, Atlanta, GA 30301" +317623,Lightning Charging Cable,1,14.95,12/27/19 18:22,"910 Ridge St, New York City, NY 10001" +317624,Lightning Charging Cable,1,14.95,12/03/19 08:54,"901 12th St, Atlanta, GA 30301" +317625,AA Batteries (4-pack),1,3.84,12/19/19 09:56,"494 Lake St, Seattle, WA 98101" +317626,34in Ultrawide Monitor,1,379.99,12/14/19 17:36,"295 Pine St, Boston, MA 02215" +317627,Google Phone,1,600,12/11/19 15:49,"748 Maple St, Atlanta, GA 30301" +317628,Google Phone,1,600,12/12/19 07:50,"767 Cherry St, Dallas, TX 75001" +317628,USB-C Charging Cable,1,11.95,12/12/19 07:50,"767 Cherry St, Dallas, TX 75001" +317629,Lightning Charging Cable,1,14.95,12/20/19 08:02,"534 Jefferson St, San Francisco, CA 94016" +317630,AA Batteries (4-pack),1,3.84,12/30/19 15:50,"218 Park St, Los Angeles, CA 90001" +317631,iPhone,1,700,12/14/19 20:02,"572 11th St, Seattle, WA 98101" +317632,AA Batteries (4-pack),1,3.84,12/30/19 13:26,"835 Wilson St, New York City, NY 10001" +317633,USB-C Charging Cable,1,11.95,12/26/19 19:41,"306 Lake St, Atlanta, GA 30301" +317634,27in 4K Gaming Monitor,1,389.99,12/26/19 09:54,"755 Madison St, Seattle, WA 98101" +317635,AA Batteries (4-pack),1,3.84,12/16/19 17:20,"939 6th St, San Francisco, CA 94016" +317636,USB-C Charging Cable,1,11.95,12/25/19 09:39,"332 2nd St, Boston, MA 02215" +317637,Apple Airpods Headphones,1,150,12/21/19 00:07,"143 11th St, Seattle, WA 98101" +317638,AAA Batteries (4-pack),1,2.99,12/09/19 13:05,"657 Jackson St, New York City, NY 10001" +317639,iPhone,1,700,12/28/19 02:13,"318 Cedar St, Atlanta, GA 30301" +317640,Bose SoundSport Headphones,1,99.99,12/08/19 18:01,"973 Church St, Boston, MA 02215" +317641,Wired Headphones,1,11.99,01/01/20 00:01,"753 West St, Portland, OR 97035" +317642,AAA Batteries (4-pack),1,2.99,12/01/19 16:16,"70 West St, Los Angeles, CA 90001" +317643,27in 4K Gaming Monitor,1,389.99,12/20/19 13:39,"867 Highland St, Portland, ME 04101" +317644,Vareebadd Phone,1,400,12/03/19 18:10,"690 2nd St, New York City, NY 10001" +317645,27in FHD Monitor,1,149.99,12/18/19 19:13,"245 9th St, Los Angeles, CA 90001" +317646,Wired Headphones,1,11.99,12/16/19 13:07,"592 Pine St, Los Angeles, CA 90001" +317647,USB-C Charging Cable,1,11.95,12/19/19 01:19,"906 River St, Los Angeles, CA 90001" +317648,20in Monitor,1,109.99,12/10/19 14:20,"515 Washington St, San Francisco, CA 94016" +317649,27in 4K Gaming Monitor,1,389.99,12/21/19 17:24,"96 Elm St, Seattle, WA 98101" +317650,AAA Batteries (4-pack),7,2.99,12/14/19 19:02,"549 Walnut St, Los Angeles, CA 90001" +317651,27in FHD Monitor,1,149.99,12/03/19 19:54,"179 Jackson St, Boston, MA 02215" +317652,USB-C Charging Cable,1,11.95,12/31/19 10:17,"157 Ridge St, Los Angeles, CA 90001" +317653,AA Batteries (4-pack),1,3.84,12/04/19 19:14,"902 Forest St, Atlanta, GA 30301" +317654,Google Phone,1,600,12/14/19 11:03,"692 11th St, New York City, NY 10001" +317655,USB-C Charging Cable,1,11.95,12/22/19 10:25,"116 Johnson St, San Francisco, CA 94016" +317656,27in FHD Monitor,1,149.99,12/20/19 09:40,"345 Hickory St, Dallas, TX 75001" +317657,34in Ultrawide Monitor,1,379.99,12/10/19 00:54,"372 Johnson St, San Francisco, CA 94016" +317658,Lightning Charging Cable,1,14.95,12/21/19 22:07,"103 Wilson St, San Francisco, CA 94016" +317659,Bose SoundSport Headphones,1,99.99,12/10/19 21:55,"201 Park St, Los Angeles, CA 90001" +317660,Apple Airpods Headphones,1,150,12/25/19 16:38,"759 Lake St, New York City, NY 10001" +317661,USB-C Charging Cable,1,11.95,12/05/19 10:20,"388 Pine St, New York City, NY 10001" +317662,USB-C Charging Cable,1,11.95,12/15/19 13:21,"986 Church St, Atlanta, GA 30301" +317663,Macbook Pro Laptop,1,1700,12/23/19 16:30,"425 West St, Boston, MA 02215" +317664,iPhone,1,700,12/30/19 17:32,"877 Cedar St, New York City, NY 10001" +317665,20in Monitor,1,109.99,12/24/19 01:14,"919 Park St, Austin, TX 73301" +317666,USB-C Charging Cable,1,11.95,12/11/19 20:54,"354 9th St, New York City, NY 10001" +317667,Apple Airpods Headphones,1,150,12/05/19 14:43,"328 Lakeview St, Seattle, WA 98101" +317667,AA Batteries (4-pack),1,3.84,12/05/19 14:43,"328 Lakeview St, Seattle, WA 98101" +317668,Bose SoundSport Headphones,1,99.99,12/09/19 15:25,"12 Jackson St, Los Angeles, CA 90001" +317669,Wired Headphones,1,11.99,12/10/19 09:03,"429 Spruce St, San Francisco, CA 94016" +317670,Lightning Charging Cable,1,14.95,12/03/19 19:06,"104 Hickory St, Los Angeles, CA 90001" +317671,Bose SoundSport Headphones,1,99.99,12/16/19 13:06,"182 11th St, San Francisco, CA 94016" +317672,27in 4K Gaming Monitor,1,389.99,12/17/19 18:46,"880 West St, Boston, MA 02215" +317673,iPhone,1,700,12/31/19 20:50,"891 Main St, New York City, NY 10001" +317674,Macbook Pro Laptop,1,1700,12/15/19 17:37,"512 Walnut St, Dallas, TX 75001" +317675,27in FHD Monitor,1,149.99,12/21/19 18:17,"336 Willow St, Austin, TX 73301" +317676,AA Batteries (4-pack),1,3.84,12/27/19 13:49,"341 South St, New York City, NY 10001" +317677,Flatscreen TV,1,300,12/01/19 17:34,"736 Cedar St, Portland, ME 04101" +317678,iPhone,1,700,12/18/19 14:33,"973 Spruce St, Atlanta, GA 30301" +317679,Vareebadd Phone,1,400,12/09/19 21:36,"254 Lakeview St, Los Angeles, CA 90001" +317680,Apple Airpods Headphones,1,150,12/18/19 10:47,"695 Lake St, Boston, MA 02215" +317681,20in Monitor,1,109.99,12/03/19 09:27,"309 Johnson St, New York City, NY 10001" +317681,AA Batteries (4-pack),1,3.84,12/03/19 09:27,"309 Johnson St, New York City, NY 10001" +317682,USB-C Charging Cable,1,11.95,12/14/19 09:02,"781 Lakeview St, Austin, TX 73301" +317683,AAA Batteries (4-pack),1,2.99,12/21/19 06:01,"886 Willow St, Los Angeles, CA 90001" +317684,34in Ultrawide Monitor,1,379.99,12/19/19 23:35,"649 Lincoln St, Dallas, TX 75001" +317685,Lightning Charging Cable,1,14.95,12/21/19 08:08,"54 Chestnut St, San Francisco, CA 94016" +317686,Apple Airpods Headphones,1,150,12/07/19 06:49,"360 2nd St, San Francisco, CA 94016" +317687,AA Batteries (4-pack),1,3.84,12/27/19 14:22,"411 Chestnut St, Los Angeles, CA 90001" +317688,AAA Batteries (4-pack),1,2.99,12/29/19 11:55,"95 Elm St, Los Angeles, CA 90001" +317688,AAA Batteries (4-pack),2,2.99,12/29/19 11:55,"95 Elm St, Los Angeles, CA 90001" +317689,27in FHD Monitor,1,149.99,12/03/19 09:50,"862 11th St, Los Angeles, CA 90001" +317690,AA Batteries (4-pack),1,3.84,12/13/19 13:09,"183 Pine St, New York City, NY 10001" +317691,AAA Batteries (4-pack),2,2.99,12/11/19 09:25,"278 Adams St, Dallas, TX 75001" +317692,Bose SoundSport Headphones,1,99.99,12/15/19 00:52,"392 Adams St, Boston, MA 02215" +317693,Bose SoundSport Headphones,1,99.99,12/15/19 10:45,"972 Jefferson St, Atlanta, GA 30301" +317694,Google Phone,1,600,12/21/19 12:59,"874 Cedar St, New York City, NY 10001" +317695,Apple Airpods Headphones,1,150,12/18/19 20:31,"651 Highland St, New York City, NY 10001" +317696,Google Phone,1,600,12/13/19 12:35,"988 Church St, Boston, MA 02215" +317697,Wired Headphones,2,11.99,12/26/19 11:04,"165 Cherry St, San Francisco, CA 94016" +317698,Google Phone,1,600,12/18/19 17:45,"967 Adams St, San Francisco, CA 94016" +317699,USB-C Charging Cable,1,11.95,12/22/19 13:39,"176 Chestnut St, Portland, ME 04101" +317700,27in FHD Monitor,1,149.99,12/28/19 14:43,"590 Ridge St, Portland, OR 97035" +317701,Lightning Charging Cable,1,14.95,12/03/19 12:26,"486 South St, San Francisco, CA 94016" +317702,Vareebadd Phone,1,400,12/15/19 11:15,"802 Jefferson St, Dallas, TX 75001" +317702,Wired Headphones,2,11.99,12/15/19 11:15,"802 Jefferson St, Dallas, TX 75001" +317703,USB-C Charging Cable,1,11.95,12/06/19 12:54,"675 1st St, Los Angeles, CA 90001" +317704,Lightning Charging Cable,1,14.95,12/25/19 12:33,"955 Forest St, San Francisco, CA 94016" +317705,Apple Airpods Headphones,1,150,12/15/19 12:26,"909 10th St, San Francisco, CA 94016" +317706,Google Phone,1,600,12/28/19 16:52,"588 12th St, New York City, NY 10001" +317707,Lightning Charging Cable,1,14.95,12/21/19 19:08,"758 Washington St, San Francisco, CA 94016" +317708,Wired Headphones,1,11.99,12/17/19 21:19,"580 Church St, Boston, MA 02215" +317709,Bose SoundSport Headphones,1,99.99,12/14/19 02:23,"228 8th St, Boston, MA 02215" +317710,USB-C Charging Cable,1,11.95,12/17/19 11:59,"47 Hill St, New York City, NY 10001" +317711,AA Batteries (4-pack),1,3.84,12/11/19 06:17,"380 Jackson St, New York City, NY 10001" +317712,Lightning Charging Cable,1,14.95,12/21/19 15:41,"577 Sunset St, New York City, NY 10001" +317713,AA Batteries (4-pack),1,3.84,12/20/19 10:39,"409 8th St, Los Angeles, CA 90001" +317714,Wired Headphones,1,11.99,12/13/19 14:29,"465 Ridge St, New York City, NY 10001" +317715,Wired Headphones,1,11.99,12/13/19 22:06,"233 Cedar St, Boston, MA 02215" +317716,Bose SoundSport Headphones,1,99.99,12/12/19 20:30,"864 Madison St, Boston, MA 02215" +317717,27in 4K Gaming Monitor,1,389.99,12/14/19 20:41,"602 Lake St, Portland, OR 97035" +317718,Lightning Charging Cable,1,14.95,12/13/19 23:14,"307 7th St, San Francisco, CA 94016" +317719,27in FHD Monitor,1,149.99,12/30/19 12:35,"224 6th St, Dallas, TX 75001" +317720,34in Ultrawide Monitor,1,379.99,12/20/19 17:37,"427 7th St, Atlanta, GA 30301" +317721,AA Batteries (4-pack),1,3.84,12/31/19 14:30,"752 Spruce St, Portland, ME 04101" +317722,Wired Headphones,1,11.99,12/27/19 08:21,"816 Sunset St, San Francisco, CA 94016" +317723,AAA Batteries (4-pack),1,2.99,12/06/19 19:23,"526 2nd St, Portland, OR 97035" +317724,ThinkPad Laptop,1,999.99,12/13/19 13:47,"296 Ridge St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +317725,Lightning Charging Cable,1,14.95,12/24/19 09:44,"435 12th St, Dallas, TX 75001" +317726,AAA Batteries (4-pack),3,2.99,12/08/19 21:03,"778 Wilson St, Austin, TX 73301" +317727,Bose SoundSport Headphones,1,99.99,12/03/19 11:59,"245 Maple St, Dallas, TX 75001" +317728,Wired Headphones,2,11.99,12/18/19 09:24,"911 Jefferson St, Los Angeles, CA 90001" +317729,27in FHD Monitor,1,149.99,12/17/19 07:40,"304 Lincoln St, New York City, NY 10001" +317730,Wired Headphones,1,11.99,12/25/19 18:20,"175 Park St, Boston, MA 02215" +317731,Bose SoundSport Headphones,1,99.99,12/28/19 19:42,"329 Cherry St, Dallas, TX 75001" +317732,20in Monitor,1,109.99,12/09/19 19:22,"325 Church St, Seattle, WA 98101" +317733,AA Batteries (4-pack),1,3.84,12/26/19 20:55,"723 11th St, Seattle, WA 98101" +317734,Wired Headphones,1,11.99,12/15/19 10:46,"639 Hill St, Portland, OR 97035" +317735,Lightning Charging Cable,1,14.95,12/22/19 23:04,"819 Johnson St, Atlanta, GA 30301" +317736,Lightning Charging Cable,1,14.95,12/25/19 01:39,"71 2nd St, San Francisco, CA 94016" +317737,USB-C Charging Cable,1,11.95,12/31/19 14:31,"766 Dogwood St, Seattle, WA 98101" +317738,USB-C Charging Cable,1,11.95,12/15/19 11:49,"221 Chestnut St, Los Angeles, CA 90001" +317739,USB-C Charging Cable,1,11.95,12/21/19 11:14,"232 Dogwood St, Los Angeles, CA 90001" +317740,AA Batteries (4-pack),1,3.84,12/24/19 14:21,"163 Walnut St, Seattle, WA 98101" +317741,AA Batteries (4-pack),1,3.84,12/26/19 12:07,"948 Center St, Boston, MA 02215" +317742,34in Ultrawide Monitor,1,379.99,12/31/19 22:44,"440 Jefferson St, Boston, MA 02215" +317743,Wired Headphones,1,11.99,12/30/19 19:38,"223 14th St, San Francisco, CA 94016" +317744,Bose SoundSport Headphones,2,99.99,12/13/19 17:42,"125 14th St, Boston, MA 02215" +317745,iPhone,1,700,12/17/19 11:56,"474 6th St, San Francisco, CA 94016" +317746,27in FHD Monitor,1,149.99,12/19/19 16:36,"963 Wilson St, Portland, ME 04101" +317747,AA Batteries (4-pack),2,3.84,12/11/19 12:42,"254 Dogwood St, Seattle, WA 98101" +317748,AA Batteries (4-pack),2,3.84,12/19/19 18:45,"232 Sunset St, Portland, OR 97035" +317749,USB-C Charging Cable,1,11.95,12/02/19 00:01,"458 Willow St, San Francisco, CA 94016" +317750,Lightning Charging Cable,1,14.95,12/20/19 15:37,"600 Cherry St, New York City, NY 10001" +317751,Lightning Charging Cable,1,14.95,12/14/19 13:20,"270 Ridge St, Portland, OR 97035" +317752,ThinkPad Laptop,1,999.99,12/30/19 08:24,"117 Cedar St, Los Angeles, CA 90001" +317753,USB-C Charging Cable,1,11.95,12/15/19 11:36,"686 7th St, Los Angeles, CA 90001" +317754,Bose SoundSport Headphones,1,99.99,12/07/19 12:24,"516 Lake St, Los Angeles, CA 90001" +317755,AA Batteries (4-pack),3,3.84,12/02/19 16:36,"521 2nd St, New York City, NY 10001" +317756,AA Batteries (4-pack),1,3.84,12/02/19 10:19,"315 Cherry St, Dallas, TX 75001" +317757,27in 4K Gaming Monitor,1,389.99,12/09/19 04:54,"494 Ridge St, New York City, NY 10001" +317758,iPhone,1,700,12/11/19 21:31,"496 Park St, San Francisco, CA 94016" +317758,Wired Headphones,1,11.99,12/11/19 21:31,"496 Park St, San Francisco, CA 94016" +317759,AAA Batteries (4-pack),1,2.99,12/26/19 20:35,"665 Highland St, Portland, OR 97035" +317760,AA Batteries (4-pack),1,3.84,12/30/19 10:50,"234 Jackson St, Boston, MA 02215" +317761,AA Batteries (4-pack),1,3.84,12/17/19 09:02,"303 9th St, Dallas, TX 75001" +317762,AA Batteries (4-pack),1,3.84,12/05/19 20:47,"582 North St, Los Angeles, CA 90001" +317763,Bose SoundSport Headphones,1,99.99,12/15/19 21:58,"6 North St, Austin, TX 73301" +317764,USB-C Charging Cable,1,11.95,12/14/19 14:30,"31 Sunset St, New York City, NY 10001" +317765,Apple Airpods Headphones,1,150,12/29/19 00:03,"293 South St, Seattle, WA 98101" +317766,USB-C Charging Cable,1,11.95,12/07/19 20:30,"341 Cherry St, Los Angeles, CA 90001" +317767,ThinkPad Laptop,1,999.99,12/10/19 12:38,"311 Church St, San Francisco, CA 94016" +317768,USB-C Charging Cable,2,11.95,12/07/19 14:35,"331 Main St, Portland, OR 97035" +317769,Apple Airpods Headphones,1,150,12/23/19 15:56,"356 Walnut St, San Francisco, CA 94016" +317770,Wired Headphones,1,11.99,12/22/19 13:03,"400 13th St, San Francisco, CA 94016" +317771,USB-C Charging Cable,1,11.95,12/19/19 17:00,"147 Highland St, San Francisco, CA 94016" +317772,AAA Batteries (4-pack),1,2.99,12/05/19 20:41,"538 Pine St, Dallas, TX 75001" +317773,Lightning Charging Cable,1,14.95,12/11/19 13:36,"651 Center St, Portland, OR 97035" +317774,Lightning Charging Cable,1,14.95,12/07/19 19:36,"177 12th St, San Francisco, CA 94016" +317775,AA Batteries (4-pack),1,3.84,12/20/19 23:13,"834 Sunset St, Boston, MA 02215" +317776,Wired Headphones,1,11.99,12/29/19 12:37,"286 Church St, Dallas, TX 75001" +317777,27in FHD Monitor,1,149.99,12/03/19 19:38,"136 Chestnut St, Dallas, TX 75001" +317778,Bose SoundSport Headphones,1,99.99,12/19/19 11:41,"830 Jackson St, Seattle, WA 98101" +317779,USB-C Charging Cable,1,11.95,12/09/19 19:07,"360 Jackson St, San Francisco, CA 94016" +317780,27in FHD Monitor,1,149.99,12/10/19 17:19,"874 9th St, Atlanta, GA 30301" +317781,USB-C Charging Cable,1,11.95,12/13/19 18:15,"116 Hickory St, Los Angeles, CA 90001" +317782,Bose SoundSport Headphones,1,99.99,12/16/19 15:18,"446 Lincoln St, Portland, OR 97035" +317783,27in FHD Monitor,1,149.99,12/02/19 19:03,"349 7th St, Dallas, TX 75001" +317784,Google Phone,1,600,12/22/19 16:26,"861 1st St, San Francisco, CA 94016" +317785,AAA Batteries (4-pack),1,2.99,12/24/19 18:07,"500 8th St, New York City, NY 10001" +317786,Wired Headphones,1,11.99,12/05/19 12:01,"122 Park St, San Francisco, CA 94016" +317787,Lightning Charging Cable,1,14.95,12/17/19 19:30,"962 Spruce St, Los Angeles, CA 90001" +317788,Apple Airpods Headphones,1,150,12/28/19 20:30,"879 13th St, New York City, NY 10001" +317789,AAA Batteries (4-pack),1,2.99,12/11/19 15:32,"65 Hickory St, New York City, NY 10001" +317790,AAA Batteries (4-pack),3,2.99,12/03/19 18:07,"944 River St, Los Angeles, CA 90001" +317791,Google Phone,1,600,12/29/19 13:46,"647 Main St, Portland, OR 97035" +317792,AA Batteries (4-pack),1,3.84,12/12/19 21:25,"438 Walnut St, Los Angeles, CA 90001" +317793,Apple Airpods Headphones,1,150,12/29/19 11:57,"379 South St, Austin, TX 73301" +317794,Lightning Charging Cable,1,14.95,12/18/19 13:29,"343 7th St, Atlanta, GA 30301" +317795,34in Ultrawide Monitor,1,379.99,12/01/19 09:04,"77 Cedar St, San Francisco, CA 94016" +317796,Lightning Charging Cable,1,14.95,12/11/19 21:24,"160 Hickory St, Seattle, WA 98101" +317797,Lightning Charging Cable,1,14.95,12/09/19 17:11,"277 Walnut St, Dallas, TX 75001" +317798,27in FHD Monitor,1,149.99,12/16/19 08:06,"946 9th St, Austin, TX 73301" +317799,AAA Batteries (4-pack),1,2.99,12/30/19 22:07,"198 Center St, New York City, NY 10001" +317800,Lightning Charging Cable,1,14.95,12/18/19 21:56,"45 8th St, Dallas, TX 75001" +317801,27in FHD Monitor,1,149.99,12/14/19 17:26,"361 Cedar St, Dallas, TX 75001" +317802,Lightning Charging Cable,1,14.95,12/30/19 11:39,"467 River St, New York City, NY 10001" +317803,34in Ultrawide Monitor,1,379.99,01/01/20 00:21,"343 8th St, New York City, NY 10001" +317804,Lightning Charging Cable,1,14.95,12/16/19 08:06,"698 12th St, Seattle, WA 98101" +317805,AA Batteries (4-pack),1,3.84,12/25/19 19:16,"363 Spruce St, Austin, TX 73301" +317806,Lightning Charging Cable,1,14.95,12/19/19 11:57,"918 Adams St, San Francisco, CA 94016" +317807,Wired Headphones,1,11.99,12/11/19 11:54,"898 North St, San Francisco, CA 94016" +317808,Macbook Pro Laptop,1,1700,12/28/19 12:03,"47 Forest St, Seattle, WA 98101" +317809,AA Batteries (4-pack),1,3.84,12/17/19 14:36,"313 Jefferson St, Atlanta, GA 30301" +317810,AA Batteries (4-pack),1,3.84,12/04/19 02:38,"589 4th St, San Francisco, CA 94016" +317811,AAA Batteries (4-pack),3,2.99,12/08/19 00:17,"615 12th St, New York City, NY 10001" +317812,Bose SoundSport Headphones,1,99.99,12/10/19 07:38,"786 Lincoln St, San Francisco, CA 94016" +317813,Lightning Charging Cable,1,14.95,12/10/19 11:29,"831 10th St, Boston, MA 02215" +317814,USB-C Charging Cable,1,11.95,12/04/19 11:39,"805 1st St, Atlanta, GA 30301" +317815,AAA Batteries (4-pack),1,2.99,12/19/19 19:14,"241 Chestnut St, New York City, NY 10001" +317815,iPhone,1,700,12/19/19 19:14,"241 Chestnut St, New York City, NY 10001" +317816,USB-C Charging Cable,2,11.95,12/27/19 15:39,"299 4th St, San Francisco, CA 94016" +317817,Apple Airpods Headphones,1,150,12/16/19 16:21,"265 Walnut St, Los Angeles, CA 90001" +317818,iPhone,1,700,12/10/19 13:25,"854 11th St, Boston, MA 02215" +317818,Lightning Charging Cable,1,14.95,12/10/19 13:25,"854 11th St, Boston, MA 02215" +317819,Wired Headphones,1,11.99,12/24/19 12:58,"594 2nd St, Los Angeles, CA 90001" +317820,27in FHD Monitor,1,149.99,12/09/19 20:49,"232 Willow St, San Francisco, CA 94016" +317821,Lightning Charging Cable,1,14.95,12/25/19 09:01,"658 13th St, New York City, NY 10001" +317822,Apple Airpods Headphones,1,150,12/02/19 09:31,"31 Cedar St, Dallas, TX 75001" +317823,Lightning Charging Cable,1,14.95,12/28/19 18:36,"621 Hickory St, Atlanta, GA 30301" +317824,iPhone,1,700,12/05/19 03:09,"353 Main St, Dallas, TX 75001" +317825,iPhone,1,700,12/28/19 23:46,"283 Madison St, San Francisco, CA 94016" +317826,USB-C Charging Cable,1,11.95,12/23/19 18:36,"51 6th St, San Francisco, CA 94016" +317827,Apple Airpods Headphones,1,150,12/27/19 21:08,"219 Main St, Seattle, WA 98101" +317828,Lightning Charging Cable,1,14.95,12/01/19 15:00,"289 Adams St, Los Angeles, CA 90001" +317829,AA Batteries (4-pack),1,3.84,12/26/19 12:46,"377 Wilson St, Dallas, TX 75001" +317830,Lightning Charging Cable,1,14.95,12/07/19 14:16,"530 9th St, Seattle, WA 98101" +317831,Lightning Charging Cable,1,14.95,12/04/19 23:35,"86 Adams St, Atlanta, GA 30301" +317832,AA Batteries (4-pack),1,3.84,12/14/19 10:44,"717 7th St, Los Angeles, CA 90001" +317833,Google Phone,1,600,12/28/19 11:31,"927 Park St, New York City, NY 10001" +317834,Wired Headphones,1,11.99,12/19/19 08:10,"283 Dogwood St, San Francisco, CA 94016" +317835,AAA Batteries (4-pack),1,2.99,12/29/19 16:02,"1 Pine St, San Francisco, CA 94016" +317836,27in 4K Gaming Monitor,1,389.99,12/18/19 01:05,"505 Madison St, Seattle, WA 98101" +317837,AA Batteries (4-pack),1,3.84,12/01/19 07:31,"525 Center St, San Francisco, CA 94016" +317838,Lightning Charging Cable,1,14.95,12/22/19 10:34,"952 1st St, New York City, NY 10001" +317839,AAA Batteries (4-pack),3,2.99,12/24/19 19:10,"447 Park St, San Francisco, CA 94016" +317840,AA Batteries (4-pack),2,3.84,12/11/19 12:22,"66 7th St, Austin, TX 73301" +317841,20in Monitor,1,109.99,12/13/19 14:07,"536 10th St, Atlanta, GA 30301" +317842,Apple Airpods Headphones,1,150,12/01/19 20:14,"756 Hickory St, Atlanta, GA 30301" +317843,Macbook Pro Laptop,1,1700,12/24/19 17:45,"291 9th St, San Francisco, CA 94016" +317844,AA Batteries (4-pack),1,3.84,12/18/19 10:55,"568 Forest St, Dallas, TX 75001" +317845,Wired Headphones,1,11.99,12/12/19 12:38,"360 9th St, San Francisco, CA 94016" +317846,ThinkPad Laptop,1,999.99,12/20/19 14:56,"681 Hickory St, Dallas, TX 75001" +317847,AA Batteries (4-pack),2,3.84,12/15/19 01:50,"267 Johnson St, Dallas, TX 75001" +317848,AAA Batteries (4-pack),2,2.99,12/09/19 09:01,"46 South St, San Francisco, CA 94016" +317849,27in 4K Gaming Monitor,1,389.99,12/17/19 08:51,"695 Lake St, Los Angeles, CA 90001" +317850,Apple Airpods Headphones,1,150,12/22/19 13:16,"831 12th St, San Francisco, CA 94016" +317851,AAA Batteries (4-pack),2,2.99,12/26/19 18:25,"455 Jackson St, Portland, ME 04101" +317852,Lightning Charging Cable,1,14.95,12/06/19 17:38,"63 Chestnut St, San Francisco, CA 94016" +317853,Vareebadd Phone,1,400,12/29/19 10:07,"874 Walnut St, Austin, TX 73301" +317854,Lightning Charging Cable,1,14.95,12/14/19 15:54,"904 Forest St, Seattle, WA 98101" +317855,AA Batteries (4-pack),1,3.84,12/23/19 16:16,"709 Hill St, Seattle, WA 98101" +317856,Lightning Charging Cable,1,14.95,12/12/19 12:48,"447 Hill St, Los Angeles, CA 90001" +317857,USB-C Charging Cable,1,11.95,12/24/19 17:46,"145 Cherry St, San Francisco, CA 94016" +317858,Flatscreen TV,1,300,12/14/19 15:22,"933 Park St, Seattle, WA 98101" +317859,USB-C Charging Cable,1,11.95,12/30/19 08:31,"595 11th St, San Francisco, CA 94016" +317860,Vareebadd Phone,1,400,12/24/19 06:38,"359 7th St, Los Angeles, CA 90001" +317860,USB-C Charging Cable,1,11.95,12/24/19 06:38,"359 7th St, Los Angeles, CA 90001" +317861,Lightning Charging Cable,1,14.95,12/11/19 09:53,"198 12th St, New York City, NY 10001" +317862,AAA Batteries (4-pack),2,2.99,12/29/19 22:37,"89 Forest St, San Francisco, CA 94016" +317863,Bose SoundSport Headphones,1,99.99,12/18/19 11:17,"725 Ridge St, San Francisco, CA 94016" +317864,Bose SoundSport Headphones,1,99.99,12/14/19 23:02,"307 Hickory St, Austin, TX 73301" +317865,Wired Headphones,1,11.99,01/01/20 00:57,"823 South St, San Francisco, CA 94016" +317866,Wired Headphones,1,11.99,12/18/19 18:26,"504 2nd St, San Francisco, CA 94016" +317867,Bose SoundSport Headphones,1,99.99,12/29/19 18:59,"979 Spruce St, New York City, NY 10001" +317868,Apple Airpods Headphones,1,150,12/01/19 20:00,"167 Church St, Seattle, WA 98101" +317869,LG Dryer,1,600.0,12/29/19 13:21,"737 Cherry St, Dallas, TX 75001" +317870,Wired Headphones,1,11.99,12/25/19 11:30,"938 Cherry St, Atlanta, GA 30301" +317871,Lightning Charging Cable,1,14.95,12/02/19 19:52,"230 Lincoln St, Portland, OR 97035" +317872,Wired Headphones,1,11.99,12/23/19 20:41,"475 Wilson St, Los Angeles, CA 90001" +317873,20in Monitor,1,109.99,12/29/19 18:52,"875 Chestnut St, Los Angeles, CA 90001" +317874,Bose SoundSport Headphones,1,99.99,12/11/19 04:39,"384 Forest St, Los Angeles, CA 90001" +317875,20in Monitor,1,109.99,12/20/19 16:51,"221 West St, New York City, NY 10001" +317876,LG Dryer,1,600.0,12/31/19 10:18,"323 Highland St, Boston, MA 02215" +317877,Flatscreen TV,1,300,12/01/19 10:14,"95 6th St, San Francisco, CA 94016" +317878,Wired Headphones,1,11.99,12/28/19 14:34,"64 Lincoln St, New York City, NY 10001" +317879,USB-C Charging Cable,1,11.95,12/05/19 12:50,"112 6th St, Los Angeles, CA 90001" +317880,USB-C Charging Cable,1,11.95,12/31/19 16:53,"449 14th St, San Francisco, CA 94016" +317881,USB-C Charging Cable,1,11.95,12/05/19 00:10,"572 Pine St, Boston, MA 02215" +317882,AAA Batteries (4-pack),1,2.99,12/03/19 11:13,"201 Center St, Seattle, WA 98101" +317883,ThinkPad Laptop,1,999.99,12/06/19 16:53,"594 Meadow St, San Francisco, CA 94016" +317884,Wired Headphones,1,11.99,12/10/19 10:27,"212 Adams St, New York City, NY 10001" +317885,AA Batteries (4-pack),1,3.84,12/02/19 14:06,"850 River St, Atlanta, GA 30301" +317886,Wired Headphones,1,11.99,12/10/19 00:10,"939 Hill St, Boston, MA 02215" +317887,AA Batteries (4-pack),1,3.84,12/09/19 06:25,"278 Hickory St, San Francisco, CA 94016" +317887,34in Ultrawide Monitor,1,379.99,12/09/19 06:25,"278 Hickory St, San Francisco, CA 94016" +317888,AA Batteries (4-pack),1,3.84,12/03/19 16:23,"114 5th St, Boston, MA 02215" +317889,34in Ultrawide Monitor,1,379.99,12/06/19 17:41,"431 Hickory St, Portland, OR 97035" +317890,20in Monitor,1,109.99,12/12/19 18:15,"514 North St, San Francisco, CA 94016" +317891,Wired Headphones,1,11.99,12/13/19 19:42,"810 Park St, Boston, MA 02215" +317892,iPhone,1,700,12/27/19 19:33,"658 4th St, San Francisco, CA 94016" +317893,Vareebadd Phone,1,400,12/05/19 21:30,"802 North St, Portland, OR 97035" +317894,Wired Headphones,1,11.99,12/08/19 16:19,"897 14th St, Portland, OR 97035" +317895,AAA Batteries (4-pack),2,2.99,12/06/19 08:23,"156 Park St, San Francisco, CA 94016" +317896,USB-C Charging Cable,1,11.95,12/20/19 20:08,"201 Maple St, Los Angeles, CA 90001" +317897,Wired Headphones,1,11.99,12/23/19 19:36,"719 Adams St, New York City, NY 10001" +317898,AA Batteries (4-pack),2,3.84,12/16/19 22:46,"923 Dogwood St, San Francisco, CA 94016" +317899,iPhone,1,700,12/13/19 06:32,"586 Hickory St, Seattle, WA 98101" +317900,Lightning Charging Cable,1,14.95,12/12/19 20:12,"846 North St, Dallas, TX 75001" +317901,Wired Headphones,1,11.99,12/09/19 14:40,"801 Jackson St, San Francisco, CA 94016" +317902,Wired Headphones,2,11.99,12/02/19 22:51,"896 Willow St, San Francisco, CA 94016" +317903,Macbook Pro Laptop,1,1700,12/01/19 21:28,"811 Meadow St, Dallas, TX 75001" +317904,Apple Airpods Headphones,1,150,12/29/19 22:37,"245 Chestnut St, Seattle, WA 98101" +317905,34in Ultrawide Monitor,1,379.99,12/19/19 07:56,"328 9th St, Los Angeles, CA 90001" +317906,27in 4K Gaming Monitor,1,389.99,12/22/19 07:47,"604 Washington St, Atlanta, GA 30301" +317907,34in Ultrawide Monitor,1,379.99,12/24/19 15:21,"926 Cedar St, Dallas, TX 75001" +317908,Apple Airpods Headphones,1,150,12/08/19 23:48,"892 Pine St, Los Angeles, CA 90001" +317909,USB-C Charging Cable,1,11.95,12/05/19 11:16,"596 Washington St, Los Angeles, CA 90001" +317910,Apple Airpods Headphones,1,150,12/07/19 21:08,"1 5th St, San Francisco, CA 94016" +317911,AA Batteries (4-pack),2,3.84,12/19/19 18:59,"68 Lakeview St, San Francisco, CA 94016" +317912,Bose SoundSport Headphones,1,99.99,12/25/19 12:03,"880 2nd St, Los Angeles, CA 90001" +317913,Bose SoundSport Headphones,1,99.99,12/05/19 20:24,"172 Wilson St, New York City, NY 10001" +317914,Flatscreen TV,1,300,12/10/19 15:43,"756 Washington St, Los Angeles, CA 90001" +317915,Lightning Charging Cable,1,14.95,12/16/19 15:18,"244 Adams St, New York City, NY 10001" +317916,USB-C Charging Cable,1,11.95,12/12/19 17:43,"3 Dogwood St, Boston, MA 02215" +317917,USB-C Charging Cable,2,11.95,12/15/19 10:55,"585 10th St, Seattle, WA 98101" +317918,Lightning Charging Cable,1,14.95,12/08/19 12:00,"497 13th St, Seattle, WA 98101" +317919,Wired Headphones,1,11.99,12/07/19 11:37,"711 12th St, Portland, OR 97035" +317920,Lightning Charging Cable,1,14.95,12/29/19 15:43,"331 Main St, New York City, NY 10001" +317921,AA Batteries (4-pack),2,3.84,12/15/19 07:29,"904 Cedar St, Atlanta, GA 30301" +317922,34in Ultrawide Monitor,1,379.99,12/31/19 14:32,"401 Park St, San Francisco, CA 94016" +317923,Wired Headphones,2,11.99,12/14/19 16:36,"637 9th St, Boston, MA 02215" +317924,Lightning Charging Cable,1,14.95,12/31/19 08:56,"760 14th St, New York City, NY 10001" +317925,USB-C Charging Cable,1,11.95,12/23/19 23:25,"652 Ridge St, Atlanta, GA 30301" +317926,ThinkPad Laptop,1,999.99,12/19/19 22:04,"965 5th St, Los Angeles, CA 90001" +317927,AA Batteries (4-pack),1,3.84,12/07/19 16:30,"689 Highland St, Los Angeles, CA 90001" +317928,AA Batteries (4-pack),2,3.84,12/12/19 11:24,"602 Elm St, Dallas, TX 75001" +317929,Lightning Charging Cable,1,14.95,12/06/19 18:42,"688 Church St, San Francisco, CA 94016" +317930,USB-C Charging Cable,1,11.95,12/03/19 23:24,"951 Cherry St, New York City, NY 10001" +317931,AA Batteries (4-pack),1,3.84,12/15/19 12:03,"307 Jackson St, San Francisco, CA 94016" +317932,20in Monitor,1,109.99,12/18/19 17:26,"644 Dogwood St, Seattle, WA 98101" +317933,Wired Headphones,1,11.99,12/05/19 16:00,"499 South St, Boston, MA 02215" +317934,AAA Batteries (4-pack),1,2.99,12/09/19 15:07,"374 Pine St, Los Angeles, CA 90001" +317935,AAA Batteries (4-pack),1,2.99,12/13/19 18:42,"397 9th St, San Francisco, CA 94016" +317936,iPhone,1,700,12/20/19 15:18,"657 8th St, Austin, TX 73301" +317936,Wired Headphones,1,11.99,12/20/19 15:18,"657 8th St, Austin, TX 73301" +317937,Flatscreen TV,1,300,12/01/19 18:32,"666 Park St, Austin, TX 73301" +317938,Wired Headphones,1,11.99,12/04/19 18:22,"685 West St, Dallas, TX 75001" +317939,27in FHD Monitor,1,149.99,12/14/19 14:00,"806 Church St, San Francisco, CA 94016" +317940,ThinkPad Laptop,2,999.99,12/15/19 15:26,"616 Lake St, Seattle, WA 98101" +317941,Apple Airpods Headphones,1,150,12/31/19 20:19,"582 Center St, New York City, NY 10001" +317942,AA Batteries (4-pack),1,3.84,12/07/19 13:43,"709 North St, Boston, MA 02215" +317943,Apple Airpods Headphones,1,150,12/19/19 23:25,"847 Elm St, Boston, MA 02215" +317944,AAA Batteries (4-pack),1,2.99,12/11/19 13:49,"726 Cedar St, Atlanta, GA 30301" +317945,Lightning Charging Cable,1,14.95,12/09/19 01:42,"122 10th St, San Francisco, CA 94016" +317946,AA Batteries (4-pack),1,3.84,12/08/19 16:34,"473 Forest St, Los Angeles, CA 90001" +317947,Flatscreen TV,1,300,12/15/19 22:39,"782 8th St, Boston, MA 02215" +317948,Macbook Pro Laptop,1,1700,12/11/19 18:13,"165 Washington St, New York City, NY 10001" +317949,Wired Headphones,1,11.99,12/11/19 17:55,"277 13th St, San Francisco, CA 94016" +317950,20in Monitor,1,109.99,12/25/19 15:19,"587 Forest St, San Francisco, CA 94016" +317951,Lightning Charging Cable,1,14.95,12/21/19 13:12,"971 Chestnut St, Seattle, WA 98101" +317952,AA Batteries (4-pack),4,3.84,12/07/19 10:29,"426 Johnson St, New York City, NY 10001" +317953,Macbook Pro Laptop,1,1700,12/11/19 20:26,"735 Forest St, Atlanta, GA 30301" +317954,Apple Airpods Headphones,1,150,12/16/19 20:18,"320 Lakeview St, Portland, OR 97035" +317955,Lightning Charging Cable,1,14.95,12/15/19 16:13,"971 Lincoln St, San Francisco, CA 94016" +317956,27in FHD Monitor,1,149.99,12/03/19 20:48,"468 Main St, San Francisco, CA 94016" +317957,Google Phone,1,600,12/21/19 00:40,"240 11th St, Boston, MA 02215" +317958,Google Phone,1,600,12/12/19 12:48,"606 Forest St, Portland, OR 97035" +317958,Wired Headphones,1,11.99,12/12/19 12:48,"606 Forest St, Portland, OR 97035" +317959,27in 4K Gaming Monitor,1,389.99,12/30/19 20:09,"313 Dogwood St, New York City, NY 10001" +317960,Lightning Charging Cable,1,14.95,12/21/19 22:34,"257 7th St, San Francisco, CA 94016" +317961,Wired Headphones,1,11.99,12/29/19 19:29,"750 8th St, San Francisco, CA 94016" +317962,Flatscreen TV,1,300,12/06/19 15:37,"410 1st St, San Francisco, CA 94016" +317963,27in FHD Monitor,1,149.99,12/20/19 09:53,"509 Chestnut St, San Francisco, CA 94016" +317964,Flatscreen TV,1,300,12/18/19 15:14,"121 Hill St, Dallas, TX 75001" +317965,Wired Headphones,1,11.99,12/31/19 21:44,"318 Center St, Los Angeles, CA 90001" +317966,LG Dryer,1,600.0,12/04/19 12:48,"86 Lincoln St, San Francisco, CA 94016" +317967,iPhone,1,700,12/28/19 17:09,"197 12th St, Austin, TX 73301" +317968,USB-C Charging Cable,2,11.95,12/05/19 19:26,"564 Center St, New York City, NY 10001" +317969,Wired Headphones,1,11.99,12/15/19 19:45,"177 10th St, Los Angeles, CA 90001" +317970,Apple Airpods Headphones,1,150,12/21/19 12:12,"577 Cherry St, Portland, OR 97035" +317971,Google Phone,1,600,12/19/19 19:06,"287 Willow St, Boston, MA 02215" +317972,Wired Headphones,1,11.99,12/03/19 19:22,"111 Center St, San Francisco, CA 94016" +317973,iPhone,1,700,12/09/19 20:02,"978 13th St, Atlanta, GA 30301" +317973,Wired Headphones,1,11.99,12/09/19 20:02,"978 13th St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +317974,Lightning Charging Cable,2,14.95,12/13/19 17:30,"951 Maple St, Los Angeles, CA 90001" +317975,27in 4K Gaming Monitor,1,389.99,12/03/19 20:23,"384 Spruce St, San Francisco, CA 94016" +317976,iPhone,1,700,12/11/19 08:24,"248 Highland St, Boston, MA 02215" +317977,AA Batteries (4-pack),1,3.84,12/28/19 14:29,"359 5th St, Austin, TX 73301" +317978,27in FHD Monitor,1,149.99,12/28/19 22:31,"707 Dogwood St, San Francisco, CA 94016" +317979,27in FHD Monitor,1,149.99,12/21/19 09:04,"274 10th St, Portland, OR 97035" +317980,USB-C Charging Cable,1,11.95,12/29/19 12:36,"327 Park St, Los Angeles, CA 90001" +317981,Apple Airpods Headphones,1,150,12/19/19 13:06,"680 Pine St, Austin, TX 73301" +317982,USB-C Charging Cable,2,11.95,12/23/19 17:57,"95 14th St, New York City, NY 10001" +317983,AAA Batteries (4-pack),1,2.99,12/11/19 13:02,"702 Washington St, Atlanta, GA 30301" +317984,Bose SoundSport Headphones,1,99.99,12/16/19 07:30,"394 Adams St, Dallas, TX 75001" +317985,27in FHD Monitor,1,149.99,12/10/19 20:57,"252 Church St, San Francisco, CA 94016" +317986,Bose SoundSport Headphones,1,99.99,12/22/19 16:53,"659 Lincoln St, Austin, TX 73301" +317987,AAA Batteries (4-pack),1,2.99,12/26/19 18:42,"881 13th St, Seattle, WA 98101" +317988,ThinkPad Laptop,1,999.99,12/14/19 08:40,"221 9th St, Boston, MA 02215" +317989,Wired Headphones,1,11.99,12/22/19 02:06,"793 Lincoln St, Seattle, WA 98101" +317990,27in FHD Monitor,1,149.99,12/13/19 10:29,"82 Elm St, Los Angeles, CA 90001" +317991,Flatscreen TV,1,300,12/14/19 10:21,"351 Hill St, Los Angeles, CA 90001" +317992,27in 4K Gaming Monitor,1,389.99,12/27/19 00:27,"385 Church St, Seattle, WA 98101" +317992,ThinkPad Laptop,1,999.99,12/27/19 00:27,"385 Church St, Seattle, WA 98101" +317993,34in Ultrawide Monitor,1,379.99,12/05/19 09:28,"138 Lincoln St, Portland, OR 97035" +317994,USB-C Charging Cable,1,11.95,12/09/19 17:54,"69 Hill St, Boston, MA 02215" +317995,LG Washing Machine,1,600.0,12/04/19 16:27,"139 11th St, Boston, MA 02215" +317996,Apple Airpods Headphones,1,150,12/27/19 10:11,"947 Wilson St, Los Angeles, CA 90001" +317997,iPhone,1,700,12/03/19 10:49,"814 Lake St, New York City, NY 10001" +317998,USB-C Charging Cable,1,11.95,12/21/19 17:04,"611 Sunset St, Seattle, WA 98101" +317999,Apple Airpods Headphones,1,150,12/12/19 22:14,"940 Johnson St, Los Angeles, CA 90001" +318000,AA Batteries (4-pack),1,3.84,12/27/19 16:32,"309 Lincoln St, San Francisco, CA 94016" +318001,27in 4K Gaming Monitor,1,389.99,12/24/19 22:24,"331 10th St, New York City, NY 10001" +318002,AAA Batteries (4-pack),3,2.99,12/18/19 23:09,"322 Willow St, Boston, MA 02215" +318003,AA Batteries (4-pack),1,3.84,12/08/19 16:09,"259 1st St, San Francisco, CA 94016" +318004,Flatscreen TV,1,300,12/25/19 01:55,"235 12th St, Los Angeles, CA 90001" +318005,USB-C Charging Cable,1,11.95,12/21/19 13:20,"32 South St, Atlanta, GA 30301" +318006,Flatscreen TV,1,300,12/09/19 22:16,"650 6th St, Los Angeles, CA 90001" +318007,USB-C Charging Cable,1,11.95,12/11/19 15:50,"542 Pine St, San Francisco, CA 94016" +318008,Lightning Charging Cable,1,14.95,12/29/19 08:00,"801 Jefferson St, New York City, NY 10001" +318009,Bose SoundSport Headphones,1,99.99,12/19/19 08:22,"714 Meadow St, Los Angeles, CA 90001" +318010,Apple Airpods Headphones,1,150,12/16/19 13:41,"18 Dogwood St, New York City, NY 10001" +318011,Wired Headphones,1,11.99,12/26/19 14:43,"130 Lakeview St, Seattle, WA 98101" +318012,20in Monitor,1,109.99,12/04/19 13:19,"997 Maple St, Seattle, WA 98101" +318013,AAA Batteries (4-pack),3,2.99,12/24/19 20:11,"111 Hickory St, New York City, NY 10001" +318014,Apple Airpods Headphones,1,150,12/18/19 22:26,"663 Adams St, San Francisco, CA 94016" +318015,AA Batteries (4-pack),3,3.84,12/28/19 21:43,"343 Chestnut St, Los Angeles, CA 90001" +318016,Macbook Pro Laptop,1,1700,12/17/19 19:09,"66 Adams St, Dallas, TX 75001" +318017,Google Phone,1,600,12/13/19 22:37,"964 Adams St, Seattle, WA 98101" +318018,AAA Batteries (4-pack),3,2.99,12/26/19 10:37,"645 13th St, Seattle, WA 98101" +318019,Lightning Charging Cable,1,14.95,12/06/19 21:52,"280 North St, Los Angeles, CA 90001" +318020,USB-C Charging Cable,1,11.95,12/20/19 22:31,"392 2nd St, Los Angeles, CA 90001" +318021,AAA Batteries (4-pack),3,2.99,12/21/19 16:24,"304 Spruce St, San Francisco, CA 94016" +318022,Google Phone,1,600,12/31/19 13:09,"789 Spruce St, Seattle, WA 98101" +318023,AAA Batteries (4-pack),1,2.99,12/06/19 01:53,"370 9th St, Seattle, WA 98101" +318024,20in Monitor,1,109.99,12/12/19 19:52,"152 Ridge St, Austin, TX 73301" +318025,Bose SoundSport Headphones,1,99.99,12/27/19 21:43,"424 Adams St, Boston, MA 02215" +318026,LG Washing Machine,1,600.0,12/23/19 17:18,"102 Church St, San Francisco, CA 94016" +318027,AA Batteries (4-pack),4,3.84,12/17/19 20:48,"591 6th St, Seattle, WA 98101" +318028,Lightning Charging Cable,1,14.95,12/14/19 19:39,"141 River St, Seattle, WA 98101" +318029,Google Phone,1,600,12/22/19 11:21,"714 West St, Portland, ME 04101" +318030,iPhone,1,700,12/16/19 20:47,"759 9th St, Los Angeles, CA 90001" +318031,27in 4K Gaming Monitor,1,389.99,12/14/19 18:06,"460 4th St, Atlanta, GA 30301" +318032,AA Batteries (4-pack),1,3.84,12/04/19 18:40,"944 Meadow St, San Francisco, CA 94016" +318033,AA Batteries (4-pack),1,3.84,12/09/19 09:40,"156 10th St, San Francisco, CA 94016" +318034,AAA Batteries (4-pack),1,2.99,12/22/19 06:43,"963 9th St, San Francisco, CA 94016" +318035,Wired Headphones,1,11.99,12/01/19 18:01,"669 6th St, Atlanta, GA 30301" +318036,Apple Airpods Headphones,1,150,12/30/19 11:54,"237 Adams St, San Francisco, CA 94016" +318037,ThinkPad Laptop,1,999.99,12/22/19 09:13,"315 13th St, Boston, MA 02215" +318038,Vareebadd Phone,1,400,12/29/19 19:14,"26 Elm St, Seattle, WA 98101" +318039,Bose SoundSport Headphones,1,99.99,12/11/19 22:22,"716 Willow St, New York City, NY 10001" +318040,AA Batteries (4-pack),1,3.84,12/10/19 19:37,"27 River St, Portland, OR 97035" +318041,USB-C Charging Cable,1,11.95,12/10/19 19:22,"693 Wilson St, Los Angeles, CA 90001" +318042,iPhone,1,700,12/11/19 21:40,"226 Willow St, Portland, OR 97035" +318043,27in 4K Gaming Monitor,1,389.99,12/12/19 20:47,"583 10th St, Austin, TX 73301" +318044,Macbook Pro Laptop,1,1700,12/12/19 16:19,"226 Madison St, Los Angeles, CA 90001" +318045,Apple Airpods Headphones,1,150,12/11/19 08:44,"193 Park St, Boston, MA 02215" +318046,USB-C Charging Cable,1,11.95,12/07/19 21:57,"737 1st St, Seattle, WA 98101" +318047,Lightning Charging Cable,1,14.95,12/01/19 15:27,"128 Elm St, Atlanta, GA 30301" +318048,Google Phone,1,600,12/26/19 21:49,"990 7th St, Boston, MA 02215" +318049,27in FHD Monitor,1,149.99,12/10/19 00:20,"21 12th St, Los Angeles, CA 90001" +318050,AAA Batteries (4-pack),2,2.99,12/21/19 22:56,"69 Hill St, San Francisco, CA 94016" +318051,Wired Headphones,1,11.99,12/07/19 17:44,"942 Lincoln St, Los Angeles, CA 90001" +318052,Google Phone,1,600,12/19/19 02:35,"581 Hill St, Austin, TX 73301" +318052,USB-C Charging Cable,1,11.95,12/19/19 02:35,"581 Hill St, Austin, TX 73301" +318053,Lightning Charging Cable,1,14.95,12/22/19 11:52,"925 Dogwood St, San Francisco, CA 94016" +318054,AA Batteries (4-pack),2,3.84,12/08/19 18:29,"853 Lincoln St, Atlanta, GA 30301" +318055,27in 4K Gaming Monitor,1,389.99,12/19/19 00:05,"453 Lake St, San Francisco, CA 94016" +318056,USB-C Charging Cable,1,11.95,12/28/19 18:21,"105 Johnson St, Los Angeles, CA 90001" +318057,Apple Airpods Headphones,1,150,12/08/19 11:23,"771 South St, San Francisco, CA 94016" +318058,AAA Batteries (4-pack),3,2.99,12/19/19 15:26,"695 Highland St, San Francisco, CA 94016" +318059,Apple Airpods Headphones,1,150,12/16/19 17:10,"150 1st St, San Francisco, CA 94016" +318060,Lightning Charging Cable,1,14.95,12/05/19 15:48,"132 4th St, Seattle, WA 98101" +318061,Apple Airpods Headphones,1,150,12/29/19 09:16,"569 12th St, Seattle, WA 98101" +318062,AAA Batteries (4-pack),1,2.99,12/10/19 11:57,"47 Wilson St, Los Angeles, CA 90001" +318063,Bose SoundSport Headphones,1,99.99,12/15/19 11:32,"492 Meadow St, San Francisco, CA 94016" +318064,AA Batteries (4-pack),1,3.84,12/28/19 11:45,"678 South St, Los Angeles, CA 90001" +318065,Wired Headphones,1,11.99,12/22/19 00:39,"277 14th St, Los Angeles, CA 90001" +318066,USB-C Charging Cable,1,11.95,12/27/19 17:49,"799 1st St, Boston, MA 02215" +318067,USB-C Charging Cable,1,11.95,12/09/19 20:06,"871 Sunset St, Seattle, WA 98101" +318068,AA Batteries (4-pack),1,3.84,12/28/19 18:53,"141 Washington St, Dallas, TX 75001" +318069,Vareebadd Phone,1,400,12/07/19 15:19,"49 Hill St, New York City, NY 10001" +318070,Macbook Pro Laptop,1,1700,12/18/19 01:41,"710 8th St, New York City, NY 10001" +318071,Wired Headphones,1,11.99,12/25/19 00:50,"939 14th St, New York City, NY 10001" +318072,Lightning Charging Cable,1,14.95,12/14/19 15:27,"782 Jefferson St, Austin, TX 73301" +318073,AA Batteries (4-pack),1,3.84,12/21/19 16:36,"474 11th St, Seattle, WA 98101" +318074,Apple Airpods Headphones,1,150,12/15/19 05:53,"600 9th St, New York City, NY 10001" +318075,20in Monitor,1,109.99,12/08/19 17:00,"228 Main St, Dallas, TX 75001" +318076,Flatscreen TV,1,300,12/12/19 10:00,"507 Lake St, San Francisco, CA 94016" +318077,Bose SoundSport Headphones,1,99.99,12/21/19 14:09,"168 Johnson St, New York City, NY 10001" +318078,Wired Headphones,1,11.99,12/27/19 21:15,"35 Main St, Atlanta, GA 30301" +318079,iPhone,1,700,12/19/19 11:17,"501 Main St, San Francisco, CA 94016" +318080,USB-C Charging Cable,1,11.95,12/21/19 17:15,"575 Hickory St, Atlanta, GA 30301" +318081,Bose SoundSport Headphones,1,99.99,12/14/19 18:32,"607 Forest St, Seattle, WA 98101" +318082,Macbook Pro Laptop,1,1700,12/02/19 11:02,"68 West St, San Francisco, CA 94016" +318083,Wired Headphones,1,11.99,12/08/19 04:04,"202 River St, Los Angeles, CA 90001" +318084,USB-C Charging Cable,1,11.95,12/16/19 13:16,"382 South St, San Francisco, CA 94016" +318085,34in Ultrawide Monitor,1,379.99,12/24/19 13:04,"163 Madison St, San Francisco, CA 94016" +318086,Lightning Charging Cable,1,14.95,12/28/19 11:15,"682 14th St, Boston, MA 02215" +318087,AA Batteries (4-pack),1,3.84,12/10/19 12:15,"907 Forest St, New York City, NY 10001" +318088,USB-C Charging Cable,1,11.95,12/21/19 15:16,"756 1st St, San Francisco, CA 94016" +318089,AA Batteries (4-pack),1,3.84,12/20/19 19:55,"262 West St, Portland, OR 97035" +318090,AAA Batteries (4-pack),1,2.99,12/03/19 20:21,"481 Sunset St, San Francisco, CA 94016" +318091,Apple Airpods Headphones,1,150,12/07/19 09:33,"291 Wilson St, Seattle, WA 98101" +318092,USB-C Charging Cable,1,11.95,12/11/19 15:33,"447 14th St, San Francisco, CA 94016" +318093,Apple Airpods Headphones,1,150,12/31/19 19:39,"189 Pine St, San Francisco, CA 94016" +318094,AA Batteries (4-pack),1,3.84,12/31/19 16:07,"631 Adams St, Austin, TX 73301" +318095,USB-C Charging Cable,1,11.95,12/29/19 11:39,"7 Center St, San Francisco, CA 94016" +318096,AA Batteries (4-pack),1,3.84,12/08/19 23:11,"598 11th St, Dallas, TX 75001" +318097,AA Batteries (4-pack),2,3.84,12/14/19 19:33,"415 Hill St, Austin, TX 73301" +,,,,, +318098,Apple Airpods Headphones,1,150,12/09/19 10:51,"258 Jackson St, Los Angeles, CA 90001" +318099,Lightning Charging Cable,1,14.95,12/02/19 17:57,"524 Lincoln St, Dallas, TX 75001" +318100,Apple Airpods Headphones,1,150,12/05/19 19:46,"326 Wilson St, San Francisco, CA 94016" +318101,27in 4K Gaming Monitor,1,389.99,12/28/19 14:48,"687 11th St, Portland, ME 04101" +318102,Lightning Charging Cable,1,14.95,12/20/19 21:52,"934 11th St, Atlanta, GA 30301" +318103,27in FHD Monitor,1,149.99,12/03/19 10:43,"377 Main St, New York City, NY 10001" +318104,20in Monitor,1,109.99,12/08/19 22:44,"888 Park St, Portland, OR 97035" +318105,Apple Airpods Headphones,1,150,12/26/19 17:03,"294 Cherry St, New York City, NY 10001" +318106,AA Batteries (4-pack),1,3.84,12/28/19 13:30,"106 Ridge St, Los Angeles, CA 90001" +318107,27in FHD Monitor,1,149.99,12/03/19 18:45,"947 Maple St, San Francisco, CA 94016" +318108,Bose SoundSport Headphones,1,99.99,12/09/19 23:23,"105 Maple St, Atlanta, GA 30301" +318109,USB-C Charging Cable,1,11.95,12/13/19 18:59,"892 9th St, Dallas, TX 75001" +318110,Wired Headphones,1,11.99,12/07/19 10:27,"347 Chestnut St, San Francisco, CA 94016" +318111,27in FHD Monitor,1,149.99,12/12/19 13:56,"905 Elm St, Portland, ME 04101" +318112,ThinkPad Laptop,1,999.99,12/07/19 17:16,"632 Elm St, Los Angeles, CA 90001" +318113,Lightning Charging Cable,1,14.95,12/16/19 11:54,"853 Hickory St, New York City, NY 10001" +318114,Bose SoundSport Headphones,1,99.99,12/26/19 15:08,"38 Madison St, San Francisco, CA 94016" +318115,Lightning Charging Cable,1,14.95,12/18/19 20:14,"751 7th St, Austin, TX 73301" +318116,AAA Batteries (4-pack),1,2.99,12/11/19 09:59,"463 Highland St, Atlanta, GA 30301" +318117,20in Monitor,1,109.99,12/28/19 09:58,"548 Willow St, Los Angeles, CA 90001" +318118,Wired Headphones,1,11.99,12/07/19 12:39,"382 Jefferson St, San Francisco, CA 94016" +318119,20in Monitor,1,109.99,12/02/19 23:52,"189 Walnut St, San Francisco, CA 94016" +318120,Lightning Charging Cable,1,14.95,12/14/19 08:31,"485 Maple St, San Francisco, CA 94016" +318121,AAA Batteries (4-pack),1,2.99,12/18/19 15:52,"641 Dogwood St, Austin, TX 73301" +318122,Lightning Charging Cable,1,14.95,12/13/19 02:33,"171 6th St, Dallas, TX 75001" +318123,iPhone,1,700,12/22/19 23:01,"487 14th St, Los Angeles, CA 90001" +318124,Lightning Charging Cable,1,14.95,12/11/19 23:09,"52 10th St, Austin, TX 73301" +318125,AA Batteries (4-pack),2,3.84,12/11/19 11:39,"750 Meadow St, Boston, MA 02215" +318126,USB-C Charging Cable,1,11.95,12/24/19 09:42,"163 Hill St, San Francisco, CA 94016" +318127,Lightning Charging Cable,1,14.95,12/03/19 14:12,"104 Dogwood St, Dallas, TX 75001" +318128,27in FHD Monitor,1,149.99,12/26/19 16:07,"222 Hill St, San Francisco, CA 94016" +318129,AA Batteries (4-pack),1,3.84,12/11/19 15:19,"225 Hill St, Los Angeles, CA 90001" +318130,Wired Headphones,1,11.99,12/01/19 14:00,"256 Church St, Seattle, WA 98101" +318131,USB-C Charging Cable,1,11.95,12/04/19 12:30,"470 Church St, Atlanta, GA 30301" +318132,Lightning Charging Cable,1,14.95,12/25/19 10:27,"495 Highland St, San Francisco, CA 94016" +318133,Apple Airpods Headphones,1,150,12/26/19 12:41,"185 Hickory St, Los Angeles, CA 90001" +318134,Flatscreen TV,1,300,12/08/19 11:16,"765 9th St, San Francisco, CA 94016" +318135,Wired Headphones,1,11.99,12/16/19 11:48,"744 4th St, New York City, NY 10001" +318136,AAA Batteries (4-pack),1,2.99,12/31/19 05:22,"634 Park St, San Francisco, CA 94016" +318137,USB-C Charging Cable,1,11.95,12/25/19 20:47,"909 14th St, San Francisco, CA 94016" +318138,USB-C Charging Cable,1,11.95,12/29/19 17:33,"949 Adams St, Boston, MA 02215" +318139,Lightning Charging Cable,1,14.95,12/03/19 16:27,"125 Lake St, Los Angeles, CA 90001" +318140,AA Batteries (4-pack),1,3.84,12/26/19 20:11,"456 North St, New York City, NY 10001" +318141,Flatscreen TV,1,300,12/04/19 07:20,"372 Maple St, Seattle, WA 98101" +318142,AAA Batteries (4-pack),2,2.99,12/22/19 12:07,"888 Jackson St, Los Angeles, CA 90001" +318143,Apple Airpods Headphones,1,150,12/31/19 18:07,"816 South St, San Francisco, CA 94016" +318144,Macbook Pro Laptop,1,1700,12/11/19 20:02,"126 8th St, Atlanta, GA 30301" +318145,Wired Headphones,1,11.99,12/23/19 15:10,"127 Lake St, Los Angeles, CA 90001" +318146,Wired Headphones,1,11.99,12/13/19 19:00,"82 8th St, Atlanta, GA 30301" +318147,LG Dryer,1,600.0,12/21/19 17:05,"635 Church St, Los Angeles, CA 90001" +318148,AA Batteries (4-pack),1,3.84,12/06/19 13:27,"622 Church St, Los Angeles, CA 90001" +318149,Lightning Charging Cable,1,14.95,12/09/19 11:43,"237 Wilson St, Boston, MA 02215" +318150,AA Batteries (4-pack),1,3.84,12/18/19 13:08,"100 Highland St, Boston, MA 02215" +318151,27in FHD Monitor,1,149.99,12/31/19 15:40,"763 Sunset St, Seattle, WA 98101" +318152,Lightning Charging Cable,1,14.95,12/29/19 07:18,"546 Spruce St, San Francisco, CA 94016" +318153,Lightning Charging Cable,1,14.95,12/22/19 13:26,"205 Dogwood St, Austin, TX 73301" +318154,20in Monitor,1,109.99,12/30/19 20:44,"644 Willow St, Los Angeles, CA 90001" +318155,Lightning Charging Cable,1,14.95,12/05/19 11:14,"594 14th St, New York City, NY 10001" +318156,Wired Headphones,1,11.99,12/16/19 22:04,"553 Madison St, Atlanta, GA 30301" +318157,AA Batteries (4-pack),1,3.84,12/09/19 09:04,"615 South St, New York City, NY 10001" +318158,Lightning Charging Cable,1,14.95,12/21/19 20:30,"943 12th St, Portland, OR 97035" +318159,AAA Batteries (4-pack),1,2.99,12/26/19 19:42,"781 Chestnut St, Atlanta, GA 30301" +318160,iPhone,1,700,12/12/19 17:16,"343 1st St, Los Angeles, CA 90001" +318160,Apple Airpods Headphones,1,150,12/12/19 17:16,"343 1st St, Los Angeles, CA 90001" +318161,27in FHD Monitor,1,149.99,12/12/19 07:47,"3 8th St, Los Angeles, CA 90001" +318162,27in 4K Gaming Monitor,1,389.99,12/06/19 01:11,"85 Main St, Seattle, WA 98101" +318163,Wired Headphones,1,11.99,12/23/19 18:50,"1 Church St, Austin, TX 73301" +318164,27in 4K Gaming Monitor,1,389.99,12/04/19 08:02,"612 6th St, New York City, NY 10001" +318165,27in 4K Gaming Monitor,1,389.99,12/08/19 15:53,"169 5th St, New York City, NY 10001" +318166,Apple Airpods Headphones,1,150,12/27/19 01:25,"669 4th St, New York City, NY 10001" +318167,34in Ultrawide Monitor,1,379.99,12/30/19 18:13,"946 Jefferson St, Atlanta, GA 30301" +318168,Bose SoundSport Headphones,1,99.99,12/06/19 08:47,"408 Pine St, Seattle, WA 98101" +318169,Vareebadd Phone,1,400,12/24/19 20:33,"240 5th St, Los Angeles, CA 90001" +318170,Google Phone,1,600,12/06/19 15:28,"439 Church St, Atlanta, GA 30301" +318170,USB-C Charging Cable,1,11.95,12/06/19 15:28,"439 Church St, Atlanta, GA 30301" +318171,AA Batteries (4-pack),1,3.84,12/30/19 01:40,"312 Hickory St, Los Angeles, CA 90001" +318172,USB-C Charging Cable,1,11.95,12/15/19 21:06,"338 Ridge St, San Francisco, CA 94016" +318173,Wired Headphones,1,11.99,12/02/19 10:53,"733 Lakeview St, Boston, MA 02215" +318174,AAA Batteries (4-pack),1,2.99,12/02/19 12:52,"632 6th St, Austin, TX 73301" +318175,Bose SoundSport Headphones,1,99.99,12/08/19 12:37,"499 6th St, Dallas, TX 75001" +318176,ThinkPad Laptop,1,999.99,12/13/19 22:46,"347 River St, Boston, MA 02215" +318177,Flatscreen TV,1,300,12/26/19 08:40,"339 9th St, San Francisco, CA 94016" +318178,Google Phone,1,600,12/19/19 09:51,"532 4th St, San Francisco, CA 94016" +318178,Wired Headphones,2,11.99,12/19/19 09:51,"532 4th St, San Francisco, CA 94016" +318179,Wired Headphones,1,11.99,12/30/19 11:29,"602 West St, Austin, TX 73301" +318180,AAA Batteries (4-pack),1,2.99,12/28/19 17:52,"196 Spruce St, Boston, MA 02215" +318181,USB-C Charging Cable,1,11.95,12/10/19 18:06,"579 Adams St, Boston, MA 02215" +318182,Wired Headphones,1,11.99,12/16/19 18:22,"578 Highland St, New York City, NY 10001" +318183,Wired Headphones,1,11.99,12/08/19 15:44,"29 Jefferson St, San Francisco, CA 94016" +318184,Flatscreen TV,1,300,12/13/19 20:52,"984 2nd St, Boston, MA 02215" +318185,27in 4K Gaming Monitor,1,389.99,12/05/19 09:33,"626 Chestnut St, New York City, NY 10001" +318186,AAA Batteries (4-pack),1,2.99,12/04/19 14:14,"387 Madison St, Boston, MA 02215" +318187,Lightning Charging Cable,1,14.95,12/27/19 21:04,"925 10th St, Seattle, WA 98101" +318188,AA Batteries (4-pack),1,3.84,12/29/19 21:30,"352 South St, Atlanta, GA 30301" +318189,Apple Airpods Headphones,1,150,12/10/19 14:00,"585 Elm St, Portland, OR 97035" +318190,Apple Airpods Headphones,1,150,12/03/19 07:22,"495 Lake St, Seattle, WA 98101" +318191,ThinkPad Laptop,1,999.99,12/24/19 10:55,"872 11th St, Boston, MA 02215" +318192,AAA Batteries (4-pack),1,2.99,12/04/19 21:15,"446 Sunset St, Los Angeles, CA 90001" +318193,Lightning Charging Cable,1,14.95,12/21/19 10:42,"256 Wilson St, Seattle, WA 98101" +318194,AA Batteries (4-pack),2,3.84,12/21/19 13:38,"250 1st St, Boston, MA 02215" +318195,Macbook Pro Laptop,1,1700,12/20/19 12:15,"698 West St, Portland, ME 04101" +318196,Bose SoundSport Headphones,1,99.99,12/23/19 16:01,"259 13th St, Austin, TX 73301" +318197,iPhone,1,700,12/18/19 09:15,"495 Pine St, Atlanta, GA 30301" +318197,Lightning Charging Cable,1,14.95,12/18/19 09:15,"495 Pine St, Atlanta, GA 30301" +318198,Flatscreen TV,1,300,12/12/19 13:53,"257 River St, New York City, NY 10001" +318199,34in Ultrawide Monitor,1,379.99,12/19/19 23:33,"249 West St, Seattle, WA 98101" +318200,AAA Batteries (4-pack),1,2.99,12/11/19 19:40,"953 Highland St, Dallas, TX 75001" +318201,AAA Batteries (4-pack),2,2.99,12/15/19 18:04,"173 Hill St, New York City, NY 10001" +318202,Bose SoundSport Headphones,1,99.99,12/18/19 20:33,"131 Park St, Austin, TX 73301" +318203,AA Batteries (4-pack),2,3.84,12/27/19 21:34,"187 Cherry St, San Francisco, CA 94016" +318204,AA Batteries (4-pack),2,3.84,12/29/19 20:04,"764 Meadow St, Boston, MA 02215" +318205,Lightning Charging Cable,1,14.95,12/18/19 11:55,"625 5th St, Los Angeles, CA 90001" +318206,27in FHD Monitor,1,149.99,12/12/19 18:52,"280 Hill St, Portland, OR 97035" +318207,Macbook Pro Laptop,1,1700,12/28/19 12:17,"831 Lincoln St, New York City, NY 10001" +318208,Google Phone,1,600,12/21/19 20:53,"272 9th St, Atlanta, GA 30301" +318209,LG Washing Machine,1,600.0,12/09/19 09:06,"231 Ridge St, New York City, NY 10001" +318210,20in Monitor,1,109.99,12/01/19 11:27,"721 14th St, Dallas, TX 75001" +318211,AA Batteries (4-pack),1,3.84,12/04/19 12:21,"355 Willow St, San Francisco, CA 94016" +318212,AAA Batteries (4-pack),2,2.99,12/18/19 16:45,"174 14th St, Portland, OR 97035" +318213,Lightning Charging Cable,1,14.95,12/20/19 19:18,"504 8th St, San Francisco, CA 94016" +318214,AAA Batteries (4-pack),1,2.99,12/21/19 10:22,"367 14th St, Dallas, TX 75001" +318215,Apple Airpods Headphones,1,150,12/27/19 19:03,"256 Dogwood St, New York City, NY 10001" +318216,AA Batteries (4-pack),1,3.84,12/19/19 00:04,"598 Willow St, New York City, NY 10001" +318217,34in Ultrawide Monitor,1,379.99,12/28/19 22:58,"371 Willow St, Portland, OR 97035" +318218,AAA Batteries (4-pack),2,2.99,12/31/19 12:11,"820 Jackson St, Los Angeles, CA 90001" +318219,Bose SoundSport Headphones,1,99.99,12/22/19 15:37,"564 Pine St, Atlanta, GA 30301" +318220,Lightning Charging Cable,1,14.95,12/02/19 14:18,"406 Elm St, San Francisco, CA 94016" +318221,AAA Batteries (4-pack),1,2.99,12/31/19 21:59,"211 Sunset St, Boston, MA 02215" +318222,Google Phone,1,600,12/14/19 13:58,"55 1st St, San Francisco, CA 94016" +318223,27in FHD Monitor,1,149.99,12/23/19 11:20,"867 Highland St, Austin, TX 73301" +318224,ThinkPad Laptop,1,999.99,12/24/19 17:35,"565 4th St, New York City, NY 10001" +318225,27in 4K Gaming Monitor,1,389.99,12/16/19 22:01,"9 Maple St, Boston, MA 02215" +318226,Flatscreen TV,1,300,12/23/19 18:42,"272 8th St, Boston, MA 02215" +318227,20in Monitor,1,109.99,12/29/19 11:39,"189 Forest St, Boston, MA 02215" +318228,AA Batteries (4-pack),1,3.84,12/07/19 07:52,"749 North St, Los Angeles, CA 90001" +318229,Lightning Charging Cable,1,14.95,12/01/19 13:54,"52 Forest St, San Francisco, CA 94016" +318230,Lightning Charging Cable,1,14.95,12/03/19 13:29,"3 12th St, Seattle, WA 98101" +318231,Bose SoundSport Headphones,1,99.99,12/29/19 12:58,"50 Washington St, Austin, TX 73301" +318232,Wired Headphones,1,11.99,12/11/19 11:46,"691 Jackson St, Los Angeles, CA 90001" +318233,Bose SoundSport Headphones,1,99.99,12/25/19 12:48,"878 Highland St, Los Angeles, CA 90001" +318234,USB-C Charging Cable,1,11.95,12/28/19 10:32,"652 Elm St, Portland, ME 04101" +318235,34in Ultrawide Monitor,1,379.99,12/17/19 16:16,"30 13th St, Boston, MA 02215" +318236,AA Batteries (4-pack),2,3.84,12/21/19 13:04,"697 South St, San Francisco, CA 94016" +318237,AA Batteries (4-pack),1,3.84,12/28/19 14:49,"381 Jackson St, San Francisco, CA 94016" +318238,Lightning Charging Cable,1,14.95,12/23/19 21:52,"103 Chestnut St, Austin, TX 73301" +318239,USB-C Charging Cable,1,11.95,12/03/19 19:38,"650 Washington St, Los Angeles, CA 90001" +318240,Wired Headphones,1,11.99,12/16/19 15:14,"475 12th St, San Francisco, CA 94016" +318241,27in FHD Monitor,1,149.99,12/31/19 16:37,"3 Church St, Los Angeles, CA 90001" +318242,Wired Headphones,1,11.99,12/22/19 11:58,"928 Adams St, Los Angeles, CA 90001" +318243,Lightning Charging Cable,1,14.95,12/04/19 14:22,"98 Elm St, Los Angeles, CA 90001" +318244,USB-C Charging Cable,2,11.95,12/07/19 19:23,"488 10th St, Los Angeles, CA 90001" +318245,ThinkPad Laptop,1,999.99,12/02/19 10:51,"141 Church St, Atlanta, GA 30301" +318246,AA Batteries (4-pack),1,3.84,12/28/19 12:14,"100 North St, Austin, TX 73301" +318247,AAA Batteries (4-pack),1,2.99,12/07/19 16:13,"348 Washington St, Seattle, WA 98101" +318248,Lightning Charging Cable,1,14.95,12/28/19 11:24,"865 9th St, Seattle, WA 98101" +318249,USB-C Charging Cable,1,11.95,12/20/19 23:21,"216 Main St, San Francisco, CA 94016" +318250,ThinkPad Laptop,1,999.99,12/27/19 01:05,"771 9th St, New York City, NY 10001" +318251,Wired Headphones,1,11.99,12/16/19 23:10,"148 River St, San Francisco, CA 94016" +318252,AAA Batteries (4-pack),1,2.99,12/30/19 23:30,"810 6th St, Atlanta, GA 30301" +318253,Flatscreen TV,1,300,12/08/19 21:00,"70 Hill St, Dallas, TX 75001" +318254,USB-C Charging Cable,1,11.95,12/07/19 08:27,"236 Hickory St, Boston, MA 02215" +318255,LG Dryer,1,600.0,12/17/19 11:35,"13 Hill St, Los Angeles, CA 90001" +318256,Bose SoundSport Headphones,1,99.99,12/22/19 05:28,"333 Elm St, Los Angeles, CA 90001" +318257,Bose SoundSport Headphones,1,99.99,12/31/19 12:32,"341 Hill St, San Francisco, CA 94016" +318258,AAA Batteries (4-pack),2,2.99,12/23/19 22:11,"804 Johnson St, San Francisco, CA 94016" +318259,Lightning Charging Cable,1,14.95,12/24/19 23:03,"510 8th St, New York City, NY 10001" +318260,AA Batteries (4-pack),1,3.84,12/21/19 14:41,"868 Center St, Los Angeles, CA 90001" +318261,Wired Headphones,1,11.99,12/03/19 22:51,"540 Madison St, Austin, TX 73301" +318262,Lightning Charging Cable,1,14.95,12/14/19 20:09,"75 9th St, Los Angeles, CA 90001" +318263,USB-C Charging Cable,1,11.95,12/30/19 19:25,"444 Highland St, Atlanta, GA 30301" +318264,Wired Headphones,1,11.99,12/04/19 23:15,"165 12th St, San Francisco, CA 94016" +318265,27in 4K Gaming Monitor,1,389.99,12/28/19 14:09,"725 Meadow St, Boston, MA 02215" +318266,Wired Headphones,1,11.99,12/30/19 10:26,"57 Ridge St, New York City, NY 10001" +318267,Bose SoundSport Headphones,1,99.99,12/12/19 13:52,"186 Cherry St, Dallas, TX 75001" +318268,iPhone,1,700,12/14/19 12:33,"389 Ridge St, Portland, OR 97035" +318268,Lightning Charging Cable,1,14.95,12/14/19 12:33,"389 Ridge St, Portland, OR 97035" +318269,Wired Headphones,1,11.99,12/21/19 13:01,"592 Lincoln St, San Francisco, CA 94016" +318270,Apple Airpods Headphones,1,150,12/02/19 19:15,"918 Lincoln St, San Francisco, CA 94016" +318271,Lightning Charging Cable,1,14.95,12/30/19 10:46,"126 4th St, Dallas, TX 75001" +318272,USB-C Charging Cable,1,11.95,12/03/19 13:03,"368 13th St, Dallas, TX 75001" +318273,AA Batteries (4-pack),2,3.84,12/16/19 21:21,"796 Jackson St, San Francisco, CA 94016" +318274,Apple Airpods Headphones,1,150,12/07/19 09:53,"944 West St, San Francisco, CA 94016" +318275,iPhone,1,700,12/26/19 15:02,"976 Chestnut St, Atlanta, GA 30301" +318276,USB-C Charging Cable,1,11.95,12/09/19 14:21,"69 Sunset St, Portland, OR 97035" +318277,Lightning Charging Cable,1,14.95,12/02/19 21:31,"494 Hickory St, Seattle, WA 98101" +318278,Bose SoundSport Headphones,1,99.99,12/30/19 19:52,"478 Cherry St, San Francisco, CA 94016" +318279,AA Batteries (4-pack),1,3.84,12/11/19 21:35,"764 8th St, Austin, TX 73301" +318280,Apple Airpods Headphones,1,150,12/10/19 19:40,"754 5th St, Los Angeles, CA 90001" +318281,27in 4K Gaming Monitor,1,389.99,12/01/19 08:49,"162 River St, Boston, MA 02215" +318282,27in 4K Gaming Monitor,1,389.99,12/28/19 20:55,"108 Forest St, San Francisco, CA 94016" +318283,Lightning Charging Cable,1,14.95,12/22/19 14:52,"228 River St, San Francisco, CA 94016" +318284,Apple Airpods Headphones,1,150,12/13/19 19:02,"939 Adams St, San Francisco, CA 94016" +318285,AAA Batteries (4-pack),1,2.99,12/11/19 23:36,"409 Highland St, Boston, MA 02215" +318286,AA Batteries (4-pack),1,3.84,12/25/19 12:51,"300 12th St, Dallas, TX 75001" +318287,USB-C Charging Cable,3,11.95,12/15/19 08:42,"899 Spruce St, Los Angeles, CA 90001" +318288,USB-C Charging Cable,1,11.95,12/24/19 19:30,"411 13th St, San Francisco, CA 94016" +318289,USB-C Charging Cable,1,11.95,12/30/19 10:44,"194 6th St, Dallas, TX 75001" +318290,Apple Airpods Headphones,1,150,12/13/19 07:20,"194 Ridge St, New York City, NY 10001" +318291,Google Phone,1,600,12/28/19 10:57,"240 Dogwood St, Dallas, TX 75001" +318292,USB-C Charging Cable,1,11.95,12/06/19 23:50,"954 Willow St, New York City, NY 10001" +318293,Macbook Pro Laptop,1,1700,12/14/19 21:02,"846 River St, Seattle, WA 98101" +318294,AA Batteries (4-pack),2,3.84,12/24/19 11:07,"788 Main St, Los Angeles, CA 90001" +318295,Apple Airpods Headphones,1,150,12/17/19 15:58,"591 Madison St, Atlanta, GA 30301" +318296,Apple Airpods Headphones,1,150,12/12/19 22:50,"105 Spruce St, San Francisco, CA 94016" +318297,iPhone,1,700,12/11/19 14:32,"27 Johnson St, Seattle, WA 98101" +318297,Lightning Charging Cable,1,14.95,12/11/19 14:32,"27 Johnson St, Seattle, WA 98101" +318298,iPhone,1,700,12/09/19 14:50,"72 6th St, San Francisco, CA 94016" +318298,Lightning Charging Cable,1,14.95,12/09/19 14:50,"72 6th St, San Francisco, CA 94016" +318299,34in Ultrawide Monitor,1,379.99,12/17/19 13:19,"740 Church St, Portland, ME 04101" +318300,Bose SoundSport Headphones,1,99.99,12/19/19 22:27,"999 Center St, Los Angeles, CA 90001" +318301,Apple Airpods Headphones,1,150,12/24/19 15:04,"923 Hickory St, New York City, NY 10001" +318302,AA Batteries (4-pack),1,3.84,12/13/19 06:13,"63 Lincoln St, Los Angeles, CA 90001" +318303,Lightning Charging Cable,1,14.95,12/17/19 22:25,"236 14th St, New York City, NY 10001" +318304,Wired Headphones,1,11.99,12/05/19 09:48,"545 West St, San Francisco, CA 94016" +318305,Wired Headphones,1,11.99,12/13/19 12:08,"748 Cherry St, New York City, NY 10001" +318306,Lightning Charging Cable,1,14.95,12/05/19 20:22,"112 8th St, Boston, MA 02215" +318307,AA Batteries (4-pack),1,3.84,12/03/19 22:03,"26 Main St, Boston, MA 02215" +318308,AA Batteries (4-pack),1,3.84,12/18/19 10:05,"859 6th St, Austin, TX 73301" +318309,Lightning Charging Cable,1,14.95,12/25/19 15:01,"554 Washington St, Seattle, WA 98101" +318310,USB-C Charging Cable,1,11.95,12/26/19 12:49,"574 Hickory St, San Francisco, CA 94016" +318311,AAA Batteries (4-pack),1,2.99,12/04/19 23:04,"98 12th St, Los Angeles, CA 90001" +318312,AA Batteries (4-pack),1,3.84,12/01/19 23:53,"627 Cedar St, New York City, NY 10001" +318313,AAA Batteries (4-pack),1,2.99,12/29/19 15:19,"142 North St, Los Angeles, CA 90001" +318314,AAA Batteries (4-pack),2,2.99,12/30/19 13:08,"724 Willow St, New York City, NY 10001" +318315,iPhone,1,700,12/03/19 20:25,"89 Main St, San Francisco, CA 94016" +318316,Bose SoundSport Headphones,1,99.99,12/31/19 00:19,"580 Center St, Seattle, WA 98101" +318317,iPhone,1,700,12/05/19 12:21,"594 Spruce St, Atlanta, GA 30301" +318318,Google Phone,1,600,12/25/19 17:17,"251 13th St, San Francisco, CA 94016" +318319,20in Monitor,1,109.99,12/16/19 22:04,"313 9th St, San Francisco, CA 94016" +318320,Apple Airpods Headphones,1,150,12/31/19 17:50,"584 7th St, New York City, NY 10001" +318321,USB-C Charging Cable,1,11.95,12/11/19 20:28,"107 Lakeview St, Los Angeles, CA 90001" +318322,Wired Headphones,1,11.99,12/22/19 15:25,"841 Maple St, Los Angeles, CA 90001" +318323,iPhone,1,700,12/05/19 22:34,"47 Lincoln St, San Francisco, CA 94016" +318324,AAA Batteries (4-pack),2,2.99,12/13/19 03:31,"55 Highland St, Austin, TX 73301" +318325,Lightning Charging Cable,1,14.95,12/17/19 19:36,"215 14th St, Atlanta, GA 30301" +318326,Lightning Charging Cable,1,14.95,12/20/19 01:12,"19 Jefferson St, Los Angeles, CA 90001" +318327,USB-C Charging Cable,1,11.95,12/08/19 21:59,"997 Pine St, New York City, NY 10001" +318328,Lightning Charging Cable,1,14.95,12/10/19 22:05,"686 Washington St, San Francisco, CA 94016" +318329,20in Monitor,1,109.99,12/22/19 12:29,"769 5th St, San Francisco, CA 94016" +318330,AA Batteries (4-pack),2,3.84,12/04/19 16:46,"483 Church St, San Francisco, CA 94016" +318331,USB-C Charging Cable,1,11.95,12/23/19 22:29,"828 Meadow St, Dallas, TX 75001" +318332,Google Phone,1,600,12/08/19 16:29,"560 Wilson St, Atlanta, GA 30301" +318333,AAA Batteries (4-pack),1,2.99,12/24/19 11:51,"648 Walnut St, Los Angeles, CA 90001" +318334,Bose SoundSport Headphones,1,99.99,12/07/19 23:38,"465 12th St, Seattle, WA 98101" +318335,Lightning Charging Cable,2,14.95,12/11/19 10:39,"341 7th St, Atlanta, GA 30301" +318336,iPhone,1,700,12/16/19 12:02,"107 North St, San Francisco, CA 94016" +318336,Wired Headphones,3,11.99,12/16/19 12:02,"107 North St, San Francisco, CA 94016" +318337,Lightning Charging Cable,1,14.95,12/31/19 13:51,"666 Sunset St, New York City, NY 10001" +318338,AAA Batteries (4-pack),1,2.99,12/31/19 09:00,"534 Lakeview St, Atlanta, GA 30301" +318339,Vareebadd Phone,1,400,12/26/19 10:46,"377 12th St, Atlanta, GA 30301" +318340,AA Batteries (4-pack),1,3.84,12/18/19 09:57,"99 Ridge St, Boston, MA 02215" +318341,Lightning Charging Cable,1,14.95,12/26/19 21:40,"990 Center St, New York City, NY 10001" +318342,ThinkPad Laptop,1,999.99,12/01/19 16:00,"282 Main St, Austin, TX 73301" +318343,Lightning Charging Cable,2,14.95,12/24/19 20:50,"973 Main St, Portland, OR 97035" +318344,27in 4K Gaming Monitor,1,389.99,12/04/19 11:06,"34 Lake St, Dallas, TX 75001" +318345,Wired Headphones,1,11.99,12/13/19 13:49,"383 Lake St, Los Angeles, CA 90001" +318346,34in Ultrawide Monitor,1,379.99,12/16/19 22:18,"775 Forest St, Atlanta, GA 30301" +318347,iPhone,1,700,12/16/19 20:57,"504 12th St, Boston, MA 02215" +318348,Wired Headphones,1,11.99,12/07/19 21:21,"46 8th St, New York City, NY 10001" +318349,Bose SoundSport Headphones,1,99.99,12/25/19 08:58,"336 Ridge St, New York City, NY 10001" +318350,Lightning Charging Cable,1,14.95,12/13/19 12:15,"706 Wilson St, Dallas, TX 75001" +318351,Wired Headphones,1,11.99,12/03/19 17:50,"720 12th St, Boston, MA 02215" +318352,USB-C Charging Cable,1,11.95,12/19/19 12:15,"683 Willow St, Boston, MA 02215" +318353,AAA Batteries (4-pack),3,2.99,12/21/19 13:07,"121 Forest St, Atlanta, GA 30301" +318354,Bose SoundSport Headphones,1,99.99,12/21/19 22:01,"346 5th St, Los Angeles, CA 90001" +318355,ThinkPad Laptop,1,999.99,12/28/19 11:01,"101 Washington St, Portland, OR 97035" +318356,AAA Batteries (4-pack),2,2.99,12/03/19 12:57,"401 Highland St, Dallas, TX 75001" +318357,Wired Headphones,1,11.99,12/13/19 09:15,"868 Sunset St, Portland, OR 97035" +318358,AA Batteries (4-pack),2,3.84,12/14/19 09:40,"142 Dogwood St, Atlanta, GA 30301" +318359,27in 4K Gaming Monitor,1,389.99,12/22/19 17:21,"382 Pine St, San Francisco, CA 94016" +318360,Lightning Charging Cable,1,14.95,12/04/19 08:18,"323 Hill St, Austin, TX 73301" +318361,27in 4K Gaming Monitor,1,389.99,12/06/19 15:51,"451 Sunset St, New York City, NY 10001" +318362,iPhone,1,700,12/14/19 12:56,"81 Cherry St, Dallas, TX 75001" +318363,Bose SoundSport Headphones,1,99.99,12/08/19 13:31,"196 Chestnut St, Los Angeles, CA 90001" +318364,Wired Headphones,1,11.99,12/12/19 07:58,"139 9th St, Dallas, TX 75001" +318365,USB-C Charging Cable,1,11.95,12/29/19 09:43,"249 Adams St, Seattle, WA 98101" +318366,Lightning Charging Cable,1,14.95,12/13/19 01:33,"405 Chestnut St, San Francisco, CA 94016" +318367,AAA Batteries (4-pack),1,2.99,12/16/19 18:36,"301 13th St, Boston, MA 02215" +318368,27in FHD Monitor,1,149.99,12/02/19 10:12,"66 2nd St, New York City, NY 10001" +318369,Wired Headphones,1,11.99,12/17/19 13:47,"985 Wilson St, Boston, MA 02215" +318370,Lightning Charging Cable,1,14.95,12/15/19 14:38,"167 Wilson St, Boston, MA 02215" +318371,Google Phone,1,600,12/20/19 14:09,"863 Dogwood St, Los Angeles, CA 90001" +318372,20in Monitor,1,109.99,12/23/19 03:20,"769 5th St, San Francisco, CA 94016" +318373,iPhone,1,700,12/28/19 22:43,"289 Wilson St, Dallas, TX 75001" +318373,Wired Headphones,1,11.99,12/28/19 22:43,"289 Wilson St, Dallas, TX 75001" +318374,Bose SoundSport Headphones,1,99.99,12/10/19 06:36,"621 West St, San Francisco, CA 94016" +318375,USB-C Charging Cable,2,11.95,12/13/19 14:19,"275 West St, New York City, NY 10001" +318376,AAA Batteries (4-pack),1,2.99,12/15/19 12:17,"60 5th St, New York City, NY 10001" +318377,Google Phone,1,600,12/20/19 10:52,"709 Hill St, Los Angeles, CA 90001" +318378,Wired Headphones,2,11.99,12/02/19 08:56,"879 Adams St, Portland, OR 97035" +318379,Apple Airpods Headphones,1,150,12/03/19 08:29,"963 10th St, Boston, MA 02215" +318380,20in Monitor,2,109.99,12/08/19 18:21,"584 Madison St, New York City, NY 10001" +318381,Macbook Pro Laptop,1,1700,01/01/20 01:43,"64 Park St, San Francisco, CA 94016" +318382,20in Monitor,1,109.99,12/03/19 11:32,"707 9th St, Los Angeles, CA 90001" +318383,AAA Batteries (4-pack),1,2.99,12/25/19 22:09,"437 4th St, Atlanta, GA 30301" +318384,Lightning Charging Cable,1,14.95,12/31/19 11:27,"105 Main St, New York City, NY 10001" +318385,Wired Headphones,1,11.99,12/19/19 20:26,"180 13th St, Los Angeles, CA 90001" +318386,AA Batteries (4-pack),1,3.84,12/20/19 13:25,"75 Lake St, New York City, NY 10001" +318387,Lightning Charging Cable,1,14.95,12/18/19 15:43,"518 5th St, Boston, MA 02215" +318388,Lightning Charging Cable,1,14.95,12/08/19 18:19,"7 South St, Atlanta, GA 30301" +318389,Apple Airpods Headphones,1,150,12/26/19 20:13,"475 Forest St, Los Angeles, CA 90001" +318390,AAA Batteries (4-pack),1,2.99,12/02/19 20:09,"372 Madison St, Los Angeles, CA 90001" +318391,AAA Batteries (4-pack),1,2.99,12/20/19 14:48,"422 Elm St, Los Angeles, CA 90001" +318392,Bose SoundSport Headphones,1,99.99,12/02/19 13:18,"729 Cherry St, Los Angeles, CA 90001" +318393,Wired Headphones,1,11.99,12/13/19 16:23,"279 West St, Portland, OR 97035" +318394,Bose SoundSport Headphones,1,99.99,12/05/19 18:56,"512 14th St, Atlanta, GA 30301" +318395,Lightning Charging Cable,1,14.95,12/06/19 20:04,"997 Meadow St, New York City, NY 10001" +318396,Wired Headphones,1,11.99,12/15/19 14:40,"826 Lake St, Los Angeles, CA 90001" +318397,Bose SoundSport Headphones,1,99.99,12/09/19 09:11,"285 Madison St, Los Angeles, CA 90001" +318398,Wired Headphones,1,11.99,12/16/19 17:06,"531 Jefferson St, San Francisco, CA 94016" +318399,USB-C Charging Cable,2,11.95,12/02/19 17:29,"33 Jefferson St, Los Angeles, CA 90001" +318400,Wired Headphones,1,11.99,12/18/19 19:12,"117 Hill St, Seattle, WA 98101" +318401,AA Batteries (4-pack),1,3.84,12/09/19 13:33,"303 8th St, Portland, OR 97035" +318402,AA Batteries (4-pack),1,3.84,12/18/19 08:54,"668 Jefferson St, San Francisco, CA 94016" +318403,Google Phone,1,600,12/06/19 20:08,"575 Walnut St, New York City, NY 10001" +318403,Wired Headphones,1,11.99,12/06/19 20:08,"575 Walnut St, New York City, NY 10001" +318404,AA Batteries (4-pack),1,3.84,12/31/19 19:33,"219 Lincoln St, Seattle, WA 98101" +318405,27in FHD Monitor,1,149.99,12/29/19 11:17,"17 Maple St, Seattle, WA 98101" +318406,Lightning Charging Cable,1,14.95,12/27/19 09:00,"850 Park St, San Francisco, CA 94016" +318407,AAA Batteries (4-pack),2,2.99,12/03/19 17:37,"625 Pine St, Dallas, TX 75001" +318408,27in 4K Gaming Monitor,1,389.99,12/18/19 11:54,"780 14th St, Los Angeles, CA 90001" +318409,USB-C Charging Cable,1,11.95,12/07/19 13:12,"72 12th St, Atlanta, GA 30301" +318410,AA Batteries (4-pack),1,3.84,12/04/19 10:45,"552 Washington St, Portland, ME 04101" +318411,AA Batteries (4-pack),1,3.84,12/06/19 17:31,"350 8th St, Austin, TX 73301" +318412,AA Batteries (4-pack),1,3.84,12/14/19 09:49,"220 River St, Atlanta, GA 30301" +318413,AAA Batteries (4-pack),1,2.99,12/25/19 08:16,"517 1st St, New York City, NY 10001" +318414,Bose SoundSport Headphones,2,99.99,12/18/19 09:45,"324 Main St, New York City, NY 10001" +318415,AAA Batteries (4-pack),1,2.99,12/17/19 16:11,"216 Madison St, Atlanta, GA 30301" +318416,34in Ultrawide Monitor,1,379.99,12/07/19 18:02,"12 2nd St, Los Angeles, CA 90001" +318417,AA Batteries (4-pack),1,3.84,12/28/19 17:06,"811 Spruce St, Austin, TX 73301" +318418,AA Batteries (4-pack),1,3.84,12/15/19 01:37,"955 8th St, San Francisco, CA 94016" +318419,27in 4K Gaming Monitor,1,389.99,12/09/19 13:04,"608 North St, Los Angeles, CA 90001" +318420,Wired Headphones,1,11.99,12/13/19 14:18,"674 Jefferson St, San Francisco, CA 94016" +318421,34in Ultrawide Monitor,1,379.99,12/03/19 06:42,"73 Cherry St, New York City, NY 10001" +318422,iPhone,1,700,12/08/19 07:30,"669 Lincoln St, Atlanta, GA 30301" +318423,AAA Batteries (4-pack),4,2.99,12/20/19 00:32,"131 Walnut St, San Francisco, CA 94016" +318424,USB-C Charging Cable,1,11.95,12/25/19 18:15,"667 Park St, San Francisco, CA 94016" +318425,Bose SoundSport Headphones,1,99.99,12/18/19 16:40,"909 Jefferson St, San Francisco, CA 94016" +318426,AAA Batteries (4-pack),2,2.99,12/08/19 16:37,"998 Hickory St, Austin, TX 73301" +318427,Apple Airpods Headphones,1,150,12/11/19 15:53,"306 4th St, San Francisco, CA 94016" +318428,Lightning Charging Cable,1,14.95,12/10/19 00:42,"811 Park St, Boston, MA 02215" +318429,Bose SoundSport Headphones,1,99.99,12/29/19 11:27,"499 Washington St, Boston, MA 02215" +318430,27in 4K Gaming Monitor,1,389.99,12/01/19 16:11,"686 Main St, Seattle, WA 98101" +318431,Vareebadd Phone,1,400,12/18/19 11:04,"304 Cedar St, San Francisco, CA 94016" +318432,34in Ultrawide Monitor,1,379.99,12/31/19 09:50,"486 Forest St, New York City, NY 10001" +318433,AA Batteries (4-pack),2,3.84,12/16/19 12:47,"442 11th St, Atlanta, GA 30301" +318434,Google Phone,1,600,12/31/19 21:43,"999 Lakeview St, Seattle, WA 98101" +318435,ThinkPad Laptop,1,999.99,12/14/19 15:09,"294 Park St, San Francisco, CA 94016" +318436,USB-C Charging Cable,1,11.95,12/10/19 22:51,"79 Lake St, San Francisco, CA 94016" +318437,20in Monitor,1,109.99,12/19/19 20:29,"880 4th St, Los Angeles, CA 90001" +318438,AAA Batteries (4-pack),1,2.99,12/28/19 08:38,"53 2nd St, Austin, TX 73301" +318439,USB-C Charging Cable,1,11.95,12/07/19 23:41,"983 14th St, San Francisco, CA 94016" +318440,27in 4K Gaming Monitor,1,389.99,12/15/19 17:40,"274 11th St, Seattle, WA 98101" +318441,Wired Headphones,1,11.99,12/09/19 15:41,"809 Dogwood St, Seattle, WA 98101" +318442,Vareebadd Phone,1,400,12/24/19 19:20,"489 Lake St, New York City, NY 10001" +318443,27in 4K Gaming Monitor,1,389.99,12/25/19 20:23,"623 Chestnut St, San Francisco, CA 94016" +318444,Flatscreen TV,1,300,12/26/19 11:37,"15 Church St, Boston, MA 02215" +318445,USB-C Charging Cable,2,11.95,12/21/19 17:22,"200 5th St, Boston, MA 02215" +318446,Apple Airpods Headphones,1,150,12/13/19 14:57,"771 5th St, New York City, NY 10001" +318447,USB-C Charging Cable,1,11.95,12/03/19 18:28,"672 Lake St, Los Angeles, CA 90001" +318448,USB-C Charging Cable,1,11.95,12/04/19 16:06,"763 4th St, Atlanta, GA 30301" +318449,USB-C Charging Cable,1,11.95,12/02/19 11:02,"458 11th St, San Francisco, CA 94016" +318449,AA Batteries (4-pack),1,3.84,12/02/19 11:02,"458 11th St, San Francisco, CA 94016" +318450,USB-C Charging Cable,1,11.95,12/22/19 18:42,"332 6th St, Portland, OR 97035" +318451,34in Ultrawide Monitor,1,379.99,12/03/19 20:21,"504 Sunset St, Portland, OR 97035" +318452,Bose SoundSport Headphones,1,99.99,12/13/19 11:19,"703 Johnson St, Atlanta, GA 30301" +318453,USB-C Charging Cable,1,11.95,12/12/19 22:32,"430 9th St, San Francisco, CA 94016" +318454,Bose SoundSport Headphones,1,99.99,12/29/19 20:21,"976 Washington St, San Francisco, CA 94016" +318455,Google Phone,1,600,12/09/19 17:41,"138 Madison St, Atlanta, GA 30301" +318455,USB-C Charging Cable,1,11.95,12/09/19 17:41,"138 Madison St, Atlanta, GA 30301" +318456,Bose SoundSport Headphones,1,99.99,12/07/19 22:30,"901 11th St, San Francisco, CA 94016" +318457,27in FHD Monitor,1,149.99,12/22/19 13:14,"519 Meadow St, San Francisco, CA 94016" +318458,27in 4K Gaming Monitor,1,389.99,12/16/19 10:53,"295 Park St, Atlanta, GA 30301" +,,,,, +318459,Google Phone,1,600,12/03/19 19:48,"51 6th St, Boston, MA 02215" +318460,AAA Batteries (4-pack),1,2.99,12/15/19 05:20,"474 North St, San Francisco, CA 94016" +318461,USB-C Charging Cable,1,11.95,12/03/19 18:25,"434 Meadow St, San Francisco, CA 94016" +318462,Apple Airpods Headphones,1,150,12/29/19 17:48,"388 River St, San Francisco, CA 94016" +318463,AA Batteries (4-pack),3,3.84,12/15/19 07:55,"999 10th St, San Francisco, CA 94016" +318464,Lightning Charging Cable,1,14.95,12/26/19 18:15,"571 Dogwood St, Austin, TX 73301" +318465,27in 4K Gaming Monitor,1,389.99,12/02/19 17:31,"745 Jackson St, Boston, MA 02215" +318466,Wired Headphones,1,11.99,12/05/19 11:55,"41 South St, San Francisco, CA 94016" +318467,34in Ultrawide Monitor,1,379.99,12/04/19 18:59,"664 5th St, San Francisco, CA 94016" +318468,USB-C Charging Cable,1,11.95,12/12/19 16:48,"490 Pine St, Los Angeles, CA 90001" +318469,USB-C Charging Cable,1,11.95,12/08/19 11:07,"390 1st St, New York City, NY 10001" +318470,USB-C Charging Cable,1,11.95,12/07/19 14:00,"120 10th St, New York City, NY 10001" +318471,20in Monitor,1,109.99,12/01/19 15:16,"289 Meadow St, Los Angeles, CA 90001" +318472,Wired Headphones,1,11.99,12/26/19 17:04,"477 5th St, Portland, ME 04101" +318473,27in 4K Gaming Monitor,1,389.99,12/20/19 11:11,"790 Lincoln St, San Francisco, CA 94016" +318474,AA Batteries (4-pack),2,3.84,12/27/19 13:01,"518 Spruce St, Atlanta, GA 30301" +318475,Lightning Charging Cable,1,14.95,12/31/19 20:05,"617 Jefferson St, Dallas, TX 75001" +318476,Wired Headphones,1,11.99,12/22/19 07:58,"775 Lincoln St, Los Angeles, CA 90001" +318477,27in FHD Monitor,1,149.99,12/12/19 09:37,"327 Sunset St, Boston, MA 02215" +318478,USB-C Charging Cable,1,11.95,12/26/19 12:55,"152 Willow St, Atlanta, GA 30301" +318479,AAA Batteries (4-pack),1,2.99,12/12/19 15:01,"978 Hill St, Los Angeles, CA 90001" +318480,Apple Airpods Headphones,1,150,12/09/19 18:58,"611 5th St, Austin, TX 73301" +318481,Wired Headphones,1,11.99,12/13/19 19:15,"952 Hickory St, San Francisco, CA 94016" +318482,iPhone,1,700,12/01/19 16:49,"878 13th St, Boston, MA 02215" +318482,Wired Headphones,1,11.99,12/01/19 16:49,"878 13th St, Boston, MA 02215" +318483,Lightning Charging Cable,1,14.95,12/15/19 06:26,"315 9th St, New York City, NY 10001" +318484,20in Monitor,1,109.99,12/20/19 01:29,"990 Cherry St, Boston, MA 02215" +318485,AA Batteries (4-pack),1,3.84,12/28/19 20:09,"342 Spruce St, Los Angeles, CA 90001" +318486,AA Batteries (4-pack),1,3.84,12/13/19 00:05,"296 Walnut St, Dallas, TX 75001" +318487,iPhone,1,700,12/12/19 21:09,"145 Jefferson St, San Francisco, CA 94016" +318488,AAA Batteries (4-pack),1,2.99,12/16/19 07:06,"338 Lincoln St, San Francisco, CA 94016" +318488,Google Phone,1,600,12/16/19 07:06,"338 Lincoln St, San Francisco, CA 94016" +318489,Bose SoundSport Headphones,1,99.99,12/14/19 10:38,"750 1st St, San Francisco, CA 94016" +318490,34in Ultrawide Monitor,1,379.99,12/16/19 13:56,"297 7th St, Boston, MA 02215" +318491,AAA Batteries (4-pack),2,2.99,12/11/19 17:23,"564 11th St, San Francisco, CA 94016" +318492,AA Batteries (4-pack),1,3.84,12/17/19 00:10,"183 Adams St, Los Angeles, CA 90001" +318493,USB-C Charging Cable,1,11.95,12/10/19 11:20,"353 13th St, Seattle, WA 98101" +318494,Bose SoundSport Headphones,1,99.99,12/26/19 11:38,"245 Pine St, Los Angeles, CA 90001" +318495,27in FHD Monitor,1,149.99,12/23/19 20:25,"342 11th St, Atlanta, GA 30301" +318496,AAA Batteries (4-pack),1,2.99,12/03/19 18:51,"908 14th St, Dallas, TX 75001" +318497,Lightning Charging Cable,1,14.95,12/28/19 18:19,"97 South St, San Francisco, CA 94016" +318498,Wired Headphones,1,11.99,12/17/19 19:55,"639 Park St, Los Angeles, CA 90001" +318499,Bose SoundSport Headphones,1,99.99,12/02/19 12:45,"384 Main St, New York City, NY 10001" +318500,Bose SoundSport Headphones,1,99.99,12/06/19 03:24,"230 Madison St, New York City, NY 10001" +318501,Google Phone,1,600,12/19/19 19:40,"566 8th St, Dallas, TX 75001" +318501,USB-C Charging Cable,1,11.95,12/19/19 19:40,"566 8th St, Dallas, TX 75001" +318502,27in 4K Gaming Monitor,1,389.99,12/10/19 16:14,"446 Wilson St, San Francisco, CA 94016" +318503,Apple Airpods Headphones,1,150,12/30/19 16:53,"200 2nd St, San Francisco, CA 94016" +318504,AA Batteries (4-pack),1,3.84,12/17/19 22:42,"382 Dogwood St, Boston, MA 02215" +318505,27in FHD Monitor,1,149.99,12/20/19 21:07,"321 West St, Austin, TX 73301" +318506,20in Monitor,1,109.99,12/17/19 16:40,"363 Pine St, Seattle, WA 98101" +318507,Bose SoundSport Headphones,1,99.99,12/26/19 15:35,"332 Walnut St, Los Angeles, CA 90001" +318508,AAA Batteries (4-pack),2,2.99,12/29/19 11:49,"112 Lake St, Seattle, WA 98101" +318509,Wired Headphones,1,11.99,12/03/19 18:57,"166 River St, New York City, NY 10001" +318510,Bose SoundSport Headphones,1,99.99,12/18/19 13:35,"342 Forest St, Los Angeles, CA 90001" +318511,AA Batteries (4-pack),1,3.84,12/09/19 16:08,"274 5th St, New York City, NY 10001" +318512,Google Phone,1,600,12/25/19 09:30,"388 Chestnut St, New York City, NY 10001" +318513,iPhone,1,700,12/08/19 16:19,"167 Hill St, Portland, OR 97035" +318514,Apple Airpods Headphones,1,150,12/25/19 20:13,"746 Cedar St, San Francisco, CA 94016" +318515,20in Monitor,1,109.99,12/30/19 10:52,"682 14th St, Atlanta, GA 30301" +318516,AAA Batteries (4-pack),2,2.99,12/04/19 09:26,"221 Hill St, Los Angeles, CA 90001" +318517,Bose SoundSport Headphones,1,99.99,12/27/19 17:55,"290 Church St, Portland, ME 04101" +318518,Macbook Pro Laptop,1,1700,12/14/19 20:37,"130 Madison St, Boston, MA 02215" +318519,USB-C Charging Cable,1,11.95,12/03/19 23:00,"184 South St, New York City, NY 10001" +318520,Lightning Charging Cable,1,14.95,12/30/19 20:03,"936 Spruce St, Boston, MA 02215" +318521,AA Batteries (4-pack),1,3.84,12/10/19 21:14,"165 Sunset St, Austin, TX 73301" +318522,Wired Headphones,1,11.99,12/16/19 16:23,"882 Hickory St, New York City, NY 10001" +318523,Flatscreen TV,1,300,12/07/19 11:44,"182 7th St, Dallas, TX 75001" +318524,USB-C Charging Cable,1,11.95,12/25/19 12:19,"411 14th St, Portland, OR 97035" +318525,Wired Headphones,1,11.99,12/02/19 17:59,"233 Johnson St, Seattle, WA 98101" +318526,Lightning Charging Cable,1,14.95,12/21/19 14:07,"864 Walnut St, Boston, MA 02215" +318527,AAA Batteries (4-pack),1,2.99,12/16/19 20:32,"445 Madison St, Portland, OR 97035" +318528,Lightning Charging Cable,1,14.95,12/16/19 21:42,"297 10th St, New York City, NY 10001" +318529,Lightning Charging Cable,1,14.95,12/06/19 11:07,"770 Dogwood St, Atlanta, GA 30301" +318529,Wired Headphones,1,11.99,12/06/19 11:07,"770 Dogwood St, Atlanta, GA 30301" +318530,USB-C Charging Cable,1,11.95,12/22/19 20:39,"793 5th St, New York City, NY 10001" +318531,Apple Airpods Headphones,1,150,12/05/19 13:15,"195 2nd St, Boston, MA 02215" +318532,Wired Headphones,2,11.99,12/10/19 19:55,"595 1st St, San Francisco, CA 94016" +318533,USB-C Charging Cable,1,11.95,12/28/19 05:20,"926 6th St, San Francisco, CA 94016" +318534,AA Batteries (4-pack),1,3.84,12/30/19 10:32,"155 Church St, Boston, MA 02215" +318534,AA Batteries (4-pack),1,3.84,12/30/19 10:32,"155 Church St, Boston, MA 02215" +318535,Google Phone,1,600,12/27/19 21:49,"99 Cedar St, New York City, NY 10001" +318536,Apple Airpods Headphones,1,150,12/13/19 15:53,"308 Willow St, New York City, NY 10001" +318537,Bose SoundSport Headphones,1,99.99,12/04/19 19:27,"858 5th St, New York City, NY 10001" +318538,Lightning Charging Cable,1,14.95,12/24/19 19:27,"396 Washington St, Atlanta, GA 30301" +318539,iPhone,1,700,12/30/19 15:09,"799 7th St, San Francisco, CA 94016" +318540,Bose SoundSport Headphones,1,99.99,12/04/19 14:41,"693 West St, Dallas, TX 75001" +318541,Apple Airpods Headphones,1,150,12/05/19 09:33,"665 Hill St, San Francisco, CA 94016" +318542,AA Batteries (4-pack),1,3.84,12/09/19 22:52,"684 South St, San Francisco, CA 94016" +318543,27in FHD Monitor,1,149.99,12/27/19 00:25,"558 9th St, Seattle, WA 98101" +318544,Bose SoundSport Headphones,1,99.99,12/07/19 19:04,"754 North St, Atlanta, GA 30301" +318545,AA Batteries (4-pack),1,3.84,12/12/19 11:24,"387 Lake St, Los Angeles, CA 90001" +318546,USB-C Charging Cable,1,11.95,12/25/19 20:57,"22 6th St, Seattle, WA 98101" +318547,USB-C Charging Cable,1,11.95,12/12/19 17:57,"731 Spruce St, Los Angeles, CA 90001" +318548,Wired Headphones,1,11.99,12/07/19 19:43,"36 Dogwood St, San Francisco, CA 94016" +318549,Google Phone,1,600,12/27/19 23:07,"309 Park St, New York City, NY 10001" +318550,Apple Airpods Headphones,1,150,12/17/19 19:47,"633 Meadow St, Atlanta, GA 30301" +318551,27in FHD Monitor,1,149.99,12/31/19 00:54,"433 Walnut St, Dallas, TX 75001" +318552,USB-C Charging Cable,1,11.95,12/12/19 08:18,"400 West St, Los Angeles, CA 90001" +318553,AAA Batteries (4-pack),4,2.99,12/11/19 07:33,"400 Cherry St, Seattle, WA 98101" +318554,USB-C Charging Cable,1,11.95,12/31/19 09:49,"849 Cedar St, Los Angeles, CA 90001" +318555,AAA Batteries (4-pack),1,2.99,12/06/19 22:09,"277 Dogwood St, Austin, TX 73301" +318556,USB-C Charging Cable,1,11.95,12/26/19 07:45,"998 River St, Seattle, WA 98101" +318557,Flatscreen TV,1,300,12/09/19 19:32,"183 Lakeview St, San Francisco, CA 94016" +318558,USB-C Charging Cable,1,11.95,12/13/19 23:44,"759 6th St, New York City, NY 10001" +318559,iPhone,1,700,12/10/19 13:21,"248 Main St, Portland, OR 97035" +318559,Wired Headphones,1,11.99,12/10/19 13:21,"248 Main St, Portland, OR 97035" +318560,AAA Batteries (4-pack),1,2.99,12/23/19 11:17,"216 Lakeview St, Seattle, WA 98101" +318561,Macbook Pro Laptop,1,1700,12/31/19 21:01,"460 7th St, New York City, NY 10001" +318562,AA Batteries (4-pack),1,3.84,12/12/19 19:04,"407 West St, Portland, OR 97035" +318563,AA Batteries (4-pack),2,3.84,12/31/19 08:54,"931 2nd St, Atlanta, GA 30301" +318564,USB-C Charging Cable,2,11.95,12/06/19 02:54,"47 Walnut St, Seattle, WA 98101" +318565,Bose SoundSport Headphones,1,99.99,12/28/19 17:28,"348 Hill St, New York City, NY 10001" +318566,USB-C Charging Cable,1,11.95,12/28/19 21:52,"253 11th St, Austin, TX 73301" +318567,Vareebadd Phone,1,400,12/28/19 23:35,"982 Center St, New York City, NY 10001" +318567,USB-C Charging Cable,1,11.95,12/28/19 23:35,"982 Center St, New York City, NY 10001" +318568,27in 4K Gaming Monitor,1,389.99,12/12/19 09:34,"841 2nd St, Dallas, TX 75001" +318569,AAA Batteries (4-pack),3,2.99,12/24/19 19:38,"891 Lakeview St, New York City, NY 10001" +318570,AA Batteries (4-pack),1,3.84,12/28/19 08:48,"891 Wilson St, Portland, OR 97035" +318571,iPhone,1,700,12/24/19 19:15,"90 13th St, Boston, MA 02215" +318571,Lightning Charging Cable,2,14.95,12/24/19 19:15,"90 13th St, Boston, MA 02215" +318571,Wired Headphones,1,11.99,12/24/19 19:15,"90 13th St, Boston, MA 02215" +318572,AA Batteries (4-pack),1,3.84,12/24/19 19:49,"136 Elm St, Dallas, TX 75001" +318573,AA Batteries (4-pack),1,3.84,12/02/19 13:32,"406 Jackson St, Dallas, TX 75001" +318574,AAA Batteries (4-pack),2,2.99,12/03/19 19:06,"44 Washington St, Atlanta, GA 30301" +318575,USB-C Charging Cable,1,11.95,12/02/19 02:58,"848 Meadow St, Dallas, TX 75001" +318576,Vareebadd Phone,1,400,12/29/19 23:04,"444 2nd St, San Francisco, CA 94016" +318576,Bose SoundSport Headphones,1,99.99,12/29/19 23:04,"444 2nd St, San Francisco, CA 94016" +318577,Apple Airpods Headphones,1,150,12/10/19 06:49,"279 Chestnut St, Austin, TX 73301" +318578,Lightning Charging Cable,2,14.95,12/22/19 10:29,"94 Lake St, Boston, MA 02215" +318579,Wired Headphones,1,11.99,12/09/19 12:19,"733 Dogwood St, San Francisco, CA 94016" +318580,Apple Airpods Headphones,1,150,12/21/19 12:39,"804 1st St, Atlanta, GA 30301" +318581,Lightning Charging Cable,1,14.95,12/11/19 20:54,"384 Jackson St, Seattle, WA 98101" +318582,AA Batteries (4-pack),1,3.84,12/04/19 00:35,"271 Willow St, Los Angeles, CA 90001" +318583,Lightning Charging Cable,1,14.95,12/11/19 17:52,"773 Hill St, San Francisco, CA 94016" +318584,27in FHD Monitor,1,149.99,12/30/19 12:37,"436 Meadow St, San Francisco, CA 94016" +318585,AA Batteries (4-pack),1,3.84,12/03/19 20:51,"609 6th St, Portland, OR 97035" +318586,LG Dryer,1,600.0,12/09/19 15:36,"708 Church St, New York City, NY 10001" +318587,AA Batteries (4-pack),2,3.84,12/26/19 22:59,"868 Adams St, Los Angeles, CA 90001" +318588,AAA Batteries (4-pack),3,2.99,12/14/19 20:13,"741 Pine St, San Francisco, CA 94016" +318589,Lightning Charging Cable,1,14.95,12/06/19 09:22,"904 Chestnut St, San Francisco, CA 94016" +318590,Wired Headphones,2,11.99,12/25/19 18:06,"579 Cedar St, San Francisco, CA 94016" +318591,27in FHD Monitor,1,149.99,12/22/19 20:25,"453 Highland St, San Francisco, CA 94016" +318592,AA Batteries (4-pack),1,3.84,12/28/19 18:20,"156 Elm St, New York City, NY 10001" +318593,27in FHD Monitor,1,149.99,12/23/19 19:24,"641 9th St, San Francisco, CA 94016" +318594,AAA Batteries (4-pack),1,2.99,12/30/19 20:27,"230 Highland St, San Francisco, CA 94016" +318595,AA Batteries (4-pack),1,3.84,12/01/19 22:12,"362 Lincoln St, New York City, NY 10001" +318596,USB-C Charging Cable,1,11.95,12/20/19 14:44,"166 West St, San Francisco, CA 94016" +318597,Flatscreen TV,1,300,12/09/19 07:52,"541 7th St, New York City, NY 10001" +318598,Bose SoundSport Headphones,1,99.99,12/31/19 20:47,"917 Lakeview St, Los Angeles, CA 90001" +318599,27in FHD Monitor,1,149.99,12/06/19 18:15,"528 Washington St, San Francisco, CA 94016" +318600,AAA Batteries (4-pack),2,2.99,12/22/19 11:16,"191 Washington St, Dallas, TX 75001" +318601,Bose SoundSport Headphones,1,99.99,12/29/19 15:58,"559 Main St, Atlanta, GA 30301" +318602,Bose SoundSport Headphones,1,99.99,12/09/19 01:30,"541 5th St, Los Angeles, CA 90001" +318603,AAA Batteries (4-pack),1,2.99,12/06/19 22:25,"67 2nd St, San Francisco, CA 94016" +318604,Wired Headphones,1,11.99,12/18/19 11:42,"73 Willow St, Los Angeles, CA 90001" +318605,USB-C Charging Cable,1,11.95,12/03/19 00:55,"939 Jackson St, Atlanta, GA 30301" +318606,USB-C Charging Cable,1,11.95,12/18/19 07:34,"455 Ridge St, San Francisco, CA 94016" +318607,Lightning Charging Cable,1,14.95,12/26/19 14:57,"65 Pine St, Los Angeles, CA 90001" +318608,Bose SoundSport Headphones,1,99.99,12/28/19 17:47,"431 Center St, Dallas, TX 75001" +318609,AAA Batteries (4-pack),1,2.99,12/02/19 13:32,"569 Madison St, Austin, TX 73301" +318609,AAA Batteries (4-pack),2,2.99,12/02/19 13:32,"569 Madison St, Austin, TX 73301" +318610,Wired Headphones,1,11.99,12/16/19 22:24,"212 4th St, San Francisco, CA 94016" +318611,Wired Headphones,1,11.99,12/06/19 10:24,"510 2nd St, San Francisco, CA 94016" +318612,Wired Headphones,2,11.99,12/20/19 17:17,"23 Wilson St, Dallas, TX 75001" +318613,AA Batteries (4-pack),1,3.84,12/24/19 17:31,"87 7th St, Dallas, TX 75001" +318614,Flatscreen TV,1,300,12/31/19 14:08,"866 Meadow St, Austin, TX 73301" +318615,AA Batteries (4-pack),1,3.84,12/18/19 18:56,"628 Madison St, San Francisco, CA 94016" +318616,AAA Batteries (4-pack),1,2.99,12/09/19 00:06,"935 13th St, Boston, MA 02215" +318617,AAA Batteries (4-pack),1,2.99,12/09/19 10:34,"88 Elm St, Los Angeles, CA 90001" +318618,Lightning Charging Cable,1,14.95,12/04/19 15:39,"426 Spruce St, New York City, NY 10001" +318619,Lightning Charging Cable,1,14.95,12/26/19 11:16,"621 Dogwood St, Dallas, TX 75001" +318620,AA Batteries (4-pack),1,3.84,12/23/19 21:46,"149 South St, Austin, TX 73301" +318621,USB-C Charging Cable,1,11.95,12/31/19 23:07,"337 Lake St, Boston, MA 02215" +318622,Lightning Charging Cable,1,14.95,12/21/19 16:15,"552 West St, New York City, NY 10001" +318623,Google Phone,1,600,12/21/19 13:13,"44 Pine St, Portland, OR 97035" +318623,Wired Headphones,1,11.99,12/21/19 13:13,"44 Pine St, Portland, OR 97035" +318624,Lightning Charging Cable,1,14.95,12/16/19 12:57,"427 Lakeview St, San Francisco, CA 94016" +318625,Macbook Pro Laptop,1,1700,12/07/19 22:00,"279 Church St, San Francisco, CA 94016" +318626,Bose SoundSport Headphones,1,99.99,12/17/19 08:27,"245 Park St, Los Angeles, CA 90001" +318627,AA Batteries (4-pack),1,3.84,12/04/19 04:22,"890 Forest St, Boston, MA 02215" +318628,27in FHD Monitor,1,149.99,12/10/19 13:44,"842 Wilson St, New York City, NY 10001" +318629,Lightning Charging Cable,1,14.95,12/03/19 13:05,"805 Cherry St, New York City, NY 10001" +318630,Macbook Pro Laptop,1,1700,12/23/19 12:19,"11 Center St, Los Angeles, CA 90001" +318631,Lightning Charging Cable,1,14.95,12/15/19 18:26,"219 4th St, Los Angeles, CA 90001" +318632,Google Phone,1,600,12/01/19 22:04,"508 Lincoln St, Dallas, TX 75001" +318633,AA Batteries (4-pack),1,3.84,12/17/19 07:50,"709 Willow St, San Francisco, CA 94016" +318634,Macbook Pro Laptop,1,1700,12/28/19 15:49,"339 10th St, Atlanta, GA 30301" +318634,iPhone,1,700,12/28/19 15:49,"339 10th St, Atlanta, GA 30301" +318635,USB-C Charging Cable,1,11.95,12/27/19 16:57,"693 Hickory St, Los Angeles, CA 90001" +318636,Apple Airpods Headphones,1,150,12/09/19 19:53,"827 10th St, New York City, NY 10001" +318637,Apple Airpods Headphones,1,150,12/11/19 18:16,"965 Ridge St, Seattle, WA 98101" +318638,Flatscreen TV,1,300,12/25/19 01:03,"25 Center St, New York City, NY 10001" +318638,Flatscreen TV,1,300,12/25/19 01:03,"25 Center St, New York City, NY 10001" +318639,iPhone,1,700,12/27/19 13:17,"486 4th St, Seattle, WA 98101" +318640,USB-C Charging Cable,1,11.95,12/17/19 15:03,"869 6th St, Boston, MA 02215" +318641,Macbook Pro Laptop,1,1700,12/29/19 00:07,"299 13th St, Austin, TX 73301" +318642,AA Batteries (4-pack),1,3.84,12/23/19 13:36,"374 Hill St, San Francisco, CA 94016" +318643,AA Batteries (4-pack),4,3.84,12/07/19 00:15,"713 Chestnut St, San Francisco, CA 94016" +318643,27in FHD Monitor,1,149.99,12/07/19 00:15,"713 Chestnut St, San Francisco, CA 94016" +318644,iPhone,1,700,12/18/19 12:35,"28 Church St, New York City, NY 10001" +318645,Lightning Charging Cable,1,14.95,12/15/19 11:55,"71 Cedar St, Seattle, WA 98101" +318646,Bose SoundSport Headphones,1,99.99,12/03/19 14:18,"820 Park St, Boston, MA 02215" +318647,USB-C Charging Cable,1,11.95,12/07/19 10:34,"797 7th St, Portland, OR 97035" +318648,27in 4K Gaming Monitor,1,389.99,12/05/19 20:17,"20 Elm St, Dallas, TX 75001" +318649,AA Batteries (4-pack),1,3.84,12/30/19 18:27,"208 Lincoln St, New York City, NY 10001" +318650,Apple Airpods Headphones,1,150,12/03/19 23:28,"438 River St, Boston, MA 02215" +318651,Flatscreen TV,1,300,12/12/19 15:50,"873 Highland St, San Francisco, CA 94016" +318652,Lightning Charging Cable,1,14.95,12/24/19 11:30,"540 Madison St, Los Angeles, CA 90001" +318653,20in Monitor,1,109.99,12/14/19 23:30,"258 Center St, Dallas, TX 75001" +318654,USB-C Charging Cable,1,11.95,12/13/19 13:35,"167 6th St, Austin, TX 73301" +318655,AA Batteries (4-pack),1,3.84,12/31/19 20:39,"151 1st St, Los Angeles, CA 90001" +318656,34in Ultrawide Monitor,1,379.99,12/01/19 13:19,"896 13th St, New York City, NY 10001" +318657,Wired Headphones,1,11.99,12/25/19 10:48,"685 Madison St, Los Angeles, CA 90001" +318658,Lightning Charging Cable,1,14.95,12/20/19 14:14,"969 Wilson St, San Francisco, CA 94016" +318659,AA Batteries (4-pack),1,3.84,12/27/19 14:36,"57 Maple St, Los Angeles, CA 90001" +318660,AA Batteries (4-pack),1,3.84,12/24/19 13:56,"734 Highland St, New York City, NY 10001" +318660,Google Phone,1,600,12/24/19 13:56,"734 Highland St, New York City, NY 10001" +318661,Apple Airpods Headphones,1,150,12/06/19 13:07,"52 Center St, San Francisco, CA 94016" +318662,USB-C Charging Cable,1,11.95,12/30/19 18:53,"611 Adams St, Seattle, WA 98101" +318663,USB-C Charging Cable,1,11.95,12/17/19 02:32,"910 2nd St, Atlanta, GA 30301" +318664,34in Ultrawide Monitor,1,379.99,12/07/19 13:44,"469 8th St, San Francisco, CA 94016" +318665,AA Batteries (4-pack),1,3.84,12/18/19 09:21,"471 Main St, Atlanta, GA 30301" +318666,Wired Headphones,1,11.99,12/26/19 16:43,"347 Johnson St, Dallas, TX 75001" +318667,Lightning Charging Cable,1,14.95,12/27/19 10:58,"542 6th St, Los Angeles, CA 90001" +318668,USB-C Charging Cable,1,11.95,12/12/19 07:04,"520 Church St, New York City, NY 10001" +318669,20in Monitor,1,109.99,12/01/19 15:37,"364 Hill St, Boston, MA 02215" +318670,USB-C Charging Cable,1,11.95,12/23/19 13:06,"77 13th St, Boston, MA 02215" +318671,Apple Airpods Headphones,1,150,12/03/19 21:51,"172 Hickory St, Dallas, TX 75001" +318672,Wired Headphones,1,11.99,12/17/19 10:16,"330 Washington St, Boston, MA 02215" +318673,Apple Airpods Headphones,1,150,12/01/19 12:19,"300 13th St, Los Angeles, CA 90001" +318674,27in FHD Monitor,1,149.99,12/07/19 00:05,"780 Ridge St, Los Angeles, CA 90001" +318675,Apple Airpods Headphones,1,150,12/18/19 15:21,"928 6th St, Seattle, WA 98101" +318676,AAA Batteries (4-pack),2,2.99,12/30/19 15:36,"396 Jefferson St, Los Angeles, CA 90001" +318677,AAA Batteries (4-pack),1,2.99,12/08/19 19:51,"277 2nd St, San Francisco, CA 94016" +318678,Google Phone,1,600,12/02/19 18:51,"462 Ridge St, San Francisco, CA 94016" +318679,AAA Batteries (4-pack),1,2.99,12/28/19 11:42,"908 4th St, New York City, NY 10001" +318680,Apple Airpods Headphones,1,150,12/19/19 15:25,"9 Highland St, San Francisco, CA 94016" +318681,USB-C Charging Cable,1,11.95,12/19/19 15:33,"920 10th St, Los Angeles, CA 90001" +318682,USB-C Charging Cable,1,11.95,12/16/19 21:31,"797 Sunset St, Los Angeles, CA 90001" +318683,Wired Headphones,1,11.99,12/03/19 20:44,"861 1st St, Seattle, WA 98101" +318684,AA Batteries (4-pack),3,3.84,12/12/19 10:38,"239 Lake St, New York City, NY 10001" +318685,Bose SoundSport Headphones,1,99.99,12/08/19 21:25,"331 Madison St, Seattle, WA 98101" +318686,Lightning Charging Cable,1,14.95,12/26/19 19:49,"353 North St, Boston, MA 02215" +318687,Bose SoundSport Headphones,1,99.99,12/25/19 15:39,"80 Sunset St, Boston, MA 02215" +318688,Wired Headphones,1,11.99,12/31/19 12:00,"293 North St, Seattle, WA 98101" +318689,Wired Headphones,1,11.99,12/06/19 20:23,"979 Cedar St, San Francisco, CA 94016" +318690,AAA Batteries (4-pack),1,2.99,12/13/19 14:56,"553 Wilson St, San Francisco, CA 94016" +318691,Apple Airpods Headphones,1,150,12/23/19 10:05,"136 Meadow St, San Francisco, CA 94016" +318692,Lightning Charging Cable,1,14.95,12/19/19 21:42,"386 Walnut St, Los Angeles, CA 90001" +318693,USB-C Charging Cable,1,11.95,12/11/19 21:48,"574 Sunset St, Los Angeles, CA 90001" +318694,Bose SoundSport Headphones,1,99.99,12/11/19 13:40,"868 Pine St, Los Angeles, CA 90001" +318695,Lightning Charging Cable,1,14.95,12/27/19 08:45,"56 Jackson St, Los Angeles, CA 90001" +318696,Google Phone,1,600,12/17/19 12:55,"707 10th St, San Francisco, CA 94016" +318697,AAA Batteries (4-pack),1,2.99,12/10/19 10:10,"405 12th St, Portland, OR 97035" +318698,27in 4K Gaming Monitor,1,389.99,12/31/19 20:06,"184 Sunset St, Seattle, WA 98101" +318699,27in FHD Monitor,1,149.99,12/30/19 20:39,"301 11th St, San Francisco, CA 94016" +318700,Apple Airpods Headphones,1,150,12/27/19 20:44,"904 Washington St, New York City, NY 10001" +318701,AA Batteries (4-pack),2,3.84,12/15/19 12:50,"517 9th St, Seattle, WA 98101" +318702,ThinkPad Laptop,1,999.99,12/14/19 10:16,"642 Washington St, Atlanta, GA 30301" +318703,iPhone,1,700,12/15/19 10:13,"709 Dogwood St, Atlanta, GA 30301" +318703,Apple Airpods Headphones,1,150,12/15/19 10:13,"709 Dogwood St, Atlanta, GA 30301" +318704,Google Phone,1,600,12/29/19 07:47,"766 Jackson St, New York City, NY 10001" +318704,USB-C Charging Cable,1,11.95,12/29/19 07:47,"766 Jackson St, New York City, NY 10001" +318705,Lightning Charging Cable,1,14.95,12/29/19 06:23,"224 Church St, Portland, ME 04101" +318706,USB-C Charging Cable,1,11.95,12/27/19 13:48,"315 Chestnut St, Atlanta, GA 30301" +318707,USB-C Charging Cable,2,11.95,12/20/19 16:21,"717 11th St, San Francisco, CA 94016" +318708,AAA Batteries (4-pack),1,2.99,12/05/19 20:03,"767 West St, New York City, NY 10001" +318709,Wired Headphones,1,11.99,12/25/19 23:24,"537 Park St, Los Angeles, CA 90001" +318710,AAA Batteries (4-pack),2,2.99,12/06/19 12:21,"797 Hickory St, Atlanta, GA 30301" +318711,iPhone,1,700,12/02/19 11:01,"644 Dogwood St, San Francisco, CA 94016" +318712,AAA Batteries (4-pack),2,2.99,12/06/19 21:53,"997 Cherry St, New York City, NY 10001" +318713,Bose SoundSport Headphones,2,99.99,12/14/19 08:56,"172 Washington St, New York City, NY 10001" +318714,AAA Batteries (4-pack),2,2.99,12/19/19 11:16,"774 Hickory St, Atlanta, GA 30301" +318715,Wired Headphones,1,11.99,12/11/19 19:26,"767 South St, San Francisco, CA 94016" +318716,20in Monitor,1,109.99,12/23/19 02:20,"287 Lincoln St, San Francisco, CA 94016" +318717,Google Phone,1,600,12/17/19 16:41,"950 Johnson St, San Francisco, CA 94016" +318718,Wired Headphones,1,11.99,12/29/19 07:46,"249 Forest St, Seattle, WA 98101" +318719,USB-C Charging Cable,1,11.95,12/23/19 08:08,"31 Church St, Seattle, WA 98101" +318720,Google Phone,1,600,12/30/19 13:36,"27 South St, Los Angeles, CA 90001" +318721,Apple Airpods Headphones,1,150,12/22/19 13:27,"191 Willow St, Atlanta, GA 30301" +318722,Lightning Charging Cable,1,14.95,12/30/19 14:20,"438 North St, Los Angeles, CA 90001" +318723,iPhone,1,700,12/20/19 16:30,"711 Wilson St, Dallas, TX 75001" +318724,20in Monitor,1,109.99,12/04/19 22:18,"947 2nd St, Seattle, WA 98101" +318725,USB-C Charging Cable,1,11.95,12/02/19 10:38,"571 Main St, San Francisco, CA 94016" +318726,27in 4K Gaming Monitor,1,389.99,12/14/19 13:54,"992 Jackson St, San Francisco, CA 94016" +318727,Apple Airpods Headphones,1,150,12/11/19 08:38,"191 Chestnut St, Portland, OR 97035" +318728,20in Monitor,1,109.99,12/08/19 14:02,"484 Church St, San Francisco, CA 94016" +318729,iPhone,1,700,12/03/19 14:58,"108 14th St, Los Angeles, CA 90001" +318730,Apple Airpods Headphones,1,150,12/10/19 14:17,"346 Highland St, Los Angeles, CA 90001" +318731,Google Phone,1,600,12/21/19 11:52,"612 6th St, Austin, TX 73301" +318732,USB-C Charging Cable,1,11.95,12/24/19 10:16,"661 Chestnut St, New York City, NY 10001" +318733,Lightning Charging Cable,1,14.95,12/21/19 11:13,"69 Jackson St, Dallas, TX 75001" +318734,iPhone,1,700,12/17/19 06:00,"558 Chestnut St, Austin, TX 73301" +318735,USB-C Charging Cable,1,11.95,12/04/19 01:36,"193 1st St, Boston, MA 02215" +318736,Google Phone,1,600,12/19/19 22:02,"24 Center St, Dallas, TX 75001" +318737,iPhone,1,700,12/03/19 01:08,"249 10th St, Austin, TX 73301" +318738,27in FHD Monitor,1,149.99,12/15/19 15:07,"149 Lakeview St, San Francisco, CA 94016" +318739,34in Ultrawide Monitor,1,379.99,12/11/19 15:08,"761 9th St, Portland, OR 97035" +318740,ThinkPad Laptop,1,999.99,12/29/19 13:16,"717 11th St, Los Angeles, CA 90001" +318741,Lightning Charging Cable,1,14.95,12/07/19 18:16,"941 Jefferson St, San Francisco, CA 94016" +318742,Vareebadd Phone,1,400,12/03/19 17:00,"985 13th St, New York City, NY 10001" +318743,AA Batteries (4-pack),2,3.84,12/31/19 10:49,"726 Church St, Los Angeles, CA 90001" +318744,AA Batteries (4-pack),1,3.84,12/07/19 16:37,"827 12th St, Dallas, TX 75001" +318745,27in 4K Gaming Monitor,1,389.99,12/09/19 11:44,"763 North St, Los Angeles, CA 90001" +318746,Lightning Charging Cable,1,14.95,12/10/19 21:45,"46 6th St, Austin, TX 73301" +318747,USB-C Charging Cable,1,11.95,12/10/19 16:15,"700 Lincoln St, Portland, OR 97035" +318748,34in Ultrawide Monitor,1,379.99,12/26/19 13:03,"289 Jefferson St, San Francisco, CA 94016" +318749,27in 4K Gaming Monitor,1,389.99,12/15/19 11:14,"345 Maple St, Boston, MA 02215" +318750,Lightning Charging Cable,1,14.95,12/16/19 09:26,"608 Lincoln St, Dallas, TX 75001" +318751,Wired Headphones,1,11.99,12/22/19 11:00,"424 River St, Portland, OR 97035" +318752,27in FHD Monitor,1,149.99,12/27/19 19:58,"931 7th St, Portland, OR 97035" +318753,Wired Headphones,1,11.99,12/12/19 09:04,"70 Sunset St, Portland, OR 97035" +318754,Lightning Charging Cable,1,14.95,12/28/19 20:42,"678 2nd St, Dallas, TX 75001" +318755,Apple Airpods Headphones,1,150,12/03/19 16:24,"408 Pine St, New York City, NY 10001" +318756,20in Monitor,2,109.99,12/21/19 14:19,"811 2nd St, San Francisco, CA 94016" +318757,AA Batteries (4-pack),1,3.84,12/17/19 19:49,"100 13th St, Seattle, WA 98101" +318758,USB-C Charging Cable,1,11.95,12/01/19 19:42,"788 Center St, Austin, TX 73301" +318759,AAA Batteries (4-pack),1,2.99,12/23/19 11:00,"268 Maple St, San Francisco, CA 94016" +318760,Apple Airpods Headphones,1,150,12/05/19 11:27,"762 Washington St, Dallas, TX 75001" +318760,Bose SoundSport Headphones,1,99.99,12/05/19 11:27,"762 Washington St, Dallas, TX 75001" +318761,Bose SoundSport Headphones,1,99.99,12/22/19 12:21,"579 Maple St, Seattle, WA 98101" +318762,Google Phone,1,600,12/11/19 14:50,"127 Lakeview St, Seattle, WA 98101" +318763,AAA Batteries (4-pack),4,2.99,12/20/19 16:17,"187 Church St, Seattle, WA 98101" +318764,AA Batteries (4-pack),2,3.84,12/19/19 15:11,"243 Madison St, Portland, OR 97035" +318765,Lightning Charging Cable,1,14.95,12/01/19 14:00,"428 Wilson St, San Francisco, CA 94016" +318766,Lightning Charging Cable,1,14.95,12/31/19 19:41,"857 Jackson St, San Francisco, CA 94016" +318767,USB-C Charging Cable,1,11.95,12/24/19 18:21,"397 11th St, Seattle, WA 98101" +318768,LG Dryer,1,600.0,12/31/19 15:30,"238 Cedar St, Austin, TX 73301" +318769,Flatscreen TV,1,300,12/05/19 22:50,"898 Elm St, San Francisco, CA 94016" +318770,Bose SoundSport Headphones,1,99.99,12/26/19 02:27,"270 Willow St, Seattle, WA 98101" +318771,Apple Airpods Headphones,1,150,12/28/19 21:37,"490 Lake St, Seattle, WA 98101" +318772,20in Monitor,1,109.99,12/24/19 14:13,"641 Chestnut St, New York City, NY 10001" +318773,AA Batteries (4-pack),1,3.84,12/15/19 00:03,"786 Jackson St, Dallas, TX 75001" +318774,Wired Headphones,1,11.99,12/16/19 18:16,"830 Park St, Boston, MA 02215" +318775,AA Batteries (4-pack),1,3.84,12/31/19 22:19,"260 North St, Portland, OR 97035" +318776,Apple Airpods Headphones,1,150,12/20/19 11:52,"527 Dogwood St, San Francisco, CA 94016" +318777,Apple Airpods Headphones,1,150,12/25/19 21:25,"559 Chestnut St, Atlanta, GA 30301" +318778,Bose SoundSport Headphones,1,99.99,12/06/19 14:08,"945 7th St, Seattle, WA 98101" +318779,iPhone,1,700,12/27/19 19:54,"513 Washington St, Atlanta, GA 30301" +318780,Bose SoundSport Headphones,1,99.99,12/31/19 18:18,"289 Madison St, Dallas, TX 75001" +318781,AA Batteries (4-pack),1,3.84,12/20/19 20:01,"830 Jefferson St, Austin, TX 73301" +318782,AA Batteries (4-pack),1,3.84,12/29/19 15:37,"119 Ridge St, Seattle, WA 98101" +318783,34in Ultrawide Monitor,1,379.99,12/13/19 17:12,"46 1st St, San Francisco, CA 94016" +318784,AA Batteries (4-pack),2,3.84,12/13/19 16:45,"587 13th St, Dallas, TX 75001" +318785,Wired Headphones,1,11.99,12/26/19 08:59,"627 Adams St, New York City, NY 10001" +318786,34in Ultrawide Monitor,1,379.99,12/16/19 13:36,"784 Lake St, Seattle, WA 98101" +318787,AAA Batteries (4-pack),1,2.99,12/31/19 21:51,"464 Highland St, New York City, NY 10001" +318788,34in Ultrawide Monitor,1,379.99,12/13/19 13:17,"804 Walnut St, New York City, NY 10001" +318789,AA Batteries (4-pack),1,3.84,12/26/19 16:52,"691 Jackson St, Dallas, TX 75001" +318790,AAA Batteries (4-pack),1,2.99,12/31/19 19:01,"986 Hill St, New York City, NY 10001" +318791,Flatscreen TV,1,300,12/05/19 18:44,"546 Hickory St, Portland, OR 97035" +318792,AAA Batteries (4-pack),1,2.99,12/05/19 19:33,"588 Madison St, Los Angeles, CA 90001" +318793,iPhone,1,700,12/31/19 19:19,"209 Lakeview St, Boston, MA 02215" +318793,Lightning Charging Cable,1,14.95,12/31/19 19:19,"209 Lakeview St, Boston, MA 02215" +318794,AAA Batteries (4-pack),1,2.99,12/29/19 13:50,"656 Hill St, Boston, MA 02215" +318795,AA Batteries (4-pack),2,3.84,12/03/19 20:26,"371 8th St, Austin, TX 73301" +318796,Apple Airpods Headphones,1,150,12/06/19 17:23,"222 12th St, New York City, NY 10001" +318797,Wired Headphones,1,11.99,12/27/19 14:18,"573 Jefferson St, Atlanta, GA 30301" +318798,Apple Airpods Headphones,1,150,12/29/19 15:24,"528 West St, Boston, MA 02215" +318799,AAA Batteries (4-pack),1,2.99,12/16/19 19:38,"379 Lakeview St, Seattle, WA 98101" +318800,AA Batteries (4-pack),3,3.84,12/11/19 13:47,"672 7th St, Austin, TX 73301" +318801,AAA Batteries (4-pack),3,2.99,12/31/19 12:25,"287 Chestnut St, Atlanta, GA 30301" +318802,Google Phone,1,600,12/14/19 09:53,"684 Forest St, New York City, NY 10001" +318802,Wired Headphones,1,11.99,12/14/19 09:53,"684 Forest St, New York City, NY 10001" +318803,Lightning Charging Cable,1,14.95,12/03/19 15:06,"149 7th St, Los Angeles, CA 90001" +318804,USB-C Charging Cable,1,11.95,12/18/19 13:20,"745 Dogwood St, Seattle, WA 98101" +318805,Apple Airpods Headphones,1,150,12/11/19 09:05,"873 Jefferson St, Atlanta, GA 30301" +318806,Lightning Charging Cable,1,14.95,12/07/19 23:04,"193 9th St, Los Angeles, CA 90001" +318807,34in Ultrawide Monitor,1,379.99,12/16/19 12:06,"56 Wilson St, Los Angeles, CA 90001" +318808,iPhone,1,700,12/24/19 14:31,"661 10th St, New York City, NY 10001" +318809,34in Ultrawide Monitor,1,379.99,12/09/19 10:35,"783 River St, New York City, NY 10001" +318810,AAA Batteries (4-pack),1,2.99,12/15/19 19:34,"90 5th St, Atlanta, GA 30301" +318811,USB-C Charging Cable,1,11.95,12/19/19 12:14,"65 Lincoln St, Atlanta, GA 30301" +318812,USB-C Charging Cable,1,11.95,12/03/19 15:28,"36 North St, Dallas, TX 75001" +318813,USB-C Charging Cable,1,11.95,12/09/19 17:50,"532 Meadow St, Seattle, WA 98101" +318814,Bose SoundSport Headphones,1,99.99,12/03/19 13:01,"33 Cedar St, Boston, MA 02215" +318815,AA Batteries (4-pack),1,3.84,12/17/19 13:46,"161 9th St, Atlanta, GA 30301" +318816,AA Batteries (4-pack),1,3.84,12/22/19 20:14,"176 Forest St, San Francisco, CA 94016" +318817,AA Batteries (4-pack),1,3.84,12/29/19 16:09,"858 Walnut St, Boston, MA 02215" +318818,AA Batteries (4-pack),1,3.84,12/25/19 10:09,"741 10th St, Austin, TX 73301" +318819,Lightning Charging Cable,2,14.95,12/05/19 06:12,"838 Spruce St, San Francisco, CA 94016" +318820,Wired Headphones,1,11.99,12/08/19 15:41,"814 River St, Dallas, TX 75001" +318821,Lightning Charging Cable,1,14.95,12/22/19 16:53,"410 Ridge St, Austin, TX 73301" +318822,Bose SoundSport Headphones,1,99.99,12/10/19 13:42,"608 Church St, Boston, MA 02215" +318823,AA Batteries (4-pack),1,3.84,12/30/19 12:02,"911 Hickory St, Portland, ME 04101" +318824,USB-C Charging Cable,1,11.95,12/30/19 19:54,"312 Park St, New York City, NY 10001" +318825,Wired Headphones,1,11.99,12/29/19 13:01,"210 Meadow St, Boston, MA 02215" +318826,AA Batteries (4-pack),1,3.84,12/18/19 16:36,"924 5th St, Los Angeles, CA 90001" +318827,AAA Batteries (4-pack),2,2.99,12/22/19 10:30,"759 Ridge St, San Francisco, CA 94016" +318828,Macbook Pro Laptop,1,1700,12/19/19 22:59,"746 12th St, Austin, TX 73301" +318829,34in Ultrawide Monitor,1,379.99,12/13/19 14:46,"866 Hill St, Dallas, TX 75001" +318830,USB-C Charging Cable,1,11.95,12/14/19 20:38,"821 6th St, Seattle, WA 98101" +318831,Bose SoundSport Headphones,1,99.99,12/13/19 08:47,"150 Church St, Atlanta, GA 30301" +318832,Lightning Charging Cable,1,14.95,12/02/19 15:36,"555 Ridge St, Dallas, TX 75001" +318833,Lightning Charging Cable,1,14.95,12/13/19 13:35,"300 11th St, Los Angeles, CA 90001" +318833,Lightning Charging Cable,1,14.95,12/13/19 13:35,"300 11th St, Los Angeles, CA 90001" +318834,20in Monitor,1,109.99,12/19/19 13:35,"92 Washington St, Austin, TX 73301" +318835,Wired Headphones,1,11.99,12/31/19 11:24,"126 Wilson St, San Francisco, CA 94016" +318836,AA Batteries (4-pack),1,3.84,12/01/19 17:37,"834 River St, Austin, TX 73301" +318837,Wired Headphones,2,11.99,12/20/19 20:44,"816 Adams St, Boston, MA 02215" +318838,AAA Batteries (4-pack),2,2.99,12/10/19 11:06,"499 Jackson St, Atlanta, GA 30301" +318839,AAA Batteries (4-pack),3,2.99,12/30/19 20:16,"940 Madison St, Boston, MA 02215" +318840,Flatscreen TV,1,300,12/27/19 19:11,"276 Elm St, Boston, MA 02215" +318841,Bose SoundSport Headphones,1,99.99,12/16/19 13:44,"417 6th St, San Francisco, CA 94016" +318842,USB-C Charging Cable,1,11.95,12/27/19 19:42,"652 12th St, Dallas, TX 75001" +318843,AA Batteries (4-pack),1,3.84,12/20/19 08:38,"81 5th St, Los Angeles, CA 90001" +318843,Lightning Charging Cable,1,14.95,12/20/19 08:38,"81 5th St, Los Angeles, CA 90001" +318844,Apple Airpods Headphones,1,150,12/31/19 14:59,"745 Madison St, Los Angeles, CA 90001" +318845,AAA Batteries (4-pack),1,2.99,12/10/19 11:50,"134 Spruce St, Portland, OR 97035" +318846,34in Ultrawide Monitor,1,379.99,12/16/19 17:07,"263 4th St, Austin, TX 73301" +318847,Flatscreen TV,1,300,12/30/19 14:59,"674 11th St, Boston, MA 02215" +318848,USB-C Charging Cable,1,11.95,12/22/19 21:16,"522 West St, San Francisco, CA 94016" +318849,USB-C Charging Cable,1,11.95,12/14/19 09:12,"737 Pine St, San Francisco, CA 94016" +318850,Google Phone,1,600,12/11/19 17:00,"671 River St, New York City, NY 10001" +318851,AAA Batteries (4-pack),1,2.99,12/16/19 08:14,"547 Wilson St, Atlanta, GA 30301" +318851,AAA Batteries (4-pack),1,2.99,12/16/19 08:14,"547 Wilson St, Atlanta, GA 30301" +318852,AAA Batteries (4-pack),3,2.99,12/09/19 13:16,"667 8th St, New York City, NY 10001" +318853,Wired Headphones,1,11.99,12/08/19 16:55,"226 South St, Los Angeles, CA 90001" +318854,USB-C Charging Cable,1,11.95,12/25/19 18:04,"443 Dogwood St, New York City, NY 10001" +318855,iPhone,1,700,12/17/19 15:08,"632 Highland St, Dallas, TX 75001" +318855,Lightning Charging Cable,1,14.95,12/17/19 15:08,"632 Highland St, Dallas, TX 75001" +318856,Apple Airpods Headphones,1,150,12/27/19 17:03,"864 Madison St, Dallas, TX 75001" +318857,Wired Headphones,1,11.99,12/06/19 20:06,"276 14th St, Dallas, TX 75001" +318858,Wired Headphones,2,11.99,12/03/19 05:07,"151 4th St, Atlanta, GA 30301" +318859,27in 4K Gaming Monitor,1,389.99,12/27/19 18:57,"951 Washington St, New York City, NY 10001" +318860,Lightning Charging Cable,1,14.95,12/29/19 15:48,"735 Walnut St, New York City, NY 10001" +318861,USB-C Charging Cable,1,11.95,12/24/19 17:04,"658 Jackson St, San Francisco, CA 94016" +318862,20in Monitor,1,109.99,12/18/19 22:12,"831 2nd St, Portland, OR 97035" +318863,AA Batteries (4-pack),1,3.84,12/13/19 14:25,"317 Pine St, Atlanta, GA 30301" +318864,USB-C Charging Cable,1,11.95,12/18/19 20:02,"112 1st St, Dallas, TX 75001" +318865,Lightning Charging Cable,1,14.95,12/17/19 14:42,"481 Walnut St, San Francisco, CA 94016" +318866,Bose SoundSport Headphones,1,99.99,12/23/19 22:58,"98 12th St, Boston, MA 02215" +318867,ThinkPad Laptop,1,999.99,12/11/19 15:34,"710 Lincoln St, Los Angeles, CA 90001" +318868,Wired Headphones,2,11.99,12/02/19 18:31,"121 Lincoln St, Dallas, TX 75001" +318869,iPhone,1,700,12/06/19 12:05,"688 Hickory St, Atlanta, GA 30301" +318870,27in 4K Gaming Monitor,1,389.99,12/11/19 09:33,"890 9th St, Austin, TX 73301" +318871,Apple Airpods Headphones,1,150,12/31/19 19:53,"505 Hickory St, San Francisco, CA 94016" +318872,27in FHD Monitor,1,149.99,12/01/19 09:10,"10 Chestnut St, Los Angeles, CA 90001" +318873,AAA Batteries (4-pack),1,2.99,12/06/19 07:45,"653 Main St, Austin, TX 73301" +318874,Lightning Charging Cable,1,14.95,12/09/19 20:37,"813 Jefferson St, Los Angeles, CA 90001" +318875,Bose SoundSport Headphones,1,99.99,12/15/19 11:53,"984 13th St, Boston, MA 02215" +318876,AAA Batteries (4-pack),2,2.99,12/16/19 17:40,"97 4th St, Atlanta, GA 30301" +318877,Lightning Charging Cable,1,14.95,12/21/19 08:07,"564 Johnson St, Los Angeles, CA 90001" +318878,USB-C Charging Cable,1,11.95,12/05/19 18:30,"287 Hill St, Boston, MA 02215" +318879,Lightning Charging Cable,1,14.95,12/07/19 17:16,"673 Dogwood St, Los Angeles, CA 90001" +318880,iPhone,1,700,12/29/19 13:57,"739 Madison St, New York City, NY 10001" +318880,Apple Airpods Headphones,1,150,12/29/19 13:57,"739 Madison St, New York City, NY 10001" +318881,USB-C Charging Cable,2,11.95,12/03/19 08:17,"641 Spruce St, Austin, TX 73301" +318882,AAA Batteries (4-pack),1,2.99,12/28/19 17:35,"37 4th St, Seattle, WA 98101" +318883,AAA Batteries (4-pack),1,2.99,12/03/19 12:04,"266 Lincoln St, Los Angeles, CA 90001" +318884,Lightning Charging Cable,1,14.95,12/25/19 11:11,"52 South St, San Francisco, CA 94016" +318885,34in Ultrawide Monitor,1,379.99,12/16/19 19:37,"328 Highland St, San Francisco, CA 94016" +318886,USB-C Charging Cable,1,11.95,12/06/19 18:34,"363 Walnut St, Los Angeles, CA 90001" +318887,20in Monitor,1,109.99,12/03/19 16:22,"563 Jefferson St, San Francisco, CA 94016" +318888,AA Batteries (4-pack),2,3.84,12/25/19 21:39,"329 Johnson St, Los Angeles, CA 90001" +318889,27in FHD Monitor,1,149.99,12/13/19 09:24,"833 Cherry St, Atlanta, GA 30301" +318890,Bose SoundSport Headphones,1,99.99,12/25/19 21:08,"628 Lake St, San Francisco, CA 94016" +318891,Lightning Charging Cable,1,14.95,12/09/19 07:27,"940 Church St, San Francisco, CA 94016" +318892,AAA Batteries (4-pack),1,2.99,12/09/19 12:25,"263 Pine St, New York City, NY 10001" +318893,Wired Headphones,1,11.99,12/23/19 16:33,"654 9th St, Austin, TX 73301" +318894,Apple Airpods Headphones,1,150,12/22/19 20:13,"932 2nd St, San Francisco, CA 94016" +318895,AAA Batteries (4-pack),1,2.99,12/14/19 12:30,"434 13th St, Boston, MA 02215" +318896,Lightning Charging Cable,1,14.95,12/11/19 15:33,"263 Highland St, Los Angeles, CA 90001" +318897,27in FHD Monitor,1,149.99,12/09/19 11:46,"510 Chestnut St, Los Angeles, CA 90001" +318898,AA Batteries (4-pack),1,3.84,12/18/19 11:16,"622 South St, New York City, NY 10001" +318899,Apple Airpods Headphones,1,150,12/29/19 09:54,"677 7th St, San Francisco, CA 94016" +318900,iPhone,1,700,12/09/19 09:50,"200 Maple St, San Francisco, CA 94016" +318901,Google Phone,1,600,12/20/19 08:52,"681 Lake St, New York City, NY 10001" +318902,AA Batteries (4-pack),1,3.84,12/05/19 16:00,"115 Willow St, New York City, NY 10001" +318903,20in Monitor,1,109.99,12/08/19 11:46,"494 Maple St, New York City, NY 10001" +318904,iPhone,1,700,12/01/19 09:25,"484 Cedar St, Los Angeles, CA 90001" +318905,USB-C Charging Cable,1,11.95,12/23/19 16:43,"674 Church St, New York City, NY 10001" +318906,Apple Airpods Headphones,1,150,12/13/19 11:07,"727 10th St, New York City, NY 10001" +318907,AAA Batteries (4-pack),3,2.99,12/27/19 16:04,"579 Chestnut St, New York City, NY 10001" +318908,USB-C Charging Cable,1,11.95,12/20/19 06:41,"390 7th St, Boston, MA 02215" +318909,Apple Airpods Headphones,1,150,12/19/19 16:08,"84 2nd St, Boston, MA 02215" +318910,AAA Batteries (4-pack),1,2.99,12/08/19 09:13,"626 Elm St, New York City, NY 10001" +318911,iPhone,1,700,12/11/19 19:52,"623 6th St, San Francisco, CA 94016" +318912,AAA Batteries (4-pack),1,2.99,12/12/19 00:40,"790 Wilson St, San Francisco, CA 94016" +,,,,, +318913,Lightning Charging Cable,1,14.95,12/27/19 16:45,"809 Church St, Atlanta, GA 30301" +318914,Apple Airpods Headphones,1,150,12/27/19 08:51,"150 Lake St, Boston, MA 02215" +318915,AA Batteries (4-pack),1,3.84,12/12/19 13:13,"442 Maple St, New York City, NY 10001" +318916,USB-C Charging Cable,1,11.95,12/09/19 12:20,"820 Park St, San Francisco, CA 94016" +318917,ThinkPad Laptop,1,999.99,12/05/19 18:54,"888 1st St, Portland, ME 04101" +318918,Bose SoundSport Headphones,1,99.99,12/06/19 13:22,"60 Forest St, Los Angeles, CA 90001" +318919,Bose SoundSport Headphones,1,99.99,12/04/19 18:44,"110 Jefferson St, San Francisco, CA 94016" +318920,20in Monitor,1,109.99,12/25/19 19:57,"286 Lakeview St, Seattle, WA 98101" +318921,AA Batteries (4-pack),2,3.84,12/29/19 15:30,"696 River St, Boston, MA 02215" +318922,AAA Batteries (4-pack),1,2.99,12/28/19 15:26,"934 Adams St, Boston, MA 02215" +318923,Wired Headphones,1,11.99,12/06/19 20:13,"465 Ridge St, Seattle, WA 98101" +318924,AA Batteries (4-pack),1,3.84,12/03/19 00:35,"659 Elm St, Portland, OR 97035" +318925,AA Batteries (4-pack),1,3.84,12/15/19 12:15,"903 Willow St, Los Angeles, CA 90001" +318926,Flatscreen TV,1,300,12/11/19 21:17,"46 Maple St, Seattle, WA 98101" +318927,Wired Headphones,1,11.99,12/03/19 19:09,"285 South St, Los Angeles, CA 90001" +318928,Lightning Charging Cable,1,14.95,12/19/19 13:17,"683 4th St, San Francisco, CA 94016" +318929,iPhone,1,700,12/26/19 20:15,"789 2nd St, San Francisco, CA 94016" +318930,USB-C Charging Cable,1,11.95,12/21/19 11:03,"113 11th St, Boston, MA 02215" +318931,USB-C Charging Cable,1,11.95,12/15/19 14:47,"265 4th St, Dallas, TX 75001" +318932,AA Batteries (4-pack),1,3.84,12/31/19 00:24,"956 Center St, Portland, OR 97035" +318933,Apple Airpods Headphones,1,150,12/28/19 20:00,"786 5th St, San Francisco, CA 94016" +318934,USB-C Charging Cable,1,11.95,12/07/19 20:06,"94 10th St, Los Angeles, CA 90001" +318935,Apple Airpods Headphones,1,150,12/06/19 18:39,"94 Lakeview St, Atlanta, GA 30301" +318936,AA Batteries (4-pack),2,3.84,12/18/19 14:13,"40 Pine St, Los Angeles, CA 90001" +318937,Bose SoundSport Headphones,1,99.99,12/11/19 20:13,"740 Center St, Atlanta, GA 30301" +318938,AA Batteries (4-pack),1,3.84,12/03/19 04:08,"737 Washington St, Los Angeles, CA 90001" +318939,AAA Batteries (4-pack),1,2.99,12/24/19 18:16,"494 Cedar St, Boston, MA 02215" +318940,Flatscreen TV,1,300,12/07/19 12:45,"136 South St, Portland, ME 04101" +318941,Wired Headphones,1,11.99,12/29/19 20:58,"794 Forest St, Atlanta, GA 30301" +318942,Bose SoundSport Headphones,1,99.99,12/25/19 15:05,"602 Church St, San Francisco, CA 94016" +318943,Apple Airpods Headphones,1,150,12/16/19 20:37,"548 Willow St, San Francisco, CA 94016" +318944,AAA Batteries (4-pack),1,2.99,12/21/19 18:42,"373 Spruce St, San Francisco, CA 94016" +318945,Macbook Pro Laptop,1,1700,12/28/19 11:28,"67 Johnson St, New York City, NY 10001" +318946,AAA Batteries (4-pack),1,2.99,12/01/19 16:46,"498 Church St, Austin, TX 73301" +318947,USB-C Charging Cable,1,11.95,12/23/19 13:17,"929 Pine St, Austin, TX 73301" +318948,Lightning Charging Cable,1,14.95,12/22/19 22:10,"187 Forest St, Portland, OR 97035" +318949,Wired Headphones,1,11.99,12/30/19 13:20,"591 Ridge St, Los Angeles, CA 90001" +318950,iPhone,1,700,12/01/19 21:36,"245 Center St, Portland, OR 97035" +318951,Wired Headphones,1,11.99,12/22/19 12:22,"964 Cherry St, Portland, OR 97035" +318952,AAA Batteries (4-pack),1,2.99,12/16/19 06:20,"439 14th St, Austin, TX 73301" +318953,Apple Airpods Headphones,1,150,12/12/19 13:51,"876 Ridge St, Atlanta, GA 30301" +318954,Bose SoundSport Headphones,1,99.99,12/28/19 10:25,"472 Cherry St, Los Angeles, CA 90001" +318955,AAA Batteries (4-pack),2,2.99,12/22/19 09:55,"323 9th St, San Francisco, CA 94016" +318956,Wired Headphones,1,11.99,12/15/19 14:52,"111 Johnson St, Boston, MA 02215" +318957,Flatscreen TV,1,300,12/17/19 00:21,"114 9th St, San Francisco, CA 94016" +318958,Google Phone,1,600,12/16/19 12:12,"95 Elm St, New York City, NY 10001" +318958,Wired Headphones,1,11.99,12/16/19 12:12,"95 Elm St, New York City, NY 10001" +318959,27in FHD Monitor,1,149.99,12/03/19 18:42,"105 North St, Atlanta, GA 30301" +318960,Lightning Charging Cable,2,14.95,12/31/19 20:14,"467 Hill St, Boston, MA 02215" +318961,AAA Batteries (4-pack),1,2.99,12/04/19 13:11,"460 1st St, New York City, NY 10001" +318962,USB-C Charging Cable,1,11.95,12/27/19 19:40,"213 Lakeview St, New York City, NY 10001" +318963,27in 4K Gaming Monitor,1,389.99,12/08/19 18:58,"718 Hill St, San Francisco, CA 94016" +318964,Bose SoundSport Headphones,1,99.99,12/13/19 20:45,"70 Meadow St, San Francisco, CA 94016" +318965,27in 4K Gaming Monitor,1,389.99,12/25/19 16:38,"138 Jackson St, Boston, MA 02215" +318966,27in 4K Gaming Monitor,1,389.99,12/08/19 16:33,"82 9th St, Los Angeles, CA 90001" +318967,iPhone,1,700,12/24/19 18:12,"351 South St, Atlanta, GA 30301" +318968,Bose SoundSport Headphones,1,99.99,12/03/19 00:34,"637 Highland St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +318969,AAA Batteries (4-pack),1,2.99,12/27/19 15:13,"750 10th St, Dallas, TX 75001" +318970,Vareebadd Phone,1,400,12/30/19 18:31,"720 11th St, New York City, NY 10001" +318971,USB-C Charging Cable,1,11.95,12/01/19 20:25,"336 Forest St, Seattle, WA 98101" +318972,USB-C Charging Cable,1,11.95,12/31/19 15:44,"423 Park St, San Francisco, CA 94016" +318973,Lightning Charging Cable,1,14.95,12/01/19 08:36,"342 Washington St, Portland, ME 04101" +318974,Wired Headphones,1,11.99,12/25/19 14:20,"14 Spruce St, Boston, MA 02215" +318975,34in Ultrawide Monitor,1,379.99,12/26/19 19:02,"966 2nd St, Los Angeles, CA 90001" +318976,27in 4K Gaming Monitor,1,389.99,12/06/19 10:22,"845 13th St, New York City, NY 10001" +318977,27in FHD Monitor,1,149.99,12/03/19 15:09,"527 Elm St, Boston, MA 02215" +318978,AA Batteries (4-pack),1,3.84,12/12/19 20:25,"348 Cedar St, Boston, MA 02215" +318979,Flatscreen TV,1,300,12/14/19 11:56,"453 6th St, Los Angeles, CA 90001" +318980,USB-C Charging Cable,1,11.95,12/02/19 09:39,"687 13th St, Los Angeles, CA 90001" +318981,AA Batteries (4-pack),1,3.84,12/09/19 16:26,"359 Cedar St, Boston, MA 02215" +318982,AA Batteries (4-pack),1,3.84,12/23/19 09:19,"638 Meadow St, New York City, NY 10001" +318983,ThinkPad Laptop,1,999.99,12/31/19 07:35,"768 Spruce St, San Francisco, CA 94016" +318984,27in 4K Gaming Monitor,1,389.99,12/30/19 17:27,"122 River St, Los Angeles, CA 90001" +318985,Lightning Charging Cable,1,14.95,12/18/19 22:35,"442 Jefferson St, Boston, MA 02215" +318986,USB-C Charging Cable,1,11.95,12/06/19 13:51,"482 Madison St, Atlanta, GA 30301" +318987,Flatscreen TV,1,300,12/09/19 12:09,"239 South St, Los Angeles, CA 90001" +318988,Apple Airpods Headphones,1,150,12/30/19 20:05,"501 Meadow St, New York City, NY 10001" +318989,Bose SoundSport Headphones,1,99.99,12/05/19 16:21,"898 7th St, San Francisco, CA 94016" +318990,AAA Batteries (4-pack),2,2.99,12/26/19 23:04,"259 10th St, Portland, OR 97035" +318991,USB-C Charging Cable,1,11.95,12/03/19 18:00,"346 Wilson St, Boston, MA 02215" +318992,USB-C Charging Cable,1,11.95,12/10/19 03:45,"121 Madison St, San Francisco, CA 94016" +318993,Google Phone,1,600,12/13/19 16:50,"218 Walnut St, Los Angeles, CA 90001" +318994,AAA Batteries (4-pack),1,2.99,12/31/19 19:52,"56 Adams St, Seattle, WA 98101" +318995,AAA Batteries (4-pack),2,2.99,12/26/19 21:45,"106 Highland St, San Francisco, CA 94016" +318996,34in Ultrawide Monitor,1,379.99,12/09/19 08:17,"635 Washington St, New York City, NY 10001" +318997,Lightning Charging Cable,1,14.95,12/12/19 13:35,"568 Spruce St, Los Angeles, CA 90001" +318998,AAA Batteries (4-pack),1,2.99,12/12/19 18:32,"142 Johnson St, Boston, MA 02215" +318999,USB-C Charging Cable,1,11.95,12/03/19 12:53,"876 2nd St, San Francisco, CA 94016" +319000,34in Ultrawide Monitor,1,379.99,12/13/19 07:55,"700 North St, New York City, NY 10001" +319001,27in FHD Monitor,1,149.99,12/28/19 18:14,"625 14th St, New York City, NY 10001" +319001,Bose SoundSport Headphones,1,99.99,12/28/19 18:14,"625 14th St, New York City, NY 10001" +319002,USB-C Charging Cable,1,11.95,12/23/19 10:47,"895 Maple St, New York City, NY 10001" +319003,Lightning Charging Cable,1,14.95,12/21/19 10:19,"459 Willow St, Los Angeles, CA 90001" +319004,Google Phone,1,600,12/13/19 18:27,"205 River St, New York City, NY 10001" +319005,AA Batteries (4-pack),1,3.84,12/30/19 18:56,"845 Cherry St, New York City, NY 10001" +319006,iPhone,1,700,12/15/19 17:42,"847 River St, San Francisco, CA 94016" +319007,AAA Batteries (4-pack),3,2.99,12/01/19 08:50,"800 Walnut St, New York City, NY 10001" +319008,USB-C Charging Cable,1,11.95,12/29/19 15:15,"513 Maple St, Los Angeles, CA 90001" +319009,Wired Headphones,1,11.99,12/20/19 19:03,"377 Washington St, Seattle, WA 98101" +319010,Wired Headphones,1,11.99,12/31/19 10:52,"388 Sunset St, San Francisco, CA 94016" +319011,Flatscreen TV,1,300,12/30/19 16:28,"629 Madison St, Seattle, WA 98101" +319012,AAA Batteries (4-pack),2,2.99,12/14/19 10:47,"992 Jefferson St, San Francisco, CA 94016" +319013,AA Batteries (4-pack),1,3.84,12/17/19 14:13,"9 Wilson St, San Francisco, CA 94016" +319014,Apple Airpods Headphones,1,150,12/27/19 07:11,"383 Washington St, San Francisco, CA 94016" +319015,27in FHD Monitor,1,149.99,12/01/19 20:34,"839 Church St, San Francisco, CA 94016" +319016,Flatscreen TV,1,300,12/15/19 21:46,"139 9th St, Boston, MA 02215" +319017,27in 4K Gaming Monitor,1,389.99,12/24/19 13:21,"134 2nd St, Seattle, WA 98101" +319018,27in FHD Monitor,1,149.99,12/27/19 21:14,"437 Hickory St, Portland, OR 97035" +319019,Apple Airpods Headphones,1,150,12/09/19 22:25,"861 1st St, San Francisco, CA 94016" +319020,Apple Airpods Headphones,1,150,12/06/19 04:21,"404 North St, San Francisco, CA 94016" +319020,LG Dryer,1,600.0,12/06/19 04:21,"404 North St, San Francisco, CA 94016" +319021,AAA Batteries (4-pack),2,2.99,12/17/19 13:09,"997 Lincoln St, Atlanta, GA 30301" +319022,AAA Batteries (4-pack),1,2.99,12/05/19 19:58,"992 Sunset St, Los Angeles, CA 90001" +319023,Apple Airpods Headphones,1,150,12/24/19 16:32,"287 Pine St, San Francisco, CA 94016" +319024,Apple Airpods Headphones,1,150,12/05/19 09:43,"848 Chestnut St, Dallas, TX 75001" +319025,Wired Headphones,1,11.99,12/20/19 10:52,"662 Cedar St, New York City, NY 10001" +319026,USB-C Charging Cable,1,11.95,12/03/19 17:40,"9 Adams St, Dallas, TX 75001" +319027,Bose SoundSport Headphones,1,99.99,12/27/19 17:20,"244 Spruce St, Boston, MA 02215" +319028,Bose SoundSport Headphones,1,99.99,12/04/19 21:31,"524 Lakeview St, New York City, NY 10001" +319029,Wired Headphones,2,11.99,12/10/19 13:16,"288 Pine St, Boston, MA 02215" +319030,Apple Airpods Headphones,1,150,12/15/19 14:31,"597 10th St, San Francisco, CA 94016" +319031,Wired Headphones,1,11.99,12/19/19 12:49,"644 11th St, Dallas, TX 75001" +319032,USB-C Charging Cable,1,11.95,12/03/19 18:08,"109 Johnson St, Boston, MA 02215" +319033,USB-C Charging Cable,1,11.95,12/29/19 20:30,"848 River St, Austin, TX 73301" +319034,USB-C Charging Cable,1,11.95,12/30/19 15:53,"688 7th St, Dallas, TX 75001" +319035,27in 4K Gaming Monitor,1,389.99,12/24/19 17:26,"542 Cherry St, Dallas, TX 75001" +319036,Bose SoundSport Headphones,1,99.99,12/02/19 17:08,"429 South St, Seattle, WA 98101" +319037,Lightning Charging Cable,1,14.95,12/26/19 09:55,"388 14th St, Dallas, TX 75001" +319038,AAA Batteries (4-pack),2,2.99,12/23/19 14:10,"118 Lincoln St, San Francisco, CA 94016" +319039,34in Ultrawide Monitor,1,379.99,12/29/19 12:13,"151 Pine St, New York City, NY 10001" +319040,Lightning Charging Cable,1,14.95,12/24/19 06:53,"729 Chestnut St, New York City, NY 10001" +319041,Wired Headphones,1,11.99,12/05/19 20:17,"696 10th St, San Francisco, CA 94016" +319042,Wired Headphones,1,11.99,12/13/19 21:09,"428 Cedar St, Austin, TX 73301" +319043,USB-C Charging Cable,1,11.95,12/02/19 11:47,"238 Ridge St, Portland, ME 04101" +319044,Bose SoundSport Headphones,1,99.99,12/06/19 18:36,"293 Center St, New York City, NY 10001" +319045,iPhone,1,700,12/18/19 03:59,"516 Maple St, New York City, NY 10001" +319046,Apple Airpods Headphones,1,150,12/04/19 11:05,"487 Johnson St, Boston, MA 02215" +319047,Lightning Charging Cable,1,14.95,12/16/19 21:07,"607 Meadow St, Austin, TX 73301" +319048,AA Batteries (4-pack),1,3.84,12/24/19 08:15,"389 11th St, Dallas, TX 75001" +319049,27in 4K Gaming Monitor,1,389.99,12/15/19 16:57,"302 1st St, Atlanta, GA 30301" +319050,Wired Headphones,1,11.99,12/22/19 20:07,"533 Madison St, New York City, NY 10001" +319051,USB-C Charging Cable,1,11.95,12/21/19 23:29,"609 Highland St, San Francisco, CA 94016" +319052,iPhone,1,700,12/06/19 21:53,"682 Chestnut St, San Francisco, CA 94016" +319053,AA Batteries (4-pack),1,3.84,12/29/19 12:16,"358 West St, New York City, NY 10001" +319054,AA Batteries (4-pack),2,3.84,12/28/19 17:08,"116 West St, Austin, TX 73301" +319055,Wired Headphones,1,11.99,12/18/19 22:02,"187 9th St, Los Angeles, CA 90001" +319056,AAA Batteries (4-pack),1,2.99,12/07/19 20:52,"441 11th St, Los Angeles, CA 90001" +319057,27in FHD Monitor,1,149.99,12/10/19 12:25,"616 West St, Los Angeles, CA 90001" +319058,ThinkPad Laptop,1,999.99,12/14/19 10:44,"982 Hill St, Los Angeles, CA 90001" +319059,AA Batteries (4-pack),2,3.84,12/09/19 08:54,"379 Ridge St, Boston, MA 02215" +319060,Wired Headphones,1,11.99,12/12/19 21:10,"825 Cherry St, Portland, ME 04101" +319061,Apple Airpods Headphones,1,150,12/27/19 21:26,"821 8th St, Los Angeles, CA 90001" +319062,Lightning Charging Cable,1,14.95,12/29/19 22:46,"42 12th St, San Francisco, CA 94016" +319063,27in FHD Monitor,1,149.99,12/09/19 17:21,"460 Lincoln St, Los Angeles, CA 90001" +319064,Bose SoundSport Headphones,1,99.99,12/21/19 12:02,"48 Wilson St, Boston, MA 02215" +319065,iPhone,1,700,12/04/19 08:49,"246 Lincoln St, Boston, MA 02215" +319065,Lightning Charging Cable,1,14.95,12/04/19 08:49,"246 Lincoln St, Boston, MA 02215" +319066,27in 4K Gaming Monitor,1,389.99,12/15/19 10:06,"423 South St, Seattle, WA 98101" +319067,Wired Headphones,1,11.99,12/11/19 14:44,"991 Lincoln St, Los Angeles, CA 90001" +319068,AAA Batteries (4-pack),3,2.99,12/07/19 11:11,"61 11th St, Boston, MA 02215" +319069,AA Batteries (4-pack),1,3.84,12/19/19 01:10,"577 1st St, Los Angeles, CA 90001" +319070,27in 4K Gaming Monitor,1,389.99,12/01/19 20:08,"596 Lincoln St, Seattle, WA 98101" +319071,Bose SoundSport Headphones,1,99.99,12/16/19 17:45,"908 Johnson St, Los Angeles, CA 90001" +319072,Lightning Charging Cable,1,14.95,12/10/19 14:42,"451 5th St, Boston, MA 02215" +319073,Wired Headphones,1,11.99,12/29/19 13:51,"269 Ridge St, San Francisco, CA 94016" +319074,Lightning Charging Cable,2,14.95,12/08/19 18:31,"386 River St, Seattle, WA 98101" +319075,Vareebadd Phone,1,400,12/22/19 15:12,"373 Main St, Los Angeles, CA 90001" +319076,AAA Batteries (4-pack),1,2.99,12/11/19 17:29,"125 11th St, San Francisco, CA 94016" +319077,Wired Headphones,1,11.99,12/03/19 11:08,"786 Willow St, Seattle, WA 98101" +319078,27in FHD Monitor,1,149.99,12/23/19 18:32,"643 Jefferson St, Boston, MA 02215" +319079,27in 4K Gaming Monitor,1,389.99,12/12/19 05:57,"626 Pine St, Dallas, TX 75001" +319080,Vareebadd Phone,1,400,12/29/19 05:34,"675 Church St, Los Angeles, CA 90001" +319080,USB-C Charging Cable,1,11.95,12/29/19 05:34,"675 Church St, Los Angeles, CA 90001" +319081,USB-C Charging Cable,1,11.95,12/20/19 17:59,"645 Highland St, San Francisco, CA 94016" +319082,USB-C Charging Cable,1,11.95,12/09/19 09:02,"504 Washington St, New York City, NY 10001" +319083,Lightning Charging Cable,1,14.95,12/03/19 21:02,"703 Pine St, San Francisco, CA 94016" +319084,Wired Headphones,1,11.99,12/24/19 16:24,"586 Walnut St, Atlanta, GA 30301" +319085,27in FHD Monitor,1,149.99,12/26/19 20:21,"792 11th St, Los Angeles, CA 90001" +319086,Macbook Pro Laptop,1,1700,12/18/19 10:36,"694 Washington St, San Francisco, CA 94016" +319087,Macbook Pro Laptop,1,1700,12/17/19 12:01,"403 South St, Austin, TX 73301" +319088,Wired Headphones,1,11.99,12/27/19 13:42,"848 Hickory St, Atlanta, GA 30301" +319089,AA Batteries (4-pack),1,3.84,12/15/19 15:56,"977 Cherry St, Seattle, WA 98101" +319090,Lightning Charging Cable,1,14.95,12/19/19 13:01,"255 Cherry St, San Francisco, CA 94016" +319091,AA Batteries (4-pack),1,3.84,12/10/19 21:04,"215 Park St, New York City, NY 10001" +319092,AA Batteries (4-pack),1,3.84,12/27/19 14:54,"214 Park St, San Francisco, CA 94016" +319093,Lightning Charging Cable,1,14.95,12/01/19 10:28,"798 Dogwood St, San Francisco, CA 94016" +319094,AA Batteries (4-pack),1,3.84,12/31/19 14:35,"120 Washington St, Los Angeles, CA 90001" +319095,Macbook Pro Laptop,1,1700,12/12/19 08:53,"400 Wilson St, Los Angeles, CA 90001" +319096,USB-C Charging Cable,1,11.95,12/12/19 14:57,"864 Elm St, San Francisco, CA 94016" +319097,Lightning Charging Cable,1,14.95,12/13/19 19:26,"734 Maple St, Dallas, TX 75001" +319098,Wired Headphones,1,11.99,12/27/19 12:16,"59 Highland St, New York City, NY 10001" +319099,USB-C Charging Cable,1,11.95,12/04/19 20:21,"200 1st St, San Francisco, CA 94016" +319100,AA Batteries (4-pack),1,3.84,12/16/19 10:00,"189 10th St, New York City, NY 10001" +319101,iPhone,1,700,12/05/19 19:16,"839 Jackson St, New York City, NY 10001" +319102,Flatscreen TV,1,300,12/19/19 14:17,"238 Forest St, Los Angeles, CA 90001" +319103,Lightning Charging Cable,1,14.95,12/13/19 09:46,"296 Cedar St, Boston, MA 02215" +319104,USB-C Charging Cable,1,11.95,12/02/19 12:41,"236 7th St, Atlanta, GA 30301" +319105,AA Batteries (4-pack),2,3.84,12/09/19 23:48,"158 Center St, Boston, MA 02215" +319106,Bose SoundSport Headphones,1,99.99,12/27/19 20:10,"271 Cherry St, New York City, NY 10001" +319107,USB-C Charging Cable,1,11.95,12/14/19 18:38,"376 14th St, Boston, MA 02215" +319108,AAA Batteries (4-pack),1,2.99,12/14/19 15:06,"249 9th St, Seattle, WA 98101" +319109,Vareebadd Phone,1,400,12/21/19 13:26,"269 2nd St, Austin, TX 73301" +319110,AAA Batteries (4-pack),5,2.99,12/14/19 23:24,"718 Main St, Atlanta, GA 30301" +319111,AAA Batteries (4-pack),2,2.99,12/11/19 20:26,"655 Lake St, Los Angeles, CA 90001" +319112,20in Monitor,1,109.99,12/21/19 09:13,"735 Jackson St, Seattle, WA 98101" +319113,Wired Headphones,1,11.99,12/21/19 18:42,"75 Center St, Los Angeles, CA 90001" +319114,Wired Headphones,1,11.99,12/26/19 20:18,"36 7th St, Atlanta, GA 30301" +319115,AA Batteries (4-pack),2,3.84,12/29/19 08:21,"418 2nd St, San Francisco, CA 94016" +319116,Bose SoundSport Headphones,1,99.99,12/28/19 21:18,"903 North St, New York City, NY 10001" +319116,AA Batteries (4-pack),2,3.84,12/28/19 21:18,"903 North St, New York City, NY 10001" +319117,Apple Airpods Headphones,1,150,12/21/19 21:16,"206 River St, Austin, TX 73301" +319118,Wired Headphones,1,11.99,12/14/19 20:47,"714 5th St, New York City, NY 10001" +319119,iPhone,1,700,12/15/19 17:36,"104 Ridge St, San Francisco, CA 94016" +319119,Lightning Charging Cable,1,14.95,12/15/19 17:36,"104 Ridge St, San Francisco, CA 94016" +319120,Wired Headphones,1,11.99,12/15/19 22:09,"877 Chestnut St, Los Angeles, CA 90001" +319121,Lightning Charging Cable,1,14.95,12/19/19 22:25,"985 Cedar St, San Francisco, CA 94016" +319122,Apple Airpods Headphones,1,150,12/23/19 23:21,"503 Walnut St, Boston, MA 02215" +319123,Flatscreen TV,1,300,12/07/19 08:54,"746 West St, Boston, MA 02215" +319124,AAA Batteries (4-pack),1,2.99,12/26/19 14:38,"200 Center St, Portland, OR 97035" +319125,Apple Airpods Headphones,1,150,12/24/19 12:29,"598 Hill St, New York City, NY 10001" +319126,AA Batteries (4-pack),1,3.84,12/10/19 04:58,"144 6th St, San Francisco, CA 94016" +319127,Lightning Charging Cable,1,14.95,12/03/19 16:32,"639 7th St, Los Angeles, CA 90001" +319128,27in 4K Gaming Monitor,1,389.99,12/12/19 21:24,"727 Wilson St, New York City, NY 10001" +319129,Lightning Charging Cable,1,14.95,12/04/19 22:54,"555 13th St, New York City, NY 10001" +319130,Apple Airpods Headphones,1,150,12/06/19 17:44,"513 Spruce St, San Francisco, CA 94016" +319131,Google Phone,1,600,12/07/19 11:47,"564 Center St, New York City, NY 10001" +319131,Wired Headphones,1,11.99,12/07/19 11:47,"564 Center St, New York City, NY 10001" +319132,AA Batteries (4-pack),1,3.84,12/04/19 20:51,"375 4th St, Seattle, WA 98101" +319133,iPhone,1,700,12/20/19 05:05,"184 8th St, San Francisco, CA 94016" +319134,AAA Batteries (4-pack),1,2.99,12/14/19 16:20,"414 1st St, Dallas, TX 75001" +319135,ThinkPad Laptop,1,999.99,12/24/19 10:12,"989 1st St, Dallas, TX 75001" +319136,USB-C Charging Cable,1,11.95,12/12/19 12:49,"460 12th St, Boston, MA 02215" +319137,AAA Batteries (4-pack),1,2.99,12/03/19 20:28,"623 Jefferson St, Seattle, WA 98101" +319138,AAA Batteries (4-pack),1,2.99,12/18/19 11:08,"158 River St, Boston, MA 02215" +319139,USB-C Charging Cable,1,11.95,12/30/19 15:14,"99 Madison St, San Francisco, CA 94016" +319140,Apple Airpods Headphones,1,150,12/22/19 13:11,"819 Washington St, Los Angeles, CA 90001" +319141,Apple Airpods Headphones,1,150,12/05/19 15:53,"569 Lincoln St, Portland, OR 97035" +319142,Wired Headphones,1,11.99,12/22/19 17:04,"848 9th St, Seattle, WA 98101" +319143,20in Monitor,1,109.99,12/01/19 12:27,"674 Elm St, Los Angeles, CA 90001" +319144,27in 4K Gaming Monitor,1,389.99,12/02/19 19:04,"863 Forest St, Austin, TX 73301" +319145,34in Ultrawide Monitor,1,379.99,12/03/19 14:44,"742 12th St, San Francisco, CA 94016" +319146,34in Ultrawide Monitor,1,379.99,12/17/19 17:49,"220 Sunset St, Portland, OR 97035" +319147,Bose SoundSport Headphones,1,99.99,12/24/19 14:46,"437 Adams St, Austin, TX 73301" +319148,Google Phone,1,600,12/01/19 22:21,"898 Dogwood St, Dallas, TX 75001" +319149,AAA Batteries (4-pack),2,2.99,12/25/19 17:41,"127 Sunset St, Austin, TX 73301" +319150,USB-C Charging Cable,1,11.95,12/17/19 19:48,"502 Johnson St, Los Angeles, CA 90001" +319151,27in FHD Monitor,1,149.99,12/26/19 19:05,"665 Washington St, Portland, OR 97035" +319152,AAA Batteries (4-pack),2,2.99,12/12/19 17:41,"663 10th St, Dallas, TX 75001" +319153,USB-C Charging Cable,1,11.95,12/04/19 21:33,"669 Ridge St, Seattle, WA 98101" +319154,AAA Batteries (4-pack),1,2.99,12/06/19 00:15,"505 Jefferson St, New York City, NY 10001" +319155,AA Batteries (4-pack),1,3.84,12/17/19 09:11,"856 11th St, Austin, TX 73301" +319156,Apple Airpods Headphones,1,150,12/26/19 19:11,"130 Ridge St, Seattle, WA 98101" +319157,34in Ultrawide Monitor,1,379.99,12/06/19 11:55,"509 Forest St, Dallas, TX 75001" +319157,27in FHD Monitor,1,149.99,12/06/19 11:55,"509 Forest St, Dallas, TX 75001" +319158,AAA Batteries (4-pack),1,2.99,12/08/19 10:22,"984 West St, Seattle, WA 98101" +319159,USB-C Charging Cable,1,11.95,12/24/19 17:00,"642 8th St, San Francisco, CA 94016" +319160,AAA Batteries (4-pack),1,2.99,12/02/19 14:17,"150 Wilson St, San Francisco, CA 94016" +319161,Lightning Charging Cable,1,14.95,12/07/19 17:39,"678 11th St, San Francisco, CA 94016" +319162,AAA Batteries (4-pack),1,2.99,12/01/19 09:48,"171 Jefferson St, San Francisco, CA 94016" +319162,Google Phone,1,600,12/01/19 09:48,"171 Jefferson St, San Francisco, CA 94016" +319163,Lightning Charging Cable,1,14.95,12/06/19 19:28,"544 South St, San Francisco, CA 94016" +319164,Lightning Charging Cable,1,14.95,12/24/19 18:20,"556 14th St, Dallas, TX 75001" +319165,Bose SoundSport Headphones,1,99.99,12/25/19 19:28,"76 5th St, New York City, NY 10001" +319166,Apple Airpods Headphones,1,150,12/30/19 18:10,"876 West St, San Francisco, CA 94016" +319167,20in Monitor,1,109.99,12/20/19 19:57,"675 Walnut St, Los Angeles, CA 90001" +319168,AAA Batteries (4-pack),2,2.99,12/19/19 20:55,"345 Washington St, Portland, ME 04101" +319169,USB-C Charging Cable,1,11.95,12/03/19 10:08,"168 Elm St, Boston, MA 02215" +319170,Macbook Pro Laptop,1,1700,12/29/19 10:17,"595 Johnson St, Austin, TX 73301" +319171,Google Phone,1,600,12/12/19 20:23,"450 Sunset St, Austin, TX 73301" +319171,USB-C Charging Cable,1,11.95,12/12/19 20:23,"450 Sunset St, Austin, TX 73301" +319172,USB-C Charging Cable,1,11.95,12/16/19 09:29,"256 Forest St, Atlanta, GA 30301" +319173,Google Phone,1,600,12/13/19 17:43,"75 West St, Seattle, WA 98101" +319174,Vareebadd Phone,1,400,12/01/19 18:49,"677 Pine St, Boston, MA 02215" +319175,Google Phone,1,600,12/09/19 12:43,"927 Cherry St, San Francisco, CA 94016" +319176,AAA Batteries (4-pack),1,2.99,12/14/19 14:55,"993 Center St, New York City, NY 10001" +319177,AAA Batteries (4-pack),1,2.99,12/06/19 16:01,"76 Jackson St, Los Angeles, CA 90001" +319178,Apple Airpods Headphones,1,150,12/16/19 16:47,"380 Washington St, Austin, TX 73301" +319179,Wired Headphones,1,11.99,12/15/19 13:06,"118 2nd St, New York City, NY 10001" +319180,Bose SoundSport Headphones,1,99.99,12/22/19 20:50,"235 7th St, Los Angeles, CA 90001" +319181,Lightning Charging Cable,1,14.95,12/21/19 01:51,"286 Jackson St, New York City, NY 10001" +319182,iPhone,1,700,12/28/19 10:53,"765 Meadow St, San Francisco, CA 94016" +319183,Lightning Charging Cable,1,14.95,12/01/19 23:02,"868 Willow St, Austin, TX 73301" +319184,USB-C Charging Cable,3,11.95,12/31/19 21:30,"393 Church St, San Francisco, CA 94016" +319185,AAA Batteries (4-pack),2,2.99,12/25/19 11:55,"482 Forest St, New York City, NY 10001" +319186,USB-C Charging Cable,1,11.95,12/27/19 21:21,"141 Hill St, San Francisco, CA 94016" +319187,Macbook Pro Laptop,1,1700,12/06/19 19:13,"856 9th St, Dallas, TX 75001" +319188,Lightning Charging Cable,1,14.95,12/15/19 13:40,"35 Pine St, Los Angeles, CA 90001" +319189,Apple Airpods Headphones,1,150,12/10/19 12:05,"17 River St, Austin, TX 73301" +319190,Flatscreen TV,1,300,12/02/19 09:53,"671 10th St, San Francisco, CA 94016" +319191,USB-C Charging Cable,1,11.95,12/20/19 10:26,"616 Main St, Portland, ME 04101" +319192,USB-C Charging Cable,1,11.95,12/31/19 21:51,"886 4th St, Los Angeles, CA 90001" +319193,USB-C Charging Cable,1,11.95,12/25/19 14:28,"245 Highland St, Atlanta, GA 30301" +319194,AAA Batteries (4-pack),2,2.99,12/20/19 10:18,"105 2nd St, San Francisco, CA 94016" +319195,Lightning Charging Cable,1,14.95,12/17/19 13:00,"818 5th St, San Francisco, CA 94016" +319196,USB-C Charging Cable,1,11.95,12/11/19 23:00,"817 9th St, New York City, NY 10001" +319197,Macbook Pro Laptop,1,1700,12/28/19 13:26,"295 13th St, Dallas, TX 75001" +319198,Wired Headphones,1,11.99,12/05/19 17:33,"307 Willow St, Atlanta, GA 30301" +319199,Lightning Charging Cable,1,14.95,12/02/19 14:47,"825 12th St, Atlanta, GA 30301" +319200,Macbook Pro Laptop,1,1700,12/14/19 15:06,"842 Park St, San Francisco, CA 94016" +319201,USB-C Charging Cable,1,11.95,12/23/19 23:46,"263 Walnut St, Atlanta, GA 30301" +319202,Bose SoundSport Headphones,1,99.99,12/03/19 10:51,"79 10th St, Seattle, WA 98101" +319203,AAA Batteries (4-pack),2,2.99,12/17/19 13:16,"872 Meadow St, Portland, OR 97035" +319204,AAA Batteries (4-pack),3,2.99,12/09/19 08:57,"256 4th St, New York City, NY 10001" +319205,Lightning Charging Cable,1,14.95,12/18/19 23:01,"920 Sunset St, San Francisco, CA 94016" +319206,27in FHD Monitor,1,149.99,12/09/19 09:37,"615 Pine St, New York City, NY 10001" +319207,Google Phone,1,600,12/11/19 22:25,"223 South St, New York City, NY 10001" +319207,Wired Headphones,1,11.99,12/11/19 22:25,"223 South St, New York City, NY 10001" +319208,27in 4K Gaming Monitor,1,389.99,12/27/19 20:34,"658 Wilson St, San Francisco, CA 94016" +319209,Lightning Charging Cable,1,14.95,12/16/19 18:44,"981 West St, Seattle, WA 98101" +319210,Wired Headphones,2,11.99,12/28/19 21:24,"844 Adams St, Los Angeles, CA 90001" +319211,Lightning Charging Cable,1,14.95,12/11/19 12:04,"287 Park St, Boston, MA 02215" +319212,Wired Headphones,1,11.99,12/22/19 13:47,"165 14th St, Los Angeles, CA 90001" +319213,AAA Batteries (4-pack),1,2.99,12/12/19 17:38,"913 Main St, Boston, MA 02215" +319213,Wired Headphones,1,11.99,12/12/19 17:38,"913 Main St, Boston, MA 02215" +319214,Google Phone,1,600,12/22/19 16:59,"916 Hill St, San Francisco, CA 94016" +319215,Apple Airpods Headphones,1,150,12/22/19 16:23,"309 Lake St, New York City, NY 10001" +319216,Wired Headphones,1,11.99,12/13/19 17:45,"852 Jefferson St, Portland, OR 97035" +319217,USB-C Charging Cable,1,11.95,12/18/19 14:21,"204 River St, San Francisco, CA 94016" +319218,AA Batteries (4-pack),1,3.84,12/15/19 22:23,"571 10th St, Atlanta, GA 30301" +319219,Flatscreen TV,1,300,12/27/19 18:45,"768 Chestnut St, Los Angeles, CA 90001" +319220,Bose SoundSport Headphones,1,99.99,12/07/19 09:31,"109 2nd St, Seattle, WA 98101" +319221,Apple Airpods Headphones,1,150,12/21/19 22:52,"198 2nd St, San Francisco, CA 94016" +319222,Flatscreen TV,1,300,12/24/19 09:39,"435 Hickory St, Boston, MA 02215" +319223,USB-C Charging Cable,1,11.95,12/01/19 13:26,"988 Adams St, Boston, MA 02215" +319224,Wired Headphones,1,11.99,12/24/19 13:03,"251 Center St, Dallas, TX 75001" +319225,AAA Batteries (4-pack),2,2.99,12/03/19 08:07,"706 Maple St, Boston, MA 02215" +319226,Apple Airpods Headphones,1,150,12/16/19 23:31,"159 Chestnut St, Seattle, WA 98101" +319227,iPhone,1,700,12/08/19 22:13,"166 12th St, Boston, MA 02215" +319227,Apple Airpods Headphones,1,150,12/08/19 22:13,"166 12th St, Boston, MA 02215" +319228,AAA Batteries (4-pack),2,2.99,12/20/19 21:25,"417 Washington St, Seattle, WA 98101" +319229,Apple Airpods Headphones,1,150,12/10/19 23:08,"116 Main St, Seattle, WA 98101" +319230,Lightning Charging Cable,1,14.95,12/24/19 16:27,"20 Washington St, Portland, OR 97035" +319231,Wired Headphones,1,11.99,12/14/19 09:37,"716 Cherry St, Los Angeles, CA 90001" +319232,USB-C Charging Cable,1,11.95,12/18/19 17:47,"222 13th St, New York City, NY 10001" +319233,Lightning Charging Cable,1,14.95,12/23/19 15:33,"923 Maple St, New York City, NY 10001" +319234,USB-C Charging Cable,1,11.95,12/12/19 11:22,"58 Highland St, Dallas, TX 75001" +319235,USB-C Charging Cable,2,11.95,12/22/19 19:47,"348 8th St, Los Angeles, CA 90001" +319236,USB-C Charging Cable,1,11.95,12/04/19 22:43,"756 Forest St, New York City, NY 10001" +319237,Lightning Charging Cable,1,14.95,12/12/19 18:18,"430 1st St, Atlanta, GA 30301" +,,,,, +319238,AA Batteries (4-pack),2,3.84,12/07/19 19:08,"136 Highland St, New York City, NY 10001" +319239,Apple Airpods Headphones,1,150,12/16/19 14:22,"227 Meadow St, New York City, NY 10001" +319240,Lightning Charging Cable,1,14.95,12/02/19 09:20,"208 Park St, San Francisco, CA 94016" +319241,AAA Batteries (4-pack),3,2.99,12/22/19 14:05,"82 Willow St, Seattle, WA 98101" +319242,USB-C Charging Cable,1,11.95,12/12/19 14:37,"110 Jefferson St, Los Angeles, CA 90001" +319243,USB-C Charging Cable,1,11.95,12/18/19 07:02,"515 Jackson St, Dallas, TX 75001" +319244,27in FHD Monitor,1,149.99,12/10/19 07:06,"641 Dogwood St, Seattle, WA 98101" +319245,Macbook Pro Laptop,1,1700,12/05/19 22:27,"312 North St, Los Angeles, CA 90001" +319246,Wired Headphones,1,11.99,12/13/19 13:24,"907 Jackson St, Seattle, WA 98101" +319247,Apple Airpods Headphones,1,150,12/10/19 21:25,"428 Chestnut St, San Francisco, CA 94016" +319248,USB-C Charging Cable,1,11.95,12/17/19 15:13,"814 14th St, Boston, MA 02215" +319249,Bose SoundSport Headphones,1,99.99,12/28/19 05:00,"457 Church St, Dallas, TX 75001" +319250,Apple Airpods Headphones,1,150,12/13/19 10:10,"494 Jackson St, Portland, OR 97035" +319251,Lightning Charging Cable,1,14.95,01/01/20 00:58,"281 Pine St, Austin, TX 73301" +319252,AA Batteries (4-pack),1,3.84,12/11/19 10:30,"679 Lincoln St, Austin, TX 73301" +319253,27in FHD Monitor,1,149.99,12/14/19 19:48,"851 4th St, Los Angeles, CA 90001" +319254,AA Batteries (4-pack),2,3.84,12/14/19 09:29,"486 Park St, Los Angeles, CA 90001" +319255,Wired Headphones,1,11.99,12/14/19 09:22,"754 13th St, Portland, ME 04101" +319256,Flatscreen TV,1,300,12/28/19 19:41,"645 13th St, Boston, MA 02215" +319257,Lightning Charging Cable,1,14.95,12/19/19 13:34,"184 Willow St, San Francisco, CA 94016" +319258,27in FHD Monitor,1,149.99,12/22/19 12:29,"965 Center St, Los Angeles, CA 90001" +319259,Lightning Charging Cable,1,14.95,12/01/19 17:54,"626 Meadow St, Boston, MA 02215" +319260,Apple Airpods Headphones,1,150,12/31/19 21:52,"124 Johnson St, New York City, NY 10001" +319261,Wired Headphones,1,11.99,12/17/19 17:58,"132 Meadow St, San Francisco, CA 94016" +319262,AAA Batteries (4-pack),1,2.99,12/21/19 17:23,"57 North St, Seattle, WA 98101" +319263,Macbook Pro Laptop,1,1700,12/08/19 14:01,"469 Walnut St, New York City, NY 10001" +319264,Macbook Pro Laptop,1,1700,12/13/19 06:44,"779 Lake St, San Francisco, CA 94016" +319265,27in FHD Monitor,1,149.99,12/29/19 16:43,"611 Lakeview St, New York City, NY 10001" +319266,AAA Batteries (4-pack),2,2.99,12/14/19 16:42,"860 8th St, San Francisco, CA 94016" +319267,Google Phone,1,600,12/01/19 15:41,"886 Ridge St, Los Angeles, CA 90001" +319268,USB-C Charging Cable,1,11.95,12/31/19 17:11,"397 8th St, San Francisco, CA 94016" +319269,Apple Airpods Headphones,1,150,12/19/19 13:46,"198 Lakeview St, Portland, OR 97035" +319270,Bose SoundSport Headphones,1,99.99,12/19/19 12:25,"108 Johnson St, Austin, TX 73301" +319271,27in FHD Monitor,1,149.99,12/23/19 10:32,"63 Hickory St, San Francisco, CA 94016" +319272,Apple Airpods Headphones,1,150,12/06/19 14:39,"101 North St, Los Angeles, CA 90001" +319273,Macbook Pro Laptop,1,1700,12/10/19 11:40,"148 Forest St, Los Angeles, CA 90001" +319274,AA Batteries (4-pack),1,3.84,12/10/19 15:03,"928 Hill St, San Francisco, CA 94016" +319275,Wired Headphones,1,11.99,12/22/19 11:48,"867 Park St, Atlanta, GA 30301" +319276,Wired Headphones,1,11.99,12/02/19 20:59,"67 Maple St, Los Angeles, CA 90001" +319277,20in Monitor,1,109.99,12/08/19 22:11,"53 Chestnut St, New York City, NY 10001" +319277,AA Batteries (4-pack),1,3.84,12/08/19 22:11,"53 Chestnut St, New York City, NY 10001" +319278,AAA Batteries (4-pack),1,2.99,12/12/19 17:21,"593 13th St, New York City, NY 10001" +319279,34in Ultrawide Monitor,1,379.99,12/16/19 11:29,"133 9th St, Boston, MA 02215" +319280,27in FHD Monitor,1,149.99,12/02/19 19:00,"353 Main St, San Francisco, CA 94016" +319281,AA Batteries (4-pack),1,3.84,12/10/19 10:56,"751 Cherry St, Seattle, WA 98101" +319282,Bose SoundSport Headphones,1,99.99,12/26/19 01:21,"248 8th St, Portland, ME 04101" +319283,AAA Batteries (4-pack),1,2.99,12/11/19 18:51,"68 Willow St, San Francisco, CA 94016" +319284,Lightning Charging Cable,1,14.95,12/09/19 12:06,"1 Pine St, Los Angeles, CA 90001" +319285,Lightning Charging Cable,1,14.95,12/17/19 00:26,"45 Lakeview St, Atlanta, GA 30301" +319286,AA Batteries (4-pack),1,3.84,12/18/19 11:29,"327 Park St, Atlanta, GA 30301" +319287,Bose SoundSport Headphones,1,99.99,12/10/19 18:32,"479 Jackson St, Los Angeles, CA 90001" +319288,Wired Headphones,1,11.99,12/29/19 12:56,"61 Maple St, Portland, ME 04101" +319289,Bose SoundSport Headphones,1,99.99,12/05/19 18:29,"273 Lake St, San Francisco, CA 94016" +319290,Lightning Charging Cable,1,14.95,12/25/19 14:41,"179 9th St, Seattle, WA 98101" +319291,Bose SoundSport Headphones,1,99.99,12/21/19 08:57,"341 Adams St, Los Angeles, CA 90001" +319292,Bose SoundSport Headphones,1,99.99,12/15/19 15:23,"811 Meadow St, Portland, OR 97035" +319293,Vareebadd Phone,1,400,12/23/19 23:59,"902 13th St, Atlanta, GA 30301" +319294,Google Phone,1,600,12/07/19 15:12,"402 6th St, San Francisco, CA 94016" +319295,Lightning Charging Cable,1,14.95,12/26/19 18:32,"5 Madison St, Seattle, WA 98101" +319296,Lightning Charging Cable,1,14.95,12/15/19 12:27,"10 6th St, Los Angeles, CA 90001" +319297,27in 4K Gaming Monitor,1,389.99,12/10/19 08:55,"147 West St, Los Angeles, CA 90001" +319298,27in FHD Monitor,1,149.99,12/14/19 16:23,"956 Lake St, Dallas, TX 75001" +319299,Macbook Pro Laptop,1,1700,12/21/19 00:20,"243 12th St, Dallas, TX 75001" +319300,Flatscreen TV,1,300,12/07/19 14:52,"724 Maple St, Los Angeles, CA 90001" +319301,Lightning Charging Cable,1,14.95,12/09/19 09:10,"564 Cherry St, Los Angeles, CA 90001" +319302,Bose SoundSport Headphones,1,99.99,12/06/19 19:34,"856 Pine St, Boston, MA 02215" +319303,27in FHD Monitor,1,149.99,12/12/19 20:28,"100 Wilson St, Seattle, WA 98101" +319304,Apple Airpods Headphones,2,150,12/22/19 19:22,"461 4th St, San Francisco, CA 94016" +319305,AA Batteries (4-pack),2,3.84,12/10/19 10:15,"873 Washington St, Boston, MA 02215" +319306,USB-C Charging Cable,1,11.95,12/12/19 02:43,"379 River St, Boston, MA 02215" +319307,LG Washing Machine,1,600.0,12/15/19 09:08,"338 10th St, Dallas, TX 75001" +319308,Vareebadd Phone,1,400,12/01/19 17:12,"425 1st St, New York City, NY 10001" +319308,Wired Headphones,1,11.99,12/01/19 17:12,"425 1st St, New York City, NY 10001" +319309,Bose SoundSport Headphones,1,99.99,12/22/19 13:05,"541 Walnut St, Los Angeles, CA 90001" +319310,USB-C Charging Cable,2,11.95,12/04/19 13:23,"392 8th St, Dallas, TX 75001" +319311,AA Batteries (4-pack),2,3.84,12/06/19 16:26,"570 8th St, New York City, NY 10001" +319312,AA Batteries (4-pack),1,3.84,12/16/19 19:22,"31 2nd St, San Francisco, CA 94016" +319313,Bose SoundSport Headphones,1,99.99,12/23/19 14:28,"964 11th St, Seattle, WA 98101" +319314,Lightning Charging Cable,1,14.95,12/12/19 16:52,"216 Madison St, Seattle, WA 98101" +319315,USB-C Charging Cable,1,11.95,12/06/19 13:51,"239 Cedar St, Dallas, TX 75001" +319316,AAA Batteries (4-pack),6,2.99,12/08/19 23:23,"398 West St, Los Angeles, CA 90001" +319317,AA Batteries (4-pack),1,3.84,12/20/19 18:02,"16 Hickory St, New York City, NY 10001" +319318,USB-C Charging Cable,1,11.95,12/30/19 11:30,"959 Church St, San Francisco, CA 94016" +319319,Lightning Charging Cable,1,14.95,12/26/19 21:16,"174 11th St, Atlanta, GA 30301" +319320,27in FHD Monitor,1,149.99,12/28/19 18:41,"439 Pine St, Seattle, WA 98101" +319321,iPhone,1,700,12/29/19 11:36,"254 Sunset St, Seattle, WA 98101" +319322,Macbook Pro Laptop,1,1700,12/23/19 19:50,"337 Walnut St, Atlanta, GA 30301" +319323,AAA Batteries (4-pack),2,2.99,12/15/19 12:16,"275 2nd St, San Francisco, CA 94016" +319324,USB-C Charging Cable,1,11.95,12/13/19 20:54,"408 12th St, San Francisco, CA 94016" +319325,iPhone,1,700,12/15/19 20:23,"528 Washington St, San Francisco, CA 94016" +319325,Lightning Charging Cable,1,14.95,12/15/19 20:23,"528 Washington St, San Francisco, CA 94016" +319326,LG Washing Machine,1,600.0,12/16/19 14:14,"855 Cherry St, New York City, NY 10001" +319327,Wired Headphones,1,11.99,12/16/19 11:12,"170 Elm St, Boston, MA 02215" +319328,Flatscreen TV,1,300,12/23/19 11:12,"697 River St, New York City, NY 10001" +319329,Lightning Charging Cable,1,14.95,12/04/19 07:30,"773 10th St, Austin, TX 73301" +319330,AAA Batteries (4-pack),3,2.99,12/06/19 03:27,"736 Church St, Los Angeles, CA 90001" +319331,USB-C Charging Cable,1,11.95,12/30/19 12:35,"611 Lakeview St, Dallas, TX 75001" +319332,Lightning Charging Cable,1,14.95,12/16/19 20:13,"419 Forest St, Seattle, WA 98101" +319333,Google Phone,1,600,12/26/19 14:15,"770 Center St, Dallas, TX 75001" +319334,AA Batteries (4-pack),1,3.84,12/19/19 12:19,"697 Lakeview St, Austin, TX 73301" +319335,iPhone,1,700,12/18/19 00:26,"400 Hill St, Boston, MA 02215" +319336,USB-C Charging Cable,1,11.95,12/12/19 23:17,"428 Jefferson St, Boston, MA 02215" +319337,Lightning Charging Cable,1,14.95,12/05/19 09:50,"119 14th St, Los Angeles, CA 90001" +319338,Apple Airpods Headphones,1,150,12/23/19 19:47,"21 11th St, New York City, NY 10001" +319339,27in FHD Monitor,1,149.99,12/23/19 09:59,"965 Cedar St, Boston, MA 02215" +319340,Lightning Charging Cable,1,14.95,12/27/19 23:18,"285 Hill St, New York City, NY 10001" +319341,Lightning Charging Cable,1,14.95,12/12/19 23:56,"244 Forest St, San Francisco, CA 94016" +319342,Lightning Charging Cable,1,14.95,12/24/19 11:25,"983 Washington St, Seattle, WA 98101" +319343,Lightning Charging Cable,1,14.95,12/31/19 16:28,"690 Hill St, New York City, NY 10001" +319344,USB-C Charging Cable,1,11.95,12/31/19 12:58,"883 6th St, Portland, OR 97035" +319345,Wired Headphones,1,11.99,12/25/19 11:04,"1 Ridge St, Seattle, WA 98101" +319346,AA Batteries (4-pack),1,3.84,12/16/19 21:45,"389 Jackson St, Los Angeles, CA 90001" +319347,Lightning Charging Cable,1,14.95,12/03/19 09:48,"329 Highland St, Boston, MA 02215" +319348,AA Batteries (4-pack),1,3.84,12/09/19 20:07,"726 Chestnut St, New York City, NY 10001" +319349,Macbook Pro Laptop,1,1700,12/21/19 10:43,"588 12th St, Portland, OR 97035" +319350,27in FHD Monitor,1,149.99,12/25/19 17:56,"271 North St, San Francisco, CA 94016" +319351,27in FHD Monitor,1,149.99,12/25/19 13:33,"869 North St, San Francisco, CA 94016" +319351,iPhone,1,700,12/25/19 13:33,"869 North St, San Francisco, CA 94016" +319352,Apple Airpods Headphones,1,150,12/18/19 11:52,"537 Meadow St, New York City, NY 10001" +319352,AA Batteries (4-pack),1,3.84,12/18/19 11:52,"537 Meadow St, New York City, NY 10001" +319353,34in Ultrawide Monitor,1,379.99,12/28/19 08:00,"43 Center St, New York City, NY 10001" +319354,27in FHD Monitor,1,149.99,12/27/19 15:33,"600 4th St, Seattle, WA 98101" +319355,Wired Headphones,1,11.99,12/16/19 03:38,"322 2nd St, Boston, MA 02215" +319356,AA Batteries (4-pack),1,3.84,12/19/19 14:15,"239 Johnson St, Los Angeles, CA 90001" +319357,Flatscreen TV,1,300,12/19/19 17:00,"656 Willow St, Austin, TX 73301" +319358,Macbook Pro Laptop,1,1700,12/12/19 08:45,"467 Jackson St, Los Angeles, CA 90001" +319359,USB-C Charging Cable,1,11.95,12/23/19 20:03,"455 Lake St, San Francisco, CA 94016" +319360,Wired Headphones,1,11.99,12/21/19 13:39,"802 Madison St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +319361,USB-C Charging Cable,1,11.95,12/26/19 20:43,"27 9th St, Seattle, WA 98101" +319362,iPhone,1,700,12/31/19 12:57,"534 Ridge St, Boston, MA 02215" +319362,AAA Batteries (4-pack),3,2.99,12/31/19 12:57,"534 Ridge St, Boston, MA 02215" +319363,AAA Batteries (4-pack),2,2.99,12/23/19 12:06,"506 Hickory St, Dallas, TX 75001" +319364,AAA Batteries (4-pack),3,2.99,12/19/19 13:28,"10 9th St, Boston, MA 02215" +319365,Wired Headphones,1,11.99,12/04/19 11:50,"182 Cherry St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +319366,Wired Headphones,1,11.99,12/07/19 07:12,"268 1st St, Los Angeles, CA 90001" +319367,Apple Airpods Headphones,1,150,12/19/19 21:26,"63 10th St, San Francisco, CA 94016" +319368,USB-C Charging Cable,1,11.95,12/19/19 23:17,"269 Church St, Atlanta, GA 30301" +319369,Google Phone,1,600,12/18/19 18:21,"712 Cherry St, Austin, TX 73301" +319369,ThinkPad Laptop,1,999.99,12/18/19 18:21,"712 Cherry St, Austin, TX 73301" +319370,Wired Headphones,1,11.99,12/19/19 12:46,"909 Park St, New York City, NY 10001" +319371,20in Monitor,1,109.99,12/21/19 21:39,"454 7th St, San Francisco, CA 94016" +319372,Wired Headphones,1,11.99,12/14/19 19:45,"322 Spruce St, Los Angeles, CA 90001" +319373,Apple Airpods Headphones,1,150,12/30/19 00:21,"383 Lincoln St, San Francisco, CA 94016" +319374,AAA Batteries (4-pack),1,2.99,12/03/19 17:30,"582 Madison St, Los Angeles, CA 90001" +319375,27in 4K Gaming Monitor,1,389.99,12/13/19 08:57,"729 Spruce St, San Francisco, CA 94016" +319376,USB-C Charging Cable,1,11.95,12/30/19 11:06,"75 South St, New York City, NY 10001" +319377,USB-C Charging Cable,1,11.95,12/05/19 14:58,"737 Spruce St, New York City, NY 10001" +319378,Apple Airpods Headphones,1,150,12/11/19 21:18,"315 Forest St, San Francisco, CA 94016" +319379,AA Batteries (4-pack),2,3.84,12/25/19 11:17,"795 Lincoln St, Seattle, WA 98101" +319380,iPhone,1,700,12/17/19 15:37,"497 Pine St, Dallas, TX 75001" +319381,USB-C Charging Cable,1,11.95,12/11/19 14:26,"632 Main St, Austin, TX 73301" +319382,Lightning Charging Cable,1,14.95,12/23/19 19:01,"405 Pine St, Seattle, WA 98101" +319383,Bose SoundSport Headphones,1,99.99,12/23/19 16:58,"26 2nd St, San Francisco, CA 94016" +319384,USB-C Charging Cable,1,11.95,12/27/19 14:37,"728 Wilson St, San Francisco, CA 94016" +319385,AAA Batteries (4-pack),1,2.99,12/23/19 14:59,"485 1st St, San Francisco, CA 94016" +319386,Lightning Charging Cable,1,14.95,12/27/19 12:36,"732 Maple St, San Francisco, CA 94016" +319387,Apple Airpods Headphones,1,150,12/19/19 08:11,"947 Sunset St, Los Angeles, CA 90001" +319388,USB-C Charging Cable,1,11.95,12/16/19 14:13,"463 North St, Boston, MA 02215" +319389,AAA Batteries (4-pack),1,2.99,12/31/19 01:02,"807 Church St, San Francisco, CA 94016" +319390,Apple Airpods Headphones,1,150,12/10/19 11:49,"872 Highland St, Seattle, WA 98101" +319391,AA Batteries (4-pack),1,3.84,12/23/19 17:39,"305 Sunset St, Los Angeles, CA 90001" +319392,27in FHD Monitor,1,149.99,12/17/19 21:25,"370 Johnson St, Atlanta, GA 30301" +319393,AA Batteries (4-pack),1,3.84,12/12/19 13:49,"321 South St, Boston, MA 02215" +319394,Wired Headphones,1,11.99,12/15/19 19:08,"731 River St, New York City, NY 10001" +319395,AAA Batteries (4-pack),2,2.99,12/31/19 08:31,"432 5th St, San Francisco, CA 94016" +319396,AAA Batteries (4-pack),2,2.99,12/27/19 11:19,"475 14th St, Los Angeles, CA 90001" +319397,Flatscreen TV,1,300,12/12/19 23:27,"434 14th St, Los Angeles, CA 90001" +319398,27in 4K Gaming Monitor,1,389.99,12/02/19 10:12,"651 1st St, Boston, MA 02215" +319399,Wired Headphones,1,11.99,12/08/19 09:26,"635 Hickory St, Seattle, WA 98101" +319400,AA Batteries (4-pack),1,3.84,12/05/19 14:10,"735 Maple St, San Francisco, CA 94016" +319401,27in FHD Monitor,1,149.99,12/01/19 09:45,"361 Hill St, Atlanta, GA 30301" +319401,34in Ultrawide Monitor,1,379.99,12/01/19 09:45,"361 Hill St, Atlanta, GA 30301" +319402,AAA Batteries (4-pack),2,2.99,12/30/19 12:19,"110 Church St, Seattle, WA 98101" +319403,Apple Airpods Headphones,1,150,12/23/19 20:12,"255 Park St, New York City, NY 10001" +319404,27in FHD Monitor,1,149.99,12/29/19 12:11,"324 Hill St, Atlanta, GA 30301" +319405,AA Batteries (4-pack),2,3.84,12/10/19 11:43,"652 Madison St, New York City, NY 10001" +319406,Lightning Charging Cable,1,14.95,12/22/19 23:41,"724 Lake St, Seattle, WA 98101" +319407,AA Batteries (4-pack),2,3.84,12/24/19 17:56,"826 Meadow St, New York City, NY 10001" +319408,AA Batteries (4-pack),3,3.84,12/27/19 20:42,"272 6th St, Portland, ME 04101" +319409,USB-C Charging Cable,1,11.95,12/25/19 20:23,"401 Main St, Boston, MA 02215" +319410,USB-C Charging Cable,1,11.95,12/05/19 08:28,"697 Meadow St, New York City, NY 10001" +319411,Wired Headphones,1,11.99,12/07/19 00:56,"477 4th St, Los Angeles, CA 90001" +319412,Apple Airpods Headphones,1,150,12/05/19 18:28,"91 Hill St, Los Angeles, CA 90001" +319413,AA Batteries (4-pack),1,3.84,12/06/19 04:34,"511 Walnut St, Austin, TX 73301" +319414,iPhone,1,700,12/23/19 07:02,"481 5th St, San Francisco, CA 94016" +319415,AA Batteries (4-pack),1,3.84,12/08/19 13:25,"245 Adams St, Seattle, WA 98101" +319416,USB-C Charging Cable,1,11.95,12/18/19 12:21,"493 Johnson St, Atlanta, GA 30301" +319417,USB-C Charging Cable,1,11.95,12/11/19 21:55,"399 Cherry St, Los Angeles, CA 90001" +319418,AA Batteries (4-pack),1,3.84,12/29/19 11:52,"255 Dogwood St, Los Angeles, CA 90001" +319419,Apple Airpods Headphones,1,150,12/22/19 09:43,"961 Hickory St, New York City, NY 10001" +319420,27in 4K Gaming Monitor,1,389.99,12/29/19 14:58,"290 Cherry St, New York City, NY 10001" +319421,AAA Batteries (4-pack),1,2.99,12/08/19 18:18,"951 7th St, Boston, MA 02215" +319422,Wired Headphones,1,11.99,12/07/19 04:27,"167 Washington St, Boston, MA 02215" +319423,Bose SoundSport Headphones,1,99.99,12/03/19 20:33,"43 Maple St, Dallas, TX 75001" +319424,27in FHD Monitor,1,149.99,12/30/19 10:33,"643 Walnut St, San Francisco, CA 94016" +319425,Bose SoundSport Headphones,1,99.99,12/05/19 05:06,"403 Wilson St, Seattle, WA 98101" +319426,27in FHD Monitor,1,149.99,12/19/19 14:55,"882 Adams St, Los Angeles, CA 90001" +319427,27in 4K Gaming Monitor,1,389.99,12/02/19 12:13,"202 Lakeview St, Los Angeles, CA 90001" +319428,Macbook Pro Laptop,1,1700,12/02/19 14:05,"237 Dogwood St, San Francisco, CA 94016" +319429,Wired Headphones,1,11.99,12/25/19 10:22,"388 Cherry St, Los Angeles, CA 90001" +319430,34in Ultrawide Monitor,1,379.99,12/30/19 21:27,"231 River St, Seattle, WA 98101" +319431,27in FHD Monitor,1,149.99,12/21/19 23:01,"661 Hickory St, Boston, MA 02215" +319432,AA Batteries (4-pack),1,3.84,12/07/19 09:12,"983 1st St, San Francisco, CA 94016" +319433,USB-C Charging Cable,1,11.95,12/25/19 12:30,"863 Forest St, New York City, NY 10001" +319434,USB-C Charging Cable,1,11.95,12/12/19 19:23,"858 Wilson St, Seattle, WA 98101" +319435,Vareebadd Phone,1,400,12/24/19 08:20,"410 Chestnut St, San Francisco, CA 94016" +319436,AAA Batteries (4-pack),1,2.99,12/26/19 12:37,"61 West St, Austin, TX 73301" +319437,Google Phone,1,600,12/13/19 15:39,"230 West St, Boston, MA 02215" +319438,Wired Headphones,1,11.99,12/16/19 10:56,"437 Washington St, San Francisco, CA 94016" +319439,Wired Headphones,1,11.99,12/24/19 22:28,"48 5th St, Los Angeles, CA 90001" +319440,Apple Airpods Headphones,1,150,12/16/19 08:14,"211 14th St, Atlanta, GA 30301" +319441,20in Monitor,1,109.99,12/08/19 07:08,"880 10th St, San Francisco, CA 94016" +319442,AAA Batteries (4-pack),2,2.99,12/12/19 20:51,"787 Pine St, Seattle, WA 98101" +319443,Bose SoundSport Headphones,1,99.99,12/07/19 14:46,"386 Highland St, Austin, TX 73301" +319444,AAA Batteries (4-pack),2,2.99,12/28/19 11:50,"309 Center St, Los Angeles, CA 90001" +319445,27in FHD Monitor,1,149.99,12/30/19 13:28,"542 4th St, New York City, NY 10001" +319446,Lightning Charging Cable,1,14.95,12/09/19 21:09,"339 Pine St, New York City, NY 10001" +319447,Lightning Charging Cable,1,14.95,12/17/19 01:54,"411 Maple St, Portland, OR 97035" +319448,Apple Airpods Headphones,1,150,12/30/19 18:07,"534 10th St, San Francisco, CA 94016" +319449,iPhone,1,700,12/09/19 12:24,"580 Park St, Los Angeles, CA 90001" +319449,Lightning Charging Cable,1,14.95,12/09/19 12:24,"580 Park St, Los Angeles, CA 90001" +319450,Flatscreen TV,1,300,12/31/19 18:20,"849 Sunset St, Portland, ME 04101" +319451,Apple Airpods Headphones,1,150,12/10/19 14:37,"665 Lake St, Boston, MA 02215" +319452,USB-C Charging Cable,1,11.95,12/11/19 06:55,"603 River St, Dallas, TX 75001" +319453,USB-C Charging Cable,1,11.95,12/05/19 19:51,"405 Sunset St, Los Angeles, CA 90001" +319454,Wired Headphones,1,11.99,12/19/19 15:03,"454 Forest St, New York City, NY 10001" +319455,AA Batteries (4-pack),1,3.84,12/24/19 11:58,"555 7th St, Los Angeles, CA 90001" +319456,Lightning Charging Cable,1,14.95,12/31/19 15:37,"825 River St, Atlanta, GA 30301" +319457,USB-C Charging Cable,1,11.95,12/02/19 22:18,"507 Sunset St, San Francisco, CA 94016" +319458,AAA Batteries (4-pack),2,2.99,12/16/19 14:59,"713 Elm St, New York City, NY 10001" +319459,AAA Batteries (4-pack),1,2.99,12/21/19 17:57,"882 Church St, Seattle, WA 98101" +319460,Bose SoundSport Headphones,1,99.99,12/22/19 12:52,"927 Hill St, San Francisco, CA 94016" +319461,Lightning Charging Cable,1,14.95,12/19/19 19:15,"491 Dogwood St, Austin, TX 73301" +319462,20in Monitor,1,109.99,12/05/19 09:58,"303 2nd St, San Francisco, CA 94016" +319463,27in 4K Gaming Monitor,1,389.99,12/04/19 19:25,"120 13th St, Boston, MA 02215" +319464,AAA Batteries (4-pack),1,2.99,12/25/19 23:02,"882 Lincoln St, San Francisco, CA 94016" +319465,AA Batteries (4-pack),1,3.84,12/01/19 21:42,"865 Hill St, New York City, NY 10001" +319466,Bose SoundSport Headphones,1,99.99,12/03/19 12:21,"804 Highland St, Los Angeles, CA 90001" +319467,Wired Headphones,1,11.99,12/03/19 13:32,"952 Meadow St, Boston, MA 02215" +319468,Lightning Charging Cable,1,14.95,12/11/19 16:45,"198 Pine St, Boston, MA 02215" +319469,AAA Batteries (4-pack),1,2.99,12/02/19 09:18,"742 Highland St, San Francisco, CA 94016" +319470,34in Ultrawide Monitor,1,379.99,12/03/19 15:18,"48 Hill St, Dallas, TX 75001" +319471,27in FHD Monitor,1,149.99,12/04/19 13:07,"709 Hill St, San Francisco, CA 94016" +319472,Wired Headphones,1,11.99,12/11/19 15:12,"157 Dogwood St, Seattle, WA 98101" +319473,iPhone,1,700,12/13/19 16:26,"282 Cherry St, Boston, MA 02215" +319474,AAA Batteries (4-pack),3,2.99,12/25/19 17:28,"234 Lincoln St, Austin, TX 73301" +319475,USB-C Charging Cable,1,11.95,12/12/19 09:44,"943 9th St, Boston, MA 02215" +319476,Wired Headphones,1,11.99,12/26/19 13:56,"699 River St, New York City, NY 10001" +319477,AA Batteries (4-pack),2,3.84,12/10/19 19:44,"689 Hill St, Boston, MA 02215" +319478,AA Batteries (4-pack),1,3.84,12/02/19 12:44,"448 14th St, Dallas, TX 75001" +319479,Apple Airpods Headphones,1,150,12/30/19 19:45,"259 Jackson St, Boston, MA 02215" +319480,AAA Batteries (4-pack),1,2.99,12/01/19 06:19,"980 9th St, Seattle, WA 98101" +319481,ThinkPad Laptop,1,999.99,12/29/19 17:55,"773 Cedar St, Los Angeles, CA 90001" +319482,AA Batteries (4-pack),1,3.84,12/17/19 20:10,"391 Hickory St, Seattle, WA 98101" +319483,Macbook Pro Laptop,1,1700,12/23/19 15:16,"835 Forest St, Seattle, WA 98101" +319484,ThinkPad Laptop,1,999.99,12/21/19 22:17,"489 1st St, Dallas, TX 75001" +319485,AA Batteries (4-pack),1,3.84,12/05/19 15:32,"132 1st St, San Francisco, CA 94016" +319486,AAA Batteries (4-pack),1,2.99,12/08/19 09:58,"746 Hickory St, Los Angeles, CA 90001" +319487,Lightning Charging Cable,1,14.95,12/25/19 15:59,"689 South St, Seattle, WA 98101" +319488,Wired Headphones,1,11.99,12/09/19 19:30,"722 Chestnut St, San Francisco, CA 94016" +319489,Wired Headphones,1,11.99,12/08/19 08:46,"904 4th St, San Francisco, CA 94016" +319490,Bose SoundSport Headphones,1,99.99,12/26/19 12:11,"826 2nd St, Dallas, TX 75001" +319491,Macbook Pro Laptop,1,1700,12/05/19 16:32,"659 7th St, Austin, TX 73301" +319492,Wired Headphones,1,11.99,12/24/19 13:34,"534 11th St, New York City, NY 10001" +319493,Apple Airpods Headphones,1,150,12/20/19 13:02,"412 Spruce St, Seattle, WA 98101" +319494,iPhone,1,700,12/18/19 19:54,"788 South St, Boston, MA 02215" +319495,Flatscreen TV,1,300,12/20/19 14:52,"548 8th St, San Francisco, CA 94016" +319496,Lightning Charging Cable,1,14.95,12/05/19 09:09,"740 Main St, Seattle, WA 98101" +319497,USB-C Charging Cable,1,11.95,12/12/19 22:44,"104 Cedar St, Dallas, TX 75001" +319498,AAA Batteries (4-pack),2,2.99,12/28/19 22:38,"698 Hickory St, New York City, NY 10001" +319499,AA Batteries (4-pack),1,3.84,12/01/19 23:47,"684 10th St, Boston, MA 02215" +319500,Google Phone,1,600,12/23/19 10:03,"1 Ridge St, Portland, ME 04101" +319500,Bose SoundSport Headphones,1,99.99,12/23/19 10:03,"1 Ridge St, Portland, ME 04101" +319500,Wired Headphones,1,11.99,12/23/19 10:03,"1 Ridge St, Portland, ME 04101" +319501,Macbook Pro Laptop,1,1700,12/14/19 12:38,"828 Park St, Los Angeles, CA 90001" +319502,AA Batteries (4-pack),2,3.84,12/08/19 15:43,"644 Maple St, San Francisco, CA 94016" +319503,Bose SoundSport Headphones,1,99.99,12/12/19 11:57,"986 Highland St, Atlanta, GA 30301" +319504,20in Monitor,1,109.99,12/19/19 16:31,"378 10th St, San Francisco, CA 94016" +319505,Wired Headphones,2,11.99,12/26/19 12:34,"58 Madison St, Los Angeles, CA 90001" +319506,Apple Airpods Headphones,1,150,12/26/19 18:02,"185 Hickory St, New York City, NY 10001" +319507,USB-C Charging Cable,1,11.95,12/27/19 21:29,"501 10th St, San Francisco, CA 94016" +319508,Vareebadd Phone,1,400,12/16/19 14:57,"931 Jackson St, Portland, OR 97035" +319509,Flatscreen TV,1,300,12/17/19 18:37,"687 Spruce St, Seattle, WA 98101" +319510,AA Batteries (4-pack),1,3.84,12/23/19 03:58,"258 Willow St, New York City, NY 10001" +319511,Wired Headphones,1,11.99,12/25/19 22:41,"69 Main St, Seattle, WA 98101" +319512,AAA Batteries (4-pack),1,2.99,12/29/19 15:32,"346 Sunset St, Atlanta, GA 30301" +319513,Apple Airpods Headphones,1,150,12/26/19 11:25,"487 Dogwood St, Atlanta, GA 30301" +319514,Apple Airpods Headphones,1,150,12/06/19 15:07,"485 Highland St, San Francisco, CA 94016" +319515,Lightning Charging Cable,1,14.95,12/25/19 19:21,"753 Ridge St, Portland, OR 97035" +319516,27in 4K Gaming Monitor,1,389.99,12/16/19 10:59,"729 Willow St, Portland, ME 04101" +319517,Wired Headphones,1,11.99,12/16/19 08:02,"438 Meadow St, New York City, NY 10001" +319518,Lightning Charging Cable,1,14.95,12/19/19 07:24,"568 Center St, Boston, MA 02215" +319519,Apple Airpods Headphones,1,150,12/30/19 12:59,"581 Adams St, Austin, TX 73301" +319520,Lightning Charging Cable,1,14.95,12/07/19 12:19,"660 Pine St, New York City, NY 10001" +319521,27in 4K Gaming Monitor,1,389.99,12/20/19 21:15,"297 Lakeview St, Boston, MA 02215" +319522,Apple Airpods Headphones,1,150,12/21/19 12:43,"643 1st St, Los Angeles, CA 90001" +319523,AAA Batteries (4-pack),1,2.99,12/28/19 11:20,"140 Adams St, San Francisco, CA 94016" +319524,USB-C Charging Cable,1,11.95,12/06/19 12:41,"394 Lakeview St, Boston, MA 02215" +319525,Lightning Charging Cable,1,14.95,12/10/19 19:08,"904 Jackson St, Portland, OR 97035" +319526,AA Batteries (4-pack),1,3.84,12/26/19 16:03,"961 Lincoln St, Boston, MA 02215" +319527,USB-C Charging Cable,1,11.95,12/14/19 17:29,"368 River St, Atlanta, GA 30301" +319528,27in FHD Monitor,1,149.99,12/17/19 10:30,"196 Adams St, Dallas, TX 75001" +319529,AAA Batteries (4-pack),2,2.99,12/13/19 09:16,"60 Highland St, Seattle, WA 98101" +319530,LG Dryer,1,600.0,12/10/19 13:05,"661 Wilson St, San Francisco, CA 94016" +319531,Wired Headphones,1,11.99,12/09/19 17:00,"206 Church St, Seattle, WA 98101" +319532,USB-C Charging Cable,1,11.95,12/23/19 13:04,"365 Dogwood St, San Francisco, CA 94016" +319533,Wired Headphones,1,11.99,12/04/19 17:32,"945 Ridge St, Los Angeles, CA 90001" +319534,Macbook Pro Laptop,1,1700,12/30/19 11:27,"48 Johnson St, Seattle, WA 98101" +319535,AA Batteries (4-pack),1,3.84,12/07/19 11:18,"186 Spruce St, San Francisco, CA 94016" +319536,AA Batteries (4-pack),2,3.84,12/26/19 17:34,"412 Forest St, Austin, TX 73301" +319537,Wired Headphones,1,11.99,12/20/19 22:09,"201 Walnut St, Austin, TX 73301" +319538,Bose SoundSport Headphones,1,99.99,12/30/19 11:46,"813 Johnson St, New York City, NY 10001" +319539,34in Ultrawide Monitor,1,379.99,12/27/19 22:43,"122 Pine St, Austin, TX 73301" +319540,Lightning Charging Cable,1,14.95,12/24/19 14:31,"741 Washington St, Boston, MA 02215" +319541,AA Batteries (4-pack),2,3.84,12/15/19 14:07,"259 Park St, San Francisco, CA 94016" +319541,Macbook Pro Laptop,1,1700,12/15/19 14:07,"259 Park St, San Francisco, CA 94016" +319542,Wired Headphones,1,11.99,12/31/19 18:31,"92 Park St, Los Angeles, CA 90001" +319543,AA Batteries (4-pack),1,3.84,12/10/19 17:31,"47 Lake St, Seattle, WA 98101" +319544,USB-C Charging Cable,1,11.95,12/16/19 11:31,"128 Church St, Seattle, WA 98101" +319545,Bose SoundSport Headphones,1,99.99,12/13/19 13:20,"466 6th St, Atlanta, GA 30301" +319546,USB-C Charging Cable,1,11.95,12/12/19 16:58,"376 Adams St, Atlanta, GA 30301" +319547,Lightning Charging Cable,1,14.95,12/13/19 14:35,"224 Park St, Boston, MA 02215" +319548,Lightning Charging Cable,2,14.95,12/08/19 07:15,"597 Jackson St, Dallas, TX 75001" +319549,27in FHD Monitor,1,149.99,12/09/19 10:03,"696 Hickory St, Portland, ME 04101" +319550,Lightning Charging Cable,1,14.95,12/07/19 18:37,"550 2nd St, Dallas, TX 75001" +319551,Bose SoundSport Headphones,1,99.99,12/16/19 21:53,"597 5th St, Seattle, WA 98101" +319552,USB-C Charging Cable,1,11.95,12/20/19 00:25,"738 4th St, Dallas, TX 75001" +319553,AAA Batteries (4-pack),3,2.99,12/20/19 10:23,"178 Wilson St, New York City, NY 10001" +319554,Lightning Charging Cable,1,14.95,12/05/19 20:12,"992 Maple St, New York City, NY 10001" +319555,USB-C Charging Cable,1,11.95,12/26/19 16:19,"960 Main St, New York City, NY 10001" +319556,USB-C Charging Cable,1,11.95,12/12/19 07:33,"586 Spruce St, Los Angeles, CA 90001" +319557,AA Batteries (4-pack),1,3.84,12/10/19 16:15,"707 Madison St, New York City, NY 10001" +319557,AAA Batteries (4-pack),2,2.99,12/10/19 16:15,"707 Madison St, New York City, NY 10001" +319558,AA Batteries (4-pack),2,3.84,12/21/19 17:40,"597 2nd St, Atlanta, GA 30301" +319559,Macbook Pro Laptop,1,1700,12/06/19 20:56,"58 8th St, San Francisco, CA 94016" +319560,LG Washing Machine,1,600.0,12/20/19 19:56,"285 Madison St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +319561,Google Phone,1,600,12/06/19 17:57,"485 Cherry St, New York City, NY 10001" +319562,Wired Headphones,1,11.99,12/28/19 21:38,"765 Lincoln St, Boston, MA 02215" +319563,AA Batteries (4-pack),1,3.84,12/31/19 12:21,"533 North St, Seattle, WA 98101" +319564,AAA Batteries (4-pack),2,2.99,12/27/19 17:05,"574 Forest St, Dallas, TX 75001" +319565,AA Batteries (4-pack),1,3.84,12/06/19 01:25,"751 9th St, Austin, TX 73301" +319566,27in 4K Gaming Monitor,1,389.99,12/19/19 13:50,"495 Wilson St, New York City, NY 10001" +319567,USB-C Charging Cable,1,11.95,12/11/19 11:32,"768 7th St, Los Angeles, CA 90001" +319568,27in FHD Monitor,1,149.99,12/28/19 16:50,"180 Lincoln St, Atlanta, GA 30301" +319569,Apple Airpods Headphones,1,150,12/11/19 15:05,"410 South St, Dallas, TX 75001" +319570,Wired Headphones,1,11.99,12/28/19 16:44,"412 Washington St, New York City, NY 10001" +319571,34in Ultrawide Monitor,1,379.99,12/30/19 12:32,"487 5th St, Atlanta, GA 30301" +319572,LG Washing Machine,1,600.0,12/13/19 11:56,"73 9th St, Boston, MA 02215" +319573,20in Monitor,1,109.99,12/11/19 00:40,"922 South St, Boston, MA 02215" +319574,AAA Batteries (4-pack),2,2.99,12/24/19 15:16,"3 Walnut St, Portland, OR 97035" +319575,AAA Batteries (4-pack),2,2.99,12/05/19 01:05,"151 Lincoln St, New York City, NY 10001" +319576,34in Ultrawide Monitor,1,379.99,12/08/19 22:34,"471 Park St, San Francisco, CA 94016" +319577,USB-C Charging Cable,1,11.95,12/21/19 23:02,"933 4th St, Atlanta, GA 30301" +319578,Lightning Charging Cable,1,14.95,12/23/19 22:58,"13 Cherry St, Dallas, TX 75001" +319579,Apple Airpods Headphones,1,150,12/10/19 00:36,"612 Dogwood St, Boston, MA 02215" +319580,AA Batteries (4-pack),1,3.84,12/18/19 12:47,"229 5th St, San Francisco, CA 94016" +319581,Google Phone,1,600,12/02/19 21:05,"771 Forest St, Austin, TX 73301" +319581,Wired Headphones,1,11.99,12/02/19 21:05,"771 Forest St, Austin, TX 73301" +319582,Flatscreen TV,1,300,12/29/19 19:49,"31 9th St, San Francisco, CA 94016" +319583,AAA Batteries (4-pack),3,2.99,12/14/19 23:57,"21 7th St, New York City, NY 10001" +319583,AA Batteries (4-pack),2,3.84,12/14/19 23:57,"21 7th St, New York City, NY 10001" +319584,Bose SoundSport Headphones,1,99.99,12/13/19 22:41,"554 Jefferson St, Portland, OR 97035" +319585,Apple Airpods Headphones,1,150,12/26/19 01:00,"3 Cedar St, Boston, MA 02215" +319586,Bose SoundSport Headphones,1,99.99,12/14/19 14:17,"569 Jefferson St, Austin, TX 73301" +319587,USB-C Charging Cable,2,11.95,12/15/19 18:14,"751 Jackson St, San Francisco, CA 94016" +319588,AA Batteries (4-pack),1,3.84,12/16/19 15:40,"935 Forest St, Los Angeles, CA 90001" +319589,27in FHD Monitor,1,149.99,12/01/19 22:55,"608 Lakeview St, Los Angeles, CA 90001" +319590,Apple Airpods Headphones,1,150,12/15/19 12:31,"965 2nd St, San Francisco, CA 94016" +319591,Apple Airpods Headphones,1,150,12/01/19 21:28,"200 4th St, New York City, NY 10001" +319592,Google Phone,1,600,12/24/19 10:38,"565 Adams St, New York City, NY 10001" +319592,Wired Headphones,1,11.99,12/24/19 10:38,"565 Adams St, New York City, NY 10001" +319593,USB-C Charging Cable,1,11.95,12/22/19 20:15,"563 Lincoln St, Boston, MA 02215" +319594,ThinkPad Laptop,1,999.99,12/25/19 17:41,"905 11th St, Los Angeles, CA 90001" +319595,Wired Headphones,1,11.99,12/13/19 08:35,"469 6th St, San Francisco, CA 94016" +319596,Wired Headphones,1,11.99,12/15/19 11:15,"748 Church St, Austin, TX 73301" +319596,Google Phone,1,600,12/15/19 11:15,"748 Church St, Austin, TX 73301" +319597,AA Batteries (4-pack),1,3.84,12/10/19 13:47,"200 Madison St, San Francisco, CA 94016" +319598,27in 4K Gaming Monitor,1,389.99,12/05/19 14:52,"223 Hickory St, Los Angeles, CA 90001" +319599,iPhone,1,700,12/21/19 16:47,"71 9th St, Austin, TX 73301" +319599,Wired Headphones,1,11.99,12/21/19 16:47,"71 9th St, Austin, TX 73301" +319600,AA Batteries (4-pack),1,3.84,12/08/19 22:06,"935 14th St, Los Angeles, CA 90001" +319601,Lightning Charging Cable,1,14.95,12/19/19 16:06,"812 Highland St, Los Angeles, CA 90001" +319602,27in 4K Gaming Monitor,1,389.99,12/12/19 13:03,"216 West St, Los Angeles, CA 90001" +319603,USB-C Charging Cable,1,11.95,12/10/19 15:54,"937 6th St, New York City, NY 10001" +319604,AAA Batteries (4-pack),1,2.99,12/04/19 10:24,"89 2nd St, Atlanta, GA 30301" +319605,AA Batteries (4-pack),2,3.84,12/05/19 17:19,"393 Highland St, San Francisco, CA 94016" +319606,Wired Headphones,1,11.99,12/12/19 16:01,"213 9th St, San Francisco, CA 94016" +319607,Wired Headphones,1,11.99,12/27/19 21:56,"68 Chestnut St, Boston, MA 02215" +319608,AAA Batteries (4-pack),1,2.99,12/19/19 19:14,"403 Walnut St, Atlanta, GA 30301" +319609,AAA Batteries (4-pack),1,2.99,12/13/19 05:53,"988 Washington St, San Francisco, CA 94016" +319610,Lightning Charging Cable,1,14.95,12/28/19 21:10,"380 Madison St, Atlanta, GA 30301" +,,,,, +319611,Google Phone,1,600,12/07/19 17:18,"509 13th St, New York City, NY 10001" +319612,iPhone,1,700,12/23/19 11:16,"572 11th St, Portland, OR 97035" +319613,USB-C Charging Cable,1,11.95,12/20/19 18:01,"355 Lake St, New York City, NY 10001" +319614,Wired Headphones,1,11.99,12/03/19 17:02,"167 Willow St, Atlanta, GA 30301" +319615,AA Batteries (4-pack),1,3.84,12/15/19 11:42,"915 Washington St, Atlanta, GA 30301" +319615,34in Ultrawide Monitor,1,379.99,12/15/19 11:42,"915 Washington St, Atlanta, GA 30301" +319616,USB-C Charging Cable,1,11.95,12/31/19 21:38,"753 West St, New York City, NY 10001" +319617,AAA Batteries (4-pack),2,2.99,12/01/19 11:57,"341 11th St, Los Angeles, CA 90001" +319618,Wired Headphones,1,11.99,12/19/19 06:50,"94 Main St, San Francisco, CA 94016" +319619,iPhone,1,700,12/09/19 17:17,"128 Church St, Dallas, TX 75001" +319619,Apple Airpods Headphones,1,150,12/09/19 17:17,"128 Church St, Dallas, TX 75001" +319620,Bose SoundSport Headphones,1,99.99,12/01/19 19:57,"7 1st St, Portland, ME 04101" +319621,AAA Batteries (4-pack),1,2.99,12/12/19 11:44,"14 Chestnut St, Los Angeles, CA 90001" +319622,Lightning Charging Cable,1,14.95,12/16/19 12:15,"273 6th St, Portland, OR 97035" +319623,AA Batteries (4-pack),2,3.84,12/20/19 09:31,"572 1st St, Portland, OR 97035" +319624,AAA Batteries (4-pack),2,2.99,12/09/19 21:24,"494 7th St, New York City, NY 10001" +319625,AA Batteries (4-pack),1,3.84,12/14/19 19:47,"718 Jackson St, Austin, TX 73301" +319626,Wired Headphones,1,11.99,12/31/19 21:49,"279 Cedar St, Los Angeles, CA 90001" +319627,Wired Headphones,1,11.99,12/04/19 20:07,"832 Meadow St, New York City, NY 10001" +319628,Lightning Charging Cable,1,14.95,12/20/19 18:24,"387 Chestnut St, San Francisco, CA 94016" +319629,Lightning Charging Cable,1,14.95,12/28/19 12:26,"517 Lincoln St, New York City, NY 10001" +319630,AA Batteries (4-pack),4,3.84,12/27/19 17:26,"52 Highland St, New York City, NY 10001" +319631,Bose SoundSport Headphones,1,99.99,12/18/19 16:36,"469 Ridge St, Los Angeles, CA 90001" +319632,Lightning Charging Cable,1,14.95,12/09/19 18:48,"611 7th St, Portland, OR 97035" +319633,Wired Headphones,1,11.99,12/29/19 14:27,"654 Spruce St, Boston, MA 02215" +319634,Bose SoundSport Headphones,1,99.99,12/01/19 18:09,"157 Jefferson St, Austin, TX 73301" +319635,Bose SoundSport Headphones,1,99.99,12/16/19 11:11,"365 Jefferson St, New York City, NY 10001" +319636,AA Batteries (4-pack),1,3.84,12/11/19 19:35,"780 9th St, Seattle, WA 98101" +319637,AA Batteries (4-pack),2,3.84,12/10/19 09:36,"865 North St, New York City, NY 10001" +319638,27in FHD Monitor,1,149.99,12/11/19 18:04,"139 6th St, Los Angeles, CA 90001" +319639,Google Phone,1,600,12/26/19 17:18,"738 2nd St, Boston, MA 02215" +319639,USB-C Charging Cable,1,11.95,12/26/19 17:18,"738 2nd St, Boston, MA 02215" +319640,AA Batteries (4-pack),2,3.84,12/09/19 14:14,"215 West St, San Francisco, CA 94016" +319641,ThinkPad Laptop,1,999.99,12/04/19 16:26,"575 West St, New York City, NY 10001" +319642,USB-C Charging Cable,2,11.95,12/04/19 14:48,"820 Madison St, Los Angeles, CA 90001" +319643,Lightning Charging Cable,1,14.95,12/02/19 19:10,"820 Johnson St, San Francisco, CA 94016" +319644,ThinkPad Laptop,1,999.99,12/08/19 15:53,"431 Forest St, Seattle, WA 98101" +319645,Lightning Charging Cable,1,14.95,12/29/19 10:46,"924 Lakeview St, Los Angeles, CA 90001" +319646,Apple Airpods Headphones,1,150,12/18/19 03:56,"951 6th St, San Francisco, CA 94016" +319647,USB-C Charging Cable,2,11.95,12/16/19 18:23,"218 Willow St, Portland, OR 97035" +319648,iPhone,1,700,12/30/19 14:56,"293 Highland St, Los Angeles, CA 90001" +319648,Lightning Charging Cable,1,14.95,12/30/19 14:56,"293 Highland St, Los Angeles, CA 90001" +319649,Wired Headphones,1,11.99,12/25/19 17:18,"142 Adams St, San Francisco, CA 94016" +319650,Apple Airpods Headphones,1,150,12/26/19 20:12,"358 4th St, Boston, MA 02215" +319651,Lightning Charging Cable,1,14.95,12/31/19 13:19,"513 Center St, San Francisco, CA 94016" +319652,Lightning Charging Cable,1,14.95,12/04/19 15:32,"253 5th St, Boston, MA 02215" +319653,20in Monitor,1,109.99,12/23/19 12:11,"663 8th St, Boston, MA 02215" +319654,Google Phone,1,600,12/09/19 18:55,"693 West St, Dallas, TX 75001" +319655,AA Batteries (4-pack),2,3.84,12/18/19 20:15,"870 Park St, Atlanta, GA 30301" +319656,AAA Batteries (4-pack),1,2.99,12/24/19 00:31,"6 Highland St, Los Angeles, CA 90001" +319657,Lightning Charging Cable,1,14.95,12/29/19 13:12,"993 Park St, Boston, MA 02215" +319658,AA Batteries (4-pack),1,3.84,12/01/19 13:06,"887 14th St, Dallas, TX 75001" +319659,Apple Airpods Headphones,1,150,12/22/19 01:14,"528 Adams St, Seattle, WA 98101" +319660,Bose SoundSport Headphones,1,99.99,12/27/19 00:20,"364 Cherry St, Boston, MA 02215" +319661,Lightning Charging Cable,1,14.95,12/27/19 20:45,"673 Lakeview St, Los Angeles, CA 90001" +319662,iPhone,1,700,12/29/19 15:07,"897 Jackson St, San Francisco, CA 94016" +319663,USB-C Charging Cable,1,11.95,12/26/19 21:19,"297 Jackson St, Boston, MA 02215" +319664,Apple Airpods Headphones,1,150,12/04/19 08:27,"149 Church St, Los Angeles, CA 90001" +319665,Wired Headphones,1,11.99,12/23/19 18:35,"272 Chestnut St, New York City, NY 10001" +319666,AA Batteries (4-pack),1,3.84,12/30/19 18:51,"163 Jefferson St, Boston, MA 02215" +319667,Lightning Charging Cable,1,14.95,12/01/19 18:33,"285 Chestnut St, New York City, NY 10001" +319668,Lightning Charging Cable,1,14.95,12/22/19 15:52,"414 7th St, Dallas, TX 75001" +319669,AAA Batteries (4-pack),1,2.99,12/23/19 21:51,"450 Ridge St, Austin, TX 73301" +319670,USB-C Charging Cable,1,11.95,12/07/19 00:09,"57 Jackson St, Boston, MA 02215" +319671,USB-C Charging Cable,1,11.95,12/04/19 12:00,"366 Sunset St, Portland, ME 04101" +319672,AA Batteries (4-pack),1,3.84,12/19/19 12:02,"892 Jefferson St, Los Angeles, CA 90001" +319673,AA Batteries (4-pack),1,3.84,12/25/19 11:27,"87 Lake St, Austin, TX 73301" +319674,AA Batteries (4-pack),1,3.84,12/15/19 19:10,"872 Lincoln St, New York City, NY 10001" +319675,Apple Airpods Headphones,1,150,12/18/19 23:08,"646 Lincoln St, Boston, MA 02215" +319676,Wired Headphones,2,11.99,12/12/19 12:37,"206 6th St, Portland, OR 97035" +319677,34in Ultrawide Monitor,1,379.99,12/15/19 20:04,"483 Park St, Atlanta, GA 30301" +319678,USB-C Charging Cable,1,11.95,12/28/19 14:54,"180 Madison St, New York City, NY 10001" +319679,20in Monitor,1,109.99,12/22/19 13:12,"542 1st St, San Francisco, CA 94016" +319680,AAA Batteries (4-pack),1,2.99,12/16/19 21:16,"148 Hill St, Atlanta, GA 30301" +319681,27in FHD Monitor,1,149.99,12/01/19 12:27,"379 River St, San Francisco, CA 94016" +319682,iPhone,1,700,12/17/19 14:03,"658 Hill St, San Francisco, CA 94016" +319683,Bose SoundSport Headphones,1,99.99,12/10/19 22:25,"167 10th St, New York City, NY 10001" +319684,34in Ultrawide Monitor,1,379.99,12/15/19 08:46,"72 Spruce St, New York City, NY 10001" +319685,20in Monitor,1,109.99,12/19/19 15:07,"512 Willow St, Seattle, WA 98101" +319686,Macbook Pro Laptop,1,1700,12/10/19 23:40,"337 Sunset St, New York City, NY 10001" +319687,Lightning Charging Cable,2,14.95,12/14/19 23:07,"446 Center St, San Francisco, CA 94016" +319688,AA Batteries (4-pack),1,3.84,12/11/19 16:58,"526 12th St, Dallas, TX 75001" +319689,Wired Headphones,1,11.99,12/03/19 21:29,"671 13th St, San Francisco, CA 94016" +319690,20in Monitor,1,109.99,12/23/19 12:18,"779 Maple St, Atlanta, GA 30301" +319691,Bose SoundSport Headphones,1,99.99,12/16/19 12:45,"514 Willow St, New York City, NY 10001" +319692,AAA Batteries (4-pack),1,2.99,12/15/19 13:18,"563 2nd St, Boston, MA 02215" +319693,Bose SoundSport Headphones,1,99.99,12/21/19 12:05,"87 13th St, Boston, MA 02215" +319694,AAA Batteries (4-pack),1,2.99,12/13/19 17:14,"891 8th St, Austin, TX 73301" +319695,AA Batteries (4-pack),1,3.84,12/08/19 10:18,"223 Walnut St, Austin, TX 73301" +319696,Lightning Charging Cable,1,14.95,12/18/19 12:32,"664 Chestnut St, Atlanta, GA 30301" +319697,AA Batteries (4-pack),1,3.84,12/06/19 15:48,"50 North St, San Francisco, CA 94016" +319698,AA Batteries (4-pack),1,3.84,12/22/19 11:39,"270 Walnut St, San Francisco, CA 94016" +319699,27in 4K Gaming Monitor,1,389.99,12/09/19 18:32,"121 North St, Portland, ME 04101" +319700,AAA Batteries (4-pack),1,2.99,12/25/19 10:48,"434 13th St, San Francisco, CA 94016" +319701,USB-C Charging Cable,1,11.95,12/09/19 15:39,"460 Highland St, Atlanta, GA 30301" +319702,Apple Airpods Headphones,1,150,12/02/19 10:44,"112 10th St, Los Angeles, CA 90001" +319703,Wired Headphones,1,11.99,12/17/19 12:43,"256 Spruce St, Boston, MA 02215" +319704,USB-C Charging Cable,2,11.95,12/19/19 17:10,"3 Lincoln St, Boston, MA 02215" +319705,USB-C Charging Cable,1,11.95,12/20/19 15:58,"380 Elm St, Seattle, WA 98101" +319706,27in 4K Gaming Monitor,1,389.99,12/31/19 19:34,"662 Elm St, Atlanta, GA 30301" +319707,Wired Headphones,1,11.99,12/27/19 15:31,"243 Maple St, New York City, NY 10001" +319708,27in FHD Monitor,1,149.99,12/21/19 21:09,"371 Adams St, San Francisco, CA 94016" +319709,AA Batteries (4-pack),1,3.84,12/09/19 21:00,"2 Adams St, Dallas, TX 75001" +319710,AA Batteries (4-pack),3,3.84,12/20/19 11:21,"197 Lincoln St, San Francisco, CA 94016" +319711,AAA Batteries (4-pack),1,2.99,12/05/19 16:31,"708 Jefferson St, Atlanta, GA 30301" +319712,Lightning Charging Cable,1,14.95,12/13/19 21:27,"958 Spruce St, San Francisco, CA 94016" +319713,Lightning Charging Cable,1,14.95,12/18/19 21:39,"896 Johnson St, Boston, MA 02215" +319714,Wired Headphones,1,11.99,12/29/19 17:47,"797 Cherry St, Atlanta, GA 30301" +319715,AAA Batteries (4-pack),1,2.99,12/28/19 20:31,"356 Hill St, San Francisco, CA 94016" +319716,AA Batteries (4-pack),6,3.84,12/03/19 09:24,"659 Sunset St, Boston, MA 02215" +319717,AAA Batteries (4-pack),1,2.99,12/11/19 12:41,"633 Washington St, San Francisco, CA 94016" +319718,Flatscreen TV,1,300,12/16/19 10:18,"344 6th St, Los Angeles, CA 90001" +319719,Lightning Charging Cable,1,14.95,12/29/19 11:07,"593 South St, Los Angeles, CA 90001" +319720,Apple Airpods Headphones,1,150,12/14/19 14:36,"723 Jackson St, New York City, NY 10001" +319721,Lightning Charging Cable,1,14.95,12/03/19 18:38,"998 Chestnut St, New York City, NY 10001" +319722,AAA Batteries (4-pack),1,2.99,12/19/19 11:04,"74 1st St, Seattle, WA 98101" +319723,USB-C Charging Cable,1,11.95,12/12/19 21:22,"583 Jackson St, Los Angeles, CA 90001" +319724,AA Batteries (4-pack),1,3.84,12/01/19 17:48,"252 Sunset St, Atlanta, GA 30301" +319725,AA Batteries (4-pack),1,3.84,12/18/19 23:37,"888 Lakeview St, San Francisco, CA 94016" +319726,34in Ultrawide Monitor,1,379.99,12/22/19 19:14,"294 4th St, San Francisco, CA 94016" +319727,USB-C Charging Cable,1,11.95,12/01/19 10:34,"527 Washington St, Austin, TX 73301" +319728,USB-C Charging Cable,1,11.95,12/25/19 11:55,"849 Washington St, Los Angeles, CA 90001" +319729,AA Batteries (4-pack),1,3.84,12/11/19 04:11,"25 River St, San Francisco, CA 94016" +,,,,, +319730,Bose SoundSport Headphones,1,99.99,12/09/19 12:11,"931 Johnson St, New York City, NY 10001" +319731,Apple Airpods Headphones,1,150,12/04/19 14:49,"167 14th St, Los Angeles, CA 90001" +319732,AAA Batteries (4-pack),1,2.99,12/25/19 13:01,"172 Forest St, Boston, MA 02215" +319733,Apple Airpods Headphones,1,150,12/25/19 00:07,"244 11th St, San Francisco, CA 94016" +319734,AAA Batteries (4-pack),1,2.99,12/15/19 20:26,"518 Maple St, Los Angeles, CA 90001" +319735,Bose SoundSport Headphones,1,99.99,12/04/19 22:23,"19 5th St, Boston, MA 02215" +319736,AA Batteries (4-pack),1,3.84,12/20/19 09:22,"932 14th St, Los Angeles, CA 90001" +319737,34in Ultrawide Monitor,1,379.99,12/26/19 20:34,"229 Cherry St, Boston, MA 02215" +319738,Wired Headphones,1,11.99,12/16/19 13:27,"853 Church St, San Francisco, CA 94016" +319739,27in 4K Gaming Monitor,1,389.99,12/06/19 12:39,"288 Sunset St, San Francisco, CA 94016" +319740,27in 4K Gaming Monitor,1,389.99,12/11/19 18:30,"814 Cherry St, San Francisco, CA 94016" +319741,34in Ultrawide Monitor,1,379.99,12/20/19 15:56,"569 Lakeview St, Boston, MA 02215" +319742,AAA Batteries (4-pack),1,2.99,12/20/19 18:49,"162 Madison St, Los Angeles, CA 90001" +319743,AAA Batteries (4-pack),1,2.99,12/12/19 08:35,"802 8th St, Atlanta, GA 30301" +319744,Wired Headphones,1,11.99,12/02/19 20:57,"401 Johnson St, New York City, NY 10001" +319745,Bose SoundSport Headphones,1,99.99,12/24/19 21:25,"852 Sunset St, Portland, OR 97035" +319746,Wired Headphones,1,11.99,12/13/19 15:20,"98 9th St, Los Angeles, CA 90001" +319747,Apple Airpods Headphones,1,150,12/23/19 12:56,"625 Wilson St, Los Angeles, CA 90001" +319748,USB-C Charging Cable,1,11.95,12/18/19 09:31,"556 Highland St, Atlanta, GA 30301" +319749,20in Monitor,1,109.99,12/09/19 12:59,"784 11th St, Atlanta, GA 30301" +319750,USB-C Charging Cable,1,11.95,12/14/19 20:34,"105 13th St, Dallas, TX 75001" +319751,Bose SoundSport Headphones,1,99.99,12/28/19 20:36,"93 Ridge St, San Francisco, CA 94016" +319752,34in Ultrawide Monitor,1,379.99,12/22/19 12:32,"595 5th St, Portland, OR 97035" +319753,AAA Batteries (4-pack),1,2.99,12/21/19 09:58,"555 10th St, Boston, MA 02215" +319754,Lightning Charging Cable,1,14.95,12/16/19 20:38,"696 Lincoln St, Dallas, TX 75001" +319755,USB-C Charging Cable,1,11.95,12/23/19 21:36,"282 9th St, Los Angeles, CA 90001" +319756,Flatscreen TV,1,300,12/08/19 19:06,"649 14th St, Atlanta, GA 30301" +319757,AAA Batteries (4-pack),1,2.99,12/02/19 12:56,"469 Chestnut St, Los Angeles, CA 90001" +319758,Apple Airpods Headphones,1,150,12/13/19 21:48,"276 Lincoln St, Seattle, WA 98101" +319759,Bose SoundSport Headphones,1,99.99,12/23/19 20:03,"286 8th St, Boston, MA 02215" +319760,Lightning Charging Cable,1,14.95,12/08/19 14:44,"975 Maple St, San Francisco, CA 94016" +319761,AA Batteries (4-pack),1,3.84,12/09/19 00:04,"438 7th St, Austin, TX 73301" +319761,USB-C Charging Cable,1,11.95,12/09/19 00:04,"438 7th St, Austin, TX 73301" +319762,USB-C Charging Cable,1,11.95,12/05/19 00:48,"721 Jefferson St, Austin, TX 73301" +319763,USB-C Charging Cable,1,11.95,12/19/19 00:28,"835 12th St, Dallas, TX 75001" +319764,AA Batteries (4-pack),1,3.84,12/25/19 10:16,"320 Washington St, San Francisco, CA 94016" +319765,Bose SoundSport Headphones,1,99.99,12/18/19 20:25,"912 Jefferson St, Los Angeles, CA 90001" +319766,Google Phone,1,600,12/16/19 10:43,"156 Walnut St, Boston, MA 02215" +319767,Wired Headphones,1,11.99,12/31/19 15:28,"220 Madison St, San Francisco, CA 94016" +319768,27in 4K Gaming Monitor,1,389.99,12/26/19 17:35,"652 Lincoln St, Los Angeles, CA 90001" +319769,AAA Batteries (4-pack),1,2.99,12/24/19 20:34,"465 Hill St, Austin, TX 73301" +319770,34in Ultrawide Monitor,1,379.99,12/19/19 10:59,"816 8th St, Los Angeles, CA 90001" +319771,Macbook Pro Laptop,1,1700,12/14/19 14:05,"917 Meadow St, San Francisco, CA 94016" +319772,Flatscreen TV,1,300,12/25/19 15:04,"912 Johnson St, San Francisco, CA 94016" +319773,Wired Headphones,1,11.99,12/17/19 16:54,"379 Cherry St, San Francisco, CA 94016" +319774,Flatscreen TV,1,300,12/24/19 12:43,"409 North St, Boston, MA 02215" +319775,Apple Airpods Headphones,1,150,12/22/19 12:08,"289 Pine St, San Francisco, CA 94016" +319776,27in 4K Gaming Monitor,1,389.99,12/10/19 08:51,"378 Lakeview St, Boston, MA 02215" +319777,AAA Batteries (4-pack),2,2.99,12/25/19 08:01,"907 Lincoln St, Portland, ME 04101" +319778,34in Ultrawide Monitor,1,379.99,12/01/19 15:25,"736 14th St, San Francisco, CA 94016" +319779,AAA Batteries (4-pack),1,2.99,12/17/19 12:18,"967 North St, Los Angeles, CA 90001" +319780,Apple Airpods Headphones,1,150,12/31/19 00:53,"622 Main St, Austin, TX 73301" +319781,Bose SoundSport Headphones,1,99.99,12/13/19 14:30,"797 Willow St, Los Angeles, CA 90001" +319782,Wired Headphones,1,11.99,12/19/19 20:10,"932 6th St, San Francisco, CA 94016" +319783,Bose SoundSport Headphones,1,99.99,12/20/19 18:36,"188 11th St, Dallas, TX 75001" +319784,Lightning Charging Cable,1,14.95,12/08/19 17:34,"34 North St, San Francisco, CA 94016" +319785,27in FHD Monitor,1,149.99,12/13/19 22:49,"265 Cherry St, Los Angeles, CA 90001" +319786,Bose SoundSport Headphones,1,99.99,12/14/19 13:06,"921 8th St, San Francisco, CA 94016" +319787,USB-C Charging Cable,1,11.95,12/09/19 04:18,"386 Cedar St, San Francisco, CA 94016" +319788,AA Batteries (4-pack),2,3.84,12/12/19 17:48,"448 11th St, Seattle, WA 98101" +319789,Lightning Charging Cable,2,14.95,12/29/19 10:54,"261 Cherry St, Boston, MA 02215" +319790,USB-C Charging Cable,1,11.95,12/23/19 13:53,"628 Willow St, Atlanta, GA 30301" +319791,Lightning Charging Cable,1,14.95,12/23/19 15:08,"34 Madison St, Seattle, WA 98101" +319792,AA Batteries (4-pack),1,3.84,12/01/19 23:37,"242 North St, Los Angeles, CA 90001" +319793,34in Ultrawide Monitor,1,379.99,12/14/19 13:31,"226 West St, Los Angeles, CA 90001" +319794,Bose SoundSport Headphones,1,99.99,12/26/19 09:46,"359 Spruce St, San Francisco, CA 94016" +319795,AA Batteries (4-pack),2,3.84,12/07/19 04:26,"828 Johnson St, San Francisco, CA 94016" +319796,34in Ultrawide Monitor,1,379.99,12/06/19 15:32,"731 South St, Boston, MA 02215" +319797,20in Monitor,1,109.99,12/28/19 17:54,"76 Highland St, New York City, NY 10001" +319798,iPhone,1,700,12/19/19 22:01,"161 Main St, Boston, MA 02215" +319799,Bose SoundSport Headphones,1,99.99,12/24/19 12:11,"875 Hickory St, Austin, TX 73301" +319800,USB-C Charging Cable,1,11.95,12/22/19 13:19,"414 Johnson St, Los Angeles, CA 90001" +319801,Lightning Charging Cable,1,14.95,12/17/19 12:13,"116 River St, Seattle, WA 98101" +319802,iPhone,1,700,12/10/19 13:18,"832 Lake St, New York City, NY 10001" +319803,Apple Airpods Headphones,1,150,12/06/19 18:31,"540 10th St, San Francisco, CA 94016" +319804,Bose SoundSport Headphones,1,99.99,12/05/19 21:47,"124 Lincoln St, Los Angeles, CA 90001" +319805,Lightning Charging Cable,1,14.95,12/28/19 18:57,"567 Meadow St, San Francisco, CA 94016" +319806,Wired Headphones,1,11.99,12/06/19 13:52,"403 Cedar St, San Francisco, CA 94016" +319807,AAA Batteries (4-pack),3,2.99,12/09/19 08:59,"354 7th St, San Francisco, CA 94016" +319808,27in 4K Gaming Monitor,1,389.99,12/31/19 22:09,"195 Pine St, Boston, MA 02215" +319809,Lightning Charging Cable,1,14.95,12/14/19 05:53,"627 Spruce St, San Francisco, CA 94016" +319810,LG Dryer,1,600.0,12/28/19 18:21,"777 Elm St, San Francisco, CA 94016" +319811,AA Batteries (4-pack),1,3.84,12/15/19 16:59,"749 6th St, San Francisco, CA 94016" +319812,27in FHD Monitor,1,149.99,12/03/19 20:31,"746 Elm St, Dallas, TX 75001" +319813,Google Phone,1,600,12/04/19 18:56,"537 Cedar St, San Francisco, CA 94016" +319814,Apple Airpods Headphones,1,150,12/08/19 12:17,"364 Hickory St, New York City, NY 10001" +319815,Google Phone,1,600,12/07/19 09:30,"80 Hickory St, San Francisco, CA 94016" +319816,Apple Airpods Headphones,1,150,12/12/19 11:13,"334 1st St, New York City, NY 10001" +319817,Bose SoundSport Headphones,1,99.99,12/29/19 14:06,"90 4th St, Dallas, TX 75001" +319818,AAA Batteries (4-pack),1,2.99,12/25/19 14:34,"915 River St, Dallas, TX 75001" +319819,Bose SoundSport Headphones,1,99.99,12/21/19 23:12,"630 Willow St, New York City, NY 10001" +319820,Google Phone,1,600,12/07/19 18:01,"520 Cherry St, New York City, NY 10001" +319820,USB-C Charging Cable,1,11.95,12/07/19 18:01,"520 Cherry St, New York City, NY 10001" +319821,Lightning Charging Cable,1,14.95,12/07/19 20:28,"744 Spruce St, Boston, MA 02215" +319822,Wired Headphones,1,11.99,12/30/19 19:35,"783 Sunset St, Seattle, WA 98101" +319823,AAA Batteries (4-pack),1,2.99,12/18/19 22:38,"354 Forest St, Atlanta, GA 30301" +319824,AAA Batteries (4-pack),2,2.99,12/19/19 11:34,"56 Cherry St, San Francisco, CA 94016" +319825,Apple Airpods Headphones,1,150,12/22/19 10:18,"369 14th St, Dallas, TX 75001" +,,,,, +319826,iPhone,1,700,12/28/19 17:01,"978 Center St, Los Angeles, CA 90001" +319826,Lightning Charging Cable,1,14.95,12/28/19 17:01,"978 Center St, Los Angeles, CA 90001" +319827,AAA Batteries (4-pack),2,2.99,12/07/19 18:33,"17 8th St, San Francisco, CA 94016" +319828,AAA Batteries (4-pack),2,2.99,12/06/19 17:28,"765 4th St, Boston, MA 02215" +319829,ThinkPad Laptop,1,999.99,12/14/19 13:29,"875 Washington St, Boston, MA 02215" +319830,AA Batteries (4-pack),1,3.84,12/24/19 17:20,"790 North St, San Francisco, CA 94016" +319831,iPhone,1,700,12/09/19 12:03,"382 Hickory St, San Francisco, CA 94016" +319832,Wired Headphones,1,11.99,12/28/19 11:19,"299 Lakeview St, New York City, NY 10001" +319833,Flatscreen TV,1,300,12/11/19 20:17,"433 1st St, San Francisco, CA 94016" +319834,Wired Headphones,1,11.99,12/10/19 08:09,"832 Spruce St, New York City, NY 10001" +319835,27in 4K Gaming Monitor,1,389.99,12/09/19 17:13,"644 2nd St, New York City, NY 10001" +319836,Lightning Charging Cable,1,14.95,12/27/19 01:12,"166 Maple St, San Francisco, CA 94016" +319837,Wired Headphones,1,11.99,12/31/19 13:31,"211 Elm St, Los Angeles, CA 90001" +319838,AAA Batteries (4-pack),3,2.99,12/29/19 13:11,"495 4th St, Boston, MA 02215" +319839,Wired Headphones,1,11.99,12/29/19 08:15,"663 Willow St, San Francisco, CA 94016" +319840,Apple Airpods Headphones,1,150,12/06/19 13:36,"652 Walnut St, Los Angeles, CA 90001" +319841,AA Batteries (4-pack),1,3.84,12/25/19 16:25,"477 12th St, New York City, NY 10001" +319842,AAA Batteries (4-pack),1,2.99,12/08/19 10:50,"687 River St, Atlanta, GA 30301" +319843,Google Phone,1,600,12/04/19 16:36,"11 Hickory St, Boston, MA 02215" +319844,AAA Batteries (4-pack),2,2.99,12/29/19 22:00,"520 Chestnut St, Dallas, TX 75001" +319845,27in FHD Monitor,1,149.99,12/14/19 02:18,"654 Highland St, New York City, NY 10001" +319846,27in 4K Gaming Monitor,1,389.99,12/07/19 23:01,"921 8th St, New York City, NY 10001" +319847,Flatscreen TV,1,300,12/22/19 19:20,"720 7th St, New York City, NY 10001" +319848,Google Phone,1,600,12/11/19 21:10,"125 4th St, San Francisco, CA 94016" +319848,USB-C Charging Cable,1,11.95,12/11/19 21:10,"125 4th St, San Francisco, CA 94016" +319849,Wired Headphones,1,11.99,12/24/19 10:50,"241 Washington St, San Francisco, CA 94016" +319850,34in Ultrawide Monitor,1,379.99,12/03/19 16:38,"728 12th St, San Francisco, CA 94016" +319851,Lightning Charging Cable,1,14.95,12/28/19 12:15,"381 Pine St, Boston, MA 02215" +319852,Wired Headphones,1,11.99,12/31/19 11:43,"563 South St, Los Angeles, CA 90001" +319853,Flatscreen TV,1,300,12/12/19 10:55,"273 Cedar St, Seattle, WA 98101" +319854,Wired Headphones,1,11.99,12/26/19 20:03,"417 Walnut St, San Francisco, CA 94016" +319855,AAA Batteries (4-pack),3,2.99,12/19/19 20:49,"10 Spruce St, San Francisco, CA 94016" +319856,34in Ultrawide Monitor,1,379.99,12/13/19 20:43,"460 4th St, Boston, MA 02215" +319857,AA Batteries (4-pack),2,3.84,12/30/19 02:08,"152 Lincoln St, Atlanta, GA 30301" +319858,27in 4K Gaming Monitor,1,389.99,12/10/19 18:39,"535 Elm St, Portland, OR 97035" +319859,Apple Airpods Headphones,1,150,12/09/19 18:51,"226 14th St, Portland, OR 97035" +319860,20in Monitor,1,109.99,12/02/19 09:33,"711 Jackson St, San Francisco, CA 94016" +319861,Macbook Pro Laptop,1,1700,12/01/19 07:26,"808 12th St, Portland, OR 97035" +319862,27in FHD Monitor,1,149.99,12/12/19 13:09,"693 Chestnut St, San Francisco, CA 94016" +319863,AAA Batteries (4-pack),1,2.99,12/31/19 11:05,"995 Spruce St, Portland, OR 97035" +319864,USB-C Charging Cable,1,11.95,12/31/19 10:56,"565 Pine St, Atlanta, GA 30301" +319865,Macbook Pro Laptop,1,1700,12/22/19 07:33,"310 Pine St, New York City, NY 10001" +319866,Lightning Charging Cable,1,14.95,12/11/19 19:29,"173 Spruce St, Los Angeles, CA 90001" +319867,Google Phone,1,600,12/21/19 09:56,"200 Adams St, Austin, TX 73301" +319868,AA Batteries (4-pack),2,3.84,12/26/19 00:20,"48 Cedar St, Los Angeles, CA 90001" +319869,20in Monitor,1,109.99,12/07/19 19:09,"498 Washington St, San Francisco, CA 94016" +319870,AAA Batteries (4-pack),2,2.99,12/13/19 04:50,"4 Lincoln St, San Francisco, CA 94016" +319871,Lightning Charging Cable,1,14.95,12/06/19 21:08,"449 10th St, Atlanta, GA 30301" +319872,Lightning Charging Cable,1,14.95,12/07/19 05:13,"700 Hickory St, San Francisco, CA 94016" +319873,Google Phone,1,600,12/12/19 19:48,"879 Washington St, Los Angeles, CA 90001" +319873,USB-C Charging Cable,1,11.95,12/12/19 19:48,"879 Washington St, Los Angeles, CA 90001" +319874,Bose SoundSport Headphones,1,99.99,12/13/19 09:18,"114 10th St, San Francisco, CA 94016" +319875,USB-C Charging Cable,1,11.95,12/06/19 13:58,"119 Jackson St, San Francisco, CA 94016" +319876,Bose SoundSport Headphones,1,99.99,12/25/19 18:50,"500 9th St, New York City, NY 10001" +319877,Macbook Pro Laptop,1,1700,12/29/19 20:41,"398 Walnut St, Seattle, WA 98101" +319878,AA Batteries (4-pack),1,3.84,12/22/19 17:44,"933 14th St, San Francisco, CA 94016" +319879,Google Phone,1,600,12/09/19 17:53,"810 West St, Austin, TX 73301" +319880,Google Phone,1,600,12/09/19 19:28,"967 12th St, Portland, OR 97035" +319880,USB-C Charging Cable,1,11.95,12/09/19 19:28,"967 12th St, Portland, OR 97035" +319881,AA Batteries (4-pack),1,3.84,12/05/19 14:05,"304 14th St, San Francisco, CA 94016" +319882,USB-C Charging Cable,1,11.95,12/15/19 19:02,"506 Wilson St, San Francisco, CA 94016" +319883,Wired Headphones,1,11.99,12/14/19 22:04,"970 Forest St, Boston, MA 02215" +319884,Lightning Charging Cable,1,14.95,12/01/19 13:21,"997 Meadow St, San Francisco, CA 94016" +319885,Apple Airpods Headphones,1,150,12/03/19 11:23,"476 Lincoln St, San Francisco, CA 94016" +319886,USB-C Charging Cable,1,11.95,12/16/19 22:56,"602 South St, Atlanta, GA 30301" +319887,Wired Headphones,1,11.99,12/11/19 18:55,"94 Dogwood St, Boston, MA 02215" +319888,Google Phone,1,600,12/19/19 13:22,"911 Walnut St, San Francisco, CA 94016" +319889,USB-C Charging Cable,1,11.95,12/15/19 03:08,"197 Wilson St, San Francisco, CA 94016" +319890,Apple Airpods Headphones,1,150,12/22/19 20:33,"828 Willow St, San Francisco, CA 94016" +319891,27in FHD Monitor,1,149.99,12/03/19 23:26,"480 2nd St, Los Angeles, CA 90001" +319892,Bose SoundSport Headphones,1,99.99,12/19/19 21:06,"435 12th St, Atlanta, GA 30301" +319893,Flatscreen TV,1,300,12/18/19 11:41,"539 5th St, Portland, OR 97035" +319894,USB-C Charging Cable,1,11.95,12/30/19 08:18,"702 10th St, Portland, OR 97035" +319895,AAA Batteries (4-pack),3,2.99,12/17/19 19:46,"14 Jefferson St, Boston, MA 02215" +319896,AAA Batteries (4-pack),2,2.99,12/16/19 15:26,"60 Meadow St, San Francisco, CA 94016" +319897,27in 4K Gaming Monitor,1,389.99,12/18/19 13:02,"972 Meadow St, Seattle, WA 98101" +319898,34in Ultrawide Monitor,1,379.99,12/25/19 15:37,"32 Willow St, San Francisco, CA 94016" +319899,Lightning Charging Cable,1,14.95,12/30/19 17:31,"76 Church St, San Francisco, CA 94016" +319900,34in Ultrawide Monitor,1,379.99,12/20/19 13:06,"122 West St, Atlanta, GA 30301" +319901,Lightning Charging Cable,1,14.95,12/01/19 10:55,"352 Meadow St, Austin, TX 73301" +319902,Apple Airpods Headphones,1,150,12/14/19 09:19,"935 14th St, Dallas, TX 75001" +319903,AAA Batteries (4-pack),5,2.99,12/29/19 08:10,"769 Sunset St, San Francisco, CA 94016" +319904,Apple Airpods Headphones,1,150,12/15/19 13:20,"20 Chestnut St, Boston, MA 02215" +319905,Lightning Charging Cable,2,14.95,12/24/19 15:41,"981 Lakeview St, Boston, MA 02215" +319906,USB-C Charging Cable,1,11.95,12/03/19 11:04,"680 South St, Portland, OR 97035" +319907,Vareebadd Phone,1,400,12/16/19 12:56,"239 Chestnut St, Atlanta, GA 30301" +319907,USB-C Charging Cable,1,11.95,12/16/19 12:56,"239 Chestnut St, Atlanta, GA 30301" +319908,27in 4K Gaming Monitor,1,389.99,12/13/19 13:36,"277 Maple St, Seattle, WA 98101" +319909,AAA Batteries (4-pack),1,2.99,12/24/19 15:07,"329 12th St, Portland, ME 04101" +319910,20in Monitor,1,109.99,12/22/19 00:35,"431 6th St, New York City, NY 10001" +319911,Apple Airpods Headphones,1,150,12/22/19 13:18,"192 Dogwood St, Dallas, TX 75001" +319912,Vareebadd Phone,1,400,12/28/19 11:12,"768 Adams St, New York City, NY 10001" +319913,Apple Airpods Headphones,1,150,12/16/19 14:49,"940 11th St, San Francisco, CA 94016" +319914,Lightning Charging Cable,1,14.95,12/04/19 21:07,"225 Jackson St, Atlanta, GA 30301" +319915,27in FHD Monitor,1,149.99,12/02/19 08:34,"564 6th St, New York City, NY 10001" +319916,Lightning Charging Cable,2,14.95,12/08/19 17:56,"34 Johnson St, San Francisco, CA 94016" +319917,AAA Batteries (4-pack),1,2.99,12/20/19 09:50,"186 Center St, Boston, MA 02215" +319918,AA Batteries (4-pack),1,3.84,12/27/19 07:38,"179 Meadow St, Atlanta, GA 30301" +319919,Lightning Charging Cable,1,14.95,12/15/19 12:58,"539 2nd St, Los Angeles, CA 90001" +319920,USB-C Charging Cable,1,11.95,12/12/19 03:18,"603 Elm St, New York City, NY 10001" +319921,Flatscreen TV,1,300,12/02/19 10:13,"936 Jackson St, Los Angeles, CA 90001" +319922,Wired Headphones,1,11.99,12/25/19 18:55,"820 Johnson St, Dallas, TX 75001" +319923,Flatscreen TV,1,300,12/03/19 07:29,"945 Spruce St, Seattle, WA 98101" +319924,Bose SoundSport Headphones,1,99.99,12/11/19 12:27,"429 6th St, San Francisco, CA 94016" +319925,AA Batteries (4-pack),1,3.84,12/25/19 13:50,"892 Highland St, Boston, MA 02215" +319926,LG Washing Machine,1,600.0,12/23/19 13:26,"275 Highland St, San Francisco, CA 94016" +319927,Lightning Charging Cable,1,14.95,12/01/19 17:04,"155 Ridge St, Seattle, WA 98101" +319928,USB-C Charging Cable,1,11.95,12/07/19 12:44,"868 11th St, Dallas, TX 75001" +319929,Lightning Charging Cable,1,14.95,12/21/19 10:07,"214 Sunset St, Los Angeles, CA 90001" +319930,20in Monitor,1,109.99,12/26/19 13:44,"96 Walnut St, Seattle, WA 98101" +319931,AA Batteries (4-pack),2,3.84,12/19/19 15:49,"38 Willow St, San Francisco, CA 94016" +319932,34in Ultrawide Monitor,1,379.99,12/29/19 20:46,"81 Lake St, San Francisco, CA 94016" +319933,AAA Batteries (4-pack),1,2.99,12/22/19 13:19,"339 Dogwood St, Seattle, WA 98101" +319934,Lightning Charging Cable,1,14.95,12/01/19 17:23,"990 1st St, Atlanta, GA 30301" +319935,Lightning Charging Cable,1,14.95,12/02/19 07:51,"568 Cedar St, San Francisco, CA 94016" +319936,Macbook Pro Laptop,1,1700,12/17/19 11:01,"246 7th St, Portland, ME 04101" +319937,ThinkPad Laptop,1,999.99,12/14/19 09:07,"603 11th St, Austin, TX 73301" +319938,Wired Headphones,1,11.99,12/05/19 22:46,"318 Cherry St, Seattle, WA 98101" +319939,AA Batteries (4-pack),1,3.84,12/10/19 13:06,"820 North St, Boston, MA 02215" +319940,USB-C Charging Cable,1,11.95,12/27/19 16:21,"740 7th St, Los Angeles, CA 90001" +319941,Lightning Charging Cable,1,14.95,12/19/19 21:18,"48 Church St, New York City, NY 10001" +319941,AA Batteries (4-pack),1,3.84,12/19/19 21:18,"48 Church St, New York City, NY 10001" +319942,Flatscreen TV,1,300,12/04/19 21:02,"257 Chestnut St, Los Angeles, CA 90001" +319943,Vareebadd Phone,1,400,12/19/19 14:13,"671 2nd St, Dallas, TX 75001" +319944,Lightning Charging Cable,1,14.95,12/26/19 16:46,"866 Cherry St, New York City, NY 10001" +319945,AA Batteries (4-pack),1,3.84,12/04/19 21:32,"59 Jefferson St, Los Angeles, CA 90001" +319946,Bose SoundSport Headphones,1,99.99,12/19/19 16:46,"81 Washington St, Los Angeles, CA 90001" +319947,iPhone,1,700,12/01/19 08:30,"956 Church St, Portland, OR 97035" +319948,AA Batteries (4-pack),1,3.84,12/20/19 11:30,"941 9th St, Boston, MA 02215" +319949,AAA Batteries (4-pack),1,2.99,12/08/19 11:04,"152 North St, San Francisco, CA 94016" +319950,Apple Airpods Headphones,1,150,12/03/19 12:19,"231 4th St, San Francisco, CA 94016" +319951,Apple Airpods Headphones,1,150,12/03/19 21:38,"473 Center St, San Francisco, CA 94016" +319952,USB-C Charging Cable,1,11.95,12/28/19 16:49,"325 14th St, Los Angeles, CA 90001" +319953,Apple Airpods Headphones,1,150,12/25/19 09:17,"496 Johnson St, Portland, OR 97035" +319954,Apple Airpods Headphones,1,150,12/25/19 12:30,"774 Cherry St, Portland, OR 97035" +319955,34in Ultrawide Monitor,1,379.99,12/19/19 10:29,"861 Johnson St, San Francisco, CA 94016" +319956,20in Monitor,1,109.99,12/13/19 11:09,"265 1st St, Los Angeles, CA 90001" +319957,ThinkPad Laptop,1,999.99,12/09/19 14:10,"456 Church St, Dallas, TX 75001" +319958,AA Batteries (4-pack),1,3.84,12/04/19 13:11,"909 Cherry St, San Francisco, CA 94016" +319958,USB-C Charging Cable,2,11.95,12/04/19 13:11,"909 Cherry St, San Francisco, CA 94016" +319959,AAA Batteries (4-pack),1,2.99,12/31/19 13:21,"232 South St, San Francisco, CA 94016" +319960,Flatscreen TV,1,300,12/09/19 16:49,"680 Church St, Los Angeles, CA 90001" +319961,iPhone,1,700,12/21/19 20:47,"9 Cherry St, Seattle, WA 98101" +319961,Apple Airpods Headphones,1,150,12/21/19 20:47,"9 Cherry St, Seattle, WA 98101" +319962,AAA Batteries (4-pack),1,2.99,12/22/19 16:11,"780 Lakeview St, Austin, TX 73301" +319963,Bose SoundSport Headphones,1,99.99,12/11/19 14:54,"185 Park St, Atlanta, GA 30301" +319964,Wired Headphones,1,11.99,12/07/19 13:18,"653 6th St, Atlanta, GA 30301" +319965,USB-C Charging Cable,2,11.95,12/15/19 15:58,"297 1st St, New York City, NY 10001" +319966,Google Phone,1,600,12/24/19 12:09,"368 8th St, San Francisco, CA 94016" +319966,USB-C Charging Cable,1,11.95,12/24/19 12:09,"368 8th St, San Francisco, CA 94016" +319966,Bose SoundSport Headphones,1,99.99,12/24/19 12:09,"368 8th St, San Francisco, CA 94016" +319967,Google Phone,1,600,12/20/19 23:08,"283 Jefferson St, San Francisco, CA 94016" +319968,USB-C Charging Cable,1,11.95,12/09/19 17:26,"7 1st St, Atlanta, GA 30301" +319969,Lightning Charging Cable,1,14.95,12/03/19 17:15,"612 11th St, Dallas, TX 75001" +319970,USB-C Charging Cable,1,11.95,12/09/19 05:35,"382 Sunset St, Boston, MA 02215" +319971,ThinkPad Laptop,1,999.99,12/22/19 18:34,"785 Hickory St, Boston, MA 02215" +319972,AA Batteries (4-pack),1,3.84,12/23/19 11:48,"138 Meadow St, Dallas, TX 75001" +319973,AAA Batteries (4-pack),1,2.99,12/10/19 09:16,"745 Ridge St, Boston, MA 02215" +319974,AA Batteries (4-pack),1,3.84,12/14/19 18:34,"158 14th St, New York City, NY 10001" +319975,USB-C Charging Cable,1,11.95,12/26/19 10:00,"574 Walnut St, San Francisco, CA 94016" +319976,AAA Batteries (4-pack),1,2.99,12/04/19 11:45,"622 7th St, Austin, TX 73301" +319977,Lightning Charging Cable,1,14.95,12/17/19 09:08,"762 Hill St, Boston, MA 02215" +319978,AA Batteries (4-pack),1,3.84,12/17/19 17:23,"101 Main St, New York City, NY 10001" +319979,iPhone,1,700,12/26/19 20:50,"380 Sunset St, San Francisco, CA 94016" +319979,Apple Airpods Headphones,1,150,12/26/19 20:50,"380 Sunset St, San Francisco, CA 94016" +319980,AAA Batteries (4-pack),1,2.99,12/20/19 20:38,"856 North St, Dallas, TX 75001" +319981,AAA Batteries (4-pack),1,2.99,12/02/19 18:56,"606 Wilson St, Seattle, WA 98101" +319982,USB-C Charging Cable,1,11.95,12/19/19 10:22,"468 Cedar St, New York City, NY 10001" +319983,Wired Headphones,3,11.99,12/20/19 16:52,"100 Johnson St, San Francisco, CA 94016" +319984,Flatscreen TV,1,300,12/29/19 12:57,"411 Forest St, San Francisco, CA 94016" +319985,AA Batteries (4-pack),1,3.84,12/06/19 23:52,"303 2nd St, Portland, OR 97035" +319986,USB-C Charging Cable,2,11.95,12/05/19 13:58,"516 Wilson St, San Francisco, CA 94016" +319987,Vareebadd Phone,1,400,12/29/19 14:10,"622 7th St, San Francisco, CA 94016" +319988,USB-C Charging Cable,1,11.95,12/11/19 13:57,"326 Pine St, Dallas, TX 75001" +319989,Apple Airpods Headphones,1,150,12/30/19 12:04,"976 Spruce St, New York City, NY 10001" +319990,27in FHD Monitor,1,149.99,12/01/19 07:37,"9 Dogwood St, Dallas, TX 75001" +319991,Apple Airpods Headphones,1,150,12/03/19 09:17,"523 Lakeview St, San Francisco, CA 94016" +319992,34in Ultrawide Monitor,1,379.99,12/30/19 08:58,"385 Johnson St, Boston, MA 02215" +319993,Bose SoundSport Headphones,1,99.99,12/04/19 18:04,"247 Jackson St, San Francisco, CA 94016" +319994,Wired Headphones,1,11.99,12/18/19 16:29,"15 Ridge St, San Francisco, CA 94016" +319995,USB-C Charging Cable,1,11.95,12/19/19 16:41,"328 Chestnut St, New York City, NY 10001" +319996,AAA Batteries (4-pack),1,2.99,12/05/19 11:25,"464 West St, San Francisco, CA 94016" +319997,Lightning Charging Cable,1,14.95,12/22/19 06:53,"912 Elm St, San Francisco, CA 94016" +319998,Flatscreen TV,1,300,12/31/19 12:01,"996 Ridge St, San Francisco, CA 94016" +319999,27in FHD Monitor,1,149.99,12/24/19 20:08,"355 Highland St, Dallas, TX 75001" +320000,Wired Headphones,1,11.99,12/07/19 17:46,"142 West St, Los Angeles, CA 90001" +320001,Flatscreen TV,1,300,12/29/19 15:27,"319 Highland St, Atlanta, GA 30301" +320002,Apple Airpods Headphones,1,150,12/14/19 19:43,"404 Dogwood St, New York City, NY 10001" +320003,AA Batteries (4-pack),1,3.84,12/28/19 19:20,"349 North St, New York City, NY 10001" +320003,AAA Batteries (4-pack),1,2.99,12/28/19 19:20,"349 North St, New York City, NY 10001" +320004,34in Ultrawide Monitor,1,379.99,12/10/19 14:41,"901 Washington St, Boston, MA 02215" +320005,USB-C Charging Cable,1,11.95,12/08/19 10:59,"907 Park St, San Francisco, CA 94016" +320006,Wired Headphones,1,11.99,12/23/19 11:49,"966 Washington St, San Francisco, CA 94016" +320007,Apple Airpods Headphones,1,150,12/04/19 20:39,"457 14th St, San Francisco, CA 94016" +320008,Wired Headphones,1,11.99,12/22/19 14:11,"381 Washington St, Austin, TX 73301" +320009,20in Monitor,1,109.99,12/16/19 17:02,"743 Forest St, Atlanta, GA 30301" +320010,AA Batteries (4-pack),1,3.84,12/01/19 15:34,"167 Meadow St, Atlanta, GA 30301" +320011,AAA Batteries (4-pack),1,2.99,12/08/19 14:10,"883 4th St, Los Angeles, CA 90001" +320012,USB-C Charging Cable,1,11.95,12/15/19 11:00,"688 Sunset St, Austin, TX 73301" +320013,AA Batteries (4-pack),1,3.84,12/19/19 11:18,"740 Spruce St, Portland, ME 04101" +320014,Wired Headphones,1,11.99,12/26/19 09:11,"322 Jackson St, Seattle, WA 98101" +320015,Wired Headphones,1,11.99,12/01/19 14:47,"629 Walnut St, San Francisco, CA 94016" +320016,USB-C Charging Cable,1,11.95,12/29/19 20:33,"98 Maple St, New York City, NY 10001" +320017,USB-C Charging Cable,1,11.95,12/02/19 19:52,"849 Chestnut St, Portland, ME 04101" +320018,USB-C Charging Cable,1,11.95,12/24/19 22:01,"428 Ridge St, Boston, MA 02215" +320019,Wired Headphones,1,11.99,12/19/19 23:32,"109 8th St, Seattle, WA 98101" +320020,Flatscreen TV,1,300,12/24/19 08:40,"476 5th St, Portland, OR 97035" +320021,Bose SoundSport Headphones,1,99.99,12/02/19 07:05,"393 Main St, Atlanta, GA 30301" +320022,34in Ultrawide Monitor,1,379.99,12/02/19 17:12,"373 Madison St, Seattle, WA 98101" +320023,Wired Headphones,1,11.99,12/30/19 19:30,"249 West St, Seattle, WA 98101" +320024,Bose SoundSport Headphones,1,99.99,12/09/19 13:46,"652 Ridge St, New York City, NY 10001" +320025,AA Batteries (4-pack),1,3.84,12/30/19 10:28,"371 Elm St, New York City, NY 10001" +320026,ThinkPad Laptop,1,999.99,12/18/19 13:33,"464 Elm St, Dallas, TX 75001" +320027,Lightning Charging Cable,1,14.95,12/22/19 00:56,"93 Adams St, San Francisco, CA 94016" +320028,27in FHD Monitor,1,149.99,12/14/19 17:25,"787 1st St, Los Angeles, CA 90001" +320029,Wired Headphones,1,11.99,12/03/19 21:35,"947 Walnut St, San Francisco, CA 94016" +320030,27in 4K Gaming Monitor,1,389.99,12/03/19 21:23,"94 Lakeview St, Atlanta, GA 30301" +320031,34in Ultrawide Monitor,1,379.99,12/12/19 06:49,"997 12th St, Los Angeles, CA 90001" +320032,AA Batteries (4-pack),2,3.84,12/21/19 11:30,"142 Park St, San Francisco, CA 94016" +320033,AAA Batteries (4-pack),2,2.99,12/10/19 13:30,"491 Hickory St, Austin, TX 73301" +320034,27in 4K Gaming Monitor,1,389.99,12/10/19 19:49,"289 Washington St, Los Angeles, CA 90001" +320035,Lightning Charging Cable,1,14.95,12/02/19 16:07,"463 Ridge St, San Francisco, CA 94016" +320036,USB-C Charging Cable,1,11.95,12/29/19 22:14,"298 6th St, Los Angeles, CA 90001" +320037,Bose SoundSport Headphones,1,99.99,12/25/19 16:27,"649 Lincoln St, San Francisco, CA 94016" +320038,Lightning Charging Cable,1,14.95,12/10/19 08:02,"904 Walnut St, San Francisco, CA 94016" +320039,Lightning Charging Cable,1,14.95,12/11/19 12:10,"781 Cherry St, New York City, NY 10001" +320040,27in FHD Monitor,1,149.99,12/30/19 21:14,"112 4th St, San Francisco, CA 94016" +320041,USB-C Charging Cable,1,11.95,12/13/19 16:08,"323 South St, Dallas, TX 75001" +320042,Lightning Charging Cable,1,14.95,12/27/19 22:27,"652 12th St, Austin, TX 73301" +320043,Apple Airpods Headphones,1,150,12/30/19 21:53,"210 Lake St, San Francisco, CA 94016" +320044,iPhone,1,700,12/14/19 14:13,"680 Center St, San Francisco, CA 94016" +320044,Lightning Charging Cable,1,14.95,12/14/19 14:13,"680 Center St, San Francisco, CA 94016" +320045,Macbook Pro Laptop,1,1700,12/29/19 17:55,"145 Highland St, Los Angeles, CA 90001" +320046,AAA Batteries (4-pack),1,2.99,12/31/19 21:07,"368 Lincoln St, Boston, MA 02215" +320047,Lightning Charging Cable,1,14.95,12/03/19 11:24,"26 13th St, New York City, NY 10001" +320048,27in 4K Gaming Monitor,1,389.99,12/19/19 11:22,"531 Walnut St, San Francisco, CA 94016" +320049,Apple Airpods Headphones,1,150,12/02/19 22:47,"424 Ridge St, New York City, NY 10001" +320050,iPhone,1,700,12/30/19 17:12,"419 Madison St, New York City, NY 10001" +320050,Wired Headphones,2,11.99,12/30/19 17:12,"419 Madison St, New York City, NY 10001" +320051,ThinkPad Laptop,1,999.99,12/08/19 12:26,"394 Hill St, Portland, ME 04101" +320052,Wired Headphones,1,11.99,12/13/19 14:02,"755 Meadow St, San Francisco, CA 94016" +320053,USB-C Charging Cable,1,11.95,12/05/19 09:34,"136 Jefferson St, New York City, NY 10001" +320054,Lightning Charging Cable,1,14.95,12/31/19 18:57,"851 Walnut St, Austin, TX 73301" +320055,Lightning Charging Cable,1,14.95,12/17/19 17:21,"912 Willow St, San Francisco, CA 94016" +320056,Vareebadd Phone,1,400,12/02/19 19:36,"232 Meadow St, Atlanta, GA 30301" +320056,USB-C Charging Cable,1,11.95,12/02/19 19:36,"232 Meadow St, Atlanta, GA 30301" +320057,AA Batteries (4-pack),1,3.84,12/16/19 18:52,"512 North St, Atlanta, GA 30301" +320058,AAA Batteries (4-pack),1,2.99,12/01/19 18:30,"294 Park St, New York City, NY 10001" +320059,AAA Batteries (4-pack),1,2.99,12/25/19 01:03,"277 Madison St, San Francisco, CA 94016" +320060,Google Phone,1,600,12/30/19 15:40,"605 Chestnut St, San Francisco, CA 94016" +320061,USB-C Charging Cable,1,11.95,12/23/19 10:45,"33 Washington St, Austin, TX 73301" +320062,27in 4K Gaming Monitor,1,389.99,12/30/19 13:47,"443 8th St, Los Angeles, CA 90001" +320063,iPhone,1,700,12/23/19 21:27,"514 11th St, Boston, MA 02215" +320064,Google Phone,1,600,12/20/19 20:16,"330 Chestnut St, New York City, NY 10001" +320065,Apple Airpods Headphones,1,150,12/13/19 22:38,"789 Hill St, Austin, TX 73301" +320066,AA Batteries (4-pack),2,3.84,12/01/19 05:23,"23 Forest St, Seattle, WA 98101" +320067,AAA Batteries (4-pack),1,2.99,12/21/19 11:24,"720 Lake St, New York City, NY 10001" +320067,iPhone,1,700,12/21/19 11:24,"720 Lake St, New York City, NY 10001" +320068,AA Batteries (4-pack),1,3.84,12/23/19 13:52,"572 11th St, Los Angeles, CA 90001" +320069,Lightning Charging Cable,1,14.95,12/29/19 14:17,"46 Willow St, New York City, NY 10001" +320070,27in FHD Monitor,1,149.99,12/24/19 09:27,"439 11th St, Los Angeles, CA 90001" +320071,USB-C Charging Cable,1,11.95,12/06/19 23:00,"51 Cherry St, New York City, NY 10001" +320072,Google Phone,1,600,12/03/19 13:10,"896 12th St, Seattle, WA 98101" +320073,Lightning Charging Cable,1,14.95,12/06/19 13:01,"182 14th St, Austin, TX 73301" +320074,Google Phone,1,600,12/22/19 10:44,"399 Center St, Austin, TX 73301" +320074,USB-C Charging Cable,1,11.95,12/22/19 10:44,"399 Center St, Austin, TX 73301" +320075,Flatscreen TV,1,300,12/26/19 17:56,"175 Park St, San Francisco, CA 94016" +320076,AAA Batteries (4-pack),5,2.99,12/25/19 18:53,"604 West St, Seattle, WA 98101" +320077,Wired Headphones,1,11.99,12/26/19 12:19,"240 Madison St, Los Angeles, CA 90001" +320078,AAA Batteries (4-pack),1,2.99,12/16/19 05:18,"441 Elm St, Portland, OR 97035" +320079,AA Batteries (4-pack),2,3.84,12/25/19 17:48,"601 Pine St, Seattle, WA 98101" +320080,AAA Batteries (4-pack),1,2.99,12/21/19 23:02,"758 14th St, New York City, NY 10001" +320081,ThinkPad Laptop,1,999.99,12/29/19 08:02,"650 Madison St, Dallas, TX 75001" +320081,LG Washing Machine,1,600.0,12/29/19 08:02,"650 Madison St, Dallas, TX 75001" +320082,AAA Batteries (4-pack),1,2.99,12/15/19 10:38,"333 West St, Seattle, WA 98101" +320083,Macbook Pro Laptop,1,1700,12/17/19 08:32,"136 7th St, Dallas, TX 75001" +320084,AA Batteries (4-pack),1,3.84,12/08/19 22:59,"729 Hickory St, Austin, TX 73301" +320085,Lightning Charging Cable,1,14.95,12/17/19 09:21,"406 Lakeview St, Los Angeles, CA 90001" +320086,Apple Airpods Headphones,1,150,12/01/19 20:05,"670 Spruce St, Portland, OR 97035" +320086,iPhone,1,700,12/01/19 20:05,"670 Spruce St, Portland, OR 97035" +320087,AA Batteries (4-pack),1,3.84,12/28/19 19:59,"253 Dogwood St, Dallas, TX 75001" +320088,Bose SoundSport Headphones,1,99.99,12/29/19 01:52,"485 Park St, Seattle, WA 98101" +320089,Bose SoundSport Headphones,1,99.99,12/07/19 11:24,"593 Cedar St, Boston, MA 02215" +320090,Wired Headphones,2,11.99,12/15/19 21:09,"633 Meadow St, New York City, NY 10001" +320091,AA Batteries (4-pack),2,3.84,12/11/19 18:42,"406 Maple St, San Francisco, CA 94016" +320092,AAA Batteries (4-pack),1,2.99,12/02/19 07:14,"359 Main St, Seattle, WA 98101" +320093,USB-C Charging Cable,1,11.95,12/17/19 21:25,"266 1st St, Los Angeles, CA 90001" +320094,Google Phone,1,600,12/01/19 18:01,"794 North St, San Francisco, CA 94016" +320095,Flatscreen TV,1,300,12/21/19 11:06,"516 Forest St, San Francisco, CA 94016" +320096,iPhone,1,700,12/17/19 16:32,"703 Main St, Seattle, WA 98101" +320097,Google Phone,1,600,12/24/19 11:19,"2 Meadow St, San Francisco, CA 94016" +320098,Apple Airpods Headphones,1,150,12/14/19 08:50,"721 7th St, San Francisco, CA 94016" +320099,Bose SoundSport Headphones,1,99.99,12/22/19 08:41,"492 Hill St, New York City, NY 10001" +320100,Wired Headphones,1,11.99,12/18/19 14:35,"393 Forest St, San Francisco, CA 94016" +320101,AA Batteries (4-pack),2,3.84,12/30/19 11:31,"735 Chestnut St, Los Angeles, CA 90001" +320102,AA Batteries (4-pack),1,3.84,12/29/19 11:55,"988 Church St, San Francisco, CA 94016" +320103,Wired Headphones,1,11.99,12/21/19 11:35,"951 Madison St, Portland, OR 97035" +320104,AAA Batteries (4-pack),2,2.99,12/07/19 13:10,"860 14th St, San Francisco, CA 94016" +320105,AAA Batteries (4-pack),1,2.99,12/21/19 23:02,"259 Meadow St, New York City, NY 10001" +320106,AA Batteries (4-pack),2,3.84,12/18/19 15:19,"426 8th St, New York City, NY 10001" +320107,USB-C Charging Cable,1,11.95,12/21/19 22:35,"915 Hickory St, Los Angeles, CA 90001" +320108,Lightning Charging Cable,1,14.95,12/18/19 14:19,"62 South St, Portland, OR 97035" +320109,Lightning Charging Cable,1,14.95,12/05/19 16:27,"579 Highland St, Atlanta, GA 30301" +320110,Apple Airpods Headphones,1,150,12/28/19 11:06,"719 13th St, Dallas, TX 75001" +320111,Lightning Charging Cable,1,14.95,12/28/19 16:04,"727 Wilson St, San Francisco, CA 94016" +320112,iPhone,1,700,12/22/19 16:09,"41 Main St, Portland, OR 97035" +320112,Lightning Charging Cable,1,14.95,12/22/19 16:09,"41 Main St, Portland, OR 97035" +320113,Bose SoundSport Headphones,1,99.99,12/27/19 19:21,"17 Jackson St, New York City, NY 10001" +320114,Bose SoundSport Headphones,1,99.99,12/08/19 18:35,"835 Hickory St, Atlanta, GA 30301" +320115,AA Batteries (4-pack),1,3.84,12/28/19 19:24,"625 11th St, New York City, NY 10001" +320116,USB-C Charging Cable,1,11.95,12/21/19 16:09,"165 Adams St, San Francisco, CA 94016" +320117,USB-C Charging Cable,1,11.95,12/06/19 16:29,"835 Elm St, Portland, OR 97035" +320118,USB-C Charging Cable,1,11.95,12/10/19 08:17,"358 7th St, Portland, ME 04101" +320119,Bose SoundSport Headphones,1,99.99,12/02/19 14:04,"644 Highland St, Seattle, WA 98101" +320120,AAA Batteries (4-pack),1,2.99,12/31/19 19:44,"451 12th St, New York City, NY 10001" +320121,27in 4K Gaming Monitor,1,389.99,12/20/19 15:46,"825 6th St, Dallas, TX 75001" +320122,Wired Headphones,2,11.99,12/29/19 19:38,"186 Cherry St, New York City, NY 10001" +320123,20in Monitor,1,109.99,12/31/19 14:19,"536 13th St, Los Angeles, CA 90001" +320124,Lightning Charging Cable,1,14.95,12/22/19 20:43,"432 13th St, Los Angeles, CA 90001" +320125,Lightning Charging Cable,1,14.95,12/01/19 18:03,"278 Ridge St, Boston, MA 02215" +320126,Bose SoundSport Headphones,1,99.99,12/17/19 08:22,"518 Church St, Austin, TX 73301" +320127,Bose SoundSport Headphones,1,99.99,12/07/19 09:15,"987 Dogwood St, Seattle, WA 98101" +320128,34in Ultrawide Monitor,1,379.99,12/24/19 20:19,"659 Lincoln St, Austin, TX 73301" +320129,Bose SoundSport Headphones,1,99.99,12/14/19 12:39,"797 10th St, New York City, NY 10001" +320130,USB-C Charging Cable,1,11.95,12/03/19 10:40,"622 West St, Los Angeles, CA 90001" +320131,Wired Headphones,1,11.99,12/04/19 11:13,"642 13th St, Dallas, TX 75001" +320132,USB-C Charging Cable,1,11.95,12/04/19 16:53,"334 4th St, San Francisco, CA 94016" +320133,LG Dryer,1,600.0,12/25/19 15:55,"416 Washington St, New York City, NY 10001" +320134,Macbook Pro Laptop,1,1700,12/28/19 13:00,"73 West St, Los Angeles, CA 90001" +320135,AAA Batteries (4-pack),1,2.99,12/20/19 17:28,"545 13th St, Atlanta, GA 30301" +320136,34in Ultrawide Monitor,1,379.99,12/07/19 20:50,"467 6th St, Atlanta, GA 30301" +320137,AAA Batteries (4-pack),1,2.99,12/27/19 12:37,"629 14th St, Los Angeles, CA 90001" +320138,Flatscreen TV,1,300,12/11/19 14:08,"598 9th St, Boston, MA 02215" +320139,Wired Headphones,2,11.99,12/03/19 19:28,"902 Jefferson St, Boston, MA 02215" +320140,Google Phone,1,600,12/29/19 18:19,"700 11th St, San Francisco, CA 94016" +320141,AA Batteries (4-pack),1,3.84,12/14/19 17:05,"380 Jackson St, Portland, OR 97035" +320142,27in 4K Gaming Monitor,1,389.99,12/01/19 19:38,"411 Main St, Atlanta, GA 30301" +320143,AAA Batteries (4-pack),1,2.99,12/11/19 17:23,"544 Lincoln St, San Francisco, CA 94016" +320144,iPhone,1,700,12/11/19 00:00,"583 13th St, Los Angeles, CA 90001" +320145,20in Monitor,1,109.99,12/31/19 15:41,"437 Adams St, Boston, MA 02215" +320146,USB-C Charging Cable,1,11.95,12/19/19 18:25,"426 Elm St, Los Angeles, CA 90001" +320147,AA Batteries (4-pack),1,3.84,12/30/19 19:22,"292 12th St, Boston, MA 02215" +320148,USB-C Charging Cable,1,11.95,12/29/19 07:14,"669 Forest St, Los Angeles, CA 90001" +320149,AA Batteries (4-pack),1,3.84,12/01/19 18:44,"562 Jackson St, San Francisco, CA 94016" +320150,Lightning Charging Cable,1,14.95,12/31/19 13:09,"507 West St, Dallas, TX 75001" +320151,20in Monitor,1,109.99,12/07/19 15:04,"666 Main St, Seattle, WA 98101" +320152,Apple Airpods Headphones,1,150,12/31/19 02:10,"831 12th St, Dallas, TX 75001" +320153,20in Monitor,1,109.99,12/19/19 18:55,"641 Maple St, New York City, NY 10001" +320154,Macbook Pro Laptop,1,1700,12/29/19 09:48,"232 9th St, Los Angeles, CA 90001" +320155,20in Monitor,1,109.99,12/14/19 01:58,"125 West St, Austin, TX 73301" +320156,Bose SoundSport Headphones,1,99.99,12/16/19 16:00,"120 Meadow St, Los Angeles, CA 90001" +320157,AAA Batteries (4-pack),1,2.99,12/19/19 07:30,"759 13th St, Los Angeles, CA 90001" +320158,Lightning Charging Cable,1,14.95,12/20/19 07:57,"292 Pine St, Los Angeles, CA 90001" +320159,Wired Headphones,1,11.99,12/15/19 13:35,"508 12th St, Atlanta, GA 30301" +320160,USB-C Charging Cable,1,11.95,12/30/19 16:30,"864 Jackson St, Austin, TX 73301" +320161,Apple Airpods Headphones,1,150,12/28/19 18:16,"209 Elm St, New York City, NY 10001" +320162,AA Batteries (4-pack),2,3.84,12/15/19 15:31,"409 2nd St, Seattle, WA 98101" +320163,27in 4K Gaming Monitor,1,389.99,12/14/19 08:54,"805 Wilson St, Seattle, WA 98101" +320164,USB-C Charging Cable,1,11.95,12/27/19 20:24,"778 Cherry St, San Francisco, CA 94016" +320165,USB-C Charging Cable,2,11.95,12/13/19 12:13,"142 14th St, San Francisco, CA 94016" +320166,Lightning Charging Cable,1,14.95,12/11/19 13:30,"403 Cedar St, Austin, TX 73301" +320167,Apple Airpods Headphones,1,150,12/30/19 15:40,"541 Willow St, Atlanta, GA 30301" +320168,Google Phone,1,600,12/01/19 17:01,"38 Cedar St, San Francisco, CA 94016" +320169,Lightning Charging Cable,1,14.95,12/08/19 19:19,"483 Center St, Seattle, WA 98101" +320170,AAA Batteries (4-pack),3,2.99,12/12/19 22:52,"806 13th St, San Francisco, CA 94016" +320171,Macbook Pro Laptop,1,1700,12/22/19 15:51,"226 11th St, New York City, NY 10001" +320172,Macbook Pro Laptop,1,1700,12/07/19 11:52,"883 Ridge St, Boston, MA 02215" +320173,34in Ultrawide Monitor,1,379.99,12/21/19 19:55,"408 Walnut St, San Francisco, CA 94016" +320174,27in FHD Monitor,1,149.99,12/02/19 21:32,"676 Spruce St, New York City, NY 10001" +320175,Lightning Charging Cable,1,14.95,12/04/19 20:45,"940 Cherry St, Boston, MA 02215" +320176,Flatscreen TV,1,300,12/10/19 21:59,"827 River St, New York City, NY 10001" +320177,Apple Airpods Headphones,1,150,12/23/19 13:21,"310 Elm St, Seattle, WA 98101" +320178,AAA Batteries (4-pack),1,2.99,12/10/19 19:25,"991 Maple St, Los Angeles, CA 90001" +320179,Lightning Charging Cable,1,14.95,12/24/19 18:17,"937 Johnson St, Los Angeles, CA 90001" +320180,AAA Batteries (4-pack),1,2.99,12/17/19 11:51,"743 1st St, Boston, MA 02215" +320181,Apple Airpods Headphones,1,150,12/19/19 18:53,"517 Pine St, Atlanta, GA 30301" +320182,USB-C Charging Cable,1,11.95,12/31/19 13:51,"555 2nd St, San Francisco, CA 94016" +320183,USB-C Charging Cable,1,11.95,12/13/19 22:23,"112 Willow St, San Francisco, CA 94016" +320184,USB-C Charging Cable,1,11.95,12/23/19 14:31,"718 14th St, Dallas, TX 75001" +320185,27in 4K Gaming Monitor,1,389.99,12/28/19 14:35,"768 Park St, Portland, OR 97035" +320186,Bose SoundSport Headphones,1,99.99,12/19/19 10:29,"143 1st St, Los Angeles, CA 90001" +320187,27in 4K Gaming Monitor,1,389.99,12/05/19 11:52,"933 4th St, Los Angeles, CA 90001" +320188,20in Monitor,1,109.99,12/18/19 13:29,"639 Hill St, Dallas, TX 75001" +320189,Google Phone,1,600,12/09/19 19:54,"510 Adams St, San Francisco, CA 94016" +320190,AAA Batteries (4-pack),1,2.99,12/07/19 12:48,"749 Adams St, San Francisco, CA 94016" +320191,Google Phone,1,600,12/21/19 16:07,"148 Walnut St, Atlanta, GA 30301" +320191,USB-C Charging Cable,1,11.95,12/21/19 16:07,"148 Walnut St, Atlanta, GA 30301" +320192,AAA Batteries (4-pack),1,2.99,12/22/19 13:39,"916 Madison St, Boston, MA 02215" +320193,USB-C Charging Cable,1,11.95,12/22/19 14:23,"340 River St, San Francisco, CA 94016" +320194,Bose SoundSport Headphones,1,99.99,12/21/19 18:39,"255 Lake St, San Francisco, CA 94016" +320195,USB-C Charging Cable,1,11.95,12/06/19 22:08,"837 Johnson St, Boston, MA 02215" +320196,Lightning Charging Cable,1,14.95,12/18/19 12:49,"264 1st St, Boston, MA 02215" +320197,USB-C Charging Cable,1,11.95,12/27/19 16:01,"841 Lake St, Seattle, WA 98101" +320198,AAA Batteries (4-pack),3,2.99,12/04/19 08:06,"352 Willow St, Los Angeles, CA 90001" +320199,iPhone,1,700,12/02/19 09:06,"572 Main St, Los Angeles, CA 90001" +320200,Wired Headphones,1,11.99,12/28/19 13:40,"407 7th St, Dallas, TX 75001" +320201,USB-C Charging Cable,1,11.95,12/18/19 15:52,"451 Chestnut St, Los Angeles, CA 90001" +320202,Macbook Pro Laptop,1,1700,12/30/19 19:18,"461 Cedar St, Atlanta, GA 30301" +320203,27in 4K Gaming Monitor,1,389.99,12/06/19 15:59,"921 6th St, Los Angeles, CA 90001" +320204,iPhone,1,700,12/21/19 17:42,"569 Johnson St, Portland, OR 97035" +320205,AAA Batteries (4-pack),1,2.99,12/24/19 08:27,"755 6th St, San Francisco, CA 94016" +320206,Apple Airpods Headphones,1,150,12/31/19 18:56,"657 Ridge St, Los Angeles, CA 90001" +320207,Wired Headphones,1,11.99,12/15/19 11:03,"663 Wilson St, San Francisco, CA 94016" +320208,Lightning Charging Cable,1,14.95,12/01/19 21:01,"55 Sunset St, San Francisco, CA 94016" +320209,27in 4K Gaming Monitor,1,389.99,12/23/19 15:35,"441 4th St, Los Angeles, CA 90001" +320210,Wired Headphones,1,11.99,12/10/19 19:03,"441 13th St, San Francisco, CA 94016" +320211,Apple Airpods Headphones,1,150,12/22/19 10:07,"552 Park St, Los Angeles, CA 90001" +320212,Lightning Charging Cable,1,14.95,12/08/19 14:59,"477 Elm St, Boston, MA 02215" +320213,Apple Airpods Headphones,1,150,12/10/19 15:28,"831 Hill St, Boston, MA 02215" +320214,USB-C Charging Cable,1,11.95,12/01/19 11:17,"788 Church St, Boston, MA 02215" +320215,Apple Airpods Headphones,1,150,12/24/19 12:43,"172 Cedar St, Dallas, TX 75001" +320216,iPhone,1,700,12/13/19 13:16,"242 Dogwood St, San Francisco, CA 94016" +320216,Wired Headphones,1,11.99,12/13/19 13:16,"242 Dogwood St, San Francisco, CA 94016" +320217,AAA Batteries (4-pack),1,2.99,12/11/19 19:15,"254 River St, Atlanta, GA 30301" +320218,iPhone,1,700,12/12/19 04:51,"141 Jefferson St, Los Angeles, CA 90001" +320219,Bose SoundSport Headphones,1,99.99,12/27/19 13:45,"133 Cedar St, Boston, MA 02215" +320220,iPhone,1,700,12/10/19 10:58,"326 Church St, New York City, NY 10001" +320221,USB-C Charging Cable,1,11.95,12/26/19 01:28,"148 Lake St, Boston, MA 02215" +320222,AA Batteries (4-pack),1,3.84,12/24/19 09:06,"336 9th St, Atlanta, GA 30301" +320223,Apple Airpods Headphones,1,150,12/26/19 16:22,"626 Lake St, Portland, OR 97035" +320224,Lightning Charging Cable,1,14.95,12/14/19 12:28,"410 Ridge St, Seattle, WA 98101" +320225,AA Batteries (4-pack),1,3.84,12/17/19 15:54,"111 Wilson St, Atlanta, GA 30301" +320226,AAA Batteries (4-pack),1,2.99,12/22/19 21:42,"6 Dogwood St, San Francisco, CA 94016" +320227,Lightning Charging Cable,1,14.95,12/11/19 17:56,"468 Church St, Los Angeles, CA 90001" +320228,Bose SoundSport Headphones,1,99.99,12/15/19 12:30,"923 Walnut St, Los Angeles, CA 90001" +320229,Flatscreen TV,1,300,12/05/19 13:24,"706 Center St, New York City, NY 10001" +320230,34in Ultrawide Monitor,1,379.99,12/04/19 20:06,"78 Main St, New York City, NY 10001" +320231,Lightning Charging Cable,1,14.95,12/02/19 19:38,"558 West St, Los Angeles, CA 90001" +320232,Apple Airpods Headphones,1,150,12/31/19 11:26,"482 11th St, Boston, MA 02215" +320233,Google Phone,1,600,12/13/19 23:49,"122 Park St, Atlanta, GA 30301" +320234,27in FHD Monitor,1,149.99,12/23/19 04:10,"743 4th St, Dallas, TX 75001" +320235,USB-C Charging Cable,1,11.95,12/14/19 18:02,"35 Hickory St, New York City, NY 10001" +320236,USB-C Charging Cable,1,11.95,12/21/19 22:32,"325 Sunset St, Los Angeles, CA 90001" +320237,Lightning Charging Cable,1,14.95,12/12/19 15:48,"569 6th St, Los Angeles, CA 90001" +320238,Wired Headphones,1,11.99,12/21/19 10:15,"244 Spruce St, San Francisco, CA 94016" +320239,AAA Batteries (4-pack),1,2.99,12/28/19 09:38,"5 Lakeview St, Austin, TX 73301" +320240,USB-C Charging Cable,1,11.95,12/27/19 15:07,"833 5th St, New York City, NY 10001" +320241,27in 4K Gaming Monitor,1,389.99,12/09/19 11:39,"222 9th St, Seattle, WA 98101" +320242,Bose SoundSport Headphones,1,99.99,12/17/19 15:28,"977 Cherry St, Los Angeles, CA 90001" +320243,Wired Headphones,2,11.99,12/05/19 11:25,"148 8th St, New York City, NY 10001" +320244,Lightning Charging Cable,1,14.95,12/01/19 12:59,"940 Sunset St, San Francisco, CA 94016" +320245,20in Monitor,1,109.99,12/08/19 07:15,"178 Pine St, Seattle, WA 98101" +320246,Apple Airpods Headphones,1,150,12/08/19 19:16,"334 Elm St, Los Angeles, CA 90001" +320247,Lightning Charging Cable,1,14.95,12/17/19 10:41,"841 Ridge St, Dallas, TX 75001" +320248,Google Phone,1,600,12/08/19 18:44,"979 Jefferson St, San Francisco, CA 94016" +320249,AA Batteries (4-pack),1,3.84,12/22/19 05:40,"931 Washington St, Boston, MA 02215" +320250,AA Batteries (4-pack),2,3.84,12/25/19 20:20,"676 Cedar St, Atlanta, GA 30301" +320251,iPhone,1,700,12/18/19 10:12,"232 4th St, Seattle, WA 98101" +320251,Wired Headphones,1,11.99,12/18/19 10:12,"232 4th St, Seattle, WA 98101" +320252,20in Monitor,1,109.99,12/07/19 19:44,"789 13th St, Dallas, TX 75001" +320253,Wired Headphones,1,11.99,12/29/19 17:15,"849 Hickory St, San Francisco, CA 94016" +320254,Wired Headphones,1,11.99,12/27/19 19:26,"31 4th St, Portland, ME 04101" +320255,AA Batteries (4-pack),1,3.84,12/15/19 10:56,"840 6th St, San Francisco, CA 94016" +320256,Wired Headphones,1,11.99,12/02/19 13:56,"390 11th St, San Francisco, CA 94016" +320257,27in FHD Monitor,1,149.99,12/11/19 13:56,"49 Washington St, Portland, ME 04101" +320258,Lightning Charging Cable,1,14.95,12/15/19 21:36,"225 7th St, Los Angeles, CA 90001" +320259,Wired Headphones,1,11.99,12/14/19 13:21,"130 Washington St, San Francisco, CA 94016" +320260,Apple Airpods Headphones,1,150,12/14/19 10:37,"767 6th St, Dallas, TX 75001" +320261,Lightning Charging Cable,1,14.95,12/24/19 19:08,"418 Johnson St, Los Angeles, CA 90001" +320262,iPhone,1,700,12/09/19 12:27,"920 South St, Los Angeles, CA 90001" +320263,AA Batteries (4-pack),1,3.84,12/01/19 17:17,"994 Johnson St, Portland, OR 97035" +320264,Lightning Charging Cable,1,14.95,12/29/19 20:05,"44 Cedar St, Atlanta, GA 30301" +320265,Apple Airpods Headphones,1,150,12/16/19 09:59,"50 Hill St, New York City, NY 10001" +320266,USB-C Charging Cable,1,11.95,12/08/19 09:06,"680 South St, San Francisco, CA 94016" +320267,AAA Batteries (4-pack),2,2.99,12/09/19 02:28,"775 River St, San Francisco, CA 94016" +320268,Bose SoundSport Headphones,1,99.99,12/18/19 13:54,"544 11th St, New York City, NY 10001" +320269,USB-C Charging Cable,1,11.95,12/21/19 08:29,"805 13th St, Los Angeles, CA 90001" +320270,Flatscreen TV,1,300,12/27/19 16:08,"428 10th St, Seattle, WA 98101" +320271,Flatscreen TV,1,300,12/04/19 10:37,"616 12th St, Dallas, TX 75001" +320272,27in 4K Gaming Monitor,1,389.99,12/23/19 15:13,"700 Pine St, Los Angeles, CA 90001" +320273,34in Ultrawide Monitor,1,379.99,12/25/19 18:57,"791 Cedar St, Los Angeles, CA 90001" +320274,Bose SoundSport Headphones,1,99.99,12/08/19 23:24,"212 Main St, San Francisco, CA 94016" +320275,Lightning Charging Cable,1,14.95,12/01/19 14:35,"974 7th St, Portland, OR 97035" +320276,Wired Headphones,1,11.99,12/06/19 11:21,"667 Maple St, San Francisco, CA 94016" +320277,Bose SoundSport Headphones,1,99.99,12/01/19 12:49,"728 13th St, New York City, NY 10001" +320278,USB-C Charging Cable,1,11.95,12/16/19 13:30,"937 Adams St, San Francisco, CA 94016" +320279,LG Washing Machine,1,600.0,12/07/19 18:45,"43 Lincoln St, Los Angeles, CA 90001" +320280,AA Batteries (4-pack),2,3.84,12/04/19 09:00,"332 Main St, San Francisco, CA 94016" +320281,USB-C Charging Cable,2,11.95,12/29/19 08:57,"147 2nd St, San Francisco, CA 94016" +320282,AAA Batteries (4-pack),1,2.99,12/29/19 10:28,"313 10th St, Boston, MA 02215" +320283,Wired Headphones,1,11.99,12/09/19 18:47,"344 Elm St, San Francisco, CA 94016" +320284,27in FHD Monitor,1,149.99,12/05/19 13:23,"919 13th St, Los Angeles, CA 90001" +320285,Wired Headphones,1,11.99,12/31/19 06:34,"158 Forest St, Los Angeles, CA 90001" +320286,Wired Headphones,1,11.99,12/13/19 19:37,"496 6th St, Los Angeles, CA 90001" +320287,Wired Headphones,1,11.99,12/14/19 16:10,"327 7th St, Boston, MA 02215" +320288,Wired Headphones,1,11.99,12/17/19 16:28,"888 10th St, San Francisco, CA 94016" +320289,AA Batteries (4-pack),2,3.84,12/01/19 19:36,"383 Chestnut St, Los Angeles, CA 90001" +320290,Wired Headphones,1,11.99,12/28/19 19:31,"27 Lakeview St, New York City, NY 10001" +320291,AA Batteries (4-pack),1,3.84,12/04/19 20:11,"198 Pine St, San Francisco, CA 94016" +320292,Apple Airpods Headphones,1,150,12/08/19 07:30,"364 Sunset St, Dallas, TX 75001" +320293,AAA Batteries (4-pack),1,2.99,12/20/19 19:29,"472 Dogwood St, San Francisco, CA 94016" +320294,Wired Headphones,1,11.99,12/14/19 19:00,"765 South St, Boston, MA 02215" +320295,iPhone,1,700,12/12/19 20:23,"967 11th St, Boston, MA 02215" +320296,USB-C Charging Cable,2,11.95,12/20/19 22:39,"590 Washington St, San Francisco, CA 94016" +320297,Vareebadd Phone,1,400,12/22/19 09:53,"892 14th St, Boston, MA 02215" +320297,USB-C Charging Cable,1,11.95,12/22/19 09:53,"892 14th St, Boston, MA 02215" +320298,34in Ultrawide Monitor,1,379.99,12/18/19 15:53,"12 14th St, San Francisco, CA 94016" +320299,iPhone,1,700,12/23/19 12:55,"201 4th St, Atlanta, GA 30301" +320299,Lightning Charging Cable,1,14.95,12/23/19 12:55,"201 4th St, Atlanta, GA 30301" +320300,27in FHD Monitor,1,149.99,12/09/19 09:09,"615 Adams St, San Francisco, CA 94016" +320301,AA Batteries (4-pack),1,3.84,12/31/19 23:59,"491 Meadow St, Atlanta, GA 30301" +320302,Vareebadd Phone,1,400,12/15/19 17:58,"285 West St, San Francisco, CA 94016" +320303,Lightning Charging Cable,1,14.95,12/06/19 10:47,"930 6th St, Austin, TX 73301" +320304,Lightning Charging Cable,1,14.95,12/22/19 00:31,"283 Highland St, Portland, OR 97035" +320305,AAA Batteries (4-pack),3,2.99,12/01/19 13:51,"114 Center St, Atlanta, GA 30301" +320306,AAA Batteries (4-pack),1,2.99,12/14/19 11:25,"855 8th St, Dallas, TX 75001" +320307,AA Batteries (4-pack),1,3.84,12/19/19 15:51,"14 Lincoln St, San Francisco, CA 94016" +320308,Wired Headphones,1,11.99,12/18/19 11:45,"726 Ridge St, Los Angeles, CA 90001" +320309,Macbook Pro Laptop,1,1700,12/30/19 16:48,"29 Cherry St, Boston, MA 02215" +320310,Google Phone,1,600,12/11/19 14:55,"225 West St, San Francisco, CA 94016" +320310,USB-C Charging Cable,1,11.95,12/11/19 14:55,"225 West St, San Francisco, CA 94016" +320310,Bose SoundSport Headphones,1,99.99,12/11/19 14:55,"225 West St, San Francisco, CA 94016" +320311,34in Ultrawide Monitor,1,379.99,12/11/19 18:49,"899 Johnson St, Dallas, TX 75001" +320312,AAA Batteries (4-pack),2,2.99,12/08/19 22:19,"928 Willow St, Atlanta, GA 30301" +320313,AAA Batteries (4-pack),1,2.99,12/01/19 16:49,"391 Johnson St, Atlanta, GA 30301" +320314,AA Batteries (4-pack),1,3.84,12/31/19 14:32,"804 Washington St, Boston, MA 02215" +320315,AA Batteries (4-pack),1,3.84,12/28/19 10:23,"989 North St, New York City, NY 10001" +320316,USB-C Charging Cable,1,11.95,12/18/19 11:55,"907 8th St, Boston, MA 02215" +320317,AA Batteries (4-pack),1,3.84,12/14/19 16:18,"43 River St, San Francisco, CA 94016" +320318,Apple Airpods Headphones,1,150,12/17/19 19:52,"404 Wilson St, Boston, MA 02215" +320319,Lightning Charging Cable,1,14.95,12/06/19 19:52,"562 Chestnut St, San Francisco, CA 94016" +320320,Bose SoundSport Headphones,1,99.99,12/22/19 21:45,"951 Cherry St, Seattle, WA 98101" +320321,Apple Airpods Headphones,1,150,12/08/19 14:08,"757 Adams St, San Francisco, CA 94016" +320322,Wired Headphones,1,11.99,12/12/19 13:25,"653 14th St, San Francisco, CA 94016" +320323,AA Batteries (4-pack),2,3.84,12/19/19 15:03,"49 Cherry St, San Francisco, CA 94016" +320324,Wired Headphones,1,11.99,12/22/19 12:23,"310 Maple St, Seattle, WA 98101" +320325,AA Batteries (4-pack),2,3.84,12/03/19 20:55,"332 4th St, Seattle, WA 98101" +320326,AA Batteries (4-pack),2,3.84,12/06/19 16:13,"84 West St, New York City, NY 10001" +320327,Google Phone,1,600,12/16/19 10:15,"491 Wilson St, Boston, MA 02215" +320328,USB-C Charging Cable,1,11.95,12/20/19 17:29,"571 Center St, Boston, MA 02215" +320329,USB-C Charging Cable,1,11.95,12/04/19 18:29,"340 South St, Austin, TX 73301" +320330,USB-C Charging Cable,1,11.95,12/10/19 20:27,"79 9th St, Dallas, TX 75001" +320331,AAA Batteries (4-pack),2,2.99,12/30/19 19:30,"995 Madison St, Boston, MA 02215" +320332,Lightning Charging Cable,1,14.95,12/29/19 21:22,"318 Wilson St, Atlanta, GA 30301" +320333,AAA Batteries (4-pack),1,2.99,12/07/19 09:41,"700 Church St, Los Angeles, CA 90001" +320334,USB-C Charging Cable,1,11.95,12/23/19 20:01,"869 8th St, San Francisco, CA 94016" +320335,USB-C Charging Cable,1,11.95,12/06/19 04:40,"129 2nd St, Boston, MA 02215" +320336,27in FHD Monitor,1,149.99,12/06/19 17:34,"617 Meadow St, Los Angeles, CA 90001" +320337,Wired Headphones,1,11.99,12/03/19 15:13,"327 Wilson St, San Francisco, CA 94016" +320338,USB-C Charging Cable,1,11.95,12/30/19 00:03,"382 6th St, New York City, NY 10001" +320339,Wired Headphones,1,11.99,12/26/19 13:44,"75 6th St, Los Angeles, CA 90001" +,,,,, +320340,Lightning Charging Cable,1,14.95,12/28/19 21:04,"112 Center St, San Francisco, CA 94016" +320341,20in Monitor,1,109.99,12/06/19 09:40,"379 7th St, Atlanta, GA 30301" +320342,Lightning Charging Cable,1,14.95,12/11/19 23:06,"762 River St, New York City, NY 10001" +320343,AAA Batteries (4-pack),3,2.99,12/06/19 14:31,"794 South St, New York City, NY 10001" +320344,AAA Batteries (4-pack),1,2.99,12/12/19 18:40,"298 River St, Boston, MA 02215" +320345,Bose SoundSport Headphones,1,99.99,12/07/19 13:29,"171 Center St, Los Angeles, CA 90001" +320346,34in Ultrawide Monitor,1,379.99,12/15/19 21:30,"660 Walnut St, Boston, MA 02215" +320347,iPhone,1,700,12/22/19 19:02,"16 5th St, Austin, TX 73301" +320347,Lightning Charging Cable,1,14.95,12/22/19 19:02,"16 5th St, Austin, TX 73301" +320348,Lightning Charging Cable,1,14.95,12/31/19 15:19,"882 Willow St, San Francisco, CA 94016" +320349,Bose SoundSport Headphones,1,99.99,12/27/19 19:58,"99 Spruce St, Los Angeles, CA 90001" +320350,Vareebadd Phone,1,400,12/19/19 08:19,"539 5th St, Los Angeles, CA 90001" +320351,Apple Airpods Headphones,1,150,12/29/19 19:20,"134 Washington St, San Francisco, CA 94016" +320352,iPhone,1,700,12/17/19 20:59,"688 Elm St, Atlanta, GA 30301" +320353,LG Washing Machine,1,600.0,12/01/19 04:40,"146 2nd St, Atlanta, GA 30301" +320354,Apple Airpods Headphones,1,150,12/15/19 15:48,"595 1st St, Seattle, WA 98101" +320355,Apple Airpods Headphones,1,150,12/26/19 21:52,"152 River St, New York City, NY 10001" +320356,Flatscreen TV,1,300,12/30/19 12:12,"438 9th St, Portland, OR 97035" +320357,Macbook Pro Laptop,1,1700,12/26/19 05:48,"759 Cedar St, Boston, MA 02215" +320358,Wired Headphones,1,11.99,12/19/19 16:36,"418 South St, San Francisco, CA 94016" +320359,USB-C Charging Cable,1,11.95,12/12/19 09:17,"961 Pine St, New York City, NY 10001" +320360,Bose SoundSport Headphones,1,99.99,12/20/19 16:52,"452 Forest St, San Francisco, CA 94016" +320361,Bose SoundSport Headphones,1,99.99,12/07/19 16:31,"740 Jefferson St, San Francisco, CA 94016" +320362,27in FHD Monitor,1,149.99,12/09/19 21:11,"700 Walnut St, New York City, NY 10001" +320363,AAA Batteries (4-pack),1,2.99,12/15/19 00:08,"837 Church St, Dallas, TX 75001" +320364,Lightning Charging Cable,1,14.95,12/13/19 18:15,"613 Cherry St, San Francisco, CA 94016" +320365,LG Dryer,1,600.0,12/04/19 14:34,"983 Cedar St, Portland, OR 97035" +320366,Wired Headphones,1,11.99,12/22/19 01:07,"434 9th St, New York City, NY 10001" +320367,Lightning Charging Cable,1,14.95,12/17/19 13:15,"691 Lakeview St, San Francisco, CA 94016" +320368,Macbook Pro Laptop,1,1700,12/18/19 13:37,"714 9th St, Portland, OR 97035" +320369,iPhone,1,700,12/10/19 22:17,"1 1st St, Los Angeles, CA 90001" +320370,Lightning Charging Cable,1,14.95,12/26/19 19:25,"350 12th St, Dallas, TX 75001" +320371,USB-C Charging Cable,1,11.95,12/19/19 13:53,"363 4th St, Los Angeles, CA 90001" +320372,Lightning Charging Cable,1,14.95,12/01/19 13:18,"250 Washington St, Los Angeles, CA 90001" +320373,Macbook Pro Laptop,1,1700,12/10/19 12:07,"6 Adams St, New York City, NY 10001" +320374,Lightning Charging Cable,1,14.95,12/20/19 19:18,"155 Forest St, Austin, TX 73301" +320375,Vareebadd Phone,1,400,12/28/19 06:39,"205 South St, Dallas, TX 75001" +320376,USB-C Charging Cable,1,11.95,12/30/19 20:55,"562 Maple St, Seattle, WA 98101" +320377,Bose SoundSport Headphones,1,99.99,12/18/19 17:59,"660 12th St, Dallas, TX 75001" +320378,Lightning Charging Cable,1,14.95,12/13/19 21:11,"535 Sunset St, San Francisco, CA 94016" +320379,AA Batteries (4-pack),1,3.84,12/30/19 15:27,"105 Elm St, New York City, NY 10001" +320380,iPhone,1,700,12/08/19 13:46,"727 Forest St, San Francisco, CA 94016" +320381,AAA Batteries (4-pack),1,2.99,12/08/19 15:29,"296 Park St, San Francisco, CA 94016" +320382,Flatscreen TV,1,300,12/30/19 16:51,"824 Dogwood St, New York City, NY 10001" +320383,Macbook Pro Laptop,1,1700,12/20/19 17:14,"768 8th St, San Francisco, CA 94016" +320384,iPhone,1,700,12/18/19 14:09,"597 Highland St, Seattle, WA 98101" +320385,Bose SoundSport Headphones,1,99.99,12/18/19 01:25,"981 2nd St, Boston, MA 02215" +320386,27in FHD Monitor,1,149.99,12/17/19 16:31,"708 Pine St, San Francisco, CA 94016" +320387,iPhone,1,700,12/10/19 09:15,"247 8th St, New York City, NY 10001" +320388,Wired Headphones,1,11.99,12/18/19 09:23,"719 Madison St, Atlanta, GA 30301" +320389,USB-C Charging Cable,1,11.95,12/03/19 20:03,"744 2nd St, Seattle, WA 98101" +320390,AAA Batteries (4-pack),1,2.99,12/23/19 09:36,"835 Willow St, Austin, TX 73301" +320391,Google Phone,1,600,12/08/19 21:07,"720 13th St, Seattle, WA 98101" +320392,Wired Headphones,1,11.99,12/06/19 23:16,"752 South St, Dallas, TX 75001" +320393,34in Ultrawide Monitor,1,379.99,12/08/19 12:53,"569 14th St, Los Angeles, CA 90001" +320394,Apple Airpods Headphones,1,150,12/01/19 20:17,"455 14th St, Los Angeles, CA 90001" +320395,USB-C Charging Cable,1,11.95,12/24/19 04:50,"744 Cherry St, Boston, MA 02215" +320396,Bose SoundSport Headphones,1,99.99,12/01/19 12:18,"819 Main St, San Francisco, CA 94016" +320397,Bose SoundSport Headphones,1,99.99,12/20/19 18:41,"328 9th St, Boston, MA 02215" +320398,AA Batteries (4-pack),3,3.84,12/11/19 13:34,"764 Wilson St, Los Angeles, CA 90001" +320398,Bose SoundSport Headphones,1,99.99,12/11/19 13:34,"764 Wilson St, Los Angeles, CA 90001" +320399,Google Phone,1,600,12/24/19 18:19,"841 7th St, Dallas, TX 75001" +320400,Apple Airpods Headphones,1,150,12/20/19 11:49,"437 11th St, Seattle, WA 98101" +320401,27in FHD Monitor,1,149.99,12/12/19 14:05,"878 Walnut St, Boston, MA 02215" +320402,Lightning Charging Cable,1,14.95,12/27/19 19:39,"126 14th St, Boston, MA 02215" +320403,Wired Headphones,1,11.99,12/16/19 06:33,"85 5th St, Boston, MA 02215" +320404,34in Ultrawide Monitor,1,379.99,12/18/19 17:33,"741 Johnson St, Boston, MA 02215" +320405,Wired Headphones,1,11.99,12/19/19 14:56,"596 2nd St, Atlanta, GA 30301" +320406,AAA Batteries (4-pack),1,2.99,12/14/19 17:29,"797 Meadow St, Los Angeles, CA 90001" +320407,20in Monitor,1,109.99,12/09/19 09:54,"415 River St, New York City, NY 10001" +320408,Google Phone,1,600,12/09/19 15:22,"606 Hickory St, Austin, TX 73301" +320409,Macbook Pro Laptop,1,1700,12/31/19 16:08,"234 Wilson St, San Francisco, CA 94016" +320410,34in Ultrawide Monitor,1,379.99,12/29/19 16:49,"56 Ridge St, Atlanta, GA 30301" +320411,27in 4K Gaming Monitor,1,389.99,12/14/19 19:36,"159 Pine St, Los Angeles, CA 90001" +320412,AAA Batteries (4-pack),3,2.99,12/19/19 10:32,"527 1st St, San Francisco, CA 94016" +320413,27in FHD Monitor,1,149.99,12/31/19 14:23,"363 Hickory St, Dallas, TX 75001" +320414,Lightning Charging Cable,1,14.95,12/28/19 06:41,"544 4th St, Portland, OR 97035" +320415,27in 4K Gaming Monitor,1,389.99,12/21/19 17:16,"126 Willow St, San Francisco, CA 94016" +320416,USB-C Charging Cable,1,11.95,12/31/19 22:16,"957 Hill St, Austin, TX 73301" +320416,Google Phone,1,600,12/31/19 22:16,"957 Hill St, Austin, TX 73301" +320417,Bose SoundSport Headphones,1,99.99,12/11/19 21:18,"915 13th St, Portland, OR 97035" +320418,AAA Batteries (4-pack),1,2.99,12/10/19 03:57,"447 Jefferson St, San Francisco, CA 94016" +320419,34in Ultrawide Monitor,1,379.99,12/16/19 08:56,"127 Walnut St, San Francisco, CA 94016" +320420,ThinkPad Laptop,1,999.99,12/12/19 21:20,"892 Maple St, Los Angeles, CA 90001" +320421,Lightning Charging Cable,1,14.95,12/11/19 13:14,"875 Johnson St, San Francisco, CA 94016" +320422,USB-C Charging Cable,1,11.95,12/19/19 07:11,"717 South St, New York City, NY 10001" +320423,Lightning Charging Cable,1,14.95,12/03/19 06:41,"877 2nd St, Boston, MA 02215" +320424,Lightning Charging Cable,1,14.95,12/10/19 01:16,"561 Madison St, Los Angeles, CA 90001" +320425,Bose SoundSport Headphones,1,99.99,12/17/19 10:48,"557 Lakeview St, San Francisco, CA 94016" +320426,Apple Airpods Headphones,1,150,12/18/19 19:26,"750 9th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +320427,USB-C Charging Cable,2,11.95,12/12/19 21:53,"567 Meadow St, Los Angeles, CA 90001" +320428,AA Batteries (4-pack),1,3.84,12/24/19 15:42,"254 River St, Austin, TX 73301" +320429,AA Batteries (4-pack),2,3.84,12/03/19 22:34,"361 Pine St, Los Angeles, CA 90001" +320430,27in FHD Monitor,1,149.99,12/30/19 09:09,"93 Washington St, Portland, OR 97035" +320431,27in FHD Monitor,1,149.99,12/27/19 21:40,"187 Pine St, Boston, MA 02215" +320432,Apple Airpods Headphones,1,150,12/21/19 19:50,"874 8th St, Atlanta, GA 30301" +320433,Lightning Charging Cable,1,14.95,12/25/19 08:31,"516 Adams St, San Francisco, CA 94016" +320434,Wired Headphones,1,11.99,12/27/19 09:52,"265 Spruce St, San Francisco, CA 94016" +320435,AAA Batteries (4-pack),2,2.99,12/12/19 10:24,"972 South St, New York City, NY 10001" +320436,Apple Airpods Headphones,1,150,12/24/19 19:26,"522 7th St, San Francisco, CA 94016" +320437,USB-C Charging Cable,1,11.95,12/08/19 09:27,"568 Highland St, Boston, MA 02215" +320437,Macbook Pro Laptop,1,1700,12/08/19 09:27,"568 Highland St, Boston, MA 02215" +320438,Bose SoundSport Headphones,1,99.99,12/10/19 13:17,"943 Hill St, Dallas, TX 75001" +320439,USB-C Charging Cable,1,11.95,12/07/19 09:23,"227 8th St, Portland, OR 97035" +320440,Bose SoundSport Headphones,1,99.99,12/23/19 20:04,"28 Wilson St, Austin, TX 73301" +320441,USB-C Charging Cable,1,11.95,12/09/19 12:25,"360 Wilson St, New York City, NY 10001" +320442,Flatscreen TV,1,300,12/10/19 13:51,"245 Cedar St, Los Angeles, CA 90001" +320443,27in FHD Monitor,1,149.99,12/20/19 01:26,"7 Lincoln St, New York City, NY 10001" +320444,Bose SoundSport Headphones,1,99.99,12/10/19 19:43,"649 Wilson St, New York City, NY 10001" +320445,AAA Batteries (4-pack),1,2.99,12/05/19 17:44,"548 Cherry St, Boston, MA 02215" +320446,AA Batteries (4-pack),1,3.84,12/25/19 02:25,"593 1st St, San Francisco, CA 94016" +320447,Lightning Charging Cable,1,14.95,12/02/19 16:43,"898 Spruce St, New York City, NY 10001" +320448,AAA Batteries (4-pack),3,2.99,12/21/19 16:45,"947 Willow St, Atlanta, GA 30301" +320449,Bose SoundSport Headphones,1,99.99,12/18/19 15:37,"950 Church St, San Francisco, CA 94016" +320450,Apple Airpods Headphones,1,150,12/05/19 12:11,"587 Jackson St, Seattle, WA 98101" +320451,34in Ultrawide Monitor,1,379.99,12/30/19 19:20,"486 North St, Seattle, WA 98101" +320452,Apple Airpods Headphones,1,150,12/30/19 01:10,"841 Cherry St, Seattle, WA 98101" +320453,Apple Airpods Headphones,1,150,12/08/19 02:58,"33 4th St, Boston, MA 02215" +320454,USB-C Charging Cable,1,11.95,12/07/19 17:27,"18 Washington St, New York City, NY 10001" +320455,Macbook Pro Laptop,1,1700,12/07/19 20:41,"365 Jackson St, Seattle, WA 98101" +320456,Lightning Charging Cable,2,14.95,12/09/19 15:23,"890 Spruce St, Los Angeles, CA 90001" +320457,USB-C Charging Cable,1,11.95,12/15/19 09:40,"209 Spruce St, Los Angeles, CA 90001" +320458,USB-C Charging Cable,1,11.95,12/10/19 12:36,"937 Madison St, San Francisco, CA 94016" +320459,Flatscreen TV,1,300,12/03/19 02:37,"952 Pine St, Dallas, TX 75001" +320460,AAA Batteries (4-pack),2,2.99,12/20/19 10:40,"118 1st St, San Francisco, CA 94016" +320461,ThinkPad Laptop,1,999.99,12/06/19 18:27,"97 Adams St, Los Angeles, CA 90001" +320462,USB-C Charging Cable,1,11.95,12/22/19 00:52,"390 Jackson St, Boston, MA 02215" +320463,20in Monitor,1,109.99,12/01/19 06:13,"110 Lake St, New York City, NY 10001" +320464,Apple Airpods Headphones,1,150,12/28/19 21:08,"801 12th St, Boston, MA 02215" +320465,Apple Airpods Headphones,1,150,12/16/19 15:50,"991 8th St, Boston, MA 02215" +320466,Google Phone,1,600,12/12/19 08:13,"509 Highland St, Austin, TX 73301" +320467,USB-C Charging Cable,1,11.95,12/15/19 19:30,"620 Jefferson St, Portland, OR 97035" +320468,ThinkPad Laptop,1,999.99,12/27/19 14:16,"297 Dogwood St, San Francisco, CA 94016" +320469,Bose SoundSport Headphones,1,99.99,12/21/19 23:07,"769 Lincoln St, Los Angeles, CA 90001" +320470,AAA Batteries (4-pack),1,2.99,12/04/19 19:20,"831 Washington St, San Francisco, CA 94016" +320471,Lightning Charging Cable,1,14.95,12/14/19 20:14,"74 4th St, Dallas, TX 75001" +320472,Wired Headphones,1,11.99,12/26/19 14:11,"185 Maple St, San Francisco, CA 94016" +320473,Lightning Charging Cable,2,14.95,12/11/19 00:29,"129 Lincoln St, Los Angeles, CA 90001" +320474,Lightning Charging Cable,1,14.95,12/02/19 16:52,"918 Hill St, San Francisco, CA 94016" +320475,AAA Batteries (4-pack),1,2.99,12/12/19 11:53,"6 Ridge St, Los Angeles, CA 90001" +320476,20in Monitor,1,109.99,12/09/19 11:24,"219 Dogwood St, San Francisco, CA 94016" +320477,ThinkPad Laptop,1,999.99,12/10/19 23:45,"751 Adams St, San Francisco, CA 94016" +320478,USB-C Charging Cable,1,11.95,12/05/19 12:29,"11 1st St, San Francisco, CA 94016" +320479,Apple Airpods Headphones,1,150,12/23/19 12:25,"660 Dogwood St, Seattle, WA 98101" +320480,Bose SoundSport Headphones,1,99.99,12/20/19 14:23,"985 Dogwood St, Portland, OR 97035" +320481,27in FHD Monitor,1,149.99,12/24/19 15:47,"292 9th St, Seattle, WA 98101" +320482,AAA Batteries (4-pack),1,2.99,12/09/19 17:22,"687 Elm St, New York City, NY 10001" +320483,AAA Batteries (4-pack),1,2.99,12/16/19 11:05,"335 Lakeview St, New York City, NY 10001" +320483,AAA Batteries (4-pack),1,2.99,12/16/19 11:05,"335 Lakeview St, New York City, NY 10001" +320484,AA Batteries (4-pack),1,3.84,12/20/19 22:49,"952 Chestnut St, San Francisco, CA 94016" +320485,27in 4K Gaming Monitor,1,389.99,12/18/19 13:21,"184 Madison St, Portland, OR 97035" +320486,Wired Headphones,2,11.99,12/31/19 09:01,"78 Adams St, New York City, NY 10001" +320487,iPhone,1,700,12/11/19 11:11,"148 Elm St, Los Angeles, CA 90001" +320487,Lightning Charging Cable,1,14.95,12/11/19 11:11,"148 Elm St, Los Angeles, CA 90001" +320488,34in Ultrawide Monitor,1,379.99,12/20/19 14:57,"650 Meadow St, San Francisco, CA 94016" +320489,Lightning Charging Cable,1,14.95,12/19/19 22:41,"81 10th St, Austin, TX 73301" +320490,Bose SoundSport Headphones,1,99.99,12/21/19 20:34,"28 Hickory St, Los Angeles, CA 90001" +320491,Apple Airpods Headphones,1,150,12/10/19 17:25,"82 Walnut St, New York City, NY 10001" +320492,34in Ultrawide Monitor,1,379.99,12/07/19 06:15,"953 8th St, Los Angeles, CA 90001" +320493,USB-C Charging Cable,1,11.95,12/04/19 22:21,"498 Johnson St, New York City, NY 10001" +320494,AA Batteries (4-pack),1,3.84,12/21/19 14:59,"559 9th St, San Francisco, CA 94016" +320495,AA Batteries (4-pack),1,3.84,12/15/19 17:06,"74 Lakeview St, San Francisco, CA 94016" +320496,AAA Batteries (4-pack),1,2.99,12/08/19 14:46,"136 Lakeview St, Seattle, WA 98101" +320497,iPhone,1,700,12/20/19 08:43,"35 Lake St, San Francisco, CA 94016" +320497,Apple Airpods Headphones,1,150,12/20/19 08:43,"35 Lake St, San Francisco, CA 94016" +320498,Apple Airpods Headphones,1,150,12/01/19 13:51,"982 Cedar St, San Francisco, CA 94016" +320499,AAA Batteries (4-pack),2,2.99,12/16/19 08:24,"758 Church St, Seattle, WA 98101" +320500,27in FHD Monitor,1,149.99,12/17/19 13:11,"924 Cherry St, New York City, NY 10001" +320501,Apple Airpods Headphones,1,150,12/18/19 22:08,"67 14th St, Atlanta, GA 30301" +320502,AA Batteries (4-pack),1,3.84,12/25/19 21:16,"759 11th St, New York City, NY 10001" +320503,Wired Headphones,1,11.99,12/15/19 11:44,"868 Maple St, New York City, NY 10001" +320504,LG Dryer,1,600.0,12/04/19 12:50,"709 Main St, New York City, NY 10001" +320505,Apple Airpods Headphones,1,150,12/30/19 17:12,"906 1st St, New York City, NY 10001" +320506,Wired Headphones,1,11.99,12/08/19 18:40,"309 1st St, Los Angeles, CA 90001" +320507,AA Batteries (4-pack),1,3.84,12/10/19 13:52,"276 Adams St, New York City, NY 10001" +320508,Macbook Pro Laptop,1,1700,12/08/19 00:39,"382 Forest St, Dallas, TX 75001" +320509,USB-C Charging Cable,1,11.95,12/12/19 15:46,"94 Cherry St, Los Angeles, CA 90001" +320510,USB-C Charging Cable,1,11.95,12/24/19 21:38,"639 Hill St, Dallas, TX 75001" +320511,Flatscreen TV,1,300,12/08/19 13:44,"76 Walnut St, San Francisco, CA 94016" +320512,Wired Headphones,1,11.99,12/03/19 12:28,"530 Jefferson St, Portland, OR 97035" +320513,Bose SoundSport Headphones,1,99.99,12/26/19 14:11,"284 Park St, New York City, NY 10001" +320513,27in FHD Monitor,1,149.99,12/26/19 14:11,"284 Park St, New York City, NY 10001" +320514,USB-C Charging Cable,1,11.95,12/30/19 22:17,"744 13th St, Los Angeles, CA 90001" +320514,34in Ultrawide Monitor,1,379.99,12/30/19 22:17,"744 13th St, Los Angeles, CA 90001" +320515,Macbook Pro Laptop,1,1700,12/22/19 12:14,"713 Willow St, Dallas, TX 75001" +320516,Lightning Charging Cable,1,14.95,12/27/19 15:21,"927 Elm St, Atlanta, GA 30301" +320517,Apple Airpods Headphones,1,150,12/02/19 19:00,"505 Spruce St, Boston, MA 02215" +320518,USB-C Charging Cable,1,11.95,12/18/19 12:27,"551 Madison St, Austin, TX 73301" +320519,AA Batteries (4-pack),4,3.84,12/27/19 13:00,"196 Center St, New York City, NY 10001" +320520,27in FHD Monitor,1,149.99,12/27/19 09:21,"474 Center St, San Francisco, CA 94016" +320521,Wired Headphones,1,11.99,12/23/19 05:55,"924 Cherry St, Los Angeles, CA 90001" +320522,Google Phone,1,600,12/31/19 11:58,"169 4th St, San Francisco, CA 94016" +320523,27in FHD Monitor,1,149.99,12/01/19 09:12,"207 Elm St, San Francisco, CA 94016" +320524,Lightning Charging Cable,1,14.95,12/15/19 22:14,"426 9th St, New York City, NY 10001" +320525,Wired Headphones,1,11.99,12/12/19 10:52,"678 Highland St, New York City, NY 10001" +320526,USB-C Charging Cable,2,11.95,12/04/19 12:15,"5 Forest St, Boston, MA 02215" +320527,AAA Batteries (4-pack),2,2.99,12/03/19 17:36,"131 Ridge St, Boston, MA 02215" +320528,Flatscreen TV,1,300,12/11/19 21:39,"986 Pine St, Los Angeles, CA 90001" +320529,USB-C Charging Cable,1,11.95,12/27/19 20:11,"961 Hill St, San Francisco, CA 94016" +320530,Apple Airpods Headphones,1,150,12/02/19 18:52,"416 Main St, San Francisco, CA 94016" +320531,Lightning Charging Cable,1,14.95,12/12/19 17:37,"977 Jackson St, Atlanta, GA 30301" +320532,Wired Headphones,1,11.99,12/29/19 13:09,"866 Washington St, New York City, NY 10001" +320533,34in Ultrawide Monitor,1,379.99,12/25/19 06:39,"821 1st St, San Francisco, CA 94016" +320534,34in Ultrawide Monitor,1,379.99,12/15/19 06:25,"287 Cherry St, Portland, OR 97035" +320535,Wired Headphones,1,11.99,12/26/19 15:32,"136 9th St, Atlanta, GA 30301" +320536,AA Batteries (4-pack),1,3.84,12/27/19 11:01,"634 Ridge St, Los Angeles, CA 90001" +320537,Bose SoundSport Headphones,1,99.99,12/23/19 13:45,"490 Meadow St, San Francisco, CA 94016" +320538,Lightning Charging Cable,1,14.95,12/25/19 11:07,"991 Maple St, Atlanta, GA 30301" +320539,Flatscreen TV,1,300,12/23/19 14:00,"798 Jefferson St, Seattle, WA 98101" +320540,Lightning Charging Cable,1,14.95,12/15/19 12:43,"336 Washington St, Austin, TX 73301" +320541,AA Batteries (4-pack),1,3.84,12/16/19 11:10,"547 West St, San Francisco, CA 94016" +320542,Lightning Charging Cable,1,14.95,12/29/19 19:09,"98 Ridge St, Los Angeles, CA 90001" +320543,AAA Batteries (4-pack),1,2.99,12/20/19 19:28,"808 Highland St, Dallas, TX 75001" +320544,27in FHD Monitor,1,149.99,12/11/19 05:59,"103 Elm St, Los Angeles, CA 90001" +320545,20in Monitor,1,109.99,12/18/19 10:34,"264 Church St, Atlanta, GA 30301" +320546,AAA Batteries (4-pack),1,2.99,12/09/19 15:57,"865 13th St, Dallas, TX 75001" +320547,Wired Headphones,1,11.99,12/23/19 05:12,"167 Madison St, Los Angeles, CA 90001" +320547,Wired Headphones,1,11.99,12/23/19 05:12,"167 Madison St, Los Angeles, CA 90001" +320548,AA Batteries (4-pack),1,3.84,12/22/19 18:47,"130 Cherry St, New York City, NY 10001" +320549,34in Ultrawide Monitor,1,379.99,12/24/19 20:29,"821 Dogwood St, Seattle, WA 98101" +320550,Bose SoundSport Headphones,1,99.99,12/17/19 17:31,"675 4th St, New York City, NY 10001" +320551,Lightning Charging Cable,1,14.95,12/04/19 11:43,"602 Maple St, Los Angeles, CA 90001" +320552,AAA Batteries (4-pack),3,2.99,12/10/19 15:16,"23 Spruce St, Boston, MA 02215" +320553,Macbook Pro Laptop,1,1700,12/01/19 20:54,"178 Adams St, Los Angeles, CA 90001" +320554,AAA Batteries (4-pack),2,2.99,12/08/19 14:26,"905 Hickory St, New York City, NY 10001" +320555,Bose SoundSport Headphones,1,99.99,12/29/19 10:43,"293 Maple St, Dallas, TX 75001" +320556,20in Monitor,1,109.99,12/18/19 22:45,"55 Park St, Atlanta, GA 30301" +320557,20in Monitor,1,109.99,12/29/19 11:43,"723 Walnut St, Los Angeles, CA 90001" +320558,Bose SoundSport Headphones,1,99.99,12/01/19 09:33,"629 Adams St, Atlanta, GA 30301" +320559,USB-C Charging Cable,1,11.95,12/21/19 13:16,"724 Washington St, New York City, NY 10001" +320560,Macbook Pro Laptop,1,1700,12/24/19 19:02,"22 Jackson St, San Francisco, CA 94016" +320561,USB-C Charging Cable,1,11.95,12/21/19 19:46,"878 Sunset St, New York City, NY 10001" +320562,Bose SoundSport Headphones,1,99.99,12/30/19 20:14,"589 9th St, Portland, OR 97035" +320563,Lightning Charging Cable,1,14.95,12/04/19 15:31,"513 10th St, Austin, TX 73301" +320563,Wired Headphones,2,11.99,12/04/19 15:31,"513 10th St, Austin, TX 73301" +320564,Lightning Charging Cable,1,14.95,12/20/19 22:35,"285 6th St, Dallas, TX 75001" +320565,Apple Airpods Headphones,1,150,12/01/19 06:48,"160 Park St, Austin, TX 73301" +320566,AAA Batteries (4-pack),1,2.99,12/16/19 22:57,"983 Adams St, San Francisco, CA 94016" +320567,Bose SoundSport Headphones,1,99.99,12/24/19 08:19,"179 Willow St, San Francisco, CA 94016" +320567,AA Batteries (4-pack),1,3.84,12/24/19 08:19,"179 Willow St, San Francisco, CA 94016" +320568,Lightning Charging Cable,1,14.95,12/16/19 19:36,"826 Park St, Los Angeles, CA 90001" +320569,Google Phone,1,600,12/11/19 10:42,"357 Sunset St, Boston, MA 02215" +320570,27in 4K Gaming Monitor,1,389.99,12/25/19 14:26,"891 Park St, Dallas, TX 75001" +320571,AAA Batteries (4-pack),1,2.99,12/28/19 08:18,"821 Park St, Atlanta, GA 30301" +320572,AA Batteries (4-pack),1,3.84,12/15/19 03:07,"871 14th St, Los Angeles, CA 90001" +320573,AAA Batteries (4-pack),1,2.99,12/02/19 22:51,"738 South St, Boston, MA 02215" +320574,AAA Batteries (4-pack),1,2.99,12/26/19 14:51,"666 2nd St, Seattle, WA 98101" +320575,Wired Headphones,1,11.99,12/08/19 01:36,"906 Wilson St, Los Angeles, CA 90001" +320576,USB-C Charging Cable,1,11.95,12/16/19 13:35,"946 Walnut St, New York City, NY 10001" +320577,20in Monitor,1,109.99,12/18/19 16:45,"888 Maple St, Boston, MA 02215" +320578,Wired Headphones,1,11.99,12/15/19 21:47,"877 Main St, San Francisco, CA 94016" +320579,Lightning Charging Cable,1,14.95,12/06/19 18:06,"605 Sunset St, Portland, ME 04101" +320580,Lightning Charging Cable,1,14.95,12/09/19 20:04,"409 Cedar St, Los Angeles, CA 90001" +320581,34in Ultrawide Monitor,1,379.99,12/19/19 10:02,"54 12th St, Portland, ME 04101" +320582,USB-C Charging Cable,1,11.95,12/13/19 16:06,"205 Madison St, Portland, OR 97035" +320583,Lightning Charging Cable,1,14.95,12/05/19 11:06,"781 Johnson St, Portland, OR 97035" +320584,Wired Headphones,1,11.99,12/03/19 19:49,"378 7th St, San Francisco, CA 94016" +320585,Apple Airpods Headphones,1,150,12/06/19 11:43,"942 Hickory St, Boston, MA 02215" +320586,USB-C Charging Cable,2,11.95,12/15/19 22:04,"587 Walnut St, Los Angeles, CA 90001" +320587,Apple Airpods Headphones,1,150,12/05/19 15:41,"811 Pine St, San Francisco, CA 94016" +320588,Google Phone,1,600,12/22/19 07:08,"810 9th St, San Francisco, CA 94016" +320589,Bose SoundSport Headphones,1,99.99,12/24/19 07:23,"622 Lakeview St, Seattle, WA 98101" +320590,27in FHD Monitor,1,149.99,12/03/19 12:33,"186 Park St, New York City, NY 10001" +320591,AA Batteries (4-pack),1,3.84,12/14/19 23:22,"49 Chestnut St, New York City, NY 10001" +320592,20in Monitor,1,109.99,12/05/19 23:13,"827 Washington St, New York City, NY 10001" +320593,Macbook Pro Laptop,1,1700,12/08/19 19:47,"865 Meadow St, Seattle, WA 98101" +320594,AA Batteries (4-pack),1,3.84,12/20/19 10:40,"479 Wilson St, Dallas, TX 75001" +320595,USB-C Charging Cable,1,11.95,12/13/19 19:28,"288 5th St, New York City, NY 10001" +320596,AAA Batteries (4-pack),1,2.99,12/21/19 06:56,"89 Dogwood St, Boston, MA 02215" +320597,Google Phone,1,600,12/17/19 07:22,"632 South St, Atlanta, GA 30301" +320598,Wired Headphones,1,11.99,12/11/19 07:25,"780 14th St, San Francisco, CA 94016" +320599,20in Monitor,1,109.99,12/13/19 17:52,"720 6th St, New York City, NY 10001" +320600,AA Batteries (4-pack),1,3.84,12/30/19 20:23,"333 10th St, New York City, NY 10001" +320601,Macbook Pro Laptop,1,1700,12/11/19 10:56,"26 Lakeview St, San Francisco, CA 94016" +320602,Macbook Pro Laptop,1,1700,12/22/19 08:18,"910 Lake St, San Francisco, CA 94016" +320603,Wired Headphones,1,11.99,12/01/19 15:48,"575 5th St, Los Angeles, CA 90001" +320604,Wired Headphones,1,11.99,12/07/19 21:56,"921 Chestnut St, Seattle, WA 98101" +320605,Apple Airpods Headphones,1,150,12/23/19 10:54,"328 Hickory St, New York City, NY 10001" +320606,Lightning Charging Cable,1,14.95,12/25/19 11:52,"249 Sunset St, New York City, NY 10001" +320607,Bose SoundSport Headphones,1,99.99,12/06/19 15:21,"520 Cherry St, Los Angeles, CA 90001" +320608,Macbook Pro Laptop,1,1700,12/12/19 13:08,"564 7th St, San Francisco, CA 94016" +320609,USB-C Charging Cable,1,11.95,12/27/19 17:19,"949 Washington St, Seattle, WA 98101" +320610,AAA Batteries (4-pack),2,2.99,12/04/19 17:55,"484 1st St, New York City, NY 10001" +320611,20in Monitor,1,109.99,12/24/19 12:38,"551 South St, Boston, MA 02215" +320612,AA Batteries (4-pack),1,3.84,12/24/19 09:31,"326 Dogwood St, Atlanta, GA 30301" +320613,Lightning Charging Cable,1,14.95,12/29/19 19:35,"719 Chestnut St, New York City, NY 10001" +320614,AA Batteries (4-pack),1,3.84,12/03/19 04:46,"735 12th St, Boston, MA 02215" +320615,Google Phone,1,600,12/09/19 15:50,"285 Ridge St, Los Angeles, CA 90001" +320616,LG Washing Machine,1,600.0,12/15/19 18:45,"974 Forest St, San Francisco, CA 94016" +320617,27in FHD Monitor,1,149.99,12/16/19 09:36,"152 Hill St, Los Angeles, CA 90001" +320618,Apple Airpods Headphones,1,150,12/31/19 08:45,"917 Lincoln St, San Francisco, CA 94016" +320619,Lightning Charging Cable,1,14.95,12/20/19 23:38,"148 6th St, Los Angeles, CA 90001" +320620,Lightning Charging Cable,1,14.95,12/16/19 23:29,"374 2nd St, New York City, NY 10001" +320621,iPhone,1,700,12/07/19 21:31,"119 12th St, Los Angeles, CA 90001" +320622,20in Monitor,1,109.99,12/28/19 11:42,"213 Willow St, Los Angeles, CA 90001" +320623,20in Monitor,1,109.99,12/18/19 16:54,"138 9th St, Atlanta, GA 30301" +320624,ThinkPad Laptop,1,999.99,12/13/19 13:16,"607 Jackson St, Portland, OR 97035" +320625,iPhone,1,700,12/17/19 17:07,"824 Lakeview St, Los Angeles, CA 90001" +320626,Wired Headphones,1,11.99,12/25/19 14:27,"918 Park St, San Francisco, CA 94016" +320627,34in Ultrawide Monitor,1,379.99,12/27/19 10:48,"188 7th St, Austin, TX 73301" +320628,34in Ultrawide Monitor,1,379.99,12/17/19 19:29,"32 Highland St, Dallas, TX 75001" +320629,USB-C Charging Cable,1,11.95,12/13/19 13:02,"132 14th St, Atlanta, GA 30301" +320630,Bose SoundSport Headphones,1,99.99,12/17/19 09:33,"283 11th St, Los Angeles, CA 90001" +320631,Vareebadd Phone,1,400,12/07/19 19:56,"512 Hickory St, New York City, NY 10001" +320632,Wired Headphones,1,11.99,12/09/19 08:31,"206 Sunset St, Los Angeles, CA 90001" +320633,AAA Batteries (4-pack),1,2.99,12/26/19 18:55,"560 4th St, Boston, MA 02215" +320634,USB-C Charging Cable,1,11.95,12/22/19 16:31,"435 Main St, San Francisco, CA 94016" +320635,27in FHD Monitor,1,149.99,12/03/19 19:00,"34 Madison St, Boston, MA 02215" +320636,Flatscreen TV,1,300,12/02/19 09:22,"638 Walnut St, San Francisco, CA 94016" +320637,Apple Airpods Headphones,1,150,12/11/19 22:38,"673 11th St, Los Angeles, CA 90001" +320638,27in 4K Gaming Monitor,1,389.99,12/28/19 08:49,"444 8th St, Austin, TX 73301" +320639,Macbook Pro Laptop,1,1700,12/23/19 22:09,"836 Willow St, San Francisco, CA 94016" +320640,Macbook Pro Laptop,1,1700,12/27/19 14:16,"891 Meadow St, Austin, TX 73301" +320641,USB-C Charging Cable,2,11.95,12/10/19 18:04,"880 Dogwood St, Boston, MA 02215" +320642,AAA Batteries (4-pack),1,2.99,12/17/19 06:29,"937 Forest St, New York City, NY 10001" +320643,AA Batteries (4-pack),1,3.84,12/01/19 12:46,"926 1st St, New York City, NY 10001" +320644,AAA Batteries (4-pack),1,2.99,12/28/19 14:32,"940 Hill St, San Francisco, CA 94016" +320645,Google Phone,1,600,12/19/19 21:25,"721 Lake St, Portland, OR 97035" +320646,Lightning Charging Cable,1,14.95,12/28/19 08:56,"116 Lake St, Boston, MA 02215" +320647,Bose SoundSport Headphones,1,99.99,12/17/19 18:38,"659 Forest St, San Francisco, CA 94016" +320648,USB-C Charging Cable,1,11.95,12/25/19 17:25,"945 Park St, Seattle, WA 98101" +320649,Bose SoundSport Headphones,1,99.99,12/13/19 21:49,"324 1st St, Atlanta, GA 30301" +320650,Bose SoundSport Headphones,1,99.99,12/20/19 19:57,"294 1st St, San Francisco, CA 94016" +320651,AA Batteries (4-pack),1,3.84,12/14/19 19:12,"328 Forest St, Dallas, TX 75001" +320652,USB-C Charging Cable,1,11.95,12/18/19 20:41,"645 14th St, San Francisco, CA 94016" +320653,iPhone,1,700,12/02/19 17:39,"187 Jackson St, San Francisco, CA 94016" +320654,Bose SoundSport Headphones,1,99.99,12/09/19 18:46,"967 Jefferson St, New York City, NY 10001" +320655,27in FHD Monitor,1,149.99,12/21/19 20:07,"492 4th St, Atlanta, GA 30301" +320656,USB-C Charging Cable,1,11.95,12/07/19 22:30,"289 Washington St, San Francisco, CA 94016" +320657,Wired Headphones,1,11.99,12/30/19 12:55,"470 Adams St, Los Angeles, CA 90001" +320658,AA Batteries (4-pack),1,3.84,12/30/19 13:11,"269 2nd St, Dallas, TX 75001" +320659,27in 4K Gaming Monitor,1,389.99,12/14/19 10:16,"48 Jackson St, New York City, NY 10001" +320660,AA Batteries (4-pack),1,3.84,12/05/19 16:53,"404 Cedar St, New York City, NY 10001" +320661,27in FHD Monitor,1,149.99,12/16/19 15:19,"960 Washington St, Atlanta, GA 30301" +320662,Apple Airpods Headphones,1,150,12/30/19 12:55,"440 5th St, San Francisco, CA 94016" +320663,34in Ultrawide Monitor,1,379.99,12/17/19 22:38,"632 4th St, San Francisco, CA 94016" +320664,34in Ultrawide Monitor,1,379.99,12/09/19 20:22,"593 Lincoln St, Seattle, WA 98101" +320665,Google Phone,1,600,12/16/19 17:40,"267 South St, Seattle, WA 98101" +320666,Bose SoundSport Headphones,1,99.99,12/02/19 14:56,"858 Church St, Atlanta, GA 30301" +320666,Flatscreen TV,1,300,12/02/19 14:56,"858 Church St, Atlanta, GA 30301" +320667,AAA Batteries (4-pack),1,2.99,12/06/19 07:42,"707 11th St, Dallas, TX 75001" +320668,Lightning Charging Cable,1,14.95,12/18/19 12:01,"760 Pine St, Seattle, WA 98101" +320669,27in FHD Monitor,1,149.99,12/10/19 11:28,"612 Hill St, Dallas, TX 75001" +320670,AA Batteries (4-pack),1,3.84,12/16/19 09:19,"478 7th St, San Francisco, CA 94016" +320671,Wired Headphones,1,11.99,12/28/19 12:16,"567 South St, Boston, MA 02215" +320672,AAA Batteries (4-pack),1,2.99,12/25/19 16:00,"159 Chestnut St, Seattle, WA 98101" +320673,AAA Batteries (4-pack),1,2.99,12/27/19 10:25,"253 West St, Los Angeles, CA 90001" +320674,Lightning Charging Cable,1,14.95,12/01/19 15:31,"184 Walnut St, New York City, NY 10001" +320675,Lightning Charging Cable,2,14.95,12/23/19 18:10,"331 Cedar St, Boston, MA 02215" +320676,Lightning Charging Cable,1,14.95,12/10/19 18:38,"702 Cedar St, San Francisco, CA 94016" +320677,AA Batteries (4-pack),1,3.84,12/14/19 16:26,"86 Spruce St, Atlanta, GA 30301" +320678,Google Phone,1,600,12/10/19 10:59,"433 Ridge St, Los Angeles, CA 90001" +320679,Bose SoundSport Headphones,1,99.99,12/15/19 00:18,"85 12th St, New York City, NY 10001" +320680,Flatscreen TV,1,300,12/16/19 20:20,"897 8th St, San Francisco, CA 94016" +320681,Apple Airpods Headphones,1,150,12/26/19 18:57,"426 11th St, Portland, OR 97035" +320682,USB-C Charging Cable,1,11.95,12/28/19 15:38,"596 Highland St, New York City, NY 10001" +320683,Apple Airpods Headphones,1,150,12/14/19 18:42,"430 Park St, Portland, ME 04101" +320684,34in Ultrawide Monitor,1,379.99,12/15/19 06:54,"548 8th St, Dallas, TX 75001" +320685,USB-C Charging Cable,1,11.95,12/03/19 16:13,"333 Meadow St, Los Angeles, CA 90001" +320686,Apple Airpods Headphones,1,150,12/24/19 17:10,"152 Dogwood St, Los Angeles, CA 90001" +320687,USB-C Charging Cable,3,11.95,12/15/19 17:35,"982 Park St, Dallas, TX 75001" +320688,20in Monitor,1,109.99,12/15/19 19:50,"190 River St, Portland, OR 97035" +320689,Lightning Charging Cable,1,14.95,12/02/19 13:46,"638 Cedar St, Boston, MA 02215" +320690,Wired Headphones,1,11.99,12/28/19 18:35,"901 Lincoln St, San Francisco, CA 94016" +320691,Flatscreen TV,1,300,12/25/19 15:22,"923 12th St, Austin, TX 73301" +320692,AA Batteries (4-pack),2,3.84,12/11/19 13:19,"791 10th St, Los Angeles, CA 90001" +320693,USB-C Charging Cable,1,11.95,12/28/19 20:50,"313 Lincoln St, Los Angeles, CA 90001" +320694,USB-C Charging Cable,1,11.95,12/23/19 09:29,"37 Madison St, Boston, MA 02215" +320695,Lightning Charging Cable,1,14.95,12/30/19 14:46,"29 Highland St, San Francisco, CA 94016" +320696,AAA Batteries (4-pack),5,2.99,12/30/19 09:46,"75 Forest St, New York City, NY 10001" +320696,iPhone,1,700,12/30/19 09:46,"75 Forest St, New York City, NY 10001" +320697,iPhone,1,700,12/12/19 14:40,"814 West St, San Francisco, CA 94016" +320698,Bose SoundSport Headphones,1,99.99,12/30/19 22:45,"333 Washington St, Boston, MA 02215" +,,,,, +320699,iPhone,1,700,12/21/19 19:49,"68 Church St, Boston, MA 02215" +320700,27in 4K Gaming Monitor,1,389.99,12/15/19 22:12,"351 11th St, San Francisco, CA 94016" +320701,27in FHD Monitor,1,149.99,12/17/19 20:12,"72 Sunset St, Los Angeles, CA 90001" +320702,Lightning Charging Cable,1,14.95,12/26/19 11:23,"375 Willow St, San Francisco, CA 94016" +320703,Lightning Charging Cable,1,14.95,12/05/19 16:40,"122 Meadow St, San Francisco, CA 94016" +320704,Apple Airpods Headphones,1,150,12/01/19 19:19,"149 Forest St, New York City, NY 10001" +320705,Lightning Charging Cable,1,14.95,12/24/19 22:32,"592 Park St, New York City, NY 10001" +320706,Flatscreen TV,1,300,12/26/19 19:48,"792 Main St, San Francisco, CA 94016" +320707,27in FHD Monitor,1,149.99,12/27/19 07:56,"249 Lincoln St, Austin, TX 73301" +320708,USB-C Charging Cable,1,11.95,12/20/19 18:15,"599 Adams St, San Francisco, CA 94016" +320709,Vareebadd Phone,1,400,12/17/19 14:51,"506 Lincoln St, New York City, NY 10001" +320710,ThinkPad Laptop,1,999.99,12/18/19 20:12,"108 13th St, New York City, NY 10001" +320711,Bose SoundSport Headphones,1,99.99,12/16/19 15:41,"301 West St, New York City, NY 10001" +320712,USB-C Charging Cable,1,11.95,12/07/19 21:35,"138 4th St, Los Angeles, CA 90001" +320713,AAA Batteries (4-pack),1,2.99,12/03/19 12:35,"496 Cherry St, Portland, ME 04101" +320714,AA Batteries (4-pack),1,3.84,12/24/19 23:13,"257 Maple St, San Francisco, CA 94016" +320715,Apple Airpods Headphones,1,150,12/28/19 23:34,"459 Forest St, Los Angeles, CA 90001" +320716,Apple Airpods Headphones,1,150,12/08/19 18:43,"114 Willow St, Atlanta, GA 30301" +320717,Bose SoundSport Headphones,1,99.99,12/26/19 12:21,"383 River St, Seattle, WA 98101" +320718,AA Batteries (4-pack),1,3.84,12/04/19 17:22,"229 Cherry St, Los Angeles, CA 90001" +320719,Vareebadd Phone,1,400,12/02/19 12:31,"318 North St, Austin, TX 73301" +320720,Lightning Charging Cable,1,14.95,12/02/19 19:03,"431 Church St, Los Angeles, CA 90001" +320721,USB-C Charging Cable,1,11.95,12/01/19 22:01,"65 10th St, Atlanta, GA 30301" +320722,Apple Airpods Headphones,1,150,12/06/19 18:10,"256 Johnson St, Dallas, TX 75001" +320723,Lightning Charging Cable,1,14.95,12/24/19 19:41,"734 Park St, Los Angeles, CA 90001" +320724,iPhone,1,700,12/08/19 22:43,"914 Johnson St, Boston, MA 02215" +320725,Lightning Charging Cable,1,14.95,12/26/19 08:55,"563 Hill St, San Francisco, CA 94016" +320726,Lightning Charging Cable,1,14.95,12/30/19 09:51,"217 Washington St, Seattle, WA 98101" +320727,Wired Headphones,1,11.99,12/17/19 21:07,"954 Elm St, Atlanta, GA 30301" +320728,27in FHD Monitor,1,149.99,12/10/19 11:39,"998 14th St, Los Angeles, CA 90001" +320729,Vareebadd Phone,1,400,12/01/19 22:43,"665 4th St, Los Angeles, CA 90001" +320730,20in Monitor,1,109.99,12/11/19 11:28,"961 North St, Dallas, TX 75001" +320731,USB-C Charging Cable,1,11.95,12/04/19 12:09,"553 13th St, Boston, MA 02215" +320732,Wired Headphones,1,11.99,12/15/19 22:23,"343 Cherry St, Boston, MA 02215" +320733,27in FHD Monitor,1,149.99,12/05/19 20:06,"577 Ridge St, Austin, TX 73301" +320734,Apple Airpods Headphones,1,150,12/01/19 08:38,"211 Lakeview St, New York City, NY 10001" +320734,AAA Batteries (4-pack),1,2.99,12/01/19 08:38,"211 Lakeview St, New York City, NY 10001" +320735,AA Batteries (4-pack),2,3.84,12/25/19 13:39,"351 River St, Austin, TX 73301" +320736,Lightning Charging Cable,1,14.95,12/29/19 23:38,"682 2nd St, Seattle, WA 98101" +320737,34in Ultrawide Monitor,1,379.99,12/05/19 21:00,"843 Willow St, Los Angeles, CA 90001" +320738,USB-C Charging Cable,1,11.95,12/26/19 11:38,"311 Lincoln St, Los Angeles, CA 90001" +320739,AA Batteries (4-pack),1,3.84,12/14/19 11:47,"344 Hill St, Atlanta, GA 30301" +320740,20in Monitor,1,109.99,12/13/19 16:18,"522 Dogwood St, Atlanta, GA 30301" +320741,Bose SoundSport Headphones,1,99.99,12/08/19 09:24,"937 Hickory St, Dallas, TX 75001" +320742,Apple Airpods Headphones,1,150,12/18/19 22:02,"784 Adams St, New York City, NY 10001" +320743,USB-C Charging Cable,1,11.95,12/05/19 12:10,"762 Maple St, Seattle, WA 98101" +320744,Lightning Charging Cable,2,14.95,12/28/19 23:06,"401 1st St, Atlanta, GA 30301" +320745,Apple Airpods Headphones,1,150,12/07/19 09:29,"437 14th St, Boston, MA 02215" +320746,20in Monitor,1,109.99,12/04/19 15:27,"231 Lakeview St, Dallas, TX 75001" +320747,Bose SoundSport Headphones,1,99.99,12/29/19 21:03,"187 Park St, Dallas, TX 75001" +320748,USB-C Charging Cable,1,11.95,12/25/19 18:17,"988 Pine St, San Francisco, CA 94016" +320749,Lightning Charging Cable,1,14.95,12/27/19 08:48,"463 8th St, Atlanta, GA 30301" +320750,Wired Headphones,1,11.99,12/04/19 13:20,"946 Johnson St, New York City, NY 10001" +320751,Bose SoundSport Headphones,1,99.99,12/08/19 11:57,"436 Lincoln St, Boston, MA 02215" +320752,20in Monitor,1,109.99,12/13/19 19:48,"672 Chestnut St, Boston, MA 02215" +320753,iPhone,1,700,12/21/19 14:01,"722 South St, Austin, TX 73301" +320754,27in FHD Monitor,1,149.99,12/18/19 21:47,"990 Forest St, Atlanta, GA 30301" +320755,AA Batteries (4-pack),2,3.84,12/31/19 16:37,"701 Meadow St, Dallas, TX 75001" +320756,AA Batteries (4-pack),1,3.84,12/12/19 10:17,"78 Walnut St, Portland, OR 97035" +320757,AA Batteries (4-pack),2,3.84,12/19/19 05:46,"381 Pine St, New York City, NY 10001" +320758,Wired Headphones,1,11.99,12/14/19 12:23,"819 Hill St, Seattle, WA 98101" +320758,Apple Airpods Headphones,1,150,12/14/19 12:23,"819 Hill St, Seattle, WA 98101" +320759,Wired Headphones,1,11.99,12/04/19 19:25,"274 Meadow St, Portland, OR 97035" +320760,USB-C Charging Cable,1,11.95,12/23/19 09:48,"881 Spruce St, San Francisco, CA 94016" +320761,Bose SoundSport Headphones,1,99.99,12/15/19 11:46,"417 Jackson St, Portland, OR 97035" +320762,Apple Airpods Headphones,1,150,12/22/19 19:22,"874 Madison St, Atlanta, GA 30301" +320763,AA Batteries (4-pack),1,3.84,01/01/20 00:36,"497 Church St, San Francisco, CA 94016" +320764,Macbook Pro Laptop,1,1700,12/31/19 22:29,"853 4th St, Seattle, WA 98101" +320765,Lightning Charging Cable,1,14.95,12/30/19 06:52,"668 1st St, Atlanta, GA 30301" +320766,Lightning Charging Cable,1,14.95,12/12/19 20:35,"112 Johnson St, San Francisco, CA 94016" +320767,Flatscreen TV,1,300,12/08/19 14:46,"825 Lake St, Los Angeles, CA 90001" +320768,Apple Airpods Headphones,1,150,12/27/19 09:14,"849 Pine St, San Francisco, CA 94016" +320769,Lightning Charging Cable,1,14.95,12/04/19 14:26,"485 Hickory St, San Francisco, CA 94016" +320770,Macbook Pro Laptop,1,1700,12/11/19 16:46,"433 Hickory St, San Francisco, CA 94016" +320771,AA Batteries (4-pack),2,3.84,12/25/19 13:33,"627 12th St, Los Angeles, CA 90001" +320772,USB-C Charging Cable,1,11.95,12/26/19 12:47,"412 Church St, New York City, NY 10001" +320773,Lightning Charging Cable,1,14.95,12/24/19 13:07,"22 Park St, San Francisco, CA 94016" +320774,AAA Batteries (4-pack),1,2.99,12/30/19 13:03,"199 Hickory St, San Francisco, CA 94016" +320775,Macbook Pro Laptop,1,1700,12/21/19 17:52,"298 9th St, Dallas, TX 75001" +320776,AAA Batteries (4-pack),1,2.99,12/21/19 14:28,"378 Hill St, New York City, NY 10001" +320777,Wired Headphones,1,11.99,12/01/19 19:47,"608 Highland St, Los Angeles, CA 90001" +320778,iPhone,1,700,12/09/19 21:11,"801 13th St, Seattle, WA 98101" +320779,Bose SoundSport Headphones,1,99.99,12/24/19 11:02,"454 6th St, New York City, NY 10001" +320780,USB-C Charging Cable,1,11.95,12/21/19 12:35,"291 Main St, San Francisco, CA 94016" +320781,27in 4K Gaming Monitor,1,389.99,12/24/19 12:11,"282 Forest St, Atlanta, GA 30301" +320782,27in 4K Gaming Monitor,1,389.99,12/02/19 17:42,"15 Washington St, Los Angeles, CA 90001" +320783,iPhone,1,700,12/26/19 21:04,"471 Main St, Boston, MA 02215" +320784,USB-C Charging Cable,1,11.95,12/29/19 18:09,"366 12th St, San Francisco, CA 94016" +320785,27in FHD Monitor,1,149.99,12/10/19 17:47,"547 Chestnut St, Portland, OR 97035" +320786,34in Ultrawide Monitor,1,379.99,12/18/19 11:55,"468 Ridge St, Dallas, TX 75001" +320787,AAA Batteries (4-pack),1,2.99,12/18/19 12:08,"972 South St, Atlanta, GA 30301" +320788,AAA Batteries (4-pack),2,2.99,12/16/19 23:40,"247 10th St, Austin, TX 73301" +320789,AA Batteries (4-pack),1,3.84,12/08/19 17:27,"815 4th St, Dallas, TX 75001" +320790,Macbook Pro Laptop,1,1700,12/01/19 17:43,"244 Forest St, San Francisco, CA 94016" +320791,AAA Batteries (4-pack),1,2.99,12/22/19 23:53,"805 Walnut St, Los Angeles, CA 90001" +320792,USB-C Charging Cable,1,11.95,12/18/19 23:21,"484 Washington St, Atlanta, GA 30301" +320793,Lightning Charging Cable,1,14.95,12/18/19 08:47,"357 Willow St, New York City, NY 10001" +320794,Wired Headphones,1,11.99,12/24/19 17:25,"76 Jefferson St, San Francisco, CA 94016" +320795,20in Monitor,1,109.99,12/27/19 19:35,"390 Sunset St, San Francisco, CA 94016" +320796,USB-C Charging Cable,1,11.95,12/18/19 08:31,"987 Lakeview St, San Francisco, CA 94016" +320797,AAA Batteries (4-pack),3,2.99,12/28/19 17:48,"180 Hill St, Austin, TX 73301" +320798,AA Batteries (4-pack),2,3.84,12/06/19 15:15,"446 Elm St, Los Angeles, CA 90001" +320798,27in FHD Monitor,1,149.99,12/06/19 15:15,"446 Elm St, Los Angeles, CA 90001" +320799,AAA Batteries (4-pack),1,2.99,12/31/19 18:13,"994 Chestnut St, Atlanta, GA 30301" +320800,Wired Headphones,1,11.99,12/03/19 15:24,"398 7th St, San Francisco, CA 94016" +320801,27in FHD Monitor,1,149.99,12/15/19 19:16,"160 Maple St, Boston, MA 02215" +320802,Bose SoundSport Headphones,1,99.99,12/11/19 16:11,"910 Hill St, Dallas, TX 75001" +320803,Vareebadd Phone,1,400,12/18/19 22:32,"497 Lakeview St, Boston, MA 02215" +320804,USB-C Charging Cable,1,11.95,12/23/19 22:15,"380 12th St, San Francisco, CA 94016" +320805,AAA Batteries (4-pack),1,2.99,12/07/19 19:30,"472 9th St, Dallas, TX 75001" +320806,AA Batteries (4-pack),1,3.84,12/20/19 09:22,"645 Hickory St, San Francisco, CA 94016" +320807,Lightning Charging Cable,1,14.95,12/01/19 13:28,"53 10th St, Los Angeles, CA 90001" +320808,AAA Batteries (4-pack),1,2.99,12/11/19 18:54,"57 Center St, New York City, NY 10001" +320809,Lightning Charging Cable,1,14.95,12/01/19 08:11,"751 5th St, New York City, NY 10001" +320810,Lightning Charging Cable,1,14.95,12/19/19 13:30,"975 Church St, Austin, TX 73301" +320811,20in Monitor,1,109.99,12/03/19 22:32,"807 Meadow St, Los Angeles, CA 90001" +320812,Bose SoundSport Headphones,1,99.99,12/15/19 07:05,"580 Park St, Seattle, WA 98101" +320813,ThinkPad Laptop,1,999.99,12/15/19 18:22,"941 10th St, San Francisco, CA 94016" +320814,34in Ultrawide Monitor,1,379.99,12/27/19 19:44,"75 Meadow St, New York City, NY 10001" +320815,Macbook Pro Laptop,1,1700,12/01/19 13:37,"735 Spruce St, Boston, MA 02215" +320816,Macbook Pro Laptop,1,1700,12/08/19 19:22,"929 1st St, Boston, MA 02215" +320817,27in FHD Monitor,1,149.99,12/02/19 10:10,"851 2nd St, San Francisco, CA 94016" +320818,Wired Headphones,1,11.99,12/19/19 18:58,"102 Ridge St, Portland, OR 97035" +320818,iPhone,1,700,12/19/19 18:58,"102 Ridge St, Portland, OR 97035" +320819,Lightning Charging Cable,1,14.95,12/26/19 16:22,"421 Washington St, San Francisco, CA 94016" +320820,AA Batteries (4-pack),1,3.84,12/04/19 23:44,"592 1st St, San Francisco, CA 94016" +320821,AAA Batteries (4-pack),1,2.99,12/14/19 11:11,"152 Lake St, New York City, NY 10001" +320822,AAA Batteries (4-pack),1,2.99,12/24/19 09:11,"881 Spruce St, Los Angeles, CA 90001" +320823,Flatscreen TV,1,300,12/19/19 10:46,"185 Cedar St, New York City, NY 10001" +320824,27in FHD Monitor,1,149.99,12/12/19 22:50,"870 South St, New York City, NY 10001" +320825,Lightning Charging Cable,1,14.95,12/24/19 21:42,"451 Hill St, Los Angeles, CA 90001" +320826,Google Phone,1,600,12/21/19 21:55,"819 9th St, Seattle, WA 98101" +320826,USB-C Charging Cable,1,11.95,12/21/19 21:55,"819 9th St, Seattle, WA 98101" +320827,Bose SoundSport Headphones,1,99.99,12/30/19 18:30,"482 14th St, Seattle, WA 98101" +320828,Apple Airpods Headphones,1,150,12/17/19 08:36,"501 2nd St, San Francisco, CA 94016" +320829,Lightning Charging Cable,2,14.95,12/19/19 14:10,"241 Jefferson St, New York City, NY 10001" +320830,Bose SoundSport Headphones,1,99.99,12/09/19 06:15,"659 Cherry St, Boston, MA 02215" +320831,Apple Airpods Headphones,1,150,12/10/19 18:39,"552 13th St, New York City, NY 10001" +320832,USB-C Charging Cable,1,11.95,12/29/19 17:15,"241 12th St, New York City, NY 10001" +320833,AAA Batteries (4-pack),1,2.99,12/22/19 19:54,"721 Spruce St, Atlanta, GA 30301" +320834,34in Ultrawide Monitor,1,379.99,12/05/19 10:09,"829 12th St, San Francisco, CA 94016" +320835,USB-C Charging Cable,1,11.95,12/27/19 14:45,"51 Church St, San Francisco, CA 94016" +320836,Wired Headphones,1,11.99,12/28/19 06:24,"467 Hickory St, Atlanta, GA 30301" +320837,USB-C Charging Cable,1,11.95,12/15/19 14:04,"307 Forest St, San Francisco, CA 94016" +320838,Bose SoundSport Headphones,1,99.99,12/02/19 18:44,"380 Madison St, Boston, MA 02215" +320839,Apple Airpods Headphones,1,150,12/28/19 14:20,"492 Spruce St, Boston, MA 02215" +320840,Google Phone,1,600,12/26/19 22:23,"564 Walnut St, Boston, MA 02215" +320841,Bose SoundSport Headphones,1,99.99,12/31/19 21:32,"266 10th St, Seattle, WA 98101" +320842,Flatscreen TV,1,300,12/26/19 09:23,"891 Ridge St, San Francisco, CA 94016" +320843,Lightning Charging Cable,1,14.95,12/21/19 10:40,"748 4th St, Los Angeles, CA 90001" +320844,20in Monitor,1,109.99,12/31/19 19:36,"615 Hill St, Los Angeles, CA 90001" +320845,Macbook Pro Laptop,1,1700,12/04/19 16:23,"245 12th St, Los Angeles, CA 90001" +320846,27in 4K Gaming Monitor,1,389.99,12/02/19 12:40,"794 6th St, Boston, MA 02215" +320847,AAA Batteries (4-pack),3,2.99,12/16/19 12:11,"637 Willow St, New York City, NY 10001" +320848,USB-C Charging Cable,1,11.95,12/28/19 21:53,"351 Jackson St, San Francisco, CA 94016" +320849,Wired Headphones,2,11.99,12/18/19 18:34,"830 Jefferson St, Los Angeles, CA 90001" +320850,AA Batteries (4-pack),1,3.84,12/10/19 21:42,"428 Lincoln St, San Francisco, CA 94016" +320851,USB-C Charging Cable,1,11.95,12/23/19 12:46,"603 Meadow St, Portland, OR 97035" +320852,USB-C Charging Cable,1,11.95,12/06/19 11:18,"735 Elm St, Los Angeles, CA 90001" +320853,34in Ultrawide Monitor,1,379.99,12/14/19 16:51,"319 Sunset St, San Francisco, CA 94016" +320854,27in FHD Monitor,1,149.99,12/14/19 16:07,"511 Adams St, Boston, MA 02215" +320854,Bose SoundSport Headphones,1,99.99,12/14/19 16:07,"511 Adams St, Boston, MA 02215" +320855,AA Batteries (4-pack),1,3.84,12/19/19 13:34,"314 1st St, Los Angeles, CA 90001" +320856,Apple Airpods Headphones,1,150,12/15/19 16:44,"86 Jefferson St, New York City, NY 10001" +320857,AA Batteries (4-pack),1,3.84,12/22/19 13:12,"996 Madison St, San Francisco, CA 94016" +320858,USB-C Charging Cable,1,11.95,12/11/19 18:13,"76 4th St, Portland, OR 97035" +320859,27in 4K Gaming Monitor,1,389.99,12/01/19 09:08,"794 Lakeview St, Boston, MA 02215" +320860,AAA Batteries (4-pack),1,2.99,12/18/19 21:46,"810 14th St, Boston, MA 02215" +320861,Lightning Charging Cable,1,14.95,12/26/19 17:51,"208 Jackson St, New York City, NY 10001" +320862,USB-C Charging Cable,1,11.95,12/10/19 21:15,"746 Johnson St, New York City, NY 10001" +320863,LG Dryer,1,600.0,12/22/19 21:31,"438 9th St, Seattle, WA 98101" +320864,Vareebadd Phone,1,400,12/13/19 12:34,"822 Spruce St, Boston, MA 02215" +320864,USB-C Charging Cable,1,11.95,12/13/19 12:34,"822 Spruce St, Boston, MA 02215" +320864,27in 4K Gaming Monitor,1,389.99,12/13/19 12:34,"822 Spruce St, Boston, MA 02215" +320865,27in 4K Gaming Monitor,1,389.99,12/03/19 22:28,"315 14th St, New York City, NY 10001" +320866,Lightning Charging Cable,1,14.95,12/09/19 09:22,"381 River St, Austin, TX 73301" +320867,iPhone,1,700,12/31/19 09:44,"650 River St, New York City, NY 10001" +320867,Lightning Charging Cable,1,14.95,12/31/19 09:44,"650 River St, New York City, NY 10001" +320868,Wired Headphones,1,11.99,12/14/19 14:55,"901 8th St, San Francisco, CA 94016" +320869,USB-C Charging Cable,1,11.95,12/19/19 09:27,"645 Church St, Los Angeles, CA 90001" +320870,Wired Headphones,1,11.99,12/16/19 23:44,"520 6th St, Los Angeles, CA 90001" +320871,Wired Headphones,1,11.99,12/19/19 15:37,"622 8th St, New York City, NY 10001" +320872,Lightning Charging Cable,1,14.95,12/13/19 12:01,"585 1st St, Boston, MA 02215" +320872,AA Batteries (4-pack),1,3.84,12/13/19 12:01,"585 1st St, Boston, MA 02215" +320873,AAA Batteries (4-pack),1,2.99,12/04/19 10:47,"490 Pine St, Boston, MA 02215" +320874,AA Batteries (4-pack),2,3.84,12/11/19 16:50,"813 West St, Portland, OR 97035" +320875,Bose SoundSport Headphones,1,99.99,12/01/19 22:00,"50 Pine St, Austin, TX 73301" +320876,USB-C Charging Cable,1,11.95,12/27/19 19:10,"473 Walnut St, San Francisco, CA 94016" +320877,USB-C Charging Cable,1,11.95,12/21/19 17:10,"96 Elm St, Los Angeles, CA 90001" +320878,Google Phone,1,600,12/26/19 18:58,"41 Church St, San Francisco, CA 94016" +320879,Lightning Charging Cable,1,14.95,12/14/19 22:04,"732 Ridge St, Los Angeles, CA 90001" +320880,Macbook Pro Laptop,1,1700,12/20/19 22:25,"986 Hickory St, Los Angeles, CA 90001" +320881,Wired Headphones,1,11.99,12/26/19 16:33,"149 Highland St, Seattle, WA 98101" +320882,34in Ultrawide Monitor,1,379.99,12/04/19 18:21,"174 Main St, Seattle, WA 98101" +320883,AAA Batteries (4-pack),1,2.99,12/09/19 23:49,"990 Elm St, Atlanta, GA 30301" +320884,Wired Headphones,1,11.99,12/28/19 12:35,"568 9th St, San Francisco, CA 94016" +320885,Bose SoundSport Headphones,1,99.99,12/04/19 20:38,"760 Lakeview St, San Francisco, CA 94016" +320886,AAA Batteries (4-pack),2,2.99,12/30/19 14:53,"310 14th St, Los Angeles, CA 90001" +320887,Lightning Charging Cable,1,14.95,12/07/19 20:49,"892 Center St, Austin, TX 73301" +320888,Google Phone,1,600,12/22/19 13:28,"496 14th St, San Francisco, CA 94016" +320889,Wired Headphones,1,11.99,12/07/19 00:18,"686 9th St, Boston, MA 02215" +320890,Lightning Charging Cable,1,14.95,12/18/19 19:00,"241 Hill St, Seattle, WA 98101" +320891,Bose SoundSport Headphones,1,99.99,12/08/19 16:05,"984 9th St, Los Angeles, CA 90001" +320892,ThinkPad Laptop,1,999.99,12/07/19 09:38,"974 10th St, Los Angeles, CA 90001" +320893,Macbook Pro Laptop,1,1700,12/13/19 20:25,"587 Madison St, Boston, MA 02215" +320894,AAA Batteries (4-pack),1,2.99,12/14/19 15:41,"994 Center St, Austin, TX 73301" +320895,20in Monitor,1,109.99,12/03/19 11:40,"35 Meadow St, San Francisco, CA 94016" +320896,iPhone,1,700,12/06/19 11:04,"859 5th St, Boston, MA 02215" +320897,Wired Headphones,1,11.99,12/31/19 22:48,"646 11th St, Boston, MA 02215" +320898,20in Monitor,1,109.99,12/10/19 12:41,"839 Lake St, Portland, OR 97035" +320899,iPhone,1,700,12/07/19 06:07,"637 13th St, Portland, ME 04101" +320899,Lightning Charging Cable,1,14.95,12/07/19 06:07,"637 13th St, Portland, ME 04101" +320900,iPhone,1,700,12/02/19 08:05,"969 Pine St, Dallas, TX 75001" +320901,Google Phone,1,600,12/28/19 14:38,"581 Ridge St, Seattle, WA 98101" +320902,Apple Airpods Headphones,1,150,12/11/19 16:03,"788 Church St, Seattle, WA 98101" +320903,Flatscreen TV,1,300,12/23/19 21:50,"297 West St, San Francisco, CA 94016" +320904,Apple Airpods Headphones,1,150,12/20/19 18:41,"571 Chestnut St, Portland, OR 97035" +320904,Wired Headphones,1,11.99,12/20/19 18:41,"571 Chestnut St, Portland, OR 97035" +320905,AAA Batteries (4-pack),2,2.99,12/30/19 17:09,"314 Adams St, Los Angeles, CA 90001" +320906,Bose SoundSport Headphones,1,99.99,12/27/19 10:09,"808 Lake St, Dallas, TX 75001" +320907,iPhone,1,700,12/07/19 12:01,"402 Hickory St, Seattle, WA 98101" +320907,Lightning Charging Cable,1,14.95,12/07/19 12:01,"402 Hickory St, Seattle, WA 98101" +320907,Apple Airpods Headphones,1,150,12/07/19 12:01,"402 Hickory St, Seattle, WA 98101" +320908,Apple Airpods Headphones,1,150,12/26/19 23:10,"711 Center St, Seattle, WA 98101" +320909,AA Batteries (4-pack),2,3.84,12/19/19 23:08,"95 6th St, Portland, OR 97035" +320910,USB-C Charging Cable,1,11.95,12/17/19 21:28,"357 Wilson St, San Francisco, CA 94016" +320911,AA Batteries (4-pack),1,3.84,12/17/19 19:58,"425 12th St, San Francisco, CA 94016" +320912,Lightning Charging Cable,1,14.95,12/23/19 09:50,"786 South St, Dallas, TX 75001" +320913,AA Batteries (4-pack),1,3.84,12/22/19 14:04,"171 13th St, San Francisco, CA 94016" +320914,Apple Airpods Headphones,1,150,12/02/19 14:22,"316 Madison St, San Francisco, CA 94016" +320915,Apple Airpods Headphones,1,150,12/09/19 14:27,"460 Church St, Boston, MA 02215" +320916,AA Batteries (4-pack),1,3.84,12/26/19 18:03,"865 Cedar St, New York City, NY 10001" +320917,AAA Batteries (4-pack),3,2.99,12/30/19 14:32,"786 Pine St, Seattle, WA 98101" +320918,AA Batteries (4-pack),1,3.84,12/23/19 17:44,"144 7th St, Los Angeles, CA 90001" +320919,Bose SoundSport Headphones,1,99.99,12/08/19 21:29,"121 6th St, San Francisco, CA 94016" +320920,20in Monitor,1,109.99,12/29/19 11:55,"460 5th St, Los Angeles, CA 90001" +320921,AAA Batteries (4-pack),3,2.99,12/31/19 14:37,"823 9th St, Los Angeles, CA 90001" +320922,Wired Headphones,1,11.99,12/02/19 21:17,"976 13th St, San Francisco, CA 94016" +320923,USB-C Charging Cable,1,11.95,12/10/19 01:14,"64 Walnut St, Seattle, WA 98101" +320924,AA Batteries (4-pack),1,3.84,12/09/19 18:38,"117 4th St, Los Angeles, CA 90001" +320925,Wired Headphones,1,11.99,12/31/19 18:18,"14 14th St, Seattle, WA 98101" +320926,ThinkPad Laptop,1,999.99,12/26/19 09:17,"883 North St, San Francisco, CA 94016" +320927,Wired Headphones,2,11.99,12/29/19 13:59,"150 Main St, Portland, OR 97035" +320928,Wired Headphones,1,11.99,12/23/19 10:05,"874 8th St, San Francisco, CA 94016" +320929,AA Batteries (4-pack),1,3.84,12/08/19 13:27,"857 Hickory St, Portland, OR 97035" +320930,Apple Airpods Headphones,1,150,12/29/19 21:10,"886 Park St, Boston, MA 02215" +320931,Flatscreen TV,1,300,12/13/19 10:44,"469 South St, Portland, OR 97035" +320932,Apple Airpods Headphones,1,150,12/16/19 14:25,"133 9th St, Boston, MA 02215" +320933,Wired Headphones,2,11.99,12/25/19 12:37,"785 Sunset St, New York City, NY 10001" +320934,USB-C Charging Cable,1,11.95,12/26/19 18:52,"162 Jackson St, San Francisco, CA 94016" +320935,AA Batteries (4-pack),1,3.84,12/28/19 18:14,"696 Lake St, San Francisco, CA 94016" +320936,AA Batteries (4-pack),1,3.84,12/27/19 13:39,"462 Chestnut St, Los Angeles, CA 90001" +320937,Bose SoundSport Headphones,1,99.99,12/10/19 21:36,"807 14th St, San Francisco, CA 94016" +320938,Wired Headphones,1,11.99,12/25/19 20:09,"105 13th St, Dallas, TX 75001" +320939,Apple Airpods Headphones,1,150,12/04/19 14:54,"102 Madison St, Seattle, WA 98101" +320940,Lightning Charging Cable,1,14.95,12/24/19 21:39,"935 Adams St, Boston, MA 02215" +320941,Lightning Charging Cable,1,14.95,12/19/19 15:04,"152 13th St, Austin, TX 73301" +320942,AAA Batteries (4-pack),1,2.99,12/07/19 10:45,"159 Highland St, Los Angeles, CA 90001" +320943,Lightning Charging Cable,1,14.95,12/17/19 12:27,"503 11th St, San Francisco, CA 94016" +320944,20in Monitor,1,109.99,12/13/19 07:12,"422 Maple St, Seattle, WA 98101" +320945,Macbook Pro Laptop,1,1700,12/24/19 18:01,"234 4th St, San Francisco, CA 94016" +320946,Lightning Charging Cable,1,14.95,12/24/19 18:46,"480 River St, Seattle, WA 98101" +320947,iPhone,1,700,12/22/19 18:30,"232 Lakeview St, Dallas, TX 75001" +320947,Lightning Charging Cable,1,14.95,12/22/19 18:30,"232 Lakeview St, Dallas, TX 75001" +320948,AAA Batteries (4-pack),2,2.99,12/26/19 16:18,"546 Spruce St, Seattle, WA 98101" +320948,AA Batteries (4-pack),1,3.84,12/26/19 16:18,"546 Spruce St, Seattle, WA 98101" +320949,Bose SoundSport Headphones,1,99.99,12/25/19 18:15,"839 Sunset St, San Francisco, CA 94016" +320950,ThinkPad Laptop,1,999.99,12/08/19 12:11,"891 Forest St, Boston, MA 02215" +320951,AAA Batteries (4-pack),1,2.99,12/24/19 16:36,"693 Maple St, San Francisco, CA 94016" +320952,AA Batteries (4-pack),1,3.84,12/16/19 12:44,"67 Forest St, Seattle, WA 98101" +320953,AA Batteries (4-pack),1,3.84,12/07/19 23:18,"836 Ridge St, New York City, NY 10001" +320954,USB-C Charging Cable,2,11.95,12/31/19 18:43,"710 9th St, San Francisco, CA 94016" +320955,20in Monitor,1,109.99,12/28/19 13:00,"510 Jefferson St, Portland, ME 04101" +320956,USB-C Charging Cable,1,11.95,12/18/19 23:44,"992 Lake St, Boston, MA 02215" +320957,Lightning Charging Cable,1,14.95,12/31/19 18:15,"387 Sunset St, San Francisco, CA 94016" +320958,USB-C Charging Cable,1,11.95,12/26/19 07:31,"829 Lakeview St, San Francisco, CA 94016" +320959,27in 4K Gaming Monitor,1,389.99,12/18/19 13:06,"367 Wilson St, San Francisco, CA 94016" +320960,AA Batteries (4-pack),1,3.84,12/18/19 12:50,"107 Lakeview St, Boston, MA 02215" +320961,ThinkPad Laptop,1,999.99,12/02/19 19:53,"270 Wilson St, San Francisco, CA 94016" +320962,AAA Batteries (4-pack),1,2.99,12/03/19 11:32,"483 Madison St, Atlanta, GA 30301" +320963,Bose SoundSport Headphones,1,99.99,12/20/19 15:29,"645 Church St, Seattle, WA 98101" +320964,USB-C Charging Cable,1,11.95,12/03/19 12:32,"127 Washington St, Boston, MA 02215" +320965,20in Monitor,1,109.99,12/16/19 20:32,"739 West St, Boston, MA 02215" +320966,Macbook Pro Laptop,1,1700,12/17/19 19:24,"127 Wilson St, Dallas, TX 75001" +320967,Apple Airpods Headphones,1,150,12/19/19 21:40,"484 1st St, New York City, NY 10001" +320968,ThinkPad Laptop,1,999.99,12/27/19 18:02,"578 Jefferson St, San Francisco, CA 94016" +320969,27in 4K Gaming Monitor,1,389.99,12/24/19 23:09,"479 8th St, New York City, NY 10001" +320970,USB-C Charging Cable,1,11.95,12/02/19 13:25,"552 Jefferson St, New York City, NY 10001" +320971,27in FHD Monitor,1,149.99,12/17/19 10:55,"99 Maple St, Portland, OR 97035" +320972,Bose SoundSport Headphones,1,99.99,12/13/19 12:21,"898 Adams St, Los Angeles, CA 90001" +320973,34in Ultrawide Monitor,1,379.99,12/21/19 15:35,"475 9th St, Boston, MA 02215" +320974,AA Batteries (4-pack),1,3.84,12/24/19 12:37,"440 Jefferson St, Los Angeles, CA 90001" +320975,AAA Batteries (4-pack),1,2.99,12/17/19 12:12,"449 Ridge St, Seattle, WA 98101" +320976,Vareebadd Phone,1,400,12/11/19 21:06,"525 Park St, Los Angeles, CA 90001" +320977,ThinkPad Laptop,1,999.99,12/24/19 07:17,"660 Hickory St, San Francisco, CA 94016" +320978,Apple Airpods Headphones,1,150,12/09/19 17:11,"494 South St, Atlanta, GA 30301" +320979,Bose SoundSport Headphones,1,99.99,12/05/19 21:57,"379 Chestnut St, Austin, TX 73301" +320980,iPhone,1,700,12/03/19 13:30,"723 4th St, New York City, NY 10001" +320980,Lightning Charging Cable,1,14.95,12/03/19 13:30,"723 4th St, New York City, NY 10001" +320981,Apple Airpods Headphones,1,150,12/06/19 13:46,"64 Walnut St, San Francisco, CA 94016" +320982,20in Monitor,1,109.99,12/11/19 19:06,"293 1st St, Dallas, TX 75001" +320983,Wired Headphones,1,11.99,12/19/19 18:22,"12 Wilson St, Los Angeles, CA 90001" +320984,Flatscreen TV,1,300,12/30/19 12:53,"165 Hickory St, Boston, MA 02215" +320985,Bose SoundSport Headphones,1,99.99,12/27/19 22:23,"307 South St, New York City, NY 10001" +320986,Apple Airpods Headphones,1,150,12/21/19 14:38,"333 Cedar St, Boston, MA 02215" +320987,AAA Batteries (4-pack),1,2.99,12/28/19 17:24,"402 North St, San Francisco, CA 94016" +320988,AA Batteries (4-pack),2,3.84,12/28/19 22:57,"777 6th St, Boston, MA 02215" +320989,AAA Batteries (4-pack),2,2.99,12/25/19 15:55,"742 Maple St, Boston, MA 02215" +320990,Lightning Charging Cable,1,14.95,12/13/19 23:16,"56 West St, Atlanta, GA 30301" +320991,Lightning Charging Cable,1,14.95,12/06/19 13:35,"625 Jefferson St, Boston, MA 02215" +320992,AAA Batteries (4-pack),1,2.99,12/08/19 16:49,"742 Maple St, New York City, NY 10001" +320993,USB-C Charging Cable,1,11.95,12/14/19 23:03,"260 Lakeview St, San Francisco, CA 94016" +320994,Apple Airpods Headphones,1,150,12/19/19 16:58,"256 9th St, Atlanta, GA 30301" +320995,Apple Airpods Headphones,1,150,12/16/19 03:32,"21 Main St, San Francisco, CA 94016" +320996,20in Monitor,1,109.99,12/02/19 12:52,"282 14th St, Seattle, WA 98101" +320997,USB-C Charging Cable,1,11.95,12/14/19 18:34,"375 Elm St, San Francisco, CA 94016" +320998,Lightning Charging Cable,1,14.95,12/27/19 08:26,"339 7th St, Atlanta, GA 30301" +320999,AAA Batteries (4-pack),1,2.99,12/14/19 01:02,"467 Walnut St, Los Angeles, CA 90001" +321000,AA Batteries (4-pack),1,3.84,12/04/19 10:21,"408 Cedar St, New York City, NY 10001" +321001,Apple Airpods Headphones,1,150,12/09/19 09:20,"576 12th St, New York City, NY 10001" +321002,Macbook Pro Laptop,1,1700,12/30/19 19:37,"40 Ridge St, San Francisco, CA 94016" +321003,34in Ultrawide Monitor,1,379.99,12/29/19 00:02,"586 8th St, Los Angeles, CA 90001" +321004,Lightning Charging Cable,1,14.95,12/15/19 11:00,"645 10th St, San Francisco, CA 94016" +321005,Lightning Charging Cable,1,14.95,12/15/19 22:39,"350 Lake St, Los Angeles, CA 90001" +321006,Flatscreen TV,1,300,12/09/19 16:52,"417 Lakeview St, San Francisco, CA 94016" +321007,AA Batteries (4-pack),1,3.84,12/20/19 16:17,"518 Jefferson St, Boston, MA 02215" +321008,Apple Airpods Headphones,1,150,12/06/19 11:10,"944 2nd St, San Francisco, CA 94016" +321009,Flatscreen TV,1,300,12/07/19 21:20,"390 Forest St, Boston, MA 02215" +321010,Wired Headphones,2,11.99,12/28/19 19:03,"822 Center St, Los Angeles, CA 90001" +321011,AA Batteries (4-pack),2,3.84,12/13/19 15:57,"284 Ridge St, Portland, OR 97035" +321012,Wired Headphones,1,11.99,12/25/19 09:50,"244 Dogwood St, Atlanta, GA 30301" +321013,iPhone,1,700,12/14/19 08:43,"384 Chestnut St, San Francisco, CA 94016" +321014,27in 4K Gaming Monitor,1,389.99,12/04/19 23:02,"368 Johnson St, San Francisco, CA 94016" +321015,AAA Batteries (4-pack),1,2.99,12/28/19 22:51,"450 Sunset St, Seattle, WA 98101" +321016,AA Batteries (4-pack),1,3.84,12/31/19 16:06,"542 Chestnut St, Los Angeles, CA 90001" +321017,AAA Batteries (4-pack),3,2.99,12/20/19 09:47,"756 11th St, San Francisco, CA 94016" +321018,Wired Headphones,1,11.99,12/28/19 15:25,"934 Dogwood St, San Francisco, CA 94016" +321019,Wired Headphones,3,11.99,12/04/19 21:33,"91 Elm St, New York City, NY 10001" +321020,27in FHD Monitor,1,149.99,12/27/19 15:34,"587 6th St, Austin, TX 73301" +321021,USB-C Charging Cable,1,11.95,12/06/19 13:43,"460 Madison St, Austin, TX 73301" +321022,Wired Headphones,1,11.99,12/19/19 22:21,"788 Lakeview St, Los Angeles, CA 90001" +321023,ThinkPad Laptop,1,999.99,12/16/19 15:22,"82 Elm St, Portland, OR 97035" +321024,iPhone,1,700,12/21/19 19:53,"55 6th St, New York City, NY 10001" +321025,USB-C Charging Cable,1,11.95,12/25/19 21:35,"471 Chestnut St, Los Angeles, CA 90001" +321026,27in 4K Gaming Monitor,1,389.99,12/14/19 15:49,"168 10th St, Dallas, TX 75001" +321027,ThinkPad Laptop,1,999.99,12/25/19 09:41,"104 Forest St, Los Angeles, CA 90001" +321028,Apple Airpods Headphones,1,150,12/07/19 12:21,"925 6th St, Austin, TX 73301" +321029,Apple Airpods Headphones,1,150,12/08/19 23:29,"747 Lakeview St, San Francisco, CA 94016" +321030,27in 4K Gaming Monitor,1,389.99,12/04/19 10:25,"479 Dogwood St, Los Angeles, CA 90001" +321031,AA Batteries (4-pack),1,3.84,12/17/19 15:10,"924 Dogwood St, Dallas, TX 75001" +321032,Wired Headphones,1,11.99,12/08/19 20:49,"343 Park St, Boston, MA 02215" +321033,27in FHD Monitor,1,149.99,12/26/19 12:25,"563 Cherry St, Los Angeles, CA 90001" +321034,Apple Airpods Headphones,1,150,12/07/19 10:48,"852 Adams St, Atlanta, GA 30301" +321035,iPhone,1,700,12/09/19 11:11,"662 Madison St, Portland, ME 04101" +321036,20in Monitor,1,109.99,12/01/19 09:08,"231 Wilson St, Austin, TX 73301" +321037,ThinkPad Laptop,1,999.99,12/31/19 11:57,"242 1st St, New York City, NY 10001" +321038,USB-C Charging Cable,1,11.95,12/02/19 11:36,"206 Dogwood St, Austin, TX 73301" +321039,Lightning Charging Cable,1,14.95,12/04/19 10:58,"895 Johnson St, New York City, NY 10001" +321040,USB-C Charging Cable,2,11.95,12/16/19 18:19,"112 Park St, Boston, MA 02215" +321041,Vareebadd Phone,1,400,12/24/19 07:10,"273 Sunset St, San Francisco, CA 94016" +321041,USB-C Charging Cable,1,11.95,12/24/19 07:10,"273 Sunset St, San Francisco, CA 94016" +321042,Bose SoundSport Headphones,1,99.99,12/29/19 19:24,"918 Church St, Dallas, TX 75001" +321043,Macbook Pro Laptop,1,1700,12/01/19 20:01,"768 6th St, Portland, OR 97035" +321044,AA Batteries (4-pack),1,3.84,12/16/19 00:03,"184 North St, Austin, TX 73301" +321045,AAA Batteries (4-pack),1,2.99,12/29/19 14:49,"139 Center St, Los Angeles, CA 90001" +321046,Apple Airpods Headphones,1,150,12/08/19 21:54,"293 Main St, Portland, OR 97035" +321046,Macbook Pro Laptop,1,1700,12/08/19 21:54,"293 Main St, Portland, OR 97035" +321047,ThinkPad Laptop,1,999.99,12/24/19 15:09,"890 2nd St, San Francisco, CA 94016" +321048,Macbook Pro Laptop,1,1700,12/18/19 06:19,"350 South St, Los Angeles, CA 90001" +321049,Lightning Charging Cable,1,14.95,12/19/19 12:50,"969 Spruce St, San Francisco, CA 94016" +321050,USB-C Charging Cable,1,11.95,12/10/19 16:38,"140 River St, Atlanta, GA 30301" +321051,Lightning Charging Cable,1,14.95,12/05/19 10:17,"266 Chestnut St, Boston, MA 02215" +321052,34in Ultrawide Monitor,1,379.99,12/26/19 13:47,"643 Wilson St, Los Angeles, CA 90001" +321053,USB-C Charging Cable,1,11.95,12/15/19 06:08,"148 13th St, Seattle, WA 98101" +321054,27in FHD Monitor,1,149.99,12/23/19 18:10,"893 Highland St, New York City, NY 10001" +321055,34in Ultrawide Monitor,1,379.99,12/03/19 13:39,"389 11th St, Atlanta, GA 30301" +321056,Bose SoundSport Headphones,1,99.99,12/27/19 23:40,"366 Lakeview St, Los Angeles, CA 90001" +321057,Lightning Charging Cable,1,14.95,12/14/19 16:18,"778 Jefferson St, Boston, MA 02215" +321058,USB-C Charging Cable,1,11.95,12/26/19 16:30,"871 Spruce St, New York City, NY 10001" +321059,27in FHD Monitor,1,149.99,12/18/19 13:30,"536 Sunset St, Boston, MA 02215" +321060,USB-C Charging Cable,1,11.95,12/10/19 12:27,"609 Church St, Los Angeles, CA 90001" +321061,AAA Batteries (4-pack),1,2.99,12/15/19 00:08,"17 Walnut St, San Francisco, CA 94016" +321062,Bose SoundSport Headphones,1,99.99,12/02/19 01:48,"830 14th St, Seattle, WA 98101" +321063,Wired Headphones,2,11.99,12/31/19 20:26,"971 2nd St, Dallas, TX 75001" +321064,34in Ultrawide Monitor,1,379.99,12/08/19 16:21,"141 11th St, Los Angeles, CA 90001" +321065,iPhone,1,700,12/13/19 19:04,"72 Highland St, Seattle, WA 98101" +321066,Macbook Pro Laptop,1,1700,12/17/19 19:31,"908 10th St, Dallas, TX 75001" +321067,Lightning Charging Cable,1,14.95,12/06/19 11:54,"626 Madison St, San Francisco, CA 94016" +321068,AAA Batteries (4-pack),2,2.99,12/23/19 19:42,"159 South St, San Francisco, CA 94016" +321069,20in Monitor,1,109.99,12/29/19 15:31,"812 11th St, San Francisco, CA 94016" +321070,Apple Airpods Headphones,1,150,12/02/19 09:57,"656 Sunset St, San Francisco, CA 94016" +321071,AAA Batteries (4-pack),1,2.99,12/30/19 11:26,"380 Cedar St, Seattle, WA 98101" +321072,Wired Headphones,1,11.99,12/20/19 20:01,"350 12th St, New York City, NY 10001" +321073,34in Ultrawide Monitor,1,379.99,12/03/19 08:35,"868 4th St, Portland, OR 97035" +321074,Wired Headphones,1,11.99,12/01/19 17:13,"638 Cherry St, Boston, MA 02215" +321075,AAA Batteries (4-pack),1,2.99,12/26/19 16:13,"424 Lake St, New York City, NY 10001" +321076,Macbook Pro Laptop,1,1700,12/20/19 09:55,"423 6th St, Portland, ME 04101" +321077,Google Phone,1,600,12/14/19 14:07,"715 9th St, San Francisco, CA 94016" +321077,USB-C Charging Cable,1,11.95,12/14/19 14:07,"715 9th St, San Francisco, CA 94016" +321078,Lightning Charging Cable,1,14.95,12/28/19 19:15,"747 Dogwood St, New York City, NY 10001" +321079,USB-C Charging Cable,1,11.95,12/22/19 08:11,"478 Washington St, Portland, OR 97035" +321080,Lightning Charging Cable,1,14.95,12/04/19 14:38,"830 West St, Dallas, TX 75001" +321081,Lightning Charging Cable,1,14.95,12/27/19 22:05,"812 4th St, Boston, MA 02215" +321082,Wired Headphones,1,11.99,12/28/19 14:03,"968 West St, Los Angeles, CA 90001" +321083,ThinkPad Laptop,1,999.99,12/30/19 10:52,"83 10th St, New York City, NY 10001" +321084,Flatscreen TV,1,300,12/09/19 08:48,"367 Lincoln St, Los Angeles, CA 90001" +321085,Lightning Charging Cable,1,14.95,12/11/19 21:16,"845 Meadow St, Portland, ME 04101" +321086,Lightning Charging Cable,1,14.95,12/05/19 08:50,"38 Willow St, Dallas, TX 75001" +321087,Wired Headphones,1,11.99,12/17/19 16:46,"189 12th St, Dallas, TX 75001" +321088,Lightning Charging Cable,1,14.95,12/09/19 08:10,"492 Cherry St, Los Angeles, CA 90001" +321089,Wired Headphones,1,11.99,12/16/19 10:38,"195 North St, Dallas, TX 75001" +321090,Lightning Charging Cable,1,14.95,12/19/19 17:19,"483 Madison St, Boston, MA 02215" +321091,USB-C Charging Cable,1,11.95,12/30/19 12:07,"897 14th St, Los Angeles, CA 90001" +321092,USB-C Charging Cable,2,11.95,12/07/19 19:27,"378 Cedar St, Los Angeles, CA 90001" +321093,AAA Batteries (4-pack),1,2.99,12/14/19 21:47,"846 Pine St, San Francisco, CA 94016" +321094,AAA Batteries (4-pack),1,2.99,12/11/19 10:21,"515 9th St, San Francisco, CA 94016" +321095,27in 4K Gaming Monitor,1,389.99,12/24/19 09:32,"427 Jackson St, Portland, ME 04101" +321096,ThinkPad Laptop,1,999.99,12/15/19 15:34,"747 13th St, New York City, NY 10001" +321097,USB-C Charging Cable,1,11.95,12/23/19 19:30,"437 West St, New York City, NY 10001" +321098,Lightning Charging Cable,1,14.95,12/27/19 23:21,"229 5th St, San Francisco, CA 94016" +321099,Lightning Charging Cable,1,14.95,12/20/19 18:13,"270 North St, Los Angeles, CA 90001" +321100,Macbook Pro Laptop,1,1700,12/06/19 10:31,"404 Maple St, Dallas, TX 75001" +321101,20in Monitor,1,109.99,12/13/19 18:20,"465 Cedar St, Boston, MA 02215" +321102,iPhone,1,700,12/14/19 20:17,"444 Sunset St, Boston, MA 02215" +321103,ThinkPad Laptop,1,999.99,12/20/19 07:16,"963 Wilson St, Boston, MA 02215" +321104,AAA Batteries (4-pack),6,2.99,12/25/19 02:15,"257 8th St, Los Angeles, CA 90001" +321105,Apple Airpods Headphones,1,150,12/26/19 06:52,"506 8th St, Seattle, WA 98101" +321106,AA Batteries (4-pack),1,3.84,12/18/19 22:34,"41 Highland St, Dallas, TX 75001" +321107,AAA Batteries (4-pack),2,2.99,12/21/19 18:45,"534 Cherry St, San Francisco, CA 94016" +321108,Wired Headphones,1,11.99,12/22/19 01:30,"564 Church St, Boston, MA 02215" +321109,Bose SoundSport Headphones,1,99.99,12/07/19 15:38,"113 Elm St, Los Angeles, CA 90001" +321110,20in Monitor,1,109.99,12/09/19 15:28,"36 Main St, San Francisco, CA 94016" +321111,Bose SoundSport Headphones,1,99.99,12/02/19 18:00,"494 1st St, Seattle, WA 98101" +321112,ThinkPad Laptop,1,999.99,12/18/19 08:57,"758 Ridge St, Portland, OR 97035" +321113,Apple Airpods Headphones,1,150,12/25/19 10:22,"426 Jefferson St, San Francisco, CA 94016" +321114,20in Monitor,1,109.99,12/26/19 12:51,"369 Jackson St, Austin, TX 73301" +321115,Wired Headphones,1,11.99,12/05/19 17:50,"740 Lincoln St, Boston, MA 02215" +321116,AAA Batteries (4-pack),1,2.99,12/23/19 14:53,"718 Johnson St, San Francisco, CA 94016" +321117,iPhone,1,700,12/02/19 18:42,"993 4th St, San Francisco, CA 94016" +321118,Macbook Pro Laptop,1,1700,12/03/19 22:07,"714 Dogwood St, Seattle, WA 98101" +321119,Macbook Pro Laptop,1,1700,12/30/19 20:40,"270 7th St, Seattle, WA 98101" +321120,Lightning Charging Cable,1,14.95,12/21/19 17:39,"583 Church St, Seattle, WA 98101" +321121,AA Batteries (4-pack),1,3.84,12/14/19 11:04,"864 Walnut St, Seattle, WA 98101" +321122,20in Monitor,1,109.99,12/26/19 16:24,"130 Wilson St, Austin, TX 73301" +321123,Lightning Charging Cable,1,14.95,12/13/19 18:30,"211 4th St, Boston, MA 02215" +321124,AA Batteries (4-pack),1,3.84,12/13/19 11:27,"46 North St, San Francisco, CA 94016" +321125,USB-C Charging Cable,1,11.95,12/06/19 01:19,"48 10th St, Seattle, WA 98101" +321126,AA Batteries (4-pack),1,3.84,12/14/19 19:25,"867 2nd St, New York City, NY 10001" +321127,USB-C Charging Cable,1,11.95,12/28/19 15:11,"103 1st St, San Francisco, CA 94016" +321128,AAA Batteries (4-pack),2,2.99,12/29/19 14:20,"681 South St, Austin, TX 73301" +321129,AAA Batteries (4-pack),2,2.99,12/20/19 13:49,"386 5th St, Seattle, WA 98101" +321130,Wired Headphones,1,11.99,12/11/19 12:13,"860 Maple St, Dallas, TX 75001" +321131,USB-C Charging Cable,1,11.95,12/30/19 09:17,"114 Walnut St, San Francisco, CA 94016" +321132,Lightning Charging Cable,1,14.95,12/12/19 08:33,"838 9th St, Los Angeles, CA 90001" +321132,Flatscreen TV,1,300,12/12/19 08:33,"838 9th St, Los Angeles, CA 90001" +321133,34in Ultrawide Monitor,1,379.99,12/25/19 16:47,"516 Cedar St, Los Angeles, CA 90001" +321133,AA Batteries (4-pack),1,3.84,12/25/19 16:47,"516 Cedar St, Los Angeles, CA 90001" +321134,Macbook Pro Laptop,1,1700,12/26/19 17:18,"684 8th St, San Francisco, CA 94016" +321135,AAA Batteries (4-pack),1,2.99,12/21/19 19:50,"123 Highland St, Los Angeles, CA 90001" +321136,Lightning Charging Cable,1,14.95,12/26/19 10:56,"921 Wilson St, San Francisco, CA 94016" +321137,Bose SoundSport Headphones,1,99.99,12/16/19 11:35,"638 1st St, Austin, TX 73301" +321138,ThinkPad Laptop,1,999.99,12/31/19 23:21,"973 Chestnut St, Boston, MA 02215" +321139,AA Batteries (4-pack),3,3.84,12/26/19 21:17,"368 South St, Austin, TX 73301" +321140,Macbook Pro Laptop,1,1700,12/15/19 19:59,"334 14th St, San Francisco, CA 94016" +321141,AA Batteries (4-pack),1,3.84,12/17/19 08:08,"256 Walnut St, Austin, TX 73301" +321142,Apple Airpods Headphones,1,150,12/03/19 07:52,"78 6th St, San Francisco, CA 94016" +321143,Apple Airpods Headphones,1,150,12/08/19 15:34,"580 13th St, New York City, NY 10001" +321144,Macbook Pro Laptop,1,1700,12/24/19 09:56,"535 Main St, New York City, NY 10001" +321145,USB-C Charging Cable,1,11.95,01/01/20 04:22,"393 Forest St, San Francisco, CA 94016" +321146,27in FHD Monitor,1,149.99,12/03/19 21:12,"877 Ridge St, Los Angeles, CA 90001" +321147,AA Batteries (4-pack),1,3.84,12/24/19 18:49,"675 Maple St, Atlanta, GA 30301" +321148,AAA Batteries (4-pack),2,2.99,12/15/19 11:16,"230 1st St, Seattle, WA 98101" +321149,Lightning Charging Cable,1,14.95,12/30/19 07:56,"712 Hickory St, New York City, NY 10001" +321150,Lightning Charging Cable,1,14.95,12/25/19 15:21,"522 Lake St, New York City, NY 10001" +321151,27in FHD Monitor,1,149.99,12/07/19 15:23,"109 Walnut St, San Francisco, CA 94016" +321152,Wired Headphones,1,11.99,12/15/19 08:54,"888 Willow St, Portland, OR 97035" +321153,Flatscreen TV,1,300,12/23/19 19:45,"17 Dogwood St, Los Angeles, CA 90001" +321154,iPhone,1,700,12/28/19 20:38,"291 5th St, Boston, MA 02215" +321155,AA Batteries (4-pack),1,3.84,12/15/19 00:03,"263 Park St, San Francisco, CA 94016" +321156,iPhone,1,700,12/16/19 12:43,"371 Adams St, Boston, MA 02215" +321157,Bose SoundSport Headphones,1,99.99,12/11/19 08:00,"124 2nd St, Los Angeles, CA 90001" +321158,USB-C Charging Cable,1,11.95,12/30/19 14:35,"994 Madison St, Los Angeles, CA 90001" +321159,iPhone,1,700,12/16/19 14:24,"251 River St, New York City, NY 10001" +321159,Lightning Charging Cable,1,14.95,12/16/19 14:24,"251 River St, New York City, NY 10001" +321160,ThinkPad Laptop,1,999.99,12/17/19 13:06,"944 Main St, San Francisco, CA 94016" +321161,Wired Headphones,1,11.99,12/14/19 09:15,"895 13th St, New York City, NY 10001" +321162,AA Batteries (4-pack),1,3.84,12/15/19 20:57,"265 Washington St, San Francisco, CA 94016" +321163,iPhone,1,700,12/13/19 17:39,"205 Adams St, Los Angeles, CA 90001" +321163,Wired Headphones,1,11.99,12/13/19 17:39,"205 Adams St, Los Angeles, CA 90001" +321164,Lightning Charging Cable,1,14.95,12/22/19 14:18,"380 River St, San Francisco, CA 94016" +321165,27in 4K Gaming Monitor,1,389.99,12/16/19 14:28,"305 Highland St, Seattle, WA 98101" +321166,Apple Airpods Headphones,1,150,12/23/19 20:48,"424 Willow St, San Francisco, CA 94016" +321167,Lightning Charging Cable,1,14.95,12/24/19 13:31,"146 8th St, San Francisco, CA 94016" +321168,iPhone,1,700,12/31/19 14:17,"348 Cedar St, Seattle, WA 98101" +321169,Wired Headphones,1,11.99,12/16/19 17:26,"357 Elm St, Austin, TX 73301" +321170,Flatscreen TV,1,300,12/07/19 17:46,"551 13th St, Boston, MA 02215" +321171,AA Batteries (4-pack),2,3.84,12/20/19 12:23,"999 10th St, San Francisco, CA 94016" +321172,AA Batteries (4-pack),1,3.84,12/20/19 22:30,"145 River St, Boston, MA 02215" +321173,AAA Batteries (4-pack),1,2.99,12/27/19 18:11,"217 Pine St, Seattle, WA 98101" +321174,USB-C Charging Cable,1,11.95,12/31/19 21:55,"222 Maple St, San Francisco, CA 94016" +321175,Flatscreen TV,1,300,12/08/19 11:46,"664 Madison St, New York City, NY 10001" +321176,Google Phone,1,600,12/28/19 13:34,"433 Lake St, Boston, MA 02215" +321177,Google Phone,1,600,12/28/19 18:08,"844 Spruce St, Portland, OR 97035" +321178,AA Batteries (4-pack),2,3.84,12/22/19 23:27,"73 Center St, San Francisco, CA 94016" +321179,AAA Batteries (4-pack),2,2.99,12/02/19 16:07,"877 Madison St, New York City, NY 10001" +321180,Bose SoundSport Headphones,1,99.99,12/17/19 18:22,"561 Johnson St, Portland, OR 97035" +321181,Apple Airpods Headphones,1,150,12/09/19 18:14,"23 Lakeview St, Portland, ME 04101" +321182,20in Monitor,1,109.99,12/08/19 21:49,"788 River St, Los Angeles, CA 90001" +321183,Vareebadd Phone,1,400,12/21/19 12:03,"202 Lincoln St, San Francisco, CA 94016" +321184,Apple Airpods Headphones,1,150,12/17/19 08:41,"47 Meadow St, Portland, ME 04101" +321185,Bose SoundSport Headphones,1,99.99,12/29/19 23:50,"598 North St, Atlanta, GA 30301" +321186,Lightning Charging Cable,1,14.95,12/19/19 11:55,"454 Hill St, Los Angeles, CA 90001" +321187,Lightning Charging Cable,1,14.95,12/12/19 04:49,"293 Jackson St, Seattle, WA 98101" +321188,27in 4K Gaming Monitor,1,389.99,12/18/19 16:07,"982 Adams St, Portland, OR 97035" +321189,USB-C Charging Cable,1,11.95,12/21/19 14:09,"87 Highland St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +321190,Apple Airpods Headphones,1,150,12/26/19 12:54,"828 Church St, New York City, NY 10001" +321191,27in FHD Monitor,1,149.99,12/14/19 09:09,"931 Church St, Atlanta, GA 30301" +321192,Lightning Charging Cable,1,14.95,12/09/19 12:33,"908 8th St, Los Angeles, CA 90001" +321193,AA Batteries (4-pack),1,3.84,12/09/19 11:20,"894 Adams St, Atlanta, GA 30301" +321194,Wired Headphones,1,11.99,12/30/19 15:19,"147 2nd St, Portland, OR 97035" +321195,AAA Batteries (4-pack),1,2.99,12/23/19 18:15,"44 Dogwood St, Atlanta, GA 30301" +321196,27in FHD Monitor,1,149.99,12/29/19 00:22,"517 Jackson St, New York City, NY 10001" +321197,USB-C Charging Cable,1,11.95,12/24/19 11:43,"788 11th St, Atlanta, GA 30301" +321198,LG Washing Machine,1,600.0,12/26/19 22:26,"277 Jefferson St, Seattle, WA 98101" +321199,ThinkPad Laptop,1,999.99,12/14/19 21:28,"889 West St, Boston, MA 02215" +321200,Lightning Charging Cable,1,14.95,12/26/19 20:12,"393 Dogwood St, New York City, NY 10001" +321201,Wired Headphones,1,11.99,12/23/19 15:51,"846 Cherry St, Dallas, TX 75001" +321202,27in FHD Monitor,1,149.99,12/09/19 15:56,"33 South St, New York City, NY 10001" +321203,AA Batteries (4-pack),1,3.84,12/08/19 17:09,"839 North St, Portland, OR 97035" +321204,Macbook Pro Laptop,1,1700,12/03/19 17:54,"79 North St, New York City, NY 10001" +321205,USB-C Charging Cable,1,11.95,12/14/19 13:40,"693 Willow St, San Francisco, CA 94016" +,,,,, +321206,Google Phone,1,600,12/22/19 22:17,"743 12th St, Dallas, TX 75001" +321206,Wired Headphones,1,11.99,12/22/19 22:17,"743 12th St, Dallas, TX 75001" +321207,Wired Headphones,1,11.99,12/31/19 22:04,"567 Madison St, Austin, TX 73301" +321208,Macbook Pro Laptop,1,1700,12/19/19 13:02,"253 Park St, San Francisco, CA 94016" +321209,27in 4K Gaming Monitor,1,389.99,12/20/19 10:10,"368 8th St, Los Angeles, CA 90001" +321210,20in Monitor,1,109.99,12/08/19 22:04,"404 Chestnut St, New York City, NY 10001" +321211,iPhone,1,700,12/05/19 16:00,"688 Walnut St, Dallas, TX 75001" +321212,Apple Airpods Headphones,1,150,12/25/19 15:11,"268 6th St, Portland, OR 97035" +321212,Flatscreen TV,1,300,12/25/19 15:11,"268 6th St, Portland, OR 97035" +321213,27in 4K Gaming Monitor,1,389.99,12/07/19 12:21,"947 Forest St, Dallas, TX 75001" +321214,Bose SoundSport Headphones,1,99.99,12/12/19 12:39,"703 Jefferson St, Atlanta, GA 30301" +321215,ThinkPad Laptop,1,999.99,12/13/19 15:40,"750 5th St, Los Angeles, CA 90001" +321216,27in FHD Monitor,1,149.99,12/21/19 11:53,"885 Main St, Austin, TX 73301" +321217,Apple Airpods Headphones,1,150,12/29/19 13:38,"581 Church St, San Francisco, CA 94016" +321218,Bose SoundSport Headphones,1,99.99,12/25/19 21:32,"350 Cedar St, Dallas, TX 75001" +321219,27in FHD Monitor,1,149.99,12/02/19 15:51,"981 Wilson St, Austin, TX 73301" +321220,AAA Batteries (4-pack),1,2.99,12/07/19 19:32,"866 10th St, Los Angeles, CA 90001" +321221,Macbook Pro Laptop,1,1700,12/07/19 03:09,"697 Adams St, Boston, MA 02215" +321222,Apple Airpods Headphones,1,150,12/13/19 11:12,"140 Main St, Atlanta, GA 30301" +321223,AA Batteries (4-pack),1,3.84,12/19/19 12:31,"113 Chestnut St, San Francisco, CA 94016" +321224,AAA Batteries (4-pack),2,2.99,12/03/19 11:57,"995 10th St, Boston, MA 02215" +321225,Bose SoundSport Headphones,1,99.99,12/28/19 05:43,"298 2nd St, Boston, MA 02215" +321226,AA Batteries (4-pack),1,3.84,12/25/19 18:00,"657 11th St, Boston, MA 02215" +321227,Lightning Charging Cable,1,14.95,12/30/19 06:36,"710 Adams St, Los Angeles, CA 90001" +321228,AAA Batteries (4-pack),2,2.99,12/30/19 21:20,"554 Spruce St, Seattle, WA 98101" +321229,Bose SoundSport Headphones,1,99.99,12/31/19 18:14,"486 2nd St, Austin, TX 73301" +321230,27in 4K Gaming Monitor,1,389.99,12/17/19 06:27,"304 4th St, Seattle, WA 98101" +,,,,, +321231,Lightning Charging Cable,1,14.95,12/21/19 10:58,"185 Highland St, San Francisco, CA 94016" +321232,34in Ultrawide Monitor,1,379.99,12/29/19 22:38,"289 Chestnut St, Seattle, WA 98101" +321233,Lightning Charging Cable,1,14.95,12/02/19 15:24,"607 5th St, Dallas, TX 75001" +321234,AAA Batteries (4-pack),1,2.99,12/25/19 07:42,"383 Cedar St, Portland, ME 04101" +321235,Lightning Charging Cable,1,14.95,12/04/19 17:56,"4 Cherry St, San Francisco, CA 94016" +321236,iPhone,1,700,12/06/19 09:40,"774 5th St, Boston, MA 02215" +321236,Lightning Charging Cable,1,14.95,12/06/19 09:40,"774 5th St, Boston, MA 02215" +321237,Macbook Pro Laptop,1,1700,12/13/19 00:58,"640 1st St, San Francisco, CA 94016" +321238,Wired Headphones,1,11.99,12/24/19 19:46,"603 9th St, San Francisco, CA 94016" +321239,Lightning Charging Cable,1,14.95,12/31/19 22:54,"862 7th St, San Francisco, CA 94016" +321240,20in Monitor,1,109.99,12/05/19 09:38,"642 Dogwood St, Portland, OR 97035" +321241,Flatscreen TV,1,300,12/29/19 23:59,"414 5th St, San Francisco, CA 94016" +321242,Apple Airpods Headphones,1,150,12/17/19 18:13,"511 11th St, San Francisco, CA 94016" +321243,AAA Batteries (4-pack),2,2.99,12/29/19 00:16,"711 7th St, Seattle, WA 98101" +321244,Lightning Charging Cable,1,14.95,12/13/19 22:05,"555 Johnson St, San Francisco, CA 94016" +321245,Bose SoundSport Headphones,1,99.99,12/13/19 19:58,"728 Spruce St, Dallas, TX 75001" +321246,AAA Batteries (4-pack),1,2.99,12/25/19 14:05,"234 9th St, Boston, MA 02215" +321247,Wired Headphones,1,11.99,12/12/19 20:23,"789 7th St, San Francisco, CA 94016" +321248,Lightning Charging Cable,1,14.95,12/25/19 06:49,"835 Johnson St, Los Angeles, CA 90001" +321249,AA Batteries (4-pack),2,3.84,12/01/19 23:41,"540 2nd St, Seattle, WA 98101" +321250,AAA Batteries (4-pack),3,2.99,12/15/19 10:35,"953 Elm St, Atlanta, GA 30301" +321251,AAA Batteries (4-pack),2,2.99,12/26/19 09:04,"141 Elm St, San Francisco, CA 94016" +321252,27in FHD Monitor,1,149.99,12/01/19 14:47,"996 14th St, Atlanta, GA 30301" +321253,Apple Airpods Headphones,1,150,12/01/19 16:38,"908 6th St, New York City, NY 10001" +321254,Bose SoundSport Headphones,1,99.99,12/26/19 20:01,"70 Walnut St, Portland, OR 97035" +321255,34in Ultrawide Monitor,1,379.99,12/04/19 21:54,"49 Willow St, New York City, NY 10001" +321256,Wired Headphones,1,11.99,12/08/19 09:43,"407 Hill St, Boston, MA 02215" +321257,Apple Airpods Headphones,1,150,12/28/19 21:38,"705 Main St, Atlanta, GA 30301" +321258,USB-C Charging Cable,1,11.95,12/20/19 19:46,"411 Cedar St, Los Angeles, CA 90001" +321259,AA Batteries (4-pack),3,3.84,12/06/19 21:53,"883 13th St, New York City, NY 10001" +321260,USB-C Charging Cable,1,11.95,12/16/19 12:27,"677 4th St, San Francisco, CA 94016" +321261,Lightning Charging Cable,1,14.95,12/30/19 18:42,"52 Dogwood St, San Francisco, CA 94016" +321262,Wired Headphones,1,11.99,12/11/19 18:44,"476 5th St, Los Angeles, CA 90001" +321263,USB-C Charging Cable,1,11.95,12/12/19 21:08,"451 Dogwood St, Los Angeles, CA 90001" +321264,Google Phone,1,600,12/23/19 20:23,"692 Church St, Boston, MA 02215" +321265,Lightning Charging Cable,1,14.95,12/18/19 13:09,"739 14th St, San Francisco, CA 94016" +321266,Apple Airpods Headphones,1,150,12/22/19 16:14,"766 Ridge St, Boston, MA 02215" +321267,27in FHD Monitor,1,149.99,12/30/19 23:29,"46 Hickory St, Atlanta, GA 30301" +321268,USB-C Charging Cable,1,11.95,12/11/19 18:49,"43 West St, San Francisco, CA 94016" +321269,Lightning Charging Cable,1,14.95,12/05/19 15:16,"960 North St, Dallas, TX 75001" +321270,AAA Batteries (4-pack),1,2.99,12/03/19 19:05,"824 Madison St, Dallas, TX 75001" +321271,Google Phone,1,600,12/15/19 11:06,"533 Wilson St, New York City, NY 10001" +321271,USB-C Charging Cable,1,11.95,12/15/19 11:06,"533 Wilson St, New York City, NY 10001" +321272,Wired Headphones,1,11.99,12/17/19 18:33,"21 Johnson St, Dallas, TX 75001" +321273,AA Batteries (4-pack),1,3.84,12/05/19 18:29,"697 5th St, Atlanta, GA 30301" +321274,AAA Batteries (4-pack),1,2.99,12/10/19 18:40,"618 Hill St, San Francisco, CA 94016" +321275,34in Ultrawide Monitor,1,379.99,12/03/19 06:32,"264 Wilson St, Austin, TX 73301" +321276,AA Batteries (4-pack),1,3.84,12/16/19 22:00,"816 4th St, Los Angeles, CA 90001" +321277,USB-C Charging Cable,1,11.95,12/30/19 10:33,"128 13th St, Dallas, TX 75001" +321278,iPhone,1,700,12/04/19 19:16,"433 Sunset St, San Francisco, CA 94016" +321279,Wired Headphones,1,11.99,12/06/19 09:25,"96 Walnut St, San Francisco, CA 94016" +321280,Lightning Charging Cable,1,14.95,12/31/19 07:22,"404 Wilson St, Atlanta, GA 30301" +321281,Apple Airpods Headphones,1,150,12/17/19 22:09,"234 North St, Atlanta, GA 30301" +321282,Wired Headphones,1,11.99,12/04/19 17:54,"646 9th St, Seattle, WA 98101" +321283,Wired Headphones,1,11.99,12/22/19 15:46,"229 Washington St, Atlanta, GA 30301" +321284,AAA Batteries (4-pack),1,2.99,12/01/19 19:39,"209 North St, Atlanta, GA 30301" +321285,27in FHD Monitor,1,149.99,12/14/19 09:29,"573 Ridge St, New York City, NY 10001" +321285,27in 4K Gaming Monitor,1,389.99,12/14/19 09:29,"573 Ridge St, New York City, NY 10001" +321286,Vareebadd Phone,1,400,12/30/19 20:31,"859 Spruce St, Austin, TX 73301" +321287,AAA Batteries (4-pack),1,2.99,12/11/19 12:47,"921 Lincoln St, New York City, NY 10001" +321288,Macbook Pro Laptop,1,1700,12/05/19 18:56,"610 14th St, San Francisco, CA 94016" +321289,AAA Batteries (4-pack),1,2.99,12/18/19 14:01,"954 Hill St, San Francisco, CA 94016" +321290,AAA Batteries (4-pack),1,2.99,12/09/19 15:29,"31 Lake St, New York City, NY 10001" +321291,Bose SoundSport Headphones,1,99.99,12/08/19 19:54,"577 9th St, San Francisco, CA 94016" +321292,AA Batteries (4-pack),1,3.84,12/07/19 10:10,"312 Ridge St, San Francisco, CA 94016" +321293,ThinkPad Laptop,1,999.99,12/10/19 15:13,"950 Maple St, Portland, OR 97035" +321294,USB-C Charging Cable,1,11.95,12/19/19 20:12,"944 Wilson St, Seattle, WA 98101" +321295,AA Batteries (4-pack),1,3.84,12/04/19 11:23,"79 Johnson St, San Francisco, CA 94016" +321295,Google Phone,1,600,12/04/19 11:23,"79 Johnson St, San Francisco, CA 94016" +321296,AA Batteries (4-pack),1,3.84,12/30/19 21:29,"732 Spruce St, Dallas, TX 75001" +321297,AA Batteries (4-pack),1,3.84,12/31/19 19:07,"251 Wilson St, San Francisco, CA 94016" +321298,Lightning Charging Cable,1,14.95,12/09/19 20:28,"976 Dogwood St, Los Angeles, CA 90001" +321299,Lightning Charging Cable,1,14.95,12/24/19 13:49,"748 River St, Boston, MA 02215" +321300,AA Batteries (4-pack),1,3.84,12/10/19 10:13,"426 Maple St, New York City, NY 10001" +321301,AAA Batteries (4-pack),5,2.99,12/05/19 11:25,"705 Lake St, Austin, TX 73301" +321302,Lightning Charging Cable,2,14.95,12/17/19 19:19,"2 4th St, San Francisco, CA 94016" +321303,AAA Batteries (4-pack),2,2.99,12/02/19 10:02,"341 2nd St, Los Angeles, CA 90001" +321304,AA Batteries (4-pack),2,3.84,12/14/19 18:34,"61 South St, Los Angeles, CA 90001" +321305,Apple Airpods Headphones,1,150,12/25/19 16:40,"568 Center St, New York City, NY 10001" +321306,Bose SoundSport Headphones,1,99.99,12/14/19 18:14,"196 Walnut St, Austin, TX 73301" +321307,Google Phone,1,600,12/11/19 18:55,"496 11th St, Seattle, WA 98101" +321308,Apple Airpods Headphones,1,150,12/02/19 14:59,"846 Adams St, Portland, OR 97035" +321309,AAA Batteries (4-pack),1,2.99,12/10/19 17:28,"772 Sunset St, Portland, OR 97035" +321310,LG Washing Machine,1,600.0,12/20/19 12:57,"421 Wilson St, Boston, MA 02215" +321311,Bose SoundSport Headphones,1,99.99,12/10/19 10:11,"450 Church St, San Francisco, CA 94016" +321312,iPhone,1,700,12/18/19 10:22,"597 Cherry St, Atlanta, GA 30301" +321313,20in Monitor,1,109.99,12/25/19 15:25,"174 7th St, Seattle, WA 98101" +321314,AA Batteries (4-pack),1,3.84,12/15/19 08:39,"941 Maple St, Dallas, TX 75001" +321315,AAA Batteries (4-pack),1,2.99,12/01/19 14:50,"221 Elm St, Portland, OR 97035" +321316,AA Batteries (4-pack),1,3.84,12/24/19 12:52,"114 Center St, Boston, MA 02215" +321317,Vareebadd Phone,1,400,12/20/19 09:27,"228 Wilson St, San Francisco, CA 94016" +321318,AA Batteries (4-pack),1,3.84,12/17/19 20:46,"219 Hickory St, Dallas, TX 75001" +321319,Lightning Charging Cable,2,14.95,12/10/19 13:05,"374 4th St, San Francisco, CA 94016" +321320,Lightning Charging Cable,1,14.95,12/19/19 07:58,"355 Walnut St, Atlanta, GA 30301" +321321,Bose SoundSport Headphones,1,99.99,12/04/19 17:15,"926 7th St, Los Angeles, CA 90001" +321322,Bose SoundSport Headphones,1,99.99,12/05/19 21:06,"146 Adams St, Dallas, TX 75001" +321323,Wired Headphones,1,11.99,12/09/19 20:56,"788 Forest St, New York City, NY 10001" +321324,Flatscreen TV,1,300,12/27/19 14:12,"246 Sunset St, Los Angeles, CA 90001" +321325,Lightning Charging Cable,1,14.95,12/10/19 09:12,"202 Hickory St, San Francisco, CA 94016" +321326,USB-C Charging Cable,1,11.95,12/19/19 14:10,"615 Cherry St, New York City, NY 10001" +321327,USB-C Charging Cable,1,11.95,12/15/19 18:58,"632 Hickory St, San Francisco, CA 94016" +321328,USB-C Charging Cable,1,11.95,12/17/19 07:44,"126 Lake St, San Francisco, CA 94016" +321329,Wired Headphones,1,11.99,12/16/19 10:17,"516 Church St, Boston, MA 02215" +321330,Lightning Charging Cable,1,14.95,12/05/19 23:37,"482 7th St, Atlanta, GA 30301" +321330,Bose SoundSport Headphones,1,99.99,12/05/19 23:37,"482 7th St, Atlanta, GA 30301" +321331,Macbook Pro Laptop,1,1700,12/26/19 09:11,"746 Cedar St, Boston, MA 02215" +321332,USB-C Charging Cable,1,11.95,12/23/19 14:30,"924 Adams St, Seattle, WA 98101" +321333,Lightning Charging Cable,1,14.95,12/08/19 14:34,"801 10th St, Los Angeles, CA 90001" +321334,Wired Headphones,1,11.99,12/12/19 19:53,"989 West St, New York City, NY 10001" +321335,AAA Batteries (4-pack),1,2.99,12/08/19 06:53,"918 5th St, San Francisco, CA 94016" +321336,AAA Batteries (4-pack),4,2.99,12/03/19 11:43,"40 Spruce St, Seattle, WA 98101" +321337,Lightning Charging Cable,1,14.95,12/23/19 15:03,"36 Adams St, Dallas, TX 75001" +321338,Bose SoundSport Headphones,1,99.99,12/03/19 09:41,"569 Ridge St, Dallas, TX 75001" +321339,AAA Batteries (4-pack),2,2.99,12/03/19 19:26,"937 Main St, Atlanta, GA 30301" +321340,USB-C Charging Cable,1,11.95,12/29/19 21:48,"241 Ridge St, San Francisco, CA 94016" +321341,iPhone,1,700,12/02/19 15:28,"157 Cherry St, Boston, MA 02215" +321342,Flatscreen TV,1,300,12/28/19 18:53,"165 Johnson St, Atlanta, GA 30301" +321343,27in FHD Monitor,1,149.99,12/24/19 19:17,"306 Lakeview St, Dallas, TX 75001" +321344,AAA Batteries (4-pack),1,2.99,12/28/19 22:19,"265 Lake St, San Francisco, CA 94016" +321345,AA Batteries (4-pack),1,3.84,12/13/19 20:14,"360 Hill St, Los Angeles, CA 90001" +321346,20in Monitor,1,109.99,12/25/19 10:51,"814 Forest St, New York City, NY 10001" +321347,34in Ultrawide Monitor,1,379.99,12/23/19 10:59,"626 River St, Portland, OR 97035" +321348,AAA Batteries (4-pack),1,2.99,12/23/19 17:53,"55 Hickory St, Los Angeles, CA 90001" +321349,Lightning Charging Cable,2,14.95,12/28/19 23:51,"789 6th St, New York City, NY 10001" +321350,AA Batteries (4-pack),1,3.84,12/17/19 00:44,"609 West St, Seattle, WA 98101" +321351,AAA Batteries (4-pack),1,2.99,12/20/19 00:37,"813 South St, San Francisco, CA 94016" +321352,Vareebadd Phone,1,400,12/05/19 16:42,"105 Walnut St, San Francisco, CA 94016" +321352,USB-C Charging Cable,1,11.95,12/05/19 16:42,"105 Walnut St, San Francisco, CA 94016" +321353,Wired Headphones,1,11.99,12/12/19 12:33,"463 Pine St, Los Angeles, CA 90001" +321354,ThinkPad Laptop,1,999.99,12/18/19 14:10,"608 Lake St, Atlanta, GA 30301" +321355,Lightning Charging Cable,1,14.95,12/25/19 18:42,"790 Wilson St, Seattle, WA 98101" +321356,USB-C Charging Cable,1,11.95,12/09/19 19:54,"797 Walnut St, Seattle, WA 98101" +321357,USB-C Charging Cable,1,11.95,12/07/19 01:45,"378 7th St, Los Angeles, CA 90001" +321358,Lightning Charging Cable,1,14.95,12/18/19 18:47,"41 West St, Atlanta, GA 30301" +321359,20in Monitor,1,109.99,12/20/19 15:49,"246 Adams St, Los Angeles, CA 90001" +321360,AA Batteries (4-pack),1,3.84,12/12/19 19:22,"957 9th St, Dallas, TX 75001" +321361,Google Phone,1,600,12/11/19 08:52,"543 Lakeview St, Los Angeles, CA 90001" +321361,USB-C Charging Cable,1,11.95,12/11/19 08:52,"543 Lakeview St, Los Angeles, CA 90001" +321362,USB-C Charging Cable,2,11.95,12/03/19 14:15,"594 South St, Los Angeles, CA 90001" +321363,Apple Airpods Headphones,1,150,12/05/19 19:26,"95 Cherry St, Dallas, TX 75001" +321364,Apple Airpods Headphones,1,150,12/28/19 13:22,"31 7th St, New York City, NY 10001" +321365,USB-C Charging Cable,1,11.95,12/17/19 17:36,"310 Lake St, Los Angeles, CA 90001" +321366,Wired Headphones,1,11.99,12/08/19 02:21,"921 8th St, Dallas, TX 75001" +321367,AA Batteries (4-pack),1,3.84,12/19/19 10:22,"561 13th St, Atlanta, GA 30301" +321368,Lightning Charging Cable,1,14.95,12/31/19 14:25,"385 2nd St, San Francisco, CA 94016" +321369,Bose SoundSport Headphones,1,99.99,12/31/19 12:07,"754 13th St, San Francisco, CA 94016" +321370,27in FHD Monitor,1,149.99,12/20/19 19:53,"179 14th St, Los Angeles, CA 90001" +321371,AA Batteries (4-pack),2,3.84,12/17/19 15:58,"166 Dogwood St, Boston, MA 02215" +321372,iPhone,1,700,12/05/19 18:00,"151 West St, Austin, TX 73301" +321372,Lightning Charging Cable,1,14.95,12/05/19 18:00,"151 West St, Austin, TX 73301" +321372,Apple Airpods Headphones,1,150,12/05/19 18:00,"151 West St, Austin, TX 73301" +321373,20in Monitor,1,109.99,12/05/19 12:23,"894 River St, Los Angeles, CA 90001" +321374,Wired Headphones,2,11.99,12/22/19 21:03,"949 Cedar St, Boston, MA 02215" +321375,Apple Airpods Headphones,1,150,12/27/19 13:33,"255 Sunset St, Atlanta, GA 30301" +321376,AAA Batteries (4-pack),1,2.99,12/21/19 13:16,"904 10th St, Austin, TX 73301" +321377,Google Phone,1,600,12/23/19 19:46,"251 Meadow St, Portland, OR 97035" +321377,USB-C Charging Cable,1,11.95,12/23/19 19:46,"251 Meadow St, Portland, OR 97035" +321378,ThinkPad Laptop,1,999.99,12/01/19 14:37,"468 North St, Portland, OR 97035" +321379,27in FHD Monitor,1,149.99,12/28/19 21:30,"379 Highland St, Seattle, WA 98101" +321380,Flatscreen TV,1,300,12/14/19 20:29,"653 Spruce St, Seattle, WA 98101" +321381,AAA Batteries (4-pack),1,2.99,12/30/19 05:14,"947 Jackson St, Los Angeles, CA 90001" +321382,AAA Batteries (4-pack),1,2.99,12/14/19 22:04,"613 Park St, San Francisco, CA 94016" +321383,Wired Headphones,1,11.99,12/04/19 09:02,"229 Madison St, Seattle, WA 98101" +321384,AAA Batteries (4-pack),3,2.99,12/18/19 19:58,"198 South St, Dallas, TX 75001" +321385,27in FHD Monitor,1,149.99,12/26/19 18:23,"634 Meadow St, San Francisco, CA 94016" +321386,Wired Headphones,1,11.99,12/14/19 13:40,"846 Walnut St, Los Angeles, CA 90001" +321387,AAA Batteries (4-pack),4,2.99,12/05/19 12:28,"518 13th St, Atlanta, GA 30301" +321388,Wired Headphones,1,11.99,12/08/19 17:21,"191 Lakeview St, San Francisco, CA 94016" +321389,Lightning Charging Cable,1,14.95,12/10/19 12:46,"445 14th St, New York City, NY 10001" +321390,Bose SoundSport Headphones,1,99.99,12/09/19 16:54,"428 North St, Boston, MA 02215" +321391,AA Batteries (4-pack),1,3.84,12/24/19 23:19,"756 Sunset St, Seattle, WA 98101" +321392,20in Monitor,1,109.99,12/31/19 21:48,"836 Dogwood St, Portland, OR 97035" +321393,Apple Airpods Headphones,1,150,12/14/19 12:32,"866 Wilson St, Seattle, WA 98101" +321394,27in FHD Monitor,1,149.99,12/19/19 10:10,"575 8th St, New York City, NY 10001" +321395,AAA Batteries (4-pack),5,2.99,12/21/19 11:38,"42 South St, Dallas, TX 75001" +321396,AA Batteries (4-pack),1,3.84,12/23/19 16:57,"1 Elm St, Seattle, WA 98101" +321397,27in 4K Gaming Monitor,1,389.99,12/18/19 21:31,"186 Jackson St, San Francisco, CA 94016" +321398,27in FHD Monitor,1,149.99,12/09/19 23:42,"103 Jackson St, Seattle, WA 98101" +321399,27in 4K Gaming Monitor,1,389.99,12/15/19 19:14,"979 Center St, New York City, NY 10001" +321400,iPhone,1,700,12/03/19 21:45,"661 Walnut St, New York City, NY 10001" +321401,Wired Headphones,1,11.99,12/04/19 14:44,"645 Walnut St, Atlanta, GA 30301" +321402,Google Phone,1,600,12/21/19 13:48,"117 13th St, Boston, MA 02215" +321403,Apple Airpods Headphones,1,150,12/18/19 01:27,"18 Church St, San Francisco, CA 94016" +321404,Google Phone,1,600,01/01/20 01:03,"440 Lake St, Seattle, WA 98101" +321405,Bose SoundSport Headphones,1,99.99,12/16/19 15:04,"952 Pine St, Seattle, WA 98101" +321406,Lightning Charging Cable,1,14.95,12/10/19 12:53,"31 Elm St, Los Angeles, CA 90001" +321407,USB-C Charging Cable,1,11.95,12/22/19 20:28,"533 4th St, Dallas, TX 75001" +321408,Apple Airpods Headphones,1,150,12/03/19 11:35,"142 Madison St, Seattle, WA 98101" +321409,AAA Batteries (4-pack),1,2.99,12/19/19 11:27,"953 12th St, Dallas, TX 75001" +321410,Google Phone,1,600,12/25/19 00:59,"107 Park St, San Francisco, CA 94016" +321411,27in 4K Gaming Monitor,1,389.99,12/16/19 19:57,"555 Lakeview St, San Francisco, CA 94016" +321412,AAA Batteries (4-pack),5,2.99,12/01/19 11:47,"292 8th St, Dallas, TX 75001" +321413,AA Batteries (4-pack),2,3.84,12/26/19 08:21,"882 Forest St, Austin, TX 73301" +321414,Wired Headphones,1,11.99,12/13/19 20:50,"872 Highland St, San Francisco, CA 94016" +321415,iPhone,1,700,12/11/19 02:40,"372 Maple St, Dallas, TX 75001" +321416,Google Phone,1,600,12/15/19 17:16,"296 Walnut St, New York City, NY 10001" +321417,Lightning Charging Cable,1,14.95,12/04/19 23:17,"158 Park St, Los Angeles, CA 90001" +321418,34in Ultrawide Monitor,1,379.99,12/15/19 13:38,"916 Jefferson St, San Francisco, CA 94016" +321419,Macbook Pro Laptop,1,1700,12/22/19 13:04,"25 14th St, San Francisco, CA 94016" +321419,Macbook Pro Laptop,1,1700,12/22/19 13:04,"25 14th St, San Francisco, CA 94016" +321420,iPhone,1,700,12/06/19 07:17,"454 West St, Austin, TX 73301" +321421,USB-C Charging Cable,1,11.95,12/17/19 14:07,"884 Madison St, New York City, NY 10001" +321422,Bose SoundSport Headphones,1,99.99,12/12/19 20:16,"316 Ridge St, New York City, NY 10001" +321423,USB-C Charging Cable,1,11.95,12/05/19 19:33,"8 Cherry St, Boston, MA 02215" +321424,AA Batteries (4-pack),1,3.84,12/01/19 12:01,"407 Adams St, San Francisco, CA 94016" +321425,USB-C Charging Cable,1,11.95,12/29/19 14:40,"381 Johnson St, Seattle, WA 98101" +321426,Bose SoundSport Headphones,1,99.99,12/25/19 07:49,"456 2nd St, New York City, NY 10001" +321427,27in FHD Monitor,1,149.99,12/26/19 14:48,"207 Lake St, San Francisco, CA 94016" +321428,AAA Batteries (4-pack),1,2.99,12/20/19 20:20,"191 Cherry St, Seattle, WA 98101" +321429,Bose SoundSport Headphones,1,99.99,12/23/19 18:59,"754 12th St, Atlanta, GA 30301" +321430,27in 4K Gaming Monitor,1,389.99,12/16/19 20:25,"1 11th St, New York City, NY 10001" +321431,Wired Headphones,1,11.99,12/26/19 11:45,"634 11th St, Boston, MA 02215" +321432,27in FHD Monitor,1,149.99,12/15/19 14:41,"250 Cherry St, Los Angeles, CA 90001" +321433,Google Phone,1,600,12/28/19 21:47,"64 West St, New York City, NY 10001" +321433,USB-C Charging Cable,1,11.95,12/28/19 21:47,"64 West St, New York City, NY 10001" +321434,AA Batteries (4-pack),1,3.84,12/14/19 07:17,"518 14th St, Dallas, TX 75001" +321435,Wired Headphones,1,11.99,12/17/19 10:40,"373 Wilson St, Seattle, WA 98101" +321436,Wired Headphones,1,11.99,12/04/19 15:55,"18 Lake St, Los Angeles, CA 90001" +321437,Apple Airpods Headphones,1,150,12/02/19 20:54,"683 Lincoln St, Boston, MA 02215" +321438,27in FHD Monitor,1,149.99,12/05/19 17:09,"112 Cedar St, Los Angeles, CA 90001" +321439,iPhone,1,700,01/01/20 01:27,"785 Pine St, Seattle, WA 98101" +321439,Apple Airpods Headphones,1,150,01/01/20 01:27,"785 Pine St, Seattle, WA 98101" +321440,Bose SoundSport Headphones,1,99.99,12/03/19 17:40,"936 Wilson St, San Francisco, CA 94016" +321441,USB-C Charging Cable,1,11.95,12/24/19 19:35,"970 7th St, Dallas, TX 75001" +321442,AA Batteries (4-pack),1,3.84,12/30/19 14:04,"296 Adams St, Los Angeles, CA 90001" +321442,iPhone,1,700,12/30/19 14:04,"296 Adams St, Los Angeles, CA 90001" +321443,Flatscreen TV,1,300,12/19/19 21:29,"295 Cedar St, San Francisco, CA 94016" +321444,AAA Batteries (4-pack),1,2.99,12/29/19 17:35,"869 6th St, Seattle, WA 98101" +321445,Bose SoundSport Headphones,1,99.99,12/10/19 18:53,"787 10th St, Portland, OR 97035" +321446,USB-C Charging Cable,1,11.95,12/11/19 08:38,"573 Center St, Boston, MA 02215" +321447,27in FHD Monitor,1,149.99,12/29/19 13:16,"365 Park St, Atlanta, GA 30301" +321448,AA Batteries (4-pack),1,3.84,12/02/19 23:42,"127 West St, Boston, MA 02215" +321449,USB-C Charging Cable,1,11.95,12/31/19 17:58,"903 Cedar St, San Francisco, CA 94016" +321450,Wired Headphones,1,11.99,12/28/19 20:13,"498 Hill St, Austin, TX 73301" +321451,34in Ultrawide Monitor,1,379.99,12/16/19 11:27,"498 9th St, Austin, TX 73301" +321452,USB-C Charging Cable,1,11.95,12/31/19 19:41,"825 4th St, Los Angeles, CA 90001" +321453,iPhone,1,700,12/13/19 19:08,"109 Wilson St, Portland, OR 97035" +321454,AA Batteries (4-pack),4,3.84,12/22/19 19:37,"872 Lincoln St, Portland, ME 04101" +321455,Flatscreen TV,1,300,12/21/19 10:07,"624 Meadow St, San Francisco, CA 94016" +321456,27in 4K Gaming Monitor,1,389.99,12/15/19 09:12,"13 Washington St, Dallas, TX 75001" +321457,Wired Headphones,1,11.99,12/28/19 11:53,"129 14th St, Los Angeles, CA 90001" +321458,USB-C Charging Cable,1,11.95,12/21/19 14:14,"811 Elm St, San Francisco, CA 94016" +321459,Apple Airpods Headphones,1,150,12/07/19 18:48,"469 10th St, Seattle, WA 98101" +321460,Lightning Charging Cable,1,14.95,12/19/19 21:06,"565 2nd St, Portland, OR 97035" +321461,AAA Batteries (4-pack),1,2.99,12/19/19 20:54,"561 Jackson St, New York City, NY 10001" +321462,Bose SoundSport Headphones,1,99.99,12/24/19 13:14,"173 13th St, Boston, MA 02215" +321463,Bose SoundSport Headphones,1,99.99,12/17/19 21:40,"42 12th St, San Francisco, CA 94016" +321464,Flatscreen TV,1,300,12/31/19 21:14,"446 South St, Boston, MA 02215" +321465,AA Batteries (4-pack),1,3.84,12/18/19 15:09,"71 Cherry St, Los Angeles, CA 90001" +321466,Apple Airpods Headphones,1,150,12/20/19 13:35,"532 4th St, Portland, OR 97035" +321467,Vareebadd Phone,1,400,12/11/19 23:38,"388 2nd St, San Francisco, CA 94016" +321468,Wired Headphones,1,11.99,12/21/19 13:48,"162 Maple St, Los Angeles, CA 90001" +321469,Lightning Charging Cable,1,14.95,12/19/19 14:28,"42 Highland St, Los Angeles, CA 90001" +321470,iPhone,1,700,12/17/19 14:51,"921 2nd St, Boston, MA 02215" +321470,Lightning Charging Cable,1,14.95,12/17/19 14:51,"921 2nd St, Boston, MA 02215" +321471,Lightning Charging Cable,1,14.95,12/12/19 12:22,"700 West St, Los Angeles, CA 90001" +321472,AA Batteries (4-pack),2,3.84,12/29/19 06:55,"383 Highland St, San Francisco, CA 94016" +321473,Lightning Charging Cable,2,14.95,12/12/19 11:49,"547 14th St, Atlanta, GA 30301" +321474,Bose SoundSport Headphones,1,99.99,12/29/19 17:30,"907 Sunset St, San Francisco, CA 94016" +321475,USB-C Charging Cable,1,11.95,12/30/19 12:55,"477 River St, New York City, NY 10001" +321476,Wired Headphones,1,11.99,12/19/19 17:42,"501 Forest St, Los Angeles, CA 90001" +321477,Bose SoundSport Headphones,1,99.99,12/09/19 20:19,"580 Ridge St, New York City, NY 10001" +321478,27in 4K Gaming Monitor,1,389.99,12/15/19 10:47,"315 7th St, Portland, OR 97035" +321479,Bose SoundSport Headphones,1,99.99,12/14/19 20:06,"146 1st St, San Francisco, CA 94016" +321480,Macbook Pro Laptop,1,1700,12/20/19 11:18,"166 Lake St, Boston, MA 02215" +321481,USB-C Charging Cable,1,11.95,12/07/19 14:07,"895 12th St, Dallas, TX 75001" +321482,USB-C Charging Cable,1,11.95,12/03/19 19:08,"65 Lincoln St, New York City, NY 10001" +321483,AAA Batteries (4-pack),1,2.99,12/29/19 16:38,"827 Forest St, New York City, NY 10001" +321484,Flatscreen TV,1,300,12/24/19 13:32,"917 Park St, New York City, NY 10001" +321485,Lightning Charging Cable,1,14.95,12/20/19 11:43,"712 Elm St, San Francisco, CA 94016" +321486,USB-C Charging Cable,1,11.95,12/20/19 16:10,"77 Jefferson St, Austin, TX 73301" +321487,Lightning Charging Cable,1,14.95,12/06/19 09:54,"652 Cherry St, Boston, MA 02215" +321488,AAA Batteries (4-pack),1,2.99,12/19/19 17:24,"538 South St, Atlanta, GA 30301" +321489,AAA Batteries (4-pack),1,2.99,12/12/19 12:20,"695 Dogwood St, Dallas, TX 75001" +321490,Bose SoundSport Headphones,2,99.99,12/01/19 10:35,"621 2nd St, Seattle, WA 98101" +321491,Lightning Charging Cable,1,14.95,12/10/19 19:25,"45 Maple St, New York City, NY 10001" +321492,USB-C Charging Cable,1,11.95,12/05/19 13:52,"370 Elm St, New York City, NY 10001" +321493,USB-C Charging Cable,1,11.95,12/01/19 18:10,"787 12th St, Boston, MA 02215" +321494,Apple Airpods Headphones,1,150,12/22/19 14:01,"779 Forest St, Atlanta, GA 30301" +321495,27in 4K Gaming Monitor,1,389.99,12/21/19 13:19,"848 Sunset St, Atlanta, GA 30301" +321496,ThinkPad Laptop,1,999.99,12/14/19 15:14,"606 5th St, Los Angeles, CA 90001" +321497,AA Batteries (4-pack),1,3.84,12/19/19 11:28,"64 Chestnut St, San Francisco, CA 94016" +321498,Lightning Charging Cable,1,14.95,12/15/19 20:13,"490 Adams St, Los Angeles, CA 90001" +321499,Macbook Pro Laptop,1,1700,12/14/19 19:59,"883 Maple St, New York City, NY 10001" +321500,27in FHD Monitor,1,149.99,12/26/19 14:51,"534 Lakeview St, Dallas, TX 75001" +321501,Bose SoundSport Headphones,1,99.99,12/25/19 17:39,"698 Adams St, Dallas, TX 75001" +321502,USB-C Charging Cable,1,11.95,12/26/19 18:13,"468 Lakeview St, Seattle, WA 98101" +321503,AA Batteries (4-pack),2,3.84,12/13/19 10:57,"952 West St, Seattle, WA 98101" +321504,27in FHD Monitor,1,149.99,12/31/19 14:11,"26 Hickory St, Portland, OR 97035" +321505,34in Ultrawide Monitor,1,379.99,12/31/19 15:47,"32 4th St, San Francisco, CA 94016" +321506,Wired Headphones,1,11.99,12/20/19 16:33,"628 Jefferson St, San Francisco, CA 94016" +321507,Wired Headphones,1,11.99,12/07/19 23:33,"187 2nd St, San Francisco, CA 94016" +321508,AA Batteries (4-pack),1,3.84,12/12/19 15:16,"321 13th St, Los Angeles, CA 90001" +321509,Wired Headphones,1,11.99,12/09/19 20:11,"516 Johnson St, Dallas, TX 75001" +321510,USB-C Charging Cable,1,11.95,12/27/19 10:33,"468 Maple St, San Francisco, CA 94016" +321511,Bose SoundSport Headphones,1,99.99,12/15/19 17:13,"819 River St, San Francisco, CA 94016" +321512,27in 4K Gaming Monitor,1,389.99,12/31/19 20:14,"994 6th St, Seattle, WA 98101" +321513,Lightning Charging Cable,1,14.95,12/02/19 00:01,"922 South St, San Francisco, CA 94016" +321514,AAA Batteries (4-pack),2,2.99,12/25/19 21:11,"47 10th St, Austin, TX 73301" +321515,Wired Headphones,1,11.99,12/03/19 16:24,"398 Center St, Los Angeles, CA 90001" +321516,Wired Headphones,1,11.99,12/29/19 18:06,"911 Wilson St, Los Angeles, CA 90001" +,,,,, +321517,ThinkPad Laptop,1,999.99,12/03/19 10:46,"602 2nd St, San Francisco, CA 94016" +321518,Wired Headphones,1,11.99,12/17/19 15:05,"918 9th St, Boston, MA 02215" +321519,Bose SoundSport Headphones,1,99.99,12/10/19 18:49,"630 12th St, Los Angeles, CA 90001" +321520,27in FHD Monitor,1,149.99,12/23/19 14:34,"300 Jackson St, Atlanta, GA 30301" +321521,Wired Headphones,1,11.99,12/12/19 13:04,"659 Jackson St, Atlanta, GA 30301" +321522,27in 4K Gaming Monitor,1,389.99,12/16/19 15:45,"755 Sunset St, Portland, ME 04101" +321523,34in Ultrawide Monitor,1,379.99,12/16/19 22:20,"431 Adams St, New York City, NY 10001" +321524,ThinkPad Laptop,1,999.99,12/24/19 01:07,"83 14th St, Atlanta, GA 30301" +321525,27in 4K Gaming Monitor,1,389.99,12/11/19 11:42,"642 Cedar St, Dallas, TX 75001" +321526,iPhone,1,700,12/11/19 17:21,"63 Main St, Boston, MA 02215" +321527,AA Batteries (4-pack),1,3.84,12/05/19 23:42,"953 13th St, Portland, OR 97035" +321528,27in FHD Monitor,1,149.99,12/19/19 22:23,"471 Forest St, Los Angeles, CA 90001" +321529,Bose SoundSport Headphones,1,99.99,12/12/19 10:07,"46 Chestnut St, Dallas, TX 75001" +321530,27in 4K Gaming Monitor,1,389.99,12/22/19 08:42,"583 14th St, San Francisco, CA 94016" +321531,AA Batteries (4-pack),1,3.84,12/16/19 19:57,"353 Walnut St, Los Angeles, CA 90001" +321532,USB-C Charging Cable,1,11.95,12/07/19 19:21,"828 11th St, Atlanta, GA 30301" +321533,Lightning Charging Cable,1,14.95,12/07/19 14:02,"815 Jackson St, New York City, NY 10001" +321534,AAA Batteries (4-pack),1,2.99,12/09/19 18:00,"419 Cedar St, San Francisco, CA 94016" +321535,Google Phone,1,600,12/27/19 08:38,"221 Wilson St, Dallas, TX 75001" +321535,USB-C Charging Cable,1,11.95,12/27/19 08:38,"221 Wilson St, Dallas, TX 75001" +321536,iPhone,1,700,12/28/19 11:04,"372 12th St, Austin, TX 73301" +321537,ThinkPad Laptop,1,999.99,12/17/19 12:56,"178 9th St, Austin, TX 73301" +321538,Bose SoundSport Headphones,1,99.99,12/04/19 16:02,"25 South St, Atlanta, GA 30301" +321539,Wired Headphones,1,11.99,12/01/19 20:59,"674 Maple St, Portland, OR 97035" +321540,Bose SoundSport Headphones,1,99.99,12/09/19 04:21,"831 7th St, San Francisco, CA 94016" +321541,Wired Headphones,1,11.99,12/17/19 09:58,"330 Madison St, Boston, MA 02215" +321542,USB-C Charging Cable,1,11.95,12/12/19 14:33,"815 Wilson St, Los Angeles, CA 90001" +321543,Lightning Charging Cable,3,14.95,12/22/19 07:21,"50 Washington St, San Francisco, CA 94016" +321544,Lightning Charging Cable,1,14.95,12/09/19 17:54,"612 2nd St, San Francisco, CA 94016" +321545,Wired Headphones,1,11.99,12/26/19 09:58,"896 Madison St, New York City, NY 10001" +321545,27in FHD Monitor,1,149.99,12/26/19 09:58,"896 Madison St, New York City, NY 10001" +321546,AAA Batteries (4-pack),1,2.99,12/07/19 19:02,"821 1st St, Atlanta, GA 30301" +321547,27in FHD Monitor,1,149.99,12/05/19 21:47,"657 6th St, Los Angeles, CA 90001" +321548,AA Batteries (4-pack),2,3.84,12/17/19 11:08,"84 2nd St, Seattle, WA 98101" +321549,20in Monitor,1,109.99,12/03/19 18:08,"485 Church St, Boston, MA 02215" +321550,Lightning Charging Cable,1,14.95,12/08/19 10:30,"170 Ridge St, Los Angeles, CA 90001" +321551,USB-C Charging Cable,1,11.95,12/22/19 00:22,"192 6th St, San Francisco, CA 94016" +321552,Lightning Charging Cable,1,14.95,12/21/19 15:40,"77 Meadow St, Boston, MA 02215" +321553,34in Ultrawide Monitor,1,379.99,12/08/19 16:14,"639 Willow St, San Francisco, CA 94016" +321554,34in Ultrawide Monitor,1,379.99,12/02/19 11:44,"415 Dogwood St, New York City, NY 10001" +321555,Lightning Charging Cable,1,14.95,12/10/19 18:49,"755 South St, Austin, TX 73301" +321556,34in Ultrawide Monitor,1,379.99,12/25/19 17:06,"946 Walnut St, New York City, NY 10001" +321557,27in FHD Monitor,1,149.99,12/22/19 16:56,"906 Walnut St, Los Angeles, CA 90001" +321558,Flatscreen TV,1,300,12/13/19 19:33,"495 Wilson St, Atlanta, GA 30301" +321559,27in 4K Gaming Monitor,1,389.99,12/21/19 16:58,"641 Center St, San Francisco, CA 94016" +321560,AAA Batteries (4-pack),1,2.99,12/30/19 22:12,"158 Wilson St, Atlanta, GA 30301" +321561,Wired Headphones,1,11.99,12/19/19 08:00,"712 Lincoln St, Los Angeles, CA 90001" +321562,Bose SoundSport Headphones,1,99.99,12/29/19 18:20,"240 Ridge St, Dallas, TX 75001" +321563,20in Monitor,1,109.99,12/05/19 11:19,"954 West St, Atlanta, GA 30301" +321564,ThinkPad Laptop,1,999.99,12/02/19 15:54,"264 Jackson St, New York City, NY 10001" +321565,USB-C Charging Cable,1,11.95,12/03/19 12:52,"196 Cherry St, San Francisco, CA 94016" +321566,Wired Headphones,1,11.99,12/23/19 11:22,"251 Hickory St, Boston, MA 02215" +321567,Lightning Charging Cable,1,14.95,12/31/19 14:19,"106 Jefferson St, San Francisco, CA 94016" +321568,27in 4K Gaming Monitor,1,389.99,12/11/19 13:49,"175 Washington St, Los Angeles, CA 90001" +321569,Lightning Charging Cable,1,14.95,12/16/19 13:26,"764 Church St, Los Angeles, CA 90001" +321570,20in Monitor,1,109.99,12/04/19 07:01,"421 Cherry St, San Francisco, CA 94016" +321571,Flatscreen TV,1,300,12/09/19 10:28,"166 Meadow St, New York City, NY 10001" +321572,AA Batteries (4-pack),1,3.84,12/07/19 18:29,"2 Maple St, Seattle, WA 98101" +321573,Apple Airpods Headphones,1,150,12/08/19 15:55,"281 Hill St, Boston, MA 02215" +321574,Apple Airpods Headphones,1,150,12/25/19 19:40,"654 5th St, Austin, TX 73301" +321574,Wired Headphones,1,11.99,12/25/19 19:40,"654 5th St, Austin, TX 73301" +321575,AAA Batteries (4-pack),2,2.99,12/25/19 17:39,"467 Lake St, New York City, NY 10001" +321576,Lightning Charging Cable,1,14.95,12/16/19 20:40,"860 Main St, Boston, MA 02215" +321577,27in FHD Monitor,1,149.99,12/18/19 23:43,"307 Lincoln St, Boston, MA 02215" +321578,Wired Headphones,1,11.99,01/01/20 00:01,"76 Highland St, Los Angeles, CA 90001" +321579,Apple Airpods Headphones,1,150,12/13/19 14:01,"549 Lake St, San Francisco, CA 94016" +321580,Bose SoundSport Headphones,1,99.99,12/20/19 18:39,"412 River St, Austin, TX 73301" +321581,Apple Airpods Headphones,1,150,12/07/19 21:34,"876 12th St, San Francisco, CA 94016" +321582,Lightning Charging Cable,1,14.95,12/14/19 17:59,"481 Lake St, Atlanta, GA 30301" +321583,Wired Headphones,1,11.99,12/03/19 16:43,"448 Sunset St, Los Angeles, CA 90001" +321584,USB-C Charging Cable,1,11.95,12/10/19 17:43,"719 13th St, New York City, NY 10001" +321585,20in Monitor,1,109.99,12/19/19 18:54,"428 1st St, Boston, MA 02215" +321586,Wired Headphones,1,11.99,12/13/19 17:32,"54 10th St, Austin, TX 73301" +321587,USB-C Charging Cable,1,11.95,12/06/19 09:21,"230 8th St, Atlanta, GA 30301" +321588,Bose SoundSport Headphones,1,99.99,12/12/19 16:55,"43 5th St, Los Angeles, CA 90001" +321589,Wired Headphones,1,11.99,12/27/19 21:11,"164 4th St, Boston, MA 02215" +321590,AA Batteries (4-pack),1,3.84,12/20/19 18:14,"750 Washington St, Austin, TX 73301" +321591,Wired Headphones,1,11.99,12/26/19 19:08,"3 Main St, Los Angeles, CA 90001" +321592,USB-C Charging Cable,1,11.95,12/26/19 22:15,"932 Sunset St, Seattle, WA 98101" +321593,Wired Headphones,1,11.99,12/13/19 06:55,"581 West St, Portland, OR 97035" +321594,AA Batteries (4-pack),1,3.84,12/13/19 17:15,"146 Chestnut St, Dallas, TX 75001" +321595,AA Batteries (4-pack),1,3.84,12/03/19 11:40,"904 12th St, Portland, ME 04101" +321596,Lightning Charging Cable,1,14.95,12/30/19 01:37,"430 Elm St, Atlanta, GA 30301" +321597,20in Monitor,1,109.99,12/03/19 19:03,"441 4th St, Los Angeles, CA 90001" +321598,iPhone,1,700,12/29/19 08:04,"85 13th St, Seattle, WA 98101" +321599,Apple Airpods Headphones,1,150,12/05/19 12:09,"307 1st St, Dallas, TX 75001" +321600,USB-C Charging Cable,1,11.95,12/24/19 21:57,"775 Dogwood St, San Francisco, CA 94016" +321601,USB-C Charging Cable,1,11.95,12/04/19 14:38,"264 Cedar St, San Francisco, CA 94016" +321602,AAA Batteries (4-pack),1,2.99,12/05/19 14:32,"659 1st St, Austin, TX 73301" +321603,20in Monitor,1,109.99,12/28/19 13:14,"858 14th St, Atlanta, GA 30301" +321604,Apple Airpods Headphones,1,150,12/16/19 16:28,"530 11th St, Seattle, WA 98101" +321605,AA Batteries (4-pack),1,3.84,12/19/19 21:56,"136 6th St, Dallas, TX 75001" +321606,Lightning Charging Cable,1,14.95,12/13/19 20:50,"107 South St, San Francisco, CA 94016" +321607,AAA Batteries (4-pack),2,2.99,12/22/19 12:29,"958 Forest St, Los Angeles, CA 90001" +321608,Google Phone,1,600,12/16/19 19:27,"795 Forest St, San Francisco, CA 94016" +321609,Wired Headphones,1,11.99,12/05/19 15:03,"965 2nd St, San Francisco, CA 94016" +321610,Vareebadd Phone,1,400,12/05/19 00:38,"722 7th St, Boston, MA 02215" +321611,Apple Airpods Headphones,1,150,12/26/19 18:06,"276 Main St, San Francisco, CA 94016" +321612,Bose SoundSport Headphones,1,99.99,12/22/19 11:58,"294 13th St, Los Angeles, CA 90001" +321613,Wired Headphones,1,11.99,12/14/19 13:50,"232 Church St, Seattle, WA 98101" +321614,Lightning Charging Cable,1,14.95,12/31/19 19:58,"238 4th St, San Francisco, CA 94016" +321615,Bose SoundSport Headphones,1,99.99,12/04/19 17:02,"325 River St, Dallas, TX 75001" +321616,Wired Headphones,1,11.99,12/07/19 20:45,"659 North St, San Francisco, CA 94016" +321617,AA Batteries (4-pack),1,3.84,12/04/19 16:43,"546 West St, New York City, NY 10001" +321618,AAA Batteries (4-pack),1,2.99,12/15/19 01:15,"905 Lincoln St, Portland, OR 97035" +321619,Vareebadd Phone,1,400,12/23/19 19:17,"824 Forest St, Boston, MA 02215" +321619,Wired Headphones,1,11.99,12/23/19 19:17,"824 Forest St, Boston, MA 02215" +321620,Macbook Pro Laptop,1,1700,12/08/19 08:45,"318 4th St, Dallas, TX 75001" +321621,27in 4K Gaming Monitor,1,389.99,12/26/19 19:38,"893 Church St, San Francisco, CA 94016" +321622,AAA Batteries (4-pack),1,2.99,12/16/19 16:30,"434 Hill St, Los Angeles, CA 90001" +321623,Apple Airpods Headphones,1,150,12/30/19 10:31,"287 Cedar St, Portland, ME 04101" +321624,USB-C Charging Cable,2,11.95,12/08/19 10:56,"180 8th St, Atlanta, GA 30301" +321625,AAA Batteries (4-pack),2,2.99,12/06/19 20:50,"753 Cherry St, Seattle, WA 98101" +321626,20in Monitor,1,109.99,12/09/19 11:54,"728 Meadow St, Austin, TX 73301" +321627,AA Batteries (4-pack),1,3.84,12/14/19 01:29,"704 7th St, New York City, NY 10001" +321628,Bose SoundSport Headphones,1,99.99,12/19/19 20:09,"607 Lake St, New York City, NY 10001" +321629,Apple Airpods Headphones,1,150,12/15/19 22:32,"584 5th St, Boston, MA 02215" +321630,AAA Batteries (4-pack),1,2.99,12/10/19 22:06,"795 Cedar St, Boston, MA 02215" +321631,AA Batteries (4-pack),1,3.84,12/22/19 06:39,"201 Walnut St, New York City, NY 10001" +321632,Lightning Charging Cable,1,14.95,12/01/19 23:13,"383 Forest St, New York City, NY 10001" +321633,27in 4K Gaming Monitor,1,389.99,12/21/19 19:25,"681 Cherry St, San Francisco, CA 94016" +321634,AAA Batteries (4-pack),1,2.99,12/12/19 19:16,"169 Hickory St, Boston, MA 02215" +321635,AAA Batteries (4-pack),1,2.99,12/21/19 00:37,"44 Spruce St, San Francisco, CA 94016" +321636,Flatscreen TV,1,300,12/11/19 14:30,"959 Park St, New York City, NY 10001" +321637,Apple Airpods Headphones,1,150,12/17/19 17:12,"199 Wilson St, New York City, NY 10001" +321638,Wired Headphones,1,11.99,12/01/19 21:46,"963 12th St, San Francisco, CA 94016" +321639,Lightning Charging Cable,1,14.95,12/28/19 17:22,"851 Hickory St, Boston, MA 02215" +321640,Wired Headphones,1,11.99,12/02/19 19:50,"474 9th St, Atlanta, GA 30301" +321641,AAA Batteries (4-pack),4,2.99,12/18/19 20:35,"416 South St, Atlanta, GA 30301" +321642,27in 4K Gaming Monitor,1,389.99,12/26/19 09:07,"224 Johnson St, Boston, MA 02215" +321643,27in 4K Gaming Monitor,1,389.99,12/11/19 02:20,"563 Sunset St, New York City, NY 10001" +321644,AA Batteries (4-pack),1,3.84,12/16/19 14:07,"129 Meadow St, San Francisco, CA 94016" +321645,ThinkPad Laptop,1,999.99,12/08/19 15:42,"383 Meadow St, San Francisco, CA 94016" +321646,Lightning Charging Cable,1,14.95,12/23/19 20:31,"755 Highland St, Boston, MA 02215" +321647,Lightning Charging Cable,1,14.95,12/10/19 17:53,"477 10th St, Seattle, WA 98101" +321648,Bose SoundSport Headphones,1,99.99,12/06/19 12:09,"680 8th St, Dallas, TX 75001" +321649,27in 4K Gaming Monitor,1,389.99,12/03/19 09:08,"531 Cedar St, Los Angeles, CA 90001" +321650,Lightning Charging Cable,1,14.95,12/31/19 18:06,"49 Main St, New York City, NY 10001" +321651,Apple Airpods Headphones,1,150,12/11/19 18:04,"482 Lake St, San Francisco, CA 94016" +321652,Bose SoundSport Headphones,1,99.99,12/03/19 16:09,"467 Dogwood St, Atlanta, GA 30301" +321653,27in FHD Monitor,1,149.99,12/31/19 11:53,"512 Pine St, Portland, ME 04101" +321654,USB-C Charging Cable,1,11.95,12/20/19 17:55,"927 8th St, Los Angeles, CA 90001" +321655,AAA Batteries (4-pack),1,2.99,12/28/19 12:46,"743 Cedar St, Atlanta, GA 30301" +321656,34in Ultrawide Monitor,1,379.99,12/18/19 15:20,"550 North St, Boston, MA 02215" +321657,AA Batteries (4-pack),1,3.84,12/11/19 22:01,"180 9th St, Portland, OR 97035" +321658,USB-C Charging Cable,1,11.95,12/19/19 13:10,"990 8th St, Los Angeles, CA 90001" +321659,Google Phone,1,600,12/14/19 19:55,"755 Johnson St, Austin, TX 73301" +321660,AAA Batteries (4-pack),1,2.99,12/26/19 17:31,"534 West St, Los Angeles, CA 90001" +321661,USB-C Charging Cable,1,11.95,12/14/19 15:14,"596 Lakeview St, New York City, NY 10001" +321662,AA Batteries (4-pack),1,3.84,12/01/19 21:18,"447 Center St, Dallas, TX 75001" +321663,34in Ultrawide Monitor,1,379.99,12/30/19 14:33,"941 Madison St, Austin, TX 73301" +321664,Apple Airpods Headphones,1,150,12/24/19 10:58,"394 Elm St, Atlanta, GA 30301" +321665,AAA Batteries (4-pack),1,2.99,12/02/19 07:46,"9 6th St, Austin, TX 73301" +321666,Wired Headphones,1,11.99,12/17/19 18:44,"149 Adams St, San Francisco, CA 94016" +321667,27in 4K Gaming Monitor,1,389.99,12/09/19 17:02,"572 Hill St, San Francisco, CA 94016" +321668,27in 4K Gaming Monitor,1,389.99,12/16/19 23:08,"213 14th St, Seattle, WA 98101" +321669,AA Batteries (4-pack),1,3.84,12/17/19 19:35,"768 Willow St, New York City, NY 10001" +321670,Wired Headphones,1,11.99,12/27/19 19:14,"917 Madison St, Dallas, TX 75001" +321671,AA Batteries (4-pack),3,3.84,12/29/19 17:48,"462 6th St, Boston, MA 02215" +321672,AA Batteries (4-pack),1,3.84,12/06/19 14:05,"966 Madison St, Seattle, WA 98101" +321673,AAA Batteries (4-pack),1,2.99,12/01/19 22:54,"120 Forest St, Boston, MA 02215" +321674,Wired Headphones,1,11.99,12/24/19 17:04,"382 West St, New York City, NY 10001" +321675,AAA Batteries (4-pack),1,2.99,12/24/19 18:44,"268 Meadow St, New York City, NY 10001" +321676,Google Phone,1,600,12/19/19 10:13,"393 5th St, San Francisco, CA 94016" +321677,AAA Batteries (4-pack),2,2.99,12/14/19 11:29,"778 11th St, San Francisco, CA 94016" +321678,iPhone,1,700,12/05/19 18:41,"384 Johnson St, Los Angeles, CA 90001" +321679,USB-C Charging Cable,1,11.95,12/01/19 09:10,"538 Maple St, San Francisco, CA 94016" +321680,LG Washing Machine,1,600.0,12/27/19 19:30,"156 Adams St, Dallas, TX 75001" +321681,20in Monitor,1,109.99,12/23/19 22:37,"637 Church St, San Francisco, CA 94016" diff --git a/sales_data/Sales_February_2019.csv b/sales_data/Sales_February_2019.csv new file mode 100644 index 0000000..1528c37 --- /dev/null +++ b/sales_data/Sales_February_2019.csv @@ -0,0 +1,13060 @@ +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +159657,AAA Batteries (4-pack),2,2.99,02/11/19 18:04,"932 5th St, San Francisco, CA 94016" +159657,Wired Headphones,1,11.99,02/11/19 18:04,"932 5th St, San Francisco, CA 94016" +159658,Lightning Charging Cable,1,14.95,02/14/19 21:06,"738 West St, Atlanta, GA 30301" +159659,iPhone,1,700.0,02/01/19 15:35,"917 Hickory St, Atlanta, GA 30301" +159660,Apple Airpods Headphones,1,150.0,02/01/19 20:06,"461 Lake St, San Francisco, CA 94016" +159661,Macbook Pro Laptop,1,1700.0,02/16/19 10:20,"381 Hill St, Portland, OR 97035" +159662,20in Monitor,1,109.99,02/26/19 23:40,"784 Cedar St, San Francisco, CA 94016" +159663,Apple Airpods Headphones,1,150.0,02/12/19 18:44,"253 Jackson St, Austin, TX 73301" +159664,USB-C Charging Cable,1,11.95,02/07/19 01:00,"808 13th St, Dallas, TX 75001" +159665,Wired Headphones,1,11.99,02/04/19 18:23,"304 1st St, Seattle, WA 98101" +159666,LG Dryer,1,600.0,02/07/19 14:22,"233 2nd St, Los Angeles, CA 90001" +159667,AAA Batteries (4-pack),1,2.99,02/13/19 09:13,"72 Forest St, Boston, MA 02215" +159668,Apple Airpods Headphones,1,150.0,02/28/19 13:01,"192 Sunset St, San Francisco, CA 94016" +159668,USB-C Charging Cable,1,11.95,02/28/19 13:01,"192 Sunset St, San Francisco, CA 94016" +159669,Bose SoundSport Headphones,1,99.99,02/02/19 22:17,"45 Pine St, Boston, MA 02215" +159670,AA Batteries (4-pack),1,3.84,02/02/19 18:49,"280 Adams St, Austin, TX 73301" +159671,iPhone,1,700.0,02/24/19 21:00,"591 Madison St, Boston, MA 02215" +159672,AA Batteries (4-pack),1,3.84,02/27/19 09:47,"516 Pine St, Boston, MA 02215" +159673,Wired Headphones,1,11.99,02/21/19 20:11,"842 Johnson St, New York City, NY 10001" +159674,USB-C Charging Cable,1,11.95,02/01/19 18:47,"578 North St, Los Angeles, CA 90001" +159675,Bose SoundSport Headphones,1,99.99,02/18/19 17:30,"472 10th St, Atlanta, GA 30301" +159676,Lightning Charging Cable,1,14.95,02/24/19 07:42,"644 4th St, Seattle, WA 98101" +159677,Apple Airpods Headphones,1,150.0,02/03/19 16:54,"644 Sunset St, Boston, MA 02215" +159677,Macbook Pro Laptop,1,1700.0,02/03/19 16:54,"644 Sunset St, Boston, MA 02215" +159678,Apple Airpods Headphones,1,150.0,02/10/19 21:38,"469 Adams St, Atlanta, GA 30301" +159679,Wired Headphones,1,11.99,02/24/19 21:02,"334 4th St, Boston, MA 02215" +159680,USB-C Charging Cable,1,11.95,02/10/19 12:18,"665 Washington St, New York City, NY 10001" +159681,USB-C Charging Cable,1,11.95,02/14/19 12:54,"912 Center St, Los Angeles, CA 90001" +159682,Flatscreen TV,1,300.0,02/19/19 12:45,"134 Pine St, Los Angeles, CA 90001" +159683,AAA Batteries (4-pack),1,2.99,02/08/19 19:21,"137 River St, San Francisco, CA 94016" +159684,Apple Airpods Headphones,1,150.0,02/26/19 12:23,"720 Jefferson St, Atlanta, GA 30301" +159685,AAA Batteries (4-pack),2,2.99,02/19/19 21:09,"667 Ridge St, Los Angeles, CA 90001" +159686,Google Phone,1,600.0,02/07/19 21:15,"5 8th St, Los Angeles, CA 90001" +159687,AA Batteries (4-pack),2,3.84,02/17/19 20:18,"360 North St, San Francisco, CA 94016" +159688,USB-C Charging Cable,2,11.95,02/11/19 19:43,"993 Willow St, San Francisco, CA 94016" +159689,Apple Airpods Headphones,1,150.0,02/14/19 09:01,"487 Main St, Atlanta, GA 30301" +159690,AA Batteries (4-pack),1,3.84,02/11/19 10:24,"974 Wilson St, Seattle, WA 98101" +159691,iPhone,1,700.0,02/11/19 21:32,"385 Walnut St, Los Angeles, CA 90001" +159692,Wired Headphones,1,11.99,02/07/19 16:29,"872 Maple St, Austin, TX 73301" +159693,Bose SoundSport Headphones,1,99.99,02/24/19 17:46,"197 Highland St, Seattle, WA 98101" +159694,Lightning Charging Cable,1,14.95,02/09/19 10:03,"263 Madison St, San Francisco, CA 94016" +159695,Apple Airpods Headphones,1,150.0,02/02/19 00:19,"727 Dogwood St, New York City, NY 10001" +159696,AAA Batteries (4-pack),3,2.99,02/01/19 21:00,"400 Park St, New York City, NY 10001" +159697,Lightning Charging Cable,1,14.95,02/25/19 15:49,"44 7th St, New York City, NY 10001" +159698,USB-C Charging Cable,1,11.95,03/01/19 01:13,"913 Meadow St, New York City, NY 10001" +159699,AA Batteries (4-pack),1,3.84,02/13/19 18:19,"333 Jackson St, Boston, MA 02215" +159700,AAA Batteries (4-pack),1,2.99,02/23/19 11:44,"715 Adams St, New York City, NY 10001" +159701,AAA Batteries (4-pack),1,2.99,02/01/19 13:01,"249 11th St, San Francisco, CA 94016" +159702,Macbook Pro Laptop,1,1700.0,02/12/19 23:55,"118 Walnut St, Austin, TX 73301" +159703,Macbook Pro Laptop,1,1700.0,02/26/19 20:54,"782 4th St, San Francisco, CA 94016" +159704,Bose SoundSport Headphones,1,99.99,02/27/19 20:44,"971 Lincoln St, Los Angeles, CA 90001" +159705,Lightning Charging Cable,1,14.95,02/19/19 08:35,"233 Cherry St, New York City, NY 10001" +159706,USB-C Charging Cable,1,11.95,02/19/19 00:01,"590 Lake St, Seattle, WA 98101" +159707,34in Ultrawide Monitor,1,379.99,02/17/19 19:16,"130 North St, Los Angeles, CA 90001" +159708,Wired Headphones,1,11.99,02/07/19 10:11,"799 Meadow St, Los Angeles, CA 90001" +159708,AAA Batteries (4-pack),2,2.99,02/07/19 10:11,"799 Meadow St, Los Angeles, CA 90001" +159709,Lightning Charging Cable,1,14.95,02/25/19 16:33,"567 14th St, Los Angeles, CA 90001" +159710,AA Batteries (4-pack),1,3.84,02/23/19 13:17,"104 5th St, Austin, TX 73301" +159711,Apple Airpods Headphones,1,150.0,02/13/19 22:33,"509 Maple St, Los Angeles, CA 90001" +159712,Lightning Charging Cable,2,14.95,02/07/19 16:13,"433 Dogwood St, San Francisco, CA 94016" +159713,Macbook Pro Laptop,1,1700.0,02/07/19 15:53,"426 Jackson St, Portland, OR 97035" +159714,ThinkPad Laptop,1,999.99,02/21/19 00:22,"713 9th St, Portland, OR 97035" +159715,Apple Airpods Headphones,1,150.0,02/17/19 15:40,"240 Dogwood St, Los Angeles, CA 90001" +159716,27in 4K Gaming Monitor,1,389.99,02/23/19 23:33,"662 Ridge St, Seattle, WA 98101" +159717,Wired Headphones,1,11.99,02/22/19 21:09,"774 Hickory St, Los Angeles, CA 90001" +159718,Lightning Charging Cable,1,14.95,02/06/19 06:54,"784 Park St, San Francisco, CA 94016" +159719,Wired Headphones,1,11.99,02/07/19 07:55,"191 Hill St, Dallas, TX 75001" +159720,27in FHD Monitor,1,149.99,02/14/19 16:40,"503 Cedar St, Los Angeles, CA 90001" +159721,Macbook Pro Laptop,1,1700.0,02/12/19 17:55,"463 7th St, Seattle, WA 98101" +159722,34in Ultrawide Monitor,1,379.99,02/22/19 15:40,"78 Park St, San Francisco, CA 94016" +159723,AAA Batteries (4-pack),1,2.99,02/27/19 18:29,"404 Dogwood St, Seattle, WA 98101" +159724,Wired Headphones,1,11.99,02/25/19 11:58,"592 12th St, Boston, MA 02215" +159725,ThinkPad Laptop,1,999.99,02/10/19 17:55,"374 Maple St, Los Angeles, CA 90001" +159726,AA Batteries (4-pack),1,3.84,02/07/19 19:09,"130 14th St, Los Angeles, CA 90001" +159727,Apple Airpods Headphones,1,150.0,02/24/19 12:14,"560 Johnson St, Atlanta, GA 30301" +159728,AA Batteries (4-pack),1,3.84,02/10/19 08:32,"214 Jackson St, New York City, NY 10001" +159729,AA Batteries (4-pack),1,3.84,02/17/19 20:45,"742 8th St, Atlanta, GA 30301" +159730,Apple Airpods Headphones,1,150.0,02/12/19 14:09,"397 South St, Atlanta, GA 30301" +159731,Google Phone,1,600.0,02/12/19 17:40,"383 River St, Boston, MA 02215" +159731,USB-C Charging Cable,1,11.95,02/12/19 17:40,"383 River St, Boston, MA 02215" +159732,AA Batteries (4-pack),1,3.84,02/20/19 18:38,"518 11th St, Dallas, TX 75001" +159733,27in 4K Gaming Monitor,1,389.99,02/02/19 11:35,"588 Main St, San Francisco, CA 94016" +159734,Vareebadd Phone,1,400.0,02/12/19 17:14,"878 1st St, Los Angeles, CA 90001" +159735,AAA Batteries (4-pack),1,2.99,02/04/19 11:06,"346 Maple St, Atlanta, GA 30301" +159736,AAA Batteries (4-pack),1,2.99,02/10/19 22:35,"255 8th St, New York City, NY 10001" +159737,AA Batteries (4-pack),1,3.84,02/01/19 17:22,"460 Willow St, San Francisco, CA 94016" +159738,27in FHD Monitor,1,149.99,02/19/19 13:38,"904 Lake St, New York City, NY 10001" +159739,iPhone,1,700.0,02/16/19 15:05,"883 Chestnut St, Los Angeles, CA 90001" +159740,USB-C Charging Cable,1,11.95,02/15/19 17:22,"102 2nd St, Dallas, TX 75001" +159741,Google Phone,1,600.0,02/12/19 12:11,"12 Johnson St, Los Angeles, CA 90001" +159742,Bose SoundSport Headphones,1,99.99,02/22/19 15:10,"538 11th St, Los Angeles, CA 90001" +159743,Lightning Charging Cable,1,14.95,02/23/19 03:09,"489 2nd St, Seattle, WA 98101" +159744,AAA Batteries (4-pack),2,2.99,02/25/19 16:51,"303 Lakeview St, Atlanta, GA 30301" +159745,27in 4K Gaming Monitor,1,389.99,02/07/19 11:14,"41 North St, Dallas, TX 75001" +159746,AA Batteries (4-pack),1,3.84,02/02/19 21:58,"15 Hickory St, Los Angeles, CA 90001" +159747,Apple Airpods Headphones,1,150.0,02/02/19 18:46,"596 Wilson St, Atlanta, GA 30301" +159748,Apple Airpods Headphones,1,150.0,02/22/19 11:37,"915 Jackson St, Los Angeles, CA 90001" +159749,Lightning Charging Cable,1,14.95,02/08/19 00:17,"768 Cedar St, San Francisco, CA 94016" +159750,AAA Batteries (4-pack),1,2.99,02/17/19 10:05,"378 Forest St, New York City, NY 10001" +159751,AAA Batteries (4-pack),2,2.99,02/19/19 12:57,"504 Church St, Portland, OR 97035" +159752,AAA Batteries (4-pack),1,2.99,02/14/19 21:58,"95 10th St, Dallas, TX 75001" +159753,USB-C Charging Cable,1,11.95,02/13/19 08:30,"994 13th St, New York City, NY 10001" +159754,iPhone,1,700.0,02/01/19 08:39,"842 Main St, Boston, MA 02215" +159755,Wired Headphones,1,11.99,02/09/19 02:46,"31 Lake St, Atlanta, GA 30301" +159756,20in Monitor,1,109.99,02/02/19 23:12,"935 South St, Los Angeles, CA 90001" +159757,Google Phone,1,600.0,02/09/19 09:58,"271 1st St, San Francisco, CA 94016" +159758,Macbook Pro Laptop,1,1700.0,02/16/19 09:37,"446 13th St, Los Angeles, CA 90001" +159759,Apple Airpods Headphones,1,150.0,02/11/19 13:25,"293 Cherry St, Atlanta, GA 30301" +159760,AA Batteries (4-pack),1,3.84,02/13/19 05:56,"670 Walnut St, Dallas, TX 75001" +159761,Bose SoundSport Headphones,1,99.99,02/06/19 09:48,"426 2nd St, Boston, MA 02215" +159762,27in FHD Monitor,1,149.99,02/09/19 19:49,"174 Cedar St, Atlanta, GA 30301" +159763,Bose SoundSport Headphones,1,99.99,02/16/19 17:10,"130 10th St, Dallas, TX 75001" +159764,Macbook Pro Laptop,1,1700.0,02/24/19 14:29,"496 Highland St, Seattle, WA 98101" +159765,Vareebadd Phone,1,400.0,02/02/19 13:55,"467 Chestnut St, Dallas, TX 75001" +159766,Apple Airpods Headphones,1,150.0,02/17/19 21:22,"840 13th St, New York City, NY 10001" +159767,Apple Airpods Headphones,1,150.0,02/05/19 20:48,"437 4th St, Portland, OR 97035" +159768,LG Washing Machine,1,600.0,02/13/19 17:30,"128 1st St, Atlanta, GA 30301" +159769,Bose SoundSport Headphones,1,99.99,02/25/19 21:38,"251 Madison St, New York City, NY 10001" +159770,Wired Headphones,1,11.99,02/16/19 07:42,"977 5th St, Dallas, TX 75001" +159771,Flatscreen TV,1,300.0,02/11/19 17:48,"912 7th St, New York City, NY 10001" +159772,AAA Batteries (4-pack),1,2.99,02/26/19 10:33,"201 Jackson St, San Francisco, CA 94016" +159773,27in FHD Monitor,1,149.99,02/18/19 20:53,"654 North St, New York City, NY 10001" +159774,Apple Airpods Headphones,1,150.0,02/17/19 21:23,"903 Maple St, Boston, MA 02215" +159775,Apple Airpods Headphones,1,150.0,02/25/19 21:22,"627 Hill St, San Francisco, CA 94016" +159776,Apple Airpods Headphones,1,150.0,02/24/19 18:30,"636 8th St, Los Angeles, CA 90001" +159777,AA Batteries (4-pack),1,3.84,02/11/19 08:49,"306 Lakeview St, San Francisco, CA 94016" +159778,USB-C Charging Cable,1,11.95,02/05/19 21:38,"97 Pine St, Boston, MA 02215" +159779,Apple Airpods Headphones,1,150.0,02/18/19 10:04,"373 5th St, Dallas, TX 75001" +159780,27in FHD Monitor,1,149.99,02/17/19 13:31,"934 Maple St, Dallas, TX 75001" +159781,Lightning Charging Cable,1,14.95,02/04/19 07:08,"656 4th St, San Francisco, CA 94016" +159782,Apple Airpods Headphones,1,150.0,02/10/19 22:30,"400 South St, Portland, OR 97035" +159783,AA Batteries (4-pack),2,3.84,02/08/19 18:55,"154 6th St, San Francisco, CA 94016" +159784,Wired Headphones,1,11.99,02/20/19 13:04,"445 Church St, San Francisco, CA 94016" +159785,AA Batteries (4-pack),1,3.84,02/10/19 01:30,"886 Dogwood St, New York City, NY 10001" +159786,AAA Batteries (4-pack),1,2.99,02/08/19 10:18,"828 Washington St, Atlanta, GA 30301" +159786,20in Monitor,1,109.99,02/08/19 10:18,"828 Washington St, Atlanta, GA 30301" +159787,Wired Headphones,1,11.99,02/17/19 19:57,"215 Ridge St, New York City, NY 10001" +159788,Apple Airpods Headphones,1,150.0,02/21/19 12:08,"320 Park St, New York City, NY 10001" +159789,AA Batteries (4-pack),1,3.84,02/02/19 11:05,"832 Elm St, Boston, MA 02215" +159790,AAA Batteries (4-pack),1,2.99,02/26/19 15:18,"561 West St, Dallas, TX 75001" +159791,USB-C Charging Cable,2,11.95,02/06/19 19:42,"979 13th St, Boston, MA 02215" +159792,AAA Batteries (4-pack),3,2.99,02/22/19 05:16,"75 Madison St, Portland, OR 97035" +159793,AA Batteries (4-pack),1,3.84,02/13/19 14:28,"211 11th St, New York City, NY 10001" +159794,Wired Headphones,1,11.99,02/11/19 14:29,"865 Sunset St, Atlanta, GA 30301" +159795,AAA Batteries (4-pack),1,2.99,02/23/19 13:31,"30 5th St, New York City, NY 10001" +159796,Macbook Pro Laptop,1,1700.0,02/28/19 22:49,"476 Spruce St, San Francisco, CA 94016" +159797,20in Monitor,1,109.99,02/03/19 10:12,"912 Dogwood St, Dallas, TX 75001" +159798,Macbook Pro Laptop,1,1700.0,03/01/19 01:36,"796 Washington St, Los Angeles, CA 90001" +159799,AA Batteries (4-pack),2,3.84,02/07/19 13:52,"482 Walnut St, San Francisco, CA 94016" +159800,USB-C Charging Cable,1,11.95,02/01/19 21:09,"881 Chestnut St, Boston, MA 02215" +159801,AAA Batteries (4-pack),1,2.99,02/22/19 18:05,"95 Hill St, San Francisco, CA 94016" +159802,27in FHD Monitor,1,149.99,02/27/19 20:51,"667 Cherry St, Seattle, WA 98101" +159803,Macbook Pro Laptop,1,1700.0,02/25/19 18:12,"204 Wilson St, San Francisco, CA 94016" +159804,Apple Airpods Headphones,1,150.0,02/01/19 13:28,"579 Walnut St, San Francisco, CA 94016" +159805,Lightning Charging Cable,1,14.95,02/22/19 16:40,"322 River St, Los Angeles, CA 90001" +159806,Macbook Pro Laptop,1,1700.0,02/24/19 21:32,"944 9th St, Dallas, TX 75001" +159807,Apple Airpods Headphones,1,150.0,02/15/19 18:51,"441 Cherry St, Los Angeles, CA 90001" +159808,Bose SoundSport Headphones,1,99.99,02/10/19 09:05,"796 West St, San Francisco, CA 94016" +159808,Lightning Charging Cable,1,14.95,02/10/19 09:05,"796 West St, San Francisco, CA 94016" +159809,Flatscreen TV,1,300.0,02/06/19 17:21,"604 Pine St, San Francisco, CA 94016" +159810,Bose SoundSport Headphones,1,99.99,02/18/19 16:40,"774 Church St, Seattle, WA 98101" +159811,AA Batteries (4-pack),2,3.84,02/25/19 11:30,"624 Hickory St, Portland, ME 04101" +159812,AAA Batteries (4-pack),1,2.99,02/06/19 10:15,"694 Chestnut St, San Francisco, CA 94016" +159812,27in 4K Gaming Monitor,1,389.99,02/06/19 10:15,"694 Chestnut St, San Francisco, CA 94016" +159813,27in 4K Gaming Monitor,1,389.99,02/20/19 22:17,"765 Maple St, Seattle, WA 98101" +159814,Lightning Charging Cable,1,14.95,02/17/19 21:12,"253 Wilson St, Boston, MA 02215" +159815,USB-C Charging Cable,1,11.95,02/24/19 19:38,"83 South St, Seattle, WA 98101" +159816,Flatscreen TV,1,300.0,02/02/19 13:59,"876 Sunset St, New York City, NY 10001" +159817,Macbook Pro Laptop,1,1700.0,02/03/19 21:19,"82 Pine St, San Francisco, CA 94016" +159818,34in Ultrawide Monitor,1,379.99,02/22/19 11:51,"716 Cherry St, Seattle, WA 98101" +159819,iPhone,1,700.0,02/02/19 12:36,"578 Jefferson St, New York City, NY 10001" +159820,AA Batteries (4-pack),1,3.84,02/18/19 20:07,"820 1st St, Seattle, WA 98101" +159821,Lightning Charging Cable,1,14.95,02/21/19 00:36,"926 Forest St, Los Angeles, CA 90001" +159822,20in Monitor,1,109.99,02/28/19 10:52,"82 Pine St, Portland, OR 97035" +159823,AA Batteries (4-pack),4,3.84,02/18/19 12:09,"309 Johnson St, Boston, MA 02215" +159824,AA Batteries (4-pack),1,3.84,02/11/19 21:48,"440 Adams St, Atlanta, GA 30301" +159825,Wired Headphones,1,11.99,02/22/19 08:14,"38 6th St, Los Angeles, CA 90001" +159826,AA Batteries (4-pack),1,3.84,02/06/19 19:39,"98 Willow St, Dallas, TX 75001" +159827,AAA Batteries (4-pack),1,2.99,02/03/19 17:54,"434 Hill St, Dallas, TX 75001" +159828,LG Washing Machine,1,600.0,02/19/19 13:29,"195 Willow St, Los Angeles, CA 90001" +159829,AAA Batteries (4-pack),2,2.99,02/10/19 21:43,"381 6th St, San Francisco, CA 94016" +159830,Lightning Charging Cable,1,14.95,02/25/19 11:15,"404 10th St, New York City, NY 10001" +159831,USB-C Charging Cable,1,11.95,02/02/19 20:29,"649 Spruce St, New York City, NY 10001" +159832,Lightning Charging Cable,2,14.95,02/20/19 20:54,"484 2nd St, San Francisco, CA 94016" +159833,27in FHD Monitor,1,149.99,02/08/19 21:15,"795 Walnut St, Boston, MA 02215" +159834,34in Ultrawide Monitor,1,379.99,02/17/19 02:19,"810 10th St, New York City, NY 10001" +159835,Flatscreen TV,1,300.0,02/20/19 20:56,"298 Adams St, New York City, NY 10001" +159836,27in FHD Monitor,1,149.99,02/18/19 14:11,"684 Main St, Portland, OR 97035" +159837,Wired Headphones,3,11.99,02/25/19 19:49,"741 5th St, Los Angeles, CA 90001" +159838,AA Batteries (4-pack),2,3.84,02/23/19 09:09,"755 Walnut St, Portland, OR 97035" +159839,34in Ultrawide Monitor,1,379.99,02/17/19 21:59,"448 Elm St, Los Angeles, CA 90001" +159840,Wired Headphones,1,11.99,02/25/19 14:09,"957 Jefferson St, Los Angeles, CA 90001" +159841,Lightning Charging Cable,3,14.95,02/06/19 12:27,"995 Sunset St, New York City, NY 10001" +159842,AAA Batteries (4-pack),1,2.99,02/27/19 20:00,"141 Dogwood St, Seattle, WA 98101" +159843,Wired Headphones,1,11.99,02/15/19 12:41,"568 2nd St, San Francisco, CA 94016" +159844,AA Batteries (4-pack),1,3.84,02/08/19 16:28,"303 7th St, Dallas, TX 75001" +159844,USB-C Charging Cable,1,11.95,02/08/19 16:28,"303 7th St, Dallas, TX 75001" +159845,AAA Batteries (4-pack),4,2.99,02/02/19 10:28,"163 Cherry St, New York City, NY 10001" +159846,USB-C Charging Cable,2,11.95,02/11/19 11:58,"197 Elm St, Portland, OR 97035" +159847,Wired Headphones,3,11.99,02/07/19 12:06,"219 Wilson St, San Francisco, CA 94016" +159848,USB-C Charging Cable,1,11.95,02/04/19 22:53,"18 Walnut St, Atlanta, GA 30301" +159849,Google Phone,1,600.0,02/20/19 06:50,"727 Church St, San Francisco, CA 94016" +159850,Wired Headphones,1,11.99,02/01/19 12:36,"276 Dogwood St, Boston, MA 02215" +159851,iPhone,1,700.0,02/28/19 21:42,"827 Jackson St, New York City, NY 10001" +159852,AA Batteries (4-pack),1,3.84,02/12/19 14:40,"493 Park St, San Francisco, CA 94016" +159853,Wired Headphones,1,11.99,02/02/19 15:31,"425 Forest St, Boston, MA 02215" +159854,AA Batteries (4-pack),1,3.84,02/28/19 15:48,"115 Center St, Los Angeles, CA 90001" +159855,Lightning Charging Cable,1,14.95,02/03/19 11:12,"356 Sunset St, Los Angeles, CA 90001" +159856,Bose SoundSport Headphones,1,99.99,02/19/19 22:35,"261 Cedar St, New York City, NY 10001" +159857,27in FHD Monitor,1,149.99,02/25/19 18:58,"185 14th St, Los Angeles, CA 90001" +159858,34in Ultrawide Monitor,1,379.99,02/21/19 15:24,"965 Park St, Dallas, TX 75001" +159859,ThinkPad Laptop,1,999.99,02/19/19 06:59,"376 Wilson St, Austin, TX 73301" +159860,Lightning Charging Cable,1,14.95,02/17/19 23:16,"709 Ridge St, Portland, OR 97035" +159861,Google Phone,1,600.0,02/02/19 09:44,"289 8th St, Austin, TX 73301" +159862,iPhone,1,700.0,02/16/19 11:18,"827 Ridge St, Boston, MA 02215" +159863,iPhone,1,700.0,02/13/19 19:41,"929 6th St, Austin, TX 73301" +159864,AAA Batteries (4-pack),2,2.99,02/15/19 00:05,"673 14th St, Portland, OR 97035" +159865,AAA Batteries (4-pack),1,2.99,02/26/19 16:58,"144 10th St, Portland, OR 97035" +159866,Wired Headphones,1,11.99,02/14/19 14:41,"798 Lakeview St, San Francisco, CA 94016" +159867,AAA Batteries (4-pack),3,2.99,02/08/19 19:04,"387 Forest St, New York City, NY 10001" +159868,34in Ultrawide Monitor,1,379.99,02/13/19 23:14,"821 Cherry St, Boston, MA 02215" +159869,AAA Batteries (4-pack),1,2.99,02/16/19 13:26,"582 Hill St, Boston, MA 02215" +159870,AAA Batteries (4-pack),1,2.99,02/18/19 20:19,"30 Chestnut St, Seattle, WA 98101" +159871,Wired Headphones,1,11.99,02/01/19 23:34,"860 6th St, Boston, MA 02215" +159872,AAA Batteries (4-pack),2,2.99,02/20/19 22:23,"299 Hickory St, San Francisco, CA 94016" +159873,Lightning Charging Cable,2,14.95,02/25/19 01:23,"425 Elm St, New York City, NY 10001" +159874,AAA Batteries (4-pack),1,2.99,02/02/19 15:32,"592 Hill St, Austin, TX 73301" +159874,Wired Headphones,1,11.99,02/02/19 15:32,"592 Hill St, Austin, TX 73301" +159875,AAA Batteries (4-pack),1,2.99,02/16/19 08:38,"67 Dogwood St, Los Angeles, CA 90001" +159876,AA Batteries (4-pack),2,3.84,02/23/19 18:18,"93 Park St, Portland, OR 97035" +159877,27in FHD Monitor,1,149.99,02/04/19 23:11,"972 North St, Boston, MA 02215" +159878,AAA Batteries (4-pack),1,2.99,02/06/19 21:52,"486 River St, Boston, MA 02215" +159879,Lightning Charging Cable,1,14.95,02/20/19 17:48,"842 Dogwood St, Boston, MA 02215" +159879,AA Batteries (4-pack),1,3.84,02/20/19 17:48,"842 Dogwood St, Boston, MA 02215" +159880,Lightning Charging Cable,1,14.95,02/02/19 12:29,"327 Hickory St, San Francisco, CA 94016" +159881,Bose SoundSport Headphones,1,99.99,02/17/19 22:01,"444 5th St, Portland, OR 97035" +159882,Bose SoundSport Headphones,1,99.99,02/27/19 13:30,"565 Main St, San Francisco, CA 94016" +159883,Google Phone,1,600.0,02/11/19 10:50,"981 Chestnut St, New York City, NY 10001" +159884,Macbook Pro Laptop,1,1700.0,02/27/19 19:14,"960 Maple St, Dallas, TX 75001" +159885,Apple Airpods Headphones,1,150.0,02/17/19 15:37,"215 14th St, Austin, TX 73301" +159886,USB-C Charging Cable,1,11.95,02/14/19 15:52,"13 Cedar St, Portland, OR 97035" +159887,27in 4K Gaming Monitor,1,389.99,02/22/19 21:35,"897 Hickory St, Atlanta, GA 30301" +159888,USB-C Charging Cable,1,11.95,02/12/19 19:57,"354 6th St, Los Angeles, CA 90001" +159889,27in FHD Monitor,1,149.99,02/13/19 10:50,"300 North St, San Francisco, CA 94016" +159890,iPhone,1,700.0,02/04/19 13:00,"842 Madison St, San Francisco, CA 94016" +159891,Bose SoundSport Headphones,1,99.99,02/22/19 06:41,"669 1st St, Los Angeles, CA 90001" +159892,20in Monitor,1,109.99,02/09/19 20:14,"650 8th St, Portland, ME 04101" +159893,20in Monitor,1,109.99,02/21/19 16:43,"667 Highland St, Boston, MA 02215" +159894,Macbook Pro Laptop,1,1700.0,02/04/19 19:49,"456 5th St, San Francisco, CA 94016" +159895,USB-C Charging Cable,1,11.95,02/19/19 18:02,"965 Center St, San Francisco, CA 94016" +159896,Lightning Charging Cable,1,14.95,02/21/19 18:14,"678 Chestnut St, Portland, OR 97035" +159897,Wired Headphones,4,11.99,02/25/19 09:03,"415 5th St, San Francisco, CA 94016" +159898,Wired Headphones,2,11.99,02/09/19 14:06,"977 Main St, Austin, TX 73301" +159899,Wired Headphones,3,11.99,02/01/19 09:25,"299 Washington St, Seattle, WA 98101" +159900,LG Washing Machine,1,600.0,02/12/19 16:25,"808 10th St, San Francisco, CA 94016" +159901,USB-C Charging Cable,1,11.95,02/03/19 18:16,"162 Walnut St, San Francisco, CA 94016" +159902,USB-C Charging Cable,1,11.95,02/25/19 06:48,"318 Highland St, Seattle, WA 98101" +159903,Bose SoundSport Headphones,1,99.99,02/04/19 18:31,"631 5th St, New York City, NY 10001" +159904,AAA Batteries (4-pack),1,2.99,02/20/19 20:54,"873 Forest St, Dallas, TX 75001" +159905,Wired Headphones,2,11.99,02/03/19 19:47,"235 Hickory St, New York City, NY 10001" +159906,Lightning Charging Cable,1,14.95,02/27/19 12:49,"412 1st St, Boston, MA 02215" +159907,Vareebadd Phone,1,400.0,02/18/19 23:24,"978 Pine St, San Francisco, CA 94016" +159907,USB-C Charging Cable,1,11.95,02/18/19 23:24,"978 Pine St, San Francisco, CA 94016" +159908,Lightning Charging Cable,1,14.95,02/23/19 09:53,"933 Lakeview St, Atlanta, GA 30301" +159909,Wired Headphones,1,11.99,02/17/19 14:30,"993 South St, Los Angeles, CA 90001" +159910,Lightning Charging Cable,1,14.95,02/06/19 12:47,"912 14th St, Dallas, TX 75001" +159911,27in FHD Monitor,1,149.99,02/10/19 12:45,"592 River St, San Francisco, CA 94016" +159912,AAA Batteries (4-pack),1,2.99,02/03/19 01:23,"238 Washington St, Atlanta, GA 30301" +159913,Lightning Charging Cable,1,14.95,02/08/19 23:37,"74 Willow St, San Francisco, CA 94016" +159914,AA Batteries (4-pack),2,3.84,02/15/19 16:00,"165 Elm St, Portland, OR 97035" +159915,Lightning Charging Cable,1,14.95,02/16/19 01:10,"50 13th St, San Francisco, CA 94016" +159916,Wired Headphones,1,11.99,02/03/19 09:11,"187 Washington St, Dallas, TX 75001" +159917,AAA Batteries (4-pack),1,2.99,02/28/19 22:24,"402 Pine St, Seattle, WA 98101" +159918,Apple Airpods Headphones,1,150.0,02/09/19 12:49,"325 Adams St, Boston, MA 02215" +159919,AA Batteries (4-pack),1,3.84,02/18/19 13:58,"563 6th St, New York City, NY 10001" +159920,USB-C Charging Cable,1,11.95,02/02/19 09:11,"127 Johnson St, New York City, NY 10001" +159921,Lightning Charging Cable,1,14.95,02/10/19 16:29,"612 Cherry St, Boston, MA 02215" +159922,Apple Airpods Headphones,1,150.0,02/27/19 13:08,"358 Hill St, Dallas, TX 75001" +159923,Apple Airpods Headphones,1,150.0,02/04/19 17:33,"166 Lake St, Atlanta, GA 30301" +159924,Wired Headphones,1,11.99,02/19/19 22:55,"42 2nd St, Portland, OR 97035" +159925,Wired Headphones,1,11.99,02/04/19 10:15,"71 Adams St, San Francisco, CA 94016" +159926,Apple Airpods Headphones,1,150.0,02/08/19 14:21,"262 10th St, New York City, NY 10001" +159927,Google Phone,1,600.0,02/13/19 14:13,"878 14th St, Portland, OR 97035" +159928,AA Batteries (4-pack),3,3.84,02/18/19 14:11,"373 South St, San Francisco, CA 94016" +159929,AAA Batteries (4-pack),2,2.99,02/23/19 11:28,"385 Washington St, San Francisco, CA 94016" +159930,AAA Batteries (4-pack),3,2.99,02/20/19 20:03,"692 12th St, Portland, OR 97035" +159931,ThinkPad Laptop,1,999.99,02/15/19 16:15,"402 Hill St, Los Angeles, CA 90001" +159932,Lightning Charging Cable,1,14.95,02/02/19 21:28,"680 10th St, Dallas, TX 75001" +159933,Wired Headphones,2,11.99,02/09/19 16:31,"341 Center St, San Francisco, CA 94016" +159934,20in Monitor,1,109.99,02/05/19 21:23,"574 Madison St, New York City, NY 10001" +159935,Wired Headphones,1,11.99,02/15/19 12:47,"396 Washington St, San Francisco, CA 94016" +159936,Wired Headphones,1,11.99,02/12/19 18:46,"731 Forest St, Seattle, WA 98101" +159937,USB-C Charging Cable,1,11.95,02/18/19 11:43,"745 West St, Los Angeles, CA 90001" +159938,Bose SoundSport Headphones,1,99.99,02/18/19 22:46,"245 Meadow St, Los Angeles, CA 90001" +159939,Lightning Charging Cable,1,14.95,02/18/19 21:27,"679 Jackson St, Seattle, WA 98101" +159940,Bose SoundSport Headphones,1,99.99,02/19/19 17:54,"272 Cherry St, Los Angeles, CA 90001" +159941,Lightning Charging Cable,1,14.95,02/10/19 22:11,"371 South St, New York City, NY 10001" +159942,USB-C Charging Cable,1,11.95,02/14/19 10:15,"660 Hickory St, Dallas, TX 75001" +159943,USB-C Charging Cable,1,11.95,02/13/19 16:23,"916 South St, Los Angeles, CA 90001" +159943,AAA Batteries (4-pack),1,2.99,02/13/19 16:23,"916 South St, Los Angeles, CA 90001" +159944,Bose SoundSport Headphones,1,99.99,02/13/19 15:37,"156 Elm St, Dallas, TX 75001" +159945,Wired Headphones,1,11.99,02/23/19 19:44,"52 4th St, Los Angeles, CA 90001" +159946,USB-C Charging Cable,1,11.95,02/21/19 15:29,"522 Elm St, Los Angeles, CA 90001" +159947,Google Phone,1,600.0,02/16/19 06:26,"562 Washington St, Atlanta, GA 30301" +159948,iPhone,1,700.0,02/11/19 22:25,"924 Center St, Boston, MA 02215" +159948,Wired Headphones,1,11.99,02/11/19 22:25,"924 Center St, Boston, MA 02215" +159949,AA Batteries (4-pack),1,3.84,02/23/19 22:58,"78 Center St, New York City, NY 10001" +159950,20in Monitor,1,109.99,02/11/19 13:40,"191 Walnut St, Boston, MA 02215" +159951,USB-C Charging Cable,1,11.95,02/04/19 14:31,"307 Wilson St, New York City, NY 10001" +159952,Apple Airpods Headphones,1,150.0,02/09/19 14:00,"397 South St, Portland, OR 97035" +159953,iPhone,1,700.0,02/25/19 10:00,"877 Meadow St, San Francisco, CA 94016" +159953,Wired Headphones,1,11.99,02/25/19 10:00,"877 Meadow St, San Francisco, CA 94016" +159954,27in 4K Gaming Monitor,1,389.99,02/13/19 20:18,"125 11th St, Los Angeles, CA 90001" +159955,AA Batteries (4-pack),1,3.84,02/06/19 12:24,"354 Sunset St, New York City, NY 10001" +159956,Bose SoundSport Headphones,1,99.99,02/28/19 17:20,"152 Church St, Los Angeles, CA 90001" +159957,AAA Batteries (4-pack),2,2.99,02/12/19 02:01,"821 Madison St, San Francisco, CA 94016" +159958,Apple Airpods Headphones,1,150.0,02/06/19 19:18,"228 Elm St, San Francisco, CA 94016" +159959,Lightning Charging Cable,1,14.95,02/22/19 14:05,"315 North St, Los Angeles, CA 90001" +159960,USB-C Charging Cable,1,11.95,02/18/19 10:59,"181 Hickory St, Seattle, WA 98101" +159961,Wired Headphones,1,11.99,02/13/19 09:28,"156 Wilson St, Los Angeles, CA 90001" +159962,Wired Headphones,1,11.99,02/05/19 12:45,"548 14th St, Los Angeles, CA 90001" +159963,20in Monitor,1,109.99,02/14/19 13:49,"456 Hickory St, Austin, TX 73301" +159964,34in Ultrawide Monitor,1,379.99,02/10/19 02:07,"510 11th St, San Francisco, CA 94016" +159965,USB-C Charging Cable,1,11.95,02/02/19 21:46,"253 Walnut St, San Francisco, CA 94016" +159966,USB-C Charging Cable,1,11.95,02/25/19 08:26,"696 Hill St, Portland, OR 97035" +159967,Lightning Charging Cable,1,14.95,02/06/19 14:16,"943 1st St, Dallas, TX 75001" +159968,iPhone,1,700.0,02/03/19 11:16,"559 Chestnut St, Dallas, TX 75001" +159968,Lightning Charging Cable,1,14.95,02/03/19 11:16,"559 Chestnut St, Dallas, TX 75001" +159969,Apple Airpods Headphones,1,150.0,02/08/19 14:02,"56 Center St, Boston, MA 02215" +159970,USB-C Charging Cable,1,11.95,02/06/19 14:30,"543 South St, Atlanta, GA 30301" +159971,Lightning Charging Cable,1,14.95,02/26/19 08:18,"452 14th St, Austin, TX 73301" +159972,Lightning Charging Cable,1,14.95,02/18/19 19:57,"421 4th St, Boston, MA 02215" +159973,ThinkPad Laptop,1,999.99,02/21/19 13:41,"670 9th St, Austin, TX 73301" +159974,Wired Headphones,1,11.99,02/13/19 19:54,"597 Walnut St, Portland, OR 97035" +159975,27in FHD Monitor,1,149.99,02/18/19 21:15,"671 6th St, Seattle, WA 98101" +159976,AAA Batteries (4-pack),1,2.99,02/22/19 20:59,"194 Willow St, San Francisco, CA 94016" +159977,Lightning Charging Cable,1,14.95,02/17/19 09:37,"938 Main St, San Francisco, CA 94016" +159978,AAA Batteries (4-pack),1,2.99,02/21/19 22:19,"365 10th St, Boston, MA 02215" +159979,Lightning Charging Cable,1,14.95,02/25/19 15:28,"236 4th St, Los Angeles, CA 90001" +159980,AA Batteries (4-pack),1,3.84,02/02/19 16:52,"331 6th St, San Francisco, CA 94016" +159981,20in Monitor,1,109.99,02/26/19 22:28,"40 Spruce St, New York City, NY 10001" +159982,USB-C Charging Cable,1,11.95,02/09/19 18:18,"568 Willow St, New York City, NY 10001" +159983,iPhone,1,700.0,02/03/19 12:20,"807 West St, Portland, ME 04101" +159984,Wired Headphones,1,11.99,02/19/19 13:09,"287 South St, Boston, MA 02215" +159985,USB-C Charging Cable,1,11.95,02/20/19 19:42,"291 Lake St, New York City, NY 10001" +159986,Wired Headphones,1,11.99,02/20/19 19:53,"752 Lake St, Seattle, WA 98101" +159987,USB-C Charging Cable,1,11.95,02/05/19 11:25,"333 Lake St, San Francisco, CA 94016" +159988,USB-C Charging Cable,1,11.95,02/27/19 07:19,"173 6th St, Boston, MA 02215" +159989,AAA Batteries (4-pack),2,2.99,02/10/19 19:04,"117 Lakeview St, New York City, NY 10001" +159989,Wired Headphones,1,11.99,02/10/19 19:04,"117 Lakeview St, New York City, NY 10001" +159990,USB-C Charging Cable,1,11.95,02/02/19 17:38,"677 River St, San Francisco, CA 94016" +159991,USB-C Charging Cable,1,11.95,02/25/19 11:08,"895 Dogwood St, San Francisco, CA 94016" +159992,Wired Headphones,1,11.99,02/27/19 16:31,"497 Jefferson St, Boston, MA 02215" +159993,USB-C Charging Cable,1,11.95,02/04/19 09:55,"653 Adams St, Dallas, TX 75001" +159994,AAA Batteries (4-pack),1,2.99,02/14/19 20:11,"19 Sunset St, Los Angeles, CA 90001" +159995,Lightning Charging Cable,1,14.95,02/28/19 22:05,"182 Wilson St, Los Angeles, CA 90001" +159996,34in Ultrawide Monitor,1,379.99,02/03/19 21:07,"27 Lincoln St, San Francisco, CA 94016" +159997,AAA Batteries (4-pack),2,2.99,02/08/19 18:50,"706 Hill St, Los Angeles, CA 90001" +159998,Lightning Charging Cable,1,14.95,02/08/19 18:08,"681 2nd St, Portland, OR 97035" +159999,USB-C Charging Cable,2,11.95,02/12/19 11:40,"417 9th St, Boston, MA 02215" +160000,USB-C Charging Cable,2,11.95,02/16/19 22:26,"184 Lake St, Boston, MA 02215" +160001,AA Batteries (4-pack),1,3.84,02/14/19 20:48,"379 11th St, Dallas, TX 75001" +160002,AAA Batteries (4-pack),1,2.99,02/22/19 09:39,"417 Church St, Los Angeles, CA 90001" +160003,AA Batteries (4-pack),1,3.84,02/25/19 22:02,"579 Sunset St, Los Angeles, CA 90001" +160004,iPhone,1,700.0,02/03/19 22:45,"536 Jackson St, Atlanta, GA 30301" +160005,Lightning Charging Cable,1,14.95,02/12/19 22:51,"576 Jackson St, Dallas, TX 75001" +160006,AAA Batteries (4-pack),3,2.99,02/14/19 13:10,"90 Adams St, Los Angeles, CA 90001" +160007,Bose SoundSport Headphones,1,99.99,02/21/19 10:02,"327 Spruce St, Los Angeles, CA 90001" +160008,27in 4K Gaming Monitor,1,389.99,02/03/19 18:27,"915 7th St, San Francisco, CA 94016" +160009,27in FHD Monitor,1,149.99,02/08/19 10:01,"954 Sunset St, Atlanta, GA 30301" +160010,Apple Airpods Headphones,1,150.0,02/13/19 20:09,"824 6th St, San Francisco, CA 94016" +160011,USB-C Charging Cable,1,11.95,02/26/19 18:46,"76 Elm St, San Francisco, CA 94016" +160012,27in 4K Gaming Monitor,1,389.99,02/06/19 22:06,"816 Church St, San Francisco, CA 94016" +160013,Wired Headphones,2,11.99,02/07/19 09:49,"151 5th St, Dallas, TX 75001" +160014,USB-C Charging Cable,1,11.95,02/04/19 06:24,"125 11th St, Dallas, TX 75001" +160015,AAA Batteries (4-pack),1,2.99,02/12/19 22:11,"42 7th St, Los Angeles, CA 90001" +160016,Flatscreen TV,1,300.0,02/02/19 00:32,"895 Lake St, Austin, TX 73301" +160017,iPhone,1,700.0,02/16/19 15:08,"326 Elm St, Dallas, TX 75001" +160018,AAA Batteries (4-pack),1,2.99,02/16/19 14:33,"854 Dogwood St, San Francisco, CA 94016" +160019,Flatscreen TV,1,300.0,02/14/19 13:55,"750 Center St, Atlanta, GA 30301" +160020,Vareebadd Phone,1,400.0,02/21/19 15:48,"739 Ridge St, Los Angeles, CA 90001" +160020,USB-C Charging Cable,1,11.95,02/21/19 15:48,"739 Ridge St, Los Angeles, CA 90001" +160021,Wired Headphones,1,11.99,02/08/19 20:02,"99 Spruce St, Dallas, TX 75001" +160022,Flatscreen TV,1,300.0,02/11/19 12:39,"135 5th St, Austin, TX 73301" +160023,AAA Batteries (4-pack),1,2.99,02/04/19 19:26,"550 Wilson St, San Francisco, CA 94016" +160024,Wired Headphones,1,11.99,02/22/19 15:18,"255 Pine St, Dallas, TX 75001" +160025,Wired Headphones,2,11.99,02/07/19 15:14,"144 10th St, San Francisco, CA 94016" +160026,USB-C Charging Cable,1,11.95,02/04/19 09:33,"693 6th St, New York City, NY 10001" +160027,AAA Batteries (4-pack),1,2.99,02/17/19 18:06,"907 Adams St, Boston, MA 02215" +160028,AAA Batteries (4-pack),1,2.99,02/16/19 19:36,"158 Hickory St, San Francisco, CA 94016" +160029,AAA Batteries (4-pack),1,2.99,02/07/19 12:06,"311 Hill St, Dallas, TX 75001" +160030,Wired Headphones,1,11.99,02/06/19 14:14,"395 10th St, New York City, NY 10001" +160031,Wired Headphones,1,11.99,02/06/19 15:09,"769 Sunset St, Seattle, WA 98101" +160032,AA Batteries (4-pack),1,3.84,02/12/19 16:03,"600 Johnson St, Dallas, TX 75001" +160033,Google Phone,1,600.0,02/07/19 19:47,"918 Walnut St, Atlanta, GA 30301" +160034,27in 4K Gaming Monitor,1,389.99,02/16/19 11:37,"778 Cedar St, San Francisco, CA 94016" +160035,Vareebadd Phone,1,400.0,02/01/19 08:37,"774 1st St, Seattle, WA 98101" +160036,USB-C Charging Cable,1,11.95,02/23/19 23:01,"972 Cedar St, Los Angeles, CA 90001" +160037,USB-C Charging Cable,1,11.95,02/05/19 08:59,"290 Ridge St, New York City, NY 10001" +160038,Lightning Charging Cable,1,14.95,02/07/19 15:14,"888 13th St, San Francisco, CA 94016" +160039,Lightning Charging Cable,1,14.95,02/09/19 18:20,"492 Sunset St, Seattle, WA 98101" +160040,27in 4K Gaming Monitor,1,389.99,02/03/19 21:17,"149 Main St, New York City, NY 10001" +160041,Flatscreen TV,1,300.0,02/25/19 15:20,"667 Lakeview St, San Francisco, CA 94016" +160042,Macbook Pro Laptop,1,1700.0,02/25/19 22:00,"328 North St, Seattle, WA 98101" +160043,27in FHD Monitor,1,149.99,02/19/19 11:23,"482 1st St, Dallas, TX 75001" +160044,AA Batteries (4-pack),1,3.84,02/17/19 11:58,"642 Maple St, New York City, NY 10001" +160045,AAA Batteries (4-pack),7,2.99,02/05/19 20:23,"224 13th St, Seattle, WA 98101" +160046,Lightning Charging Cable,1,14.95,02/25/19 14:52,"635 Madison St, Austin, TX 73301" +160047,Lightning Charging Cable,3,14.95,02/12/19 18:01,"569 South St, Boston, MA 02215" +160048,Wired Headphones,2,11.99,02/06/19 20:22,"780 1st St, San Francisco, CA 94016" +160049,Google Phone,1,600.0,02/13/19 13:37,"491 Walnut St, San Francisco, CA 94016" +160050,ThinkPad Laptop,1,999.99,02/10/19 09:59,"199 6th St, San Francisco, CA 94016" +160051,AAA Batteries (4-pack),3,2.99,02/02/19 18:08,"426 Elm St, Austin, TX 73301" +160052,Wired Headphones,1,11.99,02/20/19 09:42,"560 Walnut St, Los Angeles, CA 90001" +160053,Apple Airpods Headphones,1,150.0,02/02/19 12:36,"573 Lakeview St, Los Angeles, CA 90001" +160054,AA Batteries (4-pack),2,3.84,02/08/19 13:36,"896 Meadow St, Portland, ME 04101" +160055,USB-C Charging Cable,1,11.95,02/10/19 21:34,"76 Lincoln St, San Francisco, CA 94016" +160056,Bose SoundSport Headphones,1,99.99,02/11/19 13:08,"658 Pine St, New York City, NY 10001" +160057,Vareebadd Phone,1,400.0,02/13/19 17:44,"308 Sunset St, New York City, NY 10001" +160057,Wired Headphones,2,11.99,02/13/19 17:44,"308 Sunset St, New York City, NY 10001" +160057,Macbook Pro Laptop,1,1700.0,02/13/19 17:44,"308 Sunset St, New York City, NY 10001" +160058,Apple Airpods Headphones,1,150.0,02/20/19 16:39,"472 Walnut St, Seattle, WA 98101" +160059,Wired Headphones,1,11.99,02/14/19 16:47,"679 6th St, San Francisco, CA 94016" +160060,27in FHD Monitor,1,149.99,02/13/19 17:54,"263 Lincoln St, San Francisco, CA 94016" +160061,ThinkPad Laptop,1,999.99,02/13/19 20:37,"82 10th St, New York City, NY 10001" +160062,AA Batteries (4-pack),1,3.84,02/24/19 08:55,"189 14th St, Boston, MA 02215" +160063,Flatscreen TV,1,300.0,02/08/19 20:18,"827 Willow St, Los Angeles, CA 90001" +160064,USB-C Charging Cable,1,11.95,02/06/19 14:15,"753 Center St, San Francisco, CA 94016" +160065,Lightning Charging Cable,1,14.95,02/05/19 03:07,"367 10th St, Boston, MA 02215" +160066,27in FHD Monitor,1,149.99,02/21/19 19:46,"148 Willow St, New York City, NY 10001" +160067,AA Batteries (4-pack),2,3.84,02/23/19 10:11,"191 11th St, Austin, TX 73301" +160068,Bose SoundSport Headphones,1,99.99,02/02/19 16:49,"820 Lakeview St, San Francisco, CA 94016" +160069,iPhone,1,700.0,02/19/19 23:45,"161 Park St, Portland, OR 97035" +160070,Google Phone,1,600.0,02/28/19 12:22,"596 Lincoln St, San Francisco, CA 94016" +160071,AA Batteries (4-pack),2,3.84,02/08/19 15:30,"208 Church St, Los Angeles, CA 90001" +160072,Apple Airpods Headphones,1,150.0,02/02/19 19:47,"737 14th St, New York City, NY 10001" +160073,Apple Airpods Headphones,1,150.0,02/02/19 21:54,"32 Willow St, San Francisco, CA 94016" +160074,AA Batteries (4-pack),1,3.84,02/02/19 20:22,"345 Hill St, San Francisco, CA 94016" +160075,Apple Airpods Headphones,1,150.0,02/06/19 16:39,"760 Church St, Los Angeles, CA 90001" +160076,Flatscreen TV,2,300.0,02/06/19 08:17,"247 Center St, Seattle, WA 98101" +160077,USB-C Charging Cable,1,11.95,02/15/19 14:57,"117 Willow St, Los Angeles, CA 90001" +160078,iPhone,1,700.0,02/11/19 04:38,"534 10th St, Austin, TX 73301" +160079,Macbook Pro Laptop,1,1700.0,02/14/19 15:43,"701 Lakeview St, Austin, TX 73301" +160080,Wired Headphones,1,11.99,02/18/19 15:33,"488 Lincoln St, New York City, NY 10001" +160081,Lightning Charging Cable,1,14.95,02/28/19 08:50,"375 Johnson St, New York City, NY 10001" +160082,Lightning Charging Cable,1,14.95,02/21/19 09:20,"975 Cedar St, Seattle, WA 98101" +160083,34in Ultrawide Monitor,1,379.99,02/12/19 18:14,"405 Lake St, San Francisco, CA 94016" +160084,AA Batteries (4-pack),1,3.84,02/23/19 10:33,"831 Maple St, San Francisco, CA 94016" +160085,AA Batteries (4-pack),1,3.84,02/15/19 10:18,"569 Ridge St, Portland, OR 97035" +160086,iPhone,1,700.0,02/12/19 19:05,"276 Pine St, San Francisco, CA 94016" +160087,AAA Batteries (4-pack),1,2.99,02/07/19 19:15,"617 Cedar St, San Francisco, CA 94016" +,,,,, +160088,27in FHD Monitor,1,149.99,02/13/19 12:39,"93 Lincoln St, Los Angeles, CA 90001" +160089,34in Ultrawide Monitor,1,379.99,02/18/19 09:44,"989 South St, Los Angeles, CA 90001" +160090,34in Ultrawide Monitor,1,379.99,02/11/19 09:31,"556 Jackson St, Austin, TX 73301" +160091,Lightning Charging Cable,1,14.95,02/01/19 18:03,"542 Madison St, Atlanta, GA 30301" +160092,iPhone,1,700,02/01/19 19:27,"651 Washington St, San Francisco, CA 94016" +160093,Macbook Pro Laptop,1,1700,02/26/19 21:21,"670 10th St, Atlanta, GA 30301" +160094,27in 4K Gaming Monitor,1,389.99,02/16/19 22:15,"55 Washington St, Dallas, TX 75001" +160095,Lightning Charging Cable,1,14.95,02/20/19 09:10,"812 Lincoln St, Los Angeles, CA 90001" +160096,AA Batteries (4-pack),1,3.84,02/20/19 05:03,"827 Ridge St, New York City, NY 10001" +160097,Apple Airpods Headphones,1,150,02/27/19 12:51,"569 10th St, Atlanta, GA 30301" +160098,AAA Batteries (4-pack),2,2.99,02/02/19 21:41,"332 6th St, New York City, NY 10001" +160099,AA Batteries (4-pack),2,3.84,02/16/19 12:30,"460 South St, New York City, NY 10001" +160100,Macbook Pro Laptop,1,1700,02/24/19 23:22,"798 Church St, San Francisco, CA 94016" +160101,Apple Airpods Headphones,1,150,02/27/19 07:38,"609 1st St, San Francisco, CA 94016" +160102,Macbook Pro Laptop,1,1700,02/02/19 18:44,"615 Forest St, Los Angeles, CA 90001" +160103,AA Batteries (4-pack),3,3.84,02/03/19 10:52,"183 Main St, Seattle, WA 98101" +160104,AA Batteries (4-pack),1,3.84,02/19/19 08:38,"351 Lake St, San Francisco, CA 94016" +160105,27in FHD Monitor,1,149.99,02/05/19 20:08,"534 8th St, Seattle, WA 98101" +160106,ThinkPad Laptop,1,999.99,02/27/19 19:21,"865 Washington St, Boston, MA 02215" +160107,AAA Batteries (4-pack),2,2.99,02/14/19 10:37,"961 West St, San Francisco, CA 94016" +160108,Apple Airpods Headphones,1,150,02/01/19 12:58,"776 Washington St, Boston, MA 02215" +160109,Google Phone,1,600,02/18/19 16:59,"25 Lake St, Atlanta, GA 30301" +160109,USB-C Charging Cable,2,11.95,02/18/19 16:59,"25 Lake St, Atlanta, GA 30301" +160110,AA Batteries (4-pack),1,3.84,02/14/19 20:01,"799 Cedar St, Dallas, TX 75001" +160111,USB-C Charging Cable,2,11.95,02/14/19 16:03,"199 9th St, San Francisco, CA 94016" +160112,AAA Batteries (4-pack),1,2.99,02/14/19 15:09,"205 Wilson St, Atlanta, GA 30301" +160113,Bose SoundSport Headphones,1,99.99,02/13/19 17:45,"506 Madison St, Los Angeles, CA 90001" +160114,34in Ultrawide Monitor,1,379.99,02/21/19 09:21,"677 14th St, San Francisco, CA 94016" +160115,Bose SoundSport Headphones,1,99.99,02/06/19 12:03,"451 Forest St, Los Angeles, CA 90001" +160116,Lightning Charging Cable,1,14.95,02/26/19 11:24,"481 North St, San Francisco, CA 94016" +160117,Bose SoundSport Headphones,1,99.99,02/26/19 16:32,"547 4th St, Los Angeles, CA 90001" +160118,AA Batteries (4-pack),1,3.84,02/23/19 14:08,"454 Adams St, San Francisco, CA 94016" +160119,Wired Headphones,1,11.99,02/13/19 16:27,"934 River St, Los Angeles, CA 90001" +160120,Apple Airpods Headphones,1,150,02/12/19 17:35,"458 Forest St, Portland, OR 97035" +160121,Wired Headphones,1,11.99,02/23/19 23:21,"645 2nd St, Los Angeles, CA 90001" +160122,Google Phone,1,600,02/17/19 04:26,"336 Johnson St, Los Angeles, CA 90001" +160122,Apple Airpods Headphones,1,150,02/17/19 04:26,"336 Johnson St, Los Angeles, CA 90001" +160123,AAA Batteries (4-pack),1,2.99,02/07/19 18:06,"108 Walnut St, San Francisco, CA 94016" +160124,Lightning Charging Cable,1,14.95,02/03/19 23:30,"850 Church St, Dallas, TX 75001" +160125,Bose SoundSport Headphones,1,99.99,02/11/19 19:45,"231 Center St, Boston, MA 02215" +160126,USB-C Charging Cable,1,11.95,02/04/19 20:17,"769 River St, San Francisco, CA 94016" +160127,Google Phone,1,600,02/21/19 15:56,"139 6th St, Atlanta, GA 30301" +160128,AA Batteries (4-pack),1,3.84,02/01/19 18:27,"88 4th St, San Francisco, CA 94016" +160129,AA Batteries (4-pack),1,3.84,02/03/19 17:16,"925 Sunset St, New York City, NY 10001" +160130,AAA Batteries (4-pack),2,2.99,02/28/19 12:49,"50 Hickory St, Portland, OR 97035" +160131,20in Monitor,1,109.99,02/23/19 19:53,"912 Hill St, Seattle, WA 98101" +160132,Apple Airpods Headphones,1,150,02/14/19 04:24,"648 River St, Los Angeles, CA 90001" +160133,Wired Headphones,1,11.99,02/21/19 16:41,"310 Sunset St, Seattle, WA 98101" +160134,AA Batteries (4-pack),1,3.84,02/25/19 16:46,"281 5th St, Austin, TX 73301" +160135,34in Ultrawide Monitor,1,379.99,02/22/19 10:21,"213 8th St, Los Angeles, CA 90001" +160136,Wired Headphones,1,11.99,02/14/19 08:16,"765 9th St, Portland, OR 97035" +160137,ThinkPad Laptop,1,999.99,02/27/19 11:13,"572 7th St, Los Angeles, CA 90001" +160138,Wired Headphones,1,11.99,02/26/19 22:20,"945 6th St, Los Angeles, CA 90001" +160139,Lightning Charging Cable,1,14.95,02/13/19 12:56,"548 North St, Los Angeles, CA 90001" +160140,AAA Batteries (4-pack),1,2.99,02/04/19 21:00,"530 14th St, Los Angeles, CA 90001" +160141,USB-C Charging Cable,1,11.95,02/16/19 20:27,"631 Park St, San Francisco, CA 94016" +160142,20in Monitor,1,109.99,02/04/19 17:46,"907 Spruce St, San Francisco, CA 94016" +160143,27in 4K Gaming Monitor,1,389.99,02/06/19 11:35,"899 Maple St, Boston, MA 02215" +160144,Wired Headphones,1,11.99,02/23/19 20:39,"499 Lincoln St, Portland, OR 97035" +160145,Macbook Pro Laptop,1,1700,02/27/19 23:10,"494 West St, San Francisco, CA 94016" +160145,AAA Batteries (4-pack),1,2.99,02/27/19 23:10,"494 West St, San Francisco, CA 94016" +160146,Flatscreen TV,1,300,02/03/19 23:26,"376 4th St, San Francisco, CA 94016" +160147,Lightning Charging Cable,2,14.95,02/09/19 21:18,"497 Center St, San Francisco, CA 94016" +160148,20in Monitor,1,109.99,02/01/19 15:01,"518 Willow St, Los Angeles, CA 90001" +160149,AA Batteries (4-pack),1,3.84,02/11/19 15:00,"810 Cedar St, San Francisco, CA 94016" +160150,Lightning Charging Cable,1,14.95,02/25/19 15:22,"173 South St, Seattle, WA 98101" +160151,AA Batteries (4-pack),2,3.84,02/20/19 11:59,"640 11th St, New York City, NY 10001" +160152,AA Batteries (4-pack),1,3.84,02/28/19 19:47,"384 10th St, New York City, NY 10001" +160153,AAA Batteries (4-pack),1,2.99,02/28/19 17:56,"613 Sunset St, New York City, NY 10001" +160154,Macbook Pro Laptop,1,1700,02/03/19 20:48,"786 South St, Seattle, WA 98101" +160155,Wired Headphones,1,11.99,02/18/19 15:57,"673 Washington St, San Francisco, CA 94016" +160156,Macbook Pro Laptop,1,1700,02/16/19 14:03,"794 Sunset St, Atlanta, GA 30301" +160157,iPhone,1,700,02/10/19 22:40,"814 Hickory St, Austin, TX 73301" +160157,Lightning Charging Cable,1,14.95,02/10/19 22:40,"814 Hickory St, Austin, TX 73301" +160158,iPhone,1,700,02/21/19 08:28,"871 Forest St, New York City, NY 10001" +160159,Vareebadd Phone,1,400,02/26/19 18:46,"377 Center St, Boston, MA 02215" +160159,USB-C Charging Cable,1,11.95,02/26/19 18:46,"377 Center St, Boston, MA 02215" +160160,Macbook Pro Laptop,1,1700,02/21/19 04:19,"657 Dogwood St, Los Angeles, CA 90001" +160161,AA Batteries (4-pack),1,3.84,02/27/19 12:39,"994 6th St, Seattle, WA 98101" +160162,Lightning Charging Cable,1,14.95,02/16/19 19:54,"309 Washington St, Boston, MA 02215" +160163,AAA Batteries (4-pack),3,2.99,02/04/19 08:29,"924 Wilson St, San Francisco, CA 94016" +160164,27in 4K Gaming Monitor,1,389.99,02/01/19 18:21,"762 River St, Atlanta, GA 30301" +160165,34in Ultrawide Monitor,1,379.99,02/20/19 13:56,"559 Jefferson St, San Francisco, CA 94016" +160166,27in FHD Monitor,1,149.99,02/08/19 06:36,"290 Jefferson St, New York City, NY 10001" +160167,20in Monitor,1,109.99,02/28/19 18:42,"669 Maple St, San Francisco, CA 94016" +160168,iPhone,1,700,02/19/19 08:54,"262 South St, San Francisco, CA 94016" +160169,ThinkPad Laptop,1,999.99,02/11/19 09:41,"554 10th St, New York City, NY 10001" +160170,27in FHD Monitor,1,149.99,02/18/19 10:05,"671 14th St, San Francisco, CA 94016" +160171,USB-C Charging Cable,1,11.95,02/08/19 14:22,"671 14th St, Boston, MA 02215" +160172,AA Batteries (4-pack),3,3.84,02/07/19 07:11,"757 Chestnut St, San Francisco, CA 94016" +160173,34in Ultrawide Monitor,1,379.99,02/27/19 13:07,"882 Jackson St, San Francisco, CA 94016" +160174,Google Phone,1,600,02/23/19 18:53,"490 Spruce St, San Francisco, CA 94016" +160175,AA Batteries (4-pack),1,3.84,02/17/19 18:10,"30 Dogwood St, Portland, ME 04101" +160176,Bose SoundSport Headphones,1,99.99,02/15/19 22:00,"651 9th St, New York City, NY 10001" +160177,AAA Batteries (4-pack),2,2.99,02/08/19 16:57,"144 Johnson St, Atlanta, GA 30301" +160178,iPhone,1,700,02/16/19 18:12,"510 11th St, Dallas, TX 75001" +160179,Bose SoundSport Headphones,1,99.99,02/03/19 21:11,"324 12th St, San Francisco, CA 94016" +160180,USB-C Charging Cable,1,11.95,02/14/19 14:03,"799 5th St, Austin, TX 73301" +160181,Bose SoundSport Headphones,1,99.99,02/07/19 18:53,"96 Hickory St, New York City, NY 10001" +160182,AA Batteries (4-pack),1,3.84,02/08/19 23:54,"767 Chestnut St, Portland, OR 97035" +160183,iPhone,1,700,02/08/19 15:03,"841 Center St, Seattle, WA 98101" +160184,Macbook Pro Laptop,1,1700,02/13/19 18:25,"373 Forest St, San Francisco, CA 94016" +160185,Bose SoundSport Headphones,1,99.99,02/04/19 17:36,"652 Washington St, New York City, NY 10001" +160186,AAA Batteries (4-pack),1,2.99,02/23/19 13:41,"12 Lake St, Boston, MA 02215" +160187,AAA Batteries (4-pack),2,2.99,02/23/19 11:31,"692 2nd St, Boston, MA 02215" +160188,AAA Batteries (4-pack),1,2.99,02/23/19 22:26,"715 9th St, San Francisco, CA 94016" +160189,27in FHD Monitor,1,149.99,02/10/19 20:41,"555 Pine St, New York City, NY 10001" +160190,AA Batteries (4-pack),1,3.84,02/02/19 11:53,"205 Walnut St, Portland, ME 04101" +160191,AA Batteries (4-pack),1,3.84,02/14/19 20:03,"276 Pine St, Los Angeles, CA 90001" +160192,iPhone,1,700,02/22/19 19:20,"13 Meadow St, New York City, NY 10001" +160193,USB-C Charging Cable,1,11.95,02/13/19 19:57,"537 Washington St, Boston, MA 02215" +160194,AA Batteries (4-pack),3,3.84,02/07/19 10:08,"684 River St, Atlanta, GA 30301" +160195,34in Ultrawide Monitor,1,379.99,02/14/19 14:28,"306 1st St, New York City, NY 10001" +160196,Wired Headphones,1,11.99,02/21/19 18:33,"813 North St, New York City, NY 10001" +160197,Bose SoundSport Headphones,1,99.99,02/28/19 21:50,"567 9th St, New York City, NY 10001" +160198,Lightning Charging Cable,1,14.95,02/07/19 11:27,"192 Center St, San Francisco, CA 94016" +160199,34in Ultrawide Monitor,1,379.99,02/20/19 00:50,"595 Maple St, San Francisco, CA 94016" +160200,AAA Batteries (4-pack),1,2.99,02/16/19 20:48,"119 Lakeview St, Boston, MA 02215" +160201,Flatscreen TV,1,300,02/12/19 08:56,"37 Johnson St, Los Angeles, CA 90001" +160202,Bose SoundSport Headphones,1,99.99,02/15/19 12:51,"260 5th St, Los Angeles, CA 90001" +160203,Flatscreen TV,1,300,02/10/19 23:31,"894 Elm St, New York City, NY 10001" +160204,Wired Headphones,1,11.99,02/10/19 16:24,"616 14th St, San Francisco, CA 94016" +160205,Wired Headphones,1,11.99,02/15/19 20:16,"371 Center St, San Francisco, CA 94016" +160206,27in FHD Monitor,1,149.99,02/17/19 22:23,"783 Lincoln St, Portland, OR 97035" +160207,AA Batteries (4-pack),1,3.84,02/16/19 08:32,"843 Dogwood St, San Francisco, CA 94016" +160208,Apple Airpods Headphones,1,150,02/28/19 10:37,"169 Hill St, Atlanta, GA 30301" +160209,34in Ultrawide Monitor,1,379.99,02/22/19 17:44,"148 Jefferson St, Atlanta, GA 30301" +160210,Wired Headphones,1,11.99,02/17/19 17:57,"428 Washington St, Boston, MA 02215" +160211,Wired Headphones,1,11.99,02/04/19 16:32,"1 Washington St, San Francisco, CA 94016" +160212,27in 4K Gaming Monitor,1,389.99,02/13/19 21:51,"333 11th St, New York City, NY 10001" +160213,Apple Airpods Headphones,1,150,02/03/19 21:40,"452 Park St, Boston, MA 02215" +160214,Apple Airpods Headphones,1,150,02/18/19 06:56,"528 Willow St, Austin, TX 73301" +160215,USB-C Charging Cable,1,11.95,02/19/19 10:01,"542 4th St, San Francisco, CA 94016" +160216,Flatscreen TV,1,300,02/10/19 11:12,"565 Wilson St, Seattle, WA 98101" +160217,Lightning Charging Cable,1,14.95,02/22/19 07:47,"404 Church St, Atlanta, GA 30301" +160218,AAA Batteries (4-pack),2,2.99,02/11/19 19:05,"427 10th St, San Francisco, CA 94016" +160219,34in Ultrawide Monitor,1,379.99,02/14/19 21:23,"576 10th St, Boston, MA 02215" +160220,USB-C Charging Cable,1,11.95,02/11/19 11:27,"743 Ridge St, New York City, NY 10001" +160221,Wired Headphones,1,11.99,02/20/19 10:33,"70 Center St, Atlanta, GA 30301" +160222,Lightning Charging Cable,2,14.95,02/11/19 12:33,"380 Maple St, San Francisco, CA 94016" +160223,34in Ultrawide Monitor,1,379.99,02/17/19 18:45,"953 Main St, Boston, MA 02215" +160224,Lightning Charging Cable,1,14.95,02/25/19 21:09,"716 Washington St, Portland, OR 97035" +160225,Flatscreen TV,1,300,02/10/19 16:50,"361 9th St, San Francisco, CA 94016" +160226,34in Ultrawide Monitor,1,379.99,02/28/19 11:03,"228 Chestnut St, New York City, NY 10001" +160227,Apple Airpods Headphones,1,150,02/22/19 09:56,"998 Elm St, San Francisco, CA 94016" +160228,LG Washing Machine,1,600.0,02/08/19 01:29,"797 14th St, New York City, NY 10001" +160229,Wired Headphones,1,11.99,02/02/19 11:55,"195 11th St, Dallas, TX 75001" +160230,USB-C Charging Cable,1,11.95,02/03/19 10:00,"334 Lakeview St, Seattle, WA 98101" +160231,USB-C Charging Cable,1,11.95,02/15/19 07:57,"130 Cedar St, Atlanta, GA 30301" +160232,AA Batteries (4-pack),4,3.84,02/28/19 09:26,"720 Ridge St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +160233,Lightning Charging Cable,1,14.95,02/08/19 19:46,"910 Pine St, San Francisco, CA 94016" +160234,AA Batteries (4-pack),1,3.84,02/19/19 09:05,"979 Ridge St, Atlanta, GA 30301" +160235,AA Batteries (4-pack),1,3.84,02/24/19 09:33,"709 Dogwood St, Boston, MA 02215" +160236,AA Batteries (4-pack),4,3.84,02/15/19 01:12,"805 Maple St, Austin, TX 73301" +160237,27in FHD Monitor,1,149.99,02/15/19 12:21,"410 12th St, Boston, MA 02215" +160238,Apple Airpods Headphones,1,150,02/02/19 09:55,"11 8th St, Los Angeles, CA 90001" +160239,Lightning Charging Cable,1,14.95,02/17/19 10:53,"992 Willow St, New York City, NY 10001" +160240,Lightning Charging Cable,1,14.95,02/12/19 09:53,"875 Pine St, Los Angeles, CA 90001" +160241,AA Batteries (4-pack),4,3.84,02/17/19 09:06,"833 Park St, San Francisco, CA 94016" +160242,Wired Headphones,2,11.99,02/09/19 20:58,"229 9th St, Los Angeles, CA 90001" +160243,Apple Airpods Headphones,1,150,02/02/19 20:55,"198 11th St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +160244,27in FHD Monitor,1,149.99,02/13/19 10:28,"776 South St, Atlanta, GA 30301" +160245,20in Monitor,1,109.99,02/27/19 13:13,"28 8th St, Los Angeles, CA 90001" +160246,27in 4K Gaming Monitor,1,389.99,02/12/19 13:57,"734 Willow St, San Francisco, CA 94016" +160247,Flatscreen TV,1,300,02/20/19 11:18,"348 Pine St, Austin, TX 73301" +160248,27in 4K Gaming Monitor,1,389.99,02/21/19 11:44,"73 Adams St, Seattle, WA 98101" +160249,USB-C Charging Cable,1,11.95,02/09/19 20:49,"269 6th St, Boston, MA 02215" +160250,Vareebadd Phone,1,400,02/19/19 20:52,"356 Maple St, New York City, NY 10001" +160251,Bose SoundSport Headphones,1,99.99,02/18/19 10:55,"483 Highland St, Boston, MA 02215" +160252,Lightning Charging Cable,1,14.95,02/12/19 21:59,"982 Spruce St, New York City, NY 10001" +160253,Bose SoundSport Headphones,1,99.99,02/12/19 04:41,"90 Lincoln St, Boston, MA 02215" +160254,AA Batteries (4-pack),3,3.84,02/07/19 09:28,"250 Chestnut St, Los Angeles, CA 90001" +160255,AA Batteries (4-pack),1,3.84,02/16/19 09:44,"31 South St, San Francisco, CA 94016" +160256,Apple Airpods Headphones,1,150,02/04/19 19:08,"993 Chestnut St, San Francisco, CA 94016" +160257,Apple Airpods Headphones,1,150,02/16/19 14:26,"597 Park St, San Francisco, CA 94016" +160258,AA Batteries (4-pack),2,3.84,02/07/19 13:24,"648 13th St, Boston, MA 02215" +160259,Wired Headphones,1,11.99,02/15/19 18:26,"386 11th St, Los Angeles, CA 90001" +160260,Lightning Charging Cable,1,14.95,02/07/19 12:54,"189 Center St, Seattle, WA 98101" +160261,AA Batteries (4-pack),1,3.84,02/17/19 11:23,"524 Willow St, San Francisco, CA 94016" +160262,AAA Batteries (4-pack),2,2.99,02/11/19 20:24,"992 8th St, New York City, NY 10001" +160263,Flatscreen TV,1,300,02/04/19 20:13,"337 Madison St, Los Angeles, CA 90001" +160264,AAA Batteries (4-pack),1,2.99,02/15/19 12:06,"139 Hickory St, New York City, NY 10001" +160265,Bose SoundSport Headphones,1,99.99,02/07/19 16:06,"106 11th St, San Francisco, CA 94016" +160266,Wired Headphones,2,11.99,02/21/19 09:52,"48 Highland St, San Francisco, CA 94016" +160267,AAA Batteries (4-pack),1,2.99,02/03/19 21:22,"934 Hill St, Boston, MA 02215" +160268,AAA Batteries (4-pack),1,2.99,02/16/19 17:29,"334 Chestnut St, Portland, OR 97035" +160269,Lightning Charging Cable,1,14.95,02/17/19 16:48,"764 Cedar St, Los Angeles, CA 90001" +160270,AAA Batteries (4-pack),3,2.99,02/24/19 13:36,"151 10th St, San Francisco, CA 94016" +160271,Wired Headphones,1,11.99,02/06/19 23:23,"312 South St, Seattle, WA 98101" +160272,AA Batteries (4-pack),3,3.84,02/22/19 21:46,"241 Main St, Atlanta, GA 30301" +160272,Macbook Pro Laptop,1,1700,02/22/19 21:46,"241 Main St, Atlanta, GA 30301" +160273,27in FHD Monitor,1,149.99,02/18/19 07:59,"648 Hickory St, Boston, MA 02215" +160274,USB-C Charging Cable,1,11.95,02/23/19 21:00,"302 Willow St, San Francisco, CA 94016" +160275,Google Phone,1,600,02/19/19 15:56,"155 Cherry St, Los Angeles, CA 90001" +160276,Macbook Pro Laptop,1,1700,02/04/19 05:32,"608 Adams St, Dallas, TX 75001" +160277,Lightning Charging Cable,1,14.95,02/28/19 13:44,"938 Chestnut St, New York City, NY 10001" +160278,27in 4K Gaming Monitor,1,389.99,02/22/19 21:33,"451 Cedar St, San Francisco, CA 94016" +160279,AAA Batteries (4-pack),1,2.99,02/20/19 08:26,"835 Chestnut St, Atlanta, GA 30301" +160280,AAA Batteries (4-pack),1,2.99,02/23/19 19:46,"987 Madison St, Los Angeles, CA 90001" +160281,Apple Airpods Headphones,1,150,02/21/19 13:30,"755 Main St, San Francisco, CA 94016" +160282,AAA Batteries (4-pack),1,2.99,02/04/19 10:28,"747 Dogwood St, Portland, ME 04101" +160283,AA Batteries (4-pack),2,3.84,02/14/19 18:17,"45 1st St, New York City, NY 10001" +160284,Flatscreen TV,1,300,02/24/19 10:01,"206 12th St, Los Angeles, CA 90001" +160285,Wired Headphones,1,11.99,02/02/19 16:05,"360 Spruce St, San Francisco, CA 94016" +160286,USB-C Charging Cable,2,11.95,02/23/19 09:39,"67 6th St, Atlanta, GA 30301" +160287,Google Phone,1,600,02/27/19 12:12,"882 South St, Seattle, WA 98101" +160288,Apple Airpods Headphones,1,150,02/28/19 19:17,"338 13th St, New York City, NY 10001" +160289,USB-C Charging Cable,2,11.95,02/25/19 18:58,"656 Main St, San Francisco, CA 94016" +160290,Wired Headphones,1,11.99,02/19/19 21:11,"69 Main St, New York City, NY 10001" +160291,ThinkPad Laptop,1,999.99,02/27/19 17:24,"951 River St, San Francisco, CA 94016" +160292,Wired Headphones,1,11.99,02/04/19 18:04,"75 10th St, Portland, ME 04101" +160293,Apple Airpods Headphones,1,150,02/04/19 21:22,"317 Cherry St, San Francisco, CA 94016" +160294,iPhone,1,700,02/21/19 00:41,"655 North St, Los Angeles, CA 90001" +160295,Macbook Pro Laptop,1,1700,02/12/19 14:13,"287 Washington St, San Francisco, CA 94016" +160296,Apple Airpods Headphones,1,150,02/18/19 18:57,"160 Johnson St, Boston, MA 02215" +160297,27in FHD Monitor,1,149.99,02/12/19 00:27,"5 Jefferson St, Los Angeles, CA 90001" +160298,USB-C Charging Cable,2,11.95,02/26/19 14:06,"272 14th St, San Francisco, CA 94016" +160299,AA Batteries (4-pack),1,3.84,02/13/19 12:18,"415 Highland St, New York City, NY 10001" +160300,Macbook Pro Laptop,1,1700,02/20/19 20:56,"408 Pine St, New York City, NY 10001" +160301,27in 4K Gaming Monitor,1,389.99,02/26/19 19:18,"235 14th St, Seattle, WA 98101" +160302,Wired Headphones,2,11.99,02/10/19 00:06,"449 Church St, Portland, OR 97035" +160303,iPhone,1,700,02/19/19 13:12,"107 Main St, Austin, TX 73301" +160304,34in Ultrawide Monitor,1,379.99,02/28/19 16:48,"610 Madison St, San Francisco, CA 94016" +160305,34in Ultrawide Monitor,1,379.99,02/13/19 10:26,"138 14th St, Seattle, WA 98101" +160306,Wired Headphones,1,11.99,02/21/19 12:03,"966 Hill St, Austin, TX 73301" +160307,USB-C Charging Cable,1,11.95,02/21/19 16:34,"351 Dogwood St, Los Angeles, CA 90001" +160308,Google Phone,1,600,02/08/19 00:09,"257 10th St, Atlanta, GA 30301" +160309,27in FHD Monitor,1,149.99,02/10/19 11:28,"710 Lakeview St, San Francisco, CA 94016" +160310,USB-C Charging Cable,1,11.95,02/01/19 10:13,"745 South St, San Francisco, CA 94016" +160311,Apple Airpods Headphones,1,150,02/08/19 21:12,"386 Chestnut St, Dallas, TX 75001" +160312,Bose SoundSport Headphones,1,99.99,02/14/19 08:28,"103 Washington St, Boston, MA 02215" +160313,27in FHD Monitor,1,149.99,02/22/19 12:46,"307 Jefferson St, Dallas, TX 75001" +160314,Google Phone,1,600,02/05/19 12:49,"383 Main St, Boston, MA 02215" +160315,AA Batteries (4-pack),1,3.84,02/21/19 19:14,"904 Walnut St, Seattle, WA 98101" +160316,AA Batteries (4-pack),1,3.84,02/22/19 20:12,"715 13th St, San Francisco, CA 94016" +160317,34in Ultrawide Monitor,1,379.99,02/15/19 16:21,"413 Center St, San Francisco, CA 94016" +160318,iPhone,1,700,02/10/19 20:05,"508 6th St, San Francisco, CA 94016" +160319,Apple Airpods Headphones,1,150,02/28/19 01:11,"478 7th St, New York City, NY 10001" +160320,Google Phone,1,600,02/12/19 15:15,"187 11th St, Atlanta, GA 30301" +160321,Bose SoundSport Headphones,1,99.99,02/20/19 16:59,"166 13th St, Boston, MA 02215" +160322,USB-C Charging Cable,1,11.95,02/24/19 07:23,"410 12th St, Los Angeles, CA 90001" +160323,27in 4K Gaming Monitor,1,389.99,02/13/19 10:57,"961 Lake St, Portland, ME 04101" +160324,20in Monitor,1,109.99,02/27/19 20:58,"19 Chestnut St, San Francisco, CA 94016" +160325,Apple Airpods Headphones,1,150,02/21/19 16:39,"537 12th St, Seattle, WA 98101" +160326,AAA Batteries (4-pack),2,2.99,02/27/19 12:22,"604 11th St, San Francisco, CA 94016" +160327,AAA Batteries (4-pack),1,2.99,02/11/19 19:57,"931 Washington St, San Francisco, CA 94016" +160328,Bose SoundSport Headphones,1,99.99,02/17/19 22:27,"824 Church St, Los Angeles, CA 90001" +160329,Wired Headphones,1,11.99,02/10/19 22:28,"647 Meadow St, San Francisco, CA 94016" +160330,Apple Airpods Headphones,1,150,02/12/19 18:55,"5 Park St, Dallas, TX 75001" +160331,AAA Batteries (4-pack),2,2.99,02/10/19 12:05,"525 Hickory St, Atlanta, GA 30301" +160332,AAA Batteries (4-pack),2,2.99,02/28/19 15:33,"129 Center St, New York City, NY 10001" +160333,AA Batteries (4-pack),1,3.84,02/10/19 05:07,"532 River St, Los Angeles, CA 90001" +160334,Google Phone,1,600,02/16/19 15:15,"916 14th St, San Francisco, CA 94016" +160334,USB-C Charging Cable,1,11.95,02/16/19 15:15,"916 14th St, San Francisco, CA 94016" +160335,Lightning Charging Cable,1,14.95,02/10/19 13:19,"240 West St, San Francisco, CA 94016" +160336,27in FHD Monitor,1,149.99,02/13/19 13:56,"817 Highland St, Los Angeles, CA 90001" +160337,AA Batteries (4-pack),2,3.84,02/19/19 15:10,"526 West St, New York City, NY 10001" +160338,AA Batteries (4-pack),1,3.84,02/07/19 12:29,"606 4th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +160339,AAA Batteries (4-pack),1,2.99,02/28/19 12:13,"834 7th St, Atlanta, GA 30301" +160340,USB-C Charging Cable,1,11.95,02/18/19 17:05,"416 Maple St, New York City, NY 10001" +160341,Apple Airpods Headphones,1,150,02/25/19 16:36,"475 4th St, San Francisco, CA 94016" +160342,Bose SoundSport Headphones,1,99.99,02/17/19 14:19,"6 Chestnut St, San Francisco, CA 94016" +160343,Bose SoundSport Headphones,1,99.99,02/17/19 22:51,"309 11th St, New York City, NY 10001" +160344,Wired Headphones,1,11.99,02/28/19 17:51,"754 Jefferson St, Seattle, WA 98101" +160345,Wired Headphones,1,11.99,02/28/19 15:42,"407 6th St, Atlanta, GA 30301" +160346,ThinkPad Laptop,1,999.99,02/24/19 09:12,"884 1st St, Atlanta, GA 30301" +160347,AA Batteries (4-pack),2,3.84,02/23/19 19:41,"184 4th St, Portland, OR 97035" +160347,Wired Headphones,1,11.99,02/23/19 19:41,"184 4th St, Portland, OR 97035" +160348,USB-C Charging Cable,1,11.95,02/14/19 21:39,"908 Main St, Seattle, WA 98101" +160349,Flatscreen TV,1,300,02/22/19 18:33,"219 9th St, Los Angeles, CA 90001" +160350,Bose SoundSport Headphones,1,99.99,02/13/19 16:26,"920 Cedar St, Los Angeles, CA 90001" +160351,AA Batteries (4-pack),2,3.84,02/17/19 21:35,"569 North St, San Francisco, CA 94016" +160352,AAA Batteries (4-pack),2,2.99,02/28/19 05:48,"91 14th St, New York City, NY 10001" +160353,AA Batteries (4-pack),1,3.84,02/02/19 19:54,"753 11th St, Dallas, TX 75001" +160354,20in Monitor,1,109.99,02/09/19 20:26,"600 North St, Seattle, WA 98101" +160355,AAA Batteries (4-pack),3,2.99,02/26/19 00:44,"956 9th St, Seattle, WA 98101" +160356,Wired Headphones,1,11.99,02/20/19 10:46,"983 Elm St, San Francisco, CA 94016" +160357,AAA Batteries (4-pack),1,2.99,02/05/19 15:09,"58 Willow St, San Francisco, CA 94016" +160358,AA Batteries (4-pack),1,3.84,02/16/19 10:46,"248 Lake St, Boston, MA 02215" +160359,iPhone,1,700,03/01/19 01:12,"305 South St, San Francisco, CA 94016" +160360,Wired Headphones,1,11.99,02/22/19 12:11,"594 Chestnut St, Boston, MA 02215" +160361,34in Ultrawide Monitor,1,379.99,02/03/19 13:49,"902 Cedar St, Boston, MA 02215" +160362,AAA Batteries (4-pack),1,2.99,02/12/19 19:17,"369 Elm St, New York City, NY 10001" +160363,Lightning Charging Cable,1,14.95,02/24/19 21:09,"674 12th St, New York City, NY 10001" +160364,Google Phone,1,600,02/19/19 22:32,"636 2nd St, New York City, NY 10001" +160365,Google Phone,1,600,02/24/19 19:25,"535 Maple St, Atlanta, GA 30301" +160366,USB-C Charging Cable,1,11.95,02/22/19 22:55,"489 Hill St, New York City, NY 10001" +160367,USB-C Charging Cable,1,11.95,02/24/19 08:28,"220 Ridge St, New York City, NY 10001" +160368,AA Batteries (4-pack),1,3.84,02/20/19 12:55,"723 Sunset St, Austin, TX 73301" +160369,Wired Headphones,1,11.99,02/27/19 19:36,"334 14th St, New York City, NY 10001" +160370,Flatscreen TV,1,300,02/17/19 21:36,"218 Elm St, San Francisco, CA 94016" +160371,iPhone,1,700,02/10/19 17:55,"198 Walnut St, Los Angeles, CA 90001" +160372,Wired Headphones,1,11.99,02/27/19 19:04,"391 Main St, Boston, MA 02215" +160373,Flatscreen TV,1,300,02/16/19 11:44,"824 Maple St, Los Angeles, CA 90001" +160374,27in FHD Monitor,1,149.99,02/06/19 11:06,"666 2nd St, Dallas, TX 75001" +160375,USB-C Charging Cable,1,11.95,02/02/19 19:52,"939 1st St, New York City, NY 10001" +160376,Lightning Charging Cable,1,14.95,02/11/19 17:27,"120 Center St, Los Angeles, CA 90001" +160377,Macbook Pro Laptop,1,1700,02/07/19 20:32,"922 9th St, San Francisco, CA 94016" +160378,Apple Airpods Headphones,1,150,02/06/19 20:16,"479 Johnson St, Los Angeles, CA 90001" +160379,Google Phone,1,600,02/14/19 17:13,"588 Spruce St, Seattle, WA 98101" +160380,Flatscreen TV,1,300,02/22/19 13:26,"859 9th St, New York City, NY 10001" +160381,Lightning Charging Cable,2,14.95,02/20/19 22:41,"364 Cedar St, Boston, MA 02215" +160382,USB-C Charging Cable,1,11.95,02/19/19 10:49,"102 Chestnut St, Dallas, TX 75001" +160383,Lightning Charging Cable,1,14.95,02/13/19 11:08,"31 Spruce St, New York City, NY 10001" +160384,AAA Batteries (4-pack),1,2.99,02/23/19 16:10,"964 Washington St, Austin, TX 73301" +160385,27in FHD Monitor,1,149.99,02/18/19 20:26,"893 Highland St, San Francisco, CA 94016" +160386,34in Ultrawide Monitor,1,379.99,02/01/19 17:53,"570 Hill St, Los Angeles, CA 90001" +160387,AAA Batteries (4-pack),1,2.99,02/19/19 00:05,"247 Willow St, Portland, ME 04101" +160388,AA Batteries (4-pack),1,3.84,02/22/19 22:17,"740 Lake St, Los Angeles, CA 90001" +160389,Wired Headphones,1,11.99,02/10/19 07:50,"168 Spruce St, New York City, NY 10001" +160390,USB-C Charging Cable,2,11.95,02/13/19 23:04,"714 Wilson St, San Francisco, CA 94016" +160391,AAA Batteries (4-pack),1,2.99,02/18/19 21:07,"804 12th St, San Francisco, CA 94016" +160392,AAA Batteries (4-pack),3,2.99,02/21/19 14:01,"383 Lakeview St, Austin, TX 73301" +160393,Apple Airpods Headphones,1,150,02/24/19 19:19,"130 10th St, Dallas, TX 75001" +160394,34in Ultrawide Monitor,1,379.99,02/17/19 00:40,"402 Hill St, San Francisco, CA 94016" +160395,Google Phone,1,600,02/07/19 18:47,"435 Chestnut St, Portland, OR 97035" +160396,Apple Airpods Headphones,1,150,02/09/19 22:37,"771 9th St, San Francisco, CA 94016" +160397,Apple Airpods Headphones,1,150,02/05/19 14:06,"430 11th St, San Francisco, CA 94016" +160398,Apple Airpods Headphones,1,150,02/15/19 20:48,"460 Maple St, San Francisco, CA 94016" +160399,Lightning Charging Cable,1,14.95,02/10/19 14:55,"628 Ridge St, Los Angeles, CA 90001" +160399,Google Phone,1,600,02/10/19 14:55,"628 Ridge St, Los Angeles, CA 90001" +160400,iPhone,1,700,02/24/19 13:54,"257 Meadow St, Los Angeles, CA 90001" +160401,27in FHD Monitor,1,149.99,02/22/19 15:58,"306 Willow St, Dallas, TX 75001" +160401,AAA Batteries (4-pack),1,2.99,02/22/19 15:58,"306 Willow St, Dallas, TX 75001" +160402,Wired Headphones,1,11.99,02/27/19 09:13,"399 11th St, New York City, NY 10001" +160403,Wired Headphones,1,11.99,02/16/19 21:10,"394 Maple St, San Francisco, CA 94016" +160404,AAA Batteries (4-pack),1,2.99,02/13/19 19:21,"307 Johnson St, Seattle, WA 98101" +160405,Wired Headphones,1,11.99,02/26/19 09:54,"846 Hill St, Austin, TX 73301" +160406,AA Batteries (4-pack),2,3.84,02/23/19 01:14,"436 Highland St, San Francisco, CA 94016" +160407,AA Batteries (4-pack),1,3.84,02/04/19 18:52,"939 5th St, New York City, NY 10001" +160408,27in FHD Monitor,1,149.99,02/24/19 20:15,"52 Cherry St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +160409,USB-C Charging Cable,2,11.95,02/23/19 15:37,"577 4th St, Los Angeles, CA 90001" +160410,Apple Airpods Headphones,1,150,02/11/19 10:02,"470 Lake St, Los Angeles, CA 90001" +160411,Macbook Pro Laptop,1,1700,02/25/19 15:45,"545 South St, Atlanta, GA 30301" +160412,USB-C Charging Cable,1,11.95,02/27/19 12:43,"330 Cedar St, Austin, TX 73301" +160413,AA Batteries (4-pack),1,3.84,02/08/19 18:10,"605 13th St, Los Angeles, CA 90001" +160414,AAA Batteries (4-pack),2,2.99,02/27/19 20:23,"479 14th St, Atlanta, GA 30301" +160415,Apple Airpods Headphones,1,150,02/05/19 23:10,"970 Maple St, Los Angeles, CA 90001" +160416,AA Batteries (4-pack),1,3.84,02/18/19 17:00,"515 Forest St, Dallas, TX 75001" +160417,AA Batteries (4-pack),2,3.84,02/07/19 23:16,"271 2nd St, New York City, NY 10001" +160418,Google Phone,1,600,02/22/19 23:32,"555 7th St, New York City, NY 10001" +160419,Apple Airpods Headphones,1,150,02/05/19 19:00,"449 Lincoln St, New York City, NY 10001" +160420,27in FHD Monitor,1,149.99,02/18/19 21:12,"198 Cherry St, Boston, MA 02215" +160421,20in Monitor,1,109.99,02/12/19 17:45,"969 Maple St, Austin, TX 73301" +,,,,, +160422,AA Batteries (4-pack),1,3.84,02/20/19 12:19,"117 Johnson St, Dallas, TX 75001" +160423,Google Phone,1,600,02/24/19 23:52,"172 Cedar St, Atlanta, GA 30301" +160424,Wired Headphones,1,11.99,02/05/19 12:07,"749 8th St, Los Angeles, CA 90001" +160425,Bose SoundSport Headphones,1,99.99,02/25/19 11:24,"710 Park St, New York City, NY 10001" +160426,AAA Batteries (4-pack),1,2.99,02/10/19 09:39,"45 River St, Los Angeles, CA 90001" +160427,Apple Airpods Headphones,1,150,02/13/19 07:56,"766 Jefferson St, San Francisco, CA 94016" +160428,Wired Headphones,1,11.99,02/23/19 15:29,"626 River St, San Francisco, CA 94016" +160429,Lightning Charging Cable,1,14.95,02/11/19 12:38,"663 Cedar St, Los Angeles, CA 90001" +160430,AAA Batteries (4-pack),1,2.99,02/05/19 19:12,"156 2nd St, San Francisco, CA 94016" +160431,Wired Headphones,1,11.99,02/21/19 11:29,"751 Main St, Boston, MA 02215" +160432,Google Phone,1,600,02/20/19 18:14,"454 8th St, San Francisco, CA 94016" +160433,27in 4K Gaming Monitor,1,389.99,02/11/19 23:37,"119 South St, San Francisco, CA 94016" +160434,Wired Headphones,1,11.99,02/19/19 11:02,"760 Meadow St, Los Angeles, CA 90001" +160435,iPhone,1,700,02/27/19 06:41,"836 13th St, New York City, NY 10001" +160435,Lightning Charging Cable,1,14.95,02/27/19 06:41,"836 13th St, New York City, NY 10001" +160436,USB-C Charging Cable,2,11.95,02/07/19 12:27,"251 Park St, Boston, MA 02215" +160437,Wired Headphones,2,11.99,02/14/19 09:55,"597 Maple St, Dallas, TX 75001" +160438,Apple Airpods Headphones,1,150,02/22/19 19:45,"871 7th St, San Francisco, CA 94016" +160439,34in Ultrawide Monitor,1,379.99,02/03/19 01:28,"68 Forest St, Portland, OR 97035" +160440,Apple Airpods Headphones,1,150,02/16/19 15:49,"97 Spruce St, Boston, MA 02215" +160441,Flatscreen TV,1,300,02/08/19 12:06,"545 Main St, San Francisco, CA 94016" +160442,iPhone,1,700,02/16/19 19:12,"116 7th St, Portland, OR 97035" +160442,Lightning Charging Cable,1,14.95,02/16/19 19:12,"116 7th St, Portland, OR 97035" +160443,27in 4K Gaming Monitor,1,389.99,02/04/19 20:48,"321 Lincoln St, San Francisco, CA 94016" +160444,ThinkPad Laptop,1,999.99,02/16/19 13:50,"300 8th St, Atlanta, GA 30301" +160445,iPhone,1,700,02/26/19 14:03,"381 Jackson St, Dallas, TX 75001" +160446,Lightning Charging Cable,1,14.95,02/28/19 07:17,"355 Chestnut St, Los Angeles, CA 90001" +160447,Macbook Pro Laptop,1,1700,02/23/19 09:34,"527 Hickory St, Dallas, TX 75001" +160448,AA Batteries (4-pack),1,3.84,02/27/19 18:07,"890 Willow St, Seattle, WA 98101" +160449,Apple Airpods Headphones,1,150,02/28/19 16:33,"808 Church St, New York City, NY 10001" +160450,Wired Headphones,1,11.99,02/03/19 14:26,"47 Wilson St, San Francisco, CA 94016" +160451,Bose SoundSport Headphones,1,99.99,02/18/19 11:54,"243 Maple St, Los Angeles, CA 90001" +160452,Apple Airpods Headphones,1,150,02/08/19 06:04,"349 Sunset St, San Francisco, CA 94016" +160453,Apple Airpods Headphones,1,150,02/24/19 18:30,"851 1st St, Seattle, WA 98101" +160453,27in FHD Monitor,1,149.99,02/24/19 18:30,"851 1st St, Seattle, WA 98101" +160454,AAA Batteries (4-pack),2,2.99,02/23/19 15:50,"201 West St, New York City, NY 10001" +160455,Wired Headphones,1,11.99,02/25/19 16:47,"621 7th St, Portland, OR 97035" +160456,iPhone,1,700,02/19/19 23:28,"383 Willow St, San Francisco, CA 94016" +160457,USB-C Charging Cable,1,11.95,02/26/19 08:45,"898 Walnut St, Los Angeles, CA 90001" +160458,iPhone,1,700,02/20/19 15:35,"640 13th St, San Francisco, CA 94016" +160458,Lightning Charging Cable,1,14.95,02/20/19 15:35,"640 13th St, San Francisco, CA 94016" +160459,Apple Airpods Headphones,1,150,02/16/19 10:30,"291 6th St, Los Angeles, CA 90001" +160460,AA Batteries (4-pack),1,3.84,02/01/19 16:15,"758 9th St, Seattle, WA 98101" +160461,Apple Airpods Headphones,1,150,02/14/19 18:11,"737 Walnut St, Dallas, TX 75001" +160462,USB-C Charging Cable,1,11.95,02/21/19 07:30,"915 10th St, Los Angeles, CA 90001" +160463,AA Batteries (4-pack),1,3.84,02/15/19 14:44,"620 12th St, Seattle, WA 98101" +160464,Flatscreen TV,1,300,02/04/19 00:33,"494 Forest St, San Francisco, CA 94016" +160465,USB-C Charging Cable,1,11.95,02/11/19 07:40,"819 1st St, Los Angeles, CA 90001" +160466,Apple Airpods Headphones,1,150,02/24/19 19:45,"872 Maple St, New York City, NY 10001" +160467,Macbook Pro Laptop,1,1700,02/14/19 09:33,"164 Spruce St, New York City, NY 10001" +160468,iPhone,1,700,02/09/19 17:09,"208 10th St, Austin, TX 73301" +160469,Wired Headphones,1,11.99,02/25/19 18:55,"835 Willow St, Austin, TX 73301" +160470,Macbook Pro Laptop,1,1700,02/21/19 18:54,"927 2nd St, Los Angeles, CA 90001" +160471,Wired Headphones,1,11.99,02/02/19 14:49,"577 Cedar St, Austin, TX 73301" +160472,Lightning Charging Cable,1,14.95,02/13/19 22:53,"533 Lakeview St, Boston, MA 02215" +160473,AA Batteries (4-pack),1,3.84,02/11/19 22:09,"379 Cedar St, Los Angeles, CA 90001" +160474,USB-C Charging Cable,1,11.95,02/15/19 08:37,"201 Park St, San Francisco, CA 94016" +160475,AAA Batteries (4-pack),1,2.99,02/22/19 20:30,"663 Center St, Boston, MA 02215" +160476,Wired Headphones,1,11.99,02/15/19 19:52,"86 Chestnut St, Dallas, TX 75001" +160477,34in Ultrawide Monitor,1,379.99,02/24/19 11:57,"640 Forest St, Portland, OR 97035" +160478,ThinkPad Laptop,1,999.99,02/13/19 10:13,"274 9th St, San Francisco, CA 94016" +160479,AAA Batteries (4-pack),4,2.99,02/25/19 20:21,"987 Jackson St, Boston, MA 02215" +160480,27in 4K Gaming Monitor,1,389.99,02/04/19 11:08,"775 Maple St, Los Angeles, CA 90001" +160481,27in 4K Gaming Monitor,1,389.99,02/12/19 11:56,"235 Wilson St, Austin, TX 73301" +160482,Lightning Charging Cable,1,14.95,02/17/19 18:27,"847 8th St, Los Angeles, CA 90001" +160483,Lightning Charging Cable,1,14.95,02/19/19 13:28,"397 Jackson St, Los Angeles, CA 90001" +160484,Lightning Charging Cable,1,14.95,02/25/19 18:05,"379 4th St, Portland, OR 97035" +160485,AA Batteries (4-pack),1,3.84,02/13/19 00:29,"784 5th St, Seattle, WA 98101" +160486,Bose SoundSport Headphones,1,99.99,02/11/19 16:48,"334 Elm St, Austin, TX 73301" +160487,AAA Batteries (4-pack),1,2.99,02/12/19 06:24,"163 14th St, Dallas, TX 75001" +160488,iPhone,1,700,02/24/19 03:12,"130 Lake St, Los Angeles, CA 90001" +160489,Wired Headphones,1,11.99,02/05/19 03:39,"752 Walnut St, Boston, MA 02215" +160490,ThinkPad Laptop,1,999.99,02/13/19 19:58,"505 11th St, San Francisco, CA 94016" +160491,AAA Batteries (4-pack),1,2.99,02/19/19 10:27,"993 5th St, Los Angeles, CA 90001" +160492,20in Monitor,1,109.99,02/21/19 09:42,"667 Forest St, Austin, TX 73301" +160493,Wired Headphones,1,11.99,02/05/19 18:34,"6 Pine St, Boston, MA 02215" +160494,Bose SoundSport Headphones,1,99.99,02/08/19 21:15,"522 Willow St, San Francisco, CA 94016" +160495,27in 4K Gaming Monitor,1,389.99,02/15/19 16:54,"979 Church St, Boston, MA 02215" +160495,USB-C Charging Cable,1,11.95,02/15/19 16:54,"979 Church St, Boston, MA 02215" +160496,Google Phone,1,600,02/11/19 23:56,"66 Maple St, San Francisco, CA 94016" +160497,AAA Batteries (4-pack),3,2.99,02/11/19 17:54,"379 9th St, Atlanta, GA 30301" +160498,iPhone,1,700,02/14/19 20:08,"645 7th St, Seattle, WA 98101" +160499,27in FHD Monitor,1,149.99,02/16/19 00:20,"937 West St, San Francisco, CA 94016" +160500,AAA Batteries (4-pack),1,2.99,02/17/19 11:15,"249 Sunset St, Los Angeles, CA 90001" +160501,Macbook Pro Laptop,1,1700,02/24/19 07:20,"61 Church St, Boston, MA 02215" +160502,Apple Airpods Headphones,1,150,02/18/19 12:12,"837 Wilson St, San Francisco, CA 94016" +160503,USB-C Charging Cable,1,11.95,02/24/19 17:37,"864 8th St, San Francisco, CA 94016" +160504,27in 4K Gaming Monitor,1,389.99,02/17/19 04:55,"637 12th St, Boston, MA 02215" +160505,Flatscreen TV,1,300,02/22/19 15:24,"214 10th St, Boston, MA 02215" +160506,USB-C Charging Cable,1,11.95,02/05/19 06:08,"751 Church St, San Francisco, CA 94016" +160507,AAA Batteries (4-pack),5,2.99,02/07/19 16:47,"228 Park St, New York City, NY 10001" +160508,Bose SoundSport Headphones,1,99.99,02/12/19 13:02,"627 Cherry St, Dallas, TX 75001" +160509,Bose SoundSport Headphones,1,99.99,02/20/19 20:38,"964 Walnut St, Dallas, TX 75001" +160510,AA Batteries (4-pack),2,3.84,02/20/19 13:17,"316 North St, Atlanta, GA 30301" +160511,AA Batteries (4-pack),2,3.84,02/22/19 13:10,"452 Lakeview St, Austin, TX 73301" +160512,20in Monitor,1,109.99,02/10/19 02:56,"323 2nd St, Austin, TX 73301" +160513,Google Phone,1,600,02/25/19 02:37,"237 Cedar St, San Francisco, CA 94016" +160514,iPhone,1,700,02/08/19 13:17,"54 Church St, Atlanta, GA 30301" +160514,Macbook Pro Laptop,1,1700,02/08/19 13:17,"54 Church St, Atlanta, GA 30301" +160515,34in Ultrawide Monitor,1,379.99,02/04/19 13:07,"987 Center St, New York City, NY 10001" +160516,27in 4K Gaming Monitor,1,389.99,02/12/19 22:26,"713 Park St, Dallas, TX 75001" +160517,Wired Headphones,1,11.99,02/19/19 17:06,"933 Maple St, New York City, NY 10001" +160518,AA Batteries (4-pack),1,3.84,02/27/19 10:55,"217 Willow St, San Francisco, CA 94016" +160519,Lightning Charging Cable,1,14.95,02/22/19 11:15,"639 9th St, San Francisco, CA 94016" +160520,Apple Airpods Headphones,1,150,02/16/19 17:35,"716 Dogwood St, New York City, NY 10001" +160521,Lightning Charging Cable,1,14.95,02/19/19 17:17,"706 Center St, Los Angeles, CA 90001" +160522,AAA Batteries (4-pack),1,2.99,02/16/19 22:03,"637 Main St, Portland, OR 97035" +160523,Apple Airpods Headphones,1,150,02/23/19 16:50,"560 Church St, Boston, MA 02215" +160524,Lightning Charging Cable,1,14.95,02/19/19 13:35,"932 Pine St, New York City, NY 10001" +160525,34in Ultrawide Monitor,1,379.99,02/18/19 23:46,"596 8th St, Boston, MA 02215" +160526,AAA Batteries (4-pack),1,2.99,02/05/19 22:58,"388 Cherry St, San Francisco, CA 94016" +160527,Lightning Charging Cable,1,14.95,02/09/19 15:46,"325 Lake St, Los Angeles, CA 90001" +160528,Wired Headphones,1,11.99,02/23/19 12:36,"838 Wilson St, Portland, ME 04101" +160529,USB-C Charging Cable,1,11.95,02/17/19 23:02,"632 Meadow St, Seattle, WA 98101" +160530,Apple Airpods Headphones,1,150,02/07/19 20:20,"920 Cherry St, New York City, NY 10001" +160531,AAA Batteries (4-pack),1,2.99,02/05/19 15:05,"978 South St, Atlanta, GA 30301" +160532,Flatscreen TV,1,300,02/06/19 13:53,"930 Sunset St, San Francisco, CA 94016" +160533,AA Batteries (4-pack),1,3.84,02/04/19 17:50,"75 Walnut St, Dallas, TX 75001" +160534,Wired Headphones,1,11.99,02/02/19 06:34,"476 West St, Boston, MA 02215" +160535,iPhone,1,700,02/22/19 21:26,"622 Lakeview St, San Francisco, CA 94016" +160536,Google Phone,1,600,02/24/19 10:58,"286 2nd St, Atlanta, GA 30301" +160537,Wired Headphones,2,11.99,02/19/19 05:19,"30 Washington St, New York City, NY 10001" +160538,Flatscreen TV,1,300,02/06/19 17:31,"510 9th St, San Francisco, CA 94016" +160539,ThinkPad Laptop,1,999.99,02/07/19 16:54,"734 Lake St, San Francisco, CA 94016" +160540,ThinkPad Laptop,1,999.99,02/05/19 04:22,"821 Spruce St, Los Angeles, CA 90001" +160541,AA Batteries (4-pack),3,3.84,02/20/19 21:23,"513 Spruce St, New York City, NY 10001" +160542,USB-C Charging Cable,1,11.95,02/14/19 21:59,"135 7th St, New York City, NY 10001" +160543,AAA Batteries (4-pack),4,2.99,02/22/19 14:05,"139 Willow St, Seattle, WA 98101" +160544,iPhone,1,700,02/24/19 11:55,"111 Center St, San Francisco, CA 94016" +160545,USB-C Charging Cable,1,11.95,02/08/19 12:15,"835 12th St, Dallas, TX 75001" +160546,Wired Headphones,1,11.99,02/10/19 04:49,"946 5th St, San Francisco, CA 94016" +160547,ThinkPad Laptop,1,999.99,02/07/19 18:31,"342 13th St, Atlanta, GA 30301" +160548,20in Monitor,1,109.99,02/28/19 18:57,"432 Center St, New York City, NY 10001" +160549,Macbook Pro Laptop,1,1700,02/10/19 02:29,"153 Johnson St, New York City, NY 10001" +160550,AA Batteries (4-pack),2,3.84,02/14/19 13:18,"225 Jefferson St, San Francisco, CA 94016" +160551,Apple Airpods Headphones,1,150,02/22/19 23:24,"41 Jackson St, Los Angeles, CA 90001" +160552,AAA Batteries (4-pack),3,2.99,02/18/19 10:17,"108 Willow St, San Francisco, CA 94016" +160553,Lightning Charging Cable,1,14.95,02/03/19 19:14,"380 Lakeview St, Seattle, WA 98101" +,,,,, +160554,Lightning Charging Cable,1,14.95,02/19/19 18:52,"586 12th St, Seattle, WA 98101" +160555,27in 4K Gaming Monitor,1,389.99,02/22/19 15:08,"432 Pine St, San Francisco, CA 94016" +160556,Bose SoundSport Headphones,1,99.99,02/05/19 21:05,"271 Pine St, New York City, NY 10001" +160557,Bose SoundSport Headphones,1,99.99,02/06/19 12:22,"847 Hickory St, New York City, NY 10001" +160558,Wired Headphones,1,11.99,02/07/19 06:16,"472 Jackson St, San Francisco, CA 94016" +160559,USB-C Charging Cable,1,11.95,02/07/19 18:45,"332 Center St, Seattle, WA 98101" +160560,Bose SoundSport Headphones,1,99.99,02/11/19 14:29,"531 Ridge St, San Francisco, CA 94016" +160561,Bose SoundSport Headphones,1,99.99,02/08/19 23:19,"728 Forest St, San Francisco, CA 94016" +160562,Wired Headphones,1,11.99,02/05/19 00:35,"810 Willow St, San Francisco, CA 94016" +160563,Wired Headphones,1,11.99,02/03/19 17:49,"749 Johnson St, Seattle, WA 98101" +160564,AAA Batteries (4-pack),1,2.99,02/21/19 14:31,"286 Park St, Dallas, TX 75001" +160565,AA Batteries (4-pack),1,3.84,02/22/19 16:00,"94 Jackson St, Portland, OR 97035" +160566,Bose SoundSport Headphones,1,99.99,02/19/19 16:00,"454 13th St, Los Angeles, CA 90001" +160567,USB-C Charging Cable,1,11.95,02/18/19 17:13,"623 Hickory St, New York City, NY 10001" +160568,AAA Batteries (4-pack),3,2.99,02/19/19 06:13,"175 9th St, New York City, NY 10001" +160569,20in Monitor,1,109.99,02/04/19 07:29,"33 North St, Boston, MA 02215" +160570,Apple Airpods Headphones,1,150,02/24/19 22:27,"977 12th St, New York City, NY 10001" +160571,Bose SoundSport Headphones,1,99.99,02/07/19 13:25,"288 10th St, Atlanta, GA 30301" +160572,Wired Headphones,1,11.99,02/20/19 20:36,"57 7th St, Dallas, TX 75001" +160573,USB-C Charging Cable,1,11.95,02/18/19 13:24,"431 13th St, San Francisco, CA 94016" +160574,Lightning Charging Cable,1,14.95,02/07/19 19:53,"791 Johnson St, Portland, OR 97035" +160575,Bose SoundSport Headphones,1,99.99,02/15/19 19:37,"481 Sunset St, San Francisco, CA 94016" +160576,Wired Headphones,1,11.99,02/16/19 12:06,"714 9th St, Boston, MA 02215" +160577,Google Phone,1,600,02/02/19 19:25,"90 Meadow St, Los Angeles, CA 90001" +160577,Wired Headphones,1,11.99,02/02/19 19:25,"90 Meadow St, Los Angeles, CA 90001" +160578,USB-C Charging Cable,1,11.95,02/21/19 14:18,"879 12th St, Boston, MA 02215" +160579,Macbook Pro Laptop,1,1700,02/01/19 17:36,"176 West St, Seattle, WA 98101" +160580,20in Monitor,1,109.99,02/13/19 02:49,"886 Jefferson St, Portland, OR 97035" +160581,Wired Headphones,1,11.99,02/24/19 17:28,"608 Lakeview St, San Francisco, CA 94016" +160582,USB-C Charging Cable,2,11.95,02/13/19 10:45,"132 South St, San Francisco, CA 94016" +160583,27in 4K Gaming Monitor,1,389.99,02/09/19 17:39,"69 West St, Dallas, TX 75001" +160584,AA Batteries (4-pack),1,3.84,02/15/19 20:50,"671 Sunset St, Los Angeles, CA 90001" +160585,Wired Headphones,1,11.99,02/05/19 13:55,"788 Forest St, Dallas, TX 75001" +160586,AA Batteries (4-pack),2,3.84,02/02/19 17:19,"775 Forest St, New York City, NY 10001" +160587,ThinkPad Laptop,1,999.99,02/23/19 15:58,"415 Pine St, Los Angeles, CA 90001" +160588,AA Batteries (4-pack),2,3.84,02/03/19 13:21,"477 10th St, Dallas, TX 75001" +160589,Wired Headphones,1,11.99,02/11/19 18:35,"533 Adams St, Dallas, TX 75001" +160590,Wired Headphones,1,11.99,02/06/19 11:07,"495 1st St, San Francisco, CA 94016" +160591,USB-C Charging Cable,1,11.95,02/13/19 16:53,"625 Jefferson St, Boston, MA 02215" +160592,34in Ultrawide Monitor,1,379.99,02/11/19 19:29,"837 River St, Atlanta, GA 30301" +160593,AAA Batteries (4-pack),1,2.99,02/08/19 22:06,"661 Cedar St, San Francisco, CA 94016" +160594,ThinkPad Laptop,1,999.99,02/23/19 17:08,"299 1st St, San Francisco, CA 94016" +160595,20in Monitor,1,109.99,02/20/19 13:45,"327 South St, Atlanta, GA 30301" +160596,27in 4K Gaming Monitor,1,389.99,02/16/19 16:29,"567 12th St, New York City, NY 10001" +160597,Apple Airpods Headphones,1,150,02/07/19 22:54,"290 Pine St, San Francisco, CA 94016" +160598,AA Batteries (4-pack),1,3.84,02/02/19 19:11,"395 7th St, Seattle, WA 98101" +160599,AA Batteries (4-pack),1,3.84,02/07/19 19:24,"665 Jackson St, Boston, MA 02215" +160600,USB-C Charging Cable,1,11.95,02/09/19 18:01,"617 11th St, San Francisco, CA 94016" +160601,Google Phone,1,600,02/08/19 15:59,"807 River St, Los Angeles, CA 90001" +160602,AAA Batteries (4-pack),1,2.99,02/28/19 22:26,"98 Johnson St, Atlanta, GA 30301" +160603,Wired Headphones,1,11.99,02/08/19 20:55,"689 Lake St, San Francisco, CA 94016" +160604,USB-C Charging Cable,1,11.95,02/18/19 08:33,"243 River St, Portland, OR 97035" +160605,AAA Batteries (4-pack),1,2.99,02/10/19 18:53,"897 2nd St, San Francisco, CA 94016" +160606,USB-C Charging Cable,1,11.95,02/12/19 16:16,"656 Chestnut St, San Francisco, CA 94016" +160607,Lightning Charging Cable,1,14.95,02/05/19 13:54,"440 5th St, Boston, MA 02215" +160608,Macbook Pro Laptop,1,1700,02/08/19 11:56,"426 West St, Portland, OR 97035" +160609,USB-C Charging Cable,1,11.95,02/11/19 19:27,"803 Meadow St, New York City, NY 10001" +160610,Wired Headphones,1,11.99,02/11/19 06:22,"662 West St, Portland, OR 97035" +160611,Apple Airpods Headphones,1,150,02/17/19 10:01,"342 Washington St, Austin, TX 73301" +160612,Apple Airpods Headphones,1,150,02/14/19 05:33,"736 Lincoln St, Portland, OR 97035" +160613,27in 4K Gaming Monitor,1,389.99,02/16/19 12:06,"217 Cedar St, Los Angeles, CA 90001" +160614,USB-C Charging Cable,2,11.95,02/15/19 11:38,"523 Meadow St, Atlanta, GA 30301" +160614,Apple Airpods Headphones,1,150,02/15/19 11:38,"523 Meadow St, Atlanta, GA 30301" +160615,Lightning Charging Cable,1,14.95,02/11/19 17:42,"979 Chestnut St, San Francisco, CA 94016" +160616,AA Batteries (4-pack),1,3.84,02/10/19 09:50,"83 4th St, New York City, NY 10001" +160617,AAA Batteries (4-pack),2,2.99,02/07/19 14:48,"491 Church St, Los Angeles, CA 90001" +160618,USB-C Charging Cable,2,11.95,02/18/19 11:54,"799 North St, Portland, OR 97035" +160619,27in 4K Gaming Monitor,1,389.99,02/03/19 11:09,"102 Lincoln St, Seattle, WA 98101" +160620,AA Batteries (4-pack),1,3.84,02/12/19 07:59,"781 Pine St, San Francisco, CA 94016" +160621,AAA Batteries (4-pack),1,2.99,02/28/19 11:50,"952 Hickory St, Atlanta, GA 30301" +160622,Lightning Charging Cable,1,14.95,02/03/19 21:56,"745 13th St, Portland, OR 97035" +160623,Wired Headphones,1,11.99,02/25/19 10:39,"203 Jefferson St, Atlanta, GA 30301" +160624,Lightning Charging Cable,1,14.95,02/18/19 08:05,"980 River St, San Francisco, CA 94016" +160625,USB-C Charging Cable,1,11.95,02/02/19 23:37,"770 Elm St, Atlanta, GA 30301" +160626,AA Batteries (4-pack),1,3.84,02/09/19 11:30,"200 Hill St, Austin, TX 73301" +160627,Apple Airpods Headphones,1,150,02/10/19 13:46,"265 North St, Boston, MA 02215" +160628,USB-C Charging Cable,1,11.95,02/20/19 19:19,"118 11th St, Dallas, TX 75001" +160629,Wired Headphones,1,11.99,02/10/19 13:15,"175 Center St, Boston, MA 02215" +160630,Lightning Charging Cable,1,14.95,02/18/19 10:16,"888 North St, San Francisco, CA 94016" +160631,USB-C Charging Cable,1,11.95,02/23/19 23:02,"485 Center St, Los Angeles, CA 90001" +160632,Bose SoundSport Headphones,1,99.99,02/12/19 10:51,"902 7th St, Los Angeles, CA 90001" +160633,Wired Headphones,1,11.99,02/03/19 21:10,"657 River St, Boston, MA 02215" +160634,AAA Batteries (4-pack),1,2.99,02/04/19 16:31,"99 Center St, San Francisco, CA 94016" +160635,iPhone,1,700,02/06/19 15:32,"937 South St, Los Angeles, CA 90001" +160635,Apple Airpods Headphones,1,150,02/06/19 15:32,"937 South St, Los Angeles, CA 90001" +160636,AAA Batteries (4-pack),2,2.99,02/27/19 09:42,"905 Highland St, Atlanta, GA 30301" +160636,AAA Batteries (4-pack),2,2.99,02/27/19 09:42,"905 Highland St, Atlanta, GA 30301" +160637,Macbook Pro Laptop,1,1700,02/24/19 08:28,"471 Jefferson St, New York City, NY 10001" +160638,Lightning Charging Cable,1,14.95,02/27/19 17:27,"254 7th St, San Francisco, CA 94016" +160639,Bose SoundSport Headphones,1,99.99,02/18/19 16:46,"686 South St, Atlanta, GA 30301" +160640,Lightning Charging Cable,1,14.95,02/28/19 19:14,"860 West St, Portland, ME 04101" +160641,AAA Batteries (4-pack),3,2.99,02/05/19 11:01,"320 Madison St, San Francisco, CA 94016" +160642,iPhone,1,700,02/17/19 15:56,"664 5th St, Dallas, TX 75001" +160643,Bose SoundSport Headphones,1,99.99,02/08/19 07:14,"213 Park St, Seattle, WA 98101" +160644,Bose SoundSport Headphones,1,99.99,02/23/19 16:57,"100 Park St, San Francisco, CA 94016" +160645,Lightning Charging Cable,2,14.95,02/01/19 20:58,"837 Maple St, Seattle, WA 98101" +160646,Wired Headphones,1,11.99,02/20/19 15:12,"689 Jefferson St, San Francisco, CA 94016" +160647,Lightning Charging Cable,1,14.95,02/02/19 15:52,"525 Adams St, Portland, OR 97035" +160648,Apple Airpods Headphones,1,150,02/03/19 20:02,"574 Spruce St, San Francisco, CA 94016" +160649,Bose SoundSport Headphones,1,99.99,02/11/19 22:43,"103 Main St, San Francisco, CA 94016" +160650,Apple Airpods Headphones,1,150,02/21/19 11:50,"669 Johnson St, Los Angeles, CA 90001" +160651,Flatscreen TV,1,300,02/24/19 13:12,"538 Dogwood St, San Francisco, CA 94016" +160652,Wired Headphones,1,11.99,02/16/19 11:30,"313 West St, New York City, NY 10001" +160653,AA Batteries (4-pack),1,3.84,02/14/19 18:21,"848 5th St, Los Angeles, CA 90001" +160654,Apple Airpods Headphones,1,150,02/21/19 17:37,"664 8th St, New York City, NY 10001" +160654,Apple Airpods Headphones,1,150,02/21/19 17:37,"664 8th St, New York City, NY 10001" +160655,AA Batteries (4-pack),2,3.84,02/28/19 21:02,"179 Wilson St, San Francisco, CA 94016" +160656,27in 4K Gaming Monitor,1,389.99,02/11/19 11:41,"193 Elm St, Boston, MA 02215" +160657,USB-C Charging Cable,1,11.95,02/05/19 23:33,"490 Washington St, New York City, NY 10001" +160658,Bose SoundSport Headphones,1,99.99,02/23/19 22:05,"556 Adams St, Los Angeles, CA 90001" +160659,Wired Headphones,1,11.99,02/26/19 15:10,"61 Wilson St, New York City, NY 10001" +160660,Google Phone,1,600,02/17/19 22:15,"21 Johnson St, Boston, MA 02215" +160660,USB-C Charging Cable,1,11.95,02/17/19 22:15,"21 Johnson St, Boston, MA 02215" +160661,Apple Airpods Headphones,1,150,02/09/19 22:39,"528 North St, San Francisco, CA 94016" +160662,AA Batteries (4-pack),2,3.84,02/09/19 10:35,"763 Hickory St, Atlanta, GA 30301" +160663,Lightning Charging Cable,1,14.95,02/11/19 15:33,"786 Sunset St, Los Angeles, CA 90001" +160664,USB-C Charging Cable,1,11.95,02/16/19 10:37,"187 Highland St, Seattle, WA 98101" +160665,AAA Batteries (4-pack),1,2.99,02/28/19 21:19,"246 South St, San Francisco, CA 94016" +160666,AA Batteries (4-pack),4,3.84,02/02/19 21:05,"443 River St, San Francisco, CA 94016" +160667,USB-C Charging Cable,1,11.95,02/12/19 12:28,"945 Maple St, New York City, NY 10001" +160668,AA Batteries (4-pack),1,3.84,02/14/19 09:31,"252 Walnut St, Portland, OR 97035" +160669,USB-C Charging Cable,1,11.95,02/10/19 12:22,"665 Cherry St, Los Angeles, CA 90001" +160670,USB-C Charging Cable,1,11.95,02/01/19 17:01,"890 Forest St, San Francisco, CA 94016" +160671,AA Batteries (4-pack),1,3.84,02/22/19 15:07,"68 Forest St, Seattle, WA 98101" +160672,Bose SoundSport Headphones,1,99.99,02/09/19 17:32,"810 10th St, Los Angeles, CA 90001" +160673,20in Monitor,1,109.99,02/23/19 21:54,"573 Lakeview St, Atlanta, GA 30301" +160674,Apple Airpods Headphones,1,150,02/15/19 18:21,"113 Cedar St, San Francisco, CA 94016" +160675,USB-C Charging Cable,1,11.95,02/18/19 19:41,"762 12th St, San Francisco, CA 94016" +160676,Bose SoundSport Headphones,1,99.99,02/28/19 16:10,"587 Adams St, New York City, NY 10001" +160677,Apple Airpods Headphones,1,150,02/20/19 01:08,"491 Jefferson St, Atlanta, GA 30301" +160678,Apple Airpods Headphones,1,150,02/07/19 18:21,"49 North St, Seattle, WA 98101" +160679,iPhone,1,700,02/04/19 20:01,"230 Ridge St, San Francisco, CA 94016" +160680,20in Monitor,1,109.99,02/21/19 20:38,"716 South St, Los Angeles, CA 90001" +160681,Lightning Charging Cable,1,14.95,02/07/19 13:44,"722 Maple St, Austin, TX 73301" +,,,,, +160682,USB-C Charging Cable,1,11.95,02/17/19 08:58,"680 Washington St, San Francisco, CA 94016" +160683,Lightning Charging Cable,1,14.95,02/17/19 14:13,"347 Meadow St, Los Angeles, CA 90001" +160684,34in Ultrawide Monitor,1,379.99,02/06/19 17:49,"67 Walnut St, New York City, NY 10001" +160685,Lightning Charging Cable,1,14.95,02/20/19 15:25,"618 Madison St, San Francisco, CA 94016" +160686,Wired Headphones,1,11.99,02/10/19 09:09,"596 14th St, New York City, NY 10001" +160687,AAA Batteries (4-pack),1,2.99,02/14/19 21:14,"755 Lakeview St, Boston, MA 02215" +160688,AAA Batteries (4-pack),1,2.99,02/12/19 16:47,"638 Meadow St, Dallas, TX 75001" +160689,USB-C Charging Cable,1,11.95,02/09/19 00:48,"370 Church St, Atlanta, GA 30301" +160690,Bose SoundSport Headphones,1,99.99,02/10/19 21:20,"448 Highland St, New York City, NY 10001" +160691,iPhone,1,700,02/08/19 18:26,"642 14th St, New York City, NY 10001" +160691,Lightning Charging Cable,1,14.95,02/08/19 18:26,"642 14th St, New York City, NY 10001" +160692,USB-C Charging Cable,1,11.95,02/25/19 07:15,"70 4th St, Boston, MA 02215" +160693,AA Batteries (4-pack),1,3.84,02/11/19 21:27,"208 10th St, Los Angeles, CA 90001" +160694,Wired Headphones,1,11.99,02/10/19 17:19,"176 West St, Boston, MA 02215" +160695,AA Batteries (4-pack),2,3.84,02/08/19 15:59,"665 Wilson St, San Francisco, CA 94016" +160696,Apple Airpods Headphones,1,150,02/28/19 19:35,"614 Cherry St, Austin, TX 73301" +160697,34in Ultrawide Monitor,1,379.99,02/02/19 18:27,"244 Church St, New York City, NY 10001" +160698,LG Washing Machine,1,600.0,02/22/19 09:02,"290 10th St, Los Angeles, CA 90001" +160699,USB-C Charging Cable,1,11.95,02/19/19 04:40,"471 2nd St, Los Angeles, CA 90001" +160700,Apple Airpods Headphones,1,150,02/01/19 15:06,"506 8th St, Los Angeles, CA 90001" +160701,Apple Airpods Headphones,1,150,02/08/19 13:27,"676 Cherry St, Seattle, WA 98101" +160702,AAA Batteries (4-pack),1,2.99,02/03/19 21:32,"399 1st St, New York City, NY 10001" +160703,Macbook Pro Laptop,1,1700,02/07/19 08:26,"52 Spruce St, San Francisco, CA 94016" +160704,Macbook Pro Laptop,1,1700,02/18/19 06:31,"388 Madison St, Portland, OR 97035" +,,,,, +160705,Bose SoundSport Headphones,1,99.99,02/02/19 19:22,"22 Hill St, Dallas, TX 75001" +160706,Bose SoundSport Headphones,1,99.99,02/02/19 11:55,"232 Lakeview St, San Francisco, CA 94016" +160707,AAA Batteries (4-pack),2,2.99,02/04/19 13:39,"699 Wilson St, Portland, OR 97035" +160708,AA Batteries (4-pack),3,3.84,02/23/19 08:34,"566 Elm St, San Francisco, CA 94016" +160709,iPhone,1,700,02/13/19 13:59,"714 9th St, Portland, OR 97035" +160710,Bose SoundSport Headphones,1,99.99,02/09/19 18:03,"709 Cedar St, Austin, TX 73301" +160711,Apple Airpods Headphones,1,150,02/05/19 02:22,"139 Pine St, San Francisco, CA 94016" +160712,Bose SoundSport Headphones,1,99.99,02/12/19 14:51,"687 11th St, Dallas, TX 75001" +160713,USB-C Charging Cable,1,11.95,02/11/19 17:06,"741 Meadow St, Boston, MA 02215" +160714,USB-C Charging Cable,1,11.95,02/07/19 13:02,"738 Lakeview St, San Francisco, CA 94016" +160715,34in Ultrawide Monitor,1,379.99,02/02/19 10:49,"729 12th St, Los Angeles, CA 90001" +160716,Lightning Charging Cable,1,14.95,02/05/19 19:14,"368 6th St, Atlanta, GA 30301" +160717,USB-C Charging Cable,1,11.95,02/03/19 07:39,"261 Elm St, Boston, MA 02215" +160718,AA Batteries (4-pack),1,3.84,02/08/19 15:31,"577 Spruce St, San Francisco, CA 94016" +160719,AA Batteries (4-pack),1,3.84,02/03/19 12:24,"312 14th St, Seattle, WA 98101" +160720,AA Batteries (4-pack),2,3.84,02/21/19 15:22,"54 5th St, Boston, MA 02215" +160721,27in FHD Monitor,1,149.99,02/23/19 09:50,"103 10th St, Boston, MA 02215" +160722,Bose SoundSport Headphones,1,99.99,02/15/19 08:49,"19 1st St, New York City, NY 10001" +160723,AA Batteries (4-pack),1,3.84,02/07/19 16:14,"250 7th St, Los Angeles, CA 90001" +160724,Apple Airpods Headphones,1,150,02/01/19 10:35,"973 Jackson St, Portland, ME 04101" +160725,20in Monitor,1,109.99,02/04/19 07:48,"968 10th St, Boston, MA 02215" +160726,Apple Airpods Headphones,1,150,02/28/19 22:38,"280 Lakeview St, Portland, ME 04101" +160727,Wired Headphones,1,11.99,02/03/19 18:15,"153 Walnut St, Austin, TX 73301" +160728,20in Monitor,1,109.99,02/26/19 12:43,"557 Lake St, Atlanta, GA 30301" +160729,AA Batteries (4-pack),1,3.84,02/09/19 18:56,"207 Madison St, San Francisco, CA 94016" +160730,USB-C Charging Cable,2,11.95,02/12/19 17:11,"706 11th St, New York City, NY 10001" +160731,Apple Airpods Headphones,1,150,02/04/19 03:47,"782 Forest St, Los Angeles, CA 90001" +160732,34in Ultrawide Monitor,1,379.99,02/09/19 09:52,"180 Wilson St, New York City, NY 10001" +160733,Lightning Charging Cable,1,14.95,02/10/19 13:25,"345 Jefferson St, Seattle, WA 98101" +160734,20in Monitor,1,109.99,02/06/19 12:45,"233 1st St, Portland, OR 97035" +160735,Wired Headphones,1,11.99,02/07/19 10:23,"919 6th St, New York City, NY 10001" +160736,Macbook Pro Laptop,1,1700,02/13/19 09:03,"960 Park St, Dallas, TX 75001" +160737,USB-C Charging Cable,1,11.95,02/14/19 20:41,"806 4th St, Austin, TX 73301" +160738,Apple Airpods Headphones,1,150,02/09/19 14:35,"313 West St, Los Angeles, CA 90001" +160739,AA Batteries (4-pack),1,3.84,02/26/19 14:54,"283 Sunset St, Los Angeles, CA 90001" +160740,Bose SoundSport Headphones,1,99.99,02/27/19 17:19,"31 Lakeview St, San Francisco, CA 94016" +160741,AA Batteries (4-pack),2,3.84,02/05/19 15:40,"578 Park St, Los Angeles, CA 90001" +160742,AAA Batteries (4-pack),2,2.99,02/15/19 17:25,"465 Madison St, Austin, TX 73301" +160743,AAA Batteries (4-pack),2,2.99,02/27/19 07:48,"53 Jefferson St, Atlanta, GA 30301" +160744,iPhone,1,700,02/16/19 19:22,"906 Maple St, San Francisco, CA 94016" +160744,Lightning Charging Cable,1,14.95,02/16/19 19:22,"906 Maple St, San Francisco, CA 94016" +160744,Wired Headphones,1,11.99,02/16/19 19:22,"906 Maple St, San Francisco, CA 94016" +160745,27in 4K Gaming Monitor,1,389.99,02/06/19 20:01,"849 Adams St, San Francisco, CA 94016" +160746,20in Monitor,1,109.99,02/21/19 15:59,"256 Pine St, Dallas, TX 75001" +160747,Vareebadd Phone,1,400,02/08/19 21:22,"318 Chestnut St, San Francisco, CA 94016" +160748,AAA Batteries (4-pack),1,2.99,02/16/19 20:30,"26 Pine St, Boston, MA 02215" +160749,Flatscreen TV,1,300,02/27/19 20:14,"336 Pine St, Dallas, TX 75001" +160750,Bose SoundSport Headphones,1,99.99,02/04/19 16:56,"951 Wilson St, Atlanta, GA 30301" +160751,27in FHD Monitor,1,149.99,02/08/19 19:48,"653 Church St, Portland, OR 97035" +160752,Wired Headphones,1,11.99,02/04/19 22:40,"483 Lakeview St, Boston, MA 02215" +160753,Apple Airpods Headphones,1,150,02/28/19 13:22,"965 Pine St, Austin, TX 73301" +160754,AAA Batteries (4-pack),1,2.99,02/07/19 20:06,"699 Adams St, Boston, MA 02215" +160755,AAA Batteries (4-pack),2,2.99,02/28/19 09:33,"59 13th St, New York City, NY 10001" +160756,USB-C Charging Cable,1,11.95,02/14/19 01:37,"128 Walnut St, San Francisco, CA 94016" +160757,Apple Airpods Headphones,1,150,02/26/19 13:50,"372 Lincoln St, New York City, NY 10001" +160758,AAA Batteries (4-pack),2,2.99,02/02/19 20:17,"870 Center St, Los Angeles, CA 90001" +160759,AAA Batteries (4-pack),1,2.99,02/03/19 20:28,"99 Adams St, New York City, NY 10001" +160760,AAA Batteries (4-pack),1,2.99,02/27/19 13:57,"273 Willow St, Boston, MA 02215" +160761,AA Batteries (4-pack),1,3.84,02/03/19 22:05,"342 Jefferson St, Los Angeles, CA 90001" +160762,Lightning Charging Cable,1,14.95,02/13/19 13:31,"489 Forest St, Atlanta, GA 30301" +160763,USB-C Charging Cable,1,11.95,02/20/19 10:56,"139 Church St, New York City, NY 10001" +160764,Lightning Charging Cable,1,14.95,02/10/19 11:18,"165 Adams St, San Francisco, CA 94016" +160765,USB-C Charging Cable,1,11.95,02/15/19 21:10,"144 Maple St, Boston, MA 02215" +160766,Lightning Charging Cable,1,14.95,02/11/19 19:42,"453 Church St, San Francisco, CA 94016" +160767,Lightning Charging Cable,1,14.95,02/10/19 23:25,"501 Dogwood St, Portland, OR 97035" +160768,Lightning Charging Cable,1,14.95,02/15/19 22:58,"293 Forest St, New York City, NY 10001" +160769,20in Monitor,1,109.99,02/26/19 10:54,"982 Forest St, Dallas, TX 75001" +160770,Flatscreen TV,1,300,02/02/19 07:04,"765 7th St, San Francisco, CA 94016" +160771,Bose SoundSport Headphones,1,99.99,02/02/19 19:28,"745 13th St, New York City, NY 10001" +160772,USB-C Charging Cable,1,11.95,02/22/19 13:01,"676 11th St, New York City, NY 10001" +160773,Macbook Pro Laptop,1,1700,02/23/19 10:50,"547 Park St, New York City, NY 10001" +160774,AA Batteries (4-pack),1,3.84,02/09/19 14:04,"6 North St, Los Angeles, CA 90001" +160775,AA Batteries (4-pack),2,3.84,02/19/19 21:40,"939 Walnut St, Austin, TX 73301" +160776,iPhone,1,700,02/17/19 15:21,"105 Sunset St, Seattle, WA 98101" +160777,Wired Headphones,1,11.99,02/11/19 18:18,"358 Willow St, Dallas, TX 75001" +160778,AA Batteries (4-pack),1,3.84,02/03/19 11:22,"84 10th St, Los Angeles, CA 90001" +160779,LG Dryer,1,600.0,02/15/19 10:28,"413 Center St, San Francisco, CA 94016" +160780,Lightning Charging Cable,1,14.95,02/11/19 13:35,"650 Walnut St, Los Angeles, CA 90001" +160781,Bose SoundSport Headphones,1,99.99,02/26/19 23:59,"587 Dogwood St, New York City, NY 10001" +160782,AAA Batteries (4-pack),2,2.99,02/19/19 12:44,"542 Park St, San Francisco, CA 94016" +160783,iPhone,1,700,02/17/19 16:19,"129 Park St, Austin, TX 73301" +160784,Wired Headphones,1,11.99,02/27/19 13:51,"529 Adams St, San Francisco, CA 94016" +160785,Wired Headphones,1,11.99,02/11/19 06:37,"710 Chestnut St, Seattle, WA 98101" +160786,Lightning Charging Cable,1,14.95,02/16/19 15:52,"514 West St, Portland, ME 04101" +160787,AA Batteries (4-pack),1,3.84,02/22/19 08:21,"842 Main St, San Francisco, CA 94016" +160788,20in Monitor,1,109.99,02/26/19 01:25,"747 Lincoln St, Dallas, TX 75001" +160789,27in 4K Gaming Monitor,1,389.99,02/22/19 14:19,"635 Park St, Dallas, TX 75001" +160790,Lightning Charging Cable,1,14.95,02/27/19 10:28,"546 Washington St, New York City, NY 10001" +160791,27in FHD Monitor,1,149.99,02/22/19 19:57,"463 Park St, Boston, MA 02215" +160792,Google Phone,1,600,02/28/19 17:59,"707 Dogwood St, San Francisco, CA 94016" +160792,Bose SoundSport Headphones,1,99.99,02/28/19 17:59,"707 Dogwood St, San Francisco, CA 94016" +160793,AAA Batteries (4-pack),3,2.99,02/21/19 15:47,"261 7th St, New York City, NY 10001" +160794,Lightning Charging Cable,1,14.95,02/20/19 20:32,"527 Dogwood St, Austin, TX 73301" +160795,USB-C Charging Cable,1,11.95,02/20/19 02:42,"72 Lakeview St, Los Angeles, CA 90001" +160796,USB-C Charging Cable,1,11.95,02/09/19 14:17,"939 Washington St, Los Angeles, CA 90001" +160797,AA Batteries (4-pack),1,3.84,02/13/19 23:18,"216 Center St, Boston, MA 02215" +160798,34in Ultrawide Monitor,1,379.99,02/01/19 22:32,"888 Elm St, Los Angeles, CA 90001" +160799,Bose SoundSport Headphones,1,99.99,02/28/19 20:28,"165 6th St, San Francisco, CA 94016" +160800,AA Batteries (4-pack),1,3.84,02/21/19 13:00,"356 13th St, San Francisco, CA 94016" +160801,Bose SoundSport Headphones,1,99.99,02/12/19 18:04,"240 Willow St, Portland, OR 97035" +160802,Vareebadd Phone,1,400,02/19/19 14:39,"316 Wilson St, New York City, NY 10001" +160803,27in FHD Monitor,1,149.99,02/26/19 15:48,"689 Adams St, Portland, OR 97035" +160804,Bose SoundSport Headphones,1,99.99,02/16/19 12:58,"551 Ridge St, San Francisco, CA 94016" +160805,AAA Batteries (4-pack),1,2.99,02/26/19 11:49,"681 2nd St, Austin, TX 73301" +160806,LG Dryer,1,600.0,02/02/19 10:15,"94 Hickory St, Los Angeles, CA 90001" +160807,Flatscreen TV,1,300,02/05/19 11:52,"941 West St, Dallas, TX 75001" +160808,USB-C Charging Cable,1,11.95,02/25/19 08:45,"10 Johnson St, San Francisco, CA 94016" +160809,ThinkPad Laptop,1,999.99,02/14/19 12:05,"595 Lincoln St, Boston, MA 02215" +160810,Bose SoundSport Headphones,1,99.99,02/12/19 14:05,"390 11th St, Boston, MA 02215" +160811,USB-C Charging Cable,1,11.95,02/24/19 20:14,"311 5th St, Boston, MA 02215" +160811,AAA Batteries (4-pack),1,2.99,02/24/19 20:14,"311 5th St, Boston, MA 02215" +160812,AA Batteries (4-pack),1,3.84,02/11/19 18:09,"326 Ridge St, San Francisco, CA 94016" +160813,USB-C Charging Cable,1,11.95,02/02/19 19:50,"590 5th St, Los Angeles, CA 90001" +160814,iPhone,1,700,02/24/19 23:30,"536 Wilson St, Los Angeles, CA 90001" +160814,Lightning Charging Cable,2,14.95,02/24/19 23:30,"536 Wilson St, Los Angeles, CA 90001" +160815,iPhone,1,700,02/15/19 21:06,"548 Adams St, Dallas, TX 75001" +160816,27in FHD Monitor,1,149.99,02/06/19 13:28,"78 River St, Austin, TX 73301" +160817,LG Dryer,1,600.0,02/11/19 11:00,"657 Spruce St, New York City, NY 10001" +160818,27in FHD Monitor,1,149.99,02/24/19 11:15,"424 Johnson St, San Francisco, CA 94016" +160819,USB-C Charging Cable,1,11.95,02/22/19 18:28,"484 Willow St, Boston, MA 02215" +160820,Wired Headphones,1,11.99,02/15/19 10:04,"114 Pine St, San Francisco, CA 94016" +160821,iPhone,1,700,02/20/19 20:10,"499 Center St, New York City, NY 10001" +160822,27in FHD Monitor,1,149.99,02/10/19 13:46,"262 Wilson St, San Francisco, CA 94016" +160823,AAA Batteries (4-pack),1,2.99,02/21/19 19:42,"957 Sunset St, Austin, TX 73301" +160824,iPhone,1,700,02/16/19 07:39,"585 5th St, Los Angeles, CA 90001" +160825,USB-C Charging Cable,1,11.95,02/02/19 08:30,"551 12th St, Los Angeles, CA 90001" +160826,Lightning Charging Cable,1,14.95,02/05/19 11:55,"494 Park St, Portland, OR 97035" +160827,Apple Airpods Headphones,1,150,02/16/19 00:46,"742 Meadow St, Los Angeles, CA 90001" +160828,27in 4K Gaming Monitor,1,389.99,02/18/19 17:04,"209 Lakeview St, San Francisco, CA 94016" +160829,AA Batteries (4-pack),1,3.84,02/02/19 10:32,"61 Hill St, San Francisco, CA 94016" +160830,27in FHD Monitor,1,149.99,02/10/19 12:35,"554 Cherry St, Austin, TX 73301" +160831,Lightning Charging Cable,2,14.95,02/27/19 23:20,"745 Hill St, Seattle, WA 98101" +160832,AA Batteries (4-pack),2,3.84,02/09/19 22:00,"602 7th St, Atlanta, GA 30301" +160833,27in FHD Monitor,1,149.99,02/14/19 07:53,"102 Washington St, Los Angeles, CA 90001" +160834,AA Batteries (4-pack),1,3.84,02/06/19 13:11,"225 Center St, Los Angeles, CA 90001" +160835,Apple Airpods Headphones,1,150,02/20/19 01:21,"572 Ridge St, Atlanta, GA 30301" +160836,Bose SoundSport Headphones,1,99.99,02/27/19 14:10,"355 1st St, New York City, NY 10001" +160837,Wired Headphones,1,11.99,02/17/19 23:13,"575 11th St, Seattle, WA 98101" +160838,Wired Headphones,1,11.99,02/22/19 16:49,"76 Main St, Boston, MA 02215" +160839,Lightning Charging Cable,1,14.95,02/06/19 14:46,"511 4th St, Austin, TX 73301" +160840,Apple Airpods Headphones,1,150,02/14/19 11:39,"226 4th St, Portland, OR 97035" +160841,Lightning Charging Cable,1,14.95,02/19/19 19:39,"68 Main St, San Francisco, CA 94016" +160841,34in Ultrawide Monitor,1,379.99,02/19/19 19:39,"68 Main St, San Francisco, CA 94016" +160842,Macbook Pro Laptop,1,1700,02/05/19 09:59,"608 Cedar St, Boston, MA 02215" +160843,Flatscreen TV,1,300,02/22/19 11:12,"117 Adams St, Los Angeles, CA 90001" +160844,ThinkPad Laptop,1,999.99,02/23/19 23:19,"640 Forest St, Atlanta, GA 30301" +160844,27in FHD Monitor,1,149.99,02/23/19 23:19,"640 Forest St, Atlanta, GA 30301" +160845,ThinkPad Laptop,1,999.99,02/03/19 10:03,"732 8th St, Austin, TX 73301" +160846,AAA Batteries (4-pack),1,2.99,02/06/19 07:21,"731 11th St, Atlanta, GA 30301" +160847,Bose SoundSport Headphones,1,99.99,02/27/19 08:51,"313 Adams St, Atlanta, GA 30301" +160848,AAA Batteries (4-pack),1,2.99,02/03/19 16:12,"415 Meadow St, Atlanta, GA 30301" +160849,LG Washing Machine,1,600.0,02/01/19 20:47,"987 North St, New York City, NY 10001" +160850,Bose SoundSport Headphones,1,99.99,02/28/19 22:22,"40 4th St, Austin, TX 73301" +160851,USB-C Charging Cable,1,11.95,02/16/19 19:23,"699 Maple St, Portland, OR 97035" +160852,Flatscreen TV,1,300,02/03/19 19:56,"152 West St, Dallas, TX 75001" +160853,ThinkPad Laptop,1,999.99,02/26/19 11:45,"757 Dogwood St, Los Angeles, CA 90001" +160854,ThinkPad Laptop,1,999.99,02/06/19 23:59,"666 Cherry St, San Francisco, CA 94016" +160855,20in Monitor,1,109.99,02/12/19 11:58,"594 Meadow St, Portland, OR 97035" +160856,Lightning Charging Cable,1,14.95,02/06/19 11:10,"669 10th St, Austin, TX 73301" +160857,AA Batteries (4-pack),1,3.84,02/28/19 23:27,"394 Hickory St, Los Angeles, CA 90001" +160858,Google Phone,1,600,02/11/19 17:46,"203 Adams St, New York City, NY 10001" +160859,iPhone,1,700,02/14/19 03:28,"380 Forest St, Los Angeles, CA 90001" +160859,Lightning Charging Cable,1,14.95,02/14/19 03:28,"380 Forest St, Los Angeles, CA 90001" +160860,27in FHD Monitor,1,149.99,02/26/19 07:15,"878 Lakeview St, Los Angeles, CA 90001" +160861,AAA Batteries (4-pack),1,2.99,02/26/19 17:33,"684 Elm St, New York City, NY 10001" +160862,AAA Batteries (4-pack),1,2.99,02/14/19 22:43,"815 Washington St, New York City, NY 10001" +160863,Wired Headphones,1,11.99,02/05/19 00:20,"423 Sunset St, New York City, NY 10001" +160864,AAA Batteries (4-pack),1,2.99,02/20/19 14:10,"606 12th St, Los Angeles, CA 90001" +160865,Flatscreen TV,1,300,02/04/19 21:28,"376 Maple St, Boston, MA 02215" +160866,iPhone,1,700,02/04/19 12:37,"583 6th St, San Francisco, CA 94016" +160867,USB-C Charging Cable,1,11.95,02/08/19 09:10,"247 Jackson St, Austin, TX 73301" +160868,27in 4K Gaming Monitor,1,389.99,02/25/19 12:35,"964 6th St, San Francisco, CA 94016" +160869,USB-C Charging Cable,1,11.95,02/15/19 02:47,"204 Main St, San Francisco, CA 94016" +160870,Lightning Charging Cable,1,14.95,02/14/19 20:47,"298 Adams St, San Francisco, CA 94016" +160871,20in Monitor,1,109.99,02/05/19 21:34,"476 Sunset St, New York City, NY 10001" +160872,Flatscreen TV,1,300,02/06/19 10:38,"935 14th St, New York City, NY 10001" +160873,34in Ultrawide Monitor,1,379.99,02/21/19 14:49,"305 6th St, San Francisco, CA 94016" +160874,USB-C Charging Cable,1,11.95,02/16/19 18:09,"113 South St, Boston, MA 02215" +160875,AAA Batteries (4-pack),1,2.99,02/07/19 13:09,"875 Meadow St, Portland, OR 97035" +160876,Wired Headphones,1,11.99,02/11/19 18:28,"378 Lincoln St, Dallas, TX 75001" +160877,AA Batteries (4-pack),1,3.84,02/25/19 06:36,"312 Elm St, Seattle, WA 98101" +160878,Apple Airpods Headphones,1,150,02/12/19 09:23,"636 14th St, Seattle, WA 98101" +160879,Apple Airpods Headphones,1,150,02/17/19 22:29,"142 Ridge St, San Francisco, CA 94016" +160880,Wired Headphones,1,11.99,02/27/19 21:58,"626 1st St, Atlanta, GA 30301" +160881,Lightning Charging Cable,1,14.95,02/19/19 21:05,"549 8th St, Portland, OR 97035" +160882,Flatscreen TV,1,300,02/22/19 18:31,"989 South St, San Francisco, CA 94016" +160883,AAA Batteries (4-pack),1,2.99,02/08/19 17:54,"118 Hickory St, Austin, TX 73301" +160884,27in FHD Monitor,1,149.99,02/12/19 13:17,"301 Adams St, Los Angeles, CA 90001" +160885,Macbook Pro Laptop,1,1700,02/19/19 15:41,"272 Washington St, Atlanta, GA 30301" +160886,Wired Headphones,1,11.99,02/05/19 18:30,"186 11th St, New York City, NY 10001" +160887,Bose SoundSport Headphones,1,99.99,02/22/19 13:47,"854 12th St, Dallas, TX 75001" +160888,AA Batteries (4-pack),1,3.84,02/02/19 18:09,"498 Highland St, Boston, MA 02215" +160889,ThinkPad Laptop,1,999.99,02/10/19 10:49,"326 Johnson St, Seattle, WA 98101" +160890,USB-C Charging Cable,1,11.95,02/13/19 16:20,"706 Sunset St, New York City, NY 10001" +160891,USB-C Charging Cable,1,11.95,02/15/19 18:29,"531 10th St, Portland, OR 97035" +160892,AAA Batteries (4-pack),1,2.99,02/23/19 14:06,"570 Meadow St, Los Angeles, CA 90001" +160893,Wired Headphones,1,11.99,02/25/19 16:38,"602 14th St, Portland, OR 97035" +160894,27in 4K Gaming Monitor,1,389.99,02/12/19 18:35,"531 Jefferson St, Los Angeles, CA 90001" +160895,USB-C Charging Cable,1,11.95,02/10/19 20:39,"9 Willow St, Seattle, WA 98101" +160896,Lightning Charging Cable,1,14.95,02/03/19 23:07,"533 4th St, New York City, NY 10001" +160897,USB-C Charging Cable,1,11.95,02/03/19 16:42,"606 Pine St, Boston, MA 02215" +160898,34in Ultrawide Monitor,1,379.99,02/28/19 19:47,"492 14th St, Austin, TX 73301" +160899,Vareebadd Phone,1,400,02/08/19 12:18,"508 River St, San Francisco, CA 94016" +160900,USB-C Charging Cable,1,11.95,02/22/19 06:50,"832 6th St, Boston, MA 02215" +160901,AA Batteries (4-pack),1,3.84,02/14/19 11:32,"18 Main St, New York City, NY 10001" +160902,USB-C Charging Cable,2,11.95,02/22/19 12:50,"323 Center St, Los Angeles, CA 90001" +160903,Lightning Charging Cable,1,14.95,02/20/19 15:48,"483 11th St, Dallas, TX 75001" +160904,Bose SoundSport Headphones,1,99.99,02/24/19 16:22,"933 Pine St, Boston, MA 02215" +160905,34in Ultrawide Monitor,1,379.99,02/04/19 10:38,"181 Cedar St, Boston, MA 02215" +160906,USB-C Charging Cable,1,11.95,02/20/19 14:51,"556 9th St, Austin, TX 73301" +160907,27in FHD Monitor,1,149.99,02/26/19 22:34,"727 Walnut St, Los Angeles, CA 90001" +160908,iPhone,1,700,02/20/19 20:21,"114 12th St, Austin, TX 73301" +160908,Wired Headphones,1,11.99,02/20/19 20:21,"114 12th St, Austin, TX 73301" +160909,Macbook Pro Laptop,1,1700,02/09/19 08:21,"188 Elm St, Los Angeles, CA 90001" +160910,iPhone,1,700,02/15/19 09:26,"228 Meadow St, Dallas, TX 75001" +160911,AA Batteries (4-pack),2,3.84,02/06/19 18:58,"648 6th St, New York City, NY 10001" +160912,Wired Headphones,1,11.99,02/16/19 11:53,"809 Main St, Los Angeles, CA 90001" +160913,Lightning Charging Cable,1,14.95,02/10/19 17:40,"153 Highland St, Boston, MA 02215" +160914,Wired Headphones,1,11.99,02/10/19 08:38,"442 Cherry St, Boston, MA 02215" +160915,USB-C Charging Cable,1,11.95,02/17/19 10:48,"111 South St, New York City, NY 10001" +160916,27in FHD Monitor,1,149.99,02/26/19 18:28,"287 5th St, Atlanta, GA 30301" +160917,AA Batteries (4-pack),1,3.84,02/12/19 13:28,"404 River St, San Francisco, CA 94016" +160918,Google Phone,1,600,02/01/19 15:57,"565 Park St, Boston, MA 02215" +160918,USB-C Charging Cable,1,11.95,02/01/19 15:57,"565 Park St, Boston, MA 02215" +160918,Bose SoundSport Headphones,1,99.99,02/01/19 15:57,"565 Park St, Boston, MA 02215" +160919,Wired Headphones,1,11.99,02/26/19 18:07,"843 1st St, Los Angeles, CA 90001" +160920,AAA Batteries (4-pack),3,2.99,02/21/19 16:49,"120 9th St, San Francisco, CA 94016" +160921,Bose SoundSport Headphones,1,99.99,02/07/19 20:12,"838 Lincoln St, Austin, TX 73301" +160922,Lightning Charging Cable,1,14.95,02/22/19 23:41,"214 2nd St, Atlanta, GA 30301" +160923,27in FHD Monitor,1,149.99,02/09/19 12:57,"420 14th St, San Francisco, CA 94016" +160924,Wired Headphones,1,11.99,02/12/19 09:12,"18 Wilson St, San Francisco, CA 94016" +160925,Apple Airpods Headphones,1,150,02/12/19 19:49,"619 Elm St, Portland, OR 97035" +160926,AA Batteries (4-pack),1,3.84,02/23/19 21:24,"117 14th St, Dallas, TX 75001" +160927,USB-C Charging Cable,1,11.95,02/19/19 15:35,"783 Lakeview St, Dallas, TX 75001" +160927,Bose SoundSport Headphones,1,99.99,02/19/19 15:35,"783 Lakeview St, Dallas, TX 75001" +160928,USB-C Charging Cable,1,11.95,02/22/19 10:20,"98 Church St, Los Angeles, CA 90001" +160929,Apple Airpods Headphones,1,150,02/04/19 17:45,"474 Willow St, San Francisco, CA 94016" +160930,Apple Airpods Headphones,1,150,02/10/19 13:19,"154 Church St, Atlanta, GA 30301" +160931,Google Phone,1,600,02/12/19 12:24,"826 Forest St, San Francisco, CA 94016" +160932,Google Phone,1,600,02/11/19 10:53,"847 12th St, New York City, NY 10001" +160933,Wired Headphones,1,11.99,02/19/19 19:33,"907 Highland St, New York City, NY 10001" +160934,iPhone,1,700,02/10/19 11:09,"360 6th St, San Francisco, CA 94016" +160935,iPhone,1,700,02/10/19 17:45,"449 Maple St, Dallas, TX 75001" +160936,Apple Airpods Headphones,1,150,02/22/19 12:33,"966 Pine St, Atlanta, GA 30301" +160937,USB-C Charging Cable,1,11.95,02/13/19 19:43,"435 Lake St, Los Angeles, CA 90001" +160938,Lightning Charging Cable,1,14.95,02/08/19 06:35,"383 9th St, San Francisco, CA 94016" +160939,Apple Airpods Headphones,1,150,02/18/19 22:26,"701 Lakeview St, San Francisco, CA 94016" +160940,20in Monitor,1,109.99,02/25/19 20:38,"359 West St, Los Angeles, CA 90001" +160941,27in FHD Monitor,1,149.99,02/28/19 01:05,"238 Center St, Los Angeles, CA 90001" +160942,Wired Headphones,1,11.99,02/19/19 12:47,"270 Hickory St, Portland, OR 97035" +160943,Lightning Charging Cable,1,14.95,02/02/19 12:53,"587 Jackson St, San Francisco, CA 94016" +160944,Lightning Charging Cable,1,14.95,02/04/19 10:50,"63 Lake St, San Francisco, CA 94016" +160944,Lightning Charging Cable,1,14.95,02/04/19 10:50,"63 Lake St, San Francisco, CA 94016" +160945,Apple Airpods Headphones,1,150,02/26/19 20:10,"775 2nd St, Los Angeles, CA 90001" +160946,AA Batteries (4-pack),2,3.84,02/01/19 18:21,"49 River St, Dallas, TX 75001" +160947,27in FHD Monitor,1,149.99,02/04/19 17:25,"83 5th St, San Francisco, CA 94016" +160948,AAA Batteries (4-pack),5,2.99,02/08/19 11:28,"912 13th St, San Francisco, CA 94016" +160949,ThinkPad Laptop,1,999.99,02/05/19 20:06,"898 Meadow St, New York City, NY 10001" +160950,Macbook Pro Laptop,1,1700,02/01/19 06:23,"859 Cherry St, Los Angeles, CA 90001" +160951,Flatscreen TV,1,300,02/02/19 10:07,"105 Park St, Seattle, WA 98101" +160952,Wired Headphones,1,11.99,02/01/19 16:20,"824 Johnson St, New York City, NY 10001" +160953,AAA Batteries (4-pack),1,2.99,02/09/19 15:22,"315 River St, Seattle, WA 98101" +160954,USB-C Charging Cable,1,11.95,02/20/19 15:29,"204 9th St, Los Angeles, CA 90001" +160955,Bose SoundSport Headphones,1,99.99,02/10/19 18:28,"326 Pine St, New York City, NY 10001" +160956,Apple Airpods Headphones,1,150,02/15/19 10:50,"938 Cedar St, New York City, NY 10001" +160957,Lightning Charging Cable,1,14.95,02/12/19 19:36,"455 11th St, San Francisco, CA 94016" +160958,Wired Headphones,1,11.99,02/27/19 21:33,"222 Jackson St, New York City, NY 10001" +160959,Google Phone,1,600,02/24/19 17:14,"410 14th St, Portland, OR 97035" +160960,Apple Airpods Headphones,1,150,02/16/19 21:19,"744 South St, San Francisco, CA 94016" +160961,AAA Batteries (4-pack),1,2.99,02/06/19 13:38,"269 10th St, Boston, MA 02215" +160962,AAA Batteries (4-pack),2,2.99,02/18/19 10:05,"4 Meadow St, San Francisco, CA 94016" +160963,AA Batteries (4-pack),1,3.84,02/24/19 18:57,"663 West St, San Francisco, CA 94016" +160964,Google Phone,1,600,02/21/19 12:50,"106 Church St, San Francisco, CA 94016" +160965,27in FHD Monitor,1,149.99,02/15/19 19:02,"743 Elm St, San Francisco, CA 94016" +160966,Wired Headphones,1,11.99,02/22/19 15:10,"497 1st St, Los Angeles, CA 90001" +160967,USB-C Charging Cable,1,11.95,02/16/19 14:17,"286 Chestnut St, Boston, MA 02215" +160968,20in Monitor,1,109.99,02/11/19 16:41,"330 14th St, San Francisco, CA 94016" +160969,iPhone,1,700,02/14/19 10:00,"677 13th St, Portland, OR 97035" +160970,Wired Headphones,1,11.99,02/24/19 21:04,"599 Dogwood St, Portland, OR 97035" +160971,Bose SoundSport Headphones,1,99.99,02/01/19 16:20,"209 Dogwood St, Boston, MA 02215" +160972,34in Ultrawide Monitor,1,379.99,02/15/19 15:30,"147 12th St, Portland, OR 97035" +160973,USB-C Charging Cable,1,11.95,02/16/19 14:00,"423 2nd St, San Francisco, CA 94016" +160974,Bose SoundSport Headphones,1,99.99,02/21/19 20:20,"996 13th St, Portland, OR 97035" +160975,Lightning Charging Cable,1,14.95,02/16/19 18:31,"96 Hickory St, New York City, NY 10001" +160976,iPhone,1,700,02/27/19 14:25,"575 Highland St, Boston, MA 02215" +160977,AAA Batteries (4-pack),1,2.99,02/25/19 22:22,"994 River St, San Francisco, CA 94016" +160978,Wired Headphones,1,11.99,02/12/19 14:21,"27 Walnut St, Boston, MA 02215" +160979,LG Washing Machine,1,600.0,02/19/19 14:13,"994 2nd St, Dallas, TX 75001" +160980,27in 4K Gaming Monitor,1,389.99,02/12/19 12:18,"747 Johnson St, Boston, MA 02215" +160981,USB-C Charging Cable,1,11.95,02/17/19 20:23,"427 Wilson St, San Francisco, CA 94016" +160982,USB-C Charging Cable,1,11.95,02/15/19 15:15,"672 Pine St, Los Angeles, CA 90001" +160983,Wired Headphones,1,11.99,02/13/19 17:01,"590 Elm St, Boston, MA 02215" +160984,USB-C Charging Cable,1,11.95,02/18/19 09:46,"399 1st St, Dallas, TX 75001" +160985,Bose SoundSport Headphones,1,99.99,02/22/19 19:43,"265 Lake St, Los Angeles, CA 90001" +160986,Bose SoundSport Headphones,1,99.99,02/15/19 19:43,"958 Dogwood St, San Francisco, CA 94016" +160987,34in Ultrawide Monitor,1,379.99,02/18/19 11:16,"394 14th St, Los Angeles, CA 90001" +160988,Bose SoundSport Headphones,1,99.99,02/15/19 15:22,"118 7th St, Los Angeles, CA 90001" +160989,AA Batteries (4-pack),1,3.84,02/28/19 11:26,"76 Spruce St, Boston, MA 02215" +160990,Lightning Charging Cable,1,14.95,02/18/19 11:32,"406 Highland St, Los Angeles, CA 90001" +160991,AA Batteries (4-pack),1,3.84,02/26/19 10:38,"310 Adams St, Atlanta, GA 30301" +160992,USB-C Charging Cable,1,11.95,02/22/19 23:47,"232 7th St, Seattle, WA 98101" +160993,Wired Headphones,1,11.99,02/15/19 08:59,"244 Church St, Dallas, TX 75001" +160994,Wired Headphones,1,11.99,02/11/19 15:17,"422 Lake St, Austin, TX 73301" +160995,Google Phone,1,600,02/08/19 21:42,"675 Walnut St, Seattle, WA 98101" +160996,Wired Headphones,1,11.99,02/28/19 16:45,"62 5th St, Atlanta, GA 30301" +160997,Apple Airpods Headphones,1,150,02/05/19 20:07,"181 Center St, Portland, OR 97035" +160998,AAA Batteries (4-pack),1,2.99,02/02/19 18:19,"401 8th St, Seattle, WA 98101" +160999,AAA Batteries (4-pack),4,2.99,02/27/19 09:19,"240 River St, Boston, MA 02215" +161000,Lightning Charging Cable,1,14.95,02/05/19 02:48,"746 1st St, New York City, NY 10001" +161001,AAA Batteries (4-pack),1,2.99,02/17/19 17:49,"349 Park St, Boston, MA 02215" +161002,20in Monitor,1,109.99,02/16/19 07:33,"709 Elm St, Los Angeles, CA 90001" +161003,Flatscreen TV,1,300,02/26/19 15:51,"428 2nd St, San Francisco, CA 94016" +161004,Apple Airpods Headphones,1,150,02/23/19 18:07,"398 9th St, San Francisco, CA 94016" +161005,Wired Headphones,1,11.99,02/02/19 14:54,"869 Chestnut St, Boston, MA 02215" +161006,Wired Headphones,1,11.99,02/13/19 11:56,"332 10th St, San Francisco, CA 94016" +161007,Bose SoundSport Headphones,1,99.99,02/19/19 08:50,"496 Chestnut St, San Francisco, CA 94016" +161008,AA Batteries (4-pack),2,3.84,02/28/19 11:30,"200 Jefferson St, Los Angeles, CA 90001" +161009,AAA Batteries (4-pack),9,2.99,02/17/19 16:13,"614 West St, Portland, OR 97035" +161010,AA Batteries (4-pack),1,3.84,02/19/19 18:26,"977 11th St, New York City, NY 10001" +161011,ThinkPad Laptop,1,999.99,02/11/19 15:47,"206 13th St, Los Angeles, CA 90001" +161012,Google Phone,1,600,02/22/19 11:23,"278 Highland St, New York City, NY 10001" +161013,AA Batteries (4-pack),1,3.84,02/28/19 17:15,"931 Pine St, Dallas, TX 75001" +161014,20in Monitor,1,109.99,02/14/19 01:35,"627 Walnut St, San Francisco, CA 94016" +161015,USB-C Charging Cable,1,11.95,02/07/19 07:57,"873 Walnut St, Boston, MA 02215" +161016,AA Batteries (4-pack),1,3.84,02/18/19 08:31,"407 Jackson St, Atlanta, GA 30301" +161017,Lightning Charging Cable,1,14.95,02/06/19 16:16,"87 River St, Los Angeles, CA 90001" +161018,ThinkPad Laptop,1,999.99,02/11/19 12:22,"180 7th St, Boston, MA 02215" +161019,ThinkPad Laptop,1,999.99,02/12/19 09:14,"1 Elm St, Seattle, WA 98101" +161020,AA Batteries (4-pack),1,3.84,02/09/19 01:25,"858 1st St, Atlanta, GA 30301" +161021,Lightning Charging Cable,1,14.95,02/04/19 15:55,"142 7th St, Portland, OR 97035" +161022,Lightning Charging Cable,1,14.95,02/13/19 05:42,"556 Ridge St, Los Angeles, CA 90001" +161023,AAA Batteries (4-pack),2,2.99,02/01/19 17:21,"222 2nd St, Portland, OR 97035" +161024,Lightning Charging Cable,1,14.95,02/04/19 15:53,"617 South St, Boston, MA 02215" +161025,Bose SoundSport Headphones,1,99.99,02/04/19 15:04,"792 Lakeview St, New York City, NY 10001" +161026,Wired Headphones,1,11.99,02/17/19 15:50,"271 Willow St, Portland, OR 97035" +161027,20in Monitor,1,109.99,02/21/19 02:03,"967 Jefferson St, Dallas, TX 75001" +161028,34in Ultrawide Monitor,1,379.99,02/17/19 14:26,"810 12th St, New York City, NY 10001" +161029,AA Batteries (4-pack),1,3.84,02/07/19 10:25,"346 Dogwood St, New York City, NY 10001" +161030,Wired Headphones,1,11.99,02/17/19 18:07,"194 North St, Dallas, TX 75001" +161031,ThinkPad Laptop,1,999.99,02/11/19 17:38,"118 Johnson St, Atlanta, GA 30301" +161032,Bose SoundSport Headphones,1,99.99,02/28/19 22:18,"730 13th St, Austin, TX 73301" +161033,Bose SoundSport Headphones,1,99.99,02/14/19 18:05,"765 14th St, Atlanta, GA 30301" +161034,Lightning Charging Cable,1,14.95,02/15/19 14:15,"170 Lincoln St, Seattle, WA 98101" +161035,USB-C Charging Cable,1,11.95,02/24/19 08:51,"22 Center St, Los Angeles, CA 90001" +161036,27in 4K Gaming Monitor,1,389.99,02/08/19 16:38,"632 Johnson St, Boston, MA 02215" +161037,iPhone,1,700,02/25/19 12:04,"25 Main St, New York City, NY 10001" +161038,Bose SoundSport Headphones,1,99.99,02/25/19 10:09,"409 13th St, Atlanta, GA 30301" +161039,ThinkPad Laptop,1,999.99,02/11/19 14:54,"54 Highland St, Seattle, WA 98101" +161040,27in FHD Monitor,1,149.99,02/17/19 07:50,"810 14th St, San Francisco, CA 94016" +161041,Apple Airpods Headphones,1,150,02/02/19 18:45,"758 Center St, Austin, TX 73301" +161042,Lightning Charging Cable,1,14.95,02/04/19 17:57,"701 Cedar St, Austin, TX 73301" +161043,USB-C Charging Cable,1,11.95,02/23/19 19:16,"148 Spruce St, New York City, NY 10001" +161044,USB-C Charging Cable,1,11.95,02/23/19 19:55,"578 Forest St, New York City, NY 10001" +161045,AA Batteries (4-pack),1,3.84,02/17/19 11:25,"148 Hickory St, San Francisco, CA 94016" +161046,34in Ultrawide Monitor,1,379.99,02/15/19 18:03,"206 9th St, Boston, MA 02215" +161047,Lightning Charging Cable,1,14.95,02/15/19 23:25,"665 5th St, Los Angeles, CA 90001" +161048,AA Batteries (4-pack),1,3.84,02/20/19 17:43,"514 Jackson St, San Francisco, CA 94016" +161049,20in Monitor,1,109.99,02/21/19 11:31,"475 Lincoln St, Boston, MA 02215" +161050,Bose SoundSport Headphones,1,99.99,02/06/19 12:22,"582 4th St, New York City, NY 10001" +161051,Wired Headphones,1,11.99,02/10/19 19:41,"376 10th St, San Francisco, CA 94016" +161052,Lightning Charging Cable,1,14.95,02/15/19 19:06,"90 Elm St, San Francisco, CA 94016" +161053,AA Batteries (4-pack),1,3.84,02/22/19 15:56,"179 Sunset St, Los Angeles, CA 90001" +161054,AA Batteries (4-pack),1,3.84,02/18/19 15:40,"335 Elm St, Boston, MA 02215" +161055,ThinkPad Laptop,1,999.99,02/05/19 11:18,"942 Spruce St, Seattle, WA 98101" +161056,Wired Headphones,1,11.99,02/23/19 08:13,"488 4th St, Los Angeles, CA 90001" +161057,USB-C Charging Cable,1,11.95,02/05/19 18:11,"718 Cherry St, San Francisco, CA 94016" +161058,AA Batteries (4-pack),1,3.84,02/27/19 19:36,"598 Cedar St, Atlanta, GA 30301" +161059,Apple Airpods Headphones,1,150,02/20/19 12:29,"178 Jefferson St, Dallas, TX 75001" +161060,Lightning Charging Cable,2,14.95,02/28/19 05:33,"343 Lincoln St, San Francisco, CA 94016" +161061,Wired Headphones,1,11.99,02/10/19 18:03,"232 10th St, Los Angeles, CA 90001" +161062,AAA Batteries (4-pack),3,2.99,02/03/19 17:08,"412 7th St, New York City, NY 10001" +161063,Wired Headphones,1,11.99,02/24/19 17:37,"868 12th St, Dallas, TX 75001" +161064,AA Batteries (4-pack),1,3.84,02/26/19 14:37,"474 Park St, New York City, NY 10001" +161065,AAA Batteries (4-pack),1,2.99,02/17/19 16:04,"683 Johnson St, San Francisco, CA 94016" +161066,Wired Headphones,1,11.99,02/08/19 11:45,"406 River St, San Francisco, CA 94016" +161067,Apple Airpods Headphones,1,150,02/10/19 10:37,"932 Walnut St, Los Angeles, CA 90001" +161068,Flatscreen TV,1,300,02/11/19 10:36,"927 Elm St, Dallas, TX 75001" +161069,Wired Headphones,1,11.99,02/04/19 08:34,"141 Sunset St, San Francisco, CA 94016" +161070,AAA Batteries (4-pack),2,2.99,02/04/19 16:31,"984 Johnson St, Seattle, WA 98101" +161071,27in FHD Monitor,1,149.99,02/08/19 17:24,"997 14th St, Boston, MA 02215" +161072,Lightning Charging Cable,1,14.95,02/01/19 15:26,"745 Park St, Los Angeles, CA 90001" +161073,27in 4K Gaming Monitor,1,389.99,02/16/19 21:20,"401 Sunset St, San Francisco, CA 94016" +161074,Wired Headphones,1,11.99,02/20/19 22:29,"93 8th St, San Francisco, CA 94016" +161075,Bose SoundSport Headphones,1,99.99,02/27/19 16:47,"808 Main St, Portland, OR 97035" +161076,Bose SoundSport Headphones,1,99.99,02/24/19 13:24,"301 12th St, New York City, NY 10001" +161077,Macbook Pro Laptop,1,1700,02/09/19 23:20,"734 South St, San Francisco, CA 94016" +161078,AAA Batteries (4-pack),1,2.99,02/01/19 10:57,"857 Elm St, Boston, MA 02215" +161079,USB-C Charging Cable,1,11.95,02/11/19 13:45,"423 Johnson St, San Francisco, CA 94016" +161080,AAA Batteries (4-pack),2,2.99,02/10/19 21:40,"678 Spruce St, New York City, NY 10001" +161081,34in Ultrawide Monitor,1,379.99,02/26/19 14:08,"953 Chestnut St, Portland, OR 97035" +161082,AA Batteries (4-pack),1,3.84,02/06/19 10:46,"990 8th St, San Francisco, CA 94016" +161083,Apple Airpods Headphones,1,150,02/21/19 13:25,"37 12th St, San Francisco, CA 94016" +161084,Wired Headphones,1,11.99,02/06/19 10:31,"585 5th St, San Francisco, CA 94016" +161085,AA Batteries (4-pack),3,3.84,02/12/19 19:50,"623 Center St, San Francisco, CA 94016" +161086,iPhone,1,700,02/23/19 12:50,"780 Highland St, San Francisco, CA 94016" +161087,Apple Airpods Headphones,1,150,02/22/19 01:55,"320 Dogwood St, Boston, MA 02215" +161088,Wired Headphones,1,11.99,02/10/19 12:06,"900 Cherry St, Dallas, TX 75001" +161089,AAA Batteries (4-pack),2,2.99,02/13/19 20:30,"948 Church St, Portland, OR 97035" +161090,Bose SoundSport Headphones,1,99.99,02/18/19 13:02,"90 Johnson St, Los Angeles, CA 90001" +161091,Flatscreen TV,1,300,02/20/19 11:36,"592 Dogwood St, Boston, MA 02215" +161092,USB-C Charging Cable,1,11.95,02/07/19 15:53,"134 Hickory St, Seattle, WA 98101" +161093,Wired Headphones,1,11.99,02/07/19 13:35,"722 11th St, Dallas, TX 75001" +161094,27in FHD Monitor,1,149.99,02/17/19 11:44,"652 Main St, Atlanta, GA 30301" +161095,Apple Airpods Headphones,1,150,02/14/19 09:43,"470 Sunset St, Austin, TX 73301" +161096,Apple Airpods Headphones,1,150,02/21/19 16:24,"145 Dogwood St, Portland, OR 97035" +161097,Lightning Charging Cable,1,14.95,02/13/19 22:33,"428 Johnson St, Seattle, WA 98101" +161098,20in Monitor,1,109.99,02/05/19 15:24,"304 River St, Los Angeles, CA 90001" +161099,USB-C Charging Cable,1,11.95,02/02/19 12:45,"538 North St, San Francisco, CA 94016" +161100,Lightning Charging Cable,1,14.95,02/15/19 12:32,"191 Ridge St, Seattle, WA 98101" +161101,Apple Airpods Headphones,1,150,02/10/19 09:41,"723 Walnut St, Austin, TX 73301" +161101,Lightning Charging Cable,1,14.95,02/10/19 09:41,"723 Walnut St, Austin, TX 73301" +161102,AA Batteries (4-pack),1,3.84,02/06/19 11:36,"841 South St, New York City, NY 10001" +161102,AAA Batteries (4-pack),2,2.99,02/06/19 11:36,"841 South St, New York City, NY 10001" +161103,Google Phone,1,600,02/03/19 07:35,"588 Forest St, Portland, OR 97035" +161104,Bose SoundSport Headphones,2,99.99,02/11/19 18:31,"190 West St, San Francisco, CA 94016" +161105,USB-C Charging Cable,1,11.95,02/13/19 00:43,"577 Sunset St, Boston, MA 02215" +161106,USB-C Charging Cable,2,11.95,02/22/19 22:29,"4 Center St, New York City, NY 10001" +161107,AAA Batteries (4-pack),1,2.99,02/12/19 11:04,"243 North St, Austin, TX 73301" +161108,ThinkPad Laptop,1,999.99,02/28/19 13:23,"317 12th St, New York City, NY 10001" +161108,Lightning Charging Cable,1,14.95,02/28/19 13:23,"317 12th St, New York City, NY 10001" +161109,Wired Headphones,1,11.99,02/11/19 13:22,"417 Meadow St, Boston, MA 02215" +161110,AA Batteries (4-pack),1,3.84,02/09/19 15:54,"205 River St, Los Angeles, CA 90001" +161110,Apple Airpods Headphones,1,150,02/09/19 15:54,"205 River St, Los Angeles, CA 90001" +161111,34in Ultrawide Monitor,1,379.99,02/10/19 21:07,"219 9th St, Seattle, WA 98101" +161112,Lightning Charging Cable,1,14.95,02/13/19 16:49,"120 2nd St, San Francisco, CA 94016" +161113,Vareebadd Phone,1,400,02/04/19 00:30,"819 7th St, Seattle, WA 98101" +161113,Wired Headphones,1,11.99,02/04/19 00:30,"819 7th St, Seattle, WA 98101" +161114,Wired Headphones,2,11.99,02/21/19 19:50,"430 12th St, Boston, MA 02215" +161115,Apple Airpods Headphones,1,150,02/20/19 09:44,"228 Jefferson St, Atlanta, GA 30301" +161116,AA Batteries (4-pack),1,3.84,02/06/19 19:52,"121 South St, Portland, OR 97035" +161117,27in 4K Gaming Monitor,1,389.99,02/27/19 23:48,"325 Sunset St, San Francisco, CA 94016" +161118,ThinkPad Laptop,1,999.99,02/25/19 18:14,"924 Hill St, New York City, NY 10001" +161119,Wired Headphones,1,11.99,02/24/19 17:55,"133 Church St, New York City, NY 10001" +161120,AAA Batteries (4-pack),2,2.99,02/19/19 22:00,"425 Meadow St, Boston, MA 02215" +161121,USB-C Charging Cable,1,11.95,02/17/19 15:57,"581 1st St, San Francisco, CA 94016" +161122,Bose SoundSport Headphones,1,99.99,02/16/19 19:28,"562 4th St, Dallas, TX 75001" +161123,AAA Batteries (4-pack),3,2.99,02/05/19 17:50,"354 Jefferson St, Austin, TX 73301" +161124,Bose SoundSport Headphones,1,99.99,02/14/19 17:45,"10 Walnut St, Dallas, TX 75001" +161125,27in FHD Monitor,1,149.99,02/14/19 08:46,"978 Adams St, Boston, MA 02215" +161126,27in FHD Monitor,1,149.99,02/20/19 06:18,"349 Adams St, Los Angeles, CA 90001" +161127,Wired Headphones,3,11.99,02/10/19 13:26,"921 Lincoln St, Austin, TX 73301" +161128,USB-C Charging Cable,1,11.95,02/15/19 18:20,"275 River St, Seattle, WA 98101" +161129,Bose SoundSport Headphones,1,99.99,02/12/19 21:08,"238 Spruce St, Los Angeles, CA 90001" +161129,Apple Airpods Headphones,1,150,02/12/19 21:08,"238 Spruce St, Los Angeles, CA 90001" +161130,Wired Headphones,1,11.99,02/02/19 09:32,"417 Highland St, Boston, MA 02215" +161131,Flatscreen TV,1,300,02/08/19 13:50,"795 North St, San Francisco, CA 94016" +161132,Apple Airpods Headphones,1,150,02/21/19 09:54,"470 6th St, Dallas, TX 75001" +161133,LG Washing Machine,1,600.0,02/20/19 10:44,"23 South St, Seattle, WA 98101" +161134,Apple Airpods Headphones,1,150,02/10/19 18:02,"42 Sunset St, Boston, MA 02215" +161135,Wired Headphones,1,11.99,02/18/19 14:13,"34 Meadow St, Los Angeles, CA 90001" +161136,Lightning Charging Cable,1,14.95,02/04/19 13:33,"285 River St, Boston, MA 02215" +161137,Apple Airpods Headphones,1,150,02/18/19 19:58,"995 North St, Los Angeles, CA 90001" +161138,AA Batteries (4-pack),1,3.84,02/18/19 16:58,"3 Washington St, San Francisco, CA 94016" +161139,Macbook Pro Laptop,1,1700,02/04/19 19:22,"189 Cherry St, San Francisco, CA 94016" +161140,27in 4K Gaming Monitor,1,389.99,02/11/19 15:23,"396 Meadow St, San Francisco, CA 94016" +161141,Bose SoundSport Headphones,1,99.99,02/27/19 22:03,"569 North St, Austin, TX 73301" +161142,Google Phone,1,600,02/17/19 09:45,"217 Cherry St, San Francisco, CA 94016" +161143,AA Batteries (4-pack),1,3.84,02/10/19 11:28,"336 Adams St, Boston, MA 02215" +161144,27in FHD Monitor,1,149.99,02/04/19 21:27,"719 North St, Dallas, TX 75001" +161145,AAA Batteries (4-pack),1,2.99,02/17/19 02:10,"40 Ridge St, Boston, MA 02215" +161146,Bose SoundSport Headphones,1,99.99,02/07/19 08:12,"474 Elm St, New York City, NY 10001" +161147,USB-C Charging Cable,1,11.95,02/03/19 19:41,"61 7th St, Seattle, WA 98101" +161148,iPhone,1,700,02/24/19 23:24,"770 Cherry St, San Francisco, CA 94016" +161149,20in Monitor,1,109.99,02/03/19 16:44,"865 14th St, San Francisco, CA 94016" +161150,Wired Headphones,1,11.99,02/18/19 23:28,"857 14th St, San Francisco, CA 94016" +161151,Wired Headphones,1,11.99,02/07/19 07:11,"816 Maple St, Boston, MA 02215" +161152,Apple Airpods Headphones,1,150,02/28/19 10:20,"980 Madison St, New York City, NY 10001" +161153,iPhone,2,700,02/26/19 20:00,"909 2nd St, Boston, MA 02215" +161154,Google Phone,1,600,02/16/19 08:38,"893 Cherry St, Atlanta, GA 30301" +161155,Wired Headphones,1,11.99,02/11/19 15:25,"665 Chestnut St, Atlanta, GA 30301" +161156,Apple Airpods Headphones,1,150,02/02/19 07:03,"632 Maple St, Atlanta, GA 30301" +161156,Macbook Pro Laptop,1,1700,02/02/19 07:03,"632 Maple St, Atlanta, GA 30301" +161157,Apple Airpods Headphones,1,150,02/02/19 03:15,"718 4th St, San Francisco, CA 94016" +161158,Bose SoundSport Headphones,1,99.99,02/13/19 06:34,"992 Cherry St, New York City, NY 10001" +161159,Macbook Pro Laptop,1,1700,02/08/19 12:51,"912 7th St, San Francisco, CA 94016" +161160,USB-C Charging Cable,1,11.95,02/20/19 12:58,"849 Church St, Boston, MA 02215" +161161,Google Phone,1,600,02/04/19 17:20,"111 13th St, Austin, TX 73301" +161162,AAA Batteries (4-pack),1,2.99,02/27/19 14:39,"293 Jackson St, San Francisco, CA 94016" +161163,Apple Airpods Headphones,1,150,02/20/19 12:02,"827 5th St, Boston, MA 02215" +161164,34in Ultrawide Monitor,1,379.99,02/08/19 18:43,"349 Walnut St, New York City, NY 10001" +161165,USB-C Charging Cable,1,11.95,02/18/19 21:40,"796 Willow St, Portland, ME 04101" +161166,27in FHD Monitor,1,149.99,02/16/19 12:10,"527 7th St, Seattle, WA 98101" +161167,Wired Headphones,1,11.99,02/12/19 00:25,"239 Highland St, Boston, MA 02215" +161167,USB-C Charging Cable,1,11.95,02/12/19 00:25,"239 Highland St, Boston, MA 02215" +161168,USB-C Charging Cable,1,11.95,02/28/19 21:44,"898 10th St, Austin, TX 73301" +161169,AAA Batteries (4-pack),1,2.99,02/11/19 14:40,"285 South St, Los Angeles, CA 90001" +161170,AAA Batteries (4-pack),1,2.99,02/27/19 11:53,"515 6th St, San Francisco, CA 94016" +161171,AA Batteries (4-pack),5,3.84,02/26/19 11:53,"853 Chestnut St, Los Angeles, CA 90001" +161172,iPhone,1,700,02/24/19 12:29,"526 Meadow St, Seattle, WA 98101" +161173,AAA Batteries (4-pack),2,2.99,02/05/19 16:27,"5 9th St, Seattle, WA 98101" +161174,USB-C Charging Cable,1,11.95,02/18/19 18:19,"700 Walnut St, San Francisco, CA 94016" +161175,Bose SoundSport Headphones,1,99.99,02/24/19 06:25,"594 Walnut St, Austin, TX 73301" +161176,AAA Batteries (4-pack),1,2.99,02/02/19 18:37,"563 Lincoln St, San Francisco, CA 94016" +161177,Google Phone,1,600,02/14/19 01:02,"15 10th St, Los Angeles, CA 90001" +161178,34in Ultrawide Monitor,1,379.99,02/25/19 16:08,"929 7th St, New York City, NY 10001" +161179,Wired Headphones,1,11.99,02/25/19 00:12,"951 Park St, Austin, TX 73301" +161180,Wired Headphones,1,11.99,02/01/19 15:42,"729 Ridge St, San Francisco, CA 94016" +161181,27in FHD Monitor,1,149.99,02/13/19 12:39,"62 Hickory St, Atlanta, GA 30301" +161182,Google Phone,1,600,02/04/19 11:53,"167 Jackson St, Dallas, TX 75001" +161183,Lightning Charging Cable,1,14.95,02/14/19 11:15,"421 7th St, San Francisco, CA 94016" +161184,USB-C Charging Cable,4,11.95,02/19/19 12:25,"708 Johnson St, Los Angeles, CA 90001" +161185,Apple Airpods Headphones,1,150,02/22/19 08:36,"128 Lincoln St, Atlanta, GA 30301" +161186,Apple Airpods Headphones,1,150,02/12/19 16:12,"608 Ridge St, New York City, NY 10001" +161187,Lightning Charging Cable,1,14.95,02/09/19 22:04,"54 Wilson St, Seattle, WA 98101" +161188,Apple Airpods Headphones,1,150,02/26/19 06:42,"535 Chestnut St, San Francisco, CA 94016" +161189,iPhone,1,700,02/21/19 12:03,"436 Meadow St, Boston, MA 02215" +161189,Lightning Charging Cable,1,14.95,02/21/19 12:03,"436 Meadow St, Boston, MA 02215" +161190,27in FHD Monitor,1,149.99,02/14/19 16:33,"727 Jefferson St, San Francisco, CA 94016" +161191,Wired Headphones,1,11.99,02/16/19 10:36,"885 Spruce St, Dallas, TX 75001" +161192,Lightning Charging Cable,1,14.95,02/28/19 19:39,"304 Sunset St, San Francisco, CA 94016" +161193,iPhone,1,700,02/28/19 08:55,"416 14th St, San Francisco, CA 94016" +161194,USB-C Charging Cable,1,11.95,02/11/19 09:18,"65 Center St, Los Angeles, CA 90001" +161195,USB-C Charging Cable,2,11.95,02/26/19 14:18,"265 Park St, San Francisco, CA 94016" +161196,AA Batteries (4-pack),2,3.84,02/26/19 13:18,"363 Madison St, San Francisco, CA 94016" +161197,27in FHD Monitor,1,149.99,02/26/19 08:20,"425 Lake St, New York City, NY 10001" +161198,Lightning Charging Cable,1,14.95,02/19/19 12:31,"762 4th St, Los Angeles, CA 90001" +161199,iPhone,1,700,02/26/19 20:25,"808 4th St, New York City, NY 10001" +161200,Apple Airpods Headphones,1,150,02/06/19 22:36,"562 Meadow St, New York City, NY 10001" +161201,27in FHD Monitor,1,149.99,02/16/19 12:44,"318 1st St, San Francisco, CA 94016" +161202,Macbook Pro Laptop,1,1700,02/19/19 11:23,"713 4th St, San Francisco, CA 94016" +161203,Bose SoundSport Headphones,1,99.99,02/26/19 20:32,"193 6th St, Boston, MA 02215" +161204,Google Phone,1,600,02/13/19 16:10,"703 9th St, Portland, OR 97035" +161204,USB-C Charging Cable,1,11.95,02/13/19 16:10,"703 9th St, Portland, OR 97035" +161205,Wired Headphones,1,11.99,02/05/19 13:40,"883 River St, Seattle, WA 98101" +161206,ThinkPad Laptop,1,999.99,02/02/19 09:49,"785 Elm St, Seattle, WA 98101" +161207,Lightning Charging Cable,1,14.95,02/22/19 18:31,"330 South St, San Francisco, CA 94016" +161208,Apple Airpods Headphones,1,150,02/25/19 18:09,"604 Main St, Portland, OR 97035" +161209,AAA Batteries (4-pack),1,2.99,02/09/19 17:44,"610 Spruce St, Portland, ME 04101" +161210,20in Monitor,1,109.99,02/01/19 14:22,"628 Maple St, Portland, OR 97035" +161211,Apple Airpods Headphones,1,150,02/27/19 11:43,"742 Hill St, Los Angeles, CA 90001" +161212,Apple Airpods Headphones,1,150,02/07/19 00:20,"333 Park St, San Francisco, CA 94016" +161213,Vareebadd Phone,1,400,02/25/19 12:34,"749 12th St, Portland, OR 97035" +161214,AA Batteries (4-pack),1,3.84,02/17/19 13:19,"490 9th St, San Francisco, CA 94016" +161215,Bose SoundSport Headphones,1,99.99,02/23/19 00:27,"990 Willow St, San Francisco, CA 94016" +161216,AAA Batteries (4-pack),1,2.99,02/10/19 04:42,"502 Adams St, Atlanta, GA 30301" +161217,Bose SoundSport Headphones,1,99.99,02/08/19 10:39,"854 Ridge St, Boston, MA 02215" +161218,Apple Airpods Headphones,1,150,02/15/19 14:24,"351 Cedar St, Atlanta, GA 30301" +161219,AAA Batteries (4-pack),1,2.99,02/21/19 09:06,"394 Johnson St, Boston, MA 02215" +161220,Wired Headphones,1,11.99,02/14/19 11:05,"302 7th St, Boston, MA 02215" +161221,ThinkPad Laptop,1,999.99,02/19/19 09:10,"321 Main St, San Francisco, CA 94016" +161222,Macbook Pro Laptop,1,1700,02/20/19 22:57,"649 2nd St, San Francisco, CA 94016" +161223,AAA Batteries (4-pack),1,2.99,02/05/19 14:49,"926 1st St, Dallas, TX 75001" +161224,Apple Airpods Headphones,1,150,02/10/19 01:31,"308 Adams St, San Francisco, CA 94016" +161225,27in FHD Monitor,1,149.99,02/07/19 07:32,"210 South St, San Francisco, CA 94016" +161226,ThinkPad Laptop,1,999.99,02/03/19 18:28,"686 9th St, Los Angeles, CA 90001" +161227,Bose SoundSport Headphones,1,99.99,02/14/19 00:07,"19 River St, San Francisco, CA 94016" +161228,ThinkPad Laptop,1,999.99,02/21/19 15:23,"150 5th St, San Francisco, CA 94016" +161229,Wired Headphones,1,11.99,02/27/19 14:25,"604 12th St, New York City, NY 10001" +161230,AA Batteries (4-pack),2,3.84,02/16/19 14:40,"471 Ridge St, Dallas, TX 75001" +161231,USB-C Charging Cable,1,11.95,02/07/19 01:22,"552 Washington St, Los Angeles, CA 90001" +161232,AAA Batteries (4-pack),1,2.99,02/22/19 13:54,"277 Johnson St, Dallas, TX 75001" +161233,ThinkPad Laptop,1,999.99,02/21/19 20:14,"201 Sunset St, San Francisco, CA 94016" +161234,USB-C Charging Cable,2,11.95,02/28/19 12:12,"399 Sunset St, San Francisco, CA 94016" +161235,Flatscreen TV,1,300,02/19/19 07:56,"732 Willow St, San Francisco, CA 94016" +161236,Flatscreen TV,1,300,02/01/19 18:15,"202 Washington St, San Francisco, CA 94016" +161237,AAA Batteries (4-pack),1,2.99,02/28/19 23:54,"863 14th St, Boston, MA 02215" +161238,AAA Batteries (4-pack),1,2.99,02/16/19 22:35,"700 Church St, New York City, NY 10001" +161239,AAA Batteries (4-pack),1,2.99,02/17/19 09:08,"963 11th St, Portland, ME 04101" +161240,AA Batteries (4-pack),1,3.84,02/01/19 18:45,"718 Highland St, Austin, TX 73301" +161241,Bose SoundSport Headphones,1,99.99,02/08/19 14:36,"876 West St, Dallas, TX 75001" +161242,34in Ultrawide Monitor,1,379.99,02/11/19 20:26,"240 Park St, San Francisco, CA 94016" +161243,Bose SoundSport Headphones,1,99.99,02/02/19 12:24,"581 Dogwood St, Seattle, WA 98101" +161244,AA Batteries (4-pack),1,3.84,02/03/19 15:12,"846 Madison St, San Francisco, CA 94016" +161245,Flatscreen TV,1,300,02/15/19 13:51,"349 South St, Boston, MA 02215" +161246,USB-C Charging Cable,1,11.95,02/12/19 17:06,"942 Maple St, New York City, NY 10001" +161247,AA Batteries (4-pack),1,3.84,02/21/19 21:39,"369 Wilson St, Los Angeles, CA 90001" +161248,AA Batteries (4-pack),4,3.84,02/17/19 15:13,"867 Hill St, New York City, NY 10001" +161249,AA Batteries (4-pack),2,3.84,02/07/19 16:17,"277 5th St, Los Angeles, CA 90001" +161250,AAA Batteries (4-pack),1,2.99,02/07/19 20:23,"717 Highland St, New York City, NY 10001" +161251,27in 4K Gaming Monitor,1,389.99,02/26/19 16:57,"552 Center St, Los Angeles, CA 90001" +161252,Wired Headphones,1,11.99,02/04/19 17:03,"732 Meadow St, Los Angeles, CA 90001" +161253,27in FHD Monitor,1,149.99,02/09/19 20:42,"626 Pine St, Los Angeles, CA 90001" +161254,AA Batteries (4-pack),1,3.84,02/12/19 18:02,"292 North St, San Francisco, CA 94016" +161255,Google Phone,1,600,02/12/19 20:15,"636 Walnut St, Boston, MA 02215" +161256,AAA Batteries (4-pack),1,2.99,02/21/19 11:08,"396 2nd St, Boston, MA 02215" +161257,Google Phone,1,600,02/01/19 18:12,"457 Meadow St, Austin, TX 73301" +161258,Lightning Charging Cable,1,14.95,02/28/19 13:10,"252 1st St, New York City, NY 10001" +161259,Macbook Pro Laptop,1,1700,02/15/19 11:02,"965 Jefferson St, Austin, TX 73301" +161260,Wired Headphones,1,11.99,02/10/19 23:52,"732 South St, San Francisco, CA 94016" +161261,AAA Batteries (4-pack),1,2.99,02/24/19 13:14,"208 Washington St, Atlanta, GA 30301" +161262,AAA Batteries (4-pack),1,2.99,02/28/19 11:09,"745 Park St, Seattle, WA 98101" +161263,Lightning Charging Cable,1,14.95,02/15/19 23:32,"975 Sunset St, Los Angeles, CA 90001" +161264,Wired Headphones,1,11.99,02/09/19 12:53,"774 Cedar St, San Francisco, CA 94016" +161265,USB-C Charging Cable,1,11.95,02/16/19 11:03,"14 Chestnut St, Boston, MA 02215" +161266,AA Batteries (4-pack),1,3.84,02/25/19 08:15,"761 2nd St, Seattle, WA 98101" +161267,USB-C Charging Cable,1,11.95,02/18/19 20:43,"12 Center St, San Francisco, CA 94016" +161268,Wired Headphones,1,11.99,02/14/19 15:47,"577 Lakeview St, San Francisco, CA 94016" +161269,AAA Batteries (4-pack),4,2.99,02/19/19 16:34,"476 Wilson St, Atlanta, GA 30301" +161270,AAA Batteries (4-pack),2,2.99,02/07/19 10:51,"131 Lakeview St, Los Angeles, CA 90001" +161271,iPhone,1,700,02/03/19 18:04,"3 Dogwood St, Los Angeles, CA 90001" +161271,Apple Airpods Headphones,1,150,02/03/19 18:04,"3 Dogwood St, Los Angeles, CA 90001" +161272,Bose SoundSport Headphones,1,99.99,02/08/19 11:11,"758 Park St, Boston, MA 02215" +161273,Wired Headphones,1,11.99,02/19/19 12:10,"81 Madison St, San Francisco, CA 94016" +161274,USB-C Charging Cable,1,11.95,02/03/19 21:55,"874 Ridge St, New York City, NY 10001" +161275,ThinkPad Laptop,1,999.99,02/16/19 22:42,"148 9th St, Austin, TX 73301" +161276,USB-C Charging Cable,1,11.95,02/08/19 08:16,"473 West St, San Francisco, CA 94016" +161277,Wired Headphones,1,11.99,02/01/19 15:11,"26 Park St, Los Angeles, CA 90001" +161278,Wired Headphones,1,11.99,02/10/19 12:38,"750 13th St, Austin, TX 73301" +161279,27in 4K Gaming Monitor,1,389.99,02/03/19 14:58,"955 Church St, Seattle, WA 98101" +161280,Flatscreen TV,1,300,02/14/19 13:48,"49 Jackson St, San Francisco, CA 94016" +161281,27in 4K Gaming Monitor,1,389.99,02/22/19 07:37,"675 Hill St, Boston, MA 02215" +161282,AA Batteries (4-pack),1,3.84,02/10/19 20:21,"101 Ridge St, Seattle, WA 98101" +161283,Lightning Charging Cable,2,14.95,02/08/19 10:16,"446 River St, San Francisco, CA 94016" +161284,USB-C Charging Cable,1,11.95,02/20/19 18:08,"446 Church St, Seattle, WA 98101" +161285,USB-C Charging Cable,1,11.95,02/08/19 16:28,"260 Elm St, New York City, NY 10001" +161285,Vareebadd Phone,1,400,02/08/19 16:28,"260 Elm St, New York City, NY 10001" +161286,Lightning Charging Cable,1,14.95,02/10/19 08:12,"419 Madison St, San Francisco, CA 94016" +161287,iPhone,1,700,02/24/19 19:17,"130 11th St, Portland, OR 97035" +161288,Wired Headphones,1,11.99,02/21/19 16:38,"967 Highland St, Atlanta, GA 30301" +161289,AAA Batteries (4-pack),3,2.99,02/12/19 10:32,"28 2nd St, Los Angeles, CA 90001" +161290,USB-C Charging Cable,2,11.95,02/23/19 17:07,"634 Chestnut St, Los Angeles, CA 90001" +161291,27in FHD Monitor,1,149.99,02/12/19 13:32,"510 Maple St, Los Angeles, CA 90001" +161292,Lightning Charging Cable,1,14.95,02/26/19 23:52,"399 12th St, Portland, OR 97035" +161293,27in FHD Monitor,1,149.99,02/12/19 08:56,"631 Center St, Los Angeles, CA 90001" +161294,27in 4K Gaming Monitor,1,389.99,02/17/19 19:35,"570 Wilson St, New York City, NY 10001" +161295,USB-C Charging Cable,2,11.95,02/11/19 18:49,"745 Hickory St, San Francisco, CA 94016" +161296,ThinkPad Laptop,1,999.99,02/25/19 17:08,"655 10th St, Portland, OR 97035" +161297,AA Batteries (4-pack),1,3.84,02/21/19 18:42,"447 1st St, Austin, TX 73301" +161298,AA Batteries (4-pack),2,3.84,02/04/19 15:31,"653 Meadow St, Los Angeles, CA 90001" +161299,34in Ultrawide Monitor,1,379.99,02/20/19 11:30,"576 Walnut St, San Francisco, CA 94016" +161300,AA Batteries (4-pack),1,3.84,02/01/19 12:27,"294 Hill St, Austin, TX 73301" +161301,USB-C Charging Cable,1,11.95,02/06/19 09:49,"373 Meadow St, Atlanta, GA 30301" +161302,Lightning Charging Cable,1,14.95,02/24/19 16:49,"447 Maple St, San Francisco, CA 94016" +161303,AAA Batteries (4-pack),1,2.99,02/14/19 17:15,"133 Spruce St, San Francisco, CA 94016" +161304,AA Batteries (4-pack),1,3.84,02/01/19 14:38,"710 River St, San Francisco, CA 94016" +161305,Macbook Pro Laptop,1,1700,02/04/19 08:21,"11 2nd St, Atlanta, GA 30301" +161306,AAA Batteries (4-pack),2,2.99,02/21/19 19:48,"846 Madison St, Seattle, WA 98101" +161307,Wired Headphones,1,11.99,02/26/19 12:35,"42 Dogwood St, Seattle, WA 98101" +161308,Bose SoundSport Headphones,1,99.99,02/18/19 17:41,"38 Lincoln St, San Francisco, CA 94016" +161309,Apple Airpods Headphones,1,150,02/25/19 22:15,"913 Ridge St, Boston, MA 02215" +161310,ThinkPad Laptop,1,999.99,02/21/19 09:02,"462 Center St, Atlanta, GA 30301" +161311,USB-C Charging Cable,1,11.95,02/02/19 14:02,"749 Washington St, San Francisco, CA 94016" +161312,USB-C Charging Cable,1,11.95,02/14/19 22:18,"713 Wilson St, New York City, NY 10001" +161313,Macbook Pro Laptop,1,1700,02/01/19 18:46,"496 Washington St, Boston, MA 02215" +161314,USB-C Charging Cable,1,11.95,02/21/19 16:11,"753 Elm St, Boston, MA 02215" +161315,iPhone,1,700,02/22/19 00:11,"308 13th St, Portland, OR 97035" +161316,Wired Headphones,1,11.99,02/11/19 18:53,"836 North St, Los Angeles, CA 90001" +161317,Apple Airpods Headphones,1,150,02/21/19 16:21,"498 Maple St, Los Angeles, CA 90001" +161318,Lightning Charging Cable,1,14.95,02/24/19 00:16,"246 10th St, Dallas, TX 75001" +161319,Lightning Charging Cable,1,14.95,02/16/19 06:47,"338 Main St, Austin, TX 73301" +161320,Apple Airpods Headphones,1,150,02/27/19 20:39,"906 6th St, Dallas, TX 75001" +161321,27in 4K Gaming Monitor,1,389.99,02/22/19 16:19,"356 Washington St, New York City, NY 10001" +161322,USB-C Charging Cable,1,11.95,02/01/19 13:17,"562 Johnson St, San Francisco, CA 94016" +161323,AA Batteries (4-pack),1,3.84,02/15/19 13:16,"748 Lake St, Los Angeles, CA 90001" +161324,Lightning Charging Cable,1,14.95,02/01/19 07:42,"28 Church St, New York City, NY 10001" +161325,27in 4K Gaming Monitor,1,389.99,02/01/19 08:54,"520 Center St, Atlanta, GA 30301" +161326,Macbook Pro Laptop,1,1700,02/09/19 11:34,"25 7th St, Boston, MA 02215" +161327,AA Batteries (4-pack),1,3.84,02/09/19 10:06,"635 13th St, New York City, NY 10001" +161328,Apple Airpods Headphones,1,150,02/08/19 20:05,"897 Willow St, Los Angeles, CA 90001" +161329,USB-C Charging Cable,1,11.95,02/18/19 12:10,"313 6th St, San Francisco, CA 94016" +161330,Apple Airpods Headphones,1,150,02/19/19 23:27,"800 13th St, Los Angeles, CA 90001" +161331,Lightning Charging Cable,1,14.95,02/21/19 17:33,"541 Wilson St, Los Angeles, CA 90001" +161332,AAA Batteries (4-pack),1,2.99,02/22/19 07:27,"753 12th St, Boston, MA 02215" +161333,USB-C Charging Cable,3,11.95,02/06/19 10:52,"820 Willow St, San Francisco, CA 94016" +161334,Lightning Charging Cable,1,14.95,02/19/19 08:12,"205 North St, Dallas, TX 75001" +161335,AAA Batteries (4-pack),1,2.99,02/02/19 22:00,"668 4th St, Los Angeles, CA 90001" +161336,AAA Batteries (4-pack),3,2.99,02/09/19 21:41,"961 Wilson St, San Francisco, CA 94016" +161337,Lightning Charging Cable,1,14.95,02/05/19 17:01,"499 Dogwood St, Austin, TX 73301" +161338,Bose SoundSport Headphones,1,99.99,02/11/19 13:25,"674 River St, Seattle, WA 98101" +161339,AA Batteries (4-pack),1,3.84,02/09/19 16:43,"986 6th St, Dallas, TX 75001" +161340,Wired Headphones,1,11.99,02/18/19 19:09,"4 Elm St, Boston, MA 02215" +161341,USB-C Charging Cable,1,11.95,02/14/19 02:29,"203 Jackson St, Dallas, TX 75001" +161342,AA Batteries (4-pack),1,3.84,02/24/19 18:42,"991 Madison St, Los Angeles, CA 90001" +161343,USB-C Charging Cable,2,11.95,02/23/19 16:20,"282 Park St, Portland, OR 97035" +161344,Apple Airpods Headphones,1,150,02/26/19 11:45,"164 Pine St, Seattle, WA 98101" +161345,AAA Batteries (4-pack),1,2.99,02/20/19 21:35,"374 Spruce St, San Francisco, CA 94016" +161346,AAA Batteries (4-pack),1,2.99,02/02/19 11:44,"803 Elm St, Boston, MA 02215" +161347,27in 4K Gaming Monitor,1,389.99,02/14/19 19:41,"970 Lakeview St, Boston, MA 02215" +161348,Google Phone,1,600,02/09/19 17:15,"198 Lakeview St, Dallas, TX 75001" +161349,Google Phone,1,600,02/10/19 13:11,"761 Hickory St, San Francisco, CA 94016" +161350,iPhone,1,700,02/03/19 13:22,"280 Lake St, Boston, MA 02215" +161351,Bose SoundSport Headphones,1,99.99,02/13/19 10:10,"45 Wilson St, New York City, NY 10001" +161352,Lightning Charging Cable,1,14.95,02/03/19 20:30,"9 South St, Portland, OR 97035" +161353,Macbook Pro Laptop,1,1700,02/13/19 08:48,"497 Jackson St, New York City, NY 10001" +161354,Lightning Charging Cable,1,14.95,02/21/19 19:10,"788 8th St, Boston, MA 02215" +161355,AAA Batteries (4-pack),1,2.99,02/25/19 10:13,"40 Wilson St, Dallas, TX 75001" +161356,Bose SoundSport Headphones,1,99.99,02/17/19 09:06,"569 12th St, Los Angeles, CA 90001" +161357,AA Batteries (4-pack),1,3.84,02/07/19 21:50,"789 Park St, San Francisco, CA 94016" +161358,USB-C Charging Cable,1,11.95,02/12/19 14:35,"394 Hill St, Portland, OR 97035" +161359,Wired Headphones,1,11.99,02/15/19 18:16,"462 14th St, Los Angeles, CA 90001" +161360,Apple Airpods Headphones,1,150,02/13/19 06:14,"873 Sunset St, San Francisco, CA 94016" +161361,Google Phone,1,600,02/23/19 13:05,"617 11th St, Portland, OR 97035" +161362,AA Batteries (4-pack),1,3.84,02/13/19 23:27,"250 Spruce St, New York City, NY 10001" +161363,Lightning Charging Cable,1,14.95,02/11/19 22:12,"658 Elm St, San Francisco, CA 94016" +161364,Flatscreen TV,1,300,02/26/19 19:38,"761 Walnut St, Seattle, WA 98101" +161365,Apple Airpods Headphones,1,150,02/06/19 15:36,"976 Wilson St, Los Angeles, CA 90001" +161366,Apple Airpods Headphones,1,150,02/04/19 09:36,"85 Forest St, Portland, OR 97035" +161367,Lightning Charging Cable,1,14.95,02/03/19 08:45,"706 Elm St, Atlanta, GA 30301" +161368,USB-C Charging Cable,1,11.95,02/26/19 14:14,"133 11th St, New York City, NY 10001" +161369,AAA Batteries (4-pack),2,2.99,02/15/19 22:03,"633 North St, Austin, TX 73301" +161370,34in Ultrawide Monitor,1,379.99,02/14/19 14:31,"932 Willow St, New York City, NY 10001" +161371,Wired Headphones,1,11.99,02/23/19 20:27,"172 Cedar St, Los Angeles, CA 90001" +161372,Bose SoundSport Headphones,1,99.99,02/23/19 16:23,"335 Sunset St, San Francisco, CA 94016" +161373,27in FHD Monitor,1,149.99,02/12/19 22:00,"818 Main St, Los Angeles, CA 90001" +161374,AAA Batteries (4-pack),1,2.99,02/08/19 10:18,"454 Jefferson St, New York City, NY 10001" +161375,34in Ultrawide Monitor,1,379.99,02/26/19 16:29,"321 13th St, Los Angeles, CA 90001" +161376,Lightning Charging Cable,2,14.95,02/11/19 07:26,"182 Lincoln St, San Francisco, CA 94016" +161377,USB-C Charging Cable,1,11.95,02/22/19 08:33,"299 Willow St, New York City, NY 10001" +161378,AA Batteries (4-pack),2,3.84,02/08/19 08:51,"814 12th St, San Francisco, CA 94016" +161379,Apple Airpods Headphones,1,150,02/10/19 16:59,"230 Adams St, San Francisco, CA 94016" +161380,ThinkPad Laptop,1,999.99,02/16/19 04:42,"333 Highland St, New York City, NY 10001" +161381,AAA Batteries (4-pack),1,2.99,02/28/19 07:03,"905 14th St, San Francisco, CA 94016" +161382,Wired Headphones,1,11.99,02/13/19 17:43,"327 Forest St, New York City, NY 10001" +161383,AA Batteries (4-pack),1,3.84,02/28/19 14:13,"322 Lincoln St, San Francisco, CA 94016" +161384,Lightning Charging Cable,1,14.95,02/22/19 00:35,"663 Cherry St, Los Angeles, CA 90001" +161385,Apple Airpods Headphones,1,150,02/25/19 21:13,"160 Church St, Seattle, WA 98101" +161386,Lightning Charging Cable,1,14.95,02/25/19 19:38,"302 Maple St, Dallas, TX 75001" +161387,Bose SoundSport Headphones,1,99.99,02/25/19 20:51,"996 Adams St, Atlanta, GA 30301" +161388,AA Batteries (4-pack),1,3.84,02/06/19 09:44,"966 River St, New York City, NY 10001" +161389,Macbook Pro Laptop,1,1700,02/15/19 11:13,"953 West St, New York City, NY 10001" +161390,Wired Headphones,1,11.99,02/01/19 11:56,"373 River St, New York City, NY 10001" +161391,Lightning Charging Cable,1,14.95,02/11/19 00:40,"854 Park St, San Francisco, CA 94016" +161392,Apple Airpods Headphones,1,150,02/14/19 15:37,"581 Johnson St, Austin, TX 73301" +161393,Wired Headphones,2,11.99,02/25/19 00:16,"337 14th St, San Francisco, CA 94016" +161394,34in Ultrawide Monitor,1,379.99,02/02/19 17:20,"736 Jefferson St, San Francisco, CA 94016" +161395,Bose SoundSport Headphones,1,99.99,02/12/19 08:17,"796 North St, New York City, NY 10001" +161396,Lightning Charging Cable,1,14.95,02/03/19 12:48,"378 North St, San Francisco, CA 94016" +161397,20in Monitor,1,109.99,02/27/19 11:14,"70 14th St, Dallas, TX 75001" +161398,Wired Headphones,1,11.99,02/08/19 08:57,"274 Church St, Boston, MA 02215" +161399,iPhone,1,700,02/11/19 10:57,"495 West St, San Francisco, CA 94016" +161400,34in Ultrawide Monitor,1,379.99,02/14/19 13:22,"731 Hickory St, Boston, MA 02215" +161401,AAA Batteries (4-pack),1,2.99,02/26/19 12:42,"572 Pine St, Portland, OR 97035" +161402,Vareebadd Phone,1,400,02/18/19 19:07,"278 Spruce St, Boston, MA 02215" +161402,Bose SoundSport Headphones,1,99.99,02/18/19 19:07,"278 Spruce St, Boston, MA 02215" +161403,USB-C Charging Cable,1,11.95,02/09/19 11:04,"761 Johnson St, San Francisco, CA 94016" +161404,Apple Airpods Headphones,1,150,02/27/19 21:47,"188 Church St, Portland, OR 97035" +161405,34in Ultrawide Monitor,1,379.99,02/04/19 22:15,"189 Adams St, Atlanta, GA 30301" +161406,Macbook Pro Laptop,1,1700,02/13/19 15:06,"540 Washington St, Boston, MA 02215" +161407,Lightning Charging Cable,1,14.95,02/13/19 19:57,"350 Cherry St, San Francisco, CA 94016" +161408,Lightning Charging Cable,1,14.95,02/11/19 09:39,"698 Jackson St, Seattle, WA 98101" +161409,27in FHD Monitor,1,149.99,02/22/19 12:11,"766 11th St, San Francisco, CA 94016" +161410,Apple Airpods Headphones,1,150,02/17/19 21:48,"229 Church St, Seattle, WA 98101" +161411,34in Ultrawide Monitor,1,379.99,02/20/19 17:30,"477 Spruce St, Dallas, TX 75001" +161412,USB-C Charging Cable,1,11.95,02/13/19 13:16,"661 5th St, Atlanta, GA 30301" +161413,AAA Batteries (4-pack),1,2.99,02/08/19 07:53,"723 Willow St, Los Angeles, CA 90001" +161414,AAA Batteries (4-pack),1,2.99,02/19/19 09:17,"696 13th St, Boston, MA 02215" +161415,Lightning Charging Cable,1,14.95,02/28/19 11:46,"271 Hickory St, New York City, NY 10001" +161416,Apple Airpods Headphones,1,150,02/20/19 16:16,"253 13th St, Seattle, WA 98101" +161417,Wired Headphones,1,11.99,02/04/19 00:58,"819 Hickory St, Seattle, WA 98101" +161418,AAA Batteries (4-pack),1,2.99,02/26/19 17:36,"477 2nd St, Atlanta, GA 30301" +161419,AA Batteries (4-pack),1,3.84,02/22/19 06:17,"527 13th St, New York City, NY 10001" +161420,27in FHD Monitor,1,149.99,02/26/19 22:45,"231 12th St, San Francisco, CA 94016" +161421,Wired Headphones,1,11.99,02/22/19 21:20,"553 West St, New York City, NY 10001" +161422,Apple Airpods Headphones,1,150,02/12/19 16:53,"210 14th St, San Francisco, CA 94016" +161423,Apple Airpods Headphones,1,150,02/24/19 09:44,"963 Highland St, San Francisco, CA 94016" +161424,AAA Batteries (4-pack),1,2.99,02/28/19 12:46,"649 Maple St, Boston, MA 02215" +161425,AA Batteries (4-pack),1,3.84,02/25/19 23:36,"705 Adams St, Atlanta, GA 30301" +161426,USB-C Charging Cable,1,11.95,02/18/19 20:51,"512 7th St, Boston, MA 02215" +161427,Macbook Pro Laptop,1,1700,02/26/19 14:22,"734 Lake St, San Francisco, CA 94016" +161428,USB-C Charging Cable,1,11.95,02/05/19 16:38,"85 8th St, Los Angeles, CA 90001" +161429,Vareebadd Phone,1,400,02/09/19 00:37,"907 Madison St, San Francisco, CA 94016" +161430,Apple Airpods Headphones,1,150,02/17/19 11:51,"868 Maple St, San Francisco, CA 94016" +161431,Wired Headphones,1,11.99,02/03/19 22:38,"909 Forest St, Seattle, WA 98101" +161432,AA Batteries (4-pack),2,3.84,02/22/19 11:31,"683 Cherry St, San Francisco, CA 94016" +161433,27in 4K Gaming Monitor,1,389.99,02/26/19 10:47,"872 Cherry St, Boston, MA 02215" +161434,USB-C Charging Cable,2,11.95,02/03/19 15:42,"513 6th St, Austin, TX 73301" +161435,Lightning Charging Cable,1,14.95,02/01/19 19:23,"510 12th St, Seattle, WA 98101" +161436,Bose SoundSport Headphones,1,99.99,02/07/19 06:36,"970 Jefferson St, Los Angeles, CA 90001" +161437,AAA Batteries (4-pack),1,2.99,02/23/19 12:47,"640 Cedar St, San Francisco, CA 94016" +161438,Wired Headphones,1,11.99,02/06/19 20:50,"858 Wilson St, Boston, MA 02215" +161439,Flatscreen TV,1,300,02/06/19 01:26,"871 Chestnut St, Atlanta, GA 30301" +161440,Lightning Charging Cable,1,14.95,02/26/19 14:19,"916 2nd St, Seattle, WA 98101" +161441,USB-C Charging Cable,1,11.95,02/14/19 12:09,"754 Lincoln St, Los Angeles, CA 90001" +161442,AAA Batteries (4-pack),1,2.99,02/05/19 12:31,"301 Walnut St, Austin, TX 73301" +161443,Apple Airpods Headphones,1,150,02/14/19 15:44,"298 Cherry St, San Francisco, CA 94016" +161444,AAA Batteries (4-pack),1,2.99,02/01/19 22:12,"766 Jefferson St, Los Angeles, CA 90001" +161445,Wired Headphones,2,11.99,02/27/19 21:15,"900 Hill St, Seattle, WA 98101" +161446,20in Monitor,1,109.99,02/21/19 11:36,"538 5th St, Austin, TX 73301" +161447,Wired Headphones,1,11.99,02/20/19 13:31,"47 Adams St, San Francisco, CA 94016" +161448,20in Monitor,1,109.99,02/24/19 12:38,"853 5th St, Los Angeles, CA 90001" +161449,27in FHD Monitor,1,149.99,02/24/19 20:11,"60 Washington St, San Francisco, CA 94016" +161450,AA Batteries (4-pack),1,3.84,02/26/19 23:58,"747 6th St, New York City, NY 10001" +161451,AAA Batteries (4-pack),1,2.99,02/26/19 12:42,"536 4th St, San Francisco, CA 94016" +161452,34in Ultrawide Monitor,1,379.99,02/26/19 18:58,"104 Spruce St, Los Angeles, CA 90001" +161453,Lightning Charging Cable,1,14.95,02/25/19 20:36,"905 Jackson St, San Francisco, CA 94016" +161454,AA Batteries (4-pack),1,3.84,02/08/19 14:10,"97 Chestnut St, Atlanta, GA 30301" +161455,USB-C Charging Cable,1,11.95,02/07/19 04:37,"784 8th St, San Francisco, CA 94016" +161456,Lightning Charging Cable,1,14.95,02/27/19 16:18,"554 Sunset St, New York City, NY 10001" +161457,AA Batteries (4-pack),1,3.84,02/24/19 15:52,"15 Center St, Portland, OR 97035" +161458,34in Ultrawide Monitor,1,379.99,02/06/19 10:28,"90 Sunset St, Atlanta, GA 30301" +161459,USB-C Charging Cable,1,11.95,02/01/19 18:51,"692 River St, San Francisco, CA 94016" +161460,Wired Headphones,1,11.99,02/18/19 21:30,"116 Meadow St, Los Angeles, CA 90001" +161461,Wired Headphones,1,11.99,02/08/19 14:38,"8 Ridge St, Los Angeles, CA 90001" +161462,Apple Airpods Headphones,1,150,02/28/19 12:31,"603 9th St, Los Angeles, CA 90001" +161463,AAA Batteries (4-pack),1,2.99,02/01/19 12:37,"246 13th St, San Francisco, CA 94016" +161464,Flatscreen TV,1,300,02/22/19 17:49,"1 Johnson St, New York City, NY 10001" +161465,AAA Batteries (4-pack),1,2.99,02/03/19 10:06,"841 13th St, Seattle, WA 98101" +161466,USB-C Charging Cable,1,11.95,02/20/19 11:05,"286 Main St, San Francisco, CA 94016" +161467,Wired Headphones,1,11.99,02/14/19 06:18,"781 Park St, Portland, OR 97035" +161468,ThinkPad Laptop,1,999.99,02/06/19 06:01,"457 Chestnut St, Los Angeles, CA 90001" +161469,Lightning Charging Cable,1,14.95,02/23/19 18:45,"48 Park St, Seattle, WA 98101" +161470,ThinkPad Laptop,1,999.99,02/28/19 15:53,"442 14th St, New York City, NY 10001" +161471,Bose SoundSport Headphones,1,99.99,02/18/19 23:50,"311 West St, Seattle, WA 98101" +161472,Wired Headphones,3,11.99,02/21/19 06:05,"33 River St, Los Angeles, CA 90001" +161473,Lightning Charging Cable,1,14.95,02/26/19 22:11,"574 Cherry St, New York City, NY 10001" +161474,iPhone,1,700,02/10/19 17:06,"813 Walnut St, New York City, NY 10001" +161474,Wired Headphones,1,11.99,02/10/19 17:06,"813 Walnut St, New York City, NY 10001" +161475,AA Batteries (4-pack),1,3.84,02/02/19 14:44,"725 Jackson St, Portland, OR 97035" +161476,27in 4K Gaming Monitor,1,389.99,02/24/19 12:31,"533 Pine St, Los Angeles, CA 90001" +161477,27in 4K Gaming Monitor,1,389.99,02/27/19 20:58,"458 River St, New York City, NY 10001" +161478,ThinkPad Laptop,1,999.99,02/07/19 12:23,"129 Willow St, Los Angeles, CA 90001" +161479,AAA Batteries (4-pack),1,2.99,02/23/19 14:30,"212 Lakeview St, Seattle, WA 98101" +161480,USB-C Charging Cable,1,11.95,02/16/19 22:30,"267 14th St, Atlanta, GA 30301" +161481,AA Batteries (4-pack),1,3.84,02/19/19 18:29,"960 Cedar St, Portland, OR 97035" +161482,27in 4K Gaming Monitor,1,389.99,02/20/19 10:17,"872 Jackson St, Dallas, TX 75001" +161483,Lightning Charging Cable,1,14.95,02/22/19 15:51,"571 Ridge St, Dallas, TX 75001" +161484,AA Batteries (4-pack),1,3.84,02/09/19 12:38,"230 Walnut St, Boston, MA 02215" +161485,Apple Airpods Headphones,1,150,02/13/19 10:24,"971 Elm St, New York City, NY 10001" +161486,iPhone,1,700,02/19/19 13:58,"390 Sunset St, San Francisco, CA 94016" +161487,27in FHD Monitor,1,149.99,02/12/19 13:53,"577 Wilson St, San Francisco, CA 94016" +161488,AA Batteries (4-pack),1,3.84,02/13/19 11:05,"325 Johnson St, Los Angeles, CA 90001" +161489,AA Batteries (4-pack),2,3.84,02/19/19 16:10,"971 Park St, Boston, MA 02215" +161490,Wired Headphones,1,11.99,02/01/19 11:59,"182 Spruce St, Dallas, TX 75001" +161491,Apple Airpods Headphones,1,150,02/03/19 10:33,"605 Highland St, Austin, TX 73301" +161492,Apple Airpods Headphones,1,150,02/10/19 23:32,"865 Madison St, Atlanta, GA 30301" +161493,iPhone,1,700,02/02/19 09:33,"215 Washington St, Austin, TX 73301" +161494,iPhone,1,700,02/19/19 09:32,"472 4th St, San Francisco, CA 94016" +161494,Lightning Charging Cable,1,14.95,02/19/19 09:32,"472 4th St, San Francisco, CA 94016" +161494,ThinkPad Laptop,1,999.99,02/19/19 09:32,"472 4th St, San Francisco, CA 94016" +161495,USB-C Charging Cable,1,11.95,02/28/19 19:36,"612 Madison St, Dallas, TX 75001" +161496,27in FHD Monitor,1,149.99,02/08/19 00:23,"771 South St, Boston, MA 02215" +161497,Flatscreen TV,1,300,02/17/19 21:14,"439 11th St, Atlanta, GA 30301" +161498,Lightning Charging Cable,1,14.95,02/09/19 09:21,"719 Maple St, New York City, NY 10001" +161499,27in 4K Gaming Monitor,1,389.99,02/22/19 08:42,"950 Spruce St, Boston, MA 02215" +161500,USB-C Charging Cable,1,11.95,02/02/19 21:53,"247 Main St, Austin, TX 73301" +161501,Bose SoundSport Headphones,1,99.99,02/07/19 16:24,"494 4th St, Boston, MA 02215" +161502,Lightning Charging Cable,1,14.95,02/04/19 16:38,"275 14th St, Portland, OR 97035" +161503,Bose SoundSport Headphones,1,99.99,02/14/19 18:54,"891 Chestnut St, Los Angeles, CA 90001" +161504,Bose SoundSport Headphones,1,99.99,02/26/19 10:04,"616 Sunset St, Portland, OR 97035" +161505,27in FHD Monitor,1,149.99,02/03/19 13:10,"900 Cedar St, Dallas, TX 75001" +161506,Apple Airpods Headphones,1,150,02/14/19 16:43,"425 8th St, San Francisco, CA 94016" +161507,Apple Airpods Headphones,1,150,02/08/19 14:28,"951 Cedar St, San Francisco, CA 94016" +161508,Flatscreen TV,1,300,02/24/19 16:21,"177 Forest St, New York City, NY 10001" +161509,27in FHD Monitor,1,149.99,02/25/19 17:26,"521 Forest St, Los Angeles, CA 90001" +161510,AAA Batteries (4-pack),2,2.99,02/25/19 12:03,"629 Park St, San Francisco, CA 94016" +161511,USB-C Charging Cable,1,11.95,02/28/19 22:04,"84 8th St, Los Angeles, CA 90001" +161512,Apple Airpods Headphones,1,150,02/03/19 22:58,"463 Chestnut St, Los Angeles, CA 90001" +161512,AAA Batteries (4-pack),2,2.99,02/03/19 22:58,"463 Chestnut St, Los Angeles, CA 90001" +161513,AA Batteries (4-pack),1,3.84,02/12/19 15:06,"982 1st St, Los Angeles, CA 90001" +161514,iPhone,1,700,02/02/19 17:45,"920 Walnut St, New York City, NY 10001" +161515,AA Batteries (4-pack),2,3.84,02/16/19 15:18,"617 1st St, Portland, OR 97035" +161516,27in 4K Gaming Monitor,1,389.99,02/07/19 09:52,"343 Chestnut St, San Francisco, CA 94016" +161517,USB-C Charging Cable,1,11.95,02/19/19 21:15,"999 Cedar St, Dallas, TX 75001" +161518,AAA Batteries (4-pack),1,2.99,02/19/19 02:00,"56 2nd St, Los Angeles, CA 90001" +161519,Lightning Charging Cable,1,14.95,02/01/19 18:32,"151 6th St, Los Angeles, CA 90001" +161520,Bose SoundSport Headphones,1,99.99,02/20/19 15:58,"23 12th St, Portland, OR 97035" +161521,Bose SoundSport Headphones,1,99.99,02/16/19 21:49,"430 Dogwood St, Seattle, WA 98101" +161522,34in Ultrawide Monitor,1,379.99,02/26/19 17:05,"109 Highland St, Atlanta, GA 30301" +161523,AA Batteries (4-pack),1,3.84,02/25/19 16:51,"778 Church St, Dallas, TX 75001" +161524,20in Monitor,1,109.99,02/04/19 22:36,"961 12th St, Dallas, TX 75001" +161525,USB-C Charging Cable,1,11.95,02/04/19 11:03,"741 Cherry St, Portland, ME 04101" +161526,LG Dryer,1,600.0,02/20/19 19:37,"54 Maple St, San Francisco, CA 94016" +161527,27in FHD Monitor,1,149.99,02/26/19 18:40,"116 6th St, Portland, ME 04101" +161528,Lightning Charging Cable,1,14.95,02/22/19 19:49,"291 Dogwood St, San Francisco, CA 94016" +161529,USB-C Charging Cable,1,11.95,02/21/19 14:29,"343 2nd St, Dallas, TX 75001" +161530,Lightning Charging Cable,1,14.95,02/10/19 21:08,"788 Willow St, Boston, MA 02215" +161531,AAA Batteries (4-pack),3,2.99,02/10/19 21:38,"638 Lake St, San Francisco, CA 94016" +161532,Lightning Charging Cable,1,14.95,02/28/19 15:23,"405 Park St, New York City, NY 10001" +161533,Bose SoundSport Headphones,1,99.99,02/03/19 13:35,"2 Lake St, San Francisco, CA 94016" +161534,Lightning Charging Cable,2,14.95,02/10/19 19:58,"648 5th St, Los Angeles, CA 90001" +161535,Lightning Charging Cable,1,14.95,02/14/19 09:09,"884 Lakeview St, Austin, TX 73301" +161536,Bose SoundSport Headphones,1,99.99,02/05/19 05:49,"776 Hickory St, San Francisco, CA 94016" +161537,Wired Headphones,1,11.99,02/04/19 14:04,"604 Sunset St, San Francisco, CA 94016" +161538,AA Batteries (4-pack),1,3.84,02/05/19 14:12,"486 Johnson St, Portland, OR 97035" +161539,AA Batteries (4-pack),2,3.84,02/24/19 20:57,"574 Hickory St, Seattle, WA 98101" +161540,Lightning Charging Cable,1,14.95,02/17/19 09:09,"708 7th St, New York City, NY 10001" +161541,Bose SoundSport Headphones,1,99.99,02/08/19 20:40,"26 Forest St, San Francisco, CA 94016" +161542,Bose SoundSport Headphones,1,99.99,02/02/19 22:57,"603 Lake St, New York City, NY 10001" +161543,34in Ultrawide Monitor,1,379.99,02/05/19 01:56,"130 7th St, San Francisco, CA 94016" +161544,27in FHD Monitor,1,149.99,02/27/19 20:23,"899 Adams St, San Francisco, CA 94016" +161545,iPhone,1,700,02/07/19 23:35,"914 Lake St, Seattle, WA 98101" +161546,Lightning Charging Cable,1,14.95,02/11/19 18:27,"316 10th St, New York City, NY 10001" +161547,Bose SoundSport Headphones,1,99.99,02/06/19 13:15,"247 Cherry St, San Francisco, CA 94016" +161548,Macbook Pro Laptop,1,1700,02/12/19 22:14,"70 6th St, Portland, ME 04101" +161549,AAA Batteries (4-pack),1,2.99,02/15/19 22:38,"968 11th St, San Francisco, CA 94016" +161550,Lightning Charging Cable,2,14.95,02/10/19 00:20,"303 Adams St, San Francisco, CA 94016" +161551,Wired Headphones,1,11.99,02/26/19 17:40,"981 Highland St, Atlanta, GA 30301" +161552,USB-C Charging Cable,1,11.95,02/08/19 20:23,"80 Willow St, Dallas, TX 75001" +161553,USB-C Charging Cable,1,11.95,02/11/19 13:47,"437 10th St, Los Angeles, CA 90001" +161553,AAA Batteries (4-pack),1,2.99,02/11/19 13:47,"437 10th St, Los Angeles, CA 90001" +161554,Lightning Charging Cable,1,14.95,02/23/19 11:07,"252 River St, San Francisco, CA 94016" +161555,LG Washing Machine,1,600.0,02/23/19 12:37,"600 West St, Seattle, WA 98101" +161556,LG Washing Machine,1,600.0,02/27/19 11:08,"375 Jefferson St, New York City, NY 10001" +161557,AA Batteries (4-pack),1,3.84,02/22/19 10:07,"586 Lincoln St, Atlanta, GA 30301" +161558,27in FHD Monitor,1,149.99,02/19/19 09:18,"795 Lakeview St, Boston, MA 02215" +161559,Flatscreen TV,1,300,02/19/19 12:29,"92 Johnson St, Dallas, TX 75001" +161560,Wired Headphones,1,11.99,02/16/19 07:29,"683 River St, Los Angeles, CA 90001" +161561,Flatscreen TV,1,300,02/05/19 15:44,"741 Walnut St, Austin, TX 73301" +161562,ThinkPad Laptop,1,999.99,02/17/19 11:26,"645 Sunset St, New York City, NY 10001" +161563,Bose SoundSport Headphones,1,99.99,02/06/19 21:35,"216 12th St, Seattle, WA 98101" +161564,Bose SoundSport Headphones,1,99.99,02/27/19 19:05,"971 1st St, Seattle, WA 98101" +161565,AAA Batteries (4-pack),3,2.99,02/23/19 16:57,"493 Main St, San Francisco, CA 94016" +161566,AAA Batteries (4-pack),1,2.99,02/19/19 17:53,"529 Jackson St, San Francisco, CA 94016" +161567,27in 4K Gaming Monitor,1,389.99,02/05/19 14:29,"61 West St, San Francisco, CA 94016" +161568,Apple Airpods Headphones,1,150,02/07/19 21:01,"190 Meadow St, San Francisco, CA 94016" +161569,USB-C Charging Cable,2,11.95,02/08/19 13:26,"355 2nd St, Atlanta, GA 30301" +161570,Lightning Charging Cable,1,14.95,02/23/19 09:03,"539 Maple St, Boston, MA 02215" +161571,34in Ultrawide Monitor,2,379.99,02/10/19 15:34,"622 Highland St, New York City, NY 10001" +161572,Wired Headphones,1,11.99,02/24/19 23:08,"750 9th St, Los Angeles, CA 90001" +161573,27in FHD Monitor,1,149.99,02/23/19 13:05,"840 Ridge St, Los Angeles, CA 90001" +161574,Google Phone,1,600,02/16/19 00:14,"260 4th St, Austin, TX 73301" +161575,AA Batteries (4-pack),1,3.84,02/02/19 18:42,"427 Dogwood St, Los Angeles, CA 90001" +161576,Lightning Charging Cable,1,14.95,02/02/19 06:16,"823 West St, San Francisco, CA 94016" +161577,20in Monitor,1,109.99,02/14/19 15:33,"295 West St, San Francisco, CA 94016" +161578,Wired Headphones,1,11.99,02/06/19 22:56,"967 Dogwood St, Boston, MA 02215" +161579,Wired Headphones,1,11.99,02/03/19 17:09,"979 7th St, Atlanta, GA 30301" +161580,Wired Headphones,1,11.99,02/11/19 16:09,"452 Madison St, Boston, MA 02215" +161581,AA Batteries (4-pack),1,3.84,02/12/19 15:01,"138 Walnut St, Dallas, TX 75001" +161582,27in FHD Monitor,1,149.99,02/12/19 07:40,"227 Lake St, San Francisco, CA 94016" +161583,Apple Airpods Headphones,1,150,02/06/19 12:44,"307 Adams St, Portland, ME 04101" +161584,Lightning Charging Cable,1,14.95,02/17/19 13:25,"842 13th St, Boston, MA 02215" +161585,AA Batteries (4-pack),1,3.84,02/22/19 16:59,"306 Center St, Los Angeles, CA 90001" +161586,Lightning Charging Cable,2,14.95,02/03/19 13:24,"400 Main St, Los Angeles, CA 90001" +161587,Apple Airpods Headphones,1,150,02/01/19 11:33,"722 Johnson St, San Francisco, CA 94016" +161588,Bose SoundSport Headphones,1,99.99,02/14/19 15:30,"508 10th St, Seattle, WA 98101" +161589,Lightning Charging Cable,1,14.95,02/12/19 16:18,"72 Center St, Los Angeles, CA 90001" +161590,Vareebadd Phone,1,400,02/09/19 17:56,"914 12th St, Seattle, WA 98101" +161590,Wired Headphones,1,11.99,02/09/19 17:56,"914 12th St, Seattle, WA 98101" +161591,USB-C Charging Cable,1,11.95,02/23/19 14:25,"230 Lincoln St, San Francisco, CA 94016" +161592,AAA Batteries (4-pack),1,2.99,02/16/19 09:35,"562 Elm St, Boston, MA 02215" +161593,AAA Batteries (4-pack),1,2.99,02/04/19 09:24,"593 Church St, Austin, TX 73301" +161594,Apple Airpods Headphones,1,150,02/05/19 08:27,"158 Ridge St, San Francisco, CA 94016" +161595,iPhone,1,700,02/16/19 07:14,"109 8th St, San Francisco, CA 94016" +161595,Lightning Charging Cable,1,14.95,02/16/19 07:14,"109 8th St, San Francisco, CA 94016" +161596,Apple Airpods Headphones,1,150,02/04/19 21:45,"49 South St, San Francisco, CA 94016" +161597,27in FHD Monitor,1,149.99,02/11/19 19:01,"269 Madison St, Los Angeles, CA 90001" +161598,USB-C Charging Cable,1,11.95,02/06/19 16:49,"573 Sunset St, San Francisco, CA 94016" +161599,LG Washing Machine,1,600.0,02/28/19 20:04,"970 Jefferson St, Boston, MA 02215" +161600,iPhone,1,700,02/10/19 12:48,"574 6th St, San Francisco, CA 94016" +161600,Lightning Charging Cable,1,14.95,02/10/19 12:48,"574 6th St, San Francisco, CA 94016" +161601,AAA Batteries (4-pack),3,2.99,02/07/19 21:56,"559 Spruce St, San Francisco, CA 94016" +161602,USB-C Charging Cable,1,11.95,02/09/19 09:49,"88 Jackson St, Dallas, TX 75001" +161603,34in Ultrawide Monitor,1,379.99,02/27/19 17:51,"135 Maple St, Boston, MA 02215" +161604,Apple Airpods Headphones,1,150,02/12/19 13:28,"481 Highland St, San Francisco, CA 94016" +161605,Macbook Pro Laptop,1,1700,02/05/19 10:14,"666 Main St, Austin, TX 73301" +161606,AA Batteries (4-pack),2,3.84,02/21/19 14:38,"694 Spruce St, Los Angeles, CA 90001" +161607,Apple Airpods Headphones,1,150,02/15/19 10:32,"671 Wilson St, Los Angeles, CA 90001" +161608,USB-C Charging Cable,1,11.95,02/02/19 09:04,"996 South St, Portland, OR 97035" +161609,AA Batteries (4-pack),1,3.84,02/02/19 19:46,"324 Ridge St, Los Angeles, CA 90001" +161610,Lightning Charging Cable,1,14.95,02/16/19 09:25,"906 Maple St, Los Angeles, CA 90001" +161611,20in Monitor,1,109.99,02/05/19 09:30,"860 7th St, New York City, NY 10001" +161612,Wired Headphones,1,11.99,02/10/19 19:18,"868 Lake St, Los Angeles, CA 90001" +161613,Wired Headphones,1,11.99,02/27/19 17:12,"700 Walnut St, San Francisco, CA 94016" +161613,Flatscreen TV,1,300,02/27/19 17:12,"700 Walnut St, San Francisco, CA 94016" +161614,Google Phone,1,600,02/02/19 19:56,"455 Pine St, Portland, OR 97035" +161615,Apple Airpods Headphones,1,150,02/27/19 12:52,"425 Madison St, Austin, TX 73301" +161616,Wired Headphones,1,11.99,02/10/19 21:20,"247 Cedar St, San Francisco, CA 94016" +161617,iPhone,1,700,02/18/19 00:45,"671 4th St, San Francisco, CA 94016" +161618,AAA Batteries (4-pack),2,2.99,02/04/19 10:23,"541 Walnut St, Boston, MA 02215" +161619,USB-C Charging Cable,1,11.95,02/06/19 10:42,"288 Hickory St, Seattle, WA 98101" +161620,AA Batteries (4-pack),3,3.84,02/17/19 10:10,"214 6th St, Los Angeles, CA 90001" +161621,iPhone,1,700,02/06/19 15:42,"87 7th St, Atlanta, GA 30301" +161622,AAA Batteries (4-pack),2,2.99,02/09/19 10:31,"361 Washington St, San Francisco, CA 94016" +161623,Wired Headphones,1,11.99,02/27/19 13:34,"701 Adams St, Los Angeles, CA 90001" +161624,Apple Airpods Headphones,1,150,02/18/19 16:01,"245 11th St, Boston, MA 02215" +161625,AA Batteries (4-pack),1,3.84,02/06/19 12:33,"350 Madison St, Atlanta, GA 30301" +161626,Lightning Charging Cable,1,14.95,02/08/19 22:03,"224 6th St, Portland, OR 97035" +161627,AAA Batteries (4-pack),1,2.99,02/22/19 13:20,"947 North St, Los Angeles, CA 90001" +161628,Bose SoundSport Headphones,1,99.99,02/08/19 23:02,"124 Cherry St, San Francisco, CA 94016" +161629,Apple Airpods Headphones,1,150,02/28/19 10:45,"1 Lake St, Boston, MA 02215" +161630,Apple Airpods Headphones,1,150,02/18/19 18:17,"819 Lake St, Los Angeles, CA 90001" +161631,27in 4K Gaming Monitor,1,389.99,02/18/19 21:54,"370 Lake St, New York City, NY 10001" +161632,AAA Batteries (4-pack),1,2.99,02/11/19 18:38,"472 Wilson St, San Francisco, CA 94016" +161633,USB-C Charging Cable,1,11.95,02/02/19 11:43,"202 Jackson St, San Francisco, CA 94016" +161634,34in Ultrawide Monitor,1,379.99,02/18/19 00:02,"445 11th St, San Francisco, CA 94016" +161635,27in 4K Gaming Monitor,1,389.99,02/25/19 16:06,"906 2nd St, Boston, MA 02215" +161636,USB-C Charging Cable,1,11.95,02/15/19 21:10,"413 8th St, Seattle, WA 98101" +161637,27in FHD Monitor,1,149.99,02/17/19 14:29,"371 North St, Seattle, WA 98101" +161638,USB-C Charging Cable,1,11.95,02/26/19 22:45,"658 Willow St, San Francisco, CA 94016" +161639,Wired Headphones,1,11.99,02/17/19 09:55,"844 Wilson St, Los Angeles, CA 90001" +161640,AAA Batteries (4-pack),1,2.99,02/09/19 12:42,"345 Cherry St, New York City, NY 10001" +161640,ThinkPad Laptop,1,999.99,02/09/19 12:42,"345 Cherry St, New York City, NY 10001" +161641,Flatscreen TV,1,300,02/26/19 16:59,"473 5th St, Los Angeles, CA 90001" +161642,Flatscreen TV,1,300,02/02/19 21:25,"258 Madison St, New York City, NY 10001" +161643,Bose SoundSport Headphones,1,99.99,02/05/19 13:22,"968 Highland St, Austin, TX 73301" +161644,Flatscreen TV,1,300,02/26/19 14:58,"398 6th St, Los Angeles, CA 90001" +161645,iPhone,1,700,02/25/19 10:25,"141 Main St, San Francisco, CA 94016" +161646,Bose SoundSport Headphones,1,99.99,02/20/19 14:18,"704 Elm St, Boston, MA 02215" +161647,USB-C Charging Cable,1,11.95,02/11/19 12:43,"418 Center St, New York City, NY 10001" +161648,Lightning Charging Cable,1,14.95,02/18/19 22:27,"899 Maple St, Atlanta, GA 30301" +161649,Lightning Charging Cable,1,14.95,02/15/19 09:04,"545 Cedar St, Seattle, WA 98101" +161650,iPhone,1,700,02/06/19 21:15,"728 Wilson St, New York City, NY 10001" +161651,27in FHD Monitor,1,149.99,02/25/19 14:45,"395 10th St, San Francisco, CA 94016" +161652,Apple Airpods Headphones,1,150,02/03/19 08:43,"37 5th St, Austin, TX 73301" +161653,USB-C Charging Cable,1,11.95,02/26/19 05:51,"934 Hickory St, San Francisco, CA 94016" +161654,AA Batteries (4-pack),1,3.84,02/07/19 12:20,"366 2nd St, San Francisco, CA 94016" +161655,Macbook Pro Laptop,1,1700,02/11/19 14:04,"285 Dogwood St, New York City, NY 10001" +161656,AA Batteries (4-pack),1,3.84,02/24/19 13:44,"859 Lakeview St, Boston, MA 02215" +161657,27in 4K Gaming Monitor,1,389.99,02/09/19 11:25,"549 Forest St, Los Angeles, CA 90001" +161658,27in 4K Gaming Monitor,1,389.99,02/24/19 18:57,"785 Main St, New York City, NY 10001" +161659,AA Batteries (4-pack),1,3.84,02/11/19 11:11,"271 Hickory St, San Francisco, CA 94016" +161660,Bose SoundSport Headphones,1,99.99,02/06/19 14:20,"902 7th St, Atlanta, GA 30301" +161661,Wired Headphones,1,11.99,02/17/19 18:15,"322 Lakeview St, Los Angeles, CA 90001" +161662,Lightning Charging Cable,1,14.95,02/13/19 11:21,"414 Chestnut St, San Francisco, CA 94016" +161663,Lightning Charging Cable,1,14.95,02/12/19 12:26,"678 Chestnut St, Los Angeles, CA 90001" +161664,USB-C Charging Cable,1,11.95,02/20/19 14:11,"995 Cherry St, San Francisco, CA 94016" +161665,27in FHD Monitor,1,149.99,02/10/19 13:34,"725 4th St, Seattle, WA 98101" +161666,Bose SoundSport Headphones,1,99.99,02/14/19 14:43,"209 Jefferson St, San Francisco, CA 94016" +161667,Apple Airpods Headphones,1,150,02/27/19 18:34,"660 Jackson St, Boston, MA 02215" +161668,AAA Batteries (4-pack),1,2.99,02/23/19 13:08,"887 13th St, Atlanta, GA 30301" +161669,Wired Headphones,1,11.99,02/01/19 14:00,"816 6th St, Los Angeles, CA 90001" +161670,AAA Batteries (4-pack),1,2.99,02/25/19 10:08,"164 4th St, San Francisco, CA 94016" +161671,Lightning Charging Cable,1,14.95,02/04/19 13:38,"10 West St, Los Angeles, CA 90001" +161672,Apple Airpods Headphones,1,150,02/22/19 16:59,"311 Lakeview St, Austin, TX 73301" +161673,27in 4K Gaming Monitor,1,389.99,02/19/19 08:24,"170 Forest St, San Francisco, CA 94016" +161674,USB-C Charging Cable,1,11.95,02/04/19 22:36,"683 2nd St, Atlanta, GA 30301" +161675,AAA Batteries (4-pack),1,2.99,02/08/19 18:28,"239 4th St, Los Angeles, CA 90001" +161676,AAA Batteries (4-pack),1,2.99,02/16/19 14:45,"789 West St, New York City, NY 10001" +161677,USB-C Charging Cable,1,11.95,02/09/19 15:35,"625 7th St, New York City, NY 10001" +161678,AA Batteries (4-pack),1,3.84,02/04/19 10:47,"842 Jackson St, Dallas, TX 75001" +161679,AA Batteries (4-pack),1,3.84,02/20/19 16:53,"938 Forest St, San Francisco, CA 94016" +161680,Bose SoundSport Headphones,1,99.99,02/26/19 21:55,"225 Madison St, Dallas, TX 75001" +161681,27in FHD Monitor,1,149.99,02/17/19 13:17,"648 South St, San Francisco, CA 94016" +161682,USB-C Charging Cable,1,11.95,02/17/19 14:26,"771 Willow St, Boston, MA 02215" +161683,Lightning Charging Cable,1,14.95,02/20/19 15:04,"212 North St, Portland, OR 97035" +161684,Lightning Charging Cable,2,14.95,02/23/19 17:11,"618 Meadow St, Dallas, TX 75001" +161685,27in FHD Monitor,1,149.99,02/18/19 16:26,"655 Forest St, San Francisco, CA 94016" +161686,AA Batteries (4-pack),1,3.84,02/22/19 12:26,"485 Meadow St, San Francisco, CA 94016" +161687,Lightning Charging Cable,1,14.95,02/12/19 12:32,"249 Spruce St, San Francisco, CA 94016" +161688,AA Batteries (4-pack),2,3.84,02/21/19 03:58,"270 Church St, Seattle, WA 98101" +161689,Apple Airpods Headphones,1,150,02/19/19 12:02,"567 Adams St, Atlanta, GA 30301" +161690,USB-C Charging Cable,1,11.95,02/17/19 15:55,"413 Adams St, San Francisco, CA 94016" +161691,USB-C Charging Cable,1,11.95,02/24/19 09:40,"349 4th St, Boston, MA 02215" +161692,Bose SoundSport Headphones,1,99.99,02/21/19 09:06,"965 South St, Seattle, WA 98101" +161693,AA Batteries (4-pack),2,3.84,02/14/19 14:51,"500 Maple St, San Francisco, CA 94016" +161694,Flatscreen TV,1,300,02/19/19 15:27,"563 Jefferson St, Boston, MA 02215" +161695,Flatscreen TV,1,300,02/12/19 08:14,"207 Hickory St, Los Angeles, CA 90001" +161696,USB-C Charging Cable,2,11.95,02/07/19 11:58,"643 Forest St, Los Angeles, CA 90001" +161697,USB-C Charging Cable,1,11.95,02/15/19 00:59,"748 North St, San Francisco, CA 94016" +161698,AA Batteries (4-pack),2,3.84,02/10/19 22:28,"577 Jefferson St, Los Angeles, CA 90001" +161699,Wired Headphones,1,11.99,02/13/19 11:11,"987 Cherry St, Los Angeles, CA 90001" +161700,Wired Headphones,1,11.99,02/10/19 13:20,"123 7th St, Boston, MA 02215" +161701,Google Phone,1,600,02/12/19 23:41,"283 Madison St, Los Angeles, CA 90001" +161702,Apple Airpods Headphones,1,150,02/15/19 13:29,"575 14th St, Atlanta, GA 30301" +161703,USB-C Charging Cable,1,11.95,02/06/19 10:46,"505 Church St, Boston, MA 02215" +161704,Flatscreen TV,1,300,02/21/19 14:37,"906 Jackson St, San Francisco, CA 94016" +161705,USB-C Charging Cable,1,11.95,02/16/19 19:31,"898 Ridge St, Atlanta, GA 30301" +161706,Apple Airpods Headphones,1,150,02/22/19 12:59,"821 Highland St, Boston, MA 02215" +161707,Lightning Charging Cable,2,14.95,02/21/19 20:29,"661 5th St, Boston, MA 02215" +161708,27in FHD Monitor,1,149.99,02/17/19 20:27,"380 Chestnut St, San Francisco, CA 94016" +161709,Lightning Charging Cable,1,14.95,02/28/19 15:40,"942 Adams St, Los Angeles, CA 90001" +161710,USB-C Charging Cable,3,11.95,02/14/19 18:26,"397 Walnut St, Boston, MA 02215" +161711,34in Ultrawide Monitor,1,379.99,02/23/19 13:26,"218 1st St, Atlanta, GA 30301" +161712,USB-C Charging Cable,1,11.95,02/19/19 20:47,"578 Johnson St, New York City, NY 10001" +161713,20in Monitor,1,109.99,02/10/19 01:37,"183 South St, San Francisco, CA 94016" +161714,AAA Batteries (4-pack),1,2.99,02/02/19 23:45,"134 Johnson St, Los Angeles, CA 90001" +161715,AA Batteries (4-pack),1,3.84,02/15/19 19:16,"613 Chestnut St, Austin, TX 73301" +161716,Lightning Charging Cable,1,14.95,02/26/19 14:13,"434 Johnson St, San Francisco, CA 94016" +161717,27in 4K Gaming Monitor,1,389.99,02/05/19 11:25,"620 7th St, Boston, MA 02215" +161718,ThinkPad Laptop,1,999.99,02/12/19 19:28,"595 West St, New York City, NY 10001" +161719,20in Monitor,1,109.99,02/12/19 17:51,"852 Jackson St, New York City, NY 10001" +161720,AAA Batteries (4-pack),1,2.99,02/08/19 13:13,"308 8th St, San Francisco, CA 94016" +161721,Lightning Charging Cable,1,14.95,02/15/19 13:12,"932 Maple St, Dallas, TX 75001" +161722,Lightning Charging Cable,1,14.95,02/09/19 15:35,"392 Forest St, Dallas, TX 75001" +161723,Lightning Charging Cable,1,14.95,02/10/19 14:40,"151 Maple St, Los Angeles, CA 90001" +161724,AAA Batteries (4-pack),5,2.99,02/08/19 23:50,"950 Lakeview St, Atlanta, GA 30301" +161725,Apple Airpods Headphones,1,150,02/06/19 17:10,"576 North St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +161726,Wired Headphones,1,11.99,02/12/19 17:32,"449 Walnut St, New York City, NY 10001" +161727,27in 4K Gaming Monitor,1,389.99,02/20/19 12:16,"593 Main St, Dallas, TX 75001" +161728,20in Monitor,1,109.99,02/25/19 20:51,"375 14th St, San Francisco, CA 94016" +161729,Wired Headphones,1,11.99,02/28/19 10:08,"285 4th St, New York City, NY 10001" +161730,ThinkPad Laptop,1,999.99,02/20/19 18:13,"765 Hill St, San Francisco, CA 94016" +161731,AA Batteries (4-pack),1,3.84,02/15/19 19:49,"854 9th St, Seattle, WA 98101" +161732,20in Monitor,1,109.99,02/26/19 20:12,"65 Ridge St, San Francisco, CA 94016" +161733,AA Batteries (4-pack),1,3.84,02/02/19 09:07,"369 Hill St, Los Angeles, CA 90001" +161734,AA Batteries (4-pack),1,3.84,02/15/19 20:28,"310 8th St, Boston, MA 02215" +161735,Apple Airpods Headphones,1,150,02/18/19 11:19,"551 8th St, San Francisco, CA 94016" +161736,iPhone,1,700,02/10/19 17:11,"659 Adams St, Austin, TX 73301" +161737,AAA Batteries (4-pack),2,2.99,02/16/19 14:24,"611 South St, New York City, NY 10001" +161738,Wired Headphones,1,11.99,02/16/19 16:15,"872 Highland St, Boston, MA 02215" +161739,Wired Headphones,1,11.99,02/26/19 16:33,"343 Johnson St, New York City, NY 10001" +161740,iPhone,1,700,02/19/19 18:59,"746 Adams St, New York City, NY 10001" +161741,Flatscreen TV,1,300,02/02/19 21:33,"166 North St, Boston, MA 02215" +161742,iPhone,1,700,02/16/19 19:37,"422 Elm St, Los Angeles, CA 90001" +161742,Apple Airpods Headphones,1,150,02/16/19 19:37,"422 Elm St, Los Angeles, CA 90001" +161742,27in 4K Gaming Monitor,1,389.99,02/16/19 19:37,"422 Elm St, Los Angeles, CA 90001" +161743,34in Ultrawide Monitor,1,379.99,02/25/19 12:57,"898 Wilson St, Dallas, TX 75001" +161744,27in FHD Monitor,1,149.99,02/11/19 10:57,"838 Cherry St, Boston, MA 02215" +161745,Wired Headphones,1,11.99,02/07/19 21:33,"400 Willow St, Los Angeles, CA 90001" +161746,Lightning Charging Cable,1,14.95,02/04/19 14:33,"123 Chestnut St, Los Angeles, CA 90001" +161747,USB-C Charging Cable,1,11.95,02/21/19 13:21,"152 Spruce St, Boston, MA 02215" +161748,27in 4K Gaming Monitor,1,389.99,02/14/19 18:50,"352 Maple St, Los Angeles, CA 90001" +161749,Lightning Charging Cable,1,14.95,02/01/19 11:33,"963 Cherry St, San Francisco, CA 94016" +161750,Lightning Charging Cable,1,14.95,02/10/19 11:23,"456 Park St, Seattle, WA 98101" +161751,USB-C Charging Cable,1,11.95,02/03/19 13:38,"894 7th St, San Francisco, CA 94016" +161752,34in Ultrawide Monitor,1,379.99,02/13/19 12:07,"411 1st St, Atlanta, GA 30301" +161753,USB-C Charging Cable,1,11.95,02/20/19 09:22,"780 Jefferson St, Atlanta, GA 30301" +161754,USB-C Charging Cable,1,11.95,02/09/19 14:38,"464 13th St, San Francisco, CA 94016" +161755,Apple Airpods Headphones,1,150,02/15/19 19:18,"9 13th St, Los Angeles, CA 90001" +161756,Vareebadd Phone,1,400,02/16/19 13:40,"976 Wilson St, Seattle, WA 98101" +161757,Wired Headphones,1,11.99,02/21/19 21:56,"46 Meadow St, Los Angeles, CA 90001" +161758,Bose SoundSport Headphones,1,99.99,02/24/19 23:40,"162 Elm St, New York City, NY 10001" +161759,Lightning Charging Cable,1,14.95,02/24/19 21:03,"355 1st St, San Francisco, CA 94016" +161760,USB-C Charging Cable,1,11.95,02/25/19 16:31,"732 Cherry St, Dallas, TX 75001" +161761,Wired Headphones,1,11.99,02/06/19 19:05,"669 Lakeview St, Los Angeles, CA 90001" +161761,Lightning Charging Cable,1,14.95,02/06/19 19:05,"669 Lakeview St, Los Angeles, CA 90001" +161762,Lightning Charging Cable,1,14.95,02/21/19 11:47,"55 Cherry St, Atlanta, GA 30301" +161763,Lightning Charging Cable,1,14.95,02/01/19 23:19,"728 Walnut St, Boston, MA 02215" +161764,Wired Headphones,1,11.99,02/15/19 12:39,"597 Wilson St, Boston, MA 02215" +161765,AAA Batteries (4-pack),1,2.99,02/02/19 16:58,"772 14th St, Atlanta, GA 30301" +161766,Wired Headphones,1,11.99,02/01/19 10:08,"230 Highland St, Dallas, TX 75001" +161767,iPhone,1,700,02/13/19 21:27,"883 1st St, San Francisco, CA 94016" +161768,Flatscreen TV,1,300,02/18/19 16:29,"769 Hickory St, San Francisco, CA 94016" +161769,27in 4K Gaming Monitor,1,389.99,02/22/19 12:37,"397 Highland St, Dallas, TX 75001" +161770,Macbook Pro Laptop,1,1700,02/07/19 11:10,"755 Adams St, Seattle, WA 98101" +161771,AA Batteries (4-pack),1,3.84,02/01/19 21:07,"161 Center St, Boston, MA 02215" +161772,AA Batteries (4-pack),2,3.84,02/11/19 20:17,"953 7th St, Seattle, WA 98101" +161773,34in Ultrawide Monitor,1,379.99,02/24/19 16:06,"978 11th St, Los Angeles, CA 90001" +161774,Wired Headphones,1,11.99,02/28/19 19:40,"937 Willow St, New York City, NY 10001" +161775,USB-C Charging Cable,2,11.95,02/03/19 16:34,"539 Park St, Atlanta, GA 30301" +161776,Google Phone,1,600,02/18/19 11:41,"507 Lakeview St, Los Angeles, CA 90001" +161776,USB-C Charging Cable,1,11.95,02/18/19 11:41,"507 Lakeview St, Los Angeles, CA 90001" +161777,Lightning Charging Cable,1,14.95,02/13/19 19:14,"374 Elm St, San Francisco, CA 94016" +161778,34in Ultrawide Monitor,1,379.99,02/27/19 13:35,"751 West St, San Francisco, CA 94016" +161779,20in Monitor,1,109.99,02/02/19 10:05,"383 10th St, Los Angeles, CA 90001" +161780,AAA Batteries (4-pack),1,2.99,02/12/19 22:02,"719 Lincoln St, San Francisco, CA 94016" +161781,27in FHD Monitor,1,149.99,02/21/19 12:22,"906 Lake St, Los Angeles, CA 90001" +161782,Bose SoundSport Headphones,1,99.99,02/15/19 14:27,"199 Cherry St, San Francisco, CA 94016" +161783,Wired Headphones,1,11.99,02/10/19 07:03,"208 9th St, Atlanta, GA 30301" +161784,Google Phone,1,600,02/11/19 07:02,"366 Spruce St, San Francisco, CA 94016" +161784,USB-C Charging Cable,1,11.95,02/11/19 07:02,"366 Spruce St, San Francisco, CA 94016" +161785,AAA Batteries (4-pack),2,2.99,02/04/19 11:49,"573 8th St, Los Angeles, CA 90001" +161786,AA Batteries (4-pack),2,3.84,02/10/19 08:50,"958 12th St, Austin, TX 73301" +161787,LG Dryer,1,600.0,02/28/19 18:11,"459 Dogwood St, Portland, OR 97035" +161788,Google Phone,1,600,02/23/19 16:22,"181 Meadow St, San Francisco, CA 94016" +161789,Apple Airpods Headphones,1,150,02/28/19 21:20,"422 Johnson St, Atlanta, GA 30301" +161790,Bose SoundSport Headphones,1,99.99,02/18/19 18:05,"734 Pine St, Seattle, WA 98101" +161791,Lightning Charging Cable,1,14.95,02/02/19 15:40,"320 Hill St, San Francisco, CA 94016" +161792,Apple Airpods Headphones,1,150,02/05/19 12:13,"684 Maple St, Atlanta, GA 30301" +161793,Wired Headphones,1,11.99,02/22/19 22:18,"899 4th St, San Francisco, CA 94016" +161794,AAA Batteries (4-pack),2,2.99,02/03/19 09:14,"482 Spruce St, Portland, ME 04101" +161795,Macbook Pro Laptop,1,1700,02/17/19 00:51,"941 Madison St, Seattle, WA 98101" +161796,AA Batteries (4-pack),1,3.84,02/21/19 11:12,"697 Elm St, Atlanta, GA 30301" +161797,AA Batteries (4-pack),2,3.84,02/18/19 14:53,"576 Lincoln St, San Francisco, CA 94016" +161798,USB-C Charging Cable,1,11.95,02/21/19 14:02,"351 Spruce St, San Francisco, CA 94016" +161799,Google Phone,1,600,02/23/19 12:08,"386 Church St, San Francisco, CA 94016" +161799,Wired Headphones,1,11.99,02/23/19 12:08,"386 Church St, San Francisco, CA 94016" +161800,AA Batteries (4-pack),1,3.84,02/08/19 11:50,"627 12th St, San Francisco, CA 94016" +161801,USB-C Charging Cable,1,11.95,02/15/19 19:36,"620 Hickory St, Boston, MA 02215" +161802,USB-C Charging Cable,1,11.95,02/21/19 20:06,"122 Pine St, Los Angeles, CA 90001" +161803,Apple Airpods Headphones,1,150,02/01/19 09:39,"657 West St, Dallas, TX 75001" +161803,AAA Batteries (4-pack),2,2.99,02/01/19 09:39,"657 West St, Dallas, TX 75001" +161804,27in 4K Gaming Monitor,1,389.99,02/03/19 17:17,"649 Meadow St, Boston, MA 02215" +161805,AAA Batteries (4-pack),1,2.99,02/09/19 19:52,"163 Washington St, Los Angeles, CA 90001" +161806,Lightning Charging Cable,1,14.95,02/24/19 14:40,"432 Chestnut St, Atlanta, GA 30301" +161807,AA Batteries (4-pack),1,3.84,02/09/19 13:20,"546 Lincoln St, Dallas, TX 75001" +161808,34in Ultrawide Monitor,1,379.99,02/26/19 12:15,"179 Center St, San Francisco, CA 94016" +161809,Wired Headphones,1,11.99,02/19/19 22:28,"219 Elm St, Dallas, TX 75001" +161810,27in FHD Monitor,1,149.99,02/06/19 08:43,"634 West St, San Francisco, CA 94016" +161811,AAA Batteries (4-pack),2,2.99,02/25/19 18:38,"745 Sunset St, San Francisco, CA 94016" +161812,iPhone,1,700,02/23/19 12:49,"751 Park St, Austin, TX 73301" +161813,Wired Headphones,1,11.99,02/12/19 19:46,"43 Chestnut St, Dallas, TX 75001" +161814,Wired Headphones,1,11.99,02/28/19 10:36,"212 Church St, San Francisco, CA 94016" +161815,AA Batteries (4-pack),2,3.84,02/02/19 04:11,"492 4th St, New York City, NY 10001" +161816,Bose SoundSport Headphones,1,99.99,02/28/19 18:38,"683 14th St, San Francisco, CA 94016" +161817,Google Phone,1,600,02/09/19 14:28,"207 11th St, San Francisco, CA 94016" +161818,Wired Headphones,1,11.99,02/11/19 10:22,"64 2nd St, Los Angeles, CA 90001" +161819,AA Batteries (4-pack),1,3.84,02/24/19 14:00,"665 Lake St, Atlanta, GA 30301" +161820,Wired Headphones,1,11.99,02/27/19 15:59,"284 Maple St, Portland, OR 97035" +161821,Macbook Pro Laptop,1,1700,02/10/19 20:16,"153 Walnut St, San Francisco, CA 94016" +161822,Lightning Charging Cable,1,14.95,02/20/19 17:06,"889 Hill St, Boston, MA 02215" +161823,Wired Headphones,2,11.99,02/03/19 20:51,"603 Jefferson St, Los Angeles, CA 90001" +161824,Bose SoundSport Headphones,1,99.99,02/21/19 12:46,"518 Spruce St, San Francisco, CA 94016" +161825,AA Batteries (4-pack),1,3.84,02/08/19 12:11,"846 Madison St, New York City, NY 10001" +161826,Apple Airpods Headphones,1,150,02/17/19 14:39,"596 Jefferson St, Portland, OR 97035" +161827,Apple Airpods Headphones,1,150,02/15/19 10:01,"79 Sunset St, New York City, NY 10001" +161828,LG Washing Machine,1,600.0,02/13/19 13:26,"469 Lincoln St, Portland, OR 97035" +161829,Bose SoundSport Headphones,1,99.99,02/19/19 11:28,"640 Park St, New York City, NY 10001" +161830,Lightning Charging Cable,1,14.95,02/16/19 22:38,"510 Sunset St, Seattle, WA 98101" +161831,Wired Headphones,1,11.99,02/06/19 02:02,"65 4th St, Los Angeles, CA 90001" +161832,Lightning Charging Cable,3,14.95,02/27/19 15:33,"619 Main St, New York City, NY 10001" +161833,Wired Headphones,1,11.99,02/11/19 19:14,"171 Walnut St, Seattle, WA 98101" +161834,Lightning Charging Cable,1,14.95,02/04/19 08:44,"881 5th St, San Francisco, CA 94016" +161835,Apple Airpods Headphones,1,150,02/13/19 14:17,"957 7th St, Boston, MA 02215" +161836,Macbook Pro Laptop,1,1700,02/07/19 14:41,"624 Lakeview St, San Francisco, CA 94016" +161837,Flatscreen TV,1,300,02/01/19 17:10,"202 West St, Los Angeles, CA 90001" +161838,20in Monitor,1,109.99,02/16/19 09:10,"299 Ridge St, San Francisco, CA 94016" +161839,Bose SoundSport Headphones,1,99.99,02/19/19 07:04,"981 West St, Boston, MA 02215" +161840,Lightning Charging Cable,1,14.95,02/10/19 18:08,"682 Hill St, Austin, TX 73301" +161841,AA Batteries (4-pack),1,3.84,02/03/19 11:36,"197 Maple St, Los Angeles, CA 90001" +161842,Wired Headphones,1,11.99,02/23/19 08:40,"687 Ridge St, Seattle, WA 98101" +161843,27in 4K Gaming Monitor,1,389.99,02/18/19 09:42,"248 7th St, San Francisco, CA 94016" +161844,ThinkPad Laptop,1,999.99,02/09/19 23:05,"58 Adams St, Atlanta, GA 30301" +161845,Wired Headphones,1,11.99,02/28/19 20:32,"268 Wilson St, San Francisco, CA 94016" +161846,Wired Headphones,1,11.99,02/05/19 07:14,"75 Walnut St, Portland, OR 97035" +161847,Bose SoundSport Headphones,1,99.99,02/18/19 10:16,"451 Hickory St, Austin, TX 73301" +161848,34in Ultrawide Monitor,1,379.99,02/24/19 12:40,"465 Jefferson St, Seattle, WA 98101" +161849,AA Batteries (4-pack),1,3.84,02/20/19 21:57,"764 North St, Portland, OR 97035" +161850,LG Washing Machine,1,600.0,02/21/19 21:41,"352 13th St, San Francisco, CA 94016" +161851,Lightning Charging Cable,2,14.95,02/04/19 18:36,"862 1st St, Atlanta, GA 30301" +161852,Bose SoundSport Headphones,1,99.99,02/04/19 07:59,"347 14th St, Boston, MA 02215" +161853,Wired Headphones,1,11.99,02/10/19 23:36,"515 13th St, San Francisco, CA 94016" +161854,Apple Airpods Headphones,1,150,02/05/19 13:40,"116 North St, Boston, MA 02215" +161855,Lightning Charging Cable,1,14.95,02/15/19 12:16,"459 Lincoln St, New York City, NY 10001" +161856,AA Batteries (4-pack),1,3.84,02/07/19 21:27,"673 River St, New York City, NY 10001" +161857,Google Phone,1,600,02/05/19 23:13,"545 Wilson St, San Francisco, CA 94016" +161858,iPhone,1,700,02/09/19 10:11,"31 Sunset St, Los Angeles, CA 90001" +161859,Wired Headphones,1,11.99,02/18/19 00:18,"652 10th St, Boston, MA 02215" +161860,Apple Airpods Headphones,1,150,02/11/19 20:48,"19 Willow St, Los Angeles, CA 90001" +161861,Google Phone,1,600,02/17/19 22:42,"975 West St, Los Angeles, CA 90001" +161861,Wired Headphones,1,11.99,02/17/19 22:42,"975 West St, Los Angeles, CA 90001" +161862,Apple Airpods Headphones,1,150,02/25/19 17:21,"391 Walnut St, Seattle, WA 98101" +161863,USB-C Charging Cable,1,11.95,02/28/19 16:37,"575 Jackson St, Austin, TX 73301" +161864,AA Batteries (4-pack),1,3.84,02/11/19 16:04,"376 Cedar St, Austin, TX 73301" +161865,Wired Headphones,1,11.99,02/16/19 19:52,"51 Lakeview St, Seattle, WA 98101" +161866,USB-C Charging Cable,1,11.95,02/12/19 13:14,"231 13th St, Seattle, WA 98101" +161867,USB-C Charging Cable,1,11.95,02/09/19 10:27,"479 North St, Dallas, TX 75001" +161868,AA Batteries (4-pack),1,3.84,02/28/19 19:23,"497 9th St, New York City, NY 10001" +161869,34in Ultrawide Monitor,1,379.99,02/04/19 13:43,"142 10th St, New York City, NY 10001" +161870,Lightning Charging Cable,1,14.95,02/03/19 08:53,"872 Hill St, Los Angeles, CA 90001" +161871,AA Batteries (4-pack),1,3.84,02/06/19 20:00,"767 Walnut St, Portland, OR 97035" +161872,Apple Airpods Headphones,1,150,02/10/19 01:36,"767 Lincoln St, Boston, MA 02215" +161873,Bose SoundSport Headphones,1,99.99,02/01/19 15:36,"727 Lake St, San Francisco, CA 94016" +161874,20in Monitor,1,109.99,02/27/19 13:27,"529 Willow St, Boston, MA 02215" +161875,USB-C Charging Cable,1,11.95,02/14/19 12:00,"470 Walnut St, Los Angeles, CA 90001" +161876,AAA Batteries (4-pack),1,2.99,02/06/19 07:50,"103 Dogwood St, Los Angeles, CA 90001" +161877,Wired Headphones,1,11.99,02/14/19 18:06,"593 Chestnut St, Boston, MA 02215" +161878,Apple Airpods Headphones,1,150,02/25/19 14:25,"435 Lakeview St, Portland, ME 04101" +161879,27in FHD Monitor,1,149.99,02/17/19 16:40,"618 Cherry St, New York City, NY 10001" +161880,Apple Airpods Headphones,1,150,02/12/19 09:31,"13 Elm St, Dallas, TX 75001" +161881,20in Monitor,1,109.99,02/05/19 17:58,"701 11th St, Dallas, TX 75001" +161882,AA Batteries (4-pack),3,3.84,02/04/19 11:35,"315 Wilson St, Los Angeles, CA 90001" +161883,Lightning Charging Cable,1,14.95,02/06/19 07:45,"646 Cherry St, Dallas, TX 75001" +161884,iPhone,1,700,02/26/19 06:46,"72 Madison St, Seattle, WA 98101" +161885,USB-C Charging Cable,1,11.95,02/01/19 22:24,"755 River St, Atlanta, GA 30301" +161886,Macbook Pro Laptop,1,1700,02/26/19 19:38,"989 Highland St, Dallas, TX 75001" +161887,iPhone,1,700,02/10/19 21:50,"254 8th St, Los Angeles, CA 90001" +161888,Lightning Charging Cable,1,14.95,02/09/19 05:30,"463 Cherry St, Austin, TX 73301" +161889,Flatscreen TV,1,300,02/12/19 13:37,"867 South St, Dallas, TX 75001" +161890,Wired Headphones,1,11.99,02/23/19 15:50,"361 Church St, Austin, TX 73301" +161891,Lightning Charging Cable,1,14.95,02/05/19 22:44,"620 2nd St, Los Angeles, CA 90001" +161892,Lightning Charging Cable,1,14.95,02/27/19 12:08,"623 13th St, San Francisco, CA 94016" +161893,27in 4K Gaming Monitor,1,389.99,02/12/19 16:45,"492 Church St, Atlanta, GA 30301" +161894,Wired Headphones,1,11.99,02/21/19 07:32,"195 6th St, San Francisco, CA 94016" +161895,Macbook Pro Laptop,1,1700,02/25/19 10:34,"337 Hill St, San Francisco, CA 94016" +161896,USB-C Charging Cable,1,11.95,02/06/19 10:52,"875 Adams St, Los Angeles, CA 90001" +161897,AAA Batteries (4-pack),2,2.99,02/02/19 20:04,"689 Forest St, Dallas, TX 75001" +161898,Macbook Pro Laptop,1,1700,02/22/19 10:54,"311 Park St, San Francisco, CA 94016" +161899,AAA Batteries (4-pack),1,2.99,02/12/19 16:07,"896 Jefferson St, Boston, MA 02215" +161900,Apple Airpods Headphones,1,150,02/14/19 11:55,"339 6th St, San Francisco, CA 94016" +161901,Vareebadd Phone,1,400,02/14/19 13:56,"652 Walnut St, San Francisco, CA 94016" +161902,27in 4K Gaming Monitor,1,389.99,02/09/19 21:42,"573 Wilson St, New York City, NY 10001" +161903,AAA Batteries (4-pack),2,2.99,02/14/19 20:52,"391 Ridge St, Atlanta, GA 30301" +161904,Flatscreen TV,1,300,02/20/19 17:47,"737 Lakeview St, San Francisco, CA 94016" +161905,34in Ultrawide Monitor,1,379.99,02/20/19 20:53,"889 Walnut St, Los Angeles, CA 90001" +161906,AAA Batteries (4-pack),2,2.99,02/07/19 18:42,"295 7th St, Atlanta, GA 30301" +161907,Wired Headphones,1,11.99,02/18/19 15:09,"895 Willow St, San Francisco, CA 94016" +161908,Lightning Charging Cable,1,14.95,02/14/19 12:22,"325 Adams St, Portland, ME 04101" +161909,USB-C Charging Cable,1,11.95,02/21/19 18:49,"672 Pine St, San Francisco, CA 94016" +161910,AA Batteries (4-pack),1,3.84,02/25/19 15:22,"114 Lake St, New York City, NY 10001" +161911,Lightning Charging Cable,2,14.95,02/01/19 16:51,"815 Lakeview St, Los Angeles, CA 90001" +161912,USB-C Charging Cable,1,11.95,02/09/19 16:03,"849 Park St, Boston, MA 02215" +161913,AA Batteries (4-pack),2,3.84,02/19/19 22:58,"906 11th St, Seattle, WA 98101" +161914,27in FHD Monitor,1,149.99,02/28/19 14:08,"96 11th St, Seattle, WA 98101" +161915,AAA Batteries (4-pack),1,2.99,02/19/19 15:01,"489 Spruce St, Los Angeles, CA 90001" +161916,20in Monitor,1,109.99,02/18/19 18:40,"599 Willow St, San Francisco, CA 94016" +161917,AAA Batteries (4-pack),1,2.99,02/23/19 12:15,"105 11th St, Austin, TX 73301" +161918,AA Batteries (4-pack),1,3.84,02/19/19 08:06,"353 Madison St, San Francisco, CA 94016" +161919,Apple Airpods Headphones,1,150,02/21/19 18:13,"163 Cedar St, Atlanta, GA 30301" +161920,Wired Headphones,1,11.99,02/15/19 01:07,"940 Forest St, New York City, NY 10001" +161921,27in 4K Gaming Monitor,1,389.99,02/02/19 12:04,"218 North St, New York City, NY 10001" +161922,Wired Headphones,1,11.99,02/28/19 14:18,"662 12th St, Seattle, WA 98101" +161923,Wired Headphones,1,11.99,02/06/19 10:24,"924 Hickory St, Seattle, WA 98101" +161924,USB-C Charging Cable,1,11.95,02/18/19 23:55,"758 Ridge St, New York City, NY 10001" +161925,Lightning Charging Cable,1,14.95,02/20/19 17:44,"422 Park St, San Francisco, CA 94016" +161926,Wired Headphones,1,11.99,02/04/19 11:45,"992 Center St, New York City, NY 10001" +161927,AA Batteries (4-pack),1,3.84,02/12/19 21:53,"677 4th St, Los Angeles, CA 90001" +161928,AAA Batteries (4-pack),2,2.99,02/06/19 17:07,"368 Dogwood St, Los Angeles, CA 90001" +161929,Google Phone,1,600,02/03/19 21:45,"221 12th St, Los Angeles, CA 90001" +161930,Wired Headphones,1,11.99,02/19/19 13:38,"646 Walnut St, Los Angeles, CA 90001" +161931,Apple Airpods Headphones,1,150,02/15/19 00:55,"313 Maple St, Boston, MA 02215" +161932,Google Phone,1,600,02/09/19 14:06,"660 Main St, San Francisco, CA 94016" +161933,27in FHD Monitor,1,149.99,02/13/19 19:13,"147 12th St, New York City, NY 10001" +161934,Vareebadd Phone,1,400,02/05/19 16:59,"31 Dogwood St, Atlanta, GA 30301" +161934,USB-C Charging Cable,2,11.95,02/05/19 16:59,"31 Dogwood St, Atlanta, GA 30301" +161935,27in FHD Monitor,1,149.99,02/17/19 21:51,"551 Highland St, Los Angeles, CA 90001" +161936,Wired Headphones,1,11.99,02/09/19 19:13,"111 8th St, Boston, MA 02215" +161936,Macbook Pro Laptop,1,1700,02/09/19 19:13,"111 8th St, Boston, MA 02215" +161937,Lightning Charging Cable,1,14.95,02/05/19 09:53,"645 12th St, Los Angeles, CA 90001" +161938,Apple Airpods Headphones,1,150,02/04/19 16:39,"11 13th St, San Francisco, CA 94016" +161939,USB-C Charging Cable,1,11.95,02/01/19 12:06,"899 Johnson St, Seattle, WA 98101" +161940,Google Phone,1,600,02/12/19 15:36,"227 9th St, San Francisco, CA 94016" +161941,USB-C Charging Cable,1,11.95,02/16/19 14:25,"488 Pine St, San Francisco, CA 94016" +161942,iPhone,1,700,02/01/19 22:48,"191 South St, Los Angeles, CA 90001" +161943,34in Ultrawide Monitor,1,379.99,02/25/19 23:33,"226 Jackson St, Los Angeles, CA 90001" +161944,Vareebadd Phone,1,400,02/20/19 17:30,"820 Cherry St, San Francisco, CA 94016" +161944,Wired Headphones,1,11.99,02/20/19 17:30,"820 Cherry St, San Francisco, CA 94016" +161945,Flatscreen TV,1,300,02/25/19 09:21,"873 River St, Dallas, TX 75001" +161946,AA Batteries (4-pack),2,3.84,02/20/19 22:02,"438 Wilson St, San Francisco, CA 94016" +161947,Flatscreen TV,1,300,02/23/19 19:37,"486 12th St, Atlanta, GA 30301" +161948,AAA Batteries (4-pack),5,2.99,02/20/19 16:06,"387 9th St, Los Angeles, CA 90001" +161949,USB-C Charging Cable,1,11.95,02/04/19 14:21,"441 9th St, Dallas, TX 75001" +161950,AAA Batteries (4-pack),1,2.99,02/03/19 19:47,"407 River St, Los Angeles, CA 90001" +161951,Lightning Charging Cable,1,14.95,02/09/19 11:07,"148 Sunset St, New York City, NY 10001" +161952,20in Monitor,1,109.99,02/14/19 21:19,"236 Madison St, Atlanta, GA 30301" +161953,USB-C Charging Cable,1,11.95,02/18/19 17:25,"125 Ridge St, Dallas, TX 75001" +161954,34in Ultrawide Monitor,1,379.99,02/19/19 10:12,"768 12th St, Portland, OR 97035" +161955,AA Batteries (4-pack),2,3.84,02/09/19 13:48,"967 Sunset St, Portland, ME 04101" +161956,Lightning Charging Cable,1,14.95,02/17/19 18:15,"635 4th St, Los Angeles, CA 90001" +161957,Wired Headphones,1,11.99,02/17/19 14:30,"926 Ridge St, Austin, TX 73301" +161957,Bose SoundSport Headphones,1,99.99,02/17/19 14:30,"926 Ridge St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +161958,Lightning Charging Cable,1,14.95,02/25/19 15:04,"452 6th St, Atlanta, GA 30301" +161959,Bose SoundSport Headphones,1,99.99,02/07/19 18:18,"558 Sunset St, Boston, MA 02215" +161960,AA Batteries (4-pack),1,3.84,02/13/19 13:04,"810 Church St, San Francisco, CA 94016" +161961,Lightning Charging Cable,1,14.95,02/10/19 04:51,"109 Jefferson St, Los Angeles, CA 90001" +161962,Macbook Pro Laptop,1,1700,02/18/19 03:24,"875 South St, New York City, NY 10001" +161963,Apple Airpods Headphones,1,150,02/26/19 14:21,"232 Lincoln St, Atlanta, GA 30301" +161964,ThinkPad Laptop,1,999.99,02/23/19 14:22,"864 Madison St, Los Angeles, CA 90001" +161965,Bose SoundSport Headphones,1,99.99,02/26/19 20:04,"540 5th St, Atlanta, GA 30301" +161966,20in Monitor,1,109.99,02/19/19 10:31,"305 Maple St, San Francisco, CA 94016" +161967,AAA Batteries (4-pack),1,2.99,02/10/19 07:30,"784 Ridge St, San Francisco, CA 94016" +161968,AAA Batteries (4-pack),3,2.99,02/04/19 11:52,"687 8th St, Portland, ME 04101" +161969,LG Dryer,1,600.0,02/09/19 22:16,"846 Washington St, Los Angeles, CA 90001" +161970,Bose SoundSport Headphones,1,99.99,02/23/19 12:58,"129 7th St, Los Angeles, CA 90001" +161971,27in FHD Monitor,1,149.99,02/03/19 16:17,"729 Main St, New York City, NY 10001" +161972,AA Batteries (4-pack),1,3.84,02/18/19 19:35,"146 Adams St, New York City, NY 10001" +161973,Lightning Charging Cable,3,14.95,02/14/19 13:06,"109 Sunset St, Austin, TX 73301" +161974,Flatscreen TV,1,300,02/25/19 15:18,"147 Center St, Los Angeles, CA 90001" +161975,USB-C Charging Cable,1,11.95,02/13/19 20:55,"542 Highland St, Atlanta, GA 30301" +161976,iPhone,1,700,02/21/19 12:48,"843 South St, Dallas, TX 75001" +161977,AAA Batteries (4-pack),1,2.99,02/28/19 08:40,"259 West St, Dallas, TX 75001" +161978,Bose SoundSport Headphones,1,99.99,02/24/19 09:39,"108 2nd St, Los Angeles, CA 90001" +161979,AAA Batteries (4-pack),1,2.99,02/09/19 11:31,"539 4th St, San Francisco, CA 94016" +161980,USB-C Charging Cable,1,11.95,02/19/19 23:34,"626 Lakeview St, Dallas, TX 75001" +161981,AAA Batteries (4-pack),1,2.99,02/02/19 10:50,"113 Walnut St, Los Angeles, CA 90001" +161982,Google Phone,1,600,02/24/19 11:19,"484 Hill St, Boston, MA 02215" +161983,AA Batteries (4-pack),1,3.84,02/24/19 06:29,"192 Park St, Dallas, TX 75001" +161984,Apple Airpods Headphones,1,150,02/23/19 21:58,"508 11th St, Seattle, WA 98101" +161985,USB-C Charging Cable,1,11.95,02/13/19 23:26,"107 Park St, Austin, TX 73301" +161986,Bose SoundSport Headphones,1,99.99,02/11/19 11:58,"463 Elm St, San Francisco, CA 94016" +161987,USB-C Charging Cable,1,11.95,02/15/19 20:13,"183 Main St, Atlanta, GA 30301" +161988,Wired Headphones,1,11.99,02/16/19 18:53,"572 7th St, Boston, MA 02215" +161989,AA Batteries (4-pack),1,3.84,02/15/19 11:57,"629 Wilson St, Los Angeles, CA 90001" +161990,AA Batteries (4-pack),1,3.84,02/07/19 05:46,"590 10th St, Atlanta, GA 30301" +161991,Bose SoundSport Headphones,1,99.99,02/18/19 19:25,"20 Hill St, Atlanta, GA 30301" +161992,Macbook Pro Laptop,1,1700,02/16/19 20:12,"685 1st St, San Francisco, CA 94016" +161993,AAA Batteries (4-pack),3,2.99,02/03/19 11:01,"55 Sunset St, New York City, NY 10001" +161994,Bose SoundSport Headphones,1,99.99,02/28/19 19:10,"340 6th St, Portland, OR 97035" +161995,Lightning Charging Cable,1,14.95,02/19/19 18:38,"383 Forest St, New York City, NY 10001" +161996,Apple Airpods Headphones,1,150,02/23/19 21:34,"59 12th St, New York City, NY 10001" +161997,Apple Airpods Headphones,1,150,02/10/19 22:16,"48 Center St, Los Angeles, CA 90001" +161998,Bose SoundSport Headphones,1,99.99,02/20/19 07:45,"405 14th St, Los Angeles, CA 90001" +161999,Apple Airpods Headphones,1,150,02/19/19 03:54,"686 Dogwood St, Boston, MA 02215" +162000,ThinkPad Laptop,1,999.99,02/25/19 17:03,"664 West St, Los Angeles, CA 90001" +162001,Wired Headphones,1,11.99,02/25/19 15:23,"652 Hill St, Austin, TX 73301" +162002,LG Washing Machine,1,600.0,02/16/19 13:39,"239 Adams St, Austin, TX 73301" +162003,AAA Batteries (4-pack),1,2.99,02/09/19 11:27,"133 Chestnut St, Boston, MA 02215" +162004,34in Ultrawide Monitor,1,379.99,02/21/19 11:41,"276 Chestnut St, Los Angeles, CA 90001" +162005,AA Batteries (4-pack),1,3.84,02/04/19 12:48,"597 10th St, Dallas, TX 75001" +162006,Macbook Pro Laptop,1,1700,02/11/19 10:05,"540 5th St, Boston, MA 02215" +162007,Lightning Charging Cable,1,14.95,02/15/19 18:37,"906 Church St, Los Angeles, CA 90001" +162008,AA Batteries (4-pack),2,3.84,02/15/19 07:26,"733 Willow St, San Francisco, CA 94016" +162009,Lightning Charging Cable,1,14.95,02/04/19 19:31,"187 11th St, Los Angeles, CA 90001" +162010,Bose SoundSport Headphones,1,99.99,02/09/19 20:05,"931 Jefferson St, Los Angeles, CA 90001" +162011,Wired Headphones,1,11.99,02/16/19 10:23,"694 Cedar St, San Francisco, CA 94016" +162012,27in 4K Gaming Monitor,1,389.99,02/22/19 13:45,"586 Main St, Seattle, WA 98101" +162013,27in 4K Gaming Monitor,1,389.99,02/08/19 13:47,"893 Jackson St, Boston, MA 02215" +162014,Macbook Pro Laptop,1,1700,02/01/19 11:52,"870 5th St, Boston, MA 02215" +162015,Apple Airpods Headphones,1,150,02/24/19 19:32,"396 12th St, Atlanta, GA 30301" +162016,Lightning Charging Cable,1,14.95,02/12/19 06:05,"149 River St, Los Angeles, CA 90001" +162017,20in Monitor,1,109.99,02/04/19 22:25,"372 8th St, Portland, OR 97035" +162018,Lightning Charging Cable,1,14.95,02/28/19 17:47,"76 Walnut St, San Francisco, CA 94016" +162019,AA Batteries (4-pack),1,3.84,02/03/19 20:13,"993 Elm St, Portland, OR 97035" +162020,Google Phone,1,600,02/16/19 14:08,"59 Cedar St, Dallas, TX 75001" +162021,Wired Headphones,1,11.99,02/01/19 20:27,"279 2nd St, San Francisco, CA 94016" +162022,USB-C Charging Cable,1,11.95,02/01/19 20:30,"493 Park St, New York City, NY 10001" +162023,AAA Batteries (4-pack),1,2.99,02/02/19 20:45,"764 13th St, Boston, MA 02215" +162024,AA Batteries (4-pack),2,3.84,02/01/19 19:19,"384 2nd St, Boston, MA 02215" +162025,Lightning Charging Cable,1,14.95,02/17/19 23:05,"781 Lake St, San Francisco, CA 94016" +162026,Wired Headphones,1,11.99,02/17/19 18:03,"819 Madison St, Seattle, WA 98101" +162027,Bose SoundSport Headphones,1,99.99,02/22/19 08:58,"118 Lincoln St, Portland, OR 97035" +162028,Apple Airpods Headphones,1,150,02/03/19 10:24,"565 Main St, San Francisco, CA 94016" +162029,AAA Batteries (4-pack),1,2.99,02/27/19 20:41,"864 Pine St, Portland, OR 97035" +162030,AA Batteries (4-pack),1,3.84,02/03/19 19:48,"592 5th St, Dallas, TX 75001" +162031,AAA Batteries (4-pack),2,2.99,02/02/19 10:46,"459 Hill St, Atlanta, GA 30301" +162032,AA Batteries (4-pack),2,3.84,02/03/19 16:00,"722 Highland St, Seattle, WA 98101" +162033,Google Phone,1,600,02/27/19 11:35,"470 Church St, Boston, MA 02215" +162034,Apple Airpods Headphones,1,150,02/23/19 06:55,"436 11th St, Los Angeles, CA 90001" +162035,Apple Airpods Headphones,1,150,02/28/19 16:15,"116 Hill St, San Francisco, CA 94016" +162036,ThinkPad Laptop,1,999.99,02/09/19 13:25,"765 South St, Dallas, TX 75001" +162036,AA Batteries (4-pack),1,3.84,02/09/19 13:25,"765 South St, Dallas, TX 75001" +162037,Flatscreen TV,1,300,02/27/19 09:05,"636 2nd St, San Francisco, CA 94016" +162038,Wired Headphones,1,11.99,02/05/19 14:18,"453 Walnut St, Los Angeles, CA 90001" +162039,Wired Headphones,1,11.99,02/20/19 16:13,"663 Madison St, Dallas, TX 75001" +162040,AA Batteries (4-pack),1,3.84,02/22/19 20:11,"420 Lincoln St, San Francisco, CA 94016" +162041,20in Monitor,1,109.99,02/07/19 15:21,"908 4th St, Boston, MA 02215" +162042,Apple Airpods Headphones,1,150,02/11/19 14:48,"69 Pine St, Portland, OR 97035" +162043,USB-C Charging Cable,1,11.95,02/03/19 20:47,"228 12th St, New York City, NY 10001" +162044,Lightning Charging Cable,1,14.95,02/09/19 15:35,"352 10th St, Los Angeles, CA 90001" +162045,AAA Batteries (4-pack),1,2.99,02/08/19 15:19,"872 14th St, Los Angeles, CA 90001" +162046,Wired Headphones,1,11.99,02/06/19 05:49,"17 Forest St, Portland, OR 97035" +162046,Vareebadd Phone,1,400,02/06/19 05:49,"17 Forest St, Portland, OR 97035" +162047,AAA Batteries (4-pack),1,2.99,02/21/19 12:27,"222 Washington St, San Francisco, CA 94016" +162048,USB-C Charging Cable,1,11.95,02/03/19 16:51,"853 Elm St, Los Angeles, CA 90001" +162049,27in FHD Monitor,1,149.99,02/16/19 15:21,"941 6th St, San Francisco, CA 94016" +162049,USB-C Charging Cable,1,11.95,02/16/19 15:21,"941 6th St, San Francisco, CA 94016" +162050,LG Washing Machine,1,600.0,02/23/19 09:55,"963 Dogwood St, Austin, TX 73301" +162051,Flatscreen TV,1,300,02/28/19 05:59,"582 Maple St, Dallas, TX 75001" +162052,Apple Airpods Headphones,1,150,02/07/19 16:27,"673 West St, Atlanta, GA 30301" +162053,Wired Headphones,1,11.99,02/08/19 11:41,"223 Jefferson St, Portland, OR 97035" +162054,Google Phone,1,600,02/27/19 19:13,"473 Maple St, Los Angeles, CA 90001" +162055,AAA Batteries (4-pack),1,2.99,02/03/19 19:38,"217 1st St, San Francisco, CA 94016" +162056,AA Batteries (4-pack),4,3.84,02/17/19 15:22,"442 Forest St, Boston, MA 02215" +162056,AA Batteries (4-pack),2,3.84,02/17/19 15:22,"442 Forest St, Boston, MA 02215" +162057,Bose SoundSport Headphones,1,99.99,02/13/19 13:10,"845 Ridge St, San Francisco, CA 94016" +162058,Apple Airpods Headphones,1,150,02/12/19 18:33,"592 Adams St, Austin, TX 73301" +162059,AA Batteries (4-pack),2,3.84,02/13/19 21:15,"64 Willow St, Seattle, WA 98101" +162060,USB-C Charging Cable,1,11.95,02/18/19 01:27,"623 Center St, Atlanta, GA 30301" +162061,LG Dryer,1,600.0,02/19/19 15:29,"398 Lake St, San Francisco, CA 94016" +162062,Macbook Pro Laptop,1,1700,02/17/19 18:00,"161 10th St, Los Angeles, CA 90001" +162063,Wired Headphones,1,11.99,02/07/19 22:01,"647 South St, Dallas, TX 75001" +162064,iPhone,1,700,02/22/19 21:32,"3 Forest St, Atlanta, GA 30301" +162064,Flatscreen TV,1,300,02/22/19 21:32,"3 Forest St, Atlanta, GA 30301" +162065,20in Monitor,1,109.99,02/14/19 18:55,"238 Cherry St, Atlanta, GA 30301" +162066,Flatscreen TV,1,300,02/17/19 13:03,"286 Jackson St, Los Angeles, CA 90001" +162067,AA Batteries (4-pack),1,3.84,02/27/19 15:13,"258 Lake St, Seattle, WA 98101" +162068,USB-C Charging Cable,1,11.95,02/22/19 19:36,"446 West St, New York City, NY 10001" +162069,Bose SoundSport Headphones,1,99.99,02/01/19 15:35,"927 8th St, Los Angeles, CA 90001" +162070,USB-C Charging Cable,1,11.95,02/28/19 20:31,"855 Johnson St, Boston, MA 02215" +162071,34in Ultrawide Monitor,1,379.99,02/15/19 16:37,"352 Spruce St, San Francisco, CA 94016" +162072,27in FHD Monitor,1,149.99,02/11/19 15:20,"43 Dogwood St, Los Angeles, CA 90001" +162073,Wired Headphones,1,11.99,02/20/19 16:52,"264 Jackson St, Seattle, WA 98101" +162073,Lightning Charging Cable,1,14.95,02/20/19 16:52,"264 Jackson St, Seattle, WA 98101" +162074,AA Batteries (4-pack),1,3.84,02/11/19 10:31,"385 West St, San Francisco, CA 94016" +162075,Macbook Pro Laptop,1,1700,02/07/19 18:26,"285 13th St, Los Angeles, CA 90001" +162076,Wired Headphones,2,11.99,02/23/19 14:17,"242 4th St, Austin, TX 73301" +162077,Wired Headphones,1,11.99,02/06/19 21:48,"67 Madison St, San Francisco, CA 94016" +162078,AA Batteries (4-pack),1,3.84,02/23/19 07:54,"159 Chestnut St, Dallas, TX 75001" +162079,Bose SoundSport Headphones,1,99.99,02/21/19 09:50,"405 North St, Dallas, TX 75001" +162080,AA Batteries (4-pack),1,3.84,02/06/19 21:11,"357 Willow St, Los Angeles, CA 90001" +162081,AA Batteries (4-pack),1,3.84,03/01/19 01:09,"219 Washington St, New York City, NY 10001" +162082,Wired Headphones,1,11.99,02/11/19 11:42,"719 South St, Austin, TX 73301" +162083,Lightning Charging Cable,1,14.95,02/19/19 12:17,"470 Willow St, Los Angeles, CA 90001" +162084,AAA Batteries (4-pack),3,2.99,02/16/19 12:01,"366 Jefferson St, Los Angeles, CA 90001" +162085,34in Ultrawide Monitor,1,379.99,02/14/19 09:16,"920 Center St, Boston, MA 02215" +162086,iPhone,1,700,02/17/19 10:20,"900 Cedar St, San Francisco, CA 94016" +162086,Lightning Charging Cable,1,14.95,02/17/19 10:20,"900 Cedar St, San Francisco, CA 94016" +162087,Apple Airpods Headphones,1,150,02/25/19 18:18,"837 Forest St, Atlanta, GA 30301" +162088,Macbook Pro Laptop,1,1700,02/18/19 17:41,"282 South St, Dallas, TX 75001" +162089,Lightning Charging Cable,1,14.95,02/19/19 14:31,"486 Jefferson St, Los Angeles, CA 90001" +162090,27in 4K Gaming Monitor,1,389.99,02/24/19 09:30,"769 Sunset St, Dallas, TX 75001" +162091,AAA Batteries (4-pack),1,2.99,02/26/19 02:49,"404 10th St, Seattle, WA 98101" +162092,20in Monitor,1,109.99,02/13/19 21:12,"589 Hickory St, Los Angeles, CA 90001" +162093,AA Batteries (4-pack),1,3.84,02/16/19 18:39,"667 South St, Atlanta, GA 30301" +162094,Google Phone,1,600,02/06/19 21:22,"790 Highland St, Seattle, WA 98101" +162095,27in FHD Monitor,1,149.99,02/08/19 22:15,"350 11th St, San Francisco, CA 94016" +162096,Apple Airpods Headphones,1,150,02/17/19 14:47,"583 Meadow St, Portland, OR 97035" +162096,Lightning Charging Cable,1,14.95,02/17/19 14:47,"583 Meadow St, Portland, OR 97035" +162097,Vareebadd Phone,1,400,02/13/19 11:35,"744 Sunset St, New York City, NY 10001" +162098,34in Ultrawide Monitor,1,379.99,02/07/19 13:33,"127 Johnson St, Boston, MA 02215" +162099,Apple Airpods Headphones,1,150,02/27/19 12:32,"590 Lakeview St, San Francisco, CA 94016" +162100,Bose SoundSport Headphones,1,99.99,02/26/19 23:01,"909 1st St, Atlanta, GA 30301" +162101,Lightning Charging Cable,1,14.95,02/15/19 22:21,"465 Pine St, San Francisco, CA 94016" +162102,AA Batteries (4-pack),2,3.84,02/23/19 09:23,"476 Johnson St, San Francisco, CA 94016" +162103,AAA Batteries (4-pack),1,2.99,02/05/19 21:06,"374 Forest St, San Francisco, CA 94016" +162104,Wired Headphones,1,11.99,02/22/19 08:20,"657 Lakeview St, New York City, NY 10001" +162105,27in FHD Monitor,1,149.99,02/08/19 18:13,"806 Wilson St, San Francisco, CA 94016" +162106,34in Ultrawide Monitor,1,379.99,02/28/19 07:25,"480 Jefferson St, Austin, TX 73301" +162107,Wired Headphones,2,11.99,02/01/19 12:24,"5 Johnson St, San Francisco, CA 94016" +162108,iPhone,1,700,02/27/19 12:19,"174 Sunset St, San Francisco, CA 94016" +162109,Apple Airpods Headphones,1,150,02/05/19 22:57,"943 2nd St, Los Angeles, CA 90001" +162110,Wired Headphones,1,11.99,02/17/19 07:47,"431 Hill St, Dallas, TX 75001" +162111,AAA Batteries (4-pack),1,2.99,02/20/19 10:43,"140 Cedar St, Dallas, TX 75001" +162112,AA Batteries (4-pack),1,3.84,02/05/19 12:06,"313 Main St, San Francisco, CA 94016" +162113,Apple Airpods Headphones,1,150,02/23/19 11:15,"901 1st St, Seattle, WA 98101" +162114,USB-C Charging Cable,1,11.95,02/05/19 15:29,"933 Hickory St, San Francisco, CA 94016" +162115,USB-C Charging Cable,1,11.95,02/21/19 13:04,"358 13th St, Boston, MA 02215" +162116,Lightning Charging Cable,1,14.95,02/19/19 20:52,"238 11th St, San Francisco, CA 94016" +162117,20in Monitor,1,109.99,02/10/19 13:55,"845 Chestnut St, Los Angeles, CA 90001" +162118,Apple Airpods Headphones,1,150,02/13/19 13:31,"180 Maple St, Austin, TX 73301" +162119,Wired Headphones,1,11.99,02/19/19 01:35,"999 Meadow St, Dallas, TX 75001" +162120,Google Phone,1,600,02/01/19 11:31,"315 11th St, Los Angeles, CA 90001" +162121,Apple Airpods Headphones,1,150,02/14/19 11:50,"940 Hill St, San Francisco, CA 94016" +162122,27in FHD Monitor,1,149.99,02/01/19 12:21,"21 1st St, San Francisco, CA 94016" +162123,AA Batteries (4-pack),1,3.84,02/14/19 19:30,"605 1st St, Portland, OR 97035" +162124,Lightning Charging Cable,1,14.95,02/25/19 22:18,"594 Jackson St, Atlanta, GA 30301" +162125,USB-C Charging Cable,1,11.95,02/23/19 16:15,"382 Pine St, San Francisco, CA 94016" +162126,20in Monitor,1,109.99,02/15/19 09:07,"346 Highland St, San Francisco, CA 94016" +162127,AAA Batteries (4-pack),2,2.99,02/20/19 17:16,"147 Willow St, Los Angeles, CA 90001" +162128,AA Batteries (4-pack),1,3.84,02/06/19 11:31,"211 10th St, Los Angeles, CA 90001" +162129,Wired Headphones,1,11.99,02/23/19 10:11,"530 2nd St, Boston, MA 02215" +162130,AA Batteries (4-pack),4,3.84,02/01/19 20:24,"364 14th St, Dallas, TX 75001" +162131,Google Phone,1,600,02/18/19 13:09,"147 Meadow St, Los Angeles, CA 90001" +162132,Wired Headphones,1,11.99,02/03/19 17:35,"203 Center St, San Francisco, CA 94016" +162133,Apple Airpods Headphones,2,150,02/26/19 20:40,"808 Center St, Atlanta, GA 30301" +162134,USB-C Charging Cable,1,11.95,02/06/19 12:03,"942 Jackson St, Los Angeles, CA 90001" +162135,Lightning Charging Cable,1,14.95,02/21/19 14:04,"641 Hickory St, Portland, ME 04101" +162136,AA Batteries (4-pack),1,3.84,02/13/19 20:43,"855 Jefferson St, New York City, NY 10001" +162137,Bose SoundSport Headphones,1,99.99,02/06/19 10:51,"871 Ridge St, New York City, NY 10001" +162138,Lightning Charging Cable,1,14.95,02/03/19 17:16,"657 4th St, Boston, MA 02215" +162139,27in FHD Monitor,1,149.99,02/14/19 21:22,"665 Walnut St, Dallas, TX 75001" +162140,Lightning Charging Cable,1,14.95,02/26/19 17:31,"724 Wilson St, New York City, NY 10001" +162141,Bose SoundSport Headphones,1,99.99,02/15/19 16:26,"939 8th St, New York City, NY 10001" +162142,USB-C Charging Cable,1,11.95,02/22/19 22:02,"456 Hickory St, San Francisco, CA 94016" +162143,AA Batteries (4-pack),2,3.84,02/17/19 16:22,"376 North St, San Francisco, CA 94016" +162144,Wired Headphones,2,11.99,02/02/19 08:02,"915 Jefferson St, Atlanta, GA 30301" +162145,AAA Batteries (4-pack),1,2.99,02/03/19 18:26,"731 7th St, San Francisco, CA 94016" +162146,AAA Batteries (4-pack),4,2.99,02/07/19 10:09,"760 Johnson St, Seattle, WA 98101" +162147,Lightning Charging Cable,1,14.95,02/22/19 07:19,"600 Main St, Portland, OR 97035" +162148,AA Batteries (4-pack),1,3.84,02/27/19 12:38,"486 Jackson St, Portland, ME 04101" +162149,Apple Airpods Headphones,1,150,02/09/19 16:00,"695 South St, Austin, TX 73301" +162150,Wired Headphones,1,11.99,02/06/19 09:25,"618 Park St, New York City, NY 10001" +162151,27in FHD Monitor,1,149.99,02/20/19 19:58,"552 2nd St, Portland, OR 97035" +162152,AAA Batteries (4-pack),1,2.99,02/06/19 09:49,"844 2nd St, Los Angeles, CA 90001" +162153,Apple Airpods Headphones,1,150,02/04/19 13:48,"393 Cedar St, Atlanta, GA 30301" +162154,Apple Airpods Headphones,1,150,02/01/19 18:49,"519 South St, Los Angeles, CA 90001" +162155,Wired Headphones,2,11.99,02/08/19 10:01,"474 9th St, Los Angeles, CA 90001" +162156,Lightning Charging Cable,1,14.95,02/01/19 22:47,"335 Spruce St, Dallas, TX 75001" +162157,AA Batteries (4-pack),1,3.84,02/04/19 20:18,"121 Jefferson St, San Francisco, CA 94016" +162158,AA Batteries (4-pack),2,3.84,02/25/19 14:14,"796 Lakeview St, Atlanta, GA 30301" +162159,Google Phone,1,600,02/01/19 12:41,"522 Washington St, Los Angeles, CA 90001" +162160,34in Ultrawide Monitor,1,379.99,02/20/19 07:28,"395 7th St, Portland, OR 97035" +162161,Macbook Pro Laptop,1,1700,02/21/19 16:33,"821 Forest St, Boston, MA 02215" +162162,Wired Headphones,1,11.99,02/16/19 10:08,"186 Sunset St, San Francisco, CA 94016" +162163,Apple Airpods Headphones,1,150,02/18/19 19:36,"337 South St, Los Angeles, CA 90001" +162164,Wired Headphones,1,11.99,02/13/19 13:21,"536 Johnson St, Los Angeles, CA 90001" +162165,Apple Airpods Headphones,1,150,02/11/19 19:56,"626 5th St, San Francisco, CA 94016" +162166,Lightning Charging Cable,1,14.95,02/18/19 14:12,"838 Forest St, Dallas, TX 75001" +162167,AA Batteries (4-pack),1,3.84,02/28/19 17:01,"411 Ridge St, Los Angeles, CA 90001" +162168,USB-C Charging Cable,1,11.95,02/05/19 14:10,"963 River St, New York City, NY 10001" +162169,AAA Batteries (4-pack),3,2.99,02/17/19 14:27,"862 Elm St, New York City, NY 10001" +162170,Bose SoundSport Headphones,1,99.99,02/25/19 09:18,"428 Lake St, Seattle, WA 98101" +162171,Bose SoundSport Headphones,1,99.99,02/19/19 20:32,"890 Wilson St, Boston, MA 02215" +162172,34in Ultrawide Monitor,1,379.99,02/11/19 16:34,"184 4th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +162173,AA Batteries (4-pack),1,3.84,02/12/19 21:10,"301 Cherry St, New York City, NY 10001" +162174,ThinkPad Laptop,1,999.99,02/12/19 19:18,"868 Jackson St, Los Angeles, CA 90001" +162174,34in Ultrawide Monitor,1,379.99,02/12/19 19:18,"868 Jackson St, Los Angeles, CA 90001" +162175,USB-C Charging Cable,1,11.95,02/24/19 16:06,"783 7th St, Los Angeles, CA 90001" +162176,Vareebadd Phone,1,400,02/17/19 19:48,"945 Forest St, Dallas, TX 75001" +162177,Apple Airpods Headphones,1,150,02/05/19 09:36,"39 Walnut St, San Francisco, CA 94016" +162178,Flatscreen TV,1,300,02/13/19 07:24,"268 11th St, San Francisco, CA 94016" +162179,Bose SoundSport Headphones,1,99.99,02/24/19 14:19,"901 Chestnut St, San Francisco, CA 94016" +162180,27in 4K Gaming Monitor,1,389.99,02/06/19 14:18,"129 Wilson St, New York City, NY 10001" +162181,27in FHD Monitor,1,149.99,02/26/19 03:37,"168 Cherry St, Boston, MA 02215" +162182,AA Batteries (4-pack),1,3.84,02/27/19 08:03,"300 Dogwood St, San Francisco, CA 94016" +162183,Apple Airpods Headphones,1,150,02/24/19 20:36,"812 2nd St, Los Angeles, CA 90001" +162184,20in Monitor,1,109.99,02/04/19 10:37,"41 Chestnut St, Dallas, TX 75001" +162185,Wired Headphones,1,11.99,02/01/19 13:07,"898 Lincoln St, Seattle, WA 98101" +162186,Flatscreen TV,1,300,02/11/19 23:27,"700 River St, Boston, MA 02215" +162187,AAA Batteries (4-pack),1,2.99,02/22/19 22:17,"848 Jackson St, Atlanta, GA 30301" +162188,Apple Airpods Headphones,1,150,02/07/19 20:38,"239 South St, Dallas, TX 75001" +162189,Lightning Charging Cable,1,14.95,02/09/19 12:59,"567 10th St, San Francisco, CA 94016" +162190,Apple Airpods Headphones,1,150,02/27/19 12:26,"207 6th St, Dallas, TX 75001" +162191,USB-C Charging Cable,1,11.95,02/19/19 08:28,"648 5th St, Dallas, TX 75001" +162192,AA Batteries (4-pack),1,3.84,02/07/19 00:00,"139 Lakeview St, Seattle, WA 98101" +162193,Wired Headphones,1,11.99,02/10/19 14:02,"81 Cedar St, San Francisco, CA 94016" +162194,34in Ultrawide Monitor,1,379.99,02/04/19 07:50,"44 5th St, Portland, OR 97035" +162195,Apple Airpods Headphones,1,150,02/19/19 10:03,"361 Elm St, San Francisco, CA 94016" +162196,20in Monitor,1,109.99,02/03/19 08:43,"710 Dogwood St, Portland, ME 04101" +162197,AAA Batteries (4-pack),1,2.99,02/16/19 15:45,"664 Hickory St, San Francisco, CA 94016" +162198,Apple Airpods Headphones,1,150,02/16/19 16:08,"341 13th St, Atlanta, GA 30301" +162199,Wired Headphones,1,11.99,02/21/19 08:10,"388 River St, Los Angeles, CA 90001" +162200,AA Batteries (4-pack),1,3.84,02/27/19 12:21,"501 11th St, Los Angeles, CA 90001" +162201,Apple Airpods Headphones,1,150,02/09/19 09:01,"240 Sunset St, Portland, OR 97035" +162202,iPhone,1,700,02/24/19 11:43,"415 2nd St, New York City, NY 10001" +162202,Wired Headphones,1,11.99,02/24/19 11:43,"415 2nd St, New York City, NY 10001" +162203,LG Washing Machine,1,600.0,02/08/19 12:13,"57 9th St, San Francisco, CA 94016" +162204,Lightning Charging Cable,1,14.95,02/09/19 04:40,"677 Ridge St, New York City, NY 10001" +162205,Apple Airpods Headphones,1,150,02/08/19 15:30,"55 4th St, Boston, MA 02215" +162206,Macbook Pro Laptop,1,1700,02/17/19 16:54,"764 Chestnut St, San Francisco, CA 94016" +162207,Flatscreen TV,1,300,02/09/19 03:14,"512 10th St, Atlanta, GA 30301" +162208,AAA Batteries (4-pack),1,2.99,02/06/19 16:34,"531 Willow St, San Francisco, CA 94016" +162209,Bose SoundSport Headphones,1,99.99,02/22/19 08:20,"399 Meadow St, Dallas, TX 75001" +162210,AA Batteries (4-pack),1,3.84,02/16/19 11:30,"134 Maple St, Atlanta, GA 30301" +162211,Apple Airpods Headphones,1,150,02/19/19 08:17,"212 Walnut St, Portland, ME 04101" +162212,Google Phone,1,600,02/26/19 21:22,"130 11th St, New York City, NY 10001" +162212,Wired Headphones,1,11.99,02/26/19 21:22,"130 11th St, New York City, NY 10001" +162213,AAA Batteries (4-pack),4,2.99,02/02/19 22:53,"561 Park St, Boston, MA 02215" +162214,AAA Batteries (4-pack),3,2.99,02/04/19 10:38,"704 Lakeview St, Boston, MA 02215" +162215,USB-C Charging Cable,1,11.95,02/19/19 12:54,"330 8th St, Los Angeles, CA 90001" +162216,AAA Batteries (4-pack),1,2.99,02/28/19 21:33,"219 West St, Los Angeles, CA 90001" +162217,Bose SoundSport Headphones,1,99.99,02/18/19 09:08,"455 Sunset St, Los Angeles, CA 90001" +162218,AAA Batteries (4-pack),1,2.99,02/15/19 15:13,"175 Adams St, San Francisco, CA 94016" +162219,27in 4K Gaming Monitor,1,389.99,02/25/19 18:08,"618 10th St, New York City, NY 10001" +162220,AA Batteries (4-pack),1,3.84,02/09/19 18:08,"796 West St, Los Angeles, CA 90001" +162221,ThinkPad Laptop,1,999.99,02/06/19 12:17,"48 Jefferson St, San Francisco, CA 94016" +162222,AA Batteries (4-pack),1,3.84,02/28/19 14:50,"347 10th St, San Francisco, CA 94016" +162223,Apple Airpods Headphones,1,150,02/26/19 21:42,"111 Walnut St, San Francisco, CA 94016" +162224,Apple Airpods Headphones,1,150,02/02/19 16:21,"65 Jackson St, Boston, MA 02215" +162225,Lightning Charging Cable,1,14.95,02/12/19 13:35,"928 Jefferson St, San Francisco, CA 94016" +162226,Bose SoundSport Headphones,1,99.99,02/16/19 18:05,"363 7th St, Dallas, TX 75001" +162227,Flatscreen TV,1,300,02/17/19 10:05,"204 11th St, Portland, OR 97035" +162228,Wired Headphones,1,11.99,02/01/19 12:53,"137 Lincoln St, Dallas, TX 75001" +162229,USB-C Charging Cable,1,11.95,02/12/19 14:46,"487 Park St, Boston, MA 02215" +162230,34in Ultrawide Monitor,1,379.99,02/08/19 13:03,"322 Church St, Seattle, WA 98101" +162231,Apple Airpods Headphones,1,150,02/16/19 20:30,"272 Chestnut St, Boston, MA 02215" +162232,USB-C Charging Cable,1,11.95,02/19/19 19:31,"849 Spruce St, Dallas, TX 75001" +162233,34in Ultrawide Monitor,1,379.99,02/26/19 21:21,"356 12th St, Boston, MA 02215" +162234,Wired Headphones,1,11.99,02/14/19 21:08,"465 Johnson St, San Francisco, CA 94016" +162235,Google Phone,1,600,02/03/19 20:46,"881 South St, New York City, NY 10001" +162236,Wired Headphones,1,11.99,02/10/19 09:56,"99 Lincoln St, San Francisco, CA 94016" +162237,Wired Headphones,1,11.99,02/09/19 20:58,"497 Elm St, Austin, TX 73301" +162237,Bose SoundSport Headphones,1,99.99,02/09/19 20:58,"497 Elm St, Austin, TX 73301" +162238,AAA Batteries (4-pack),1,2.99,02/24/19 15:11,"495 12th St, San Francisco, CA 94016" +162239,AA Batteries (4-pack),1,3.84,02/09/19 06:14,"304 Jefferson St, Boston, MA 02215" +162240,Apple Airpods Headphones,1,150,02/15/19 12:16,"645 Adams St, New York City, NY 10001" +162241,AA Batteries (4-pack),1,3.84,02/08/19 22:19,"506 Ridge St, San Francisco, CA 94016" +162242,20in Monitor,1,109.99,02/03/19 16:15,"635 Lakeview St, Austin, TX 73301" +162243,Bose SoundSport Headphones,1,99.99,02/07/19 10:34,"179 West St, San Francisco, CA 94016" +162244,Wired Headphones,2,11.99,02/01/19 17:30,"291 6th St, Austin, TX 73301" +162245,Bose SoundSport Headphones,1,99.99,02/15/19 14:17,"358 5th St, San Francisco, CA 94016" +162246,AAA Batteries (4-pack),1,2.99,02/26/19 19:51,"654 1st St, Boston, MA 02215" +162247,Bose SoundSport Headphones,1,99.99,02/24/19 11:02,"106 12th St, Boston, MA 02215" +162248,USB-C Charging Cable,2,11.95,02/26/19 09:29,"142 Hickory St, Dallas, TX 75001" +162249,Wired Headphones,1,11.99,02/07/19 15:25,"739 12th St, Los Angeles, CA 90001" +162250,USB-C Charging Cable,1,11.95,02/13/19 14:37,"614 Lake St, Austin, TX 73301" +162251,Apple Airpods Headphones,1,150,02/18/19 08:37,"186 Sunset St, Dallas, TX 75001" +162252,USB-C Charging Cable,1,11.95,02/07/19 22:58,"60 4th St, San Francisco, CA 94016" +162253,Flatscreen TV,1,300,02/20/19 17:59,"686 4th St, Seattle, WA 98101" +162254,AAA Batteries (4-pack),1,2.99,02/25/19 09:57,"343 Maple St, New York City, NY 10001" +162255,34in Ultrawide Monitor,1,379.99,02/01/19 08:42,"921 2nd St, Los Angeles, CA 90001" +162256,Apple Airpods Headphones,1,150,02/19/19 10:05,"441 5th St, Los Angeles, CA 90001" +162257,Wired Headphones,1,11.99,02/04/19 08:26,"368 Jefferson St, Los Angeles, CA 90001" +162258,ThinkPad Laptop,1,999.99,02/26/19 09:51,"676 Center St, Boston, MA 02215" +162259,ThinkPad Laptop,1,999.99,02/07/19 19:08,"500 Wilson St, Austin, TX 73301" +162260,USB-C Charging Cable,2,11.95,02/13/19 10:19,"174 West St, Los Angeles, CA 90001" +162261,Flatscreen TV,1,300,02/01/19 14:15,"118 Maple St, Atlanta, GA 30301" +162262,Bose SoundSport Headphones,1,99.99,02/25/19 12:24,"810 Dogwood St, Austin, TX 73301" +162263,Lightning Charging Cable,1,14.95,02/10/19 18:51,"943 Jackson St, Atlanta, GA 30301" +162264,USB-C Charging Cable,1,11.95,02/17/19 15:43,"348 Hill St, New York City, NY 10001" +162265,iPhone,1,700,02/12/19 13:20,"974 Lake St, Atlanta, GA 30301" +162266,Bose SoundSport Headphones,1,99.99,02/02/19 08:33,"498 7th St, Portland, OR 97035" +162267,Flatscreen TV,1,300,02/10/19 18:44,"597 Sunset St, Austin, TX 73301" +162268,Flatscreen TV,1,300,02/28/19 01:30,"689 Lake St, San Francisco, CA 94016" +162269,AAA Batteries (4-pack),1,2.99,02/17/19 13:00,"420 10th St, Atlanta, GA 30301" +162270,Bose SoundSport Headphones,1,99.99,02/19/19 13:16,"325 Lakeview St, Portland, OR 97035" +162271,Lightning Charging Cable,1,14.95,02/10/19 21:01,"416 Jefferson St, Boston, MA 02215" +162272,Wired Headphones,2,11.99,02/04/19 10:28,"861 Center St, San Francisco, CA 94016" +162273,AAA Batteries (4-pack),3,2.99,02/13/19 12:29,"719 11th St, New York City, NY 10001" +162274,Lightning Charging Cable,1,14.95,02/09/19 06:43,"548 Church St, Boston, MA 02215" +162275,Wired Headphones,1,11.99,02/27/19 21:57,"495 Willow St, Los Angeles, CA 90001" +162276,Bose SoundSport Headphones,1,99.99,02/05/19 20:48,"660 West St, New York City, NY 10001" +162277,Macbook Pro Laptop,1,1700,02/08/19 09:34,"769 Highland St, Atlanta, GA 30301" +162278,AAA Batteries (4-pack),2,2.99,02/02/19 20:07,"669 Hill St, Seattle, WA 98101" +162279,USB-C Charging Cable,1,11.95,02/27/19 22:56,"305 Main St, Boston, MA 02215" +162280,Apple Airpods Headphones,1,150,02/22/19 12:38,"320 Highland St, Seattle, WA 98101" +162281,Wired Headphones,1,11.99,02/20/19 16:46,"824 Hickory St, New York City, NY 10001" +162282,Apple Airpods Headphones,1,150,02/14/19 09:10,"515 West St, Seattle, WA 98101" +162283,Wired Headphones,1,11.99,02/03/19 20:51,"508 13th St, San Francisco, CA 94016" +162284,27in FHD Monitor,1,149.99,02/09/19 21:26,"188 8th St, San Francisco, CA 94016" +162285,ThinkPad Laptop,1,999.99,02/25/19 23:43,"673 8th St, Los Angeles, CA 90001" +162286,AA Batteries (4-pack),1,3.84,02/17/19 19:29,"864 Elm St, Dallas, TX 75001" +162287,Lightning Charging Cable,1,14.95,02/06/19 14:09,"128 Ridge St, San Francisco, CA 94016" +162288,34in Ultrawide Monitor,1,379.99,02/02/19 23:56,"840 River St, San Francisco, CA 94016" +162289,Lightning Charging Cable,1,14.95,02/24/19 22:24,"104 7th St, San Francisco, CA 94016" +162290,Lightning Charging Cable,1,14.95,02/02/19 14:08,"125 4th St, Portland, ME 04101" +162291,Lightning Charging Cable,1,14.95,02/17/19 20:47,"516 Willow St, Atlanta, GA 30301" +162292,27in 4K Gaming Monitor,1,389.99,02/08/19 19:51,"127 Willow St, Los Angeles, CA 90001" +162293,AAA Batteries (4-pack),5,2.99,02/16/19 19:56,"475 Lincoln St, Seattle, WA 98101" +162294,27in FHD Monitor,1,149.99,02/01/19 08:39,"339 Park St, San Francisco, CA 94016" +162295,Apple Airpods Headphones,1,150,02/05/19 07:08,"990 North St, Austin, TX 73301" +162296,Vareebadd Phone,1,400,02/14/19 11:43,"951 Main St, New York City, NY 10001" +162297,Wired Headphones,1,11.99,02/21/19 17:55,"309 Spruce St, Los Angeles, CA 90001" +162298,Apple Airpods Headphones,1,150,02/16/19 20:11,"170 Washington St, San Francisco, CA 94016" +162299,ThinkPad Laptop,1,999.99,02/02/19 22:21,"291 7th St, New York City, NY 10001" +162300,USB-C Charging Cable,1,11.95,02/25/19 10:30,"172 Cedar St, Atlanta, GA 30301" +162300,USB-C Charging Cable,1,11.95,02/25/19 10:30,"172 Cedar St, Atlanta, GA 30301" +162301,Lightning Charging Cable,1,14.95,02/15/19 00:08,"765 Forest St, San Francisco, CA 94016" +162302,USB-C Charging Cable,1,11.95,02/18/19 23:53,"104 River St, San Francisco, CA 94016" +162303,27in FHD Monitor,1,149.99,02/05/19 20:24,"400 Dogwood St, Dallas, TX 75001" +162304,Google Phone,1,600,02/19/19 13:59,"662 Sunset St, Dallas, TX 75001" +162305,Flatscreen TV,1,300,02/24/19 11:54,"278 Johnson St, Boston, MA 02215" +162306,AAA Batteries (4-pack),1,2.99,02/08/19 20:01,"726 Chestnut St, San Francisco, CA 94016" +162307,20in Monitor,1,109.99,02/10/19 23:03,"69 Walnut St, Portland, OR 97035" +162308,Google Phone,1,600,02/01/19 11:06,"4 Hill St, Atlanta, GA 30301" +162308,USB-C Charging Cable,1,11.95,02/01/19 11:06,"4 Hill St, Atlanta, GA 30301" +162308,Bose SoundSport Headphones,1,99.99,02/01/19 11:06,"4 Hill St, Atlanta, GA 30301" +162309,27in FHD Monitor,1,149.99,02/15/19 19:06,"47 Spruce St, Atlanta, GA 30301" +162310,Google Phone,1,600,02/04/19 15:58,"442 Hickory St, Atlanta, GA 30301" +162311,ThinkPad Laptop,1,999.99,02/07/19 18:35,"40 4th St, Boston, MA 02215" +162312,Google Phone,1,600,02/22/19 06:16,"717 10th St, Los Angeles, CA 90001" +162312,Wired Headphones,1,11.99,02/22/19 06:16,"717 10th St, Los Angeles, CA 90001" +162312,Lightning Charging Cable,1,14.95,02/22/19 06:16,"717 10th St, Los Angeles, CA 90001" +162313,USB-C Charging Cable,1,11.95,02/21/19 08:02,"679 Elm St, Los Angeles, CA 90001" +162314,AA Batteries (4-pack),4,3.84,02/14/19 10:30,"93 Jefferson St, San Francisco, CA 94016" +162315,iPhone,1,700,02/07/19 18:28,"493 Highland St, San Francisco, CA 94016" +162316,Flatscreen TV,1,300,02/10/19 13:11,"625 Dogwood St, Los Angeles, CA 90001" +162317,Apple Airpods Headphones,1,150,02/02/19 11:55,"533 Cedar St, San Francisco, CA 94016" +162318,Vareebadd Phone,1,400,02/25/19 21:35,"313 Dogwood St, Portland, ME 04101" +162318,AAA Batteries (4-pack),1,2.99,02/25/19 21:35,"313 Dogwood St, Portland, ME 04101" +162319,Wired Headphones,1,11.99,02/19/19 17:39,"721 Church St, Seattle, WA 98101" +162320,Lightning Charging Cable,1,14.95,02/10/19 08:04,"186 Dogwood St, New York City, NY 10001" +162321,Macbook Pro Laptop,1,1700,02/01/19 14:00,"33 Wilson St, San Francisco, CA 94016" +162322,iPhone,1,700,02/25/19 13:24,"850 5th St, Los Angeles, CA 90001" +162323,Wired Headphones,1,11.99,02/28/19 16:45,"422 Lakeview St, Austin, TX 73301" +162324,Wired Headphones,1,11.99,02/14/19 00:11,"545 Walnut St, Portland, OR 97035" +162325,Wired Headphones,1,11.99,02/21/19 20:42,"510 Adams St, Austin, TX 73301" +162326,Wired Headphones,1,11.99,02/09/19 14:44,"790 Johnson St, San Francisco, CA 94016" +162327,Apple Airpods Headphones,1,150,02/17/19 16:15,"687 11th St, San Francisco, CA 94016" +162328,AAA Batteries (4-pack),2,2.99,02/04/19 17:30,"757 9th St, Los Angeles, CA 90001" +162329,Wired Headphones,1,11.99,02/25/19 11:38,"241 Wilson St, San Francisco, CA 94016" +162330,USB-C Charging Cable,2,11.95,02/21/19 12:53,"721 North St, Austin, TX 73301" +162331,34in Ultrawide Monitor,1,379.99,02/01/19 15:54,"345 Main St, Austin, TX 73301" +162332,USB-C Charging Cable,1,11.95,02/24/19 18:44,"432 Jackson St, Dallas, TX 75001" +162333,AA Batteries (4-pack),2,3.84,02/26/19 15:54,"371 North St, San Francisco, CA 94016" +162334,Wired Headphones,1,11.99,02/19/19 13:17,"286 Cedar St, Atlanta, GA 30301" +162335,Apple Airpods Headphones,1,150,02/15/19 18:52,"702 Hill St, Atlanta, GA 30301" +162336,Lightning Charging Cable,1,14.95,02/13/19 08:19,"520 Pine St, Seattle, WA 98101" +162337,AAA Batteries (4-pack),2,2.99,02/21/19 03:06,"766 Spruce St, Boston, MA 02215" +162338,AAA Batteries (4-pack),1,2.99,02/22/19 12:41,"423 Main St, San Francisco, CA 94016" +162339,iPhone,1,700,02/01/19 13:23,"131 10th St, Austin, TX 73301" +162339,Wired Headphones,1,11.99,02/01/19 13:23,"131 10th St, Austin, TX 73301" +162340,20in Monitor,1,109.99,02/02/19 17:00,"32 Hill St, Boston, MA 02215" +162341,20in Monitor,1,109.99,02/16/19 08:29,"771 6th St, New York City, NY 10001" +162342,Bose SoundSport Headphones,1,99.99,02/24/19 19:41,"778 8th St, Seattle, WA 98101" +162343,Wired Headphones,1,11.99,02/07/19 09:42,"810 Jefferson St, Portland, OR 97035" +162344,Apple Airpods Headphones,1,150,02/26/19 17:22,"933 Ridge St, New York City, NY 10001" +162345,AAA Batteries (4-pack),1,2.99,02/13/19 14:44,"779 Spruce St, Seattle, WA 98101" +162346,Lightning Charging Cable,1,14.95,02/09/19 19:30,"121 Sunset St, Los Angeles, CA 90001" +162347,Wired Headphones,1,11.99,02/14/19 23:06,"43 2nd St, Portland, OR 97035" +162348,AA Batteries (4-pack),1,3.84,02/14/19 13:42,"599 Walnut St, Los Angeles, CA 90001" +162349,Flatscreen TV,1,300,02/24/19 17:07,"702 Johnson St, Seattle, WA 98101" +162350,Bose SoundSport Headphones,1,99.99,02/20/19 14:38,"293 Park St, Portland, OR 97035" +162351,34in Ultrawide Monitor,1,379.99,02/22/19 21:56,"461 Lincoln St, Portland, OR 97035" +162352,Wired Headphones,1,11.99,02/23/19 19:46,"766 Willow St, Los Angeles, CA 90001" +162353,20in Monitor,1,109.99,02/08/19 18:27,"301 Cedar St, Atlanta, GA 30301" +162354,Lightning Charging Cable,1,14.95,02/17/19 15:05,"662 14th St, San Francisco, CA 94016" +162355,USB-C Charging Cable,1,11.95,02/16/19 01:13,"380 11th St, Seattle, WA 98101" +162356,Bose SoundSport Headphones,1,99.99,02/05/19 21:01,"910 11th St, San Francisco, CA 94016" +162357,27in FHD Monitor,1,149.99,02/22/19 12:34,"887 Hill St, Los Angeles, CA 90001" +162358,Apple Airpods Headphones,1,150,02/16/19 09:35,"935 Elm St, Portland, OR 97035" +162359,AAA Batteries (4-pack),2,2.99,02/02/19 10:44,"254 Main St, Dallas, TX 75001" +162360,Wired Headphones,1,11.99,02/03/19 15:25,"493 Main St, New York City, NY 10001" +162361,AAA Batteries (4-pack),1,2.99,02/02/19 16:31,"762 7th St, Boston, MA 02215" +162362,iPhone,1,700,02/09/19 18:28,"447 6th St, New York City, NY 10001" +162363,AAA Batteries (4-pack),1,2.99,02/06/19 08:54,"165 Ridge St, Seattle, WA 98101" +162364,Google Phone,1,600,02/18/19 21:59,"345 Lake St, New York City, NY 10001" +162365,Apple Airpods Headphones,1,150,02/12/19 11:14,"745 Jefferson St, New York City, NY 10001" +162366,27in FHD Monitor,1,149.99,02/07/19 18:30,"214 Johnson St, San Francisco, CA 94016" +162367,34in Ultrawide Monitor,1,379.99,02/08/19 18:06,"41 5th St, Austin, TX 73301" +162368,iPhone,1,700,02/28/19 20:32,"100 4th St, San Francisco, CA 94016" +162369,AA Batteries (4-pack),1,3.84,02/12/19 22:56,"54 Johnson St, New York City, NY 10001" +162370,AAA Batteries (4-pack),1,2.99,02/13/19 18:49,"581 North St, Los Angeles, CA 90001" +162371,Bose SoundSport Headphones,1,99.99,02/27/19 12:58,"172 5th St, Dallas, TX 75001" +162372,34in Ultrawide Monitor,1,379.99,02/28/19 16:17,"819 Spruce St, New York City, NY 10001" +162373,34in Ultrawide Monitor,1,379.99,02/06/19 08:28,"563 Adams St, New York City, NY 10001" +162374,20in Monitor,1,109.99,02/05/19 23:11,"427 Highland St, San Francisco, CA 94016" +162375,Macbook Pro Laptop,1,1700,02/21/19 14:24,"917 13th St, Portland, OR 97035" +162376,AA Batteries (4-pack),1,3.84,02/09/19 14:04,"454 Spruce St, Los Angeles, CA 90001" +162377,AA Batteries (4-pack),2,3.84,02/28/19 13:36,"785 11th St, New York City, NY 10001" +162378,USB-C Charging Cable,1,11.95,02/25/19 16:04,"229 Park St, Portland, OR 97035" +162379,Apple Airpods Headphones,1,150,02/20/19 17:09,"454 1st St, San Francisco, CA 94016" +162380,Bose SoundSport Headphones,1,99.99,02/13/19 12:19,"919 Meadow St, San Francisco, CA 94016" +162381,AA Batteries (4-pack),2,3.84,02/06/19 06:55,"773 Adams St, Los Angeles, CA 90001" +162382,USB-C Charging Cable,1,11.95,02/03/19 14:14,"450 Lakeview St, Seattle, WA 98101" +162383,Lightning Charging Cable,2,14.95,02/21/19 02:47,"392 10th St, San Francisco, CA 94016" +162384,Bose SoundSport Headphones,1,99.99,02/03/19 07:43,"873 1st St, New York City, NY 10001" +162385,Macbook Pro Laptop,1,1700,02/18/19 22:25,"11 Sunset St, Portland, OR 97035" +162386,Wired Headphones,2,11.99,02/03/19 23:27,"819 River St, New York City, NY 10001" +162387,Wired Headphones,1,11.99,02/28/19 17:11,"147 7th St, San Francisco, CA 94016" +162388,USB-C Charging Cable,1,11.95,02/25/19 04:04,"146 9th St, Atlanta, GA 30301" +162389,Bose SoundSport Headphones,1,99.99,02/09/19 13:08,"960 1st St, Portland, OR 97035" +162390,27in 4K Gaming Monitor,1,389.99,02/07/19 04:05,"843 Center St, Boston, MA 02215" +162391,Macbook Pro Laptop,1,1700,02/21/19 06:20,"503 Park St, Los Angeles, CA 90001" +162392,AA Batteries (4-pack),1,3.84,02/11/19 20:00,"448 4th St, Los Angeles, CA 90001" +162393,Bose SoundSport Headphones,1,99.99,02/11/19 15:59,"209 12th St, Boston, MA 02215" +162394,Lightning Charging Cable,1,14.95,02/14/19 09:45,"944 14th St, San Francisco, CA 94016" +162395,iPhone,1,700,02/20/19 22:26,"602 Madison St, Los Angeles, CA 90001" +162396,27in 4K Gaming Monitor,1,389.99,02/04/19 09:01,"781 River St, New York City, NY 10001" +162397,27in FHD Monitor,1,149.99,02/27/19 19:29,"504 West St, Boston, MA 02215" +162398,USB-C Charging Cable,1,11.95,02/23/19 10:47,"417 West St, Seattle, WA 98101" +162399,USB-C Charging Cable,1,11.95,02/17/19 08:17,"737 9th St, Los Angeles, CA 90001" +162400,Apple Airpods Headphones,1,150,02/20/19 17:25,"558 7th St, Los Angeles, CA 90001" +162401,27in FHD Monitor,1,149.99,02/05/19 16:39,"220 Johnson St, Los Angeles, CA 90001" +162402,AAA Batteries (4-pack),1,2.99,02/14/19 19:00,"554 Walnut St, Boston, MA 02215" +162403,AA Batteries (4-pack),2,3.84,02/15/19 16:23,"739 Jackson St, Portland, ME 04101" +162404,Wired Headphones,1,11.99,02/16/19 17:29,"932 Chestnut St, Austin, TX 73301" +162405,AA Batteries (4-pack),1,3.84,02/28/19 12:16,"568 Wilson St, New York City, NY 10001" +162406,AA Batteries (4-pack),5,3.84,02/26/19 13:50,"782 Forest St, Boston, MA 02215" +162407,27in 4K Gaming Monitor,1,389.99,02/07/19 10:07,"25 Adams St, Los Angeles, CA 90001" +162408,AAA Batteries (4-pack),1,2.99,02/02/19 16:35,"575 Dogwood St, New York City, NY 10001" +162409,AAA Batteries (4-pack),2,2.99,02/06/19 12:04,"69 12th St, Boston, MA 02215" +162410,Macbook Pro Laptop,1,1700,02/22/19 20:30,"347 Meadow St, Los Angeles, CA 90001" +162411,Bose SoundSport Headphones,1,99.99,02/08/19 21:39,"334 6th St, New York City, NY 10001" +162412,Wired Headphones,1,11.99,02/06/19 23:48,"23 6th St, San Francisco, CA 94016" +162413,AAA Batteries (4-pack),1,2.99,02/27/19 11:21,"391 Forest St, Austin, TX 73301" +162414,Lightning Charging Cable,1,14.95,02/13/19 23:48,"734 River St, Los Angeles, CA 90001" +162415,Bose SoundSport Headphones,1,99.99,02/23/19 21:33,"138 Cherry St, Boston, MA 02215" +162416,27in FHD Monitor,1,149.99,02/26/19 17:30,"846 9th St, Dallas, TX 75001" +162417,Lightning Charging Cable,1,14.95,02/08/19 22:54,"750 Washington St, San Francisco, CA 94016" +162418,Macbook Pro Laptop,1,1700,02/27/19 19:47,"408 11th St, Portland, OR 97035" +162419,USB-C Charging Cable,1,11.95,02/25/19 23:31,"127 6th St, Portland, ME 04101" +162420,AA Batteries (4-pack),2,3.84,02/11/19 11:30,"440 River St, Los Angeles, CA 90001" +162421,USB-C Charging Cable,1,11.95,02/17/19 09:09,"643 Hill St, Los Angeles, CA 90001" +162422,27in FHD Monitor,1,149.99,02/14/19 16:03,"295 Highland St, San Francisco, CA 94016" +162423,AAA Batteries (4-pack),1,2.99,02/12/19 21:50,"596 14th St, San Francisco, CA 94016" +162424,USB-C Charging Cable,1,11.95,02/25/19 16:09,"526 5th St, Los Angeles, CA 90001" +162425,27in 4K Gaming Monitor,1,389.99,02/08/19 18:03,"287 Park St, San Francisco, CA 94016" +162426,USB-C Charging Cable,2,11.95,02/14/19 17:44,"943 Jefferson St, San Francisco, CA 94016" +162427,20in Monitor,1,109.99,02/13/19 12:58,"940 Johnson St, New York City, NY 10001" +162428,Wired Headphones,1,11.99,02/12/19 19:51,"64 Ridge St, Los Angeles, CA 90001" +162429,Google Phone,1,600,02/17/19 14:43,"887 Highland St, Dallas, TX 75001" +162430,USB-C Charging Cable,1,11.95,02/10/19 13:59,"909 River St, Portland, OR 97035" +162431,Wired Headphones,1,11.99,02/23/19 16:38,"286 Adams St, Austin, TX 73301" +162432,Macbook Pro Laptop,1,1700,02/28/19 17:02,"701 Lincoln St, Los Angeles, CA 90001" +162433,Lightning Charging Cable,1,14.95,02/16/19 09:28,"908 Lakeview St, Portland, ME 04101" +162434,USB-C Charging Cable,1,11.95,02/07/19 16:32,"147 4th St, San Francisco, CA 94016" +162435,Apple Airpods Headphones,1,150,02/03/19 09:26,"597 Dogwood St, San Francisco, CA 94016" +162436,Lightning Charging Cable,1,14.95,02/24/19 16:59,"822 South St, Los Angeles, CA 90001" +162437,AAA Batteries (4-pack),2,2.99,02/26/19 12:27,"993 1st St, New York City, NY 10001" +162438,LG Washing Machine,1,600.0,02/20/19 22:30,"946 11th St, Portland, OR 97035" +162439,27in FHD Monitor,1,149.99,02/21/19 10:54,"976 9th St, New York City, NY 10001" +162440,Wired Headphones,1,11.99,02/14/19 23:13,"168 Lincoln St, San Francisco, CA 94016" +162441,Lightning Charging Cable,1,14.95,02/01/19 11:04,"645 Jackson St, New York City, NY 10001" +162442,Apple Airpods Headphones,1,150,02/03/19 11:57,"242 Dogwood St, Dallas, TX 75001" +162443,Flatscreen TV,1,300,02/22/19 15:42,"332 7th St, Seattle, WA 98101" +162444,Apple Airpods Headphones,1,150,02/22/19 13:34,"189 13th St, San Francisco, CA 94016" +162444,AA Batteries (4-pack),1,3.84,02/22/19 13:34,"189 13th St, San Francisco, CA 94016" +162445,Wired Headphones,1,11.99,02/26/19 13:50,"666 Lake St, San Francisco, CA 94016" +162446,AAA Batteries (4-pack),2,2.99,02/07/19 00:36,"158 5th St, Boston, MA 02215" +162447,AA Batteries (4-pack),1,3.84,02/22/19 01:07,"195 Adams St, San Francisco, CA 94016" +162448,USB-C Charging Cable,1,11.95,02/27/19 12:27,"873 13th St, Seattle, WA 98101" +162449,Lightning Charging Cable,1,14.95,02/20/19 11:15,"408 1st St, San Francisco, CA 94016" +162450,Lightning Charging Cable,1,14.95,02/20/19 15:36,"189 North St, New York City, NY 10001" +162451,Wired Headphones,1,11.99,02/18/19 17:55,"457 14th St, San Francisco, CA 94016" +162452,Wired Headphones,1,11.99,02/21/19 20:08,"351 South St, Atlanta, GA 30301" +162453,27in 4K Gaming Monitor,1,389.99,02/19/19 01:31,"333 Sunset St, Los Angeles, CA 90001" +162454,Wired Headphones,1,11.99,02/26/19 11:41,"629 13th St, Los Angeles, CA 90001" +162455,Wired Headphones,1,11.99,02/19/19 22:39,"756 Highland St, San Francisco, CA 94016" +162456,Google Phone,1,600,02/12/19 12:03,"766 Sunset St, San Francisco, CA 94016" +162457,Wired Headphones,1,11.99,02/14/19 06:34,"477 11th St, Boston, MA 02215" +162458,AA Batteries (4-pack),1,3.84,02/07/19 16:24,"90 West St, Dallas, TX 75001" +162459,Apple Airpods Headphones,1,150,02/20/19 19:22,"824 Lakeview St, Seattle, WA 98101" +162460,AA Batteries (4-pack),3,3.84,02/27/19 17:49,"920 11th St, Los Angeles, CA 90001" +162461,Lightning Charging Cable,1,14.95,02/16/19 09:32,"123 Hill St, Seattle, WA 98101" +162462,Lightning Charging Cable,1,14.95,02/07/19 15:49,"128 Cedar St, New York City, NY 10001" +162463,AA Batteries (4-pack),1,3.84,02/06/19 09:38,"863 Highland St, Boston, MA 02215" +162464,Vareebadd Phone,1,400,02/08/19 15:45,"423 West St, Austin, TX 73301" +162465,Bose SoundSport Headphones,1,99.99,02/20/19 21:56,"772 4th St, Los Angeles, CA 90001" +162466,AAA Batteries (4-pack),1,2.99,02/01/19 10:30,"69 1st St, New York City, NY 10001" +162467,Wired Headphones,1,11.99,02/02/19 17:27,"767 Hickory St, Atlanta, GA 30301" +162468,AA Batteries (4-pack),1,3.84,02/07/19 11:33,"746 2nd St, Seattle, WA 98101" +162469,Wired Headphones,2,11.99,02/14/19 21:33,"727 Meadow St, Los Angeles, CA 90001" +162470,27in FHD Monitor,1,149.99,02/12/19 18:08,"639 North St, San Francisco, CA 94016" +162471,AA Batteries (4-pack),1,3.84,02/22/19 00:54,"969 Madison St, San Francisco, CA 94016" +162472,AA Batteries (4-pack),5,3.84,02/18/19 17:29,"709 Sunset St, New York City, NY 10001" +162473,iPhone,1,700,02/01/19 12:43,"530 Lake St, San Francisco, CA 94016" +162474,Flatscreen TV,1,300,02/05/19 13:19,"719 Highland St, Los Angeles, CA 90001" +162475,Google Phone,1,600,02/23/19 00:12,"135 Hickory St, Atlanta, GA 30301" +162476,USB-C Charging Cable,2,11.95,02/10/19 00:31,"360 Highland St, Seattle, WA 98101" +162477,Lightning Charging Cable,1,14.95,02/17/19 21:13,"917 Chestnut St, Boston, MA 02215" +162478,USB-C Charging Cable,1,11.95,02/05/19 11:09,"312 2nd St, Seattle, WA 98101" +162479,27in FHD Monitor,1,149.99,02/16/19 16:38,"980 7th St, San Francisco, CA 94016" +162480,Lightning Charging Cable,1,14.95,02/01/19 12:51,"403 Maple St, Los Angeles, CA 90001" +162481,AA Batteries (4-pack),1,3.84,02/02/19 22:06,"772 Ridge St, Boston, MA 02215" +162482,ThinkPad Laptop,1,999.99,02/07/19 14:12,"909 Maple St, Dallas, TX 75001" +162483,Bose SoundSport Headphones,1,99.99,02/12/19 14:16,"875 Ridge St, Portland, OR 97035" +162484,Wired Headphones,1,11.99,02/27/19 22:16,"123 Elm St, Portland, OR 97035" +162485,Wired Headphones,1,11.99,02/18/19 00:35,"436 2nd St, San Francisco, CA 94016" +162486,AAA Batteries (4-pack),2,2.99,02/14/19 23:18,"246 Washington St, Los Angeles, CA 90001" +162487,iPhone,1,700,02/13/19 22:33,"717 Main St, San Francisco, CA 94016" +162487,Lightning Charging Cable,1,14.95,02/13/19 22:33,"717 Main St, San Francisco, CA 94016" +162488,Lightning Charging Cable,1,14.95,02/03/19 00:20,"945 Walnut St, New York City, NY 10001" +162489,20in Monitor,1,109.99,02/10/19 09:10,"555 Cedar St, San Francisco, CA 94016" +162490,Wired Headphones,1,11.99,02/26/19 07:08,"878 South St, Los Angeles, CA 90001" +162491,Wired Headphones,1,11.99,02/15/19 10:13,"618 Spruce St, Los Angeles, CA 90001" +162492,Wired Headphones,1,11.99,02/09/19 07:52,"62 Willow St, Portland, ME 04101" +162493,AAA Batteries (4-pack),1,2.99,02/27/19 05:29,"844 Cedar St, Atlanta, GA 30301" +162494,Lightning Charging Cable,2,14.95,02/20/19 10:23,"458 4th St, Portland, OR 97035" +162495,Bose SoundSport Headphones,1,99.99,02/26/19 22:02,"667 Lake St, Atlanta, GA 30301" +162496,Wired Headphones,1,11.99,02/03/19 20:00,"612 Johnson St, San Francisco, CA 94016" +162497,AA Batteries (4-pack),1,3.84,02/23/19 21:22,"905 Highland St, New York City, NY 10001" +162498,Apple Airpods Headphones,1,150,02/06/19 12:27,"315 Madison St, San Francisco, CA 94016" +162498,Bose SoundSport Headphones,1,99.99,02/06/19 12:27,"315 Madison St, San Francisco, CA 94016" +162499,20in Monitor,1,109.99,02/14/19 03:12,"818 West St, New York City, NY 10001" +162500,USB-C Charging Cable,2,11.95,02/06/19 15:58,"606 8th St, Dallas, TX 75001" +162501,Lightning Charging Cable,1,14.95,02/05/19 13:56,"528 West St, Atlanta, GA 30301" +162502,Wired Headphones,1,11.99,02/27/19 20:42,"712 Hickory St, Boston, MA 02215" +162503,Google Phone,1,600,02/06/19 12:09,"738 Hickory St, Boston, MA 02215" +162504,Apple Airpods Headphones,1,150,02/15/19 14:37,"957 Jackson St, New York City, NY 10001" +162505,AA Batteries (4-pack),1,3.84,02/19/19 06:22,"766 Dogwood St, Portland, OR 97035" +162506,Vareebadd Phone,1,400,02/07/19 15:26,"353 6th St, Los Angeles, CA 90001" +162507,Google Phone,1,600,02/22/19 16:32,"758 Pine St, New York City, NY 10001" +162507,USB-C Charging Cable,1,11.95,02/22/19 16:32,"758 Pine St, New York City, NY 10001" +162508,Wired Headphones,1,11.99,02/02/19 16:34,"474 Hill St, New York City, NY 10001" +162509,Lightning Charging Cable,1,14.95,02/02/19 18:49,"973 Chestnut St, Boston, MA 02215" +162510,USB-C Charging Cable,2,11.95,02/15/19 21:18,"626 10th St, New York City, NY 10001" +162511,Apple Airpods Headphones,1,150,02/22/19 18:51,"241 Pine St, Dallas, TX 75001" +,,,,, +162512,Macbook Pro Laptop,1,1700,02/20/19 20:33,"50 Hill St, New York City, NY 10001" +162513,AA Batteries (4-pack),1,3.84,02/08/19 11:40,"645 Lake St, San Francisco, CA 94016" +162514,Apple Airpods Headphones,1,150,02/18/19 13:41,"517 Jackson St, Boston, MA 02215" +162515,USB-C Charging Cable,1,11.95,02/10/19 11:03,"5 Maple St, Atlanta, GA 30301" +162516,USB-C Charging Cable,1,11.95,02/22/19 08:46,"127 Ridge St, San Francisco, CA 94016" +162517,Lightning Charging Cable,1,14.95,02/15/19 16:51,"795 Highland St, San Francisco, CA 94016" +162518,Flatscreen TV,1,300,02/05/19 10:16,"752 North St, Dallas, TX 75001" +162519,AA Batteries (4-pack),1,3.84,02/05/19 07:40,"978 Willow St, San Francisco, CA 94016" +162520,USB-C Charging Cable,1,11.95,02/12/19 11:12,"218 Sunset St, Dallas, TX 75001" +162521,AAA Batteries (4-pack),2,2.99,02/10/19 13:19,"957 Jackson St, Atlanta, GA 30301" +162522,Bose SoundSport Headphones,1,99.99,02/28/19 09:35,"479 11th St, San Francisco, CA 94016" +162523,Bose SoundSport Headphones,1,99.99,02/09/19 11:38,"803 Forest St, Los Angeles, CA 90001" +162524,34in Ultrawide Monitor,2,379.99,02/08/19 15:42,"143 Johnson St, Los Angeles, CA 90001" +162525,AA Batteries (4-pack),1,3.84,02/07/19 21:47,"891 Meadow St, San Francisco, CA 94016" +162526,USB-C Charging Cable,1,11.95,02/16/19 00:16,"685 Pine St, Boston, MA 02215" +162527,27in FHD Monitor,1,149.99,02/19/19 20:52,"729 Forest St, Los Angeles, CA 90001" +162528,Apple Airpods Headphones,1,150,02/09/19 16:25,"795 14th St, Portland, OR 97035" +162529,AA Batteries (4-pack),1,3.84,02/01/19 13:38,"490 Johnson St, Boston, MA 02215" +162530,AA Batteries (4-pack),1,3.84,02/01/19 08:42,"763 6th St, Boston, MA 02215" +162530,27in FHD Monitor,1,149.99,02/01/19 08:42,"763 6th St, Boston, MA 02215" +162531,Flatscreen TV,1,300,02/27/19 19:22,"714 Willow St, San Francisco, CA 94016" +162532,Apple Airpods Headphones,1,150,02/22/19 00:36,"659 Wilson St, New York City, NY 10001" +162533,Wired Headphones,1,11.99,02/21/19 11:45,"730 Pine St, San Francisco, CA 94016" +162534,AAA Batteries (4-pack),2,2.99,02/23/19 05:24,"934 Spruce St, Austin, TX 73301" +162535,AAA Batteries (4-pack),1,2.99,02/03/19 03:21,"215 Hill St, Austin, TX 73301" +162536,Lightning Charging Cable,1,14.95,02/11/19 13:40,"984 West St, Los Angeles, CA 90001" +162537,AAA Batteries (4-pack),3,2.99,02/09/19 09:26,"991 Pine St, San Francisco, CA 94016" +162538,Macbook Pro Laptop,1,1700,02/01/19 08:08,"707 Meadow St, Boston, MA 02215" +162539,Flatscreen TV,1,300,02/22/19 15:25,"290 6th St, Austin, TX 73301" +162540,Google Phone,1,600,02/10/19 10:26,"555 Park St, Boston, MA 02215" +162541,Bose SoundSport Headphones,1,99.99,02/20/19 17:20,"634 6th St, Los Angeles, CA 90001" +162542,Flatscreen TV,1,300,02/11/19 17:57,"535 Adams St, Portland, OR 97035" +162543,Apple Airpods Headphones,1,150,02/08/19 07:30,"510 8th St, San Francisco, CA 94016" +162544,USB-C Charging Cable,1,11.95,02/10/19 17:11,"306 1st St, Boston, MA 02215" +162545,USB-C Charging Cable,1,11.95,02/12/19 18:43,"560 Madison St, New York City, NY 10001" +162546,27in FHD Monitor,1,149.99,02/08/19 17:34,"409 Lakeview St, New York City, NY 10001" +162547,AA Batteries (4-pack),1,3.84,02/28/19 14:04,"729 Adams St, Atlanta, GA 30301" +162548,27in 4K Gaming Monitor,1,389.99,02/19/19 20:38,"926 Dogwood St, New York City, NY 10001" +162549,Wired Headphones,1,11.99,02/07/19 20:17,"368 Hill St, San Francisco, CA 94016" +162550,iPhone,1,700,02/22/19 21:49,"970 12th St, New York City, NY 10001" +162551,Wired Headphones,1,11.99,02/10/19 10:30,"613 9th St, Los Angeles, CA 90001" +162552,Apple Airpods Headphones,1,150,02/25/19 10:57,"287 Main St, Atlanta, GA 30301" +162553,Google Phone,1,600,02/09/19 12:41,"222 Forest St, Portland, OR 97035" +162554,Apple Airpods Headphones,1,150,02/27/19 07:25,"963 Lake St, Austin, TX 73301" +162555,Lightning Charging Cable,1,14.95,02/11/19 16:46,"183 Lake St, Atlanta, GA 30301" +162556,34in Ultrawide Monitor,1,379.99,02/16/19 17:56,"196 14th St, Atlanta, GA 30301" +162557,Google Phone,1,600,02/23/19 16:11,"654 Park St, Austin, TX 73301" +162558,Bose SoundSport Headphones,1,99.99,02/26/19 21:03,"124 10th St, San Francisco, CA 94016" +162559,USB-C Charging Cable,1,11.95,02/27/19 21:18,"536 5th St, Austin, TX 73301" +162560,Google Phone,1,600,02/16/19 23:13,"352 West St, Austin, TX 73301" +162561,Apple Airpods Headphones,1,150,02/02/19 05:57,"401 Church St, New York City, NY 10001" +162562,AAA Batteries (4-pack),1,2.99,02/05/19 08:11,"251 South St, Los Angeles, CA 90001" +162563,Wired Headphones,1,11.99,02/01/19 15:11,"774 Sunset St, Portland, OR 97035" +162564,Lightning Charging Cable,2,14.95,02/14/19 23:03,"174 12th St, New York City, NY 10001" +162565,USB-C Charging Cable,1,11.95,02/11/19 10:55,"100 Willow St, Portland, OR 97035" +162566,AA Batteries (4-pack),1,3.84,02/15/19 00:12,"4 Washington St, San Francisco, CA 94016" +162567,USB-C Charging Cable,1,11.95,02/23/19 07:52,"452 Main St, Los Angeles, CA 90001" +162568,Lightning Charging Cable,1,14.95,02/06/19 19:14,"820 Dogwood St, San Francisco, CA 94016" +162569,Lightning Charging Cable,1,14.95,02/12/19 19:28,"471 14th St, Los Angeles, CA 90001" +162570,Google Phone,1,600,02/22/19 16:51,"323 Lincoln St, Los Angeles, CA 90001" +162570,USB-C Charging Cable,1,11.95,02/22/19 16:51,"323 Lincoln St, Los Angeles, CA 90001" +162571,USB-C Charging Cable,1,11.95,02/14/19 23:55,"113 2nd St, San Francisco, CA 94016" +162572,20in Monitor,1,109.99,02/10/19 16:14,"219 6th St, Los Angeles, CA 90001" +162573,20in Monitor,1,109.99,02/10/19 11:10,"884 14th St, Los Angeles, CA 90001" +162574,Apple Airpods Headphones,1,150,02/27/19 08:29,"71 Lincoln St, Seattle, WA 98101" +162575,USB-C Charging Cable,1,11.95,02/19/19 14:05,"590 9th St, Los Angeles, CA 90001" +162576,AAA Batteries (4-pack),1,2.99,02/19/19 21:32,"467 7th St, New York City, NY 10001" +162577,Wired Headphones,1,11.99,02/10/19 12:54,"463 4th St, Dallas, TX 75001" +162578,Lightning Charging Cable,1,14.95,02/01/19 14:47,"160 Chestnut St, San Francisco, CA 94016" +162579,Google Phone,1,600,02/01/19 13:30,"978 2nd St, Seattle, WA 98101" +162580,USB-C Charging Cable,1,11.95,02/14/19 06:43,"397 Lincoln St, Dallas, TX 75001" +162581,Lightning Charging Cable,1,14.95,02/22/19 14:53,"486 South St, Austin, TX 73301" +162582,ThinkPad Laptop,1,999.99,02/01/19 13:56,"652 Johnson St, New York City, NY 10001" +162583,27in 4K Gaming Monitor,1,389.99,02/07/19 14:05,"196 4th St, San Francisco, CA 94016" +162584,Wired Headphones,1,11.99,02/28/19 18:48,"933 Washington St, Los Angeles, CA 90001" +162585,AA Batteries (4-pack),1,3.84,02/25/19 15:17,"498 Willow St, Seattle, WA 98101" +162586,AA Batteries (4-pack),1,3.84,02/22/19 12:29,"949 Washington St, Los Angeles, CA 90001" +162587,Google Phone,1,600,02/20/19 15:41,"984 Forest St, Los Angeles, CA 90001" +162588,Bose SoundSport Headphones,1,99.99,02/25/19 18:40,"124 Lakeview St, San Francisco, CA 94016" +162589,Lightning Charging Cable,1,14.95,02/09/19 14:11,"280 Hickory St, Los Angeles, CA 90001" +162590,AAA Batteries (4-pack),1,2.99,02/25/19 21:00,"491 Madison St, Boston, MA 02215" +162591,Wired Headphones,1,11.99,02/08/19 00:51,"967 North St, Seattle, WA 98101" +162592,AAA Batteries (4-pack),1,2.99,02/04/19 03:09,"405 Church St, San Francisco, CA 94016" +162593,AA Batteries (4-pack),3,3.84,02/11/19 12:59,"508 Sunset St, New York City, NY 10001" +162594,Wired Headphones,1,11.99,02/13/19 13:30,"208 Jackson St, Seattle, WA 98101" +162595,AA Batteries (4-pack),1,3.84,02/08/19 15:05,"657 Center St, San Francisco, CA 94016" +162596,Bose SoundSport Headphones,1,99.99,02/13/19 16:41,"16 West St, San Francisco, CA 94016" +162597,Lightning Charging Cable,1,14.95,02/12/19 17:59,"793 Willow St, Los Angeles, CA 90001" +162598,27in FHD Monitor,2,149.99,02/07/19 18:04,"490 Hickory St, Seattle, WA 98101" +162599,AA Batteries (4-pack),2,3.84,02/14/19 20:02,"322 Spruce St, Portland, OR 97035" +162600,AAA Batteries (4-pack),1,2.99,02/10/19 16:24,"203 Washington St, Atlanta, GA 30301" +162601,Bose SoundSport Headphones,1,99.99,02/24/19 09:01,"3 Lake St, San Francisco, CA 94016" +162602,USB-C Charging Cable,1,11.95,02/04/19 15:13,"276 12th St, San Francisco, CA 94016" +162603,Flatscreen TV,1,300,02/23/19 11:40,"596 1st St, San Francisco, CA 94016" +162604,AAA Batteries (4-pack),1,2.99,02/03/19 13:02,"838 Wilson St, San Francisco, CA 94016" +162605,AAA Batteries (4-pack),3,2.99,02/16/19 18:32,"616 Walnut St, New York City, NY 10001" +162606,ThinkPad Laptop,1,999.99,02/03/19 18:46,"566 8th St, Atlanta, GA 30301" +162607,Bose SoundSport Headphones,1,99.99,02/10/19 15:32,"236 Adams St, Portland, OR 97035" +162608,iPhone,1,700,02/25/19 18:06,"382 Jefferson St, Seattle, WA 98101" +162609,AA Batteries (4-pack),1,3.84,02/26/19 12:47,"572 Cedar St, Atlanta, GA 30301" +162610,AA Batteries (4-pack),1,3.84,02/13/19 17:56,"239 Walnut St, New York City, NY 10001" +162611,Google Phone,1,600,02/26/19 14:27,"613 Chestnut St, San Francisco, CA 94016" +162612,AAA Batteries (4-pack),1,2.99,02/11/19 19:16,"840 7th St, New York City, NY 10001" +162613,AAA Batteries (4-pack),4,2.99,02/20/19 18:10,"653 South St, Boston, MA 02215" +162614,AA Batteries (4-pack),1,3.84,02/01/19 23:14,"575 Dogwood St, New York City, NY 10001" +162615,Wired Headphones,1,11.99,02/10/19 10:13,"364 Forest St, Portland, OR 97035" +162616,Apple Airpods Headphones,1,150,02/15/19 21:23,"636 Walnut St, San Francisco, CA 94016" +162617,Wired Headphones,1,11.99,02/16/19 11:41,"495 Highland St, San Francisco, CA 94016" +162618,Wired Headphones,1,11.99,02/08/19 18:11,"497 8th St, Dallas, TX 75001" +162619,Apple Airpods Headphones,1,150,02/16/19 00:18,"414 Hill St, Dallas, TX 75001" +162620,AA Batteries (4-pack),3,3.84,02/27/19 02:06,"973 South St, Austin, TX 73301" +162620,Apple Airpods Headphones,1,150,02/27/19 02:06,"973 South St, Austin, TX 73301" +162621,Wired Headphones,1,11.99,02/11/19 01:57,"552 West St, Los Angeles, CA 90001" +162622,Lightning Charging Cable,1,14.95,02/07/19 11:08,"400 Walnut St, San Francisco, CA 94016" +162623,ThinkPad Laptop,1,999.99,02/11/19 12:08,"537 Church St, San Francisco, CA 94016" +162624,Lightning Charging Cable,1,14.95,02/10/19 07:07,"899 Walnut St, Atlanta, GA 30301" +162625,Apple Airpods Headphones,1,150,02/27/19 23:10,"354 Hill St, Boston, MA 02215" +162626,Wired Headphones,1,11.99,02/06/19 22:20,"631 Park St, Los Angeles, CA 90001" +162627,Macbook Pro Laptop,1,1700,02/18/19 16:26,"392 Dogwood St, New York City, NY 10001" +162628,Wired Headphones,1,11.99,02/13/19 14:28,"3 Meadow St, New York City, NY 10001" +162628,AAA Batteries (4-pack),2,2.99,02/13/19 14:28,"3 Meadow St, New York City, NY 10001" +162629,Bose SoundSport Headphones,1,99.99,02/10/19 12:25,"45 Main St, New York City, NY 10001" +162630,USB-C Charging Cable,1,11.95,02/13/19 05:53,"365 Jackson St, Los Angeles, CA 90001" +162631,iPhone,1,700,02/28/19 10:13,"549 Madison St, San Francisco, CA 94016" +162631,Wired Headphones,1,11.99,02/28/19 10:13,"549 Madison St, San Francisco, CA 94016" +162632,USB-C Charging Cable,1,11.95,02/15/19 13:30,"112 Maple St, Seattle, WA 98101" +162633,Lightning Charging Cable,1,14.95,02/25/19 18:32,"342 River St, Dallas, TX 75001" +162634,Google Phone,1,600,02/22/19 19:17,"855 14th St, Portland, ME 04101" +162635,AAA Batteries (4-pack),5,2.99,02/04/19 11:24,"962 Elm St, Boston, MA 02215" +162636,AAA Batteries (4-pack),2,2.99,02/20/19 12:57,"133 11th St, Portland, ME 04101" +162637,AA Batteries (4-pack),2,3.84,02/10/19 09:25,"27 13th St, Portland, ME 04101" +162638,AA Batteries (4-pack),1,3.84,02/15/19 18:48,"450 Lincoln St, Boston, MA 02215" +162639,LG Dryer,1,600.0,02/14/19 13:27,"182 Hill St, Los Angeles, CA 90001" +162640,Wired Headphones,1,11.99,02/22/19 15:09,"108 8th St, Seattle, WA 98101" +162641,AAA Batteries (4-pack),1,2.99,02/15/19 19:13,"830 Walnut St, San Francisco, CA 94016" +162642,Lightning Charging Cable,1,14.95,02/13/19 12:50,"481 Willow St, Boston, MA 02215" +162643,Google Phone,1,600,02/19/19 19:42,"418 Park St, Seattle, WA 98101" +162643,USB-C Charging Cable,1,11.95,02/19/19 19:42,"418 Park St, Seattle, WA 98101" +162644,27in FHD Monitor,1,149.99,02/01/19 23:35,"976 Dogwood St, San Francisco, CA 94016" +162645,Apple Airpods Headphones,1,150,02/10/19 13:24,"191 Lincoln St, Seattle, WA 98101" +162646,Apple Airpods Headphones,1,150,02/12/19 07:10,"367 7th St, Dallas, TX 75001" +162647,Lightning Charging Cable,1,14.95,02/08/19 21:01,"863 8th St, New York City, NY 10001" +162648,Lightning Charging Cable,1,14.95,02/09/19 12:19,"818 Park St, San Francisco, CA 94016" +162649,Google Phone,1,600,02/14/19 06:44,"931 12th St, Austin, TX 73301" +162650,27in 4K Gaming Monitor,1,389.99,02/09/19 22:04,"89 Spruce St, San Francisco, CA 94016" +162651,Bose SoundSport Headphones,1,99.99,02/17/19 09:50,"194 Cherry St, Portland, OR 97035" +162651,Flatscreen TV,1,300,02/17/19 09:50,"194 Cherry St, Portland, OR 97035" +162652,Vareebadd Phone,1,400,02/19/19 13:07,"573 Hickory St, San Francisco, CA 94016" +162653,AAA Batteries (4-pack),2,2.99,02/28/19 18:57,"798 Meadow St, Boston, MA 02215" +162654,AA Batteries (4-pack),1,3.84,02/26/19 10:38,"868 Madison St, Atlanta, GA 30301" +162655,Apple Airpods Headphones,2,150,02/22/19 00:51,"959 10th St, Dallas, TX 75001" +162656,Macbook Pro Laptop,1,1700,02/16/19 19:59,"625 Hill St, Dallas, TX 75001" +162657,27in FHD Monitor,1,149.99,02/23/19 12:26,"222 Ridge St, San Francisco, CA 94016" +162658,Lightning Charging Cable,1,14.95,02/09/19 17:21,"787 Meadow St, Portland, ME 04101" +162659,iPhone,1,700,02/14/19 16:25,"956 Sunset St, Los Angeles, CA 90001" +162660,Lightning Charging Cable,2,14.95,02/08/19 21:05,"980 Hickory St, Boston, MA 02215" +162661,Google Phone,1,600,02/13/19 14:19,"699 Main St, Dallas, TX 75001" +162662,Flatscreen TV,1,300,02/27/19 19:11,"998 Walnut St, New York City, NY 10001" +162663,AAA Batteries (4-pack),2,2.99,02/01/19 11:45,"280 9th St, New York City, NY 10001" +162664,27in FHD Monitor,1,149.99,02/06/19 23:29,"286 Hill St, Seattle, WA 98101" +162665,Macbook Pro Laptop,1,1700,02/22/19 16:25,"68 Ridge St, Austin, TX 73301" +162666,27in FHD Monitor,1,149.99,02/02/19 12:03,"747 Spruce St, Boston, MA 02215" +162667,Apple Airpods Headphones,1,150,02/20/19 21:44,"637 1st St, Boston, MA 02215" +162668,34in Ultrawide Monitor,1,379.99,02/20/19 08:23,"930 West St, Boston, MA 02215" +162669,Lightning Charging Cable,1,14.95,02/27/19 18:56,"383 Highland St, New York City, NY 10001" +162670,Macbook Pro Laptop,1,1700,02/10/19 19:27,"391 Spruce St, Atlanta, GA 30301" +162671,AA Batteries (4-pack),1,3.84,02/18/19 11:56,"493 Main St, New York City, NY 10001" +162672,Lightning Charging Cable,1,14.95,02/19/19 11:18,"374 Sunset St, Los Angeles, CA 90001" +162673,AAA Batteries (4-pack),1,2.99,02/10/19 10:21,"147 Forest St, Los Angeles, CA 90001" +162674,Apple Airpods Headphones,1,150,02/26/19 18:59,"438 Lincoln St, Atlanta, GA 30301" +162675,Google Phone,1,600,02/11/19 07:30,"741 13th St, Atlanta, GA 30301" +162676,Flatscreen TV,1,300,02/14/19 19:29,"234 Hill St, Boston, MA 02215" +162677,34in Ultrawide Monitor,1,379.99,02/27/19 11:07,"418 River St, Dallas, TX 75001" +162678,Apple Airpods Headphones,1,150,02/14/19 00:42,"438 South St, New York City, NY 10001" +162679,AAA Batteries (4-pack),1,2.99,02/16/19 15:18,"285 Hill St, Atlanta, GA 30301" +162680,Flatscreen TV,1,300,02/07/19 10:21,"564 Highland St, New York City, NY 10001" +162681,27in 4K Gaming Monitor,1,389.99,02/12/19 19:52,"973 Wilson St, Dallas, TX 75001" +162682,AAA Batteries (4-pack),1,2.99,02/15/19 08:19,"985 Maple St, Austin, TX 73301" +162683,AAA Batteries (4-pack),1,2.99,02/06/19 19:18,"686 Johnson St, Portland, OR 97035" +162684,27in 4K Gaming Monitor,1,389.99,02/15/19 12:52,"929 Willow St, San Francisco, CA 94016" +162685,AAA Batteries (4-pack),1,2.99,02/07/19 13:08,"477 Church St, San Francisco, CA 94016" +162685,AAA Batteries (4-pack),1,2.99,02/07/19 13:08,"477 Church St, San Francisco, CA 94016" +162686,Lightning Charging Cable,1,14.95,02/11/19 13:46,"919 7th St, San Francisco, CA 94016" +162687,34in Ultrawide Monitor,1,379.99,02/13/19 12:56,"696 14th St, Boston, MA 02215" +162688,Vareebadd Phone,1,400,02/11/19 16:03,"957 South St, San Francisco, CA 94016" +162689,34in Ultrawide Monitor,1,379.99,02/07/19 14:50,"604 14th St, New York City, NY 10001" +162690,Macbook Pro Laptop,1,1700,02/15/19 07:23,"742 2nd St, Los Angeles, CA 90001" +162691,USB-C Charging Cable,1,11.95,02/10/19 05:12,"802 4th St, Dallas, TX 75001" +162692,Google Phone,1,600,02/01/19 12:22,"487 Madison St, San Francisco, CA 94016" +162693,27in FHD Monitor,1,149.99,02/27/19 10:35,"160 Center St, Austin, TX 73301" +162694,Apple Airpods Headphones,1,150,02/01/19 20:42,"283 Madison St, Dallas, TX 75001" +162695,Lightning Charging Cable,2,14.95,02/10/19 00:28,"932 4th St, San Francisco, CA 94016" +162696,AA Batteries (4-pack),2,3.84,02/21/19 17:05,"417 Meadow St, San Francisco, CA 94016" +162697,Apple Airpods Headphones,1,150,02/20/19 11:37,"424 10th St, Los Angeles, CA 90001" +162698,Apple Airpods Headphones,1,150,02/04/19 16:23,"382 11th St, Seattle, WA 98101" +162699,AAA Batteries (4-pack),2,2.99,02/22/19 19:04,"855 Highland St, Seattle, WA 98101" +162700,27in 4K Gaming Monitor,1,389.99,02/11/19 19:27,"240 Lakeview St, New York City, NY 10001" +162701,Lightning Charging Cable,1,14.95,02/20/19 05:23,"189 11th St, San Francisco, CA 94016" +162702,27in FHD Monitor,1,149.99,02/05/19 13:41,"389 1st St, Dallas, TX 75001" +162703,iPhone,1,700,02/04/19 22:52,"257 Jackson St, Los Angeles, CA 90001" +162704,AAA Batteries (4-pack),1,2.99,02/14/19 13:49,"712 Madison St, Boston, MA 02215" +162705,AAA Batteries (4-pack),2,2.99,02/21/19 09:04,"736 Pine St, San Francisco, CA 94016" +162706,Wired Headphones,1,11.99,02/28/19 10:14,"140 10th St, Seattle, WA 98101" +162707,LG Washing Machine,1,600.0,02/18/19 20:35,"595 13th St, Austin, TX 73301" +162708,iPhone,1,700,02/20/19 19:31,"5 Washington St, San Francisco, CA 94016" +162709,AAA Batteries (4-pack),1,2.99,02/13/19 19:41,"432 Washington St, Los Angeles, CA 90001" +162710,USB-C Charging Cable,1,11.95,02/04/19 14:34,"487 10th St, San Francisco, CA 94016" +162711,Apple Airpods Headphones,1,150,02/20/19 16:27,"855 Hill St, New York City, NY 10001" +162712,Wired Headphones,1,11.99,02/11/19 19:02,"423 14th St, Austin, TX 73301" +162713,ThinkPad Laptop,1,999.99,02/02/19 13:00,"509 Lakeview St, Austin, TX 73301" +162714,34in Ultrawide Monitor,1,379.99,02/28/19 22:00,"684 Maple St, Dallas, TX 75001" +162715,Apple Airpods Headphones,1,150,02/07/19 19:25,"668 14th St, Seattle, WA 98101" +162716,Wired Headphones,1,11.99,02/23/19 16:39,"622 Elm St, Los Angeles, CA 90001" +162717,AA Batteries (4-pack),1,3.84,02/18/19 07:42,"118 Johnson St, New York City, NY 10001" +162718,Apple Airpods Headphones,1,150,02/27/19 20:36,"549 7th St, Los Angeles, CA 90001" +162719,Bose SoundSport Headphones,1,99.99,02/14/19 16:04,"436 12th St, Dallas, TX 75001" +162720,AAA Batteries (4-pack),1,2.99,02/14/19 11:24,"755 8th St, Atlanta, GA 30301" +162721,27in 4K Gaming Monitor,1,389.99,02/11/19 17:27,"903 North St, San Francisco, CA 94016" +162722,Vareebadd Phone,1,400,02/23/19 23:46,"386 Main St, Los Angeles, CA 90001" +162723,27in 4K Gaming Monitor,1,389.99,02/25/19 08:14,"950 Pine St, Los Angeles, CA 90001" +162724,ThinkPad Laptop,1,999.99,02/06/19 17:25,"161 Hickory St, Dallas, TX 75001" +162725,AAA Batteries (4-pack),2,2.99,02/09/19 16:24,"911 Washington St, Dallas, TX 75001" +162726,Wired Headphones,1,11.99,02/13/19 18:32,"305 South St, Austin, TX 73301" +162727,AA Batteries (4-pack),1,3.84,02/15/19 22:10,"471 14th St, Boston, MA 02215" +162728,Wired Headphones,1,11.99,02/01/19 21:37,"4 Church St, Boston, MA 02215" +162729,USB-C Charging Cable,1,11.95,02/13/19 16:50,"732 Walnut St, Dallas, TX 75001" +162730,AAA Batteries (4-pack),1,2.99,02/27/19 00:05,"823 Washington St, Seattle, WA 98101" +162731,Macbook Pro Laptop,1,1700,02/11/19 20:54,"489 Dogwood St, San Francisco, CA 94016" +162732,34in Ultrawide Monitor,1,379.99,02/12/19 08:46,"549 4th St, Los Angeles, CA 90001" +162733,Lightning Charging Cable,1,14.95,02/02/19 19:08,"218 7th St, Dallas, TX 75001" +162734,Bose SoundSport Headphones,1,99.99,02/07/19 13:01,"567 West St, San Francisco, CA 94016" +162735,USB-C Charging Cable,1,11.95,02/21/19 19:24,"391 Adams St, Boston, MA 02215" +162736,27in 4K Gaming Monitor,1,389.99,02/04/19 19:08,"50 12th St, Boston, MA 02215" +162737,Wired Headphones,2,11.99,02/19/19 12:58,"140 Meadow St, Atlanta, GA 30301" +162738,AAA Batteries (4-pack),4,2.99,02/23/19 20:34,"679 Park St, San Francisco, CA 94016" +162739,Lightning Charging Cable,1,14.95,02/15/19 14:49,"164 Maple St, Los Angeles, CA 90001" +162740,USB-C Charging Cable,1,11.95,02/16/19 09:24,"821 South St, Portland, OR 97035" +162741,Bose SoundSport Headphones,1,99.99,02/16/19 01:57,"653 West St, Atlanta, GA 30301" +162742,Wired Headphones,1,11.99,02/20/19 06:51,"704 Pine St, New York City, NY 10001" +162743,27in 4K Gaming Monitor,1,389.99,02/13/19 19:43,"780 11th St, Los Angeles, CA 90001" +162744,Bose SoundSport Headphones,1,99.99,02/22/19 00:30,"661 2nd St, San Francisco, CA 94016" +162745,Wired Headphones,1,11.99,02/20/19 17:11,"793 12th St, Los Angeles, CA 90001" +162746,20in Monitor,1,109.99,02/19/19 00:06,"900 Meadow St, San Francisco, CA 94016" +162747,AAA Batteries (4-pack),1,2.99,02/15/19 03:24,"940 Washington St, Portland, OR 97035" +162748,AAA Batteries (4-pack),1,2.99,02/27/19 21:09,"116 River St, New York City, NY 10001" +162749,Wired Headphones,1,11.99,02/08/19 19:24,"766 12th St, Dallas, TX 75001" +162750,Wired Headphones,1,11.99,02/13/19 07:42,"585 Willow St, Atlanta, GA 30301" +162751,USB-C Charging Cable,1,11.95,02/11/19 22:05,"711 1st St, Portland, OR 97035" +162752,AAA Batteries (4-pack),1,2.99,02/27/19 15:28,"393 Jackson St, San Francisco, CA 94016" +162753,Lightning Charging Cable,1,14.95,02/17/19 17:42,"573 Lakeview St, Los Angeles, CA 90001" +162754,AA Batteries (4-pack),1,3.84,02/12/19 11:56,"517 Jackson St, Austin, TX 73301" +162755,USB-C Charging Cable,1,11.95,02/27/19 10:56,"622 5th St, Austin, TX 73301" +162756,USB-C Charging Cable,1,11.95,02/10/19 12:46,"707 Church St, Seattle, WA 98101" +162757,Macbook Pro Laptop,1,1700,02/24/19 17:27,"48 Johnson St, Boston, MA 02215" +162758,USB-C Charging Cable,1,11.95,02/13/19 21:35,"863 Maple St, San Francisco, CA 94016" +162759,AAA Batteries (4-pack),3,2.99,02/23/19 19:44,"195 Ridge St, New York City, NY 10001" +162760,USB-C Charging Cable,2,11.95,02/03/19 11:57,"718 South St, Los Angeles, CA 90001" +162761,Lightning Charging Cable,1,14.95,02/18/19 00:36,"538 Walnut St, Dallas, TX 75001" +162762,AAA Batteries (4-pack),2,2.99,02/04/19 12:15,"532 Hill St, Atlanta, GA 30301" +162763,Flatscreen TV,1,300,02/26/19 05:50,"916 Pine St, New York City, NY 10001" +162764,27in FHD Monitor,1,149.99,02/28/19 12:46,"235 Pine St, Atlanta, GA 30301" +162765,Google Phone,1,600,02/28/19 13:19,"21 Cherry St, New York City, NY 10001" +162765,Bose SoundSport Headphones,1,99.99,02/28/19 13:19,"21 Cherry St, New York City, NY 10001" +162766,USB-C Charging Cable,1,11.95,02/05/19 10:47,"295 1st St, San Francisco, CA 94016" +162767,Bose SoundSport Headphones,1,99.99,02/08/19 21:40,"270 Sunset St, Boston, MA 02215" +162768,Lightning Charging Cable,1,14.95,02/26/19 13:04,"769 Jackson St, San Francisco, CA 94016" +162769,Flatscreen TV,1,300,02/06/19 00:51,"649 South St, Los Angeles, CA 90001" +162770,USB-C Charging Cable,1,11.95,02/11/19 16:42,"973 7th St, New York City, NY 10001" +162771,Apple Airpods Headphones,1,150,02/24/19 08:41,"518 Johnson St, Seattle, WA 98101" +162772,34in Ultrawide Monitor,1,379.99,02/05/19 20:15,"919 Park St, Atlanta, GA 30301" +162772,Wired Headphones,1,11.99,02/05/19 20:15,"919 Park St, Atlanta, GA 30301" +162773,AAA Batteries (4-pack),2,2.99,02/01/19 12:24,"85 Lakeview St, Dallas, TX 75001" +162774,USB-C Charging Cable,1,11.95,02/08/19 08:59,"689 Madison St, San Francisco, CA 94016" +162774,Lightning Charging Cable,2,14.95,02/08/19 08:59,"689 Madison St, San Francisco, CA 94016" +162775,AA Batteries (4-pack),1,3.84,02/20/19 12:35,"490 Lake St, New York City, NY 10001" +162776,Wired Headphones,1,11.99,02/10/19 19:37,"80 Highland St, San Francisco, CA 94016" +162777,USB-C Charging Cable,1,11.95,02/28/19 14:46,"297 Lake St, New York City, NY 10001" +162778,iPhone,1,700,02/14/19 19:15,"867 6th St, New York City, NY 10001" +162779,Apple Airpods Headphones,1,150,02/08/19 11:47,"508 South St, New York City, NY 10001" +162780,USB-C Charging Cable,1,11.95,02/07/19 18:47,"838 Center St, Los Angeles, CA 90001" +162781,34in Ultrawide Monitor,1,379.99,02/21/19 22:40,"105 Washington St, New York City, NY 10001" +162782,Wired Headphones,1,11.99,02/02/19 09:03,"973 Jefferson St, New York City, NY 10001" +162783,AAA Batteries (4-pack),2,2.99,02/15/19 20:42,"336 2nd St, Dallas, TX 75001" +162784,USB-C Charging Cable,1,11.95,02/06/19 19:50,"250 Pine St, Los Angeles, CA 90001" +162785,USB-C Charging Cable,1,11.95,02/08/19 09:08,"746 Pine St, San Francisco, CA 94016" +162786,27in 4K Gaming Monitor,1,389.99,02/08/19 12:06,"233 Jackson St, Los Angeles, CA 90001" +162787,Lightning Charging Cable,1,14.95,02/27/19 12:27,"230 13th St, Atlanta, GA 30301" +162788,USB-C Charging Cable,1,11.95,02/23/19 11:26,"151 Walnut St, Boston, MA 02215" +162789,20in Monitor,1,109.99,02/18/19 13:27,"198 Center St, New York City, NY 10001" +162790,Flatscreen TV,1,300,02/05/19 18:11,"592 Maple St, Portland, OR 97035" +162791,20in Monitor,1,109.99,02/25/19 16:20,"241 9th St, San Francisco, CA 94016" +162792,AA Batteries (4-pack),3,3.84,02/27/19 13:35,"955 13th St, New York City, NY 10001" +162793,AA Batteries (4-pack),1,3.84,02/26/19 14:28,"50 River St, Boston, MA 02215" +162794,Macbook Pro Laptop,1,1700,02/13/19 21:54,"197 Chestnut St, San Francisco, CA 94016" +162795,Lightning Charging Cable,1,14.95,02/16/19 14:33,"748 River St, Portland, OR 97035" +162796,Google Phone,1,600,02/23/19 14:34,"72 River St, New York City, NY 10001" +162797,Wired Headphones,1,11.99,02/11/19 14:06,"279 Pine St, San Francisco, CA 94016" +162798,20in Monitor,1,109.99,02/09/19 13:03,"695 Sunset St, Boston, MA 02215" +162799,Wired Headphones,1,11.99,02/18/19 23:22,"34 Main St, San Francisco, CA 94016" +162800,Bose SoundSport Headphones,1,99.99,02/26/19 10:33,"543 12th St, Boston, MA 02215" +162801,Flatscreen TV,1,300,02/14/19 11:58,"174 Hill St, Seattle, WA 98101" +162802,Lightning Charging Cable,1,14.95,02/10/19 11:41,"470 10th St, San Francisco, CA 94016" +162803,AAA Batteries (4-pack),3,2.99,02/03/19 17:01,"557 Ridge St, Boston, MA 02215" +162803,AAA Batteries (4-pack),1,2.99,02/03/19 17:01,"557 Ridge St, Boston, MA 02215" +162804,AAA Batteries (4-pack),1,2.99,02/27/19 06:15,"874 Madison St, Boston, MA 02215" +162805,AAA Batteries (4-pack),2,2.99,02/06/19 07:25,"266 Johnson St, Dallas, TX 75001" +162806,AAA Batteries (4-pack),1,2.99,02/08/19 20:28,"27 4th St, Atlanta, GA 30301" +162807,Wired Headphones,2,11.99,02/03/19 13:10,"148 1st St, Los Angeles, CA 90001" +162808,iPhone,1,700,02/15/19 16:21,"936 Lincoln St, Boston, MA 02215" +162808,Wired Headphones,1,11.99,02/15/19 16:21,"936 Lincoln St, Boston, MA 02215" +162809,iPhone,1,700,02/21/19 22:38,"931 Ridge St, Portland, OR 97035" +162810,Google Phone,1,600,02/18/19 14:27,"672 Park St, Boston, MA 02215" +162811,Flatscreen TV,1,300,02/14/19 18:49,"804 10th St, Dallas, TX 75001" +162812,AA Batteries (4-pack),1,3.84,02/25/19 23:07,"750 Elm St, Los Angeles, CA 90001" +162813,Google Phone,1,600,02/09/19 21:02,"252 Walnut St, Dallas, TX 75001" +162814,27in FHD Monitor,1,149.99,02/13/19 19:56,"320 Maple St, Los Angeles, CA 90001" +162815,AAA Batteries (4-pack),1,2.99,02/12/19 01:01,"122 Ridge St, San Francisco, CA 94016" +162816,AAA Batteries (4-pack),2,2.99,02/24/19 07:38,"641 River St, Boston, MA 02215" +162817,AA Batteries (4-pack),1,3.84,02/11/19 08:36,"113 North St, Los Angeles, CA 90001" +162818,Apple Airpods Headphones,1,150,02/13/19 20:36,"172 Chestnut St, Los Angeles, CA 90001" +162819,Macbook Pro Laptop,1,1700,02/16/19 08:34,"84 5th St, San Francisco, CA 94016" +162819,ThinkPad Laptop,1,999.99,02/16/19 08:34,"84 5th St, San Francisco, CA 94016" +162820,Lightning Charging Cable,1,14.95,02/28/19 17:50,"956 1st St, Los Angeles, CA 90001" +162821,ThinkPad Laptop,1,999.99,02/15/19 14:48,"617 Jackson St, Los Angeles, CA 90001" +162822,Bose SoundSport Headphones,1,99.99,02/01/19 13:53,"890 13th St, Boston, MA 02215" +162823,Bose SoundSport Headphones,1,99.99,02/13/19 20:15,"963 6th St, San Francisco, CA 94016" +162824,Bose SoundSport Headphones,1,99.99,02/20/19 09:39,"835 Washington St, San Francisco, CA 94016" +162825,USB-C Charging Cable,2,11.95,02/05/19 14:42,"330 11th St, San Francisco, CA 94016" +162826,Apple Airpods Headphones,1,150,02/23/19 19:22,"400 Wilson St, Seattle, WA 98101" +162827,USB-C Charging Cable,1,11.95,02/10/19 19:59,"227 Cherry St, New York City, NY 10001" +162828,Bose SoundSport Headphones,1,99.99,02/28/19 20:05,"484 Washington St, Portland, OR 97035" +162829,Bose SoundSport Headphones,1,99.99,02/19/19 00:01,"160 6th St, Los Angeles, CA 90001" +162830,AAA Batteries (4-pack),6,2.99,02/04/19 15:43,"333 Lincoln St, Atlanta, GA 30301" +162831,AA Batteries (4-pack),1,3.84,02/09/19 18:30,"25 8th St, New York City, NY 10001" +162832,AA Batteries (4-pack),1,3.84,02/23/19 17:00,"519 Maple St, Los Angeles, CA 90001" +162833,27in 4K Gaming Monitor,1,389.99,02/27/19 15:52,"561 Hickory St, Portland, OR 97035" +162834,USB-C Charging Cable,1,11.95,02/26/19 14:34,"256 4th St, Seattle, WA 98101" +162835,USB-C Charging Cable,1,11.95,02/17/19 12:12,"784 1st St, San Francisco, CA 94016" +162836,USB-C Charging Cable,1,11.95,02/09/19 19:52,"276 Chestnut St, Boston, MA 02215" +162837,27in FHD Monitor,1,149.99,02/27/19 21:24,"33 Center St, San Francisco, CA 94016" +162838,USB-C Charging Cable,1,11.95,02/04/19 19:54,"592 6th St, Boston, MA 02215" +162839,Apple Airpods Headphones,1,150,02/07/19 12:20,"910 Spruce St, Dallas, TX 75001" +162840,Wired Headphones,3,11.99,02/10/19 21:14,"381 Washington St, Atlanta, GA 30301" +162841,Lightning Charging Cable,1,14.95,02/08/19 00:10,"56 Lake St, San Francisco, CA 94016" +162842,Lightning Charging Cable,1,14.95,02/02/19 14:11,"124 Jackson St, New York City, NY 10001" +162843,AAA Batteries (4-pack),2,2.99,02/11/19 18:01,"96 Elm St, New York City, NY 10001" +162844,AAA Batteries (4-pack),1,2.99,02/03/19 07:54,"742 Willow St, San Francisco, CA 94016" +162845,AA Batteries (4-pack),1,3.84,02/21/19 06:27,"716 12th St, Seattle, WA 98101" +162846,USB-C Charging Cable,1,11.95,02/24/19 21:31,"268 South St, New York City, NY 10001" +162847,Wired Headphones,1,11.99,02/05/19 20:42,"585 11th St, Portland, OR 97035" +162848,AAA Batteries (4-pack),1,2.99,02/25/19 12:19,"908 Lake St, Seattle, WA 98101" +162849,AA Batteries (4-pack),1,3.84,02/01/19 20:53,"988 14th St, San Francisco, CA 94016" +162850,Flatscreen TV,1,300,02/24/19 16:51,"78 11th St, Seattle, WA 98101" +162851,Lightning Charging Cable,1,14.95,02/24/19 18:21,"820 Walnut St, San Francisco, CA 94016" +162852,Lightning Charging Cable,2,14.95,02/05/19 14:29,"853 7th St, Los Angeles, CA 90001" +162853,27in FHD Monitor,1,149.99,02/28/19 16:33,"373 Lincoln St, Dallas, TX 75001" +162854,27in 4K Gaming Monitor,1,389.99,02/12/19 19:44,"498 Elm St, Atlanta, GA 30301" +162855,Wired Headphones,1,11.99,02/05/19 21:11,"231 Lakeview St, Dallas, TX 75001" +162856,Lightning Charging Cable,1,14.95,02/07/19 19:52,"27 Center St, Los Angeles, CA 90001" +162857,AA Batteries (4-pack),1,3.84,02/27/19 01:12,"592 2nd St, Los Angeles, CA 90001" +162858,Wired Headphones,1,11.99,02/22/19 00:23,"459 Hickory St, Los Angeles, CA 90001" +162859,Wired Headphones,1,11.99,02/20/19 22:05,"58 Madison St, Atlanta, GA 30301" +162860,34in Ultrawide Monitor,1,379.99,02/12/19 09:59,"968 Washington St, New York City, NY 10001" +162861,34in Ultrawide Monitor,1,379.99,02/04/19 11:14,"614 North St, Seattle, WA 98101" +162862,Apple Airpods Headphones,1,150,02/13/19 06:38,"325 Spruce St, New York City, NY 10001" +162863,AAA Batteries (4-pack),2,2.99,02/05/19 20:00,"273 Spruce St, Portland, ME 04101" +162864,AA Batteries (4-pack),3,3.84,02/03/19 12:30,"210 Jackson St, Atlanta, GA 30301" +162865,AAA Batteries (4-pack),2,2.99,02/20/19 12:45,"211 North St, Seattle, WA 98101" +162866,USB-C Charging Cable,1,11.95,02/13/19 23:13,"568 Cedar St, New York City, NY 10001" +162867,Lightning Charging Cable,1,14.95,02/10/19 12:24,"829 Madison St, Seattle, WA 98101" +162868,AA Batteries (4-pack),1,3.84,02/21/19 17:40,"29 Highland St, Seattle, WA 98101" +162869,Wired Headphones,1,11.99,02/01/19 21:20,"181 Elm St, Boston, MA 02215" +162870,AA Batteries (4-pack),1,3.84,02/20/19 13:58,"451 Park St, San Francisco, CA 94016" +162871,AAA Batteries (4-pack),2,2.99,02/12/19 20:21,"270 Cedar St, Dallas, TX 75001" +162872,USB-C Charging Cable,1,11.95,02/07/19 12:47,"454 9th St, Los Angeles, CA 90001" +162873,Apple Airpods Headphones,1,150,02/24/19 23:24,"365 6th St, Boston, MA 02215" +162874,AAA Batteries (4-pack),2,2.99,02/06/19 21:38,"532 Cedar St, Seattle, WA 98101" +162875,Wired Headphones,1,11.99,02/16/19 08:50,"125 Park St, Dallas, TX 75001" +162876,Google Phone,1,600,02/14/19 14:55,"473 14th St, Los Angeles, CA 90001" +162876,Wired Headphones,1,11.99,02/14/19 14:55,"473 14th St, Los Angeles, CA 90001" +162877,USB-C Charging Cable,1,11.95,02/28/19 15:01,"174 North St, San Francisco, CA 94016" +162878,USB-C Charging Cable,1,11.95,02/14/19 14:55,"455 Cherry St, San Francisco, CA 94016" +162879,AAA Batteries (4-pack),3,2.99,02/06/19 11:31,"492 Cedar St, Atlanta, GA 30301" +162880,27in FHD Monitor,1,149.99,02/11/19 10:44,"70 Lincoln St, Boston, MA 02215" +162881,USB-C Charging Cable,1,11.95,02/16/19 19:35,"770 Lakeview St, Seattle, WA 98101" +162882,Lightning Charging Cable,1,14.95,02/05/19 19:03,"736 Spruce St, Boston, MA 02215" +162883,Bose SoundSport Headphones,1,99.99,02/03/19 22:32,"460 Ridge St, Portland, OR 97035" +162884,27in FHD Monitor,1,149.99,02/24/19 22:19,"954 North St, Boston, MA 02215" +162885,Wired Headphones,1,11.99,02/13/19 22:40,"190 Center St, Los Angeles, CA 90001" +162886,Apple Airpods Headphones,1,150,02/02/19 18:44,"933 14th St, Atlanta, GA 30301" +162887,AAA Batteries (4-pack),1,2.99,02/28/19 17:25,"213 12th St, San Francisco, CA 94016" +162888,AAA Batteries (4-pack),4,2.99,02/17/19 22:18,"887 Walnut St, Seattle, WA 98101" +162889,AAA Batteries (4-pack),1,2.99,02/01/19 08:52,"932 Hill St, San Francisco, CA 94016" +162890,AAA Batteries (4-pack),1,2.99,02/16/19 19:31,"509 Hickory St, Dallas, TX 75001" +162891,27in FHD Monitor,1,149.99,02/04/19 08:25,"764 12th St, Portland, OR 97035" +162892,Lightning Charging Cable,1,14.95,02/12/19 16:20,"816 Ridge St, Dallas, TX 75001" +162893,Google Phone,1,600,02/18/19 09:52,"684 Sunset St, New York City, NY 10001" +162894,27in 4K Gaming Monitor,1,389.99,02/15/19 16:09,"655 Ridge St, Seattle, WA 98101" +162895,Google Phone,1,600,02/09/19 09:31,"60 7th St, New York City, NY 10001" +162896,Bose SoundSport Headphones,1,99.99,02/11/19 20:53,"223 5th St, Los Angeles, CA 90001" +162897,AAA Batteries (4-pack),2,2.99,02/09/19 07:12,"529 8th St, Dallas, TX 75001" +162898,Wired Headphones,1,11.99,02/23/19 23:14,"662 1st St, Portland, OR 97035" +162899,AA Batteries (4-pack),1,3.84,02/02/19 10:20,"567 Cherry St, New York City, NY 10001" +162900,Macbook Pro Laptop,1,1700,02/15/19 22:48,"124 Meadow St, Dallas, TX 75001" +162901,Wired Headphones,1,11.99,02/22/19 23:00,"842 Sunset St, New York City, NY 10001" +162902,Lightning Charging Cable,1,14.95,02/11/19 21:47,"894 Cedar St, Portland, OR 97035" +162903,Lightning Charging Cable,1,14.95,02/10/19 07:42,"343 Church St, San Francisco, CA 94016" +162904,34in Ultrawide Monitor,1,379.99,02/22/19 20:46,"463 14th St, Seattle, WA 98101" +162905,USB-C Charging Cable,1,11.95,02/28/19 20:20,"263 4th St, New York City, NY 10001" +162906,AAA Batteries (4-pack),1,2.99,02/18/19 12:33,"620 11th St, Dallas, TX 75001" +162907,AA Batteries (4-pack),1,3.84,02/01/19 14:44,"130 Maple St, San Francisco, CA 94016" +162908,27in FHD Monitor,1,149.99,02/07/19 17:21,"433 Adams St, San Francisco, CA 94016" +162909,Bose SoundSport Headphones,1,99.99,02/26/19 20:37,"775 Lake St, New York City, NY 10001" +162910,27in 4K Gaming Monitor,1,389.99,02/13/19 07:53,"21 Highland St, San Francisco, CA 94016" +162911,Lightning Charging Cable,1,14.95,02/09/19 12:39,"652 Adams St, Los Angeles, CA 90001" +162912,Apple Airpods Headphones,1,150,02/15/19 14:39,"27 Lake St, Seattle, WA 98101" +162913,USB-C Charging Cable,1,11.95,02/20/19 23:03,"598 9th St, Seattle, WA 98101" +162914,34in Ultrawide Monitor,1,379.99,02/20/19 18:45,"830 7th St, Atlanta, GA 30301" +162915,Lightning Charging Cable,1,14.95,02/06/19 11:43,"184 Jefferson St, San Francisco, CA 94016" +162916,Wired Headphones,1,11.99,02/22/19 12:33,"506 Elm St, Atlanta, GA 30301" +162917,AA Batteries (4-pack),1,3.84,02/13/19 13:26,"521 8th St, San Francisco, CA 94016" +162918,iPhone,1,700,02/09/19 13:40,"231 Highland St, San Francisco, CA 94016" +162918,Wired Headphones,1,11.99,02/09/19 13:40,"231 Highland St, San Francisco, CA 94016" +162919,Lightning Charging Cable,1,14.95,02/15/19 17:03,"848 Wilson St, San Francisco, CA 94016" +162920,Flatscreen TV,1,300,02/11/19 14:06,"433 13th St, Dallas, TX 75001" +162921,Bose SoundSport Headphones,1,99.99,02/05/19 22:24,"65 Forest St, Portland, OR 97035" +162922,Bose SoundSport Headphones,1,99.99,02/03/19 07:18,"594 Lincoln St, Los Angeles, CA 90001" +162923,27in FHD Monitor,1,149.99,02/28/19 21:24,"382 7th St, San Francisco, CA 94016" +162924,34in Ultrawide Monitor,1,379.99,02/10/19 12:20,"834 9th St, New York City, NY 10001" +162925,AA Batteries (4-pack),1,3.84,02/23/19 14:39,"283 River St, Dallas, TX 75001" +162926,Wired Headphones,1,11.99,02/26/19 23:42,"802 Jefferson St, Austin, TX 73301" +162927,Vareebadd Phone,1,400,02/27/19 15:30,"555 Wilson St, New York City, NY 10001" +162928,USB-C Charging Cable,1,11.95,02/18/19 11:46,"85 Highland St, Portland, OR 97035" +162929,USB-C Charging Cable,2,11.95,02/13/19 10:58,"696 North St, Portland, ME 04101" +162930,20in Monitor,1,109.99,02/14/19 10:19,"290 Washington St, San Francisco, CA 94016" +162931,Lightning Charging Cable,1,14.95,02/10/19 09:27,"649 Main St, San Francisco, CA 94016" +162932,Bose SoundSport Headphones,1,99.99,02/13/19 15:57,"611 11th St, Boston, MA 02215" +162933,Apple Airpods Headphones,1,150,02/07/19 11:02,"474 Adams St, Los Angeles, CA 90001" +162934,Lightning Charging Cable,1,14.95,02/24/19 11:50,"863 Cedar St, Los Angeles, CA 90001" +162935,AA Batteries (4-pack),1,3.84,02/04/19 20:11,"345 Pine St, Los Angeles, CA 90001" +162936,27in 4K Gaming Monitor,1,389.99,02/18/19 16:47,"761 Willow St, San Francisco, CA 94016" +162937,27in FHD Monitor,1,149.99,02/21/19 08:43,"686 Forest St, Dallas, TX 75001" +162938,Lightning Charging Cable,1,14.95,02/04/19 09:39,"754 North St, New York City, NY 10001" +162939,Lightning Charging Cable,1,14.95,02/28/19 19:36,"314 1st St, Portland, OR 97035" +162940,Wired Headphones,1,11.99,02/11/19 13:10,"240 Washington St, Dallas, TX 75001" +162941,27in FHD Monitor,1,149.99,02/25/19 12:28,"277 North St, New York City, NY 10001" +162942,Apple Airpods Headphones,1,150,02/16/19 09:13,"545 5th St, Atlanta, GA 30301" +162943,Flatscreen TV,1,300,02/17/19 01:05,"234 5th St, Portland, OR 97035" +162944,ThinkPad Laptop,1,999.99,02/03/19 10:50,"309 Highland St, San Francisco, CA 94016" +162945,Lightning Charging Cable,1,14.95,02/05/19 09:56,"75 River St, Los Angeles, CA 90001" +162946,AAA Batteries (4-pack),2,2.99,02/22/19 07:44,"562 Wilson St, Portland, OR 97035" +162947,Bose SoundSport Headphones,1,99.99,02/18/19 13:23,"925 Lake St, San Francisco, CA 94016" +162948,27in 4K Gaming Monitor,1,389.99,02/28/19 08:58,"589 West St, Los Angeles, CA 90001" +162949,Bose SoundSport Headphones,1,99.99,02/01/19 21:18,"720 Pine St, Boston, MA 02215" +162950,ThinkPad Laptop,1,999.99,02/15/19 12:37,"847 Elm St, Boston, MA 02215" +162951,27in 4K Gaming Monitor,1,389.99,02/09/19 14:12,"713 Lincoln St, New York City, NY 10001" +162952,Google Phone,1,600,02/16/19 21:51,"141 Forest St, Seattle, WA 98101" +162953,AA Batteries (4-pack),1,3.84,02/21/19 22:36,"211 West St, San Francisco, CA 94016" +162954,Bose SoundSport Headphones,1,99.99,02/10/19 23:02,"149 8th St, Boston, MA 02215" +162955,Apple Airpods Headphones,1,150,02/12/19 19:31,"96 South St, Dallas, TX 75001" +162956,Wired Headphones,1,11.99,02/28/19 13:48,"977 Church St, New York City, NY 10001" +162957,27in FHD Monitor,1,149.99,02/03/19 11:30,"976 6th St, New York City, NY 10001" +162958,34in Ultrawide Monitor,1,379.99,02/14/19 22:06,"740 North St, San Francisco, CA 94016" +162959,Apple Airpods Headphones,1,150,02/15/19 14:22,"574 Pine St, Austin, TX 73301" +162960,Wired Headphones,1,11.99,02/09/19 19:06,"72 Ridge St, San Francisco, CA 94016" +162961,Bose SoundSport Headphones,1,99.99,02/13/19 01:09,"852 9th St, San Francisco, CA 94016" +162962,Macbook Pro Laptop,1,1700,02/06/19 10:17,"992 Cedar St, Dallas, TX 75001" +162963,Lightning Charging Cable,1,14.95,02/12/19 12:45,"18 Cedar St, Seattle, WA 98101" +162964,ThinkPad Laptop,1,999.99,02/05/19 19:24,"780 1st St, New York City, NY 10001" +162965,Apple Airpods Headphones,1,150,02/28/19 18:52,"300 Cherry St, Los Angeles, CA 90001" +162966,Apple Airpods Headphones,1,150,02/11/19 20:12,"304 Cherry St, Austin, TX 73301" +162967,Apple Airpods Headphones,1,150,02/03/19 13:28,"626 5th St, New York City, NY 10001" +162968,Bose SoundSport Headphones,1,99.99,02/20/19 09:40,"143 Hickory St, San Francisco, CA 94016" +162969,AAA Batteries (4-pack),2,2.99,02/01/19 22:25,"741 Wilson St, Atlanta, GA 30301" +162970,AA Batteries (4-pack),3,3.84,02/27/19 17:47,"260 Maple St, Seattle, WA 98101" +162971,Wired Headphones,1,11.99,02/01/19 14:25,"669 Lake St, Portland, OR 97035" +162972,Google Phone,1,600,02/09/19 18:42,"820 6th St, Portland, OR 97035" +162973,Bose SoundSport Headphones,1,99.99,02/21/19 18:40,"92 Hickory St, Los Angeles, CA 90001" +162974,Bose SoundSport Headphones,1,99.99,02/12/19 14:53,"28 Spruce St, Los Angeles, CA 90001" +162975,AA Batteries (4-pack),1,3.84,02/22/19 06:55,"174 Jackson St, New York City, NY 10001" +162976,AAA Batteries (4-pack),1,2.99,02/14/19 20:03,"810 Johnson St, Austin, TX 73301" +162977,34in Ultrawide Monitor,1,379.99,02/05/19 10:30,"92 Washington St, Seattle, WA 98101" +162978,AAA Batteries (4-pack),1,2.99,02/07/19 20:30,"875 Jefferson St, Los Angeles, CA 90001" +162979,Macbook Pro Laptop,1,1700,02/27/19 22:34,"262 Sunset St, Portland, ME 04101" +162980,AA Batteries (4-pack),1,3.84,02/22/19 21:09,"950 5th St, San Francisco, CA 94016" +162981,iPhone,1,700,02/03/19 10:21,"387 South St, Los Angeles, CA 90001" +162982,iPhone,1,700,02/06/19 18:47,"908 Johnson St, Los Angeles, CA 90001" +162982,Wired Headphones,1,11.99,02/06/19 18:47,"908 Johnson St, Los Angeles, CA 90001" +162983,AA Batteries (4-pack),1,3.84,02/07/19 13:11,"299 Center St, San Francisco, CA 94016" +162984,Apple Airpods Headphones,1,150,02/12/19 19:51,"504 Cedar St, San Francisco, CA 94016" +162985,ThinkPad Laptop,1,999.99,02/04/19 16:47,"850 Lakeview St, New York City, NY 10001" +162986,20in Monitor,1,109.99,02/09/19 20:44,"109 10th St, New York City, NY 10001" +162986,USB-C Charging Cable,1,11.95,02/09/19 20:44,"109 10th St, New York City, NY 10001" +162987,Google Phone,1,600,02/10/19 10:00,"160 Jefferson St, Los Angeles, CA 90001" +162988,Apple Airpods Headphones,1,150,02/23/19 23:40,"711 Willow St, San Francisco, CA 94016" +162989,34in Ultrawide Monitor,1,379.99,02/04/19 09:19,"188 Ridge St, San Francisco, CA 94016" +162990,Vareebadd Phone,1,400,02/27/19 07:53,"247 12th St, New York City, NY 10001" +162990,USB-C Charging Cable,1,11.95,02/27/19 07:53,"247 12th St, New York City, NY 10001" +162990,Wired Headphones,1,11.99,02/27/19 07:53,"247 12th St, New York City, NY 10001" +162991,Bose SoundSport Headphones,1,99.99,02/07/19 21:59,"344 Maple St, Boston, MA 02215" +162992,AAA Batteries (4-pack),1,2.99,02/07/19 11:57,"168 11th St, Boston, MA 02215" +162993,AAA Batteries (4-pack),2,2.99,02/12/19 19:41,"263 Main St, Seattle, WA 98101" +162994,Bose SoundSport Headphones,1,99.99,02/24/19 04:17,"34 Pine St, Atlanta, GA 30301" +162995,iPhone,1,700,02/22/19 13:35,"171 1st St, Austin, TX 73301" +162995,Lightning Charging Cable,1,14.95,02/22/19 13:35,"171 1st St, Austin, TX 73301" +162996,Lightning Charging Cable,1,14.95,02/18/19 12:57,"87 Madison St, San Francisco, CA 94016" +162997,USB-C Charging Cable,1,11.95,02/07/19 13:19,"555 Walnut St, San Francisco, CA 94016" +162998,AA Batteries (4-pack),1,3.84,02/04/19 13:51,"634 South St, Los Angeles, CA 90001" +162999,AA Batteries (4-pack),1,3.84,02/27/19 00:05,"799 Cherry St, San Francisco, CA 94016" +163000,USB-C Charging Cable,1,11.95,02/28/19 11:01,"480 Walnut St, Portland, OR 97035" +163001,Apple Airpods Headphones,1,150,02/04/19 22:08,"259 River St, San Francisco, CA 94016" +163002,Wired Headphones,1,11.99,02/01/19 18:14,"924 9th St, San Francisco, CA 94016" +163003,20in Monitor,1,109.99,02/27/19 14:27,"888 6th St, New York City, NY 10001" +163004,ThinkPad Laptop,1,999.99,02/03/19 23:43,"714 2nd St, Boston, MA 02215" +163005,Apple Airpods Headphones,1,150,02/09/19 11:01,"55 14th St, Atlanta, GA 30301" +163006,AA Batteries (4-pack),1,3.84,02/12/19 11:34,"881 Chestnut St, San Francisco, CA 94016" +163007,Apple Airpods Headphones,1,150,02/09/19 20:29,"23 12th St, San Francisco, CA 94016" +163008,Bose SoundSport Headphones,1,99.99,02/27/19 19:41,"482 13th St, New York City, NY 10001" +163009,AA Batteries (4-pack),3,3.84,02/28/19 15:16,"963 7th St, Boston, MA 02215" +163010,20in Monitor,2,109.99,02/18/19 19:05,"995 2nd St, San Francisco, CA 94016" +163011,iPhone,1,700,02/17/19 15:28,"448 Ridge St, Austin, TX 73301" +163011,Wired Headphones,1,11.99,02/17/19 15:28,"448 Ridge St, Austin, TX 73301" +163012,Bose SoundSport Headphones,1,99.99,02/08/19 15:58,"943 Hickory St, Boston, MA 02215" +163013,USB-C Charging Cable,1,11.95,02/23/19 12:10,"256 South St, Seattle, WA 98101" +163014,27in FHD Monitor,1,149.99,02/21/19 18:45,"31 North St, Seattle, WA 98101" +163015,Bose SoundSport Headphones,1,99.99,02/06/19 10:58,"511 8th St, New York City, NY 10001" +163016,Wired Headphones,2,11.99,02/15/19 16:21,"299 11th St, Boston, MA 02215" +163017,AAA Batteries (4-pack),2,2.99,02/21/19 21:19,"822 6th St, Atlanta, GA 30301" +163018,Wired Headphones,1,11.99,02/27/19 11:38,"24 Cedar St, Los Angeles, CA 90001" +163019,34in Ultrawide Monitor,1,379.99,02/02/19 17:35,"346 6th St, San Francisco, CA 94016" +163020,USB-C Charging Cable,1,11.95,02/19/19 19:48,"918 Adams St, New York City, NY 10001" +163021,27in FHD Monitor,1,149.99,02/19/19 18:03,"717 Forest St, Portland, ME 04101" +163022,27in 4K Gaming Monitor,1,389.99,02/04/19 21:25,"648 Wilson St, Atlanta, GA 30301" +163023,Lightning Charging Cable,1,14.95,02/18/19 12:40,"595 5th St, San Francisco, CA 94016" +163024,Wired Headphones,1,11.99,02/26/19 18:11,"20 Center St, Boston, MA 02215" +163025,Bose SoundSport Headphones,1,99.99,02/23/19 11:51,"806 Chestnut St, Portland, OR 97035" +163026,Lightning Charging Cable,1,14.95,02/24/19 01:10,"954 Highland St, New York City, NY 10001" +163027,USB-C Charging Cable,1,11.95,02/14/19 11:38,"331 Wilson St, San Francisco, CA 94016" +163028,Wired Headphones,1,11.99,02/04/19 15:01,"773 Spruce St, New York City, NY 10001" +163029,Lightning Charging Cable,2,14.95,02/20/19 13:34,"475 Elm St, New York City, NY 10001" +163030,Bose SoundSport Headphones,1,99.99,02/22/19 11:19,"78 North St, Dallas, TX 75001" +163031,iPhone,1,700,02/15/19 18:21,"550 Park St, Atlanta, GA 30301" +163032,34in Ultrawide Monitor,1,379.99,02/17/19 08:58,"408 8th St, Seattle, WA 98101" +163033,27in 4K Gaming Monitor,1,389.99,02/18/19 20:25,"661 8th St, Boston, MA 02215" +163034,20in Monitor,1,109.99,02/19/19 21:23,"9 North St, Dallas, TX 75001" +163035,Bose SoundSport Headphones,1,99.99,02/02/19 10:07,"855 Adams St, San Francisco, CA 94016" +163036,Wired Headphones,1,11.99,02/18/19 14:01,"998 Jackson St, Atlanta, GA 30301" +163037,AA Batteries (4-pack),1,3.84,02/22/19 14:01,"310 North St, Atlanta, GA 30301" +163038,Wired Headphones,1,11.99,02/15/19 21:23,"625 Lake St, Dallas, TX 75001" +163039,Lightning Charging Cable,1,14.95,02/01/19 19:05,"870 10th St, Boston, MA 02215" +163040,AA Batteries (4-pack),1,3.84,02/06/19 23:20,"284 9th St, New York City, NY 10001" +163041,Wired Headphones,1,11.99,02/18/19 17:57,"678 North St, New York City, NY 10001" +163042,Vareebadd Phone,1,400,02/21/19 12:13,"196 Hickory St, Austin, TX 73301" +163043,AAA Batteries (4-pack),1,2.99,02/18/19 08:25,"266 Wilson St, Boston, MA 02215" +163044,USB-C Charging Cable,1,11.95,02/04/19 21:06,"923 Cherry St, San Francisco, CA 94016" +163045,Wired Headphones,1,11.99,02/16/19 15:23,"755 Main St, New York City, NY 10001" +163046,Wired Headphones,1,11.99,02/25/19 13:34,"947 8th St, New York City, NY 10001" +163047,34in Ultrawide Monitor,1,379.99,02/23/19 20:54,"19 Washington St, Los Angeles, CA 90001" +163048,34in Ultrawide Monitor,1,379.99,02/20/19 18:46,"652 Meadow St, Portland, OR 97035" +163049,AAA Batteries (4-pack),1,2.99,02/23/19 10:12,"144 West St, Los Angeles, CA 90001" +163050,AAA Batteries (4-pack),1,2.99,02/15/19 21:07,"977 Main St, Boston, MA 02215" +163051,AA Batteries (4-pack),1,3.84,02/27/19 19:53,"227 4th St, New York City, NY 10001" +163052,USB-C Charging Cable,1,11.95,02/27/19 12:38,"827 Walnut St, San Francisco, CA 94016" +163053,Lightning Charging Cable,1,14.95,02/07/19 11:24,"407 Highland St, Boston, MA 02215" +163054,Bose SoundSport Headphones,1,99.99,02/08/19 07:13,"140 Wilson St, Atlanta, GA 30301" +163055,USB-C Charging Cable,1,11.95,02/26/19 19:57,"756 14th St, San Francisco, CA 94016" +163056,AAA Batteries (4-pack),1,2.99,02/07/19 18:20,"326 Wilson St, Austin, TX 73301" +163057,USB-C Charging Cable,2,11.95,02/15/19 10:12,"543 Adams St, Austin, TX 73301" +163058,AAA Batteries (4-pack),3,2.99,02/12/19 19:38,"258 Park St, Portland, OR 97035" +163059,USB-C Charging Cable,1,11.95,02/28/19 23:58,"996 Johnson St, Portland, OR 97035" +163060,27in 4K Gaming Monitor,1,389.99,02/09/19 13:24,"361 Chestnut St, Portland, OR 97035" +163061,AAA Batteries (4-pack),1,2.99,02/16/19 23:52,"69 Willow St, Portland, OR 97035" +163062,Lightning Charging Cable,1,14.95,02/07/19 08:40,"898 Jackson St, Los Angeles, CA 90001" +163063,27in FHD Monitor,1,149.99,02/06/19 16:41,"133 Park St, Atlanta, GA 30301" +163064,Bose SoundSport Headphones,1,99.99,02/24/19 18:53,"799 9th St, Dallas, TX 75001" +163065,iPhone,1,700,02/22/19 19:29,"88 1st St, Los Angeles, CA 90001" +163066,AA Batteries (4-pack),1,3.84,02/19/19 00:28,"879 11th St, New York City, NY 10001" +163067,Wired Headphones,1,11.99,02/18/19 07:54,"737 Lakeview St, Los Angeles, CA 90001" +163068,27in FHD Monitor,1,149.99,02/04/19 16:40,"394 6th St, Portland, OR 97035" +163069,AAA Batteries (4-pack),1,2.99,02/22/19 08:45,"936 Lake St, Atlanta, GA 30301" +163070,AAA Batteries (4-pack),2,2.99,02/23/19 12:48,"80 Dogwood St, Atlanta, GA 30301" +163071,Apple Airpods Headphones,1,150,02/15/19 15:44,"943 Hickory St, New York City, NY 10001" +163072,AAA Batteries (4-pack),2,2.99,02/22/19 23:44,"800 Washington St, Los Angeles, CA 90001" +163073,27in FHD Monitor,1,149.99,02/27/19 00:06,"970 Cherry St, Boston, MA 02215" +163074,Wired Headphones,1,11.99,02/26/19 19:16,"438 Forest St, New York City, NY 10001" +163075,AAA Batteries (4-pack),1,2.99,02/28/19 17:51,"571 Maple St, San Francisco, CA 94016" +163076,Apple Airpods Headphones,1,150,02/05/19 12:43,"555 Hickory St, Seattle, WA 98101" +163077,iPhone,1,700,02/16/19 16:50,"337 Lincoln St, Los Angeles, CA 90001" +163078,iPhone,1,700,02/12/19 18:57,"507 Elm St, Portland, OR 97035" +163079,Wired Headphones,1,11.99,02/16/19 19:43,"118 Willow St, San Francisco, CA 94016" +163079,AAA Batteries (4-pack),1,2.99,02/16/19 19:43,"118 Willow St, San Francisco, CA 94016" +163080,USB-C Charging Cable,1,11.95,02/10/19 22:19,"754 West St, San Francisco, CA 94016" +163081,Lightning Charging Cable,1,14.95,02/18/19 05:38,"974 Johnson St, Los Angeles, CA 90001" +163082,iPhone,1,700,02/12/19 15:00,"480 Jackson St, Los Angeles, CA 90001" +163083,Apple Airpods Headphones,1,150,02/16/19 01:55,"863 Pine St, Boston, MA 02215" +163084,Wired Headphones,1,11.99,02/22/19 08:27,"660 West St, Los Angeles, CA 90001" +163085,Bose SoundSport Headphones,1,99.99,02/21/19 22:45,"308 Cedar St, Boston, MA 02215" +163086,AAA Batteries (4-pack),3,2.99,02/05/19 00:11,"439 9th St, Boston, MA 02215" +163087,AAA Batteries (4-pack),1,2.99,02/20/19 19:32,"783 Hill St, Los Angeles, CA 90001" +163088,Lightning Charging Cable,1,14.95,02/24/19 18:11,"833 River St, New York City, NY 10001" +163089,USB-C Charging Cable,1,11.95,02/05/19 17:23,"892 1st St, New York City, NY 10001" +163090,AAA Batteries (4-pack),1,2.99,02/12/19 01:00,"979 Lake St, Austin, TX 73301" +163091,Lightning Charging Cable,1,14.95,02/07/19 22:38,"367 5th St, New York City, NY 10001" +163092,USB-C Charging Cable,1,11.95,02/11/19 21:52,"155 9th St, San Francisco, CA 94016" +163093,USB-C Charging Cable,2,11.95,02/23/19 11:31,"128 Madison St, San Francisco, CA 94016" +163094,iPhone,1,700,02/02/19 14:30,"560 Main St, Dallas, TX 75001" +163095,Macbook Pro Laptop,1,1700,02/09/19 06:05,"723 Jackson St, Los Angeles, CA 90001" +163096,AAA Batteries (4-pack),1,2.99,02/06/19 13:56,"975 Spruce St, Atlanta, GA 30301" +163097,Macbook Pro Laptop,1,1700,02/17/19 19:40,"420 12th St, Atlanta, GA 30301" +163098,AAA Batteries (4-pack),1,2.99,02/05/19 17:52,"217 Elm St, Los Angeles, CA 90001" +163099,AAA Batteries (4-pack),1,2.99,02/05/19 07:42,"586 1st St, Los Angeles, CA 90001" +163100,Apple Airpods Headphones,1,150,02/28/19 13:54,"525 Highland St, San Francisco, CA 94016" +163101,AA Batteries (4-pack),2,3.84,02/10/19 22:18,"183 Center St, San Francisco, CA 94016" +163102,Lightning Charging Cable,1,14.95,02/22/19 15:25,"777 Jefferson St, New York City, NY 10001" +163103,AAA Batteries (4-pack),1,2.99,02/15/19 18:09,"512 11th St, New York City, NY 10001" +163104,iPhone,1,700,02/12/19 15:24,"590 Highland St, New York City, NY 10001" +163105,Apple Airpods Headphones,1,150,02/18/19 18:01,"212 Willow St, New York City, NY 10001" +163106,AAA Batteries (4-pack),2,2.99,02/11/19 20:08,"898 Hill St, Dallas, TX 75001" +163107,AAA Batteries (4-pack),3,2.99,02/21/19 17:03,"129 Walnut St, San Francisco, CA 94016" +163108,Apple Airpods Headphones,1,150,02/03/19 21:31,"665 North St, New York City, NY 10001" +163109,USB-C Charging Cable,1,11.95,02/28/19 11:22,"836 Church St, Seattle, WA 98101" +163110,Lightning Charging Cable,1,14.95,02/08/19 13:05,"612 Walnut St, Seattle, WA 98101" +163111,USB-C Charging Cable,2,11.95,02/05/19 23:15,"669 Washington St, Seattle, WA 98101" +163112,Macbook Pro Laptop,1,1700,02/27/19 00:08,"853 Lakeview St, San Francisco, CA 94016" +163113,34in Ultrawide Monitor,1,379.99,02/22/19 12:18,"627 Washington St, Portland, ME 04101" +163114,34in Ultrawide Monitor,1,379.99,02/21/19 06:37,"921 11th St, Austin, TX 73301" +163115,iPhone,1,700,02/14/19 10:53,"519 Meadow St, Seattle, WA 98101" +163115,AA Batteries (4-pack),1,3.84,02/14/19 10:53,"519 Meadow St, Seattle, WA 98101" +163116,AA Batteries (4-pack),1,3.84,02/15/19 12:37,"145 Sunset St, Atlanta, GA 30301" +163117,Apple Airpods Headphones,1,150,02/20/19 10:11,"84 Maple St, Seattle, WA 98101" +163118,AA Batteries (4-pack),1,3.84,02/25/19 13:34,"948 6th St, Austin, TX 73301" +163119,34in Ultrawide Monitor,1,379.99,02/24/19 17:03,"66 Willow St, Portland, ME 04101" +163120,USB-C Charging Cable,1,11.95,02/13/19 11:32,"461 Lincoln St, San Francisco, CA 94016" +163121,AAA Batteries (4-pack),1,2.99,02/12/19 18:56,"452 Lake St, San Francisco, CA 94016" +163122,Flatscreen TV,1,300,02/03/19 12:01,"437 South St, Dallas, TX 75001" +163123,Lightning Charging Cable,1,14.95,02/19/19 19:18,"232 Forest St, Los Angeles, CA 90001" +163124,Lightning Charging Cable,1,14.95,02/05/19 13:38,"576 Johnson St, New York City, NY 10001" +163125,Macbook Pro Laptop,1,1700,02/14/19 17:40,"391 14th St, Portland, OR 97035" +163126,Bose SoundSport Headphones,1,99.99,02/09/19 21:35,"102 10th St, San Francisco, CA 94016" +163127,20in Monitor,1,109.99,02/19/19 21:15,"810 North St, San Francisco, CA 94016" +163128,27in FHD Monitor,1,149.99,02/06/19 12:14,"687 Cherry St, Seattle, WA 98101" +163129,Apple Airpods Headphones,1,150,02/27/19 13:12,"209 Spruce St, San Francisco, CA 94016" +163130,Lightning Charging Cable,1,14.95,02/01/19 13:15,"682 2nd St, New York City, NY 10001" +163131,ThinkPad Laptop,1,999.99,02/03/19 17:53,"142 Lake St, New York City, NY 10001" +163132,Apple Airpods Headphones,1,150,02/25/19 09:07,"171 Adams St, Boston, MA 02215" +163133,Macbook Pro Laptop,1,1700,02/17/19 17:11,"821 Wilson St, New York City, NY 10001" +163134,AAA Batteries (4-pack),1,2.99,02/25/19 14:16,"956 8th St, San Francisco, CA 94016" +163135,Google Phone,1,600,02/18/19 20:09,"152 Cherry St, San Francisco, CA 94016" +163136,34in Ultrawide Monitor,1,379.99,02/12/19 19:09,"97 South St, Los Angeles, CA 90001" +163137,ThinkPad Laptop,1,999.99,02/01/19 08:56,"861 7th St, New York City, NY 10001" +163138,34in Ultrawide Monitor,1,379.99,02/08/19 11:22,"952 Adams St, San Francisco, CA 94016" +163139,Wired Headphones,1,11.99,02/25/19 21:27,"823 Cherry St, Los Angeles, CA 90001" +163140,USB-C Charging Cable,1,11.95,02/14/19 11:07,"706 Spruce St, San Francisco, CA 94016" +163141,27in 4K Gaming Monitor,1,389.99,02/14/19 14:46,"824 Center St, Portland, OR 97035" +163142,Apple Airpods Headphones,1,150,02/24/19 17:12,"640 14th St, Boston, MA 02215" +163143,AAA Batteries (4-pack),1,2.99,02/08/19 22:45,"362 West St, San Francisco, CA 94016" +163144,AAA Batteries (4-pack),1,2.99,02/11/19 20:10,"839 Elm St, New York City, NY 10001" +163145,Wired Headphones,1,11.99,02/04/19 19:18,"228 River St, Austin, TX 73301" +163146,Apple Airpods Headphones,1,150,02/19/19 05:51,"694 2nd St, Los Angeles, CA 90001" +163147,Wired Headphones,1,11.99,02/27/19 22:36,"894 Dogwood St, Dallas, TX 75001" +163148,iPhone,1,700,02/28/19 19:31,"338 Sunset St, Los Angeles, CA 90001" +163148,Apple Airpods Headphones,1,150,02/28/19 19:31,"338 Sunset St, Los Angeles, CA 90001" +163149,27in 4K Gaming Monitor,1,389.99,02/01/19 19:46,"128 Jefferson St, San Francisco, CA 94016" +163150,Bose SoundSport Headphones,1,99.99,02/21/19 13:14,"208 Ridge St, Austin, TX 73301" +163151,Lightning Charging Cable,1,14.95,02/23/19 22:13,"115 Maple St, Boston, MA 02215" +163152,AAA Batteries (4-pack),1,2.99,02/24/19 23:24,"357 9th St, Los Angeles, CA 90001" +163153,27in 4K Gaming Monitor,1,389.99,02/05/19 22:13,"199 7th St, Portland, OR 97035" +163154,Apple Airpods Headphones,1,150,02/26/19 19:49,"70 Church St, Boston, MA 02215" +163155,AA Batteries (4-pack),2,3.84,02/04/19 15:17,"893 Sunset St, New York City, NY 10001" +163156,Wired Headphones,1,11.99,02/22/19 22:40,"947 6th St, Los Angeles, CA 90001" +163157,AA Batteries (4-pack),2,3.84,02/15/19 19:06,"761 Pine St, Los Angeles, CA 90001" +163158,USB-C Charging Cable,1,11.95,02/08/19 12:41,"284 Highland St, Dallas, TX 75001" +163159,Wired Headphones,1,11.99,02/01/19 13:47,"188 Dogwood St, San Francisco, CA 94016" +163160,Macbook Pro Laptop,1,1700,02/21/19 20:30,"126 Willow St, Portland, OR 97035" +163160,Lightning Charging Cable,1,14.95,02/21/19 20:30,"126 Willow St, Portland, OR 97035" +163161,Lightning Charging Cable,1,14.95,02/08/19 11:27,"407 South St, Atlanta, GA 30301" +163162,Lightning Charging Cable,1,14.95,02/12/19 00:15,"173 Center St, Los Angeles, CA 90001" +163163,Google Phone,1,600,02/05/19 19:37,"866 Cherry St, San Francisco, CA 94016" +163164,AAA Batteries (4-pack),2,2.99,02/09/19 12:31,"376 8th St, San Francisco, CA 94016" +163165,ThinkPad Laptop,1,999.99,02/04/19 19:47,"494 Washington St, Atlanta, GA 30301" +163166,iPhone,1,700,02/08/19 11:11,"691 Meadow St, San Francisco, CA 94016" +163167,Lightning Charging Cable,1,14.95,02/23/19 18:06,"284 Cherry St, Seattle, WA 98101" +163168,AAA Batteries (4-pack),2,2.99,02/16/19 11:00,"913 Main St, New York City, NY 10001" +163169,Wired Headphones,1,11.99,02/17/19 17:38,"713 5th St, San Francisco, CA 94016" +163170,AA Batteries (4-pack),1,3.84,02/25/19 19:20,"542 South St, New York City, NY 10001" +163171,AAA Batteries (4-pack),1,2.99,02/13/19 20:58,"673 1st St, San Francisco, CA 94016" +163172,AA Batteries (4-pack),1,3.84,02/25/19 06:19,"868 Main St, Austin, TX 73301" +163173,Apple Airpods Headphones,1,150,02/25/19 22:23,"163 Hill St, Boston, MA 02215" +163174,AAA Batteries (4-pack),5,2.99,02/08/19 11:16,"228 Church St, San Francisco, CA 94016" +163175,Google Phone,1,600,02/18/19 19:40,"343 South St, San Francisco, CA 94016" +163175,USB-C Charging Cable,1,11.95,02/18/19 19:40,"343 South St, San Francisco, CA 94016" +163176,Wired Headphones,1,11.99,02/05/19 08:16,"211 Jackson St, Dallas, TX 75001" +163177,AA Batteries (4-pack),1,3.84,02/11/19 10:01,"833 Park St, New York City, NY 10001" +163178,Flatscreen TV,1,300,02/05/19 19:06,"723 Jackson St, San Francisco, CA 94016" +163179,34in Ultrawide Monitor,1,379.99,02/03/19 20:10,"605 14th St, New York City, NY 10001" +163180,Wired Headphones,1,11.99,02/14/19 20:36,"279 5th St, Seattle, WA 98101" +163181,Lightning Charging Cable,1,14.95,02/01/19 17:54,"155 Lake St, San Francisco, CA 94016" +163182,Wired Headphones,1,11.99,02/15/19 17:19,"804 1st St, San Francisco, CA 94016" +163183,Apple Airpods Headphones,1,150,02/26/19 14:39,"468 West St, San Francisco, CA 94016" +163184,Lightning Charging Cable,1,14.95,02/12/19 13:04,"227 Wilson St, New York City, NY 10001" +163185,AAA Batteries (4-pack),1,2.99,02/28/19 17:53,"432 Chestnut St, Seattle, WA 98101" +163186,USB-C Charging Cable,1,11.95,02/13/19 19:28,"977 Lincoln St, New York City, NY 10001" +163187,AAA Batteries (4-pack),1,2.99,02/23/19 17:02,"990 Cherry St, New York City, NY 10001" +163188,Bose SoundSport Headphones,1,99.99,02/09/19 14:12,"492 Maple St, San Francisco, CA 94016" +163189,Wired Headphones,2,11.99,02/10/19 09:54,"622 Hill St, San Francisco, CA 94016" +163190,Lightning Charging Cable,1,14.95,02/08/19 21:06,"956 13th St, Portland, OR 97035" +163191,27in 4K Gaming Monitor,1,389.99,02/02/19 12:59,"202 9th St, San Francisco, CA 94016" +163192,27in 4K Gaming Monitor,1,389.99,02/08/19 18:11,"601 Meadow St, San Francisco, CA 94016" +163193,USB-C Charging Cable,1,11.95,02/03/19 14:12,"681 Chestnut St, Los Angeles, CA 90001" +163194,Lightning Charging Cable,2,14.95,02/27/19 20:14,"298 9th St, Los Angeles, CA 90001" +163195,20in Monitor,1,109.99,02/06/19 12:30,"181 Jackson St, New York City, NY 10001" +163196,AAA Batteries (4-pack),1,2.99,02/09/19 16:17,"117 Jefferson St, Los Angeles, CA 90001" +163197,iPhone,1,700,02/15/19 12:34,"993 11th St, Boston, MA 02215" +163198,AA Batteries (4-pack),1,3.84,02/27/19 20:51,"748 Washington St, New York City, NY 10001" +163199,Macbook Pro Laptop,1,1700,02/01/19 15:14,"801 14th St, Los Angeles, CA 90001" +163200,Lightning Charging Cable,1,14.95,02/04/19 08:36,"789 Jackson St, Boston, MA 02215" +163201,AAA Batteries (4-pack),1,2.99,02/13/19 20:29,"297 West St, Los Angeles, CA 90001" +163202,AA Batteries (4-pack),1,3.84,02/17/19 11:39,"186 Elm St, Los Angeles, CA 90001" +163203,AA Batteries (4-pack),1,3.84,02/02/19 20:15,"451 Washington St, San Francisco, CA 94016" +163204,20in Monitor,1,109.99,02/22/19 12:16,"959 Cherry St, San Francisco, CA 94016" +163205,Flatscreen TV,1,300,02/23/19 00:02,"805 Wilson St, New York City, NY 10001" +163206,27in FHD Monitor,1,149.99,02/19/19 15:08,"970 Forest St, Dallas, TX 75001" +163207,27in FHD Monitor,1,149.99,02/20/19 04:06,"406 14th St, Boston, MA 02215" +163208,Macbook Pro Laptop,1,1700,02/02/19 16:12,"931 South St, Seattle, WA 98101" +163209,Lightning Charging Cable,1,14.95,02/06/19 18:28,"813 Jackson St, New York City, NY 10001" +163210,AA Batteries (4-pack),1,3.84,02/28/19 19:10,"651 Washington St, Portland, OR 97035" +163211,AA Batteries (4-pack),1,3.84,02/01/19 12:32,"338 West St, Portland, OR 97035" +163212,iPhone,1,700,02/07/19 01:03,"884 Chestnut St, San Francisco, CA 94016" +163213,USB-C Charging Cable,1,11.95,02/18/19 11:41,"480 11th St, Seattle, WA 98101" +163214,AAA Batteries (4-pack),1,2.99,02/21/19 15:52,"870 2nd St, Portland, OR 97035" +163215,Bose SoundSport Headphones,1,99.99,02/26/19 10:56,"330 Lakeview St, Atlanta, GA 30301" +163216,AAA Batteries (4-pack),1,2.99,02/01/19 08:50,"561 4th St, Seattle, WA 98101" +163217,Bose SoundSport Headphones,1,99.99,02/08/19 22:32,"717 Washington St, Dallas, TX 75001" +163218,USB-C Charging Cable,1,11.95,02/14/19 17:11,"240 Park St, Los Angeles, CA 90001" +163219,ThinkPad Laptop,1,999.99,02/04/19 17:08,"214 North St, Los Angeles, CA 90001" +163220,Bose SoundSport Headphones,1,99.99,02/18/19 20:21,"234 Dogwood St, Los Angeles, CA 90001" +163221,Wired Headphones,3,11.99,02/24/19 20:39,"449 Washington St, Seattle, WA 98101" +163222,Wired Headphones,1,11.99,02/04/19 21:52,"314 Forest St, San Francisco, CA 94016" +163223,USB-C Charging Cable,1,11.95,02/08/19 18:39,"79 8th St, Boston, MA 02215" +163224,AAA Batteries (4-pack),1,2.99,02/03/19 15:24,"523 13th St, Los Angeles, CA 90001" +163225,AAA Batteries (4-pack),1,2.99,02/05/19 17:07,"679 Lake St, Los Angeles, CA 90001" +163226,27in FHD Monitor,1,149.99,02/02/19 21:27,"171 6th St, San Francisco, CA 94016" +163227,Wired Headphones,1,11.99,02/23/19 14:52,"775 Lincoln St, Austin, TX 73301" +163228,Macbook Pro Laptop,1,1700,02/24/19 09:22,"32 Forest St, Los Angeles, CA 90001" +163229,Flatscreen TV,1,300,02/07/19 12:04,"695 Adams St, San Francisco, CA 94016" +163230,Apple Airpods Headphones,1,150,02/05/19 14:00,"697 North St, Los Angeles, CA 90001" +163231,USB-C Charging Cable,1,11.95,02/03/19 20:28,"376 11th St, Dallas, TX 75001" +163232,AA Batteries (4-pack),1,3.84,02/02/19 16:41,"401 Ridge St, Atlanta, GA 30301" +163233,AA Batteries (4-pack),2,3.84,02/18/19 06:21,"721 Meadow St, Seattle, WA 98101" +163234,Lightning Charging Cable,1,14.95,02/13/19 13:12,"776 Wilson St, Austin, TX 73301" +163235,AAA Batteries (4-pack),1,2.99,02/03/19 13:10,"568 River St, San Francisco, CA 94016" +163236,Bose SoundSport Headphones,1,99.99,02/15/19 20:23,"502 1st St, Boston, MA 02215" +163237,AA Batteries (4-pack),1,3.84,02/05/19 20:32,"646 1st St, San Francisco, CA 94016" +163238,27in FHD Monitor,1,149.99,02/05/19 11:27,"478 Jackson St, Atlanta, GA 30301" +163239,Wired Headphones,1,11.99,02/06/19 17:19,"674 Lake St, Boston, MA 02215" +163240,Lightning Charging Cable,1,14.95,02/23/19 20:21,"619 8th St, San Francisco, CA 94016" +163241,Wired Headphones,1,11.99,02/05/19 13:35,"832 Elm St, San Francisco, CA 94016" +163242,Google Phone,1,600,02/01/19 18:41,"221 Pine St, Dallas, TX 75001" +163243,Flatscreen TV,1,300,02/14/19 03:27,"415 9th St, New York City, NY 10001" +163244,27in FHD Monitor,1,149.99,02/15/19 19:24,"41 Spruce St, San Francisco, CA 94016" +163245,Flatscreen TV,1,300,02/24/19 13:22,"275 Lincoln St, San Francisco, CA 94016" +163246,34in Ultrawide Monitor,1,379.99,02/10/19 11:49,"257 Johnson St, Boston, MA 02215" +163247,AAA Batteries (4-pack),1,2.99,02/25/19 23:36,"261 Forest St, Atlanta, GA 30301" +163248,Google Phone,1,600,02/23/19 19:32,"574 13th St, San Francisco, CA 94016" +163248,USB-C Charging Cable,1,11.95,02/23/19 19:32,"574 13th St, San Francisco, CA 94016" +163249,Lightning Charging Cable,1,14.95,02/07/19 14:26,"179 Meadow St, Seattle, WA 98101" +163250,USB-C Charging Cable,2,11.95,02/02/19 15:44,"626 Elm St, San Francisco, CA 94016" +163251,AAA Batteries (4-pack),2,2.99,02/25/19 11:56,"19 Hickory St, Atlanta, GA 30301" +163252,34in Ultrawide Monitor,1,379.99,02/05/19 15:44,"173 10th St, New York City, NY 10001" +163253,Apple Airpods Headphones,1,150,02/24/19 22:13,"833 Lake St, San Francisco, CA 94016" +163254,Wired Headphones,1,11.99,02/22/19 16:10,"460 Spruce St, Boston, MA 02215" +163255,AA Batteries (4-pack),2,3.84,02/06/19 19:57,"975 Center St, Portland, OR 97035" +163256,Wired Headphones,1,11.99,02/10/19 17:48,"441 13th St, Atlanta, GA 30301" +163257,27in FHD Monitor,1,149.99,02/23/19 08:53,"59 Park St, New York City, NY 10001" +163258,Apple Airpods Headphones,1,150,02/14/19 06:14,"647 Hill St, Austin, TX 73301" +163259,Lightning Charging Cable,1,14.95,02/22/19 10:15,"735 10th St, New York City, NY 10001" +163260,Apple Airpods Headphones,1,150,02/24/19 02:46,"867 Main St, Dallas, TX 75001" +163261,AAA Batteries (4-pack),1,2.99,02/07/19 10:23,"191 Hill St, Seattle, WA 98101" +163262,Apple Airpods Headphones,1,150,02/18/19 08:21,"209 Willow St, Los Angeles, CA 90001" +163263,Flatscreen TV,1,300,02/01/19 10:44,"707 5th St, New York City, NY 10001" +163264,Wired Headphones,1,11.99,02/08/19 21:57,"989 1st St, San Francisco, CA 94016" +163265,Wired Headphones,1,11.99,02/08/19 20:39,"565 Spruce St, Austin, TX 73301" +163266,27in 4K Gaming Monitor,1,389.99,02/04/19 23:49,"251 7th St, Los Angeles, CA 90001" +163267,AA Batteries (4-pack),3,3.84,02/15/19 12:49,"764 Cherry St, Portland, OR 97035" +163268,USB-C Charging Cable,1,11.95,02/04/19 09:56,"973 Park St, Dallas, TX 75001" +163269,Lightning Charging Cable,2,14.95,02/18/19 14:20,"223 Meadow St, Seattle, WA 98101" +163270,AA Batteries (4-pack),1,3.84,02/27/19 20:08,"519 Cedar St, Los Angeles, CA 90001" +163271,AAA Batteries (4-pack),1,2.99,02/15/19 11:35,"174 Hill St, Los Angeles, CA 90001" +163272,Flatscreen TV,1,300,02/26/19 20:19,"897 14th St, Dallas, TX 75001" +163273,AAA Batteries (4-pack),1,2.99,02/16/19 14:59,"445 Highland St, San Francisco, CA 94016" +163274,Flatscreen TV,1,300,02/15/19 11:39,"651 Johnson St, Dallas, TX 75001" +163275,Apple Airpods Headphones,1,150,02/05/19 23:37,"851 Highland St, San Francisco, CA 94016" +163276,iPhone,1,700,02/04/19 01:08,"475 Center St, San Francisco, CA 94016" +163276,Lightning Charging Cable,1,14.95,02/04/19 01:08,"475 Center St, San Francisco, CA 94016" +163277,AAA Batteries (4-pack),1,2.99,02/12/19 10:39,"432 14th St, Los Angeles, CA 90001" +163278,Bose SoundSport Headphones,1,99.99,02/03/19 14:01,"863 Cherry St, Atlanta, GA 30301" +163279,USB-C Charging Cable,1,11.95,02/03/19 22:40,"315 8th St, New York City, NY 10001" +163280,Google Phone,1,600,02/17/19 17:49,"761 Cedar St, Boston, MA 02215" +163281,34in Ultrawide Monitor,1,379.99,02/10/19 09:20,"550 Johnson St, Boston, MA 02215" +163282,Wired Headphones,2,11.99,02/10/19 10:34,"647 5th St, San Francisco, CA 94016" +163283,AAA Batteries (4-pack),1,2.99,02/25/19 14:53,"475 Chestnut St, Seattle, WA 98101" +163284,Wired Headphones,1,11.99,02/01/19 11:55,"124 4th St, Boston, MA 02215" +163285,AA Batteries (4-pack),1,3.84,02/16/19 09:12,"427 Spruce St, Dallas, TX 75001" +163286,27in FHD Monitor,1,149.99,02/02/19 15:24,"935 8th St, Los Angeles, CA 90001" +163287,Bose SoundSport Headphones,1,99.99,02/18/19 21:39,"908 Church St, Seattle, WA 98101" +163288,Macbook Pro Laptop,1,1700,02/16/19 18:53,"196 Church St, New York City, NY 10001" +163289,AA Batteries (4-pack),1,3.84,02/11/19 20:29,"235 Center St, Portland, OR 97035" +163290,Flatscreen TV,1,300,02/15/19 00:02,"877 West St, New York City, NY 10001" +163291,AAA Batteries (4-pack),1,2.99,02/08/19 11:56,"730 Sunset St, New York City, NY 10001" +163292,Apple Airpods Headphones,1,150,02/06/19 17:17,"574 11th St, Boston, MA 02215" +163293,Apple Airpods Headphones,1,150,02/16/19 20:47,"448 Lakeview St, Boston, MA 02215" +163294,Google Phone,1,600,02/04/19 21:22,"647 Dogwood St, Los Angeles, CA 90001" +163295,ThinkPad Laptop,1,999.99,02/01/19 22:32,"893 Dogwood St, Los Angeles, CA 90001" +163296,AA Batteries (4-pack),1,3.84,02/15/19 03:27,"925 Park St, New York City, NY 10001" +163297,USB-C Charging Cable,1,11.95,02/03/19 08:14,"138 Forest St, San Francisco, CA 94016" +163298,Bose SoundSport Headphones,1,99.99,02/21/19 17:27,"160 Lincoln St, New York City, NY 10001" +163299,ThinkPad Laptop,1,999.99,02/07/19 22:55,"788 Walnut St, Portland, OR 97035" +163300,USB-C Charging Cable,1,11.95,02/27/19 12:37,"215 Hickory St, Atlanta, GA 30301" +163301,AAA Batteries (4-pack),1,2.99,02/03/19 15:44,"778 13th St, Atlanta, GA 30301" +163302,Lightning Charging Cable,1,14.95,02/21/19 07:26,"764 Lake St, Portland, OR 97035" +163303,LG Washing Machine,1,600.0,02/12/19 18:58,"907 Park St, Seattle, WA 98101" +163304,Google Phone,1,600,02/27/19 18:53,"468 Washington St, Seattle, WA 98101" +163304,Bose SoundSport Headphones,1,99.99,02/27/19 18:53,"468 Washington St, Seattle, WA 98101" +163305,USB-C Charging Cable,2,11.95,02/20/19 10:55,"804 7th St, San Francisco, CA 94016" +163306,Apple Airpods Headphones,2,150,02/01/19 21:53,"242 Sunset St, Los Angeles, CA 90001" +163307,Lightning Charging Cable,1,14.95,02/19/19 18:05,"669 Ridge St, Boston, MA 02215" +163308,34in Ultrawide Monitor,1,379.99,02/05/19 08:18,"207 Adams St, Boston, MA 02215" +163309,Google Phone,1,600,02/26/19 18:20,"396 Johnson St, Los Angeles, CA 90001" +163310,Macbook Pro Laptop,1,1700,02/23/19 14:14,"172 Lakeview St, Atlanta, GA 30301" +163310,iPhone,1,700,02/23/19 14:14,"172 Lakeview St, Atlanta, GA 30301" +163311,USB-C Charging Cable,1,11.95,02/03/19 20:38,"722 Dogwood St, Boston, MA 02215" +163312,USB-C Charging Cable,1,11.95,02/17/19 22:19,"834 10th St, San Francisco, CA 94016" +163313,AA Batteries (4-pack),1,3.84,02/21/19 21:23,"345 Johnson St, Portland, OR 97035" +163314,20in Monitor,1,109.99,02/22/19 15:53,"888 Sunset St, Atlanta, GA 30301" +163315,Apple Airpods Headphones,1,150,02/01/19 09:26,"391 6th St, Los Angeles, CA 90001" +163316,USB-C Charging Cable,2,11.95,02/11/19 21:26,"782 8th St, San Francisco, CA 94016" +163316,Lightning Charging Cable,1,14.95,02/11/19 21:26,"782 8th St, San Francisco, CA 94016" +163317,AAA Batteries (4-pack),1,2.99,02/09/19 06:21,"334 West St, Atlanta, GA 30301" +163318,AAA Batteries (4-pack),2,2.99,02/06/19 20:47,"773 Willow St, San Francisco, CA 94016" +163319,Lightning Charging Cable,1,14.95,02/07/19 23:11,"530 Hill St, New York City, NY 10001" +163320,Apple Airpods Headphones,1,150,02/20/19 21:27,"290 River St, New York City, NY 10001" +163321,AA Batteries (4-pack),2,3.84,02/15/19 23:11,"429 Madison St, Austin, TX 73301" +163322,Apple Airpods Headphones,1,150,02/07/19 19:20,"783 Maple St, Los Angeles, CA 90001" +163323,AAA Batteries (4-pack),1,2.99,02/02/19 18:14,"580 5th St, Los Angeles, CA 90001" +163324,Lightning Charging Cable,1,14.95,02/10/19 20:25,"808 1st St, Dallas, TX 75001" +163325,USB-C Charging Cable,1,11.95,02/10/19 18:39,"640 Ridge St, New York City, NY 10001" +163326,USB-C Charging Cable,1,11.95,02/07/19 12:46,"394 2nd St, San Francisco, CA 94016" +163327,AA Batteries (4-pack),1,3.84,02/23/19 14:17,"414 Park St, San Francisco, CA 94016" +163328,AA Batteries (4-pack),1,3.84,02/17/19 12:31,"793 Dogwood St, Atlanta, GA 30301" +163329,ThinkPad Laptop,1,999.99,02/25/19 10:53,"151 Main St, Austin, TX 73301" +163330,Apple Airpods Headphones,1,150,02/05/19 12:00,"657 7th St, San Francisco, CA 94016" +163331,Wired Headphones,1,11.99,02/02/19 20:22,"44 Center St, Dallas, TX 75001" +163332,Wired Headphones,1,11.99,02/23/19 09:13,"412 9th St, Atlanta, GA 30301" +163333,Lightning Charging Cable,1,14.95,02/26/19 04:17,"123 Chestnut St, Portland, OR 97035" +163334,AAA Batteries (4-pack),1,2.99,02/02/19 21:54,"203 2nd St, Atlanta, GA 30301" +163335,Macbook Pro Laptop,1,1700,02/21/19 19:38,"907 Dogwood St, Dallas, TX 75001" +163336,USB-C Charging Cable,1,11.95,02/28/19 12:28,"811 11th St, Boston, MA 02215" +163337,AA Batteries (4-pack),1,3.84,02/21/19 09:22,"615 Walnut St, Dallas, TX 75001" +163338,34in Ultrawide Monitor,1,379.99,02/08/19 17:57,"725 Spruce St, New York City, NY 10001" +163338,AAA Batteries (4-pack),2,2.99,02/08/19 17:57,"725 Spruce St, New York City, NY 10001" +163339,USB-C Charging Cable,1,11.95,02/02/19 13:24,"102 Lake St, Seattle, WA 98101" +163340,AA Batteries (4-pack),1,3.84,02/15/19 01:40,"946 Jackson St, Dallas, TX 75001" +163341,AA Batteries (4-pack),1,3.84,02/21/19 09:54,"685 9th St, San Francisco, CA 94016" +163342,Lightning Charging Cable,1,14.95,02/25/19 00:06,"511 13th St, New York City, NY 10001" +163343,AA Batteries (4-pack),1,3.84,02/11/19 20:28,"148 Walnut St, New York City, NY 10001" +163344,27in FHD Monitor,1,149.99,02/01/19 17:45,"318 Jackson St, Seattle, WA 98101" +163345,USB-C Charging Cable,1,11.95,02/19/19 18:03,"172 Madison St, Los Angeles, CA 90001" +163346,Google Phone,1,600,02/11/19 01:36,"835 1st St, Seattle, WA 98101" +163347,Apple Airpods Headphones,1,150,02/07/19 19:20,"441 Johnson St, San Francisco, CA 94016" +163348,AAA Batteries (4-pack),1,2.99,02/23/19 14:56,"660 11th St, New York City, NY 10001" +163349,Lightning Charging Cable,1,14.95,02/12/19 17:06,"483 Main St, Atlanta, GA 30301" +163350,Macbook Pro Laptop,1,1700,02/24/19 11:26,"803 Washington St, Boston, MA 02215" +163351,Flatscreen TV,1,300,02/01/19 18:46,"909 Main St, Portland, OR 97035" +163352,Lightning Charging Cable,1,14.95,02/24/19 01:25,"839 Johnson St, Seattle, WA 98101" +163353,Wired Headphones,1,11.99,02/27/19 16:55,"33 8th St, San Francisco, CA 94016" +163354,Bose SoundSport Headphones,1,99.99,02/19/19 22:27,"736 Chestnut St, Atlanta, GA 30301" +163355,Bose SoundSport Headphones,1,99.99,02/26/19 22:22,"921 14th St, Atlanta, GA 30301" +163356,USB-C Charging Cable,1,11.95,02/07/19 16:57,"75 11th St, San Francisco, CA 94016" +163357,Lightning Charging Cable,1,14.95,02/23/19 16:10,"285 Hickory St, San Francisco, CA 94016" +163358,34in Ultrawide Monitor,1,379.99,02/13/19 23:03,"982 West St, Austin, TX 73301" +163359,AA Batteries (4-pack),1,3.84,02/11/19 13:07,"69 North St, Los Angeles, CA 90001" +163360,27in 4K Gaming Monitor,1,389.99,02/26/19 17:19,"856 Cherry St, San Francisco, CA 94016" +163361,Wired Headphones,1,11.99,02/02/19 19:24,"188 Spruce St, Los Angeles, CA 90001" +163362,Wired Headphones,1,11.99,02/07/19 09:20,"227 Cedar St, San Francisco, CA 94016" +163363,Bose SoundSport Headphones,1,99.99,02/01/19 18:25,"116 6th St, Boston, MA 02215" +163364,Bose SoundSport Headphones,1,99.99,02/06/19 07:56,"93 Lakeview St, Portland, OR 97035" +163365,Bose SoundSport Headphones,1,99.99,02/01/19 15:56,"162 Main St, Boston, MA 02215" +163366,AAA Batteries (4-pack),2,2.99,02/01/19 17:07,"339 West St, Portland, OR 97035" +163367,Bose SoundSport Headphones,1,99.99,02/26/19 21:48,"323 Main St, Atlanta, GA 30301" +163368,AAA Batteries (4-pack),2,2.99,02/14/19 20:23,"372 Walnut St, San Francisco, CA 94016" +163369,Wired Headphones,1,11.99,02/08/19 03:55,"930 2nd St, Atlanta, GA 30301" +163370,AAA Batteries (4-pack),5,2.99,02/26/19 16:25,"420 River St, San Francisco, CA 94016" +163371,Lightning Charging Cable,1,14.95,02/24/19 12:07,"981 River St, San Francisco, CA 94016" +163372,AAA Batteries (4-pack),2,2.99,02/06/19 22:48,"25 11th St, New York City, NY 10001" +163373,Wired Headphones,1,11.99,02/25/19 15:44,"146 Lake St, San Francisco, CA 94016" +163374,AAA Batteries (4-pack),3,2.99,02/26/19 16:15,"224 9th St, Seattle, WA 98101" +163375,34in Ultrawide Monitor,1,379.99,02/11/19 08:54,"135 9th St, San Francisco, CA 94016" +163376,27in FHD Monitor,1,149.99,02/03/19 17:52,"553 1st St, Dallas, TX 75001" +163377,Bose SoundSport Headphones,1,99.99,02/05/19 14:31,"575 Ridge St, Boston, MA 02215" +163378,AA Batteries (4-pack),1,3.84,02/25/19 17:38,"689 Maple St, Seattle, WA 98101" +163379,iPhone,1,700,02/06/19 13:03,"126 4th St, Los Angeles, CA 90001" +163380,Lightning Charging Cable,1,14.95,02/18/19 17:22,"921 5th St, Atlanta, GA 30301" +,,,,, +163381,Lightning Charging Cable,1,14.95,02/07/19 18:29,"430 Chestnut St, San Francisco, CA 94016" +163382,Macbook Pro Laptop,1,1700,02/08/19 16:58,"312 Pine St, Atlanta, GA 30301" +163383,27in 4K Gaming Monitor,1,389.99,02/01/19 15:32,"325 11th St, Seattle, WA 98101" +163384,iPhone,1,700,02/21/19 16:07,"637 Washington St, Los Angeles, CA 90001" +163384,Wired Headphones,2,11.99,02/21/19 16:07,"637 Washington St, Los Angeles, CA 90001" +163385,Lightning Charging Cable,2,14.95,02/23/19 14:22,"341 4th St, Boston, MA 02215" +163386,Bose SoundSport Headphones,1,99.99,02/10/19 17:27,"169 Forest St, Los Angeles, CA 90001" +163387,20in Monitor,1,109.99,02/21/19 08:10,"306 Lakeview St, San Francisco, CA 94016" +163388,Lightning Charging Cable,1,14.95,02/09/19 13:23,"597 Hickory St, New York City, NY 10001" +163389,AA Batteries (4-pack),1,3.84,02/05/19 20:20,"561 River St, San Francisco, CA 94016" +163390,Wired Headphones,2,11.99,02/09/19 03:40,"312 12th St, Boston, MA 02215" +163391,Lightning Charging Cable,1,14.95,02/03/19 06:55,"773 North St, New York City, NY 10001" +163392,27in FHD Monitor,1,149.99,02/15/19 11:27,"891 7th St, Atlanta, GA 30301" +163393,AA Batteries (4-pack),2,3.84,02/21/19 14:35,"273 Highland St, New York City, NY 10001" +163394,AAA Batteries (4-pack),1,2.99,02/16/19 19:09,"19 10th St, Los Angeles, CA 90001" +163395,USB-C Charging Cable,1,11.95,02/09/19 10:11,"468 2nd St, San Francisco, CA 94016" +163396,Wired Headphones,1,11.99,02/07/19 17:27,"869 Cedar St, Seattle, WA 98101" +163397,USB-C Charging Cable,1,11.95,02/22/19 15:28,"697 Willow St, Atlanta, GA 30301" +163398,Lightning Charging Cable,1,14.95,02/24/19 15:51,"57 Church St, Austin, TX 73301" +163399,AA Batteries (4-pack),1,3.84,02/02/19 19:47,"872 Park St, Boston, MA 02215" +163400,20in Monitor,1,109.99,02/08/19 13:34,"194 Hickory St, Boston, MA 02215" +163401,AA Batteries (4-pack),1,3.84,02/18/19 11:49,"902 Washington St, New York City, NY 10001" +163402,Wired Headphones,1,11.99,02/09/19 00:35,"497 Jefferson St, New York City, NY 10001" +163403,27in 4K Gaming Monitor,1,389.99,02/24/19 19:11,"635 14th St, Dallas, TX 75001" +163404,USB-C Charging Cable,1,11.95,02/15/19 10:37,"697 Meadow St, Dallas, TX 75001" +163405,Wired Headphones,1,11.99,02/13/19 00:10,"424 Park St, Los Angeles, CA 90001" +163406,27in FHD Monitor,1,149.99,02/18/19 18:54,"716 Lincoln St, Los Angeles, CA 90001" +163407,USB-C Charging Cable,1,11.95,02/01/19 09:49,"857 Sunset St, San Francisco, CA 94016" +163408,20in Monitor,1,109.99,02/10/19 07:16,"771 Chestnut St, San Francisco, CA 94016" +163409,Bose SoundSport Headphones,1,99.99,02/07/19 13:27,"572 Spruce St, Portland, OR 97035" +163410,27in 4K Gaming Monitor,1,389.99,02/18/19 15:44,"581 Madison St, Dallas, TX 75001" +163411,AA Batteries (4-pack),1,3.84,02/07/19 12:38,"753 West St, Seattle, WA 98101" +163412,27in 4K Gaming Monitor,1,389.99,02/11/19 09:01,"937 Jefferson St, New York City, NY 10001" +163413,USB-C Charging Cable,2,11.95,02/02/19 21:50,"190 Main St, New York City, NY 10001" +163414,Lightning Charging Cable,1,14.95,02/27/19 15:40,"887 Elm St, Portland, OR 97035" +163415,Apple Airpods Headphones,1,150,02/19/19 23:32,"593 Willow St, San Francisco, CA 94016" +163416,27in 4K Gaming Monitor,1,389.99,02/19/19 20:19,"910 Sunset St, New York City, NY 10001" +163417,AA Batteries (4-pack),4,3.84,02/24/19 12:57,"745 Forest St, Seattle, WA 98101" +163418,Macbook Pro Laptop,1,1700,02/26/19 13:14,"518 Main St, Atlanta, GA 30301" +163419,Wired Headphones,1,11.99,02/15/19 16:46,"586 Sunset St, San Francisco, CA 94016" +163420,Lightning Charging Cable,1,14.95,02/12/19 17:59,"967 Meadow St, Los Angeles, CA 90001" +163421,USB-C Charging Cable,1,11.95,02/13/19 21:50,"680 7th St, Boston, MA 02215" +163422,Lightning Charging Cable,1,14.95,02/13/19 20:44,"744 North St, San Francisco, CA 94016" +163423,Apple Airpods Headphones,1,150,02/23/19 14:13,"594 South St, Seattle, WA 98101" +163424,USB-C Charging Cable,1,11.95,02/15/19 23:56,"824 11th St, San Francisco, CA 94016" +163425,Macbook Pro Laptop,1,1700,02/27/19 12:55,"864 Lake St, New York City, NY 10001" +163426,AA Batteries (4-pack),1,3.84,02/02/19 00:08,"809 Willow St, San Francisco, CA 94016" +163427,AA Batteries (4-pack),2,3.84,02/12/19 19:37,"236 2nd St, Portland, OR 97035" +163428,Lightning Charging Cable,1,14.95,02/19/19 10:40,"173 Spruce St, San Francisco, CA 94016" +163429,iPhone,1,700,02/11/19 10:00,"868 Ridge St, New York City, NY 10001" +163430,USB-C Charging Cable,1,11.95,02/21/19 20:00,"688 1st St, Los Angeles, CA 90001" +163431,Apple Airpods Headphones,1,150,02/22/19 23:05,"381 River St, San Francisco, CA 94016" +163432,Apple Airpods Headphones,2,150,02/20/19 17:38,"417 Cedar St, Atlanta, GA 30301" +163433,Flatscreen TV,1,300,02/02/19 17:36,"583 Cherry St, San Francisco, CA 94016" +163434,Apple Airpods Headphones,1,150,02/02/19 11:13,"699 Maple St, Portland, OR 97035" +163435,Lightning Charging Cable,1,14.95,03/01/19 01:42,"519 14th St, Portland, ME 04101" +163436,USB-C Charging Cable,1,11.95,02/11/19 23:51,"548 Center St, Portland, OR 97035" +163437,Vareebadd Phone,1,400,02/28/19 07:17,"596 6th St, Boston, MA 02215" +163438,AAA Batteries (4-pack),1,2.99,02/14/19 00:20,"458 Willow St, Boston, MA 02215" +163439,20in Monitor,1,109.99,02/13/19 13:01,"723 12th St, Atlanta, GA 30301" +163440,Apple Airpods Headphones,1,150,02/20/19 21:42,"77 Cherry St, Seattle, WA 98101" +163441,USB-C Charging Cable,1,11.95,02/13/19 17:56,"214 2nd St, New York City, NY 10001" +163442,Bose SoundSport Headphones,1,99.99,02/23/19 12:10,"1 Wilson St, San Francisco, CA 94016" +163443,27in FHD Monitor,1,149.99,02/06/19 22:22,"884 Washington St, Austin, TX 73301" +163444,Wired Headphones,1,11.99,02/01/19 16:59,"104 Highland St, San Francisco, CA 94016" +163445,27in 4K Gaming Monitor,1,389.99,02/08/19 20:43,"130 Jefferson St, Atlanta, GA 30301" +163446,USB-C Charging Cable,2,11.95,02/01/19 19:54,"193 9th St, San Francisco, CA 94016" +163447,AA Batteries (4-pack),1,3.84,02/05/19 12:56,"9 Washington St, New York City, NY 10001" +163448,Bose SoundSport Headphones,1,99.99,02/18/19 14:11,"748 Willow St, New York City, NY 10001" +163449,AAA Batteries (4-pack),1,2.99,02/02/19 16:57,"800 South St, Portland, OR 97035" +163450,AAA Batteries (4-pack),1,2.99,02/22/19 17:59,"876 Lake St, San Francisco, CA 94016" +163451,Bose SoundSport Headphones,1,99.99,02/13/19 02:27,"12 Sunset St, Los Angeles, CA 90001" +163452,Wired Headphones,1,11.99,02/03/19 07:30,"711 Hickory St, Atlanta, GA 30301" +163453,AAA Batteries (4-pack),1,2.99,02/16/19 19:42,"386 Church St, New York City, NY 10001" +163454,Wired Headphones,1,11.99,02/23/19 12:33,"957 11th St, San Francisco, CA 94016" +163455,USB-C Charging Cable,1,11.95,02/08/19 06:40,"540 Cedar St, San Francisco, CA 94016" +163456,Bose SoundSport Headphones,1,99.99,02/15/19 00:29,"643 Elm St, Portland, OR 97035" +163457,USB-C Charging Cable,1,11.95,02/10/19 08:27,"533 12th St, Dallas, TX 75001" +163458,Lightning Charging Cable,1,14.95,02/02/19 11:18,"535 Meadow St, Atlanta, GA 30301" +163459,34in Ultrawide Monitor,1,379.99,02/15/19 19:05,"181 Cedar St, Seattle, WA 98101" +163460,AA Batteries (4-pack),1,3.84,02/11/19 12:03,"444 South St, Dallas, TX 75001" +163461,AAA Batteries (4-pack),2,2.99,02/18/19 19:28,"851 Park St, Los Angeles, CA 90001" +163462,Macbook Pro Laptop,1,1700,02/12/19 19:32,"74 Johnson St, Portland, ME 04101" +163463,AA Batteries (4-pack),2,3.84,02/11/19 11:46,"46 Maple St, Atlanta, GA 30301" +163464,Bose SoundSport Headphones,1,99.99,02/27/19 17:22,"162 Park St, Atlanta, GA 30301" +163465,USB-C Charging Cable,1,11.95,02/05/19 22:40,"139 Meadow St, New York City, NY 10001" +163466,USB-C Charging Cable,1,11.95,02/01/19 11:33,"158 West St, Seattle, WA 98101" +163467,Lightning Charging Cable,1,14.95,02/09/19 12:34,"418 Chestnut St, San Francisco, CA 94016" +163468,Vareebadd Phone,1,400,02/14/19 03:02,"373 14th St, Atlanta, GA 30301" +163468,USB-C Charging Cable,2,11.95,02/14/19 03:02,"373 14th St, Atlanta, GA 30301" +163469,USB-C Charging Cable,1,11.95,02/06/19 21:24,"501 Ridge St, Los Angeles, CA 90001" +163470,Lightning Charging Cable,1,14.95,02/11/19 18:26,"293 2nd St, San Francisco, CA 94016" +163471,USB-C Charging Cable,1,11.95,02/19/19 19:36,"9 13th St, San Francisco, CA 94016" +163472,Bose SoundSport Headphones,1,99.99,02/11/19 07:14,"210 Cherry St, Dallas, TX 75001" +163473,AAA Batteries (4-pack),1,2.99,02/07/19 14:12,"876 Walnut St, New York City, NY 10001" +163474,USB-C Charging Cable,1,11.95,02/24/19 08:57,"737 Meadow St, Seattle, WA 98101" +163475,Apple Airpods Headphones,1,150,02/21/19 21:11,"922 Cedar St, Austin, TX 73301" +163476,27in FHD Monitor,1,149.99,02/06/19 17:43,"717 Ridge St, San Francisco, CA 94016" +163477,Lightning Charging Cable,1,14.95,02/23/19 19:32,"772 Adams St, San Francisco, CA 94016" +163478,Apple Airpods Headphones,1,150,02/19/19 07:05,"545 Cherry St, Los Angeles, CA 90001" +163479,Lightning Charging Cable,1,14.95,02/05/19 20:24,"106 4th St, Boston, MA 02215" +163480,34in Ultrawide Monitor,1,379.99,02/25/19 23:43,"733 Cherry St, Austin, TX 73301" +163481,AAA Batteries (4-pack),1,2.99,02/10/19 20:26,"890 Cherry St, Los Angeles, CA 90001" +163482,Macbook Pro Laptop,1,1700,02/02/19 14:12,"14 9th St, San Francisco, CA 94016" +163483,Bose SoundSport Headphones,1,99.99,02/15/19 00:19,"505 Dogwood St, Austin, TX 73301" +163484,AA Batteries (4-pack),2,3.84,02/04/19 17:40,"862 Wilson St, Boston, MA 02215" +163485,AA Batteries (4-pack),1,3.84,02/02/19 15:21,"423 Spruce St, Seattle, WA 98101" +163486,Wired Headphones,1,11.99,02/01/19 11:34,"510 6th St, Boston, MA 02215" +163487,USB-C Charging Cable,1,11.95,02/22/19 10:38,"282 12th St, San Francisco, CA 94016" +163488,USB-C Charging Cable,1,11.95,02/04/19 07:31,"599 Park St, San Francisco, CA 94016" +163489,iPhone,1,700,02/23/19 15:06,"717 Wilson St, Los Angeles, CA 90001" +163490,AA Batteries (4-pack),1,3.84,02/19/19 13:57,"355 Church St, San Francisco, CA 94016" +163491,Apple Airpods Headphones,1,150,02/04/19 17:56,"887 Lake St, Los Angeles, CA 90001" +163492,AAA Batteries (4-pack),1,2.99,02/22/19 12:29,"233 Elm St, San Francisco, CA 94016" +163493,USB-C Charging Cable,1,11.95,02/13/19 13:17,"787 Cedar St, Los Angeles, CA 90001" +163494,AA Batteries (4-pack),3,3.84,02/03/19 10:51,"449 Forest St, Atlanta, GA 30301" +163495,Bose SoundSport Headphones,1,99.99,02/27/19 18:58,"854 Wilson St, Atlanta, GA 30301" +163495,Wired Headphones,1,11.99,02/27/19 18:58,"854 Wilson St, Atlanta, GA 30301" +163496,AAA Batteries (4-pack),1,2.99,02/05/19 01:55,"59 Adams St, Dallas, TX 75001" +163497,Wired Headphones,1,11.99,02/20/19 20:20,"343 Cherry St, San Francisco, CA 94016" +163498,Bose SoundSport Headphones,1,99.99,02/13/19 15:55,"281 Wilson St, Atlanta, GA 30301" +163499,Wired Headphones,1,11.99,02/03/19 21:38,"385 West St, Seattle, WA 98101" +163500,20in Monitor,1,109.99,02/26/19 07:17,"633 7th St, Los Angeles, CA 90001" +163501,USB-C Charging Cable,1,11.95,02/08/19 01:30,"275 Jefferson St, San Francisco, CA 94016" +163502,USB-C Charging Cable,1,11.95,02/19/19 13:37,"952 Lakeview St, Boston, MA 02215" +163503,27in 4K Gaming Monitor,1,389.99,02/27/19 08:14,"531 River St, Portland, OR 97035" +163504,LG Dryer,1,600.0,02/23/19 21:53,"484 Madison St, Los Angeles, CA 90001" +163505,Bose SoundSport Headphones,1,99.99,02/06/19 13:45,"475 Jefferson St, Boston, MA 02215" +163506,Wired Headphones,1,11.99,02/26/19 15:51,"332 Washington St, Los Angeles, CA 90001" +163507,Bose SoundSport Headphones,1,99.99,02/28/19 10:08,"718 Hickory St, Boston, MA 02215" +163508,iPhone,1,700,02/23/19 13:48,"143 Madison St, Los Angeles, CA 90001" +163509,Lightning Charging Cable,1,14.95,02/13/19 10:33,"400 5th St, San Francisco, CA 94016" +163510,27in 4K Gaming Monitor,1,389.99,02/07/19 19:34,"670 Highland St, San Francisco, CA 94016" +163511,20in Monitor,1,109.99,02/13/19 19:11,"43 Dogwood St, Seattle, WA 98101" +163511,Lightning Charging Cable,1,14.95,02/13/19 19:11,"43 Dogwood St, Seattle, WA 98101" +163512,AA Batteries (4-pack),2,3.84,02/28/19 09:47,"826 1st St, Boston, MA 02215" +163513,Bose SoundSport Headphones,1,99.99,02/12/19 10:48,"375 River St, Atlanta, GA 30301" +163514,27in FHD Monitor,1,149.99,02/14/19 11:14,"543 West St, San Francisco, CA 94016" +163515,USB-C Charging Cable,1,11.95,02/24/19 18:33,"575 Forest St, New York City, NY 10001" +163516,AA Batteries (4-pack),1,3.84,02/28/19 17:54,"976 Ridge St, Los Angeles, CA 90001" +163517,iPhone,1,700,02/17/19 17:35,"17 Meadow St, Atlanta, GA 30301" +163518,AAA Batteries (4-pack),1,2.99,02/03/19 16:45,"41 Main St, Los Angeles, CA 90001" +163519,AAA Batteries (4-pack),1,2.99,02/10/19 15:19,"82 Washington St, New York City, NY 10001" +163520,27in 4K Gaming Monitor,1,389.99,02/24/19 18:05,"547 Maple St, San Francisco, CA 94016" +163521,AA Batteries (4-pack),2,3.84,02/14/19 15:02,"74 Jackson St, Seattle, WA 98101" +163522,27in FHD Monitor,1,149.99,02/28/19 22:06,"574 Sunset St, San Francisco, CA 94016" +163523,27in FHD Monitor,1,149.99,02/22/19 18:04,"179 10th St, Los Angeles, CA 90001" +163524,Bose SoundSport Headphones,1,99.99,02/08/19 16:09,"357 Church St, Dallas, TX 75001" +163525,Wired Headphones,1,11.99,02/06/19 20:34,"87 Hill St, San Francisco, CA 94016" +163526,Bose SoundSport Headphones,1,99.99,02/23/19 15:13,"928 Adams St, New York City, NY 10001" +163527,AA Batteries (4-pack),1,3.84,02/21/19 16:36,"957 8th St, Atlanta, GA 30301" +163528,ThinkPad Laptop,1,999.99,02/06/19 10:10,"290 Dogwood St, Portland, OR 97035" +163529,Apple Airpods Headphones,1,150,02/25/19 17:57,"447 Hill St, Los Angeles, CA 90001" +163530,iPhone,1,700,02/23/19 11:37,"496 North St, New York City, NY 10001" +163531,iPhone,1,700,02/26/19 19:53,"328 Highland St, Dallas, TX 75001" +163531,Lightning Charging Cable,1,14.95,02/26/19 19:53,"328 Highland St, Dallas, TX 75001" +163532,Bose SoundSport Headphones,1,99.99,02/22/19 23:46,"802 South St, Seattle, WA 98101" +163533,Macbook Pro Laptop,1,1700,02/05/19 19:05,"303 Pine St, Los Angeles, CA 90001" +163534,27in 4K Gaming Monitor,1,389.99,02/25/19 10:15,"315 Highland St, Austin, TX 73301" +163535,Bose SoundSport Headphones,1,99.99,02/22/19 17:54,"479 Center St, Boston, MA 02215" +163536,Wired Headphones,1,11.99,02/07/19 09:39,"661 13th St, New York City, NY 10001" +163537,iPhone,1,700,02/12/19 10:29,"835 6th St, Boston, MA 02215" +163538,Lightning Charging Cable,2,14.95,02/02/19 16:15,"747 6th St, San Francisco, CA 94016" +163539,Macbook Pro Laptop,1,1700,02/17/19 11:54,"145 Main St, Atlanta, GA 30301" +163540,AAA Batteries (4-pack),1,2.99,02/07/19 08:38,"959 7th St, Dallas, TX 75001" +163541,Lightning Charging Cable,2,14.95,02/08/19 10:04,"690 Forest St, Los Angeles, CA 90001" +163542,Lightning Charging Cable,1,14.95,02/16/19 20:55,"367 5th St, San Francisco, CA 94016" +163543,Bose SoundSport Headphones,1,99.99,02/06/19 17:56,"305 Lincoln St, Austin, TX 73301" +163544,Apple Airpods Headphones,1,150,02/25/19 18:23,"493 West St, Austin, TX 73301" +163545,Google Phone,1,600,02/02/19 19:55,"559 River St, Los Angeles, CA 90001" +163546,Macbook Pro Laptop,1,1700,02/15/19 13:29,"366 6th St, Los Angeles, CA 90001" +163547,USB-C Charging Cable,1,11.95,02/01/19 08:37,"793 Pine St, San Francisco, CA 94016" +163548,Bose SoundSport Headphones,1,99.99,02/14/19 15:03,"781 Johnson St, Seattle, WA 98101" +163549,USB-C Charging Cable,1,11.95,02/14/19 09:57,"205 1st St, Boston, MA 02215" +163550,USB-C Charging Cable,1,11.95,02/22/19 21:01,"918 13th St, Atlanta, GA 30301" +163551,34in Ultrawide Monitor,1,379.99,02/01/19 18:26,"409 Meadow St, Portland, ME 04101" +163552,Lightning Charging Cable,1,14.95,02/07/19 20:35,"861 Washington St, Los Angeles, CA 90001" +163553,USB-C Charging Cable,1,11.95,02/03/19 15:38,"904 Dogwood St, Austin, TX 73301" +163554,27in FHD Monitor,1,149.99,02/11/19 10:55,"717 Forest St, Portland, OR 97035" +163555,USB-C Charging Cable,1,11.95,02/13/19 13:34,"419 Forest St, Boston, MA 02215" +163555,34in Ultrawide Monitor,1,379.99,02/13/19 13:34,"419 Forest St, Boston, MA 02215" +163556,Apple Airpods Headphones,1,150,02/10/19 16:49,"251 Lake St, San Francisco, CA 94016" +163557,Wired Headphones,1,11.99,02/01/19 12:09,"811 6th St, Atlanta, GA 30301" +163558,Bose SoundSport Headphones,1,99.99,02/09/19 20:18,"916 Jefferson St, New York City, NY 10001" +163559,AA Batteries (4-pack),2,3.84,02/20/19 09:51,"782 Sunset St, New York City, NY 10001" +163560,Wired Headphones,1,11.99,02/23/19 20:15,"749 River St, New York City, NY 10001" +163561,Macbook Pro Laptop,1,1700,02/16/19 14:51,"424 Cedar St, Boston, MA 02215" +163562,AA Batteries (4-pack),1,3.84,02/23/19 09:15,"739 West St, New York City, NY 10001" +163563,Lightning Charging Cable,1,14.95,02/20/19 17:36,"995 Sunset St, Los Angeles, CA 90001" +163564,27in 4K Gaming Monitor,1,389.99,02/12/19 15:37,"270 Forest St, Los Angeles, CA 90001" +163565,AAA Batteries (4-pack),1,2.99,02/05/19 23:56,"444 Church St, San Francisco, CA 94016" +163566,USB-C Charging Cable,2,11.95,02/28/19 20:42,"921 Willow St, Boston, MA 02215" +163567,AAA Batteries (4-pack),1,2.99,02/19/19 18:29,"132 Meadow St, Seattle, WA 98101" +163568,Wired Headphones,1,11.99,02/15/19 12:31,"738 North St, San Francisco, CA 94016" +163569,Wired Headphones,1,11.99,02/23/19 20:17,"159 7th St, San Francisco, CA 94016" +163570,AAA Batteries (4-pack),1,2.99,02/20/19 16:51,"621 Willow St, Seattle, WA 98101" +163571,Apple Airpods Headphones,1,150,02/20/19 19:31,"932 Lake St, New York City, NY 10001" +163572,Lightning Charging Cable,1,14.95,02/19/19 13:28,"638 12th St, New York City, NY 10001" +163573,Lightning Charging Cable,1,14.95,02/13/19 22:00,"810 12th St, Atlanta, GA 30301" +163574,USB-C Charging Cable,1,11.95,02/15/19 13:34,"442 River St, Atlanta, GA 30301" +163575,Bose SoundSport Headphones,1,99.99,02/11/19 14:04,"271 Center St, Austin, TX 73301" +163576,Lightning Charging Cable,1,14.95,02/28/19 19:58,"228 Cherry St, Boston, MA 02215" +163577,34in Ultrawide Monitor,1,379.99,02/19/19 10:14,"52 Sunset St, San Francisco, CA 94016" +163578,AAA Batteries (4-pack),3,2.99,02/22/19 17:09,"155 Highland St, New York City, NY 10001" +163579,AA Batteries (4-pack),2,3.84,02/27/19 14:20,"252 Jackson St, Portland, OR 97035" +163580,Lightning Charging Cable,1,14.95,02/11/19 07:14,"591 9th St, San Francisco, CA 94016" +163581,34in Ultrawide Monitor,1,379.99,02/06/19 20:25,"727 Main St, Portland, OR 97035" +163582,Lightning Charging Cable,1,14.95,02/17/19 05:41,"734 Spruce St, San Francisco, CA 94016" +163583,34in Ultrawide Monitor,1,379.99,02/06/19 02:12,"260 Chestnut St, New York City, NY 10001" +163584,27in FHD Monitor,1,149.99,02/20/19 16:32,"532 Lakeview St, Boston, MA 02215" +163585,34in Ultrawide Monitor,1,379.99,02/26/19 13:46,"911 Meadow St, San Francisco, CA 94016" +163586,AAA Batteries (4-pack),2,2.99,02/06/19 08:53,"537 Center St, Boston, MA 02215" +163587,AAA Batteries (4-pack),2,2.99,02/10/19 10:01,"579 Spruce St, San Francisco, CA 94016" +163588,AAA Batteries (4-pack),1,2.99,02/13/19 19:07,"769 Lincoln St, Los Angeles, CA 90001" +163589,Bose SoundSport Headphones,1,99.99,02/09/19 18:08,"51 5th St, Portland, OR 97035" +163590,Apple Airpods Headphones,1,150,02/09/19 13:27,"462 4th St, Austin, TX 73301" +163591,20in Monitor,1,109.99,02/22/19 10:20,"368 4th St, Boston, MA 02215" +163592,Lightning Charging Cable,1,14.95,02/11/19 10:58,"397 Lake St, Portland, OR 97035" +163593,Wired Headphones,1,11.99,02/23/19 06:47,"256 12th St, Seattle, WA 98101" +163594,ThinkPad Laptop,1,999.99,02/17/19 13:39,"753 11th St, Los Angeles, CA 90001" +163595,USB-C Charging Cable,1,11.95,02/17/19 16:59,"280 Maple St, Boston, MA 02215" +163596,27in FHD Monitor,2,149.99,02/02/19 19:12,"352 Park St, New York City, NY 10001" +163597,Apple Airpods Headphones,1,150,02/05/19 22:33,"972 Forest St, Seattle, WA 98101" +163598,AA Batteries (4-pack),3,3.84,02/03/19 20:00,"557 Lincoln St, San Francisco, CA 94016" +163599,AAA Batteries (4-pack),1,2.99,02/02/19 12:53,"561 Maple St, San Francisco, CA 94016" +163600,Wired Headphones,1,11.99,02/19/19 11:17,"777 9th St, New York City, NY 10001" +163601,Macbook Pro Laptop,1,1700,02/25/19 18:37,"493 Pine St, Atlanta, GA 30301" +163602,Vareebadd Phone,1,400,02/23/19 19:35,"558 Meadow St, Boston, MA 02215" +163603,27in FHD Monitor,1,149.99,02/04/19 12:52,"687 Johnson St, Dallas, TX 75001" +163604,Bose SoundSport Headphones,1,99.99,02/15/19 20:26,"773 Cherry St, New York City, NY 10001" +163605,Apple Airpods Headphones,1,150,02/28/19 22:02,"57 Meadow St, Dallas, TX 75001" +163606,iPhone,1,700,02/15/19 17:34,"668 12th St, New York City, NY 10001" +163607,USB-C Charging Cable,1,11.95,02/07/19 19:48,"392 North St, Portland, OR 97035" +163608,Bose SoundSport Headphones,1,99.99,02/28/19 16:42,"354 Jefferson St, New York City, NY 10001" +163609,Lightning Charging Cable,1,14.95,02/02/19 15:26,"178 Lake St, Boston, MA 02215" +163610,Wired Headphones,1,11.99,02/02/19 16:57,"617 River St, Dallas, TX 75001" +163611,34in Ultrawide Monitor,1,379.99,02/03/19 00:19,"724 Cedar St, New York City, NY 10001" +163612,AAA Batteries (4-pack),1,2.99,02/28/19 22:19,"278 Spruce St, Dallas, TX 75001" +163613,AA Batteries (4-pack),1,3.84,02/16/19 12:10,"548 Spruce St, San Francisco, CA 94016" +163614,AA Batteries (4-pack),1,3.84,02/13/19 17:57,"944 River St, Seattle, WA 98101" +163615,USB-C Charging Cable,1,11.95,02/18/19 17:06,"68 Adams St, Dallas, TX 75001" +163616,Apple Airpods Headphones,1,150,02/05/19 13:39,"672 Madison St, Seattle, WA 98101" +163617,USB-C Charging Cable,1,11.95,02/06/19 15:45,"880 Dogwood St, Atlanta, GA 30301" +163618,Bose SoundSport Headphones,1,99.99,02/02/19 21:11,"774 10th St, New York City, NY 10001" +163619,Lightning Charging Cable,1,14.95,02/08/19 11:33,"833 North St, Los Angeles, CA 90001" +163620,Wired Headphones,1,11.99,02/28/19 06:50,"199 Lakeview St, Seattle, WA 98101" +163621,27in FHD Monitor,1,149.99,02/25/19 10:30,"22 Ridge St, Los Angeles, CA 90001" +163622,AAA Batteries (4-pack),1,2.99,02/25/19 16:16,"245 14th St, Portland, OR 97035" +163623,AA Batteries (4-pack),3,3.84,02/16/19 23:01,"401 Cedar St, Seattle, WA 98101" +163624,USB-C Charging Cable,1,11.95,02/24/19 21:29,"134 River St, Los Angeles, CA 90001" +163625,AAA Batteries (4-pack),1,2.99,02/23/19 19:25,"335 8th St, San Francisco, CA 94016" +163625,27in 4K Gaming Monitor,1,389.99,02/23/19 19:25,"335 8th St, San Francisco, CA 94016" +163626,Wired Headphones,1,11.99,02/03/19 13:17,"717 13th St, Dallas, TX 75001" +163627,AAA Batteries (4-pack),1,2.99,02/17/19 20:25,"834 2nd St, Los Angeles, CA 90001" +163628,Apple Airpods Headphones,1,150,02/25/19 11:40,"464 South St, Atlanta, GA 30301" +163629,Apple Airpods Headphones,1,150,02/10/19 13:01,"995 10th St, Atlanta, GA 30301" +163630,Apple Airpods Headphones,1,150,02/20/19 16:33,"591 8th St, San Francisco, CA 94016" +163631,AA Batteries (4-pack),1,3.84,02/18/19 21:49,"797 Washington St, Los Angeles, CA 90001" +163632,Macbook Pro Laptop,1,1700,02/25/19 20:37,"199 Wilson St, San Francisco, CA 94016" +163633,USB-C Charging Cable,1,11.95,02/09/19 08:57,"405 Park St, Boston, MA 02215" +163634,27in FHD Monitor,1,149.99,02/08/19 07:07,"501 Lincoln St, San Francisco, CA 94016" +163635,USB-C Charging Cable,1,11.95,02/25/19 07:45,"844 Johnson St, Boston, MA 02215" +163636,Apple Airpods Headphones,1,150,02/27/19 08:13,"312 Meadow St, Dallas, TX 75001" +163637,Wired Headphones,1,11.99,02/15/19 00:47,"881 Spruce St, Los Angeles, CA 90001" +163638,AAA Batteries (4-pack),2,2.99,02/08/19 21:46,"194 Elm St, Portland, OR 97035" +163639,Lightning Charging Cable,2,14.95,02/02/19 20:19,"394 Lincoln St, San Francisco, CA 94016" +163640,Apple Airpods Headphones,1,150,02/01/19 18:35,"165 North St, Boston, MA 02215" +163641,AA Batteries (4-pack),2,3.84,02/17/19 17:27,"150 1st St, Dallas, TX 75001" +163642,AAA Batteries (4-pack),1,2.99,02/23/19 15:52,"336 Cherry St, Atlanta, GA 30301" +163643,Lightning Charging Cable,2,14.95,02/09/19 12:34,"47 4th St, San Francisco, CA 94016" +163644,Apple Airpods Headphones,1,150,02/03/19 22:49,"736 West St, New York City, NY 10001" +163645,AA Batteries (4-pack),2,3.84,02/14/19 14:18,"682 Jackson St, Seattle, WA 98101" +163646,Lightning Charging Cable,1,14.95,02/07/19 13:27,"121 West St, New York City, NY 10001" +163647,Apple Airpods Headphones,1,150,02/07/19 00:54,"45 Jackson St, San Francisco, CA 94016" +163648,AA Batteries (4-pack),1,3.84,02/28/19 14:13,"261 North St, Boston, MA 02215" +163649,Wired Headphones,1,11.99,02/10/19 12:28,"551 Church St, San Francisco, CA 94016" +163650,AA Batteries (4-pack),1,3.84,02/14/19 15:22,"323 Park St, Dallas, TX 75001" +163651,USB-C Charging Cable,1,11.95,02/22/19 07:21,"241 Lakeview St, Atlanta, GA 30301" +163652,Apple Airpods Headphones,1,150,02/20/19 18:25,"586 Johnson St, Los Angeles, CA 90001" +163653,AAA Batteries (4-pack),4,2.99,02/13/19 18:54,"324 Dogwood St, Los Angeles, CA 90001" +163654,Bose SoundSport Headphones,1,99.99,02/21/19 08:26,"324 Church St, San Francisco, CA 94016" +163655,34in Ultrawide Monitor,1,379.99,02/10/19 01:37,"859 Walnut St, Boston, MA 02215" +163656,Flatscreen TV,1,300,02/20/19 09:47,"729 Pine St, Atlanta, GA 30301" +163657,Google Phone,1,600,02/21/19 21:27,"865 Pine St, Boston, MA 02215" +163657,USB-C Charging Cable,1,11.95,02/21/19 21:27,"865 Pine St, Boston, MA 02215" +163658,USB-C Charging Cable,1,11.95,02/06/19 13:40,"777 North St, Los Angeles, CA 90001" +163659,AAA Batteries (4-pack),2,2.99,02/21/19 15:22,"882 Pine St, San Francisco, CA 94016" +163660,AA Batteries (4-pack),1,3.84,02/11/19 18:42,"283 Walnut St, Dallas, TX 75001" +163661,USB-C Charging Cable,1,11.95,02/19/19 21:46,"982 Hickory St, Dallas, TX 75001" +163662,USB-C Charging Cable,3,11.95,02/05/19 16:13,"349 9th St, Seattle, WA 98101" +163663,Apple Airpods Headphones,1,150,02/22/19 12:24,"404 10th St, San Francisco, CA 94016" +163664,AAA Batteries (4-pack),1,2.99,02/21/19 17:24,"927 West St, Los Angeles, CA 90001" +163665,Flatscreen TV,1,300,02/01/19 14:51,"600 Walnut St, Los Angeles, CA 90001" +163666,ThinkPad Laptop,1,999.99,02/04/19 17:25,"668 River St, Los Angeles, CA 90001" +163667,Wired Headphones,1,11.99,02/05/19 08:56,"430 Cedar St, Los Angeles, CA 90001" +163668,AA Batteries (4-pack),3,3.84,02/26/19 10:26,"706 12th St, New York City, NY 10001" +163669,AAA Batteries (4-pack),1,2.99,02/01/19 07:56,"957 Willow St, Atlanta, GA 30301" +163670,Google Phone,1,600,02/23/19 11:10,"626 River St, San Francisco, CA 94016" +163671,AA Batteries (4-pack),1,3.84,02/20/19 11:59,"23 Adams St, New York City, NY 10001" +163672,AAA Batteries (4-pack),2,2.99,02/21/19 12:16,"733 Elm St, San Francisco, CA 94016" +163673,AAA Batteries (4-pack),1,2.99,02/17/19 18:44,"636 Willow St, New York City, NY 10001" +163674,Apple Airpods Headphones,1,150,02/22/19 11:39,"773 Jefferson St, Portland, OR 97035" +163675,AA Batteries (4-pack),1,3.84,02/17/19 12:39,"177 8th St, New York City, NY 10001" +163676,27in FHD Monitor,2,149.99,02/23/19 17:42,"835 Highland St, Seattle, WA 98101" +163677,AA Batteries (4-pack),1,3.84,02/20/19 20:51,"970 Spruce St, San Francisco, CA 94016" +163678,AAA Batteries (4-pack),1,2.99,02/07/19 22:02,"438 Pine St, San Francisco, CA 94016" +163679,34in Ultrawide Monitor,1,379.99,02/19/19 11:23,"309 5th St, Portland, OR 97035" +163680,AA Batteries (4-pack),1,3.84,02/13/19 12:50,"94 Sunset St, Seattle, WA 98101" +163681,27in 4K Gaming Monitor,1,389.99,02/09/19 23:14,"712 Meadow St, Atlanta, GA 30301" +163682,USB-C Charging Cable,1,11.95,02/19/19 13:23,"962 Highland St, San Francisco, CA 94016" +163683,USB-C Charging Cable,1,11.95,02/22/19 19:58,"384 Jefferson St, Boston, MA 02215" +163684,27in FHD Monitor,1,149.99,02/18/19 01:32,"107 North St, Seattle, WA 98101" +163685,Google Phone,1,600,02/01/19 07:49,"978 13th St, San Francisco, CA 94016" +163685,USB-C Charging Cable,1,11.95,02/01/19 07:49,"978 13th St, San Francisco, CA 94016" +163686,iPhone,1,700,02/21/19 16:50,"462 14th St, Dallas, TX 75001" +163687,Macbook Pro Laptop,1,1700,02/03/19 22:47,"584 14th St, Atlanta, GA 30301" +163688,34in Ultrawide Monitor,1,379.99,02/14/19 15:11,"555 Dogwood St, San Francisco, CA 94016" +163689,34in Ultrawide Monitor,1,379.99,02/18/19 01:21,"582 2nd St, New York City, NY 10001" +163690,AA Batteries (4-pack),1,3.84,02/21/19 10:44,"368 14th St, San Francisco, CA 94016" +163691,AAA Batteries (4-pack),1,2.99,02/23/19 16:42,"866 Sunset St, San Francisco, CA 94016" +163692,Lightning Charging Cable,1,14.95,02/23/19 19:47,"153 Walnut St, Dallas, TX 75001" +163693,Wired Headphones,1,11.99,02/03/19 14:26,"187 Highland St, San Francisco, CA 94016" +163694,Lightning Charging Cable,1,14.95,02/21/19 07:40,"898 Adams St, Los Angeles, CA 90001" +163695,Bose SoundSport Headphones,1,99.99,02/16/19 18:52,"254 Cherry St, Los Angeles, CA 90001" +163696,Flatscreen TV,1,300,02/07/19 17:11,"244 Elm St, Los Angeles, CA 90001" +163697,Lightning Charging Cable,1,14.95,02/13/19 17:05,"781 13th St, Austin, TX 73301" +163698,AA Batteries (4-pack),2,3.84,02/07/19 14:41,"227 Chestnut St, Los Angeles, CA 90001" +163699,Bose SoundSport Headphones,1,99.99,02/26/19 14:27,"352 5th St, Dallas, TX 75001" +163700,Lightning Charging Cable,1,14.95,02/06/19 12:50,"527 Spruce St, San Francisco, CA 94016" +163701,Apple Airpods Headphones,1,150,02/03/19 15:41,"323 Cherry St, Portland, OR 97035" +163702,AA Batteries (4-pack),1,3.84,02/15/19 18:55,"950 6th St, San Francisco, CA 94016" +163703,Google Phone,1,600,02/14/19 22:58,"321 9th St, Atlanta, GA 30301" +163703,USB-C Charging Cable,1,11.95,02/14/19 22:58,"321 9th St, Atlanta, GA 30301" +163704,Wired Headphones,1,11.99,02/08/19 21:45,"454 10th St, San Francisco, CA 94016" +163705,Apple Airpods Headphones,1,150,02/13/19 12:58,"65 5th St, Los Angeles, CA 90001" +163706,Apple Airpods Headphones,1,150,02/15/19 18:39,"386 Madison St, Portland, OR 97035" +163707,USB-C Charging Cable,1,11.95,02/18/19 13:25,"254 Hill St, Los Angeles, CA 90001" +163708,iPhone,1,700,02/19/19 13:03,"613 Park St, Dallas, TX 75001" +163709,iPhone,1,700,02/13/19 23:02,"429 2nd St, New York City, NY 10001" +163710,Google Phone,1,600,02/09/19 10:40,"123 Chestnut St, New York City, NY 10001" +163711,USB-C Charging Cable,1,11.95,02/24/19 10:18,"484 6th St, San Francisco, CA 94016" +163712,Macbook Pro Laptop,1,1700,02/19/19 13:56,"371 13th St, San Francisco, CA 94016" +163713,27in 4K Gaming Monitor,1,389.99,02/27/19 20:19,"714 Sunset St, Atlanta, GA 30301" +163714,AA Batteries (4-pack),1,3.84,02/09/19 21:16,"643 11th St, San Francisco, CA 94016" +163715,Wired Headphones,2,11.99,02/24/19 10:29,"936 Church St, Austin, TX 73301" +163716,Wired Headphones,1,11.99,02/15/19 14:43,"56 Jefferson St, New York City, NY 10001" +163717,Bose SoundSport Headphones,1,99.99,02/15/19 12:11,"448 Hill St, Boston, MA 02215" +163718,Lightning Charging Cable,1,14.95,02/17/19 16:16,"996 10th St, Portland, OR 97035" +163719,AAA Batteries (4-pack),1,2.99,02/05/19 13:08,"916 Cedar St, Seattle, WA 98101" +163719,AA Batteries (4-pack),1,3.84,02/05/19 13:08,"916 Cedar St, Seattle, WA 98101" +163720,27in FHD Monitor,1,149.99,02/14/19 12:23,"178 14th St, San Francisco, CA 94016" +163721,27in 4K Gaming Monitor,1,389.99,02/20/19 14:01,"935 Cherry St, San Francisco, CA 94016" +163722,Macbook Pro Laptop,1,1700,02/11/19 18:36,"673 Madison St, Dallas, TX 75001" +163723,27in FHD Monitor,1,149.99,02/07/19 12:33,"689 13th St, New York City, NY 10001" +163724,Macbook Pro Laptop,1,1700,02/23/19 08:16,"535 11th St, San Francisco, CA 94016" +163725,AA Batteries (4-pack),1,3.84,02/09/19 14:16,"247 Adams St, Seattle, WA 98101" +163726,AAA Batteries (4-pack),1,2.99,02/28/19 21:14,"793 11th St, San Francisco, CA 94016" +163727,Apple Airpods Headphones,1,150,02/12/19 15:57,"395 Madison St, Atlanta, GA 30301" +163728,27in 4K Gaming Monitor,1,389.99,02/24/19 09:30,"124 Dogwood St, San Francisco, CA 94016" +163729,USB-C Charging Cable,1,11.95,02/04/19 16:05,"250 Chestnut St, New York City, NY 10001" +163730,iPhone,1,700,02/09/19 17:02,"152 4th St, Los Angeles, CA 90001" +163731,Apple Airpods Headphones,1,150,02/13/19 20:20,"915 Lincoln St, San Francisco, CA 94016" +163732,AA Batteries (4-pack),2,3.84,02/19/19 12:48,"99 Madison St, New York City, NY 10001" +163733,USB-C Charging Cable,1,11.95,02/27/19 17:15,"651 North St, New York City, NY 10001" +163734,Wired Headphones,1,11.99,02/16/19 16:50,"782 Chestnut St, Atlanta, GA 30301" +163735,27in FHD Monitor,1,149.99,02/14/19 10:51,"870 Jefferson St, New York City, NY 10001" +163736,AA Batteries (4-pack),1,3.84,02/15/19 07:20,"238 Dogwood St, Los Angeles, CA 90001" +163737,Wired Headphones,1,11.99,02/27/19 14:42,"255 Walnut St, Seattle, WA 98101" +163738,Wired Headphones,1,11.99,02/15/19 22:32,"196 Jefferson St, Dallas, TX 75001" +163739,USB-C Charging Cable,1,11.95,02/06/19 05:17,"422 12th St, Boston, MA 02215" +163740,Bose SoundSport Headphones,1,99.99,02/10/19 01:34,"155 8th St, Los Angeles, CA 90001" +163741,Apple Airpods Headphones,1,150,02/14/19 14:21,"459 Spruce St, New York City, NY 10001" +163742,Bose SoundSport Headphones,1,99.99,02/28/19 14:39,"990 Adams St, San Francisco, CA 94016" +163743,Wired Headphones,1,11.99,02/14/19 15:17,"830 Dogwood St, Portland, OR 97035" +163744,ThinkPad Laptop,1,999.99,02/03/19 18:23,"729 Hill St, San Francisco, CA 94016" +163745,AAA Batteries (4-pack),1,2.99,02/26/19 15:21,"89 Maple St, San Francisco, CA 94016" +163746,AAA Batteries (4-pack),1,2.99,02/17/19 12:22,"359 Willow St, New York City, NY 10001" +163747,iPhone,1,700,02/18/19 22:05,"839 Elm St, Atlanta, GA 30301" +163748,27in FHD Monitor,1,149.99,02/28/19 12:46,"636 Jefferson St, Los Angeles, CA 90001" +163749,USB-C Charging Cable,1,11.95,02/23/19 17:43,"916 Cedar St, Atlanta, GA 30301" +163750,AA Batteries (4-pack),2,3.84,02/24/19 14:16,"410 8th St, Portland, OR 97035" +163751,AA Batteries (4-pack),3,3.84,02/02/19 16:07,"97 South St, New York City, NY 10001" +163752,27in 4K Gaming Monitor,1,389.99,02/10/19 20:40,"10 14th St, Portland, OR 97035" +163753,Wired Headphones,1,11.99,02/16/19 13:02,"664 14th St, Boston, MA 02215" +163754,Wired Headphones,1,11.99,02/24/19 17:13,"751 Washington St, San Francisco, CA 94016" +163755,Bose SoundSport Headphones,1,99.99,02/03/19 17:45,"137 North St, Portland, OR 97035" +163756,Vareebadd Phone,1,400,02/03/19 12:02,"669 8th St, Boston, MA 02215" +163756,USB-C Charging Cable,1,11.95,02/03/19 12:02,"669 8th St, Boston, MA 02215" +163757,Apple Airpods Headphones,1,150,02/07/19 16:34,"557 6th St, San Francisco, CA 94016" +163758,27in 4K Gaming Monitor,1,389.99,02/08/19 08:38,"670 Pine St, Boston, MA 02215" +163759,Apple Airpods Headphones,1,150,02/10/19 23:41,"707 Lakeview St, Dallas, TX 75001" +163760,USB-C Charging Cable,1,11.95,02/18/19 12:46,"443 River St, Los Angeles, CA 90001" +163761,Flatscreen TV,1,300,02/18/19 16:38,"134 12th St, Portland, OR 97035" +163762,Lightning Charging Cable,1,14.95,02/04/19 08:28,"320 12th St, Boston, MA 02215" +163763,Lightning Charging Cable,1,14.95,02/12/19 13:37,"844 Forest St, New York City, NY 10001" +163764,USB-C Charging Cable,1,11.95,02/23/19 10:02,"645 Hill St, Portland, OR 97035" +163765,USB-C Charging Cable,1,11.95,02/15/19 18:31,"89 Willow St, San Francisco, CA 94016" +163766,AAA Batteries (4-pack),1,2.99,02/24/19 21:15,"16 Church St, Los Angeles, CA 90001" +163767,Wired Headphones,1,11.99,02/20/19 09:26,"804 9th St, Austin, TX 73301" +163768,AAA Batteries (4-pack),1,2.99,02/03/19 14:20,"239 Highland St, Portland, OR 97035" +163769,34in Ultrawide Monitor,1,379.99,02/24/19 13:54,"666 North St, Portland, ME 04101" +163770,34in Ultrawide Monitor,1,379.99,02/08/19 01:39,"128 Ridge St, San Francisco, CA 94016" +163771,USB-C Charging Cable,1,11.95,02/17/19 13:56,"282 Cedar St, San Francisco, CA 94016" +163772,Google Phone,1,600,02/27/19 19:55,"858 Maple St, New York City, NY 10001" +163773,27in FHD Monitor,1,149.99,02/15/19 07:37,"822 Walnut St, Dallas, TX 75001" +163774,Lightning Charging Cable,1,14.95,02/19/19 06:43,"487 Cedar St, Seattle, WA 98101" +163775,iPhone,1,700,02/11/19 08:00,"803 Hickory St, Dallas, TX 75001" +163776,USB-C Charging Cable,1,11.95,02/22/19 21:48,"446 7th St, Austin, TX 73301" +163777,Macbook Pro Laptop,1,1700,02/14/19 16:48,"984 10th St, Los Angeles, CA 90001" +163778,Macbook Pro Laptop,1,1700,02/26/19 07:50,"853 9th St, New York City, NY 10001" +163779,34in Ultrawide Monitor,1,379.99,02/17/19 22:00,"596 Adams St, Boston, MA 02215" +163780,Bose SoundSport Headphones,1,99.99,02/07/19 18:22,"723 Center St, Los Angeles, CA 90001" +163781,ThinkPad Laptop,1,999.99,02/24/19 22:41,"363 Lincoln St, Los Angeles, CA 90001" +163782,Apple Airpods Headphones,1,150,02/14/19 06:56,"834 Adams St, Los Angeles, CA 90001" +163783,Wired Headphones,1,11.99,02/22/19 09:36,"369 Elm St, Austin, TX 73301" +163784,ThinkPad Laptop,1,999.99,02/09/19 12:11,"981 Ridge St, New York City, NY 10001" +163785,27in 4K Gaming Monitor,1,389.99,02/18/19 10:34,"265 Maple St, Atlanta, GA 30301" +163786,34in Ultrawide Monitor,1,379.99,02/13/19 08:45,"413 Maple St, San Francisco, CA 94016" +163787,Wired Headphones,1,11.99,02/06/19 12:47,"286 Forest St, Portland, OR 97035" +163788,USB-C Charging Cable,1,11.95,02/23/19 23:27,"197 South St, San Francisco, CA 94016" +163789,iPhone,1,700,02/09/19 07:22,"164 River St, Boston, MA 02215" +163790,Google Phone,1,600,02/13/19 07:35,"761 Lakeview St, San Francisco, CA 94016" +163791,20in Monitor,1,109.99,02/03/19 20:10,"452 Hickory St, Portland, OR 97035" +163791,AA Batteries (4-pack),1,3.84,02/03/19 20:10,"452 Hickory St, Portland, OR 97035" +163792,Macbook Pro Laptop,1,1700,02/10/19 07:28,"945 2nd St, New York City, NY 10001" +163793,AA Batteries (4-pack),1,3.84,02/08/19 19:07,"276 8th St, New York City, NY 10001" +163794,Lightning Charging Cable,1,14.95,02/07/19 09:03,"506 Hickory St, San Francisco, CA 94016" +163795,AAA Batteries (4-pack),1,2.99,02/02/19 23:08,"342 Jefferson St, Boston, MA 02215" +163796,Wired Headphones,2,11.99,02/09/19 21:49,"204 14th St, New York City, NY 10001" +163797,27in FHD Monitor,1,149.99,02/03/19 11:41,"377 Forest St, Dallas, TX 75001" +163798,34in Ultrawide Monitor,1,379.99,02/05/19 11:25,"31 Lincoln St, Seattle, WA 98101" +163799,AAA Batteries (4-pack),1,2.99,02/28/19 13:50,"472 Adams St, New York City, NY 10001" +163800,Bose SoundSport Headphones,1,99.99,02/27/19 18:55,"458 Park St, Boston, MA 02215" +163801,USB-C Charging Cable,1,11.95,02/17/19 09:31,"874 13th St, Portland, OR 97035" +163802,Macbook Pro Laptop,1,1700,02/13/19 10:50,"248 Hill St, San Francisco, CA 94016" +163803,27in 4K Gaming Monitor,1,389.99,02/27/19 20:42,"748 Highland St, San Francisco, CA 94016" +163804,Lightning Charging Cable,1,14.95,02/14/19 17:50,"541 Lake St, Dallas, TX 75001" +163805,ThinkPad Laptop,1,999.99,02/11/19 20:03,"862 Main St, Dallas, TX 75001" +163806,Lightning Charging Cable,2,14.95,02/27/19 19:36,"753 14th St, Los Angeles, CA 90001" +163807,Bose SoundSport Headphones,1,99.99,02/18/19 19:15,"596 Lake St, Portland, OR 97035" +163808,Lightning Charging Cable,1,14.95,02/04/19 01:29,"211 Lincoln St, Atlanta, GA 30301" +163809,Google Phone,1,600,02/04/19 19:31,"146 River St, Seattle, WA 98101" +163810,27in FHD Monitor,1,149.99,02/20/19 20:34,"383 Ridge St, San Francisco, CA 94016" +163811,AAA Batteries (4-pack),1,2.99,02/09/19 19:27,"698 River St, Los Angeles, CA 90001" +163812,AA Batteries (4-pack),2,3.84,02/16/19 17:30,"888 Cedar St, Seattle, WA 98101" +163813,AA Batteries (4-pack),1,3.84,02/11/19 21:32,"872 Hill St, Portland, OR 97035" +163814,Flatscreen TV,1,300,02/09/19 22:29,"633 4th St, San Francisco, CA 94016" +163814,USB-C Charging Cable,1,11.95,02/09/19 22:29,"633 4th St, San Francisco, CA 94016" +163815,27in FHD Monitor,1,149.99,02/15/19 19:16,"455 Maple St, San Francisco, CA 94016" +163816,Wired Headphones,1,11.99,02/06/19 15:39,"769 Cherry St, Portland, OR 97035" +163817,AA Batteries (4-pack),2,3.84,02/26/19 13:45,"266 West St, San Francisco, CA 94016" +163818,AA Batteries (4-pack),1,3.84,02/17/19 20:16,"921 Jackson St, Los Angeles, CA 90001" +163819,USB-C Charging Cable,1,11.95,02/14/19 20:19,"621 Ridge St, Los Angeles, CA 90001" +163820,27in FHD Monitor,1,149.99,02/09/19 18:10,"884 9th St, Los Angeles, CA 90001" +163821,Wired Headphones,1,11.99,02/26/19 10:45,"741 4th St, San Francisco, CA 94016" +163821,Apple Airpods Headphones,1,150,02/26/19 10:45,"741 4th St, San Francisco, CA 94016" +163822,Apple Airpods Headphones,1,150,02/01/19 07:24,"84 Cedar St, New York City, NY 10001" +163823,Wired Headphones,1,11.99,02/11/19 10:59,"624 14th St, Atlanta, GA 30301" +163824,AA Batteries (4-pack),4,3.84,02/20/19 06:08,"66 Lakeview St, Atlanta, GA 30301" +163825,iPhone,1,700,02/17/19 21:21,"762 Elm St, Atlanta, GA 30301" +163825,Lightning Charging Cable,1,14.95,02/17/19 21:21,"762 Elm St, Atlanta, GA 30301" +163825,Wired Headphones,1,11.99,02/17/19 21:21,"762 Elm St, Atlanta, GA 30301" +163826,USB-C Charging Cable,1,11.95,02/02/19 18:01,"459 South St, San Francisco, CA 94016" +163827,27in FHD Monitor,1,149.99,02/18/19 21:25,"507 River St, Portland, OR 97035" +163828,AA Batteries (4-pack),1,3.84,02/25/19 22:06,"779 River St, Dallas, TX 75001" +163829,ThinkPad Laptop,1,999.99,02/09/19 10:57,"289 6th St, Seattle, WA 98101" +163830,AAA Batteries (4-pack),2,2.99,02/11/19 08:38,"793 Maple St, Boston, MA 02215" +163831,LG Washing Machine,1,600.0,02/24/19 17:30,"336 Jackson St, Atlanta, GA 30301" +163832,Lightning Charging Cable,2,14.95,02/25/19 06:00,"355 Church St, Seattle, WA 98101" +163832,AA Batteries (4-pack),1,3.84,02/25/19 06:00,"355 Church St, Seattle, WA 98101" +163833,ThinkPad Laptop,1,999.99,02/01/19 20:18,"148 1st St, Los Angeles, CA 90001" +163834,USB-C Charging Cable,2,11.95,02/07/19 19:43,"605 Church St, New York City, NY 10001" +163835,Apple Airpods Headphones,1,150,02/10/19 21:20,"891 Elm St, Boston, MA 02215" +163836,AAA Batteries (4-pack),1,2.99,02/24/19 12:18,"576 Park St, Dallas, TX 75001" +163837,Macbook Pro Laptop,1,1700,02/24/19 14:34,"863 Wilson St, San Francisco, CA 94016" +163838,Lightning Charging Cable,1,14.95,02/05/19 12:10,"341 13th St, Dallas, TX 75001" +163839,AAA Batteries (4-pack),1,2.99,02/06/19 10:34,"270 2nd St, Austin, TX 73301" +163840,27in FHD Monitor,1,149.99,02/26/19 00:08,"945 River St, Atlanta, GA 30301" +163841,AAA Batteries (4-pack),1,2.99,02/20/19 23:30,"935 Madison St, Los Angeles, CA 90001" +163842,Apple Airpods Headphones,1,150,02/06/19 12:41,"10 Hill St, New York City, NY 10001" +163843,Macbook Pro Laptop,1,1700,02/03/19 16:38,"60 Spruce St, New York City, NY 10001" +163844,Lightning Charging Cable,1,14.95,02/13/19 13:38,"269 4th St, Atlanta, GA 30301" +163844,AAA Batteries (4-pack),2,2.99,02/13/19 13:38,"269 4th St, Atlanta, GA 30301" +163845,34in Ultrawide Monitor,1,379.99,02/07/19 18:12,"271 Meadow St, Atlanta, GA 30301" +163845,Lightning Charging Cable,1,14.95,02/07/19 18:12,"271 Meadow St, Atlanta, GA 30301" +163846,Lightning Charging Cable,1,14.95,02/24/19 07:15,"784 Lakeview St, Dallas, TX 75001" +163847,Macbook Pro Laptop,1,1700,02/18/19 13:36,"826 7th St, Portland, OR 97035" +163848,Wired Headphones,1,11.99,02/11/19 13:05,"728 North St, New York City, NY 10001" +163849,USB-C Charging Cable,1,11.95,02/15/19 13:28,"978 Jackson St, New York City, NY 10001" +163850,34in Ultrawide Monitor,1,379.99,02/01/19 18:52,"393 Meadow St, Los Angeles, CA 90001" +163851,AAA Batteries (4-pack),1,2.99,02/28/19 14:29,"626 Lincoln St, San Francisco, CA 94016" +163852,AA Batteries (4-pack),1,3.84,02/28/19 19:48,"981 Center St, Atlanta, GA 30301" +163853,Lightning Charging Cable,2,14.95,02/08/19 20:12,"743 Hill St, New York City, NY 10001" +163854,AA Batteries (4-pack),1,3.84,02/08/19 14:18,"748 Washington St, San Francisco, CA 94016" +163855,Flatscreen TV,1,300,02/23/19 09:02,"164 1st St, Boston, MA 02215" +163856,USB-C Charging Cable,1,11.95,02/14/19 19:51,"814 Wilson St, Portland, OR 97035" +163857,USB-C Charging Cable,2,11.95,02/14/19 18:33,"890 Wilson St, Austin, TX 73301" +163858,27in 4K Gaming Monitor,1,389.99,02/07/19 08:32,"793 Jackson St, Los Angeles, CA 90001" +163859,AA Batteries (4-pack),2,3.84,02/28/19 10:19,"608 Forest St, San Francisco, CA 94016" +163860,Wired Headphones,1,11.99,02/04/19 20:37,"844 Meadow St, Boston, MA 02215" +163861,AAA Batteries (4-pack),2,2.99,02/12/19 11:31,"967 Church St, San Francisco, CA 94016" +163862,Macbook Pro Laptop,1,1700,02/27/19 07:40,"354 Meadow St, Austin, TX 73301" +163863,20in Monitor,1,109.99,02/04/19 10:53,"799 Lincoln St, Los Angeles, CA 90001" +163864,Lightning Charging Cable,1,14.95,02/20/19 00:10,"802 12th St, Portland, OR 97035" +163865,iPhone,1,700,02/25/19 20:31,"758 12th St, Boston, MA 02215" +163866,Wired Headphones,1,11.99,02/04/19 20:42,"528 11th St, Boston, MA 02215" +163867,34in Ultrawide Monitor,1,379.99,02/20/19 20:07,"60 4th St, San Francisco, CA 94016" +163868,ThinkPad Laptop,1,999.99,02/08/19 17:25,"265 Spruce St, New York City, NY 10001" +163869,Lightning Charging Cable,1,14.95,02/04/19 10:11,"913 Chestnut St, Los Angeles, CA 90001" +163869,27in FHD Monitor,1,149.99,02/04/19 10:11,"913 Chestnut St, Los Angeles, CA 90001" +163870,AAA Batteries (4-pack),1,2.99,02/28/19 10:22,"246 Lake St, Los Angeles, CA 90001" +163871,Macbook Pro Laptop,1,1700,02/09/19 21:23,"701 Main St, Los Angeles, CA 90001" +163872,AA Batteries (4-pack),1,3.84,02/13/19 19:22,"528 Park St, New York City, NY 10001" +163873,Apple Airpods Headphones,1,150,02/28/19 14:46,"148 Park St, New York City, NY 10001" +163874,Lightning Charging Cable,1,14.95,02/15/19 14:51,"318 5th St, Portland, OR 97035" +163875,Apple Airpods Headphones,1,150,02/18/19 12:03,"766 Highland St, Austin, TX 73301" +163876,iPhone,1,700,02/23/19 12:01,"720 13th St, Los Angeles, CA 90001" +163876,Lightning Charging Cable,1,14.95,02/23/19 12:01,"720 13th St, Los Angeles, CA 90001" +163877,Google Phone,1,600,02/13/19 14:31,"717 Madison St, San Francisco, CA 94016" +163878,Wired Headphones,1,11.99,02/21/19 14:14,"429 Hill St, Los Angeles, CA 90001" +163879,Lightning Charging Cable,1,14.95,02/08/19 09:22,"566 13th St, Los Angeles, CA 90001" +163880,27in FHD Monitor,1,149.99,02/11/19 16:52,"183 Maple St, San Francisco, CA 94016" +163881,Lightning Charging Cable,1,14.95,02/11/19 23:17,"692 Spruce St, New York City, NY 10001" +163882,Wired Headphones,2,11.99,02/20/19 15:07,"672 River St, Atlanta, GA 30301" +163883,AAA Batteries (4-pack),1,2.99,02/20/19 13:41,"834 Walnut St, New York City, NY 10001" +163884,AAA Batteries (4-pack),1,2.99,02/08/19 09:23,"887 Ridge St, Los Angeles, CA 90001" +163885,AAA Batteries (4-pack),2,2.99,02/22/19 19:05,"465 5th St, New York City, NY 10001" +163886,AA Batteries (4-pack),1,3.84,02/17/19 15:30,"823 10th St, New York City, NY 10001" +163887,Flatscreen TV,1,300,02/11/19 11:22,"82 7th St, Los Angeles, CA 90001" +,,,,, +163888,Apple Airpods Headphones,1,150,02/28/19 10:15,"658 Jefferson St, New York City, NY 10001" +163889,Wired Headphones,1,11.99,02/26/19 15:28,"737 Walnut St, Atlanta, GA 30301" +163890,27in FHD Monitor,1,149.99,02/05/19 12:49,"408 Center St, New York City, NY 10001" +163891,34in Ultrawide Monitor,1,379.99,02/08/19 19:16,"428 1st St, San Francisco, CA 94016" +163892,AA Batteries (4-pack),1,3.84,02/14/19 00:01,"337 Cedar St, Boston, MA 02215" +163893,Apple Airpods Headphones,1,150,02/05/19 18:41,"87 Main St, New York City, NY 10001" +163894,34in Ultrawide Monitor,1,379.99,02/09/19 19:06,"314 Hill St, Los Angeles, CA 90001" +163894,Bose SoundSport Headphones,1,99.99,02/09/19 19:06,"314 Hill St, Los Angeles, CA 90001" +163895,Google Phone,1,600,02/22/19 10:43,"90 7th St, San Francisco, CA 94016" +163896,Lightning Charging Cable,1,14.95,02/16/19 18:08,"582 Highland St, Atlanta, GA 30301" +163897,Google Phone,1,600,02/22/19 16:30,"243 Walnut St, New York City, NY 10001" +163898,Bose SoundSport Headphones,1,99.99,02/27/19 18:24,"121 6th St, Boston, MA 02215" +163899,Lightning Charging Cable,2,14.95,02/14/19 21:15,"912 11th St, San Francisco, CA 94016" +163900,AAA Batteries (4-pack),7,2.99,02/15/19 13:13,"363 8th St, San Francisco, CA 94016" +163901,Bose SoundSport Headphones,1,99.99,02/08/19 23:40,"751 7th St, Los Angeles, CA 90001" +163902,Bose SoundSport Headphones,1,99.99,02/04/19 23:53,"925 South St, Boston, MA 02215" +163902,Wired Headphones,1,11.99,02/04/19 23:53,"925 South St, Boston, MA 02215" +163903,Wired Headphones,1,11.99,02/24/19 11:20,"52 Walnut St, San Francisco, CA 94016" +163904,iPhone,1,700,02/07/19 18:35,"96 Willow St, New York City, NY 10001" +163905,Macbook Pro Laptop,1,1700,02/05/19 15:23,"434 10th St, Austin, TX 73301" +163906,AAA Batteries (4-pack),1,2.99,02/22/19 06:11,"174 Maple St, Atlanta, GA 30301" +163907,USB-C Charging Cable,1,11.95,02/15/19 19:13,"243 Jackson St, New York City, NY 10001" +163908,Lightning Charging Cable,1,14.95,02/15/19 09:27,"169 13th St, New York City, NY 10001" +163909,Lightning Charging Cable,3,14.95,02/21/19 17:44,"326 Highland St, Portland, OR 97035" +163910,Flatscreen TV,1,300,02/07/19 09:50,"66 5th St, Portland, OR 97035" +163911,Wired Headphones,1,11.99,02/13/19 16:10,"603 Lake St, Austin, TX 73301" +163912,Lightning Charging Cable,1,14.95,02/06/19 13:08,"85 8th St, New York City, NY 10001" +163913,Lightning Charging Cable,1,14.95,02/16/19 10:29,"979 Elm St, Dallas, TX 75001" +163914,AAA Batteries (4-pack),1,2.99,02/06/19 07:19,"164 Jackson St, Los Angeles, CA 90001" +163915,Flatscreen TV,1,300,02/19/19 12:15,"720 Elm St, Boston, MA 02215" +163916,Wired Headphones,1,11.99,02/27/19 13:21,"762 Forest St, San Francisco, CA 94016" +163917,27in 4K Gaming Monitor,1,389.99,02/02/19 18:33,"332 2nd St, Boston, MA 02215" +163918,AA Batteries (4-pack),1,3.84,02/03/19 08:33,"74 Pine St, Atlanta, GA 30301" +163919,27in FHD Monitor,1,149.99,02/07/19 12:36,"332 Highland St, New York City, NY 10001" +163920,AAA Batteries (4-pack),1,2.99,02/19/19 18:34,"627 Willow St, Dallas, TX 75001" +163921,USB-C Charging Cable,1,11.95,02/20/19 13:18,"73 West St, Los Angeles, CA 90001" +163922,ThinkPad Laptop,1,999.99,02/02/19 22:07,"377 Chestnut St, Boston, MA 02215" +163923,AAA Batteries (4-pack),3,2.99,02/25/19 07:23,"620 Church St, San Francisco, CA 94016" +163924,Vareebadd Phone,1,400,02/20/19 16:17,"501 Washington St, Boston, MA 02215" +163925,AAA Batteries (4-pack),1,2.99,02/19/19 13:31,"572 Meadow St, San Francisco, CA 94016" +163926,USB-C Charging Cable,1,11.95,02/12/19 23:29,"742 Hickory St, San Francisco, CA 94016" +163927,Wired Headphones,1,11.99,02/10/19 21:28,"773 Adams St, Dallas, TX 75001" +163928,27in 4K Gaming Monitor,1,389.99,02/11/19 19:17,"384 Madison St, New York City, NY 10001" +163929,Vareebadd Phone,1,400,02/26/19 23:23,"872 Jackson St, Austin, TX 73301" +163930,Wired Headphones,1,11.99,02/27/19 13:43,"800 Willow St, Dallas, TX 75001" +163931,iPhone,1,700,02/23/19 10:21,"382 Washington St, Portland, ME 04101" +163932,27in 4K Gaming Monitor,1,389.99,02/05/19 17:08,"382 Washington St, Dallas, TX 75001" +163933,Lightning Charging Cable,1,14.95,02/14/19 18:11,"336 Church St, Boston, MA 02215" +163934,USB-C Charging Cable,1,11.95,02/21/19 08:08,"975 Walnut St, Los Angeles, CA 90001" +163935,Bose SoundSport Headphones,1,99.99,02/26/19 14:37,"292 Maple St, Austin, TX 73301" +163936,34in Ultrawide Monitor,1,379.99,02/22/19 16:17,"413 West St, Atlanta, GA 30301" +163937,Vareebadd Phone,1,400,02/06/19 11:53,"664 Church St, Boston, MA 02215" +163938,Apple Airpods Headphones,1,150,02/10/19 20:05,"674 Hill St, Dallas, TX 75001" +163939,Wired Headphones,1,11.99,02/17/19 16:40,"159 Ridge St, Seattle, WA 98101" +163940,USB-C Charging Cable,1,11.95,02/17/19 19:16,"956 Hickory St, Atlanta, GA 30301" +163941,27in FHD Monitor,1,149.99,02/12/19 15:52,"508 Jackson St, Boston, MA 02215" +163942,Wired Headphones,1,11.99,02/03/19 12:32,"320 Elm St, Austin, TX 73301" +163943,Apple Airpods Headphones,1,150,02/14/19 21:34,"819 8th St, Austin, TX 73301" +163944,Wired Headphones,1,11.99,02/02/19 11:57,"694 River St, Portland, OR 97035" +163945,20in Monitor,1,109.99,02/23/19 16:33,"90 Pine St, Atlanta, GA 30301" +163946,Apple Airpods Headphones,1,150,02/06/19 15:24,"307 11th St, Los Angeles, CA 90001" +163947,USB-C Charging Cable,1,11.95,02/27/19 07:37,"711 Meadow St, Atlanta, GA 30301" +163948,USB-C Charging Cable,1,11.95,02/13/19 08:46,"224 Walnut St, Los Angeles, CA 90001" +163949,20in Monitor,1,109.99,02/28/19 14:33,"647 Johnson St, Los Angeles, CA 90001" +163950,Apple Airpods Headphones,1,150,02/09/19 14:05,"564 13th St, Boston, MA 02215" +163951,Bose SoundSport Headphones,1,99.99,02/22/19 11:52,"610 Wilson St, San Francisco, CA 94016" +163952,Apple Airpods Headphones,1,150,02/19/19 20:58,"198 Cedar St, New York City, NY 10001" +163953,AAA Batteries (4-pack),1,2.99,02/23/19 17:01,"63 Spruce St, Boston, MA 02215" +163954,27in 4K Gaming Monitor,1,389.99,02/16/19 15:38,"360 Lake St, Austin, TX 73301" +163955,20in Monitor,1,109.99,02/28/19 09:08,"347 8th St, San Francisco, CA 94016" +163956,Macbook Pro Laptop,1,1700,02/07/19 07:27,"553 Cedar St, New York City, NY 10001" +163957,Wired Headphones,1,11.99,02/02/19 00:56,"584 Johnson St, San Francisco, CA 94016" +163958,AA Batteries (4-pack),1,3.84,02/20/19 10:09,"69 Pine St, Los Angeles, CA 90001" +163959,USB-C Charging Cable,1,11.95,02/07/19 15:43,"455 Willow St, Seattle, WA 98101" +163960,USB-C Charging Cable,1,11.95,02/22/19 10:46,"80 Park St, Los Angeles, CA 90001" +163960,Macbook Pro Laptop,1,1700,02/22/19 10:46,"80 Park St, Los Angeles, CA 90001" +163961,AAA Batteries (4-pack),1,2.99,02/05/19 04:34,"216 North St, Austin, TX 73301" +163962,AA Batteries (4-pack),1,3.84,02/14/19 22:49,"846 6th St, Los Angeles, CA 90001" +163963,AA Batteries (4-pack),1,3.84,02/22/19 11:51,"558 Sunset St, San Francisco, CA 94016" +163964,Lightning Charging Cable,1,14.95,02/01/19 07:47,"638 Park St, Portland, OR 97035" +163965,AA Batteries (4-pack),2,3.84,02/06/19 23:29,"930 Lakeview St, Atlanta, GA 30301" +163966,AA Batteries (4-pack),1,3.84,02/04/19 21:14,"122 Park St, Dallas, TX 75001" +163967,AAA Batteries (4-pack),1,2.99,02/04/19 14:12,"48 8th St, Los Angeles, CA 90001" +163968,AAA Batteries (4-pack),2,2.99,02/05/19 12:19,"173 1st St, San Francisco, CA 94016" +163969,AAA Batteries (4-pack),1,2.99,02/25/19 21:20,"747 Washington St, San Francisco, CA 94016" +163970,AA Batteries (4-pack),1,3.84,02/06/19 13:11,"355 Pine St, New York City, NY 10001" +163971,AAA Batteries (4-pack),1,2.99,02/23/19 19:20,"192 13th St, Portland, OR 97035" +163972,AAA Batteries (4-pack),1,2.99,02/15/19 12:51,"270 Cedar St, New York City, NY 10001" +163973,Lightning Charging Cable,1,14.95,02/05/19 14:43,"996 Walnut St, San Francisco, CA 94016" +163974,Bose SoundSport Headphones,1,99.99,02/13/19 12:53,"730 9th St, Los Angeles, CA 90001" +163975,ThinkPad Laptop,1,999.99,02/03/19 14:50,"364 Dogwood St, San Francisco, CA 94016" +163976,Lightning Charging Cable,1,14.95,02/24/19 12:07,"281 Hickory St, New York City, NY 10001" +163977,Lightning Charging Cable,1,14.95,02/23/19 13:00,"441 Elm St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +163978,Apple Airpods Headphones,1,150,02/11/19 07:32,"477 Spruce St, San Francisco, CA 94016" +163979,AAA Batteries (4-pack),2,2.99,02/21/19 18:27,"385 1st St, Seattle, WA 98101" +163980,27in 4K Gaming Monitor,1,389.99,02/21/19 11:45,"369 Sunset St, Boston, MA 02215" +163981,Apple Airpods Headphones,1,150,02/02/19 19:47,"305 Center St, Los Angeles, CA 90001" +163982,ThinkPad Laptop,1,999.99,02/17/19 21:56,"422 Lake St, Dallas, TX 75001" +163983,USB-C Charging Cable,2,11.95,02/20/19 22:01,"132 8th St, San Francisco, CA 94016" +163984,Lightning Charging Cable,1,14.95,02/15/19 20:34,"804 Willow St, San Francisco, CA 94016" +163985,27in FHD Monitor,1,149.99,02/09/19 22:45,"257 Cherry St, Portland, OR 97035" +163986,27in FHD Monitor,1,149.99,02/25/19 12:49,"509 8th St, Austin, TX 73301" +163987,Apple Airpods Headphones,1,150,02/17/19 15:12,"255 Lincoln St, San Francisco, CA 94016" +163988,34in Ultrawide Monitor,1,379.99,02/02/19 22:23,"999 10th St, New York City, NY 10001" +163989,AA Batteries (4-pack),1,3.84,02/05/19 08:53,"76 Jackson St, Los Angeles, CA 90001" +163990,Wired Headphones,1,11.99,02/10/19 09:29,"612 12th St, New York City, NY 10001" +163991,27in FHD Monitor,1,149.99,02/16/19 12:09,"829 Washington St, Portland, OR 97035" +163992,AAA Batteries (4-pack),1,2.99,02/16/19 18:07,"307 Wilson St, San Francisco, CA 94016" +163993,Wired Headphones,1,11.99,02/04/19 17:45,"922 Center St, San Francisco, CA 94016" +163994,AAA Batteries (4-pack),1,2.99,02/07/19 15:54,"552 Lakeview St, Seattle, WA 98101" +163995,AAA Batteries (4-pack),3,2.99,02/06/19 19:46,"999 Jackson St, Boston, MA 02215" +163996,AA Batteries (4-pack),1,3.84,02/14/19 20:26,"514 River St, Los Angeles, CA 90001" +163997,Bose SoundSport Headphones,1,99.99,02/16/19 22:32,"129 Lincoln St, Boston, MA 02215" +163998,Wired Headphones,1,11.99,02/27/19 12:11,"782 Elm St, Boston, MA 02215" +163999,Bose SoundSport Headphones,1,99.99,02/22/19 14:14,"424 North St, San Francisco, CA 94016" +164000,20in Monitor,1,109.99,02/22/19 13:48,"303 Church St, Atlanta, GA 30301" +164001,Apple Airpods Headphones,1,150,02/20/19 17:11,"277 9th St, Los Angeles, CA 90001" +164002,Lightning Charging Cable,1,14.95,02/09/19 15:06,"362 2nd St, Los Angeles, CA 90001" +164003,Wired Headphones,1,11.99,02/23/19 08:24,"78 Lake St, Atlanta, GA 30301" +164004,AAA Batteries (4-pack),2,2.99,02/16/19 09:45,"209 Meadow St, Los Angeles, CA 90001" +164005,Wired Headphones,1,11.99,02/17/19 15:21,"452 West St, Boston, MA 02215" +164006,27in 4K Gaming Monitor,1,389.99,02/28/19 21:11,"183 Dogwood St, New York City, NY 10001" +164007,ThinkPad Laptop,1,999.99,02/11/19 09:47,"700 10th St, Dallas, TX 75001" +164008,Apple Airpods Headphones,1,150,02/12/19 20:22,"653 Adams St, Seattle, WA 98101" +164009,Lightning Charging Cable,1,14.95,02/19/19 15:27,"107 6th St, Boston, MA 02215" +164010,Lightning Charging Cable,1,14.95,02/23/19 13:30,"283 Jefferson St, Seattle, WA 98101" +164010,AAA Batteries (4-pack),2,2.99,02/23/19 13:30,"283 Jefferson St, Seattle, WA 98101" +164011,27in FHD Monitor,1,149.99,02/02/19 20:16,"956 4th St, Los Angeles, CA 90001" +164012,Macbook Pro Laptop,1,1700,02/21/19 08:35,"799 Washington St, San Francisco, CA 94016" +164013,Lightning Charging Cable,1,14.95,02/14/19 19:46,"262 River St, Los Angeles, CA 90001" +164014,27in FHD Monitor,1,149.99,02/12/19 13:05,"361 Johnson St, San Francisco, CA 94016" +164015,27in FHD Monitor,1,149.99,02/04/19 00:36,"517 North St, Seattle, WA 98101" +164016,27in 4K Gaming Monitor,1,389.99,02/27/19 11:13,"661 Meadow St, Austin, TX 73301" +164017,Vareebadd Phone,1,400,02/17/19 10:55,"511 Hill St, Atlanta, GA 30301" +164018,USB-C Charging Cable,1,11.95,02/17/19 16:08,"922 Meadow St, Los Angeles, CA 90001" +164019,Apple Airpods Headphones,1,150,02/07/19 03:56,"645 11th St, San Francisco, CA 94016" +164020,20in Monitor,1,109.99,02/24/19 13:00,"409 Church St, Los Angeles, CA 90001" +164021,AA Batteries (4-pack),1,3.84,02/06/19 22:42,"990 7th St, Boston, MA 02215" +164022,27in FHD Monitor,1,149.99,02/17/19 19:42,"706 9th St, San Francisco, CA 94016" +164023,20in Monitor,1,109.99,02/21/19 22:37,"13 1st St, New York City, NY 10001" +164024,AA Batteries (4-pack),2,3.84,02/25/19 11:15,"315 12th St, New York City, NY 10001" +,,,,, +164025,27in 4K Gaming Monitor,1,389.99,02/05/19 19:25,"703 Center St, Los Angeles, CA 90001" +164026,Bose SoundSport Headphones,1,99.99,02/03/19 17:22,"993 North St, San Francisco, CA 94016" +164027,AAA Batteries (4-pack),2,2.99,02/18/19 16:01,"253 13th St, Boston, MA 02215" +164028,USB-C Charging Cable,1,11.95,02/13/19 13:02,"416 5th St, New York City, NY 10001" +164029,Wired Headphones,1,11.99,02/24/19 15:56,"644 12th St, Los Angeles, CA 90001" +164030,20in Monitor,1,109.99,02/04/19 10:41,"938 7th St, Boston, MA 02215" +164031,Vareebadd Phone,1,400,02/26/19 11:51,"917 9th St, Seattle, WA 98101" +164032,AA Batteries (4-pack),1,3.84,02/18/19 17:30,"879 Cedar St, Boston, MA 02215" +164033,Apple Airpods Headphones,1,150,02/05/19 00:17,"939 Hickory St, Portland, OR 97035" +164034,Flatscreen TV,1,300,02/27/19 11:59,"5 River St, San Francisco, CA 94016" +164035,USB-C Charging Cable,1,11.95,02/07/19 15:31,"756 Pine St, Austin, TX 73301" +164036,AAA Batteries (4-pack),1,2.99,02/26/19 11:02,"794 Jackson St, San Francisco, CA 94016" +164037,AA Batteries (4-pack),2,3.84,02/01/19 09:37,"208 Pine St, Boston, MA 02215" +164038,AAA Batteries (4-pack),2,2.99,02/18/19 17:31,"309 Sunset St, New York City, NY 10001" +164039,Wired Headphones,1,11.99,02/05/19 23:12,"641 Center St, Seattle, WA 98101" +164040,Google Phone,1,600,02/14/19 13:10,"943 14th St, Portland, ME 04101" +164041,AAA Batteries (4-pack),1,2.99,02/23/19 08:40,"249 Spruce St, Los Angeles, CA 90001" +164042,27in FHD Monitor,1,149.99,02/05/19 17:36,"474 Maple St, Los Angeles, CA 90001" +164043,27in FHD Monitor,1,149.99,02/18/19 07:40,"243 Johnson St, Atlanta, GA 30301" +164044,USB-C Charging Cable,1,11.95,02/09/19 13:15,"149 Lakeview St, Atlanta, GA 30301" +164045,Bose SoundSport Headphones,1,99.99,02/25/19 12:52,"567 Hill St, Dallas, TX 75001" +164046,AA Batteries (4-pack),1,3.84,02/02/19 22:21,"825 South St, Dallas, TX 75001" +164047,Lightning Charging Cable,1,14.95,02/28/19 18:13,"561 Elm St, Dallas, TX 75001" +164048,USB-C Charging Cable,1,11.95,02/21/19 22:19,"600 Hill St, Seattle, WA 98101" +164049,27in 4K Gaming Monitor,1,389.99,02/04/19 19:26,"615 11th St, Boston, MA 02215" +164050,Wired Headphones,1,11.99,02/23/19 00:23,"339 Wilson St, Dallas, TX 75001" +164051,Lightning Charging Cable,1,14.95,02/11/19 02:16,"389 Jefferson St, Los Angeles, CA 90001" +164052,Bose SoundSport Headphones,1,99.99,02/05/19 06:02,"822 Highland St, Los Angeles, CA 90001" +164053,Wired Headphones,1,11.99,02/26/19 12:31,"769 11th St, Los Angeles, CA 90001" +164054,Apple Airpods Headphones,1,150,02/12/19 14:55,"508 Washington St, San Francisco, CA 94016" +164055,AAA Batteries (4-pack),1,2.99,02/12/19 18:14,"374 10th St, Atlanta, GA 30301" +164056,Bose SoundSport Headphones,1,99.99,02/08/19 00:09,"754 North St, Los Angeles, CA 90001" +164057,Lightning Charging Cable,1,14.95,02/09/19 01:58,"156 Church St, New York City, NY 10001" +164058,AAA Batteries (4-pack),3,2.99,02/12/19 13:42,"158 Lakeview St, Dallas, TX 75001" +164059,AAA Batteries (4-pack),2,2.99,02/18/19 12:17,"730 Cedar St, Dallas, TX 75001" +164060,27in FHD Monitor,1,149.99,02/17/19 16:29,"263 2nd St, San Francisco, CA 94016" +164061,iPhone,1,700,02/02/19 11:09,"218 Washington St, San Francisco, CA 94016" +164062,Google Phone,1,600,02/11/19 17:48,"878 2nd St, Austin, TX 73301" +164062,Wired Headphones,1,11.99,02/11/19 17:48,"878 2nd St, Austin, TX 73301" +164063,Apple Airpods Headphones,1,150,02/17/19 13:06,"378 Walnut St, Dallas, TX 75001" +164064,Apple Airpods Headphones,1,150,02/27/19 16:09,"650 4th St, Boston, MA 02215" +164065,Wired Headphones,1,11.99,02/28/19 09:30,"89 8th St, Los Angeles, CA 90001" +164066,Lightning Charging Cable,1,14.95,02/07/19 12:35,"106 6th St, Austin, TX 73301" +164067,Wired Headphones,1,11.99,02/10/19 20:49,"655 Jefferson St, Seattle, WA 98101" +164068,Bose SoundSport Headphones,1,99.99,02/04/19 09:01,"180 6th St, Los Angeles, CA 90001" +164069,USB-C Charging Cable,1,11.95,02/18/19 13:54,"836 Highland St, Boston, MA 02215" +164070,Lightning Charging Cable,1,14.95,02/12/19 18:33,"237 12th St, Boston, MA 02215" +164071,AA Batteries (4-pack),1,3.84,02/26/19 22:12,"637 12th St, Portland, OR 97035" +164072,Bose SoundSport Headphones,1,99.99,02/22/19 12:40,"259 Elm St, San Francisco, CA 94016" +164073,AAA Batteries (4-pack),1,2.99,02/06/19 20:48,"571 14th St, San Francisco, CA 94016" +164074,Wired Headphones,1,11.99,02/27/19 20:36,"750 Sunset St, Seattle, WA 98101" +164075,27in FHD Monitor,1,149.99,02/22/19 23:17,"955 14th St, San Francisco, CA 94016" +164076,Apple Airpods Headphones,1,150,02/21/19 06:04,"144 Chestnut St, San Francisco, CA 94016" +164077,Wired Headphones,1,11.99,02/11/19 13:26,"634 11th St, Los Angeles, CA 90001" +164078,AA Batteries (4-pack),1,3.84,02/25/19 20:03,"953 Lincoln St, San Francisco, CA 94016" +164079,Bose SoundSport Headphones,1,99.99,02/21/19 09:47,"159 Ridge St, Boston, MA 02215" +164080,Lightning Charging Cable,1,14.95,02/10/19 22:02,"278 Lake St, Los Angeles, CA 90001" +164081,Bose SoundSport Headphones,1,99.99,02/16/19 00:13,"422 Johnson St, Los Angeles, CA 90001" +164082,Apple Airpods Headphones,1,150,02/11/19 20:42,"181 Johnson St, Boston, MA 02215" +164083,27in 4K Gaming Monitor,1,389.99,02/27/19 10:02,"769 5th St, San Francisco, CA 94016" +164084,27in 4K Gaming Monitor,1,389.99,02/27/19 09:36,"560 Wilson St, New York City, NY 10001" +164085,iPhone,1,700,02/11/19 13:07,"611 Washington St, Boston, MA 02215" +164085,Lightning Charging Cable,1,14.95,02/11/19 13:07,"611 Washington St, Boston, MA 02215" +164086,27in 4K Gaming Monitor,1,389.99,02/08/19 20:16,"694 Pine St, Atlanta, GA 30301" +164086,AAA Batteries (4-pack),3,2.99,02/08/19 20:16,"694 Pine St, Atlanta, GA 30301" +164087,ThinkPad Laptop,1,999.99,02/02/19 14:57,"625 Lakeview St, San Francisco, CA 94016" +164088,iPhone,1,700,02/01/19 11:07,"871 Pine St, New York City, NY 10001" +164089,27in 4K Gaming Monitor,1,389.99,02/09/19 17:41,"937 West St, Atlanta, GA 30301" +164090,AA Batteries (4-pack),4,3.84,02/07/19 15:42,"117 Dogwood St, New York City, NY 10001" +164091,Lightning Charging Cable,1,14.95,02/01/19 12:40,"236 Jefferson St, New York City, NY 10001" +164092,AA Batteries (4-pack),1,3.84,02/09/19 15:53,"942 7th St, San Francisco, CA 94016" +164093,27in FHD Monitor,1,149.99,02/04/19 18:32,"386 Center St, Dallas, TX 75001" +164094,20in Monitor,1,109.99,02/01/19 17:09,"52 11th St, Atlanta, GA 30301" +164095,20in Monitor,1,109.99,02/24/19 15:56,"263 2nd St, Los Angeles, CA 90001" +164096,Apple Airpods Headphones,1,150,02/28/19 17:15,"442 West St, Dallas, TX 75001" +164097,AA Batteries (4-pack),1,3.84,02/01/19 18:15,"782 Park St, Los Angeles, CA 90001" +164098,AA Batteries (4-pack),1,3.84,02/17/19 18:27,"506 South St, Dallas, TX 75001" +164099,iPhone,1,700,02/20/19 17:44,"150 Spruce St, Boston, MA 02215" +164100,AAA Batteries (4-pack),1,2.99,02/27/19 23:47,"737 River St, Seattle, WA 98101" +164101,iPhone,1,700,02/12/19 18:48,"128 Hickory St, Los Angeles, CA 90001" +164101,Lightning Charging Cable,1,14.95,02/12/19 18:48,"128 Hickory St, Los Angeles, CA 90001" +164102,Lightning Charging Cable,1,14.95,02/21/19 20:46,"425 Main St, San Francisco, CA 94016" +164103,Flatscreen TV,1,300,02/11/19 22:53,"595 Main St, Seattle, WA 98101" +164104,Lightning Charging Cable,1,14.95,02/26/19 17:46,"605 10th St, Los Angeles, CA 90001" +164105,USB-C Charging Cable,1,11.95,02/27/19 17:35,"892 Pine St, New York City, NY 10001" +164106,Macbook Pro Laptop,1,1700,02/05/19 16:51,"741 2nd St, Los Angeles, CA 90001" +164107,Wired Headphones,1,11.99,02/14/19 13:19,"217 Forest St, Atlanta, GA 30301" +164108,LG Washing Machine,1,600.0,02/07/19 10:04,"47 Madison St, Boston, MA 02215" +164109,Wired Headphones,1,11.99,02/20/19 07:57,"571 Cedar St, Seattle, WA 98101" +164110,Google Phone,1,600,02/24/19 04:09,"633 Jefferson St, New York City, NY 10001" +164110,Wired Headphones,1,11.99,02/24/19 04:09,"633 Jefferson St, New York City, NY 10001" +164111,Bose SoundSport Headphones,1,99.99,02/22/19 13:55,"60 Hickory St, Boston, MA 02215" +164112,USB-C Charging Cable,1,11.95,02/17/19 21:05,"145 Lakeview St, Los Angeles, CA 90001" +164113,iPhone,1,700,02/08/19 12:22,"699 Meadow St, New York City, NY 10001" +164114,AAA Batteries (4-pack),1,2.99,02/08/19 23:34,"157 Lakeview St, San Francisco, CA 94016" +164115,AA Batteries (4-pack),3,3.84,02/10/19 21:49,"479 14th St, Seattle, WA 98101" +164116,USB-C Charging Cable,1,11.95,02/02/19 19:43,"207 Meadow St, Los Angeles, CA 90001" +164117,20in Monitor,1,109.99,02/09/19 20:42,"953 North St, Austin, TX 73301" +164118,Lightning Charging Cable,1,14.95,02/10/19 14:51,"746 Maple St, Seattle, WA 98101" +164119,Lightning Charging Cable,2,14.95,02/13/19 11:09,"98 Jackson St, Austin, TX 73301" +164120,34in Ultrawide Monitor,1,379.99,02/12/19 19:21,"21 Jackson St, Portland, OR 97035" +164121,AAA Batteries (4-pack),1,2.99,02/11/19 12:23,"724 5th St, San Francisco, CA 94016" +164122,Flatscreen TV,1,300,02/16/19 19:18,"596 Chestnut St, Portland, OR 97035" +164123,USB-C Charging Cable,1,11.95,02/11/19 21:17,"979 14th St, Los Angeles, CA 90001" +,,,,, +164124,Macbook Pro Laptop,1,1700,02/16/19 13:48,"233 Park St, San Francisco, CA 94016" +,,,,, +164125,Bose SoundSport Headphones,1,99.99,02/09/19 09:26,"27 River St, New York City, NY 10001" +164126,27in FHD Monitor,1,149.99,02/04/19 22:13,"824 Lake St, San Francisco, CA 94016" +164127,ThinkPad Laptop,1,999.99,02/27/19 12:23,"52 Meadow St, San Francisco, CA 94016" +164128,Flatscreen TV,1,300,02/09/19 16:01,"188 6th St, New York City, NY 10001" +164129,AAA Batteries (4-pack),1,2.99,02/18/19 21:55,"167 Hill St, Austin, TX 73301" +164130,USB-C Charging Cable,1,11.95,02/10/19 14:36,"984 Walnut St, San Francisco, CA 94016" +164131,Lightning Charging Cable,1,14.95,02/17/19 15:13,"736 Adams St, Boston, MA 02215" +164132,AA Batteries (4-pack),1,3.84,02/23/19 18:55,"699 Hill St, New York City, NY 10001" +164132,Apple Airpods Headphones,1,150,02/23/19 18:55,"699 Hill St, New York City, NY 10001" +164133,Lightning Charging Cable,3,14.95,02/25/19 18:46,"912 Elm St, Portland, OR 97035" +164134,Apple Airpods Headphones,1,150,02/01/19 17:21,"610 Spruce St, San Francisco, CA 94016" +164135,Macbook Pro Laptop,1,1700,02/21/19 22:27,"12 Highland St, Dallas, TX 75001" +164136,Flatscreen TV,1,300,02/26/19 14:07,"162 7th St, Portland, OR 97035" +164137,Lightning Charging Cable,1,14.95,02/26/19 01:04,"186 Cedar St, San Francisco, CA 94016" +164138,AAA Batteries (4-pack),2,2.99,02/01/19 20:54,"921 1st St, Los Angeles, CA 90001" +164139,Wired Headphones,2,11.99,02/08/19 21:09,"163 Lake St, Portland, OR 97035" +164140,27in 4K Gaming Monitor,1,389.99,02/28/19 10:58,"93 13th St, San Francisco, CA 94016" +164141,AAA Batteries (4-pack),3,2.99,02/03/19 17:54,"490 West St, Los Angeles, CA 90001" +164142,USB-C Charging Cable,1,11.95,02/10/19 16:56,"598 Jackson St, Los Angeles, CA 90001" +164143,USB-C Charging Cable,1,11.95,02/20/19 11:23,"221 6th St, Los Angeles, CA 90001" +164144,Wired Headphones,1,11.99,02/14/19 16:23,"972 9th St, New York City, NY 10001" +164145,AA Batteries (4-pack),1,3.84,02/06/19 00:18,"502 Ridge St, New York City, NY 10001" +164146,Apple Airpods Headphones,1,150,02/06/19 06:41,"725 Elm St, Atlanta, GA 30301" +164147,ThinkPad Laptop,1,999.99,02/27/19 15:48,"876 Adams St, Los Angeles, CA 90001" +164148,Lightning Charging Cable,1,14.95,02/04/19 17:52,"688 Maple St, Dallas, TX 75001" +164149,AAA Batteries (4-pack),1,2.99,02/10/19 12:16,"15 Elm St, Boston, MA 02215" +164150,AA Batteries (4-pack),1,3.84,02/19/19 19:47,"770 Johnson St, San Francisco, CA 94016" +164151,27in 4K Gaming Monitor,1,389.99,02/15/19 12:25,"354 Forest St, Atlanta, GA 30301" +164152,AA Batteries (4-pack),3,3.84,02/19/19 11:39,"568 Maple St, San Francisco, CA 94016" +164153,AA Batteries (4-pack),2,3.84,02/22/19 21:04,"823 Lake St, San Francisco, CA 94016" +164154,Vareebadd Phone,1,400,02/25/19 13:30,"750 Washington St, Boston, MA 02215" +164155,Vareebadd Phone,1,400,02/18/19 03:40,"402 Meadow St, Seattle, WA 98101" +164156,27in 4K Gaming Monitor,1,389.99,02/11/19 19:56,"913 Pine St, Los Angeles, CA 90001" +164157,AA Batteries (4-pack),2,3.84,02/21/19 15:26,"254 12th St, Austin, TX 73301" +164158,Lightning Charging Cable,1,14.95,02/07/19 07:14,"500 Sunset St, Atlanta, GA 30301" +164159,AA Batteries (4-pack),1,3.84,02/13/19 12:26,"777 River St, San Francisco, CA 94016" +164160,AAA Batteries (4-pack),1,2.99,02/22/19 09:03,"83 Main St, Atlanta, GA 30301" +164161,Macbook Pro Laptop,1,1700,02/25/19 14:17,"9 Madison St, Boston, MA 02215" +164162,AAA Batteries (4-pack),2,2.99,02/11/19 10:57,"43 Meadow St, Dallas, TX 75001" +164163,Lightning Charging Cable,1,14.95,02/12/19 15:55,"750 7th St, New York City, NY 10001" +164164,USB-C Charging Cable,1,11.95,02/23/19 19:13,"851 Chestnut St, Austin, TX 73301" +164165,AA Batteries (4-pack),2,3.84,02/16/19 19:11,"24 Adams St, Portland, OR 97035" +164166,34in Ultrawide Monitor,1,379.99,02/18/19 20:25,"159 River St, Atlanta, GA 30301" +164167,AAA Batteries (4-pack),1,2.99,02/04/19 12:08,"176 2nd St, Dallas, TX 75001" +164168,Wired Headphones,1,11.99,02/12/19 10:11,"836 Washington St, Portland, OR 97035" +164169,Lightning Charging Cable,1,14.95,02/28/19 19:30,"523 Madison St, Boston, MA 02215" +164170,Apple Airpods Headphones,1,150,02/22/19 14:53,"888 Johnson St, San Francisco, CA 94016" +164171,Lightning Charging Cable,1,14.95,02/13/19 12:11,"486 Cherry St, Dallas, TX 75001" +164172,Lightning Charging Cable,1,14.95,02/13/19 10:41,"114 Church St, Portland, OR 97035" +164172,Bose SoundSport Headphones,1,99.99,02/13/19 10:41,"114 Church St, Portland, OR 97035" +164173,ThinkPad Laptop,1,999.99,02/08/19 21:53,"579 12th St, New York City, NY 10001" +164174,Lightning Charging Cable,1,14.95,02/27/19 21:53,"502 West St, San Francisco, CA 94016" +164175,27in 4K Gaming Monitor,1,389.99,02/05/19 23:08,"709 Lincoln St, Dallas, TX 75001" +164176,34in Ultrawide Monitor,1,379.99,02/24/19 10:36,"246 Lincoln St, Los Angeles, CA 90001" +164177,Lightning Charging Cable,1,14.95,02/09/19 08:59,"727 Cherry St, Boston, MA 02215" +164178,27in 4K Gaming Monitor,1,389.99,02/19/19 23:57,"670 Adams St, New York City, NY 10001" +164179,AA Batteries (4-pack),3,3.84,02/14/19 22:23,"679 Cedar St, Los Angeles, CA 90001" +164180,27in FHD Monitor,1,149.99,02/28/19 13:30,"5 West St, San Francisco, CA 94016" +164181,Wired Headphones,1,11.99,02/05/19 09:58,"294 Walnut St, Boston, MA 02215" +164182,Macbook Pro Laptop,1,1700,02/17/19 19:52,"116 Forest St, Seattle, WA 98101" +164183,USB-C Charging Cable,1,11.95,02/05/19 15:17,"688 Forest St, Los Angeles, CA 90001" +164184,Google Phone,1,600,02/04/19 13:08,"904 Hill St, Dallas, TX 75001" +164184,USB-C Charging Cable,1,11.95,02/04/19 13:08,"904 Hill St, Dallas, TX 75001" +164185,Wired Headphones,1,11.99,02/28/19 23:23,"951 Jefferson St, Boston, MA 02215" +164186,Wired Headphones,1,11.99,02/06/19 15:11,"399 Cedar St, New York City, NY 10001" +164187,USB-C Charging Cable,1,11.95,02/11/19 20:38,"849 West St, New York City, NY 10001" +164188,Wired Headphones,1,11.99,02/14/19 01:04,"23 6th St, Boston, MA 02215" +164189,Wired Headphones,1,11.99,02/10/19 17:34,"546 Maple St, Austin, TX 73301" +164190,AA Batteries (4-pack),2,3.84,02/22/19 16:17,"955 Center St, New York City, NY 10001" +164191,Apple Airpods Headphones,1,150,02/28/19 17:42,"443 Cherry St, Seattle, WA 98101" +164192,AA Batteries (4-pack),1,3.84,02/03/19 14:10,"330 Center St, Seattle, WA 98101" +164193,Flatscreen TV,1,300,02/21/19 17:49,"118 Lakeview St, Seattle, WA 98101" +164194,Apple Airpods Headphones,1,150,02/20/19 23:04,"674 Cedar St, Boston, MA 02215" +164195,AA Batteries (4-pack),1,3.84,02/21/19 20:52,"763 Adams St, San Francisco, CA 94016" +164196,USB-C Charging Cable,1,11.95,02/18/19 23:37,"268 5th St, San Francisco, CA 94016" +164197,27in 4K Gaming Monitor,1,389.99,02/27/19 18:39,"108 Walnut St, Boston, MA 02215" +164198,AAA Batteries (4-pack),1,2.99,02/12/19 16:58,"826 Hill St, Austin, TX 73301" +164199,Wired Headphones,1,11.99,02/12/19 21:05,"768 Adams St, Boston, MA 02215" +164200,27in 4K Gaming Monitor,1,389.99,02/16/19 08:00,"42 Pine St, Los Angeles, CA 90001" +164201,Flatscreen TV,1,300,02/04/19 14:33,"358 13th St, New York City, NY 10001" +164202,20in Monitor,1,109.99,02/08/19 18:02,"568 Walnut St, New York City, NY 10001" +164203,AAA Batteries (4-pack),1,2.99,02/25/19 16:53,"175 Ridge St, Los Angeles, CA 90001" +164204,Apple Airpods Headphones,1,150,02/04/19 09:19,"266 Meadow St, Los Angeles, CA 90001" +164205,AAA Batteries (4-pack),2,2.99,02/16/19 18:06,"670 Center St, Portland, OR 97035" +164206,Wired Headphones,1,11.99,02/25/19 08:55,"676 Hill St, Dallas, TX 75001" +164207,Lightning Charging Cable,1,14.95,02/12/19 22:36,"948 Main St, New York City, NY 10001" +164208,Wired Headphones,1,11.99,02/17/19 11:24,"225 Pine St, Boston, MA 02215" +164209,AA Batteries (4-pack),1,3.84,02/01/19 16:08,"24 Wilson St, Los Angeles, CA 90001" +164210,USB-C Charging Cable,2,11.95,02/22/19 07:32,"841 1st St, New York City, NY 10001" +164211,USB-C Charging Cable,1,11.95,02/27/19 14:03,"332 Washington St, Dallas, TX 75001" +164212,Lightning Charging Cable,1,14.95,02/03/19 19:52,"636 Willow St, Atlanta, GA 30301" +164213,Wired Headphones,1,11.99,02/02/19 09:46,"93 North St, Portland, OR 97035" +164214,Lightning Charging Cable,2,14.95,02/19/19 18:29,"209 Dogwood St, New York City, NY 10001" +164215,Lightning Charging Cable,1,14.95,02/14/19 08:57,"509 Hill St, San Francisco, CA 94016" +164216,AAA Batteries (4-pack),1,2.99,02/09/19 20:49,"633 Walnut St, San Francisco, CA 94016" +164216,Wired Headphones,2,11.99,02/09/19 20:49,"633 Walnut St, San Francisco, CA 94016" +164217,Apple Airpods Headphones,1,150,02/19/19 20:48,"272 Church St, Los Angeles, CA 90001" +164218,iPhone,1,700,02/04/19 17:20,"941 Pine St, Austin, TX 73301" +164219,Wired Headphones,1,11.99,02/05/19 18:24,"526 4th St, Atlanta, GA 30301" +164220,AAA Batteries (4-pack),1,2.99,02/16/19 16:19,"289 South St, Los Angeles, CA 90001" +164221,Bose SoundSport Headphones,1,99.99,02/20/19 14:39,"587 4th St, Seattle, WA 98101" +164222,AAA Batteries (4-pack),1,2.99,02/08/19 20:21,"636 Cherry St, Boston, MA 02215" +164223,USB-C Charging Cable,1,11.95,02/27/19 21:46,"853 Dogwood St, Los Angeles, CA 90001" +164224,20in Monitor,1,109.99,02/09/19 19:14,"853 7th St, Los Angeles, CA 90001" +164225,Google Phone,1,600,02/15/19 22:37,"811 1st St, Dallas, TX 75001" +164226,Lightning Charging Cable,1,14.95,02/15/19 23:13,"350 Lakeview St, San Francisco, CA 94016" +164227,AAA Batteries (4-pack),1,2.99,02/20/19 08:34,"812 Pine St, San Francisco, CA 94016" +164228,Lightning Charging Cable,1,14.95,02/19/19 01:32,"792 Church St, Seattle, WA 98101" +164229,Apple Airpods Headphones,1,150,02/24/19 10:21,"777 Spruce St, Boston, MA 02215" +164230,Apple Airpods Headphones,1,150,02/10/19 15:52,"396 Pine St, San Francisco, CA 94016" +164231,USB-C Charging Cable,1,11.95,02/23/19 14:55,"642 Center St, New York City, NY 10001" +164232,USB-C Charging Cable,1,11.95,02/01/19 20:27,"197 River St, Dallas, TX 75001" +164233,Lightning Charging Cable,1,14.95,02/10/19 11:18,"911 Park St, Dallas, TX 75001" +164234,Apple Airpods Headphones,1,150,02/10/19 16:01,"124 Forest St, Portland, OR 97035" +164235,AA Batteries (4-pack),1,3.84,02/07/19 20:59,"692 Lakeview St, Los Angeles, CA 90001" +164236,Lightning Charging Cable,1,14.95,02/25/19 13:57,"878 Highland St, New York City, NY 10001" +164237,AA Batteries (4-pack),2,3.84,02/28/19 07:38,"501 Dogwood St, New York City, NY 10001" +164238,AA Batteries (4-pack),2,3.84,02/01/19 11:51,"862 6th St, Portland, OR 97035" +164239,AA Batteries (4-pack),1,3.84,02/12/19 18:19,"296 Pine St, San Francisco, CA 94016" +164240,Apple Airpods Headphones,1,150,02/20/19 12:44,"740 4th St, Dallas, TX 75001" +164241,Bose SoundSport Headphones,1,99.99,02/01/19 07:12,"10 Chestnut St, Seattle, WA 98101" +164242,Wired Headphones,1,11.99,02/04/19 10:20,"271 Dogwood St, Dallas, TX 75001" +164243,Lightning Charging Cable,1,14.95,02/22/19 21:28,"807 Adams St, Seattle, WA 98101" +164244,27in FHD Monitor,1,149.99,02/01/19 10:40,"228 8th St, Los Angeles, CA 90001" +164245,Bose SoundSport Headphones,1,99.99,02/16/19 10:43,"442 Willow St, San Francisco, CA 94016" +164246,ThinkPad Laptop,1,999.99,02/16/19 14:05,"926 6th St, Atlanta, GA 30301" +164247,Wired Headphones,1,11.99,02/25/19 19:56,"233 Lincoln St, New York City, NY 10001" +164248,AA Batteries (4-pack),1,3.84,02/11/19 19:02,"726 Maple St, Portland, OR 97035" +164249,AA Batteries (4-pack),1,3.84,02/27/19 12:47,"418 Hill St, Los Angeles, CA 90001" +164250,AA Batteries (4-pack),2,3.84,02/11/19 19:39,"312 Lincoln St, Los Angeles, CA 90001" +164251,34in Ultrawide Monitor,1,379.99,02/11/19 15:03,"775 River St, San Francisco, CA 94016" +164252,Wired Headphones,1,11.99,02/01/19 10:12,"524 Madison St, San Francisco, CA 94016" +164253,34in Ultrawide Monitor,1,379.99,02/09/19 20:36,"971 Lincoln St, San Francisco, CA 94016" +164254,AAA Batteries (4-pack),1,2.99,02/08/19 13:40,"363 Sunset St, San Francisco, CA 94016" +164255,Bose SoundSport Headphones,1,99.99,02/04/19 13:57,"580 Ridge St, Boston, MA 02215" +164256,Flatscreen TV,1,300,02/25/19 14:57,"509 Ridge St, San Francisco, CA 94016" +164257,Wired Headphones,2,11.99,02/02/19 10:41,"371 Maple St, Portland, ME 04101" +164258,Lightning Charging Cable,1,14.95,02/20/19 10:46,"767 Lincoln St, Los Angeles, CA 90001" +164259,Bose SoundSport Headphones,1,99.99,02/23/19 23:41,"508 Pine St, Austin, TX 73301" +164260,USB-C Charging Cable,1,11.95,02/16/19 13:22,"50 River St, Boston, MA 02215" +164261,AAA Batteries (4-pack),1,2.99,02/01/19 13:23,"72 Hill St, Los Angeles, CA 90001" +164262,Wired Headphones,1,11.99,02/06/19 14:05,"432 Jackson St, Seattle, WA 98101" +164263,AAA Batteries (4-pack),1,2.99,02/24/19 22:53,"502 1st St, Dallas, TX 75001" +164264,AAA Batteries (4-pack),1,2.99,02/22/19 12:57,"162 Washington St, Boston, MA 02215" +164265,AAA Batteries (4-pack),1,2.99,02/13/19 10:31,"437 Lake St, New York City, NY 10001" +164266,27in 4K Gaming Monitor,1,389.99,02/25/19 13:32,"348 Adams St, San Francisco, CA 94016" +164267,27in 4K Gaming Monitor,1,389.99,02/05/19 20:31,"653 Lake St, New York City, NY 10001" +164268,Apple Airpods Headphones,1,150,02/11/19 18:40,"954 Cherry St, Boston, MA 02215" +164269,Wired Headphones,1,11.99,02/22/19 17:52,"391 Meadow St, Boston, MA 02215" +164270,AA Batteries (4-pack),1,3.84,02/15/19 14:03,"393 Johnson St, New York City, NY 10001" +164271,USB-C Charging Cable,1,11.95,02/24/19 19:29,"697 Center St, Portland, OR 97035" +164272,Lightning Charging Cable,1,14.95,02/21/19 23:21,"327 Adams St, Los Angeles, CA 90001" +164273,USB-C Charging Cable,1,11.95,02/24/19 22:48,"504 Madison St, Atlanta, GA 30301" +164274,USB-C Charging Cable,1,11.95,02/09/19 17:29,"718 4th St, San Francisco, CA 94016" +164275,AAA Batteries (4-pack),1,2.99,02/15/19 16:03,"288 Meadow St, New York City, NY 10001" +164276,Lightning Charging Cable,1,14.95,02/12/19 14:54,"670 South St, San Francisco, CA 94016" +164277,Wired Headphones,1,11.99,02/22/19 13:06,"239 9th St, Los Angeles, CA 90001" +164278,AAA Batteries (4-pack),1,2.99,02/09/19 11:56,"650 Elm St, Los Angeles, CA 90001" +164279,USB-C Charging Cable,1,11.95,02/25/19 16:31,"395 Hill St, Atlanta, GA 30301" +164280,Lightning Charging Cable,1,14.95,02/28/19 17:09,"930 12th St, Boston, MA 02215" +164281,iPhone,1,700,02/06/19 21:20,"444 Wilson St, New York City, NY 10001" +164282,34in Ultrawide Monitor,1,379.99,02/25/19 10:55,"157 10th St, Seattle, WA 98101" +164283,AA Batteries (4-pack),3,3.84,02/18/19 09:58,"752 Elm St, Atlanta, GA 30301" +164284,34in Ultrawide Monitor,1,379.99,02/28/19 05:44,"962 Church St, Boston, MA 02215" +164285,Bose SoundSport Headphones,1,99.99,02/26/19 21:51,"573 Adams St, Los Angeles, CA 90001" +164286,Apple Airpods Headphones,1,150,02/02/19 12:41,"120 Jefferson St, Austin, TX 73301" +164287,Apple Airpods Headphones,1,150,02/24/19 21:03,"768 11th St, Boston, MA 02215" +164288,Apple Airpods Headphones,1,150,02/09/19 21:56,"900 5th St, Dallas, TX 75001" +164289,USB-C Charging Cable,1,11.95,02/22/19 04:44,"518 Adams St, San Francisco, CA 94016" +164290,AA Batteries (4-pack),2,3.84,02/23/19 16:12,"560 North St, San Francisco, CA 94016" +164291,Macbook Pro Laptop,1,1700,02/16/19 19:09,"931 Lincoln St, New York City, NY 10001" +164292,AA Batteries (4-pack),1,3.84,02/17/19 21:13,"418 13th St, Portland, OR 97035" +164293,34in Ultrawide Monitor,1,379.99,02/10/19 22:04,"854 Lincoln St, Los Angeles, CA 90001" +164294,Flatscreen TV,1,300,02/26/19 18:40,"265 9th St, Boston, MA 02215" +164295,34in Ultrawide Monitor,1,379.99,02/01/19 06:15,"651 Maple St, Los Angeles, CA 90001" +164296,27in FHD Monitor,1,149.99,02/20/19 15:53,"897 South St, Los Angeles, CA 90001" +164297,ThinkPad Laptop,1,999.99,02/25/19 14:24,"770 Spruce St, New York City, NY 10001" +164298,Lightning Charging Cable,1,14.95,02/17/19 19:56,"897 Hill St, San Francisco, CA 94016" +164299,Apple Airpods Headphones,1,150,02/18/19 22:29,"590 5th St, San Francisco, CA 94016" +164300,34in Ultrawide Monitor,1,379.99,02/25/19 13:32,"124 Lakeview St, San Francisco, CA 94016" +164301,20in Monitor,1,109.99,02/17/19 08:55,"265 11th St, San Francisco, CA 94016" +164302,USB-C Charging Cable,1,11.95,02/21/19 18:46,"258 12th St, Austin, TX 73301" +164303,Lightning Charging Cable,1,14.95,02/14/19 17:48,"261 Hickory St, Los Angeles, CA 90001" +164304,AAA Batteries (4-pack),1,2.99,02/06/19 21:24,"841 Willow St, Los Angeles, CA 90001" +164305,Bose SoundSport Headphones,1,99.99,02/03/19 16:43,"153 Chestnut St, Los Angeles, CA 90001" +164306,iPhone,1,700,02/23/19 20:01,"746 12th St, Los Angeles, CA 90001" +164307,27in FHD Monitor,1,149.99,02/22/19 08:41,"279 Dogwood St, San Francisco, CA 94016" +164308,iPhone,1,700,02/10/19 19:38,"376 Washington St, San Francisco, CA 94016" +164309,Bose SoundSport Headphones,1,99.99,02/23/19 13:32,"195 Meadow St, New York City, NY 10001" +164310,USB-C Charging Cable,1,11.95,02/16/19 19:09,"552 Cedar St, Boston, MA 02215" +164310,Apple Airpods Headphones,1,150,02/16/19 19:09,"552 Cedar St, Boston, MA 02215" +164311,Bose SoundSport Headphones,1,99.99,02/15/19 21:21,"26 Adams St, New York City, NY 10001" +164312,Wired Headphones,1,11.99,02/26/19 15:53,"324 Spruce St, Los Angeles, CA 90001" +164313,27in FHD Monitor,1,149.99,02/09/19 07:18,"780 Cedar St, San Francisco, CA 94016" +164314,USB-C Charging Cable,1,11.95,02/05/19 18:49,"144 2nd St, Los Angeles, CA 90001" +164315,AAA Batteries (4-pack),3,2.99,02/09/19 10:04,"476 Hill St, San Francisco, CA 94016" +164316,AA Batteries (4-pack),1,3.84,02/03/19 18:39,"590 10th St, San Francisco, CA 94016" +164317,Lightning Charging Cable,1,14.95,02/07/19 16:59,"847 Walnut St, Portland, ME 04101" +164318,Apple Airpods Headphones,1,150,02/10/19 19:34,"833 Walnut St, Boston, MA 02215" +164319,Wired Headphones,1,11.99,02/14/19 21:13,"590 River St, New York City, NY 10001" +164320,AA Batteries (4-pack),1,3.84,02/15/19 13:03,"131 West St, Los Angeles, CA 90001" +164321,AA Batteries (4-pack),1,3.84,02/03/19 20:59,"2 Maple St, Seattle, WA 98101" +164322,USB-C Charging Cable,1,11.95,02/15/19 13:07,"230 14th St, Dallas, TX 75001" +164323,USB-C Charging Cable,1,11.95,02/24/19 09:27,"696 2nd St, New York City, NY 10001" +164324,AA Batteries (4-pack),1,3.84,02/27/19 21:35,"841 9th St, New York City, NY 10001" +164325,Lightning Charging Cable,1,14.95,02/05/19 19:46,"799 14th St, Atlanta, GA 30301" +164326,Lightning Charging Cable,1,14.95,02/17/19 16:02,"699 Jefferson St, Los Angeles, CA 90001" +164327,USB-C Charging Cable,1,11.95,02/15/19 19:32,"5 Hickory St, Los Angeles, CA 90001" +164328,AAA Batteries (4-pack),1,2.99,02/08/19 13:34,"677 River St, Portland, OR 97035" +164329,iPhone,1,700,02/16/19 14:36,"909 Lake St, Seattle, WA 98101" +164330,Bose SoundSport Headphones,1,99.99,02/13/19 19:20,"530 6th St, Los Angeles, CA 90001" +164331,Google Phone,1,600,02/10/19 15:55,"817 Sunset St, New York City, NY 10001" +164332,Google Phone,1,600,02/09/19 15:02,"319 Sunset St, San Francisco, CA 94016" +164333,27in FHD Monitor,1,149.99,02/25/19 09:17,"504 River St, Seattle, WA 98101" +164334,USB-C Charging Cable,1,11.95,02/28/19 22:39,"745 2nd St, Portland, ME 04101" +164335,Bose SoundSport Headphones,1,99.99,02/19/19 19:06,"879 5th St, Los Angeles, CA 90001" +164336,34in Ultrawide Monitor,1,379.99,02/24/19 11:06,"521 Hickory St, San Francisco, CA 94016" +164337,USB-C Charging Cable,1,11.95,02/09/19 20:44,"124 Cedar St, Boston, MA 02215" +164338,Lightning Charging Cable,1,14.95,02/06/19 11:51,"566 12th St, Boston, MA 02215" +164339,Wired Headphones,1,11.99,02/13/19 13:22,"747 South St, New York City, NY 10001" +164340,AA Batteries (4-pack),1,3.84,02/25/19 17:42,"69 2nd St, New York City, NY 10001" +164341,27in 4K Gaming Monitor,1,389.99,02/14/19 12:39,"646 11th St, Boston, MA 02215" +164342,AAA Batteries (4-pack),1,2.99,02/05/19 13:09,"653 Forest St, Atlanta, GA 30301" +164343,AA Batteries (4-pack),1,3.84,02/01/19 14:22,"498 Washington St, New York City, NY 10001" +164344,AA Batteries (4-pack),1,3.84,02/05/19 20:08,"634 11th St, Los Angeles, CA 90001" +164344,USB-C Charging Cable,1,11.95,02/05/19 20:08,"634 11th St, Los Angeles, CA 90001" +164345,AA Batteries (4-pack),1,3.84,02/20/19 11:02,"356 9th St, Los Angeles, CA 90001" +164346,Wired Headphones,1,11.99,02/23/19 14:10,"690 River St, San Francisco, CA 94016" +164347,Lightning Charging Cable,1,14.95,02/07/19 18:14,"284 Washington St, San Francisco, CA 94016" +164348,27in FHD Monitor,1,149.99,02/23/19 15:41,"353 Lake St, San Francisco, CA 94016" +164349,AAA Batteries (4-pack),2,2.99,02/28/19 01:40,"772 Madison St, San Francisco, CA 94016" +164350,AA Batteries (4-pack),1,3.84,02/18/19 01:29,"109 Park St, Seattle, WA 98101" +164351,Bose SoundSport Headphones,1,99.99,02/06/19 18:23,"556 Adams St, Boston, MA 02215" +164352,USB-C Charging Cable,1,11.95,02/25/19 09:02,"197 Hickory St, Boston, MA 02215" +164352,Google Phone,1,600,02/25/19 09:02,"197 Hickory St, Boston, MA 02215" +164353,27in 4K Gaming Monitor,1,389.99,02/05/19 07:33,"937 Wilson St, San Francisco, CA 94016" +164354,Wired Headphones,1,11.99,02/27/19 15:01,"519 7th St, San Francisco, CA 94016" +164355,Lightning Charging Cable,1,14.95,02/15/19 12:42,"96 8th St, San Francisco, CA 94016" +164356,20in Monitor,1,109.99,02/21/19 14:25,"17 Church St, Los Angeles, CA 90001" +164357,Lightning Charging Cable,1,14.95,02/27/19 07:42,"691 Maple St, Los Angeles, CA 90001" +164358,Bose SoundSport Headphones,1,99.99,02/16/19 12:07,"286 Dogwood St, Seattle, WA 98101" +164359,Lightning Charging Cable,2,14.95,02/25/19 18:13,"546 Lincoln St, Seattle, WA 98101" +164360,Apple Airpods Headphones,1,150,02/15/19 22:58,"897 Madison St, Atlanta, GA 30301" +164361,AA Batteries (4-pack),1,3.84,02/13/19 11:42,"413 Cherry St, Portland, OR 97035" +164362,Apple Airpods Headphones,1,150,02/03/19 16:56,"340 13th St, Los Angeles, CA 90001" +164363,AAA Batteries (4-pack),1,2.99,02/10/19 11:09,"496 Lincoln St, Los Angeles, CA 90001" +164364,Lightning Charging Cable,1,14.95,02/04/19 21:48,"785 Lake St, New York City, NY 10001" +,,,,, +164365,AA Batteries (4-pack),1,3.84,02/09/19 08:49,"972 1st St, Los Angeles, CA 90001" +164365,34in Ultrawide Monitor,1,379.99,02/09/19 08:49,"972 1st St, Los Angeles, CA 90001" +164366,Bose SoundSport Headphones,1,99.99,02/17/19 08:49,"771 Hill St, Los Angeles, CA 90001" +164367,27in 4K Gaming Monitor,1,389.99,02/25/19 12:35,"783 North St, Atlanta, GA 30301" +164368,27in 4K Gaming Monitor,1,389.99,02/28/19 22:08,"376 Lakeview St, Atlanta, GA 30301" +164369,AA Batteries (4-pack),3,3.84,02/22/19 15:01,"279 Hickory St, Dallas, TX 75001" +164370,27in FHD Monitor,1,149.99,02/09/19 15:01,"515 West St, Atlanta, GA 30301" +164371,Flatscreen TV,1,300,02/06/19 03:25,"585 Willow St, San Francisco, CA 94016" +164372,AAA Batteries (4-pack),3,2.99,02/09/19 11:33,"750 Lincoln St, New York City, NY 10001" +164373,Lightning Charging Cable,1,14.95,02/26/19 11:10,"647 Hill St, New York City, NY 10001" +164374,Google Phone,1,600,02/02/19 14:21,"496 Cherry St, San Francisco, CA 94016" +164374,USB-C Charging Cable,1,11.95,02/02/19 14:21,"496 Cherry St, San Francisco, CA 94016" +164374,Bose SoundSport Headphones,1,99.99,02/02/19 14:21,"496 Cherry St, San Francisco, CA 94016" +164375,Flatscreen TV,1,300,02/19/19 11:18,"273 Highland St, San Francisco, CA 94016" +164376,34in Ultrawide Monitor,1,379.99,02/20/19 23:47,"448 Cedar St, Portland, OR 97035" +164377,ThinkPad Laptop,1,999.99,02/19/19 15:48,"263 Elm St, San Francisco, CA 94016" +164378,Google Phone,1,600,02/24/19 17:50,"652 1st St, Portland, ME 04101" +164379,AA Batteries (4-pack),3,3.84,02/05/19 20:39,"4 Willow St, New York City, NY 10001" +164380,27in 4K Gaming Monitor,1,389.99,02/15/19 10:39,"79 Johnson St, Seattle, WA 98101" +164381,Bose SoundSport Headphones,1,99.99,02/10/19 06:40,"42 10th St, Seattle, WA 98101" +164382,Google Phone,1,600,02/14/19 20:28,"715 13th St, New York City, NY 10001" +164383,iPhone,1,700,02/17/19 11:56,"260 9th St, Portland, OR 97035" +164384,Wired Headphones,1,11.99,02/17/19 22:40,"359 Cedar St, Los Angeles, CA 90001" +164385,Wired Headphones,1,11.99,02/11/19 11:24,"492 Elm St, San Francisco, CA 94016" +164386,AAA Batteries (4-pack),3,2.99,02/01/19 05:44,"627 Meadow St, Austin, TX 73301" +164387,AAA Batteries (4-pack),2,2.99,02/21/19 12:21,"299 South St, Dallas, TX 75001" +164388,AAA Batteries (4-pack),2,2.99,02/03/19 15:24,"257 4th St, Los Angeles, CA 90001" +164389,AAA Batteries (4-pack),1,2.99,02/20/19 21:09,"757 Johnson St, San Francisco, CA 94016" +164390,20in Monitor,1,109.99,02/19/19 23:42,"130 Highland St, New York City, NY 10001" +164391,Flatscreen TV,1,300,02/19/19 09:06,"38 Lincoln St, Atlanta, GA 30301" +164392,USB-C Charging Cable,2,11.95,02/03/19 15:27,"852 Highland St, San Francisco, CA 94016" +164393,iPhone,1,700,02/17/19 00:02,"628 Cherry St, Los Angeles, CA 90001" +164394,Lightning Charging Cable,1,14.95,02/26/19 12:36,"677 Sunset St, Boston, MA 02215" +164395,Flatscreen TV,1,300,03/01/19 01:31,"524 Johnson St, San Francisco, CA 94016" +164396,AAA Batteries (4-pack),6,2.99,02/02/19 10:43,"335 11th St, New York City, NY 10001" +164397,Flatscreen TV,1,300,02/10/19 09:03,"396 Washington St, San Francisco, CA 94016" +164398,USB-C Charging Cable,1,11.95,02/05/19 11:42,"10 South St, Los Angeles, CA 90001" +164399,Apple Airpods Headphones,1,150,02/04/19 10:09,"340 14th St, San Francisco, CA 94016" +164400,AA Batteries (4-pack),2,3.84,02/11/19 12:34,"273 West St, Dallas, TX 75001" +164401,Lightning Charging Cable,1,14.95,02/05/19 16:41,"580 10th St, Seattle, WA 98101" +164402,20in Monitor,1,109.99,02/10/19 23:10,"858 Wilson St, Los Angeles, CA 90001" +164403,27in FHD Monitor,1,149.99,02/20/19 21:10,"684 North St, New York City, NY 10001" +164404,AA Batteries (4-pack),1,3.84,02/23/19 17:05,"892 10th St, Seattle, WA 98101" +164405,34in Ultrawide Monitor,1,379.99,02/07/19 17:27,"816 River St, Austin, TX 73301" +164406,Lightning Charging Cable,1,14.95,02/20/19 06:58,"659 Hill St, Austin, TX 73301" +164407,20in Monitor,1,109.99,02/17/19 15:39,"650 Jefferson St, San Francisco, CA 94016" +164408,AA Batteries (4-pack),1,3.84,02/21/19 11:26,"720 Willow St, Portland, OR 97035" +164409,iPhone,1,700,02/28/19 19:03,"252 5th St, Boston, MA 02215" +164410,iPhone,1,700,02/15/19 11:51,"311 Park St, Los Angeles, CA 90001" +164410,Vareebadd Phone,1,400,02/15/19 11:51,"311 Park St, Los Angeles, CA 90001" +164411,34in Ultrawide Monitor,1,379.99,02/04/19 11:59,"48 9th St, San Francisco, CA 94016" +164412,Apple Airpods Headphones,1,150,02/02/19 09:13,"102 Washington St, San Francisco, CA 94016" +164413,iPhone,1,700,02/14/19 18:59,"611 Johnson St, Austin, TX 73301" +164413,Lightning Charging Cable,1,14.95,02/14/19 18:59,"611 Johnson St, Austin, TX 73301" +164413,Wired Headphones,2,11.99,02/14/19 18:59,"611 Johnson St, Austin, TX 73301" +164414,27in FHD Monitor,1,149.99,02/08/19 08:41,"412 Main St, Los Angeles, CA 90001" +164415,AAA Batteries (4-pack),4,2.99,02/09/19 19:36,"943 Jefferson St, Dallas, TX 75001" +164416,AA Batteries (4-pack),3,3.84,02/09/19 17:16,"864 4th St, Dallas, TX 75001" +164417,Bose SoundSport Headphones,1,99.99,02/09/19 18:26,"400 8th St, San Francisco, CA 94016" +164418,ThinkPad Laptop,1,999.99,02/10/19 10:01,"684 4th St, San Francisco, CA 94016" +164419,iPhone,1,700,02/24/19 13:53,"280 1st St, Dallas, TX 75001" +164419,Lightning Charging Cable,1,14.95,02/24/19 13:53,"280 1st St, Dallas, TX 75001" +164420,Lightning Charging Cable,1,14.95,02/08/19 07:38,"659 Highland St, San Francisco, CA 94016" +164421,AAA Batteries (4-pack),1,2.99,02/09/19 01:08,"710 Chestnut St, Dallas, TX 75001" +164422,Apple Airpods Headphones,1,150,02/02/19 17:10,"220 North St, Boston, MA 02215" +164423,AA Batteries (4-pack),1,3.84,02/26/19 13:37,"220 13th St, New York City, NY 10001" +164423,USB-C Charging Cable,2,11.95,02/26/19 13:37,"220 13th St, New York City, NY 10001" +164424,AAA Batteries (4-pack),1,2.99,02/09/19 10:51,"803 11th St, New York City, NY 10001" +164425,Lightning Charging Cable,1,14.95,02/27/19 17:43,"166 14th St, New York City, NY 10001" +164426,27in FHD Monitor,1,149.99,02/26/19 19:45,"895 Jackson St, Boston, MA 02215" +164427,ThinkPad Laptop,1,999.99,02/03/19 14:06,"17 Lincoln St, Portland, OR 97035" +164428,AAA Batteries (4-pack),1,2.99,02/09/19 07:35,"354 6th St, San Francisco, CA 94016" +164429,Google Phone,1,600,02/15/19 21:33,"52 Johnson St, Portland, OR 97035" +164430,USB-C Charging Cable,1,11.95,02/21/19 20:57,"858 Maple St, Seattle, WA 98101" +164431,USB-C Charging Cable,1,11.95,02/03/19 17:42,"76 Lakeview St, Seattle, WA 98101" +164432,ThinkPad Laptop,1,999.99,02/09/19 18:08,"256 Cherry St, San Francisco, CA 94016" +164433,Apple Airpods Headphones,1,150,02/15/19 18:14,"989 8th St, Seattle, WA 98101" +164434,Wired Headphones,1,11.99,02/04/19 08:43,"389 7th St, Seattle, WA 98101" +164435,USB-C Charging Cable,1,11.95,02/17/19 17:50,"52 North St, Boston, MA 02215" +164436,Lightning Charging Cable,1,14.95,02/07/19 16:56,"208 9th St, San Francisco, CA 94016" +164437,Wired Headphones,1,11.99,02/21/19 14:52,"610 Meadow St, Boston, MA 02215" +164438,Flatscreen TV,1,300,02/11/19 16:50,"718 Hickory St, Los Angeles, CA 90001" +164439,20in Monitor,1,109.99,02/19/19 12:18,"113 6th St, Dallas, TX 75001" +164440,USB-C Charging Cable,1,11.95,02/25/19 17:07,"805 Adams St, San Francisco, CA 94016" +164441,AAA Batteries (4-pack),4,2.99,02/12/19 15:23,"391 Washington St, Portland, ME 04101" +164442,Bose SoundSport Headphones,1,99.99,02/27/19 15:52,"565 Lincoln St, Portland, OR 97035" +164443,Bose SoundSport Headphones,1,99.99,02/17/19 16:19,"204 Chestnut St, Atlanta, GA 30301" +164444,USB-C Charging Cable,1,11.95,02/01/19 19:42,"401 Hill St, New York City, NY 10001" +164445,27in 4K Gaming Monitor,1,389.99,02/15/19 12:51,"536 Forest St, Portland, OR 97035" +164446,USB-C Charging Cable,2,11.95,02/22/19 21:02,"727 7th St, Los Angeles, CA 90001" +164447,Lightning Charging Cable,1,14.95,02/09/19 00:53,"573 Hill St, Austin, TX 73301" +164448,34in Ultrawide Monitor,1,379.99,02/19/19 15:39,"913 Johnson St, Los Angeles, CA 90001" +164449,Bose SoundSport Headphones,1,99.99,02/10/19 00:05,"73 Lincoln St, Seattle, WA 98101" +164450,Wired Headphones,1,11.99,02/07/19 19:21,"59 Center St, San Francisco, CA 94016" +164451,27in 4K Gaming Monitor,1,389.99,02/09/19 09:30,"174 Hickory St, Los Angeles, CA 90001" +164452,Macbook Pro Laptop,1,1700,02/17/19 14:32,"797 8th St, Dallas, TX 75001" +164453,Wired Headphones,1,11.99,02/05/19 16:58,"404 Jefferson St, Los Angeles, CA 90001" +164454,Vareebadd Phone,1,400,02/23/19 13:53,"71 8th St, San Francisco, CA 94016" +164454,USB-C Charging Cable,1,11.95,02/23/19 13:53,"71 8th St, San Francisco, CA 94016" +164455,USB-C Charging Cable,1,11.95,02/25/19 13:57,"859 Center St, Seattle, WA 98101" +164456,USB-C Charging Cable,1,11.95,02/14/19 17:56,"507 South St, San Francisco, CA 94016" +164457,AA Batteries (4-pack),1,3.84,02/06/19 16:10,"797 13th St, San Francisco, CA 94016" +164458,AA Batteries (4-pack),1,3.84,02/20/19 17:53,"413 Meadow St, Los Angeles, CA 90001" +164459,Lightning Charging Cable,1,14.95,02/05/19 19:33,"424 8th St, San Francisco, CA 94016" +164460,iPhone,1,700,02/10/19 21:53,"438 Chestnut St, San Francisco, CA 94016" +164460,Lightning Charging Cable,1,14.95,02/10/19 21:53,"438 Chestnut St, San Francisco, CA 94016" +164461,USB-C Charging Cable,1,11.95,02/17/19 13:09,"13 Lincoln St, Atlanta, GA 30301" +164462,USB-C Charging Cable,1,11.95,02/09/19 20:41,"388 Willow St, San Francisco, CA 94016" +164463,AAA Batteries (4-pack),1,2.99,02/14/19 18:23,"60 South St, Los Angeles, CA 90001" +164464,USB-C Charging Cable,1,11.95,02/21/19 10:48,"478 9th St, San Francisco, CA 94016" +164465,Bose SoundSport Headphones,3,99.99,02/02/19 12:36,"941 Jefferson St, Dallas, TX 75001" +164466,Lightning Charging Cable,1,14.95,02/20/19 08:10,"111 13th St, San Francisco, CA 94016" +164467,AA Batteries (4-pack),1,3.84,02/11/19 19:10,"750 11th St, Austin, TX 73301" +164468,Lightning Charging Cable,2,14.95,02/08/19 17:54,"358 12th St, Austin, TX 73301" +164469,Flatscreen TV,1,300,02/03/19 14:33,"400 Lincoln St, New York City, NY 10001" +164470,USB-C Charging Cable,1,11.95,02/07/19 10:26,"161 8th St, Boston, MA 02215" +164471,Macbook Pro Laptop,1,1700,02/14/19 17:01,"884 2nd St, Dallas, TX 75001" +164472,ThinkPad Laptop,1,999.99,02/03/19 21:49,"516 1st St, Los Angeles, CA 90001" +164473,Bose SoundSport Headphones,1,99.99,02/23/19 01:51,"423 Adams St, San Francisco, CA 94016" +164474,Bose SoundSport Headphones,1,99.99,02/17/19 19:44,"62 8th St, San Francisco, CA 94016" +164475,USB-C Charging Cable,2,11.95,02/13/19 11:07,"433 Walnut St, Los Angeles, CA 90001" +164476,ThinkPad Laptop,1,999.99,02/05/19 11:25,"819 West St, Atlanta, GA 30301" +164477,USB-C Charging Cable,1,11.95,02/23/19 22:20,"318 Lincoln St, San Francisco, CA 94016" +164478,USB-C Charging Cable,1,11.95,02/13/19 20:37,"421 Center St, San Francisco, CA 94016" +164479,Google Phone,1,600,02/04/19 22:27,"192 Jefferson St, Boston, MA 02215" +164480,Lightning Charging Cable,1,14.95,02/19/19 16:49,"190 Hickory St, Seattle, WA 98101" +164481,Lightning Charging Cable,1,14.95,02/05/19 21:36,"205 Forest St, New York City, NY 10001" +164482,Wired Headphones,1,11.99,02/26/19 14:48,"858 Dogwood St, Atlanta, GA 30301" +164483,Lightning Charging Cable,1,14.95,02/19/19 16:53,"626 Cherry St, Dallas, TX 75001" +164484,AAA Batteries (4-pack),3,2.99,02/15/19 12:36,"576 Adams St, New York City, NY 10001" +164485,Lightning Charging Cable,1,14.95,02/22/19 22:52,"901 Willow St, San Francisco, CA 94016" +164486,USB-C Charging Cable,1,11.95,02/08/19 02:26,"485 Center St, Dallas, TX 75001" +164487,Flatscreen TV,1,300,02/09/19 19:19,"251 10th St, Boston, MA 02215" +164488,USB-C Charging Cable,1,11.95,02/15/19 14:45,"413 9th St, Portland, ME 04101" +164489,Bose SoundSport Headphones,1,99.99,02/18/19 19:18,"632 South St, Los Angeles, CA 90001" +,,,,, +164490,27in 4K Gaming Monitor,1,389.99,02/10/19 12:05,"591 6th St, Boston, MA 02215" +164491,Apple Airpods Headphones,1,150,02/25/19 18:09,"170 West St, New York City, NY 10001" +164492,USB-C Charging Cable,1,11.95,02/05/19 16:16,"453 Cherry St, San Francisco, CA 94016" +164493,AA Batteries (4-pack),1,3.84,02/15/19 20:18,"393 Washington St, Dallas, TX 75001" +164494,USB-C Charging Cable,1,11.95,02/07/19 11:58,"102 North St, New York City, NY 10001" +164495,Wired Headphones,1,11.99,02/19/19 14:13,"423 Church St, Dallas, TX 75001" +,,,,, +164496,iPhone,1,700,02/24/19 12:09,"540 Willow St, Portland, OR 97035" +164496,Apple Airpods Headphones,1,150,02/24/19 12:09,"540 Willow St, Portland, OR 97035" +164497,Apple Airpods Headphones,1,150,02/17/19 15:24,"170 Dogwood St, Los Angeles, CA 90001" +164498,Apple Airpods Headphones,1,150,02/07/19 10:41,"983 6th St, Dallas, TX 75001" +164499,USB-C Charging Cable,1,11.95,02/06/19 14:42,"790 Church St, New York City, NY 10001" +164500,ThinkPad Laptop,1,999.99,02/04/19 20:46,"854 Forest St, Boston, MA 02215" +164501,Lightning Charging Cable,1,14.95,02/06/19 07:16,"138 Spruce St, Portland, OR 97035" +164502,Lightning Charging Cable,1,14.95,02/25/19 17:15,"76 Wilson St, Los Angeles, CA 90001" +164503,iPhone,1,700,02/20/19 09:07,"987 Dogwood St, San Francisco, CA 94016" +164504,Bose SoundSport Headphones,1,99.99,02/08/19 15:59,"984 Jefferson St, New York City, NY 10001" +164505,USB-C Charging Cable,2,11.95,02/14/19 15:04,"301 6th St, San Francisco, CA 94016" +164506,27in 4K Gaming Monitor,1,389.99,02/14/19 21:20,"3 4th St, Los Angeles, CA 90001" +164507,USB-C Charging Cable,1,11.95,02/11/19 17:58,"673 Elm St, Portland, OR 97035" +164508,USB-C Charging Cable,1,11.95,02/10/19 21:50,"988 Center St, Los Angeles, CA 90001" +164509,ThinkPad Laptop,1,999.99,02/24/19 08:17,"680 Jackson St, Dallas, TX 75001" +164510,Wired Headphones,1,11.99,02/03/19 16:55,"196 14th St, Portland, OR 97035" +164511,Apple Airpods Headphones,1,150,02/09/19 13:18,"243 Church St, San Francisco, CA 94016" +164512,27in FHD Monitor,1,149.99,02/14/19 19:44,"251 9th St, New York City, NY 10001" +164513,Bose SoundSport Headphones,1,99.99,02/25/19 19:14,"543 Washington St, Seattle, WA 98101" +164514,Wired Headphones,2,11.99,02/10/19 10:32,"602 South St, Los Angeles, CA 90001" +164515,USB-C Charging Cable,1,11.95,02/17/19 11:52,"685 Hickory St, New York City, NY 10001" +164516,Macbook Pro Laptop,1,1700,02/24/19 22:32,"809 1st St, Los Angeles, CA 90001" +164517,AA Batteries (4-pack),1,3.84,02/13/19 11:32,"766 2nd St, San Francisco, CA 94016" +164518,USB-C Charging Cable,1,11.95,02/20/19 12:37,"462 Lincoln St, San Francisco, CA 94016" +164519,Vareebadd Phone,1,400,02/09/19 16:03,"473 North St, San Francisco, CA 94016" +164520,Lightning Charging Cable,1,14.95,02/15/19 19:49,"24 Sunset St, Los Angeles, CA 90001" +164521,iPhone,1,700,02/01/19 12:43,"353 Johnson St, Los Angeles, CA 90001" +164522,Apple Airpods Headphones,1,150,02/28/19 17:59,"91 Jefferson St, San Francisco, CA 94016" +164523,Bose SoundSport Headphones,1,99.99,02/07/19 17:43,"242 Madison St, Los Angeles, CA 90001" +164524,Apple Airpods Headphones,1,150,02/19/19 12:06,"500 2nd St, San Francisco, CA 94016" +164525,34in Ultrawide Monitor,1,379.99,02/22/19 20:08,"174 11th St, San Francisco, CA 94016" +164526,Vareebadd Phone,1,400,02/07/19 19:07,"754 Pine St, New York City, NY 10001" +164527,27in 4K Gaming Monitor,1,389.99,02/28/19 08:11,"903 Dogwood St, Los Angeles, CA 90001" +164528,AA Batteries (4-pack),1,3.84,02/17/19 16:52,"740 Park St, Dallas, TX 75001" +164529,AAA Batteries (4-pack),1,2.99,02/27/19 15:12,"286 6th St, Los Angeles, CA 90001" +164530,Wired Headphones,1,11.99,02/04/19 14:03,"778 Ridge St, Los Angeles, CA 90001" +164531,Lightning Charging Cable,1,14.95,02/10/19 07:40,"255 7th St, San Francisco, CA 94016" +164532,Bose SoundSport Headphones,1,99.99,02/11/19 18:46,"859 Forest St, New York City, NY 10001" +164533,Lightning Charging Cable,1,14.95,02/08/19 20:24,"692 6th St, Austin, TX 73301" +164534,Bose SoundSport Headphones,1,99.99,02/04/19 19:49,"700 Pine St, Austin, TX 73301" +164535,Google Phone,1,600,02/24/19 08:21,"496 Pine St, Los Angeles, CA 90001" +164536,AA Batteries (4-pack),1,3.84,02/10/19 11:40,"525 Main St, Boston, MA 02215" +164537,Apple Airpods Headphones,1,150,02/04/19 20:36,"523 Center St, Seattle, WA 98101" +164538,Flatscreen TV,1,300,02/02/19 20:21,"572 14th St, New York City, NY 10001" +164538,Bose SoundSport Headphones,1,99.99,02/02/19 20:21,"572 14th St, New York City, NY 10001" +164539,AA Batteries (4-pack),1,3.84,02/23/19 12:14,"875 Hill St, Seattle, WA 98101" +164540,20in Monitor,1,109.99,02/19/19 13:58,"440 South St, Seattle, WA 98101" +164541,34in Ultrawide Monitor,1,379.99,02/01/19 23:02,"406 Lincoln St, Austin, TX 73301" +164542,AAA Batteries (4-pack),2,2.99,02/26/19 09:09,"325 12th St, Dallas, TX 75001" +164543,USB-C Charging Cable,1,11.95,02/14/19 22:14,"461 8th St, Los Angeles, CA 90001" +164544,AAA Batteries (4-pack),3,2.99,02/02/19 21:07,"280 North St, Austin, TX 73301" +164545,AAA Batteries (4-pack),1,2.99,02/06/19 13:08,"788 Hill St, San Francisco, CA 94016" +164546,USB-C Charging Cable,1,11.95,02/08/19 11:09,"28 9th St, Los Angeles, CA 90001" +164547,Macbook Pro Laptop,1,1700,02/16/19 18:22,"516 West St, Los Angeles, CA 90001" +164548,AA Batteries (4-pack),1,3.84,02/21/19 00:01,"238 Walnut St, Boston, MA 02215" +164549,AA Batteries (4-pack),2,3.84,02/26/19 02:39,"674 Church St, San Francisco, CA 94016" +164550,USB-C Charging Cable,1,11.95,02/23/19 05:01,"339 Sunset St, San Francisco, CA 94016" +164551,Vareebadd Phone,1,400,02/07/19 19:38,"617 Adams St, Los Angeles, CA 90001" +164552,AA Batteries (4-pack),1,3.84,02/09/19 20:55,"956 Hill St, Boston, MA 02215" +164553,Apple Airpods Headphones,1,150,02/05/19 06:33,"876 11th St, Boston, MA 02215" +164554,USB-C Charging Cable,1,11.95,02/22/19 11:00,"969 Jefferson St, Atlanta, GA 30301" +164555,AAA Batteries (4-pack),1,2.99,02/24/19 12:48,"749 10th St, San Francisco, CA 94016" +164556,USB-C Charging Cable,1,11.95,02/11/19 09:51,"327 Highland St, Atlanta, GA 30301" +164557,Wired Headphones,1,11.99,02/13/19 22:11,"282 Cedar St, Seattle, WA 98101" +164558,Lightning Charging Cable,1,14.95,02/14/19 11:00,"194 Main St, Portland, OR 97035" +164559,Flatscreen TV,1,300,02/10/19 17:55,"442 9th St, Seattle, WA 98101" +164560,USB-C Charging Cable,1,11.95,02/10/19 11:34,"752 Highland St, New York City, NY 10001" +164561,Flatscreen TV,1,300,02/26/19 07:22,"874 7th St, Boston, MA 02215" +164562,34in Ultrawide Monitor,1,379.99,02/19/19 17:33,"841 Spruce St, San Francisco, CA 94016" +164563,27in FHD Monitor,1,149.99,02/19/19 19:42,"340 Pine St, Los Angeles, CA 90001" +164564,AAA Batteries (4-pack),2,2.99,02/14/19 02:37,"450 Cherry St, Austin, TX 73301" +164565,Wired Headphones,1,11.99,02/11/19 22:25,"724 Center St, Boston, MA 02215" +164566,Bose SoundSport Headphones,1,99.99,02/01/19 20:28,"132 5th St, San Francisco, CA 94016" +164567,AAA Batteries (4-pack),3,2.99,02/11/19 10:53,"710 Lakeview St, Los Angeles, CA 90001" +164568,Wired Headphones,1,11.99,02/03/19 10:15,"844 Park St, Los Angeles, CA 90001" +164569,AAA Batteries (4-pack),3,2.99,02/23/19 22:01,"45 Forest St, Atlanta, GA 30301" +164570,27in 4K Gaming Monitor,1,389.99,02/12/19 10:30,"636 11th St, New York City, NY 10001" +164571,27in 4K Gaming Monitor,1,389.99,02/27/19 19:51,"701 13th St, Boston, MA 02215" +164572,Flatscreen TV,1,300,02/25/19 11:27,"475 10th St, Atlanta, GA 30301" +164573,iPhone,1,700,02/15/19 18:55,"210 Jefferson St, San Francisco, CA 94016" +164573,Wired Headphones,1,11.99,02/15/19 18:55,"210 Jefferson St, San Francisco, CA 94016" +164574,Lightning Charging Cable,1,14.95,02/15/19 14:12,"648 North St, Los Angeles, CA 90001" +164575,Lightning Charging Cable,1,14.95,02/12/19 17:42,"247 Hickory St, New York City, NY 10001" +164576,Flatscreen TV,1,300,02/15/19 10:36,"866 Center St, San Francisco, CA 94016" +164577,27in 4K Gaming Monitor,1,389.99,02/27/19 17:39,"633 Jefferson St, Seattle, WA 98101" +164578,iPhone,1,700,02/28/19 22:26,"676 Elm St, San Francisco, CA 94016" +164578,Wired Headphones,1,11.99,02/28/19 22:26,"676 Elm St, San Francisco, CA 94016" +164579,Google Phone,1,600,02/03/19 20:03,"467 Sunset St, San Francisco, CA 94016" +164580,27in 4K Gaming Monitor,1,389.99,02/27/19 14:32,"944 North St, San Francisco, CA 94016" +164581,20in Monitor,1,109.99,02/25/19 11:37,"98 Willow St, Los Angeles, CA 90001" +164582,Lightning Charging Cable,1,14.95,02/02/19 17:51,"795 Hickory St, New York City, NY 10001" +164583,34in Ultrawide Monitor,1,379.99,02/12/19 20:08,"846 5th St, San Francisco, CA 94016" +164584,USB-C Charging Cable,1,11.95,02/14/19 11:02,"79 Pine St, Austin, TX 73301" +164585,27in FHD Monitor,1,149.99,02/12/19 09:16,"291 Jackson St, San Francisco, CA 94016" +164586,AAA Batteries (4-pack),4,2.99,02/09/19 18:19,"119 Maple St, New York City, NY 10001" +164587,34in Ultrawide Monitor,1,379.99,02/11/19 16:24,"882 7th St, San Francisco, CA 94016" +164588,AA Batteries (4-pack),1,3.84,02/14/19 13:43,"669 Hickory St, Los Angeles, CA 90001" +164589,USB-C Charging Cable,1,11.95,02/04/19 22:38,"872 Spruce St, Atlanta, GA 30301" +164590,Flatscreen TV,1,300,02/19/19 09:51,"213 Dogwood St, New York City, NY 10001" +164591,Lightning Charging Cable,1,14.95,02/15/19 16:23,"848 Ridge St, Portland, OR 97035" +164592,Macbook Pro Laptop,1,1700,02/02/19 19:02,"879 Willow St, Boston, MA 02215" +164593,Apple Airpods Headphones,1,150,02/02/19 11:10,"64 Hickory St, Los Angeles, CA 90001" +164594,AA Batteries (4-pack),1,3.84,02/24/19 13:52,"948 11th St, Dallas, TX 75001" +164595,Apple Airpods Headphones,1,150,02/27/19 07:46,"254 Church St, New York City, NY 10001" +164596,Wired Headphones,1,11.99,02/16/19 16:55,"186 9th St, San Francisco, CA 94016" +164597,Wired Headphones,1,11.99,02/05/19 09:42,"689 Spruce St, Dallas, TX 75001" +164597,ThinkPad Laptop,1,999.99,02/05/19 09:42,"689 Spruce St, Dallas, TX 75001" +164598,Lightning Charging Cable,1,14.95,02/20/19 15:36,"589 Meadow St, Seattle, WA 98101" +164599,Wired Headphones,1,11.99,02/21/19 13:16,"521 Dogwood St, Dallas, TX 75001" +164600,AA Batteries (4-pack),2,3.84,02/08/19 16:19,"180 1st St, Atlanta, GA 30301" +164601,Macbook Pro Laptop,1,1700,02/19/19 12:34,"374 Jefferson St, Seattle, WA 98101" +164602,Vareebadd Phone,1,400,02/09/19 18:33,"191 Lake St, Boston, MA 02215" +164603,Lightning Charging Cable,1,14.95,02/25/19 10:49,"243 Johnson St, Boston, MA 02215" +164604,AAA Batteries (4-pack),1,2.99,02/15/19 12:18,"737 South St, Los Angeles, CA 90001" +164605,ThinkPad Laptop,1,999.99,02/28/19 12:02,"914 13th St, New York City, NY 10001" +164606,Lightning Charging Cable,1,14.95,02/26/19 14:39,"709 Park St, Seattle, WA 98101" +164607,20in Monitor,1,109.99,02/09/19 20:45,"975 Jefferson St, Atlanta, GA 30301" +164608,USB-C Charging Cable,1,11.95,02/20/19 10:45,"585 Forest St, San Francisco, CA 94016" +164609,20in Monitor,1,109.99,02/18/19 15:00,"277 Lincoln St, Portland, ME 04101" +164610,Wired Headphones,1,11.99,02/16/19 13:31,"654 Dogwood St, Portland, OR 97035" +164611,AA Batteries (4-pack),1,3.84,02/16/19 12:47,"489 Elm St, Los Angeles, CA 90001" +164612,USB-C Charging Cable,1,11.95,02/24/19 13:08,"875 Meadow St, Dallas, TX 75001" +164613,Wired Headphones,1,11.99,02/14/19 11:02,"40 Center St, Atlanta, GA 30301" +164614,AA Batteries (4-pack),1,3.84,02/08/19 10:46,"629 Adams St, Atlanta, GA 30301" +164615,34in Ultrawide Monitor,1,379.99,02/27/19 08:57,"935 Jackson St, San Francisco, CA 94016" +164616,Google Phone,1,600,02/13/19 13:21,"309 11th St, Los Angeles, CA 90001" +164616,USB-C Charging Cable,1,11.95,02/13/19 13:21,"309 11th St, Los Angeles, CA 90001" +164617,ThinkPad Laptop,1,999.99,02/25/19 19:59,"759 Park St, Seattle, WA 98101" +164618,LG Washing Machine,1,600.0,02/01/19 10:38,"278 Washington St, San Francisco, CA 94016" +164619,AA Batteries (4-pack),1,3.84,02/11/19 00:27,"232 14th St, Portland, OR 97035" +164620,AAA Batteries (4-pack),4,2.99,02/05/19 13:35,"834 Park St, San Francisco, CA 94016" +164621,USB-C Charging Cable,1,11.95,02/23/19 11:32,"692 Wilson St, San Francisco, CA 94016" +164622,Wired Headphones,1,11.99,02/15/19 22:24,"725 Meadow St, New York City, NY 10001" +164623,ThinkPad Laptop,1,999.99,02/16/19 10:39,"37 Willow St, Boston, MA 02215" +164624,USB-C Charging Cable,1,11.95,02/05/19 08:45,"498 7th St, Los Angeles, CA 90001" +164625,Lightning Charging Cable,1,14.95,02/03/19 15:52,"43 Hill St, San Francisco, CA 94016" +164626,AA Batteries (4-pack),1,3.84,02/03/19 18:51,"469 Highland St, Atlanta, GA 30301" +164627,AAA Batteries (4-pack),1,2.99,02/02/19 15:10,"788 8th St, Austin, TX 73301" +164628,27in 4K Gaming Monitor,1,389.99,02/26/19 22:54,"251 6th St, San Francisco, CA 94016" +164629,34in Ultrawide Monitor,1,379.99,02/06/19 00:56,"220 Washington St, San Francisco, CA 94016" +164630,Apple Airpods Headphones,1,150,02/24/19 19:41,"830 North St, Los Angeles, CA 90001" +164631,AA Batteries (4-pack),1,3.84,02/05/19 10:53,"256 4th St, Portland, ME 04101" +164632,USB-C Charging Cable,1,11.95,02/28/19 14:52,"861 Lake St, San Francisco, CA 94016" +164633,LG Dryer,1,600.0,02/12/19 12:28,"309 Wilson St, Atlanta, GA 30301" +164634,iPhone,1,700,02/09/19 11:07,"897 River St, San Francisco, CA 94016" +164635,Lightning Charging Cable,1,14.95,02/02/19 11:34,"972 Pine St, New York City, NY 10001" +164636,20in Monitor,1,109.99,02/13/19 17:34,"428 Meadow St, New York City, NY 10001" +164637,27in 4K Gaming Monitor,1,389.99,02/05/19 18:58,"221 8th St, Boston, MA 02215" +164638,Apple Airpods Headphones,1,150,02/26/19 16:45,"977 Madison St, Seattle, WA 98101" +164639,AAA Batteries (4-pack),1,2.99,02/15/19 23:51,"723 1st St, Los Angeles, CA 90001" +164640,Wired Headphones,1,11.99,02/05/19 15:27,"150 Madison St, Los Angeles, CA 90001" +164641,AAA Batteries (4-pack),1,2.99,02/08/19 13:03,"989 Highland St, New York City, NY 10001" +164642,AAA Batteries (4-pack),1,2.99,02/26/19 13:29,"692 Jefferson St, Portland, OR 97035" +164643,AA Batteries (4-pack),1,3.84,02/20/19 13:19,"130 Madison St, Boston, MA 02215" +164644,20in Monitor,1,109.99,02/15/19 20:25,"33 Johnson St, Atlanta, GA 30301" +164645,AA Batteries (4-pack),1,3.84,02/17/19 13:14,"929 14th St, Austin, TX 73301" +164646,AAA Batteries (4-pack),3,2.99,02/25/19 15:36,"46 6th St, Portland, OR 97035" +164647,20in Monitor,1,109.99,02/18/19 21:22,"502 8th St, Los Angeles, CA 90001" +164648,Wired Headphones,1,11.99,02/26/19 21:40,"746 12th St, San Francisco, CA 94016" +164649,Lightning Charging Cable,1,14.95,02/15/19 19:58,"573 Park St, Seattle, WA 98101" +164650,Vareebadd Phone,1,400,02/11/19 12:31,"108 Elm St, San Francisco, CA 94016" +164650,USB-C Charging Cable,1,11.95,02/11/19 12:31,"108 Elm St, San Francisco, CA 94016" +164651,USB-C Charging Cable,1,11.95,02/08/19 11:57,"510 8th St, Atlanta, GA 30301" +164652,Google Phone,1,600,02/06/19 22:59,"261 Johnson St, Atlanta, GA 30301" +164652,Bose SoundSport Headphones,1,99.99,02/06/19 22:59,"261 Johnson St, Atlanta, GA 30301" +164653,27in FHD Monitor,1,149.99,02/24/19 02:20,"151 5th St, New York City, NY 10001" +164654,34in Ultrawide Monitor,1,379.99,02/19/19 09:12,"823 4th St, Los Angeles, CA 90001" +164655,20in Monitor,1,109.99,02/24/19 13:25,"421 Willow St, Seattle, WA 98101" +164656,Wired Headphones,1,11.99,02/07/19 18:03,"880 Spruce St, San Francisco, CA 94016" +164657,Lightning Charging Cable,1,14.95,02/03/19 10:41,"794 North St, Austin, TX 73301" +164658,Bose SoundSport Headphones,1,99.99,02/27/19 12:03,"386 Main St, San Francisco, CA 94016" +164659,Wired Headphones,1,11.99,02/21/19 12:32,"640 2nd St, Portland, OR 97035" +164660,Wired Headphones,1,11.99,02/19/19 20:18,"399 North St, Seattle, WA 98101" +164661,34in Ultrawide Monitor,1,379.99,02/17/19 15:28,"330 Sunset St, Los Angeles, CA 90001" +164662,27in FHD Monitor,1,149.99,02/18/19 15:08,"956 Meadow St, Los Angeles, CA 90001" +164662,AAA Batteries (4-pack),1,2.99,02/18/19 15:08,"956 Meadow St, Los Angeles, CA 90001" +164663,USB-C Charging Cable,1,11.95,02/11/19 09:18,"210 Elm St, Los Angeles, CA 90001" +164664,iPhone,1,700,02/13/19 22:48,"68 4th St, New York City, NY 10001" +164665,34in Ultrawide Monitor,1,379.99,02/19/19 10:42,"710 Johnson St, San Francisco, CA 94016" +164666,USB-C Charging Cable,1,11.95,02/08/19 13:32,"325 Walnut St, Atlanta, GA 30301" +164667,Macbook Pro Laptop,1,1700,02/02/19 05:20,"295 10th St, Dallas, TX 75001" +164668,AAA Batteries (4-pack),1,2.99,02/04/19 01:44,"627 Walnut St, Boston, MA 02215" +164669,Wired Headphones,1,11.99,02/25/19 20:21,"385 Highland St, San Francisco, CA 94016" +164670,Lightning Charging Cable,1,14.95,02/22/19 19:55,"55 West St, Atlanta, GA 30301" +164671,Flatscreen TV,1,300,02/22/19 19:00,"675 14th St, Dallas, TX 75001" +164672,iPhone,1,700,02/12/19 12:40,"787 7th St, Atlanta, GA 30301" +164673,Wired Headphones,1,11.99,02/03/19 21:05,"798 Dogwood St, Seattle, WA 98101" +164674,AAA Batteries (4-pack),1,2.99,02/14/19 01:23,"584 Center St, San Francisco, CA 94016" +164675,AAA Batteries (4-pack),1,2.99,02/05/19 08:27,"759 Meadow St, Boston, MA 02215" +164676,Bose SoundSport Headphones,1,99.99,02/01/19 16:44,"433 Cedar St, New York City, NY 10001" +164677,Wired Headphones,1,11.99,02/26/19 12:17,"922 1st St, Portland, OR 97035" +164678,Apple Airpods Headphones,1,150,02/19/19 16:54,"216 7th St, Los Angeles, CA 90001" +164679,AA Batteries (4-pack),1,3.84,02/22/19 21:04,"333 5th St, Los Angeles, CA 90001" +164680,AA Batteries (4-pack),1,3.84,02/05/19 19:24,"421 Madison St, San Francisco, CA 94016" +164681,34in Ultrawide Monitor,1,379.99,02/24/19 13:09,"516 Pine St, Los Angeles, CA 90001" +164682,Apple Airpods Headphones,1,150,02/20/19 15:40,"276 Hill St, San Francisco, CA 94016" +164683,AAA Batteries (4-pack),1,2.99,02/15/19 17:11,"744 West St, San Francisco, CA 94016" +164684,Macbook Pro Laptop,1,1700,02/21/19 10:46,"404 Lincoln St, San Francisco, CA 94016" +164685,AAA Batteries (4-pack),3,2.99,02/08/19 21:59,"777 10th St, New York City, NY 10001" +164686,Lightning Charging Cable,1,14.95,02/03/19 20:06,"132 Lakeview St, San Francisco, CA 94016" +164687,AA Batteries (4-pack),1,3.84,02/15/19 08:41,"716 Lake St, Los Angeles, CA 90001" +164688,Lightning Charging Cable,1,14.95,02/24/19 16:16,"897 Elm St, San Francisco, CA 94016" +164689,34in Ultrawide Monitor,1,379.99,02/12/19 18:54,"789 Washington St, San Francisco, CA 94016" +164690,AAA Batteries (4-pack),1,2.99,02/22/19 15:53,"352 Center St, Los Angeles, CA 90001" +164691,Macbook Pro Laptop,1,1700,02/25/19 21:07,"575 Cedar St, Dallas, TX 75001" +164692,Macbook Pro Laptop,1,1700,02/24/19 19:51,"870 Pine St, San Francisco, CA 94016" +164693,USB-C Charging Cable,1,11.95,02/27/19 14:00,"254 Lakeview St, Austin, TX 73301" +164694,Wired Headphones,1,11.99,02/08/19 09:54,"380 Center St, Dallas, TX 75001" +164695,Lightning Charging Cable,1,14.95,02/20/19 08:42,"879 11th St, San Francisco, CA 94016" +164696,iPhone,1,700,02/26/19 16:53,"963 10th St, Austin, TX 73301" +164697,Google Phone,1,600,02/11/19 14:11,"234 Ridge St, Boston, MA 02215" +164697,Wired Headphones,1,11.99,02/11/19 14:11,"234 Ridge St, Boston, MA 02215" +164697,USB-C Charging Cable,1,11.95,02/11/19 14:11,"234 Ridge St, Boston, MA 02215" +164698,Lightning Charging Cable,1,14.95,02/06/19 15:12,"356 1st St, New York City, NY 10001" +164699,Wired Headphones,1,11.99,02/04/19 16:57,"355 Forest St, Los Angeles, CA 90001" +164700,Wired Headphones,1,11.99,02/10/19 20:06,"426 Main St, Atlanta, GA 30301" +164701,Google Phone,1,600,02/07/19 11:54,"108 Sunset St, San Francisco, CA 94016" +164701,USB-C Charging Cable,1,11.95,02/07/19 11:54,"108 Sunset St, San Francisco, CA 94016" +164702,Wired Headphones,1,11.99,02/10/19 11:38,"548 1st St, San Francisco, CA 94016" +164702,ThinkPad Laptop,1,999.99,02/10/19 11:38,"548 1st St, San Francisco, CA 94016" +164703,AAA Batteries (4-pack),1,2.99,02/04/19 20:59,"942 Dogwood St, Atlanta, GA 30301" +164703,Apple Airpods Headphones,1,150,02/04/19 20:59,"942 Dogwood St, Atlanta, GA 30301" +164704,Wired Headphones,1,11.99,02/28/19 15:37,"745 9th St, Boston, MA 02215" +164705,Flatscreen TV,1,300,02/15/19 16:08,"745 Hickory St, San Francisco, CA 94016" +164706,AAA Batteries (4-pack),2,2.99,02/22/19 17:13,"394 River St, Boston, MA 02215" +164707,Bose SoundSport Headphones,1,99.99,02/16/19 22:32,"271 Park St, New York City, NY 10001" +164708,USB-C Charging Cable,1,11.95,02/11/19 20:07,"377 River St, Los Angeles, CA 90001" +164709,Macbook Pro Laptop,1,1700,02/18/19 10:12,"400 Lakeview St, San Francisco, CA 94016" +164710,Lightning Charging Cable,1,14.95,02/01/19 11:00,"278 Meadow St, Boston, MA 02215" +164711,Google Phone,1,600,02/12/19 09:11,"208 Pine St, San Francisco, CA 94016" +164712,ThinkPad Laptop,1,999.99,02/19/19 18:56,"726 9th St, San Francisco, CA 94016" +164713,Wired Headphones,1,11.99,02/21/19 00:22,"76 Johnson St, San Francisco, CA 94016" +164714,Wired Headphones,1,11.99,02/01/19 14:04,"250 1st St, San Francisco, CA 94016" +164715,Lightning Charging Cable,1,14.95,02/17/19 10:41,"614 6th St, Los Angeles, CA 90001" +164716,AA Batteries (4-pack),1,3.84,02/28/19 18:25,"561 5th St, Seattle, WA 98101" +164717,Lightning Charging Cable,1,14.95,02/24/19 17:39,"162 9th St, Seattle, WA 98101" +164718,Flatscreen TV,1,300,02/25/19 17:13,"621 8th St, Los Angeles, CA 90001" +164719,USB-C Charging Cable,1,11.95,02/20/19 21:54,"283 12th St, Seattle, WA 98101" +164720,Wired Headphones,2,11.99,02/14/19 01:45,"856 Highland St, Atlanta, GA 30301" +164721,34in Ultrawide Monitor,1,379.99,02/13/19 06:51,"664 Cherry St, San Francisco, CA 94016" +164722,AAA Batteries (4-pack),1,2.99,02/11/19 21:53,"298 7th St, San Francisco, CA 94016" +164723,AAA Batteries (4-pack),1,2.99,02/14/19 16:23,"40 Washington St, Los Angeles, CA 90001" +164724,Apple Airpods Headphones,1,150,02/26/19 10:26,"65 Adams St, San Francisco, CA 94016" +164725,USB-C Charging Cable,1,11.95,02/22/19 17:10,"66 Wilson St, Dallas, TX 75001" +164726,Bose SoundSport Headphones,1,99.99,02/04/19 11:24,"423 Adams St, Los Angeles, CA 90001" +164727,Flatscreen TV,1,300,02/26/19 22:28,"684 West St, Los Angeles, CA 90001" +164728,iPhone,1,700,02/17/19 19:52,"853 Main St, Austin, TX 73301" +164729,USB-C Charging Cable,1,11.95,02/22/19 21:05,"320 5th St, Boston, MA 02215" +164730,Wired Headphones,1,11.99,02/22/19 13:15,"911 7th St, New York City, NY 10001" +164731,ThinkPad Laptop,1,999.99,02/22/19 00:37,"555 Highland St, Dallas, TX 75001" +164732,27in 4K Gaming Monitor,1,389.99,02/22/19 18:38,"954 Meadow St, San Francisco, CA 94016" +164733,AAA Batteries (4-pack),1,2.99,02/09/19 13:01,"640 11th St, Portland, ME 04101" +164734,Google Phone,1,600,02/23/19 19:11,"75 Maple St, Los Angeles, CA 90001" +164735,34in Ultrawide Monitor,1,379.99,02/12/19 18:35,"146 Lincoln St, Portland, ME 04101" +164736,Lightning Charging Cable,1,14.95,02/21/19 09:34,"402 Lincoln St, Austin, TX 73301" +164737,Apple Airpods Headphones,1,150,02/09/19 15:58,"24 Jackson St, Los Angeles, CA 90001" +164738,AAA Batteries (4-pack),1,2.99,02/15/19 16:16,"147 Cherry St, San Francisco, CA 94016" +164739,20in Monitor,1,109.99,02/25/19 12:34,"490 10th St, Portland, OR 97035" +164740,Lightning Charging Cable,1,14.95,02/16/19 07:57,"727 7th St, Boston, MA 02215" +164741,USB-C Charging Cable,1,11.95,02/01/19 13:20,"855 Dogwood St, Austin, TX 73301" +164742,iPhone,1,700,02/25/19 06:48,"809 South St, Atlanta, GA 30301" +164742,Apple Airpods Headphones,1,150,02/25/19 06:48,"809 South St, Atlanta, GA 30301" +164743,27in FHD Monitor,2,149.99,02/08/19 19:13,"763 Walnut St, Dallas, TX 75001" +164744,USB-C Charging Cable,1,11.95,02/19/19 21:28,"726 1st St, Los Angeles, CA 90001" +164745,Macbook Pro Laptop,1,1700,02/09/19 12:07,"150 Washington St, Los Angeles, CA 90001" +164746,iPhone,1,700,02/05/19 17:50,"316 4th St, San Francisco, CA 94016" +164747,USB-C Charging Cable,1,11.95,02/02/19 22:42,"477 Hickory St, San Francisco, CA 94016" +164748,Google Phone,1,600,02/17/19 07:37,"465 Spruce St, Atlanta, GA 30301" +164749,AA Batteries (4-pack),2,3.84,02/17/19 19:24,"322 Jackson St, Austin, TX 73301" +164750,Wired Headphones,1,11.99,02/24/19 20:04,"67 Jefferson St, New York City, NY 10001" +164751,AAA Batteries (4-pack),1,2.99,02/21/19 20:52,"282 Hickory St, New York City, NY 10001" +164752,USB-C Charging Cable,1,11.95,02/02/19 08:04,"729 Main St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +164753,USB-C Charging Cable,1,11.95,02/17/19 08:04,"749 11th St, San Francisco, CA 94016" +164754,27in 4K Gaming Monitor,1,389.99,02/15/19 12:35,"428 Jefferson St, San Francisco, CA 94016" +164755,AA Batteries (4-pack),2,3.84,02/28/19 13:37,"756 Park St, Portland, OR 97035" +164756,AA Batteries (4-pack),1,3.84,02/02/19 22:01,"401 Hill St, Portland, OR 97035" +164757,Bose SoundSport Headphones,1,99.99,02/05/19 15:09,"787 Highland St, San Francisco, CA 94016" +164758,AA Batteries (4-pack),1,3.84,02/05/19 09:36,"985 Dogwood St, New York City, NY 10001" +164759,ThinkPad Laptop,1,999.99,02/01/19 13:22,"893 Maple St, San Francisco, CA 94016" +164760,27in 4K Gaming Monitor,1,389.99,02/19/19 14:13,"565 4th St, San Francisco, CA 94016" +164761,Lightning Charging Cable,1,14.95,02/18/19 22:06,"138 Cherry St, Los Angeles, CA 90001" +164762,USB-C Charging Cable,1,11.95,02/06/19 18:43,"411 1st St, Atlanta, GA 30301" +164763,USB-C Charging Cable,1,11.95,02/12/19 21:11,"660 Hickory St, San Francisco, CA 94016" +164764,Wired Headphones,2,11.99,02/17/19 15:33,"707 Meadow St, Atlanta, GA 30301" +164764,Wired Headphones,1,11.99,02/17/19 15:33,"707 Meadow St, Atlanta, GA 30301" +164765,Apple Airpods Headphones,1,150,02/04/19 12:05,"221 Jefferson St, San Francisco, CA 94016" +164766,AA Batteries (4-pack),3,3.84,02/22/19 11:35,"63 Maple St, Portland, OR 97035" +164767,Lightning Charging Cable,1,14.95,02/08/19 22:10,"481 Church St, New York City, NY 10001" +164768,Wired Headphones,1,11.99,02/21/19 19:20,"947 Forest St, Boston, MA 02215" +164769,AAA Batteries (4-pack),2,2.99,02/10/19 20:41,"468 Meadow St, Boston, MA 02215" +164770,Wired Headphones,1,11.99,02/08/19 21:42,"971 Walnut St, Portland, ME 04101" +164771,Wired Headphones,2,11.99,02/12/19 14:06,"120 Lake St, San Francisco, CA 94016" +164772,Google Phone,1,600,02/11/19 17:21,"254 Hill St, Dallas, TX 75001" +164773,Apple Airpods Headphones,1,150,02/14/19 12:52,"355 Cherry St, San Francisco, CA 94016" +164774,AAA Batteries (4-pack),1,2.99,02/20/19 20:33,"481 Hickory St, Seattle, WA 98101" +164775,34in Ultrawide Monitor,1,379.99,02/20/19 13:03,"900 Spruce St, Seattle, WA 98101" +164776,AA Batteries (4-pack),1,3.84,02/16/19 16:28,"288 Sunset St, San Francisco, CA 94016" +164777,Bose SoundSport Headphones,1,99.99,02/25/19 09:14,"206 Church St, Los Angeles, CA 90001" +164778,AAA Batteries (4-pack),1,2.99,02/23/19 19:22,"783 Hickory St, Austin, TX 73301" +164779,AAA Batteries (4-pack),1,2.99,02/26/19 10:46,"825 Pine St, Atlanta, GA 30301" +164780,Wired Headphones,2,11.99,02/11/19 06:51,"277 Sunset St, Los Angeles, CA 90001" +164781,27in FHD Monitor,1,149.99,02/02/19 09:11,"134 Main St, Portland, OR 97035" +164782,iPhone,1,700,02/07/19 21:27,"988 Hickory St, Boston, MA 02215" +164782,Wired Headphones,1,11.99,02/07/19 21:27,"988 Hickory St, Boston, MA 02215" +164783,Apple Airpods Headphones,1,150,02/26/19 09:35,"747 Cedar St, San Francisco, CA 94016" +164784,27in 4K Gaming Monitor,1,389.99,02/22/19 17:33,"668 Spruce St, Dallas, TX 75001" +164785,Flatscreen TV,1,300,02/26/19 14:10,"262 Highland St, San Francisco, CA 94016" +164786,Lightning Charging Cable,1,14.95,02/21/19 19:31,"614 Ridge St, Seattle, WA 98101" +164787,AAA Batteries (4-pack),1,2.99,02/08/19 12:32,"824 1st St, San Francisco, CA 94016" +164788,Wired Headphones,1,11.99,02/12/19 11:47,"727 Jackson St, Los Angeles, CA 90001" +164789,Google Phone,1,600,02/10/19 21:20,"362 Jackson St, New York City, NY 10001" +164789,USB-C Charging Cable,1,11.95,02/10/19 21:20,"362 Jackson St, New York City, NY 10001" +164790,Apple Airpods Headphones,1,150,02/02/19 12:57,"232 Johnson St, Dallas, TX 75001" +164791,27in FHD Monitor,1,149.99,02/28/19 20:12,"591 7th St, New York City, NY 10001" +164792,Wired Headphones,1,11.99,02/09/19 20:21,"777 Spruce St, San Francisco, CA 94016" +164793,AAA Batteries (4-pack),1,2.99,02/23/19 20:54,"63 Center St, Seattle, WA 98101" +164794,Wired Headphones,2,11.99,02/20/19 10:55,"625 4th St, Los Angeles, CA 90001" +164795,Apple Airpods Headphones,1,150,02/21/19 21:33,"73 Johnson St, San Francisco, CA 94016" +164796,Wired Headphones,1,11.99,02/06/19 19:47,"136 12th St, San Francisco, CA 94016" +164797,Wired Headphones,1,11.99,02/04/19 07:49,"482 Jackson St, San Francisco, CA 94016" +164798,Lightning Charging Cable,1,14.95,02/06/19 10:16,"51 Highland St, Los Angeles, CA 90001" +164799,AA Batteries (4-pack),1,3.84,02/12/19 12:25,"566 9th St, Los Angeles, CA 90001" +164800,Bose SoundSport Headphones,1,99.99,02/22/19 11:07,"808 Jefferson St, San Francisco, CA 94016" +164801,27in FHD Monitor,1,149.99,02/13/19 10:55,"33 10th St, Los Angeles, CA 90001" +164802,Wired Headphones,1,11.99,02/01/19 16:44,"203 Cherry St, Los Angeles, CA 90001" +164803,Flatscreen TV,1,300,02/07/19 18:39,"282 Jackson St, Portland, OR 97035" +164804,Lightning Charging Cable,1,14.95,02/19/19 06:40,"575 Jefferson St, Boston, MA 02215" +164805,Lightning Charging Cable,1,14.95,02/25/19 18:48,"794 4th St, San Francisco, CA 94016" +164806,34in Ultrawide Monitor,1,379.99,02/16/19 21:44,"729 Johnson St, New York City, NY 10001" +164807,Apple Airpods Headphones,1,150,02/19/19 10:38,"650 4th St, San Francisco, CA 94016" +164808,Lightning Charging Cable,1,14.95,02/21/19 14:29,"653 Jackson St, Atlanta, GA 30301" +164809,Google Phone,1,600,02/13/19 21:09,"155 7th St, New York City, NY 10001" +164810,27in FHD Monitor,1,149.99,02/20/19 22:30,"219 9th St, Boston, MA 02215" +164811,AAA Batteries (4-pack),1,2.99,02/05/19 14:57,"514 Lincoln St, Los Angeles, CA 90001" +164812,Macbook Pro Laptop,1,1700,02/13/19 16:35,"974 Jefferson St, New York City, NY 10001" +164813,ThinkPad Laptop,1,999.99,02/11/19 00:34,"21 Sunset St, Dallas, TX 75001" +164814,AA Batteries (4-pack),1,3.84,02/20/19 20:41,"389 Elm St, San Francisco, CA 94016" +164815,iPhone,1,700,02/21/19 12:21,"988 10th St, Seattle, WA 98101" +164816,iPhone,1,700,02/13/19 12:08,"568 Wilson St, Boston, MA 02215" +164816,Lightning Charging Cable,1,14.95,02/13/19 12:08,"568 Wilson St, Boston, MA 02215" +164817,Wired Headphones,2,11.99,02/12/19 21:54,"162 Hill St, Austin, TX 73301" +164818,AAA Batteries (4-pack),1,2.99,02/11/19 22:14,"804 Cedar St, Los Angeles, CA 90001" +164819,Lightning Charging Cable,2,14.95,02/15/19 12:05,"554 Highland St, New York City, NY 10001" +164820,Bose SoundSport Headphones,1,99.99,02/15/19 12:27,"950 River St, Dallas, TX 75001" +164821,Macbook Pro Laptop,1,1700,02/23/19 08:02,"316 Meadow St, Los Angeles, CA 90001" +164822,iPhone,1,700,02/10/19 11:50,"32 Spruce St, Atlanta, GA 30301" +164823,AA Batteries (4-pack),1,3.84,02/17/19 19:51,"312 11th St, Seattle, WA 98101" +164824,Lightning Charging Cable,1,14.95,02/24/19 02:49,"764 River St, Los Angeles, CA 90001" +164825,iPhone,1,700,02/23/19 13:32,"372 4th St, New York City, NY 10001" +164826,Vareebadd Phone,1,400,02/11/19 18:09,"865 7th St, New York City, NY 10001" +164827,AA Batteries (4-pack),1,3.84,02/12/19 23:35,"780 5th St, Atlanta, GA 30301" +164828,Lightning Charging Cable,1,14.95,02/21/19 12:20,"58 Park St, Los Angeles, CA 90001" +164829,Flatscreen TV,1,300,02/24/19 09:15,"773 11th St, Portland, OR 97035" +164830,ThinkPad Laptop,1,999.99,02/16/19 12:45,"53 Sunset St, Seattle, WA 98101" +164831,Wired Headphones,2,11.99,02/05/19 19:50,"586 Chestnut St, New York City, NY 10001" +164832,AAA Batteries (4-pack),1,2.99,02/07/19 12:54,"790 South St, New York City, NY 10001" +164833,AAA Batteries (4-pack),1,2.99,02/26/19 07:57,"36 Pine St, Portland, OR 97035" +164834,Google Phone,1,600,02/15/19 12:00,"250 Dogwood St, Dallas, TX 75001" +164835,USB-C Charging Cable,1,11.95,02/25/19 09:06,"132 Jackson St, San Francisco, CA 94016" +164836,AAA Batteries (4-pack),1,2.99,02/20/19 12:26,"631 Adams St, San Francisco, CA 94016" +164837,ThinkPad Laptop,1,999.99,02/28/19 10:40,"834 Willow St, Seattle, WA 98101" +164838,AA Batteries (4-pack),1,3.84,02/09/19 17:36,"766 Johnson St, Los Angeles, CA 90001" +164839,USB-C Charging Cable,1,11.95,02/18/19 04:25,"322 Wilson St, Austin, TX 73301" +164840,27in 4K Gaming Monitor,1,389.99,02/24/19 22:23,"276 Hickory St, Atlanta, GA 30301" +164841,Lightning Charging Cable,1,14.95,02/04/19 17:07,"284 Hill St, Los Angeles, CA 90001" +164842,AAA Batteries (4-pack),1,2.99,02/05/19 11:26,"821 Cedar St, Portland, ME 04101" +164843,AA Batteries (4-pack),1,3.84,02/07/19 17:04,"534 Jefferson St, San Francisco, CA 94016" +164844,USB-C Charging Cable,1,11.95,02/09/19 09:04,"613 Center St, New York City, NY 10001" +164845,27in 4K Gaming Monitor,1,389.99,02/14/19 01:26,"696 11th St, San Francisco, CA 94016" +164846,Bose SoundSport Headphones,1,99.99,02/01/19 16:33,"628 Sunset St, Atlanta, GA 30301" +164847,USB-C Charging Cable,1,11.95,02/11/19 20:42,"676 13th St, Austin, TX 73301" +164848,USB-C Charging Cable,1,11.95,02/16/19 15:53,"792 Johnson St, San Francisco, CA 94016" +164849,Lightning Charging Cable,1,14.95,02/28/19 04:21,"161 Center St, Portland, OR 97035" +164850,ThinkPad Laptop,1,999.99,02/08/19 17:52,"33 Ridge St, Boston, MA 02215" +164851,34in Ultrawide Monitor,1,379.99,02/08/19 19:53,"478 Meadow St, Portland, OR 97035" +164852,iPhone,1,700,02/03/19 19:25,"75 8th St, New York City, NY 10001" +164853,Wired Headphones,1,11.99,02/18/19 18:59,"998 Washington St, Los Angeles, CA 90001" +164854,27in FHD Monitor,1,149.99,02/06/19 14:24,"725 Dogwood St, Portland, ME 04101" +164855,Wired Headphones,1,11.99,02/10/19 20:57,"866 Forest St, Atlanta, GA 30301" +164856,20in Monitor,1,109.99,02/22/19 04:40,"326 South St, San Francisco, CA 94016" +164857,Macbook Pro Laptop,1,1700,02/05/19 08:30,"957 13th St, San Francisco, CA 94016" +164858,USB-C Charging Cable,1,11.95,02/20/19 10:11,"773 Hickory St, San Francisco, CA 94016" +164859,Flatscreen TV,1,300,02/23/19 09:15,"555 Walnut St, Los Angeles, CA 90001" +164860,AA Batteries (4-pack),3,3.84,02/19/19 09:17,"270 Meadow St, Seattle, WA 98101" +164861,Flatscreen TV,1,300,02/28/19 20:50,"114 8th St, Atlanta, GA 30301" +164862,USB-C Charging Cable,1,11.95,02/23/19 11:23,"852 Jackson St, Atlanta, GA 30301" +164863,AA Batteries (4-pack),1,3.84,02/04/19 23:17,"682 12th St, Seattle, WA 98101" +164864,USB-C Charging Cable,1,11.95,02/11/19 09:42,"669 12th St, San Francisco, CA 94016" +164865,USB-C Charging Cable,1,11.95,02/18/19 16:24,"334 8th St, Portland, OR 97035" +164866,USB-C Charging Cable,1,11.95,02/05/19 12:21,"77 Pine St, Austin, TX 73301" +164867,AA Batteries (4-pack),1,3.84,02/15/19 13:18,"519 Spruce St, Los Angeles, CA 90001" +164868,iPhone,1,700,02/09/19 11:40,"395 Walnut St, Atlanta, GA 30301" +164869,Wired Headphones,1,11.99,02/13/19 12:36,"97 Church St, Austin, TX 73301" +164870,AAA Batteries (4-pack),1,2.99,02/18/19 14:27,"572 14th St, San Francisco, CA 94016" +164871,USB-C Charging Cable,1,11.95,02/11/19 12:12,"267 Johnson St, San Francisco, CA 94016" +164872,Apple Airpods Headphones,1,150,02/06/19 07:56,"597 Main St, San Francisco, CA 94016" +164873,AA Batteries (4-pack),1,3.84,02/10/19 11:56,"203 Elm St, New York City, NY 10001" +164874,Apple Airpods Headphones,1,150,02/20/19 21:11,"898 5th St, Los Angeles, CA 90001" +164875,Lightning Charging Cable,1,14.95,02/10/19 13:52,"761 Ridge St, New York City, NY 10001" +164876,AAA Batteries (4-pack),2,2.99,02/11/19 16:00,"579 9th St, San Francisco, CA 94016" +164877,Wired Headphones,1,11.99,02/28/19 08:51,"86 North St, Dallas, TX 75001" +164878,Bose SoundSport Headphones,1,99.99,02/19/19 20:55,"482 Hickory St, New York City, NY 10001" +164879,Apple Airpods Headphones,1,150,02/25/19 10:05,"841 11th St, Dallas, TX 75001" +164880,27in 4K Gaming Monitor,1,389.99,02/09/19 20:54,"923 2nd St, San Francisco, CA 94016" +164881,Flatscreen TV,1,300,02/20/19 13:48,"316 4th St, Dallas, TX 75001" +164882,Lightning Charging Cable,1,14.95,02/23/19 12:54,"18 Cherry St, San Francisco, CA 94016" +164883,AA Batteries (4-pack),2,3.84,02/08/19 17:52,"753 Jefferson St, Atlanta, GA 30301" +164884,iPhone,1,700,02/11/19 15:31,"637 Church St, Boston, MA 02215" +164885,Macbook Pro Laptop,1,1700,02/06/19 18:45,"155 13th St, Boston, MA 02215" +164886,Lightning Charging Cable,1,14.95,02/06/19 19:26,"618 11th St, San Francisco, CA 94016" +164887,Apple Airpods Headphones,1,150,02/17/19 21:02,"788 8th St, Dallas, TX 75001" +164888,27in FHD Monitor,1,149.99,02/02/19 23:33,"400 Walnut St, San Francisco, CA 94016" +164889,27in 4K Gaming Monitor,1,389.99,02/11/19 19:49,"961 14th St, New York City, NY 10001" +164890,Wired Headphones,1,11.99,02/11/19 11:39,"344 10th St, Atlanta, GA 30301" +164891,USB-C Charging Cable,1,11.95,02/12/19 15:34,"354 7th St, Los Angeles, CA 90001" +164892,USB-C Charging Cable,1,11.95,02/10/19 15:31,"970 14th St, Boston, MA 02215" +164893,Lightning Charging Cable,1,14.95,02/01/19 14:20,"121 Spruce St, Atlanta, GA 30301" +164894,AA Batteries (4-pack),3,3.84,02/18/19 21:23,"34 9th St, New York City, NY 10001" +164895,AA Batteries (4-pack),1,3.84,02/09/19 20:03,"569 Park St, Atlanta, GA 30301" +164896,Flatscreen TV,1,300,02/01/19 12:35,"692 Meadow St, Portland, OR 97035" +164897,Wired Headphones,1,11.99,02/24/19 20:00,"387 Cherry St, Boston, MA 02215" +164898,Bose SoundSport Headphones,2,99.99,02/12/19 18:42,"47 West St, San Francisco, CA 94016" +164899,AA Batteries (4-pack),2,3.84,02/26/19 20:19,"236 8th St, Atlanta, GA 30301" +164900,Wired Headphones,1,11.99,02/14/19 05:23,"63 Meadow St, Atlanta, GA 30301" +164901,AAA Batteries (4-pack),1,2.99,02/24/19 17:36,"958 Lake St, San Francisco, CA 94016" +164902,Lightning Charging Cable,1,14.95,02/19/19 15:46,"538 14th St, New York City, NY 10001" +164903,USB-C Charging Cable,1,11.95,02/14/19 13:31,"977 7th St, Dallas, TX 75001" +164904,27in FHD Monitor,1,149.99,02/27/19 15:47,"83 Lakeview St, Atlanta, GA 30301" +164905,Google Phone,1,600,02/12/19 18:36,"625 Jefferson St, San Francisco, CA 94016" +164906,iPhone,1,700,02/27/19 07:15,"777 Main St, Seattle, WA 98101" +164907,27in 4K Gaming Monitor,1,389.99,02/05/19 15:39,"81 9th St, Los Angeles, CA 90001" +164908,AA Batteries (4-pack),1,3.84,02/24/19 05:30,"642 Jackson St, Portland, ME 04101" +164909,Apple Airpods Headphones,1,150,02/02/19 09:32,"455 9th St, Seattle, WA 98101" +164910,AAA Batteries (4-pack),1,2.99,02/19/19 18:35,"508 South St, Dallas, TX 75001" +164911,USB-C Charging Cable,1,11.95,02/15/19 20:32,"189 10th St, Los Angeles, CA 90001" +164912,Wired Headphones,1,11.99,02/22/19 19:10,"75 2nd St, San Francisco, CA 94016" +164913,Apple Airpods Headphones,1,150,02/20/19 11:40,"130 14th St, New York City, NY 10001" +164914,Apple Airpods Headphones,1,150,02/27/19 09:53,"702 Church St, New York City, NY 10001" +164915,Wired Headphones,1,11.99,02/03/19 14:59,"425 1st St, Atlanta, GA 30301" +164916,AA Batteries (4-pack),2,3.84,02/04/19 10:51,"249 Jefferson St, Boston, MA 02215" +164917,AA Batteries (4-pack),1,3.84,02/12/19 21:37,"875 Spruce St, San Francisco, CA 94016" +164918,AAA Batteries (4-pack),1,2.99,02/28/19 21:32,"940 6th St, Los Angeles, CA 90001" +164919,20in Monitor,1,109.99,02/10/19 04:22,"357 Adams St, San Francisco, CA 94016" +164920,Macbook Pro Laptop,1,1700,02/26/19 11:13,"888 Lakeview St, Dallas, TX 75001" +164921,AA Batteries (4-pack),2,3.84,02/21/19 11:53,"594 9th St, New York City, NY 10001" +164922,USB-C Charging Cable,1,11.95,02/05/19 21:47,"273 Maple St, Atlanta, GA 30301" +164923,ThinkPad Laptop,1,999.99,02/26/19 08:26,"564 10th St, Atlanta, GA 30301" +164924,Lightning Charging Cable,1,14.95,02/04/19 21:35,"960 Jefferson St, New York City, NY 10001" +164925,iPhone,1,700,02/02/19 22:00,"764 Washington St, San Francisco, CA 94016" +164926,Bose SoundSport Headphones,1,99.99,02/21/19 11:04,"954 1st St, San Francisco, CA 94016" +164927,Vareebadd Phone,1,400,02/28/19 17:47,"571 Wilson St, Dallas, TX 75001" +164928,Apple Airpods Headphones,1,150,02/20/19 18:27,"979 1st St, San Francisco, CA 94016" +164929,27in FHD Monitor,1,149.99,02/07/19 16:13,"493 Main St, Los Angeles, CA 90001" +164930,Wired Headphones,1,11.99,02/04/19 10:27,"105 Spruce St, Seattle, WA 98101" +164931,Google Phone,1,600,02/15/19 10:16,"731 14th St, New York City, NY 10001" +164932,USB-C Charging Cable,1,11.95,02/22/19 17:28,"705 Jackson St, Portland, OR 97035" +164933,Wired Headphones,1,11.99,02/13/19 15:22,"532 Maple St, San Francisco, CA 94016" +164934,AA Batteries (4-pack),1,3.84,02/22/19 22:37,"105 11th St, Los Angeles, CA 90001" +164935,Google Phone,1,600,02/02/19 18:48,"341 10th St, Seattle, WA 98101" +164936,Wired Headphones,1,11.99,02/23/19 21:46,"908 Sunset St, Portland, OR 97035" +164937,Lightning Charging Cable,1,14.95,02/09/19 12:33,"324 10th St, Los Angeles, CA 90001" +164938,Wired Headphones,1,11.99,02/22/19 12:04,"974 4th St, New York City, NY 10001" +164939,34in Ultrawide Monitor,1,379.99,02/15/19 01:07,"852 12th St, Los Angeles, CA 90001" +164940,Lightning Charging Cable,1,14.95,02/07/19 14:12,"61 Spruce St, Los Angeles, CA 90001" +164941,Macbook Pro Laptop,1,1700,02/11/19 20:04,"114 7th St, Los Angeles, CA 90001" +164942,Google Phone,1,600,02/17/19 15:09,"266 South St, San Francisco, CA 94016" +164943,Flatscreen TV,1,300,02/28/19 20:15,"37 Willow St, San Francisco, CA 94016" +164944,27in 4K Gaming Monitor,1,389.99,02/22/19 11:00,"990 North St, New York City, NY 10001" +164945,USB-C Charging Cable,1,11.95,02/13/19 21:52,"874 Main St, San Francisco, CA 94016" +164946,AAA Batteries (4-pack),1,2.99,02/10/19 19:34,"500 13th St, San Francisco, CA 94016" +164947,USB-C Charging Cable,1,11.95,02/28/19 18:14,"943 Lakeview St, New York City, NY 10001" +164948,AA Batteries (4-pack),1,3.84,02/10/19 11:25,"925 Washington St, Los Angeles, CA 90001" +164949,ThinkPad Laptop,1,999.99,02/07/19 12:13,"382 Johnson St, Portland, OR 97035" +164950,34in Ultrawide Monitor,1,379.99,02/02/19 07:41,"681 13th St, Dallas, TX 75001" +164951,AAA Batteries (4-pack),1,2.99,02/22/19 18:26,"84 Cherry St, Atlanta, GA 30301" +164952,USB-C Charging Cable,2,11.95,02/11/19 20:48,"228 Meadow St, Los Angeles, CA 90001" +164953,AAA Batteries (4-pack),1,2.99,02/28/19 11:26,"348 Pine St, Los Angeles, CA 90001" +164954,USB-C Charging Cable,2,11.95,02/23/19 08:01,"258 Adams St, San Francisco, CA 94016" +164955,34in Ultrawide Monitor,1,379.99,02/23/19 16:33,"781 2nd St, San Francisco, CA 94016" +164956,USB-C Charging Cable,2,11.95,02/17/19 09:02,"55 Main St, Dallas, TX 75001" +164957,Apple Airpods Headphones,1,150,02/14/19 20:12,"683 River St, San Francisco, CA 94016" +164958,USB-C Charging Cable,1,11.95,02/15/19 14:40,"782 Church St, Seattle, WA 98101" +164959,27in 4K Gaming Monitor,1,389.99,02/27/19 16:17,"872 5th St, San Francisco, CA 94016" +164960,iPhone,1,700,02/26/19 09:12,"337 West St, Los Angeles, CA 90001" +164960,Wired Headphones,1,11.99,02/26/19 09:12,"337 West St, Los Angeles, CA 90001" +164960,Wired Headphones,1,11.99,02/26/19 09:12,"337 West St, Los Angeles, CA 90001" +164961,Bose SoundSport Headphones,1,99.99,02/26/19 08:06,"520 Ridge St, San Francisco, CA 94016" +164962,Wired Headphones,2,11.99,03/01/19 00:23,"67 Maple St, Atlanta, GA 30301" +164963,Macbook Pro Laptop,1,1700,02/01/19 19:32,"495 Sunset St, Los Angeles, CA 90001" +164964,AAA Batteries (4-pack),2,2.99,02/17/19 09:54,"93 Elm St, New York City, NY 10001" +164965,Lightning Charging Cable,1,14.95,02/07/19 19:04,"671 Elm St, Seattle, WA 98101" +164966,AA Batteries (4-pack),2,3.84,02/13/19 15:31,"600 Johnson St, Boston, MA 02215" +164967,Vareebadd Phone,1,400,02/16/19 22:06,"722 4th St, Los Angeles, CA 90001" +164968,USB-C Charging Cable,1,11.95,02/25/19 11:08,"831 Hickory St, Boston, MA 02215" +164969,USB-C Charging Cable,1,11.95,02/12/19 16:54,"768 Elm St, San Francisco, CA 94016" +164970,Apple Airpods Headphones,1,150,02/16/19 21:00,"994 South St, San Francisco, CA 94016" +164971,AAA Batteries (4-pack),3,2.99,02/16/19 16:37,"567 14th St, Dallas, TX 75001" +164972,AAA Batteries (4-pack),1,2.99,02/01/19 10:15,"248 Johnson St, San Francisco, CA 94016" +164973,Flatscreen TV,1,300,02/20/19 13:21,"378 12th St, Atlanta, GA 30301" +164974,AA Batteries (4-pack),1,3.84,02/01/19 11:58,"143 Main St, San Francisco, CA 94016" +164975,34in Ultrawide Monitor,1,379.99,02/23/19 18:23,"5 10th St, New York City, NY 10001" +164976,Bose SoundSport Headphones,1,99.99,02/24/19 23:03,"405 Maple St, Boston, MA 02215" +164977,Wired Headphones,1,11.99,02/27/19 08:23,"439 4th St, San Francisco, CA 94016" +164978,Apple Airpods Headphones,1,150,02/06/19 16:33,"309 Meadow St, Los Angeles, CA 90001" +164979,Apple Airpods Headphones,1,150,02/17/19 20:55,"597 Park St, San Francisco, CA 94016" +164980,34in Ultrawide Monitor,1,379.99,02/19/19 08:54,"283 Chestnut St, Austin, TX 73301" +164981,Apple Airpods Headphones,1,150,02/19/19 18:36,"251 2nd St, Los Angeles, CA 90001" +164982,AAA Batteries (4-pack),2,2.99,02/12/19 05:13,"475 Meadow St, Austin, TX 73301" +164983,Lightning Charging Cable,1,14.95,02/10/19 22:53,"880 Meadow St, San Francisco, CA 94016" +164984,Apple Airpods Headphones,1,150,02/24/19 15:26,"483 Hickory St, San Francisco, CA 94016" +164985,Apple Airpods Headphones,1,150,02/03/19 11:07,"817 Lincoln St, Portland, ME 04101" +164986,Macbook Pro Laptop,1,1700,02/04/19 09:48,"388 11th St, Atlanta, GA 30301" +164987,34in Ultrawide Monitor,1,379.99,02/21/19 09:05,"726 Center St, Portland, OR 97035" +164988,34in Ultrawide Monitor,1,379.99,02/09/19 22:25,"701 Ridge St, Seattle, WA 98101" +164989,27in FHD Monitor,1,149.99,02/23/19 10:12,"850 11th St, Atlanta, GA 30301" +164990,Wired Headphones,1,11.99,02/24/19 00:11,"244 4th St, Boston, MA 02215" +164991,Macbook Pro Laptop,1,1700,02/09/19 01:20,"252 Jackson St, San Francisco, CA 94016" +164992,USB-C Charging Cable,1,11.95,02/21/19 12:36,"426 Jefferson St, Los Angeles, CA 90001" +164993,Lightning Charging Cable,1,14.95,02/14/19 18:52,"287 Church St, Seattle, WA 98101" +164994,Macbook Pro Laptop,1,1700,02/18/19 17:08,"606 12th St, San Francisco, CA 94016" +164995,Wired Headphones,1,11.99,02/10/19 22:50,"237 Pine St, Portland, ME 04101" +164996,Wired Headphones,1,11.99,02/06/19 08:20,"17 Hickory St, New York City, NY 10001" +164997,AA Batteries (4-pack),1,3.84,02/14/19 11:48,"66 4th St, New York City, NY 10001" +164998,27in FHD Monitor,1,149.99,02/21/19 06:38,"181 2nd St, San Francisco, CA 94016" +164999,AAA Batteries (4-pack),1,2.99,02/12/19 16:09,"124 Ridge St, Seattle, WA 98101" +165000,AA Batteries (4-pack),1,3.84,02/05/19 05:48,"75 Ridge St, Los Angeles, CA 90001" +165001,Apple Airpods Headphones,1,150,02/01/19 11:58,"953 Maple St, Los Angeles, CA 90001" +165002,Wired Headphones,1,11.99,02/11/19 22:52,"526 South St, Seattle, WA 98101" +165003,Lightning Charging Cable,1,14.95,02/02/19 15:00,"628 Adams St, Boston, MA 02215" +165004,Lightning Charging Cable,1,14.95,02/08/19 12:24,"481 Pine St, Atlanta, GA 30301" +165005,27in 4K Gaming Monitor,1,389.99,02/16/19 10:54,"591 Spruce St, Portland, OR 97035" +165006,USB-C Charging Cable,1,11.95,02/04/19 11:00,"251 8th St, Austin, TX 73301" +165007,Bose SoundSport Headphones,1,99.99,02/07/19 12:51,"382 Chestnut St, New York City, NY 10001" +165008,USB-C Charging Cable,1,11.95,02/14/19 19:57,"873 Center St, Boston, MA 02215" +165009,Bose SoundSport Headphones,1,99.99,02/22/19 20:26,"781 Lakeview St, Seattle, WA 98101" +165010,Wired Headphones,1,11.99,02/02/19 10:31,"852 West St, Los Angeles, CA 90001" +165011,USB-C Charging Cable,1,11.95,02/10/19 15:03,"127 1st St, Los Angeles, CA 90001" +165012,Apple Airpods Headphones,1,150,02/13/19 17:14,"405 Spruce St, Los Angeles, CA 90001" +165013,Bose SoundSport Headphones,1,99.99,02/24/19 10:07,"254 Wilson St, Los Angeles, CA 90001" +165014,Lightning Charging Cable,1,14.95,02/21/19 16:04,"557 12th St, San Francisco, CA 94016" +165015,27in FHD Monitor,1,149.99,02/19/19 14:44,"353 8th St, San Francisco, CA 94016" +165016,USB-C Charging Cable,1,11.95,02/06/19 20:48,"881 Maple St, Boston, MA 02215" +165017,AAA Batteries (4-pack),2,2.99,02/16/19 12:52,"431 Spruce St, Portland, OR 97035" +165018,USB-C Charging Cable,2,11.95,02/16/19 11:06,"637 Willow St, San Francisco, CA 94016" +165019,Wired Headphones,1,11.99,02/10/19 08:50,"361 Main St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +165020,Apple Airpods Headphones,1,150,02/13/19 16:10,"304 5th St, Dallas, TX 75001" +165021,USB-C Charging Cable,1,11.95,02/14/19 19:42,"277 Cherry St, Boston, MA 02215" +165022,Google Phone,1,600,02/23/19 12:45,"535 Washington St, Seattle, WA 98101" +165023,Apple Airpods Headphones,1,150,02/05/19 20:07,"11 Sunset St, Boston, MA 02215" +165024,AA Batteries (4-pack),3,3.84,02/12/19 18:59,"268 Madison St, Dallas, TX 75001" +165025,Apple Airpods Headphones,1,150,02/26/19 20:03,"991 Cherry St, San Francisco, CA 94016" +165026,AA Batteries (4-pack),1,3.84,02/07/19 12:21,"16 Chestnut St, Los Angeles, CA 90001" +165027,Lightning Charging Cable,1,14.95,02/17/19 20:37,"441 5th St, New York City, NY 10001" +165028,Google Phone,1,600,02/17/19 00:31,"759 6th St, New York City, NY 10001" +165029,Macbook Pro Laptop,1,1700,02/24/19 20:24,"308 Park St, New York City, NY 10001" +165030,AA Batteries (4-pack),1,3.84,02/24/19 12:55,"830 Lake St, San Francisco, CA 94016" +165031,AA Batteries (4-pack),1,3.84,02/17/19 19:57,"300 Church St, Los Angeles, CA 90001" +165032,iPhone,1,700,02/04/19 15:51,"584 River St, New York City, NY 10001" +165033,AA Batteries (4-pack),1,3.84,02/19/19 20:32,"878 Hill St, San Francisco, CA 94016" +165034,AAA Batteries (4-pack),2,2.99,02/09/19 12:51,"564 Walnut St, Dallas, TX 75001" +165035,AA Batteries (4-pack),2,3.84,02/02/19 08:59,"724 Maple St, New York City, NY 10001" +165035,27in 4K Gaming Monitor,1,389.99,02/02/19 08:59,"724 Maple St, New York City, NY 10001" +165036,AA Batteries (4-pack),2,3.84,02/20/19 13:37,"815 Lakeview St, Atlanta, GA 30301" +165037,Lightning Charging Cable,1,14.95,02/07/19 21:34,"234 7th St, Boston, MA 02215" +165038,AAA Batteries (4-pack),2,2.99,02/04/19 09:39,"228 Center St, Austin, TX 73301" +165039,27in FHD Monitor,1,149.99,02/17/19 16:44,"283 2nd St, Los Angeles, CA 90001" +165040,AAA Batteries (4-pack),7,2.99,02/24/19 23:39,"341 Elm St, San Francisco, CA 94016" +165041,USB-C Charging Cable,1,11.95,02/24/19 16:00,"396 Highland St, San Francisco, CA 94016" +165042,USB-C Charging Cable,1,11.95,02/03/19 03:20,"76 Jefferson St, Seattle, WA 98101" +165043,Lightning Charging Cable,1,14.95,02/06/19 10:00,"5 Spruce St, Austin, TX 73301" +165044,AAA Batteries (4-pack),1,2.99,02/03/19 01:23,"966 Willow St, San Francisco, CA 94016" +165045,Lightning Charging Cable,1,14.95,02/15/19 11:44,"115 Cedar St, San Francisco, CA 94016" +165046,Apple Airpods Headphones,1,150,02/06/19 21:00,"378 10th St, San Francisco, CA 94016" +165047,Wired Headphones,1,11.99,02/11/19 14:27,"233 South St, Portland, OR 97035" +165048,Wired Headphones,1,11.99,02/02/19 11:29,"139 1st St, Portland, OR 97035" +165049,Bose SoundSport Headphones,1,99.99,02/23/19 21:41,"531 Ridge St, San Francisco, CA 94016" +165050,Wired Headphones,1,11.99,02/07/19 20:01,"752 Johnson St, Austin, TX 73301" +165051,AA Batteries (4-pack),1,3.84,02/06/19 19:12,"61 North St, San Francisco, CA 94016" +165052,USB-C Charging Cable,1,11.95,02/24/19 13:05,"99 Lake St, Austin, TX 73301" +165053,27in FHD Monitor,1,149.99,02/23/19 09:55,"825 11th St, Los Angeles, CA 90001" +165054,Lightning Charging Cable,1,14.95,02/03/19 14:29,"240 5th St, San Francisco, CA 94016" +165055,Bose SoundSport Headphones,1,99.99,02/11/19 20:09,"465 Chestnut St, Dallas, TX 75001" +165056,Lightning Charging Cable,1,14.95,02/11/19 19:23,"486 River St, Portland, OR 97035" +165057,20in Monitor,1,109.99,02/28/19 22:18,"322 Jackson St, Los Angeles, CA 90001" +165058,27in FHD Monitor,1,149.99,02/03/19 16:55,"308 6th St, Austin, TX 73301" +165059,Wired Headphones,1,11.99,02/01/19 10:21,"325 Johnson St, Atlanta, GA 30301" +165060,27in FHD Monitor,1,149.99,02/28/19 17:39,"406 West St, Seattle, WA 98101" +165061,AAA Batteries (4-pack),1,2.99,02/25/19 17:47,"620 Lakeview St, San Francisco, CA 94016" +165062,Macbook Pro Laptop,1,1700,02/02/19 10:15,"174 Washington St, Los Angeles, CA 90001" +165063,Wired Headphones,1,11.99,02/24/19 15:01,"925 Wilson St, Boston, MA 02215" +165064,Bose SoundSport Headphones,1,99.99,02/04/19 11:39,"132 North St, Seattle, WA 98101" +165065,ThinkPad Laptop,1,999.99,02/24/19 19:56,"829 Hickory St, New York City, NY 10001" +165066,27in FHD Monitor,1,149.99,02/20/19 12:10,"49 8th St, San Francisco, CA 94016" +165067,27in FHD Monitor,1,149.99,02/23/19 22:19,"481 Jackson St, New York City, NY 10001" +165068,AA Batteries (4-pack),2,3.84,02/12/19 21:12,"648 Sunset St, Austin, TX 73301" +165069,Bose SoundSport Headphones,1,99.99,02/04/19 13:01,"933 Ridge St, San Francisco, CA 94016" +165070,iPhone,1,700,02/28/19 06:18,"337 Lake St, New York City, NY 10001" +165070,Lightning Charging Cable,1,14.95,02/28/19 06:18,"337 Lake St, New York City, NY 10001" +165071,AA Batteries (4-pack),2,3.84,02/19/19 09:09,"611 4th St, Los Angeles, CA 90001" +165072,AAA Batteries (4-pack),1,2.99,02/02/19 11:57,"848 Walnut St, Austin, TX 73301" +165073,USB-C Charging Cable,1,11.95,02/06/19 19:53,"316 13th St, Atlanta, GA 30301" +165074,27in FHD Monitor,1,149.99,02/25/19 14:09,"155 River St, Boston, MA 02215" +165075,20in Monitor,1,109.99,02/23/19 12:53,"679 Madison St, Los Angeles, CA 90001" +165076,AA Batteries (4-pack),1,3.84,02/03/19 23:29,"328 Cedar St, Los Angeles, CA 90001" +165077,USB-C Charging Cable,1,11.95,02/02/19 09:18,"206 Lakeview St, Seattle, WA 98101" +165078,27in 4K Gaming Monitor,1,389.99,02/07/19 21:36,"112 River St, Dallas, TX 75001" +165079,Apple Airpods Headphones,1,150,02/10/19 18:42,"71 11th St, San Francisco, CA 94016" +165080,Apple Airpods Headphones,1,150,02/02/19 19:30,"454 9th St, San Francisco, CA 94016" +165081,AA Batteries (4-pack),1,3.84,02/15/19 12:02,"363 Chestnut St, Seattle, WA 98101" +165082,Lightning Charging Cable,1,14.95,02/10/19 07:05,"939 Lincoln St, San Francisco, CA 94016" +165083,Apple Airpods Headphones,1,150,02/28/19 10:20,"151 Cedar St, Austin, TX 73301" +165084,Lightning Charging Cable,1,14.95,02/08/19 21:52,"337 Pine St, New York City, NY 10001" +165085,AA Batteries (4-pack),1,3.84,02/14/19 14:05,"754 2nd St, Los Angeles, CA 90001" +165086,Wired Headphones,1,11.99,02/04/19 15:38,"727 Jefferson St, San Francisco, CA 94016" +165087,USB-C Charging Cable,1,11.95,02/12/19 15:15,"854 8th St, Dallas, TX 75001" +165088,Bose SoundSport Headphones,1,99.99,02/05/19 11:33,"709 Hill St, Los Angeles, CA 90001" +165089,Apple Airpods Headphones,1,150,02/18/19 17:02,"387 Jefferson St, New York City, NY 10001" +165090,27in 4K Gaming Monitor,1,389.99,02/10/19 14:14,"584 Cherry St, Atlanta, GA 30301" +165091,USB-C Charging Cable,1,11.95,02/15/19 12:26,"992 Chestnut St, Dallas, TX 75001" +165092,Bose SoundSport Headphones,1,99.99,02/17/19 21:46,"122 Spruce St, Atlanta, GA 30301" +165093,USB-C Charging Cable,1,11.95,02/07/19 15:52,"457 11th St, Austin, TX 73301" +165094,Lightning Charging Cable,1,14.95,02/27/19 18:48,"316 2nd St, Atlanta, GA 30301" +165095,AA Batteries (4-pack),2,3.84,02/15/19 21:14,"919 Sunset St, Seattle, WA 98101" +165096,Bose SoundSport Headphones,1,99.99,02/10/19 18:11,"518 Chestnut St, Boston, MA 02215" +165097,Bose SoundSport Headphones,1,99.99,02/28/19 21:19,"571 2nd St, San Francisco, CA 94016" +165098,Wired Headphones,1,11.99,02/06/19 17:55,"844 Elm St, Boston, MA 02215" +165098,AAA Batteries (4-pack),1,2.99,02/06/19 17:55,"844 Elm St, Boston, MA 02215" +165099,Flatscreen TV,1,300,02/21/19 12:08,"520 Dogwood St, Los Angeles, CA 90001" +165100,AAA Batteries (4-pack),1,2.99,02/20/19 01:05,"409 Willow St, New York City, NY 10001" +165101,USB-C Charging Cable,1,11.95,02/25/19 21:20,"52 Johnson St, Seattle, WA 98101" +165102,USB-C Charging Cable,1,11.95,02/03/19 14:28,"280 Madison St, Boston, MA 02215" +165103,27in 4K Gaming Monitor,1,389.99,02/10/19 07:09,"928 10th St, Los Angeles, CA 90001" +165104,AA Batteries (4-pack),4,3.84,02/08/19 09:20,"733 13th St, Portland, OR 97035" +165104,USB-C Charging Cable,1,11.95,02/08/19 09:20,"733 13th St, Portland, OR 97035" +165105,Lightning Charging Cable,1,14.95,02/05/19 20:58,"575 13th St, Boston, MA 02215" +165106,AA Batteries (4-pack),2,3.84,02/11/19 19:54,"503 West St, Boston, MA 02215" +165107,Bose SoundSport Headphones,1,99.99,02/11/19 08:51,"898 Wilson St, Austin, TX 73301" +165108,iPhone,1,700,02/28/19 12:52,"343 Meadow St, Portland, OR 97035" +165109,27in FHD Monitor,1,149.99,02/25/19 17:25,"625 9th St, New York City, NY 10001" +165110,Apple Airpods Headphones,1,150,02/21/19 07:42,"153 Elm St, San Francisco, CA 94016" +165111,USB-C Charging Cable,1,11.95,02/10/19 11:37,"979 Spruce St, Portland, OR 97035" +165112,Bose SoundSport Headphones,1,99.99,02/10/19 19:38,"933 Lakeview St, New York City, NY 10001" +165113,Lightning Charging Cable,1,14.95,02/20/19 18:03,"484 Lake St, Los Angeles, CA 90001" +165114,Flatscreen TV,1,300,02/12/19 11:24,"345 Highland St, New York City, NY 10001" +165115,34in Ultrawide Monitor,1,379.99,02/27/19 10:36,"398 13th St, New York City, NY 10001" +165116,Lightning Charging Cable,1,14.95,02/12/19 20:00,"684 Madison St, New York City, NY 10001" +165117,AA Batteries (4-pack),1,3.84,02/21/19 21:51,"943 Hickory St, Los Angeles, CA 90001" +165118,AA Batteries (4-pack),1,3.84,02/05/19 16:21,"378 Jefferson St, Boston, MA 02215" +165119,Wired Headphones,1,11.99,02/02/19 13:59,"519 Hickory St, New York City, NY 10001" +165120,20in Monitor,1,109.99,02/09/19 08:43,"704 Forest St, Boston, MA 02215" +165121,AA Batteries (4-pack),1,3.84,02/21/19 14:53,"2 Dogwood St, Seattle, WA 98101" +165122,USB-C Charging Cable,2,11.95,02/28/19 14:14,"617 Forest St, Seattle, WA 98101" +165123,USB-C Charging Cable,1,11.95,02/22/19 13:16,"772 Jefferson St, San Francisco, CA 94016" +165124,Apple Airpods Headphones,1,150,02/10/19 23:16,"521 Ridge St, Atlanta, GA 30301" +165125,AA Batteries (4-pack),1,3.84,02/25/19 12:57,"384 North St, San Francisco, CA 94016" +165126,USB-C Charging Cable,1,11.95,02/03/19 14:07,"322 Pine St, Los Angeles, CA 90001" +165127,USB-C Charging Cable,1,11.95,02/21/19 12:03,"761 Sunset St, Seattle, WA 98101" +165128,27in 4K Gaming Monitor,1,389.99,02/24/19 23:41,"413 South St, San Francisco, CA 94016" +165129,iPhone,1,700,02/19/19 09:23,"690 Walnut St, Los Angeles, CA 90001" +165130,USB-C Charging Cable,1,11.95,02/27/19 21:45,"585 Center St, New York City, NY 10001" +165131,Bose SoundSport Headphones,2,99.99,02/14/19 11:47,"399 Hickory St, Austin, TX 73301" +165132,Apple Airpods Headphones,1,150,02/26/19 17:07,"668 Center St, Dallas, TX 75001" +165132,Vareebadd Phone,1,400,02/26/19 17:07,"668 Center St, Dallas, TX 75001" +165133,Lightning Charging Cable,2,14.95,02/20/19 13:30,"808 Meadow St, San Francisco, CA 94016" +165134,AA Batteries (4-pack),2,3.84,02/16/19 16:12,"166 Hickory St, Boston, MA 02215" +165135,Lightning Charging Cable,1,14.95,02/25/19 00:20,"117 11th St, Portland, OR 97035" +165136,Google Phone,1,600,02/14/19 03:32,"762 6th St, San Francisco, CA 94016" +165137,AAA Batteries (4-pack),1,2.99,02/11/19 13:03,"523 12th St, San Francisco, CA 94016" +165138,34in Ultrawide Monitor,1,379.99,02/19/19 12:14,"763 North St, Los Angeles, CA 90001" +165139,USB-C Charging Cable,1,11.95,02/05/19 23:07,"947 5th St, San Francisco, CA 94016" +165140,Flatscreen TV,1,300,02/17/19 18:46,"513 1st St, Portland, OR 97035" +165141,LG Washing Machine,1,600.0,02/08/19 16:20,"406 Willow St, Atlanta, GA 30301" +165142,Bose SoundSport Headphones,1,99.99,02/04/19 10:10,"95 Johnson St, Los Angeles, CA 90001" +165143,AAA Batteries (4-pack),1,2.99,02/05/19 17:19,"112 Wilson St, San Francisco, CA 94016" +165144,USB-C Charging Cable,1,11.95,02/09/19 06:37,"223 5th St, Seattle, WA 98101" +165145,USB-C Charging Cable,1,11.95,02/23/19 17:25,"856 13th St, Los Angeles, CA 90001" +165146,Bose SoundSport Headphones,1,99.99,02/10/19 21:56,"475 Sunset St, Atlanta, GA 30301" +165147,AAA Batteries (4-pack),1,2.99,02/07/19 20:52,"382 Spruce St, Atlanta, GA 30301" +165148,AA Batteries (4-pack),2,3.84,02/20/19 18:05,"948 Pine St, Boston, MA 02215" +165149,Bose SoundSport Headphones,1,99.99,02/28/19 11:50,"598 Maple St, Boston, MA 02215" +165150,AA Batteries (4-pack),1,3.84,02/13/19 17:20,"987 11th St, San Francisco, CA 94016" +165151,Lightning Charging Cable,1,14.95,02/10/19 15:30,"123 13th St, New York City, NY 10001" +165152,USB-C Charging Cable,1,11.95,02/26/19 12:54,"381 Center St, Seattle, WA 98101" +165153,Wired Headphones,2,11.99,02/27/19 09:50,"85 Highland St, Los Angeles, CA 90001" +165154,USB-C Charging Cable,1,11.95,02/23/19 20:22,"197 Adams St, New York City, NY 10001" +165155,AAA Batteries (4-pack),1,2.99,02/07/19 09:45,"435 Chestnut St, Austin, TX 73301" +165156,USB-C Charging Cable,1,11.95,02/15/19 15:37,"14 8th St, New York City, NY 10001" +165157,AA Batteries (4-pack),1,3.84,02/24/19 11:30,"54 7th St, Seattle, WA 98101" +165158,Wired Headphones,1,11.99,02/04/19 18:07,"843 Willow St, Atlanta, GA 30301" +165159,Flatscreen TV,1,300,02/18/19 14:53,"659 10th St, Seattle, WA 98101" +165160,iPhone,1,700,02/28/19 18:52,"879 10th St, San Francisco, CA 94016" +165160,Lightning Charging Cable,1,14.95,02/28/19 18:52,"879 10th St, San Francisco, CA 94016" +165161,Wired Headphones,1,11.99,02/13/19 09:06,"954 Jefferson St, Boston, MA 02215" +165162,AA Batteries (4-pack),2,3.84,02/27/19 11:53,"627 Wilson St, Los Angeles, CA 90001" +165163,Wired Headphones,1,11.99,02/24/19 11:06,"196 Dogwood St, Los Angeles, CA 90001" +165164,Apple Airpods Headphones,1,150,02/01/19 09:21,"636 8th St, Portland, ME 04101" +165165,27in 4K Gaming Monitor,1,389.99,02/17/19 18:22,"828 8th St, San Francisco, CA 94016" +165166,AA Batteries (4-pack),1,3.84,02/27/19 17:21,"798 Church St, Atlanta, GA 30301" +165167,Wired Headphones,1,11.99,02/28/19 19:50,"47 6th St, San Francisco, CA 94016" +165168,AAA Batteries (4-pack),1,2.99,02/08/19 16:54,"706 Dogwood St, New York City, NY 10001" +165169,ThinkPad Laptop,1,999.99,02/15/19 07:52,"727 Hickory St, Seattle, WA 98101" +165170,27in FHD Monitor,1,149.99,02/16/19 21:38,"680 Washington St, New York City, NY 10001" +165171,Lightning Charging Cable,1,14.95,02/28/19 16:19,"909 Dogwood St, Seattle, WA 98101" +165172,Wired Headphones,1,11.99,02/01/19 10:02,"322 Highland St, San Francisco, CA 94016" +165173,Bose SoundSport Headphones,1,99.99,02/04/19 23:25,"202 Wilson St, Los Angeles, CA 90001" +165174,Macbook Pro Laptop,1,1700,02/16/19 18:01,"781 Wilson St, Los Angeles, CA 90001" +165175,Apple Airpods Headphones,1,150,02/21/19 16:42,"203 Adams St, Boston, MA 02215" +165176,Wired Headphones,1,11.99,02/15/19 17:03,"221 River St, Dallas, TX 75001" +165177,AAA Batteries (4-pack),1,2.99,02/28/19 18:54,"131 14th St, Seattle, WA 98101" +165178,USB-C Charging Cable,1,11.95,02/19/19 09:49,"294 6th St, San Francisco, CA 94016" +165179,AA Batteries (4-pack),1,3.84,02/15/19 15:30,"89 Cherry St, San Francisco, CA 94016" +165180,Apple Airpods Headphones,1,150,02/11/19 18:56,"273 2nd St, Portland, ME 04101" +165181,Wired Headphones,1,11.99,02/17/19 11:35,"647 Meadow St, New York City, NY 10001" +165182,Lightning Charging Cable,1,14.95,02/20/19 14:03,"335 Cherry St, New York City, NY 10001" +165183,Vareebadd Phone,1,400,02/14/19 16:41,"342 8th St, San Francisco, CA 94016" +165184,Flatscreen TV,1,300,02/23/19 13:52,"193 West St, Atlanta, GA 30301" +165185,Google Phone,1,600,02/04/19 14:59,"836 Dogwood St, Boston, MA 02215" +165186,AAA Batteries (4-pack),1,2.99,02/12/19 11:11,"295 Hill St, San Francisco, CA 94016" +165187,Wired Headphones,1,11.99,02/19/19 15:16,"498 Forest St, San Francisco, CA 94016" +165188,Bose SoundSport Headphones,1,99.99,02/06/19 23:24,"39 8th St, San Francisco, CA 94016" +165189,USB-C Charging Cable,1,11.95,02/13/19 01:59,"737 Madison St, Seattle, WA 98101" +165190,AAA Batteries (4-pack),1,2.99,02/03/19 17:34,"23 1st St, Portland, OR 97035" +165191,Wired Headphones,1,11.99,02/18/19 17:28,"837 Church St, New York City, NY 10001" +165191,Bose SoundSport Headphones,1,99.99,02/18/19 17:28,"837 Church St, New York City, NY 10001" +165192,Wired Headphones,1,11.99,02/17/19 19:56,"228 Lakeview St, San Francisco, CA 94016" +165193,AAA Batteries (4-pack),2,2.99,02/17/19 08:19,"193 Elm St, Portland, OR 97035" +165194,ThinkPad Laptop,1,999.99,02/19/19 17:01,"872 Spruce St, Los Angeles, CA 90001" +165195,Apple Airpods Headphones,1,150,02/14/19 23:49,"703 Park St, New York City, NY 10001" +165196,Macbook Pro Laptop,1,1700,02/17/19 22:06,"847 9th St, New York City, NY 10001" +165197,27in FHD Monitor,1,149.99,02/06/19 18:31,"785 Willow St, New York City, NY 10001" +165198,Wired Headphones,1,11.99,02/11/19 11:13,"543 Hill St, San Francisco, CA 94016" +165199,Apple Airpods Headphones,1,150,02/21/19 18:45,"80 Pine St, San Francisco, CA 94016" +165200,Apple Airpods Headphones,1,150,02/08/19 09:24,"735 Elm St, Portland, OR 97035" +165201,Bose SoundSport Headphones,1,99.99,02/15/19 08:50,"959 Cedar St, San Francisco, CA 94016" +165202,AAA Batteries (4-pack),1,2.99,02/03/19 12:39,"400 Ridge St, Seattle, WA 98101" +165203,27in 4K Gaming Monitor,1,389.99,02/12/19 01:46,"506 13th St, New York City, NY 10001" +165204,AAA Batteries (4-pack),1,2.99,02/01/19 11:43,"361 Wilson St, Seattle, WA 98101" +165204,USB-C Charging Cable,1,11.95,02/01/19 11:43,"361 Wilson St, Seattle, WA 98101" +165205,Flatscreen TV,1,300,02/02/19 19:26,"626 12th St, San Francisco, CA 94016" +165206,USB-C Charging Cable,1,11.95,02/17/19 13:35,"328 Park St, San Francisco, CA 94016" +165207,Vareebadd Phone,1,400,02/22/19 11:59,"888 Hickory St, New York City, NY 10001" +165207,USB-C Charging Cable,1,11.95,02/22/19 11:59,"888 Hickory St, New York City, NY 10001" +165207,AAA Batteries (4-pack),2,2.99,02/22/19 11:59,"888 Hickory St, New York City, NY 10001" +165208,Bose SoundSport Headphones,1,99.99,02/12/19 12:44,"293 South St, Atlanta, GA 30301" +165209,AA Batteries (4-pack),1,3.84,02/09/19 09:44,"203 Johnson St, Los Angeles, CA 90001" +165210,AAA Batteries (4-pack),3,2.99,02/28/19 12:53,"284 13th St, San Francisco, CA 94016" +165211,Bose SoundSport Headphones,1,99.99,02/19/19 13:47,"786 Hill St, New York City, NY 10001" +165212,Apple Airpods Headphones,1,150,02/02/19 22:09,"627 Walnut St, San Francisco, CA 94016" +165213,AAA Batteries (4-pack),1,2.99,02/19/19 23:13,"90 Hill St, Austin, TX 73301" +165214,AAA Batteries (4-pack),1,2.99,02/14/19 19:19,"910 River St, Los Angeles, CA 90001" +165215,27in 4K Gaming Monitor,1,389.99,02/19/19 01:00,"837 Elm St, Los Angeles, CA 90001" +165216,USB-C Charging Cable,1,11.95,02/10/19 12:42,"847 Spruce St, Austin, TX 73301" +165217,AA Batteries (4-pack),1,3.84,02/16/19 07:36,"973 Jefferson St, Los Angeles, CA 90001" +165218,AAA Batteries (4-pack),3,2.99,02/14/19 10:41,"302 Jefferson St, Seattle, WA 98101" +165219,27in 4K Gaming Monitor,1,389.99,02/19/19 06:17,"260 12th St, Boston, MA 02215" +165220,USB-C Charging Cable,1,11.95,02/28/19 19:58,"499 Madison St, New York City, NY 10001" +165221,Wired Headphones,1,11.99,02/03/19 21:54,"4 Hickory St, Atlanta, GA 30301" +165222,Bose SoundSport Headphones,1,99.99,02/25/19 18:01,"943 1st St, Austin, TX 73301" +165223,Google Phone,1,600,02/05/19 17:52,"359 Elm St, Boston, MA 02215" +165224,Apple Airpods Headphones,1,150,02/19/19 13:05,"455 Dogwood St, San Francisco, CA 94016" +165225,AAA Batteries (4-pack),1,2.99,02/26/19 03:42,"707 Maple St, San Francisco, CA 94016" +165226,USB-C Charging Cable,1,11.95,02/05/19 18:42,"859 10th St, New York City, NY 10001" +165226,Lightning Charging Cable,1,14.95,02/05/19 18:42,"859 10th St, New York City, NY 10001" +165227,Flatscreen TV,1,300,02/20/19 14:11,"398 South St, New York City, NY 10001" +165228,Apple Airpods Headphones,1,150,02/22/19 20:13,"792 River St, Boston, MA 02215" +165229,Macbook Pro Laptop,1,1700,02/10/19 12:42,"856 Lincoln St, Seattle, WA 98101" +165230,Lightning Charging Cable,1,14.95,02/22/19 10:34,"469 Washington St, San Francisco, CA 94016" +165231,iPhone,1,700,02/21/19 05:59,"241 Elm St, San Francisco, CA 94016" +165232,Apple Airpods Headphones,1,150,02/28/19 20:58,"397 Lake St, Los Angeles, CA 90001" +165233,Flatscreen TV,1,300,02/18/19 14:32,"786 4th St, Seattle, WA 98101" +165234,Macbook Pro Laptop,1,1700,02/11/19 21:23,"66 Adams St, Boston, MA 02215" +165235,Wired Headphones,1,11.99,02/09/19 14:27,"513 Walnut St, San Francisco, CA 94016" +165236,27in FHD Monitor,1,149.99,02/06/19 20:01,"639 Church St, San Francisco, CA 94016" +165237,AA Batteries (4-pack),1,3.84,02/17/19 08:20,"13 Park St, New York City, NY 10001" +165238,Apple Airpods Headphones,1,150,02/28/19 10:18,"753 River St, Dallas, TX 75001" +165239,Wired Headphones,1,11.99,02/18/19 10:34,"609 Washington St, San Francisco, CA 94016" +165240,USB-C Charging Cable,1,11.95,02/19/19 19:17,"689 7th St, Boston, MA 02215" +165241,Bose SoundSport Headphones,1,99.99,02/24/19 14:20,"695 Dogwood St, Dallas, TX 75001" +165242,Bose SoundSport Headphones,1,99.99,02/13/19 13:09,"631 Jefferson St, San Francisco, CA 94016" +165243,USB-C Charging Cable,1,11.95,02/02/19 11:35,"987 14th St, San Francisco, CA 94016" +165244,Wired Headphones,1,11.99,02/21/19 09:14,"31 North St, New York City, NY 10001" +165245,iPhone,1,700,02/11/19 17:20,"319 Hill St, New York City, NY 10001" +165246,Macbook Pro Laptop,1,1700,02/20/19 19:44,"736 4th St, New York City, NY 10001" +165247,AA Batteries (4-pack),1,3.84,02/11/19 21:22,"156 Willow St, San Francisco, CA 94016" +165248,Apple Airpods Headphones,1,150,02/03/19 10:36,"713 5th St, Los Angeles, CA 90001" +165249,27in FHD Monitor,1,149.99,02/07/19 17:45,"79 Jefferson St, New York City, NY 10001" +165250,AAA Batteries (4-pack),3,2.99,02/26/19 10:51,"993 Washington St, San Francisco, CA 94016" +165251,Apple Airpods Headphones,1,150,02/24/19 22:31,"218 Walnut St, Los Angeles, CA 90001" +165252,USB-C Charging Cable,2,11.95,02/10/19 21:04,"851 11th St, San Francisco, CA 94016" +165253,27in 4K Gaming Monitor,1,389.99,02/04/19 13:49,"375 Chestnut St, Seattle, WA 98101" +165254,AAA Batteries (4-pack),1,2.99,02/26/19 09:38,"955 Chestnut St, Boston, MA 02215" +165255,Macbook Pro Laptop,1,1700,02/19/19 22:41,"197 9th St, New York City, NY 10001" +165256,USB-C Charging Cable,2,11.95,02/06/19 16:23,"84 2nd St, Boston, MA 02215" +165257,Google Phone,1,600,02/18/19 15:03,"281 Willow St, Los Angeles, CA 90001" +165258,Bose SoundSport Headphones,1,99.99,02/16/19 21:50,"738 Dogwood St, Atlanta, GA 30301" +165259,AAA Batteries (4-pack),1,2.99,02/08/19 01:27,"326 Highland St, Atlanta, GA 30301" +165260,Lightning Charging Cable,1,14.95,02/08/19 13:59,"216 West St, San Francisco, CA 94016" +165261,AAA Batteries (4-pack),1,2.99,02/14/19 15:29,"125 Walnut St, Atlanta, GA 30301" +165262,20in Monitor,1,109.99,02/06/19 16:34,"43 Lincoln St, Los Angeles, CA 90001" +165263,Lightning Charging Cable,1,14.95,02/26/19 13:22,"442 Cherry St, New York City, NY 10001" +165264,Bose SoundSport Headphones,1,99.99,02/26/19 14:27,"786 Washington St, Austin, TX 73301" +165265,Google Phone,1,600,02/02/19 12:00,"914 Lincoln St, Boston, MA 02215" +165266,Lightning Charging Cable,1,14.95,02/15/19 20:00,"381 2nd St, Los Angeles, CA 90001" +165267,USB-C Charging Cable,2,11.95,02/11/19 14:16,"233 Sunset St, Boston, MA 02215" +165268,Lightning Charging Cable,1,14.95,02/26/19 14:18,"164 12th St, Seattle, WA 98101" +165269,Wired Headphones,1,11.99,02/23/19 11:12,"607 Chestnut St, Los Angeles, CA 90001" +165270,AAA Batteries (4-pack),1,2.99,02/24/19 06:12,"898 Lake St, Boston, MA 02215" +165271,27in FHD Monitor,1,149.99,02/06/19 22:24,"515 Pine St, Seattle, WA 98101" +165272,Bose SoundSport Headphones,1,99.99,02/04/19 20:31,"251 Meadow St, San Francisco, CA 94016" +165273,Apple Airpods Headphones,1,150,02/15/19 09:26,"383 5th St, Dallas, TX 75001" +165274,AA Batteries (4-pack),2,3.84,03/01/19 02:16,"449 13th St, San Francisco, CA 94016" +165275,Google Phone,1,600,02/25/19 23:21,"597 Lincoln St, Atlanta, GA 30301" +165275,USB-C Charging Cable,1,11.95,02/25/19 23:21,"597 Lincoln St, Atlanta, GA 30301" +165276,ThinkPad Laptop,1,999.99,02/14/19 17:47,"168 Forest St, Atlanta, GA 30301" +165276,Apple Airpods Headphones,1,150,02/14/19 17:47,"168 Forest St, Atlanta, GA 30301" +165277,Lightning Charging Cable,1,14.95,02/17/19 18:14,"664 9th St, New York City, NY 10001" +165278,USB-C Charging Cable,1,11.95,02/14/19 10:35,"377 8th St, New York City, NY 10001" +165279,Lightning Charging Cable,1,14.95,02/05/19 16:39,"258 7th St, Los Angeles, CA 90001" +165280,USB-C Charging Cable,1,11.95,02/26/19 12:43,"984 Highland St, New York City, NY 10001" +165281,USB-C Charging Cable,1,11.95,02/24/19 04:18,"900 Jefferson St, Austin, TX 73301" +165282,AA Batteries (4-pack),2,3.84,02/13/19 10:21,"669 6th St, Austin, TX 73301" +165283,Apple Airpods Headphones,1,150,02/15/19 16:52,"358 Willow St, New York City, NY 10001" +165284,Flatscreen TV,1,300,02/12/19 20:17,"686 12th St, San Francisco, CA 94016" +165285,20in Monitor,1,109.99,02/28/19 23:56,"742 Hickory St, Atlanta, GA 30301" +165286,USB-C Charging Cable,2,11.95,02/23/19 11:08,"36 7th St, Dallas, TX 75001" +165287,ThinkPad Laptop,1,999.99,02/06/19 12:21,"215 13th St, San Francisco, CA 94016" +165288,Apple Airpods Headphones,1,150,02/06/19 10:51,"285 Park St, Atlanta, GA 30301" +165289,34in Ultrawide Monitor,1,379.99,02/13/19 01:20,"906 Maple St, Los Angeles, CA 90001" +165290,Google Phone,1,600,02/01/19 13:30,"573 13th St, San Francisco, CA 94016" +165290,USB-C Charging Cable,1,11.95,02/01/19 13:30,"573 13th St, San Francisco, CA 94016" +165291,USB-C Charging Cable,2,11.95,02/23/19 19:58,"955 1st St, New York City, NY 10001" +165292,Apple Airpods Headphones,1,150,02/17/19 18:50,"970 Elm St, Seattle, WA 98101" +165293,USB-C Charging Cable,1,11.95,02/10/19 16:36,"26 5th St, Los Angeles, CA 90001" +165294,Apple Airpods Headphones,1,150,02/03/19 14:21,"49 South St, Atlanta, GA 30301" +165295,USB-C Charging Cable,1,11.95,02/27/19 09:39,"839 Ridge St, Los Angeles, CA 90001" +165296,ThinkPad Laptop,1,999.99,02/28/19 22:46,"562 Madison St, New York City, NY 10001" +165297,Lightning Charging Cable,1,14.95,02/03/19 13:04,"357 Jackson St, San Francisco, CA 94016" +165298,Macbook Pro Laptop,1,1700,02/09/19 07:12,"667 Jackson St, Portland, OR 97035" +165299,iPhone,1,700,02/16/19 11:31,"790 11th St, Seattle, WA 98101" +165299,Lightning Charging Cable,1,14.95,02/16/19 11:31,"790 11th St, Seattle, WA 98101" +165300,Wired Headphones,1,11.99,02/21/19 22:05,"828 Dogwood St, San Francisco, CA 94016" +165301,iPhone,1,700,02/06/19 16:46,"880 Walnut St, Los Angeles, CA 90001" +165302,AAA Batteries (4-pack),2,2.99,02/25/19 22:27,"768 Church St, New York City, NY 10001" +165303,Wired Headphones,1,11.99,02/08/19 21:32,"347 Main St, New York City, NY 10001" +165304,AAA Batteries (4-pack),1,2.99,02/22/19 18:34,"69 10th St, Boston, MA 02215" +165305,Bose SoundSport Headphones,1,99.99,02/19/19 16:38,"111 Forest St, San Francisco, CA 94016" +165306,Wired Headphones,1,11.99,02/21/19 22:53,"412 River St, New York City, NY 10001" +165306,Apple Airpods Headphones,1,150,02/21/19 22:53,"412 River St, New York City, NY 10001" +165307,AAA Batteries (4-pack),2,2.99,02/08/19 11:24,"182 Jackson St, Boston, MA 02215" +165308,Vareebadd Phone,1,400,02/17/19 11:45,"736 Washington St, Los Angeles, CA 90001" +165309,USB-C Charging Cable,1,11.95,02/19/19 00:03,"89 River St, Portland, ME 04101" +165310,Lightning Charging Cable,1,14.95,02/11/19 17:20,"501 7th St, New York City, NY 10001" +165311,USB-C Charging Cable,1,11.95,02/21/19 09:02,"791 Ridge St, Portland, OR 97035" +165312,Wired Headphones,1,11.99,02/24/19 16:26,"640 Lincoln St, San Francisco, CA 94016" +165313,USB-C Charging Cable,1,11.95,02/24/19 21:16,"835 Meadow St, Portland, OR 97035" +165314,AAA Batteries (4-pack),1,2.99,02/11/19 21:23,"890 Cedar St, Seattle, WA 98101" +165315,AAA Batteries (4-pack),1,2.99,02/16/19 12:08,"515 Hickory St, New York City, NY 10001" +165316,34in Ultrawide Monitor,1,379.99,02/20/19 14:49,"417 Pine St, New York City, NY 10001" +165317,USB-C Charging Cable,1,11.95,02/21/19 12:35,"463 Pine St, Boston, MA 02215" +165318,Apple Airpods Headphones,1,150,02/07/19 21:49,"135 Washington St, Los Angeles, CA 90001" +165319,AA Batteries (4-pack),1,3.84,02/07/19 12:43,"878 Church St, Austin, TX 73301" +165320,AA Batteries (4-pack),1,3.84,02/24/19 11:22,"539 11th St, Dallas, TX 75001" +165321,USB-C Charging Cable,1,11.95,02/23/19 13:18,"706 Hickory St, New York City, NY 10001" +165322,27in 4K Gaming Monitor,1,389.99,02/04/19 16:48,"666 North St, San Francisco, CA 94016" +165323,Bose SoundSport Headphones,1,99.99,02/11/19 11:10,"88 Cherry St, Los Angeles, CA 90001" +165324,AAA Batteries (4-pack),2,2.99,02/06/19 01:35,"18 Wilson St, Los Angeles, CA 90001" +165325,AAA Batteries (4-pack),1,2.99,03/01/19 00:40,"426 Center St, Los Angeles, CA 90001" +165326,USB-C Charging Cable,1,11.95,02/24/19 11:36,"346 7th St, San Francisco, CA 94016" +165327,Wired Headphones,1,11.99,02/21/19 20:31,"613 Elm St, Los Angeles, CA 90001" +165328,AA Batteries (4-pack),1,3.84,02/24/19 21:41,"366 4th St, Seattle, WA 98101" +165329,Apple Airpods Headphones,1,150,02/27/19 12:35,"524 Pine St, Atlanta, GA 30301" +165330,AA Batteries (4-pack),1,3.84,02/23/19 13:01,"646 Pine St, San Francisco, CA 94016" +165331,AAA Batteries (4-pack),1,2.99,02/05/19 18:47,"520 Madison St, Boston, MA 02215" +165332,AA Batteries (4-pack),2,3.84,02/18/19 13:58,"249 12th St, Seattle, WA 98101" +165333,20in Monitor,1,109.99,02/15/19 10:58,"882 Spruce St, San Francisco, CA 94016" +165334,Apple Airpods Headphones,1,150,02/04/19 19:56,"411 Jackson St, Dallas, TX 75001" +165335,Google Phone,1,600,02/21/19 14:38,"250 Madison St, Los Angeles, CA 90001" +165336,Wired Headphones,1,11.99,02/05/19 19:52,"35 Elm St, San Francisco, CA 94016" +165337,Lightning Charging Cable,1,14.95,02/15/19 16:10,"832 Jackson St, Atlanta, GA 30301" +165338,Apple Airpods Headphones,1,150,02/24/19 11:15,"196 Hill St, San Francisco, CA 94016" +165339,Wired Headphones,1,11.99,02/17/19 22:42,"182 North St, Austin, TX 73301" +165340,Lightning Charging Cable,1,14.95,02/13/19 09:25,"669 Dogwood St, Austin, TX 73301" +165341,AAA Batteries (4-pack),2,2.99,02/22/19 19:37,"928 5th St, Dallas, TX 75001" +165342,Wired Headphones,1,11.99,02/11/19 09:47,"109 Madison St, San Francisco, CA 94016" +165343,AAA Batteries (4-pack),2,2.99,02/22/19 21:44,"894 Hickory St, Boston, MA 02215" +165344,Wired Headphones,1,11.99,02/01/19 13:06,"601 13th St, Austin, TX 73301" +165345,ThinkPad Laptop,1,999.99,02/01/19 21:44,"582 Hill St, Boston, MA 02215" +165346,AAA Batteries (4-pack),2,2.99,02/14/19 22:25,"555 Wilson St, New York City, NY 10001" +165347,AAA Batteries (4-pack),1,2.99,02/12/19 12:46,"80 Jackson St, Portland, OR 97035" +165348,AA Batteries (4-pack),2,3.84,02/22/19 20:35,"955 Jefferson St, San Francisco, CA 94016" +165349,USB-C Charging Cable,2,11.95,02/12/19 10:15,"313 Church St, Boston, MA 02215" +165350,Apple Airpods Headphones,1,150,02/28/19 00:40,"962 Park St, New York City, NY 10001" +165351,Apple Airpods Headphones,1,150,02/14/19 20:25,"524 North St, Los Angeles, CA 90001" +165352,Macbook Pro Laptop,1,1700,02/11/19 14:00,"9 Cedar St, Atlanta, GA 30301" +165353,27in 4K Gaming Monitor,1,389.99,02/16/19 15:49,"221 River St, Seattle, WA 98101" +165354,AA Batteries (4-pack),2,3.84,02/22/19 18:06,"603 12th St, San Francisco, CA 94016" +165355,AAA Batteries (4-pack),1,2.99,02/16/19 11:05,"154 Walnut St, Los Angeles, CA 90001" +165356,AA Batteries (4-pack),1,3.84,02/09/19 15:15,"827 Pine St, Boston, MA 02215" +165357,Google Phone,1,600,02/16/19 01:07,"364 Washington St, Los Angeles, CA 90001" +165358,iPhone,1,700,02/04/19 23:42,"460 Forest St, Boston, MA 02215" +165358,Lightning Charging Cable,1,14.95,02/04/19 23:42,"460 Forest St, Boston, MA 02215" +165359,AAA Batteries (4-pack),1,2.99,02/08/19 13:26,"854 Jefferson St, New York City, NY 10001" +165360,Wired Headphones,1,11.99,02/06/19 06:29,"268 11th St, Atlanta, GA 30301" +165361,Lightning Charging Cable,1,14.95,02/16/19 12:57,"716 Center St, San Francisco, CA 94016" +165362,AA Batteries (4-pack),1,3.84,02/01/19 23:56,"661 Ridge St, San Francisco, CA 94016" +165363,AA Batteries (4-pack),1,3.84,02/12/19 15:30,"212 Jackson St, San Francisco, CA 94016" +165364,Wired Headphones,1,11.99,02/02/19 21:50,"530 2nd St, New York City, NY 10001" +165364,AA Batteries (4-pack),1,3.84,02/02/19 21:50,"530 2nd St, New York City, NY 10001" +165365,AAA Batteries (4-pack),1,2.99,02/22/19 11:35,"501 Park St, San Francisco, CA 94016" +165366,USB-C Charging Cable,1,11.95,02/26/19 11:17,"558 2nd St, Los Angeles, CA 90001" +165367,Macbook Pro Laptop,1,1700,02/04/19 14:59,"610 Madison St, Los Angeles, CA 90001" +165368,AA Batteries (4-pack),2,3.84,02/20/19 13:57,"951 Meadow St, Boston, MA 02215" +165369,Lightning Charging Cable,1,14.95,02/20/19 13:49,"92 Forest St, New York City, NY 10001" +165370,Apple Airpods Headphones,1,150,02/21/19 17:44,"449 Spruce St, Seattle, WA 98101" +165371,Apple Airpods Headphones,1,150,02/11/19 17:39,"685 Lakeview St, Los Angeles, CA 90001" +165372,AAA Batteries (4-pack),2,2.99,02/08/19 12:25,"871 North St, New York City, NY 10001" +165373,Wired Headphones,1,11.99,02/18/19 17:33,"325 Chestnut St, Los Angeles, CA 90001" +165374,Lightning Charging Cable,1,14.95,02/08/19 11:42,"338 Hill St, New York City, NY 10001" +165375,Wired Headphones,1,11.99,02/21/19 13:31,"380 Hill St, Austin, TX 73301" +165376,Wired Headphones,1,11.99,02/26/19 11:44,"341 Main St, Atlanta, GA 30301" +165377,USB-C Charging Cable,1,11.95,02/25/19 22:28,"411 12th St, Atlanta, GA 30301" +165378,LG Washing Machine,1,600.0,02/07/19 15:05,"791 8th St, Atlanta, GA 30301" +165379,Wired Headphones,1,11.99,02/27/19 14:39,"184 Spruce St, New York City, NY 10001" +165380,Lightning Charging Cable,2,14.95,02/21/19 14:55,"512 11th St, New York City, NY 10001" +165381,AA Batteries (4-pack),1,3.84,02/12/19 21:58,"707 14th St, New York City, NY 10001" +165382,Flatscreen TV,1,300,02/27/19 07:50,"756 11th St, Dallas, TX 75001" +165383,USB-C Charging Cable,1,11.95,02/04/19 22:03,"482 Dogwood St, Boston, MA 02215" +165384,Bose SoundSport Headphones,1,99.99,02/10/19 17:15,"670 Church St, Portland, OR 97035" +165385,USB-C Charging Cable,1,11.95,02/20/19 18:13,"159 Maple St, Los Angeles, CA 90001" +165386,34in Ultrawide Monitor,1,379.99,02/17/19 16:41,"704 Spruce St, Portland, OR 97035" +165387,Apple Airpods Headphones,1,150,02/22/19 15:22,"908 13th St, Los Angeles, CA 90001" +165388,AA Batteries (4-pack),1,3.84,02/09/19 23:10,"553 Maple St, Austin, TX 73301" +165389,Google Phone,1,600,02/23/19 17:14,"405 Elm St, Los Angeles, CA 90001" +165390,Lightning Charging Cable,1,14.95,02/01/19 13:23,"161 Lincoln St, Portland, OR 97035" +165391,AAA Batteries (4-pack),1,2.99,02/01/19 04:31,"644 Elm St, New York City, NY 10001" +165392,AA Batteries (4-pack),2,3.84,02/06/19 15:59,"119 North St, New York City, NY 10001" +165393,Wired Headphones,1,11.99,02/18/19 03:31,"727 Adams St, Atlanta, GA 30301" +165394,Wired Headphones,1,11.99,02/19/19 17:15,"621 Highland St, Austin, TX 73301" +165395,Apple Airpods Headphones,1,150,02/25/19 21:00,"804 11th St, Los Angeles, CA 90001" +165396,Apple Airpods Headphones,1,150,02/23/19 23:33,"13 Sunset St, Los Angeles, CA 90001" +165397,LG Washing Machine,1,600.0,02/17/19 13:04,"966 Pine St, Los Angeles, CA 90001" +165398,Wired Headphones,1,11.99,02/10/19 21:43,"935 Pine St, Seattle, WA 98101" +165398,AAA Batteries (4-pack),3,2.99,02/10/19 21:43,"935 Pine St, Seattle, WA 98101" +165399,Lightning Charging Cable,1,14.95,02/24/19 18:10,"512 11th St, New York City, NY 10001" +165400,20in Monitor,1,109.99,02/25/19 14:04,"538 Cedar St, San Francisco, CA 94016" +165401,Bose SoundSport Headphones,1,99.99,02/03/19 00:14,"648 2nd St, Austin, TX 73301" +165402,AAA Batteries (4-pack),2,2.99,02/08/19 14:00,"199 Church St, Dallas, TX 75001" +165403,Lightning Charging Cable,1,14.95,02/07/19 12:46,"342 8th St, Los Angeles, CA 90001" +165404,AAA Batteries (4-pack),2,2.99,02/02/19 14:29,"526 River St, New York City, NY 10001" +165405,27in 4K Gaming Monitor,1,389.99,02/03/19 00:42,"98 Maple St, New York City, NY 10001" +165406,AAA Batteries (4-pack),1,2.99,02/11/19 11:32,"204 14th St, Boston, MA 02215" +165406,27in 4K Gaming Monitor,1,389.99,02/11/19 11:32,"204 14th St, Boston, MA 02215" +165407,AA Batteries (4-pack),1,3.84,02/16/19 00:53,"455 Dogwood St, New York City, NY 10001" +165408,AA Batteries (4-pack),1,3.84,02/10/19 21:02,"598 12th St, New York City, NY 10001" +165409,Bose SoundSport Headphones,1,99.99,02/22/19 12:04,"589 South St, Seattle, WA 98101" +165410,AAA Batteries (4-pack),2,2.99,02/25/19 22:48,"336 Elm St, San Francisco, CA 94016" +165411,Bose SoundSport Headphones,2,99.99,02/07/19 16:23,"220 Forest St, San Francisco, CA 94016" +165412,USB-C Charging Cable,1,11.95,02/09/19 14:25,"675 Hill St, Dallas, TX 75001" +165413,Wired Headphones,2,11.99,02/25/19 09:46,"358 Jefferson St, Boston, MA 02215" +165414,27in 4K Gaming Monitor,1,389.99,02/19/19 19:14,"807 Park St, Atlanta, GA 30301" +165415,LG Dryer,1,600.0,02/28/19 21:12,"323 6th St, Los Angeles, CA 90001" +165416,34in Ultrawide Monitor,1,379.99,02/18/19 14:10,"980 8th St, San Francisco, CA 94016" +165417,USB-C Charging Cable,1,11.95,02/18/19 16:36,"16 Washington St, Austin, TX 73301" +165418,Lightning Charging Cable,1,14.95,02/21/19 01:52,"232 Dogwood St, San Francisco, CA 94016" +165418,AAA Batteries (4-pack),2,2.99,02/21/19 01:52,"232 Dogwood St, San Francisco, CA 94016" +165419,USB-C Charging Cable,1,11.95,02/23/19 20:02,"896 Adams St, Austin, TX 73301" +165420,AA Batteries (4-pack),1,3.84,02/16/19 10:13,"27 7th St, Seattle, WA 98101" +165421,AAA Batteries (4-pack),3,2.99,02/16/19 05:20,"385 Forest St, Los Angeles, CA 90001" +165422,AAA Batteries (4-pack),1,2.99,02/08/19 22:11,"710 Lakeview St, Seattle, WA 98101" +165423,AAA Batteries (4-pack),4,2.99,02/06/19 08:31,"519 8th St, San Francisco, CA 94016" +165424,USB-C Charging Cable,1,11.95,02/28/19 13:44,"813 9th St, Austin, TX 73301" +165425,Apple Airpods Headphones,1,150,02/05/19 15:20,"372 6th St, San Francisco, CA 94016" +165426,Macbook Pro Laptop,1,1700,02/06/19 22:59,"296 9th St, Atlanta, GA 30301" +165427,AA Batteries (4-pack),1,3.84,02/25/19 20:18,"413 Spruce St, San Francisco, CA 94016" +165428,Lightning Charging Cable,1,14.95,02/12/19 14:08,"356 13th St, Portland, OR 97035" +165429,27in FHD Monitor,1,149.99,02/16/19 14:01,"910 Lakeview St, New York City, NY 10001" +165430,Bose SoundSport Headphones,1,99.99,02/24/19 11:33,"804 Adams St, New York City, NY 10001" +165431,AA Batteries (4-pack),1,3.84,02/19/19 10:47,"43 Forest St, Seattle, WA 98101" +165432,27in FHD Monitor,1,149.99,02/25/19 12:03,"801 Cedar St, Los Angeles, CA 90001" +165433,Flatscreen TV,1,300,02/24/19 01:28,"879 Jackson St, Boston, MA 02215" +165434,20in Monitor,1,109.99,02/21/19 09:15,"593 Pine St, Seattle, WA 98101" +165435,AAA Batteries (4-pack),1,2.99,02/17/19 06:25,"511 Lincoln St, Los Angeles, CA 90001" +165436,Lightning Charging Cable,1,14.95,02/20/19 22:16,"733 South St, Boston, MA 02215" +165437,27in FHD Monitor,1,149.99,02/18/19 08:25,"484 Chestnut St, Los Angeles, CA 90001" +165438,ThinkPad Laptop,1,999.99,02/20/19 14:06,"490 Sunset St, Los Angeles, CA 90001" +165439,Bose SoundSport Headphones,1,99.99,02/16/19 20:14,"782 11th St, Los Angeles, CA 90001" +165440,AAA Batteries (4-pack),1,2.99,02/12/19 11:18,"989 5th St, Seattle, WA 98101" +165441,Wired Headphones,1,11.99,02/02/19 00:47,"938 Dogwood St, Atlanta, GA 30301" +165442,Apple Airpods Headphones,1,150,02/22/19 22:22,"761 Main St, New York City, NY 10001" +165443,USB-C Charging Cable,1,11.95,02/09/19 14:07,"408 Adams St, New York City, NY 10001" +165444,Macbook Pro Laptop,1,1700,02/23/19 01:35,"606 Wilson St, San Francisco, CA 94016" +165445,USB-C Charging Cable,1,11.95,02/26/19 11:32,"935 Hill St, New York City, NY 10001" +165446,Lightning Charging Cable,1,14.95,02/21/19 10:05,"844 Lakeview St, Seattle, WA 98101" +165447,iPhone,1,700,02/03/19 13:36,"732 13th St, Los Angeles, CA 90001" +165448,Wired Headphones,1,11.99,02/13/19 13:27,"658 Pine St, Los Angeles, CA 90001" +165449,Apple Airpods Headphones,1,150,02/25/19 17:33,"155 Spruce St, San Francisco, CA 94016" +165450,27in 4K Gaming Monitor,1,389.99,02/10/19 10:10,"140 Spruce St, Los Angeles, CA 90001" +165451,AA Batteries (4-pack),1,3.84,02/02/19 22:49,"474 Jefferson St, New York City, NY 10001" +165452,Lightning Charging Cable,1,14.95,02/27/19 19:42,"612 River St, Los Angeles, CA 90001" +165453,Flatscreen TV,1,300,02/12/19 23:11,"305 Jefferson St, Austin, TX 73301" +165454,ThinkPad Laptop,1,999.99,02/11/19 13:35,"41 Hill St, San Francisco, CA 94016" +165455,Lightning Charging Cable,1,14.95,02/12/19 09:24,"695 Main St, Seattle, WA 98101" +165456,Bose SoundSport Headphones,1,99.99,02/01/19 17:14,"926 Adams St, Portland, ME 04101" +165457,Wired Headphones,1,11.99,02/05/19 14:42,"22 Lakeview St, New York City, NY 10001" +165458,Flatscreen TV,1,300,02/25/19 14:43,"781 North St, San Francisco, CA 94016" +165459,AA Batteries (4-pack),2,3.84,02/22/19 19:47,"874 Center St, Portland, OR 97035" +165460,Wired Headphones,1,11.99,02/17/19 11:14,"758 Washington St, New York City, NY 10001" +165461,27in 4K Gaming Monitor,1,389.99,02/15/19 22:58,"880 10th St, San Francisco, CA 94016" +165462,AA Batteries (4-pack),1,3.84,02/26/19 23:04,"842 Cedar St, Portland, OR 97035" +165463,AA Batteries (4-pack),1,3.84,02/08/19 16:23,"977 7th St, Boston, MA 02215" +165464,27in 4K Gaming Monitor,1,389.99,02/25/19 09:12,"949 6th St, Portland, OR 97035" +165465,ThinkPad Laptop,1,999.99,02/10/19 08:28,"871 Johnson St, Los Angeles, CA 90001" +165466,Google Phone,1,600,02/13/19 23:41,"449 North St, Dallas, TX 75001" +165466,USB-C Charging Cable,1,11.95,02/13/19 23:41,"449 North St, Dallas, TX 75001" +165466,Wired Headphones,1,11.99,02/13/19 23:41,"449 North St, Dallas, TX 75001" +165467,USB-C Charging Cable,1,11.95,02/07/19 12:23,"785 Park St, San Francisco, CA 94016" +165468,27in FHD Monitor,1,149.99,02/12/19 20:09,"965 11th St, Boston, MA 02215" +165469,Apple Airpods Headphones,1,150,02/20/19 22:09,"525 Center St, San Francisco, CA 94016" +165470,Apple Airpods Headphones,1,150,02/19/19 21:20,"257 Lake St, Portland, OR 97035" +165471,AAA Batteries (4-pack),2,2.99,02/28/19 08:24,"854 Lincoln St, Seattle, WA 98101" +165472,ThinkPad Laptop,1,999.99,02/15/19 21:25,"233 Hickory St, San Francisco, CA 94016" +165473,AAA Batteries (4-pack),1,2.99,02/11/19 14:57,"332 Lake St, Los Angeles, CA 90001" +165474,34in Ultrawide Monitor,1,379.99,02/07/19 12:02,"238 14th St, Boston, MA 02215" +165475,Macbook Pro Laptop,1,1700,02/04/19 13:53,"989 14th St, Austin, TX 73301" +165476,Apple Airpods Headphones,1,150,02/17/19 17:43,"47 Cherry St, Los Angeles, CA 90001" +165477,27in 4K Gaming Monitor,1,389.99,02/07/19 12:43,"119 2nd St, Seattle, WA 98101" +165478,USB-C Charging Cable,1,11.95,02/26/19 21:14,"773 4th St, Atlanta, GA 30301" +165479,Lightning Charging Cable,1,14.95,02/04/19 21:02,"861 West St, Atlanta, GA 30301" +165480,27in 4K Gaming Monitor,1,389.99,02/01/19 21:35,"988 Spruce St, Los Angeles, CA 90001" +165481,ThinkPad Laptop,1,999.99,02/16/19 21:56,"540 Jefferson St, San Francisco, CA 94016" +165482,Lightning Charging Cable,1,14.95,02/11/19 09:54,"750 Lake St, Austin, TX 73301" +165483,Flatscreen TV,1,300,02/12/19 12:33,"36 South St, Los Angeles, CA 90001" +165484,Macbook Pro Laptop,1,1700,02/26/19 16:18,"471 Chestnut St, Los Angeles, CA 90001" +165485,AAA Batteries (4-pack),1,2.99,02/04/19 15:32,"133 Hill St, Seattle, WA 98101" +165486,Lightning Charging Cable,1,14.95,02/19/19 11:22,"379 Lakeview St, Los Angeles, CA 90001" +165487,Apple Airpods Headphones,1,150,02/07/19 08:42,"533 Maple St, Los Angeles, CA 90001" +165488,AA Batteries (4-pack),1,3.84,02/14/19 16:51,"597 Cedar St, San Francisco, CA 94016" +165489,AAA Batteries (4-pack),1,2.99,02/20/19 13:17,"667 Dogwood St, Atlanta, GA 30301" +165490,Macbook Pro Laptop,1,1700,02/11/19 21:01,"349 Spruce St, New York City, NY 10001" +165491,Lightning Charging Cable,1,14.95,02/23/19 11:08,"351 Meadow St, San Francisco, CA 94016" +165492,Bose SoundSport Headphones,1,99.99,02/24/19 03:43,"899 Chestnut St, San Francisco, CA 94016" +165493,Lightning Charging Cable,2,14.95,02/15/19 23:15,"615 14th St, Los Angeles, CA 90001" +165494,34in Ultrawide Monitor,1,379.99,02/23/19 23:51,"70 13th St, Portland, OR 97035" +165495,AA Batteries (4-pack),1,3.84,02/01/19 19:01,"720 Dogwood St, Seattle, WA 98101" +165496,Macbook Pro Laptop,1,1700,02/23/19 10:50,"61 Adams St, San Francisco, CA 94016" +165497,Bose SoundSport Headphones,1,99.99,02/09/19 19:55,"906 Sunset St, Seattle, WA 98101" +165498,AA Batteries (4-pack),2,3.84,02/08/19 12:09,"411 Church St, San Francisco, CA 94016" +165499,Apple Airpods Headphones,1,150,02/26/19 22:12,"493 8th St, Los Angeles, CA 90001" +165500,Macbook Pro Laptop,1,1700,02/13/19 20:51,"278 Sunset St, Seattle, WA 98101" +165501,ThinkPad Laptop,1,999.99,02/15/19 11:40,"357 Cherry St, San Francisco, CA 94016" +165502,27in FHD Monitor,1,149.99,02/01/19 22:45,"515 River St, Seattle, WA 98101" +165503,Bose SoundSport Headphones,1,99.99,02/11/19 10:23,"981 1st St, New York City, NY 10001" +165504,34in Ultrawide Monitor,1,379.99,02/27/19 16:09,"36 8th St, New York City, NY 10001" +165505,Wired Headphones,1,11.99,02/02/19 20:49,"414 Chestnut St, Boston, MA 02215" +165506,27in FHD Monitor,1,149.99,02/17/19 13:50,"480 13th St, Dallas, TX 75001" +165507,Macbook Pro Laptop,1,1700,02/17/19 21:11,"504 Willow St, Portland, OR 97035" +165508,AA Batteries (4-pack),1,3.84,02/21/19 14:44,"365 Cherry St, New York City, NY 10001" +165509,AAA Batteries (4-pack),1,2.99,02/04/19 16:34,"15 Lincoln St, Los Angeles, CA 90001" +165510,AAA Batteries (4-pack),1,2.99,02/13/19 13:06,"531 Jackson St, Portland, OR 97035" +165511,Wired Headphones,1,11.99,02/09/19 18:29,"841 9th St, New York City, NY 10001" +165512,USB-C Charging Cable,1,11.95,02/20/19 19:42,"445 West St, Portland, OR 97035" +165513,AAA Batteries (4-pack),2,2.99,02/08/19 08:24,"18 14th St, Boston, MA 02215" +165514,27in 4K Gaming Monitor,1,389.99,02/08/19 00:38,"511 Washington St, Portland, ME 04101" +165515,AA Batteries (4-pack),1,3.84,02/02/19 18:37,"902 Cedar St, San Francisco, CA 94016" +165516,iPhone,1,700,02/25/19 11:27,"77 12th St, San Francisco, CA 94016" +165517,Lightning Charging Cable,1,14.95,02/11/19 15:04,"551 Forest St, Los Angeles, CA 90001" +165518,AAA Batteries (4-pack),1,2.99,02/10/19 12:55,"424 1st St, San Francisco, CA 94016" +165519,Google Phone,1,600,02/17/19 16:29,"192 Washington St, Los Angeles, CA 90001" +165520,USB-C Charging Cable,1,11.95,02/04/19 20:24,"545 Sunset St, Portland, OR 97035" +165521,AA Batteries (4-pack),2,3.84,02/28/19 18:53,"130 West St, Boston, MA 02215" +165522,AAA Batteries (4-pack),1,2.99,02/19/19 18:51,"93 2nd St, Seattle, WA 98101" +165523,AAA Batteries (4-pack),1,2.99,02/19/19 19:23,"308 Center St, Atlanta, GA 30301" +165524,Lightning Charging Cable,1,14.95,02/14/19 21:22,"784 Jackson St, Atlanta, GA 30301" +165525,AAA Batteries (4-pack),2,2.99,02/07/19 17:09,"200 Lakeview St, New York City, NY 10001" +165526,AA Batteries (4-pack),1,3.84,02/16/19 16:34,"438 Forest St, New York City, NY 10001" +165527,AAA Batteries (4-pack),1,2.99,02/07/19 20:18,"669 Park St, Boston, MA 02215" +165528,Lightning Charging Cable,1,14.95,02/18/19 17:31,"124 Center St, Seattle, WA 98101" +165529,Wired Headphones,1,11.99,02/02/19 10:33,"7 6th St, Los Angeles, CA 90001" +165530,USB-C Charging Cable,2,11.95,02/13/19 00:52,"496 Pine St, Dallas, TX 75001" +165531,Bose SoundSport Headphones,1,99.99,02/26/19 09:38,"634 Cedar St, Los Angeles, CA 90001" +165532,Google Phone,1,600,02/05/19 21:07,"491 Pine St, Los Angeles, CA 90001" +165533,Lightning Charging Cable,1,14.95,02/20/19 12:38,"482 Wilson St, San Francisco, CA 94016" +,,,,, +165534,Macbook Pro Laptop,1,1700,02/08/19 18:05,"817 Washington St, Los Angeles, CA 90001" +165535,AAA Batteries (4-pack),1,2.99,02/19/19 18:32,"958 12th St, Dallas, TX 75001" +165536,Wired Headphones,1,11.99,02/09/19 13:09,"532 7th St, San Francisco, CA 94016" +165537,Bose SoundSport Headphones,1,99.99,02/23/19 22:21,"981 Main St, Boston, MA 02215" +165538,27in FHD Monitor,1,149.99,02/02/19 04:00,"62 Church St, New York City, NY 10001" +165539,27in FHD Monitor,1,149.99,02/12/19 10:53,"313 Main St, Boston, MA 02215" +165540,AA Batteries (4-pack),2,3.84,02/28/19 03:55,"489 Pine St, San Francisco, CA 94016" +165541,Apple Airpods Headphones,1,150,02/19/19 15:38,"410 Willow St, San Francisco, CA 94016" +165542,Wired Headphones,2,11.99,02/09/19 22:26,"503 7th St, Boston, MA 02215" +165543,iPhone,1,700,02/02/19 12:50,"926 Willow St, Los Angeles, CA 90001" +165543,27in 4K Gaming Monitor,1,389.99,02/02/19 12:50,"926 Willow St, Los Angeles, CA 90001" +165544,Wired Headphones,3,11.99,02/13/19 09:02,"609 Forest St, Boston, MA 02215" +165545,Lightning Charging Cable,1,14.95,02/27/19 09:52,"886 Highland St, San Francisco, CA 94016" +165546,27in 4K Gaming Monitor,1,389.99,02/13/19 20:23,"725 Jefferson St, Boston, MA 02215" +165547,Wired Headphones,1,11.99,02/08/19 20:40,"884 4th St, San Francisco, CA 94016" +165548,Wired Headphones,2,11.99,02/20/19 19:25,"430 Lakeview St, Seattle, WA 98101" +165549,AA Batteries (4-pack),1,3.84,02/06/19 20:48,"598 Highland St, San Francisco, CA 94016" +165550,iPhone,1,700,02/24/19 22:40,"490 Spruce St, Seattle, WA 98101" +165551,Bose SoundSport Headphones,1,99.99,02/06/19 10:30,"465 Hill St, New York City, NY 10001" +165552,USB-C Charging Cable,1,11.95,02/01/19 21:45,"557 9th St, Boston, MA 02215" +165553,Lightning Charging Cable,1,14.95,02/11/19 16:44,"17 Jefferson St, Los Angeles, CA 90001" +165554,ThinkPad Laptop,1,999.99,02/21/19 02:42,"863 8th St, New York City, NY 10001" +165555,Wired Headphones,1,11.99,02/06/19 12:24,"307 Washington St, Atlanta, GA 30301" +165556,AAA Batteries (4-pack),1,2.99,02/16/19 18:03,"993 9th St, Seattle, WA 98101" +165557,Lightning Charging Cable,1,14.95,02/28/19 12:03,"895 Willow St, San Francisco, CA 94016" +165558,Lightning Charging Cable,1,14.95,02/22/19 13:28,"11 Walnut St, Atlanta, GA 30301" +165559,34in Ultrawide Monitor,1,379.99,02/02/19 11:18,"473 Meadow St, San Francisco, CA 94016" +165560,Google Phone,1,600,02/15/19 21:06,"812 Maple St, New York City, NY 10001" +165560,USB-C Charging Cable,1,11.95,02/15/19 21:06,"812 Maple St, New York City, NY 10001" +165561,Lightning Charging Cable,1,14.95,02/26/19 21:55,"589 Park St, New York City, NY 10001" +165562,AA Batteries (4-pack),1,3.84,02/21/19 11:17,"456 Elm St, Portland, ME 04101" +165563,Apple Airpods Headphones,1,150,02/20/19 20:28,"659 Maple St, Los Angeles, CA 90001" +165564,AA Batteries (4-pack),1,3.84,02/15/19 08:07,"67 Center St, San Francisco, CA 94016" +165565,AAA Batteries (4-pack),1,2.99,02/23/19 15:11,"30 Highland St, Los Angeles, CA 90001" +165566,AAA Batteries (4-pack),1,2.99,02/13/19 09:30,"424 5th St, Boston, MA 02215" +165567,USB-C Charging Cable,1,11.95,02/12/19 11:35,"894 River St, Los Angeles, CA 90001" +165568,AA Batteries (4-pack),1,3.84,02/08/19 20:28,"243 Adams St, New York City, NY 10001" +165569,AAA Batteries (4-pack),1,2.99,02/02/19 10:19,"113 Pine St, Boston, MA 02215" +165570,iPhone,1,700,02/09/19 19:44,"472 North St, Dallas, TX 75001" +165570,Wired Headphones,1,11.99,02/09/19 19:44,"472 North St, Dallas, TX 75001" +165571,iPhone,1,700,02/09/19 15:37,"990 5th St, Atlanta, GA 30301" +165572,27in 4K Gaming Monitor,1,389.99,02/17/19 21:19,"370 8th St, Austin, TX 73301" +165573,Apple Airpods Headphones,1,150,02/02/19 16:26,"113 13th St, Los Angeles, CA 90001" +165574,20in Monitor,1,109.99,02/10/19 13:54,"804 Hill St, Seattle, WA 98101" +165575,Wired Headphones,1,11.99,02/06/19 15:20,"91 Chestnut St, Seattle, WA 98101" +165576,AA Batteries (4-pack),1,3.84,02/18/19 21:40,"782 Jefferson St, Seattle, WA 98101" +165577,AAA Batteries (4-pack),1,2.99,02/21/19 11:53,"967 8th St, San Francisco, CA 94016" +165578,Wired Headphones,1,11.99,02/02/19 17:52,"85 Forest St, Los Angeles, CA 90001" +165579,Google Phone,1,600,02/19/19 12:36,"833 Jefferson St, San Francisco, CA 94016" +165580,Google Phone,1,600,02/09/19 19:20,"373 Johnson St, Portland, OR 97035" +165581,Lightning Charging Cable,1,14.95,02/19/19 13:09,"261 13th St, New York City, NY 10001" +165582,Wired Headphones,1,11.99,02/09/19 08:37,"876 Forest St, San Francisco, CA 94016" +165583,Bose SoundSport Headphones,1,99.99,02/20/19 15:13,"382 West St, Portland, ME 04101" +165584,Apple Airpods Headphones,1,150,02/02/19 17:07,"341 Main St, Los Angeles, CA 90001" +165585,AAA Batteries (4-pack),3,2.99,02/05/19 13:19,"469 7th St, San Francisco, CA 94016" +165586,27in FHD Monitor,1,149.99,02/16/19 14:51,"517 Lincoln St, San Francisco, CA 94016" +165587,Lightning Charging Cable,1,14.95,02/16/19 11:50,"961 North St, Atlanta, GA 30301" +165588,AA Batteries (4-pack),1,3.84,02/14/19 14:45,"598 Spruce St, Los Angeles, CA 90001" +165589,Bose SoundSport Headphones,1,99.99,02/10/19 11:47,"517 1st St, Atlanta, GA 30301" +165590,USB-C Charging Cable,1,11.95,02/08/19 19:14,"620 Park St, San Francisco, CA 94016" +165591,Bose SoundSport Headphones,1,99.99,02/03/19 13:32,"513 Jefferson St, Atlanta, GA 30301" +165592,Apple Airpods Headphones,1,150,02/07/19 18:47,"272 10th St, Boston, MA 02215" +165593,AA Batteries (4-pack),3,3.84,02/14/19 15:46,"867 13th St, New York City, NY 10001" +165594,27in 4K Gaming Monitor,1,389.99,02/02/19 17:47,"390 12th St, San Francisco, CA 94016" +165595,AA Batteries (4-pack),2,3.84,02/03/19 11:39,"700 Jackson St, San Francisco, CA 94016" +165596,Lightning Charging Cable,1,14.95,02/07/19 11:46,"248 14th St, Los Angeles, CA 90001" +165597,Lightning Charging Cable,1,14.95,02/13/19 19:58,"695 Hill St, San Francisco, CA 94016" +165598,AA Batteries (4-pack),1,3.84,02/07/19 10:28,"625 Washington St, San Francisco, CA 94016" +165599,Wired Headphones,1,11.99,02/14/19 08:59,"385 Dogwood St, Boston, MA 02215" +165600,Apple Airpods Headphones,1,150,02/14/19 10:55,"85 Jackson St, Portland, OR 97035" +165601,Bose SoundSport Headphones,1,99.99,02/22/19 10:53,"558 River St, Los Angeles, CA 90001" +165602,AA Batteries (4-pack),1,3.84,02/23/19 16:11,"489 Pine St, New York City, NY 10001" +165603,27in FHD Monitor,1,149.99,02/01/19 08:37,"48 Park St, Seattle, WA 98101" +165604,Wired Headphones,1,11.99,02/02/19 16:52,"563 Lincoln St, Boston, MA 02215" +165605,AA Batteries (4-pack),2,3.84,02/13/19 11:09,"919 2nd St, Austin, TX 73301" +165606,27in FHD Monitor,1,149.99,02/20/19 18:04,"738 Jefferson St, Los Angeles, CA 90001" +165607,AA Batteries (4-pack),1,3.84,02/09/19 20:55,"506 12th St, San Francisco, CA 94016" +165608,Bose SoundSport Headphones,1,99.99,02/24/19 09:52,"217 Adams St, New York City, NY 10001" +165609,27in 4K Gaming Monitor,1,389.99,02/21/19 17:37,"952 Spruce St, Seattle, WA 98101" +165610,27in 4K Gaming Monitor,1,389.99,02/25/19 18:04,"540 8th St, San Francisco, CA 94016" +165611,Wired Headphones,1,11.99,02/09/19 09:57,"768 Madison St, Boston, MA 02215" +165612,Macbook Pro Laptop,1,1700,02/24/19 12:32,"853 Walnut St, Portland, OR 97035" +165613,34in Ultrawide Monitor,1,379.99,02/19/19 14:37,"257 Chestnut St, Los Angeles, CA 90001" +165614,Bose SoundSport Headphones,1,99.99,02/02/19 08:06,"859 Washington St, Dallas, TX 75001" +165615,Lightning Charging Cable,1,14.95,02/09/19 13:56,"402 8th St, Seattle, WA 98101" +165616,AAA Batteries (4-pack),1,2.99,02/17/19 08:48,"107 12th St, Portland, OR 97035" +165617,AAA Batteries (4-pack),1,2.99,02/08/19 14:54,"747 Washington St, Dallas, TX 75001" +165618,iPhone,1,700,02/01/19 16:56,"895 5th St, Los Angeles, CA 90001" +165618,Wired Headphones,1,11.99,02/01/19 16:56,"895 5th St, Los Angeles, CA 90001" +165619,ThinkPad Laptop,1,999.99,02/18/19 12:30,"956 Maple St, Los Angeles, CA 90001" +165620,Lightning Charging Cable,1,14.95,02/17/19 23:05,"167 Wilson St, Dallas, TX 75001" +165621,USB-C Charging Cable,2,11.95,02/27/19 11:32,"437 Elm St, Portland, ME 04101" +165622,AAA Batteries (4-pack),1,2.99,02/12/19 05:58,"409 Adams St, New York City, NY 10001" +165623,USB-C Charging Cable,1,11.95,02/14/19 19:54,"463 Walnut St, Austin, TX 73301" +165624,27in FHD Monitor,1,149.99,02/20/19 13:40,"512 Park St, San Francisco, CA 94016" +165625,Macbook Pro Laptop,1,1700,02/09/19 19:26,"707 Lakeview St, Los Angeles, CA 90001" +165626,USB-C Charging Cable,1,11.95,02/17/19 07:18,"362 Dogwood St, San Francisco, CA 94016" +165627,Flatscreen TV,1,300,02/03/19 19:58,"896 Madison St, New York City, NY 10001" +165628,Wired Headphones,1,11.99,02/08/19 20:55,"18 Hill St, San Francisco, CA 94016" +165629,Vareebadd Phone,1,400,02/07/19 21:51,"623 Washington St, New York City, NY 10001" +165629,USB-C Charging Cable,1,11.95,02/07/19 21:51,"623 Washington St, New York City, NY 10001" +165630,Apple Airpods Headphones,1,150,02/26/19 18:45,"548 Sunset St, San Francisco, CA 94016" +165631,Wired Headphones,1,11.99,02/11/19 10:01,"783 Highland St, Dallas, TX 75001" +165632,USB-C Charging Cable,1,11.95,02/16/19 11:03,"886 10th St, Atlanta, GA 30301" +165633,Apple Airpods Headphones,1,150,02/20/19 10:15,"636 Dogwood St, Dallas, TX 75001" +165634,Apple Airpods Headphones,1,150,02/04/19 22:23,"595 14th St, Seattle, WA 98101" +165635,AAA Batteries (4-pack),1,2.99,02/14/19 13:44,"361 Maple St, San Francisco, CA 94016" +165636,Macbook Pro Laptop,1,1700,02/27/19 00:16,"832 Park St, Dallas, TX 75001" +165637,AAA Batteries (4-pack),1,2.99,02/05/19 20:36,"92 Highland St, Portland, OR 97035" +165638,AAA Batteries (4-pack),4,2.99,02/24/19 18:39,"596 1st St, Seattle, WA 98101" +165639,Apple Airpods Headphones,1,150,02/26/19 23:41,"347 12th St, Los Angeles, CA 90001" +165640,Wired Headphones,1,11.99,02/02/19 21:19,"188 4th St, Los Angeles, CA 90001" +165641,Wired Headphones,1,11.99,02/28/19 08:24,"633 Lincoln St, San Francisco, CA 94016" +165642,Macbook Pro Laptop,1,1700,02/04/19 14:04,"556 5th St, Los Angeles, CA 90001" +165643,AAA Batteries (4-pack),1,2.99,02/08/19 15:34,"355 Forest St, Los Angeles, CA 90001" +165644,USB-C Charging Cable,2,11.95,02/17/19 20:17,"839 Highland St, Los Angeles, CA 90001" +165645,Wired Headphones,1,11.99,02/19/19 13:24,"758 9th St, Boston, MA 02215" +165646,USB-C Charging Cable,1,11.95,02/25/19 09:30,"693 Willow St, Dallas, TX 75001" +165647,Wired Headphones,1,11.99,02/25/19 20:35,"591 Spruce St, Atlanta, GA 30301" +165648,34in Ultrawide Monitor,1,379.99,02/27/19 10:07,"870 Madison St, San Francisco, CA 94016" +165649,Google Phone,1,600,02/06/19 18:04,"638 Meadow St, New York City, NY 10001" +165650,Wired Headphones,1,11.99,02/27/19 08:29,"328 8th St, San Francisco, CA 94016" +165651,Wired Headphones,1,11.99,02/10/19 17:25,"394 Lakeview St, Los Angeles, CA 90001" +165652,AAA Batteries (4-pack),1,2.99,02/24/19 16:36,"864 Wilson St, Seattle, WA 98101" +165653,AAA Batteries (4-pack),3,2.99,02/08/19 21:47,"879 13th St, San Francisco, CA 94016" +165654,Wired Headphones,1,11.99,02/25/19 14:06,"359 River St, Dallas, TX 75001" +165655,AAA Batteries (4-pack),1,2.99,02/20/19 18:05,"495 2nd St, Seattle, WA 98101" +165656,USB-C Charging Cable,1,11.95,02/03/19 23:31,"768 Maple St, Boston, MA 02215" +165657,iPhone,1,700,02/06/19 12:32,"851 Center St, Boston, MA 02215" +165658,iPhone,1,700,02/11/19 13:40,"231 Highland St, Los Angeles, CA 90001" +165659,Wired Headphones,1,11.99,02/11/19 23:19,"387 8th St, Boston, MA 02215" +165660,Bose SoundSport Headphones,1,99.99,02/10/19 18:37,"479 Wilson St, New York City, NY 10001" +165661,Lightning Charging Cable,1,14.95,02/03/19 16:05,"70 Jefferson St, Seattle, WA 98101" +165662,Bose SoundSport Headphones,2,99.99,02/11/19 16:54,"87 Adams St, San Francisco, CA 94016" +165663,USB-C Charging Cable,1,11.95,02/04/19 08:38,"183 Elm St, Dallas, TX 75001" +165664,AAA Batteries (4-pack),1,2.99,02/08/19 11:56,"995 Forest St, Dallas, TX 75001" +165665,34in Ultrawide Monitor,1,379.99,02/24/19 14:49,"876 North St, New York City, NY 10001" +165665,34in Ultrawide Monitor,1,379.99,02/24/19 14:49,"876 North St, New York City, NY 10001" +165666,Macbook Pro Laptop,1,1700,02/23/19 17:30,"826 Cherry St, New York City, NY 10001" +165667,Google Phone,1,600,02/02/19 14:44,"29 Johnson St, Dallas, TX 75001" +165668,Bose SoundSport Headphones,1,99.99,02/24/19 22:38,"252 Dogwood St, Boston, MA 02215" +165669,Lightning Charging Cable,1,14.95,02/07/19 12:25,"322 Ridge St, San Francisco, CA 94016" +165670,AAA Batteries (4-pack),2,2.99,02/19/19 15:23,"149 6th St, Seattle, WA 98101" +165671,Bose SoundSport Headphones,1,99.99,02/12/19 07:30,"472 Madison St, San Francisco, CA 94016" +165672,AAA Batteries (4-pack),1,2.99,02/22/19 13:40,"334 Wilson St, San Francisco, CA 94016" +165673,AA Batteries (4-pack),1,3.84,02/20/19 14:58,"481 Elm St, Seattle, WA 98101" +165674,iPhone,1,700,02/27/19 18:08,"41 Jackson St, Boston, MA 02215" +165675,Wired Headphones,1,11.99,02/28/19 22:38,"209 South St, Seattle, WA 98101" +165675,AA Batteries (4-pack),1,3.84,02/28/19 22:38,"209 South St, Seattle, WA 98101" +165676,Lightning Charging Cable,1,14.95,02/21/19 21:23,"287 South St, Los Angeles, CA 90001" +165677,Lightning Charging Cable,1,14.95,02/12/19 00:51,"620 Pine St, San Francisco, CA 94016" +165678,USB-C Charging Cable,1,11.95,02/01/19 16:06,"43 River St, San Francisco, CA 94016" +165679,Macbook Pro Laptop,1,1700,02/14/19 12:49,"867 11th St, San Francisco, CA 94016" +165680,20in Monitor,1,109.99,02/24/19 08:42,"49 14th St, New York City, NY 10001" +165681,27in FHD Monitor,1,149.99,02/09/19 23:21,"201 Meadow St, San Francisco, CA 94016" +165682,Bose SoundSport Headphones,1,99.99,02/01/19 18:34,"475 Cedar St, Portland, OR 97035" +165683,Bose SoundSport Headphones,1,99.99,02/11/19 19:45,"844 5th St, Boston, MA 02215" +165684,Bose SoundSport Headphones,1,99.99,02/07/19 18:59,"53 Sunset St, Austin, TX 73301" +165684,Apple Airpods Headphones,1,150,02/07/19 18:59,"53 Sunset St, Austin, TX 73301" +165685,20in Monitor,1,109.99,02/02/19 08:06,"999 4th St, San Francisco, CA 94016" +165686,Apple Airpods Headphones,1,150,02/11/19 11:50,"225 5th St, San Francisco, CA 94016" +165687,Google Phone,1,600,02/17/19 00:51,"28 Spruce St, San Francisco, CA 94016" +165688,Apple Airpods Headphones,1,150,02/27/19 20:28,"705 Maple St, Los Angeles, CA 90001" +165689,Wired Headphones,1,11.99,02/23/19 20:49,"889 Forest St, Dallas, TX 75001" +165690,USB-C Charging Cable,1,11.95,02/19/19 11:07,"865 Chestnut St, San Francisco, CA 94016" +165691,34in Ultrawide Monitor,1,379.99,02/03/19 19:48,"351 Lake St, Dallas, TX 75001" +165692,Wired Headphones,1,11.99,02/08/19 18:34,"383 Hill St, Los Angeles, CA 90001" +165693,Wired Headphones,1,11.99,02/10/19 20:19,"505 Highland St, San Francisco, CA 94016" +165694,USB-C Charging Cable,1,11.95,02/15/19 17:55,"837 Willow St, Dallas, TX 75001" +165695,27in 4K Gaming Monitor,1,389.99,02/04/19 13:32,"640 Jackson St, New York City, NY 10001" +165696,AAA Batteries (4-pack),1,2.99,02/27/19 13:29,"653 Park St, New York City, NY 10001" +165697,Wired Headphones,1,11.99,02/15/19 22:03,"798 12th St, Portland, OR 97035" +165698,Apple Airpods Headphones,1,150,02/08/19 22:34,"866 South St, San Francisco, CA 94016" +165699,27in FHD Monitor,1,149.99,02/10/19 21:28,"400 4th St, Los Angeles, CA 90001" +165700,iPhone,1,700,02/13/19 15:52,"872 1st St, New York City, NY 10001" +165701,AAA Batteries (4-pack),2,2.99,02/21/19 00:26,"17 14th St, Los Angeles, CA 90001" +165702,iPhone,1,700,02/08/19 12:34,"935 11th St, San Francisco, CA 94016" +165702,Lightning Charging Cable,1,14.95,02/08/19 12:34,"935 11th St, San Francisco, CA 94016" +165703,Apple Airpods Headphones,1,150,02/09/19 18:36,"939 Lake St, Portland, OR 97035" +165704,AA Batteries (4-pack),1,3.84,02/13/19 18:43,"146 Jackson St, Portland, OR 97035" +165705,USB-C Charging Cable,1,11.95,02/14/19 18:15,"409 Johnson St, Seattle, WA 98101" +165706,AAA Batteries (4-pack),3,2.99,02/14/19 18:28,"987 Willow St, Austin, TX 73301" +165707,Flatscreen TV,1,300,02/25/19 21:00,"298 Dogwood St, Atlanta, GA 30301" +165708,AA Batteries (4-pack),4,3.84,02/22/19 21:35,"236 Elm St, San Francisco, CA 94016" +165709,Wired Headphones,1,11.99,02/14/19 21:19,"626 Johnson St, Seattle, WA 98101" +165710,Bose SoundSport Headphones,1,99.99,02/15/19 08:44,"639 Hill St, Los Angeles, CA 90001" +165711,27in FHD Monitor,1,149.99,02/15/19 23:08,"540 River St, Atlanta, GA 30301" +165712,Lightning Charging Cable,1,14.95,02/17/19 01:03,"485 7th St, Los Angeles, CA 90001" +165713,AA Batteries (4-pack),1,3.84,02/24/19 14:53,"723 Lake St, San Francisco, CA 94016" +165714,Vareebadd Phone,1,400,02/03/19 11:05,"142 Church St, San Francisco, CA 94016" +165715,AAA Batteries (4-pack),1,2.99,02/06/19 21:14,"524 Jefferson St, Atlanta, GA 30301" +165716,AAA Batteries (4-pack),3,2.99,02/04/19 19:05,"456 Cherry St, Austin, TX 73301" +165717,Wired Headphones,2,11.99,02/14/19 01:19,"741 Forest St, Austin, TX 73301" +165718,iPhone,1,700,02/10/19 11:26,"627 6th St, San Francisco, CA 94016" +165718,Wired Headphones,1,11.99,02/10/19 11:26,"627 6th St, San Francisco, CA 94016" +165719,27in 4K Gaming Monitor,1,389.99,02/11/19 10:42,"252 Dogwood St, Dallas, TX 75001" +165720,AA Batteries (4-pack),1,3.84,02/16/19 17:18,"900 Jefferson St, San Francisco, CA 94016" +165721,Bose SoundSport Headphones,1,99.99,02/18/19 09:17,"278 Pine St, Boston, MA 02215" +165722,AAA Batteries (4-pack),1,2.99,02/28/19 11:26,"421 Lincoln St, Atlanta, GA 30301" +165723,AA Batteries (4-pack),2,3.84,02/09/19 19:25,"188 Forest St, San Francisco, CA 94016" +165724,Bose SoundSport Headphones,1,99.99,02/11/19 10:03,"585 Ridge St, Seattle, WA 98101" +165725,AA Batteries (4-pack),1,3.84,02/13/19 21:33,"4 Hill St, San Francisco, CA 94016" +165726,AAA Batteries (4-pack),3,2.99,02/26/19 15:18,"508 14th St, San Francisco, CA 94016" +165727,27in FHD Monitor,1,149.99,02/15/19 05:39,"361 9th St, Austin, TX 73301" +165728,ThinkPad Laptop,1,999.99,02/17/19 20:07,"188 Park St, Seattle, WA 98101" +165729,Lightning Charging Cable,1,14.95,02/13/19 13:29,"839 Adams St, San Francisco, CA 94016" +165730,Apple Airpods Headphones,1,150,02/12/19 11:41,"509 Jefferson St, Boston, MA 02215" +165731,iPhone,1,700,02/25/19 17:43,"572 Sunset St, Boston, MA 02215" +165731,Apple Airpods Headphones,1,150,02/25/19 17:43,"572 Sunset St, Boston, MA 02215" +165732,27in 4K Gaming Monitor,1,389.99,02/11/19 23:03,"368 Chestnut St, Los Angeles, CA 90001" +165733,AA Batteries (4-pack),1,3.84,02/10/19 21:38,"796 Lincoln St, San Francisco, CA 94016" +165734,AAA Batteries (4-pack),1,2.99,02/02/19 18:13,"636 6th St, San Francisco, CA 94016" +165735,AAA Batteries (4-pack),1,2.99,02/09/19 19:54,"335 Sunset St, Los Angeles, CA 90001" +165736,AAA Batteries (4-pack),2,2.99,02/08/19 11:35,"507 13th St, Los Angeles, CA 90001" +165737,Bose SoundSport Headphones,1,99.99,02/02/19 20:01,"100 12th St, Los Angeles, CA 90001" +165738,LG Washing Machine,1,600.0,02/22/19 12:52,"398 Jefferson St, San Francisco, CA 94016" +165739,USB-C Charging Cable,1,11.95,02/27/19 17:15,"961 7th St, Seattle, WA 98101" +165740,USB-C Charging Cable,1,11.95,02/23/19 11:33,"204 Meadow St, San Francisco, CA 94016" +165741,Lightning Charging Cable,2,14.95,02/06/19 16:59,"774 7th St, Seattle, WA 98101" +165742,AAA Batteries (4-pack),2,2.99,02/24/19 15:29,"91 Adams St, Los Angeles, CA 90001" +165743,Bose SoundSport Headphones,1,99.99,02/28/19 01:05,"975 Maple St, Austin, TX 73301" +165744,Wired Headphones,1,11.99,02/17/19 16:14,"153 West St, Los Angeles, CA 90001" +165745,Wired Headphones,1,11.99,02/28/19 01:43,"512 4th St, Atlanta, GA 30301" +165746,Lightning Charging Cable,1,14.95,02/27/19 17:33,"190 Washington St, Los Angeles, CA 90001" +165747,Lightning Charging Cable,1,14.95,02/06/19 13:57,"545 River St, Los Angeles, CA 90001" +165748,AAA Batteries (4-pack),1,2.99,02/07/19 18:44,"161 Hickory St, Seattle, WA 98101" +165749,Lightning Charging Cable,2,14.95,02/14/19 14:10,"18 6th St, Portland, OR 97035" +165750,ThinkPad Laptop,1,999.99,02/05/19 15:38,"545 14th St, Dallas, TX 75001" +165751,Bose SoundSport Headphones,1,99.99,02/13/19 12:29,"884 5th St, Los Angeles, CA 90001" +165752,AAA Batteries (4-pack),3,2.99,02/21/19 16:10,"157 Washington St, San Francisco, CA 94016" +165753,Flatscreen TV,1,300,02/10/19 10:48,"630 Sunset St, New York City, NY 10001" +165754,Wired Headphones,1,11.99,02/06/19 07:10,"33 South St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +165755,USB-C Charging Cable,1,11.95,02/06/19 20:48,"42 Hickory St, Dallas, TX 75001" +165756,AAA Batteries (4-pack),2,2.99,02/14/19 06:29,"754 Park St, San Francisco, CA 94016" +165757,ThinkPad Laptop,1,999.99,02/22/19 12:42,"136 Wilson St, New York City, NY 10001" +165758,Wired Headphones,1,11.99,02/10/19 22:06,"323 Hickory St, Boston, MA 02215" +165759,Wired Headphones,2,11.99,02/22/19 18:05,"853 13th St, Atlanta, GA 30301" +165760,Wired Headphones,1,11.99,02/13/19 12:17,"724 4th St, Los Angeles, CA 90001" +165761,27in FHD Monitor,1,149.99,02/04/19 13:59,"55 Lake St, Atlanta, GA 30301" +165762,Wired Headphones,1,11.99,02/01/19 16:38,"861 10th St, New York City, NY 10001" +165763,27in 4K Gaming Monitor,1,389.99,02/08/19 15:16,"582 Maple St, Los Angeles, CA 90001" +165764,34in Ultrawide Monitor,1,379.99,02/11/19 18:43,"426 Park St, San Francisco, CA 94016" +165765,Lightning Charging Cable,1,14.95,02/13/19 20:05,"279 Elm St, San Francisco, CA 94016" +165766,Bose SoundSport Headphones,1,99.99,02/04/19 09:27,"404 10th St, Austin, TX 73301" +165767,Apple Airpods Headphones,1,150,02/14/19 07:53,"518 Park St, Boston, MA 02215" +165768,AA Batteries (4-pack),1,3.84,02/02/19 21:32,"951 Cherry St, Atlanta, GA 30301" +165769,Bose SoundSport Headphones,1,99.99,02/23/19 16:00,"543 Pine St, Seattle, WA 98101" +165770,Flatscreen TV,1,300,02/02/19 18:58,"115 Jefferson St, Portland, OR 97035" +165771,Bose SoundSport Headphones,1,99.99,02/17/19 20:44,"879 Walnut St, Seattle, WA 98101" +165772,Bose SoundSport Headphones,1,99.99,02/23/19 12:08,"632 Ridge St, Boston, MA 02215" +165773,USB-C Charging Cable,1,11.95,02/03/19 12:24,"318 7th St, Dallas, TX 75001" +165774,Wired Headphones,1,11.99,02/20/19 02:19,"704 Jackson St, Seattle, WA 98101" +165775,27in 4K Gaming Monitor,1,389.99,02/01/19 17:30,"642 Cherry St, Austin, TX 73301" +165776,AA Batteries (4-pack),1,3.84,02/09/19 15:06,"87 7th St, San Francisco, CA 94016" +165777,Wired Headphones,1,11.99,02/06/19 22:27,"83 Chestnut St, Los Angeles, CA 90001" +165778,AA Batteries (4-pack),1,3.84,02/09/19 23:39,"783 Adams St, Boston, MA 02215" +165779,Wired Headphones,1,11.99,02/26/19 18:15,"597 Church St, San Francisco, CA 94016" +165780,AAA Batteries (4-pack),1,2.99,02/16/19 11:09,"355 Pine St, Austin, TX 73301" +165780,iPhone,1,700,02/16/19 11:09,"355 Pine St, Austin, TX 73301" +165781,27in FHD Monitor,1,149.99,02/20/19 21:38,"82 1st St, New York City, NY 10001" +165782,AA Batteries (4-pack),1,3.84,02/06/19 11:09,"388 Meadow St, Boston, MA 02215" +165783,USB-C Charging Cable,1,11.95,02/08/19 20:16,"85 2nd St, New York City, NY 10001" +165784,Macbook Pro Laptop,1,1700,02/19/19 18:14,"413 14th St, Dallas, TX 75001" +165785,AAA Batteries (4-pack),1,2.99,02/26/19 16:46,"446 Highland St, San Francisco, CA 94016" +165786,Wired Headphones,1,11.99,02/22/19 18:28,"791 Hickory St, Los Angeles, CA 90001" +165787,Wired Headphones,1,11.99,02/20/19 12:41,"404 Park St, San Francisco, CA 94016" +165788,AA Batteries (4-pack),1,3.84,02/04/19 22:38,"344 West St, Portland, OR 97035" +165789,AAA Batteries (4-pack),1,2.99,02/23/19 16:42,"963 Cedar St, Los Angeles, CA 90001" +165790,AAA Batteries (4-pack),2,2.99,02/21/19 07:32,"166 Sunset St, New York City, NY 10001" +165791,AA Batteries (4-pack),3,3.84,02/16/19 20:04,"782 Church St, Seattle, WA 98101" +165792,ThinkPad Laptop,1,999.99,02/09/19 21:36,"350 Forest St, Dallas, TX 75001" +165793,AA Batteries (4-pack),1,3.84,02/26/19 19:57,"360 River St, San Francisco, CA 94016" +165794,Macbook Pro Laptop,1,1700,02/27/19 07:07,"221 West St, San Francisco, CA 94016" +165795,AA Batteries (4-pack),1,3.84,02/09/19 01:11,"10 Washington St, Seattle, WA 98101" +165796,AAA Batteries (4-pack),1,2.99,02/20/19 12:28,"901 14th St, Los Angeles, CA 90001" +165797,Wired Headphones,1,11.99,02/03/19 12:31,"937 Meadow St, Los Angeles, CA 90001" +165798,Wired Headphones,1,11.99,02/28/19 09:11,"761 5th St, New York City, NY 10001" +165799,Wired Headphones,1,11.99,02/25/19 09:00,"482 12th St, Atlanta, GA 30301" +165800,AAA Batteries (4-pack),1,2.99,02/13/19 09:20,"684 Jefferson St, Boston, MA 02215" +165801,ThinkPad Laptop,1,999.99,02/10/19 18:31,"363 8th St, Dallas, TX 75001" +165802,Lightning Charging Cable,1,14.95,02/19/19 00:30,"120 Dogwood St, Dallas, TX 75001" +165803,AA Batteries (4-pack),2,3.84,02/28/19 15:03,"48 14th St, San Francisco, CA 94016" +165804,Lightning Charging Cable,1,14.95,02/23/19 23:18,"319 9th St, Portland, OR 97035" +165805,AA Batteries (4-pack),2,3.84,02/22/19 22:31,"509 Meadow St, Atlanta, GA 30301" +165806,Lightning Charging Cable,1,14.95,02/08/19 17:04,"721 Lake St, San Francisco, CA 94016" +165807,Lightning Charging Cable,1,14.95,02/21/19 12:05,"418 1st St, Los Angeles, CA 90001" +165808,Apple Airpods Headphones,1,150,02/24/19 15:00,"951 9th St, New York City, NY 10001" +165809,27in 4K Gaming Monitor,1,389.99,02/10/19 14:49,"85 8th St, Seattle, WA 98101" +165810,Bose SoundSport Headphones,1,99.99,02/16/19 12:35,"256 Park St, Boston, MA 02215" +165811,27in 4K Gaming Monitor,1,389.99,02/13/19 23:44,"875 Willow St, New York City, NY 10001" +165812,AAA Batteries (4-pack),1,2.99,02/09/19 23:00,"446 12th St, Seattle, WA 98101" +165813,27in FHD Monitor,1,149.99,02/22/19 22:42,"192 7th St, Atlanta, GA 30301" +165814,Lightning Charging Cable,2,14.95,02/09/19 14:24,"876 10th St, Portland, OR 97035" +165815,Lightning Charging Cable,1,14.95,02/26/19 18:05,"922 Chestnut St, Portland, OR 97035" +165816,Wired Headphones,1,11.99,02/02/19 14:10,"237 14th St, Los Angeles, CA 90001" +165817,Apple Airpods Headphones,1,150,02/15/19 10:28,"679 Hickory St, New York City, NY 10001" +165818,Flatscreen TV,1,300,02/16/19 21:10,"135 Walnut St, San Francisco, CA 94016" +165819,Wired Headphones,1,11.99,02/01/19 16:07,"226 Washington St, Atlanta, GA 30301" +165820,Vareebadd Phone,1,400,02/12/19 16:08,"704 Highland St, New York City, NY 10001" +165820,USB-C Charging Cable,1,11.95,02/12/19 16:08,"704 Highland St, New York City, NY 10001" +165821,Google Phone,1,600,02/28/19 18:21,"75 11th St, Portland, ME 04101" +165822,AA Batteries (4-pack),4,3.84,02/27/19 16:00,"744 Meadow St, Seattle, WA 98101" +165823,AAA Batteries (4-pack),1,2.99,02/24/19 21:15,"63 Hill St, Seattle, WA 98101" +165824,ThinkPad Laptop,1,999.99,02/15/19 19:02,"866 Ridge St, Los Angeles, CA 90001" +165825,ThinkPad Laptop,1,999.99,02/09/19 00:38,"252 Meadow St, New York City, NY 10001" +165826,AA Batteries (4-pack),1,3.84,02/01/19 19:56,"207 West St, New York City, NY 10001" +165827,Apple Airpods Headphones,1,150,02/10/19 10:14,"929 Chestnut St, Los Angeles, CA 90001" +165828,AA Batteries (4-pack),1,3.84,02/12/19 21:43,"732 Washington St, Portland, OR 97035" +165829,Lightning Charging Cable,1,14.95,02/01/19 08:51,"896 Washington St, San Francisco, CA 94016" +165830,Wired Headphones,1,11.99,02/11/19 17:21,"729 Dogwood St, San Francisco, CA 94016" +165831,USB-C Charging Cable,1,11.95,02/21/19 15:28,"292 South St, San Francisco, CA 94016" +165832,Lightning Charging Cable,1,14.95,02/10/19 06:23,"148 Cedar St, Atlanta, GA 30301" +165833,AA Batteries (4-pack),1,3.84,02/16/19 13:28,"475 Jackson St, Portland, ME 04101" +165834,27in 4K Gaming Monitor,1,389.99,02/18/19 19:36,"187 Maple St, New York City, NY 10001" +165835,Apple Airpods Headphones,1,150,02/16/19 20:27,"382 11th St, San Francisco, CA 94016" +165836,AA Batteries (4-pack),1,3.84,02/26/19 20:51,"76 Cherry St, San Francisco, CA 94016" +165837,Wired Headphones,1,11.99,02/13/19 15:57,"436 North St, Los Angeles, CA 90001" +165838,iPhone,1,700,02/27/19 07:14,"219 Spruce St, San Francisco, CA 94016" +165839,USB-C Charging Cable,1,11.95,02/06/19 19:24,"832 Highland St, Atlanta, GA 30301" +165840,27in FHD Monitor,1,149.99,02/25/19 20:42,"818 Willow St, New York City, NY 10001" +165841,AAA Batteries (4-pack),1,2.99,02/13/19 09:50,"389 14th St, New York City, NY 10001" +165842,AA Batteries (4-pack),4,3.84,02/23/19 17:35,"41 Sunset St, San Francisco, CA 94016" +165843,Apple Airpods Headphones,1,150,02/01/19 10:08,"48 Chestnut St, New York City, NY 10001" +165844,Lightning Charging Cable,1,14.95,02/27/19 00:26,"563 6th St, New York City, NY 10001" +165845,ThinkPad Laptop,1,999.99,02/11/19 12:41,"669 Center St, Portland, OR 97035" +165846,20in Monitor,1,109.99,02/03/19 17:09,"427 12th St, Los Angeles, CA 90001" +165847,Bose SoundSport Headphones,1,99.99,02/19/19 12:08,"236 River St, Dallas, TX 75001" +165848,AA Batteries (4-pack),1,3.84,02/27/19 14:54,"994 Ridge St, Los Angeles, CA 90001" +165849,AA Batteries (4-pack),2,3.84,02/19/19 13:10,"791 Park St, Portland, ME 04101" +165850,Flatscreen TV,1,300,02/17/19 22:05,"489 Adams St, New York City, NY 10001" +165851,Bose SoundSport Headphones,1,99.99,02/02/19 20:56,"668 Forest St, New York City, NY 10001" +165852,AA Batteries (4-pack),1,3.84,02/27/19 20:36,"35 West St, Seattle, WA 98101" +165853,AA Batteries (4-pack),1,3.84,02/15/19 14:26,"142 South St, Seattle, WA 98101" +165854,27in FHD Monitor,1,149.99,02/22/19 01:53,"250 Meadow St, San Francisco, CA 94016" +165855,ThinkPad Laptop,1,999.99,02/07/19 13:11,"190 Highland St, Dallas, TX 75001" +165856,20in Monitor,1,109.99,02/24/19 13:26,"461 8th St, Atlanta, GA 30301" +165857,Macbook Pro Laptop,1,1700,02/01/19 15:54,"990 Spruce St, Boston, MA 02215" +165858,AAA Batteries (4-pack),2,2.99,02/24/19 15:49,"339 5th St, Dallas, TX 75001" +165859,Macbook Pro Laptop,1,1700,02/02/19 21:32,"613 Madison St, Portland, OR 97035" +165860,27in FHD Monitor,1,149.99,02/03/19 07:52,"203 6th St, San Francisco, CA 94016" +165861,27in FHD Monitor,1,149.99,02/02/19 12:46,"637 8th St, Dallas, TX 75001" +165862,AA Batteries (4-pack),2,3.84,02/25/19 21:36,"497 4th St, Austin, TX 73301" +165863,27in FHD Monitor,1,149.99,02/04/19 00:49,"663 Park St, Austin, TX 73301" +165864,34in Ultrawide Monitor,1,379.99,02/08/19 03:31,"602 Adams St, Boston, MA 02215" +165865,Wired Headphones,1,11.99,02/20/19 05:28,"678 Walnut St, Los Angeles, CA 90001" +165866,Flatscreen TV,1,300,02/27/19 23:46,"707 Highland St, Boston, MA 02215" +165867,AAA Batteries (4-pack),1,2.99,02/04/19 20:30,"589 7th St, New York City, NY 10001" +165867,Wired Headphones,1,11.99,02/04/19 20:30,"589 7th St, New York City, NY 10001" +165868,AA Batteries (4-pack),1,3.84,02/06/19 10:12,"138 River St, Seattle, WA 98101" +165869,AA Batteries (4-pack),1,3.84,02/11/19 20:26,"667 Church St, Los Angeles, CA 90001" +165870,USB-C Charging Cable,1,11.95,02/13/19 11:14,"301 Ridge St, San Francisco, CA 94016" +165871,Vareebadd Phone,1,400,02/13/19 19:27,"793 4th St, New York City, NY 10001" +165872,USB-C Charging Cable,1,11.95,02/04/19 12:54,"72 12th St, Los Angeles, CA 90001" +165873,34in Ultrawide Monitor,1,379.99,02/13/19 15:30,"641 Pine St, Portland, OR 97035" +165874,Apple Airpods Headphones,1,150,02/25/19 17:50,"726 Meadow St, San Francisco, CA 94016" +165875,Bose SoundSport Headphones,1,99.99,02/08/19 00:12,"537 Highland St, Dallas, TX 75001" +165876,27in FHD Monitor,1,149.99,02/09/19 14:50,"697 11th St, Atlanta, GA 30301" +165877,AAA Batteries (4-pack),2,2.99,02/16/19 11:58,"75 5th St, Dallas, TX 75001" +165878,Bose SoundSport Headphones,1,99.99,02/01/19 22:19,"522 Main St, San Francisco, CA 94016" +165879,Wired Headphones,1,11.99,02/05/19 19:12,"173 Johnson St, Boston, MA 02215" +165880,Macbook Pro Laptop,1,1700,02/12/19 00:16,"408 10th St, Seattle, WA 98101" +165881,AA Batteries (4-pack),1,3.84,02/28/19 23:10,"101 5th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +165882,Lightning Charging Cable,1,14.95,02/09/19 07:11,"210 Elm St, New York City, NY 10001" +165883,Wired Headphones,1,11.99,02/15/19 13:19,"376 River St, San Francisco, CA 94016" +165884,USB-C Charging Cable,1,11.95,02/07/19 17:35,"986 1st St, San Francisco, CA 94016" +165885,Bose SoundSport Headphones,1,99.99,02/06/19 00:17,"790 Madison St, San Francisco, CA 94016" +165886,Lightning Charging Cable,1,14.95,02/03/19 19:27,"286 Park St, Atlanta, GA 30301" +165887,iPhone,1,700,02/13/19 00:24,"336 West St, Los Angeles, CA 90001" +165887,Lightning Charging Cable,1,14.95,02/13/19 00:24,"336 West St, Los Angeles, CA 90001" +165888,AA Batteries (4-pack),1,3.84,02/17/19 20:12,"714 9th St, Boston, MA 02215" +,,,,, +165889,Wired Headphones,1,11.99,02/22/19 07:21,"896 1st St, New York City, NY 10001" +165889,Lightning Charging Cable,1,14.95,02/22/19 07:21,"896 1st St, New York City, NY 10001" +165890,AA Batteries (4-pack),1,3.84,02/12/19 22:40,"995 6th St, San Francisco, CA 94016" +165891,AAA Batteries (4-pack),2,2.99,02/19/19 12:43,"486 Willow St, Atlanta, GA 30301" +165892,AAA Batteries (4-pack),1,2.99,02/06/19 12:20,"845 2nd St, Dallas, TX 75001" +165893,Flatscreen TV,1,300,02/08/19 07:08,"650 1st St, Los Angeles, CA 90001" +165894,Bose SoundSport Headphones,1,99.99,02/26/19 05:27,"385 Jefferson St, Portland, OR 97035" +165895,USB-C Charging Cable,1,11.95,02/06/19 16:37,"109 River St, New York City, NY 10001" +165896,27in 4K Gaming Monitor,1,389.99,02/24/19 06:37,"760 14th St, Los Angeles, CA 90001" +165897,AA Batteries (4-pack),1,3.84,02/17/19 10:32,"946 11th St, San Francisco, CA 94016" +165898,Bose SoundSport Headphones,1,99.99,02/25/19 11:10,"139 1st St, Los Angeles, CA 90001" +165899,Google Phone,1,600,02/21/19 11:20,"765 Lakeview St, Portland, OR 97035" +165900,AAA Batteries (4-pack),2,2.99,02/19/19 17:10,"663 Chestnut St, Boston, MA 02215" +165901,Bose SoundSport Headphones,1,99.99,02/25/19 19:38,"841 North St, Los Angeles, CA 90001" +165902,AA Batteries (4-pack),2,3.84,02/11/19 12:36,"777 Adams St, Boston, MA 02215" +165903,LG Dryer,1,600.0,02/28/19 12:17,"189 Washington St, Boston, MA 02215" +165904,USB-C Charging Cable,1,11.95,02/10/19 13:55,"320 Center St, San Francisco, CA 94016" +165905,AAA Batteries (4-pack),3,2.99,02/27/19 06:59,"651 7th St, San Francisco, CA 94016" +165906,USB-C Charging Cable,1,11.95,02/09/19 18:04,"326 1st St, New York City, NY 10001" +165907,20in Monitor,1,109.99,02/19/19 20:45,"24 Adams St, Austin, TX 73301" +165908,Bose SoundSport Headphones,1,99.99,02/28/19 09:02,"215 Washington St, Portland, OR 97035" +165909,Lightning Charging Cable,1,14.95,02/26/19 12:01,"681 Highland St, San Francisco, CA 94016" +165910,Vareebadd Phone,1,400,02/04/19 15:38,"56 Dogwood St, San Francisco, CA 94016" +165910,USB-C Charging Cable,1,11.95,02/04/19 15:38,"56 Dogwood St, San Francisco, CA 94016" +165911,27in FHD Monitor,1,149.99,02/02/19 10:15,"19 Madison St, Los Angeles, CA 90001" +165912,AA Batteries (4-pack),2,3.84,02/26/19 17:12,"391 Johnson St, San Francisco, CA 94016" +165913,Bose SoundSport Headphones,1,99.99,02/03/19 21:57,"130 8th St, San Francisco, CA 94016" +165914,Wired Headphones,1,11.99,02/07/19 20:33,"792 Wilson St, San Francisco, CA 94016" +165915,27in 4K Gaming Monitor,1,389.99,02/02/19 10:22,"862 Highland St, Seattle, WA 98101" +165916,AA Batteries (4-pack),1,3.84,02/04/19 13:25,"233 Walnut St, Seattle, WA 98101" +165917,Bose SoundSport Headphones,1,99.99,02/10/19 21:29,"792 Spruce St, Dallas, TX 75001" +165918,AAA Batteries (4-pack),2,2.99,02/09/19 13:08,"758 Walnut St, New York City, NY 10001" +165919,Bose SoundSport Headphones,1,99.99,02/18/19 22:32,"803 Adams St, San Francisco, CA 94016" +165920,USB-C Charging Cable,1,11.95,02/03/19 13:20,"750 Forest St, Boston, MA 02215" +165921,Wired Headphones,1,11.99,02/21/19 04:02,"903 Cedar St, Seattle, WA 98101" +165922,iPhone,1,700,02/14/19 09:55,"428 River St, San Francisco, CA 94016" +165923,AAA Batteries (4-pack),1,2.99,02/17/19 17:01,"713 Center St, New York City, NY 10001" +165924,ThinkPad Laptop,1,999.99,02/02/19 10:34,"237 Cedar St, Dallas, TX 75001" +165925,Macbook Pro Laptop,1,1700,02/20/19 13:33,"559 11th St, Austin, TX 73301" +165926,27in FHD Monitor,1,149.99,02/26/19 20:25,"516 Dogwood St, Atlanta, GA 30301" +165927,Flatscreen TV,1,300,02/24/19 20:45,"996 5th St, San Francisco, CA 94016" +165928,iPhone,1,700,02/28/19 19:49,"952 Washington St, Portland, OR 97035" +165929,iPhone,1,700,02/21/19 17:57,"520 Jackson St, Portland, OR 97035" +165929,AAA Batteries (4-pack),2,2.99,02/21/19 17:57,"520 Jackson St, Portland, OR 97035" +165930,USB-C Charging Cable,1,11.95,02/28/19 12:13,"522 Adams St, Atlanta, GA 30301" +165931,AA Batteries (4-pack),2,3.84,02/28/19 20:14,"9 11th St, San Francisco, CA 94016" +165932,27in 4K Gaming Monitor,1,389.99,02/01/19 12:45,"931 Highland St, New York City, NY 10001" +165933,Lightning Charging Cable,1,14.95,02/27/19 11:15,"627 Hickory St, San Francisco, CA 94016" +165934,27in FHD Monitor,1,149.99,02/15/19 20:30,"4 Lakeview St, San Francisco, CA 94016" +165935,Lightning Charging Cable,1,14.95,02/01/19 17:27,"283 Willow St, Atlanta, GA 30301" +165936,USB-C Charging Cable,1,11.95,02/16/19 13:35,"730 Ridge St, San Francisco, CA 94016" +165937,USB-C Charging Cable,1,11.95,02/23/19 19:36,"562 Park St, San Francisco, CA 94016" +165937,Wired Headphones,1,11.99,02/23/19 19:36,"562 Park St, San Francisco, CA 94016" +165938,Apple Airpods Headphones,1,150,02/20/19 10:56,"980 11th St, Los Angeles, CA 90001" +165939,ThinkPad Laptop,1,999.99,02/16/19 13:35,"376 Maple St, Seattle, WA 98101" +165940,Apple Airpods Headphones,1,150,02/03/19 08:52,"74 Washington St, San Francisco, CA 94016" +165941,Lightning Charging Cable,1,14.95,02/07/19 09:05,"189 Cedar St, San Francisco, CA 94016" +165942,USB-C Charging Cable,1,11.95,02/19/19 19:17,"937 13th St, Dallas, TX 75001" +165943,Wired Headphones,1,11.99,02/25/19 16:20,"307 Church St, Los Angeles, CA 90001" +165944,AA Batteries (4-pack),3,3.84,02/17/19 21:23,"438 Elm St, Los Angeles, CA 90001" +165945,USB-C Charging Cable,1,11.95,02/02/19 21:02,"770 Adams St, New York City, NY 10001" +165946,Wired Headphones,1,11.99,02/10/19 15:15,"414 Church St, San Francisco, CA 94016" +165947,Apple Airpods Headphones,1,150,02/02/19 21:12,"986 Willow St, Portland, OR 97035" +165948,27in 4K Gaming Monitor,1,389.99,02/06/19 02:05,"853 12th St, Austin, TX 73301" +165949,AA Batteries (4-pack),1,3.84,02/25/19 15:33,"347 Madison St, Los Angeles, CA 90001" +165950,Wired Headphones,1,11.99,02/15/19 14:07,"897 Johnson St, Atlanta, GA 30301" +165951,Apple Airpods Headphones,1,150,02/05/19 17:33,"734 Spruce St, San Francisco, CA 94016" +165952,Macbook Pro Laptop,1,1700,02/03/19 10:18,"416 South St, Boston, MA 02215" +165953,Macbook Pro Laptop,1,1700,02/15/19 11:07,"606 14th St, Los Angeles, CA 90001" +165954,Lightning Charging Cable,1,14.95,02/18/19 15:59,"354 South St, Los Angeles, CA 90001" +165955,Bose SoundSport Headphones,1,99.99,02/06/19 09:01,"797 West St, Austin, TX 73301" +165956,iPhone,1,700,02/19/19 10:25,"573 2nd St, Los Angeles, CA 90001" +165957,AA Batteries (4-pack),2,3.84,02/12/19 14:07,"488 South St, San Francisco, CA 94016" +165958,20in Monitor,1,109.99,02/06/19 20:54,"956 5th St, New York City, NY 10001" +165959,Macbook Pro Laptop,1,1700,02/20/19 12:54,"289 Ridge St, Seattle, WA 98101" +165960,Google Phone,1,600,02/13/19 22:07,"82 13th St, San Francisco, CA 94016" +165960,Wired Headphones,1,11.99,02/13/19 22:07,"82 13th St, San Francisco, CA 94016" +165961,AAA Batteries (4-pack),1,2.99,02/24/19 09:52,"161 North St, San Francisco, CA 94016" +165962,Wired Headphones,1,11.99,02/12/19 23:22,"817 Washington St, San Francisco, CA 94016" +165963,ThinkPad Laptop,1,999.99,02/27/19 09:42,"729 1st St, Portland, ME 04101" +165964,AAA Batteries (4-pack),3,2.99,02/17/19 09:54,"630 South St, Boston, MA 02215" +165965,27in FHD Monitor,1,149.99,02/23/19 11:56,"322 11th St, Boston, MA 02215" +165966,Wired Headphones,1,11.99,02/01/19 21:20,"512 Church St, San Francisco, CA 94016" +165967,Macbook Pro Laptop,1,1700,02/02/19 06:25,"813 Hickory St, New York City, NY 10001" +165968,AAA Batteries (4-pack),1,2.99,02/03/19 00:57,"757 Elm St, Los Angeles, CA 90001" +165969,Apple Airpods Headphones,1,150,02/19/19 20:13,"856 Jackson St, New York City, NY 10001" +165970,AA Batteries (4-pack),1,3.84,02/14/19 12:08,"747 4th St, Dallas, TX 75001" +165971,Macbook Pro Laptop,1,1700,02/16/19 11:16,"536 9th St, San Francisco, CA 94016" +165972,USB-C Charging Cable,1,11.95,02/01/19 18:07,"787 River St, San Francisco, CA 94016" +165973,AA Batteries (4-pack),2,3.84,02/23/19 11:52,"519 7th St, New York City, NY 10001" +165974,Wired Headphones,1,11.99,02/17/19 13:10,"394 Church St, Dallas, TX 75001" +165975,Flatscreen TV,1,300,02/21/19 19:33,"626 Center St, Los Angeles, CA 90001" +165976,Wired Headphones,1,11.99,02/03/19 08:34,"623 West St, New York City, NY 10001" +165977,Lightning Charging Cable,1,14.95,02/25/19 16:17,"151 Willow St, Austin, TX 73301" +165978,27in FHD Monitor,1,149.99,02/09/19 09:13,"289 River St, San Francisco, CA 94016" +165979,Apple Airpods Headphones,1,150,02/16/19 20:04,"18 Johnson St, New York City, NY 10001" +165980,USB-C Charging Cable,1,11.95,02/17/19 15:49,"427 Willow St, Atlanta, GA 30301" +165981,AA Batteries (4-pack),3,3.84,02/28/19 21:07,"100 Madison St, Los Angeles, CA 90001" +165982,34in Ultrawide Monitor,1,379.99,02/05/19 06:34,"183 Main St, Los Angeles, CA 90001" +165983,AAA Batteries (4-pack),1,2.99,02/15/19 12:08,"682 Sunset St, San Francisco, CA 94016" +165984,27in FHD Monitor,1,149.99,02/26/19 17:47,"955 Hill St, Portland, OR 97035" +165985,USB-C Charging Cable,1,11.95,02/16/19 10:56,"115 Park St, San Francisco, CA 94016" +165986,Apple Airpods Headphones,1,150,02/10/19 08:24,"453 Center St, Portland, ME 04101" +165987,27in FHD Monitor,1,149.99,02/06/19 18:09,"887 Ridge St, San Francisco, CA 94016" +165988,USB-C Charging Cable,1,11.95,02/07/19 19:20,"12 Elm St, San Francisco, CA 94016" +165989,Wired Headphones,2,11.99,02/19/19 21:42,"509 Cherry St, Boston, MA 02215" +165990,Bose SoundSport Headphones,1,99.99,02/01/19 11:13,"398 Maple St, Boston, MA 02215" +165991,Wired Headphones,1,11.99,02/25/19 22:58,"847 Main St, Seattle, WA 98101" +165992,iPhone,1,700,02/14/19 20:15,"614 Forest St, San Francisco, CA 94016" +165992,Apple Airpods Headphones,1,150,02/14/19 20:15,"614 Forest St, San Francisco, CA 94016" +165993,AA Batteries (4-pack),1,3.84,02/23/19 11:25,"541 Spruce St, Los Angeles, CA 90001" +165994,Lightning Charging Cable,1,14.95,02/10/19 10:19,"528 Jackson St, San Francisco, CA 94016" +165995,AAA Batteries (4-pack),1,2.99,02/17/19 09:07,"944 Willow St, San Francisco, CA 94016" +165996,Bose SoundSport Headphones,2,99.99,02/26/19 06:07,"593 Pine St, Boston, MA 02215" +165997,Wired Headphones,2,11.99,02/19/19 17:42,"980 1st St, Los Angeles, CA 90001" +165998,AA Batteries (4-pack),1,3.84,02/04/19 11:23,"808 5th St, San Francisco, CA 94016" +165999,AAA Batteries (4-pack),1,2.99,02/18/19 10:43,"226 Center St, Los Angeles, CA 90001" +166000,iPhone,2,700,02/18/19 09:16,"768 5th St, Los Angeles, CA 90001" +166001,AAA Batteries (4-pack),1,2.99,02/10/19 21:52,"416 Wilson St, Dallas, TX 75001" +166002,iPhone,1,700,02/18/19 01:26,"653 Park St, Los Angeles, CA 90001" +166003,Apple Airpods Headphones,1,150,02/10/19 11:40,"392 Cherry St, Boston, MA 02215" +166004,AA Batteries (4-pack),1,3.84,02/09/19 10:53,"417 Hickory St, Dallas, TX 75001" +166005,Lightning Charging Cable,1,14.95,02/19/19 16:31,"948 Forest St, Boston, MA 02215" +166006,20in Monitor,1,109.99,02/11/19 18:30,"734 Lake St, Seattle, WA 98101" +166007,Apple Airpods Headphones,1,150,02/13/19 20:22,"417 Hill St, Los Angeles, CA 90001" +166008,AA Batteries (4-pack),1,3.84,02/25/19 03:34,"534 Chestnut St, Boston, MA 02215" +166009,Google Phone,1,600,02/10/19 18:50,"750 Chestnut St, Seattle, WA 98101" +166010,Apple Airpods Headphones,1,150,02/22/19 23:03,"226 Jefferson St, New York City, NY 10001" +166011,USB-C Charging Cable,1,11.95,02/02/19 17:09,"535 Madison St, San Francisco, CA 94016" +166012,27in 4K Gaming Monitor,1,389.99,02/01/19 15:26,"588 13th St, San Francisco, CA 94016" +166013,34in Ultrawide Monitor,1,379.99,02/25/19 16:29,"972 Johnson St, San Francisco, CA 94016" +166014,Lightning Charging Cable,1,14.95,02/10/19 18:01,"72 Chestnut St, New York City, NY 10001" +166015,USB-C Charging Cable,1,11.95,02/01/19 12:06,"315 Elm St, Seattle, WA 98101" +166016,Lightning Charging Cable,1,14.95,02/25/19 13:04,"432 10th St, San Francisco, CA 94016" +166017,AA Batteries (4-pack),3,3.84,02/02/19 09:57,"145 Lincoln St, New York City, NY 10001" +166018,USB-C Charging Cable,1,11.95,02/10/19 13:15,"25 Ridge St, San Francisco, CA 94016" +166019,27in 4K Gaming Monitor,1,389.99,02/24/19 10:29,"830 Dogwood St, San Francisco, CA 94016" +166020,AAA Batteries (4-pack),1,2.99,02/27/19 17:03,"621 Jefferson St, San Francisco, CA 94016" +166021,AA Batteries (4-pack),1,3.84,02/07/19 09:12,"346 Walnut St, San Francisco, CA 94016" +166022,Wired Headphones,1,11.99,02/04/19 22:50,"887 Lakeview St, San Francisco, CA 94016" +166023,27in FHD Monitor,1,149.99,02/28/19 22:26,"79 Meadow St, Atlanta, GA 30301" +166024,USB-C Charging Cable,1,11.95,02/23/19 11:43,"812 Adams St, Boston, MA 02215" +166025,Lightning Charging Cable,1,14.95,02/11/19 16:42,"420 Forest St, San Francisco, CA 94016" +166026,Lightning Charging Cable,1,14.95,02/03/19 17:40,"771 South St, San Francisco, CA 94016" +166027,AA Batteries (4-pack),3,3.84,02/02/19 12:12,"598 14th St, Los Angeles, CA 90001" +166028,AA Batteries (4-pack),1,3.84,02/21/19 15:26,"599 Church St, Atlanta, GA 30301" +166029,Wired Headphones,1,11.99,02/17/19 12:18,"271 Jefferson St, San Francisco, CA 94016" +166030,Macbook Pro Laptop,1,1700,02/09/19 20:54,"579 Johnson St, Austin, TX 73301" +166031,USB-C Charging Cable,1,11.95,02/18/19 08:46,"772 Lincoln St, New York City, NY 10001" +166032,Bose SoundSport Headphones,1,99.99,02/06/19 10:24,"97 Chestnut St, Los Angeles, CA 90001" +166033,AAA Batteries (4-pack),3,2.99,02/14/19 20:03,"548 13th St, San Francisco, CA 94016" +166034,AA Batteries (4-pack),1,3.84,02/14/19 16:42,"862 River St, Los Angeles, CA 90001" +166035,AAA Batteries (4-pack),1,2.99,02/24/19 13:40,"846 Jackson St, San Francisco, CA 94016" +166036,Bose SoundSport Headphones,1,99.99,02/18/19 14:49,"506 North St, Portland, OR 97035" +166037,Apple Airpods Headphones,1,150,02/18/19 17:04,"700 North St, Dallas, TX 75001" +166038,27in FHD Monitor,1,149.99,02/24/19 21:20,"651 Lakeview St, San Francisco, CA 94016" +166039,AA Batteries (4-pack),2,3.84,02/20/19 11:30,"411 8th St, New York City, NY 10001" +166040,Apple Airpods Headphones,1,150,02/18/19 14:31,"57 Wilson St, Los Angeles, CA 90001" +166041,27in FHD Monitor,1,149.99,02/20/19 13:58,"385 10th St, Atlanta, GA 30301" +166042,Google Phone,1,600,02/12/19 17:37,"572 12th St, Los Angeles, CA 90001" +166043,AAA Batteries (4-pack),1,2.99,02/23/19 15:23,"800 Forest St, San Francisco, CA 94016" +166043,AAA Batteries (4-pack),1,2.99,02/23/19 15:23,"800 Forest St, San Francisco, CA 94016" +166044,AA Batteries (4-pack),1,3.84,02/19/19 15:41,"75 River St, New York City, NY 10001" +166045,20in Monitor,1,109.99,02/16/19 15:40,"120 Jefferson St, Austin, TX 73301" +166046,Wired Headphones,1,11.99,02/18/19 19:19,"557 Lincoln St, New York City, NY 10001" +166047,27in 4K Gaming Monitor,1,389.99,02/16/19 08:39,"146 Park St, Los Angeles, CA 90001" +166048,Apple Airpods Headphones,1,150,02/09/19 15:24,"193 Sunset St, Los Angeles, CA 90001" +166049,AAA Batteries (4-pack),4,2.99,02/04/19 19:43,"354 Jackson St, Portland, OR 97035" +166050,Wired Headphones,1,11.99,02/12/19 09:17,"231 Center St, San Francisco, CA 94016" +166051,20in Monitor,1,109.99,02/27/19 09:35,"97 Center St, San Francisco, CA 94016" +166052,AA Batteries (4-pack),1,3.84,02/23/19 22:16,"925 Lake St, Los Angeles, CA 90001" +166053,Apple Airpods Headphones,1,150,02/25/19 08:51,"146 9th St, Seattle, WA 98101" +166054,ThinkPad Laptop,1,999.99,02/05/19 20:18,"828 4th St, San Francisco, CA 94016" +166055,iPhone,1,700,02/07/19 22:41,"945 14th St, Los Angeles, CA 90001" +166056,27in 4K Gaming Monitor,1,389.99,02/21/19 20:37,"215 Cherry St, San Francisco, CA 94016" +166057,Bose SoundSport Headphones,1,99.99,02/23/19 23:01,"946 Dogwood St, New York City, NY 10001" +166058,27in FHD Monitor,1,149.99,02/19/19 10:34,"883 Jefferson St, Portland, ME 04101" +166059,27in 4K Gaming Monitor,1,389.99,02/24/19 13:32,"801 Forest St, Los Angeles, CA 90001" +166060,AAA Batteries (4-pack),1,2.99,02/13/19 10:29,"580 13th St, San Francisco, CA 94016" +166061,Flatscreen TV,1,300,02/21/19 05:45,"606 Johnson St, Los Angeles, CA 90001" +166062,USB-C Charging Cable,1,11.95,02/01/19 10:51,"346 Highland St, San Francisco, CA 94016" +166063,Lightning Charging Cable,1,14.95,02/10/19 17:25,"458 Johnson St, San Francisco, CA 94016" +166064,AA Batteries (4-pack),1,3.84,02/07/19 13:27,"649 Lincoln St, New York City, NY 10001" +166065,27in 4K Gaming Monitor,1,389.99,02/09/19 11:44,"637 Johnson St, Los Angeles, CA 90001" +166066,Apple Airpods Headphones,1,150,02/07/19 12:07,"172 9th St, San Francisco, CA 94016" +166067,Apple Airpods Headphones,1,150,02/27/19 22:15,"734 Ridge St, Los Angeles, CA 90001" +166068,AAA Batteries (4-pack),1,2.99,02/26/19 20:02,"933 Lake St, Atlanta, GA 30301" +166069,Wired Headphones,1,11.99,02/19/19 11:53,"144 14th St, San Francisco, CA 94016" +166070,27in 4K Gaming Monitor,1,389.99,02/10/19 13:38,"930 Wilson St, Austin, TX 73301" +166071,AAA Batteries (4-pack),4,2.99,02/12/19 02:51,"553 Lincoln St, Portland, OR 97035" +166072,Lightning Charging Cable,1,14.95,02/17/19 08:22,"309 Sunset St, Atlanta, GA 30301" +166073,Google Phone,1,600,02/25/19 12:19,"924 1st St, Boston, MA 02215" +166074,Lightning Charging Cable,1,14.95,02/12/19 11:48,"41 Hill St, Dallas, TX 75001" +166075,Lightning Charging Cable,1,14.95,02/15/19 22:13,"580 Lakeview St, Los Angeles, CA 90001" +166076,27in 4K Gaming Monitor,1,389.99,02/12/19 20:40,"253 North St, Portland, ME 04101" +166077,Lightning Charging Cable,3,14.95,02/28/19 12:37,"708 Lakeview St, San Francisco, CA 94016" +166078,USB-C Charging Cable,1,11.95,02/26/19 07:54,"148 Hickory St, Boston, MA 02215" +166079,AA Batteries (4-pack),1,3.84,02/03/19 09:22,"845 Jefferson St, Dallas, TX 75001" +166080,Apple Airpods Headphones,1,150,02/11/19 11:27,"97 Lincoln St, Portland, OR 97035" +166081,Lightning Charging Cable,1,14.95,02/05/19 13:08,"311 Adams St, Atlanta, GA 30301" +166082,USB-C Charging Cable,1,11.95,02/10/19 16:41,"956 Lakeview St, Los Angeles, CA 90001" +166083,Wired Headphones,1,11.99,02/16/19 00:20,"80 River St, Boston, MA 02215" +166084,AAA Batteries (4-pack),1,2.99,02/18/19 17:49,"969 Meadow St, New York City, NY 10001" +166085,iPhone,1,700,02/28/19 11:38,"314 Pine St, Los Angeles, CA 90001" +166085,Lightning Charging Cable,1,14.95,02/28/19 11:38,"314 Pine St, Los Angeles, CA 90001" +166086,AA Batteries (4-pack),1,3.84,02/21/19 21:55,"226 Spruce St, Los Angeles, CA 90001" +166087,USB-C Charging Cable,1,11.95,02/07/19 20:18,"360 Lincoln St, Boston, MA 02215" +166088,Google Phone,1,600,02/18/19 10:44,"112 Jefferson St, Boston, MA 02215" +166089,Lightning Charging Cable,1,14.95,02/07/19 19:41,"161 Spruce St, San Francisco, CA 94016" +166090,Google Phone,1,600,02/08/19 19:46,"613 13th St, Los Angeles, CA 90001" +166090,USB-C Charging Cable,1,11.95,02/08/19 19:46,"613 13th St, Los Angeles, CA 90001" +166091,Flatscreen TV,1,300,02/21/19 12:22,"453 Elm St, Los Angeles, CA 90001" +166092,34in Ultrawide Monitor,1,379.99,02/27/19 19:14,"286 4th St, Austin, TX 73301" +166093,Wired Headphones,2,11.99,02/19/19 08:10,"922 9th St, Seattle, WA 98101" +166094,27in FHD Monitor,1,149.99,02/23/19 21:03,"50 South St, San Francisco, CA 94016" +166095,AA Batteries (4-pack),2,3.84,02/28/19 17:58,"595 6th St, Atlanta, GA 30301" +166096,AA Batteries (4-pack),1,3.84,02/23/19 00:24,"897 North St, Austin, TX 73301" +166097,Lightning Charging Cable,1,14.95,02/24/19 19:39,"654 Center St, New York City, NY 10001" +166098,AAA Batteries (4-pack),5,2.99,02/12/19 11:48,"272 West St, New York City, NY 10001" +166099,20in Monitor,1,109.99,02/22/19 20:59,"537 North St, New York City, NY 10001" +166100,27in FHD Monitor,1,149.99,02/02/19 14:55,"512 Willow St, Atlanta, GA 30301" +166101,Apple Airpods Headphones,1,150,02/25/19 11:25,"158 8th St, Atlanta, GA 30301" +166102,27in FHD Monitor,1,149.99,02/15/19 19:45,"848 11th St, New York City, NY 10001" +166103,AA Batteries (4-pack),1,3.84,02/21/19 20:09,"86 Main St, Austin, TX 73301" +166104,AAA Batteries (4-pack),1,2.99,02/08/19 20:56,"277 Meadow St, Austin, TX 73301" +166105,Bose SoundSport Headphones,1,99.99,02/21/19 11:40,"589 Jefferson St, New York City, NY 10001" +166106,iPhone,1,700,02/24/19 17:02,"266 Chestnut St, New York City, NY 10001" +166107,27in FHD Monitor,1,149.99,02/26/19 11:57,"898 10th St, Dallas, TX 75001" +166108,27in FHD Monitor,1,149.99,02/23/19 21:42,"635 South St, San Francisco, CA 94016" +166109,AA Batteries (4-pack),1,3.84,02/12/19 11:44,"648 Hill St, San Francisco, CA 94016" +166110,AAA Batteries (4-pack),1,2.99,02/03/19 17:00,"375 6th St, San Francisco, CA 94016" +166111,Bose SoundSport Headphones,1,99.99,02/15/19 17:08,"624 5th St, Portland, ME 04101" +166112,AA Batteries (4-pack),1,3.84,02/23/19 07:41,"106 Adams St, San Francisco, CA 94016" +166113,Apple Airpods Headphones,1,150,02/26/19 11:22,"17 Lakeview St, Los Angeles, CA 90001" +166114,AA Batteries (4-pack),1,3.84,02/18/19 19:09,"346 Adams St, Atlanta, GA 30301" +166115,ThinkPad Laptop,1,999.99,02/01/19 12:53,"369 Maple St, Seattle, WA 98101" +166116,Apple Airpods Headphones,1,150,02/08/19 07:26,"798 1st St, Boston, MA 02215" +166117,Bose SoundSport Headphones,1,99.99,02/02/19 23:38,"16 Lake St, Portland, OR 97035" +166118,Wired Headphones,1,11.99,02/06/19 10:05,"229 12th St, San Francisco, CA 94016" +166119,27in FHD Monitor,1,149.99,02/04/19 11:11,"286 Cherry St, Seattle, WA 98101" +166120,34in Ultrawide Monitor,1,379.99,02/13/19 08:13,"95 Center St, Dallas, TX 75001" +166121,27in FHD Monitor,1,149.99,02/16/19 11:09,"433 Wilson St, San Francisco, CA 94016" +166122,AAA Batteries (4-pack),2,2.99,02/01/19 18:04,"963 Forest St, Los Angeles, CA 90001" +166123,34in Ultrawide Monitor,1,379.99,02/17/19 22:37,"206 Jefferson St, Portland, OR 97035" +166124,Apple Airpods Headphones,1,150,02/09/19 17:41,"424 14th St, Boston, MA 02215" +166125,34in Ultrawide Monitor,1,379.99,02/08/19 19:39,"451 South St, Portland, OR 97035" +166126,Lightning Charging Cable,1,14.95,02/05/19 09:34,"305 9th St, San Francisco, CA 94016" +166127,Wired Headphones,1,11.99,02/03/19 21:14,"945 2nd St, Seattle, WA 98101" +166128,Wired Headphones,1,11.99,02/04/19 13:06,"130 Maple St, Austin, TX 73301" +166129,AA Batteries (4-pack),1,3.84,02/22/19 11:15,"859 Jackson St, San Francisco, CA 94016" +166130,Lightning Charging Cable,1,14.95,02/07/19 21:17,"379 10th St, Portland, OR 97035" +166131,Lightning Charging Cable,1,14.95,02/07/19 18:40,"59 12th St, Portland, OR 97035" +166132,27in 4K Gaming Monitor,1,389.99,02/02/19 14:11,"126 8th St, Atlanta, GA 30301" +166133,Apple Airpods Headphones,1,150,02/01/19 16:44,"790 4th St, San Francisco, CA 94016" +166134,AA Batteries (4-pack),1,3.84,02/07/19 00:54,"315 12th St, San Francisco, CA 94016" +166135,Bose SoundSport Headphones,1,99.99,02/17/19 11:04,"647 Lincoln St, New York City, NY 10001" +166136,Lightning Charging Cable,1,14.95,02/21/19 20:48,"298 Jefferson St, New York City, NY 10001" +166137,Apple Airpods Headphones,1,150,02/04/19 10:55,"879 5th St, Atlanta, GA 30301" +166138,ThinkPad Laptop,1,999.99,02/16/19 11:49,"971 Dogwood St, San Francisco, CA 94016" +166139,34in Ultrawide Monitor,1,379.99,02/27/19 19:45,"824 Spruce St, New York City, NY 10001" +166140,AA Batteries (4-pack),1,3.84,02/07/19 18:58,"297 Main St, Boston, MA 02215" +166141,34in Ultrawide Monitor,1,379.99,02/09/19 10:53,"281 Elm St, San Francisco, CA 94016" +166142,AA Batteries (4-pack),2,3.84,02/15/19 09:52,"52 South St, Los Angeles, CA 90001" +166143,Google Phone,1,600,02/09/19 19:06,"250 Cedar St, Los Angeles, CA 90001" +166144,Lightning Charging Cable,1,14.95,02/26/19 20:34,"32 Lincoln St, Atlanta, GA 30301" +166145,20in Monitor,1,109.99,02/21/19 21:13,"945 Maple St, San Francisco, CA 94016" +166146,Wired Headphones,1,11.99,02/02/19 22:24,"236 12th St, Atlanta, GA 30301" +166146,20in Monitor,1,109.99,02/02/19 22:24,"236 12th St, Atlanta, GA 30301" +166147,Wired Headphones,1,11.99,02/22/19 19:41,"904 9th St, San Francisco, CA 94016" +166148,Apple Airpods Headphones,1,150,02/17/19 18:49,"133 1st St, Boston, MA 02215" +166149,Bose SoundSport Headphones,1,99.99,02/18/19 22:26,"709 Hill St, San Francisco, CA 94016" +166150,Bose SoundSport Headphones,1,99.99,02/14/19 17:54,"14 Willow St, Boston, MA 02215" +166151,27in 4K Gaming Monitor,1,389.99,02/21/19 12:28,"706 Elm St, Los Angeles, CA 90001" +166152,Wired Headphones,1,11.99,02/06/19 16:54,"722 5th St, Atlanta, GA 30301" +166153,27in 4K Gaming Monitor,1,389.99,02/07/19 10:06,"99 Adams St, Seattle, WA 98101" +166154,Lightning Charging Cable,1,14.95,02/06/19 19:30,"937 Highland St, San Francisco, CA 94016" +166155,AAA Batteries (4-pack),3,2.99,02/27/19 09:01,"153 Church St, Los Angeles, CA 90001" +166156,Bose SoundSport Headphones,1,99.99,02/08/19 11:59,"804 Lincoln St, Los Angeles, CA 90001" +166157,ThinkPad Laptop,1,999.99,02/03/19 07:30,"792 Pine St, Seattle, WA 98101" +166158,Wired Headphones,1,11.99,02/24/19 18:52,"815 10th St, Atlanta, GA 30301" +166159,Wired Headphones,1,11.99,02/12/19 17:41,"747 Sunset St, Atlanta, GA 30301" +166160,Wired Headphones,1,11.99,02/20/19 11:27,"838 Walnut St, San Francisco, CA 94016" +166161,ThinkPad Laptop,1,999.99,02/17/19 19:35,"228 Jefferson St, San Francisco, CA 94016" +166162,Lightning Charging Cable,1,14.95,02/20/19 16:38,"752 9th St, Boston, MA 02215" +166163,AA Batteries (4-pack),1,3.84,02/11/19 21:05,"540 4th St, New York City, NY 10001" +166164,AA Batteries (4-pack),1,3.84,02/14/19 10:44,"815 Hill St, Boston, MA 02215" +166165,Lightning Charging Cable,1,14.95,02/17/19 09:08,"769 Park St, Boston, MA 02215" +166166,Lightning Charging Cable,1,14.95,02/06/19 20:11,"65 4th St, Seattle, WA 98101" +166167,Flatscreen TV,1,300,02/09/19 13:46,"229 2nd St, Austin, TX 73301" +166168,Wired Headphones,1,11.99,02/09/19 19:21,"342 Dogwood St, San Francisco, CA 94016" +166169,ThinkPad Laptop,1,999.99,02/22/19 11:51,"320 4th St, Los Angeles, CA 90001" +166170,AAA Batteries (4-pack),3,2.99,02/28/19 14:27,"662 Sunset St, San Francisco, CA 94016" +166171,AAA Batteries (4-pack),2,2.99,02/16/19 15:03,"110 14th St, New York City, NY 10001" +166172,27in FHD Monitor,1,149.99,02/21/19 19:16,"103 13th St, Boston, MA 02215" +166173,Wired Headphones,1,11.99,02/03/19 17:54,"481 Willow St, Seattle, WA 98101" +166174,Google Phone,1,600,02/23/19 08:05,"919 Pine St, Atlanta, GA 30301" +166175,Wired Headphones,1,11.99,02/02/19 09:00,"770 Pine St, Los Angeles, CA 90001" +166175,AA Batteries (4-pack),1,3.84,02/02/19 09:00,"770 Pine St, Los Angeles, CA 90001" +166176,Wired Headphones,1,11.99,02/03/19 15:56,"901 14th St, Dallas, TX 75001" +166177,ThinkPad Laptop,1,999.99,02/19/19 15:49,"816 Walnut St, Boston, MA 02215" +166178,AAA Batteries (4-pack),1,2.99,02/01/19 20:57,"801 Meadow St, Boston, MA 02215" +166179,Wired Headphones,1,11.99,02/17/19 13:10,"26 Meadow St, Dallas, TX 75001" +166180,USB-C Charging Cable,1,11.95,02/16/19 12:44,"134 Sunset St, San Francisco, CA 94016" +166181,Lightning Charging Cable,1,14.95,02/10/19 18:06,"931 Spruce St, Austin, TX 73301" +166182,Macbook Pro Laptop,1,1700,02/25/19 07:20,"817 Center St, San Francisco, CA 94016" +166182,AA Batteries (4-pack),1,3.84,02/25/19 07:20,"817 Center St, San Francisco, CA 94016" +166183,34in Ultrawide Monitor,1,379.99,02/17/19 22:00,"243 10th St, Seattle, WA 98101" +166184,Bose SoundSport Headphones,1,99.99,02/26/19 16:38,"36 Jefferson St, Dallas, TX 75001" +166185,Apple Airpods Headphones,1,150,02/28/19 17:32,"936 13th St, Atlanta, GA 30301" +166186,Wired Headphones,1,11.99,02/10/19 22:30,"487 Lake St, Atlanta, GA 30301" +166187,Apple Airpods Headphones,1,150,02/28/19 12:35,"830 Adams St, San Francisco, CA 94016" +166188,Apple Airpods Headphones,1,150,02/02/19 10:14,"496 Dogwood St, Dallas, TX 75001" +166189,AAA Batteries (4-pack),1,2.99,02/14/19 11:26,"454 Willow St, Seattle, WA 98101" +166190,27in 4K Gaming Monitor,1,389.99,02/10/19 15:52,"450 Center St, San Francisco, CA 94016" +166190,USB-C Charging Cable,1,11.95,02/10/19 15:52,"450 Center St, San Francisco, CA 94016" +166191,27in FHD Monitor,1,149.99,02/21/19 13:41,"931 4th St, Los Angeles, CA 90001" +166192,Macbook Pro Laptop,1,1700,02/28/19 13:12,"855 10th St, San Francisco, CA 94016" +166193,Google Phone,1,600,02/15/19 10:32,"794 Wilson St, Austin, TX 73301" +166193,USB-C Charging Cable,1,11.95,02/15/19 10:32,"794 Wilson St, Austin, TX 73301" +166194,ThinkPad Laptop,1,999.99,02/07/19 06:37,"242 Washington St, Atlanta, GA 30301" +166195,USB-C Charging Cable,1,11.95,02/20/19 12:41,"318 Walnut St, Boston, MA 02215" +166196,27in 4K Gaming Monitor,1,389.99,02/02/19 13:55,"884 Main St, Seattle, WA 98101" +166197,Wired Headphones,1,11.99,02/20/19 23:01,"830 9th St, Portland, OR 97035" +166198,AAA Batteries (4-pack),1,2.99,02/09/19 05:07,"984 Highland St, New York City, NY 10001" +166199,AAA Batteries (4-pack),2,2.99,02/07/19 10:20,"407 Highland St, San Francisco, CA 94016" +166200,Lightning Charging Cable,1,14.95,02/03/19 14:12,"70 Ridge St, San Francisco, CA 94016" +166201,34in Ultrawide Monitor,1,379.99,02/24/19 14:07,"116 Johnson St, Boston, MA 02215" +166202,ThinkPad Laptop,1,999.99,02/28/19 23:58,"897 7th St, Seattle, WA 98101" +166203,Wired Headphones,1,11.99,02/07/19 19:53,"470 8th St, New York City, NY 10001" +166204,iPhone,1,700,02/06/19 20:40,"871 13th St, San Francisco, CA 94016" +166205,Lightning Charging Cable,1,14.95,02/05/19 00:16,"165 Johnson St, Los Angeles, CA 90001" +166205,Macbook Pro Laptop,1,1700,02/05/19 00:16,"165 Johnson St, Los Angeles, CA 90001" +166206,Bose SoundSport Headphones,1,99.99,02/16/19 11:10,"278 13th St, San Francisco, CA 94016" +166207,ThinkPad Laptop,1,999.99,02/18/19 20:21,"158 Lakeview St, New York City, NY 10001" +166208,ThinkPad Laptop,1,999.99,02/05/19 23:39,"368 River St, San Francisco, CA 94016" +166209,Wired Headphones,1,11.99,02/24/19 11:08,"22 4th St, New York City, NY 10001" +166210,Apple Airpods Headphones,1,150,02/20/19 21:18,"173 Wilson St, New York City, NY 10001" +166211,USB-C Charging Cable,1,11.95,02/09/19 23:04,"473 7th St, Dallas, TX 75001" +166212,Lightning Charging Cable,1,14.95,02/26/19 01:11,"822 North St, Portland, OR 97035" +166212,Bose SoundSport Headphones,1,99.99,02/26/19 01:11,"822 North St, Portland, OR 97035" +166213,AA Batteries (4-pack),2,3.84,02/11/19 20:47,"464 Park St, New York City, NY 10001" +166214,AA Batteries (4-pack),1,3.84,02/08/19 15:27,"732 Ridge St, Portland, OR 97035" +166215,Apple Airpods Headphones,1,150,02/27/19 12:35,"566 Lincoln St, Dallas, TX 75001" +166216,AAA Batteries (4-pack),4,2.99,02/10/19 15:12,"270 Spruce St, San Francisco, CA 94016" +166217,27in 4K Gaming Monitor,1,389.99,02/28/19 16:13,"393 11th St, San Francisco, CA 94016" +166218,Wired Headphones,1,11.99,02/09/19 17:13,"795 Maple St, Los Angeles, CA 90001" +166219,Lightning Charging Cable,1,14.95,02/25/19 19:20,"933 9th St, Dallas, TX 75001" +166220,Apple Airpods Headphones,1,150,02/23/19 15:13,"698 Highland St, Atlanta, GA 30301" +166221,Bose SoundSport Headphones,1,99.99,02/16/19 13:48,"938 Maple St, Atlanta, GA 30301" +166222,20in Monitor,1,109.99,02/02/19 17:24,"949 Ridge St, San Francisco, CA 94016" +166223,Google Phone,1,600,02/20/19 09:53,"331 11th St, Atlanta, GA 30301" +166223,USB-C Charging Cable,1,11.95,02/20/19 09:53,"331 11th St, Atlanta, GA 30301" +166224,USB-C Charging Cable,1,11.95,02/10/19 01:03,"805 6th St, Los Angeles, CA 90001" +166225,Bose SoundSport Headphones,1,99.99,02/13/19 16:12,"643 West St, Austin, TX 73301" +166226,Lightning Charging Cable,1,14.95,02/09/19 18:53,"775 Willow St, San Francisco, CA 94016" +166227,USB-C Charging Cable,1,11.95,02/11/19 21:41,"131 7th St, Seattle, WA 98101" +166228,Apple Airpods Headphones,1,150,02/26/19 12:59,"544 Maple St, New York City, NY 10001" +166229,Google Phone,1,600,02/18/19 19:40,"49 1st St, Boston, MA 02215" +166230,AAA Batteries (4-pack),1,2.99,02/09/19 11:23,"194 Cedar St, Los Angeles, CA 90001" +166231,Lightning Charging Cable,1,14.95,02/20/19 11:21,"306 7th St, San Francisco, CA 94016" +166232,Bose SoundSport Headphones,1,99.99,02/05/19 13:11,"928 Wilson St, Boston, MA 02215" +166233,Wired Headphones,1,11.99,02/14/19 18:52,"897 6th St, Los Angeles, CA 90001" +166233,AA Batteries (4-pack),2,3.84,02/14/19 18:52,"897 6th St, Los Angeles, CA 90001" +166234,AAA Batteries (4-pack),3,2.99,02/17/19 10:17,"217 Wilson St, San Francisco, CA 94016" +166235,Apple Airpods Headphones,1,150,02/01/19 12:11,"67 Lakeview St, Los Angeles, CA 90001" +166236,AA Batteries (4-pack),1,3.84,02/15/19 19:08,"510 South St, San Francisco, CA 94016" +166237,Lightning Charging Cable,2,14.95,02/02/19 12:35,"537 River St, New York City, NY 10001" +166238,Bose SoundSport Headphones,1,99.99,02/07/19 15:49,"750 Johnson St, San Francisco, CA 94016" +166239,Apple Airpods Headphones,1,150,02/02/19 20:31,"391 1st St, Dallas, TX 75001" +166240,Apple Airpods Headphones,1,150,02/12/19 20:41,"583 Center St, Seattle, WA 98101" +166241,USB-C Charging Cable,1,11.95,02/12/19 23:59,"127 Chestnut St, New York City, NY 10001" +166242,Flatscreen TV,1,300,02/25/19 17:32,"240 4th St, Los Angeles, CA 90001" +166243,Apple Airpods Headphones,1,150,02/27/19 14:51,"295 South St, Seattle, WA 98101" +166244,AA Batteries (4-pack),1,3.84,02/08/19 17:14,"725 Cedar St, Boston, MA 02215" +166245,Flatscreen TV,1,300,02/07/19 17:37,"353 South St, San Francisco, CA 94016" +166246,Lightning Charging Cable,1,14.95,02/03/19 11:42,"94 Meadow St, Dallas, TX 75001" +166247,27in FHD Monitor,1,149.99,02/14/19 12:54,"899 Highland St, Boston, MA 02215" +166248,AA Batteries (4-pack),1,3.84,02/22/19 16:55,"26 Jackson St, Los Angeles, CA 90001" +166249,Macbook Pro Laptop,1,1700,02/10/19 14:14,"642 Chestnut St, New York City, NY 10001" +166250,Wired Headphones,3,11.99,02/02/19 17:07,"109 7th St, Los Angeles, CA 90001" +166251,USB-C Charging Cable,1,11.95,02/09/19 14:10,"100 11th St, San Francisco, CA 94016" +166252,ThinkPad Laptop,1,999.99,02/20/19 05:57,"896 13th St, Austin, TX 73301" +166253,27in 4K Gaming Monitor,1,389.99,02/14/19 00:19,"397 Walnut St, San Francisco, CA 94016" +166254,Flatscreen TV,1,300,02/11/19 08:09,"175 Maple St, Seattle, WA 98101" +166255,AA Batteries (4-pack),1,3.84,02/25/19 13:50,"364 Church St, San Francisco, CA 94016" +166256,AAA Batteries (4-pack),4,2.99,02/28/19 14:49,"848 13th St, Austin, TX 73301" +166257,Apple Airpods Headphones,1,150,02/14/19 19:02,"419 Lincoln St, New York City, NY 10001" +166258,Bose SoundSport Headphones,1,99.99,02/11/19 21:16,"611 Cedar St, Seattle, WA 98101" +166259,AAA Batteries (4-pack),1,2.99,02/16/19 12:00,"345 Pine St, Los Angeles, CA 90001" +166260,Bose SoundSport Headphones,1,99.99,02/01/19 15:47,"821 13th St, San Francisco, CA 94016" +166261,AAA Batteries (4-pack),2,2.99,02/14/19 08:15,"245 Main St, Portland, OR 97035" +166262,27in 4K Gaming Monitor,1,389.99,02/26/19 18:21,"901 Forest St, Atlanta, GA 30301" +166263,USB-C Charging Cable,1,11.95,02/28/19 14:30,"827 Spruce St, Seattle, WA 98101" +166263,34in Ultrawide Monitor,1,379.99,02/28/19 14:30,"827 Spruce St, Seattle, WA 98101" +166264,USB-C Charging Cable,1,11.95,02/07/19 14:31,"719 Church St, Boston, MA 02215" +166265,ThinkPad Laptop,1,999.99,02/02/19 09:27,"654 1st St, San Francisco, CA 94016" +166266,Lightning Charging Cable,1,14.95,02/26/19 09:31,"504 Lincoln St, Boston, MA 02215" +166267,AA Batteries (4-pack),1,3.84,02/12/19 10:29,"807 Forest St, Seattle, WA 98101" +166268,iPhone,1,700,02/05/19 14:29,"718 4th St, Boston, MA 02215" +166269,ThinkPad Laptop,1,999.99,02/01/19 13:38,"422 Johnson St, New York City, NY 10001" +166270,27in 4K Gaming Monitor,1,389.99,02/01/19 08:53,"799 Elm St, New York City, NY 10001" +166271,Lightning Charging Cable,1,14.95,02/02/19 14:15,"607 11th St, Los Angeles, CA 90001" +166272,USB-C Charging Cable,1,11.95,02/11/19 15:09,"128 9th St, Boston, MA 02215" +166273,20in Monitor,1,109.99,02/23/19 04:22,"672 South St, Los Angeles, CA 90001" +166273,Bose SoundSport Headphones,1,99.99,02/23/19 04:22,"672 South St, Los Angeles, CA 90001" +166274,USB-C Charging Cable,1,11.95,02/28/19 10:29,"150 Walnut St, Boston, MA 02215" +166275,Lightning Charging Cable,1,14.95,02/13/19 16:56,"437 Washington St, New York City, NY 10001" +166276,Flatscreen TV,1,300,02/12/19 13:53,"152 4th St, Atlanta, GA 30301" +166277,Apple Airpods Headphones,1,150,02/01/19 14:50,"294 5th St, Austin, TX 73301" +166278,iPhone,1,700,02/21/19 13:12,"185 1st St, Los Angeles, CA 90001" +166279,USB-C Charging Cable,1,11.95,02/01/19 23:36,"184 West St, New York City, NY 10001" +166280,Macbook Pro Laptop,1,1700,02/17/19 10:49,"151 Ridge St, Boston, MA 02215" +166281,USB-C Charging Cable,1,11.95,02/05/19 12:04,"954 14th St, Los Angeles, CA 90001" +166282,ThinkPad Laptop,1,999.99,02/06/19 12:06,"610 5th St, San Francisco, CA 94016" +166283,AA Batteries (4-pack),1,3.84,02/12/19 11:46,"779 Pine St, Los Angeles, CA 90001" +166284,AA Batteries (4-pack),1,3.84,02/20/19 09:38,"174 Wilson St, San Francisco, CA 94016" +166285,Google Phone,1,600,02/18/19 14:55,"854 Cedar St, Boston, MA 02215" +166286,AAA Batteries (4-pack),1,2.99,02/20/19 21:34,"656 Maple St, Los Angeles, CA 90001" +166287,Apple Airpods Headphones,1,150,02/10/19 16:11,"753 Center St, San Francisco, CA 94016" +166288,iPhone,1,700,02/16/19 00:17,"810 Lincoln St, San Francisco, CA 94016" +166289,27in FHD Monitor,1,149.99,02/05/19 13:32,"733 Johnson St, New York City, NY 10001" +166290,Bose SoundSport Headphones,1,99.99,02/21/19 13:41,"978 Park St, Los Angeles, CA 90001" +166291,iPhone,1,700,02/16/19 14:50,"696 7th St, Los Angeles, CA 90001" +166291,Apple Airpods Headphones,1,150,02/16/19 14:50,"696 7th St, Los Angeles, CA 90001" +166292,iPhone,1,700,02/06/19 00:39,"789 Lincoln St, Atlanta, GA 30301" +166292,Wired Headphones,1,11.99,02/06/19 00:39,"789 Lincoln St, Atlanta, GA 30301" +166293,AAA Batteries (4-pack),2,2.99,02/03/19 17:31,"521 Walnut St, Seattle, WA 98101" +166294,Wired Headphones,1,11.99,02/16/19 10:46,"126 12th St, Los Angeles, CA 90001" +166295,USB-C Charging Cable,1,11.95,02/15/19 17:25,"586 Jefferson St, Los Angeles, CA 90001" +166296,Macbook Pro Laptop,1,1700,02/17/19 20:01,"646 Jackson St, San Francisco, CA 94016" +166297,Wired Headphones,1,11.99,02/24/19 12:06,"955 Hickory St, Seattle, WA 98101" +166298,AA Batteries (4-pack),1,3.84,02/11/19 12:03,"1 Highland St, Los Angeles, CA 90001" +166299,34in Ultrawide Monitor,1,379.99,02/08/19 18:37,"592 Madison St, San Francisco, CA 94016" +166300,ThinkPad Laptop,1,999.99,02/09/19 12:27,"399 7th St, San Francisco, CA 94016" +166301,34in Ultrawide Monitor,1,379.99,02/21/19 19:16,"554 Jackson St, Atlanta, GA 30301" +166302,USB-C Charging Cable,1,11.95,02/02/19 07:27,"854 5th St, Boston, MA 02215" +166303,27in FHD Monitor,1,149.99,02/05/19 14:02,"151 Forest St, Portland, OR 97035" +166304,Lightning Charging Cable,1,14.95,02/02/19 11:29,"877 1st St, San Francisco, CA 94016" +166305,Bose SoundSport Headphones,1,99.99,02/20/19 10:50,"152 Hill St, Los Angeles, CA 90001" +166306,AAA Batteries (4-pack),1,2.99,02/25/19 12:45,"153 Highland St, San Francisco, CA 94016" +166307,Bose SoundSport Headphones,1,99.99,02/04/19 14:58,"976 Pine St, Seattle, WA 98101" +166308,AAA Batteries (4-pack),1,2.99,02/12/19 13:32,"587 14th St, Los Angeles, CA 90001" +166309,Wired Headphones,2,11.99,02/08/19 00:42,"125 14th St, Dallas, TX 75001" +166310,Lightning Charging Cable,2,14.95,02/16/19 18:32,"508 1st St, Los Angeles, CA 90001" +166311,Lightning Charging Cable,1,14.95,02/25/19 13:37,"176 2nd St, Portland, OR 97035" +166312,20in Monitor,1,109.99,02/04/19 20:29,"33 Madison St, Portland, OR 97035" +166313,Wired Headphones,1,11.99,02/17/19 21:01,"456 Main St, Dallas, TX 75001" +166314,AAA Batteries (4-pack),1,2.99,02/15/19 10:39,"164 Cedar St, Boston, MA 02215" +166315,27in 4K Gaming Monitor,1,389.99,02/04/19 20:23,"560 Lincoln St, Portland, OR 97035" +166316,Bose SoundSport Headphones,1,99.99,02/22/19 15:22,"989 Johnson St, Seattle, WA 98101" +166317,USB-C Charging Cable,1,11.95,02/09/19 08:13,"817 5th St, New York City, NY 10001" +166318,20in Monitor,1,109.99,02/23/19 11:25,"810 Lakeview St, San Francisco, CA 94016" +166319,ThinkPad Laptop,1,999.99,02/03/19 11:13,"265 11th St, Los Angeles, CA 90001" +166320,USB-C Charging Cable,1,11.95,02/06/19 12:50,"490 Walnut St, Atlanta, GA 30301" +166321,34in Ultrawide Monitor,1,379.99,02/06/19 16:32,"960 Pine St, Boston, MA 02215" +166322,iPhone,1,700,02/25/19 12:27,"894 Church St, Boston, MA 02215" +166323,Lightning Charging Cable,1,14.95,02/16/19 21:47,"859 12th St, Atlanta, GA 30301" +166324,Apple Airpods Headphones,1,150,02/15/19 16:03,"793 Dogwood St, Los Angeles, CA 90001" +166325,AAA Batteries (4-pack),2,2.99,02/04/19 21:26,"540 Forest St, New York City, NY 10001" +166326,Apple Airpods Headphones,1,150,02/24/19 00:03,"253 Lake St, San Francisco, CA 94016" +166327,Apple Airpods Headphones,1,150,02/20/19 12:10,"54 Center St, Los Angeles, CA 90001" +166328,USB-C Charging Cable,1,11.95,02/10/19 19:30,"90 Jackson St, New York City, NY 10001" +166329,AA Batteries (4-pack),2,3.84,02/26/19 14:41,"415 9th St, Boston, MA 02215" +166330,AAA Batteries (4-pack),2,2.99,02/11/19 09:08,"86 Willow St, New York City, NY 10001" +166331,Bose SoundSport Headphones,1,99.99,02/01/19 19:32,"122 12th St, Seattle, WA 98101" +166332,iPhone,1,700,02/27/19 10:42,"985 Sunset St, Los Angeles, CA 90001" +166333,AAA Batteries (4-pack),1,2.99,02/17/19 21:15,"232 Hickory St, San Francisco, CA 94016" +166334,Apple Airpods Headphones,1,150,02/06/19 18:38,"33 Johnson St, Austin, TX 73301" +166335,USB-C Charging Cable,1,11.95,02/06/19 21:29,"722 10th St, Seattle, WA 98101" +166336,USB-C Charging Cable,1,11.95,02/21/19 17:35,"644 Church St, Atlanta, GA 30301" +166337,Google Phone,1,600,02/04/19 14:54,"416 Hill St, San Francisco, CA 94016" +166338,Bose SoundSport Headphones,1,99.99,02/03/19 14:11,"477 River St, New York City, NY 10001" +166339,AAA Batteries (4-pack),1,2.99,02/17/19 13:14,"36 Cherry St, Dallas, TX 75001" +166340,Vareebadd Phone,1,400,02/24/19 08:00,"424 Johnson St, Dallas, TX 75001" +166341,AA Batteries (4-pack),2,3.84,02/28/19 15:40,"373 Jefferson St, New York City, NY 10001" +166342,Wired Headphones,1,11.99,02/28/19 07:25,"898 Pine St, Dallas, TX 75001" +166343,iPhone,1,700,02/11/19 20:10,"141 Washington St, Boston, MA 02215" +166344,AAA Batteries (4-pack),1,2.99,02/26/19 11:18,"511 1st St, Seattle, WA 98101" +166345,27in 4K Gaming Monitor,1,389.99,02/27/19 17:54,"86 Cedar St, Boston, MA 02215" +166346,USB-C Charging Cable,1,11.95,02/07/19 18:15,"585 Sunset St, San Francisco, CA 94016" +166347,USB-C Charging Cable,2,11.95,02/16/19 21:55,"273 8th St, New York City, NY 10001" +166348,AA Batteries (4-pack),1,3.84,02/18/19 01:52,"110 Adams St, San Francisco, CA 94016" +166349,AA Batteries (4-pack),1,3.84,02/07/19 16:06,"469 Chestnut St, San Francisco, CA 94016" +166350,Lightning Charging Cable,1,14.95,02/06/19 11:33,"572 Forest St, Portland, OR 97035" +166351,AA Batteries (4-pack),1,3.84,02/15/19 09:18,"614 5th St, San Francisco, CA 94016" +166352,Lightning Charging Cable,1,14.95,02/20/19 22:27,"898 Hill St, Portland, ME 04101" +166353,AAA Batteries (4-pack),3,2.99,02/27/19 01:02,"616 West St, Seattle, WA 98101" +166354,AA Batteries (4-pack),1,3.84,02/10/19 21:46,"860 Church St, San Francisco, CA 94016" +166355,LG Washing Machine,1,600.0,02/22/19 19:16,"168 Cherry St, Seattle, WA 98101" +166356,Apple Airpods Headphones,1,150,02/20/19 11:03,"303 River St, Austin, TX 73301" +166357,AA Batteries (4-pack),1,3.84,02/28/19 12:48,"764 2nd St, Boston, MA 02215" +166358,27in FHD Monitor,1,149.99,02/24/19 09:38,"125 14th St, Boston, MA 02215" +166359,Lightning Charging Cable,1,14.95,02/04/19 12:50,"890 Spruce St, San Francisco, CA 94016" +166360,iPhone,1,700,02/10/19 09:11,"934 Hill St, New York City, NY 10001" +166360,Lightning Charging Cable,2,14.95,02/10/19 09:11,"934 Hill St, New York City, NY 10001" +166361,USB-C Charging Cable,1,11.95,02/11/19 17:35,"26 Wilson St, Seattle, WA 98101" +166362,Lightning Charging Cable,1,14.95,02/07/19 22:39,"376 Walnut St, San Francisco, CA 94016" +166363,AAA Batteries (4-pack),1,2.99,02/06/19 10:03,"811 Highland St, San Francisco, CA 94016" +166364,AA Batteries (4-pack),1,3.84,02/25/19 20:09,"745 Sunset St, Los Angeles, CA 90001" +166365,27in FHD Monitor,1,149.99,02/15/19 19:23,"545 Wilson St, Los Angeles, CA 90001" +166366,Apple Airpods Headphones,1,150,02/26/19 21:24,"736 South St, San Francisco, CA 94016" +166367,Apple Airpods Headphones,1,150,02/16/19 21:36,"580 Walnut St, Atlanta, GA 30301" +166367,ThinkPad Laptop,1,999.99,02/16/19 21:36,"580 Walnut St, Atlanta, GA 30301" +166368,Lightning Charging Cable,1,14.95,02/27/19 21:31,"841 Chestnut St, Boston, MA 02215" +166369,Lightning Charging Cable,1,14.95,02/06/19 13:59,"665 Meadow St, Boston, MA 02215" +166370,AA Batteries (4-pack),1,3.84,02/15/19 18:33,"871 Cherry St, Boston, MA 02215" +166371,Apple Airpods Headphones,1,150,02/15/19 01:50,"583 South St, Seattle, WA 98101" +166372,Wired Headphones,1,11.99,02/02/19 18:10,"971 2nd St, Los Angeles, CA 90001" +166373,Wired Headphones,1,11.99,02/18/19 16:16,"244 Lincoln St, San Francisco, CA 94016" +166374,AA Batteries (4-pack),2,3.84,02/22/19 19:01,"791 5th St, Dallas, TX 75001" +166375,Flatscreen TV,1,300,02/11/19 16:36,"721 Lake St, New York City, NY 10001" +166376,USB-C Charging Cable,1,11.95,02/15/19 13:24,"331 Washington St, Seattle, WA 98101" +166377,USB-C Charging Cable,1,11.95,02/27/19 19:35,"738 Cherry St, San Francisco, CA 94016" +166378,AAA Batteries (4-pack),1,2.99,02/16/19 05:48,"627 Lakeview St, Seattle, WA 98101" +166379,Wired Headphones,1,11.99,02/24/19 07:19,"900 South St, Boston, MA 02215" +166380,20in Monitor,1,109.99,02/17/19 09:47,"11 West St, Atlanta, GA 30301" +166381,AA Batteries (4-pack),2,3.84,02/19/19 21:39,"170 Lakeview St, Austin, TX 73301" +166382,Bose SoundSport Headphones,1,99.99,02/04/19 23:15,"243 4th St, Atlanta, GA 30301" +166383,Google Phone,1,600,02/03/19 22:04,"24 Church St, Los Angeles, CA 90001" +166384,LG Washing Machine,1,600.0,02/25/19 11:37,"573 Sunset St, San Francisco, CA 94016" +166385,USB-C Charging Cable,1,11.95,02/21/19 23:05,"48 Pine St, Boston, MA 02215" +166385,AAA Batteries (4-pack),1,2.99,02/21/19 23:05,"48 Pine St, Boston, MA 02215" +166386,27in 4K Gaming Monitor,1,389.99,02/20/19 15:33,"80 Jefferson St, San Francisco, CA 94016" +166387,27in FHD Monitor,1,149.99,02/08/19 20:57,"21 Park St, New York City, NY 10001" +166388,ThinkPad Laptop,1,999.99,02/16/19 22:15,"120 14th St, Dallas, TX 75001" +166389,Lightning Charging Cable,1,14.95,02/01/19 14:16,"210 Johnson St, San Francisco, CA 94016" +166390,AAA Batteries (4-pack),2,2.99,02/18/19 17:21,"73 Church St, New York City, NY 10001" +166391,AAA Batteries (4-pack),1,2.99,02/26/19 08:20,"910 4th St, New York City, NY 10001" +166392,Apple Airpods Headphones,1,150,02/10/19 11:23,"907 Willow St, San Francisco, CA 94016" +166393,27in 4K Gaming Monitor,1,389.99,02/28/19 19:24,"954 Church St, Dallas, TX 75001" +166394,Bose SoundSport Headphones,1,99.99,02/19/19 20:18,"987 Church St, Portland, ME 04101" +166395,Lightning Charging Cable,1,14.95,02/10/19 15:21,"171 Ridge St, San Francisco, CA 94016" +166396,Lightning Charging Cable,2,14.95,02/24/19 14:32,"663 Highland St, Dallas, TX 75001" +166397,Bose SoundSport Headphones,1,99.99,02/27/19 23:07,"602 6th St, Seattle, WA 98101" +166398,iPhone,1,700,02/18/19 21:53,"755 Lincoln St, New York City, NY 10001" +166398,Lightning Charging Cable,1,14.95,02/18/19 21:53,"755 Lincoln St, New York City, NY 10001" +166399,ThinkPad Laptop,1,999.99,02/03/19 22:06,"237 Main St, Atlanta, GA 30301" +166400,iPhone,1,700,02/28/19 11:56,"99 Pine St, San Francisco, CA 94016" +166401,USB-C Charging Cable,1,11.95,02/24/19 11:38,"85 Center St, San Francisco, CA 94016" +166402,27in 4K Gaming Monitor,1,389.99,02/04/19 20:32,"860 Maple St, San Francisco, CA 94016" +166403,AAA Batteries (4-pack),2,2.99,02/19/19 10:15,"398 7th St, San Francisco, CA 94016" +166404,27in 4K Gaming Monitor,1,389.99,02/02/19 06:37,"402 Cedar St, Los Angeles, CA 90001" +166405,Bose SoundSport Headphones,1,99.99,02/17/19 19:39,"56 Jefferson St, Los Angeles, CA 90001" +166406,Bose SoundSport Headphones,1,99.99,02/01/19 18:11,"594 5th St, Boston, MA 02215" +166407,Wired Headphones,1,11.99,02/24/19 21:01,"415 9th St, Dallas, TX 75001" +166408,20in Monitor,1,109.99,02/18/19 17:04,"907 Church St, San Francisco, CA 94016" +166409,USB-C Charging Cable,1,11.95,02/08/19 18:50,"768 Main St, Dallas, TX 75001" +166410,Bose SoundSport Headphones,1,99.99,02/06/19 15:46,"799 Dogwood St, San Francisco, CA 94016" +166411,Wired Headphones,1,11.99,02/23/19 15:57,"112 Maple St, San Francisco, CA 94016" +166412,iPhone,1,700,02/03/19 16:11,"627 14th St, Dallas, TX 75001" +166413,AA Batteries (4-pack),1,3.84,02/27/19 07:27,"547 Cherry St, San Francisco, CA 94016" +166414,Apple Airpods Headphones,1,150,02/07/19 12:14,"898 1st St, New York City, NY 10001" +166415,LG Washing Machine,1,600.0,02/13/19 19:04,"668 10th St, Boston, MA 02215" +166415,Wired Headphones,2,11.99,02/13/19 19:04,"668 10th St, Boston, MA 02215" +166416,Apple Airpods Headphones,1,150,02/25/19 13:21,"640 North St, San Francisco, CA 94016" +166417,Bose SoundSport Headphones,1,99.99,02/23/19 23:34,"129 Hickory St, Dallas, TX 75001" +166418,Vareebadd Phone,1,400,02/10/19 03:56,"18 10th St, Atlanta, GA 30301" +166419,Wired Headphones,1,11.99,02/24/19 08:58,"370 Lincoln St, San Francisco, CA 94016" +166420,Bose SoundSport Headphones,1,99.99,02/26/19 19:31,"61 Hickory St, Dallas, TX 75001" +166421,AA Batteries (4-pack),1,3.84,02/05/19 11:23,"104 Highland St, New York City, NY 10001" +166422,AAA Batteries (4-pack),2,2.99,02/17/19 08:41,"887 9th St, Los Angeles, CA 90001" +166423,Bose SoundSport Headphones,1,99.99,02/02/19 15:41,"961 Ridge St, Los Angeles, CA 90001" +166424,Apple Airpods Headphones,1,150,02/19/19 15:49,"893 14th St, Los Angeles, CA 90001" +166425,27in 4K Gaming Monitor,1,389.99,02/25/19 09:11,"557 Washington St, Austin, TX 73301" +166426,34in Ultrawide Monitor,1,379.99,02/26/19 21:31,"262 12th St, Boston, MA 02215" +166427,Lightning Charging Cable,1,14.95,02/20/19 01:30,"17 Jackson St, New York City, NY 10001" +166428,ThinkPad Laptop,1,999.99,02/15/19 08:46,"862 8th St, San Francisco, CA 94016" +166429,AA Batteries (4-pack),2,3.84,02/16/19 09:52,"570 Lincoln St, Austin, TX 73301" +166430,AAA Batteries (4-pack),1,2.99,02/08/19 23:37,"265 2nd St, Los Angeles, CA 90001" +166431,Lightning Charging Cable,1,14.95,02/19/19 22:55,"966 Park St, San Francisco, CA 94016" +166432,Bose SoundSport Headphones,1,99.99,02/04/19 10:13,"699 Meadow St, Dallas, TX 75001" +166433,Lightning Charging Cable,1,14.95,02/24/19 21:32,"250 9th St, Portland, OR 97035" +166434,34in Ultrawide Monitor,1,379.99,02/11/19 01:32,"252 Park St, San Francisco, CA 94016" +166435,Bose SoundSport Headphones,1,99.99,02/24/19 11:17,"190 Chestnut St, New York City, NY 10001" +166436,AAA Batteries (4-pack),1,2.99,02/03/19 17:32,"44 4th St, Boston, MA 02215" +166437,AA Batteries (4-pack),1,3.84,02/20/19 15:04,"184 13th St, Portland, ME 04101" +166438,Lightning Charging Cable,1,14.95,02/05/19 11:05,"995 Jefferson St, San Francisco, CA 94016" +166439,Flatscreen TV,1,300,02/06/19 19:04,"171 5th St, New York City, NY 10001" +166440,USB-C Charging Cable,1,11.95,02/10/19 12:46,"271 Madison St, Los Angeles, CA 90001" +166441,27in 4K Gaming Monitor,1,389.99,02/28/19 11:39,"245 9th St, Dallas, TX 75001" +166442,Lightning Charging Cable,1,14.95,02/20/19 12:29,"109 Church St, Boston, MA 02215" +166443,Wired Headphones,1,11.99,02/10/19 19:28,"765 Chestnut St, Seattle, WA 98101" +166444,Macbook Pro Laptop,1,1700,02/24/19 22:34,"121 Washington St, Seattle, WA 98101" +166445,Flatscreen TV,1,300,02/16/19 15:33,"407 River St, Portland, OR 97035" +166446,27in FHD Monitor,1,149.99,02/19/19 21:05,"707 12th St, San Francisco, CA 94016" +166447,Apple Airpods Headphones,1,150,02/28/19 01:10,"902 Spruce St, San Francisco, CA 94016" +166448,27in 4K Gaming Monitor,1,389.99,02/01/19 09:19,"598 2nd St, Atlanta, GA 30301" +166449,Wired Headphones,1,11.99,02/18/19 01:23,"675 7th St, Atlanta, GA 30301" +166450,Lightning Charging Cable,1,14.95,02/14/19 20:57,"656 River St, San Francisco, CA 94016" +166451,Wired Headphones,1,11.99,02/16/19 16:49,"766 Church St, Seattle, WA 98101" +166452,AAA Batteries (4-pack),1,2.99,02/28/19 11:21,"441 11th St, Seattle, WA 98101" +166453,Apple Airpods Headphones,1,150,02/27/19 10:13,"357 Church St, Seattle, WA 98101" +166454,27in FHD Monitor,1,149.99,02/05/19 23:09,"72 Adams St, Seattle, WA 98101" +166455,USB-C Charging Cable,1,11.95,02/13/19 10:49,"339 Johnson St, Los Angeles, CA 90001" +166456,Macbook Pro Laptop,1,1700,02/28/19 18:47,"31 Washington St, Boston, MA 02215" +166457,Apple Airpods Headphones,1,150,02/26/19 11:53,"537 Madison St, Portland, OR 97035" +166458,AAA Batteries (4-pack),1,2.99,02/26/19 21:47,"100 Ridge St, Portland, OR 97035" +166459,iPhone,1,700,02/14/19 19:04,"334 Chestnut St, San Francisco, CA 94016" +166460,Macbook Pro Laptop,1,1700,02/18/19 15:28,"650 Highland St, San Francisco, CA 94016" +166461,Macbook Pro Laptop,1,1700,02/25/19 21:43,"755 Wilson St, San Francisco, CA 94016" +166462,ThinkPad Laptop,1,999.99,02/18/19 09:49,"321 1st St, San Francisco, CA 94016" +166463,AA Batteries (4-pack),1,3.84,02/06/19 09:51,"94 North St, Portland, OR 97035" +166464,Bose SoundSport Headphones,1,99.99,02/10/19 21:01,"896 Ridge St, San Francisco, CA 94016" +166465,USB-C Charging Cable,1,11.95,02/20/19 16:13,"878 South St, Atlanta, GA 30301" +166466,AAA Batteries (4-pack),1,2.99,02/02/19 18:34,"626 North St, Dallas, TX 75001" +166467,Lightning Charging Cable,3,14.95,02/25/19 09:55,"185 Sunset St, Dallas, TX 75001" +166468,27in FHD Monitor,1,149.99,02/16/19 09:00,"133 14th St, Boston, MA 02215" +166469,iPhone,1,700,02/07/19 11:38,"844 Elm St, Seattle, WA 98101" +166470,27in FHD Monitor,1,149.99,02/13/19 21:17,"463 Lake St, San Francisco, CA 94016" +166471,Wired Headphones,1,11.99,02/15/19 18:18,"165 Elm St, Los Angeles, CA 90001" +166472,AAA Batteries (4-pack),1,2.99,02/13/19 04:15,"710 Lakeview St, San Francisco, CA 94016" +166473,Apple Airpods Headphones,1,150,02/13/19 20:42,"563 14th St, Seattle, WA 98101" +166474,34in Ultrawide Monitor,1,379.99,02/28/19 21:39,"43 Walnut St, Boston, MA 02215" +166475,USB-C Charging Cable,1,11.95,02/05/19 12:05,"669 Meadow St, Boston, MA 02215" +166476,AA Batteries (4-pack),2,3.84,02/11/19 16:01,"860 4th St, Seattle, WA 98101" +166477,27in FHD Monitor,1,149.99,02/03/19 17:57,"706 Lake St, San Francisco, CA 94016" +166478,Apple Airpods Headphones,1,150,02/11/19 18:14,"418 Park St, San Francisco, CA 94016" +166479,Wired Headphones,1,11.99,02/16/19 10:31,"188 9th St, San Francisco, CA 94016" +166480,Apple Airpods Headphones,1,150,02/20/19 15:05,"434 Pine St, Austin, TX 73301" +166481,Vareebadd Phone,1,400,02/05/19 01:42,"835 Cherry St, Portland, OR 97035" +166482,27in FHD Monitor,1,149.99,02/13/19 10:45,"825 Lakeview St, San Francisco, CA 94016" +166483,AAA Batteries (4-pack),5,2.99,02/12/19 15:02,"22 1st St, San Francisco, CA 94016" +166483,AA Batteries (4-pack),4,3.84,02/12/19 15:02,"22 1st St, San Francisco, CA 94016" +166484,27in FHD Monitor,1,149.99,02/19/19 06:19,"140 Main St, San Francisco, CA 94016" +166485,Wired Headphones,1,11.99,02/22/19 14:43,"920 Wilson St, Dallas, TX 75001" +166486,AA Batteries (4-pack),1,3.84,02/22/19 08:27,"477 14th St, Boston, MA 02215" +166487,AA Batteries (4-pack),1,3.84,02/03/19 12:57,"893 Pine St, Boston, MA 02215" +166488,ThinkPad Laptop,1,999.99,02/01/19 13:07,"766 Chestnut St, New York City, NY 10001" +166489,Lightning Charging Cable,1,14.95,02/25/19 10:47,"864 12th St, Austin, TX 73301" +166490,Bose SoundSport Headphones,1,99.99,02/16/19 11:46,"441 Walnut St, Austin, TX 73301" +166491,USB-C Charging Cable,1,11.95,02/26/19 08:29,"212 Chestnut St, Dallas, TX 75001" +166492,Wired Headphones,1,11.99,02/17/19 17:43,"463 7th St, San Francisco, CA 94016" +166493,Google Phone,1,600,02/08/19 11:54,"113 Madison St, New York City, NY 10001" +166494,Lightning Charging Cable,1,14.95,02/01/19 16:19,"519 Johnson St, San Francisco, CA 94016" +166495,34in Ultrawide Monitor,1,379.99,02/15/19 00:02,"363 Madison St, Los Angeles, CA 90001" +166496,Google Phone,1,600,02/27/19 01:08,"557 Walnut St, New York City, NY 10001" +166496,USB-C Charging Cable,2,11.95,02/27/19 01:08,"557 Walnut St, New York City, NY 10001" +166497,AA Batteries (4-pack),1,3.84,02/08/19 22:05,"99 4th St, Atlanta, GA 30301" +166498,Wired Headphones,1,11.99,02/01/19 19:39,"417 14th St, Seattle, WA 98101" +166499,USB-C Charging Cable,1,11.95,02/10/19 08:49,"70 Madison St, Atlanta, GA 30301" +166500,Macbook Pro Laptop,1,1700,02/25/19 20:56,"320 12th St, San Francisco, CA 94016" +166501,Wired Headphones,1,11.99,02/25/19 21:41,"91 9th St, Austin, TX 73301" +166502,Lightning Charging Cable,1,14.95,02/09/19 13:34,"284 West St, Portland, ME 04101" +166503,Lightning Charging Cable,1,14.95,02/03/19 15:42,"88 Ridge St, New York City, NY 10001" +166504,AAA Batteries (4-pack),3,2.99,02/05/19 13:24,"915 Willow St, San Francisco, CA 94016" +166505,Wired Headphones,2,11.99,02/28/19 17:22,"879 Forest St, San Francisco, CA 94016" +166506,20in Monitor,1,109.99,02/02/19 17:31,"997 Hickory St, Los Angeles, CA 90001" +166507,AAA Batteries (4-pack),1,2.99,02/28/19 20:38,"255 Forest St, New York City, NY 10001" +166508,AA Batteries (4-pack),2,3.84,02/14/19 12:51,"753 8th St, Seattle, WA 98101" +166509,Bose SoundSport Headphones,1,99.99,02/06/19 14:18,"532 7th St, Los Angeles, CA 90001" +166510,AAA Batteries (4-pack),1,2.99,02/28/19 02:44,"371 Wilson St, Dallas, TX 75001" +166511,Apple Airpods Headphones,1,150,02/25/19 17:35,"311 Willow St, New York City, NY 10001" +166512,Flatscreen TV,1,300,02/26/19 00:48,"155 Johnson St, Atlanta, GA 30301" +166513,Lightning Charging Cable,1,14.95,02/21/19 04:03,"238 Elm St, Los Angeles, CA 90001" +166514,Apple Airpods Headphones,1,150,02/08/19 15:26,"29 Cedar St, San Francisco, CA 94016" +166515,Apple Airpods Headphones,1,150,02/25/19 10:06,"852 12th St, San Francisco, CA 94016" +166515,Wired Headphones,2,11.99,02/25/19 10:06,"852 12th St, San Francisco, CA 94016" +166516,Lightning Charging Cable,1,14.95,02/13/19 20:07,"200 Cedar St, Boston, MA 02215" +166517,AA Batteries (4-pack),2,3.84,02/08/19 00:45,"617 Elm St, New York City, NY 10001" +166518,Bose SoundSport Headphones,1,99.99,02/13/19 11:34,"793 4th St, Seattle, WA 98101" +166519,iPhone,1,700,02/25/19 14:17,"37 2nd St, San Francisco, CA 94016" +166520,Wired Headphones,2,11.99,02/14/19 16:43,"107 7th St, New York City, NY 10001" +166521,AA Batteries (4-pack),1,3.84,02/03/19 17:56,"703 Church St, Portland, OR 97035" +166522,AA Batteries (4-pack),3,3.84,02/21/19 01:04,"347 Meadow St, Austin, TX 73301" +166523,34in Ultrawide Monitor,1,379.99,02/12/19 15:36,"246 13th St, San Francisco, CA 94016" +166524,Lightning Charging Cable,1,14.95,02/02/19 20:43,"208 Jefferson St, Dallas, TX 75001" +166525,Lightning Charging Cable,1,14.95,02/26/19 20:16,"488 10th St, Seattle, WA 98101" +166526,USB-C Charging Cable,1,11.95,02/13/19 21:23,"318 12th St, Los Angeles, CA 90001" +166527,Wired Headphones,1,11.99,02/13/19 20:21,"348 Sunset St, Los Angeles, CA 90001" +166528,Wired Headphones,1,11.99,02/09/19 14:27,"541 6th St, San Francisco, CA 94016" +166529,Bose SoundSport Headphones,1,99.99,02/26/19 19:28,"545 Chestnut St, Boston, MA 02215" +166530,Bose SoundSport Headphones,1,99.99,02/16/19 13:03,"486 Lake St, Los Angeles, CA 90001" +166531,AAA Batteries (4-pack),1,2.99,02/17/19 12:01,"876 Adams St, Boston, MA 02215" +166532,AAA Batteries (4-pack),1,2.99,02/03/19 18:21,"578 7th St, New York City, NY 10001" +166533,Lightning Charging Cable,1,14.95,02/15/19 09:22,"694 Chestnut St, San Francisco, CA 94016" +166534,27in FHD Monitor,1,149.99,02/28/19 13:11,"167 5th St, Atlanta, GA 30301" +166535,Macbook Pro Laptop,1,1700,02/04/19 00:13,"920 7th St, Austin, TX 73301" +166536,Wired Headphones,1,11.99,02/25/19 09:25,"285 Sunset St, San Francisco, CA 94016" +166537,34in Ultrawide Monitor,1,379.99,02/26/19 12:05,"648 10th St, San Francisco, CA 94016" +166538,iPhone,1,700,02/27/19 17:02,"766 12th St, Portland, OR 97035" +166539,Bose SoundSport Headphones,1,99.99,02/11/19 10:51,"190 5th St, Los Angeles, CA 90001" +166540,AAA Batteries (4-pack),1,2.99,02/24/19 18:52,"783 Lake St, Los Angeles, CA 90001" +166541,USB-C Charging Cable,1,11.95,02/26/19 09:17,"716 North St, San Francisco, CA 94016" +166542,USB-C Charging Cable,1,11.95,02/06/19 06:18,"171 Chestnut St, New York City, NY 10001" +166543,AA Batteries (4-pack),4,3.84,02/03/19 15:01,"753 1st St, Boston, MA 02215" +166544,Wired Headphones,1,11.99,02/01/19 18:34,"906 North St, Boston, MA 02215" +166545,Apple Airpods Headphones,1,150,02/07/19 17:20,"612 Madison St, Austin, TX 73301" +166546,AA Batteries (4-pack),1,3.84,02/22/19 13:17,"671 1st St, Seattle, WA 98101" +166547,Bose SoundSport Headphones,1,99.99,02/22/19 18:53,"700 Forest St, Dallas, TX 75001" +166548,Apple Airpods Headphones,1,150,02/12/19 15:01,"430 6th St, San Francisco, CA 94016" +166549,Apple Airpods Headphones,1,150,02/25/19 21:29,"252 Dogwood St, Austin, TX 73301" +166550,iPhone,1,700,02/28/19 23:31,"885 Jefferson St, Atlanta, GA 30301" +166551,AA Batteries (4-pack),1,3.84,02/05/19 15:24,"753 10th St, San Francisco, CA 94016" +166552,Bose SoundSport Headphones,1,99.99,02/20/19 20:58,"743 Adams St, San Francisco, CA 94016" +166553,AA Batteries (4-pack),1,3.84,02/19/19 08:45,"354 Willow St, Los Angeles, CA 90001" +166554,Lightning Charging Cable,1,14.95,02/11/19 13:05,"348 Main St, New York City, NY 10001" +166555,AA Batteries (4-pack),1,3.84,02/25/19 18:47,"219 Sunset St, Austin, TX 73301" +166556,Apple Airpods Headphones,1,150,02/04/19 07:31,"795 Forest St, Dallas, TX 75001" +166557,AA Batteries (4-pack),1,3.84,02/17/19 09:04,"761 Maple St, Portland, ME 04101" +166558,AA Batteries (4-pack),1,3.84,02/15/19 09:28,"173 Willow St, Boston, MA 02215" +166559,Bose SoundSport Headphones,1,99.99,02/02/19 17:40,"19 Dogwood St, Dallas, TX 75001" +166559,Vareebadd Phone,1,400,02/02/19 17:40,"19 Dogwood St, Dallas, TX 75001" +166560,Lightning Charging Cable,1,14.95,02/08/19 07:48,"982 6th St, San Francisco, CA 94016" +166561,Wired Headphones,1,11.99,02/02/19 11:14,"932 North St, Dallas, TX 75001" +166562,AAA Batteries (4-pack),1,2.99,02/08/19 19:36,"562 Wilson St, Atlanta, GA 30301" +166563,Lightning Charging Cable,1,14.95,02/08/19 17:35,"674 9th St, New York City, NY 10001" +166564,Lightning Charging Cable,1,14.95,02/08/19 12:53,"770 Walnut St, Los Angeles, CA 90001" +166565,Wired Headphones,1,11.99,02/13/19 10:53,"380 7th St, San Francisco, CA 94016" +166566,Wired Headphones,1,11.99,02/28/19 13:43,"839 9th St, San Francisco, CA 94016" +166567,Lightning Charging Cable,1,14.95,02/28/19 04:24,"615 8th St, New York City, NY 10001" +166568,USB-C Charging Cable,1,11.95,02/22/19 21:05,"186 6th St, San Francisco, CA 94016" +166569,34in Ultrawide Monitor,1,379.99,02/22/19 19:17,"49 River St, Dallas, TX 75001" +166570,USB-C Charging Cable,1,11.95,02/14/19 04:39,"857 Madison St, San Francisco, CA 94016" +166571,AA Batteries (4-pack),2,3.84,02/10/19 20:25,"928 Hickory St, San Francisco, CA 94016" +166572,Flatscreen TV,1,300,02/18/19 13:06,"871 Hickory St, San Francisco, CA 94016" +166573,Apple Airpods Headphones,1,150,02/05/19 18:43,"917 North St, New York City, NY 10001" +166574,AAA Batteries (4-pack),1,2.99,02/09/19 16:00,"757 North St, Atlanta, GA 30301" +166575,Wired Headphones,1,11.99,02/14/19 13:04,"36 Center St, Boston, MA 02215" +166576,Flatscreen TV,1,300,02/22/19 19:44,"316 Johnson St, Boston, MA 02215" +166577,20in Monitor,1,109.99,02/28/19 23:26,"468 Forest St, New York City, NY 10001" +166578,Lightning Charging Cable,1,14.95,02/28/19 20:53,"736 8th St, San Francisco, CA 94016" +166579,34in Ultrawide Monitor,1,379.99,02/11/19 14:32,"262 Jackson St, San Francisco, CA 94016" +166580,Apple Airpods Headphones,1,150,02/28/19 10:11,"82 Cherry St, New York City, NY 10001" +166581,AA Batteries (4-pack),1,3.84,02/04/19 11:54,"478 Lake St, San Francisco, CA 94016" +166581,Wired Headphones,1,11.99,02/04/19 11:54,"478 Lake St, San Francisco, CA 94016" +166582,27in 4K Gaming Monitor,1,389.99,02/10/19 04:13,"315 Elm St, Los Angeles, CA 90001" +166583,Flatscreen TV,1,300,02/05/19 17:19,"101 Main St, Los Angeles, CA 90001" +166584,Wired Headphones,1,11.99,02/15/19 14:25,"839 Jefferson St, New York City, NY 10001" +166585,AAA Batteries (4-pack),1,2.99,02/02/19 18:52,"6 14th St, Boston, MA 02215" +166586,USB-C Charging Cable,1,11.95,02/17/19 20:16,"570 Lincoln St, New York City, NY 10001" +166587,Lightning Charging Cable,1,14.95,02/12/19 13:12,"941 1st St, San Francisco, CA 94016" +166588,27in FHD Monitor,1,149.99,02/03/19 16:21,"351 Adams St, San Francisco, CA 94016" +166589,Lightning Charging Cable,1,14.95,02/26/19 12:13,"161 Center St, Atlanta, GA 30301" +166590,27in FHD Monitor,1,149.99,02/28/19 15:33,"560 Jackson St, San Francisco, CA 94016" +166591,AA Batteries (4-pack),2,3.84,02/24/19 12:47,"793 Meadow St, Boston, MA 02215" +166592,USB-C Charging Cable,1,11.95,02/09/19 11:50,"681 Willow St, Portland, OR 97035" +166593,27in FHD Monitor,1,149.99,02/05/19 15:30,"683 6th St, Los Angeles, CA 90001" +166593,Apple Airpods Headphones,1,150,02/05/19 15:30,"683 6th St, Los Angeles, CA 90001" +166594,27in FHD Monitor,1,149.99,02/16/19 14:07,"509 Ridge St, San Francisco, CA 94016" +166595,iPhone,1,700,02/14/19 19:51,"826 12th St, San Francisco, CA 94016" +166596,iPhone,1,700,02/07/19 12:13,"274 7th St, New York City, NY 10001" +166596,Lightning Charging Cable,1,14.95,02/07/19 12:13,"274 7th St, New York City, NY 10001" +166597,Bose SoundSport Headphones,1,99.99,02/13/19 11:17,"209 8th St, Los Angeles, CA 90001" +166598,Wired Headphones,1,11.99,02/09/19 07:12,"372 Washington St, San Francisco, CA 94016" +166599,Bose SoundSport Headphones,1,99.99,02/08/19 09:32,"249 Willow St, New York City, NY 10001" +166600,AA Batteries (4-pack),1,3.84,02/06/19 19:32,"40 2nd St, Dallas, TX 75001" +166601,Wired Headphones,1,11.99,02/04/19 12:18,"71 5th St, New York City, NY 10001" +166602,Lightning Charging Cable,1,14.95,02/22/19 14:00,"916 Lincoln St, New York City, NY 10001" +166603,Apple Airpods Headphones,1,150,02/21/19 03:39,"828 Dogwood St, Austin, TX 73301" +166604,Wired Headphones,1,11.99,02/22/19 16:13,"676 West St, San Francisco, CA 94016" +166605,34in Ultrawide Monitor,1,379.99,02/13/19 13:34,"618 1st St, Austin, TX 73301" +166606,iPhone,1,700,02/03/19 08:10,"596 Dogwood St, Boston, MA 02215" +166607,AAA Batteries (4-pack),3,2.99,02/20/19 14:28,"388 1st St, Los Angeles, CA 90001" +166608,Vareebadd Phone,1,400,02/22/19 18:11,"440 14th St, Dallas, TX 75001" +166609,34in Ultrawide Monitor,1,379.99,02/15/19 06:44,"206 12th St, New York City, NY 10001" +166610,AAA Batteries (4-pack),1,2.99,02/28/19 21:26,"50 Meadow St, Austin, TX 73301" +166611,Vareebadd Phone,1,400,02/14/19 09:03,"326 Center St, Dallas, TX 75001" +166612,ThinkPad Laptop,1,999.99,02/14/19 19:44,"357 Madison St, Seattle, WA 98101" +166613,Lightning Charging Cable,1,14.95,02/04/19 09:45,"554 Pine St, Los Angeles, CA 90001" +166614,AAA Batteries (4-pack),1,2.99,02/18/19 06:22,"538 Lakeview St, Los Angeles, CA 90001" +166615,AAA Batteries (4-pack),3,2.99,02/04/19 10:42,"156 Ridge St, New York City, NY 10001" +166616,Apple Airpods Headphones,1,150,02/09/19 10:48,"928 Adams St, Portland, OR 97035" +166616,AA Batteries (4-pack),2,3.84,02/09/19 10:48,"928 Adams St, Portland, OR 97035" +166617,iPhone,1,700,02/22/19 15:18,"128 Lake St, Boston, MA 02215" +166618,27in 4K Gaming Monitor,1,389.99,02/07/19 03:05,"380 14th St, San Francisco, CA 94016" +166619,Wired Headphones,1,11.99,02/03/19 22:18,"163 Chestnut St, Dallas, TX 75001" +166620,AA Batteries (4-pack),2,3.84,02/09/19 06:59,"464 Johnson St, Austin, TX 73301" +166621,AAA Batteries (4-pack),3,2.99,02/24/19 16:00,"758 Cedar St, Portland, OR 97035" +166622,USB-C Charging Cable,1,11.95,02/12/19 11:57,"186 Forest St, San Francisco, CA 94016" +166623,USB-C Charging Cable,1,11.95,02/10/19 10:21,"388 Adams St, Atlanta, GA 30301" +166624,Apple Airpods Headphones,1,150,02/23/19 06:48,"400 West St, Los Angeles, CA 90001" +166625,AA Batteries (4-pack),1,3.84,02/28/19 00:54,"115 1st St, Portland, OR 97035" +166626,27in FHD Monitor,1,149.99,02/01/19 13:43,"737 Ridge St, San Francisco, CA 94016" +166627,27in 4K Gaming Monitor,1,389.99,02/04/19 19:49,"114 Walnut St, Dallas, TX 75001" +166628,AAA Batteries (4-pack),1,2.99,02/17/19 19:05,"259 Madison St, Austin, TX 73301" +166629,USB-C Charging Cable,1,11.95,02/25/19 14:47,"646 Cedar St, San Francisco, CA 94016" +166630,34in Ultrawide Monitor,1,379.99,02/17/19 13:20,"113 North St, Los Angeles, CA 90001" +166631,20in Monitor,1,109.99,02/13/19 13:21,"53 Church St, San Francisco, CA 94016" +166632,Bose SoundSport Headphones,1,99.99,02/17/19 09:25,"989 10th St, Boston, MA 02215" +166632,Google Phone,1,600,02/17/19 09:25,"989 10th St, Boston, MA 02215" +166633,Apple Airpods Headphones,1,150,02/15/19 13:22,"439 Highland St, Austin, TX 73301" +166634,USB-C Charging Cable,1,11.95,02/02/19 07:00,"252 Lakeview St, Los Angeles, CA 90001" +166635,27in FHD Monitor,1,149.99,02/03/19 01:10,"71 Hickory St, Dallas, TX 75001" +166636,Flatscreen TV,1,300,02/19/19 12:27,"464 River St, Boston, MA 02215" +166637,AAA Batteries (4-pack),1,2.99,02/27/19 16:03,"326 13th St, Los Angeles, CA 90001" +166638,AAA Batteries (4-pack),1,2.99,02/18/19 19:52,"580 Cherry St, Seattle, WA 98101" +166639,Bose SoundSport Headphones,1,99.99,02/11/19 20:54,"618 Meadow St, Austin, TX 73301" +166640,Macbook Pro Laptop,1,1700,02/03/19 12:17,"868 Johnson St, Seattle, WA 98101" +166641,Apple Airpods Headphones,1,150,02/22/19 20:30,"781 4th St, Los Angeles, CA 90001" +166642,Lightning Charging Cable,1,14.95,02/02/19 18:19,"750 River St, Atlanta, GA 30301" +166643,27in 4K Gaming Monitor,1,389.99,02/04/19 17:06,"536 West St, Dallas, TX 75001" +166644,34in Ultrawide Monitor,1,379.99,02/26/19 18:40,"588 Center St, New York City, NY 10001" +166645,AA Batteries (4-pack),1,3.84,02/16/19 18:16,"397 5th St, San Francisco, CA 94016" +166646,Wired Headphones,1,11.99,02/22/19 17:27,"288 Walnut St, San Francisco, CA 94016" +166647,27in 4K Gaming Monitor,1,389.99,02/16/19 21:52,"454 Madison St, Dallas, TX 75001" +166648,Wired Headphones,1,11.99,02/01/19 07:50,"547 1st St, New York City, NY 10001" +166649,27in 4K Gaming Monitor,1,389.99,02/06/19 20:10,"650 South St, San Francisco, CA 94016" +166650,Apple Airpods Headphones,1,150,02/10/19 17:32,"708 Jackson St, San Francisco, CA 94016" +166651,27in 4K Gaming Monitor,1,389.99,02/28/19 14:40,"388 2nd St, Los Angeles, CA 90001" +166652,Wired Headphones,2,11.99,02/04/19 11:38,"371 Church St, Austin, TX 73301" +166653,Apple Airpods Headphones,1,150,02/05/19 21:46,"221 Spruce St, Austin, TX 73301" +166654,27in 4K Gaming Monitor,1,389.99,02/07/19 08:54,"30 Sunset St, San Francisco, CA 94016" +166655,Google Phone,1,600,02/13/19 19:53,"281 Spruce St, San Francisco, CA 94016" +166656,Macbook Pro Laptop,1,1700,02/12/19 23:23,"66 Ridge St, Austin, TX 73301" +166657,20in Monitor,1,109.99,02/20/19 04:04,"941 Walnut St, New York City, NY 10001" +166658,Apple Airpods Headphones,1,150,02/05/19 17:02,"257 Highland St, New York City, NY 10001" +166659,AA Batteries (4-pack),1,3.84,02/09/19 23:33,"903 Pine St, Los Angeles, CA 90001" +166660,Google Phone,1,600,02/28/19 14:38,"301 Cedar St, Los Angeles, CA 90001" +166661,LG Dryer,1,600.0,02/23/19 00:03,"139 4th St, Los Angeles, CA 90001" +166662,Flatscreen TV,1,300,02/07/19 12:28,"898 14th St, New York City, NY 10001" +166663,AAA Batteries (4-pack),1,2.99,02/17/19 08:04,"949 Wilson St, San Francisco, CA 94016" +166664,AA Batteries (4-pack),1,3.84,02/27/19 03:24,"375 1st St, San Francisco, CA 94016" +166665,Apple Airpods Headphones,1,150,02/03/19 18:39,"303 Highland St, Portland, ME 04101" +166666,AA Batteries (4-pack),1,3.84,02/15/19 12:49,"113 Madison St, Los Angeles, CA 90001" +166667,27in FHD Monitor,1,149.99,02/05/19 06:39,"45 Wilson St, San Francisco, CA 94016" +166668,ThinkPad Laptop,1,999.99,02/25/19 11:40,"303 Madison St, San Francisco, CA 94016" +166669,USB-C Charging Cable,1,11.95,02/02/19 22:03,"83 South St, Boston, MA 02215" +166670,USB-C Charging Cable,1,11.95,02/21/19 10:56,"958 Cedar St, Atlanta, GA 30301" +166671,USB-C Charging Cable,1,11.95,02/10/19 18:29,"328 West St, San Francisco, CA 94016" +166672,Apple Airpods Headphones,1,150,02/20/19 09:17,"837 5th St, Boston, MA 02215" +166673,27in 4K Gaming Monitor,1,389.99,02/20/19 15:19,"840 Park St, New York City, NY 10001" +166674,iPhone,1,700,02/08/19 22:21,"738 1st St, Boston, MA 02215" +166675,Google Phone,1,600,02/06/19 21:44,"15 Meadow St, Los Angeles, CA 90001" +166676,AA Batteries (4-pack),1,3.84,02/27/19 10:35,"749 Walnut St, Boston, MA 02215" +166677,Bose SoundSport Headphones,1,99.99,02/08/19 11:43,"56 11th St, San Francisco, CA 94016" +166678,Wired Headphones,1,11.99,02/18/19 19:20,"105 Hickory St, Portland, OR 97035" +166679,USB-C Charging Cable,1,11.95,02/14/19 16:39,"992 Walnut St, Los Angeles, CA 90001" +166680,AAA Batteries (4-pack),1,2.99,02/20/19 07:48,"753 Wilson St, San Francisco, CA 94016" +166681,Lightning Charging Cable,1,14.95,02/14/19 17:30,"467 7th St, Seattle, WA 98101" +166682,AA Batteries (4-pack),1,3.84,02/05/19 18:17,"384 Sunset St, Atlanta, GA 30301" +166683,Apple Airpods Headphones,1,150,02/21/19 16:30,"613 Walnut St, San Francisco, CA 94016" +166684,Apple Airpods Headphones,1,150,02/22/19 09:19,"22 13th St, Los Angeles, CA 90001" +166685,Wired Headphones,1,11.99,02/19/19 00:44,"844 13th St, Portland, OR 97035" +166686,USB-C Charging Cable,1,11.95,02/13/19 16:32,"266 Park St, Atlanta, GA 30301" +166687,20in Monitor,1,109.99,02/21/19 20:46,"365 West St, New York City, NY 10001" +166688,AA Batteries (4-pack),1,3.84,02/23/19 15:00,"63 4th St, San Francisco, CA 94016" +166689,Bose SoundSport Headphones,1,99.99,02/11/19 11:10,"413 Park St, Atlanta, GA 30301" +166690,AAA Batteries (4-pack),1,2.99,02/03/19 20:54,"1 12th St, Atlanta, GA 30301" +166691,AAA Batteries (4-pack),1,2.99,02/16/19 18:13,"76 River St, Austin, TX 73301" +166692,USB-C Charging Cable,1,11.95,02/23/19 02:52,"3 Jefferson St, Los Angeles, CA 90001" +166693,AA Batteries (4-pack),3,3.84,02/26/19 17:48,"15 10th St, Seattle, WA 98101" +166694,Bose SoundSport Headphones,1,99.99,02/20/19 21:14,"673 8th St, Boston, MA 02215" +166695,27in 4K Gaming Monitor,1,389.99,02/22/19 08:08,"59 Main St, San Francisco, CA 94016" +166696,Bose SoundSport Headphones,1,99.99,02/14/19 22:20,"412 Willow St, Seattle, WA 98101" +166697,ThinkPad Laptop,1,999.99,02/09/19 13:41,"862 10th St, San Francisco, CA 94016" +166698,Wired Headphones,1,11.99,02/13/19 09:01,"720 10th St, New York City, NY 10001" +166699,Wired Headphones,1,11.99,02/05/19 17:16,"938 Washington St, New York City, NY 10001" +,,,,, +166700,AA Batteries (4-pack),1,3.84,02/15/19 09:40,"261 Cedar St, Los Angeles, CA 90001" +166701,27in FHD Monitor,1,149.99,02/07/19 14:43,"820 Walnut St, San Francisco, CA 94016" +166702,AA Batteries (4-pack),1,3.84,02/07/19 09:31,"982 Spruce St, Seattle, WA 98101" +166703,AAA Batteries (4-pack),1,2.99,02/25/19 21:28,"757 Elm St, Dallas, TX 75001" +166704,Apple Airpods Headphones,1,150,02/25/19 17:00,"4 Spruce St, Dallas, TX 75001" +166705,AA Batteries (4-pack),1,3.84,02/14/19 11:08,"545 Jackson St, San Francisco, CA 94016" +166706,Wired Headphones,1,11.99,02/16/19 22:06,"631 River St, Los Angeles, CA 90001" +166707,Google Phone,1,600,02/04/19 16:17,"35 1st St, Atlanta, GA 30301" +166707,USB-C Charging Cable,1,11.95,02/04/19 16:17,"35 1st St, Atlanta, GA 30301" +166708,AA Batteries (4-pack),1,3.84,02/08/19 14:05,"979 7th St, San Francisco, CA 94016" +166709,AAA Batteries (4-pack),1,2.99,02/26/19 12:38,"722 Highland St, San Francisco, CA 94016" +166710,AA Batteries (4-pack),1,3.84,02/01/19 22:32,"437 Willow St, San Francisco, CA 94016" +166711,AA Batteries (4-pack),1,3.84,02/17/19 17:53,"851 South St, Atlanta, GA 30301" +166712,Macbook Pro Laptop,1,1700,02/08/19 16:31,"263 Forest St, Los Angeles, CA 90001" +166713,AAA Batteries (4-pack),1,2.99,02/22/19 19:21,"377 Willow St, San Francisco, CA 94016" +166714,Lightning Charging Cable,1,14.95,02/25/19 23:33,"925 Willow St, Los Angeles, CA 90001" +166715,AAA Batteries (4-pack),1,2.99,02/17/19 21:57,"864 Church St, New York City, NY 10001" +166716,USB-C Charging Cable,1,11.95,02/08/19 15:53,"331 Church St, San Francisco, CA 94016" +166717,AA Batteries (4-pack),1,3.84,02/20/19 00:23,"578 Highland St, Portland, OR 97035" +166718,Lightning Charging Cable,1,14.95,02/13/19 11:57,"42 10th St, Boston, MA 02215" +166719,Flatscreen TV,1,300,02/21/19 17:02,"519 1st St, San Francisco, CA 94016" +166720,Apple Airpods Headphones,1,150,02/11/19 20:48,"412 Lakeview St, Boston, MA 02215" +166721,Vareebadd Phone,1,400,02/03/19 19:09,"346 1st St, San Francisco, CA 94016" +166721,Wired Headphones,2,11.99,02/03/19 19:09,"346 1st St, San Francisco, CA 94016" +166722,AAA Batteries (4-pack),1,2.99,02/08/19 21:41,"446 Lakeview St, Dallas, TX 75001" +166723,iPhone,1,700,02/08/19 00:10,"966 Forest St, Los Angeles, CA 90001" +166724,AAA Batteries (4-pack),1,2.99,02/27/19 10:18,"672 5th St, Los Angeles, CA 90001" +166725,LG Washing Machine,1,600.0,02/13/19 12:23,"233 Lincoln St, Dallas, TX 75001" +166726,Macbook Pro Laptop,1,1700,02/22/19 15:19,"909 Pine St, Dallas, TX 75001" +166727,AAA Batteries (4-pack),1,2.99,02/11/19 15:28,"171 Madison St, Portland, OR 97035" +166728,Wired Headphones,1,11.99,02/09/19 05:32,"412 Lakeview St, New York City, NY 10001" +166729,ThinkPad Laptop,1,999.99,02/08/19 16:48,"48 Johnson St, New York City, NY 10001" +166730,USB-C Charging Cable,1,11.95,02/08/19 13:20,"511 1st St, Boston, MA 02215" +166731,Lightning Charging Cable,1,14.95,02/27/19 16:44,"284 Johnson St, San Francisco, CA 94016" +166732,Google Phone,1,600,02/15/19 10:27,"631 Main St, San Francisco, CA 94016" +166733,iPhone,1,700,02/03/19 10:04,"409 Meadow St, San Francisco, CA 94016" +166734,Bose SoundSport Headphones,1,99.99,02/14/19 12:22,"677 13th St, Austin, TX 73301" +166735,Wired Headphones,1,11.99,02/25/19 18:46,"356 Jefferson St, San Francisco, CA 94016" +166736,USB-C Charging Cable,1,11.95,02/20/19 09:10,"622 Chestnut St, Austin, TX 73301" +166737,Google Phone,1,600,02/14/19 16:45,"2 7th St, New York City, NY 10001" +166738,iPhone,1,700,02/17/19 18:04,"427 Hill St, San Francisco, CA 94016" +166738,Lightning Charging Cable,2,14.95,02/17/19 18:04,"427 Hill St, San Francisco, CA 94016" +166739,Wired Headphones,1,11.99,02/24/19 18:07,"206 Highland St, San Francisco, CA 94016" +166740,27in FHD Monitor,1,149.99,02/26/19 15:01,"199 Jackson St, San Francisco, CA 94016" +166741,USB-C Charging Cable,1,11.95,02/24/19 14:55,"828 Ridge St, Los Angeles, CA 90001" +166742,Bose SoundSport Headphones,1,99.99,02/02/19 22:20,"680 6th St, Boston, MA 02215" +166743,AAA Batteries (4-pack),1,2.99,02/11/19 17:01,"921 4th St, Boston, MA 02215" +166744,Lightning Charging Cable,1,14.95,02/01/19 23:49,"858 12th St, New York City, NY 10001" +166745,Google Phone,1,600,02/16/19 15:32,"513 Spruce St, Boston, MA 02215" +166746,iPhone,1,700,02/09/19 16:13,"172 Johnson St, New York City, NY 10001" +166747,Macbook Pro Laptop,1,1700,02/20/19 00:00,"264 Lincoln St, Los Angeles, CA 90001" +166748,Bose SoundSport Headphones,1,99.99,02/01/19 16:09,"411 River St, New York City, NY 10001" +166749,USB-C Charging Cable,1,11.95,02/08/19 19:36,"446 Main St, Dallas, TX 75001" +166749,USB-C Charging Cable,1,11.95,02/08/19 19:36,"446 Main St, Dallas, TX 75001" +166750,Wired Headphones,1,11.99,02/08/19 06:44,"564 Main St, Atlanta, GA 30301" +166751,27in FHD Monitor,1,149.99,02/21/19 22:13,"798 Center St, San Francisco, CA 94016" +166752,20in Monitor,1,109.99,02/05/19 15:40,"520 Lakeview St, Dallas, TX 75001" +166753,Bose SoundSport Headphones,1,99.99,02/23/19 20:49,"249 South St, San Francisco, CA 94016" +166754,USB-C Charging Cable,1,11.95,02/21/19 09:49,"29 Park St, San Francisco, CA 94016" +166755,Apple Airpods Headphones,1,150,02/11/19 03:18,"820 2nd St, Dallas, TX 75001" +166756,USB-C Charging Cable,1,11.95,02/21/19 13:40,"608 River St, Seattle, WA 98101" +166757,Apple Airpods Headphones,1,150,02/07/19 06:51,"691 Johnson St, San Francisco, CA 94016" +166758,AAA Batteries (4-pack),1,2.99,02/19/19 13:01,"119 Spruce St, San Francisco, CA 94016" +166759,AA Batteries (4-pack),1,3.84,02/14/19 14:32,"953 Cherry St, San Francisco, CA 94016" +166760,Wired Headphones,1,11.99,02/08/19 19:28,"586 Johnson St, Boston, MA 02215" +166761,27in FHD Monitor,1,149.99,02/02/19 10:02,"528 West St, New York City, NY 10001" +166762,Bose SoundSport Headphones,1,99.99,02/27/19 19:46,"673 Cedar St, Seattle, WA 98101" +166763,Google Phone,1,600,02/02/19 13:43,"426 Park St, Atlanta, GA 30301" +166764,27in 4K Gaming Monitor,1,389.99,02/27/19 20:54,"82 Lake St, Los Angeles, CA 90001" +166765,USB-C Charging Cable,1,11.95,02/07/19 08:55,"601 Adams St, Los Angeles, CA 90001" +166766,Wired Headphones,1,11.99,02/14/19 21:14,"429 Lakeview St, San Francisco, CA 94016" +166767,iPhone,1,700,02/24/19 20:28,"757 4th St, San Francisco, CA 94016" +166768,ThinkPad Laptop,1,999.99,02/08/19 13:38,"147 2nd St, Atlanta, GA 30301" +166769,Wired Headphones,1,11.99,02/22/19 00:12,"730 Ridge St, Seattle, WA 98101" +166770,AAA Batteries (4-pack),1,2.99,02/03/19 09:19,"714 Center St, Austin, TX 73301" +166771,Wired Headphones,1,11.99,02/23/19 13:50,"935 Elm St, San Francisco, CA 94016" +166772,USB-C Charging Cable,1,11.95,02/17/19 17:08,"24 Maple St, San Francisco, CA 94016" +166773,iPhone,1,700,02/07/19 14:19,"679 West St, Dallas, TX 75001" +166773,Lightning Charging Cable,1,14.95,02/07/19 14:19,"679 West St, Dallas, TX 75001" +166774,Lightning Charging Cable,1,14.95,02/10/19 11:17,"474 Meadow St, San Francisco, CA 94016" +166775,ThinkPad Laptop,1,999.99,02/24/19 17:40,"221 Main St, Boston, MA 02215" +166776,USB-C Charging Cable,2,11.95,02/02/19 23:42,"457 Forest St, Boston, MA 02215" +166777,Apple Airpods Headphones,1,150,02/23/19 00:59,"401 12th St, Portland, OR 97035" +166778,USB-C Charging Cable,1,11.95,02/15/19 13:49,"746 Willow St, Boston, MA 02215" +166779,AA Batteries (4-pack),1,3.84,02/27/19 09:48,"386 Chestnut St, San Francisco, CA 94016" +166780,Google Phone,1,600,02/14/19 09:16,"984 Cherry St, New York City, NY 10001" +166780,Wired Headphones,1,11.99,02/14/19 09:16,"984 Cherry St, New York City, NY 10001" +166780,27in FHD Monitor,1,149.99,02/14/19 09:16,"984 Cherry St, New York City, NY 10001" +166781,Apple Airpods Headphones,1,150,02/11/19 06:50,"412 Park St, Los Angeles, CA 90001" +166782,20in Monitor,1,109.99,02/02/19 13:52,"489 Lincoln St, Portland, OR 97035" +166783,AA Batteries (4-pack),1,3.84,02/16/19 07:32,"608 Adams St, New York City, NY 10001" +166784,AA Batteries (4-pack),1,3.84,02/02/19 03:10,"189 Lakeview St, Boston, MA 02215" +166785,AA Batteries (4-pack),3,3.84,02/25/19 10:20,"535 Walnut St, Boston, MA 02215" +166786,iPhone,1,700,02/17/19 19:01,"63 Lake St, San Francisco, CA 94016" +166787,LG Dryer,1,600.0,02/05/19 10:36,"215 Sunset St, New York City, NY 10001" +166788,AAA Batteries (4-pack),1,2.99,02/06/19 18:46,"313 Cherry St, Seattle, WA 98101" +166789,Vareebadd Phone,1,400,02/24/19 15:06,"764 7th St, Atlanta, GA 30301" +166789,USB-C Charging Cable,1,11.95,02/24/19 15:06,"764 7th St, Atlanta, GA 30301" +166790,USB-C Charging Cable,1,11.95,02/15/19 14:00,"925 Meadow St, Portland, OR 97035" +166791,AAA Batteries (4-pack),3,2.99,02/13/19 10:59,"700 1st St, Los Angeles, CA 90001" +166792,27in 4K Gaming Monitor,1,389.99,02/02/19 00:38,"270 Chestnut St, New York City, NY 10001" +166793,Wired Headphones,2,11.99,02/03/19 18:49,"565 Church St, San Francisco, CA 94016" +166794,Apple Airpods Headphones,1,150,02/25/19 23:52,"700 Church St, Portland, ME 04101" +166795,Apple Airpods Headphones,1,150,02/25/19 12:26,"739 Pine St, Atlanta, GA 30301" +166796,Wired Headphones,1,11.99,02/17/19 10:46,"666 River St, San Francisco, CA 94016" +166797,Apple Airpods Headphones,1,150,02/18/19 21:10,"165 Spruce St, San Francisco, CA 94016" +166798,Apple Airpods Headphones,1,150,02/14/19 21:33,"838 Main St, Los Angeles, CA 90001" +166798,Bose SoundSport Headphones,1,99.99,02/14/19 21:33,"838 Main St, Los Angeles, CA 90001" +166799,Lightning Charging Cable,1,14.95,02/17/19 23:34,"308 North St, San Francisco, CA 94016" +166800,34in Ultrawide Monitor,1,379.99,02/07/19 07:16,"560 13th St, New York City, NY 10001" +166801,Wired Headphones,1,11.99,02/02/19 00:46,"175 12th St, San Francisco, CA 94016" +166802,iPhone,1,700,02/02/19 18:51,"86 6th St, Boston, MA 02215" +166803,USB-C Charging Cable,1,11.95,02/01/19 18:22,"903 2nd St, San Francisco, CA 94016" +166804,Wired Headphones,1,11.99,02/13/19 19:48,"885 Highland St, San Francisco, CA 94016" +166805,Vareebadd Phone,1,400,02/03/19 11:50,"238 Chestnut St, Los Angeles, CA 90001" +166806,USB-C Charging Cable,1,11.95,02/23/19 19:56,"929 Main St, Dallas, TX 75001" +166807,AAA Batteries (4-pack),1,2.99,02/25/19 12:01,"456 Lakeview St, San Francisco, CA 94016" +166808,Apple Airpods Headphones,1,150,02/09/19 06:28,"839 North St, San Francisco, CA 94016" +166809,AA Batteries (4-pack),1,3.84,02/10/19 09:05,"303 Main St, San Francisco, CA 94016" +166810,Flatscreen TV,1,300,02/11/19 10:47,"630 Adams St, Dallas, TX 75001" +166811,34in Ultrawide Monitor,1,379.99,02/26/19 15:43,"524 Park St, Los Angeles, CA 90001" +166812,Bose SoundSport Headphones,1,99.99,02/18/19 13:45,"376 Cedar St, San Francisco, CA 94016" +166813,Bose SoundSport Headphones,1,99.99,02/16/19 10:20,"972 Main St, Los Angeles, CA 90001" +166814,AA Batteries (4-pack),1,3.84,02/22/19 18:33,"304 Lakeview St, Los Angeles, CA 90001" +166815,AA Batteries (4-pack),1,3.84,02/19/19 19:11,"660 4th St, Los Angeles, CA 90001" +166816,Wired Headphones,1,11.99,02/19/19 14:00,"465 Meadow St, Los Angeles, CA 90001" +166817,USB-C Charging Cable,1,11.95,02/25/19 09:50,"931 Elm St, Dallas, TX 75001" +166818,Bose SoundSport Headphones,1,99.99,02/15/19 22:33,"364 12th St, Boston, MA 02215" +166819,27in FHD Monitor,1,149.99,02/23/19 21:04,"475 Jackson St, Boston, MA 02215" +166820,Apple Airpods Headphones,1,150,02/22/19 19:40,"733 Spruce St, Boston, MA 02215" +166821,Bose SoundSport Headphones,1,99.99,02/25/19 15:10,"911 River St, Los Angeles, CA 90001" +166822,Wired Headphones,1,11.99,02/28/19 12:01,"818 Lincoln St, Los Angeles, CA 90001" +166823,Apple Airpods Headphones,1,150,02/16/19 14:27,"792 7th St, New York City, NY 10001" +166824,Bose SoundSport Headphones,1,99.99,02/24/19 21:18,"368 Willow St, Los Angeles, CA 90001" +166825,AAA Batteries (4-pack),1,2.99,02/11/19 20:07,"16 Washington St, San Francisco, CA 94016" +166826,AA Batteries (4-pack),3,3.84,02/16/19 07:35,"702 Johnson St, San Francisco, CA 94016" +166827,Lightning Charging Cable,1,14.95,02/24/19 14:40,"997 Walnut St, Dallas, TX 75001" +166828,AAA Batteries (4-pack),1,2.99,02/15/19 18:59,"803 Lake St, Seattle, WA 98101" +166829,20in Monitor,1,109.99,03/01/19 00:01,"818 Lakeview St, San Francisco, CA 94016" +166830,Lightning Charging Cable,1,14.95,02/24/19 19:36,"624 Dogwood St, San Francisco, CA 94016" +166831,Apple Airpods Headphones,1,150,02/25/19 17:48,"48 South St, Portland, ME 04101" +166832,Apple Airpods Headphones,1,150,02/20/19 15:34,"338 10th St, Austin, TX 73301" +166833,Flatscreen TV,1,300,02/21/19 13:03,"309 7th St, Boston, MA 02215" +166834,27in 4K Gaming Monitor,1,389.99,02/25/19 23:16,"681 Hickory St, New York City, NY 10001" +166835,AA Batteries (4-pack),1,3.84,02/15/19 18:35,"59 Hickory St, New York City, NY 10001" +166836,USB-C Charging Cable,1,11.95,02/14/19 12:25,"62 South St, New York City, NY 10001" +166837,ThinkPad Laptop,1,999.99,02/11/19 05:37,"537 Center St, San Francisco, CA 94016" +166838,27in 4K Gaming Monitor,1,389.99,02/07/19 19:48,"532 Highland St, San Francisco, CA 94016" +166839,AA Batteries (4-pack),1,3.84,02/21/19 21:08,"584 Main St, San Francisco, CA 94016" +166840,USB-C Charging Cable,1,11.95,02/17/19 15:06,"502 Elm St, San Francisco, CA 94016" +166840,USB-C Charging Cable,1,11.95,02/17/19 15:06,"502 Elm St, San Francisco, CA 94016" +166841,Wired Headphones,1,11.99,02/04/19 21:16,"575 12th St, Portland, OR 97035" +166842,AA Batteries (4-pack),1,3.84,02/09/19 16:14,"603 1st St, Boston, MA 02215" +166843,Lightning Charging Cable,1,14.95,02/23/19 20:53,"947 Highland St, Los Angeles, CA 90001" +166844,27in FHD Monitor,1,149.99,02/26/19 04:10,"92 Wilson St, Portland, OR 97035" +166845,27in 4K Gaming Monitor,1,389.99,02/03/19 05:37,"62 Walnut St, New York City, NY 10001" +166846,LG Washing Machine,1,600.0,02/13/19 19:50,"423 Center St, Dallas, TX 75001" +166847,ThinkPad Laptop,1,999.99,02/17/19 10:24,"978 Cherry St, Atlanta, GA 30301" +166848,AAA Batteries (4-pack),1,2.99,02/05/19 19:10,"232 Sunset St, Atlanta, GA 30301" +166849,AAA Batteries (4-pack),2,2.99,02/28/19 17:29,"524 Willow St, San Francisco, CA 94016" +166850,27in FHD Monitor,1,149.99,02/03/19 20:17,"339 Chestnut St, Boston, MA 02215" +166851,34in Ultrawide Monitor,1,379.99,02/14/19 15:51,"772 Johnson St, Los Angeles, CA 90001" +166852,Wired Headphones,1,11.99,02/15/19 20:15,"398 Walnut St, Seattle, WA 98101" +166853,iPhone,1,700,02/15/19 15:12,"58 Church St, San Francisco, CA 94016" +166853,Wired Headphones,1,11.99,02/15/19 15:12,"58 Church St, San Francisco, CA 94016" +166854,Flatscreen TV,1,300,02/10/19 04:31,"260 Highland St, San Francisco, CA 94016" +166855,AA Batteries (4-pack),1,3.84,02/01/19 14:19,"425 Lakeview St, New York City, NY 10001" +166856,USB-C Charging Cable,1,11.95,02/11/19 16:15,"216 North St, Atlanta, GA 30301" +166857,34in Ultrawide Monitor,1,379.99,02/26/19 08:07,"779 14th St, Los Angeles, CA 90001" +166858,ThinkPad Laptop,1,999.99,02/04/19 11:03,"350 Spruce St, Portland, OR 97035" +166859,Bose SoundSport Headphones,1,99.99,02/08/19 18:48,"582 Lake St, San Francisco, CA 94016" +166860,Apple Airpods Headphones,1,150,02/12/19 18:55,"310 Church St, Los Angeles, CA 90001" +166861,AAA Batteries (4-pack),3,2.99,02/07/19 14:20,"295 12th St, Seattle, WA 98101" +166862,Flatscreen TV,1,300,02/27/19 11:36,"56 River St, San Francisco, CA 94016" +166863,AAA Batteries (4-pack),2,2.99,02/10/19 08:09,"629 8th St, San Francisco, CA 94016" +166864,Macbook Pro Laptop,1,1700,02/07/19 14:13,"962 1st St, Los Angeles, CA 90001" +166865,27in 4K Gaming Monitor,1,389.99,02/06/19 20:53,"291 Center St, Portland, ME 04101" +166866,Apple Airpods Headphones,1,150,02/04/19 00:35,"783 Chestnut St, Portland, OR 97035" +166867,Google Phone,1,600,02/18/19 10:21,"993 Elm St, Los Angeles, CA 90001" +166867,Bose SoundSport Headphones,1,99.99,02/18/19 10:21,"993 Elm St, Los Angeles, CA 90001" +166868,Wired Headphones,1,11.99,02/15/19 19:55,"969 Washington St, Austin, TX 73301" +166869,AAA Batteries (4-pack),1,2.99,02/15/19 18:43,"870 Pine St, San Francisco, CA 94016" +166870,Macbook Pro Laptop,1,1700,02/18/19 14:56,"356 Elm St, Dallas, TX 75001" +166871,AAA Batteries (4-pack),1,2.99,02/01/19 11:26,"185 Forest St, Austin, TX 73301" +166872,34in Ultrawide Monitor,1,379.99,02/18/19 17:14,"53 Hickory St, Atlanta, GA 30301" +166873,Wired Headphones,1,11.99,02/16/19 23:26,"380 Ridge St, San Francisco, CA 94016" +166874,Lightning Charging Cable,1,14.95,02/16/19 19:45,"470 6th St, Los Angeles, CA 90001" +166875,iPhone,1,700,02/23/19 17:21,"511 South St, Seattle, WA 98101" +166876,Wired Headphones,2,11.99,02/16/19 20:16,"932 Maple St, Boston, MA 02215" +166877,Bose SoundSport Headphones,1,99.99,02/04/19 18:37,"595 Spruce St, San Francisco, CA 94016" +166878,Lightning Charging Cable,1,14.95,02/10/19 06:41,"990 River St, Boston, MA 02215" +166879,Flatscreen TV,1,300,02/15/19 17:34,"864 Highland St, Portland, ME 04101" +166880,Apple Airpods Headphones,1,150,02/22/19 14:45,"411 Hickory St, Atlanta, GA 30301" +166881,AA Batteries (4-pack),3,3.84,02/26/19 08:25,"433 Highland St, New York City, NY 10001" +166882,34in Ultrawide Monitor,1,379.99,02/13/19 05:13,"234 Hickory St, Los Angeles, CA 90001" +166883,iPhone,1,700,02/27/19 19:13,"350 Pine St, Los Angeles, CA 90001" +166884,Google Phone,1,600,02/27/19 00:10,"765 Cedar St, Seattle, WA 98101" +166885,34in Ultrawide Monitor,1,379.99,02/17/19 22:51,"940 Church St, Atlanta, GA 30301" +166886,AAA Batteries (4-pack),1,2.99,02/03/19 14:48,"396 Cedar St, Seattle, WA 98101" +166887,Wired Headphones,1,11.99,02/17/19 12:52,"193 Chestnut St, Los Angeles, CA 90001" +166888,ThinkPad Laptop,1,999.99,02/01/19 16:37,"448 Elm St, Portland, OR 97035" +166889,AAA Batteries (4-pack),2,2.99,02/06/19 23:17,"813 Pine St, San Francisco, CA 94016" +166890,AA Batteries (4-pack),1,3.84,02/04/19 18:40,"868 Maple St, Atlanta, GA 30301" +166891,iPhone,1,700,02/25/19 13:22,"961 Pine St, Boston, MA 02215" +166892,USB-C Charging Cable,1,11.95,02/23/19 13:49,"859 13th St, Atlanta, GA 30301" +166893,Wired Headphones,1,11.99,02/07/19 09:57,"936 Jefferson St, Dallas, TX 75001" +166894,USB-C Charging Cable,2,11.95,02/28/19 21:21,"259 Center St, Atlanta, GA 30301" +166895,Apple Airpods Headphones,1,150,02/06/19 19:47,"204 8th St, Seattle, WA 98101" +166896,27in 4K Gaming Monitor,1,389.99,02/22/19 23:31,"21 Wilson St, Atlanta, GA 30301" +166897,USB-C Charging Cable,1,11.95,02/12/19 08:04,"246 Walnut St, Dallas, TX 75001" +166898,27in FHD Monitor,1,149.99,02/01/19 18:00,"664 Highland St, San Francisco, CA 94016" +166899,20in Monitor,1,109.99,02/05/19 16:18,"355 1st St, Dallas, TX 75001" +166900,Vareebadd Phone,1,400,02/10/19 09:19,"395 10th St, Atlanta, GA 30301" +166900,USB-C Charging Cable,2,11.95,02/10/19 09:19,"395 10th St, Atlanta, GA 30301" +166900,Wired Headphones,3,11.99,02/10/19 09:19,"395 10th St, Atlanta, GA 30301" +166901,Apple Airpods Headphones,1,150,02/14/19 18:19,"403 Highland St, New York City, NY 10001" +166902,AA Batteries (4-pack),1,3.84,02/22/19 12:09,"398 Walnut St, San Francisco, CA 94016" +166903,AAA Batteries (4-pack),1,2.99,02/01/19 20:38,"180 Jefferson St, Seattle, WA 98101" +166904,USB-C Charging Cable,1,11.95,02/21/19 14:35,"586 Lincoln St, Boston, MA 02215" +166905,AAA Batteries (4-pack),1,2.99,02/19/19 13:06,"701 Willow St, San Francisco, CA 94016" +166906,27in FHD Monitor,1,149.99,02/23/19 12:34,"152 Park St, Dallas, TX 75001" +166907,Wired Headphones,1,11.99,02/16/19 23:18,"309 Chestnut St, San Francisco, CA 94016" +166908,Macbook Pro Laptop,1,1700,02/01/19 22:26,"989 9th St, Austin, TX 73301" +166909,Wired Headphones,1,11.99,02/27/19 18:59,"919 Hickory St, Atlanta, GA 30301" +166910,27in 4K Gaming Monitor,1,389.99,02/02/19 19:32,"368 Adams St, New York City, NY 10001" +166911,Macbook Pro Laptop,1,1700,02/14/19 23:03,"370 6th St, Portland, OR 97035" +166912,iPhone,1,700,02/05/19 11:01,"382 4th St, Atlanta, GA 30301" +166912,Apple Airpods Headphones,1,150,02/05/19 11:01,"382 4th St, Atlanta, GA 30301" +166913,ThinkPad Laptop,1,999.99,02/16/19 09:36,"624 Maple St, New York City, NY 10001" +166914,27in FHD Monitor,1,149.99,02/18/19 20:47,"86 12th St, San Francisco, CA 94016" +166915,Apple Airpods Headphones,1,150,02/12/19 16:43,"309 Highland St, Seattle, WA 98101" +166916,USB-C Charging Cable,1,11.95,02/04/19 06:19,"261 River St, New York City, NY 10001" +166917,iPhone,1,700,02/24/19 18:21,"612 Walnut St, New York City, NY 10001" +166918,Apple Airpods Headphones,1,150,02/06/19 23:56,"324 Walnut St, Dallas, TX 75001" +166919,Bose SoundSport Headphones,1,99.99,02/01/19 10:34,"825 Forest St, Dallas, TX 75001" +166920,AAA Batteries (4-pack),1,2.99,02/27/19 06:04,"765 12th St, San Francisco, CA 94016" +166921,AAA Batteries (4-pack),1,2.99,02/02/19 21:01,"607 Adams St, Los Angeles, CA 90001" +166922,27in FHD Monitor,1,149.99,02/02/19 17:34,"423 Wilson St, Austin, TX 73301" +166923,Bose SoundSport Headphones,1,99.99,02/09/19 12:04,"1 14th St, Seattle, WA 98101" +166924,Bose SoundSport Headphones,1,99.99,02/04/19 23:56,"692 Pine St, New York City, NY 10001" +166925,Bose SoundSport Headphones,1,99.99,02/12/19 13:45,"211 Maple St, Los Angeles, CA 90001" +166926,Bose SoundSport Headphones,1,99.99,02/13/19 17:47,"952 Highland St, New York City, NY 10001" +166927,USB-C Charging Cable,2,11.95,02/05/19 08:07,"988 Meadow St, Los Angeles, CA 90001" +166928,Wired Headphones,1,11.99,02/13/19 20:19,"574 Sunset St, Seattle, WA 98101" +166929,Bose SoundSport Headphones,1,99.99,02/17/19 22:01,"290 Center St, San Francisco, CA 94016" +166930,27in FHD Monitor,1,149.99,02/07/19 16:39,"824 Hickory St, San Francisco, CA 94016" +166931,Wired Headphones,1,11.99,02/12/19 20:44,"991 Chestnut St, San Francisco, CA 94016" +166932,Bose SoundSport Headphones,1,99.99,02/02/19 14:47,"348 Willow St, Dallas, TX 75001" +166932,20in Monitor,1,109.99,02/02/19 14:47,"348 Willow St, Dallas, TX 75001" +166933,Wired Headphones,1,11.99,02/12/19 15:35,"576 9th St, Portland, OR 97035" +166934,Bose SoundSport Headphones,1,99.99,02/14/19 00:37,"459 4th St, San Francisco, CA 94016" +166935,USB-C Charging Cable,1,11.95,02/27/19 11:06,"526 Spruce St, Seattle, WA 98101" +166936,Google Phone,1,600,02/18/19 12:02,"488 14th St, San Francisco, CA 94016" +166936,USB-C Charging Cable,1,11.95,02/18/19 12:02,"488 14th St, San Francisco, CA 94016" +166937,Lightning Charging Cable,1,14.95,02/07/19 11:53,"660 Hill St, Seattle, WA 98101" +166938,Apple Airpods Headphones,1,150,02/05/19 11:42,"436 Wilson St, Los Angeles, CA 90001" +166939,Macbook Pro Laptop,1,1700,02/05/19 12:47,"450 West St, New York City, NY 10001" +166940,Lightning Charging Cable,1,14.95,02/07/19 00:42,"313 Cherry St, Dallas, TX 75001" +166940,Wired Headphones,1,11.99,02/07/19 00:42,"313 Cherry St, Dallas, TX 75001" +166941,AA Batteries (4-pack),3,3.84,02/17/19 08:09,"598 River St, Boston, MA 02215" +166942,27in 4K Gaming Monitor,1,389.99,02/12/19 09:26,"981 Lakeview St, Seattle, WA 98101" +166943,AAA Batteries (4-pack),3,2.99,02/26/19 13:01,"434 Cedar St, New York City, NY 10001" +166944,Bose SoundSport Headphones,1,99.99,02/28/19 06:59,"726 12th St, Portland, OR 97035" +166945,AAA Batteries (4-pack),1,2.99,02/25/19 09:34,"210 Adams St, New York City, NY 10001" +166946,Wired Headphones,1,11.99,02/09/19 17:50,"685 Washington St, Dallas, TX 75001" +166947,Wired Headphones,1,11.99,02/05/19 11:36,"93 Sunset St, San Francisco, CA 94016" +166948,Apple Airpods Headphones,1,150,02/24/19 21:25,"939 Cherry St, New York City, NY 10001" +166949,AA Batteries (4-pack),1,3.84,02/17/19 20:50,"504 12th St, San Francisco, CA 94016" +166950,USB-C Charging Cable,1,11.95,02/12/19 00:00,"692 Center St, Portland, OR 97035" +166951,Wired Headphones,1,11.99,02/12/19 15:37,"218 10th St, Seattle, WA 98101" +166952,AA Batteries (4-pack),1,3.84,02/22/19 16:48,"597 12th St, San Francisco, CA 94016" +166952,USB-C Charging Cable,1,11.95,02/22/19 16:48,"597 12th St, San Francisco, CA 94016" +166953,20in Monitor,1,109.99,02/14/19 16:32,"672 Chestnut St, Dallas, TX 75001" +166954,AAA Batteries (4-pack),2,2.99,02/22/19 22:24,"193 Highland St, Boston, MA 02215" +166955,Wired Headphones,1,11.99,02/25/19 12:21,"268 Washington St, Austin, TX 73301" +166956,AAA Batteries (4-pack),1,2.99,02/06/19 19:56,"287 Forest St, Atlanta, GA 30301" +166957,AAA Batteries (4-pack),1,2.99,02/10/19 16:31,"352 Walnut St, Boston, MA 02215" +166958,Lightning Charging Cable,1,14.95,02/09/19 13:01,"731 4th St, San Francisco, CA 94016" +166959,Apple Airpods Headphones,1,150,02/23/19 13:50,"974 Washington St, San Francisco, CA 94016" +166960,Wired Headphones,1,11.99,02/12/19 10:53,"69 North St, Portland, OR 97035" +166961,Bose SoundSport Headphones,1,99.99,02/05/19 13:07,"998 Johnson St, Portland, OR 97035" +166962,AA Batteries (4-pack),1,3.84,02/26/19 20:08,"304 13th St, San Francisco, CA 94016" +166963,AAA Batteries (4-pack),1,2.99,02/03/19 20:16,"652 Spruce St, Portland, ME 04101" +166964,27in FHD Monitor,1,149.99,02/13/19 20:52,"963 Hickory St, Los Angeles, CA 90001" +166965,Apple Airpods Headphones,1,150,02/17/19 18:36,"148 Lake St, Portland, OR 97035" +166966,27in 4K Gaming Monitor,1,389.99,02/04/19 12:36,"106 6th St, New York City, NY 10001" +166967,Macbook Pro Laptop,1,1700,02/05/19 13:50,"696 7th St, Los Angeles, CA 90001" +166968,Apple Airpods Headphones,1,150,02/25/19 17:38,"848 Washington St, San Francisco, CA 94016" +166969,iPhone,1,700,02/16/19 09:34,"125 Highland St, Los Angeles, CA 90001" +166970,USB-C Charging Cable,1,11.95,02/12/19 20:36,"850 2nd St, Austin, TX 73301" +166971,Google Phone,1,600,02/14/19 10:40,"136 Jackson St, Seattle, WA 98101" +166972,Wired Headphones,2,11.99,02/12/19 20:45,"573 North St, San Francisco, CA 94016" +166973,LG Washing Machine,1,600.0,02/22/19 09:39,"120 1st St, Dallas, TX 75001" +166974,Wired Headphones,1,11.99,02/10/19 14:47,"474 Hickory St, San Francisco, CA 94016" +166975,AAA Batteries (4-pack),4,2.99,02/05/19 09:39,"263 6th St, Atlanta, GA 30301" +166976,Wired Headphones,1,11.99,02/03/19 12:11,"342 Walnut St, Dallas, TX 75001" +166977,Wired Headphones,1,11.99,02/28/19 19:36,"180 Wilson St, Atlanta, GA 30301" +166978,Bose SoundSport Headphones,1,99.99,02/25/19 18:42,"6 Washington St, Boston, MA 02215" +166979,AA Batteries (4-pack),1,3.84,02/09/19 17:08,"563 South St, New York City, NY 10001" +166980,AAA Batteries (4-pack),1,2.99,02/18/19 18:06,"19 9th St, San Francisco, CA 94016" +166981,Wired Headphones,1,11.99,02/03/19 12:37,"869 Hickory St, New York City, NY 10001" +166982,USB-C Charging Cable,1,11.95,02/07/19 08:16,"564 4th St, Portland, ME 04101" +166983,Lightning Charging Cable,1,14.95,02/11/19 15:49,"915 Sunset St, Atlanta, GA 30301" +166984,AAA Batteries (4-pack),1,2.99,02/06/19 21:05,"129 Sunset St, Atlanta, GA 30301" +166985,USB-C Charging Cable,1,11.95,02/08/19 23:22,"172 River St, Los Angeles, CA 90001" +166986,USB-C Charging Cable,1,11.95,02/23/19 07:23,"998 Sunset St, San Francisco, CA 94016" +166987,ThinkPad Laptop,1,999.99,02/06/19 10:17,"732 South St, Seattle, WA 98101" +166988,34in Ultrawide Monitor,1,379.99,02/06/19 17:38,"224 Hill St, New York City, NY 10001" +166989,AAA Batteries (4-pack),4,2.99,02/02/19 08:45,"556 Meadow St, New York City, NY 10001" +166990,20in Monitor,1,109.99,02/08/19 20:49,"680 8th St, Dallas, TX 75001" +166991,Google Phone,1,600,02/24/19 20:36,"610 Lake St, San Francisco, CA 94016" +166992,Apple Airpods Headphones,1,150,02/08/19 22:44,"486 Pine St, Boston, MA 02215" +166993,ThinkPad Laptop,1,999.99,02/23/19 08:13,"953 West St, Austin, TX 73301" +166994,AA Batteries (4-pack),1,3.84,02/21/19 17:44,"615 4th St, Seattle, WA 98101" +166995,27in 4K Gaming Monitor,1,389.99,02/08/19 12:14,"899 4th St, San Francisco, CA 94016" +166996,AAA Batteries (4-pack),1,2.99,02/18/19 13:58,"297 Jackson St, San Francisco, CA 94016" +166997,Wired Headphones,1,11.99,02/27/19 08:37,"473 Lake St, Seattle, WA 98101" +166998,Bose SoundSport Headphones,1,99.99,02/06/19 14:07,"758 5th St, Los Angeles, CA 90001" +166999,Vareebadd Phone,1,400,02/25/19 23:03,"816 Forest St, Los Angeles, CA 90001" +167000,27in FHD Monitor,1,149.99,02/10/19 11:20,"61 South St, Seattle, WA 98101" +167001,iPhone,1,700,02/03/19 15:21,"607 Washington St, Portland, OR 97035" +167002,20in Monitor,1,109.99,02/10/19 18:03,"900 9th St, New York City, NY 10001" +167003,USB-C Charging Cable,1,11.95,02/23/19 11:07,"171 South St, San Francisco, CA 94016" +167004,27in FHD Monitor,1,149.99,02/16/19 05:58,"853 9th St, New York City, NY 10001" +167005,27in 4K Gaming Monitor,1,389.99,02/03/19 12:47,"370 Center St, New York City, NY 10001" +167006,20in Monitor,1,109.99,02/17/19 12:35,"173 Church St, Boston, MA 02215" +167007,USB-C Charging Cable,1,11.95,02/10/19 18:19,"260 Center St, Austin, TX 73301" +167008,AAA Batteries (4-pack),1,2.99,02/06/19 03:41,"941 South St, Atlanta, GA 30301" +167009,Lightning Charging Cable,1,14.95,02/04/19 17:16,"709 Maple St, New York City, NY 10001" +167010,ThinkPad Laptop,1,999.99,02/12/19 17:28,"156 Adams St, Atlanta, GA 30301" +167011,iPhone,1,700,02/11/19 23:09,"205 Jefferson St, Seattle, WA 98101" +167012,Vareebadd Phone,1,400,02/26/19 09:19,"200 Lake St, Boston, MA 02215" +167013,AA Batteries (4-pack),1,3.84,02/05/19 12:02,"799 14th St, San Francisco, CA 94016" +167014,Lightning Charging Cable,1,14.95,02/03/19 22:54,"367 Main St, San Francisco, CA 94016" +167015,Google Phone,1,600,02/08/19 18:18,"72 13th St, Seattle, WA 98101" +167016,USB-C Charging Cable,1,11.95,02/16/19 12:47,"852 South St, Austin, TX 73301" +167017,AAA Batteries (4-pack),1,2.99,02/25/19 18:15,"999 North St, Dallas, TX 75001" +167018,USB-C Charging Cable,1,11.95,02/24/19 11:30,"135 Church St, New York City, NY 10001" +167019,Wired Headphones,1,11.99,02/05/19 19:47,"581 2nd St, Atlanta, GA 30301" +167020,AA Batteries (4-pack),1,3.84,02/22/19 09:54,"219 River St, New York City, NY 10001" +167021,Lightning Charging Cable,1,14.95,02/13/19 15:29,"346 13th St, Los Angeles, CA 90001" +167022,27in 4K Gaming Monitor,1,389.99,02/04/19 09:57,"857 5th St, Los Angeles, CA 90001" +167023,LG Dryer,1,600.0,02/14/19 08:51,"93 Johnson St, Boston, MA 02215" +167024,USB-C Charging Cable,1,11.95,02/28/19 15:39,"757 Main St, Austin, TX 73301" +167025,USB-C Charging Cable,1,11.95,02/20/19 17:54,"54 12th St, New York City, NY 10001" +167026,Google Phone,1,600,02/21/19 01:03,"4 Church St, New York City, NY 10001" +167027,27in FHD Monitor,1,149.99,02/28/19 09:49,"851 Cedar St, Boston, MA 02215" +167028,Apple Airpods Headphones,1,150,02/17/19 14:16,"752 5th St, Los Angeles, CA 90001" +167029,Google Phone,1,600,02/07/19 10:10,"148 Pine St, Atlanta, GA 30301" +167030,Bose SoundSport Headphones,1,99.99,02/17/19 18:38,"537 Washington St, Portland, ME 04101" +167031,iPhone,1,700,02/02/19 18:12,"851 Adams St, Portland, ME 04101" +167031,Apple Airpods Headphones,1,150,02/02/19 18:12,"851 Adams St, Portland, ME 04101" +167031,Bose SoundSport Headphones,1,99.99,02/02/19 18:12,"851 Adams St, Portland, ME 04101" +167032,Bose SoundSport Headphones,1,99.99,02/06/19 15:17,"777 Meadow St, Seattle, WA 98101" +167033,Wired Headphones,1,11.99,02/21/19 23:21,"642 7th St, Boston, MA 02215" +167034,USB-C Charging Cable,1,11.95,02/19/19 13:52,"257 10th St, Portland, ME 04101" +167035,Macbook Pro Laptop,1,1700,02/23/19 22:56,"10 Dogwood St, Los Angeles, CA 90001" +167036,27in FHD Monitor,1,149.99,02/21/19 08:43,"490 Forest St, Austin, TX 73301" +167037,iPhone,1,700,02/14/19 18:04,"398 Washington St, Atlanta, GA 30301" +167038,AA Batteries (4-pack),1,3.84,02/21/19 10:03,"354 Dogwood St, Dallas, TX 75001" +167039,Lightning Charging Cable,1,14.95,02/24/19 09:20,"653 7th St, New York City, NY 10001" +167040,Bose SoundSport Headphones,1,99.99,02/24/19 12:19,"701 Hickory St, Austin, TX 73301" +167041,USB-C Charging Cable,1,11.95,02/15/19 15:10,"627 5th St, Atlanta, GA 30301" +167042,AA Batteries (4-pack),1,3.84,02/16/19 11:15,"820 Cedar St, San Francisco, CA 94016" +167043,27in FHD Monitor,1,149.99,02/02/19 13:41,"371 South St, Los Angeles, CA 90001" +167044,AA Batteries (4-pack),1,3.84,02/06/19 15:08,"928 2nd St, Boston, MA 02215" +167045,Lightning Charging Cable,1,14.95,02/20/19 14:55,"651 Hickory St, Los Angeles, CA 90001" +167046,Apple Airpods Headphones,1,150,02/13/19 08:47,"77 Lincoln St, San Francisco, CA 94016" +167047,iPhone,1,700,02/16/19 20:25,"364 Walnut St, New York City, NY 10001" +167048,AAA Batteries (4-pack),4,2.99,02/10/19 10:34,"270 13th St, San Francisco, CA 94016" +167049,Apple Airpods Headphones,1,150,02/20/19 22:14,"676 Hill St, Austin, TX 73301" +167050,Wired Headphones,1,11.99,02/03/19 21:30,"394 Cedar St, Los Angeles, CA 90001" +167051,27in 4K Gaming Monitor,1,389.99,02/03/19 07:48,"449 Center St, San Francisco, CA 94016" +167052,Wired Headphones,1,11.99,02/19/19 20:45,"625 South St, Boston, MA 02215" +167053,AAA Batteries (4-pack),2,2.99,02/09/19 15:21,"855 14th St, Seattle, WA 98101" +167054,Lightning Charging Cable,1,14.95,02/02/19 14:21,"237 Pine St, Atlanta, GA 30301" +167055,AAA Batteries (4-pack),2,2.99,02/02/19 14:44,"592 Elm St, New York City, NY 10001" +167056,USB-C Charging Cable,1,11.95,02/26/19 09:48,"472 Adams St, San Francisco, CA 94016" +167057,AA Batteries (4-pack),4,3.84,02/14/19 09:38,"26 1st St, Los Angeles, CA 90001" +167058,Wired Headphones,1,11.99,02/01/19 21:10,"941 Sunset St, Boston, MA 02215" +167059,USB-C Charging Cable,1,11.95,02/19/19 20:23,"607 Willow St, Portland, OR 97035" +167060,USB-C Charging Cable,1,11.95,02/02/19 19:32,"821 Walnut St, San Francisco, CA 94016" +167061,Lightning Charging Cable,1,14.95,02/11/19 22:46,"826 Maple St, Dallas, TX 75001" +167062,AAA Batteries (4-pack),2,2.99,02/05/19 16:22,"236 Johnson St, New York City, NY 10001" +167063,20in Monitor,1,109.99,02/24/19 11:24,"906 Hill St, Seattle, WA 98101" +167064,Wired Headphones,1,11.99,02/03/19 06:04,"749 13th St, New York City, NY 10001" +167065,34in Ultrawide Monitor,1,379.99,02/23/19 19:57,"750 Pine St, New York City, NY 10001" +167066,AA Batteries (4-pack),3,3.84,02/01/19 19:55,"688 Cherry St, Austin, TX 73301" +167067,USB-C Charging Cable,1,11.95,02/17/19 12:33,"202 Elm St, Boston, MA 02215" +167068,Macbook Pro Laptop,1,1700,02/07/19 20:23,"600 River St, Los Angeles, CA 90001" +167069,Lightning Charging Cable,1,14.95,02/15/19 15:58,"711 Hickory St, Austin, TX 73301" +167070,Flatscreen TV,1,300,02/03/19 02:22,"571 Jackson St, Boston, MA 02215" +167071,USB-C Charging Cable,1,11.95,02/23/19 11:53,"718 2nd St, Atlanta, GA 30301" +167072,Lightning Charging Cable,1,14.95,02/05/19 16:00,"151 Walnut St, San Francisco, CA 94016" +167073,Vareebadd Phone,1,400,02/22/19 20:46,"814 13th St, Boston, MA 02215" +167074,AA Batteries (4-pack),1,3.84,02/05/19 09:01,"997 14th St, Dallas, TX 75001" +167075,Vareebadd Phone,1,400,02/01/19 14:16,"233 Willow St, San Francisco, CA 94016" +167075,Wired Headphones,1,11.99,02/01/19 14:16,"233 Willow St, San Francisco, CA 94016" +167076,USB-C Charging Cable,2,11.95,02/02/19 12:51,"271 Main St, New York City, NY 10001" +167077,20in Monitor,1,109.99,02/28/19 21:07,"87 Lakeview St, Los Angeles, CA 90001" +167078,USB-C Charging Cable,1,11.95,02/20/19 09:37,"942 Dogwood St, San Francisco, CA 94016" +167079,34in Ultrawide Monitor,1,379.99,02/23/19 17:21,"727 Cedar St, Los Angeles, CA 90001" +167080,AA Batteries (4-pack),1,3.84,02/23/19 12:26,"39 7th St, Dallas, TX 75001" +167081,USB-C Charging Cable,1,11.95,02/19/19 19:46,"671 North St, Austin, TX 73301" +167082,AA Batteries (4-pack),2,3.84,02/22/19 19:45,"439 4th St, Atlanta, GA 30301" +167083,AAA Batteries (4-pack),2,2.99,02/25/19 21:16,"44 Jefferson St, Austin, TX 73301" +167084,Lightning Charging Cable,1,14.95,02/15/19 13:01,"625 8th St, Seattle, WA 98101" +167085,AAA Batteries (4-pack),1,2.99,02/04/19 12:38,"329 Lakeview St, Atlanta, GA 30301" +167086,Lightning Charging Cable,1,14.95,02/14/19 07:01,"281 Lincoln St, Austin, TX 73301" +167087,Lightning Charging Cable,1,14.95,02/21/19 00:12,"235 Hickory St, San Francisco, CA 94016" +167088,Wired Headphones,1,11.99,02/02/19 20:41,"862 Elm St, San Francisco, CA 94016" +167089,20in Monitor,1,109.99,02/25/19 07:50,"251 Lakeview St, Seattle, WA 98101" +167090,USB-C Charging Cable,1,11.95,02/28/19 10:35,"134 River St, San Francisco, CA 94016" +167091,Apple Airpods Headphones,1,150,02/03/19 18:32,"553 1st St, Seattle, WA 98101" +167092,AAA Batteries (4-pack),2,2.99,02/21/19 16:07,"152 10th St, Los Angeles, CA 90001" +167093,Apple Airpods Headphones,1,150,02/03/19 19:57,"718 1st St, Los Angeles, CA 90001" +167094,27in 4K Gaming Monitor,1,389.99,02/28/19 11:59,"728 7th St, Dallas, TX 75001" +167095,27in FHD Monitor,1,149.99,02/07/19 09:47,"891 Lake St, Atlanta, GA 30301" +167096,AA Batteries (4-pack),2,3.84,02/20/19 19:24,"385 Pine St, Los Angeles, CA 90001" +167097,34in Ultrawide Monitor,1,379.99,02/08/19 12:19,"836 Adams St, Seattle, WA 98101" +167098,27in 4K Gaming Monitor,1,389.99,02/25/19 09:15,"590 Cedar St, San Francisco, CA 94016" +167099,Bose SoundSport Headphones,1,99.99,02/10/19 12:20,"957 4th St, Austin, TX 73301" +167100,Lightning Charging Cable,2,14.95,02/27/19 11:43,"988 West St, New York City, NY 10001" +167101,AAA Batteries (4-pack),1,2.99,02/07/19 20:42,"522 Maple St, Boston, MA 02215" +167102,Wired Headphones,1,11.99,02/04/19 00:13,"160 North St, Los Angeles, CA 90001" +167103,Bose SoundSport Headphones,1,99.99,02/24/19 10:31,"546 Lakeview St, San Francisco, CA 94016" +167104,Lightning Charging Cable,1,14.95,02/03/19 01:15,"969 8th St, San Francisco, CA 94016" +167105,Lightning Charging Cable,1,14.95,02/02/19 10:16,"385 Lakeview St, Seattle, WA 98101" +167106,34in Ultrawide Monitor,1,379.99,02/07/19 00:47,"203 Wilson St, San Francisco, CA 94016" +167107,Apple Airpods Headphones,1,150,02/22/19 22:23,"777 West St, Seattle, WA 98101" +167108,34in Ultrawide Monitor,1,379.99,02/17/19 13:15,"953 Willow St, Portland, OR 97035" +167109,Bose SoundSport Headphones,1,99.99,02/10/19 14:02,"221 Ridge St, New York City, NY 10001" +167110,Bose SoundSport Headphones,1,99.99,02/03/19 13:29,"34 Cherry St, Los Angeles, CA 90001" +167111,Apple Airpods Headphones,1,150,02/06/19 20:34,"1 Elm St, Portland, ME 04101" +167112,Apple Airpods Headphones,1,150,02/13/19 19:57,"577 Jefferson St, San Francisco, CA 94016" +167113,27in FHD Monitor,1,149.99,02/11/19 10:27,"370 Main St, New York City, NY 10001" +167114,Apple Airpods Headphones,1,150,02/11/19 13:11,"251 5th St, Los Angeles, CA 90001" +167115,Apple Airpods Headphones,1,150,02/24/19 08:08,"57 4th St, Seattle, WA 98101" +167116,Wired Headphones,2,11.99,02/21/19 18:59,"821 Washington St, Los Angeles, CA 90001" +167117,34in Ultrawide Monitor,1,379.99,02/16/19 17:41,"788 Elm St, Los Angeles, CA 90001" +167118,Apple Airpods Headphones,1,150,02/08/19 11:14,"918 4th St, Boston, MA 02215" +167119,AA Batteries (4-pack),1,3.84,02/09/19 13:59,"962 West St, Boston, MA 02215" +167120,Wired Headphones,1,11.99,02/14/19 07:55,"941 Chestnut St, Atlanta, GA 30301" +167121,27in FHD Monitor,1,149.99,02/04/19 19:47,"235 12th St, San Francisco, CA 94016" +167122,Bose SoundSport Headphones,1,99.99,02/17/19 12:35,"324 1st St, Los Angeles, CA 90001" +167123,AAA Batteries (4-pack),1,2.99,02/26/19 13:28,"650 Main St, Boston, MA 02215" +167124,Wired Headphones,1,11.99,02/02/19 22:07,"921 Church St, Boston, MA 02215" +167125,Apple Airpods Headphones,1,150,02/10/19 21:51,"801 Jackson St, San Francisco, CA 94016" +167126,Google Phone,1,600,02/09/19 17:27,"659 Pine St, San Francisco, CA 94016" +167127,USB-C Charging Cable,1,11.95,02/08/19 20:50,"431 Jefferson St, New York City, NY 10001" +167128,AA Batteries (4-pack),1,3.84,02/15/19 10:49,"890 13th St, San Francisco, CA 94016" +167129,Wired Headphones,1,11.99,02/19/19 20:46,"601 Main St, San Francisco, CA 94016" +167130,AA Batteries (4-pack),1,3.84,02/01/19 12:18,"748 Lake St, San Francisco, CA 94016" +167131,AAA Batteries (4-pack),1,2.99,02/03/19 11:15,"722 Ridge St, Atlanta, GA 30301" +167132,USB-C Charging Cable,1,11.95,02/05/19 01:09,"295 11th St, New York City, NY 10001" +167133,Wired Headphones,1,11.99,02/11/19 22:02,"575 Jackson St, San Francisco, CA 94016" +167134,Apple Airpods Headphones,1,150,02/07/19 17:16,"451 Park St, Los Angeles, CA 90001" +167135,AAA Batteries (4-pack),2,2.99,02/24/19 11:02,"591 Adams St, San Francisco, CA 94016" +167136,USB-C Charging Cable,1,11.95,02/07/19 02:24,"699 Maple St, Portland, OR 97035" +167137,Macbook Pro Laptop,1,1700,02/02/19 09:55,"330 Willow St, Boston, MA 02215" +167138,Apple Airpods Headphones,1,150,02/25/19 22:41,"799 14th St, Los Angeles, CA 90001" +167139,Wired Headphones,1,11.99,02/12/19 12:58,"329 Cedar St, Atlanta, GA 30301" +167140,27in FHD Monitor,1,149.99,02/05/19 16:53,"465 South St, Los Angeles, CA 90001" +167141,Vareebadd Phone,1,400,02/25/19 07:21,"815 7th St, San Francisco, CA 94016" +167141,USB-C Charging Cable,1,11.95,02/25/19 07:21,"815 7th St, San Francisco, CA 94016" +167142,Apple Airpods Headphones,1,150,02/07/19 11:39,"390 Hickory St, San Francisco, CA 94016" +167143,Apple Airpods Headphones,1,150,02/20/19 22:31,"914 Spruce St, Boston, MA 02215" +167144,iPhone,1,700,02/26/19 12:25,"768 6th St, San Francisco, CA 94016" +167145,USB-C Charging Cable,1,11.95,02/05/19 09:44,"352 Washington St, Seattle, WA 98101" +167146,Bose SoundSport Headphones,2,99.99,02/12/19 14:05,"156 12th St, Portland, OR 97035" +167147,Lightning Charging Cable,1,14.95,02/17/19 10:25,"659 Center St, New York City, NY 10001" +167148,27in FHD Monitor,1,149.99,02/28/19 14:23,"504 Maple St, Los Angeles, CA 90001" +167148,AAA Batteries (4-pack),1,2.99,02/28/19 14:23,"504 Maple St, Los Angeles, CA 90001" +167149,ThinkPad Laptop,1,999.99,02/18/19 12:49,"528 Dogwood St, Dallas, TX 75001" +167150,ThinkPad Laptop,1,999.99,02/18/19 18:39,"538 Jackson St, Seattle, WA 98101" +,,,,, +167151,Bose SoundSport Headphones,1,99.99,02/23/19 09:43,"454 Maple St, Boston, MA 02215" +167152,Lightning Charging Cable,1,14.95,02/27/19 21:53,"608 6th St, Seattle, WA 98101" +167153,AAA Batteries (4-pack),1,2.99,02/26/19 15:34,"538 4th St, Los Angeles, CA 90001" +167154,AAA Batteries (4-pack),4,2.99,02/18/19 10:00,"28 Ridge St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +167155,USB-C Charging Cable,1,11.95,02/07/19 16:58,"905 Dogwood St, Boston, MA 02215" +167156,Apple Airpods Headphones,1,150,02/02/19 02:22,"556 West St, San Francisco, CA 94016" +167157,AA Batteries (4-pack),2,3.84,02/08/19 17:51,"228 13th St, Seattle, WA 98101" +167158,Lightning Charging Cable,1,14.95,02/06/19 12:14,"176 10th St, Dallas, TX 75001" +167159,Wired Headphones,1,11.99,02/14/19 17:45,"748 Sunset St, San Francisco, CA 94016" +,,,,, +167160,AAA Batteries (4-pack),1,2.99,02/24/19 18:38,"433 11th St, San Francisco, CA 94016" +167161,Wired Headphones,1,11.99,02/24/19 11:10,"886 11th St, Dallas, TX 75001" +167162,Bose SoundSport Headphones,1,99.99,02/02/19 03:37,"870 Cedar St, Los Angeles, CA 90001" +167163,USB-C Charging Cable,1,11.95,02/26/19 10:57,"987 Walnut St, Boston, MA 02215" +167164,Bose SoundSport Headphones,1,99.99,02/14/19 19:33,"211 Jackson St, Boston, MA 02215" +167165,Bose SoundSport Headphones,1,99.99,02/23/19 01:09,"144 Hickory St, San Francisco, CA 94016" +167166,Lightning Charging Cable,1,14.95,02/01/19 14:13,"592 Madison St, New York City, NY 10001" +167167,USB-C Charging Cable,1,11.95,02/26/19 21:09,"9 Walnut St, San Francisco, CA 94016" +167168,27in FHD Monitor,1,149.99,02/24/19 10:00,"117 Lincoln St, Seattle, WA 98101" +167169,Lightning Charging Cable,1,14.95,02/26/19 21:08,"873 8th St, Boston, MA 02215" +167170,20in Monitor,1,109.99,02/03/19 02:09,"179 Willow St, Dallas, TX 75001" +167171,27in 4K Gaming Monitor,1,389.99,02/26/19 15:29,"184 Elm St, Atlanta, GA 30301" +167172,Wired Headphones,1,11.99,02/26/19 13:12,"193 Church St, Dallas, TX 75001" +167173,27in FHD Monitor,1,149.99,02/18/19 09:15,"223 Dogwood St, Dallas, TX 75001" +167174,AAA Batteries (4-pack),1,2.99,02/07/19 20:48,"363 North St, Austin, TX 73301" +167175,USB-C Charging Cable,1,11.95,02/22/19 13:57,"363 Lake St, Dallas, TX 75001" +167176,Bose SoundSport Headphones,1,99.99,02/11/19 20:24,"787 Main St, Portland, ME 04101" +167177,AA Batteries (4-pack),1,3.84,02/08/19 12:52,"385 Lake St, San Francisco, CA 94016" +167178,Wired Headphones,1,11.99,02/15/19 17:48,"671 Washington St, San Francisco, CA 94016" +167179,AAA Batteries (4-pack),1,2.99,02/05/19 11:52,"798 6th St, New York City, NY 10001" +167180,USB-C Charging Cable,1,11.95,02/14/19 21:18,"85 5th St, New York City, NY 10001" +167181,34in Ultrawide Monitor,1,379.99,02/14/19 13:17,"249 West St, Los Angeles, CA 90001" +167182,Wired Headphones,1,11.99,02/26/19 11:53,"743 Lake St, Austin, TX 73301" +167183,Wired Headphones,3,11.99,02/20/19 06:35,"986 Lake St, Portland, OR 97035" +167184,Lightning Charging Cable,1,14.95,02/18/19 09:54,"564 Pine St, Portland, OR 97035" +167185,AAA Batteries (4-pack),1,2.99,02/07/19 20:56,"357 Park St, San Francisco, CA 94016" +167186,AA Batteries (4-pack),1,3.84,02/02/19 07:01,"216 7th St, New York City, NY 10001" +167187,34in Ultrawide Monitor,1,379.99,02/17/19 15:41,"837 Cedar St, Boston, MA 02215" +167188,USB-C Charging Cable,1,11.95,02/18/19 11:09,"998 Main St, San Francisco, CA 94016" +167189,USB-C Charging Cable,1,11.95,02/19/19 12:41,"864 Adams St, Boston, MA 02215" +167190,AA Batteries (4-pack),1,3.84,02/23/19 03:38,"940 Chestnut St, Boston, MA 02215" +167191,Google Phone,1,600,02/16/19 15:22,"561 13th St, Los Angeles, CA 90001" +167192,iPhone,1,700,02/12/19 10:30,"792 Willow St, Dallas, TX 75001" +167193,iPhone,1,700,02/25/19 22:11,"836 10th St, Los Angeles, CA 90001" +167194,Macbook Pro Laptop,1,1700,02/08/19 16:40,"525 Ridge St, San Francisco, CA 94016" +167195,AAA Batteries (4-pack),1,2.99,02/12/19 10:26,"406 Pine St, Portland, OR 97035" +167196,34in Ultrawide Monitor,1,379.99,02/16/19 14:21,"819 Jefferson St, San Francisco, CA 94016" +167197,34in Ultrawide Monitor,1,379.99,02/01/19 23:38,"653 11th St, New York City, NY 10001" +167198,34in Ultrawide Monitor,1,379.99,02/25/19 21:15,"303 6th St, Seattle, WA 98101" +167199,iPhone,1,700,02/14/19 19:11,"528 Jefferson St, Austin, TX 73301" +167200,Bose SoundSport Headphones,1,99.99,02/14/19 13:34,"11 1st St, Dallas, TX 75001" +167201,34in Ultrawide Monitor,1,379.99,02/15/19 11:33,"323 Madison St, San Francisco, CA 94016" +167202,AA Batteries (4-pack),1,3.84,02/16/19 13:50,"717 Lincoln St, Portland, ME 04101" +167203,Macbook Pro Laptop,1,1700,02/17/19 11:39,"579 12th St, San Francisco, CA 94016" +167204,Apple Airpods Headphones,1,150,02/17/19 10:53,"536 12th St, Boston, MA 02215" +167205,Wired Headphones,1,11.99,02/28/19 19:50,"82 8th St, Atlanta, GA 30301" +167206,AAA Batteries (4-pack),1,2.99,02/15/19 12:46,"798 River St, Austin, TX 73301" +167207,AAA Batteries (4-pack),1,2.99,02/26/19 20:43,"878 Pine St, New York City, NY 10001" +167208,Lightning Charging Cable,1,14.95,02/08/19 09:41,"669 Jackson St, San Francisco, CA 94016" +167209,27in FHD Monitor,1,149.99,02/09/19 19:00,"362 4th St, Atlanta, GA 30301" +167210,Wired Headphones,1,11.99,02/18/19 13:53,"861 9th St, San Francisco, CA 94016" +167211,27in 4K Gaming Monitor,1,389.99,02/05/19 16:07,"325 Cedar St, Boston, MA 02215" +167212,Wired Headphones,1,11.99,02/26/19 08:05,"46 Jefferson St, Portland, OR 97035" +167213,27in FHD Monitor,1,149.99,02/27/19 23:27,"223 Wilson St, Boston, MA 02215" +167214,Apple Airpods Headphones,1,150,02/07/19 16:50,"485 Hickory St, Atlanta, GA 30301" +167215,Macbook Pro Laptop,1,1700,02/04/19 08:43,"255 Chestnut St, Los Angeles, CA 90001" +167216,27in FHD Monitor,1,149.99,02/05/19 11:48,"176 Lake St, San Francisco, CA 94016" +167217,Lightning Charging Cable,1,14.95,02/28/19 20:14,"858 9th St, San Francisco, CA 94016" +167218,Apple Airpods Headphones,1,150,02/27/19 16:02,"583 Church St, San Francisco, CA 94016" +167219,USB-C Charging Cable,1,11.95,02/19/19 23:24,"872 Madison St, Dallas, TX 75001" +167220,ThinkPad Laptop,1,999.99,02/27/19 16:43,"154 Madison St, Los Angeles, CA 90001" +167221,20in Monitor,1,109.99,02/15/19 15:31,"648 Lakeview St, New York City, NY 10001" +167222,USB-C Charging Cable,1,11.95,02/04/19 19:58,"800 8th St, Los Angeles, CA 90001" +167223,USB-C Charging Cable,1,11.95,02/08/19 20:20,"734 10th St, Dallas, TX 75001" +167224,USB-C Charging Cable,1,11.95,02/11/19 18:25,"296 Hill St, Los Angeles, CA 90001" +167225,USB-C Charging Cable,1,11.95,02/14/19 02:21,"941 South St, San Francisco, CA 94016" +167226,USB-C Charging Cable,1,11.95,02/10/19 17:09,"185 Johnson St, Austin, TX 73301" +167227,Bose SoundSport Headphones,1,99.99,02/11/19 19:08,"595 Walnut St, Los Angeles, CA 90001" +167228,AAA Batteries (4-pack),1,2.99,02/03/19 15:24,"160 12th St, Portland, OR 97035" +167229,Wired Headphones,1,11.99,02/13/19 18:16,"270 Highland St, Dallas, TX 75001" +167230,iPhone,1,700,02/10/19 17:49,"273 2nd St, Los Angeles, CA 90001" +167231,AAA Batteries (4-pack),1,2.99,02/13/19 12:41,"366 9th St, Portland, ME 04101" +167232,USB-C Charging Cable,1,11.95,02/03/19 17:25,"964 4th St, Portland, ME 04101" +167233,AA Batteries (4-pack),1,3.84,02/14/19 16:07,"687 Ridge St, Dallas, TX 75001" +167234,Lightning Charging Cable,1,14.95,02/23/19 22:14,"955 Park St, Seattle, WA 98101" +167235,Wired Headphones,1,11.99,02/09/19 13:50,"382 Spruce St, Dallas, TX 75001" +167236,Lightning Charging Cable,1,14.95,02/15/19 20:40,"597 Jackson St, Seattle, WA 98101" +167237,Wired Headphones,1,11.99,02/12/19 12:15,"36 Jackson St, Dallas, TX 75001" +167238,AA Batteries (4-pack),2,3.84,02/07/19 18:36,"312 Hill St, Los Angeles, CA 90001" +167239,34in Ultrawide Monitor,1,379.99,02/25/19 09:16,"592 11th St, Atlanta, GA 30301" +167240,Lightning Charging Cable,1,14.95,02/13/19 21:20,"148 14th St, San Francisco, CA 94016" +167241,AAA Batteries (4-pack),2,2.99,02/09/19 18:28,"910 6th St, Portland, OR 97035" +167242,Wired Headphones,1,11.99,02/18/19 15:49,"355 12th St, San Francisco, CA 94016" +167243,iPhone,1,700,02/01/19 14:03,"962 Pine St, Atlanta, GA 30301" +167244,AAA Batteries (4-pack),1,2.99,02/23/19 20:35,"832 Sunset St, Atlanta, GA 30301" +167245,Apple Airpods Headphones,1,150,02/05/19 16:39,"908 4th St, Austin, TX 73301" +167246,AA Batteries (4-pack),1,3.84,02/23/19 14:38,"691 Willow St, New York City, NY 10001" +167247,Macbook Pro Laptop,1,1700,02/21/19 22:52,"56 Walnut St, San Francisco, CA 94016" +167248,ThinkPad Laptop,1,999.99,02/19/19 06:30,"574 13th St, Los Angeles, CA 90001" +167249,AA Batteries (4-pack),2,3.84,02/06/19 18:58,"425 Lakeview St, Los Angeles, CA 90001" +167250,Lightning Charging Cable,1,14.95,02/14/19 07:59,"232 12th St, Dallas, TX 75001" +167250,27in FHD Monitor,1,149.99,02/14/19 07:59,"232 12th St, Dallas, TX 75001" +167251,AA Batteries (4-pack),2,3.84,02/16/19 22:47,"925 Highland St, Los Angeles, CA 90001" +167252,USB-C Charging Cable,1,11.95,02/23/19 15:11,"392 Jackson St, San Francisco, CA 94016" +167253,AAA Batteries (4-pack),1,2.99,02/18/19 09:47,"554 Jackson St, Austin, TX 73301" +167254,Macbook Pro Laptop,1,1700,02/22/19 09:45,"663 South St, Portland, OR 97035" +167255,AA Batteries (4-pack),1,3.84,02/19/19 15:15,"831 Highland St, Atlanta, GA 30301" +167256,Lightning Charging Cable,1,14.95,02/12/19 12:05,"125 9th St, Boston, MA 02215" +167257,AAA Batteries (4-pack),3,2.99,02/04/19 14:26,"751 4th St, Atlanta, GA 30301" +167258,USB-C Charging Cable,2,11.95,02/19/19 15:02,"865 Lake St, San Francisco, CA 94016" +167259,USB-C Charging Cable,1,11.95,02/19/19 08:56,"997 Lake St, San Francisco, CA 94016" +167260,AAA Batteries (4-pack),1,2.99,02/13/19 11:39,"19 Washington St, Los Angeles, CA 90001" +167261,Bose SoundSport Headphones,1,99.99,02/19/19 19:35,"283 Johnson St, Los Angeles, CA 90001" +167262,Apple Airpods Headphones,1,150,02/18/19 08:20,"665 13th St, Seattle, WA 98101" +167263,AA Batteries (4-pack),2,3.84,02/16/19 11:05,"816 Spruce St, Los Angeles, CA 90001" +167264,Google Phone,1,600,02/16/19 19:14,"884 13th St, Los Angeles, CA 90001" +167265,USB-C Charging Cable,1,11.95,02/23/19 03:26,"459 13th St, Portland, OR 97035" +167266,iPhone,1,700,02/04/19 16:08,"825 Jefferson St, Los Angeles, CA 90001" +167267,USB-C Charging Cable,1,11.95,02/03/19 12:01,"202 Center St, San Francisco, CA 94016" +167268,Apple Airpods Headphones,1,150,02/27/19 20:12,"231 8th St, San Francisco, CA 94016" +167269,Apple Airpods Headphones,1,150,02/27/19 19:13,"975 8th St, San Francisco, CA 94016" +167270,27in 4K Gaming Monitor,1,389.99,02/02/19 11:16,"499 10th St, New York City, NY 10001" +167271,USB-C Charging Cable,1,11.95,02/09/19 06:16,"772 9th St, New York City, NY 10001" +167272,Lightning Charging Cable,1,14.95,02/21/19 09:42,"250 Jackson St, Boston, MA 02215" +167273,Lightning Charging Cable,1,14.95,02/11/19 12:50,"191 7th St, Boston, MA 02215" +167274,Google Phone,1,600,02/08/19 08:48,"830 Lincoln St, Atlanta, GA 30301" +167275,AAA Batteries (4-pack),5,2.99,02/23/19 09:03,"785 9th St, Atlanta, GA 30301" +167275,Lightning Charging Cable,1,14.95,02/23/19 09:03,"785 9th St, Atlanta, GA 30301" +167276,LG Washing Machine,1,600.0,02/16/19 08:16,"496 North St, New York City, NY 10001" +167277,AA Batteries (4-pack),1,3.84,02/27/19 16:48,"413 River St, Seattle, WA 98101" +167278,iPhone,1,700,02/02/19 18:47,"353 River St, Austin, TX 73301" +167279,Bose SoundSport Headphones,1,99.99,02/25/19 19:36,"757 Jefferson St, Seattle, WA 98101" +167280,Flatscreen TV,1,300,02/04/19 11:49,"789 Hill St, Austin, TX 73301" +167281,iPhone,1,700,02/10/19 12:47,"232 Lake St, San Francisco, CA 94016" +167282,Bose SoundSport Headphones,1,99.99,02/18/19 17:33,"194 Meadow St, San Francisco, CA 94016" +167283,Lightning Charging Cable,1,14.95,02/19/19 16:36,"611 14th St, Seattle, WA 98101" +167284,AAA Batteries (4-pack),1,2.99,02/04/19 15:16,"577 2nd St, Seattle, WA 98101" +167285,USB-C Charging Cable,1,11.95,02/07/19 11:43,"680 Hill St, San Francisco, CA 94016" +167286,ThinkPad Laptop,1,999.99,02/01/19 09:16,"381 Center St, San Francisco, CA 94016" +167287,USB-C Charging Cable,1,11.95,02/24/19 22:33,"10 6th St, Seattle, WA 98101" +167288,Bose SoundSport Headphones,1,99.99,02/27/19 19:43,"799 Spruce St, New York City, NY 10001" +167289,Apple Airpods Headphones,1,150,02/28/19 16:20,"153 Center St, Seattle, WA 98101" +167290,27in 4K Gaming Monitor,1,389.99,02/05/19 08:20,"812 Center St, San Francisco, CA 94016" +167291,Lightning Charging Cable,2,14.95,02/08/19 12:09,"939 Ridge St, Dallas, TX 75001" +167292,Wired Headphones,1,11.99,02/07/19 20:10,"739 Jefferson St, Austin, TX 73301" +167293,Wired Headphones,1,11.99,02/26/19 12:01,"530 Dogwood St, Boston, MA 02215" +167294,AAA Batteries (4-pack),1,2.99,02/06/19 13:13,"58 North St, Dallas, TX 75001" +167295,AA Batteries (4-pack),1,3.84,02/14/19 00:13,"630 9th St, Los Angeles, CA 90001" +167296,34in Ultrawide Monitor,1,379.99,02/26/19 20:37,"655 Highland St, New York City, NY 10001" +167297,AA Batteries (4-pack),1,3.84,02/26/19 10:07,"392 Wilson St, Dallas, TX 75001" +167298,27in 4K Gaming Monitor,1,389.99,02/19/19 11:01,"855 12th St, New York City, NY 10001" +167299,27in FHD Monitor,1,149.99,02/27/19 07:48,"614 Lincoln St, Austin, TX 73301" +167300,Lightning Charging Cable,1,14.95,02/06/19 10:33,"856 Forest St, New York City, NY 10001" +167301,Bose SoundSport Headphones,1,99.99,02/18/19 17:43,"359 Elm St, Seattle, WA 98101" +167302,AA Batteries (4-pack),2,3.84,02/15/19 20:31,"423 Adams St, Seattle, WA 98101" +167303,AAA Batteries (4-pack),1,2.99,02/11/19 22:09,"256 10th St, Los Angeles, CA 90001" +167303,Wired Headphones,1,11.99,02/11/19 22:09,"256 10th St, Los Angeles, CA 90001" +167304,Macbook Pro Laptop,1,1700,02/17/19 15:29,"202 Main St, Boston, MA 02215" +167305,Wired Headphones,3,11.99,02/23/19 22:07,"650 9th St, Dallas, TX 75001" +167306,27in FHD Monitor,1,149.99,02/06/19 22:51,"11 Chestnut St, Los Angeles, CA 90001" +167307,USB-C Charging Cable,1,11.95,02/03/19 13:32,"193 River St, Seattle, WA 98101" +167308,Apple Airpods Headphones,1,150,02/18/19 17:22,"542 Jefferson St, New York City, NY 10001" +167309,USB-C Charging Cable,1,11.95,02/19/19 13:13,"908 Meadow St, New York City, NY 10001" +167310,USB-C Charging Cable,2,11.95,02/12/19 09:31,"769 Chestnut St, San Francisco, CA 94016" +167311,USB-C Charging Cable,1,11.95,02/14/19 17:55,"15 Adams St, New York City, NY 10001" +167312,Google Phone,1,600,02/05/19 11:27,"939 4th St, San Francisco, CA 94016" +167313,AA Batteries (4-pack),3,3.84,02/04/19 18:27,"472 Dogwood St, New York City, NY 10001" +167314,27in 4K Gaming Monitor,1,389.99,02/22/19 12:25,"854 Hickory St, Atlanta, GA 30301" +167315,Apple Airpods Headphones,1,150,02/28/19 12:19,"824 10th St, New York City, NY 10001" +167316,27in 4K Gaming Monitor,1,389.99,02/25/19 13:55,"908 Cherry St, Los Angeles, CA 90001" +167317,iPhone,1,700,02/05/19 21:39,"127 Spruce St, Los Angeles, CA 90001" +167318,Wired Headphones,1,11.99,02/21/19 12:01,"122 Ridge St, San Francisco, CA 94016" +167318,34in Ultrawide Monitor,1,379.99,02/21/19 12:01,"122 Ridge St, San Francisco, CA 94016" +167319,iPhone,1,700,02/28/19 18:43,"114 Willow St, San Francisco, CA 94016" +167320,Lightning Charging Cable,1,14.95,02/10/19 14:09,"271 Ridge St, San Francisco, CA 94016" +167321,27in 4K Gaming Monitor,1,389.99,02/22/19 19:48,"721 6th St, Atlanta, GA 30301" +167322,AA Batteries (4-pack),1,3.84,02/18/19 12:50,"79 Elm St, Seattle, WA 98101" +167323,AA Batteries (4-pack),1,3.84,02/11/19 18:22,"78 Highland St, Dallas, TX 75001" +167324,Bose SoundSport Headphones,1,99.99,02/09/19 15:57,"866 10th St, Dallas, TX 75001" +167325,AAA Batteries (4-pack),1,2.99,02/21/19 23:20,"179 Sunset St, Atlanta, GA 30301" +167326,Macbook Pro Laptop,1,1700,02/08/19 15:56,"677 Dogwood St, New York City, NY 10001" +167327,Lightning Charging Cable,2,14.95,02/18/19 10:23,"795 Ridge St, New York City, NY 10001" +167328,ThinkPad Laptop,1,999.99,02/18/19 17:42,"666 Cherry St, Los Angeles, CA 90001" +167329,Bose SoundSport Headphones,1,99.99,02/04/19 22:54,"622 Cedar St, Atlanta, GA 30301" +167330,20in Monitor,1,109.99,02/09/19 10:02,"209 2nd St, Atlanta, GA 30301" +167331,AA Batteries (4-pack),4,3.84,02/23/19 09:24,"752 Pine St, San Francisco, CA 94016" +167332,Bose SoundSport Headphones,1,99.99,02/08/19 18:27,"362 Maple St, San Francisco, CA 94016" +167333,AA Batteries (4-pack),1,3.84,02/13/19 18:17,"675 Jackson St, Los Angeles, CA 90001" +167334,AAA Batteries (4-pack),1,2.99,02/11/19 12:47,"51 13th St, Los Angeles, CA 90001" +167335,Lightning Charging Cable,1,14.95,02/20/19 11:39,"667 Washington St, Dallas, TX 75001" +167336,LG Dryer,1,600.0,02/06/19 06:05,"850 Adams St, San Francisco, CA 94016" +167337,34in Ultrawide Monitor,1,379.99,02/14/19 00:22,"560 Center St, Portland, OR 97035" +167338,USB-C Charging Cable,1,11.95,02/02/19 20:01,"602 Maple St, New York City, NY 10001" +167339,Lightning Charging Cable,2,14.95,02/11/19 12:44,"66 Madison St, Los Angeles, CA 90001" +167340,Wired Headphones,1,11.99,02/15/19 07:09,"626 Lake St, San Francisco, CA 94016" +167341,Apple Airpods Headphones,1,150,02/18/19 09:55,"104 Maple St, New York City, NY 10001" +167342,Lightning Charging Cable,1,14.95,02/16/19 21:51,"516 South St, New York City, NY 10001" +167343,USB-C Charging Cable,1,11.95,02/17/19 14:05,"572 Willow St, Boston, MA 02215" +167344,AAA Batteries (4-pack),2,2.99,02/21/19 09:39,"625 Elm St, Atlanta, GA 30301" +167345,AAA Batteries (4-pack),1,2.99,02/18/19 09:08,"952 Maple St, Boston, MA 02215" +167346,Bose SoundSport Headphones,1,99.99,02/28/19 14:46,"878 Highland St, San Francisco, CA 94016" +167347,Apple Airpods Headphones,1,150,02/22/19 19:15,"984 Cedar St, Dallas, TX 75001" +167348,Google Phone,1,600,02/02/19 13:31,"530 Cedar St, Austin, TX 73301" +167349,Macbook Pro Laptop,1,1700,02/19/19 08:20,"217 West St, Boston, MA 02215" +167350,Vareebadd Phone,1,400,02/11/19 14:51,"497 2nd St, Dallas, TX 75001" +167351,Lightning Charging Cable,2,14.95,02/22/19 22:53,"809 Forest St, Seattle, WA 98101" +167352,27in FHD Monitor,1,149.99,02/21/19 17:47,"295 Hickory St, San Francisco, CA 94016" +167353,Apple Airpods Headphones,1,150,02/21/19 09:32,"816 7th St, Los Angeles, CA 90001" +167354,Wired Headphones,1,11.99,02/26/19 13:01,"288 Main St, Boston, MA 02215" +167355,Google Phone,1,600,02/03/19 16:57,"265 Meadow St, Atlanta, GA 30301" +167356,Lightning Charging Cable,1,14.95,02/01/19 09:32,"386 1st St, Boston, MA 02215" +167357,AA Batteries (4-pack),1,3.84,02/14/19 03:30,"750 Cherry St, Boston, MA 02215" +167358,Wired Headphones,1,11.99,02/11/19 22:04,"135 9th St, San Francisco, CA 94016" +167359,Macbook Pro Laptop,1,1700,02/11/19 21:46,"60 Spruce St, Los Angeles, CA 90001" +167360,USB-C Charging Cable,3,11.95,02/18/19 11:15,"845 Park St, New York City, NY 10001" +167361,34in Ultrawide Monitor,1,379.99,02/24/19 07:50,"102 Lake St, Los Angeles, CA 90001" +167362,AA Batteries (4-pack),1,3.84,02/13/19 17:39,"584 Highland St, Boston, MA 02215" +167363,AA Batteries (4-pack),1,3.84,02/27/19 22:01,"232 Hill St, Los Angeles, CA 90001" +167364,AAA Batteries (4-pack),1,2.99,02/27/19 16:13,"190 Main St, Los Angeles, CA 90001" +167365,AA Batteries (4-pack),1,3.84,02/13/19 06:23,"835 Madison St, Los Angeles, CA 90001" +167366,Google Phone,1,600,02/20/19 20:58,"332 Maple St, San Francisco, CA 94016" +167367,Lightning Charging Cable,1,14.95,02/16/19 17:48,"961 Cherry St, Los Angeles, CA 90001" +167368,Lightning Charging Cable,1,14.95,02/01/19 18:17,"619 Ridge St, San Francisco, CA 94016" +167369,USB-C Charging Cable,1,11.95,02/02/19 01:35,"60 Wilson St, San Francisco, CA 94016" +167370,27in FHD Monitor,1,149.99,02/02/19 10:39,"126 Pine St, Los Angeles, CA 90001" +167371,Wired Headphones,1,11.99,02/28/19 02:24,"215 Jefferson St, San Francisco, CA 94016" +167372,Flatscreen TV,1,300,02/03/19 18:59,"800 7th St, San Francisco, CA 94016" +167373,USB-C Charging Cable,1,11.95,02/17/19 20:51,"192 13th St, Los Angeles, CA 90001" +167374,USB-C Charging Cable,1,11.95,02/26/19 13:32,"393 Walnut St, San Francisco, CA 94016" +167375,Wired Headphones,1,11.99,02/05/19 13:46,"171 1st St, New York City, NY 10001" +167375,Bose SoundSport Headphones,1,99.99,02/05/19 13:46,"171 1st St, New York City, NY 10001" +167376,Apple Airpods Headphones,1,150,02/28/19 19:15,"145 North St, Los Angeles, CA 90001" +167377,LG Dryer,1,600.0,02/26/19 20:15,"30 5th St, New York City, NY 10001" +167378,20in Monitor,1,109.99,02/10/19 09:01,"944 Maple St, San Francisco, CA 94016" +167379,iPhone,1,700,02/26/19 00:05,"590 Meadow St, New York City, NY 10001" +167380,AAA Batteries (4-pack),1,2.99,02/09/19 08:44,"70 Lakeview St, Dallas, TX 75001" +167380,27in FHD Monitor,1,149.99,02/09/19 08:44,"70 Lakeview St, Dallas, TX 75001" +167381,Apple Airpods Headphones,1,150,02/14/19 13:42,"45 5th St, Seattle, WA 98101" +167382,USB-C Charging Cable,1,11.95,02/12/19 16:56,"675 Wilson St, San Francisco, CA 94016" +167383,AAA Batteries (4-pack),3,2.99,02/25/19 17:24,"329 9th St, San Francisco, CA 94016" +167384,Macbook Pro Laptop,1,1700,02/06/19 23:25,"19 Church St, Los Angeles, CA 90001" +167385,Lightning Charging Cable,1,14.95,02/11/19 20:47,"361 Jefferson St, Boston, MA 02215" +167386,Lightning Charging Cable,1,14.95,02/09/19 10:36,"259 Main St, Dallas, TX 75001" +167387,Flatscreen TV,1,300,02/22/19 11:28,"382 Spruce St, Dallas, TX 75001" +167387,Lightning Charging Cable,1,14.95,02/22/19 11:28,"382 Spruce St, Dallas, TX 75001" +167388,USB-C Charging Cable,1,11.95,02/09/19 09:50,"792 Wilson St, San Francisco, CA 94016" +167389,Wired Headphones,1,11.99,02/21/19 07:37,"489 11th St, San Francisco, CA 94016" +167390,27in 4K Gaming Monitor,1,389.99,02/08/19 23:32,"881 Chestnut St, Los Angeles, CA 90001" +167391,AA Batteries (4-pack),1,3.84,02/12/19 13:07,"7 Madison St, Atlanta, GA 30301" +167392,USB-C Charging Cable,1,11.95,02/07/19 10:06,"17 7th St, New York City, NY 10001" +167393,USB-C Charging Cable,1,11.95,02/27/19 09:11,"479 Dogwood St, Portland, OR 97035" +167394,Google Phone,1,600,02/08/19 11:08,"368 Hill St, New York City, NY 10001" +167395,Lightning Charging Cable,1,14.95,02/24/19 12:30,"778 Church St, San Francisco, CA 94016" +167396,AA Batteries (4-pack),1,3.84,02/07/19 19:40,"177 Dogwood St, Los Angeles, CA 90001" +167397,LG Dryer,1,600.0,02/27/19 14:11,"914 Lincoln St, Boston, MA 02215" +167398,AAA Batteries (4-pack),1,2.99,02/14/19 13:50,"900 Sunset St, Seattle, WA 98101" +167399,USB-C Charging Cable,1,11.95,02/09/19 21:54,"735 5th St, San Francisco, CA 94016" +167400,USB-C Charging Cable,2,11.95,02/12/19 23:27,"245 Center St, Los Angeles, CA 90001" +167401,Bose SoundSport Headphones,1,99.99,02/02/19 18:14,"966 1st St, San Francisco, CA 94016" +167402,AA Batteries (4-pack),2,3.84,02/14/19 12:16,"993 Main St, Portland, ME 04101" +167403,Bose SoundSport Headphones,1,99.99,02/27/19 15:27,"222 14th St, Boston, MA 02215" +167404,Bose SoundSport Headphones,1,99.99,02/25/19 16:31,"49 Lakeview St, Boston, MA 02215" +167405,Google Phone,1,600,02/05/19 13:30,"579 Willow St, Atlanta, GA 30301" +167405,USB-C Charging Cable,1,11.95,02/05/19 13:30,"579 Willow St, Atlanta, GA 30301" +167405,Wired Headphones,1,11.99,02/05/19 13:30,"579 Willow St, Atlanta, GA 30301" +167406,Wired Headphones,1,11.99,02/21/19 20:19,"613 Jefferson St, Los Angeles, CA 90001" +167407,AAA Batteries (4-pack),2,2.99,02/28/19 17:12,"366 12th St, Atlanta, GA 30301" +167408,Apple Airpods Headphones,1,150,02/22/19 20:36,"115 Maple St, New York City, NY 10001" +167409,Macbook Pro Laptop,1,1700,02/12/19 08:39,"196 4th St, Seattle, WA 98101" +167410,27in 4K Gaming Monitor,1,389.99,02/02/19 16:32,"199 South St, San Francisco, CA 94016" +167411,USB-C Charging Cable,1,11.95,02/16/19 16:54,"670 Sunset St, Dallas, TX 75001" +167412,Apple Airpods Headphones,1,150,02/14/19 00:59,"611 1st St, Atlanta, GA 30301" +167413,USB-C Charging Cable,1,11.95,03/01/19 01:08,"67 9th St, New York City, NY 10001" +167414,AA Batteries (4-pack),1,3.84,02/21/19 20:34,"361 Hill St, Portland, OR 97035" +167415,Apple Airpods Headphones,1,150,02/20/19 22:16,"490 11th St, Los Angeles, CA 90001" +167416,Lightning Charging Cable,1,14.95,02/21/19 18:41,"360 Forest St, Los Angeles, CA 90001" +167417,Apple Airpods Headphones,1,150,02/03/19 20:59,"972 Adams St, Los Angeles, CA 90001" +167418,AA Batteries (4-pack),1,3.84,02/18/19 22:10,"779 Dogwood St, San Francisco, CA 94016" +167419,Google Phone,1,600,02/17/19 16:27,"502 Ridge St, Boston, MA 02215" +167420,AAA Batteries (4-pack),1,2.99,02/03/19 15:21,"674 Center St, Austin, TX 73301" +167421,Macbook Pro Laptop,1,1700,02/14/19 23:42,"654 2nd St, San Francisco, CA 94016" +167422,AA Batteries (4-pack),1,3.84,02/24/19 19:18,"121 Washington St, Dallas, TX 75001" +167423,Lightning Charging Cable,1,14.95,02/22/19 18:26,"14 Adams St, New York City, NY 10001" +167424,USB-C Charging Cable,1,11.95,02/16/19 14:07,"382 4th St, Boston, MA 02215" +167425,USB-C Charging Cable,1,11.95,02/17/19 08:38,"164 Jackson St, Boston, MA 02215" +167426,34in Ultrawide Monitor,1,379.99,02/04/19 13:27,"682 14th St, New York City, NY 10001" +167427,AAA Batteries (4-pack),1,2.99,02/14/19 18:59,"125 Cedar St, New York City, NY 10001" +167428,Lightning Charging Cable,1,14.95,02/28/19 17:56,"408 Wilson St, Boston, MA 02215" +167429,AAA Batteries (4-pack),3,2.99,02/16/19 18:08,"961 Lakeview St, Boston, MA 02215" +167430,Wired Headphones,2,11.99,02/18/19 13:47,"845 5th St, Los Angeles, CA 90001" +167431,USB-C Charging Cable,1,11.95,02/25/19 03:23,"254 Jackson St, San Francisco, CA 94016" +167432,AA Batteries (4-pack),2,3.84,02/28/19 16:08,"30 Wilson St, San Francisco, CA 94016" +167433,Lightning Charging Cable,1,14.95,02/23/19 12:16,"875 7th St, Portland, OR 97035" +167434,AAA Batteries (4-pack),1,2.99,02/21/19 08:51,"519 11th St, Boston, MA 02215" +167435,Lightning Charging Cable,1,14.95,02/23/19 12:12,"3 11th St, Boston, MA 02215" +167436,Apple Airpods Headphones,1,150,02/18/19 12:22,"169 Walnut St, Los Angeles, CA 90001" +167437,27in FHD Monitor,1,149.99,02/01/19 11:20,"712 6th St, San Francisco, CA 94016" +167438,AA Batteries (4-pack),2,3.84,02/27/19 18:22,"259 12th St, Atlanta, GA 30301" +167439,AAA Batteries (4-pack),1,2.99,02/08/19 18:28,"318 Washington St, Boston, MA 02215" +167440,27in 4K Gaming Monitor,1,389.99,02/20/19 00:16,"227 Walnut St, Seattle, WA 98101" +167441,Wired Headphones,1,11.99,02/18/19 16:02,"840 7th St, San Francisco, CA 94016" +167442,USB-C Charging Cable,1,11.95,02/26/19 16:30,"959 7th St, New York City, NY 10001" +167443,AA Batteries (4-pack),1,3.84,02/22/19 10:03,"490 12th St, Boston, MA 02215" +167444,Lightning Charging Cable,1,14.95,02/18/19 09:32,"236 Meadow St, Dallas, TX 75001" +167445,Bose SoundSport Headphones,1,99.99,02/02/19 12:55,"421 Adams St, San Francisco, CA 94016" +167446,Flatscreen TV,1,300,02/12/19 12:59,"637 Adams St, New York City, NY 10001" +167447,USB-C Charging Cable,1,11.95,02/15/19 18:23,"854 River St, Boston, MA 02215" +167448,AAA Batteries (4-pack),1,2.99,02/25/19 18:06,"165 Lincoln St, Portland, OR 97035" +167449,AAA Batteries (4-pack),3,2.99,02/24/19 08:09,"721 Madison St, Austin, TX 73301" +167450,Bose SoundSport Headphones,1,99.99,02/03/19 08:45,"931 11th St, Los Angeles, CA 90001" +167451,USB-C Charging Cable,1,11.95,02/08/19 13:17,"725 Wilson St, Dallas, TX 75001" +167452,20in Monitor,1,109.99,02/15/19 10:07,"728 Chestnut St, New York City, NY 10001" +167453,Bose SoundSport Headphones,1,99.99,02/04/19 18:07,"183 Adams St, New York City, NY 10001" +167454,Apple Airpods Headphones,1,150,02/16/19 15:17,"2 13th St, New York City, NY 10001" +167455,AA Batteries (4-pack),1,3.84,02/13/19 00:06,"625 Pine St, Boston, MA 02215" +167456,iPhone,1,700,02/21/19 14:01,"536 West St, Seattle, WA 98101" +167457,Apple Airpods Headphones,1,150,02/13/19 12:16,"933 6th St, Seattle, WA 98101" +167458,ThinkPad Laptop,1,999.99,02/27/19 10:41,"373 Church St, New York City, NY 10001" +167459,Flatscreen TV,1,300,02/07/19 09:02,"765 Lakeview St, San Francisco, CA 94016" +167460,iPhone,1,700,02/10/19 12:37,"277 River St, Los Angeles, CA 90001" +167461,Lightning Charging Cable,1,14.95,02/11/19 12:15,"583 North St, Dallas, TX 75001" +167462,Wired Headphones,1,11.99,02/28/19 18:32,"900 Church St, Portland, OR 97035" +167463,Apple Airpods Headphones,1,150,02/18/19 12:24,"891 10th St, San Francisco, CA 94016" +167464,USB-C Charging Cable,1,11.95,02/26/19 17:15,"802 Lake St, Boston, MA 02215" +167465,AAA Batteries (4-pack),2,2.99,02/05/19 18:43,"292 Pine St, Seattle, WA 98101" +167466,27in 4K Gaming Monitor,1,389.99,02/20/19 10:32,"437 Walnut St, San Francisco, CA 94016" +167467,Lightning Charging Cable,1,14.95,02/18/19 18:44,"904 Cherry St, San Francisco, CA 94016" +167468,AA Batteries (4-pack),1,3.84,02/04/19 20:07,"594 Cherry St, Boston, MA 02215" +167469,Lightning Charging Cable,1,14.95,02/12/19 12:43,"436 Hickory St, Los Angeles, CA 90001" +167470,AAA Batteries (4-pack),1,2.99,02/21/19 19:15,"87 Sunset St, New York City, NY 10001" +167471,Google Phone,1,600,02/21/19 16:13,"486 Johnson St, Atlanta, GA 30301" +167472,Flatscreen TV,1,300,02/07/19 16:21,"22 10th St, Boston, MA 02215" +167473,Apple Airpods Headphones,1,150,02/25/19 20:34,"976 Jackson St, New York City, NY 10001" +167474,Bose SoundSport Headphones,1,99.99,02/04/19 07:16,"509 River St, San Francisco, CA 94016" +167475,Lightning Charging Cable,1,14.95,02/02/19 14:45,"216 Elm St, Boston, MA 02215" +167475,Flatscreen TV,1,300,02/02/19 14:45,"216 Elm St, Boston, MA 02215" +167476,Google Phone,1,600,02/02/19 09:01,"867 South St, New York City, NY 10001" +167476,Bose SoundSport Headphones,1,99.99,02/02/19 09:01,"867 South St, New York City, NY 10001" +167477,Lightning Charging Cable,1,14.95,02/26/19 19:34,"973 2nd St, Seattle, WA 98101" +167478,Lightning Charging Cable,1,14.95,02/18/19 18:13,"794 12th St, Los Angeles, CA 90001" +167479,Macbook Pro Laptop,1,1700,02/14/19 06:38,"748 Washington St, New York City, NY 10001" +167480,Google Phone,1,600,02/15/19 16:34,"116 Jackson St, San Francisco, CA 94016" +167480,USB-C Charging Cable,1,11.95,02/15/19 16:34,"116 Jackson St, San Francisco, CA 94016" +167481,20in Monitor,1,109.99,02/01/19 12:38,"823 6th St, San Francisco, CA 94016" +167482,Lightning Charging Cable,1,14.95,02/21/19 21:33,"184 Lakeview St, Dallas, TX 75001" +167483,Macbook Pro Laptop,1,1700,02/25/19 18:06,"989 Maple St, Los Angeles, CA 90001" +167484,USB-C Charging Cable,2,11.95,02/27/19 19:30,"131 9th St, San Francisco, CA 94016" +167485,Wired Headphones,3,11.99,02/25/19 09:51,"72 Ridge St, San Francisco, CA 94016" +167486,27in 4K Gaming Monitor,1,389.99,02/20/19 12:36,"207 10th St, San Francisco, CA 94016" +167487,AAA Batteries (4-pack),1,2.99,02/08/19 14:06,"871 7th St, Portland, OR 97035" +167488,27in FHD Monitor,1,149.99,02/23/19 08:39,"788 Main St, Atlanta, GA 30301" +167489,27in 4K Gaming Monitor,1,389.99,02/15/19 08:24,"702 Lakeview St, Portland, OR 97035" +167490,USB-C Charging Cable,1,11.95,02/15/19 12:59,"144 Pine St, San Francisco, CA 94016" +167491,Wired Headphones,1,11.99,02/19/19 15:34,"657 Cherry St, Boston, MA 02215" +167492,AA Batteries (4-pack),1,3.84,02/26/19 18:00,"259 Lakeview St, Seattle, WA 98101" +167493,27in FHD Monitor,1,149.99,02/11/19 17:07,"112 Cedar St, Seattle, WA 98101" +167494,AAA Batteries (4-pack),1,2.99,02/27/19 17:07,"755 Lincoln St, Los Angeles, CA 90001" +167495,Lightning Charging Cable,1,14.95,02/12/19 17:38,"632 Elm St, San Francisco, CA 94016" +167496,AA Batteries (4-pack),1,3.84,02/01/19 21:38,"175 Sunset St, Austin, TX 73301" +167497,Google Phone,1,600,02/06/19 17:38,"567 Lincoln St, New York City, NY 10001" +167498,Bose SoundSport Headphones,1,99.99,02/08/19 21:13,"63 West St, Portland, OR 97035" +167499,Lightning Charging Cable,1,14.95,02/03/19 12:54,"179 Lincoln St, Portland, OR 97035" +167500,Bose SoundSport Headphones,1,99.99,02/11/19 21:21,"98 Ridge St, Boston, MA 02215" +167501,Wired Headphones,1,11.99,02/24/19 14:37,"474 Chestnut St, Seattle, WA 98101" +167502,Wired Headphones,1,11.99,02/22/19 20:10,"356 Johnson St, Portland, OR 97035" +167503,Bose SoundSport Headphones,1,99.99,02/03/19 16:05,"551 Maple St, Seattle, WA 98101" +167504,Lightning Charging Cable,1,14.95,02/24/19 11:41,"90 10th St, Seattle, WA 98101" +167505,27in FHD Monitor,1,149.99,02/06/19 12:48,"223 Highland St, Los Angeles, CA 90001" +167506,Flatscreen TV,1,300,02/23/19 11:17,"518 Lincoln St, Los Angeles, CA 90001" +167507,AA Batteries (4-pack),1,3.84,02/27/19 08:32,"359 Walnut St, Los Angeles, CA 90001" +167507,Bose SoundSport Headphones,1,99.99,02/27/19 08:32,"359 Walnut St, Los Angeles, CA 90001" +167508,Apple Airpods Headphones,1,150,02/07/19 09:45,"173 12th St, New York City, NY 10001" +167509,USB-C Charging Cable,1,11.95,02/10/19 20:28,"331 North St, San Francisco, CA 94016" +167510,AA Batteries (4-pack),1,3.84,02/16/19 20:52,"995 13th St, San Francisco, CA 94016" +167511,Google Phone,1,600,02/13/19 22:26,"285 6th St, Boston, MA 02215" +167512,27in 4K Gaming Monitor,1,389.99,02/25/19 16:41,"556 Wilson St, Los Angeles, CA 90001" +167513,Apple Airpods Headphones,1,150,02/27/19 16:06,"654 14th St, San Francisco, CA 94016" +167514,LG Dryer,1,600.0,02/08/19 22:27,"948 Dogwood St, Los Angeles, CA 90001" +167515,AAA Batteries (4-pack),2,2.99,02/27/19 16:12,"651 2nd St, Los Angeles, CA 90001" +167516,Wired Headphones,1,11.99,02/21/19 16:53,"321 Jackson St, Atlanta, GA 30301" +167517,USB-C Charging Cable,1,11.95,02/14/19 19:38,"541 13th St, Boston, MA 02215" +167518,AA Batteries (4-pack),1,3.84,02/22/19 10:00,"151 1st St, Dallas, TX 75001" +167519,Lightning Charging Cable,1,14.95,02/17/19 23:46,"352 Jefferson St, Atlanta, GA 30301" +167520,Vareebadd Phone,1,400,02/06/19 11:37,"525 4th St, Seattle, WA 98101" +167521,Apple Airpods Headphones,1,150,02/20/19 10:36,"248 River St, San Francisco, CA 94016" +167522,Google Phone,1,600,02/07/19 14:57,"265 Jackson St, Los Angeles, CA 90001" +167523,ThinkPad Laptop,1,999.99,02/13/19 18:45,"828 Sunset St, Boston, MA 02215" +167523,34in Ultrawide Monitor,1,379.99,02/13/19 18:45,"828 Sunset St, Boston, MA 02215" +167524,Lightning Charging Cable,1,14.95,02/14/19 22:55,"349 Hickory St, Atlanta, GA 30301" +167525,Google Phone,1,600,02/06/19 18:48,"269 West St, Seattle, WA 98101" +167526,AA Batteries (4-pack),1,3.84,02/25/19 12:58,"966 Spruce St, Boston, MA 02215" +167527,34in Ultrawide Monitor,1,379.99,02/24/19 16:45,"350 Lakeview St, Seattle, WA 98101" +167528,Wired Headphones,1,11.99,02/13/19 16:38,"981 13th St, Boston, MA 02215" +167529,34in Ultrawide Monitor,1,379.99,02/12/19 14:18,"104 Spruce St, Seattle, WA 98101" +167530,27in 4K Gaming Monitor,1,389.99,02/21/19 11:45,"330 Hill St, San Francisco, CA 94016" +167531,USB-C Charging Cable,1,11.95,02/16/19 18:07,"526 13th St, Boston, MA 02215" +167532,Lightning Charging Cable,2,14.95,02/05/19 17:39,"852 Elm St, Atlanta, GA 30301" +167533,AAA Batteries (4-pack),2,2.99,02/16/19 21:47,"535 Washington St, Atlanta, GA 30301" +167534,Lightning Charging Cable,1,14.95,02/06/19 07:53,"343 Dogwood St, Los Angeles, CA 90001" +167535,USB-C Charging Cable,2,11.95,02/04/19 16:40,"83 Pine St, Los Angeles, CA 90001" +167536,AA Batteries (4-pack),1,3.84,02/22/19 11:25,"332 Ridge St, Los Angeles, CA 90001" +167537,AA Batteries (4-pack),2,3.84,02/24/19 05:45,"752 Forest St, Seattle, WA 98101" +167538,USB-C Charging Cable,2,11.95,02/09/19 15:07,"239 Church St, Los Angeles, CA 90001" +167539,AAA Batteries (4-pack),1,2.99,02/17/19 07:22,"507 Johnson St, San Francisco, CA 94016" +167540,AA Batteries (4-pack),1,3.84,02/15/19 14:16,"192 North St, Boston, MA 02215" +167541,Wired Headphones,1,11.99,02/18/19 12:07,"141 11th St, Los Angeles, CA 90001" +167542,AA Batteries (4-pack),1,3.84,02/27/19 19:35,"358 Cherry St, San Francisco, CA 94016" +167543,Apple Airpods Headphones,1,150,02/09/19 09:38,"76 2nd St, Los Angeles, CA 90001" +167544,Lightning Charging Cable,2,14.95,02/21/19 08:41,"398 Forest St, Atlanta, GA 30301" +167545,Apple Airpods Headphones,1,150,02/08/19 20:06,"561 Sunset St, San Francisco, CA 94016" +167546,USB-C Charging Cable,1,11.95,02/05/19 11:33,"136 Highland St, San Francisco, CA 94016" +167547,AAA Batteries (4-pack),2,2.99,02/11/19 21:09,"650 14th St, San Francisco, CA 94016" +167548,AA Batteries (4-pack),1,3.84,02/06/19 17:07,"289 1st St, Portland, ME 04101" +167549,Wired Headphones,1,11.99,02/20/19 19:29,"464 Church St, Dallas, TX 75001" +167550,20in Monitor,1,109.99,02/14/19 11:36,"783 North St, Austin, TX 73301" +167551,AA Batteries (4-pack),1,3.84,02/07/19 07:46,"26 Cedar St, Dallas, TX 75001" +167552,AA Batteries (4-pack),1,3.84,02/11/19 13:32,"5 14th St, Seattle, WA 98101" +167553,USB-C Charging Cable,2,11.95,02/24/19 11:14,"345 10th St, New York City, NY 10001" +167554,Lightning Charging Cable,1,14.95,02/02/19 09:58,"822 Meadow St, Boston, MA 02215" +167555,Google Phone,1,600,02/23/19 00:01,"767 Highland St, Dallas, TX 75001" +167556,AA Batteries (4-pack),1,3.84,02/14/19 15:06,"48 Jackson St, San Francisco, CA 94016" +167557,Bose SoundSport Headphones,1,99.99,02/26/19 13:25,"788 Elm St, Atlanta, GA 30301" +167558,AA Batteries (4-pack),1,3.84,02/22/19 10:16,"665 Lake St, San Francisco, CA 94016" +167559,27in 4K Gaming Monitor,1,389.99,02/14/19 19:25,"950 South St, Seattle, WA 98101" +167560,Google Phone,1,600,02/01/19 08:44,"20 Lakeview St, Boston, MA 02215" +167561,Wired Headphones,1,11.99,02/03/19 12:46,"771 9th St, Dallas, TX 75001" +167562,iPhone,1,700,02/11/19 19:54,"446 Park St, New York City, NY 10001" +167562,Apple Airpods Headphones,1,150,02/11/19 19:54,"446 Park St, New York City, NY 10001" +167563,27in FHD Monitor,1,149.99,02/06/19 12:39,"212 Jackson St, San Francisco, CA 94016" +167564,27in 4K Gaming Monitor,1,389.99,02/05/19 17:20,"920 South St, Dallas, TX 75001" +167565,Bose SoundSport Headphones,1,99.99,02/24/19 18:29,"145 Jefferson St, San Francisco, CA 94016" +167566,USB-C Charging Cable,1,11.95,02/25/19 16:05,"30 Hickory St, New York City, NY 10001" +167567,Vareebadd Phone,1,400,02/02/19 11:51,"278 14th St, San Francisco, CA 94016" +167567,USB-C Charging Cable,1,11.95,02/02/19 11:51,"278 14th St, San Francisco, CA 94016" +167567,Bose SoundSport Headphones,1,99.99,02/02/19 11:51,"278 14th St, San Francisco, CA 94016" +167568,Flatscreen TV,1,300,02/01/19 13:59,"931 12th St, Boston, MA 02215" +167569,Bose SoundSport Headphones,1,99.99,02/03/19 17:17,"932 7th St, Seattle, WA 98101" +167570,Wired Headphones,1,11.99,02/16/19 17:06,"638 Walnut St, San Francisco, CA 94016" +167571,Apple Airpods Headphones,1,150,02/09/19 05:58,"253 South St, Seattle, WA 98101" +167572,USB-C Charging Cable,1,11.95,02/15/19 14:00,"481 13th St, San Francisco, CA 94016" +167573,Macbook Pro Laptop,1,1700,02/01/19 17:11,"251 Ridge St, New York City, NY 10001" +167574,AA Batteries (4-pack),1,3.84,02/15/19 08:51,"855 8th St, Dallas, TX 75001" +167575,Apple Airpods Headphones,1,150,02/08/19 15:04,"540 10th St, San Francisco, CA 94016" +167576,AAA Batteries (4-pack),1,2.99,02/10/19 08:37,"147 Hickory St, Seattle, WA 98101" +167577,AAA Batteries (4-pack),2,2.99,02/04/19 08:03,"216 Highland St, Seattle, WA 98101" +167578,34in Ultrawide Monitor,1,379.99,02/18/19 16:59,"97 Ridge St, Boston, MA 02215" +167579,Wired Headphones,1,11.99,02/18/19 12:28,"54 Chestnut St, San Francisco, CA 94016" +167580,Bose SoundSport Headphones,1,99.99,02/27/19 12:19,"583 West St, San Francisco, CA 94016" +167581,USB-C Charging Cable,1,11.95,02/14/19 17:28,"260 River St, San Francisco, CA 94016" +167582,Wired Headphones,1,11.99,02/03/19 11:08,"577 Chestnut St, Atlanta, GA 30301" +167583,AAA Batteries (4-pack),1,2.99,02/04/19 19:34,"122 Chestnut St, Austin, TX 73301" +167584,20in Monitor,1,109.99,02/17/19 17:46,"925 6th St, Los Angeles, CA 90001" +167585,20in Monitor,1,109.99,02/21/19 08:51,"773 Willow St, Boston, MA 02215" +167586,AAA Batteries (4-pack),2,2.99,02/19/19 20:19,"861 Hill St, Los Angeles, CA 90001" +167587,USB-C Charging Cable,1,11.95,02/02/19 07:17,"807 Cedar St, Atlanta, GA 30301" +167588,iPhone,1,700,02/20/19 13:57,"445 7th St, Los Angeles, CA 90001" +167588,Wired Headphones,2,11.99,02/20/19 13:57,"445 7th St, Los Angeles, CA 90001" +167589,Macbook Pro Laptop,1,1700,02/25/19 22:48,"624 Lakeview St, San Francisco, CA 94016" +167590,20in Monitor,1,109.99,02/06/19 17:49,"538 Spruce St, Los Angeles, CA 90001" +167591,Wired Headphones,1,11.99,02/15/19 19:56,"345 Chestnut St, Boston, MA 02215" +167592,Lightning Charging Cable,1,14.95,02/13/19 16:01,"970 Maple St, San Francisco, CA 94016" +167593,AAA Batteries (4-pack),1,2.99,02/18/19 19:46,"246 Main St, Los Angeles, CA 90001" +167594,20in Monitor,2,109.99,02/22/19 23:01,"296 Jackson St, Boston, MA 02215" +167595,iPhone,1,700,02/28/19 09:17,"406 11th St, New York City, NY 10001" +167596,27in FHD Monitor,1,149.99,02/12/19 14:58,"77 10th St, Dallas, TX 75001" +167597,AA Batteries (4-pack),1,3.84,02/17/19 09:52,"46 Park St, Portland, ME 04101" +167598,Bose SoundSport Headphones,1,99.99,02/17/19 17:30,"917 Highland St, San Francisco, CA 94016" +167599,USB-C Charging Cable,1,11.95,02/16/19 05:06,"132 Maple St, Los Angeles, CA 90001" +167600,AAA Batteries (4-pack),1,2.99,02/05/19 22:08,"637 Center St, Los Angeles, CA 90001" +167601,Bose SoundSport Headphones,1,99.99,02/09/19 19:09,"377 6th St, Portland, OR 97035" +167602,Lightning Charging Cable,2,14.95,02/12/19 09:05,"451 Madison St, San Francisco, CA 94016" +167603,Bose SoundSport Headphones,1,99.99,02/25/19 12:12,"387 Chestnut St, San Francisco, CA 94016" +167604,USB-C Charging Cable,1,11.95,02/12/19 18:59,"245 Ridge St, Los Angeles, CA 90001" +167605,AAA Batteries (4-pack),1,2.99,02/10/19 19:36,"394 Dogwood St, San Francisco, CA 94016" +167606,27in 4K Gaming Monitor,1,389.99,02/01/19 12:13,"77 Maple St, Boston, MA 02215" +167607,Flatscreen TV,1,300,02/27/19 00:06,"11 Spruce St, Los Angeles, CA 90001" +167608,AAA Batteries (4-pack),2,2.99,02/14/19 16:51,"199 Pine St, San Francisco, CA 94016" +167609,AAA Batteries (4-pack),1,2.99,02/28/19 14:44,"95 Jefferson St, Boston, MA 02215" +167610,Bose SoundSport Headphones,1,99.99,02/08/19 22:49,"538 Highland St, Boston, MA 02215" +167611,AA Batteries (4-pack),1,3.84,02/12/19 19:55,"580 12th St, Atlanta, GA 30301" +167612,Apple Airpods Headphones,1,150,02/15/19 13:28,"785 Willow St, San Francisco, CA 94016" +167613,Wired Headphones,1,11.99,02/02/19 21:43,"20 Jackson St, New York City, NY 10001" +167614,27in FHD Monitor,1,149.99,02/16/19 11:38,"476 Jackson St, Dallas, TX 75001" +167615,AAA Batteries (4-pack),2,2.99,02/12/19 19:13,"821 Washington St, Portland, OR 97035" +167616,27in FHD Monitor,1,149.99,02/20/19 12:32,"568 Maple St, Los Angeles, CA 90001" +167617,USB-C Charging Cable,1,11.95,02/24/19 12:28,"770 Lake St, Austin, TX 73301" +167618,Apple Airpods Headphones,1,150,02/23/19 23:27,"896 12th St, Los Angeles, CA 90001" +167619,AA Batteries (4-pack),1,3.84,02/09/19 13:20,"627 Forest St, Los Angeles, CA 90001" +167620,USB-C Charging Cable,1,11.95,02/09/19 15:41,"801 Johnson St, Portland, OR 97035" +167621,LG Dryer,1,600.0,03/01/19 00:58,"294 Ridge St, Los Angeles, CA 90001" +167622,iPhone,1,700,02/02/19 18:30,"360 Main St, Boston, MA 02215" +167622,Wired Headphones,1,11.99,02/02/19 18:30,"360 Main St, Boston, MA 02215" +167623,USB-C Charging Cable,1,11.95,02/17/19 10:45,"844 Lake St, San Francisco, CA 94016" +167624,Wired Headphones,1,11.99,02/14/19 07:39,"430 Cedar St, Austin, TX 73301" +167625,LG Dryer,1,600.0,02/26/19 16:54,"159 7th St, San Francisco, CA 94016" +167626,Apple Airpods Headphones,1,150,02/18/19 19:47,"738 Center St, San Francisco, CA 94016" +167627,Wired Headphones,1,11.99,02/07/19 12:48,"616 Johnson St, San Francisco, CA 94016" +167628,Apple Airpods Headphones,1,150,02/03/19 14:53,"396 Main St, Austin, TX 73301" +167629,Macbook Pro Laptop,1,1700,02/13/19 11:43,"773 Johnson St, Portland, OR 97035" +167630,Apple Airpods Headphones,1,150,02/12/19 14:38,"571 Park St, Los Angeles, CA 90001" +167631,27in FHD Monitor,1,149.99,02/02/19 17:41,"364 Washington St, Boston, MA 02215" +167632,Bose SoundSport Headphones,1,99.99,02/03/19 18:02,"995 Cherry St, New York City, NY 10001" +167633,Wired Headphones,1,11.99,02/27/19 20:19,"524 4th St, Boston, MA 02215" +167634,AA Batteries (4-pack),1,3.84,02/04/19 21:37,"686 Lakeview St, Boston, MA 02215" +167635,Apple Airpods Headphones,1,150,02/26/19 20:49,"267 Madison St, San Francisco, CA 94016" +167636,AAA Batteries (4-pack),1,2.99,02/02/19 15:38,"128 West St, Los Angeles, CA 90001" +167637,Google Phone,1,600,02/25/19 10:53,"433 13th St, New York City, NY 10001" +167638,AAA Batteries (4-pack),1,2.99,02/05/19 18:30,"438 Ridge St, San Francisco, CA 94016" +167639,Wired Headphones,1,11.99,02/16/19 05:10,"49 Cherry St, Portland, ME 04101" +167640,Wired Headphones,1,11.99,02/03/19 13:56,"387 West St, San Francisco, CA 94016" +167641,Bose SoundSport Headphones,1,99.99,02/09/19 11:52,"335 North St, Austin, TX 73301" +167642,AA Batteries (4-pack),2,3.84,02/20/19 20:14,"511 Elm St, San Francisco, CA 94016" +167643,AA Batteries (4-pack),1,3.84,02/07/19 09:24,"265 North St, Atlanta, GA 30301" +167643,USB-C Charging Cable,1,11.95,02/07/19 09:24,"265 North St, Atlanta, GA 30301" +167644,USB-C Charging Cable,1,11.95,02/05/19 12:15,"993 Spruce St, San Francisco, CA 94016" +167645,AA Batteries (4-pack),4,3.84,02/14/19 08:32,"257 Forest St, San Francisco, CA 94016" +167646,Wired Headphones,1,11.99,02/18/19 19:59,"121 6th St, Dallas, TX 75001" +167647,Apple Airpods Headphones,1,150,02/26/19 20:49,"89 Forest St, Atlanta, GA 30301" +167648,Lightning Charging Cable,1,14.95,02/15/19 22:37,"125 Meadow St, Los Angeles, CA 90001" +167649,Wired Headphones,1,11.99,02/01/19 16:13,"724 Jackson St, New York City, NY 10001" +167650,USB-C Charging Cable,1,11.95,02/11/19 22:45,"750 4th St, San Francisco, CA 94016" +167651,AAA Batteries (4-pack),2,2.99,02/10/19 13:47,"908 Highland St, New York City, NY 10001" +167652,USB-C Charging Cable,1,11.95,02/28/19 19:28,"881 Park St, Dallas, TX 75001" +167653,Bose SoundSport Headphones,1,99.99,02/28/19 12:08,"252 South St, Los Angeles, CA 90001" +167654,Vareebadd Phone,1,400,02/07/19 14:03,"50 Lincoln St, New York City, NY 10001" +167655,Apple Airpods Headphones,1,150,02/09/19 11:12,"87 North St, Dallas, TX 75001" +167656,Lightning Charging Cable,1,14.95,02/05/19 12:48,"712 Lincoln St, Dallas, TX 75001" +167657,27in FHD Monitor,1,149.99,02/27/19 09:29,"61 Maple St, Boston, MA 02215" +167658,27in FHD Monitor,1,149.99,02/15/19 13:29,"917 Lincoln St, Portland, OR 97035" +167659,Bose SoundSport Headphones,1,99.99,02/10/19 16:38,"39 Dogwood St, Los Angeles, CA 90001" +167660,Lightning Charging Cable,2,14.95,02/18/19 18:55,"520 Spruce St, Boston, MA 02215" +167661,Wired Headphones,1,11.99,02/02/19 22:02,"44 South St, Austin, TX 73301" +167662,27in FHD Monitor,1,149.99,02/23/19 21:41,"645 Walnut St, Atlanta, GA 30301" +167663,Bose SoundSport Headphones,1,99.99,02/12/19 22:58,"199 Spruce St, Los Angeles, CA 90001" +167663,AA Batteries (4-pack),1,3.84,02/12/19 22:58,"199 Spruce St, Los Angeles, CA 90001" +167664,Lightning Charging Cable,1,14.95,02/13/19 22:11,"806 South St, Atlanta, GA 30301" +167665,USB-C Charging Cable,1,11.95,02/09/19 12:25,"417 Park St, New York City, NY 10001" +167666,Apple Airpods Headphones,1,150,02/13/19 20:38,"895 2nd St, Boston, MA 02215" +167667,Lightning Charging Cable,1,14.95,02/24/19 20:10,"186 Jackson St, Dallas, TX 75001" +167668,Wired Headphones,1,11.99,02/05/19 07:43,"188 Main St, Seattle, WA 98101" +167669,AAA Batteries (4-pack),1,2.99,02/18/19 00:25,"435 7th St, San Francisco, CA 94016" +167670,AA Batteries (4-pack),2,3.84,02/28/19 15:23,"578 Maple St, Seattle, WA 98101" +167671,USB-C Charging Cable,1,11.95,02/17/19 12:12,"987 6th St, Boston, MA 02215" +167672,Bose SoundSport Headphones,1,99.99,02/03/19 19:27,"266 14th St, Seattle, WA 98101" +167673,AA Batteries (4-pack),1,3.84,02/17/19 06:02,"298 Johnson St, New York City, NY 10001" +167674,Lightning Charging Cable,1,14.95,02/11/19 18:17,"917 1st St, Atlanta, GA 30301" +167675,USB-C Charging Cable,1,11.95,02/01/19 10:01,"418 Spruce St, Boston, MA 02215" +167676,Apple Airpods Headphones,1,150,02/24/19 14:18,"63 Madison St, Los Angeles, CA 90001" +167677,27in 4K Gaming Monitor,1,389.99,02/21/19 11:18,"381 13th St, New York City, NY 10001" +167678,34in Ultrawide Monitor,1,379.99,02/01/19 21:28,"293 4th St, Dallas, TX 75001" +167679,Apple Airpods Headphones,1,150,02/27/19 22:14,"20 Sunset St, Los Angeles, CA 90001" +167680,Apple Airpods Headphones,1,150,02/19/19 18:54,"875 Maple St, Dallas, TX 75001" +167681,34in Ultrawide Monitor,1,379.99,02/13/19 14:21,"24 Adams St, Los Angeles, CA 90001" +167682,Flatscreen TV,1,300,02/06/19 15:14,"987 Meadow St, Dallas, TX 75001" +167683,Flatscreen TV,1,300,02/09/19 18:44,"555 South St, Seattle, WA 98101" +167684,Google Phone,1,600,02/08/19 15:27,"940 Center St, Atlanta, GA 30301" +167685,Wired Headphones,1,11.99,02/10/19 13:13,"556 6th St, New York City, NY 10001" +167686,AAA Batteries (4-pack),1,2.99,02/26/19 20:26,"461 Forest St, Austin, TX 73301" +167687,Lightning Charging Cable,1,14.95,02/22/19 19:22,"267 Church St, New York City, NY 10001" +167688,Macbook Pro Laptop,1,1700,02/27/19 15:47,"391 Wilson St, Los Angeles, CA 90001" +167689,AAA Batteries (4-pack),1,2.99,02/27/19 14:42,"825 Hill St, Seattle, WA 98101" +167690,27in FHD Monitor,1,149.99,02/06/19 23:35,"489 14th St, Austin, TX 73301" +167691,AAA Batteries (4-pack),1,2.99,02/24/19 13:41,"347 Johnson St, Portland, OR 97035" +167692,27in 4K Gaming Monitor,1,389.99,02/15/19 01:45,"10 Cedar St, Los Angeles, CA 90001" +167693,AA Batteries (4-pack),1,3.84,02/23/19 07:50,"689 11th St, San Francisco, CA 94016" +167694,AAA Batteries (4-pack),2,2.99,02/23/19 15:10,"108 Washington St, New York City, NY 10001" +167695,AA Batteries (4-pack),1,3.84,02/01/19 18:29,"62 Walnut St, San Francisco, CA 94016" +167696,Lightning Charging Cable,1,14.95,02/24/19 01:32,"519 Hill St, Los Angeles, CA 90001" +167697,iPhone,1,700,02/14/19 09:42,"253 Main St, Atlanta, GA 30301" +167698,AA Batteries (4-pack),2,3.84,02/04/19 08:36,"882 Dogwood St, Los Angeles, CA 90001" +167699,Lightning Charging Cable,2,14.95,02/18/19 12:50,"288 North St, Los Angeles, CA 90001" +167700,AAA Batteries (4-pack),1,2.99,02/19/19 14:24,"611 10th St, Portland, ME 04101" +167701,Flatscreen TV,1,300,02/10/19 13:16,"86 Center St, New York City, NY 10001" +167702,USB-C Charging Cable,2,11.95,02/19/19 09:38,"638 Willow St, Dallas, TX 75001" +167703,Apple Airpods Headphones,1,150,02/15/19 15:15,"423 Johnson St, Los Angeles, CA 90001" +167704,Google Phone,1,600,02/06/19 00:41,"26 Pine St, Dallas, TX 75001" +167705,Wired Headphones,1,11.99,02/25/19 19:49,"855 Lake St, Portland, OR 97035" +167706,iPhone,1,700,02/07/19 15:29,"965 Spruce St, San Francisco, CA 94016" +167707,Lightning Charging Cable,1,14.95,02/13/19 20:21,"683 12th St, Los Angeles, CA 90001" +167708,ThinkPad Laptop,1,999.99,02/13/19 11:33,"721 Washington St, New York City, NY 10001" +167709,AAA Batteries (4-pack),1,2.99,02/26/19 17:47,"265 Jefferson St, Seattle, WA 98101" +167710,Apple Airpods Headphones,1,150,02/18/19 09:28,"881 Park St, Los Angeles, CA 90001" +167711,AAA Batteries (4-pack),1,2.99,02/09/19 16:17,"468 4th St, San Francisco, CA 94016" +167712,AA Batteries (4-pack),1,3.84,02/07/19 18:21,"1 North St, San Francisco, CA 94016" +167713,AA Batteries (4-pack),1,3.84,02/14/19 09:16,"81 Adams St, Seattle, WA 98101" +167714,USB-C Charging Cable,1,11.95,02/20/19 20:27,"969 Main St, San Francisco, CA 94016" +167715,USB-C Charging Cable,1,11.95,02/03/19 13:20,"349 2nd St, San Francisco, CA 94016" +167716,USB-C Charging Cable,1,11.95,02/21/19 11:38,"562 Sunset St, Dallas, TX 75001" +167717,USB-C Charging Cable,2,11.95,02/24/19 20:42,"948 14th St, San Francisco, CA 94016" +167718,AA Batteries (4-pack),1,3.84,02/28/19 23:54,"34 Jefferson St, San Francisco, CA 94016" +167719,USB-C Charging Cable,1,11.95,02/03/19 14:25,"20 9th St, Los Angeles, CA 90001" +167720,Bose SoundSport Headphones,1,99.99,02/25/19 17:37,"30 2nd St, Boston, MA 02215" +167721,AAA Batteries (4-pack),1,2.99,02/04/19 15:26,"108 Madison St, San Francisco, CA 94016" +167722,Lightning Charging Cable,1,14.95,02/23/19 16:39,"528 Madison St, Dallas, TX 75001" +167723,27in 4K Gaming Monitor,1,389.99,02/05/19 00:00,"118 Forest St, Boston, MA 02215" +167724,Lightning Charging Cable,1,14.95,02/21/19 14:00,"445 Lincoln St, Dallas, TX 75001" +167725,Wired Headphones,1,11.99,02/09/19 12:48,"935 Church St, Atlanta, GA 30301" +167726,27in FHD Monitor,1,149.99,02/28/19 19:21,"768 River St, Los Angeles, CA 90001" +167727,iPhone,1,700,02/01/19 12:37,"325 Church St, New York City, NY 10001" +167728,ThinkPad Laptop,1,999.99,02/26/19 14:28,"935 Jackson St, Portland, OR 97035" +167729,34in Ultrawide Monitor,1,379.99,02/17/19 13:27,"841 12th St, New York City, NY 10001" +167730,USB-C Charging Cable,1,11.95,02/10/19 12:51,"877 Pine St, Dallas, TX 75001" +167731,27in FHD Monitor,1,149.99,02/08/19 09:23,"844 13th St, Austin, TX 73301" +167732,Wired Headphones,2,11.99,02/27/19 21:22,"155 Willow St, Seattle, WA 98101" +167733,Macbook Pro Laptop,1,1700,02/13/19 00:45,"48 Center St, Dallas, TX 75001" +167734,AAA Batteries (4-pack),1,2.99,02/12/19 09:37,"556 Johnson St, San Francisco, CA 94016" +167735,USB-C Charging Cable,1,11.95,02/16/19 14:25,"616 Jackson St, San Francisco, CA 94016" +167736,27in 4K Gaming Monitor,1,389.99,02/15/19 10:10,"491 Maple St, Seattle, WA 98101" +167737,27in FHD Monitor,1,149.99,02/15/19 10:37,"292 Sunset St, Seattle, WA 98101" +167738,Lightning Charging Cable,1,14.95,02/21/19 09:47,"195 13th St, Seattle, WA 98101" +167739,34in Ultrawide Monitor,1,379.99,02/10/19 12:41,"51 Forest St, Dallas, TX 75001" +167740,iPhone,1,700,02/25/19 17:01,"155 4th St, Los Angeles, CA 90001" +167741,ThinkPad Laptop,1,999.99,02/19/19 07:52,"357 Lakeview St, Atlanta, GA 30301" +167742,Lightning Charging Cable,1,14.95,02/05/19 09:38,"137 Elm St, Atlanta, GA 30301" +167743,AA Batteries (4-pack),1,3.84,02/15/19 22:37,"415 South St, San Francisco, CA 94016" +167744,Flatscreen TV,1,300,02/18/19 22:42,"893 Adams St, Los Angeles, CA 90001" +167745,Apple Airpods Headphones,1,150,02/19/19 19:33,"176 6th St, Dallas, TX 75001" +167746,AA Batteries (4-pack),3,3.84,02/27/19 10:41,"179 Lincoln St, New York City, NY 10001" +167747,Bose SoundSport Headphones,1,99.99,02/12/19 04:48,"995 4th St, Austin, TX 73301" +167748,Lightning Charging Cable,1,14.95,02/19/19 06:09,"768 Lincoln St, San Francisco, CA 94016" +167749,Apple Airpods Headphones,1,150,02/04/19 17:46,"211 Walnut St, Dallas, TX 75001" +167750,Bose SoundSport Headphones,1,99.99,02/20/19 23:09,"384 Forest St, Boston, MA 02215" +167751,iPhone,1,700,02/25/19 11:00,"49 Elm St, New York City, NY 10001" +167752,Lightning Charging Cable,1,14.95,02/10/19 12:43,"227 4th St, Portland, OR 97035" +167753,AAA Batteries (4-pack),1,2.99,02/21/19 01:06,"286 Sunset St, Los Angeles, CA 90001" +167754,Flatscreen TV,1,300,02/26/19 14:00,"120 Park St, New York City, NY 10001" +167755,ThinkPad Laptop,1,999.99,02/19/19 07:37,"671 7th St, Boston, MA 02215" +167756,ThinkPad Laptop,1,999.99,02/19/19 19:23,"685 North St, New York City, NY 10001" +167757,AA Batteries (4-pack),1,3.84,02/18/19 18:31,"243 Pine St, San Francisco, CA 94016" +167758,Wired Headphones,1,11.99,02/10/19 13:49,"885 4th St, Seattle, WA 98101" +167759,Flatscreen TV,1,300,02/12/19 16:16,"164 9th St, New York City, NY 10001" +167760,Lightning Charging Cable,1,14.95,02/07/19 05:09,"528 Dogwood St, Los Angeles, CA 90001" +167761,AAA Batteries (4-pack),1,2.99,02/02/19 08:45,"972 7th St, Dallas, TX 75001" +167762,Macbook Pro Laptop,1,1700,02/25/19 19:05,"399 Johnson St, Portland, OR 97035" +167763,LG Dryer,1,600.0,02/14/19 12:14,"399 Lake St, New York City, NY 10001" +167764,Wired Headphones,1,11.99,02/28/19 19:40,"952 12th St, San Francisco, CA 94016" +167765,Wired Headphones,1,11.99,02/26/19 02:27,"650 Dogwood St, Boston, MA 02215" +167766,27in 4K Gaming Monitor,1,389.99,02/01/19 14:59,"462 Maple St, Los Angeles, CA 90001" +167767,Lightning Charging Cable,1,14.95,02/03/19 10:25,"29 Ridge St, Seattle, WA 98101" +167768,AAA Batteries (4-pack),1,2.99,02/23/19 13:38,"156 Sunset St, Dallas, TX 75001" +167769,ThinkPad Laptop,1,999.99,02/23/19 18:26,"580 Park St, New York City, NY 10001" +167770,34in Ultrawide Monitor,1,379.99,02/05/19 21:49,"354 Highland St, Seattle, WA 98101" +167771,20in Monitor,1,109.99,02/10/19 16:27,"19 Spruce St, Seattle, WA 98101" +167772,Google Phone,1,600,02/12/19 12:00,"561 South St, San Francisco, CA 94016" +167773,USB-C Charging Cable,1,11.95,02/08/19 19:09,"517 14th St, San Francisco, CA 94016" +167774,Flatscreen TV,1,300,02/19/19 18:24,"896 4th St, San Francisco, CA 94016" +167775,USB-C Charging Cable,1,11.95,02/26/19 14:38,"91 8th St, Los Angeles, CA 90001" +167776,Lightning Charging Cable,2,14.95,02/04/19 09:27,"535 1st St, San Francisco, CA 94016" +167776,AAA Batteries (4-pack),1,2.99,02/04/19 09:27,"535 1st St, San Francisco, CA 94016" +167777,Bose SoundSport Headphones,1,99.99,02/08/19 11:31,"818 Willow St, Portland, OR 97035" +167778,Lightning Charging Cable,1,14.95,02/15/19 21:24,"397 9th St, Los Angeles, CA 90001" +167779,Bose SoundSport Headphones,1,99.99,02/03/19 08:15,"440 Sunset St, San Francisco, CA 94016" +167780,Lightning Charging Cable,1,14.95,02/01/19 14:44,"578 Lincoln St, Seattle, WA 98101" +167781,USB-C Charging Cable,1,11.95,02/14/19 21:04,"622 7th St, Los Angeles, CA 90001" +167782,Apple Airpods Headphones,1,150,02/22/19 14:11,"366 10th St, New York City, NY 10001" +167783,27in FHD Monitor,1,149.99,02/12/19 23:53,"538 Highland St, San Francisco, CA 94016" +167784,Apple Airpods Headphones,1,150,02/20/19 12:30,"675 1st St, Los Angeles, CA 90001" +167785,Bose SoundSport Headphones,1,99.99,02/01/19 09:02,"862 Hill St, Portland, ME 04101" +167786,AA Batteries (4-pack),1,3.84,02/06/19 09:19,"934 5th St, San Francisco, CA 94016" +167787,Apple Airpods Headphones,1,150,02/01/19 13:52,"19 9th St, San Francisco, CA 94016" +167788,USB-C Charging Cable,1,11.95,02/16/19 12:05,"113 Hickory St, Boston, MA 02215" +167789,27in 4K Gaming Monitor,1,389.99,02/06/19 00:22,"441 Elm St, New York City, NY 10001" +167790,27in FHD Monitor,1,149.99,02/10/19 15:38,"776 Dogwood St, New York City, NY 10001" +167791,USB-C Charging Cable,1,11.95,02/27/19 15:23,"546 Hill St, San Francisco, CA 94016" +167792,20in Monitor,1,109.99,02/11/19 09:47,"267 8th St, Atlanta, GA 30301" +167793,Google Phone,1,600,02/20/19 21:48,"364 Spruce St, Atlanta, GA 30301" +167793,Wired Headphones,3,11.99,02/20/19 21:48,"364 Spruce St, Atlanta, GA 30301" +167794,AAA Batteries (4-pack),1,2.99,02/04/19 16:08,"792 Willow St, Austin, TX 73301" +167795,AA Batteries (4-pack),1,3.84,02/24/19 21:14,"790 Chestnut St, Los Angeles, CA 90001" +167796,Macbook Pro Laptop,1,1700,02/23/19 15:32,"924 10th St, Atlanta, GA 30301" +167797,Bose SoundSport Headphones,1,99.99,02/06/19 12:39,"173 Ridge St, New York City, NY 10001" +167798,Apple Airpods Headphones,1,150,02/21/19 20:06,"328 7th St, Atlanta, GA 30301" +167799,AA Batteries (4-pack),2,3.84,02/10/19 12:07,"518 Lincoln St, San Francisco, CA 94016" +167800,Wired Headphones,1,11.99,02/20/19 12:16,"821 11th St, Los Angeles, CA 90001" +167801,20in Monitor,1,109.99,02/08/19 20:56,"874 6th St, San Francisco, CA 94016" +167802,AA Batteries (4-pack),1,3.84,02/15/19 18:07,"939 Highland St, San Francisco, CA 94016" +167803,Lightning Charging Cable,1,14.95,02/16/19 20:12,"586 Lincoln St, New York City, NY 10001" +167804,Lightning Charging Cable,1,14.95,02/28/19 08:18,"175 Walnut St, Seattle, WA 98101" +167805,AAA Batteries (4-pack),1,2.99,02/01/19 19:30,"358 Main St, Seattle, WA 98101" +167806,Wired Headphones,1,11.99,02/16/19 18:57,"933 7th St, San Francisco, CA 94016" +167807,Vareebadd Phone,1,400,02/16/19 13:46,"573 7th St, Boston, MA 02215" +167807,USB-C Charging Cable,1,11.95,02/16/19 13:46,"573 7th St, Boston, MA 02215" +167807,Wired Headphones,1,11.99,02/16/19 13:46,"573 7th St, Boston, MA 02215" +167808,ThinkPad Laptop,1,999.99,02/05/19 21:01,"327 13th St, Atlanta, GA 30301" +167809,iPhone,1,700,02/22/19 15:03,"286 12th St, San Francisco, CA 94016" +167810,27in 4K Gaming Monitor,1,389.99,02/17/19 21:51,"683 Walnut St, Dallas, TX 75001" +167811,Lightning Charging Cable,1,14.95,02/24/19 08:45,"118 Pine St, San Francisco, CA 94016" +167812,Apple Airpods Headphones,1,150,02/12/19 16:21,"803 14th St, Seattle, WA 98101" +167813,Lightning Charging Cable,1,14.95,02/24/19 12:26,"225 6th St, Seattle, WA 98101" +167814,USB-C Charging Cable,1,11.95,02/24/19 21:50,"385 Lincoln St, Los Angeles, CA 90001" +167815,iPhone,1,700,02/07/19 16:03,"298 Sunset St, New York City, NY 10001" +167816,Wired Headphones,1,11.99,02/25/19 06:22,"153 Madison St, Boston, MA 02215" +167817,Lightning Charging Cable,1,14.95,02/24/19 20:41,"973 Washington St, San Francisco, CA 94016" +167818,USB-C Charging Cable,1,11.95,02/05/19 01:55,"989 10th St, Boston, MA 02215" +167819,AAA Batteries (4-pack),1,2.99,02/06/19 15:59,"869 Johnson St, Los Angeles, CA 90001" +167820,Apple Airpods Headphones,1,150,02/04/19 20:24,"249 Jefferson St, Portland, OR 97035" +167821,Lightning Charging Cable,1,14.95,02/03/19 13:38,"929 Elm St, Austin, TX 73301" +167822,Lightning Charging Cable,1,14.95,02/03/19 18:34,"262 2nd St, Austin, TX 73301" +167823,Apple Airpods Headphones,1,150,02/07/19 21:29,"300 Hill St, Portland, OR 97035" +167824,Google Phone,1,600,02/04/19 16:43,"416 Highland St, Los Angeles, CA 90001" +167825,AAA Batteries (4-pack),1,2.99,02/13/19 22:56,"637 Church St, San Francisco, CA 94016" +167826,USB-C Charging Cable,1,11.95,02/13/19 18:50,"475 6th St, San Francisco, CA 94016" +167827,Flatscreen TV,1,300,02/17/19 15:15,"63 Cherry St, Seattle, WA 98101" +167828,Apple Airpods Headphones,1,150,02/10/19 23:32,"98 Lakeview St, Seattle, WA 98101" +167829,ThinkPad Laptop,1,999.99,02/03/19 13:32,"811 South St, Austin, TX 73301" +167830,USB-C Charging Cable,1,11.95,02/04/19 09:26,"571 4th St, Portland, ME 04101" +167831,iPhone,1,700,02/20/19 09:13,"724 West St, Atlanta, GA 30301" +167832,USB-C Charging Cable,1,11.95,02/24/19 09:37,"603 7th St, San Francisco, CA 94016" +167833,27in FHD Monitor,1,149.99,02/01/19 20:14,"621 9th St, New York City, NY 10001" +167834,Lightning Charging Cable,2,14.95,02/05/19 18:25,"783 Lakeview St, Los Angeles, CA 90001" +167835,Wired Headphones,1,11.99,02/04/19 13:44,"415 Johnson St, San Francisco, CA 94016" +167836,ThinkPad Laptop,1,999.99,02/18/19 20:31,"8 Forest St, Boston, MA 02215" +167837,USB-C Charging Cable,1,11.95,02/06/19 00:19,"592 Maple St, Seattle, WA 98101" +167838,Wired Headphones,1,11.99,02/15/19 11:13,"364 1st St, Atlanta, GA 30301" +167839,AAA Batteries (4-pack),1,2.99,02/02/19 19:45,"928 Lakeview St, San Francisco, CA 94016" +167840,USB-C Charging Cable,1,11.95,02/20/19 11:47,"489 Lakeview St, New York City, NY 10001" +167841,Macbook Pro Laptop,1,1700,02/25/19 20:48,"183 Washington St, San Francisco, CA 94016" +167842,Wired Headphones,1,11.99,02/17/19 20:27,"657 Pine St, Los Angeles, CA 90001" +167843,Bose SoundSport Headphones,1,99.99,02/28/19 11:20,"540 14th St, New York City, NY 10001" +167844,USB-C Charging Cable,1,11.95,02/28/19 08:43,"940 Jefferson St, Seattle, WA 98101" +167845,Apple Airpods Headphones,1,150,02/23/19 11:30,"299 Meadow St, San Francisco, CA 94016" +167846,27in FHD Monitor,1,149.99,02/04/19 15:47,"871 Jefferson St, San Francisco, CA 94016" +167847,Vareebadd Phone,1,400,02/01/19 21:21,"580 9th St, Los Angeles, CA 90001" +167848,AA Batteries (4-pack),1,3.84,02/26/19 12:01,"163 Jackson St, Seattle, WA 98101" +167849,USB-C Charging Cable,2,11.95,02/01/19 11:27,"228 4th St, Los Angeles, CA 90001" +167850,Apple Airpods Headphones,1,150,02/04/19 14:01,"179 North St, Dallas, TX 75001" +167851,iPhone,1,700,02/08/19 18:00,"311 Cherry St, San Francisco, CA 94016" +167852,Apple Airpods Headphones,1,150,02/24/19 17:25,"57 5th St, Dallas, TX 75001" +167853,Bose SoundSport Headphones,1,99.99,02/27/19 12:21,"261 11th St, San Francisco, CA 94016" +167854,Wired Headphones,1,11.99,02/09/19 20:19,"425 Madison St, San Francisco, CA 94016" +167855,USB-C Charging Cable,1,11.95,02/23/19 11:37,"180 11th St, San Francisco, CA 94016" +167856,Bose SoundSport Headphones,1,99.99,02/05/19 08:47,"568 Jefferson St, San Francisco, CA 94016" +167857,AAA Batteries (4-pack),3,2.99,02/19/19 13:13,"660 Cherry St, New York City, NY 10001" +167858,AAA Batteries (4-pack),1,2.99,02/12/19 23:25,"563 8th St, San Francisco, CA 94016" +167859,27in FHD Monitor,1,149.99,02/06/19 22:16,"454 Johnson St, Portland, OR 97035" +167860,AAA Batteries (4-pack),1,2.99,02/14/19 01:16,"45 Center St, San Francisco, CA 94016" +167861,20in Monitor,1,109.99,02/01/19 18:40,"176 Forest St, Atlanta, GA 30301" +167862,AAA Batteries (4-pack),1,2.99,02/04/19 23:03,"438 Lakeview St, San Francisco, CA 94016" +167863,Lightning Charging Cable,1,14.95,02/01/19 18:38,"920 Wilson St, San Francisco, CA 94016" +167864,27in FHD Monitor,1,149.99,02/12/19 10:09,"965 Jefferson St, Austin, TX 73301" +167865,Macbook Pro Laptop,1,1700,02/09/19 23:55,"819 7th St, Portland, OR 97035" +167866,AAA Batteries (4-pack),1,2.99,02/04/19 17:45,"68 9th St, San Francisco, CA 94016" +167867,Wired Headphones,1,11.99,02/10/19 07:50,"766 Maple St, Boston, MA 02215" +167868,Wired Headphones,1,11.99,02/15/19 10:27,"669 Ridge St, San Francisco, CA 94016" +167869,20in Monitor,1,109.99,02/13/19 12:40,"160 Park St, San Francisco, CA 94016" +167870,Wired Headphones,1,11.99,02/17/19 01:00,"381 5th St, Los Angeles, CA 90001" +167871,Flatscreen TV,1,300,02/16/19 16:33,"972 Lake St, San Francisco, CA 94016" +167872,AAA Batteries (4-pack),1,2.99,02/24/19 15:39,"560 Park St, San Francisco, CA 94016" +167873,AAA Batteries (4-pack),1,2.99,02/02/19 17:22,"404 Elm St, Portland, ME 04101" +167874,Wired Headphones,1,11.99,02/28/19 08:07,"565 7th St, New York City, NY 10001" +167875,Bose SoundSport Headphones,1,99.99,02/01/19 12:42,"683 12th St, Los Angeles, CA 90001" +167876,AAA Batteries (4-pack),3,2.99,02/13/19 17:34,"97 5th St, Seattle, WA 98101" +167877,Flatscreen TV,1,300,02/27/19 22:49,"179 Lake St, Los Angeles, CA 90001" +167878,Wired Headphones,1,11.99,02/01/19 11:07,"840 River St, Los Angeles, CA 90001" +167879,AAA Batteries (4-pack),4,2.99,02/15/19 00:33,"684 Cherry St, New York City, NY 10001" +167880,USB-C Charging Cable,1,11.95,02/12/19 21:01,"527 Lakeview St, New York City, NY 10001" +167881,Lightning Charging Cable,1,14.95,02/10/19 14:54,"998 Church St, New York City, NY 10001" +167882,Wired Headphones,2,11.99,02/16/19 20:27,"388 Jefferson St, Atlanta, GA 30301" +167883,ThinkPad Laptop,1,999.99,02/11/19 17:20,"178 Walnut St, New York City, NY 10001" +167884,27in FHD Monitor,1,149.99,02/14/19 23:06,"647 Lincoln St, New York City, NY 10001" +167885,Wired Headphones,1,11.99,02/14/19 13:21,"886 5th St, Dallas, TX 75001" +167886,Wired Headphones,2,11.99,02/13/19 07:09,"55 Cedar St, New York City, NY 10001" +167887,USB-C Charging Cable,1,11.95,02/08/19 16:42,"999 Willow St, Atlanta, GA 30301" +167888,USB-C Charging Cable,1,11.95,02/08/19 21:32,"702 Chestnut St, Seattle, WA 98101" +167889,AAA Batteries (4-pack),1,2.99,02/22/19 22:56,"974 North St, San Francisco, CA 94016" +167890,iPhone,1,700,02/08/19 21:03,"519 Spruce St, Seattle, WA 98101" +167891,USB-C Charging Cable,1,11.95,02/13/19 17:41,"290 Cedar St, Seattle, WA 98101" +167892,AA Batteries (4-pack),1,3.84,02/13/19 17:31,"834 Hickory St, Atlanta, GA 30301" +167893,USB-C Charging Cable,1,11.95,02/20/19 12:12,"312 10th St, New York City, NY 10001" +167894,AA Batteries (4-pack),3,3.84,02/20/19 12:49,"995 River St, Los Angeles, CA 90001" +167895,AAA Batteries (4-pack),1,2.99,02/08/19 18:37,"680 Main St, San Francisco, CA 94016" +167896,AAA Batteries (4-pack),1,2.99,02/09/19 09:50,"152 Hickory St, Boston, MA 02215" +167897,USB-C Charging Cable,2,11.95,02/25/19 14:49,"59 Jackson St, Boston, MA 02215" +167898,Wired Headphones,1,11.99,02/05/19 16:25,"437 Cherry St, New York City, NY 10001" +167899,Wired Headphones,1,11.99,02/01/19 09:58,"47 10th St, San Francisco, CA 94016" +167900,USB-C Charging Cable,1,11.95,02/23/19 10:21,"795 Lincoln St, Los Angeles, CA 90001" +167901,Lightning Charging Cable,1,14.95,02/13/19 10:42,"393 Jackson St, Boston, MA 02215" +167902,Apple Airpods Headphones,1,150,02/11/19 20:26,"980 Adams St, Los Angeles, CA 90001" +167903,Bose SoundSport Headphones,1,99.99,02/10/19 08:48,"658 Spruce St, Portland, OR 97035" +167904,20in Monitor,1,109.99,02/18/19 13:09,"15 Hill St, San Francisco, CA 94016" +167905,27in 4K Gaming Monitor,1,389.99,02/18/19 23:04,"71 River St, Dallas, TX 75001" +167906,AAA Batteries (4-pack),2,2.99,02/01/19 17:27,"131 Dogwood St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +167907,AA Batteries (4-pack),1,3.84,02/11/19 23:15,"545 5th St, Los Angeles, CA 90001" +167908,USB-C Charging Cable,1,11.95,02/06/19 20:21,"541 Jefferson St, San Francisco, CA 94016" +167909,27in 4K Gaming Monitor,1,389.99,02/05/19 11:03,"714 Main St, Los Angeles, CA 90001" +167910,USB-C Charging Cable,1,11.95,03/01/19 01:22,"795 Cherry St, New York City, NY 10001" +167911,iPhone,1,700,02/04/19 02:32,"764 Adams St, Los Angeles, CA 90001" +167912,Apple Airpods Headphones,1,150,02/02/19 12:54,"156 River St, Los Angeles, CA 90001" +167913,AA Batteries (4-pack),1,3.84,02/10/19 11:05,"262 Elm St, Austin, TX 73301" +167914,Wired Headphones,1,11.99,02/19/19 18:21,"21 Main St, New York City, NY 10001" +167915,AAA Batteries (4-pack),2,2.99,02/19/19 19:17,"890 Main St, San Francisco, CA 94016" +167916,USB-C Charging Cable,1,11.95,02/28/19 07:22,"725 Willow St, Atlanta, GA 30301" +167917,AAA Batteries (4-pack),3,2.99,02/01/19 06:22,"105 12th St, San Francisco, CA 94016" +167918,Google Phone,1,600,02/07/19 13:39,"998 Forest St, Los Angeles, CA 90001" +167919,Bose SoundSport Headphones,1,99.99,02/11/19 23:23,"443 Highland St, San Francisco, CA 94016" +167920,AAA Batteries (4-pack),1,2.99,02/13/19 15:17,"389 6th St, Los Angeles, CA 90001" +167921,27in FHD Monitor,1,149.99,02/01/19 12:24,"332 Dogwood St, Atlanta, GA 30301" +167922,Bose SoundSport Headphones,1,99.99,02/08/19 08:04,"88 Hickory St, San Francisco, CA 94016" +167923,USB-C Charging Cable,1,11.95,02/18/19 11:10,"589 Jackson St, New York City, NY 10001" +167924,Apple Airpods Headphones,1,150,02/23/19 13:21,"566 Church St, Boston, MA 02215" +167925,Wired Headphones,1,11.99,02/08/19 15:26,"991 12th St, Seattle, WA 98101" +167926,AA Batteries (4-pack),1,3.84,02/03/19 10:58,"56 6th St, Atlanta, GA 30301" +167927,AAA Batteries (4-pack),2,2.99,02/17/19 23:10,"522 Lakeview St, New York City, NY 10001" +167928,AAA Batteries (4-pack),1,2.99,02/08/19 12:44,"553 West St, Atlanta, GA 30301" +167929,Google Phone,1,600,02/10/19 11:33,"678 Maple St, Austin, TX 73301" +167930,AAA Batteries (4-pack),3,2.99,02/22/19 15:08,"73 9th St, Boston, MA 02215" +167931,AAA Batteries (4-pack),4,2.99,02/13/19 16:05,"985 Willow St, Boston, MA 02215" +167932,Macbook Pro Laptop,1,1700,02/08/19 16:53,"452 Hill St, San Francisco, CA 94016" +167933,Google Phone,1,600,02/10/19 08:14,"327 Pine St, Los Angeles, CA 90001" +167934,Lightning Charging Cable,1,14.95,02/01/19 15:31,"39 North St, New York City, NY 10001" +167935,iPhone,1,700,02/23/19 10:00,"457 Sunset St, Boston, MA 02215" +167936,AAA Batteries (4-pack),5,2.99,02/23/19 08:49,"498 Ridge St, New York City, NY 10001" +167937,USB-C Charging Cable,1,11.95,02/08/19 20:15,"44 Cedar St, Austin, TX 73301" +167938,AA Batteries (4-pack),1,3.84,02/11/19 17:29,"996 Wilson St, New York City, NY 10001" +167939,AA Batteries (4-pack),1,3.84,02/07/19 21:41,"789 Walnut St, Los Angeles, CA 90001" +167940,Wired Headphones,1,11.99,02/12/19 12:47,"447 Main St, San Francisco, CA 94016" +167941,Google Phone,1,600,02/22/19 17:32,"732 2nd St, Los Angeles, CA 90001" +167941,Wired Headphones,1,11.99,02/22/19 17:32,"732 2nd St, Los Angeles, CA 90001" +167942,ThinkPad Laptop,1,999.99,02/01/19 10:11,"455 Lakeview St, Los Angeles, CA 90001" +167943,AAA Batteries (4-pack),1,2.99,02/16/19 08:42,"494 Adams St, Portland, OR 97035" +167944,USB-C Charging Cable,1,11.95,02/22/19 15:54,"91 1st St, New York City, NY 10001" +167945,Google Phone,1,600,02/28/19 16:40,"717 North St, San Francisco, CA 94016" +167946,Wired Headphones,1,11.99,02/02/19 13:56,"732 Adams St, San Francisco, CA 94016" +167947,Apple Airpods Headphones,1,150,02/21/19 12:12,"403 Ridge St, Dallas, TX 75001" +167948,27in FHD Monitor,1,149.99,02/19/19 03:25,"502 Jackson St, Los Angeles, CA 90001" +167949,AAA Batteries (4-pack),2,2.99,02/10/19 10:54,"11 North St, San Francisco, CA 94016" +167950,Wired Headphones,1,11.99,02/27/19 14:32,"939 Main St, Portland, OR 97035" +167951,Apple Airpods Headphones,1,150,02/03/19 16:12,"417 Cherry St, San Francisco, CA 94016" +167952,27in FHD Monitor,1,149.99,02/01/19 05:45,"539 14th St, Portland, OR 97035" +167953,Vareebadd Phone,1,400,02/13/19 15:49,"893 Jackson St, San Francisco, CA 94016" +167953,USB-C Charging Cable,1,11.95,02/13/19 15:49,"893 Jackson St, San Francisco, CA 94016" +167954,Wired Headphones,1,11.99,02/14/19 00:46,"859 12th St, Portland, OR 97035" +167955,Lightning Charging Cable,1,14.95,02/08/19 08:22,"340 Lakeview St, Dallas, TX 75001" +167956,34in Ultrawide Monitor,1,379.99,02/20/19 12:35,"434 South St, Los Angeles, CA 90001" +167957,AAA Batteries (4-pack),1,2.99,02/20/19 00:23,"170 Lincoln St, Atlanta, GA 30301" +167958,USB-C Charging Cable,1,11.95,02/10/19 20:55,"296 10th St, Seattle, WA 98101" +167959,AA Batteries (4-pack),1,3.84,02/03/19 23:49,"851 Madison St, Atlanta, GA 30301" +167960,LG Dryer,1,600.0,02/26/19 22:26,"785 Cedar St, Dallas, TX 75001" +167961,USB-C Charging Cable,1,11.95,02/04/19 14:40,"891 14th St, New York City, NY 10001" +167962,Google Phone,1,600,02/16/19 00:03,"613 Johnson St, Los Angeles, CA 90001" +167963,Bose SoundSport Headphones,1,99.99,02/27/19 18:51,"504 West St, San Francisco, CA 94016" +167964,Macbook Pro Laptop,1,1700,02/17/19 10:39,"279 Cedar St, Boston, MA 02215" +167965,AAA Batteries (4-pack),1,2.99,02/08/19 07:58,"105 Church St, Boston, MA 02215" +167966,AAA Batteries (4-pack),1,2.99,02/09/19 16:53,"53 4th St, Los Angeles, CA 90001" +167967,Google Phone,1,600,02/04/19 11:52,"461 8th St, Los Angeles, CA 90001" +167967,USB-C Charging Cable,1,11.95,02/04/19 11:52,"461 8th St, Los Angeles, CA 90001" +167968,AA Batteries (4-pack),1,3.84,02/19/19 15:45,"718 West St, New York City, NY 10001" +167969,Apple Airpods Headphones,1,150,02/20/19 14:58,"39 Park St, New York City, NY 10001" +167970,AAA Batteries (4-pack),1,2.99,02/11/19 13:52,"374 4th St, San Francisco, CA 94016" +167971,AA Batteries (4-pack),1,3.84,02/22/19 13:33,"706 14th St, Seattle, WA 98101" +167972,Lightning Charging Cable,1,14.95,02/02/19 10:32,"851 Forest St, Boston, MA 02215" +167973,USB-C Charging Cable,2,11.95,02/23/19 11:23,"44 1st St, Boston, MA 02215" +167974,AA Batteries (4-pack),1,3.84,02/03/19 22:15,"182 9th St, Atlanta, GA 30301" +167975,Wired Headphones,1,11.99,02/12/19 20:34,"716 Highland St, San Francisco, CA 94016" +,,,,, +167976,Apple Airpods Headphones,1,150,02/09/19 19:31,"939 Church St, Austin, TX 73301" +167977,Apple Airpods Headphones,1,150,02/26/19 12:05,"645 Maple St, New York City, NY 10001" +167978,Apple Airpods Headphones,1,150,02/24/19 01:23,"25 1st St, Boston, MA 02215" +167979,Apple Airpods Headphones,1,150,02/14/19 13:29,"493 Wilson St, San Francisco, CA 94016" +167980,iPhone,1,700,02/13/19 15:01,"89 Jackson St, Boston, MA 02215" +167981,AAA Batteries (4-pack),1,2.99,02/23/19 17:07,"240 8th St, New York City, NY 10001" +167982,AA Batteries (4-pack),1,3.84,02/25/19 22:00,"114 Jefferson St, Boston, MA 02215" +167983,AA Batteries (4-pack),1,3.84,02/25/19 13:10,"414 Walnut St, Los Angeles, CA 90001" +167984,Macbook Pro Laptop,1,1700,02/08/19 14:57,"493 2nd St, Dallas, TX 75001" +167985,Lightning Charging Cable,1,14.95,02/17/19 17:24,"312 4th St, Los Angeles, CA 90001" +167986,Apple Airpods Headphones,1,150,02/08/19 19:10,"703 Madison St, San Francisco, CA 94016" +167987,Wired Headphones,1,11.99,02/28/19 17:28,"279 Madison St, Dallas, TX 75001" +167988,Lightning Charging Cable,1,14.95,02/22/19 14:06,"124 Jefferson St, Boston, MA 02215" +167989,Lightning Charging Cable,1,14.95,02/10/19 23:17,"383 Chestnut St, Seattle, WA 98101" +167990,Lightning Charging Cable,1,14.95,02/13/19 02:10,"332 Chestnut St, San Francisco, CA 94016" +167991,USB-C Charging Cable,1,11.95,02/20/19 07:56,"217 Hill St, San Francisco, CA 94016" +167992,AA Batteries (4-pack),1,3.84,02/05/19 12:29,"958 Lakeview St, Atlanta, GA 30301" +167993,AAA Batteries (4-pack),1,2.99,02/01/19 21:38,"773 Church St, San Francisco, CA 94016" +167994,Flatscreen TV,1,300,02/05/19 12:08,"51 Sunset St, Los Angeles, CA 90001" +167995,Apple Airpods Headphones,1,150,02/19/19 21:04,"786 Cedar St, Portland, ME 04101" +167996,Lightning Charging Cable,1,14.95,02/11/19 16:54,"890 Johnson St, San Francisco, CA 94016" +167997,27in 4K Gaming Monitor,1,389.99,02/06/19 12:42,"946 Park St, Seattle, WA 98101" +167998,AAA Batteries (4-pack),2,2.99,02/18/19 21:54,"955 13th St, Atlanta, GA 30301" +167999,Lightning Charging Cable,1,14.95,02/12/19 20:45,"421 Elm St, Dallas, TX 75001" +168000,Bose SoundSport Headphones,1,99.99,02/13/19 08:11,"892 6th St, San Francisco, CA 94016" +168001,27in 4K Gaming Monitor,1,389.99,02/15/19 12:08,"218 Lakeview St, San Francisco, CA 94016" +168002,Apple Airpods Headphones,1,150,02/06/19 00:51,"44 Cherry St, San Francisco, CA 94016" +168003,27in FHD Monitor,1,149.99,02/03/19 12:27,"26 Johnson St, Los Angeles, CA 90001" +168004,USB-C Charging Cable,1,11.95,02/02/19 20:55,"127 Chestnut St, Dallas, TX 75001" +168005,Wired Headphones,1,11.99,02/25/19 18:29,"568 Adams St, San Francisco, CA 94016" +168006,Vareebadd Phone,1,400,02/24/19 16:55,"486 Lakeview St, Boston, MA 02215" +168007,Apple Airpods Headphones,1,150,02/07/19 14:02,"59 Hill St, Austin, TX 73301" +168008,20in Monitor,1,109.99,02/08/19 00:24,"866 Spruce St, Seattle, WA 98101" +168009,iPhone,1,700,02/02/19 08:37,"190 Main St, San Francisco, CA 94016" +168009,Apple Airpods Headphones,1,150,02/02/19 08:37,"190 Main St, San Francisco, CA 94016" +168010,Apple Airpods Headphones,1,150,02/02/19 18:13,"957 North St, Seattle, WA 98101" +168011,AAA Batteries (4-pack),1,2.99,02/15/19 13:50,"994 7th St, San Francisco, CA 94016" +168012,Apple Airpods Headphones,1,150,02/01/19 23:32,"42 14th St, Boston, MA 02215" +168013,AAA Batteries (4-pack),1,2.99,02/24/19 13:57,"725 Walnut St, New York City, NY 10001" +168014,AA Batteries (4-pack),1,3.84,02/17/19 19:12,"863 Main St, Los Angeles, CA 90001" +168015,Bose SoundSport Headphones,1,99.99,02/21/19 12:36,"897 Hickory St, Dallas, TX 75001" +168016,AAA Batteries (4-pack),1,2.99,02/25/19 16:52,"266 10th St, San Francisco, CA 94016" +168017,Flatscreen TV,1,300,02/27/19 17:37,"54 7th St, Los Angeles, CA 90001" +168018,Flatscreen TV,1,300,02/01/19 16:27,"373 Lakeview St, Boston, MA 02215" +168019,Apple Airpods Headphones,1,150,02/23/19 21:35,"454 Church St, Boston, MA 02215" +168020,AA Batteries (4-pack),1,3.84,02/04/19 17:03,"507 Dogwood St, Austin, TX 73301" +168021,Apple Airpods Headphones,1,150,02/11/19 11:00,"62 Ridge St, Los Angeles, CA 90001" +168022,Flatscreen TV,1,300,02/06/19 09:50,"804 Cherry St, New York City, NY 10001" +168023,USB-C Charging Cable,1,11.95,02/14/19 17:01,"176 Washington St, New York City, NY 10001" +168024,AAA Batteries (4-pack),3,2.99,02/08/19 14:06,"150 West St, Seattle, WA 98101" +168025,Bose SoundSport Headphones,1,99.99,02/01/19 18:24,"101 12th St, Portland, OR 97035" +168026,USB-C Charging Cable,1,11.95,02/24/19 15:04,"644 9th St, Portland, OR 97035" +168027,USB-C Charging Cable,1,11.95,02/03/19 23:33,"499 Jackson St, Dallas, TX 75001" +168028,iPhone,1,700,02/17/19 23:49,"735 11th St, San Francisco, CA 94016" +168029,AAA Batteries (4-pack),1,2.99,02/15/19 20:20,"786 Adams St, San Francisco, CA 94016" +168030,Lightning Charging Cable,1,14.95,02/27/19 16:21,"322 Walnut St, Seattle, WA 98101" +168031,AAA Batteries (4-pack),1,2.99,02/19/19 14:30,"956 Center St, San Francisco, CA 94016" +168032,Lightning Charging Cable,1,14.95,02/10/19 12:21,"96 Meadow St, Dallas, TX 75001" +168033,27in 4K Gaming Monitor,1,389.99,02/11/19 13:55,"249 Lincoln St, San Francisco, CA 94016" +168034,AAA Batteries (4-pack),1,2.99,02/23/19 17:47,"698 4th St, Boston, MA 02215" +168035,AA Batteries (4-pack),1,3.84,02/21/19 16:18,"200 13th St, Seattle, WA 98101" +168036,Apple Airpods Headphones,1,150,02/12/19 11:26,"489 7th St, Dallas, TX 75001" +168037,AAA Batteries (4-pack),1,2.99,02/13/19 12:03,"441 Main St, New York City, NY 10001" +168038,iPhone,1,700,02/12/19 11:56,"343 Spruce St, New York City, NY 10001" +168039,Wired Headphones,1,11.99,02/24/19 10:12,"142 Maple St, San Francisco, CA 94016" +168039,AAA Batteries (4-pack),1,2.99,02/24/19 10:12,"142 Maple St, San Francisco, CA 94016" +168040,Apple Airpods Headphones,1,150,02/10/19 18:21,"115 Church St, Los Angeles, CA 90001" +168041,Lightning Charging Cable,1,14.95,02/13/19 22:24,"979 Lake St, New York City, NY 10001" +168042,AA Batteries (4-pack),3,3.84,02/03/19 19:33,"484 8th St, San Francisco, CA 94016" +168043,AAA Batteries (4-pack),4,2.99,02/02/19 05:21,"963 Meadow St, New York City, NY 10001" +168044,iPhone,1,700,02/17/19 08:20,"915 Highland St, San Francisco, CA 94016" +168045,AA Batteries (4-pack),1,3.84,02/04/19 07:40,"621 7th St, San Francisco, CA 94016" +168046,Bose SoundSport Headphones,1,99.99,02/11/19 12:01,"423 Spruce St, New York City, NY 10001" +168047,USB-C Charging Cable,1,11.95,02/01/19 16:06,"176 North St, Austin, TX 73301" +168048,USB-C Charging Cable,1,11.95,02/19/19 23:35,"19 Highland St, San Francisco, CA 94016" +168049,AAA Batteries (4-pack),1,2.99,02/01/19 20:04,"74 12th St, Atlanta, GA 30301" +168050,Wired Headphones,1,11.99,02/17/19 22:23,"176 13th St, San Francisco, CA 94016" +,,,,, +168051,AA Batteries (4-pack),1,3.84,02/25/19 10:57,"78 North St, Boston, MA 02215" +168052,Bose SoundSport Headphones,1,99.99,02/08/19 20:38,"111 8th St, Boston, MA 02215" +168053,20in Monitor,1,109.99,02/19/19 14:43,"182 Highland St, New York City, NY 10001" +168054,27in 4K Gaming Monitor,1,389.99,02/19/19 12:23,"672 West St, Portland, OR 97035" +168055,ThinkPad Laptop,1,999.99,02/16/19 15:35,"536 13th St, Los Angeles, CA 90001" +168056,AAA Batteries (4-pack),1,2.99,02/16/19 12:07,"177 2nd St, Austin, TX 73301" +168057,Lightning Charging Cable,1,14.95,02/22/19 16:49,"543 Forest St, San Francisco, CA 94016" +168058,Bose SoundSport Headphones,1,99.99,02/02/19 22:33,"624 West St, Los Angeles, CA 90001" +168059,AAA Batteries (4-pack),1,2.99,02/14/19 10:19,"118 Dogwood St, New York City, NY 10001" +168060,Wired Headphones,1,11.99,02/09/19 20:51,"153 Park St, Portland, OR 97035" +168061,Lightning Charging Cable,1,14.95,02/04/19 23:54,"512 Hickory St, Boston, MA 02215" +168062,USB-C Charging Cable,1,11.95,02/15/19 12:29,"169 Forest St, Dallas, TX 75001" +168063,AA Batteries (4-pack),1,3.84,02/16/19 14:44,"472 Highland St, San Francisco, CA 94016" +168064,Lightning Charging Cable,1,14.95,02/23/19 12:14,"560 Jackson St, Austin, TX 73301" +168065,Macbook Pro Laptop,1,1700,02/18/19 17:12,"481 Johnson St, New York City, NY 10001" +168066,USB-C Charging Cable,1,11.95,02/04/19 15:39,"976 Cherry St, Los Angeles, CA 90001" +168067,AA Batteries (4-pack),1,3.84,02/23/19 15:44,"963 Dogwood St, San Francisco, CA 94016" +168068,USB-C Charging Cable,1,11.95,02/22/19 14:27,"793 Forest St, San Francisco, CA 94016" +168069,iPhone,1,700,02/13/19 00:16,"709 13th St, Los Angeles, CA 90001" +168070,34in Ultrawide Monitor,1,379.99,02/26/19 13:28,"513 Hill St, San Francisco, CA 94016" +168071,27in FHD Monitor,1,149.99,02/12/19 11:13,"190 Cedar St, San Francisco, CA 94016" +168072,34in Ultrawide Monitor,1,379.99,02/03/19 14:39,"432 6th St, Boston, MA 02215" +168073,Apple Airpods Headphones,1,150,02/27/19 19:37,"656 10th St, Boston, MA 02215" +168074,Apple Airpods Headphones,1,150,02/13/19 13:55,"44 Dogwood St, Seattle, WA 98101" +168075,27in FHD Monitor,1,149.99,02/28/19 15:06,"86 2nd St, New York City, NY 10001" +168076,Wired Headphones,1,11.99,02/02/19 21:31,"637 Highland St, New York City, NY 10001" +168077,AAA Batteries (4-pack),1,2.99,02/21/19 10:29,"564 Wilson St, Dallas, TX 75001" +168078,AAA Batteries (4-pack),1,2.99,02/20/19 14:22,"891 Cedar St, New York City, NY 10001" +168079,USB-C Charging Cable,1,11.95,02/26/19 07:49,"176 West St, Boston, MA 02215" +168080,AA Batteries (4-pack),2,3.84,02/25/19 02:28,"20 South St, Los Angeles, CA 90001" +168081,20in Monitor,1,109.99,02/06/19 18:13,"963 5th St, Portland, OR 97035" +168082,Apple Airpods Headphones,1,150,02/22/19 13:00,"260 6th St, Los Angeles, CA 90001" +168083,Bose SoundSport Headphones,1,99.99,02/22/19 19:15,"18 1st St, Atlanta, GA 30301" +168084,ThinkPad Laptop,1,999.99,02/01/19 17:19,"712 South St, San Francisco, CA 94016" +168085,USB-C Charging Cable,1,11.95,02/12/19 09:48,"319 Elm St, Austin, TX 73301" +168086,Apple Airpods Headphones,1,150,02/05/19 00:02,"45 Jackson St, Austin, TX 73301" +168087,AA Batteries (4-pack),3,3.84,02/17/19 17:14,"478 10th St, Los Angeles, CA 90001" +168088,Wired Headphones,1,11.99,02/26/19 19:37,"250 Lake St, Dallas, TX 75001" +168089,Lightning Charging Cable,1,14.95,02/18/19 17:21,"629 Center St, Austin, TX 73301" +168090,Wired Headphones,1,11.99,02/05/19 23:24,"580 2nd St, Boston, MA 02215" +168091,Bose SoundSport Headphones,1,99.99,02/23/19 11:49,"14 Hill St, Los Angeles, CA 90001" +168092,AA Batteries (4-pack),1,3.84,02/03/19 21:43,"295 Adams St, Los Angeles, CA 90001" +168093,Bose SoundSport Headphones,1,99.99,02/20/19 22:14,"1 Cherry St, Atlanta, GA 30301" +168094,Lightning Charging Cable,1,14.95,02/15/19 11:54,"180 Adams St, San Francisco, CA 94016" +168095,Flatscreen TV,1,300,02/20/19 18:04,"963 Highland St, Boston, MA 02215" +168096,Bose SoundSport Headphones,1,99.99,02/25/19 13:28,"681 Ridge St, Los Angeles, CA 90001" +168097,Bose SoundSport Headphones,1,99.99,02/06/19 13:33,"635 Dogwood St, Austin, TX 73301" +168098,Lightning Charging Cable,1,14.95,02/16/19 12:27,"298 14th St, San Francisco, CA 94016" +168099,USB-C Charging Cable,1,11.95,02/10/19 23:56,"993 Elm St, Atlanta, GA 30301" +168100,Lightning Charging Cable,1,14.95,02/03/19 10:05,"627 5th St, Atlanta, GA 30301" +168101,34in Ultrawide Monitor,1,379.99,02/05/19 20:32,"467 Spruce St, San Francisco, CA 94016" +168102,AAA Batteries (4-pack),2,2.99,02/20/19 13:56,"712 Main St, San Francisco, CA 94016" +168103,27in FHD Monitor,1,149.99,02/23/19 08:22,"439 Highland St, Seattle, WA 98101" +168104,AAA Batteries (4-pack),1,2.99,02/14/19 10:03,"347 Lakeview St, San Francisco, CA 94016" +168105,Apple Airpods Headphones,1,150,02/20/19 17:28,"824 Johnson St, Austin, TX 73301" +168105,AAA Batteries (4-pack),1,2.99,02/20/19 17:28,"824 Johnson St, Austin, TX 73301" +168106,Wired Headphones,1,11.99,02/23/19 14:48,"358 Cherry St, San Francisco, CA 94016" +168107,USB-C Charging Cable,1,11.95,02/12/19 13:05,"872 Ridge St, Dallas, TX 75001" +168108,iPhone,1,700,02/28/19 12:48,"30 Adams St, Boston, MA 02215" +168109,Macbook Pro Laptop,1,1700,02/23/19 16:02,"153 13th St, San Francisco, CA 94016" +168110,AAA Batteries (4-pack),4,2.99,02/08/19 21:31,"960 West St, New York City, NY 10001" +168111,Lightning Charging Cable,1,14.95,02/22/19 01:04,"924 9th St, San Francisco, CA 94016" +168112,Lightning Charging Cable,1,14.95,02/28/19 15:33,"557 North St, San Francisco, CA 94016" +168113,iPhone,1,700,02/28/19 21:18,"166 2nd St, Seattle, WA 98101" +168113,Lightning Charging Cable,1,14.95,02/28/19 21:18,"166 2nd St, Seattle, WA 98101" +168114,20in Monitor,1,109.99,02/02/19 11:59,"277 11th St, Los Angeles, CA 90001" +168115,AAA Batteries (4-pack),1,2.99,02/18/19 21:59,"972 Main St, San Francisco, CA 94016" +168116,Google Phone,1,600,02/26/19 22:13,"369 Lake St, San Francisco, CA 94016" +168117,AAA Batteries (4-pack),2,2.99,02/18/19 18:13,"162 South St, Seattle, WA 98101" +168118,USB-C Charging Cable,1,11.95,02/01/19 19:25,"210 2nd St, Seattle, WA 98101" +168119,AAA Batteries (4-pack),1,2.99,02/21/19 14:53,"623 Center St, San Francisco, CA 94016" +168120,AAA Batteries (4-pack),1,2.99,02/15/19 23:41,"652 Spruce St, Boston, MA 02215" +168121,AA Batteries (4-pack),1,3.84,02/15/19 23:33,"278 Highland St, Dallas, TX 75001" +168122,AAA Batteries (4-pack),2,2.99,02/19/19 00:07,"437 Maple St, Seattle, WA 98101" +168123,Wired Headphones,1,11.99,02/10/19 18:26,"158 2nd St, San Francisco, CA 94016" +168124,27in 4K Gaming Monitor,1,389.99,02/09/19 14:29,"976 Cherry St, San Francisco, CA 94016" +168125,27in 4K Gaming Monitor,1,389.99,02/12/19 12:47,"190 Park St, Boston, MA 02215" +168126,Lightning Charging Cable,1,14.95,02/09/19 08:09,"517 Elm St, Dallas, TX 75001" +168127,Apple Airpods Headphones,1,150,02/22/19 13:53,"597 Main St, Atlanta, GA 30301" +168128,AAA Batteries (4-pack),2,2.99,02/03/19 19:51,"124 Dogwood St, Atlanta, GA 30301" +168129,AAA Batteries (4-pack),1,2.99,02/06/19 13:03,"132 Wilson St, Los Angeles, CA 90001" +168130,ThinkPad Laptop,1,999.99,02/21/19 18:21,"992 10th St, Dallas, TX 75001" +168131,iPhone,1,700,02/19/19 09:00,"211 8th St, Boston, MA 02215" +168132,Flatscreen TV,1,300,02/10/19 14:05,"229 Main St, New York City, NY 10001" +168133,USB-C Charging Cable,1,11.95,02/04/19 10:52,"774 Ridge St, Seattle, WA 98101" +168134,Lightning Charging Cable,1,14.95,02/18/19 09:59,"413 Jefferson St, Portland, ME 04101" +168135,AAA Batteries (4-pack),3,2.99,02/09/19 18:47,"656 Spruce St, Los Angeles, CA 90001" +168136,Wired Headphones,1,11.99,02/22/19 12:17,"906 Forest St, Boston, MA 02215" +168137,Lightning Charging Cable,1,14.95,02/05/19 17:50,"716 Pine St, San Francisco, CA 94016" +168138,USB-C Charging Cable,1,11.95,02/17/19 08:07,"933 Johnson St, Atlanta, GA 30301" +168139,Bose SoundSport Headphones,1,99.99,02/07/19 04:03,"275 Adams St, Boston, MA 02215" +168140,AA Batteries (4-pack),1,3.84,02/01/19 14:56,"301 Spruce St, Boston, MA 02215" +168141,Apple Airpods Headphones,1,150,02/12/19 15:39,"48 4th St, Austin, TX 73301" +168142,AA Batteries (4-pack),1,3.84,02/02/19 07:19,"437 Wilson St, San Francisco, CA 94016" +168143,USB-C Charging Cable,1,11.95,02/15/19 15:14,"871 Highland St, Austin, TX 73301" +168144,Lightning Charging Cable,1,14.95,02/19/19 16:16,"467 7th St, Los Angeles, CA 90001" +168145,Bose SoundSport Headphones,1,99.99,02/15/19 21:47,"522 Ridge St, New York City, NY 10001" +168146,Lightning Charging Cable,1,14.95,02/11/19 02:01,"630 Chestnut St, Dallas, TX 75001" +168147,AAA Batteries (4-pack),1,2.99,02/23/19 20:16,"156 West St, Los Angeles, CA 90001" +168148,Lightning Charging Cable,1,14.95,02/11/19 22:52,"716 Lake St, Los Angeles, CA 90001" +168149,AA Batteries (4-pack),1,3.84,02/14/19 16:37,"284 1st St, Boston, MA 02215" +168150,USB-C Charging Cable,1,11.95,02/28/19 12:55,"177 Jefferson St, Dallas, TX 75001" +168151,Bose SoundSport Headphones,1,99.99,02/24/19 10:38,"380 Walnut St, New York City, NY 10001" +168152,USB-C Charging Cable,1,11.95,02/11/19 20:33,"143 Spruce St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +168153,AA Batteries (4-pack),2,3.84,02/09/19 14:28,"900 Madison St, San Francisco, CA 94016" +168154,AAA Batteries (4-pack),3,2.99,02/12/19 12:22,"11 Chestnut St, Seattle, WA 98101" +168155,USB-C Charging Cable,1,11.95,02/20/19 17:59,"921 11th St, Portland, OR 97035" +168156,Google Phone,1,600,02/26/19 17:23,"348 Jefferson St, Atlanta, GA 30301" +168157,Macbook Pro Laptop,1,1700,02/14/19 17:54,"688 Main St, San Francisco, CA 94016" +168158,Wired Headphones,1,11.99,02/25/19 17:31,"918 9th St, San Francisco, CA 94016" +168159,Wired Headphones,1,11.99,02/27/19 20:07,"244 Lake St, Austin, TX 73301" +168160,27in FHD Monitor,1,149.99,02/10/19 12:48,"163 Elm St, San Francisco, CA 94016" +168161,Wired Headphones,1,11.99,02/11/19 09:34,"983 Meadow St, San Francisco, CA 94016" +168162,Lightning Charging Cable,1,14.95,02/04/19 20:51,"214 Center St, New York City, NY 10001" +168163,Macbook Pro Laptop,1,1700,02/08/19 13:53,"146 2nd St, New York City, NY 10001" +168164,USB-C Charging Cable,1,11.95,02/16/19 10:07,"390 Willow St, Portland, OR 97035" +168165,Apple Airpods Headphones,1,150,02/08/19 23:57,"708 Cherry St, Dallas, TX 75001" +168166,Google Phone,1,600,02/10/19 17:20,"598 West St, Boston, MA 02215" +168167,34in Ultrawide Monitor,1,379.99,02/17/19 09:06,"657 Willow St, Dallas, TX 75001" +168168,20in Monitor,1,109.99,02/06/19 15:31,"274 Cedar St, Boston, MA 02215" +168169,27in FHD Monitor,1,149.99,02/07/19 09:17,"144 North St, Portland, OR 97035" +168170,AAA Batteries (4-pack),1,2.99,02/22/19 18:44,"523 10th St, Portland, OR 97035" +168171,iPhone,1,700,02/05/19 17:56,"109 Lincoln St, New York City, NY 10001" +168172,Bose SoundSport Headphones,1,99.99,02/28/19 19:20,"149 7th St, New York City, NY 10001" +168173,27in FHD Monitor,1,149.99,02/03/19 14:06,"38 Jackson St, Dallas, TX 75001" +168174,Bose SoundSport Headphones,1,99.99,02/16/19 23:37,"352 11th St, New York City, NY 10001" +168175,Bose SoundSport Headphones,1,99.99,02/08/19 00:11,"665 Wilson St, Dallas, TX 75001" +168176,Wired Headphones,1,11.99,02/10/19 17:47,"22 Highland St, Boston, MA 02215" +168177,AAA Batteries (4-pack),1,2.99,02/14/19 17:04,"599 Dogwood St, Atlanta, GA 30301" +168178,ThinkPad Laptop,1,999.99,02/25/19 15:56,"840 10th St, Seattle, WA 98101" +168179,Lightning Charging Cable,1,14.95,02/28/19 15:52,"572 Lincoln St, Portland, ME 04101" +168180,Apple Airpods Headphones,1,150,02/06/19 14:11,"73 Lakeview St, Los Angeles, CA 90001" +168181,USB-C Charging Cable,1,11.95,02/16/19 08:12,"19 Church St, San Francisco, CA 94016" +168182,AA Batteries (4-pack),2,3.84,02/09/19 20:06,"91 Park St, San Francisco, CA 94016" +168183,iPhone,1,700,02/28/19 16:16,"380 South St, New York City, NY 10001" +168184,AAA Batteries (4-pack),1,2.99,02/10/19 16:08,"321 Main St, Seattle, WA 98101" +168185,AA Batteries (4-pack),2,3.84,02/23/19 18:27,"243 13th St, Los Angeles, CA 90001" +168186,USB-C Charging Cable,2,11.95,02/07/19 02:24,"408 Church St, San Francisco, CA 94016" +168187,Macbook Pro Laptop,1,1700,02/03/19 19:52,"30 Main St, Los Angeles, CA 90001" +168188,iPhone,1,700,02/10/19 21:53,"274 14th St, Dallas, TX 75001" +168188,Lightning Charging Cable,1,14.95,02/10/19 21:53,"274 14th St, Dallas, TX 75001" +168189,Bose SoundSport Headphones,1,99.99,02/14/19 10:59,"90 Cedar St, San Francisco, CA 94016" +168190,Google Phone,1,600,02/10/19 00:15,"180 Ridge St, San Francisco, CA 94016" +168190,USB-C Charging Cable,1,11.95,02/10/19 00:15,"180 Ridge St, San Francisco, CA 94016" +168191,34in Ultrawide Monitor,1,379.99,02/25/19 02:23,"54 Pine St, Portland, OR 97035" +168192,Lightning Charging Cable,1,14.95,02/15/19 19:38,"621 1st St, San Francisco, CA 94016" +168193,Lightning Charging Cable,1,14.95,02/15/19 12:10,"868 2nd St, Portland, OR 97035" +168194,Apple Airpods Headphones,1,150,02/13/19 20:08,"998 Pine St, Los Angeles, CA 90001" +168195,20in Monitor,1,109.99,02/22/19 03:27,"338 12th St, Boston, MA 02215" +168196,USB-C Charging Cable,1,11.95,02/06/19 14:59,"117 Center St, Los Angeles, CA 90001" +168197,Wired Headphones,1,11.99,02/18/19 11:44,"441 Lincoln St, Seattle, WA 98101" +168198,USB-C Charging Cable,1,11.95,02/25/19 07:59,"264 11th St, Atlanta, GA 30301" +168199,USB-C Charging Cable,1,11.95,02/12/19 13:49,"247 14th St, New York City, NY 10001" +168200,34in Ultrawide Monitor,1,379.99,02/27/19 06:47,"779 Main St, Boston, MA 02215" +168201,Apple Airpods Headphones,1,150,02/15/19 19:41,"542 Maple St, Seattle, WA 98101" +168202,ThinkPad Laptop,1,999.99,02/25/19 23:11,"9 Washington St, Dallas, TX 75001" +168203,USB-C Charging Cable,1,11.95,02/18/19 12:32,"426 11th St, San Francisco, CA 94016" +168204,AAA Batteries (4-pack),1,2.99,02/10/19 20:11,"713 6th St, San Francisco, CA 94016" +168205,AAA Batteries (4-pack),1,2.99,02/21/19 14:46,"801 Highland St, San Francisco, CA 94016" +168206,AA Batteries (4-pack),3,3.84,02/19/19 13:45,"763 Lake St, Dallas, TX 75001" +168207,AAA Batteries (4-pack),1,2.99,02/26/19 20:12,"213 14th St, Atlanta, GA 30301" +168208,ThinkPad Laptop,1,999.99,02/15/19 15:58,"945 11th St, Seattle, WA 98101" +168209,Apple Airpods Headphones,1,150,02/22/19 12:23,"672 Center St, Austin, TX 73301" +168210,ThinkPad Laptop,1,999.99,02/20/19 20:39,"723 Cherry St, Boston, MA 02215" +168211,AA Batteries (4-pack),1,3.84,02/06/19 14:06,"296 Center St, New York City, NY 10001" +168212,Lightning Charging Cable,1,14.95,02/09/19 16:28,"102 Walnut St, Portland, OR 97035" +168213,34in Ultrawide Monitor,1,379.99,02/18/19 21:29,"995 Main St, Los Angeles, CA 90001" +168214,Lightning Charging Cable,1,14.95,02/09/19 00:13,"39 Main St, Los Angeles, CA 90001" +168215,ThinkPad Laptop,1,999.99,02/17/19 12:24,"239 Ridge St, Boston, MA 02215" +168216,AA Batteries (4-pack),1,3.84,02/08/19 13:33,"29 Willow St, Dallas, TX 75001" +168217,ThinkPad Laptop,1,999.99,02/21/19 14:48,"844 6th St, New York City, NY 10001" +168218,Wired Headphones,2,11.99,02/20/19 23:53,"274 South St, Austin, TX 73301" +168219,AA Batteries (4-pack),1,3.84,02/20/19 15:32,"271 14th St, Portland, OR 97035" +168220,LG Dryer,1,600.0,02/18/19 08:58,"629 South St, Boston, MA 02215" +168221,AAA Batteries (4-pack),1,2.99,02/25/19 22:24,"538 5th St, Boston, MA 02215" +168222,AA Batteries (4-pack),3,3.84,02/05/19 20:48,"848 10th St, San Francisco, CA 94016" +168223,Wired Headphones,1,11.99,02/17/19 12:33,"613 1st St, Los Angeles, CA 90001" +168224,USB-C Charging Cable,1,11.95,02/14/19 17:21,"543 Cherry St, Boston, MA 02215" +168225,AA Batteries (4-pack),1,3.84,02/04/19 13:15,"554 Spruce St, Austin, TX 73301" +168226,Lightning Charging Cable,1,14.95,02/13/19 01:13,"435 Pine St, Dallas, TX 75001" +168227,Macbook Pro Laptop,1,1700,02/09/19 17:46,"473 6th St, Atlanta, GA 30301" +168228,Lightning Charging Cable,1,14.95,02/14/19 10:25,"390 West St, Seattle, WA 98101" +168229,USB-C Charging Cable,1,11.95,02/22/19 18:48,"492 Main St, Los Angeles, CA 90001" +168230,27in FHD Monitor,1,149.99,02/07/19 12:50,"551 Church St, Atlanta, GA 30301" +168231,Wired Headphones,2,11.99,02/23/19 19:24,"968 Willow St, San Francisco, CA 94016" +168232,USB-C Charging Cable,1,11.95,02/26/19 18:41,"141 6th St, Dallas, TX 75001" +168233,Apple Airpods Headphones,1,150,02/19/19 12:44,"342 6th St, Dallas, TX 75001" +168234,27in FHD Monitor,1,149.99,02/15/19 18:03,"979 6th St, Atlanta, GA 30301" +168234,Wired Headphones,1,11.99,02/15/19 18:03,"979 6th St, Atlanta, GA 30301" +168235,AAA Batteries (4-pack),1,2.99,02/15/19 11:42,"825 River St, Atlanta, GA 30301" +168236,27in FHD Monitor,1,149.99,02/18/19 02:46,"925 Hickory St, San Francisco, CA 94016" +168237,AAA Batteries (4-pack),2,2.99,02/07/19 11:46,"936 Hickory St, Atlanta, GA 30301" +168238,Lightning Charging Cable,1,14.95,02/15/19 21:06,"18 Lake St, Portland, OR 97035" +168239,AA Batteries (4-pack),1,3.84,02/02/19 08:40,"504 Lake St, Seattle, WA 98101" +168240,USB-C Charging Cable,1,11.95,02/02/19 21:36,"446 Lake St, Los Angeles, CA 90001" +168241,Flatscreen TV,1,300,02/17/19 15:46,"639 Madison St, San Francisco, CA 94016" +168242,Bose SoundSport Headphones,1,99.99,02/26/19 14:34,"742 14th St, Los Angeles, CA 90001" +168243,Wired Headphones,1,11.99,02/28/19 20:40,"950 Hill St, San Francisco, CA 94016" +168244,USB-C Charging Cable,1,11.95,02/09/19 18:02,"503 2nd St, New York City, NY 10001" +168245,Lightning Charging Cable,1,14.95,02/03/19 11:38,"794 Pine St, Portland, OR 97035" +168246,Bose SoundSport Headphones,1,99.99,02/21/19 10:47,"132 Pine St, Seattle, WA 98101" +168247,AAA Batteries (4-pack),1,2.99,02/04/19 19:10,"3 4th St, Los Angeles, CA 90001" +168248,ThinkPad Laptop,1,999.99,02/19/19 00:55,"470 Lakeview St, Atlanta, GA 30301" +168249,USB-C Charging Cable,1,11.95,02/04/19 20:19,"826 Lakeview St, San Francisco, CA 94016" +168250,27in FHD Monitor,1,149.99,02/07/19 12:43,"299 14th St, Austin, TX 73301" +168251,27in FHD Monitor,1,149.99,02/25/19 22:05,"343 Dogwood St, San Francisco, CA 94016" +168252,Wired Headphones,1,11.99,02/24/19 19:17,"971 Dogwood St, Boston, MA 02215" +168253,Macbook Pro Laptop,1,1700,02/19/19 04:28,"59 North St, Portland, OR 97035" +168254,Lightning Charging Cable,1,14.95,02/08/19 11:30,"905 Lake St, Atlanta, GA 30301" +168255,27in FHD Monitor,1,149.99,02/08/19 21:50,"190 Jackson St, Dallas, TX 75001" +168256,Wired Headphones,1,11.99,02/18/19 23:48,"399 8th St, San Francisco, CA 94016" +168257,20in Monitor,1,109.99,02/23/19 19:42,"835 Wilson St, Boston, MA 02215" +168258,AA Batteries (4-pack),3,3.84,02/03/19 09:23,"563 Lakeview St, San Francisco, CA 94016" +168259,Bose SoundSport Headphones,1,99.99,02/09/19 13:36,"923 Willow St, San Francisco, CA 94016" +168260,AAA Batteries (4-pack),1,2.99,02/01/19 11:43,"121 Pine St, San Francisco, CA 94016" +168261,AA Batteries (4-pack),2,3.84,02/21/19 17:23,"92 Pine St, Boston, MA 02215" +168262,ThinkPad Laptop,1,999.99,02/11/19 22:40,"117 Hickory St, San Francisco, CA 94016" +168263,Bose SoundSport Headphones,1,99.99,02/08/19 09:48,"730 Elm St, Austin, TX 73301" +168264,ThinkPad Laptop,1,999.99,02/26/19 19:22,"375 Center St, Austin, TX 73301" +168265,Lightning Charging Cable,1,14.95,02/14/19 16:01,"332 North St, Boston, MA 02215" +168266,AAA Batteries (4-pack),1,2.99,02/01/19 20:19,"308 Forest St, Dallas, TX 75001" +168267,AA Batteries (4-pack),1,3.84,02/11/19 11:49,"774 Main St, Dallas, TX 75001" +168268,27in 4K Gaming Monitor,1,389.99,02/15/19 19:23,"638 West St, New York City, NY 10001" +168269,USB-C Charging Cable,1,11.95,02/04/19 20:25,"216 13th St, Seattle, WA 98101" +168270,Apple Airpods Headphones,1,150,02/02/19 13:45,"612 Cedar St, New York City, NY 10001" +168271,Bose SoundSport Headphones,1,99.99,02/19/19 10:04,"917 Hill St, Los Angeles, CA 90001" +168272,Macbook Pro Laptop,1,1700,02/18/19 12:13,"969 Washington St, Boston, MA 02215" +168273,AAA Batteries (4-pack),3,2.99,02/24/19 06:47,"134 1st St, Portland, OR 97035" +168274,USB-C Charging Cable,2,11.95,02/28/19 20:55,"869 North St, Atlanta, GA 30301" +168275,Lightning Charging Cable,1,14.95,02/05/19 11:47,"117 Meadow St, Los Angeles, CA 90001" +168276,Wired Headphones,1,11.99,02/03/19 14:30,"857 Hill St, Atlanta, GA 30301" +168277,Lightning Charging Cable,1,14.95,02/07/19 20:22,"566 Park St, San Francisco, CA 94016" +168278,ThinkPad Laptop,1,999.99,02/21/19 17:25,"375 Center St, San Francisco, CA 94016" +168279,AA Batteries (4-pack),2,3.84,02/19/19 19:02,"79 Wilson St, San Francisco, CA 94016" +168280,Wired Headphones,1,11.99,02/17/19 12:07,"936 Cherry St, Portland, ME 04101" +168281,Google Phone,1,600,02/12/19 18:02,"18 Sunset St, San Francisco, CA 94016" +168282,Lightning Charging Cable,1,14.95,02/20/19 12:07,"447 Ridge St, San Francisco, CA 94016" +168283,Wired Headphones,1,11.99,02/24/19 21:55,"817 Highland St, Austin, TX 73301" +168284,AAA Batteries (4-pack),1,2.99,02/16/19 10:53,"358 Jefferson St, San Francisco, CA 94016" +168285,Google Phone,1,600,02/13/19 00:25,"187 Center St, Boston, MA 02215" +168286,Flatscreen TV,1,300,02/14/19 12:00,"673 River St, Los Angeles, CA 90001" +168287,AAA Batteries (4-pack),1,2.99,02/06/19 13:10,"637 Washington St, Austin, TX 73301" +168288,AAA Batteries (4-pack),1,2.99,02/26/19 13:08,"384 Center St, Austin, TX 73301" +168289,Wired Headphones,1,11.99,02/21/19 20:02,"1 River St, Dallas, TX 75001" +168290,AAA Batteries (4-pack),1,2.99,02/09/19 19:48,"47 Elm St, San Francisco, CA 94016" +168291,Flatscreen TV,1,300,02/13/19 15:13,"726 Church St, Austin, TX 73301" +168292,20in Monitor,1,109.99,02/09/19 11:11,"159 Forest St, Boston, MA 02215" +168293,Macbook Pro Laptop,1,1700,02/16/19 13:40,"651 Adams St, San Francisco, CA 94016" +,,,,, +168294,Apple Airpods Headphones,1,150,02/27/19 18:55,"768 Center St, Los Angeles, CA 90001" +168295,AAA Batteries (4-pack),2,2.99,02/12/19 19:26,"496 Cherry St, San Francisco, CA 94016" +168296,iPhone,1,700,02/03/19 07:25,"773 North St, Los Angeles, CA 90001" +168296,Wired Headphones,1,11.99,02/03/19 07:25,"773 North St, Los Angeles, CA 90001" +168297,iPhone,1,700,02/28/19 16:19,"41 Ridge St, San Francisco, CA 94016" +168297,Apple Airpods Headphones,1,150,02/28/19 16:19,"41 Ridge St, San Francisco, CA 94016" +168298,Macbook Pro Laptop,1,1700,02/10/19 09:05,"669 Dogwood St, Atlanta, GA 30301" +168299,Google Phone,1,600,02/25/19 10:44,"410 Church St, San Francisco, CA 94016" +168300,USB-C Charging Cable,1,11.95,02/20/19 11:26,"838 13th St, Seattle, WA 98101" +168301,Apple Airpods Headphones,1,150,02/03/19 17:54,"930 North St, San Francisco, CA 94016" +168302,Wired Headphones,1,11.99,02/02/19 13:13,"563 North St, New York City, NY 10001" +168303,ThinkPad Laptop,1,999.99,02/12/19 01:35,"908 Cedar St, Dallas, TX 75001" +168304,Wired Headphones,1,11.99,02/06/19 14:19,"649 Dogwood St, San Francisco, CA 94016" +168304,Google Phone,1,600,02/06/19 14:19,"649 Dogwood St, San Francisco, CA 94016" +168305,USB-C Charging Cable,1,11.95,02/03/19 09:16,"502 Washington St, Los Angeles, CA 90001" +168306,AAA Batteries (4-pack),3,2.99,02/22/19 08:08,"640 Elm St, New York City, NY 10001" +168307,Lightning Charging Cable,1,14.95,02/21/19 18:57,"352 13th St, New York City, NY 10001" +168308,AA Batteries (4-pack),1,3.84,02/25/19 22:38,"401 Cherry St, Los Angeles, CA 90001" +168309,Lightning Charging Cable,1,14.95,02/04/19 16:28,"192 Hickory St, Los Angeles, CA 90001" +168310,AAA Batteries (4-pack),2,2.99,02/04/19 14:43,"497 7th St, San Francisco, CA 94016" +168311,27in FHD Monitor,2,149.99,02/06/19 09:08,"490 14th St, San Francisco, CA 94016" +168312,ThinkPad Laptop,1,999.99,02/15/19 11:30,"694 Church St, San Francisco, CA 94016" +168313,iPhone,1,700,02/21/19 10:57,"245 11th St, San Francisco, CA 94016" +168314,Lightning Charging Cable,1,14.95,02/17/19 12:19,"16 6th St, San Francisco, CA 94016" +168315,AA Batteries (4-pack),2,3.84,02/26/19 20:28,"419 Adams St, Austin, TX 73301" +168316,Wired Headphones,1,11.99,02/07/19 18:28,"260 14th St, San Francisco, CA 94016" +168317,Apple Airpods Headphones,1,150,02/17/19 08:37,"612 Forest St, Dallas, TX 75001" +168318,Vareebadd Phone,1,400,02/14/19 15:39,"360 14th St, Atlanta, GA 30301" +168319,Wired Headphones,1,11.99,02/24/19 20:42,"449 Park St, Dallas, TX 75001" +168320,Lightning Charging Cable,1,14.95,02/12/19 12:25,"745 10th St, San Francisco, CA 94016" +168321,AA Batteries (4-pack),1,3.84,02/22/19 17:11,"120 10th St, Seattle, WA 98101" +168322,AA Batteries (4-pack),1,3.84,02/20/19 08:16,"900 Jefferson St, Austin, TX 73301" +168323,AAA Batteries (4-pack),2,2.99,02/10/19 14:03,"402 Meadow St, New York City, NY 10001" +168324,AAA Batteries (4-pack),1,2.99,02/07/19 15:14,"373 Forest St, Dallas, TX 75001" +168325,Lightning Charging Cable,1,14.95,02/24/19 08:11,"441 Pine St, Seattle, WA 98101" +168326,Lightning Charging Cable,1,14.95,02/11/19 11:27,"192 Hickory St, Los Angeles, CA 90001" +168327,USB-C Charging Cable,1,11.95,02/21/19 19:29,"702 1st St, Atlanta, GA 30301" +168328,Wired Headphones,1,11.99,02/13/19 07:24,"750 Walnut St, San Francisco, CA 94016" +168329,Bose SoundSport Headphones,1,99.99,02/11/19 20:06,"914 14th St, New York City, NY 10001" +168330,ThinkPad Laptop,1,999.99,02/07/19 20:46,"252 Lakeview St, Portland, OR 97035" +168331,Lightning Charging Cable,1,14.95,02/07/19 14:58,"368 Forest St, Los Angeles, CA 90001" +168332,Apple Airpods Headphones,1,150,02/09/19 19:12,"439 10th St, Portland, OR 97035" +168333,Flatscreen TV,1,300,02/11/19 20:39,"11 Lakeview St, Austin, TX 73301" +168334,AA Batteries (4-pack),1,3.84,02/06/19 12:47,"283 12th St, Seattle, WA 98101" +168335,ThinkPad Laptop,1,999.99,02/03/19 14:31,"695 Church St, Seattle, WA 98101" +168336,27in 4K Gaming Monitor,1,389.99,02/20/19 13:49,"304 North St, San Francisco, CA 94016" +168337,Flatscreen TV,1,300,02/08/19 12:33,"554 Wilson St, New York City, NY 10001" +168338,Vareebadd Phone,1,400,02/23/19 13:39,"738 Johnson St, Atlanta, GA 30301" +168338,USB-C Charging Cable,1,11.95,02/23/19 13:39,"738 Johnson St, Atlanta, GA 30301" +168339,AAA Batteries (4-pack),1,2.99,02/25/19 08:54,"153 8th St, Los Angeles, CA 90001" +168340,Lightning Charging Cable,1,14.95,02/28/19 19:49,"430 9th St, New York City, NY 10001" +168341,34in Ultrawide Monitor,1,379.99,02/16/19 09:52,"340 8th St, Atlanta, GA 30301" +168342,Wired Headphones,1,11.99,02/18/19 18:18,"614 Cedar St, Austin, TX 73301" +168343,Lightning Charging Cable,2,14.95,02/01/19 15:52,"884 9th St, Atlanta, GA 30301" +168344,20in Monitor,1,109.99,02/11/19 14:58,"24 Lake St, Atlanta, GA 30301" +168345,LG Washing Machine,1,600.0,02/21/19 18:56,"489 Park St, Los Angeles, CA 90001" +168346,Vareebadd Phone,1,400,02/04/19 13:08,"462 11th St, Boston, MA 02215" +168347,AAA Batteries (4-pack),3,2.99,02/13/19 18:24,"179 2nd St, San Francisco, CA 94016" +168348,Google Phone,1,600,02/28/19 18:14,"89 Park St, San Francisco, CA 94016" +168349,iPhone,1,700,02/22/19 02:17,"940 Washington St, Los Angeles, CA 90001" +168350,Wired Headphones,2,11.99,02/08/19 21:58,"158 Adams St, Atlanta, GA 30301" +168351,Apple Airpods Headphones,1,150,02/12/19 13:39,"38 Sunset St, New York City, NY 10001" +168352,Google Phone,1,600,02/15/19 04:32,"392 10th St, Los Angeles, CA 90001" +168352,Lightning Charging Cable,1,14.95,02/15/19 04:32,"392 10th St, Los Angeles, CA 90001" +168353,Lightning Charging Cable,1,14.95,02/15/19 19:33,"545 Johnson St, Los Angeles, CA 90001" +168354,AAA Batteries (4-pack),1,2.99,02/12/19 21:59,"608 Wilson St, Boston, MA 02215" +168355,AAA Batteries (4-pack),4,2.99,02/16/19 01:22,"483 Cedar St, New York City, NY 10001" +168356,iPhone,1,700,02/27/19 20:38,"150 Main St, New York City, NY 10001" +168357,AAA Batteries (4-pack),2,2.99,02/04/19 16:41,"236 Forest St, San Francisco, CA 94016" +168358,AA Batteries (4-pack),1,3.84,02/23/19 15:04,"562 6th St, Dallas, TX 75001" +168359,Bose SoundSport Headphones,1,99.99,02/06/19 14:34,"891 8th St, New York City, NY 10001" +168360,USB-C Charging Cable,1,11.95,03/01/19 00:18,"738 Forest St, Dallas, TX 75001" +168361,Wired Headphones,1,11.99,02/16/19 12:54,"692 South St, Boston, MA 02215" +168362,Bose SoundSport Headphones,1,99.99,02/19/19 12:29,"850 11th St, New York City, NY 10001" +168363,Lightning Charging Cable,1,14.95,02/18/19 15:00,"486 Cedar St, San Francisco, CA 94016" +168364,Lightning Charging Cable,1,14.95,02/10/19 11:24,"468 Lincoln St, Los Angeles, CA 90001" +168365,USB-C Charging Cable,1,11.95,02/16/19 07:09,"139 8th St, Atlanta, GA 30301" +168366,LG Washing Machine,1,600.0,02/06/19 18:44,"650 River St, Austin, TX 73301" +168367,27in 4K Gaming Monitor,1,389.99,02/23/19 17:22,"185 12th St, New York City, NY 10001" +168368,iPhone,1,700,02/25/19 17:06,"862 Elm St, Austin, TX 73301" +168369,Wired Headphones,2,11.99,02/26/19 18:38,"178 7th St, Dallas, TX 75001" +168370,AAA Batteries (4-pack),1,2.99,02/07/19 07:18,"878 Spruce St, Boston, MA 02215" +168371,27in FHD Monitor,1,149.99,02/05/19 12:44,"249 Hill St, San Francisco, CA 94016" +168372,27in 4K Gaming Monitor,1,389.99,02/24/19 14:32,"353 River St, Los Angeles, CA 90001" +168373,Vareebadd Phone,1,400,02/14/19 02:18,"464 Jefferson St, Seattle, WA 98101" +168374,27in FHD Monitor,1,149.99,02/22/19 13:15,"334 South St, Seattle, WA 98101" +168375,Apple Airpods Headphones,1,150,02/16/19 12:24,"574 Hill St, San Francisco, CA 94016" +168376,AAA Batteries (4-pack),1,2.99,02/26/19 22:21,"119 Adams St, San Francisco, CA 94016" +168377,27in 4K Gaming Monitor,1,389.99,02/04/19 19:15,"612 Wilson St, Atlanta, GA 30301" +168378,Lightning Charging Cable,1,14.95,02/18/19 21:29,"285 10th St, Boston, MA 02215" +168379,Bose SoundSport Headphones,1,99.99,02/07/19 12:38,"428 Lakeview St, San Francisco, CA 94016" +168380,AAA Batteries (4-pack),1,2.99,02/26/19 15:47,"409 Jackson St, Boston, MA 02215" +168381,Lightning Charging Cable,1,14.95,02/01/19 10:29,"158 Elm St, Boston, MA 02215" +168382,Lightning Charging Cable,1,14.95,02/21/19 10:03,"193 Hill St, San Francisco, CA 94016" +168383,Vareebadd Phone,1,400,02/12/19 16:28,"375 Highland St, Los Angeles, CA 90001" +168384,AAA Batteries (4-pack),2,2.99,02/09/19 15:24,"284 2nd St, Portland, ME 04101" +168385,Bose SoundSport Headphones,1,99.99,02/13/19 12:36,"589 Lakeview St, New York City, NY 10001" +168386,Macbook Pro Laptop,1,1700,02/20/19 08:19,"58 1st St, Los Angeles, CA 90001" +168387,Macbook Pro Laptop,1,1700,02/26/19 19:08,"783 Walnut St, San Francisco, CA 94016" +168388,ThinkPad Laptop,1,999.99,02/03/19 13:16,"214 9th St, Los Angeles, CA 90001" +168389,Apple Airpods Headphones,1,150,02/23/19 09:19,"318 6th St, Boston, MA 02215" +168390,Lightning Charging Cable,1,14.95,02/25/19 11:51,"411 Pine St, Dallas, TX 75001" +168391,USB-C Charging Cable,1,11.95,02/21/19 12:51,"538 Adams St, Atlanta, GA 30301" +168392,34in Ultrawide Monitor,1,379.99,02/23/19 19:19,"477 Highland St, Austin, TX 73301" +168392,iPhone,1,700,02/23/19 19:19,"477 Highland St, Austin, TX 73301" +168393,AA Batteries (4-pack),1,3.84,02/11/19 21:27,"150 North St, San Francisco, CA 94016" +168394,AA Batteries (4-pack),1,3.84,02/06/19 12:04,"24 Pine St, Portland, ME 04101" +168395,Lightning Charging Cable,1,14.95,02/23/19 17:32,"299 Washington St, San Francisco, CA 94016" +168396,Bose SoundSport Headphones,2,99.99,02/12/19 00:58,"542 Forest St, San Francisco, CA 94016" +168397,USB-C Charging Cable,1,11.95,02/16/19 18:45,"414 South St, San Francisco, CA 94016" +168398,20in Monitor,1,109.99,02/07/19 15:50,"525 4th St, Dallas, TX 75001" +168399,AA Batteries (4-pack),1,3.84,02/15/19 08:51,"231 Meadow St, Seattle, WA 98101" +168400,Apple Airpods Headphones,1,150,02/24/19 07:09,"922 2nd St, Dallas, TX 75001" +168401,Lightning Charging Cable,1,14.95,02/15/19 12:55,"185 Cherry St, Seattle, WA 98101" +168402,Macbook Pro Laptop,1,1700,02/08/19 00:09,"481 Johnson St, Seattle, WA 98101" +168403,Wired Headphones,1,11.99,02/08/19 20:19,"128 4th St, Dallas, TX 75001" +168404,USB-C Charging Cable,1,11.95,02/06/19 20:46,"808 Chestnut St, New York City, NY 10001" +168405,USB-C Charging Cable,1,11.95,02/25/19 17:45,"204 6th St, San Francisco, CA 94016" +168406,20in Monitor,1,109.99,02/21/19 21:12,"572 8th St, Dallas, TX 75001" +168407,Wired Headphones,1,11.99,02/18/19 11:16,"103 Ridge St, Dallas, TX 75001" +168408,Google Phone,1,600,02/28/19 16:00,"439 Sunset St, Boston, MA 02215" +168409,Apple Airpods Headphones,1,150,02/12/19 09:36,"706 Ridge St, Atlanta, GA 30301" +168410,20in Monitor,1,109.99,02/22/19 16:51,"478 Johnson St, Boston, MA 02215" +168411,AAA Batteries (4-pack),1,2.99,02/28/19 11:03,"877 Lincoln St, Austin, TX 73301" +168412,27in FHD Monitor,1,149.99,02/13/19 20:28,"339 Highland St, New York City, NY 10001" +168413,AA Batteries (4-pack),1,3.84,02/16/19 20:19,"836 Lincoln St, San Francisco, CA 94016" +168414,AAA Batteries (4-pack),2,2.99,02/14/19 17:53,"384 Jefferson St, Austin, TX 73301" +168415,27in 4K Gaming Monitor,1,389.99,02/03/19 21:58,"336 Hickory St, San Francisco, CA 94016" +168416,Apple Airpods Headphones,1,150,02/14/19 22:09,"915 Park St, New York City, NY 10001" +168417,Google Phone,1,600,02/05/19 00:45,"188 Hickory St, New York City, NY 10001" +168418,Wired Headphones,1,11.99,02/11/19 10:52,"944 7th St, Atlanta, GA 30301" +168419,Bose SoundSport Headphones,1,99.99,02/16/19 19:23,"660 Washington St, Atlanta, GA 30301" +168420,27in FHD Monitor,1,149.99,02/06/19 17:11,"641 Lakeview St, Dallas, TX 75001" +168421,AAA Batteries (4-pack),1,2.99,02/26/19 14:08,"392 Hill St, Atlanta, GA 30301" +168422,iPhone,1,700,02/12/19 13:12,"281 Forest St, Portland, OR 97035" +168423,AA Batteries (4-pack),2,3.84,02/25/19 19:33,"802 Lake St, San Francisco, CA 94016" +168424,Lightning Charging Cable,1,14.95,02/14/19 07:47,"263 River St, Dallas, TX 75001" +168425,AA Batteries (4-pack),1,3.84,02/23/19 17:40,"562 6th St, Austin, TX 73301" +168426,Lightning Charging Cable,1,14.95,02/07/19 20:28,"852 Hickory St, Seattle, WA 98101" +168426,LG Washing Machine,1,600.0,02/07/19 20:28,"852 Hickory St, Seattle, WA 98101" +168427,USB-C Charging Cable,1,11.95,02/19/19 11:56,"910 Ridge St, Boston, MA 02215" +,,,,, +168428,Lightning Charging Cable,1,14.95,02/10/19 17:28,"666 Ridge St, Seattle, WA 98101" +168429,Apple Airpods Headphones,1,150,02/09/19 15:01,"257 Willow St, Dallas, TX 75001" +168430,AAA Batteries (4-pack),1,2.99,02/27/19 12:02,"631 Dogwood St, Atlanta, GA 30301" +168431,AA Batteries (4-pack),1,3.84,02/19/19 17:51,"826 Meadow St, San Francisco, CA 94016" +168432,USB-C Charging Cable,1,11.95,02/25/19 11:37,"918 6th St, San Francisco, CA 94016" +168433,Lightning Charging Cable,1,14.95,02/13/19 21:07,"543 Chestnut St, Austin, TX 73301" +168434,USB-C Charging Cable,1,11.95,02/19/19 09:43,"216 1st St, Atlanta, GA 30301" +168435,20in Monitor,1,109.99,02/14/19 21:49,"63 8th St, Boston, MA 02215" +168436,AAA Batteries (4-pack),5,2.99,02/28/19 15:49,"83 River St, Portland, OR 97035" +168437,34in Ultrawide Monitor,1,379.99,02/24/19 19:59,"832 Hickory St, Dallas, TX 75001" +168438,Bose SoundSport Headphones,1,99.99,02/23/19 22:49,"813 Main St, San Francisco, CA 94016" +168439,iPhone,1,700,02/23/19 14:34,"282 Walnut St, Boston, MA 02215" +168440,ThinkPad Laptop,1,999.99,02/04/19 12:52,"931 Spruce St, Atlanta, GA 30301" +168441,Lightning Charging Cable,1,14.95,02/20/19 12:35,"237 Jefferson St, San Francisco, CA 94016" +168442,Bose SoundSport Headphones,1,99.99,02/15/19 22:50,"191 Wilson St, Austin, TX 73301" +168443,AAA Batteries (4-pack),1,2.99,02/23/19 15:35,"987 Washington St, New York City, NY 10001" +168444,AAA Batteries (4-pack),1,2.99,02/20/19 21:24,"332 Madison St, Atlanta, GA 30301" +168445,Macbook Pro Laptop,1,1700,02/10/19 11:23,"178 Johnson St, Los Angeles, CA 90001" +168446,USB-C Charging Cable,1,11.95,02/07/19 12:50,"694 Jackson St, Los Angeles, CA 90001" +168447,Apple Airpods Headphones,1,150,02/16/19 16:30,"29 Center St, Atlanta, GA 30301" +168448,Apple Airpods Headphones,1,150,02/02/19 19:55,"619 8th St, Atlanta, GA 30301" +168449,Lightning Charging Cable,1,14.95,02/06/19 12:18,"739 Maple St, Los Angeles, CA 90001" +168450,AA Batteries (4-pack),1,3.84,02/20/19 15:07,"711 Cherry St, Atlanta, GA 30301" +168451,Bose SoundSport Headphones,1,99.99,02/24/19 11:45,"15 Madison St, San Francisco, CA 94016" +168452,Wired Headphones,1,11.99,02/01/19 12:44,"516 Hill St, Atlanta, GA 30301" +168453,Lightning Charging Cable,1,14.95,02/13/19 20:05,"557 Cedar St, Los Angeles, CA 90001" +168454,Flatscreen TV,1,300,02/03/19 18:06,"586 13th St, San Francisco, CA 94016" +168455,Wired Headphones,1,11.99,02/21/19 13:24,"333 Jackson St, Los Angeles, CA 90001" +168456,27in FHD Monitor,1,149.99,02/04/19 16:57,"459 Ridge St, Los Angeles, CA 90001" +168457,27in 4K Gaming Monitor,1,389.99,02/28/19 20:08,"380 Spruce St, San Francisco, CA 94016" +168458,34in Ultrawide Monitor,1,379.99,02/25/19 12:24,"907 Dogwood St, Seattle, WA 98101" +168459,Macbook Pro Laptop,1,1700,02/15/19 12:12,"94 Cedar St, Boston, MA 02215" +168460,Lightning Charging Cable,1,14.95,02/07/19 21:32,"622 1st St, Dallas, TX 75001" +168461,ThinkPad Laptop,1,999.99,02/07/19 08:57,"797 Jefferson St, San Francisco, CA 94016" +168462,Wired Headphones,1,11.99,02/04/19 14:15,"170 Jefferson St, San Francisco, CA 94016" +168463,Wired Headphones,1,11.99,02/25/19 12:22,"741 Center St, New York City, NY 10001" +168464,USB-C Charging Cable,1,11.95,02/22/19 23:38,"580 Dogwood St, Seattle, WA 98101" +168465,Wired Headphones,1,11.99,02/11/19 12:05,"976 Jefferson St, Los Angeles, CA 90001" +168466,Lightning Charging Cable,2,14.95,02/24/19 16:36,"937 9th St, San Francisco, CA 94016" +168467,Wired Headphones,1,11.99,02/02/19 17:53,"351 Washington St, Los Angeles, CA 90001" +168468,Bose SoundSport Headphones,1,99.99,02/25/19 17:57,"425 4th St, Austin, TX 73301" +168469,27in 4K Gaming Monitor,1,389.99,02/14/19 21:26,"657 6th St, San Francisco, CA 94016" +168470,Google Phone,1,600,02/26/19 22:22,"651 West St, Seattle, WA 98101" +168470,USB-C Charging Cable,1,11.95,02/26/19 22:22,"651 West St, Seattle, WA 98101" +168471,Apple Airpods Headphones,1,150,02/02/19 12:49,"586 Main St, Seattle, WA 98101" +168472,34in Ultrawide Monitor,1,379.99,02/13/19 13:04,"200 1st St, New York City, NY 10001" +168473,iPhone,1,700,02/24/19 21:44,"794 2nd St, San Francisco, CA 94016" +168474,AAA Batteries (4-pack),1,2.99,02/10/19 10:49,"174 Walnut St, Austin, TX 73301" +168475,USB-C Charging Cable,1,11.95,02/04/19 22:49,"631 Center St, Atlanta, GA 30301" +168476,AA Batteries (4-pack),1,3.84,02/28/19 00:35,"599 Lake St, Los Angeles, CA 90001" +168477,Vareebadd Phone,1,400,02/13/19 13:16,"198 6th St, Boston, MA 02215" +168478,Lightning Charging Cable,1,14.95,02/12/19 08:44,"322 Church St, New York City, NY 10001" +168479,Apple Airpods Headphones,1,150,02/24/19 13:28,"19 4th St, Dallas, TX 75001" +168480,Google Phone,1,600,02/23/19 17:40,"785 10th St, Atlanta, GA 30301" +168481,Macbook Pro Laptop,1,1700,02/14/19 00:27,"647 Jackson St, San Francisco, CA 94016" +168482,AA Batteries (4-pack),1,3.84,02/03/19 08:50,"838 Meadow St, Boston, MA 02215" +168483,Lightning Charging Cable,1,14.95,02/19/19 18:05,"698 Hill St, San Francisco, CA 94016" +168484,27in FHD Monitor,1,149.99,02/14/19 22:48,"793 10th St, San Francisco, CA 94016" +168485,Wired Headphones,1,11.99,02/18/19 22:15,"914 Dogwood St, San Francisco, CA 94016" +168486,Apple Airpods Headphones,1,150,02/13/19 18:27,"536 Center St, Los Angeles, CA 90001" +168487,USB-C Charging Cable,1,11.95,02/07/19 16:09,"483 Elm St, Boston, MA 02215" +168488,Macbook Pro Laptop,1,1700,02/24/19 09:25,"314 Washington St, San Francisco, CA 94016" +168489,Lightning Charging Cable,1,14.95,02/01/19 15:15,"531 Sunset St, Boston, MA 02215" +168490,Bose SoundSport Headphones,1,99.99,02/05/19 16:51,"127 Lincoln St, Los Angeles, CA 90001" +168491,AA Batteries (4-pack),1,3.84,02/26/19 14:40,"146 Chestnut St, Atlanta, GA 30301" +168492,Macbook Pro Laptop,1,1700,02/17/19 17:22,"209 Center St, New York City, NY 10001" +168493,Macbook Pro Laptop,1,1700,02/01/19 10:58,"159 Johnson St, Los Angeles, CA 90001" +168494,AAA Batteries (4-pack),3,2.99,02/05/19 08:24,"734 Dogwood St, Los Angeles, CA 90001" +168495,Macbook Pro Laptop,1,1700,02/24/19 08:41,"852 9th St, Los Angeles, CA 90001" +168496,Wired Headphones,1,11.99,02/14/19 12:26,"661 River St, San Francisco, CA 94016" +168497,AAA Batteries (4-pack),1,2.99,02/12/19 20:49,"386 West St, Atlanta, GA 30301" +168498,ThinkPad Laptop,1,999.99,02/06/19 17:32,"78 9th St, San Francisco, CA 94016" +168499,AA Batteries (4-pack),1,3.84,02/20/19 11:21,"892 Johnson St, Los Angeles, CA 90001" +168500,20in Monitor,1,109.99,02/13/19 13:48,"411 10th St, San Francisco, CA 94016" +168501,20in Monitor,1,109.99,02/24/19 22:29,"554 Meadow St, San Francisco, CA 94016" +168502,iPhone,1,700,02/18/19 01:47,"438 Forest St, Los Angeles, CA 90001" +168503,USB-C Charging Cable,1,11.95,02/21/19 17:18,"630 Maple St, New York City, NY 10001" +168504,Apple Airpods Headphones,1,150,02/18/19 12:16,"131 9th St, Austin, TX 73301" +168505,AA Batteries (4-pack),1,3.84,02/07/19 10:59,"429 Lincoln St, Los Angeles, CA 90001" +168506,USB-C Charging Cable,1,11.95,02/12/19 09:25,"856 2nd St, San Francisco, CA 94016" +168507,Apple Airpods Headphones,1,150,02/18/19 08:27,"279 4th St, San Francisco, CA 94016" +168508,Apple Airpods Headphones,1,150,02/17/19 19:46,"441 Jackson St, Dallas, TX 75001" +168509,AA Batteries (4-pack),1,3.84,02/18/19 06:48,"659 Cherry St, Boston, MA 02215" +168510,Wired Headphones,1,11.99,02/23/19 11:02,"325 1st St, Los Angeles, CA 90001" +168510,AAA Batteries (4-pack),2,2.99,02/23/19 11:02,"325 1st St, Los Angeles, CA 90001" +168511,AAA Batteries (4-pack),2,2.99,02/17/19 19:34,"462 Cherry St, New York City, NY 10001" +168512,AAA Batteries (4-pack),2,2.99,02/19/19 09:46,"593 Meadow St, Los Angeles, CA 90001" +168513,AA Batteries (4-pack),1,3.84,02/12/19 18:10,"46 Willow St, Portland, OR 97035" +168514,iPhone,1,700,02/19/19 11:23,"257 Wilson St, San Francisco, CA 94016" +168515,Lightning Charging Cable,2,14.95,02/23/19 16:04,"558 Elm St, San Francisco, CA 94016" +168516,AAA Batteries (4-pack),6,2.99,02/24/19 23:13,"988 Spruce St, San Francisco, CA 94016" +168517,USB-C Charging Cable,2,11.95,02/04/19 15:09,"768 10th St, San Francisco, CA 94016" +168518,Vareebadd Phone,1,400,02/20/19 15:19,"127 Meadow St, Portland, OR 97035" +168518,USB-C Charging Cable,1,11.95,02/20/19 15:19,"127 Meadow St, Portland, OR 97035" +168519,AA Batteries (4-pack),3,3.84,02/09/19 13:33,"574 Willow St, Los Angeles, CA 90001" +168520,Wired Headphones,1,11.99,02/03/19 13:56,"756 7th St, New York City, NY 10001" +168521,Lightning Charging Cable,1,14.95,02/02/19 23:46,"992 Cedar St, San Francisco, CA 94016" +168522,Google Phone,1,600,02/05/19 17:56,"131 Lake St, Los Angeles, CA 90001" +168523,34in Ultrawide Monitor,1,379.99,02/11/19 13:21,"287 Hill St, Portland, OR 97035" +168524,Apple Airpods Headphones,1,150,02/20/19 18:03,"858 Lakeview St, Atlanta, GA 30301" +168525,USB-C Charging Cable,1,11.95,02/10/19 20:03,"249 Lakeview St, Portland, OR 97035" +168526,Wired Headphones,1,11.99,02/10/19 09:53,"241 11th St, Los Angeles, CA 90001" +168527,Lightning Charging Cable,1,14.95,02/10/19 22:12,"968 Dogwood St, Los Angeles, CA 90001" +168528,Macbook Pro Laptop,1,1700,02/07/19 08:37,"144 12th St, Dallas, TX 75001" +168529,AA Batteries (4-pack),1,3.84,02/19/19 18:52,"431 1st St, New York City, NY 10001" +168530,Apple Airpods Headphones,1,150,02/02/19 02:03,"541 4th St, New York City, NY 10001" +168531,Lightning Charging Cable,1,14.95,02/26/19 14:35,"600 Sunset St, San Francisco, CA 94016" +168532,Bose SoundSport Headphones,1,99.99,02/10/19 13:12,"285 11th St, Los Angeles, CA 90001" +168533,USB-C Charging Cable,1,11.95,02/02/19 08:52,"945 Sunset St, San Francisco, CA 94016" +168534,iPhone,1,700,02/02/19 11:13,"564 Chestnut St, San Francisco, CA 94016" +168535,27in FHD Monitor,1,149.99,02/10/19 19:25,"420 4th St, Boston, MA 02215" +168536,AA Batteries (4-pack),4,3.84,02/28/19 11:28,"910 Main St, Dallas, TX 75001" +168537,USB-C Charging Cable,1,11.95,02/15/19 12:28,"827 10th St, New York City, NY 10001" +168538,AA Batteries (4-pack),2,3.84,02/16/19 11:54,"118 12th St, San Francisco, CA 94016" +168539,AA Batteries (4-pack),1,3.84,02/26/19 16:59,"634 Ridge St, Portland, ME 04101" +168540,AAA Batteries (4-pack),1,2.99,02/20/19 14:53,"859 North St, Boston, MA 02215" +168541,USB-C Charging Cable,1,11.95,02/19/19 20:03,"863 Cedar St, Boston, MA 02215" +168542,AAA Batteries (4-pack),1,2.99,02/19/19 09:22,"316 Dogwood St, San Francisco, CA 94016" +168543,Macbook Pro Laptop,1,1700,02/16/19 08:28,"639 7th St, New York City, NY 10001" +168544,iPhone,1,700,02/01/19 12:16,"390 Jefferson St, Atlanta, GA 30301" +168544,Apple Airpods Headphones,1,150,02/01/19 12:16,"390 Jefferson St, Atlanta, GA 30301" +168545,Lightning Charging Cable,1,14.95,02/20/19 06:10,"445 Wilson St, New York City, NY 10001" +168546,Lightning Charging Cable,1,14.95,02/25/19 21:05,"44 North St, Los Angeles, CA 90001" +168547,20in Monitor,1,109.99,02/15/19 19:22,"356 7th St, New York City, NY 10001" +168548,AAA Batteries (4-pack),2,2.99,02/26/19 17:08,"942 12th St, Dallas, TX 75001" +168549,Flatscreen TV,1,300,02/25/19 11:47,"964 Sunset St, Dallas, TX 75001" +168550,AA Batteries (4-pack),3,3.84,02/03/19 13:07,"860 6th St, Boston, MA 02215" +168551,USB-C Charging Cable,1,11.95,02/10/19 13:40,"153 Adams St, Dallas, TX 75001" +168552,USB-C Charging Cable,1,11.95,02/14/19 18:02,"692 Meadow St, Los Angeles, CA 90001" +168553,AAA Batteries (4-pack),1,2.99,02/28/19 16:21,"731 Washington St, New York City, NY 10001" +168554,AAA Batteries (4-pack),1,2.99,02/18/19 12:21,"536 Meadow St, San Francisco, CA 94016" +168555,Apple Airpods Headphones,1,150,02/01/19 09:50,"641 Elm St, Los Angeles, CA 90001" +168556,iPhone,1,700,02/09/19 13:31,"472 Lakeview St, Boston, MA 02215" +168557,27in 4K Gaming Monitor,1,389.99,02/14/19 20:25,"848 Forest St, New York City, NY 10001" +168558,AA Batteries (4-pack),1,3.84,02/03/19 22:46,"856 Cedar St, Los Angeles, CA 90001" +168559,Bose SoundSport Headphones,1,99.99,02/14/19 22:08,"194 1st St, New York City, NY 10001" +168560,27in FHD Monitor,1,149.99,02/28/19 15:03,"720 11th St, Los Angeles, CA 90001" +168561,Apple Airpods Headphones,1,150,02/18/19 09:37,"622 14th St, Dallas, TX 75001" +168562,USB-C Charging Cable,1,11.95,02/09/19 21:23,"170 11th St, Seattle, WA 98101" +168563,USB-C Charging Cable,1,11.95,02/27/19 17:49,"332 Adams St, Seattle, WA 98101" +168564,USB-C Charging Cable,2,11.95,02/08/19 11:12,"824 Madison St, Seattle, WA 98101" +168565,Wired Headphones,1,11.99,02/21/19 08:07,"963 13th St, Portland, OR 97035" +168566,Apple Airpods Headphones,1,150,02/24/19 21:10,"800 Highland St, Los Angeles, CA 90001" +168567,USB-C Charging Cable,1,11.95,02/28/19 17:52,"319 11th St, Seattle, WA 98101" +168568,Apple Airpods Headphones,1,150,02/12/19 01:06,"145 Sunset St, Austin, TX 73301" +168569,Wired Headphones,1,11.99,02/14/19 17:33,"306 12th St, Austin, TX 73301" +168570,Apple Airpods Headphones,1,150,02/09/19 20:54,"519 2nd St, New York City, NY 10001" +168571,AAA Batteries (4-pack),1,2.99,02/28/19 17:22,"960 8th St, Seattle, WA 98101" +168572,Wired Headphones,1,11.99,02/09/19 11:19,"815 Chestnut St, San Francisco, CA 94016" +168573,Apple Airpods Headphones,1,150,02/08/19 20:44,"597 14th St, San Francisco, CA 94016" +168574,Lightning Charging Cable,1,14.95,02/05/19 21:16,"531 8th St, Seattle, WA 98101" +168575,Apple Airpods Headphones,1,150,02/17/19 09:52,"866 Highland St, Los Angeles, CA 90001" +168576,Lightning Charging Cable,2,14.95,02/11/19 10:42,"680 North St, Atlanta, GA 30301" +168577,Lightning Charging Cable,1,14.95,02/02/19 12:56,"279 Madison St, New York City, NY 10001" +168578,iPhone,1,700,02/02/19 22:49,"459 Jackson St, San Francisco, CA 94016" +168578,Lightning Charging Cable,1,14.95,02/02/19 22:49,"459 Jackson St, San Francisco, CA 94016" +168578,Wired Headphones,1,11.99,02/02/19 22:49,"459 Jackson St, San Francisco, CA 94016" +168579,AA Batteries (4-pack),2,3.84,02/10/19 11:47,"219 North St, San Francisco, CA 94016" +168580,27in FHD Monitor,1,149.99,02/10/19 15:58,"200 South St, Portland, OR 97035" +168581,Wired Headphones,1,11.99,02/06/19 23:38,"71 Lake St, San Francisco, CA 94016" +168582,AA Batteries (4-pack),1,3.84,02/01/19 16:01,"155 Maple St, Boston, MA 02215" +168583,Lightning Charging Cable,1,14.95,02/15/19 20:39,"807 Meadow St, Boston, MA 02215" +168584,Apple Airpods Headphones,1,150,02/07/19 15:56,"660 Washington St, Portland, OR 97035" +168585,AA Batteries (4-pack),1,3.84,02/22/19 18:54,"483 Sunset St, San Francisco, CA 94016" +168586,AAA Batteries (4-pack),1,2.99,02/09/19 13:19,"246 Walnut St, Austin, TX 73301" +168587,USB-C Charging Cable,2,11.95,02/10/19 18:58,"979 North St, Boston, MA 02215" +168588,Apple Airpods Headphones,1,150,02/03/19 19:14,"847 River St, Atlanta, GA 30301" +168589,Macbook Pro Laptop,1,1700,02/03/19 13:45,"122 Spruce St, Seattle, WA 98101" +168590,Bose SoundSport Headphones,1,99.99,02/21/19 23:10,"239 Church St, Seattle, WA 98101" +168591,USB-C Charging Cable,1,11.95,02/17/19 12:38,"504 South St, New York City, NY 10001" +168592,Lightning Charging Cable,1,14.95,02/04/19 02:12,"439 1st St, Seattle, WA 98101" +168593,Flatscreen TV,1,300,02/20/19 17:41,"674 Lake St, New York City, NY 10001" +168594,27in 4K Gaming Monitor,1,389.99,02/25/19 18:41,"551 Ridge St, Austin, TX 73301" +168595,Lightning Charging Cable,1,14.95,02/03/19 19:40,"500 Jackson St, Dallas, TX 75001" +168596,USB-C Charging Cable,1,11.95,02/01/19 19:49,"403 Chestnut St, San Francisco, CA 94016" +168597,27in 4K Gaming Monitor,1,389.99,02/22/19 17:43,"504 River St, Boston, MA 02215" +168598,27in FHD Monitor,1,149.99,02/07/19 15:48,"791 2nd St, San Francisco, CA 94016" +168599,27in FHD Monitor,1,149.99,02/10/19 12:09,"966 South St, San Francisco, CA 94016" +168600,Lightning Charging Cable,1,14.95,02/02/19 17:36,"771 Hickory St, San Francisco, CA 94016" +168601,Lightning Charging Cable,1,14.95,02/26/19 10:33,"841 Washington St, Boston, MA 02215" +168602,Lightning Charging Cable,2,14.95,02/13/19 13:20,"250 4th St, New York City, NY 10001" +168603,AAA Batteries (4-pack),1,2.99,02/12/19 21:23,"238 Center St, Atlanta, GA 30301" +168604,Lightning Charging Cable,1,14.95,02/08/19 23:26,"173 Center St, Los Angeles, CA 90001" +168605,34in Ultrawide Monitor,1,379.99,02/22/19 12:56,"205 Church St, San Francisco, CA 94016" +168606,Lightning Charging Cable,1,14.95,02/14/19 14:50,"337 Sunset St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +168607,Lightning Charging Cable,1,14.95,02/03/19 08:19,"603 South St, Seattle, WA 98101" +168608,Apple Airpods Headphones,1,150,02/20/19 15:46,"236 Lake St, New York City, NY 10001" +168609,Apple Airpods Headphones,1,150,02/24/19 23:02,"478 14th St, Los Angeles, CA 90001" +168610,Lightning Charging Cable,1,14.95,02/07/19 11:44,"489 Lakeview St, Boston, MA 02215" +168611,Wired Headphones,1,11.99,02/22/19 21:03,"50 Wilson St, Boston, MA 02215" +168612,ThinkPad Laptop,1,999.99,02/25/19 08:37,"712 13th St, Seattle, WA 98101" +168613,AAA Batteries (4-pack),2,2.99,02/04/19 23:55,"149 9th St, Austin, TX 73301" +168614,Google Phone,1,600,02/10/19 06:54,"578 8th St, Boston, MA 02215" +168615,AA Batteries (4-pack),2,3.84,02/19/19 15:48,"204 7th St, Los Angeles, CA 90001" +168616,AAA Batteries (4-pack),1,2.99,02/20/19 14:00,"667 Cherry St, Atlanta, GA 30301" +,,,,, +168617,Bose SoundSport Headphones,1,99.99,02/25/19 11:31,"166 Jefferson St, San Francisco, CA 94016" +168618,Bose SoundSport Headphones,1,99.99,02/21/19 08:33,"54 Dogwood St, San Francisco, CA 94016" +168619,AAA Batteries (4-pack),4,2.99,02/08/19 15:30,"908 Lincoln St, Los Angeles, CA 90001" +168620,Lightning Charging Cable,1,14.95,02/08/19 09:43,"713 River St, Portland, OR 97035" +168621,Apple Airpods Headphones,1,150,02/10/19 05:44,"374 Walnut St, San Francisco, CA 94016" +168622,Apple Airpods Headphones,1,150,02/05/19 10:13,"387 Meadow St, Austin, TX 73301" +168623,Wired Headphones,1,11.99,02/02/19 17:54,"382 13th St, Boston, MA 02215" +168624,AA Batteries (4-pack),1,3.84,02/11/19 08:12,"802 11th St, Los Angeles, CA 90001" +168625,27in FHD Monitor,1,149.99,02/22/19 18:02,"28 Elm St, New York City, NY 10001" +168626,Flatscreen TV,1,300,02/17/19 10:46,"398 Walnut St, Austin, TX 73301" +168627,27in 4K Gaming Monitor,1,389.99,02/07/19 21:08,"259 4th St, Los Angeles, CA 90001" +168628,iPhone,1,700,02/05/19 15:30,"277 7th St, Portland, OR 97035" +168628,Lightning Charging Cable,1,14.95,02/05/19 15:30,"277 7th St, Portland, OR 97035" +168629,Wired Headphones,1,11.99,02/15/19 17:24,"573 8th St, Dallas, TX 75001" +168630,iPhone,1,700,02/18/19 15:13,"608 River St, New York City, NY 10001" +168631,Apple Airpods Headphones,1,150,02/02/19 15:25,"948 Main St, Los Angeles, CA 90001" +168632,Lightning Charging Cable,1,14.95,02/11/19 15:02,"32 6th St, Dallas, TX 75001" +168633,AA Batteries (4-pack),1,3.84,02/02/19 14:01,"357 Maple St, San Francisco, CA 94016" +168634,Apple Airpods Headphones,1,150,02/26/19 19:16,"107 Cedar St, Los Angeles, CA 90001" +168635,AA Batteries (4-pack),1,3.84,02/11/19 10:22,"586 Hill St, Atlanta, GA 30301" +168635,AAA Batteries (4-pack),1,2.99,02/11/19 10:22,"586 Hill St, Atlanta, GA 30301" +168636,Wired Headphones,1,11.99,02/18/19 02:55,"573 Dogwood St, Atlanta, GA 30301" +168637,USB-C Charging Cable,1,11.95,02/18/19 00:21,"746 9th St, San Francisco, CA 94016" +168638,Flatscreen TV,1,300,02/15/19 13:10,"198 River St, San Francisco, CA 94016" +168639,Lightning Charging Cable,1,14.95,02/14/19 22:22,"934 West St, Seattle, WA 98101" +168640,34in Ultrawide Monitor,1,379.99,02/16/19 19:54,"124 Jefferson St, San Francisco, CA 94016" +168641,Bose SoundSport Headphones,1,99.99,02/01/19 11:28,"651 North St, Los Angeles, CA 90001" +168642,Google Phone,1,600,02/20/19 16:55,"843 Jackson St, New York City, NY 10001" +168643,USB-C Charging Cable,1,11.95,02/02/19 16:59,"781 Pine St, Atlanta, GA 30301" +168644,AA Batteries (4-pack),1,3.84,02/19/19 18:11,"76 Maple St, Portland, ME 04101" +168645,USB-C Charging Cable,1,11.95,02/18/19 22:06,"452 6th St, Portland, OR 97035" +168646,Flatscreen TV,1,300,02/16/19 23:29,"672 Hickory St, San Francisco, CA 94016" +168647,AAA Batteries (4-pack),2,2.99,02/05/19 22:20,"83 Spruce St, Atlanta, GA 30301" +168648,Google Phone,1,600,02/14/19 16:19,"32 Walnut St, San Francisco, CA 94016" +168649,Lightning Charging Cable,1,14.95,02/17/19 20:05,"719 Lincoln St, Boston, MA 02215" +168650,Lightning Charging Cable,1,14.95,02/05/19 13:19,"268 Adams St, Seattle, WA 98101" +168651,27in FHD Monitor,1,149.99,02/14/19 07:46,"279 Forest St, Los Angeles, CA 90001" +168652,iPhone,1,700,02/14/19 18:49,"59 2nd St, Los Angeles, CA 90001" +168652,Lightning Charging Cable,1,14.95,02/14/19 18:49,"59 2nd St, Los Angeles, CA 90001" +168653,AAA Batteries (4-pack),1,2.99,02/02/19 23:24,"558 Center St, San Francisco, CA 94016" +168654,Lightning Charging Cable,1,14.95,02/27/19 09:35,"428 Wilson St, Boston, MA 02215" +168655,Apple Airpods Headphones,1,150,02/27/19 21:56,"619 Lincoln St, Austin, TX 73301" +168656,Wired Headphones,1,11.99,02/17/19 14:08,"581 Lincoln St, Boston, MA 02215" +168657,AA Batteries (4-pack),1,3.84,02/11/19 13:43,"650 Meadow St, Atlanta, GA 30301" +168658,Wired Headphones,1,11.99,02/24/19 15:01,"399 2nd St, New York City, NY 10001" +168659,Apple Airpods Headphones,1,150,02/03/19 15:57,"788 Willow St, Atlanta, GA 30301" +168660,USB-C Charging Cable,1,11.95,02/10/19 11:32,"474 Jackson St, Dallas, TX 75001" +168661,Wired Headphones,1,11.99,02/06/19 12:12,"331 Willow St, Los Angeles, CA 90001" +168662,USB-C Charging Cable,1,11.95,02/09/19 10:20,"449 Highland St, Seattle, WA 98101" +168663,AAA Batteries (4-pack),2,2.99,02/14/19 14:43,"521 9th St, Seattle, WA 98101" +168664,AAA Batteries (4-pack),1,2.99,02/01/19 15:54,"288 Elm St, San Francisco, CA 94016" +168665,Wired Headphones,1,11.99,02/05/19 23:07,"251 1st St, New York City, NY 10001" +168666,AA Batteries (4-pack),1,3.84,02/16/19 12:04,"524 Hickory St, Los Angeles, CA 90001" +168667,AA Batteries (4-pack),1,3.84,02/06/19 06:08,"14 Maple St, New York City, NY 10001" +168667,USB-C Charging Cable,1,11.95,02/06/19 06:08,"14 Maple St, New York City, NY 10001" +168668,Lightning Charging Cable,1,14.95,02/04/19 17:26,"101 Maple St, Portland, OR 97035" +168669,Bose SoundSport Headphones,1,99.99,02/02/19 12:32,"79 7th St, Los Angeles, CA 90001" +168670,USB-C Charging Cable,1,11.95,02/27/19 21:35,"51 6th St, San Francisco, CA 94016" +168671,Macbook Pro Laptop,1,1700,02/07/19 19:46,"664 4th St, New York City, NY 10001" +168672,Wired Headphones,1,11.99,02/28/19 21:27,"227 14th St, San Francisco, CA 94016" +168673,Bose SoundSport Headphones,1,99.99,02/03/19 13:51,"995 7th St, Los Angeles, CA 90001" +168674,Google Phone,1,600,02/01/19 15:27,"285 Madison St, Seattle, WA 98101" +168674,USB-C Charging Cable,1,11.95,02/01/19 15:27,"285 Madison St, Seattle, WA 98101" +168675,Bose SoundSport Headphones,1,99.99,02/19/19 09:03,"753 Highland St, New York City, NY 10001" +168676,Lightning Charging Cable,2,14.95,02/14/19 11:20,"367 Jefferson St, Dallas, TX 75001" +168677,Lightning Charging Cable,2,14.95,02/06/19 19:11,"36 Washington St, Los Angeles, CA 90001" +168678,27in 4K Gaming Monitor,1,389.99,02/25/19 12:44,"984 Lincoln St, Austin, TX 73301" +168679,Lightning Charging Cable,1,14.95,02/21/19 22:12,"639 Lakeview St, Austin, TX 73301" +168680,Wired Headphones,1,11.99,02/04/19 12:28,"709 Hickory St, New York City, NY 10001" +168681,Bose SoundSport Headphones,2,99.99,02/18/19 11:23,"479 Dogwood St, Boston, MA 02215" +168682,Lightning Charging Cable,1,14.95,02/16/19 11:13,"89 Walnut St, Los Angeles, CA 90001" +168683,Lightning Charging Cable,1,14.95,02/19/19 14:57,"486 Highland St, Los Angeles, CA 90001" +168684,Apple Airpods Headphones,1,150,02/05/19 18:38,"772 7th St, New York City, NY 10001" +168685,iPhone,1,700,02/10/19 17:38,"691 Cherry St, Atlanta, GA 30301" +168685,Lightning Charging Cable,1,14.95,02/10/19 17:38,"691 Cherry St, Atlanta, GA 30301" +168686,Apple Airpods Headphones,1,150,02/17/19 01:28,"202 Lincoln St, San Francisco, CA 94016" +168687,Bose SoundSport Headphones,1,99.99,02/12/19 14:39,"599 7th St, New York City, NY 10001" +168688,Apple Airpods Headphones,1,150,02/05/19 12:51,"683 Pine St, San Francisco, CA 94016" +168689,Lightning Charging Cable,1,14.95,02/07/19 12:09,"310 Jefferson St, Dallas, TX 75001" +168689,Lightning Charging Cable,1,14.95,02/07/19 12:09,"310 Jefferson St, Dallas, TX 75001" +168690,27in 4K Gaming Monitor,1,389.99,02/26/19 19:48,"626 Jefferson St, Dallas, TX 75001" +168691,USB-C Charging Cable,1,11.95,02/13/19 10:00,"899 Ridge St, New York City, NY 10001" +168692,34in Ultrawide Monitor,1,379.99,02/21/19 14:05,"72 Ridge St, Boston, MA 02215" +168693,Bose SoundSport Headphones,1,99.99,02/27/19 07:46,"18 14th St, Austin, TX 73301" +168694,AAA Batteries (4-pack),2,2.99,02/03/19 14:50,"551 Lake St, San Francisco, CA 94016" +168695,ThinkPad Laptop,1,999.99,02/11/19 01:39,"748 Cedar St, New York City, NY 10001" +168696,Macbook Pro Laptop,1,1700,02/21/19 11:06,"133 South St, San Francisco, CA 94016" +168697,Flatscreen TV,1,300,02/01/19 21:41,"238 1st St, Atlanta, GA 30301" +168698,Apple Airpods Headphones,1,150,02/16/19 15:39,"915 Maple St, San Francisco, CA 94016" +168698,Google Phone,1,600,02/16/19 15:39,"915 Maple St, San Francisco, CA 94016" +168699,27in 4K Gaming Monitor,1,389.99,02/16/19 18:29,"213 Lakeview St, Seattle, WA 98101" +168700,Lightning Charging Cable,1,14.95,02/27/19 15:57,"136 Madison St, Dallas, TX 75001" +168701,Bose SoundSport Headphones,1,99.99,02/06/19 21:50,"998 Sunset St, New York City, NY 10001" +168702,USB-C Charging Cable,1,11.95,02/02/19 16:14,"778 8th St, New York City, NY 10001" +168703,USB-C Charging Cable,2,11.95,02/25/19 08:40,"857 14th St, Los Angeles, CA 90001" +168704,AAA Batteries (4-pack),1,2.99,02/12/19 00:16,"898 Willow St, New York City, NY 10001" +168705,Lightning Charging Cable,1,14.95,02/28/19 11:04,"45 Forest St, New York City, NY 10001" +168706,USB-C Charging Cable,1,11.95,02/22/19 16:19,"707 West St, San Francisco, CA 94016" +168707,Lightning Charging Cable,2,14.95,02/11/19 16:07,"192 Willow St, Dallas, TX 75001" +168707,Bose SoundSport Headphones,1,99.99,02/11/19 16:07,"192 Willow St, Dallas, TX 75001" +168708,Flatscreen TV,1,300,02/17/19 21:17,"262 Johnson St, Boston, MA 02215" +168709,Wired Headphones,1,11.99,02/15/19 15:16,"8 Hill St, Los Angeles, CA 90001" +168710,USB-C Charging Cable,2,11.95,02/22/19 11:51,"973 River St, Los Angeles, CA 90001" +168711,27in FHD Monitor,1,149.99,02/16/19 09:56,"300 Park St, Dallas, TX 75001" +168712,USB-C Charging Cable,2,11.95,02/20/19 12:14,"360 Hill St, Boston, MA 02215" +168713,27in 4K Gaming Monitor,1,389.99,02/28/19 12:49,"526 Pine St, San Francisco, CA 94016" +168714,Lightning Charging Cable,1,14.95,02/20/19 20:35,"698 North St, New York City, NY 10001" +168715,Wired Headphones,1,11.99,02/05/19 08:38,"681 Hickory St, New York City, NY 10001" +168716,AAA Batteries (4-pack),1,2.99,02/21/19 20:37,"394 Jefferson St, Atlanta, GA 30301" +168717,USB-C Charging Cable,1,11.95,02/22/19 10:50,"74 Dogwood St, Austin, TX 73301" +168718,Bose SoundSport Headphones,1,99.99,02/09/19 19:12,"616 Dogwood St, San Francisco, CA 94016" +168719,Apple Airpods Headphones,1,150,02/25/19 13:05,"54 12th St, Los Angeles, CA 90001" +168720,AAA Batteries (4-pack),3,2.99,02/03/19 21:15,"727 6th St, Boston, MA 02215" +168721,Bose SoundSport Headphones,1,99.99,02/21/19 12:12,"428 1st St, Los Angeles, CA 90001" +168722,Macbook Pro Laptop,1,1700,02/25/19 14:51,"297 Madison St, Seattle, WA 98101" +168723,Bose SoundSport Headphones,1,99.99,02/16/19 07:37,"417 Cherry St, Dallas, TX 75001" +168724,USB-C Charging Cable,1,11.95,02/21/19 09:34,"38 Maple St, New York City, NY 10001" +168725,AA Batteries (4-pack),4,3.84,02/02/19 14:48,"241 Hickory St, Portland, OR 97035" +168726,Apple Airpods Headphones,1,150,02/26/19 21:10,"574 Spruce St, Seattle, WA 98101" +168727,27in 4K Gaming Monitor,1,389.99,02/01/19 10:03,"34 Main St, Portland, OR 97035" +168728,AA Batteries (4-pack),1,3.84,02/10/19 04:39,"160 Lincoln St, New York City, NY 10001" +168729,ThinkPad Laptop,1,999.99,02/24/19 10:25,"70 Dogwood St, New York City, NY 10001" +168730,USB-C Charging Cable,1,11.95,02/04/19 18:15,"381 Forest St, Atlanta, GA 30301" +168731,Wired Headphones,1,11.99,02/20/19 22:14,"146 Washington St, San Francisco, CA 94016" +168732,AAA Batteries (4-pack),1,2.99,02/02/19 16:56,"875 10th St, Los Angeles, CA 90001" +168733,Vareebadd Phone,1,400,02/19/19 20:03,"125 Maple St, Dallas, TX 75001" +168733,USB-C Charging Cable,1,11.95,02/19/19 20:03,"125 Maple St, Dallas, TX 75001" +168734,AA Batteries (4-pack),4,3.84,02/12/19 08:16,"657 Forest St, Boston, MA 02215" +168735,Bose SoundSport Headphones,1,99.99,02/08/19 12:17,"803 North St, Austin, TX 73301" +168736,20in Monitor,1,109.99,02/17/19 21:10,"869 North St, Los Angeles, CA 90001" +168737,AA Batteries (4-pack),2,3.84,02/24/19 19:05,"495 River St, Boston, MA 02215" +168738,27in 4K Gaming Monitor,1,389.99,02/17/19 18:27,"694 Lakeview St, Atlanta, GA 30301" +168739,Google Phone,1,600,02/25/19 02:06,"108 Spruce St, Los Angeles, CA 90001" +168739,Bose SoundSport Headphones,1,99.99,02/25/19 02:06,"108 Spruce St, Los Angeles, CA 90001" +168740,USB-C Charging Cable,1,11.95,02/14/19 04:02,"380 Walnut St, Boston, MA 02215" +168741,Wired Headphones,1,11.99,02/04/19 13:57,"65 Hill St, Dallas, TX 75001" +168742,USB-C Charging Cable,1,11.95,02/02/19 15:16,"160 Forest St, Seattle, WA 98101" +168743,USB-C Charging Cable,1,11.95,02/18/19 17:13,"825 Chestnut St, Los Angeles, CA 90001" +168744,USB-C Charging Cable,1,11.95,02/11/19 09:35,"331 13th St, Portland, OR 97035" +168745,ThinkPad Laptop,1,999.99,02/13/19 10:13,"988 River St, Austin, TX 73301" +168746,AAA Batteries (4-pack),1,2.99,02/07/19 16:49,"348 9th St, Dallas, TX 75001" +168747,Apple Airpods Headphones,1,150,02/14/19 23:10,"354 Lake St, Seattle, WA 98101" +168748,Bose SoundSport Headphones,1,99.99,02/16/19 21:05,"83 Cedar St, San Francisco, CA 94016" +168749,Bose SoundSport Headphones,1,99.99,02/02/19 13:58,"327 7th St, San Francisco, CA 94016" +168750,AAA Batteries (4-pack),1,2.99,02/25/19 10:07,"714 Ridge St, Atlanta, GA 30301" +168751,Lightning Charging Cable,1,14.95,02/23/19 23:38,"479 Center St, San Francisco, CA 94016" +168752,34in Ultrawide Monitor,1,379.99,02/01/19 08:40,"990 Jefferson St, San Francisco, CA 94016" +168753,Google Phone,1,600,02/04/19 07:51,"418 14th St, Boston, MA 02215" +168754,27in FHD Monitor,1,149.99,02/05/19 12:09,"465 Jackson St, Boston, MA 02215" +168755,AAA Batteries (4-pack),1,2.99,02/14/19 16:25,"193 Forest St, San Francisco, CA 94016" +168756,Bose SoundSport Headphones,1,99.99,02/06/19 22:19,"62 Elm St, Atlanta, GA 30301" +168757,Lightning Charging Cable,1,14.95,02/20/19 10:54,"142 Cedar St, Austin, TX 73301" +168758,34in Ultrawide Monitor,1,379.99,03/01/19 01:32,"851 West St, Boston, MA 02215" +168759,iPhone,1,700,02/12/19 06:23,"748 Pine St, Dallas, TX 75001" +168760,Lightning Charging Cable,1,14.95,02/13/19 00:56,"5 Willow St, New York City, NY 10001" +168761,Lightning Charging Cable,1,14.95,02/27/19 17:55,"810 5th St, Boston, MA 02215" +168762,Apple Airpods Headphones,1,150,02/19/19 16:08,"380 Washington St, San Francisco, CA 94016" +168763,AA Batteries (4-pack),2,3.84,02/17/19 10:42,"957 Maple St, San Francisco, CA 94016" +168764,AA Batteries (4-pack),1,3.84,02/28/19 18:56,"444 Chestnut St, Boston, MA 02215" +168764,Lightning Charging Cable,1,14.95,02/28/19 18:56,"444 Chestnut St, Boston, MA 02215" +168765,Wired Headphones,1,11.99,02/25/19 20:34,"752 Center St, New York City, NY 10001" +168766,AA Batteries (4-pack),1,3.84,02/27/19 19:16,"139 Center St, Dallas, TX 75001" +168767,27in FHD Monitor,1,149.99,02/20/19 19:54,"11 Ridge St, Seattle, WA 98101" +168768,Bose SoundSport Headphones,1,99.99,02/16/19 18:37,"309 12th St, Dallas, TX 75001" +168769,34in Ultrawide Monitor,1,379.99,02/07/19 07:11,"753 Hickory St, New York City, NY 10001" +168770,AAA Batteries (4-pack),1,2.99,02/11/19 14:54,"313 14th St, Dallas, TX 75001" +168771,Macbook Pro Laptop,1,1700,02/15/19 15:32,"384 Willow St, New York City, NY 10001" +168772,Bose SoundSport Headphones,1,99.99,02/03/19 17:50,"786 14th St, Boston, MA 02215" +168773,AAA Batteries (4-pack),1,2.99,02/05/19 16:34,"855 Pine St, Atlanta, GA 30301" +168774,AAA Batteries (4-pack),1,2.99,02/25/19 08:08,"113 Jefferson St, Dallas, TX 75001" +168775,USB-C Charging Cable,1,11.95,02/24/19 21:28,"339 5th St, Boston, MA 02215" +168776,27in 4K Gaming Monitor,1,389.99,02/21/19 20:44,"435 Cedar St, New York City, NY 10001" +168777,Macbook Pro Laptop,1,1700,02/06/19 11:53,"232 Wilson St, San Francisco, CA 94016" +168778,AAA Batteries (4-pack),1,2.99,02/11/19 15:09,"66 11th St, San Francisco, CA 94016" +168779,Wired Headphones,1,11.99,02/26/19 18:14,"570 11th St, Dallas, TX 75001" +168780,USB-C Charging Cable,2,11.95,02/20/19 12:46,"126 Jackson St, San Francisco, CA 94016" +168781,USB-C Charging Cable,1,11.95,02/03/19 18:43,"668 Spruce St, Dallas, TX 75001" +168782,AA Batteries (4-pack),1,3.84,02/12/19 22:25,"902 South St, New York City, NY 10001" +168783,AAA Batteries (4-pack),2,2.99,02/05/19 14:29,"509 2nd St, Portland, OR 97035" +168784,20in Monitor,1,109.99,02/09/19 22:09,"861 Lincoln St, San Francisco, CA 94016" +168785,USB-C Charging Cable,1,11.95,02/26/19 20:43,"825 Wilson St, Atlanta, GA 30301" +168786,Wired Headphones,1,11.99,02/01/19 22:11,"745 Spruce St, New York City, NY 10001" +168787,Macbook Pro Laptop,1,1700,02/15/19 01:03,"721 River St, New York City, NY 10001" +168788,Bose SoundSport Headphones,1,99.99,02/01/19 08:21,"173 2nd St, San Francisco, CA 94016" +168789,Lightning Charging Cable,1,14.95,02/22/19 17:54,"883 Lincoln St, Los Angeles, CA 90001" +168790,AAA Batteries (4-pack),1,2.99,02/21/19 20:23,"626 1st St, Los Angeles, CA 90001" +168791,Wired Headphones,1,11.99,02/20/19 14:45,"781 Cedar St, Los Angeles, CA 90001" +168792,iPhone,1,700,02/14/19 15:16,"615 North St, San Francisco, CA 94016" +168792,USB-C Charging Cable,1,11.95,02/14/19 15:16,"615 North St, San Francisco, CA 94016" +168793,AAA Batteries (4-pack),2,2.99,02/10/19 16:49,"16 South St, Dallas, TX 75001" +168794,Apple Airpods Headphones,1,150,02/21/19 14:46,"714 River St, New York City, NY 10001" +168795,34in Ultrawide Monitor,1,379.99,02/01/19 18:56,"104 1st St, San Francisco, CA 94016" +168796,Flatscreen TV,1,300,02/16/19 14:05,"984 6th St, San Francisco, CA 94016" +168797,Lightning Charging Cable,1,14.95,02/06/19 00:27,"467 North St, San Francisco, CA 94016" +168798,Lightning Charging Cable,1,14.95,02/17/19 17:14,"702 10th St, Boston, MA 02215" +168799,Lightning Charging Cable,1,14.95,02/02/19 22:28,"951 Lakeview St, San Francisco, CA 94016" +168800,AAA Batteries (4-pack),1,2.99,02/03/19 21:27,"195 13th St, San Francisco, CA 94016" +168801,USB-C Charging Cable,1,11.95,02/26/19 11:34,"151 8th St, Austin, TX 73301" +168802,USB-C Charging Cable,1,11.95,02/27/19 19:18,"297 6th St, Boston, MA 02215" +168803,Apple Airpods Headphones,1,150,02/14/19 19:15,"40 Park St, Dallas, TX 75001" +168804,Flatscreen TV,1,300,02/06/19 15:29,"99 5th St, Boston, MA 02215" +168805,USB-C Charging Cable,1,11.95,02/10/19 21:10,"367 Wilson St, Dallas, TX 75001" +168806,Lightning Charging Cable,1,14.95,02/10/19 12:16,"267 North St, San Francisco, CA 94016" +168807,USB-C Charging Cable,2,11.95,02/03/19 10:46,"569 Highland St, Boston, MA 02215" +168808,AAA Batteries (4-pack),3,2.99,02/03/19 17:01,"861 Sunset St, San Francisco, CA 94016" +168809,Flatscreen TV,1,300,02/22/19 20:43,"484 West St, Seattle, WA 98101" +168810,AAA Batteries (4-pack),1,2.99,02/23/19 16:02,"539 1st St, San Francisco, CA 94016" +168811,AA Batteries (4-pack),3,3.84,02/19/19 14:10,"748 10th St, Atlanta, GA 30301" +168812,Flatscreen TV,1,300,02/14/19 17:43,"845 Jackson St, Los Angeles, CA 90001" +168813,Apple Airpods Headphones,1,150,02/18/19 12:18,"520 Ridge St, Seattle, WA 98101" +168814,Wired Headphones,2,11.99,02/08/19 03:05,"499 8th St, San Francisco, CA 94016" +168815,Flatscreen TV,1,300,02/11/19 20:45,"55 Meadow St, San Francisco, CA 94016" +168816,Wired Headphones,1,11.99,02/01/19 11:28,"181 Park St, Atlanta, GA 30301" +168817,USB-C Charging Cable,1,11.95,02/02/19 15:54,"887 Willow St, San Francisco, CA 94016" +168818,Macbook Pro Laptop,1,1700,02/18/19 09:17,"351 10th St, San Francisco, CA 94016" +168819,AAA Batteries (4-pack),2,2.99,02/13/19 08:20,"779 Johnson St, Los Angeles, CA 90001" +168820,20in Monitor,1,109.99,02/17/19 09:03,"377 Forest St, Dallas, TX 75001" +168821,AAA Batteries (4-pack),1,2.99,02/01/19 19:20,"712 14th St, Los Angeles, CA 90001" +168822,USB-C Charging Cable,1,11.95,02/10/19 11:15,"619 Adams St, Atlanta, GA 30301" +168823,ThinkPad Laptop,1,999.99,02/08/19 17:53,"518 Washington St, San Francisco, CA 94016" +168824,Macbook Pro Laptop,1,1700,02/27/19 02:41,"514 Highland St, Dallas, TX 75001" +168825,Lightning Charging Cable,1,14.95,02/01/19 17:57,"751 Ridge St, Portland, OR 97035" +168826,Bose SoundSport Headphones,1,99.99,02/11/19 12:28,"331 14th St, Dallas, TX 75001" +168827,USB-C Charging Cable,1,11.95,02/11/19 14:07,"463 Lake St, Boston, MA 02215" +168828,Flatscreen TV,1,300,02/15/19 12:24,"555 10th St, Dallas, TX 75001" +168829,AAA Batteries (4-pack),1,2.99,02/28/19 09:17,"356 Jackson St, Dallas, TX 75001" +168830,Wired Headphones,1,11.99,02/02/19 18:54,"129 Dogwood St, Los Angeles, CA 90001" +168831,Bose SoundSport Headphones,1,99.99,02/10/19 23:45,"96 Washington St, Seattle, WA 98101" +168832,iPhone,1,700,02/14/19 13:56,"588 1st St, Los Angeles, CA 90001" +168832,Wired Headphones,1,11.99,02/14/19 13:56,"588 1st St, Los Angeles, CA 90001" +168833,USB-C Charging Cable,1,11.95,02/08/19 21:19,"218 7th St, San Francisco, CA 94016" +168834,Wired Headphones,1,11.99,02/07/19 12:25,"823 Cherry St, Portland, OR 97035" +168835,27in FHD Monitor,1,149.99,02/08/19 21:50,"377 5th St, Dallas, TX 75001" +168836,USB-C Charging Cable,1,11.95,02/18/19 17:33,"490 Cedar St, Atlanta, GA 30301" +168837,Wired Headphones,1,11.99,02/10/19 16:50,"819 West St, Los Angeles, CA 90001" +168838,Lightning Charging Cable,1,14.95,02/16/19 22:08,"906 Dogwood St, New York City, NY 10001" +168839,Apple Airpods Headphones,1,150,02/26/19 18:07,"138 Hill St, Seattle, WA 98101" +168840,Apple Airpods Headphones,1,150,02/10/19 19:31,"537 Lakeview St, Los Angeles, CA 90001" +168841,AA Batteries (4-pack),1,3.84,02/26/19 06:59,"959 Pine St, Los Angeles, CA 90001" +168842,Apple Airpods Headphones,1,150,02/24/19 12:27,"32 Meadow St, New York City, NY 10001" +168843,Apple Airpods Headphones,1,150,02/11/19 10:02,"153 7th St, Dallas, TX 75001" +168844,Apple Airpods Headphones,1,150,02/23/19 21:55,"816 North St, Los Angeles, CA 90001" +168845,USB-C Charging Cable,1,11.95,02/09/19 03:38,"756 6th St, Atlanta, GA 30301" +168846,Flatscreen TV,1,300,02/08/19 06:19,"252 Cedar St, Los Angeles, CA 90001" +168847,Bose SoundSport Headphones,1,99.99,02/03/19 05:27,"675 Highland St, San Francisco, CA 94016" +168848,Wired Headphones,2,11.99,02/05/19 09:45,"909 Elm St, Atlanta, GA 30301" +168849,Google Phone,1,600,02/09/19 10:32,"114 Lincoln St, San Francisco, CA 94016" +168849,USB-C Charging Cable,1,11.95,02/09/19 10:32,"114 Lincoln St, San Francisco, CA 94016" +168850,USB-C Charging Cable,1,11.95,02/02/19 10:45,"614 Center St, Atlanta, GA 30301" +168851,Bose SoundSport Headphones,1,99.99,02/18/19 11:26,"254 Johnson St, Los Angeles, CA 90001" +168852,AA Batteries (4-pack),3,3.84,02/21/19 10:04,"622 Park St, Boston, MA 02215" +168853,Bose SoundSport Headphones,1,99.99,02/28/19 13:02,"112 Meadow St, Boston, MA 02215" +168854,Vareebadd Phone,1,400,02/17/19 14:37,"104 Dogwood St, Boston, MA 02215" +168855,USB-C Charging Cable,1,11.95,02/10/19 02:45,"774 Meadow St, Portland, OR 97035" +168856,USB-C Charging Cable,1,11.95,02/15/19 17:39,"747 Adams St, Seattle, WA 98101" +168857,AA Batteries (4-pack),2,3.84,02/26/19 16:33,"620 Elm St, New York City, NY 10001" +168858,AAA Batteries (4-pack),1,2.99,02/14/19 07:23,"811 14th St, New York City, NY 10001" +168859,34in Ultrawide Monitor,1,379.99,02/21/19 16:12,"413 11th St, Portland, OR 97035" +168860,AA Batteries (4-pack),1,3.84,02/26/19 11:16,"105 Lakeview St, San Francisco, CA 94016" +168861,Lightning Charging Cable,1,14.95,02/10/19 22:15,"35 Spruce St, Seattle, WA 98101" +168862,Apple Airpods Headphones,1,150,02/13/19 20:24,"821 Washington St, San Francisco, CA 94016" +168863,USB-C Charging Cable,1,11.95,02/28/19 19:34,"918 Pine St, San Francisco, CA 94016" +168864,USB-C Charging Cable,1,11.95,02/12/19 20:04,"770 Adams St, Portland, OR 97035" +168865,Wired Headphones,1,11.99,02/26/19 14:11,"90 South St, Boston, MA 02215" +168866,USB-C Charging Cable,1,11.95,02/02/19 13:34,"169 Pine St, Seattle, WA 98101" +168867,USB-C Charging Cable,1,11.95,02/16/19 18:59,"708 North St, Atlanta, GA 30301" +168868,Wired Headphones,1,11.99,02/25/19 20:07,"89 Walnut St, Atlanta, GA 30301" +168869,Lightning Charging Cable,1,14.95,02/21/19 10:27,"372 5th St, Dallas, TX 75001" +168870,Wired Headphones,1,11.99,02/26/19 19:23,"501 South St, Los Angeles, CA 90001" +168870,Wired Headphones,1,11.99,02/26/19 19:23,"501 South St, Los Angeles, CA 90001" +168871,iPhone,1,700,02/26/19 22:01,"408 Meadow St, San Francisco, CA 94016" +168871,Lightning Charging Cable,1,14.95,02/26/19 22:01,"408 Meadow St, San Francisco, CA 94016" +168872,AAA Batteries (4-pack),1,2.99,02/05/19 20:59,"928 Spruce St, Los Angeles, CA 90001" +168873,USB-C Charging Cable,1,11.95,02/25/19 10:40,"353 9th St, San Francisco, CA 94016" +168874,AA Batteries (4-pack),1,3.84,02/13/19 08:14,"353 4th St, Dallas, TX 75001" +168875,Apple Airpods Headphones,1,150,02/23/19 04:23,"389 Ridge St, New York City, NY 10001" +168876,Wired Headphones,2,11.99,02/22/19 13:54,"939 Dogwood St, San Francisco, CA 94016" +168877,Apple Airpods Headphones,1,150,02/27/19 21:23,"289 14th St, New York City, NY 10001" +168878,27in FHD Monitor,1,149.99,02/16/19 17:17,"852 2nd St, Los Angeles, CA 90001" +168879,USB-C Charging Cable,1,11.95,02/13/19 19:27,"602 Lakeview St, Boston, MA 02215" +168880,AAA Batteries (4-pack),1,2.99,02/21/19 08:47,"691 Spruce St, San Francisco, CA 94016" +168881,Vareebadd Phone,1,400,02/12/19 18:35,"813 Meadow St, New York City, NY 10001" +168882,AAA Batteries (4-pack),1,2.99,02/05/19 21:06,"694 9th St, New York City, NY 10001" +168883,Wired Headphones,1,11.99,02/12/19 23:59,"991 Center St, Seattle, WA 98101" +168884,AAA Batteries (4-pack),1,2.99,02/11/19 12:53,"378 Walnut St, Portland, OR 97035" +168885,USB-C Charging Cable,1,11.95,02/06/19 13:52,"567 Walnut St, Dallas, TX 75001" +168886,Google Phone,1,600,02/06/19 21:50,"708 Highland St, Dallas, TX 75001" +168887,AA Batteries (4-pack),1,3.84,02/02/19 15:04,"511 Sunset St, San Francisco, CA 94016" +168888,Apple Airpods Headphones,1,150,02/21/19 07:21,"96 Center St, Austin, TX 73301" +168889,USB-C Charging Cable,1,11.95,02/08/19 12:32,"34 Chestnut St, Los Angeles, CA 90001" +168890,iPhone,1,700,02/08/19 12:57,"316 North St, Boston, MA 02215" +168890,Lightning Charging Cable,1,14.95,02/08/19 12:57,"316 North St, Boston, MA 02215" +168891,iPhone,1,700,02/11/19 11:22,"453 Johnson St, New York City, NY 10001" +168892,20in Monitor,1,109.99,02/13/19 11:53,"58 Cherry St, New York City, NY 10001" +168893,USB-C Charging Cable,1,11.95,02/15/19 23:56,"951 Lakeview St, New York City, NY 10001" +168894,Lightning Charging Cable,1,14.95,02/08/19 18:22,"119 Walnut St, Portland, OR 97035" +168895,AA Batteries (4-pack),1,3.84,02/18/19 21:41,"944 7th St, New York City, NY 10001" +168896,USB-C Charging Cable,1,11.95,02/25/19 17:22,"202 Wilson St, Dallas, TX 75001" +168897,Wired Headphones,1,11.99,02/20/19 12:39,"364 West St, Seattle, WA 98101" +168898,Bose SoundSport Headphones,1,99.99,02/25/19 19:55,"756 Maple St, Portland, OR 97035" +168899,Lightning Charging Cable,1,14.95,02/23/19 15:31,"185 Johnson St, New York City, NY 10001" +168900,Bose SoundSport Headphones,1,99.99,02/16/19 12:22,"297 Chestnut St, Los Angeles, CA 90001" +168901,Apple Airpods Headphones,1,150,02/25/19 11:55,"623 2nd St, Portland, OR 97035" +168902,Bose SoundSport Headphones,1,99.99,02/13/19 09:02,"931 Hill St, New York City, NY 10001" +168903,USB-C Charging Cable,1,11.95,02/15/19 10:32,"561 Forest St, Portland, OR 97035" +168904,Wired Headphones,1,11.99,02/26/19 09:08,"375 Main St, San Francisco, CA 94016" +168905,AAA Batteries (4-pack),2,2.99,02/26/19 14:54,"155 Lakeview St, Los Angeles, CA 90001" +168906,AA Batteries (4-pack),1,3.84,02/14/19 09:45,"602 Ridge St, Dallas, TX 75001" +168907,Bose SoundSport Headphones,1,99.99,02/02/19 10:33,"145 10th St, New York City, NY 10001" +168908,Apple Airpods Headphones,1,150,02/01/19 16:59,"163 River St, New York City, NY 10001" +168909,AAA Batteries (4-pack),2,2.99,02/03/19 16:45,"117 Johnson St, Boston, MA 02215" +168910,Wired Headphones,1,11.99,02/18/19 21:55,"479 5th St, Atlanta, GA 30301" +168911,AA Batteries (4-pack),1,3.84,02/21/19 06:27,"124 12th St, Seattle, WA 98101" +168912,AA Batteries (4-pack),1,3.84,02/02/19 22:57,"118 Johnson St, Boston, MA 02215" +168913,Wired Headphones,1,11.99,02/09/19 22:45,"246 Church St, Los Angeles, CA 90001" +168914,Wired Headphones,1,11.99,02/06/19 09:23,"540 Church St, Austin, TX 73301" +168915,27in FHD Monitor,1,149.99,02/15/19 21:18,"992 Center St, San Francisco, CA 94016" +168916,27in FHD Monitor,1,149.99,02/06/19 18:48,"990 Church St, Seattle, WA 98101" +168917,Lightning Charging Cable,1,14.95,02/10/19 11:17,"14 7th St, Portland, OR 97035" +168918,Lightning Charging Cable,1,14.95,02/12/19 01:23,"254 7th St, Boston, MA 02215" +168919,USB-C Charging Cable,1,11.95,02/22/19 22:52,"678 West St, Seattle, WA 98101" +168920,iPhone,1,700,02/06/19 23:15,"898 11th St, New York City, NY 10001" +168920,AAA Batteries (4-pack),1,2.99,02/06/19 23:15,"898 11th St, New York City, NY 10001" +168921,20in Monitor,1,109.99,02/02/19 20:40,"135 Cherry St, New York City, NY 10001" +168922,AAA Batteries (4-pack),1,2.99,02/21/19 18:59,"717 Pine St, Dallas, TX 75001" +168923,20in Monitor,1,109.99,02/24/19 12:05,"713 Jackson St, San Francisco, CA 94016" +168924,AAA Batteries (4-pack),1,2.99,02/11/19 10:56,"357 9th St, San Francisco, CA 94016" +168925,AA Batteries (4-pack),2,3.84,02/07/19 12:49,"111 Cedar St, San Francisco, CA 94016" +168926,Wired Headphones,2,11.99,02/23/19 17:50,"601 Wilson St, Boston, MA 02215" +168927,AAA Batteries (4-pack),1,2.99,02/22/19 06:29,"80 Madison St, San Francisco, CA 94016" +168928,AAA Batteries (4-pack),2,2.99,02/10/19 21:30,"907 Lakeview St, Boston, MA 02215" +168929,AA Batteries (4-pack),1,3.84,02/09/19 23:30,"799 Walnut St, Seattle, WA 98101" +168930,USB-C Charging Cable,2,11.95,02/09/19 12:13,"183 10th St, Atlanta, GA 30301" +168931,AAA Batteries (4-pack),1,2.99,02/10/19 14:50,"799 Highland St, Austin, TX 73301" +168932,AAA Batteries (4-pack),1,2.99,03/01/19 00:42,"970 Lake St, San Francisco, CA 94016" +168933,Wired Headphones,1,11.99,02/22/19 14:21,"973 Hill St, Dallas, TX 75001" +168934,AAA Batteries (4-pack),1,2.99,02/12/19 12:12,"41 Walnut St, Austin, TX 73301" +168935,Lightning Charging Cable,1,14.95,02/22/19 19:56,"354 South St, San Francisco, CA 94016" +168936,20in Monitor,1,109.99,02/27/19 18:50,"848 Cedar St, San Francisco, CA 94016" +168937,Macbook Pro Laptop,1,1700,02/07/19 04:41,"793 14th St, Portland, OR 97035" +168938,Wired Headphones,1,11.99,02/03/19 20:06,"538 Center St, Seattle, WA 98101" +168939,USB-C Charging Cable,1,11.95,02/13/19 21:24,"690 5th St, Los Angeles, CA 90001" +168940,Wired Headphones,1,11.99,02/21/19 05:45,"652 Lincoln St, San Francisco, CA 94016" +168941,Wired Headphones,1,11.99,02/26/19 13:10,"783 1st St, New York City, NY 10001" +168942,Flatscreen TV,1,300,02/12/19 11:13,"413 Wilson St, Austin, TX 73301" +168943,Lightning Charging Cable,1,14.95,02/16/19 20:26,"527 Pine St, Seattle, WA 98101" +168944,Google Phone,1,600,02/07/19 11:00,"361 11th St, Dallas, TX 75001" +168945,Bose SoundSport Headphones,1,99.99,02/07/19 21:30,"666 14th St, Dallas, TX 75001" +168946,Lightning Charging Cable,1,14.95,02/10/19 15:45,"299 Johnson St, Seattle, WA 98101" +168947,LG Washing Machine,1,600.0,02/13/19 13:02,"505 Johnson St, Seattle, WA 98101" +168948,iPhone,1,700,02/18/19 19:00,"116 8th St, Atlanta, GA 30301" +168949,20in Monitor,1,109.99,02/23/19 21:17,"76 Lakeview St, New York City, NY 10001" +,,,,, +168950,20in Monitor,1,109.99,02/24/19 08:18,"341 Spruce St, Los Angeles, CA 90001" +168951,Macbook Pro Laptop,1,1700,02/27/19 02:46,"553 Church St, New York City, NY 10001" +168952,USB-C Charging Cable,1,11.95,02/22/19 20:45,"843 Sunset St, San Francisco, CA 94016" +168953,LG Dryer,1,600.0,02/22/19 17:38,"528 8th St, San Francisco, CA 94016" +168954,USB-C Charging Cable,1,11.95,02/15/19 18:41,"27 Madison St, San Francisco, CA 94016" +168955,Macbook Pro Laptop,1,1700,02/28/19 16:49,"348 River St, Boston, MA 02215" +168956,Wired Headphones,1,11.99,02/03/19 18:02,"485 Willow St, San Francisco, CA 94016" +168957,Vareebadd Phone,1,400,02/15/19 14:24,"126 South St, San Francisco, CA 94016" +168957,USB-C Charging Cable,1,11.95,02/15/19 14:24,"126 South St, San Francisco, CA 94016" +168958,Google Phone,1,600,02/04/19 16:44,"24 West St, Portland, OR 97035" +168958,Wired Headphones,1,11.99,02/04/19 16:44,"24 West St, Portland, OR 97035" +168959,iPhone,1,700,02/13/19 08:53,"842 4th St, Atlanta, GA 30301" +168959,Lightning Charging Cable,1,14.95,02/13/19 08:53,"842 4th St, Atlanta, GA 30301" +168960,AA Batteries (4-pack),1,3.84,02/20/19 11:27,"397 Johnson St, Atlanta, GA 30301" +168961,Bose SoundSport Headphones,1,99.99,02/03/19 09:55,"298 River St, San Francisco, CA 94016" +168962,Vareebadd Phone,1,400,02/01/19 13:04,"100 Pine St, Seattle, WA 98101" +168963,Macbook Pro Laptop,1,1700,02/10/19 13:20,"288 Johnson St, San Francisco, CA 94016" +168964,34in Ultrawide Monitor,1,379.99,02/08/19 12:22,"470 12th St, Los Angeles, CA 90001" +168965,iPhone,1,700,02/06/19 07:27,"130 Forest St, Los Angeles, CA 90001" +168966,iPhone,1,700,02/24/19 14:36,"545 2nd St, San Francisco, CA 94016" +168967,Lightning Charging Cable,1,14.95,02/28/19 15:20,"232 Lincoln St, Los Angeles, CA 90001" +168968,Bose SoundSport Headphones,1,99.99,02/13/19 14:01,"436 Wilson St, Los Angeles, CA 90001" +168969,AA Batteries (4-pack),3,3.84,02/18/19 08:50,"849 Cherry St, New York City, NY 10001" +168970,AAA Batteries (4-pack),1,2.99,02/09/19 01:40,"640 14th St, San Francisco, CA 94016" +168970,Lightning Charging Cable,1,14.95,02/09/19 01:40,"640 14th St, San Francisco, CA 94016" +168971,iPhone,1,700,02/21/19 16:34,"689 Spruce St, San Francisco, CA 94016" +168972,Lightning Charging Cable,1,14.95,02/10/19 18:48,"726 7th St, San Francisco, CA 94016" +168973,Bose SoundSport Headphones,1,99.99,02/22/19 17:03,"657 10th St, Portland, OR 97035" +168974,Apple Airpods Headphones,1,150,02/18/19 22:02,"333 11th St, New York City, NY 10001" +168975,34in Ultrawide Monitor,1,379.99,02/23/19 22:33,"577 Washington St, Atlanta, GA 30301" +168976,AA Batteries (4-pack),1,3.84,02/02/19 21:34,"532 Dogwood St, New York City, NY 10001" +168977,Bose SoundSport Headphones,1,99.99,02/22/19 12:17,"127 14th St, San Francisco, CA 94016" +168978,USB-C Charging Cable,1,11.95,02/14/19 06:47,"982 14th St, San Francisco, CA 94016" +168979,Bose SoundSport Headphones,1,99.99,02/17/19 16:11,"864 Lakeview St, Portland, OR 97035" +168980,AA Batteries (4-pack),1,3.84,02/12/19 12:31,"497 Spruce St, San Francisco, CA 94016" +168981,Lightning Charging Cable,1,14.95,02/25/19 12:41,"875 Madison St, Boston, MA 02215" +168982,Apple Airpods Headphones,1,150,02/28/19 14:27,"77 River St, Boston, MA 02215" +168983,AAA Batteries (4-pack),1,2.99,02/26/19 05:48,"813 South St, Portland, ME 04101" +168984,USB-C Charging Cable,1,11.95,02/20/19 11:50,"783 Lincoln St, Boston, MA 02215" +168985,Lightning Charging Cable,1,14.95,02/10/19 13:00,"702 4th St, Austin, TX 73301" +168985,AA Batteries (4-pack),2,3.84,02/10/19 13:00,"702 4th St, Austin, TX 73301" +168986,27in FHD Monitor,1,149.99,02/13/19 23:54,"904 4th St, New York City, NY 10001" +168987,Lightning Charging Cable,1,14.95,02/23/19 14:00,"383 Jackson St, Los Angeles, CA 90001" +168988,Apple Airpods Headphones,1,150,02/07/19 21:01,"818 Jackson St, San Francisco, CA 94016" +168989,Apple Airpods Headphones,1,150,02/14/19 17:51,"165 Cedar St, Dallas, TX 75001" +168990,Apple Airpods Headphones,1,150,02/04/19 11:29,"315 Ridge St, Atlanta, GA 30301" +168991,USB-C Charging Cable,1,11.95,02/18/19 09:53,"740 11th St, Boston, MA 02215" +168992,USB-C Charging Cable,1,11.95,02/02/19 10:04,"97 Center St, New York City, NY 10001" +168993,AA Batteries (4-pack),1,3.84,02/17/19 14:01,"683 Park St, Dallas, TX 75001" +168994,AAA Batteries (4-pack),1,2.99,02/03/19 10:39,"585 Elm St, San Francisco, CA 94016" +168995,Bose SoundSport Headphones,1,99.99,02/25/19 11:04,"751 2nd St, Los Angeles, CA 90001" +168996,Wired Headphones,1,11.99,02/02/19 18:56,"372 Maple St, Los Angeles, CA 90001" +168997,USB-C Charging Cable,2,11.95,02/17/19 16:57,"700 1st St, Los Angeles, CA 90001" +168998,AAA Batteries (4-pack),2,2.99,02/08/19 18:21,"101 Walnut St, Boston, MA 02215" +168999,Wired Headphones,1,11.99,02/12/19 13:02,"44 Lake St, Austin, TX 73301" +169000,Lightning Charging Cable,1,14.95,02/01/19 19:26,"430 Jefferson St, Los Angeles, CA 90001" +169001,iPhone,1,700,02/12/19 20:41,"513 Meadow St, San Francisco, CA 94016" +169001,Lightning Charging Cable,1,14.95,02/12/19 20:41,"513 Meadow St, San Francisco, CA 94016" +169001,Wired Headphones,1,11.99,02/12/19 20:41,"513 Meadow St, San Francisco, CA 94016" +169002,27in FHD Monitor,1,149.99,02/15/19 12:57,"683 Cherry St, Boston, MA 02215" +169003,Lightning Charging Cable,2,14.95,02/05/19 10:56,"2 Park St, New York City, NY 10001" +169004,USB-C Charging Cable,1,11.95,02/01/19 13:33,"600 Lakeview St, Boston, MA 02215" +169005,AAA Batteries (4-pack),1,2.99,02/10/19 20:06,"41 Willow St, Atlanta, GA 30301" +169006,Lightning Charging Cable,1,14.95,02/16/19 18:10,"793 Jackson St, Portland, OR 97035" +169007,Apple Airpods Headphones,1,150,02/27/19 17:50,"652 Cherry St, Los Angeles, CA 90001" +169008,Macbook Pro Laptop,1,1700,02/23/19 15:13,"111 Johnson St, Austin, TX 73301" +169009,Lightning Charging Cable,1,14.95,02/20/19 09:18,"986 1st St, San Francisco, CA 94016" +169010,Lightning Charging Cable,1,14.95,02/14/19 18:20,"729 North St, Boston, MA 02215" +169011,USB-C Charging Cable,1,11.95,02/26/19 05:06,"275 Main St, San Francisco, CA 94016" +169012,AAA Batteries (4-pack),2,2.99,02/21/19 15:29,"514 Lincoln St, New York City, NY 10001" +169013,USB-C Charging Cable,1,11.95,02/16/19 12:57,"940 Maple St, San Francisco, CA 94016" +169014,AA Batteries (4-pack),4,3.84,02/10/19 18:39,"845 14th St, Dallas, TX 75001" +169015,AA Batteries (4-pack),1,3.84,02/28/19 10:09,"822 12th St, San Francisco, CA 94016" +169016,iPhone,1,700,02/21/19 10:00,"418 Maple St, New York City, NY 10001" +169017,Bose SoundSport Headphones,1,99.99,02/28/19 10:37,"427 1st St, Atlanta, GA 30301" +169018,Vareebadd Phone,1,400,02/04/19 10:05,"621 Adams St, New York City, NY 10001" +169019,Google Phone,1,600,02/09/19 12:15,"165 Elm St, Austin, TX 73301" +169020,AAA Batteries (4-pack),1,2.99,02/19/19 20:16,"586 Hickory St, New York City, NY 10001" +169021,USB-C Charging Cable,1,11.95,02/04/19 10:25,"613 10th St, New York City, NY 10001" +169022,27in FHD Monitor,1,149.99,02/22/19 17:30,"57 Hill St, Los Angeles, CA 90001" +169023,iPhone,1,700,02/22/19 18:46,"364 Wilson St, Los Angeles, CA 90001" +169023,Wired Headphones,1,11.99,02/22/19 18:46,"364 Wilson St, Los Angeles, CA 90001" +169024,AA Batteries (4-pack),1,3.84,02/22/19 19:01,"675 Jefferson St, New York City, NY 10001" +169025,Lightning Charging Cable,1,14.95,02/13/19 10:15,"530 Lake St, Boston, MA 02215" +169026,AA Batteries (4-pack),1,3.84,02/12/19 16:37,"34 9th St, San Francisco, CA 94016" +169027,AAA Batteries (4-pack),1,2.99,02/04/19 13:05,"389 South St, Boston, MA 02215" +169028,Bose SoundSport Headphones,1,99.99,02/23/19 19:20,"933 4th St, Boston, MA 02215" +169029,Lightning Charging Cable,1,14.95,02/23/19 22:42,"565 Meadow St, Los Angeles, CA 90001" +169030,ThinkPad Laptop,1,999.99,02/28/19 17:39,"470 Madison St, Los Angeles, CA 90001" +169031,Wired Headphones,1,11.99,02/10/19 17:32,"624 12th St, Seattle, WA 98101" +169032,ThinkPad Laptop,1,999.99,02/08/19 18:06,"816 5th St, Atlanta, GA 30301" +169033,ThinkPad Laptop,1,999.99,02/26/19 13:06,"841 Dogwood St, Los Angeles, CA 90001" +169034,USB-C Charging Cable,1,11.95,02/25/19 23:38,"392 Spruce St, Boston, MA 02215" +169035,34in Ultrawide Monitor,1,379.99,02/18/19 11:44,"878 Meadow St, Portland, OR 97035" +169036,Bose SoundSport Headphones,1,99.99,02/07/19 02:46,"491 Lake St, New York City, NY 10001" +169037,Macbook Pro Laptop,1,1700,02/27/19 17:55,"607 13th St, Boston, MA 02215" +169038,Bose SoundSport Headphones,1,99.99,02/10/19 11:45,"466 Dogwood St, San Francisco, CA 94016" +169039,Vareebadd Phone,1,400,02/26/19 10:46,"480 South St, Seattle, WA 98101" +169039,Wired Headphones,1,11.99,02/26/19 10:46,"480 South St, Seattle, WA 98101" +169040,Apple Airpods Headphones,1,150,02/22/19 23:15,"417 13th St, New York City, NY 10001" +169041,USB-C Charging Cable,1,11.95,02/18/19 11:38,"98 6th St, Seattle, WA 98101" +169042,Wired Headphones,1,11.99,02/25/19 17:58,"963 Jefferson St, Austin, TX 73301" +169043,Bose SoundSport Headphones,1,99.99,02/24/19 14:46,"741 Hickory St, San Francisco, CA 94016" +169044,Lightning Charging Cable,1,14.95,02/08/19 15:41,"472 North St, New York City, NY 10001" +169044,AAA Batteries (4-pack),1,2.99,02/08/19 15:41,"472 North St, New York City, NY 10001" +169045,27in FHD Monitor,1,149.99,02/06/19 08:40,"420 4th St, New York City, NY 10001" +169046,Lightning Charging Cable,1,14.95,02/01/19 14:20,"257 Sunset St, Los Angeles, CA 90001" +169047,AAA Batteries (4-pack),1,2.99,02/06/19 11:35,"695 Elm St, Los Angeles, CA 90001" +169048,Lightning Charging Cable,1,14.95,02/18/19 19:11,"983 Forest St, Portland, OR 97035" +169049,AA Batteries (4-pack),1,3.84,02/08/19 16:20,"557 Hickory St, Boston, MA 02215" +169050,AA Batteries (4-pack),2,3.84,02/09/19 12:59,"381 Pine St, Los Angeles, CA 90001" +169051,AA Batteries (4-pack),1,3.84,02/17/19 14:10,"766 11th St, Los Angeles, CA 90001" +169052,20in Monitor,1,109.99,02/13/19 16:52,"535 Willow St, Los Angeles, CA 90001" +169053,Lightning Charging Cable,1,14.95,02/27/19 16:31,"410 Chestnut St, Boston, MA 02215" +169054,AAA Batteries (4-pack),1,2.99,02/03/19 00:42,"480 Lincoln St, Atlanta, GA 30301" +169055,Wired Headphones,1,11.99,02/13/19 10:44,"174 13th St, Dallas, TX 75001" +169056,USB-C Charging Cable,1,11.95,02/26/19 21:17,"821 1st St, Austin, TX 73301" +169057,USB-C Charging Cable,1,11.95,02/15/19 11:33,"369 Lakeview St, New York City, NY 10001" +169058,AAA Batteries (4-pack),2,2.99,02/25/19 12:17,"346 Church St, Boston, MA 02215" +169059,Lightning Charging Cable,1,14.95,02/17/19 11:23,"344 Hickory St, San Francisco, CA 94016" +169060,Lightning Charging Cable,1,14.95,02/14/19 12:38,"242 Jefferson St, New York City, NY 10001" +169061,Macbook Pro Laptop,1,1700,02/13/19 00:32,"364 7th St, Dallas, TX 75001" +169062,Apple Airpods Headphones,1,150,02/07/19 22:34,"861 Hickory St, San Francisco, CA 94016" +169063,Flatscreen TV,1,300,02/28/19 13:55,"725 Willow St, Dallas, TX 75001" +169064,AAA Batteries (4-pack),1,2.99,02/10/19 14:18,"915 Main St, Boston, MA 02215" +169065,Macbook Pro Laptop,1,1700,02/15/19 11:37,"685 Johnson St, Seattle, WA 98101" +169066,AAA Batteries (4-pack),1,2.99,02/25/19 13:25,"794 1st St, San Francisco, CA 94016" +169067,Lightning Charging Cable,1,14.95,02/04/19 18:19,"621 Jackson St, Los Angeles, CA 90001" +169068,AAA Batteries (4-pack),2,2.99,02/20/19 09:39,"197 9th St, Los Angeles, CA 90001" +169068,Bose SoundSport Headphones,1,99.99,02/20/19 09:39,"197 9th St, Los Angeles, CA 90001" +169069,AA Batteries (4-pack),1,3.84,02/17/19 17:49,"142 Highland St, San Francisco, CA 94016" +169070,Lightning Charging Cable,1,14.95,02/18/19 19:37,"202 South St, Dallas, TX 75001" +169071,27in FHD Monitor,1,149.99,02/21/19 18:42,"362 Sunset St, Los Angeles, CA 90001" +169072,ThinkPad Laptop,1,999.99,02/13/19 14:36,"797 Lake St, Boston, MA 02215" +169073,AA Batteries (4-pack),2,3.84,02/17/19 16:39,"309 2nd St, Atlanta, GA 30301" +169074,Wired Headphones,1,11.99,02/13/19 04:48,"73 12th St, Atlanta, GA 30301" +169075,AAA Batteries (4-pack),2,2.99,02/11/19 21:46,"323 Willow St, San Francisco, CA 94016" +169076,Wired Headphones,1,11.99,02/01/19 16:06,"447 Hickory St, Los Angeles, CA 90001" +169077,AA Batteries (4-pack),1,3.84,02/24/19 14:29,"19 Johnson St, San Francisco, CA 94016" +169078,USB-C Charging Cable,1,11.95,02/04/19 19:50,"928 Church St, New York City, NY 10001" +169079,Google Phone,1,600,02/03/19 21:35,"69 13th St, Dallas, TX 75001" +169080,Wired Headphones,1,11.99,02/20/19 08:21,"946 Willow St, Los Angeles, CA 90001" +169081,Apple Airpods Headphones,1,150,02/25/19 12:43,"20 Forest St, San Francisco, CA 94016" +169082,AAA Batteries (4-pack),2,2.99,02/14/19 12:12,"941 Highland St, Boston, MA 02215" +169083,Macbook Pro Laptop,1,1700,02/27/19 13:16,"299 Cedar St, Atlanta, GA 30301" +169084,Bose SoundSport Headphones,2,99.99,02/12/19 15:54,"215 1st St, Los Angeles, CA 90001" +169085,AA Batteries (4-pack),1,3.84,02/17/19 12:39,"731 Hill St, Austin, TX 73301" +169086,20in Monitor,1,109.99,02/19/19 11:38,"402 Church St, Atlanta, GA 30301" +169087,Lightning Charging Cable,1,14.95,02/21/19 10:18,"346 4th St, Seattle, WA 98101" +169088,Lightning Charging Cable,1,14.95,02/23/19 14:12,"309 Ridge St, Boston, MA 02215" +169089,Bose SoundSport Headphones,1,99.99,02/19/19 15:06,"835 Highland St, New York City, NY 10001" +169090,AA Batteries (4-pack),1,3.84,02/21/19 21:30,"170 2nd St, Atlanta, GA 30301" +169091,Wired Headphones,1,11.99,02/27/19 12:17,"1 River St, Los Angeles, CA 90001" +169092,Bose SoundSport Headphones,1,99.99,02/24/19 22:18,"447 Center St, Los Angeles, CA 90001" +169093,AAA Batteries (4-pack),1,2.99,02/14/19 18:37,"464 2nd St, Seattle, WA 98101" +169094,iPhone,1,700,02/10/19 15:40,"735 Maple St, Portland, ME 04101" +169095,AA Batteries (4-pack),3,3.84,02/16/19 19:35,"541 13th St, Austin, TX 73301" +169096,Apple Airpods Headphones,1,150,02/03/19 10:04,"539 Madison St, San Francisco, CA 94016" +169097,Bose SoundSport Headphones,1,99.99,02/23/19 22:41,"195 Center St, Dallas, TX 75001" +169098,ThinkPad Laptop,1,999.99,02/11/19 17:36,"494 2nd St, Los Angeles, CA 90001" +169099,AA Batteries (4-pack),1,3.84,02/12/19 17:14,"671 14th St, Atlanta, GA 30301" +169100,Wired Headphones,1,11.99,02/25/19 12:52,"654 Cedar St, Portland, OR 97035" +169101,USB-C Charging Cable,2,11.95,02/22/19 12:14,"704 Madison St, Atlanta, GA 30301" +169102,ThinkPad Laptop,1,999.99,02/04/19 10:30,"232 4th St, Los Angeles, CA 90001" +169103,Lightning Charging Cable,1,14.95,02/27/19 23:29,"833 12th St, San Francisco, CA 94016" +169104,Macbook Pro Laptop,1,1700,02/21/19 07:19,"501 River St, Seattle, WA 98101" +169105,34in Ultrawide Monitor,1,379.99,02/23/19 18:11,"373 7th St, Atlanta, GA 30301" +169106,AA Batteries (4-pack),3,3.84,02/24/19 06:46,"678 Pine St, Los Angeles, CA 90001" +169107,AA Batteries (4-pack),1,3.84,02/12/19 16:38,"795 5th St, Portland, OR 97035" +169108,ThinkPad Laptop,1,999.99,02/26/19 09:46,"634 Ridge St, Boston, MA 02215" +169109,Apple Airpods Headphones,1,150,02/06/19 21:39,"863 Dogwood St, Boston, MA 02215" +169110,Flatscreen TV,1,300,02/10/19 14:46,"902 Church St, New York City, NY 10001" +169111,iPhone,1,700,02/09/19 14:40,"817 Jackson St, Austin, TX 73301" +169111,Lightning Charging Cable,1,14.95,02/09/19 14:40,"817 Jackson St, Austin, TX 73301" +169111,Wired Headphones,1,11.99,02/09/19 14:40,"817 Jackson St, Austin, TX 73301" +169112,27in FHD Monitor,1,149.99,02/15/19 19:45,"981 Wilson St, San Francisco, CA 94016" +169113,AAA Batteries (4-pack),2,2.99,02/04/19 15:31,"943 Church St, Los Angeles, CA 90001" +169114,27in FHD Monitor,1,149.99,02/12/19 16:16,"815 Wilson St, San Francisco, CA 94016" +169115,Flatscreen TV,1,300,02/08/19 11:46,"688 North St, Seattle, WA 98101" +169116,Flatscreen TV,1,300,02/20/19 01:28,"678 Jackson St, Dallas, TX 75001" +169117,Lightning Charging Cable,1,14.95,02/03/19 12:21,"283 Washington St, San Francisco, CA 94016" +169118,USB-C Charging Cable,1,11.95,02/23/19 22:20,"551 9th St, Atlanta, GA 30301" +169119,AAA Batteries (4-pack),1,2.99,02/17/19 23:39,"622 Forest St, Los Angeles, CA 90001" +169120,Apple Airpods Headphones,1,150,02/07/19 08:57,"476 9th St, San Francisco, CA 94016" +169121,USB-C Charging Cable,1,11.95,02/12/19 14:39,"206 14th St, San Francisco, CA 94016" +169122,27in FHD Monitor,1,149.99,02/27/19 22:28,"794 Madison St, San Francisco, CA 94016" +169123,iPhone,1,700,02/13/19 16:25,"379 Wilson St, Los Angeles, CA 90001" +169124,USB-C Charging Cable,2,11.95,02/03/19 09:37,"732 14th St, Portland, OR 97035" +169125,Macbook Pro Laptop,1,1700,02/07/19 12:14,"333 Jefferson St, Los Angeles, CA 90001" +169126,27in FHD Monitor,1,149.99,02/18/19 00:26,"962 9th St, Portland, OR 97035" +169127,20in Monitor,1,109.99,02/04/19 21:48,"582 12th St, Los Angeles, CA 90001" +169128,AAA Batteries (4-pack),1,2.99,02/24/19 06:42,"997 River St, Boston, MA 02215" +169129,Apple Airpods Headphones,1,150,02/28/19 13:56,"533 5th St, Austin, TX 73301" +169130,iPhone,1,700,02/25/19 17:01,"300 Hickory St, San Francisco, CA 94016" +169131,Wired Headphones,1,11.99,02/07/19 12:28,"388 Elm St, Seattle, WA 98101" +169132,27in FHD Monitor,1,149.99,02/21/19 14:29,"613 South St, San Francisco, CA 94016" +169132,Wired Headphones,1,11.99,02/21/19 14:29,"613 South St, San Francisco, CA 94016" +169133,USB-C Charging Cable,1,11.95,02/12/19 07:43,"301 10th St, Dallas, TX 75001" +169134,USB-C Charging Cable,1,11.95,02/02/19 18:38,"153 Lake St, San Francisco, CA 94016" +169135,Apple Airpods Headphones,1,150,02/20/19 16:13,"889 6th St, Atlanta, GA 30301" +169136,iPhone,1,700,02/12/19 11:06,"586 South St, Boston, MA 02215" +169137,USB-C Charging Cable,1,11.95,02/16/19 17:52,"337 8th St, New York City, NY 10001" +169138,Bose SoundSport Headphones,1,99.99,02/22/19 06:46,"706 Church St, San Francisco, CA 94016" +169139,Lightning Charging Cable,1,14.95,02/26/19 08:36,"441 Cedar St, Boston, MA 02215" +169140,34in Ultrawide Monitor,1,379.99,02/21/19 08:14,"922 Adams St, San Francisco, CA 94016" +169141,Wired Headphones,1,11.99,02/08/19 18:34,"345 Chestnut St, Boston, MA 02215" +169142,USB-C Charging Cable,1,11.95,02/12/19 17:51,"274 Cherry St, Boston, MA 02215" +169143,AA Batteries (4-pack),1,3.84,02/04/19 20:59,"705 West St, Los Angeles, CA 90001" +169144,AA Batteries (4-pack),2,3.84,02/12/19 14:06,"756 Hill St, New York City, NY 10001" +169145,AA Batteries (4-pack),3,3.84,02/08/19 10:03,"695 Lincoln St, San Francisco, CA 94016" +169146,AA Batteries (4-pack),2,3.84,02/23/19 18:09,"962 Ridge St, Boston, MA 02215" +169147,Lightning Charging Cable,1,14.95,02/13/19 00:15,"594 Lakeview St, San Francisco, CA 94016" +169148,AA Batteries (4-pack),1,3.84,02/27/19 17:17,"171 Highland St, San Francisco, CA 94016" +169149,Lightning Charging Cable,1,14.95,02/14/19 14:37,"711 Dogwood St, Dallas, TX 75001" +169150,AA Batteries (4-pack),1,3.84,02/05/19 09:33,"863 6th St, Los Angeles, CA 90001" +169151,AAA Batteries (4-pack),1,2.99,02/23/19 07:42,"691 Wilson St, Los Angeles, CA 90001" +169152,Apple Airpods Headphones,1,150,02/19/19 18:19,"645 13th St, Portland, ME 04101" +169153,USB-C Charging Cable,1,11.95,02/21/19 11:57,"705 Hickory St, New York City, NY 10001" +169154,Google Phone,1,600,02/10/19 00:49,"680 8th St, Dallas, TX 75001" +169155,Macbook Pro Laptop,1,1700,02/20/19 10:49,"680 North St, San Francisco, CA 94016" +169156,Lightning Charging Cable,1,14.95,02/19/19 10:42,"921 Forest St, Portland, ME 04101" +169157,iPhone,1,700,02/09/19 09:38,"201 River St, Austin, TX 73301" +169158,USB-C Charging Cable,2,11.95,02/20/19 01:25,"811 Madison St, San Francisco, CA 94016" +169159,Lightning Charging Cable,1,14.95,02/01/19 18:11,"920 Jackson St, San Francisco, CA 94016" +169160,27in 4K Gaming Monitor,1,389.99,02/15/19 13:58,"847 Ridge St, Austin, TX 73301" +169161,AA Batteries (4-pack),1,3.84,02/05/19 11:56,"918 Meadow St, San Francisco, CA 94016" +169162,USB-C Charging Cable,1,11.95,02/14/19 11:57,"696 Pine St, Boston, MA 02215" +169163,iPhone,1,700,02/12/19 14:36,"844 11th St, Atlanta, GA 30301" +169164,AA Batteries (4-pack),1,3.84,02/26/19 11:22,"809 Johnson St, New York City, NY 10001" +169165,AAA Batteries (4-pack),5,2.99,02/18/19 11:19,"261 Cherry St, Boston, MA 02215" +169166,34in Ultrawide Monitor,1,379.99,02/15/19 19:11,"283 14th St, Austin, TX 73301" +169167,Lightning Charging Cable,1,14.95,02/21/19 08:54,"994 Johnson St, Seattle, WA 98101" +169168,Apple Airpods Headphones,1,150,02/18/19 14:51,"476 Washington St, New York City, NY 10001" +169169,Apple Airpods Headphones,1,150,02/02/19 15:08,"547 Ridge St, Portland, OR 97035" +169170,Bose SoundSport Headphones,1,99.99,02/02/19 20:35,"160 13th St, Dallas, TX 75001" +169171,Bose SoundSport Headphones,1,99.99,02/08/19 07:35,"156 6th St, Seattle, WA 98101" +169172,AAA Batteries (4-pack),1,2.99,02/05/19 12:36,"516 Jackson St, New York City, NY 10001" +169173,AA Batteries (4-pack),1,3.84,02/18/19 22:41,"716 Cedar St, Austin, TX 73301" +169174,iPhone,1,700,02/26/19 17:29,"315 Ridge St, San Francisco, CA 94016" +169175,AA Batteries (4-pack),1,3.84,02/23/19 11:50,"977 Center St, Dallas, TX 75001" +169176,Wired Headphones,1,11.99,02/22/19 11:24,"692 Main St, Dallas, TX 75001" +169177,iPhone,1,700,02/01/19 09:06,"608 8th St, Atlanta, GA 30301" +169178,AA Batteries (4-pack),1,3.84,02/08/19 23:23,"772 Maple St, San Francisco, CA 94016" +169179,iPhone,1,700,02/01/19 07:03,"755 Jefferson St, San Francisco, CA 94016" +169180,20in Monitor,1,109.99,02/19/19 15:12,"190 Maple St, San Francisco, CA 94016" +169181,USB-C Charging Cable,1,11.95,02/13/19 12:07,"236 14th St, New York City, NY 10001" +169182,Lightning Charging Cable,2,14.95,02/05/19 11:45,"949 North St, Dallas, TX 75001" +169183,Wired Headphones,1,11.99,02/26/19 09:12,"405 13th St, Los Angeles, CA 90001" +169184,27in FHD Monitor,1,149.99,02/02/19 17:37,"698 Pine St, Atlanta, GA 30301" +169185,USB-C Charging Cable,1,11.95,02/28/19 09:37,"524 2nd St, San Francisco, CA 94016" +169186,Wired Headphones,1,11.99,02/12/19 07:56,"876 Dogwood St, Atlanta, GA 30301" +169187,27in 4K Gaming Monitor,1,389.99,02/17/19 10:28,"530 Lincoln St, Los Angeles, CA 90001" +169188,Flatscreen TV,1,300,02/25/19 06:38,"37 Ridge St, Portland, OR 97035" +169189,27in 4K Gaming Monitor,1,389.99,02/21/19 19:58,"144 Highland St, San Francisco, CA 94016" +169190,Bose SoundSport Headphones,1,99.99,02/17/19 15:03,"167 River St, Los Angeles, CA 90001" +169191,USB-C Charging Cable,1,11.95,02/27/19 14:20,"900 10th St, San Francisco, CA 94016" +169192,34in Ultrawide Monitor,1,379.99,02/10/19 23:33,"458 Hill St, Los Angeles, CA 90001" +169193,AAA Batteries (4-pack),1,2.99,02/04/19 14:11,"727 South St, New York City, NY 10001" +169194,AAA Batteries (4-pack),1,2.99,02/06/19 09:51,"835 Church St, Atlanta, GA 30301" +169195,Apple Airpods Headphones,1,150,02/12/19 12:01,"80 6th St, Dallas, TX 75001" +169196,AAA Batteries (4-pack),1,2.99,02/10/19 16:53,"347 River St, Boston, MA 02215" +169197,27in 4K Gaming Monitor,1,389.99,02/06/19 16:06,"709 8th St, San Francisco, CA 94016" +169198,20in Monitor,1,109.99,02/07/19 19:42,"297 Lincoln St, New York City, NY 10001" +169199,USB-C Charging Cable,1,11.95,02/23/19 18:49,"331 Center St, San Francisco, CA 94016" +169200,ThinkPad Laptop,1,999.99,02/06/19 06:31,"327 7th St, San Francisco, CA 94016" +169201,34in Ultrawide Monitor,1,379.99,02/21/19 16:53,"17 Wilson St, Atlanta, GA 30301" +169202,Bose SoundSport Headphones,1,99.99,02/23/19 18:23,"637 Ridge St, San Francisco, CA 94016" +169203,Lightning Charging Cable,1,14.95,02/14/19 18:47,"982 North St, Boston, MA 02215" +169204,Macbook Pro Laptop,1,1700,02/27/19 12:59,"577 Cedar St, Los Angeles, CA 90001" +169205,Apple Airpods Headphones,1,150,02/11/19 12:32,"453 Highland St, New York City, NY 10001" +169206,34in Ultrawide Monitor,1,379.99,02/10/19 02:18,"448 Jackson St, Boston, MA 02215" +169207,AAA Batteries (4-pack),3,2.99,02/15/19 14:08,"643 Washington St, Los Angeles, CA 90001" +169208,27in FHD Monitor,1,149.99,02/02/19 17:49,"372 Elm St, Dallas, TX 75001" +169209,AAA Batteries (4-pack),1,2.99,02/19/19 14:11,"90 Spruce St, San Francisco, CA 94016" +169210,Apple Airpods Headphones,1,150,02/06/19 20:51,"604 Walnut St, Los Angeles, CA 90001" +169211,Bose SoundSport Headphones,1,99.99,02/03/19 19:22,"217 Forest St, San Francisco, CA 94016" +169212,iPhone,1,700,02/19/19 23:18,"666 Madison St, Seattle, WA 98101" +169212,Lightning Charging Cable,1,14.95,02/19/19 23:18,"666 Madison St, Seattle, WA 98101" +169213,Lightning Charging Cable,1,14.95,02/21/19 11:18,"868 Park St, San Francisco, CA 94016" +169214,Google Phone,1,600,02/12/19 14:03,"601 2nd St, Atlanta, GA 30301" +169215,Lightning Charging Cable,1,14.95,02/08/19 18:44,"720 Dogwood St, New York City, NY 10001" +169216,34in Ultrawide Monitor,1,379.99,02/04/19 10:39,"428 Wilson St, Seattle, WA 98101" +169217,Bose SoundSport Headphones,1,99.99,02/18/19 14:01,"866 Center St, Atlanta, GA 30301" +169218,AAA Batteries (4-pack),1,2.99,02/11/19 07:53,"218 Pine St, Los Angeles, CA 90001" +169219,27in FHD Monitor,1,149.99,02/12/19 13:38,"468 Maple St, Los Angeles, CA 90001" +169220,Lightning Charging Cable,1,14.95,02/25/19 18:35,"616 11th St, San Francisco, CA 94016" +169220,ThinkPad Laptop,1,999.99,02/25/19 18:35,"616 11th St, San Francisco, CA 94016" +169221,Wired Headphones,1,11.99,02/07/19 23:08,"587 North St, New York City, NY 10001" +169222,iPhone,1,700,02/08/19 23:34,"451 Maple St, New York City, NY 10001" +169223,USB-C Charging Cable,1,11.95,02/08/19 00:44,"821 11th St, New York City, NY 10001" +169224,34in Ultrawide Monitor,1,379.99,02/19/19 17:19,"407 Highland St, Seattle, WA 98101" +169225,Macbook Pro Laptop,1,1700,02/07/19 09:10,"111 Center St, Los Angeles, CA 90001" +169226,LG Dryer,1,600.0,02/28/19 00:06,"544 9th St, Austin, TX 73301" +169227,LG Washing Machine,1,600.0,02/25/19 18:43,"119 Chestnut St, San Francisco, CA 94016" +169228,Apple Airpods Headphones,1,150,02/02/19 12:05,"612 Maple St, New York City, NY 10001" +169229,AAA Batteries (4-pack),1,2.99,02/27/19 15:17,"734 Ridge St, Seattle, WA 98101" +169230,Bose SoundSport Headphones,1,99.99,02/19/19 21:17,"227 Center St, Los Angeles, CA 90001" +169231,AAA Batteries (4-pack),5,2.99,02/20/19 12:54,"594 Pine St, Los Angeles, CA 90001" +169232,iPhone,1,700,02/02/19 14:49,"495 Madison St, San Francisco, CA 94016" +169233,AAA Batteries (4-pack),1,2.99,02/06/19 17:03,"127 14th St, San Francisco, CA 94016" +169234,Vareebadd Phone,1,400,02/20/19 08:40,"95 Madison St, New York City, NY 10001" +169234,Wired Headphones,1,11.99,02/20/19 08:40,"95 Madison St, New York City, NY 10001" +169235,Wired Headphones,1,11.99,02/10/19 11:06,"548 Meadow St, San Francisco, CA 94016" +169235,Wired Headphones,1,11.99,02/10/19 11:06,"548 Meadow St, San Francisco, CA 94016" +169236,USB-C Charging Cable,1,11.95,02/16/19 23:07,"47 Cherry St, Portland, OR 97035" +169237,Lightning Charging Cable,2,14.95,02/16/19 23:48,"2 Chestnut St, Los Angeles, CA 90001" +169238,USB-C Charging Cable,1,11.95,02/26/19 10:26,"1 13th St, San Francisco, CA 94016" +169239,20in Monitor,1,109.99,02/16/19 20:20,"994 2nd St, Los Angeles, CA 90001" +169240,Lightning Charging Cable,1,14.95,02/19/19 16:28,"732 13th St, San Francisco, CA 94016" +169241,LG Dryer,1,600.0,02/08/19 16:46,"775 Lincoln St, Boston, MA 02215" +169242,27in FHD Monitor,1,149.99,02/22/19 18:57,"806 7th St, Atlanta, GA 30301" +169242,Apple Airpods Headphones,1,150,02/22/19 18:57,"806 7th St, Atlanta, GA 30301" +169243,Vareebadd Phone,1,400,02/20/19 22:19,"406 14th St, New York City, NY 10001" +169244,AA Batteries (4-pack),2,3.84,02/12/19 09:20,"975 Elm St, Los Angeles, CA 90001" +169245,USB-C Charging Cable,1,11.95,02/03/19 19:41,"571 Johnson St, Boston, MA 02215" +169246,Google Phone,1,600,02/07/19 23:43,"52 6th St, New York City, NY 10001" +169247,Lightning Charging Cable,1,14.95,02/06/19 09:07,"159 1st St, Seattle, WA 98101" +169248,Bose SoundSport Headphones,1,99.99,02/20/19 15:31,"900 Spruce St, Boston, MA 02215" +169249,34in Ultrawide Monitor,1,379.99,02/21/19 20:26,"32 Wilson St, Los Angeles, CA 90001" +169250,Lightning Charging Cable,1,14.95,02/28/19 11:50,"956 Hickory St, Austin, TX 73301" +169251,AA Batteries (4-pack),3,3.84,02/17/19 12:14,"496 4th St, Atlanta, GA 30301" +169252,AAA Batteries (4-pack),5,2.99,02/03/19 10:53,"362 Spruce St, New York City, NY 10001" +169253,Apple Airpods Headphones,1,150,02/10/19 12:57,"201 Highland St, Los Angeles, CA 90001" +169254,Vareebadd Phone,1,400,02/21/19 21:07,"801 Highland St, New York City, NY 10001" +169255,AA Batteries (4-pack),1,3.84,02/28/19 19:38,"945 Madison St, Los Angeles, CA 90001" +169256,AAA Batteries (4-pack),1,2.99,02/25/19 20:56,"150 Main St, Dallas, TX 75001" +169257,20in Monitor,1,109.99,02/15/19 13:39,"584 Meadow St, Portland, OR 97035" +169258,AA Batteries (4-pack),1,3.84,02/22/19 08:46,"652 Hill St, Atlanta, GA 30301" +169259,Apple Airpods Headphones,1,150,03/01/19 02:07,"636 9th St, New York City, NY 10001" +169260,Wired Headphones,1,11.99,02/08/19 16:41,"216 Cedar St, Austin, TX 73301" +169261,Bose SoundSport Headphones,1,99.99,02/15/19 21:08,"473 Hickory St, Dallas, TX 75001" +169262,Wired Headphones,1,11.99,02/12/19 19:16,"554 Elm St, San Francisco, CA 94016" +169263,iPhone,1,700,02/15/19 20:24,"991 Washington St, San Francisco, CA 94016" +169264,34in Ultrawide Monitor,1,379.99,02/01/19 12:42,"122 Lake St, San Francisco, CA 94016" +169265,Lightning Charging Cable,1,14.95,02/07/19 11:35,"632 7th St, Portland, OR 97035" +169266,AA Batteries (4-pack),1,3.84,02/24/19 20:59,"399 Johnson St, New York City, NY 10001" +169267,Bose SoundSport Headphones,1,99.99,02/28/19 01:07,"25 Sunset St, San Francisco, CA 94016" +169268,ThinkPad Laptop,1,999.99,02/23/19 13:02,"952 11th St, Los Angeles, CA 90001" +169269,Flatscreen TV,1,300,02/02/19 09:40,"958 Meadow St, Dallas, TX 75001" +169270,Flatscreen TV,1,300,02/15/19 23:57,"856 10th St, Seattle, WA 98101" +169271,27in 4K Gaming Monitor,1,389.99,02/16/19 20:04,"437 Walnut St, Dallas, TX 75001" +169272,Lightning Charging Cable,1,14.95,02/08/19 00:02,"265 Wilson St, Dallas, TX 75001" +169273,AAA Batteries (4-pack),1,2.99,02/02/19 10:43,"546 12th St, San Francisco, CA 94016" +169274,Lightning Charging Cable,1,14.95,02/01/19 20:12,"79 Lake St, Boston, MA 02215" +169275,Apple Airpods Headphones,1,150,02/02/19 18:16,"720 10th St, Dallas, TX 75001" +169275,AAA Batteries (4-pack),4,2.99,02/02/19 18:16,"720 10th St, Dallas, TX 75001" +169276,AAA Batteries (4-pack),2,2.99,02/05/19 13:07,"818 10th St, Austin, TX 73301" +169277,AA Batteries (4-pack),1,3.84,02/15/19 20:10,"952 Hill St, Los Angeles, CA 90001" +169278,27in 4K Gaming Monitor,1,389.99,02/14/19 13:27,"63 Willow St, Boston, MA 02215" +169279,Lightning Charging Cable,1,14.95,02/13/19 19:03,"13 South St, Los Angeles, CA 90001" +169280,34in Ultrawide Monitor,1,379.99,02/24/19 22:24,"455 Johnson St, New York City, NY 10001" +169281,27in 4K Gaming Monitor,1,389.99,02/16/19 09:51,"364 Johnson St, San Francisco, CA 94016" +169282,iPhone,1,700,02/19/19 23:28,"533 Washington St, New York City, NY 10001" +169283,Lightning Charging Cable,1,14.95,02/18/19 19:31,"134 Meadow St, San Francisco, CA 94016" +169284,Wired Headphones,2,11.99,02/26/19 07:59,"633 West St, San Francisco, CA 94016" +169285,AAA Batteries (4-pack),1,2.99,02/17/19 23:55,"246 12th St, Los Angeles, CA 90001" +169286,Lightning Charging Cable,1,14.95,02/25/19 17:35,"800 9th St, San Francisco, CA 94016" +169287,Google Phone,1,600,02/13/19 12:40,"211 Adams St, Boston, MA 02215" +169287,USB-C Charging Cable,1,11.95,02/13/19 12:40,"211 Adams St, Boston, MA 02215" +169288,Apple Airpods Headphones,1,150,02/10/19 07:43,"525 Cherry St, San Francisco, CA 94016" +169289,Bose SoundSport Headphones,1,99.99,02/13/19 15:48,"613 Sunset St, Los Angeles, CA 90001" +169290,AA Batteries (4-pack),1,3.84,02/19/19 20:22,"266 14th St, San Francisco, CA 94016" +169291,AAA Batteries (4-pack),1,2.99,02/03/19 19:53,"828 4th St, San Francisco, CA 94016" +169292,USB-C Charging Cable,1,11.95,02/20/19 21:17,"914 Wilson St, Los Angeles, CA 90001" +169293,Apple Airpods Headphones,1,150,02/19/19 18:49,"497 5th St, Atlanta, GA 30301" +169294,iPhone,1,700,02/09/19 16:41,"676 Chestnut St, Boston, MA 02215" +169295,27in 4K Gaming Monitor,1,389.99,02/06/19 13:13,"144 Lakeview St, Atlanta, GA 30301" +169296,Wired Headphones,1,11.99,02/01/19 14:50,"683 4th St, San Francisco, CA 94016" +169297,ThinkPad Laptop,1,999.99,02/11/19 17:22,"941 Jackson St, New York City, NY 10001" +169298,Vareebadd Phone,1,400,02/18/19 07:32,"749 5th St, Los Angeles, CA 90001" +169299,AAA Batteries (4-pack),1,2.99,02/12/19 21:49,"120 Willow St, San Francisco, CA 94016" +169300,Macbook Pro Laptop,1,1700,02/01/19 17:23,"243 Highland St, Boston, MA 02215" +169301,Lightning Charging Cable,1,14.95,02/12/19 21:09,"577 West St, Austin, TX 73301" +169302,AA Batteries (4-pack),1,3.84,02/04/19 15:39,"169 Walnut St, Dallas, TX 75001" +169303,Apple Airpods Headphones,1,150,02/13/19 19:37,"839 Pine St, Atlanta, GA 30301" +169304,Apple Airpods Headphones,1,150,02/05/19 11:49,"977 Highland St, Los Angeles, CA 90001" +169305,iPhone,1,700,02/13/19 13:23,"40 Adams St, San Francisco, CA 94016" +169305,Wired Headphones,1,11.99,02/13/19 13:23,"40 Adams St, San Francisco, CA 94016" +169306,20in Monitor,1,109.99,02/23/19 19:52,"149 13th St, San Francisco, CA 94016" +169307,Apple Airpods Headphones,1,150,02/28/19 21:54,"706 5th St, Los Angeles, CA 90001" +169308,Wired Headphones,1,11.99,02/16/19 00:38,"175 River St, Seattle, WA 98101" +169309,AA Batteries (4-pack),1,3.84,02/09/19 18:39,"926 1st St, San Francisco, CA 94016" +169310,AA Batteries (4-pack),2,3.84,02/08/19 12:39,"403 Adams St, Portland, OR 97035" +169311,AAA Batteries (4-pack),2,2.99,02/24/19 11:54,"435 5th St, Los Angeles, CA 90001" +169312,Wired Headphones,1,11.99,02/01/19 12:02,"514 West St, San Francisco, CA 94016" +169313,USB-C Charging Cable,1,11.95,02/21/19 14:31,"189 Main St, Seattle, WA 98101" +169314,ThinkPad Laptop,1,999.99,02/01/19 09:08,"35 8th St, Boston, MA 02215" +169315,AA Batteries (4-pack),2,3.84,02/27/19 09:08,"993 Jefferson St, Portland, ME 04101" +169316,USB-C Charging Cable,1,11.95,02/10/19 11:19,"193 14th St, San Francisco, CA 94016" +169317,Wired Headphones,1,11.99,02/20/19 13:25,"319 Meadow St, San Francisco, CA 94016" +169318,Wired Headphones,2,11.99,02/25/19 15:41,"100 2nd St, Seattle, WA 98101" +169319,Lightning Charging Cable,1,14.95,02/15/19 15:01,"353 South St, New York City, NY 10001" +169320,Wired Headphones,2,11.99,02/08/19 16:00,"2 Center St, Atlanta, GA 30301" +169321,AA Batteries (4-pack),1,3.84,02/14/19 16:31,"916 Lakeview St, New York City, NY 10001" +169322,AA Batteries (4-pack),1,3.84,02/14/19 22:36,"882 Jefferson St, Portland, OR 97035" +169323,AAA Batteries (4-pack),2,2.99,02/27/19 07:00,"318 10th St, Dallas, TX 75001" +169324,20in Monitor,1,109.99,02/16/19 10:27,"318 12th St, Atlanta, GA 30301" +169325,AAA Batteries (4-pack),2,2.99,02/02/19 19:57,"682 North St, Austin, TX 73301" +169326,27in 4K Gaming Monitor,1,389.99,02/26/19 23:19,"831 Ridge St, Portland, ME 04101" +169327,27in FHD Monitor,1,149.99,02/21/19 19:19,"549 2nd St, Boston, MA 02215" +169328,27in 4K Gaming Monitor,1,389.99,02/16/19 09:29,"639 Forest St, Portland, OR 97035" +169329,Bose SoundSport Headphones,1,99.99,02/03/19 12:33,"404 6th St, San Francisco, CA 94016" +169330,AA Batteries (4-pack),3,3.84,02/10/19 15:00,"503 14th St, Los Angeles, CA 90001" +169330,Flatscreen TV,1,300,02/10/19 15:00,"503 14th St, Los Angeles, CA 90001" +169331,Wired Headphones,1,11.99,02/28/19 23:54,"234 Main St, Dallas, TX 75001" +169332,Bose SoundSport Headphones,1,99.99,02/21/19 07:29,"724 Forest St, Dallas, TX 75001" +169333,Wired Headphones,1,11.99,02/22/19 15:45,"227 Spruce St, Austin, TX 73301" +169334,Lightning Charging Cable,1,14.95,02/10/19 18:51,"300 Main St, San Francisco, CA 94016" +169335,Lightning Charging Cable,1,14.95,02/16/19 09:57,"841 Hickory St, Atlanta, GA 30301" +169336,Apple Airpods Headphones,1,150,02/03/19 14:16,"797 Lincoln St, Los Angeles, CA 90001" +169337,Lightning Charging Cable,1,14.95,02/28/19 11:13,"740 Willow St, San Francisco, CA 94016" +169338,ThinkPad Laptop,1,999.99,02/22/19 16:34,"703 Highland St, New York City, NY 10001" +169339,Apple Airpods Headphones,1,150,02/28/19 20:55,"197 Cherry St, Boston, MA 02215" +169340,Macbook Pro Laptop,1,1700,02/19/19 14:23,"684 5th St, Los Angeles, CA 90001" +169341,USB-C Charging Cable,1,11.95,02/14/19 18:11,"718 4th St, Seattle, WA 98101" +169342,Wired Headphones,1,11.99,02/12/19 12:54,"317 Park St, San Francisco, CA 94016" +169343,iPhone,1,700,02/28/19 13:58,"761 North St, New York City, NY 10001" +169344,USB-C Charging Cable,1,11.95,02/25/19 11:14,"625 8th St, San Francisco, CA 94016" +169345,USB-C Charging Cable,1,11.95,02/24/19 11:38,"815 River St, Los Angeles, CA 90001" +169346,34in Ultrawide Monitor,1,379.99,02/17/19 23:18,"733 8th St, San Francisco, CA 94016" +169347,AAA Batteries (4-pack),2,2.99,02/05/19 11:14,"627 11th St, San Francisco, CA 94016" +169348,Lightning Charging Cable,1,14.95,02/19/19 11:05,"287 Ridge St, New York City, NY 10001" +169349,Wired Headphones,1,11.99,02/24/19 20:04,"223 Adams St, Seattle, WA 98101" +169350,Wired Headphones,1,11.99,02/01/19 12:56,"55 West St, New York City, NY 10001" +169351,Wired Headphones,1,11.99,02/08/19 13:12,"556 Church St, Los Angeles, CA 90001" +169352,AA Batteries (4-pack),1,3.84,02/17/19 16:02,"18 Lakeview St, Atlanta, GA 30301" +169353,AA Batteries (4-pack),1,3.84,02/19/19 21:58,"173 1st St, New York City, NY 10001" +169354,iPhone,1,700,02/02/19 13:11,"273 Cherry St, New York City, NY 10001" +169355,AAA Batteries (4-pack),4,2.99,02/14/19 05:22,"134 Main St, San Francisco, CA 94016" +169356,Bose SoundSport Headphones,1,99.99,02/03/19 23:28,"482 Wilson St, Los Angeles, CA 90001" +169357,Apple Airpods Headphones,1,150,02/06/19 11:49,"848 Lincoln St, Seattle, WA 98101" +169358,34in Ultrawide Monitor,1,379.99,02/24/19 13:58,"908 Adams St, New York City, NY 10001" +169359,AA Batteries (4-pack),1,3.84,02/06/19 21:30,"650 Lincoln St, San Francisco, CA 94016" +169360,34in Ultrawide Monitor,1,379.99,02/13/19 18:59,"493 Forest St, Seattle, WA 98101" +169361,iPhone,1,700,02/27/19 13:00,"732 4th St, Portland, OR 97035" +169362,Google Phone,1,600,02/27/19 13:12,"73 6th St, Austin, TX 73301" +169363,Flatscreen TV,1,300,02/08/19 19:20,"292 Madison St, San Francisco, CA 94016" +169364,Lightning Charging Cable,1,14.95,02/17/19 16:18,"73 Cedar St, Boston, MA 02215" +169365,AAA Batteries (4-pack),1,2.99,02/21/19 15:00,"108 Lake St, Dallas, TX 75001" +169366,AA Batteries (4-pack),1,3.84,02/15/19 22:43,"688 11th St, San Francisco, CA 94016" +169367,Bose SoundSport Headphones,1,99.99,02/02/19 17:32,"205 Chestnut St, Austin, TX 73301" +169368,USB-C Charging Cable,1,11.95,02/08/19 23:41,"235 South St, Los Angeles, CA 90001" +169369,Lightning Charging Cable,1,14.95,02/12/19 20:16,"975 Adams St, San Francisco, CA 94016" +169370,Lightning Charging Cable,1,14.95,02/09/19 08:41,"366 Church St, Boston, MA 02215" +169371,27in FHD Monitor,1,149.99,02/05/19 17:02,"880 Main St, Dallas, TX 75001" +169372,iPhone,1,700,02/23/19 20:53,"104 Jackson St, Seattle, WA 98101" +169372,Wired Headphones,1,11.99,02/23/19 20:53,"104 Jackson St, Seattle, WA 98101" +169373,34in Ultrawide Monitor,1,379.99,02/27/19 10:59,"937 4th St, Boston, MA 02215" +169374,Wired Headphones,1,11.99,02/23/19 17:00,"900 Elm St, San Francisco, CA 94016" +169375,Apple Airpods Headphones,1,150,02/27/19 19:49,"385 Hill St, Portland, ME 04101" +169376,Apple Airpods Headphones,1,150,02/10/19 12:32,"552 1st St, Atlanta, GA 30301" +169377,USB-C Charging Cable,1,11.95,02/13/19 11:25,"572 Madison St, Seattle, WA 98101" +169378,27in FHD Monitor,1,149.99,02/28/19 21:44,"751 11th St, Los Angeles, CA 90001" +169379,27in FHD Monitor,1,149.99,02/09/19 10:09,"719 Ridge St, Seattle, WA 98101" +169380,AAA Batteries (4-pack),1,2.99,02/25/19 20:06,"162 8th St, Portland, ME 04101" +169381,Wired Headphones,1,11.99,02/01/19 14:16,"364 Park St, New York City, NY 10001" +169382,Apple Airpods Headphones,1,150,02/04/19 10:38,"216 Maple St, San Francisco, CA 94016" +169383,AA Batteries (4-pack),2,3.84,02/08/19 10:10,"918 12th St, Austin, TX 73301" +169384,Lightning Charging Cable,1,14.95,02/07/19 09:46,"539 Church St, San Francisco, CA 94016" +169385,AAA Batteries (4-pack),1,2.99,02/08/19 17:44,"789 8th St, San Francisco, CA 94016" +169386,Lightning Charging Cable,1,14.95,02/12/19 10:12,"664 Maple St, Los Angeles, CA 90001" +169387,AA Batteries (4-pack),1,3.84,02/28/19 19:25,"737 1st St, San Francisco, CA 94016" +169388,AA Batteries (4-pack),1,3.84,02/04/19 18:14,"413 Adams St, Dallas, TX 75001" +169389,AAA Batteries (4-pack),1,2.99,02/14/19 17:50,"427 6th St, Los Angeles, CA 90001" +169390,27in 4K Gaming Monitor,1,389.99,02/21/19 16:35,"396 Spruce St, New York City, NY 10001" +169390,Bose SoundSport Headphones,1,99.99,02/21/19 16:35,"396 Spruce St, New York City, NY 10001" +169391,AA Batteries (4-pack),1,3.84,02/19/19 19:13,"817 2nd St, New York City, NY 10001" +169392,34in Ultrawide Monitor,1,379.99,02/19/19 21:09,"823 Meadow St, Seattle, WA 98101" +169393,27in FHD Monitor,1,149.99,02/10/19 08:06,"793 14th St, San Francisco, CA 94016" +169394,20in Monitor,1,109.99,02/24/19 00:17,"384 Jackson St, Los Angeles, CA 90001" +169395,Apple Airpods Headphones,1,150,02/02/19 12:03,"451 Adams St, Austin, TX 73301" +169396,USB-C Charging Cable,1,11.95,02/04/19 18:07,"730 7th St, New York City, NY 10001" +169397,USB-C Charging Cable,1,11.95,02/25/19 16:22,"606 Jefferson St, Seattle, WA 98101" +169398,Lightning Charging Cable,1,14.95,02/05/19 11:59,"682 Park St, Austin, TX 73301" +169399,Lightning Charging Cable,1,14.95,02/07/19 16:55,"139 12th St, Seattle, WA 98101" +169400,27in FHD Monitor,1,149.99,02/13/19 01:13,"710 5th St, New York City, NY 10001" +169401,AAA Batteries (4-pack),1,2.99,02/11/19 17:04,"53 6th St, Los Angeles, CA 90001" +169402,AA Batteries (4-pack),1,3.84,02/06/19 22:45,"39 1st St, New York City, NY 10001" +169403,AAA Batteries (4-pack),1,2.99,02/28/19 11:52,"980 Jackson St, Austin, TX 73301" +169404,Flatscreen TV,1,300,02/23/19 20:30,"399 Elm St, Seattle, WA 98101" +169405,20in Monitor,1,109.99,02/04/19 16:33,"234 Adams St, Boston, MA 02215" +169406,AA Batteries (4-pack),1,3.84,02/19/19 12:15,"810 11th St, Boston, MA 02215" +169406,Flatscreen TV,1,300,02/19/19 12:15,"810 11th St, Boston, MA 02215" +169407,Apple Airpods Headphones,1,150,02/12/19 18:48,"500 11th St, Dallas, TX 75001" +169408,Lightning Charging Cable,1,14.95,02/24/19 10:27,"596 11th St, New York City, NY 10001" +169409,Bose SoundSport Headphones,1,99.99,02/13/19 15:29,"217 8th St, San Francisco, CA 94016" +169410,AA Batteries (4-pack),1,3.84,02/12/19 21:27,"784 North St, Boston, MA 02215" +169411,AAA Batteries (4-pack),1,2.99,02/15/19 11:47,"866 11th St, Seattle, WA 98101" +169412,AAA Batteries (4-pack),1,2.99,02/23/19 19:51,"805 9th St, Austin, TX 73301" +169413,iPhone,1,700,02/28/19 18:49,"847 10th St, Los Angeles, CA 90001" +169414,27in FHD Monitor,1,149.99,02/05/19 17:41,"235 Lakeview St, Austin, TX 73301" +169415,AA Batteries (4-pack),1,3.84,02/17/19 15:11,"669 Main St, San Francisco, CA 94016" +169416,AA Batteries (4-pack),1,3.84,02/22/19 22:30,"852 11th St, New York City, NY 10001" +169417,Google Phone,1,600,02/19/19 22:01,"300 Forest St, Boston, MA 02215" +169418,USB-C Charging Cable,1,11.95,02/19/19 13:42,"657 1st St, Los Angeles, CA 90001" +169419,Lightning Charging Cable,1,14.95,02/05/19 20:54,"667 Elm St, Boston, MA 02215" +169420,AA Batteries (4-pack),5,3.84,02/14/19 17:40,"302 Maple St, Boston, MA 02215" +169421,Macbook Pro Laptop,1,1700,02/16/19 18:03,"770 Pine St, San Francisco, CA 94016" +169422,Wired Headphones,1,11.99,02/07/19 11:52,"173 5th St, San Francisco, CA 94016" +169423,Google Phone,1,600,02/22/19 11:45,"995 Ridge St, Dallas, TX 75001" +169424,27in FHD Monitor,1,149.99,02/25/19 15:34,"229 Dogwood St, Austin, TX 73301" +169425,34in Ultrawide Monitor,1,379.99,02/12/19 15:04,"949 Hickory St, Seattle, WA 98101" +169426,Bose SoundSport Headphones,1,99.99,02/17/19 23:44,"671 5th St, San Francisco, CA 94016" +169427,Flatscreen TV,1,300,02/26/19 20:07,"19 Ridge St, Atlanta, GA 30301" +169428,34in Ultrawide Monitor,1,379.99,02/17/19 07:50,"919 Maple St, Atlanta, GA 30301" +169429,AAA Batteries (4-pack),1,2.99,02/05/19 20:42,"818 Maple St, Seattle, WA 98101" +169430,Lightning Charging Cable,1,14.95,02/22/19 19:46,"14 1st St, Los Angeles, CA 90001" +169431,27in 4K Gaming Monitor,1,389.99,02/23/19 09:05,"655 Hill St, San Francisco, CA 94016" +169432,Macbook Pro Laptop,1,1700,02/10/19 11:51,"855 South St, Los Angeles, CA 90001" +169433,Macbook Pro Laptop,1,1700,02/11/19 11:11,"616 Church St, Atlanta, GA 30301" +169434,Lightning Charging Cable,2,14.95,02/14/19 14:52,"39 Willow St, Boston, MA 02215" +169435,AA Batteries (4-pack),1,3.84,02/10/19 00:43,"643 Hill St, New York City, NY 10001" +169436,AAA Batteries (4-pack),1,2.99,02/10/19 21:39,"686 7th St, San Francisco, CA 94016" +169437,20in Monitor,1,109.99,02/05/19 19:25,"999 Highland St, Boston, MA 02215" +169438,Wired Headphones,1,11.99,02/05/19 17:04,"210 Pine St, Portland, OR 97035" +169439,Apple Airpods Headphones,1,150,02/07/19 05:33,"398 Main St, San Francisco, CA 94016" +169440,Lightning Charging Cable,2,14.95,02/03/19 20:43,"731 Hickory St, Seattle, WA 98101" +169441,AA Batteries (4-pack),1,3.84,02/23/19 22:02,"225 1st St, Los Angeles, CA 90001" +169442,USB-C Charging Cable,2,11.95,02/14/19 13:36,"568 Willow St, Dallas, TX 75001" +169443,Flatscreen TV,1,300,02/24/19 22:48,"300 5th St, Dallas, TX 75001" +169444,iPhone,1,700,02/05/19 19:08,"810 Meadow St, Dallas, TX 75001" +169445,AA Batteries (4-pack),1,3.84,02/04/19 16:26,"817 Church St, Austin, TX 73301" +169446,Apple Airpods Headphones,1,150,02/06/19 00:35,"852 5th St, Los Angeles, CA 90001" +169447,Lightning Charging Cable,1,14.95,02/27/19 11:03,"336 2nd St, New York City, NY 10001" +169448,20in Monitor,1,109.99,02/12/19 18:05,"534 Spruce St, New York City, NY 10001" +169449,Wired Headphones,2,11.99,02/10/19 10:40,"436 14th St, San Francisco, CA 94016" +169450,Google Phone,1,600,02/26/19 13:11,"748 8th St, Dallas, TX 75001" +169451,USB-C Charging Cable,1,11.95,03/01/19 01:22,"683 Lakeview St, Atlanta, GA 30301" +169452,Lightning Charging Cable,1,14.95,02/09/19 13:13,"447 Cherry St, New York City, NY 10001" +169453,34in Ultrawide Monitor,1,379.99,02/05/19 08:27,"789 Highland St, Seattle, WA 98101" +169454,AA Batteries (4-pack),1,3.84,02/18/19 08:57,"205 South St, Boston, MA 02215" +169455,Apple Airpods Headphones,1,150,02/02/19 22:09,"73 Maple St, San Francisco, CA 94016" +169456,Apple Airpods Headphones,1,150,02/28/19 12:22,"149 Hickory St, San Francisco, CA 94016" +169457,AAA Batteries (4-pack),1,2.99,02/08/19 13:28,"836 River St, Boston, MA 02215" +169458,Lightning Charging Cable,1,14.95,02/11/19 00:45,"664 Lincoln St, San Francisco, CA 94016" +169459,27in FHD Monitor,1,149.99,02/20/19 12:18,"277 12th St, San Francisco, CA 94016" +169460,ThinkPad Laptop,1,999.99,02/11/19 21:37,"399 Elm St, Boston, MA 02215" +169461,AA Batteries (4-pack),1,3.84,02/05/19 15:00,"243 Sunset St, Atlanta, GA 30301" +169462,Macbook Pro Laptop,1,1700,02/12/19 23:11,"817 Meadow St, New York City, NY 10001" +169463,Lightning Charging Cable,1,14.95,02/12/19 11:03,"14 Cedar St, San Francisco, CA 94016" +169464,Google Phone,1,600,02/02/19 10:19,"320 Washington St, Seattle, WA 98101" +169464,USB-C Charging Cable,1,11.95,02/02/19 10:19,"320 Washington St, Seattle, WA 98101" +169465,Bose SoundSport Headphones,1,99.99,02/04/19 21:22,"553 Jackson St, Boston, MA 02215" +169466,USB-C Charging Cable,1,11.95,02/02/19 20:16,"32 Hickory St, Dallas, TX 75001" +169467,Wired Headphones,2,11.99,02/28/19 10:43,"927 Pine St, Atlanta, GA 30301" +169468,USB-C Charging Cable,1,11.95,02/21/19 23:48,"52 West St, Los Angeles, CA 90001" +169469,AA Batteries (4-pack),1,3.84,02/17/19 10:45,"341 Ridge St, Los Angeles, CA 90001" +169470,AAA Batteries (4-pack),1,2.99,02/12/19 09:21,"544 Cherry St, New York City, NY 10001" +169471,Bose SoundSport Headphones,1,99.99,02/24/19 20:14,"28 Dogwood St, Seattle, WA 98101" +169472,Google Phone,1,600,02/18/19 17:20,"418 7th St, New York City, NY 10001" +169473,Wired Headphones,2,11.99,02/27/19 09:48,"739 7th St, Dallas, TX 75001" +169474,USB-C Charging Cable,1,11.95,02/19/19 14:39,"418 Lake St, San Francisco, CA 94016" +169475,27in 4K Gaming Monitor,1,389.99,02/15/19 12:10,"989 Washington St, Portland, OR 97035" +169476,AAA Batteries (4-pack),1,2.99,02/22/19 15:24,"986 8th St, Dallas, TX 75001" +169477,USB-C Charging Cable,1,11.95,02/23/19 09:22,"278 Cherry St, Seattle, WA 98101" +169478,AAA Batteries (4-pack),1,2.99,02/26/19 21:43,"114 Hickory St, Portland, OR 97035" +169479,AA Batteries (4-pack),1,3.84,02/17/19 17:13,"29 Meadow St, San Francisco, CA 94016" +169480,Lightning Charging Cable,1,14.95,02/07/19 16:47,"48 11th St, San Francisco, CA 94016" +169481,Lightning Charging Cable,1,14.95,02/14/19 13:48,"767 7th St, San Francisco, CA 94016" +169482,AAA Batteries (4-pack),2,2.99,02/05/19 23:00,"334 Cedar St, Seattle, WA 98101" +169483,USB-C Charging Cable,1,11.95,02/27/19 16:56,"844 10th St, Seattle, WA 98101" +169484,AAA Batteries (4-pack),1,2.99,02/19/19 18:48,"261 Washington St, Atlanta, GA 30301" +169485,AAA Batteries (4-pack),3,2.99,02/12/19 18:04,"576 River St, Boston, MA 02215" +169486,Bose SoundSport Headphones,1,99.99,02/01/19 06:54,"827 Lakeview St, Atlanta, GA 30301" +169487,Macbook Pro Laptop,1,1700,02/06/19 16:30,"689 Meadow St, Dallas, TX 75001" +169487,USB-C Charging Cable,1,11.95,02/06/19 16:30,"689 Meadow St, Dallas, TX 75001" +169488,34in Ultrawide Monitor,1,379.99,02/20/19 19:29,"998 10th St, Atlanta, GA 30301" +169489,AA Batteries (4-pack),1,3.84,02/19/19 11:46,"905 Highland St, Austin, TX 73301" +169490,AA Batteries (4-pack),2,3.84,02/14/19 19:34,"597 6th St, Los Angeles, CA 90001" +169491,Bose SoundSport Headphones,1,99.99,02/12/19 20:05,"225 11th St, Seattle, WA 98101" +169492,Apple Airpods Headphones,1,150,02/21/19 22:05,"755 13th St, Austin, TX 73301" +169493,34in Ultrawide Monitor,1,379.99,02/22/19 10:48,"635 North St, Los Angeles, CA 90001" +169494,USB-C Charging Cable,1,11.95,02/13/19 21:26,"909 2nd St, Dallas, TX 75001" +169495,Wired Headphones,1,11.99,02/03/19 16:42,"400 11th St, Dallas, TX 75001" +169496,Lightning Charging Cable,1,14.95,02/14/19 13:21,"813 South St, Boston, MA 02215" +169497,Google Phone,1,600,02/14/19 08:52,"419 4th St, Portland, OR 97035" +169498,27in FHD Monitor,1,149.99,02/15/19 19:56,"765 Highland St, Seattle, WA 98101" +169499,Lightning Charging Cable,1,14.95,02/27/19 23:44,"868 Highland St, Portland, OR 97035" +169500,Bose SoundSport Headphones,1,99.99,02/18/19 18:23,"71 Meadow St, Dallas, TX 75001" +169501,Bose SoundSport Headphones,1,99.99,02/28/19 16:18,"850 Washington St, Seattle, WA 98101" +169502,Vareebadd Phone,1,400,02/09/19 19:29,"752 Main St, Los Angeles, CA 90001" +169503,Lightning Charging Cable,2,14.95,02/08/19 13:07,"310 5th St, Boston, MA 02215" +169504,Wired Headphones,1,11.99,02/22/19 11:39,"419 Chestnut St, New York City, NY 10001" +169505,AA Batteries (4-pack),1,3.84,02/23/19 20:05,"931 Sunset St, New York City, NY 10001" +169506,Apple Airpods Headphones,1,150,02/25/19 19:19,"443 4th St, San Francisco, CA 94016" +169507,Vareebadd Phone,1,400,02/20/19 18:02,"627 Madison St, San Francisco, CA 94016" +169507,USB-C Charging Cable,1,11.95,02/20/19 18:02,"627 Madison St, San Francisco, CA 94016" +169508,AA Batteries (4-pack),1,3.84,02/06/19 10:53,"784 Lake St, Dallas, TX 75001" +169509,AAA Batteries (4-pack),1,2.99,02/06/19 18:43,"46 North St, Dallas, TX 75001" +169510,AAA Batteries (4-pack),2,2.99,02/13/19 19:17,"304 Cherry St, Boston, MA 02215" +169511,Google Phone,1,600,02/20/19 11:42,"536 Cedar St, Los Angeles, CA 90001" +169512,AAA Batteries (4-pack),1,2.99,02/27/19 07:36,"730 6th St, Atlanta, GA 30301" +169513,27in 4K Gaming Monitor,1,389.99,02/07/19 14:10,"325 Ridge St, Atlanta, GA 30301" +169514,Wired Headphones,2,11.99,02/19/19 00:08,"285 6th St, San Francisco, CA 94016" +169515,20in Monitor,1,109.99,02/01/19 17:40,"402 11th St, Austin, TX 73301" +169516,Bose SoundSport Headphones,1,99.99,02/20/19 16:03,"575 1st St, New York City, NY 10001" +169517,Wired Headphones,1,11.99,02/19/19 10:34,"795 Spruce St, Los Angeles, CA 90001" +169518,Bose SoundSport Headphones,1,99.99,02/23/19 17:26,"490 4th St, San Francisco, CA 94016" +169519,Wired Headphones,1,11.99,02/23/19 19:28,"646 Cherry St, San Francisco, CA 94016" +169520,Wired Headphones,3,11.99,02/24/19 23:49,"700 North St, Los Angeles, CA 90001" +169521,AAA Batteries (4-pack),1,2.99,02/03/19 14:18,"418 Forest St, Dallas, TX 75001" +169522,34in Ultrawide Monitor,1,379.99,02/18/19 11:23,"621 Wilson St, Dallas, TX 75001" +169523,34in Ultrawide Monitor,1,379.99,02/17/19 10:39,"690 14th St, New York City, NY 10001" +169524,Apple Airpods Headphones,1,150,02/02/19 13:35,"5 Hickory St, New York City, NY 10001" +169524,Wired Headphones,1,11.99,02/02/19 13:35,"5 Hickory St, New York City, NY 10001" +169525,Bose SoundSport Headphones,1,99.99,02/13/19 09:19,"857 Johnson St, Austin, TX 73301" +169525,USB-C Charging Cable,1,11.95,02/13/19 09:19,"857 Johnson St, Austin, TX 73301" +169526,USB-C Charging Cable,2,11.95,02/20/19 08:55,"636 Cherry St, Los Angeles, CA 90001" +169527,Apple Airpods Headphones,1,150,02/14/19 23:52,"480 Hickory St, New York City, NY 10001" +169528,AA Batteries (4-pack),2,3.84,02/27/19 11:22,"299 Main St, New York City, NY 10001" +169529,USB-C Charging Cable,1,11.95,02/14/19 20:01,"279 Willow St, Boston, MA 02215" +169530,USB-C Charging Cable,1,11.95,02/07/19 11:14,"648 Chestnut St, Los Angeles, CA 90001" +169531,Bose SoundSport Headphones,1,99.99,02/12/19 13:56,"310 Johnson St, Portland, OR 97035" +169532,AA Batteries (4-pack),1,3.84,02/21/19 19:37,"301 Church St, San Francisco, CA 94016" +169533,Apple Airpods Headphones,1,150,02/20/19 15:57,"945 Park St, Los Angeles, CA 90001" +169534,27in FHD Monitor,1,149.99,02/26/19 18:13,"772 Center St, San Francisco, CA 94016" +169535,AA Batteries (4-pack),1,3.84,02/15/19 19:11,"203 Dogwood St, New York City, NY 10001" +169536,USB-C Charging Cable,1,11.95,02/07/19 20:47,"983 South St, San Francisco, CA 94016" +169537,AA Batteries (4-pack),1,3.84,02/04/19 11:02,"635 10th St, Boston, MA 02215" +169538,27in FHD Monitor,1,149.99,02/02/19 15:33,"500 Maple St, Austin, TX 73301" +169539,Bose SoundSport Headphones,1,99.99,02/25/19 17:11,"415 Lake St, Boston, MA 02215" +169540,Wired Headphones,1,11.99,02/25/19 19:31,"764 West St, San Francisco, CA 94016" +169541,Macbook Pro Laptop,1,1700,02/13/19 19:37,"25 Hill St, Boston, MA 02215" +169542,AAA Batteries (4-pack),3,2.99,02/20/19 04:47,"988 2nd St, San Francisco, CA 94016" +169543,AAA Batteries (4-pack),2,2.99,02/26/19 18:09,"422 Hill St, Dallas, TX 75001" +169544,AAA Batteries (4-pack),2,2.99,02/27/19 16:56,"791 Pine St, New York City, NY 10001" +169545,Bose SoundSport Headphones,1,99.99,02/26/19 14:04,"970 Hill St, San Francisco, CA 94016" +169546,AAA Batteries (4-pack),1,2.99,02/16/19 03:53,"642 Jackson St, San Francisco, CA 94016" +169547,LG Dryer,1,600.0,02/08/19 13:53,"331 West St, Austin, TX 73301" +169548,Google Phone,1,600,02/02/19 15:31,"143 14th St, Dallas, TX 75001" +169549,AA Batteries (4-pack),1,3.84,02/16/19 10:59,"791 Washington St, San Francisco, CA 94016" +169550,Apple Airpods Headphones,1,150,02/19/19 16:34,"343 Spruce St, Atlanta, GA 30301" +169551,Apple Airpods Headphones,1,150,02/21/19 08:59,"780 Ridge St, New York City, NY 10001" +169552,Wired Headphones,1,11.99,02/11/19 15:03,"126 13th St, Atlanta, GA 30301" +169553,Bose SoundSport Headphones,1,99.99,02/07/19 10:18,"379 Hickory St, San Francisco, CA 94016" +169554,AA Batteries (4-pack),2,3.84,02/17/19 20:41,"674 8th St, Boston, MA 02215" +169555,Apple Airpods Headphones,1,150,02/01/19 11:23,"210 Park St, Boston, MA 02215" +169556,AAA Batteries (4-pack),1,2.99,02/25/19 00:06,"331 9th St, Portland, OR 97035" +169557,AA Batteries (4-pack),1,3.84,02/19/19 12:00,"700 Spruce St, Atlanta, GA 30301" +169558,Apple Airpods Headphones,1,150,02/19/19 12:21,"673 South St, San Francisco, CA 94016" +169559,Bose SoundSport Headphones,1,99.99,02/10/19 16:39,"723 Walnut St, San Francisco, CA 94016" +169560,Macbook Pro Laptop,1,1700,02/19/19 06:38,"667 Johnson St, Boston, MA 02215" +169561,27in 4K Gaming Monitor,1,389.99,02/07/19 08:45,"723 Ridge St, Dallas, TX 75001" +169562,Apple Airpods Headphones,1,150,02/15/19 13:25,"154 Forest St, San Francisco, CA 94016" +169563,Lightning Charging Cable,1,14.95,02/04/19 07:12,"837 Highland St, Austin, TX 73301" +169564,AA Batteries (4-pack),1,3.84,02/16/19 14:00,"898 Adams St, New York City, NY 10001" +169565,USB-C Charging Cable,1,11.95,02/25/19 20:03,"978 Lincoln St, San Francisco, CA 94016" +169566,AA Batteries (4-pack),1,3.84,02/19/19 15:22,"637 4th St, Atlanta, GA 30301" +169567,Apple Airpods Headphones,1,150,02/06/19 11:52,"278 14th St, Los Angeles, CA 90001" +169568,Lightning Charging Cable,1,14.95,02/18/19 19:04,"443 11th St, Atlanta, GA 30301" +169569,iPhone,1,700,02/01/19 13:14,"2 8th St, Los Angeles, CA 90001" +169569,Wired Headphones,1,11.99,02/01/19 13:14,"2 8th St, Los Angeles, CA 90001" +169570,27in FHD Monitor,1,149.99,02/22/19 15:06,"966 South St, Los Angeles, CA 90001" +169571,Flatscreen TV,1,300,02/03/19 00:21,"231 Cedar St, San Francisco, CA 94016" +169572,AA Batteries (4-pack),1,3.84,02/05/19 07:50,"377 Madison St, San Francisco, CA 94016" +169573,USB-C Charging Cable,1,11.95,02/08/19 16:38,"843 Church St, New York City, NY 10001" +169574,USB-C Charging Cable,1,11.95,02/17/19 17:38,"967 Lakeview St, Atlanta, GA 30301" +169575,Lightning Charging Cable,1,14.95,02/06/19 17:45,"533 10th St, San Francisco, CA 94016" +169576,Bose SoundSport Headphones,1,99.99,02/20/19 14:38,"619 6th St, Los Angeles, CA 90001" +169577,USB-C Charging Cable,1,11.95,02/13/19 05:23,"528 Hickory St, San Francisco, CA 94016" +169578,Bose SoundSport Headphones,1,99.99,02/23/19 11:03,"468 Hickory St, Portland, ME 04101" +169579,Flatscreen TV,1,300,02/20/19 10:34,"854 Hill St, Austin, TX 73301" +169580,Apple Airpods Headphones,1,150,02/07/19 00:12,"196 Lakeview St, San Francisco, CA 94016" +169581,USB-C Charging Cable,1,11.95,02/01/19 09:44,"244 13th St, Atlanta, GA 30301" +169582,Lightning Charging Cable,1,14.95,02/04/19 11:40,"121 6th St, Austin, TX 73301" +169583,27in 4K Gaming Monitor,1,389.99,02/11/19 18:29,"727 Church St, New York City, NY 10001" +169584,USB-C Charging Cable,1,11.95,02/07/19 03:00,"979 Washington St, New York City, NY 10001" +169585,Bose SoundSport Headphones,1,99.99,02/09/19 14:23,"638 10th St, San Francisco, CA 94016" +169586,AA Batteries (4-pack),1,3.84,02/10/19 13:32,"781 Elm St, San Francisco, CA 94016" +169587,Wired Headphones,2,11.99,02/09/19 17:35,"412 Cedar St, New York City, NY 10001" +169588,Lightning Charging Cable,1,14.95,02/01/19 22:20,"811 Maple St, San Francisco, CA 94016" +169589,Apple Airpods Headphones,1,150,02/06/19 20:08,"78 Dogwood St, Boston, MA 02215" +169590,Wired Headphones,1,11.99,02/07/19 08:33,"739 Cherry St, New York City, NY 10001" +169591,USB-C Charging Cable,1,11.95,02/04/19 20:07,"163 Cedar St, Dallas, TX 75001" +169591,Wired Headphones,1,11.99,02/04/19 20:07,"163 Cedar St, Dallas, TX 75001" +169592,ThinkPad Laptop,1,999.99,02/17/19 21:09,"878 4th St, Atlanta, GA 30301" +169593,Wired Headphones,1,11.99,02/24/19 14:04,"872 8th St, Austin, TX 73301" +169594,27in 4K Gaming Monitor,1,389.99,02/18/19 12:07,"575 Adams St, New York City, NY 10001" +169595,20in Monitor,1,109.99,02/07/19 11:36,"533 Jefferson St, Portland, OR 97035" +169596,Wired Headphones,1,11.99,02/18/19 10:48,"509 Highland St, Los Angeles, CA 90001" +169597,Lightning Charging Cable,1,14.95,02/22/19 18:50,"787 12th St, Atlanta, GA 30301" +169598,20in Monitor,1,109.99,02/01/19 09:15,"594 1st St, Seattle, WA 98101" +169599,iPhone,1,700,02/09/19 16:18,"628 Forest St, Portland, ME 04101" +169600,Bose SoundSport Headphones,1,99.99,02/07/19 09:17,"102 Adams St, New York City, NY 10001" +169601,Wired Headphones,1,11.99,02/14/19 11:04,"139 2nd St, Seattle, WA 98101" +169602,ThinkPad Laptop,1,999.99,02/27/19 12:32,"282 Johnson St, Los Angeles, CA 90001" +169603,USB-C Charging Cable,1,11.95,02/08/19 10:33,"479 Chestnut St, San Francisco, CA 94016" +169604,iPhone,1,700,02/11/19 18:42,"489 Center St, Los Angeles, CA 90001" +169605,AAA Batteries (4-pack),1,2.99,02/02/19 21:49,"736 8th St, Los Angeles, CA 90001" +169606,AAA Batteries (4-pack),1,2.99,02/05/19 16:25,"895 Highland St, Los Angeles, CA 90001" +169607,Apple Airpods Headphones,1,150,02/06/19 16:40,"756 13th St, Boston, MA 02215" +169608,AAA Batteries (4-pack),1,2.99,02/08/19 23:10,"585 Sunset St, Austin, TX 73301" +169608,USB-C Charging Cable,1,11.95,02/08/19 23:10,"585 Sunset St, Austin, TX 73301" +169609,AAA Batteries (4-pack),1,2.99,02/07/19 19:35,"953 12th St, Seattle, WA 98101" +169610,Apple Airpods Headphones,1,150,02/05/19 21:59,"296 North St, Boston, MA 02215" +169611,Wired Headphones,1,11.99,02/10/19 09:38,"207 4th St, Portland, OR 97035" +169612,Wired Headphones,1,11.99,02/13/19 17:42,"770 North St, San Francisco, CA 94016" +169613,Vareebadd Phone,1,400,02/08/19 21:57,"945 River St, San Francisco, CA 94016" +169613,USB-C Charging Cable,2,11.95,02/08/19 21:57,"945 River St, San Francisco, CA 94016" +169613,Wired Headphones,1,11.99,02/08/19 21:57,"945 River St, San Francisco, CA 94016" +169614,Lightning Charging Cable,1,14.95,02/24/19 19:08,"248 Elm St, Los Angeles, CA 90001" +169614,Google Phone,1,600,02/24/19 19:08,"248 Elm St, Los Angeles, CA 90001" +169615,Wired Headphones,1,11.99,02/27/19 17:50,"441 13th St, San Francisco, CA 94016" +169616,Lightning Charging Cable,1,14.95,02/03/19 14:09,"699 10th St, New York City, NY 10001" +169617,AAA Batteries (4-pack),2,2.99,02/28/19 09:14,"418 Johnson St, San Francisco, CA 94016" +169618,27in FHD Monitor,1,149.99,02/27/19 13:34,"596 Ridge St, New York City, NY 10001" +169619,27in FHD Monitor,1,149.99,02/08/19 06:47,"401 Church St, Los Angeles, CA 90001" +169620,Wired Headphones,1,11.99,02/06/19 21:07,"357 Pine St, New York City, NY 10001" +169621,AAA Batteries (4-pack),1,2.99,02/12/19 00:06,"854 Adams St, San Francisco, CA 94016" +169622,AA Batteries (4-pack),1,3.84,02/19/19 19:57,"719 Meadow St, Atlanta, GA 30301" +169623,Bose SoundSport Headphones,1,99.99,02/25/19 10:32,"774 6th St, Boston, MA 02215" +169624,USB-C Charging Cable,1,11.95,02/22/19 12:28,"434 Spruce St, Dallas, TX 75001" +169625,27in 4K Gaming Monitor,1,389.99,02/06/19 15:47,"788 Wilson St, Seattle, WA 98101" +169626,AAA Batteries (4-pack),3,2.99,02/20/19 14:50,"999 11th St, San Francisco, CA 94016" +169627,Bose SoundSport Headphones,1,99.99,02/10/19 19:58,"416 12th St, Seattle, WA 98101" +169628,AAA Batteries (4-pack),1,2.99,02/16/19 13:35,"89 Wilson St, San Francisco, CA 94016" +169629,Vareebadd Phone,1,400,02/03/19 18:41,"796 Lincoln St, Dallas, TX 75001" +169630,Google Phone,1,600,02/12/19 09:08,"860 14th St, Los Angeles, CA 90001" +169630,USB-C Charging Cable,1,11.95,02/12/19 09:08,"860 14th St, Los Angeles, CA 90001" +169631,Lightning Charging Cable,1,14.95,02/10/19 13:10,"880 Forest St, Atlanta, GA 30301" +169632,Lightning Charging Cable,1,14.95,02/28/19 16:39,"82 Lakeview St, Los Angeles, CA 90001" +169633,Wired Headphones,2,11.99,02/12/19 04:13,"232 Lake St, San Francisco, CA 94016" +169634,Lightning Charging Cable,1,14.95,02/04/19 16:06,"908 10th St, Dallas, TX 75001" +169635,AA Batteries (4-pack),1,3.84,02/04/19 15:59,"359 Walnut St, Los Angeles, CA 90001" +169636,Apple Airpods Headphones,1,150,02/20/19 20:12,"102 5th St, San Francisco, CA 94016" +169637,AAA Batteries (4-pack),2,2.99,02/26/19 07:57,"412 Adams St, Dallas, TX 75001" +169638,AA Batteries (4-pack),2,3.84,02/06/19 14:13,"748 Highland St, San Francisco, CA 94016" +169639,AAA Batteries (4-pack),1,2.99,02/26/19 12:55,"960 Highland St, Boston, MA 02215" +169640,Bose SoundSport Headphones,1,99.99,02/18/19 14:47,"965 Cedar St, Boston, MA 02215" +169641,Flatscreen TV,1,300,02/28/19 23:20,"583 Hill St, Portland, OR 97035" +169642,Apple Airpods Headphones,1,150,02/12/19 11:43,"705 Washington St, New York City, NY 10001" +169643,AA Batteries (4-pack),1,3.84,02/20/19 18:58,"370 1st St, Atlanta, GA 30301" +169644,ThinkPad Laptop,1,999.99,02/22/19 19:08,"967 Hill St, New York City, NY 10001" +169645,Bose SoundSport Headphones,1,99.99,02/16/19 19:50,"84 Cedar St, Los Angeles, CA 90001" +169646,Apple Airpods Headphones,1,150,02/24/19 16:50,"477 Elm St, San Francisco, CA 94016" +169647,Flatscreen TV,1,300,02/27/19 15:48,"970 Park St, Dallas, TX 75001" +169648,AAA Batteries (4-pack),1,2.99,02/22/19 21:09,"107 Chestnut St, Los Angeles, CA 90001" +169649,AAA Batteries (4-pack),1,2.99,02/11/19 11:35,"529 Wilson St, San Francisco, CA 94016" +169650,USB-C Charging Cable,1,11.95,02/18/19 21:25,"678 River St, Dallas, TX 75001" +169651,Wired Headphones,1,11.99,02/16/19 20:36,"857 4th St, Atlanta, GA 30301" +169652,Apple Airpods Headphones,1,150,02/21/19 20:54,"955 10th St, Dallas, TX 75001" +169653,USB-C Charging Cable,1,11.95,02/08/19 09:21,"121 Forest St, San Francisco, CA 94016" +169654,AAA Batteries (4-pack),1,2.99,02/26/19 09:49,"363 13th St, Los Angeles, CA 90001" +169655,AAA Batteries (4-pack),2,2.99,02/13/19 16:37,"999 Cedar St, Boston, MA 02215" +169656,20in Monitor,1,109.99,02/12/19 09:07,"690 1st St, Seattle, WA 98101" +169657,USB-C Charging Cable,1,11.95,02/23/19 22:57,"664 Highland St, Seattle, WA 98101" +169658,Apple Airpods Headphones,1,150,02/08/19 17:07,"161 Forest St, Los Angeles, CA 90001" +169659,AAA Batteries (4-pack),1,2.99,02/18/19 00:30,"526 Dogwood St, Los Angeles, CA 90001" +169659,USB-C Charging Cable,1,11.95,02/18/19 00:30,"526 Dogwood St, Los Angeles, CA 90001" +169660,AA Batteries (4-pack),2,3.84,02/16/19 10:14,"989 Spruce St, Dallas, TX 75001" +169661,27in 4K Gaming Monitor,1,389.99,02/07/19 20:32,"849 Pine St, Los Angeles, CA 90001" +169662,Wired Headphones,1,11.99,02/23/19 19:58,"352 Pine St, Dallas, TX 75001" +169663,Lightning Charging Cable,1,14.95,02/15/19 15:01,"752 Wilson St, New York City, NY 10001" +169664,AAA Batteries (4-pack),3,2.99,02/08/19 10:43,"831 Cherry St, New York City, NY 10001" +169665,Macbook Pro Laptop,1,1700,02/27/19 23:41,"247 Main St, New York City, NY 10001" +169666,USB-C Charging Cable,1,11.95,02/28/19 00:37,"598 Maple St, Los Angeles, CA 90001" +169667,ThinkPad Laptop,1,999.99,02/16/19 21:47,"130 Willow St, New York City, NY 10001" +169668,AAA Batteries (4-pack),1,2.99,02/01/19 19:47,"842 14th St, Austin, TX 73301" +169669,27in FHD Monitor,1,149.99,02/28/19 14:28,"665 Highland St, New York City, NY 10001" +169670,27in FHD Monitor,1,149.99,02/10/19 17:56,"828 11th St, Seattle, WA 98101" +169671,Macbook Pro Laptop,1,1700,02/08/19 10:17,"576 Johnson St, San Francisco, CA 94016" +169672,AA Batteries (4-pack),1,3.84,02/11/19 13:22,"823 8th St, Los Angeles, CA 90001" +169673,USB-C Charging Cable,1,11.95,02/24/19 14:26,"578 Sunset St, New York City, NY 10001" +169674,Lightning Charging Cable,1,14.95,02/08/19 14:36,"618 South St, Los Angeles, CA 90001" +169675,Apple Airpods Headphones,1,150,02/06/19 10:31,"187 River St, Seattle, WA 98101" +169676,34in Ultrawide Monitor,1,379.99,02/27/19 06:02,"233 Hickory St, Seattle, WA 98101" +169677,AAA Batteries (4-pack),1,2.99,02/10/19 19:45,"990 1st St, New York City, NY 10001" +169678,Bose SoundSport Headphones,1,99.99,02/02/19 14:35,"826 Willow St, Dallas, TX 75001" +169679,AA Batteries (4-pack),1,3.84,02/25/19 22:35,"135 Dogwood St, Portland, OR 97035" +169680,Bose SoundSport Headphones,1,99.99,02/13/19 10:26,"388 Sunset St, San Francisco, CA 94016" +169681,AAA Batteries (4-pack),1,2.99,02/20/19 19:28,"657 Johnson St, Dallas, TX 75001" +169682,Bose SoundSport Headphones,1,99.99,02/19/19 17:38,"282 Madison St, Seattle, WA 98101" +169683,Macbook Pro Laptop,1,1700,02/03/19 14:37,"702 Lake St, Seattle, WA 98101" +169684,20in Monitor,1,109.99,02/07/19 14:48,"264 10th St, Seattle, WA 98101" +169685,Wired Headphones,1,11.99,02/26/19 18:36,"646 13th St, Los Angeles, CA 90001" +169686,27in 4K Gaming Monitor,1,389.99,02/14/19 07:12,"54 Sunset St, San Francisco, CA 94016" +169687,USB-C Charging Cable,1,11.95,02/12/19 09:19,"228 Jackson St, Atlanta, GA 30301" +169688,AA Batteries (4-pack),3,3.84,02/10/19 08:12,"712 Cedar St, Atlanta, GA 30301" +169689,USB-C Charging Cable,1,11.95,02/18/19 22:41,"936 Lake St, Portland, ME 04101" +169690,Flatscreen TV,1,300,02/09/19 15:41,"968 Johnson St, New York City, NY 10001" +169691,USB-C Charging Cable,4,11.95,02/16/19 01:13,"691 1st St, Boston, MA 02215" +169692,Lightning Charging Cable,1,14.95,02/27/19 23:08,"899 Chestnut St, Dallas, TX 75001" +169693,Wired Headphones,1,11.99,02/07/19 11:32,"932 Meadow St, Dallas, TX 75001" +169694,Macbook Pro Laptop,1,1700,02/07/19 20:41,"837 Wilson St, Boston, MA 02215" +169695,AAA Batteries (4-pack),1,2.99,02/06/19 17:19,"507 14th St, Atlanta, GA 30301" +169696,AA Batteries (4-pack),1,3.84,02/22/19 15:00,"813 River St, San Francisco, CA 94016" +169697,AAA Batteries (4-pack),1,2.99,02/20/19 18:01,"810 Dogwood St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +169698,Bose SoundSport Headphones,1,99.99,02/04/19 20:49,"792 Forest St, Portland, OR 97035" +169699,Wired Headphones,1,11.99,02/26/19 01:02,"116 12th St, San Francisco, CA 94016" +169700,AA Batteries (4-pack),1,3.84,02/22/19 16:38,"80 13th St, San Francisco, CA 94016" +169701,34in Ultrawide Monitor,1,379.99,02/12/19 12:14,"288 Center St, San Francisco, CA 94016" +,,,,, +169702,AAA Batteries (4-pack),1,2.99,02/06/19 08:22,"545 10th St, Dallas, TX 75001" +169703,Bose SoundSport Headphones,1,99.99,03/01/19 00:18,"416 Chestnut St, Los Angeles, CA 90001" +169704,ThinkPad Laptop,1,999.99,02/01/19 23:25,"983 13th St, Portland, OR 97035" +169705,Apple Airpods Headphones,1,150,02/16/19 15:45,"377 14th St, Boston, MA 02215" +169706,Apple Airpods Headphones,1,150,02/27/19 19:55,"522 Walnut St, New York City, NY 10001" +169707,AAA Batteries (4-pack),1,2.99,02/25/19 13:09,"265 Elm St, New York City, NY 10001" +169708,iPhone,1,700,02/28/19 11:24,"722 North St, San Francisco, CA 94016" +169708,Apple Airpods Headphones,1,150,02/28/19 11:24,"722 North St, San Francisco, CA 94016" +169709,20in Monitor,1,109.99,02/21/19 16:46,"176 Lakeview St, San Francisco, CA 94016" +169710,Lightning Charging Cable,1,14.95,02/27/19 18:31,"219 Lincoln St, San Francisco, CA 94016" +169711,Wired Headphones,1,11.99,02/26/19 10:01,"271 7th St, Dallas, TX 75001" +169712,Lightning Charging Cable,1,14.95,02/06/19 12:33,"927 Hickory St, Dallas, TX 75001" +169713,Lightning Charging Cable,1,14.95,02/02/19 20:02,"875 Dogwood St, Dallas, TX 75001" +169714,AA Batteries (4-pack),3,3.84,02/08/19 17:49,"192 8th St, Dallas, TX 75001" +169715,iPhone,1,700,02/24/19 10:07,"836 Main St, Los Angeles, CA 90001" +169716,27in FHD Monitor,1,149.99,02/08/19 13:23,"526 11th St, San Francisco, CA 94016" +169717,Macbook Pro Laptop,1,1700,02/11/19 21:59,"829 4th St, Boston, MA 02215" +169718,Lightning Charging Cable,1,14.95,02/25/19 19:33,"17 Jackson St, Los Angeles, CA 90001" +,,,,, +169719,iPhone,1,700,02/06/19 09:34,"218 Willow St, Los Angeles, CA 90001" +169720,27in FHD Monitor,1,149.99,02/08/19 19:46,"187 Madison St, New York City, NY 10001" +169721,AAA Batteries (4-pack),2,2.99,02/09/19 06:15,"986 Pine St, Los Angeles, CA 90001" +169722,Wired Headphones,1,11.99,02/01/19 20:55,"704 Madison St, Seattle, WA 98101" +169723,27in FHD Monitor,1,149.99,02/26/19 20:08,"67 Maple St, San Francisco, CA 94016" +169724,34in Ultrawide Monitor,1,379.99,02/18/19 11:17,"273 Wilson St, Portland, OR 97035" +169725,Flatscreen TV,1,300,02/09/19 11:22,"938 Madison St, Los Angeles, CA 90001" +169726,Apple Airpods Headphones,1,150,02/05/19 10:02,"271 Meadow St, Portland, OR 97035" +169727,Wired Headphones,1,11.99,02/05/19 21:13,"728 Meadow St, San Francisco, CA 94016" +169728,34in Ultrawide Monitor,1,379.99,02/01/19 20:37,"961 8th St, Austin, TX 73301" +169729,AA Batteries (4-pack),2,3.84,02/01/19 05:49,"703 Hill St, New York City, NY 10001" +169730,AAA Batteries (4-pack),2,2.99,02/02/19 21:41,"652 North St, New York City, NY 10001" +169731,Apple Airpods Headphones,1,150,02/13/19 11:26,"892 Johnson St, Seattle, WA 98101" +169732,Apple Airpods Headphones,1,150,02/19/19 12:18,"36 Pine St, Seattle, WA 98101" +169733,USB-C Charging Cable,1,11.95,02/04/19 16:26,"750 Forest St, Dallas, TX 75001" +169734,Wired Headphones,1,11.99,02/28/19 22:04,"163 South St, Portland, ME 04101" +169735,USB-C Charging Cable,1,11.95,02/18/19 14:48,"686 Lakeview St, Dallas, TX 75001" +169736,Wired Headphones,1,11.99,02/17/19 19:02,"61 12th St, New York City, NY 10001" +169737,AA Batteries (4-pack),1,3.84,02/23/19 17:56,"443 Jackson St, San Francisco, CA 94016" +,,,,, +169738,AA Batteries (4-pack),4,3.84,02/28/19 19:59,"490 14th St, Dallas, TX 75001" +169739,USB-C Charging Cable,1,11.95,02/16/19 02:25,"960 Hickory St, New York City, NY 10001" +169740,Macbook Pro Laptop,1,1700,02/22/19 22:01,"831 6th St, Seattle, WA 98101" +169741,iPhone,1,700,02/05/19 14:57,"669 Spruce St, Atlanta, GA 30301" +169741,Lightning Charging Cable,1,14.95,02/05/19 14:57,"669 Spruce St, Atlanta, GA 30301" +169741,Wired Headphones,1,11.99,02/05/19 14:57,"669 Spruce St, Atlanta, GA 30301" +169742,27in FHD Monitor,1,149.99,02/25/19 10:54,"441 Elm St, Austin, TX 73301" +169743,Apple Airpods Headphones,1,150,02/25/19 13:24,"553 4th St, Seattle, WA 98101" +169744,Lightning Charging Cable,2,14.95,02/12/19 18:33,"830 West St, Boston, MA 02215" +169745,AA Batteries (4-pack),1,3.84,02/22/19 14:03,"621 8th St, Austin, TX 73301" +169746,Apple Airpods Headphones,1,150,02/21/19 10:48,"904 Lake St, Los Angeles, CA 90001" +169747,AAA Batteries (4-pack),1,2.99,02/18/19 17:35,"734 Highland St, San Francisco, CA 94016" +169748,27in FHD Monitor,1,149.99,02/05/19 23:15,"150 Cedar St, Dallas, TX 75001" +169749,Apple Airpods Headphones,1,150,02/27/19 19:57,"444 Elm St, San Francisco, CA 94016" +169750,Macbook Pro Laptop,1,1700,02/22/19 23:04,"830 Sunset St, San Francisco, CA 94016" +169751,Bose SoundSport Headphones,1,99.99,02/06/19 16:39,"693 Highland St, San Francisco, CA 94016" +169752,27in 4K Gaming Monitor,1,389.99,02/10/19 16:47,"617 Main St, Seattle, WA 98101" +169753,AA Batteries (4-pack),1,3.84,02/07/19 10:19,"938 Dogwood St, San Francisco, CA 94016" +169754,AAA Batteries (4-pack),1,2.99,02/11/19 18:38,"749 4th St, San Francisco, CA 94016" +169755,AA Batteries (4-pack),1,3.84,02/15/19 12:01,"177 Main St, Portland, OR 97035" +169756,iPhone,1,700,02/03/19 12:03,"669 Chestnut St, San Francisco, CA 94016" +169757,Wired Headphones,2,11.99,02/26/19 16:02,"395 Lincoln St, New York City, NY 10001" +169758,27in 4K Gaming Monitor,1,389.99,02/16/19 17:50,"441 4th St, San Francisco, CA 94016" +169759,34in Ultrawide Monitor,1,379.99,02/20/19 11:00,"495 Hill St, Dallas, TX 75001" +169760,AA Batteries (4-pack),1,3.84,02/22/19 15:20,"241 Maple St, Dallas, TX 75001" +169761,Apple Airpods Headphones,1,150,02/28/19 19:20,"899 Jefferson St, Seattle, WA 98101" +169762,Wired Headphones,1,11.99,02/02/19 18:17,"277 5th St, Los Angeles, CA 90001" +169763,AAA Batteries (4-pack),3,2.99,02/16/19 10:32,"112 Washington St, San Francisco, CA 94016" +169764,27in 4K Gaming Monitor,1,389.99,02/03/19 00:02,"199 11th St, New York City, NY 10001" +169765,AA Batteries (4-pack),1,3.84,02/02/19 16:29,"75 Meadow St, New York City, NY 10001" +169766,Apple Airpods Headphones,1,150,02/04/19 10:21,"760 4th St, Boston, MA 02215" +169767,AA Batteries (4-pack),1,3.84,02/13/19 21:34,"17 9th St, New York City, NY 10001" +169767,AAA Batteries (4-pack),1,2.99,02/13/19 21:34,"17 9th St, New York City, NY 10001" +169768,34in Ultrawide Monitor,1,379.99,02/23/19 16:59,"931 Madison St, Atlanta, GA 30301" +169769,Lightning Charging Cable,1,14.95,02/26/19 08:15,"949 6th St, Boston, MA 02215" +169770,Wired Headphones,2,11.99,02/12/19 23:04,"463 Maple St, Los Angeles, CA 90001" +169771,Bose SoundSport Headphones,1,99.99,02/11/19 23:30,"473 Highland St, Seattle, WA 98101" +169772,USB-C Charging Cable,1,11.95,02/19/19 20:32,"222 Church St, San Francisco, CA 94016" +169773,27in FHD Monitor,1,149.99,02/18/19 19:07,"666 Cedar St, Boston, MA 02215" +169774,AAA Batteries (4-pack),1,2.99,02/16/19 13:50,"672 Cherry St, Boston, MA 02215" +169775,LG Washing Machine,1,600.0,02/01/19 13:44,"581 14th St, Boston, MA 02215" +169776,Bose SoundSport Headphones,1,99.99,02/18/19 00:52,"8 Wilson St, Dallas, TX 75001" +169777,Wired Headphones,1,11.99,02/22/19 18:15,"971 2nd St, Austin, TX 73301" +169778,27in FHD Monitor,1,149.99,02/21/19 16:27,"487 River St, San Francisco, CA 94016" +169779,USB-C Charging Cable,1,11.95,02/12/19 12:01,"356 Willow St, Seattle, WA 98101" +169780,Bose SoundSport Headphones,1,99.99,02/04/19 17:13,"783 Lincoln St, Atlanta, GA 30301" +169781,34in Ultrawide Monitor,1,379.99,02/06/19 10:20,"377 Lake St, Boston, MA 02215" +169782,iPhone,1,700,02/09/19 21:10,"607 Lakeview St, New York City, NY 10001" +169782,Wired Headphones,1,11.99,02/09/19 21:10,"607 Lakeview St, New York City, NY 10001" +169783,USB-C Charging Cable,1,11.95,02/27/19 20:16,"599 6th St, Dallas, TX 75001" +169784,AAA Batteries (4-pack),3,2.99,02/23/19 16:15,"301 2nd St, Los Angeles, CA 90001" +169785,Google Phone,1,600,02/12/19 14:09,"303 Hill St, Los Angeles, CA 90001" +169786,Wired Headphones,1,11.99,02/01/19 23:42,"393 Highland St, San Francisco, CA 94016" +169787,Google Phone,1,600,02/17/19 13:52,"824 Madison St, Atlanta, GA 30301" +169788,Wired Headphones,1,11.99,02/09/19 09:44,"496 Chestnut St, New York City, NY 10001" +169789,34in Ultrawide Monitor,1,379.99,02/16/19 22:44,"213 6th St, San Francisco, CA 94016" +169790,Lightning Charging Cable,1,14.95,02/23/19 05:09,"973 Cherry St, New York City, NY 10001" +169791,AAA Batteries (4-pack),1,2.99,02/25/19 13:11,"99 7th St, Dallas, TX 75001" +169792,Bose SoundSport Headphones,1,99.99,02/25/19 19:15,"78 West St, Austin, TX 73301" +169793,Bose SoundSport Headphones,1,99.99,02/26/19 15:51,"819 Ridge St, Boston, MA 02215" +169794,Lightning Charging Cable,1,14.95,02/27/19 01:15,"179 Madison St, Austin, TX 73301" +169795,Wired Headphones,1,11.99,02/01/19 16:19,"977 Pine St, Seattle, WA 98101" +169796,Vareebadd Phone,1,400,02/25/19 23:04,"551 Lake St, Dallas, TX 75001" +169797,Bose SoundSport Headphones,1,99.99,02/10/19 19:48,"252 Lincoln St, Austin, TX 73301" +169798,Bose SoundSport Headphones,1,99.99,02/19/19 15:52,"858 Hickory St, San Francisco, CA 94016" +169799,AA Batteries (4-pack),1,3.84,02/26/19 17:07,"240 14th St, New York City, NY 10001" +169800,Apple Airpods Headphones,1,150,02/20/19 15:07,"932 Main St, Los Angeles, CA 90001" +169801,Apple Airpods Headphones,1,150,02/16/19 20:37,"828 2nd St, Austin, TX 73301" +169802,Flatscreen TV,1,300,02/23/19 20:27,"300 4th St, San Francisco, CA 94016" +169803,Vareebadd Phone,1,400,02/15/19 11:54,"450 Lake St, San Francisco, CA 94016" +169804,USB-C Charging Cable,1,11.95,02/04/19 14:37,"955 Center St, Boston, MA 02215" +169805,Bose SoundSport Headphones,1,99.99,02/01/19 20:41,"170 North St, Boston, MA 02215" +169806,AA Batteries (4-pack),2,3.84,02/21/19 12:10,"788 Madison St, Los Angeles, CA 90001" +169807,Apple Airpods Headphones,1,150,02/18/19 16:38,"594 14th St, San Francisco, CA 94016" +169807,Wired Headphones,1,11.99,02/18/19 16:38,"594 14th St, San Francisco, CA 94016" +169808,Lightning Charging Cable,1,14.95,02/08/19 07:45,"840 Lincoln St, Atlanta, GA 30301" +169809,Lightning Charging Cable,1,14.95,02/12/19 21:51,"21 River St, San Francisco, CA 94016" +169809,27in 4K Gaming Monitor,1,389.99,02/12/19 21:51,"21 River St, San Francisco, CA 94016" +169810,Lightning Charging Cable,1,14.95,02/12/19 19:55,"261 Willow St, Boston, MA 02215" +169811,AAA Batteries (4-pack),1,2.99,02/21/19 11:18,"556 Highland St, Seattle, WA 98101" +169812,Bose SoundSport Headphones,1,99.99,02/17/19 12:49,"170 Washington St, Los Angeles, CA 90001" +169813,USB-C Charging Cable,1,11.95,02/26/19 20:15,"153 Elm St, New York City, NY 10001" +169814,AA Batteries (4-pack),1,3.84,02/28/19 12:36,"812 2nd St, Los Angeles, CA 90001" +169815,AAA Batteries (4-pack),1,2.99,02/18/19 19:04,"389 Center St, San Francisco, CA 94016" +169816,Apple Airpods Headphones,1,150,02/01/19 08:35,"620 Walnut St, San Francisco, CA 94016" +169817,20in Monitor,1,109.99,02/20/19 23:08,"628 Sunset St, New York City, NY 10001" +169818,Wired Headphones,1,11.99,02/19/19 00:48,"123 Johnson St, Los Angeles, CA 90001" +169819,iPhone,1,700,02/03/19 08:33,"440 4th St, New York City, NY 10001" +169820,Apple Airpods Headphones,1,150,02/26/19 22:14,"235 North St, New York City, NY 10001" +169821,USB-C Charging Cable,1,11.95,02/10/19 21:22,"592 13th St, Boston, MA 02215" +169822,Lightning Charging Cable,1,14.95,02/18/19 08:39,"518 Chestnut St, New York City, NY 10001" +169823,iPhone,1,700,02/12/19 17:00,"333 Jackson St, New York City, NY 10001" +169824,27in 4K Gaming Monitor,1,389.99,02/07/19 11:33,"132 Cherry St, Los Angeles, CA 90001" +169825,AAA Batteries (4-pack),1,2.99,02/07/19 13:42,"191 Hill St, Seattle, WA 98101" +169826,Wired Headphones,1,11.99,02/20/19 11:31,"281 Johnson St, Dallas, TX 75001" +169827,AAA Batteries (4-pack),1,2.99,02/01/19 16:49,"685 5th St, San Francisco, CA 94016" +169828,Lightning Charging Cable,1,14.95,02/13/19 14:09,"921 Washington St, Los Angeles, CA 90001" +169829,Apple Airpods Headphones,1,150,02/02/19 11:32,"44 Spruce St, San Francisco, CA 94016" +169830,27in 4K Gaming Monitor,1,389.99,02/25/19 15:51,"74 7th St, Seattle, WA 98101" +169831,AAA Batteries (4-pack),2,2.99,02/05/19 10:52,"91 Highland St, San Francisco, CA 94016" +169832,27in FHD Monitor,1,149.99,02/13/19 09:06,"976 14th St, New York City, NY 10001" +169833,USB-C Charging Cable,1,11.95,02/12/19 20:54,"906 Jefferson St, Portland, OR 97035" +169834,Wired Headphones,2,11.99,02/08/19 15:52,"969 Main St, New York City, NY 10001" +169835,34in Ultrawide Monitor,1,379.99,02/16/19 20:49,"396 Madison St, Los Angeles, CA 90001" +169836,Flatscreen TV,1,300,02/17/19 18:58,"964 11th St, New York City, NY 10001" +169837,AAA Batteries (4-pack),2,2.99,02/16/19 10:34,"414 Cedar St, New York City, NY 10001" +169838,AAA Batteries (4-pack),2,2.99,02/23/19 17:45,"9 Dogwood St, Dallas, TX 75001" +169839,AA Batteries (4-pack),2,3.84,02/06/19 13:43,"907 Sunset St, Dallas, TX 75001" +169840,27in 4K Gaming Monitor,1,389.99,02/01/19 21:08,"393 Johnson St, Seattle, WA 98101" +169841,USB-C Charging Cable,1,11.95,02/14/19 22:22,"942 2nd St, Atlanta, GA 30301" +169842,Flatscreen TV,1,300,02/16/19 15:04,"803 5th St, Los Angeles, CA 90001" +169843,USB-C Charging Cable,1,11.95,02/15/19 05:54,"595 Maple St, San Francisco, CA 94016" +169844,Wired Headphones,1,11.99,02/20/19 10:33,"992 1st St, Atlanta, GA 30301" +169845,AA Batteries (4-pack),1,3.84,02/28/19 19:31,"609 Lincoln St, Seattle, WA 98101" +169846,Lightning Charging Cable,1,14.95,02/05/19 23:18,"987 Washington St, New York City, NY 10001" +169847,34in Ultrawide Monitor,1,379.99,02/07/19 22:51,"940 Lincoln St, Los Angeles, CA 90001" +169848,AAA Batteries (4-pack),3,2.99,02/14/19 21:27,"552 Jefferson St, San Francisco, CA 94016" +169849,AA Batteries (4-pack),1,3.84,02/01/19 16:58,"433 Willow St, New York City, NY 10001" +169850,AAA Batteries (4-pack),1,2.99,02/20/19 14:33,"899 Sunset St, San Francisco, CA 94016" +169851,Wired Headphones,1,11.99,02/04/19 16:32,"755 Park St, Atlanta, GA 30301" +169852,Lightning Charging Cable,1,14.95,02/05/19 11:27,"987 5th St, San Francisco, CA 94016" +169853,Apple Airpods Headphones,1,150,02/11/19 01:27,"187 Meadow St, Portland, ME 04101" +169854,AAA Batteries (4-pack),2,2.99,02/07/19 12:31,"477 Highland St, Portland, OR 97035" +169855,iPhone,1,700,02/25/19 09:11,"274 Main St, San Francisco, CA 94016" +169855,Wired Headphones,1,11.99,02/25/19 09:11,"274 Main St, San Francisco, CA 94016" +169856,Bose SoundSport Headphones,1,99.99,02/04/19 22:48,"558 5th St, Dallas, TX 75001" +169857,27in FHD Monitor,1,149.99,02/09/19 15:46,"582 Hickory St, Atlanta, GA 30301" +169858,Apple Airpods Headphones,1,150,02/06/19 09:44,"705 13th St, San Francisco, CA 94016" +169859,34in Ultrawide Monitor,1,379.99,02/21/19 19:40,"439 Madison St, San Francisco, CA 94016" +169860,27in 4K Gaming Monitor,1,389.99,02/06/19 01:44,"448 Spruce St, New York City, NY 10001" +169861,USB-C Charging Cable,1,11.95,02/25/19 16:36,"395 Main St, Seattle, WA 98101" +169862,AAA Batteries (4-pack),1,2.99,02/07/19 11:46,"332 South St, Dallas, TX 75001" +169863,Lightning Charging Cable,1,14.95,02/01/19 10:46,"829 Cherry St, Austin, TX 73301" +169864,Flatscreen TV,1,300,02/16/19 12:42,"467 Chestnut St, San Francisco, CA 94016" +169865,Wired Headphones,2,11.99,02/24/19 20:13,"745 Cedar St, Austin, TX 73301" +169866,AA Batteries (4-pack),1,3.84,02/11/19 14:02,"507 10th St, Atlanta, GA 30301" +169867,Apple Airpods Headphones,1,150,02/07/19 18:45,"118 Lakeview St, San Francisco, CA 94016" +169868,USB-C Charging Cable,2,11.95,02/08/19 18:55,"629 Walnut St, Los Angeles, CA 90001" +169869,AAA Batteries (4-pack),2,2.99,02/16/19 13:56,"15 Lakeview St, Boston, MA 02215" +169870,Bose SoundSport Headphones,1,99.99,02/05/19 08:11,"920 Lake St, Austin, TX 73301" +169871,Lightning Charging Cable,1,14.95,02/27/19 11:04,"243 Lake St, Seattle, WA 98101" +169872,Macbook Pro Laptop,1,1700,02/03/19 11:08,"647 Lake St, Dallas, TX 75001" +169873,27in 4K Gaming Monitor,1,389.99,02/10/19 16:00,"361 Wilson St, New York City, NY 10001" +169874,Apple Airpods Headphones,1,150,02/13/19 22:21,"30 Elm St, San Francisco, CA 94016" +169875,AA Batteries (4-pack),1,3.84,02/05/19 11:32,"161 Elm St, San Francisco, CA 94016" +169876,AA Batteries (4-pack),2,3.84,02/16/19 21:19,"219 Chestnut St, Atlanta, GA 30301" +169877,Lightning Charging Cable,1,14.95,02/07/19 17:37,"708 10th St, Atlanta, GA 30301" +169878,AA Batteries (4-pack),2,3.84,02/26/19 13:10,"148 North St, Atlanta, GA 30301" +169879,Lightning Charging Cable,1,14.95,02/21/19 01:04,"398 Ridge St, San Francisco, CA 94016" +169880,AA Batteries (4-pack),2,3.84,02/22/19 21:21,"31 Maple St, Atlanta, GA 30301" +169881,Wired Headphones,1,11.99,02/07/19 21:52,"773 8th St, New York City, NY 10001" +169882,Lightning Charging Cable,1,14.95,02/13/19 21:40,"899 Sunset St, Boston, MA 02215" +169883,AAA Batteries (4-pack),1,2.99,02/20/19 20:07,"844 Cedar St, Austin, TX 73301" +169884,AAA Batteries (4-pack),1,2.99,02/27/19 21:23,"812 5th St, Atlanta, GA 30301" +169885,iPhone,1,700,02/07/19 12:14,"990 Walnut St, Boston, MA 02215" +169886,USB-C Charging Cable,1,11.95,02/18/19 17:13,"37 Pine St, New York City, NY 10001" +169887,AAA Batteries (4-pack),2,2.99,02/26/19 18:31,"484 Jefferson St, New York City, NY 10001" +169888,AA Batteries (4-pack),2,3.84,02/06/19 06:07,"719 Hill St, New York City, NY 10001" +169889,AA Batteries (4-pack),1,3.84,02/18/19 15:56,"645 Spruce St, Boston, MA 02215" +169890,Wired Headphones,2,11.99,02/10/19 17:43,"967 Cedar St, Los Angeles, CA 90001" +169891,AA Batteries (4-pack),1,3.84,02/01/19 09:47,"838 13th St, Atlanta, GA 30301" +169892,27in FHD Monitor,1,149.99,02/19/19 20:51,"6 River St, San Francisco, CA 94016" +169893,Wired Headphones,1,11.99,02/10/19 17:19,"194 Cherry St, Atlanta, GA 30301" +169894,AA Batteries (4-pack),2,3.84,02/11/19 18:58,"761 7th St, New York City, NY 10001" +169895,Wired Headphones,1,11.99,02/16/19 10:40,"392 River St, New York City, NY 10001" +169896,Google Phone,1,600,02/02/19 05:53,"718 Meadow St, Boston, MA 02215" +169897,AAA Batteries (4-pack),1,2.99,02/10/19 15:46,"692 Chestnut St, Seattle, WA 98101" +169898,USB-C Charging Cable,1,11.95,02/08/19 14:58,"564 6th St, Austin, TX 73301" +169899,AA Batteries (4-pack),2,3.84,02/04/19 23:12,"536 Hickory St, Boston, MA 02215" +169900,AAA Batteries (4-pack),3,2.99,02/03/19 17:08,"394 5th St, San Francisco, CA 94016" +169901,USB-C Charging Cable,1,11.95,02/08/19 18:44,"769 6th St, San Francisco, CA 94016" +169902,27in FHD Monitor,1,149.99,02/24/19 13:49,"303 Jackson St, Seattle, WA 98101" +169903,ThinkPad Laptop,1,999.99,02/15/19 21:31,"690 Ridge St, Boston, MA 02215" +169903,Wired Headphones,1,11.99,02/15/19 21:31,"690 Ridge St, Boston, MA 02215" +169904,Wired Headphones,1,11.99,02/25/19 17:17,"837 13th St, San Francisco, CA 94016" +169905,Bose SoundSport Headphones,1,99.99,02/17/19 16:45,"874 12th St, Atlanta, GA 30301" +169906,USB-C Charging Cable,1,11.95,02/17/19 14:12,"458 Adams St, Dallas, TX 75001" +169907,27in FHD Monitor,1,149.99,02/07/19 17:46,"264 10th St, New York City, NY 10001" +169908,AAA Batteries (4-pack),1,2.99,02/02/19 19:54,"815 Lake St, Dallas, TX 75001" +169909,Wired Headphones,2,11.99,02/10/19 13:26,"982 Center St, New York City, NY 10001" +169910,Lightning Charging Cable,1,14.95,02/28/19 22:56,"104 Center St, San Francisco, CA 94016" +169911,Bose SoundSport Headphones,1,99.99,02/09/19 14:24,"682 Madison St, Boston, MA 02215" +169912,USB-C Charging Cable,1,11.95,02/11/19 16:05,"141 North St, Seattle, WA 98101" +169913,iPhone,1,700,02/16/19 00:04,"178 14th St, Dallas, TX 75001" +169914,AA Batteries (4-pack),2,3.84,02/20/19 11:15,"448 Cherry St, Portland, ME 04101" +169915,USB-C Charging Cable,1,11.95,02/18/19 19:33,"654 South St, San Francisco, CA 94016" +169916,Apple Airpods Headphones,1,150,02/27/19 13:15,"327 12th St, San Francisco, CA 94016" +169917,Lightning Charging Cable,1,14.95,02/23/19 21:32,"893 Cherry St, Los Angeles, CA 90001" +169918,Lightning Charging Cable,1,14.95,02/01/19 09:43,"746 Wilson St, Atlanta, GA 30301" +169919,Wired Headphones,1,11.99,02/27/19 18:10,"496 Chestnut St, Seattle, WA 98101" +169920,Lightning Charging Cable,1,14.95,02/21/19 14:30,"758 Spruce St, Los Angeles, CA 90001" +169921,USB-C Charging Cable,1,11.95,02/07/19 12:11,"117 Center St, San Francisco, CA 94016" +169922,Lightning Charging Cable,1,14.95,02/03/19 21:24,"405 Pine St, Atlanta, GA 30301" +169923,Google Phone,1,600,02/27/19 01:25,"161 7th St, Atlanta, GA 30301" +169924,AAA Batteries (4-pack),1,2.99,02/17/19 13:09,"672 Hickory St, Los Angeles, CA 90001" +169925,Wired Headphones,1,11.99,02/13/19 17:53,"735 Center St, New York City, NY 10001" +169926,USB-C Charging Cable,1,11.95,02/19/19 13:18,"827 12th St, San Francisco, CA 94016" +169927,iPhone,1,700,02/10/19 14:59,"923 Hickory St, Boston, MA 02215" +169928,Wired Headphones,2,11.99,02/27/19 18:57,"913 Lake St, Portland, OR 97035" +169929,Lightning Charging Cable,1,14.95,02/28/19 12:46,"353 4th St, San Francisco, CA 94016" +169930,27in FHD Monitor,1,149.99,02/10/19 21:02,"188 Highland St, Portland, OR 97035" +169931,Wired Headphones,1,11.99,02/08/19 20:20,"758 Adams St, New York City, NY 10001" +169932,Bose SoundSport Headphones,1,99.99,02/13/19 00:00,"688 North St, San Francisco, CA 94016" +169933,AAA Batteries (4-pack),1,2.99,02/09/19 21:57,"849 River St, Atlanta, GA 30301" +169934,Flatscreen TV,1,300,02/22/19 23:51,"108 Dogwood St, Portland, OR 97035" +169935,Lightning Charging Cable,1,14.95,02/07/19 01:01,"686 5th St, Boston, MA 02215" +169936,AAA Batteries (4-pack),8,2.99,02/25/19 11:22,"530 Maple St, New York City, NY 10001" +169937,LG Dryer,1,600.0,02/08/19 18:41,"876 Highland St, Atlanta, GA 30301" +169938,USB-C Charging Cable,1,11.95,02/01/19 21:27,"224 Highland St, San Francisco, CA 94016" +169939,Macbook Pro Laptop,1,1700,02/05/19 10:54,"838 Walnut St, Seattle, WA 98101" +169940,Flatscreen TV,1,300,02/08/19 01:00,"443 Forest St, Austin, TX 73301" +169941,AAA Batteries (4-pack),2,2.99,02/12/19 17:49,"264 Elm St, Dallas, TX 75001" +169942,27in FHD Monitor,1,149.99,02/01/19 12:03,"206 2nd St, Seattle, WA 98101" +169943,ThinkPad Laptop,1,999.99,02/02/19 08:52,"856 Main St, Los Angeles, CA 90001" +169944,27in FHD Monitor,1,149.99,02/13/19 06:31,"643 Washington St, San Francisco, CA 94016" +169945,USB-C Charging Cable,1,11.95,02/22/19 11:12,"615 Lake St, New York City, NY 10001" +169946,Lightning Charging Cable,1,14.95,02/02/19 22:08,"73 Cedar St, New York City, NY 10001" +169947,Wired Headphones,1,11.99,02/10/19 23:12,"615 13th St, New York City, NY 10001" +169948,AAA Batteries (4-pack),1,2.99,02/28/19 17:48,"945 Jefferson St, Boston, MA 02215" +169949,AAA Batteries (4-pack),2,2.99,02/08/19 15:52,"986 Jefferson St, San Francisco, CA 94016" +169950,Macbook Pro Laptop,1,1700,02/14/19 23:06,"679 Chestnut St, New York City, NY 10001" +169951,USB-C Charging Cable,1,11.95,02/17/19 19:12,"728 Hill St, New York City, NY 10001" +169952,AAA Batteries (4-pack),1,2.99,02/14/19 12:50,"36 6th St, San Francisco, CA 94016" +169953,Apple Airpods Headphones,1,150,02/15/19 00:04,"11 5th St, San Francisco, CA 94016" +169954,Apple Airpods Headphones,1,150,03/01/19 01:18,"534 River St, San Francisco, CA 94016" +169955,Lightning Charging Cable,1,14.95,02/02/19 14:23,"300 Highland St, Austin, TX 73301" +169956,Wired Headphones,1,11.99,02/04/19 00:31,"723 Elm St, Boston, MA 02215" +169957,USB-C Charging Cable,1,11.95,02/11/19 14:18,"485 5th St, Los Angeles, CA 90001" +169958,AAA Batteries (4-pack),1,2.99,02/10/19 22:27,"763 7th St, San Francisco, CA 94016" +169959,Bose SoundSport Headphones,1,99.99,02/21/19 15:00,"989 Meadow St, Los Angeles, CA 90001" +169960,27in FHD Monitor,1,149.99,02/04/19 23:47,"412 Lincoln St, Austin, TX 73301" +169961,Lightning Charging Cable,1,14.95,02/08/19 13:29,"900 Center St, San Francisco, CA 94016" +169962,USB-C Charging Cable,1,11.95,02/06/19 13:01,"498 Willow St, Dallas, TX 75001" +169963,AAA Batteries (4-pack),1,2.99,02/15/19 17:19,"547 Church St, Dallas, TX 75001" +169964,Lightning Charging Cable,1,14.95,02/02/19 11:24,"237 Chestnut St, Atlanta, GA 30301" +169965,USB-C Charging Cable,1,11.95,02/01/19 20:49,"797 South St, San Francisco, CA 94016" +169966,AA Batteries (4-pack),1,3.84,02/07/19 19:16,"557 8th St, Los Angeles, CA 90001" +169967,Lightning Charging Cable,1,14.95,02/20/19 07:13,"927 Church St, Dallas, TX 75001" +169968,USB-C Charging Cable,1,11.95,02/10/19 12:06,"809 Lakeview St, Boston, MA 02215" +169969,Wired Headphones,1,11.99,02/13/19 15:53,"547 Park St, San Francisco, CA 94016" +169970,Lightning Charging Cable,1,14.95,02/13/19 16:44,"993 Lake St, San Francisco, CA 94016" +169971,Macbook Pro Laptop,1,1700,02/12/19 16:56,"249 Lincoln St, New York City, NY 10001" +169972,Bose SoundSport Headphones,1,99.99,02/05/19 18:10,"918 Lakeview St, Seattle, WA 98101" +169973,Wired Headphones,1,11.99,02/24/19 11:07,"914 11th St, Boston, MA 02215" +169974,AAA Batteries (4-pack),1,2.99,02/16/19 13:47,"204 Madison St, San Francisco, CA 94016" +169975,AA Batteries (4-pack),2,3.84,02/03/19 22:10,"875 8th St, Austin, TX 73301" +169975,Wired Headphones,1,11.99,02/03/19 22:10,"875 8th St, Austin, TX 73301" +169976,Bose SoundSport Headphones,1,99.99,02/04/19 08:23,"859 Johnson St, Los Angeles, CA 90001" +169977,27in FHD Monitor,1,149.99,02/01/19 07:21,"145 Chestnut St, Atlanta, GA 30301" +169978,AAA Batteries (4-pack),2,2.99,02/16/19 09:54,"434 Cherry St, Los Angeles, CA 90001" +169979,iPhone,1,700,02/28/19 22:28,"975 Wilson St, New York City, NY 10001" +169979,Apple Airpods Headphones,1,150,02/28/19 22:28,"975 Wilson St, New York City, NY 10001" +169980,iPhone,1,700,02/02/19 17:58,"732 Johnson St, Austin, TX 73301" +169981,27in FHD Monitor,1,149.99,02/12/19 10:25,"22 12th St, Portland, OR 97035" +169982,AA Batteries (4-pack),1,3.84,02/03/19 10:09,"508 Hickory St, Los Angeles, CA 90001" +169983,AAA Batteries (4-pack),1,2.99,02/12/19 10:56,"196 North St, Boston, MA 02215" +169984,AAA Batteries (4-pack),1,2.99,02/17/19 09:13,"259 Johnson St, San Francisco, CA 94016" +169985,USB-C Charging Cable,1,11.95,02/11/19 07:09,"801 8th St, Boston, MA 02215" +169986,USB-C Charging Cable,1,11.95,02/15/19 12:26,"673 Jackson St, Boston, MA 02215" +169987,Lightning Charging Cable,1,14.95,02/04/19 10:08,"344 Jackson St, San Francisco, CA 94016" +169988,Bose SoundSport Headphones,1,99.99,02/07/19 08:21,"515 Elm St, Portland, OR 97035" +169989,AAA Batteries (4-pack),2,2.99,02/11/19 21:51,"226 Hickory St, New York City, NY 10001" +169990,AAA Batteries (4-pack),2,2.99,02/02/19 13:43,"7 8th St, Portland, OR 97035" +169991,Lightning Charging Cable,1,14.95,02/18/19 20:21,"789 1st St, San Francisco, CA 94016" +169992,Flatscreen TV,1,300,02/26/19 15:12,"260 Maple St, San Francisco, CA 94016" +169993,Apple Airpods Headphones,1,150,02/02/19 16:53,"427 Maple St, Portland, OR 97035" +169994,Wired Headphones,1,11.99,02/15/19 13:25,"469 Hickory St, San Francisco, CA 94016" +169995,USB-C Charging Cable,1,11.95,02/07/19 16:52,"450 Chestnut St, San Francisco, CA 94016" +169996,AA Batteries (4-pack),2,3.84,02/12/19 12:44,"542 Highland St, San Francisco, CA 94016" +169997,27in 4K Gaming Monitor,1,389.99,02/13/19 17:03,"471 8th St, San Francisco, CA 94016" +169998,LG Dryer,1,600.0,02/09/19 07:55,"711 North St, Los Angeles, CA 90001" +169999,AA Batteries (4-pack),1,3.84,02/02/19 16:36,"701 4th St, Dallas, TX 75001" +170000,AAA Batteries (4-pack),1,2.99,02/13/19 06:05,"573 Wilson St, San Francisco, CA 94016" +170001,AA Batteries (4-pack),1,3.84,02/12/19 10:19,"934 Center St, New York City, NY 10001" +170002,Macbook Pro Laptop,1,1700,02/13/19 11:55,"394 Sunset St, San Francisco, CA 94016" +170003,AA Batteries (4-pack),1,3.84,02/05/19 12:33,"114 11th St, New York City, NY 10001" +170004,AA Batteries (4-pack),1,3.84,02/10/19 07:35,"720 Main St, Los Angeles, CA 90001" +170005,Bose SoundSport Headphones,1,99.99,02/11/19 16:16,"116 2nd St, Boston, MA 02215" +170006,20in Monitor,1,109.99,02/24/19 15:19,"556 Wilson St, Atlanta, GA 30301" +170007,USB-C Charging Cable,1,11.95,02/13/19 13:00,"995 Highland St, San Francisco, CA 94016" +170008,34in Ultrawide Monitor,1,379.99,02/22/19 17:26,"823 Jefferson St, Atlanta, GA 30301" +170009,USB-C Charging Cable,1,11.95,02/18/19 20:57,"841 8th St, Portland, OR 97035" +170010,Apple Airpods Headphones,1,150,02/15/19 13:58,"125 North St, Austin, TX 73301" +170011,AA Batteries (4-pack),1,3.84,02/24/19 17:17,"552 Washington St, Portland, ME 04101" +170012,AA Batteries (4-pack),1,3.84,02/13/19 23:30,"467 Chestnut St, San Francisco, CA 94016" +170013,USB-C Charging Cable,1,11.95,02/11/19 18:29,"71 Madison St, Dallas, TX 75001" +170014,Wired Headphones,1,11.99,02/10/19 18:27,"574 Highland St, San Francisco, CA 94016" +170015,Flatscreen TV,1,300,02/07/19 18:25,"757 Johnson St, New York City, NY 10001" +170016,Lightning Charging Cable,1,14.95,02/20/19 13:06,"344 Jefferson St, Los Angeles, CA 90001" +170017,Bose SoundSport Headphones,1,99.99,02/10/19 15:04,"39 Church St, Los Angeles, CA 90001" +170018,USB-C Charging Cable,1,11.95,02/14/19 06:39,"641 5th St, San Francisco, CA 94016" +170019,USB-C Charging Cable,1,11.95,02/25/19 16:04,"981 2nd St, Portland, OR 97035" +170020,Lightning Charging Cable,1,14.95,02/27/19 21:09,"153 12th St, Los Angeles, CA 90001" +170021,Google Phone,1,600,02/20/19 16:44,"413 7th St, Boston, MA 02215" +170021,USB-C Charging Cable,1,11.95,02/20/19 16:44,"413 7th St, Boston, MA 02215" +170022,27in 4K Gaming Monitor,1,389.99,02/04/19 18:27,"86 Meadow St, Los Angeles, CA 90001" +170023,AA Batteries (4-pack),1,3.84,02/19/19 20:57,"356 Lincoln St, Seattle, WA 98101" +170024,Google Phone,1,600,02/16/19 15:19,"831 Main St, San Francisco, CA 94016" +170025,Google Phone,1,600,02/08/19 20:54,"903 12th St, Austin, TX 73301" +170026,USB-C Charging Cable,1,11.95,02/03/19 06:56,"95 South St, Seattle, WA 98101" +170027,Macbook Pro Laptop,1,1700,02/17/19 11:41,"119 Jackson St, San Francisco, CA 94016" +170028,Macbook Pro Laptop,1,1700,02/01/19 17:27,"414 Church St, Boston, MA 02215" +170029,LG Washing Machine,1,600.0,02/08/19 14:40,"276 Lake St, Portland, ME 04101" +170030,27in FHD Monitor,1,149.99,02/23/19 21:29,"913 South St, San Francisco, CA 94016" +170031,ThinkPad Laptop,1,999.99,02/24/19 23:54,"335 13th St, Dallas, TX 75001" +170032,Apple Airpods Headphones,1,150,02/20/19 02:11,"689 Jefferson St, Boston, MA 02215" +170033,AAA Batteries (4-pack),1,2.99,02/17/19 23:27,"145 7th St, New York City, NY 10001" +170034,USB-C Charging Cable,1,11.95,02/23/19 13:01,"212 Jefferson St, New York City, NY 10001" +170035,Macbook Pro Laptop,1,1700,02/08/19 00:47,"790 Adams St, San Francisco, CA 94016" +170036,Wired Headphones,1,11.99,02/26/19 21:44,"881 Elm St, Boston, MA 02215" +170037,Wired Headphones,2,11.99,02/27/19 22:27,"158 Cedar St, Portland, OR 97035" +170038,Google Phone,1,600,02/04/19 10:20,"397 Willow St, San Francisco, CA 94016" +170039,Wired Headphones,1,11.99,02/09/19 19:26,"934 Park St, Los Angeles, CA 90001" +170040,AA Batteries (4-pack),2,3.84,02/17/19 17:30,"401 1st St, Los Angeles, CA 90001" +170041,Wired Headphones,1,11.99,02/04/19 17:47,"447 Meadow St, Portland, OR 97035" +170042,Apple Airpods Headphones,1,150,02/21/19 20:32,"211 River St, Atlanta, GA 30301" +170043,USB-C Charging Cable,2,11.95,02/25/19 10:47,"363 11th St, Portland, OR 97035" +170044,ThinkPad Laptop,1,999.99,02/12/19 19:35,"21 Chestnut St, San Francisco, CA 94016" +170045,Bose SoundSport Headphones,1,99.99,02/19/19 23:03,"514 West St, Boston, MA 02215" +170046,Bose SoundSport Headphones,1,99.99,02/16/19 20:39,"919 Hill St, Austin, TX 73301" +170047,Lightning Charging Cable,1,14.95,02/11/19 16:40,"942 Willow St, Seattle, WA 98101" +170048,Lightning Charging Cable,2,14.95,02/27/19 17:59,"171 5th St, Boston, MA 02215" +170049,Apple Airpods Headphones,1,150,02/27/19 14:46,"760 Sunset St, San Francisco, CA 94016" +170050,AA Batteries (4-pack),1,3.84,02/14/19 10:27,"59 11th St, San Francisco, CA 94016" +170051,Wired Headphones,1,11.99,02/08/19 00:55,"229 Cherry St, San Francisco, CA 94016" +170052,USB-C Charging Cable,1,11.95,02/24/19 17:34,"713 10th St, San Francisco, CA 94016" +170053,Apple Airpods Headphones,1,150,02/12/19 18:36,"581 Spruce St, Seattle, WA 98101" +170054,Lightning Charging Cable,1,14.95,02/24/19 09:36,"694 West St, New York City, NY 10001" +170055,AAA Batteries (4-pack),1,2.99,02/27/19 14:21,"736 6th St, San Francisco, CA 94016" +170056,AA Batteries (4-pack),1,3.84,02/06/19 15:50,"292 Lakeview St, New York City, NY 10001" +170057,AAA Batteries (4-pack),1,2.99,02/04/19 16:38,"5 12th St, Atlanta, GA 30301" +170058,Lightning Charging Cable,1,14.95,02/23/19 23:38,"238 Hill St, Austin, TX 73301" +170059,Lightning Charging Cable,1,14.95,02/17/19 17:42,"82 Highland St, Austin, TX 73301" +170060,iPhone,1,700,02/04/19 10:52,"581 Spruce St, Los Angeles, CA 90001" +170061,Lightning Charging Cable,1,14.95,02/02/19 20:03,"108 Hill St, San Francisco, CA 94016" +170062,Lightning Charging Cable,1,14.95,02/06/19 19:27,"74 Sunset St, New York City, NY 10001" +170063,Google Phone,1,600,02/08/19 15:51,"226 South St, San Francisco, CA 94016" +170063,Wired Headphones,1,11.99,02/08/19 15:51,"226 South St, San Francisco, CA 94016" +170064,Wired Headphones,1,11.99,02/08/19 11:57,"318 Cedar St, San Francisco, CA 94016" +170065,27in FHD Monitor,1,149.99,02/23/19 06:24,"335 Madison St, Portland, OR 97035" +170066,AA Batteries (4-pack),1,3.84,02/24/19 22:34,"603 Johnson St, San Francisco, CA 94016" +170067,Macbook Pro Laptop,1,1700,02/01/19 09:17,"57 Hickory St, San Francisco, CA 94016" +170068,Wired Headphones,2,11.99,02/13/19 20:58,"516 8th St, San Francisco, CA 94016" +170069,Bose SoundSport Headphones,1,99.99,02/01/19 22:40,"877 North St, Atlanta, GA 30301" +170070,Google Phone,1,600,02/12/19 03:26,"797 Sunset St, Los Angeles, CA 90001" +170071,Lightning Charging Cable,1,14.95,02/10/19 12:52,"898 Cherry St, New York City, NY 10001" +170072,Bose SoundSport Headphones,1,99.99,02/05/19 20:36,"530 Park St, Dallas, TX 75001" +170073,Wired Headphones,1,11.99,02/11/19 18:43,"283 13th St, Atlanta, GA 30301" +170074,Lightning Charging Cable,2,14.95,02/15/19 21:40,"989 Elm St, Austin, TX 73301" +170075,Apple Airpods Headphones,1,150,02/25/19 15:50,"654 Chestnut St, Los Angeles, CA 90001" +170076,27in FHD Monitor,1,149.99,02/14/19 11:25,"987 Spruce St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +170077,20in Monitor,1,109.99,02/03/19 06:32,"251 9th St, Dallas, TX 75001" +170078,Lightning Charging Cable,1,14.95,02/02/19 11:49,"445 Hill St, Seattle, WA 98101" +170079,27in FHD Monitor,1,149.99,02/03/19 16:42,"721 5th St, Dallas, TX 75001" +170080,Apple Airpods Headphones,1,150,02/23/19 09:06,"297 Main St, San Francisco, CA 94016" +170081,Macbook Pro Laptop,1,1700,02/26/19 18:37,"752 9th St, Atlanta, GA 30301" +170082,AA Batteries (4-pack),3,3.84,02/09/19 20:03,"728 Lakeview St, Atlanta, GA 30301" +170083,Bose SoundSport Headphones,1,99.99,02/27/19 02:00,"943 Forest St, San Francisco, CA 94016" +170084,Wired Headphones,1,11.99,02/21/19 08:25,"141 2nd St, New York City, NY 10001" +170085,Flatscreen TV,1,300,02/24/19 08:41,"74 8th St, San Francisco, CA 94016" +170086,27in FHD Monitor,1,149.99,02/25/19 22:49,"398 Meadow St, Boston, MA 02215" +170087,Flatscreen TV,1,300,02/24/19 18:54,"980 Hill St, San Francisco, CA 94016" +170088,USB-C Charging Cable,1,11.95,02/20/19 14:18,"737 Park St, San Francisco, CA 94016" +170089,34in Ultrawide Monitor,1,379.99,02/05/19 16:32,"733 4th St, Dallas, TX 75001" +170090,Wired Headphones,2,11.99,02/08/19 14:27,"485 Adams St, Los Angeles, CA 90001" +170091,Wired Headphones,1,11.99,02/16/19 11:30,"383 7th St, Boston, MA 02215" +170092,USB-C Charging Cable,1,11.95,02/19/19 20:58,"657 Center St, Dallas, TX 75001" +170093,AA Batteries (4-pack),1,3.84,02/16/19 21:32,"268 Ridge St, Los Angeles, CA 90001" +170094,ThinkPad Laptop,1,999.99,02/14/19 10:38,"188 Forest St, San Francisco, CA 94016" +170095,Wired Headphones,1,11.99,02/28/19 19:19,"620 5th St, San Francisco, CA 94016" +170096,AAA Batteries (4-pack),1,2.99,02/07/19 19:07,"298 Pine St, San Francisco, CA 94016" +170097,AA Batteries (4-pack),2,3.84,02/07/19 11:20,"514 Maple St, Atlanta, GA 30301" +170098,AA Batteries (4-pack),2,3.84,02/10/19 15:12,"524 7th St, Los Angeles, CA 90001" +170099,iPhone,1,700,02/10/19 17:53,"454 Adams St, San Francisco, CA 94016" +170100,AAA Batteries (4-pack),1,2.99,02/26/19 11:58,"148 4th St, Dallas, TX 75001" +170101,Lightning Charging Cable,1,14.95,02/02/19 20:28,"246 Lakeview St, San Francisco, CA 94016" +170102,Lightning Charging Cable,2,14.95,02/27/19 13:09,"216 Lakeview St, Los Angeles, CA 90001" +170103,Wired Headphones,1,11.99,02/26/19 19:18,"510 Lake St, Atlanta, GA 30301" +170104,34in Ultrawide Monitor,1,379.99,02/05/19 16:45,"487 River St, San Francisco, CA 94016" +170105,Bose SoundSport Headphones,1,99.99,02/07/19 18:48,"179 Highland St, Los Angeles, CA 90001" +170106,Wired Headphones,1,11.99,02/09/19 05:51,"805 Park St, New York City, NY 10001" +170107,27in FHD Monitor,1,149.99,02/10/19 15:38,"181 Cherry St, Seattle, WA 98101" +170108,Apple Airpods Headphones,1,150,02/20/19 20:21,"76 Jefferson St, Portland, OR 97035" +170109,Wired Headphones,1,11.99,02/01/19 23:04,"379 River St, Seattle, WA 98101" +170110,AAA Batteries (4-pack),1,2.99,02/19/19 01:31,"450 Maple St, Atlanta, GA 30301" +170111,Apple Airpods Headphones,1,150,02/28/19 22:19,"707 2nd St, New York City, NY 10001" +170112,Macbook Pro Laptop,1,1700,02/27/19 11:41,"979 Meadow St, Dallas, TX 75001" +170113,Lightning Charging Cable,1,14.95,02/14/19 16:55,"335 Sunset St, New York City, NY 10001" +170114,20in Monitor,1,109.99,02/19/19 13:49,"120 Center St, Dallas, TX 75001" +170115,Flatscreen TV,1,300,02/01/19 20:30,"914 South St, Austin, TX 73301" +170116,Vareebadd Phone,1,400,02/21/19 14:22,"737 Cedar St, New York City, NY 10001" +170117,USB-C Charging Cable,1,11.95,02/16/19 11:05,"883 Wilson St, Seattle, WA 98101" +170118,27in 4K Gaming Monitor,1,389.99,02/24/19 10:00,"643 Willow St, New York City, NY 10001" +170119,Apple Airpods Headphones,1,150,02/21/19 10:18,"284 Park St, Los Angeles, CA 90001" +170120,Bose SoundSport Headphones,1,99.99,02/20/19 17:45,"615 1st St, Los Angeles, CA 90001" +170121,Macbook Pro Laptop,1,1700,02/13/19 07:53,"19 9th St, Los Angeles, CA 90001" +170122,Wired Headphones,1,11.99,02/11/19 12:01,"935 7th St, Portland, OR 97035" +170123,27in 4K Gaming Monitor,1,389.99,02/21/19 17:46,"212 West St, Boston, MA 02215" +170124,iPhone,1,700,02/20/19 11:09,"135 4th St, New York City, NY 10001" +170125,AA Batteries (4-pack),3,3.84,02/25/19 23:27,"438 Church St, Boston, MA 02215" +170126,Lightning Charging Cable,1,14.95,02/25/19 10:02,"50 Cedar St, New York City, NY 10001" +170126,Macbook Pro Laptop,1,1700,02/25/19 10:02,"50 Cedar St, New York City, NY 10001" +170127,27in FHD Monitor,1,149.99,02/09/19 17:00,"909 Ridge St, Los Angeles, CA 90001" +170128,Flatscreen TV,1,300,02/28/19 21:49,"598 4th St, Portland, OR 97035" +170129,USB-C Charging Cable,1,11.95,02/22/19 17:32,"964 Spruce St, Los Angeles, CA 90001" +170130,ThinkPad Laptop,1,999.99,02/08/19 23:46,"582 River St, San Francisco, CA 94016" +170131,27in 4K Gaming Monitor,1,389.99,02/23/19 20:36,"423 2nd St, Los Angeles, CA 90001" +170132,27in FHD Monitor,1,149.99,02/27/19 14:50,"321 Jefferson St, Seattle, WA 98101" +170133,AAA Batteries (4-pack),1,2.99,02/06/19 23:57,"32 Lakeview St, San Francisco, CA 94016" +170134,Google Phone,1,600,02/22/19 22:40,"558 Elm St, Dallas, TX 75001" +170134,Bose SoundSport Headphones,1,99.99,02/22/19 22:40,"558 Elm St, Dallas, TX 75001" +170134,Wired Headphones,1,11.99,02/22/19 22:40,"558 Elm St, Dallas, TX 75001" +170135,AA Batteries (4-pack),1,3.84,02/14/19 11:00,"106 9th St, Los Angeles, CA 90001" +170136,Lightning Charging Cable,1,14.95,02/25/19 01:30,"30 Main St, San Francisco, CA 94016" +170137,USB-C Charging Cable,1,11.95,02/27/19 18:29,"448 Cedar St, Dallas, TX 75001" +170138,AA Batteries (4-pack),1,3.84,02/16/19 22:52,"452 7th St, Dallas, TX 75001" +170139,AA Batteries (4-pack),1,3.84,02/27/19 12:46,"79 13th St, Portland, OR 97035" +170140,Wired Headphones,1,11.99,02/11/19 12:41,"145 Jefferson St, Los Angeles, CA 90001" +170141,AA Batteries (4-pack),1,3.84,02/10/19 10:45,"18 Chestnut St, Seattle, WA 98101" +170142,34in Ultrawide Monitor,1,379.99,02/11/19 18:29,"956 1st St, San Francisco, CA 94016" +170143,Lightning Charging Cable,1,14.95,02/06/19 15:27,"170 Main St, Los Angeles, CA 90001" +170144,Bose SoundSport Headphones,1,99.99,02/25/19 12:58,"259 Walnut St, Dallas, TX 75001" +170145,Lightning Charging Cable,1,14.95,02/14/19 21:18,"62 2nd St, San Francisco, CA 94016" +170146,Lightning Charging Cable,2,14.95,02/25/19 15:40,"763 Lake St, Dallas, TX 75001" +170147,Bose SoundSport Headphones,1,99.99,02/22/19 21:32,"797 2nd St, Portland, ME 04101" +170148,AA Batteries (4-pack),3,3.84,02/05/19 00:54,"414 Cherry St, New York City, NY 10001" +170149,LG Washing Machine,1,600.0,02/26/19 21:47,"27 Center St, Boston, MA 02215" +170150,USB-C Charging Cable,1,11.95,02/28/19 12:42,"415 Willow St, Los Angeles, CA 90001" +170151,AA Batteries (4-pack),2,3.84,02/12/19 23:15,"79 Meadow St, Los Angeles, CA 90001" +170152,27in FHD Monitor,1,149.99,02/12/19 16:53,"473 5th St, San Francisco, CA 94016" +170153,Macbook Pro Laptop,1,1700,02/25/19 18:07,"906 Sunset St, Austin, TX 73301" +170154,USB-C Charging Cable,1,11.95,02/01/19 15:45,"336 Jackson St, Seattle, WA 98101" +170155,AA Batteries (4-pack),2,3.84,02/21/19 13:04,"138 Walnut St, Boston, MA 02215" +170156,Lightning Charging Cable,1,14.95,02/28/19 08:34,"317 Highland St, Dallas, TX 75001" +170157,Wired Headphones,1,11.99,02/20/19 10:56,"442 10th St, San Francisco, CA 94016" +170158,Lightning Charging Cable,2,14.95,02/06/19 17:35,"868 North St, Dallas, TX 75001" +170159,Wired Headphones,1,11.99,02/11/19 10:40,"401 5th St, Portland, OR 97035" +170160,27in FHD Monitor,1,149.99,02/13/19 13:59,"999 1st St, San Francisco, CA 94016" +170161,Lightning Charging Cable,1,14.95,02/10/19 22:07,"56 Hill St, Seattle, WA 98101" +170162,27in 4K Gaming Monitor,1,389.99,02/02/19 23:48,"516 Madison St, Austin, TX 73301" +170163,Lightning Charging Cable,1,14.95,02/13/19 13:04,"274 Pine St, Boston, MA 02215" +170164,Bose SoundSport Headphones,1,99.99,02/27/19 13:31,"358 7th St, Los Angeles, CA 90001" +170165,Google Phone,1,600,02/13/19 13:49,"20 Park St, San Francisco, CA 94016" +170165,USB-C Charging Cable,1,11.95,02/13/19 13:49,"20 Park St, San Francisco, CA 94016" +170166,USB-C Charging Cable,1,11.95,02/17/19 22:32,"102 Dogwood St, Los Angeles, CA 90001" +170167,AA Batteries (4-pack),1,3.84,02/25/19 07:22,"860 6th St, Austin, TX 73301" +170168,AAA Batteries (4-pack),2,2.99,02/01/19 11:13,"946 Center St, San Francisco, CA 94016" +170169,AAA Batteries (4-pack),1,2.99,02/25/19 16:02,"345 Wilson St, San Francisco, CA 94016" +170170,Wired Headphones,1,11.99,02/01/19 18:17,"829 Forest St, San Francisco, CA 94016" +170171,Bose SoundSport Headphones,1,99.99,02/19/19 18:28,"830 Chestnut St, Boston, MA 02215" +170172,27in FHD Monitor,1,149.99,02/02/19 09:49,"864 4th St, Portland, OR 97035" +170173,AAA Batteries (4-pack),1,2.99,02/15/19 11:40,"250 Sunset St, Seattle, WA 98101" +170174,Wired Headphones,1,11.99,02/15/19 13:54,"888 14th St, Boston, MA 02215" +170175,Apple Airpods Headphones,1,150,02/03/19 11:06,"918 Hill St, Los Angeles, CA 90001" +170176,Macbook Pro Laptop,1,1700,02/18/19 21:01,"504 Church St, Seattle, WA 98101" +170177,34in Ultrawide Monitor,1,379.99,02/26/19 12:05,"309 Dogwood St, Portland, OR 97035" +170178,AAA Batteries (4-pack),1,2.99,02/01/19 12:17,"689 1st St, New York City, NY 10001" +170179,USB-C Charging Cable,1,11.95,02/26/19 10:34,"430 7th St, Dallas, TX 75001" +170180,27in FHD Monitor,1,149.99,02/14/19 15:46,"578 Walnut St, San Francisco, CA 94016" +170180,USB-C Charging Cable,1,11.95,02/14/19 15:46,"578 Walnut St, San Francisco, CA 94016" +170181,Google Phone,1,600,02/06/19 14:42,"464 4th St, New York City, NY 10001" +170181,Wired Headphones,1,11.99,02/06/19 14:42,"464 4th St, New York City, NY 10001" +170182,AA Batteries (4-pack),1,3.84,02/16/19 18:07,"814 Cherry St, New York City, NY 10001" +170183,AA Batteries (4-pack),1,3.84,02/03/19 23:00,"880 13th St, San Francisco, CA 94016" +170184,Flatscreen TV,1,300,02/07/19 14:31,"694 Church St, San Francisco, CA 94016" +170185,Apple Airpods Headphones,1,150,02/21/19 12:55,"297 Maple St, Dallas, TX 75001" +170186,Macbook Pro Laptop,1,1700,02/04/19 09:52,"171 Chestnut St, Los Angeles, CA 90001" +170187,AA Batteries (4-pack),1,3.84,02/21/19 13:50,"36 Jackson St, San Francisco, CA 94016" +170188,USB-C Charging Cable,1,11.95,02/02/19 18:30,"592 6th St, New York City, NY 10001" +170189,Wired Headphones,1,11.99,02/15/19 14:46,"436 Church St, San Francisco, CA 94016" +170190,34in Ultrawide Monitor,1,379.99,02/03/19 14:20,"994 Sunset St, Dallas, TX 75001" +170191,AAA Batteries (4-pack),1,2.99,02/06/19 14:59,"676 14th St, Portland, OR 97035" +170192,Apple Airpods Headphones,1,150,02/22/19 09:16,"57 11th St, San Francisco, CA 94016" +170193,AAA Batteries (4-pack),1,2.99,02/26/19 11:47,"297 1st St, Austin, TX 73301" +170194,Lightning Charging Cable,1,14.95,02/15/19 14:47,"239 Lake St, Portland, OR 97035" +170195,Apple Airpods Headphones,1,150,02/27/19 17:21,"819 11th St, Los Angeles, CA 90001" +170196,AAA Batteries (4-pack),2,2.99,02/02/19 16:01,"823 12th St, Los Angeles, CA 90001" +170197,Apple Airpods Headphones,2,150,02/06/19 09:44,"994 River St, New York City, NY 10001" +170198,AAA Batteries (4-pack),1,2.99,02/24/19 18:43,"811 Center St, Dallas, TX 75001" +170199,Bose SoundSport Headphones,1,99.99,02/20/19 21:27,"863 North St, New York City, NY 10001" +170200,USB-C Charging Cable,1,11.95,02/27/19 18:28,"151 Johnson St, Atlanta, GA 30301" +170201,Flatscreen TV,1,300,02/14/19 20:30,"867 Hill St, Los Angeles, CA 90001" +170202,USB-C Charging Cable,1,11.95,02/05/19 14:18,"457 Ridge St, Boston, MA 02215" +170203,AA Batteries (4-pack),1,3.84,02/24/19 22:09,"341 7th St, Los Angeles, CA 90001" +170204,USB-C Charging Cable,1,11.95,02/09/19 16:15,"80 10th St, New York City, NY 10001" +170205,AA Batteries (4-pack),1,3.84,02/08/19 21:28,"620 Dogwood St, San Francisco, CA 94016" +170206,Bose SoundSport Headphones,1,99.99,02/28/19 14:18,"320 13th St, San Francisco, CA 94016" +170207,Apple Airpods Headphones,1,150,02/12/19 15:56,"208 Lake St, Los Angeles, CA 90001" +170208,AA Batteries (4-pack),1,3.84,02/22/19 22:45,"270 Lake St, New York City, NY 10001" +170209,iPhone,1,700,02/25/19 17:57,"612 4th St, Austin, TX 73301" +170209,Apple Airpods Headphones,1,150,02/25/19 17:57,"612 4th St, Austin, TX 73301" +170210,USB-C Charging Cable,1,11.95,02/12/19 11:26,"174 14th St, Portland, OR 97035" +170211,Apple Airpods Headphones,1,150,02/24/19 10:01,"892 Spruce St, Seattle, WA 98101" +170212,ThinkPad Laptop,1,999.99,02/18/19 17:40,"569 Washington St, New York City, NY 10001" +170213,27in FHD Monitor,1,149.99,02/25/19 22:02,"45 Jackson St, San Francisco, CA 94016" +170214,Apple Airpods Headphones,1,150,02/23/19 09:07,"153 River St, Dallas, TX 75001" +170215,Wired Headphones,1,11.99,02/14/19 16:28,"971 Cherry St, Los Angeles, CA 90001" +170216,USB-C Charging Cable,1,11.95,02/03/19 09:17,"436 Adams St, Portland, OR 97035" +170217,Wired Headphones,1,11.99,02/09/19 12:12,"532 West St, New York City, NY 10001" +170218,27in FHD Monitor,1,149.99,02/17/19 17:21,"823 Pine St, Boston, MA 02215" +170219,Macbook Pro Laptop,1,1700,02/10/19 12:43,"69 7th St, Los Angeles, CA 90001" +170220,USB-C Charging Cable,1,11.95,02/26/19 15:04,"515 Sunset St, San Francisco, CA 94016" +170220,AA Batteries (4-pack),1,3.84,02/26/19 15:04,"515 Sunset St, San Francisco, CA 94016" +170221,Apple Airpods Headphones,1,150,02/16/19 20:31,"328 River St, Boston, MA 02215" +170222,AAA Batteries (4-pack),3,2.99,02/14/19 01:42,"341 Dogwood St, Los Angeles, CA 90001" +170223,Lightning Charging Cable,1,14.95,02/25/19 19:59,"707 Pine St, San Francisco, CA 94016" +170224,Apple Airpods Headphones,1,150,02/07/19 08:30,"341 Park St, New York City, NY 10001" +170225,AA Batteries (4-pack),1,3.84,02/19/19 16:12,"690 Pine St, Boston, MA 02215" +170226,AAA Batteries (4-pack),2,2.99,02/12/19 13:51,"413 Lincoln St, New York City, NY 10001" +170227,USB-C Charging Cable,1,11.95,02/27/19 15:18,"926 Park St, Los Angeles, CA 90001" +170228,Apple Airpods Headphones,1,150,02/09/19 12:16,"472 Meadow St, San Francisco, CA 94016" +170229,Flatscreen TV,1,300,02/11/19 15:21,"943 Chestnut St, Boston, MA 02215" +170230,Apple Airpods Headphones,1,150,02/17/19 06:23,"248 Maple St, Los Angeles, CA 90001" +170231,USB-C Charging Cable,2,11.95,02/25/19 00:01,"19 Cherry St, Boston, MA 02215" +170232,Macbook Pro Laptop,1,1700,02/22/19 20:06,"536 Main St, Atlanta, GA 30301" +170233,iPhone,1,700,02/09/19 15:12,"529 Park St, Boston, MA 02215" +170234,20in Monitor,1,109.99,02/05/19 17:32,"235 Spruce St, Atlanta, GA 30301" +170235,Google Phone,1,600,02/09/19 23:11,"81 Maple St, Atlanta, GA 30301" +170236,Apple Airpods Headphones,1,150,02/18/19 19:38,"461 6th St, San Francisco, CA 94016" +170237,USB-C Charging Cable,1,11.95,02/25/19 19:53,"550 9th St, New York City, NY 10001" +170238,AAA Batteries (4-pack),1,2.99,02/07/19 14:49,"91 Washington St, Portland, OR 97035" +170239,34in Ultrawide Monitor,1,379.99,02/07/19 00:07,"235 Jefferson St, San Francisco, CA 94016" +170240,AA Batteries (4-pack),3,3.84,02/14/19 21:28,"978 7th St, Los Angeles, CA 90001" +170241,34in Ultrawide Monitor,1,379.99,02/02/19 17:04,"235 Forest St, New York City, NY 10001" +170242,LG Dryer,1,600.0,02/28/19 18:45,"427 West St, San Francisco, CA 94016" +170243,Wired Headphones,1,11.99,02/18/19 17:34,"956 Lincoln St, Dallas, TX 75001" +170244,Apple Airpods Headphones,1,150,02/21/19 23:45,"866 Ridge St, New York City, NY 10001" +170245,Apple Airpods Headphones,1,150,02/05/19 14:16,"154 Church St, Los Angeles, CA 90001" +170246,AAA Batteries (4-pack),2,2.99,02/06/19 10:12,"497 Pine St, Boston, MA 02215" +170247,Apple Airpods Headphones,1,150,02/18/19 06:37,"335 Forest St, San Francisco, CA 94016" +170248,AAA Batteries (4-pack),1,2.99,02/11/19 02:00,"694 Chestnut St, Los Angeles, CA 90001" +170249,Google Phone,1,600,02/26/19 12:13,"939 Jackson St, Los Angeles, CA 90001" +170250,AAA Batteries (4-pack),1,2.99,02/14/19 10:21,"781 West St, Los Angeles, CA 90001" +170251,Lightning Charging Cable,2,14.95,02/16/19 21:25,"857 10th St, Boston, MA 02215" +170252,iPhone,1,700,02/15/19 21:16,"632 Madison St, San Francisco, CA 94016" +170253,Lightning Charging Cable,1,14.95,02/11/19 20:38,"961 11th St, Austin, TX 73301" +170254,Wired Headphones,1,11.99,02/08/19 15:22,"740 Chestnut St, Los Angeles, CA 90001" +170255,27in FHD Monitor,1,149.99,02/13/19 16:19,"449 River St, New York City, NY 10001" +170256,AA Batteries (4-pack),2,3.84,02/24/19 09:46,"76 Forest St, San Francisco, CA 94016" +170257,Bose SoundSport Headphones,1,99.99,02/13/19 19:02,"710 4th St, Boston, MA 02215" +170258,Lightning Charging Cable,1,14.95,02/04/19 22:19,"853 2nd St, Boston, MA 02215" +170259,Apple Airpods Headphones,1,150,02/06/19 19:03,"281 Pine St, Atlanta, GA 30301" +170260,Wired Headphones,1,11.99,02/04/19 22:51,"564 Dogwood St, San Francisco, CA 94016" +170261,Apple Airpods Headphones,1,150,02/16/19 11:08,"715 Jackson St, Los Angeles, CA 90001" +170262,ThinkPad Laptop,1,999.99,02/13/19 15:17,"533 11th St, Austin, TX 73301" +170263,AAA Batteries (4-pack),1,2.99,02/15/19 01:09,"49 2nd St, Boston, MA 02215" +170264,AA Batteries (4-pack),2,3.84,02/27/19 14:28,"339 South St, Boston, MA 02215" +170265,27in FHD Monitor,1,149.99,02/11/19 17:51,"112 Sunset St, Los Angeles, CA 90001" +170265,Lightning Charging Cable,1,14.95,02/11/19 17:51,"112 Sunset St, Los Angeles, CA 90001" +170266,Apple Airpods Headphones,1,150,02/22/19 23:32,"999 West St, New York City, NY 10001" +170267,AAA Batteries (4-pack),1,2.99,02/15/19 09:11,"820 Wilson St, Los Angeles, CA 90001" +170268,AAA Batteries (4-pack),1,2.99,02/12/19 11:46,"454 Park St, Dallas, TX 75001" +170269,27in FHD Monitor,1,149.99,02/06/19 20:03,"779 Johnson St, Los Angeles, CA 90001" +170270,Wired Headphones,1,11.99,02/13/19 23:05,"843 Lakeview St, San Francisco, CA 94016" +170271,Bose SoundSport Headphones,1,99.99,02/23/19 07:18,"352 Johnson St, San Francisco, CA 94016" +170272,USB-C Charging Cable,1,11.95,02/23/19 09:33,"339 Maple St, San Francisco, CA 94016" +170273,Lightning Charging Cable,1,14.95,02/04/19 14:25,"620 Sunset St, Dallas, TX 75001" +170274,Lightning Charging Cable,1,14.95,02/10/19 15:51,"288 2nd St, Seattle, WA 98101" +170275,Lightning Charging Cable,1,14.95,02/09/19 15:58,"47 11th St, Los Angeles, CA 90001" +170276,27in 4K Gaming Monitor,1,389.99,02/24/19 20:15,"89 Forest St, Dallas, TX 75001" +170277,AAA Batteries (4-pack),2,2.99,02/14/19 11:07,"975 Maple St, San Francisco, CA 94016" +170277,27in FHD Monitor,1,149.99,02/14/19 11:07,"975 Maple St, San Francisco, CA 94016" +170278,USB-C Charging Cable,1,11.95,02/21/19 12:47,"472 Ridge St, Los Angeles, CA 90001" +170279,AA Batteries (4-pack),1,3.84,02/12/19 16:33,"576 Pine St, Boston, MA 02215" +170280,Flatscreen TV,1,300,02/25/19 18:32,"901 Hickory St, San Francisco, CA 94016" +170281,USB-C Charging Cable,1,11.95,02/27/19 18:51,"498 4th St, Atlanta, GA 30301" +170282,USB-C Charging Cable,1,11.95,02/25/19 20:23,"973 Forest St, Dallas, TX 75001" +170283,Wired Headphones,1,11.99,02/24/19 14:29,"420 Church St, San Francisco, CA 94016" +170284,Wired Headphones,1,11.99,02/24/19 19:57,"736 Hill St, Atlanta, GA 30301" +170284,AA Batteries (4-pack),1,3.84,02/24/19 19:57,"736 Hill St, Atlanta, GA 30301" +170285,USB-C Charging Cable,1,11.95,02/23/19 21:39,"85 Maple St, San Francisco, CA 94016" +170286,USB-C Charging Cable,1,11.95,02/25/19 20:46,"917 Wilson St, Los Angeles, CA 90001" +170287,iPhone,1,700,02/03/19 09:54,"270 Lincoln St, Seattle, WA 98101" +170288,USB-C Charging Cable,1,11.95,02/27/19 09:50,"205 5th St, New York City, NY 10001" +170289,Flatscreen TV,1,300,02/18/19 12:29,"972 Washington St, Boston, MA 02215" +170290,Apple Airpods Headphones,1,150,02/08/19 11:46,"456 Center St, Portland, OR 97035" +170291,27in 4K Gaming Monitor,1,389.99,02/16/19 14:33,"618 10th St, San Francisco, CA 94016" +170292,iPhone,1,700,02/03/19 17:55,"796 Wilson St, Boston, MA 02215" +170293,27in 4K Gaming Monitor,1,389.99,02/14/19 21:17,"879 Church St, San Francisco, CA 94016" +170294,Wired Headphones,2,11.99,02/07/19 05:58,"636 Cherry St, New York City, NY 10001" +170295,iPhone,1,700,02/19/19 14:58,"692 Madison St, Dallas, TX 75001" +170295,Apple Airpods Headphones,1,150,02/19/19 14:58,"692 Madison St, Dallas, TX 75001" +170296,Apple Airpods Headphones,1,150,02/15/19 20:53,"373 Hickory St, Los Angeles, CA 90001" +170297,AAA Batteries (4-pack),1,2.99,02/14/19 19:57,"596 Chestnut St, Boston, MA 02215" +170298,AAA Batteries (4-pack),1,2.99,02/24/19 20:09,"365 Church St, Los Angeles, CA 90001" +170299,AAA Batteries (4-pack),2,2.99,02/26/19 18:22,"346 Hickory St, New York City, NY 10001" +170300,27in FHD Monitor,1,149.99,02/06/19 20:57,"33 Highland St, New York City, NY 10001" +170301,AAA Batteries (4-pack),1,2.99,02/09/19 19:31,"59 11th St, San Francisco, CA 94016" +170302,Bose SoundSport Headphones,1,99.99,02/10/19 15:45,"959 West St, Boston, MA 02215" +170303,AAA Batteries (4-pack),1,2.99,02/01/19 11:26,"860 River St, San Francisco, CA 94016" +170304,Lightning Charging Cable,1,14.95,02/25/19 12:20,"575 Maple St, Los Angeles, CA 90001" +170305,Lightning Charging Cable,1,14.95,02/01/19 14:12,"960 Center St, San Francisco, CA 94016" +170306,Bose SoundSport Headphones,1,99.99,02/09/19 17:01,"789 14th St, Atlanta, GA 30301" +170307,27in FHD Monitor,1,149.99,02/07/19 20:21,"733 2nd St, Seattle, WA 98101" +170308,USB-C Charging Cable,1,11.95,02/28/19 15:10,"511 North St, Atlanta, GA 30301" +170309,iPhone,1,700,02/26/19 13:29,"171 Washington St, San Francisco, CA 94016" +170310,Lightning Charging Cable,1,14.95,02/15/19 20:34,"118 Hickory St, Boston, MA 02215" +170311,iPhone,1,700,02/01/19 19:42,"687 North St, Atlanta, GA 30301" +170312,AA Batteries (4-pack),1,3.84,02/02/19 13:58,"897 Spruce St, San Francisco, CA 94016" +170313,Apple Airpods Headphones,1,150,02/05/19 19:32,"638 Madison St, Los Angeles, CA 90001" +170314,Apple Airpods Headphones,1,150,02/16/19 06:56,"734 Jefferson St, Austin, TX 73301" +170315,Apple Airpods Headphones,1,150,02/03/19 08:51,"11 Main St, San Francisco, CA 94016" +170316,27in FHD Monitor,1,149.99,02/06/19 12:56,"699 Lincoln St, New York City, NY 10001" +170317,Lightning Charging Cable,1,14.95,02/28/19 12:29,"884 7th St, San Francisco, CA 94016" +170318,AAA Batteries (4-pack),6,2.99,02/20/19 19:51,"935 Highland St, Boston, MA 02215" +170319,iPhone,1,700,02/01/19 09:12,"830 Church St, San Francisco, CA 94016" +170320,AA Batteries (4-pack),1,3.84,02/27/19 23:25,"174 12th St, New York City, NY 10001" +170321,Bose SoundSport Headphones,1,99.99,02/15/19 14:08,"15 Main St, Seattle, WA 98101" +170322,USB-C Charging Cable,1,11.95,02/20/19 18:14,"461 Willow St, Dallas, TX 75001" +170323,Apple Airpods Headphones,1,150,02/15/19 13:40,"387 Madison St, Los Angeles, CA 90001" +170324,AA Batteries (4-pack),1,3.84,02/26/19 20:16,"398 7th St, New York City, NY 10001" +170325,Lightning Charging Cable,1,14.95,02/25/19 16:04,"212 13th St, San Francisco, CA 94016" +170326,Wired Headphones,1,11.99,02/01/19 14:09,"413 Spruce St, San Francisco, CA 94016" +170327,USB-C Charging Cable,1,11.95,02/02/19 11:20,"495 Meadow St, Boston, MA 02215" +170328,AAA Batteries (4-pack),2,2.99,02/03/19 12:08,"681 South St, San Francisco, CA 94016" +170329,27in FHD Monitor,1,149.99,02/21/19 18:48,"167 Walnut St, San Francisco, CA 94016" +170330,AAA Batteries (4-pack),1,2.99,02/07/19 00:23,"107 2nd St, Atlanta, GA 30301" +170331,Wired Headphones,1,11.99,02/21/19 20:58,"815 South St, Boston, MA 02215" +170332,Apple Airpods Headphones,1,150,02/12/19 08:38,"750 8th St, San Francisco, CA 94016" +170333,Bose SoundSport Headphones,1,99.99,02/28/19 23:09,"846 Forest St, San Francisco, CA 94016" +170334,AA Batteries (4-pack),1,3.84,02/06/19 11:09,"482 Johnson St, Los Angeles, CA 90001" +170335,Wired Headphones,1,11.99,02/14/19 22:37,"170 Washington St, San Francisco, CA 94016" +170336,27in FHD Monitor,1,149.99,02/01/19 09:38,"926 Jackson St, Atlanta, GA 30301" +170337,USB-C Charging Cable,1,11.95,02/08/19 20:06,"548 Hill St, Austin, TX 73301" +170338,AA Batteries (4-pack),1,3.84,02/05/19 21:06,"744 Church St, San Francisco, CA 94016" +170339,Macbook Pro Laptop,1,1700,02/04/19 22:58,"218 2nd St, Los Angeles, CA 90001" +170340,USB-C Charging Cable,1,11.95,02/12/19 09:19,"246 Jackson St, Los Angeles, CA 90001" +170341,AA Batteries (4-pack),1,3.84,02/04/19 20:01,"630 14th St, New York City, NY 10001" +170342,Flatscreen TV,1,300,02/07/19 19:35,"872 Sunset St, New York City, NY 10001" +170343,Apple Airpods Headphones,1,150,02/04/19 09:16,"70 Hill St, Dallas, TX 75001" +170344,Bose SoundSport Headphones,1,99.99,02/24/19 01:24,"985 South St, San Francisco, CA 94016" +170345,20in Monitor,1,109.99,02/10/19 08:26,"345 Maple St, Dallas, TX 75001" +170346,Bose SoundSport Headphones,1,99.99,02/07/19 14:18,"239 Washington St, New York City, NY 10001" +170347,USB-C Charging Cable,1,11.95,02/18/19 20:44,"998 Chestnut St, Seattle, WA 98101" +170348,AAA Batteries (4-pack),3,2.99,02/01/19 14:08,"333 Lincoln St, Seattle, WA 98101" +170349,27in FHD Monitor,1,149.99,02/25/19 14:33,"533 12th St, Boston, MA 02215" +170350,20in Monitor,1,109.99,02/19/19 08:32,"766 11th St, Dallas, TX 75001" +170351,Bose SoundSport Headphones,1,99.99,02/20/19 18:49,"585 6th St, Los Angeles, CA 90001" +170351,Flatscreen TV,1,300,02/20/19 18:49,"585 6th St, Los Angeles, CA 90001" +170352,Lightning Charging Cable,1,14.95,02/06/19 10:27,"328 2nd St, Portland, OR 97035" +170353,27in FHD Monitor,1,149.99,02/08/19 09:51,"188 Forest St, Boston, MA 02215" +170354,Wired Headphones,1,11.99,02/18/19 22:32,"581 13th St, Dallas, TX 75001" +170355,Bose SoundSport Headphones,1,99.99,02/02/19 10:13,"646 4th St, Boston, MA 02215" +170356,AA Batteries (4-pack),1,3.84,02/08/19 12:21,"848 Spruce St, New York City, NY 10001" +170357,27in FHD Monitor,1,149.99,02/18/19 18:05,"842 Walnut St, Los Angeles, CA 90001" +170358,AAA Batteries (4-pack),1,2.99,02/05/19 00:50,"361 Cherry St, San Francisco, CA 94016" +170359,Lightning Charging Cable,1,14.95,02/24/19 08:00,"314 Highland St, Los Angeles, CA 90001" +170360,34in Ultrawide Monitor,1,379.99,02/06/19 07:15,"438 Pine St, San Francisco, CA 94016" +170361,Wired Headphones,1,11.99,02/13/19 22:43,"492 Willow St, Portland, ME 04101" +170362,Wired Headphones,2,11.99,02/02/19 18:16,"945 2nd St, San Francisco, CA 94016" +170363,ThinkPad Laptop,1,999.99,02/23/19 13:56,"254 Washington St, Los Angeles, CA 90001" +170364,Apple Airpods Headphones,1,150,02/01/19 11:00,"297 Forest St, San Francisco, CA 94016" +170365,Lightning Charging Cable,1,14.95,02/08/19 17:36,"619 Johnson St, Portland, OR 97035" +170366,Apple Airpods Headphones,1,150,02/24/19 17:33,"103 Elm St, San Francisco, CA 94016" +170367,AAA Batteries (4-pack),1,2.99,02/09/19 18:45,"438 Madison St, San Francisco, CA 94016" +170368,Flatscreen TV,1,300,02/12/19 13:21,"830 Johnson St, San Francisco, CA 94016" +170369,Wired Headphones,1,11.99,02/17/19 08:28,"581 Jefferson St, New York City, NY 10001" +170370,Apple Airpods Headphones,1,150,02/07/19 17:45,"509 Main St, San Francisco, CA 94016" +170371,Flatscreen TV,1,300,02/01/19 23:49,"851 Highland St, Seattle, WA 98101" +170372,Google Phone,1,600,02/25/19 11:37,"190 Maple St, Los Angeles, CA 90001" +170373,Wired Headphones,2,11.99,02/12/19 12:34,"456 Spruce St, Seattle, WA 98101" +170374,AAA Batteries (4-pack),1,2.99,02/03/19 08:26,"260 10th St, Seattle, WA 98101" +170375,Wired Headphones,1,11.99,02/15/19 19:46,"66 1st St, Austin, TX 73301" +170376,AA Batteries (4-pack),1,3.84,02/24/19 19:52,"423 River St, Seattle, WA 98101" +170377,AAA Batteries (4-pack),3,2.99,02/16/19 20:55,"866 Church St, New York City, NY 10001" +170378,AA Batteries (4-pack),3,3.84,02/15/19 14:47,"121 Dogwood St, Dallas, TX 75001" +170379,AA Batteries (4-pack),1,3.84,02/09/19 19:10,"420 Johnson St, Los Angeles, CA 90001" +170380,Bose SoundSport Headphones,1,99.99,02/03/19 11:01,"58 Adams St, Portland, OR 97035" +170381,AAA Batteries (4-pack),1,2.99,02/23/19 21:52,"543 Jefferson St, Portland, OR 97035" +170382,AAA Batteries (4-pack),2,2.99,02/27/19 19:23,"173 Church St, San Francisco, CA 94016" +170383,USB-C Charging Cable,1,11.95,02/07/19 20:05,"900 Spruce St, Austin, TX 73301" +170384,AAA Batteries (4-pack),1,2.99,02/10/19 12:07,"581 Cedar St, Los Angeles, CA 90001" +170385,Bose SoundSport Headphones,1,99.99,02/18/19 11:15,"276 Washington St, Seattle, WA 98101" +170386,Apple Airpods Headphones,1,150,02/11/19 12:58,"910 Elm St, Dallas, TX 75001" +170387,Flatscreen TV,1,300,02/25/19 10:52,"350 8th St, New York City, NY 10001" +170388,Bose SoundSport Headphones,1,99.99,02/21/19 22:44,"294 Lake St, New York City, NY 10001" +170389,27in FHD Monitor,1,149.99,02/01/19 10:00,"821 Chestnut St, New York City, NY 10001" +170390,Bose SoundSport Headphones,1,99.99,02/22/19 16:02,"863 Washington St, Portland, OR 97035" +170391,Wired Headphones,1,11.99,02/28/19 10:23,"908 North St, Austin, TX 73301" +170392,AAA Batteries (4-pack),1,2.99,02/05/19 16:19,"724 6th St, Los Angeles, CA 90001" +170393,Lightning Charging Cable,1,14.95,02/05/19 08:58,"218 6th St, Dallas, TX 75001" +170394,AA Batteries (4-pack),1,3.84,02/18/19 10:57,"348 West St, Los Angeles, CA 90001" +170395,27in 4K Gaming Monitor,1,389.99,02/10/19 13:07,"572 1st St, Atlanta, GA 30301" +170396,Lightning Charging Cable,1,14.95,02/25/19 22:52,"740 Lakeview St, Atlanta, GA 30301" +170397,Flatscreen TV,1,300,02/19/19 19:19,"95 11th St, New York City, NY 10001" +170398,AA Batteries (4-pack),2,3.84,02/27/19 19:40,"425 Cherry St, New York City, NY 10001" +170399,Wired Headphones,1,11.99,02/22/19 18:52,"67 12th St, San Francisco, CA 94016" +170400,Lightning Charging Cable,1,14.95,02/28/19 08:41,"485 Cherry St, Seattle, WA 98101" +170401,Lightning Charging Cable,1,14.95,02/18/19 11:52,"796 Madison St, San Francisco, CA 94016" +170402,Bose SoundSport Headphones,1,99.99,02/17/19 13:20,"73 Hickory St, New York City, NY 10001" +170403,AA Batteries (4-pack),1,3.84,02/14/19 15:46,"763 Cherry St, San Francisco, CA 94016" +170404,34in Ultrawide Monitor,1,379.99,02/24/19 14:20,"546 Park St, Los Angeles, CA 90001" +170405,AA Batteries (4-pack),1,3.84,02/20/19 08:14,"747 Maple St, San Francisco, CA 94016" +170406,Google Phone,1,600,02/22/19 10:35,"757 7th St, Los Angeles, CA 90001" +170406,Bose SoundSport Headphones,1,99.99,02/22/19 10:35,"757 7th St, Los Angeles, CA 90001" +170407,Apple Airpods Headphones,1,150,02/06/19 22:20,"855 Elm St, New York City, NY 10001" +170408,USB-C Charging Cable,1,11.95,02/05/19 10:55,"231 Jefferson St, Portland, OR 97035" +170409,USB-C Charging Cable,1,11.95,02/18/19 01:09,"918 12th St, Los Angeles, CA 90001" +170410,27in 4K Gaming Monitor,1,389.99,02/17/19 16:13,"234 Willow St, Austin, TX 73301" +170411,Wired Headphones,1,11.99,02/25/19 22:41,"862 12th St, Austin, TX 73301" +170412,USB-C Charging Cable,1,11.95,02/16/19 07:59,"291 Meadow St, San Francisco, CA 94016" +170413,Lightning Charging Cable,1,14.95,02/11/19 11:18,"398 Hickory St, Atlanta, GA 30301" +170414,AAA Batteries (4-pack),1,2.99,02/28/19 16:29,"266 Maple St, Austin, TX 73301" +170415,Lightning Charging Cable,1,14.95,02/06/19 14:19,"448 Lincoln St, Los Angeles, CA 90001" +170416,Macbook Pro Laptop,1,1700,02/03/19 13:41,"130 Elm St, Los Angeles, CA 90001" +170417,Bose SoundSport Headphones,1,99.99,02/18/19 09:54,"469 Hickory St, Seattle, WA 98101" +170418,ThinkPad Laptop,1,999.99,02/05/19 11:52,"677 4th St, Los Angeles, CA 90001" +170419,Apple Airpods Headphones,1,150,02/06/19 20:28,"115 9th St, Los Angeles, CA 90001" +170420,Apple Airpods Headphones,1,150,02/17/19 11:32,"283 Chestnut St, New York City, NY 10001" +170421,Lightning Charging Cable,1,14.95,02/05/19 16:39,"55 Walnut St, Seattle, WA 98101" +170422,USB-C Charging Cable,1,11.95,02/28/19 10:04,"824 9th St, Seattle, WA 98101" +170423,Bose SoundSport Headphones,1,99.99,02/10/19 09:20,"749 10th St, Los Angeles, CA 90001" +170424,Wired Headphones,1,11.99,02/06/19 11:55,"44 West St, San Francisco, CA 94016" +170425,Apple Airpods Headphones,1,150,02/19/19 10:30,"113 Cherry St, Los Angeles, CA 90001" +170426,AAA Batteries (4-pack),1,2.99,02/09/19 19:37,"313 Washington St, Los Angeles, CA 90001" +170427,Bose SoundSport Headphones,1,99.99,02/17/19 16:20,"813 Johnson St, Atlanta, GA 30301" +170428,AA Batteries (4-pack),1,3.84,02/23/19 18:33,"662 10th St, Austin, TX 73301" +170429,Lightning Charging Cable,1,14.95,02/06/19 20:37,"329 Chestnut St, San Francisco, CA 94016" +170430,AA Batteries (4-pack),1,3.84,02/09/19 08:06,"648 10th St, New York City, NY 10001" +170431,Lightning Charging Cable,1,14.95,02/16/19 10:16,"98 2nd St, San Francisco, CA 94016" +170432,Lightning Charging Cable,1,14.95,02/03/19 00:23,"324 Wilson St, Boston, MA 02215" +170433,Wired Headphones,1,11.99,02/09/19 02:53,"77 Lakeview St, Seattle, WA 98101" +170434,iPhone,1,700,02/10/19 20:59,"250 Lincoln St, San Francisco, CA 94016" +170435,Apple Airpods Headphones,1,150,02/23/19 19:57,"822 South St, San Francisco, CA 94016" +170436,Bose SoundSport Headphones,1,99.99,02/08/19 16:58,"143 Center St, Los Angeles, CA 90001" +170437,AAA Batteries (4-pack),1,2.99,02/21/19 19:02,"627 West St, San Francisco, CA 94016" +170438,USB-C Charging Cable,1,11.95,02/11/19 19:05,"661 Spruce St, Atlanta, GA 30301" +170439,Apple Airpods Headphones,1,150,02/24/19 07:26,"334 Spruce St, Atlanta, GA 30301" +170440,AAA Batteries (4-pack),1,2.99,02/14/19 14:17,"612 Meadow St, Atlanta, GA 30301" +170441,27in FHD Monitor,1,149.99,02/14/19 17:15,"93 Maple St, Atlanta, GA 30301" +170441,AA Batteries (4-pack),1,3.84,02/14/19 17:15,"93 Maple St, Atlanta, GA 30301" +170442,Apple Airpods Headphones,1,150,02/05/19 00:02,"775 14th St, Atlanta, GA 30301" +170443,AAA Batteries (4-pack),1,2.99,02/12/19 11:24,"426 Jefferson St, Seattle, WA 98101" +170444,USB-C Charging Cable,1,11.95,02/23/19 19:33,"185 10th St, San Francisco, CA 94016" +170445,iPhone,1,700,02/19/19 17:21,"290 14th St, San Francisco, CA 94016" +170446,Macbook Pro Laptop,1,1700,02/20/19 12:55,"246 Highland St, San Francisco, CA 94016" +170447,AA Batteries (4-pack),1,3.84,02/05/19 13:35,"43 Park St, Boston, MA 02215" +170448,Apple Airpods Headphones,1,150,02/16/19 08:01,"825 Hill St, Boston, MA 02215" +170449,USB-C Charging Cable,2,11.95,02/27/19 15:30,"962 Ridge St, Seattle, WA 98101" +170450,AA Batteries (4-pack),1,3.84,02/08/19 15:47,"496 Washington St, Boston, MA 02215" +170451,AAA Batteries (4-pack),1,2.99,02/22/19 20:48,"331 Chestnut St, Dallas, TX 75001" +170452,USB-C Charging Cable,1,11.95,02/28/19 23:24,"549 1st St, New York City, NY 10001" +170453,USB-C Charging Cable,1,11.95,02/10/19 11:39,"83 1st St, Seattle, WA 98101" +170454,34in Ultrawide Monitor,1,379.99,02/15/19 13:30,"738 West St, Austin, TX 73301" +170455,AAA Batteries (4-pack),1,2.99,02/14/19 16:24,"859 Lake St, Los Angeles, CA 90001" +170456,Wired Headphones,1,11.99,02/18/19 08:15,"452 Lincoln St, Dallas, TX 75001" +170457,Wired Headphones,1,11.99,02/09/19 08:33,"252 Walnut St, Austin, TX 73301" +170458,Lightning Charging Cable,1,14.95,02/03/19 22:08,"323 Park St, New York City, NY 10001" +170459,20in Monitor,1,109.99,02/27/19 16:53,"240 Meadow St, Los Angeles, CA 90001" +170460,Lightning Charging Cable,1,14.95,02/19/19 19:18,"217 Main St, Dallas, TX 75001" +170461,34in Ultrawide Monitor,1,379.99,02/11/19 21:08,"436 Church St, Los Angeles, CA 90001" +170462,27in 4K Gaming Monitor,1,389.99,02/25/19 16:03,"562 Lake St, Boston, MA 02215" +170463,Bose SoundSport Headphones,1,99.99,02/07/19 13:28,"249 10th St, Los Angeles, CA 90001" +170464,Apple Airpods Headphones,1,150,02/22/19 12:03,"723 Washington St, New York City, NY 10001" +170465,ThinkPad Laptop,1,999.99,02/06/19 14:28,"925 Jefferson St, Boston, MA 02215" +170466,Lightning Charging Cable,1,14.95,02/07/19 14:56,"137 Washington St, Dallas, TX 75001" +170466,Flatscreen TV,1,300,02/07/19 14:56,"137 Washington St, Dallas, TX 75001" +170467,AAA Batteries (4-pack),2,2.99,02/17/19 05:46,"908 8th St, Boston, MA 02215" +170468,USB-C Charging Cable,1,11.95,02/01/19 15:03,"872 7th St, Atlanta, GA 30301" +170469,Apple Airpods Headphones,1,150,02/10/19 15:02,"818 4th St, Seattle, WA 98101" +170470,Bose SoundSport Headphones,1,99.99,02/10/19 19:32,"850 Lakeview St, Boston, MA 02215" +170471,Lightning Charging Cable,1,14.95,02/20/19 14:33,"120 11th St, Atlanta, GA 30301" +170472,AA Batteries (4-pack),1,3.84,02/19/19 12:02,"559 Cedar St, San Francisco, CA 94016" +170473,Wired Headphones,2,11.99,02/23/19 19:54,"343 Madison St, Los Angeles, CA 90001" +170474,Lightning Charging Cable,1,14.95,02/20/19 15:23,"732 Highland St, San Francisco, CA 94016" +170475,AAA Batteries (4-pack),2,2.99,02/16/19 12:39,"814 Jefferson St, Boston, MA 02215" +170476,USB-C Charging Cable,1,11.95,02/12/19 22:56,"384 Spruce St, Seattle, WA 98101" +170477,Wired Headphones,1,11.99,02/26/19 16:20,"104 Wilson St, San Francisco, CA 94016" +170478,Wired Headphones,1,11.99,02/22/19 21:10,"423 6th St, San Francisco, CA 94016" +170479,iPhone,1,700,02/14/19 16:12,"633 Hickory St, San Francisco, CA 94016" +170480,Lightning Charging Cable,1,14.95,02/12/19 16:32,"31 Center St, San Francisco, CA 94016" +170481,34in Ultrawide Monitor,1,379.99,02/18/19 10:12,"812 Wilson St, Boston, MA 02215" +170482,Vareebadd Phone,1,400,02/03/19 10:11,"884 River St, Seattle, WA 98101" +170483,27in FHD Monitor,1,149.99,02/02/19 20:02,"625 Walnut St, New York City, NY 10001" +170484,USB-C Charging Cable,2,11.95,02/04/19 11:28,"175 Willow St, Portland, OR 97035" +170485,Google Phone,1,600,02/27/19 14:04,"830 Lake St, Los Angeles, CA 90001" +170486,AA Batteries (4-pack),2,3.84,02/02/19 22:46,"838 River St, New York City, NY 10001" +170487,27in FHD Monitor,1,149.99,02/28/19 11:22,"772 Jefferson St, Los Angeles, CA 90001" +170487,AAA Batteries (4-pack),1,2.99,02/28/19 11:22,"772 Jefferson St, Los Angeles, CA 90001" +170488,iPhone,1,700,02/01/19 18:39,"696 12th St, New York City, NY 10001" +170489,Apple Airpods Headphones,1,150,02/02/19 19:41,"149 Walnut St, San Francisco, CA 94016" +170490,AA Batteries (4-pack),2,3.84,02/23/19 14:54,"122 Meadow St, Seattle, WA 98101" +170491,Macbook Pro Laptop,1,1700,02/28/19 16:59,"679 13th St, Austin, TX 73301" +170492,27in 4K Gaming Monitor,1,389.99,02/23/19 14:08,"546 9th St, New York City, NY 10001" +170493,AA Batteries (4-pack),1,3.84,02/10/19 16:10,"399 Jefferson St, Boston, MA 02215" +170494,27in FHD Monitor,1,149.99,02/05/19 18:09,"321 7th St, San Francisco, CA 94016" +170495,Apple Airpods Headphones,1,150,02/04/19 11:11,"745 Washington St, Los Angeles, CA 90001" +170496,27in 4K Gaming Monitor,1,389.99,02/13/19 21:49,"691 Church St, Portland, OR 97035" +170497,iPhone,1,700,02/26/19 20:05,"858 Wilson St, Boston, MA 02215" +170498,Wired Headphones,1,11.99,02/24/19 15:52,"695 Ridge St, New York City, NY 10001" +170499,USB-C Charging Cable,1,11.95,02/14/19 19:07,"120 Hickory St, Los Angeles, CA 90001" +170500,ThinkPad Laptop,1,999.99,02/08/19 18:35,"960 Cherry St, Los Angeles, CA 90001" +170501,AA Batteries (4-pack),2,3.84,02/27/19 17:53,"705 Highland St, Los Angeles, CA 90001" +170502,USB-C Charging Cable,1,11.95,02/26/19 21:33,"536 Jefferson St, San Francisco, CA 94016" +170503,Wired Headphones,1,11.99,02/14/19 22:38,"243 Lincoln St, Seattle, WA 98101" +170504,Lightning Charging Cable,1,14.95,02/04/19 16:07,"617 Lake St, Atlanta, GA 30301" +170505,Bose SoundSport Headphones,1,99.99,02/06/19 15:54,"669 Chestnut St, Portland, OR 97035" +170506,Lightning Charging Cable,1,14.95,02/02/19 10:11,"543 Dogwood St, Los Angeles, CA 90001" +170507,Apple Airpods Headphones,1,150,02/28/19 19:50,"154 Johnson St, Los Angeles, CA 90001" +170508,Apple Airpods Headphones,1,150,02/12/19 12:15,"255 Sunset St, Los Angeles, CA 90001" +170509,Lightning Charging Cable,1,14.95,02/22/19 12:19,"710 11th St, San Francisco, CA 94016" +170510,AA Batteries (4-pack),2,3.84,02/16/19 08:17,"101 Elm St, New York City, NY 10001" +170511,USB-C Charging Cable,1,11.95,02/07/19 10:06,"462 Hill St, Austin, TX 73301" +170512,Lightning Charging Cable,1,14.95,02/22/19 11:40,"182 Johnson St, Dallas, TX 75001" +170513,34in Ultrawide Monitor,1,379.99,02/16/19 18:50,"575 Hill St, Portland, OR 97035" +170514,Lightning Charging Cable,1,14.95,02/27/19 09:34,"325 Cherry St, Austin, TX 73301" +170515,Apple Airpods Headphones,1,150,02/24/19 19:44,"59 Cedar St, Boston, MA 02215" +170516,AA Batteries (4-pack),1,3.84,02/07/19 10:55,"556 14th St, Portland, OR 97035" +170517,AA Batteries (4-pack),2,3.84,02/17/19 20:09,"4 Hill St, San Francisco, CA 94016" +170518,Bose SoundSport Headphones,1,99.99,02/06/19 20:10,"155 South St, Dallas, TX 75001" +170519,Lightning Charging Cable,1,14.95,02/27/19 19:25,"749 Center St, San Francisco, CA 94016" +170520,Lightning Charging Cable,1,14.95,02/07/19 08:51,"525 Cherry St, Seattle, WA 98101" +170521,AAA Batteries (4-pack),2,2.99,02/11/19 12:44,"757 Madison St, Seattle, WA 98101" +170522,Wired Headphones,1,11.99,02/21/19 13:33,"519 13th St, Boston, MA 02215" +170523,Google Phone,1,600,02/25/19 10:51,"699 Chestnut St, San Francisco, CA 94016" +170523,USB-C Charging Cable,1,11.95,02/25/19 10:51,"699 Chestnut St, San Francisco, CA 94016" +170524,Lightning Charging Cable,1,14.95,02/22/19 20:21,"224 Maple St, New York City, NY 10001" +170525,Apple Airpods Headphones,1,150,02/22/19 16:19,"326 Washington St, Atlanta, GA 30301" +170526,AAA Batteries (4-pack),1,2.99,02/08/19 20:37,"738 North St, Dallas, TX 75001" +170527,AAA Batteries (4-pack),4,2.99,02/12/19 21:25,"555 Cherry St, San Francisco, CA 94016" +170528,USB-C Charging Cable,1,11.95,02/02/19 17:53,"816 Elm St, Dallas, TX 75001" +170529,27in FHD Monitor,1,149.99,02/27/19 12:52,"520 Lincoln St, Portland, OR 97035" +170530,Flatscreen TV,1,300,02/24/19 19:25,"992 Lake St, Los Angeles, CA 90001" +170531,27in FHD Monitor,1,149.99,02/11/19 21:57,"250 Walnut St, Boston, MA 02215" +170532,AA Batteries (4-pack),1,3.84,02/26/19 16:39,"564 Forest St, Portland, ME 04101" +170533,USB-C Charging Cable,1,11.95,02/28/19 20:20,"674 Highland St, San Francisco, CA 94016" +170534,Wired Headphones,1,11.99,02/19/19 19:38,"998 1st St, San Francisco, CA 94016" +170535,Lightning Charging Cable,1,14.95,02/12/19 11:43,"953 Cherry St, San Francisco, CA 94016" +170536,USB-C Charging Cable,1,11.95,02/15/19 21:01,"489 Wilson St, San Francisco, CA 94016" +170537,Apple Airpods Headphones,1,150,02/06/19 11:38,"221 Spruce St, San Francisco, CA 94016" +170538,Bose SoundSport Headphones,1,99.99,02/03/19 09:17,"2 Adams St, Boston, MA 02215" +170539,USB-C Charging Cable,1,11.95,02/21/19 05:28,"733 Jackson St, Dallas, TX 75001" +170540,34in Ultrawide Monitor,1,379.99,02/03/19 21:07,"432 9th St, New York City, NY 10001" +170541,Vareebadd Phone,1,400,02/06/19 07:28,"818 Cedar St, Boston, MA 02215" +170542,20in Monitor,1,109.99,02/23/19 13:19,"19 Elm St, Austin, TX 73301" +170543,Apple Airpods Headphones,1,150,02/21/19 00:15,"597 Main St, New York City, NY 10001" +170544,ThinkPad Laptop,1,999.99,02/19/19 22:53,"277 Maple St, San Francisco, CA 94016" +170545,Google Phone,1,600,02/14/19 21:22,"606 Hill St, Boston, MA 02215" +170546,AA Batteries (4-pack),1,3.84,02/18/19 19:19,"262 Ridge St, Los Angeles, CA 90001" +170547,Bose SoundSport Headphones,1,99.99,02/02/19 12:37,"771 Johnson St, Austin, TX 73301" +170548,USB-C Charging Cable,1,11.95,02/26/19 17:56,"890 Hickory St, San Francisco, CA 94016" +170549,Google Phone,1,600,02/16/19 13:57,"586 Willow St, Portland, OR 97035" +170550,Wired Headphones,1,11.99,02/02/19 20:03,"993 Washington St, Boston, MA 02215" +170551,AAA Batteries (4-pack),2,2.99,02/16/19 15:32,"735 Lakeview St, Atlanta, GA 30301" +170551,Wired Headphones,1,11.99,02/16/19 15:32,"735 Lakeview St, Atlanta, GA 30301" +170552,Wired Headphones,1,11.99,02/17/19 15:59,"765 11th St, Dallas, TX 75001" +170553,AAA Batteries (4-pack),1,2.99,02/16/19 20:10,"278 Park St, San Francisco, CA 94016" +170554,27in 4K Gaming Monitor,1,389.99,02/01/19 13:07,"175 12th St, Atlanta, GA 30301" +170554,AA Batteries (4-pack),1,3.84,02/01/19 13:07,"175 12th St, Atlanta, GA 30301" +170555,AA Batteries (4-pack),1,3.84,02/02/19 14:42,"580 4th St, Boston, MA 02215" +170556,Lightning Charging Cable,1,14.95,02/06/19 18:21,"749 14th St, Boston, MA 02215" +170557,34in Ultrawide Monitor,1,379.99,02/11/19 10:09,"604 Adams St, San Francisco, CA 94016" +170558,Lightning Charging Cable,1,14.95,02/10/19 16:44,"364 Chestnut St, Boston, MA 02215" +170559,Macbook Pro Laptop,1,1700,02/20/19 15:07,"748 Cedar St, Seattle, WA 98101" +170560,Google Phone,1,600,02/02/19 10:28,"928 Cherry St, Portland, OR 97035" +170561,Wired Headphones,1,11.99,02/09/19 12:06,"272 13th St, Los Angeles, CA 90001" +170562,Wired Headphones,1,11.99,02/10/19 21:51,"755 Jefferson St, Los Angeles, CA 90001" +170563,Wired Headphones,1,11.99,02/28/19 21:55,"393 South St, Dallas, TX 75001" +170564,Wired Headphones,1,11.99,02/06/19 20:19,"724 South St, Austin, TX 73301" +170565,iPhone,1,700,02/01/19 17:38,"64 Main St, Dallas, TX 75001" +170566,iPhone,1,700,02/04/19 13:11,"236 Cedar St, Portland, ME 04101" +170567,USB-C Charging Cable,1,11.95,02/23/19 11:28,"503 Adams St, Los Angeles, CA 90001" +170568,27in 4K Gaming Monitor,1,389.99,02/10/19 14:44,"115 Hill St, Seattle, WA 98101" +170569,USB-C Charging Cable,1,11.95,02/28/19 16:15,"940 Hickory St, Austin, TX 73301" +170570,Lightning Charging Cable,1,14.95,02/23/19 19:11,"57 Park St, San Francisco, CA 94016" +170571,USB-C Charging Cable,1,11.95,02/23/19 12:52,"466 Cherry St, San Francisco, CA 94016" +170572,Lightning Charging Cable,1,14.95,02/09/19 22:08,"497 West St, Dallas, TX 75001" +170573,Bose SoundSport Headphones,1,99.99,02/23/19 20:56,"116 Jefferson St, Los Angeles, CA 90001" +170574,27in FHD Monitor,1,149.99,02/22/19 16:02,"947 5th St, Dallas, TX 75001" +170575,AAA Batteries (4-pack),2,2.99,02/04/19 17:42,"874 Cedar St, San Francisco, CA 94016" +170576,AAA Batteries (4-pack),1,2.99,02/09/19 13:34,"701 Highland St, Los Angeles, CA 90001" +170577,Lightning Charging Cable,1,14.95,02/16/19 22:46,"647 5th St, Los Angeles, CA 90001" +170578,AA Batteries (4-pack),1,3.84,02/02/19 08:39,"193 Cedar St, Seattle, WA 98101" +170579,Flatscreen TV,1,300,02/04/19 22:19,"507 Willow St, Boston, MA 02215" +170580,Bose SoundSport Headphones,1,99.99,02/02/19 18:05,"181 6th St, New York City, NY 10001" +170581,Wired Headphones,1,11.99,02/17/19 20:41,"332 Hill St, Los Angeles, CA 90001" +170582,Apple Airpods Headphones,1,150,02/23/19 16:29,"173 Lakeview St, Los Angeles, CA 90001" +170583,AAA Batteries (4-pack),1,2.99,02/24/19 18:08,"3 Spruce St, Seattle, WA 98101" +170584,AAA Batteries (4-pack),1,2.99,02/07/19 09:51,"783 Elm St, Portland, OR 97035" +170585,iPhone,1,700,02/07/19 23:22,"570 7th St, New York City, NY 10001" +170586,Wired Headphones,1,11.99,02/12/19 14:07,"569 Washington St, San Francisco, CA 94016" +170587,Wired Headphones,1,11.99,02/27/19 10:03,"979 2nd St, Dallas, TX 75001" +170588,USB-C Charging Cable,1,11.95,02/06/19 23:49,"780 Willow St, Portland, OR 97035" +170589,USB-C Charging Cable,1,11.95,02/26/19 09:02,"937 10th St, Austin, TX 73301" +170590,Macbook Pro Laptop,1,1700,02/24/19 08:55,"131 Dogwood St, Portland, ME 04101" +170591,Bose SoundSport Headphones,1,99.99,02/10/19 11:22,"814 Main St, New York City, NY 10001" +170592,Apple Airpods Headphones,1,150,02/06/19 13:30,"577 Maple St, Dallas, TX 75001" +170593,USB-C Charging Cable,1,11.95,02/18/19 17:30,"83 Chestnut St, Boston, MA 02215" +170594,USB-C Charging Cable,1,11.95,02/01/19 09:31,"826 Center St, San Francisco, CA 94016" +170595,AAA Batteries (4-pack),1,2.99,02/24/19 16:10,"635 13th St, Seattle, WA 98101" +170596,iPhone,1,700,02/05/19 19:41,"346 Maple St, Boston, MA 02215" +170597,20in Monitor,1,109.99,02/27/19 17:31,"101 2nd St, Los Angeles, CA 90001" +170598,27in 4K Gaming Monitor,1,389.99,02/28/19 17:30,"692 Chestnut St, New York City, NY 10001" +170599,AAA Batteries (4-pack),1,2.99,02/23/19 21:46,"528 Pine St, San Francisco, CA 94016" +170600,Wired Headphones,1,11.99,02/04/19 23:37,"6 4th St, Atlanta, GA 30301" +170601,USB-C Charging Cable,1,11.95,02/05/19 11:58,"439 South St, Dallas, TX 75001" +170602,Apple Airpods Headphones,1,150,02/10/19 19:24,"646 Forest St, Boston, MA 02215" +170603,ThinkPad Laptop,1,999.99,02/26/19 22:01,"802 Pine St, Boston, MA 02215" +170604,AA Batteries (4-pack),1,3.84,02/15/19 14:51,"823 Wilson St, Boston, MA 02215" +170605,iPhone,1,700,02/19/19 09:33,"427 10th St, New York City, NY 10001" +170606,Lightning Charging Cable,1,14.95,02/15/19 08:09,"688 8th St, Boston, MA 02215" +170607,ThinkPad Laptop,1,999.99,02/27/19 22:54,"975 4th St, Portland, OR 97035" +170608,USB-C Charging Cable,1,11.95,02/14/19 06:06,"695 12th St, Los Angeles, CA 90001" +170609,AA Batteries (4-pack),2,3.84,02/19/19 14:17,"742 Cherry St, San Francisco, CA 94016" +170610,AAA Batteries (4-pack),1,2.99,02/23/19 21:40,"652 Hickory St, Los Angeles, CA 90001" +170611,USB-C Charging Cable,1,11.95,02/02/19 19:39,"719 Meadow St, Los Angeles, CA 90001" +170612,Wired Headphones,1,11.99,02/01/19 12:11,"695 Johnson St, Portland, OR 97035" +170613,Lightning Charging Cable,1,14.95,02/03/19 20:33,"668 11th St, Los Angeles, CA 90001" +170614,AA Batteries (4-pack),1,3.84,02/21/19 08:49,"856 Cherry St, San Francisco, CA 94016" +170615,AAA Batteries (4-pack),2,2.99,02/11/19 14:54,"335 Meadow St, Boston, MA 02215" +170616,AA Batteries (4-pack),1,3.84,02/09/19 08:45,"479 7th St, Atlanta, GA 30301" +170617,AA Batteries (4-pack),1,3.84,02/16/19 00:06,"849 Highland St, Atlanta, GA 30301" +170618,AAA Batteries (4-pack),2,2.99,02/13/19 19:47,"575 14th St, San Francisco, CA 94016" +170619,AAA Batteries (4-pack),1,2.99,02/15/19 19:46,"986 Meadow St, Seattle, WA 98101" +170620,Lightning Charging Cable,1,14.95,02/10/19 12:49,"675 Lakeview St, Boston, MA 02215" +170621,Bose SoundSport Headphones,1,99.99,02/22/19 18:48,"19 Lake St, San Francisco, CA 94016" +170622,Wired Headphones,2,11.99,02/13/19 16:19,"498 Lake St, New York City, NY 10001" +170623,Lightning Charging Cable,1,14.95,02/07/19 16:23,"971 Maple St, Boston, MA 02215" +170624,Apple Airpods Headphones,1,150,02/11/19 14:35,"634 Adams St, New York City, NY 10001" +170625,Apple Airpods Headphones,1,150,02/01/19 10:47,"336 Washington St, Seattle, WA 98101" +170626,AAA Batteries (4-pack),2,2.99,02/24/19 09:36,"448 4th St, Austin, TX 73301" +170627,Google Phone,1,600,02/09/19 14:05,"943 North St, Dallas, TX 75001" +170628,Bose SoundSport Headphones,1,99.99,02/21/19 21:52,"568 11th St, Atlanta, GA 30301" +170629,Bose SoundSport Headphones,1,99.99,02/18/19 14:18,"711 2nd St, New York City, NY 10001" +170630,Apple Airpods Headphones,1,150,02/17/19 15:05,"573 Elm St, San Francisco, CA 94016" +170631,Flatscreen TV,1,300,02/20/19 19:38,"604 Wilson St, San Francisco, CA 94016" +170632,Apple Airpods Headphones,1,150,02/20/19 20:16,"573 1st St, Portland, ME 04101" +170633,27in 4K Gaming Monitor,1,389.99,02/22/19 17:07,"881 Adams St, Los Angeles, CA 90001" +170634,Wired Headphones,1,11.99,02/10/19 20:50,"757 9th St, New York City, NY 10001" +170635,Macbook Pro Laptop,1,1700,02/01/19 14:42,"668 Center St, Dallas, TX 75001" +170636,Wired Headphones,2,11.99,02/27/19 00:11,"32 Maple St, Los Angeles, CA 90001" +170637,Apple Airpods Headphones,1,150,02/18/19 12:06,"993 5th St, New York City, NY 10001" +170638,Flatscreen TV,2,300,02/26/19 12:59,"470 Walnut St, Austin, TX 73301" +170639,AA Batteries (4-pack),1,3.84,02/22/19 09:49,"65 Lake St, Portland, OR 97035" +170640,AA Batteries (4-pack),1,3.84,02/06/19 21:03,"684 Jackson St, Austin, TX 73301" +170641,Lightning Charging Cable,1,14.95,02/24/19 16:22,"988 2nd St, Austin, TX 73301" +170642,AAA Batteries (4-pack),1,2.99,02/21/19 23:08,"878 Adams St, New York City, NY 10001" +170643,Wired Headphones,1,11.99,02/14/19 17:31,"125 10th St, New York City, NY 10001" +170644,AA Batteries (4-pack),1,3.84,02/01/19 15:09,"495 Madison St, Dallas, TX 75001" +170645,Lightning Charging Cable,1,14.95,02/03/19 16:33,"824 Washington St, Los Angeles, CA 90001" +170646,20in Monitor,1,109.99,02/10/19 08:11,"153 10th St, San Francisco, CA 94016" +170647,Bose SoundSport Headphones,1,99.99,02/27/19 15:05,"76 West St, Los Angeles, CA 90001" +170648,34in Ultrawide Monitor,1,379.99,02/14/19 11:48,"170 Lincoln St, Los Angeles, CA 90001" +170649,USB-C Charging Cable,1,11.95,02/27/19 18:57,"840 South St, Portland, ME 04101" +170650,AA Batteries (4-pack),3,3.84,02/18/19 07:30,"623 Chestnut St, Seattle, WA 98101" +170651,34in Ultrawide Monitor,1,379.99,02/06/19 07:30,"600 8th St, Portland, OR 97035" +170652,20in Monitor,1,109.99,02/18/19 15:34,"760 Meadow St, Boston, MA 02215" +170653,USB-C Charging Cable,1,11.95,02/13/19 20:43,"256 9th St, New York City, NY 10001" +170654,34in Ultrawide Monitor,1,379.99,02/22/19 22:34,"565 Cedar St, Dallas, TX 75001" +170655,USB-C Charging Cable,1,11.95,02/12/19 22:13,"56 Lakeview St, Los Angeles, CA 90001" +170656,AAA Batteries (4-pack),1,2.99,02/23/19 22:59,"68 Lincoln St, Atlanta, GA 30301" +170657,Flatscreen TV,1,300,02/18/19 16:06,"303 Jefferson St, New York City, NY 10001" +170658,iPhone,1,700,02/06/19 14:20,"60 Hickory St, San Francisco, CA 94016" +170659,Wired Headphones,1,11.99,02/25/19 19:47,"484 Cherry St, Atlanta, GA 30301" +170660,Apple Airpods Headphones,1,150,02/17/19 09:03,"442 2nd St, Los Angeles, CA 90001" +170661,AAA Batteries (4-pack),5,2.99,02/04/19 09:04,"64 Walnut St, San Francisco, CA 94016" +170662,AAA Batteries (4-pack),2,2.99,02/15/19 14:10,"399 8th St, Boston, MA 02215" +170662,Wired Headphones,1,11.99,02/15/19 14:10,"399 8th St, Boston, MA 02215" +170663,34in Ultrawide Monitor,1,379.99,02/03/19 15:32,"264 Maple St, Los Angeles, CA 90001" +170664,Lightning Charging Cable,1,14.95,02/22/19 17:16,"448 8th St, Seattle, WA 98101" +170665,Wired Headphones,1,11.99,02/11/19 13:07,"195 4th St, San Francisco, CA 94016" +170665,Lightning Charging Cable,1,14.95,02/11/19 13:07,"195 4th St, San Francisco, CA 94016" +170666,Bose SoundSport Headphones,1,99.99,02/15/19 10:56,"485 Cherry St, Portland, OR 97035" +170667,27in 4K Gaming Monitor,1,389.99,02/09/19 17:37,"8 South St, San Francisco, CA 94016" +170668,20in Monitor,1,109.99,02/07/19 07:52,"342 Hill St, Atlanta, GA 30301" +170669,Lightning Charging Cable,1,14.95,02/12/19 00:11,"147 Jefferson St, New York City, NY 10001" +170670,Apple Airpods Headphones,1,150,02/08/19 23:38,"33 Washington St, Portland, OR 97035" +170671,Flatscreen TV,1,300,02/08/19 19:12,"228 1st St, Austin, TX 73301" +170672,Apple Airpods Headphones,1,150,02/09/19 23:46,"545 Spruce St, Los Angeles, CA 90001" +170673,ThinkPad Laptop,1,999.99,02/05/19 12:02,"250 8th St, Dallas, TX 75001" +170674,AAA Batteries (4-pack),1,2.99,02/05/19 07:53,"896 4th St, San Francisco, CA 94016" +170675,Apple Airpods Headphones,1,150,02/17/19 10:21,"419 Lake St, Portland, OR 97035" +170676,Wired Headphones,1,11.99,02/08/19 20:48,"941 Elm St, Atlanta, GA 30301" +170677,AA Batteries (4-pack),1,3.84,02/11/19 21:50,"40 7th St, Los Angeles, CA 90001" +170678,Bose SoundSport Headphones,1,99.99,02/10/19 09:35,"482 Center St, New York City, NY 10001" +170679,Apple Airpods Headphones,1,150,02/23/19 13:26,"119 Hickory St, Portland, OR 97035" +170680,ThinkPad Laptop,1,999.99,02/27/19 10:02,"975 Elm St, San Francisco, CA 94016" +170681,AA Batteries (4-pack),1,3.84,02/20/19 07:22,"44 River St, New York City, NY 10001" +170682,USB-C Charging Cable,1,11.95,02/08/19 00:22,"138 13th St, Austin, TX 73301" +170683,AAA Batteries (4-pack),1,2.99,02/28/19 14:52,"402 Washington St, Boston, MA 02215" +170684,Apple Airpods Headphones,1,150,02/19/19 17:59,"596 Lake St, Los Angeles, CA 90001" +170685,AA Batteries (4-pack),1,3.84,02/10/19 22:54,"410 Ridge St, New York City, NY 10001" +170686,USB-C Charging Cable,1,11.95,02/21/19 23:21,"715 Washington St, Los Angeles, CA 90001" +170687,Flatscreen TV,1,300,02/14/19 20:06,"633 Spruce St, New York City, NY 10001" +170687,Wired Headphones,1,11.99,02/14/19 20:06,"633 Spruce St, New York City, NY 10001" +170688,27in 4K Gaming Monitor,1,389.99,02/24/19 18:41,"879 7th St, New York City, NY 10001" +170688,USB-C Charging Cable,1,11.95,02/24/19 18:41,"879 7th St, New York City, NY 10001" +170689,AA Batteries (4-pack),1,3.84,02/06/19 14:51,"904 Walnut St, Seattle, WA 98101" +170690,AA Batteries (4-pack),1,3.84,02/04/19 23:54,"222 Maple St, San Francisco, CA 94016" +170691,Macbook Pro Laptop,1,1700,02/08/19 20:57,"446 Lincoln St, New York City, NY 10001" +170692,AAA Batteries (4-pack),1,2.99,02/02/19 18:32,"257 Johnson St, Atlanta, GA 30301" +170693,Bose SoundSport Headphones,1,99.99,02/12/19 22:23,"494 Lake St, Dallas, TX 75001" +170694,AAA Batteries (4-pack),1,2.99,02/03/19 06:38,"565 Chestnut St, Seattle, WA 98101" +170695,Wired Headphones,1,11.99,02/20/19 19:58,"158 Elm St, Los Angeles, CA 90001" +170696,Lightning Charging Cable,1,14.95,02/03/19 14:42,"432 2nd St, Seattle, WA 98101" +170697,USB-C Charging Cable,1,11.95,02/05/19 11:31,"105 Lincoln St, Seattle, WA 98101" +170698,Lightning Charging Cable,1,14.95,02/21/19 18:37,"442 Adams St, Los Angeles, CA 90001" +170699,Lightning Charging Cable,1,14.95,02/13/19 13:36,"915 Madison St, Boston, MA 02215" +170700,USB-C Charging Cable,2,11.95,02/28/19 09:02,"878 Cherry St, Portland, OR 97035" +170701,AA Batteries (4-pack),2,3.84,02/13/19 12:40,"350 North St, New York City, NY 10001" +170702,ThinkPad Laptop,1,999.99,02/12/19 09:26,"670 12th St, New York City, NY 10001" +170703,USB-C Charging Cable,1,11.95,02/05/19 09:41,"419 11th St, Boston, MA 02215" +170704,AAA Batteries (4-pack),3,2.99,02/22/19 20:03,"279 Wilson St, Dallas, TX 75001" +170705,ThinkPad Laptop,1,999.99,02/12/19 20:06,"979 1st St, San Francisco, CA 94016" +170706,LG Dryer,1,600.0,02/08/19 22:25,"734 Jefferson St, Los Angeles, CA 90001" +170707,Google Phone,1,600,02/25/19 13:12,"200 Washington St, Portland, OR 97035" +170707,USB-C Charging Cable,1,11.95,02/25/19 13:12,"200 Washington St, Portland, OR 97035" +170708,27in 4K Gaming Monitor,1,389.99,02/13/19 11:24,"629 Elm St, Boston, MA 02215" +170709,AAA Batteries (4-pack),1,2.99,02/08/19 14:47,"700 Main St, Los Angeles, CA 90001" +170710,27in 4K Gaming Monitor,1,389.99,02/02/19 12:15,"943 1st St, Boston, MA 02215" +170711,Google Phone,1,600,02/23/19 19:45,"461 5th St, San Francisco, CA 94016" +170712,Bose SoundSport Headphones,1,99.99,02/19/19 22:10,"237 West St, New York City, NY 10001" +170713,AA Batteries (4-pack),1,3.84,02/27/19 12:25,"776 13th St, Los Angeles, CA 90001" +170714,Wired Headphones,1,11.99,02/07/19 17:35,"378 North St, San Francisco, CA 94016" +170715,Lightning Charging Cable,1,14.95,02/18/19 18:21,"607 Maple St, Portland, ME 04101" +170716,Flatscreen TV,1,300,02/16/19 00:35,"799 Church St, San Francisco, CA 94016" +170717,Wired Headphones,1,11.99,02/05/19 13:40,"772 Elm St, Los Angeles, CA 90001" +170718,USB-C Charging Cable,1,11.95,02/13/19 13:59,"828 Walnut St, New York City, NY 10001" +170719,20in Monitor,1,109.99,02/15/19 16:25,"124 River St, Atlanta, GA 30301" +170720,27in 4K Gaming Monitor,1,389.99,02/02/19 19:15,"405 Sunset St, New York City, NY 10001" +170721,ThinkPad Laptop,1,999.99,02/14/19 18:28,"275 Wilson St, San Francisco, CA 94016" +170722,27in 4K Gaming Monitor,1,389.99,02/15/19 07:56,"781 13th St, New York City, NY 10001" +170723,27in 4K Gaming Monitor,1,389.99,02/10/19 18:16,"662 Washington St, San Francisco, CA 94016" +170724,Apple Airpods Headphones,1,150,02/14/19 14:27,"600 Chestnut St, Dallas, TX 75001" +170725,AA Batteries (4-pack),1,3.84,02/21/19 04:15,"114 Cedar St, New York City, NY 10001" +170726,AA Batteries (4-pack),1,3.84,02/18/19 14:31,"639 Dogwood St, Atlanta, GA 30301" +170727,27in FHD Monitor,1,149.99,02/22/19 15:05,"339 4th St, Austin, TX 73301" +170728,Macbook Pro Laptop,1,1700,02/15/19 17:39,"510 Meadow St, New York City, NY 10001" +170729,USB-C Charging Cable,1,11.95,02/01/19 19:27,"425 Cedar St, San Francisco, CA 94016" +170730,USB-C Charging Cable,1,11.95,02/20/19 18:55,"172 North St, Portland, OR 97035" +170731,Wired Headphones,1,11.99,02/12/19 18:00,"333 Hill St, Atlanta, GA 30301" +170732,Wired Headphones,1,11.99,02/01/19 19:31,"646 11th St, Los Angeles, CA 90001" +170733,Macbook Pro Laptop,1,1700,02/19/19 15:33,"731 13th St, San Francisco, CA 94016" +170734,34in Ultrawide Monitor,1,379.99,02/06/19 21:07,"996 Walnut St, New York City, NY 10001" +170735,Apple Airpods Headphones,1,150,02/10/19 15:00,"648 7th St, Portland, OR 97035" +170736,Apple Airpods Headphones,1,150,02/27/19 14:13,"598 Forest St, Austin, TX 73301" +170737,AAA Batteries (4-pack),1,2.99,02/27/19 19:41,"323 7th St, Atlanta, GA 30301" +170738,iPhone,1,700,02/07/19 18:03,"734 Hickory St, San Francisco, CA 94016" +170739,Lightning Charging Cable,1,14.95,02/05/19 21:48,"330 West St, Dallas, TX 75001" +170740,Apple Airpods Headphones,1,150,02/12/19 14:21,"650 Madison St, Los Angeles, CA 90001" +170741,USB-C Charging Cable,1,11.95,02/13/19 14:39,"683 Hill St, Los Angeles, CA 90001" +170742,AAA Batteries (4-pack),2,2.99,02/06/19 14:02,"11 5th St, New York City, NY 10001" +170743,Wired Headphones,1,11.99,02/20/19 17:19,"945 11th St, Austin, TX 73301" +170744,Macbook Pro Laptop,1,1700,02/13/19 11:57,"790 Jackson St, Austin, TX 73301" +170745,AAA Batteries (4-pack),2,2.99,02/10/19 22:28,"547 Adams St, Dallas, TX 75001" +170746,Lightning Charging Cable,1,14.95,02/01/19 20:05,"310 7th St, San Francisco, CA 94016" +170747,Wired Headphones,1,11.99,03/01/19 00:48,"89 Cherry St, Boston, MA 02215" +170748,Bose SoundSport Headphones,1,99.99,02/15/19 18:48,"151 10th St, San Francisco, CA 94016" +170749,Macbook Pro Laptop,1,1700,02/28/19 20:13,"689 5th St, Atlanta, GA 30301" +170750,USB-C Charging Cable,1,11.95,02/15/19 00:43,"505 Lincoln St, New York City, NY 10001" +170751,iPhone,1,700,02/01/19 05:27,"209 West St, Seattle, WA 98101" +170751,Lightning Charging Cable,1,14.95,02/01/19 05:27,"209 West St, Seattle, WA 98101" +170752,AA Batteries (4-pack),1,3.84,02/12/19 09:37,"680 Ridge St, Seattle, WA 98101" +170753,Flatscreen TV,1,300,02/11/19 12:00,"241 14th St, Portland, OR 97035" +170754,ThinkPad Laptop,1,999.99,02/28/19 18:04,"330 Jackson St, Atlanta, GA 30301" +170755,27in 4K Gaming Monitor,1,389.99,02/01/19 11:39,"369 5th St, San Francisco, CA 94016" +170756,Lightning Charging Cable,1,14.95,02/06/19 16:29,"203 Lake St, New York City, NY 10001" +170757,iPhone,1,700,02/23/19 16:22,"35 13th St, Seattle, WA 98101" +170757,34in Ultrawide Monitor,1,379.99,02/23/19 16:22,"35 13th St, Seattle, WA 98101" +170758,AA Batteries (4-pack),1,3.84,02/25/19 22:16,"56 Ridge St, New York City, NY 10001" +170759,Lightning Charging Cable,1,14.95,02/21/19 19:36,"79 Sunset St, San Francisco, CA 94016" +170760,Wired Headphones,1,11.99,02/18/19 15:00,"768 Center St, Dallas, TX 75001" +170761,ThinkPad Laptop,1,999.99,02/19/19 19:18,"570 1st St, Los Angeles, CA 90001" +170762,Wired Headphones,1,11.99,02/10/19 00:05,"531 7th St, Seattle, WA 98101" +170763,Bose SoundSport Headphones,1,99.99,02/21/19 03:08,"633 1st St, Los Angeles, CA 90001" +170764,AAA Batteries (4-pack),2,2.99,02/10/19 07:59,"274 Ridge St, Seattle, WA 98101" +170765,ThinkPad Laptop,1,999.99,02/16/19 13:15,"330 West St, Seattle, WA 98101" +170766,AAA Batteries (4-pack),1,2.99,02/07/19 17:53,"766 4th St, Dallas, TX 75001" +170767,Wired Headphones,1,11.99,02/04/19 14:39,"953 Main St, Portland, OR 97035" +170768,Lightning Charging Cable,1,14.95,02/28/19 14:53,"79 Hill St, Seattle, WA 98101" +170769,USB-C Charging Cable,1,11.95,02/03/19 22:34,"354 5th St, San Francisco, CA 94016" +170770,34in Ultrawide Monitor,1,379.99,02/27/19 12:17,"610 9th St, Boston, MA 02215" +170771,20in Monitor,1,109.99,02/23/19 13:06,"420 Lincoln St, Atlanta, GA 30301" +170772,34in Ultrawide Monitor,1,379.99,02/21/19 09:17,"747 4th St, Dallas, TX 75001" +170773,Apple Airpods Headphones,1,150,02/25/19 13:29,"359 Jackson St, Austin, TX 73301" +170774,Lightning Charging Cable,1,14.95,02/07/19 20:21,"254 South St, Portland, OR 97035" +170775,Apple Airpods Headphones,1,150,02/14/19 18:29,"626 Hill St, New York City, NY 10001" +170776,34in Ultrawide Monitor,1,379.99,02/20/19 15:23,"779 Jackson St, Austin, TX 73301" +170777,AAA Batteries (4-pack),1,2.99,02/20/19 10:50,"613 Highland St, Los Angeles, CA 90001" +170778,Macbook Pro Laptop,1,1700,02/12/19 18:27,"823 Highland St, New York City, NY 10001" +170779,USB-C Charging Cable,1,11.95,02/26/19 09:17,"152 Chestnut St, Atlanta, GA 30301" +170780,Bose SoundSport Headphones,1,99.99,02/15/19 17:53,"88 West St, New York City, NY 10001" +170781,20in Monitor,1,109.99,02/11/19 19:23,"438 6th St, San Francisco, CA 94016" +170782,27in 4K Gaming Monitor,1,389.99,02/05/19 09:40,"560 Main St, Los Angeles, CA 90001" +170783,USB-C Charging Cable,1,11.95,02/18/19 19:36,"577 Center St, San Francisco, CA 94016" +170784,Bose SoundSport Headphones,1,99.99,02/28/19 09:22,"254 12th St, Los Angeles, CA 90001" +170785,Lightning Charging Cable,1,14.95,02/24/19 15:30,"674 7th St, Dallas, TX 75001" +170786,Lightning Charging Cable,2,14.95,02/06/19 15:49,"428 Walnut St, San Francisco, CA 94016" +170787,Apple Airpods Headphones,1,150,02/07/19 15:40,"96 9th St, Los Angeles, CA 90001" +170788,20in Monitor,1,109.99,02/07/19 12:36,"510 4th St, Atlanta, GA 30301" +170789,34in Ultrawide Monitor,1,379.99,02/27/19 13:45,"349 6th St, San Francisco, CA 94016" +170790,AAA Batteries (4-pack),1,2.99,02/22/19 23:24,"590 Lake St, Boston, MA 02215" +170791,Apple Airpods Headphones,1,150,02/06/19 09:23,"271 Forest St, San Francisco, CA 94016" +170792,Lightning Charging Cable,2,14.95,02/15/19 11:11,"263 Willow St, San Francisco, CA 94016" +170793,USB-C Charging Cable,2,11.95,02/13/19 21:33,"784 11th St, Dallas, TX 75001" +170794,Flatscreen TV,1,300,02/21/19 00:10,"297 Lincoln St, New York City, NY 10001" +170795,USB-C Charging Cable,1,11.95,02/23/19 17:34,"932 Johnson St, Seattle, WA 98101" +170796,Wired Headphones,1,11.99,02/02/19 18:42,"693 14th St, Boston, MA 02215" +170797,Lightning Charging Cable,1,14.95,02/15/19 17:00,"286 14th St, Los Angeles, CA 90001" +170798,Wired Headphones,1,11.99,02/24/19 16:37,"99 7th St, Seattle, WA 98101" +170798,Flatscreen TV,1,300,02/24/19 16:37,"99 7th St, Seattle, WA 98101" +170799,Bose SoundSport Headphones,1,99.99,02/10/19 14:11,"846 6th St, Portland, OR 97035" +170800,iPhone,1,700,02/10/19 09:45,"41 Spruce St, San Francisco, CA 94016" +170801,AA Batteries (4-pack),3,3.84,02/10/19 01:11,"871 7th St, Boston, MA 02215" +170802,AA Batteries (4-pack),2,3.84,02/27/19 15:02,"238 10th St, Dallas, TX 75001" +170803,AAA Batteries (4-pack),2,2.99,02/06/19 07:48,"850 Spruce St, San Francisco, CA 94016" +170804,Bose SoundSport Headphones,1,99.99,02/06/19 20:51,"487 Lakeview St, San Francisco, CA 94016" +170805,34in Ultrawide Monitor,1,379.99,02/09/19 20:00,"738 Hill St, Seattle, WA 98101" +170806,Macbook Pro Laptop,1,1700,02/18/19 21:41,"301 Highland St, Los Angeles, CA 90001" +170807,Wired Headphones,1,11.99,02/01/19 21:15,"81 Johnson St, Los Angeles, CA 90001" +170808,27in FHD Monitor,1,149.99,02/23/19 12:31,"653 10th St, Dallas, TX 75001" +170809,Bose SoundSport Headphones,1,99.99,02/07/19 11:30,"673 Cedar St, San Francisco, CA 94016" +170810,Google Phone,1,600,02/10/19 11:17,"457 Wilson St, Dallas, TX 75001" +170811,AA Batteries (4-pack),1,3.84,02/09/19 15:41,"878 8th St, Los Angeles, CA 90001" +170812,34in Ultrawide Monitor,1,379.99,02/05/19 16:28,"422 Pine St, New York City, NY 10001" +170813,Lightning Charging Cable,1,14.95,02/01/19 16:52,"461 4th St, Dallas, TX 75001" +170814,AAA Batteries (4-pack),1,2.99,02/03/19 12:16,"839 Madison St, New York City, NY 10001" +170815,27in FHD Monitor,1,149.99,02/15/19 18:51,"786 Church St, San Francisco, CA 94016" +170816,iPhone,1,700,02/10/19 19:07,"649 Spruce St, Boston, MA 02215" +170817,27in 4K Gaming Monitor,1,389.99,02/23/19 11:52,"678 Wilson St, Portland, OR 97035" +170818,Lightning Charging Cable,1,14.95,02/13/19 16:32,"57 12th St, San Francisco, CA 94016" +170819,USB-C Charging Cable,1,11.95,02/05/19 12:03,"477 Wilson St, Portland, ME 04101" +170820,Google Phone,1,600,02/02/19 17:06,"89 Walnut St, San Francisco, CA 94016" +170820,USB-C Charging Cable,1,11.95,02/02/19 17:06,"89 Walnut St, San Francisco, CA 94016" +170821,Bose SoundSport Headphones,1,99.99,02/16/19 20:59,"124 Cedar St, Seattle, WA 98101" +170822,Wired Headphones,1,11.99,02/11/19 21:25,"23 Walnut St, Seattle, WA 98101" +170823,Lightning Charging Cable,1,14.95,02/11/19 06:08,"46 Park St, Los Angeles, CA 90001" +170824,LG Dryer,1,600.0,02/08/19 18:21,"229 Church St, Boston, MA 02215" +170825,AAA Batteries (4-pack),1,2.99,02/17/19 14:32,"33 7th St, New York City, NY 10001" +170826,AA Batteries (4-pack),1,3.84,02/23/19 23:59,"96 Maple St, Los Angeles, CA 90001" +170827,Apple Airpods Headphones,1,150,02/07/19 14:53,"800 Pine St, Los Angeles, CA 90001" +170828,USB-C Charging Cable,2,11.95,02/04/19 15:00,"752 6th St, San Francisco, CA 94016" +170829,Bose SoundSport Headphones,1,99.99,02/28/19 20:11,"213 West St, San Francisco, CA 94016" +170830,AA Batteries (4-pack),1,3.84,02/09/19 12:05,"295 Ridge St, Seattle, WA 98101" +170831,Lightning Charging Cable,1,14.95,02/11/19 09:29,"176 Chestnut St, Austin, TX 73301" +170832,USB-C Charging Cable,1,11.95,02/07/19 16:33,"931 10th St, Boston, MA 02215" +170833,USB-C Charging Cable,1,11.95,02/12/19 18:07,"536 Meadow St, Boston, MA 02215" +170834,ThinkPad Laptop,1,999.99,02/06/19 19:28,"825 Ridge St, Boston, MA 02215" +170835,USB-C Charging Cable,1,11.95,02/22/19 22:29,"291 Jackson St, Los Angeles, CA 90001" +170836,Lightning Charging Cable,1,14.95,02/23/19 17:15,"205 River St, Portland, OR 97035" +170837,Lightning Charging Cable,1,14.95,02/16/19 15:17,"251 Madison St, Los Angeles, CA 90001" +170838,Google Phone,1,600,02/05/19 09:00,"353 4th St, Boston, MA 02215" +170838,USB-C Charging Cable,2,11.95,02/05/19 09:00,"353 4th St, Boston, MA 02215" +170838,Bose SoundSport Headphones,1,99.99,02/05/19 09:00,"353 4th St, Boston, MA 02215" +170839,Flatscreen TV,1,300,02/27/19 11:57,"789 Dogwood St, San Francisco, CA 94016" +170840,Wired Headphones,1,11.99,02/09/19 01:16,"395 Johnson St, San Francisco, CA 94016" +170841,20in Monitor,1,109.99,02/28/19 12:48,"416 Dogwood St, Atlanta, GA 30301" +170842,Lightning Charging Cable,1,14.95,02/03/19 21:06,"288 Cedar St, San Francisco, CA 94016" +170843,Lightning Charging Cable,1,14.95,02/18/19 16:04,"471 11th St, Austin, TX 73301" +170844,Macbook Pro Laptop,1,1700,02/20/19 14:24,"482 Maple St, Boston, MA 02215" +170845,iPhone,1,700,02/15/19 22:06,"27 Cherry St, New York City, NY 10001" +170845,Apple Airpods Headphones,1,150,02/15/19 22:06,"27 Cherry St, New York City, NY 10001" +170846,AAA Batteries (4-pack),1,2.99,02/15/19 16:26,"302 10th St, Los Angeles, CA 90001" +170847,Lightning Charging Cable,1,14.95,02/09/19 18:09,"706 River St, Austin, TX 73301" +170848,27in FHD Monitor,1,149.99,02/20/19 08:24,"724 Forest St, Atlanta, GA 30301" +170849,AAA Batteries (4-pack),2,2.99,02/03/19 00:33,"550 Jefferson St, Austin, TX 73301" +170850,ThinkPad Laptop,1,999.99,02/14/19 20:39,"166 Lake St, New York City, NY 10001" +170851,AA Batteries (4-pack),1,3.84,02/17/19 12:38,"945 Lakeview St, Seattle, WA 98101" +170852,Bose SoundSport Headphones,1,99.99,02/04/19 09:28,"92 South St, Atlanta, GA 30301" +170853,USB-C Charging Cable,1,11.95,02/13/19 17:11,"521 Meadow St, Dallas, TX 75001" +170854,34in Ultrawide Monitor,1,379.99,02/05/19 13:24,"58 Meadow St, Los Angeles, CA 90001" +170855,AAA Batteries (4-pack),1,2.99,02/13/19 20:22,"136 2nd St, Dallas, TX 75001" +170856,Lightning Charging Cable,1,14.95,02/01/19 18:10,"20 9th St, Boston, MA 02215" +170857,Wired Headphones,1,11.99,02/08/19 12:36,"796 8th St, San Francisco, CA 94016" +170858,AAA Batteries (4-pack),1,2.99,02/23/19 12:09,"560 North St, New York City, NY 10001" +170859,34in Ultrawide Monitor,1,379.99,02/28/19 09:26,"981 Jefferson St, Seattle, WA 98101" +170860,27in FHD Monitor,1,149.99,02/24/19 08:16,"892 Spruce St, Seattle, WA 98101" +170861,AA Batteries (4-pack),1,3.84,02/19/19 17:17,"170 Johnson St, Atlanta, GA 30301" +170862,Lightning Charging Cable,1,14.95,02/10/19 13:34,"960 Lake St, Seattle, WA 98101" +170863,AAA Batteries (4-pack),2,2.99,02/27/19 19:26,"285 Main St, San Francisco, CA 94016" +170864,USB-C Charging Cable,1,11.95,02/25/19 08:16,"168 Washington St, Seattle, WA 98101" +170865,Apple Airpods Headphones,1,150,02/13/19 11:38,"708 Cedar St, Seattle, WA 98101" +170866,34in Ultrawide Monitor,1,379.99,02/24/19 09:42,"261 North St, Seattle, WA 98101" +170867,20in Monitor,1,109.99,02/13/19 13:17,"236 7th St, Boston, MA 02215" +170868,Wired Headphones,2,11.99,02/11/19 21:00,"617 Walnut St, Boston, MA 02215" +170869,Flatscreen TV,1,300,02/01/19 22:50,"246 Hill St, Los Angeles, CA 90001" +170870,20in Monitor,1,109.99,02/10/19 14:48,"205 5th St, Dallas, TX 75001" +170871,AA Batteries (4-pack),2,3.84,02/07/19 17:20,"628 Madison St, San Francisco, CA 94016" +170872,Apple Airpods Headphones,1,150,02/28/19 17:32,"132 Cherry St, San Francisco, CA 94016" +170873,AAA Batteries (4-pack),1,2.99,02/22/19 15:26,"471 Hickory St, Dallas, TX 75001" +170874,USB-C Charging Cable,1,11.95,02/05/19 12:51,"310 Maple St, San Francisco, CA 94016" +170875,Vareebadd Phone,1,400,02/09/19 23:31,"300 Walnut St, San Francisco, CA 94016" +170876,USB-C Charging Cable,1,11.95,02/16/19 21:58,"323 Sunset St, Portland, OR 97035" +170877,AA Batteries (4-pack),2,3.84,02/17/19 15:29,"602 Cedar St, Boston, MA 02215" +170878,AA Batteries (4-pack),2,3.84,02/21/19 11:27,"888 Lakeview St, San Francisco, CA 94016" +170879,USB-C Charging Cable,1,11.95,02/25/19 11:05,"412 13th St, New York City, NY 10001" +170880,34in Ultrawide Monitor,1,379.99,02/06/19 21:07,"381 Maple St, Los Angeles, CA 90001" +170881,USB-C Charging Cable,1,11.95,02/21/19 12:45,"357 Park St, San Francisco, CA 94016" +170882,USB-C Charging Cable,1,11.95,02/03/19 18:50,"844 Church St, Seattle, WA 98101" +170883,USB-C Charging Cable,1,11.95,02/13/19 00:27,"640 Main St, Seattle, WA 98101" +170884,Lightning Charging Cable,1,14.95,02/12/19 10:05,"83 Adams St, Seattle, WA 98101" +170885,34in Ultrawide Monitor,1,379.99,02/28/19 01:16,"885 Forest St, Boston, MA 02215" +170886,Lightning Charging Cable,1,14.95,02/07/19 13:12,"298 6th St, Los Angeles, CA 90001" +170886,iPhone,1,700,02/07/19 13:12,"298 6th St, Los Angeles, CA 90001" +170887,Lightning Charging Cable,1,14.95,02/04/19 18:44,"152 Cedar St, San Francisco, CA 94016" +170888,iPhone,1,700,02/06/19 18:07,"299 11th St, Los Angeles, CA 90001" +170889,USB-C Charging Cable,1,11.95,02/06/19 19:59,"3 Hill St, New York City, NY 10001" +170890,Bose SoundSport Headphones,1,99.99,02/24/19 09:50,"510 8th St, Austin, TX 73301" +170891,Flatscreen TV,1,300,02/22/19 18:07,"714 Park St, Los Angeles, CA 90001" +170892,27in FHD Monitor,1,149.99,02/22/19 19:26,"692 Forest St, Portland, OR 97035" +170893,Wired Headphones,1,11.99,02/16/19 14:09,"953 West St, Portland, OR 97035" +170894,ThinkPad Laptop,1,999.99,02/11/19 13:07,"572 Johnson St, San Francisco, CA 94016" +170895,LG Washing Machine,1,600.0,02/02/19 11:10,"662 Dogwood St, New York City, NY 10001" +170896,Lightning Charging Cable,1,14.95,02/04/19 12:05,"489 Elm St, Seattle, WA 98101" +170897,Lightning Charging Cable,1,14.95,02/27/19 17:51,"557 6th St, San Francisco, CA 94016" +170898,Lightning Charging Cable,1,14.95,02/26/19 17:17,"104 Elm St, Seattle, WA 98101" +170899,34in Ultrawide Monitor,1,379.99,02/16/19 00:46,"599 6th St, Dallas, TX 75001" +170900,USB-C Charging Cable,1,11.95,02/28/19 05:50,"346 Willow St, Dallas, TX 75001" +170901,USB-C Charging Cable,1,11.95,02/26/19 23:10,"578 Lincoln St, Seattle, WA 98101" +170902,Wired Headphones,1,11.99,02/03/19 06:49,"172 Johnson St, Boston, MA 02215" +170903,Lightning Charging Cable,1,14.95,02/14/19 08:00,"579 Jefferson St, Los Angeles, CA 90001" +170904,USB-C Charging Cable,1,11.95,02/05/19 17:48,"548 South St, San Francisco, CA 94016" +170905,USB-C Charging Cable,1,11.95,02/01/19 11:08,"594 Lakeview St, Atlanta, GA 30301" +170906,AAA Batteries (4-pack),1,2.99,02/22/19 09:09,"102 Forest St, San Francisco, CA 94016" +170907,Apple Airpods Headphones,1,150,02/23/19 15:52,"577 11th St, San Francisco, CA 94016" +170908,Macbook Pro Laptop,1,1700,02/17/19 07:41,"727 Johnson St, Boston, MA 02215" +170909,Bose SoundSport Headphones,1,99.99,02/02/19 17:51,"538 West St, Atlanta, GA 30301" +170910,27in FHD Monitor,1,149.99,02/24/19 18:10,"707 7th St, Los Angeles, CA 90001" +170911,Bose SoundSport Headphones,1,99.99,02/22/19 20:15,"268 Cherry St, Los Angeles, CA 90001" +170912,AAA Batteries (4-pack),1,2.99,02/14/19 23:34,"909 11th St, San Francisco, CA 94016" +170913,USB-C Charging Cable,2,11.95,02/25/19 22:40,"859 Meadow St, Austin, TX 73301" +170914,Wired Headphones,1,11.99,02/10/19 08:38,"462 Walnut St, Atlanta, GA 30301" +170915,Bose SoundSport Headphones,1,99.99,02/07/19 11:54,"839 Hickory St, Atlanta, GA 30301" +170916,AA Batteries (4-pack),2,3.84,02/23/19 20:10,"101 Pine St, New York City, NY 10001" +170917,Google Phone,1,600,02/25/19 11:36,"365 10th St, Los Angeles, CA 90001" +170918,27in 4K Gaming Monitor,1,389.99,02/12/19 18:32,"34 Maple St, Boston, MA 02215" +170919,Apple Airpods Headphones,1,150,02/16/19 13:14,"892 Meadow St, New York City, NY 10001" +170920,AAA Batteries (4-pack),1,2.99,02/07/19 22:33,"258 Wilson St, San Francisco, CA 94016" +170921,AA Batteries (4-pack),2,3.84,02/02/19 22:51,"90 11th St, San Francisco, CA 94016" +170922,USB-C Charging Cable,1,11.95,02/15/19 20:36,"475 10th St, New York City, NY 10001" +170923,Wired Headphones,1,11.99,02/20/19 19:02,"40 Cherry St, New York City, NY 10001" +170924,Flatscreen TV,1,300,02/11/19 18:40,"917 Johnson St, New York City, NY 10001" +170925,AAA Batteries (4-pack),1,2.99,02/16/19 16:12,"326 8th St, Los Angeles, CA 90001" +170926,AA Batteries (4-pack),1,3.84,02/06/19 18:19,"299 Park St, New York City, NY 10001" +170927,Wired Headphones,1,11.99,02/15/19 15:48,"301 12th St, Los Angeles, CA 90001" +170928,AAA Batteries (4-pack),1,2.99,02/23/19 02:02,"199 Walnut St, San Francisco, CA 94016" +170929,Macbook Pro Laptop,1,1700,02/15/19 15:16,"966 2nd St, San Francisco, CA 94016" +170929,Lightning Charging Cable,1,14.95,02/15/19 15:16,"966 2nd St, San Francisco, CA 94016" +170930,Apple Airpods Headphones,1,150,02/25/19 19:45,"217 11th St, Dallas, TX 75001" +170931,USB-C Charging Cable,1,11.95,02/03/19 12:43,"887 Ridge St, Austin, TX 73301" +170932,Bose SoundSport Headphones,1,99.99,02/11/19 11:33,"999 13th St, San Francisco, CA 94016" +170933,USB-C Charging Cable,1,11.95,02/11/19 09:48,"20 13th St, Boston, MA 02215" +,,,,, +170934,Wired Headphones,1,11.99,02/07/19 15:37,"175 Highland St, Dallas, TX 75001" +170935,Apple Airpods Headphones,1,150,02/24/19 22:17,"795 North St, Boston, MA 02215" +170936,Wired Headphones,1,11.99,02/28/19 20:08,"798 Willow St, San Francisco, CA 94016" +170937,Wired Headphones,1,11.99,02/16/19 15:00,"169 Main St, Boston, MA 02215" +170938,Wired Headphones,1,11.99,02/09/19 18:35,"944 Ridge St, San Francisco, CA 94016" +170939,Bose SoundSport Headphones,1,99.99,02/11/19 12:23,"605 Johnson St, Los Angeles, CA 90001" +170940,Lightning Charging Cable,1,14.95,02/20/19 10:12,"162 Sunset St, Portland, ME 04101" +170941,Wired Headphones,1,11.99,02/18/19 20:39,"235 Highland St, New York City, NY 10001" +170942,20in Monitor,1,109.99,02/22/19 11:53,"455 Washington St, Seattle, WA 98101" +170943,Lightning Charging Cable,1,14.95,02/26/19 06:57,"117 Hill St, Los Angeles, CA 90001" +170944,27in FHD Monitor,1,149.99,02/02/19 08:25,"568 Cherry St, San Francisco, CA 94016" +170945,AAA Batteries (4-pack),1,2.99,02/09/19 21:55,"245 Church St, New York City, NY 10001" +170945,AAA Batteries (4-pack),1,2.99,02/09/19 21:55,"245 Church St, New York City, NY 10001" +170946,Apple Airpods Headphones,1,150,02/08/19 13:27,"448 13th St, Boston, MA 02215" +170947,27in FHD Monitor,1,149.99,02/19/19 00:26,"852 Cherry St, Boston, MA 02215" +170948,AAA Batteries (4-pack),2,2.99,02/07/19 13:55,"918 Maple St, Seattle, WA 98101" +170949,Apple Airpods Headphones,1,150,02/20/19 02:16,"294 Chestnut St, San Francisco, CA 94016" +170950,Bose SoundSport Headphones,1,99.99,02/05/19 07:06,"865 Elm St, Austin, TX 73301" +170951,Macbook Pro Laptop,1,1700,02/05/19 13:50,"423 10th St, Austin, TX 73301" +170952,Flatscreen TV,1,300,02/18/19 09:51,"740 Jackson St, New York City, NY 10001" +170953,27in 4K Gaming Monitor,1,389.99,02/14/19 13:00,"872 Johnson St, Boston, MA 02215" +170954,AA Batteries (4-pack),2,3.84,02/09/19 13:58,"322 9th St, Seattle, WA 98101" +170955,Vareebadd Phone,1,400,02/08/19 19:28,"856 Elm St, Dallas, TX 75001" +170955,USB-C Charging Cable,1,11.95,02/08/19 19:28,"856 Elm St, Dallas, TX 75001" +170956,USB-C Charging Cable,2,11.95,02/26/19 17:18,"367 North St, San Francisco, CA 94016" +170957,27in FHD Monitor,1,149.99,02/17/19 17:27,"318 Lakeview St, Dallas, TX 75001" +170958,Flatscreen TV,1,300,02/28/19 23:32,"261 Walnut St, New York City, NY 10001" +170959,Wired Headphones,1,11.99,02/26/19 17:52,"142 Jackson St, San Francisco, CA 94016" +170960,AAA Batteries (4-pack),4,2.99,02/11/19 17:44,"680 Wilson St, Los Angeles, CA 90001" +170961,iPhone,1,700,02/28/19 18:38,"609 Park St, Los Angeles, CA 90001" +170962,AAA Batteries (4-pack),1,2.99,02/17/19 23:45,"683 4th St, San Francisco, CA 94016" +170963,AA Batteries (4-pack),2,3.84,02/19/19 06:26,"686 Center St, San Francisco, CA 94016" +170964,27in FHD Monitor,1,149.99,02/11/19 18:15,"741 Cherry St, Atlanta, GA 30301" +170965,USB-C Charging Cable,1,11.95,02/02/19 12:47,"273 10th St, Los Angeles, CA 90001" +170966,AAA Batteries (4-pack),1,2.99,02/22/19 17:55,"582 West St, Portland, OR 97035" +170967,USB-C Charging Cable,2,11.95,02/14/19 10:27,"828 Main St, San Francisco, CA 94016" +170968,Lightning Charging Cable,1,14.95,02/26/19 20:14,"76 Maple St, Dallas, TX 75001" +170969,34in Ultrawide Monitor,1,379.99,02/12/19 04:37,"236 7th St, Seattle, WA 98101" +170970,iPhone,1,700,02/17/19 21:41,"116 Willow St, New York City, NY 10001" +170971,AA Batteries (4-pack),1,3.84,02/01/19 11:57,"766 8th St, Dallas, TX 75001" +170972,27in FHD Monitor,1,149.99,02/09/19 17:09,"304 Highland St, San Francisco, CA 94016" +170973,AA Batteries (4-pack),1,3.84,02/12/19 14:43,"399 13th St, Los Angeles, CA 90001" +170974,AAA Batteries (4-pack),1,2.99,02/16/19 22:09,"719 Maple St, New York City, NY 10001" +,,,,, +170975,ThinkPad Laptop,1,999.99,02/03/19 21:45,"985 Ridge St, San Francisco, CA 94016" +170976,27in 4K Gaming Monitor,1,389.99,02/03/19 21:19,"570 Jackson St, New York City, NY 10001" +170977,AAA Batteries (4-pack),1,2.99,02/10/19 18:22,"605 Dogwood St, Seattle, WA 98101" +170978,Apple Airpods Headphones,1,150,02/17/19 12:55,"306 Dogwood St, San Francisco, CA 94016" +170979,USB-C Charging Cable,1,11.95,02/21/19 19:31,"607 Sunset St, Dallas, TX 75001" +170980,Bose SoundSport Headphones,1,99.99,02/10/19 09:09,"61 2nd St, San Francisco, CA 94016" +170981,Apple Airpods Headphones,1,150,02/19/19 11:29,"2 West St, Dallas, TX 75001" +170982,USB-C Charging Cable,1,11.95,02/26/19 14:30,"363 Jackson St, San Francisco, CA 94016" +170983,Lightning Charging Cable,1,14.95,02/11/19 15:57,"66 Highland St, San Francisco, CA 94016" +170984,Apple Airpods Headphones,1,150,02/28/19 22:11,"590 6th St, Boston, MA 02215" +170985,Apple Airpods Headphones,1,150,02/21/19 17:58,"797 Washington St, San Francisco, CA 94016" +170986,Lightning Charging Cable,1,14.95,02/04/19 14:36,"89 Lakeview St, Dallas, TX 75001" +170987,27in FHD Monitor,1,149.99,02/03/19 06:33,"126 Madison St, New York City, NY 10001" +170988,USB-C Charging Cable,1,11.95,02/11/19 10:04,"642 Madison St, Seattle, WA 98101" +170989,Apple Airpods Headphones,1,150,02/07/19 12:28,"565 West St, Atlanta, GA 30301" +170990,AA Batteries (4-pack),1,3.84,02/17/19 11:07,"700 Dogwood St, San Francisco, CA 94016" +170991,27in 4K Gaming Monitor,1,389.99,02/17/19 13:54,"125 14th St, New York City, NY 10001" +170992,AA Batteries (4-pack),1,3.84,02/03/19 00:04,"691 North St, San Francisco, CA 94016" +170993,Bose SoundSport Headphones,1,99.99,02/09/19 22:28,"86 Washington St, Seattle, WA 98101" +170994,Bose SoundSport Headphones,1,99.99,02/25/19 04:33,"205 11th St, Austin, TX 73301" +170995,Lightning Charging Cable,1,14.95,02/01/19 13:46,"459 South St, Los Angeles, CA 90001" +170996,Wired Headphones,2,11.99,02/01/19 12:51,"678 12th St, New York City, NY 10001" +170997,AAA Batteries (4-pack),3,2.99,02/11/19 21:15,"14 14th St, Seattle, WA 98101" +170998,Bose SoundSport Headphones,2,99.99,02/24/19 20:54,"541 Meadow St, Los Angeles, CA 90001" +170999,27in 4K Gaming Monitor,1,389.99,02/25/19 19:25,"537 Walnut St, Los Angeles, CA 90001" +,,,,, +171000,34in Ultrawide Monitor,1,379.99,02/16/19 09:39,"659 West St, Los Angeles, CA 90001" +171001,Vareebadd Phone,1,400,02/10/19 00:13,"317 6th St, Boston, MA 02215" +171001,USB-C Charging Cable,1,11.95,02/10/19 00:13,"317 6th St, Boston, MA 02215" +171002,Lightning Charging Cable,1,14.95,02/08/19 21:40,"929 Spruce St, New York City, NY 10001" +171003,34in Ultrawide Monitor,1,379.99,02/10/19 18:19,"502 Main St, Atlanta, GA 30301" +171004,AAA Batteries (4-pack),2,2.99,02/26/19 15:42,"381 South St, New York City, NY 10001" +171005,USB-C Charging Cable,1,11.95,02/17/19 06:41,"586 Lakeview St, Boston, MA 02215" +171006,27in FHD Monitor,1,149.99,02/02/19 15:16,"564 Meadow St, San Francisco, CA 94016" +171007,34in Ultrawide Monitor,1,379.99,02/04/19 17:54,"755 Walnut St, Boston, MA 02215" +171008,34in Ultrawide Monitor,1,379.99,02/04/19 11:00,"300 South St, San Francisco, CA 94016" +171009,Apple Airpods Headphones,1,150,02/21/19 12:30,"219 Willow St, San Francisco, CA 94016" +171010,Wired Headphones,1,11.99,02/15/19 00:15,"417 Lake St, San Francisco, CA 94016" +171011,Wired Headphones,1,11.99,02/07/19 01:15,"714 Park St, Austin, TX 73301" +171012,34in Ultrawide Monitor,1,379.99,02/06/19 17:13,"514 7th St, San Francisco, CA 94016" +171013,27in 4K Gaming Monitor,1,389.99,02/21/19 21:44,"254 Adams St, New York City, NY 10001" +171014,iPhone,1,700,02/25/19 13:51,"777 2nd St, Los Angeles, CA 90001" +171015,USB-C Charging Cable,1,11.95,02/01/19 06:35,"276 Spruce St, San Francisco, CA 94016" +171016,ThinkPad Laptop,1,999.99,02/26/19 20:22,"260 10th St, Austin, TX 73301" +171017,AA Batteries (4-pack),1,3.84,02/01/19 17:25,"173 Main St, San Francisco, CA 94016" +171018,Google Phone,1,600,02/17/19 20:05,"442 Johnson St, Boston, MA 02215" +171019,Macbook Pro Laptop,1,1700,02/20/19 09:41,"912 Wilson St, Los Angeles, CA 90001" +171020,Apple Airpods Headphones,1,150,02/14/19 11:02,"150 Lakeview St, San Francisco, CA 94016" +171021,Bose SoundSport Headphones,1,99.99,02/22/19 20:31,"140 Jefferson St, Los Angeles, CA 90001" +171022,Macbook Pro Laptop,1,1700,02/27/19 14:39,"630 Jefferson St, San Francisco, CA 94016" +171023,Wired Headphones,2,11.99,02/23/19 12:41,"860 Elm St, Los Angeles, CA 90001" +171024,Lightning Charging Cable,1,14.95,02/24/19 16:00,"635 West St, Atlanta, GA 30301" +171025,Bose SoundSport Headphones,1,99.99,02/09/19 11:12,"64 Forest St, Los Angeles, CA 90001" +171026,Bose SoundSport Headphones,1,99.99,02/10/19 14:03,"4 River St, San Francisco, CA 94016" +171027,Macbook Pro Laptop,1,1700,02/04/19 12:44,"269 Main St, New York City, NY 10001" +171028,Wired Headphones,1,11.99,02/27/19 11:02,"964 Church St, Austin, TX 73301" +171029,AA Batteries (4-pack),2,3.84,02/05/19 16:42,"822 Meadow St, Austin, TX 73301" +171030,Flatscreen TV,1,300,02/10/19 13:41,"676 Adams St, Austin, TX 73301" +171031,Apple Airpods Headphones,1,150,02/04/19 20:27,"153 Hickory St, Boston, MA 02215" +171032,Wired Headphones,1,11.99,02/25/19 17:54,"602 Chestnut St, Portland, OR 97035" +171033,iPhone,1,700,02/05/19 01:17,"55 West St, Dallas, TX 75001" +171034,iPhone,1,700,02/19/19 06:20,"961 Sunset St, Atlanta, GA 30301" +171035,USB-C Charging Cable,1,11.95,02/02/19 11:18,"726 Forest St, Seattle, WA 98101" +171036,ThinkPad Laptop,1,999.99,02/05/19 10:52,"400 Meadow St, Atlanta, GA 30301" +171037,Bose SoundSport Headphones,1,99.99,02/03/19 14:08,"273 Maple St, San Francisco, CA 94016" +171038,34in Ultrawide Monitor,1,379.99,02/28/19 13:04,"963 Highland St, Atlanta, GA 30301" +171039,Lightning Charging Cable,1,14.95,02/20/19 19:05,"379 1st St, San Francisco, CA 94016" +171040,Apple Airpods Headphones,1,150,02/06/19 10:54,"675 South St, San Francisco, CA 94016" +171041,Apple Airpods Headphones,1,150,02/26/19 08:52,"983 1st St, San Francisco, CA 94016" +171042,USB-C Charging Cable,1,11.95,02/12/19 16:01,"815 Park St, New York City, NY 10001" +171043,AA Batteries (4-pack),1,3.84,02/14/19 15:58,"509 Hill St, San Francisco, CA 94016" +171044,34in Ultrawide Monitor,1,379.99,02/23/19 21:27,"838 1st St, Atlanta, GA 30301" +171045,USB-C Charging Cable,1,11.95,02/04/19 17:52,"818 Wilson St, Boston, MA 02215" +171046,34in Ultrawide Monitor,1,379.99,02/22/19 20:18,"360 Adams St, San Francisco, CA 94016" +171047,AA Batteries (4-pack),1,3.84,02/20/19 19:05,"560 River St, Los Angeles, CA 90001" +171048,Bose SoundSport Headphones,1,99.99,02/13/19 22:55,"963 Church St, Austin, TX 73301" +171049,USB-C Charging Cable,1,11.95,02/24/19 16:43,"77 Chestnut St, New York City, NY 10001" +171050,Lightning Charging Cable,1,14.95,02/26/19 12:29,"625 Lincoln St, Austin, TX 73301" +171051,Wired Headphones,2,11.99,02/07/19 11:07,"172 Cherry St, San Francisco, CA 94016" +171052,Lightning Charging Cable,1,14.95,02/02/19 19:41,"590 Meadow St, Los Angeles, CA 90001" +171053,Bose SoundSport Headphones,1,99.99,02/21/19 16:45,"755 Main St, Boston, MA 02215" +171054,Google Phone,1,600,02/15/19 22:27,"891 Jefferson St, Austin, TX 73301" +171054,USB-C Charging Cable,1,11.95,02/15/19 22:27,"891 Jefferson St, Austin, TX 73301" +171055,Apple Airpods Headphones,1,150,02/04/19 18:08,"396 Washington St, San Francisco, CA 94016" +171056,AAA Batteries (4-pack),1,2.99,02/27/19 20:28,"55 Cherry St, Portland, OR 97035" +171057,USB-C Charging Cable,1,11.95,02/06/19 14:35,"940 4th St, San Francisco, CA 94016" +171058,ThinkPad Laptop,1,999.99,02/09/19 19:48,"198 Lakeview St, San Francisco, CA 94016" +171059,34in Ultrawide Monitor,1,379.99,02/28/19 10:14,"709 Ridge St, Boston, MA 02215" +171060,USB-C Charging Cable,2,11.95,02/25/19 09:15,"676 Willow St, Austin, TX 73301" +171061,Google Phone,1,600,02/01/19 21:36,"880 Park St, San Francisco, CA 94016" +171062,USB-C Charging Cable,1,11.95,02/17/19 13:00,"554 Cedar St, Los Angeles, CA 90001" +171063,Lightning Charging Cable,1,14.95,02/05/19 07:45,"764 Cherry St, Boston, MA 02215" +171063,27in FHD Monitor,1,149.99,02/05/19 07:45,"764 Cherry St, Boston, MA 02215" +171064,iPhone,1,700,02/07/19 10:26,"695 Madison St, New York City, NY 10001" +171065,ThinkPad Laptop,1,999.99,02/20/19 09:53,"75 Sunset St, New York City, NY 10001" +171066,Apple Airpods Headphones,1,150,02/06/19 14:36,"356 Pine St, Seattle, WA 98101" +171067,USB-C Charging Cable,1,11.95,02/04/19 14:50,"235 Hickory St, Boston, MA 02215" +171068,Lightning Charging Cable,1,14.95,02/10/19 09:08,"79 Hickory St, Seattle, WA 98101" +171069,Wired Headphones,1,11.99,02/17/19 09:34,"401 Elm St, Los Angeles, CA 90001" +171070,Apple Airpods Headphones,1,150,02/01/19 13:02,"202 Center St, Atlanta, GA 30301" +171070,Wired Headphones,1,11.99,02/01/19 13:02,"202 Center St, Atlanta, GA 30301" +171071,AA Batteries (4-pack),4,3.84,02/24/19 17:46,"42 11th St, Los Angeles, CA 90001" +171072,34in Ultrawide Monitor,1,379.99,02/07/19 18:23,"307 5th St, San Francisco, CA 94016" +171073,Wired Headphones,1,11.99,02/01/19 16:30,"950 Jackson St, San Francisco, CA 94016" +171074,Apple Airpods Headphones,1,150,02/23/19 08:19,"436 Hickory St, Seattle, WA 98101" +171075,Apple Airpods Headphones,1,150,02/01/19 22:47,"805 Washington St, Austin, TX 73301" +171076,AA Batteries (4-pack),1,3.84,02/19/19 21:09,"6 Ridge St, San Francisco, CA 94016" +171077,AAA Batteries (4-pack),1,2.99,02/26/19 14:16,"573 Jackson St, Portland, OR 97035" +171078,AA Batteries (4-pack),1,3.84,02/09/19 03:32,"753 Hill St, San Francisco, CA 94016" +171079,Flatscreen TV,1,300,02/20/19 18:08,"703 14th St, Atlanta, GA 30301" +171080,Wired Headphones,2,11.99,02/04/19 17:00,"148 14th St, New York City, NY 10001" +171081,27in 4K Gaming Monitor,1,389.99,02/25/19 18:35,"484 Spruce St, Dallas, TX 75001" +171082,Lightning Charging Cable,1,14.95,02/15/19 13:03,"734 Highland St, Los Angeles, CA 90001" +171083,Apple Airpods Headphones,1,150,02/11/19 23:44,"863 2nd St, Austin, TX 73301" +171084,Apple Airpods Headphones,1,150,02/03/19 22:01,"690 Dogwood St, Boston, MA 02215" +171085,27in 4K Gaming Monitor,1,389.99,02/09/19 13:29,"905 Johnson St, Seattle, WA 98101" +171086,Wired Headphones,1,11.99,02/28/19 22:25,"182 Church St, Seattle, WA 98101" +171087,USB-C Charging Cable,1,11.95,02/15/19 19:34,"321 1st St, San Francisco, CA 94016" +171088,AAA Batteries (4-pack),2,2.99,02/26/19 21:17,"399 11th St, New York City, NY 10001" +171089,Apple Airpods Headphones,1,150,02/28/19 12:51,"570 Elm St, Austin, TX 73301" +171090,Wired Headphones,2,11.99,02/02/19 21:05,"465 Lincoln St, Atlanta, GA 30301" +171091,Vareebadd Phone,1,400,02/14/19 19:54,"651 Lakeview St, San Francisco, CA 94016" +171092,AAA Batteries (4-pack),1,2.99,02/18/19 11:28,"842 Lake St, Atlanta, GA 30301" +171093,Wired Headphones,1,11.99,02/17/19 13:54,"766 Jackson St, Portland, OR 97035" +171094,AA Batteries (4-pack),3,3.84,02/15/19 13:12,"810 Jefferson St, New York City, NY 10001" +171095,iPhone,1,700,02/08/19 04:13,"960 12th St, San Francisco, CA 94016" +171096,Wired Headphones,1,11.99,02/19/19 20:25,"25 North St, New York City, NY 10001" +171097,USB-C Charging Cable,1,11.95,02/25/19 10:41,"709 Jackson St, Dallas, TX 75001" +171098,Vareebadd Phone,1,400,02/17/19 09:25,"656 Center St, Atlanta, GA 30301" +171098,USB-C Charging Cable,1,11.95,02/17/19 09:25,"656 Center St, Atlanta, GA 30301" +171099,Wired Headphones,2,11.99,02/04/19 09:58,"709 West St, San Francisco, CA 94016" +171100,Wired Headphones,1,11.99,02/03/19 13:58,"550 Meadow St, Seattle, WA 98101" +171101,27in FHD Monitor,1,149.99,02/07/19 19:31,"505 13th St, Dallas, TX 75001" +171102,USB-C Charging Cable,1,11.95,02/12/19 18:04,"595 Willow St, Seattle, WA 98101" +171103,USB-C Charging Cable,1,11.95,02/10/19 09:22,"322 Church St, Dallas, TX 75001" +171104,Wired Headphones,1,11.99,02/15/19 03:59,"462 Adams St, San Francisco, CA 94016" +171105,USB-C Charging Cable,1,11.95,02/14/19 00:29,"509 Spruce St, San Francisco, CA 94016" +171106,Wired Headphones,1,11.99,02/12/19 22:44,"765 Sunset St, Seattle, WA 98101" +171107,AAA Batteries (4-pack),3,2.99,02/28/19 17:36,"797 Park St, Portland, OR 97035" +171108,Lightning Charging Cable,1,14.95,02/22/19 12:01,"93 Jefferson St, Dallas, TX 75001" +171109,20in Monitor,1,109.99,02/26/19 16:41,"686 Lincoln St, Dallas, TX 75001" +171110,27in FHD Monitor,1,149.99,02/01/19 10:34,"330 Lake St, Los Angeles, CA 90001" +171111,Lightning Charging Cable,1,14.95,02/06/19 17:54,"560 6th St, San Francisco, CA 94016" +171112,Lightning Charging Cable,1,14.95,02/11/19 22:58,"191 11th St, New York City, NY 10001" +171113,Apple Airpods Headphones,1,150,02/19/19 22:56,"291 5th St, New York City, NY 10001" +171113,AA Batteries (4-pack),1,3.84,02/19/19 22:56,"291 5th St, New York City, NY 10001" +171114,AA Batteries (4-pack),2,3.84,02/21/19 21:21,"270 North St, San Francisco, CA 94016" +171115,AAA Batteries (4-pack),2,2.99,02/07/19 22:30,"985 Cherry St, Los Angeles, CA 90001" +171116,Bose SoundSport Headphones,1,99.99,02/19/19 00:43,"768 Hickory St, New York City, NY 10001" +171117,AAA Batteries (4-pack),1,2.99,02/28/19 13:23,"228 River St, San Francisco, CA 94016" +171118,27in FHD Monitor,1,149.99,02/24/19 00:19,"350 10th St, Austin, TX 73301" +171119,AA Batteries (4-pack),2,3.84,02/03/19 15:19,"476 West St, Boston, MA 02215" +171120,27in 4K Gaming Monitor,1,389.99,02/16/19 12:28,"954 Main St, San Francisco, CA 94016" +171121,Wired Headphones,1,11.99,02/11/19 10:54,"963 Dogwood St, Atlanta, GA 30301" +171122,Lightning Charging Cable,1,14.95,03/01/19 00:04,"864 Cherry St, San Francisco, CA 94016" +171123,27in FHD Monitor,1,149.99,02/12/19 09:58,"300 Lakeview St, Portland, OR 97035" +171124,Lightning Charging Cable,1,14.95,02/02/19 15:21,"520 11th St, Atlanta, GA 30301" +171125,27in FHD Monitor,1,149.99,02/21/19 20:12,"489 12th St, San Francisco, CA 94016" +171126,Apple Airpods Headphones,1,150,02/10/19 18:49,"742 Washington St, Atlanta, GA 30301" +171127,Lightning Charging Cable,1,14.95,02/09/19 11:00,"483 Wilson St, Portland, ME 04101" +171128,27in 4K Gaming Monitor,1,389.99,02/13/19 11:37,"828 Hickory St, Atlanta, GA 30301" +171129,Lightning Charging Cable,1,14.95,02/06/19 10:43,"246 Church St, Dallas, TX 75001" +171130,Wired Headphones,1,11.99,02/01/19 15:17,"77 Hill St, New York City, NY 10001" +171131,AAA Batteries (4-pack),1,2.99,02/26/19 14:32,"559 Highland St, Dallas, TX 75001" +171132,Wired Headphones,1,11.99,02/03/19 15:37,"237 Willow St, Los Angeles, CA 90001" +171133,Wired Headphones,1,11.99,02/04/19 23:24,"483 10th St, San Francisco, CA 94016" +171134,USB-C Charging Cable,1,11.95,02/14/19 07:53,"110 8th St, New York City, NY 10001" +171135,34in Ultrawide Monitor,1,379.99,02/16/19 20:46,"475 Center St, Seattle, WA 98101" +171136,AA Batteries (4-pack),2,3.84,02/09/19 11:15,"320 Cherry St, San Francisco, CA 94016" +171137,Bose SoundSport Headphones,1,99.99,02/26/19 13:38,"800 Elm St, San Francisco, CA 94016" +171138,AAA Batteries (4-pack),3,2.99,02/22/19 21:32,"587 Cedar St, New York City, NY 10001" +171139,Google Phone,1,600,02/24/19 16:40,"562 Walnut St, Dallas, TX 75001" +171140,27in FHD Monitor,1,149.99,02/09/19 20:44,"512 13th St, Los Angeles, CA 90001" +171141,27in FHD Monitor,1,149.99,02/20/19 09:37,"170 5th St, Los Angeles, CA 90001" +171142,Bose SoundSport Headphones,1,99.99,02/01/19 17:14,"551 Madison St, San Francisco, CA 94016" +171143,USB-C Charging Cable,1,11.95,02/10/19 13:02,"246 9th St, San Francisco, CA 94016" +171144,AA Batteries (4-pack),1,3.84,02/24/19 18:11,"750 4th St, Atlanta, GA 30301" +171145,AAA Batteries (4-pack),1,2.99,02/06/19 15:22,"116 Lakeview St, Los Angeles, CA 90001" +171146,Lightning Charging Cable,1,14.95,02/14/19 22:51,"976 11th St, San Francisco, CA 94016" +171147,Apple Airpods Headphones,1,150,02/06/19 10:42,"846 Willow St, New York City, NY 10001" +171148,USB-C Charging Cable,1,11.95,02/26/19 10:16,"961 Center St, San Francisco, CA 94016" +171149,AA Batteries (4-pack),1,3.84,02/27/19 13:44,"790 2nd St, Los Angeles, CA 90001" +171150,Lightning Charging Cable,1,14.95,02/05/19 19:27,"187 Highland St, New York City, NY 10001" +171151,ThinkPad Laptop,1,999.99,02/27/19 20:20,"662 7th St, Los Angeles, CA 90001" +171152,34in Ultrawide Monitor,1,379.99,02/17/19 18:56,"252 Jefferson St, Atlanta, GA 30301" +171153,iPhone,1,700,02/01/19 20:35,"646 6th St, Los Angeles, CA 90001" +171153,Wired Headphones,1,11.99,02/01/19 20:35,"646 6th St, Los Angeles, CA 90001" +171154,Wired Headphones,1,11.99,02/25/19 14:16,"283 5th St, Boston, MA 02215" +171155,34in Ultrawide Monitor,1,379.99,02/24/19 18:56,"427 Hill St, New York City, NY 10001" +171156,AA Batteries (4-pack),1,3.84,02/16/19 06:33,"54 Elm St, Atlanta, GA 30301" +171157,34in Ultrawide Monitor,1,379.99,02/21/19 18:57,"88 1st St, Boston, MA 02215" +171158,USB-C Charging Cable,1,11.95,02/01/19 19:39,"502 Highland St, Boston, MA 02215" +171159,34in Ultrawide Monitor,1,379.99,02/25/19 16:22,"682 Walnut St, Boston, MA 02215" +171160,Macbook Pro Laptop,1,1700,02/08/19 10:25,"922 5th St, Portland, OR 97035" +171161,27in FHD Monitor,1,149.99,02/02/19 12:46,"811 Park St, San Francisco, CA 94016" +171162,AAA Batteries (4-pack),2,2.99,02/07/19 14:16,"238 Jackson St, Dallas, TX 75001" +171163,Apple Airpods Headphones,1,150,02/22/19 09:17,"524 South St, Los Angeles, CA 90001" +171164,AA Batteries (4-pack),1,3.84,02/21/19 14:59,"525 Center St, San Francisco, CA 94016" +171165,Lightning Charging Cable,2,14.95,02/08/19 06:06,"259 13th St, San Francisco, CA 94016" +171166,AAA Batteries (4-pack),1,2.99,02/10/19 11:50,"233 Adams St, San Francisco, CA 94016" +171167,Wired Headphones,1,11.99,02/16/19 08:52,"513 Washington St, Austin, TX 73301" +171168,USB-C Charging Cable,1,11.95,02/14/19 18:26,"873 14th St, Dallas, TX 75001" +171169,AAA Batteries (4-pack),2,2.99,02/02/19 11:25,"716 1st St, Atlanta, GA 30301" +171170,Macbook Pro Laptop,1,1700,02/02/19 12:51,"279 10th St, Seattle, WA 98101" +171171,AA Batteries (4-pack),1,3.84,02/22/19 02:50,"307 West St, Los Angeles, CA 90001" +171172,USB-C Charging Cable,1,11.95,02/22/19 23:06,"645 South St, Atlanta, GA 30301" +171173,iPhone,1,700,02/23/19 23:00,"868 Spruce St, San Francisco, CA 94016" +171174,AAA Batteries (4-pack),2,2.99,02/12/19 19:53,"236 Main St, Portland, ME 04101" +171175,Bose SoundSport Headphones,1,99.99,02/20/19 20:07,"972 Meadow St, San Francisco, CA 94016" +171176,AA Batteries (4-pack),2,3.84,02/26/19 07:45,"603 Walnut St, Los Angeles, CA 90001" +171177,AA Batteries (4-pack),3,3.84,02/14/19 02:03,"46 Ridge St, Portland, ME 04101" +171178,Wired Headphones,1,11.99,02/24/19 17:56,"534 7th St, Atlanta, GA 30301" +171179,Wired Headphones,1,11.99,02/13/19 16:02,"284 Center St, Los Angeles, CA 90001" +171180,AAA Batteries (4-pack),5,2.99,02/09/19 14:25,"585 Dogwood St, New York City, NY 10001" +171181,AA Batteries (4-pack),1,3.84,02/14/19 01:18,"505 Adams St, New York City, NY 10001" +171182,Apple Airpods Headphones,1,150,02/09/19 15:21,"132 Chestnut St, Portland, ME 04101" +171183,20in Monitor,1,109.99,02/08/19 19:10,"21 Adams St, Los Angeles, CA 90001" +171184,Wired Headphones,1,11.99,02/25/19 18:22,"381 Spruce St, Dallas, TX 75001" +171185,Wired Headphones,1,11.99,02/22/19 16:59,"376 Willow St, New York City, NY 10001" +171186,Lightning Charging Cable,1,14.95,02/12/19 22:50,"165 Hickory St, San Francisco, CA 94016" +171187,Bose SoundSport Headphones,1,99.99,02/23/19 19:03,"408 Hickory St, New York City, NY 10001" +171188,USB-C Charging Cable,1,11.95,02/01/19 11:51,"425 2nd St, Los Angeles, CA 90001" +171189,Bose SoundSport Headphones,1,99.99,02/06/19 14:20,"346 Jefferson St, New York City, NY 10001" +171190,Lightning Charging Cable,1,14.95,02/26/19 21:19,"750 13th St, Portland, OR 97035" +171191,27in FHD Monitor,1,149.99,02/25/19 18:50,"471 Lincoln St, San Francisco, CA 94016" +171192,Wired Headphones,1,11.99,02/07/19 21:41,"489 8th St, Los Angeles, CA 90001" +171192,27in FHD Monitor,1,149.99,02/07/19 21:41,"489 8th St, Los Angeles, CA 90001" +171193,27in 4K Gaming Monitor,1,389.99,02/12/19 08:55,"687 West St, San Francisco, CA 94016" +171194,Lightning Charging Cable,1,14.95,02/06/19 17:19,"270 Spruce St, San Francisco, CA 94016" +171195,AA Batteries (4-pack),1,3.84,02/19/19 17:06,"562 8th St, San Francisco, CA 94016" +171196,Lightning Charging Cable,1,14.95,02/27/19 13:24,"312 Elm St, Boston, MA 02215" +171197,Bose SoundSport Headphones,1,99.99,02/16/19 20:50,"596 Hickory St, Seattle, WA 98101" +171198,USB-C Charging Cable,1,11.95,02/09/19 11:46,"266 Elm St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +171199,Bose SoundSport Headphones,1,99.99,02/24/19 12:44,"287 Johnson St, San Francisco, CA 94016" +171200,Macbook Pro Laptop,1,1700,02/11/19 10:11,"761 Adams St, San Francisco, CA 94016" +171201,Wired Headphones,1,11.99,02/11/19 04:42,"299 Walnut St, San Francisco, CA 94016" +171202,AAA Batteries (4-pack),1,2.99,02/17/19 15:29,"545 Washington St, San Francisco, CA 94016" +171203,34in Ultrawide Monitor,1,379.99,02/27/19 12:52,"479 Wilson St, Boston, MA 02215" +171204,Bose SoundSport Headphones,1,99.99,02/10/19 15:19,"749 Jefferson St, Austin, TX 73301" +171205,Wired Headphones,1,11.99,02/15/19 15:55,"307 Ridge St, Dallas, TX 75001" +171206,USB-C Charging Cable,1,11.95,02/24/19 20:13,"666 Walnut St, New York City, NY 10001" +171207,AAA Batteries (4-pack),1,2.99,02/25/19 13:17,"441 Spruce St, New York City, NY 10001" +171208,USB-C Charging Cable,1,11.95,02/04/19 14:33,"775 Chestnut St, Austin, TX 73301" +171209,USB-C Charging Cable,1,11.95,02/02/19 21:33,"422 10th St, Dallas, TX 75001" +171210,Lightning Charging Cable,1,14.95,02/05/19 18:58,"698 Madison St, Atlanta, GA 30301" +171211,27in FHD Monitor,1,149.99,02/08/19 11:37,"956 Ridge St, New York City, NY 10001" +171212,AA Batteries (4-pack),1,3.84,02/28/19 17:56,"116 Wilson St, New York City, NY 10001" +171213,AA Batteries (4-pack),2,3.84,02/04/19 21:07,"635 Dogwood St, San Francisco, CA 94016" +171214,USB-C Charging Cable,1,11.95,02/11/19 21:18,"302 1st St, San Francisco, CA 94016" +171215,iPhone,1,700,02/19/19 19:33,"171 Chestnut St, Los Angeles, CA 90001" +171216,Wired Headphones,1,11.99,02/08/19 18:29,"581 13th St, San Francisco, CA 94016" +171217,20in Monitor,1,109.99,02/25/19 10:17,"450 Ridge St, Los Angeles, CA 90001" +171218,Lightning Charging Cable,1,14.95,02/18/19 11:13,"25 South St, Boston, MA 02215" +171219,AA Batteries (4-pack),2,3.84,02/25/19 16:36,"119 Elm St, Seattle, WA 98101" +171220,Apple Airpods Headphones,1,150,02/15/19 09:55,"75 Walnut St, Los Angeles, CA 90001" +171221,AAA Batteries (4-pack),2,2.99,02/19/19 18:57,"638 Adams St, San Francisco, CA 94016" +171222,Apple Airpods Headphones,1,150,02/05/19 07:45,"613 Walnut St, San Francisco, CA 94016" +171223,Wired Headphones,1,11.99,02/07/19 13:13,"854 10th St, Atlanta, GA 30301" +171224,AA Batteries (4-pack),1,3.84,02/19/19 10:12,"799 North St, Boston, MA 02215" +171225,27in FHD Monitor,1,149.99,02/15/19 07:25,"113 Ridge St, San Francisco, CA 94016" +171226,USB-C Charging Cable,1,11.95,02/21/19 16:01,"497 Wilson St, New York City, NY 10001" +171227,Lightning Charging Cable,1,14.95,02/05/19 15:19,"231 4th St, Atlanta, GA 30301" +171228,AA Batteries (4-pack),1,3.84,02/13/19 21:50,"570 West St, New York City, NY 10001" +171229,LG Washing Machine,1,600.0,02/02/19 20:10,"584 Chestnut St, San Francisco, CA 94016" +171230,Bose SoundSport Headphones,1,99.99,02/28/19 06:33,"584 River St, New York City, NY 10001" +171231,iPhone,1,700,02/22/19 18:56,"195 Hickory St, Austin, TX 73301" +171232,Bose SoundSport Headphones,1,99.99,02/01/19 10:07,"301 Pine St, San Francisco, CA 94016" +171233,27in FHD Monitor,1,149.99,02/06/19 18:27,"283 Forest St, Dallas, TX 75001" +171234,AA Batteries (4-pack),1,3.84,02/03/19 00:54,"941 1st St, Los Angeles, CA 90001" +171235,Google Phone,1,600,02/21/19 12:57,"150 West St, Atlanta, GA 30301" +171236,20in Monitor,1,109.99,02/15/19 20:46,"571 Johnson St, San Francisco, CA 94016" +171237,AAA Batteries (4-pack),1,2.99,02/02/19 15:08,"841 Main St, Los Angeles, CA 90001" +171238,USB-C Charging Cable,1,11.95,02/20/19 20:12,"248 Willow St, Los Angeles, CA 90001" +171239,Bose SoundSport Headphones,1,99.99,02/28/19 01:09,"364 Adams St, New York City, NY 10001" +171240,AA Batteries (4-pack),1,3.84,02/11/19 17:22,"588 7th St, Atlanta, GA 30301" +171241,AA Batteries (4-pack),3,3.84,02/02/19 14:29,"103 2nd St, San Francisco, CA 94016" +171242,Lightning Charging Cable,1,14.95,02/02/19 21:00,"313 Main St, San Francisco, CA 94016" +171243,AA Batteries (4-pack),3,3.84,02/12/19 08:26,"625 11th St, New York City, NY 10001" +171244,27in 4K Gaming Monitor,1,389.99,02/24/19 00:01,"27 6th St, New York City, NY 10001" +171245,LG Dryer,1,600.0,02/14/19 20:59,"287 12th St, Los Angeles, CA 90001" +171246,USB-C Charging Cable,1,11.95,02/24/19 12:41,"433 Elm St, San Francisco, CA 94016" +171247,Apple Airpods Headphones,1,150,02/24/19 16:04,"571 Hickory St, Los Angeles, CA 90001" +171248,AAA Batteries (4-pack),1,2.99,02/10/19 15:07,"45 Forest St, Boston, MA 02215" +171249,AAA Batteries (4-pack),1,2.99,02/01/19 11:51,"556 Maple St, Los Angeles, CA 90001" +171250,Apple Airpods Headphones,1,150,02/04/19 11:47,"167 12th St, San Francisco, CA 94016" +171251,Lightning Charging Cable,3,14.95,02/10/19 15:54,"456 Spruce St, Los Angeles, CA 90001" +171252,ThinkPad Laptop,1,999.99,02/27/19 06:03,"340 10th St, San Francisco, CA 94016" +171253,Bose SoundSport Headphones,1,99.99,02/04/19 19:00,"754 4th St, Portland, OR 97035" +171254,Apple Airpods Headphones,1,150,02/28/19 18:57,"111 2nd St, Los Angeles, CA 90001" +171255,iPhone,1,700,02/27/19 11:47,"946 Park St, Seattle, WA 98101" +171256,Lightning Charging Cable,1,14.95,02/12/19 18:42,"580 Walnut St, Los Angeles, CA 90001" +171257,Macbook Pro Laptop,1,1700,02/19/19 19:37,"56 Ridge St, Portland, OR 97035" +171258,Lightning Charging Cable,1,14.95,02/01/19 12:11,"450 North St, San Francisco, CA 94016" +171259,Wired Headphones,1,11.99,02/22/19 10:50,"366 Hill St, Boston, MA 02215" +,,,,, +171260,Lightning Charging Cable,1,14.95,02/27/19 10:47,"220 4th St, Boston, MA 02215" +171261,Lightning Charging Cable,1,14.95,02/01/19 14:41,"114 2nd St, Los Angeles, CA 90001" +171262,AAA Batteries (4-pack),2,2.99,02/23/19 13:56,"417 Lincoln St, Austin, TX 73301" +171263,Macbook Pro Laptop,1,1700,02/15/19 13:35,"577 Chestnut St, San Francisco, CA 94016" +171264,AA Batteries (4-pack),1,3.84,02/18/19 06:21,"477 9th St, Atlanta, GA 30301" +171265,AAA Batteries (4-pack),2,2.99,02/04/19 19:18,"179 Meadow St, Los Angeles, CA 90001" +171266,Lightning Charging Cable,1,14.95,02/24/19 17:52,"988 Main St, Seattle, WA 98101" +171267,Wired Headphones,1,11.99,02/17/19 18:05,"970 Center St, Dallas, TX 75001" +171268,Bose SoundSport Headphones,1,99.99,02/25/19 14:09,"39 Madison St, Dallas, TX 75001" +171269,USB-C Charging Cable,1,11.95,02/16/19 16:37,"335 Maple St, San Francisco, CA 94016" +171270,USB-C Charging Cable,1,11.95,02/08/19 14:25,"925 Jefferson St, Austin, TX 73301" +171271,Apple Airpods Headphones,1,150,02/28/19 15:27,"325 Jefferson St, Seattle, WA 98101" +171272,Apple Airpods Headphones,1,150,02/15/19 16:27,"997 Spruce St, Boston, MA 02215" +171273,Lightning Charging Cable,1,14.95,02/23/19 17:25,"228 Wilson St, New York City, NY 10001" +171274,Lightning Charging Cable,2,14.95,02/04/19 11:39,"198 Lincoln St, San Francisco, CA 94016" +171275,Lightning Charging Cable,1,14.95,02/20/19 10:37,"942 Church St, Atlanta, GA 30301" +171276,Bose SoundSport Headphones,1,99.99,02/13/19 19:58,"356 South St, Seattle, WA 98101" +171277,AAA Batteries (4-pack),2,2.99,02/13/19 23:23,"516 Dogwood St, New York City, NY 10001" +171278,Apple Airpods Headphones,1,150,02/05/19 13:27,"881 Hickory St, Los Angeles, CA 90001" +171279,Wired Headphones,1,11.99,02/24/19 21:58,"261 13th St, San Francisco, CA 94016" +171280,USB-C Charging Cable,1,11.95,02/16/19 00:18,"97 5th St, Seattle, WA 98101" +171281,USB-C Charging Cable,2,11.95,02/13/19 20:30,"704 River St, San Francisco, CA 94016" +171282,Bose SoundSport Headphones,1,99.99,02/01/19 13:31,"588 Lincoln St, Dallas, TX 75001" +171283,AAA Batteries (4-pack),1,2.99,02/26/19 23:12,"227 South St, Atlanta, GA 30301" +171284,Google Phone,1,600,02/06/19 19:51,"211 Elm St, Austin, TX 73301" +171285,Apple Airpods Headphones,1,150,02/10/19 18:06,"348 Elm St, New York City, NY 10001" +171286,Wired Headphones,1,11.99,02/22/19 14:31,"601 6th St, Atlanta, GA 30301" +171287,AA Batteries (4-pack),2,3.84,02/23/19 14:36,"195 Adams St, New York City, NY 10001" +171288,Flatscreen TV,1,300,02/17/19 14:58,"25 Dogwood St, Austin, TX 73301" +171289,Apple Airpods Headphones,1,150,02/26/19 13:43,"384 Dogwood St, New York City, NY 10001" +171290,Wired Headphones,1,11.99,02/09/19 21:09,"556 Hill St, Seattle, WA 98101" +171291,Macbook Pro Laptop,1,1700,02/17/19 14:42,"261 Cedar St, New York City, NY 10001" +171292,Lightning Charging Cable,1,14.95,02/22/19 21:03,"775 Main St, San Francisco, CA 94016" +171293,Macbook Pro Laptop,1,1700,02/16/19 18:38,"878 Ridge St, San Francisco, CA 94016" +171294,Wired Headphones,1,11.99,02/08/19 12:50,"319 Church St, Los Angeles, CA 90001" +171295,34in Ultrawide Monitor,1,379.99,02/19/19 23:39,"516 Lakeview St, New York City, NY 10001" +171296,USB-C Charging Cable,1,11.95,02/28/19 12:05,"793 1st St, Boston, MA 02215" +171297,20in Monitor,1,109.99,02/01/19 10:11,"689 Pine St, New York City, NY 10001" +171298,Flatscreen TV,1,300,02/22/19 17:44,"816 South St, Los Angeles, CA 90001" +171299,Google Phone,1,600,02/14/19 15:19,"701 Adams St, Los Angeles, CA 90001" +171300,AAA Batteries (4-pack),2,2.99,02/15/19 14:06,"360 10th St, Portland, OR 97035" +171301,20in Monitor,1,109.99,02/06/19 19:13,"258 4th St, Los Angeles, CA 90001" +171302,34in Ultrawide Monitor,1,379.99,02/02/19 16:26,"378 Sunset St, New York City, NY 10001" +171303,AA Batteries (4-pack),1,3.84,02/06/19 19:30,"96 Park St, Atlanta, GA 30301" +171304,iPhone,1,700,02/04/19 00:35,"530 Cherry St, Boston, MA 02215" +171305,AA Batteries (4-pack),1,3.84,02/05/19 06:15,"129 Cedar St, Los Angeles, CA 90001" +171306,Apple Airpods Headphones,1,150,02/24/19 13:17,"701 Meadow St, Boston, MA 02215" +171306,USB-C Charging Cable,1,11.95,02/24/19 13:17,"701 Meadow St, Boston, MA 02215" +171307,Bose SoundSport Headphones,1,99.99,02/27/19 17:51,"326 South St, Seattle, WA 98101" +171308,Google Phone,1,600,02/27/19 14:51,"316 Chestnut St, New York City, NY 10001" +171308,USB-C Charging Cable,1,11.95,02/27/19 14:51,"316 Chestnut St, New York City, NY 10001" +171309,Bose SoundSport Headphones,1,99.99,02/28/19 11:10,"494 12th St, San Francisco, CA 94016" +171310,34in Ultrawide Monitor,1,379.99,02/07/19 15:54,"10 Jackson St, Dallas, TX 75001" +171311,27in FHD Monitor,1,149.99,02/08/19 09:25,"49 2nd St, New York City, NY 10001" +171312,Apple Airpods Headphones,1,150,02/11/19 17:33,"117 Highland St, San Francisco, CA 94016" +171313,AAA Batteries (4-pack),2,2.99,02/18/19 13:05,"138 5th St, San Francisco, CA 94016" +171313,Apple Airpods Headphones,1,150,02/18/19 13:05,"138 5th St, San Francisco, CA 94016" +171314,Wired Headphones,1,11.99,02/11/19 16:06,"572 5th St, Seattle, WA 98101" +171315,AAA Batteries (4-pack),1,2.99,02/16/19 17:59,"905 10th St, Austin, TX 73301" +171316,AA Batteries (4-pack),1,3.84,02/12/19 01:43,"545 North St, San Francisco, CA 94016" +171317,AAA Batteries (4-pack),3,2.99,02/11/19 13:35,"923 Lakeview St, Dallas, TX 75001" +171318,AAA Batteries (4-pack),3,2.99,02/06/19 21:38,"396 Cedar St, San Francisco, CA 94016" +171319,USB-C Charging Cable,1,11.95,02/15/19 11:25,"297 1st St, Atlanta, GA 30301" +171319,34in Ultrawide Monitor,1,379.99,02/15/19 11:25,"297 1st St, Atlanta, GA 30301" +171320,Macbook Pro Laptop,1,1700,02/15/19 12:17,"867 South St, Atlanta, GA 30301" +171321,34in Ultrawide Monitor,1,379.99,02/11/19 00:04,"488 Jefferson St, San Francisco, CA 94016" +171322,USB-C Charging Cable,1,11.95,02/24/19 08:02,"796 Maple St, Los Angeles, CA 90001" +171323,AA Batteries (4-pack),1,3.84,02/14/19 20:22,"153 13th St, New York City, NY 10001" +171324,27in FHD Monitor,1,149.99,02/06/19 11:47,"395 Jackson St, San Francisco, CA 94016" +171325,USB-C Charging Cable,1,11.95,02/11/19 20:22,"854 4th St, Seattle, WA 98101" +171326,Wired Headphones,1,11.99,02/01/19 11:11,"876 Jefferson St, San Francisco, CA 94016" +171327,Wired Headphones,1,11.99,02/02/19 10:38,"641 Walnut St, Portland, ME 04101" +171328,27in 4K Gaming Monitor,1,389.99,02/05/19 15:59,"385 Highland St, Austin, TX 73301" +171329,USB-C Charging Cable,1,11.95,02/19/19 16:36,"220 9th St, San Francisco, CA 94016" +171330,Apple Airpods Headphones,1,150,02/13/19 10:52,"404 2nd St, Austin, TX 73301" +171331,Apple Airpods Headphones,1,150,02/15/19 16:46,"597 Johnson St, Dallas, TX 75001" +171332,USB-C Charging Cable,2,11.95,02/16/19 21:07,"957 Center St, Boston, MA 02215" +171333,Apple Airpods Headphones,1,150,02/18/19 20:06,"517 Lakeview St, Los Angeles, CA 90001" +171334,AA Batteries (4-pack),2,3.84,02/21/19 23:04,"423 Church St, San Francisco, CA 94016" +171335,AAA Batteries (4-pack),2,2.99,02/23/19 11:57,"934 Park St, New York City, NY 10001" +171336,AAA Batteries (4-pack),2,2.99,02/19/19 16:40,"941 Cedar St, Los Angeles, CA 90001" +171337,34in Ultrawide Monitor,1,379.99,02/23/19 16:03,"780 9th St, San Francisco, CA 94016" +171338,Apple Airpods Headphones,1,150,02/25/19 13:42,"457 1st St, Dallas, TX 75001" +171339,Bose SoundSport Headphones,1,99.99,02/04/19 19:48,"719 Jackson St, New York City, NY 10001" +171340,Apple Airpods Headphones,1,150,02/04/19 17:39,"734 Jefferson St, New York City, NY 10001" +171341,Bose SoundSport Headphones,1,99.99,02/20/19 08:34,"241 North St, San Francisco, CA 94016" +171342,Apple Airpods Headphones,1,150,02/08/19 09:49,"908 12th St, Los Angeles, CA 90001" +171343,Apple Airpods Headphones,1,150,02/25/19 16:33,"171 Adams St, Atlanta, GA 30301" +171344,Bose SoundSport Headphones,1,99.99,02/27/19 13:51,"26 Highland St, Seattle, WA 98101" +171345,Bose SoundSport Headphones,1,99.99,02/26/19 12:33,"605 Hickory St, New York City, NY 10001" +171346,Wired Headphones,1,11.99,02/15/19 12:09,"247 11th St, New York City, NY 10001" +171347,20in Monitor,1,109.99,02/14/19 14:03,"152 Forest St, Seattle, WA 98101" +171348,Macbook Pro Laptop,1,1700,02/21/19 16:02,"836 Spruce St, San Francisco, CA 94016" +171349,34in Ultrawide Monitor,1,379.99,02/07/19 10:35,"475 Dogwood St, Los Angeles, CA 90001" +171350,Bose SoundSport Headphones,1,99.99,02/20/19 10:52,"264 5th St, Los Angeles, CA 90001" +171351,27in 4K Gaming Monitor,1,389.99,02/05/19 21:09,"560 Main St, San Francisco, CA 94016" +171352,Wired Headphones,1,11.99,02/23/19 10:42,"367 8th St, Seattle, WA 98101" +171353,Lightning Charging Cable,3,14.95,02/12/19 09:50,"137 Ridge St, Los Angeles, CA 90001" +171354,Lightning Charging Cable,1,14.95,02/11/19 21:34,"634 River St, Los Angeles, CA 90001" +171355,USB-C Charging Cable,1,11.95,02/20/19 11:21,"805 Cedar St, Seattle, WA 98101" +171356,Vareebadd Phone,1,400,02/07/19 10:37,"507 Jefferson St, Seattle, WA 98101" +171357,AAA Batteries (4-pack),3,2.99,02/04/19 18:04,"351 Maple St, Austin, TX 73301" +171358,27in 4K Gaming Monitor,1,389.99,02/09/19 00:53,"802 Dogwood St, Austin, TX 73301" +171359,34in Ultrawide Monitor,1,379.99,02/01/19 09:33,"411 4th St, Atlanta, GA 30301" +171360,USB-C Charging Cable,1,11.95,02/05/19 09:50,"764 Cherry St, Dallas, TX 75001" +171361,Bose SoundSport Headphones,1,99.99,02/28/19 16:31,"167 Spruce St, New York City, NY 10001" +171362,Flatscreen TV,1,300,02/02/19 09:16,"88 Highland St, Austin, TX 73301" +171363,Bose SoundSport Headphones,1,99.99,02/15/19 23:34,"432 Sunset St, New York City, NY 10001" +171364,27in 4K Gaming Monitor,1,389.99,02/07/19 21:28,"419 River St, Dallas, TX 75001" +171365,iPhone,1,700,02/03/19 09:11,"633 1st St, Los Angeles, CA 90001" +171365,Lightning Charging Cable,1,14.95,02/03/19 09:11,"633 1st St, Los Angeles, CA 90001" +171366,Lightning Charging Cable,2,14.95,02/14/19 12:45,"409 Elm St, Seattle, WA 98101" +171367,Flatscreen TV,1,300,02/15/19 14:23,"564 Chestnut St, San Francisco, CA 94016" +171368,iPhone,1,700,02/25/19 11:32,"627 12th St, New York City, NY 10001" +171369,AA Batteries (4-pack),1,3.84,02/04/19 11:21,"84 West St, New York City, NY 10001" +171370,AAA Batteries (4-pack),2,2.99,02/10/19 09:32,"989 Pine St, Atlanta, GA 30301" +171371,Lightning Charging Cable,1,14.95,02/17/19 12:43,"753 Forest St, Atlanta, GA 30301" +171372,AA Batteries (4-pack),1,3.84,02/11/19 14:39,"74 Meadow St, Los Angeles, CA 90001" +171373,Apple Airpods Headphones,1,150,02/07/19 21:39,"999 4th St, Austin, TX 73301" +171374,AA Batteries (4-pack),1,3.84,02/11/19 14:01,"536 5th St, San Francisco, CA 94016" +171375,USB-C Charging Cable,1,11.95,02/13/19 13:46,"467 Madison St, Boston, MA 02215" +171376,USB-C Charging Cable,1,11.95,02/03/19 17:09,"421 Cedar St, Atlanta, GA 30301" +171377,27in FHD Monitor,1,149.99,02/13/19 19:59,"916 9th St, San Francisco, CA 94016" +171378,Macbook Pro Laptop,1,1700,02/24/19 16:57,"618 Hill St, Los Angeles, CA 90001" +171379,27in FHD Monitor,1,149.99,02/18/19 22:30,"600 Sunset St, Boston, MA 02215" +171380,AA Batteries (4-pack),2,3.84,02/13/19 16:44,"596 Wilson St, Austin, TX 73301" +171381,AAA Batteries (4-pack),1,2.99,02/21/19 11:29,"70 Jackson St, Los Angeles, CA 90001" +171382,AAA Batteries (4-pack),1,2.99,02/05/19 21:26,"516 Pine St, San Francisco, CA 94016" +171383,AA Batteries (4-pack),2,3.84,02/14/19 08:01,"76 Johnson St, Seattle, WA 98101" +171384,Apple Airpods Headphones,1,150,02/05/19 10:31,"750 11th St, Portland, OR 97035" +171385,Lightning Charging Cable,1,14.95,02/18/19 09:47,"664 10th St, Dallas, TX 75001" +171386,AAA Batteries (4-pack),1,2.99,02/02/19 21:12,"699 Pine St, Los Angeles, CA 90001" +171387,USB-C Charging Cable,1,11.95,02/13/19 17:34,"307 Madison St, Los Angeles, CA 90001" +171388,USB-C Charging Cable,1,11.95,02/11/19 22:14,"945 Meadow St, Dallas, TX 75001" +171389,Wired Headphones,1,11.99,02/17/19 07:47,"522 Main St, San Francisco, CA 94016" +171390,iPhone,1,700,02/01/19 07:43,"187 5th St, San Francisco, CA 94016" +171391,27in FHD Monitor,1,149.99,02/14/19 06:35,"448 West St, San Francisco, CA 94016" +171392,Apple Airpods Headphones,1,150,02/07/19 21:20,"494 Chestnut St, New York City, NY 10001" +171393,AA Batteries (4-pack),3,3.84,02/26/19 16:27,"340 Wilson St, Boston, MA 02215" +171394,27in 4K Gaming Monitor,1,389.99,02/21/19 10:28,"993 Lakeview St, Austin, TX 73301" +171395,Vareebadd Phone,1,400,02/08/19 18:39,"775 Hill St, Boston, MA 02215" +171396,27in FHD Monitor,1,149.99,02/04/19 18:47,"857 7th St, Portland, OR 97035" +171397,AA Batteries (4-pack),1,3.84,02/26/19 10:52,"525 13th St, San Francisco, CA 94016" +171398,USB-C Charging Cable,1,11.95,02/27/19 11:06,"838 Lakeview St, Boston, MA 02215" +171399,Wired Headphones,1,11.99,02/28/19 01:32,"613 Wilson St, Dallas, TX 75001" +171400,Google Phone,1,600,02/25/19 13:26,"79 12th St, New York City, NY 10001" +171401,27in 4K Gaming Monitor,1,389.99,02/09/19 13:54,"947 Spruce St, Atlanta, GA 30301" +171402,iPhone,1,700,02/02/19 14:22,"367 Dogwood St, Atlanta, GA 30301" +171403,Wired Headphones,1,11.99,02/25/19 21:27,"125 13th St, New York City, NY 10001" +171404,AA Batteries (4-pack),3,3.84,02/13/19 19:30,"344 14th St, Dallas, TX 75001" +171405,AA Batteries (4-pack),1,3.84,02/05/19 20:41,"767 Lake St, New York City, NY 10001" +171406,USB-C Charging Cable,1,11.95,02/13/19 22:19,"199 11th St, Seattle, WA 98101" +171407,USB-C Charging Cable,1,11.95,02/23/19 15:39,"665 7th St, San Francisco, CA 94016" +171408,AAA Batteries (4-pack),2,2.99,02/24/19 17:53,"491 Washington St, Los Angeles, CA 90001" +171409,Wired Headphones,1,11.99,02/28/19 10:23,"167 2nd St, Los Angeles, CA 90001" +171410,Lightning Charging Cable,1,14.95,02/17/19 11:37,"631 Lincoln St, Los Angeles, CA 90001" +171411,27in 4K Gaming Monitor,1,389.99,02/18/19 14:02,"178 Ridge St, Portland, OR 97035" +171412,Wired Headphones,1,11.99,02/10/19 11:14,"645 Cherry St, San Francisco, CA 94016" +171413,34in Ultrawide Monitor,1,379.99,02/17/19 12:03,"328 Hill St, Los Angeles, CA 90001" +171414,Wired Headphones,1,11.99,02/15/19 22:56,"563 Jackson St, New York City, NY 10001" +171415,Macbook Pro Laptop,1,1700,02/09/19 08:13,"163 Forest St, Los Angeles, CA 90001" +171416,AA Batteries (4-pack),1,3.84,02/28/19 16:17,"198 Dogwood St, San Francisco, CA 94016" +171417,27in 4K Gaming Monitor,1,389.99,02/04/19 21:23,"962 Madison St, Austin, TX 73301" +171418,USB-C Charging Cable,1,11.95,02/21/19 08:34,"621 River St, Seattle, WA 98101" +171419,AAA Batteries (4-pack),1,2.99,02/07/19 13:33,"910 Lake St, New York City, NY 10001" +171420,AA Batteries (4-pack),1,3.84,02/17/19 06:13,"19 Washington St, Austin, TX 73301" +171421,Lightning Charging Cable,1,14.95,02/05/19 12:36,"735 Cedar St, Atlanta, GA 30301" +171422,Google Phone,1,600,02/28/19 18:31,"125 Park St, Dallas, TX 75001" +171423,Bose SoundSport Headphones,1,99.99,02/18/19 14:11,"272 Elm St, New York City, NY 10001" +171424,Wired Headphones,1,11.99,02/07/19 00:56,"459 13th St, Seattle, WA 98101" +171425,Lightning Charging Cable,1,14.95,02/17/19 12:37,"542 Hickory St, Atlanta, GA 30301" +171426,AAA Batteries (4-pack),1,2.99,02/07/19 09:13,"555 12th St, Dallas, TX 75001" +171427,AA Batteries (4-pack),1,3.84,02/07/19 05:03,"956 6th St, Los Angeles, CA 90001" +171428,Bose SoundSport Headphones,1,99.99,02/03/19 20:05,"6 13th St, Dallas, TX 75001" +171429,AAA Batteries (4-pack),1,2.99,02/21/19 21:09,"841 12th St, Atlanta, GA 30301" +171430,AAA Batteries (4-pack),3,2.99,02/14/19 23:40,"114 Main St, San Francisco, CA 94016" +171431,Lightning Charging Cable,1,14.95,02/20/19 20:33,"838 7th St, San Francisco, CA 94016" +171432,20in Monitor,1,109.99,02/09/19 23:22,"742 Pine St, San Francisco, CA 94016" +171433,AAA Batteries (4-pack),1,2.99,02/12/19 18:31,"946 Pine St, Los Angeles, CA 90001" +171434,AA Batteries (4-pack),1,3.84,02/20/19 17:04,"109 9th St, San Francisco, CA 94016" +171435,Apple Airpods Headphones,1,150,02/04/19 14:34,"700 Willow St, Austin, TX 73301" +171436,Apple Airpods Headphones,1,150,02/23/19 12:42,"535 Center St, Atlanta, GA 30301" +171437,Lightning Charging Cable,1,14.95,02/05/19 13:45,"747 Washington St, San Francisco, CA 94016" +171438,Lightning Charging Cable,1,14.95,02/06/19 15:44,"618 Center St, San Francisco, CA 94016" +171439,27in FHD Monitor,1,149.99,02/27/19 12:22,"702 Forest St, San Francisco, CA 94016" +171440,ThinkPad Laptop,1,999.99,02/06/19 13:23,"724 Ridge St, Dallas, TX 75001" +171441,Bose SoundSport Headphones,1,99.99,02/05/19 23:16,"196 Hill St, Los Angeles, CA 90001" +171442,AA Batteries (4-pack),1,3.84,02/23/19 13:06,"483 Madison St, Austin, TX 73301" +171443,AA Batteries (4-pack),1,3.84,02/09/19 17:08,"369 Walnut St, San Francisco, CA 94016" +171444,27in FHD Monitor,1,149.99,02/07/19 09:58,"711 Hickory St, Portland, OR 97035" +171445,Apple Airpods Headphones,1,150,02/28/19 20:54,"196 Hill St, Portland, ME 04101" +171446,Apple Airpods Headphones,1,150,02/03/19 14:15,"19 6th St, San Francisco, CA 94016" +171447,AA Batteries (4-pack),1,3.84,02/07/19 15:36,"961 Lincoln St, San Francisco, CA 94016" +171448,27in 4K Gaming Monitor,1,389.99,02/09/19 18:00,"261 Lakeview St, San Francisco, CA 94016" +171449,USB-C Charging Cable,1,11.95,02/05/19 13:53,"401 8th St, San Francisco, CA 94016" +171450,USB-C Charging Cable,1,11.95,02/05/19 10:05,"971 Jefferson St, Los Angeles, CA 90001" +171451,iPhone,1,700,02/12/19 15:27,"467 Walnut St, San Francisco, CA 94016" +171451,Lightning Charging Cable,1,14.95,02/12/19 15:27,"467 Walnut St, San Francisco, CA 94016" +171451,Apple Airpods Headphones,1,150,02/12/19 15:27,"467 Walnut St, San Francisco, CA 94016" +171452,AA Batteries (4-pack),1,3.84,02/02/19 13:18,"319 Meadow St, San Francisco, CA 94016" +171452,Wired Headphones,1,11.99,02/02/19 13:18,"319 Meadow St, San Francisco, CA 94016" +171453,Lightning Charging Cable,1,14.95,02/06/19 21:19,"576 Chestnut St, Austin, TX 73301" +171454,AA Batteries (4-pack),1,3.84,02/17/19 00:03,"564 6th St, Atlanta, GA 30301" +171455,Lightning Charging Cable,1,14.95,02/15/19 13:39,"57 Jackson St, New York City, NY 10001" +171456,Apple Airpods Headphones,1,150,02/23/19 22:07,"389 Cedar St, Dallas, TX 75001" +171457,27in 4K Gaming Monitor,1,389.99,02/14/19 16:44,"213 13th St, San Francisco, CA 94016" +171458,27in 4K Gaming Monitor,1,389.99,02/03/19 14:20,"106 Jackson St, New York City, NY 10001" +171459,Google Phone,1,600,02/02/19 18:59,"314 5th St, Portland, OR 97035" +171460,34in Ultrawide Monitor,1,379.99,02/08/19 11:49,"899 7th St, San Francisco, CA 94016" +171461,20in Monitor,1,109.99,02/22/19 22:30,"870 14th St, Atlanta, GA 30301" +171462,27in 4K Gaming Monitor,1,389.99,02/14/19 16:22,"978 Madison St, Austin, TX 73301" +171463,Bose SoundSport Headphones,1,99.99,02/24/19 11:23,"654 14th St, San Francisco, CA 94016" +171464,AAA Batteries (4-pack),2,2.99,02/18/19 16:43,"789 Maple St, San Francisco, CA 94016" +171465,iPhone,1,700,02/24/19 14:08,"594 Madison St, San Francisco, CA 94016" +171466,AAA Batteries (4-pack),2,2.99,02/13/19 16:03,"820 1st St, Portland, OR 97035" +171467,Apple Airpods Headphones,1,150,02/01/19 19:20,"416 Adams St, Atlanta, GA 30301" +171468,AA Batteries (4-pack),1,3.84,02/25/19 00:05,"216 West St, Los Angeles, CA 90001" +171469,27in FHD Monitor,1,149.99,02/14/19 17:26,"404 11th St, San Francisco, CA 94016" +171470,USB-C Charging Cable,1,11.95,02/15/19 10:27,"607 Madison St, Seattle, WA 98101" +171471,20in Monitor,1,109.99,02/17/19 20:52,"637 North St, Austin, TX 73301" +171472,Wired Headphones,1,11.99,02/27/19 14:25,"605 Dogwood St, Boston, MA 02215" +171473,iPhone,1,700,02/09/19 06:37,"433 Madison St, New York City, NY 10001" +171474,AA Batteries (4-pack),1,3.84,02/22/19 11:56,"221 Lincoln St, Los Angeles, CA 90001" +171475,AAA Batteries (4-pack),2,2.99,02/21/19 15:51,"90 River St, Dallas, TX 75001" +171476,Wired Headphones,1,11.99,02/26/19 10:08,"994 10th St, New York City, NY 10001" +171477,AA Batteries (4-pack),1,3.84,02/15/19 08:22,"206 1st St, Dallas, TX 75001" +171478,AA Batteries (4-pack),1,3.84,02/19/19 15:49,"95 12th St, Boston, MA 02215" +171479,Apple Airpods Headphones,1,150,02/24/19 06:12,"307 Main St, San Francisco, CA 94016" +171480,Apple Airpods Headphones,1,150,02/02/19 19:02,"391 Chestnut St, Dallas, TX 75001" +171481,34in Ultrawide Monitor,1,379.99,02/04/19 12:05,"388 Chestnut St, Los Angeles, CA 90001" +171482,20in Monitor,1,109.99,02/02/19 22:00,"383 13th St, Dallas, TX 75001" +171483,Lightning Charging Cable,1,14.95,02/09/19 16:09,"218 Lakeview St, Atlanta, GA 30301" +171484,Wired Headphones,1,11.99,02/28/19 23:08,"862 Madison St, San Francisco, CA 94016" +171485,Wired Headphones,1,11.99,02/13/19 20:33,"414 4th St, San Francisco, CA 94016" +171486,Bose SoundSport Headphones,1,99.99,02/23/19 20:41,"986 North St, San Francisco, CA 94016" +171487,Bose SoundSport Headphones,1,99.99,02/02/19 21:44,"934 Cherry St, Dallas, TX 75001" +171488,27in FHD Monitor,1,149.99,02/04/19 12:21,"687 Jefferson St, Los Angeles, CA 90001" +171489,USB-C Charging Cable,1,11.95,02/28/19 20:14,"939 12th St, Dallas, TX 75001" +171490,Bose SoundSport Headphones,1,99.99,02/25/19 06:48,"990 Forest St, Atlanta, GA 30301" +171491,34in Ultrawide Monitor,1,379.99,02/28/19 22:38,"263 Church St, Dallas, TX 75001" +171492,Bose SoundSport Headphones,1,99.99,02/11/19 12:09,"215 Jefferson St, Seattle, WA 98101" +171493,Flatscreen TV,1,300,02/09/19 17:10,"780 South St, Portland, OR 97035" +171494,AA Batteries (4-pack),3,3.84,02/24/19 13:08,"551 Adams St, New York City, NY 10001" +171495,Wired Headphones,1,11.99,02/06/19 16:31,"88 6th St, Boston, MA 02215" +171496,Apple Airpods Headphones,1,150,02/07/19 20:52,"699 South St, Los Angeles, CA 90001" +171497,AA Batteries (4-pack),1,3.84,02/14/19 10:53,"82 4th St, New York City, NY 10001" +171498,iPhone,1,700,02/22/19 12:45,"409 Walnut St, Los Angeles, CA 90001" +171499,Bose SoundSport Headphones,1,99.99,02/17/19 18:54,"503 13th St, Los Angeles, CA 90001" +171500,Flatscreen TV,1,300,02/12/19 05:51,"345 Park St, Portland, OR 97035" +171501,27in 4K Gaming Monitor,1,389.99,02/05/19 21:23,"905 Hickory St, San Francisco, CA 94016" +171502,Google Phone,1,600,02/09/19 14:44,"140 Johnson St, San Francisco, CA 94016" +171502,USB-C Charging Cable,1,11.95,02/09/19 14:44,"140 Johnson St, San Francisco, CA 94016" +171503,Google Phone,1,600,02/28/19 17:18,"240 Meadow St, Boston, MA 02215" +171504,USB-C Charging Cable,2,11.95,02/16/19 15:15,"145 South St, Austin, TX 73301" +171505,Bose SoundSport Headphones,1,99.99,02/15/19 08:50,"42 Willow St, Boston, MA 02215" +171506,Apple Airpods Headphones,1,150,02/24/19 21:56,"840 Hickory St, Austin, TX 73301" +171507,USB-C Charging Cable,1,11.95,02/22/19 17:07,"175 8th St, Los Angeles, CA 90001" +171508,27in 4K Gaming Monitor,1,389.99,02/19/19 21:05,"229 Meadow St, Dallas, TX 75001" +171509,iPhone,1,700,02/16/19 23:49,"620 Johnson St, San Francisco, CA 94016" +171510,AA Batteries (4-pack),1,3.84,02/22/19 12:22,"744 4th St, Los Angeles, CA 90001" +171511,AAA Batteries (4-pack),1,2.99,02/22/19 19:25,"310 Ridge St, New York City, NY 10001" +171512,Wired Headphones,1,11.99,02/20/19 20:43,"994 13th St, San Francisco, CA 94016" +171513,27in 4K Gaming Monitor,1,389.99,02/05/19 16:02,"325 Washington St, San Francisco, CA 94016" +171514,AAA Batteries (4-pack),2,2.99,02/03/19 19:30,"777 Hickory St, Los Angeles, CA 90001" +171515,Lightning Charging Cable,1,14.95,02/27/19 09:45,"481 14th St, Boston, MA 02215" +171516,Apple Airpods Headphones,1,150,02/22/19 18:36,"226 Cedar St, San Francisco, CA 94016" +171517,Flatscreen TV,1,300,02/14/19 14:14,"114 13th St, Dallas, TX 75001" +171518,Bose SoundSport Headphones,1,99.99,02/27/19 08:52,"779 South St, Boston, MA 02215" +171519,27in 4K Gaming Monitor,1,389.99,02/06/19 19:22,"527 Madison St, Los Angeles, CA 90001" +171520,34in Ultrawide Monitor,1,379.99,02/15/19 10:27,"383 Park St, New York City, NY 10001" +171521,AAA Batteries (4-pack),4,2.99,02/19/19 17:38,"372 Jefferson St, Seattle, WA 98101" +171522,Lightning Charging Cable,1,14.95,02/24/19 13:36,"439 Sunset St, Los Angeles, CA 90001" +171523,AAA Batteries (4-pack),2,2.99,02/16/19 10:48,"178 6th St, New York City, NY 10001" +171524,Bose SoundSport Headphones,1,99.99,02/22/19 19:17,"522 West St, New York City, NY 10001" +171525,Wired Headphones,1,11.99,02/15/19 14:04,"674 Cedar St, San Francisco, CA 94016" +171526,USB-C Charging Cable,1,11.95,02/07/19 14:54,"320 13th St, Boston, MA 02215" +171527,Bose SoundSport Headphones,1,99.99,02/15/19 00:07,"508 7th St, Seattle, WA 98101" +171528,Google Phone,1,600,02/13/19 11:05,"66 Forest St, Atlanta, GA 30301" +171529,AAA Batteries (4-pack),1,2.99,02/20/19 20:07,"57 Lake St, Portland, OR 97035" +171530,Lightning Charging Cable,1,14.95,02/19/19 13:21,"800 Jefferson St, Dallas, TX 75001" +171531,AA Batteries (4-pack),1,3.84,02/20/19 15:51,"301 Lincoln St, San Francisco, CA 94016" +171532,Wired Headphones,1,11.99,02/27/19 08:58,"856 Main St, New York City, NY 10001" +171533,USB-C Charging Cable,1,11.95,02/19/19 17:35,"709 2nd St, San Francisco, CA 94016" +171534,AAA Batteries (4-pack),1,2.99,02/11/19 19:04,"34 Meadow St, Los Angeles, CA 90001" +171535,Lightning Charging Cable,1,14.95,02/18/19 16:22,"931 Elm St, New York City, NY 10001" +171536,USB-C Charging Cable,2,11.95,02/02/19 09:57,"961 Elm St, Los Angeles, CA 90001" +171537,AAA Batteries (4-pack),1,2.99,02/14/19 11:22,"265 1st St, Portland, OR 97035" +171538,Lightning Charging Cable,2,14.95,02/19/19 10:08,"961 11th St, Portland, OR 97035" +171539,Apple Airpods Headphones,1,150,02/18/19 10:36,"4 Spruce St, Seattle, WA 98101" +171540,USB-C Charging Cable,1,11.95,02/10/19 11:22,"458 Main St, Atlanta, GA 30301" +171541,34in Ultrawide Monitor,1,379.99,02/11/19 18:23,"456 Elm St, San Francisco, CA 94016" +171541,AAA Batteries (4-pack),2,2.99,02/11/19 18:23,"456 Elm St, San Francisco, CA 94016" +171542,Google Phone,1,600,02/15/19 18:06,"525 Main St, Boston, MA 02215" +171543,Wired Headphones,1,11.99,02/03/19 09:11,"947 Maple St, Atlanta, GA 30301" +171544,Lightning Charging Cable,1,14.95,02/05/19 12:36,"537 Washington St, San Francisco, CA 94016" +171545,Wired Headphones,1,11.99,02/08/19 09:35,"296 Cedar St, Portland, ME 04101" +171546,34in Ultrawide Monitor,1,379.99,02/10/19 14:39,"273 13th St, San Francisco, CA 94016" +171547,Wired Headphones,1,11.99,02/05/19 14:18,"197 11th St, Boston, MA 02215" +171548,Lightning Charging Cable,1,14.95,02/16/19 14:11,"94 10th St, Los Angeles, CA 90001" +171549,AAA Batteries (4-pack),1,2.99,02/28/19 01:24,"643 Adams St, Los Angeles, CA 90001" +171550,27in FHD Monitor,1,149.99,02/13/19 02:57,"525 West St, San Francisco, CA 94016" +171551,AAA Batteries (4-pack),1,2.99,02/27/19 21:48,"347 Hickory St, Seattle, WA 98101" +171552,AA Batteries (4-pack),1,3.84,02/05/19 11:03,"984 Willow St, Los Angeles, CA 90001" +171553,Flatscreen TV,1,300,02/17/19 19:15,"24 Park St, Atlanta, GA 30301" +171554,Wired Headphones,1,11.99,02/20/19 11:40,"749 14th St, Atlanta, GA 30301" +171555,Flatscreen TV,1,300,02/06/19 20:37,"156 Willow St, San Francisco, CA 94016" +171556,AA Batteries (4-pack),1,3.84,02/08/19 14:07,"453 Adams St, Boston, MA 02215" +171557,AAA Batteries (4-pack),1,2.99,02/22/19 21:14,"104 Jackson St, Boston, MA 02215" +171558,Lightning Charging Cable,1,14.95,02/20/19 18:27,"583 7th St, San Francisco, CA 94016" +171559,AAA Batteries (4-pack),1,2.99,02/10/19 20:43,"603 Main St, Dallas, TX 75001" +171560,AAA Batteries (4-pack),1,2.99,02/28/19 10:58,"778 Ridge St, New York City, NY 10001" +171561,Bose SoundSport Headphones,1,99.99,02/04/19 12:24,"660 10th St, Boston, MA 02215" +171562,Flatscreen TV,1,300,02/15/19 14:07,"259 Washington St, Dallas, TX 75001" +171563,Lightning Charging Cable,1,14.95,02/28/19 09:02,"603 Walnut St, San Francisco, CA 94016" +171564,34in Ultrawide Monitor,1,379.99,02/28/19 15:12,"971 14th St, Los Angeles, CA 90001" +171565,Bose SoundSport Headphones,1,99.99,02/21/19 17:18,"794 Ridge St, Portland, OR 97035" +171566,USB-C Charging Cable,1,11.95,02/14/19 08:10,"233 4th St, Dallas, TX 75001" +171567,USB-C Charging Cable,1,11.95,02/14/19 15:11,"912 Lakeview St, Atlanta, GA 30301" +171568,AA Batteries (4-pack),1,3.84,02/12/19 13:39,"314 Spruce St, Austin, TX 73301" +171569,Lightning Charging Cable,2,14.95,02/17/19 10:51,"848 Pine St, New York City, NY 10001" +171570,Lightning Charging Cable,1,14.95,02/08/19 13:48,"19 7th St, Boston, MA 02215" +171571,USB-C Charging Cable,1,11.95,02/10/19 12:44,"734 Park St, San Francisco, CA 94016" +171572,20in Monitor,1,109.99,02/20/19 10:23,"975 Madison St, Dallas, TX 75001" +171573,Wired Headphones,1,11.99,02/20/19 22:53,"818 Walnut St, Seattle, WA 98101" +171574,AA Batteries (4-pack),2,3.84,02/15/19 18:48,"753 Ridge St, San Francisco, CA 94016" +171575,ThinkPad Laptop,1,999.99,02/01/19 15:43,"432 Chestnut St, New York City, NY 10001" +171576,27in 4K Gaming Monitor,1,389.99,02/20/19 07:42,"105 Lincoln St, Atlanta, GA 30301" +171577,AA Batteries (4-pack),1,3.84,02/20/19 23:34,"419 Main St, Dallas, TX 75001" +171578,Lightning Charging Cable,1,14.95,02/01/19 13:29,"133 Spruce St, San Francisco, CA 94016" +171579,AA Batteries (4-pack),1,3.84,02/07/19 22:54,"936 Elm St, Austin, TX 73301" +171580,iPhone,1,700,02/24/19 18:23,"563 Jefferson St, Boston, MA 02215" +171581,20in Monitor,1,109.99,02/23/19 17:33,"466 Pine St, Seattle, WA 98101" +171582,USB-C Charging Cable,1,11.95,02/08/19 14:06,"351 Maple St, San Francisco, CA 94016" +171583,Apple Airpods Headphones,1,150,02/07/19 20:22,"257 Cedar St, Portland, OR 97035" +171584,Lightning Charging Cable,1,14.95,02/20/19 08:11,"627 Maple St, Dallas, TX 75001" +171585,ThinkPad Laptop,1,999.99,02/12/19 19:48,"113 Cedar St, New York City, NY 10001" +171586,Lightning Charging Cable,1,14.95,02/03/19 09:07,"786 Main St, Boston, MA 02215" +171587,AA Batteries (4-pack),1,3.84,02/08/19 13:08,"348 9th St, Boston, MA 02215" +171588,ThinkPad Laptop,1,999.99,02/28/19 16:51,"719 Pine St, Boston, MA 02215" +171589,Apple Airpods Headphones,1,150,02/20/19 09:52,"775 Spruce St, Austin, TX 73301" +171590,AA Batteries (4-pack),1,3.84,02/11/19 14:57,"117 Washington St, San Francisco, CA 94016" +171591,Macbook Pro Laptop,1,1700,02/03/19 23:35,"939 10th St, San Francisco, CA 94016" +171592,AA Batteries (4-pack),1,3.84,02/22/19 12:00,"532 4th St, Dallas, TX 75001" +171593,AA Batteries (4-pack),1,3.84,02/25/19 09:44,"982 Madison St, Boston, MA 02215" +171594,Wired Headphones,1,11.99,02/03/19 15:49,"839 Madison St, San Francisco, CA 94016" +171595,USB-C Charging Cable,1,11.95,02/19/19 21:03,"822 8th St, Atlanta, GA 30301" +171596,AAA Batteries (4-pack),1,2.99,02/28/19 11:09,"606 Lakeview St, San Francisco, CA 94016" +171597,Apple Airpods Headphones,1,150,02/04/19 16:32,"534 Lakeview St, Boston, MA 02215" +171598,Flatscreen TV,1,300,02/25/19 17:13,"513 12th St, Austin, TX 73301" +171599,Vareebadd Phone,1,400,02/22/19 11:49,"169 Center St, Portland, OR 97035" +171600,Lightning Charging Cable,2,14.95,02/10/19 17:53,"688 Lake St, San Francisco, CA 94016" +171601,Apple Airpods Headphones,1,150,02/27/19 08:48,"538 Cherry St, Atlanta, GA 30301" +171602,Lightning Charging Cable,2,14.95,02/22/19 15:31,"691 7th St, Los Angeles, CA 90001" +171603,AAA Batteries (4-pack),1,2.99,02/26/19 11:58,"574 12th St, Atlanta, GA 30301" +171604,USB-C Charging Cable,1,11.95,02/26/19 10:40,"495 Lincoln St, Boston, MA 02215" +171605,Apple Airpods Headphones,1,150,02/11/19 22:29,"677 Maple St, New York City, NY 10001" +171606,AA Batteries (4-pack),1,3.84,02/16/19 12:58,"726 Wilson St, Los Angeles, CA 90001" +171607,AA Batteries (4-pack),3,3.84,02/11/19 17:06,"222 Forest St, Dallas, TX 75001" +171608,Lightning Charging Cable,1,14.95,02/25/19 13:48,"903 Cedar St, Seattle, WA 98101" +171609,Flatscreen TV,1,300,02/04/19 19:31,"639 Hickory St, San Francisco, CA 94016" +171610,iPhone,1,700,02/15/19 09:22,"250 Washington St, Los Angeles, CA 90001" +171610,Lightning Charging Cable,1,14.95,02/15/19 09:22,"250 Washington St, Los Angeles, CA 90001" +171610,Wired Headphones,1,11.99,02/15/19 09:22,"250 Washington St, Los Angeles, CA 90001" +171611,27in FHD Monitor,1,149.99,02/14/19 00:06,"571 Pine St, New York City, NY 10001" +171612,AA Batteries (4-pack),1,3.84,02/25/19 15:45,"78 Hill St, Los Angeles, CA 90001" +171613,iPhone,1,700,02/23/19 08:32,"275 Walnut St, San Francisco, CA 94016" +171614,Wired Headphones,1,11.99,02/25/19 10:00,"798 Lakeview St, Boston, MA 02215" +171615,Lightning Charging Cable,1,14.95,02/04/19 19:50,"614 Wilson St, Seattle, WA 98101" +171616,AAA Batteries (4-pack),2,2.99,02/24/19 21:49,"338 Maple St, Atlanta, GA 30301" +171617,AA Batteries (4-pack),1,3.84,02/20/19 23:32,"468 Meadow St, San Francisco, CA 94016" +171618,USB-C Charging Cable,1,11.95,02/23/19 14:22,"382 South St, Austin, TX 73301" +171619,iPhone,1,700,02/03/19 08:58,"853 11th St, New York City, NY 10001" +171620,iPhone,1,700,02/20/19 17:04,"815 Madison St, Los Angeles, CA 90001" +171620,Lightning Charging Cable,1,14.95,02/20/19 17:04,"815 Madison St, Los Angeles, CA 90001" +171621,USB-C Charging Cable,1,11.95,02/19/19 23:56,"23 River St, Seattle, WA 98101" +171622,ThinkPad Laptop,1,999.99,02/14/19 08:17,"572 4th St, Los Angeles, CA 90001" +171623,AA Batteries (4-pack),1,3.84,02/28/19 12:19,"272 Cherry St, New York City, NY 10001" +171624,Wired Headphones,1,11.99,02/02/19 11:35,"707 West St, Los Angeles, CA 90001" +171625,AAA Batteries (4-pack),1,2.99,02/10/19 00:06,"928 Jefferson St, Atlanta, GA 30301" +171626,Google Phone,1,600,02/22/19 04:20,"609 Cherry St, San Francisco, CA 94016" +171627,Bose SoundSport Headphones,1,99.99,02/13/19 23:16,"448 Meadow St, Austin, TX 73301" +171628,Wired Headphones,1,11.99,02/26/19 10:19,"799 Chestnut St, Los Angeles, CA 90001" +171629,USB-C Charging Cable,1,11.95,02/26/19 10:54,"726 Cherry St, Austin, TX 73301" +171630,Apple Airpods Headphones,1,150,02/09/19 07:35,"417 River St, Portland, OR 97035" +171631,Lightning Charging Cable,1,14.95,02/13/19 20:47,"482 Madison St, San Francisco, CA 94016" +171632,AAA Batteries (4-pack),1,2.99,02/19/19 09:07,"92 12th St, Dallas, TX 75001" +171633,USB-C Charging Cable,1,11.95,02/13/19 15:26,"364 Johnson St, New York City, NY 10001" +171634,34in Ultrawide Monitor,1,379.99,02/19/19 00:33,"861 Jefferson St, San Francisco, CA 94016" +171635,USB-C Charging Cable,1,11.95,02/08/19 16:16,"837 Madison St, Los Angeles, CA 90001" +171636,Wired Headphones,1,11.99,02/11/19 15:31,"671 Spruce St, Atlanta, GA 30301" +171637,Wired Headphones,1,11.99,02/18/19 08:56,"206 Willow St, Seattle, WA 98101" +171638,AAA Batteries (4-pack),2,2.99,02/11/19 13:58,"733 North St, San Francisco, CA 94016" +171639,AA Batteries (4-pack),4,3.84,02/01/19 10:06,"8 5th St, Dallas, TX 75001" +171640,Lightning Charging Cable,1,14.95,02/20/19 18:10,"677 Hickory St, New York City, NY 10001" +171641,Wired Headphones,1,11.99,02/19/19 15:30,"100 11th St, Los Angeles, CA 90001" +,,,,, +171642,iPhone,1,700,02/08/19 22:52,"403 Forest St, San Francisco, CA 94016" +171643,AAA Batteries (4-pack),1,2.99,02/19/19 21:59,"935 North St, Portland, OR 97035" +171644,AA Batteries (4-pack),1,3.84,02/10/19 06:41,"778 Spruce St, Austin, TX 73301" +171645,USB-C Charging Cable,1,11.95,02/15/19 14:01,"577 Adams St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +171646,Google Phone,1,600,02/01/19 12:32,"198 Park St, Los Angeles, CA 90001" +171646,Bose SoundSport Headphones,1,99.99,02/01/19 12:32,"198 Park St, Los Angeles, CA 90001" +171647,27in 4K Gaming Monitor,1,389.99,02/07/19 14:10,"735 Lincoln St, New York City, NY 10001" +171648,Google Phone,1,600,02/14/19 19:50,"894 Lakeview St, Dallas, TX 75001" +171648,Wired Headphones,1,11.99,02/14/19 19:50,"894 Lakeview St, Dallas, TX 75001" +171649,20in Monitor,1,109.99,02/14/19 08:50,"164 Center St, New York City, NY 10001" +171649,Flatscreen TV,1,300,02/14/19 08:50,"164 Center St, New York City, NY 10001" +171650,USB-C Charging Cable,1,11.95,02/21/19 18:39,"377 Spruce St, Seattle, WA 98101" +171651,iPhone,1,700,02/24/19 06:34,"14 Chestnut St, Atlanta, GA 30301" +171652,Wired Headphones,1,11.99,02/17/19 07:34,"98 Lake St, Boston, MA 02215" +171653,USB-C Charging Cable,1,11.95,02/23/19 10:13,"154 Jefferson St, New York City, NY 10001" +171654,AA Batteries (4-pack),1,3.84,02/18/19 10:18,"179 Lakeview St, New York City, NY 10001" +171655,AAA Batteries (4-pack),1,2.99,02/05/19 16:32,"949 Hickory St, Portland, OR 97035" +171656,LG Washing Machine,1,600.0,02/22/19 00:26,"771 11th St, New York City, NY 10001" +171657,34in Ultrawide Monitor,1,379.99,02/23/19 10:32,"354 4th St, Los Angeles, CA 90001" +171658,Bose SoundSport Headphones,1,99.99,02/03/19 10:49,"386 2nd St, San Francisco, CA 94016" +171659,27in 4K Gaming Monitor,1,389.99,02/09/19 22:28,"440 Jackson St, Austin, TX 73301" +171660,Lightning Charging Cable,1,14.95,02/20/19 18:05,"460 Washington St, New York City, NY 10001" +171661,Lightning Charging Cable,1,14.95,02/23/19 10:42,"126 10th St, San Francisco, CA 94016" +171662,AA Batteries (4-pack),1,3.84,02/04/19 05:04,"331 Lincoln St, Portland, OR 97035" +171663,USB-C Charging Cable,1,11.95,02/16/19 14:54,"382 River St, Boston, MA 02215" +171664,Macbook Pro Laptop,1,1700,02/17/19 23:30,"826 Church St, Austin, TX 73301" +171665,Apple Airpods Headphones,1,150,02/19/19 15:15,"365 10th St, New York City, NY 10001" +171666,Apple Airpods Headphones,1,150,02/23/19 07:10,"472 4th St, Dallas, TX 75001" +171667,USB-C Charging Cable,1,11.95,02/13/19 10:35,"580 Dogwood St, New York City, NY 10001" +171668,Bose SoundSport Headphones,1,99.99,02/23/19 15:35,"502 Jefferson St, Seattle, WA 98101" +171669,AA Batteries (4-pack),1,3.84,02/07/19 21:44,"205 Wilson St, Portland, ME 04101" +171670,AAA Batteries (4-pack),1,2.99,02/05/19 21:42,"678 Lakeview St, Los Angeles, CA 90001" +171671,Bose SoundSport Headphones,1,99.99,02/15/19 21:19,"130 Washington St, Austin, TX 73301" +171672,Apple Airpods Headphones,1,150,02/11/19 11:54,"65 North St, Atlanta, GA 30301" +171673,Apple Airpods Headphones,1,150,02/21/19 17:17,"64 6th St, San Francisco, CA 94016" +171674,ThinkPad Laptop,1,999.99,02/20/19 18:39,"135 Pine St, San Francisco, CA 94016" +171675,USB-C Charging Cable,1,11.95,02/16/19 12:21,"68 9th St, Austin, TX 73301" +171676,Lightning Charging Cable,1,14.95,02/04/19 21:37,"382 Maple St, Portland, OR 97035" +171677,AAA Batteries (4-pack),1,2.99,02/02/19 08:31,"76 Highland St, Austin, TX 73301" +171678,Lightning Charging Cable,1,14.95,02/02/19 09:40,"50 Ridge St, San Francisco, CA 94016" +171679,27in 4K Gaming Monitor,1,389.99,02/18/19 17:47,"361 Cedar St, New York City, NY 10001" +171679,Flatscreen TV,1,300,02/18/19 17:47,"361 Cedar St, New York City, NY 10001" +171680,Macbook Pro Laptop,1,1700,02/06/19 08:55,"632 1st St, San Francisco, CA 94016" +171681,34in Ultrawide Monitor,1,379.99,02/22/19 11:49,"292 Cherry St, Boston, MA 02215" +171682,USB-C Charging Cable,1,11.95,02/15/19 20:29,"848 4th St, Portland, ME 04101" +171683,Flatscreen TV,1,300,02/04/19 15:42,"532 South St, Atlanta, GA 30301" +171684,Bose SoundSport Headphones,1,99.99,02/23/19 14:49,"449 North St, San Francisco, CA 94016" +171685,USB-C Charging Cable,1,11.95,02/28/19 19:02,"317 Lakeview St, San Francisco, CA 94016" +171686,Bose SoundSport Headphones,1,99.99,02/07/19 12:36,"93 Jackson St, Austin, TX 73301" +171687,AAA Batteries (4-pack),2,2.99,02/23/19 09:13,"806 11th St, Los Angeles, CA 90001" +171688,27in 4K Gaming Monitor,1,389.99,02/10/19 15:11,"274 Dogwood St, New York City, NY 10001" +171689,Apple Airpods Headphones,1,150,02/18/19 17:37,"538 10th St, San Francisco, CA 94016" +171690,Wired Headphones,1,11.99,02/27/19 18:46,"425 Hill St, New York City, NY 10001" +171691,20in Monitor,1,109.99,02/02/19 07:20,"695 Willow St, San Francisco, CA 94016" +171692,27in FHD Monitor,1,149.99,02/01/19 20:15,"79 5th St, San Francisco, CA 94016" +171693,ThinkPad Laptop,1,999.99,02/09/19 12:39,"174 Elm St, Los Angeles, CA 90001" +171694,USB-C Charging Cable,1,11.95,02/11/19 03:07,"924 Cherry St, New York City, NY 10001" +171695,34in Ultrawide Monitor,1,379.99,02/05/19 23:31,"892 Cedar St, Portland, OR 97035" +171696,Flatscreen TV,1,300,02/19/19 19:12,"82 Park St, New York City, NY 10001" +171697,Wired Headphones,1,11.99,02/04/19 10:58,"94 2nd St, Los Angeles, CA 90001" +171698,USB-C Charging Cable,1,11.95,02/17/19 13:07,"589 9th St, New York City, NY 10001" +171699,27in FHD Monitor,1,149.99,02/05/19 19:42,"559 1st St, Los Angeles, CA 90001" +171700,Wired Headphones,1,11.99,02/07/19 18:52,"442 Hill St, Los Angeles, CA 90001" +171701,Macbook Pro Laptop,1,1700,02/26/19 22:21,"26 14th St, Los Angeles, CA 90001" +171702,USB-C Charging Cable,1,11.95,02/27/19 21:52,"322 13th St, Los Angeles, CA 90001" +171703,Bose SoundSport Headphones,1,99.99,02/21/19 19:59,"460 Hill St, San Francisco, CA 94016" +171704,34in Ultrawide Monitor,1,379.99,02/09/19 17:25,"393 Lakeview St, New York City, NY 10001" +171705,Bose SoundSport Headphones,1,99.99,02/12/19 09:27,"726 Ridge St, San Francisco, CA 94016" +171706,Lightning Charging Cable,1,14.95,02/20/19 18:31,"284 Jefferson St, Los Angeles, CA 90001" +171707,Apple Airpods Headphones,1,150,02/28/19 22:03,"400 Church St, Los Angeles, CA 90001" +171708,AAA Batteries (4-pack),1,2.99,02/18/19 09:09,"247 Center St, San Francisco, CA 94016" +171709,Macbook Pro Laptop,1,1700,02/24/19 07:39,"658 South St, Los Angeles, CA 90001" +171710,Lightning Charging Cable,1,14.95,02/04/19 10:49,"935 14th St, Portland, OR 97035" +171711,AAA Batteries (4-pack),1,2.99,02/26/19 18:11,"168 Wilson St, Boston, MA 02215" +171712,USB-C Charging Cable,1,11.95,02/05/19 20:56,"908 Washington St, San Francisco, CA 94016" +171713,Macbook Pro Laptop,1,1700,02/25/19 19:13,"541 Lincoln St, Boston, MA 02215" +171714,Bose SoundSport Headphones,1,99.99,02/12/19 08:53,"173 Park St, Atlanta, GA 30301" +171715,Lightning Charging Cable,1,14.95,02/12/19 12:15,"260 11th St, Portland, OR 97035" +171716,Wired Headphones,2,11.99,02/01/19 12:42,"643 Church St, Dallas, TX 75001" +171717,Wired Headphones,1,11.99,02/25/19 13:11,"16 14th St, Boston, MA 02215" +171718,AA Batteries (4-pack),1,3.84,02/26/19 21:38,"935 Pine St, Dallas, TX 75001" +171719,USB-C Charging Cable,1,11.95,02/24/19 18:13,"433 Hill St, New York City, NY 10001" +171720,iPhone,1,700,02/06/19 11:16,"488 7th St, Dallas, TX 75001" +171721,Lightning Charging Cable,1,14.95,02/10/19 18:39,"958 North St, Seattle, WA 98101" +171722,Macbook Pro Laptop,1,1700,02/26/19 20:52,"385 Park St, Boston, MA 02215" +171723,27in FHD Monitor,1,149.99,02/24/19 14:52,"613 North St, New York City, NY 10001" +171724,USB-C Charging Cable,1,11.95,02/21/19 15:52,"945 Willow St, Los Angeles, CA 90001" +171725,AAA Batteries (4-pack),2,2.99,02/27/19 21:05,"682 Forest St, New York City, NY 10001" +171726,Bose SoundSport Headphones,1,99.99,02/22/19 09:37,"293 Hill St, Los Angeles, CA 90001" +171727,USB-C Charging Cable,1,11.95,02/16/19 21:19,"825 Sunset St, Atlanta, GA 30301" +171728,27in 4K Gaming Monitor,1,389.99,02/02/19 11:45,"792 Pine St, Los Angeles, CA 90001" +171729,USB-C Charging Cable,1,11.95,02/15/19 22:00,"506 North St, Los Angeles, CA 90001" +171730,AA Batteries (4-pack),1,3.84,02/12/19 22:57,"216 Elm St, Los Angeles, CA 90001" +171731,ThinkPad Laptop,1,999.99,02/06/19 13:37,"207 Walnut St, New York City, NY 10001" +171732,AAA Batteries (4-pack),3,2.99,02/26/19 08:22,"226 Spruce St, San Francisco, CA 94016" +171733,Apple Airpods Headphones,1,150,02/04/19 11:08,"88 2nd St, Dallas, TX 75001" +171734,Apple Airpods Headphones,1,150,02/06/19 21:05,"925 Lincoln St, San Francisco, CA 94016" +171735,Bose SoundSport Headphones,1,99.99,02/26/19 00:46,"608 South St, Los Angeles, CA 90001" +171736,Bose SoundSport Headphones,1,99.99,02/20/19 09:44,"777 Church St, New York City, NY 10001" +171737,AA Batteries (4-pack),2,3.84,02/14/19 10:47,"937 Madison St, Seattle, WA 98101" +171738,27in FHD Monitor,1,149.99,02/24/19 16:06,"581 Meadow St, Los Angeles, CA 90001" +171739,USB-C Charging Cable,1,11.95,02/05/19 12:28,"372 North St, San Francisco, CA 94016" +171740,Google Phone,1,600,02/12/19 13:20,"813 Elm St, Boston, MA 02215" +171741,Apple Airpods Headphones,1,150,02/11/19 01:09,"575 Sunset St, San Francisco, CA 94016" +171742,USB-C Charging Cable,1,11.95,02/21/19 13:45,"348 Highland St, Boston, MA 02215" +171743,iPhone,1,700,02/10/19 21:22,"715 Johnson St, Los Angeles, CA 90001" +171744,Apple Airpods Headphones,1,150,02/23/19 18:57,"264 North St, Seattle, WA 98101" +171745,ThinkPad Laptop,1,999.99,02/23/19 10:21,"905 Highland St, San Francisco, CA 94016" +171746,Google Phone,1,600,02/06/19 13:29,"729 North St, New York City, NY 10001" +171747,Macbook Pro Laptop,1,1700,02/09/19 14:42,"730 Jackson St, New York City, NY 10001" +171748,Wired Headphones,1,11.99,02/25/19 15:30,"964 8th St, Seattle, WA 98101" +171749,Bose SoundSport Headphones,1,99.99,02/17/19 08:30,"774 2nd St, Los Angeles, CA 90001" +171749,iPhone,1,700,02/17/19 08:30,"774 2nd St, Los Angeles, CA 90001" +171750,34in Ultrawide Monitor,1,379.99,02/08/19 00:27,"321 Ridge St, Dallas, TX 75001" +171751,AA Batteries (4-pack),1,3.84,02/07/19 13:43,"131 Meadow St, Dallas, TX 75001" +171752,LG Dryer,1,600.0,02/08/19 06:23,"607 Jackson St, Dallas, TX 75001" +171753,USB-C Charging Cable,1,11.95,02/03/19 18:58,"716 Willow St, San Francisco, CA 94016" +171754,27in FHD Monitor,1,149.99,02/21/19 22:06,"188 1st St, San Francisco, CA 94016" +171755,Apple Airpods Headphones,1,150,02/09/19 12:02,"223 Pine St, Portland, OR 97035" +171756,Lightning Charging Cable,1,14.95,02/17/19 22:23,"53 Cherry St, San Francisco, CA 94016" +171757,AA Batteries (4-pack),1,3.84,02/17/19 21:25,"721 Lincoln St, Austin, TX 73301" +171758,iPhone,1,700,02/07/19 12:23,"118 Pine St, New York City, NY 10001" +171758,Lightning Charging Cable,2,14.95,02/07/19 12:23,"118 Pine St, New York City, NY 10001" +171759,AA Batteries (4-pack),1,3.84,02/17/19 16:59,"23 11th St, New York City, NY 10001" +171760,AA Batteries (4-pack),1,3.84,02/14/19 16:14,"136 Church St, Seattle, WA 98101" +171761,USB-C Charging Cable,1,11.95,02/27/19 14:09,"322 Walnut St, Boston, MA 02215" +171762,Lightning Charging Cable,1,14.95,02/10/19 00:54,"47 Lincoln St, Boston, MA 02215" +171763,iPhone,1,700,02/15/19 10:38,"534 Lincoln St, San Francisco, CA 94016" +171764,Apple Airpods Headphones,1,150,02/10/19 20:57,"975 West St, Boston, MA 02215" +171765,Google Phone,1,600,02/15/19 20:07,"810 Lakeview St, Dallas, TX 75001" +171766,Wired Headphones,1,11.99,02/04/19 10:49,"532 Church St, New York City, NY 10001" +171767,AA Batteries (4-pack),1,3.84,02/22/19 17:40,"284 Washington St, Atlanta, GA 30301" +171768,Apple Airpods Headphones,1,150,02/16/19 11:14,"420 Meadow St, New York City, NY 10001" +171769,ThinkPad Laptop,1,999.99,02/28/19 00:48,"907 8th St, San Francisco, CA 94016" +171770,Bose SoundSport Headphones,1,99.99,02/10/19 21:07,"427 West St, San Francisco, CA 94016" +171771,AA Batteries (4-pack),1,3.84,02/15/19 11:59,"142 5th St, Boston, MA 02215" +171772,AA Batteries (4-pack),1,3.84,02/05/19 11:43,"597 Jefferson St, San Francisco, CA 94016" +171773,Wired Headphones,1,11.99,02/12/19 15:58,"297 Highland St, New York City, NY 10001" +171774,AA Batteries (4-pack),2,3.84,02/11/19 19:18,"765 Dogwood St, Boston, MA 02215" +171775,Google Phone,1,600,02/04/19 12:32,"135 4th St, San Francisco, CA 94016" +171776,Apple Airpods Headphones,1,150,02/11/19 17:40,"721 5th St, San Francisco, CA 94016" +171777,AAA Batteries (4-pack),1,2.99,02/24/19 11:33,"741 14th St, San Francisco, CA 94016" +171778,USB-C Charging Cable,1,11.95,02/28/19 14:59,"738 Jackson St, Dallas, TX 75001" +171779,iPhone,1,700,02/04/19 16:47,"801 9th St, Atlanta, GA 30301" +171780,Lightning Charging Cable,1,14.95,02/07/19 17:40,"851 6th St, San Francisco, CA 94016" +171781,Flatscreen TV,1,300,02/28/19 12:00,"959 Hickory St, Atlanta, GA 30301" +171782,27in 4K Gaming Monitor,1,389.99,02/02/19 09:06,"478 Meadow St, San Francisco, CA 94016" +171783,Vareebadd Phone,1,400,02/21/19 09:01,"132 Pine St, San Francisco, CA 94016" +171784,20in Monitor,1,109.99,02/17/19 19:19,"757 Forest St, New York City, NY 10001" +171785,Apple Airpods Headphones,1,150,02/10/19 13:19,"177 Maple St, Atlanta, GA 30301" +171785,Apple Airpods Headphones,1,150,02/10/19 13:19,"177 Maple St, Atlanta, GA 30301" +171786,Wired Headphones,3,11.99,02/05/19 14:36,"260 Hill St, Los Angeles, CA 90001" +171787,AAA Batteries (4-pack),2,2.99,02/17/19 14:53,"14 14th St, San Francisco, CA 94016" +171788,Google Phone,1,600,02/15/19 12:20,"295 Center St, San Francisco, CA 94016" +171788,USB-C Charging Cable,1,11.95,02/15/19 12:20,"295 Center St, San Francisco, CA 94016" +171789,AA Batteries (4-pack),1,3.84,02/06/19 10:11,"481 Willow St, San Francisco, CA 94016" +171790,20in Monitor,1,109.99,02/28/19 16:53,"139 Walnut St, San Francisco, CA 94016" +171791,Lightning Charging Cable,1,14.95,02/08/19 21:22,"69 South St, Atlanta, GA 30301" +171792,Google Phone,1,600,03/01/19 00:28,"133 5th St, Boston, MA 02215" +171793,27in 4K Gaming Monitor,1,389.99,02/02/19 21:54,"180 Willow St, San Francisco, CA 94016" +171794,USB-C Charging Cable,1,11.95,02/27/19 21:05,"778 North St, San Francisco, CA 94016" +171795,USB-C Charging Cable,1,11.95,02/04/19 12:26,"769 10th St, San Francisco, CA 94016" +171796,Lightning Charging Cable,1,14.95,02/03/19 09:47,"912 Johnson St, Los Angeles, CA 90001" +171797,USB-C Charging Cable,1,11.95,02/03/19 22:31,"735 River St, San Francisco, CA 94016" +171798,AA Batteries (4-pack),2,3.84,02/12/19 21:44,"992 13th St, Los Angeles, CA 90001" +171799,Lightning Charging Cable,1,14.95,02/20/19 21:07,"428 9th St, New York City, NY 10001" +171800,27in 4K Gaming Monitor,1,389.99,02/17/19 17:50,"826 Spruce St, Portland, OR 97035" +171801,Macbook Pro Laptop,1,1700,02/05/19 17:55,"624 8th St, Los Angeles, CA 90001" +171802,iPhone,1,700,02/26/19 15:59,"308 Forest St, San Francisco, CA 94016" +171803,27in 4K Gaming Monitor,1,389.99,02/06/19 18:06,"511 6th St, Boston, MA 02215" +171804,27in 4K Gaming Monitor,1,389.99,02/16/19 11:25,"295 11th St, Atlanta, GA 30301" +171805,Lightning Charging Cable,2,14.95,02/24/19 13:03,"976 4th St, Seattle, WA 98101" +171806,Lightning Charging Cable,1,14.95,02/04/19 14:08,"199 Washington St, San Francisco, CA 94016" +171807,Bose SoundSport Headphones,1,99.99,02/08/19 12:33,"383 Jackson St, San Francisco, CA 94016" +171808,27in 4K Gaming Monitor,1,389.99,02/22/19 14:27,"165 Main St, Austin, TX 73301" +171809,Lightning Charging Cable,1,14.95,02/11/19 12:11,"662 Church St, San Francisco, CA 94016" +171810,34in Ultrawide Monitor,1,379.99,02/16/19 22:13,"584 Cedar St, San Francisco, CA 94016" +171811,AA Batteries (4-pack),1,3.84,02/06/19 18:53,"129 2nd St, Portland, OR 97035" +171812,34in Ultrawide Monitor,1,379.99,02/03/19 17:45,"65 9th St, Boston, MA 02215" +171813,Flatscreen TV,1,300,02/26/19 11:49,"863 Madison St, New York City, NY 10001" +171814,ThinkPad Laptop,1,999.99,02/08/19 14:16,"528 Spruce St, San Francisco, CA 94016" +171815,Apple Airpods Headphones,1,150,02/07/19 14:03,"342 Ridge St, Boston, MA 02215" +171816,Lightning Charging Cable,1,14.95,02/25/19 20:41,"75 Meadow St, Seattle, WA 98101" +171817,Apple Airpods Headphones,1,150,03/01/19 00:24,"586 14th St, Seattle, WA 98101" +171818,20in Monitor,1,109.99,02/08/19 23:54,"91 Madison St, Austin, TX 73301" +171819,Wired Headphones,1,11.99,02/17/19 20:04,"918 Pine St, Portland, OR 97035" +171820,USB-C Charging Cable,1,11.95,02/25/19 13:03,"272 Cedar St, Los Angeles, CA 90001" +171821,34in Ultrawide Monitor,1,379.99,02/14/19 20:26,"677 Maple St, San Francisco, CA 94016" +171822,Apple Airpods Headphones,1,150,02/16/19 22:29,"140 Lake St, Los Angeles, CA 90001" +171823,Bose SoundSport Headphones,1,99.99,02/21/19 01:27,"303 Hill St, Los Angeles, CA 90001" +171824,AAA Batteries (4-pack),1,2.99,02/19/19 19:40,"926 1st St, New York City, NY 10001" +171825,Lightning Charging Cable,1,14.95,02/19/19 09:19,"525 Walnut St, Seattle, WA 98101" +171826,20in Monitor,1,109.99,02/08/19 13:33,"22 9th St, Los Angeles, CA 90001" +171827,27in 4K Gaming Monitor,1,389.99,02/01/19 21:04,"262 Madison St, San Francisco, CA 94016" +171828,Lightning Charging Cable,1,14.95,02/13/19 16:17,"921 Hill St, Dallas, TX 75001" +171829,Lightning Charging Cable,1,14.95,02/27/19 11:42,"383 Jackson St, San Francisco, CA 94016" +171830,27in FHD Monitor,1,149.99,02/06/19 21:19,"416 Hickory St, Los Angeles, CA 90001" +171831,AA Batteries (4-pack),1,3.84,02/19/19 00:38,"976 South St, Austin, TX 73301" +171832,AAA Batteries (4-pack),1,2.99,02/18/19 19:58,"260 West St, New York City, NY 10001" +171833,USB-C Charging Cable,1,11.95,02/16/19 12:33,"581 Ridge St, New York City, NY 10001" +171834,Lightning Charging Cable,1,14.95,02/12/19 21:32,"700 River St, Atlanta, GA 30301" +171835,Wired Headphones,1,11.99,02/20/19 12:52,"409 7th St, San Francisco, CA 94016" +171836,AAA Batteries (4-pack),1,2.99,02/05/19 00:00,"379 Chestnut St, San Francisco, CA 94016" +171837,AAA Batteries (4-pack),2,2.99,02/09/19 12:02,"355 Park St, New York City, NY 10001" +171838,AAA Batteries (4-pack),2,2.99,02/24/19 20:32,"98 4th St, Portland, OR 97035" +171839,Google Phone,1,600,02/05/19 12:35,"361 Highland St, San Francisco, CA 94016" +171839,Bose SoundSport Headphones,1,99.99,02/05/19 12:35,"361 Highland St, San Francisco, CA 94016" +171840,AAA Batteries (4-pack),1,2.99,02/02/19 13:29,"906 Johnson St, Seattle, WA 98101" +171841,AA Batteries (4-pack),2,3.84,02/25/19 19:56,"747 Walnut St, Los Angeles, CA 90001" +171842,Google Phone,1,600,02/17/19 11:34,"974 Hickory St, Portland, ME 04101" +171843,USB-C Charging Cable,1,11.95,02/08/19 16:27,"383 13th St, San Francisco, CA 94016" +171844,AA Batteries (4-pack),1,3.84,02/06/19 20:55,"373 Meadow St, Dallas, TX 75001" +171845,Apple Airpods Headphones,1,150,02/11/19 13:13,"766 5th St, Austin, TX 73301" +171846,iPhone,1,700,02/24/19 11:31,"508 Adams St, Dallas, TX 75001" +171846,Apple Airpods Headphones,1,150,02/24/19 11:31,"508 Adams St, Dallas, TX 75001" +171847,Bose SoundSport Headphones,1,99.99,02/13/19 14:14,"873 Adams St, Dallas, TX 75001" +171848,Bose SoundSport Headphones,1,99.99,02/27/19 21:58,"726 Willow St, San Francisco, CA 94016" +171849,34in Ultrawide Monitor,1,379.99,02/26/19 16:29,"675 7th St, New York City, NY 10001" +171850,Bose SoundSport Headphones,1,99.99,02/13/19 18:34,"349 Washington St, Boston, MA 02215" +171851,USB-C Charging Cable,1,11.95,02/28/19 09:50,"382 8th St, Dallas, TX 75001" +171852,Lightning Charging Cable,1,14.95,02/08/19 15:27,"898 Spruce St, Portland, OR 97035" +171853,AAA Batteries (4-pack),1,2.99,02/08/19 11:03,"814 Spruce St, San Francisco, CA 94016" +171854,Wired Headphones,1,11.99,02/02/19 13:21,"385 Park St, Boston, MA 02215" +171855,AAA Batteries (4-pack),2,2.99,02/03/19 18:42,"1 Willow St, Los Angeles, CA 90001" +171856,Bose SoundSport Headphones,1,99.99,02/22/19 09:47,"742 Forest St, Boston, MA 02215" +171857,USB-C Charging Cable,1,11.95,02/05/19 14:47,"166 12th St, Seattle, WA 98101" +171858,AA Batteries (4-pack),1,3.84,02/06/19 23:32,"313 7th St, Atlanta, GA 30301" +171858,Bose SoundSport Headphones,1,99.99,02/06/19 23:32,"313 7th St, Atlanta, GA 30301" +171859,Bose SoundSport Headphones,1,99.99,02/18/19 17:24,"87 Dogwood St, Portland, OR 97035" +171860,AA Batteries (4-pack),1,3.84,02/21/19 20:58,"345 9th St, San Francisco, CA 94016" +171861,Wired Headphones,1,11.99,02/04/19 00:34,"990 Hill St, Atlanta, GA 30301" +171862,Wired Headphones,1,11.99,02/01/19 09:18,"66 1st St, New York City, NY 10001" +171863,USB-C Charging Cable,1,11.95,02/17/19 12:46,"780 Jackson St, Boston, MA 02215" +171864,Wired Headphones,1,11.99,02/12/19 18:18,"783 Elm St, Los Angeles, CA 90001" +171865,Wired Headphones,1,11.99,02/26/19 19:14,"298 Willow St, Boston, MA 02215" +171866,27in 4K Gaming Monitor,1,389.99,02/04/19 20:12,"14 12th St, Atlanta, GA 30301" +171867,27in 4K Gaming Monitor,1,389.99,02/20/19 14:38,"476 2nd St, Portland, OR 97035" +171868,Lightning Charging Cable,1,14.95,02/28/19 22:21,"572 Sunset St, Dallas, TX 75001" +171869,20in Monitor,1,109.99,02/09/19 13:38,"845 Main St, Austin, TX 73301" +171870,USB-C Charging Cable,1,11.95,02/09/19 14:07,"963 Jefferson St, Los Angeles, CA 90001" +171871,Wired Headphones,1,11.99,02/05/19 17:08,"330 11th St, Boston, MA 02215" +171872,USB-C Charging Cable,1,11.95,02/25/19 10:09,"247 Lincoln St, San Francisco, CA 94016" +171873,iPhone,1,700,02/01/19 11:27,"642 Center St, Los Angeles, CA 90001" +171874,Flatscreen TV,1,300,02/23/19 18:10,"257 West St, Boston, MA 02215" +171875,Wired Headphones,2,11.99,02/12/19 07:17,"199 Jefferson St, Austin, TX 73301" +171876,Apple Airpods Headphones,1,150,02/20/19 10:21,"635 Main St, Portland, OR 97035" +171877,Flatscreen TV,1,300,02/12/19 07:29,"269 8th St, Boston, MA 02215" +171878,Macbook Pro Laptop,1,1700,02/26/19 06:46,"175 Wilson St, New York City, NY 10001" +171879,AA Batteries (4-pack),1,3.84,02/09/19 15:15,"332 Hickory St, Dallas, TX 75001" +171880,Bose SoundSport Headphones,1,99.99,02/20/19 00:04,"157 Elm St, Atlanta, GA 30301" +171881,34in Ultrawide Monitor,1,379.99,02/03/19 19:27,"492 River St, Portland, OR 97035" +171882,Wired Headphones,1,11.99,02/16/19 14:14,"778 9th St, Dallas, TX 75001" +171883,Bose SoundSport Headphones,1,99.99,02/02/19 00:57,"190 Adams St, New York City, NY 10001" +171884,iPhone,1,700,02/14/19 10:18,"119 Ridge St, Dallas, TX 75001" +171884,Lightning Charging Cable,1,14.95,02/14/19 10:18,"119 Ridge St, Dallas, TX 75001" +171885,Wired Headphones,1,11.99,02/07/19 10:45,"836 Forest St, Atlanta, GA 30301" +171886,20in Monitor,1,109.99,02/26/19 11:40,"585 Madison St, Atlanta, GA 30301" +171887,AA Batteries (4-pack),1,3.84,02/08/19 19:38,"870 Walnut St, Dallas, TX 75001" +171888,USB-C Charging Cable,2,11.95,02/06/19 22:03,"544 Pine St, San Francisco, CA 94016" +171888,Wired Headphones,1,11.99,02/06/19 22:03,"544 Pine St, San Francisco, CA 94016" +171889,ThinkPad Laptop,1,999.99,02/21/19 11:12,"59 Jefferson St, Portland, OR 97035" +171890,AAA Batteries (4-pack),1,2.99,02/28/19 14:47,"597 North St, Los Angeles, CA 90001" +171891,Wired Headphones,1,11.99,02/13/19 12:20,"871 Jefferson St, New York City, NY 10001" +171892,iPhone,1,700,02/05/19 06:55,"684 7th St, Dallas, TX 75001" +171892,Wired Headphones,1,11.99,02/05/19 06:55,"684 7th St, Dallas, TX 75001" +171893,USB-C Charging Cable,1,11.95,02/13/19 12:27,"914 South St, San Francisco, CA 94016" +171894,20in Monitor,1,109.99,02/15/19 11:55,"253 Center St, Atlanta, GA 30301" +171895,Wired Headphones,1,11.99,02/28/19 19:25,"916 Highland St, Dallas, TX 75001" +171896,AA Batteries (4-pack),1,3.84,02/27/19 10:50,"565 Cedar St, San Francisco, CA 94016" +171896,AAA Batteries (4-pack),1,2.99,02/27/19 10:50,"565 Cedar St, San Francisco, CA 94016" +171897,Google Phone,1,600,02/16/19 19:16,"458 8th St, Dallas, TX 75001" +171898,AAA Batteries (4-pack),1,2.99,02/18/19 13:02,"269 Johnson St, San Francisco, CA 94016" +171899,iPhone,1,700,02/25/19 12:36,"911 Sunset St, Los Angeles, CA 90001" +171900,Lightning Charging Cable,1,14.95,02/17/19 10:15,"733 Washington St, Portland, OR 97035" +171901,Wired Headphones,1,11.99,02/20/19 18:57,"677 Hill St, Los Angeles, CA 90001" +171902,Apple Airpods Headphones,1,150,02/04/19 19:43,"504 Church St, Los Angeles, CA 90001" +171902,Lightning Charging Cable,1,14.95,02/04/19 19:43,"504 Church St, Los Angeles, CA 90001" +171903,Lightning Charging Cable,1,14.95,02/24/19 14:55,"754 Cherry St, New York City, NY 10001" +171904,AAA Batteries (4-pack),2,2.99,02/25/19 15:28,"197 Adams St, San Francisco, CA 94016" +171905,Lightning Charging Cable,1,14.95,02/07/19 20:14,"365 1st St, San Francisco, CA 94016" +171906,iPhone,1,700,02/17/19 11:51,"210 West St, Seattle, WA 98101" +171906,Wired Headphones,1,11.99,02/17/19 11:51,"210 West St, Seattle, WA 98101" +171907,AAA Batteries (4-pack),2,2.99,02/12/19 19:15,"190 4th St, San Francisco, CA 94016" +171908,AAA Batteries (4-pack),2,2.99,02/07/19 14:39,"12 Sunset St, Seattle, WA 98101" +171909,Wired Headphones,1,11.99,02/02/19 20:11,"337 Forest St, New York City, NY 10001" +171910,Bose SoundSport Headphones,1,99.99,02/05/19 17:40,"59 14th St, Austin, TX 73301" +171911,ThinkPad Laptop,1,999.99,02/21/19 09:14,"580 Madison St, Los Angeles, CA 90001" +171912,USB-C Charging Cable,1,11.95,02/03/19 16:43,"208 Lakeview St, New York City, NY 10001" +171913,34in Ultrawide Monitor,1,379.99,02/13/19 11:44,"939 Willow St, Seattle, WA 98101" +171914,USB-C Charging Cable,1,11.95,02/27/19 13:19,"503 West St, San Francisco, CA 94016" +171915,Wired Headphones,1,11.99,02/16/19 19:02,"857 Washington St, Los Angeles, CA 90001" +171916,Lightning Charging Cable,2,14.95,02/06/19 16:24,"399 West St, New York City, NY 10001" +171917,AAA Batteries (4-pack),3,2.99,02/26/19 16:02,"316 8th St, Seattle, WA 98101" +171918,Bose SoundSport Headphones,1,99.99,02/17/19 20:16,"228 Dogwood St, Seattle, WA 98101" +171919,Wired Headphones,1,11.99,02/11/19 18:24,"87 6th St, San Francisco, CA 94016" +171920,Lightning Charging Cable,1,14.95,02/05/19 16:48,"611 West St, San Francisco, CA 94016" +171921,Bose SoundSport Headphones,1,99.99,02/28/19 23:02,"414 Elm St, San Francisco, CA 94016" +171922,AA Batteries (4-pack),1,3.84,02/23/19 14:39,"386 Cedar St, Dallas, TX 75001" +171923,USB-C Charging Cable,2,11.95,02/17/19 22:35,"452 Washington St, Atlanta, GA 30301" +171924,Flatscreen TV,1,300,02/27/19 18:12,"265 Sunset St, Atlanta, GA 30301" +171925,ThinkPad Laptop,1,999.99,02/15/19 13:26,"131 Willow St, Atlanta, GA 30301" +171926,AA Batteries (4-pack),1,3.84,02/08/19 14:46,"892 Cedar St, Boston, MA 02215" +171927,Wired Headphones,1,11.99,02/26/19 17:20,"154 Spruce St, New York City, NY 10001" +171928,Lightning Charging Cable,1,14.95,02/12/19 15:34,"259 Cherry St, San Francisco, CA 94016" +171928,Lightning Charging Cable,1,14.95,02/12/19 15:34,"259 Cherry St, San Francisco, CA 94016" +171929,Apple Airpods Headphones,1,150,02/09/19 16:37,"335 Hill St, San Francisco, CA 94016" +171930,Vareebadd Phone,1,400,02/05/19 13:42,"593 Pine St, Portland, ME 04101" +171931,USB-C Charging Cable,1,11.95,02/10/19 17:34,"448 4th St, Dallas, TX 75001" +171932,iPhone,1,700,02/28/19 18:42,"62 Washington St, Los Angeles, CA 90001" +171933,AA Batteries (4-pack),2,3.84,02/27/19 19:28,"264 South St, Dallas, TX 75001" +171934,LG Dryer,1,600.0,02/02/19 11:02,"692 Park St, Los Angeles, CA 90001" +171935,27in 4K Gaming Monitor,1,389.99,02/25/19 16:02,"949 Spruce St, Portland, ME 04101" +171936,iPhone,1,700,02/20/19 18:47,"86 Cedar St, Seattle, WA 98101" +171936,Lightning Charging Cable,1,14.95,02/20/19 18:47,"86 Cedar St, Seattle, WA 98101" +171937,AA Batteries (4-pack),2,3.84,02/23/19 09:56,"626 6th St, Seattle, WA 98101" +171938,Lightning Charging Cable,1,14.95,02/01/19 22:37,"285 Elm St, Atlanta, GA 30301" +171939,Apple Airpods Headphones,1,150,02/20/19 21:32,"213 Pine St, Boston, MA 02215" +171940,AAA Batteries (4-pack),1,2.99,02/12/19 11:48,"152 Lakeview St, New York City, NY 10001" +171941,Lightning Charging Cable,1,14.95,02/23/19 17:10,"856 10th St, Austin, TX 73301" +171942,27in 4K Gaming Monitor,1,389.99,02/07/19 17:20,"682 Lakeview St, San Francisco, CA 94016" +171943,AA Batteries (4-pack),3,3.84,02/14/19 06:08,"839 Lake St, Boston, MA 02215" +171944,USB-C Charging Cable,1,11.95,02/10/19 20:30,"917 Washington St, Los Angeles, CA 90001" +171945,34in Ultrawide Monitor,1,379.99,02/01/19 11:28,"785 River St, San Francisco, CA 94016" +171946,27in FHD Monitor,1,149.99,02/01/19 15:10,"714 Hill St, New York City, NY 10001" +171947,LG Washing Machine,1,600.0,02/17/19 00:01,"857 Jackson St, New York City, NY 10001" +171948,Wired Headphones,4,11.99,02/21/19 19:08,"304 Highland St, New York City, NY 10001" +171949,AA Batteries (4-pack),1,3.84,02/05/19 10:44,"652 Center St, San Francisco, CA 94016" +171950,Apple Airpods Headphones,1,150,02/28/19 17:43,"74 Chestnut St, Los Angeles, CA 90001" +171951,AA Batteries (4-pack),2,3.84,02/05/19 19:08,"788 Hickory St, Dallas, TX 75001" +171952,27in 4K Gaming Monitor,1,389.99,02/07/19 13:12,"879 Meadow St, Boston, MA 02215" +171953,Lightning Charging Cable,1,14.95,02/23/19 14:25,"409 Center St, Portland, OR 97035" +171954,AAA Batteries (4-pack),1,2.99,02/28/19 12:57,"380 Johnson St, Dallas, TX 75001" +171955,Apple Airpods Headphones,1,150,02/01/19 17:44,"338 North St, San Francisco, CA 94016" +171956,Lightning Charging Cable,1,14.95,02/18/19 06:35,"678 Madison St, Dallas, TX 75001" +171957,AAA Batteries (4-pack),1,2.99,02/22/19 07:56,"100 Meadow St, Los Angeles, CA 90001" +171958,Wired Headphones,1,11.99,02/09/19 15:59,"361 Chestnut St, San Francisco, CA 94016" +171959,AA Batteries (4-pack),1,3.84,02/07/19 17:33,"890 Elm St, Los Angeles, CA 90001" +171960,Bose SoundSport Headphones,1,99.99,02/19/19 19:54,"64 Jackson St, New York City, NY 10001" +171961,Google Phone,1,600,02/14/19 20:51,"870 6th St, Portland, OR 97035" +171962,Apple Airpods Headphones,1,150,02/24/19 08:01,"763 North St, Los Angeles, CA 90001" +171963,Lightning Charging Cable,1,14.95,02/03/19 22:16,"159 Wilson St, San Francisco, CA 94016" +171964,Lightning Charging Cable,1,14.95,02/13/19 11:22,"57 Cedar St, New York City, NY 10001" +171965,Macbook Pro Laptop,1,1700,02/04/19 14:24,"128 South St, San Francisco, CA 94016" +171966,Wired Headphones,1,11.99,02/24/19 12:25,"340 Cherry St, San Francisco, CA 94016" +171967,Wired Headphones,1,11.99,02/12/19 17:59,"422 Walnut St, Boston, MA 02215" +171968,27in 4K Gaming Monitor,1,389.99,02/16/19 11:03,"141 13th St, Los Angeles, CA 90001" +171969,AA Batteries (4-pack),1,3.84,02/04/19 13:46,"322 Wilson St, San Francisco, CA 94016" +171970,27in FHD Monitor,1,149.99,02/27/19 20:07,"60 Highland St, Dallas, TX 75001" +171971,USB-C Charging Cable,1,11.95,02/07/19 00:18,"761 Church St, Los Angeles, CA 90001" +171972,27in 4K Gaming Monitor,1,389.99,02/24/19 23:20,"833 Lincoln St, New York City, NY 10001" +171973,ThinkPad Laptop,1,999.99,02/08/19 12:35,"833 Hickory St, Dallas, TX 75001" +171974,USB-C Charging Cable,1,11.95,02/14/19 17:47,"948 Spruce St, Portland, OR 97035" +171975,USB-C Charging Cable,1,11.95,02/10/19 12:58,"818 11th St, Los Angeles, CA 90001" +171976,AAA Batteries (4-pack),1,2.99,02/24/19 02:18,"726 Hill St, Dallas, TX 75001" +171977,Google Phone,1,600,02/23/19 17:15,"959 River St, Seattle, WA 98101" +171977,USB-C Charging Cable,1,11.95,02/23/19 17:15,"959 River St, Seattle, WA 98101" +171978,Apple Airpods Headphones,1,150,02/06/19 22:51,"586 Forest St, Boston, MA 02215" +171979,iPhone,1,700,02/12/19 21:19,"553 Jefferson St, San Francisco, CA 94016" +171980,Lightning Charging Cable,1,14.95,02/11/19 02:14,"148 Spruce St, Los Angeles, CA 90001" +171981,AA Batteries (4-pack),1,3.84,02/28/19 08:01,"542 Dogwood St, Los Angeles, CA 90001" +171982,Bose SoundSport Headphones,1,99.99,02/08/19 19:18,"81 Hill St, New York City, NY 10001" +171983,USB-C Charging Cable,1,11.95,02/13/19 14:01,"555 Meadow St, Los Angeles, CA 90001" +171984,AA Batteries (4-pack),1,3.84,02/21/19 23:10,"492 Pine St, New York City, NY 10001" +171985,Google Phone,1,600,02/24/19 22:48,"174 1st St, Atlanta, GA 30301" +171986,20in Monitor,1,109.99,02/21/19 12:47,"755 Lakeview St, San Francisco, CA 94016" +171987,Macbook Pro Laptop,1,1700,02/09/19 20:08,"577 Jackson St, San Francisco, CA 94016" +171988,AAA Batteries (4-pack),1,2.99,02/20/19 11:24,"515 Cedar St, Boston, MA 02215" +171989,AAA Batteries (4-pack),2,2.99,02/24/19 10:59,"871 Center St, Los Angeles, CA 90001" +171990,Apple Airpods Headphones,1,150,02/02/19 01:18,"395 Ridge St, San Francisco, CA 94016" +171991,USB-C Charging Cable,1,11.95,02/21/19 17:27,"174 Center St, Portland, OR 97035" +171992,Bose SoundSport Headphones,1,99.99,02/09/19 14:43,"434 Lincoln St, Dallas, TX 75001" +171993,Google Phone,1,600,02/18/19 22:31,"238 South St, Austin, TX 73301" +171994,Lightning Charging Cable,1,14.95,02/25/19 19:42,"129 Sunset St, New York City, NY 10001" +171995,Bose SoundSport Headphones,1,99.99,02/08/19 14:06,"172 Center St, Los Angeles, CA 90001" +171996,USB-C Charging Cable,2,11.95,02/23/19 20:18,"63 Sunset St, Los Angeles, CA 90001" +171997,Macbook Pro Laptop,1,1700,02/06/19 11:25,"113 Hickory St, Atlanta, GA 30301" +171998,27in FHD Monitor,1,149.99,02/25/19 10:21,"543 West St, New York City, NY 10001" +171999,AA Batteries (4-pack),1,3.84,02/28/19 19:12,"406 5th St, Portland, OR 97035" +172000,Google Phone,1,600,02/08/19 11:05,"619 Maple St, Los Angeles, CA 90001" +172001,AA Batteries (4-pack),2,3.84,02/22/19 15:09,"656 Cherry St, Boston, MA 02215" +172002,Lightning Charging Cable,1,14.95,02/01/19 13:07,"505 6th St, Los Angeles, CA 90001" +172003,AAA Batteries (4-pack),1,2.99,02/07/19 21:39,"222 Johnson St, Austin, TX 73301" +172004,USB-C Charging Cable,1,11.95,02/27/19 15:48,"696 Lakeview St, Austin, TX 73301" +172005,iPhone,1,700,02/19/19 11:34,"470 8th St, San Francisco, CA 94016" +172006,Bose SoundSport Headphones,1,99.99,02/23/19 10:21,"881 10th St, San Francisco, CA 94016" +172007,USB-C Charging Cable,1,11.95,02/20/19 17:45,"716 Adams St, San Francisco, CA 94016" +172008,Bose SoundSport Headphones,1,99.99,02/25/19 13:18,"833 Hill St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +172009,Bose SoundSport Headphones,1,99.99,02/19/19 10:14,"64 Forest St, Boston, MA 02215" +172010,AAA Batteries (4-pack),2,2.99,02/08/19 14:50,"658 Elm St, New York City, NY 10001" +172011,USB-C Charging Cable,1,11.95,02/06/19 19:42,"728 Washington St, Boston, MA 02215" +172012,Bose SoundSport Headphones,1,99.99,02/06/19 15:36,"514 Dogwood St, Los Angeles, CA 90001" +172013,AA Batteries (4-pack),1,3.84,02/22/19 16:39,"25 10th St, Dallas, TX 75001" +172014,Lightning Charging Cable,1,14.95,02/10/19 17:20,"365 5th St, Seattle, WA 98101" +172015,AA Batteries (4-pack),1,3.84,02/16/19 10:45,"35 12th St, Boston, MA 02215" +172016,Lightning Charging Cable,1,14.95,02/02/19 16:50,"136 Forest St, Dallas, TX 75001" +172017,iPhone,1,700,02/04/19 20:58,"40 Pine St, Austin, TX 73301" +172018,USB-C Charging Cable,1,11.95,02/28/19 13:52,"466 8th St, Los Angeles, CA 90001" +172019,AA Batteries (4-pack),2,3.84,02/08/19 07:27,"793 Cherry St, San Francisco, CA 94016" +172020,Lightning Charging Cable,2,14.95,02/22/19 14:30,"96 Lake St, San Francisco, CA 94016" +172021,27in FHD Monitor,1,149.99,02/27/19 11:42,"463 11th St, San Francisco, CA 94016" +172022,AA Batteries (4-pack),3,3.84,02/04/19 17:38,"541 South St, San Francisco, CA 94016" +172023,AA Batteries (4-pack),1,3.84,02/10/19 13:14,"809 Hill St, Portland, OR 97035" +172023,Bose SoundSport Headphones,1,99.99,02/10/19 13:14,"809 Hill St, Portland, OR 97035" +172024,Lightning Charging Cable,1,14.95,02/27/19 12:37,"68 4th St, Los Angeles, CA 90001" +172025,27in FHD Monitor,1,149.99,02/02/19 08:58,"254 12th St, San Francisco, CA 94016" +172026,34in Ultrawide Monitor,1,379.99,02/12/19 22:00,"884 Dogwood St, Seattle, WA 98101" +172027,AA Batteries (4-pack),1,3.84,02/22/19 17:18,"16 11th St, Los Angeles, CA 90001" +172028,Google Phone,1,600,02/22/19 21:54,"81 South St, Dallas, TX 75001" +172028,USB-C Charging Cable,1,11.95,02/22/19 21:54,"81 South St, Dallas, TX 75001" +172029,27in FHD Monitor,1,149.99,02/19/19 10:40,"127 Jackson St, Boston, MA 02215" +172030,AA Batteries (4-pack),1,3.84,02/22/19 20:21,"819 Elm St, Seattle, WA 98101" +172031,AA Batteries (4-pack),4,3.84,02/12/19 08:22,"336 Meadow St, Portland, ME 04101" +172032,Bose SoundSport Headphones,1,99.99,02/22/19 17:23,"976 Ridge St, Seattle, WA 98101" +172033,Apple Airpods Headphones,1,150,02/03/19 11:49,"163 13th St, Los Angeles, CA 90001" +172034,27in FHD Monitor,1,149.99,02/03/19 21:28,"631 Meadow St, Atlanta, GA 30301" +172035,Wired Headphones,1,11.99,02/05/19 16:25,"591 14th St, Dallas, TX 75001" +172036,USB-C Charging Cable,2,11.95,02/22/19 23:34,"879 South St, Seattle, WA 98101" +172037,USB-C Charging Cable,1,11.95,02/10/19 12:09,"774 Spruce St, Los Angeles, CA 90001" +172038,Flatscreen TV,1,300,02/27/19 14:25,"259 8th St, Los Angeles, CA 90001" +172039,Lightning Charging Cable,1,14.95,02/23/19 06:50,"420 Sunset St, San Francisco, CA 94016" +172040,Wired Headphones,1,11.99,02/01/19 17:54,"32 Lake St, Portland, OR 97035" +172041,USB-C Charging Cable,1,11.95,02/16/19 11:03,"770 Lake St, Los Angeles, CA 90001" +172042,AA Batteries (4-pack),2,3.84,02/26/19 01:05,"345 Spruce St, Dallas, TX 75001" +172043,Vareebadd Phone,1,400,02/11/19 18:02,"685 1st St, San Francisco, CA 94016" +172044,AAA Batteries (4-pack),2,2.99,02/15/19 20:12,"631 Walnut St, Seattle, WA 98101" +172045,Apple Airpods Headphones,1,150,02/18/19 09:18,"294 Walnut St, Boston, MA 02215" +172046,Apple Airpods Headphones,2,150,02/04/19 08:38,"987 Elm St, Los Angeles, CA 90001" +172047,34in Ultrawide Monitor,1,379.99,02/25/19 12:54,"170 Center St, Los Angeles, CA 90001" +172048,Bose SoundSport Headphones,1,99.99,02/09/19 14:36,"51 2nd St, San Francisco, CA 94016" +172049,Flatscreen TV,1,300,02/25/19 11:53,"709 5th St, Seattle, WA 98101" +172050,AAA Batteries (4-pack),1,2.99,02/18/19 16:44,"134 Main St, Dallas, TX 75001" +172051,Wired Headphones,1,11.99,02/10/19 12:35,"692 12th St, San Francisco, CA 94016" +172052,AA Batteries (4-pack),2,3.84,02/03/19 17:54,"860 Wilson St, Boston, MA 02215" +172052,AAA Batteries (4-pack),2,2.99,02/03/19 17:54,"860 Wilson St, Boston, MA 02215" +172053,USB-C Charging Cable,1,11.95,02/01/19 09:15,"730 Walnut St, San Francisco, CA 94016" +172054,27in FHD Monitor,1,149.99,02/28/19 08:01,"625 South St, Austin, TX 73301" +172055,20in Monitor,1,109.99,02/02/19 22:46,"616 6th St, Dallas, TX 75001" +172056,Wired Headphones,1,11.99,02/04/19 05:56,"180 Forest St, Seattle, WA 98101" +172057,AAA Batteries (4-pack),1,2.99,02/09/19 16:12,"268 Walnut St, Portland, ME 04101" +172058,27in 4K Gaming Monitor,1,389.99,02/15/19 14:07,"41 Elm St, Los Angeles, CA 90001" +172059,Bose SoundSport Headphones,1,99.99,02/28/19 03:23,"350 Cedar St, Los Angeles, CA 90001" +172060,Lightning Charging Cable,1,14.95,02/01/19 17:33,"786 North St, San Francisco, CA 94016" +172061,AAA Batteries (4-pack),3,2.99,02/28/19 19:14,"561 Madison St, San Francisco, CA 94016" +172062,Apple Airpods Headphones,1,150,02/27/19 10:33,"78 5th St, Atlanta, GA 30301" +172063,Lightning Charging Cable,1,14.95,02/10/19 15:44,"700 Lincoln St, San Francisco, CA 94016" +172064,Lightning Charging Cable,1,14.95,02/09/19 21:12,"786 Walnut St, Atlanta, GA 30301" +172065,Google Phone,1,600,02/13/19 19:12,"990 Hickory St, Atlanta, GA 30301" +172066,Lightning Charging Cable,1,14.95,02/08/19 12:01,"755 Lake St, Seattle, WA 98101" +172067,iPhone,1,700,02/26/19 14:05,"462 Adams St, San Francisco, CA 94016" +172068,Lightning Charging Cable,1,14.95,02/10/19 12:56,"527 Cherry St, Seattle, WA 98101" +172069,34in Ultrawide Monitor,1,379.99,02/17/19 14:52,"711 Spruce St, Los Angeles, CA 90001" +172070,AA Batteries (4-pack),1,3.84,02/27/19 05:56,"625 Cedar St, Portland, OR 97035" +172071,AAA Batteries (4-pack),1,2.99,02/05/19 23:50,"469 14th St, Los Angeles, CA 90001" +172072,Apple Airpods Headphones,1,150,02/08/19 19:30,"129 7th St, Los Angeles, CA 90001" +172073,27in FHD Monitor,1,149.99,02/10/19 00:03,"934 7th St, Dallas, TX 75001" +172074,AA Batteries (4-pack),1,3.84,02/06/19 11:43,"157 14th St, Boston, MA 02215" +172075,27in FHD Monitor,1,149.99,02/03/19 14:02,"389 Center St, Los Angeles, CA 90001" +172076,AAA Batteries (4-pack),2,2.99,02/19/19 13:08,"130 Center St, Boston, MA 02215" +172077,Wired Headphones,1,11.99,02/23/19 12:21,"866 Cherry St, Seattle, WA 98101" +172078,Lightning Charging Cable,1,14.95,02/15/19 16:04,"592 Lake St, Atlanta, GA 30301" +172079,AA Batteries (4-pack),1,3.84,02/08/19 18:54,"275 Wilson St, San Francisco, CA 94016" +172080,27in 4K Gaming Monitor,1,389.99,02/27/19 14:48,"632 Jackson St, Dallas, TX 75001" +172081,Wired Headphones,1,11.99,02/03/19 17:54,"152 9th St, New York City, NY 10001" +172082,Lightning Charging Cable,1,14.95,02/01/19 12:36,"317 Church St, Dallas, TX 75001" +172083,Bose SoundSport Headphones,1,99.99,02/04/19 08:20,"248 13th St, Los Angeles, CA 90001" +172084,AA Batteries (4-pack),2,3.84,02/25/19 08:21,"95 Park St, Dallas, TX 75001" +172085,ThinkPad Laptop,1,999.99,02/27/19 01:39,"85 7th St, Portland, OR 97035" +172086,Macbook Pro Laptop,1,1700,02/10/19 21:22,"499 Cherry St, Seattle, WA 98101" +172087,iPhone,1,700,02/22/19 08:17,"241 14th St, Austin, TX 73301" +172088,AA Batteries (4-pack),1,3.84,02/21/19 12:39,"112 South St, New York City, NY 10001" +172089,20in Monitor,1,109.99,02/27/19 08:39,"13 North St, San Francisco, CA 94016" +172090,AAA Batteries (4-pack),1,2.99,02/13/19 20:10,"870 Jackson St, Los Angeles, CA 90001" +172091,Apple Airpods Headphones,1,150,02/13/19 13:54,"60 12th St, Boston, MA 02215" +172092,Apple Airpods Headphones,1,150,02/09/19 15:16,"991 Jefferson St, Los Angeles, CA 90001" +172093,AAA Batteries (4-pack),1,2.99,02/02/19 16:37,"906 13th St, Boston, MA 02215" +172094,20in Monitor,1,109.99,02/02/19 17:42,"65 Chestnut St, Los Angeles, CA 90001" +172095,Bose SoundSport Headphones,1,99.99,02/15/19 17:15,"44 Jefferson St, Austin, TX 73301" +172096,27in FHD Monitor,1,149.99,02/04/19 20:53,"744 2nd St, Los Angeles, CA 90001" +172097,iPhone,1,700,02/08/19 12:23,"419 North St, Boston, MA 02215" +172098,AAA Batteries (4-pack),2,2.99,02/27/19 10:11,"254 Hickory St, Portland, OR 97035" +172099,Bose SoundSport Headphones,1,99.99,02/06/19 07:42,"680 Willow St, San Francisco, CA 94016" +172100,34in Ultrawide Monitor,1,379.99,02/03/19 16:09,"512 Madison St, Dallas, TX 75001" +172101,27in FHD Monitor,1,149.99,02/01/19 13:53,"378 Forest St, Boston, MA 02215" +172102,Bose SoundSport Headphones,1,99.99,02/05/19 14:14,"4 10th St, New York City, NY 10001" +172103,Bose SoundSport Headphones,1,99.99,02/27/19 12:05,"586 Highland St, Atlanta, GA 30301" +172104,USB-C Charging Cable,1,11.95,02/26/19 09:58,"554 Cedar St, Boston, MA 02215" +172105,iPhone,1,700,02/25/19 21:04,"384 11th St, Boston, MA 02215" +172106,AAA Batteries (4-pack),5,2.99,02/25/19 17:56,"181 Cherry St, San Francisco, CA 94016" +172107,Bose SoundSport Headphones,1,99.99,02/16/19 23:17,"141 Jefferson St, Seattle, WA 98101" +172108,Lightning Charging Cable,2,14.95,02/02/19 12:13,"759 Spruce St, Seattle, WA 98101" +172109,Lightning Charging Cable,1,14.95,02/04/19 19:21,"501 Jefferson St, Los Angeles, CA 90001" +172110,AA Batteries (4-pack),1,3.84,02/25/19 14:25,"90 Wilson St, New York City, NY 10001" +172111,USB-C Charging Cable,1,11.95,02/20/19 13:47,"363 Ridge St, San Francisco, CA 94016" +172112,27in FHD Monitor,1,149.99,02/28/19 22:30,"264 Walnut St, San Francisco, CA 94016" +172113,Apple Airpods Headphones,1,150,02/05/19 10:05,"168 12th St, New York City, NY 10001" +172114,Lightning Charging Cable,1,14.95,02/20/19 07:45,"929 Wilson St, San Francisco, CA 94016" +172115,Bose SoundSport Headphones,1,99.99,02/02/19 12:35,"44 Hill St, San Francisco, CA 94016" +172116,Lightning Charging Cable,1,14.95,02/23/19 09:09,"804 Washington St, Dallas, TX 75001" +172117,AA Batteries (4-pack),2,3.84,02/09/19 08:18,"56 Sunset St, San Francisco, CA 94016" +172118,27in FHD Monitor,1,149.99,02/08/19 08:12,"520 2nd St, Dallas, TX 75001" +172119,USB-C Charging Cable,1,11.95,02/11/19 19:15,"132 Spruce St, Dallas, TX 75001" +172120,Lightning Charging Cable,1,14.95,02/03/19 20:31,"806 North St, New York City, NY 10001" +172121,USB-C Charging Cable,1,11.95,02/20/19 22:13,"634 Ridge St, Boston, MA 02215" +172122,AAA Batteries (4-pack),2,2.99,02/07/19 19:01,"35 Dogwood St, Los Angeles, CA 90001" +172123,Apple Airpods Headphones,1,150,02/21/19 23:44,"638 Ridge St, Austin, TX 73301" +172124,Wired Headphones,1,11.99,02/03/19 12:59,"541 Wilson St, San Francisco, CA 94016" +172125,USB-C Charging Cable,2,11.95,02/18/19 07:56,"51 1st St, Los Angeles, CA 90001" +172126,34in Ultrawide Monitor,1,379.99,02/14/19 10:35,"672 4th St, San Francisco, CA 94016" +172127,USB-C Charging Cable,1,11.95,02/25/19 15:26,"410 6th St, Portland, OR 97035" +172128,iPhone,1,700,02/05/19 00:04,"504 River St, San Francisco, CA 94016" +172129,USB-C Charging Cable,1,11.95,02/15/19 20:46,"68 10th St, San Francisco, CA 94016" +172130,Apple Airpods Headphones,1,150,02/16/19 09:02,"223 Park St, New York City, NY 10001" +172131,Lightning Charging Cable,1,14.95,02/16/19 11:26,"757 Center St, Los Angeles, CA 90001" +172132,27in FHD Monitor,1,149.99,02/03/19 12:17,"867 Dogwood St, Boston, MA 02215" +172133,USB-C Charging Cable,1,11.95,02/17/19 15:55,"254 North St, San Francisco, CA 94016" +172134,27in FHD Monitor,1,149.99,02/10/19 12:07,"728 Johnson St, Atlanta, GA 30301" +172135,Lightning Charging Cable,1,14.95,02/10/19 07:48,"222 Spruce St, San Francisco, CA 94016" +172136,34in Ultrawide Monitor,1,379.99,02/07/19 13:56,"934 Spruce St, San Francisco, CA 94016" +172137,27in FHD Monitor,1,149.99,02/09/19 15:49,"695 11th St, Atlanta, GA 30301" +172138,AA Batteries (4-pack),1,3.84,02/19/19 16:06,"80 Pine St, San Francisco, CA 94016" +172139,27in 4K Gaming Monitor,1,389.99,02/06/19 20:28,"965 5th St, Dallas, TX 75001" +172140,Lightning Charging Cable,1,14.95,02/20/19 22:59,"161 Sunset St, Boston, MA 02215" +172141,USB-C Charging Cable,1,11.95,02/26/19 23:20,"773 4th St, Portland, OR 97035" +172142,34in Ultrawide Monitor,1,379.99,02/09/19 11:05,"766 Maple St, San Francisco, CA 94016" +172143,Wired Headphones,1,11.99,02/02/19 20:26,"82 Adams St, San Francisco, CA 94016" +172144,AA Batteries (4-pack),1,3.84,02/08/19 17:04,"124 Main St, Boston, MA 02215" +172145,Bose SoundSport Headphones,1,99.99,02/24/19 13:15,"572 Walnut St, Los Angeles, CA 90001" +172146,Bose SoundSport Headphones,1,99.99,02/06/19 06:36,"87 Park St, Los Angeles, CA 90001" +172147,USB-C Charging Cable,1,11.95,02/16/19 20:24,"320 South St, San Francisco, CA 94016" +172148,USB-C Charging Cable,1,11.95,02/22/19 19:33,"480 Washington St, Los Angeles, CA 90001" diff --git a/sales_data/Sales_January_2019.csv b/sales_data/Sales_January_2019.csv new file mode 100644 index 0000000..a1dad28 --- /dev/null +++ b/sales_data/Sales_January_2019.csv @@ -0,0 +1,19261 @@ +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +141234,Vareebadd Phone,1,400.0,01/22/19 23:47,"998 South St, Los Angeles, CA 90001" +141234,USB-C Charging Cable,2,11.95,01/22/19 23:47,"998 South St, Los Angeles, CA 90001" +141235,34in Ultrawide Monitor,1,379.99,01/03/19 00:40,"977 Church St, San Francisco, CA 94016" +141236,AAA Batteries (4-pack),1,2.99,01/18/19 16:50,"616 2nd St, San Francisco, CA 94016" +141237,ThinkPad Laptop,1,999.99,01/14/19 11:57,"223 10th St, Seattle, WA 98101" +141238,Google Phone,1,600.0,01/29/19 11:48,"511 Willow St, Atlanta, GA 30301" +141239,Bose SoundSport Headphones,1,99.99,01/08/19 14:21,"152 Hill St, New York City, NY 10001" +141240,AA Batteries (4-pack),1,3.84,01/30/19 20:59,"75 Park St, San Francisco, CA 94016" +141241,Vareebadd Phone,1,400.0,01/12/19 13:45,"631 Hill St, Los Angeles, CA 90001" +141241,Wired Headphones,3,11.99,01/12/19 13:45,"631 Hill St, Los Angeles, CA 90001" +141242,Lightning Charging Cable,2,14.95,01/10/19 12:40,"839 Park St, Dallas, TX 75001" +141243,iPhone,1,700.0,01/09/19 19:56,"305 North St, Los Angeles, CA 90001" +141244,USB-C Charging Cable,1,11.95,01/11/19 13:25,"882 Spruce St, Los Angeles, CA 90001" +141245,Wired Headphones,1,11.99,01/02/19 16:33,"779 Hill St, New York City, NY 10001" +141246,Bose SoundSport Headphones,1,99.99,01/20/19 18:56,"159 Lake St, Boston, MA 02215" +141247,Lightning Charging Cable,1,14.95,01/15/19 04:41,"466 Ridge St, San Francisco, CA 94016" +141248,AAA Batteries (4-pack),2,2.99,01/26/19 20:49,"496 Lakeview St, Los Angeles, CA 90001" +141249,AAA Batteries (4-pack),1,2.99,01/13/19 12:27,"704 Sunset St, Seattle, WA 98101" +141250,Lightning Charging Cable,1,14.95,01/19/19 18:43,"397 12th St, San Francisco, CA 94016" +141251,ThinkPad Laptop,1,999.99,01/13/19 18:57,"136 1st St, San Francisco, CA 94016" +141252,AAA Batteries (4-pack),1,2.99,01/16/19 13:07,"938 Cherry St, Dallas, TX 75001" +141253,Apple Airpods Headphones,1,150.0,01/16/19 15:49,"712 Dogwood St, Los Angeles, CA 90001" +141254,USB-C Charging Cable,1,11.95,01/22/19 14:33,"679 Johnson St, San Francisco, CA 94016" +141255,27in FHD Monitor,1,149.99,01/15/19 10:18,"898 Church St, Los Angeles, CA 90001" +141256,AA Batteries (4-pack),1,3.84,01/09/19 19:49,"170 Lakeview St, Boston, MA 02215" +141257,Wired Headphones,1,11.99,01/22/19 15:42,"928 4th St, Seattle, WA 98101" +141258,iPhone,1,700.0,01/17/19 22:09,"908 Lakeview St, San Francisco, CA 94016" +141259,Lightning Charging Cable,1,14.95,01/06/19 07:17,"349 Hill St, Seattle, WA 98101" +141260,AAA Batteries (4-pack),1,2.99,01/09/19 10:21,"972 8th St, Dallas, TX 75001" +141261,Wired Headphones,1,11.99,01/28/19 19:32,"826 Jackson St, Los Angeles, CA 90001" +141262,20in Monitor,1,109.99,01/12/19 11:59,"822 14th St, Dallas, TX 75001" +141263,27in FHD Monitor,1,149.99,01/20/19 22:55,"332 Willow St, Seattle, WA 98101" +141264,AA Batteries (4-pack),1,3.84,01/29/19 23:01,"611 Walnut St, Seattle, WA 98101" +141265,USB-C Charging Cable,1,11.95,01/01/19 07:57,"282 13th St, Portland, ME 04101" +141266,Lightning Charging Cable,1,14.95,01/28/19 13:11,"640 Lake St, Boston, MA 02215" +141267,AAA Batteries (4-pack),1,2.99,01/26/19 10:04,"557 Church St, Portland, OR 97035" +141268,Apple Airpods Headphones,1,150.0,01/04/19 15:56,"111 Highland St, Dallas, TX 75001" +141269,AAA Batteries (4-pack),1,2.99,01/07/19 19:19,"157 Sunset St, Atlanta, GA 30301" +141270,Bose SoundSport Headphones,1,99.99,01/18/19 09:26,"647 1st St, Boston, MA 02215" +141271,AAA Batteries (4-pack),1,2.99,01/13/19 13:54,"971 14th St, Atlanta, GA 30301" +141272,Lightning Charging Cable,1,14.95,01/23/19 17:05,"300 Wilson St, Portland, OR 97035" +141273,Lightning Charging Cable,1,14.95,01/15/19 08:53,"30 Ridge St, San Francisco, CA 94016" +141274,Bose SoundSport Headphones,1,99.99,01/16/19 21:21,"346 Lakeview St, Boston, MA 02215" +141275,LG Dryer,1,600.0,01/13/19 19:01,"880 10th St, Atlanta, GA 30301" +141276,ThinkPad Laptop,1,999.99,01/03/19 19:04,"47 11th St, Los Angeles, CA 90001" +141277,Google Phone,1,600.0,01/20/19 20:22,"778 Highland St, Boston, MA 02215" +141278,Flatscreen TV,1,300.0,01/03/19 12:44,"801 Adams St, San Francisco, CA 94016" +141279,Lightning Charging Cable,1,14.95,01/03/19 18:54,"631 Wilson St, Austin, TX 73301" +141280,Apple Airpods Headphones,1,150.0,01/13/19 10:07,"975 Hill St, Los Angeles, CA 90001" +141281,USB-C Charging Cable,1,11.95,01/18/19 13:31,"919 Cedar St, San Francisco, CA 94016" +141282,AAA Batteries (4-pack),1,2.99,01/02/19 14:49,"916 5th St, Portland, ME 04101" +141283,USB-C Charging Cable,2,11.95,01/25/19 18:34,"991 Hickory St, Seattle, WA 98101" +141284,AA Batteries (4-pack),3,3.84,01/18/19 21:23,"641 Lincoln St, San Francisco, CA 94016" +141285,Google Phone,1,600.0,01/05/19 16:47,"267 Lincoln St, Los Angeles, CA 90001" +141286,LG Washing Machine,1,600.0,01/25/19 07:33,"319 11th St, San Francisco, CA 94016" +141287,Apple Airpods Headphones,1,150.0,01/14/19 02:51,"62 Cherry St, Boston, MA 02215" +141288,USB-C Charging Cable,1,11.95,01/10/19 11:45,"871 Dogwood St, Los Angeles, CA 90001" +141289,USB-C Charging Cable,1,11.95,01/15/19 21:10,"638 South St, Boston, MA 02215" +141290,Lightning Charging Cable,1,14.95,01/22/19 20:42,"165 Pine St, San Francisco, CA 94016" +141291,Bose SoundSport Headphones,1,99.99,01/05/19 18:33,"300 Lincoln St, New York City, NY 10001" +141292,Wired Headphones,1,11.99,01/06/19 12:06,"638 Hickory St, San Francisco, CA 94016" +141293,Google Phone,1,600.0,01/02/19 19:55,"294 14th St, Seattle, WA 98101" +141294,Lightning Charging Cable,1,14.95,01/09/19 08:32,"551 8th St, Los Angeles, CA 90001" +141295,Apple Airpods Headphones,1,150.0,01/31/19 12:30,"466 Lincoln St, Seattle, WA 98101" +141296,Macbook Pro Laptop,1,1700.0,01/01/19 19:17,"209 Jackson St, New York City, NY 10001" +141297,Apple Airpods Headphones,1,150.0,01/13/19 12:22,"188 Lake St, New York City, NY 10001" +141298,Apple Airpods Headphones,1,150.0,01/11/19 19:54,"465 11th St, Portland, OR 97035" +141299,USB-C Charging Cable,1,11.95,01/15/19 10:35,"962 River St, San Francisco, CA 94016" +141300,Wired Headphones,1,11.99,01/07/19 21:18,"151 11th St, Los Angeles, CA 90001" +141301,AAA Batteries (4-pack),1,2.99,01/07/19 18:52,"687 Jefferson St, Boston, MA 02215" +141302,Bose SoundSport Headphones,1,99.99,01/19/19 13:46,"761 10th St, Boston, MA 02215" +141303,Wired Headphones,1,11.99,01/18/19 19:53,"538 1st St, New York City, NY 10001" +141304,Bose SoundSport Headphones,1,99.99,01/01/19 11:02,"920 Chestnut St, Boston, MA 02215" +141305,iPhone,1,700.0,01/21/19 21:08,"831 7th St, Los Angeles, CA 90001" +141306,Google Phone,1,600.0,01/11/19 19:21,"48 Johnson St, Austin, TX 73301" +141306,USB-C Charging Cable,1,11.95,01/11/19 19:21,"48 Johnson St, Austin, TX 73301" +141307,USB-C Charging Cable,1,11.95,01/18/19 17:30,"406 Jackson St, San Francisco, CA 94016" +141308,Wired Headphones,1,11.99,01/14/19 15:30,"174 12th St, San Francisco, CA 94016" +141309,USB-C Charging Cable,1,11.95,01/23/19 07:42,"251 West St, Boston, MA 02215" +141310,AAA Batteries (4-pack),3,2.99,01/12/19 21:43,"944 Forest St, Boston, MA 02215" +141311,Lightning Charging Cable,1,14.95,01/02/19 17:14,"529 Meadow St, Portland, OR 97035" +141312,USB-C Charging Cable,1,11.95,01/22/19 09:52,"850 Jackson St, Los Angeles, CA 90001" +141313,AAA Batteries (4-pack),1,2.99,01/28/19 13:06,"196 Jackson St, New York City, NY 10001" +141314,Wired Headphones,1,11.99,01/19/19 11:32,"117 8th St, New York City, NY 10001" +141315,AA Batteries (4-pack),4,3.84,01/22/19 12:37,"622 6th St, Atlanta, GA 30301" +141316,27in 4K Gaming Monitor,1,389.99,01/13/19 19:46,"160 Chestnut St, Atlanta, GA 30301" +141317,AAA Batteries (4-pack),2,2.99,01/11/19 18:00,"380 North St, Austin, TX 73301" +141318,Apple Airpods Headphones,1,150.0,01/31/19 21:05,"526 12th St, San Francisco, CA 94016" +141319,Wired Headphones,2,11.99,01/14/19 09:14,"994 Highland St, Los Angeles, CA 90001" +141320,27in 4K Gaming Monitor,1,389.99,01/07/19 12:13,"545 Dogwood St, San Francisco, CA 94016" +141321,Bose SoundSport Headphones,1,99.99,01/24/19 12:13,"223 Walnut St, San Francisco, CA 94016" +141322,iPhone,1,700.0,01/18/19 17:43,"187 14th St, Atlanta, GA 30301" +141323,Bose SoundSport Headphones,1,99.99,01/26/19 22:46,"621 13th St, Portland, OR 97035" +141324,Wired Headphones,1,11.99,01/17/19 08:31,"286 Maple St, Boston, MA 02215" +141325,Bose SoundSport Headphones,1,99.99,01/16/19 17:23,"348 14th St, San Francisco, CA 94016" +141326,AA Batteries (4-pack),1,3.84,01/18/19 18:56,"112 South St, New York City, NY 10001" +141327,LG Washing Machine,1,600.0,01/12/19 00:37,"397 13th St, Los Angeles, CA 90001" +141328,AA Batteries (4-pack),1,3.84,01/27/19 23:07,"202 Willow St, Dallas, TX 75001" +141329,Wired Headphones,1,11.99,01/06/19 13:01,"133 Willow St, Los Angeles, CA 90001" +141330,AAA Batteries (4-pack),1,2.99,01/10/19 13:14,"253 River St, San Francisco, CA 94016" +141331,AAA Batteries (4-pack),2,2.99,01/17/19 22:55,"644 Cedar St, Boston, MA 02215" +141332,AAA Batteries (4-pack),1,2.99,01/21/19 20:53,"247 Adams St, San Francisco, CA 94016" +141333,Lightning Charging Cable,1,14.95,01/28/19 09:32,"33 Forest St, Seattle, WA 98101" +141334,Wired Headphones,1,11.99,01/18/19 14:43,"627 9th St, Atlanta, GA 30301" +141335,Wired Headphones,1,11.99,01/10/19 15:26,"125 Jefferson St, Seattle, WA 98101" +141336,AA Batteries (4-pack),1,3.84,01/30/19 17:57,"286 1st St, San Francisco, CA 94016" +141337,AAA Batteries (4-pack),1,2.99,01/09/19 14:42,"657 7th St, Los Angeles, CA 90001" +141338,AA Batteries (4-pack),1,3.84,01/02/19 11:59,"700 4th St, San Francisco, CA 94016" +141339,AA Batteries (4-pack),1,3.84,01/16/19 17:42,"2 South St, San Francisco, CA 94016" +141340,Lightning Charging Cable,1,14.95,01/06/19 20:12,"329 Main St, Seattle, WA 98101" +141341,Lightning Charging Cable,1,14.95,01/07/19 15:38,"702 Meadow St, Atlanta, GA 30301" +141342,27in FHD Monitor,1,149.99,01/13/19 08:35,"624 South St, Dallas, TX 75001" +141343,AA Batteries (4-pack),2,3.84,01/19/19 00:32,"726 Dogwood St, Atlanta, GA 30301" +141344,Wired Headphones,1,11.99,01/04/19 08:11,"94 14th St, New York City, NY 10001" +141345,Apple Airpods Headphones,1,150.0,01/06/19 19:03,"139 7th St, Atlanta, GA 30301" +141346,Lightning Charging Cable,1,14.95,01/18/19 16:36,"166 4th St, Atlanta, GA 30301" +141347,Bose SoundSport Headphones,1,99.99,01/23/19 08:57,"884 Willow St, Atlanta, GA 30301" +141348,AAA Batteries (4-pack),1,2.99,01/05/19 19:00,"474 Elm St, Dallas, TX 75001" +141349,AA Batteries (4-pack),1,3.84,01/23/19 16:08,"865 Spruce St, San Francisco, CA 94016" +141350,Lightning Charging Cable,1,14.95,01/06/19 08:01,"364 Dogwood St, Seattle, WA 98101" +141351,iPhone,1,700.0,01/11/19 09:07,"432 Lakeview St, Dallas, TX 75001" +141352,Wired Headphones,1,11.99,01/11/19 12:46,"550 Madison St, San Francisco, CA 94016" +141353,20in Monitor,1,109.99,01/30/19 12:50,"340 West St, San Francisco, CA 94016" +141354,AAA Batteries (4-pack),1,2.99,01/30/19 07:54,"481 Adams St, Boston, MA 02215" +141355,AA Batteries (4-pack),1,3.84,01/01/19 20:12,"781 Lincoln St, New York City, NY 10001" +141356,34in Ultrawide Monitor,1,379.99,01/09/19 16:36,"430 11th St, Atlanta, GA 30301" +141357,Flatscreen TV,1,300.0,01/16/19 20:24,"512 Sunset St, Seattle, WA 98101" +141358,Apple Airpods Headphones,1,150.0,01/16/19 12:08,"571 Lakeview St, Boston, MA 02215" +141359,AAA Batteries (4-pack),2,2.99,01/02/19 23:11,"635 Center St, Boston, MA 02215" +141360,AAA Batteries (4-pack),1,2.99,01/15/19 17:33,"791 Meadow St, New York City, NY 10001" +141361,Flatscreen TV,1,300.0,01/25/19 01:19,"142 10th St, Seattle, WA 98101" +141362,AAA Batteries (4-pack),1,2.99,01/20/19 13:39,"459 Meadow St, Atlanta, GA 30301" +141363,AAA Batteries (4-pack),1,2.99,01/03/19 16:13,"740 1st St, New York City, NY 10001" +141364,AA Batteries (4-pack),1,3.84,01/10/19 19:52,"241 10th St, San Francisco, CA 94016" +141365,Apple Airpods Headphones,1,150.0,01/05/19 21:42,"315 Dogwood St, Austin, TX 73301" +141366,Apple Airpods Headphones,1,150.0,01/20/19 20:33,"451 Madison St, Los Angeles, CA 90001" +141367,Apple Airpods Headphones,1,150.0,01/27/19 23:20,"689 South St, Portland, OR 97035" +141368,AAA Batteries (4-pack),1,2.99,01/08/19 09:50,"321 North St, Boston, MA 02215" +141369,Apple Airpods Headphones,1,150.0,01/21/19 19:25,"694 Walnut St, Atlanta, GA 30301" +141370,Apple Airpods Headphones,1,150.0,01/14/19 11:25,"359 Jackson St, San Francisco, CA 94016" +141371,Lightning Charging Cable,1,14.95,01/06/19 17:59,"256 11th St, San Francisco, CA 94016" +141372,Lightning Charging Cable,1,14.95,01/05/19 00:44,"874 Jackson St, Atlanta, GA 30301" +141373,34in Ultrawide Monitor,1,379.99,01/17/19 12:14,"118 North St, Austin, TX 73301" +141374,27in 4K Gaming Monitor,1,389.99,01/10/19 15:53,"415 Ridge St, New York City, NY 10001" +141375,27in FHD Monitor,1,149.99,01/28/19 16:06,"669 Forest St, Atlanta, GA 30301" +141376,Bose SoundSport Headphones,1,99.99,01/23/19 20:32,"472 Spruce St, Atlanta, GA 30301" +141377,AAA Batteries (4-pack),1,2.99,01/29/19 22:05,"601 9th St, Atlanta, GA 30301" +141378,Bose SoundSport Headphones,1,99.99,01/09/19 15:36,"176 Madison St, San Francisco, CA 94016" +141379,Lightning Charging Cable,1,14.95,01/22/19 12:53,"842 Cedar St, Los Angeles, CA 90001" +141380,Bose SoundSport Headphones,1,99.99,01/12/19 11:15,"146 Lincoln St, Austin, TX 73301" +141381,34in Ultrawide Monitor,1,379.99,01/04/19 20:38,"59 Jackson St, Los Angeles, CA 90001" +141382,Wired Headphones,1,11.99,01/04/19 17:16,"496 12th St, New York City, NY 10001" +141383,Google Phone,1,600.0,01/03/19 08:18,"451 2nd St, Austin, TX 73301" +141384,AAA Batteries (4-pack),2,2.99,01/24/19 11:31,"925 Cherry St, Los Angeles, CA 90001" +141384,USB-C Charging Cable,1,11.95,01/24/19 11:31,"925 Cherry St, Los Angeles, CA 90001" +141385,Bose SoundSport Headphones,1,99.99,01/30/19 21:32,"998 13th St, Boston, MA 02215" +141386,AAA Batteries (4-pack),1,2.99,01/04/19 04:57,"464 9th St, San Francisco, CA 94016" +141387,Lightning Charging Cable,1,14.95,01/08/19 01:16,"967 South St, Boston, MA 02215" +141388,Apple Airpods Headphones,1,150.0,01/06/19 10:02,"596 Lincoln St, San Francisco, CA 94016" +141389,AA Batteries (4-pack),2,3.84,01/18/19 22:42,"303 1st St, San Francisco, CA 94016" +141390,Lightning Charging Cable,1,14.95,01/28/19 21:19,"220 Highland St, Los Angeles, CA 90001" +141391,Flatscreen TV,1,300.0,01/15/19 15:36,"988 Wilson St, Dallas, TX 75001" +141392,Wired Headphones,1,11.99,01/28/19 10:25,"743 7th St, Austin, TX 73301" +141393,AA Batteries (4-pack),1,3.84,01/26/19 00:50,"645 11th St, Los Angeles, CA 90001" +141394,Wired Headphones,1,11.99,01/30/19 13:37,"217 7th St, Seattle, WA 98101" +141395,iPhone,1,700.0,01/12/19 16:29,"885 Center St, Los Angeles, CA 90001" +141395,Lightning Charging Cable,1,14.95,01/12/19 16:29,"885 Center St, Los Angeles, CA 90001" +141396,Lightning Charging Cable,1,14.95,01/04/19 10:33,"100 Lincoln St, New York City, NY 10001" +141397,Apple Airpods Headphones,1,150.0,01/21/19 20:31,"27 7th St, Dallas, TX 75001" +141398,AAA Batteries (4-pack),1,2.99,01/02/19 21:23,"428 Elm St, Portland, OR 97035" +141398,USB-C Charging Cable,1,11.95,01/02/19 21:23,"428 Elm St, Portland, OR 97035" +141399,USB-C Charging Cable,1,11.95,01/24/19 23:07,"193 Dogwood St, New York City, NY 10001" +141400,Bose SoundSport Headphones,1,99.99,01/23/19 03:36,"880 Lake St, New York City, NY 10001" +141401,ThinkPad Laptop,1,999.99,01/15/19 15:39,"190 1st St, New York City, NY 10001" +141402,Apple Airpods Headphones,1,150.0,01/30/19 10:30,"632 Main St, Dallas, TX 75001" +141403,AAA Batteries (4-pack),1,2.99,01/23/19 09:07,"235 Adams St, San Francisco, CA 94016" +141404,LG Washing Machine,1,600.0,01/07/19 11:29,"275 Walnut St, San Francisco, CA 94016" +141405,USB-C Charging Cable,1,11.95,01/30/19 21:33,"23 Hill St, Austin, TX 73301" +141406,34in Ultrawide Monitor,1,379.99,01/27/19 13:09,"276 Pine St, New York City, NY 10001" +141407,Vareebadd Phone,1,400.0,01/28/19 17:32,"83 West St, Dallas, TX 75001" +141408,Apple Airpods Headphones,1,150.0,01/15/19 04:26,"542 Chestnut St, Dallas, TX 75001" +141409,Lightning Charging Cable,1,14.95,01/02/19 15:55,"693 Elm St, New York City, NY 10001" +141410,USB-C Charging Cable,1,11.95,01/04/19 21:27,"735 Willow St, Boston, MA 02215" +141411,Apple Airpods Headphones,1,150.0,01/29/19 14:17,"619 Madison St, Portland, ME 04101" +141412,27in FHD Monitor,1,149.99,01/15/19 12:14,"891 Meadow St, Portland, OR 97035" +141413,AAA Batteries (4-pack),1,2.99,01/21/19 15:25,"711 Cedar St, San Francisco, CA 94016" +141414,Bose SoundSport Headphones,1,99.99,01/14/19 17:35,"933 Elm St, San Francisco, CA 94016" +141415,Bose SoundSport Headphones,1,99.99,01/15/19 12:08,"279 Forest St, Portland, OR 97035" +141416,USB-C Charging Cable,1,11.95,01/14/19 09:42,"193 Center St, New York City, NY 10001" +141417,34in Ultrawide Monitor,1,379.99,01/10/19 13:23,"785 5th St, Seattle, WA 98101" +141418,Wired Headphones,1,11.99,01/17/19 09:49,"510 North St, San Francisco, CA 94016" +141419,Lightning Charging Cable,1,14.95,01/20/19 12:15,"320 River St, Los Angeles, CA 90001" +141420,Apple Airpods Headphones,1,150.0,01/05/19 17:22,"904 12th St, San Francisco, CA 94016" +141421,AAA Batteries (4-pack),1,2.99,01/15/19 07:46,"855 Hill St, San Francisco, CA 94016" +141422,34in Ultrawide Monitor,1,379.99,01/25/19 16:27,"809 Main St, Atlanta, GA 30301" +141423,Apple Airpods Headphones,1,150.0,01/09/19 11:52,"48 Park St, Boston, MA 02215" +141424,Apple Airpods Headphones,1,150.0,01/17/19 23:27,"360 Ridge St, San Francisco, CA 94016" +141425,20in Monitor,1,109.99,01/09/19 21:36,"611 Lakeview St, Atlanta, GA 30301" +141426,27in FHD Monitor,1,149.99,01/09/19 17:14,"443 Maple St, Los Angeles, CA 90001" +141427,Macbook Pro Laptop,1,1700.0,01/19/19 19:29,"868 Madison St, Los Angeles, CA 90001" +141428,ThinkPad Laptop,1,999.99,01/06/19 11:33,"347 Main St, Portland, OR 97035" +141429,AAA Batteries (4-pack),1,2.99,01/21/19 19:41,"829 River St, New York City, NY 10001" +141430,Wired Headphones,1,11.99,01/30/19 13:54,"366 Jefferson St, Los Angeles, CA 90001" +141431,AAA Batteries (4-pack),1,2.99,01/05/19 23:20,"148 13th St, San Francisco, CA 94016" +141432,Apple Airpods Headphones,1,150.0,01/08/19 18:33,"729 Meadow St, Boston, MA 02215" +141433,USB-C Charging Cable,1,11.95,01/28/19 01:13,"602 Cherry St, New York City, NY 10001" +141434,Wired Headphones,1,11.99,01/19/19 07:42,"873 Highland St, Portland, OR 97035" +141435,AAA Batteries (4-pack),1,2.99,01/10/19 20:26,"181 Johnson St, Boston, MA 02215" +141436,USB-C Charging Cable,1,11.95,01/30/19 15:54,"279 Maple St, Los Angeles, CA 90001" +141437,Google Phone,1,600.0,01/22/19 15:46,"284 Pine St, Seattle, WA 98101" +141438,Lightning Charging Cable,1,14.95,01/25/19 11:12,"226 Ridge St, Los Angeles, CA 90001" +141439,AAA Batteries (4-pack),4,2.99,01/18/19 17:50,"235 West St, Los Angeles, CA 90001" +141440,Wired Headphones,1,11.99,01/21/19 01:21,"826 Cherry St, Portland, OR 97035" +141441,AA Batteries (4-pack),1,3.84,01/19/19 21:52,"61 Dogwood St, Seattle, WA 98101" +141442,34in Ultrawide Monitor,1,379.99,01/06/19 23:57,"506 Johnson St, Boston, MA 02215" +141443,20in Monitor,1,109.99,01/15/19 07:15,"253 Washington St, San Francisco, CA 94016" +141444,Apple Airpods Headphones,1,150.0,01/03/19 12:26,"469 12th St, San Francisco, CA 94016" +141445,Wired Headphones,1,11.99,01/11/19 13:36,"307 Elm St, New York City, NY 10001" +141446,20in Monitor,1,109.99,01/09/19 19:15,"26 1st St, Seattle, WA 98101" +141447,iPhone,1,700.0,01/10/19 09:34,"661 11th St, Atlanta, GA 30301" +141447,Lightning Charging Cable,1,14.95,01/10/19 09:34,"661 11th St, Atlanta, GA 30301" +141448,Wired Headphones,1,11.99,01/31/19 14:17,"681 Cedar St, Los Angeles, CA 90001" +141449,34in Ultrawide Monitor,1,379.99,01/24/19 23:12,"670 Spruce St, New York City, NY 10001" +141450,27in FHD Monitor,1,149.99,01/12/19 20:47,"744 1st St, Dallas, TX 75001" +141451,USB-C Charging Cable,1,11.95,01/17/19 20:00,"829 Walnut St, Boston, MA 02215" +141452,AAA Batteries (4-pack),1,2.99,01/01/19 11:29,"627 Johnson St, San Francisco, CA 94016" +141453,Apple Airpods Headphones,1,150.0,01/09/19 11:35,"34 Center St, Los Angeles, CA 90001" +141454,Apple Airpods Headphones,1,150.0,01/27/19 11:27,"693 Maple St, Los Angeles, CA 90001" +141455,AAA Batteries (4-pack),1,2.99,01/15/19 09:10,"481 River St, Los Angeles, CA 90001" +141456,Wired Headphones,1,11.99,01/26/19 21:35,"698 River St, San Francisco, CA 94016" +141457,Google Phone,1,600.0,01/21/19 20:00,"947 Lakeview St, Seattle, WA 98101" +141458,Macbook Pro Laptop,1,1700.0,01/11/19 22:11,"372 Park St, Los Angeles, CA 90001" +141459,Wired Headphones,1,11.99,01/08/19 21:23,"514 Spruce St, San Francisco, CA 94016" +141459,AA Batteries (4-pack),1,3.84,01/08/19 21:23,"514 Spruce St, San Francisco, CA 94016" +141460,Wired Headphones,3,11.99,01/17/19 14:58,"566 9th St, Dallas, TX 75001" +141461,Macbook Pro Laptop,1,1700.0,01/05/19 20:12,"810 Maple St, Portland, OR 97035" +141462,Bose SoundSport Headphones,1,99.99,01/18/19 19:00,"519 Washington St, Los Angeles, CA 90001" +141463,AA Batteries (4-pack),1,3.84,01/14/19 17:24,"608 Jefferson St, Portland, OR 97035" +141464,USB-C Charging Cable,1,11.95,01/04/19 14:36,"836 River St, Boston, MA 02215" +141465,USB-C Charging Cable,1,11.95,01/19/19 10:43,"481 1st St, Los Angeles, CA 90001" +141466,Wired Headphones,1,11.99,01/02/19 20:11,"36 West St, San Francisco, CA 94016" +141467,AAA Batteries (4-pack),2,2.99,01/18/19 19:11,"461 Adams St, San Francisco, CA 94016" +141468,Lightning Charging Cable,1,14.95,01/17/19 00:05,"970 1st St, San Francisco, CA 94016" +141469,Lightning Charging Cable,1,14.95,01/06/19 22:56,"472 Cherry St, Seattle, WA 98101" +141470,AAA Batteries (4-pack),1,2.99,01/17/19 17:56,"674 Lake St, Boston, MA 02215" +141471,iPhone,1,700.0,01/24/19 11:50,"823 Center St, Austin, TX 73301" +141471,Lightning Charging Cable,1,14.95,01/24/19 11:50,"823 Center St, Austin, TX 73301" +141471,Apple Airpods Headphones,1,150.0,01/24/19 11:50,"823 Center St, Austin, TX 73301" +141472,27in FHD Monitor,1,149.99,01/03/19 23:33,"239 Lincoln St, Atlanta, GA 30301" +141473,AAA Batteries (4-pack),1,2.99,01/30/19 14:00,"246 Ridge St, Dallas, TX 75001" +141474,AAA Batteries (4-pack),1,2.99,01/09/19 19:29,"821 Johnson St, New York City, NY 10001" +141475,Wired Headphones,1,11.99,01/21/19 13:42,"848 Adams St, Portland, OR 97035" +141476,AAA Batteries (4-pack),1,2.99,01/01/19 13:50,"70 Park St, San Francisco, CA 94016" +141477,Bose SoundSport Headphones,1,99.99,01/16/19 12:04,"62 10th St, San Francisco, CA 94016" +141478,LG Washing Machine,1,600.0,01/18/19 12:48,"224 Madison St, Austin, TX 73301" +141479,USB-C Charging Cable,1,11.95,01/12/19 11:45,"433 6th St, New York City, NY 10001" +141480,Lightning Charging Cable,1,14.95,01/21/19 12:45,"631 Willow St, Los Angeles, CA 90001" +141480,AAA Batteries (4-pack),1,2.99,01/21/19 12:45,"631 Willow St, Los Angeles, CA 90001" +141481,Bose SoundSport Headphones,1,99.99,01/31/19 07:13,"886 Washington St, Austin, TX 73301" +141482,Lightning Charging Cable,1,14.95,01/24/19 11:05,"230 Pine St, New York City, NY 10001" +141483,Lightning Charging Cable,1,14.95,01/16/19 21:31,"334 9th St, Los Angeles, CA 90001" +141484,AA Batteries (4-pack),1,3.84,01/08/19 12:22,"732 Willow St, San Francisco, CA 94016" +141485,iPhone,1,700.0,01/14/19 12:46,"836 Park St, San Francisco, CA 94016" +141486,Google Phone,1,600.0,01/26/19 11:11,"444 Lincoln St, San Francisco, CA 94016" +141487,Bose SoundSport Headphones,1,99.99,01/13/19 14:14,"241 11th St, New York City, NY 10001" +141488,20in Monitor,1,109.99,01/26/19 21:37,"243 Spruce St, Los Angeles, CA 90001" +141489,27in FHD Monitor,1,149.99,01/27/19 19:57,"995 Elm St, Atlanta, GA 30301" +141490,Lightning Charging Cable,1,14.95,01/19/19 12:19,"670 11th St, New York City, NY 10001" +141491,34in Ultrawide Monitor,1,379.99,01/21/19 02:14,"647 Main St, San Francisco, CA 94016" +141492,Lightning Charging Cable,1,14.95,01/13/19 12:47,"657 Chestnut St, Los Angeles, CA 90001" +141493,AAA Batteries (4-pack),1,2.99,01/01/19 10:37,"963 13th St, Los Angeles, CA 90001" +141494,Wired Headphones,1,11.99,01/06/19 13:25,"455 Main St, Atlanta, GA 30301" +141495,Wired Headphones,1,11.99,01/25/19 14:24,"81 Forest St, Portland, OR 97035" +141496,Lightning Charging Cable,1,14.95,01/04/19 13:29,"678 13th St, New York City, NY 10001" +141497,ThinkPad Laptop,1,999.99,01/20/19 21:50,"572 North St, San Francisco, CA 94016" +141497,Apple Airpods Headphones,1,150.0,01/20/19 21:50,"572 North St, San Francisco, CA 94016" +141498,Bose SoundSport Headphones,1,99.99,01/24/19 11:14,"795 11th St, Atlanta, GA 30301" +141499,Lightning Charging Cable,1,14.95,01/24/19 16:39,"964 Church St, San Francisco, CA 94016" +141500,Apple Airpods Headphones,1,150.0,01/28/19 17:32,"678 Lakeview St, Atlanta, GA 30301" +141501,Lightning Charging Cable,1,14.95,01/15/19 22:33,"237 Chestnut St, Dallas, TX 75001" +141502,34in Ultrawide Monitor,1,379.99,01/21/19 21:08,"807 9th St, Austin, TX 73301" +141503,AA Batteries (4-pack),2,3.84,01/11/19 07:48,"893 West St, Dallas, TX 75001" +141504,USB-C Charging Cable,1,11.95,01/27/19 09:59,"184 Pine St, Los Angeles, CA 90001" +,,,,, +141505,USB-C Charging Cable,2,11.95,01/18/19 08:25,"927 5th St, San Francisco, CA 94016" +141506,AA Batteries (4-pack),1,3.84,01/06/19 17:46,"411 6th St, Austin, TX 73301" +141507,USB-C Charging Cable,1,11.95,01/29/19 10:17,"896 2nd St, San Francisco, CA 94016" +141508,Apple Airpods Headphones,1,150,01/23/19 11:21,"580 Hill St, Dallas, TX 75001" +141509,USB-C Charging Cable,1,11.95,01/24/19 06:24,"177 Pine St, San Francisco, CA 94016" +141510,27in 4K Gaming Monitor,1,389.99,01/18/19 13:54,"259 10th St, Austin, TX 73301" +141511,USB-C Charging Cable,1,11.95,01/18/19 20:54,"118 Johnson St, Boston, MA 02215" +141512,iPhone,1,700,01/19/19 18:26,"762 13th St, San Francisco, CA 94016" +141513,ThinkPad Laptop,1,999.99,01/17/19 16:55,"800 Pine St, San Francisco, CA 94016" +141514,Wired Headphones,1,11.99,01/12/19 13:32,"846 Center St, Atlanta, GA 30301" +141515,Lightning Charging Cable,1,14.95,01/28/19 07:18,"18 Lake St, San Francisco, CA 94016" +141516,AAA Batteries (4-pack),1,2.99,01/22/19 00:21,"75 11th St, Portland, ME 04101" +141517,USB-C Charging Cable,1,11.95,01/09/19 21:10,"860 Walnut St, San Francisco, CA 94016" +141518,Lightning Charging Cable,1,14.95,01/17/19 13:12,"424 11th St, Seattle, WA 98101" +141519,Apple Airpods Headphones,1,150,01/12/19 11:39,"495 South St, New York City, NY 10001" +141520,USB-C Charging Cable,1,11.95,01/16/19 15:59,"475 Highland St, Los Angeles, CA 90001" +141521,Lightning Charging Cable,1,14.95,01/24/19 12:58,"819 River St, Atlanta, GA 30301" +141522,Apple Airpods Headphones,1,150,01/31/19 21:22,"207 Walnut St, Los Angeles, CA 90001" +141523,27in FHD Monitor,1,149.99,01/10/19 14:49,"741 Wilson St, San Francisco, CA 94016" +141524,Wired Headphones,1,11.99,01/25/19 11:50,"898 Park St, San Francisco, CA 94016" +141525,AA Batteries (4-pack),1,3.84,01/03/19 09:14,"594 11th St, Atlanta, GA 30301" +141526,27in FHD Monitor,1,149.99,01/22/19 19:04,"131 Madison St, Los Angeles, CA 90001" +141527,Lightning Charging Cable,1,14.95,01/16/19 18:23,"147 Washington St, New York City, NY 10001" +141528,34in Ultrawide Monitor,1,379.99,01/29/19 14:41,"468 Forest St, Boston, MA 02215" +141529,USB-C Charging Cable,1,11.95,01/02/19 18:59,"560 6th St, San Francisco, CA 94016" +141530,iPhone,1,700,01/12/19 10:48,"761 9th St, Dallas, TX 75001" +141531,USB-C Charging Cable,1,11.95,01/11/19 20:44,"362 Wilson St, Boston, MA 02215" +141532,USB-C Charging Cable,2,11.95,01/06/19 20:14,"842 Cedar St, Dallas, TX 75001" +141533,Wired Headphones,1,11.99,01/27/19 17:08,"209 Jefferson St, New York City, NY 10001" +141534,Wired Headphones,1,11.99,01/31/19 09:58,"193 Highland St, New York City, NY 10001" +141535,AA Batteries (4-pack),1,3.84,01/22/19 10:15,"707 8th St, Los Angeles, CA 90001" +141535,Wired Headphones,1,11.99,01/22/19 10:15,"707 8th St, Los Angeles, CA 90001" +141536,Bose SoundSport Headphones,1,99.99,01/21/19 19:34,"306 Hill St, San Francisco, CA 94016" +141537,27in FHD Monitor,1,149.99,01/07/19 23:17,"817 1st St, Los Angeles, CA 90001" +141538,27in FHD Monitor,1,149.99,01/27/19 19:38,"762 West St, Boston, MA 02215" +141539,Macbook Pro Laptop,1,1700,01/09/19 16:20,"245 South St, San Francisco, CA 94016" +141540,27in 4K Gaming Monitor,1,389.99,01/12/19 20:50,"75 13th St, New York City, NY 10001" +141541,Bose SoundSport Headphones,1,99.99,01/19/19 20:42,"35 10th St, New York City, NY 10001" +141542,AAA Batteries (4-pack),1,2.99,01/13/19 10:02,"770 5th St, San Francisco, CA 94016" +141543,AA Batteries (4-pack),1,3.84,01/16/19 18:25,"363 8th St, Dallas, TX 75001" +141544,Macbook Pro Laptop,1,1700,01/19/19 13:25,"305 Elm St, San Francisco, CA 94016" +141545,Bose SoundSport Headphones,1,99.99,01/06/19 21:02,"92 Chestnut St, Seattle, WA 98101" +141546,AAA Batteries (4-pack),1,2.99,01/23/19 06:13,"289 Lakeview St, Dallas, TX 75001" +141547,Bose SoundSport Headphones,1,99.99,01/22/19 15:40,"213 1st St, Seattle, WA 98101" +141548,iPhone,1,700,01/10/19 21:29,"286 Willow St, Dallas, TX 75001" +141549,USB-C Charging Cable,1,11.95,01/06/19 11:06,"254 Highland St, Boston, MA 02215" +141550,Apple Airpods Headphones,1,150,01/25/19 05:20,"795 Park St, Austin, TX 73301" +141551,AA Batteries (4-pack),1,3.84,01/11/19 13:03,"758 4th St, Austin, TX 73301" +141552,AAA Batteries (4-pack),1,2.99,01/14/19 16:35,"173 9th St, Dallas, TX 75001" +141553,Wired Headphones,1,11.99,01/05/19 10:07,"40 Lakeview St, San Francisco, CA 94016" +141554,Bose SoundSport Headphones,1,99.99,01/23/19 22:33,"416 Johnson St, New York City, NY 10001" +141555,AAA Batteries (4-pack),1,2.99,01/07/19 08:55,"260 Center St, San Francisco, CA 94016" +141556,USB-C Charging Cable,1,11.95,01/28/19 13:52,"650 4th St, New York City, NY 10001" +141557,USB-C Charging Cable,1,11.95,01/15/19 11:55,"53 2nd St, San Francisco, CA 94016" +141558,27in FHD Monitor,1,149.99,01/12/19 17:29,"357 River St, San Francisco, CA 94016" +141559,Wired Headphones,2,11.99,01/07/19 12:22,"903 Dogwood St, Los Angeles, CA 90001" +141560,Bose SoundSport Headphones,1,99.99,01/20/19 10:23,"110 Wilson St, New York City, NY 10001" +141561,iPhone,1,700,01/25/19 14:19,"115 North St, San Francisco, CA 94016" +141562,Lightning Charging Cable,1,14.95,01/13/19 20:43,"445 13th St, Seattle, WA 98101" +141563,AAA Batteries (4-pack),1,2.99,01/29/19 13:26,"347 Lincoln St, Los Angeles, CA 90001" +141564,34in Ultrawide Monitor,1,379.99,01/12/19 15:23,"315 11th St, Dallas, TX 75001" +141564,Google Phone,1,600,01/12/19 15:23,"315 11th St, Dallas, TX 75001" +141565,34in Ultrawide Monitor,1,379.99,01/05/19 20:02,"132 West St, San Francisco, CA 94016" +141566,Vareebadd Phone,1,400,01/16/19 12:46,"462 Johnson St, San Francisco, CA 94016" +141566,Bose SoundSport Headphones,1,99.99,01/16/19 12:46,"462 Johnson St, San Francisco, CA 94016" +141567,USB-C Charging Cable,1,11.95,01/02/19 10:53,"513 Adams St, Dallas, TX 75001" +141568,Macbook Pro Laptop,1,1700,01/05/19 13:54,"935 Willow St, Los Angeles, CA 90001" +141569,USB-C Charging Cable,1,11.95,01/15/19 18:17,"832 13th St, Boston, MA 02215" +141570,iPhone,1,700,01/09/19 17:16,"50 Sunset St, Dallas, TX 75001" +141571,ThinkPad Laptop,1,999.99,01/05/19 17:33,"882 Jefferson St, San Francisco, CA 94016" +141572,Lightning Charging Cable,1,14.95,01/16/19 07:22,"786 Hickory St, Los Angeles, CA 90001" +141573,USB-C Charging Cable,1,11.95,01/14/19 18:47,"280 Cherry St, San Francisco, CA 94016" +141574,Bose SoundSport Headphones,1,99.99,01/02/19 15:31,"554 River St, Dallas, TX 75001" +141575,Apple Airpods Headphones,1,150,01/12/19 17:43,"896 Ridge St, San Francisco, CA 94016" +141576,ThinkPad Laptop,1,999.99,01/05/19 10:02,"401 Washington St, New York City, NY 10001" +141577,Bose SoundSport Headphones,1,99.99,01/07/19 16:46,"825 South St, Boston, MA 02215" +141578,Lightning Charging Cable,1,14.95,01/28/19 20:28,"864 West St, Austin, TX 73301" +141579,AAA Batteries (4-pack),1,2.99,01/11/19 15:32,"904 12th St, Seattle, WA 98101" +141580,AA Batteries (4-pack),1,3.84,01/04/19 10:48,"949 Dogwood St, San Francisco, CA 94016" +141581,34in Ultrawide Monitor,1,379.99,01/22/19 20:46,"796 Lakeview St, New York City, NY 10001" +141582,AA Batteries (4-pack),1,3.84,01/07/19 20:38,"459 Willow St, San Francisco, CA 94016" +141583,AAA Batteries (4-pack),3,2.99,01/19/19 15:40,"388 Center St, Atlanta, GA 30301" +141584,USB-C Charging Cable,1,11.95,01/09/19 12:13,"52 8th St, New York City, NY 10001" +141585,27in FHD Monitor,1,149.99,01/04/19 08:20,"110 Elm St, New York City, NY 10001" +141586,Lightning Charging Cable,1,14.95,01/01/19 11:10,"380 Wilson St, San Francisco, CA 94016" +141587,AA Batteries (4-pack),1,3.84,01/07/19 13:09,"310 Forest St, New York City, NY 10001" +141588,Lightning Charging Cable,1,14.95,01/17/19 12:43,"938 Spruce St, Boston, MA 02215" +141589,AA Batteries (4-pack),1,3.84,01/07/19 13:23,"203 Sunset St, San Francisco, CA 94016" +141590,iPhone,1,700,01/03/19 23:10,"435 Ridge St, Boston, MA 02215" +141591,Apple Airpods Headphones,1,150,01/22/19 20:01,"699 Adams St, Los Angeles, CA 90001" +141592,USB-C Charging Cable,1,11.95,01/04/19 11:44,"738 Meadow St, Seattle, WA 98101" +141593,AAA Batteries (4-pack),1,2.99,01/29/19 20:22,"758 Dogwood St, New York City, NY 10001" +141594,Apple Airpods Headphones,1,150,01/18/19 12:22,"315 1st St, San Francisco, CA 94016" +141595,Apple Airpods Headphones,1,150,01/26/19 17:21,"143 North St, San Francisco, CA 94016" +141596,Apple Airpods Headphones,1,150,01/13/19 13:06,"136 Forest St, Dallas, TX 75001" +141597,Google Phone,1,600,01/14/19 04:33,"648 Forest St, Portland, OR 97035" +141597,Wired Headphones,1,11.99,01/14/19 04:33,"648 Forest St, Portland, OR 97035" +141598,AAA Batteries (4-pack),1,2.99,01/18/19 07:09,"702 Wilson St, Los Angeles, CA 90001" +141599,Flatscreen TV,1,300,01/12/19 13:12,"983 Hickory St, Seattle, WA 98101" +141600,Lightning Charging Cable,2,14.95,01/07/19 15:47,"161 Main St, San Francisco, CA 94016" +141601,Bose SoundSport Headphones,1,99.99,01/06/19 13:10,"271 Dogwood St, Boston, MA 02215" +141602,ThinkPad Laptop,1,999.99,01/11/19 13:28,"152 2nd St, New York City, NY 10001" +141603,Bose SoundSport Headphones,1,99.99,01/22/19 19:57,"471 2nd St, Boston, MA 02215" +141604,Wired Headphones,1,11.99,01/19/19 23:08,"428 Adams St, New York City, NY 10001" +141605,AA Batteries (4-pack),1,3.84,01/26/19 23:45,"821 Pine St, Atlanta, GA 30301" +141606,USB-C Charging Cable,1,11.95,01/26/19 11:34,"546 Cherry St, Dallas, TX 75001" +141607,AA Batteries (4-pack),1,3.84,01/25/19 00:15,"197 12th St, San Francisco, CA 94016" +141608,AAA Batteries (4-pack),1,2.99,01/29/19 13:37,"875 Johnson St, San Francisco, CA 94016" +141609,AAA Batteries (4-pack),1,2.99,01/28/19 07:11,"444 Cherry St, San Francisco, CA 94016" +141610,AAA Batteries (4-pack),1,2.99,01/04/19 07:34,"511 Pine St, Dallas, TX 75001" +141611,Macbook Pro Laptop,1,1700,01/23/19 11:30,"305 6th St, Los Angeles, CA 90001" +141612,Macbook Pro Laptop,1,1700,01/19/19 12:48,"236 1st St, San Francisco, CA 94016" +141613,USB-C Charging Cable,1,11.95,01/12/19 09:59,"120 Jefferson St, San Francisco, CA 94016" +141614,Apple Airpods Headphones,1,150,01/02/19 20:25,"37 Sunset St, Portland, OR 97035" +141615,AAA Batteries (4-pack),1,2.99,01/21/19 18:33,"647 6th St, San Francisco, CA 94016" +141616,34in Ultrawide Monitor,1,379.99,01/20/19 12:06,"200 Pine St, New York City, NY 10001" +141617,Wired Headphones,1,11.99,01/31/19 15:39,"449 West St, Los Angeles, CA 90001" +141618,Apple Airpods Headphones,1,150,01/13/19 18:04,"27 River St, San Francisco, CA 94016" +141619,AAA Batteries (4-pack),2,2.99,01/01/19 14:52,"723 Lincoln St, Seattle, WA 98101" +141620,27in 4K Gaming Monitor,1,389.99,01/07/19 20:20,"148 1st St, New York City, NY 10001" +141621,AA Batteries (4-pack),1,3.84,01/09/19 22:09,"206 Cedar St, Atlanta, GA 30301" +141622,Flatscreen TV,1,300,01/20/19 05:37,"254 12th St, Atlanta, GA 30301" +141623,Wired Headphones,1,11.99,01/20/19 19:44,"905 Park St, Los Angeles, CA 90001" +141624,27in 4K Gaming Monitor,1,389.99,01/22/19 15:15,"650 South St, Los Angeles, CA 90001" +141625,27in FHD Monitor,1,149.99,01/14/19 16:29,"560 9th St, San Francisco, CA 94016" +141626,Bose SoundSport Headphones,1,99.99,01/02/19 16:34,"924 Cedar St, New York City, NY 10001" +141627,Lightning Charging Cable,1,14.95,01/26/19 09:27,"110 Highland St, Seattle, WA 98101" +141628,Macbook Pro Laptop,1,1700,01/10/19 10:33,"191 Lake St, San Francisco, CA 94016" +141629,AA Batteries (4-pack),1,3.84,01/10/19 10:01,"424 8th St, San Francisco, CA 94016" +141630,Lightning Charging Cable,1,14.95,01/30/19 09:51,"450 Willow St, Atlanta, GA 30301" +141631,USB-C Charging Cable,1,11.95,01/22/19 10:12,"433 Willow St, Boston, MA 02215" +141632,AA Batteries (4-pack),1,3.84,01/30/19 14:52,"677 Center St, Los Angeles, CA 90001" +141633,Lightning Charging Cable,1,14.95,01/01/19 17:35,"583 Jackson St, Portland, OR 97035" +141634,Google Phone,1,600,01/31/19 22:20,"943 Church St, Atlanta, GA 30301" +141635,iPhone,1,700,01/23/19 11:27,"921 Lake St, New York City, NY 10001" +141636,Lightning Charging Cable,2,14.95,01/25/19 18:44,"652 Lakeview St, Seattle, WA 98101" +141637,AA Batteries (4-pack),1,3.84,01/15/19 17:44,"854 River St, San Francisco, CA 94016" +141638,AAA Batteries (4-pack),1,2.99,01/05/19 16:49,"124 10th St, San Francisco, CA 94016" +141639,20in Monitor,1,109.99,01/24/19 05:37,"7 Main St, Boston, MA 02215" +141640,Wired Headphones,1,11.99,01/08/19 17:53,"891 Washington St, Atlanta, GA 30301" +141641,Apple Airpods Headphones,1,150,01/15/19 13:39,"516 11th St, San Francisco, CA 94016" +141642,34in Ultrawide Monitor,1,379.99,01/24/19 16:24,"851 Sunset St, Los Angeles, CA 90001" +141643,AA Batteries (4-pack),1,3.84,01/23/19 00:39,"630 Lakeview St, Los Angeles, CA 90001" +141644,Lightning Charging Cable,1,14.95,01/20/19 21:45,"971 7th St, San Francisco, CA 94016" +141645,Macbook Pro Laptop,1,1700,01/25/19 12:50,"867 Washington St, New York City, NY 10001" +141646,USB-C Charging Cable,1,11.95,01/02/19 13:11,"48 Pine St, San Francisco, CA 94016" +141647,USB-C Charging Cable,1,11.95,01/17/19 21:17,"460 13th St, San Francisco, CA 94016" +141648,Apple Airpods Headphones,1,150,01/29/19 08:49,"305 Forest St, New York City, NY 10001" +141649,Wired Headphones,1,11.99,01/24/19 19:42,"56 1st St, San Francisco, CA 94016" +141650,USB-C Charging Cable,1,11.95,01/20/19 20:06,"723 2nd St, New York City, NY 10001" +141651,Wired Headphones,1,11.99,01/10/19 16:13,"819 9th St, San Francisco, CA 94016" +141652,USB-C Charging Cable,1,11.95,01/15/19 08:23,"708 Dogwood St, Los Angeles, CA 90001" +141653,Lightning Charging Cable,1,14.95,01/25/19 11:22,"923 Walnut St, Dallas, TX 75001" +141654,Google Phone,1,600,01/22/19 11:26,"128 Walnut St, Seattle, WA 98101" +141654,USB-C Charging Cable,1,11.95,01/22/19 11:26,"128 Walnut St, Seattle, WA 98101" +141655,Lightning Charging Cable,1,14.95,01/22/19 12:04,"609 5th St, Boston, MA 02215" +141656,Apple Airpods Headphones,1,150,01/05/19 20:54,"851 Lincoln St, Dallas, TX 75001" +141657,27in FHD Monitor,1,149.99,01/28/19 13:30,"531 Elm St, Boston, MA 02215" +141658,Google Phone,1,600,01/13/19 20:19,"399 River St, Boston, MA 02215" +141659,Macbook Pro Laptop,1,1700,01/15/19 18:50,"438 Ridge St, Los Angeles, CA 90001" +141660,AAA Batteries (4-pack),3,2.99,01/20/19 19:16,"683 Maple St, Los Angeles, CA 90001" +141661,27in FHD Monitor,1,149.99,01/18/19 19:27,"521 Pine St, Atlanta, GA 30301" +141662,Wired Headphones,1,11.99,01/01/19 19:44,"63 Washington St, San Francisco, CA 94016" +141663,AA Batteries (4-pack),1,3.84,01/01/19 07:22,"689 Church St, Dallas, TX 75001" +141664,20in Monitor,1,109.99,01/12/19 21:27,"712 Walnut St, Los Angeles, CA 90001" +141665,USB-C Charging Cable,1,11.95,01/06/19 12:54,"783 Pine St, New York City, NY 10001" +141666,Lightning Charging Cable,1,14.95,01/09/19 11:26,"447 4th St, San Francisco, CA 94016" +141667,Google Phone,1,600,01/23/19 16:06,"685 14th St, Atlanta, GA 30301" +141668,Bose SoundSport Headphones,1,99.99,01/17/19 14:35,"483 Main St, Atlanta, GA 30301" +141669,AAA Batteries (4-pack),2,2.99,01/24/19 12:29,"864 Hickory St, Dallas, TX 75001" +141670,AAA Batteries (4-pack),1,2.99,01/16/19 19:07,"155 Washington St, New York City, NY 10001" +141671,Apple Airpods Headphones,1,150,01/04/19 17:29,"22 River St, Boston, MA 02215" +141672,AAA Batteries (4-pack),1,2.99,01/26/19 13:06,"213 14th St, San Francisco, CA 94016" +141673,AAA Batteries (4-pack),1,2.99,01/04/19 14:54,"151 Lakeview St, Portland, OR 97035" +141674,Flatscreen TV,1,300,01/01/19 17:55,"798 Spruce St, Boston, MA 02215" +141675,Lightning Charging Cable,1,14.95,01/10/19 01:39,"602 Chestnut St, Los Angeles, CA 90001" +141676,AAA Batteries (4-pack),1,2.99,01/19/19 09:18,"569 Jefferson St, New York City, NY 10001" +141677,Bose SoundSport Headphones,1,99.99,01/24/19 14:38,"857 13th St, New York City, NY 10001" +141677,Google Phone,1,600,01/24/19 14:38,"857 13th St, New York City, NY 10001" +141678,Google Phone,1,600,01/09/19 12:38,"140 Dogwood St, Los Angeles, CA 90001" +141679,Apple Airpods Headphones,1,150,02/01/19 00:48,"890 8th St, San Francisco, CA 94016" +141680,Google Phone,1,600,01/10/19 23:04,"105 Forest St, Atlanta, GA 30301" +141680,USB-C Charging Cable,1,11.95,01/10/19 23:04,"105 Forest St, Atlanta, GA 30301" +141681,Flatscreen TV,1,300,01/17/19 21:47,"892 Main St, Boston, MA 02215" +141682,Wired Headphones,2,11.99,01/09/19 09:49,"8 6th St, Seattle, WA 98101" +141683,Google Phone,1,600,01/28/19 11:18,"991 7th St, San Francisco, CA 94016" +141684,LG Washing Machine,1,600.0,01/12/19 22:13,"163 Jackson St, New York City, NY 10001" +141685,Bose SoundSport Headphones,1,99.99,01/19/19 20:03,"697 13th St, Seattle, WA 98101" +141686,LG Washing Machine,1,600.0,01/07/19 13:09,"538 Highland St, Los Angeles, CA 90001" +141687,Bose SoundSport Headphones,1,99.99,01/16/19 20:36,"939 9th St, San Francisco, CA 94016" +141688,USB-C Charging Cable,1,11.95,01/06/19 10:18,"934 Dogwood St, Dallas, TX 75001" +141689,Macbook Pro Laptop,1,1700,01/20/19 21:05,"925 Adams St, Seattle, WA 98101" +141690,Wired Headphones,1,11.99,01/26/19 17:17,"687 Sunset St, Atlanta, GA 30301" +141691,AA Batteries (4-pack),1,3.84,01/23/19 09:04,"654 Chestnut St, Los Angeles, CA 90001" +141692,Wired Headphones,1,11.99,01/17/19 13:39,"32 Hill St, San Francisco, CA 94016" +141693,iPhone,1,700,01/23/19 14:07,"600 Hill St, San Francisco, CA 94016" +141694,Lightning Charging Cable,1,14.95,01/08/19 20:57,"709 Lakeview St, Atlanta, GA 30301" +141695,AAA Batteries (4-pack),1,2.99,01/16/19 15:57,"47 Cedar St, San Francisco, CA 94016" +141696,AAA Batteries (4-pack),2,2.99,01/18/19 07:16,"301 Lake St, Boston, MA 02215" +141697,USB-C Charging Cable,1,11.95,01/18/19 23:24,"302 Highland St, Seattle, WA 98101" +141698,iPhone,1,700,01/04/19 09:58,"444 10th St, New York City, NY 10001" +141699,AAA Batteries (4-pack),3,2.99,01/29/19 09:51,"854 Adams St, San Francisco, CA 94016" +141700,iPhone,1,700,01/19/19 00:24,"429 Pine St, Boston, MA 02215" +141701,AA Batteries (4-pack),1,3.84,01/07/19 20:38,"926 North St, Dallas, TX 75001" +141702,Wired Headphones,1,11.99,01/20/19 16:05,"752 Johnson St, New York City, NY 10001" +141703,Apple Airpods Headphones,1,150,01/03/19 22:08,"909 Chestnut St, Seattle, WA 98101" +141704,AAA Batteries (4-pack),1,2.99,01/17/19 12:41,"28 Main St, Austin, TX 73301" +141705,AA Batteries (4-pack),1,3.84,01/13/19 14:35,"495 South St, San Francisco, CA 94016" +141706,AA Batteries (4-pack),2,3.84,01/08/19 13:41,"698 Lakeview St, Dallas, TX 75001" +141707,AAA Batteries (4-pack),1,2.99,01/11/19 23:15,"758 Pine St, San Francisco, CA 94016" +141708,Lightning Charging Cable,1,14.95,01/25/19 21:13,"312 8th St, Atlanta, GA 30301" +141709,LG Dryer,1,600.0,01/24/19 15:37,"873 4th St, Los Angeles, CA 90001" +141710,27in FHD Monitor,1,149.99,01/28/19 22:15,"600 Forest St, Portland, ME 04101" +141711,AA Batteries (4-pack),1,3.84,01/28/19 18:49,"336 Hickory St, Seattle, WA 98101" +141712,Bose SoundSport Headphones,1,99.99,01/25/19 23:47,"49 10th St, Boston, MA 02215" +141713,Apple Airpods Headphones,1,150,01/25/19 23:18,"437 11th St, New York City, NY 10001" +141714,USB-C Charging Cable,1,11.95,01/31/19 22:17,"255 Park St, San Francisco, CA 94016" +141715,Bose SoundSport Headphones,1,99.99,01/31/19 22:48,"681 10th St, Los Angeles, CA 90001" +141716,AA Batteries (4-pack),1,3.84,01/13/19 07:55,"854 Spruce St, Dallas, TX 75001" +141717,Wired Headphones,2,11.99,01/22/19 22:42,"444 Sunset St, Portland, OR 97035" +141718,AAA Batteries (4-pack),1,2.99,01/27/19 19:00,"48 South St, San Francisco, CA 94016" +141719,AA Batteries (4-pack),1,3.84,01/13/19 21:59,"924 Washington St, Austin, TX 73301" +141720,USB-C Charging Cable,1,11.95,01/24/19 17:40,"439 10th St, Boston, MA 02215" +141721,AAA Batteries (4-pack),3,2.99,01/09/19 18:15,"303 Madison St, San Francisco, CA 94016" +141722,Wired Headphones,1,11.99,01/24/19 00:13,"947 Wilson St, Atlanta, GA 30301" +141723,AA Batteries (4-pack),5,3.84,01/03/19 19:10,"67 11th St, Boston, MA 02215" +141724,ThinkPad Laptop,1,999.99,01/21/19 09:08,"677 1st St, Portland, OR 97035" +141725,Lightning Charging Cable,1,14.95,01/31/19 21:54,"859 Sunset St, New York City, NY 10001" +141726,AA Batteries (4-pack),1,3.84,01/04/19 11:33,"685 Lakeview St, Boston, MA 02215" +141727,Lightning Charging Cable,1,14.95,01/07/19 09:20,"907 11th St, Seattle, WA 98101" +141728,AAA Batteries (4-pack),1,2.99,01/26/19 23:39,"499 Forest St, Portland, OR 97035" +141729,AA Batteries (4-pack),1,3.84,01/24/19 16:51,"716 7th St, San Francisco, CA 94016" +141730,AAA Batteries (4-pack),2,2.99,01/26/19 16:39,"650 Elm St, Dallas, TX 75001" +141731,AA Batteries (4-pack),1,3.84,01/02/19 11:26,"980 Cherry St, New York City, NY 10001" +141732,AAA Batteries (4-pack),1,2.99,01/11/19 14:39,"721 River St, San Francisco, CA 94016" +141733,USB-C Charging Cable,1,11.95,01/30/19 22:35,"572 6th St, Seattle, WA 98101" +141734,20in Monitor,1,109.99,01/20/19 14:46,"62 Highland St, New York City, NY 10001" +141735,AA Batteries (4-pack),4,3.84,01/10/19 17:12,"402 South St, San Francisco, CA 94016" +141736,LG Dryer,1,600.0,01/28/19 13:22,"792 11th St, San Francisco, CA 94016" +141737,Flatscreen TV,1,300,01/24/19 01:49,"60 1st St, Portland, OR 97035" +141738,27in FHD Monitor,1,149.99,01/20/19 16:52,"327 Walnut St, New York City, NY 10001" +141739,Lightning Charging Cable,1,14.95,01/25/19 17:22,"504 Jefferson St, Boston, MA 02215" +141740,AAA Batteries (4-pack),4,2.99,01/03/19 15:51,"832 Willow St, Los Angeles, CA 90001" +141741,AAA Batteries (4-pack),2,2.99,01/15/19 12:26,"377 Elm St, Austin, TX 73301" +141742,USB-C Charging Cable,2,11.95,01/30/19 13:04,"776 14th St, Dallas, TX 75001" +141743,AA Batteries (4-pack),2,3.84,01/04/19 23:48,"21 Dogwood St, Atlanta, GA 30301" +141744,Wired Headphones,1,11.99,01/07/19 18:37,"174 Madison St, San Francisco, CA 94016" +141745,iPhone,1,700,01/11/19 14:42,"853 1st St, Los Angeles, CA 90001" +141746,USB-C Charging Cable,1,11.95,01/05/19 17:55,"785 Dogwood St, San Francisco, CA 94016" +141747,AAA Batteries (4-pack),2,2.99,01/19/19 16:30,"453 Cedar St, New York City, NY 10001" +141748,AAA Batteries (4-pack),1,2.99,01/21/19 16:47,"342 Ridge St, Dallas, TX 75001" +141749,27in 4K Gaming Monitor,1,389.99,01/03/19 02:49,"6 Dogwood St, New York City, NY 10001" +141750,USB-C Charging Cable,1,11.95,01/08/19 07:45,"499 2nd St, Portland, ME 04101" +141751,Wired Headphones,1,11.99,01/29/19 16:30,"779 Lincoln St, Los Angeles, CA 90001" +141752,Lightning Charging Cable,1,14.95,01/27/19 16:54,"117 Park St, New York City, NY 10001" +141753,20in Monitor,1,109.99,01/07/19 09:37,"122 5th St, Atlanta, GA 30301" +141754,Lightning Charging Cable,1,14.95,01/13/19 20:26,"457 Pine St, Boston, MA 02215" +141755,Flatscreen TV,1,300,01/20/19 20:54,"844 Cedar St, Boston, MA 02215" +141756,20in Monitor,1,109.99,01/03/19 10:36,"621 Jefferson St, San Francisco, CA 94016" +141757,USB-C Charging Cable,2,11.95,01/16/19 23:08,"548 Willow St, San Francisco, CA 94016" +141758,AAA Batteries (4-pack),1,2.99,01/23/19 13:46,"802 2nd St, Atlanta, GA 30301" +141759,AA Batteries (4-pack),1,3.84,01/24/19 13:06,"161 Park St, San Francisco, CA 94016" +141760,Wired Headphones,1,11.99,01/15/19 19:06,"622 9th St, Portland, OR 97035" +141761,AAA Batteries (4-pack),1,2.99,01/16/19 20:44,"666 Lincoln St, Los Angeles, CA 90001" +141762,USB-C Charging Cable,1,11.95,01/16/19 00:40,"204 Willow St, New York City, NY 10001" +141763,AAA Batteries (4-pack),1,2.99,01/27/19 10:48,"681 Lincoln St, New York City, NY 10001" +141763,Macbook Pro Laptop,1,1700,01/27/19 10:48,"681 Lincoln St, New York City, NY 10001" +141764,Flatscreen TV,1,300,01/10/19 12:45,"522 Jackson St, Seattle, WA 98101" +141765,34in Ultrawide Monitor,1,379.99,01/12/19 18:19,"432 Lakeview St, Austin, TX 73301" +141766,Apple Airpods Headphones,1,150,01/13/19 19:02,"933 Hill St, New York City, NY 10001" +141767,27in FHD Monitor,1,149.99,01/03/19 16:02,"340 6th St, Los Angeles, CA 90001" +141768,AA Batteries (4-pack),4,3.84,01/10/19 14:03,"630 Jackson St, New York City, NY 10001" +141769,Wired Headphones,1,11.99,01/30/19 23:19,"712 Park St, Atlanta, GA 30301" +141770,ThinkPad Laptop,1,999.99,01/06/19 13:38,"193 10th St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +141771,27in FHD Monitor,1,149.99,01/24/19 09:04,"124 9th St, New York City, NY 10001" +141772,Lightning Charging Cable,1,14.95,01/10/19 11:37,"689 Wilson St, Los Angeles, CA 90001" +141773,27in FHD Monitor,1,149.99,01/08/19 15:03,"997 2nd St, Los Angeles, CA 90001" +141774,27in FHD Monitor,1,149.99,01/24/19 19:46,"786 Johnson St, San Francisco, CA 94016" +141775,Lightning Charging Cable,1,14.95,01/14/19 10:45,"604 7th St, San Francisco, CA 94016" +141776,Wired Headphones,1,11.99,01/31/19 12:55,"460 Meadow St, San Francisco, CA 94016" +141777,iPhone,1,700,01/03/19 15:56,"984 Wilson St, San Francisco, CA 94016" +141778,Wired Headphones,1,11.99,01/29/19 01:45,"684 Adams St, New York City, NY 10001" +141779,Lightning Charging Cable,1,14.95,01/18/19 21:11,"357 Sunset St, Seattle, WA 98101" +141780,AA Batteries (4-pack),1,3.84,01/01/19 23:35,"761 Johnson St, San Francisco, CA 94016" +141781,AA Batteries (4-pack),1,3.84,01/20/19 13:41,"715 North St, Boston, MA 02215" +141782,27in FHD Monitor,1,149.99,01/27/19 13:28,"408 Lincoln St, Boston, MA 02215" +141783,AA Batteries (4-pack),1,3.84,01/17/19 06:50,"898 Chestnut St, San Francisco, CA 94016" +141784,27in 4K Gaming Monitor,1,389.99,01/19/19 11:45,"368 South St, Los Angeles, CA 90001" +141785,Bose SoundSport Headphones,1,99.99,01/26/19 21:08,"331 River St, Portland, ME 04101" +141786,AAA Batteries (4-pack),1,2.99,01/30/19 19:22,"903 Madison St, Boston, MA 02215" +141787,AAA Batteries (4-pack),1,2.99,01/22/19 16:29,"185 Highland St, Dallas, TX 75001" +141788,Flatscreen TV,1,300,01/13/19 18:18,"540 Washington St, Atlanta, GA 30301" +141789,27in 4K Gaming Monitor,1,389.99,01/30/19 12:37,"209 5th St, Seattle, WA 98101" +141790,Wired Headphones,1,11.99,01/29/19 06:57,"937 Hickory St, Portland, OR 97035" +141791,34in Ultrawide Monitor,1,379.99,01/15/19 10:46,"956 Washington St, New York City, NY 10001" +141792,27in 4K Gaming Monitor,1,389.99,01/22/19 21:09,"458 Adams St, Dallas, TX 75001" +141793,Bose SoundSport Headphones,1,99.99,01/24/19 23:09,"842 Chestnut St, New York City, NY 10001" +141794,Wired Headphones,1,11.99,01/16/19 22:29,"456 Walnut St, Los Angeles, CA 90001" +141795,AAA Batteries (4-pack),2,2.99,01/28/19 19:12,"731 7th St, Los Angeles, CA 90001" +141796,Wired Headphones,1,11.99,01/04/19 19:33,"349 12th St, Atlanta, GA 30301" +141797,27in FHD Monitor,1,149.99,01/28/19 14:34,"738 Willow St, San Francisco, CA 94016" +141798,AA Batteries (4-pack),1,3.84,01/08/19 18:06,"855 Center St, Portland, OR 97035" +141799,Wired Headphones,1,11.99,01/11/19 21:28,"313 Highland St, Atlanta, GA 30301" +141800,AA Batteries (4-pack),1,3.84,01/14/19 18:47,"394 Jackson St, Boston, MA 02215" +141801,USB-C Charging Cable,1,11.95,01/30/19 08:16,"549 South St, San Francisco, CA 94016" +141802,AAA Batteries (4-pack),1,2.99,01/23/19 14:04,"593 Walnut St, Boston, MA 02215" +141802,USB-C Charging Cable,1,11.95,01/23/19 14:04,"593 Walnut St, Boston, MA 02215" +141803,Wired Headphones,1,11.99,01/13/19 12:04,"762 Washington St, Austin, TX 73301" +141804,iPhone,1,700,01/15/19 17:35,"473 12th St, San Francisco, CA 94016" +141805,AA Batteries (4-pack),2,3.84,01/12/19 21:23,"455 6th St, Los Angeles, CA 90001" +141806,Apple Airpods Headphones,1,150,01/03/19 22:01,"677 6th St, San Francisco, CA 94016" +141807,AAA Batteries (4-pack),3,2.99,01/20/19 12:48,"228 North St, San Francisco, CA 94016" +141808,AA Batteries (4-pack),1,3.84,01/30/19 01:06,"304 Main St, Boston, MA 02215" +141809,Lightning Charging Cable,1,14.95,01/26/19 20:50,"397 14th St, Dallas, TX 75001" +141810,AAA Batteries (4-pack),3,2.99,01/16/19 18:18,"797 Johnson St, New York City, NY 10001" +141811,Wired Headphones,2,11.99,01/08/19 20:28,"270 Meadow St, Los Angeles, CA 90001" +141812,Apple Airpods Headphones,1,150,01/17/19 14:59,"325 Cherry St, Dallas, TX 75001" +141813,Google Phone,1,600,01/24/19 17:40,"304 9th St, San Francisco, CA 94016" +141814,Lightning Charging Cable,1,14.95,01/12/19 12:58,"599 2nd St, Seattle, WA 98101" +141815,27in FHD Monitor,1,149.99,01/10/19 13:34,"707 Spruce St, San Francisco, CA 94016" +141816,Wired Headphones,1,11.99,01/18/19 18:33,"803 11th St, San Francisco, CA 94016" +141817,27in FHD Monitor,1,149.99,01/21/19 12:05,"172 Lincoln St, San Francisco, CA 94016" +141818,Flatscreen TV,1,300,01/31/19 09:51,"827 Forest St, Boston, MA 02215" +141819,AAA Batteries (4-pack),1,2.99,01/05/19 10:39,"668 2nd St, Boston, MA 02215" +141820,AA Batteries (4-pack),1,3.84,01/07/19 15:25,"950 2nd St, Boston, MA 02215" +141821,USB-C Charging Cable,1,11.95,01/25/19 12:16,"781 6th St, Portland, OR 97035" +141822,Apple Airpods Headphones,1,150,01/13/19 11:52,"676 Washington St, San Francisco, CA 94016" +141823,iPhone,1,700,01/11/19 11:33,"65 Hickory St, Los Angeles, CA 90001" +141824,27in 4K Gaming Monitor,1,389.99,01/29/19 10:05,"578 12th St, Los Angeles, CA 90001" +141825,USB-C Charging Cable,1,11.95,01/19/19 18:23,"429 Johnson St, San Francisco, CA 94016" +141826,AA Batteries (4-pack),1,3.84,01/30/19 12:25,"850 Spruce St, Atlanta, GA 30301" +141827,34in Ultrawide Monitor,1,379.99,01/02/19 18:06,"447 Pine St, Austin, TX 73301" +141828,Wired Headphones,1,11.99,01/11/19 14:37,"156 1st St, Seattle, WA 98101" +141829,USB-C Charging Cable,1,11.95,01/21/19 10:48,"625 Pine St, Los Angeles, CA 90001" +141830,Wired Headphones,1,11.99,01/04/19 09:43,"604 Dogwood St, San Francisco, CA 94016" +141831,Bose SoundSport Headphones,1,99.99,01/20/19 18:02,"494 2nd St, San Francisco, CA 94016" +141832,AAA Batteries (4-pack),1,2.99,01/28/19 09:02,"314 Washington St, Atlanta, GA 30301" +141833,AA Batteries (4-pack),1,3.84,01/20/19 16:30,"676 Hill St, San Francisco, CA 94016" +141834,AAA Batteries (4-pack),1,2.99,01/18/19 12:33,"37 Pine St, New York City, NY 10001" +141835,LG Dryer,1,600.0,01/26/19 22:33,"527 Church St, San Francisco, CA 94016" +141836,AA Batteries (4-pack),1,3.84,01/19/19 12:24,"437 Ridge St, Austin, TX 73301" +141837,Lightning Charging Cable,1,14.95,01/12/19 16:29,"468 Jackson St, San Francisco, CA 94016" +141838,Flatscreen TV,1,300,01/16/19 12:23,"501 Ridge St, New York City, NY 10001" +141839,Lightning Charging Cable,1,14.95,01/18/19 17:50,"199 Church St, New York City, NY 10001" +141840,AA Batteries (4-pack),2,3.84,01/29/19 15:20,"288 Lakeview St, Seattle, WA 98101" +141841,Flatscreen TV,1,300,01/14/19 17:36,"391 Lake St, Atlanta, GA 30301" +141842,Google Phone,1,600,01/04/19 01:01,"240 Cherry St, Boston, MA 02215" +141843,Bose SoundSport Headphones,1,99.99,01/18/19 08:51,"144 6th St, New York City, NY 10001" +141844,USB-C Charging Cable,1,11.95,01/10/19 22:33,"562 North St, New York City, NY 10001" +141845,Apple Airpods Headphones,1,150,01/29/19 06:49,"390 Dogwood St, Atlanta, GA 30301" +141846,Google Phone,1,600,01/25/19 23:27,"755 South St, Los Angeles, CA 90001" +141846,USB-C Charging Cable,1,11.95,01/25/19 23:27,"755 South St, Los Angeles, CA 90001" +141847,27in FHD Monitor,1,149.99,01/01/19 21:35,"454 Johnson St, Boston, MA 02215" +141848,Apple Airpods Headphones,1,150,01/12/19 19:34,"129 Walnut St, Los Angeles, CA 90001" +141849,Macbook Pro Laptop,1,1700,01/14/19 17:24,"620 11th St, Dallas, TX 75001" +141850,ThinkPad Laptop,1,999.99,01/19/19 18:48,"920 Cedar St, Atlanta, GA 30301" +141851,Wired Headphones,1,11.99,01/10/19 12:22,"567 Willow St, Seattle, WA 98101" +141852,27in 4K Gaming Monitor,1,389.99,01/07/19 12:42,"247 Willow St, San Francisco, CA 94016" +141853,AAA Batteries (4-pack),1,2.99,01/29/19 14:10,"995 Adams St, Los Angeles, CA 90001" +141854,USB-C Charging Cable,1,11.95,01/26/19 15:26,"605 9th St, Portland, OR 97035" +141855,AA Batteries (4-pack),2,3.84,01/13/19 19:34,"467 13th St, Los Angeles, CA 90001" +141856,Apple Airpods Headphones,1,150,01/23/19 21:11,"367 10th St, Austin, TX 73301" +141857,Macbook Pro Laptop,1,1700,01/15/19 15:08,"898 Wilson St, Dallas, TX 75001" +141858,Bose SoundSport Headphones,1,99.99,01/06/19 20:49,"287 North St, Portland, OR 97035" +141859,Wired Headphones,1,11.99,01/22/19 22:02,"677 10th St, Austin, TX 73301" +141860,AA Batteries (4-pack),1,3.84,01/14/19 18:48,"167 12th St, New York City, NY 10001" +141861,AA Batteries (4-pack),1,3.84,01/26/19 11:30,"492 8th St, San Francisco, CA 94016" +141862,Wired Headphones,1,11.99,01/05/19 16:16,"534 5th St, San Francisco, CA 94016" +141863,Vareebadd Phone,1,400,01/06/19 10:04,"851 2nd St, Austin, TX 73301" +141863,USB-C Charging Cable,1,11.95,01/06/19 10:04,"851 2nd St, Austin, TX 73301" +141864,Wired Headphones,1,11.99,01/29/19 07:44,"326 South St, San Francisco, CA 94016" +141865,Bose SoundSport Headphones,1,99.99,01/25/19 07:55,"178 5th St, Austin, TX 73301" +141866,Flatscreen TV,1,300,01/13/19 12:59,"745 Church St, Austin, TX 73301" +141867,AAA Batteries (4-pack),1,2.99,01/21/19 08:50,"443 6th St, Los Angeles, CA 90001" +141868,Apple Airpods Headphones,1,150,01/10/19 12:52,"267 7th St, New York City, NY 10001" +141869,Apple Airpods Headphones,1,150,01/28/19 12:51,"573 Adams St, Los Angeles, CA 90001" +141870,AAA Batteries (4-pack),1,2.99,01/04/19 08:17,"909 5th St, Portland, OR 97035" +141871,Wired Headphones,1,11.99,01/29/19 13:32,"763 Chestnut St, Los Angeles, CA 90001" +141872,USB-C Charging Cable,1,11.95,01/12/19 13:31,"300 Cedar St, Seattle, WA 98101" +141873,Macbook Pro Laptop,1,1700,01/18/19 14:27,"569 Chestnut St, San Francisco, CA 94016" +141874,AAA Batteries (4-pack),1,2.99,01/16/19 19:05,"518 River St, Los Angeles, CA 90001" +141875,Wired Headphones,1,11.99,01/12/19 21:56,"829 12th St, Austin, TX 73301" +141876,Flatscreen TV,1,300,01/29/19 19:41,"410 8th St, Boston, MA 02215" +141877,AA Batteries (4-pack),1,3.84,01/08/19 14:09,"472 Main St, Atlanta, GA 30301" +141878,20in Monitor,1,109.99,01/03/19 12:40,"346 Willow St, Dallas, TX 75001" +141879,ThinkPad Laptop,1,999.99,01/19/19 10:56,"128 8th St, San Francisco, CA 94016" +141880,Lightning Charging Cable,1,14.95,01/13/19 19:37,"942 Hill St, San Francisco, CA 94016" +141881,Bose SoundSport Headphones,1,99.99,01/09/19 16:22,"184 Dogwood St, Atlanta, GA 30301" +141882,AAA Batteries (4-pack),1,2.99,01/05/19 19:09,"381 West St, Boston, MA 02215" +141883,Lightning Charging Cable,2,14.95,01/18/19 16:49,"241 Church St, Boston, MA 02215" +141884,AA Batteries (4-pack),1,3.84,01/19/19 16:44,"681 Highland St, Portland, OR 97035" +141885,ThinkPad Laptop,1,999.99,01/23/19 14:23,"588 Elm St, San Francisco, CA 94016" +141886,AAA Batteries (4-pack),2,2.99,01/26/19 11:21,"943 Main St, Atlanta, GA 30301" +141887,Wired Headphones,1,11.99,01/10/19 18:49,"472 9th St, Seattle, WA 98101" +141888,USB-C Charging Cable,1,11.95,01/22/19 22:54,"420 Cedar St, San Francisco, CA 94016" +141889,iPhone,1,700,01/27/19 21:35,"925 Church St, Los Angeles, CA 90001" +141890,Google Phone,1,600,01/08/19 17:39,"670 Church St, Los Angeles, CA 90001" +141890,Bose SoundSport Headphones,1,99.99,01/08/19 17:39,"670 Church St, Los Angeles, CA 90001" +141891,USB-C Charging Cable,1,11.95,01/14/19 12:12,"945 Wilson St, Dallas, TX 75001" +141892,Bose SoundSport Headphones,1,99.99,01/04/19 05:42,"534 Lake St, Boston, MA 02215" +141893,Apple Airpods Headphones,1,150,01/16/19 20:52,"387 12th St, Atlanta, GA 30301" +141894,Google Phone,1,600,01/02/19 22:06,"669 9th St, San Francisco, CA 94016" +141895,Lightning Charging Cable,1,14.95,01/12/19 23:11,"559 Cherry St, San Francisco, CA 94016" +141896,Bose SoundSport Headphones,1,99.99,01/09/19 12:07,"873 Dogwood St, Boston, MA 02215" +141897,Lightning Charging Cable,1,14.95,01/01/19 10:26,"225 Johnson St, Austin, TX 73301" +141898,AA Batteries (4-pack),1,3.84,01/06/19 20:05,"267 Elm St, New York City, NY 10001" +141899,AAA Batteries (4-pack),1,2.99,01/07/19 08:55,"989 Washington St, Los Angeles, CA 90001" +141900,AAA Batteries (4-pack),1,2.99,01/03/19 14:09,"174 Maple St, Dallas, TX 75001" +141901,AAA Batteries (4-pack),1,2.99,01/01/19 23:16,"664 Spruce St, Dallas, TX 75001" +141902,USB-C Charging Cable,1,11.95,01/11/19 09:25,"202 Forest St, Los Angeles, CA 90001" +141903,AA Batteries (4-pack),1,3.84,01/05/19 19:28,"412 2nd St, Dallas, TX 75001" +141904,ThinkPad Laptop,1,999.99,01/14/19 20:12,"159 Pine St, Portland, OR 97035" +141905,LG Dryer,1,600.0,01/31/19 12:21,"385 2nd St, Los Angeles, CA 90001" +141906,Lightning Charging Cable,1,14.95,01/06/19 11:42,"418 Willow St, San Francisco, CA 94016" +141907,20in Monitor,1,109.99,01/11/19 10:01,"281 Ridge St, New York City, NY 10001" +141908,Apple Airpods Headphones,1,150,01/11/19 14:55,"359 Hickory St, Los Angeles, CA 90001" +141909,LG Dryer,1,600.0,01/22/19 18:26,"877 1st St, Portland, OR 97035" +141910,Wired Headphones,1,11.99,01/20/19 09:40,"522 Washington St, San Francisco, CA 94016" +141911,Wired Headphones,1,11.99,01/23/19 08:47,"884 2nd St, Portland, OR 97035" +141912,34in Ultrawide Monitor,1,379.99,01/29/19 08:26,"975 Pine St, Atlanta, GA 30301" +141913,27in 4K Gaming Monitor,1,389.99,01/17/19 04:42,"969 5th St, New York City, NY 10001" +141914,AAA Batteries (4-pack),1,2.99,01/11/19 01:47,"938 West St, San Francisco, CA 94016" +141915,AAA Batteries (4-pack),2,2.99,01/14/19 06:07,"601 2nd St, New York City, NY 10001" +141916,AAA Batteries (4-pack),1,2.99,01/22/19 18:12,"427 Willow St, San Francisco, CA 94016" +141917,Wired Headphones,1,11.99,01/07/19 20:23,"996 4th St, San Francisco, CA 94016" +141918,AA Batteries (4-pack),2,3.84,01/29/19 05:34,"431 South St, Los Angeles, CA 90001" +141919,AAA Batteries (4-pack),1,2.99,01/16/19 10:41,"824 Hickory St, Los Angeles, CA 90001" +141920,USB-C Charging Cable,1,11.95,01/18/19 18:07,"334 South St, Boston, MA 02215" +141921,AAA Batteries (4-pack),1,2.99,01/03/19 08:53,"76 Cherry St, San Francisco, CA 94016" +141922,USB-C Charging Cable,1,11.95,01/08/19 11:17,"130 12th St, San Francisco, CA 94016" +141923,Google Phone,1,600,01/01/19 19:08,"223 Jackson St, Seattle, WA 98101" +141924,AA Batteries (4-pack),1,3.84,01/16/19 22:49,"894 1st St, Portland, OR 97035" +141925,USB-C Charging Cable,1,11.95,01/22/19 18:28,"389 Lakeview St, New York City, NY 10001" +141926,Lightning Charging Cable,1,14.95,01/06/19 11:23,"249 Wilson St, Atlanta, GA 30301" +141927,Wired Headphones,1,11.99,01/29/19 19:53,"618 Spruce St, Boston, MA 02215" +141928,34in Ultrawide Monitor,1,379.99,01/05/19 17:46,"752 River St, Los Angeles, CA 90001" +141929,AAA Batteries (4-pack),1,2.99,01/10/19 11:26,"346 Cedar St, New York City, NY 10001" +141930,AA Batteries (4-pack),2,3.84,01/16/19 23:21,"486 River St, Atlanta, GA 30301" +141931,Google Phone,1,600,01/12/19 11:57,"921 Spruce St, Los Angeles, CA 90001" +141932,AAA Batteries (4-pack),1,2.99,01/12/19 23:09,"720 4th St, Seattle, WA 98101" +141933,Apple Airpods Headphones,1,150,01/16/19 19:43,"210 Church St, Atlanta, GA 30301" +141934,iPhone,1,700,01/28/19 13:22,"678 10th St, Boston, MA 02215" +141935,Lightning Charging Cable,1,14.95,01/10/19 15:04,"62 11th St, Atlanta, GA 30301" +141936,20in Monitor,1,109.99,01/11/19 10:49,"915 Center St, New York City, NY 10001" +141937,AA Batteries (4-pack),1,3.84,01/28/19 13:32,"540 14th St, New York City, NY 10001" +141938,AA Batteries (4-pack),1,3.84,01/20/19 13:27,"89 West St, Los Angeles, CA 90001" +141939,Bose SoundSport Headphones,1,99.99,01/14/19 18:54,"226 Hickory St, Boston, MA 02215" +141940,iPhone,1,700,01/23/19 12:37,"493 6th St, San Francisco, CA 94016" +141940,Lightning Charging Cable,1,14.95,01/23/19 12:37,"493 6th St, San Francisco, CA 94016" +141941,Lightning Charging Cable,1,14.95,01/26/19 07:15,"433 Lake St, Los Angeles, CA 90001" +141942,AA Batteries (4-pack),1,3.84,01/16/19 20:56,"915 Maple St, Austin, TX 73301" +141943,Apple Airpods Headphones,1,150,01/27/19 23:00,"150 1st St, Dallas, TX 75001" +141943,Lightning Charging Cable,1,14.95,01/27/19 23:00,"150 1st St, Dallas, TX 75001" +141944,Lightning Charging Cable,1,14.95,01/15/19 11:42,"768 Adams St, Dallas, TX 75001" +141945,Google Phone,1,600,01/21/19 23:39,"800 West St, Boston, MA 02215" +141946,Wired Headphones,1,11.99,01/09/19 03:14,"302 Meadow St, San Francisco, CA 94016" +141947,Apple Airpods Headphones,1,150,01/25/19 23:05,"504 Sunset St, San Francisco, CA 94016" +141948,Wired Headphones,1,11.99,01/21/19 07:10,"625 Dogwood St, San Francisco, CA 94016" +141949,Wired Headphones,1,11.99,01/03/19 18:32,"700 11th St, Los Angeles, CA 90001" +141950,AA Batteries (4-pack),2,3.84,01/01/19 21:14,"714 Johnson St, Boston, MA 02215" +141951,Lightning Charging Cable,1,14.95,01/18/19 22:32,"670 Church St, Seattle, WA 98101" +141952,Wired Headphones,1,11.99,01/19/19 12:55,"828 Madison St, Los Angeles, CA 90001" +141953,Wired Headphones,1,11.99,01/01/19 19:48,"220 6th St, Los Angeles, CA 90001" +141954,Lightning Charging Cable,1,14.95,01/10/19 11:12,"288 Meadow St, Boston, MA 02215" +141955,AAA Batteries (4-pack),1,2.99,01/03/19 07:35,"36 Hickory St, Portland, OR 97035" +141956,Lightning Charging Cable,1,14.95,01/15/19 18:02,"322 Ridge St, New York City, NY 10001" +141957,AAA Batteries (4-pack),2,2.99,01/18/19 05:45,"672 Willow St, Los Angeles, CA 90001" +141958,Google Phone,1,600,01/17/19 08:02,"822 West St, Seattle, WA 98101" +141959,27in FHD Monitor,1,149.99,01/31/19 05:10,"581 Church St, Los Angeles, CA 90001" +141960,ThinkPad Laptop,1,999.99,01/05/19 15:05,"544 River St, San Francisco, CA 94016" +141961,34in Ultrawide Monitor,1,379.99,01/31/19 10:14,"651 Center St, Dallas, TX 75001" +141962,Apple Airpods Headphones,1,150,01/07/19 06:09,"230 Willow St, San Francisco, CA 94016" +141963,ThinkPad Laptop,1,999.99,01/19/19 13:45,"668 13th St, Los Angeles, CA 90001" +141964,27in 4K Gaming Monitor,1,389.99,01/22/19 19:15,"895 13th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +141965,Wired Headphones,1,11.99,01/02/19 09:45,"803 8th St, Boston, MA 02215" +141966,ThinkPad Laptop,1,999.99,01/02/19 04:17,"726 14th St, Austin, TX 73301" +141967,USB-C Charging Cable,1,11.95,01/06/19 00:29,"534 Spruce St, San Francisco, CA 94016" +141968,Lightning Charging Cable,1,14.95,01/03/19 16:19,"73 Center St, Boston, MA 02215" +141969,Google Phone,1,600,01/27/19 21:55,"326 Jackson St, Los Angeles, CA 90001" +141969,Bose SoundSport Headphones,1,99.99,01/27/19 21:55,"326 Jackson St, Los Angeles, CA 90001" +141970,USB-C Charging Cable,1,11.95,01/29/19 09:29,"421 Jackson St, Boston, MA 02215" +141971,iPhone,1,700,01/04/19 08:08,"468 Lakeview St, Austin, TX 73301" +141972,34in Ultrawide Monitor,1,379.99,01/14/19 14:00,"580 Church St, Boston, MA 02215" +141973,AA Batteries (4-pack),1,3.84,01/07/19 11:58,"965 Church St, Los Angeles, CA 90001" +141974,AA Batteries (4-pack),2,3.84,01/05/19 12:42,"431 Dogwood St, San Francisco, CA 94016" +141975,Lightning Charging Cable,1,14.95,01/03/19 19:13,"196 Lakeview St, Boston, MA 02215" +141976,Lightning Charging Cable,1,14.95,01/27/19 23:26,"364 Cedar St, Atlanta, GA 30301" +141977,AAA Batteries (4-pack),2,2.99,01/11/19 00:09,"534 Lincoln St, New York City, NY 10001" +141978,Lightning Charging Cable,1,14.95,01/04/19 08:00,"515 9th St, New York City, NY 10001" +141979,USB-C Charging Cable,2,11.95,01/20/19 09:25,"597 Meadow St, San Francisco, CA 94016" +141980,AA Batteries (4-pack),1,3.84,01/25/19 22:11,"311 Forest St, San Francisco, CA 94016" +141981,Lightning Charging Cable,1,14.95,01/25/19 12:12,"806 13th St, Atlanta, GA 30301" +141982,Bose SoundSport Headphones,1,99.99,01/12/19 16:11,"464 Madison St, Austin, TX 73301" +141983,Lightning Charging Cable,1,14.95,01/21/19 22:23,"885 7th St, San Francisco, CA 94016" +141984,iPhone,1,700,01/20/19 21:07,"62 Cherry St, Atlanta, GA 30301" +141985,Apple Airpods Headphones,1,150,01/16/19 14:32,"632 Hickory St, Austin, TX 73301" +141986,Google Phone,1,600,01/28/19 14:47,"61 11th St, Austin, TX 73301" +141987,Lightning Charging Cable,1,14.95,01/20/19 16:17,"267 Lincoln St, Seattle, WA 98101" +141988,20in Monitor,1,109.99,01/20/19 19:01,"643 Jackson St, Boston, MA 02215" +141989,Lightning Charging Cable,1,14.95,01/02/19 07:33,"777 Center St, Seattle, WA 98101" +141990,Wired Headphones,1,11.99,01/29/19 13:35,"570 12th St, Portland, ME 04101" +141991,27in FHD Monitor,1,149.99,01/11/19 14:25,"441 Pine St, Seattle, WA 98101" +141992,Apple Airpods Headphones,1,150,01/04/19 17:31,"804 11th St, New York City, NY 10001" +141993,AA Batteries (4-pack),1,3.84,01/14/19 22:58,"511 Forest St, Portland, OR 97035" +141994,iPhone,1,700,01/12/19 15:19,"282 1st St, Boston, MA 02215" +141995,Wired Headphones,1,11.99,01/01/19 07:51,"549 North St, Atlanta, GA 30301" +141996,34in Ultrawide Monitor,1,379.99,01/24/19 12:33,"251 Sunset St, San Francisco, CA 94016" +141997,Bose SoundSport Headphones,1,99.99,01/15/19 12:17,"92 North St, New York City, NY 10001" +141998,Bose SoundSport Headphones,1,99.99,01/10/19 16:24,"176 Church St, Los Angeles, CA 90001" +141999,LG Washing Machine,1,600.0,01/13/19 22:20,"593 Church St, Portland, OR 97035" +142000,Wired Headphones,1,11.99,01/17/19 14:34,"885 10th St, Atlanta, GA 30301" +142001,Flatscreen TV,1,300,01/06/19 15:36,"787 Sunset St, Boston, MA 02215" +142002,27in 4K Gaming Monitor,1,389.99,01/07/19 13:57,"277 Spruce St, Dallas, TX 75001" +142003,AAA Batteries (4-pack),1,2.99,01/14/19 16:51,"245 Walnut St, Dallas, TX 75001" +142004,27in FHD Monitor,1,149.99,01/14/19 12:14,"690 Jefferson St, San Francisco, CA 94016" +142005,Apple Airpods Headphones,1,150,01/03/19 10:19,"8 4th St, New York City, NY 10001" +142006,Bose SoundSport Headphones,1,99.99,01/23/19 16:42,"328 North St, New York City, NY 10001" +142007,20in Monitor,1,109.99,01/09/19 17:32,"656 6th St, Los Angeles, CA 90001" +142008,AA Batteries (4-pack),1,3.84,01/13/19 17:45,"578 Ridge St, New York City, NY 10001" +142009,iPhone,1,700,01/18/19 15:34,"800 Johnson St, New York City, NY 10001" +142010,AAA Batteries (4-pack),2,2.99,01/18/19 20:09,"68 Johnson St, Los Angeles, CA 90001" +142011,Wired Headphones,1,11.99,01/20/19 10:41,"823 Hickory St, Los Angeles, CA 90001" +142012,Bose SoundSport Headphones,1,99.99,01/15/19 10:00,"901 Lakeview St, Los Angeles, CA 90001" +142013,20in Monitor,1,109.99,01/08/19 13:04,"921 Adams St, Boston, MA 02215" +142014,34in Ultrawide Monitor,1,379.99,01/01/19 15:15,"187 Jackson St, Atlanta, GA 30301" +142015,Lightning Charging Cable,1,14.95,01/31/19 23:12,"959 North St, San Francisco, CA 94016" +142016,AA Batteries (4-pack),1,3.84,01/09/19 18:24,"83 South St, San Francisco, CA 94016" +142017,AAA Batteries (4-pack),1,2.99,01/31/19 06:07,"719 2nd St, Dallas, TX 75001" +142018,USB-C Charging Cable,1,11.95,01/18/19 15:31,"649 Lincoln St, Atlanta, GA 30301" +142019,Macbook Pro Laptop,1,1700,01/04/19 09:03,"206 11th St, San Francisco, CA 94016" +142020,iPhone,1,700,01/12/19 07:26,"816 12th St, Dallas, TX 75001" +142020,Lightning Charging Cable,1,14.95,01/12/19 07:26,"816 12th St, Dallas, TX 75001" +142021,27in FHD Monitor,1,149.99,01/03/19 16:34,"863 Hickory St, Austin, TX 73301" +142022,USB-C Charging Cable,1,11.95,01/01/19 12:03,"567 Main St, Boston, MA 02215" +142023,Bose SoundSport Headphones,1,99.99,01/08/19 14:07,"206 Forest St, San Francisco, CA 94016" +142024,Apple Airpods Headphones,1,150,01/06/19 17:59,"332 Park St, San Francisco, CA 94016" +142025,Apple Airpods Headphones,1,150,01/27/19 12:04,"916 1st St, Dallas, TX 75001" +142026,Lightning Charging Cable,1,14.95,01/03/19 14:33,"769 South St, Seattle, WA 98101" +142026,Apple Airpods Headphones,1,150,01/03/19 14:33,"769 South St, Seattle, WA 98101" +142027,AAA Batteries (4-pack),2,2.99,01/24/19 11:53,"194 Washington St, Portland, OR 97035" +142028,Wired Headphones,1,11.99,01/01/19 11:59,"25 Jackson St, New York City, NY 10001" +142029,USB-C Charging Cable,2,11.95,01/20/19 12:09,"107 Ridge St, Dallas, TX 75001" +142030,USB-C Charging Cable,1,11.95,01/01/19 12:33,"218 Washington St, San Francisco, CA 94016" +142031,27in 4K Gaming Monitor,1,389.99,01/26/19 10:57,"350 Willow St, Atlanta, GA 30301" +142032,Vareebadd Phone,1,400,01/14/19 12:18,"2 6th St, San Francisco, CA 94016" +142033,27in FHD Monitor,1,149.99,01/22/19 21:30,"135 Walnut St, New York City, NY 10001" +142034,AAA Batteries (4-pack),1,2.99,01/22/19 21:28,"257 13th St, Austin, TX 73301" +142035,USB-C Charging Cable,1,11.95,01/06/19 14:24,"509 Madison St, New York City, NY 10001" +142036,Wired Headphones,1,11.99,01/05/19 22:45,"883 Cherry St, Atlanta, GA 30301" +142037,AAA Batteries (4-pack),2,2.99,01/15/19 06:54,"823 Wilson St, Boston, MA 02215" +142038,Apple Airpods Headphones,1,150,01/31/19 18:45,"958 Maple St, Los Angeles, CA 90001" +142039,Apple Airpods Headphones,1,150,01/16/19 01:35,"274 2nd St, Atlanta, GA 30301" +142040,Flatscreen TV,1,300,01/14/19 11:29,"288 12th St, Boston, MA 02215" +142041,Macbook Pro Laptop,1,1700,01/31/19 12:04,"676 Madison St, Austin, TX 73301" +142042,AA Batteries (4-pack),1,3.84,01/25/19 05:27,"121 Highland St, San Francisco, CA 94016" +142043,AAA Batteries (4-pack),2,2.99,01/16/19 21:38,"986 Sunset St, Atlanta, GA 30301" +142044,AA Batteries (4-pack),1,3.84,01/02/19 22:42,"521 Park St, Boston, MA 02215" +142045,Wired Headphones,1,11.99,01/03/19 00:45,"188 1st St, New York City, NY 10001" +142046,AA Batteries (4-pack),1,3.84,01/14/19 15:16,"840 Johnson St, New York City, NY 10001" +142047,iPhone,1,700,01/23/19 12:14,"459 Pine St, Seattle, WA 98101" +142048,AA Batteries (4-pack),2,3.84,01/23/19 19:20,"267 12th St, New York City, NY 10001" +142049,Macbook Pro Laptop,1,1700,01/11/19 19:33,"397 Pine St, Los Angeles, CA 90001" +142050,AA Batteries (4-pack),2,3.84,01/22/19 21:08,"982 13th St, San Francisco, CA 94016" +142051,Bose SoundSport Headphones,2,99.99,01/08/19 14:03,"888 5th St, Dallas, TX 75001" +142052,Lightning Charging Cable,2,14.95,01/09/19 09:39,"316 13th St, San Francisco, CA 94016" +142053,Lightning Charging Cable,1,14.95,01/03/19 11:24,"262 Church St, Dallas, TX 75001" +142054,20in Monitor,1,109.99,01/10/19 10:25,"877 Cherry St, San Francisco, CA 94016" +142055,Wired Headphones,1,11.99,01/19/19 08:35,"73 Johnson St, Boston, MA 02215" +142056,Lightning Charging Cable,1,14.95,01/19/19 18:20,"71 Dogwood St, New York City, NY 10001" +142057,Wired Headphones,1,11.99,01/23/19 07:40,"771 4th St, San Francisco, CA 94016" +142058,USB-C Charging Cable,2,11.95,01/21/19 11:16,"824 10th St, Boston, MA 02215" +142059,Macbook Pro Laptop,1,1700,01/19/19 10:30,"942 10th St, New York City, NY 10001" +142060,iPhone,1,700,01/24/19 08:43,"258 9th St, Boston, MA 02215" +142061,Bose SoundSport Headphones,1,99.99,01/01/19 18:07,"935 Lincoln St, Atlanta, GA 30301" +142062,Apple Airpods Headphones,1,150,01/13/19 15:10,"539 Jefferson St, Los Angeles, CA 90001" +142063,AAA Batteries (4-pack),1,2.99,01/27/19 19:32,"91 Jefferson St, Atlanta, GA 30301" +142064,AAA Batteries (4-pack),1,2.99,01/06/19 20:27,"332 Willow St, Atlanta, GA 30301" +142065,Wired Headphones,1,11.99,01/27/19 15:02,"996 Madison St, New York City, NY 10001" +142066,AAA Batteries (4-pack),1,2.99,01/31/19 15:57,"144 Lincoln St, New York City, NY 10001" +142067,34in Ultrawide Monitor,1,379.99,01/23/19 23:34,"921 Sunset St, Dallas, TX 75001" +142068,27in FHD Monitor,1,149.99,01/20/19 07:51,"498 Jackson St, Dallas, TX 75001" +142069,27in FHD Monitor,1,149.99,01/21/19 17:05,"723 Forest St, Seattle, WA 98101" +142070,iPhone,1,700,01/26/19 22:39,"586 South St, Austin, TX 73301" +142071,iPhone,1,700,01/11/19 10:24,"827 Pine St, Dallas, TX 75001" +142072,AA Batteries (4-pack),1,3.84,01/27/19 14:21,"133 Washington St, San Francisco, CA 94016" +142073,USB-C Charging Cable,1,11.95,01/07/19 18:53,"149 Spruce St, New York City, NY 10001" +142074,Wired Headphones,1,11.99,01/03/19 11:55,"86 2nd St, Dallas, TX 75001" +142075,AA Batteries (4-pack),2,3.84,01/29/19 18:02,"727 River St, Los Angeles, CA 90001" +142076,AAA Batteries (4-pack),1,2.99,01/15/19 13:38,"217 Park St, New York City, NY 10001" +142077,Wired Headphones,1,11.99,01/11/19 21:18,"92 Church St, Boston, MA 02215" +142078,USB-C Charging Cable,1,11.95,01/06/19 22:25,"385 2nd St, New York City, NY 10001" +142079,Wired Headphones,1,11.99,01/17/19 08:41,"579 Meadow St, San Francisco, CA 94016" +142080,AAA Batteries (4-pack),1,2.99,01/11/19 05:52,"188 Spruce St, New York City, NY 10001" +142081,AA Batteries (4-pack),1,3.84,01/17/19 17:44,"211 Park St, San Francisco, CA 94016" +142082,Google Phone,1,600,01/31/19 23:06,"157 Ridge St, Los Angeles, CA 90001" +142083,Lightning Charging Cable,1,14.95,01/14/19 15:11,"170 7th St, San Francisco, CA 94016" +142084,AAA Batteries (4-pack),1,2.99,01/12/19 11:27,"341 9th St, Seattle, WA 98101" +142085,Lightning Charging Cable,1,14.95,01/15/19 08:57,"191 West St, Atlanta, GA 30301" +142086,Macbook Pro Laptop,1,1700,01/30/19 21:03,"837 Wilson St, Los Angeles, CA 90001" +142087,Bose SoundSport Headphones,1,99.99,01/26/19 19:56,"36 Adams St, New York City, NY 10001" +142088,Apple Airpods Headphones,1,150,01/25/19 21:10,"718 10th St, San Francisco, CA 94016" +142089,34in Ultrawide Monitor,1,379.99,01/30/19 19:40,"94 7th St, New York City, NY 10001" +142090,USB-C Charging Cable,2,11.95,01/13/19 19:21,"763 Madison St, Los Angeles, CA 90001" +142091,Apple Airpods Headphones,1,150,01/24/19 12:34,"483 North St, Portland, OR 97035" +142092,Apple Airpods Headphones,1,150,01/26/19 14:32,"74 Willow St, San Francisco, CA 94016" +142093,Lightning Charging Cable,1,14.95,01/07/19 18:24,"104 6th St, Los Angeles, CA 90001" +142094,iPhone,1,700,01/03/19 13:40,"722 Cedar St, Boston, MA 02215" +142095,Apple Airpods Headphones,1,150,01/04/19 19:14,"859 Center St, Los Angeles, CA 90001" +142096,USB-C Charging Cable,1,11.95,01/06/19 16:52,"702 8th St, Boston, MA 02215" +142097,USB-C Charging Cable,1,11.95,01/10/19 09:07,"111 Elm St, Portland, ME 04101" +142098,ThinkPad Laptop,1,999.99,01/04/19 15:29,"115 Lake St, San Francisco, CA 94016" +142099,Wired Headphones,1,11.99,01/24/19 15:33,"716 Dogwood St, Dallas, TX 75001" +142100,AAA Batteries (4-pack),1,2.99,01/16/19 10:22,"228 Maple St, New York City, NY 10001" +142101,USB-C Charging Cable,2,11.95,01/11/19 13:17,"779 Chestnut St, New York City, NY 10001" +142101,Bose SoundSport Headphones,1,99.99,01/11/19 13:17,"779 Chestnut St, New York City, NY 10001" +142102,AA Batteries (4-pack),1,3.84,01/09/19 21:40,"187 Main St, New York City, NY 10001" +142103,Lightning Charging Cable,1,14.95,01/17/19 06:51,"359 North St, Portland, OR 97035" +142104,Vareebadd Phone,1,400,01/05/19 10:05,"104 Dogwood St, Boston, MA 02215" +142105,AAA Batteries (4-pack),1,2.99,01/01/19 14:07,"670 2nd St, Seattle, WA 98101" +142106,Wired Headphones,1,11.99,01/28/19 10:14,"474 2nd St, Boston, MA 02215" +142107,AAA Batteries (4-pack),2,2.99,01/25/19 11:42,"803 Jackson St, Seattle, WA 98101" +142108,iPhone,1,700,01/26/19 19:01,"204 Chestnut St, Seattle, WA 98101" +142109,ThinkPad Laptop,1,999.99,01/23/19 17:57,"557 7th St, Seattle, WA 98101" +142110,Lightning Charging Cable,1,14.95,01/24/19 15:54,"177 Cherry St, New York City, NY 10001" +142111,Bose SoundSport Headphones,1,99.99,01/03/19 12:14,"999 Dogwood St, San Francisco, CA 94016" +142112,Macbook Pro Laptop,1,1700,01/16/19 21:36,"572 Lincoln St, Atlanta, GA 30301" +142113,ThinkPad Laptop,1,999.99,01/08/19 19:47,"16 Center St, Dallas, TX 75001" +142114,AA Batteries (4-pack),1,3.84,01/31/19 09:41,"733 Pine St, New York City, NY 10001" +142115,Vareebadd Phone,1,400,01/02/19 19:50,"434 Washington St, San Francisco, CA 94016" +142116,Wired Headphones,1,11.99,01/23/19 21:17,"702 Sunset St, San Francisco, CA 94016" +142117,Google Phone,1,600,01/15/19 19:25,"765 Sunset St, New York City, NY 10001" +142118,27in 4K Gaming Monitor,1,389.99,01/10/19 11:14,"45 9th St, Los Angeles, CA 90001" +142119,Apple Airpods Headphones,1,150,01/26/19 11:43,"279 11th St, New York City, NY 10001" +142120,USB-C Charging Cable,1,11.95,01/06/19 10:26,"690 Jefferson St, Dallas, TX 75001" +142121,AAA Batteries (4-pack),1,2.99,01/15/19 12:21,"379 6th St, Los Angeles, CA 90001" +142122,20in Monitor,1,109.99,01/14/19 07:00,"458 Chestnut St, Los Angeles, CA 90001" +142123,Lightning Charging Cable,3,14.95,01/22/19 22:42,"368 Dogwood St, Portland, OR 97035" +142124,AA Batteries (4-pack),4,3.84,01/06/19 08:25,"293 Jefferson St, Los Angeles, CA 90001" +142125,27in 4K Gaming Monitor,1,389.99,01/16/19 23:56,"154 Elm St, Boston, MA 02215" +142126,34in Ultrawide Monitor,1,379.99,01/18/19 12:48,"474 5th St, Boston, MA 02215" +142127,Google Phone,1,600,01/29/19 17:21,"379 Willow St, Atlanta, GA 30301" +142127,USB-C Charging Cable,1,11.95,01/29/19 17:21,"379 Willow St, Atlanta, GA 30301" +142128,27in FHD Monitor,1,149.99,01/19/19 16:47,"565 12th St, San Francisco, CA 94016" +142129,34in Ultrawide Monitor,1,379.99,01/09/19 15:54,"606 Washington St, Dallas, TX 75001" +142130,USB-C Charging Cable,1,11.95,01/21/19 10:21,"651 Washington St, Seattle, WA 98101" +142131,USB-C Charging Cable,1,11.95,01/07/19 19:58,"74 Maple St, New York City, NY 10001" +142132,Wired Headphones,1,11.99,01/10/19 20:47,"993 12th St, Los Angeles, CA 90001" +142133,Bose SoundSport Headphones,1,99.99,01/20/19 20:35,"602 11th St, Atlanta, GA 30301" +142134,Bose SoundSport Headphones,1,99.99,01/26/19 08:49,"104 Johnson St, Los Angeles, CA 90001" +142135,USB-C Charging Cable,1,11.95,01/18/19 19:39,"371 Jefferson St, Portland, OR 97035" +142136,AA Batteries (4-pack),1,3.84,01/15/19 13:53,"220 2nd St, Los Angeles, CA 90001" +142137,20in Monitor,1,109.99,01/26/19 12:20,"372 Elm St, Dallas, TX 75001" +142138,AAA Batteries (4-pack),2,2.99,01/20/19 23:34,"491 Church St, San Francisco, CA 94016" +142139,USB-C Charging Cable,1,11.95,01/13/19 22:50,"504 1st St, Los Angeles, CA 90001" +142140,Wired Headphones,1,11.99,01/18/19 14:24,"197 8th St, Seattle, WA 98101" +142141,Apple Airpods Headphones,1,150,01/16/19 10:43,"438 11th St, Boston, MA 02215" +142142,Bose SoundSport Headphones,1,99.99,01/30/19 23:47,"125 Sunset St, New York City, NY 10001" +142143,AAA Batteries (4-pack),2,2.99,01/04/19 23:13,"213 8th St, Los Angeles, CA 90001" +142144,AAA Batteries (4-pack),1,2.99,01/29/19 12:03,"948 Church St, New York City, NY 10001" +142144,AA Batteries (4-pack),2,3.84,01/29/19 12:03,"948 Church St, New York City, NY 10001" +142145,27in 4K Gaming Monitor,1,389.99,01/07/19 12:56,"101 Forest St, New York City, NY 10001" +142146,27in FHD Monitor,1,149.99,01/02/19 11:26,"122 5th St, New York City, NY 10001" +142147,Apple Airpods Headphones,1,150,01/25/19 09:39,"486 5th St, Seattle, WA 98101" +142148,Macbook Pro Laptop,1,1700,01/01/19 11:36,"752 Sunset St, San Francisco, CA 94016" +142149,Wired Headphones,1,11.99,01/27/19 17:38,"278 Washington St, Los Angeles, CA 90001" +142150,iPhone,1,700,01/17/19 20:04,"454 10th St, Seattle, WA 98101" +142151,AAA Batteries (4-pack),1,2.99,01/29/19 11:20,"285 8th St, Seattle, WA 98101" +142151,USB-C Charging Cable,1,11.95,01/29/19 11:20,"285 8th St, Seattle, WA 98101" +142152,AA Batteries (4-pack),1,3.84,01/14/19 14:37,"857 Lincoln St, San Francisco, CA 94016" +142153,Bose SoundSport Headphones,1,99.99,01/06/19 10:37,"954 1st St, Dallas, TX 75001" +142154,USB-C Charging Cable,3,11.95,01/10/19 13:10,"108 West St, Los Angeles, CA 90001" +142155,Bose SoundSport Headphones,1,99.99,01/30/19 16:12,"235 Center St, San Francisco, CA 94016" +142156,AA Batteries (4-pack),1,3.84,01/03/19 12:23,"444 South St, Boston, MA 02215" +142157,27in 4K Gaming Monitor,1,389.99,01/20/19 19:56,"496 13th St, San Francisco, CA 94016" +142158,AA Batteries (4-pack),1,3.84,01/23/19 18:19,"932 7th St, Los Angeles, CA 90001" +142159,Bose SoundSport Headphones,1,99.99,01/28/19 21:05,"811 14th St, Boston, MA 02215" +142160,Wired Headphones,2,11.99,01/24/19 12:26,"34 Church St, Seattle, WA 98101" +142161,AAA Batteries (4-pack),1,2.99,01/18/19 11:08,"775 7th St, Atlanta, GA 30301" +142162,Apple Airpods Headphones,1,150,01/25/19 17:30,"430 Lakeview St, Austin, TX 73301" +142163,AAA Batteries (4-pack),1,2.99,01/27/19 21:07,"213 Church St, San Francisco, CA 94016" +142164,Macbook Pro Laptop,1,1700,01/21/19 10:42,"415 Forest St, Portland, OR 97035" +142165,AAA Batteries (4-pack),3,2.99,01/26/19 12:34,"948 Lakeview St, Boston, MA 02215" +142166,27in 4K Gaming Monitor,1,389.99,01/14/19 17:51,"864 6th St, Portland, OR 97035" +142167,Lightning Charging Cable,1,14.95,01/23/19 19:14,"587 River St, San Francisco, CA 94016" +142168,Lightning Charging Cable,1,14.95,01/28/19 23:47,"729 6th St, Portland, OR 97035" +142169,27in 4K Gaming Monitor,1,389.99,01/24/19 18:29,"933 2nd St, Boston, MA 02215" +142170,ThinkPad Laptop,1,999.99,01/16/19 11:33,"477 Park St, Portland, OR 97035" +142171,Wired Headphones,1,11.99,01/05/19 22:56,"303 Sunset St, Dallas, TX 75001" +142172,Bose SoundSport Headphones,1,99.99,01/07/19 20:48,"599 North St, New York City, NY 10001" +142173,27in 4K Gaming Monitor,1,389.99,01/15/19 01:12,"522 Hickory St, New York City, NY 10001" +142174,AAA Batteries (4-pack),2,2.99,01/03/19 08:50,"759 11th St, Portland, ME 04101" +142175,AAA Batteries (4-pack),5,2.99,01/14/19 20:24,"667 4th St, San Francisco, CA 94016" +142176,Lightning Charging Cable,1,14.95,01/04/19 10:41,"721 Jackson St, San Francisco, CA 94016" +142177,Bose SoundSport Headphones,1,99.99,01/24/19 03:23,"967 Main St, Los Angeles, CA 90001" +142178,27in 4K Gaming Monitor,1,389.99,01/07/19 13:06,"741 West St, Austin, TX 73301" +142179,Lightning Charging Cable,1,14.95,01/05/19 23:23,"383 Madison St, Portland, ME 04101" +142180,Lightning Charging Cable,1,14.95,01/04/19 10:08,"291 Chestnut St, Seattle, WA 98101" +142181,AAA Batteries (4-pack),1,2.99,01/23/19 14:34,"950 Dogwood St, San Francisco, CA 94016" +,,,,, +142182,Wired Headphones,1,11.99,01/13/19 15:22,"863 Pine St, San Francisco, CA 94016" +142183,Wired Headphones,1,11.99,01/11/19 18:11,"655 North St, Atlanta, GA 30301" +142184,AAA Batteries (4-pack),1,2.99,01/13/19 23:05,"403 13th St, Los Angeles, CA 90001" +142185,AAA Batteries (4-pack),1,2.99,01/18/19 07:22,"89 8th St, Atlanta, GA 30301" +142186,AA Batteries (4-pack),2,3.84,01/30/19 10:27,"667 9th St, San Francisco, CA 94016" +142187,iPhone,1,700,01/03/19 18:51,"297 River St, Seattle, WA 98101" +142188,AAA Batteries (4-pack),2,2.99,01/28/19 09:05,"472 Dogwood St, Atlanta, GA 30301" +142189,27in 4K Gaming Monitor,1,389.99,01/18/19 14:23,"968 River St, Portland, ME 04101" +142190,Apple Airpods Headphones,1,150,01/16/19 13:30,"969 Johnson St, Dallas, TX 75001" +142191,USB-C Charging Cable,1,11.95,01/05/19 12:57,"942 Washington St, San Francisco, CA 94016" +142192,Wired Headphones,1,11.99,01/08/19 22:48,"180 Walnut St, San Francisco, CA 94016" +142193,Wired Headphones,1,11.99,01/05/19 17:54,"421 North St, Seattle, WA 98101" +142194,27in 4K Gaming Monitor,1,389.99,01/27/19 20:43,"22 Jefferson St, New York City, NY 10001" +142195,Lightning Charging Cable,1,14.95,01/11/19 06:34,"452 Main St, New York City, NY 10001" +142196,AAA Batteries (4-pack),1,2.99,01/27/19 14:27,"238 Pine St, New York City, NY 10001" +142197,AA Batteries (4-pack),1,3.84,01/18/19 23:26,"6 South St, Portland, OR 97035" +142198,ThinkPad Laptop,1,999.99,01/26/19 22:14,"560 Hill St, Seattle, WA 98101" +142199,Lightning Charging Cable,1,14.95,01/13/19 08:04,"662 Johnson St, New York City, NY 10001" +142200,AA Batteries (4-pack),3,3.84,01/14/19 11:37,"93 Madison St, Dallas, TX 75001" +142201,USB-C Charging Cable,1,11.95,01/18/19 11:32,"968 Cedar St, Dallas, TX 75001" +142202,AA Batteries (4-pack),1,3.84,01/02/19 23:44,"111 Center St, San Francisco, CA 94016" +142202,20in Monitor,1,109.99,01/02/19 23:44,"111 Center St, San Francisco, CA 94016" +142203,34in Ultrawide Monitor,1,379.99,01/05/19 13:48,"455 Forest St, Atlanta, GA 30301" +142204,Apple Airpods Headphones,1,150,01/26/19 19:57,"631 Highland St, Seattle, WA 98101" +142205,Apple Airpods Headphones,1,150,01/04/19 12:17,"71 Walnut St, New York City, NY 10001" +142206,Apple Airpods Headphones,1,150,01/15/19 12:50,"100 1st St, Boston, MA 02215" +142207,Bose SoundSport Headphones,1,99.99,01/29/19 16:55,"648 Adams St, Dallas, TX 75001" +142208,AA Batteries (4-pack),1,3.84,01/05/19 23:30,"441 Cherry St, New York City, NY 10001" +142209,27in FHD Monitor,1,149.99,01/05/19 11:02,"300 Center St, Dallas, TX 75001" +142210,Wired Headphones,1,11.99,01/08/19 15:55,"873 Cherry St, San Francisco, CA 94016" +142211,Macbook Pro Laptop,1,1700,01/03/19 14:53,"397 14th St, San Francisco, CA 94016" +142212,34in Ultrawide Monitor,1,379.99,01/08/19 10:55,"420 Maple St, Atlanta, GA 30301" +142213,27in 4K Gaming Monitor,1,389.99,01/07/19 21:26,"509 Hickory St, San Francisco, CA 94016" +142214,Google Phone,1,600,01/06/19 14:54,"67 Lake St, Boston, MA 02215" +142214,Wired Headphones,1,11.99,01/06/19 14:54,"67 Lake St, Boston, MA 02215" +142215,AAA Batteries (4-pack),3,2.99,01/09/19 21:14,"187 Chestnut St, San Francisco, CA 94016" +142216,Wired Headphones,1,11.99,01/28/19 10:29,"880 Willow St, Seattle, WA 98101" +142217,Flatscreen TV,1,300,01/01/19 20:56,"146 Highland St, Boston, MA 02215" +142218,27in FHD Monitor,1,149.99,01/03/19 21:06,"347 Johnson St, San Francisco, CA 94016" +142219,Flatscreen TV,1,300,01/17/19 23:15,"142 Jackson St, Dallas, TX 75001" +142220,AAA Batteries (4-pack),3,2.99,01/16/19 19:31,"749 7th St, San Francisco, CA 94016" +142221,Apple Airpods Headphones,1,150,01/15/19 23:33,"287 Cedar St, Dallas, TX 75001" +142222,AAA Batteries (4-pack),1,2.99,01/31/19 11:09,"818 Park St, New York City, NY 10001" +142223,AAA Batteries (4-pack),1,2.99,01/31/19 13:25,"724 Hill St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +142224,AA Batteries (4-pack),1,3.84,01/11/19 16:02,"589 11th St, San Francisco, CA 94016" +142225,AA Batteries (4-pack),2,3.84,01/07/19 21:13,"826 Jefferson St, Dallas, TX 75001" +142226,Wired Headphones,1,11.99,01/16/19 10:30,"452 Spruce St, San Francisco, CA 94016" +142227,USB-C Charging Cable,1,11.95,01/24/19 22:32,"118 1st St, Los Angeles, CA 90001" +142228,AAA Batteries (4-pack),1,2.99,01/08/19 14:06,"64 Spruce St, Dallas, TX 75001" +142229,27in 4K Gaming Monitor,1,389.99,01/21/19 22:04,"333 Highland St, Los Angeles, CA 90001" +142230,USB-C Charging Cable,1,11.95,01/26/19 17:50,"155 Maple St, Austin, TX 73301" +142230,USB-C Charging Cable,1,11.95,01/26/19 17:50,"155 Maple St, Austin, TX 73301" +142231,Bose SoundSport Headphones,1,99.99,01/13/19 07:44,"259 Center St, San Francisco, CA 94016" +142232,Wired Headphones,3,11.99,01/11/19 14:20,"692 Cedar St, Dallas, TX 75001" +142233,AAA Batteries (4-pack),2,2.99,01/13/19 12:01,"588 Highland St, Portland, OR 97035" +142234,AA Batteries (4-pack),3,3.84,01/28/19 21:52,"14 Hill St, San Francisco, CA 94016" +142235,AA Batteries (4-pack),2,3.84,01/18/19 00:45,"683 Jackson St, Atlanta, GA 30301" +142236,Vareebadd Phone,1,400,01/21/19 10:10,"674 Dogwood St, San Francisco, CA 94016" +142237,Bose SoundSport Headphones,1,99.99,01/24/19 14:21,"420 13th St, Atlanta, GA 30301" +142238,AA Batteries (4-pack),1,3.84,01/21/19 10:01,"949 4th St, Atlanta, GA 30301" +142239,Wired Headphones,1,11.99,01/10/19 21:03,"612 9th St, San Francisco, CA 94016" +142240,USB-C Charging Cable,2,11.95,01/24/19 10:37,"942 Hill St, Seattle, WA 98101" +142241,USB-C Charging Cable,1,11.95,01/10/19 19:55,"346 Highland St, Austin, TX 73301" +142242,Bose SoundSport Headphones,1,99.99,01/10/19 21:26,"282 Hickory St, Dallas, TX 75001" +142243,Lightning Charging Cable,1,14.95,01/19/19 13:02,"408 Walnut St, Boston, MA 02215" +142244,Flatscreen TV,1,300,01/16/19 13:10,"682 Lake St, New York City, NY 10001" +142245,Wired Headphones,1,11.99,01/15/19 10:34,"121 Ridge St, Los Angeles, CA 90001" +142246,AA Batteries (4-pack),1,3.84,01/17/19 13:53,"365 10th St, Atlanta, GA 30301" +142247,Lightning Charging Cable,1,14.95,01/22/19 12:41,"395 Madison St, San Francisco, CA 94016" +142248,iPhone,1,700,01/11/19 09:56,"772 Lakeview St, Seattle, WA 98101" +142249,iPhone,1,700,01/14/19 13:02,"386 Hill St, New York City, NY 10001" +142250,Wired Headphones,1,11.99,01/11/19 23:00,"233 Elm St, Seattle, WA 98101" +142251,AA Batteries (4-pack),2,3.84,01/29/19 11:38,"488 9th St, Austin, TX 73301" +142252,AAA Batteries (4-pack),1,2.99,01/13/19 17:42,"64 7th St, New York City, NY 10001" +142253,Google Phone,1,600,01/07/19 10:25,"245 14th St, Los Angeles, CA 90001" +142254,AAA Batteries (4-pack),1,2.99,01/28/19 21:14,"864 Cherry St, Dallas, TX 75001" +142255,Wired Headphones,1,11.99,01/10/19 13:52,"813 Center St, San Francisco, CA 94016" +142256,Wired Headphones,1,11.99,01/30/19 09:06,"214 Highland St, Los Angeles, CA 90001" +142257,20in Monitor,1,109.99,01/05/19 04:32,"324 11th St, Los Angeles, CA 90001" +142258,AAA Batteries (4-pack),1,2.99,01/26/19 12:17,"548 Jefferson St, Seattle, WA 98101" +142259,34in Ultrawide Monitor,1,379.99,01/21/19 18:52,"959 North St, New York City, NY 10001" +142260,USB-C Charging Cable,1,11.95,01/20/19 17:00,"222 Highland St, Austin, TX 73301" +142261,ThinkPad Laptop,1,999.99,01/04/19 05:02,"862 Walnut St, Boston, MA 02215" +142261,AAA Batteries (4-pack),1,2.99,01/04/19 05:02,"862 Walnut St, Boston, MA 02215" +142262,AAA Batteries (4-pack),2,2.99,01/30/19 12:09,"200 Cedar St, New York City, NY 10001" +142263,Lightning Charging Cable,1,14.95,01/26/19 16:54,"218 Church St, Atlanta, GA 30301" +142264,Bose SoundSport Headphones,1,99.99,01/28/19 15:45,"400 12th St, Atlanta, GA 30301" +142265,AA Batteries (4-pack),1,3.84,01/10/19 12:26,"736 Center St, Atlanta, GA 30301" +142266,Apple Airpods Headphones,1,150,01/09/19 22:41,"804 1st St, Los Angeles, CA 90001" +142267,Lightning Charging Cable,1,14.95,01/02/19 18:35,"215 Meadow St, San Francisco, CA 94016" +142268,Bose SoundSport Headphones,1,99.99,01/21/19 19:57,"307 11th St, New York City, NY 10001" +142269,AA Batteries (4-pack),1,3.84,01/10/19 09:24,"357 10th St, Los Angeles, CA 90001" +142270,Macbook Pro Laptop,1,1700,01/21/19 16:14,"68 Meadow St, Los Angeles, CA 90001" +142271,AA Batteries (4-pack),2,3.84,01/06/19 10:08,"176 Jackson St, Los Angeles, CA 90001" +142272,iPhone,1,700,01/13/19 13:56,"927 Elm St, San Francisco, CA 94016" +142273,Wired Headphones,1,11.99,01/11/19 20:19,"52 Pine St, Austin, TX 73301" +142274,27in FHD Monitor,1,149.99,01/16/19 12:38,"704 Forest St, Boston, MA 02215" +142275,iPhone,1,700,01/08/19 10:04,"924 12th St, San Francisco, CA 94016" +142276,AA Batteries (4-pack),1,3.84,01/29/19 12:59,"586 Pine St, San Francisco, CA 94016" +142277,27in 4K Gaming Monitor,1,389.99,01/22/19 18:37,"243 Meadow St, Atlanta, GA 30301" +142278,27in FHD Monitor,1,149.99,01/29/19 01:15,"556 11th St, Los Angeles, CA 90001" +142279,USB-C Charging Cable,1,11.95,01/25/19 17:45,"197 Church St, New York City, NY 10001" +142280,Wired Headphones,1,11.99,01/26/19 16:57,"206 Cedar St, Los Angeles, CA 90001" +142281,Apple Airpods Headphones,1,150,01/15/19 08:28,"740 Center St, Austin, TX 73301" +142282,Wired Headphones,1,11.99,01/19/19 23:48,"145 Main St, Portland, OR 97035" +142283,AA Batteries (4-pack),3,3.84,01/15/19 13:08,"454 Spruce St, San Francisco, CA 94016" +142284,AAA Batteries (4-pack),1,2.99,01/26/19 14:02,"272 5th St, San Francisco, CA 94016" +142285,AAA Batteries (4-pack),1,2.99,01/20/19 12:03,"121 9th St, San Francisco, CA 94016" +142286,27in FHD Monitor,1,149.99,01/02/19 17:32,"635 10th St, San Francisco, CA 94016" +142287,iPhone,1,700,01/02/19 16:20,"540 Church St, San Francisco, CA 94016" +142288,Wired Headphones,1,11.99,01/31/19 12:16,"866 River St, Los Angeles, CA 90001" +142289,Lightning Charging Cable,1,14.95,01/05/19 07:18,"863 6th St, San Francisco, CA 94016" +142290,Bose SoundSport Headphones,1,99.99,01/31/19 11:13,"136 River St, Austin, TX 73301" +142291,34in Ultrawide Monitor,1,379.99,01/31/19 22:17,"105 Ridge St, Portland, ME 04101" +142292,Lightning Charging Cable,1,14.95,01/03/19 21:34,"421 5th St, Los Angeles, CA 90001" +142293,Vareebadd Phone,1,400,01/06/19 23:23,"924 Lakeview St, San Francisco, CA 94016" +142294,USB-C Charging Cable,1,11.95,01/23/19 19:37,"311 Sunset St, Los Angeles, CA 90001" +142295,Vareebadd Phone,1,400,01/12/19 15:38,"850 8th St, San Francisco, CA 94016" +142295,USB-C Charging Cable,1,11.95,01/12/19 15:38,"850 8th St, San Francisco, CA 94016" +142296,Google Phone,1,600,01/31/19 11:08,"357 Walnut St, New York City, NY 10001" +142296,Wired Headphones,1,11.99,01/31/19 11:08,"357 Walnut St, New York City, NY 10001" +142297,Lightning Charging Cable,1,14.95,01/30/19 10:30,"836 1st St, Boston, MA 02215" +142298,USB-C Charging Cable,1,11.95,01/29/19 21:12,"377 2nd St, Seattle, WA 98101" +142299,Lightning Charging Cable,1,14.95,01/05/19 21:29,"571 Spruce St, Atlanta, GA 30301" +142300,USB-C Charging Cable,1,11.95,01/11/19 00:19,"52 Chestnut St, Atlanta, GA 30301" +142301,Bose SoundSport Headphones,1,99.99,01/23/19 13:08,"475 Hickory St, Dallas, TX 75001" +142302,Wired Headphones,1,11.99,01/31/19 14:24,"450 North St, Dallas, TX 75001" +142303,Bose SoundSport Headphones,1,99.99,01/22/19 18:38,"910 Main St, San Francisco, CA 94016" +142304,20in Monitor,1,109.99,01/16/19 19:46,"310 Johnson St, San Francisco, CA 94016" +142305,Lightning Charging Cable,1,14.95,01/31/19 18:46,"728 Meadow St, New York City, NY 10001" +142306,Bose SoundSport Headphones,1,99.99,01/14/19 01:29,"385 Center St, Boston, MA 02215" +142307,AA Batteries (4-pack),1,3.84,01/25/19 15:58,"186 Forest St, Dallas, TX 75001" +142308,Lightning Charging Cable,1,14.95,01/12/19 21:40,"626 7th St, New York City, NY 10001" +142309,27in FHD Monitor,1,149.99,01/26/19 20:26,"128 12th St, Los Angeles, CA 90001" +142310,AA Batteries (4-pack),1,3.84,01/18/19 13:26,"82 13th St, San Francisco, CA 94016" +142311,Macbook Pro Laptop,1,1700,01/07/19 14:44,"655 Forest St, Los Angeles, CA 90001" +142312,27in FHD Monitor,1,149.99,01/07/19 05:47,"543 14th St, Los Angeles, CA 90001" +142313,Wired Headphones,1,11.99,01/01/19 10:32,"138 Meadow St, Los Angeles, CA 90001" +142314,ThinkPad Laptop,1,999.99,01/25/19 19:46,"271 Meadow St, San Francisco, CA 94016" +142315,AA Batteries (4-pack),2,3.84,01/07/19 07:11,"590 Hill St, Dallas, TX 75001" +142316,Bose SoundSport Headphones,1,99.99,01/09/19 17:40,"803 Maple St, Boston, MA 02215" +142317,AA Batteries (4-pack),1,3.84,01/28/19 14:36,"923 Sunset St, San Francisco, CA 94016" +142318,Apple Airpods Headphones,1,150,01/07/19 13:15,"362 River St, Austin, TX 73301" +142319,USB-C Charging Cable,1,11.95,01/13/19 10:49,"711 Lake St, San Francisco, CA 94016" +142320,Bose SoundSport Headphones,1,99.99,01/27/19 18:20,"930 Park St, Los Angeles, CA 90001" +142321,USB-C Charging Cable,2,11.95,01/12/19 20:29,"607 Lincoln St, Los Angeles, CA 90001" +142322,ThinkPad Laptop,1,999.99,01/23/19 18:46,"419 Main St, Boston, MA 02215" +142323,Lightning Charging Cable,1,14.95,01/07/19 21:21,"790 Forest St, Seattle, WA 98101" +142324,USB-C Charging Cable,1,11.95,01/08/19 20:22,"257 Lakeview St, San Francisco, CA 94016" +142325,AA Batteries (4-pack),4,3.84,01/28/19 13:27,"771 4th St, Los Angeles, CA 90001" +142326,Wired Headphones,1,11.99,01/30/19 00:44,"530 13th St, San Francisco, CA 94016" +142327,27in 4K Gaming Monitor,1,389.99,01/08/19 18:35,"175 Highland St, Atlanta, GA 30301" +142328,Lightning Charging Cable,1,14.95,01/27/19 16:25,"377 5th St, New York City, NY 10001" +142329,USB-C Charging Cable,1,11.95,01/01/19 22:49,"101 Maple St, San Francisco, CA 94016" +142330,AA Batteries (4-pack),1,3.84,01/20/19 09:49,"772 Elm St, Los Angeles, CA 90001" +142331,Lightning Charging Cable,1,14.95,02/01/19 03:11,"769 Lakeview St, New York City, NY 10001" +142332,AAA Batteries (4-pack),1,2.99,01/30/19 12:05,"424 Lake St, Atlanta, GA 30301" +142333,Lightning Charging Cable,1,14.95,01/07/19 01:35,"741 Washington St, New York City, NY 10001" +142334,27in FHD Monitor,1,149.99,01/19/19 14:51,"665 Spruce St, Los Angeles, CA 90001" +142335,AAA Batteries (4-pack),1,2.99,01/22/19 11:41,"379 Hill St, Los Angeles, CA 90001" +142336,iPhone,1,700,01/02/19 21:08,"436 South St, Dallas, TX 75001" +142337,AAA Batteries (4-pack),1,2.99,01/09/19 11:05,"4 5th St, Seattle, WA 98101" +142338,Bose SoundSport Headphones,1,99.99,01/27/19 19:01,"522 6th St, San Francisco, CA 94016" +142339,AA Batteries (4-pack),1,3.84,01/28/19 18:47,"622 Jackson St, New York City, NY 10001" +142340,AA Batteries (4-pack),1,3.84,01/22/19 19:32,"635 Ridge St, Los Angeles, CA 90001" +142341,20in Monitor,1,109.99,01/25/19 17:23,"127 Walnut St, Dallas, TX 75001" +142342,AA Batteries (4-pack),1,3.84,01/27/19 20:14,"680 Center St, Los Angeles, CA 90001" +142343,AAA Batteries (4-pack),1,2.99,01/01/19 12:21,"380 Lake St, New York City, NY 10001" +142344,USB-C Charging Cable,1,11.95,01/04/19 09:04,"232 Jefferson St, Los Angeles, CA 90001" +142345,ThinkPad Laptop,1,999.99,01/29/19 20:10,"876 8th St, San Francisco, CA 94016" +142346,USB-C Charging Cable,1,11.95,01/10/19 21:49,"977 Willow St, San Francisco, CA 94016" +142347,Flatscreen TV,1,300,01/18/19 20:43,"167 Lincoln St, Seattle, WA 98101" +142348,AAA Batteries (4-pack),1,2.99,01/09/19 13:56,"596 Park St, San Francisco, CA 94016" +142349,Macbook Pro Laptop,1,1700,01/17/19 18:06,"182 Lincoln St, San Francisco, CA 94016" +142350,AAA Batteries (4-pack),1,2.99,01/08/19 15:53,"824 11th St, Dallas, TX 75001" +142351,AA Batteries (4-pack),2,3.84,01/05/19 09:23,"26 Church St, Portland, OR 97035" +142352,Flatscreen TV,1,300,01/28/19 15:04,"892 Cedar St, San Francisco, CA 94016" +142353,AAA Batteries (4-pack),2,2.99,01/05/19 18:47,"422 5th St, Los Angeles, CA 90001" +142354,Apple Airpods Headphones,1,150,01/21/19 22:40,"348 River St, New York City, NY 10001" +142355,USB-C Charging Cable,1,11.95,01/17/19 20:10,"963 9th St, San Francisco, CA 94016" +142356,Google Phone,1,600,01/26/19 09:59,"940 6th St, New York City, NY 10001" +142357,Apple Airpods Headphones,1,150,01/11/19 00:20,"524 Ridge St, Dallas, TX 75001" +142358,34in Ultrawide Monitor,1,379.99,01/25/19 17:47,"707 Walnut St, Boston, MA 02215" +142359,Wired Headphones,1,11.99,01/18/19 21:55,"945 11th St, Atlanta, GA 30301" +142360,Flatscreen TV,1,300,01/11/19 14:50,"322 2nd St, Portland, OR 97035" +142361,Flatscreen TV,1,300,01/14/19 01:48,"153 6th St, Dallas, TX 75001" +142362,34in Ultrawide Monitor,1,379.99,01/01/19 08:54,"813 Forest St, San Francisco, CA 94016" +142363,ThinkPad Laptop,1,999.99,01/06/19 16:31,"485 Park St, Portland, OR 97035" +142364,Bose SoundSport Headphones,1,99.99,01/01/19 22:13,"143 Hickory St, Atlanta, GA 30301" +142365,Vareebadd Phone,1,400,01/03/19 14:00,"615 8th St, Austin, TX 73301" +142366,Lightning Charging Cable,1,14.95,01/25/19 07:01,"967 Lincoln St, New York City, NY 10001" +142367,AAA Batteries (4-pack),1,2.99,01/27/19 21:09,"39 Elm St, Seattle, WA 98101" +142368,USB-C Charging Cable,1,11.95,01/27/19 00:24,"996 9th St, Dallas, TX 75001" +142369,Wired Headphones,1,11.99,01/12/19 19:23,"633 1st St, Boston, MA 02215" +142370,Wired Headphones,1,11.99,01/19/19 18:01,"276 7th St, Seattle, WA 98101" +142371,USB-C Charging Cable,1,11.95,01/21/19 12:56,"786 Elm St, Boston, MA 02215" +142371,Wired Headphones,1,11.99,01/21/19 12:56,"786 Elm St, Boston, MA 02215" +142372,Apple Airpods Headphones,1,150,01/05/19 09:24,"336 Ridge St, Seattle, WA 98101" +142373,USB-C Charging Cable,1,11.95,01/02/19 10:24,"201 5th St, Boston, MA 02215" +142374,AA Batteries (4-pack),1,3.84,01/31/19 09:01,"934 6th St, Seattle, WA 98101" +142375,Lightning Charging Cable,1,14.95,01/16/19 22:14,"205 South St, Los Angeles, CA 90001" +142376,34in Ultrawide Monitor,1,379.99,01/27/19 16:28,"562 Forest St, Portland, OR 97035" +142377,Wired Headphones,1,11.99,01/18/19 13:50,"280 Main St, Seattle, WA 98101" +142378,20in Monitor,1,109.99,01/12/19 23:17,"434 Willow St, San Francisco, CA 94016" +142379,27in FHD Monitor,1,149.99,01/21/19 20:35,"603 South St, San Francisco, CA 94016" +142380,ThinkPad Laptop,1,999.99,01/27/19 17:07,"26 River St, San Francisco, CA 94016" +142381,Bose SoundSport Headphones,1,99.99,01/22/19 19:45,"739 Cherry St, Atlanta, GA 30301" +142382,Lightning Charging Cable,1,14.95,01/15/19 09:07,"834 Dogwood St, Los Angeles, CA 90001" +142383,AAA Batteries (4-pack),2,2.99,01/16/19 12:08,"460 13th St, New York City, NY 10001" +142384,20in Monitor,1,109.99,01/20/19 12:35,"878 Wilson St, Seattle, WA 98101" +142385,Bose SoundSport Headphones,1,99.99,01/07/19 15:55,"574 Madison St, New York City, NY 10001" +142386,Macbook Pro Laptop,1,1700,01/29/19 07:52,"629 12th St, Dallas, TX 75001" +142387,Lightning Charging Cable,1,14.95,01/29/19 20:41,"359 Cherry St, San Francisco, CA 94016" +142388,Wired Headphones,1,11.99,01/07/19 16:14,"897 Hickory St, Dallas, TX 75001" +142389,AA Batteries (4-pack),1,3.84,01/08/19 08:29,"661 Jackson St, Boston, MA 02215" +142390,Bose SoundSport Headphones,1,99.99,01/08/19 20:37,"689 10th St, New York City, NY 10001" +142391,USB-C Charging Cable,1,11.95,01/07/19 10:03,"795 Pine St, San Francisco, CA 94016" +142392,Google Phone,1,600,01/25/19 01:18,"853 Adams St, New York City, NY 10001" +142393,AAA Batteries (4-pack),1,2.99,01/17/19 19:16,"752 Church St, San Francisco, CA 94016" +142394,Apple Airpods Headphones,1,150,01/24/19 14:55,"507 Hickory St, San Francisco, CA 94016" +142395,Google Phone,1,600,01/08/19 13:45,"596 Madison St, San Francisco, CA 94016" +142395,20in Monitor,1,109.99,01/08/19 13:45,"596 Madison St, San Francisco, CA 94016" +142396,Wired Headphones,1,11.99,01/03/19 20:19,"5 Elm St, San Francisco, CA 94016" +142397,Lightning Charging Cable,1,14.95,01/24/19 12:50,"564 5th St, Dallas, TX 75001" +142398,AA Batteries (4-pack),2,3.84,01/31/19 19:21,"62 Willow St, New York City, NY 10001" +142399,AAA Batteries (4-pack),2,2.99,01/16/19 16:50,"584 Adams St, Portland, ME 04101" +142400,Apple Airpods Headphones,1,150,01/15/19 13:24,"77 13th St, Boston, MA 02215" +142401,Lightning Charging Cable,1,14.95,01/06/19 10:47,"767 Washington St, Atlanta, GA 30301" +142402,iPhone,1,700,01/18/19 14:28,"103 Washington St, Los Angeles, CA 90001" +142403,Wired Headphones,1,11.99,01/06/19 14:29,"937 Main St, Los Angeles, CA 90001" +142404,USB-C Charging Cable,1,11.95,01/07/19 01:11,"945 Walnut St, New York City, NY 10001" +142405,AAA Batteries (4-pack),1,2.99,01/16/19 11:43,"440 Madison St, Atlanta, GA 30301" +142406,27in FHD Monitor,1,149.99,01/12/19 17:52,"308 South St, Los Angeles, CA 90001" +142407,Apple Airpods Headphones,1,150,01/08/19 21:24,"825 Meadow St, Atlanta, GA 30301" +142408,Wired Headphones,1,11.99,01/16/19 21:09,"191 Jackson St, Dallas, TX 75001" +142409,Google Phone,1,600,01/29/19 12:46,"112 North St, Boston, MA 02215" +142410,Wired Headphones,1,11.99,01/11/19 21:09,"430 4th St, Atlanta, GA 30301" +142411,AA Batteries (4-pack),1,3.84,01/22/19 10:55,"992 Ridge St, Seattle, WA 98101" +142412,Bose SoundSport Headphones,1,99.99,01/06/19 22:19,"695 Forest St, San Francisco, CA 94016" +142413,Apple Airpods Headphones,1,150,01/27/19 10:38,"477 Highland St, San Francisco, CA 94016" +142414,USB-C Charging Cable,2,11.95,01/21/19 16:34,"81 6th St, Los Angeles, CA 90001" +142415,Apple Airpods Headphones,1,150,01/08/19 21:53,"774 Cedar St, Boston, MA 02215" +142416,Lightning Charging Cable,1,14.95,01/30/19 08:38,"139 Maple St, Los Angeles, CA 90001" +142417,iPhone,1,700,01/28/19 00:14,"355 Main St, Los Angeles, CA 90001" +142418,Macbook Pro Laptop,1,1700,01/22/19 19:15,"448 Hickory St, Portland, ME 04101" +142419,USB-C Charging Cable,1,11.95,01/06/19 21:02,"884 6th St, Boston, MA 02215" +142420,Wired Headphones,1,11.99,01/13/19 23:26,"4 Lakeview St, Boston, MA 02215" +142421,Apple Airpods Headphones,1,150,01/08/19 18:14,"92 4th St, Boston, MA 02215" +142422,Apple Airpods Headphones,1,150,01/05/19 18:15,"888 River St, New York City, NY 10001" +142423,AA Batteries (4-pack),1,3.84,01/28/19 20:03,"571 Elm St, Seattle, WA 98101" +142424,USB-C Charging Cable,1,11.95,01/03/19 12:58,"338 11th St, San Francisco, CA 94016" +142425,Apple Airpods Headphones,1,150,01/19/19 00:46,"569 6th St, San Francisco, CA 94016" +142426,iPhone,1,700,01/30/19 23:59,"452 Highland St, Atlanta, GA 30301" +142427,Lightning Charging Cable,1,14.95,01/30/19 13:06,"674 Highland St, New York City, NY 10001" +142428,Bose SoundSport Headphones,1,99.99,01/18/19 13:47,"474 Main St, Portland, OR 97035" +142429,iPhone,1,700,01/07/19 12:41,"660 Lake St, Atlanta, GA 30301" +142430,Wired Headphones,1,11.99,01/27/19 19:21,"482 7th St, Los Angeles, CA 90001" +142431,iPhone,1,700,01/02/19 09:37,"387 Hill St, Los Angeles, CA 90001" +142432,Apple Airpods Headphones,1,150,01/12/19 07:08,"294 14th St, Seattle, WA 98101" +142432,USB-C Charging Cable,1,11.95,01/12/19 07:08,"294 14th St, Seattle, WA 98101" +142433,iPhone,1,700,01/10/19 12:39,"564 Willow St, Boston, MA 02215" +142434,Wired Headphones,1,11.99,01/12/19 14:33,"387 Main St, Austin, TX 73301" +142435,Bose SoundSport Headphones,1,99.99,01/14/19 00:00,"720 Main St, Portland, OR 97035" +142436,Google Phone,1,600,01/20/19 08:30,"773 7th St, Los Angeles, CA 90001" +142437,Apple Airpods Headphones,1,150,01/06/19 18:43,"773 Pine St, San Francisco, CA 94016" +142438,USB-C Charging Cable,1,11.95,01/17/19 15:01,"582 1st St, San Francisco, CA 94016" +142439,Lightning Charging Cable,1,14.95,01/05/19 14:57,"542 2nd St, Los Angeles, CA 90001" +142440,Bose SoundSport Headphones,1,99.99,01/20/19 19:53,"532 9th St, Portland, OR 97035" +142441,USB-C Charging Cable,1,11.95,01/02/19 12:11,"784 11th St, Los Angeles, CA 90001" +142442,Lightning Charging Cable,1,14.95,01/21/19 13:53,"874 South St, Boston, MA 02215" +142443,Bose SoundSport Headphones,1,99.99,01/14/19 16:01,"345 South St, New York City, NY 10001" +142444,AAA Batteries (4-pack),1,2.99,01/25/19 16:34,"511 13th St, Atlanta, GA 30301" +142445,Apple Airpods Headphones,1,150,01/14/19 18:11,"812 4th St, Dallas, TX 75001" +142446,ThinkPad Laptop,1,999.99,01/16/19 07:24,"477 Ridge St, San Francisco, CA 94016" +142447,Apple Airpods Headphones,1,150,01/30/19 13:39,"943 7th St, Los Angeles, CA 90001" +142448,USB-C Charging Cable,1,11.95,01/16/19 20:31,"724 River St, New York City, NY 10001" +142449,Apple Airpods Headphones,1,150,01/12/19 17:32,"712 8th St, San Francisco, CA 94016" +142450,iPhone,1,700,01/13/19 22:57,"664 4th St, Dallas, TX 75001" +142450,Lightning Charging Cable,1,14.95,01/13/19 22:57,"664 4th St, Dallas, TX 75001" +142451,USB-C Charging Cable,1,11.95,01/23/19 14:01,"784 West St, Boston, MA 02215" +142452,27in FHD Monitor,1,149.99,01/18/19 12:36,"181 Elm St, Dallas, TX 75001" +142453,27in 4K Gaming Monitor,1,389.99,01/13/19 22:28,"84 Maple St, Dallas, TX 75001" +142454,Bose SoundSport Headphones,1,99.99,01/12/19 09:43,"301 Hickory St, Dallas, TX 75001" +142455,27in 4K Gaming Monitor,1,389.99,01/20/19 20:05,"116 Chestnut St, Portland, OR 97035" +142456,Lightning Charging Cable,1,14.95,01/21/19 19:25,"565 Spruce St, Austin, TX 73301" +142457,Vareebadd Phone,1,400,01/29/19 09:40,"295 Spruce St, San Francisco, CA 94016" +142457,USB-C Charging Cable,1,11.95,01/29/19 09:40,"295 Spruce St, San Francisco, CA 94016" +142458,USB-C Charging Cable,1,11.95,01/17/19 23:07,"242 4th St, Portland, OR 97035" +142459,Macbook Pro Laptop,1,1700,01/09/19 11:49,"236 Park St, Portland, OR 97035" +142460,Wired Headphones,1,11.99,01/18/19 16:33,"947 Ridge St, Seattle, WA 98101" +142461,Bose SoundSport Headphones,1,99.99,01/31/19 18:15,"574 Wilson St, Austin, TX 73301" +142462,iPhone,1,700,01/16/19 12:47,"292 Sunset St, New York City, NY 10001" +142463,27in FHD Monitor,1,149.99,01/04/19 22:41,"58 Park St, Los Angeles, CA 90001" +142464,AA Batteries (4-pack),1,3.84,01/02/19 20:13,"992 Dogwood St, Austin, TX 73301" +142465,Apple Airpods Headphones,1,150,01/25/19 15:49,"695 River St, San Francisco, CA 94016" +142466,Lightning Charging Cable,1,14.95,01/24/19 19:39,"656 Park St, San Francisco, CA 94016" +142467,Wired Headphones,1,11.99,01/02/19 16:05,"474 Willow St, Atlanta, GA 30301" +142468,Lightning Charging Cable,1,14.95,01/16/19 08:36,"542 Chestnut St, Atlanta, GA 30301" +142469,AAA Batteries (4-pack),2,2.99,01/17/19 21:32,"891 Willow St, New York City, NY 10001" +142470,Lightning Charging Cable,1,14.95,01/24/19 17:31,"525 12th St, Austin, TX 73301" +142471,AA Batteries (4-pack),1,3.84,01/30/19 10:18,"249 West St, Seattle, WA 98101" +142472,20in Monitor,1,109.99,01/10/19 16:56,"808 1st St, Los Angeles, CA 90001" +142473,Bose SoundSport Headphones,1,99.99,01/03/19 20:27,"863 6th St, Seattle, WA 98101" +142474,Macbook Pro Laptop,1,1700,01/13/19 16:21,"957 8th St, Los Angeles, CA 90001" +142475,Apple Airpods Headphones,1,150,01/20/19 16:58,"174 West St, Los Angeles, CA 90001" +142476,AA Batteries (4-pack),3,3.84,01/15/19 00:04,"934 Wilson St, San Francisco, CA 94016" +142477,AAA Batteries (4-pack),1,2.99,01/08/19 20:00,"870 Meadow St, Los Angeles, CA 90001" +142478,AA Batteries (4-pack),1,3.84,01/23/19 15:35,"874 Park St, Austin, TX 73301" +142479,AA Batteries (4-pack),1,3.84,01/13/19 16:45,"172 Willow St, San Francisco, CA 94016" +142480,Lightning Charging Cable,1,14.95,01/01/19 21:45,"555 Meadow St, Austin, TX 73301" +142481,iPhone,1,700,01/19/19 10:49,"710 Lake St, Los Angeles, CA 90001" +142481,Wired Headphones,1,11.99,01/19/19 10:49,"710 Lake St, Los Angeles, CA 90001" +142482,USB-C Charging Cable,1,11.95,01/18/19 17:36,"913 6th St, New York City, NY 10001" +142483,Wired Headphones,1,11.99,01/25/19 15:32,"357 Adams St, Dallas, TX 75001" +142484,Google Phone,1,600,01/11/19 18:16,"122 Elm St, Portland, OR 97035" +142485,iPhone,1,700,01/11/19 18:34,"392 Willow St, Portland, OR 97035" +142486,AAA Batteries (4-pack),2,2.99,01/21/19 17:37,"409 Adams St, Los Angeles, CA 90001" +142487,Wired Headphones,1,11.99,01/25/19 12:18,"916 6th St, Atlanta, GA 30301" +142488,27in FHD Monitor,1,149.99,01/26/19 07:12,"656 Chestnut St, Dallas, TX 75001" +142489,Wired Headphones,1,11.99,01/12/19 00:11,"924 Pine St, Los Angeles, CA 90001" +142489,iPhone,1,700,01/12/19 00:11,"924 Pine St, Los Angeles, CA 90001" +142490,AA Batteries (4-pack),1,3.84,01/04/19 20:05,"629 Park St, New York City, NY 10001" +142491,USB-C Charging Cable,1,11.95,01/03/19 16:15,"871 13th St, San Francisco, CA 94016" +142492,AA Batteries (4-pack),1,3.84,01/25/19 12:14,"826 Elm St, San Francisco, CA 94016" +142493,AAA Batteries (4-pack),1,2.99,01/14/19 13:52,"885 14th St, Dallas, TX 75001" +142494,Wired Headphones,1,11.99,01/26/19 19:41,"950 Ridge St, Atlanta, GA 30301" +142495,AAA Batteries (4-pack),1,2.99,01/04/19 16:27,"796 Lake St, New York City, NY 10001" +142496,27in FHD Monitor,1,149.99,01/31/19 12:55,"645 Lake St, Seattle, WA 98101" +142497,Apple Airpods Headphones,1,150,01/02/19 08:04,"173 Meadow St, Dallas, TX 75001" +142498,Apple Airpods Headphones,1,150,01/18/19 14:24,"289 Pine St, San Francisco, CA 94016" +142499,Wired Headphones,1,11.99,01/31/19 06:02,"727 1st St, Austin, TX 73301" +142500,USB-C Charging Cable,1,11.95,01/02/19 16:32,"868 Main St, Atlanta, GA 30301" +142501,Lightning Charging Cable,1,14.95,01/16/19 12:14,"555 10th St, Los Angeles, CA 90001" +142502,34in Ultrawide Monitor,1,379.99,01/12/19 12:20,"361 Walnut St, Los Angeles, CA 90001" +142503,Lightning Charging Cable,2,14.95,01/03/19 09:49,"111 Walnut St, Portland, OR 97035" +142504,iPhone,1,700,01/25/19 12:12,"517 Dogwood St, Austin, TX 73301" +142505,Apple Airpods Headphones,1,150,01/29/19 07:19,"84 Spruce St, Los Angeles, CA 90001" +142506,AA Batteries (4-pack),1,3.84,01/17/19 13:02,"471 Willow St, San Francisco, CA 94016" +142507,AA Batteries (4-pack),2,3.84,01/21/19 11:42,"959 Lincoln St, Los Angeles, CA 90001" +142508,Lightning Charging Cable,1,14.95,01/15/19 03:24,"676 Lake St, San Francisco, CA 94016" +142509,AAA Batteries (4-pack),1,2.99,01/18/19 20:32,"366 10th St, Boston, MA 02215" +142510,Wired Headphones,1,11.99,01/16/19 13:42,"523 River St, San Francisco, CA 94016" +142511,iPhone,1,700,01/24/19 18:49,"453 Meadow St, Austin, TX 73301" +142512,AA Batteries (4-pack),1,3.84,01/07/19 15:15,"203 Wilson St, Boston, MA 02215" +142513,USB-C Charging Cable,1,11.95,01/22/19 21:08,"698 Park St, Boston, MA 02215" +142514,ThinkPad Laptop,1,999.99,01/23/19 10:38,"456 5th St, Los Angeles, CA 90001" +142515,iPhone,1,700,01/08/19 10:47,"820 Center St, Atlanta, GA 30301" +142516,Apple Airpods Headphones,1,150,01/11/19 22:53,"356 14th St, Seattle, WA 98101" +142517,27in FHD Monitor,1,149.99,01/03/19 09:37,"397 Park St, Los Angeles, CA 90001" +142518,Lightning Charging Cable,1,14.95,01/14/19 12:08,"873 Spruce St, Atlanta, GA 30301" +142518,AAA Batteries (4-pack),1,2.99,01/14/19 12:08,"873 Spruce St, Atlanta, GA 30301" +142519,34in Ultrawide Monitor,1,379.99,01/16/19 19:45,"542 Hill St, San Francisco, CA 94016" +142520,27in FHD Monitor,1,149.99,01/27/19 19:23,"935 Spruce St, Dallas, TX 75001" +142521,Flatscreen TV,1,300,01/04/19 17:12,"103 Jefferson St, Seattle, WA 98101" +142522,USB-C Charging Cable,1,11.95,01/14/19 13:16,"76 14th St, Los Angeles, CA 90001" +142523,AA Batteries (4-pack),1,3.84,01/18/19 16:59,"355 Jefferson St, San Francisco, CA 94016" +142524,Lightning Charging Cable,1,14.95,01/24/19 19:23,"741 West St, Los Angeles, CA 90001" +142525,AA Batteries (4-pack),1,3.84,01/08/19 20:42,"297 Dogwood St, Boston, MA 02215" +142526,AA Batteries (4-pack),1,3.84,01/19/19 11:56,"688 Main St, Dallas, TX 75001" +142527,USB-C Charging Cable,1,11.95,01/09/19 14:44,"116 Center St, Seattle, WA 98101" +142528,Vareebadd Phone,1,400,01/28/19 11:19,"218 Sunset St, San Francisco, CA 94016" +142528,USB-C Charging Cable,1,11.95,01/28/19 11:19,"218 Sunset St, San Francisco, CA 94016" +142528,Bose SoundSport Headphones,1,99.99,01/28/19 11:19,"218 Sunset St, San Francisco, CA 94016" +142529,Bose SoundSport Headphones,1,99.99,01/25/19 15:13,"128 Lincoln St, Los Angeles, CA 90001" +142530,Wired Headphones,1,11.99,01/18/19 15:50,"772 Jefferson St, Los Angeles, CA 90001" +142531,Bose SoundSport Headphones,1,99.99,01/09/19 17:42,"208 Highland St, New York City, NY 10001" +142532,AAA Batteries (4-pack),4,2.99,01/16/19 16:46,"432 14th St, Dallas, TX 75001" +142533,Wired Headphones,1,11.99,01/07/19 00:18,"235 Highland St, San Francisco, CA 94016" +142534,Wired Headphones,1,11.99,01/01/19 13:56,"499 Adams St, San Francisco, CA 94016" +142535,USB-C Charging Cable,1,11.95,01/26/19 20:51,"327 Jefferson St, Los Angeles, CA 90001" +142536,27in FHD Monitor,1,149.99,01/31/19 19:05,"338 Walnut St, Boston, MA 02215" +142537,USB-C Charging Cable,1,11.95,01/13/19 17:49,"699 Highland St, New York City, NY 10001" +142538,27in FHD Monitor,1,149.99,01/28/19 09:08,"915 Lincoln St, San Francisco, CA 94016" +142539,Bose SoundSport Headphones,1,99.99,01/07/19 11:48,"351 Jackson St, Los Angeles, CA 90001" +142540,Apple Airpods Headphones,1,150,01/31/19 15:42,"502 1st St, Boston, MA 02215" +142541,AA Batteries (4-pack),1,3.84,01/02/19 19:33,"914 1st St, Los Angeles, CA 90001" +142542,AA Batteries (4-pack),3,3.84,01/20/19 23:52,"539 Main St, Atlanta, GA 30301" +142543,Apple Airpods Headphones,1,150,01/01/19 19:28,"83 Maple St, Los Angeles, CA 90001" +142544,Lightning Charging Cable,1,14.95,01/07/19 09:38,"601 1st St, Seattle, WA 98101" +142545,Apple Airpods Headphones,1,150,01/27/19 21:41,"96 Main St, Portland, OR 97035" +142546,Google Phone,1,600,01/19/19 17:00,"90 Lincoln St, Boston, MA 02215" +142547,iPhone,1,700,01/06/19 02:48,"914 Main St, San Francisco, CA 94016" +142547,Lightning Charging Cable,1,14.95,01/06/19 02:48,"914 Main St, San Francisco, CA 94016" +142548,ThinkPad Laptop,1,999.99,01/13/19 23:45,"960 Dogwood St, San Francisco, CA 94016" +142549,USB-C Charging Cable,1,11.95,01/03/19 13:26,"446 2nd St, Portland, OR 97035" +142550,AA Batteries (4-pack),1,3.84,01/23/19 21:58,"664 Madison St, Los Angeles, CA 90001" +142551,AAA Batteries (4-pack),1,2.99,01/13/19 20:25,"465 Pine St, Los Angeles, CA 90001" +142552,Bose SoundSport Headphones,1,99.99,01/07/19 09:06,"569 Park St, Dallas, TX 75001" +142553,Macbook Pro Laptop,1,1700,01/12/19 15:46,"333 6th St, Los Angeles, CA 90001" +142554,27in FHD Monitor,1,149.99,01/16/19 20:44,"353 6th St, Los Angeles, CA 90001" +142555,Wired Headphones,1,11.99,01/22/19 18:46,"582 Sunset St, Atlanta, GA 30301" +142555,AAA Batteries (4-pack),2,2.99,01/22/19 18:46,"582 Sunset St, Atlanta, GA 30301" +142556,LG Washing Machine,1,600.0,01/18/19 21:13,"708 2nd St, Austin, TX 73301" +142557,iPhone,1,700,01/21/19 19:25,"736 Wilson St, Boston, MA 02215" +142558,Wired Headphones,1,11.99,01/22/19 21:43,"2 River St, Atlanta, GA 30301" +142559,AA Batteries (4-pack),1,3.84,01/09/19 21:12,"738 Pine St, Dallas, TX 75001" +142560,Wired Headphones,1,11.99,01/07/19 16:16,"207 Wilson St, San Francisco, CA 94016" +142561,Apple Airpods Headphones,1,150,01/10/19 03:35,"984 Dogwood St, Los Angeles, CA 90001" +142562,Apple Airpods Headphones,1,150,01/30/19 19:13,"136 Jefferson St, Atlanta, GA 30301" +142563,Wired Headphones,1,11.99,01/25/19 11:14,"409 11th St, Los Angeles, CA 90001" +142564,Macbook Pro Laptop,1,1700,01/24/19 10:43,"255 Washington St, Atlanta, GA 30301" +142565,Apple Airpods Headphones,1,150,01/06/19 13:38,"109 14th St, New York City, NY 10001" +142566,AAA Batteries (4-pack),2,2.99,01/19/19 15:02,"546 Pine St, New York City, NY 10001" +142567,Bose SoundSport Headphones,1,99.99,01/09/19 23:02,"62 10th St, Los Angeles, CA 90001" +142568,AAA Batteries (4-pack),1,2.99,01/06/19 00:01,"988 Ridge St, Atlanta, GA 30301" +142569,Macbook Pro Laptop,1,1700,01/19/19 21:10,"523 River St, Seattle, WA 98101" +142570,AAA Batteries (4-pack),1,2.99,01/23/19 11:59,"663 2nd St, San Francisco, CA 94016" +142571,34in Ultrawide Monitor,1,379.99,01/30/19 19:11,"276 Church St, Boston, MA 02215" +142572,AA Batteries (4-pack),1,3.84,01/04/19 14:42,"945 Jackson St, Los Angeles, CA 90001" +142572,AAA Batteries (4-pack),3,2.99,01/04/19 14:42,"945 Jackson St, Los Angeles, CA 90001" +142573,ThinkPad Laptop,1,999.99,01/31/19 21:06,"691 Ridge St, Los Angeles, CA 90001" +142574,Wired Headphones,1,11.99,01/22/19 21:43,"811 Ridge St, San Francisco, CA 94016" +142575,AA Batteries (4-pack),3,3.84,01/10/19 22:08,"621 7th St, Los Angeles, CA 90001" +142576,27in 4K Gaming Monitor,1,389.99,01/24/19 09:52,"598 Cherry St, Boston, MA 02215" +142577,AA Batteries (4-pack),1,3.84,01/03/19 19:33,"61 Chestnut St, Atlanta, GA 30301" +142577,iPhone,1,700,01/03/19 19:33,"61 Chestnut St, Atlanta, GA 30301" +142578,USB-C Charging Cable,1,11.95,01/07/19 19:41,"998 Lakeview St, Austin, TX 73301" +142579,iPhone,1,700,01/30/19 11:06,"304 Forest St, Los Angeles, CA 90001" +,,,,, +142580,USB-C Charging Cable,1,11.95,01/26/19 18:46,"981 Cherry St, Atlanta, GA 30301" +142581,AAA Batteries (4-pack),1,2.99,01/09/19 11:25,"997 Lincoln St, Los Angeles, CA 90001" +142582,Bose SoundSport Headphones,1,99.99,01/25/19 16:35,"590 1st St, San Francisco, CA 94016" +142583,Bose SoundSport Headphones,1,99.99,01/21/19 08:53,"136 Park St, New York City, NY 10001" +142584,Lightning Charging Cable,1,14.95,01/11/19 03:23,"703 1st St, San Francisco, CA 94016" +142585,34in Ultrawide Monitor,1,379.99,01/23/19 23:45,"91 Ridge St, Boston, MA 02215" +142586,ThinkPad Laptop,1,999.99,01/31/19 16:16,"534 Lakeview St, Austin, TX 73301" +142587,USB-C Charging Cable,1,11.95,01/02/19 19:44,"422 8th St, Los Angeles, CA 90001" +142588,34in Ultrawide Monitor,1,379.99,01/17/19 07:40,"227 4th St, Boston, MA 02215" +142589,Apple Airpods Headphones,1,150,01/26/19 19:39,"342 Cedar St, San Francisco, CA 94016" +142590,Apple Airpods Headphones,1,150,01/30/19 11:51,"261 Cherry St, Dallas, TX 75001" +142591,Macbook Pro Laptop,1,1700,01/13/19 12:33,"320 Chestnut St, Los Angeles, CA 90001" +142592,Wired Headphones,1,11.99,01/10/19 22:20,"618 Main St, New York City, NY 10001" +142593,27in FHD Monitor,1,149.99,01/16/19 04:08,"644 Sunset St, San Francisco, CA 94016" +142594,AAA Batteries (4-pack),1,2.99,01/04/19 21:47,"856 Lake St, Seattle, WA 98101" +142595,Flatscreen TV,1,300,01/22/19 23:34,"113 South St, Boston, MA 02215" +142596,Lightning Charging Cable,1,14.95,01/12/19 19:52,"609 7th St, New York City, NY 10001" +142597,AA Batteries (4-pack),1,3.84,01/27/19 10:16,"754 10th St, Austin, TX 73301" +142598,iPhone,1,700,01/29/19 22:27,"148 8th St, Portland, OR 97035" +142599,AAA Batteries (4-pack),1,2.99,01/11/19 01:46,"630 5th St, Atlanta, GA 30301" +142600,Lightning Charging Cable,1,14.95,01/08/19 16:55,"369 Jackson St, New York City, NY 10001" +142601,Lightning Charging Cable,1,14.95,01/06/19 21:19,"359 Forest St, Seattle, WA 98101" +142602,Google Phone,1,600,01/13/19 16:12,"115 13th St, New York City, NY 10001" +142603,USB-C Charging Cable,1,11.95,01/04/19 14:08,"11 Lakeview St, Boston, MA 02215" +142604,Google Phone,1,600,01/21/19 11:03,"340 9th St, New York City, NY 10001" +142604,USB-C Charging Cable,1,11.95,01/21/19 11:03,"340 9th St, New York City, NY 10001" +142605,Lightning Charging Cable,1,14.95,01/11/19 14:17,"44 1st St, San Francisco, CA 94016" +142606,Apple Airpods Headphones,1,150,01/06/19 20:40,"686 6th St, Portland, OR 97035" +142607,Apple Airpods Headphones,1,150,01/27/19 14:09,"431 2nd St, Dallas, TX 75001" +142608,Google Phone,1,600,01/01/19 15:11,"684 Walnut St, Los Angeles, CA 90001" +142609,Wired Headphones,1,11.99,01/28/19 05:38,"256 Chestnut St, Seattle, WA 98101" +142610,Lightning Charging Cable,1,14.95,01/13/19 08:28,"468 Wilson St, Boston, MA 02215" +142611,Apple Airpods Headphones,1,150,01/03/19 10:27,"640 Washington St, Austin, TX 73301" +142612,Bose SoundSport Headphones,1,99.99,01/29/19 08:32,"224 13th St, Seattle, WA 98101" +142613,Lightning Charging Cable,1,14.95,01/04/19 10:38,"580 Forest St, Seattle, WA 98101" +142614,AA Batteries (4-pack),1,3.84,01/27/19 13:13,"429 Adams St, San Francisco, CA 94016" +142615,iPhone,1,700,01/10/19 21:53,"127 Adams St, Los Angeles, CA 90001" +142616,Lightning Charging Cable,2,14.95,01/09/19 17:08,"179 River St, Seattle, WA 98101" +142617,Google Phone,1,600,01/29/19 00:05,"730 Willow St, San Francisco, CA 94016" +142617,USB-C Charging Cable,1,11.95,01/29/19 00:05,"730 Willow St, San Francisco, CA 94016" +142618,Vareebadd Phone,1,400,01/11/19 18:25,"394 Wilson St, Dallas, TX 75001" +142619,Macbook Pro Laptop,1,1700,01/17/19 08:00,"378 8th St, Seattle, WA 98101" +142620,Wired Headphones,1,11.99,01/25/19 19:12,"147 Main St, Boston, MA 02215" +142621,34in Ultrawide Monitor,1,379.99,01/02/19 10:59,"570 Cherry St, Boston, MA 02215" +142622,USB-C Charging Cable,1,11.95,01/02/19 08:23,"784 Jefferson St, Austin, TX 73301" +142623,27in 4K Gaming Monitor,1,389.99,01/30/19 19:56,"523 Willow St, Los Angeles, CA 90001" +142624,USB-C Charging Cable,1,11.95,01/14/19 06:39,"745 1st St, Boston, MA 02215" +142625,Wired Headphones,1,11.99,01/07/19 23:02,"735 14th St, Boston, MA 02215" +142626,Apple Airpods Headphones,1,150,01/17/19 02:59,"743 13th St, San Francisco, CA 94016" +142627,AA Batteries (4-pack),1,3.84,01/27/19 13:15,"723 Dogwood St, Atlanta, GA 30301" +142628,AA Batteries (4-pack),2,3.84,01/01/19 18:30,"176 Washington St, Los Angeles, CA 90001" +142629,27in 4K Gaming Monitor,1,389.99,01/23/19 06:14,"537 Hill St, Los Angeles, CA 90001" +142630,USB-C Charging Cable,2,11.95,01/27/19 20:21,"947 Cedar St, Seattle, WA 98101" +142631,Lightning Charging Cable,1,14.95,01/18/19 08:37,"896 Spruce St, Portland, OR 97035" +142632,Wired Headphones,1,11.99,01/30/19 21:59,"780 2nd St, Dallas, TX 75001" +142633,Bose SoundSport Headphones,1,99.99,01/21/19 22:40,"70 Dogwood St, Los Angeles, CA 90001" +142634,AAA Batteries (4-pack),1,2.99,01/26/19 13:41,"994 Forest St, San Francisco, CA 94016" +142635,Wired Headphones,1,11.99,01/11/19 11:52,"449 Maple St, Atlanta, GA 30301" +142636,AA Batteries (4-pack),1,3.84,01/21/19 19:44,"138 Cedar St, Austin, TX 73301" +142637,ThinkPad Laptop,1,999.99,01/30/19 01:29,"890 14th St, Seattle, WA 98101" +142638,Bose SoundSport Headphones,1,99.99,01/04/19 17:54,"563 Pine St, Seattle, WA 98101" +142639,AAA Batteries (4-pack),1,2.99,01/01/19 17:40,"773 7th St, Portland, OR 97035" +142640,20in Monitor,1,109.99,01/15/19 12:45,"126 Johnson St, San Francisco, CA 94016" +142641,Bose SoundSport Headphones,1,99.99,01/02/19 07:02,"687 Main St, New York City, NY 10001" +142642,ThinkPad Laptop,1,999.99,01/31/19 16:55,"455 West St, New York City, NY 10001" +142643,USB-C Charging Cable,1,11.95,01/15/19 17:58,"5 Maple St, New York City, NY 10001" +142644,AA Batteries (4-pack),1,3.84,01/02/19 22:02,"868 North St, New York City, NY 10001" +142645,Bose SoundSport Headphones,1,99.99,01/01/19 11:29,"473 Dogwood St, Portland, OR 97035" +142646,USB-C Charging Cable,1,11.95,01/14/19 18:46,"207 Lake St, Austin, TX 73301" +142647,27in FHD Monitor,1,149.99,01/31/19 04:51,"55 Pine St, Portland, OR 97035" +142648,AAA Batteries (4-pack),1,2.99,01/28/19 19:42,"917 5th St, San Francisco, CA 94016" +142649,Lightning Charging Cable,1,14.95,01/24/19 06:33,"651 Park St, New York City, NY 10001" +142650,Wired Headphones,1,11.99,01/02/19 20:15,"708 9th St, Boston, MA 02215" +142651,Apple Airpods Headphones,1,150,01/12/19 15:41,"709 Park St, San Francisco, CA 94016" +142652,LG Dryer,1,600.0,01/24/19 11:16,"911 West St, New York City, NY 10001" +142653,Lightning Charging Cable,1,14.95,01/31/19 10:01,"319 Hill St, Dallas, TX 75001" +142654,Bose SoundSport Headphones,1,99.99,01/05/19 22:37,"207 Madison St, San Francisco, CA 94016" +142655,Apple Airpods Headphones,1,150,01/11/19 23:48,"879 Lakeview St, New York City, NY 10001" +142656,Apple Airpods Headphones,1,150,01/27/19 21:21,"954 11th St, New York City, NY 10001" +142657,USB-C Charging Cable,1,11.95,01/14/19 16:48,"582 4th St, Portland, OR 97035" +142658,AA Batteries (4-pack),1,3.84,01/05/19 11:27,"129 Hill St, San Francisco, CA 94016" +142659,Flatscreen TV,1,300,01/29/19 18:21,"946 Highland St, Austin, TX 73301" +142660,34in Ultrawide Monitor,1,379.99,01/16/19 06:33,"473 9th St, San Francisco, CA 94016" +142661,AAA Batteries (4-pack),1,2.99,01/13/19 19:10,"413 Sunset St, New York City, NY 10001" +142662,Bose SoundSport Headphones,1,99.99,01/02/19 15:22,"898 Park St, Seattle, WA 98101" +142663,Flatscreen TV,1,300,01/13/19 10:46,"19 6th St, Austin, TX 73301" +142664,AA Batteries (4-pack),2,3.84,01/04/19 14:11,"255 Adams St, San Francisco, CA 94016" +142665,USB-C Charging Cable,1,11.95,01/21/19 08:23,"208 7th St, Los Angeles, CA 90001" +142666,iPhone,1,700,01/24/19 18:21,"360 Center St, Dallas, TX 75001" +142667,AAA Batteries (4-pack),2,2.99,01/08/19 11:19,"189 Chestnut St, Seattle, WA 98101" +142668,AAA Batteries (4-pack),1,2.99,01/14/19 17:18,"918 7th St, San Francisco, CA 94016" +142669,Apple Airpods Headphones,1,150,01/15/19 10:55,"241 Willow St, San Francisco, CA 94016" +142670,Bose SoundSport Headphones,1,99.99,01/22/19 16:14,"538 Lincoln St, Austin, TX 73301" +142671,Wired Headphones,1,11.99,01/03/19 19:42,"284 Elm St, Atlanta, GA 30301" +142672,USB-C Charging Cable,1,11.95,01/28/19 23:22,"497 1st St, Portland, OR 97035" +142673,27in 4K Gaming Monitor,1,389.99,01/19/19 18:33,"383 South St, Portland, OR 97035" +142674,Bose SoundSport Headphones,1,99.99,01/29/19 18:35,"150 Sunset St, Boston, MA 02215" +142675,Wired Headphones,1,11.99,01/19/19 13:41,"384 4th St, Austin, TX 73301" +142676,USB-C Charging Cable,1,11.95,01/20/19 19:51,"889 Chestnut St, Los Angeles, CA 90001" +142677,Apple Airpods Headphones,1,150,01/21/19 14:15,"322 Church St, Portland, OR 97035" +142678,Wired Headphones,1,11.99,01/19/19 12:12,"250 Jackson St, Boston, MA 02215" +142679,Google Phone,1,600,01/16/19 16:49,"728 Lakeview St, Boston, MA 02215" +142680,AAA Batteries (4-pack),3,2.99,01/24/19 13:20,"609 South St, Los Angeles, CA 90001" +142681,Apple Airpods Headphones,1,150,01/03/19 23:00,"877 11th St, San Francisco, CA 94016" +142682,Macbook Pro Laptop,1,1700,01/31/19 13:58,"901 Elm St, Los Angeles, CA 90001" +142683,USB-C Charging Cable,1,11.95,01/26/19 15:14,"802 2nd St, Los Angeles, CA 90001" +142684,AA Batteries (4-pack),1,3.84,01/02/19 18:44,"151 West St, San Francisco, CA 94016" +142685,Bose SoundSport Headphones,1,99.99,01/14/19 11:55,"415 Johnson St, Austin, TX 73301" +142686,Lightning Charging Cable,1,14.95,01/16/19 18:59,"907 2nd St, Boston, MA 02215" +142687,34in Ultrawide Monitor,1,379.99,01/04/19 20:02,"923 1st St, Dallas, TX 75001" +142688,USB-C Charging Cable,1,11.95,01/17/19 13:53,"412 6th St, Seattle, WA 98101" +142689,AAA Batteries (4-pack),2,2.99,01/30/19 10:56,"571 Main St, Austin, TX 73301" +142690,Wired Headphones,1,11.99,01/21/19 15:38,"747 Pine St, San Francisco, CA 94016" +142691,USB-C Charging Cable,1,11.95,01/24/19 17:57,"883 Sunset St, Boston, MA 02215" +142692,Wired Headphones,1,11.99,01/17/19 16:17,"463 River St, Boston, MA 02215" +142693,Apple Airpods Headphones,1,150,01/26/19 13:52,"589 Chestnut St, Dallas, TX 75001" +142694,27in 4K Gaming Monitor,1,389.99,01/02/19 22:27,"509 River St, Atlanta, GA 30301" +142695,Wired Headphones,2,11.99,01/11/19 08:04,"598 Wilson St, Los Angeles, CA 90001" +142696,Bose SoundSport Headphones,1,99.99,01/05/19 00:14,"201 South St, New York City, NY 10001" +142697,AA Batteries (4-pack),2,3.84,01/12/19 12:33,"227 6th St, Austin, TX 73301" +142698,AA Batteries (4-pack),1,3.84,01/09/19 09:59,"245 12th St, Dallas, TX 75001" +142699,AAA Batteries (4-pack),1,2.99,01/05/19 20:42,"606 Hickory St, Los Angeles, CA 90001" +142700,AAA Batteries (4-pack),1,2.99,01/18/19 07:45,"771 Washington St, Dallas, TX 75001" +142701,AAA Batteries (4-pack),1,2.99,01/04/19 21:18,"347 South St, Dallas, TX 75001" +142702,AA Batteries (4-pack),1,3.84,01/15/19 01:07,"701 Jackson St, Atlanta, GA 30301" +142703,AAA Batteries (4-pack),1,2.99,01/18/19 10:18,"847 Park St, Boston, MA 02215" +142704,Lightning Charging Cable,1,14.95,01/19/19 14:19,"276 Willow St, New York City, NY 10001" +142705,27in 4K Gaming Monitor,1,389.99,01/23/19 08:33,"751 Wilson St, Los Angeles, CA 90001" +142706,AA Batteries (4-pack),1,3.84,01/30/19 09:32,"744 Cherry St, Los Angeles, CA 90001" +142707,AA Batteries (4-pack),1,3.84,01/28/19 23:40,"388 Center St, Dallas, TX 75001" +142708,Macbook Pro Laptop,1,1700,01/22/19 19:14,"492 6th St, Dallas, TX 75001" +142709,AAA Batteries (4-pack),1,2.99,01/26/19 08:28,"161 North St, Los Angeles, CA 90001" +142710,iPhone,1,700,01/01/19 08:50,"50 2nd St, Seattle, WA 98101" +142710,Apple Airpods Headphones,1,150,01/01/19 08:50,"50 2nd St, Seattle, WA 98101" +142711,Wired Headphones,1,11.99,01/31/19 20:08,"522 Willow St, San Francisco, CA 94016" +142712,Flatscreen TV,1,300,01/31/19 15:26,"351 5th St, Boston, MA 02215" +142713,AAA Batteries (4-pack),1,2.99,01/07/19 18:29,"522 Adams St, San Francisco, CA 94016" +142714,USB-C Charging Cable,1,11.95,01/28/19 18:25,"202 7th St, Atlanta, GA 30301" +142715,27in 4K Gaming Monitor,1,389.99,01/11/19 18:15,"962 13th St, New York City, NY 10001" +142716,USB-C Charging Cable,1,11.95,01/31/19 16:39,"127 Main St, Dallas, TX 75001" +142717,AAA Batteries (4-pack),2,2.99,01/08/19 22:03,"627 5th St, Portland, OR 97035" +142718,27in 4K Gaming Monitor,1,389.99,01/17/19 22:33,"37 Ridge St, San Francisco, CA 94016" +142719,27in FHD Monitor,1,149.99,01/04/19 15:08,"369 Spruce St, New York City, NY 10001" +142720,Lightning Charging Cable,1,14.95,01/23/19 10:35,"134 Elm St, New York City, NY 10001" +142721,Lightning Charging Cable,1,14.95,01/25/19 23:26,"743 Chestnut St, Dallas, TX 75001" +142722,Lightning Charging Cable,1,14.95,01/27/19 16:23,"519 Jefferson St, San Francisco, CA 94016" +142723,Bose SoundSport Headphones,1,99.99,01/22/19 10:25,"454 13th St, San Francisco, CA 94016" +142724,AAA Batteries (4-pack),1,2.99,01/30/19 17:59,"743 Lake St, San Francisco, CA 94016" +142725,USB-C Charging Cable,2,11.95,01/22/19 11:02,"366 1st St, New York City, NY 10001" +142726,Wired Headphones,1,11.99,01/24/19 08:50,"40 South St, San Francisco, CA 94016" +142727,Apple Airpods Headphones,1,150,01/13/19 21:56,"122 Spruce St, Seattle, WA 98101" +142727,Wired Headphones,1,11.99,01/13/19 21:56,"122 Spruce St, Seattle, WA 98101" +142728,Apple Airpods Headphones,1,150,01/14/19 06:47,"302 Highland St, San Francisco, CA 94016" +142729,AAA Batteries (4-pack),1,2.99,01/21/19 10:30,"634 5th St, San Francisco, CA 94016" +142730,Bose SoundSport Headphones,1,99.99,01/12/19 10:15,"388 2nd St, San Francisco, CA 94016" +142731,iPhone,1,700,01/24/19 00:26,"348 Cedar St, Boston, MA 02215" +142732,Wired Headphones,1,11.99,01/02/19 22:11,"390 Lake St, Seattle, WA 98101" +142733,LG Dryer,1,600.0,01/05/19 20:38,"603 Wilson St, Los Angeles, CA 90001" +142734,AA Batteries (4-pack),2,3.84,01/23/19 11:28,"534 Cherry St, New York City, NY 10001" +142735,Wired Headphones,2,11.99,01/19/19 20:01,"474 Sunset St, Dallas, TX 75001" +142736,USB-C Charging Cable,1,11.95,01/30/19 12:50,"610 Chestnut St, San Francisco, CA 94016" +142737,iPhone,1,700,01/22/19 16:50,"617 Adams St, San Francisco, CA 94016" +142737,Wired Headphones,1,11.99,01/22/19 16:50,"617 Adams St, San Francisco, CA 94016" +142738,20in Monitor,1,109.99,01/16/19 22:59,"49 Elm St, Atlanta, GA 30301" +142739,Bose SoundSport Headphones,1,99.99,01/29/19 19:30,"968 West St, New York City, NY 10001" +142740,Google Phone,1,600,01/11/19 13:03,"886 6th St, Los Angeles, CA 90001" +142740,Wired Headphones,1,11.99,01/11/19 13:03,"886 6th St, Los Angeles, CA 90001" +142741,Lightning Charging Cable,1,14.95,01/09/19 20:26,"226 Dogwood St, Boston, MA 02215" +142742,Bose SoundSport Headphones,1,99.99,01/07/19 04:02,"913 Cedar St, Portland, OR 97035" +142743,AA Batteries (4-pack),3,3.84,01/30/19 18:50,"441 Walnut St, Atlanta, GA 30301" +142744,20in Monitor,1,109.99,01/11/19 11:00,"604 2nd St, Dallas, TX 75001" +142745,USB-C Charging Cable,1,11.95,01/09/19 01:33,"946 14th St, Boston, MA 02215" +142746,27in FHD Monitor,1,149.99,01/08/19 03:25,"392 Wilson St, New York City, NY 10001" +142747,Flatscreen TV,1,300,01/17/19 15:53,"913 Washington St, Boston, MA 02215" +142748,AA Batteries (4-pack),1,3.84,01/29/19 00:09,"531 Cedar St, Austin, TX 73301" +142749,AAA Batteries (4-pack),1,2.99,01/02/19 19:12,"255 Johnson St, San Francisco, CA 94016" +142750,USB-C Charging Cable,1,11.95,01/01/19 19:14,"642 Willow St, San Francisco, CA 94016" +142751,AA Batteries (4-pack),1,3.84,01/04/19 18:01,"825 10th St, San Francisco, CA 94016" +142752,27in 4K Gaming Monitor,1,389.99,01/29/19 16:34,"697 Walnut St, Portland, OR 97035" +142753,Macbook Pro Laptop,1,1700,01/26/19 10:43,"794 Hickory St, Boston, MA 02215" +142754,Bose SoundSport Headphones,1,99.99,01/07/19 13:10,"543 Center St, Portland, OR 97035" +142755,USB-C Charging Cable,1,11.95,01/17/19 20:01,"202 Center St, San Francisco, CA 94016" +142756,Wired Headphones,1,11.99,01/18/19 15:11,"337 Wilson St, Los Angeles, CA 90001" +142757,Lightning Charging Cable,1,14.95,01/06/19 22:46,"902 South St, Boston, MA 02215" +142758,Apple Airpods Headphones,1,150,01/13/19 11:01,"897 13th St, Los Angeles, CA 90001" +142759,AA Batteries (4-pack),2,3.84,01/17/19 21:17,"560 8th St, Los Angeles, CA 90001" +142760,Flatscreen TV,1,300,01/26/19 21:56,"370 1st St, Austin, TX 73301" +142761,AA Batteries (4-pack),2,3.84,01/04/19 14:47,"932 Walnut St, Portland, OR 97035" +142762,AA Batteries (4-pack),2,3.84,01/27/19 15:01,"81 Willow St, San Francisco, CA 94016" +142763,ThinkPad Laptop,1,999.99,01/10/19 17:19,"189 Church St, San Francisco, CA 94016" +142764,Apple Airpods Headphones,1,150,01/29/19 17:24,"441 1st St, Boston, MA 02215" +142765,USB-C Charging Cable,1,11.95,01/08/19 21:37,"248 Elm St, Los Angeles, CA 90001" +142766,USB-C Charging Cable,1,11.95,01/22/19 09:28,"840 Johnson St, Austin, TX 73301" +142767,USB-C Charging Cable,1,11.95,01/21/19 18:00,"93 Forest St, Dallas, TX 75001" +142768,Apple Airpods Headphones,1,150,01/12/19 22:38,"882 4th St, San Francisco, CA 94016" +142769,iPhone,1,700,01/29/19 13:26,"743 Elm St, Atlanta, GA 30301" +142770,AA Batteries (4-pack),1,3.84,01/20/19 15:41,"736 Willow St, Dallas, TX 75001" +142771,Flatscreen TV,1,300,01/27/19 14:10,"936 Hickory St, Atlanta, GA 30301" +142772,Bose SoundSport Headphones,1,99.99,01/17/19 18:02,"938 North St, Los Angeles, CA 90001" +142773,Bose SoundSport Headphones,1,99.99,01/17/19 01:28,"50 2nd St, Austin, TX 73301" +142774,USB-C Charging Cable,1,11.95,01/25/19 12:19,"359 Dogwood St, Atlanta, GA 30301" +142775,USB-C Charging Cable,2,11.95,01/10/19 15:13,"849 10th St, New York City, NY 10001" +142776,AA Batteries (4-pack),3,3.84,01/30/19 18:58,"290 Main St, San Francisco, CA 94016" +142777,AA Batteries (4-pack),2,3.84,01/20/19 21:08,"73 Church St, Boston, MA 02215" +142778,Flatscreen TV,1,300,01/15/19 13:12,"429 Center St, San Francisco, CA 94016" +142779,Lightning Charging Cable,1,14.95,01/02/19 01:55,"316 West St, New York City, NY 10001" +142780,AA Batteries (4-pack),1,3.84,01/30/19 20:57,"164 Cherry St, San Francisco, CA 94016" +142781,Google Phone,1,600,01/20/19 18:55,"19 9th St, Austin, TX 73301" +142782,AA Batteries (4-pack),2,3.84,01/21/19 11:10,"951 8th St, Los Angeles, CA 90001" +142783,iPhone,1,700,01/10/19 17:18,"724 Walnut St, Los Angeles, CA 90001" +142784,Wired Headphones,1,11.99,01/09/19 11:33,"232 Hill St, Los Angeles, CA 90001" +142785,20in Monitor,1,109.99,01/03/19 21:08,"340 Church St, Austin, TX 73301" +142786,20in Monitor,1,109.99,01/12/19 21:56,"246 4th St, Seattle, WA 98101" +142787,Lightning Charging Cable,1,14.95,01/31/19 17:38,"37 12th St, Boston, MA 02215" +142788,AAA Batteries (4-pack),1,2.99,01/28/19 02:15,"50 Forest St, New York City, NY 10001" +142789,27in FHD Monitor,1,149.99,01/28/19 23:10,"946 9th St, Boston, MA 02215" +142790,Wired Headphones,1,11.99,01/30/19 10:07,"455 Lincoln St, San Francisco, CA 94016" +142791,Apple Airpods Headphones,1,150,01/22/19 16:37,"893 Lakeview St, Austin, TX 73301" +142792,LG Washing Machine,1,600.0,01/04/19 21:03,"648 North St, San Francisco, CA 94016" +142793,Bose SoundSport Headphones,1,99.99,01/04/19 20:23,"621 Cedar St, San Francisco, CA 94016" +142794,Lightning Charging Cable,1,14.95,01/03/19 15:38,"235 Walnut St, Atlanta, GA 30301" +142795,Wired Headphones,2,11.99,01/24/19 15:10,"492 12th St, Seattle, WA 98101" +142796,Lightning Charging Cable,1,14.95,01/13/19 19:28,"60 5th St, Dallas, TX 75001" +142797,AA Batteries (4-pack),3,3.84,01/11/19 09:45,"707 Willow St, Los Angeles, CA 90001" +142798,AAA Batteries (4-pack),1,2.99,01/15/19 17:06,"867 Washington St, San Francisco, CA 94016" +142799,USB-C Charging Cable,1,11.95,01/06/19 06:11,"850 12th St, San Francisco, CA 94016" +142800,AAA Batteries (4-pack),2,2.99,01/10/19 15:21,"376 Washington St, Boston, MA 02215" +142801,Google Phone,1,600,01/13/19 14:01,"175 Forest St, Austin, TX 73301" +142801,Bose SoundSport Headphones,1,99.99,01/13/19 14:01,"175 Forest St, Austin, TX 73301" +142802,ThinkPad Laptop,1,999.99,01/03/19 19:02,"104 Jackson St, Seattle, WA 98101" +142803,Lightning Charging Cable,1,14.95,01/28/19 18:42,"658 Cherry St, Los Angeles, CA 90001" +142804,Lightning Charging Cable,1,14.95,01/09/19 22:07,"550 Hickory St, San Francisco, CA 94016" +142805,iPhone,1,700,01/24/19 21:36,"872 Lake St, New York City, NY 10001" +142806,Wired Headphones,1,11.99,01/06/19 03:24,"46 Jackson St, San Francisco, CA 94016" +142807,USB-C Charging Cable,1,11.95,01/12/19 11:03,"647 Meadow St, New York City, NY 10001" +142808,Lightning Charging Cable,2,14.95,01/11/19 08:43,"472 Dogwood St, New York City, NY 10001" +142809,Bose SoundSport Headphones,1,99.99,01/28/19 13:40,"469 Wilson St, Boston, MA 02215" +142810,USB-C Charging Cable,2,11.95,01/07/19 12:01,"618 Jackson St, New York City, NY 10001" +142811,Flatscreen TV,1,300,01/09/19 21:44,"570 Hill St, Boston, MA 02215" +142812,Lightning Charging Cable,1,14.95,01/10/19 04:38,"365 Spruce St, Los Angeles, CA 90001" +142813,Wired Headphones,1,11.99,01/27/19 18:26,"199 Madison St, Los Angeles, CA 90001" +142814,Bose SoundSport Headphones,1,99.99,01/11/19 12:01,"886 Adams St, Atlanta, GA 30301" +142815,27in FHD Monitor,1,149.99,01/30/19 19:41,"733 8th St, San Francisco, CA 94016" +142816,AAA Batteries (4-pack),1,2.99,01/30/19 14:19,"480 12th St, Los Angeles, CA 90001" +142817,USB-C Charging Cable,1,11.95,01/10/19 08:16,"80 Cedar St, New York City, NY 10001" +142818,Flatscreen TV,1,300,01/25/19 10:39,"425 11th St, San Francisco, CA 94016" +142819,34in Ultrawide Monitor,1,379.99,01/05/19 12:45,"282 4th St, San Francisco, CA 94016" +142820,AA Batteries (4-pack),3,3.84,01/16/19 15:45,"279 Washington St, San Francisco, CA 94016" +142821,USB-C Charging Cable,1,11.95,01/14/19 10:13,"780 Washington St, Los Angeles, CA 90001" +142822,AA Batteries (4-pack),2,3.84,01/03/19 22:19,"976 2nd St, San Francisco, CA 94016" +142823,Vareebadd Phone,1,400,01/16/19 14:46,"599 West St, Boston, MA 02215" +142824,34in Ultrawide Monitor,1,379.99,01/30/19 17:58,"665 Dogwood St, Los Angeles, CA 90001" +142825,AAA Batteries (4-pack),1,2.99,01/22/19 09:43,"341 Hill St, New York City, NY 10001" +142826,Flatscreen TV,1,300,01/04/19 01:55,"685 Willow St, San Francisco, CA 94016" +142827,27in FHD Monitor,1,149.99,01/05/19 14:38,"6 Dogwood St, Portland, ME 04101" +142828,Bose SoundSport Headphones,1,99.99,01/03/19 00:02,"427 12th St, San Francisco, CA 94016" +142829,Google Phone,1,600,01/16/19 13:10,"804 Spruce St, Seattle, WA 98101" +142830,AA Batteries (4-pack),1,3.84,01/08/19 15:52,"78 West St, Los Angeles, CA 90001" +142831,AA Batteries (4-pack),1,3.84,01/20/19 12:18,"146 Wilson St, Portland, OR 97035" +142832,Lightning Charging Cable,1,14.95,01/03/19 19:15,"131 Jackson St, Los Angeles, CA 90001" +142833,Vareebadd Phone,1,400,01/21/19 17:30,"883 Willow St, New York City, NY 10001" +142834,USB-C Charging Cable,1,11.95,01/26/19 00:25,"991 North St, Portland, OR 97035" +142835,AA Batteries (4-pack),1,3.84,01/25/19 07:00,"707 Sunset St, San Francisco, CA 94016" +142836,LG Dryer,1,600.0,01/09/19 16:00,"758 Sunset St, Boston, MA 02215" +142837,27in FHD Monitor,1,149.99,01/31/19 12:31,"856 Wilson St, New York City, NY 10001" +142838,27in FHD Monitor,1,149.99,01/12/19 09:48,"157 13th St, Seattle, WA 98101" +142839,AA Batteries (4-pack),5,3.84,01/19/19 21:53,"696 5th St, New York City, NY 10001" +142840,AAA Batteries (4-pack),1,2.99,01/15/19 21:59,"647 Washington St, Los Angeles, CA 90001" +142841,Bose SoundSport Headphones,1,99.99,01/05/19 06:41,"181 9th St, San Francisco, CA 94016" +142842,Flatscreen TV,1,300,01/26/19 15:59,"723 Lincoln St, Boston, MA 02215" +142843,USB-C Charging Cable,2,11.95,01/21/19 15:26,"449 Main St, San Francisco, CA 94016" +142844,27in 4K Gaming Monitor,1,389.99,01/12/19 10:27,"622 Jefferson St, San Francisco, CA 94016" +142845,iPhone,1,700,01/15/19 06:01,"632 9th St, Dallas, TX 75001" +142846,iPhone,1,700,01/17/19 16:43,"208 Center St, Los Angeles, CA 90001" +142846,Apple Airpods Headphones,1,150,01/17/19 16:43,"208 Center St, Los Angeles, CA 90001" +142847,27in FHD Monitor,1,149.99,01/24/19 20:57,"219 Park St, Los Angeles, CA 90001" +142848,Lightning Charging Cable,1,14.95,01/16/19 02:52,"670 Spruce St, Boston, MA 02215" +142849,AA Batteries (4-pack),4,3.84,01/06/19 15:31,"624 8th St, Atlanta, GA 30301" +142850,Lightning Charging Cable,1,14.95,01/15/19 23:31,"764 Chestnut St, Boston, MA 02215" +142851,Flatscreen TV,1,300,01/28/19 20:40,"615 13th St, Atlanta, GA 30301" +142852,Lightning Charging Cable,1,14.95,01/07/19 12:57,"844 2nd St, Portland, ME 04101" +142853,Wired Headphones,1,11.99,01/07/19 15:22,"455 Willow St, Portland, OR 97035" +142854,USB-C Charging Cable,1,11.95,01/29/19 13:12,"406 Willow St, Los Angeles, CA 90001" +142855,iPhone,1,700,01/16/19 16:57,"59 Ridge St, New York City, NY 10001" +142856,Wired Headphones,1,11.99,01/12/19 20:09,"416 1st St, Dallas, TX 75001" +142857,Apple Airpods Headphones,1,150,01/20/19 21:49,"492 Wilson St, New York City, NY 10001" +142858,USB-C Charging Cable,1,11.95,01/05/19 15:47,"116 Highland St, Seattle, WA 98101" +142859,Google Phone,1,600,01/22/19 15:10,"935 10th St, New York City, NY 10001" +142860,AA Batteries (4-pack),2,3.84,01/10/19 11:29,"45 1st St, Austin, TX 73301" +142861,ThinkPad Laptop,1,999.99,01/08/19 13:00,"526 Cherry St, Austin, TX 73301" +142862,27in 4K Gaming Monitor,1,389.99,01/01/19 17:11,"373 5th St, New York City, NY 10001" +142863,Flatscreen TV,1,300,01/15/19 00:54,"742 9th St, Los Angeles, CA 90001" +142864,Lightning Charging Cable,1,14.95,01/15/19 22:49,"465 Cherry St, Los Angeles, CA 90001" +142865,Macbook Pro Laptop,1,1700,01/12/19 14:41,"449 Park St, Dallas, TX 75001" +142866,Macbook Pro Laptop,1,1700,01/01/19 18:32,"231 6th St, San Francisco, CA 94016" +142866,Wired Headphones,1,11.99,01/01/19 18:32,"231 6th St, San Francisco, CA 94016" +142867,USB-C Charging Cable,1,11.95,01/09/19 12:15,"393 9th St, San Francisco, CA 94016" +142868,Apple Airpods Headphones,1,150,01/12/19 22:42,"900 Wilson St, San Francisco, CA 94016" +142869,Vareebadd Phone,1,400,01/25/19 09:20,"93 Chestnut St, Seattle, WA 98101" +142869,Wired Headphones,1,11.99,01/25/19 09:20,"93 Chestnut St, Seattle, WA 98101" +142870,Bose SoundSport Headphones,1,99.99,01/08/19 11:58,"851 North St, Los Angeles, CA 90001" +142871,27in FHD Monitor,1,149.99,01/21/19 01:12,"857 8th St, Los Angeles, CA 90001" +142872,Apple Airpods Headphones,1,150,01/01/19 05:50,"797 Pine St, Los Angeles, CA 90001" +142873,Apple Airpods Headphones,1,150,01/16/19 13:38,"98 Dogwood St, New York City, NY 10001" +142874,27in FHD Monitor,1,149.99,01/05/19 19:56,"766 Cherry St, Atlanta, GA 30301" +142875,Bose SoundSport Headphones,1,99.99,01/14/19 14:04,"519 Hickory St, Los Angeles, CA 90001" +142876,20in Monitor,1,109.99,01/28/19 23:02,"689 Cherry St, Seattle, WA 98101" +142877,AAA Batteries (4-pack),1,2.99,01/26/19 10:25,"903 Madison St, Boston, MA 02215" +142878,Flatscreen TV,1,300,01/07/19 11:51,"902 2nd St, Portland, OR 97035" +142879,Bose SoundSport Headphones,1,99.99,01/10/19 21:29,"557 5th St, New York City, NY 10001" +142880,Macbook Pro Laptop,1,1700,01/15/19 19:24,"333 13th St, Atlanta, GA 30301" +142881,27in FHD Monitor,1,149.99,01/09/19 09:27,"376 Maple St, San Francisco, CA 94016" +142882,Flatscreen TV,1,300,01/07/19 16:31,"394 Willow St, Boston, MA 02215" +142883,Lightning Charging Cable,1,14.95,01/06/19 15:21,"910 Cedar St, Los Angeles, CA 90001" +142884,34in Ultrawide Monitor,1,379.99,01/09/19 10:25,"234 Willow St, New York City, NY 10001" +142885,Wired Headphones,1,11.99,01/12/19 03:09,"607 5th St, San Francisco, CA 94016" +142886,USB-C Charging Cable,2,11.95,01/11/19 23:32,"793 7th St, Dallas, TX 75001" +142887,27in FHD Monitor,1,149.99,01/16/19 10:29,"133 1st St, San Francisco, CA 94016" +142888,Apple Airpods Headphones,1,150,01/29/19 21:07,"702 Wilson St, San Francisco, CA 94016" +142889,34in Ultrawide Monitor,1,379.99,01/11/19 09:10,"252 North St, Austin, TX 73301" +142890,AAA Batteries (4-pack),1,2.99,01/08/19 13:03,"652 Johnson St, San Francisco, CA 94016" +142891,LG Washing Machine,1,600.0,01/13/19 10:44,"586 Walnut St, Austin, TX 73301" +142892,AA Batteries (4-pack),1,3.84,01/25/19 19:59,"776 Pine St, Dallas, TX 75001" +142893,AAA Batteries (4-pack),1,2.99,01/02/19 00:57,"337 Walnut St, Boston, MA 02215" +142894,Google Phone,1,600,01/02/19 14:40,"908 Lakeview St, Los Angeles, CA 90001" +142895,iPhone,1,700,01/26/19 10:18,"179 Meadow St, San Francisco, CA 94016" +142896,USB-C Charging Cable,1,11.95,01/17/19 11:24,"487 Walnut St, Boston, MA 02215" +142897,27in FHD Monitor,1,149.99,01/17/19 10:21,"10 Ridge St, San Francisco, CA 94016" +142898,AA Batteries (4-pack),1,3.84,01/21/19 03:47,"163 Meadow St, Portland, ME 04101" +142899,AA Batteries (4-pack),1,3.84,01/28/19 17:25,"568 Highland St, Dallas, TX 75001" +142900,AAA Batteries (4-pack),1,2.99,01/27/19 11:10,"49 Forest St, Austin, TX 73301" +142901,34in Ultrawide Monitor,1,379.99,01/01/19 19:22,"285 North St, New York City, NY 10001" +142902,AA Batteries (4-pack),1,3.84,01/07/19 07:51,"520 Highland St, Boston, MA 02215" +142903,Lightning Charging Cable,1,14.95,01/14/19 18:38,"823 Jackson St, Boston, MA 02215" +142904,Lightning Charging Cable,1,14.95,01/10/19 20:04,"876 North St, San Francisco, CA 94016" +142905,Apple Airpods Headphones,1,150,01/18/19 22:25,"307 Forest St, Los Angeles, CA 90001" +142906,Wired Headphones,1,11.99,01/25/19 18:17,"884 14th St, Atlanta, GA 30301" +142907,Apple Airpods Headphones,1,150,01/13/19 15:14,"912 Wilson St, Portland, OR 97035" +142908,USB-C Charging Cable,1,11.95,01/14/19 07:33,"972 North St, San Francisco, CA 94016" +142909,Google Phone,1,600,01/15/19 11:53,"307 West St, San Francisco, CA 94016" +142909,USB-C Charging Cable,1,11.95,01/15/19 11:53,"307 West St, San Francisco, CA 94016" +142910,Apple Airpods Headphones,1,150,01/27/19 15:09,"668 Main St, New York City, NY 10001" +142911,USB-C Charging Cable,1,11.95,01/31/19 17:08,"279 Adams St, Dallas, TX 75001" +142912,AAA Batteries (4-pack),1,2.99,01/14/19 13:24,"899 River St, Boston, MA 02215" +142913,34in Ultrawide Monitor,1,379.99,01/14/19 16:08,"749 Washington St, San Francisco, CA 94016" +142914,AA Batteries (4-pack),1,3.84,01/17/19 13:53,"68 Jackson St, Atlanta, GA 30301" +142915,Wired Headphones,1,11.99,01/08/19 09:33,"195 6th St, San Francisco, CA 94016" +142916,AAA Batteries (4-pack),2,2.99,01/17/19 11:19,"392 Hickory St, Los Angeles, CA 90001" +142917,Bose SoundSport Headphones,1,99.99,01/01/19 16:15,"345 Jefferson St, New York City, NY 10001" +142918,USB-C Charging Cable,1,11.95,01/31/19 15:38,"322 Highland St, Portland, OR 97035" +142919,Bose SoundSport Headphones,1,99.99,01/17/19 21:39,"314 Elm St, Los Angeles, CA 90001" +142920,Apple Airpods Headphones,1,150,01/20/19 11:55,"943 Spruce St, San Francisco, CA 94016" +142921,Wired Headphones,1,11.99,01/26/19 21:28,"540 Dogwood St, Seattle, WA 98101" +142922,Lightning Charging Cable,1,14.95,02/01/19 00:15,"23 Meadow St, Seattle, WA 98101" +142923,20in Monitor,1,109.99,01/20/19 11:17,"117 Lincoln St, Austin, TX 73301" +142924,Vareebadd Phone,1,400,01/31/19 15:12,"759 Park St, Dallas, TX 75001" +142925,AA Batteries (4-pack),1,3.84,01/05/19 10:36,"326 8th St, Boston, MA 02215" +142926,iPhone,1,700,01/17/19 23:59,"297 North St, New York City, NY 10001" +142927,Apple Airpods Headphones,1,150,01/21/19 09:37,"547 Highland St, New York City, NY 10001" +142928,Apple Airpods Headphones,1,150,01/13/19 23:18,"731 Madison St, San Francisco, CA 94016" +142929,USB-C Charging Cable,1,11.95,01/20/19 09:15,"984 Church St, San Francisco, CA 94016" +142930,Bose SoundSport Headphones,1,99.99,01/19/19 20:24,"278 14th St, Dallas, TX 75001" +142931,27in FHD Monitor,1,149.99,01/03/19 06:07,"443 Cedar St, Austin, TX 73301" +142932,Apple Airpods Headphones,1,150,01/29/19 19:54,"676 Spruce St, San Francisco, CA 94016" +142933,Wired Headphones,1,11.99,01/17/19 09:17,"427 Center St, Los Angeles, CA 90001" +142934,Lightning Charging Cable,1,14.95,01/14/19 08:17,"711 South St, New York City, NY 10001" +142935,ThinkPad Laptop,1,999.99,01/12/19 16:59,"30 9th St, Dallas, TX 75001" +142936,iPhone,1,700,01/14/19 10:30,"811 Ridge St, Atlanta, GA 30301" +142936,Lightning Charging Cable,1,14.95,01/14/19 10:30,"811 Ridge St, Atlanta, GA 30301" +142937,AA Batteries (4-pack),1,3.84,01/14/19 14:08,"814 Church St, San Francisco, CA 94016" +142938,USB-C Charging Cable,1,11.95,01/05/19 16:19,"648 Church St, Atlanta, GA 30301" +142939,Wired Headphones,1,11.99,01/21/19 18:50,"87 Meadow St, San Francisco, CA 94016" +142940,34in Ultrawide Monitor,1,379.99,01/06/19 00:17,"183 Center St, Boston, MA 02215" +142941,iPhone,1,700,01/21/19 01:25,"386 13th St, Seattle, WA 98101" +142942,AAA Batteries (4-pack),3,2.99,01/01/19 11:33,"932 Lakeview St, San Francisco, CA 94016" +142943,Wired Headphones,1,11.99,01/11/19 21:41,"13 Johnson St, New York City, NY 10001" +142944,AA Batteries (4-pack),2,3.84,01/16/19 19:04,"723 Hickory St, Atlanta, GA 30301" +142945,USB-C Charging Cable,1,11.95,01/21/19 01:25,"122 Forest St, Portland, OR 97035" +142946,Apple Airpods Headphones,1,150,01/23/19 18:53,"459 Adams St, Boston, MA 02215" +142947,Wired Headphones,2,11.99,01/20/19 06:49,"438 Highland St, San Francisco, CA 94016" +142948,Lightning Charging Cable,1,14.95,01/20/19 10:43,"283 9th St, Portland, OR 97035" +142949,Vareebadd Phone,1,400,01/14/19 22:43,"627 Ridge St, San Francisco, CA 94016" +142949,Wired Headphones,1,11.99,01/14/19 22:43,"627 Ridge St, San Francisco, CA 94016" +142950,AAA Batteries (4-pack),1,2.99,01/05/19 11:49,"978 Meadow St, Los Angeles, CA 90001" +142951,27in FHD Monitor,1,149.99,01/15/19 06:39,"195 Chestnut St, San Francisco, CA 94016" +142952,Flatscreen TV,1,300,01/21/19 18:22,"376 Willow St, New York City, NY 10001" +142953,AA Batteries (4-pack),1,3.84,01/20/19 21:38,"124 Sunset St, Seattle, WA 98101" +142954,27in FHD Monitor,1,149.99,01/28/19 22:09,"356 Willow St, San Francisco, CA 94016" +142955,AA Batteries (4-pack),2,3.84,01/16/19 10:31,"198 Jefferson St, Boston, MA 02215" +142956,AA Batteries (4-pack),3,3.84,01/11/19 23:11,"653 4th St, Dallas, TX 75001" +142957,Lightning Charging Cable,1,14.95,01/05/19 11:28,"859 11th St, San Francisco, CA 94016" +142958,AA Batteries (4-pack),2,3.84,01/01/19 08:00,"94 13th St, New York City, NY 10001" +142959,20in Monitor,1,109.99,01/27/19 23:42,"257 Washington St, Seattle, WA 98101" +142960,Bose SoundSport Headphones,1,99.99,01/16/19 07:28,"585 Park St, Dallas, TX 75001" +142961,AA Batteries (4-pack),2,3.84,01/21/19 14:16,"507 Sunset St, Los Angeles, CA 90001" +142962,AA Batteries (4-pack),1,3.84,01/31/19 17:09,"278 Pine St, Seattle, WA 98101" +142963,USB-C Charging Cable,1,11.95,01/13/19 12:25,"878 Chestnut St, Dallas, TX 75001" +142964,Bose SoundSport Headphones,1,99.99,01/09/19 22:55,"343 Hickory St, San Francisco, CA 94016" +142965,AA Batteries (4-pack),1,3.84,01/07/19 15:29,"399 Johnson St, San Francisco, CA 94016" +142966,Lightning Charging Cable,1,14.95,01/06/19 06:30,"141 West St, Seattle, WA 98101" +142967,USB-C Charging Cable,1,11.95,01/23/19 14:22,"771 Jefferson St, New York City, NY 10001" +142968,AA Batteries (4-pack),2,3.84,01/09/19 09:02,"129 Chestnut St, Austin, TX 73301" +142969,AAA Batteries (4-pack),1,2.99,01/16/19 15:00,"334 13th St, San Francisco, CA 94016" +142970,USB-C Charging Cable,1,11.95,01/07/19 21:52,"4 5th St, New York City, NY 10001" +142971,Google Phone,1,600,01/22/19 21:16,"437 Center St, San Francisco, CA 94016" +142972,Wired Headphones,1,11.99,01/11/19 06:46,"677 Main St, Seattle, WA 98101" +142973,iPhone,1,700,01/29/19 16:47,"941 Washington St, San Francisco, CA 94016" +142974,ThinkPad Laptop,1,999.99,01/19/19 16:54,"542 Elm St, San Francisco, CA 94016" +142975,34in Ultrawide Monitor,1,379.99,01/22/19 22:00,"401 11th St, San Francisco, CA 94016" +142976,USB-C Charging Cable,2,11.95,01/14/19 11:24,"124 Spruce St, San Francisco, CA 94016" +142977,Bose SoundSport Headphones,1,99.99,01/29/19 13:52,"590 Church St, San Francisco, CA 94016" +142978,Lightning Charging Cable,1,14.95,01/11/19 17:37,"345 West St, Austin, TX 73301" +142979,34in Ultrawide Monitor,1,379.99,01/21/19 20:22,"355 Elm St, Portland, OR 97035" +142980,Bose SoundSport Headphones,1,99.99,01/14/19 04:56,"358 14th St, New York City, NY 10001" +142981,Lightning Charging Cable,1,14.95,01/06/19 14:59,"969 River St, Los Angeles, CA 90001" +142982,Lightning Charging Cable,1,14.95,01/29/19 21:45,"270 Hickory St, Dallas, TX 75001" +142983,AA Batteries (4-pack),1,3.84,01/18/19 08:44,"848 4th St, Seattle, WA 98101" +142984,Wired Headphones,1,11.99,01/03/19 21:43,"740 14th St, Austin, TX 73301" +142985,27in FHD Monitor,1,149.99,01/09/19 16:28,"984 Park St, New York City, NY 10001" +142986,Apple Airpods Headphones,1,150,01/25/19 12:19,"797 11th St, San Francisco, CA 94016" +142987,AAA Batteries (4-pack),1,2.99,01/26/19 06:23,"250 4th St, Los Angeles, CA 90001" +142988,Apple Airpods Headphones,1,150,01/21/19 10:15,"868 Highland St, Seattle, WA 98101" +142989,Wired Headphones,1,11.99,01/17/19 22:43,"562 South St, San Francisco, CA 94016" +142990,34in Ultrawide Monitor,1,379.99,01/16/19 13:55,"976 13th St, New York City, NY 10001" +142991,34in Ultrawide Monitor,1,379.99,01/10/19 23:04,"141 Jackson St, San Francisco, CA 94016" +142992,20in Monitor,1,109.99,01/19/19 17:18,"338 Walnut St, Los Angeles, CA 90001" +142993,AA Batteries (4-pack),1,3.84,01/12/19 12:03,"973 North St, New York City, NY 10001" +142994,Wired Headphones,1,11.99,01/07/19 13:04,"46 Washington St, Portland, OR 97035" +142995,27in 4K Gaming Monitor,1,389.99,01/27/19 17:44,"518 Maple St, Boston, MA 02215" +142996,27in FHD Monitor,1,149.99,01/16/19 18:58,"315 8th St, Seattle, WA 98101" +142997,AAA Batteries (4-pack),1,2.99,01/31/19 21:44,"131 5th St, San Francisco, CA 94016" +142998,Lightning Charging Cable,1,14.95,01/20/19 15:25,"670 2nd St, Los Angeles, CA 90001" +142999,AA Batteries (4-pack),1,3.84,01/22/19 13:13,"742 6th St, Los Angeles, CA 90001" +143000,Wired Headphones,1,11.99,01/22/19 12:14,"956 Hickory St, San Francisco, CA 94016" +143001,Lightning Charging Cable,1,14.95,01/29/19 10:18,"1 Pine St, Atlanta, GA 30301" +143002,USB-C Charging Cable,1,11.95,01/31/19 13:14,"520 8th St, New York City, NY 10001" +143003,Lightning Charging Cable,1,14.95,01/17/19 15:41,"522 Hickory St, New York City, NY 10001" +143004,Wired Headphones,1,11.99,01/12/19 09:54,"323 Church St, New York City, NY 10001" +143005,AAA Batteries (4-pack),1,2.99,01/17/19 18:09,"506 2nd St, Austin, TX 73301" +143006,USB-C Charging Cable,1,11.95,01/04/19 09:19,"959 Pine St, Atlanta, GA 30301" +143007,Bose SoundSport Headphones,1,99.99,01/12/19 07:29,"472 Wilson St, San Francisco, CA 94016" +143008,Lightning Charging Cable,1,14.95,01/08/19 06:04,"386 Madison St, San Francisco, CA 94016" +143009,USB-C Charging Cable,1,11.95,01/15/19 14:38,"523 13th St, Seattle, WA 98101" +143010,USB-C Charging Cable,1,11.95,01/15/19 13:21,"319 7th St, Los Angeles, CA 90001" +143011,AAA Batteries (4-pack),3,2.99,01/25/19 18:22,"128 Johnson St, San Francisco, CA 94016" +143012,USB-C Charging Cable,1,11.95,01/09/19 17:40,"884 13th St, Boston, MA 02215" +143013,AAA Batteries (4-pack),2,2.99,01/18/19 14:44,"194 Adams St, New York City, NY 10001" +143014,USB-C Charging Cable,1,11.95,01/13/19 18:46,"683 Hickory St, San Francisco, CA 94016" +143015,Lightning Charging Cable,1,14.95,01/18/19 12:16,"760 Elm St, Dallas, TX 75001" +143016,ThinkPad Laptop,1,999.99,01/27/19 11:45,"573 Highland St, San Francisco, CA 94016" +143017,Bose SoundSport Headphones,1,99.99,01/06/19 07:07,"316 Washington St, San Francisco, CA 94016" +143018,Google Phone,1,600,01/09/19 12:58,"219 Center St, San Francisco, CA 94016" +143019,Flatscreen TV,1,300,01/03/19 14:51,"674 Jefferson St, Portland, OR 97035" +143020,USB-C Charging Cable,1,11.95,01/05/19 18:50,"242 Center St, San Francisco, CA 94016" +143021,Apple Airpods Headphones,1,150,01/27/19 21:08,"897 Lincoln St, New York City, NY 10001" +143022,34in Ultrawide Monitor,1,379.99,01/24/19 19:56,"10 Hill St, Los Angeles, CA 90001" +143023,USB-C Charging Cable,1,11.95,01/10/19 14:25,"321 Sunset St, San Francisco, CA 94016" +143024,iPhone,1,700,01/20/19 11:25,"633 Center St, Atlanta, GA 30301" +143025,27in FHD Monitor,1,149.99,01/28/19 22:22,"809 Center St, San Francisco, CA 94016" +143026,AAA Batteries (4-pack),1,2.99,01/01/19 17:50,"525 River St, Portland, OR 97035" +143027,34in Ultrawide Monitor,1,379.99,01/17/19 16:23,"403 Maple St, San Francisco, CA 94016" +143028,Lightning Charging Cable,1,14.95,01/21/19 16:47,"170 Lincoln St, Portland, OR 97035" +143029,27in 4K Gaming Monitor,1,389.99,01/27/19 11:34,"555 8th St, San Francisco, CA 94016" +143030,AAA Batteries (4-pack),1,2.99,01/05/19 21:56,"670 12th St, Dallas, TX 75001" +143031,Apple Airpods Headphones,1,150,01/31/19 20:02,"141 14th St, San Francisco, CA 94016" +143032,USB-C Charging Cable,1,11.95,01/02/19 23:01,"989 6th St, Los Angeles, CA 90001" +143033,Macbook Pro Laptop,1,1700,01/26/19 08:05,"703 Spruce St, Seattle, WA 98101" +143034,Bose SoundSport Headphones,1,99.99,01/01/19 17:35,"493 13th St, Seattle, WA 98101" +143035,USB-C Charging Cable,1,11.95,01/30/19 19:14,"598 Elm St, Austin, TX 73301" +143036,34in Ultrawide Monitor,1,379.99,01/01/19 09:57,"882 Spruce St, Portland, OR 97035" +143037,Lightning Charging Cable,1,14.95,01/11/19 22:21,"639 4th St, Dallas, TX 75001" +143038,Lightning Charging Cable,1,14.95,01/30/19 14:05,"670 5th St, Atlanta, GA 30301" +143039,Vareebadd Phone,1,400,01/17/19 21:19,"620 Meadow St, Los Angeles, CA 90001" +143040,Macbook Pro Laptop,1,1700,01/17/19 23:01,"994 2nd St, Dallas, TX 75001" +143041,USB-C Charging Cable,1,11.95,01/01/19 16:30,"930 Johnson St, New York City, NY 10001" +143042,AA Batteries (4-pack),1,3.84,01/28/19 18:00,"609 12th St, San Francisco, CA 94016" +143043,34in Ultrawide Monitor,1,379.99,01/04/19 04:01,"141 Lincoln St, Boston, MA 02215" +143044,AAA Batteries (4-pack),1,2.99,01/08/19 18:36,"206 Main St, Los Angeles, CA 90001" +143045,AAA Batteries (4-pack),1,2.99,01/12/19 17:36,"576 Church St, Los Angeles, CA 90001" +143046,27in 4K Gaming Monitor,1,389.99,01/09/19 09:24,"988 Cedar St, Boston, MA 02215" +143047,Lightning Charging Cable,1,14.95,01/08/19 23:56,"851 5th St, Austin, TX 73301" +143048,27in FHD Monitor,1,149.99,01/17/19 01:17,"623 10th St, San Francisco, CA 94016" +143049,Apple Airpods Headphones,1,150,01/06/19 20:16,"605 Church St, Boston, MA 02215" +143050,AAA Batteries (4-pack),1,2.99,01/22/19 18:30,"288 Highland St, Seattle, WA 98101" +143051,Apple Airpods Headphones,1,150,01/23/19 21:40,"846 Ridge St, San Francisco, CA 94016" +143052,AA Batteries (4-pack),1,3.84,01/01/19 18:10,"245 Church St, Portland, OR 97035" +143053,Apple Airpods Headphones,1,150,01/23/19 16:58,"794 Meadow St, San Francisco, CA 94016" +143054,USB-C Charging Cable,1,11.95,01/11/19 14:09,"714 West St, Los Angeles, CA 90001" +143055,Macbook Pro Laptop,1,1700,01/04/19 15:19,"965 Pine St, Dallas, TX 75001" +143056,AAA Batteries (4-pack),1,2.99,01/18/19 17:20,"622 8th St, Boston, MA 02215" +143057,AA Batteries (4-pack),1,3.84,01/02/19 16:00,"594 Forest St, Los Angeles, CA 90001" +143058,AA Batteries (4-pack),2,3.84,01/02/19 16:39,"795 9th St, Portland, ME 04101" +143059,20in Monitor,1,109.99,01/22/19 18:23,"849 Willow St, Seattle, WA 98101" +143060,Wired Headphones,1,11.99,01/12/19 16:14,"57 13th St, San Francisco, CA 94016" +143061,Bose SoundSport Headphones,1,99.99,01/09/19 19:50,"276 River St, Seattle, WA 98101" +143062,34in Ultrawide Monitor,1,379.99,01/01/19 20:34,"699 North St, San Francisco, CA 94016" +143063,Bose SoundSport Headphones,1,99.99,01/26/19 08:10,"660 Madison St, Boston, MA 02215" +143064,Wired Headphones,1,11.99,01/19/19 17:23,"131 Hill St, Austin, TX 73301" +143065,Macbook Pro Laptop,1,1700,01/21/19 12:35,"651 5th St, Austin, TX 73301" +143066,AA Batteries (4-pack),1,3.84,01/30/19 12:57,"237 Lakeview St, Los Angeles, CA 90001" +143067,27in FHD Monitor,1,149.99,01/20/19 23:47,"296 Park St, Portland, ME 04101" +143068,Bose SoundSport Headphones,1,99.99,01/24/19 11:35,"821 Hickory St, New York City, NY 10001" +143069,Wired Headphones,2,11.99,01/30/19 10:46,"4 Lake St, Los Angeles, CA 90001" +143070,27in FHD Monitor,1,149.99,01/16/19 19:43,"521 Forest St, Portland, ME 04101" +143071,Vareebadd Phone,1,400,01/24/19 22:41,"489 Pine St, Portland, ME 04101" +143072,Apple Airpods Headphones,1,150,01/16/19 20:55,"314 Lake St, Austin, TX 73301" +143073,Wired Headphones,1,11.99,01/23/19 11:12,"985 5th St, Dallas, TX 75001" +143074,Bose SoundSport Headphones,1,99.99,01/11/19 10:03,"29 2nd St, Los Angeles, CA 90001" +143075,AA Batteries (4-pack),1,3.84,01/18/19 14:47,"10 Jackson St, Austin, TX 73301" +143076,Lightning Charging Cable,1,14.95,01/25/19 15:16,"183 Meadow St, Los Angeles, CA 90001" +143077,AA Batteries (4-pack),1,3.84,01/30/19 19:16,"917 Hill St, Los Angeles, CA 90001" +143078,USB-C Charging Cable,1,11.95,01/07/19 17:50,"705 Sunset St, Dallas, TX 75001" +143079,AA Batteries (4-pack),1,3.84,01/11/19 20:57,"725 Chestnut St, Los Angeles, CA 90001" +143079,27in FHD Monitor,1,149.99,01/11/19 20:57,"725 Chestnut St, Los Angeles, CA 90001" +143080,Google Phone,1,600,01/05/19 13:41,"684 Johnson St, Boston, MA 02215" +143080,USB-C Charging Cable,1,11.95,01/05/19 13:41,"684 Johnson St, Boston, MA 02215" +143081,AAA Batteries (4-pack),4,2.99,01/24/19 08:53,"658 12th St, New York City, NY 10001" +143082,20in Monitor,1,109.99,01/25/19 00:17,"564 Ridge St, Portland, OR 97035" +143083,Apple Airpods Headphones,1,150,01/22/19 15:08,"296 Cherry St, New York City, NY 10001" +143083,AA Batteries (4-pack),2,3.84,01/22/19 15:08,"296 Cherry St, New York City, NY 10001" +143084,Bose SoundSport Headphones,1,99.99,01/30/19 19:59,"767 Meadow St, Los Angeles, CA 90001" +143085,AA Batteries (4-pack),1,3.84,01/04/19 16:13,"626 Church St, New York City, NY 10001" +143086,LG Washing Machine,1,600.0,01/04/19 10:17,"982 14th St, Los Angeles, CA 90001" +143087,USB-C Charging Cable,1,11.95,01/16/19 20:56,"227 Park St, Los Angeles, CA 90001" +143088,USB-C Charging Cable,1,11.95,01/09/19 23:12,"65 Pine St, Austin, TX 73301" +143089,Apple Airpods Headphones,1,150,01/31/19 10:29,"687 Jefferson St, Boston, MA 02215" +143090,27in 4K Gaming Monitor,1,389.99,01/07/19 20:11,"1 West St, San Francisco, CA 94016" +143091,Lightning Charging Cable,1,14.95,01/08/19 20:42,"719 Jackson St, San Francisco, CA 94016" +143092,USB-C Charging Cable,1,11.95,01/27/19 16:35,"403 13th St, New York City, NY 10001" +143093,AAA Batteries (4-pack),1,2.99,01/25/19 21:13,"903 Main St, San Francisco, CA 94016" +143094,Bose SoundSport Headphones,1,99.99,01/04/19 17:06,"69 Meadow St, San Francisco, CA 94016" +143095,Apple Airpods Headphones,1,150,01/31/19 18:30,"81 Lakeview St, Los Angeles, CA 90001" +143096,Bose SoundSport Headphones,1,99.99,01/01/19 13:23,"208 Church St, New York City, NY 10001" +143097,34in Ultrawide Monitor,1,379.99,01/17/19 13:46,"382 Jefferson St, New York City, NY 10001" +143098,Macbook Pro Laptop,1,1700,01/21/19 19:16,"849 Pine St, San Francisco, CA 94016" +143099,AA Batteries (4-pack),1,3.84,01/20/19 06:45,"710 Ridge St, New York City, NY 10001" +143100,USB-C Charging Cable,1,11.95,01/04/19 19:11,"97 1st St, San Francisco, CA 94016" +143101,Wired Headphones,1,11.99,01/21/19 19:20,"740 13th St, New York City, NY 10001" +143102,AAA Batteries (4-pack),3,2.99,01/16/19 20:28,"929 Sunset St, Portland, OR 97035" +143103,Apple Airpods Headphones,1,150,01/08/19 19:35,"931 Spruce St, San Francisco, CA 94016" +143104,Wired Headphones,1,11.99,01/23/19 09:13,"82 5th St, Austin, TX 73301" +143105,AAA Batteries (4-pack),1,2.99,01/09/19 19:12,"837 12th St, San Francisco, CA 94016" +143106,USB-C Charging Cable,1,11.95,01/21/19 06:29,"398 Willow St, San Francisco, CA 94016" +143107,Apple Airpods Headphones,1,150,01/06/19 00:24,"40 River St, Los Angeles, CA 90001" +143108,AAA Batteries (4-pack),1,2.99,01/30/19 22:17,"243 14th St, Boston, MA 02215" +143109,AAA Batteries (4-pack),1,2.99,01/20/19 13:35,"806 Wilson St, Boston, MA 02215" +143110,Lightning Charging Cable,1,14.95,01/25/19 06:20,"779 Jefferson St, New York City, NY 10001" +143111,Lightning Charging Cable,1,14.95,01/14/19 00:08,"297 Spruce St, New York City, NY 10001" +143112,Google Phone,1,600,01/21/19 07:30,"671 Jefferson St, San Francisco, CA 94016" +143112,USB-C Charging Cable,2,11.95,01/21/19 07:30,"671 Jefferson St, San Francisco, CA 94016" +143113,AAA Batteries (4-pack),1,2.99,01/14/19 01:03,"885 Pine St, Los Angeles, CA 90001" +143114,Wired Headphones,1,11.99,01/06/19 18:42,"35 1st St, Los Angeles, CA 90001" +143115,34in Ultrawide Monitor,1,379.99,01/07/19 23:27,"408 South St, Los Angeles, CA 90001" +143116,AA Batteries (4-pack),1,3.84,01/20/19 19:42,"778 Spruce St, Austin, TX 73301" +143117,Bose SoundSport Headphones,1,99.99,01/28/19 09:26,"610 5th St, Atlanta, GA 30301" +143118,AA Batteries (4-pack),2,3.84,01/11/19 13:42,"706 Chestnut St, Boston, MA 02215" +143118,USB-C Charging Cable,1,11.95,01/11/19 13:42,"706 Chestnut St, Boston, MA 02215" +143119,AAA Batteries (4-pack),2,2.99,01/05/19 11:00,"528 Washington St, Dallas, TX 75001" +143120,Lightning Charging Cable,1,14.95,01/22/19 18:14,"412 Chestnut St, Atlanta, GA 30301" +143121,Apple Airpods Headphones,1,150,01/25/19 20:12,"591 Lincoln St, Dallas, TX 75001" +143122,27in 4K Gaming Monitor,1,389.99,01/15/19 11:49,"130 Cedar St, Los Angeles, CA 90001" +143123,34in Ultrawide Monitor,1,379.99,01/13/19 19:56,"246 Washington St, Dallas, TX 75001" +143124,AAA Batteries (4-pack),2,2.99,01/04/19 21:20,"604 6th St, San Francisco, CA 94016" +143125,USB-C Charging Cable,1,11.95,01/15/19 17:30,"815 Highland St, San Francisco, CA 94016" +143126,27in FHD Monitor,1,149.99,01/09/19 22:32,"987 7th St, Boston, MA 02215" +143127,AA Batteries (4-pack),1,3.84,01/22/19 11:53,"111 Jackson St, San Francisco, CA 94016" +143128,Google Phone,1,600,01/06/19 16:38,"821 Spruce St, San Francisco, CA 94016" +143128,USB-C Charging Cable,1,11.95,01/06/19 16:38,"821 Spruce St, San Francisco, CA 94016" +143128,Wired Headphones,1,11.99,01/06/19 16:38,"821 Spruce St, San Francisco, CA 94016" +143129,Lightning Charging Cable,1,14.95,01/06/19 20:46,"566 Church St, Portland, OR 97035" +143130,Apple Airpods Headphones,1,150,01/05/19 10:44,"776 Main St, San Francisco, CA 94016" +143131,27in FHD Monitor,1,149.99,01/24/19 00:26,"213 Spruce St, San Francisco, CA 94016" +143132,AAA Batteries (4-pack),1,2.99,01/28/19 11:11,"468 Cherry St, Boston, MA 02215" +143133,20in Monitor,1,109.99,01/28/19 14:06,"486 South St, San Francisco, CA 94016" +143134,AA Batteries (4-pack),2,3.84,01/10/19 21:42,"954 Jefferson St, Atlanta, GA 30301" +143135,Macbook Pro Laptop,1,1700,01/05/19 00:55,"805 South St, Boston, MA 02215" +143136,34in Ultrawide Monitor,1,379.99,01/18/19 13:36,"885 Chestnut St, New York City, NY 10001" +143137,AAA Batteries (4-pack),1,2.99,01/26/19 15:54,"311 10th St, San Francisco, CA 94016" +143138,Apple Airpods Headphones,1,150,01/01/19 13:05,"132 1st St, Atlanta, GA 30301" +143139,ThinkPad Laptop,1,999.99,01/07/19 14:54,"786 Lake St, San Francisco, CA 94016" +143140,Wired Headphones,1,11.99,01/27/19 07:51,"395 Hickory St, Atlanta, GA 30301" +143141,Apple Airpods Headphones,1,150,01/11/19 12:18,"724 8th St, Boston, MA 02215" +143142,Google Phone,1,600,01/05/19 09:07,"630 6th St, Los Angeles, CA 90001" +143143,Lightning Charging Cable,1,14.95,01/11/19 09:23,"255 Washington St, San Francisco, CA 94016" +143144,Flatscreen TV,1,300,01/18/19 09:41,"623 Lakeview St, San Francisco, CA 94016" +143145,20in Monitor,1,109.99,01/12/19 11:38,"703 Lincoln St, Los Angeles, CA 90001" +143146,Bose SoundSport Headphones,1,99.99,01/24/19 08:11,"491 Wilson St, New York City, NY 10001" +143147,AAA Batteries (4-pack),1,2.99,01/09/19 20:19,"460 Maple St, Los Angeles, CA 90001" +143147,AAA Batteries (4-pack),3,2.99,01/09/19 20:19,"460 Maple St, Los Angeles, CA 90001" +143148,Apple Airpods Headphones,1,150,01/20/19 10:20,"42 Lincoln St, Los Angeles, CA 90001" +143149,Flatscreen TV,1,300,01/17/19 17:51,"352 Highland St, New York City, NY 10001" +143150,Apple Airpods Headphones,1,150,01/26/19 11:52,"421 7th St, New York City, NY 10001" +,,,,, +143151,AA Batteries (4-pack),2,3.84,01/02/19 12:34,"790 13th St, New York City, NY 10001" +143152,Lightning Charging Cable,1,14.95,01/18/19 17:14,"579 South St, Los Angeles, CA 90001" +143153,27in FHD Monitor,1,149.99,01/10/19 09:52,"313 Wilson St, San Francisco, CA 94016" +143154,27in 4K Gaming Monitor,1,389.99,01/01/19 15:28,"139 Lakeview St, Austin, TX 73301" +143155,AAA Batteries (4-pack),2,2.99,01/06/19 21:52,"744 Lake St, New York City, NY 10001" +143156,Bose SoundSport Headphones,1,99.99,01/08/19 15:47,"50 Forest St, San Francisco, CA 94016" +143157,Wired Headphones,1,11.99,01/04/19 18:27,"868 Dogwood St, Seattle, WA 98101" +143158,Macbook Pro Laptop,1,1700,01/03/19 14:08,"959 Chestnut St, San Francisco, CA 94016" +143159,USB-C Charging Cable,1,11.95,01/14/19 15:05,"742 Johnson St, San Francisco, CA 94016" +143160,AAA Batteries (4-pack),1,2.99,01/30/19 13:33,"526 Cherry St, Austin, TX 73301" +143161,27in FHD Monitor,1,149.99,01/13/19 19:02,"872 10th St, San Francisco, CA 94016" +143162,Lightning Charging Cable,1,14.95,01/30/19 15:52,"295 Cedar St, Los Angeles, CA 90001" +143163,Lightning Charging Cable,1,14.95,01/10/19 16:39,"318 Park St, Dallas, TX 75001" +143164,AA Batteries (4-pack),1,3.84,01/02/19 10:53,"900 Dogwood St, Boston, MA 02215" +143165,Wired Headphones,1,11.99,01/10/19 09:30,"383 Center St, San Francisco, CA 94016" +143166,USB-C Charging Cable,2,11.95,01/13/19 20:31,"839 Highland St, Los Angeles, CA 90001" +143167,Bose SoundSport Headphones,1,99.99,01/23/19 21:57,"475 Maple St, Atlanta, GA 30301" +143168,iPhone,1,700,01/03/19 12:36,"845 Cedar St, Los Angeles, CA 90001" +143169,Lightning Charging Cable,1,14.95,01/19/19 08:14,"814 Hickory St, Atlanta, GA 30301" +143170,AAA Batteries (4-pack),1,2.99,01/07/19 19:16,"259 Sunset St, Boston, MA 02215" +143171,Bose SoundSport Headphones,1,99.99,01/17/19 07:29,"206 Highland St, New York City, NY 10001" +143172,27in FHD Monitor,1,149.99,01/29/19 21:41,"29 4th St, Dallas, TX 75001" +143173,Apple Airpods Headphones,1,150,01/22/19 14:12,"263 Maple St, San Francisco, CA 94016" +143174,27in 4K Gaming Monitor,1,389.99,01/13/19 16:30,"196 Lincoln St, Dallas, TX 75001" +143175,34in Ultrawide Monitor,1,379.99,01/30/19 21:02,"886 Washington St, Boston, MA 02215" +143176,Macbook Pro Laptop,1,1700,01/10/19 16:51,"609 South St, New York City, NY 10001" +143177,iPhone,1,700,01/22/19 08:43,"813 Lake St, Portland, OR 97035" +143178,Flatscreen TV,1,300,01/13/19 12:44,"533 Willow St, Portland, OR 97035" +143179,Wired Headphones,2,11.99,01/11/19 02:36,"534 River St, San Francisco, CA 94016" +143180,AAA Batteries (4-pack),1,2.99,01/29/19 13:46,"2 Park St, San Francisco, CA 94016" +143181,Lightning Charging Cable,1,14.95,01/22/19 18:00,"561 Hill St, Los Angeles, CA 90001" +143182,Apple Airpods Headphones,1,150,01/16/19 17:46,"451 Main St, Dallas, TX 75001" +143183,Apple Airpods Headphones,1,150,01/24/19 17:49,"487 Spruce St, Seattle, WA 98101" +143184,34in Ultrawide Monitor,1,379.99,01/25/19 11:46,"862 Hickory St, New York City, NY 10001" +143185,AA Batteries (4-pack),1,3.84,01/14/19 20:06,"777 Park St, San Francisco, CA 94016" +143186,Apple Airpods Headphones,1,150,01/02/19 12:08,"829 Dogwood St, San Francisco, CA 94016" +143187,USB-C Charging Cable,1,11.95,01/08/19 20:49,"246 10th St, Dallas, TX 75001" +143188,iPhone,1,700,01/03/19 21:05,"21 Sunset St, New York City, NY 10001" +143189,Lightning Charging Cable,1,14.95,01/08/19 20:55,"331 Church St, Los Angeles, CA 90001" +143190,Wired Headphones,1,11.99,01/20/19 19:28,"264 10th St, Boston, MA 02215" +143191,Flatscreen TV,1,300,01/29/19 22:47,"567 Lake St, Boston, MA 02215" +143192,Bose SoundSport Headphones,1,99.99,01/23/19 05:53,"197 Lake St, San Francisco, CA 94016" +143193,AAA Batteries (4-pack),1,2.99,01/27/19 15:01,"897 River St, Los Angeles, CA 90001" +143194,Apple Airpods Headphones,1,150,01/12/19 18:15,"674 Lincoln St, Boston, MA 02215" +143195,LG Washing Machine,1,600.0,01/23/19 23:57,"938 Sunset St, Portland, OR 97035" +143196,34in Ultrawide Monitor,1,379.99,01/01/19 19:38,"837 6th St, San Francisco, CA 94016" +143197,AA Batteries (4-pack),1,3.84,01/23/19 08:39,"223 Elm St, Boston, MA 02215" +143198,AA Batteries (4-pack),1,3.84,01/02/19 19:50,"837 Hill St, Los Angeles, CA 90001" +143199,27in FHD Monitor,1,149.99,01/21/19 22:45,"559 Park St, San Francisco, CA 94016" +143200,Wired Headphones,1,11.99,01/31/19 14:36,"441 Willow St, Atlanta, GA 30301" +143201,AAA Batteries (4-pack),2,2.99,01/17/19 19:59,"214 Willow St, San Francisco, CA 94016" +143202,20in Monitor,1,109.99,01/25/19 17:23,"668 Lakeview St, Seattle, WA 98101" +143203,Lightning Charging Cable,1,14.95,01/29/19 23:31,"343 Pine St, San Francisco, CA 94016" +143204,Bose SoundSport Headphones,1,99.99,01/21/19 09:48,"632 Washington St, New York City, NY 10001" +143205,Bose SoundSport Headphones,1,99.99,01/11/19 11:58,"646 6th St, Dallas, TX 75001" +143206,AAA Batteries (4-pack),3,2.99,01/05/19 00:02,"163 Sunset St, New York City, NY 10001" +143207,Apple Airpods Headphones,1,150,01/25/19 14:58,"938 Lakeview St, Atlanta, GA 30301" +143208,27in 4K Gaming Monitor,1,389.99,01/24/19 15:44,"383 9th St, Los Angeles, CA 90001" +143209,20in Monitor,1,109.99,01/20/19 18:11,"164 5th St, New York City, NY 10001" +143210,27in FHD Monitor,1,149.99,01/23/19 21:29,"993 Cedar St, New York City, NY 10001" +143211,27in 4K Gaming Monitor,1,389.99,01/09/19 23:21,"223 4th St, San Francisco, CA 94016" +143212,Wired Headphones,1,11.99,01/15/19 16:05,"374 Meadow St, New York City, NY 10001" +143213,Macbook Pro Laptop,1,1700,01/30/19 22:34,"610 Elm St, Los Angeles, CA 90001" +143214,USB-C Charging Cable,1,11.95,01/17/19 20:32,"241 Lake St, New York City, NY 10001" +143215,AAA Batteries (4-pack),1,2.99,01/20/19 13:25,"39 Lake St, Austin, TX 73301" +143216,Wired Headphones,1,11.99,01/02/19 19:05,"462 Chestnut St, San Francisco, CA 94016" +143217,Lightning Charging Cable,1,14.95,01/16/19 23:24,"896 Center St, Los Angeles, CA 90001" +143218,USB-C Charging Cable,1,11.95,01/06/19 10:17,"145 5th St, Atlanta, GA 30301" +143219,20in Monitor,1,109.99,01/03/19 00:35,"169 Church St, Los Angeles, CA 90001" +143220,USB-C Charging Cable,1,11.95,01/19/19 18:02,"386 Walnut St, Boston, MA 02215" +143221,Apple Airpods Headphones,1,150,01/22/19 09:27,"674 West St, Boston, MA 02215" +143222,Bose SoundSport Headphones,1,99.99,01/10/19 12:28,"136 Cherry St, Austin, TX 73301" +143223,Wired Headphones,1,11.99,01/18/19 15:17,"464 Meadow St, Dallas, TX 75001" +143224,AAA Batteries (4-pack),3,2.99,01/23/19 20:39,"899 Elm St, Atlanta, GA 30301" +143225,27in 4K Gaming Monitor,1,389.99,01/16/19 21:53,"943 9th St, Boston, MA 02215" +143226,AA Batteries (4-pack),1,3.84,01/04/19 17:48,"330 12th St, Atlanta, GA 30301" +143227,Bose SoundSport Headphones,1,99.99,01/22/19 10:17,"698 Dogwood St, San Francisco, CA 94016" +143228,Apple Airpods Headphones,1,150,01/03/19 17:56,"709 River St, Atlanta, GA 30301" +143229,USB-C Charging Cable,1,11.95,01/22/19 13:51,"155 Willow St, San Francisco, CA 94016" +143230,AAA Batteries (4-pack),1,2.99,01/10/19 20:03,"353 Madison St, Boston, MA 02215" +143231,20in Monitor,1,109.99,01/24/19 22:10,"416 1st St, Boston, MA 02215" +143232,Wired Headphones,2,11.99,01/24/19 18:00,"431 Willow St, Atlanta, GA 30301" +143233,Lightning Charging Cable,1,14.95,01/06/19 11:46,"815 6th St, Austin, TX 73301" +143234,Bose SoundSport Headphones,1,99.99,01/16/19 13:26,"221 Maple St, Boston, MA 02215" +143235,Wired Headphones,1,11.99,01/27/19 17:39,"490 Dogwood St, Austin, TX 73301" +143236,AAA Batteries (4-pack),2,2.99,01/11/19 20:28,"143 Adams St, Portland, ME 04101" +143237,Flatscreen TV,1,300,01/06/19 10:08,"677 Park St, San Francisco, CA 94016" +143238,Lightning Charging Cable,1,14.95,01/10/19 09:10,"161 Forest St, San Francisco, CA 94016" +143239,Vareebadd Phone,1,400,01/20/19 07:05,"23 1st St, Portland, OR 97035" +143240,AA Batteries (4-pack),1,3.84,01/12/19 17:09,"660 Lake St, Portland, ME 04101" +143241,Lightning Charging Cable,1,14.95,01/29/19 22:20,"638 South St, Dallas, TX 75001" +143242,AA Batteries (4-pack),1,3.84,01/25/19 22:37,"301 Meadow St, New York City, NY 10001" +143243,iPhone,1,700,01/09/19 20:24,"836 13th St, Los Angeles, CA 90001" +143244,AA Batteries (4-pack),1,3.84,01/10/19 20:44,"792 8th St, Los Angeles, CA 90001" +143245,Lightning Charging Cable,1,14.95,01/31/19 14:21,"329 Ridge St, Dallas, TX 75001" +143246,Wired Headphones,1,11.99,01/13/19 15:12,"235 Willow St, Seattle, WA 98101" +143247,Lightning Charging Cable,1,14.95,01/05/19 12:22,"836 12th St, Los Angeles, CA 90001" +143248,Bose SoundSport Headphones,1,99.99,01/20/19 11:55,"304 Wilson St, Atlanta, GA 30301" +143249,Wired Headphones,1,11.99,01/28/19 12:05,"869 13th St, Boston, MA 02215" +143250,27in FHD Monitor,1,149.99,01/03/19 14:49,"448 10th St, Los Angeles, CA 90001" +143251,USB-C Charging Cable,1,11.95,01/15/19 09:19,"290 Johnson St, San Francisco, CA 94016" +143252,AA Batteries (4-pack),1,3.84,01/28/19 23:24,"159 Sunset St, Atlanta, GA 30301" +143253,Wired Headphones,1,11.99,01/11/19 15:03,"663 Center St, San Francisco, CA 94016" +143254,Google Phone,1,600,01/16/19 14:02,"800 Meadow St, San Francisco, CA 94016" +143254,USB-C Charging Cable,1,11.95,01/16/19 14:02,"800 Meadow St, San Francisco, CA 94016" +143255,Flatscreen TV,1,300,01/28/19 23:07,"581 Chestnut St, New York City, NY 10001" +143256,Lightning Charging Cable,1,14.95,01/21/19 17:04,"399 10th St, Portland, OR 97035" +143257,27in FHD Monitor,1,149.99,01/26/19 08:59,"243 Washington St, Portland, OR 97035" +143258,Apple Airpods Headphones,1,150,01/10/19 19:49,"10 West St, Dallas, TX 75001" +143259,Apple Airpods Headphones,1,150,01/12/19 13:32,"99 Lake St, San Francisco, CA 94016" +143260,Apple Airpods Headphones,1,150,01/27/19 03:07,"530 Johnson St, Seattle, WA 98101" +143261,ThinkPad Laptop,1,999.99,01/24/19 17:11,"873 Maple St, Los Angeles, CA 90001" +143262,Apple Airpods Headphones,1,150,01/10/19 10:39,"112 Hickory St, Los Angeles, CA 90001" +143263,Wired Headphones,1,11.99,01/24/19 12:43,"182 West St, Seattle, WA 98101" +143264,Lightning Charging Cable,1,14.95,01/24/19 16:52,"452 West St, Austin, TX 73301" +143265,iPhone,1,700,01/11/19 11:38,"964 Lakeview St, Boston, MA 02215" +143265,Wired Headphones,1,11.99,01/11/19 11:38,"964 Lakeview St, Boston, MA 02215" +143266,Wired Headphones,1,11.99,01/24/19 16:22,"528 River St, Atlanta, GA 30301" +143267,USB-C Charging Cable,1,11.95,01/03/19 16:51,"601 6th St, Dallas, TX 75001" +143268,27in 4K Gaming Monitor,1,389.99,01/18/19 23:50,"217 8th St, Austin, TX 73301" +143269,AAA Batteries (4-pack),1,2.99,01/12/19 09:08,"12 Elm St, Los Angeles, CA 90001" +143270,Lightning Charging Cable,2,14.95,01/31/19 17:27,"548 Walnut St, San Francisco, CA 94016" +143271,Google Phone,1,600,01/27/19 10:02,"508 Cherry St, San Francisco, CA 94016" +143272,Google Phone,1,600,01/11/19 00:11,"662 Ridge St, Boston, MA 02215" +143273,iPhone,1,700,01/20/19 18:20,"204 Ridge St, Boston, MA 02215" +143273,Apple Airpods Headphones,1,150,01/20/19 18:20,"204 Ridge St, Boston, MA 02215" +143274,27in FHD Monitor,1,149.99,01/31/19 13:13,"996 Madison St, New York City, NY 10001" +143275,Lightning Charging Cable,1,14.95,01/08/19 17:41,"638 Dogwood St, Los Angeles, CA 90001" +143276,AA Batteries (4-pack),1,3.84,01/11/19 09:02,"804 9th St, Dallas, TX 75001" +143277,Bose SoundSport Headphones,1,99.99,01/10/19 16:43,"668 1st St, Los Angeles, CA 90001" +143278,Wired Headphones,1,11.99,01/03/19 21:23,"42 North St, San Francisco, CA 94016" +143279,iPhone,1,700,01/29/19 11:22,"293 Cedar St, Los Angeles, CA 90001" +143280,AA Batteries (4-pack),1,3.84,01/01/19 08:40,"146 Dogwood St, San Francisco, CA 94016" +143281,27in FHD Monitor,1,149.99,01/04/19 14:24,"769 Church St, Seattle, WA 98101" +143282,AAA Batteries (4-pack),1,2.99,01/23/19 16:48,"558 Madison St, Boston, MA 02215" +143283,AA Batteries (4-pack),2,3.84,01/22/19 12:53,"821 Jefferson St, Portland, OR 97035" +143284,iPhone,1,700,01/19/19 21:50,"231 11th St, New York City, NY 10001" +143285,AAA Batteries (4-pack),1,2.99,01/25/19 06:08,"730 West St, Los Angeles, CA 90001" +143286,USB-C Charging Cable,1,11.95,01/26/19 12:29,"763 Ridge St, Boston, MA 02215" +143287,Wired Headphones,1,11.99,01/10/19 12:45,"416 North St, New York City, NY 10001" +143288,Bose SoundSport Headphones,1,99.99,01/09/19 13:27,"203 River St, Atlanta, GA 30301" +143289,AAA Batteries (4-pack),1,2.99,01/17/19 19:49,"304 South St, Los Angeles, CA 90001" +143290,Lightning Charging Cable,1,14.95,01/15/19 17:03,"133 5th St, Los Angeles, CA 90001" +143291,AAA Batteries (4-pack),1,2.99,01/03/19 17:44,"546 Cedar St, San Francisco, CA 94016" +143292,Lightning Charging Cable,1,14.95,01/11/19 10:08,"954 Spruce St, Los Angeles, CA 90001" +143293,AAA Batteries (4-pack),2,2.99,01/16/19 18:40,"279 Sunset St, Boston, MA 02215" +143294,AAA Batteries (4-pack),2,2.99,01/12/19 13:16,"467 Madison St, Portland, OR 97035" +143295,Flatscreen TV,1,300,01/12/19 23:10,"309 North St, Los Angeles, CA 90001" +143296,27in FHD Monitor,1,149.99,01/21/19 16:55,"789 14th St, Los Angeles, CA 90001" +143297,Lightning Charging Cable,1,14.95,01/12/19 19:51,"341 Madison St, San Francisco, CA 94016" +143298,Wired Headphones,1,11.99,01/12/19 09:22,"420 Church St, San Francisco, CA 94016" +143299,Macbook Pro Laptop,1,1700,01/18/19 15:50,"961 11th St, Dallas, TX 75001" +143300,AA Batteries (4-pack),2,3.84,01/03/19 00:47,"700 Center St, New York City, NY 10001" +143301,USB-C Charging Cable,1,11.95,01/02/19 19:34,"936 Elm St, San Francisco, CA 94016" +143302,Apple Airpods Headphones,1,150,01/27/19 14:43,"435 Wilson St, Seattle, WA 98101" +143303,AA Batteries (4-pack),1,3.84,01/09/19 22:50,"359 Cherry St, Dallas, TX 75001" +143304,Apple Airpods Headphones,1,150,01/24/19 16:40,"474 4th St, Atlanta, GA 30301" +143305,34in Ultrawide Monitor,1,379.99,01/27/19 17:42,"565 Johnson St, Boston, MA 02215" +143306,Apple Airpods Headphones,1,150,01/31/19 10:17,"266 Main St, New York City, NY 10001" +143307,Wired Headphones,1,11.99,01/05/19 19:52,"386 Cherry St, Seattle, WA 98101" +143308,Lightning Charging Cable,1,14.95,01/01/19 10:56,"203 11th St, San Francisco, CA 94016" +143308,AAA Batteries (4-pack),2,2.99,01/01/19 10:56,"203 11th St, San Francisco, CA 94016" +143309,Google Phone,1,600,01/07/19 14:28,"503 2nd St, Seattle, WA 98101" +143310,Wired Headphones,1,11.99,01/06/19 19:54,"5 7th St, San Francisco, CA 94016" +143311,Bose SoundSport Headphones,1,99.99,01/09/19 11:34,"629 Jackson St, San Francisco, CA 94016" +143312,Lightning Charging Cable,1,14.95,01/10/19 17:45,"295 Hill St, New York City, NY 10001" +143313,AA Batteries (4-pack),1,3.84,01/26/19 18:58,"149 Johnson St, Austin, TX 73301" +143314,AA Batteries (4-pack),1,3.84,01/15/19 21:23,"375 5th St, Boston, MA 02215" +143315,USB-C Charging Cable,1,11.95,01/23/19 18:15,"112 8th St, Austin, TX 73301" +143316,USB-C Charging Cable,1,11.95,01/16/19 23:01,"551 4th St, Portland, OR 97035" +143317,Bose SoundSport Headphones,1,99.99,01/22/19 19:41,"503 Pine St, Austin, TX 73301" +143318,AAA Batteries (4-pack),1,2.99,01/19/19 23:02,"325 Johnson St, San Francisco, CA 94016" +143319,USB-C Charging Cable,1,11.95,01/18/19 20:18,"998 Walnut St, San Francisco, CA 94016" +143320,USB-C Charging Cable,1,11.95,01/20/19 10:30,"365 7th St, San Francisco, CA 94016" +143321,Macbook Pro Laptop,1,1700,01/31/19 13:20,"982 Jefferson St, New York City, NY 10001" +143322,USB-C Charging Cable,1,11.95,01/02/19 03:27,"538 Spruce St, Portland, OR 97035" +143323,27in FHD Monitor,1,149.99,01/10/19 20:41,"880 9th St, Los Angeles, CA 90001" +143324,Macbook Pro Laptop,1,1700,01/23/19 23:20,"87 Johnson St, Portland, OR 97035" +143325,USB-C Charging Cable,1,11.95,01/09/19 14:02,"968 Center St, Portland, OR 97035" +143326,Bose SoundSport Headphones,1,99.99,01/31/19 10:48,"415 North St, Seattle, WA 98101" +143327,AAA Batteries (4-pack),1,2.99,01/16/19 08:23,"540 Church St, New York City, NY 10001" +143328,AAA Batteries (4-pack),1,2.99,01/18/19 19:12,"176 Willow St, Dallas, TX 75001" +143329,AA Batteries (4-pack),1,3.84,01/01/19 10:14,"775 Cedar St, Portland, OR 97035" +143330,27in FHD Monitor,1,149.99,01/18/19 17:49,"964 West St, Boston, MA 02215" +143331,Bose SoundSport Headphones,1,99.99,01/24/19 16:24,"492 Chestnut St, San Francisco, CA 94016" +143332,27in FHD Monitor,1,149.99,01/11/19 15:02,"497 10th St, San Francisco, CA 94016" +143333,USB-C Charging Cable,1,11.95,01/06/19 14:05,"170 10th St, New York City, NY 10001" +143334,AA Batteries (4-pack),1,3.84,01/03/19 20:26,"480 Meadow St, Dallas, TX 75001" +143335,Apple Airpods Headphones,1,150,01/06/19 16:24,"182 12th St, Los Angeles, CA 90001" +143336,ThinkPad Laptop,1,999.99,01/10/19 15:24,"889 8th St, San Francisco, CA 94016" +143337,AAA Batteries (4-pack),1,2.99,01/24/19 09:43,"468 Jefferson St, Boston, MA 02215" +143338,AAA Batteries (4-pack),6,2.99,01/16/19 13:38,"390 Ridge St, San Francisco, CA 94016" +143339,Lightning Charging Cable,1,14.95,01/24/19 07:16,"125 Willow St, San Francisco, CA 94016" +143340,AA Batteries (4-pack),1,3.84,01/01/19 15:04,"427 Lincoln St, Atlanta, GA 30301" +143341,Google Phone,1,600,01/22/19 17:43,"541 Willow St, Dallas, TX 75001" +143341,USB-C Charging Cable,1,11.95,01/22/19 17:43,"541 Willow St, Dallas, TX 75001" +143342,AA Batteries (4-pack),1,3.84,01/08/19 05:41,"127 Meadow St, Atlanta, GA 30301" +143343,AAA Batteries (4-pack),1,2.99,01/15/19 08:50,"885 Pine St, Los Angeles, CA 90001" +143344,USB-C Charging Cable,1,11.95,01/05/19 22:54,"763 Pine St, Atlanta, GA 30301" +143345,USB-C Charging Cable,1,11.95,01/03/19 12:05,"355 Main St, San Francisco, CA 94016" +143346,USB-C Charging Cable,1,11.95,01/13/19 19:00,"408 North St, San Francisco, CA 94016" +143347,iPhone,1,700,01/12/19 07:45,"197 Hill St, Portland, OR 97035" +143348,Bose SoundSport Headphones,1,99.99,01/27/19 17:23,"497 Lincoln St, Seattle, WA 98101" +143349,Wired Headphones,1,11.99,01/13/19 19:08,"388 2nd St, New York City, NY 10001" +143350,Lightning Charging Cable,1,14.95,01/17/19 20:02,"813 Forest St, New York City, NY 10001" +143351,Macbook Pro Laptop,1,1700,01/12/19 15:20,"481 5th St, Boston, MA 02215" +143352,AA Batteries (4-pack),1,3.84,01/27/19 18:05,"269 Lincoln St, New York City, NY 10001" +143353,27in FHD Monitor,1,149.99,01/19/19 10:17,"594 13th St, San Francisco, CA 94016" +143354,Flatscreen TV,1,300,01/27/19 15:10,"501 14th St, Portland, OR 97035" +143355,Lightning Charging Cable,1,14.95,01/29/19 10:21,"892 Wilson St, Seattle, WA 98101" +143356,Lightning Charging Cable,1,14.95,01/18/19 14:29,"489 7th St, Atlanta, GA 30301" +143357,AA Batteries (4-pack),1,3.84,01/13/19 14:29,"753 Hickory St, San Francisco, CA 94016" +143358,AAA Batteries (4-pack),1,2.99,01/06/19 10:33,"708 Ridge St, Boston, MA 02215" +143359,27in 4K Gaming Monitor,1,389.99,01/11/19 14:34,"784 Elm St, New York City, NY 10001" +143360,Wired Headphones,1,11.99,01/20/19 12:23,"63 Hickory St, New York City, NY 10001" +143361,Apple Airpods Headphones,1,150,01/11/19 12:30,"503 Center St, San Francisco, CA 94016" +143362,USB-C Charging Cable,1,11.95,01/04/19 07:06,"429 5th St, Boston, MA 02215" +143363,Lightning Charging Cable,1,14.95,01/12/19 12:09,"256 12th St, Seattle, WA 98101" +143364,Lightning Charging Cable,1,14.95,01/04/19 10:45,"400 Forest St, Atlanta, GA 30301" +143365,AAA Batteries (4-pack),1,2.99,01/24/19 13:50,"317 Hickory St, Austin, TX 73301" +143366,AAA Batteries (4-pack),1,2.99,01/18/19 16:51,"111 Hill St, San Francisco, CA 94016" +143367,AA Batteries (4-pack),1,3.84,01/13/19 13:32,"467 Cherry St, Dallas, TX 75001" +143368,27in 4K Gaming Monitor,1,389.99,01/14/19 13:37,"564 West St, San Francisco, CA 94016" +143369,27in 4K Gaming Monitor,1,389.99,01/03/19 23:43,"42 Hickory St, Boston, MA 02215" +143370,Bose SoundSport Headphones,1,99.99,01/30/19 14:43,"752 Ridge St, San Francisco, CA 94016" +143371,Apple Airpods Headphones,1,150,01/31/19 06:43,"336 Church St, Atlanta, GA 30301" +143372,AA Batteries (4-pack),1,3.84,01/17/19 19:10,"898 West St, Seattle, WA 98101" +143373,USB-C Charging Cable,1,11.95,01/31/19 07:04,"420 7th St, Seattle, WA 98101" +143374,Lightning Charging Cable,1,14.95,01/10/19 22:16,"416 Highland St, Boston, MA 02215" +143375,Apple Airpods Headphones,1,150,01/01/19 11:49,"461 Sunset St, Atlanta, GA 30301" +143376,AA Batteries (4-pack),1,3.84,01/15/19 13:06,"408 Church St, Boston, MA 02215" +143377,Bose SoundSport Headphones,1,99.99,01/10/19 16:46,"924 Washington St, Austin, TX 73301" +143378,USB-C Charging Cable,1,11.95,01/02/19 22:33,"725 River St, Austin, TX 73301" +143379,27in 4K Gaming Monitor,1,389.99,01/07/19 11:32,"806 Washington St, San Francisco, CA 94016" +143380,27in FHD Monitor,1,149.99,01/25/19 18:08,"280 Dogwood St, Los Angeles, CA 90001" +143381,Google Phone,1,600,01/14/19 21:46,"235 7th St, Atlanta, GA 30301" +143382,Wired Headphones,1,11.99,01/27/19 18:03,"456 Center St, San Francisco, CA 94016" +143383,20in Monitor,1,109.99,01/11/19 22:03,"898 8th St, Los Angeles, CA 90001" +143384,LG Dryer,1,600.0,01/23/19 23:43,"150 10th St, Los Angeles, CA 90001" +143385,Apple Airpods Headphones,1,150,01/20/19 14:31,"847 Walnut St, Austin, TX 73301" +143386,20in Monitor,1,109.99,01/28/19 21:39,"797 Elm St, Seattle, WA 98101" +143387,Lightning Charging Cable,1,14.95,01/30/19 09:18,"712 2nd St, San Francisco, CA 94016" +143388,Apple Airpods Headphones,1,150,01/31/19 20:06,"288 Adams St, Los Angeles, CA 90001" +143389,Wired Headphones,1,11.99,01/04/19 22:47,"619 8th St, Boston, MA 02215" +143390,Bose SoundSport Headphones,1,99.99,01/08/19 23:28,"351 8th St, San Francisco, CA 94016" +143391,AAA Batteries (4-pack),1,2.99,01/02/19 11:47,"447 Cedar St, San Francisco, CA 94016" +143392,Flatscreen TV,1,300,01/05/19 20:13,"631 North St, San Francisco, CA 94016" +143393,Lightning Charging Cable,2,14.95,01/16/19 12:29,"212 13th St, San Francisco, CA 94016" +143394,Apple Airpods Headphones,1,150,01/12/19 19:11,"200 6th St, Seattle, WA 98101" +143395,AAA Batteries (4-pack),2,2.99,01/09/19 21:00,"586 Walnut St, Boston, MA 02215" +143396,Apple Airpods Headphones,1,150,01/02/19 15:29,"612 14th St, Atlanta, GA 30301" +143397,AAA Batteries (4-pack),1,2.99,01/15/19 19:49,"430 North St, Seattle, WA 98101" +143398,USB-C Charging Cable,1,11.95,01/28/19 21:55,"298 1st St, San Francisco, CA 94016" +143399,Vareebadd Phone,1,400,01/03/19 00:30,"553 Chestnut St, Portland, OR 97035" +143399,Wired Headphones,2,11.99,01/03/19 00:30,"553 Chestnut St, Portland, OR 97035" +143400,Lightning Charging Cable,1,14.95,01/15/19 22:44,"553 Adams St, Los Angeles, CA 90001" +143401,27in 4K Gaming Monitor,1,389.99,01/23/19 12:30,"862 5th St, New York City, NY 10001" +143402,Macbook Pro Laptop,1,1700,01/29/19 09:07,"531 6th St, Dallas, TX 75001" +143403,USB-C Charging Cable,1,11.95,01/07/19 17:25,"985 Park St, Portland, OR 97035" +143404,27in FHD Monitor,1,149.99,01/12/19 13:20,"185 8th St, Portland, OR 97035" +143405,AAA Batteries (4-pack),1,2.99,01/18/19 11:21,"501 Chestnut St, Boston, MA 02215" +143406,20in Monitor,1,109.99,01/05/19 22:47,"928 Sunset St, Dallas, TX 75001" +143407,Apple Airpods Headphones,1,150,01/30/19 12:43,"318 7th St, Boston, MA 02215" +143408,27in 4K Gaming Monitor,1,389.99,01/17/19 21:38,"106 7th St, San Francisco, CA 94016" +143409,Google Phone,1,600,01/10/19 13:10,"471 Hill St, San Francisco, CA 94016" +143410,Flatscreen TV,1,300,01/08/19 14:40,"431 North St, Atlanta, GA 30301" +143411,AA Batteries (4-pack),2,3.84,01/12/19 19:19,"445 Johnson St, Los Angeles, CA 90001" +143412,USB-C Charging Cable,1,11.95,01/11/19 19:43,"139 Cedar St, Los Angeles, CA 90001" +143413,Lightning Charging Cable,1,14.95,01/12/19 14:14,"429 11th St, Boston, MA 02215" +143414,USB-C Charging Cable,1,11.95,01/03/19 17:13,"776 Jackson St, Atlanta, GA 30301" +143415,Lightning Charging Cable,1,14.95,01/22/19 23:39,"515 2nd St, Los Angeles, CA 90001" +143416,20in Monitor,1,109.99,01/14/19 15:14,"518 North St, San Francisco, CA 94016" +143417,iPhone,1,700,01/18/19 19:50,"804 7th St, New York City, NY 10001" +143418,Macbook Pro Laptop,1,1700,01/21/19 21:12,"594 Ridge St, Los Angeles, CA 90001" +143419,27in FHD Monitor,1,149.99,01/28/19 08:41,"566 South St, Seattle, WA 98101" +143420,iPhone,1,700,01/31/19 14:30,"444 2nd St, Los Angeles, CA 90001" +143421,34in Ultrawide Monitor,1,379.99,01/24/19 07:33,"82 Pine St, Boston, MA 02215" +143422,27in 4K Gaming Monitor,1,389.99,01/09/19 12:49,"29 Johnson St, Los Angeles, CA 90001" +143423,USB-C Charging Cable,1,11.95,01/19/19 13:30,"356 Maple St, Los Angeles, CA 90001" +143424,AA Batteries (4-pack),2,3.84,01/07/19 19:46,"454 8th St, Dallas, TX 75001" +143425,AAA Batteries (4-pack),1,2.99,01/15/19 22:41,"118 Cedar St, Dallas, TX 75001" +143426,Wired Headphones,2,11.99,01/16/19 13:48,"973 11th St, Los Angeles, CA 90001" +143427,iPhone,1,700,01/03/19 21:11,"375 Elm St, San Francisco, CA 94016" +143428,Vareebadd Phone,1,400,01/11/19 16:23,"242 Lakeview St, New York City, NY 10001" +143429,27in FHD Monitor,1,149.99,01/31/19 10:31,"682 Walnut St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +143430,Wired Headphones,1,11.99,01/22/19 09:37,"695 Cedar St, San Francisco, CA 94016" +143431,Lightning Charging Cable,1,14.95,01/08/19 19:09,"862 Meadow St, Atlanta, GA 30301" +143432,USB-C Charging Cable,1,11.95,01/02/19 02:19,"923 12th St, Atlanta, GA 30301" +143433,USB-C Charging Cable,1,11.95,01/01/19 09:27,"78 Adams St, Los Angeles, CA 90001" +143434,27in FHD Monitor,1,149.99,01/14/19 14:06,"285 Wilson St, San Francisco, CA 94016" +143435,Lightning Charging Cable,1,14.95,01/19/19 19:28,"493 Sunset St, Austin, TX 73301" +143436,27in FHD Monitor,1,149.99,01/24/19 12:28,"897 Washington St, Boston, MA 02215" +143437,USB-C Charging Cable,1,11.95,01/11/19 18:25,"955 Lincoln St, Austin, TX 73301" +143438,Flatscreen TV,1,300,01/05/19 11:28,"755 Jackson St, Boston, MA 02215" +143439,Flatscreen TV,1,300,01/01/19 19:30,"113 River St, Dallas, TX 75001" +143440,AAA Batteries (4-pack),1,2.99,01/26/19 14:56,"447 8th St, Austin, TX 73301" +143441,AA Batteries (4-pack),1,3.84,01/02/19 15:16,"817 Hill St, Boston, MA 02215" +143442,ThinkPad Laptop,1,999.99,01/22/19 10:06,"385 South St, Los Angeles, CA 90001" +143443,Wired Headphones,1,11.99,01/20/19 17:36,"470 River St, Austin, TX 73301" +143444,Apple Airpods Headphones,1,150,01/29/19 11:01,"291 11th St, New York City, NY 10001" +143444,Apple Airpods Headphones,1,150,01/29/19 11:01,"291 11th St, New York City, NY 10001" +143445,Wired Headphones,1,11.99,01/26/19 18:52,"858 Maple St, New York City, NY 10001" +143446,Flatscreen TV,1,300,01/23/19 21:11,"257 Hill St, Atlanta, GA 30301" +143447,Bose SoundSport Headphones,1,99.99,01/09/19 07:50,"28 Hill St, Dallas, TX 75001" +143447,Wired Headphones,1,11.99,01/09/19 07:50,"28 Hill St, Dallas, TX 75001" +143448,USB-C Charging Cable,1,11.95,01/30/19 16:13,"705 Johnson St, Atlanta, GA 30301" +143449,ThinkPad Laptop,1,999.99,01/26/19 09:38,"869 Lakeview St, Los Angeles, CA 90001" +143450,Wired Headphones,1,11.99,01/20/19 10:20,"806 Ridge St, Austin, TX 73301" +143451,27in 4K Gaming Monitor,1,389.99,01/16/19 16:47,"382 South St, Austin, TX 73301" +143452,USB-C Charging Cable,1,11.95,01/10/19 19:20,"236 Lake St, Dallas, TX 75001" +143453,Apple Airpods Headphones,1,150,01/10/19 03:52,"321 Willow St, Dallas, TX 75001" +143454,Lightning Charging Cable,1,14.95,01/08/19 12:08,"761 14th St, Boston, MA 02215" +143455,Macbook Pro Laptop,1,1700,01/08/19 15:12,"470 9th St, San Francisco, CA 94016" +143456,ThinkPad Laptop,1,999.99,01/23/19 10:00,"232 Hickory St, Los Angeles, CA 90001" +143457,Google Phone,1,600,01/24/19 17:11,"69 Ridge St, New York City, NY 10001" +143458,Wired Headphones,1,11.99,01/11/19 20:42,"634 Jefferson St, Boston, MA 02215" +143459,Apple Airpods Headphones,1,150,01/06/19 14:10,"593 Meadow St, Los Angeles, CA 90001" +143460,USB-C Charging Cable,1,11.95,01/04/19 12:19,"115 Chestnut St, San Francisco, CA 94016" +143461,Bose SoundSport Headphones,1,99.99,01/01/19 20:25,"357 River St, Boston, MA 02215" +143462,34in Ultrawide Monitor,1,379.99,01/12/19 15:30,"199 Maple St, San Francisco, CA 94016" +,,,,, +143463,27in FHD Monitor,1,149.99,01/31/19 12:37,"538 Adams St, San Francisco, CA 94016" +143464,Macbook Pro Laptop,1,1700,01/30/19 18:31,"922 Ridge St, Seattle, WA 98101" +143465,USB-C Charging Cable,1,11.95,01/29/19 15:55,"556 Spruce St, Boston, MA 02215" +143466,USB-C Charging Cable,1,11.95,01/06/19 17:29,"205 Willow St, San Francisco, CA 94016" +143467,USB-C Charging Cable,2,11.95,01/18/19 21:18,"244 Chestnut St, New York City, NY 10001" +143468,Bose SoundSport Headphones,1,99.99,01/06/19 22:13,"745 7th St, San Francisco, CA 94016" +143469,AA Batteries (4-pack),1,3.84,01/14/19 12:42,"996 Meadow St, Dallas, TX 75001" +143469,AA Batteries (4-pack),1,3.84,01/14/19 12:42,"996 Meadow St, Dallas, TX 75001" +143470,Apple Airpods Headphones,1,150,01/04/19 20:57,"30 West St, Seattle, WA 98101" +143471,Wired Headphones,1,11.99,01/23/19 19:52,"207 2nd St, Portland, OR 97035" +143472,USB-C Charging Cable,1,11.95,01/30/19 08:18,"611 Forest St, San Francisco, CA 94016" +143473,iPhone,1,700,01/16/19 19:17,"161 Walnut St, Dallas, TX 75001" +143474,Lightning Charging Cable,1,14.95,01/17/19 20:44,"9 Adams St, San Francisco, CA 94016" +143475,Bose SoundSport Headphones,1,99.99,01/25/19 08:44,"944 Cedar St, Boston, MA 02215" +143476,Wired Headphones,1,11.99,01/06/19 02:01,"388 10th St, San Francisco, CA 94016" +143477,iPhone,1,700,01/23/19 17:36,"371 Sunset St, Los Angeles, CA 90001" +143478,ThinkPad Laptop,1,999.99,01/25/19 04:56,"546 Adams St, San Francisco, CA 94016" +143479,Wired Headphones,1,11.99,01/14/19 21:06,"618 South St, San Francisco, CA 94016" +143480,Wired Headphones,1,11.99,01/02/19 20:26,"522 Main St, San Francisco, CA 94016" +143481,AAA Batteries (4-pack),1,2.99,01/09/19 13:53,"273 Cherry St, New York City, NY 10001" +143482,AAA Batteries (4-pack),2,2.99,01/10/19 19:18,"815 Meadow St, Portland, OR 97035" +143483,Apple Airpods Headphones,1,150,01/06/19 17:22,"126 Forest St, San Francisco, CA 94016" +143484,Bose SoundSport Headphones,1,99.99,01/13/19 18:37,"987 Jefferson St, Dallas, TX 75001" +143485,USB-C Charging Cable,1,11.95,01/09/19 11:50,"766 Cedar St, Los Angeles, CA 90001" +143486,USB-C Charging Cable,1,11.95,01/22/19 00:39,"603 Johnson St, Boston, MA 02215" +143487,USB-C Charging Cable,1,11.95,01/17/19 22:01,"983 Adams St, Los Angeles, CA 90001" +143488,Wired Headphones,1,11.99,01/05/19 20:25,"635 Dogwood St, Boston, MA 02215" +143489,Bose SoundSport Headphones,1,99.99,01/18/19 05:38,"766 Highland St, New York City, NY 10001" +143490,AA Batteries (4-pack),1,3.84,01/19/19 19:05,"737 Cherry St, Los Angeles, CA 90001" +143491,Bose SoundSport Headphones,1,99.99,01/22/19 13:35,"835 South St, New York City, NY 10001" +143492,USB-C Charging Cable,1,11.95,01/11/19 13:02,"223 Hill St, San Francisco, CA 94016" +143493,AAA Batteries (4-pack),1,2.99,01/01/19 11:32,"395 Cherry St, Dallas, TX 75001" +143494,AA Batteries (4-pack),1,3.84,01/17/19 12:32,"611 Maple St, Los Angeles, CA 90001" +143495,34in Ultrawide Monitor,1,379.99,01/30/19 15:48,"230 Wilson St, Austin, TX 73301" +143496,Lightning Charging Cable,1,14.95,01/29/19 20:51,"248 Chestnut St, Los Angeles, CA 90001" +143497,Apple Airpods Headphones,1,150,01/09/19 18:43,"643 13th St, San Francisco, CA 94016" +143498,27in FHD Monitor,1,149.99,01/04/19 20:50,"136 11th St, Los Angeles, CA 90001" +143499,27in 4K Gaming Monitor,1,389.99,01/14/19 12:38,"251 Jefferson St, Atlanta, GA 30301" +143500,27in FHD Monitor,1,149.99,01/27/19 08:19,"128 Spruce St, New York City, NY 10001" +143501,20in Monitor,1,109.99,01/21/19 20:45,"428 13th St, Los Angeles, CA 90001" +143502,USB-C Charging Cable,1,11.95,01/15/19 22:07,"701 Meadow St, San Francisco, CA 94016" +143503,27in FHD Monitor,1,149.99,01/13/19 13:00,"47 Main St, San Francisco, CA 94016" +143504,USB-C Charging Cable,1,11.95,01/15/19 08:43,"565 Lincoln St, Los Angeles, CA 90001" +143505,Apple Airpods Headphones,1,150,01/22/19 20:16,"876 Jefferson St, New York City, NY 10001" +143506,Lightning Charging Cable,2,14.95,01/13/19 00:16,"28 10th St, New York City, NY 10001" +143507,AAA Batteries (4-pack),1,2.99,01/21/19 17:33,"276 4th St, New York City, NY 10001" +143508,Wired Headphones,1,11.99,01/14/19 14:54,"439 River St, Atlanta, GA 30301" +143509,ThinkPad Laptop,1,999.99,01/14/19 13:19,"660 River St, Boston, MA 02215" +143510,ThinkPad Laptop,1,999.99,01/29/19 07:01,"880 Hickory St, Atlanta, GA 30301" +143511,Wired Headphones,1,11.99,01/09/19 23:38,"465 13th St, Atlanta, GA 30301" +143512,AAA Batteries (4-pack),3,2.99,01/07/19 08:17,"694 Highland St, Boston, MA 02215" +143513,AAA Batteries (4-pack),3,2.99,01/12/19 13:14,"721 Jefferson St, Boston, MA 02215" +143514,Apple Airpods Headphones,1,150,01/28/19 12:29,"546 6th St, New York City, NY 10001" +143515,Lightning Charging Cable,1,14.95,01/02/19 21:26,"136 Maple St, San Francisco, CA 94016" +143516,AAA Batteries (4-pack),1,2.99,01/12/19 23:10,"480 Park St, Seattle, WA 98101" +143517,Lightning Charging Cable,1,14.95,01/18/19 23:42,"116 Jackson St, Boston, MA 02215" +143518,AA Batteries (4-pack),1,3.84,01/30/19 21:44,"950 4th St, Austin, TX 73301" +143519,27in 4K Gaming Monitor,1,389.99,01/23/19 23:19,"463 West St, Dallas, TX 75001" +143520,Lightning Charging Cable,1,14.95,01/06/19 21:49,"937 Lincoln St, Dallas, TX 75001" +143521,AA Batteries (4-pack),2,3.84,01/31/19 13:33,"407 West St, Seattle, WA 98101" +143522,AA Batteries (4-pack),1,3.84,01/20/19 15:36,"448 13th St, Los Angeles, CA 90001" +143523,Macbook Pro Laptop,1,1700,01/31/19 16:17,"869 Cedar St, Boston, MA 02215" +143524,iPhone,1,700,01/21/19 22:54,"823 Cherry St, Dallas, TX 75001" +143524,Wired Headphones,1,11.99,01/21/19 22:54,"823 Cherry St, Dallas, TX 75001" +143525,USB-C Charging Cable,1,11.95,01/20/19 08:53,"530 Walnut St, San Francisco, CA 94016" +143526,ThinkPad Laptop,1,999.99,01/13/19 12:32,"36 Maple St, Atlanta, GA 30301" +143527,27in FHD Monitor,1,149.99,01/10/19 11:50,"966 4th St, San Francisco, CA 94016" +143528,iPhone,1,700,01/08/19 11:43,"521 Hill St, Portland, OR 97035" +143529,Macbook Pro Laptop,1,1700,01/31/19 20:05,"386 Highland St, Seattle, WA 98101" +143530,Bose SoundSport Headphones,1,99.99,01/15/19 11:20,"38 Lakeview St, Austin, TX 73301" +143531,USB-C Charging Cable,1,11.95,01/11/19 15:51,"655 4th St, San Francisco, CA 94016" +143532,Apple Airpods Headphones,2,150,01/27/19 14:23,"796 Madison St, Boston, MA 02215" +143533,Lightning Charging Cable,1,14.95,01/20/19 19:25,"52 Elm St, San Francisco, CA 94016" +143534,Lightning Charging Cable,1,14.95,01/18/19 14:28,"18 North St, New York City, NY 10001" +143535,USB-C Charging Cable,1,11.95,01/25/19 12:18,"76 5th St, New York City, NY 10001" +143536,27in FHD Monitor,1,149.99,01/19/19 11:15,"842 1st St, Portland, OR 97035" +143537,AA Batteries (4-pack),2,3.84,01/26/19 21:07,"732 11th St, Austin, TX 73301" +143538,iPhone,1,700,01/22/19 01:40,"252 13th St, Boston, MA 02215" +143539,Lightning Charging Cable,1,14.95,01/21/19 11:09,"977 River St, San Francisco, CA 94016" +143540,Macbook Pro Laptop,1,1700,01/07/19 01:17,"857 2nd St, Los Angeles, CA 90001" +143541,Wired Headphones,1,11.99,01/08/19 19:28,"317 13th St, New York City, NY 10001" +143542,Lightning Charging Cable,1,14.95,01/20/19 18:58,"240 2nd St, San Francisco, CA 94016" +143543,27in 4K Gaming Monitor,1,389.99,01/13/19 10:31,"321 Lincoln St, Portland, OR 97035" +143544,Apple Airpods Headphones,1,150,01/08/19 16:46,"920 Church St, Seattle, WA 98101" +143545,Lightning Charging Cable,1,14.95,01/11/19 22:36,"232 Lake St, Atlanta, GA 30301" +143546,Bose SoundSport Headphones,1,99.99,01/15/19 16:25,"88 South St, Portland, OR 97035" +143547,Lightning Charging Cable,1,14.95,01/29/19 17:49,"422 Dogwood St, Austin, TX 73301" +143548,AAA Batteries (4-pack),1,2.99,01/20/19 20:17,"861 6th St, Portland, OR 97035" +143549,27in 4K Gaming Monitor,1,389.99,01/08/19 07:52,"684 Center St, San Francisco, CA 94016" +143550,USB-C Charging Cable,1,11.95,01/10/19 18:02,"982 Spruce St, Boston, MA 02215" +143551,Wired Headphones,1,11.99,01/03/19 06:23,"5 North St, Boston, MA 02215" +143552,Lightning Charging Cable,1,14.95,01/18/19 15:24,"360 Hill St, San Francisco, CA 94016" +143553,AAA Batteries (4-pack),4,2.99,01/30/19 10:38,"916 Ridge St, Seattle, WA 98101" +143554,Wired Headphones,2,11.99,01/28/19 06:31,"619 Sunset St, Dallas, TX 75001" +143555,Wired Headphones,1,11.99,01/17/19 20:58,"66 8th St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +143556,Lightning Charging Cable,1,14.95,01/05/19 13:14,"738 Washington St, Los Angeles, CA 90001" +143557,iPhone,1,700,01/04/19 11:15,"298 12th St, New York City, NY 10001" +143558,Wired Headphones,1,11.99,01/20/19 16:55,"66 13th St, San Francisco, CA 94016" +143559,Flatscreen TV,1,300,01/16/19 20:17,"852 Church St, Boston, MA 02215" +143560,Google Phone,1,600,01/12/19 12:19,"762 Pine St, Portland, OR 97035" +143561,Apple Airpods Headphones,1,150,01/13/19 14:56,"612 Madison St, Dallas, TX 75001" +143562,Lightning Charging Cable,1,14.95,01/28/19 22:04,"628 Adams St, Austin, TX 73301" +143563,34in Ultrawide Monitor,1,379.99,01/25/19 12:57,"878 14th St, New York City, NY 10001" +143564,Lightning Charging Cable,1,14.95,01/28/19 16:18,"264 Lakeview St, New York City, NY 10001" +143565,Apple Airpods Headphones,1,150,01/01/19 19:10,"846 Willow St, San Francisco, CA 94016" +143566,Wired Headphones,1,11.99,01/18/19 19:54,"907 2nd St, Los Angeles, CA 90001" +143566,27in 4K Gaming Monitor,1,389.99,01/18/19 19:54,"907 2nd St, Los Angeles, CA 90001" +143567,Wired Headphones,1,11.99,01/24/19 02:54,"529 Cedar St, San Francisco, CA 94016" +143568,LG Dryer,1,600.0,01/21/19 01:22,"988 Chestnut St, Los Angeles, CA 90001" +143569,AAA Batteries (4-pack),1,2.99,01/31/19 14:44,"375 4th St, Boston, MA 02215" +143570,20in Monitor,1,109.99,01/21/19 00:38,"615 Hickory St, Atlanta, GA 30301" +143571,USB-C Charging Cable,1,11.95,01/13/19 22:48,"360 Forest St, Portland, OR 97035" +143572,AA Batteries (4-pack),1,3.84,01/10/19 12:24,"358 Pine St, San Francisco, CA 94016" +143573,AA Batteries (4-pack),1,3.84,01/05/19 14:27,"539 8th St, Boston, MA 02215" +143574,Bose SoundSport Headphones,1,99.99,01/22/19 19:54,"18 Center St, San Francisco, CA 94016" +143575,AAA Batteries (4-pack),1,2.99,01/22/19 20:44,"161 South St, Dallas, TX 75001" +143576,iPhone,1,700,01/21/19 10:44,"14 2nd St, New York City, NY 10001" +143577,Lightning Charging Cable,1,14.95,01/09/19 12:00,"155 8th St, New York City, NY 10001" +143578,34in Ultrawide Monitor,1,379.99,01/11/19 13:38,"417 Jefferson St, Dallas, TX 75001" +143579,20in Monitor,1,109.99,01/31/19 14:06,"148 Jefferson St, Boston, MA 02215" +143580,Lightning Charging Cable,1,14.95,01/19/19 15:25,"454 Elm St, Los Angeles, CA 90001" +143581,AAA Batteries (4-pack),1,2.99,01/27/19 10:06,"457 1st St, Boston, MA 02215" +143582,Apple Airpods Headphones,1,150,01/16/19 18:20,"252 Park St, Los Angeles, CA 90001" +143583,Bose SoundSport Headphones,1,99.99,01/11/19 12:43,"794 Willow St, San Francisco, CA 94016" +143584,Apple Airpods Headphones,1,150,01/20/19 19:43,"115 Sunset St, Boston, MA 02215" +143585,27in 4K Gaming Monitor,1,389.99,01/09/19 10:43,"962 Johnson St, Los Angeles, CA 90001" +143586,AAA Batteries (4-pack),1,2.99,01/26/19 18:04,"279 14th St, Dallas, TX 75001" +143587,AAA Batteries (4-pack),1,2.99,01/28/19 13:07,"428 Madison St, Austin, TX 73301" +143588,27in 4K Gaming Monitor,1,389.99,01/20/19 21:45,"191 Spruce St, Austin, TX 73301" +143589,AA Batteries (4-pack),2,3.84,01/17/19 19:28,"631 Lincoln St, Los Angeles, CA 90001" +143590,Lightning Charging Cable,1,14.95,01/21/19 15:11,"218 4th St, Los Angeles, CA 90001" +143591,Flatscreen TV,1,300,01/04/19 00:04,"810 Meadow St, New York City, NY 10001" +143592,Wired Headphones,1,11.99,01/22/19 10:15,"166 River St, San Francisco, CA 94016" +143593,AAA Batteries (4-pack),1,2.99,01/28/19 23:17,"611 Madison St, Atlanta, GA 30301" +143594,34in Ultrawide Monitor,1,379.99,01/01/19 17:36,"67 Lakeview St, Boston, MA 02215" +143595,Wired Headphones,1,11.99,01/22/19 18:49,"77 River St, Portland, OR 97035" +143596,Wired Headphones,1,11.99,01/14/19 12:29,"112 4th St, Boston, MA 02215" +143597,AAA Batteries (4-pack),1,2.99,01/19/19 00:12,"240 2nd St, San Francisco, CA 94016" +143598,USB-C Charging Cable,1,11.95,01/21/19 20:27,"377 Meadow St, New York City, NY 10001" +143599,20in Monitor,1,109.99,01/18/19 18:13,"104 Lincoln St, Seattle, WA 98101" +143600,27in FHD Monitor,1,149.99,01/02/19 11:02,"286 12th St, Seattle, WA 98101" +143601,Apple Airpods Headphones,1,150,01/19/19 16:47,"469 Park St, Seattle, WA 98101" +143602,AA Batteries (4-pack),1,3.84,01/25/19 16:44,"191 Adams St, Portland, OR 97035" +143603,AA Batteries (4-pack),3,3.84,01/24/19 18:49,"205 Washington St, Los Angeles, CA 90001" +143604,Lightning Charging Cable,1,14.95,01/25/19 21:15,"818 Madison St, Portland, OR 97035" +143605,Wired Headphones,1,11.99,01/19/19 12:31,"390 Highland St, New York City, NY 10001" +143606,Flatscreen TV,1,300,01/14/19 18:36,"29 Lakeview St, Portland, OR 97035" +143607,Flatscreen TV,1,300,01/12/19 19:47,"995 Wilson St, Boston, MA 02215" +143608,Apple Airpods Headphones,1,150,01/05/19 18:24,"520 Walnut St, Los Angeles, CA 90001" +143609,AAA Batteries (4-pack),1,2.99,01/23/19 15:07,"487 South St, New York City, NY 10001" +143610,iPhone,1,700,01/22/19 21:31,"885 Chestnut St, Los Angeles, CA 90001" +143611,AA Batteries (4-pack),1,3.84,01/21/19 19:27,"18 12th St, New York City, NY 10001" +143612,AAA Batteries (4-pack),1,2.99,01/13/19 16:29,"39 Madison St, Boston, MA 02215" +143613,Lightning Charging Cable,1,14.95,01/05/19 14:48,"591 Lake St, Los Angeles, CA 90001" +143614,Lightning Charging Cable,1,14.95,01/24/19 12:29,"552 Meadow St, Seattle, WA 98101" +143615,Apple Airpods Headphones,1,150,01/09/19 10:50,"32 12th St, Dallas, TX 75001" +143616,Lightning Charging Cable,1,14.95,01/24/19 21:26,"299 8th St, Los Angeles, CA 90001" +143617,27in 4K Gaming Monitor,1,389.99,01/23/19 13:45,"822 North St, Seattle, WA 98101" +143617,Flatscreen TV,1,300,01/23/19 13:45,"822 North St, Seattle, WA 98101" +143618,Lightning Charging Cable,1,14.95,01/03/19 23:26,"772 13th St, Dallas, TX 75001" +143619,Apple Airpods Headphones,2,150,01/07/19 12:12,"665 10th St, Boston, MA 02215" +143620,USB-C Charging Cable,1,11.95,01/30/19 21:32,"501 Dogwood St, Atlanta, GA 30301" +143621,AAA Batteries (4-pack),1,2.99,01/15/19 09:56,"219 Lake St, Los Angeles, CA 90001" +143622,Apple Airpods Headphones,1,150,01/09/19 19:10,"774 4th St, Austin, TX 73301" +143623,iPhone,1,700,01/25/19 19:17,"503 Lake St, New York City, NY 10001" +143624,27in FHD Monitor,1,149.99,01/14/19 09:37,"497 Center St, New York City, NY 10001" +143625,20in Monitor,1,109.99,01/20/19 16:42,"711 Spruce St, Portland, OR 97035" +143626,34in Ultrawide Monitor,1,379.99,01/24/19 10:48,"134 Forest St, Boston, MA 02215" +143627,Apple Airpods Headphones,1,150,01/15/19 23:12,"920 Washington St, Los Angeles, CA 90001" +143628,Lightning Charging Cable,1,14.95,01/09/19 10:56,"852 Forest St, New York City, NY 10001" +143629,Lightning Charging Cable,2,14.95,01/09/19 13:09,"346 Lake St, Boston, MA 02215" +143630,ThinkPad Laptop,1,999.99,01/21/19 19:55,"593 Adams St, New York City, NY 10001" +143631,34in Ultrawide Monitor,1,379.99,01/02/19 11:52,"99 Spruce St, San Francisco, CA 94016" +143632,Wired Headphones,2,11.99,01/04/19 23:03,"511 Center St, New York City, NY 10001" +143633,27in FHD Monitor,1,149.99,01/02/19 07:27,"610 Jackson St, New York City, NY 10001" +143634,Apple Airpods Headphones,1,150,01/19/19 17:45,"901 14th St, New York City, NY 10001" +143635,Wired Headphones,1,11.99,01/04/19 16:52,"774 9th St, Seattle, WA 98101" +143636,Lightning Charging Cable,1,14.95,01/21/19 00:14,"284 Pine St, San Francisco, CA 94016" +143637,AA Batteries (4-pack),1,3.84,01/06/19 15:11,"696 Park St, New York City, NY 10001" +143638,Wired Headphones,1,11.99,01/19/19 22:20,"377 West St, Dallas, TX 75001" +143639,Lightning Charging Cable,1,14.95,01/22/19 15:21,"187 Jackson St, San Francisco, CA 94016" +143640,Lightning Charging Cable,1,14.95,01/01/19 19:32,"21 Highland St, New York City, NY 10001" +143641,USB-C Charging Cable,1,11.95,01/24/19 09:57,"350 Dogwood St, Los Angeles, CA 90001" +143642,Vareebadd Phone,1,400,01/21/19 06:23,"268 5th St, Los Angeles, CA 90001" +143643,USB-C Charging Cable,1,11.95,01/30/19 19:58,"218 Walnut St, Los Angeles, CA 90001" +143644,AA Batteries (4-pack),2,3.84,01/23/19 12:44,"552 11th St, Boston, MA 02215" +143645,20in Monitor,1,109.99,01/03/19 08:35,"528 13th St, San Francisco, CA 94016" +143646,Lightning Charging Cable,1,14.95,01/04/19 18:07,"168 Meadow St, San Francisco, CA 94016" +143647,Bose SoundSport Headphones,1,99.99,01/11/19 21:04,"866 9th St, San Francisco, CA 94016" +143648,34in Ultrawide Monitor,1,379.99,01/21/19 23:10,"824 Highland St, San Francisco, CA 94016" +143649,AA Batteries (4-pack),1,3.84,01/30/19 20:53,"182 South St, Boston, MA 02215" +143650,27in FHD Monitor,1,149.99,02/01/19 01:19,"60 Pine St, Dallas, TX 75001" +143651,Flatscreen TV,1,300,01/31/19 17:05,"560 West St, Dallas, TX 75001" +143652,34in Ultrawide Monitor,1,379.99,01/20/19 21:26,"698 Hickory St, Los Angeles, CA 90001" +143653,Macbook Pro Laptop,1,1700,01/11/19 16:26,"683 6th St, Seattle, WA 98101" +143654,27in 4K Gaming Monitor,1,389.99,01/07/19 09:33,"577 13th St, New York City, NY 10001" +143655,Lightning Charging Cable,1,14.95,01/12/19 11:36,"327 6th St, Austin, TX 73301" +143656,Flatscreen TV,1,300,01/18/19 20:37,"175 13th St, Atlanta, GA 30301" +143657,AA Batteries (4-pack),1,3.84,01/02/19 17:39,"819 River St, San Francisco, CA 94016" +,,,,, +143658,AA Batteries (4-pack),1,3.84,01/19/19 19:07,"856 Hickory St, New York City, NY 10001" +143659,Wired Headphones,1,11.99,01/31/19 12:43,"35 Maple St, Atlanta, GA 30301" +143660,USB-C Charging Cable,1,11.95,01/09/19 11:47,"325 Lincoln St, San Francisco, CA 94016" +143661,27in FHD Monitor,2,149.99,01/11/19 07:52,"260 Pine St, San Francisco, CA 94016" +143661,34in Ultrawide Monitor,1,379.99,01/11/19 07:52,"260 Pine St, San Francisco, CA 94016" +143662,34in Ultrawide Monitor,1,379.99,01/28/19 16:03,"911 Chestnut St, San Francisco, CA 94016" +143663,Flatscreen TV,1,300,01/24/19 13:25,"640 Dogwood St, Seattle, WA 98101" +143664,USB-C Charging Cable,1,11.95,01/21/19 21:11,"793 River St, San Francisco, CA 94016" +143665,Bose SoundSport Headphones,1,99.99,01/22/19 09:56,"779 7th St, Los Angeles, CA 90001" +143666,AA Batteries (4-pack),1,3.84,01/14/19 04:40,"479 2nd St, New York City, NY 10001" +143667,Apple Airpods Headphones,1,150,01/26/19 23:42,"182 Ridge St, Seattle, WA 98101" +143668,USB-C Charging Cable,1,11.95,01/09/19 21:07,"943 4th St, Dallas, TX 75001" +143669,Bose SoundSport Headphones,1,99.99,01/31/19 21:56,"572 Center St, Seattle, WA 98101" +143670,20in Monitor,1,109.99,01/15/19 18:02,"160 River St, Dallas, TX 75001" +143671,AA Batteries (4-pack),1,3.84,01/22/19 21:46,"985 North St, Atlanta, GA 30301" +143672,Bose SoundSport Headphones,1,99.99,01/17/19 23:36,"894 Main St, New York City, NY 10001" +143673,Wired Headphones,1,11.99,01/21/19 18:37,"360 Adams St, Seattle, WA 98101" +143674,Vareebadd Phone,1,400,01/19/19 19:12,"96 Adams St, Los Angeles, CA 90001" +143675,Apple Airpods Headphones,1,150,01/10/19 21:09,"514 Forest St, New York City, NY 10001" +143676,Wired Headphones,1,11.99,01/26/19 11:57,"647 8th St, New York City, NY 10001" +143677,34in Ultrawide Monitor,1,379.99,01/02/19 13:49,"86 Forest St, Seattle, WA 98101" +143678,Google Phone,1,600,01/05/19 12:52,"527 River St, Boston, MA 02215" +143679,20in Monitor,1,109.99,01/02/19 17:12,"948 5th St, Los Angeles, CA 90001" +143680,AAA Batteries (4-pack),2,2.99,01/21/19 11:04,"85 10th St, New York City, NY 10001" +143681,27in 4K Gaming Monitor,1,389.99,01/29/19 00:48,"79 Madison St, New York City, NY 10001" +143682,Bose SoundSport Headphones,1,99.99,01/02/19 09:45,"247 2nd St, Portland, OR 97035" +143683,Google Phone,1,600,01/15/19 13:35,"466 7th St, Atlanta, GA 30301" +143684,USB-C Charging Cable,1,11.95,01/24/19 16:25,"954 Chestnut St, San Francisco, CA 94016" +143685,Google Phone,1,600,01/18/19 08:38,"656 10th St, Atlanta, GA 30301" +143686,AAA Batteries (4-pack),1,2.99,01/25/19 16:33,"221 11th St, Portland, OR 97035" +143687,Lightning Charging Cable,1,14.95,01/09/19 07:27,"755 2nd St, San Francisco, CA 94016" +143688,Google Phone,1,600,01/22/19 10:19,"69 5th St, San Francisco, CA 94016" +143688,Wired Headphones,1,11.99,01/22/19 10:19,"69 5th St, San Francisco, CA 94016" +143689,27in FHD Monitor,1,149.99,01/04/19 11:45,"374 Spruce St, San Francisco, CA 94016" +143690,Google Phone,1,600,01/14/19 08:43,"565 River St, Portland, ME 04101" +143691,Wired Headphones,1,11.99,01/05/19 22:46,"455 7th St, New York City, NY 10001" +143692,Apple Airpods Headphones,1,150,01/08/19 20:39,"734 Ridge St, New York City, NY 10001" +143693,Lightning Charging Cable,1,14.95,01/31/19 19:37,"547 Center St, Dallas, TX 75001" +143694,USB-C Charging Cable,1,11.95,01/31/19 21:36,"14 Sunset St, San Francisco, CA 94016" +143695,AA Batteries (4-pack),1,3.84,01/25/19 10:58,"212 Madison St, Portland, OR 97035" +143696,Wired Headphones,1,11.99,01/02/19 19:09,"213 Spruce St, San Francisco, CA 94016" +143697,USB-C Charging Cable,1,11.95,01/16/19 12:24,"903 Lake St, Austin, TX 73301" +143698,AA Batteries (4-pack),3,3.84,01/19/19 22:33,"120 Willow St, San Francisco, CA 94016" +143699,Bose SoundSport Headphones,1,99.99,01/02/19 14:41,"265 Maple St, Portland, OR 97035" +143700,AAA Batteries (4-pack),2,2.99,01/09/19 19:04,"487 8th St, Seattle, WA 98101" +143701,Wired Headphones,1,11.99,01/04/19 06:58,"809 Maple St, New York City, NY 10001" +143702,Macbook Pro Laptop,1,1700,01/03/19 11:45,"358 Washington St, Los Angeles, CA 90001" +143703,Apple Airpods Headphones,1,150,01/14/19 22:06,"636 11th St, Dallas, TX 75001" +143704,Bose SoundSport Headphones,1,99.99,01/02/19 13:01,"19 1st St, Los Angeles, CA 90001" +143705,USB-C Charging Cable,1,11.95,01/23/19 16:42,"281 Hickory St, Atlanta, GA 30301" +143706,Flatscreen TV,1,300,01/15/19 18:13,"697 Ridge St, San Francisco, CA 94016" +143707,AA Batteries (4-pack),2,3.84,01/31/19 09:41,"51 South St, Dallas, TX 75001" +143708,27in FHD Monitor,1,149.99,01/26/19 22:28,"422 Pine St, Boston, MA 02215" +143709,Bose SoundSport Headphones,1,99.99,01/25/19 23:45,"491 Chestnut St, Austin, TX 73301" +143710,Wired Headphones,1,11.99,01/09/19 18:29,"792 Wilson St, Austin, TX 73301" +143711,AA Batteries (4-pack),1,3.84,01/30/19 10:36,"707 Meadow St, Portland, ME 04101" +143712,AA Batteries (4-pack),1,3.84,01/30/19 22:30,"613 11th St, Los Angeles, CA 90001" +143713,AAA Batteries (4-pack),1,2.99,01/11/19 22:34,"48 Lincoln St, Los Angeles, CA 90001" +143714,ThinkPad Laptop,1,999.99,01/25/19 08:31,"206 Highland St, Los Angeles, CA 90001" +143715,Apple Airpods Headphones,1,150,01/25/19 15:33,"4 Spruce St, San Francisco, CA 94016" +143715,Flatscreen TV,1,300,01/25/19 15:33,"4 Spruce St, San Francisco, CA 94016" +143716,Lightning Charging Cable,1,14.95,01/25/19 22:43,"686 12th St, Los Angeles, CA 90001" +143717,AA Batteries (4-pack),1,3.84,01/20/19 11:02,"493 Willow St, Boston, MA 02215" +143718,ThinkPad Laptop,1,999.99,01/14/19 13:00,"294 Highland St, New York City, NY 10001" +143719,AAA Batteries (4-pack),1,2.99,01/26/19 12:45,"186 Lakeview St, Seattle, WA 98101" +143720,34in Ultrawide Monitor,1,379.99,01/18/19 18:55,"175 Lincoln St, San Francisco, CA 94016" +143721,USB-C Charging Cable,1,11.95,01/08/19 21:13,"162 8th St, Seattle, WA 98101" +143722,20in Monitor,1,109.99,01/06/19 19:11,"193 Johnson St, Atlanta, GA 30301" +143723,ThinkPad Laptop,1,999.99,01/29/19 12:27,"122 Lake St, San Francisco, CA 94016" +143724,Lightning Charging Cable,1,14.95,01/05/19 07:03,"147 Meadow St, Atlanta, GA 30301" +143725,AA Batteries (4-pack),2,3.84,01/17/19 10:46,"843 Forest St, Dallas, TX 75001" +143726,AAA Batteries (4-pack),1,2.99,01/24/19 10:10,"686 Spruce St, Atlanta, GA 30301" +143727,AA Batteries (4-pack),2,3.84,01/15/19 21:43,"957 Hickory St, Boston, MA 02215" +143728,AAA Batteries (4-pack),1,2.99,01/11/19 09:53,"730 Madison St, Seattle, WA 98101" +143729,AAA Batteries (4-pack),4,2.99,01/05/19 22:49,"605 Highland St, Austin, TX 73301" +143730,Wired Headphones,1,11.99,01/06/19 21:24,"373 13th St, San Francisco, CA 94016" +143731,Apple Airpods Headphones,1,150,01/18/19 17:07,"798 Sunset St, San Francisco, CA 94016" +143732,Google Phone,1,600,01/08/19 01:16,"842 8th St, Los Angeles, CA 90001" +143733,Bose SoundSport Headphones,1,99.99,01/24/19 19:54,"147 Adams St, San Francisco, CA 94016" +143734,AA Batteries (4-pack),1,3.84,01/15/19 15:31,"780 8th St, San Francisco, CA 94016" +143735,27in 4K Gaming Monitor,1,389.99,01/15/19 14:18,"90 14th St, San Francisco, CA 94016" +143736,iPhone,1,700,01/29/19 10:06,"162 12th St, Atlanta, GA 30301" +143737,Flatscreen TV,1,300,01/02/19 17:10,"924 Ridge St, Seattle, WA 98101" +143738,Wired Headphones,1,11.99,01/30/19 17:23,"488 Elm St, New York City, NY 10001" +143739,AA Batteries (4-pack),1,3.84,01/25/19 15:03,"928 Park St, San Francisco, CA 94016" +143740,Bose SoundSport Headphones,1,99.99,01/27/19 08:18,"875 Lincoln St, Los Angeles, CA 90001" +143741,AA Batteries (4-pack),1,3.84,01/04/19 14:38,"221 8th St, New York City, NY 10001" +143742,Lightning Charging Cable,1,14.95,01/21/19 11:31,"480 10th St, San Francisco, CA 94016" +143743,Apple Airpods Headphones,1,150,01/25/19 11:19,"462 Elm St, San Francisco, CA 94016" +143744,AA Batteries (4-pack),1,3.84,01/03/19 17:00,"281 Hickory St, San Francisco, CA 94016" +143745,Flatscreen TV,1,300,01/31/19 11:55,"39 Wilson St, Atlanta, GA 30301" +143746,AA Batteries (4-pack),1,3.84,01/08/19 02:20,"404 Meadow St, San Francisco, CA 94016" +143747,Bose SoundSport Headphones,1,99.99,01/07/19 13:58,"485 14th St, San Francisco, CA 94016" +143748,Wired Headphones,1,11.99,01/01/19 10:04,"689 Main St, Los Angeles, CA 90001" +143749,Wired Headphones,1,11.99,01/23/19 08:08,"433 Maple St, Seattle, WA 98101" +143750,Macbook Pro Laptop,1,1700,01/12/19 14:52,"190 Washington St, Boston, MA 02215" +143751,AA Batteries (4-pack),1,3.84,01/28/19 01:03,"391 Pine St, San Francisco, CA 94016" +143752,AA Batteries (4-pack),1,3.84,01/31/19 10:47,"742 8th St, Seattle, WA 98101" +143753,Wired Headphones,1,11.99,01/11/19 19:16,"958 Chestnut St, Dallas, TX 75001" +143754,Apple Airpods Headphones,1,150,01/09/19 10:53,"424 10th St, Dallas, TX 75001" +143755,Wired Headphones,1,11.99,01/06/19 11:49,"564 4th St, San Francisco, CA 94016" +143756,AA Batteries (4-pack),1,3.84,01/29/19 11:24,"242 Cherry St, Los Angeles, CA 90001" +143757,AAA Batteries (4-pack),1,2.99,01/04/19 16:47,"322 Pine St, San Francisco, CA 94016" +143758,Flatscreen TV,1,300,01/07/19 12:18,"412 6th St, Boston, MA 02215" +143759,Bose SoundSport Headphones,1,99.99,01/04/19 22:02,"300 Washington St, Atlanta, GA 30301" +143760,AAA Batteries (4-pack),1,2.99,01/04/19 18:52,"894 12th St, San Francisco, CA 94016" +143761,Google Phone,1,600,01/02/19 16:36,"921 13th St, New York City, NY 10001" +143762,20in Monitor,1,109.99,01/31/19 10:54,"525 12th St, San Francisco, CA 94016" +143763,27in FHD Monitor,1,149.99,01/15/19 11:04,"687 8th St, Seattle, WA 98101" +143764,Lightning Charging Cable,1,14.95,01/26/19 16:27,"786 1st St, Los Angeles, CA 90001" +143765,Macbook Pro Laptop,1,1700,01/17/19 08:31,"629 Meadow St, Boston, MA 02215" +143766,AA Batteries (4-pack),1,3.84,01/04/19 22:09,"863 6th St, Boston, MA 02215" +143767,Bose SoundSport Headphones,1,99.99,01/08/19 11:17,"667 5th St, San Francisco, CA 94016" +143768,AAA Batteries (4-pack),1,2.99,01/28/19 20:01,"398 River St, Portland, OR 97035" +143769,Wired Headphones,1,11.99,01/29/19 07:41,"356 Washington St, Dallas, TX 75001" +143770,Wired Headphones,1,11.99,01/20/19 10:39,"126 River St, Portland, ME 04101" +143771,Wired Headphones,1,11.99,01/01/19 18:51,"515 Cherry St, Los Angeles, CA 90001" +143772,27in FHD Monitor,1,149.99,01/14/19 15:22,"324 Willow St, Portland, OR 97035" +143773,AA Batteries (4-pack),1,3.84,01/03/19 13:52,"417 14th St, New York City, NY 10001" +143774,Apple Airpods Headphones,1,150,01/14/19 23:21,"896 Pine St, Seattle, WA 98101" +143775,iPhone,1,700,01/06/19 13:06,"215 4th St, Seattle, WA 98101" +143776,34in Ultrawide Monitor,1,379.99,01/01/19 10:12,"469 Maple St, Boston, MA 02215" +143777,27in FHD Monitor,1,149.99,01/26/19 10:43,"488 Madison St, Atlanta, GA 30301" +143778,Wired Headphones,1,11.99,01/27/19 12:09,"557 River St, Seattle, WA 98101" +143779,Flatscreen TV,1,300,01/15/19 19:19,"817 Chestnut St, San Francisco, CA 94016" +143780,Wired Headphones,1,11.99,01/02/19 10:29,"88 14th St, Los Angeles, CA 90001" +143781,AA Batteries (4-pack),1,3.84,01/01/19 14:00,"655 Lake St, Seattle, WA 98101" +143782,27in FHD Monitor,1,149.99,01/18/19 18:11,"35 Center St, Los Angeles, CA 90001" +143783,Flatscreen TV,1,300,01/26/19 10:30,"633 Wilson St, Portland, OR 97035" +143784,AA Batteries (4-pack),1,3.84,01/20/19 15:30,"711 Wilson St, Atlanta, GA 30301" +143785,Wired Headphones,1,11.99,01/12/19 14:35,"971 5th St, Atlanta, GA 30301" +143786,AA Batteries (4-pack),1,3.84,01/22/19 15:07,"974 North St, Dallas, TX 75001" +143787,ThinkPad Laptop,1,999.99,01/22/19 15:13,"539 Lake St, San Francisco, CA 94016" +143788,USB-C Charging Cable,1,11.95,01/10/19 20:49,"312 Cherry St, Los Angeles, CA 90001" +143789,iPhone,1,700,01/18/19 23:14,"318 Elm St, Seattle, WA 98101" +143790,Wired Headphones,1,11.99,01/21/19 16:14,"765 North St, Boston, MA 02215" +143791,Lightning Charging Cable,1,14.95,01/01/19 10:07,"314 Willow St, Portland, ME 04101" +143792,AA Batteries (4-pack),1,3.84,01/19/19 15:05,"689 6th St, San Francisco, CA 94016" +143793,Lightning Charging Cable,1,14.95,01/20/19 18:27,"2 8th St, Los Angeles, CA 90001" +143794,USB-C Charging Cable,1,11.95,01/23/19 19:47,"670 Walnut St, San Francisco, CA 94016" +143795,Apple Airpods Headphones,1,150,01/14/19 16:18,"546 14th St, Portland, OR 97035" +143796,Flatscreen TV,1,300,01/09/19 18:36,"586 2nd St, Seattle, WA 98101" +143797,27in 4K Gaming Monitor,1,389.99,01/04/19 13:27,"922 Highland St, Los Angeles, CA 90001" +143798,Apple Airpods Headphones,1,150,01/05/19 11:25,"725 Ridge St, Los Angeles, CA 90001" +143799,27in FHD Monitor,1,149.99,01/01/19 20:09,"936 Hill St, Austin, TX 73301" +143800,Wired Headphones,2,11.99,01/25/19 16:46,"870 North St, San Francisco, CA 94016" +143801,Bose SoundSport Headphones,1,99.99,01/21/19 12:09,"819 Cherry St, Atlanta, GA 30301" +143802,USB-C Charging Cable,1,11.95,01/18/19 17:14,"816 Maple St, Los Angeles, CA 90001" +143803,AAA Batteries (4-pack),1,2.99,01/10/19 16:43,"348 Dogwood St, New York City, NY 10001" +143804,Wired Headphones,1,11.99,01/07/19 17:51,"398 4th St, Seattle, WA 98101" +143805,ThinkPad Laptop,1,999.99,01/10/19 01:04,"391 Dogwood St, Dallas, TX 75001" +143806,AA Batteries (4-pack),1,3.84,01/17/19 16:45,"96 Hickory St, Los Angeles, CA 90001" +143807,34in Ultrawide Monitor,1,379.99,01/22/19 16:15,"931 13th St, Boston, MA 02215" +143808,USB-C Charging Cable,1,11.95,01/12/19 10:42,"493 Center St, Boston, MA 02215" +143809,Wired Headphones,1,11.99,01/20/19 17:58,"110 North St, Dallas, TX 75001" +143810,AAA Batteries (4-pack),3,2.99,01/14/19 22:29,"563 South St, Los Angeles, CA 90001" +143811,USB-C Charging Cable,1,11.95,01/11/19 12:47,"204 Lincoln St, Boston, MA 02215" +143812,Bose SoundSport Headphones,1,99.99,01/08/19 12:21,"603 Washington St, Boston, MA 02215" +143813,Apple Airpods Headphones,1,150,01/05/19 18:59,"610 Sunset St, Dallas, TX 75001" +143814,AA Batteries (4-pack),1,3.84,01/01/19 16:27,"43 Park St, San Francisco, CA 94016" +143815,Google Phone,1,600,01/09/19 17:01,"917 Washington St, Seattle, WA 98101" +143816,AAA Batteries (4-pack),1,2.99,01/18/19 12:14,"438 Highland St, Los Angeles, CA 90001" +143817,27in FHD Monitor,1,149.99,01/19/19 09:42,"976 Wilson St, Portland, ME 04101" +143818,Google Phone,1,600,01/25/19 21:46,"873 Dogwood St, Portland, ME 04101" +143819,Wired Headphones,1,11.99,01/13/19 12:17,"904 4th St, Los Angeles, CA 90001" +143820,USB-C Charging Cable,1,11.95,01/31/19 11:35,"554 10th St, Atlanta, GA 30301" +143821,Bose SoundSport Headphones,1,99.99,01/14/19 20:40,"934 Chestnut St, San Francisco, CA 94016" +143822,AAA Batteries (4-pack),1,2.99,01/24/19 16:56,"982 Maple St, San Francisco, CA 94016" +143823,iPhone,1,700,01/27/19 18:56,"46 Chestnut St, Los Angeles, CA 90001" +143823,Lightning Charging Cable,1,14.95,01/27/19 18:56,"46 Chestnut St, Los Angeles, CA 90001" +143824,20in Monitor,1,109.99,01/20/19 19:19,"725 Jackson St, Los Angeles, CA 90001" +143825,AA Batteries (4-pack),1,3.84,01/07/19 11:38,"727 8th St, Seattle, WA 98101" +143826,AA Batteries (4-pack),1,3.84,01/19/19 18:24,"378 10th St, Los Angeles, CA 90001" +143827,Apple Airpods Headphones,1,150,01/08/19 11:10,"283 Cherry St, Seattle, WA 98101" +143828,Lightning Charging Cable,1,14.95,01/01/19 07:11,"825 13th St, Los Angeles, CA 90001" +143829,Wired Headphones,1,11.99,01/20/19 13:20,"451 Forest St, Austin, TX 73301" +143830,AAA Batteries (4-pack),1,2.99,01/13/19 09:22,"269 4th St, Los Angeles, CA 90001" +143831,20in Monitor,1,109.99,01/06/19 12:12,"436 7th St, New York City, NY 10001" +143832,Flatscreen TV,1,300,01/20/19 03:29,"212 Highland St, San Francisco, CA 94016" +143833,Lightning Charging Cable,1,14.95,01/21/19 21:37,"454 Adams St, Boston, MA 02215" +143834,Wired Headphones,1,11.99,01/17/19 07:27,"63 9th St, San Francisco, CA 94016" +143835,AA Batteries (4-pack),2,3.84,01/07/19 13:36,"546 Cedar St, Atlanta, GA 30301" +143836,Bose SoundSport Headphones,1,99.99,01/10/19 10:51,"739 North St, New York City, NY 10001" +143837,AAA Batteries (4-pack),2,2.99,01/19/19 22:23,"135 Forest St, New York City, NY 10001" +143838,AA Batteries (4-pack),1,3.84,01/18/19 20:58,"816 Forest St, Los Angeles, CA 90001" +143838,AA Batteries (4-pack),1,3.84,01/18/19 20:58,"816 Forest St, Los Angeles, CA 90001" +143839,20in Monitor,1,109.99,01/14/19 19:44,"909 Elm St, San Francisco, CA 94016" +143840,AAA Batteries (4-pack),1,2.99,01/06/19 11:34,"669 Willow St, San Francisco, CA 94016" +143841,Bose SoundSport Headphones,1,99.99,01/13/19 20:12,"374 Lakeview St, Seattle, WA 98101" +143842,Wired Headphones,1,11.99,01/13/19 11:13,"878 Spruce St, Boston, MA 02215" +143843,USB-C Charging Cable,1,11.95,01/19/19 12:54,"208 Elm St, New York City, NY 10001" +143844,Wired Headphones,1,11.99,01/07/19 15:49,"984 Cherry St, Atlanta, GA 30301" +143845,USB-C Charging Cable,1,11.95,01/03/19 17:12,"12 Elm St, Los Angeles, CA 90001" +143846,Macbook Pro Laptop,1,1700,01/25/19 14:29,"535 7th St, San Francisco, CA 94016" +143847,Wired Headphones,1,11.99,01/01/19 22:43,"623 North St, San Francisco, CA 94016" +143848,USB-C Charging Cable,1,11.95,01/14/19 07:30,"980 Madison St, Boston, MA 02215" +143849,ThinkPad Laptop,1,999.99,01/21/19 14:14,"965 Forest St, San Francisco, CA 94016" +143850,Apple Airpods Headphones,1,150,01/31/19 19:48,"264 Lakeview St, Los Angeles, CA 90001" +143851,AAA Batteries (4-pack),1,2.99,01/12/19 11:19,"866 Jackson St, New York City, NY 10001" +143852,34in Ultrawide Monitor,1,379.99,01/08/19 11:09,"804 14th St, San Francisco, CA 94016" +143853,27in 4K Gaming Monitor,1,389.99,01/08/19 10:12,"204 Main St, Austin, TX 73301" +143854,AA Batteries (4-pack),1,3.84,01/21/19 19:54,"2 Wilson St, Seattle, WA 98101" +143855,Wired Headphones,1,11.99,01/23/19 18:07,"972 Walnut St, Los Angeles, CA 90001" +143856,20in Monitor,1,109.99,01/12/19 11:23,"705 Adams St, Portland, ME 04101" +143857,USB-C Charging Cable,1,11.95,01/20/19 09:29,"879 North St, Dallas, TX 75001" +143858,ThinkPad Laptop,1,999.99,01/12/19 12:30,"506 1st St, Los Angeles, CA 90001" +143859,34in Ultrawide Monitor,1,379.99,01/31/19 17:53,"691 Lincoln St, San Francisco, CA 94016" +143860,34in Ultrawide Monitor,1,379.99,01/22/19 07:23,"116 Lakeview St, San Francisco, CA 94016" +143861,27in FHD Monitor,1,149.99,01/26/19 14:44,"101 Adams St, Atlanta, GA 30301" +143862,USB-C Charging Cable,1,11.95,01/22/19 17:15,"512 Meadow St, Los Angeles, CA 90001" +143863,Bose SoundSport Headphones,1,99.99,01/09/19 18:45,"389 Forest St, San Francisco, CA 94016" +143864,AAA Batteries (4-pack),3,2.99,01/06/19 21:11,"387 Center St, Boston, MA 02215" +143865,AAA Batteries (4-pack),1,2.99,01/03/19 10:19,"124 North St, Seattle, WA 98101" +143866,Wired Headphones,1,11.99,01/19/19 09:22,"23 Hickory St, San Francisco, CA 94016" +143867,USB-C Charging Cable,1,11.95,01/10/19 20:57,"952 Main St, San Francisco, CA 94016" +143868,AA Batteries (4-pack),1,3.84,01/06/19 11:41,"154 Church St, San Francisco, CA 94016" +143869,Apple Airpods Headphones,1,150,01/22/19 19:35,"324 Adams St, Portland, OR 97035" +143870,Apple Airpods Headphones,1,150,01/08/19 14:24,"237 14th St, Boston, MA 02215" +143871,iPhone,1,700,01/21/19 10:51,"262 5th St, Portland, OR 97035" +143872,Wired Headphones,1,11.99,01/31/19 15:52,"722 West St, Los Angeles, CA 90001" +143873,USB-C Charging Cable,1,11.95,01/27/19 08:05,"588 Highland St, Seattle, WA 98101" +143874,34in Ultrawide Monitor,1,379.99,01/16/19 23:39,"869 West St, San Francisco, CA 94016" +143875,Google Phone,1,600,01/07/19 05:49,"382 Willow St, San Francisco, CA 94016" +143876,AA Batteries (4-pack),1,3.84,01/11/19 14:31,"943 4th St, San Francisco, CA 94016" +143877,Apple Airpods Headphones,1,150,01/23/19 23:49,"215 Jefferson St, San Francisco, CA 94016" +143878,27in FHD Monitor,1,149.99,01/15/19 22:15,"557 2nd St, Portland, OR 97035" +143879,USB-C Charging Cable,1,11.95,01/13/19 19:21,"512 Elm St, Los Angeles, CA 90001" +143880,27in FHD Monitor,1,149.99,01/20/19 21:54,"929 Washington St, Portland, ME 04101" +143881,ThinkPad Laptop,1,999.99,01/13/19 14:26,"677 14th St, Seattle, WA 98101" +143882,Lightning Charging Cable,1,14.95,01/04/19 10:30,"974 12th St, Los Angeles, CA 90001" +143883,Google Phone,1,600,01/22/19 19:17,"820 Highland St, New York City, NY 10001" +143883,USB-C Charging Cable,2,11.95,01/22/19 19:17,"820 Highland St, New York City, NY 10001" +143883,Bose SoundSport Headphones,1,99.99,01/22/19 19:17,"820 Highland St, New York City, NY 10001" +143884,Bose SoundSport Headphones,1,99.99,01/01/19 20:04,"232 Elm St, San Francisco, CA 94016" +143885,Apple Airpods Headphones,1,150,01/20/19 09:58,"62 Willow St, Boston, MA 02215" +143886,AAA Batteries (4-pack),2,2.99,01/18/19 20:17,"751 1st St, San Francisco, CA 94016" +143887,20in Monitor,1,109.99,01/18/19 22:09,"132 Highland St, Seattle, WA 98101" +143888,AA Batteries (4-pack),1,3.84,01/21/19 09:54,"54 14th St, San Francisco, CA 94016" +143889,AAA Batteries (4-pack),1,2.99,01/09/19 19:04,"171 Walnut St, Los Angeles, CA 90001" +143890,Bose SoundSport Headphones,1,99.99,01/16/19 19:04,"799 Jackson St, San Francisco, CA 94016" +143891,27in 4K Gaming Monitor,1,389.99,01/15/19 11:22,"706 Lake St, San Francisco, CA 94016" +143892,Macbook Pro Laptop,1,1700,01/09/19 21:05,"603 7th St, San Francisco, CA 94016" +143893,Wired Headphones,1,11.99,01/21/19 13:01,"961 Chestnut St, Portland, OR 97035" +143894,Bose SoundSport Headphones,1,99.99,01/02/19 20:58,"999 Cedar St, Portland, OR 97035" +143895,Lightning Charging Cable,1,14.95,01/21/19 10:30,"836 Highland St, San Francisco, CA 94016" +143896,27in FHD Monitor,1,149.99,01/26/19 09:27,"733 2nd St, Seattle, WA 98101" +143897,Lightning Charging Cable,1,14.95,01/03/19 23:02,"175 6th St, Atlanta, GA 30301" +143898,USB-C Charging Cable,1,11.95,01/06/19 12:05,"187 Elm St, Los Angeles, CA 90001" +143899,AA Batteries (4-pack),1,3.84,01/12/19 17:40,"438 10th St, New York City, NY 10001" +143900,USB-C Charging Cable,1,11.95,01/31/19 05:17,"28 Elm St, New York City, NY 10001" +143900,Google Phone,1,600,01/31/19 05:17,"28 Elm St, New York City, NY 10001" +143901,AAA Batteries (4-pack),1,2.99,01/25/19 13:09,"523 Chestnut St, Atlanta, GA 30301" +143902,Wired Headphones,1,11.99,01/24/19 06:33,"544 Cherry St, Los Angeles, CA 90001" +143903,Apple Airpods Headphones,1,150,01/27/19 15:49,"388 6th St, New York City, NY 10001" +143904,Wired Headphones,1,11.99,01/26/19 18:53,"296 Meadow St, San Francisco, CA 94016" +143905,20in Monitor,1,109.99,01/21/19 04:59,"42 6th St, Atlanta, GA 30301" +143906,AAA Batteries (4-pack),3,2.99,01/23/19 00:10,"74 Church St, San Francisco, CA 94016" +143907,Lightning Charging Cable,1,14.95,01/29/19 16:23,"624 Main St, San Francisco, CA 94016" +143908,27in 4K Gaming Monitor,1,389.99,01/29/19 00:56,"707 River St, New York City, NY 10001" +143909,AAA Batteries (4-pack),1,2.99,01/02/19 20:15,"354 Chestnut St, Los Angeles, CA 90001" +143910,AAA Batteries (4-pack),2,2.99,01/06/19 12:04,"347 Highland St, New York City, NY 10001" +143911,Google Phone,1,600,01/01/19 18:40,"820 North St, Boston, MA 02215" +143912,27in 4K Gaming Monitor,1,389.99,01/10/19 12:40,"912 2nd St, Dallas, TX 75001" +143913,USB-C Charging Cable,1,11.95,01/15/19 19:25,"247 Wilson St, Portland, ME 04101" +143914,Lightning Charging Cable,1,14.95,01/02/19 14:17,"196 11th St, Los Angeles, CA 90001" +143915,USB-C Charging Cable,1,11.95,01/18/19 21:24,"675 Madison St, New York City, NY 10001" +143916,AAA Batteries (4-pack),1,2.99,01/01/19 18:26,"967 8th St, New York City, NY 10001" +143917,AAA Batteries (4-pack),1,2.99,01/08/19 13:17,"341 7th St, Atlanta, GA 30301" +143918,Lightning Charging Cable,1,14.95,01/14/19 10:29,"557 12th St, New York City, NY 10001" +143919,Flatscreen TV,1,300,01/30/19 12:04,"728 Wilson St, New York City, NY 10001" +143920,Bose SoundSport Headphones,1,99.99,01/31/19 12:19,"346 Forest St, Los Angeles, CA 90001" +143921,AA Batteries (4-pack),3,3.84,01/23/19 19:27,"308 Cherry St, Boston, MA 02215" +143922,Lightning Charging Cable,1,14.95,01/08/19 05:48,"475 Highland St, San Francisco, CA 94016" +143923,ThinkPad Laptop,1,999.99,01/17/19 12:54,"243 Elm St, Dallas, TX 75001" +143924,Wired Headphones,1,11.99,01/04/19 15:38,"501 Madison St, New York City, NY 10001" +143925,Macbook Pro Laptop,1,1700,01/26/19 13:51,"598 Center St, New York City, NY 10001" +143926,Apple Airpods Headphones,1,150,01/13/19 00:59,"446 5th St, Los Angeles, CA 90001" +143927,Bose SoundSport Headphones,1,99.99,01/19/19 17:08,"972 Madison St, Boston, MA 02215" +143928,Google Phone,1,600,01/26/19 16:09,"997 1st St, New York City, NY 10001" +143929,Wired Headphones,1,11.99,01/22/19 17:05,"570 Main St, San Francisco, CA 94016" +143930,Lightning Charging Cable,1,14.95,01/28/19 16:58,"661 Adams St, Atlanta, GA 30301" +143931,27in 4K Gaming Monitor,1,389.99,01/24/19 19:40,"901 Lakeview St, San Francisco, CA 94016" +143932,Lightning Charging Cable,1,14.95,01/19/19 08:09,"425 11th St, Portland, OR 97035" +143933,Vareebadd Phone,1,400,01/02/19 19:45,"161 North St, Dallas, TX 75001" +143934,Lightning Charging Cable,1,14.95,01/29/19 16:31,"34 Willow St, Los Angeles, CA 90001" +143935,iPhone,1,700,01/21/19 10:26,"474 Church St, San Francisco, CA 94016" +143935,Lightning Charging Cable,1,14.95,01/21/19 10:26,"474 Church St, San Francisco, CA 94016" +143936,Bose SoundSport Headphones,1,99.99,01/01/19 13:45,"634 Church St, San Francisco, CA 94016" +143937,Apple Airpods Headphones,1,150,01/14/19 04:36,"210 Park St, Seattle, WA 98101" +143938,34in Ultrawide Monitor,1,379.99,01/20/19 17:19,"328 Walnut St, Austin, TX 73301" +143939,AAA Batteries (4-pack),1,2.99,01/30/19 19:50,"215 Walnut St, Portland, OR 97035" +143940,Apple Airpods Headphones,1,150,01/31/19 18:30,"841 13th St, Dallas, TX 75001" +143941,AA Batteries (4-pack),1,3.84,01/29/19 21:51,"387 Walnut St, Atlanta, GA 30301" +143942,Apple Airpods Headphones,1,150,01/22/19 13:00,"214 Lakeview St, Seattle, WA 98101" +143943,AAA Batteries (4-pack),1,2.99,01/04/19 00:24,"880 Cedar St, Boston, MA 02215" +143944,Bose SoundSport Headphones,1,99.99,01/06/19 10:59,"85 Lakeview St, Boston, MA 02215" +143945,27in 4K Gaming Monitor,1,389.99,01/09/19 23:19,"7 Walnut St, Portland, OR 97035" +143946,Wired Headphones,1,11.99,01/03/19 10:05,"725 4th St, San Francisco, CA 94016" +143947,Apple Airpods Headphones,1,150,01/15/19 18:09,"89 Madison St, San Francisco, CA 94016" +143948,AA Batteries (4-pack),2,3.84,01/04/19 17:01,"394 1st St, Los Angeles, CA 90001" +143949,Apple Airpods Headphones,1,150,01/17/19 16:22,"126 Madison St, Austin, TX 73301" +143950,34in Ultrawide Monitor,1,379.99,01/25/19 07:30,"431 Center St, New York City, NY 10001" +143951,Wired Headphones,1,11.99,01/28/19 13:07,"853 Lakeview St, Los Angeles, CA 90001" +143952,AAA Batteries (4-pack),2,2.99,01/29/19 11:23,"785 Cedar St, Dallas, TX 75001" +143953,iPhone,1,700,01/17/19 19:49,"653 Cedar St, Austin, TX 73301" +143954,27in 4K Gaming Monitor,1,389.99,01/02/19 16:25,"849 North St, Atlanta, GA 30301" +143955,27in 4K Gaming Monitor,1,389.99,01/11/19 20:56,"843 Chestnut St, Boston, MA 02215" +143956,AA Batteries (4-pack),1,3.84,01/18/19 11:19,"921 Walnut St, Seattle, WA 98101" +143957,USB-C Charging Cable,1,11.95,01/02/19 11:30,"910 13th St, San Francisco, CA 94016" +143958,Lightning Charging Cable,1,14.95,01/23/19 21:45,"22 Highland St, Portland, OR 97035" +143959,34in Ultrawide Monitor,1,379.99,01/18/19 15:12,"786 South St, Portland, OR 97035" +143960,AAA Batteries (4-pack),1,2.99,01/22/19 16:31,"146 Elm St, Atlanta, GA 30301" +143961,AAA Batteries (4-pack),2,2.99,01/01/19 23:52,"226 2nd St, Los Angeles, CA 90001" +143962,USB-C Charging Cable,1,11.95,01/03/19 09:00,"632 Lakeview St, Seattle, WA 98101" +143963,AA Batteries (4-pack),2,3.84,01/08/19 09:45,"401 Madison St, Boston, MA 02215" +143964,USB-C Charging Cable,2,11.95,01/30/19 14:29,"751 Ridge St, San Francisco, CA 94016" +143965,iPhone,1,700,01/22/19 16:38,"246 Hill St, Los Angeles, CA 90001" +143966,Bose SoundSport Headphones,1,99.99,01/20/19 10:11,"821 11th St, Seattle, WA 98101" +143967,27in FHD Monitor,1,149.99,01/01/19 13:13,"527 Center St, Portland, ME 04101" +143968,20in Monitor,1,109.99,01/27/19 10:54,"282 13th St, Boston, MA 02215" +143969,AAA Batteries (4-pack),1,2.99,01/15/19 17:33,"93 West St, Boston, MA 02215" +143970,USB-C Charging Cable,1,11.95,01/10/19 07:40,"246 Lakeview St, New York City, NY 10001" +143971,AA Batteries (4-pack),1,3.84,01/23/19 17:09,"670 Meadow St, Boston, MA 02215" +143972,Bose SoundSport Headphones,1,99.99,01/11/19 09:56,"697 Church St, San Francisco, CA 94016" +143973,Lightning Charging Cable,1,14.95,01/09/19 17:42,"38 North St, San Francisco, CA 94016" +143974,Bose SoundSport Headphones,1,99.99,01/10/19 16:31,"225 Jackson St, Dallas, TX 75001" +143975,Lightning Charging Cable,1,14.95,01/18/19 20:35,"683 4th St, Los Angeles, CA 90001" +143976,Bose SoundSport Headphones,1,99.99,01/04/19 07:45,"262 Maple St, Los Angeles, CA 90001" +143977,AAA Batteries (4-pack),2,2.99,01/31/19 20:54,"883 Lakeview St, San Francisco, CA 94016" +143978,Flatscreen TV,1,300,01/30/19 17:54,"44 River St, Los Angeles, CA 90001" +143979,AA Batteries (4-pack),1,3.84,01/02/19 12:41,"222 Elm St, Boston, MA 02215" +143980,USB-C Charging Cable,1,11.95,01/04/19 16:04,"546 Park St, San Francisco, CA 94016" +143981,Vareebadd Phone,1,400,01/24/19 18:10,"94 10th St, New York City, NY 10001" +143981,Wired Headphones,1,11.99,01/24/19 18:10,"94 10th St, New York City, NY 10001" +143982,27in FHD Monitor,1,149.99,01/27/19 20:22,"911 Lake St, New York City, NY 10001" +143983,USB-C Charging Cable,3,11.95,01/14/19 12:00,"889 6th St, Portland, OR 97035" +143984,AA Batteries (4-pack),1,3.84,01/21/19 11:22,"697 West St, Atlanta, GA 30301" +143985,27in 4K Gaming Monitor,1,389.99,01/15/19 08:28,"647 Walnut St, Atlanta, GA 30301" +143986,AAA Batteries (4-pack),2,2.99,01/10/19 22:32,"490 Adams St, San Francisco, CA 94016" +143987,27in FHD Monitor,1,149.99,01/07/19 16:00,"947 Cedar St, Dallas, TX 75001" +143988,Wired Headphones,1,11.99,01/04/19 06:12,"145 Maple St, Seattle, WA 98101" +143989,34in Ultrawide Monitor,1,379.99,01/21/19 19:53,"78 Cedar St, Austin, TX 73301" +143990,USB-C Charging Cable,1,11.95,01/29/19 17:57,"694 Spruce St, Seattle, WA 98101" +143991,27in 4K Gaming Monitor,1,389.99,01/03/19 10:42,"880 Sunset St, San Francisco, CA 94016" +143992,20in Monitor,1,109.99,01/05/19 21:07,"756 Washington St, San Francisco, CA 94016" +143993,AAA Batteries (4-pack),2,2.99,01/13/19 20:26,"955 Lake St, Dallas, TX 75001" +143994,ThinkPad Laptop,1,999.99,01/15/19 23:57,"388 Forest St, Los Angeles, CA 90001" +143995,Apple Airpods Headphones,1,150,01/03/19 11:32,"392 Walnut St, Atlanta, GA 30301" +143996,Google Phone,1,600,01/22/19 12:44,"901 2nd St, Los Angeles, CA 90001" +143997,Wired Headphones,1,11.99,01/21/19 16:03,"73 Park St, Seattle, WA 98101" +143998,20in Monitor,1,109.99,01/04/19 22:06,"94 Cedar St, Los Angeles, CA 90001" +143999,Apple Airpods Headphones,1,150,01/05/19 08:32,"677 Jefferson St, Los Angeles, CA 90001" +144000,Wired Headphones,1,11.99,01/04/19 12:33,"142 Ridge St, Austin, TX 73301" +144001,USB-C Charging Cable,1,11.95,01/06/19 10:01,"841 Elm St, San Francisco, CA 94016" +144002,AAA Batteries (4-pack),2,2.99,01/17/19 06:18,"108 Forest St, Dallas, TX 75001" +144003,Apple Airpods Headphones,1,150,01/24/19 02:11,"199 Washington St, Los Angeles, CA 90001" +144004,Lightning Charging Cable,1,14.95,01/09/19 11:07,"744 Cherry St, Los Angeles, CA 90001" +144005,AA Batteries (4-pack),1,3.84,01/03/19 13:14,"329 Cherry St, San Francisco, CA 94016" +144006,USB-C Charging Cable,1,11.95,01/19/19 22:21,"984 5th St, Los Angeles, CA 90001" +144007,Wired Headphones,1,11.99,01/21/19 19:09,"954 Chestnut St, San Francisco, CA 94016" +144008,20in Monitor,1,109.99,01/24/19 09:28,"385 Willow St, New York City, NY 10001" +144009,34in Ultrawide Monitor,1,379.99,01/16/19 00:50,"682 Washington St, San Francisco, CA 94016" +144010,Lightning Charging Cable,1,14.95,01/21/19 12:01,"652 Lake St, Boston, MA 02215" +144011,AAA Batteries (4-pack),1,2.99,01/11/19 12:55,"498 Lake St, San Francisco, CA 94016" +144012,AA Batteries (4-pack),1,3.84,01/05/19 10:54,"322 Pine St, New York City, NY 10001" +144013,Bose SoundSport Headphones,1,99.99,01/08/19 18:55,"994 Chestnut St, San Francisco, CA 94016" +144014,AAA Batteries (4-pack),1,2.99,01/05/19 13:48,"177 1st St, Boston, MA 02215" +144015,ThinkPad Laptop,1,999.99,01/07/19 10:47,"290 Main St, New York City, NY 10001" +144016,USB-C Charging Cable,1,11.95,01/24/19 22:41,"998 5th St, Los Angeles, CA 90001" +144017,27in FHD Monitor,1,149.99,01/04/19 18:44,"771 Church St, Portland, OR 97035" +144018,Lightning Charging Cable,1,14.95,01/03/19 22:19,"542 11th St, New York City, NY 10001" +144019,Wired Headphones,1,11.99,01/15/19 10:37,"415 Wilson St, Seattle, WA 98101" +144020,iPhone,1,700,01/30/19 13:35,"580 Ridge St, Boston, MA 02215" +144021,Bose SoundSport Headphones,1,99.99,01/01/19 15:12,"923 Forest St, Portland, OR 97035" +144022,AA Batteries (4-pack),1,3.84,01/18/19 20:42,"326 12th St, Portland, OR 97035" +144023,AA Batteries (4-pack),2,3.84,01/05/19 16:56,"527 Hickory St, San Francisco, CA 94016" +144024,27in 4K Gaming Monitor,1,389.99,01/17/19 20:25,"538 Willow St, San Francisco, CA 94016" +144025,AAA Batteries (4-pack),1,2.99,01/13/19 09:10,"652 Sunset St, San Francisco, CA 94016" +144026,Wired Headphones,1,11.99,01/29/19 18:59,"405 Meadow St, Dallas, TX 75001" +144027,USB-C Charging Cable,1,11.95,01/20/19 09:04,"728 Forest St, New York City, NY 10001" +144028,Apple Airpods Headphones,1,150,01/10/19 12:46,"499 9th St, Los Angeles, CA 90001" +144029,Google Phone,1,600,01/09/19 17:32,"768 Dogwood St, Atlanta, GA 30301" +144030,Wired Headphones,1,11.99,01/16/19 09:59,"202 2nd St, Seattle, WA 98101" +144031,AAA Batteries (4-pack),2,2.99,01/31/19 21:16,"240 13th St, Seattle, WA 98101" +144032,Google Phone,1,600,01/12/19 20:14,"42 North St, New York City, NY 10001" +144033,Macbook Pro Laptop,1,1700,01/03/19 17:41,"442 Madison St, Dallas, TX 75001" +144034,AA Batteries (4-pack),1,3.84,01/23/19 23:51,"582 Sunset St, Dallas, TX 75001" +144034,27in FHD Monitor,1,149.99,01/23/19 23:51,"582 Sunset St, Dallas, TX 75001" +144035,USB-C Charging Cable,1,11.95,01/16/19 10:38,"266 Hill St, Portland, ME 04101" +144036,Lightning Charging Cable,2,14.95,01/07/19 12:22,"91 Maple St, Dallas, TX 75001" +144037,Lightning Charging Cable,1,14.95,01/27/19 19:49,"438 Meadow St, Austin, TX 73301" +144038,Vareebadd Phone,1,400,01/11/19 13:44,"368 Wilson St, Dallas, TX 75001" +144039,Wired Headphones,1,11.99,01/05/19 20:06,"4 2nd St, New York City, NY 10001" +144040,Flatscreen TV,1,300,01/24/19 16:43,"971 7th St, New York City, NY 10001" +144041,20in Monitor,1,109.99,01/13/19 00:42,"843 Park St, San Francisco, CA 94016" +144042,AA Batteries (4-pack),1,3.84,01/09/19 20:53,"963 Johnson St, San Francisco, CA 94016" +144043,iPhone,1,700,01/22/19 22:25,"421 Main St, Boston, MA 02215" +144044,ThinkPad Laptop,1,999.99,01/06/19 21:23,"897 Sunset St, San Francisco, CA 94016" +144045,USB-C Charging Cable,1,11.95,01/11/19 12:37,"298 Cherry St, San Francisco, CA 94016" +144046,Flatscreen TV,1,300,01/20/19 13:43,"597 Church St, Dallas, TX 75001" +144047,Apple Airpods Headphones,1,150,01/03/19 15:01,"549 Hickory St, Los Angeles, CA 90001" +144048,Wired Headphones,1,11.99,01/15/19 13:40,"29 Dogwood St, New York City, NY 10001" +144049,Google Phone,1,600,01/14/19 18:46,"854 Pine St, Boston, MA 02215" +144050,ThinkPad Laptop,1,999.99,01/15/19 12:02,"844 Elm St, San Francisco, CA 94016" +144051,AAA Batteries (4-pack),1,2.99,01/29/19 18:57,"874 Meadow St, Austin, TX 73301" +144052,Lightning Charging Cable,1,14.95,01/08/19 19:19,"989 Cherry St, Atlanta, GA 30301" +144053,Wired Headphones,1,11.99,01/31/19 22:47,"102 North St, Boston, MA 02215" +144054,ThinkPad Laptop,1,999.99,01/19/19 21:47,"247 West St, Dallas, TX 75001" +144055,AAA Batteries (4-pack),1,2.99,01/03/19 09:04,"977 6th St, New York City, NY 10001" +144056,AAA Batteries (4-pack),2,2.99,01/05/19 17:25,"458 14th St, San Francisco, CA 94016" +144057,Vareebadd Phone,1,400,01/01/19 18:45,"674 Meadow St, San Francisco, CA 94016" +144058,27in 4K Gaming Monitor,1,389.99,01/07/19 08:06,"696 Lincoln St, Los Angeles, CA 90001" +144059,Wired Headphones,1,11.99,01/28/19 16:13,"749 Center St, Atlanta, GA 30301" +144060,Wired Headphones,2,11.99,01/01/19 19:21,"874 Cedar St, San Francisco, CA 94016" +144061,AAA Batteries (4-pack),2,2.99,01/27/19 11:43,"692 13th St, New York City, NY 10001" +144062,Bose SoundSport Headphones,1,99.99,01/03/19 13:47,"222 Dogwood St, San Francisco, CA 94016" +144063,LG Dryer,1,600.0,01/20/19 21:38,"598 Main St, San Francisco, CA 94016" +144064,iPhone,1,700,01/31/19 15:19,"68 4th St, Los Angeles, CA 90001" +144065,Lightning Charging Cable,1,14.95,01/25/19 12:39,"724 Ridge St, Seattle, WA 98101" +144066,20in Monitor,1,109.99,01/17/19 11:28,"919 Cherry St, Seattle, WA 98101" +144067,LG Dryer,1,600.0,01/02/19 21:21,"300 Ridge St, San Francisco, CA 94016" +144068,27in FHD Monitor,1,149.99,01/02/19 18:31,"463 River St, San Francisco, CA 94016" +144069,Lightning Charging Cable,1,14.95,01/17/19 14:59,"574 Lake St, Los Angeles, CA 90001" +144070,ThinkPad Laptop,1,999.99,01/04/19 21:51,"199 Center St, Los Angeles, CA 90001" +144071,Apple Airpods Headphones,1,150,01/08/19 14:10,"345 11th St, Los Angeles, CA 90001" +144072,Apple Airpods Headphones,1,150,01/11/19 22:45,"932 Wilson St, Dallas, TX 75001" +144073,Wired Headphones,1,11.99,01/22/19 14:44,"287 Maple St, Boston, MA 02215" +144074,AA Batteries (4-pack),1,3.84,01/24/19 15:36,"922 North St, Boston, MA 02215" +144075,Wired Headphones,1,11.99,01/28/19 21:34,"576 Pine St, Boston, MA 02215" +,,,,, +144076,LG Washing Machine,1,600.0,01/30/19 23:10,"145 Willow St, San Francisco, CA 94016" +144077,Apple Airpods Headphones,1,150,01/31/19 21:50,"699 Park St, Seattle, WA 98101" +144078,Bose SoundSport Headphones,1,99.99,01/21/19 19:09,"391 1st St, New York City, NY 10001" +144079,Bose SoundSport Headphones,1,99.99,01/19/19 19:48,"326 West St, Dallas, TX 75001" +144080,AA Batteries (4-pack),1,3.84,01/31/19 11:25,"87 Washington St, San Francisco, CA 94016" +144081,AA Batteries (4-pack),1,3.84,01/05/19 23:12,"271 Church St, Los Angeles, CA 90001" +144082,20in Monitor,1,109.99,01/20/19 11:45,"280 Lake St, San Francisco, CA 94016" +144083,AA Batteries (4-pack),2,3.84,01/11/19 05:03,"918 West St, San Francisco, CA 94016" +144084,Apple Airpods Headphones,1,150,01/04/19 10:27,"819 Highland St, Los Angeles, CA 90001" +144085,LG Dryer,1,600.0,01/25/19 20:57,"721 2nd St, Atlanta, GA 30301" +144086,Google Phone,1,600,01/16/19 22:27,"129 13th St, New York City, NY 10001" +144087,Apple Airpods Headphones,1,150,01/14/19 17:13,"499 Maple St, New York City, NY 10001" +144088,AA Batteries (4-pack),1,3.84,01/11/19 13:17,"475 Cedar St, Dallas, TX 75001" +144089,27in FHD Monitor,1,149.99,01/23/19 20:01,"734 Elm St, New York City, NY 10001" +144090,27in 4K Gaming Monitor,1,389.99,01/09/19 19:57,"695 Jefferson St, Boston, MA 02215" +144091,Bose SoundSport Headphones,1,99.99,01/21/19 22:50,"994 South St, Austin, TX 73301" +144092,AAA Batteries (4-pack),1,2.99,01/18/19 18:28,"866 Hill St, Portland, ME 04101" +144093,Apple Airpods Headphones,1,150,01/17/19 15:09,"296 Jackson St, San Francisco, CA 94016" +144094,Apple Airpods Headphones,1,150,01/09/19 12:53,"61 Spruce St, San Francisco, CA 94016" +144095,Bose SoundSport Headphones,1,99.99,01/12/19 18:22,"790 9th St, San Francisco, CA 94016" +144096,Apple Airpods Headphones,1,150,01/02/19 23:05,"821 Washington St, Portland, OR 97035" +144097,AA Batteries (4-pack),1,3.84,01/22/19 23:38,"977 Meadow St, New York City, NY 10001" +144098,AA Batteries (4-pack),7,3.84,01/03/19 14:34,"188 South St, San Francisco, CA 94016" +144099,AAA Batteries (4-pack),1,2.99,01/28/19 13:41,"63 Forest St, Seattle, WA 98101" +144100,USB-C Charging Cable,1,11.95,01/06/19 13:06,"168 5th St, Los Angeles, CA 90001" +144101,iPhone,1,700,01/20/19 07:50,"391 Church St, Seattle, WA 98101" +144101,Wired Headphones,1,11.99,01/20/19 07:50,"391 Church St, Seattle, WA 98101" +144102,Apple Airpods Headphones,1,150,01/22/19 18:10,"129 Willow St, New York City, NY 10001" +144103,Lightning Charging Cable,1,14.95,01/11/19 02:17,"67 Lake St, Boston, MA 02215" +144104,Bose SoundSport Headphones,1,99.99,01/31/19 11:24,"1 South St, Dallas, TX 75001" +144104,AA Batteries (4-pack),2,3.84,01/31/19 11:24,"1 South St, Dallas, TX 75001" +144105,AA Batteries (4-pack),2,3.84,01/26/19 13:25,"282 Maple St, Dallas, TX 75001" +144106,Vareebadd Phone,1,400,01/25/19 14:38,"612 Jefferson St, New York City, NY 10001" +144107,Google Phone,1,600,01/05/19 16:09,"513 South St, Boston, MA 02215" +144107,Wired Headphones,1,11.99,01/05/19 16:09,"513 South St, Boston, MA 02215" +144108,20in Monitor,1,109.99,01/03/19 09:15,"320 Spruce St, Atlanta, GA 30301" +144109,Wired Headphones,1,11.99,01/22/19 11:28,"858 Hickory St, Los Angeles, CA 90001" +144110,Wired Headphones,1,11.99,01/22/19 08:01,"472 Sunset St, Los Angeles, CA 90001" +144111,Apple Airpods Headphones,1,150,01/03/19 12:54,"440 Highland St, Austin, TX 73301" +144112,AA Batteries (4-pack),1,3.84,01/12/19 11:25,"594 Lincoln St, New York City, NY 10001" +144113,Bose SoundSport Headphones,1,99.99,01/10/19 20:35,"557 14th St, San Francisco, CA 94016" +144113,AAA Batteries (4-pack),2,2.99,01/10/19 20:35,"557 14th St, San Francisco, CA 94016" +144114,AAA Batteries (4-pack),1,2.99,01/22/19 14:01,"179 7th St, Atlanta, GA 30301" +144115,Wired Headphones,1,11.99,01/20/19 06:52,"745 10th St, San Francisco, CA 94016" +144116,Lightning Charging Cable,1,14.95,01/29/19 17:00,"762 Park St, San Francisco, CA 94016" +144117,AAA Batteries (4-pack),1,2.99,01/05/19 22:31,"786 2nd St, Los Angeles, CA 90001" +144118,Wired Headphones,1,11.99,01/02/19 09:51,"951 Sunset St, Portland, OR 97035" +144119,Lightning Charging Cable,1,14.95,01/23/19 22:15,"9 Cedar St, Los Angeles, CA 90001" +144120,Wired Headphones,1,11.99,01/24/19 22:16,"730 Adams St, San Francisco, CA 94016" +144121,USB-C Charging Cable,1,11.95,01/04/19 22:31,"405 2nd St, Seattle, WA 98101" +144122,AAA Batteries (4-pack),3,2.99,01/29/19 18:32,"27 14th St, Dallas, TX 75001" +144123,Lightning Charging Cable,1,14.95,01/03/19 00:47,"440 Spruce St, New York City, NY 10001" +144124,Apple Airpods Headphones,1,150,01/12/19 15:42,"806 Cedar St, Boston, MA 02215" +144125,USB-C Charging Cable,1,11.95,01/22/19 13:20,"307 Center St, Los Angeles, CA 90001" +144126,27in FHD Monitor,1,149.99,01/01/19 22:02,"313 Willow St, Atlanta, GA 30301" +144127,Wired Headphones,1,11.99,01/28/19 20:02,"670 Sunset St, New York City, NY 10001" +144128,USB-C Charging Cable,1,11.95,01/29/19 16:19,"852 Chestnut St, San Francisco, CA 94016" +144129,iPhone,1,700,01/03/19 23:48,"642 2nd St, Los Angeles, CA 90001" +144130,Google Phone,1,600,01/15/19 23:26,"846 Spruce St, Dallas, TX 75001" +144131,Wired Headphones,1,11.99,01/08/19 14:18,"8 Lincoln St, Seattle, WA 98101" +144132,ThinkPad Laptop,1,999.99,01/23/19 02:58,"478 Maple St, Los Angeles, CA 90001" +144133,AA Batteries (4-pack),1,3.84,01/01/19 17:04,"112 9th St, Dallas, TX 75001" +144134,AAA Batteries (4-pack),3,2.99,01/19/19 10:44,"357 7th St, Atlanta, GA 30301" +144135,Wired Headphones,1,11.99,01/16/19 21:29,"485 Highland St, Seattle, WA 98101" +144136,AAA Batteries (4-pack),2,2.99,01/24/19 15:32,"821 Center St, San Francisco, CA 94016" +144137,iPhone,1,700,01/12/19 19:09,"182 Walnut St, Los Angeles, CA 90001" +144138,Apple Airpods Headphones,1,150,01/28/19 21:10,"70 Sunset St, San Francisco, CA 94016" +144139,Wired Headphones,1,11.99,01/11/19 19:45,"246 6th St, New York City, NY 10001" +144140,AA Batteries (4-pack),1,3.84,01/29/19 12:52,"880 Ridge St, San Francisco, CA 94016" +144141,AA Batteries (4-pack),1,3.84,01/16/19 10:45,"161 Ridge St, Portland, OR 97035" +144142,Wired Headphones,1,11.99,01/21/19 10:49,"387 Washington St, Seattle, WA 98101" +144143,USB-C Charging Cable,1,11.95,01/13/19 09:00,"238 Lincoln St, Austin, TX 73301" +144144,Apple Airpods Headphones,1,150,01/10/19 16:54,"979 Lake St, Seattle, WA 98101" +144145,Bose SoundSport Headphones,1,99.99,01/06/19 23:50,"184 Highland St, Austin, TX 73301" +144146,Bose SoundSport Headphones,1,99.99,01/22/19 00:05,"586 Spruce St, Austin, TX 73301" +144147,AAA Batteries (4-pack),2,2.99,01/30/19 13:10,"438 Cherry St, Atlanta, GA 30301" +144148,Macbook Pro Laptop,1,1700,01/24/19 23:57,"337 Wilson St, Seattle, WA 98101" +144149,Google Phone,1,600,01/03/19 11:14,"24 Washington St, Austin, TX 73301" +144150,Bose SoundSport Headphones,1,99.99,01/12/19 00:44,"582 Highland St, Atlanta, GA 30301" +144151,Google Phone,1,600,01/11/19 23:35,"282 Willow St, San Francisco, CA 94016" +144152,Wired Headphones,1,11.99,01/25/19 20:13,"97 Spruce St, Los Angeles, CA 90001" +144153,Apple Airpods Headphones,1,150,01/12/19 19:14,"613 12th St, San Francisco, CA 94016" +144153,iPhone,1,700,01/12/19 19:14,"613 12th St, San Francisco, CA 94016" +144154,34in Ultrawide Monitor,1,379.99,01/10/19 17:46,"76 Forest St, New York City, NY 10001" +144155,Wired Headphones,1,11.99,01/25/19 13:40,"338 Park St, San Francisco, CA 94016" +144156,Lightning Charging Cable,1,14.95,01/06/19 14:33,"620 12th St, Austin, TX 73301" +144157,AA Batteries (4-pack),1,3.84,01/29/19 21:03,"580 Jefferson St, Portland, OR 97035" +144158,34in Ultrawide Monitor,1,379.99,01/16/19 19:36,"771 South St, Los Angeles, CA 90001" +144159,Lightning Charging Cable,1,14.95,01/09/19 08:41,"165 5th St, Los Angeles, CA 90001" +144160,Wired Headphones,1,11.99,01/19/19 14:06,"225 Sunset St, New York City, NY 10001" +144161,USB-C Charging Cable,2,11.95,01/20/19 20:30,"335 11th St, Boston, MA 02215" +144162,Wired Headphones,1,11.99,01/03/19 22:05,"863 Pine St, Dallas, TX 75001" +144163,Lightning Charging Cable,1,14.95,01/29/19 10:05,"345 Pine St, Los Angeles, CA 90001" +144164,20in Monitor,1,109.99,01/25/19 19:38,"739 Main St, Seattle, WA 98101" +144165,34in Ultrawide Monitor,1,379.99,01/17/19 10:10,"45 West St, Boston, MA 02215" +144166,Lightning Charging Cable,1,14.95,01/20/19 20:00,"792 Willow St, San Francisco, CA 94016" +144167,iPhone,1,700,01/02/19 10:58,"385 Highland St, San Francisco, CA 94016" +144167,Wired Headphones,1,11.99,01/02/19 10:58,"385 Highland St, San Francisco, CA 94016" +144168,Wired Headphones,1,11.99,01/04/19 17:14,"956 River St, Los Angeles, CA 90001" +144169,USB-C Charging Cable,1,11.95,01/26/19 11:42,"221 1st St, Austin, TX 73301" +144170,20in Monitor,1,109.99,01/10/19 13:57,"919 River St, Atlanta, GA 30301" +144171,34in Ultrawide Monitor,1,379.99,01/06/19 03:15,"855 7th St, Boston, MA 02215" +144172,ThinkPad Laptop,1,999.99,01/26/19 19:04,"799 Lincoln St, San Francisco, CA 94016" +,,,,, +144173,AAA Batteries (4-pack),1,2.99,01/13/19 09:25,"727 Adams St, San Francisco, CA 94016" +144174,Google Phone,1,600,01/17/19 05:31,"180 River St, San Francisco, CA 94016" +144175,USB-C Charging Cable,1,11.95,01/26/19 21:52,"831 Cherry St, Seattle, WA 98101" +144176,27in 4K Gaming Monitor,1,389.99,01/12/19 00:08,"349 River St, New York City, NY 10001" +144177,AAA Batteries (4-pack),2,2.99,01/10/19 21:27,"947 9th St, San Francisco, CA 94016" +144178,27in 4K Gaming Monitor,1,389.99,01/14/19 12:51,"613 7th St, Portland, OR 97035" +144179,Google Phone,1,600,01/03/19 13:13,"632 Spruce St, Portland, OR 97035" +144180,27in FHD Monitor,1,149.99,01/24/19 00:14,"805 8th St, Los Angeles, CA 90001" +144181,Wired Headphones,1,11.99,01/31/19 22:30,"369 Ridge St, Boston, MA 02215" +144182,Bose SoundSport Headphones,1,99.99,01/27/19 22:14,"490 Johnson St, Boston, MA 02215" +144183,Apple Airpods Headphones,1,150,01/18/19 19:17,"248 1st St, Dallas, TX 75001" +144184,AAA Batteries (4-pack),2,2.99,01/04/19 13:19,"245 Dogwood St, San Francisco, CA 94016" +144185,LG Washing Machine,1,600.0,01/04/19 10:54,"254 Maple St, Los Angeles, CA 90001" +144186,Wired Headphones,1,11.99,01/04/19 20:24,"728 1st St, New York City, NY 10001" +144187,AAA Batteries (4-pack),1,2.99,01/02/19 10:38,"875 Wilson St, New York City, NY 10001" +144188,27in 4K Gaming Monitor,1,389.99,01/24/19 20:33,"555 Cherry St, Portland, OR 97035" +144189,AA Batteries (4-pack),1,3.84,01/31/19 18:14,"438 Johnson St, Atlanta, GA 30301" +144190,Apple Airpods Headphones,1,150,01/22/19 10:28,"11 Madison St, Dallas, TX 75001" +144191,Lightning Charging Cable,1,14.95,01/25/19 18:18,"650 Adams St, Austin, TX 73301" +144192,AA Batteries (4-pack),2,3.84,01/11/19 18:02,"307 Dogwood St, New York City, NY 10001" +144193,USB-C Charging Cable,1,11.95,01/04/19 23:52,"116 Willow St, San Francisco, CA 94016" +144194,Wired Headphones,1,11.99,01/16/19 11:34,"766 Highland St, New York City, NY 10001" +144195,Bose SoundSport Headphones,1,99.99,01/03/19 18:33,"765 Walnut St, Boston, MA 02215" +144196,ThinkPad Laptop,1,999.99,01/08/19 15:10,"192 Madison St, New York City, NY 10001" +144197,Lightning Charging Cable,1,14.95,01/07/19 13:26,"961 Madison St, Dallas, TX 75001" +144198,AAA Batteries (4-pack),1,2.99,01/01/19 21:52,"271 5th St, Portland, OR 97035" +144199,USB-C Charging Cable,1,11.95,01/07/19 20:07,"158 9th St, Boston, MA 02215" +144200,Lightning Charging Cable,1,14.95,01/23/19 02:42,"653 Main St, Portland, OR 97035" +144201,Lightning Charging Cable,1,14.95,01/31/19 23:20,"788 Willow St, San Francisco, CA 94016" +144202,USB-C Charging Cable,1,11.95,01/20/19 17:23,"67 Willow St, San Francisco, CA 94016" +144203,iPhone,1,700,01/23/19 01:18,"524 Center St, New York City, NY 10001" +144204,Bose SoundSport Headphones,1,99.99,01/27/19 21:43,"223 Jefferson St, San Francisco, CA 94016" +144205,ThinkPad Laptop,1,999.99,01/17/19 22:28,"690 Chestnut St, New York City, NY 10001" +144206,AAA Batteries (4-pack),3,2.99,01/08/19 11:31,"242 Cedar St, Dallas, TX 75001" +144207,AA Batteries (4-pack),1,3.84,01/15/19 16:08,"433 Lincoln St, Los Angeles, CA 90001" +144208,Wired Headphones,1,11.99,01/28/19 14:17,"83 River St, Boston, MA 02215" +144209,AAA Batteries (4-pack),1,2.99,01/15/19 20:15,"238 Sunset St, San Francisco, CA 94016" +144210,USB-C Charging Cable,1,11.95,01/15/19 19:27,"235 8th St, San Francisco, CA 94016" +144211,Vareebadd Phone,1,400,01/27/19 20:49,"657 Hickory St, New York City, NY 10001" +144212,AAA Batteries (4-pack),5,2.99,01/06/19 19:07,"761 Cherry St, Portland, OR 97035" +144213,Apple Airpods Headphones,1,150,01/14/19 08:15,"809 14th St, Boston, MA 02215" +144214,Apple Airpods Headphones,1,150,01/20/19 14:47,"126 Washington St, Boston, MA 02215" +144215,iPhone,1,700,01/03/19 04:50,"551 Cherry St, San Francisco, CA 94016" +144216,AA Batteries (4-pack),1,3.84,01/01/19 18:37,"867 Pine St, Portland, OR 97035" +144217,Lightning Charging Cable,1,14.95,01/16/19 09:54,"881 Park St, Los Angeles, CA 90001" +144218,AAA Batteries (4-pack),2,2.99,01/26/19 19:25,"426 12th St, Austin, TX 73301" +144219,ThinkPad Laptop,1,999.99,01/23/19 19:21,"253 Wilson St, San Francisco, CA 94016" +144220,Apple Airpods Headphones,1,150,01/23/19 19:53,"703 Highland St, San Francisco, CA 94016" +144221,Flatscreen TV,1,300,01/16/19 04:15,"53 North St, New York City, NY 10001" +144222,AA Batteries (4-pack),1,3.84,01/31/19 19:08,"932 Johnson St, Boston, MA 02215" +144223,Google Phone,1,600,01/28/19 12:39,"515 Hill St, Atlanta, GA 30301" +144223,USB-C Charging Cable,1,11.95,01/28/19 12:39,"515 Hill St, Atlanta, GA 30301" +144224,34in Ultrawide Monitor,1,379.99,01/04/19 17:32,"449 Lakeview St, New York City, NY 10001" +144225,USB-C Charging Cable,1,11.95,01/19/19 18:52,"563 6th St, New York City, NY 10001" +144226,Wired Headphones,2,11.99,01/30/19 10:52,"155 Highland St, San Francisco, CA 94016" +144227,Apple Airpods Headphones,1,150,01/05/19 12:26,"498 Johnson St, San Francisco, CA 94016" +144228,AA Batteries (4-pack),2,3.84,01/03/19 16:38,"227 Lincoln St, San Francisco, CA 94016" +144229,Apple Airpods Headphones,1,150,01/24/19 22:57,"918 9th St, Los Angeles, CA 90001" +144230,AA Batteries (4-pack),1,3.84,01/24/19 18:24,"546 Elm St, Los Angeles, CA 90001" +144231,Vareebadd Phone,1,400,01/19/19 13:14,"247 Elm St, Dallas, TX 75001" +144232,AA Batteries (4-pack),1,3.84,01/10/19 18:59,"672 4th St, Dallas, TX 75001" +144233,USB-C Charging Cable,2,11.95,01/29/19 12:59,"627 10th St, San Francisco, CA 94016" +144234,USB-C Charging Cable,1,11.95,01/02/19 18:25,"32 Dogwood St, Seattle, WA 98101" +144235,27in FHD Monitor,1,149.99,01/18/19 10:59,"868 Cedar St, Boston, MA 02215" +144236,Wired Headphones,1,11.99,01/07/19 18:47,"301 4th St, Los Angeles, CA 90001" +144237,Vareebadd Phone,1,400,01/07/19 13:04,"189 9th St, Austin, TX 73301" +144238,Google Phone,1,600,01/06/19 12:37,"7 Meadow St, Atlanta, GA 30301" +144239,AA Batteries (4-pack),1,3.84,01/22/19 11:24,"840 Jackson St, San Francisco, CA 94016" +144240,27in FHD Monitor,1,149.99,01/09/19 11:26,"855 Lincoln St, San Francisco, CA 94016" +144241,Lightning Charging Cable,1,14.95,01/17/19 17:00,"701 Highland St, Boston, MA 02215" +144242,USB-C Charging Cable,2,11.95,01/05/19 23:23,"801 Madison St, New York City, NY 10001" +144243,Bose SoundSport Headphones,1,99.99,01/28/19 18:50,"963 Meadow St, Seattle, WA 98101" +144244,AAA Batteries (4-pack),1,2.99,01/21/19 10:09,"641 Lincoln St, San Francisco, CA 94016" +144245,Flatscreen TV,1,300,01/08/19 13:16,"842 Madison St, Atlanta, GA 30301" +144246,ThinkPad Laptop,1,999.99,01/27/19 20:39,"243 Willow St, Los Angeles, CA 90001" +,,,,, +144247,USB-C Charging Cable,1,11.95,01/30/19 20:27,"132 12th St, New York City, NY 10001" +144248,Wired Headphones,1,11.99,01/10/19 21:28,"874 6th St, Los Angeles, CA 90001" +144249,Bose SoundSport Headphones,1,99.99,01/23/19 02:34,"190 Pine St, San Francisco, CA 94016" +144250,Flatscreen TV,1,300,01/23/19 10:58,"739 Hill St, Seattle, WA 98101" +144251,AAA Batteries (4-pack),1,2.99,01/21/19 20:57,"349 1st St, Los Angeles, CA 90001" +144252,AAA Batteries (4-pack),1,2.99,01/10/19 15:27,"69 Dogwood St, New York City, NY 10001" +144253,27in 4K Gaming Monitor,1,389.99,01/28/19 18:12,"482 Meadow St, Atlanta, GA 30301" +144254,iPhone,1,700,01/11/19 23:28,"34 Jefferson St, Los Angeles, CA 90001" +144255,USB-C Charging Cable,1,11.95,01/02/19 23:47,"762 Highland St, Los Angeles, CA 90001" +144256,USB-C Charging Cable,1,11.95,01/09/19 14:41,"817 Forest St, Austin, TX 73301" +144257,USB-C Charging Cable,2,11.95,01/11/19 02:02,"642 14th St, San Francisco, CA 94016" +144258,Wired Headphones,1,11.99,01/22/19 10:42,"885 Adams St, Austin, TX 73301" +144259,AA Batteries (4-pack),2,3.84,01/09/19 05:45,"496 Lakeview St, New York City, NY 10001" +144260,Wired Headphones,1,11.99,01/06/19 17:25,"572 West St, Atlanta, GA 30301" +144261,Apple Airpods Headphones,1,150,01/19/19 18:08,"156 Forest St, Los Angeles, CA 90001" +144262,AA Batteries (4-pack),1,3.84,01/09/19 10:08,"308 Main St, Austin, TX 73301" +144262,Bose SoundSport Headphones,1,99.99,01/09/19 10:08,"308 Main St, Austin, TX 73301" +144263,USB-C Charging Cable,1,11.95,01/14/19 16:42,"196 Pine St, San Francisco, CA 94016" +144264,Wired Headphones,1,11.99,01/12/19 11:36,"580 Lakeview St, Los Angeles, CA 90001" +144265,34in Ultrawide Monitor,1,379.99,01/12/19 15:58,"429 Johnson St, San Francisco, CA 94016" +144266,LG Dryer,1,600.0,01/25/19 20:38,"989 North St, Dallas, TX 75001" +144267,Apple Airpods Headphones,1,150,01/15/19 13:56,"439 7th St, New York City, NY 10001" +144268,AAA Batteries (4-pack),2,2.99,01/25/19 13:22,"40 9th St, San Francisco, CA 94016" +144269,ThinkPad Laptop,1,999.99,01/02/19 08:16,"846 12th St, Dallas, TX 75001" +144270,AAA Batteries (4-pack),1,2.99,01/23/19 07:01,"118 Sunset St, Atlanta, GA 30301" +144271,Macbook Pro Laptop,1,1700,01/15/19 11:10,"17 9th St, San Francisco, CA 94016" +144272,AAA Batteries (4-pack),2,2.99,01/17/19 13:18,"898 2nd St, Austin, TX 73301" +144272,Flatscreen TV,1,300,01/17/19 13:18,"898 2nd St, Austin, TX 73301" +144273,Google Phone,1,600,01/31/19 10:36,"235 Ridge St, San Francisco, CA 94016" +144274,Lightning Charging Cable,1,14.95,01/23/19 12:56,"573 6th St, New York City, NY 10001" +144275,AA Batteries (4-pack),2,3.84,01/08/19 18:43,"315 11th St, Boston, MA 02215" +144276,Lightning Charging Cable,1,14.95,01/30/19 19:16,"817 Jefferson St, Dallas, TX 75001" +144277,27in FHD Monitor,1,149.99,01/21/19 17:45,"538 4th St, New York City, NY 10001" +144278,USB-C Charging Cable,1,11.95,01/31/19 19:40,"152 Wilson St, San Francisco, CA 94016" +144279,Macbook Pro Laptop,1,1700,01/28/19 10:00,"526 2nd St, San Francisco, CA 94016" +144280,Lightning Charging Cable,1,14.95,01/11/19 20:29,"323 Lincoln St, San Francisco, CA 94016" +144281,34in Ultrawide Monitor,1,379.99,01/25/19 19:49,"860 11th St, Atlanta, GA 30301" +144282,Lightning Charging Cable,1,14.95,01/09/19 20:58,"485 Pine St, Los Angeles, CA 90001" +144283,Lightning Charging Cable,1,14.95,01/13/19 19:53,"725 Lakeview St, Boston, MA 02215" +144284,USB-C Charging Cable,1,11.95,01/14/19 11:19,"397 5th St, Los Angeles, CA 90001" +144285,AA Batteries (4-pack),1,3.84,01/01/19 20:49,"75 7th St, Los Angeles, CA 90001" +144286,USB-C Charging Cable,1,11.95,01/19/19 19:43,"829 6th St, Austin, TX 73301" +144287,AAA Batteries (4-pack),1,2.99,01/14/19 19:52,"843 Jackson St, New York City, NY 10001" +144288,ThinkPad Laptop,1,999.99,01/03/19 12:17,"876 4th St, Seattle, WA 98101" +144289,Apple Airpods Headphones,1,150,01/04/19 08:10,"337 Pine St, Boston, MA 02215" +144290,AAA Batteries (4-pack),3,2.99,01/10/19 01:41,"405 Pine St, New York City, NY 10001" +144291,Flatscreen TV,1,300,01/25/19 14:01,"524 Elm St, Dallas, TX 75001" +144292,27in FHD Monitor,1,149.99,01/12/19 19:08,"978 Elm St, Boston, MA 02215" +144293,USB-C Charging Cable,1,11.95,01/28/19 08:04,"946 14th St, New York City, NY 10001" +144294,AA Batteries (4-pack),1,3.84,01/13/19 15:32,"93 Walnut St, Los Angeles, CA 90001" +144295,AA Batteries (4-pack),1,3.84,01/02/19 20:18,"179 6th St, New York City, NY 10001" +144296,27in FHD Monitor,1,149.99,01/18/19 15:10,"124 9th St, Los Angeles, CA 90001" +144297,AAA Batteries (4-pack),1,2.99,01/08/19 17:29,"371 Center St, New York City, NY 10001" +144298,USB-C Charging Cable,1,11.95,01/25/19 01:24,"923 Forest St, Los Angeles, CA 90001" +144299,Macbook Pro Laptop,1,1700,01/17/19 12:02,"720 Jefferson St, Atlanta, GA 30301" +144300,Bose SoundSport Headphones,1,99.99,01/22/19 12:09,"944 Cedar St, New York City, NY 10001" +144301,Flatscreen TV,1,300,01/21/19 14:18,"137 Highland St, Los Angeles, CA 90001" +144302,AAA Batteries (4-pack),1,2.99,01/19/19 10:53,"68 Walnut St, San Francisco, CA 94016" +144303,Lightning Charging Cable,1,14.95,01/24/19 09:41,"386 Dogwood St, New York City, NY 10001" +144304,20in Monitor,1,109.99,01/11/19 17:15,"265 Center St, Portland, OR 97035" +144305,Lightning Charging Cable,1,14.95,01/18/19 15:56,"942 Walnut St, Los Angeles, CA 90001" +144306,USB-C Charging Cable,2,11.95,01/24/19 11:42,"644 Sunset St, Dallas, TX 75001" +144307,Google Phone,1,600,01/07/19 09:53,"575 Ridge St, Portland, OR 97035" +144307,Bose SoundSport Headphones,2,99.99,01/07/19 09:53,"575 Ridge St, Portland, OR 97035" +144308,27in FHD Monitor,1,149.99,01/08/19 13:35,"131 6th St, Boston, MA 02215" +144309,Lightning Charging Cable,1,14.95,01/07/19 13:20,"334 Pine St, New York City, NY 10001" +144310,Bose SoundSport Headphones,1,99.99,01/02/19 21:20,"326 Pine St, San Francisco, CA 94016" +144311,Apple Airpods Headphones,1,150,01/02/19 16:55,"256 8th St, Los Angeles, CA 90001" +144312,AA Batteries (4-pack),2,3.84,01/09/19 01:45,"442 10th St, New York City, NY 10001" +144313,Apple Airpods Headphones,1,150,01/15/19 23:22,"947 Cedar St, Boston, MA 02215" +144314,Lightning Charging Cable,1,14.95,01/16/19 11:34,"774 9th St, Dallas, TX 75001" +144315,AA Batteries (4-pack),1,3.84,01/19/19 04:19,"914 11th St, Los Angeles, CA 90001" +144316,34in Ultrawide Monitor,1,379.99,01/30/19 17:34,"89 River St, Boston, MA 02215" +144317,LG Dryer,1,600.0,01/14/19 19:30,"312 Spruce St, Los Angeles, CA 90001" +144318,AAA Batteries (4-pack),1,2.99,01/31/19 19:42,"36 Washington St, Dallas, TX 75001" +144319,USB-C Charging Cable,1,11.95,01/26/19 16:44,"791 Pine St, Seattle, WA 98101" +144320,Bose SoundSport Headphones,1,99.99,01/13/19 20:24,"278 Willow St, Portland, OR 97035" +144321,Apple Airpods Headphones,1,150,01/01/19 08:53,"195 1st St, Atlanta, GA 30301" +144322,Google Phone,1,600,01/01/19 10:37,"732 Park St, Los Angeles, CA 90001" +144323,27in 4K Gaming Monitor,1,389.99,01/28/19 18:18,"347 Hill St, Austin, TX 73301" +144324,34in Ultrawide Monitor,1,379.99,01/01/19 15:31,"188 Meadow St, San Francisco, CA 94016" +144325,Wired Headphones,1,11.99,01/24/19 18:11,"2 Church St, Los Angeles, CA 90001" +144326,USB-C Charging Cable,1,11.95,01/13/19 15:11,"26 Forest St, Los Angeles, CA 90001" +144327,Wired Headphones,1,11.99,01/31/19 17:25,"916 Highland St, Austin, TX 73301" +144328,ThinkPad Laptop,1,999.99,01/21/19 09:09,"515 Forest St, San Francisco, CA 94016" +144329,Google Phone,1,600,01/13/19 16:21,"608 11th St, Boston, MA 02215" +144330,Lightning Charging Cable,1,14.95,01/18/19 17:12,"245 14th St, Seattle, WA 98101" +144331,Apple Airpods Headphones,1,150,01/05/19 14:45,"828 Hill St, Los Angeles, CA 90001" +144332,Lightning Charging Cable,1,14.95,01/03/19 19:30,"169 Johnson St, Atlanta, GA 30301" +144333,Google Phone,1,600,01/31/19 16:50,"108 West St, Atlanta, GA 30301" +144334,Wired Headphones,1,11.99,01/24/19 17:28,"126 Johnson St, San Francisco, CA 94016" +144335,USB-C Charging Cable,1,11.95,01/31/19 14:00,"338 Hickory St, Los Angeles, CA 90001" +144336,Bose SoundSport Headphones,1,99.99,01/21/19 17:54,"472 12th St, San Francisco, CA 94016" +144337,Lightning Charging Cable,1,14.95,01/15/19 19:08,"884 Willow St, Los Angeles, CA 90001" +144338,Macbook Pro Laptop,1,1700,01/02/19 16:54,"218 Meadow St, Los Angeles, CA 90001" +144339,USB-C Charging Cable,2,11.95,01/21/19 15:39,"974 Lincoln St, Los Angeles, CA 90001" +144340,iPhone,1,700,01/18/19 20:02,"425 Lakeview St, Los Angeles, CA 90001" +144340,Lightning Charging Cable,1,14.95,01/18/19 20:02,"425 Lakeview St, Los Angeles, CA 90001" +144341,Apple Airpods Headphones,1,150,01/23/19 06:38,"404 Pine St, Dallas, TX 75001" +144342,USB-C Charging Cable,1,11.95,01/06/19 16:21,"276 5th St, San Francisco, CA 94016" +144343,AA Batteries (4-pack),1,3.84,01/01/19 19:43,"243 Lakeview St, San Francisco, CA 94016" +144344,AA Batteries (4-pack),2,3.84,01/01/19 15:05,"332 Lakeview St, San Francisco, CA 94016" +144345,Google Phone,1,600,01/02/19 22:46,"368 1st St, San Francisco, CA 94016" +144345,Bose SoundSport Headphones,1,99.99,01/02/19 22:46,"368 1st St, San Francisco, CA 94016" +144346,Lightning Charging Cable,1,14.95,01/18/19 21:12,"383 Johnson St, San Francisco, CA 94016" +144347,USB-C Charging Cable,1,11.95,01/06/19 09:59,"423 Lakeview St, Boston, MA 02215" +144347,AA Batteries (4-pack),1,3.84,01/06/19 09:59,"423 Lakeview St, Boston, MA 02215" +144348,Google Phone,1,600,01/07/19 12:36,"595 Willow St, Portland, OR 97035" +144349,Lightning Charging Cable,1,14.95,01/10/19 13:23,"413 6th St, Boston, MA 02215" +144350,27in 4K Gaming Monitor,1,389.99,01/29/19 22:29,"524 Chestnut St, Los Angeles, CA 90001" +144351,Apple Airpods Headphones,1,150,01/14/19 12:37,"677 Adams St, San Francisco, CA 94016" +144352,USB-C Charging Cable,1,11.95,01/26/19 00:19,"473 Meadow St, Atlanta, GA 30301" +144353,Lightning Charging Cable,1,14.95,01/06/19 06:00,"859 Cedar St, New York City, NY 10001" +144354,34in Ultrawide Monitor,1,379.99,01/02/19 14:11,"567 Dogwood St, Portland, OR 97035" +144355,USB-C Charging Cable,1,11.95,01/29/19 07:48,"763 13th St, Portland, OR 97035" +144356,AAA Batteries (4-pack),3,2.99,01/08/19 19:52,"791 Meadow St, Portland, OR 97035" +144357,Wired Headphones,1,11.99,01/24/19 19:17,"954 2nd St, San Francisco, CA 94016" +144358,Vareebadd Phone,1,400,01/20/19 11:15,"355 7th St, Dallas, TX 75001" +144359,34in Ultrawide Monitor,1,379.99,01/01/19 16:55,"961 Adams St, Austin, TX 73301" +144359,USB-C Charging Cable,1,11.95,01/01/19 16:55,"961 Adams St, Austin, TX 73301" +144360,Lightning Charging Cable,1,14.95,01/01/19 11:19,"731 2nd St, San Francisco, CA 94016" +144361,AA Batteries (4-pack),1,3.84,01/03/19 05:30,"986 8th St, San Francisco, CA 94016" +144362,Lightning Charging Cable,1,14.95,01/26/19 17:16,"511 Park St, Atlanta, GA 30301" +144363,Apple Airpods Headphones,1,150,01/07/19 20:29,"755 12th St, Dallas, TX 75001" +144364,USB-C Charging Cable,2,11.95,01/15/19 19:37,"62 Lakeview St, New York City, NY 10001" +144365,Bose SoundSport Headphones,1,99.99,01/15/19 15:12,"359 13th St, Seattle, WA 98101" +144366,Apple Airpods Headphones,1,150,01/18/19 19:57,"440 Washington St, Portland, OR 97035" +144367,Lightning Charging Cable,1,14.95,01/03/19 21:15,"919 Jackson St, Seattle, WA 98101" +144368,AA Batteries (4-pack),4,3.84,01/30/19 11:19,"184 Madison St, Boston, MA 02215" +144369,Google Phone,1,600,01/11/19 14:03,"455 West St, Boston, MA 02215" +144369,Bose SoundSport Headphones,1,99.99,01/11/19 14:03,"455 West St, Boston, MA 02215" +144370,Wired Headphones,1,11.99,01/27/19 19:33,"85 9th St, Los Angeles, CA 90001" +144371,AAA Batteries (4-pack),1,2.99,01/26/19 18:04,"630 Sunset St, Atlanta, GA 30301" +144372,Bose SoundSport Headphones,1,99.99,01/09/19 20:12,"474 Cherry St, Austin, TX 73301" +144373,AA Batteries (4-pack),1,3.84,01/08/19 09:17,"647 Forest St, Austin, TX 73301" +144374,AAA Batteries (4-pack),1,2.99,01/21/19 14:16,"798 Lake St, Los Angeles, CA 90001" +144374,Google Phone,1,600,01/21/19 14:16,"798 Lake St, Los Angeles, CA 90001" +144375,USB-C Charging Cable,1,11.95,01/14/19 18:36,"381 Maple St, Dallas, TX 75001" +144376,USB-C Charging Cable,1,11.95,01/19/19 17:42,"924 Washington St, San Francisco, CA 94016" +144377,Bose SoundSport Headphones,1,99.99,01/14/19 09:59,"95 12th St, New York City, NY 10001" +144378,USB-C Charging Cable,1,11.95,01/25/19 11:11,"828 Cherry St, Los Angeles, CA 90001" +144379,Wired Headphones,1,11.99,01/24/19 14:47,"938 6th St, Austin, TX 73301" +144380,Bose SoundSport Headphones,1,99.99,01/07/19 14:59,"164 Johnson St, Los Angeles, CA 90001" +144381,Bose SoundSport Headphones,1,99.99,01/13/19 10:46,"29 4th St, New York City, NY 10001" +144382,Apple Airpods Headphones,1,150,01/13/19 16:23,"674 Highland St, San Francisco, CA 94016" +144383,27in FHD Monitor,1,149.99,01/28/19 09:01,"841 Ridge St, Portland, OR 97035" +144384,AA Batteries (4-pack),2,3.84,01/14/19 19:38,"323 Madison St, Boston, MA 02215" +144385,Apple Airpods Headphones,1,150,01/07/19 13:05,"82 Pine St, San Francisco, CA 94016" +144386,Flatscreen TV,1,300,01/11/19 07:49,"109 8th St, Atlanta, GA 30301" +144387,AAA Batteries (4-pack),1,2.99,01/02/19 00:17,"776 1st St, New York City, NY 10001" +144388,Lightning Charging Cable,1,14.95,01/01/19 10:21,"931 13th St, Atlanta, GA 30301" +144389,Apple Airpods Headphones,1,150,01/30/19 19:10,"850 Wilson St, Boston, MA 02215" +144390,AA Batteries (4-pack),1,3.84,01/04/19 12:19,"41 Walnut St, San Francisco, CA 94016" +144391,Bose SoundSport Headphones,1,99.99,01/09/19 21:28,"197 Meadow St, San Francisco, CA 94016" +144392,Macbook Pro Laptop,1,1700,01/04/19 11:23,"552 Madison St, Dallas, TX 75001" +144393,Macbook Pro Laptop,1,1700,01/13/19 11:21,"76 Pine St, Atlanta, GA 30301" +144394,AA Batteries (4-pack),1,3.84,01/08/19 10:53,"135 Cherry St, Boston, MA 02215" +144395,Lightning Charging Cable,1,14.95,01/02/19 19:45,"615 Highland St, Seattle, WA 98101" +144396,USB-C Charging Cable,1,11.95,01/04/19 02:14,"54 Church St, Dallas, TX 75001" +144397,Lightning Charging Cable,1,14.95,01/27/19 11:06,"669 14th St, Austin, TX 73301" +144398,AA Batteries (4-pack),1,3.84,01/08/19 12:54,"699 Jackson St, Los Angeles, CA 90001" +144399,Macbook Pro Laptop,1,1700,01/30/19 16:21,"89 Lake St, San Francisco, CA 94016" +144400,27in 4K Gaming Monitor,1,389.99,01/20/19 19:20,"519 Forest St, Atlanta, GA 30301" +144401,Flatscreen TV,1,300,01/29/19 08:00,"895 Spruce St, Seattle, WA 98101" +144402,Macbook Pro Laptop,1,1700,01/26/19 20:37,"338 Lake St, San Francisco, CA 94016" +144403,USB-C Charging Cable,1,11.95,01/05/19 11:57,"71 13th St, Austin, TX 73301" +144404,Google Phone,1,600,01/10/19 15:29,"524 6th St, Boston, MA 02215" +144405,iPhone,1,700,01/30/19 12:47,"971 Church St, Los Angeles, CA 90001" +144406,ThinkPad Laptop,1,999.99,01/06/19 21:00,"495 10th St, Austin, TX 73301" +144407,Wired Headphones,1,11.99,01/31/19 10:39,"295 Johnson St, San Francisco, CA 94016" +144408,Bose SoundSport Headphones,1,99.99,01/14/19 21:45,"861 Spruce St, New York City, NY 10001" +144409,Lightning Charging Cable,1,14.95,01/11/19 14:38,"448 2nd St, San Francisco, CA 94016" +144410,Wired Headphones,1,11.99,01/22/19 18:47,"664 6th St, San Francisco, CA 94016" +144411,AA Batteries (4-pack),2,3.84,01/25/19 16:51,"225 11th St, Los Angeles, CA 90001" +,,,,, +144412,Apple Airpods Headphones,1,150,01/14/19 17:41,"148 Dogwood St, San Francisco, CA 94016" +144413,Lightning Charging Cable,1,14.95,01/13/19 15:44,"668 4th St, Dallas, TX 75001" +144414,Flatscreen TV,1,300,01/22/19 12:38,"388 4th St, San Francisco, CA 94016" +144415,ThinkPad Laptop,1,999.99,01/23/19 20:22,"980 Ridge St, San Francisco, CA 94016" +144416,AA Batteries (4-pack),2,3.84,01/20/19 14:12,"658 Elm St, San Francisco, CA 94016" +144417,34in Ultrawide Monitor,1,379.99,01/18/19 19:51,"115 10th St, Atlanta, GA 30301" +144418,34in Ultrawide Monitor,1,379.99,01/31/19 16:55,"906 Park St, Atlanta, GA 30301" +144419,Apple Airpods Headphones,1,150,01/28/19 18:24,"251 Washington St, Portland, ME 04101" +144420,Bose SoundSport Headphones,1,99.99,01/10/19 21:15,"555 Sunset St, Dallas, TX 75001" +144421,Apple Airpods Headphones,1,150,01/24/19 10:34,"828 Center St, Atlanta, GA 30301" +144422,ThinkPad Laptop,1,999.99,01/14/19 21:32,"773 Cherry St, New York City, NY 10001" +144423,Flatscreen TV,1,300,01/14/19 16:51,"622 Ridge St, Portland, OR 97035" +144424,Bose SoundSport Headphones,1,99.99,01/25/19 18:47,"304 Willow St, San Francisco, CA 94016" +144425,Google Phone,1,600,01/18/19 08:34,"303 Lakeview St, San Francisco, CA 94016" +144425,USB-C Charging Cable,1,11.95,01/18/19 08:34,"303 Lakeview St, San Francisco, CA 94016" +144426,Wired Headphones,1,11.99,01/15/19 11:31,"561 1st St, Los Angeles, CA 90001" +144427,Bose SoundSport Headphones,1,99.99,01/15/19 18:39,"130 Adams St, Seattle, WA 98101" +144428,Flatscreen TV,1,300,01/10/19 16:18,"330 Cedar St, San Francisco, CA 94016" +144429,Bose SoundSport Headphones,1,99.99,01/05/19 22:36,"524 Sunset St, Seattle, WA 98101" +144430,34in Ultrawide Monitor,1,379.99,01/11/19 09:28,"237 9th St, San Francisco, CA 94016" +144431,LG Washing Machine,1,600.0,01/09/19 10:26,"665 8th St, New York City, NY 10001" +144432,AAA Batteries (4-pack),1,2.99,01/18/19 19:12,"718 Spruce St, San Francisco, CA 94016" +144433,AAA Batteries (4-pack),1,2.99,01/26/19 13:13,"984 Elm St, Boston, MA 02215" +144434,Bose SoundSport Headphones,1,99.99,01/31/19 23:47,"823 5th St, Boston, MA 02215" +144435,27in 4K Gaming Monitor,1,389.99,01/20/19 09:37,"564 4th St, San Francisco, CA 94016" +144436,USB-C Charging Cable,1,11.95,01/29/19 20:09,"979 Church St, Portland, OR 97035" +144437,AAA Batteries (4-pack),1,2.99,01/07/19 09:31,"421 Walnut St, Dallas, TX 75001" +144438,AAA Batteries (4-pack),2,2.99,01/30/19 21:21,"151 Willow St, Atlanta, GA 30301" +144439,Wired Headphones,1,11.99,01/03/19 04:30,"505 Hill St, Atlanta, GA 30301" +144440,34in Ultrawide Monitor,1,379.99,01/02/19 22:36,"642 Hickory St, Los Angeles, CA 90001" +144441,Apple Airpods Headphones,1,150,01/22/19 11:13,"896 Forest St, Boston, MA 02215" +144442,Flatscreen TV,1,300,01/27/19 19:39,"151 Adams St, San Francisco, CA 94016" +144443,34in Ultrawide Monitor,1,379.99,01/18/19 08:29,"285 Dogwood St, San Francisco, CA 94016" +144444,Lightning Charging Cable,1,14.95,01/29/19 10:28,"832 12th St, San Francisco, CA 94016" +144445,USB-C Charging Cable,1,11.95,01/27/19 09:39,"981 Cherry St, Austin, TX 73301" +144446,20in Monitor,1,109.99,01/13/19 08:46,"452 4th St, Boston, MA 02215" +144447,LG Washing Machine,1,600.0,01/16/19 18:19,"594 Jackson St, New York City, NY 10001" +144448,AA Batteries (4-pack),1,3.84,01/26/19 13:08,"557 Center St, San Francisco, CA 94016" +144449,Bose SoundSport Headphones,1,99.99,01/04/19 00:20,"481 14th St, Los Angeles, CA 90001" +144450,Google Phone,1,600,01/28/19 12:41,"701 Main St, Boston, MA 02215" +144450,USB-C Charging Cable,1,11.95,01/28/19 12:41,"701 Main St, Boston, MA 02215" +144451,Apple Airpods Headphones,1,150,01/22/19 18:25,"120 9th St, Portland, OR 97035" +144452,USB-C Charging Cable,1,11.95,01/06/19 12:08,"797 10th St, Boston, MA 02215" +144453,iPhone,1,700,01/13/19 14:14,"712 14th St, New York City, NY 10001" +144454,Apple Airpods Headphones,1,150,01/14/19 13:18,"145 Meadow St, New York City, NY 10001" +144455,34in Ultrawide Monitor,1,379.99,01/21/19 11:13,"691 River St, Atlanta, GA 30301" +144456,USB-C Charging Cable,1,11.95,01/10/19 18:52,"988 Chestnut St, San Francisco, CA 94016" +144457,Lightning Charging Cable,1,14.95,01/08/19 18:32,"156 1st St, San Francisco, CA 94016" +144458,Macbook Pro Laptop,1,1700,01/21/19 10:30,"297 Spruce St, Boston, MA 02215" +144459,USB-C Charging Cable,1,11.95,01/26/19 19:14,"684 Johnson St, Austin, TX 73301" +144460,Bose SoundSport Headphones,1,99.99,01/06/19 23:51,"507 Lincoln St, San Francisco, CA 94016" +144461,AA Batteries (4-pack),2,3.84,01/11/19 13:48,"855 Chestnut St, San Francisco, CA 94016" +144462,34in Ultrawide Monitor,1,379.99,01/15/19 04:19,"669 Washington St, Los Angeles, CA 90001" +144463,Wired Headphones,1,11.99,01/15/19 16:56,"592 Adams St, Portland, ME 04101" +144464,Bose SoundSport Headphones,1,99.99,01/27/19 09:45,"654 West St, Los Angeles, CA 90001" +144465,ThinkPad Laptop,1,999.99,01/24/19 13:08,"869 Park St, Dallas, TX 75001" +144466,ThinkPad Laptop,1,999.99,01/08/19 16:59,"635 Walnut St, Austin, TX 73301" +144467,AA Batteries (4-pack),1,3.84,01/31/19 20:26,"21 Sunset St, Atlanta, GA 30301" +144468,LG Dryer,1,600.0,01/26/19 08:14,"807 9th St, Los Angeles, CA 90001" +144469,Wired Headphones,1,11.99,01/04/19 08:05,"537 10th St, San Francisco, CA 94016" +144470,Google Phone,1,600,01/08/19 10:48,"586 Center St, New York City, NY 10001" +144470,USB-C Charging Cable,1,11.95,01/08/19 10:48,"586 Center St, New York City, NY 10001" +144471,USB-C Charging Cable,1,11.95,01/29/19 03:55,"680 Main St, Portland, ME 04101" +144472,Wired Headphones,1,11.99,01/06/19 22:27,"761 8th St, Los Angeles, CA 90001" +144473,27in FHD Monitor,1,149.99,01/01/19 16:43,"11 Hill St, Boston, MA 02215" +144474,Google Phone,1,600,01/24/19 23:43,"408 14th St, San Francisco, CA 94016" +144474,Wired Headphones,1,11.99,01/24/19 23:43,"408 14th St, San Francisco, CA 94016" +144475,Apple Airpods Headphones,1,150,01/02/19 11:26,"550 4th St, New York City, NY 10001" +144476,AAA Batteries (4-pack),1,2.99,01/10/19 20:50,"141 Ridge St, Los Angeles, CA 90001" +144477,27in FHD Monitor,1,149.99,01/23/19 18:13,"599 Adams St, Seattle, WA 98101" +144477,ThinkPad Laptop,1,999.99,01/23/19 18:13,"599 Adams St, Seattle, WA 98101" +144478,27in 4K Gaming Monitor,1,389.99,01/13/19 13:16,"149 Wilson St, Los Angeles, CA 90001" +144479,AA Batteries (4-pack),1,3.84,01/18/19 16:35,"138 Spruce St, New York City, NY 10001" +144480,AAA Batteries (4-pack),3,2.99,01/01/19 16:16,"713 Washington St, New York City, NY 10001" +144481,Bose SoundSport Headphones,1,99.99,01/23/19 16:07,"174 Johnson St, San Francisco, CA 94016" +144482,USB-C Charging Cable,1,11.95,01/21/19 15:24,"261 Highland St, San Francisco, CA 94016" +144483,Google Phone,1,600,01/14/19 15:29,"406 Forest St, Dallas, TX 75001" +144484,Wired Headphones,1,11.99,01/18/19 14:01,"694 Jackson St, Atlanta, GA 30301" +144485,LG Dryer,1,600.0,01/05/19 14:39,"128 10th St, Los Angeles, CA 90001" +144486,AAA Batteries (4-pack),1,2.99,01/18/19 17:08,"424 7th St, Portland, OR 97035" +144487,Wired Headphones,1,11.99,01/02/19 21:07,"991 Pine St, Portland, OR 97035" +144488,Bose SoundSport Headphones,1,99.99,01/24/19 14:57,"785 Pine St, San Francisco, CA 94016" +144489,Wired Headphones,1,11.99,01/08/19 07:38,"914 Center St, Los Angeles, CA 90001" +144490,Lightning Charging Cable,1,14.95,01/31/19 13:45,"936 7th St, San Francisco, CA 94016" +144491,34in Ultrawide Monitor,1,379.99,01/20/19 22:40,"996 Walnut St, Boston, MA 02215" +144492,Apple Airpods Headphones,1,150,01/21/19 17:14,"204 7th St, Los Angeles, CA 90001" +144493,USB-C Charging Cable,1,11.95,01/26/19 07:44,"604 5th St, Boston, MA 02215" +144494,Flatscreen TV,1,300,01/03/19 20:59,"13 Meadow St, Los Angeles, CA 90001" +144495,AA Batteries (4-pack),2,3.84,01/13/19 21:01,"958 Johnson St, New York City, NY 10001" +144496,AA Batteries (4-pack),1,3.84,01/31/19 14:40,"940 Elm St, New York City, NY 10001" +144497,iPhone,1,700,01/13/19 20:14,"718 Walnut St, Dallas, TX 75001" +144498,AA Batteries (4-pack),1,3.84,01/23/19 10:14,"38 6th St, Los Angeles, CA 90001" +144499,USB-C Charging Cable,1,11.95,01/06/19 18:59,"259 Center St, San Francisco, CA 94016" +144500,Lightning Charging Cable,1,14.95,01/20/19 22:47,"233 Washington St, Atlanta, GA 30301" +144501,27in FHD Monitor,1,149.99,01/08/19 01:00,"528 Spruce St, Portland, OR 97035" +144502,AAA Batteries (4-pack),2,2.99,01/30/19 09:48,"824 River St, Los Angeles, CA 90001" +144503,Bose SoundSport Headphones,1,99.99,01/17/19 08:27,"886 Lakeview St, Seattle, WA 98101" +144504,ThinkPad Laptop,1,999.99,01/02/19 19:28,"873 8th St, Atlanta, GA 30301" +144505,Wired Headphones,1,11.99,01/05/19 09:34,"497 Sunset St, New York City, NY 10001" +144506,Lightning Charging Cable,1,14.95,01/03/19 14:43,"291 8th St, New York City, NY 10001" +144507,Wired Headphones,1,11.99,01/11/19 22:37,"91 Main St, Los Angeles, CA 90001" +144508,34in Ultrawide Monitor,1,379.99,01/22/19 04:08,"79 Lakeview St, New York City, NY 10001" +144509,Apple Airpods Headphones,1,150,01/30/19 13:00,"848 South St, Portland, ME 04101" +144510,USB-C Charging Cable,1,11.95,01/26/19 09:14,"576 Elm St, Boston, MA 02215" +144511,Bose SoundSport Headphones,1,99.99,01/12/19 20:13,"584 Dogwood St, Los Angeles, CA 90001" +144512,20in Monitor,1,109.99,01/14/19 10:15,"951 Forest St, Atlanta, GA 30301" +144513,AA Batteries (4-pack),1,3.84,01/08/19 21:49,"12 Cedar St, Boston, MA 02215" +144514,Lightning Charging Cable,1,14.95,01/02/19 04:21,"229 North St, Boston, MA 02215" +144515,AAA Batteries (4-pack),4,2.99,01/10/19 21:03,"225 8th St, Seattle, WA 98101" +144516,AAA Batteries (4-pack),2,2.99,01/24/19 02:28,"20 Main St, New York City, NY 10001" +144517,AAA Batteries (4-pack),1,2.99,01/21/19 13:05,"593 Walnut St, Los Angeles, CA 90001" +144518,34in Ultrawide Monitor,1,379.99,01/05/19 10:29,"875 6th St, Boston, MA 02215" +144519,Lightning Charging Cable,1,14.95,01/01/19 16:23,"25 South St, Los Angeles, CA 90001" +144520,20in Monitor,1,109.99,01/28/19 19:46,"374 Madison St, Atlanta, GA 30301" +144521,Wired Headphones,1,11.99,01/18/19 16:37,"507 7th St, New York City, NY 10001" +144522,Wired Headphones,1,11.99,01/10/19 19:41,"745 Pine St, Los Angeles, CA 90001" +144523,Google Phone,1,600,01/05/19 16:57,"336 4th St, Dallas, TX 75001" +144524,Wired Headphones,1,11.99,01/22/19 12:23,"273 Chestnut St, New York City, NY 10001" +144525,USB-C Charging Cable,1,11.95,01/16/19 12:53,"335 Maple St, Los Angeles, CA 90001" +144526,ThinkPad Laptop,1,999.99,01/06/19 07:25,"687 North St, Atlanta, GA 30301" +144527,Flatscreen TV,1,300,01/23/19 22:27,"641 7th St, New York City, NY 10001" +144528,AAA Batteries (4-pack),2,2.99,01/04/19 12:24,"683 7th St, Los Angeles, CA 90001" +144529,Apple Airpods Headphones,1,150,01/25/19 07:51,"394 Pine St, Seattle, WA 98101" +144530,Bose SoundSport Headphones,1,99.99,01/30/19 03:23,"445 Forest St, New York City, NY 10001" +144531,ThinkPad Laptop,1,999.99,01/20/19 12:01,"881 River St, Portland, ME 04101" +144532,Google Phone,1,600,01/07/19 22:03,"867 Cedar St, Portland, OR 97035" +144533,AA Batteries (4-pack),1,3.84,01/06/19 18:38,"636 Lake St, Seattle, WA 98101" +144534,AAA Batteries (4-pack),3,2.99,01/09/19 12:34,"832 Maple St, Boston, MA 02215" +144535,Wired Headphones,1,11.99,01/03/19 11:57,"182 South St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +144536,34in Ultrawide Monitor,1,379.99,01/29/19 19:30,"58 South St, Boston, MA 02215" +144537,USB-C Charging Cable,1,11.95,01/03/19 21:15,"181 1st St, Boston, MA 02215" +144538,iPhone,1,700,01/23/19 14:57,"628 South St, San Francisco, CA 94016" +144538,27in FHD Monitor,1,149.99,01/23/19 14:57,"628 South St, San Francisco, CA 94016" +144539,Lightning Charging Cable,1,14.95,01/12/19 13:28,"538 West St, Seattle, WA 98101" +144540,AA Batteries (4-pack),1,3.84,01/30/19 17:24,"927 7th St, San Francisco, CA 94016" +144541,Apple Airpods Headphones,1,150,01/29/19 13:53,"713 Hickory St, Portland, OR 97035" +144542,Wired Headphones,1,11.99,01/22/19 18:48,"198 Hill St, San Francisco, CA 94016" +144543,Bose SoundSport Headphones,1,99.99,01/04/19 23:22,"75 Hickory St, Atlanta, GA 30301" +144544,AA Batteries (4-pack),1,3.84,01/25/19 22:12,"361 5th St, Los Angeles, CA 90001" +144545,Wired Headphones,1,11.99,01/31/19 13:01,"874 1st St, Austin, TX 73301" +144546,Lightning Charging Cable,1,14.95,01/27/19 00:15,"921 Center St, San Francisco, CA 94016" +144547,Apple Airpods Headphones,1,150,01/26/19 11:35,"525 Dogwood St, Seattle, WA 98101" +144548,Bose SoundSport Headphones,1,99.99,01/04/19 08:18,"433 Spruce St, San Francisco, CA 94016" +144549,20in Monitor,1,109.99,01/10/19 21:30,"693 9th St, Austin, TX 73301" +144550,iPhone,1,700,01/26/19 17:22,"477 Wilson St, San Francisco, CA 94016" +144551,27in FHD Monitor,1,149.99,01/11/19 12:13,"890 9th St, Boston, MA 02215" +144552,27in 4K Gaming Monitor,1,389.99,01/03/19 13:26,"778 Dogwood St, San Francisco, CA 94016" +144553,34in Ultrawide Monitor,1,379.99,01/06/19 09:57,"379 Hickory St, San Francisco, CA 94016" +144554,AA Batteries (4-pack),1,3.84,01/27/19 16:28,"755 Hill St, Boston, MA 02215" +144555,27in FHD Monitor,1,149.99,01/23/19 14:33,"613 10th St, San Francisco, CA 94016" +144556,Wired Headphones,1,11.99,01/02/19 22:43,"454 8th St, Los Angeles, CA 90001" +144557,AAA Batteries (4-pack),1,2.99,01/20/19 09:50,"622 1st St, Los Angeles, CA 90001" +144558,iPhone,1,700,01/25/19 09:05,"848 Church St, Portland, OR 97035" +144559,iPhone,1,700,01/23/19 15:26,"501 Park St, Atlanta, GA 30301" +144560,Wired Headphones,2,11.99,01/17/19 13:21,"335 Church St, San Francisco, CA 94016" +144561,USB-C Charging Cable,1,11.95,01/21/19 08:19,"579 Hickory St, San Francisco, CA 94016" +144562,Lightning Charging Cable,1,14.95,01/27/19 17:49,"634 2nd St, San Francisco, CA 94016" +144563,AA Batteries (4-pack),1,3.84,01/20/19 21:19,"319 Lakeview St, Los Angeles, CA 90001" +144564,Google Phone,1,600,01/12/19 07:53,"227 14th St, San Francisco, CA 94016" +144565,AA Batteries (4-pack),1,3.84,01/01/19 21:53,"780 7th St, San Francisco, CA 94016" +144566,Macbook Pro Laptop,1,1700,01/07/19 16:07,"643 Johnson St, Austin, TX 73301" +144567,27in FHD Monitor,1,149.99,01/03/19 10:01,"435 12th St, Seattle, WA 98101" +144568,USB-C Charging Cable,1,11.95,01/22/19 16:38,"932 8th St, Los Angeles, CA 90001" +144569,Apple Airpods Headphones,1,150,01/13/19 23:22,"813 Highland St, Austin, TX 73301" +144570,AA Batteries (4-pack),1,3.84,01/26/19 10:09,"265 9th St, San Francisco, CA 94016" +144571,AAA Batteries (4-pack),1,2.99,01/23/19 08:21,"183 Lakeview St, Dallas, TX 75001" +144572,Macbook Pro Laptop,1,1700,01/17/19 11:36,"257 Pine St, Portland, OR 97035" +144573,Wired Headphones,1,11.99,01/20/19 20:15,"934 Cherry St, Portland, OR 97035" +144574,20in Monitor,1,109.99,01/16/19 19:06,"481 Willow St, Dallas, TX 75001" +144575,27in FHD Monitor,1,149.99,01/02/19 18:05,"957 Highland St, San Francisco, CA 94016" +144576,Lightning Charging Cable,1,14.95,01/31/19 10:12,"539 Park St, San Francisco, CA 94016" +144577,Wired Headphones,1,11.99,01/29/19 10:54,"341 Chestnut St, Portland, OR 97035" +144578,USB-C Charging Cable,1,11.95,01/08/19 20:56,"226 Sunset St, Atlanta, GA 30301" +144579,AAA Batteries (4-pack),1,2.99,01/17/19 18:18,"804 Chestnut St, New York City, NY 10001" +144580,Wired Headphones,1,11.99,01/20/19 17:55,"10 Willow St, Austin, TX 73301" +144581,AA Batteries (4-pack),1,3.84,01/22/19 12:59,"23 Madison St, Boston, MA 02215" +144582,AA Batteries (4-pack),1,3.84,01/08/19 23:40,"574 Washington St, Seattle, WA 98101" +144582,Lightning Charging Cable,2,14.95,01/08/19 23:40,"574 Washington St, Seattle, WA 98101" +144583,USB-C Charging Cable,2,11.95,01/10/19 13:15,"741 Sunset St, Boston, MA 02215" +144584,Bose SoundSport Headphones,1,99.99,01/03/19 14:45,"19 Spruce St, San Francisco, CA 94016" +144585,Lightning Charging Cable,1,14.95,01/03/19 22:43,"859 9th St, San Francisco, CA 94016" +144586,Apple Airpods Headphones,1,150,01/15/19 13:09,"633 Spruce St, San Francisco, CA 94016" +144586,Wired Headphones,1,11.99,01/15/19 13:09,"633 Spruce St, San Francisco, CA 94016" +144587,Bose SoundSport Headphones,1,99.99,01/14/19 13:08,"842 6th St, Austin, TX 73301" +144588,AAA Batteries (4-pack),1,2.99,01/26/19 15:31,"964 Elm St, San Francisco, CA 94016" +144589,Apple Airpods Headphones,1,150,01/11/19 12:38,"693 Pine St, Dallas, TX 75001" +144590,Lightning Charging Cable,2,14.95,01/25/19 15:07,"103 5th St, Atlanta, GA 30301" +144591,Wired Headphones,1,11.99,01/29/19 17:16,"751 9th St, New York City, NY 10001" +144592,Wired Headphones,1,11.99,01/05/19 20:43,"628 14th St, New York City, NY 10001" +144593,Macbook Pro Laptop,1,1700,01/14/19 12:15,"462 6th St, Los Angeles, CA 90001" +144594,ThinkPad Laptop,1,999.99,01/01/19 05:49,"179 River St, Los Angeles, CA 90001" +144595,Lightning Charging Cable,1,14.95,01/13/19 14:02,"325 Meadow St, San Francisco, CA 94016" +144596,20in Monitor,1,109.99,01/21/19 23:14,"724 14th St, Atlanta, GA 30301" +144597,27in FHD Monitor,1,149.99,01/13/19 21:58,"778 Sunset St, Los Angeles, CA 90001" +144598,Google Phone,1,600,01/28/19 09:32,"431 Chestnut St, Portland, OR 97035" +144599,Lightning Charging Cable,1,14.95,01/16/19 13:33,"733 Church St, New York City, NY 10001" +144600,AAA Batteries (4-pack),3,2.99,01/17/19 14:04,"667 Walnut St, Dallas, TX 75001" +144601,AAA Batteries (4-pack),1,2.99,01/04/19 07:48,"678 Center St, San Francisco, CA 94016" +144602,34in Ultrawide Monitor,1,379.99,01/20/19 14:31,"177 Jackson St, San Francisco, CA 94016" +144603,ThinkPad Laptop,1,999.99,01/09/19 18:00,"340 Maple St, San Francisco, CA 94016" +144604,Lightning Charging Cable,1,14.95,01/18/19 20:05,"62 Lincoln St, Seattle, WA 98101" +144605,Flatscreen TV,1,300,01/02/19 16:41,"982 Wilson St, San Francisco, CA 94016" +144606,AA Batteries (4-pack),1,3.84,01/03/19 20:52,"801 West St, Los Angeles, CA 90001" +144607,Lightning Charging Cable,1,14.95,01/23/19 11:27,"3 1st St, San Francisco, CA 94016" +144608,34in Ultrawide Monitor,1,379.99,01/27/19 12:30,"483 Wilson St, San Francisco, CA 94016" +144609,Bose SoundSport Headphones,1,99.99,01/13/19 09:56,"777 South St, Dallas, TX 75001" +144610,AAA Batteries (4-pack),1,2.99,01/17/19 23:14,"408 Chestnut St, Los Angeles, CA 90001" +144611,Apple Airpods Headphones,1,150,01/28/19 07:52,"585 6th St, Portland, OR 97035" +144612,Wired Headphones,1,11.99,01/11/19 01:18,"607 Elm St, San Francisco, CA 94016" +144613,AA Batteries (4-pack),1,3.84,01/17/19 22:09,"632 Sunset St, Austin, TX 73301" +144614,Bose SoundSport Headphones,1,99.99,01/14/19 18:03,"598 Hickory St, San Francisco, CA 94016" +144615,Wired Headphones,1,11.99,01/26/19 10:16,"550 Jackson St, Los Angeles, CA 90001" +144616,Bose SoundSport Headphones,1,99.99,01/12/19 21:16,"539 Cherry St, Austin, TX 73301" +144617,27in 4K Gaming Monitor,1,389.99,01/08/19 19:41,"358 Pine St, Boston, MA 02215" +144618,27in 4K Gaming Monitor,1,389.99,01/31/19 08:03,"232 Main St, San Francisco, CA 94016" +144619,LG Dryer,1,600.0,01/31/19 20:53,"279 6th St, Atlanta, GA 30301" +144620,27in FHD Monitor,1,149.99,01/07/19 12:55,"98 North St, San Francisco, CA 94016" +144621,ThinkPad Laptop,1,999.99,01/26/19 12:21,"9 Johnson St, Atlanta, GA 30301" +144622,20in Monitor,1,109.99,01/31/19 18:54,"787 South St, Portland, OR 97035" +144623,ThinkPad Laptop,1,999.99,01/23/19 14:05,"968 6th St, Seattle, WA 98101" +144624,AAA Batteries (4-pack),2,2.99,01/25/19 11:51,"631 Lakeview St, San Francisco, CA 94016" +144625,Lightning Charging Cable,1,14.95,01/26/19 22:09,"983 6th St, Seattle, WA 98101" +144626,20in Monitor,1,109.99,01/04/19 23:12,"50 Lakeview St, Boston, MA 02215" +144627,34in Ultrawide Monitor,1,379.99,01/05/19 16:45,"463 Lake St, San Francisco, CA 94016" +144628,Wired Headphones,1,11.99,01/17/19 16:19,"690 Cherry St, San Francisco, CA 94016" +144629,AA Batteries (4-pack),1,3.84,01/07/19 16:05,"417 Johnson St, Boston, MA 02215" +144630,Apple Airpods Headphones,1,150,01/15/19 14:29,"838 Jackson St, Boston, MA 02215" +144631,USB-C Charging Cable,1,11.95,01/28/19 16:31,"828 Hill St, New York City, NY 10001" +144632,Bose SoundSport Headphones,1,99.99,01/23/19 12:34,"358 Lake St, Los Angeles, CA 90001" +144633,AAA Batteries (4-pack),1,2.99,01/03/19 12:18,"282 Johnson St, Boston, MA 02215" +144634,AAA Batteries (4-pack),1,2.99,01/21/19 18:13,"280 4th St, Los Angeles, CA 90001" +144635,AA Batteries (4-pack),1,3.84,01/25/19 09:42,"384 Ridge St, Austin, TX 73301" +144636,USB-C Charging Cable,1,11.95,01/13/19 11:25,"210 9th St, Los Angeles, CA 90001" +144636,27in FHD Monitor,1,149.99,01/13/19 11:25,"210 9th St, Los Angeles, CA 90001" +144637,iPhone,1,700,01/07/19 21:36,"984 Church St, Dallas, TX 75001" +144637,Lightning Charging Cable,1,14.95,01/07/19 21:36,"984 Church St, Dallas, TX 75001" +144638,Wired Headphones,2,11.99,01/14/19 14:28,"938 Wilson St, Boston, MA 02215" +144639,27in 4K Gaming Monitor,1,389.99,01/27/19 13:57,"446 Chestnut St, San Francisco, CA 94016" +144640,Wired Headphones,1,11.99,01/01/19 20:57,"685 Chestnut St, San Francisco, CA 94016" +144641,AA Batteries (4-pack),1,3.84,01/28/19 16:40,"824 12th St, San Francisco, CA 94016" +144642,Lightning Charging Cable,1,14.95,01/22/19 19:47,"220 Wilson St, Los Angeles, CA 90001" +144643,ThinkPad Laptop,1,999.99,01/17/19 20:52,"283 Highland St, Dallas, TX 75001" +144644,AAA Batteries (4-pack),1,2.99,01/25/19 20:02,"473 Center St, San Francisco, CA 94016" +144645,iPhone,1,700,01/26/19 13:08,"991 Jefferson St, San Francisco, CA 94016" +144646,Bose SoundSport Headphones,1,99.99,01/07/19 15:36,"561 South St, Portland, OR 97035" +144647,Lightning Charging Cable,1,14.95,01/30/19 22:52,"978 4th St, San Francisco, CA 94016" +144648,USB-C Charging Cable,3,11.95,01/10/19 19:56,"568 Lakeview St, San Francisco, CA 94016" +144649,iPhone,1,700,01/28/19 10:40,"672 Chestnut St, New York City, NY 10001" +144650,Bose SoundSport Headphones,1,99.99,01/29/19 21:20,"36 North St, Los Angeles, CA 90001" +144651,Lightning Charging Cable,1,14.95,01/20/19 20:25,"33 Wilson St, New York City, NY 10001" +144652,Flatscreen TV,1,300,01/12/19 15:04,"752 Spruce St, Boston, MA 02215" +144653,34in Ultrawide Monitor,1,379.99,01/14/19 22:23,"150 Sunset St, New York City, NY 10001" +144654,AA Batteries (4-pack),2,3.84,01/31/19 13:13,"889 12th St, Los Angeles, CA 90001" +144655,Apple Airpods Headphones,1,150,01/17/19 20:48,"610 Cedar St, Los Angeles, CA 90001" +144656,27in FHD Monitor,1,149.99,01/16/19 15:56,"252 Lake St, New York City, NY 10001" +144657,USB-C Charging Cable,1,11.95,01/05/19 15:24,"821 Highland St, Boston, MA 02215" +144658,USB-C Charging Cable,1,11.95,01/25/19 18:50,"486 2nd St, Atlanta, GA 30301" +144659,AA Batteries (4-pack),1,3.84,01/14/19 06:31,"822 Main St, Boston, MA 02215" +144660,AAA Batteries (4-pack),1,2.99,01/22/19 08:20,"320 Center St, Los Angeles, CA 90001" +144661,Lightning Charging Cable,1,14.95,01/28/19 16:05,"813 Maple St, San Francisco, CA 94016" +144662,Flatscreen TV,1,300,01/15/19 15:34,"609 4th St, Seattle, WA 98101" +144663,Lightning Charging Cable,1,14.95,01/15/19 17:52,"839 Church St, Los Angeles, CA 90001" +144664,USB-C Charging Cable,1,11.95,01/14/19 10:16,"615 11th St, New York City, NY 10001" +144665,USB-C Charging Cable,1,11.95,01/22/19 16:22,"668 5th St, Portland, ME 04101" +144666,AAA Batteries (4-pack),1,2.99,01/13/19 16:04,"686 13th St, New York City, NY 10001" +144667,USB-C Charging Cable,1,11.95,01/19/19 16:27,"584 Main St, San Francisco, CA 94016" +144668,AAA Batteries (4-pack),1,2.99,01/19/19 13:42,"455 9th St, Portland, OR 97035" +144669,Apple Airpods Headphones,2,150,01/29/19 12:43,"247 Hickory St, San Francisco, CA 94016" +144670,USB-C Charging Cable,1,11.95,01/01/19 11:57,"203 Elm St, San Francisco, CA 94016" +144671,USB-C Charging Cable,1,11.95,01/12/19 17:33,"109 South St, San Francisco, CA 94016" +144672,LG Washing Machine,1,600.0,01/01/19 11:37,"221 River St, Boston, MA 02215" +144673,AA Batteries (4-pack),1,3.84,01/10/19 15:28,"840 Spruce St, San Francisco, CA 94016" +144674,Google Phone,1,600,01/12/19 10:54,"732 Center St, Boston, MA 02215" +144675,USB-C Charging Cable,1,11.95,01/30/19 16:02,"418 Chestnut St, New York City, NY 10001" +144676,Flatscreen TV,1,300,01/31/19 21:40,"597 Ridge St, Atlanta, GA 30301" +144677,Lightning Charging Cable,1,14.95,01/01/19 16:29,"229 Washington St, Austin, TX 73301" +144678,Wired Headphones,1,11.99,01/03/19 12:33,"697 Pine St, Boston, MA 02215" +144679,Wired Headphones,1,11.99,01/29/19 18:28,"766 Walnut St, Austin, TX 73301" +144680,Apple Airpods Headphones,1,150,01/28/19 20:27,"675 7th St, Seattle, WA 98101" +144681,Bose SoundSport Headphones,1,99.99,01/22/19 09:41,"108 9th St, Portland, OR 97035" +144682,AA Batteries (4-pack),2,3.84,01/25/19 19:21,"911 11th St, San Francisco, CA 94016" +144683,Bose SoundSport Headphones,1,99.99,01/11/19 11:02,"983 11th St, New York City, NY 10001" +144684,AAA Batteries (4-pack),3,2.99,01/24/19 20:32,"304 12th St, Seattle, WA 98101" +144685,Wired Headphones,1,11.99,01/27/19 21:52,"262 2nd St, Los Angeles, CA 90001" +144686,USB-C Charging Cable,2,11.95,01/08/19 16:00,"621 Walnut St, Austin, TX 73301" +144687,Wired Headphones,1,11.99,01/23/19 15:32,"548 Lincoln St, Portland, OR 97035" +144688,Lightning Charging Cable,1,14.95,01/08/19 18:18,"713 Meadow St, San Francisco, CA 94016" +144689,Google Phone,1,600,01/08/19 23:34,"929 Cherry St, Atlanta, GA 30301" +144690,AAA Batteries (4-pack),1,2.99,01/07/19 13:48,"135 Cherry St, San Francisco, CA 94016" +144691,AAA Batteries (4-pack),1,2.99,01/18/19 21:29,"874 11th St, San Francisco, CA 94016" +144692,iPhone,1,700,01/15/19 11:29,"322 Cedar St, Portland, OR 97035" +144693,Flatscreen TV,1,300,01/23/19 23:53,"740 Lakeview St, Boston, MA 02215" +144694,AA Batteries (4-pack),1,3.84,01/08/19 18:29,"291 Johnson St, Dallas, TX 75001" +144695,Lightning Charging Cable,1,14.95,01/12/19 23:27,"988 North St, Los Angeles, CA 90001" +144696,AAA Batteries (4-pack),1,2.99,01/14/19 00:59,"938 Willow St, Portland, OR 97035" +144697,Vareebadd Phone,1,400,01/20/19 21:29,"373 Lake St, Seattle, WA 98101" +144698,Bose SoundSport Headphones,2,99.99,01/19/19 07:55,"434 North St, San Francisco, CA 94016" +144699,Lightning Charging Cable,1,14.95,01/06/19 18:04,"674 Spruce St, Portland, OR 97035" +144700,AA Batteries (4-pack),5,3.84,01/28/19 21:17,"864 9th St, Boston, MA 02215" +144701,ThinkPad Laptop,1,999.99,01/27/19 07:36,"418 Washington St, San Francisco, CA 94016" +144702,27in FHD Monitor,1,149.99,01/03/19 20:54,"330 West St, Los Angeles, CA 90001" +144703,Bose SoundSport Headphones,1,99.99,01/14/19 11:20,"446 2nd St, Portland, OR 97035" +144704,AA Batteries (4-pack),1,3.84,01/30/19 22:53,"612 Hickory St, New York City, NY 10001" +144705,AA Batteries (4-pack),1,3.84,01/06/19 16:05,"955 12th St, Atlanta, GA 30301" +144706,AA Batteries (4-pack),1,3.84,01/01/19 12:27,"894 12th St, Austin, TX 73301" +144707,AAA Batteries (4-pack),2,2.99,01/21/19 13:18,"805 Pine St, Dallas, TX 75001" +144708,USB-C Charging Cable,1,11.95,01/17/19 21:47,"903 11th St, Portland, OR 97035" +144709,Macbook Pro Laptop,1,1700,01/14/19 17:29,"635 North St, San Francisco, CA 94016" +144710,AAA Batteries (4-pack),3,2.99,01/14/19 01:04,"300 Walnut St, New York City, NY 10001" +144711,AAA Batteries (4-pack),1,2.99,01/08/19 16:23,"637 9th St, New York City, NY 10001" +144712,USB-C Charging Cable,1,11.95,01/30/19 12:41,"758 Pine St, San Francisco, CA 94016" +144713,Wired Headphones,1,11.99,01/11/19 20:26,"472 Church St, Atlanta, GA 30301" +144714,AAA Batteries (4-pack),1,2.99,01/02/19 17:47,"833 10th St, San Francisco, CA 94016" +144715,USB-C Charging Cable,1,11.95,01/05/19 20:22,"137 Cherry St, Portland, OR 97035" +144716,Wired Headphones,1,11.99,01/16/19 13:12,"133 8th St, San Francisco, CA 94016" +144717,iPhone,1,700,01/08/19 17:03,"414 North St, San Francisco, CA 94016" +144718,Wired Headphones,1,11.99,01/26/19 12:09,"104 Ridge St, Dallas, TX 75001" +144719,AAA Batteries (4-pack),1,2.99,01/21/19 14:42,"202 14th St, San Francisco, CA 94016" +144720,Lightning Charging Cable,1,14.95,01/12/19 15:23,"805 Center St, Atlanta, GA 30301" +144721,27in FHD Monitor,1,149.99,01/09/19 13:01,"440 North St, Atlanta, GA 30301" +144722,ThinkPad Laptop,1,999.99,01/19/19 18:31,"974 Pine St, Seattle, WA 98101" +144723,Google Phone,1,600,01/17/19 10:32,"975 7th St, Seattle, WA 98101" +144723,USB-C Charging Cable,1,11.95,01/17/19 10:32,"975 7th St, Seattle, WA 98101" +144724,Vareebadd Phone,1,400,01/28/19 17:42,"342 Wilson St, New York City, NY 10001" +144724,USB-C Charging Cable,1,11.95,01/28/19 17:42,"342 Wilson St, New York City, NY 10001" +144725,Bose SoundSport Headphones,1,99.99,01/24/19 23:54,"334 Sunset St, New York City, NY 10001" +144726,Bose SoundSport Headphones,1,99.99,01/03/19 19:35,"610 Cherry St, Los Angeles, CA 90001" +144727,Bose SoundSport Headphones,1,99.99,01/09/19 10:00,"371 8th St, Portland, OR 97035" +144728,Wired Headphones,1,11.99,01/09/19 17:54,"112 9th St, Seattle, WA 98101" +144729,Bose SoundSport Headphones,1,99.99,01/08/19 15:01,"992 South St, New York City, NY 10001" +144730,Google Phone,1,600,01/04/19 10:47,"42 Ridge St, Boston, MA 02215" +144731,AAA Batteries (4-pack),1,2.99,01/07/19 15:10,"949 5th St, San Francisco, CA 94016" +144732,Flatscreen TV,1,300,01/24/19 09:48,"39 North St, New York City, NY 10001" +144733,AAA Batteries (4-pack),1,2.99,01/13/19 00:01,"166 North St, Los Angeles, CA 90001" +144734,USB-C Charging Cable,1,11.95,01/28/19 18:27,"796 Pine St, Portland, ME 04101" +144735,Google Phone,1,600,01/23/19 23:24,"450 Meadow St, Austin, TX 73301" +144735,Wired Headphones,1,11.99,01/23/19 23:24,"450 Meadow St, Austin, TX 73301" +144736,Google Phone,1,600,01/18/19 22:46,"324 Maple St, Dallas, TX 75001" +144737,Wired Headphones,1,11.99,01/26/19 21:07,"231 Willow St, New York City, NY 10001" +144738,AAA Batteries (4-pack),2,2.99,01/28/19 18:31,"744 Walnut St, San Francisco, CA 94016" +144739,Bose SoundSport Headphones,1,99.99,01/31/19 20:15,"789 5th St, Los Angeles, CA 90001" +144740,27in 4K Gaming Monitor,1,389.99,01/10/19 17:41,"395 South St, New York City, NY 10001" +144741,27in FHD Monitor,1,149.99,01/03/19 19:17,"306 Cherry St, Los Angeles, CA 90001" +144742,Lightning Charging Cable,1,14.95,01/16/19 21:07,"10 10th St, San Francisco, CA 94016" +144743,Wired Headphones,1,11.99,01/06/19 14:54,"811 Adams St, Seattle, WA 98101" +144744,USB-C Charging Cable,1,11.95,01/12/19 10:33,"15 Forest St, Atlanta, GA 30301" +144745,AAA Batteries (4-pack),1,2.99,01/22/19 11:31,"817 2nd St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +144746,AAA Batteries (4-pack),1,2.99,01/16/19 17:07,"951 Elm St, Los Angeles, CA 90001" +144747,AAA Batteries (4-pack),1,2.99,01/24/19 18:30,"608 13th St, Dallas, TX 75001" +144748,27in 4K Gaming Monitor,1,389.99,01/05/19 20:27,"570 8th St, San Francisco, CA 94016" +144749,Macbook Pro Laptop,1,1700,01/10/19 16:03,"283 West St, Dallas, TX 75001" +144750,AAA Batteries (4-pack),1,2.99,01/20/19 17:55,"326 Cedar St, New York City, NY 10001" +144751,Lightning Charging Cable,1,14.95,01/30/19 02:35,"457 Madison St, San Francisco, CA 94016" +144752,Bose SoundSport Headphones,1,99.99,01/06/19 21:13,"847 Ridge St, Boston, MA 02215" +144753,AAA Batteries (4-pack),1,2.99,01/24/19 13:25,"173 4th St, Los Angeles, CA 90001" +144754,Apple Airpods Headphones,1,150,01/31/19 14:45,"776 Highland St, Seattle, WA 98101" +144755,AAA Batteries (4-pack),1,2.99,01/07/19 16:47,"915 West St, Atlanta, GA 30301" +144756,Flatscreen TV,1,300,01/28/19 16:46,"317 13th St, San Francisco, CA 94016" +144757,Bose SoundSport Headphones,1,99.99,01/12/19 12:14,"961 5th St, San Francisco, CA 94016" +144758,Apple Airpods Headphones,1,150,01/23/19 14:47,"690 Jackson St, San Francisco, CA 94016" +144759,AA Batteries (4-pack),1,3.84,01/03/19 22:42,"943 12th St, San Francisco, CA 94016" +144760,Lightning Charging Cable,1,14.95,01/17/19 21:31,"219 Pine St, New York City, NY 10001" +144761,27in FHD Monitor,1,149.99,01/14/19 09:34,"797 West St, Los Angeles, CA 90001" +144762,Wired Headphones,1,11.99,01/31/19 08:33,"981 Cedar St, Los Angeles, CA 90001" +144763,34in Ultrawide Monitor,1,379.99,01/08/19 20:54,"36 Cedar St, Los Angeles, CA 90001" +144764,USB-C Charging Cable,1,11.95,01/02/19 13:59,"223 Hill St, Dallas, TX 75001" +144765,Apple Airpods Headphones,1,150,01/03/19 22:16,"178 Adams St, New York City, NY 10001" +144766,USB-C Charging Cable,1,11.95,01/01/19 20:16,"333 Willow St, New York City, NY 10001" +144767,27in 4K Gaming Monitor,1,389.99,01/05/19 07:53,"228 Church St, San Francisco, CA 94016" +144768,Lightning Charging Cable,1,14.95,01/27/19 14:11,"927 Meadow St, Los Angeles, CA 90001" +144769,AAA Batteries (4-pack),5,2.99,01/12/19 23:59,"842 5th St, Los Angeles, CA 90001" +144770,USB-C Charging Cable,1,11.95,01/08/19 15:05,"279 Jackson St, Austin, TX 73301" +144771,USB-C Charging Cable,1,11.95,01/22/19 10:10,"383 Meadow St, Los Angeles, CA 90001" +144772,Lightning Charging Cable,1,14.95,01/29/19 10:31,"567 West St, San Francisco, CA 94016" +144773,AAA Batteries (4-pack),1,2.99,01/24/19 16:34,"810 Hickory St, Portland, OR 97035" +144774,AA Batteries (4-pack),1,3.84,01/12/19 10:06,"160 5th St, New York City, NY 10001" +144775,AAA Batteries (4-pack),3,2.99,01/07/19 19:21,"204 Ridge St, Los Angeles, CA 90001" +144776,Macbook Pro Laptop,1,1700,01/16/19 20:10,"185 Hickory St, San Francisco, CA 94016" +144777,USB-C Charging Cable,1,11.95,01/24/19 19:07,"922 6th St, Austin, TX 73301" +144778,Apple Airpods Headphones,1,150,01/28/19 12:40,"374 Lincoln St, Los Angeles, CA 90001" +144779,Flatscreen TV,1,300,01/12/19 20:48,"581 Lake St, New York City, NY 10001" +144780,AA Batteries (4-pack),1,3.84,01/20/19 18:49,"737 12th St, San Francisco, CA 94016" +144781,Lightning Charging Cable,1,14.95,01/25/19 20:20,"167 4th St, Atlanta, GA 30301" +144782,Apple Airpods Headphones,1,150,01/19/19 15:08,"177 10th St, San Francisco, CA 94016" +144782,USB-C Charging Cable,2,11.95,01/19/19 15:08,"177 10th St, San Francisco, CA 94016" +144783,Wired Headphones,1,11.99,01/12/19 11:35,"51 Jefferson St, Los Angeles, CA 90001" +144784,Flatscreen TV,1,300,01/12/19 22:10,"741 4th St, San Francisco, CA 94016" +144785,Apple Airpods Headphones,1,150,01/29/19 14:02,"392 Willow St, Seattle, WA 98101" +144786,USB-C Charging Cable,1,11.95,01/28/19 10:42,"301 8th St, Los Angeles, CA 90001" +144786,AA Batteries (4-pack),1,3.84,01/28/19 10:42,"301 8th St, Los Angeles, CA 90001" +144787,iPhone,1,700,01/12/19 20:10,"301 Meadow St, San Francisco, CA 94016" +144788,iPhone,1,700,01/23/19 18:43,"701 Elm St, Boston, MA 02215" +144789,Bose SoundSport Headphones,1,99.99,01/16/19 21:29,"436 Madison St, Seattle, WA 98101" +144790,AAA Batteries (4-pack),1,2.99,01/07/19 08:03,"161 Forest St, Los Angeles, CA 90001" +144791,Wired Headphones,1,11.99,01/16/19 07:56,"104 10th St, San Francisco, CA 94016" +144792,USB-C Charging Cable,1,11.95,01/12/19 11:04,"152 2nd St, Los Angeles, CA 90001" +144793,ThinkPad Laptop,1,999.99,01/18/19 11:22,"666 Cherry St, Seattle, WA 98101" +144794,Google Phone,1,600,01/11/19 12:24,"933 Ridge St, San Francisco, CA 94016" +144795,AA Batteries (4-pack),2,3.84,01/24/19 04:06,"94 7th St, San Francisco, CA 94016" +144795,27in 4K Gaming Monitor,1,389.99,01/24/19 04:06,"94 7th St, San Francisco, CA 94016" +144796,AAA Batteries (4-pack),2,2.99,01/26/19 19:15,"602 Cedar St, Portland, OR 97035" +144797,USB-C Charging Cable,1,11.95,01/16/19 17:40,"133 Park St, New York City, NY 10001" +144798,Lightning Charging Cable,2,14.95,01/28/19 10:11,"524 Center St, New York City, NY 10001" +144799,USB-C Charging Cable,1,11.95,01/29/19 20:30,"354 Forest St, Seattle, WA 98101" +144800,AA Batteries (4-pack),1,3.84,01/16/19 12:18,"968 Lincoln St, Seattle, WA 98101" +144801,27in FHD Monitor,1,149.99,01/13/19 06:52,"151 5th St, New York City, NY 10001" +144802,Bose SoundSport Headphones,1,99.99,01/06/19 19:55,"313 Chestnut St, Los Angeles, CA 90001" +144803,Lightning Charging Cable,1,14.95,01/25/19 22:15,"120 Church St, Boston, MA 02215" +144804,AAA Batteries (4-pack),1,2.99,01/23/19 12:13,"430 Johnson St, New York City, NY 10001" +144805,ThinkPad Laptop,1,999.99,01/18/19 17:53,"354 10th St, San Francisco, CA 94016" +144806,Wired Headphones,1,11.99,01/12/19 20:05,"557 9th St, New York City, NY 10001" +144807,Apple Airpods Headphones,1,150,01/09/19 08:28,"804 Adams St, Boston, MA 02215" +144808,27in FHD Monitor,1,149.99,01/14/19 20:11,"14 West St, San Francisco, CA 94016" +144809,Wired Headphones,1,11.99,01/16/19 22:26,"745 9th St, San Francisco, CA 94016" +144810,AA Batteries (4-pack),1,3.84,01/29/19 10:57,"339 Hill St, San Francisco, CA 94016" +144811,AAA Batteries (4-pack),1,2.99,01/29/19 13:07,"675 Park St, Seattle, WA 98101" +144812,AAA Batteries (4-pack),4,2.99,01/18/19 20:40,"873 Park St, Portland, OR 97035" +144813,Flatscreen TV,1,300,01/01/19 22:04,"944 Meadow St, San Francisco, CA 94016" +144814,USB-C Charging Cable,1,11.95,01/07/19 22:25,"835 Main St, Los Angeles, CA 90001" +144815,Bose SoundSport Headphones,1,99.99,01/17/19 19:17,"534 Chestnut St, Portland, OR 97035" +144816,USB-C Charging Cable,1,11.95,01/09/19 17:13,"749 West St, Atlanta, GA 30301" +144817,AA Batteries (4-pack),2,3.84,01/26/19 16:14,"642 Ridge St, New York City, NY 10001" +144818,USB-C Charging Cable,1,11.95,01/24/19 23:06,"674 North St, San Francisco, CA 94016" +144819,ThinkPad Laptop,1,999.99,01/06/19 22:35,"217 7th St, Portland, OR 97035" +144820,Apple Airpods Headphones,1,150,01/24/19 10:57,"315 Jefferson St, Boston, MA 02215" +144821,Lightning Charging Cable,1,14.95,01/02/19 12:05,"95 14th St, San Francisco, CA 94016" +144822,iPhone,1,700,01/03/19 23:47,"838 Cherry St, Los Angeles, CA 90001" +,,,,, +144823,AAA Batteries (4-pack),1,2.99,01/10/19 02:42,"399 Lakeview St, New York City, NY 10001" +144824,27in 4K Gaming Monitor,1,389.99,01/28/19 15:04,"745 4th St, Austin, TX 73301" +144825,Wired Headphones,1,11.99,01/28/19 16:10,"263 Willow St, San Francisco, CA 94016" +144826,Flatscreen TV,1,300,01/06/19 16:12,"139 Lakeview St, New York City, NY 10001" +144827,27in FHD Monitor,1,149.99,01/12/19 16:02,"474 Cherry St, Atlanta, GA 30301" +144828,AA Batteries (4-pack),3,3.84,01/29/19 19:30,"61 Park St, Dallas, TX 75001" +144829,Bose SoundSport Headphones,1,99.99,01/28/19 14:13,"262 West St, New York City, NY 10001" +144830,AA Batteries (4-pack),1,3.84,01/20/19 11:30,"290 Ridge St, New York City, NY 10001" +144831,Wired Headphones,1,11.99,01/07/19 12:35,"322 Center St, San Francisco, CA 94016" +144832,ThinkPad Laptop,1,999.99,01/04/19 02:09,"53 Chestnut St, Austin, TX 73301" +144833,iPhone,1,700,01/31/19 14:04,"367 River St, Seattle, WA 98101" +144834,Lightning Charging Cable,1,14.95,01/31/19 14:37,"849 Highland St, San Francisco, CA 94016" +144835,AA Batteries (4-pack),1,3.84,01/06/19 13:49,"445 Meadow St, San Francisco, CA 94016" +144836,Apple Airpods Headphones,1,150,01/29/19 17:16,"718 Chestnut St, New York City, NY 10001" +144837,Bose SoundSport Headphones,1,99.99,01/23/19 19:27,"373 Meadow St, Austin, TX 73301" +144838,Apple Airpods Headphones,1,150,01/08/19 18:38,"113 Willow St, Los Angeles, CA 90001" +144839,USB-C Charging Cable,1,11.95,01/25/19 04:48,"638 West St, San Francisco, CA 94016" +144840,Lightning Charging Cable,1,14.95,01/16/19 07:04,"583 Sunset St, Seattle, WA 98101" +144841,iPhone,1,700,01/16/19 20:42,"656 4th St, Los Angeles, CA 90001" +144842,AA Batteries (4-pack),1,3.84,01/23/19 13:55,"929 Jefferson St, Portland, OR 97035" +144843,Google Phone,1,600,01/26/19 16:31,"723 Cherry St, San Francisco, CA 94016" +144843,Wired Headphones,1,11.99,01/26/19 16:31,"723 Cherry St, San Francisco, CA 94016" +144844,USB-C Charging Cable,1,11.95,01/28/19 22:48,"118 Washington St, Dallas, TX 75001" +144845,USB-C Charging Cable,1,11.95,01/17/19 05:41,"833 Jackson St, New York City, NY 10001" +144846,AAA Batteries (4-pack),2,2.99,01/31/19 19:57,"778 Elm St, Austin, TX 73301" +144847,AAA Batteries (4-pack),1,2.99,01/20/19 10:16,"938 2nd St, Atlanta, GA 30301" +144848,iPhone,1,700,01/08/19 22:01,"401 Jefferson St, Los Angeles, CA 90001" +144849,27in FHD Monitor,1,149.99,01/13/19 01:02,"391 13th St, Dallas, TX 75001" +144850,USB-C Charging Cable,1,11.95,01/18/19 15:44,"740 Johnson St, Boston, MA 02215" +144851,Wired Headphones,1,11.99,01/20/19 18:14,"441 Park St, San Francisco, CA 94016" +144852,Apple Airpods Headphones,1,150,01/02/19 00:52,"33 Lake St, San Francisco, CA 94016" +144853,AAA Batteries (4-pack),1,2.99,01/25/19 11:48,"380 Meadow St, Los Angeles, CA 90001" +144854,Apple Airpods Headphones,1,150,01/25/19 22:01,"245 Meadow St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +144855,AA Batteries (4-pack),2,3.84,01/15/19 13:55,"960 Lake St, Boston, MA 02215" +144856,USB-C Charging Cable,1,11.95,01/20/19 14:48,"38 6th St, New York City, NY 10001" +144857,Wired Headphones,2,11.99,01/27/19 20:30,"469 14th St, New York City, NY 10001" +144858,Lightning Charging Cable,1,14.95,01/04/19 08:35,"847 4th St, Los Angeles, CA 90001" +144859,Bose SoundSport Headphones,1,99.99,01/06/19 13:43,"320 Elm St, San Francisco, CA 94016" +144860,Bose SoundSport Headphones,1,99.99,01/26/19 20:25,"355 Meadow St, New York City, NY 10001" +144861,Wired Headphones,1,11.99,01/10/19 15:55,"876 Lake St, Portland, OR 97035" +144862,Wired Headphones,1,11.99,01/08/19 11:42,"595 Elm St, San Francisco, CA 94016" +144863,27in 4K Gaming Monitor,1,389.99,01/03/19 18:33,"200 Park St, San Francisco, CA 94016" +144864,AAA Batteries (4-pack),2,2.99,01/25/19 09:32,"847 Hickory St, Seattle, WA 98101" +144865,Wired Headphones,1,11.99,01/12/19 21:17,"293 Lakeview St, Atlanta, GA 30301" +144866,Apple Airpods Headphones,1,150,01/09/19 14:36,"43 Sunset St, Los Angeles, CA 90001" +144867,Macbook Pro Laptop,1,1700,01/26/19 13:50,"648 8th St, Los Angeles, CA 90001" +144868,ThinkPad Laptop,1,999.99,01/04/19 10:41,"891 Church St, Los Angeles, CA 90001" +144869,Wired Headphones,1,11.99,01/04/19 11:52,"804 13th St, Seattle, WA 98101" +144870,Wired Headphones,2,11.99,01/10/19 11:30,"77 North St, New York City, NY 10001" +144871,Vareebadd Phone,1,400,01/20/19 17:25,"769 Washington St, New York City, NY 10001" +144872,Google Phone,1,600,01/31/19 20:08,"314 9th St, Atlanta, GA 30301" +144873,Apple Airpods Headphones,1,150,01/30/19 22:38,"446 6th St, New York City, NY 10001" +144874,34in Ultrawide Monitor,1,379.99,01/24/19 12:01,"89 Ridge St, Dallas, TX 75001" +144875,Wired Headphones,1,11.99,01/15/19 11:57,"910 Main St, New York City, NY 10001" +144876,iPhone,1,700,01/23/19 09:05,"740 Pine St, Los Angeles, CA 90001" +144877,USB-C Charging Cable,1,11.95,01/11/19 22:32,"287 6th St, San Francisco, CA 94016" +144878,27in 4K Gaming Monitor,1,389.99,01/18/19 21:20,"94 1st St, San Francisco, CA 94016" +144879,AAA Batteries (4-pack),1,2.99,01/31/19 15:38,"787 5th St, New York City, NY 10001" +144880,Apple Airpods Headphones,1,150,01/29/19 19:14,"783 Cherry St, Atlanta, GA 30301" +144880,Flatscreen TV,1,300,01/29/19 19:14,"783 Cherry St, Atlanta, GA 30301" +144881,34in Ultrawide Monitor,1,379.99,01/17/19 13:19,"680 Johnson St, Portland, ME 04101" +144882,34in Ultrawide Monitor,1,379.99,01/10/19 18:58,"729 Highland St, San Francisco, CA 94016" +144883,AA Batteries (4-pack),1,3.84,01/07/19 04:59,"56 Adams St, San Francisco, CA 94016" +144884,AAA Batteries (4-pack),1,2.99,01/02/19 09:27,"667 Wilson St, Los Angeles, CA 90001" +144885,Google Phone,1,600,01/05/19 12:18,"843 Walnut St, New York City, NY 10001" +144886,Bose SoundSport Headphones,1,99.99,01/03/19 17:06,"201 1st St, Dallas, TX 75001" +144887,Flatscreen TV,1,300,01/31/19 16:33,"406 Wilson St, Los Angeles, CA 90001" +144888,Google Phone,1,600,01/01/19 09:58,"991 Washington St, Portland, OR 97035" +144889,20in Monitor,1,109.99,01/10/19 00:15,"292 Lincoln St, San Francisco, CA 94016" +144890,34in Ultrawide Monitor,1,379.99,01/19/19 13:50,"91 West St, Los Angeles, CA 90001" +144891,Bose SoundSport Headphones,1,99.99,01/28/19 15:04,"368 Chestnut St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +144892,USB-C Charging Cable,1,11.95,01/15/19 12:11,"736 Cherry St, New York City, NY 10001" +144893,Apple Airpods Headphones,1,150,01/12/19 18:29,"176 Adams St, Los Angeles, CA 90001" +144894,Google Phone,1,600,01/17/19 17:14,"54 5th St, Los Angeles, CA 90001" +144895,27in 4K Gaming Monitor,1,389.99,01/10/19 21:10,"430 Hill St, New York City, NY 10001" +144896,Apple Airpods Headphones,1,150,01/03/19 18:53,"695 Main St, Dallas, TX 75001" +144896,ThinkPad Laptop,1,999.99,01/03/19 18:53,"695 Main St, Dallas, TX 75001" +144897,USB-C Charging Cable,1,11.95,01/24/19 10:59,"310 Washington St, Boston, MA 02215" +144898,Apple Airpods Headphones,1,150,01/18/19 00:42,"447 Madison St, Boston, MA 02215" +144899,AA Batteries (4-pack),1,3.84,01/27/19 15:41,"361 Meadow St, Los Angeles, CA 90001" +144900,Bose SoundSport Headphones,1,99.99,01/04/19 11:35,"775 Highland St, San Francisco, CA 94016" +144901,20in Monitor,1,109.99,01/15/19 20:08,"108 Jefferson St, Portland, ME 04101" +144902,34in Ultrawide Monitor,1,379.99,01/19/19 20:05,"225 Main St, Portland, OR 97035" +144903,27in FHD Monitor,1,149.99,01/21/19 11:01,"293 Lake St, San Francisco, CA 94016" +144904,AAA Batteries (4-pack),2,2.99,01/21/19 23:18,"528 Madison St, Dallas, TX 75001" +144905,27in FHD Monitor,1,149.99,01/25/19 14:05,"261 Adams St, San Francisco, CA 94016" +144906,AA Batteries (4-pack),1,3.84,01/31/19 18:18,"727 Forest St, Boston, MA 02215" +144907,USB-C Charging Cable,1,11.95,01/19/19 23:01,"777 Sunset St, Portland, ME 04101" +144908,Flatscreen TV,1,300,01/10/19 20:39,"705 Lake St, Portland, OR 97035" +144909,Wired Headphones,1,11.99,01/20/19 13:41,"932 Lakeview St, Los Angeles, CA 90001" +144910,USB-C Charging Cable,1,11.95,01/14/19 16:04,"927 Walnut St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +144911,Bose SoundSport Headphones,1,99.99,01/16/19 16:56,"279 1st St, New York City, NY 10001" +144912,27in FHD Monitor,1,149.99,01/17/19 01:40,"188 South St, Dallas, TX 75001" +144913,AAA Batteries (4-pack),5,2.99,01/15/19 01:32,"733 13th St, San Francisco, CA 94016" +144914,Lightning Charging Cable,1,14.95,01/10/19 17:47,"196 9th St, Los Angeles, CA 90001" +144915,Lightning Charging Cable,1,14.95,01/02/19 15:52,"353 Jefferson St, Los Angeles, CA 90001" +144916,Lightning Charging Cable,1,14.95,01/08/19 09:03,"975 Washington St, Portland, OR 97035" +144917,Lightning Charging Cable,1,14.95,01/04/19 01:28,"331 Center St, San Francisco, CA 94016" +144918,Wired Headphones,1,11.99,01/16/19 18:37,"75 Chestnut St, Atlanta, GA 30301" +144919,USB-C Charging Cable,1,11.95,01/04/19 15:13,"971 North St, Boston, MA 02215" +144920,USB-C Charging Cable,1,11.95,01/11/19 19:19,"538 Center St, Los Angeles, CA 90001" +144921,Bose SoundSport Headphones,1,99.99,01/17/19 21:50,"517 Madison St, San Francisco, CA 94016" +144922,34in Ultrawide Monitor,1,379.99,01/29/19 20:28,"303 Maple St, Seattle, WA 98101" +144923,AAA Batteries (4-pack),1,2.99,01/15/19 11:32,"376 Cedar St, Los Angeles, CA 90001" +144924,Wired Headphones,1,11.99,01/13/19 21:17,"111 7th St, Los Angeles, CA 90001" +144925,AAA Batteries (4-pack),1,2.99,01/20/19 12:16,"950 2nd St, Dallas, TX 75001" +144926,AAA Batteries (4-pack),1,2.99,01/07/19 11:40,"275 Main St, New York City, NY 10001" +144927,34in Ultrawide Monitor,1,379.99,01/14/19 20:14,"735 Highland St, New York City, NY 10001" +144928,AA Batteries (4-pack),1,3.84,01/07/19 15:00,"947 2nd St, Atlanta, GA 30301" +144929,AAA Batteries (4-pack),3,2.99,01/10/19 09:46,"517 Cedar St, San Francisco, CA 94016" +144930,Bose SoundSport Headphones,1,99.99,01/21/19 17:43,"480 Park St, Austin, TX 73301" +144931,USB-C Charging Cable,1,11.95,01/10/19 19:18,"845 Cedar St, New York City, NY 10001" +144932,Flatscreen TV,1,300,01/23/19 12:23,"267 South St, Boston, MA 02215" +144933,Wired Headphones,1,11.99,01/04/19 23:55,"365 Adams St, Seattle, WA 98101" +,,,,, +144934,iPhone,1,700,01/23/19 12:00,"551 2nd St, Los Angeles, CA 90001" +144934,Wired Headphones,1,11.99,01/23/19 12:00,"551 2nd St, Los Angeles, CA 90001" +144935,27in 4K Gaming Monitor,1,389.99,01/25/19 18:17,"210 Meadow St, Atlanta, GA 30301" +144936,AAA Batteries (4-pack),1,2.99,01/21/19 14:18,"483 2nd St, New York City, NY 10001" +144937,USB-C Charging Cable,1,11.95,01/15/19 10:28,"817 Lakeview St, Seattle, WA 98101" +144938,USB-C Charging Cable,2,11.95,01/09/19 12:28,"385 Lakeview St, Seattle, WA 98101" +144939,Apple Airpods Headphones,2,150,01/25/19 14:35,"123 10th St, Boston, MA 02215" +144940,ThinkPad Laptop,1,999.99,01/17/19 17:11,"451 13th St, Atlanta, GA 30301" +144941,Lightning Charging Cable,1,14.95,01/10/19 01:09,"261 South St, Portland, OR 97035" +144942,USB-C Charging Cable,1,11.95,01/27/19 13:43,"726 Elm St, New York City, NY 10001" +144943,USB-C Charging Cable,1,11.95,01/17/19 15:19,"306 Park St, Austin, TX 73301" +144944,Wired Headphones,2,11.99,01/27/19 17:20,"959 Lake St, Portland, OR 97035" +144945,Wired Headphones,1,11.99,01/09/19 12:38,"398 12th St, Atlanta, GA 30301" +144946,LG Washing Machine,1,600.0,01/06/19 14:51,"458 Church St, San Francisco, CA 94016" +144947,Wired Headphones,1,11.99,01/20/19 17:01,"863 Wilson St, Dallas, TX 75001" +144948,AA Batteries (4-pack),1,3.84,01/14/19 13:05,"550 Forest St, Seattle, WA 98101" +144949,iPhone,1,700,01/17/19 14:38,"252 4th St, San Francisco, CA 94016" +144949,Wired Headphones,1,11.99,01/17/19 14:38,"252 4th St, San Francisco, CA 94016" +144950,Bose SoundSport Headphones,1,99.99,01/31/19 13:56,"304 Johnson St, Los Angeles, CA 90001" +144951,Bose SoundSport Headphones,1,99.99,01/15/19 03:41,"102 Cherry St, New York City, NY 10001" +144952,20in Monitor,1,109.99,01/04/19 09:49,"808 8th St, San Francisco, CA 94016" +144953,Apple Airpods Headphones,1,150,01/26/19 11:21,"381 Jefferson St, Boston, MA 02215" +144954,USB-C Charging Cable,1,11.95,01/09/19 15:22,"868 North St, Los Angeles, CA 90001" +144955,27in 4K Gaming Monitor,1,389.99,01/30/19 11:44,"267 12th St, Dallas, TX 75001" +144956,Bose SoundSport Headphones,1,99.99,01/21/19 12:51,"970 1st St, Los Angeles, CA 90001" +144957,iPhone,1,700,01/18/19 14:17,"638 Cherry St, San Francisco, CA 94016" +144958,Lightning Charging Cable,1,14.95,01/23/19 13:29,"702 2nd St, Atlanta, GA 30301" +144959,27in 4K Gaming Monitor,1,389.99,01/01/19 19:37,"566 Lake St, Atlanta, GA 30301" +144960,USB-C Charging Cable,1,11.95,01/28/19 10:56,"226 5th St, Los Angeles, CA 90001" +144961,27in FHD Monitor,1,149.99,01/09/19 12:39,"924 8th St, Los Angeles, CA 90001" +144962,AA Batteries (4-pack),1,3.84,01/08/19 12:30,"625 7th St, New York City, NY 10001" +144963,AA Batteries (4-pack),1,3.84,01/31/19 17:27,"510 1st St, San Francisco, CA 94016" +144964,Macbook Pro Laptop,1,1700,01/18/19 14:24,"17 Forest St, Seattle, WA 98101" +144965,Wired Headphones,1,11.99,01/02/19 20:19,"789 9th St, Seattle, WA 98101" +144966,USB-C Charging Cable,1,11.95,01/21/19 13:14,"98 Maple St, Dallas, TX 75001" +144967,USB-C Charging Cable,1,11.95,01/18/19 18:21,"680 Maple St, New York City, NY 10001" +144968,USB-C Charging Cable,1,11.95,01/01/19 14:13,"797 Dogwood St, Atlanta, GA 30301" +144969,20in Monitor,1,109.99,01/18/19 10:39,"641 13th St, Austin, TX 73301" +144970,Bose SoundSport Headphones,1,99.99,01/30/19 11:50,"859 Meadow St, Dallas, TX 75001" +144971,Lightning Charging Cable,1,14.95,01/29/19 11:21,"920 Chestnut St, Portland, OR 97035" +144972,Lightning Charging Cable,1,14.95,01/24/19 21:10,"734 5th St, Seattle, WA 98101" +144973,Macbook Pro Laptop,1,1700,01/05/19 18:16,"36 Spruce St, Los Angeles, CA 90001" +144974,Wired Headphones,1,11.99,01/26/19 19:13,"996 12th St, New York City, NY 10001" +144975,USB-C Charging Cable,1,11.95,01/09/19 16:33,"677 4th St, Seattle, WA 98101" +144976,34in Ultrawide Monitor,1,379.99,01/01/19 12:17,"468 4th St, Boston, MA 02215" +144977,Bose SoundSport Headphones,1,99.99,01/16/19 14:29,"274 Chestnut St, Atlanta, GA 30301" +144978,USB-C Charging Cable,1,11.95,01/24/19 11:07,"720 North St, Dallas, TX 75001" +144979,Flatscreen TV,1,300,01/20/19 16:07,"294 Washington St, Dallas, TX 75001" +144980,Wired Headphones,1,11.99,01/14/19 23:25,"219 Wilson St, Los Angeles, CA 90001" +144981,Bose SoundSport Headphones,1,99.99,01/10/19 07:50,"898 West St, Dallas, TX 75001" +144982,AAA Batteries (4-pack),2,2.99,01/05/19 09:36,"49 Chestnut St, Los Angeles, CA 90001" +144983,AAA Batteries (4-pack),1,2.99,01/16/19 19:08,"578 Pine St, Portland, OR 97035" +144984,Vareebadd Phone,1,400,01/10/19 13:49,"411 Center St, Boston, MA 02215" +144984,Wired Headphones,1,11.99,01/10/19 13:49,"411 Center St, Boston, MA 02215" +144985,Lightning Charging Cable,1,14.95,01/16/19 15:05,"719 Spruce St, Boston, MA 02215" +144986,Lightning Charging Cable,1,14.95,01/29/19 18:51,"699 Center St, Boston, MA 02215" +144987,27in 4K Gaming Monitor,1,389.99,01/16/19 15:32,"850 Meadow St, Portland, ME 04101" +144988,AAA Batteries (4-pack),3,2.99,01/15/19 22:32,"990 Cedar St, Los Angeles, CA 90001" +144989,Lightning Charging Cable,1,14.95,01/18/19 11:07,"153 12th St, Austin, TX 73301" +144990,AA Batteries (4-pack),1,3.84,01/26/19 09:38,"726 10th St, Dallas, TX 75001" +144991,AAA Batteries (4-pack),1,2.99,01/12/19 19:17,"231 River St, New York City, NY 10001" +144992,Lightning Charging Cable,1,14.95,01/21/19 08:50,"460 Ridge St, New York City, NY 10001" +144993,USB-C Charging Cable,1,11.95,01/11/19 09:53,"925 6th St, New York City, NY 10001" +144994,iPhone,1,700,01/17/19 12:35,"510 Main St, Los Angeles, CA 90001" +144995,Google Phone,1,600,01/06/19 14:07,"882 Jefferson St, New York City, NY 10001" +144996,Apple Airpods Headphones,1,150,01/18/19 10:43,"687 South St, Boston, MA 02215" +144997,AA Batteries (4-pack),1,3.84,01/11/19 21:26,"3 Forest St, San Francisco, CA 94016" +144998,USB-C Charging Cable,1,11.95,01/31/19 13:12,"545 Highland St, Dallas, TX 75001" +144999,USB-C Charging Cable,1,11.95,01/03/19 18:41,"486 Lake St, Portland, OR 97035" +145000,Apple Airpods Headphones,1,150,01/22/19 17:30,"93 Willow St, Los Angeles, CA 90001" +145001,AA Batteries (4-pack),1,3.84,01/08/19 16:35,"827 Cedar St, New York City, NY 10001" +145002,AA Batteries (4-pack),3,3.84,01/29/19 14:13,"486 Lake St, New York City, NY 10001" +145003,27in 4K Gaming Monitor,1,389.99,01/22/19 15:19,"26 Forest St, Atlanta, GA 30301" +145004,Apple Airpods Headphones,1,150,01/29/19 10:58,"503 South St, San Francisco, CA 94016" +145005,34in Ultrawide Monitor,1,379.99,01/29/19 21:06,"259 Pine St, San Francisco, CA 94016" +145006,iPhone,1,700,01/16/19 14:59,"488 Elm St, San Francisco, CA 94016" +145007,Flatscreen TV,1,300,01/26/19 10:28,"615 Center St, Los Angeles, CA 90001" +145008,Bose SoundSport Headphones,1,99.99,01/06/19 03:27,"798 Hill St, Seattle, WA 98101" +145009,Wired Headphones,1,11.99,01/20/19 17:45,"269 13th St, San Francisco, CA 94016" +145010,34in Ultrawide Monitor,1,379.99,01/31/19 22:14,"930 Lake St, San Francisco, CA 94016" +145011,Wired Headphones,1,11.99,01/17/19 00:06,"536 Jefferson St, New York City, NY 10001" +145012,34in Ultrawide Monitor,1,379.99,01/29/19 09:31,"552 North St, San Francisco, CA 94016" +145013,Lightning Charging Cable,1,14.95,01/29/19 23:02,"834 Center St, Atlanta, GA 30301" +145014,Apple Airpods Headphones,1,150,01/20/19 17:02,"955 Jackson St, Portland, ME 04101" +145015,Apple Airpods Headphones,1,150,01/26/19 15:27,"610 North St, Seattle, WA 98101" +145016,Lightning Charging Cable,1,14.95,01/09/19 11:11,"402 Johnson St, San Francisco, CA 94016" +145017,Google Phone,1,600,01/18/19 19:16,"579 11th St, Los Angeles, CA 90001" +145018,AA Batteries (4-pack),1,3.84,01/04/19 14:17,"253 7th St, Portland, ME 04101" +145019,iPhone,1,700,01/18/19 14:59,"785 10th St, New York City, NY 10001" +145020,AAA Batteries (4-pack),1,2.99,01/06/19 01:48,"383 10th St, New York City, NY 10001" +145021,Lightning Charging Cable,1,14.95,01/02/19 13:22,"786 Hickory St, San Francisco, CA 94016" +145022,34in Ultrawide Monitor,1,379.99,01/25/19 17:59,"598 Pine St, San Francisco, CA 94016" +145023,AA Batteries (4-pack),1,3.84,01/17/19 14:47,"987 10th St, Austin, TX 73301" +145024,AAA Batteries (4-pack),1,2.99,01/18/19 21:32,"150 Hickory St, Atlanta, GA 30301" +145025,20in Monitor,1,109.99,01/16/19 13:52,"267 6th St, San Francisco, CA 94016" +145026,27in 4K Gaming Monitor,1,389.99,01/27/19 09:29,"318 Pine St, Austin, TX 73301" +145027,USB-C Charging Cable,1,11.95,01/24/19 22:35,"960 Ridge St, San Francisco, CA 94016" +145028,USB-C Charging Cable,1,11.95,01/01/19 14:49,"925 River St, Los Angeles, CA 90001" +145029,iPhone,1,700,01/07/19 13:41,"558 2nd St, Atlanta, GA 30301" +145030,Wired Headphones,1,11.99,01/30/19 19:52,"84 Chestnut St, Boston, MA 02215" +145031,AAA Batteries (4-pack),2,2.99,01/23/19 21:32,"581 Center St, Portland, ME 04101" +145032,Google Phone,1,600,01/28/19 14:50,"175 North St, Seattle, WA 98101" +145033,Wired Headphones,2,11.99,01/26/19 20:06,"779 Johnson St, Boston, MA 02215" +145034,ThinkPad Laptop,1,999.99,01/25/19 16:34,"418 Willow St, Dallas, TX 75001" +145035,AA Batteries (4-pack),1,3.84,01/03/19 21:55,"599 Willow St, Dallas, TX 75001" +145036,USB-C Charging Cable,1,11.95,01/10/19 19:49,"184 Meadow St, Los Angeles, CA 90001" +145037,AAA Batteries (4-pack),1,2.99,01/20/19 11:02,"181 Wilson St, Atlanta, GA 30301" +145038,Wired Headphones,1,11.99,01/23/19 15:44,"958 2nd St, San Francisco, CA 94016" +145039,USB-C Charging Cable,2,11.95,01/31/19 12:35,"965 14th St, Los Angeles, CA 90001" +145040,34in Ultrawide Monitor,1,379.99,01/25/19 10:52,"984 Lakeview St, Seattle, WA 98101" +145041,Apple Airpods Headphones,1,150,01/09/19 12:09,"734 11th St, New York City, NY 10001" +145042,Bose SoundSport Headphones,1,99.99,01/09/19 18:02,"72 Dogwood St, Portland, OR 97035" +145043,ThinkPad Laptop,1,999.99,01/08/19 14:25,"250 Church St, Boston, MA 02215" +145044,Lightning Charging Cable,2,14.95,01/06/19 21:39,"781 Lake St, Dallas, TX 75001" +145045,Wired Headphones,1,11.99,01/22/19 22:17,"359 13th St, Seattle, WA 98101" +145046,Lightning Charging Cable,1,14.95,01/19/19 18:06,"905 West St, Dallas, TX 75001" +145047,USB-C Charging Cable,1,11.95,01/31/19 08:32,"310 Lake St, Seattle, WA 98101" +145048,AA Batteries (4-pack),1,3.84,01/19/19 11:46,"323 Jackson St, San Francisco, CA 94016" +145049,27in FHD Monitor,1,149.99,01/07/19 10:02,"853 Park St, San Francisco, CA 94016" +145050,AA Batteries (4-pack),1,3.84,01/23/19 13:00,"23 Lake St, Portland, OR 97035" +145051,34in Ultrawide Monitor,1,379.99,01/29/19 12:14,"178 Madison St, Austin, TX 73301" +145052,Wired Headphones,1,11.99,01/30/19 13:49,"262 North St, San Francisco, CA 94016" +145053,Wired Headphones,1,11.99,01/26/19 20:56,"990 North St, New York City, NY 10001" +145054,27in FHD Monitor,1,149.99,01/05/19 13:33,"783 10th St, San Francisco, CA 94016" +145055,AAA Batteries (4-pack),1,2.99,01/23/19 11:41,"115 Hill St, Los Angeles, CA 90001" +145056,USB-C Charging Cable,1,11.95,01/16/19 02:18,"585 Highland St, Atlanta, GA 30301" +145057,LG Washing Machine,1,600.0,01/14/19 17:03,"348 River St, San Francisco, CA 94016" +145058,Apple Airpods Headphones,1,150,01/26/19 20:31,"704 5th St, San Francisco, CA 94016" +145059,27in FHD Monitor,1,149.99,01/14/19 11:30,"867 Lake St, New York City, NY 10001" +145060,USB-C Charging Cable,1,11.95,01/19/19 10:34,"666 11th St, Boston, MA 02215" +145061,Apple Airpods Headphones,1,150,01/08/19 18:22,"850 Jefferson St, San Francisco, CA 94016" +145062,Google Phone,1,600,01/07/19 21:29,"153 Jefferson St, New York City, NY 10001" +145062,Lightning Charging Cable,2,14.95,01/07/19 21:29,"153 Jefferson St, New York City, NY 10001" +145063,27in FHD Monitor,1,149.99,01/22/19 16:52,"880 8th St, New York City, NY 10001" +145064,USB-C Charging Cable,1,11.95,01/19/19 19:21,"423 Dogwood St, Los Angeles, CA 90001" +145065,Vareebadd Phone,1,400,01/06/19 18:31,"948 6th St, New York City, NY 10001" +145066,27in 4K Gaming Monitor,1,389.99,01/14/19 17:11,"472 Center St, Austin, TX 73301" +145067,AAA Batteries (4-pack),1,2.99,01/01/19 18:15,"291 Chestnut St, Los Angeles, CA 90001" +145068,USB-C Charging Cable,1,11.95,01/12/19 20:51,"581 Center St, Los Angeles, CA 90001" +145069,AAA Batteries (4-pack),2,2.99,01/03/19 19:36,"381 South St, New York City, NY 10001" +145070,USB-C Charging Cable,1,11.95,01/22/19 00:55,"499 Center St, Atlanta, GA 30301" +145071,USB-C Charging Cable,1,11.95,01/20/19 18:35,"184 1st St, San Francisco, CA 94016" +145072,27in FHD Monitor,1,149.99,01/04/19 16:53,"331 River St, Boston, MA 02215" +145073,AAA Batteries (4-pack),2,2.99,01/28/19 11:32,"867 River St, Boston, MA 02215" +145074,Lightning Charging Cable,1,14.95,01/01/19 10:42,"919 Park St, Los Angeles, CA 90001" +145075,Lightning Charging Cable,1,14.95,01/08/19 23:12,"719 Forest St, Boston, MA 02215" +145076,AA Batteries (4-pack),1,3.84,01/15/19 22:49,"565 Madison St, San Francisco, CA 94016" +145077,Wired Headphones,1,11.99,01/30/19 12:34,"130 Meadow St, Atlanta, GA 30301" +145078,Apple Airpods Headphones,1,150,01/16/19 20:07,"386 South St, San Francisco, CA 94016" +145079,Wired Headphones,2,11.99,01/06/19 21:20,"786 13th St, Los Angeles, CA 90001" +145080,iPhone,1,700,01/28/19 07:30,"173 8th St, San Francisco, CA 94016" +145081,Bose SoundSport Headphones,1,99.99,01/22/19 14:59,"700 Lincoln St, Seattle, WA 98101" +145082,AA Batteries (4-pack),1,3.84,01/02/19 23:39,"711 4th St, Los Angeles, CA 90001" +145083,AAA Batteries (4-pack),2,2.99,01/30/19 20:07,"547 11th St, San Francisco, CA 94016" +145084,Bose SoundSport Headphones,1,99.99,01/25/19 09:40,"7 2nd St, New York City, NY 10001" +145085,AAA Batteries (4-pack),2,2.99,01/28/19 11:18,"584 Sunset St, San Francisco, CA 94016" +145086,USB-C Charging Cable,1,11.95,01/01/19 11:56,"884 Ridge St, Boston, MA 02215" +145087,Lightning Charging Cable,1,14.95,01/05/19 10:10,"915 4th St, San Francisco, CA 94016" +145088,Macbook Pro Laptop,1,1700,01/19/19 14:20,"168 River St, San Francisco, CA 94016" +145089,Wired Headphones,2,11.99,01/31/19 14:47,"513 Ridge St, Atlanta, GA 30301" +145090,Bose SoundSport Headphones,1,99.99,01/01/19 19:40,"791 13th St, Austin, TX 73301" +145091,AA Batteries (4-pack),1,3.84,01/15/19 19:46,"396 11th St, Los Angeles, CA 90001" +145092,Wired Headphones,1,11.99,01/20/19 11:41,"542 4th St, Portland, OR 97035" +145093,Apple Airpods Headphones,1,150,01/27/19 22:25,"903 Lincoln St, San Francisco, CA 94016" +145094,Lightning Charging Cable,1,14.95,01/11/19 14:26,"514 Main St, Los Angeles, CA 90001" +145095,Macbook Pro Laptop,1,1700,01/30/19 16:08,"593 Elm St, Atlanta, GA 30301" +145095,Bose SoundSport Headphones,1,99.99,01/30/19 16:08,"593 Elm St, Atlanta, GA 30301" +145096,Google Phone,1,600,01/28/19 16:36,"730 10th St, Atlanta, GA 30301" +145097,Google Phone,1,600,01/09/19 16:09,"502 Johnson St, Boston, MA 02215" +145098,AA Batteries (4-pack),1,3.84,01/17/19 12:29,"556 Washington St, New York City, NY 10001" +145099,Wired Headphones,1,11.99,01/02/19 01:31,"602 Cherry St, Seattle, WA 98101" +145100,Bose SoundSport Headphones,1,99.99,01/03/19 10:58,"148 12th St, Boston, MA 02215" +145101,USB-C Charging Cable,1,11.95,01/16/19 09:28,"147 10th St, Atlanta, GA 30301" +145102,27in FHD Monitor,1,149.99,01/12/19 10:03,"294 Elm St, Austin, TX 73301" +145103,USB-C Charging Cable,1,11.95,01/13/19 06:16,"211 7th St, San Francisco, CA 94016" +145104,Flatscreen TV,1,300,01/29/19 19:31,"818 Hickory St, Dallas, TX 75001" +145105,USB-C Charging Cable,1,11.95,01/11/19 12:07,"203 9th St, Boston, MA 02215" +145106,USB-C Charging Cable,2,11.95,01/27/19 17:14,"601 Lincoln St, New York City, NY 10001" +145107,AA Batteries (4-pack),1,3.84,01/13/19 09:41,"886 Walnut St, Los Angeles, CA 90001" +145108,20in Monitor,1,109.99,01/30/19 13:52,"900 Washington St, Los Angeles, CA 90001" +145109,Wired Headphones,2,11.99,01/21/19 19:55,"248 Lincoln St, Dallas, TX 75001" +145110,AA Batteries (4-pack),1,3.84,01/22/19 16:52,"636 Washington St, Atlanta, GA 30301" +145111,AA Batteries (4-pack),1,3.84,01/06/19 18:21,"752 South St, Dallas, TX 75001" +145112,USB-C Charging Cable,2,11.95,01/24/19 11:34,"640 12th St, Los Angeles, CA 90001" +145113,34in Ultrawide Monitor,1,379.99,01/09/19 22:11,"125 Highland St, New York City, NY 10001" +145114,Lightning Charging Cable,2,14.95,01/06/19 17:27,"899 Forest St, San Francisco, CA 94016" +145115,AAA Batteries (4-pack),2,2.99,01/12/19 11:26,"31 Wilson St, Dallas, TX 75001" +145116,Lightning Charging Cable,1,14.95,01/09/19 11:37,"485 Main St, New York City, NY 10001" +145117,27in FHD Monitor,1,149.99,01/11/19 01:20,"134 Hill St, Los Angeles, CA 90001" +145118,AA Batteries (4-pack),1,3.84,01/06/19 09:02,"27 Cherry St, Los Angeles, CA 90001" +145119,iPhone,1,700,01/14/19 11:55,"5 South St, Austin, TX 73301" +145120,Apple Airpods Headphones,1,150,01/07/19 11:53,"762 South St, San Francisco, CA 94016" +145120,20in Monitor,1,109.99,01/07/19 11:53,"762 South St, San Francisco, CA 94016" +145121,ThinkPad Laptop,1,999.99,01/26/19 19:16,"927 12th St, New York City, NY 10001" +145122,USB-C Charging Cable,2,11.95,01/12/19 09:48,"462 9th St, Atlanta, GA 30301" +145123,iPhone,1,700,01/12/19 10:55,"216 13th St, Seattle, WA 98101" +145123,Apple Airpods Headphones,1,150,01/12/19 10:55,"216 13th St, Seattle, WA 98101" +145124,Vareebadd Phone,1,400,01/04/19 14:32,"860 4th St, San Francisco, CA 94016" +145125,Bose SoundSport Headphones,1,99.99,01/10/19 12:39,"535 Spruce St, Portland, OR 97035" +145126,Lightning Charging Cable,2,14.95,01/06/19 14:15,"193 Chestnut St, New York City, NY 10001" +145127,27in FHD Monitor,1,149.99,01/26/19 15:23,"768 6th St, San Francisco, CA 94016" +145128,Wired Headphones,1,11.99,01/05/19 20:05,"824 10th St, San Francisco, CA 94016" +145129,AAA Batteries (4-pack),1,2.99,01/31/19 12:57,"79 Center St, New York City, NY 10001" +145130,Lightning Charging Cable,1,14.95,01/01/19 08:04,"362 Johnson St, Los Angeles, CA 90001" +145131,AA Batteries (4-pack),1,3.84,01/02/19 12:51,"298 Park St, Los Angeles, CA 90001" +145132,34in Ultrawide Monitor,1,379.99,01/31/19 16:05,"401 Hickory St, Seattle, WA 98101" +145133,20in Monitor,1,109.99,01/28/19 20:40,"756 5th St, Atlanta, GA 30301" +145134,Flatscreen TV,1,300,01/12/19 17:05,"406 2nd St, Dallas, TX 75001" +145135,Apple Airpods Headphones,1,150,01/26/19 22:33,"880 Maple St, Los Angeles, CA 90001" +145136,AA Batteries (4-pack),1,3.84,01/10/19 19:49,"589 Center St, Los Angeles, CA 90001" +145137,27in FHD Monitor,1,149.99,01/13/19 16:43,"158 9th St, Seattle, WA 98101" +145138,USB-C Charging Cable,1,11.95,01/18/19 21:56,"128 13th St, Los Angeles, CA 90001" +145139,AAA Batteries (4-pack),1,2.99,01/19/19 10:05,"594 Hill St, New York City, NY 10001" +145140,USB-C Charging Cable,1,11.95,01/30/19 11:34,"18 Jackson St, Dallas, TX 75001" +145141,27in FHD Monitor,1,149.99,01/23/19 11:58,"624 1st St, Portland, OR 97035" +145142,AA Batteries (4-pack),1,3.84,01/26/19 21:07,"155 West St, San Francisco, CA 94016" +145143,USB-C Charging Cable,1,11.95,01/01/19 14:10,"708 Cherry St, San Francisco, CA 94016" +145144,Apple Airpods Headphones,1,150,01/24/19 23:51,"266 13th St, Portland, OR 97035" +145145,Google Phone,1,600,01/31/19 08:32,"51 Meadow St, New York City, NY 10001" +145146,Wired Headphones,1,11.99,01/14/19 23:50,"827 Lakeview St, San Francisco, CA 94016" +145147,Apple Airpods Headphones,1,150,01/26/19 17:26,"998 Wilson St, Atlanta, GA 30301" +145148,USB-C Charging Cable,1,11.95,01/06/19 19:36,"550 Washington St, Boston, MA 02215" +145149,AA Batteries (4-pack),2,3.84,01/20/19 15:21,"967 8th St, Boston, MA 02215" +145150,34in Ultrawide Monitor,1,379.99,01/05/19 08:09,"183 Wilson St, Los Angeles, CA 90001" +145151,AAA Batteries (4-pack),1,2.99,01/21/19 08:37,"474 Lakeview St, Boston, MA 02215" +145152,Google Phone,1,600,01/17/19 10:45,"67 Jackson St, Los Angeles, CA 90001" +145152,USB-C Charging Cable,1,11.95,01/17/19 10:45,"67 Jackson St, Los Angeles, CA 90001" +145153,Apple Airpods Headphones,1,150,01/05/19 17:54,"844 4th St, Los Angeles, CA 90001" +145154,Google Phone,1,600,01/27/19 23:54,"311 Spruce St, Atlanta, GA 30301" +145155,20in Monitor,1,109.99,01/20/19 23:07,"174 11th St, San Francisco, CA 94016" +145156,iPhone,1,700,01/17/19 14:49,"771 13th St, Dallas, TX 75001" +145157,20in Monitor,1,109.99,01/27/19 19:20,"294 10th St, Atlanta, GA 30301" +145157,Bose SoundSport Headphones,1,99.99,01/27/19 19:20,"294 10th St, Atlanta, GA 30301" +145158,Apple Airpods Headphones,1,150,01/03/19 23:10,"864 Lake St, Los Angeles, CA 90001" +145159,ThinkPad Laptop,1,999.99,01/13/19 21:12,"726 Main St, Austin, TX 73301" +145160,ThinkPad Laptop,1,999.99,01/30/19 16:14,"171 Madison St, Los Angeles, CA 90001" +145161,USB-C Charging Cable,1,11.95,01/23/19 20:32,"834 Washington St, Boston, MA 02215" +145162,Lightning Charging Cable,1,14.95,01/11/19 11:35,"565 Jefferson St, Los Angeles, CA 90001" +145163,Lightning Charging Cable,1,14.95,01/05/19 11:32,"392 Maple St, Los Angeles, CA 90001" +145164,USB-C Charging Cable,1,11.95,01/19/19 18:17,"353 Jackson St, Los Angeles, CA 90001" +145165,27in 4K Gaming Monitor,1,389.99,01/29/19 16:28,"394 13th St, Los Angeles, CA 90001" +145166,USB-C Charging Cable,1,11.95,01/24/19 16:15,"670 River St, New York City, NY 10001" +145167,Macbook Pro Laptop,1,1700,01/09/19 07:55,"858 Lincoln St, San Francisco, CA 94016" +145168,AA Batteries (4-pack),1,3.84,01/14/19 19:42,"474 Lincoln St, Austin, TX 73301" +145169,Lightning Charging Cable,1,14.95,01/07/19 16:46,"181 River St, Dallas, TX 75001" +145170,Apple Airpods Headphones,1,150,01/21/19 11:47,"53 Church St, Seattle, WA 98101" +145171,20in Monitor,1,109.99,01/14/19 13:25,"466 Center St, San Francisco, CA 94016" +145172,Google Phone,1,600,01/22/19 15:27,"955 1st St, New York City, NY 10001" +145173,Wired Headphones,1,11.99,01/04/19 16:21,"964 Maple St, San Francisco, CA 94016" +145174,Google Phone,1,600,01/15/19 14:50,"622 10th St, San Francisco, CA 94016" +145174,Wired Headphones,2,11.99,01/15/19 14:50,"622 10th St, San Francisco, CA 94016" +145175,USB-C Charging Cable,1,11.95,01/12/19 10:56,"509 Lakeview St, Boston, MA 02215" +145176,iPhone,1,700,01/30/19 15:30,"926 Highland St, Seattle, WA 98101" +145177,AA Batteries (4-pack),1,3.84,01/25/19 20:15,"707 Maple St, San Francisco, CA 94016" +145178,Apple Airpods Headphones,1,150,01/19/19 22:51,"295 Meadow St, Austin, TX 73301" +145179,USB-C Charging Cable,1,11.95,01/13/19 16:00,"356 Lincoln St, San Francisco, CA 94016" +145180,Wired Headphones,1,11.99,01/23/19 14:28,"710 Park St, Portland, OR 97035" +145181,34in Ultrawide Monitor,1,379.99,01/09/19 14:41,"484 Walnut St, San Francisco, CA 94016" +145182,20in Monitor,1,109.99,01/03/19 01:08,"980 Center St, Dallas, TX 75001" +145183,34in Ultrawide Monitor,1,379.99,01/25/19 20:58,"422 4th St, Seattle, WA 98101" +145184,USB-C Charging Cable,1,11.95,01/23/19 22:14,"880 7th St, San Francisco, CA 94016" +145185,27in FHD Monitor,1,149.99,01/21/19 12:02,"94 2nd St, Austin, TX 73301" +145186,Lightning Charging Cable,1,14.95,01/22/19 16:08,"509 Park St, Seattle, WA 98101" +145187,AA Batteries (4-pack),1,3.84,01/26/19 10:53,"160 Willow St, Boston, MA 02215" +145188,iPhone,1,700,01/25/19 20:18,"50 11th St, Atlanta, GA 30301" +145189,Bose SoundSport Headphones,1,99.99,01/07/19 21:39,"470 Cedar St, Austin, TX 73301" +145190,AAA Batteries (4-pack),1,2.99,01/20/19 15:52,"357 Jackson St, San Francisco, CA 94016" +145191,Apple Airpods Headphones,1,150,01/27/19 11:06,"891 Walnut St, Atlanta, GA 30301" +145192,AA Batteries (4-pack),2,3.84,01/30/19 20:07,"175 Lakeview St, Dallas, TX 75001" +145193,USB-C Charging Cable,1,11.95,01/21/19 07:29,"782 1st St, Atlanta, GA 30301" +145194,Flatscreen TV,1,300,01/12/19 14:16,"761 10th St, Portland, OR 97035" +145195,Wired Headphones,1,11.99,01/28/19 11:15,"174 West St, Dallas, TX 75001" +145196,Wired Headphones,1,11.99,01/18/19 21:39,"110 Meadow St, San Francisco, CA 94016" +145197,AAA Batteries (4-pack),1,2.99,01/09/19 11:55,"230 Hill St, Boston, MA 02215" +145198,27in 4K Gaming Monitor,1,389.99,01/16/19 08:26,"779 Lakeview St, New York City, NY 10001" +145199,Apple Airpods Headphones,1,150,01/04/19 22:18,"42 Main St, San Francisco, CA 94016" +145200,USB-C Charging Cable,1,11.95,01/27/19 01:09,"555 Main St, New York City, NY 10001" +145201,Apple Airpods Headphones,1,150,01/26/19 21:15,"516 Sunset St, Boston, MA 02215" +145202,ThinkPad Laptop,1,999.99,01/16/19 14:35,"232 Lincoln St, Dallas, TX 75001" +145203,Apple Airpods Headphones,1,150,01/21/19 17:23,"448 Jefferson St, San Francisco, CA 94016" +145204,Vareebadd Phone,1,400,01/21/19 02:34,"266 2nd St, San Francisco, CA 94016" +145205,AAA Batteries (4-pack),2,2.99,01/11/19 23:49,"839 Spruce St, Seattle, WA 98101" +145206,Bose SoundSport Headphones,1,99.99,01/13/19 12:25,"345 Jackson St, Dallas, TX 75001" +145207,Wired Headphones,1,11.99,01/27/19 17:43,"930 Main St, San Francisco, CA 94016" +145208,Apple Airpods Headphones,1,150,01/12/19 15:28,"247 Johnson St, Austin, TX 73301" +145209,ThinkPad Laptop,1,999.99,01/26/19 13:39,"889 Hill St, Atlanta, GA 30301" +145210,AA Batteries (4-pack),1,3.84,01/10/19 14:10,"536 12th St, San Francisco, CA 94016" +145211,Apple Airpods Headphones,1,150,01/26/19 13:00,"695 Maple St, Atlanta, GA 30301" +145212,Bose SoundSport Headphones,1,99.99,01/30/19 17:23,"647 4th St, Dallas, TX 75001" +145213,Macbook Pro Laptop,1,1700,01/06/19 13:59,"667 Lincoln St, Portland, OR 97035" +145214,Lightning Charging Cable,1,14.95,01/21/19 17:02,"144 13th St, New York City, NY 10001" +145215,AAA Batteries (4-pack),1,2.99,01/15/19 19:15,"50 Hill St, San Francisco, CA 94016" +145216,34in Ultrawide Monitor,1,379.99,01/27/19 09:22,"871 Madison St, New York City, NY 10001" +145217,USB-C Charging Cable,1,11.95,01/09/19 21:12,"935 6th St, San Francisco, CA 94016" +145218,USB-C Charging Cable,1,11.95,01/24/19 10:01,"70 Adams St, Los Angeles, CA 90001" +145219,Google Phone,1,600,01/09/19 21:41,"387 Jackson St, New York City, NY 10001" +145220,Google Phone,1,600,01/24/19 07:03,"177 9th St, Atlanta, GA 30301" +145220,USB-C Charging Cable,1,11.95,01/24/19 07:03,"177 9th St, Atlanta, GA 30301" +145220,Wired Headphones,1,11.99,01/24/19 07:03,"177 9th St, Atlanta, GA 30301" +145221,27in FHD Monitor,1,149.99,01/08/19 09:39,"313 6th St, San Francisco, CA 94016" +145222,ThinkPad Laptop,1,999.99,01/27/19 22:26,"497 West St, Portland, OR 97035" +145223,Wired Headphones,1,11.99,01/23/19 06:07,"201 Pine St, Seattle, WA 98101" +145224,Lightning Charging Cable,1,14.95,01/30/19 22:45,"407 Meadow St, Portland, OR 97035" +145225,Vareebadd Phone,1,400,01/19/19 12:28,"247 Maple St, Los Angeles, CA 90001" +145226,AAA Batteries (4-pack),1,2.99,01/22/19 18:03,"806 North St, Portland, OR 97035" +145227,27in 4K Gaming Monitor,1,389.99,01/19/19 21:06,"245 Meadow St, San Francisco, CA 94016" +145228,ThinkPad Laptop,1,999.99,01/22/19 19:52,"13 14th St, Boston, MA 02215" +145229,34in Ultrawide Monitor,1,379.99,01/16/19 16:06,"486 Cherry St, Boston, MA 02215" +145230,27in 4K Gaming Monitor,1,389.99,01/17/19 15:24,"984 Ridge St, San Francisco, CA 94016" +145231,27in 4K Gaming Monitor,1,389.99,01/14/19 10:24,"853 Jackson St, Seattle, WA 98101" +145232,Wired Headphones,1,11.99,01/23/19 18:33,"127 Ridge St, Los Angeles, CA 90001" +145233,Wired Headphones,2,11.99,01/23/19 21:05,"592 North St, San Francisco, CA 94016" +145234,Wired Headphones,1,11.99,01/30/19 16:14,"414 Sunset St, Boston, MA 02215" +145235,AA Batteries (4-pack),2,3.84,01/17/19 16:53,"332 14th St, Los Angeles, CA 90001" +145236,Wired Headphones,1,11.99,01/03/19 08:20,"647 11th St, Boston, MA 02215" +145237,USB-C Charging Cable,1,11.95,01/02/19 16:58,"839 Chestnut St, Los Angeles, CA 90001" +145238,Apple Airpods Headphones,1,150,01/24/19 15:57,"74 Spruce St, San Francisco, CA 94016" +145239,AAA Batteries (4-pack),2,2.99,01/09/19 15:57,"298 Cherry St, Dallas, TX 75001" +145240,AA Batteries (4-pack),1,3.84,01/06/19 11:08,"14 11th St, Atlanta, GA 30301" +145241,34in Ultrawide Monitor,1,379.99,01/30/19 22:31,"638 Adams St, Seattle, WA 98101" +145241,iPhone,1,700,01/30/19 22:31,"638 Adams St, Seattle, WA 98101" +145242,Apple Airpods Headphones,1,150,01/14/19 14:51,"63 Elm St, Los Angeles, CA 90001" +,,,,, +145243,34in Ultrawide Monitor,1,379.99,01/15/19 15:51,"885 5th St, Dallas, TX 75001" +145244,Lightning Charging Cable,1,14.95,01/09/19 11:05,"648 Church St, San Francisco, CA 94016" +145245,AAA Batteries (4-pack),1,2.99,01/12/19 22:23,"867 2nd St, New York City, NY 10001" +145246,Lightning Charging Cable,1,14.95,01/16/19 22:00,"284 Elm St, Los Angeles, CA 90001" +145247,Apple Airpods Headphones,1,150,01/02/19 07:40,"602 8th St, New York City, NY 10001" +145248,USB-C Charging Cable,1,11.95,01/02/19 08:55,"169 12th St, Los Angeles, CA 90001" +145249,Flatscreen TV,1,300,01/18/19 19:49,"795 Park St, Dallas, TX 75001" +145250,USB-C Charging Cable,1,11.95,01/18/19 13:05,"729 12th St, Boston, MA 02215" +145251,Wired Headphones,3,11.99,01/26/19 10:26,"386 12th St, Los Angeles, CA 90001" +145252,AA Batteries (4-pack),1,3.84,01/23/19 12:16,"707 Johnson St, Seattle, WA 98101" +145253,Apple Airpods Headphones,1,150,01/09/19 06:59,"339 Madison St, Atlanta, GA 30301" +145254,Wired Headphones,1,11.99,01/28/19 18:22,"788 1st St, New York City, NY 10001" +145255,Lightning Charging Cable,1,14.95,01/26/19 09:09,"194 5th St, San Francisco, CA 94016" +145256,34in Ultrawide Monitor,1,379.99,01/20/19 20:55,"204 Adams St, Dallas, TX 75001" +145257,AAA Batteries (4-pack),1,2.99,01/02/19 23:35,"66 Maple St, Atlanta, GA 30301" +145258,AAA Batteries (4-pack),1,2.99,01/31/19 06:35,"577 10th St, San Francisco, CA 94016" +145259,Lightning Charging Cable,1,14.95,01/11/19 18:26,"714 Lakeview St, Seattle, WA 98101" +145260,Flatscreen TV,1,300,01/17/19 12:53,"760 1st St, Los Angeles, CA 90001" +145261,20in Monitor,1,109.99,01/26/19 00:38,"941 Maple St, San Francisco, CA 94016" +145262,AAA Batteries (4-pack),1,2.99,01/09/19 08:41,"556 Pine St, Los Angeles, CA 90001" +145263,20in Monitor,1,109.99,01/29/19 16:14,"657 West St, San Francisco, CA 94016" +145264,USB-C Charging Cable,2,11.95,01/29/19 18:17,"593 River St, Dallas, TX 75001" +145265,34in Ultrawide Monitor,1,379.99,01/26/19 20:05,"578 River St, New York City, NY 10001" +145266,Lightning Charging Cable,1,14.95,01/10/19 17:27,"12 14th St, Seattle, WA 98101" +145267,Google Phone,1,600,01/09/19 10:55,"938 South St, Seattle, WA 98101" +145268,34in Ultrawide Monitor,1,379.99,01/28/19 20:13,"362 Meadow St, Boston, MA 02215" +145269,Wired Headphones,1,11.99,01/08/19 19:30,"241 Park St, New York City, NY 10001" +145270,USB-C Charging Cable,1,11.95,01/23/19 18:40,"624 Maple St, San Francisco, CA 94016" +145271,Flatscreen TV,1,300,01/16/19 20:59,"394 Chestnut St, Los Angeles, CA 90001" +145272,Wired Headphones,1,11.99,01/11/19 13:32,"79 2nd St, San Francisco, CA 94016" +145273,AA Batteries (4-pack),1,3.84,01/23/19 12:21,"425 7th St, Portland, OR 97035" +145274,Apple Airpods Headphones,1,150,01/29/19 14:14,"929 Ridge St, Seattle, WA 98101" +145275,AA Batteries (4-pack),1,3.84,01/09/19 02:33,"3 9th St, Seattle, WA 98101" +145276,Apple Airpods Headphones,1,150,01/03/19 18:21,"111 11th St, San Francisco, CA 94016" +145277,Macbook Pro Laptop,1,1700,01/11/19 17:50,"43 Highland St, Los Angeles, CA 90001" +145278,Apple Airpods Headphones,1,150,01/21/19 20:48,"921 Madison St, Los Angeles, CA 90001" +145279,Wired Headphones,1,11.99,01/26/19 14:11,"406 Maple St, Atlanta, GA 30301" +145280,AAA Batteries (4-pack),1,2.99,01/28/19 12:34,"218 Adams St, Los Angeles, CA 90001" +145281,Macbook Pro Laptop,1,1700,01/14/19 12:17,"536 Lincoln St, San Francisco, CA 94016" +145282,USB-C Charging Cable,1,11.95,01/06/19 00:19,"260 Cherry St, San Francisco, CA 94016" +145283,AA Batteries (4-pack),1,3.84,01/09/19 15:41,"794 Lake St, Seattle, WA 98101" +145284,USB-C Charging Cable,1,11.95,01/16/19 20:25,"298 South St, Austin, TX 73301" +145285,USB-C Charging Cable,1,11.95,01/30/19 16:07,"952 10th St, San Francisco, CA 94016" +145286,Macbook Pro Laptop,1,1700,01/13/19 05:58,"206 Cherry St, Boston, MA 02215" +145287,Bose SoundSport Headphones,1,99.99,01/20/19 10:07,"776 Adams St, Boston, MA 02215" +,,,,, +145288,Bose SoundSport Headphones,1,99.99,01/18/19 19:48,"501 Dogwood St, Dallas, TX 75001" +145289,Lightning Charging Cable,1,14.95,01/05/19 18:05,"19 7th St, San Francisco, CA 94016" +145290,AA Batteries (4-pack),1,3.84,01/26/19 17:10,"3 Lake St, San Francisco, CA 94016" +145291,AAA Batteries (4-pack),1,2.99,01/05/19 20:51,"38 South St, Los Angeles, CA 90001" +145292,27in FHD Monitor,1,149.99,01/06/19 10:19,"687 Jefferson St, Atlanta, GA 30301" +145293,Wired Headphones,1,11.99,01/18/19 22:03,"6 Center St, Seattle, WA 98101" +145294,27in FHD Monitor,1,149.99,01/23/19 20:43,"861 5th St, Atlanta, GA 30301" +145295,20in Monitor,1,109.99,01/14/19 18:37,"224 Willow St, Los Angeles, CA 90001" +145296,AA Batteries (4-pack),1,3.84,01/17/19 21:19,"909 Chestnut St, Atlanta, GA 30301" +145297,Bose SoundSport Headphones,1,99.99,01/17/19 06:50,"175 Church St, Dallas, TX 75001" +145298,AA Batteries (4-pack),2,3.84,01/03/19 20:22,"609 Lakeview St, Los Angeles, CA 90001" +145299,Apple Airpods Headphones,1,150,01/18/19 18:42,"528 Hickory St, San Francisco, CA 94016" +145300,AAA Batteries (4-pack),1,2.99,01/23/19 18:58,"449 Forest St, Los Angeles, CA 90001" +145301,34in Ultrawide Monitor,1,379.99,01/30/19 15:02,"500 Wilson St, San Francisco, CA 94016" +145302,Apple Airpods Headphones,1,150,01/08/19 21:29,"886 Elm St, New York City, NY 10001" +145303,USB-C Charging Cable,1,11.95,01/04/19 00:19,"889 14th St, Austin, TX 73301" +145304,AAA Batteries (4-pack),1,2.99,01/11/19 12:43,"275 South St, Boston, MA 02215" +145305,Wired Headphones,1,11.99,01/21/19 12:02,"44 Ridge St, Atlanta, GA 30301" +145306,Apple Airpods Headphones,1,150,01/19/19 19:09,"745 Walnut St, San Francisco, CA 94016" +145307,AA Batteries (4-pack),2,3.84,01/01/19 19:21,"938 Park St, San Francisco, CA 94016" +145308,ThinkPad Laptop,1,999.99,01/15/19 21:53,"654 9th St, San Francisco, CA 94016" +145309,Bose SoundSport Headphones,1,99.99,01/27/19 08:47,"291 10th St, Dallas, TX 75001" +145310,AA Batteries (4-pack),1,3.84,01/02/19 21:54,"528 11th St, San Francisco, CA 94016" +145311,Apple Airpods Headphones,1,150,01/23/19 20:32,"202 Cedar St, New York City, NY 10001" +145312,Lightning Charging Cable,1,14.95,01/03/19 16:01,"283 South St, Austin, TX 73301" +145313,USB-C Charging Cable,1,11.95,01/01/19 14:07,"690 Wilson St, San Francisco, CA 94016" +145314,Lightning Charging Cable,1,14.95,01/04/19 13:25,"437 North St, San Francisco, CA 94016" +145315,AAA Batteries (4-pack),1,2.99,01/26/19 20:16,"117 Dogwood St, Seattle, WA 98101" +145316,Lightning Charging Cable,1,14.95,01/21/19 23:44,"928 Pine St, Boston, MA 02215" +145317,Wired Headphones,1,11.99,01/03/19 14:38,"377 Cherry St, Atlanta, GA 30301" +145318,Lightning Charging Cable,1,14.95,01/26/19 12:21,"373 Sunset St, San Francisco, CA 94016" +145319,Macbook Pro Laptop,1,1700,01/26/19 00:05,"521 10th St, San Francisco, CA 94016" +145320,AA Batteries (4-pack),1,3.84,01/27/19 23:46,"497 Walnut St, Los Angeles, CA 90001" +145321,AA Batteries (4-pack),5,3.84,01/03/19 21:09,"22 14th St, San Francisco, CA 94016" +145322,Lightning Charging Cable,1,14.95,01/14/19 09:47,"906 12th St, Los Angeles, CA 90001" +145323,Flatscreen TV,1,300,01/20/19 09:46,"52 Cherry St, New York City, NY 10001" +145324,20in Monitor,1,109.99,01/17/19 14:11,"452 Lake St, Los Angeles, CA 90001" +145325,AA Batteries (4-pack),1,3.84,01/11/19 12:11,"868 Elm St, Los Angeles, CA 90001" +145326,LG Dryer,1,600.0,01/12/19 23:45,"227 12th St, San Francisco, CA 94016" +145327,ThinkPad Laptop,1,999.99,01/02/19 12:18,"17 Church St, New York City, NY 10001" +145328,Vareebadd Phone,1,400,01/15/19 08:36,"730 Maple St, Austin, TX 73301" +145329,Lightning Charging Cable,1,14.95,01/25/19 20:25,"647 Cherry St, New York City, NY 10001" +145330,Lightning Charging Cable,1,14.95,01/08/19 18:51,"105 11th St, Boston, MA 02215" +145331,USB-C Charging Cable,1,11.95,01/31/19 23:33,"747 8th St, San Francisco, CA 94016" +145332,AAA Batteries (4-pack),1,2.99,01/27/19 16:57,"665 Dogwood St, San Francisco, CA 94016" +145333,USB-C Charging Cable,1,11.95,01/04/19 23:58,"271 Chestnut St, Seattle, WA 98101" +145334,34in Ultrawide Monitor,1,379.99,01/02/19 19:00,"245 Jefferson St, Austin, TX 73301" +145335,34in Ultrawide Monitor,1,379.99,01/13/19 14:54,"838 Walnut St, Austin, TX 73301" +145336,Lightning Charging Cable,1,14.95,01/29/19 11:28,"290 Lake St, New York City, NY 10001" +145337,USB-C Charging Cable,1,11.95,01/01/19 20:28,"442 Lakeview St, Austin, TX 73301" +145338,iPhone,1,700,01/09/19 16:14,"314 South St, Los Angeles, CA 90001" +145338,Lightning Charging Cable,1,14.95,01/09/19 16:14,"314 South St, Los Angeles, CA 90001" +145339,USB-C Charging Cable,1,11.95,01/31/19 11:53,"653 9th St, Los Angeles, CA 90001" +145340,Lightning Charging Cable,1,14.95,01/18/19 15:37,"463 Sunset St, Dallas, TX 75001" +145341,AA Batteries (4-pack),2,3.84,01/15/19 07:49,"205 Church St, Boston, MA 02215" +145342,Flatscreen TV,1,300,01/14/19 08:45,"105 10th St, Boston, MA 02215" +145343,Wired Headphones,1,11.99,01/22/19 22:41,"909 West St, San Francisco, CA 94016" +145343,Macbook Pro Laptop,1,1700,01/22/19 22:41,"909 West St, San Francisco, CA 94016" +145344,Bose SoundSport Headphones,1,99.99,01/07/19 16:40,"944 River St, Seattle, WA 98101" +145345,Apple Airpods Headphones,1,150,01/29/19 10:16,"425 Cedar St, Boston, MA 02215" +145346,27in FHD Monitor,1,149.99,01/01/19 12:40,"168 7th St, San Francisco, CA 94016" +145347,Lightning Charging Cable,1,14.95,01/07/19 20:20,"181 Jefferson St, Los Angeles, CA 90001" +145348,Bose SoundSport Headphones,1,99.99,01/11/19 14:51,"908 Lake St, Los Angeles, CA 90001" +145349,AA Batteries (4-pack),1,3.84,01/19/19 20:44,"91 Wilson St, San Francisco, CA 94016" +145350,27in 4K Gaming Monitor,1,389.99,01/18/19 09:45,"427 14th St, Los Angeles, CA 90001" +145351,27in FHD Monitor,1,149.99,01/31/19 23:33,"860 West St, Portland, OR 97035" +145352,Vareebadd Phone,1,400,01/11/19 08:01,"232 13th St, Boston, MA 02215" +145352,Wired Headphones,1,11.99,01/11/19 08:01,"232 13th St, Boston, MA 02215" +145352,27in 4K Gaming Monitor,1,389.99,01/11/19 08:01,"232 13th St, Boston, MA 02215" +145353,AA Batteries (4-pack),1,3.84,01/22/19 18:07,"945 Meadow St, Los Angeles, CA 90001" +145354,Apple Airpods Headphones,1,150,01/28/19 14:32,"641 Washington St, Portland, OR 97035" +145355,ThinkPad Laptop,1,999.99,01/27/19 23:18,"763 Main St, Boston, MA 02215" +145356,34in Ultrawide Monitor,1,379.99,01/20/19 14:29,"542 Lakeview St, Atlanta, GA 30301" +145357,34in Ultrawide Monitor,1,379.99,01/10/19 01:19,"660 11th St, Boston, MA 02215" +145358,27in FHD Monitor,1,149.99,01/13/19 19:32,"378 Ridge St, Boston, MA 02215" +145359,Bose SoundSport Headphones,1,99.99,01/25/19 16:28,"747 7th St, Los Angeles, CA 90001" +145359,Apple Airpods Headphones,1,150,01/25/19 16:28,"747 7th St, Los Angeles, CA 90001" +145360,USB-C Charging Cable,2,11.95,01/31/19 01:12,"794 Lake St, New York City, NY 10001" +145361,ThinkPad Laptop,1,999.99,01/31/19 18:37,"412 Lake St, Dallas, TX 75001" +145362,AA Batteries (4-pack),1,3.84,01/16/19 14:43,"331 Walnut St, San Francisco, CA 94016" +145363,20in Monitor,1,109.99,01/21/19 22:36,"430 Jefferson St, New York City, NY 10001" +145364,USB-C Charging Cable,1,11.95,01/25/19 22:10,"563 11th St, San Francisco, CA 94016" +145365,AAA Batteries (4-pack),1,2.99,01/28/19 22:31,"25 Hill St, Boston, MA 02215" +145366,Apple Airpods Headphones,1,150,01/12/19 14:53,"100 Madison St, San Francisco, CA 94016" +145367,Bose SoundSport Headphones,1,99.99,01/18/19 12:00,"296 7th St, San Francisco, CA 94016" +145368,USB-C Charging Cable,1,11.95,01/31/19 21:52,"708 5th St, Los Angeles, CA 90001" +145369,Google Phone,1,600,01/21/19 22:03,"133 Lake St, San Francisco, CA 94016" +145370,Wired Headphones,1,11.99,01/19/19 19:18,"470 Hill St, Austin, TX 73301" +145371,USB-C Charging Cable,1,11.95,01/24/19 17:32,"618 North St, Boston, MA 02215" +145372,AA Batteries (4-pack),1,3.84,01/20/19 15:48,"233 Highland St, New York City, NY 10001" +145373,27in FHD Monitor,1,149.99,01/02/19 23:37,"348 Park St, New York City, NY 10001" +145374,USB-C Charging Cable,1,11.95,01/07/19 12:00,"492 Hickory St, San Francisco, CA 94016" +145375,34in Ultrawide Monitor,1,379.99,01/18/19 19:35,"716 14th St, Portland, OR 97035" +145376,AA Batteries (4-pack),3,3.84,01/27/19 04:44,"272 Cherry St, San Francisco, CA 94016" +145377,Lightning Charging Cable,1,14.95,01/19/19 22:01,"435 Walnut St, Boston, MA 02215" +145378,AA Batteries (4-pack),2,3.84,01/06/19 00:38,"968 13th St, Los Angeles, CA 90001" +145379,AAA Batteries (4-pack),1,2.99,01/22/19 13:04,"842 Spruce St, Austin, TX 73301" +145380,AA Batteries (4-pack),1,3.84,01/26/19 00:11,"4 Washington St, Seattle, WA 98101" +145381,Lightning Charging Cable,1,14.95,01/09/19 12:25,"798 Hickory St, New York City, NY 10001" +145382,ThinkPad Laptop,1,999.99,01/15/19 11:21,"802 4th St, San Francisco, CA 94016" +145383,Apple Airpods Headphones,1,150,01/07/19 11:58,"366 Cherry St, Los Angeles, CA 90001" +145384,Lightning Charging Cable,1,14.95,01/28/19 11:26,"143 Cedar St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +145385,Lightning Charging Cable,1,14.95,01/15/19 10:58,"519 Jackson St, Los Angeles, CA 90001" +145386,AA Batteries (4-pack),1,3.84,01/26/19 19:27,"481 Lakeview St, Austin, TX 73301" +145387,Wired Headphones,1,11.99,01/12/19 08:47,"585 Pine St, Boston, MA 02215" +145388,AAA Batteries (4-pack),1,2.99,01/31/19 15:26,"285 Sunset St, San Francisco, CA 94016" +145389,USB-C Charging Cable,1,11.95,01/30/19 18:17,"117 14th St, Austin, TX 73301" +145390,Wired Headphones,1,11.99,01/10/19 14:30,"703 5th St, Austin, TX 73301" +145391,27in 4K Gaming Monitor,1,389.99,01/29/19 18:44,"61 7th St, Austin, TX 73301" +145392,USB-C Charging Cable,1,11.95,01/28/19 15:18,"219 11th St, San Francisco, CA 94016" +145393,27in FHD Monitor,2,149.99,01/14/19 23:16,"65 Ridge St, New York City, NY 10001" +145394,AA Batteries (4-pack),1,3.84,01/22/19 14:26,"141 River St, Portland, OR 97035" +145395,Wired Headphones,1,11.99,01/04/19 15:43,"430 Chestnut St, San Francisco, CA 94016" +145396,Wired Headphones,1,11.99,01/15/19 13:16,"364 Washington St, San Francisco, CA 94016" +145397,Apple Airpods Headphones,1,150,01/06/19 20:26,"709 11th St, Austin, TX 73301" +145398,27in 4K Gaming Monitor,1,389.99,01/30/19 19:36,"847 Wilson St, New York City, NY 10001" +145399,iPhone,1,700,01/14/19 19:23,"959 6th St, Portland, OR 97035" +145399,Lightning Charging Cable,1,14.95,01/14/19 19:23,"959 6th St, Portland, OR 97035" +145400,USB-C Charging Cable,1,11.95,01/08/19 16:26,"511 7th St, Los Angeles, CA 90001" +145401,27in FHD Monitor,1,149.99,01/14/19 15:11,"623 6th St, Dallas, TX 75001" +145402,Lightning Charging Cable,1,14.95,01/14/19 08:41,"335 Chestnut St, Atlanta, GA 30301" +145403,27in FHD Monitor,1,149.99,01/01/19 20:41,"610 Jackson St, New York City, NY 10001" +145404,Wired Headphones,1,11.99,01/02/19 17:27,"505 9th St, San Francisco, CA 94016" +145405,Wired Headphones,1,11.99,01/15/19 07:12,"450 Forest St, Los Angeles, CA 90001" +145406,AAA Batteries (4-pack),1,2.99,01/25/19 23:23,"17 Jefferson St, San Francisco, CA 94016" +145407,Google Phone,1,600,01/28/19 14:33,"98 14th St, New York City, NY 10001" +145408,Wired Headphones,1,11.99,01/20/19 22:28,"672 Adams St, Los Angeles, CA 90001" +145409,USB-C Charging Cable,1,11.95,01/31/19 06:39,"994 Elm St, Boston, MA 02215" +145410,AAA Batteries (4-pack),1,2.99,01/30/19 15:39,"503 2nd St, Boston, MA 02215" +145411,AAA Batteries (4-pack),3,2.99,01/14/19 13:03,"589 1st St, Portland, ME 04101" +145412,Google Phone,1,600,01/02/19 14:28,"282 Johnson St, Los Angeles, CA 90001" +145413,27in FHD Monitor,1,149.99,01/24/19 11:09,"671 Walnut St, Los Angeles, CA 90001" +145414,iPhone,1,700,01/19/19 10:23,"218 5th St, Boston, MA 02215" +145415,USB-C Charging Cable,1,11.95,01/12/19 13:42,"848 13th St, Portland, OR 97035" +145416,Bose SoundSport Headphones,1,99.99,01/15/19 11:39,"348 Walnut St, San Francisco, CA 94016" +145417,Wired Headphones,1,11.99,01/22/19 18:30,"956 Washington St, Dallas, TX 75001" +145418,USB-C Charging Cable,1,11.95,01/21/19 21:11,"560 Spruce St, San Francisco, CA 94016" +145419,34in Ultrawide Monitor,1,379.99,01/07/19 20:22,"154 13th St, Boston, MA 02215" +145420,AAA Batteries (4-pack),3,2.99,01/29/19 18:51,"829 Chestnut St, San Francisco, CA 94016" +145421,AA Batteries (4-pack),1,3.84,01/07/19 19:55,"65 Highland St, Portland, OR 97035" +145422,AA Batteries (4-pack),1,3.84,01/21/19 21:59,"703 Ridge St, Seattle, WA 98101" +145423,27in 4K Gaming Monitor,1,389.99,01/08/19 10:50,"449 Main St, Atlanta, GA 30301" +145424,Wired Headphones,1,11.99,01/25/19 11:17,"677 Ridge St, San Francisco, CA 94016" +145425,USB-C Charging Cable,2,11.95,01/20/19 11:13,"985 1st St, Los Angeles, CA 90001" +145426,AA Batteries (4-pack),1,3.84,01/24/19 16:55,"749 4th St, Dallas, TX 75001" +145427,AA Batteries (4-pack),2,3.84,01/27/19 15:19,"148 South St, San Francisco, CA 94016" +145427,20in Monitor,1,109.99,01/27/19 15:19,"148 South St, San Francisco, CA 94016" +145428,USB-C Charging Cable,1,11.95,01/08/19 17:21,"411 10th St, Portland, OR 97035" +145429,Bose SoundSport Headphones,1,99.99,01/20/19 22:33,"21 10th St, Boston, MA 02215" +145430,34in Ultrawide Monitor,1,379.99,01/03/19 21:14,"247 Sunset St, Atlanta, GA 30301" +145431,Apple Airpods Headphones,1,150,01/01/19 10:56,"668 Forest St, Los Angeles, CA 90001" +145432,AAA Batteries (4-pack),1,2.99,01/08/19 20:23,"632 Hill St, Los Angeles, CA 90001" +145433,ThinkPad Laptop,1,999.99,01/21/19 09:00,"560 1st St, Los Angeles, CA 90001" +145434,Wired Headphones,1,11.99,01/15/19 21:08,"265 Johnson St, San Francisco, CA 94016" +145435,iPhone,1,700,01/08/19 22:00,"400 Highland St, New York City, NY 10001" +145435,Lightning Charging Cable,1,14.95,01/08/19 22:00,"400 Highland St, New York City, NY 10001" +145436,Flatscreen TV,1,300,01/11/19 09:25,"929 Lincoln St, New York City, NY 10001" +145437,Vareebadd Phone,1,400,01/30/19 12:40,"589 Chestnut St, New York City, NY 10001" +145438,Lightning Charging Cable,1,14.95,01/01/19 14:56,"75 4th St, Boston, MA 02215" +145439,34in Ultrawide Monitor,1,379.99,01/03/19 12:06,"857 10th St, Atlanta, GA 30301" +145440,Apple Airpods Headphones,1,150,01/29/19 19:01,"570 Pine St, Los Angeles, CA 90001" +145441,Bose SoundSport Headphones,1,99.99,01/14/19 08:46,"146 6th St, Boston, MA 02215" +145442,AA Batteries (4-pack),1,3.84,01/19/19 15:46,"128 West St, San Francisco, CA 94016" +145443,AA Batteries (4-pack),1,3.84,01/05/19 20:01,"455 South St, New York City, NY 10001" +145444,Lightning Charging Cable,1,14.95,01/01/19 07:59,"175 13th St, San Francisco, CA 94016" +145445,AAA Batteries (4-pack),1,2.99,01/21/19 08:34,"53 Jackson St, San Francisco, CA 94016" +145446,Lightning Charging Cable,1,14.95,01/06/19 16:53,"355 4th St, Dallas, TX 75001" +145447,Lightning Charging Cable,1,14.95,01/03/19 11:28,"294 2nd St, San Francisco, CA 94016" +145448,AAA Batteries (4-pack),5,2.99,01/22/19 20:01,"73 13th St, San Francisco, CA 94016" +145449,AAA Batteries (4-pack),1,2.99,01/05/19 20:42,"466 1st St, Los Angeles, CA 90001" +145450,27in FHD Monitor,1,149.99,01/05/19 21:17,"142 Highland St, Austin, TX 73301" +145451,AAA Batteries (4-pack),1,2.99,01/03/19 21:39,"97 Church St, San Francisco, CA 94016" +,,,,, +145452,AAA Batteries (4-pack),1,2.99,01/19/19 09:27,"83 Forest St, Atlanta, GA 30301" +145453,AA Batteries (4-pack),1,3.84,01/12/19 17:38,"101 1st St, San Francisco, CA 94016" +145454,Wired Headphones,1,11.99,01/20/19 07:13,"499 Washington St, San Francisco, CA 94016" +145455,AAA Batteries (4-pack),2,2.99,01/25/19 15:47,"788 Hill St, Dallas, TX 75001" +145456,AA Batteries (4-pack),1,3.84,01/25/19 10:15,"709 12th St, Dallas, TX 75001" +145457,Wired Headphones,1,11.99,01/23/19 23:20,"469 Hickory St, Atlanta, GA 30301" +145458,USB-C Charging Cable,1,11.95,01/21/19 19:55,"730 Adams St, Dallas, TX 75001" +145459,Lightning Charging Cable,1,14.95,01/18/19 11:49,"912 Spruce St, Los Angeles, CA 90001" +145460,AAA Batteries (4-pack),2,2.99,01/26/19 11:50,"836 South St, Los Angeles, CA 90001" +145461,USB-C Charging Cable,1,11.95,01/08/19 22:23,"754 Willow St, Los Angeles, CA 90001" +145462,Wired Headphones,1,11.99,01/16/19 23:11,"116 North St, New York City, NY 10001" +145463,AA Batteries (4-pack),1,3.84,01/30/19 08:53,"476 Sunset St, San Francisco, CA 94016" +145464,Apple Airpods Headphones,1,150,01/08/19 00:17,"62 Wilson St, San Francisco, CA 94016" +145465,AA Batteries (4-pack),1,3.84,01/02/19 19:31,"173 Lincoln St, New York City, NY 10001" +145466,Apple Airpods Headphones,1,150,01/22/19 13:35,"233 Park St, New York City, NY 10001" +145467,USB-C Charging Cable,1,11.95,01/22/19 23:53,"166 Hickory St, Boston, MA 02215" +145468,27in FHD Monitor,1,149.99,01/11/19 17:24,"910 Ridge St, San Francisco, CA 94016" +145469,Lightning Charging Cable,1,14.95,01/28/19 18:01,"727 Walnut St, Los Angeles, CA 90001" +145470,Google Phone,1,600,01/02/19 19:25,"135 South St, Portland, OR 97035" +145470,USB-C Charging Cable,1,11.95,01/02/19 19:25,"135 South St, Portland, OR 97035" +145471,AA Batteries (4-pack),1,3.84,01/21/19 20:49,"22 Dogwood St, San Francisco, CA 94016" +145472,27in FHD Monitor,1,149.99,01/31/19 10:47,"963 1st St, Boston, MA 02215" +145473,Wired Headphones,1,11.99,01/19/19 23:30,"438 Cedar St, Los Angeles, CA 90001" +145474,27in FHD Monitor,1,149.99,01/05/19 10:18,"492 Church St, San Francisco, CA 94016" +145475,Apple Airpods Headphones,1,150,01/31/19 00:02,"897 1st St, Boston, MA 02215" +145476,USB-C Charging Cable,1,11.95,01/31/19 18:16,"299 Willow St, San Francisco, CA 94016" +145477,34in Ultrawide Monitor,1,379.99,01/31/19 20:23,"475 Walnut St, Dallas, TX 75001" +145478,Apple Airpods Headphones,1,150,01/16/19 20:39,"538 Center St, San Francisco, CA 94016" +145479,Lightning Charging Cable,1,14.95,01/06/19 16:00,"15 Ridge St, Austin, TX 73301" +145480,Lightning Charging Cable,1,14.95,01/14/19 21:08,"194 Hill St, Boston, MA 02215" +145481,AAA Batteries (4-pack),2,2.99,01/31/19 12:03,"430 8th St, Boston, MA 02215" +145482,Flatscreen TV,1,300,01/03/19 15:57,"157 Wilson St, Los Angeles, CA 90001" +145483,Vareebadd Phone,1,400,01/21/19 22:22,"848 Spruce St, Seattle, WA 98101" +145483,USB-C Charging Cable,1,11.95,01/21/19 22:22,"848 Spruce St, Seattle, WA 98101" +145484,iPhone,1,700,01/17/19 10:17,"879 Park St, Boston, MA 02215" +145484,Lightning Charging Cable,1,14.95,01/17/19 10:17,"879 Park St, Boston, MA 02215" +145485,20in Monitor,1,109.99,01/19/19 23:11,"268 Jackson St, Los Angeles, CA 90001" +145486,AA Batteries (4-pack),2,3.84,01/20/19 07:16,"45 Highland St, San Francisco, CA 94016" +145487,Wired Headphones,1,11.99,01/30/19 12:18,"649 Lakeview St, San Francisco, CA 94016" +145488,USB-C Charging Cable,1,11.95,01/05/19 21:48,"300 Hill St, Seattle, WA 98101" +145489,Flatscreen TV,1,300,01/05/19 11:15,"300 9th St, Austin, TX 73301" +145490,Apple Airpods Headphones,1,150,01/09/19 17:17,"96 Spruce St, San Francisco, CA 94016" +145491,USB-C Charging Cable,1,11.95,01/24/19 21:14,"160 Lincoln St, Dallas, TX 75001" +145492,Lightning Charging Cable,2,14.95,01/01/19 11:39,"689 5th St, Austin, TX 73301" +145493,Bose SoundSport Headphones,1,99.99,01/07/19 20:35,"563 Center St, Boston, MA 02215" +145494,Flatscreen TV,1,300,01/03/19 15:06,"285 7th St, San Francisco, CA 94016" +145495,Wired Headphones,1,11.99,01/23/19 16:57,"978 2nd St, Atlanta, GA 30301" +145496,AAA Batteries (4-pack),1,2.99,01/18/19 20:57,"27 11th St, San Francisco, CA 94016" +145497,Wired Headphones,1,11.99,01/28/19 12:04,"380 4th St, San Francisco, CA 94016" +145498,AAA Batteries (4-pack),3,2.99,01/31/19 15:23,"207 7th St, San Francisco, CA 94016" +,,,,, +145499,USB-C Charging Cable,1,11.95,01/06/19 23:44,"816 Madison St, Los Angeles, CA 90001" +145500,Macbook Pro Laptop,1,1700,01/07/19 20:42,"610 Church St, Los Angeles, CA 90001" +145501,AAA Batteries (4-pack),1,2.99,01/23/19 17:04,"282 7th St, Seattle, WA 98101" +145502,34in Ultrawide Monitor,1,379.99,01/16/19 12:31,"425 5th St, San Francisco, CA 94016" +145503,AA Batteries (4-pack),1,3.84,01/15/19 20:48,"869 Ridge St, New York City, NY 10001" +145504,AAA Batteries (4-pack),2,2.99,01/01/19 19:28,"163 2nd St, Boston, MA 02215" +145505,USB-C Charging Cable,2,11.95,01/23/19 08:35,"540 Lake St, San Francisco, CA 94016" +145505,USB-C Charging Cable,1,11.95,01/23/19 08:35,"540 Lake St, San Francisco, CA 94016" +145506,USB-C Charging Cable,2,11.95,01/08/19 22:35,"587 11th St, San Francisco, CA 94016" +145507,USB-C Charging Cable,1,11.95,01/02/19 12:06,"119 Dogwood St, San Francisco, CA 94016" +145508,Wired Headphones,1,11.99,01/30/19 13:30,"502 Chestnut St, Portland, OR 97035" +145509,27in FHD Monitor,1,149.99,01/07/19 07:21,"856 7th St, Dallas, TX 75001" +145510,AAA Batteries (4-pack),4,2.99,01/06/19 16:42,"246 Wilson St, San Francisco, CA 94016" +145511,Lightning Charging Cable,1,14.95,01/19/19 21:32,"926 Elm St, San Francisco, CA 94016" +145512,AAA Batteries (4-pack),1,2.99,01/22/19 14:15,"354 Johnson St, Boston, MA 02215" +145513,Wired Headphones,1,11.99,01/26/19 11:36,"362 14th St, San Francisco, CA 94016" +145514,Apple Airpods Headphones,1,150,01/09/19 18:49,"77 9th St, New York City, NY 10001" +145515,AA Batteries (4-pack),2,3.84,01/31/19 10:52,"659 Maple St, San Francisco, CA 94016" +145516,Bose SoundSport Headphones,1,99.99,01/26/19 10:33,"430 North St, San Francisco, CA 94016" +145517,Google Phone,1,600,01/05/19 23:14,"455 Washington St, New York City, NY 10001" +145518,Lightning Charging Cable,1,14.95,01/29/19 11:36,"848 Washington St, New York City, NY 10001" +145519,iPhone,1,700,01/12/19 11:38,"646 Madison St, Atlanta, GA 30301" +145520,AAA Batteries (4-pack),2,2.99,01/03/19 20:34,"793 Park St, Seattle, WA 98101" +145521,Lightning Charging Cable,1,14.95,01/29/19 15:13,"399 Center St, Los Angeles, CA 90001" +145522,27in FHD Monitor,1,149.99,01/29/19 17:23,"604 Lakeview St, Austin, TX 73301" +145523,USB-C Charging Cable,1,11.95,01/27/19 01:04,"738 Main St, San Francisco, CA 94016" +145524,AAA Batteries (4-pack),1,2.99,01/25/19 21:35,"994 12th St, Seattle, WA 98101" +145525,Lightning Charging Cable,2,14.95,01/23/19 13:12,"765 Maple St, New York City, NY 10001" +145526,Apple Airpods Headphones,1,150,01/12/19 19:24,"786 7th St, Dallas, TX 75001" +145527,Lightning Charging Cable,1,14.95,01/11/19 21:17,"179 Washington St, New York City, NY 10001" +145528,Apple Airpods Headphones,1,150,01/11/19 18:57,"423 Sunset St, Boston, MA 02215" +145529,AA Batteries (4-pack),1,3.84,01/16/19 00:59,"469 South St, New York City, NY 10001" +145530,Lightning Charging Cable,1,14.95,01/19/19 18:44,"595 5th St, San Francisco, CA 94016" +145531,USB-C Charging Cable,1,11.95,01/08/19 21:18,"277 Walnut St, San Francisco, CA 94016" +145532,27in FHD Monitor,1,149.99,01/02/19 13:50,"406 West St, Dallas, TX 75001" +145533,AA Batteries (4-pack),1,3.84,01/14/19 12:47,"395 South St, Dallas, TX 75001" +145534,Apple Airpods Headphones,1,150,01/22/19 17:07,"700 Hickory St, New York City, NY 10001" +145534,AAA Batteries (4-pack),1,2.99,01/22/19 17:07,"700 Hickory St, New York City, NY 10001" +145535,Wired Headphones,2,11.99,01/25/19 01:50,"537 Maple St, San Francisco, CA 94016" +145536,34in Ultrawide Monitor,1,379.99,01/23/19 12:49,"748 14th St, San Francisco, CA 94016" +145537,Apple Airpods Headphones,1,150,01/12/19 11:49,"588 Dogwood St, San Francisco, CA 94016" +145538,20in Monitor,1,109.99,01/18/19 15:55,"782 Park St, Boston, MA 02215" +145539,Bose SoundSport Headphones,1,99.99,01/20/19 16:54,"911 Hill St, New York City, NY 10001" +145540,Lightning Charging Cable,1,14.95,01/01/19 04:15,"106 7th St, Atlanta, GA 30301" +145541,iPhone,1,700,01/05/19 22:55,"218 South St, Boston, MA 02215" +145542,AA Batteries (4-pack),1,3.84,01/01/19 19:47,"536 Spruce St, Atlanta, GA 30301" +145543,Lightning Charging Cable,1,14.95,01/24/19 08:17,"94 Highland St, Atlanta, GA 30301" +145544,Wired Headphones,2,11.99,01/24/19 01:03,"32 Highland St, San Francisco, CA 94016" +145545,USB-C Charging Cable,1,11.95,01/02/19 15:47,"675 14th St, New York City, NY 10001" +145546,Apple Airpods Headphones,1,150,01/03/19 01:37,"164 9th St, San Francisco, CA 94016" +145547,AA Batteries (4-pack),1,3.84,01/08/19 14:38,"877 Dogwood St, New York City, NY 10001" +145548,Apple Airpods Headphones,1,150,01/19/19 22:33,"418 Johnson St, San Francisco, CA 94016" +145549,Bose SoundSport Headphones,1,99.99,01/28/19 13:34,"385 River St, Boston, MA 02215" +145550,USB-C Charging Cable,1,11.95,01/14/19 15:18,"149 Hickory St, San Francisco, CA 94016" +145551,ThinkPad Laptop,1,999.99,01/08/19 16:42,"991 Church St, Atlanta, GA 30301" +145552,Apple Airpods Headphones,1,150,01/04/19 21:11,"288 Elm St, Los Angeles, CA 90001" +145553,Apple Airpods Headphones,1,150,01/26/19 18:08,"332 Lincoln St, Portland, OR 97035" +145554,AAA Batteries (4-pack),2,2.99,01/10/19 15:53,"278 Lake St, San Francisco, CA 94016" +145555,Wired Headphones,2,11.99,01/23/19 18:34,"411 11th St, San Francisco, CA 94016" +145556,AA Batteries (4-pack),1,3.84,01/14/19 10:58,"470 Madison St, San Francisco, CA 94016" +145557,Wired Headphones,1,11.99,01/30/19 06:56,"197 Johnson St, San Francisco, CA 94016" +145558,ThinkPad Laptop,1,999.99,01/21/19 16:31,"404 Sunset St, Atlanta, GA 30301" +145558,Wired Headphones,1,11.99,01/21/19 16:31,"404 Sunset St, Atlanta, GA 30301" +145559,Google Phone,1,600,01/07/19 15:29,"765 Center St, Boston, MA 02215" +145560,iPhone,1,700,01/23/19 13:00,"420 6th St, Los Angeles, CA 90001" +145561,Bose SoundSport Headphones,1,99.99,01/20/19 15:59,"827 Highland St, Austin, TX 73301" +145562,Apple Airpods Headphones,1,150,01/24/19 15:06,"747 Jefferson St, Boston, MA 02215" +145563,USB-C Charging Cable,2,11.95,01/21/19 20:43,"866 5th St, Seattle, WA 98101" +145564,AAA Batteries (4-pack),1,2.99,01/12/19 16:44,"597 Ridge St, New York City, NY 10001" +145565,Lightning Charging Cable,1,14.95,01/11/19 17:04,"605 2nd St, Atlanta, GA 30301" +145566,AA Batteries (4-pack),1,3.84,01/16/19 10:37,"99 7th St, New York City, NY 10001" +145567,Lightning Charging Cable,2,14.95,01/07/19 18:07,"994 Washington St, New York City, NY 10001" +145568,AA Batteries (4-pack),1,3.84,01/13/19 18:54,"781 8th St, Boston, MA 02215" +145569,AAA Batteries (4-pack),1,2.99,01/01/19 15:45,"244 11th St, San Francisco, CA 94016" +145570,Lightning Charging Cable,1,14.95,01/10/19 00:03,"202 Jefferson St, Seattle, WA 98101" +145571,27in 4K Gaming Monitor,1,389.99,01/13/19 20:29,"728 Adams St, San Francisco, CA 94016" +145572,AA Batteries (4-pack),1,3.84,01/05/19 21:43,"139 1st St, Boston, MA 02215" +145573,Google Phone,1,600,01/22/19 19:45,"430 Walnut St, San Francisco, CA 94016" +145574,Apple Airpods Headphones,1,150,01/23/19 16:31,"334 Cherry St, New York City, NY 10001" +145575,27in 4K Gaming Monitor,1,389.99,01/20/19 23:52,"582 Church St, Boston, MA 02215" +145576,Lightning Charging Cable,1,14.95,01/03/19 19:38,"182 1st St, Atlanta, GA 30301" +145577,USB-C Charging Cable,1,11.95,01/23/19 18:02,"89 Dogwood St, San Francisco, CA 94016" +145578,AAA Batteries (4-pack),1,2.99,01/20/19 11:47,"782 5th St, Seattle, WA 98101" +145579,AAA Batteries (4-pack),1,2.99,01/08/19 14:32,"750 Washington St, New York City, NY 10001" +145580,USB-C Charging Cable,1,11.95,01/31/19 22:53,"863 Sunset St, Dallas, TX 75001" +145581,AA Batteries (4-pack),1,3.84,01/13/19 14:59,"250 Center St, Austin, TX 73301" +145582,Apple Airpods Headphones,1,150,01/28/19 17:03,"785 Johnson St, Boston, MA 02215" +145583,27in FHD Monitor,1,149.99,01/09/19 10:48,"952 Spruce St, Los Angeles, CA 90001" +145584,USB-C Charging Cable,1,11.95,01/23/19 16:01,"287 Park St, Dallas, TX 75001" +145584,Bose SoundSport Headphones,1,99.99,01/23/19 16:01,"287 Park St, Dallas, TX 75001" +145585,AA Batteries (4-pack),1,3.84,01/16/19 19:48,"873 Center St, Atlanta, GA 30301" +145586,AA Batteries (4-pack),1,3.84,01/01/19 16:51,"339 4th St, Los Angeles, CA 90001" +145587,Bose SoundSport Headphones,1,99.99,01/20/19 15:28,"504 Jefferson St, Portland, ME 04101" +145588,AAA Batteries (4-pack),1,2.99,01/04/19 09:37,"191 Sunset St, Portland, ME 04101" +145589,AAA Batteries (4-pack),1,2.99,01/03/19 21:23,"135 6th St, Portland, OR 97035" +145590,Lightning Charging Cable,1,14.95,01/28/19 00:52,"352 Jackson St, Boston, MA 02215" +145591,AAA Batteries (4-pack),1,2.99,01/17/19 15:12,"766 Madison St, San Francisco, CA 94016" +145592,AAA Batteries (4-pack),1,2.99,01/22/19 21:49,"595 Wilson St, Seattle, WA 98101" +145593,Wired Headphones,1,11.99,01/16/19 15:07,"997 Elm St, New York City, NY 10001" +145593,Wired Headphones,1,11.99,01/16/19 15:07,"997 Elm St, New York City, NY 10001" +145594,AA Batteries (4-pack),1,3.84,01/18/19 11:00,"912 Cedar St, Portland, OR 97035" +145595,AA Batteries (4-pack),1,3.84,01/18/19 15:17,"129 Forest St, Austin, TX 73301" +145596,AA Batteries (4-pack),1,3.84,01/28/19 16:05,"970 Walnut St, Seattle, WA 98101" +145597,Lightning Charging Cable,1,14.95,01/12/19 16:22,"100 Adams St, Portland, OR 97035" +145598,Macbook Pro Laptop,1,1700,01/12/19 21:25,"599 River St, New York City, NY 10001" +145599,Apple Airpods Headphones,1,150,01/11/19 20:16,"66 2nd St, Seattle, WA 98101" +145600,34in Ultrawide Monitor,1,379.99,01/22/19 20:28,"254 Hickory St, Seattle, WA 98101" +145601,Macbook Pro Laptop,1,1700,01/14/19 07:47,"683 Jefferson St, Dallas, TX 75001" +145602,Lightning Charging Cable,1,14.95,01/26/19 11:51,"218 Church St, Portland, OR 97035" +145603,Flatscreen TV,1,300,01/29/19 08:25,"340 4th St, Los Angeles, CA 90001" +145604,27in FHD Monitor,1,149.99,01/30/19 18:56,"562 Dogwood St, San Francisco, CA 94016" +145605,USB-C Charging Cable,1,11.95,01/09/19 13:24,"171 Elm St, Portland, ME 04101" +145606,AA Batteries (4-pack),1,3.84,01/02/19 20:40,"832 Church St, Seattle, WA 98101" +145607,Flatscreen TV,1,300,01/30/19 12:52,"973 Jackson St, Los Angeles, CA 90001" +145608,27in FHD Monitor,1,149.99,01/04/19 16:52,"957 Jackson St, New York City, NY 10001" +145609,iPhone,1,700,01/06/19 18:14,"6 Forest St, Boston, MA 02215" +145609,Lightning Charging Cable,1,14.95,01/06/19 18:14,"6 Forest St, Boston, MA 02215" +145610,USB-C Charging Cable,1,11.95,01/14/19 14:01,"417 8th St, New York City, NY 10001" +145611,AA Batteries (4-pack),1,3.84,01/01/19 16:17,"57 8th St, Los Angeles, CA 90001" +145612,27in FHD Monitor,1,149.99,01/30/19 18:58,"366 10th St, Portland, OR 97035" +145613,Bose SoundSport Headphones,1,99.99,01/10/19 13:08,"223 Cedar St, Austin, TX 73301" +145614,Apple Airpods Headphones,1,150,01/28/19 15:08,"173 Jefferson St, San Francisco, CA 94016" +145615,Wired Headphones,2,11.99,01/29/19 09:32,"143 Dogwood St, San Francisco, CA 94016" +145616,AAA Batteries (4-pack),1,2.99,01/19/19 09:25,"466 9th St, New York City, NY 10001" +145617,AA Batteries (4-pack),3,3.84,01/15/19 15:41,"28 7th St, San Francisco, CA 94016" +145618,AA Batteries (4-pack),2,3.84,01/30/19 12:51,"719 Washington St, Atlanta, GA 30301" +145619,AA Batteries (4-pack),1,3.84,01/23/19 18:01,"837 Adams St, San Francisco, CA 94016" +145620,iPhone,1,700,01/09/19 23:25,"972 Lakeview St, San Francisco, CA 94016" +145621,Google Phone,1,600,01/17/19 11:30,"387 5th St, Dallas, TX 75001" +145621,USB-C Charging Cable,1,11.95,01/17/19 11:30,"387 5th St, Dallas, TX 75001" +145622,AAA Batteries (4-pack),2,2.99,01/28/19 18:47,"818 Hill St, San Francisco, CA 94016" +145623,USB-C Charging Cable,1,11.95,01/20/19 23:14,"752 Jackson St, Seattle, WA 98101" +145624,USB-C Charging Cable,1,11.95,01/04/19 18:39,"471 Washington St, Los Angeles, CA 90001" +145625,Macbook Pro Laptop,1,1700,01/17/19 21:59,"728 Church St, Boston, MA 02215" +145626,Lightning Charging Cable,1,14.95,01/25/19 17:07,"152 Johnson St, San Francisco, CA 94016" +145627,USB-C Charging Cable,1,11.95,01/17/19 11:16,"793 Spruce St, New York City, NY 10001" +145628,27in 4K Gaming Monitor,1,389.99,01/27/19 01:35,"729 Lakeview St, San Francisco, CA 94016" +145629,Lightning Charging Cable,1,14.95,01/23/19 22:06,"517 Cedar St, San Francisco, CA 94016" +145630,27in FHD Monitor,1,149.99,01/28/19 21:48,"413 Lincoln St, Los Angeles, CA 90001" +145631,AA Batteries (4-pack),2,3.84,01/03/19 07:46,"755 Willow St, Atlanta, GA 30301" +145632,AAA Batteries (4-pack),2,2.99,01/11/19 12:53,"863 Wilson St, Austin, TX 73301" +145633,ThinkPad Laptop,1,999.99,01/18/19 21:53,"715 Walnut St, Seattle, WA 98101" +145634,Wired Headphones,1,11.99,01/10/19 22:35,"38 4th St, Los Angeles, CA 90001" +145635,Google Phone,1,600,01/09/19 22:00,"972 Center St, New York City, NY 10001" +145636,AAA Batteries (4-pack),3,2.99,01/21/19 09:49,"257 Elm St, Dallas, TX 75001" +145637,Macbook Pro Laptop,1,1700,01/21/19 13:59,"446 Church St, New York City, NY 10001" +145638,Bose SoundSport Headphones,1,99.99,01/08/19 13:14,"182 River St, New York City, NY 10001" +145639,AAA Batteries (4-pack),2,2.99,01/14/19 16:22,"627 1st St, San Francisco, CA 94016" +145640,Bose SoundSport Headphones,1,99.99,01/05/19 09:25,"993 1st St, Portland, OR 97035" +145641,AA Batteries (4-pack),2,3.84,01/26/19 15:45,"878 Meadow St, New York City, NY 10001" +145642,Lightning Charging Cable,1,14.95,01/18/19 17:25,"524 Lincoln St, Boston, MA 02215" +145643,27in 4K Gaming Monitor,1,389.99,01/25/19 13:46,"46 Center St, Atlanta, GA 30301" +145644,Wired Headphones,1,11.99,01/21/19 12:26,"176 South St, Portland, OR 97035" +145645,Lightning Charging Cable,1,14.95,01/05/19 18:24,"453 Hickory St, Seattle, WA 98101" +145646,Apple Airpods Headphones,1,150,01/15/19 21:59,"680 Ridge St, Boston, MA 02215" +145647,iPhone,1,700,01/01/19 03:40,"655 Meadow St, Boston, MA 02215" +145648,Flatscreen TV,1,300,01/19/19 18:43,"318 13th St, Los Angeles, CA 90001" +145649,Flatscreen TV,1,300,01/22/19 17:37,"286 Walnut St, New York City, NY 10001" +145650,Bose SoundSport Headphones,1,99.99,01/13/19 11:00,"417 Center St, San Francisco, CA 94016" +145651,Wired Headphones,2,11.99,01/14/19 10:55,"304 1st St, Portland, ME 04101" +145652,Flatscreen TV,1,300,01/25/19 10:35,"239 Hickory St, Los Angeles, CA 90001" +145653,27in 4K Gaming Monitor,1,389.99,01/16/19 21:31,"387 7th St, New York City, NY 10001" +145654,Apple Airpods Headphones,1,150,01/05/19 21:22,"150 Elm St, Los Angeles, CA 90001" +145655,AAA Batteries (4-pack),3,2.99,01/15/19 11:07,"253 7th St, Portland, OR 97035" +145656,AA Batteries (4-pack),1,3.84,01/17/19 04:55,"697 2nd St, Dallas, TX 75001" +145657,27in FHD Monitor,1,149.99,01/05/19 12:50,"919 Park St, Dallas, TX 75001" +145658,USB-C Charging Cable,1,11.95,01/31/19 22:52,"944 Center St, Los Angeles, CA 90001" +145659,AAA Batteries (4-pack),2,2.99,01/26/19 17:46,"329 Johnson St, Los Angeles, CA 90001" +145659,Wired Headphones,1,11.99,01/26/19 17:46,"329 Johnson St, Los Angeles, CA 90001" +145660,Flatscreen TV,1,300,01/08/19 08:50,"585 Washington St, Los Angeles, CA 90001" +145661,27in 4K Gaming Monitor,1,389.99,01/15/19 10:38,"846 North St, Los Angeles, CA 90001" +145662,LG Dryer,1,600.0,01/20/19 20:18,"473 Dogwood St, Boston, MA 02215" +145663,AAA Batteries (4-pack),1,2.99,01/22/19 08:43,"362 9th St, Portland, OR 97035" +145664,Lightning Charging Cable,1,14.95,01/22/19 21:32,"345 Willow St, Dallas, TX 75001" +145665,34in Ultrawide Monitor,1,379.99,01/06/19 14:40,"458 9th St, San Francisco, CA 94016" +145666,ThinkPad Laptop,1,999.99,01/06/19 13:18,"155 Cherry St, Portland, ME 04101" +145667,USB-C Charging Cable,1,11.95,01/07/19 13:29,"278 11th St, Los Angeles, CA 90001" +145668,Lightning Charging Cable,1,14.95,01/23/19 21:01,"583 9th St, San Francisco, CA 94016" +145669,Bose SoundSport Headphones,1,99.99,01/28/19 18:57,"33 Walnut St, San Francisco, CA 94016" +145670,Bose SoundSport Headphones,1,99.99,01/25/19 20:42,"108 2nd St, New York City, NY 10001" +145671,Vareebadd Phone,1,400,01/07/19 09:02,"11 Park St, San Francisco, CA 94016" +145671,USB-C Charging Cable,1,11.95,01/07/19 09:02,"11 Park St, San Francisco, CA 94016" +145671,Wired Headphones,1,11.99,01/07/19 09:02,"11 Park St, San Francisco, CA 94016" +145672,USB-C Charging Cable,1,11.95,01/23/19 17:36,"530 8th St, Austin, TX 73301" +145673,Lightning Charging Cable,1,14.95,01/24/19 22:35,"893 Highland St, Seattle, WA 98101" +145674,iPhone,1,700,01/26/19 20:51,"916 Willow St, San Francisco, CA 94016" +145674,Lightning Charging Cable,1,14.95,01/26/19 20:51,"916 Willow St, San Francisco, CA 94016" +145675,Vareebadd Phone,1,400,01/08/19 15:37,"876 Elm St, Seattle, WA 98101" +145676,AAA Batteries (4-pack),1,2.99,01/14/19 15:21,"827 2nd St, Los Angeles, CA 90001" +145677,27in 4K Gaming Monitor,1,389.99,01/21/19 19:54,"258 Maple St, Austin, TX 73301" +145678,Apple Airpods Headphones,1,150,01/20/19 11:33,"506 South St, New York City, NY 10001" +145679,USB-C Charging Cable,1,11.95,01/10/19 11:54,"700 7th St, San Francisco, CA 94016" +145680,Lightning Charging Cable,1,14.95,01/04/19 22:31,"948 9th St, Austin, TX 73301" +145681,20in Monitor,1,109.99,01/03/19 11:44,"493 Lakeview St, San Francisco, CA 94016" +145682,Flatscreen TV,1,300,01/05/19 02:01,"718 Willow St, Los Angeles, CA 90001" +145683,Google Phone,1,600,01/23/19 11:14,"246 10th St, Seattle, WA 98101" +145684,34in Ultrawide Monitor,1,379.99,01/17/19 20:27,"459 Center St, San Francisco, CA 94016" +145685,Lightning Charging Cable,1,14.95,01/12/19 16:12,"915 Walnut St, Boston, MA 02215" +145686,Lightning Charging Cable,2,14.95,01/02/19 17:29,"665 13th St, San Francisco, CA 94016" +145687,Lightning Charging Cable,1,14.95,01/12/19 16:49,"150 Lake St, San Francisco, CA 94016" +145688,Macbook Pro Laptop,1,1700,01/31/19 20:22,"903 Maple St, San Francisco, CA 94016" +145689,Bose SoundSport Headphones,1,99.99,01/02/19 00:56,"235 Hickory St, Austin, TX 73301" +145690,AAA Batteries (4-pack),1,2.99,01/16/19 13:58,"785 Church St, Boston, MA 02215" +145691,Apple Airpods Headphones,1,150,01/12/19 12:38,"550 Lake St, San Francisco, CA 94016" +145692,27in 4K Gaming Monitor,1,389.99,01/16/19 11:05,"478 4th St, Los Angeles, CA 90001" +145692,Bose SoundSport Headphones,1,99.99,01/16/19 11:05,"478 4th St, Los Angeles, CA 90001" +145693,Wired Headphones,1,11.99,01/10/19 13:50,"600 Washington St, Los Angeles, CA 90001" +145694,Wired Headphones,1,11.99,01/27/19 20:56,"570 Wilson St, Austin, TX 73301" +145695,USB-C Charging Cable,2,11.95,01/02/19 10:20,"273 South St, Dallas, TX 75001" +145696,Lightning Charging Cable,1,14.95,01/30/19 23:21,"914 Pine St, Los Angeles, CA 90001" +145697,Vareebadd Phone,1,400,01/27/19 19:25,"453 Main St, Los Angeles, CA 90001" +145698,Wired Headphones,1,11.99,01/05/19 20:30,"647 Madison St, San Francisco, CA 94016" +145699,Bose SoundSport Headphones,1,99.99,01/06/19 17:19,"115 Church St, Atlanta, GA 30301" +145700,Apple Airpods Headphones,1,150,01/12/19 20:20,"28 Hickory St, San Francisco, CA 94016" +145701,Macbook Pro Laptop,1,1700,02/01/19 02:33,"18 Cedar St, San Francisco, CA 94016" +145702,20in Monitor,1,109.99,01/22/19 11:35,"181 Maple St, Boston, MA 02215" +145703,USB-C Charging Cable,1,11.95,01/20/19 22:13,"647 Cherry St, Los Angeles, CA 90001" +145704,Flatscreen TV,1,300,01/04/19 13:04,"125 6th St, New York City, NY 10001" +145705,Wired Headphones,1,11.99,01/08/19 09:03,"874 Dogwood St, Austin, TX 73301" +145706,20in Monitor,1,109.99,01/16/19 22:48,"322 Church St, Austin, TX 73301" +145707,AA Batteries (4-pack),2,3.84,01/13/19 16:57,"636 Spruce St, New York City, NY 10001" +145708,34in Ultrawide Monitor,1,379.99,01/07/19 20:09,"583 5th St, San Francisco, CA 94016" +145709,AA Batteries (4-pack),1,3.84,01/28/19 11:58,"978 1st St, Los Angeles, CA 90001" +145710,27in 4K Gaming Monitor,1,389.99,01/02/19 12:52,"572 Cherry St, Los Angeles, CA 90001" +145711,Lightning Charging Cable,1,14.95,01/05/19 16:10,"25 Church St, San Francisco, CA 94016" +145712,Lightning Charging Cable,1,14.95,01/22/19 08:03,"969 11th St, San Francisco, CA 94016" +145713,27in 4K Gaming Monitor,1,389.99,01/07/19 22:55,"554 11th St, Los Angeles, CA 90001" +145714,Bose SoundSport Headphones,1,99.99,01/07/19 19:22,"353 12th St, New York City, NY 10001" +145715,Google Phone,1,600,01/14/19 07:26,"454 Meadow St, Los Angeles, CA 90001" +145716,Lightning Charging Cable,1,14.95,01/10/19 01:40,"196 Ridge St, New York City, NY 10001" +145717,20in Monitor,1,109.99,01/27/19 12:16,"106 Lakeview St, Boston, MA 02215" +145718,Apple Airpods Headphones,1,150,01/26/19 19:28,"70 Sunset St, Austin, TX 73301" +145719,Wired Headphones,1,11.99,01/21/19 17:37,"23 14th St, San Francisco, CA 94016" +145720,iPhone,1,700,01/10/19 11:54,"250 4th St, Atlanta, GA 30301" +145721,Google Phone,1,600,01/01/19 21:49,"916 Forest St, Portland, OR 97035" +145722,AAA Batteries (4-pack),1,2.99,01/05/19 14:33,"36 14th St, Los Angeles, CA 90001" +145723,27in 4K Gaming Monitor,1,389.99,01/19/19 14:57,"389 West St, Boston, MA 02215" +145724,AA Batteries (4-pack),1,3.84,01/23/19 06:52,"127 Maple St, Los Angeles, CA 90001" +145725,Wired Headphones,2,11.99,01/25/19 15:32,"191 Center St, Los Angeles, CA 90001" +145726,20in Monitor,1,109.99,01/16/19 08:28,"989 Ridge St, New York City, NY 10001" +145727,Lightning Charging Cable,1,14.95,01/01/19 19:07,"908 Walnut St, Portland, OR 97035" +145728,Google Phone,1,600,01/16/19 07:11,"253 Lake St, San Francisco, CA 94016" +145728,USB-C Charging Cable,1,11.95,01/16/19 07:11,"253 Lake St, San Francisco, CA 94016" +145729,34in Ultrawide Monitor,1,379.99,01/23/19 11:00,"36 Spruce St, San Francisco, CA 94016" +145730,Wired Headphones,1,11.99,01/31/19 20:58,"918 Jefferson St, Portland, OR 97035" +145731,27in 4K Gaming Monitor,1,389.99,01/01/19 15:36,"522 Cherry St, Los Angeles, CA 90001" +145732,Apple Airpods Headphones,1,150,01/13/19 14:50,"870 Elm St, Dallas, TX 75001" +145733,AAA Batteries (4-pack),1,2.99,01/07/19 11:44,"99 Dogwood St, New York City, NY 10001" +145734,Vareebadd Phone,1,400,01/03/19 19:04,"375 Wilson St, Boston, MA 02215" +145735,AAA Batteries (4-pack),2,2.99,01/05/19 16:43,"658 Cherry St, Seattle, WA 98101" +145736,Wired Headphones,1,11.99,01/03/19 12:04,"94 4th St, Los Angeles, CA 90001" +145737,USB-C Charging Cable,1,11.95,01/04/19 15:30,"389 Meadow St, Los Angeles, CA 90001" +145738,Lightning Charging Cable,1,14.95,01/22/19 01:01,"104 South St, San Francisco, CA 94016" +145739,ThinkPad Laptop,1,999.99,01/23/19 18:35,"428 Hill St, Seattle, WA 98101" +145740,AAA Batteries (4-pack),1,2.99,01/08/19 21:02,"603 Hickory St, New York City, NY 10001" +145741,USB-C Charging Cable,1,11.95,01/11/19 18:46,"86 Jefferson St, San Francisco, CA 94016" +145742,Lightning Charging Cable,1,14.95,01/31/19 22:46,"577 12th St, Boston, MA 02215" +145743,AA Batteries (4-pack),5,3.84,01/12/19 19:12,"560 Washington St, San Francisco, CA 94016" +145744,27in 4K Gaming Monitor,1,389.99,01/21/19 21:04,"19 Johnson St, Los Angeles, CA 90001" +145745,Flatscreen TV,1,300,01/28/19 15:56,"900 Lakeview St, Los Angeles, CA 90001" +145746,34in Ultrawide Monitor,1,379.99,01/08/19 20:35,"774 Cherry St, Boston, MA 02215" +145747,Wired Headphones,1,11.99,01/26/19 18:41,"264 Washington St, Boston, MA 02215" +145748,AA Batteries (4-pack),1,3.84,01/27/19 06:35,"259 Jackson St, Dallas, TX 75001" +145749,34in Ultrawide Monitor,1,379.99,01/27/19 21:40,"652 West St, Dallas, TX 75001" +145750,Flatscreen TV,1,300,01/23/19 22:10,"44 Lakeview St, San Francisco, CA 94016" +145751,Flatscreen TV,1,300,01/07/19 06:25,"168 Elm St, Boston, MA 02215" +145752,USB-C Charging Cable,1,11.95,01/06/19 19:50,"125 4th St, Los Angeles, CA 90001" +145753,Bose SoundSport Headphones,1,99.99,01/13/19 20:43,"114 4th St, Los Angeles, CA 90001" +145754,27in 4K Gaming Monitor,1,389.99,01/26/19 19:26,"716 Hickory St, San Francisco, CA 94016" +145755,Apple Airpods Headphones,1,150,01/14/19 18:44,"500 West St, Boston, MA 02215" +145756,AAA Batteries (4-pack),2,2.99,01/04/19 15:34,"636 Willow St, Seattle, WA 98101" +145757,AAA Batteries (4-pack),2,2.99,01/18/19 14:27,"126 12th St, Los Angeles, CA 90001" +145758,Apple Airpods Headphones,1,150,01/13/19 19:04,"512 Pine St, Seattle, WA 98101" +145759,Bose SoundSport Headphones,1,99.99,01/01/19 07:15,"55 1st St, Boston, MA 02215" +145760,AAA Batteries (4-pack),1,2.99,01/12/19 20:09,"447 11th St, Austin, TX 73301" +145761,Apple Airpods Headphones,1,150,01/31/19 20:06,"965 Jefferson St, Los Angeles, CA 90001" +145762,Wired Headphones,1,11.99,01/31/19 13:21,"265 8th St, San Francisco, CA 94016" +145763,Google Phone,1,600,01/05/19 11:17,"486 5th St, Boston, MA 02215" +145764,AA Batteries (4-pack),2,3.84,01/19/19 09:39,"437 Washington St, San Francisco, CA 94016" +145765,27in 4K Gaming Monitor,1,389.99,01/27/19 11:46,"860 Johnson St, Atlanta, GA 30301" +145766,34in Ultrawide Monitor,1,379.99,01/09/19 17:00,"223 Jackson St, Seattle, WA 98101" +145767,ThinkPad Laptop,1,999.99,01/22/19 22:54,"215 Meadow St, San Francisco, CA 94016" +145768,Apple Airpods Headphones,1,150,01/15/19 09:25,"708 Hill St, Los Angeles, CA 90001" +145769,27in FHD Monitor,1,149.99,01/23/19 16:32,"301 7th St, Seattle, WA 98101" +145770,ThinkPad Laptop,1,999.99,01/29/19 16:01,"332 Elm St, San Francisco, CA 94016" +145771,Apple Airpods Headphones,1,150,01/28/19 18:58,"185 Willow St, San Francisco, CA 94016" +145772,Lightning Charging Cable,1,14.95,01/11/19 21:37,"223 Elm St, New York City, NY 10001" +145773,Apple Airpods Headphones,1,150,01/07/19 10:39,"227 9th St, Boston, MA 02215" +145774,27in FHD Monitor,1,149.99,01/30/19 15:54,"15 6th St, San Francisco, CA 94016" +145775,AAA Batteries (4-pack),1,2.99,01/25/19 00:27,"179 1st St, Seattle, WA 98101" +145776,USB-C Charging Cable,1,11.95,01/20/19 20:55,"903 8th St, Los Angeles, CA 90001" +145777,27in FHD Monitor,2,149.99,01/09/19 13:28,"416 Cherry St, Los Angeles, CA 90001" +145778,Apple Airpods Headphones,1,150,01/20/19 19:36,"381 14th St, Los Angeles, CA 90001" +145779,Lightning Charging Cable,1,14.95,01/15/19 21:38,"79 14th St, Atlanta, GA 30301" +145780,Lightning Charging Cable,1,14.95,01/17/19 17:31,"335 Hill St, Portland, OR 97035" +145781,AA Batteries (4-pack),1,3.84,01/05/19 11:38,"274 Lakeview St, Boston, MA 02215" +145782,Wired Headphones,2,11.99,01/13/19 17:50,"499 Ridge St, New York City, NY 10001" +145783,AA Batteries (4-pack),2,3.84,01/14/19 22:21,"316 Center St, Boston, MA 02215" +145784,AAA Batteries (4-pack),3,2.99,01/04/19 07:26,"698 Chestnut St, Dallas, TX 75001" +145785,Apple Airpods Headphones,1,150,01/25/19 08:05,"277 9th St, Atlanta, GA 30301" +145786,USB-C Charging Cable,1,11.95,01/06/19 17:54,"542 Park St, Boston, MA 02215" +145787,Apple Airpods Headphones,1,150,01/30/19 17:37,"863 Highland St, Portland, OR 97035" +145788,Vareebadd Phone,1,400,01/03/19 15:29,"217 South St, Seattle, WA 98101" +145789,27in FHD Monitor,1,149.99,01/15/19 19:13,"443 Johnson St, Portland, OR 97035" +145790,34in Ultrawide Monitor,1,379.99,01/06/19 12:27,"264 Cherry St, Boston, MA 02215" +145791,Google Phone,1,600,01/30/19 22:24,"316 Ridge St, San Francisco, CA 94016" +145791,USB-C Charging Cable,1,11.95,01/30/19 22:24,"316 Ridge St, San Francisco, CA 94016" +145791,Bose SoundSport Headphones,1,99.99,01/30/19 22:24,"316 Ridge St, San Francisco, CA 94016" +145792,Bose SoundSport Headphones,1,99.99,01/03/19 15:13,"283 Adams St, Boston, MA 02215" +145793,27in FHD Monitor,1,149.99,01/21/19 11:06,"401 10th St, Boston, MA 02215" +145794,AA Batteries (4-pack),1,3.84,01/19/19 11:39,"559 Lincoln St, Atlanta, GA 30301" +145795,AA Batteries (4-pack),2,3.84,01/21/19 16:26,"434 Adams St, Los Angeles, CA 90001" +145796,Bose SoundSport Headphones,1,99.99,01/03/19 11:56,"705 Dogwood St, San Francisco, CA 94016" +145797,USB-C Charging Cable,1,11.95,01/24/19 22:49,"848 Washington St, Boston, MA 02215" +145798,LG Dryer,1,600.0,01/31/19 20:59,"199 Meadow St, Los Angeles, CA 90001" +145799,Macbook Pro Laptop,1,1700,01/29/19 12:35,"714 Jackson St, Boston, MA 02215" +145800,AAA Batteries (4-pack),2,2.99,01/09/19 18:32,"11 Maple St, Dallas, TX 75001" +145801,Apple Airpods Headphones,2,150,01/09/19 09:43,"423 Cherry St, Austin, TX 73301" +145802,Bose SoundSport Headphones,1,99.99,01/22/19 11:03,"12 Adams St, Boston, MA 02215" +145803,Lightning Charging Cable,1,14.95,01/21/19 12:49,"717 Church St, Austin, TX 73301" +145804,USB-C Charging Cable,1,11.95,01/21/19 08:56,"487 11th St, San Francisco, CA 94016" +145805,27in 4K Gaming Monitor,1,389.99,01/15/19 13:26,"665 Sunset St, San Francisco, CA 94016" +145806,AA Batteries (4-pack),2,3.84,01/05/19 19:09,"640 Chestnut St, San Francisco, CA 94016" +145807,27in FHD Monitor,1,149.99,01/30/19 13:58,"176 Main St, New York City, NY 10001" +145808,AA Batteries (4-pack),1,3.84,01/01/19 19:52,"990 Hill St, Boston, MA 02215" +145809,AA Batteries (4-pack),1,3.84,01/01/19 19:27,"281 2nd St, San Francisco, CA 94016" +145810,Lightning Charging Cable,1,14.95,01/25/19 20:34,"571 Lakeview St, New York City, NY 10001" +145811,ThinkPad Laptop,1,999.99,01/19/19 21:59,"398 Madison St, Dallas, TX 75001" +145812,AA Batteries (4-pack),1,3.84,01/24/19 20:23,"686 Lakeview St, San Francisco, CA 94016" +145813,20in Monitor,1,109.99,01/14/19 19:09,"248 South St, San Francisco, CA 94016" +145814,USB-C Charging Cable,1,11.95,01/14/19 15:24,"580 Washington St, San Francisco, CA 94016" +145815,Lightning Charging Cable,1,14.95,01/28/19 18:31,"858 Hickory St, San Francisco, CA 94016" +145816,Apple Airpods Headphones,1,150,01/18/19 22:54,"981 Johnson St, Austin, TX 73301" +145817,AA Batteries (4-pack),2,3.84,01/03/19 13:14,"988 7th St, Portland, OR 97035" +145818,ThinkPad Laptop,1,999.99,01/13/19 11:20,"535 Hickory St, New York City, NY 10001" +145819,AAA Batteries (4-pack),2,2.99,01/30/19 20:09,"502 Jackson St, San Francisco, CA 94016" +145820,AA Batteries (4-pack),1,3.84,01/09/19 22:18,"55 14th St, Los Angeles, CA 90001" +145821,Lightning Charging Cable,1,14.95,01/20/19 17:28,"785 2nd St, San Francisco, CA 94016" +145822,Flatscreen TV,1,300,01/12/19 09:47,"953 Cherry St, Dallas, TX 75001" +145823,Apple Airpods Headphones,1,150,01/15/19 13:26,"885 10th St, San Francisco, CA 94016" +145824,AAA Batteries (4-pack),1,2.99,01/13/19 22:33,"717 Cedar St, Los Angeles, CA 90001" +145825,34in Ultrawide Monitor,1,379.99,01/29/19 14:45,"34 Washington St, Atlanta, GA 30301" +145826,Wired Headphones,1,11.99,01/24/19 20:14,"54 Lincoln St, Los Angeles, CA 90001" +145827,AA Batteries (4-pack),2,3.84,01/10/19 23:35,"857 Willow St, San Francisco, CA 94016" +145828,34in Ultrawide Monitor,1,379.99,01/24/19 00:42,"254 Lake St, Los Angeles, CA 90001" +145829,AAA Batteries (4-pack),1,2.99,01/31/19 21:47,"519 Johnson St, Dallas, TX 75001" +145830,AA Batteries (4-pack),2,3.84,01/13/19 16:19,"200 Hill St, Portland, OR 97035" +145831,iPhone,1,700,01/11/19 15:56,"994 Lake St, Atlanta, GA 30301" +145831,Wired Headphones,1,11.99,01/11/19 15:56,"994 Lake St, Atlanta, GA 30301" +145832,USB-C Charging Cable,1,11.95,01/24/19 00:15,"536 Chestnut St, Los Angeles, CA 90001" +145833,Vareebadd Phone,1,400,01/26/19 18:06,"652 8th St, New York City, NY 10001" +145833,Bose SoundSport Headphones,1,99.99,01/26/19 18:06,"652 8th St, New York City, NY 10001" +145834,Apple Airpods Headphones,1,150,01/25/19 11:07,"940 North St, Portland, OR 97035" +145835,LG Dryer,1,600.0,01/16/19 18:00,"806 Walnut St, Portland, OR 97035" +145836,20in Monitor,1,109.99,01/15/19 20:34,"619 Hickory St, Dallas, TX 75001" +145837,20in Monitor,1,109.99,01/28/19 14:24,"347 Wilson St, San Francisco, CA 94016" +145838,Bose SoundSport Headphones,1,99.99,01/15/19 11:56,"535 Pine St, San Francisco, CA 94016" +145839,AAA Batteries (4-pack),2,2.99,01/18/19 18:16,"490 Washington St, Atlanta, GA 30301" +145839,AAA Batteries (4-pack),3,2.99,01/18/19 18:16,"490 Washington St, Atlanta, GA 30301" +145840,27in 4K Gaming Monitor,1,389.99,01/23/19 17:49,"291 Hickory St, Dallas, TX 75001" +145841,USB-C Charging Cable,1,11.95,01/02/19 20:43,"328 West St, Los Angeles, CA 90001" +145841,Wired Headphones,1,11.99,01/02/19 20:43,"328 West St, Los Angeles, CA 90001" +145842,Lightning Charging Cable,1,14.95,01/24/19 18:40,"215 Pine St, Austin, TX 73301" +145843,AAA Batteries (4-pack),1,2.99,01/27/19 20:35,"542 Jefferson St, Atlanta, GA 30301" +145844,USB-C Charging Cable,1,11.95,01/05/19 15:42,"654 Pine St, Austin, TX 73301" +145845,USB-C Charging Cable,1,11.95,01/21/19 18:38,"558 6th St, San Francisco, CA 94016" +145846,Wired Headphones,1,11.99,01/18/19 11:58,"582 Meadow St, San Francisco, CA 94016" +145847,Lightning Charging Cable,1,14.95,01/14/19 22:18,"15 8th St, Seattle, WA 98101" +145848,Wired Headphones,1,11.99,01/26/19 23:17,"245 Cedar St, Portland, OR 97035" +145849,34in Ultrawide Monitor,1,379.99,01/25/19 13:36,"229 Ridge St, Atlanta, GA 30301" +145850,20in Monitor,1,109.99,01/12/19 13:49,"665 Main St, Dallas, TX 75001" +145851,iPhone,1,700,01/14/19 13:21,"558 Lake St, Seattle, WA 98101" +145852,Apple Airpods Headphones,1,150,01/28/19 18:27,"838 8th St, San Francisco, CA 94016" +145853,AA Batteries (4-pack),1,3.84,01/12/19 12:11,"142 Hill St, Dallas, TX 75001" +145854,Wired Headphones,1,11.99,01/18/19 18:36,"452 Walnut St, New York City, NY 10001" +145855,Wired Headphones,1,11.99,01/17/19 19:01,"140 Main St, Boston, MA 02215" +145856,Lightning Charging Cable,1,14.95,01/09/19 19:19,"786 Spruce St, San Francisco, CA 94016" +145857,Lightning Charging Cable,1,14.95,01/02/19 11:22,"699 Highland St, Atlanta, GA 30301" +,,,,, +145858,27in FHD Monitor,1,149.99,01/21/19 12:24,"345 Cedar St, San Francisco, CA 94016" +145859,Lightning Charging Cable,1,14.95,01/08/19 11:04,"90 South St, New York City, NY 10001" +145860,Apple Airpods Headphones,1,150,01/03/19 08:19,"774 Church St, Boston, MA 02215" +145861,AA Batteries (4-pack),1,3.84,01/08/19 11:39,"626 Meadow St, Austin, TX 73301" +145862,ThinkPad Laptop,1,999.99,01/22/19 21:31,"319 Jefferson St, Boston, MA 02215" +145863,Bose SoundSport Headphones,1,99.99,01/06/19 08:38,"566 4th St, San Francisco, CA 94016" +145864,USB-C Charging Cable,1,11.95,01/14/19 19:13,"331 Adams St, Los Angeles, CA 90001" +145865,34in Ultrawide Monitor,1,379.99,01/12/19 11:02,"940 11th St, Atlanta, GA 30301" +145866,AA Batteries (4-pack),1,3.84,01/28/19 09:42,"596 Main St, Dallas, TX 75001" +145867,27in FHD Monitor,1,149.99,01/24/19 14:29,"242 Forest St, Dallas, TX 75001" +145868,USB-C Charging Cable,1,11.95,01/16/19 20:11,"179 Lake St, New York City, NY 10001" +145869,USB-C Charging Cable,1,11.95,01/02/19 09:11,"506 Washington St, Boston, MA 02215" +145870,Google Phone,1,600,01/31/19 21:03,"338 Madison St, Boston, MA 02215" +145870,Bose SoundSport Headphones,1,99.99,01/31/19 21:03,"338 Madison St, Boston, MA 02215" +145871,ThinkPad Laptop,1,999.99,01/14/19 15:46,"580 Wilson St, Dallas, TX 75001" +145872,iPhone,1,700,01/18/19 13:56,"423 Main St, Los Angeles, CA 90001" +145872,Lightning Charging Cable,1,14.95,01/18/19 13:56,"423 Main St, Los Angeles, CA 90001" +145873,Vareebadd Phone,1,400,01/09/19 17:33,"559 Johnson St, New York City, NY 10001" +145874,Wired Headphones,2,11.99,01/16/19 10:05,"229 Cherry St, Atlanta, GA 30301" +145875,USB-C Charging Cable,1,11.95,01/28/19 20:41,"945 Cedar St, Seattle, WA 98101" +145876,AAA Batteries (4-pack),1,2.99,01/14/19 11:21,"908 Lincoln St, Boston, MA 02215" +145876,AAA Batteries (4-pack),1,2.99,01/14/19 11:21,"908 Lincoln St, Boston, MA 02215" +145877,Apple Airpods Headphones,1,150,01/29/19 13:21,"355 Meadow St, Dallas, TX 75001" +145878,Wired Headphones,1,11.99,01/04/19 03:07,"296 2nd St, Atlanta, GA 30301" +145879,34in Ultrawide Monitor,1,379.99,01/23/19 23:13,"466 Jackson St, Portland, OR 97035" +145880,Lightning Charging Cable,1,14.95,01/10/19 20:42,"803 Cherry St, Dallas, TX 75001" +145881,Wired Headphones,1,11.99,01/18/19 15:37,"678 12th St, New York City, NY 10001" +145882,Flatscreen TV,1,300,01/17/19 19:55,"651 Ridge St, San Francisco, CA 94016" +145883,Lightning Charging Cable,1,14.95,01/09/19 14:55,"295 West St, Portland, OR 97035" +145884,Apple Airpods Headphones,1,150,01/19/19 09:42,"996 Highland St, San Francisco, CA 94016" +145885,Apple Airpods Headphones,1,150,01/16/19 12:23,"755 Chestnut St, Atlanta, GA 30301" +145886,AAA Batteries (4-pack),1,2.99,01/24/19 12:02,"403 Park St, Atlanta, GA 30301" +145887,USB-C Charging Cable,1,11.95,01/10/19 06:35,"102 8th St, Austin, TX 73301" +145888,Apple Airpods Headphones,1,150,01/06/19 18:01,"480 Chestnut St, Los Angeles, CA 90001" +145889,20in Monitor,1,109.99,01/25/19 22:53,"652 Cedar St, Dallas, TX 75001" +145890,Lightning Charging Cable,1,14.95,01/04/19 08:54,"939 Church St, Portland, OR 97035" +145891,Bose SoundSport Headphones,1,99.99,01/21/19 22:52,"411 Cherry St, Dallas, TX 75001" +145892,AA Batteries (4-pack),1,3.84,01/03/19 16:29,"866 Highland St, Los Angeles, CA 90001" +145893,USB-C Charging Cable,1,11.95,01/19/19 08:04,"609 Dogwood St, Atlanta, GA 30301" +145894,USB-C Charging Cable,1,11.95,01/20/19 18:18,"178 Chestnut St, San Francisco, CA 94016" +145895,AAA Batteries (4-pack),3,2.99,01/14/19 23:40,"754 Forest St, San Francisco, CA 94016" +145896,27in FHD Monitor,1,149.99,01/19/19 13:55,"352 14th St, Atlanta, GA 30301" +145897,27in FHD Monitor,1,149.99,01/05/19 20:16,"79 Meadow St, Los Angeles, CA 90001" +145898,AA Batteries (4-pack),2,3.84,01/19/19 13:09,"314 12th St, San Francisco, CA 94016" +145899,Wired Headphones,1,11.99,01/16/19 12:39,"124 9th St, Dallas, TX 75001" +145900,AAA Batteries (4-pack),2,2.99,01/04/19 13:20,"527 Forest St, Seattle, WA 98101" +145901,Lightning Charging Cable,1,14.95,01/10/19 10:45,"458 5th St, Portland, OR 97035" +145902,Bose SoundSport Headphones,1,99.99,01/29/19 14:37,"977 10th St, San Francisco, CA 94016" +145903,Google Phone,1,600,01/15/19 06:26,"402 Cedar St, Atlanta, GA 30301" +145904,Bose SoundSport Headphones,1,99.99,01/09/19 11:45,"238 Highland St, Seattle, WA 98101" +145905,Wired Headphones,1,11.99,01/08/19 22:54,"361 Walnut St, Los Angeles, CA 90001" +145906,USB-C Charging Cable,1,11.95,01/26/19 21:10,"795 River St, Seattle, WA 98101" +145907,Macbook Pro Laptop,1,1700,01/29/19 12:52,"99 13th St, New York City, NY 10001" +145908,27in 4K Gaming Monitor,1,389.99,01/16/19 19:32,"95 Church St, New York City, NY 10001" +145909,20in Monitor,1,109.99,01/14/19 13:30,"360 Lakeview St, San Francisco, CA 94016" +145910,Flatscreen TV,1,300,01/10/19 20:16,"513 4th St, Seattle, WA 98101" +145911,Apple Airpods Headphones,1,150,01/26/19 10:01,"7 Highland St, Boston, MA 02215" +145912,USB-C Charging Cable,1,11.95,01/18/19 21:13,"90 Willow St, Los Angeles, CA 90001" +145913,Lightning Charging Cable,1,14.95,01/20/19 09:50,"570 7th St, Boston, MA 02215" +145914,Wired Headphones,1,11.99,01/18/19 21:11,"33 North St, Los Angeles, CA 90001" +145915,ThinkPad Laptop,1,999.99,01/24/19 19:48,"504 West St, San Francisco, CA 94016" +145916,Lightning Charging Cable,1,14.95,01/11/19 12:59,"490 Jefferson St, Austin, TX 73301" +145917,Google Phone,1,600,01/12/19 22:18,"717 12th St, San Francisco, CA 94016" +145918,Wired Headphones,1,11.99,01/19/19 18:20,"54 Washington St, New York City, NY 10001" +145919,27in FHD Monitor,1,149.99,01/18/19 12:57,"766 2nd St, Boston, MA 02215" +145920,Lightning Charging Cable,1,14.95,01/27/19 17:39,"815 Main St, Portland, ME 04101" +145921,Wired Headphones,1,11.99,01/04/19 19:59,"538 River St, Seattle, WA 98101" +145922,AAA Batteries (4-pack),1,2.99,01/07/19 10:31,"872 2nd St, Boston, MA 02215" +145923,Flatscreen TV,1,300,01/17/19 09:58,"334 Pine St, Boston, MA 02215" +145924,Wired Headphones,1,11.99,01/27/19 08:37,"714 Pine St, San Francisco, CA 94016" +145925,Flatscreen TV,1,300,01/25/19 21:28,"525 Cedar St, Boston, MA 02215" +145926,USB-C Charging Cable,1,11.95,01/01/19 18:42,"582 14th St, New York City, NY 10001" +145927,Lightning Charging Cable,1,14.95,01/21/19 01:21,"768 Johnson St, San Francisco, CA 94016" +145928,AA Batteries (4-pack),2,3.84,01/10/19 14:41,"361 Maple St, New York City, NY 10001" +145929,Google Phone,1,600,01/30/19 20:53,"773 Ridge St, Dallas, TX 75001" +145930,Lightning Charging Cable,1,14.95,01/09/19 12:10,"272 1st St, New York City, NY 10001" +145931,iPhone,1,700,01/27/19 13:51,"352 6th St, New York City, NY 10001" +145932,ThinkPad Laptop,1,999.99,01/10/19 14:58,"740 10th St, Portland, ME 04101" +145933,Lightning Charging Cable,1,14.95,01/20/19 12:47,"842 Sunset St, Los Angeles, CA 90001" +145934,Lightning Charging Cable,1,14.95,01/05/19 21:17,"513 2nd St, Seattle, WA 98101" +145935,Lightning Charging Cable,1,14.95,01/15/19 06:25,"131 6th St, San Francisco, CA 94016" +145936,Wired Headphones,1,11.99,01/19/19 14:26,"816 Hill St, San Francisco, CA 94016" +145937,USB-C Charging Cable,1,11.95,01/11/19 21:04,"690 5th St, San Francisco, CA 94016" +145938,iPhone,1,700,01/29/19 19:50,"245 Wilson St, San Francisco, CA 94016" +145939,AAA Batteries (4-pack),1,2.99,01/13/19 21:51,"808 Cedar St, New York City, NY 10001" +145940,Wired Headphones,1,11.99,01/31/19 10:05,"227 13th St, Atlanta, GA 30301" +145941,27in 4K Gaming Monitor,1,389.99,01/23/19 21:26,"819 Center St, Boston, MA 02215" +145942,Lightning Charging Cable,1,14.95,01/01/19 11:35,"14 Madison St, New York City, NY 10001" +145943,USB-C Charging Cable,1,11.95,01/30/19 18:53,"353 10th St, San Francisco, CA 94016" +145944,AAA Batteries (4-pack),1,2.99,01/16/19 17:51,"376 5th St, Los Angeles, CA 90001" +145945,Flatscreen TV,1,300,01/19/19 18:07,"822 Hill St, Seattle, WA 98101" +145946,20in Monitor,1,109.99,01/24/19 10:57,"573 Spruce St, Austin, TX 73301" +145947,Lightning Charging Cable,1,14.95,01/22/19 09:33,"953 4th St, San Francisco, CA 94016" +145948,Bose SoundSport Headphones,1,99.99,01/28/19 11:55,"452 Highland St, Dallas, TX 75001" +145949,iPhone,1,700,01/03/19 20:08,"30 River St, Los Angeles, CA 90001" +145950,34in Ultrawide Monitor,1,379.99,01/08/19 00:27,"563 Chestnut St, New York City, NY 10001" +145951,AA Batteries (4-pack),2,3.84,01/12/19 21:36,"437 Church St, Dallas, TX 75001" +145952,Apple Airpods Headphones,1,150,01/23/19 08:24,"479 Center St, New York City, NY 10001" +145953,Lightning Charging Cable,1,14.95,01/29/19 09:38,"611 Chestnut St, Atlanta, GA 30301" +145954,Macbook Pro Laptop,1,1700,01/22/19 09:28,"321 Cherry St, Dallas, TX 75001" +145955,34in Ultrawide Monitor,1,379.99,01/12/19 23:19,"306 Elm St, New York City, NY 10001" +145956,Vareebadd Phone,1,400,01/03/19 13:10,"186 1st St, Boston, MA 02215" +145957,AAA Batteries (4-pack),1,2.99,01/09/19 13:46,"679 Washington St, Seattle, WA 98101" +145958,iPhone,1,700,01/22/19 19:28,"663 Sunset St, Dallas, TX 75001" +145959,AA Batteries (4-pack),1,3.84,01/27/19 10:11,"823 4th St, New York City, NY 10001" +145960,AAA Batteries (4-pack),1,2.99,01/27/19 11:51,"974 Lincoln St, Los Angeles, CA 90001" +145961,20in Monitor,1,109.99,01/19/19 20:46,"918 Elm St, Seattle, WA 98101" +145962,AA Batteries (4-pack),1,3.84,01/26/19 15:51,"405 Hill St, Los Angeles, CA 90001" +145963,34in Ultrawide Monitor,1,379.99,01/24/19 06:31,"993 12th St, Dallas, TX 75001" +145964,Bose SoundSport Headphones,1,99.99,01/27/19 12:54,"546 9th St, San Francisco, CA 94016" +145965,ThinkPad Laptop,1,999.99,01/11/19 17:33,"151 8th St, Boston, MA 02215" +145966,iPhone,1,700,01/14/19 15:53,"831 Forest St, Atlanta, GA 30301" +145967,USB-C Charging Cable,1,11.95,01/26/19 20:57,"719 North St, Los Angeles, CA 90001" +145968,Wired Headphones,1,11.99,01/16/19 20:04,"831 Elm St, New York City, NY 10001" +145969,AAA Batteries (4-pack),1,2.99,01/07/19 12:28,"345 Willow St, Seattle, WA 98101" +145970,USB-C Charging Cable,1,11.95,01/17/19 13:40,"24 Forest St, Seattle, WA 98101" +145971,iPhone,1,700,01/23/19 13:05,"655 Jackson St, Los Angeles, CA 90001" +145972,iPhone,1,700,01/13/19 09:12,"369 Highland St, New York City, NY 10001" +145973,Vareebadd Phone,1,400,01/23/19 09:37,"79 Center St, New York City, NY 10001" +145974,AA Batteries (4-pack),1,3.84,01/26/19 15:24,"368 Maple St, Boston, MA 02215" +145975,USB-C Charging Cable,1,11.95,01/19/19 07:12,"786 6th St, Atlanta, GA 30301" +145976,AA Batteries (4-pack),1,3.84,01/23/19 22:11,"308 Lake St, Boston, MA 02215" +145977,USB-C Charging Cable,1,11.95,01/17/19 17:27,"307 Center St, New York City, NY 10001" +145978,AAA Batteries (4-pack),1,2.99,01/01/19 18:21,"770 Madison St, New York City, NY 10001" +145979,AAA Batteries (4-pack),1,2.99,01/30/19 19:34,"391 Wilson St, New York City, NY 10001" +145980,Lightning Charging Cable,1,14.95,01/25/19 00:45,"37 Highland St, San Francisco, CA 94016" +145981,27in FHD Monitor,1,149.99,01/20/19 23:05,"303 Lakeview St, Seattle, WA 98101" +145982,Macbook Pro Laptop,1,1700,01/14/19 16:58,"742 13th St, San Francisco, CA 94016" +145983,AA Batteries (4-pack),2,3.84,01/02/19 17:42,"163 Cherry St, Boston, MA 02215" +145984,USB-C Charging Cable,1,11.95,01/06/19 19:34,"460 2nd St, Boston, MA 02215" +145985,AA Batteries (4-pack),1,3.84,01/27/19 20:57,"345 2nd St, Seattle, WA 98101" +145986,ThinkPad Laptop,1,999.99,01/26/19 08:35,"131 7th St, Atlanta, GA 30301" +145987,Bose SoundSport Headphones,1,99.99,01/03/19 16:28,"54 Washington St, San Francisco, CA 94016" +145988,Lightning Charging Cable,1,14.95,01/10/19 21:57,"300 River St, San Francisco, CA 94016" +145989,USB-C Charging Cable,1,11.95,01/29/19 13:54,"516 4th St, Los Angeles, CA 90001" +145990,Flatscreen TV,1,300,01/16/19 23:07,"710 2nd St, New York City, NY 10001" +145991,AAA Batteries (4-pack),1,2.99,01/24/19 19:09,"441 Chestnut St, San Francisco, CA 94016" +145992,Wired Headphones,1,11.99,01/28/19 08:36,"761 South St, Atlanta, GA 30301" +145993,LG Dryer,1,600.0,01/04/19 09:01,"895 River St, Dallas, TX 75001" +145994,Lightning Charging Cable,1,14.95,01/04/19 12:21,"289 Lincoln St, San Francisco, CA 94016" +145995,Lightning Charging Cable,1,14.95,01/25/19 13:30,"926 Ridge St, San Francisco, CA 94016" +145996,Lightning Charging Cable,1,14.95,01/12/19 22:47,"538 River St, San Francisco, CA 94016" +145997,AA Batteries (4-pack),1,3.84,01/02/19 10:12,"766 Church St, Portland, OR 97035" +145998,Google Phone,1,600,01/08/19 07:42,"536 Meadow St, Portland, OR 97035" +145998,USB-C Charging Cable,1,11.95,01/08/19 07:42,"536 Meadow St, Portland, OR 97035" +145998,Wired Headphones,1,11.99,01/08/19 07:42,"536 Meadow St, Portland, OR 97035" +145999,Flatscreen TV,1,300,01/03/19 16:02,"405 Dogwood St, Boston, MA 02215" +146000,Wired Headphones,1,11.99,01/14/19 15:21,"684 Sunset St, San Francisco, CA 94016" +146001,AAA Batteries (4-pack),4,2.99,01/23/19 15:09,"674 Lakeview St, Atlanta, GA 30301" +146002,USB-C Charging Cable,1,11.95,01/24/19 01:22,"249 13th St, San Francisco, CA 94016" +146003,Wired Headphones,1,11.99,01/31/19 13:52,"44 9th St, San Francisco, CA 94016" +146004,Lightning Charging Cable,1,14.95,01/23/19 16:04,"120 Cedar St, New York City, NY 10001" +146005,Wired Headphones,1,11.99,01/18/19 11:11,"168 Johnson St, San Francisco, CA 94016" +146006,Lightning Charging Cable,1,14.95,01/08/19 16:54,"176 Lakeview St, Seattle, WA 98101" +146007,34in Ultrawide Monitor,1,379.99,01/20/19 11:32,"202 Willow St, San Francisco, CA 94016" +146008,Apple Airpods Headphones,1,150,01/22/19 08:52,"510 Wilson St, Boston, MA 02215" +146009,iPhone,1,700,01/23/19 20:56,"417 Washington St, New York City, NY 10001" +146009,Wired Headphones,1,11.99,01/23/19 20:56,"417 Washington St, New York City, NY 10001" +146010,iPhone,1,700,01/13/19 13:57,"48 Lincoln St, Portland, OR 97035" +146010,Lightning Charging Cable,1,14.95,01/13/19 13:57,"48 Lincoln St, Portland, OR 97035" +146011,iPhone,1,700,01/31/19 12:38,"649 Chestnut St, Atlanta, GA 30301" +146012,Lightning Charging Cable,1,14.95,01/02/19 15:10,"912 Ridge St, Portland, OR 97035" +146013,AA Batteries (4-pack),2,3.84,01/11/19 14:39,"862 Spruce St, Boston, MA 02215" +146014,iPhone,1,700,01/27/19 21:52,"373 Main St, Portland, OR 97035" +146015,AA Batteries (4-pack),1,3.84,01/09/19 11:54,"824 6th St, New York City, NY 10001" +146016,AAA Batteries (4-pack),1,2.99,01/23/19 20:05,"717 South St, Atlanta, GA 30301" +146017,AA Batteries (4-pack),1,3.84,01/27/19 21:19,"409 River St, Boston, MA 02215" +146018,Wired Headphones,1,11.99,01/28/19 12:23,"619 13th St, Portland, OR 97035" +146019,AAA Batteries (4-pack),1,2.99,01/14/19 00:08,"424 River St, Los Angeles, CA 90001" +146020,34in Ultrawide Monitor,1,379.99,01/31/19 09:42,"88 Washington St, Los Angeles, CA 90001" +146021,AA Batteries (4-pack),1,3.84,01/26/19 20:17,"755 11th St, Seattle, WA 98101" +146022,27in FHD Monitor,1,149.99,01/18/19 12:08,"993 Pine St, Atlanta, GA 30301" +146023,AAA Batteries (4-pack),1,2.99,01/02/19 20:15,"718 Madison St, Portland, ME 04101" +146024,AAA Batteries (4-pack),1,2.99,01/04/19 20:49,"360 South St, New York City, NY 10001" +146025,AA Batteries (4-pack),2,3.84,01/15/19 18:41,"362 West St, Seattle, WA 98101" +146026,20in Monitor,1,109.99,01/28/19 15:45,"504 5th St, San Francisco, CA 94016" +146027,Lightning Charging Cable,2,14.95,01/22/19 18:14,"761 Spruce St, Dallas, TX 75001" +146028,27in FHD Monitor,1,149.99,01/30/19 16:37,"178 Pine St, Boston, MA 02215" +146029,Bose SoundSport Headphones,1,99.99,01/31/19 14:32,"639 Johnson St, San Francisco, CA 94016" +146030,ThinkPad Laptop,1,999.99,01/10/19 12:29,"424 Lincoln St, New York City, NY 10001" +146031,Apple Airpods Headphones,1,150,01/01/19 09:59,"65 10th St, Seattle, WA 98101" +146032,Lightning Charging Cable,1,14.95,01/23/19 16:10,"752 10th St, Seattle, WA 98101" +146033,USB-C Charging Cable,1,11.95,01/11/19 13:30,"644 West St, Boston, MA 02215" +146034,Lightning Charging Cable,1,14.95,01/01/19 21:03,"611 Wilson St, Seattle, WA 98101" +146035,Google Phone,1,600,01/06/19 16:03,"192 9th St, Atlanta, GA 30301" +146035,USB-C Charging Cable,1,11.95,01/06/19 16:03,"192 9th St, Atlanta, GA 30301" +146036,Apple Airpods Headphones,1,150,01/22/19 00:31,"391 Elm St, Dallas, TX 75001" +146037,27in 4K Gaming Monitor,1,389.99,01/21/19 19:02,"344 Ridge St, Seattle, WA 98101" +146038,iPhone,1,700,01/30/19 19:35,"236 Maple St, Dallas, TX 75001" +146039,Wired Headphones,1,11.99,01/24/19 16:42,"777 Spruce St, Los Angeles, CA 90001" +146040,Macbook Pro Laptop,1,1700,01/31/19 14:30,"612 River St, San Francisco, CA 94016" +146041,USB-C Charging Cable,1,11.95,01/01/19 17:38,"749 Center St, Boston, MA 02215" +146042,AAA Batteries (4-pack),2,2.99,01/04/19 23:50,"796 Jackson St, Austin, TX 73301" +146043,27in FHD Monitor,1,149.99,01/18/19 09:50,"686 Madison St, San Francisco, CA 94016" +146044,Flatscreen TV,1,300,01/19/19 11:51,"824 Maple St, Los Angeles, CA 90001" +146045,Wired Headphones,1,11.99,01/01/19 14:34,"488 Pine St, Portland, OR 97035" +146046,27in FHD Monitor,1,149.99,01/19/19 19:06,"863 South St, Austin, TX 73301" +146047,Lightning Charging Cable,1,14.95,01/15/19 11:30,"979 Elm St, San Francisco, CA 94016" +146048,AAA Batteries (4-pack),1,2.99,01/20/19 13:13,"191 Washington St, Dallas, TX 75001" +146049,Bose SoundSport Headphones,1,99.99,01/18/19 10:26,"77 Highland St, New York City, NY 10001" +146050,Google Phone,1,600,01/19/19 19:10,"495 Spruce St, New York City, NY 10001" +146051,Google Phone,1,600,01/15/19 17:37,"7 6th St, New York City, NY 10001" +146052,AAA Batteries (4-pack),1,2.99,01/01/19 21:35,"369 Cedar St, Boston, MA 02215" +146053,27in FHD Monitor,1,149.99,01/17/19 19:48,"776 7th St, Boston, MA 02215" +146054,Macbook Pro Laptop,1,1700,01/21/19 14:46,"295 Madison St, Austin, TX 73301" +146055,Bose SoundSport Headphones,1,99.99,01/13/19 13:58,"598 2nd St, Atlanta, GA 30301" +146056,AAA Batteries (4-pack),1,2.99,01/06/19 22:50,"618 Hill St, Dallas, TX 75001" +146057,Flatscreen TV,1,300,01/08/19 15:41,"887 Cherry St, San Francisco, CA 94016" +146058,27in 4K Gaming Monitor,1,389.99,01/12/19 22:40,"809 Cherry St, San Francisco, CA 94016" +146059,Apple Airpods Headphones,1,150,01/15/19 13:32,"887 Chestnut St, Boston, MA 02215" +146060,iPhone,1,700,01/23/19 11:23,"141 Madison St, Boston, MA 02215" +146061,Lightning Charging Cable,1,14.95,01/19/19 08:44,"523 Lincoln St, Austin, TX 73301" +146062,USB-C Charging Cable,1,11.95,01/16/19 16:48,"911 Center St, Los Angeles, CA 90001" +146063,USB-C Charging Cable,1,11.95,01/26/19 11:27,"975 Elm St, San Francisco, CA 94016" +146064,AAA Batteries (4-pack),1,2.99,01/10/19 11:35,"719 Center St, Dallas, TX 75001" +146065,34in Ultrawide Monitor,1,379.99,01/01/19 13:55,"963 Forest St, San Francisco, CA 94016" +146066,Lightning Charging Cable,1,14.95,01/15/19 11:33,"738 Johnson St, San Francisco, CA 94016" +146067,Google Phone,1,600,01/11/19 12:47,"204 Chestnut St, New York City, NY 10001" +146068,iPhone,1,700,01/05/19 19:13,"491 River St, New York City, NY 10001" +146069,27in FHD Monitor,1,149.99,01/28/19 12:43,"250 1st St, San Francisco, CA 94016" +146070,iPhone,1,700,01/07/19 10:16,"61 Church St, Dallas, TX 75001" +146071,AAA Batteries (4-pack),1,2.99,01/16/19 12:30,"568 Lake St, Dallas, TX 75001" +146072,Wired Headphones,1,11.99,01/03/19 10:37,"974 Pine St, New York City, NY 10001" +146073,AAA Batteries (4-pack),4,2.99,01/14/19 11:30,"516 River St, San Francisco, CA 94016" +146074,Bose SoundSport Headphones,1,99.99,01/18/19 12:39,"317 14th St, Los Angeles, CA 90001" +146075,34in Ultrawide Monitor,1,379.99,01/05/19 08:43,"943 Adams St, Atlanta, GA 30301" +146076,Lightning Charging Cable,1,14.95,01/27/19 13:41,"91 Johnson St, Austin, TX 73301" +146077,AA Batteries (4-pack),1,3.84,01/13/19 09:29,"625 South St, Atlanta, GA 30301" +146078,AA Batteries (4-pack),3,3.84,01/02/19 18:59,"934 Lakeview St, Seattle, WA 98101" +146079,USB-C Charging Cable,1,11.95,01/11/19 09:25,"118 Meadow St, New York City, NY 10001" +146080,AA Batteries (4-pack),1,3.84,01/21/19 21:41,"992 West St, Atlanta, GA 30301" +146081,20in Monitor,1,109.99,01/08/19 11:34,"582 Park St, New York City, NY 10001" +146082,34in Ultrawide Monitor,1,379.99,01/18/19 02:36,"623 Chestnut St, New York City, NY 10001" +146083,Bose SoundSport Headphones,1,99.99,01/28/19 13:31,"412 Madison St, San Francisco, CA 94016" +146084,Wired Headphones,1,11.99,01/02/19 11:21,"350 9th St, Dallas, TX 75001" +146085,USB-C Charging Cable,1,11.95,01/19/19 09:50,"902 1st St, San Francisco, CA 94016" +146086,Bose SoundSport Headphones,1,99.99,01/24/19 15:02,"686 Cedar St, Boston, MA 02215" +146087,20in Monitor,1,109.99,01/28/19 02:24,"90 Jackson St, Seattle, WA 98101" +146088,Lightning Charging Cable,1,14.95,01/08/19 21:07,"950 9th St, Dallas, TX 75001" +146089,Bose SoundSport Headphones,1,99.99,01/18/19 12:51,"696 Walnut St, San Francisco, CA 94016" +146090,Lightning Charging Cable,1,14.95,01/23/19 13:56,"931 Hickory St, Seattle, WA 98101" +146091,27in FHD Monitor,1,149.99,01/10/19 20:02,"128 Center St, Boston, MA 02215" +146092,AA Batteries (4-pack),1,3.84,01/10/19 12:47,"758 Sunset St, Atlanta, GA 30301" +146093,AA Batteries (4-pack),1,3.84,01/11/19 20:24,"583 River St, New York City, NY 10001" +146094,20in Monitor,1,109.99,01/22/19 12:43,"172 14th St, Los Angeles, CA 90001" +146095,Wired Headphones,1,11.99,01/15/19 01:57,"456 Main St, Dallas, TX 75001" +146096,Apple Airpods Headphones,1,150,01/06/19 18:18,"890 South St, New York City, NY 10001" +146097,Lightning Charging Cable,1,14.95,01/26/19 06:30,"262 Madison St, Boston, MA 02215" +146098,Apple Airpods Headphones,1,150,01/25/19 14:42,"773 Jackson St, New York City, NY 10001" +146099,AAA Batteries (4-pack),1,2.99,01/04/19 13:26,"802 Hickory St, New York City, NY 10001" +146100,AAA Batteries (4-pack),1,2.99,01/18/19 11:21,"639 Park St, San Francisco, CA 94016" +146101,Apple Airpods Headphones,1,150,01/24/19 19:40,"384 Sunset St, Dallas, TX 75001" +146102,Wired Headphones,1,11.99,01/07/19 15:38,"523 River St, Portland, OR 97035" +146103,34in Ultrawide Monitor,1,379.99,01/18/19 18:36,"459 2nd St, San Francisco, CA 94016" +146104,27in FHD Monitor,1,149.99,01/30/19 16:36,"342 Maple St, Portland, OR 97035" +146105,27in 4K Gaming Monitor,1,389.99,01/14/19 13:54,"201 River St, San Francisco, CA 94016" +146106,USB-C Charging Cable,1,11.95,01/04/19 11:09,"405 Elm St, Seattle, WA 98101" +146107,Wired Headphones,1,11.99,01/13/19 10:49,"629 Adams St, Portland, OR 97035" +146108,AAA Batteries (4-pack),2,2.99,01/03/19 11:52,"630 12th St, Dallas, TX 75001" +146109,Lightning Charging Cable,1,14.95,01/13/19 11:08,"619 5th St, Portland, OR 97035" +146110,Lightning Charging Cable,3,14.95,01/11/19 12:37,"50 Washington St, Dallas, TX 75001" +146111,AAA Batteries (4-pack),3,2.99,01/20/19 16:41,"492 6th St, San Francisco, CA 94016" +146111,Lightning Charging Cable,2,14.95,01/20/19 16:41,"492 6th St, San Francisco, CA 94016" +146112,Wired Headphones,2,11.99,01/08/19 12:11,"752 14th St, Los Angeles, CA 90001" +146113,Macbook Pro Laptop,1,1700,01/08/19 13:21,"487 South St, Dallas, TX 75001" +146114,Lightning Charging Cable,1,14.95,01/30/19 12:56,"108 Lake St, Portland, OR 97035" +146115,LG Dryer,1,600.0,01/26/19 14:57,"458 Highland St, San Francisco, CA 94016" +146116,Wired Headphones,1,11.99,01/10/19 13:50,"910 Walnut St, New York City, NY 10001" +146117,27in FHD Monitor,1,149.99,01/10/19 22:49,"741 Jefferson St, San Francisco, CA 94016" +146118,USB-C Charging Cable,1,11.95,01/13/19 21:52,"48 Center St, Boston, MA 02215" +146118,Wired Headphones,1,11.99,01/13/19 21:52,"48 Center St, Boston, MA 02215" +146119,Lightning Charging Cable,1,14.95,01/15/19 12:25,"843 Park St, Dallas, TX 75001" +146120,27in 4K Gaming Monitor,1,389.99,01/20/19 10:13,"390 Spruce St, Los Angeles, CA 90001" +146121,Wired Headphones,1,11.99,01/15/19 14:15,"710 Maple St, San Francisco, CA 94016" +146122,AA Batteries (4-pack),1,3.84,01/24/19 09:41,"222 Pine St, New York City, NY 10001" +146123,Apple Airpods Headphones,1,150,01/14/19 20:32,"704 13th St, Dallas, TX 75001" +146124,27in 4K Gaming Monitor,1,389.99,01/03/19 22:40,"296 7th St, Austin, TX 73301" +146125,Lightning Charging Cable,1,14.95,01/02/19 14:26,"366 Walnut St, Atlanta, GA 30301" +146126,USB-C Charging Cable,1,11.95,01/16/19 14:43,"446 4th St, Los Angeles, CA 90001" +146127,Apple Airpods Headphones,1,150,01/10/19 15:34,"340 North St, Boston, MA 02215" +146128,AAA Batteries (4-pack),1,2.99,01/11/19 22:13,"560 Walnut St, San Francisco, CA 94016" +146129,34in Ultrawide Monitor,1,379.99,01/22/19 17:59,"226 9th St, Austin, TX 73301" +146130,AAA Batteries (4-pack),1,2.99,01/08/19 17:01,"272 River St, Atlanta, GA 30301" +146131,AAA Batteries (4-pack),1,2.99,01/16/19 22:09,"947 Washington St, San Francisco, CA 94016" +146132,Google Phone,1,600,01/23/19 15:52,"64 Hickory St, Los Angeles, CA 90001" +146133,iPhone,1,700,01/02/19 10:35,"604 2nd St, New York City, NY 10001" +146134,20in Monitor,1,109.99,01/10/19 19:47,"716 1st St, Los Angeles, CA 90001" +146135,Lightning Charging Cable,1,14.95,01/22/19 22:33,"605 Madison St, New York City, NY 10001" +146136,ThinkPad Laptop,1,999.99,01/17/19 09:26,"342 Washington St, Austin, TX 73301" +146137,Flatscreen TV,1,300,01/05/19 18:45,"990 Forest St, Portland, OR 97035" +146138,AAA Batteries (4-pack),1,2.99,01/15/19 11:36,"442 4th St, Portland, OR 97035" +146139,Wired Headphones,1,11.99,01/04/19 16:51,"614 12th St, San Francisco, CA 94016" +146140,AA Batteries (4-pack),2,3.84,01/20/19 19:22,"918 Lake St, Atlanta, GA 30301" +146141,Lightning Charging Cable,1,14.95,01/24/19 19:34,"929 Park St, Atlanta, GA 30301" +146142,Macbook Pro Laptop,1,1700,01/10/19 17:11,"444 Highland St, Dallas, TX 75001" +146143,AAA Batteries (4-pack),1,2.99,01/14/19 11:30,"502 Washington St, San Francisco, CA 94016" +146144,27in 4K Gaming Monitor,1,389.99,01/21/19 17:17,"581 Meadow St, Atlanta, GA 30301" +146145,Lightning Charging Cable,1,14.95,01/01/19 15:09,"937 Cedar St, Portland, ME 04101" +146146,ThinkPad Laptop,1,999.99,01/19/19 11:37,"448 6th St, San Francisco, CA 94016" +146147,USB-C Charging Cable,1,11.95,01/04/19 21:13,"492 Elm St, Los Angeles, CA 90001" +146148,20in Monitor,1,109.99,01/04/19 14:00,"62 Highland St, Atlanta, GA 30301" +146149,Macbook Pro Laptop,1,1700,01/07/19 11:11,"776 Pine St, San Francisco, CA 94016" +146150,Bose SoundSport Headphones,1,99.99,01/13/19 18:41,"300 West St, Los Angeles, CA 90001" +146151,Bose SoundSport Headphones,1,99.99,01/15/19 20:13,"832 Dogwood St, Boston, MA 02215" +146152,AAA Batteries (4-pack),1,2.99,01/11/19 22:00,"122 South St, New York City, NY 10001" +146153,20in Monitor,1,109.99,01/20/19 12:33,"478 Church St, Portland, ME 04101" +146154,Flatscreen TV,1,300,01/19/19 19:04,"961 West St, Dallas, TX 75001" +146155,AAA Batteries (4-pack),1,2.99,01/11/19 13:22,"472 Madison St, San Francisco, CA 94016" +146156,27in FHD Monitor,1,149.99,01/16/19 19:36,"751 Main St, New York City, NY 10001" +146157,Wired Headphones,1,11.99,01/07/19 09:57,"821 Adams St, Atlanta, GA 30301" +146158,Wired Headphones,1,11.99,01/23/19 09:19,"862 Johnson St, Los Angeles, CA 90001" +146159,AA Batteries (4-pack),1,3.84,01/28/19 22:35,"898 Main St, San Francisco, CA 94016" +146160,Macbook Pro Laptop,1,1700,01/21/19 00:53,"967 6th St, Seattle, WA 98101" +146161,Macbook Pro Laptop,1,1700,01/26/19 10:23,"780 4th St, Atlanta, GA 30301" +146162,AAA Batteries (4-pack),1,2.99,01/24/19 21:00,"709 Hickory St, New York City, NY 10001" +146163,USB-C Charging Cable,1,11.95,01/01/19 11:53,"705 Madison St, Dallas, TX 75001" +146164,USB-C Charging Cable,1,11.95,01/01/19 11:25,"235 8th St, Boston, MA 02215" +146165,Google Phone,1,600,01/08/19 19:13,"730 Wilson St, San Francisco, CA 94016" +146166,AAA Batteries (4-pack),2,2.99,01/17/19 08:43,"475 Elm St, Austin, TX 73301" +146167,Apple Airpods Headphones,1,150,01/18/19 09:23,"548 Lincoln St, San Francisco, CA 94016" +146168,34in Ultrawide Monitor,1,379.99,01/07/19 07:49,"773 Walnut St, Seattle, WA 98101" +146169,AAA Batteries (4-pack),1,2.99,01/24/19 14:45,"9 5th St, San Francisco, CA 94016" +146170,Wired Headphones,1,11.99,01/22/19 22:10,"159 Madison St, Seattle, WA 98101" +146171,AA Batteries (4-pack),1,3.84,01/20/19 23:56,"663 12th St, San Francisco, CA 94016" +146172,Vareebadd Phone,1,400,01/17/19 09:22,"168 Chestnut St, Seattle, WA 98101" +146173,iPhone,1,700,01/22/19 19:26,"552 Dogwood St, Boston, MA 02215" +146174,Apple Airpods Headphones,1,150,01/03/19 07:18,"558 River St, Dallas, TX 75001" +146175,USB-C Charging Cable,1,11.95,01/06/19 15:29,"492 13th St, Boston, MA 02215" +146176,Lightning Charging Cable,1,14.95,01/30/19 19:00,"272 Meadow St, Atlanta, GA 30301" +146177,27in 4K Gaming Monitor,1,389.99,01/30/19 09:04,"701 Adams St, Los Angeles, CA 90001" +146178,Lightning Charging Cable,2,14.95,01/29/19 00:23,"605 River St, San Francisco, CA 94016" +146179,Apple Airpods Headphones,1,150,01/02/19 01:21,"996 Wilson St, Atlanta, GA 30301" +146180,AAA Batteries (4-pack),1,2.99,01/26/19 10:34,"643 Lake St, Boston, MA 02215" +146181,Bose SoundSport Headphones,1,99.99,01/22/19 20:19,"640 Forest St, Seattle, WA 98101" +146182,Apple Airpods Headphones,1,150,01/31/19 16:12,"8 7th St, New York City, NY 10001" +146183,Macbook Pro Laptop,1,1700,01/08/19 01:43,"147 West St, Portland, ME 04101" +146184,Macbook Pro Laptop,1,1700,01/12/19 10:09,"963 Lincoln St, San Francisco, CA 94016" +146185,Wired Headphones,1,11.99,01/23/19 08:43,"47 River St, San Francisco, CA 94016" +146186,Bose SoundSport Headphones,1,99.99,01/22/19 21:46,"279 Wilson St, Atlanta, GA 30301" +146187,Apple Airpods Headphones,1,150,01/29/19 08:45,"259 Spruce St, New York City, NY 10001" +146188,Wired Headphones,1,11.99,01/15/19 15:05,"285 Main St, Seattle, WA 98101" +146189,USB-C Charging Cable,1,11.95,01/30/19 21:26,"880 Ridge St, Boston, MA 02215" +146190,AA Batteries (4-pack),2,3.84,01/09/19 20:50,"994 Johnson St, Los Angeles, CA 90001" +146191,Lightning Charging Cable,1,14.95,01/15/19 12:18,"895 6th St, San Francisco, CA 94016" +146192,Bose SoundSport Headphones,1,99.99,01/05/19 17:54,"191 Jackson St, Atlanta, GA 30301" +146193,AA Batteries (4-pack),1,3.84,01/16/19 19:42,"148 Adams St, San Francisco, CA 94016" +146194,AA Batteries (4-pack),1,3.84,01/05/19 11:10,"999 Lakeview St, San Francisco, CA 94016" +146195,Apple Airpods Headphones,1,150,01/15/19 19:24,"580 Chestnut St, Austin, TX 73301" +146196,AAA Batteries (4-pack),1,2.99,01/22/19 21:28,"961 Willow St, Atlanta, GA 30301" +146197,Bose SoundSport Headphones,1,99.99,01/16/19 17:45,"731 Cherry St, Los Angeles, CA 90001" +146198,AAA Batteries (4-pack),1,2.99,01/08/19 05:35,"629 11th St, Seattle, WA 98101" +146198,AA Batteries (4-pack),3,3.84,01/08/19 05:35,"629 11th St, Seattle, WA 98101" +146199,Apple Airpods Headphones,1,150,01/12/19 14:08,"434 2nd St, Portland, OR 97035" +146200,Apple Airpods Headphones,1,150,01/04/19 12:59,"960 Chestnut St, Portland, OR 97035" +146201,20in Monitor,1,109.99,01/03/19 11:50,"543 Cherry St, Atlanta, GA 30301" +146202,Lightning Charging Cable,1,14.95,01/26/19 23:43,"295 8th St, New York City, NY 10001" +146203,Lightning Charging Cable,1,14.95,01/16/19 21:42,"261 5th St, Portland, ME 04101" +146204,Apple Airpods Headphones,1,150,01/13/19 22:30,"458 Church St, New York City, NY 10001" +146205,27in FHD Monitor,1,149.99,01/28/19 11:01,"278 7th St, Dallas, TX 75001" +146206,Flatscreen TV,1,300,01/27/19 18:01,"855 11th St, Boston, MA 02215" +146207,Bose SoundSport Headphones,1,99.99,01/11/19 14:25,"358 12th St, Atlanta, GA 30301" +146208,Lightning Charging Cable,1,14.95,01/31/19 16:04,"108 6th St, San Francisco, CA 94016" +146209,AA Batteries (4-pack),2,3.84,01/29/19 21:23,"745 Adams St, Boston, MA 02215" +146210,USB-C Charging Cable,1,11.95,01/26/19 18:59,"530 River St, San Francisco, CA 94016" +146211,AAA Batteries (4-pack),1,2.99,01/25/19 00:42,"924 West St, Seattle, WA 98101" +146212,ThinkPad Laptop,1,999.99,01/12/19 19:20,"731 Adams St, Seattle, WA 98101" +146213,27in FHD Monitor,1,149.99,01/12/19 17:12,"276 Elm St, New York City, NY 10001" +146214,AAA Batteries (4-pack),1,2.99,01/18/19 12:54,"86 2nd St, Seattle, WA 98101" +146215,Bose SoundSport Headphones,1,99.99,01/28/19 13:51,"396 North St, Austin, TX 73301" +146216,Vareebadd Phone,1,400,01/07/19 17:10,"486 Adams St, Boston, MA 02215" +146217,Apple Airpods Headphones,1,150,01/07/19 17:50,"235 1st St, San Francisco, CA 94016" +146218,AA Batteries (4-pack),1,3.84,01/02/19 14:23,"456 Meadow St, Seattle, WA 98101" +146219,AA Batteries (4-pack),1,3.84,01/29/19 21:01,"922 Wilson St, Los Angeles, CA 90001" +146220,Wired Headphones,1,11.99,01/18/19 13:48,"479 Willow St, New York City, NY 10001" +146221,Lightning Charging Cable,1,14.95,01/25/19 09:59,"937 Forest St, San Francisco, CA 94016" +146222,Apple Airpods Headphones,1,150,01/18/19 22:16,"105 Chestnut St, Seattle, WA 98101" +146223,Lightning Charging Cable,1,14.95,01/24/19 20:35,"912 10th St, San Francisco, CA 94016" +146224,AA Batteries (4-pack),2,3.84,01/22/19 11:36,"738 Willow St, Seattle, WA 98101" +146225,AA Batteries (4-pack),1,3.84,01/01/19 15:33,"607 Ridge St, Atlanta, GA 30301" +146226,Macbook Pro Laptop,1,1700,01/27/19 06:40,"82 Walnut St, New York City, NY 10001" +146227,Apple Airpods Headphones,1,150,01/13/19 22:59,"82 Chestnut St, Los Angeles, CA 90001" +146228,Bose SoundSport Headphones,1,99.99,01/13/19 18:00,"575 Meadow St, San Francisco, CA 94016" +146229,AA Batteries (4-pack),1,3.84,01/21/19 08:02,"306 11th St, Dallas, TX 75001" +146230,iPhone,1,700,01/19/19 10:22,"637 Center St, San Francisco, CA 94016" +146230,Wired Headphones,1,11.99,01/19/19 10:22,"637 Center St, San Francisco, CA 94016" +146231,AA Batteries (4-pack),2,3.84,01/13/19 04:23,"71 Park St, Austin, TX 73301" +146232,27in FHD Monitor,1,149.99,01/29/19 13:03,"653 River St, San Francisco, CA 94016" +146233,ThinkPad Laptop,1,999.99,01/05/19 20:45,"556 Center St, New York City, NY 10001" +146234,LG Washing Machine,1,600.0,01/31/19 14:37,"841 Spruce St, San Francisco, CA 94016" +146235,Wired Headphones,1,11.99,01/06/19 23:46,"611 Lakeview St, Dallas, TX 75001" +146236,USB-C Charging Cable,1,11.95,01/24/19 18:06,"290 Park St, Boston, MA 02215" +146237,Wired Headphones,1,11.99,01/22/19 02:31,"109 Washington St, Dallas, TX 75001" +146238,27in 4K Gaming Monitor,1,389.99,01/01/19 21:11,"364 Park St, San Francisco, CA 94016" +146239,USB-C Charging Cable,1,11.95,01/25/19 15:54,"340 14th St, Los Angeles, CA 90001" +146240,AA Batteries (4-pack),4,3.84,01/15/19 14:29,"526 Walnut St, Portland, OR 97035" +146241,LG Dryer,1,600.0,01/16/19 11:38,"927 Elm St, San Francisco, CA 94016" +146242,AAA Batteries (4-pack),2,2.99,01/27/19 23:08,"593 5th St, San Francisco, CA 94016" +146243,Wired Headphones,1,11.99,01/02/19 19:46,"210 12th St, San Francisco, CA 94016" +146244,USB-C Charging Cable,1,11.95,01/12/19 08:52,"924 Church St, Austin, TX 73301" +146245,iPhone,1,700,01/19/19 22:26,"112 Lakeview St, Portland, OR 97035" +146246,Google Phone,1,600,01/18/19 15:20,"719 Washington St, San Francisco, CA 94016" +146246,Wired Headphones,1,11.99,01/18/19 15:20,"719 Washington St, San Francisco, CA 94016" +146247,Google Phone,1,600,01/05/19 19:17,"573 12th St, Seattle, WA 98101" +146248,Wired Headphones,1,11.99,01/29/19 19:51,"923 Meadow St, San Francisco, CA 94016" +146249,iPhone,1,700,01/02/19 21:00,"707 Madison St, San Francisco, CA 94016" +146250,Apple Airpods Headphones,1,150,01/15/19 17:11,"950 Lakeview St, Atlanta, GA 30301" +146251,USB-C Charging Cable,1,11.95,01/09/19 14:58,"497 2nd St, Atlanta, GA 30301" +146252,AAA Batteries (4-pack),2,2.99,01/04/19 08:14,"645 South St, New York City, NY 10001" +146253,Flatscreen TV,1,300,01/18/19 13:54,"587 Park St, Dallas, TX 75001" +146253,AAA Batteries (4-pack),1,2.99,01/18/19 13:54,"587 Park St, Dallas, TX 75001" +146254,Vareebadd Phone,1,400,01/25/19 00:09,"161 Pine St, New York City, NY 10001" +146255,AA Batteries (4-pack),2,3.84,01/30/19 12:58,"313 12th St, San Francisco, CA 94016" +146256,27in 4K Gaming Monitor,1,389.99,01/17/19 12:46,"535 Pine St, New York City, NY 10001" +146257,27in FHD Monitor,1,149.99,01/31/19 08:52,"503 Jackson St, Los Angeles, CA 90001" +146258,Lightning Charging Cable,1,14.95,01/14/19 10:15,"293 1st St, New York City, NY 10001" +146259,AA Batteries (4-pack),1,3.84,01/08/19 17:38,"5 Hill St, Atlanta, GA 30301" +146260,Google Phone,1,600,01/05/19 00:26,"491 Forest St, San Francisco, CA 94016" +146260,USB-C Charging Cable,2,11.95,01/05/19 00:26,"491 Forest St, San Francisco, CA 94016" +146260,Wired Headphones,1,11.99,01/05/19 00:26,"491 Forest St, San Francisco, CA 94016" +146261,AA Batteries (4-pack),1,3.84,01/27/19 18:17,"96 Pine St, Portland, OR 97035" +146262,Apple Airpods Headphones,1,150,01/16/19 22:04,"366 Maple St, Portland, OR 97035" +146263,Wired Headphones,1,11.99,01/03/19 20:06,"54 1st St, Atlanta, GA 30301" +146264,Apple Airpods Headphones,1,150,01/04/19 22:51,"224 Highland St, San Francisco, CA 94016" +146265,Bose SoundSport Headphones,1,99.99,01/27/19 14:30,"170 Cedar St, Los Angeles, CA 90001" +146266,27in 4K Gaming Monitor,1,389.99,01/14/19 21:50,"421 Center St, Austin, TX 73301" +146267,Wired Headphones,1,11.99,01/14/19 08:49,"743 Ridge St, Seattle, WA 98101" +146268,USB-C Charging Cable,1,11.95,01/11/19 17:14,"746 Pine St, New York City, NY 10001" +146269,27in FHD Monitor,1,149.99,01/06/19 13:03,"887 River St, Atlanta, GA 30301" +146270,Flatscreen TV,1,300,01/25/19 19:37,"653 Hill St, Seattle, WA 98101" +146271,AA Batteries (4-pack),1,3.84,01/01/19 10:55,"809 Jefferson St, Dallas, TX 75001" +146272,AA Batteries (4-pack),1,3.84,01/08/19 21:02,"818 Hickory St, Los Angeles, CA 90001" +146273,34in Ultrawide Monitor,1,379.99,01/12/19 17:46,"999 Church St, Austin, TX 73301" +146274,AAA Batteries (4-pack),1,2.99,01/09/19 18:38,"974 North St, Portland, ME 04101" +146275,AA Batteries (4-pack),1,3.84,01/10/19 21:40,"368 Cherry St, San Francisco, CA 94016" +146276,AA Batteries (4-pack),1,3.84,01/05/19 11:35,"333 Ridge St, Austin, TX 73301" +146277,AAA Batteries (4-pack),1,2.99,01/27/19 11:35,"458 11th St, San Francisco, CA 94016" +146278,Lightning Charging Cable,1,14.95,01/10/19 21:11,"53 River St, New York City, NY 10001" +146279,LG Dryer,1,600.0,01/08/19 16:55,"151 Adams St, San Francisco, CA 94016" +146280,Macbook Pro Laptop,1,1700,01/03/19 20:35,"995 Chestnut St, Los Angeles, CA 90001" +146281,AAA Batteries (4-pack),1,2.99,01/22/19 19:45,"832 2nd St, Portland, ME 04101" +146282,Apple Airpods Headphones,1,150,01/16/19 10:36,"624 Lincoln St, Los Angeles, CA 90001" +146283,Google Phone,1,600,01/15/19 22:24,"443 13th St, Los Angeles, CA 90001" +146283,USB-C Charging Cable,1,11.95,01/15/19 22:24,"443 13th St, Los Angeles, CA 90001" +146284,Wired Headphones,1,11.99,01/22/19 12:56,"670 North St, Dallas, TX 75001" +146285,iPhone,1,700,01/30/19 18:02,"510 Hill St, San Francisco, CA 94016" +146285,Lightning Charging Cable,1,14.95,01/30/19 18:02,"510 Hill St, San Francisco, CA 94016" +146286,Macbook Pro Laptop,1,1700,01/03/19 12:27,"803 Cedar St, Los Angeles, CA 90001" +146287,Macbook Pro Laptop,1,1700,01/18/19 15:52,"329 Center St, San Francisco, CA 94016" +146288,AA Batteries (4-pack),1,3.84,01/19/19 08:47,"723 North St, San Francisco, CA 94016" +146289,iPhone,1,700,01/29/19 22:48,"217 Lake St, Dallas, TX 75001" +146290,Wired Headphones,1,11.99,01/30/19 11:23,"454 Elm St, Boston, MA 02215" +146291,Apple Airpods Headphones,1,150,01/09/19 15:02,"987 West St, Portland, OR 97035" +146292,AA Batteries (4-pack),2,3.84,01/11/19 21:18,"554 7th St, Dallas, TX 75001" +146293,Bose SoundSport Headphones,1,99.99,01/13/19 05:30,"415 Walnut St, New York City, NY 10001" +146294,Bose SoundSport Headphones,1,99.99,01/27/19 19:11,"523 12th St, Los Angeles, CA 90001" +146295,AAA Batteries (4-pack),1,2.99,01/01/19 17:01,"626 Cherry St, Portland, OR 97035" +146296,Vareebadd Phone,1,400,01/04/19 22:36,"122 Chestnut St, Austin, TX 73301" +146297,Bose SoundSport Headphones,1,99.99,01/20/19 20:45,"907 Willow St, Austin, TX 73301" +146298,USB-C Charging Cable,1,11.95,01/11/19 09:35,"167 Center St, Atlanta, GA 30301" +146298,AA Batteries (4-pack),1,3.84,01/11/19 09:35,"167 Center St, Atlanta, GA 30301" +146299,Apple Airpods Headphones,1,150,01/31/19 22:36,"740 Main St, San Francisco, CA 94016" +146300,Google Phone,1,600,01/29/19 18:32,"659 Walnut St, Portland, OR 97035" +146300,USB-C Charging Cable,1,11.95,01/29/19 18:32,"659 Walnut St, Portland, OR 97035" +146300,Wired Headphones,1,11.99,01/29/19 18:32,"659 Walnut St, Portland, OR 97035" +146301,AAA Batteries (4-pack),1,2.99,01/09/19 11:27,"312 12th St, Los Angeles, CA 90001" +146302,USB-C Charging Cable,1,11.95,01/12/19 18:22,"442 4th St, Seattle, WA 98101" +146303,Lightning Charging Cable,1,14.95,01/21/19 18:23,"182 Elm St, Los Angeles, CA 90001" +146304,Wired Headphones,1,11.99,01/20/19 20:54,"42 10th St, Boston, MA 02215" +146305,Wired Headphones,1,11.99,01/31/19 17:24,"762 Chestnut St, New York City, NY 10001" +146306,Google Phone,1,600,01/04/19 15:14,"332 9th St, Austin, TX 73301" +146307,USB-C Charging Cable,1,11.95,01/03/19 16:07,"362 6th St, Boston, MA 02215" +146308,AA Batteries (4-pack),1,3.84,01/13/19 14:37,"600 Lake St, San Francisco, CA 94016" +146309,Google Phone,1,600,01/01/19 07:54,"222 Center St, San Francisco, CA 94016" +146309,Wired Headphones,1,11.99,01/01/19 07:54,"222 Center St, San Francisco, CA 94016" +146310,AAA Batteries (4-pack),1,2.99,01/07/19 01:00,"974 Lakeview St, San Francisco, CA 94016" +146311,27in 4K Gaming Monitor,1,389.99,01/03/19 14:25,"885 Cedar St, Los Angeles, CA 90001" +146312,Wired Headphones,1,11.99,01/06/19 10:07,"43 Adams St, San Francisco, CA 94016" +146313,Lightning Charging Cable,1,14.95,01/19/19 19:51,"826 South St, Los Angeles, CA 90001" +146314,AAA Batteries (4-pack),1,2.99,01/27/19 19:02,"985 Cedar St, Portland, OR 97035" +146315,USB-C Charging Cable,1,11.95,01/10/19 01:15,"448 Spruce St, Atlanta, GA 30301" +146316,USB-C Charging Cable,1,11.95,01/10/19 18:56,"100 Park St, San Francisco, CA 94016" +146317,AAA Batteries (4-pack),3,2.99,01/18/19 09:13,"849 8th St, New York City, NY 10001" +146318,AA Batteries (4-pack),4,3.84,01/09/19 14:56,"392 Elm St, Portland, ME 04101" +146319,Google Phone,1,600,01/16/19 08:16,"315 Dogwood St, San Francisco, CA 94016" +146320,AA Batteries (4-pack),2,3.84,01/10/19 13:11,"382 8th St, San Francisco, CA 94016" +146321,27in FHD Monitor,1,149.99,01/30/19 11:36,"318 River St, Boston, MA 02215" +146322,Wired Headphones,2,11.99,01/25/19 19:04,"445 Meadow St, San Francisco, CA 94016" +146323,AA Batteries (4-pack),6,3.84,01/29/19 17:32,"427 Cedar St, Boston, MA 02215" +146324,Bose SoundSport Headphones,1,99.99,01/25/19 10:35,"317 Center St, New York City, NY 10001" +146325,ThinkPad Laptop,1,999.99,01/07/19 23:13,"376 South St, Boston, MA 02215" +146326,27in FHD Monitor,1,149.99,01/15/19 20:21,"21 Dogwood St, Los Angeles, CA 90001" +146327,Flatscreen TV,1,300,01/27/19 13:55,"249 Main St, New York City, NY 10001" +146328,Macbook Pro Laptop,1,1700,01/25/19 15:37,"190 Washington St, San Francisco, CA 94016" +146329,AAA Batteries (4-pack),2,2.99,01/27/19 08:40,"4 Sunset St, Boston, MA 02215" +146330,Google Phone,1,600,01/01/19 16:36,"825 4th St, Austin, TX 73301" +146330,Bose SoundSport Headphones,1,99.99,01/01/19 16:36,"825 4th St, Austin, TX 73301" +146331,Lightning Charging Cable,1,14.95,01/24/19 03:31,"655 14th St, Los Angeles, CA 90001" +146332,Apple Airpods Headphones,1,150,01/03/19 17:14,"168 5th St, Los Angeles, CA 90001" +146333,USB-C Charging Cable,1,11.95,01/26/19 17:17,"931 Park St, San Francisco, CA 94016" +146334,Wired Headphones,1,11.99,01/31/19 10:41,"688 Walnut St, San Francisco, CA 94016" +146335,34in Ultrawide Monitor,1,379.99,01/17/19 11:49,"575 Wilson St, San Francisco, CA 94016" +146336,iPhone,1,700,01/06/19 18:21,"13 Pine St, Seattle, WA 98101" +146337,AAA Batteries (4-pack),2,2.99,01/29/19 09:49,"47 Sunset St, Seattle, WA 98101" +146338,27in FHD Monitor,1,149.99,01/11/19 13:55,"607 Church St, New York City, NY 10001" +146339,Wired Headphones,1,11.99,01/20/19 15:49,"463 Forest St, Portland, OR 97035" +146340,34in Ultrawide Monitor,1,379.99,01/24/19 09:17,"601 Johnson St, San Francisco, CA 94016" +146341,Flatscreen TV,1,300,01/07/19 00:11,"846 Jefferson St, Atlanta, GA 30301" +146342,iPhone,1,700,01/23/19 10:26,"12 Jefferson St, New York City, NY 10001" +146342,Wired Headphones,1,11.99,01/23/19 10:26,"12 Jefferson St, New York City, NY 10001" +146343,AA Batteries (4-pack),2,3.84,01/19/19 20:01,"499 6th St, New York City, NY 10001" +146343,AAA Batteries (4-pack),1,2.99,01/19/19 20:01,"499 6th St, New York City, NY 10001" +146344,Bose SoundSport Headphones,1,99.99,01/04/19 10:39,"889 6th St, Boston, MA 02215" +146345,Bose SoundSport Headphones,1,99.99,01/04/19 19:14,"384 1st St, San Francisco, CA 94016" +146346,27in FHD Monitor,1,149.99,01/05/19 18:13,"80 Sunset St, Seattle, WA 98101" +146347,Lightning Charging Cable,1,14.95,01/13/19 18:54,"358 6th St, Austin, TX 73301" +146348,Wired Headphones,1,11.99,01/12/19 16:14,"613 Walnut St, Los Angeles, CA 90001" +146348,iPhone,1,700,01/12/19 16:14,"613 Walnut St, Los Angeles, CA 90001" +146349,Lightning Charging Cable,1,14.95,01/25/19 21:25,"631 13th St, San Francisco, CA 94016" +146350,Google Phone,1,600,01/31/19 17:50,"313 North St, Los Angeles, CA 90001" +146351,USB-C Charging Cable,1,11.95,01/17/19 08:22,"477 6th St, Los Angeles, CA 90001" +146352,AA Batteries (4-pack),1,3.84,01/21/19 11:33,"56 Cedar St, Los Angeles, CA 90001" +146353,27in 4K Gaming Monitor,1,389.99,01/03/19 00:08,"423 Johnson St, San Francisco, CA 94016" +146354,Lightning Charging Cable,1,14.95,01/30/19 06:13,"37 Cherry St, Los Angeles, CA 90001" +146355,USB-C Charging Cable,1,11.95,01/20/19 00:13,"924 Hill St, New York City, NY 10001" +146356,Macbook Pro Laptop,1,1700,01/08/19 23:03,"908 Willow St, Austin, TX 73301" +146357,Lightning Charging Cable,1,14.95,01/18/19 17:24,"845 Chestnut St, New York City, NY 10001" +146358,20in Monitor,1,109.99,01/08/19 00:56,"400 Ridge St, New York City, NY 10001" +146359,AA Batteries (4-pack),1,3.84,01/25/19 09:31,"744 Forest St, Boston, MA 02215" +146360,USB-C Charging Cable,1,11.95,01/15/19 22:01,"877 Pine St, New York City, NY 10001" +146361,Google Phone,1,600,01/05/19 10:10,"88 9th St, San Francisco, CA 94016" +146362,27in FHD Monitor,1,149.99,01/26/19 18:55,"829 Hill St, Dallas, TX 75001" +146363,Wired Headphones,1,11.99,01/16/19 18:17,"989 Adams St, Los Angeles, CA 90001" +146364,AA Batteries (4-pack),2,3.84,01/31/19 16:25,"813 7th St, Boston, MA 02215" +146365,iPhone,1,700,01/05/19 12:21,"549 5th St, San Francisco, CA 94016" +146366,Bose SoundSport Headphones,1,99.99,01/31/19 14:53,"575 Hickory St, New York City, NY 10001" +146367,AA Batteries (4-pack),1,3.84,01/19/19 13:15,"740 Lakeview St, Boston, MA 02215" +146368,AAA Batteries (4-pack),1,2.99,01/12/19 15:52,"43 Jackson St, Austin, TX 73301" +146369,Lightning Charging Cable,1,14.95,01/11/19 06:30,"239 7th St, Los Angeles, CA 90001" +146370,iPhone,1,700,01/18/19 08:36,"198 Lake St, Seattle, WA 98101" +146371,Apple Airpods Headphones,1,150,01/27/19 18:28,"812 8th St, New York City, NY 10001" +146372,AA Batteries (4-pack),2,3.84,01/23/19 15:58,"888 Ridge St, Portland, OR 97035" +146373,27in 4K Gaming Monitor,1,389.99,01/19/19 17:56,"900 Church St, San Francisco, CA 94016" +146374,27in 4K Gaming Monitor,1,389.99,01/07/19 08:28,"779 Meadow St, Dallas, TX 75001" +146375,Apple Airpods Headphones,1,150,01/01/19 12:27,"788 Forest St, New York City, NY 10001" +146376,USB-C Charging Cable,1,11.95,01/06/19 10:24,"794 North St, Los Angeles, CA 90001" +146377,20in Monitor,1,109.99,01/05/19 16:41,"209 Willow St, New York City, NY 10001" +146378,Lightning Charging Cable,1,14.95,01/10/19 05:45,"554 2nd St, Portland, ME 04101" +146379,27in FHD Monitor,1,149.99,01/30/19 09:39,"915 Hill St, Atlanta, GA 30301" +146380,Apple Airpods Headphones,1,150,01/11/19 12:35,"311 Maple St, San Francisco, CA 94016" +146381,Lightning Charging Cable,1,14.95,01/04/19 12:30,"413 9th St, Portland, OR 97035" +146382,Lightning Charging Cable,1,14.95,01/25/19 21:25,"587 2nd St, Boston, MA 02215" +146383,AAA Batteries (4-pack),2,2.99,01/04/19 12:22,"504 Pine St, Seattle, WA 98101" +146384,Google Phone,1,600,01/08/19 22:37,"519 Adams St, San Francisco, CA 94016" +146385,USB-C Charging Cable,1,11.95,01/21/19 23:35,"979 Lake St, Boston, MA 02215" +146386,Apple Airpods Headphones,1,150,01/06/19 10:43,"919 Willow St, Los Angeles, CA 90001" +146387,Lightning Charging Cable,1,14.95,01/31/19 09:02,"78 Ridge St, New York City, NY 10001" +146388,Bose SoundSport Headphones,1,99.99,01/21/19 12:17,"103 2nd St, Seattle, WA 98101" +146389,Lightning Charging Cable,1,14.95,01/11/19 12:01,"469 12th St, Los Angeles, CA 90001" +146390,20in Monitor,1,109.99,01/06/19 22:42,"986 13th St, San Francisco, CA 94016" +146391,Macbook Pro Laptop,1,1700,01/15/19 20:00,"473 Dogwood St, Boston, MA 02215" +146392,AAA Batteries (4-pack),2,2.99,01/09/19 19:13,"465 Madison St, Los Angeles, CA 90001" +146393,Lightning Charging Cable,1,14.95,01/08/19 17:27,"499 6th St, Atlanta, GA 30301" +146394,AA Batteries (4-pack),1,3.84,01/09/19 09:04,"986 Lincoln St, Atlanta, GA 30301" +146395,LG Dryer,1,600.0,01/13/19 00:03,"682 Madison St, San Francisco, CA 94016" +146396,34in Ultrawide Monitor,1,379.99,01/28/19 03:13,"194 9th St, Austin, TX 73301" +146397,Macbook Pro Laptop,1,1700,01/04/19 19:54,"382 West St, Los Angeles, CA 90001" +146398,AAA Batteries (4-pack),1,2.99,01/24/19 12:08,"903 Spruce St, Los Angeles, CA 90001" +146399,Lightning Charging Cable,1,14.95,01/22/19 11:12,"914 Lakeview St, Seattle, WA 98101" +146400,Vareebadd Phone,1,400,01/01/19 20:35,"80 Hill St, Portland, ME 04101" +146401,ThinkPad Laptop,1,999.99,01/15/19 20:19,"129 5th St, San Francisco, CA 94016" +146402,27in 4K Gaming Monitor,1,389.99,01/04/19 10:15,"870 4th St, San Francisco, CA 94016" +146403,AA Batteries (4-pack),1,3.84,01/03/19 21:32,"44 Lake St, Austin, TX 73301" +146404,AA Batteries (4-pack),1,3.84,01/05/19 21:02,"940 7th St, Los Angeles, CA 90001" +146405,Wired Headphones,1,11.99,01/26/19 16:40,"493 4th St, Seattle, WA 98101" +146406,Wired Headphones,1,11.99,01/28/19 05:59,"117 Cherry St, Los Angeles, CA 90001" +146407,Apple Airpods Headphones,1,150,01/31/19 19:42,"186 2nd St, Los Angeles, CA 90001" +146408,LG Dryer,1,600.0,01/30/19 08:47,"753 North St, Dallas, TX 75001" +146409,USB-C Charging Cable,1,11.95,01/11/19 15:33,"720 Pine St, Dallas, TX 75001" +146410,USB-C Charging Cable,1,11.95,01/11/19 15:15,"865 13th St, San Francisco, CA 94016" +146411,Bose SoundSport Headphones,1,99.99,01/20/19 13:14,"619 Church St, New York City, NY 10001" +146412,USB-C Charging Cable,1,11.95,01/28/19 16:01,"860 Meadow St, Dallas, TX 75001" +146413,AA Batteries (4-pack),1,3.84,01/06/19 18:57,"881 West St, Los Angeles, CA 90001" +146414,27in 4K Gaming Monitor,1,389.99,01/25/19 18:19,"554 6th St, New York City, NY 10001" +146415,27in 4K Gaming Monitor,1,389.99,01/28/19 14:04,"761 Pine St, Los Angeles, CA 90001" +146416,20in Monitor,1,109.99,01/03/19 10:54,"301 10th St, Los Angeles, CA 90001" +146417,LG Washing Machine,1,600.0,01/08/19 12:32,"915 Lakeview St, San Francisco, CA 94016" +146418,Lightning Charging Cable,1,14.95,01/03/19 22:52,"607 Walnut St, Dallas, TX 75001" +146419,Apple Airpods Headphones,1,150,01/19/19 10:35,"908 Dogwood St, San Francisco, CA 94016" +146420,Wired Headphones,1,11.99,01/09/19 15:10,"74 Hill St, Austin, TX 73301" +146421,AA Batteries (4-pack),1,3.84,01/08/19 19:09,"400 North St, New York City, NY 10001" +146422,20in Monitor,1,109.99,01/12/19 15:10,"575 2nd St, Portland, OR 97035" +146423,27in FHD Monitor,1,149.99,01/18/19 18:10,"403 Wilson St, New York City, NY 10001" +146424,Bose SoundSport Headphones,1,99.99,02/01/19 00:54,"76 Willow St, Austin, TX 73301" +146425,Wired Headphones,1,11.99,01/18/19 02:04,"886 Center St, Seattle, WA 98101" +146426,AA Batteries (4-pack),1,3.84,01/28/19 17:07,"551 9th St, Portland, OR 97035" +146427,AAA Batteries (4-pack),2,2.99,01/22/19 09:58,"316 Jackson St, New York City, NY 10001" +146428,Bose SoundSport Headphones,1,99.99,01/12/19 17:00,"655 Spruce St, Los Angeles, CA 90001" +146429,Lightning Charging Cable,1,14.95,01/10/19 17:37,"11 Center St, Atlanta, GA 30301" +146430,Google Phone,1,600,01/17/19 13:30,"437 11th St, Dallas, TX 75001" +146431,Lightning Charging Cable,1,14.95,01/18/19 12:46,"532 Washington St, Dallas, TX 75001" +146432,27in 4K Gaming Monitor,1,389.99,01/10/19 17:20,"102 8th St, Dallas, TX 75001" +146433,Bose SoundSport Headphones,1,99.99,01/05/19 12:01,"663 Main St, Dallas, TX 75001" +146434,Lightning Charging Cable,1,14.95,01/19/19 10:14,"646 Meadow St, San Francisco, CA 94016" +146435,Bose SoundSport Headphones,1,99.99,01/12/19 09:48,"818 Elm St, Portland, ME 04101" +146436,27in 4K Gaming Monitor,1,389.99,01/16/19 20:51,"98 Pine St, Atlanta, GA 30301" +146437,Macbook Pro Laptop,1,1700,01/08/19 21:21,"785 Church St, Dallas, TX 75001" +146438,27in FHD Monitor,1,149.99,01/15/19 06:44,"375 Pine St, Los Angeles, CA 90001" +146439,Bose SoundSport Headphones,1,99.99,01/15/19 11:00,"234 Hickory St, New York City, NY 10001" +146440,Wired Headphones,1,11.99,01/01/19 14:34,"788 9th St, San Francisco, CA 94016" +146441,AAA Batteries (4-pack),2,2.99,01/16/19 10:01,"883 Cherry St, Portland, ME 04101" +146442,Bose SoundSport Headphones,1,99.99,01/17/19 17:44,"618 Park St, Atlanta, GA 30301" +146443,Bose SoundSport Headphones,1,99.99,01/19/19 15:44,"592 Church St, Austin, TX 73301" +146444,Bose SoundSport Headphones,1,99.99,01/22/19 17:54,"755 Forest St, Boston, MA 02215" +146445,AA Batteries (4-pack),1,3.84,01/10/19 06:16,"668 Lakeview St, Atlanta, GA 30301" +146446,AAA Batteries (4-pack),1,2.99,01/01/19 22:11,"965 Elm St, Austin, TX 73301" +146447,USB-C Charging Cable,1,11.95,01/02/19 23:32,"871 9th St, Seattle, WA 98101" +146448,AAA Batteries (4-pack),2,2.99,01/14/19 08:07,"735 Maple St, Boston, MA 02215" +146448,Google Phone,1,600,01/14/19 08:07,"735 Maple St, Boston, MA 02215" +146449,AA Batteries (4-pack),1,3.84,01/18/19 07:42,"339 2nd St, Seattle, WA 98101" +146450,AA Batteries (4-pack),1,3.84,01/01/19 21:18,"399 Jefferson St, New York City, NY 10001" +146451,Bose SoundSport Headphones,1,99.99,01/23/19 12:01,"856 8th St, New York City, NY 10001" +146452,Bose SoundSport Headphones,1,99.99,01/20/19 14:14,"215 Lake St, Los Angeles, CA 90001" +146453,USB-C Charging Cable,2,11.95,01/28/19 21:19,"222 13th St, Seattle, WA 98101" +146454,27in FHD Monitor,1,149.99,01/26/19 08:01,"742 5th St, New York City, NY 10001" +146455,AA Batteries (4-pack),1,3.84,01/13/19 16:08,"549 Spruce St, Los Angeles, CA 90001" +146456,USB-C Charging Cable,1,11.95,01/05/19 03:27,"284 6th St, Boston, MA 02215" +146457,USB-C Charging Cable,1,11.95,01/19/19 16:36,"780 Jackson St, San Francisco, CA 94016" +146458,Bose SoundSport Headphones,1,99.99,01/06/19 13:36,"87 South St, Atlanta, GA 30301" +146459,27in 4K Gaming Monitor,1,389.99,01/29/19 15:55,"697 Hickory St, Boston, MA 02215" +146460,20in Monitor,1,109.99,01/05/19 12:06,"141 5th St, Los Angeles, CA 90001" +146461,27in 4K Gaming Monitor,1,389.99,01/17/19 09:03,"606 6th St, San Francisco, CA 94016" +146462,AA Batteries (4-pack),1,3.84,01/17/19 19:44,"526 Wilson St, Los Angeles, CA 90001" +146463,AAA Batteries (4-pack),1,2.99,01/19/19 12:22,"35 7th St, San Francisco, CA 94016" +146464,Lightning Charging Cable,1,14.95,01/12/19 12:35,"522 Elm St, Atlanta, GA 30301" +146465,Lightning Charging Cable,1,14.95,01/03/19 19:53,"79 Hickory St, Boston, MA 02215" +146466,AAA Batteries (4-pack),1,2.99,01/18/19 01:05,"539 14th St, Los Angeles, CA 90001" +146467,USB-C Charging Cable,3,11.95,01/07/19 21:42,"329 Elm St, San Francisco, CA 94016" +146468,AA Batteries (4-pack),1,3.84,01/01/19 21:30,"735 South St, San Francisco, CA 94016" +146469,Bose SoundSport Headphones,1,99.99,01/31/19 18:39,"323 Jackson St, San Francisco, CA 94016" +146470,AAA Batteries (4-pack),2,2.99,01/26/19 13:42,"818 Hill St, Boston, MA 02215" +146471,27in FHD Monitor,1,149.99,01/29/19 13:20,"979 7th St, San Francisco, CA 94016" +146472,Google Phone,1,600,01/04/19 08:25,"474 Center St, Boston, MA 02215" +146473,Apple Airpods Headphones,1,150,01/22/19 16:42,"129 Maple St, Seattle, WA 98101" +146474,LG Dryer,1,600.0,01/15/19 14:07,"337 River St, Boston, MA 02215" +146475,Bose SoundSport Headphones,1,99.99,01/22/19 07:38,"774 Adams St, Boston, MA 02215" +146476,Wired Headphones,1,11.99,01/02/19 19:47,"386 Meadow St, San Francisco, CA 94016" +146477,USB-C Charging Cable,1,11.95,01/11/19 13:02,"137 Meadow St, San Francisco, CA 94016" +146478,Lightning Charging Cable,1,14.95,01/13/19 12:57,"146 6th St, Los Angeles, CA 90001" +146479,Bose SoundSport Headphones,1,99.99,01/25/19 21:09,"840 Willow St, Seattle, WA 98101" +146480,Bose SoundSport Headphones,1,99.99,01/07/19 17:46,"745 Johnson St, San Francisco, CA 94016" +146481,Macbook Pro Laptop,1,1700,01/12/19 13:32,"740 Wilson St, Boston, MA 02215" +146482,Wired Headphones,1,11.99,01/29/19 22:11,"874 Maple St, New York City, NY 10001" +146483,27in 4K Gaming Monitor,1,389.99,01/29/19 12:40,"178 10th St, San Francisco, CA 94016" +146484,AAA Batteries (4-pack),1,2.99,01/13/19 17:14,"291 Chestnut St, Atlanta, GA 30301" +146485,AAA Batteries (4-pack),2,2.99,01/14/19 12:51,"54 Pine St, Atlanta, GA 30301" +146486,Lightning Charging Cable,1,14.95,01/28/19 13:23,"796 10th St, Atlanta, GA 30301" +146487,Bose SoundSport Headphones,1,99.99,01/21/19 16:42,"625 River St, Seattle, WA 98101" +146488,AAA Batteries (4-pack),3,2.99,01/25/19 01:13,"133 Washington St, Austin, TX 73301" +146489,AA Batteries (4-pack),2,3.84,01/16/19 18:11,"244 Lincoln St, San Francisco, CA 94016" +146490,Bose SoundSport Headphones,1,99.99,01/20/19 21:33,"841 2nd St, San Francisco, CA 94016" +146491,AA Batteries (4-pack),1,3.84,01/13/19 22:18,"740 Pine St, Boston, MA 02215" +146492,Wired Headphones,1,11.99,01/02/19 18:03,"375 Washington St, Los Angeles, CA 90001" +146493,USB-C Charging Cable,1,11.95,01/20/19 11:09,"147 Forest St, San Francisco, CA 94016" +146494,USB-C Charging Cable,1,11.95,01/26/19 10:47,"79 Adams St, Boston, MA 02215" +146495,Lightning Charging Cable,1,14.95,01/14/19 19:54,"830 1st St, Dallas, TX 75001" +146496,Wired Headphones,1,11.99,01/14/19 12:12,"667 4th St, New York City, NY 10001" +146497,20in Monitor,1,109.99,01/29/19 07:03,"975 North St, Los Angeles, CA 90001" +146498,AA Batteries (4-pack),2,3.84,01/30/19 00:44,"853 Jefferson St, Los Angeles, CA 90001" +146499,Wired Headphones,1,11.99,01/29/19 23:14,"255 Maple St, Austin, TX 73301" +146499,Wired Headphones,1,11.99,01/29/19 23:14,"255 Maple St, Austin, TX 73301" +146500,AA Batteries (4-pack),1,3.84,01/03/19 21:41,"28 Willow St, Portland, ME 04101" +146501,USB-C Charging Cable,1,11.95,01/25/19 14:16,"784 Meadow St, Los Angeles, CA 90001" +146502,Wired Headphones,1,11.99,01/05/19 15:08,"525 4th St, Los Angeles, CA 90001" +146503,USB-C Charging Cable,1,11.95,01/16/19 19:37,"994 Hill St, New York City, NY 10001" +146504,USB-C Charging Cable,1,11.95,01/29/19 15:01,"902 6th St, Atlanta, GA 30301" +146505,USB-C Charging Cable,1,11.95,01/14/19 11:48,"103 Lincoln St, New York City, NY 10001" +146506,27in FHD Monitor,1,149.99,01/16/19 23:54,"760 North St, Portland, OR 97035" +146507,AA Batteries (4-pack),1,3.84,01/11/19 08:45,"415 West St, San Francisco, CA 94016" +146508,Apple Airpods Headphones,1,150,01/29/19 19:29,"807 Maple St, Boston, MA 02215" +146509,AAA Batteries (4-pack),1,2.99,01/06/19 10:39,"596 Adams St, New York City, NY 10001" +146510,Lightning Charging Cable,1,14.95,01/17/19 22:04,"246 Spruce St, Seattle, WA 98101" +146511,Wired Headphones,1,11.99,01/07/19 18:33,"984 13th St, Atlanta, GA 30301" +146512,Vareebadd Phone,1,400,01/16/19 18:17,"262 Pine St, Boston, MA 02215" +146512,USB-C Charging Cable,1,11.95,01/16/19 18:17,"262 Pine St, Boston, MA 02215" +146513,Bose SoundSport Headphones,1,99.99,01/22/19 14:45,"204 Adams St, San Francisco, CA 94016" +146514,AA Batteries (4-pack),1,3.84,01/12/19 16:50,"666 2nd St, Los Angeles, CA 90001" +146515,iPhone,1,700,01/07/19 12:00,"567 Meadow St, Dallas, TX 75001" +146516,AAA Batteries (4-pack),1,2.99,01/06/19 18:46,"971 6th St, New York City, NY 10001" +146517,27in FHD Monitor,1,149.99,01/04/19 06:25,"310 7th St, Boston, MA 02215" +146518,Vareebadd Phone,1,400,01/07/19 16:46,"311 Adams St, New York City, NY 10001" +146519,Lightning Charging Cable,1,14.95,01/07/19 21:01,"356 6th St, Seattle, WA 98101" +146520,27in 4K Gaming Monitor,1,389.99,01/28/19 13:50,"113 Dogwood St, Boston, MA 02215" +146521,AAA Batteries (4-pack),1,2.99,01/24/19 09:58,"151 14th St, San Francisco, CA 94016" +146522,ThinkPad Laptop,1,999.99,01/21/19 09:52,"21 Madison St, San Francisco, CA 94016" +146523,Vareebadd Phone,1,400,01/27/19 09:14,"944 4th St, San Francisco, CA 94016" +146523,Bose SoundSport Headphones,1,99.99,01/27/19 09:14,"944 4th St, San Francisco, CA 94016" +146524,Bose SoundSport Headphones,1,99.99,01/16/19 22:11,"219 Lakeview St, Portland, OR 97035" +146525,Lightning Charging Cable,1,14.95,01/05/19 13:23,"827 Johnson St, Dallas, TX 75001" +146526,AAA Batteries (4-pack),1,2.99,01/18/19 19:19,"270 10th St, Austin, TX 73301" +146527,20in Monitor,1,109.99,01/01/19 23:07,"589 Forest St, San Francisco, CA 94016" +146528,Wired Headphones,1,11.99,01/23/19 22:37,"383 13th St, Dallas, TX 75001" +146529,34in Ultrawide Monitor,1,379.99,01/12/19 07:20,"749 Jefferson St, Portland, OR 97035" +146530,AA Batteries (4-pack),1,3.84,01/06/19 13:55,"722 Walnut St, Austin, TX 73301" +146531,AAA Batteries (4-pack),1,2.99,01/23/19 13:44,"41 7th St, San Francisco, CA 94016" +146532,Flatscreen TV,1,300,01/21/19 09:23,"528 Adams St, New York City, NY 10001" +146533,AA Batteries (4-pack),1,3.84,01/26/19 19:24,"112 10th St, San Francisco, CA 94016" +146534,Apple Airpods Headphones,1,150,01/02/19 19:30,"685 2nd St, New York City, NY 10001" +146535,AAA Batteries (4-pack),1,2.99,01/15/19 19:32,"871 12th St, Los Angeles, CA 90001" +146536,ThinkPad Laptop,1,999.99,01/26/19 04:00,"230 Highland St, Los Angeles, CA 90001" +146537,27in 4K Gaming Monitor,1,389.99,01/19/19 21:51,"103 Willow St, Portland, ME 04101" +146538,AAA Batteries (4-pack),2,2.99,01/21/19 10:44,"875 Madison St, Atlanta, GA 30301" +146539,Google Phone,1,600,01/07/19 22:16,"192 8th St, Seattle, WA 98101" +146539,USB-C Charging Cable,1,11.95,01/07/19 22:16,"192 8th St, Seattle, WA 98101" +146540,Google Phone,1,600,01/21/19 19:15,"41 2nd St, New York City, NY 10001" +146541,20in Monitor,1,109.99,01/23/19 21:53,"258 11th St, San Francisco, CA 94016" +146542,USB-C Charging Cable,1,11.95,01/30/19 10:19,"98 Park St, Los Angeles, CA 90001" +146543,27in 4K Gaming Monitor,1,389.99,01/24/19 15:19,"103 11th St, Boston, MA 02215" +146544,USB-C Charging Cable,1,11.95,01/02/19 17:22,"543 Jackson St, Portland, ME 04101" +146545,ThinkPad Laptop,1,999.99,01/05/19 12:22,"588 Sunset St, Boston, MA 02215" +146546,AA Batteries (4-pack),1,3.84,01/15/19 11:46,"903 Jefferson St, San Francisco, CA 94016" +146547,AA Batteries (4-pack),2,3.84,01/21/19 14:30,"388 Park St, Boston, MA 02215" +146548,AAA Batteries (4-pack),1,2.99,01/28/19 14:48,"148 Hickory St, Portland, OR 97035" +146549,Bose SoundSport Headphones,1,99.99,01/19/19 16:31,"223 13th St, Los Angeles, CA 90001" +146550,AA Batteries (4-pack),1,3.84,01/04/19 22:19,"155 Pine St, Austin, TX 73301" +146551,27in FHD Monitor,1,149.99,01/19/19 23:47,"97 Chestnut St, Los Angeles, CA 90001" +146552,Vareebadd Phone,1,400,01/13/19 20:38,"947 Hickory St, Austin, TX 73301" +146553,Wired Headphones,1,11.99,01/20/19 19:12,"934 Pine St, Los Angeles, CA 90001" +146554,Flatscreen TV,1,300,01/16/19 09:55,"710 13th St, Los Angeles, CA 90001" +146555,Lightning Charging Cable,1,14.95,01/23/19 20:02,"524 Meadow St, New York City, NY 10001" +146556,USB-C Charging Cable,1,11.95,01/29/19 12:21,"695 Lake St, Atlanta, GA 30301" +146557,Lightning Charging Cable,1,14.95,01/22/19 21:51,"599 Highland St, Boston, MA 02215" +146558,Lightning Charging Cable,3,14.95,01/21/19 13:35,"255 Cedar St, Atlanta, GA 30301" +146559,27in FHD Monitor,1,149.99,01/08/19 15:32,"670 Jackson St, Boston, MA 02215" +146560,AAA Batteries (4-pack),2,2.99,01/09/19 11:10,"4 4th St, Atlanta, GA 30301" +146561,Bose SoundSport Headphones,1,99.99,01/29/19 19:42,"298 Maple St, New York City, NY 10001" +146562,Flatscreen TV,1,300,01/01/19 12:03,"907 1st St, Portland, OR 97035" +146563,USB-C Charging Cable,1,11.95,01/13/19 21:01,"419 8th St, Austin, TX 73301" +146564,Google Phone,1,600,01/31/19 11:17,"290 Cedar St, Los Angeles, CA 90001" +146565,34in Ultrawide Monitor,1,379.99,01/08/19 14:40,"563 9th St, New York City, NY 10001" +146566,AAA Batteries (4-pack),1,2.99,01/29/19 17:43,"831 10th St, San Francisco, CA 94016" +146567,20in Monitor,1,109.99,01/24/19 09:28,"733 13th St, Los Angeles, CA 90001" +146568,Apple Airpods Headphones,1,150,01/16/19 15:28,"626 River St, New York City, NY 10001" +146569,AAA Batteries (4-pack),1,2.99,01/14/19 12:20,"626 Forest St, Portland, OR 97035" +146570,Apple Airpods Headphones,1,150,01/22/19 08:32,"556 Walnut St, Boston, MA 02215" +146571,Lightning Charging Cable,1,14.95,01/19/19 11:07,"327 Washington St, New York City, NY 10001" +146572,Google Phone,1,600,01/13/19 19:11,"898 12th St, San Francisco, CA 94016" +146573,Apple Airpods Headphones,1,150,01/21/19 20:33,"705 Wilson St, Portland, OR 97035" +146574,Wired Headphones,1,11.99,01/02/19 18:08,"201 River St, San Francisco, CA 94016" +146575,ThinkPad Laptop,1,999.99,01/18/19 12:36,"900 Forest St, San Francisco, CA 94016" +146576,AA Batteries (4-pack),1,3.84,01/06/19 07:58,"380 6th St, Dallas, TX 75001" +146577,iPhone,1,700,01/22/19 18:41,"877 Highland St, San Francisco, CA 94016" +146578,Bose SoundSport Headphones,1,99.99,01/30/19 13:00,"851 River St, Boston, MA 02215" +146579,27in FHD Monitor,1,149.99,01/26/19 20:37,"723 Church St, Atlanta, GA 30301" +146580,Lightning Charging Cable,1,14.95,01/28/19 13:45,"123 Chestnut St, San Francisco, CA 94016" +146581,AAA Batteries (4-pack),1,2.99,01/13/19 09:39,"629 13th St, San Francisco, CA 94016" +146582,AAA Batteries (4-pack),1,2.99,01/28/19 21:39,"573 Dogwood St, Los Angeles, CA 90001" +146583,AAA Batteries (4-pack),2,2.99,01/07/19 13:18,"503 Willow St, Atlanta, GA 30301" +146584,Lightning Charging Cable,1,14.95,01/19/19 20:34,"350 Highland St, Atlanta, GA 30301" +146585,Flatscreen TV,1,300,01/29/19 22:10,"476 Highland St, Los Angeles, CA 90001" +146586,Google Phone,1,600,01/26/19 22:16,"723 Washington St, San Francisco, CA 94016" +146587,20in Monitor,1,109.99,01/04/19 12:29,"850 Spruce St, Atlanta, GA 30301" +146588,Apple Airpods Headphones,1,150,01/11/19 15:30,"205 Jackson St, Boston, MA 02215" +146589,AAA Batteries (4-pack),1,2.99,01/06/19 16:58,"288 Cedar St, San Francisco, CA 94016" +146590,AAA Batteries (4-pack),1,2.99,01/17/19 14:10,"749 14th St, Los Angeles, CA 90001" +146591,Lightning Charging Cable,1,14.95,01/08/19 16:53,"891 4th St, San Francisco, CA 94016" +146591,iPhone,1,700,01/08/19 16:53,"891 4th St, San Francisco, CA 94016" +146592,20in Monitor,1,109.99,01/09/19 13:19,"479 Washington St, New York City, NY 10001" +146593,Google Phone,1,600,01/05/19 17:19,"435 Hill St, San Francisco, CA 94016" +146594,Lightning Charging Cable,1,14.95,01/26/19 11:47,"669 13th St, New York City, NY 10001" +146595,USB-C Charging Cable,1,11.95,01/28/19 12:31,"230 North St, Portland, OR 97035" +146596,USB-C Charging Cable,1,11.95,01/24/19 22:28,"47 6th St, New York City, NY 10001" +146597,Wired Headphones,1,11.99,01/07/19 09:02,"730 Forest St, Atlanta, GA 30301" +146598,Bose SoundSport Headphones,1,99.99,01/09/19 16:53,"208 Willow St, Atlanta, GA 30301" +146599,Macbook Pro Laptop,1,1700,01/06/19 08:54,"632 Adams St, Boston, MA 02215" +146600,AA Batteries (4-pack),2,3.84,01/10/19 11:17,"809 Walnut St, Dallas, TX 75001" +146601,LG Washing Machine,1,600.0,01/23/19 09:52,"842 1st St, Portland, OR 97035" +146602,27in FHD Monitor,1,149.99,01/16/19 19:59,"956 4th St, Los Angeles, CA 90001" +146603,Lightning Charging Cable,1,14.95,01/30/19 22:02,"985 Jefferson St, Dallas, TX 75001" +146604,Google Phone,1,600,01/04/19 15:56,"142 6th St, Atlanta, GA 30301" +146605,AAA Batteries (4-pack),2,2.99,01/24/19 01:57,"732 1st St, New York City, NY 10001" +146606,AAA Batteries (4-pack),1,2.99,01/16/19 16:03,"883 Main St, San Francisco, CA 94016" +146607,Wired Headphones,1,11.99,01/11/19 05:54,"58 13th St, New York City, NY 10001" +146608,Lightning Charging Cable,1,14.95,01/22/19 08:21,"161 Ridge St, Los Angeles, CA 90001" +146609,Lightning Charging Cable,1,14.95,01/13/19 22:08,"199 Ridge St, Los Angeles, CA 90001" +146610,Apple Airpods Headphones,1,150,01/21/19 15:38,"115 Cedar St, Los Angeles, CA 90001" +146611,Google Phone,1,600,01/26/19 19:25,"60 South St, Los Angeles, CA 90001" +146612,Wired Headphones,1,11.99,01/31/19 17:57,"824 12th St, Seattle, WA 98101" +146613,Bose SoundSport Headphones,1,99.99,01/01/19 19:35,"370 Johnson St, Dallas, TX 75001" +146614,AAA Batteries (4-pack),2,2.99,01/05/19 09:26,"406 Center St, New York City, NY 10001" +146615,USB-C Charging Cable,1,11.95,01/28/19 00:43,"803 Forest St, Boston, MA 02215" +146616,Lightning Charging Cable,1,14.95,01/24/19 21:57,"872 Sunset St, Atlanta, GA 30301" +146617,USB-C Charging Cable,1,11.95,01/26/19 10:40,"225 Sunset St, San Francisco, CA 94016" +146618,USB-C Charging Cable,1,11.95,01/04/19 16:23,"246 North St, San Francisco, CA 94016" +146619,Bose SoundSport Headphones,1,99.99,01/14/19 23:06,"557 Willow St, New York City, NY 10001" +146620,AAA Batteries (4-pack),1,2.99,01/27/19 18:14,"239 Jackson St, Dallas, TX 75001" +146621,Bose SoundSport Headphones,1,99.99,01/24/19 14:37,"558 8th St, San Francisco, CA 94016" +,,,,, +146622,Lightning Charging Cable,1,14.95,01/11/19 10:53,"675 Highland St, Los Angeles, CA 90001" +146623,Apple Airpods Headphones,1,150,01/22/19 15:21,"168 10th St, Austin, TX 73301" +146624,iPhone,1,700,01/05/19 14:44,"847 8th St, Boston, MA 02215" +146625,USB-C Charging Cable,1,11.95,01/12/19 20:25,"934 6th St, New York City, NY 10001" +146625,AA Batteries (4-pack),1,3.84,01/12/19 20:25,"934 6th St, New York City, NY 10001" +146626,Bose SoundSport Headphones,1,99.99,01/03/19 22:46,"814 Chestnut St, San Francisco, CA 94016" +146627,Apple Airpods Headphones,1,150,01/17/19 15:26,"65 Park St, Portland, OR 97035" +146628,AAA Batteries (4-pack),3,2.99,01/25/19 13:18,"738 Lincoln St, Seattle, WA 98101" +146629,Lightning Charging Cable,1,14.95,01/27/19 20:12,"113 Spruce St, San Francisco, CA 94016" +146630,Wired Headphones,1,11.99,01/05/19 18:28,"175 12th St, Seattle, WA 98101" +146631,20in Monitor,1,109.99,01/22/19 18:23,"210 Walnut St, Seattle, WA 98101" +146632,Lightning Charging Cable,1,14.95,01/07/19 18:07,"649 Washington St, Dallas, TX 75001" +146633,iPhone,1,700,01/07/19 16:43,"985 14th St, Portland, OR 97035" +146634,Apple Airpods Headphones,1,150,01/06/19 23:20,"810 Sunset St, Austin, TX 73301" +146635,ThinkPad Laptop,1,999.99,01/23/19 16:18,"178 14th St, New York City, NY 10001" +146636,Vareebadd Phone,1,400,01/31/19 18:30,"266 8th St, Atlanta, GA 30301" +146637,Apple Airpods Headphones,1,150,01/28/19 19:04,"900 Meadow St, Dallas, TX 75001" +146638,Wired Headphones,1,11.99,01/14/19 12:47,"47 Chestnut St, Seattle, WA 98101" +146639,27in 4K Gaming Monitor,1,389.99,01/25/19 16:19,"216 Jackson St, Portland, OR 97035" +146640,Wired Headphones,1,11.99,01/12/19 21:36,"586 Lake St, San Francisco, CA 94016" +146641,Bose SoundSport Headphones,1,99.99,01/05/19 13:07,"80 7th St, Seattle, WA 98101" +146642,Bose SoundSport Headphones,1,99.99,01/24/19 09:24,"800 Hill St, San Francisco, CA 94016" +146643,Lightning Charging Cable,1,14.95,01/09/19 10:37,"962 14th St, San Francisco, CA 94016" +146644,AAA Batteries (4-pack),2,2.99,01/17/19 09:14,"900 Hickory St, Boston, MA 02215" +146645,27in 4K Gaming Monitor,1,389.99,01/06/19 17:31,"783 Maple St, Los Angeles, CA 90001" +146646,Wired Headphones,1,11.99,01/21/19 21:10,"538 9th St, Los Angeles, CA 90001" +146647,AAA Batteries (4-pack),1,2.99,01/28/19 12:59,"338 Jackson St, Dallas, TX 75001" +146648,AAA Batteries (4-pack),2,2.99,01/02/19 17:05,"451 7th St, Dallas, TX 75001" +146649,Google Phone,1,600,01/07/19 13:40,"466 West St, Los Angeles, CA 90001" +146649,Bose SoundSport Headphones,1,99.99,01/07/19 13:40,"466 West St, Los Angeles, CA 90001" +146650,Bose SoundSport Headphones,1,99.99,01/07/19 19:20,"390 Chestnut St, San Francisco, CA 94016" +146651,ThinkPad Laptop,1,999.99,01/31/19 00:56,"625 Maple St, San Francisco, CA 94016" +146652,Wired Headphones,1,11.99,01/18/19 12:27,"261 2nd St, New York City, NY 10001" +146653,AA Batteries (4-pack),1,3.84,01/07/19 10:50,"263 11th St, San Francisco, CA 94016" +146654,27in FHD Monitor,1,149.99,01/10/19 11:23,"763 Cherry St, Los Angeles, CA 90001" +146655,AAA Batteries (4-pack),1,2.99,01/14/19 20:12,"575 6th St, Portland, OR 97035" +146656,USB-C Charging Cable,1,11.95,01/07/19 19:19,"2 11th St, Atlanta, GA 30301" +146657,AAA Batteries (4-pack),2,2.99,01/22/19 12:56,"28 Sunset St, Seattle, WA 98101" +146658,AA Batteries (4-pack),3,3.84,01/13/19 14:28,"734 Main St, Los Angeles, CA 90001" +146659,AA Batteries (4-pack),1,3.84,01/27/19 03:18,"589 Hill St, Dallas, TX 75001" +146660,Apple Airpods Headphones,1,150,01/06/19 10:16,"720 Elm St, San Francisco, CA 94016" +146661,Wired Headphones,1,11.99,01/24/19 12:41,"205 11th St, San Francisco, CA 94016" +146662,Bose SoundSport Headphones,1,99.99,01/24/19 13:15,"458 Highland St, Los Angeles, CA 90001" +146663,27in 4K Gaming Monitor,1,389.99,01/25/19 10:53,"193 Spruce St, Los Angeles, CA 90001" +146664,27in FHD Monitor,1,149.99,01/10/19 12:34,"211 Lakeview St, New York City, NY 10001" +146665,USB-C Charging Cable,1,11.95,01/25/19 10:21,"330 9th St, Portland, OR 97035" +146666,AA Batteries (4-pack),1,3.84,01/27/19 17:27,"116 Adams St, Seattle, WA 98101" +146667,Flatscreen TV,1,300,01/15/19 14:33,"940 Hill St, Boston, MA 02215" +146668,Bose SoundSport Headphones,1,99.99,01/27/19 14:26,"912 Sunset St, San Francisco, CA 94016" +146669,Lightning Charging Cable,1,14.95,01/08/19 17:52,"792 14th St, Los Angeles, CA 90001" +146670,Apple Airpods Headphones,1,150,01/28/19 10:44,"229 5th St, Dallas, TX 75001" +146671,Wired Headphones,1,11.99,01/13/19 20:47,"861 10th St, San Francisco, CA 94016" +146672,20in Monitor,1,109.99,01/14/19 16:47,"793 Madison St, San Francisco, CA 94016" +146673,Lightning Charging Cable,1,14.95,01/01/19 22:13,"133 1st St, Seattle, WA 98101" +146674,Flatscreen TV,1,300,01/17/19 23:31,"976 Elm St, San Francisco, CA 94016" +146675,Vareebadd Phone,1,400,01/14/19 15:14,"344 Washington St, Atlanta, GA 30301" +146676,Lightning Charging Cable,1,14.95,01/30/19 08:08,"412 Madison St, Los Angeles, CA 90001" +146677,AA Batteries (4-pack),1,3.84,01/14/19 19:06,"998 Spruce St, Boston, MA 02215" +146678,Macbook Pro Laptop,1,1700,01/26/19 21:30,"160 Spruce St, Los Angeles, CA 90001" +146679,Wired Headphones,1,11.99,01/15/19 11:57,"208 Lakeview St, Boston, MA 02215" +146680,Lightning Charging Cable,1,14.95,01/02/19 12:01,"832 Johnson St, San Francisco, CA 94016" +146681,USB-C Charging Cable,1,11.95,01/05/19 06:39,"24 Cedar St, San Francisco, CA 94016" +146682,ThinkPad Laptop,1,999.99,01/25/19 10:04,"451 Lincoln St, Portland, OR 97035" +146683,27in 4K Gaming Monitor,1,389.99,01/17/19 11:33,"589 Main St, Portland, OR 97035" +146684,USB-C Charging Cable,1,11.95,01/11/19 17:29,"602 Dogwood St, Boston, MA 02215" +146685,Lightning Charging Cable,1,14.95,01/11/19 22:34,"653 Highland St, San Francisco, CA 94016" +146686,Lightning Charging Cable,1,14.95,01/08/19 16:43,"759 Lake St, Austin, TX 73301" +146687,USB-C Charging Cable,1,11.95,01/29/19 14:43,"229 14th St, Boston, MA 02215" +146688,Lightning Charging Cable,1,14.95,01/03/19 08:22,"482 South St, San Francisco, CA 94016" +146689,Flatscreen TV,1,300,01/31/19 20:18,"976 Walnut St, New York City, NY 10001" +146690,AA Batteries (4-pack),1,3.84,01/01/19 10:11,"896 Lakeview St, Los Angeles, CA 90001" +146691,Lightning Charging Cable,1,14.95,01/12/19 13:23,"915 Washington St, Los Angeles, CA 90001" +146692,20in Monitor,1,109.99,01/16/19 20:23,"303 Dogwood St, Austin, TX 73301" +146693,34in Ultrawide Monitor,1,379.99,01/19/19 06:54,"813 Cedar St, Boston, MA 02215" +146694,AAA Batteries (4-pack),1,2.99,01/13/19 00:50,"376 Pine St, Seattle, WA 98101" +146695,27in FHD Monitor,1,149.99,01/20/19 14:44,"979 9th St, Seattle, WA 98101" +146696,iPhone,1,700,01/31/19 06:54,"484 South St, Seattle, WA 98101" +146697,USB-C Charging Cable,1,11.95,01/12/19 21:39,"12 6th St, San Francisco, CA 94016" +146698,Apple Airpods Headphones,1,150,01/06/19 07:12,"704 Chestnut St, Boston, MA 02215" +146699,USB-C Charging Cable,1,11.95,01/01/19 19:23,"608 Main St, Dallas, TX 75001" +146700,AA Batteries (4-pack),2,3.84,01/04/19 15:00,"953 West St, New York City, NY 10001" +146701,Wired Headphones,1,11.99,01/01/19 15:54,"798 Lincoln St, Atlanta, GA 30301" +146702,ThinkPad Laptop,1,999.99,01/31/19 09:06,"494 Lake St, New York City, NY 10001" +146703,AA Batteries (4-pack),1,3.84,01/12/19 17:42,"725 Johnson St, Seattle, WA 98101" +146704,AA Batteries (4-pack),1,3.84,01/22/19 18:15,"362 Spruce St, Los Angeles, CA 90001" +146705,Lightning Charging Cable,1,14.95,01/02/19 11:56,"784 Center St, Austin, TX 73301" +146706,USB-C Charging Cable,1,11.95,01/07/19 22:54,"552 South St, Los Angeles, CA 90001" +146707,AA Batteries (4-pack),2,3.84,01/29/19 17:55,"870 South St, San Francisco, CA 94016" +146708,Macbook Pro Laptop,1,1700,01/25/19 02:38,"861 Madison St, San Francisco, CA 94016" +146709,Lightning Charging Cable,1,14.95,01/17/19 13:08,"336 9th St, San Francisco, CA 94016" +146710,USB-C Charging Cable,1,11.95,01/04/19 14:39,"5 Highland St, Boston, MA 02215" +146711,Apple Airpods Headphones,1,150,01/27/19 22:49,"490 12th St, New York City, NY 10001" +146712,AA Batteries (4-pack),1,3.84,01/09/19 09:10,"465 Lakeview St, Dallas, TX 75001" +146713,USB-C Charging Cable,1,11.95,01/05/19 10:41,"333 13th St, San Francisco, CA 94016" +146714,AA Batteries (4-pack),3,3.84,01/01/19 20:25,"72 River St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +146715,Bose SoundSport Headphones,1,99.99,01/17/19 07:06,"853 Adams St, New York City, NY 10001" +146716,34in Ultrawide Monitor,1,379.99,01/27/19 02:45,"964 5th St, New York City, NY 10001" +146717,Wired Headphones,1,11.99,01/03/19 05:51,"164 Hickory St, Austin, TX 73301" +146718,AAA Batteries (4-pack),1,2.99,01/29/19 05:48,"968 Cedar St, Portland, OR 97035" +146719,34in Ultrawide Monitor,1,379.99,01/23/19 16:47,"554 8th St, Boston, MA 02215" +146720,Wired Headphones,1,11.99,01/08/19 20:48,"736 Center St, Boston, MA 02215" +146721,Wired Headphones,1,11.99,01/18/19 14:24,"146 Center St, Austin, TX 73301" +146722,Lightning Charging Cable,1,14.95,01/20/19 16:56,"945 Lincoln St, Portland, OR 97035" +146723,Lightning Charging Cable,1,14.95,01/18/19 12:08,"17 Johnson St, Los Angeles, CA 90001" +146724,27in 4K Gaming Monitor,1,389.99,01/23/19 00:38,"728 Maple St, San Francisco, CA 94016" +146725,Wired Headphones,1,11.99,01/31/19 10:42,"407 Wilson St, Los Angeles, CA 90001" +146726,Macbook Pro Laptop,1,1700,01/19/19 15:35,"443 Chestnut St, Atlanta, GA 30301" +146727,USB-C Charging Cable,1,11.95,01/23/19 17:35,"882 5th St, Los Angeles, CA 90001" +146728,AA Batteries (4-pack),1,3.84,01/09/19 09:29,"344 Sunset St, San Francisco, CA 94016" +146729,Lightning Charging Cable,1,14.95,01/19/19 12:19,"690 Willow St, Atlanta, GA 30301" +146730,Bose SoundSport Headphones,1,99.99,01/07/19 18:55,"910 Sunset St, Portland, ME 04101" +146731,34in Ultrawide Monitor,1,379.99,01/26/19 15:11,"69 Church St, New York City, NY 10001" +146732,AA Batteries (4-pack),1,3.84,01/02/19 23:22,"508 Johnson St, San Francisco, CA 94016" +146733,iPhone,1,700,01/26/19 20:30,"901 Wilson St, Los Angeles, CA 90001" +146734,AAA Batteries (4-pack),1,2.99,01/02/19 01:48,"801 Chestnut St, Seattle, WA 98101" +146735,34in Ultrawide Monitor,1,379.99,01/05/19 23:49,"554 Madison St, Los Angeles, CA 90001" +146736,Apple Airpods Headphones,1,150,01/13/19 11:10,"555 Jefferson St, San Francisco, CA 94016" +146737,USB-C Charging Cable,1,11.95,01/05/19 18:22,"815 Main St, Portland, OR 97035" +146738,USB-C Charging Cable,1,11.95,01/23/19 17:01,"3 Walnut St, Seattle, WA 98101" +146739,Bose SoundSport Headphones,1,99.99,01/30/19 18:24,"160 13th St, Portland, ME 04101" +146740,Vareebadd Phone,1,400,01/12/19 11:30,"282 River St, Atlanta, GA 30301" +146740,Wired Headphones,1,11.99,01/12/19 11:30,"282 River St, Atlanta, GA 30301" +146741,Lightning Charging Cable,1,14.95,01/02/19 16:28,"521 West St, Seattle, WA 98101" +146742,Flatscreen TV,1,300,01/10/19 13:32,"625 Jackson St, Seattle, WA 98101" +146743,USB-C Charging Cable,1,11.95,01/16/19 09:31,"486 Ridge St, New York City, NY 10001" +146744,AA Batteries (4-pack),1,3.84,01/10/19 18:13,"246 10th St, New York City, NY 10001" +146745,USB-C Charging Cable,1,11.95,01/07/19 10:19,"214 14th St, San Francisco, CA 94016" +146746,Apple Airpods Headphones,1,150,01/12/19 14:28,"801 6th St, Atlanta, GA 30301" +146747,USB-C Charging Cable,1,11.95,01/28/19 21:20,"149 South St, Seattle, WA 98101" +146747,27in FHD Monitor,1,149.99,01/28/19 21:20,"149 South St, Seattle, WA 98101" +146748,Apple Airpods Headphones,1,150,01/08/19 15:52,"849 11th St, Los Angeles, CA 90001" +146749,Wired Headphones,1,11.99,01/03/19 14:41,"952 Johnson St, Atlanta, GA 30301" +146750,Apple Airpods Headphones,1,150,01/30/19 14:17,"710 Johnson St, Los Angeles, CA 90001" +146751,AAA Batteries (4-pack),1,2.99,01/27/19 21:24,"395 11th St, Portland, ME 04101" +146752,Google Phone,1,600,01/20/19 14:46,"548 Center St, Atlanta, GA 30301" +146753,34in Ultrawide Monitor,1,379.99,01/30/19 00:00,"787 9th St, San Francisco, CA 94016" +146754,iPhone,1,700,01/16/19 11:38,"127 Cherry St, Austin, TX 73301" +146755,USB-C Charging Cable,2,11.95,01/07/19 18:15,"673 Pine St, Atlanta, GA 30301" +146756,Bose SoundSport Headphones,1,99.99,01/24/19 15:21,"14 Park St, New York City, NY 10001" +146757,Apple Airpods Headphones,1,150,01/09/19 13:36,"761 Dogwood St, Los Angeles, CA 90001" +146758,AAA Batteries (4-pack),1,2.99,01/01/19 17:16,"134 Center St, Seattle, WA 98101" +146759,iPhone,1,700,01/09/19 19:49,"553 Willow St, San Francisco, CA 94016" +146759,Lightning Charging Cable,1,14.95,01/09/19 19:49,"553 Willow St, San Francisco, CA 94016" +146760,Apple Airpods Headphones,1,150,01/11/19 20:17,"505 10th St, Atlanta, GA 30301" +146761,Wired Headphones,1,11.99,01/15/19 16:21,"595 Wilson St, Austin, TX 73301" +146762,Google Phone,1,600,01/19/19 07:07,"242 Walnut St, Dallas, TX 75001" +146763,AA Batteries (4-pack),1,3.84,01/02/19 17:12,"376 14th St, Portland, OR 97035" +146764,Bose SoundSport Headphones,1,99.99,01/22/19 16:30,"952 1st St, San Francisco, CA 94016" +146765,AAA Batteries (4-pack),2,2.99,01/20/19 20:32,"428 Sunset St, San Francisco, CA 94016" +146766,27in 4K Gaming Monitor,1,389.99,01/24/19 20:16,"441 Lakeview St, Boston, MA 02215" +146767,27in FHD Monitor,1,149.99,01/25/19 16:15,"732 Main St, San Francisco, CA 94016" +146768,27in 4K Gaming Monitor,1,389.99,01/25/19 05:44,"513 Adams St, Boston, MA 02215" +146769,Wired Headphones,1,11.99,01/22/19 20:56,"291 Lincoln St, Boston, MA 02215" +146770,Lightning Charging Cable,1,14.95,01/18/19 21:52,"339 West St, Los Angeles, CA 90001" +146771,ThinkPad Laptop,1,999.99,01/21/19 22:13,"548 Ridge St, Dallas, TX 75001" +146772,USB-C Charging Cable,1,11.95,01/30/19 16:46,"646 Park St, New York City, NY 10001" +146773,Lightning Charging Cable,1,14.95,01/19/19 16:47,"822 2nd St, New York City, NY 10001" +146774,Apple Airpods Headphones,1,150,01/19/19 01:06,"969 Hill St, Portland, OR 97035" +146775,27in FHD Monitor,1,149.99,01/31/19 16:30,"944 Wilson St, Los Angeles, CA 90001" +146776,Apple Airpods Headphones,1,150,01/02/19 21:44,"311 Walnut St, Seattle, WA 98101" +146777,Wired Headphones,1,11.99,01/03/19 21:03,"794 North St, Los Angeles, CA 90001" +146778,27in FHD Monitor,1,149.99,01/08/19 22:46,"732 Lakeview St, New York City, NY 10001" +146779,USB-C Charging Cable,3,11.95,01/09/19 12:21,"700 2nd St, Los Angeles, CA 90001" +146780,USB-C Charging Cable,2,11.95,01/25/19 14:30,"305 Wilson St, Los Angeles, CA 90001" +146781,34in Ultrawide Monitor,1,379.99,01/05/19 16:45,"805 Lincoln St, San Francisco, CA 94016" +146782,Bose SoundSport Headphones,1,99.99,01/07/19 23:33,"18 Jefferson St, Atlanta, GA 30301" +146783,Lightning Charging Cable,1,14.95,01/04/19 14:08,"854 North St, San Francisco, CA 94016" +146784,Apple Airpods Headphones,1,150,01/23/19 23:45,"223 Lakeview St, Portland, OR 97035" +146784,AAA Batteries (4-pack),1,2.99,01/23/19 23:45,"223 Lakeview St, Portland, OR 97035" +146785,AA Batteries (4-pack),1,3.84,01/15/19 17:07,"170 10th St, Los Angeles, CA 90001" +146786,Google Phone,1,600,01/27/19 19:13,"331 Wilson St, New York City, NY 10001" +146786,Wired Headphones,1,11.99,01/27/19 19:13,"331 Wilson St, New York City, NY 10001" +146787,Lightning Charging Cable,1,14.95,01/10/19 07:30,"221 Main St, Boston, MA 02215" +146788,Macbook Pro Laptop,1,1700,01/13/19 15:48,"1 9th St, San Francisco, CA 94016" +146789,Apple Airpods Headphones,1,150,01/04/19 18:21,"317 12th St, New York City, NY 10001" +146790,Apple Airpods Headphones,1,150,01/27/19 15:01,"11 1st St, Boston, MA 02215" +146791,Apple Airpods Headphones,1,150,01/27/19 09:10,"118 Maple St, New York City, NY 10001" +146792,Vareebadd Phone,1,400,01/10/19 21:59,"95 South St, New York City, NY 10001" +146793,Lightning Charging Cable,1,14.95,01/01/19 18:55,"432 River St, Dallas, TX 75001" +146794,Lightning Charging Cable,1,14.95,01/31/19 08:49,"445 Lake St, San Francisco, CA 94016" +146795,AA Batteries (4-pack),1,3.84,01/20/19 21:38,"558 9th St, San Francisco, CA 94016" +146796,Bose SoundSport Headphones,1,99.99,01/24/19 21:23,"952 Jackson St, San Francisco, CA 94016" +146797,Wired Headphones,1,11.99,01/05/19 11:16,"734 Ridge St, Portland, OR 97035" +146798,34in Ultrawide Monitor,1,379.99,01/13/19 19:06,"257 Elm St, San Francisco, CA 94016" +,,,,, +146799,Apple Airpods Headphones,1,150,01/24/19 16:15,"449 Sunset St, Los Angeles, CA 90001" +146800,Wired Headphones,1,11.99,01/14/19 22:07,"645 11th St, Portland, OR 97035" +146801,AA Batteries (4-pack),1,3.84,01/21/19 18:23,"507 12th St, Los Angeles, CA 90001" +146802,Google Phone,1,600,01/11/19 12:17,"671 Maple St, Los Angeles, CA 90001" +146803,Lightning Charging Cable,1,14.95,01/27/19 10:37,"713 Highland St, Los Angeles, CA 90001" +146804,Lightning Charging Cable,1,14.95,01/30/19 14:38,"1 Meadow St, San Francisco, CA 94016" +146805,Wired Headphones,1,11.99,01/30/19 09:44,"68 West St, Seattle, WA 98101" +146806,Macbook Pro Laptop,1,1700,01/31/19 00:23,"887 Johnson St, Austin, TX 73301" +146807,Lightning Charging Cable,1,14.95,01/26/19 12:22,"982 6th St, Portland, OR 97035" +146808,Apple Airpods Headphones,1,150,01/04/19 08:15,"173 Highland St, Seattle, WA 98101" +146809,Macbook Pro Laptop,1,1700,01/31/19 16:56,"81 Willow St, Boston, MA 02215" +146810,Google Phone,1,600,01/15/19 12:09,"560 Church St, New York City, NY 10001" +146810,Wired Headphones,2,11.99,01/15/19 12:09,"560 Church St, New York City, NY 10001" +146811,USB-C Charging Cable,2,11.95,01/07/19 22:37,"820 11th St, Seattle, WA 98101" +146812,AAA Batteries (4-pack),1,2.99,01/27/19 10:18,"286 Johnson St, Los Angeles, CA 90001" +146813,USB-C Charging Cable,1,11.95,01/26/19 04:59,"203 Sunset St, Boston, MA 02215" +146814,Vareebadd Phone,1,400,01/22/19 12:04,"885 Park St, San Francisco, CA 94016" +146815,Wired Headphones,1,11.99,01/23/19 20:41,"792 Highland St, Los Angeles, CA 90001" +146816,Apple Airpods Headphones,1,150,01/16/19 11:46,"629 Washington St, San Francisco, CA 94016" +146817,Lightning Charging Cable,1,14.95,01/28/19 14:48,"342 12th St, Dallas, TX 75001" +146818,AAA Batteries (4-pack),1,2.99,01/04/19 13:20,"807 4th St, San Francisco, CA 94016" +146819,Apple Airpods Headphones,1,150,01/29/19 00:26,"772 West St, Seattle, WA 98101" +146820,Bose SoundSport Headphones,1,99.99,01/29/19 18:58,"464 Lakeview St, Los Angeles, CA 90001" +146821,Lightning Charging Cable,1,14.95,01/28/19 10:21,"336 Church St, Boston, MA 02215" +146822,USB-C Charging Cable,1,11.95,01/06/19 22:50,"913 Spruce St, Boston, MA 02215" +146823,Wired Headphones,2,11.99,01/01/19 21:01,"802 14th St, New York City, NY 10001" +146824,20in Monitor,1,109.99,01/01/19 19:57,"109 Highland St, San Francisco, CA 94016" +146825,Wired Headphones,1,11.99,01/21/19 21:38,"907 Walnut St, Boston, MA 02215" +146826,AA Batteries (4-pack),1,3.84,01/09/19 16:27,"112 1st St, Atlanta, GA 30301" +146827,Lightning Charging Cable,1,14.95,01/08/19 08:41,"839 7th St, San Francisco, CA 94016" +146828,USB-C Charging Cable,1,11.95,01/01/19 09:43,"145 Johnson St, Los Angeles, CA 90001" +146829,USB-C Charging Cable,1,11.95,01/16/19 19:17,"917 Washington St, Austin, TX 73301" +146830,Bose SoundSport Headphones,1,99.99,01/31/19 19:42,"518 10th St, New York City, NY 10001" +146831,Google Phone,1,600,01/22/19 09:02,"929 Park St, New York City, NY 10001" +146831,Bose SoundSport Headphones,1,99.99,01/22/19 09:02,"929 Park St, New York City, NY 10001" +,,,,, +146832,Wired Headphones,1,11.99,01/17/19 19:01,"269 Jefferson St, Los Angeles, CA 90001" +146833,AA Batteries (4-pack),1,3.84,01/26/19 21:42,"357 Jefferson St, Boston, MA 02215" +146834,Apple Airpods Headphones,1,150,01/04/19 20:43,"857 River St, Los Angeles, CA 90001" +146834,27in 4K Gaming Monitor,1,389.99,01/04/19 20:43,"857 River St, Los Angeles, CA 90001" +146835,27in FHD Monitor,1,149.99,01/21/19 20:43,"177 Lake St, Atlanta, GA 30301" +146836,iPhone,1,700,01/29/19 13:10,"612 Meadow St, Seattle, WA 98101" +146837,Wired Headphones,1,11.99,01/18/19 16:43,"57 6th St, Dallas, TX 75001" +146838,27in FHD Monitor,1,149.99,01/25/19 11:35,"742 5th St, Seattle, WA 98101" +146839,AA Batteries (4-pack),2,3.84,01/18/19 16:09,"172 11th St, Atlanta, GA 30301" +146840,iPhone,1,700,01/18/19 08:07,"863 Sunset St, Seattle, WA 98101" +146841,AAA Batteries (4-pack),2,2.99,01/25/19 09:46,"145 Sunset St, Boston, MA 02215" +146842,Lightning Charging Cable,1,14.95,01/31/19 09:39,"113 Hill St, Portland, ME 04101" +146843,Lightning Charging Cable,1,14.95,01/08/19 12:04,"33 Lake St, Atlanta, GA 30301" +146844,27in FHD Monitor,1,149.99,01/09/19 18:59,"654 7th St, New York City, NY 10001" +146845,34in Ultrawide Monitor,1,379.99,01/07/19 23:15,"231 Madison St, San Francisco, CA 94016" +146846,Lightning Charging Cable,1,14.95,01/19/19 15:20,"766 Cedar St, New York City, NY 10001" +146847,AAA Batteries (4-pack),1,2.99,01/10/19 13:31,"627 South St, Los Angeles, CA 90001" +146848,Wired Headphones,1,11.99,01/27/19 20:10,"362 Maple St, Portland, OR 97035" +146849,Macbook Pro Laptop,1,1700,01/24/19 07:51,"543 13th St, Dallas, TX 75001" +146850,AA Batteries (4-pack),1,3.84,01/07/19 11:50,"9 13th St, San Francisco, CA 94016" +146851,Google Phone,1,600,01/28/19 10:34,"856 River St, Dallas, TX 75001" +146851,USB-C Charging Cable,1,11.95,01/28/19 10:34,"856 River St, Dallas, TX 75001" +146852,AAA Batteries (4-pack),1,2.99,01/11/19 13:59,"305 Chestnut St, Austin, TX 73301" +146853,AA Batteries (4-pack),1,3.84,01/21/19 21:55,"684 Jefferson St, Dallas, TX 75001" +146854,iPhone,1,700,01/22/19 19:36,"945 7th St, New York City, NY 10001" +146854,Lightning Charging Cable,1,14.95,01/22/19 19:36,"945 7th St, New York City, NY 10001" +146855,Bose SoundSport Headphones,1,99.99,01/05/19 16:09,"811 13th St, New York City, NY 10001" +146856,USB-C Charging Cable,1,11.95,01/28/19 21:30,"12 12th St, New York City, NY 10001" +146857,AAA Batteries (4-pack),2,2.99,01/24/19 21:51,"116 South St, Boston, MA 02215" +146858,27in 4K Gaming Monitor,1,389.99,01/21/19 22:04,"380 13th St, New York City, NY 10001" +146859,Lightning Charging Cable,1,14.95,01/25/19 16:58,"684 Washington St, San Francisco, CA 94016" +146860,Lightning Charging Cable,1,14.95,01/23/19 18:13,"198 Highland St, San Francisco, CA 94016" +146861,Macbook Pro Laptop,1,1700,01/03/19 23:26,"692 Sunset St, Austin, TX 73301" +146862,AA Batteries (4-pack),1,3.84,01/06/19 12:49,"219 Lakeview St, Austin, TX 73301" +146863,AAA Batteries (4-pack),2,2.99,01/06/19 11:52,"27 6th St, Seattle, WA 98101" +146864,Wired Headphones,1,11.99,01/31/19 22:02,"271 8th St, Austin, TX 73301" +146864,iPhone,1,700,01/31/19 22:02,"271 8th St, Austin, TX 73301" +146865,AAA Batteries (4-pack),3,2.99,01/10/19 12:49,"347 West St, Portland, OR 97035" +146866,iPhone,1,700,01/01/19 14:08,"942 11th St, Seattle, WA 98101" +146867,Wired Headphones,1,11.99,01/20/19 14:46,"122 10th St, Portland, OR 97035" +146868,Wired Headphones,1,11.99,01/24/19 04:43,"128 Washington St, Seattle, WA 98101" +146869,Apple Airpods Headphones,1,150,01/08/19 16:34,"253 River St, San Francisco, CA 94016" +146870,AA Batteries (4-pack),4,3.84,01/04/19 20:11,"944 South St, San Francisco, CA 94016" +146871,27in FHD Monitor,1,149.99,01/18/19 00:31,"894 Cedar St, New York City, NY 10001" +146872,Bose SoundSport Headphones,1,99.99,01/13/19 00:45,"597 Sunset St, Los Angeles, CA 90001" +146873,Flatscreen TV,1,300,01/05/19 20:34,"781 North St, San Francisco, CA 94016" +146874,AAA Batteries (4-pack),1,2.99,01/24/19 10:13,"523 Pine St, Boston, MA 02215" +146875,Wired Headphones,1,11.99,01/09/19 18:24,"115 2nd St, Atlanta, GA 30301" +146876,Lightning Charging Cable,1,14.95,01/09/19 18:48,"227 Jefferson St, New York City, NY 10001" +146877,Apple Airpods Headphones,1,150,01/09/19 21:39,"349 Park St, Dallas, TX 75001" +146878,ThinkPad Laptop,1,999.99,01/30/19 15:40,"665 Hill St, New York City, NY 10001" +146879,AA Batteries (4-pack),1,3.84,01/31/19 20:10,"946 13th St, San Francisco, CA 94016" +146880,AAA Batteries (4-pack),3,2.99,01/09/19 19:27,"833 Elm St, San Francisco, CA 94016" +146881,Lightning Charging Cable,1,14.95,01/16/19 12:21,"289 Wilson St, San Francisco, CA 94016" +146882,AAA Batteries (4-pack),2,2.99,01/04/19 10:31,"678 River St, San Francisco, CA 94016" +146883,20in Monitor,1,109.99,01/24/19 07:38,"394 Hill St, Los Angeles, CA 90001" +146884,20in Monitor,1,109.99,01/24/19 15:02,"28 Highland St, San Francisco, CA 94016" +146885,AAA Batteries (4-pack),1,2.99,01/06/19 22:16,"997 Hickory St, Los Angeles, CA 90001" +146886,27in FHD Monitor,1,149.99,01/08/19 14:17,"820 10th St, Los Angeles, CA 90001" +146887,iPhone,1,700,01/28/19 19:54,"246 Walnut St, Los Angeles, CA 90001" +146888,iPhone,1,700,01/22/19 10:31,"902 9th St, Portland, ME 04101" +146888,Lightning Charging Cable,1,14.95,01/22/19 10:31,"902 9th St, Portland, ME 04101" +146889,AAA Batteries (4-pack),1,2.99,01/05/19 09:49,"953 Pine St, New York City, NY 10001" +146890,USB-C Charging Cable,1,11.95,01/13/19 22:43,"440 Ridge St, San Francisco, CA 94016" +146891,AAA Batteries (4-pack),1,2.99,01/20/19 22:27,"153 Washington St, San Francisco, CA 94016" +146892,Apple Airpods Headphones,1,150,01/16/19 10:21,"905 13th St, Boston, MA 02215" +146893,Lightning Charging Cable,1,14.95,01/05/19 21:20,"741 Chestnut St, Los Angeles, CA 90001" +146894,Wired Headphones,2,11.99,01/20/19 20:06,"659 Lakeview St, New York City, NY 10001" +146895,Lightning Charging Cable,1,14.95,01/28/19 10:28,"180 Spruce St, Boston, MA 02215" +146896,USB-C Charging Cable,1,11.95,01/04/19 20:20,"560 Madison St, San Francisco, CA 94016" +146897,Google Phone,1,600,01/27/19 01:10,"904 Highland St, Seattle, WA 98101" +146898,USB-C Charging Cable,1,11.95,01/15/19 10:25,"236 Pine St, Austin, TX 73301" +146899,Vareebadd Phone,1,400,01/10/19 13:00,"462 13th St, Los Angeles, CA 90001" +146900,Bose SoundSport Headphones,1,99.99,01/11/19 13:24,"881 Wilson St, New York City, NY 10001" +146901,AA Batteries (4-pack),1,3.84,01/19/19 19:02,"925 Johnson St, Austin, TX 73301" +146902,AAA Batteries (4-pack),1,2.99,01/08/19 11:21,"477 11th St, New York City, NY 10001" +146903,27in 4K Gaming Monitor,1,389.99,01/07/19 11:01,"206 Walnut St, San Francisco, CA 94016" +146904,iPhone,1,700,01/17/19 22:43,"623 Pine St, Los Angeles, CA 90001" +146905,Flatscreen TV,1,300,01/02/19 11:48,"615 Lakeview St, Los Angeles, CA 90001" +146906,27in 4K Gaming Monitor,1,389.99,01/06/19 11:20,"286 Cedar St, Los Angeles, CA 90001" +146907,Lightning Charging Cable,1,14.95,01/14/19 18:14,"941 Forest St, Boston, MA 02215" +146908,27in FHD Monitor,1,149.99,01/15/19 10:15,"294 9th St, New York City, NY 10001" +146909,AA Batteries (4-pack),1,3.84,01/08/19 05:26,"958 Walnut St, Boston, MA 02215" +146910,AAA Batteries (4-pack),1,2.99,01/02/19 13:59,"667 4th St, San Francisco, CA 94016" +146911,Lightning Charging Cable,1,14.95,01/31/19 20:38,"513 Johnson St, Seattle, WA 98101" +146912,Apple Airpods Headphones,1,150,01/20/19 11:08,"252 Main St, Los Angeles, CA 90001" +146913,USB-C Charging Cable,1,11.95,01/11/19 16:59,"37 West St, Seattle, WA 98101" +146914,27in FHD Monitor,1,149.99,01/07/19 14:02,"827 Lakeview St, San Francisco, CA 94016" +146915,Bose SoundSport Headphones,1,99.99,01/02/19 10:59,"720 Highland St, San Francisco, CA 94016" +146916,USB-C Charging Cable,1,11.95,01/15/19 11:37,"611 8th St, San Francisco, CA 94016" +146917,iPhone,1,700,01/11/19 11:03,"228 11th St, Los Angeles, CA 90001" +146918,Apple Airpods Headphones,1,150,01/06/19 22:45,"452 Lincoln St, Seattle, WA 98101" +146919,Flatscreen TV,1,300,01/24/19 14:32,"606 Willow St, San Francisco, CA 94016" +146920,AA Batteries (4-pack),1,3.84,01/16/19 12:20,"228 Cedar St, Los Angeles, CA 90001" +146921,Vareebadd Phone,1,400,01/13/19 12:29,"971 14th St, New York City, NY 10001" +146922,ThinkPad Laptop,1,999.99,01/27/19 16:46,"896 10th St, New York City, NY 10001" +146923,AA Batteries (4-pack),1,3.84,01/11/19 20:24,"14 4th St, Dallas, TX 75001" +146924,Wired Headphones,1,11.99,01/05/19 21:41,"605 Highland St, Los Angeles, CA 90001" +146925,AAA Batteries (4-pack),2,2.99,01/16/19 12:48,"627 Maple St, Dallas, TX 75001" +146926,27in FHD Monitor,1,149.99,01/22/19 13:45,"727 Spruce St, New York City, NY 10001" +146927,AAA Batteries (4-pack),1,2.99,01/27/19 18:06,"748 Forest St, San Francisco, CA 94016" +146928,Wired Headphones,1,11.99,01/31/19 01:07,"585 Pine St, San Francisco, CA 94016" +146929,AAA Batteries (4-pack),1,2.99,01/13/19 19:16,"557 River St, New York City, NY 10001" +146930,USB-C Charging Cable,2,11.95,01/10/19 19:20,"52 Hickory St, Los Angeles, CA 90001" +146931,USB-C Charging Cable,1,11.95,01/18/19 06:27,"627 Adams St, New York City, NY 10001" +146932,AA Batteries (4-pack),1,3.84,01/24/19 20:50,"12 Dogwood St, Seattle, WA 98101" +146933,Wired Headphones,1,11.99,01/27/19 17:06,"301 Willow St, Dallas, TX 75001" +146934,27in 4K Gaming Monitor,1,389.99,01/29/19 21:48,"907 Forest St, San Francisco, CA 94016" +146935,AAA Batteries (4-pack),2,2.99,01/12/19 13:38,"393 Cedar St, Dallas, TX 75001" +146936,Apple Airpods Headphones,1,150,01/22/19 08:22,"956 Cedar St, San Francisco, CA 94016" +146937,USB-C Charging Cable,1,11.95,01/04/19 14:07,"692 6th St, San Francisco, CA 94016" +146938,Bose SoundSport Headphones,1,99.99,01/07/19 20:01,"42 West St, Seattle, WA 98101" +146939,USB-C Charging Cable,1,11.95,01/02/19 11:32,"443 South St, Atlanta, GA 30301" +146940,USB-C Charging Cable,1,11.95,01/04/19 10:09,"843 Meadow St, San Francisco, CA 94016" +146941,AAA Batteries (4-pack),1,2.99,01/06/19 17:00,"883 Center St, New York City, NY 10001" +146942,AAA Batteries (4-pack),1,2.99,01/10/19 12:09,"635 South St, Boston, MA 02215" +146943,27in 4K Gaming Monitor,1,389.99,01/14/19 07:32,"677 Madison St, Austin, TX 73301" +146944,34in Ultrawide Monitor,1,379.99,01/11/19 12:16,"98 Elm St, Los Angeles, CA 90001" +146945,Bose SoundSport Headphones,1,99.99,01/07/19 17:46,"286 14th St, San Francisco, CA 94016" +146946,Vareebadd Phone,1,400,01/24/19 13:38,"421 Highland St, Boston, MA 02215" +146947,34in Ultrawide Monitor,1,379.99,01/05/19 12:09,"206 Center St, Los Angeles, CA 90001" +146948,Wired Headphones,1,11.99,01/07/19 18:48,"974 Madison St, Boston, MA 02215" +146949,USB-C Charging Cable,1,11.95,01/31/19 18:55,"895 Park St, Austin, TX 73301" +146950,27in 4K Gaming Monitor,1,389.99,01/06/19 21:55,"137 Adams St, Atlanta, GA 30301" +146951,AAA Batteries (4-pack),1,2.99,01/19/19 08:43,"844 Pine St, Dallas, TX 75001" +146952,27in FHD Monitor,1,149.99,01/16/19 08:11,"605 Spruce St, San Francisco, CA 94016" +146953,Lightning Charging Cable,1,14.95,01/16/19 17:13,"643 Lakeview St, Los Angeles, CA 90001" +146954,Lightning Charging Cable,1,14.95,01/10/19 12:05,"623 2nd St, Los Angeles, CA 90001" +146955,AAA Batteries (4-pack),2,2.99,01/25/19 01:33,"291 Wilson St, Boston, MA 02215" +146956,Wired Headphones,1,11.99,01/01/19 18:50,"564 Lakeview St, Boston, MA 02215" +146957,Bose SoundSport Headphones,1,99.99,01/15/19 16:29,"95 Meadow St, San Francisco, CA 94016" +146958,AA Batteries (4-pack),1,3.84,01/08/19 19:01,"310 Main St, Dallas, TX 75001" +146959,27in FHD Monitor,1,149.99,01/08/19 15:25,"793 Spruce St, Seattle, WA 98101" +146960,Wired Headphones,1,11.99,01/23/19 12:04,"101 Pine St, Atlanta, GA 30301" +146961,Apple Airpods Headphones,1,150,01/01/19 10:00,"702 Adams St, Boston, MA 02215" +146962,Lightning Charging Cable,1,14.95,01/03/19 00:31,"810 Center St, Dallas, TX 75001" +146963,Wired Headphones,1,11.99,01/20/19 20:02,"124 Lake St, San Francisco, CA 94016" +146964,Bose SoundSport Headphones,1,99.99,01/02/19 11:38,"873 Elm St, New York City, NY 10001" +146965,Lightning Charging Cable,1,14.95,01/27/19 13:03,"357 Elm St, Dallas, TX 75001" +146966,Wired Headphones,1,11.99,01/20/19 12:12,"501 Cedar St, Portland, OR 97035" +146967,Apple Airpods Headphones,1,150,01/09/19 17:27,"364 Center St, San Francisco, CA 94016" +146968,Google Phone,1,600,01/10/19 17:45,"724 Washington St, Seattle, WA 98101" +146969,Bose SoundSport Headphones,1,99.99,01/10/19 21:08,"186 11th St, Los Angeles, CA 90001" +146970,Wired Headphones,1,11.99,01/29/19 13:57,"575 Cedar St, Portland, OR 97035" +146971,USB-C Charging Cable,1,11.95,01/14/19 16:34,"120 11th St, Portland, OR 97035" +146972,AA Batteries (4-pack),2,3.84,01/14/19 14:09,"307 Main St, Boston, MA 02215" +146973,USB-C Charging Cable,2,11.95,01/18/19 20:05,"590 4th St, Dallas, TX 75001" +146974,AAA Batteries (4-pack),1,2.99,01/04/19 15:09,"120 14th St, Atlanta, GA 30301" +146975,AAA Batteries (4-pack),1,2.99,01/08/19 13:59,"457 Washington St, Portland, OR 97035" +146976,Wired Headphones,1,11.99,01/13/19 14:14,"618 Park St, San Francisco, CA 94016" +146977,AAA Batteries (4-pack),2,2.99,01/03/19 18:48,"342 Hill St, Los Angeles, CA 90001" +146977,ThinkPad Laptop,1,999.99,01/03/19 18:48,"342 Hill St, Los Angeles, CA 90001" +146978,Google Phone,1,600,01/06/19 22:33,"362 Madison St, Los Angeles, CA 90001" +146979,Bose SoundSport Headphones,1,99.99,01/15/19 12:18,"3 7th St, San Francisco, CA 94016" +146980,27in 4K Gaming Monitor,1,389.99,01/25/19 19:42,"663 Meadow St, San Francisco, CA 94016" +146981,Flatscreen TV,1,300,01/05/19 17:06,"353 Elm St, Atlanta, GA 30301" +146982,Wired Headphones,1,11.99,01/18/19 15:35,"432 River St, Atlanta, GA 30301" +146983,27in FHD Monitor,1,149.99,01/26/19 20:59,"325 Spruce St, Los Angeles, CA 90001" +146984,AA Batteries (4-pack),1,3.84,01/23/19 18:20,"681 12th St, San Francisco, CA 94016" +146985,AAA Batteries (4-pack),1,2.99,01/14/19 09:06,"961 West St, Boston, MA 02215" +146986,AAA Batteries (4-pack),1,2.99,01/20/19 20:26,"225 Willow St, San Francisco, CA 94016" +146987,27in FHD Monitor,1,149.99,01/14/19 09:13,"365 2nd St, San Francisco, CA 94016" +146988,AAA Batteries (4-pack),1,2.99,01/17/19 20:28,"635 9th St, Seattle, WA 98101" +146989,20in Monitor,1,109.99,01/19/19 11:56,"952 Johnson St, New York City, NY 10001" +146990,AA Batteries (4-pack),1,3.84,01/18/19 19:55,"772 2nd St, Boston, MA 02215" +146991,Bose SoundSport Headphones,1,99.99,01/13/19 11:21,"609 Meadow St, San Francisco, CA 94016" +146992,AAA Batteries (4-pack),2,2.99,01/23/19 17:13,"29 Park St, Austin, TX 73301" +146993,Wired Headphones,1,11.99,01/22/19 11:09,"355 Jefferson St, Boston, MA 02215" +146994,Lightning Charging Cable,1,14.95,01/01/19 19:37,"890 Wilson St, San Francisco, CA 94016" +146995,Bose SoundSport Headphones,1,99.99,01/29/19 16:03,"618 1st St, Los Angeles, CA 90001" +146996,Lightning Charging Cable,1,14.95,01/05/19 18:34,"648 Forest St, New York City, NY 10001" +146997,USB-C Charging Cable,1,11.95,01/10/19 21:55,"299 Johnson St, Los Angeles, CA 90001" +146998,USB-C Charging Cable,1,11.95,01/20/19 15:48,"396 6th St, Boston, MA 02215" +146999,Flatscreen TV,1,300,01/08/19 01:30,"724 Dogwood St, New York City, NY 10001" +147000,Apple Airpods Headphones,1,150,01/21/19 22:23,"964 Cherry St, New York City, NY 10001" +147001,USB-C Charging Cable,1,11.95,01/20/19 15:51,"707 8th St, Los Angeles, CA 90001" +147002,AAA Batteries (4-pack),1,2.99,01/30/19 20:31,"52 13th St, Seattle, WA 98101" +147002,Wired Headphones,1,11.99,01/30/19 20:31,"52 13th St, Seattle, WA 98101" +147003,Apple Airpods Headphones,1,150,01/08/19 14:51,"460 Spruce St, New York City, NY 10001" +147004,Wired Headphones,1,11.99,01/04/19 20:06,"558 Walnut St, San Francisco, CA 94016" +147005,34in Ultrawide Monitor,1,379.99,01/19/19 21:43,"497 Adams St, San Francisco, CA 94016" +147005,Wired Headphones,1,11.99,01/19/19 21:43,"497 Adams St, San Francisco, CA 94016" +147006,Lightning Charging Cable,1,14.95,01/27/19 19:43,"368 Adams St, Boston, MA 02215" +147007,Bose SoundSport Headphones,1,99.99,01/21/19 11:50,"89 Lakeview St, San Francisco, CA 94016" +147008,AAA Batteries (4-pack),1,2.99,01/02/19 00:43,"816 7th St, Portland, OR 97035" +147009,27in 4K Gaming Monitor,1,389.99,01/01/19 21:09,"830 14th St, Boston, MA 02215" +147010,Flatscreen TV,1,300,01/21/19 21:52,"580 1st St, New York City, NY 10001" +147011,Flatscreen TV,1,300,01/08/19 17:18,"16 River St, Los Angeles, CA 90001" +147012,AA Batteries (4-pack),1,3.84,01/21/19 14:56,"950 2nd St, San Francisco, CA 94016" +147013,ThinkPad Laptop,1,999.99,01/30/19 11:05,"339 Ridge St, Los Angeles, CA 90001" +147014,Google Phone,1,600,01/25/19 01:03,"931 Cedar St, Atlanta, GA 30301" +147015,ThinkPad Laptop,1,999.99,01/27/19 19:21,"174 Elm St, Dallas, TX 75001" +147016,iPhone,1,700,01/31/19 11:48,"233 8th St, Portland, OR 97035" +147017,Wired Headphones,1,11.99,01/11/19 19:39,"935 Forest St, Boston, MA 02215" +147018,27in FHD Monitor,1,149.99,01/07/19 12:38,"876 9th St, Portland, OR 97035" +147019,AA Batteries (4-pack),1,3.84,01/02/19 13:53,"604 Lake St, San Francisco, CA 94016" +147020,Macbook Pro Laptop,1,1700,01/24/19 19:49,"914 Washington St, Austin, TX 73301" +147021,AAA Batteries (4-pack),1,2.99,01/29/19 15:26,"432 Walnut St, Dallas, TX 75001" +147022,AAA Batteries (4-pack),1,2.99,01/23/19 21:32,"854 Cherry St, Los Angeles, CA 90001" +147023,Lightning Charging Cable,1,14.95,01/01/19 11:46,"70 Ridge St, Austin, TX 73301" +147024,AA Batteries (4-pack),1,3.84,01/17/19 19:26,"131 6th St, Los Angeles, CA 90001" +147025,Lightning Charging Cable,1,14.95,01/07/19 14:25,"544 2nd St, New York City, NY 10001" +147026,27in FHD Monitor,1,149.99,01/22/19 18:33,"620 14th St, Austin, TX 73301" +147027,USB-C Charging Cable,1,11.95,01/20/19 17:39,"258 Washington St, Austin, TX 73301" +147028,Wired Headphones,1,11.99,01/05/19 13:56,"787 Meadow St, New York City, NY 10001" +147029,Apple Airpods Headphones,1,150,01/13/19 21:37,"336 11th St, San Francisco, CA 94016" +147030,USB-C Charging Cable,1,11.95,01/14/19 12:46,"318 9th St, Austin, TX 73301" +147031,USB-C Charging Cable,1,11.95,01/07/19 19:15,"648 4th St, Los Angeles, CA 90001" +147032,Wired Headphones,1,11.99,01/19/19 09:43,"786 North St, Los Angeles, CA 90001" +147033,27in FHD Monitor,1,149.99,01/11/19 11:11,"895 Cherry St, New York City, NY 10001" +147034,AA Batteries (4-pack),2,3.84,01/18/19 08:48,"646 Dogwood St, Seattle, WA 98101" +147035,iPhone,1,700,01/21/19 04:10,"575 1st St, Los Angeles, CA 90001" +147036,Vareebadd Phone,1,400,01/21/19 15:25,"771 South St, Dallas, TX 75001" +147037,20in Monitor,1,109.99,01/09/19 18:18,"962 Lakeview St, Seattle, WA 98101" +147038,AAA Batteries (4-pack),1,2.99,01/15/19 19:48,"645 13th St, Dallas, TX 75001" +147039,AAA Batteries (4-pack),1,2.99,01/05/19 13:43,"132 Church St, San Francisco, CA 94016" +147040,AA Batteries (4-pack),2,3.84,01/17/19 20:10,"105 Johnson St, New York City, NY 10001" +147041,Lightning Charging Cable,1,14.95,01/16/19 19:38,"522 Hickory St, San Francisco, CA 94016" +147042,USB-C Charging Cable,1,11.95,01/19/19 17:43,"152 Lincoln St, Austin, TX 73301" +147043,34in Ultrawide Monitor,1,379.99,01/06/19 17:34,"255 Forest St, Seattle, WA 98101" +147044,AA Batteries (4-pack),1,3.84,01/27/19 07:50,"634 10th St, New York City, NY 10001" +147045,Bose SoundSport Headphones,1,99.99,01/20/19 12:18,"479 Maple St, San Francisco, CA 94016" +147046,AAA Batteries (4-pack),1,2.99,01/16/19 15:34,"431 1st St, Los Angeles, CA 90001" +147047,Macbook Pro Laptop,1,1700,01/22/19 21:17,"659 Dogwood St, San Francisco, CA 94016" +147048,AA Batteries (4-pack),1,3.84,01/05/19 08:24,"105 West St, Portland, OR 97035" +147049,Google Phone,1,600,01/26/19 17:47,"795 Lakeview St, Seattle, WA 98101" +147050,USB-C Charging Cable,1,11.95,01/04/19 18:45,"13 Park St, San Francisco, CA 94016" +147051,ThinkPad Laptop,1,999.99,01/31/19 10:16,"451 Pine St, Boston, MA 02215" +147052,Google Phone,1,600,01/24/19 16:24,"75 8th St, San Francisco, CA 94016" +147052,USB-C Charging Cable,1,11.95,01/24/19 16:24,"75 8th St, San Francisco, CA 94016" +147053,USB-C Charging Cable,1,11.95,01/20/19 13:50,"676 Adams St, Portland, OR 97035" +147054,USB-C Charging Cable,1,11.95,01/17/19 07:41,"92 Chestnut St, San Francisco, CA 94016" +147055,Lightning Charging Cable,1,14.95,01/11/19 14:58,"734 Sunset St, Seattle, WA 98101" +147056,34in Ultrawide Monitor,1,379.99,01/12/19 01:31,"30 13th St, San Francisco, CA 94016" +147057,Apple Airpods Headphones,1,150,01/17/19 17:49,"324 Park St, San Francisco, CA 94016" +147058,AAA Batteries (4-pack),3,2.99,01/14/19 18:10,"401 10th St, Atlanta, GA 30301" +147059,27in FHD Monitor,1,149.99,01/26/19 12:06,"687 Willow St, San Francisco, CA 94016" +147060,USB-C Charging Cable,1,11.95,01/28/19 23:26,"963 Walnut St, New York City, NY 10001" +147061,34in Ultrawide Monitor,1,379.99,01/09/19 13:38,"410 Lakeview St, Los Angeles, CA 90001" +147062,USB-C Charging Cable,1,11.95,01/10/19 16:37,"59 6th St, Los Angeles, CA 90001" +147063,Apple Airpods Headphones,1,150,01/23/19 16:16,"493 Hill St, San Francisco, CA 94016" +147064,Apple Airpods Headphones,1,150,01/17/19 21:30,"116 Wilson St, Boston, MA 02215" +147065,AAA Batteries (4-pack),1,2.99,01/19/19 20:07,"317 Cherry St, New York City, NY 10001" +147066,Apple Airpods Headphones,1,150,01/06/19 20:07,"165 Hill St, San Francisco, CA 94016" +147067,34in Ultrawide Monitor,1,379.99,01/22/19 23:56,"523 Cedar St, San Francisco, CA 94016" +147068,iPhone,1,700,01/25/19 15:37,"244 South St, Seattle, WA 98101" +147069,Lightning Charging Cable,1,14.95,01/08/19 21:42,"388 West St, Los Angeles, CA 90001" +147070,AA Batteries (4-pack),1,3.84,01/30/19 18:11,"833 Cedar St, New York City, NY 10001" +147071,Lightning Charging Cable,1,14.95,01/06/19 18:26,"306 Park St, New York City, NY 10001" +147072,Bose SoundSport Headphones,1,99.99,01/12/19 09:40,"557 Hickory St, Los Angeles, CA 90001" +147073,LG Dryer,1,600.0,01/23/19 15:46,"995 Lincoln St, Portland, OR 97035" +147074,Macbook Pro Laptop,1,1700,01/24/19 09:42,"337 Wilson St, Los Angeles, CA 90001" +147075,USB-C Charging Cable,1,11.95,01/17/19 11:48,"250 Adams St, Los Angeles, CA 90001" +147076,AAA Batteries (4-pack),4,2.99,01/17/19 18:06,"234 Church St, Dallas, TX 75001" +147077,Google Phone,1,600,01/10/19 14:48,"156 6th St, Boston, MA 02215" +147078,AA Batteries (4-pack),2,3.84,01/10/19 15:19,"824 West St, San Francisco, CA 94016" +147079,Flatscreen TV,1,300,01/20/19 14:18,"284 Sunset St, San Francisco, CA 94016" +147080,Apple Airpods Headphones,1,150,01/26/19 21:24,"465 11th St, Los Angeles, CA 90001" +147081,27in FHD Monitor,1,149.99,01/04/19 20:51,"539 Sunset St, San Francisco, CA 94016" +147082,Wired Headphones,1,11.99,01/14/19 09:39,"730 Chestnut St, Atlanta, GA 30301" +147083,Lightning Charging Cable,1,14.95,01/31/19 13:50,"829 13th St, San Francisco, CA 94016" +147084,Wired Headphones,1,11.99,01/24/19 11:23,"605 4th St, San Francisco, CA 94016" +147085,AAA Batteries (4-pack),1,2.99,01/15/19 16:20,"710 Lake St, Austin, TX 73301" +147086,Flatscreen TV,1,300,01/14/19 23:15,"611 Johnson St, San Francisco, CA 94016" +147087,AA Batteries (4-pack),1,3.84,01/03/19 19:15,"538 7th St, Atlanta, GA 30301" +147088,27in FHD Monitor,1,149.99,01/16/19 17:46,"830 Madison St, Atlanta, GA 30301" +147089,27in 4K Gaming Monitor,1,389.99,01/10/19 23:06,"990 North St, Seattle, WA 98101" +147090,Flatscreen TV,1,300,01/01/19 14:16,"122 Willow St, Los Angeles, CA 90001" +147091,Apple Airpods Headphones,1,150,01/24/19 18:39,"210 Highland St, Boston, MA 02215" +147092,USB-C Charging Cable,1,11.95,01/16/19 23:47,"297 West St, Los Angeles, CA 90001" +147093,USB-C Charging Cable,1,11.95,01/30/19 22:27,"299 7th St, San Francisco, CA 94016" +147094,Apple Airpods Headphones,1,150,01/07/19 21:55,"71 9th St, Portland, OR 97035" +147095,Lightning Charging Cable,1,14.95,01/24/19 14:49,"230 13th St, Boston, MA 02215" +147096,USB-C Charging Cable,1,11.95,01/20/19 16:49,"760 7th St, Boston, MA 02215" +147097,27in FHD Monitor,1,149.99,01/17/19 19:21,"304 Lake St, San Francisco, CA 94016" +147098,Wired Headphones,1,11.99,01/29/19 15:26,"432 Chestnut St, Los Angeles, CA 90001" +147099,Lightning Charging Cable,1,14.95,01/09/19 20:45,"104 Cedar St, San Francisco, CA 94016" +147100,USB-C Charging Cable,1,11.95,01/12/19 19:44,"622 Meadow St, Seattle, WA 98101" +147101,Macbook Pro Laptop,1,1700,01/22/19 10:08,"353 Madison St, Boston, MA 02215" +147102,Lightning Charging Cable,1,14.95,01/24/19 10:24,"101 Johnson St, San Francisco, CA 94016" +147103,Lightning Charging Cable,2,14.95,01/29/19 17:53,"528 South St, New York City, NY 10001" +147104,AAA Batteries (4-pack),1,2.99,01/15/19 02:04,"104 Lakeview St, Dallas, TX 75001" +147104,27in 4K Gaming Monitor,1,389.99,01/15/19 02:04,"104 Lakeview St, Dallas, TX 75001" +147105,34in Ultrawide Monitor,1,379.99,01/30/19 17:32,"974 Ridge St, Los Angeles, CA 90001" +147106,Bose SoundSport Headphones,1,99.99,01/31/19 11:03,"840 11th St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +147107,Lightning Charging Cable,2,14.95,01/26/19 21:59,"453 6th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +147108,AA Batteries (4-pack),1,3.84,01/16/19 16:21,"419 Pine St, San Francisco, CA 94016" +147109,27in FHD Monitor,1,149.99,01/12/19 08:00,"682 Lakeview St, San Francisco, CA 94016" +147110,USB-C Charging Cable,1,11.95,01/15/19 17:32,"192 Elm St, Portland, ME 04101" +147111,Bose SoundSport Headphones,1,99.99,01/20/19 20:48,"418 Cherry St, San Francisco, CA 94016" +147112,Lightning Charging Cable,1,14.95,01/25/19 12:22,"376 Ridge St, Seattle, WA 98101" +147113,20in Monitor,1,109.99,01/30/19 19:13,"39 Highland St, San Francisco, CA 94016" +147114,USB-C Charging Cable,1,11.95,01/06/19 09:37,"495 11th St, Los Angeles, CA 90001" +147115,Wired Headphones,1,11.99,01/27/19 11:42,"706 North St, San Francisco, CA 94016" +147116,USB-C Charging Cable,1,11.95,01/15/19 19:07,"964 Main St, New York City, NY 10001" +147117,LG Washing Machine,1,600.0,01/14/19 08:29,"961 12th St, San Francisco, CA 94016" +147118,27in 4K Gaming Monitor,1,389.99,01/20/19 11:16,"457 North St, Seattle, WA 98101" +147119,iPhone,1,700,01/31/19 22:11,"407 Main St, Dallas, TX 75001" +147119,Apple Airpods Headphones,1,150,01/31/19 22:11,"407 Main St, Dallas, TX 75001" +147120,AAA Batteries (4-pack),1,2.99,01/15/19 01:47,"443 Ridge St, Seattle, WA 98101" +147121,Flatscreen TV,1,300,01/04/19 23:29,"77 River St, Dallas, TX 75001" +147122,AAA Batteries (4-pack),1,2.99,01/08/19 12:33,"573 9th St, Atlanta, GA 30301" +147123,Macbook Pro Laptop,1,1700,01/04/19 16:23,"28 4th St, San Francisco, CA 94016" +147124,27in FHD Monitor,1,149.99,01/19/19 09:06,"704 Madison St, Portland, OR 97035" +147125,Apple Airpods Headphones,1,150,01/16/19 19:04,"862 Ridge St, San Francisco, CA 94016" +147126,Google Phone,1,600,01/06/19 23:28,"11 Ridge St, San Francisco, CA 94016" +147127,Wired Headphones,1,11.99,01/31/19 16:51,"639 Highland St, New York City, NY 10001" +147128,AA Batteries (4-pack),1,3.84,01/25/19 10:24,"2 Jefferson St, San Francisco, CA 94016" +147129,Apple Airpods Headphones,1,150,01/27/19 15:36,"82 Adams St, Boston, MA 02215" +147130,Lightning Charging Cable,1,14.95,01/04/19 14:31,"626 10th St, Atlanta, GA 30301" +147131,27in FHD Monitor,1,149.99,01/09/19 17:55,"265 Jefferson St, San Francisco, CA 94016" +147132,Lightning Charging Cable,1,14.95,01/21/19 18:59,"352 Hickory St, Boston, MA 02215" +147133,AAA Batteries (4-pack),1,2.99,01/29/19 16:15,"792 6th St, San Francisco, CA 94016" +147134,AA Batteries (4-pack),1,3.84,01/22/19 09:42,"853 Walnut St, Seattle, WA 98101" +147135,Bose SoundSport Headphones,1,99.99,01/09/19 21:28,"965 Park St, Boston, MA 02215" +147136,34in Ultrawide Monitor,1,379.99,01/27/19 15:05,"353 Wilson St, Boston, MA 02215" +147137,Apple Airpods Headphones,1,150,01/02/19 14:45,"643 13th St, Los Angeles, CA 90001" +147138,AAA Batteries (4-pack),1,2.99,01/06/19 14:43,"580 14th St, Portland, ME 04101" +147139,Lightning Charging Cable,1,14.95,01/04/19 15:18,"968 7th St, Los Angeles, CA 90001" +147140,20in Monitor,1,109.99,01/28/19 16:04,"359 Adams St, Los Angeles, CA 90001" +147141,34in Ultrawide Monitor,1,379.99,01/22/19 11:41,"207 Lincoln St, Atlanta, GA 30301" +147142,Wired Headphones,1,11.99,01/07/19 00:09,"917 Jackson St, Seattle, WA 98101" +147143,AA Batteries (4-pack),1,3.84,01/14/19 08:35,"171 Church St, New York City, NY 10001" +147144,iPhone,1,700,01/25/19 20:35,"33 Pine St, Atlanta, GA 30301" +147145,Bose SoundSport Headphones,1,99.99,01/28/19 12:29,"812 5th St, Boston, MA 02215" +147146,Google Phone,1,600,01/14/19 23:03,"967 1st St, Dallas, TX 75001" +147147,Wired Headphones,1,11.99,01/27/19 18:09,"37 Hill St, Los Angeles, CA 90001" +147148,Apple Airpods Headphones,1,150,01/20/19 10:57,"815 Cherry St, Portland, OR 97035" +147149,USB-C Charging Cable,1,11.95,01/02/19 19:26,"949 Main St, Seattle, WA 98101" +147150,AA Batteries (4-pack),3,3.84,01/02/19 18:00,"383 Spruce St, San Francisco, CA 94016" +147151,Lightning Charging Cable,1,14.95,01/18/19 13:15,"164 Willow St, Boston, MA 02215" +147152,27in 4K Gaming Monitor,1,389.99,01/01/19 18:50,"107 11th St, San Francisco, CA 94016" +147153,Flatscreen TV,1,300,01/03/19 10:58,"910 Adams St, Portland, OR 97035" +147154,Lightning Charging Cable,1,14.95,01/17/19 09:30,"313 4th St, New York City, NY 10001" +147155,AA Batteries (4-pack),1,3.84,01/08/19 16:05,"466 Sunset St, San Francisco, CA 94016" +147156,Lightning Charging Cable,1,14.95,01/21/19 09:56,"847 9th St, Seattle, WA 98101" +147157,Wired Headphones,2,11.99,01/13/19 10:12,"766 Ridge St, Los Angeles, CA 90001" +147158,Apple Airpods Headphones,1,150,01/30/19 13:59,"318 Adams St, Los Angeles, CA 90001" +147159,Apple Airpods Headphones,1,150,01/22/19 16:45,"234 8th St, Portland, OR 97035" +147160,AA Batteries (4-pack),1,3.84,01/08/19 23:54,"6 Hill St, Dallas, TX 75001" +147161,Lightning Charging Cable,1,14.95,01/10/19 00:44,"751 Maple St, San Francisco, CA 94016" +147162,Bose SoundSport Headphones,1,99.99,01/19/19 23:39,"939 Maple St, Los Angeles, CA 90001" +147163,AAA Batteries (4-pack),3,2.99,01/14/19 08:53,"291 Sunset St, San Francisco, CA 94016" +147164,iPhone,1,700,01/01/19 22:53,"915 Meadow St, New York City, NY 10001" +147165,AAA Batteries (4-pack),1,2.99,01/20/19 10:51,"382 12th St, San Francisco, CA 94016" +147166,Apple Airpods Headphones,1,150,01/11/19 22:22,"633 10th St, San Francisco, CA 94016" +147167,USB-C Charging Cable,1,11.95,01/05/19 17:59,"613 Johnson St, San Francisco, CA 94016" +147168,Wired Headphones,1,11.99,01/28/19 09:09,"68 Lakeview St, San Francisco, CA 94016" +147169,Lightning Charging Cable,1,14.95,01/05/19 21:28,"953 Lincoln St, Seattle, WA 98101" +147170,Bose SoundSport Headphones,1,99.99,01/10/19 13:00,"614 Highland St, Seattle, WA 98101" +147171,Wired Headphones,1,11.99,01/24/19 17:37,"677 Walnut St, San Francisco, CA 94016" +147172,AAA Batteries (4-pack),1,2.99,01/22/19 20:28,"273 Pine St, Portland, OR 97035" +147173,Flatscreen TV,1,300,01/12/19 12:18,"856 Chestnut St, Los Angeles, CA 90001" +147174,Apple Airpods Headphones,1,150,01/19/19 01:44,"211 Jefferson St, Austin, TX 73301" +147175,Google Phone,1,600,01/18/19 17:39,"196 Adams St, Dallas, TX 75001" +147176,Wired Headphones,1,11.99,01/05/19 13:55,"52 7th St, Portland, OR 97035" +147177,AA Batteries (4-pack),1,3.84,01/30/19 10:48,"214 Pine St, Portland, OR 97035" +147178,34in Ultrawide Monitor,1,379.99,01/16/19 11:09,"352 Lincoln St, New York City, NY 10001" +147179,Macbook Pro Laptop,1,1700,01/07/19 18:10,"238 2nd St, Los Angeles, CA 90001" +147180,20in Monitor,1,109.99,01/26/19 13:06,"842 5th St, Boston, MA 02215" +147181,Wired Headphones,1,11.99,01/02/19 23:41,"989 Elm St, Boston, MA 02215" +147182,Wired Headphones,1,11.99,01/19/19 12:36,"755 Adams St, Seattle, WA 98101" +147183,Lightning Charging Cable,1,14.95,01/30/19 18:33,"350 Hickory St, Boston, MA 02215" +147184,ThinkPad Laptop,1,999.99,01/19/19 13:42,"76 Jackson St, Portland, OR 97035" +147185,Lightning Charging Cable,1,14.95,01/09/19 21:36,"261 West St, San Francisco, CA 94016" +147186,ThinkPad Laptop,1,999.99,01/29/19 08:08,"223 Highland St, Seattle, WA 98101" +147187,Lightning Charging Cable,1,14.95,01/09/19 20:06,"976 5th St, Los Angeles, CA 90001" +147188,ThinkPad Laptop,1,999.99,01/27/19 16:26,"20 Washington St, Los Angeles, CA 90001" +147189,Wired Headphones,1,11.99,01/18/19 22:56,"655 Main St, San Francisco, CA 94016" +147190,Wired Headphones,1,11.99,01/07/19 15:53,"683 Cedar St, Portland, ME 04101" +147191,USB-C Charging Cable,2,11.95,01/29/19 20:38,"43 Jackson St, Los Angeles, CA 90001" +147192,Apple Airpods Headphones,1,150,01/29/19 09:38,"33 6th St, Los Angeles, CA 90001" +147193,Lightning Charging Cable,2,14.95,01/21/19 12:06,"797 Main St, San Francisco, CA 94016" +147194,27in 4K Gaming Monitor,1,389.99,01/24/19 22:35,"789 8th St, San Francisco, CA 94016" +147195,Lightning Charging Cable,1,14.95,01/30/19 20:04,"416 West St, San Francisco, CA 94016" +147196,LG Washing Machine,1,600.0,01/23/19 18:54,"798 Johnson St, New York City, NY 10001" +147197,AA Batteries (4-pack),1,3.84,01/15/19 12:23,"907 Cedar St, Boston, MA 02215" +147197,Bose SoundSport Headphones,1,99.99,01/15/19 12:23,"907 Cedar St, Boston, MA 02215" +147198,Wired Headphones,1,11.99,01/15/19 20:30,"309 10th St, New York City, NY 10001" +147199,Apple Airpods Headphones,1,150,01/26/19 06:29,"164 Meadow St, Dallas, TX 75001" +147200,iPhone,1,700,01/10/19 20:48,"230 North St, Atlanta, GA 30301" +147201,ThinkPad Laptop,1,999.99,01/05/19 10:03,"876 6th St, San Francisco, CA 94016" +147202,Macbook Pro Laptop,1,1700,01/11/19 20:57,"370 14th St, Los Angeles, CA 90001" +147203,USB-C Charging Cable,1,11.95,01/28/19 14:57,"249 11th St, Seattle, WA 98101" +147204,AAA Batteries (4-pack),1,2.99,01/04/19 09:26,"533 Hickory St, Dallas, TX 75001" +147205,USB-C Charging Cable,1,11.95,01/10/19 16:27,"281 1st St, Atlanta, GA 30301" +147206,Bose SoundSport Headphones,1,99.99,01/03/19 18:48,"813 Sunset St, Los Angeles, CA 90001" +147207,Wired Headphones,1,11.99,01/06/19 21:38,"686 West St, New York City, NY 10001" +147208,Apple Airpods Headphones,1,150,01/24/19 20:03,"161 Madison St, San Francisco, CA 94016" +147209,AAA Batteries (4-pack),1,2.99,01/05/19 16:42,"175 Madison St, Boston, MA 02215" +147210,27in 4K Gaming Monitor,1,389.99,01/10/19 08:44,"147 Sunset St, Boston, MA 02215" +147211,USB-C Charging Cable,1,11.95,01/27/19 22:25,"912 6th St, San Francisco, CA 94016" +147212,Lightning Charging Cable,1,14.95,01/04/19 09:19,"356 7th St, Dallas, TX 75001" +147213,Wired Headphones,1,11.99,01/18/19 15:11,"508 Ridge St, Boston, MA 02215" +147214,iPhone,1,700,01/27/19 12:36,"806 11th St, New York City, NY 10001" +147215,Apple Airpods Headphones,1,150,01/14/19 23:47,"193 2nd St, New York City, NY 10001" +147216,USB-C Charging Cable,1,11.95,01/12/19 08:35,"561 Johnson St, San Francisco, CA 94016" +147217,27in 4K Gaming Monitor,1,389.99,01/24/19 18:21,"643 4th St, Austin, TX 73301" +147218,AAA Batteries (4-pack),2,2.99,01/29/19 09:53,"454 Meadow St, Los Angeles, CA 90001" +147219,AAA Batteries (4-pack),1,2.99,01/24/19 11:06,"303 4th St, New York City, NY 10001" +147220,AAA Batteries (4-pack),4,2.99,01/11/19 08:18,"757 Lake St, Dallas, TX 75001" +147221,AAA Batteries (4-pack),2,2.99,01/29/19 18:04,"186 West St, Dallas, TX 75001" +147222,Google Phone,1,600,01/03/19 19:31,"749 Wilson St, New York City, NY 10001" +147223,AAA Batteries (4-pack),1,2.99,01/18/19 14:00,"290 4th St, New York City, NY 10001" +147224,Wired Headphones,1,11.99,01/06/19 17:01,"362 Hill St, San Francisco, CA 94016" +147225,USB-C Charging Cable,1,11.95,01/19/19 12:37,"854 Lincoln St, Boston, MA 02215" +147226,AAA Batteries (4-pack),1,2.99,01/10/19 10:47,"528 North St, Atlanta, GA 30301" +147227,Lightning Charging Cable,1,14.95,01/15/19 18:11,"579 Elm St, San Francisco, CA 94016" +147228,AAA Batteries (4-pack),2,2.99,01/12/19 14:45,"518 Wilson St, Portland, OR 97035" +147229,AA Batteries (4-pack),2,3.84,01/22/19 11:43,"785 Chestnut St, New York City, NY 10001" +147230,Apple Airpods Headphones,1,150,01/17/19 02:57,"136 Hill St, New York City, NY 10001" +147231,Bose SoundSport Headphones,1,99.99,01/05/19 12:17,"392 North St, New York City, NY 10001" +147232,20in Monitor,1,109.99,01/24/19 22:22,"560 Sunset St, Los Angeles, CA 90001" +147233,Lightning Charging Cable,1,14.95,01/26/19 18:24,"156 Willow St, San Francisco, CA 94016" +147234,Apple Airpods Headphones,1,150,01/12/19 20:04,"947 West St, Atlanta, GA 30301" +147235,Apple Airpods Headphones,1,150,01/22/19 13:56,"725 Johnson St, Los Angeles, CA 90001" +147236,USB-C Charging Cable,1,11.95,01/22/19 11:43,"495 Maple St, San Francisco, CA 94016" +147236,AAA Batteries (4-pack),1,2.99,01/22/19 11:43,"495 Maple St, San Francisco, CA 94016" +147237,USB-C Charging Cable,1,11.95,01/07/19 21:14,"848 Meadow St, San Francisco, CA 94016" +147238,Bose SoundSport Headphones,1,99.99,01/07/19 16:52,"107 Hill St, Austin, TX 73301" +147239,Google Phone,1,600,01/10/19 15:23,"68 8th St, San Francisco, CA 94016" +147240,Lightning Charging Cable,1,14.95,01/01/19 21:55,"20 14th St, Austin, TX 73301" +147241,Wired Headphones,1,11.99,01/13/19 08:15,"691 5th St, Portland, OR 97035" +147242,AAA Batteries (4-pack),1,2.99,01/18/19 17:30,"818 Park St, San Francisco, CA 94016" +147243,ThinkPad Laptop,1,999.99,01/07/19 12:08,"219 Johnson St, Austin, TX 73301" +147244,27in 4K Gaming Monitor,1,389.99,01/07/19 13:28,"336 7th St, Los Angeles, CA 90001" +147245,Wired Headphones,2,11.99,01/03/19 23:01,"182 Willow St, Atlanta, GA 30301" +147246,34in Ultrawide Monitor,1,379.99,01/03/19 11:12,"748 Willow St, Boston, MA 02215" +147247,Apple Airpods Headphones,1,150,01/12/19 20:25,"630 Lake St, Atlanta, GA 30301" +147248,AA Batteries (4-pack),1,3.84,01/16/19 08:30,"265 8th St, San Francisco, CA 94016" +147249,AA Batteries (4-pack),1,3.84,01/28/19 16:03,"47 Forest St, Austin, TX 73301" +147250,AAA Batteries (4-pack),1,2.99,01/07/19 10:28,"769 4th St, Austin, TX 73301" +147251,Apple Airpods Headphones,1,150,01/24/19 11:47,"463 12th St, Austin, TX 73301" +147252,Apple Airpods Headphones,1,150,01/12/19 12:18,"780 Lakeview St, Portland, OR 97035" +147253,34in Ultrawide Monitor,1,379.99,01/22/19 11:36,"355 Madison St, San Francisco, CA 94016" +147254,Wired Headphones,1,11.99,01/21/19 02:46,"178 Church St, Atlanta, GA 30301" +147255,AAA Batteries (4-pack),1,2.99,01/06/19 12:48,"679 Center St, Los Angeles, CA 90001" +147256,Lightning Charging Cable,1,14.95,01/24/19 18:08,"42 5th St, San Francisco, CA 94016" +147257,Wired Headphones,1,11.99,01/28/19 14:44,"612 Cedar St, San Francisco, CA 94016" +147258,Lightning Charging Cable,1,14.95,01/11/19 19:49,"700 Hill St, New York City, NY 10001" +147259,USB-C Charging Cable,1,11.95,01/25/19 09:11,"431 Jefferson St, Los Angeles, CA 90001" +147260,Google Phone,1,600,01/21/19 20:55,"249 Wilson St, Dallas, TX 75001" +147261,Macbook Pro Laptop,1,1700,01/30/19 21:27,"482 Willow St, Atlanta, GA 30301" +147262,Wired Headphones,1,11.99,01/30/19 15:42,"392 Cedar St, Los Angeles, CA 90001" +147263,Lightning Charging Cable,1,14.95,01/27/19 17:06,"467 4th St, Los Angeles, CA 90001" +147264,Wired Headphones,1,11.99,01/09/19 23:51,"594 West St, Seattle, WA 98101" +147264,Lightning Charging Cable,1,14.95,01/09/19 23:51,"594 West St, Seattle, WA 98101" +147265,USB-C Charging Cable,1,11.95,01/14/19 19:39,"792 Lincoln St, San Francisco, CA 94016" +147266,Bose SoundSport Headphones,1,99.99,01/20/19 11:45,"505 Church St, Dallas, TX 75001" +147267,Lightning Charging Cable,2,14.95,01/15/19 17:17,"251 West St, Austin, TX 73301" +147268,USB-C Charging Cable,1,11.95,01/07/19 12:47,"174 Maple St, Boston, MA 02215" +147269,27in 4K Gaming Monitor,1,389.99,01/31/19 11:29,"805 Madison St, Portland, ME 04101" +147270,27in 4K Gaming Monitor,1,389.99,01/24/19 11:21,"781 Jefferson St, San Francisco, CA 94016" +147271,USB-C Charging Cable,1,11.95,01/04/19 18:32,"435 Elm St, Dallas, TX 75001" +147272,Flatscreen TV,1,300,01/31/19 17:08,"922 River St, New York City, NY 10001" +147272,Macbook Pro Laptop,1,1700,01/31/19 17:08,"922 River St, New York City, NY 10001" +147273,AAA Batteries (4-pack),1,2.99,01/18/19 14:57,"861 Chestnut St, New York City, NY 10001" +147274,Bose SoundSport Headphones,1,99.99,01/22/19 01:49,"40 4th St, Los Angeles, CA 90001" +147275,Wired Headphones,1,11.99,01/02/19 13:43,"124 6th St, Boston, MA 02215" +147276,AA Batteries (4-pack),1,3.84,01/01/19 14:45,"554 10th St, San Francisco, CA 94016" +147277,AA Batteries (4-pack),1,3.84,01/30/19 15:28,"771 West St, San Francisco, CA 94016" +147278,AA Batteries (4-pack),1,3.84,01/22/19 09:36,"730 Sunset St, New York City, NY 10001" +147279,USB-C Charging Cable,1,11.95,01/26/19 11:08,"205 12th St, Dallas, TX 75001" +147280,Lightning Charging Cable,1,14.95,01/19/19 11:40,"543 6th St, San Francisco, CA 94016" +147281,Wired Headphones,1,11.99,01/05/19 08:16,"708 West St, San Francisco, CA 94016" +147282,AA Batteries (4-pack),1,3.84,01/25/19 11:03,"196 7th St, Los Angeles, CA 90001" +147283,Apple Airpods Headphones,1,150,01/10/19 09:49,"510 Spruce St, San Francisco, CA 94016" +147284,AA Batteries (4-pack),1,3.84,01/02/19 16:18,"812 6th St, Boston, MA 02215" +147285,Wired Headphones,1,11.99,01/10/19 09:23,"72 10th St, Boston, MA 02215" +147286,Apple Airpods Headphones,1,150,01/02/19 20:41,"699 Adams St, Los Angeles, CA 90001" +147287,Bose SoundSport Headphones,1,99.99,01/20/19 01:05,"637 Walnut St, Atlanta, GA 30301" +147288,Macbook Pro Laptop,1,1700,01/25/19 21:28,"268 Walnut St, New York City, NY 10001" +147289,Bose SoundSport Headphones,1,99.99,01/02/19 09:03,"858 Chestnut St, Portland, OR 97035" +147290,AAA Batteries (4-pack),1,2.99,01/10/19 08:57,"850 11th St, New York City, NY 10001" +147291,Apple Airpods Headphones,1,150,01/12/19 20:42,"118 2nd St, Atlanta, GA 30301" +147292,AAA Batteries (4-pack),1,2.99,01/19/19 17:11,"346 Lake St, Los Angeles, CA 90001" +147293,Lightning Charging Cable,1,14.95,01/28/19 05:16,"923 Willow St, Los Angeles, CA 90001" +147294,AAA Batteries (4-pack),1,2.99,01/11/19 00:33,"797 Willow St, Boston, MA 02215" +147295,AA Batteries (4-pack),1,3.84,01/03/19 06:48,"357 7th St, Los Angeles, CA 90001" +147296,LG Dryer,1,600.0,01/10/19 07:42,"987 10th St, Portland, OR 97035" +147297,Lightning Charging Cable,1,14.95,01/05/19 20:10,"750 7th St, San Francisco, CA 94016" +147298,AA Batteries (4-pack),1,3.84,01/02/19 07:52,"369 2nd St, Los Angeles, CA 90001" +147299,AA Batteries (4-pack),2,3.84,01/17/19 14:07,"302 Washington St, Boston, MA 02215" +147300,27in FHD Monitor,1,149.99,01/31/19 15:24,"839 8th St, San Francisco, CA 94016" +147301,AAA Batteries (4-pack),2,2.99,01/20/19 21:28,"734 Adams St, Atlanta, GA 30301" +147302,Macbook Pro Laptop,1,1700,01/10/19 00:11,"907 Madison St, Austin, TX 73301" +147302,AAA Batteries (4-pack),1,2.99,01/10/19 00:11,"907 Madison St, Austin, TX 73301" +147303,27in FHD Monitor,1,149.99,01/29/19 18:13,"212 Hill St, San Francisco, CA 94016" +147304,Lightning Charging Cable,1,14.95,01/29/19 09:37,"513 Ridge St, Los Angeles, CA 90001" +147305,Lightning Charging Cable,1,14.95,01/30/19 06:00,"500 1st St, San Francisco, CA 94016" +147306,Wired Headphones,2,11.99,01/30/19 21:07,"738 9th St, New York City, NY 10001" +147307,Wired Headphones,1,11.99,01/14/19 08:22,"746 Jefferson St, Austin, TX 73301" +147308,20in Monitor,1,109.99,01/13/19 21:51,"698 Johnson St, Atlanta, GA 30301" +147309,AA Batteries (4-pack),4,3.84,01/08/19 10:09,"977 Lakeview St, Los Angeles, CA 90001" +147310,ThinkPad Laptop,1,999.99,01/30/19 12:15,"444 Madison St, Boston, MA 02215" +147311,Lightning Charging Cable,1,14.95,01/17/19 21:17,"16 10th St, Atlanta, GA 30301" +147312,Lightning Charging Cable,1,14.95,01/29/19 16:25,"36 1st St, Dallas, TX 75001" +147313,USB-C Charging Cable,1,11.95,01/21/19 08:57,"761 11th St, Atlanta, GA 30301" +147314,Bose SoundSport Headphones,1,99.99,01/22/19 15:49,"304 10th St, Los Angeles, CA 90001" +147315,Bose SoundSport Headphones,1,99.99,01/10/19 19:05,"329 Lakeview St, Dallas, TX 75001" +147316,Google Phone,1,600,01/24/19 17:31,"642 13th St, Boston, MA 02215" +147317,Macbook Pro Laptop,1,1700,01/02/19 14:46,"543 Adams St, Los Angeles, CA 90001" +147318,Lightning Charging Cable,1,14.95,01/07/19 21:54,"346 Hickory St, San Francisco, CA 94016" +147319,Vareebadd Phone,1,400,01/07/19 10:30,"3 Main St, San Francisco, CA 94016" +147320,Lightning Charging Cable,1,14.95,01/02/19 14:40,"213 Walnut St, Los Angeles, CA 90001" +147321,27in 4K Gaming Monitor,1,389.99,01/20/19 02:51,"920 Jackson St, San Francisco, CA 94016" +147322,ThinkPad Laptop,1,999.99,01/23/19 20:14,"272 Cherry St, Portland, ME 04101" +147323,USB-C Charging Cable,1,11.95,01/15/19 16:51,"358 Sunset St, San Francisco, CA 94016" +147324,Apple Airpods Headphones,1,150,01/11/19 11:00,"250 Adams St, San Francisco, CA 94016" +147325,AA Batteries (4-pack),1,3.84,01/14/19 10:48,"872 Cherry St, Dallas, TX 75001" +147326,27in 4K Gaming Monitor,1,389.99,01/18/19 20:53,"493 Meadow St, New York City, NY 10001" +147327,27in FHD Monitor,1,149.99,01/14/19 00:08,"801 Willow St, San Francisco, CA 94016" +147328,ThinkPad Laptop,1,999.99,01/03/19 11:57,"389 11th St, Dallas, TX 75001" +147329,Lightning Charging Cable,2,14.95,01/14/19 00:00,"960 2nd St, Los Angeles, CA 90001" +147330,Bose SoundSport Headphones,1,99.99,01/25/19 15:30,"410 Pine St, New York City, NY 10001" +147331,Wired Headphones,1,11.99,01/11/19 09:50,"427 Walnut St, San Francisco, CA 94016" +147332,Wired Headphones,1,11.99,01/19/19 13:35,"669 Meadow St, Dallas, TX 75001" +147333,Bose SoundSport Headphones,1,99.99,01/22/19 23:17,"107 Madison St, Portland, OR 97035" +147334,iPhone,1,700,01/19/19 17:27,"305 Maple St, Dallas, TX 75001" +147334,Wired Headphones,1,11.99,01/19/19 17:27,"305 Maple St, Dallas, TX 75001" +147335,Apple Airpods Headphones,1,150,01/31/19 21:13,"281 9th St, San Francisco, CA 94016" +147336,AA Batteries (4-pack),1,3.84,01/03/19 06:39,"432 14th St, Portland, OR 97035" +147337,AA Batteries (4-pack),3,3.84,01/17/19 19:37,"630 Center St, Boston, MA 02215" +147338,27in 4K Gaming Monitor,1,389.99,01/11/19 14:31,"979 Jackson St, Austin, TX 73301" +147339,Lightning Charging Cable,1,14.95,01/21/19 08:31,"985 Walnut St, Austin, TX 73301" +147340,Bose SoundSport Headphones,1,99.99,01/31/19 17:08,"295 Lakeview St, Seattle, WA 98101" +147341,AA Batteries (4-pack),1,3.84,01/29/19 18:25,"706 Park St, Seattle, WA 98101" +147342,27in 4K Gaming Monitor,1,389.99,01/10/19 11:51,"426 Center St, Portland, OR 97035" +147343,Apple Airpods Headphones,1,150,01/14/19 14:01,"574 10th St, Atlanta, GA 30301" +147344,Apple Airpods Headphones,1,150,01/09/19 08:25,"409 Jefferson St, San Francisco, CA 94016" +147345,AA Batteries (4-pack),1,3.84,01/12/19 20:20,"850 Forest St, Dallas, TX 75001" +147346,Lightning Charging Cable,1,14.95,01/07/19 17:52,"983 Main St, San Francisco, CA 94016" +147347,Bose SoundSport Headphones,1,99.99,01/24/19 21:43,"147 Church St, Los Angeles, CA 90001" +147348,Apple Airpods Headphones,1,150,01/06/19 21:34,"156 Washington St, San Francisco, CA 94016" +147349,27in FHD Monitor,1,149.99,01/17/19 09:20,"664 12th St, San Francisco, CA 94016" +147350,Wired Headphones,1,11.99,01/10/19 00:21,"877 7th St, San Francisco, CA 94016" +147351,USB-C Charging Cable,1,11.95,01/02/19 00:55,"424 West St, Atlanta, GA 30301" +147352,AAA Batteries (4-pack),1,2.99,01/22/19 20:44,"105 Pine St, Boston, MA 02215" +147353,Apple Airpods Headphones,1,150,01/13/19 11:37,"577 Dogwood St, Dallas, TX 75001" +147354,USB-C Charging Cable,1,11.95,01/19/19 10:21,"29 Hickory St, Seattle, WA 98101" +147355,Wired Headphones,1,11.99,01/12/19 02:22,"937 8th St, Austin, TX 73301" +147356,Macbook Pro Laptop,1,1700,01/02/19 12:50,"623 4th St, New York City, NY 10001" +147357,Apple Airpods Headphones,1,150,01/09/19 09:03,"812 7th St, Portland, ME 04101" +147358,AAA Batteries (4-pack),1,2.99,01/09/19 06:49,"392 4th St, Los Angeles, CA 90001" +147359,Lightning Charging Cable,2,14.95,01/27/19 10:28,"238 River St, Seattle, WA 98101" +147360,AAA Batteries (4-pack),1,2.99,01/28/19 19:39,"773 Spruce St, San Francisco, CA 94016" +147361,Lightning Charging Cable,1,14.95,01/08/19 18:45,"187 River St, Los Angeles, CA 90001" +147362,34in Ultrawide Monitor,1,379.99,01/28/19 22:25,"632 Church St, New York City, NY 10001" +147363,Lightning Charging Cable,1,14.95,01/14/19 21:05,"115 13th St, Dallas, TX 75001" +147364,ThinkPad Laptop,1,999.99,01/28/19 14:28,"32 8th St, Portland, OR 97035" +147365,Macbook Pro Laptop,1,1700,01/01/19 19:42,"614 7th St, New York City, NY 10001" +147366,Macbook Pro Laptop,1,1700,01/01/19 13:09,"187 Hickory St, San Francisco, CA 94016" +147367,AA Batteries (4-pack),1,3.84,01/05/19 18:55,"43 Lincoln St, San Francisco, CA 94016" +147368,AAA Batteries (4-pack),1,2.99,01/08/19 13:59,"830 1st St, Boston, MA 02215" +147369,ThinkPad Laptop,1,999.99,01/05/19 10:58,"810 Johnson St, San Francisco, CA 94016" +147370,Flatscreen TV,1,300,01/15/19 22:59,"292 Meadow St, Boston, MA 02215" +147371,Macbook Pro Laptop,1,1700,01/28/19 02:34,"904 Sunset St, New York City, NY 10001" +147372,Lightning Charging Cable,1,14.95,01/16/19 14:36,"180 14th St, Boston, MA 02215" +147373,Flatscreen TV,1,300,01/23/19 03:29,"748 Highland St, Portland, ME 04101" +147374,20in Monitor,1,109.99,01/15/19 22:18,"568 Lakeview St, San Francisco, CA 94016" +147375,27in 4K Gaming Monitor,1,389.99,01/30/19 09:58,"160 4th St, Austin, TX 73301" +147376,20in Monitor,1,109.99,01/13/19 21:42,"608 Park St, Portland, ME 04101" +147377,USB-C Charging Cable,1,11.95,01/31/19 13:12,"644 9th St, Dallas, TX 75001" +147378,Lightning Charging Cable,1,14.95,01/07/19 13:31,"735 Elm St, San Francisco, CA 94016" +147379,27in FHD Monitor,1,149.99,01/21/19 13:20,"158 2nd St, Austin, TX 73301" +147380,27in 4K Gaming Monitor,1,389.99,01/13/19 23:15,"128 Center St, Los Angeles, CA 90001" +147381,AA Batteries (4-pack),1,3.84,01/14/19 12:26,"238 4th St, San Francisco, CA 94016" +147382,USB-C Charging Cable,1,11.95,01/07/19 20:10,"763 5th St, Dallas, TX 75001" +147383,USB-C Charging Cable,1,11.95,01/07/19 13:23,"455 6th St, Boston, MA 02215" +147384,Google Phone,1,600,01/30/19 18:18,"39 Hickory St, Los Angeles, CA 90001" +147385,Wired Headphones,1,11.99,01/09/19 19:51,"253 13th St, Seattle, WA 98101" +147386,27in FHD Monitor,1,149.99,01/14/19 13:16,"549 Wilson St, Los Angeles, CA 90001" +147387,Bose SoundSport Headphones,1,99.99,01/10/19 14:49,"807 Hill St, New York City, NY 10001" +147388,Wired Headphones,2,11.99,01/26/19 05:59,"704 10th St, New York City, NY 10001" +147389,Apple Airpods Headphones,1,150,01/25/19 11:21,"543 Park St, San Francisco, CA 94016" +147390,Apple Airpods Headphones,1,150,01/18/19 15:24,"654 Spruce St, Seattle, WA 98101" +147391,Lightning Charging Cable,1,14.95,01/31/19 15:30,"840 Hill St, New York City, NY 10001" +147392,Wired Headphones,1,11.99,01/10/19 19:32,"387 Highland St, Portland, OR 97035" +147393,Flatscreen TV,1,300,01/15/19 08:41,"21 West St, New York City, NY 10001" +147394,AAA Batteries (4-pack),1,2.99,01/31/19 18:11,"715 Highland St, Portland, OR 97035" +147395,USB-C Charging Cable,1,11.95,01/25/19 21:16,"460 4th St, Portland, OR 97035" +147396,Wired Headphones,1,11.99,01/18/19 11:15,"491 Dogwood St, Austin, TX 73301" +147397,Wired Headphones,1,11.99,01/30/19 13:34,"753 Lakeview St, New York City, NY 10001" +147398,Wired Headphones,1,11.99,01/10/19 10:18,"377 10th St, Boston, MA 02215" +147399,AA Batteries (4-pack),1,3.84,01/31/19 12:04,"211 River St, San Francisco, CA 94016" +147399,27in FHD Monitor,1,149.99,01/31/19 12:04,"211 River St, San Francisco, CA 94016" +147400,ThinkPad Laptop,1,999.99,01/10/19 15:07,"844 Willow St, Seattle, WA 98101" +147401,iPhone,1,700,01/30/19 17:12,"344 1st St, Portland, OR 97035" +147401,Lightning Charging Cable,1,14.95,01/30/19 17:12,"344 1st St, Portland, OR 97035" +147402,Macbook Pro Laptop,1,1700,01/22/19 23:14,"453 11th St, Boston, MA 02215" +147403,Bose SoundSport Headphones,1,99.99,01/21/19 19:25,"273 Main St, New York City, NY 10001" +147404,USB-C Charging Cable,1,11.95,01/28/19 19:15,"485 Washington St, Los Angeles, CA 90001" +147405,Macbook Pro Laptop,1,1700,01/12/19 13:52,"693 Lake St, San Francisco, CA 94016" +147406,Lightning Charging Cable,2,14.95,01/04/19 18:23,"447 Lake St, San Francisco, CA 94016" +147407,AAA Batteries (4-pack),1,2.99,01/04/19 18:11,"554 5th St, Boston, MA 02215" +147408,27in FHD Monitor,1,149.99,01/04/19 12:00,"781 Maple St, Los Angeles, CA 90001" +147409,Vareebadd Phone,1,400,01/14/19 12:56,"806 7th St, San Francisco, CA 94016" +147409,USB-C Charging Cable,1,11.95,01/14/19 12:56,"806 7th St, San Francisco, CA 94016" +147410,Wired Headphones,1,11.99,01/13/19 11:13,"775 Hill St, Dallas, TX 75001" +147411,AAA Batteries (4-pack),1,2.99,01/17/19 11:43,"942 5th St, New York City, NY 10001" +147412,Lightning Charging Cable,3,14.95,01/12/19 21:34,"811 Sunset St, Seattle, WA 98101" +147413,Google Phone,1,600,01/03/19 10:59,"731 1st St, Boston, MA 02215" +147414,27in FHD Monitor,1,149.99,01/22/19 18:09,"884 Dogwood St, Los Angeles, CA 90001" +147415,Lightning Charging Cable,1,14.95,01/10/19 18:12,"708 Hickory St, Los Angeles, CA 90001" +147416,Lightning Charging Cable,1,14.95,01/23/19 18:29,"569 West St, Boston, MA 02215" +147417,USB-C Charging Cable,1,11.95,01/04/19 17:07,"864 Lakeview St, New York City, NY 10001" +147418,Google Phone,1,600,01/12/19 14:46,"452 1st St, Seattle, WA 98101" +147418,USB-C Charging Cable,2,11.95,01/12/19 14:46,"452 1st St, Seattle, WA 98101" +147419,USB-C Charging Cable,1,11.95,01/11/19 11:11,"414 5th St, Boston, MA 02215" +147420,Wired Headphones,1,11.99,01/24/19 10:42,"623 River St, San Francisco, CA 94016" +147421,AAA Batteries (4-pack),1,2.99,01/13/19 15:34,"54 Cherry St, Seattle, WA 98101" +147422,AA Batteries (4-pack),1,3.84,01/15/19 14:27,"756 12th St, San Francisco, CA 94016" +147423,Lightning Charging Cable,1,14.95,01/16/19 19:30,"673 South St, San Francisco, CA 94016" +147424,Apple Airpods Headphones,1,150,01/31/19 14:49,"394 Jefferson St, New York City, NY 10001" +147425,27in 4K Gaming Monitor,1,389.99,01/01/19 14:54,"447 10th St, New York City, NY 10001" +147426,AA Batteries (4-pack),1,3.84,01/17/19 13:39,"609 5th St, Los Angeles, CA 90001" +147427,27in 4K Gaming Monitor,1,389.99,01/05/19 23:52,"690 1st St, Dallas, TX 75001" +,,,,, +147428,Wired Headphones,1,11.99,01/16/19 13:04,"485 Lake St, Seattle, WA 98101" +147429,Lightning Charging Cable,1,14.95,01/15/19 19:41,"935 Highland St, Los Angeles, CA 90001" +147430,AA Batteries (4-pack),2,3.84,01/13/19 23:24,"873 North St, Los Angeles, CA 90001" +147431,Wired Headphones,1,11.99,01/11/19 09:35,"641 14th St, Los Angeles, CA 90001" +147432,iPhone,1,700,01/14/19 13:45,"758 Center St, Los Angeles, CA 90001" +147433,Wired Headphones,3,11.99,01/23/19 16:39,"582 11th St, Los Angeles, CA 90001" +147434,USB-C Charging Cable,1,11.95,01/05/19 14:39,"120 Spruce St, Seattle, WA 98101" +147435,AAA Batteries (4-pack),4,2.99,01/08/19 18:33,"519 Ridge St, Austin, TX 73301" +147436,USB-C Charging Cable,1,11.95,01/07/19 10:26,"341 Hill St, Dallas, TX 75001" +147437,Lightning Charging Cable,1,14.95,01/17/19 13:09,"310 Cedar St, Portland, OR 97035" +147438,AAA Batteries (4-pack),1,2.99,01/13/19 11:50,"288 Lakeview St, San Francisco, CA 94016" +147439,AA Batteries (4-pack),2,3.84,01/08/19 20:04,"370 Maple St, Los Angeles, CA 90001" +147440,ThinkPad Laptop,1,999.99,01/25/19 22:55,"961 South St, Boston, MA 02215" +147441,ThinkPad Laptop,1,999.99,01/15/19 12:16,"436 Jefferson St, San Francisco, CA 94016" +147442,Wired Headphones,1,11.99,01/09/19 18:29,"665 Main St, Atlanta, GA 30301" +147443,AA Batteries (4-pack),1,3.84,01/19/19 12:41,"721 Park St, Seattle, WA 98101" +147444,USB-C Charging Cable,1,11.95,01/05/19 14:00,"316 Park St, Seattle, WA 98101" +147445,USB-C Charging Cable,1,11.95,01/15/19 10:19,"977 8th St, Portland, OR 97035" +147446,Apple Airpods Headphones,1,150,01/25/19 08:56,"489 Wilson St, New York City, NY 10001" +147447,Google Phone,1,600,01/16/19 12:13,"170 Hickory St, Atlanta, GA 30301" +147448,AA Batteries (4-pack),1,3.84,01/13/19 16:37,"939 7th St, San Francisco, CA 94016" +147449,Macbook Pro Laptop,1,1700,01/13/19 10:06,"147 Chestnut St, San Francisco, CA 94016" +147449,AA Batteries (4-pack),2,3.84,01/13/19 10:06,"147 Chestnut St, San Francisco, CA 94016" +147450,AA Batteries (4-pack),2,3.84,01/25/19 10:58,"108 Center St, San Francisco, CA 94016" +147451,Wired Headphones,1,11.99,01/18/19 09:03,"994 Dogwood St, Seattle, WA 98101" +147451,Apple Airpods Headphones,1,150,01/18/19 09:03,"994 Dogwood St, Seattle, WA 98101" +147452,Apple Airpods Headphones,1,150,01/02/19 08:42,"423 Jackson St, New York City, NY 10001" +147453,20in Monitor,1,109.99,01/07/19 20:24,"548 9th St, San Francisco, CA 94016" +147454,Macbook Pro Laptop,1,1700,01/02/19 14:04,"976 Maple St, San Francisco, CA 94016" +147455,Wired Headphones,1,11.99,01/21/19 21:21,"223 Chestnut St, Los Angeles, CA 90001" +147456,Lightning Charging Cable,1,14.95,01/06/19 17:38,"424 Highland St, Seattle, WA 98101" +147457,iPhone,1,700,01/23/19 19:19,"225 Main St, Los Angeles, CA 90001" +147457,Apple Airpods Headphones,1,150,01/23/19 19:19,"225 Main St, Los Angeles, CA 90001" +147458,Apple Airpods Headphones,1,150,01/17/19 13:44,"115 6th St, San Francisco, CA 94016" +147459,Bose SoundSport Headphones,1,99.99,01/12/19 18:56,"242 Johnson St, Los Angeles, CA 90001" +147460,Macbook Pro Laptop,1,1700,01/14/19 19:28,"333 10th St, New York City, NY 10001" +147461,AA Batteries (4-pack),1,3.84,01/19/19 09:41,"78 Elm St, New York City, NY 10001" +147462,Flatscreen TV,1,300,01/26/19 17:44,"513 10th St, Austin, TX 73301" +147463,20in Monitor,1,109.99,01/14/19 21:45,"164 Willow St, Atlanta, GA 30301" +147464,AA Batteries (4-pack),1,3.84,01/02/19 15:02,"365 Cherry St, Atlanta, GA 30301" +147465,Apple Airpods Headphones,1,150,01/13/19 22:02,"667 6th St, Boston, MA 02215" +147466,27in FHD Monitor,1,149.99,01/18/19 11:51,"901 Highland St, San Francisco, CA 94016" +147467,Wired Headphones,1,11.99,01/08/19 19:15,"360 Church St, New York City, NY 10001" +147468,AAA Batteries (4-pack),1,2.99,01/04/19 22:05,"739 Park St, Seattle, WA 98101" +147469,AAA Batteries (4-pack),1,2.99,02/01/19 02:32,"447 West St, Austin, TX 73301" +147470,USB-C Charging Cable,1,11.95,01/11/19 14:15,"620 Johnson St, Los Angeles, CA 90001" +147471,AA Batteries (4-pack),1,3.84,01/18/19 21:53,"248 12th St, Boston, MA 02215" +147471,Lightning Charging Cable,1,14.95,01/18/19 21:53,"248 12th St, Boston, MA 02215" +147472,Lightning Charging Cable,1,14.95,01/20/19 19:04,"933 Center St, San Francisco, CA 94016" +147473,USB-C Charging Cable,1,11.95,01/07/19 17:06,"586 4th St, Seattle, WA 98101" +147474,20in Monitor,1,109.99,01/23/19 23:08,"815 Sunset St, San Francisco, CA 94016" +147475,LG Washing Machine,1,600.0,01/19/19 07:37,"732 Meadow St, Boston, MA 02215" +147476,USB-C Charging Cable,1,11.95,01/12/19 15:48,"760 Johnson St, San Francisco, CA 94016" +147477,Lightning Charging Cable,1,14.95,01/23/19 17:37,"560 Johnson St, Atlanta, GA 30301" +147478,AAA Batteries (4-pack),1,2.99,02/01/19 00:50,"801 Forest St, Los Angeles, CA 90001" +147479,AAA Batteries (4-pack),1,2.99,01/08/19 18:31,"999 Main St, Los Angeles, CA 90001" +147480,AAA Batteries (4-pack),4,2.99,01/27/19 11:58,"455 South St, Atlanta, GA 30301" +147481,AAA Batteries (4-pack),1,2.99,01/24/19 11:47,"699 Main St, San Francisco, CA 94016" +147482,Apple Airpods Headphones,1,150,01/29/19 08:13,"147 2nd St, Atlanta, GA 30301" +147483,Apple Airpods Headphones,1,150,01/15/19 15:46,"198 Ridge St, San Francisco, CA 94016" +147484,AA Batteries (4-pack),1,3.84,01/22/19 19:56,"215 Lake St, San Francisco, CA 94016" +147485,20in Monitor,1,109.99,01/09/19 20:48,"808 Johnson St, San Francisco, CA 94016" +147486,Wired Headphones,1,11.99,01/02/19 12:49,"555 5th St, Austin, TX 73301" +147487,Wired Headphones,1,11.99,01/14/19 16:09,"165 Washington St, Atlanta, GA 30301" +147488,AA Batteries (4-pack),2,3.84,01/10/19 20:21,"334 Center St, Boston, MA 02215" +147489,Wired Headphones,1,11.99,02/01/19 00:09,"223 5th St, Los Angeles, CA 90001" +147490,27in 4K Gaming Monitor,1,389.99,01/12/19 15:57,"563 North St, Los Angeles, CA 90001" +147491,AA Batteries (4-pack),1,3.84,01/05/19 08:09,"81 4th St, New York City, NY 10001" +147492,AA Batteries (4-pack),1,3.84,01/03/19 12:45,"363 Ridge St, San Francisco, CA 94016" +147493,27in 4K Gaming Monitor,1,389.99,01/20/19 21:35,"754 Hickory St, Portland, ME 04101" +147494,Wired Headphones,1,11.99,01/21/19 21:58,"653 Elm St, New York City, NY 10001" +147495,AAA Batteries (4-pack),2,2.99,01/12/19 20:33,"712 Jackson St, Dallas, TX 75001" +147496,Wired Headphones,1,11.99,01/05/19 14:30,"904 Chestnut St, San Francisco, CA 94016" +147497,ThinkPad Laptop,1,999.99,01/27/19 12:20,"513 Lakeview St, Portland, OR 97035" +147498,Wired Headphones,1,11.99,01/15/19 12:53,"834 Jackson St, Los Angeles, CA 90001" +147499,AAA Batteries (4-pack),1,2.99,01/02/19 17:37,"664 4th St, San Francisco, CA 94016" +147500,AAA Batteries (4-pack),1,2.99,01/16/19 17:06,"145 Johnson St, Portland, ME 04101" +147501,20in Monitor,1,109.99,01/23/19 11:25,"180 5th St, Los Angeles, CA 90001" +147502,20in Monitor,1,109.99,01/02/19 17:20,"616 Meadow St, San Francisco, CA 94016" +147503,Bose SoundSport Headphones,1,99.99,01/25/19 16:50,"370 Jefferson St, Atlanta, GA 30301" +147504,AA Batteries (4-pack),1,3.84,01/05/19 11:20,"626 Cedar St, Boston, MA 02215" +147505,iPhone,1,700,01/28/19 22:55,"879 Maple St, San Francisco, CA 94016" +147506,Vareebadd Phone,1,400,01/06/19 15:53,"583 Park St, Dallas, TX 75001" +147507,Flatscreen TV,1,300,01/21/19 12:20,"817 Church St, New York City, NY 10001" +147508,27in FHD Monitor,1,149.99,01/09/19 23:02,"396 Wilson St, San Francisco, CA 94016" +147509,USB-C Charging Cable,1,11.95,01/25/19 07:06,"73 Jefferson St, San Francisco, CA 94016" +147510,iPhone,1,700,01/01/19 06:48,"330 6th St, Los Angeles, CA 90001" +147511,27in 4K Gaming Monitor,1,389.99,01/15/19 18:28,"963 12th St, New York City, NY 10001" +147512,Lightning Charging Cable,1,14.95,01/23/19 16:04,"914 Maple St, San Francisco, CA 94016" +147513,USB-C Charging Cable,3,11.95,01/13/19 17:16,"978 Jefferson St, Dallas, TX 75001" +147514,Google Phone,1,600,01/21/19 15:54,"751 14th St, New York City, NY 10001" +147515,Bose SoundSport Headphones,1,99.99,01/05/19 08:22,"19 12th St, San Francisco, CA 94016" +147516,Macbook Pro Laptop,1,1700,01/29/19 08:51,"37 4th St, San Francisco, CA 94016" +147517,Apple Airpods Headphones,1,150,01/30/19 11:07,"578 4th St, Seattle, WA 98101" +147518,34in Ultrawide Monitor,1,379.99,01/25/19 11:58,"476 1st St, San Francisco, CA 94016" +147519,AA Batteries (4-pack),1,3.84,01/06/19 00:24,"969 4th St, San Francisco, CA 94016" +147520,AA Batteries (4-pack),1,3.84,01/05/19 14:21,"334 Wilson St, New York City, NY 10001" +147521,Wired Headphones,1,11.99,01/01/19 17:28,"217 Church St, San Francisco, CA 94016" +147522,USB-C Charging Cable,1,11.95,01/02/19 15:08,"22 Cedar St, Los Angeles, CA 90001" +147523,USB-C Charging Cable,1,11.95,01/12/19 18:55,"577 Pine St, San Francisco, CA 94016" +147524,20in Monitor,1,109.99,01/24/19 13:31,"411 12th St, Boston, MA 02215" +147525,Lightning Charging Cable,2,14.95,01/09/19 10:59,"4 Hill St, Dallas, TX 75001" +147526,Bose SoundSport Headphones,1,99.99,01/26/19 11:30,"653 14th St, Boston, MA 02215" +147527,Wired Headphones,1,11.99,01/08/19 17:30,"607 9th St, Atlanta, GA 30301" +147528,Lightning Charging Cable,1,14.95,01/17/19 14:06,"322 14th St, Boston, MA 02215" +147528,AAA Batteries (4-pack),1,2.99,01/17/19 14:06,"322 14th St, Boston, MA 02215" +147529,AAA Batteries (4-pack),2,2.99,01/12/19 17:43,"67 Forest St, Dallas, TX 75001" +147530,Wired Headphones,1,11.99,01/10/19 16:57,"137 10th St, Austin, TX 73301" +147531,AA Batteries (4-pack),1,3.84,01/14/19 11:27,"597 Highland St, Dallas, TX 75001" +147532,AAA Batteries (4-pack),1,2.99,01/07/19 16:26,"590 Cedar St, San Francisco, CA 94016" +147533,Wired Headphones,1,11.99,01/29/19 15:09,"689 10th St, New York City, NY 10001" +147534,34in Ultrawide Monitor,1,379.99,01/29/19 20:40,"577 Wilson St, Los Angeles, CA 90001" +147535,Macbook Pro Laptop,1,1700,01/04/19 10:54,"373 Hill St, Boston, MA 02215" +147536,Apple Airpods Headphones,1,150,01/19/19 11:31,"337 Elm St, Los Angeles, CA 90001" +147537,Apple Airpods Headphones,1,150,01/31/19 18:11,"656 Sunset St, Seattle, WA 98101" +147538,ThinkPad Laptop,1,999.99,01/09/19 11:36,"714 Forest St, New York City, NY 10001" +147539,Wired Headphones,1,11.99,01/21/19 19:23,"403 9th St, San Francisco, CA 94016" +147540,Wired Headphones,1,11.99,01/13/19 08:31,"417 Center St, New York City, NY 10001" +147541,USB-C Charging Cable,1,11.95,01/03/19 19:20,"205 13th St, New York City, NY 10001" +147542,AA Batteries (4-pack),1,3.84,01/04/19 18:35,"455 1st St, Dallas, TX 75001" +147543,20in Monitor,1,109.99,01/19/19 18:28,"218 10th St, Los Angeles, CA 90001" +147544,Lightning Charging Cable,1,14.95,01/24/19 21:30,"397 Lake St, Los Angeles, CA 90001" +147545,AA Batteries (4-pack),1,3.84,01/21/19 18:47,"231 Center St, San Francisco, CA 94016" +147546,iPhone,1,700,01/30/19 16:15,"194 12th St, Los Angeles, CA 90001" +147546,Apple Airpods Headphones,1,150,01/30/19 16:15,"194 12th St, Los Angeles, CA 90001" +147547,USB-C Charging Cable,1,11.95,01/13/19 19:24,"394 West St, Boston, MA 02215" +147548,27in 4K Gaming Monitor,1,389.99,01/17/19 20:44,"273 Chestnut St, Portland, OR 97035" +147549,27in FHD Monitor,1,149.99,01/17/19 10:26,"821 Walnut St, San Francisco, CA 94016" +147550,Lightning Charging Cable,1,14.95,01/17/19 16:09,"710 Hill St, Boston, MA 02215" +147551,Wired Headphones,1,11.99,01/03/19 23:11,"861 11th St, Los Angeles, CA 90001" +147552,Wired Headphones,1,11.99,01/23/19 14:04,"722 11th St, San Francisco, CA 94016" +147553,USB-C Charging Cable,1,11.95,01/21/19 23:52,"637 Forest St, Austin, TX 73301" +147554,AAA Batteries (4-pack),2,2.99,01/13/19 07:49,"710 Wilson St, Dallas, TX 75001" +147555,Wired Headphones,1,11.99,01/16/19 17:31,"531 Sunset St, San Francisco, CA 94016" +147556,27in FHD Monitor,1,149.99,01/19/19 08:31,"368 Cedar St, Portland, OR 97035" +147557,Flatscreen TV,1,300,01/01/19 16:36,"617 10th St, Dallas, TX 75001" +147558,Lightning Charging Cable,1,14.95,01/31/19 19:07,"790 Center St, Seattle, WA 98101" +147559,USB-C Charging Cable,1,11.95,01/21/19 01:16,"574 Cedar St, Los Angeles, CA 90001" +147560,AAA Batteries (4-pack),1,2.99,01/02/19 12:56,"706 Church St, San Francisco, CA 94016" +147561,34in Ultrawide Monitor,1,379.99,01/16/19 20:44,"463 7th St, Los Angeles, CA 90001" +147562,27in 4K Gaming Monitor,1,389.99,01/26/19 21:08,"354 1st St, Los Angeles, CA 90001" +147563,Bose SoundSport Headphones,1,99.99,01/08/19 21:42,"426 West St, Boston, MA 02215" +147564,27in FHD Monitor,1,149.99,01/19/19 12:40,"278 Washington St, San Francisco, CA 94016" +147565,Google Phone,1,600,01/16/19 17:08,"450 Adams St, New York City, NY 10001" +147566,Macbook Pro Laptop,1,1700,01/17/19 22:07,"355 Main St, Los Angeles, CA 90001" +147567,Lightning Charging Cable,1,14.95,01/18/19 22:27,"473 Center St, San Francisco, CA 94016" +147568,AA Batteries (4-pack),3,3.84,01/08/19 12:59,"795 Adams St, San Francisco, CA 94016" +147569,Wired Headphones,1,11.99,01/11/19 01:04,"263 Johnson St, Los Angeles, CA 90001" +147570,USB-C Charging Cable,1,11.95,01/16/19 15:45,"897 7th St, San Francisco, CA 94016" +147571,Flatscreen TV,1,300,01/12/19 15:33,"806 Jackson St, Boston, MA 02215" +147572,USB-C Charging Cable,1,11.95,01/02/19 20:08,"378 Johnson St, San Francisco, CA 94016" +147573,Apple Airpods Headphones,1,150,01/24/19 21:18,"99 Spruce St, San Francisco, CA 94016" +147574,Lightning Charging Cable,1,14.95,01/13/19 09:27,"782 Washington St, Los Angeles, CA 90001" +147575,Google Phone,1,600,01/22/19 21:25,"654 South St, San Francisco, CA 94016" +147576,Bose SoundSport Headphones,1,99.99,01/06/19 12:36,"366 West St, Boston, MA 02215" +147577,AAA Batteries (4-pack),2,2.99,01/22/19 13:15,"816 Johnson St, Austin, TX 73301" +147578,Apple Airpods Headphones,1,150,01/22/19 14:23,"244 Center St, Dallas, TX 75001" +147579,USB-C Charging Cable,1,11.95,01/25/19 21:19,"170 5th St, Dallas, TX 75001" +147580,34in Ultrawide Monitor,1,379.99,01/03/19 17:55,"329 Park St, San Francisco, CA 94016" +147581,AAA Batteries (4-pack),1,2.99,01/18/19 08:12,"22 Maple St, Los Angeles, CA 90001" +147582,USB-C Charging Cable,1,11.95,01/20/19 09:12,"636 6th St, Seattle, WA 98101" +147583,Google Phone,1,600,01/24/19 09:30,"52 6th St, Austin, TX 73301" +147584,Lightning Charging Cable,1,14.95,01/19/19 07:58,"556 2nd St, Atlanta, GA 30301" +147585,Lightning Charging Cable,1,14.95,01/03/19 10:59,"906 North St, Portland, OR 97035" +147586,USB-C Charging Cable,1,11.95,01/06/19 16:21,"758 Highland St, San Francisco, CA 94016" +147587,iPhone,1,700,01/11/19 21:58,"995 Sunset St, Atlanta, GA 30301" +147588,34in Ultrawide Monitor,1,379.99,01/01/19 20:22,"888 4th St, San Francisco, CA 94016" +147589,Bose SoundSport Headphones,1,99.99,01/04/19 23:50,"919 Ridge St, Los Angeles, CA 90001" +147590,Macbook Pro Laptop,1,1700,01/16/19 14:18,"652 Maple St, San Francisco, CA 94016" +147591,AA Batteries (4-pack),1,3.84,01/29/19 17:59,"890 Hickory St, Boston, MA 02215" +147592,Wired Headphones,1,11.99,01/16/19 19:03,"105 Washington St, Atlanta, GA 30301" +147593,Lightning Charging Cable,1,14.95,01/21/19 02:13,"806 Meadow St, Los Angeles, CA 90001" +147594,iPhone,1,700,01/15/19 12:43,"141 Highland St, Seattle, WA 98101" +147594,Lightning Charging Cable,2,14.95,01/15/19 12:43,"141 Highland St, Seattle, WA 98101" +147595,Lightning Charging Cable,1,14.95,01/12/19 15:04,"910 Highland St, San Francisco, CA 94016" +147596,AAA Batteries (4-pack),1,2.99,01/08/19 13:25,"152 Dogwood St, Seattle, WA 98101" +147597,34in Ultrawide Monitor,1,379.99,01/16/19 19:46,"76 Wilson St, Atlanta, GA 30301" +147598,Lightning Charging Cable,1,14.95,01/13/19 08:53,"678 5th St, Los Angeles, CA 90001" +147599,USB-C Charging Cable,1,11.95,01/16/19 14:53,"329 10th St, Portland, OR 97035" +147600,AA Batteries (4-pack),1,3.84,01/31/19 11:13,"872 Jefferson St, Los Angeles, CA 90001" +147601,iPhone,1,700,01/12/19 14:13,"555 West St, Atlanta, GA 30301" +147601,Wired Headphones,1,11.99,01/12/19 14:13,"555 West St, Atlanta, GA 30301" +147602,Bose SoundSport Headphones,1,99.99,01/09/19 10:03,"251 14th St, Los Angeles, CA 90001" +147603,AA Batteries (4-pack),1,3.84,01/19/19 14:45,"986 Ridge St, Dallas, TX 75001" +147604,USB-C Charging Cable,1,11.95,01/02/19 07:46,"561 5th St, San Francisco, CA 94016" +147605,USB-C Charging Cable,1,11.95,01/28/19 19:22,"459 7th St, Atlanta, GA 30301" +147606,USB-C Charging Cable,1,11.95,01/12/19 00:15,"728 Sunset St, San Francisco, CA 94016" +147607,Lightning Charging Cable,1,14.95,01/12/19 19:22,"736 Main St, New York City, NY 10001" +147608,Apple Airpods Headphones,1,150,01/20/19 16:44,"919 Jackson St, Portland, ME 04101" +147609,Wired Headphones,1,11.99,01/22/19 13:03,"411 8th St, Portland, OR 97035" +147610,Bose SoundSport Headphones,1,99.99,01/28/19 13:16,"977 West St, Boston, MA 02215" +147611,27in 4K Gaming Monitor,1,389.99,01/04/19 14:15,"394 Wilson St, New York City, NY 10001" +147612,Bose SoundSport Headphones,1,99.99,01/02/19 23:01,"151 South St, Los Angeles, CA 90001" +147613,Apple Airpods Headphones,1,150,01/19/19 20:57,"504 4th St, San Francisco, CA 94016" +147614,AA Batteries (4-pack),3,3.84,01/14/19 20:47,"993 Lake St, New York City, NY 10001" +147615,27in FHD Monitor,1,149.99,01/02/19 13:18,"509 Walnut St, Los Angeles, CA 90001" +147616,USB-C Charging Cable,1,11.95,01/23/19 20:21,"548 Meadow St, Portland, OR 97035" +147617,AA Batteries (4-pack),1,3.84,01/24/19 22:57,"475 7th St, Austin, TX 73301" +147618,ThinkPad Laptop,1,999.99,01/16/19 00:23,"942 9th St, Seattle, WA 98101" +147619,USB-C Charging Cable,1,11.95,01/30/19 08:56,"96 Madison St, Los Angeles, CA 90001" +147619,Apple Airpods Headphones,1,150,01/30/19 08:56,"96 Madison St, Los Angeles, CA 90001" +147620,Lightning Charging Cable,1,14.95,01/10/19 10:31,"145 Spruce St, Seattle, WA 98101" +147621,27in FHD Monitor,1,149.99,01/17/19 11:42,"389 Adams St, Portland, ME 04101" +147622,Lightning Charging Cable,1,14.95,01/31/19 02:03,"651 Madison St, San Francisco, CA 94016" +147623,Apple Airpods Headphones,1,150,01/20/19 07:55,"110 Cedar St, San Francisco, CA 94016" +147624,AA Batteries (4-pack),2,3.84,01/07/19 20:05,"166 5th St, Los Angeles, CA 90001" +147625,ThinkPad Laptop,1,999.99,01/17/19 21:09,"367 West St, New York City, NY 10001" +147626,Wired Headphones,1,11.99,01/31/19 20:58,"874 North St, San Francisco, CA 94016" +147627,ThinkPad Laptop,1,999.99,01/28/19 14:08,"555 Maple St, San Francisco, CA 94016" +147628,Wired Headphones,1,11.99,01/17/19 12:42,"24 Chestnut St, Seattle, WA 98101" +147629,27in FHD Monitor,1,149.99,01/29/19 20:35,"515 Meadow St, San Francisco, CA 94016" +147629,27in 4K Gaming Monitor,1,389.99,01/29/19 20:35,"515 Meadow St, San Francisco, CA 94016" +147630,USB-C Charging Cable,1,11.95,01/08/19 12:37,"360 Elm St, San Francisco, CA 94016" +147631,Google Phone,1,600,01/20/19 14:21,"910 Willow St, New York City, NY 10001" +147632,USB-C Charging Cable,1,11.95,01/09/19 18:43,"282 Ridge St, Los Angeles, CA 90001" +147633,Google Phone,1,600,01/25/19 20:51,"686 Spruce St, San Francisco, CA 94016" +147633,Wired Headphones,1,11.99,01/25/19 20:51,"686 Spruce St, San Francisco, CA 94016" +147634,Macbook Pro Laptop,1,1700,01/19/19 06:22,"656 12th St, San Francisco, CA 94016" +147635,Apple Airpods Headphones,1,150,01/23/19 13:18,"937 Adams St, Atlanta, GA 30301" +147636,AA Batteries (4-pack),1,3.84,01/22/19 13:40,"682 Center St, San Francisco, CA 94016" +147637,AA Batteries (4-pack),1,3.84,01/05/19 14:35,"361 Highland St, Los Angeles, CA 90001" +147638,Bose SoundSport Headphones,1,99.99,01/05/19 19:42,"266 2nd St, San Francisco, CA 94016" +147639,Apple Airpods Headphones,1,150,01/17/19 00:11,"933 13th St, Boston, MA 02215" +147640,Macbook Pro Laptop,1,1700,01/28/19 12:34,"100 1st St, Boston, MA 02215" +147641,Flatscreen TV,1,300,01/07/19 14:17,"960 Cherry St, New York City, NY 10001" +147642,27in FHD Monitor,1,149.99,01/11/19 18:45,"753 Park St, Atlanta, GA 30301" +147643,USB-C Charging Cable,2,11.95,01/08/19 21:15,"941 Walnut St, Austin, TX 73301" +147644,USB-C Charging Cable,1,11.95,01/12/19 11:43,"205 Willow St, Seattle, WA 98101" +147645,AA Batteries (4-pack),1,3.84,01/28/19 09:18,"415 Pine St, Los Angeles, CA 90001" +147646,iPhone,1,700,01/26/19 18:38,"746 Sunset St, Austin, TX 73301" +147647,Apple Airpods Headphones,1,150,01/25/19 17:22,"954 Lakeview St, Portland, OR 97035" +147648,USB-C Charging Cable,1,11.95,01/15/19 18:25,"72 Highland St, San Francisco, CA 94016" +147648,AA Batteries (4-pack),1,3.84,01/15/19 18:25,"72 Highland St, San Francisco, CA 94016" +147649,iPhone,1,700,01/10/19 14:24,"17 River St, San Francisco, CA 94016" +147650,USB-C Charging Cable,1,11.95,01/15/19 15:05,"281 10th St, New York City, NY 10001" +147651,34in Ultrawide Monitor,1,379.99,01/29/19 09:26,"89 2nd St, Seattle, WA 98101" +147652,iPhone,1,700,01/20/19 10:42,"362 9th St, Los Angeles, CA 90001" +147653,AA Batteries (4-pack),1,3.84,01/18/19 12:07,"628 Pine St, New York City, NY 10001" +147654,Apple Airpods Headphones,1,150,01/31/19 08:15,"831 Jefferson St, San Francisco, CA 94016" +147655,27in FHD Monitor,1,149.99,01/30/19 17:44,"569 Park St, New York City, NY 10001" +147656,Flatscreen TV,1,300,01/22/19 14:55,"824 Lakeview St, New York City, NY 10001" +147657,Wired Headphones,1,11.99,01/14/19 16:47,"684 12th St, Austin, TX 73301" +147658,AA Batteries (4-pack),1,3.84,01/28/19 20:38,"886 6th St, Boston, MA 02215" +147659,Lightning Charging Cable,1,14.95,01/19/19 15:31,"107 Cherry St, Los Angeles, CA 90001" +147660,20in Monitor,1,109.99,01/10/19 21:47,"882 Walnut St, Boston, MA 02215" +147661,Lightning Charging Cable,1,14.95,01/12/19 15:30,"639 West St, San Francisco, CA 94016" +147662,AA Batteries (4-pack),1,3.84,01/20/19 09:24,"696 River St, New York City, NY 10001" +147663,Bose SoundSport Headphones,1,99.99,01/08/19 00:01,"17 Hill St, Atlanta, GA 30301" +147664,34in Ultrawide Monitor,1,379.99,01/18/19 21:41,"776 Jefferson St, San Francisco, CA 94016" +147665,USB-C Charging Cable,1,11.95,01/26/19 12:58,"205 Wilson St, Los Angeles, CA 90001" +147666,USB-C Charging Cable,1,11.95,01/23/19 17:45,"316 Lake St, San Francisco, CA 94016" +147667,27in 4K Gaming Monitor,1,389.99,01/12/19 16:15,"937 Cedar St, Austin, TX 73301" +147668,Macbook Pro Laptop,1,1700,01/30/19 06:41,"735 Main St, Seattle, WA 98101" +147669,AA Batteries (4-pack),1,3.84,01/05/19 23:15,"494 Chestnut St, Portland, OR 97035" +147670,AA Batteries (4-pack),1,3.84,01/18/19 11:58,"928 Dogwood St, Portland, OR 97035" +147671,Flatscreen TV,1,300,01/04/19 16:51,"811 11th St, Dallas, TX 75001" +147672,AA Batteries (4-pack),1,3.84,01/19/19 11:35,"273 Jefferson St, Portland, OR 97035" +147673,AA Batteries (4-pack),3,3.84,01/08/19 18:04,"286 Chestnut St, San Francisco, CA 94016" +147674,Apple Airpods Headphones,1,150,01/01/19 10:47,"848 10th St, Atlanta, GA 30301" +147675,34in Ultrawide Monitor,1,379.99,01/01/19 22:34,"525 Highland St, Boston, MA 02215" +147676,Lightning Charging Cable,1,14.95,01/13/19 08:50,"644 Sunset St, Atlanta, GA 30301" +147677,AAA Batteries (4-pack),1,2.99,01/20/19 12:18,"658 Lakeview St, Portland, OR 97035" +147678,Bose SoundSport Headphones,1,99.99,01/11/19 20:47,"357 South St, Los Angeles, CA 90001" +147679,27in FHD Monitor,1,149.99,01/30/19 16:44,"703 Meadow St, Los Angeles, CA 90001" +147680,AAA Batteries (4-pack),1,2.99,01/06/19 23:12,"488 Forest St, Atlanta, GA 30301" +147681,Vareebadd Phone,1,400,01/08/19 22:12,"60 14th St, Seattle, WA 98101" +147682,34in Ultrawide Monitor,1,379.99,01/09/19 13:20,"766 10th St, San Francisco, CA 94016" +147683,Apple Airpods Headphones,1,150,01/27/19 09:12,"905 Jefferson St, San Francisco, CA 94016" +147684,AAA Batteries (4-pack),1,2.99,01/04/19 10:28,"8 Lakeview St, New York City, NY 10001" +147685,USB-C Charging Cable,1,11.95,01/25/19 17:39,"423 Maple St, San Francisco, CA 94016" +147686,AAA Batteries (4-pack),1,2.99,01/26/19 18:37,"704 12th St, New York City, NY 10001" +147687,Wired Headphones,1,11.99,01/30/19 12:14,"668 5th St, Seattle, WA 98101" +147688,Vareebadd Phone,1,400,01/10/19 16:53,"272 Johnson St, Los Angeles, CA 90001" +147689,iPhone,1,700,01/10/19 18:48,"273 8th St, Atlanta, GA 30301" +147690,Wired Headphones,1,11.99,01/11/19 14:52,"563 Sunset St, San Francisco, CA 94016" +147691,AAA Batteries (4-pack),1,2.99,01/27/19 23:56,"430 Elm St, Dallas, TX 75001" +147692,AAA Batteries (4-pack),1,2.99,01/01/19 16:28,"350 14th St, San Francisco, CA 94016" +147693,USB-C Charging Cable,1,11.95,01/26/19 16:39,"623 11th St, Boston, MA 02215" +147694,AA Batteries (4-pack),1,3.84,01/30/19 22:58,"302 Elm St, Los Angeles, CA 90001" +147695,Apple Airpods Headphones,1,150,01/01/19 13:17,"68 Lakeview St, Portland, OR 97035" +147696,34in Ultrawide Monitor,1,379.99,01/04/19 22:58,"45 Cedar St, Portland, OR 97035" +147697,AA Batteries (4-pack),1,3.84,01/24/19 12:31,"351 12th St, Atlanta, GA 30301" +147698,Flatscreen TV,1,300,01/18/19 16:39,"213 Main St, San Francisco, CA 94016" +147699,AAA Batteries (4-pack),1,2.99,01/17/19 10:06,"930 Lake St, Los Angeles, CA 90001" +147700,Lightning Charging Cable,1,14.95,01/05/19 09:42,"257 Center St, Dallas, TX 75001" +147701,Lightning Charging Cable,2,14.95,01/17/19 13:04,"837 Church St, Seattle, WA 98101" +147702,Wired Headphones,1,11.99,01/19/19 23:41,"979 Pine St, New York City, NY 10001" +147703,Lightning Charging Cable,1,14.95,01/14/19 23:06,"196 Forest St, New York City, NY 10001" +147704,AA Batteries (4-pack),1,3.84,01/22/19 23:45,"198 Cedar St, San Francisco, CA 94016" +147705,27in FHD Monitor,1,149.99,01/13/19 10:42,"108 Cherry St, Seattle, WA 98101" +147706,20in Monitor,1,109.99,01/19/19 13:07,"307 6th St, New York City, NY 10001" +147707,Apple Airpods Headphones,1,150,01/15/19 08:02,"828 Spruce St, San Francisco, CA 94016" +147708,USB-C Charging Cable,1,11.95,01/14/19 07:45,"741 Madison St, Seattle, WA 98101" +147709,AA Batteries (4-pack),3,3.84,01/18/19 19:12,"449 6th St, Dallas, TX 75001" +147710,Lightning Charging Cable,1,14.95,01/31/19 00:19,"577 Elm St, San Francisco, CA 94016" +147711,Lightning Charging Cable,1,14.95,01/30/19 17:11,"871 Wilson St, San Francisco, CA 94016" +147712,20in Monitor,1,109.99,01/20/19 00:24,"106 Elm St, Dallas, TX 75001" +147713,Flatscreen TV,1,300,01/22/19 11:47,"115 Wilson St, Los Angeles, CA 90001" +147714,AAA Batteries (4-pack),1,2.99,01/20/19 22:52,"239 Park St, New York City, NY 10001" +147715,iPhone,1,700,01/19/19 22:19,"521 Jefferson St, Los Angeles, CA 90001" +147716,Wired Headphones,1,11.99,01/23/19 13:53,"840 5th St, San Francisco, CA 94016" +147717,AAA Batteries (4-pack),3,2.99,01/21/19 08:07,"214 Maple St, Atlanta, GA 30301" +147718,27in FHD Monitor,1,149.99,01/04/19 21:09,"276 Center St, Boston, MA 02215" +147719,Apple Airpods Headphones,1,150,01/15/19 23:41,"792 Johnson St, Boston, MA 02215" +147720,Bose SoundSport Headphones,1,99.99,01/07/19 18:41,"304 Wilson St, Los Angeles, CA 90001" +147721,Bose SoundSport Headphones,1,99.99,01/15/19 17:40,"945 Adams St, Atlanta, GA 30301" +147722,USB-C Charging Cable,1,11.95,01/19/19 10:15,"334 Sunset St, Los Angeles, CA 90001" +147723,iPhone,1,700,01/13/19 01:23,"790 13th St, New York City, NY 10001" +147724,AA Batteries (4-pack),2,3.84,01/13/19 14:03,"522 North St, New York City, NY 10001" +147725,Apple Airpods Headphones,1,150,01/08/19 08:35,"143 Spruce St, Boston, MA 02215" +147726,Lightning Charging Cable,1,14.95,01/20/19 07:26,"130 Hickory St, Seattle, WA 98101" +147727,Apple Airpods Headphones,1,150,01/22/19 10:21,"164 Main St, Dallas, TX 75001" +147728,USB-C Charging Cable,1,11.95,01/05/19 22:51,"460 Dogwood St, Austin, TX 73301" +147729,Bose SoundSport Headphones,1,99.99,01/31/19 21:16,"770 Wilson St, San Francisco, CA 94016" +147730,27in FHD Monitor,1,149.99,01/30/19 15:52,"118 Jefferson St, San Francisco, CA 94016" +147731,iPhone,1,700,01/24/19 12:17,"285 Church St, New York City, NY 10001" +147732,Lightning Charging Cable,1,14.95,01/22/19 03:21,"852 Sunset St, San Francisco, CA 94016" +147733,34in Ultrawide Monitor,1,379.99,01/09/19 07:35,"898 Cedar St, San Francisco, CA 94016" +147734,Apple Airpods Headphones,1,150,01/23/19 12:10,"227 West St, Dallas, TX 75001" +147735,27in FHD Monitor,1,149.99,01/06/19 18:47,"621 9th St, Atlanta, GA 30301" +147736,Apple Airpods Headphones,1,150,01/05/19 19:58,"362 Church St, San Francisco, CA 94016" +147737,AAA Batteries (4-pack),1,2.99,01/05/19 18:04,"691 Cedar St, Los Angeles, CA 90001" +147738,34in Ultrawide Monitor,1,379.99,01/23/19 14:30,"240 Meadow St, New York City, NY 10001" +147739,AAA Batteries (4-pack),2,2.99,01/18/19 22:04,"99 Jefferson St, Los Angeles, CA 90001" +147740,AAA Batteries (4-pack),1,2.99,01/07/19 21:45,"551 6th St, San Francisco, CA 94016" +147741,27in FHD Monitor,1,149.99,01/31/19 14:16,"214 Elm St, Portland, OR 97035" +147742,Bose SoundSport Headphones,1,99.99,01/30/19 06:54,"401 Lakeview St, Seattle, WA 98101" +147743,Flatscreen TV,1,300,01/08/19 13:46,"500 Jefferson St, San Francisco, CA 94016" +147744,Lightning Charging Cable,1,14.95,01/25/19 16:32,"394 Washington St, Atlanta, GA 30301" +147745,Bose SoundSport Headphones,1,99.99,01/15/19 13:36,"210 Adams St, Atlanta, GA 30301" +147746,Wired Headphones,1,11.99,01/14/19 15:32,"968 Main St, Austin, TX 73301" +147747,27in FHD Monitor,1,149.99,01/13/19 17:31,"455 Walnut St, Portland, OR 97035" +147748,USB-C Charging Cable,1,11.95,01/09/19 11:12,"776 Meadow St, Austin, TX 73301" +147749,27in FHD Monitor,1,149.99,01/29/19 11:05,"781 Elm St, Atlanta, GA 30301" +147750,AA Batteries (4-pack),1,3.84,01/05/19 11:39,"22 Chestnut St, Atlanta, GA 30301" +147751,Bose SoundSport Headphones,1,99.99,01/11/19 23:57,"464 8th St, Portland, OR 97035" +147752,AAA Batteries (4-pack),1,2.99,01/27/19 13:08,"39 Church St, San Francisco, CA 94016" +147753,Apple Airpods Headphones,1,150,01/15/19 19:17,"286 Church St, San Francisco, CA 94016" +147754,AAA Batteries (4-pack),1,2.99,01/25/19 18:22,"625 Lakeview St, Los Angeles, CA 90001" +147755,ThinkPad Laptop,1,999.99,01/12/19 21:10,"127 13th St, Austin, TX 73301" +147756,AA Batteries (4-pack),1,3.84,01/28/19 20:40,"641 2nd St, San Francisco, CA 94016" +147757,Flatscreen TV,1,300,01/24/19 00:22,"319 Jackson St, Atlanta, GA 30301" +147758,Lightning Charging Cable,1,14.95,01/17/19 19:18,"629 Willow St, San Francisco, CA 94016" +147759,Flatscreen TV,1,300,01/17/19 23:15,"400 Wilson St, Atlanta, GA 30301" +147760,27in 4K Gaming Monitor,1,389.99,01/05/19 00:56,"996 Forest St, Portland, OR 97035" +147761,AA Batteries (4-pack),1,3.84,01/21/19 12:18,"249 Willow St, San Francisco, CA 94016" +147762,USB-C Charging Cable,1,11.95,01/26/19 12:10,"83 11th St, Atlanta, GA 30301" +147763,AA Batteries (4-pack),1,3.84,01/11/19 03:03,"95 Adams St, San Francisco, CA 94016" +147764,Wired Headphones,1,11.99,01/16/19 17:04,"440 Park St, Los Angeles, CA 90001" +147765,ThinkPad Laptop,1,999.99,01/13/19 19:10,"290 Church St, Austin, TX 73301" +147766,AAA Batteries (4-pack),1,2.99,01/23/19 23:47,"893 11th St, New York City, NY 10001" +147767,Flatscreen TV,1,300,01/28/19 17:10,"51 4th St, New York City, NY 10001" +147768,Macbook Pro Laptop,1,1700,01/03/19 11:36,"150 Adams St, Austin, TX 73301" +,,,,, +147769,AAA Batteries (4-pack),1,2.99,01/31/19 13:22,"386 Jefferson St, Los Angeles, CA 90001" +147770,USB-C Charging Cable,2,11.95,01/31/19 10:36,"853 Meadow St, Los Angeles, CA 90001" +147771,Apple Airpods Headphones,1,150,01/06/19 01:18,"240 1st St, Los Angeles, CA 90001" +147772,iPhone,1,700,01/29/19 02:01,"173 1st St, San Francisco, CA 94016" +147773,USB-C Charging Cable,1,11.95,01/03/19 08:20,"780 Highland St, Dallas, TX 75001" +147774,AAA Batteries (4-pack),1,2.99,01/13/19 09:49,"721 Jackson St, San Francisco, CA 94016" +147775,AAA Batteries (4-pack),2,2.99,01/14/19 01:25,"74 4th St, Atlanta, GA 30301" +147776,27in 4K Gaming Monitor,1,389.99,01/08/19 16:05,"209 5th St, New York City, NY 10001" +147777,AAA Batteries (4-pack),3,2.99,01/24/19 21:25,"178 Elm St, Portland, ME 04101" +147778,Apple Airpods Headphones,1,150,01/06/19 16:21,"367 Hill St, Dallas, TX 75001" +147779,Flatscreen TV,1,300,01/08/19 18:29,"118 Elm St, Boston, MA 02215" +147780,Bose SoundSport Headphones,1,99.99,01/04/19 13:56,"629 14th St, Los Angeles, CA 90001" +147781,USB-C Charging Cable,1,11.95,01/03/19 05:13,"245 River St, San Francisco, CA 94016" +147782,AA Batteries (4-pack),1,3.84,01/15/19 00:00,"182 West St, Boston, MA 02215" +147783,Wired Headphones,1,11.99,01/21/19 09:51,"810 Church St, Los Angeles, CA 90001" +147784,Lightning Charging Cable,1,14.95,01/01/19 22:35,"55 8th St, San Francisco, CA 94016" +147785,AA Batteries (4-pack),1,3.84,01/15/19 22:35,"367 7th St, Austin, TX 73301" +147786,iPhone,1,700,01/14/19 17:35,"83 Adams St, San Francisco, CA 94016" +147787,Apple Airpods Headphones,1,150,01/09/19 15:03,"413 Johnson St, San Francisco, CA 94016" +147788,AAA Batteries (4-pack),1,2.99,01/12/19 17:25,"777 Elm St, Los Angeles, CA 90001" +147789,27in 4K Gaming Monitor,1,389.99,01/07/19 14:42,"984 Main St, Seattle, WA 98101" +147790,AAA Batteries (4-pack),1,2.99,01/24/19 09:02,"555 Cherry St, San Francisco, CA 94016" +147791,20in Monitor,1,109.99,01/05/19 18:47,"808 River St, Dallas, TX 75001" +147792,USB-C Charging Cable,1,11.95,01/28/19 21:19,"197 2nd St, New York City, NY 10001" +147793,AAA Batteries (4-pack),1,2.99,01/09/19 17:01,"675 Cherry St, Portland, OR 97035" +147794,iPhone,1,700,01/05/19 10:41,"70 Lincoln St, Austin, TX 73301" +147795,Lightning Charging Cable,1,14.95,01/13/19 08:52,"709 Wilson St, Atlanta, GA 30301" +147796,AAA Batteries (4-pack),1,2.99,01/19/19 11:31,"645 12th St, Dallas, TX 75001" +147797,USB-C Charging Cable,1,11.95,01/13/19 13:19,"467 Lake St, Los Angeles, CA 90001" +147798,27in 4K Gaming Monitor,1,389.99,01/07/19 22:08,"944 Hickory St, Boston, MA 02215" +147799,Macbook Pro Laptop,1,1700,01/31/19 17:51,"754 2nd St, Portland, ME 04101" +147800,USB-C Charging Cable,1,11.95,01/17/19 20:58,"375 Jackson St, San Francisco, CA 94016" +147801,USB-C Charging Cable,1,11.95,01/18/19 16:51,"880 Elm St, Portland, OR 97035" +147802,ThinkPad Laptop,1,999.99,01/11/19 14:51,"642 8th St, Austin, TX 73301" +147803,Wired Headphones,1,11.99,01/02/19 14:45,"501 West St, Portland, OR 97035" +147804,AA Batteries (4-pack),1,3.84,01/31/19 18:36,"553 Forest St, San Francisco, CA 94016" +147805,Wired Headphones,1,11.99,01/02/19 08:21,"922 Sunset St, Dallas, TX 75001" +147806,Bose SoundSport Headphones,1,99.99,01/25/19 07:57,"976 Washington St, New York City, NY 10001" +147807,ThinkPad Laptop,1,999.99,01/29/19 18:57,"416 7th St, Seattle, WA 98101" +147808,ThinkPad Laptop,1,999.99,01/04/19 21:36,"562 2nd St, Los Angeles, CA 90001" +147809,iPhone,1,700,01/17/19 17:02,"665 5th St, Atlanta, GA 30301" +147810,iPhone,1,700,01/09/19 17:24,"272 Sunset St, San Francisco, CA 94016" +147811,Lightning Charging Cable,1,14.95,01/02/19 13:29,"180 Johnson St, Portland, OR 97035" +147812,Apple Airpods Headphones,1,150,01/09/19 20:58,"912 Pine St, Los Angeles, CA 90001" +147813,34in Ultrawide Monitor,1,379.99,01/04/19 15:00,"579 Hickory St, Los Angeles, CA 90001" +147814,Lightning Charging Cable,1,14.95,01/23/19 23:03,"142 Spruce St, San Francisco, CA 94016" +147815,27in FHD Monitor,1,149.99,01/07/19 17:31,"252 Walnut St, Austin, TX 73301" +147816,Lightning Charging Cable,1,14.95,01/24/19 08:47,"477 8th St, Boston, MA 02215" +147817,Wired Headphones,1,11.99,01/13/19 18:44,"828 Lakeview St, Austin, TX 73301" +147818,Macbook Pro Laptop,1,1700,01/14/19 19:35,"404 Lincoln St, Boston, MA 02215" +147819,Lightning Charging Cable,1,14.95,01/10/19 08:04,"948 Washington St, Boston, MA 02215" +147820,27in 4K Gaming Monitor,1,389.99,01/09/19 23:43,"499 8th St, Dallas, TX 75001" +147821,AA Batteries (4-pack),1,3.84,01/18/19 12:33,"169 Park St, Boston, MA 02215" +147822,Wired Headphones,1,11.99,01/08/19 13:07,"302 9th St, Los Angeles, CA 90001" +147823,Bose SoundSport Headphones,1,99.99,01/19/19 15:48,"972 Cherry St, Los Angeles, CA 90001" +147824,AAA Batteries (4-pack),1,2.99,01/16/19 12:08,"476 13th St, Atlanta, GA 30301" +147825,27in FHD Monitor,1,149.99,01/14/19 18:09,"973 11th St, San Francisco, CA 94016" +147826,Apple Airpods Headphones,1,150,01/28/19 09:42,"771 Jackson St, Atlanta, GA 30301" +147827,Lightning Charging Cable,1,14.95,01/10/19 12:35,"144 Lakeview St, Los Angeles, CA 90001" +147828,Flatscreen TV,1,300,01/15/19 15:12,"515 Adams St, Dallas, TX 75001" +147829,20in Monitor,1,109.99,01/02/19 23:10,"276 Highland St, Portland, OR 97035" +147830,iPhone,1,700,01/04/19 19:51,"241 Lincoln St, Seattle, WA 98101" +147831,Google Phone,1,600,01/03/19 18:06,"922 Meadow St, New York City, NY 10001" +147831,Wired Headphones,1,11.99,01/03/19 18:06,"922 Meadow St, New York City, NY 10001" +147832,AAA Batteries (4-pack),1,2.99,01/16/19 16:34,"381 Adams St, Seattle, WA 98101" +147833,34in Ultrawide Monitor,1,379.99,01/29/19 20:23,"811 Ridge St, San Francisco, CA 94016" +147834,Bose SoundSport Headphones,1,99.99,01/08/19 10:17,"701 14th St, Los Angeles, CA 90001" +147835,AAA Batteries (4-pack),1,2.99,01/17/19 18:33,"236 West St, Boston, MA 02215" +147836,27in 4K Gaming Monitor,1,389.99,01/25/19 15:41,"574 Johnson St, Atlanta, GA 30301" +147837,Google Phone,1,600,01/20/19 10:11,"443 Hickory St, Seattle, WA 98101" +147838,Lightning Charging Cable,1,14.95,01/13/19 18:15,"547 Madison St, Seattle, WA 98101" +147839,AA Batteries (4-pack),1,3.84,01/22/19 10:05,"544 Jefferson St, Seattle, WA 98101" +147840,Lightning Charging Cable,1,14.95,01/07/19 16:59,"974 River St, New York City, NY 10001" +147841,Bose SoundSport Headphones,1,99.99,01/31/19 15:03,"184 Hill St, Dallas, TX 75001" +147842,AAA Batteries (4-pack),3,2.99,01/11/19 12:42,"158 6th St, Dallas, TX 75001" +147843,USB-C Charging Cable,2,11.95,01/18/19 17:13,"277 Hickory St, Los Angeles, CA 90001" +147844,USB-C Charging Cable,1,11.95,01/06/19 08:56,"313 Highland St, Boston, MA 02215" +147845,AA Batteries (4-pack),2,3.84,01/01/19 09:14,"432 14th St, New York City, NY 10001" +147846,ThinkPad Laptop,1,999.99,01/23/19 12:16,"763 10th St, San Francisco, CA 94016" +147847,Wired Headphones,1,11.99,01/13/19 12:13,"236 Park St, Boston, MA 02215" +147848,Wired Headphones,1,11.99,01/21/19 20:06,"879 Highland St, San Francisco, CA 94016" +147849,Apple Airpods Headphones,1,150,01/04/19 21:27,"323 Maple St, Boston, MA 02215" +147850,Lightning Charging Cable,1,14.95,01/09/19 07:26,"425 Dogwood St, Dallas, TX 75001" +147851,iPhone,1,700,01/13/19 00:03,"335 7th St, Austin, TX 73301" +147852,Lightning Charging Cable,1,14.95,01/21/19 18:17,"3 Cedar St, Boston, MA 02215" +147853,Bose SoundSport Headphones,1,99.99,01/23/19 22:49,"371 Jefferson St, San Francisco, CA 94016" +147854,AA Batteries (4-pack),1,3.84,01/24/19 05:43,"197 Church St, San Francisco, CA 94016" +147855,Lightning Charging Cable,1,14.95,01/04/19 16:52,"85 Meadow St, San Francisco, CA 94016" +147856,20in Monitor,1,109.99,01/08/19 22:31,"790 14th St, San Francisco, CA 94016" +147857,Bose SoundSport Headphones,1,99.99,01/17/19 07:33,"106 5th St, Los Angeles, CA 90001" +147858,Google Phone,1,600,01/30/19 12:16,"621 4th St, San Francisco, CA 94016" +147859,Apple Airpods Headphones,1,150,01/03/19 22:30,"70 Park St, Los Angeles, CA 90001" +147860,Apple Airpods Headphones,1,150,01/09/19 09:50,"160 13th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +147861,Lightning Charging Cable,1,14.95,01/09/19 21:45,"35 5th St, Los Angeles, CA 90001" +147862,34in Ultrawide Monitor,1,379.99,01/15/19 05:05,"924 Adams St, San Francisco, CA 94016" +147863,ThinkPad Laptop,1,999.99,01/02/19 15:07,"199 Meadow St, Boston, MA 02215" +147864,Wired Headphones,2,11.99,01/08/19 11:03,"878 Main St, San Francisco, CA 94016" +147865,Lightning Charging Cable,1,14.95,01/06/19 23:10,"238 Center St, Los Angeles, CA 90001" +147866,Apple Airpods Headphones,1,150,01/22/19 10:29,"921 River St, Atlanta, GA 30301" +147867,USB-C Charging Cable,1,11.95,01/31/19 11:51,"56 4th St, Atlanta, GA 30301" +147868,Apple Airpods Headphones,1,150,01/01/19 17:45,"390 Hickory St, Boston, MA 02215" +147869,iPhone,1,700,01/06/19 19:24,"2 Highland St, Los Angeles, CA 90001" +147869,Lightning Charging Cable,1,14.95,01/06/19 19:24,"2 Highland St, Los Angeles, CA 90001" +147870,USB-C Charging Cable,1,11.95,01/12/19 19:00,"59 Jackson St, New York City, NY 10001" +147871,AAA Batteries (4-pack),2,2.99,01/20/19 19:29,"775 Cedar St, Atlanta, GA 30301" +147872,Apple Airpods Headphones,1,150,01/17/19 13:52,"106 North St, Atlanta, GA 30301" +147873,Bose SoundSport Headphones,1,99.99,01/26/19 13:46,"106 Washington St, San Francisco, CA 94016" +147874,USB-C Charging Cable,1,11.95,01/31/19 11:15,"7 West St, Los Angeles, CA 90001" +147875,Macbook Pro Laptop,1,1700,01/12/19 13:53,"947 6th St, New York City, NY 10001" +147876,Lightning Charging Cable,1,14.95,01/24/19 16:34,"654 Maple St, San Francisco, CA 94016" +147877,20in Monitor,1,109.99,01/26/19 00:49,"355 West St, Seattle, WA 98101" +147878,AAA Batteries (4-pack),1,2.99,01/19/19 08:40,"535 Maple St, Boston, MA 02215" +147879,Google Phone,1,600,01/17/19 21:02,"481 Adams St, Atlanta, GA 30301" +147880,Lightning Charging Cable,1,14.95,01/29/19 13:53,"887 5th St, New York City, NY 10001" +147881,AA Batteries (4-pack),1,3.84,01/19/19 16:44,"488 Lincoln St, Boston, MA 02215" +147882,Vareebadd Phone,1,400,01/05/19 22:33,"295 14th St, Los Angeles, CA 90001" +147882,USB-C Charging Cable,1,11.95,01/05/19 22:33,"295 14th St, Los Angeles, CA 90001" +147883,USB-C Charging Cable,1,11.95,01/18/19 22:30,"688 Highland St, New York City, NY 10001" +147884,Wired Headphones,1,11.99,01/24/19 23:30,"356 Highland St, Atlanta, GA 30301" +147885,AAA Batteries (4-pack),2,2.99,01/12/19 14:58,"564 13th St, Portland, OR 97035" +147886,27in FHD Monitor,1,149.99,01/02/19 18:09,"800 Jefferson St, Boston, MA 02215" +147887,AAA Batteries (4-pack),3,2.99,01/17/19 13:58,"3 Forest St, New York City, NY 10001" +147888,AA Batteries (4-pack),4,3.84,01/20/19 21:56,"724 Lakeview St, Seattle, WA 98101" +147889,Bose SoundSport Headphones,1,99.99,01/03/19 18:55,"546 Hickory St, Seattle, WA 98101" +147890,34in Ultrawide Monitor,1,379.99,01/04/19 11:27,"927 Elm St, Seattle, WA 98101" +147891,Lightning Charging Cable,1,14.95,01/26/19 16:28,"930 Pine St, Seattle, WA 98101" +147892,27in 4K Gaming Monitor,1,389.99,01/24/19 21:58,"640 Willow St, Boston, MA 02215" +147893,Bose SoundSport Headphones,1,99.99,01/17/19 13:27,"972 Willow St, New York City, NY 10001" +147894,Google Phone,1,600,01/24/19 10:51,"622 Jackson St, Seattle, WA 98101" +147895,iPhone,1,700,01/15/19 07:23,"329 Cherry St, Atlanta, GA 30301" +147896,27in FHD Monitor,1,149.99,01/27/19 14:53,"521 Church St, Seattle, WA 98101" +147897,27in FHD Monitor,1,149.99,01/28/19 22:03,"239 Park St, Dallas, TX 75001" +147898,Apple Airpods Headphones,1,150,01/30/19 20:37,"655 Meadow St, Boston, MA 02215" +147899,Bose SoundSport Headphones,1,99.99,01/15/19 12:04,"815 2nd St, San Francisco, CA 94016" +147900,iPhone,1,700,01/07/19 16:16,"908 Chestnut St, Los Angeles, CA 90001" +147900,Lightning Charging Cable,1,14.95,01/07/19 16:16,"908 Chestnut St, Los Angeles, CA 90001" +147901,Lightning Charging Cable,1,14.95,01/19/19 12:25,"548 Sunset St, Portland, OR 97035" +147902,Lightning Charging Cable,1,14.95,01/30/19 14:23,"24 Hill St, New York City, NY 10001" +147903,27in FHD Monitor,1,149.99,01/07/19 13:02,"305 Forest St, San Francisco, CA 94016" +147904,Bose SoundSport Headphones,1,99.99,01/02/19 14:43,"681 5th St, Boston, MA 02215" +147904,Bose SoundSport Headphones,1,99.99,01/02/19 14:43,"681 5th St, Boston, MA 02215" +147905,AAA Batteries (4-pack),2,2.99,01/25/19 11:49,"972 River St, Los Angeles, CA 90001" +147906,Bose SoundSport Headphones,1,99.99,01/28/19 18:03,"779 7th St, Los Angeles, CA 90001" +147907,Lightning Charging Cable,1,14.95,01/11/19 18:05,"843 Dogwood St, Los Angeles, CA 90001" +147908,USB-C Charging Cable,1,11.95,01/11/19 10:02,"521 Cedar St, Seattle, WA 98101" +147909,Bose SoundSport Headphones,1,99.99,01/14/19 12:22,"633 Adams St, San Francisco, CA 94016" +147910,USB-C Charging Cable,1,11.95,01/01/19 19:05,"11 Madison St, Dallas, TX 75001" +147910,Macbook Pro Laptop,1,1700,01/01/19 19:05,"11 Madison St, Dallas, TX 75001" +147911,Bose SoundSport Headphones,1,99.99,01/19/19 10:06,"717 Church St, Dallas, TX 75001" +147912,USB-C Charging Cable,1,11.95,01/29/19 12:07,"27 Madison St, Boston, MA 02215" +147912,Wired Headphones,2,11.99,01/29/19 12:07,"27 Madison St, Boston, MA 02215" +147913,Flatscreen TV,1,300,01/08/19 06:48,"813 Lincoln St, San Francisco, CA 94016" +147914,Wired Headphones,1,11.99,01/17/19 16:46,"419 Lakeview St, Portland, OR 97035" +147915,LG Washing Machine,1,600.0,01/13/19 10:12,"456 2nd St, Atlanta, GA 30301" +147916,USB-C Charging Cable,1,11.95,01/18/19 11:01,"529 West St, Los Angeles, CA 90001" +147917,Apple Airpods Headphones,1,150,01/04/19 10:19,"931 Jefferson St, Los Angeles, CA 90001" +147918,27in FHD Monitor,1,149.99,01/23/19 08:07,"192 Cedar St, Los Angeles, CA 90001" +147919,USB-C Charging Cable,1,11.95,01/11/19 11:25,"616 Pine St, Dallas, TX 75001" +147920,Apple Airpods Headphones,1,150,01/01/19 07:51,"153 Willow St, San Francisco, CA 94016" +147921,Apple Airpods Headphones,1,150,01/28/19 17:50,"393 Jefferson St, Austin, TX 73301" +147922,Bose SoundSport Headphones,1,99.99,01/15/19 12:55,"77 13th St, Portland, OR 97035" +147923,Wired Headphones,1,11.99,01/22/19 15:32,"257 Park St, Portland, ME 04101" +147924,Apple Airpods Headphones,1,150,01/06/19 20:13,"979 Walnut St, Seattle, WA 98101" +147925,AAA Batteries (4-pack),1,2.99,01/12/19 09:42,"464 Johnson St, San Francisco, CA 94016" +147926,ThinkPad Laptop,1,999.99,01/30/19 13:48,"911 Walnut St, San Francisco, CA 94016" +147927,Lightning Charging Cable,1,14.95,01/08/19 09:11,"407 Dogwood St, New York City, NY 10001" +147928,27in 4K Gaming Monitor,1,389.99,01/27/19 14:23,"648 Spruce St, Atlanta, GA 30301" +147929,34in Ultrawide Monitor,1,379.99,01/21/19 21:46,"443 Pine St, San Francisco, CA 94016" +147930,27in 4K Gaming Monitor,1,389.99,01/29/19 19:31,"144 9th St, Atlanta, GA 30301" +147931,Lightning Charging Cable,1,14.95,01/16/19 13:29,"647 Cherry St, Dallas, TX 75001" +147932,AAA Batteries (4-pack),1,2.99,01/27/19 16:59,"644 5th St, Portland, OR 97035" +147933,Lightning Charging Cable,1,14.95,01/23/19 22:29,"564 Wilson St, San Francisco, CA 94016" +147934,Google Phone,1,600,01/26/19 15:37,"529 10th St, Dallas, TX 75001" +147934,Wired Headphones,1,11.99,01/26/19 15:37,"529 10th St, Dallas, TX 75001" +147935,27in 4K Gaming Monitor,1,389.99,01/11/19 12:59,"738 Forest St, Boston, MA 02215" +147936,USB-C Charging Cable,1,11.95,01/07/19 20:25,"732 13th St, New York City, NY 10001" +147937,Apple Airpods Headphones,1,150,01/19/19 16:27,"56 Meadow St, Los Angeles, CA 90001" +147938,27in FHD Monitor,1,149.99,01/26/19 21:32,"849 Cherry St, San Francisco, CA 94016" +147939,USB-C Charging Cable,1,11.95,01/03/19 08:34,"16 Elm St, San Francisco, CA 94016" +147940,Google Phone,1,600,01/26/19 19:35,"471 2nd St, Los Angeles, CA 90001" +147941,iPhone,1,700,01/02/19 23:33,"972 North St, Seattle, WA 98101" +147942,USB-C Charging Cable,1,11.95,01/05/19 12:52,"659 Walnut St, Seattle, WA 98101" +147943,AA Batteries (4-pack),1,3.84,01/13/19 20:27,"281 Spruce St, Atlanta, GA 30301" +147944,Lightning Charging Cable,1,14.95,01/31/19 23:45,"282 6th St, Dallas, TX 75001" +147945,Wired Headphones,1,11.99,01/30/19 18:56,"19 2nd St, San Francisco, CA 94016" +147946,USB-C Charging Cable,1,11.95,01/18/19 00:42,"228 11th St, Atlanta, GA 30301" +147947,Wired Headphones,1,11.99,01/08/19 08:45,"50 12th St, New York City, NY 10001" +147948,Flatscreen TV,1,300,01/06/19 22:07,"960 Ridge St, Atlanta, GA 30301" +147949,Wired Headphones,1,11.99,01/21/19 11:59,"368 11th St, New York City, NY 10001" +147950,ThinkPad Laptop,1,999.99,01/27/19 21:58,"158 Jackson St, San Francisco, CA 94016" +147951,Wired Headphones,1,11.99,01/03/19 07:37,"997 River St, Los Angeles, CA 90001" +147952,Lightning Charging Cable,1,14.95,01/04/19 18:32,"518 9th St, Los Angeles, CA 90001" +147953,USB-C Charging Cable,1,11.95,01/21/19 13:41,"528 9th St, New York City, NY 10001" +147954,20in Monitor,1,109.99,01/19/19 19:44,"526 14th St, Los Angeles, CA 90001" +147955,USB-C Charging Cable,1,11.95,01/24/19 08:12,"399 12th St, Atlanta, GA 30301" +147956,iPhone,1,700,01/11/19 23:00,"50 14th St, Portland, ME 04101" +147956,Apple Airpods Headphones,1,150,01/11/19 23:00,"50 14th St, Portland, ME 04101" +147957,Wired Headphones,1,11.99,01/06/19 18:05,"440 Dogwood St, Boston, MA 02215" +147958,Lightning Charging Cable,1,14.95,01/31/19 16:09,"641 Sunset St, Portland, OR 97035" +147959,Apple Airpods Headphones,1,150,01/10/19 20:48,"151 Elm St, Los Angeles, CA 90001" +147960,27in 4K Gaming Monitor,1,389.99,01/14/19 16:45,"174 Ridge St, Dallas, TX 75001" +147961,27in 4K Gaming Monitor,1,389.99,01/19/19 17:08,"793 Jackson St, Los Angeles, CA 90001" +147962,Flatscreen TV,1,300,01/01/19 16:36,"264 Madison St, Seattle, WA 98101" +147963,Lightning Charging Cable,1,14.95,01/27/19 11:23,"236 12th St, Boston, MA 02215" +147964,Bose SoundSport Headphones,1,99.99,01/21/19 16:39,"236 Lincoln St, Atlanta, GA 30301" +147965,AA Batteries (4-pack),1,3.84,01/16/19 15:38,"269 4th St, San Francisco, CA 94016" +147966,Lightning Charging Cable,1,14.95,01/21/19 12:37,"597 Willow St, New York City, NY 10001" +147967,27in FHD Monitor,1,149.99,01/22/19 18:37,"573 Wilson St, Portland, OR 97035" +147968,AA Batteries (4-pack),1,3.84,01/20/19 19:00,"681 Spruce St, Portland, ME 04101" +147969,AA Batteries (4-pack),1,3.84,01/21/19 19:41,"600 North St, San Francisco, CA 94016" +147970,Lightning Charging Cable,2,14.95,01/08/19 20:23,"19 Sunset St, Los Angeles, CA 90001" +147970,Bose SoundSport Headphones,1,99.99,01/08/19 20:23,"19 Sunset St, Los Angeles, CA 90001" +147971,Wired Headphones,1,11.99,01/14/19 19:13,"220 14th St, San Francisco, CA 94016" +147972,USB-C Charging Cable,1,11.95,01/24/19 19:14,"266 North St, San Francisco, CA 94016" +147973,27in FHD Monitor,1,149.99,01/30/19 19:57,"44 Madison St, Los Angeles, CA 90001" +147974,AAA Batteries (4-pack),1,2.99,01/19/19 20:50,"76 Lake St, Boston, MA 02215" +147975,Apple Airpods Headphones,1,150,01/24/19 12:05,"125 Walnut St, Dallas, TX 75001" +147976,AAA Batteries (4-pack),1,2.99,01/05/19 19:23,"818 Highland St, Dallas, TX 75001" +147977,Lightning Charging Cable,1,14.95,01/24/19 11:48,"597 Highland St, New York City, NY 10001" +147978,Lightning Charging Cable,1,14.95,01/17/19 21:47,"66 Cedar St, Portland, OR 97035" +147979,AAA Batteries (4-pack),1,2.99,01/03/19 21:32,"67 Cedar St, Austin, TX 73301" +147980,Macbook Pro Laptop,1,1700,01/05/19 17:27,"390 South St, Los Angeles, CA 90001" +147981,Google Phone,1,600,01/02/19 11:21,"94 River St, San Francisco, CA 94016" +147982,AA Batteries (4-pack),1,3.84,01/11/19 07:39,"162 Hickory St, Atlanta, GA 30301" +147982,Bose SoundSport Headphones,2,99.99,01/11/19 07:39,"162 Hickory St, Atlanta, GA 30301" +147983,iPhone,1,700,01/05/19 18:48,"528 Walnut St, San Francisco, CA 94016" +147984,AA Batteries (4-pack),1,3.84,01/23/19 14:46,"850 West St, New York City, NY 10001" +147984,27in 4K Gaming Monitor,1,389.99,01/23/19 14:46,"850 West St, New York City, NY 10001" +147985,AAA Batteries (4-pack),1,2.99,01/01/19 07:12,"932 11th St, San Francisco, CA 94016" +147986,Lightning Charging Cable,1,14.95,01/23/19 19:51,"454 10th St, Los Angeles, CA 90001" +147986,AA Batteries (4-pack),1,3.84,01/23/19 19:51,"454 10th St, Los Angeles, CA 90001" +147987,Flatscreen TV,1,300,01/14/19 14:46,"8 Lake St, Seattle, WA 98101" +147988,Bose SoundSport Headphones,1,99.99,01/28/19 10:44,"203 Chestnut St, Atlanta, GA 30301" +147989,Bose SoundSport Headphones,1,99.99,01/09/19 22:23,"947 Sunset St, Dallas, TX 75001" +147990,AAA Batteries (4-pack),3,2.99,01/09/19 11:50,"871 11th St, Portland, OR 97035" +147991,Bose SoundSport Headphones,1,99.99,01/09/19 17:39,"744 10th St, San Francisco, CA 94016" +147992,Wired Headphones,1,11.99,01/03/19 10:15,"410 Adams St, Portland, OR 97035" +147993,Lightning Charging Cable,1,14.95,01/09/19 08:01,"775 Hickory St, Los Angeles, CA 90001" +147994,Wired Headphones,1,11.99,01/08/19 12:22,"67 Hickory St, Portland, OR 97035" +147995,27in FHD Monitor,1,149.99,01/03/19 21:34,"872 5th St, New York City, NY 10001" +147996,34in Ultrawide Monitor,1,379.99,01/19/19 22:48,"242 Willow St, Dallas, TX 75001" +147997,Wired Headphones,1,11.99,01/23/19 20:01,"90 11th St, Boston, MA 02215" +147998,Lightning Charging Cable,1,14.95,01/25/19 09:28,"524 Maple St, Dallas, TX 75001" +147999,Wired Headphones,1,11.99,01/07/19 14:15,"938 Cherry St, San Francisco, CA 94016" +148000,USB-C Charging Cable,1,11.95,01/12/19 09:54,"815 Cherry St, San Francisco, CA 94016" +148001,34in Ultrawide Monitor,1,379.99,01/06/19 20:07,"460 West St, San Francisco, CA 94016" +148002,Apple Airpods Headphones,1,150,01/30/19 15:59,"398 Ridge St, San Francisco, CA 94016" +148003,34in Ultrawide Monitor,1,379.99,01/04/19 22:17,"659 8th St, Boston, MA 02215" +148004,AA Batteries (4-pack),1,3.84,01/18/19 19:57,"826 8th St, Atlanta, GA 30301" +148005,AA Batteries (4-pack),1,3.84,01/08/19 16:54,"123 Maple St, San Francisco, CA 94016" +148006,Lightning Charging Cable,1,14.95,01/25/19 08:33,"264 Meadow St, Los Angeles, CA 90001" +148007,Wired Headphones,1,11.99,01/01/19 18:17,"952 Forest St, Los Angeles, CA 90001" +148008,Wired Headphones,1,11.99,01/27/19 17:46,"460 Lake St, San Francisco, CA 94016" +148009,AAA Batteries (4-pack),1,2.99,01/18/19 06:47,"681 2nd St, Dallas, TX 75001" +148010,27in FHD Monitor,1,149.99,01/03/19 08:27,"485 Lincoln St, San Francisco, CA 94016" +148011,AAA Batteries (4-pack),1,2.99,01/01/19 16:39,"521 Park St, San Francisco, CA 94016" +148012,Bose SoundSport Headphones,1,99.99,01/27/19 19:52,"99 North St, San Francisco, CA 94016" +148013,34in Ultrawide Monitor,1,379.99,01/19/19 15:42,"657 5th St, San Francisco, CA 94016" +148014,Flatscreen TV,1,300,01/11/19 16:15,"23 Elm St, Portland, OR 97035" +148015,Apple Airpods Headphones,1,150,01/14/19 17:58,"47 Church St, San Francisco, CA 94016" +148016,Apple Airpods Headphones,1,150,01/22/19 11:18,"159 Main St, New York City, NY 10001" +148017,USB-C Charging Cable,1,11.95,01/25/19 11:03,"148 Jefferson St, Boston, MA 02215" +148018,AA Batteries (4-pack),3,3.84,01/02/19 14:44,"645 Elm St, Austin, TX 73301" +148019,Apple Airpods Headphones,1,150,01/07/19 09:14,"816 Hill St, Dallas, TX 75001" +148019,Lightning Charging Cable,1,14.95,01/07/19 09:14,"816 Hill St, Dallas, TX 75001" +148020,USB-C Charging Cable,1,11.95,01/10/19 20:17,"169 South St, San Francisco, CA 94016" +148021,Flatscreen TV,1,300,01/06/19 10:04,"191 Willow St, Atlanta, GA 30301" +148022,AA Batteries (4-pack),2,3.84,01/06/19 18:43,"656 Adams St, Boston, MA 02215" +148023,Lightning Charging Cable,1,14.95,01/30/19 09:27,"908 4th St, San Francisco, CA 94016" +148024,27in 4K Gaming Monitor,1,389.99,01/24/19 00:10,"997 Lake St, Austin, TX 73301" +148025,Flatscreen TV,1,300,01/29/19 19:09,"764 Ridge St, San Francisco, CA 94016" +148026,AA Batteries (4-pack),2,3.84,01/28/19 21:58,"579 North St, Seattle, WA 98101" +148027,AA Batteries (4-pack),2,3.84,01/30/19 11:18,"971 10th St, Austin, TX 73301" +148028,27in 4K Gaming Monitor,1,389.99,01/27/19 00:05,"47 Lake St, Seattle, WA 98101" +148029,Bose SoundSport Headphones,1,99.99,01/01/19 09:58,"316 Madison St, Dallas, TX 75001" +148030,27in 4K Gaming Monitor,1,389.99,01/22/19 14:11,"377 Main St, Portland, OR 97035" +148031,USB-C Charging Cable,1,11.95,01/14/19 22:10,"966 Jackson St, Portland, OR 97035" +148032,AA Batteries (4-pack),1,3.84,01/28/19 07:15,"451 Spruce St, Boston, MA 02215" +148033,USB-C Charging Cable,1,11.95,01/02/19 17:12,"113 Washington St, New York City, NY 10001" +148034,Lightning Charging Cable,1,14.95,01/26/19 09:17,"650 5th St, Dallas, TX 75001" +148035,27in 4K Gaming Monitor,1,389.99,01/02/19 10:39,"809 5th St, San Francisco, CA 94016" +148036,Flatscreen TV,1,300,01/15/19 15:24,"794 Wilson St, San Francisco, CA 94016" +148037,Apple Airpods Headphones,1,150,01/31/19 10:35,"558 Cedar St, Portland, OR 97035" +148038,AAA Batteries (4-pack),2,2.99,01/30/19 13:11,"307 Cherry St, Seattle, WA 98101" +148039,Lightning Charging Cable,2,14.95,01/30/19 10:22,"945 Park St, Portland, OR 97035" +148040,AA Batteries (4-pack),1,3.84,01/13/19 11:02,"8 Willow St, San Francisco, CA 94016" +148041,iPhone,1,700,01/18/19 20:28,"762 Spruce St, New York City, NY 10001" +148042,Bose SoundSport Headphones,1,99.99,01/12/19 16:56,"379 Highland St, Dallas, TX 75001" +148043,20in Monitor,1,109.99,01/15/19 11:14,"930 Willow St, New York City, NY 10001" +148044,AAA Batteries (4-pack),2,2.99,01/12/19 20:10,"242 12th St, Los Angeles, CA 90001" +148045,AAA Batteries (4-pack),1,2.99,01/15/19 10:03,"671 Center St, Los Angeles, CA 90001" +148046,Apple Airpods Headphones,1,150,01/07/19 19:27,"111 Cedar St, Atlanta, GA 30301" +148047,Apple Airpods Headphones,1,150,01/29/19 10:23,"593 Cherry St, Los Angeles, CA 90001" +148047,AAA Batteries (4-pack),1,2.99,01/29/19 10:23,"593 Cherry St, Los Angeles, CA 90001" +148048,27in FHD Monitor,1,149.99,01/28/19 13:15,"244 Cherry St, Los Angeles, CA 90001" +148049,AA Batteries (4-pack),1,3.84,01/09/19 15:39,"395 Sunset St, San Francisco, CA 94016" +148050,Apple Airpods Headphones,1,150,01/03/19 13:57,"173 Maple St, Boston, MA 02215" +148051,AAA Batteries (4-pack),1,2.99,01/12/19 19:33,"339 Cherry St, Seattle, WA 98101" +148052,AAA Batteries (4-pack),1,2.99,01/08/19 19:16,"191 Main St, Portland, OR 97035" +148053,Apple Airpods Headphones,1,150,01/20/19 15:57,"425 Lake St, Boston, MA 02215" +148054,Wired Headphones,1,11.99,01/27/19 13:46,"771 Wilson St, Los Angeles, CA 90001" +148055,Apple Airpods Headphones,1,150,01/02/19 09:51,"576 6th St, Boston, MA 02215" +148056,Lightning Charging Cable,1,14.95,01/02/19 10:37,"648 Madison St, San Francisco, CA 94016" +148057,Google Phone,1,600,01/28/19 20:06,"137 5th St, San Francisco, CA 94016" +148057,USB-C Charging Cable,1,11.95,01/28/19 20:06,"137 5th St, San Francisco, CA 94016" +148058,Apple Airpods Headphones,1,150,01/20/19 21:47,"912 8th St, San Francisco, CA 94016" +148059,Google Phone,1,600,01/23/19 12:08,"234 4th St, San Francisco, CA 94016" +148059,USB-C Charging Cable,1,11.95,01/23/19 12:08,"234 4th St, San Francisco, CA 94016" +148060,27in 4K Gaming Monitor,1,389.99,01/21/19 18:54,"601 14th St, San Francisco, CA 94016" +148061,USB-C Charging Cable,1,11.95,01/26/19 15:29,"60 Willow St, Los Angeles, CA 90001" +148062,Wired Headphones,1,11.99,01/09/19 18:03,"734 Forest St, Boston, MA 02215" +148063,AA Batteries (4-pack),3,3.84,01/04/19 03:17,"27 Wilson St, San Francisco, CA 94016" +148064,Lightning Charging Cable,1,14.95,01/21/19 10:43,"411 Walnut St, San Francisco, CA 94016" +148065,AA Batteries (4-pack),1,3.84,01/05/19 23:26,"134 Maple St, Austin, TX 73301" +148066,Bose SoundSport Headphones,1,99.99,01/23/19 15:07,"36 Ridge St, Los Angeles, CA 90001" +148067,Macbook Pro Laptop,1,1700,01/08/19 07:31,"860 11th St, Atlanta, GA 30301" +148068,AAA Batteries (4-pack),1,2.99,01/09/19 14:59,"553 Chestnut St, Seattle, WA 98101" +148069,ThinkPad Laptop,1,999.99,01/03/19 19:44,"445 14th St, Atlanta, GA 30301" +148070,USB-C Charging Cable,1,11.95,01/18/19 11:30,"375 Wilson St, Los Angeles, CA 90001" +148071,Bose SoundSport Headphones,1,99.99,01/07/19 22:52,"762 Washington St, Boston, MA 02215" +148072,Wired Headphones,1,11.99,01/01/19 16:06,"738 Jefferson St, Atlanta, GA 30301" +148073,Wired Headphones,1,11.99,01/07/19 14:52,"961 8th St, Dallas, TX 75001" +148074,Lightning Charging Cable,1,14.95,01/02/19 12:53,"222 Adams St, Los Angeles, CA 90001" +148075,Flatscreen TV,1,300,01/11/19 19:52,"694 Maple St, San Francisco, CA 94016" +148076,AAA Batteries (4-pack),1,2.99,01/03/19 11:41,"395 Jackson St, Los Angeles, CA 90001" +148077,34in Ultrawide Monitor,1,379.99,01/14/19 11:30,"387 Jefferson St, Los Angeles, CA 90001" +148078,USB-C Charging Cable,1,11.95,01/25/19 22:31,"92 River St, San Francisco, CA 94016" +148079,ThinkPad Laptop,1,999.99,01/25/19 10:13,"949 West St, San Francisco, CA 94016" +148080,Lightning Charging Cable,1,14.95,01/12/19 18:51,"793 Forest St, San Francisco, CA 94016" +148081,Bose SoundSport Headphones,1,99.99,01/10/19 12:51,"28 2nd St, Atlanta, GA 30301" +148082,Flatscreen TV,1,300,01/19/19 22:15,"140 North St, Austin, TX 73301" +148083,AA Batteries (4-pack),2,3.84,01/28/19 21:00,"954 10th St, Boston, MA 02215" +148084,Lightning Charging Cable,1,14.95,01/29/19 21:27,"959 Hill St, San Francisco, CA 94016" +148085,AA Batteries (4-pack),2,3.84,01/22/19 10:16,"296 Johnson St, New York City, NY 10001" +148086,Lightning Charging Cable,1,14.95,01/09/19 09:50,"222 Cedar St, Dallas, TX 75001" +148087,AAA Batteries (4-pack),1,2.99,01/11/19 22:00,"482 1st St, Portland, OR 97035" +148088,Flatscreen TV,1,300,01/07/19 14:42,"346 North St, Los Angeles, CA 90001" +148089,20in Monitor,1,109.99,01/21/19 14:30,"59 Spruce St, New York City, NY 10001" +148090,Apple Airpods Headphones,1,150,01/16/19 17:41,"948 1st St, Dallas, TX 75001" +148091,Lightning Charging Cable,1,14.95,01/09/19 13:32,"27 14th St, Boston, MA 02215" +148092,Lightning Charging Cable,2,14.95,01/21/19 15:53,"973 Spruce St, New York City, NY 10001" +148093,Apple Airpods Headphones,1,150,01/23/19 08:41,"352 Wilson St, Boston, MA 02215" +148094,Apple Airpods Headphones,1,150,01/08/19 20:15,"436 Elm St, Boston, MA 02215" +148095,Flatscreen TV,1,300,01/14/19 06:34,"447 4th St, Los Angeles, CA 90001" +148096,AAA Batteries (4-pack),1,2.99,01/27/19 21:25,"24 Ridge St, Austin, TX 73301" +148097,iPhone,1,700,01/07/19 20:53,"420 Adams St, Los Angeles, CA 90001" +148098,Lightning Charging Cable,2,14.95,01/29/19 14:06,"94 Adams St, Boston, MA 02215" +148099,USB-C Charging Cable,1,11.95,01/21/19 07:34,"910 8th St, Austin, TX 73301" +148100,AA Batteries (4-pack),1,3.84,01/04/19 08:19,"604 Adams St, Los Angeles, CA 90001" +148101,Bose SoundSport Headphones,1,99.99,01/03/19 20:36,"461 Hickory St, Boston, MA 02215" +148102,USB-C Charging Cable,2,11.95,01/18/19 05:56,"196 Hickory St, Boston, MA 02215" +148103,USB-C Charging Cable,1,11.95,01/01/19 09:33,"516 Jackson St, Seattle, WA 98101" +148104,iPhone,1,700,01/12/19 19:26,"77 2nd St, Dallas, TX 75001" +148105,27in 4K Gaming Monitor,1,389.99,01/07/19 13:10,"181 Spruce St, Los Angeles, CA 90001" +148106,USB-C Charging Cable,1,11.95,01/13/19 00:21,"869 6th St, Seattle, WA 98101" +148107,AAA Batteries (4-pack),2,2.99,01/24/19 18:10,"641 1st St, Los Angeles, CA 90001" +148108,USB-C Charging Cable,1,11.95,01/24/19 14:52,"303 Main St, Boston, MA 02215" +148109,27in FHD Monitor,1,149.99,01/31/19 23:14,"242 7th St, Portland, OR 97035" +148110,Lightning Charging Cable,1,14.95,01/20/19 12:11,"554 11th St, San Francisco, CA 94016" +148111,USB-C Charging Cable,1,11.95,01/22/19 16:54,"71 Church St, Los Angeles, CA 90001" +148112,Apple Airpods Headphones,1,150,01/15/19 21:30,"970 14th St, San Francisco, CA 94016" +148113,AA Batteries (4-pack),4,3.84,01/25/19 22:12,"577 Lakeview St, New York City, NY 10001" +148114,iPhone,1,700,01/28/19 11:39,"722 8th St, Boston, MA 02215" +148115,Apple Airpods Headphones,1,150,01/31/19 13:07,"688 Sunset St, Los Angeles, CA 90001" +148116,USB-C Charging Cable,1,11.95,01/18/19 15:41,"802 Willow St, Seattle, WA 98101" +148117,Wired Headphones,1,11.99,01/09/19 12:52,"677 Walnut St, Austin, TX 73301" +148118,34in Ultrawide Monitor,1,379.99,01/14/19 18:46,"444 Church St, San Francisco, CA 94016" +148119,34in Ultrawide Monitor,1,379.99,01/08/19 18:07,"998 North St, Los Angeles, CA 90001" +148120,Apple Airpods Headphones,1,150,01/06/19 15:44,"869 8th St, Los Angeles, CA 90001" +148121,Lightning Charging Cable,1,14.95,01/20/19 11:38,"386 Meadow St, Dallas, TX 75001" +148122,AAA Batteries (4-pack),1,2.99,01/28/19 20:27,"566 Lakeview St, Boston, MA 02215" +148123,Wired Headphones,1,11.99,01/12/19 18:22,"237 2nd St, Atlanta, GA 30301" +148124,27in 4K Gaming Monitor,1,389.99,01/12/19 18:51,"645 Meadow St, San Francisco, CA 94016" +148125,Bose SoundSport Headphones,1,99.99,01/07/19 14:07,"766 10th St, Seattle, WA 98101" +148126,Apple Airpods Headphones,1,150,01/17/19 12:28,"247 South St, Los Angeles, CA 90001" +148127,Wired Headphones,2,11.99,01/03/19 14:48,"627 Forest St, Los Angeles, CA 90001" +148128,Macbook Pro Laptop,1,1700,01/08/19 21:36,"638 Ridge St, Austin, TX 73301" +148129,iPhone,1,700,01/23/19 09:43,"998 12th St, Los Angeles, CA 90001" +148130,Wired Headphones,1,11.99,01/28/19 18:14,"404 Wilson St, New York City, NY 10001" +148131,Lightning Charging Cable,1,14.95,01/15/19 13:29,"759 South St, New York City, NY 10001" +148132,AA Batteries (4-pack),1,3.84,01/24/19 21:23,"391 Spruce St, Atlanta, GA 30301" +148133,27in FHD Monitor,1,149.99,01/04/19 11:34,"221 Lakeview St, San Francisco, CA 94016" +148134,USB-C Charging Cable,1,11.95,01/05/19 10:45,"588 Chestnut St, Dallas, TX 75001" +148135,USB-C Charging Cable,1,11.95,01/26/19 10:40,"292 Jackson St, Portland, OR 97035" +148136,Wired Headphones,1,11.99,01/18/19 17:43,"476 Lake St, Atlanta, GA 30301" +148137,Apple Airpods Headphones,1,150,01/27/19 17:45,"709 6th St, San Francisco, CA 94016" +148138,AA Batteries (4-pack),1,3.84,01/02/19 19:23,"62 Maple St, San Francisco, CA 94016" +148139,iPhone,1,700,01/13/19 13:43,"459 13th St, Portland, OR 97035" +148140,34in Ultrawide Monitor,1,379.99,01/02/19 19:48,"42 Forest St, San Francisco, CA 94016" +148141,AA Batteries (4-pack),1,3.84,01/04/19 15:49,"793 Pine St, Portland, OR 97035" +148142,AAA Batteries (4-pack),1,2.99,01/04/19 23:02,"523 Lincoln St, Seattle, WA 98101" +148143,Wired Headphones,1,11.99,01/07/19 17:41,"903 Main St, Dallas, TX 75001" +148144,Flatscreen TV,1,300,01/09/19 21:58,"401 North St, Los Angeles, CA 90001" +148145,27in FHD Monitor,1,149.99,01/19/19 18:36,"492 Forest St, New York City, NY 10001" +148146,AA Batteries (4-pack),3,3.84,01/06/19 12:37,"896 Dogwood St, Austin, TX 73301" +148147,Apple Airpods Headphones,1,150,01/18/19 07:39,"201 Hickory St, Los Angeles, CA 90001" +148148,27in 4K Gaming Monitor,1,389.99,01/09/19 21:23,"269 Sunset St, New York City, NY 10001" +148149,USB-C Charging Cable,1,11.95,01/20/19 11:33,"800 River St, Seattle, WA 98101" +148150,34in Ultrawide Monitor,1,379.99,01/20/19 09:22,"248 Madison St, Boston, MA 02215" +148151,Wired Headphones,1,11.99,01/16/19 12:26,"810 Highland St, Atlanta, GA 30301" +148152,20in Monitor,1,109.99,01/03/19 00:48,"436 Walnut St, Portland, OR 97035" +148153,27in 4K Gaming Monitor,1,389.99,01/21/19 13:00,"779 Lakeview St, Austin, TX 73301" +148154,Macbook Pro Laptop,1,1700,01/27/19 17:07,"962 2nd St, Portland, ME 04101" +148155,Apple Airpods Headphones,1,150,01/19/19 19:26,"89 Chestnut St, Los Angeles, CA 90001" +148156,AA Batteries (4-pack),2,3.84,01/06/19 01:00,"947 Wilson St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +148157,Apple Airpods Headphones,1,150,01/18/19 05:51,"53 12th St, Portland, ME 04101" +148158,Bose SoundSport Headphones,1,99.99,01/16/19 19:08,"98 Hill St, Dallas, TX 75001" +148159,AA Batteries (4-pack),2,3.84,01/22/19 17:01,"395 Jefferson St, Los Angeles, CA 90001" +148160,Lightning Charging Cable,1,14.95,01/17/19 14:09,"311 Sunset St, Los Angeles, CA 90001" +148161,Flatscreen TV,1,300,01/14/19 16:40,"589 Forest St, Los Angeles, CA 90001" +148162,Lightning Charging Cable,1,14.95,01/07/19 12:20,"723 10th St, Boston, MA 02215" +148163,AA Batteries (4-pack),1,3.84,01/14/19 05:30,"164 9th St, New York City, NY 10001" +148164,USB-C Charging Cable,1,11.95,01/03/19 16:36,"737 Wilson St, Seattle, WA 98101" +148165,AAA Batteries (4-pack),4,2.99,01/15/19 17:12,"372 9th St, Seattle, WA 98101" +148166,Apple Airpods Headphones,1,150,01/21/19 11:23,"70 Park St, Los Angeles, CA 90001" +148167,AA Batteries (4-pack),3,3.84,01/02/19 20:54,"127 Sunset St, Seattle, WA 98101" +148168,Google Phone,1,600,01/03/19 10:43,"45 Spruce St, San Francisco, CA 94016" +148168,USB-C Charging Cable,1,11.95,01/03/19 10:43,"45 Spruce St, San Francisco, CA 94016" +148168,Lightning Charging Cable,1,14.95,01/03/19 10:43,"45 Spruce St, San Francisco, CA 94016" +148169,iPhone,1,700,01/15/19 18:35,"907 Spruce St, San Francisco, CA 94016" +148170,Wired Headphones,1,11.99,01/13/19 12:32,"41 Hickory St, Seattle, WA 98101" +148171,USB-C Charging Cable,1,11.95,01/08/19 15:03,"486 9th St, Dallas, TX 75001" +148172,Macbook Pro Laptop,1,1700,01/28/19 22:25,"417 10th St, San Francisco, CA 94016" +148173,Lightning Charging Cable,1,14.95,01/28/19 13:31,"944 Adams St, Austin, TX 73301" +148174,Apple Airpods Headphones,1,150,01/03/19 19:20,"111 Ridge St, Austin, TX 73301" +148175,Google Phone,1,600,01/25/19 14:52,"853 Pine St, Portland, OR 97035" +148176,Apple Airpods Headphones,1,150,01/23/19 10:31,"64 Spruce St, Austin, TX 73301" +148177,27in 4K Gaming Monitor,1,389.99,01/12/19 08:07,"235 Madison St, Los Angeles, CA 90001" +148178,Macbook Pro Laptop,1,1700,01/26/19 15:08,"404 Washington St, Boston, MA 02215" +148179,Wired Headphones,1,11.99,01/04/19 10:15,"553 Ridge St, Boston, MA 02215" +148180,AA Batteries (4-pack),2,3.84,01/05/19 18:50,"927 6th St, Atlanta, GA 30301" +148181,Wired Headphones,1,11.99,01/01/19 18:45,"309 Park St, Los Angeles, CA 90001" +148182,Bose SoundSport Headphones,1,99.99,01/17/19 15:03,"492 12th St, Los Angeles, CA 90001" +148183,Flatscreen TV,1,300,01/15/19 17:48,"732 Forest St, San Francisco, CA 94016" +148184,Lightning Charging Cable,1,14.95,01/15/19 17:11,"549 8th St, New York City, NY 10001" +148185,ThinkPad Laptop,1,999.99,01/22/19 22:18,"738 Wilson St, Dallas, TX 75001" +148186,Wired Headphones,2,11.99,01/20/19 21:13,"368 Main St, Boston, MA 02215" +148187,Wired Headphones,2,11.99,01/22/19 06:30,"893 Center St, Dallas, TX 75001" +148188,Bose SoundSport Headphones,1,99.99,01/06/19 07:00,"116 Sunset St, San Francisco, CA 94016" +148189,34in Ultrawide Monitor,1,379.99,01/15/19 18:27,"428 Spruce St, San Francisco, CA 94016" +148190,USB-C Charging Cable,1,11.95,01/11/19 09:18,"321 Meadow St, Atlanta, GA 30301" +148191,Bose SoundSport Headphones,1,99.99,01/18/19 14:57,"799 Ridge St, Boston, MA 02215" +148192,USB-C Charging Cable,1,11.95,01/28/19 16:10,"464 Lake St, San Francisco, CA 94016" +148193,27in FHD Monitor,1,149.99,01/11/19 21:38,"912 Walnut St, Dallas, TX 75001" +148194,Lightning Charging Cable,1,14.95,01/27/19 09:43,"849 Lakeview St, Los Angeles, CA 90001" +148195,USB-C Charging Cable,1,11.95,01/24/19 19:45,"715 Willow St, Austin, TX 73301" +148196,27in 4K Gaming Monitor,1,389.99,01/09/19 20:41,"774 Hill St, Dallas, TX 75001" +148197,AA Batteries (4-pack),1,3.84,01/05/19 10:29,"636 Madison St, San Francisco, CA 94016" +148198,Wired Headphones,1,11.99,01/15/19 15:50,"233 Dogwood St, Dallas, TX 75001" +148199,Wired Headphones,1,11.99,01/01/19 11:42,"348 Dogwood St, Atlanta, GA 30301" +148200,Apple Airpods Headphones,1,150,01/08/19 21:43,"261 River St, Boston, MA 02215" +148201,Google Phone,1,600,01/28/19 01:24,"133 7th St, Boston, MA 02215" +148202,USB-C Charging Cable,1,11.95,01/19/19 19:09,"800 Elm St, Atlanta, GA 30301" +148203,Bose SoundSport Headphones,1,99.99,01/19/19 21:08,"769 River St, New York City, NY 10001" +148204,AA Batteries (4-pack),1,3.84,01/31/19 20:02,"493 7th St, New York City, NY 10001" +148205,Apple Airpods Headphones,1,150,01/05/19 20:24,"960 Pine St, Atlanta, GA 30301" +148206,Wired Headphones,1,11.99,01/17/19 20:29,"217 Highland St, Seattle, WA 98101" +148207,27in 4K Gaming Monitor,1,389.99,01/19/19 18:28,"565 Elm St, New York City, NY 10001" +148208,Lightning Charging Cable,1,14.95,01/13/19 22:26,"525 Sunset St, San Francisco, CA 94016" +148209,27in 4K Gaming Monitor,1,389.99,01/10/19 15:15,"977 9th St, Atlanta, GA 30301" +148210,Lightning Charging Cable,1,14.95,01/21/19 22:44,"612 Walnut St, New York City, NY 10001" +148211,USB-C Charging Cable,1,11.95,01/25/19 22:04,"995 4th St, Austin, TX 73301" +148212,USB-C Charging Cable,1,11.95,01/04/19 23:05,"737 13th St, Portland, OR 97035" +148213,Apple Airpods Headphones,1,150,01/26/19 18:30,"376 Ridge St, Austin, TX 73301" +148214,Bose SoundSport Headphones,1,99.99,01/18/19 22:02,"887 10th St, Austin, TX 73301" +148215,Apple Airpods Headphones,1,150,01/21/19 18:00,"612 Jackson St, Portland, OR 97035" +148216,Wired Headphones,1,11.99,01/28/19 23:41,"132 2nd St, Portland, OR 97035" +148217,AAA Batteries (4-pack),1,2.99,01/15/19 10:53,"888 Pine St, San Francisco, CA 94016" +148218,iPhone,1,700,01/12/19 10:04,"260 Chestnut St, San Francisco, CA 94016" +148219,Macbook Pro Laptop,1,1700,01/09/19 19:14,"44 Ridge St, Los Angeles, CA 90001" +148220,Macbook Pro Laptop,1,1700,01/28/19 16:22,"605 11th St, Dallas, TX 75001" +148221,AA Batteries (4-pack),1,3.84,01/17/19 17:06,"180 Center St, San Francisco, CA 94016" +148222,34in Ultrawide Monitor,1,379.99,01/09/19 12:08,"249 14th St, Portland, OR 97035" +148223,USB-C Charging Cable,1,11.95,01/11/19 13:02,"924 Main St, Los Angeles, CA 90001" +148224,Apple Airpods Headphones,1,150,01/14/19 12:35,"19 Walnut St, Portland, OR 97035" +148225,Wired Headphones,1,11.99,01/26/19 14:34,"385 14th St, Boston, MA 02215" +148226,AAA Batteries (4-pack),2,2.99,01/25/19 03:04,"252 Lakeview St, Portland, ME 04101" +148227,Lightning Charging Cable,1,14.95,01/31/19 11:35,"670 Washington St, Seattle, WA 98101" +148228,Wired Headphones,1,11.99,01/14/19 23:24,"99 7th St, San Francisco, CA 94016" +148229,AAA Batteries (4-pack),2,2.99,01/05/19 16:25,"932 11th St, San Francisco, CA 94016" +148230,ThinkPad Laptop,1,999.99,01/05/19 20:41,"910 Church St, San Francisco, CA 94016" +148231,27in 4K Gaming Monitor,1,389.99,01/22/19 18:11,"65 Willow St, Los Angeles, CA 90001" +148232,Lightning Charging Cable,2,14.95,01/08/19 19:19,"544 Spruce St, New York City, NY 10001" +148233,Wired Headphones,1,11.99,01/31/19 10:14,"349 Lakeview St, Atlanta, GA 30301" +148234,AA Batteries (4-pack),1,3.84,01/18/19 13:46,"940 Highland St, Los Angeles, CA 90001" +148235,20in Monitor,1,109.99,01/17/19 09:41,"900 Main St, San Francisco, CA 94016" +148236,USB-C Charging Cable,1,11.95,01/22/19 15:29,"277 14th St, Seattle, WA 98101" +148237,AAA Batteries (4-pack),1,2.99,01/23/19 00:06,"742 Wilson St, Los Angeles, CA 90001" +148238,AA Batteries (4-pack),1,3.84,01/06/19 20:35,"38 Cherry St, Dallas, TX 75001" +148239,Wired Headphones,1,11.99,01/02/19 07:59,"142 Park St, San Francisco, CA 94016" +148240,USB-C Charging Cable,1,11.95,01/19/19 16:14,"224 North St, San Francisco, CA 94016" +148241,27in FHD Monitor,1,149.99,01/30/19 16:07,"735 11th St, San Francisco, CA 94016" +148242,Lightning Charging Cable,1,14.95,01/16/19 12:37,"87 4th St, New York City, NY 10001" +148243,Lightning Charging Cable,1,14.95,01/21/19 18:05,"743 Sunset St, Atlanta, GA 30301" +148244,Wired Headphones,1,11.99,01/01/19 20:19,"909 Chestnut St, Portland, OR 97035" +148245,AA Batteries (4-pack),1,3.84,01/24/19 15:12,"902 Church St, Austin, TX 73301" +148246,USB-C Charging Cable,1,11.95,01/21/19 08:06,"567 Cedar St, San Francisco, CA 94016" +148247,Macbook Pro Laptop,1,1700,01/15/19 19:14,"75 Highland St, New York City, NY 10001" +148248,USB-C Charging Cable,1,11.95,01/17/19 15:41,"141 12th St, New York City, NY 10001" +148249,USB-C Charging Cable,1,11.95,01/11/19 02:42,"145 North St, New York City, NY 10001" +148250,USB-C Charging Cable,1,11.95,01/23/19 17:12,"368 11th St, Los Angeles, CA 90001" +148251,Lightning Charging Cable,2,14.95,01/26/19 22:26,"163 12th St, Seattle, WA 98101" +148252,Apple Airpods Headphones,1,150,01/23/19 21:57,"137 7th St, New York City, NY 10001" +148253,iPhone,1,700,01/18/19 23:01,"197 4th St, Los Angeles, CA 90001" +148253,Lightning Charging Cable,1,14.95,01/18/19 23:01,"197 4th St, Los Angeles, CA 90001" +148254,USB-C Charging Cable,1,11.95,01/25/19 16:58,"160 Cherry St, Austin, TX 73301" +148255,Bose SoundSport Headphones,1,99.99,01/16/19 16:57,"856 Elm St, Atlanta, GA 30301" +148256,Google Phone,1,600,01/20/19 10:22,"717 9th St, Los Angeles, CA 90001" +148257,Apple Airpods Headphones,1,150,01/21/19 14:53,"976 Dogwood St, San Francisco, CA 94016" +148258,Lightning Charging Cable,2,14.95,01/24/19 16:02,"80 South St, Dallas, TX 75001" +148259,Apple Airpods Headphones,1,150,01/29/19 16:49,"180 South St, Seattle, WA 98101" +148260,27in 4K Gaming Monitor,1,389.99,01/20/19 12:59,"262 12th St, Los Angeles, CA 90001" +148261,AA Batteries (4-pack),1,3.84,01/05/19 17:49,"464 12th St, New York City, NY 10001" +148262,USB-C Charging Cable,2,11.95,01/27/19 12:19,"54 Johnson St, Los Angeles, CA 90001" +148263,Bose SoundSport Headphones,1,99.99,01/04/19 16:09,"912 Madison St, Los Angeles, CA 90001" +148264,AAA Batteries (4-pack),1,2.99,01/18/19 20:24,"232 Dogwood St, Los Angeles, CA 90001" +148265,Bose SoundSport Headphones,1,99.99,01/07/19 18:02,"933 Madison St, Boston, MA 02215" +148266,Bose SoundSport Headphones,1,99.99,01/22/19 00:09,"2 Washington St, San Francisco, CA 94016" +148267,Macbook Pro Laptop,1,1700,01/06/19 20:51,"104 13th St, New York City, NY 10001" +148268,Apple Airpods Headphones,1,150,01/08/19 21:19,"751 1st St, Atlanta, GA 30301" +148269,Apple Airpods Headphones,1,150,01/31/19 18:59,"793 Maple St, New York City, NY 10001" +148270,Lightning Charging Cable,1,14.95,01/25/19 16:39,"834 12th St, New York City, NY 10001" +148271,Vareebadd Phone,1,400,01/28/19 17:48,"530 Cherry St, Portland, OR 97035" +148272,Google Phone,1,600,01/02/19 22:26,"852 Adams St, Los Angeles, CA 90001" +148273,Wired Headphones,1,11.99,01/08/19 16:04,"618 9th St, Austin, TX 73301" +148274,Lightning Charging Cable,1,14.95,01/23/19 01:58,"395 Dogwood St, Dallas, TX 75001" +148275,USB-C Charging Cable,1,11.95,01/24/19 09:40,"6 Hickory St, Los Angeles, CA 90001" +148276,27in 4K Gaming Monitor,1,389.99,01/04/19 12:14,"896 4th St, New York City, NY 10001" +148277,USB-C Charging Cable,1,11.95,01/18/19 17:51,"987 Willow St, Dallas, TX 75001" +148278,AAA Batteries (4-pack),3,2.99,01/21/19 20:11,"264 North St, Dallas, TX 75001" +148279,34in Ultrawide Monitor,1,379.99,01/19/19 13:34,"718 Center St, Portland, OR 97035" +148280,USB-C Charging Cable,1,11.95,01/05/19 10:31,"471 Hickory St, Atlanta, GA 30301" +148281,Wired Headphones,1,11.99,01/05/19 23:38,"661 Dogwood St, Seattle, WA 98101" +148282,27in FHD Monitor,1,149.99,01/13/19 19:24,"815 11th St, Los Angeles, CA 90001" +148283,Wired Headphones,1,11.99,01/07/19 21:03,"614 South St, New York City, NY 10001" +148284,27in FHD Monitor,1,149.99,01/19/19 01:29,"381 Park St, Portland, OR 97035" +148285,iPhone,1,700,01/05/19 09:51,"171 Hill St, Portland, OR 97035" +148286,Apple Airpods Headphones,1,150,01/06/19 22:32,"612 West St, Los Angeles, CA 90001" +148287,USB-C Charging Cable,1,11.95,01/31/19 14:13,"925 Lincoln St, Seattle, WA 98101" +148288,USB-C Charging Cable,1,11.95,01/11/19 19:59,"909 13th St, Los Angeles, CA 90001" +148289,AA Batteries (4-pack),2,3.84,01/25/19 16:33,"35 Hickory St, Los Angeles, CA 90001" +148290,Wired Headphones,1,11.99,01/02/19 10:52,"320 Church St, Dallas, TX 75001" +148291,Vareebadd Phone,1,400,01/28/19 18:53,"675 Jackson St, San Francisco, CA 94016" +148291,USB-C Charging Cable,2,11.95,01/28/19 18:53,"675 Jackson St, San Francisco, CA 94016" +148292,AAA Batteries (4-pack),2,2.99,01/20/19 13:24,"262 4th St, New York City, NY 10001" +148293,Lightning Charging Cable,1,14.95,01/14/19 06:38,"127 4th St, San Francisco, CA 94016" +148294,20in Monitor,2,109.99,01/04/19 18:43,"541 Adams St, New York City, NY 10001" +148295,Lightning Charging Cable,1,14.95,01/06/19 21:13,"66 Center St, San Francisco, CA 94016" +148296,AA Batteries (4-pack),1,3.84,01/23/19 19:17,"407 North St, Boston, MA 02215" +148297,AAA Batteries (4-pack),1,2.99,01/12/19 07:46,"332 10th St, Austin, TX 73301" +148298,Macbook Pro Laptop,1,1700,01/18/19 19:42,"186 Johnson St, San Francisco, CA 94016" +148299,USB-C Charging Cable,1,11.95,01/11/19 05:33,"329 13th St, Dallas, TX 75001" +148300,AA Batteries (4-pack),1,3.84,01/06/19 10:20,"875 4th St, New York City, NY 10001" +148301,AA Batteries (4-pack),2,3.84,01/06/19 23:28,"764 13th St, San Francisco, CA 94016" +148302,Wired Headphones,1,11.99,01/05/19 11:13,"726 Chestnut St, Austin, TX 73301" +148303,34in Ultrawide Monitor,1,379.99,01/02/19 13:08,"629 7th St, Austin, TX 73301" +148304,Lightning Charging Cable,1,14.95,01/28/19 19:01,"265 Pine St, Atlanta, GA 30301" +148305,27in 4K Gaming Monitor,1,389.99,01/12/19 12:30,"147 Pine St, Los Angeles, CA 90001" +148306,Apple Airpods Headphones,1,150,01/30/19 22:36,"601 Adams St, San Francisco, CA 94016" +148307,Wired Headphones,1,11.99,01/29/19 18:52,"555 River St, Atlanta, GA 30301" +148308,Apple Airpods Headphones,1,150,01/01/19 20:58,"47 2nd St, Atlanta, GA 30301" +148309,Flatscreen TV,1,300,01/10/19 23:37,"80 2nd St, Los Angeles, CA 90001" +148310,AAA Batteries (4-pack),2,2.99,01/13/19 23:02,"106 Hill St, Los Angeles, CA 90001" +148311,Macbook Pro Laptop,1,1700,01/23/19 13:09,"698 4th St, San Francisco, CA 94016" +148312,Flatscreen TV,1,300,01/17/19 00:59,"544 1st St, Los Angeles, CA 90001" +148313,Bose SoundSport Headphones,1,99.99,01/20/19 11:32,"646 10th St, Seattle, WA 98101" +148314,AA Batteries (4-pack),1,3.84,01/11/19 09:18,"389 Willow St, San Francisco, CA 94016" +148315,Lightning Charging Cable,1,14.95,01/22/19 11:11,"742 Cherry St, Dallas, TX 75001" +148316,USB-C Charging Cable,1,11.95,01/28/19 20:23,"73 Lakeview St, Dallas, TX 75001" +148317,Lightning Charging Cable,1,14.95,01/14/19 14:29,"873 Maple St, New York City, NY 10001" +148318,AA Batteries (4-pack),1,3.84,01/06/19 21:10,"738 Pine St, Dallas, TX 75001" +148319,AA Batteries (4-pack),1,3.84,01/04/19 12:03,"783 Ridge St, Atlanta, GA 30301" +148320,Macbook Pro Laptop,1,1700,01/05/19 11:31,"772 Hill St, Los Angeles, CA 90001" +148321,Wired Headphones,1,11.99,01/27/19 10:51,"102 Adams St, Atlanta, GA 30301" +148322,AA Batteries (4-pack),2,3.84,01/07/19 17:16,"842 Washington St, Los Angeles, CA 90001" +148323,Apple Airpods Headphones,1,150,01/18/19 17:56,"574 Elm St, Los Angeles, CA 90001" +148324,27in 4K Gaming Monitor,1,389.99,01/30/19 13:58,"976 North St, San Francisco, CA 94016" +148325,Macbook Pro Laptop,1,1700,01/03/19 15:29,"743 Washington St, New York City, NY 10001" +148326,34in Ultrawide Monitor,1,379.99,01/13/19 11:45,"682 1st St, San Francisco, CA 94016" +148327,Lightning Charging Cable,1,14.95,01/22/19 13:47,"682 Hill St, San Francisco, CA 94016" +148328,Bose SoundSport Headphones,1,99.99,01/28/19 11:13,"264 Madison St, Atlanta, GA 30301" +148329,27in FHD Monitor,1,149.99,01/25/19 21:05,"387 12th St, San Francisco, CA 94016" +148330,AA Batteries (4-pack),2,3.84,01/03/19 08:01,"4 Dogwood St, Los Angeles, CA 90001" +148331,Wired Headphones,1,11.99,01/28/19 23:57,"597 7th St, Boston, MA 02215" +148332,USB-C Charging Cable,1,11.95,01/11/19 14:15,"660 4th St, New York City, NY 10001" +148333,AA Batteries (4-pack),1,3.84,01/10/19 20:21,"803 4th St, New York City, NY 10001" +148334,USB-C Charging Cable,1,11.95,01/11/19 17:57,"184 Johnson St, San Francisco, CA 94016" +148335,Lightning Charging Cable,1,14.95,01/10/19 19:24,"864 River St, Dallas, TX 75001" +148336,Apple Airpods Headphones,1,150,01/23/19 13:05,"876 Lincoln St, San Francisco, CA 94016" +148337,AAA Batteries (4-pack),2,2.99,01/15/19 21:02,"182 Church St, Atlanta, GA 30301" +148338,Flatscreen TV,1,300,01/08/19 12:46,"663 Dogwood St, Boston, MA 02215" +148339,20in Monitor,1,109.99,02/01/19 02:14,"682 Maple St, Los Angeles, CA 90001" +148340,20in Monitor,1,109.99,01/07/19 15:11,"840 Ridge St, New York City, NY 10001" +148341,AAA Batteries (4-pack),2,2.99,01/23/19 11:43,"396 Madison St, New York City, NY 10001" +148342,AA Batteries (4-pack),2,3.84,01/02/19 08:39,"259 8th St, Seattle, WA 98101" +148343,Google Phone,1,600,01/04/19 15:01,"925 Main St, Portland, OR 97035" +148344,Bose SoundSport Headphones,1,99.99,01/27/19 22:04,"70 Pine St, Boston, MA 02215" +,,,,, +148345,Bose SoundSport Headphones,1,99.99,01/30/19 12:44,"612 Main St, New York City, NY 10001" +148346,Wired Headphones,1,11.99,01/31/19 09:24,"131 Main St, New York City, NY 10001" +148347,AA Batteries (4-pack),1,3.84,01/29/19 18:06,"937 10th St, Atlanta, GA 30301" +148348,AA Batteries (4-pack),1,3.84,01/19/19 00:07,"85 Wilson St, Dallas, TX 75001" +148349,Wired Headphones,1,11.99,01/03/19 19:04,"790 10th St, San Francisco, CA 94016" +148350,Google Phone,1,600,01/15/19 16:46,"955 10th St, Austin, TX 73301" +148351,AA Batteries (4-pack),1,3.84,01/14/19 01:11,"477 11th St, Portland, OR 97035" +148352,AA Batteries (4-pack),2,3.84,01/05/19 10:51,"478 Walnut St, San Francisco, CA 94016" +148353,USB-C Charging Cable,1,11.95,01/26/19 07:32,"344 Park St, New York City, NY 10001" +148354,AA Batteries (4-pack),1,3.84,01/09/19 18:30,"788 5th St, Boston, MA 02215" +148355,AAA Batteries (4-pack),1,2.99,01/30/19 15:53,"680 8th St, New York City, NY 10001" +148356,USB-C Charging Cable,1,11.95,01/14/19 16:58,"880 Center St, Seattle, WA 98101" +148357,AAA Batteries (4-pack),1,2.99,01/23/19 21:57,"46 Spruce St, Dallas, TX 75001" +148358,27in FHD Monitor,1,149.99,01/28/19 23:50,"11 Sunset St, Portland, OR 97035" +148359,Bose SoundSport Headphones,1,99.99,01/08/19 17:53,"80 Madison St, San Francisco, CA 94016" +148360,Flatscreen TV,1,300,01/10/19 10:48,"813 Jackson St, New York City, NY 10001" +148361,AA Batteries (4-pack),1,3.84,01/17/19 11:10,"390 Madison St, New York City, NY 10001" +148362,Apple Airpods Headphones,1,150,01/11/19 08:58,"176 Cedar St, Austin, TX 73301" +148363,AAA Batteries (4-pack),2,2.99,01/25/19 11:02,"379 Spruce St, San Francisco, CA 94016" +148364,27in 4K Gaming Monitor,1,389.99,01/05/19 21:35,"242 10th St, New York City, NY 10001" +148365,Bose SoundSport Headphones,1,99.99,01/09/19 11:28,"244 13th St, New York City, NY 10001" +148366,USB-C Charging Cable,1,11.95,01/07/19 15:42,"565 Lake St, Portland, OR 97035" +148367,AA Batteries (4-pack),1,3.84,01/29/19 15:56,"181 Sunset St, Boston, MA 02215" +148368,34in Ultrawide Monitor,1,379.99,01/29/19 10:52,"695 Lincoln St, San Francisco, CA 94016" +148369,27in 4K Gaming Monitor,1,389.99,01/19/19 11:46,"824 13th St, Los Angeles, CA 90001" +148370,AA Batteries (4-pack),1,3.84,01/27/19 09:29,"371 Lincoln St, Portland, OR 97035" +148371,AA Batteries (4-pack),1,3.84,01/06/19 15:37,"349 Cherry St, Boston, MA 02215" +148372,AA Batteries (4-pack),1,3.84,01/18/19 19:02,"194 Elm St, Portland, OR 97035" +148373,Wired Headphones,1,11.99,01/20/19 17:08,"315 North St, Dallas, TX 75001" +148374,27in FHD Monitor,1,149.99,01/24/19 17:02,"677 9th St, New York City, NY 10001" +148375,Bose SoundSport Headphones,1,99.99,01/29/19 11:18,"604 River St, New York City, NY 10001" +148376,Lightning Charging Cable,1,14.95,01/09/19 10:46,"410 Forest St, Seattle, WA 98101" +148377,AAA Batteries (4-pack),1,2.99,01/27/19 17:23,"382 Willow St, Atlanta, GA 30301" +148378,Lightning Charging Cable,1,14.95,01/12/19 17:56,"768 13th St, Portland, OR 97035" +148379,Wired Headphones,1,11.99,01/30/19 11:42,"537 Center St, San Francisco, CA 94016" +148380,iPhone,1,700,01/23/19 22:19,"484 Maple St, Boston, MA 02215" +148380,Apple Airpods Headphones,1,150,01/23/19 22:19,"484 Maple St, Boston, MA 02215" +148381,Google Phone,1,600,01/20/19 12:27,"340 Sunset St, Portland, OR 97035" +148382,27in 4K Gaming Monitor,1,389.99,01/23/19 09:34,"472 Dogwood St, New York City, NY 10001" +148383,Apple Airpods Headphones,1,150,01/14/19 12:33,"823 13th St, New York City, NY 10001" +148384,AAA Batteries (4-pack),1,2.99,01/26/19 13:01,"21 Cedar St, San Francisco, CA 94016" +148385,AAA Batteries (4-pack),2,2.99,01/11/19 14:33,"42 Washington St, Los Angeles, CA 90001" +148386,AA Batteries (4-pack),2,3.84,01/21/19 17:49,"231 Center St, Seattle, WA 98101" +148387,Macbook Pro Laptop,1,1700,01/27/19 15:12,"295 Lakeview St, San Francisco, CA 94016" +148388,AAA Batteries (4-pack),1,2.99,01/01/19 22:02,"76 Jackson St, San Francisco, CA 94016" +,,,,, +148389,Wired Headphones,2,11.99,01/23/19 00:09,"89 River St, Dallas, TX 75001" +148390,USB-C Charging Cable,1,11.95,01/13/19 21:54,"726 Jackson St, New York City, NY 10001" +148391,Bose SoundSport Headphones,1,99.99,01/04/19 17:51,"488 7th St, San Francisco, CA 94016" +148392,Flatscreen TV,1,300,01/13/19 10:01,"341 Spruce St, Los Angeles, CA 90001" +148393,AAA Batteries (4-pack),1,2.99,01/26/19 12:03,"686 Lincoln St, Boston, MA 02215" +148394,Apple Airpods Headphones,1,150,01/01/19 11:17,"786 North St, New York City, NY 10001" +148395,Apple Airpods Headphones,1,150,01/25/19 11:21,"501 Spruce St, Los Angeles, CA 90001" +148396,USB-C Charging Cable,1,11.95,01/14/19 15:48,"544 11th St, Atlanta, GA 30301" +148397,Bose SoundSport Headphones,1,99.99,01/31/19 20:54,"928 North St, Boston, MA 02215" +148398,Bose SoundSport Headphones,1,99.99,01/18/19 11:54,"461 Johnson St, San Francisco, CA 94016" +148399,Apple Airpods Headphones,1,150,01/17/19 17:37,"478 9th St, Dallas, TX 75001" +148400,Lightning Charging Cable,1,14.95,01/08/19 07:59,"786 1st St, San Francisco, CA 94016" +148401,Apple Airpods Headphones,1,150,01/15/19 18:21,"382 2nd St, Boston, MA 02215" +148402,Lightning Charging Cable,1,14.95,01/20/19 23:24,"392 Washington St, Los Angeles, CA 90001" +148403,20in Monitor,1,109.99,01/03/19 19:28,"712 Madison St, Atlanta, GA 30301" +148404,USB-C Charging Cable,1,11.95,01/22/19 15:37,"146 Highland St, San Francisco, CA 94016" +148405,Macbook Pro Laptop,1,1700,01/09/19 18:05,"108 Hickory St, Austin, TX 73301" +148406,Apple Airpods Headphones,1,150,01/24/19 07:24,"519 Forest St, San Francisco, CA 94016" +148407,AA Batteries (4-pack),1,3.84,01/21/19 12:25,"557 River St, New York City, NY 10001" +148408,AAA Batteries (4-pack),2,2.99,01/12/19 16:41,"427 Ridge St, Atlanta, GA 30301" +148409,ThinkPad Laptop,1,999.99,01/05/19 11:28,"826 2nd St, New York City, NY 10001" +148410,34in Ultrawide Monitor,1,379.99,01/18/19 10:14,"935 Wilson St, Los Angeles, CA 90001" +148411,iPhone,1,700,01/31/19 21:05,"786 Cedar St, Boston, MA 02215" +148412,Bose SoundSport Headphones,1,99.99,01/30/19 12:52,"594 Highland St, Portland, OR 97035" +148413,20in Monitor,1,109.99,01/01/19 10:02,"115 West St, Los Angeles, CA 90001" +148414,USB-C Charging Cable,1,11.95,01/25/19 14:25,"469 8th St, Portland, OR 97035" +148415,AA Batteries (4-pack),2,3.84,01/25/19 15:57,"874 Highland St, Los Angeles, CA 90001" +148416,Bose SoundSport Headphones,1,99.99,01/05/19 12:38,"736 8th St, Boston, MA 02215" +148417,27in FHD Monitor,1,149.99,01/05/19 13:09,"197 7th St, Portland, ME 04101" +148418,Bose SoundSport Headphones,1,99.99,01/26/19 12:13,"650 12th St, Seattle, WA 98101" +148419,Wired Headphones,1,11.99,01/15/19 23:55,"208 Pine St, Dallas, TX 75001" +148420,Wired Headphones,1,11.99,01/22/19 18:44,"893 Washington St, Dallas, TX 75001" +148421,iPhone,1,700,01/26/19 18:38,"996 12th St, San Francisco, CA 94016" +148422,Wired Headphones,1,11.99,01/03/19 09:28,"856 Johnson St, New York City, NY 10001" +148423,Apple Airpods Headphones,1,150,01/10/19 16:26,"759 River St, San Francisco, CA 94016" +148424,Apple Airpods Headphones,1,150,01/30/19 23:57,"524 Pine St, Atlanta, GA 30301" +148425,USB-C Charging Cable,1,11.95,01/05/19 12:18,"261 Hill St, Los Angeles, CA 90001" +148426,Google Phone,1,600,01/31/19 21:36,"841 North St, Portland, OR 97035" +148427,27in 4K Gaming Monitor,1,389.99,01/25/19 14:53,"802 Main St, Dallas, TX 75001" +148428,27in FHD Monitor,1,149.99,01/25/19 19:47,"686 Pine St, Seattle, WA 98101" +148429,Lightning Charging Cable,1,14.95,02/01/19 00:03,"387 11th St, Seattle, WA 98101" +148430,Lightning Charging Cable,1,14.95,01/25/19 22:50,"7 4th St, Los Angeles, CA 90001" +148431,Wired Headphones,1,11.99,01/11/19 21:31,"703 Dogwood St, San Francisco, CA 94016" +148432,AA Batteries (4-pack),1,3.84,01/06/19 23:13,"685 Park St, San Francisco, CA 94016" +148433,Bose SoundSport Headphones,1,99.99,01/04/19 21:55,"877 Willow St, Los Angeles, CA 90001" +148434,Wired Headphones,1,11.99,01/08/19 15:18,"20 Forest St, Austin, TX 73301" +148435,Macbook Pro Laptop,1,1700,01/29/19 21:18,"765 Adams St, Los Angeles, CA 90001" +148436,Wired Headphones,1,11.99,01/31/19 18:02,"474 Center St, Los Angeles, CA 90001" +148437,27in FHD Monitor,1,149.99,01/25/19 15:51,"815 14th St, Seattle, WA 98101" +148438,Vareebadd Phone,1,400,01/03/19 08:38,"658 Elm St, Atlanta, GA 30301" +148439,Wired Headphones,1,11.99,01/13/19 12:27,"577 Hill St, Los Angeles, CA 90001" +148440,USB-C Charging Cable,1,11.95,01/29/19 20:54,"392 Sunset St, New York City, NY 10001" +148441,Lightning Charging Cable,1,14.95,01/14/19 17:46,"94 Lakeview St, San Francisco, CA 94016" +148442,AA Batteries (4-pack),2,3.84,01/04/19 20:46,"329 13th St, Boston, MA 02215" +148443,LG Dryer,1,600.0,01/21/19 20:39,"830 6th St, Los Angeles, CA 90001" +148444,AA Batteries (4-pack),2,3.84,01/16/19 23:11,"661 Madison St, Atlanta, GA 30301" +148445,AAA Batteries (4-pack),1,2.99,01/11/19 08:09,"293 Ridge St, New York City, NY 10001" +148446,Google Phone,1,600,01/06/19 09:53,"441 Elm St, New York City, NY 10001" +148447,Apple Airpods Headphones,1,150,01/21/19 17:27,"849 Chestnut St, Los Angeles, CA 90001" +148448,Bose SoundSport Headphones,1,99.99,01/28/19 21:21,"931 Spruce St, Seattle, WA 98101" +148449,20in Monitor,1,109.99,01/28/19 13:01,"708 Johnson St, Atlanta, GA 30301" +148450,Apple Airpods Headphones,1,150,01/06/19 11:19,"48 Jackson St, Los Angeles, CA 90001" +148451,Wired Headphones,1,11.99,01/29/19 12:59,"639 14th St, Atlanta, GA 30301" +148452,Macbook Pro Laptop,1,1700,01/26/19 03:45,"561 Lincoln St, Los Angeles, CA 90001" +148453,iPhone,1,700,01/21/19 15:13,"251 4th St, New York City, NY 10001" +148453,Wired Headphones,1,11.99,01/21/19 15:13,"251 4th St, New York City, NY 10001" +148454,Bose SoundSport Headphones,1,99.99,01/14/19 17:30,"205 8th St, Portland, OR 97035" +148455,ThinkPad Laptop,1,999.99,01/01/19 22:43,"957 Maple St, Los Angeles, CA 90001" +148456,USB-C Charging Cable,1,11.95,01/17/19 14:14,"467 Washington St, Boston, MA 02215" +148457,Lightning Charging Cable,1,14.95,01/11/19 14:48,"97 12th St, Seattle, WA 98101" +148458,Apple Airpods Headphones,1,150,01/12/19 19:56,"823 2nd St, San Francisco, CA 94016" +148459,ThinkPad Laptop,1,999.99,01/11/19 12:20,"719 Ridge St, San Francisco, CA 94016" +148460,Apple Airpods Headphones,1,150,01/23/19 08:46,"878 Walnut St, Portland, ME 04101" +148461,Bose SoundSport Headphones,1,99.99,01/06/19 17:30,"337 Wilson St, San Francisco, CA 94016" +148462,AA Batteries (4-pack),2,3.84,01/14/19 15:17,"522 2nd St, New York City, NY 10001" +148463,Lightning Charging Cable,1,14.95,01/11/19 18:35,"280 Chestnut St, New York City, NY 10001" +148464,USB-C Charging Cable,1,11.95,01/16/19 09:20,"152 8th St, San Francisco, CA 94016" +148465,Bose SoundSport Headphones,1,99.99,01/04/19 09:28,"796 10th St, Seattle, WA 98101" +148466,27in 4K Gaming Monitor,1,389.99,01/23/19 06:54,"939 7th St, San Francisco, CA 94016" +148467,Google Phone,1,600,01/11/19 14:13,"403 2nd St, Boston, MA 02215" +148468,AA Batteries (4-pack),1,3.84,01/08/19 11:44,"482 Main St, Portland, OR 97035" +148469,27in FHD Monitor,1,149.99,01/05/19 18:28,"879 Lakeview St, Los Angeles, CA 90001" +148470,27in FHD Monitor,1,149.99,01/26/19 20:30,"788 Johnson St, Portland, OR 97035" +148471,AA Batteries (4-pack),1,3.84,01/06/19 13:20,"587 Highland St, Boston, MA 02215" +148472,Apple Airpods Headphones,1,150,01/20/19 18:50,"54 Lakeview St, Austin, TX 73301" +148473,Wired Headphones,1,11.99,01/14/19 02:19,"509 Adams St, Los Angeles, CA 90001" +148474,Wired Headphones,1,11.99,01/13/19 21:25,"973 Ridge St, Austin, TX 73301" +148475,USB-C Charging Cable,1,11.95,01/07/19 14:09,"510 Park St, Portland, OR 97035" +148476,USB-C Charging Cable,1,11.95,01/21/19 12:29,"883 Main St, Portland, OR 97035" +148477,AA Batteries (4-pack),1,3.84,01/12/19 20:15,"610 West St, Austin, TX 73301" +148478,27in 4K Gaming Monitor,1,389.99,01/18/19 09:47,"131 Washington St, San Francisco, CA 94016" +148479,AA Batteries (4-pack),2,3.84,01/19/19 17:43,"966 4th St, Los Angeles, CA 90001" +148480,AA Batteries (4-pack),1,3.84,01/11/19 18:39,"967 Sunset St, Boston, MA 02215" +148481,AAA Batteries (4-pack),2,2.99,01/02/19 18:51,"437 2nd St, Atlanta, GA 30301" +148482,34in Ultrawide Monitor,1,379.99,01/10/19 19:39,"36 2nd St, Boston, MA 02215" +148483,Flatscreen TV,1,300,01/13/19 17:00,"253 River St, Boston, MA 02215" +148484,USB-C Charging Cable,1,11.95,01/19/19 16:01,"411 Madison St, San Francisco, CA 94016" +148485,Bose SoundSport Headphones,1,99.99,01/27/19 14:30,"592 River St, Seattle, WA 98101" +148486,Google Phone,1,600,01/28/19 11:02,"298 8th St, Austin, TX 73301" +148487,Google Phone,1,600,01/22/19 16:40,"313 Dogwood St, San Francisco, CA 94016" +148488,Bose SoundSport Headphones,1,99.99,01/15/19 23:00,"952 1st St, Dallas, TX 75001" +148489,Lightning Charging Cable,1,14.95,01/03/19 18:13,"564 Willow St, Seattle, WA 98101" +148490,Bose SoundSport Headphones,1,99.99,01/03/19 13:22,"424 9th St, Boston, MA 02215" +148491,iPhone,1,700,01/19/19 13:38,"282 14th St, New York City, NY 10001" +148492,Lightning Charging Cable,1,14.95,01/20/19 18:40,"568 Cherry St, Dallas, TX 75001" +148493,Wired Headphones,1,11.99,01/13/19 03:58,"217 Adams St, New York City, NY 10001" +148494,27in FHD Monitor,1,149.99,01/07/19 02:31,"536 Hickory St, San Francisco, CA 94016" +148495,AAA Batteries (4-pack),1,2.99,01/28/19 14:22,"530 4th St, Portland, OR 97035" +148496,Lightning Charging Cable,1,14.95,01/07/19 20:20,"887 Spruce St, San Francisco, CA 94016" +148497,27in 4K Gaming Monitor,1,389.99,01/29/19 14:02,"333 Madison St, San Francisco, CA 94016" +148498,Wired Headphones,1,11.99,01/28/19 12:10,"562 11th St, Dallas, TX 75001" +148499,27in 4K Gaming Monitor,1,389.99,01/19/19 09:10,"97 Sunset St, Atlanta, GA 30301" +148500,iPhone,1,700,01/21/19 15:09,"727 7th St, New York City, NY 10001" +148500,Wired Headphones,2,11.99,01/21/19 15:09,"727 7th St, New York City, NY 10001" +148501,Google Phone,1,600,01/16/19 16:00,"958 Adams St, New York City, NY 10001" +148501,USB-C Charging Cable,1,11.95,01/16/19 16:00,"958 Adams St, New York City, NY 10001" +148502,27in FHD Monitor,1,149.99,01/23/19 02:31,"244 Willow St, Dallas, TX 75001" +148503,20in Monitor,1,109.99,01/31/19 15:57,"557 Washington St, San Francisco, CA 94016" +148504,Wired Headphones,1,11.99,01/07/19 19:10,"473 Main St, Los Angeles, CA 90001" +148505,34in Ultrawide Monitor,1,379.99,01/03/19 14:20,"166 Pine St, San Francisco, CA 94016" +148506,34in Ultrawide Monitor,1,379.99,01/28/19 14:20,"437 Cherry St, Los Angeles, CA 90001" +148507,USB-C Charging Cable,1,11.95,01/31/19 18:57,"884 Sunset St, San Francisco, CA 94016" +148508,27in 4K Gaming Monitor,1,389.99,01/24/19 18:45,"821 6th St, Seattle, WA 98101" +148509,27in FHD Monitor,1,149.99,01/30/19 11:19,"748 7th St, San Francisco, CA 94016" +148510,AA Batteries (4-pack),3,3.84,01/23/19 13:35,"212 5th St, San Francisco, CA 94016" +148511,27in FHD Monitor,1,149.99,01/04/19 15:13,"331 Washington St, Dallas, TX 75001" +148512,Wired Headphones,1,11.99,01/13/19 09:19,"104 Cedar St, Atlanta, GA 30301" +148513,Lightning Charging Cable,1,14.95,01/18/19 10:26,"726 Ridge St, Los Angeles, CA 90001" +148514,Vareebadd Phone,1,400,01/26/19 21:44,"326 Cherry St, Boston, MA 02215" +148515,Macbook Pro Laptop,1,1700,01/04/19 10:42,"536 Jefferson St, Portland, OR 97035" +148516,Macbook Pro Laptop,1,1700,01/10/19 23:34,"15 Highland St, Boston, MA 02215" +148517,Apple Airpods Headphones,1,150,01/29/19 19:49,"751 West St, Dallas, TX 75001" +148518,Lightning Charging Cable,2,14.95,01/12/19 14:16,"563 Wilson St, Austin, TX 73301" +148519,AA Batteries (4-pack),2,3.84,01/31/19 14:48,"462 Forest St, San Francisco, CA 94016" +148520,Lightning Charging Cable,1,14.95,01/14/19 22:17,"617 Elm St, San Francisco, CA 94016" +148521,AA Batteries (4-pack),1,3.84,01/03/19 20:42,"87 North St, Atlanta, GA 30301" +148522,Wired Headphones,1,11.99,01/20/19 19:32,"105 Lakeview St, Seattle, WA 98101" +148523,AA Batteries (4-pack),1,3.84,01/22/19 03:06,"525 Jefferson St, Portland, OR 97035" +148524,AA Batteries (4-pack),1,3.84,01/28/19 01:56,"677 Lake St, Portland, OR 97035" +148525,Lightning Charging Cable,1,14.95,01/30/19 11:09,"294 Hickory St, Seattle, WA 98101" +148526,AA Batteries (4-pack),3,3.84,01/09/19 08:56,"389 14th St, Portland, OR 97035" +148527,Bose SoundSport Headphones,1,99.99,01/27/19 16:13,"275 Lake St, Atlanta, GA 30301" +148528,AAA Batteries (4-pack),2,2.99,01/10/19 20:46,"934 Maple St, New York City, NY 10001" +148529,Google Phone,1,600,01/02/19 06:02,"511 Lincoln St, New York City, NY 10001" +148529,USB-C Charging Cable,1,11.95,01/02/19 06:02,"511 Lincoln St, New York City, NY 10001" +148530,Flatscreen TV,1,300,01/31/19 20:47,"644 West St, New York City, NY 10001" +148531,AAA Batteries (4-pack),2,2.99,01/13/19 12:50,"232 Washington St, San Francisco, CA 94016" +148532,Lightning Charging Cable,2,14.95,01/06/19 22:47,"851 Elm St, Los Angeles, CA 90001" +148533,LG Washing Machine,1,600.0,01/24/19 13:49,"100 Walnut St, Boston, MA 02215" +148534,27in 4K Gaming Monitor,1,389.99,01/07/19 09:08,"645 11th St, San Francisco, CA 94016" +148535,Apple Airpods Headphones,1,150,01/16/19 10:59,"661 West St, Boston, MA 02215" +148536,AAA Batteries (4-pack),1,2.99,01/29/19 11:45,"166 Wilson St, Atlanta, GA 30301" +148537,USB-C Charging Cable,1,11.95,01/05/19 13:10,"633 Adams St, Los Angeles, CA 90001" +148538,ThinkPad Laptop,1,999.99,01/15/19 18:18,"347 Willow St, New York City, NY 10001" +148539,USB-C Charging Cable,1,11.95,01/16/19 09:05,"347 Meadow St, Boston, MA 02215" +148540,Apple Airpods Headphones,1,150,01/06/19 13:40,"14 Maple St, Portland, OR 97035" +148541,iPhone,1,700,01/10/19 13:24,"98 Pine St, San Francisco, CA 94016" +148541,Lightning Charging Cable,1,14.95,01/10/19 13:24,"98 Pine St, San Francisco, CA 94016" +148542,USB-C Charging Cable,1,11.95,01/25/19 11:14,"946 4th St, Boston, MA 02215" +148543,27in 4K Gaming Monitor,1,389.99,01/06/19 15:11,"763 Johnson St, New York City, NY 10001" +148544,Apple Airpods Headphones,1,150,01/25/19 19:27,"910 Wilson St, San Francisco, CA 94016" +148545,27in FHD Monitor,1,149.99,01/04/19 10:06,"843 Meadow St, Los Angeles, CA 90001" +148546,AA Batteries (4-pack),1,3.84,01/11/19 08:46,"295 1st St, San Francisco, CA 94016" +148547,27in FHD Monitor,1,149.99,01/09/19 18:29,"285 Hill St, Atlanta, GA 30301" +148548,Lightning Charging Cable,1,14.95,01/03/19 12:47,"933 7th St, San Francisco, CA 94016" +148549,Wired Headphones,1,11.99,01/13/19 15:49,"848 6th St, San Francisco, CA 94016" +148550,AA Batteries (4-pack),1,3.84,01/31/19 21:25,"737 10th St, Austin, TX 73301" +148551,AAA Batteries (4-pack),2,2.99,01/17/19 22:37,"940 Jackson St, San Francisco, CA 94016" +148552,USB-C Charging Cable,1,11.95,01/20/19 14:33,"984 14th St, Portland, OR 97035" +148553,Flatscreen TV,1,300,01/20/19 17:47,"342 Washington St, Boston, MA 02215" +148554,USB-C Charging Cable,1,11.95,01/08/19 11:04,"560 Spruce St, New York City, NY 10001" +148555,Lightning Charging Cable,1,14.95,01/08/19 16:58,"72 Chestnut St, San Francisco, CA 94016" +148556,Apple Airpods Headphones,1,150,01/16/19 19:10,"271 Maple St, San Francisco, CA 94016" +148557,Apple Airpods Headphones,1,150,01/15/19 23:43,"422 6th St, Austin, TX 73301" +148557,Lightning Charging Cable,1,14.95,01/15/19 23:43,"422 6th St, Austin, TX 73301" +148558,Lightning Charging Cable,1,14.95,01/09/19 13:06,"885 10th St, Los Angeles, CA 90001" +148559,USB-C Charging Cable,1,11.95,01/26/19 22:58,"639 Park St, San Francisco, CA 94016" +148560,Macbook Pro Laptop,1,1700,01/24/19 08:55,"740 Walnut St, San Francisco, CA 94016" +148561,Wired Headphones,1,11.99,01/29/19 21:17,"955 Forest St, Dallas, TX 75001" +148562,27in FHD Monitor,1,149.99,01/23/19 10:44,"157 Elm St, Los Angeles, CA 90001" +148563,27in FHD Monitor,1,149.99,01/25/19 01:04,"268 Cherry St, Boston, MA 02215" +148564,Bose SoundSport Headphones,1,99.99,01/29/19 08:55,"214 7th St, Los Angeles, CA 90001" +148565,Wired Headphones,1,11.99,01/15/19 21:12,"810 1st St, Los Angeles, CA 90001" +148566,Wired Headphones,1,11.99,01/26/19 20:40,"328 Lakeview St, San Francisco, CA 94016" +148567,AAA Batteries (4-pack),1,2.99,01/06/19 15:05,"864 Wilson St, Austin, TX 73301" +148568,Bose SoundSport Headphones,1,99.99,01/09/19 20:13,"385 Main St, Los Angeles, CA 90001" +148569,Lightning Charging Cable,1,14.95,01/31/19 23:53,"19 Jackson St, New York City, NY 10001" +148570,AAA Batteries (4-pack),1,2.99,01/29/19 12:16,"428 Forest St, New York City, NY 10001" +148571,ThinkPad Laptop,1,999.99,01/03/19 11:46,"356 Spruce St, Dallas, TX 75001" +148572,Wired Headphones,1,11.99,01/21/19 17:50,"792 Dogwood St, San Francisco, CA 94016" +148573,Google Phone,1,600,01/05/19 20:59,"410 Lake St, Los Angeles, CA 90001" +148574,AAA Batteries (4-pack),3,2.99,01/23/19 15:06,"785 14th St, Los Angeles, CA 90001" +148575,Lightning Charging Cable,1,14.95,01/28/19 12:37,"258 Sunset St, Dallas, TX 75001" +148576,AAA Batteries (4-pack),1,2.99,01/13/19 19:43,"958 North St, Austin, TX 73301" +148577,Bose SoundSport Headphones,1,99.99,01/29/19 02:07,"975 13th St, Atlanta, GA 30301" +148578,iPhone,1,700,01/12/19 13:43,"165 Dogwood St, New York City, NY 10001" +148578,Lightning Charging Cable,1,14.95,01/12/19 13:43,"165 Dogwood St, New York City, NY 10001" +148579,ThinkPad Laptop,1,999.99,01/22/19 19:22,"532 Forest St, Los Angeles, CA 90001" +148580,Apple Airpods Headphones,1,150,01/15/19 21:56,"892 Maple St, Dallas, TX 75001" +148581,Wired Headphones,1,11.99,01/09/19 18:11,"219 12th St, Austin, TX 73301" +148582,USB-C Charging Cable,1,11.95,01/22/19 10:43,"321 Jackson St, Dallas, TX 75001" +148583,AAA Batteries (4-pack),1,2.99,01/06/19 16:27,"191 Lakeview St, Los Angeles, CA 90001" +148584,AAA Batteries (4-pack),1,2.99,01/09/19 07:17,"908 Cedar St, Los Angeles, CA 90001" +148585,Lightning Charging Cable,1,14.95,01/04/19 21:50,"626 Washington St, San Francisco, CA 94016" +148586,USB-C Charging Cable,1,11.95,01/13/19 23:04,"175 Willow St, Los Angeles, CA 90001" +148587,Bose SoundSport Headphones,1,99.99,01/12/19 09:53,"523 6th St, Portland, OR 97035" +148588,AAA Batteries (4-pack),1,2.99,01/28/19 23:38,"136 Wilson St, Dallas, TX 75001" +148589,Lightning Charging Cable,1,14.95,01/08/19 08:09,"349 Sunset St, Austin, TX 73301" +148590,Wired Headphones,1,11.99,01/14/19 20:55,"605 Willow St, Austin, TX 73301" +148591,Macbook Pro Laptop,1,1700,01/06/19 05:58,"668 Lincoln St, Seattle, WA 98101" +148592,Apple Airpods Headphones,1,150,01/07/19 00:06,"771 Forest St, Atlanta, GA 30301" +148593,AAA Batteries (4-pack),1,2.99,01/09/19 11:12,"184 5th St, Austin, TX 73301" +148594,USB-C Charging Cable,1,11.95,01/21/19 00:15,"684 Walnut St, Dallas, TX 75001" +148595,Wired Headphones,1,11.99,01/25/19 18:52,"893 6th St, Los Angeles, CA 90001" +148596,Apple Airpods Headphones,1,150,01/26/19 12:59,"594 West St, Boston, MA 02215" +148597,AAA Batteries (4-pack),4,2.99,01/12/19 11:53,"687 Spruce St, Boston, MA 02215" +148598,iPhone,1,700,01/06/19 16:49,"907 Jefferson St, New York City, NY 10001" +148599,USB-C Charging Cable,1,11.95,01/23/19 13:22,"218 Ridge St, Boston, MA 02215" +148600,AA Batteries (4-pack),1,3.84,01/06/19 19:35,"209 Lakeview St, San Francisco, CA 94016" +148601,27in 4K Gaming Monitor,1,389.99,01/10/19 21:24,"542 11th St, Boston, MA 02215" +148602,USB-C Charging Cable,2,11.95,01/26/19 09:21,"187 Johnson St, Atlanta, GA 30301" +148603,Vareebadd Phone,1,400,01/28/19 00:03,"579 Chestnut St, Dallas, TX 75001" +148604,Lightning Charging Cable,1,14.95,01/17/19 10:31,"713 10th St, San Francisco, CA 94016" +148605,Apple Airpods Headphones,1,150,01/20/19 15:41,"707 Johnson St, Los Angeles, CA 90001" +148606,Lightning Charging Cable,1,14.95,01/07/19 13:13,"34 Adams St, Boston, MA 02215" +148607,Lightning Charging Cable,1,14.95,01/31/19 21:50,"904 Elm St, Boston, MA 02215" +148608,Apple Airpods Headphones,1,150,01/13/19 08:48,"488 10th St, Los Angeles, CA 90001" +148609,AAA Batteries (4-pack),2,2.99,01/09/19 12:15,"998 Johnson St, Los Angeles, CA 90001" +148610,Apple Airpods Headphones,1,150,01/17/19 08:04,"302 Dogwood St, Los Angeles, CA 90001" +148611,Lightning Charging Cable,1,14.95,01/09/19 19:50,"723 River St, San Francisco, CA 94016" +148612,USB-C Charging Cable,1,11.95,01/27/19 07:53,"837 Cherry St, Boston, MA 02215" +148613,Bose SoundSport Headphones,1,99.99,01/11/19 13:18,"180 Wilson St, Los Angeles, CA 90001" +148614,AA Batteries (4-pack),1,3.84,01/27/19 19:38,"618 Willow St, San Francisco, CA 94016" +148615,USB-C Charging Cable,1,11.95,01/10/19 17:53,"772 5th St, New York City, NY 10001" +148616,iPhone,1,700,01/10/19 10:55,"489 Willow St, Los Angeles, CA 90001" +148617,27in 4K Gaming Monitor,1,389.99,01/24/19 16:20,"859 Hickory St, San Francisco, CA 94016" +148618,Lightning Charging Cable,1,14.95,01/09/19 14:53,"685 1st St, Austin, TX 73301" +148619,USB-C Charging Cable,1,11.95,01/19/19 11:03,"420 Lakeview St, Los Angeles, CA 90001" +148620,USB-C Charging Cable,2,11.95,01/14/19 17:18,"692 Main St, San Francisco, CA 94016" +148620,AAA Batteries (4-pack),1,2.99,01/14/19 17:18,"692 Main St, San Francisco, CA 94016" +148621,AA Batteries (4-pack),2,3.84,01/11/19 18:48,"704 Lincoln St, Austin, TX 73301" +148622,USB-C Charging Cable,1,11.95,01/27/19 21:41,"205 Hickory St, Atlanta, GA 30301" +148623,AAA Batteries (4-pack),1,2.99,01/08/19 00:01,"168 10th St, Los Angeles, CA 90001" +148624,Vareebadd Phone,1,400,01/08/19 15:13,"186 Hickory St, Atlanta, GA 30301" +148625,20in Monitor,1,109.99,01/21/19 12:00,"694 2nd St, Boston, MA 02215" +148626,Bose SoundSport Headphones,1,99.99,01/26/19 10:43,"418 Lakeview St, New York City, NY 10001" +148627,Apple Airpods Headphones,1,150,01/08/19 09:54,"827 Willow St, New York City, NY 10001" +148628,Wired Headphones,1,11.99,01/25/19 12:51,"108 Lincoln St, Los Angeles, CA 90001" +148629,USB-C Charging Cable,1,11.95,01/23/19 13:45,"318 11th St, San Francisco, CA 94016" +148630,iPhone,1,700,01/12/19 17:41,"951 7th St, Boston, MA 02215" +148631,20in Monitor,1,109.99,01/05/19 23:13,"834 Main St, Seattle, WA 98101" +148632,AAA Batteries (4-pack),1,2.99,01/18/19 12:44,"304 Park St, San Francisco, CA 94016" +148633,Lightning Charging Cable,1,14.95,01/11/19 14:36,"392 Lakeview St, San Francisco, CA 94016" +148634,AA Batteries (4-pack),2,3.84,01/08/19 19:08,"131 Ridge St, Seattle, WA 98101" +148635,Apple Airpods Headphones,1,150,01/26/19 18:37,"846 Spruce St, Seattle, WA 98101" +148636,34in Ultrawide Monitor,1,379.99,01/24/19 16:53,"811 Hill St, Los Angeles, CA 90001" +148637,ThinkPad Laptop,1,999.99,01/26/19 10:00,"590 11th St, Dallas, TX 75001" +148638,Lightning Charging Cable,1,14.95,01/30/19 18:47,"468 Madison St, Austin, TX 73301" +148639,Flatscreen TV,1,300,01/30/19 10:37,"968 Washington St, Seattle, WA 98101" +148640,Apple Airpods Headphones,1,150,01/23/19 22:37,"881 River St, Boston, MA 02215" +148641,AAA Batteries (4-pack),3,2.99,01/26/19 14:21,"596 Hickory St, Austin, TX 73301" +148642,Macbook Pro Laptop,1,1700,01/03/19 10:01,"745 Cedar St, Los Angeles, CA 90001" +148643,AA Batteries (4-pack),1,3.84,01/06/19 06:30,"731 Dogwood St, Seattle, WA 98101" +148644,AA Batteries (4-pack),1,3.84,01/10/19 09:08,"625 12th St, Atlanta, GA 30301" +148645,Bose SoundSport Headphones,1,99.99,01/21/19 07:36,"160 River St, New York City, NY 10001" +148646,AAA Batteries (4-pack),2,2.99,01/17/19 22:39,"922 Highland St, Dallas, TX 75001" +148647,USB-C Charging Cable,1,11.95,01/02/19 13:26,"113 Elm St, San Francisco, CA 94016" +148648,ThinkPad Laptop,1,999.99,01/31/19 13:15,"134 Washington St, Portland, ME 04101" +148649,LG Dryer,1,600.0,01/29/19 19:30,"834 Johnson St, San Francisco, CA 94016" +148650,Apple Airpods Headphones,1,150,01/16/19 17:31,"918 Maple St, Seattle, WA 98101" +148651,AAA Batteries (4-pack),1,2.99,01/01/19 11:40,"550 Center St, Atlanta, GA 30301" +148652,27in FHD Monitor,1,149.99,01/16/19 11:07,"500 Lincoln St, Los Angeles, CA 90001" +148653,USB-C Charging Cable,1,11.95,01/20/19 21:48,"972 11th St, Los Angeles, CA 90001" +148654,AAA Batteries (4-pack),3,2.99,01/21/19 08:29,"715 1st St, Atlanta, GA 30301" +148655,Google Phone,1,600,01/20/19 21:28,"174 Lakeview St, Seattle, WA 98101" +148655,Bose SoundSport Headphones,1,99.99,01/20/19 21:28,"174 Lakeview St, Seattle, WA 98101" +148655,Wired Headphones,1,11.99,01/20/19 21:28,"174 Lakeview St, Seattle, WA 98101" +148656,Wired Headphones,1,11.99,01/23/19 06:45,"242 Pine St, Seattle, WA 98101" +148657,Macbook Pro Laptop,1,1700,01/13/19 13:02,"843 Willow St, New York City, NY 10001" +148658,Lightning Charging Cable,1,14.95,01/05/19 00:46,"399 Chestnut St, Boston, MA 02215" +148659,USB-C Charging Cable,1,11.95,01/31/19 00:06,"829 Dogwood St, San Francisco, CA 94016" +148660,Apple Airpods Headphones,1,150,01/29/19 13:28,"837 Washington St, Atlanta, GA 30301" +148661,AAA Batteries (4-pack),3,2.99,01/28/19 14:09,"843 Hill St, Seattle, WA 98101" +148662,AAA Batteries (4-pack),1,2.99,01/26/19 07:32,"812 Ridge St, San Francisco, CA 94016" +148663,Lightning Charging Cable,1,14.95,01/16/19 22:34,"284 Spruce St, San Francisco, CA 94016" +148664,Flatscreen TV,1,300,01/16/19 18:46,"855 10th St, Atlanta, GA 30301" +148665,USB-C Charging Cable,1,11.95,01/21/19 00:09,"33 Main St, Los Angeles, CA 90001" +148666,Bose SoundSport Headphones,1,99.99,01/27/19 06:42,"405 12th St, Los Angeles, CA 90001" +148667,27in FHD Monitor,1,149.99,01/03/19 22:28,"722 Hill St, San Francisco, CA 94016" +148668,AA Batteries (4-pack),1,3.84,01/16/19 11:09,"9 6th St, Los Angeles, CA 90001" +148669,LG Dryer,1,600.0,01/30/19 06:19,"248 Elm St, Boston, MA 02215" +148670,Lightning Charging Cable,1,14.95,01/04/19 10:18,"503 Lincoln St, San Francisco, CA 94016" +148671,27in 4K Gaming Monitor,1,389.99,01/29/19 08:30,"749 Washington St, Dallas, TX 75001" +148671,27in 4K Gaming Monitor,1,389.99,01/29/19 08:30,"749 Washington St, Dallas, TX 75001" +148672,27in FHD Monitor,1,149.99,01/16/19 17:50,"899 Hickory St, Los Angeles, CA 90001" +148673,Wired Headphones,1,11.99,01/11/19 04:47,"101 14th St, New York City, NY 10001" +148674,iPhone,1,700,01/14/19 17:28,"574 Sunset St, San Francisco, CA 94016" +148674,Lightning Charging Cable,1,14.95,01/14/19 17:28,"574 Sunset St, San Francisco, CA 94016" +148675,Apple Airpods Headphones,1,150,01/20/19 09:10,"701 Ridge St, San Francisco, CA 94016" +148676,USB-C Charging Cable,1,11.95,01/14/19 12:15,"953 13th St, Portland, OR 97035" +148677,USB-C Charging Cable,1,11.95,01/24/19 18:33,"532 Willow St, Boston, MA 02215" +148678,USB-C Charging Cable,1,11.95,01/10/19 13:50,"455 North St, San Francisco, CA 94016" +148679,AA Batteries (4-pack),2,3.84,01/01/19 11:15,"34 Madison St, Portland, OR 97035" +148680,27in FHD Monitor,1,149.99,01/01/19 20:39,"617 7th St, Los Angeles, CA 90001" +148681,AAA Batteries (4-pack),2,2.99,01/19/19 15:59,"225 Lakeview St, New York City, NY 10001" +148682,Bose SoundSport Headphones,1,99.99,01/29/19 11:24,"429 13th St, Boston, MA 02215" +148683,Apple Airpods Headphones,1,150,01/06/19 08:56,"149 Pine St, Boston, MA 02215" +148684,Apple Airpods Headphones,1,150,01/17/19 19:34,"2 2nd St, San Francisco, CA 94016" +148685,AAA Batteries (4-pack),1,2.99,01/20/19 13:43,"603 Center St, Boston, MA 02215" +148686,iPhone,1,700,01/26/19 19:17,"805 Jackson St, New York City, NY 10001" +148687,USB-C Charging Cable,1,11.95,01/31/19 19:01,"949 Cherry St, San Francisco, CA 94016" +148688,AA Batteries (4-pack),3,3.84,01/21/19 12:24,"378 Walnut St, San Francisco, CA 94016" +148689,Lightning Charging Cable,1,14.95,01/10/19 12:17,"930 Dogwood St, Atlanta, GA 30301" +148690,ThinkPad Laptop,1,999.99,01/17/19 20:27,"948 Elm St, New York City, NY 10001" +148691,AAA Batteries (4-pack),1,2.99,01/19/19 09:49,"174 Madison St, San Francisco, CA 94016" +148692,Wired Headphones,1,11.99,01/24/19 20:31,"503 14th St, Seattle, WA 98101" +148693,Wired Headphones,2,11.99,01/28/19 18:43,"666 West St, Austin, TX 73301" +148694,Macbook Pro Laptop,1,1700,01/01/19 18:57,"446 Meadow St, Los Angeles, CA 90001" +148695,Bose SoundSport Headphones,1,99.99,01/21/19 22:14,"981 14th St, San Francisco, CA 94016" +148696,AA Batteries (4-pack),1,3.84,01/23/19 06:53,"414 Cedar St, Portland, OR 97035" +148697,20in Monitor,1,109.99,01/31/19 15:08,"429 Lakeview St, Los Angeles, CA 90001" +148698,27in FHD Monitor,1,149.99,01/27/19 23:48,"922 Maple St, Portland, OR 97035" +148699,AAA Batteries (4-pack),2,2.99,01/26/19 13:28,"519 Sunset St, New York City, NY 10001" +148700,Apple Airpods Headphones,1,150,01/24/19 16:25,"392 9th St, Boston, MA 02215" +148701,Lightning Charging Cable,1,14.95,01/10/19 12:40,"857 4th St, New York City, NY 10001" +148702,USB-C Charging Cable,1,11.95,01/26/19 20:19,"155 7th St, San Francisco, CA 94016" +148703,Lightning Charging Cable,1,14.95,01/17/19 17:17,"616 Center St, San Francisco, CA 94016" +148704,27in 4K Gaming Monitor,1,389.99,01/05/19 12:58,"662 Main St, Portland, OR 97035" +148705,AAA Batteries (4-pack),1,2.99,01/01/19 18:55,"685 Lake St, Dallas, TX 75001" +148706,Apple Airpods Headphones,1,150,01/01/19 18:38,"698 Sunset St, New York City, NY 10001" +148707,AA Batteries (4-pack),1,3.84,01/21/19 13:27,"526 Cedar St, Dallas, TX 75001" +148708,Apple Airpods Headphones,1,150,01/16/19 10:15,"277 10th St, Atlanta, GA 30301" +148709,USB-C Charging Cable,1,11.95,01/03/19 19:50,"400 Main St, Seattle, WA 98101" +148710,27in 4K Gaming Monitor,1,389.99,01/10/19 06:49,"729 Hickory St, Atlanta, GA 30301" +148711,iPhone,1,700,01/12/19 06:50,"578 Cedar St, Atlanta, GA 30301" +148711,Lightning Charging Cable,1,14.95,01/12/19 06:50,"578 Cedar St, Atlanta, GA 30301" +148712,iPhone,1,700,01/24/19 21:06,"678 Main St, Austin, TX 73301" +148713,27in 4K Gaming Monitor,1,389.99,01/09/19 13:17,"210 Spruce St, Los Angeles, CA 90001" +148714,Lightning Charging Cable,1,14.95,01/12/19 04:51,"935 Wilson St, Boston, MA 02215" +148715,Lightning Charging Cable,1,14.95,01/25/19 23:01,"35 1st St, San Francisco, CA 94016" +148716,AA Batteries (4-pack),1,3.84,01/29/19 22:14,"525 4th St, Boston, MA 02215" +148717,Wired Headphones,1,11.99,01/15/19 18:38,"665 West St, New York City, NY 10001" +148718,AA Batteries (4-pack),2,3.84,01/12/19 22:54,"528 Hill St, San Francisco, CA 94016" +148719,Lightning Charging Cable,1,14.95,01/28/19 20:46,"587 Spruce St, New York City, NY 10001" +148720,USB-C Charging Cable,1,11.95,01/07/19 18:49,"955 Lincoln St, San Francisco, CA 94016" +148721,Wired Headphones,1,11.99,01/31/19 09:55,"85 Lake St, San Francisco, CA 94016" +148722,Macbook Pro Laptop,1,1700,01/22/19 20:35,"957 9th St, Dallas, TX 75001" +148723,Bose SoundSport Headphones,1,99.99,01/25/19 11:47,"830 Ridge St, Boston, MA 02215" +148724,AAA Batteries (4-pack),1,2.99,01/26/19 22:59,"847 12th St, Boston, MA 02215" +148725,ThinkPad Laptop,1,999.99,01/25/19 14:34,"285 10th St, Portland, OR 97035" +148726,USB-C Charging Cable,1,11.95,01/12/19 17:07,"331 9th St, San Francisco, CA 94016" +148727,Google Phone,1,600,01/20/19 19:35,"210 13th St, Atlanta, GA 30301" +148728,Bose SoundSport Headphones,1,99.99,01/18/19 14:25,"513 Cedar St, Austin, TX 73301" +148729,Wired Headphones,1,11.99,01/19/19 07:21,"343 Elm St, Dallas, TX 75001" +148730,20in Monitor,1,109.99,01/04/19 10:10,"845 River St, New York City, NY 10001" +148731,Lightning Charging Cable,2,14.95,01/14/19 19:28,"250 Main St, Dallas, TX 75001" +148732,Lightning Charging Cable,1,14.95,01/28/19 16:53,"554 Jefferson St, Austin, TX 73301" +148733,AA Batteries (4-pack),1,3.84,01/02/19 10:25,"482 North St, New York City, NY 10001" +148734,AA Batteries (4-pack),1,3.84,01/19/19 06:09,"435 2nd St, Dallas, TX 75001" +148735,Lightning Charging Cable,2,14.95,01/14/19 10:16,"214 Cedar St, Los Angeles, CA 90001" +148736,Lightning Charging Cable,1,14.95,01/13/19 08:27,"581 Jefferson St, Austin, TX 73301" +148737,ThinkPad Laptop,1,999.99,01/22/19 15:20,"244 Sunset St, Seattle, WA 98101" +148738,LG Dryer,1,600.0,01/20/19 13:21,"406 Sunset St, San Francisco, CA 94016" +148739,AA Batteries (4-pack),2,3.84,01/17/19 18:44,"548 5th St, San Francisco, CA 94016" +148740,Google Phone,1,600,01/08/19 19:26,"371 2nd St, Boston, MA 02215" +148741,AA Batteries (4-pack),1,3.84,01/26/19 12:44,"319 Hill St, San Francisco, CA 94016" +148742,Bose SoundSport Headphones,1,99.99,01/02/19 10:33,"927 Spruce St, Los Angeles, CA 90001" +148743,Wired Headphones,1,11.99,01/17/19 13:25,"251 Spruce St, New York City, NY 10001" +148744,AAA Batteries (4-pack),1,2.99,01/31/19 11:55,"176 Wilson St, San Francisco, CA 94016" +148745,27in FHD Monitor,1,149.99,01/19/19 13:46,"781 6th St, Atlanta, GA 30301" +148746,20in Monitor,1,109.99,01/19/19 20:36,"77 Johnson St, Dallas, TX 75001" +148747,Lightning Charging Cable,1,14.95,01/01/19 15:54,"62 Lincoln St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +148748,iPhone,1,700,01/02/19 17:41,"13 Lincoln St, Atlanta, GA 30301" +148749,AA Batteries (4-pack),1,3.84,01/05/19 23:50,"684 13th St, San Francisco, CA 94016" +148750,27in FHD Monitor,1,149.99,01/01/19 11:06,"526 Lake St, Portland, OR 97035" +148751,Lightning Charging Cable,1,14.95,01/19/19 11:42,"938 Jefferson St, San Francisco, CA 94016" +148752,Apple Airpods Headphones,1,150,01/24/19 12:56,"705 Johnson St, San Francisco, CA 94016" +148753,Bose SoundSport Headphones,1,99.99,01/07/19 11:29,"378 Main St, Dallas, TX 75001" +148754,Bose SoundSport Headphones,1,99.99,01/17/19 21:11,"329 4th St, San Francisco, CA 94016" +148755,Lightning Charging Cable,1,14.95,01/06/19 20:14,"455 5th St, Los Angeles, CA 90001" +148756,Wired Headphones,1,11.99,01/19/19 13:16,"994 Willow St, San Francisco, CA 94016" +148757,Wired Headphones,1,11.99,01/02/19 13:05,"123 8th St, Seattle, WA 98101" +148758,Macbook Pro Laptop,1,1700,01/31/19 22:26,"922 14th St, New York City, NY 10001" +148759,AA Batteries (4-pack),1,3.84,01/28/19 19:11,"752 Spruce St, Austin, TX 73301" +148760,AA Batteries (4-pack),3,3.84,01/09/19 14:05,"855 Lake St, San Francisco, CA 94016" +148761,AAA Batteries (4-pack),2,2.99,01/24/19 14:45,"744 Cedar St, New York City, NY 10001" +148762,Lightning Charging Cable,1,14.95,01/22/19 15:20,"53 Lincoln St, San Francisco, CA 94016" +148763,AAA Batteries (4-pack),1,2.99,01/30/19 12:08,"443 South St, San Francisco, CA 94016" +148764,USB-C Charging Cable,1,11.95,01/15/19 04:06,"777 Jefferson St, Seattle, WA 98101" +148765,AAA Batteries (4-pack),3,2.99,01/22/19 19:33,"165 7th St, Seattle, WA 98101" +148766,Wired Headphones,1,11.99,01/02/19 18:23,"207 North St, New York City, NY 10001" +148767,iPhone,1,700,01/06/19 14:13,"945 12th St, Seattle, WA 98101" +148768,AAA Batteries (4-pack),1,2.99,01/25/19 14:12,"651 Elm St, Los Angeles, CA 90001" +148769,Lightning Charging Cable,1,14.95,01/17/19 07:55,"699 Wilson St, San Francisco, CA 94016" +148770,Flatscreen TV,1,300,01/20/19 17:50,"581 Main St, Austin, TX 73301" +148771,20in Monitor,1,109.99,01/05/19 11:31,"907 Pine St, Boston, MA 02215" +148772,34in Ultrawide Monitor,1,379.99,01/11/19 23:13,"240 Highland St, Boston, MA 02215" +148773,AAA Batteries (4-pack),1,2.99,01/07/19 14:04,"515 Lakeview St, New York City, NY 10001" +148774,27in FHD Monitor,1,149.99,01/27/19 18:32,"454 West St, New York City, NY 10001" +148775,LG Washing Machine,1,600.0,01/29/19 02:59,"546 5th St, Dallas, TX 75001" +148776,Lightning Charging Cable,2,14.95,01/24/19 15:45,"63 1st St, Seattle, WA 98101" +148777,34in Ultrawide Monitor,1,379.99,01/31/19 10:52,"375 5th St, San Francisco, CA 94016" +148778,USB-C Charging Cable,1,11.95,01/02/19 12:51,"155 Cedar St, San Francisco, CA 94016" +148779,Vareebadd Phone,1,400,01/21/19 14:44,"788 11th St, San Francisco, CA 94016" +148780,AA Batteries (4-pack),1,3.84,01/17/19 01:23,"286 North St, San Francisco, CA 94016" +148781,Google Phone,1,600,01/26/19 12:21,"793 Meadow St, San Francisco, CA 94016" +148782,AA Batteries (4-pack),3,3.84,01/24/19 15:52,"413 Adams St, San Francisco, CA 94016" +148783,34in Ultrawide Monitor,1,379.99,01/11/19 07:21,"123 14th St, New York City, NY 10001" +148784,Lightning Charging Cable,1,14.95,01/13/19 21:26,"468 7th St, New York City, NY 10001" +148785,AAA Batteries (4-pack),1,2.99,01/02/19 14:24,"628 North St, Los Angeles, CA 90001" +148786,Bose SoundSport Headphones,1,99.99,01/21/19 02:02,"504 Highland St, Atlanta, GA 30301" +148787,AA Batteries (4-pack),1,3.84,01/16/19 07:58,"39 Lincoln St, Portland, OR 97035" +148788,ThinkPad Laptop,1,999.99,01/10/19 11:52,"642 7th St, Boston, MA 02215" +148789,Lightning Charging Cable,1,14.95,01/06/19 15:56,"407 Adams St, Boston, MA 02215" +148790,Lightning Charging Cable,1,14.95,01/09/19 12:41,"549 14th St, Austin, TX 73301" +148791,ThinkPad Laptop,1,999.99,01/30/19 07:12,"565 Lakeview St, San Francisco, CA 94016" +148792,Apple Airpods Headphones,1,150,01/24/19 12:55,"664 10th St, San Francisco, CA 94016" +148793,AA Batteries (4-pack),3,3.84,01/28/19 23:03,"965 Chestnut St, San Francisco, CA 94016" +148794,Wired Headphones,1,11.99,01/04/19 17:44,"995 Hill St, Austin, TX 73301" +148795,Apple Airpods Headphones,1,150,01/28/19 10:05,"550 1st St, Boston, MA 02215" +148796,Bose SoundSport Headphones,1,99.99,01/10/19 19:32,"715 Cherry St, Portland, OR 97035" +148797,Lightning Charging Cable,1,14.95,01/18/19 09:29,"294 South St, San Francisco, CA 94016" +148798,AAA Batteries (4-pack),1,2.99,01/21/19 18:46,"462 Washington St, Los Angeles, CA 90001" +148799,iPhone,1,700,01/19/19 17:29,"954 Spruce St, Austin, TX 73301" +148800,iPhone,1,700,01/23/19 14:36,"201 8th St, Dallas, TX 75001" +148801,AAA Batteries (4-pack),1,2.99,01/05/19 08:09,"263 Jackson St, San Francisco, CA 94016" +148802,AAA Batteries (4-pack),1,2.99,01/25/19 23:03,"707 Hickory St, San Francisco, CA 94016" +148803,27in 4K Gaming Monitor,1,389.99,01/17/19 06:29,"928 Adams St, Portland, OR 97035" +148804,USB-C Charging Cable,1,11.95,01/14/19 20:50,"768 Elm St, Austin, TX 73301" +148805,AA Batteries (4-pack),2,3.84,01/30/19 01:07,"40 Lakeview St, Los Angeles, CA 90001" +148805,Wired Headphones,1,11.99,01/30/19 01:07,"40 Lakeview St, Los Angeles, CA 90001" +148806,Apple Airpods Headphones,1,150,01/14/19 12:27,"363 Adams St, Seattle, WA 98101" +148807,Apple Airpods Headphones,1,150,01/11/19 10:31,"131 Center St, New York City, NY 10001" +148808,Bose SoundSport Headphones,1,99.99,01/13/19 23:24,"503 Lake St, Atlanta, GA 30301" +148809,USB-C Charging Cable,1,11.95,01/30/19 16:10,"902 Adams St, Portland, ME 04101" +148810,AA Batteries (4-pack),1,3.84,01/04/19 11:28,"346 Sunset St, Los Angeles, CA 90001" +148811,Macbook Pro Laptop,1,1700,01/25/19 19:47,"654 Hill St, Dallas, TX 75001" +148812,Lightning Charging Cable,1,14.95,01/16/19 22:44,"121 Adams St, Dallas, TX 75001" +148813,Apple Airpods Headphones,1,150,01/14/19 01:11,"660 Hill St, Dallas, TX 75001" +148814,27in FHD Monitor,1,149.99,01/09/19 00:24,"614 Chestnut St, Atlanta, GA 30301" +148815,34in Ultrawide Monitor,1,379.99,01/22/19 13:12,"398 Park St, San Francisco, CA 94016" +148816,Lightning Charging Cable,1,14.95,01/09/19 19:02,"119 Meadow St, New York City, NY 10001" +148817,Bose SoundSport Headphones,1,99.99,01/06/19 11:09,"763 Church St, Portland, OR 97035" +148818,iPhone,1,700,01/06/19 18:48,"127 11th St, Los Angeles, CA 90001" +148819,Bose SoundSport Headphones,1,99.99,01/24/19 18:15,"557 Wilson St, Atlanta, GA 30301" +148820,USB-C Charging Cable,1,11.95,01/05/19 21:08,"204 Lake St, Portland, OR 97035" +148821,USB-C Charging Cable,1,11.95,01/17/19 20:30,"873 4th St, Los Angeles, CA 90001" +148822,Lightning Charging Cable,1,14.95,01/29/19 14:49,"76 2nd St, Austin, TX 73301" +148823,20in Monitor,1,109.99,01/21/19 12:33,"871 Lincoln St, Dallas, TX 75001" +148824,Macbook Pro Laptop,1,1700,01/20/19 14:21,"134 Hickory St, Portland, OR 97035" +148825,Vareebadd Phone,1,400,01/07/19 19:32,"472 Washington St, New York City, NY 10001" +148826,Wired Headphones,1,11.99,01/05/19 15:54,"324 North St, Seattle, WA 98101" +148827,27in FHD Monitor,1,149.99,01/23/19 12:10,"92 Center St, San Francisco, CA 94016" +148828,AA Batteries (4-pack),1,3.84,01/05/19 18:31,"684 Madison St, San Francisco, CA 94016" +148829,AA Batteries (4-pack),1,3.84,01/12/19 14:23,"305 Center St, San Francisco, CA 94016" +148830,Bose SoundSport Headphones,1,99.99,01/14/19 09:03,"221 11th St, Los Angeles, CA 90001" +148831,Flatscreen TV,1,300,01/29/19 19:33,"675 River St, Boston, MA 02215" +148831,27in 4K Gaming Monitor,1,389.99,01/29/19 19:33,"675 River St, Boston, MA 02215" +148832,Flatscreen TV,1,300,01/03/19 20:23,"306 Ridge St, San Francisco, CA 94016" +148833,USB-C Charging Cable,1,11.95,01/24/19 07:10,"628 Lakeview St, San Francisco, CA 94016" +148834,AAA Batteries (4-pack),1,2.99,01/07/19 15:26,"15 Washington St, San Francisco, CA 94016" +148835,Lightning Charging Cable,1,14.95,01/26/19 13:33,"170 Willow St, Dallas, TX 75001" +148836,iPhone,1,700,01/24/19 23:08,"495 Madison St, Seattle, WA 98101" +148837,20in Monitor,1,109.99,01/05/19 15:58,"554 10th St, San Francisco, CA 94016" +148838,LG Washing Machine,1,600.0,01/14/19 15:37,"490 Walnut St, Austin, TX 73301" +148839,AA Batteries (4-pack),1,3.84,01/02/19 12:53,"799 Elm St, San Francisco, CA 94016" +148840,Lightning Charging Cable,1,14.95,01/06/19 23:50,"566 Meadow St, San Francisco, CA 94016" +148841,AAA Batteries (4-pack),1,2.99,01/06/19 21:58,"403 Walnut St, Seattle, WA 98101" +148842,Apple Airpods Headphones,1,150,01/19/19 12:47,"388 Chestnut St, Los Angeles, CA 90001" +148843,AAA Batteries (4-pack),1,2.99,01/12/19 18:45,"978 North St, Los Angeles, CA 90001" +148844,AA Batteries (4-pack),1,3.84,01/29/19 22:01,"337 Park St, Seattle, WA 98101" +148845,ThinkPad Laptop,1,999.99,01/23/19 17:51,"272 Johnson St, New York City, NY 10001" +148846,20in Monitor,1,109.99,01/16/19 23:54,"387 Sunset St, San Francisco, CA 94016" +148847,Wired Headphones,1,11.99,01/03/19 15:46,"591 North St, Seattle, WA 98101" +148848,Bose SoundSport Headphones,1,99.99,01/14/19 01:06,"772 Ridge St, Seattle, WA 98101" +148849,USB-C Charging Cable,1,11.95,01/26/19 20:08,"886 13th St, New York City, NY 10001" +148850,AA Batteries (4-pack),1,3.84,01/30/19 13:37,"6 14th St, Dallas, TX 75001" +148851,Bose SoundSport Headphones,1,99.99,01/09/19 20:46,"99 Wilson St, New York City, NY 10001" +148852,Google Phone,1,600,01/07/19 18:09,"751 Maple St, Los Angeles, CA 90001" +148853,Bose SoundSport Headphones,1,99.99,01/31/19 04:54,"421 Hill St, Dallas, TX 75001" +148854,Wired Headphones,1,11.99,01/21/19 18:35,"952 North St, Austin, TX 73301" +148855,AA Batteries (4-pack),1,3.84,01/16/19 19:16,"410 Walnut St, New York City, NY 10001" +148855,Lightning Charging Cable,1,14.95,01/16/19 19:16,"410 Walnut St, New York City, NY 10001" +148856,iPhone,1,700,01/31/19 08:37,"951 Johnson St, Atlanta, GA 30301" +148857,Apple Airpods Headphones,1,150,01/03/19 11:25,"620 Main St, Atlanta, GA 30301" +148858,AAA Batteries (4-pack),1,2.99,01/29/19 10:04,"627 Lincoln St, Atlanta, GA 30301" +148859,Wired Headphones,1,11.99,01/07/19 15:39,"725 Park St, San Francisco, CA 94016" +148860,AA Batteries (4-pack),4,3.84,01/24/19 11:59,"959 Washington St, Los Angeles, CA 90001" +148861,Lightning Charging Cable,1,14.95,01/18/19 15:24,"730 Lakeview St, Portland, OR 97035" +148862,Wired Headphones,1,11.99,01/10/19 06:24,"534 Lincoln St, Los Angeles, CA 90001" +148863,AA Batteries (4-pack),1,3.84,01/10/19 19:20,"251 Park St, Los Angeles, CA 90001" +148864,27in FHD Monitor,1,149.99,01/24/19 11:45,"100 Walnut St, New York City, NY 10001" +148865,34in Ultrawide Monitor,1,379.99,01/31/19 13:58,"203 11th St, Austin, TX 73301" +148866,USB-C Charging Cable,1,11.95,01/17/19 04:31,"365 Johnson St, Portland, OR 97035" +148867,Lightning Charging Cable,1,14.95,01/06/19 14:35,"762 7th St, San Francisco, CA 94016" +148868,AAA Batteries (4-pack),2,2.99,01/05/19 11:44,"291 Johnson St, San Francisco, CA 94016" +148869,Wired Headphones,1,11.99,01/16/19 19:46,"604 Lake St, Los Angeles, CA 90001" +148870,USB-C Charging Cable,1,11.95,01/20/19 22:20,"125 Madison St, Boston, MA 02215" +148871,Wired Headphones,1,11.99,01/07/19 10:43,"630 Willow St, San Francisco, CA 94016" +148872,USB-C Charging Cable,1,11.95,01/17/19 13:58,"119 Walnut St, Atlanta, GA 30301" +148873,Bose SoundSport Headphones,1,99.99,01/10/19 10:21,"293 13th St, San Francisco, CA 94016" +148874,27in 4K Gaming Monitor,1,389.99,01/17/19 15:20,"54 Lake St, San Francisco, CA 94016" +148875,Macbook Pro Laptop,1,1700,01/08/19 17:26,"619 Ridge St, Portland, OR 97035" +148876,AAA Batteries (4-pack),1,2.99,01/03/19 10:55,"388 North St, San Francisco, CA 94016" +148877,USB-C Charging Cable,1,11.95,01/21/19 18:27,"424 Cedar St, New York City, NY 10001" +148877,27in FHD Monitor,1,149.99,01/21/19 18:27,"424 Cedar St, New York City, NY 10001" +148878,AA Batteries (4-pack),1,3.84,01/27/19 16:24,"743 7th St, San Francisco, CA 94016" +148879,USB-C Charging Cable,1,11.95,01/28/19 08:52,"343 Adams St, San Francisco, CA 94016" +148880,20in Monitor,1,109.99,01/26/19 11:38,"960 Elm St, San Francisco, CA 94016" +148881,LG Dryer,1,600.0,01/22/19 22:51,"693 Maple St, San Francisco, CA 94016" +148882,Lightning Charging Cable,1,14.95,01/05/19 07:49,"933 13th St, Austin, TX 73301" +148883,34in Ultrawide Monitor,1,379.99,01/07/19 21:11,"846 Meadow St, Portland, OR 97035" +148884,Apple Airpods Headphones,1,150,01/24/19 00:24,"290 Dogwood St, Dallas, TX 75001" +148885,LG Washing Machine,1,600.0,01/23/19 08:26,"476 Adams St, Los Angeles, CA 90001" +148886,Lightning Charging Cable,1,14.95,01/02/19 20:44,"681 Walnut St, Dallas, TX 75001" +148887,USB-C Charging Cable,1,11.95,01/06/19 15:39,"896 Madison St, Boston, MA 02215" +148888,AA Batteries (4-pack),1,3.84,01/06/19 20:44,"554 4th St, New York City, NY 10001" +148889,27in FHD Monitor,1,149.99,01/01/19 12:46,"265 North St, Atlanta, GA 30301" +148890,USB-C Charging Cable,1,11.95,01/23/19 08:12,"416 12th St, Los Angeles, CA 90001" +148891,AAA Batteries (4-pack),2,2.99,01/04/19 13:07,"687 13th St, Dallas, TX 75001" +148892,AAA Batteries (4-pack),2,2.99,01/27/19 16:43,"978 South St, Los Angeles, CA 90001" +148893,AAA Batteries (4-pack),1,2.99,01/20/19 16:33,"553 Washington St, Portland, OR 97035" +148893,Bose SoundSport Headphones,1,99.99,01/20/19 16:33,"553 Washington St, Portland, OR 97035" +148894,Bose SoundSport Headphones,1,99.99,01/16/19 12:24,"988 2nd St, Portland, OR 97035" +148895,Apple Airpods Headphones,1,150,01/12/19 20:40,"945 Center St, Los Angeles, CA 90001" +148896,Bose SoundSport Headphones,1,99.99,01/06/19 14:24,"263 River St, San Francisco, CA 94016" +148897,USB-C Charging Cable,1,11.95,01/21/19 17:35,"20 Meadow St, Austin, TX 73301" +148898,Apple Airpods Headphones,1,150,01/06/19 09:39,"790 Maple St, San Francisco, CA 94016" +148899,Flatscreen TV,1,300,01/04/19 17:06,"704 Cherry St, Boston, MA 02215" +148900,34in Ultrawide Monitor,1,379.99,01/19/19 10:34,"121 Lincoln St, San Francisco, CA 94016" +148900,Google Phone,1,600,01/19/19 10:34,"121 Lincoln St, San Francisco, CA 94016" +148901,AAA Batteries (4-pack),1,2.99,01/10/19 16:38,"223 Walnut St, San Francisco, CA 94016" +148902,Wired Headphones,1,11.99,01/27/19 22:09,"839 8th St, Los Angeles, CA 90001" +148903,AAA Batteries (4-pack),1,2.99,01/29/19 09:18,"497 Jefferson St, Boston, MA 02215" +148904,34in Ultrawide Monitor,1,379.99,01/12/19 12:12,"952 Church St, Los Angeles, CA 90001" +148905,27in FHD Monitor,1,149.99,01/14/19 22:42,"355 Lake St, Los Angeles, CA 90001" +148906,34in Ultrawide Monitor,1,379.99,01/29/19 12:56,"438 Center St, Boston, MA 02215" +148907,AA Batteries (4-pack),1,3.84,01/09/19 18:52,"64 13th St, Dallas, TX 75001" +148908,AA Batteries (4-pack),1,3.84,01/03/19 18:11,"302 Adams St, Atlanta, GA 30301" +148909,AAA Batteries (4-pack),1,2.99,01/11/19 18:56,"982 Lakeview St, Los Angeles, CA 90001" +148910,AAA Batteries (4-pack),1,2.99,01/17/19 08:41,"546 Elm St, New York City, NY 10001" +148911,27in 4K Gaming Monitor,1,389.99,01/18/19 09:49,"326 Maple St, Atlanta, GA 30301" +148912,Lightning Charging Cable,1,14.95,01/05/19 17:29,"662 Church St, Seattle, WA 98101" +148913,USB-C Charging Cable,1,11.95,01/17/19 22:11,"226 13th St, Boston, MA 02215" +148914,AAA Batteries (4-pack),1,2.99,01/13/19 18:03,"980 Chestnut St, Dallas, TX 75001" +148915,ThinkPad Laptop,1,999.99,01/13/19 22:14,"253 Wilson St, Atlanta, GA 30301" +148916,AAA Batteries (4-pack),1,2.99,01/18/19 19:01,"212 Jackson St, San Francisco, CA 94016" +148917,Wired Headphones,1,11.99,01/15/19 20:10,"809 8th St, Seattle, WA 98101" +148918,USB-C Charging Cable,1,11.95,01/23/19 11:09,"957 Church St, San Francisco, CA 94016" +148919,Apple Airpods Headphones,1,150,01/31/19 13:34,"863 Main St, Dallas, TX 75001" +148920,Wired Headphones,1,11.99,01/10/19 14:26,"241 8th St, Los Angeles, CA 90001" +148921,Macbook Pro Laptop,1,1700,01/13/19 17:29,"608 West St, Atlanta, GA 30301" +148922,Bose SoundSport Headphones,1,99.99,01/03/19 21:13,"880 Madison St, New York City, NY 10001" +148923,Google Phone,1,600,01/11/19 09:05,"129 Jackson St, New York City, NY 10001" +148923,USB-C Charging Cable,1,11.95,01/11/19 09:05,"129 Jackson St, New York City, NY 10001" +148923,Wired Headphones,1,11.99,01/11/19 09:05,"129 Jackson St, New York City, NY 10001" +148924,Wired Headphones,1,11.99,01/01/19 23:55,"679 Willow St, Boston, MA 02215" +148925,AAA Batteries (4-pack),1,2.99,01/16/19 18:19,"591 Sunset St, San Francisco, CA 94016" +148926,Lightning Charging Cable,1,14.95,01/31/19 11:48,"49 Ridge St, Austin, TX 73301" +148927,AAA Batteries (4-pack),1,2.99,01/11/19 12:33,"737 Jefferson St, San Francisco, CA 94016" +148928,20in Monitor,1,109.99,01/01/19 16:40,"911 South St, Portland, OR 97035" +148929,AAA Batteries (4-pack),1,2.99,01/06/19 04:33,"892 Maple St, Atlanta, GA 30301" +148930,USB-C Charging Cable,1,11.95,01/14/19 16:16,"618 Main St, Dallas, TX 75001" +148931,Apple Airpods Headphones,1,150,01/08/19 20:10,"901 Madison St, Los Angeles, CA 90001" +148932,iPhone,1,700,01/15/19 19:10,"36 7th St, San Francisco, CA 94016" +148933,Flatscreen TV,1,300,01/06/19 18:31,"892 Washington St, Dallas, TX 75001" +148934,Bose SoundSport Headphones,1,99.99,01/22/19 10:00,"962 Highland St, Portland, ME 04101" +148935,iPhone,1,700,01/07/19 21:15,"133 Spruce St, Atlanta, GA 30301" +148936,AA Batteries (4-pack),3,3.84,01/09/19 22:39,"487 North St, Dallas, TX 75001" +148937,LG Washing Machine,1,600.0,01/13/19 16:01,"696 Chestnut St, San Francisco, CA 94016" +148938,AAA Batteries (4-pack),1,2.99,01/24/19 20:07,"950 14th St, Los Angeles, CA 90001" +148939,Bose SoundSport Headphones,1,99.99,01/24/19 07:44,"753 Washington St, New York City, NY 10001" +148940,Wired Headphones,1,11.99,01/07/19 10:22,"620 Wilson St, San Francisco, CA 94016" +148941,AAA Batteries (4-pack),1,2.99,01/01/19 14:12,"195 Main St, Los Angeles, CA 90001" +148941,Google Phone,1,600,01/01/19 14:12,"195 Main St, Los Angeles, CA 90001" +148942,Bose SoundSport Headphones,1,99.99,01/27/19 23:50,"174 Hill St, San Francisco, CA 94016" +148943,AA Batteries (4-pack),1,3.84,01/12/19 22:41,"597 Pine St, Atlanta, GA 30301" +148944,Wired Headphones,1,11.99,01/30/19 12:17,"726 Jefferson St, Boston, MA 02215" +148945,Wired Headphones,1,11.99,01/20/19 18:26,"473 West St, San Francisco, CA 94016" +148946,27in FHD Monitor,1,149.99,01/07/19 00:26,"781 Johnson St, Los Angeles, CA 90001" +148947,Macbook Pro Laptop,1,1700,01/06/19 13:24,"439 5th St, Portland, ME 04101" +148948,Bose SoundSport Headphones,1,99.99,01/05/19 18:18,"366 West St, Portland, OR 97035" +148949,USB-C Charging Cable,1,11.95,01/23/19 10:34,"559 Cherry St, Dallas, TX 75001" +148950,AAA Batteries (4-pack),2,2.99,01/14/19 16:46,"47 5th St, New York City, NY 10001" +148951,USB-C Charging Cable,1,11.95,01/22/19 11:22,"947 10th St, Los Angeles, CA 90001" +148952,AA Batteries (4-pack),1,3.84,01/11/19 15:32,"507 Lake St, New York City, NY 10001" +148953,27in 4K Gaming Monitor,1,389.99,01/22/19 22:49,"932 Dogwood St, Seattle, WA 98101" +148954,Flatscreen TV,1,300,01/03/19 21:09,"512 Jefferson St, Seattle, WA 98101" +148955,Lightning Charging Cable,1,14.95,01/14/19 20:21,"243 Elm St, Boston, MA 02215" +148956,AAA Batteries (4-pack),1,2.99,01/12/19 20:55,"210 River St, San Francisco, CA 94016" +148957,AAA Batteries (4-pack),1,2.99,01/22/19 15:19,"147 Jackson St, San Francisco, CA 94016" +148958,AAA Batteries (4-pack),3,2.99,01/25/19 13:05,"772 14th St, New York City, NY 10001" +148959,iPhone,1,700,01/13/19 14:41,"259 Hill St, Portland, OR 97035" +148959,Wired Headphones,2,11.99,01/13/19 14:41,"259 Hill St, Portland, OR 97035" +148960,Wired Headphones,1,11.99,01/27/19 09:32,"462 Dogwood St, Austin, TX 73301" +148961,AA Batteries (4-pack),2,3.84,01/28/19 14:39,"670 Chestnut St, Atlanta, GA 30301" +148962,Lightning Charging Cable,1,14.95,01/01/19 09:04,"663 North St, Atlanta, GA 30301" +148963,Lightning Charging Cable,1,14.95,01/24/19 12:27,"127 Main St, New York City, NY 10001" +148963,Google Phone,1,600,01/24/19 12:27,"127 Main St, New York City, NY 10001" +148964,20in Monitor,1,109.99,01/04/19 14:42,"558 Highland St, Seattle, WA 98101" +148965,Lightning Charging Cable,1,14.95,01/29/19 17:04,"968 Wilson St, Boston, MA 02215" +148966,20in Monitor,1,109.99,01/08/19 20:20,"33 Forest St, New York City, NY 10001" +148967,20in Monitor,1,109.99,01/13/19 12:12,"423 Hill St, Dallas, TX 75001" +148968,Wired Headphones,1,11.99,01/25/19 17:05,"743 North St, New York City, NY 10001" +148969,AA Batteries (4-pack),1,3.84,01/25/19 14:39,"365 Lakeview St, Atlanta, GA 30301" +148970,Bose SoundSport Headphones,1,99.99,01/06/19 21:36,"400 14th St, San Francisco, CA 94016" +148971,AA Batteries (4-pack),1,3.84,01/17/19 23:22,"193 South St, San Francisco, CA 94016" +148972,ThinkPad Laptop,1,999.99,01/19/19 19:04,"110 Church St, Los Angeles, CA 90001" +148973,ThinkPad Laptop,1,999.99,01/01/19 19:34,"687 Ridge St, San Francisco, CA 94016" +148974,Google Phone,1,600,01/03/19 11:37,"818 Lakeview St, San Francisco, CA 94016" +148975,Bose SoundSport Headphones,1,99.99,01/04/19 16:49,"756 Walnut St, Dallas, TX 75001" +148976,USB-C Charging Cable,1,11.95,01/14/19 23:25,"752 Johnson St, Boston, MA 02215" +148977,27in FHD Monitor,1,149.99,01/25/19 20:30,"694 Center St, San Francisco, CA 94016" +148978,iPhone,1,700,01/11/19 17:01,"669 River St, New York City, NY 10001" +148979,Apple Airpods Headphones,1,150,01/30/19 11:12,"283 Dogwood St, New York City, NY 10001" +148980,Wired Headphones,1,11.99,01/21/19 08:01,"243 12th St, Atlanta, GA 30301" +148981,Wired Headphones,1,11.99,01/31/19 20:43,"478 Forest St, Seattle, WA 98101" +148982,ThinkPad Laptop,1,999.99,01/15/19 12:09,"341 10th St, New York City, NY 10001" +148983,Apple Airpods Headphones,1,150,01/11/19 15:59,"37 5th St, San Francisco, CA 94016" +148984,Wired Headphones,1,11.99,01/20/19 11:11,"269 Maple St, New York City, NY 10001" +148985,AA Batteries (4-pack),1,3.84,01/30/19 19:02,"876 Main St, Portland, OR 97035" +148986,27in FHD Monitor,1,149.99,01/10/19 17:54,"268 North St, San Francisco, CA 94016" +148987,AA Batteries (4-pack),1,3.84,01/21/19 12:58,"807 Walnut St, New York City, NY 10001" +148988,USB-C Charging Cable,1,11.95,01/15/19 18:13,"209 8th St, New York City, NY 10001" +148989,AA Batteries (4-pack),1,3.84,01/09/19 11:24,"798 North St, New York City, NY 10001" +148990,34in Ultrawide Monitor,1,379.99,01/12/19 07:25,"667 10th St, San Francisco, CA 94016" +148991,USB-C Charging Cable,1,11.95,01/18/19 13:25,"682 Hill St, Austin, TX 73301" +148992,Bose SoundSport Headphones,1,99.99,01/04/19 10:53,"749 9th St, Dallas, TX 75001" +148993,AAA Batteries (4-pack),2,2.99,01/05/19 19:23,"341 South St, Los Angeles, CA 90001" +148994,Lightning Charging Cable,1,14.95,01/02/19 01:45,"390 11th St, Los Angeles, CA 90001" +148995,Wired Headphones,1,11.99,01/30/19 14:53,"525 River St, Boston, MA 02215" +148996,Wired Headphones,1,11.99,01/23/19 08:56,"144 Jackson St, Los Angeles, CA 90001" +148997,AAA Batteries (4-pack),1,2.99,01/15/19 19:00,"901 West St, Portland, OR 97035" +148998,iPhone,1,700,01/10/19 22:01,"354 River St, San Francisco, CA 94016" +148998,Lightning Charging Cable,1,14.95,01/10/19 22:01,"354 River St, San Francisco, CA 94016" +148999,AA Batteries (4-pack),2,3.84,01/22/19 22:21,"568 Willow St, Boston, MA 02215" +149000,Wired Headphones,1,11.99,01/21/19 21:37,"810 11th St, Boston, MA 02215" +149001,20in Monitor,1,109.99,01/23/19 14:31,"731 Lakeview St, Dallas, TX 75001" +149002,Lightning Charging Cable,1,14.95,01/18/19 14:19,"470 Park St, Portland, ME 04101" +149002,Bose SoundSport Headphones,1,99.99,01/18/19 14:19,"470 Park St, Portland, ME 04101" +149003,USB-C Charging Cable,1,11.95,01/19/19 14:41,"515 14th St, New York City, NY 10001" +149004,ThinkPad Laptop,1,999.99,01/05/19 19:00,"395 Park St, Seattle, WA 98101" +149005,Wired Headphones,1,11.99,01/19/19 19:42,"413 14th St, San Francisco, CA 94016" +149006,Macbook Pro Laptop,1,1700,01/26/19 08:59,"821 Adams St, Dallas, TX 75001" +149007,Lightning Charging Cable,1,14.95,01/22/19 03:53,"834 Wilson St, Los Angeles, CA 90001" +149008,Wired Headphones,1,11.99,01/25/19 14:54,"163 1st St, Boston, MA 02215" +149009,AA Batteries (4-pack),2,3.84,01/24/19 12:24,"534 South St, Los Angeles, CA 90001" +149010,AA Batteries (4-pack),1,3.84,01/07/19 20:35,"246 Spruce St, San Francisco, CA 94016" +149011,ThinkPad Laptop,1,999.99,01/10/19 11:41,"702 Wilson St, Los Angeles, CA 90001" +149012,27in 4K Gaming Monitor,1,389.99,01/24/19 13:09,"902 Forest St, New York City, NY 10001" +149013,Wired Headphones,1,11.99,01/16/19 00:31,"7 1st St, Boston, MA 02215" +149014,Lightning Charging Cable,1,14.95,01/26/19 21:05,"593 Cedar St, Seattle, WA 98101" +149015,Wired Headphones,2,11.99,01/24/19 11:33,"237 Lake St, Los Angeles, CA 90001" +149016,Macbook Pro Laptop,1,1700,01/15/19 11:24,"605 Pine St, Atlanta, GA 30301" +149017,Vareebadd Phone,1,400,01/03/19 19:18,"527 Johnson St, San Francisco, CA 94016" +149018,20in Monitor,1,109.99,01/15/19 23:18,"967 Center St, Dallas, TX 75001" +149019,AA Batteries (4-pack),1,3.84,01/08/19 08:07,"420 Church St, New York City, NY 10001" +149020,Wired Headphones,1,11.99,01/22/19 18:12,"171 Wilson St, San Francisco, CA 94016" +149020,Bose SoundSport Headphones,1,99.99,01/22/19 18:12,"171 Wilson St, San Francisco, CA 94016" +149021,Apple Airpods Headphones,1,150,01/18/19 20:00,"565 Maple St, Los Angeles, CA 90001" +149022,Bose SoundSport Headphones,1,99.99,01/22/19 15:56,"982 Meadow St, New York City, NY 10001" +149023,AA Batteries (4-pack),1,3.84,01/25/19 15:58,"520 Hill St, New York City, NY 10001" +149024,Lightning Charging Cable,1,14.95,01/03/19 09:13,"977 Willow St, San Francisco, CA 94016" +149025,Macbook Pro Laptop,1,1700,01/21/19 11:38,"130 Hill St, San Francisco, CA 94016" +149026,Wired Headphones,1,11.99,01/07/19 20:36,"632 5th St, Seattle, WA 98101" +149027,Apple Airpods Headphones,1,150,01/09/19 23:46,"504 Walnut St, San Francisco, CA 94016" +149028,Lightning Charging Cable,1,14.95,01/05/19 19:16,"4 South St, New York City, NY 10001" +149029,20in Monitor,1,109.99,01/16/19 19:25,"159 Wilson St, Boston, MA 02215" +149030,Bose SoundSport Headphones,1,99.99,01/01/19 17:44,"869 11th St, San Francisco, CA 94016" +149031,ThinkPad Laptop,1,999.99,01/09/19 15:44,"477 Pine St, San Francisco, CA 94016" +149032,USB-C Charging Cable,1,11.95,01/22/19 20:22,"19 Lake St, Boston, MA 02215" +149033,USB-C Charging Cable,1,11.95,01/26/19 20:02,"443 Lakeview St, Seattle, WA 98101" +149034,AAA Batteries (4-pack),2,2.99,01/07/19 10:41,"555 Hill St, Atlanta, GA 30301" +149035,Apple Airpods Headphones,1,150,01/31/19 20:30,"577 Forest St, Boston, MA 02215" +149036,Flatscreen TV,1,300,01/12/19 22:52,"31 6th St, Atlanta, GA 30301" +149037,Wired Headphones,1,11.99,01/23/19 10:44,"722 Highland St, Boston, MA 02215" +149038,Google Phone,1,600,01/09/19 18:47,"432 Sunset St, San Francisco, CA 94016" +149038,USB-C Charging Cable,1,11.95,01/09/19 18:47,"432 Sunset St, San Francisco, CA 94016" +149039,iPhone,1,700,01/31/19 20:31,"503 Forest St, San Francisco, CA 94016" +149040,34in Ultrawide Monitor,1,379.99,01/13/19 17:49,"459 South St, San Francisco, CA 94016" +149041,Macbook Pro Laptop,1,1700,01/03/19 19:38,"56 Center St, Austin, TX 73301" +149042,AA Batteries (4-pack),1,3.84,01/23/19 10:07,"705 10th St, Los Angeles, CA 90001" +149043,Bose SoundSport Headphones,1,99.99,01/05/19 22:10,"58 Lincoln St, San Francisco, CA 94016" +149044,AAA Batteries (4-pack),1,2.99,01/12/19 15:44,"940 Pine St, Atlanta, GA 30301" +149045,iPhone,1,700,01/13/19 10:13,"658 Center St, New York City, NY 10001" +149046,Bose SoundSport Headphones,1,99.99,01/21/19 14:08,"64 Chestnut St, San Francisco, CA 94016" +149047,USB-C Charging Cable,1,11.95,01/12/19 18:10,"179 Cherry St, Austin, TX 73301" +149048,iPhone,1,700,01/07/19 18:45,"17 Walnut St, Atlanta, GA 30301" +149049,34in Ultrawide Monitor,1,379.99,01/27/19 14:19,"179 Sunset St, Dallas, TX 75001" +149050,Bose SoundSport Headphones,1,99.99,01/17/19 11:41,"559 6th St, Dallas, TX 75001" +149051,Google Phone,1,600,01/06/19 19:38,"487 Cherry St, Boston, MA 02215" +149052,LG Dryer,1,600.0,01/11/19 22:58,"102 12th St, Los Angeles, CA 90001" +149053,AA Batteries (4-pack),1,3.84,01/23/19 19:47,"810 10th St, Boston, MA 02215" +149054,USB-C Charging Cable,1,11.95,01/22/19 16:10,"246 12th St, Los Angeles, CA 90001" +149055,27in 4K Gaming Monitor,1,389.99,01/01/19 14:31,"532 6th St, New York City, NY 10001" +149056,Bose SoundSport Headphones,1,99.99,01/12/19 11:18,"236 Hill St, Atlanta, GA 30301" +149057,Flatscreen TV,1,300,01/25/19 12:22,"357 Meadow St, New York City, NY 10001" +149058,Lightning Charging Cable,1,14.95,01/12/19 11:39,"351 Lake St, Dallas, TX 75001" +149059,AAA Batteries (4-pack),1,2.99,01/21/19 22:25,"162 Hill St, Austin, TX 73301" +149060,Apple Airpods Headphones,1,150,01/24/19 08:36,"802 13th St, Atlanta, GA 30301" +149061,ThinkPad Laptop,1,999.99,01/08/19 10:24,"351 Highland St, Los Angeles, CA 90001" +149062,Flatscreen TV,1,300,01/27/19 14:40,"812 6th St, Los Angeles, CA 90001" +149063,AA Batteries (4-pack),1,3.84,01/21/19 09:04,"670 10th St, San Francisco, CA 94016" +149064,AAA Batteries (4-pack),2,2.99,01/11/19 15:11,"487 Walnut St, Boston, MA 02215" +149065,27in FHD Monitor,1,149.99,01/05/19 22:25,"16 Main St, Atlanta, GA 30301" +149066,Google Phone,1,600,01/10/19 23:23,"508 Washington St, Seattle, WA 98101" +149067,AAA Batteries (4-pack),1,2.99,01/07/19 22:58,"916 1st St, New York City, NY 10001" +149068,34in Ultrawide Monitor,1,379.99,01/24/19 09:23,"654 Jefferson St, New York City, NY 10001" +149069,Lightning Charging Cable,1,14.95,01/02/19 09:54,"273 River St, Boston, MA 02215" +149070,USB-C Charging Cable,1,11.95,01/16/19 13:46,"577 Chestnut St, Atlanta, GA 30301" +149071,Apple Airpods Headphones,1,150,01/03/19 20:58,"715 Lincoln St, Los Angeles, CA 90001" +149072,Apple Airpods Headphones,1,150,01/02/19 08:27,"830 7th St, San Francisco, CA 94016" +149073,AA Batteries (4-pack),1,3.84,01/27/19 17:24,"541 Meadow St, San Francisco, CA 94016" +149074,Lightning Charging Cable,1,14.95,01/16/19 04:29,"522 Center St, Los Angeles, CA 90001" +149075,Bose SoundSport Headphones,1,99.99,01/20/19 20:14,"939 North St, San Francisco, CA 94016" +149076,AAA Batteries (4-pack),1,2.99,01/25/19 11:03,"385 Dogwood St, Boston, MA 02215" +149077,Apple Airpods Headphones,1,150,01/11/19 13:26,"457 Madison St, Los Angeles, CA 90001" +149078,Bose SoundSport Headphones,1,99.99,01/21/19 15:25,"520 8th St, Los Angeles, CA 90001" +149079,USB-C Charging Cable,1,11.95,01/22/19 10:41,"644 Lakeview St, Boston, MA 02215" +149080,Bose SoundSport Headphones,1,99.99,01/24/19 19:18,"223 Madison St, Boston, MA 02215" +149081,Flatscreen TV,1,300,01/06/19 15:10,"243 Cherry St, San Francisco, CA 94016" +149082,USB-C Charging Cable,1,11.95,01/20/19 16:18,"567 Maple St, Los Angeles, CA 90001" +149083,USB-C Charging Cable,3,11.95,01/11/19 14:11,"274 6th St, New York City, NY 10001" +149084,Apple Airpods Headphones,1,150,01/07/19 20:30,"933 North St, New York City, NY 10001" +149085,AA Batteries (4-pack),1,3.84,01/24/19 18:55,"164 Lakeview St, Portland, OR 97035" +149086,Wired Headphones,1,11.99,01/24/19 20:42,"166 Willow St, San Francisco, CA 94016" +149087,Bose SoundSport Headphones,1,99.99,01/03/19 18:15,"516 Walnut St, Los Angeles, CA 90001" +149088,ThinkPad Laptop,1,999.99,01/26/19 17:43,"448 Hickory St, Atlanta, GA 30301" +149089,Lightning Charging Cable,1,14.95,01/20/19 02:40,"792 Forest St, New York City, NY 10001" +149090,AA Batteries (4-pack),1,3.84,01/13/19 12:51,"42 5th St, Atlanta, GA 30301" +149091,20in Monitor,1,109.99,01/07/19 22:42,"98 Sunset St, Dallas, TX 75001" +149092,AA Batteries (4-pack),2,3.84,01/14/19 20:17,"819 South St, Los Angeles, CA 90001" +149093,Wired Headphones,1,11.99,01/13/19 18:53,"895 12th St, San Francisco, CA 94016" +149094,ThinkPad Laptop,1,999.99,01/17/19 21:54,"94 Adams St, New York City, NY 10001" +149095,Lightning Charging Cable,1,14.95,01/27/19 10:09,"993 6th St, San Francisco, CA 94016" +149096,27in FHD Monitor,1,149.99,01/14/19 10:25,"785 Lake St, San Francisco, CA 94016" +149097,Lightning Charging Cable,1,14.95,01/14/19 13:16,"494 14th St, Seattle, WA 98101" +149098,USB-C Charging Cable,1,11.95,01/29/19 11:09,"609 7th St, San Francisco, CA 94016" +149099,Bose SoundSport Headphones,1,99.99,01/15/19 21:00,"794 7th St, New York City, NY 10001" +149100,Apple Airpods Headphones,1,150,01/25/19 14:09,"792 Lake St, Portland, OR 97035" +149101,Wired Headphones,1,11.99,01/10/19 16:57,"828 Park St, Atlanta, GA 30301" +149102,20in Monitor,1,109.99,01/29/19 10:27,"791 Walnut St, San Francisco, CA 94016" +149103,Google Phone,1,600,01/01/19 18:56,"843 Lakeview St, Los Angeles, CA 90001" +149104,AAA Batteries (4-pack),1,2.99,01/29/19 10:44,"50 River St, San Francisco, CA 94016" +149105,Apple Airpods Headphones,1,150,01/13/19 18:48,"44 Maple St, New York City, NY 10001" +149106,Apple Airpods Headphones,1,150,01/20/19 08:52,"218 Hill St, Atlanta, GA 30301" +149107,Bose SoundSport Headphones,1,99.99,01/11/19 12:19,"555 Jefferson St, New York City, NY 10001" +149108,Macbook Pro Laptop,1,1700,01/16/19 08:52,"847 North St, New York City, NY 10001" +149109,Bose SoundSport Headphones,1,99.99,01/12/19 00:16,"451 West St, Boston, MA 02215" +149110,34in Ultrawide Monitor,1,379.99,01/19/19 17:29,"854 14th St, Austin, TX 73301" +149111,USB-C Charging Cable,1,11.95,01/08/19 19:33,"686 Washington St, Austin, TX 73301" +149112,USB-C Charging Cable,1,11.95,01/13/19 17:39,"819 Hickory St, Atlanta, GA 30301" +149113,Macbook Pro Laptop,1,1700,01/13/19 00:14,"311 14th St, San Francisco, CA 94016" +149114,AA Batteries (4-pack),1,3.84,01/31/19 11:59,"406 Spruce St, Portland, OR 97035" +149115,Lightning Charging Cable,1,14.95,01/05/19 18:41,"499 Hill St, Seattle, WA 98101" +149116,iPhone,1,700,01/08/19 00:29,"50 Meadow St, New York City, NY 10001" +149117,USB-C Charging Cable,1,11.95,01/08/19 18:11,"698 1st St, New York City, NY 10001" +149118,Macbook Pro Laptop,1,1700,01/06/19 03:07,"819 North St, Los Angeles, CA 90001" +149119,Flatscreen TV,1,300,01/03/19 11:48,"523 Walnut St, Los Angeles, CA 90001" +149120,Apple Airpods Headphones,1,150,01/21/19 12:28,"430 Spruce St, Dallas, TX 75001" +149121,Flatscreen TV,1,300,01/19/19 22:50,"438 Johnson St, Los Angeles, CA 90001" +149122,AA Batteries (4-pack),1,3.84,01/03/19 17:47,"108 Ridge St, New York City, NY 10001" +149123,Apple Airpods Headphones,1,150,01/04/19 17:45,"440 Lakeview St, New York City, NY 10001" +149124,Macbook Pro Laptop,1,1700,01/12/19 14:05,"539 Dogwood St, San Francisco, CA 94016" +149125,AA Batteries (4-pack),2,3.84,01/13/19 20:12,"91 Adams St, New York City, NY 10001" +149126,Flatscreen TV,1,300,01/24/19 13:29,"250 Walnut St, Los Angeles, CA 90001" +149127,Flatscreen TV,1,300,01/04/19 08:18,"955 Adams St, San Francisco, CA 94016" +149128,Bose SoundSport Headphones,1,99.99,01/20/19 05:46,"150 Lincoln St, New York City, NY 10001" +149129,AA Batteries (4-pack),4,3.84,01/13/19 17:10,"713 Sunset St, Los Angeles, CA 90001" +149130,27in 4K Gaming Monitor,1,389.99,01/31/19 00:37,"763 Hill St, Boston, MA 02215" +149131,Lightning Charging Cable,1,14.95,01/29/19 20:23,"654 Elm St, Portland, OR 97035" +149132,AA Batteries (4-pack),1,3.84,01/21/19 08:19,"752 Maple St, Portland, OR 97035" +149133,USB-C Charging Cable,1,11.95,01/28/19 17:17,"445 12th St, Seattle, WA 98101" +149134,Lightning Charging Cable,1,14.95,01/16/19 20:07,"509 Chestnut St, Atlanta, GA 30301" +149135,USB-C Charging Cable,2,11.95,01/02/19 12:14,"505 Johnson St, Portland, OR 97035" +149136,AA Batteries (4-pack),1,3.84,01/13/19 14:41,"182 Ridge St, Los Angeles, CA 90001" +149137,AAA Batteries (4-pack),1,2.99,01/12/19 18:41,"738 8th St, San Francisco, CA 94016" +149138,USB-C Charging Cable,1,11.95,01/08/19 15:29,"242 Maple St, Boston, MA 02215" +149139,34in Ultrawide Monitor,1,379.99,01/12/19 16:21,"372 Lake St, Seattle, WA 98101" +149140,34in Ultrawide Monitor,1,379.99,01/06/19 17:11,"25 Park St, Los Angeles, CA 90001" +149141,Lightning Charging Cable,1,14.95,01/11/19 20:35,"66 Lincoln St, Boston, MA 02215" +149142,AAA Batteries (4-pack),1,2.99,01/30/19 12:41,"893 7th St, San Francisco, CA 94016" +149143,Apple Airpods Headphones,1,150,01/25/19 10:46,"376 Jefferson St, Portland, OR 97035" +149144,Lightning Charging Cable,1,14.95,01/12/19 08:59,"636 Meadow St, New York City, NY 10001" +149145,Lightning Charging Cable,1,14.95,01/23/19 12:27,"363 Washington St, Seattle, WA 98101" +149146,iPhone,1,700,01/21/19 20:53,"528 Pine St, New York City, NY 10001" +149147,27in FHD Monitor,1,149.99,01/23/19 05:22,"717 Maple St, Portland, OR 97035" +149148,Bose SoundSport Headphones,1,99.99,01/28/19 19:26,"968 12th St, Atlanta, GA 30301" +149149,AA Batteries (4-pack),1,3.84,01/22/19 18:42,"430 Adams St, Atlanta, GA 30301" +149150,USB-C Charging Cable,1,11.95,01/12/19 13:28,"203 Jackson St, New York City, NY 10001" +149151,AA Batteries (4-pack),1,3.84,01/25/19 14:47,"41 Lincoln St, Los Angeles, CA 90001" +149152,34in Ultrawide Monitor,1,379.99,01/12/19 16:10,"544 11th St, San Francisco, CA 94016" +149153,Bose SoundSport Headphones,1,99.99,01/31/19 19:36,"644 8th St, Atlanta, GA 30301" +149154,34in Ultrawide Monitor,1,379.99,01/02/19 00:38,"943 West St, Portland, OR 97035" +149155,USB-C Charging Cable,1,11.95,01/09/19 03:40,"181 Elm St, Los Angeles, CA 90001" +149156,Apple Airpods Headphones,1,150,01/12/19 12:43,"385 Park St, Seattle, WA 98101" +149157,Lightning Charging Cable,2,14.95,01/19/19 20:59,"22 9th St, Boston, MA 02215" +149158,AA Batteries (4-pack),1,3.84,01/17/19 20:33,"73 Willow St, New York City, NY 10001" +149159,Apple Airpods Headphones,1,150,01/03/19 11:44,"979 Jefferson St, Portland, OR 97035" +149160,Vareebadd Phone,1,400,01/09/19 14:05,"984 12th St, New York City, NY 10001" +149161,Lightning Charging Cable,1,14.95,01/27/19 01:24,"276 West St, Seattle, WA 98101" +149162,Wired Headphones,1,11.99,01/16/19 21:19,"941 Meadow St, Dallas, TX 75001" +149163,Wired Headphones,1,11.99,01/12/19 13:27,"315 North St, Dallas, TX 75001" +149164,34in Ultrawide Monitor,1,379.99,01/25/19 19:05,"603 Lake St, Boston, MA 02215" +149165,Apple Airpods Headphones,1,150,01/23/19 14:24,"165 Jefferson St, Seattle, WA 98101" +149166,AAA Batteries (4-pack),1,2.99,01/28/19 16:49,"879 14th St, San Francisco, CA 94016" +149167,Wired Headphones,1,11.99,01/06/19 21:28,"777 Hill St, Austin, TX 73301" +149168,AAA Batteries (4-pack),1,2.99,01/24/19 12:46,"748 Elm St, Dallas, TX 75001" +149169,iPhone,1,700,01/12/19 21:53,"961 Hill St, Austin, TX 73301" +149170,USB-C Charging Cable,1,11.95,01/08/19 10:56,"648 Lake St, San Francisco, CA 94016" +149171,Wired Headphones,1,11.99,01/28/19 22:35,"796 5th St, San Francisco, CA 94016" +149172,Lightning Charging Cable,1,14.95,01/26/19 08:58,"281 Cedar St, Los Angeles, CA 90001" +149173,iPhone,1,700,01/17/19 18:35,"926 4th St, Los Angeles, CA 90001" +149174,AAA Batteries (4-pack),2,2.99,01/08/19 20:00,"874 Lake St, Boston, MA 02215" +149175,AAA Batteries (4-pack),1,2.99,01/03/19 18:09,"248 Lincoln St, Austin, TX 73301" +149176,AAA Batteries (4-pack),1,2.99,01/09/19 19:53,"498 8th St, San Francisco, CA 94016" +149177,iPhone,1,700,01/10/19 21:04,"779 Washington St, Dallas, TX 75001" +149178,Lightning Charging Cable,1,14.95,01/01/19 19:20,"311 Adams St, Los Angeles, CA 90001" +149179,Bose SoundSport Headphones,1,99.99,01/29/19 18:48,"112 Lincoln St, San Francisco, CA 94016" +149179,iPhone,1,700,01/29/19 18:48,"112 Lincoln St, San Francisco, CA 94016" +149180,27in 4K Gaming Monitor,1,389.99,01/05/19 09:33,"853 Maple St, Dallas, TX 75001" +149181,Bose SoundSport Headphones,1,99.99,01/05/19 13:11,"552 North St, Dallas, TX 75001" +149182,Wired Headphones,1,11.99,01/17/19 10:54,"187 Cedar St, New York City, NY 10001" +149183,Wired Headphones,1,11.99,01/14/19 13:18,"472 Lake St, Austin, TX 73301" +149184,27in FHD Monitor,1,149.99,01/21/19 21:00,"580 2nd St, Dallas, TX 75001" +149185,Bose SoundSport Headphones,1,99.99,01/12/19 14:48,"683 1st St, Los Angeles, CA 90001" +149186,27in FHD Monitor,1,149.99,01/28/19 21:00,"936 Park St, Dallas, TX 75001" +149187,Lightning Charging Cable,1,14.95,01/30/19 20:16,"558 Main St, Seattle, WA 98101" +149188,Google Phone,1,600,01/22/19 07:18,"617 2nd St, Atlanta, GA 30301" +149189,Google Phone,1,600,01/07/19 20:13,"117 Lake St, Boston, MA 02215" +149189,Bose SoundSport Headphones,1,99.99,01/07/19 20:13,"117 Lake St, Boston, MA 02215" +149190,AA Batteries (4-pack),1,3.84,01/02/19 23:39,"604 2nd St, Los Angeles, CA 90001" +149191,27in FHD Monitor,1,149.99,01/18/19 21:09,"373 Lincoln St, Portland, OR 97035" +149192,AA Batteries (4-pack),4,3.84,01/23/19 10:53,"162 Church St, New York City, NY 10001" +149193,Lightning Charging Cable,1,14.95,01/28/19 10:44,"366 12th St, New York City, NY 10001" +149194,AAA Batteries (4-pack),1,2.99,01/20/19 21:04,"149 13th St, Los Angeles, CA 90001" +149195,iPhone,1,700,01/01/19 08:43,"793 Park St, Austin, TX 73301" +149195,Lightning Charging Cable,1,14.95,01/01/19 08:43,"793 Park St, Austin, TX 73301" +149196,USB-C Charging Cable,1,11.95,01/07/19 10:36,"402 5th St, Boston, MA 02215" +149197,Lightning Charging Cable,1,14.95,01/03/19 23:58,"305 Maple St, San Francisco, CA 94016" +149198,ThinkPad Laptop,1,999.99,01/02/19 22:09,"79 Highland St, New York City, NY 10001" +149199,Apple Airpods Headphones,1,150,01/15/19 00:25,"625 Adams St, Boston, MA 02215" +149200,AA Batteries (4-pack),1,3.84,01/20/19 12:00,"474 West St, Los Angeles, CA 90001" +149201,AAA Batteries (4-pack),1,2.99,01/05/19 22:48,"581 Lincoln St, San Francisco, CA 94016" +149202,AA Batteries (4-pack),1,3.84,01/17/19 18:17,"817 5th St, San Francisco, CA 94016" +149203,Bose SoundSport Headphones,1,99.99,01/06/19 14:18,"457 Lakeview St, Dallas, TX 75001" +149204,Wired Headphones,1,11.99,01/14/19 20:18,"895 Spruce St, Boston, MA 02215" +149205,Bose SoundSport Headphones,1,99.99,01/17/19 22:16,"170 Madison St, Seattle, WA 98101" +149206,AAA Batteries (4-pack),1,2.99,01/16/19 11:34,"298 12th St, Atlanta, GA 30301" +149207,Bose SoundSport Headphones,1,99.99,01/27/19 18:11,"820 Cedar St, Seattle, WA 98101" +149208,AA Batteries (4-pack),1,3.84,01/06/19 09:19,"614 Wilson St, Los Angeles, CA 90001" +149209,USB-C Charging Cable,1,11.95,01/18/19 17:06,"574 11th St, New York City, NY 10001" +149210,Apple Airpods Headphones,1,150,01/06/19 14:19,"244 5th St, San Francisco, CA 94016" +149211,Bose SoundSport Headphones,1,99.99,01/28/19 20:38,"599 River St, Atlanta, GA 30301" +149212,ThinkPad Laptop,1,999.99,01/08/19 23:11,"995 12th St, Los Angeles, CA 90001" +149213,AAA Batteries (4-pack),1,2.99,01/25/19 06:47,"469 Cherry St, New York City, NY 10001" +149214,Lightning Charging Cable,1,14.95,01/02/19 12:37,"347 Washington St, Seattle, WA 98101" +149215,iPhone,1,700,01/18/19 09:07,"688 Sunset St, Dallas, TX 75001" +149216,Bose SoundSport Headphones,1,99.99,01/15/19 11:43,"96 8th St, Boston, MA 02215" +149217,Wired Headphones,1,11.99,01/18/19 10:40,"10 West St, San Francisco, CA 94016" +149218,AAA Batteries (4-pack),1,2.99,01/04/19 23:53,"356 Hill St, Boston, MA 02215" +149219,iPhone,1,700,01/08/19 05:10,"111 1st St, Boston, MA 02215" +149220,AA Batteries (4-pack),1,3.84,01/19/19 13:49,"165 6th St, Boston, MA 02215" +149221,USB-C Charging Cable,1,11.95,01/03/19 16:45,"346 4th St, Boston, MA 02215" +149222,Wired Headphones,1,11.99,01/13/19 15:20,"914 Wilson St, San Francisco, CA 94016" +149223,Macbook Pro Laptop,1,1700,01/09/19 11:27,"606 Madison St, Atlanta, GA 30301" +149224,27in 4K Gaming Monitor,1,389.99,02/01/19 01:12,"916 8th St, Boston, MA 02215" +149225,Wired Headphones,1,11.99,01/07/19 15:47,"56 1st St, San Francisco, CA 94016" +149226,Lightning Charging Cable,1,14.95,01/28/19 10:08,"950 Meadow St, San Francisco, CA 94016" +149227,34in Ultrawide Monitor,1,379.99,01/11/19 15:01,"483 4th St, Portland, OR 97035" +149228,AA Batteries (4-pack),2,3.84,01/05/19 17:53,"151 Sunset St, New York City, NY 10001" +149229,Bose SoundSport Headphones,1,99.99,01/06/19 20:20,"312 Park St, Los Angeles, CA 90001" +149230,Wired Headphones,1,11.99,01/05/19 20:03,"235 2nd St, Los Angeles, CA 90001" +149231,Wired Headphones,1,11.99,01/12/19 17:03,"929 Maple St, Los Angeles, CA 90001" +149232,iPhone,1,700,01/11/19 15:02,"582 Highland St, New York City, NY 10001" +149233,AA Batteries (4-pack),1,3.84,01/10/19 01:15,"594 Cherry St, Seattle, WA 98101" +149234,ThinkPad Laptop,1,999.99,01/29/19 19:24,"983 Center St, Austin, TX 73301" +149235,USB-C Charging Cable,1,11.95,01/18/19 11:10,"430 Ridge St, Los Angeles, CA 90001" +149236,AA Batteries (4-pack),3,3.84,01/22/19 10:56,"299 Jackson St, Seattle, WA 98101" +149237,USB-C Charging Cable,1,11.95,01/26/19 08:27,"905 Center St, Dallas, TX 75001" +149238,USB-C Charging Cable,2,11.95,01/18/19 18:14,"788 Adams St, Atlanta, GA 30301" +149239,Bose SoundSport Headphones,1,99.99,01/23/19 19:39,"293 North St, Los Angeles, CA 90001" +149240,Wired Headphones,1,11.99,01/30/19 13:05,"768 11th St, Dallas, TX 75001" +149241,Wired Headphones,1,11.99,01/28/19 19:29,"407 Hill St, Portland, OR 97035" +149242,Wired Headphones,1,11.99,01/20/19 10:59,"17 12th St, San Francisco, CA 94016" +149243,Wired Headphones,1,11.99,01/11/19 18:59,"198 Jackson St, Los Angeles, CA 90001" +149244,USB-C Charging Cable,1,11.95,01/03/19 08:13,"107 Pine St, San Francisco, CA 94016" +149245,27in FHD Monitor,1,149.99,01/17/19 16:50,"81 South St, Boston, MA 02215" +149246,AA Batteries (4-pack),1,3.84,01/13/19 11:38,"347 12th St, Portland, OR 97035" +149247,Bose SoundSport Headphones,1,99.99,01/15/19 12:55,"880 Johnson St, New York City, NY 10001" +149248,Vareebadd Phone,1,400,01/02/19 12:04,"580 Meadow St, Los Angeles, CA 90001" +149249,Lightning Charging Cable,1,14.95,01/08/19 16:38,"470 Pine St, Seattle, WA 98101" +149250,Lightning Charging Cable,1,14.95,01/17/19 17:09,"769 8th St, San Francisco, CA 94016" +149251,Apple Airpods Headphones,1,150,01/26/19 08:01,"801 Meadow St, New York City, NY 10001" +149252,Bose SoundSport Headphones,1,99.99,01/12/19 10:22,"883 Adams St, Seattle, WA 98101" +149253,AA Batteries (4-pack),2,3.84,01/31/19 21:05,"963 Willow St, New York City, NY 10001" +149254,iPhone,1,700,01/05/19 14:30,"653 1st St, San Francisco, CA 94016" +149255,Bose SoundSport Headphones,1,99.99,01/18/19 17:53,"882 Sunset St, Atlanta, GA 30301" +149256,Bose SoundSport Headphones,1,99.99,01/23/19 22:13,"127 Madison St, Seattle, WA 98101" +149257,USB-C Charging Cable,1,11.95,01/05/19 18:11,"866 Hickory St, Austin, TX 73301" +149258,USB-C Charging Cable,1,11.95,01/21/19 03:06,"378 Center St, New York City, NY 10001" +149259,Bose SoundSport Headphones,1,99.99,01/08/19 18:24,"611 14th St, Boston, MA 02215" +149260,Apple Airpods Headphones,1,150,01/14/19 15:13,"826 10th St, San Francisco, CA 94016" +149261,Apple Airpods Headphones,2,150,01/01/19 23:45,"59 Dogwood St, Austin, TX 73301" +149262,Apple Airpods Headphones,1,150,01/24/19 09:57,"812 Lakeview St, San Francisco, CA 94016" +149263,Lightning Charging Cable,1,14.95,01/25/19 11:24,"697 Washington St, Seattle, WA 98101" +149264,iPhone,1,700,01/07/19 17:26,"579 Elm St, Seattle, WA 98101" +149265,27in 4K Gaming Monitor,1,389.99,01/23/19 17:03,"228 River St, Seattle, WA 98101" +149266,AA Batteries (4-pack),1,3.84,01/23/19 15:53,"489 Hickory St, New York City, NY 10001" +149267,USB-C Charging Cable,1,11.95,01/21/19 01:01,"107 Hill St, Boston, MA 02215" +149268,27in FHD Monitor,1,149.99,01/30/19 22:49,"157 Forest St, Atlanta, GA 30301" +149269,AA Batteries (4-pack),1,3.84,01/28/19 19:00,"178 Adams St, Seattle, WA 98101" +149270,AAA Batteries (4-pack),1,2.99,01/19/19 15:36,"234 Jackson St, New York City, NY 10001" +149271,iPhone,1,700,01/18/19 14:00,"849 13th St, Atlanta, GA 30301" +149271,Lightning Charging Cable,1,14.95,01/18/19 14:00,"849 13th St, Atlanta, GA 30301" +149272,Macbook Pro Laptop,1,1700,01/15/19 00:21,"124 8th St, San Francisco, CA 94016" +149273,AA Batteries (4-pack),1,3.84,01/30/19 12:25,"164 Dogwood St, Boston, MA 02215" +149274,Bose SoundSport Headphones,1,99.99,01/06/19 15:25,"738 Hill St, New York City, NY 10001" +149275,Apple Airpods Headphones,1,150,01/24/19 12:47,"54 Meadow St, Los Angeles, CA 90001" +149276,Macbook Pro Laptop,1,1700,01/30/19 00:32,"696 Jefferson St, Los Angeles, CA 90001" +149277,AA Batteries (4-pack),1,3.84,01/21/19 23:17,"396 8th St, Atlanta, GA 30301" +149278,34in Ultrawide Monitor,1,379.99,01/12/19 20:04,"515 Spruce St, Dallas, TX 75001" +149279,AAA Batteries (4-pack),1,2.99,01/03/19 17:23,"697 Sunset St, Atlanta, GA 30301" +149280,27in FHD Monitor,1,149.99,01/23/19 09:22,"829 River St, New York City, NY 10001" +149281,AA Batteries (4-pack),1,3.84,01/19/19 08:24,"718 Lincoln St, New York City, NY 10001" +149282,Apple Airpods Headphones,1,150,01/04/19 11:43,"928 2nd St, Seattle, WA 98101" +149283,Apple Airpods Headphones,1,150,01/05/19 19:30,"58 Spruce St, Austin, TX 73301" +149284,AAA Batteries (4-pack),1,2.99,01/07/19 11:59,"224 Elm St, Los Angeles, CA 90001" +149285,Wired Headphones,1,11.99,01/10/19 14:50,"897 9th St, San Francisco, CA 94016" +149286,Bose SoundSport Headphones,1,99.99,01/16/19 12:05,"871 11th St, Boston, MA 02215" +149287,USB-C Charging Cable,1,11.95,01/03/19 12:33,"733 Maple St, Los Angeles, CA 90001" +149288,Wired Headphones,1,11.99,01/01/19 09:14,"882 Jefferson St, Dallas, TX 75001" +149289,Bose SoundSport Headphones,2,99.99,01/11/19 22:32,"595 Lakeview St, Atlanta, GA 30301" +149290,27in 4K Gaming Monitor,1,389.99,01/12/19 13:33,"494 Ridge St, San Francisco, CA 94016" +149291,Lightning Charging Cable,2,14.95,01/24/19 06:59,"914 10th St, Boston, MA 02215" +149292,Lightning Charging Cable,1,14.95,01/17/19 12:31,"235 14th St, New York City, NY 10001" +149293,Lightning Charging Cable,1,14.95,01/23/19 13:27,"37 6th St, Dallas, TX 75001" +149294,Google Phone,1,600,01/25/19 21:26,"159 Hill St, Boston, MA 02215" +149295,AA Batteries (4-pack),1,3.84,01/26/19 10:28,"219 Pine St, New York City, NY 10001" +149296,Flatscreen TV,1,300,01/25/19 14:45,"977 Dogwood St, Boston, MA 02215" +149297,Flatscreen TV,1,300,01/16/19 14:43,"829 Pine St, New York City, NY 10001" +149298,AA Batteries (4-pack),1,3.84,01/14/19 17:48,"322 Cedar St, Los Angeles, CA 90001" +149299,Lightning Charging Cable,1,14.95,01/02/19 20:59,"241 Dogwood St, San Francisco, CA 94016" +149300,Lightning Charging Cable,1,14.95,01/18/19 11:52,"566 Spruce St, Boston, MA 02215" +149301,Bose SoundSport Headphones,1,99.99,01/28/19 16:38,"24 Center St, Seattle, WA 98101" +149302,20in Monitor,1,109.99,01/21/19 23:38,"716 Forest St, New York City, NY 10001" +149303,27in FHD Monitor,1,149.99,01/07/19 21:10,"780 9th St, San Francisco, CA 94016" +149304,AA Batteries (4-pack),1,3.84,01/11/19 14:23,"590 Highland St, Austin, TX 73301" +149305,Wired Headphones,1,11.99,01/18/19 15:28,"950 Lake St, Atlanta, GA 30301" +149306,20in Monitor,1,109.99,01/08/19 12:40,"142 14th St, Seattle, WA 98101" +149307,AA Batteries (4-pack),1,3.84,01/18/19 21:25,"278 Jackson St, New York City, NY 10001" +149308,Macbook Pro Laptop,1,1700,01/23/19 10:42,"834 13th St, Boston, MA 02215" +149309,AA Batteries (4-pack),1,3.84,01/11/19 17:48,"984 Park St, Portland, OR 97035" +149310,Apple Airpods Headphones,1,150,01/27/19 22:14,"422 West St, Portland, OR 97035" +149311,Lightning Charging Cable,1,14.95,01/19/19 23:51,"722 Chestnut St, Los Angeles, CA 90001" +149312,USB-C Charging Cable,1,11.95,01/11/19 20:26,"390 Madison St, San Francisco, CA 94016" +149313,Wired Headphones,1,11.99,01/19/19 11:31,"431 Pine St, San Francisco, CA 94016" +149314,Flatscreen TV,1,300,01/15/19 16:24,"612 Sunset St, Los Angeles, CA 90001" +149315,Lightning Charging Cable,1,14.95,01/03/19 09:06,"390 12th St, New York City, NY 10001" +149316,ThinkPad Laptop,1,999.99,01/29/19 15:22,"972 Highland St, Los Angeles, CA 90001" +149317,27in FHD Monitor,1,149.99,01/07/19 14:08,"151 10th St, Dallas, TX 75001" +149318,27in 4K Gaming Monitor,1,389.99,01/06/19 07:38,"79 7th St, San Francisco, CA 94016" +149319,USB-C Charging Cable,1,11.95,01/19/19 18:07,"532 Lakeview St, San Francisco, CA 94016" +149320,20in Monitor,1,109.99,01/17/19 10:33,"495 Willow St, San Francisco, CA 94016" +149321,Wired Headphones,1,11.99,01/10/19 21:00,"222 West St, Los Angeles, CA 90001" +149322,USB-C Charging Cable,1,11.95,01/30/19 12:53,"877 Forest St, Portland, OR 97035" +149323,Apple Airpods Headphones,1,150,01/21/19 12:15,"427 Adams St, New York City, NY 10001" +149324,USB-C Charging Cable,1,11.95,01/07/19 15:43,"431 14th St, New York City, NY 10001" +149325,Wired Headphones,1,11.99,01/24/19 17:06,"702 Elm St, Portland, ME 04101" +149326,34in Ultrawide Monitor,1,379.99,01/18/19 10:11,"457 Jefferson St, New York City, NY 10001" +149327,USB-C Charging Cable,1,11.95,01/08/19 02:48,"303 Hill St, Boston, MA 02215" +149328,USB-C Charging Cable,1,11.95,01/09/19 10:11,"83 Park St, Seattle, WA 98101" +149329,AAA Batteries (4-pack),1,2.99,01/30/19 17:18,"974 Ridge St, San Francisco, CA 94016" +149330,AA Batteries (4-pack),1,3.84,01/08/19 13:43,"755 Lake St, Los Angeles, CA 90001" +149331,Apple Airpods Headphones,1,150,01/07/19 18:02,"700 Chestnut St, San Francisco, CA 94016" +149332,Lightning Charging Cable,1,14.95,01/25/19 22:09,"982 Meadow St, Los Angeles, CA 90001" +149333,Wired Headphones,1,11.99,01/19/19 15:17,"981 Pine St, Los Angeles, CA 90001" +149334,Wired Headphones,1,11.99,01/19/19 14:02,"379 Lakeview St, Portland, OR 97035" +149335,20in Monitor,1,109.99,01/30/19 20:17,"106 2nd St, San Francisco, CA 94016" +149336,USB-C Charging Cable,1,11.95,01/19/19 22:40,"412 Center St, Los Angeles, CA 90001" +149337,Wired Headphones,1,11.99,01/22/19 23:29,"446 Walnut St, San Francisco, CA 94016" +149338,AA Batteries (4-pack),1,3.84,01/21/19 11:39,"892 Walnut St, Boston, MA 02215" +149339,AAA Batteries (4-pack),1,2.99,01/03/19 12:27,"921 Cedar St, Portland, OR 97035" +149340,Google Phone,1,600,01/01/19 11:00,"562 Meadow St, Seattle, WA 98101" +149340,Bose SoundSport Headphones,1,99.99,01/01/19 11:00,"562 Meadow St, Seattle, WA 98101" +149341,AAA Batteries (4-pack),1,2.99,01/03/19 16:07,"155 Lake St, Atlanta, GA 30301" +149342,Apple Airpods Headphones,1,150,01/30/19 15:24,"955 Adams St, Los Angeles, CA 90001" +149343,USB-C Charging Cable,1,11.95,01/07/19 08:28,"738 Johnson St, San Francisco, CA 94016" +149344,AA Batteries (4-pack),1,3.84,01/17/19 13:20,"871 Spruce St, Boston, MA 02215" +149345,34in Ultrawide Monitor,1,379.99,01/11/19 18:08,"34 Madison St, Austin, TX 73301" +149346,AA Batteries (4-pack),2,3.84,01/12/19 05:56,"450 Lakeview St, Austin, TX 73301" +149347,AAA Batteries (4-pack),1,2.99,01/21/19 21:07,"871 8th St, Dallas, TX 75001" +149348,Wired Headphones,2,11.99,01/27/19 19:53,"484 Adams St, San Francisco, CA 94016" +149349,20in Monitor,1,109.99,01/06/19 15:08,"632 River St, Austin, TX 73301" +149350,Apple Airpods Headphones,1,150,01/18/19 12:22,"671 Madison St, San Francisco, CA 94016" +149351,USB-C Charging Cable,1,11.95,01/24/19 13:15,"385 4th St, San Francisco, CA 94016" +149352,34in Ultrawide Monitor,1,379.99,01/11/19 09:40,"516 South St, Los Angeles, CA 90001" +149353,34in Ultrawide Monitor,1,379.99,01/13/19 13:22,"4 5th St, Boston, MA 02215" +149354,AAA Batteries (4-pack),2,2.99,01/15/19 17:54,"91 South St, Los Angeles, CA 90001" +149355,27in 4K Gaming Monitor,1,389.99,01/30/19 14:21,"510 Washington St, San Francisco, CA 94016" +149355,USB-C Charging Cable,1,11.95,01/30/19 14:21,"510 Washington St, San Francisco, CA 94016" +149356,USB-C Charging Cable,1,11.95,01/02/19 18:30,"148 Cedar St, San Francisco, CA 94016" +149357,AA Batteries (4-pack),2,3.84,01/18/19 10:53,"293 Lake St, San Francisco, CA 94016" +149358,Lightning Charging Cable,1,14.95,01/18/19 14:45,"424 West St, Boston, MA 02215" +149359,Lightning Charging Cable,1,14.95,01/20/19 22:57,"704 Madison St, San Francisco, CA 94016" +149360,Lightning Charging Cable,1,14.95,01/20/19 11:35,"299 North St, San Francisco, CA 94016" +149361,Wired Headphones,1,11.99,01/21/19 08:46,"87 North St, Los Angeles, CA 90001" +149362,Lightning Charging Cable,1,14.95,01/28/19 17:30,"850 Jackson St, Austin, TX 73301" +149363,Wired Headphones,1,11.99,01/27/19 11:13,"388 Lincoln St, Austin, TX 73301" +149364,Wired Headphones,2,11.99,01/29/19 19:02,"757 Center St, Dallas, TX 75001" +149365,Wired Headphones,1,11.99,01/07/19 18:27,"311 Washington St, San Francisco, CA 94016" +149366,USB-C Charging Cable,1,11.95,01/05/19 07:22,"179 Lake St, Austin, TX 73301" +,,,,, +149367,AAA Batteries (4-pack),1,2.99,01/17/19 04:40,"866 13th St, Austin, TX 73301" +149368,Bose SoundSport Headphones,1,99.99,01/06/19 22:02,"69 5th St, New York City, NY 10001" +149369,AAA Batteries (4-pack),2,2.99,01/13/19 20:17,"485 West St, San Francisco, CA 94016" +149370,27in FHD Monitor,1,149.99,01/03/19 21:52,"595 South St, New York City, NY 10001" +149371,34in Ultrawide Monitor,1,379.99,01/07/19 10:16,"487 South St, San Francisco, CA 94016" +149372,Bose SoundSport Headphones,1,99.99,01/17/19 15:19,"444 Sunset St, Dallas, TX 75001" +149373,Macbook Pro Laptop,1,1700,01/26/19 17:06,"20 Walnut St, New York City, NY 10001" +149374,Lightning Charging Cable,1,14.95,01/19/19 11:33,"180 Adams St, Dallas, TX 75001" +149375,27in FHD Monitor,1,149.99,01/10/19 05:03,"923 Forest St, Seattle, WA 98101" +149376,Lightning Charging Cable,1,14.95,01/05/19 22:25,"287 Walnut St, San Francisco, CA 94016" +149377,AA Batteries (4-pack),1,3.84,01/20/19 19:15,"119 Hickory St, San Francisco, CA 94016" +149378,Apple Airpods Headphones,1,150,01/12/19 20:10,"571 Meadow St, Boston, MA 02215" +149379,Wired Headphones,1,11.99,01/01/19 21:12,"223 Meadow St, San Francisco, CA 94016" +149380,AA Batteries (4-pack),1,3.84,01/11/19 12:22,"179 13th St, Dallas, TX 75001" +149381,Apple Airpods Headphones,1,150,01/25/19 20:23,"216 10th St, Seattle, WA 98101" +149382,Lightning Charging Cable,1,14.95,01/03/19 21:08,"931 9th St, Portland, OR 97035" +149383,Wired Headphones,1,11.99,01/13/19 13:23,"97 River St, Austin, TX 73301" +149384,ThinkPad Laptop,1,999.99,01/26/19 19:38,"838 7th St, Dallas, TX 75001" +149385,AA Batteries (4-pack),1,3.84,01/12/19 15:00,"115 Park St, Atlanta, GA 30301" +149386,Lightning Charging Cable,2,14.95,01/30/19 13:15,"390 2nd St, Atlanta, GA 30301" +149387,Apple Airpods Headphones,1,150,01/09/19 15:27,"586 Cedar St, New York City, NY 10001" +149388,27in FHD Monitor,1,149.99,01/16/19 07:46,"17 Park St, Boston, MA 02215" +149389,Lightning Charging Cable,1,14.95,01/18/19 19:08,"979 14th St, San Francisco, CA 94016" +149390,USB-C Charging Cable,1,11.95,01/13/19 07:01,"497 Spruce St, Atlanta, GA 30301" +149391,AA Batteries (4-pack),3,3.84,01/28/19 10:59,"18 Center St, Boston, MA 02215" +149392,ThinkPad Laptop,1,999.99,01/05/19 14:25,"969 Forest St, Dallas, TX 75001" +149393,Lightning Charging Cable,1,14.95,01/19/19 13:58,"915 Willow St, San Francisco, CA 94016" +149394,Wired Headphones,1,11.99,01/06/19 07:37,"751 West St, Seattle, WA 98101" +149395,Apple Airpods Headphones,1,150,01/19/19 04:13,"865 Sunset St, Dallas, TX 75001" +149396,USB-C Charging Cable,1,11.95,01/18/19 16:51,"363 North St, Portland, OR 97035" +149397,Apple Airpods Headphones,1,150,01/16/19 09:22,"138 West St, Seattle, WA 98101" +149398,Wired Headphones,1,11.99,01/14/19 05:53,"838 Cherry St, Seattle, WA 98101" +149399,27in 4K Gaming Monitor,1,389.99,01/31/19 00:16,"487 Lake St, Dallas, TX 75001" +149400,USB-C Charging Cable,1,11.95,01/05/19 15:48,"938 6th St, San Francisco, CA 94016" +149401,AA Batteries (4-pack),1,3.84,01/17/19 11:26,"199 Hill St, Atlanta, GA 30301" +149402,Wired Headphones,1,11.99,01/13/19 15:37,"752 Willow St, Dallas, TX 75001" +149403,Bose SoundSport Headphones,1,99.99,01/05/19 12:28,"434 10th St, Dallas, TX 75001" +149404,27in 4K Gaming Monitor,1,389.99,01/15/19 21:34,"369 9th St, Seattle, WA 98101" +149405,Bose SoundSport Headphones,1,99.99,01/19/19 16:38,"680 River St, San Francisco, CA 94016" +149406,Bose SoundSport Headphones,1,99.99,01/15/19 06:18,"134 Spruce St, San Francisco, CA 94016" +149407,Apple Airpods Headphones,1,150,01/30/19 20:40,"6 Wilson St, San Francisco, CA 94016" +149408,ThinkPad Laptop,1,999.99,01/28/19 09:49,"172 Meadow St, Atlanta, GA 30301" +149409,Apple Airpods Headphones,1,150,01/14/19 17:53,"898 Highland St, San Francisco, CA 94016" +149410,USB-C Charging Cable,1,11.95,01/25/19 18:24,"243 Madison St, Austin, TX 73301" +149411,Wired Headphones,2,11.99,01/26/19 21:15,"862 Meadow St, Dallas, TX 75001" +149412,Wired Headphones,1,11.99,01/06/19 10:54,"153 Washington St, Boston, MA 02215" +149413,AA Batteries (4-pack),3,3.84,01/02/19 12:47,"411 Meadow St, Dallas, TX 75001" +149414,USB-C Charging Cable,1,11.95,01/16/19 10:53,"862 Walnut St, San Francisco, CA 94016" +149415,Macbook Pro Laptop,1,1700,01/16/19 10:13,"126 Highland St, Austin, TX 73301" +149416,34in Ultrawide Monitor,1,379.99,01/23/19 13:34,"405 Hickory St, Seattle, WA 98101" +149417,27in FHD Monitor,1,149.99,01/14/19 14:03,"2 12th St, Atlanta, GA 30301" +149418,27in 4K Gaming Monitor,1,389.99,01/23/19 20:49,"718 5th St, Seattle, WA 98101" +149419,AAA Batteries (4-pack),1,2.99,01/13/19 09:37,"552 Adams St, Dallas, TX 75001" +149420,34in Ultrawide Monitor,1,379.99,01/09/19 14:02,"264 Maple St, New York City, NY 10001" +149421,USB-C Charging Cable,1,11.95,01/26/19 13:39,"738 5th St, Austin, TX 73301" +149422,AA Batteries (4-pack),1,3.84,01/26/19 11:08,"586 Main St, Seattle, WA 98101" +149423,27in FHD Monitor,1,149.99,01/19/19 14:58,"225 Lincoln St, Dallas, TX 75001" +149424,Bose SoundSport Headphones,1,99.99,01/29/19 06:18,"120 12th St, New York City, NY 10001" +149424,iPhone,1,700,01/29/19 06:18,"120 12th St, New York City, NY 10001" +149425,20in Monitor,1,109.99,01/22/19 19:41,"602 Meadow St, Boston, MA 02215" +149426,Apple Airpods Headphones,1,150,01/02/19 08:12,"942 Meadow St, Austin, TX 73301" +149427,27in FHD Monitor,1,149.99,01/18/19 10:03,"364 Meadow St, San Francisco, CA 94016" +149428,Macbook Pro Laptop,1,1700,01/02/19 19:38,"351 Church St, San Francisco, CA 94016" +149429,USB-C Charging Cable,1,11.95,01/20/19 15:15,"812 Maple St, New York City, NY 10001" +149430,iPhone,1,700,01/13/19 23:32,"201 Spruce St, Portland, ME 04101" +149430,Wired Headphones,1,11.99,01/13/19 23:32,"201 Spruce St, Portland, ME 04101" +149431,ThinkPad Laptop,1,999.99,01/26/19 15:25,"655 Cedar St, Los Angeles, CA 90001" +149432,Lightning Charging Cable,1,14.95,01/08/19 21:30,"675 Lakeview St, Boston, MA 02215" +149433,USB-C Charging Cable,1,11.95,01/15/19 12:53,"522 Willow St, Seattle, WA 98101" +149434,AA Batteries (4-pack),1,3.84,01/04/19 08:20,"47 2nd St, San Francisco, CA 94016" +149435,34in Ultrawide Monitor,1,379.99,01/22/19 07:44,"747 Dogwood St, Los Angeles, CA 90001" +149436,Bose SoundSport Headphones,1,99.99,01/06/19 20:45,"788 2nd St, San Francisco, CA 94016" +149437,AA Batteries (4-pack),1,3.84,01/11/19 22:38,"689 Church St, Dallas, TX 75001" +149438,Wired Headphones,2,11.99,01/22/19 07:28,"841 Elm St, Boston, MA 02215" +149439,Bose SoundSport Headphones,1,99.99,01/11/19 19:50,"562 Meadow St, Boston, MA 02215" +149440,USB-C Charging Cable,1,11.95,01/26/19 13:23,"502 Cherry St, New York City, NY 10001" +149441,Apple Airpods Headphones,1,150,01/14/19 18:27,"445 11th St, Boston, MA 02215" +149442,Apple Airpods Headphones,1,150,01/05/19 15:37,"75 11th St, San Francisco, CA 94016" +149443,34in Ultrawide Monitor,1,379.99,01/09/19 04:25,"443 Jefferson St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +149444,AAA Batteries (4-pack),2,2.99,01/21/19 04:41,"519 8th St, Boston, MA 02215" +149445,USB-C Charging Cable,1,11.95,01/20/19 00:53,"835 8th St, San Francisco, CA 94016" +149446,Lightning Charging Cable,1,14.95,01/14/19 15:38,"636 Hill St, San Francisco, CA 94016" +149447,AAA Batteries (4-pack),2,2.99,01/04/19 21:15,"452 13th St, Los Angeles, CA 90001" +149448,Flatscreen TV,1,300,01/10/19 00:17,"291 River St, New York City, NY 10001" +149449,Wired Headphones,1,11.99,01/14/19 22:15,"59 Elm St, Atlanta, GA 30301" +149450,Lightning Charging Cable,1,14.95,01/18/19 20:02,"622 South St, Boston, MA 02215" +149451,iPhone,1,700,01/16/19 09:51,"449 2nd St, San Francisco, CA 94016" +149451,Lightning Charging Cable,1,14.95,01/16/19 09:51,"449 2nd St, San Francisco, CA 94016" +149452,Wired Headphones,1,11.99,01/15/19 15:26,"837 Main St, Atlanta, GA 30301" +149453,Apple Airpods Headphones,1,150,01/07/19 07:10,"445 Washington St, Portland, ME 04101" +149454,AAA Batteries (4-pack),1,2.99,01/24/19 08:45,"952 Sunset St, Austin, TX 73301" +149455,USB-C Charging Cable,1,11.95,01/03/19 12:25,"551 West St, Los Angeles, CA 90001" +149456,Lightning Charging Cable,1,14.95,01/08/19 14:11,"466 South St, Seattle, WA 98101" +149457,AAA Batteries (4-pack),1,2.99,01/31/19 09:42,"367 8th St, Boston, MA 02215" +149458,iPhone,1,700,01/28/19 22:21,"282 Sunset St, San Francisco, CA 94016" +149459,Wired Headphones,1,11.99,01/17/19 09:37,"966 Adams St, New York City, NY 10001" +149460,AA Batteries (4-pack),1,3.84,01/14/19 11:28,"41 Elm St, Boston, MA 02215" +149461,AA Batteries (4-pack),1,3.84,01/09/19 10:18,"453 Madison St, Portland, OR 97035" +149462,Bose SoundSport Headphones,1,99.99,01/13/19 10:16,"995 13th St, Portland, OR 97035" +149463,USB-C Charging Cable,1,11.95,01/25/19 19:46,"816 South St, San Francisco, CA 94016" +149464,34in Ultrawide Monitor,1,379.99,01/01/19 22:43,"261 Willow St, San Francisco, CA 94016" +149465,27in FHD Monitor,1,149.99,01/02/19 10:08,"514 Meadow St, Atlanta, GA 30301" +149466,Lightning Charging Cable,1,14.95,01/29/19 08:58,"855 Cedar St, San Francisco, CA 94016" +149467,Wired Headphones,1,11.99,01/10/19 14:00,"257 Maple St, San Francisco, CA 94016" +149468,Bose SoundSport Headphones,1,99.99,01/10/19 09:55,"343 4th St, San Francisco, CA 94016" +149469,Lightning Charging Cable,1,14.95,01/26/19 18:50,"688 Elm St, San Francisco, CA 94016" +149470,USB-C Charging Cable,1,11.95,01/23/19 13:44,"16 Spruce St, San Francisco, CA 94016" +149471,34in Ultrawide Monitor,1,379.99,01/05/19 23:04,"340 Willow St, Atlanta, GA 30301" +149472,Lightning Charging Cable,1,14.95,01/11/19 11:12,"798 5th St, Los Angeles, CA 90001" +149473,AAA Batteries (4-pack),1,2.99,01/23/19 09:33,"409 Sunset St, Atlanta, GA 30301" +149474,Wired Headphones,1,11.99,01/09/19 18:38,"237 Meadow St, Los Angeles, CA 90001" +149475,iPhone,1,700,01/16/19 14:52,"495 Walnut St, Austin, TX 73301" +149475,Apple Airpods Headphones,1,150,01/16/19 14:52,"495 Walnut St, Austin, TX 73301" +149476,USB-C Charging Cable,1,11.95,01/23/19 15:25,"531 Cherry St, San Francisco, CA 94016" +149477,Lightning Charging Cable,1,14.95,01/15/19 11:31,"30 Main St, Seattle, WA 98101" +149478,Wired Headphones,1,11.99,01/17/19 16:42,"126 Hill St, Boston, MA 02215" +149479,27in FHD Monitor,1,149.99,01/28/19 12:22,"851 Lincoln St, Atlanta, GA 30301" +149480,Lightning Charging Cable,1,14.95,01/29/19 22:31,"629 Jackson St, Portland, OR 97035" +149481,Google Phone,1,600,01/15/19 14:26,"543 Forest St, Seattle, WA 98101" +149482,Apple Airpods Headphones,1,150,01/31/19 19:44,"780 Main St, New York City, NY 10001" +149483,Wired Headphones,1,11.99,01/22/19 10:43,"266 13th St, Los Angeles, CA 90001" +149484,Wired Headphones,1,11.99,01/21/19 09:22,"877 9th St, New York City, NY 10001" +149485,Lightning Charging Cable,1,14.95,01/03/19 18:16,"272 Park St, San Francisco, CA 94016" +149486,AA Batteries (4-pack),1,3.84,01/04/19 10:30,"456 7th St, Atlanta, GA 30301" +149487,Wired Headphones,1,11.99,01/18/19 16:20,"810 Center St, Atlanta, GA 30301" +149488,AAA Batteries (4-pack),2,2.99,01/15/19 18:47,"436 Church St, Boston, MA 02215" +149489,AAA Batteries (4-pack),1,2.99,01/16/19 09:43,"887 Madison St, San Francisco, CA 94016" +149490,LG Dryer,1,600.0,01/28/19 16:36,"742 River St, San Francisco, CA 94016" +149490,Apple Airpods Headphones,1,150,01/28/19 16:36,"742 River St, San Francisco, CA 94016" +149491,34in Ultrawide Monitor,1,379.99,01/02/19 11:07,"754 9th St, Dallas, TX 75001" +149492,AAA Batteries (4-pack),4,2.99,01/07/19 16:00,"543 Wilson St, New York City, NY 10001" +149493,USB-C Charging Cable,1,11.95,01/03/19 18:25,"4 Elm St, Los Angeles, CA 90001" +149494,Lightning Charging Cable,1,14.95,01/30/19 12:48,"304 South St, Atlanta, GA 30301" +149495,iPhone,1,700,01/16/19 23:52,"317 Main St, New York City, NY 10001" +149496,34in Ultrawide Monitor,1,379.99,01/18/19 11:04,"287 North St, Atlanta, GA 30301" +149497,AAA Batteries (4-pack),3,2.99,01/05/19 03:18,"793 Meadow St, Seattle, WA 98101" +149498,27in 4K Gaming Monitor,1,389.99,01/07/19 11:59,"296 Main St, Austin, TX 73301" +149499,Bose SoundSport Headphones,1,99.99,01/24/19 06:10,"295 North St, Dallas, TX 75001" +149500,Wired Headphones,1,11.99,01/09/19 22:01,"611 Sunset St, Atlanta, GA 30301" +149501,Wired Headphones,2,11.99,01/20/19 19:24,"633 Spruce St, Boston, MA 02215" +149502,AAA Batteries (4-pack),1,2.99,01/17/19 13:23,"998 Park St, San Francisco, CA 94016" +149503,AAA Batteries (4-pack),1,2.99,01/25/19 15:17,"820 Forest St, San Francisco, CA 94016" +149504,Bose SoundSport Headphones,1,99.99,01/15/19 07:34,"918 4th St, Austin, TX 73301" +149505,Wired Headphones,1,11.99,01/17/19 22:51,"569 4th St, Los Angeles, CA 90001" +149506,ThinkPad Laptop,1,999.99,01/01/19 08:02,"742 6th St, Los Angeles, CA 90001" +149507,27in FHD Monitor,1,149.99,01/27/19 23:17,"426 Main St, Portland, ME 04101" +149508,Apple Airpods Headphones,1,150,01/16/19 09:03,"953 South St, Austin, TX 73301" +149509,AA Batteries (4-pack),2,3.84,01/23/19 19:48,"930 4th St, Dallas, TX 75001" +149510,Lightning Charging Cable,1,14.95,01/09/19 15:03,"695 9th St, Atlanta, GA 30301" +149510,34in Ultrawide Monitor,1,379.99,01/09/19 15:03,"695 9th St, Atlanta, GA 30301" +149511,Macbook Pro Laptop,1,1700,01/12/19 21:16,"227 Washington St, San Francisco, CA 94016" +149512,Bose SoundSport Headphones,1,99.99,01/08/19 16:55,"587 10th St, San Francisco, CA 94016" +149513,Lightning Charging Cable,1,14.95,01/18/19 16:57,"572 Chestnut St, Dallas, TX 75001" +149513,Lightning Charging Cable,1,14.95,01/18/19 16:57,"572 Chestnut St, Dallas, TX 75001" +149514,27in 4K Gaming Monitor,1,389.99,01/20/19 09:18,"947 Wilson St, Seattle, WA 98101" +149515,Wired Headphones,1,11.99,01/13/19 11:58,"678 Forest St, Boston, MA 02215" +149516,Wired Headphones,1,11.99,01/03/19 10:15,"406 2nd St, New York City, NY 10001" +149517,27in FHD Monitor,1,149.99,01/16/19 14:53,"770 Johnson St, San Francisco, CA 94016" +149518,Lightning Charging Cable,1,14.95,01/23/19 05:27,"870 Park St, Dallas, TX 75001" +149519,iPhone,1,700,01/10/19 19:48,"87 Willow St, Atlanta, GA 30301" +149520,AAA Batteries (4-pack),1,2.99,01/26/19 12:20,"883 Lakeview St, Dallas, TX 75001" +149521,Flatscreen TV,1,300,01/22/19 20:54,"187 2nd St, Los Angeles, CA 90001" +149522,AAA Batteries (4-pack),2,2.99,01/07/19 01:13,"16 Madison St, Seattle, WA 98101" +149523,27in 4K Gaming Monitor,1,389.99,01/20/19 12:51,"542 Forest St, Atlanta, GA 30301" +149524,USB-C Charging Cable,1,11.95,01/06/19 18:05,"588 Forest St, Atlanta, GA 30301" +149525,34in Ultrawide Monitor,1,379.99,01/20/19 22:15,"429 Wilson St, Boston, MA 02215" +149526,Wired Headphones,1,11.99,01/13/19 11:31,"161 Highland St, Dallas, TX 75001" +149527,Lightning Charging Cable,1,14.95,01/31/19 21:52,"421 Lakeview St, Dallas, TX 75001" +149528,USB-C Charging Cable,1,11.95,01/24/19 15:08,"581 14th St, San Francisco, CA 94016" +149529,ThinkPad Laptop,1,999.99,01/26/19 15:48,"612 Center St, New York City, NY 10001" +149530,AA Batteries (4-pack),3,3.84,01/14/19 08:55,"58 1st St, Austin, TX 73301" +149531,34in Ultrawide Monitor,1,379.99,01/30/19 11:03,"694 Willow St, San Francisco, CA 94016" +149532,34in Ultrawide Monitor,1,379.99,01/31/19 15:22,"513 North St, San Francisco, CA 94016" +149533,34in Ultrawide Monitor,1,379.99,01/01/19 10:59,"993 12th St, New York City, NY 10001" +149534,Vareebadd Phone,1,400,01/30/19 20:47,"700 11th St, Los Angeles, CA 90001" +149535,Lightning Charging Cable,1,14.95,01/31/19 11:09,"975 Meadow St, Dallas, TX 75001" +149536,AA Batteries (4-pack),2,3.84,01/26/19 09:00,"441 Jackson St, New York City, NY 10001" +149537,AAA Batteries (4-pack),4,2.99,01/05/19 03:19,"2 Wilson St, Dallas, TX 75001" +149538,Wired Headphones,1,11.99,01/27/19 23:40,"311 8th St, Portland, OR 97035" +149539,Flatscreen TV,1,300,01/09/19 23:11,"471 Hickory St, Los Angeles, CA 90001" +149540,Wired Headphones,1,11.99,01/11/19 20:46,"934 Washington St, New York City, NY 10001" +149540,LG Dryer,1,600.0,01/11/19 20:46,"934 Washington St, New York City, NY 10001" +149541,Flatscreen TV,1,300,01/21/19 09:47,"400 Lakeview St, Boston, MA 02215" +149542,Lightning Charging Cable,1,14.95,01/15/19 16:28,"325 9th St, New York City, NY 10001" +149543,iPhone,1,700,01/22/19 10:16,"300 Willow St, Los Angeles, CA 90001" +149543,Wired Headphones,1,11.99,01/22/19 10:16,"300 Willow St, Los Angeles, CA 90001" +149544,Lightning Charging Cable,2,14.95,01/20/19 18:31,"183 Lincoln St, Los Angeles, CA 90001" +149545,AA Batteries (4-pack),1,3.84,01/10/19 14:26,"724 Lake St, Austin, TX 73301" +149546,Vareebadd Phone,1,400,01/08/19 11:38,"288 2nd St, New York City, NY 10001" +149547,Lightning Charging Cable,1,14.95,01/08/19 22:55,"421 Johnson St, Dallas, TX 75001" +149548,Apple Airpods Headphones,1,150,01/25/19 16:48,"987 West St, Los Angeles, CA 90001" +149549,AA Batteries (4-pack),1,3.84,01/06/19 13:57,"436 River St, San Francisco, CA 94016" +149550,AA Batteries (4-pack),2,3.84,01/03/19 21:42,"296 Madison St, San Francisco, CA 94016" +149551,Wired Headphones,1,11.99,01/29/19 22:29,"955 Walnut St, San Francisco, CA 94016" +149552,LG Washing Machine,1,600.0,01/08/19 06:49,"809 Elm St, Seattle, WA 98101" +149553,Macbook Pro Laptop,1,1700,01/11/19 18:59,"255 Madison St, San Francisco, CA 94016" +,,,,, +149554,Flatscreen TV,1,300,01/01/19 18:12,"242 9th St, Portland, OR 97035" +149555,Wired Headphones,1,11.99,01/10/19 13:59,"637 Lincoln St, Los Angeles, CA 90001" +149556,Apple Airpods Headphones,1,150,01/31/19 21:21,"9 Hill St, New York City, NY 10001" +149557,27in FHD Monitor,1,149.99,01/23/19 04:49,"377 Church St, New York City, NY 10001" +149558,AA Batteries (4-pack),1,3.84,01/11/19 12:04,"106 8th St, New York City, NY 10001" +149559,Lightning Charging Cable,1,14.95,01/27/19 14:22,"571 9th St, New York City, NY 10001" +149560,20in Monitor,1,109.99,01/19/19 19:39,"544 Maple St, Los Angeles, CA 90001" +149561,Apple Airpods Headphones,1,150,01/23/19 10:44,"9 Elm St, Los Angeles, CA 90001" +149562,USB-C Charging Cable,1,11.95,01/19/19 20:14,"884 Ridge St, Los Angeles, CA 90001" +149563,AAA Batteries (4-pack),2,2.99,01/23/19 18:26,"918 Wilson St, Portland, OR 97035" +149564,27in 4K Gaming Monitor,1,389.99,01/26/19 08:14,"778 10th St, Los Angeles, CA 90001" +149565,Macbook Pro Laptop,1,1700,01/08/19 21:43,"299 4th St, Boston, MA 02215" +149566,Wired Headphones,2,11.99,01/30/19 18:12,"656 Walnut St, San Francisco, CA 94016" +149567,AA Batteries (4-pack),2,3.84,01/10/19 20:42,"596 4th St, Atlanta, GA 30301" +149568,AA Batteries (4-pack),1,3.84,01/28/19 21:44,"658 8th St, Los Angeles, CA 90001" +149569,Lightning Charging Cable,1,14.95,01/26/19 12:56,"54 11th St, San Francisco, CA 94016" +149570,Macbook Pro Laptop,1,1700,01/03/19 07:43,"192 Johnson St, Dallas, TX 75001" +149571,Wired Headphones,1,11.99,01/11/19 10:47,"496 11th St, San Francisco, CA 94016" +149572,Bose SoundSport Headphones,1,99.99,01/06/19 19:51,"480 14th St, Austin, TX 73301" +149573,AAA Batteries (4-pack),2,2.99,02/01/19 01:36,"416 Walnut St, Dallas, TX 75001" +149574,USB-C Charging Cable,1,11.95,02/01/19 01:10,"680 8th St, Atlanta, GA 30301" +149575,Apple Airpods Headphones,1,150,01/01/19 18:07,"393 5th St, San Francisco, CA 94016" +149576,Lightning Charging Cable,1,14.95,01/26/19 15:44,"602 Forest St, San Francisco, CA 94016" +149577,AAA Batteries (4-pack),1,2.99,01/07/19 00:45,"54 Jefferson St, Dallas, TX 75001" +149578,Google Phone,1,600,01/14/19 08:54,"39 Meadow St, San Francisco, CA 94016" +149579,Wired Headphones,1,11.99,01/15/19 19:07,"653 Hickory St, Portland, OR 97035" +149580,Wired Headphones,2,11.99,01/14/19 16:26,"538 10th St, San Francisco, CA 94016" +149581,27in FHD Monitor,1,149.99,01/03/19 12:25,"967 Willow St, New York City, NY 10001" +149582,Lightning Charging Cable,1,14.95,01/03/19 09:56,"215 Church St, San Francisco, CA 94016" +149583,Wired Headphones,1,11.99,01/31/19 18:03,"316 Church St, Dallas, TX 75001" +149584,AA Batteries (4-pack),1,3.84,01/01/19 12:28,"514 Highland St, Los Angeles, CA 90001" +149585,Wired Headphones,1,11.99,01/24/19 18:32,"725 Lakeview St, Los Angeles, CA 90001" +149586,AA Batteries (4-pack),2,3.84,01/10/19 16:15,"477 Cherry St, San Francisco, CA 94016" +149587,Bose SoundSport Headphones,1,99.99,01/02/19 08:28,"532 10th St, San Francisco, CA 94016" +149588,27in FHD Monitor,1,149.99,01/26/19 02:02,"267 Cedar St, San Francisco, CA 94016" +149589,AA Batteries (4-pack),1,3.84,01/17/19 20:03,"60 Walnut St, Los Angeles, CA 90001" +149590,AAA Batteries (4-pack),1,2.99,01/27/19 23:14,"304 River St, Atlanta, GA 30301" +149591,Apple Airpods Headphones,1,150,01/26/19 10:42,"296 Spruce St, Los Angeles, CA 90001" +149592,Bose SoundSport Headphones,1,99.99,01/03/19 12:24,"381 Hickory St, Boston, MA 02215" +149593,Bose SoundSport Headphones,1,99.99,01/26/19 22:22,"406 Meadow St, Los Angeles, CA 90001" +149594,iPhone,1,700,01/30/19 09:28,"617 Church St, Los Angeles, CA 90001" +149595,USB-C Charging Cable,1,11.95,01/05/19 09:58,"160 Church St, Los Angeles, CA 90001" +149596,Lightning Charging Cable,1,14.95,01/19/19 07:33,"876 Lincoln St, New York City, NY 10001" +149597,USB-C Charging Cable,1,11.95,01/26/19 18:43,"571 7th St, Boston, MA 02215" +149598,Apple Airpods Headphones,1,150,01/24/19 05:09,"174 1st St, Boston, MA 02215" +149599,34in Ultrawide Monitor,1,379.99,01/21/19 18:57,"38 Park St, Seattle, WA 98101" +149600,Macbook Pro Laptop,1,1700,01/24/19 10:13,"529 14th St, Atlanta, GA 30301" +149601,Google Phone,1,600,01/25/19 13:29,"791 Cedar St, San Francisco, CA 94016" +149601,Wired Headphones,1,11.99,01/25/19 13:29,"791 Cedar St, San Francisco, CA 94016" +149602,Apple Airpods Headphones,1,150,01/17/19 08:33,"162 Park St, San Francisco, CA 94016" +149603,ThinkPad Laptop,1,999.99,01/06/19 08:57,"917 Walnut St, New York City, NY 10001" +149604,USB-C Charging Cable,1,11.95,01/23/19 20:22,"622 Spruce St, Los Angeles, CA 90001" +149605,Apple Airpods Headphones,1,150,01/16/19 21:32,"480 Cedar St, San Francisco, CA 94016" +149606,Lightning Charging Cable,1,14.95,01/13/19 14:19,"746 Johnson St, Atlanta, GA 30301" +149607,Wired Headphones,1,11.99,01/16/19 09:45,"401 Hickory St, San Francisco, CA 94016" +149608,Bose SoundSport Headphones,1,99.99,01/22/19 16:39,"373 Jefferson St, Seattle, WA 98101" +149609,Wired Headphones,1,11.99,01/17/19 20:51,"206 Sunset St, Portland, ME 04101" +149610,USB-C Charging Cable,1,11.95,01/23/19 16:00,"276 Meadow St, Los Angeles, CA 90001" +149611,USB-C Charging Cable,1,11.95,01/19/19 14:54,"555 Elm St, New York City, NY 10001" +149612,27in FHD Monitor,1,149.99,01/06/19 23:04,"706 2nd St, Atlanta, GA 30301" +149613,USB-C Charging Cable,1,11.95,01/10/19 14:22,"502 North St, Seattle, WA 98101" +149614,Wired Headphones,1,11.99,01/17/19 21:15,"244 Sunset St, Boston, MA 02215" +149615,Wired Headphones,2,11.99,01/16/19 16:24,"873 8th St, Dallas, TX 75001" +149616,34in Ultrawide Monitor,1,379.99,01/01/19 21:56,"951 Jackson St, San Francisco, CA 94016" +149617,27in FHD Monitor,1,149.99,01/19/19 18:12,"642 Spruce St, San Francisco, CA 94016" +149618,AAA Batteries (4-pack),2,2.99,01/04/19 07:14,"710 Wilson St, Portland, ME 04101" +149619,USB-C Charging Cable,1,11.95,01/30/19 20:08,"248 Madison St, Dallas, TX 75001" +149620,27in FHD Monitor,1,149.99,01/11/19 09:46,"324 Walnut St, Austin, TX 73301" +149621,USB-C Charging Cable,2,11.95,01/30/19 21:49,"488 Pine St, Seattle, WA 98101" +149622,AA Batteries (4-pack),2,3.84,01/01/19 11:27,"91 6th St, Los Angeles, CA 90001" +149623,AAA Batteries (4-pack),2,2.99,01/03/19 17:45,"740 13th St, New York City, NY 10001" +149624,Macbook Pro Laptop,1,1700,01/12/19 15:42,"548 Park St, Seattle, WA 98101" +149625,Apple Airpods Headphones,1,150,01/15/19 20:21,"33 Johnson St, New York City, NY 10001" +149626,AAA Batteries (4-pack),1,2.99,01/03/19 17:13,"354 Johnson St, Seattle, WA 98101" +149627,Wired Headphones,1,11.99,01/19/19 11:38,"865 5th St, Los Angeles, CA 90001" +149628,Wired Headphones,1,11.99,01/10/19 18:50,"610 North St, Dallas, TX 75001" +149629,Lightning Charging Cable,1,14.95,01/01/19 08:59,"386 Walnut St, San Francisco, CA 94016" +149630,Bose SoundSport Headphones,1,99.99,01/12/19 06:59,"652 North St, Los Angeles, CA 90001" +149631,AA Batteries (4-pack),2,3.84,01/06/19 11:08,"920 Park St, Boston, MA 02215" +149632,Macbook Pro Laptop,1,1700,01/13/19 14:18,"442 12th St, Portland, ME 04101" +149633,Lightning Charging Cable,1,14.95,01/15/19 16:47,"844 10th St, Los Angeles, CA 90001" +149634,Macbook Pro Laptop,1,1700,01/19/19 09:20,"494 Walnut St, Boston, MA 02215" +149635,AA Batteries (4-pack),1,3.84,01/20/19 15:46,"694 Walnut St, New York City, NY 10001" +149636,Apple Airpods Headphones,1,150,01/14/19 11:05,"358 4th St, Boston, MA 02215" +149637,Wired Headphones,1,11.99,01/24/19 13:51,"40 Madison St, Boston, MA 02215" +149638,iPhone,1,700,01/23/19 23:53,"868 Chestnut St, Seattle, WA 98101" +149639,Lightning Charging Cable,1,14.95,01/30/19 15:12,"805 Lake St, New York City, NY 10001" +149640,Apple Airpods Headphones,1,150,01/18/19 09:21,"77 Adams St, New York City, NY 10001" +149641,20in Monitor,1,109.99,01/19/19 16:06,"32 5th St, San Francisco, CA 94016" +149642,USB-C Charging Cable,1,11.95,01/05/19 01:01,"323 11th St, San Francisco, CA 94016" +149643,Bose SoundSport Headphones,1,99.99,01/04/19 14:10,"893 4th St, New York City, NY 10001" +149644,AA Batteries (4-pack),1,3.84,01/26/19 07:31,"839 Lincoln St, Seattle, WA 98101" +149645,iPhone,1,700,01/22/19 19:22,"117 11th St, San Francisco, CA 94016" +149646,27in 4K Gaming Monitor,1,389.99,01/05/19 11:21,"649 Lincoln St, Boston, MA 02215" +149647,Bose SoundSport Headphones,1,99.99,01/02/19 15:51,"858 Pine St, Los Angeles, CA 90001" +149648,Lightning Charging Cable,1,14.95,01/29/19 19:55,"149 10th St, Austin, TX 73301" +149648,27in 4K Gaming Monitor,1,389.99,01/29/19 19:55,"149 10th St, Austin, TX 73301" +149649,27in FHD Monitor,1,149.99,01/08/19 13:15,"254 14th St, Seattle, WA 98101" +149650,27in FHD Monitor,1,149.99,01/01/19 16:53,"758 Dogwood St, Los Angeles, CA 90001" +149651,27in 4K Gaming Monitor,1,389.99,01/12/19 14:47,"612 Wilson St, Los Angeles, CA 90001" +149652,Wired Headphones,1,11.99,01/22/19 21:28,"273 Church St, San Francisco, CA 94016" +149653,iPhone,1,700,01/29/19 15:05,"360 Jefferson St, New York City, NY 10001" +149654,Lightning Charging Cable,1,14.95,01/07/19 13:18,"636 5th St, Portland, OR 97035" +149655,AAA Batteries (4-pack),1,2.99,01/01/19 20:36,"611 Center St, Atlanta, GA 30301" +149656,Lightning Charging Cable,1,14.95,01/11/19 18:36,"384 Madison St, San Francisco, CA 94016" +149657,Lightning Charging Cable,1,14.95,01/01/19 22:17,"124 Hickory St, San Francisco, CA 94016" +149658,AAA Batteries (4-pack),1,2.99,01/18/19 18:37,"452 12th St, Los Angeles, CA 90001" +149659,Lightning Charging Cable,1,14.95,01/22/19 20:51,"77 9th St, Boston, MA 02215" +149660,ThinkPad Laptop,1,999.99,01/20/19 12:35,"178 5th St, New York City, NY 10001" +149661,Wired Headphones,1,11.99,01/17/19 13:57,"278 Jackson St, Los Angeles, CA 90001" +149662,Lightning Charging Cable,1,14.95,01/13/19 14:10,"847 14th St, Boston, MA 02215" +149663,Google Phone,1,600,01/17/19 16:06,"65 Walnut St, Los Angeles, CA 90001" +149664,Apple Airpods Headphones,1,150,01/02/19 14:37,"925 Johnson St, Seattle, WA 98101" +149665,USB-C Charging Cable,1,11.95,01/20/19 14:24,"129 Cherry St, Dallas, TX 75001" +149666,Apple Airpods Headphones,1,150,01/14/19 08:05,"445 13th St, San Francisco, CA 94016" +149667,Wired Headphones,1,11.99,01/24/19 18:14,"166 Cedar St, Portland, ME 04101" +149668,27in FHD Monitor,1,149.99,01/31/19 21:11,"384 Walnut St, San Francisco, CA 94016" +149669,USB-C Charging Cable,1,11.95,01/09/19 05:49,"633 7th St, Seattle, WA 98101" +149670,AAA Batteries (4-pack),1,2.99,01/18/19 00:43,"831 10th St, Boston, MA 02215" +149671,AAA Batteries (4-pack),1,2.99,01/08/19 13:23,"251 Dogwood St, San Francisco, CA 94016" +149672,AAA Batteries (4-pack),2,2.99,01/20/19 12:18,"139 Madison St, New York City, NY 10001" +149673,Google Phone,1,600,01/12/19 08:07,"802 Jefferson St, San Francisco, CA 94016" +149673,Wired Headphones,1,11.99,01/12/19 08:07,"802 Jefferson St, San Francisco, CA 94016" +149674,Apple Airpods Headphones,1,150,01/13/19 19:12,"380 Main St, San Francisco, CA 94016" +149675,USB-C Charging Cable,1,11.95,01/24/19 19:55,"282 8th St, New York City, NY 10001" +149676,USB-C Charging Cable,1,11.95,01/17/19 13:20,"179 Elm St, Austin, TX 73301" +149677,Apple Airpods Headphones,1,150,01/12/19 01:35,"330 6th St, Atlanta, GA 30301" +149678,Flatscreen TV,1,300,01/09/19 21:57,"283 10th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +149679,34in Ultrawide Monitor,1,379.99,01/16/19 18:59,"695 Pine St, New York City, NY 10001" +149680,Lightning Charging Cable,1,14.95,01/14/19 19:52,"120 2nd St, Los Angeles, CA 90001" +149681,AAA Batteries (4-pack),1,2.99,01/27/19 11:19,"872 Chestnut St, New York City, NY 10001" +149682,USB-C Charging Cable,1,11.95,01/12/19 21:10,"733 Willow St, Portland, OR 97035" +149683,27in 4K Gaming Monitor,1,389.99,01/12/19 12:25,"200 Johnson St, New York City, NY 10001" +149684,27in FHD Monitor,1,149.99,01/31/19 11:22,"622 Maple St, New York City, NY 10001" +149685,AA Batteries (4-pack),2,3.84,01/30/19 17:57,"815 Elm St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +149686,Lightning Charging Cable,1,14.95,01/03/19 23:08,"810 Lakeview St, Los Angeles, CA 90001" +149687,Apple Airpods Headphones,1,150,01/21/19 11:48,"938 River St, Austin, TX 73301" +149688,USB-C Charging Cable,2,11.95,01/24/19 21:54,"60 Cherry St, San Francisco, CA 94016" +149689,Vareebadd Phone,1,400,01/20/19 07:21,"359 Chestnut St, San Francisco, CA 94016" +149689,Wired Headphones,1,11.99,01/20/19 07:21,"359 Chestnut St, San Francisco, CA 94016" +149690,USB-C Charging Cable,2,11.95,01/07/19 08:26,"670 Madison St, San Francisco, CA 94016" +149691,AA Batteries (4-pack),1,3.84,01/21/19 11:26,"899 Willow St, Portland, OR 97035" +149692,Apple Airpods Headphones,1,150,01/13/19 15:55,"596 Hickory St, San Francisco, CA 94016" +149693,Lightning Charging Cable,1,14.95,01/30/19 20:50,"40 10th St, Portland, OR 97035" +149694,Google Phone,1,600,01/14/19 19:21,"600 Park St, Los Angeles, CA 90001" +149694,USB-C Charging Cable,1,11.95,01/14/19 19:21,"600 Park St, Los Angeles, CA 90001" +149695,Bose SoundSport Headphones,1,99.99,01/15/19 18:33,"942 Johnson St, Los Angeles, CA 90001" +149696,USB-C Charging Cable,1,11.95,01/17/19 15:54,"562 9th St, New York City, NY 10001" +149697,Flatscreen TV,1,300,01/08/19 18:59,"464 West St, Boston, MA 02215" +149698,iPhone,1,700,01/21/19 12:13,"166 Sunset St, Boston, MA 02215" +149699,27in FHD Monitor,1,149.99,01/17/19 21:03,"52 10th St, San Francisco, CA 94016" +149700,USB-C Charging Cable,1,11.95,01/23/19 08:06,"287 Washington St, San Francisco, CA 94016" +149701,AAA Batteries (4-pack),2,2.99,01/30/19 22:30,"582 Elm St, New York City, NY 10001" +149702,Lightning Charging Cable,1,14.95,01/04/19 17:22,"147 Wilson St, New York City, NY 10001" +149703,USB-C Charging Cable,1,11.95,01/03/19 10:05,"888 Maple St, New York City, NY 10001" +149704,27in FHD Monitor,1,149.99,01/28/19 20:39,"512 Church St, Los Angeles, CA 90001" +149705,Macbook Pro Laptop,1,1700,01/07/19 15:49,"876 Hickory St, New York City, NY 10001" +149706,27in 4K Gaming Monitor,1,389.99,01/22/19 17:24,"655 13th St, New York City, NY 10001" +149707,AA Batteries (4-pack),1,3.84,01/10/19 23:27,"286 West St, Atlanta, GA 30301" +149708,Wired Headphones,1,11.99,01/20/19 15:39,"151 8th St, Dallas, TX 75001" +149709,Bose SoundSport Headphones,1,99.99,01/05/19 11:04,"783 Meadow St, New York City, NY 10001" +149710,USB-C Charging Cable,1,11.95,01/16/19 11:55,"873 Jackson St, Los Angeles, CA 90001" +149711,AAA Batteries (4-pack),3,2.99,01/17/19 11:15,"224 South St, Los Angeles, CA 90001" +149712,Lightning Charging Cable,1,14.95,01/15/19 14:15,"844 Jackson St, Los Angeles, CA 90001" +149713,27in FHD Monitor,1,149.99,01/08/19 13:48,"227 11th St, Boston, MA 02215" +149714,Macbook Pro Laptop,1,1700,01/22/19 11:17,"654 1st St, Los Angeles, CA 90001" +149715,USB-C Charging Cable,1,11.95,01/02/19 16:28,"206 10th St, Boston, MA 02215" +149716,Bose SoundSport Headphones,1,99.99,01/11/19 11:09,"105 Madison St, San Francisco, CA 94016" +149717,AAA Batteries (4-pack),5,2.99,01/29/19 18:06,"663 Elm St, Boston, MA 02215" +149718,27in 4K Gaming Monitor,1,389.99,01/03/19 00:09,"812 11th St, San Francisco, CA 94016" +149719,20in Monitor,1,109.99,01/07/19 11:18,"27 West St, New York City, NY 10001" +149720,iPhone,1,700,01/15/19 12:04,"399 Chestnut St, New York City, NY 10001" +149721,34in Ultrawide Monitor,1,379.99,01/08/19 18:54,"95 Madison St, New York City, NY 10001" +149722,Vareebadd Phone,1,400,01/19/19 23:48,"633 Hickory St, Dallas, TX 75001" +149722,USB-C Charging Cable,1,11.95,01/19/19 23:48,"633 Hickory St, Dallas, TX 75001" +149722,Wired Headphones,1,11.99,01/19/19 23:48,"633 Hickory St, Dallas, TX 75001" +149723,Bose SoundSport Headphones,1,99.99,01/21/19 22:11,"340 1st St, San Francisco, CA 94016" +149724,USB-C Charging Cable,1,11.95,01/17/19 12:24,"569 13th St, San Francisco, CA 94016" +149725,AA Batteries (4-pack),1,3.84,01/02/19 08:26,"50 Cherry St, Portland, OR 97035" +149726,iPhone,1,700,01/17/19 13:03,"55 Ridge St, Boston, MA 02215" +149727,Lightning Charging Cable,1,14.95,01/01/19 19:13,"129 Church St, Dallas, TX 75001" +149728,Lightning Charging Cable,1,14.95,01/02/19 13:56,"699 Spruce St, Los Angeles, CA 90001" +149729,iPhone,1,700,01/22/19 12:50,"449 10th St, Austin, TX 73301" +149730,Macbook Pro Laptop,1,1700,01/23/19 16:09,"234 Hill St, New York City, NY 10001" +149731,Google Phone,1,600,01/02/19 13:12,"840 5th St, New York City, NY 10001" +149732,Apple Airpods Headphones,1,150,01/03/19 00:54,"538 2nd St, Boston, MA 02215" +149733,Wired Headphones,1,11.99,01/06/19 22:07,"908 Center St, New York City, NY 10001" +149734,Bose SoundSport Headphones,1,99.99,01/02/19 15:05,"335 Cherry St, Boston, MA 02215" +149735,Apple Airpods Headphones,1,150,01/17/19 22:58,"490 Pine St, San Francisco, CA 94016" +149736,USB-C Charging Cable,1,11.95,01/17/19 18:01,"395 7th St, Los Angeles, CA 90001" +149737,34in Ultrawide Monitor,1,379.99,01/01/19 15:09,"531 5th St, San Francisco, CA 94016" +149738,USB-C Charging Cable,1,11.95,01/18/19 13:13,"993 7th St, Seattle, WA 98101" +149739,34in Ultrawide Monitor,1,379.99,01/22/19 11:28,"938 Cherry St, San Francisco, CA 94016" +149740,AAA Batteries (4-pack),1,2.99,01/18/19 05:23,"767 Sunset St, Portland, OR 97035" +149741,27in FHD Monitor,1,149.99,01/11/19 13:56,"395 North St, San Francisco, CA 94016" +149742,USB-C Charging Cable,1,11.95,01/27/19 10:48,"600 West St, New York City, NY 10001" +149743,iPhone,1,700,01/07/19 12:04,"14 Maple St, Seattle, WA 98101" +149744,Apple Airpods Headphones,1,150,01/22/19 12:42,"107 South St, Boston, MA 02215" +149745,Apple Airpods Headphones,1,150,01/03/19 21:08,"594 Maple St, New York City, NY 10001" +149746,USB-C Charging Cable,1,11.95,01/12/19 11:18,"168 Chestnut St, Los Angeles, CA 90001" +149747,ThinkPad Laptop,1,999.99,01/26/19 10:13,"994 11th St, Dallas, TX 75001" +149748,Wired Headphones,1,11.99,01/07/19 15:39,"545 Adams St, Boston, MA 02215" +149749,USB-C Charging Cable,1,11.95,01/17/19 22:55,"800 Lakeview St, San Francisco, CA 94016" +149750,Wired Headphones,1,11.99,01/05/19 10:21,"388 Washington St, San Francisco, CA 94016" +149751,USB-C Charging Cable,1,11.95,01/11/19 20:29,"420 2nd St, New York City, NY 10001" +149752,20in Monitor,1,109.99,01/16/19 16:16,"83 Willow St, Portland, OR 97035" +149753,Bose SoundSport Headphones,1,99.99,01/09/19 11:18,"317 Elm St, Los Angeles, CA 90001" +149754,34in Ultrawide Monitor,1,379.99,01/05/19 10:45,"231 2nd St, San Francisco, CA 94016" +149755,Wired Headphones,1,11.99,01/19/19 18:58,"881 Adams St, Los Angeles, CA 90001" +149756,Apple Airpods Headphones,1,150,01/16/19 19:58,"375 Dogwood St, Atlanta, GA 30301" +149757,AA Batteries (4-pack),1,3.84,01/24/19 18:04,"689 5th St, Los Angeles, CA 90001" +149758,Google Phone,1,600,01/10/19 10:19,"104 Madison St, Seattle, WA 98101" +149759,Wired Headphones,1,11.99,01/12/19 08:02,"494 Madison St, Los Angeles, CA 90001" +149760,USB-C Charging Cable,1,11.95,01/29/19 10:52,"353 4th St, Dallas, TX 75001" +149761,Apple Airpods Headphones,1,150,01/30/19 15:36,"48 Lake St, Boston, MA 02215" +149762,27in FHD Monitor,2,149.99,01/09/19 07:26,"268 Madison St, Los Angeles, CA 90001" +149763,34in Ultrawide Monitor,1,379.99,01/20/19 14:55,"864 Chestnut St, San Francisco, CA 94016" +149764,Bose SoundSport Headphones,1,99.99,01/01/19 09:23,"907 Madison St, New York City, NY 10001" +149765,Wired Headphones,1,11.99,01/14/19 14:29,"267 Washington St, Portland, ME 04101" +149766,AAA Batteries (4-pack),1,2.99,01/14/19 09:18,"309 1st St, Boston, MA 02215" +149767,34in Ultrawide Monitor,1,379.99,01/24/19 15:33,"165 Wilson St, Portland, OR 97035" +149768,AA Batteries (4-pack),1,3.84,01/03/19 13:44,"406 Park St, San Francisco, CA 94016" +149769,AAA Batteries (4-pack),2,2.99,01/01/19 21:52,"16 Center St, Atlanta, GA 30301" +149769,AAA Batteries (4-pack),1,2.99,01/01/19 21:52,"16 Center St, Atlanta, GA 30301" +149770,Google Phone,1,600,01/02/19 10:00,"451 Dogwood St, Portland, ME 04101" +149771,AA Batteries (4-pack),1,3.84,01/27/19 14:21,"304 4th St, San Francisco, CA 94016" +149772,Lightning Charging Cable,1,14.95,01/11/19 12:08,"832 Johnson St, Dallas, TX 75001" +149773,iPhone,1,700,01/12/19 00:48,"215 8th St, San Francisco, CA 94016" +149774,Apple Airpods Headphones,1,150,01/10/19 00:24,"187 14th St, Portland, OR 97035" +149775,34in Ultrawide Monitor,1,379.99,01/04/19 12:15,"236 Jefferson St, New York City, NY 10001" +149776,USB-C Charging Cable,1,11.95,01/27/19 00:18,"492 Cedar St, Dallas, TX 75001" +149777,AAA Batteries (4-pack),2,2.99,01/25/19 18:34,"762 Elm St, New York City, NY 10001" +149778,AA Batteries (4-pack),2,3.84,01/17/19 09:40,"394 Walnut St, Los Angeles, CA 90001" +149779,Wired Headphones,1,11.99,01/22/19 18:24,"887 11th St, Los Angeles, CA 90001" +149780,Wired Headphones,1,11.99,01/17/19 18:58,"40 Center St, Dallas, TX 75001" +149781,Wired Headphones,1,11.99,01/19/19 01:01,"828 Spruce St, Dallas, TX 75001" +149782,27in FHD Monitor,1,149.99,01/25/19 09:49,"315 7th St, Los Angeles, CA 90001" +149783,iPhone,1,700,01/06/19 15:31,"669 Main St, Los Angeles, CA 90001" +149784,AAA Batteries (4-pack),1,2.99,01/01/19 12:45,"512 Adams St, New York City, NY 10001" +149785,iPhone,1,700,01/15/19 16:39,"90 Pine St, Los Angeles, CA 90001" +149785,Lightning Charging Cable,1,14.95,01/15/19 16:39,"90 Pine St, Los Angeles, CA 90001" +149786,Lightning Charging Cable,1,14.95,01/30/19 07:56,"656 South St, New York City, NY 10001" +149787,ThinkPad Laptop,1,999.99,01/31/19 13:08,"290 Wilson St, Boston, MA 02215" +149788,Wired Headphones,1,11.99,01/08/19 15:40,"688 Church St, San Francisco, CA 94016" +149789,AAA Batteries (4-pack),1,2.99,01/12/19 12:45,"114 Main St, New York City, NY 10001" +149790,AAA Batteries (4-pack),2,2.99,01/31/19 12:39,"475 13th St, San Francisco, CA 94016" +149791,20in Monitor,1,109.99,01/02/19 13:50,"381 Church St, Atlanta, GA 30301" +149792,Vareebadd Phone,1,400,01/03/19 10:01,"483 Lincoln St, Atlanta, GA 30301" +149793,34in Ultrawide Monitor,1,379.99,01/15/19 20:40,"680 Jefferson St, New York City, NY 10001" +149794,AAA Batteries (4-pack),2,2.99,01/26/19 12:06,"919 Walnut St, San Francisco, CA 94016" +149795,AA Batteries (4-pack),2,3.84,01/19/19 15:52,"481 Elm St, New York City, NY 10001" +149796,27in FHD Monitor,1,149.99,01/07/19 16:30,"29 North St, Los Angeles, CA 90001" +149797,Lightning Charging Cable,1,14.95,01/14/19 20:21,"899 Hickory St, Atlanta, GA 30301" +149798,20in Monitor,1,109.99,01/02/19 13:21,"638 West St, Atlanta, GA 30301" +149799,AAA Batteries (4-pack),2,2.99,01/03/19 11:43,"540 Jackson St, San Francisco, CA 94016" +149800,AAA Batteries (4-pack),1,2.99,01/15/19 18:32,"267 Willow St, Los Angeles, CA 90001" +149801,Google Phone,1,600,01/23/19 16:04,"256 5th St, Atlanta, GA 30301" +149801,Wired Headphones,1,11.99,01/23/19 16:04,"256 5th St, Atlanta, GA 30301" +149802,iPhone,1,700,01/18/19 17:37,"949 Adams St, Los Angeles, CA 90001" +149803,AA Batteries (4-pack),1,3.84,01/08/19 16:58,"34 Ridge St, San Francisco, CA 94016" +149804,AA Batteries (4-pack),2,3.84,01/14/19 12:34,"192 Elm St, Seattle, WA 98101" +149805,AA Batteries (4-pack),2,3.84,01/22/19 11:40,"558 West St, Los Angeles, CA 90001" +149806,Lightning Charging Cable,1,14.95,01/23/19 16:58,"965 Washington St, San Francisco, CA 94016" +149807,AAA Batteries (4-pack),2,2.99,01/24/19 22:00,"241 Lincoln St, Seattle, WA 98101" +149808,AA Batteries (4-pack),2,3.84,01/30/19 10:36,"530 Jefferson St, Los Angeles, CA 90001" +149809,Bose SoundSport Headphones,1,99.99,01/09/19 20:21,"723 Chestnut St, Austin, TX 73301" +149810,Lightning Charging Cable,1,14.95,01/03/19 08:27,"404 Highland St, Atlanta, GA 30301" +149811,Macbook Pro Laptop,1,1700,01/02/19 14:52,"158 4th St, Atlanta, GA 30301" +149812,iPhone,1,700,01/09/19 12:37,"602 Cedar St, San Francisco, CA 94016" +149812,Lightning Charging Cable,1,14.95,01/09/19 12:37,"602 Cedar St, San Francisco, CA 94016" +149813,USB-C Charging Cable,2,11.95,01/21/19 16:13,"725 Jackson St, Los Angeles, CA 90001" +149814,AAA Batteries (4-pack),2,2.99,01/30/19 12:41,"546 13th St, Seattle, WA 98101" +149815,Lightning Charging Cable,1,14.95,01/25/19 01:11,"598 Jackson St, Boston, MA 02215" +149816,AAA Batteries (4-pack),1,2.99,01/16/19 09:27,"923 13th St, San Francisco, CA 94016" +149817,27in FHD Monitor,1,149.99,01/14/19 16:50,"343 Willow St, Los Angeles, CA 90001" +149818,USB-C Charging Cable,1,11.95,01/08/19 17:49,"759 Hill St, Atlanta, GA 30301" +149819,Lightning Charging Cable,1,14.95,01/29/19 19:33,"322 Church St, San Francisco, CA 94016" +149820,AAA Batteries (4-pack),1,2.99,01/30/19 23:12,"938 9th St, Atlanta, GA 30301" +149821,USB-C Charging Cable,1,11.95,01/02/19 01:00,"925 Washington St, San Francisco, CA 94016" +149822,ThinkPad Laptop,1,999.99,01/17/19 08:31,"691 Willow St, Atlanta, GA 30301" +149823,Wired Headphones,1,11.99,01/10/19 09:15,"998 Cherry St, Boston, MA 02215" +149824,Google Phone,1,600,01/15/19 20:44,"296 Washington St, Portland, OR 97035" +149824,USB-C Charging Cable,1,11.95,01/15/19 20:44,"296 Washington St, Portland, OR 97035" +149825,AAA Batteries (4-pack),1,2.99,01/01/19 21:06,"746 Cedar St, New York City, NY 10001" +149826,AAA Batteries (4-pack),1,2.99,01/18/19 01:10,"878 West St, Portland, ME 04101" +149827,AA Batteries (4-pack),1,3.84,01/03/19 22:18,"749 Dogwood St, Boston, MA 02215" +149828,ThinkPad Laptop,1,999.99,01/14/19 13:34,"686 Cherry St, San Francisco, CA 94016" +149829,27in 4K Gaming Monitor,1,389.99,01/10/19 14:08,"888 6th St, Boston, MA 02215" +149830,Apple Airpods Headphones,1,150,01/25/19 14:12,"275 Jackson St, Boston, MA 02215" +149831,AA Batteries (4-pack),1,3.84,01/19/19 21:09,"329 South St, Austin, TX 73301" +149832,Lightning Charging Cable,1,14.95,01/14/19 09:40,"491 Sunset St, Los Angeles, CA 90001" +149833,USB-C Charging Cable,1,11.95,01/19/19 20:31,"283 Madison St, Boston, MA 02215" +149834,AAA Batteries (4-pack),1,2.99,01/13/19 17:42,"926 Cedar St, Los Angeles, CA 90001" +149835,AA Batteries (4-pack),1,3.84,01/07/19 06:38,"724 7th St, Seattle, WA 98101" +149836,Wired Headphones,1,11.99,01/18/19 22:48,"98 2nd St, Los Angeles, CA 90001" +149837,AAA Batteries (4-pack),2,2.99,01/14/19 15:53,"216 South St, Seattle, WA 98101" +149838,Vareebadd Phone,1,400,01/17/19 16:55,"299 Madison St, San Francisco, CA 94016" +149839,Lightning Charging Cable,1,14.95,01/02/19 14:31,"942 Elm St, Atlanta, GA 30301" +149840,Lightning Charging Cable,1,14.95,01/17/19 12:34,"275 Center St, Seattle, WA 98101" +149841,Bose SoundSport Headphones,1,99.99,01/17/19 12:15,"108 6th St, New York City, NY 10001" +149842,USB-C Charging Cable,1,11.95,01/27/19 21:41,"957 Spruce St, Seattle, WA 98101" +149843,Wired Headphones,1,11.99,01/03/19 18:13,"520 Park St, Dallas, TX 75001" +149844,Google Phone,1,600,01/30/19 17:56,"753 Dogwood St, San Francisco, CA 94016" +149845,27in FHD Monitor,1,149.99,01/02/19 17:54,"911 Maple St, Dallas, TX 75001" +149846,AA Batteries (4-pack),1,3.84,01/14/19 15:52,"339 7th St, Dallas, TX 75001" +149847,Lightning Charging Cable,1,14.95,01/24/19 10:02,"971 4th St, San Francisco, CA 94016" +149848,AAA Batteries (4-pack),2,2.99,01/10/19 07:41,"779 9th St, Los Angeles, CA 90001" +149849,Wired Headphones,1,11.99,01/19/19 16:59,"450 West St, Los Angeles, CA 90001" +149850,27in 4K Gaming Monitor,1,389.99,01/09/19 12:28,"669 Sunset St, Dallas, TX 75001" +149851,AA Batteries (4-pack),2,3.84,01/03/19 20:26,"161 Jackson St, Boston, MA 02215" +149852,Bose SoundSport Headphones,1,99.99,01/27/19 10:36,"951 Walnut St, Los Angeles, CA 90001" +149853,Wired Headphones,1,11.99,01/02/19 08:58,"740 Center St, Los Angeles, CA 90001" +149854,20in Monitor,1,109.99,01/02/19 14:11,"477 Johnson St, San Francisco, CA 94016" +149855,20in Monitor,1,109.99,01/22/19 21:31,"768 South St, San Francisco, CA 94016" +149856,27in FHD Monitor,1,149.99,01/22/19 20:53,"494 Madison St, Atlanta, GA 30301" +149857,Macbook Pro Laptop,1,1700,01/10/19 12:12,"905 6th St, Los Angeles, CA 90001" +149858,34in Ultrawide Monitor,1,379.99,01/25/19 17:53,"395 Hickory St, Portland, OR 97035" +149859,AAA Batteries (4-pack),2,2.99,01/15/19 12:57,"441 Park St, Los Angeles, CA 90001" +149860,Apple Airpods Headphones,1,150,01/08/19 11:29,"45 6th St, Los Angeles, CA 90001" +149861,20in Monitor,1,109.99,01/13/19 22:12,"194 Hill St, San Francisco, CA 94016" +149862,AAA Batteries (4-pack),1,2.99,01/16/19 09:05,"31 Park St, New York City, NY 10001" +149863,Bose SoundSport Headphones,1,99.99,01/12/19 19:51,"645 Hill St, Los Angeles, CA 90001" +149864,iPhone,1,700,01/22/19 10:45,"719 Cherry St, Austin, TX 73301" +149865,27in FHD Monitor,1,149.99,01/28/19 13:11,"59 4th St, Los Angeles, CA 90001" +149866,Wired Headphones,1,11.99,01/12/19 19:57,"197 Highland St, San Francisco, CA 94016" +149867,AAA Batteries (4-pack),1,2.99,01/23/19 20:49,"513 4th St, New York City, NY 10001" +149868,Wired Headphones,1,11.99,01/09/19 23:28,"910 9th St, Boston, MA 02215" +149869,20in Monitor,1,109.99,01/20/19 12:36,"569 12th St, Dallas, TX 75001" +149870,Lightning Charging Cable,1,14.95,01/09/19 09:39,"666 Meadow St, Atlanta, GA 30301" +149871,AAA Batteries (4-pack),1,2.99,01/25/19 21:24,"726 Lakeview St, Los Angeles, CA 90001" +149872,AA Batteries (4-pack),2,3.84,01/13/19 10:32,"941 Washington St, New York City, NY 10001" +149873,27in FHD Monitor,1,149.99,01/22/19 22:34,"809 10th St, San Francisco, CA 94016" +149873,20in Monitor,1,109.99,01/22/19 22:34,"809 10th St, San Francisco, CA 94016" +149874,AAA Batteries (4-pack),1,2.99,01/13/19 20:21,"911 Jefferson St, New York City, NY 10001" +149875,Wired Headphones,1,11.99,01/05/19 19:59,"755 14th St, San Francisco, CA 94016" +149876,Lightning Charging Cable,1,14.95,01/23/19 07:39,"112 Willow St, Los Angeles, CA 90001" +149877,27in 4K Gaming Monitor,1,389.99,01/22/19 04:55,"257 Hickory St, San Francisco, CA 94016" +149878,27in 4K Gaming Monitor,1,389.99,01/27/19 20:50,"864 11th St, Atlanta, GA 30301" +149879,34in Ultrawide Monitor,1,379.99,01/10/19 10:32,"989 11th St, Los Angeles, CA 90001" +149880,USB-C Charging Cable,1,11.95,01/27/19 20:26,"901 Sunset St, Los Angeles, CA 90001" +149881,Wired Headphones,1,11.99,01/16/19 09:12,"868 9th St, Los Angeles, CA 90001" +149882,USB-C Charging Cable,1,11.95,01/23/19 12:47,"343 Lincoln St, San Francisco, CA 94016" +149883,Apple Airpods Headphones,1,150,01/13/19 18:37,"966 Church St, San Francisco, CA 94016" +149884,Macbook Pro Laptop,1,1700,01/13/19 00:41,"854 Washington St, Boston, MA 02215" +149885,Apple Airpods Headphones,1,150,01/03/19 22:03,"206 Hill St, New York City, NY 10001" +149886,34in Ultrawide Monitor,1,379.99,01/05/19 13:58,"593 North St, Los Angeles, CA 90001" +149887,Bose SoundSport Headphones,1,99.99,01/05/19 12:18,"571 Jefferson St, San Francisco, CA 94016" +149888,USB-C Charging Cable,1,11.95,01/19/19 15:00,"752 Walnut St, San Francisco, CA 94016" +149889,Apple Airpods Headphones,1,150,01/30/19 08:54,"634 Walnut St, Los Angeles, CA 90001" +149890,AA Batteries (4-pack),1,3.84,01/10/19 09:25,"894 5th St, New York City, NY 10001" +149891,34in Ultrawide Monitor,1,379.99,01/22/19 18:05,"809 6th St, Seattle, WA 98101" +149892,Lightning Charging Cable,1,14.95,01/13/19 21:22,"132 Lake St, New York City, NY 10001" +149893,Apple Airpods Headphones,1,150,01/18/19 12:28,"712 Wilson St, Seattle, WA 98101" +149894,iPhone,1,700,01/26/19 18:41,"253 Madison St, Los Angeles, CA 90001" +149895,ThinkPad Laptop,1,999.99,01/24/19 18:05,"338 6th St, Boston, MA 02215" +149896,34in Ultrawide Monitor,1,379.99,01/16/19 12:58,"408 Lake St, Los Angeles, CA 90001" +149897,AA Batteries (4-pack),1,3.84,01/06/19 01:42,"158 6th St, Boston, MA 02215" +149898,34in Ultrawide Monitor,1,379.99,01/11/19 23:27,"11 Church St, San Francisco, CA 94016" +149899,Wired Headphones,1,11.99,01/06/19 03:11,"27 6th St, Austin, TX 73301" +149900,Lightning Charging Cable,1,14.95,01/11/19 11:49,"603 Ridge St, Dallas, TX 75001" +149901,Lightning Charging Cable,1,14.95,01/18/19 10:02,"864 Cherry St, San Francisco, CA 94016" +149902,AA Batteries (4-pack),2,3.84,01/12/19 12:41,"927 2nd St, San Francisco, CA 94016" +149903,AAA Batteries (4-pack),4,2.99,01/01/19 23:27,"271 Spruce St, San Francisco, CA 94016" +149904,Bose SoundSport Headphones,1,99.99,01/09/19 19:18,"452 Walnut St, San Francisco, CA 94016" +149905,AAA Batteries (4-pack),3,2.99,01/27/19 20:42,"892 13th St, San Francisco, CA 94016" +149906,Macbook Pro Laptop,1,1700,01/09/19 17:04,"708 Center St, San Francisco, CA 94016" +149907,Wired Headphones,1,11.99,01/27/19 18:21,"462 Ridge St, Seattle, WA 98101" +149908,Apple Airpods Headphones,1,150,01/22/19 20:51,"390 Church St, San Francisco, CA 94016" +149909,Lightning Charging Cable,1,14.95,01/17/19 16:01,"24 9th St, San Francisco, CA 94016" +149910,20in Monitor,1,109.99,01/24/19 17:55,"185 Chestnut St, Portland, OR 97035" +149911,Bose SoundSport Headphones,1,99.99,01/26/19 21:11,"147 Elm St, San Francisco, CA 94016" +149912,LG Washing Machine,1,600.0,01/05/19 10:33,"410 River St, Portland, OR 97035" +149913,AAA Batteries (4-pack),1,2.99,01/13/19 19:57,"934 13th St, Atlanta, GA 30301" +149914,Wired Headphones,1,11.99,01/12/19 09:14,"367 Spruce St, Dallas, TX 75001" +149915,AA Batteries (4-pack),1,3.84,01/13/19 14:37,"970 Pine St, San Francisco, CA 94016" +149916,27in FHD Monitor,1,149.99,01/26/19 22:50,"735 9th St, Los Angeles, CA 90001" +149917,Apple Airpods Headphones,1,150,01/17/19 14:46,"486 6th St, Seattle, WA 98101" +149918,Google Phone,1,600,01/14/19 11:13,"553 North St, Dallas, TX 75001" +149919,AAA Batteries (4-pack),2,2.99,01/17/19 16:29,"95 Jackson St, Atlanta, GA 30301" +149920,Wired Headphones,1,11.99,01/09/19 18:51,"750 12th St, San Francisco, CA 94016" +149921,AA Batteries (4-pack),1,3.84,01/26/19 13:15,"417 Wilson St, New York City, NY 10001" +149922,AA Batteries (4-pack),1,3.84,01/05/19 22:19,"516 River St, Los Angeles, CA 90001" +149923,20in Monitor,1,109.99,01/28/19 17:06,"979 Meadow St, San Francisco, CA 94016" +149924,AA Batteries (4-pack),1,3.84,01/19/19 22:20,"402 Chestnut St, Los Angeles, CA 90001" +149925,ThinkPad Laptop,1,999.99,01/16/19 14:06,"4 1st St, San Francisco, CA 94016" +149926,27in FHD Monitor,1,149.99,01/22/19 00:54,"665 6th St, San Francisco, CA 94016" +149927,Lightning Charging Cable,1,14.95,01/03/19 11:47,"586 Dogwood St, Los Angeles, CA 90001" +149928,iPhone,1,700,01/01/19 16:00,"914 Dogwood St, Dallas, TX 75001" +149929,Bose SoundSport Headphones,1,99.99,01/30/19 19:09,"739 Wilson St, Los Angeles, CA 90001" +149930,Bose SoundSport Headphones,1,99.99,01/04/19 07:57,"972 2nd St, Los Angeles, CA 90001" +149931,AAA Batteries (4-pack),2,2.99,01/07/19 09:32,"948 North St, Atlanta, GA 30301" +149932,Apple Airpods Headphones,1,150,01/11/19 19:47,"823 Meadow St, Los Angeles, CA 90001" +149933,Lightning Charging Cable,1,14.95,01/30/19 18:53,"475 Elm St, San Francisco, CA 94016" +149934,Vareebadd Phone,1,400,01/18/19 16:27,"637 4th St, San Francisco, CA 94016" +149934,Wired Headphones,1,11.99,01/18/19 16:27,"637 4th St, San Francisco, CA 94016" +149935,AAA Batteries (4-pack),1,2.99,01/27/19 15:38,"250 Hill St, Los Angeles, CA 90001" +149936,27in 4K Gaming Monitor,1,389.99,01/25/19 17:46,"764 12th St, Austin, TX 73301" +149937,Google Phone,1,600,01/16/19 13:42,"799 8th St, San Francisco, CA 94016" +149938,AA Batteries (4-pack),1,3.84,01/09/19 10:37,"333 Lake St, New York City, NY 10001" +149939,USB-C Charging Cable,2,11.95,01/21/19 12:53,"35 Jefferson St, San Francisco, CA 94016" +149940,Wired Headphones,1,11.99,01/14/19 18:08,"340 Main St, Boston, MA 02215" +149941,Lightning Charging Cable,1,14.95,01/27/19 10:27,"942 Jefferson St, San Francisco, CA 94016" +149942,Lightning Charging Cable,2,14.95,01/30/19 09:13,"544 14th St, Austin, TX 73301" +149943,AAA Batteries (4-pack),1,2.99,01/27/19 21:36,"351 Cherry St, San Francisco, CA 94016" +149944,USB-C Charging Cable,1,11.95,01/01/19 18:16,"912 11th St, San Francisco, CA 94016" +149945,20in Monitor,1,109.99,01/09/19 18:47,"174 South St, Dallas, TX 75001" +149946,Apple Airpods Headphones,1,150,01/31/19 06:52,"623 11th St, San Francisco, CA 94016" +149947,27in 4K Gaming Monitor,1,389.99,01/06/19 13:07,"662 Spruce St, Los Angeles, CA 90001" +149948,Lightning Charging Cable,1,14.95,01/22/19 13:21,"361 Church St, San Francisco, CA 94016" +149949,Bose SoundSport Headphones,1,99.99,01/30/19 13:21,"609 Park St, Los Angeles, CA 90001" +149950,AAA Batteries (4-pack),1,2.99,01/12/19 21:46,"485 Pine St, Boston, MA 02215" +149951,Apple Airpods Headphones,1,150,01/12/19 18:36,"118 11th St, New York City, NY 10001" +149952,USB-C Charging Cable,1,11.95,01/30/19 02:03,"467 Hill St, Los Angeles, CA 90001" +149953,AA Batteries (4-pack),1,3.84,01/21/19 08:24,"673 Pine St, Boston, MA 02215" +149954,USB-C Charging Cable,1,11.95,01/16/19 20:19,"557 Church St, Los Angeles, CA 90001" +149955,27in FHD Monitor,1,149.99,01/17/19 10:24,"372 10th St, Dallas, TX 75001" +149956,Apple Airpods Headphones,1,150,01/29/19 16:56,"110 6th St, Boston, MA 02215" +149957,AA Batteries (4-pack),1,3.84,01/25/19 09:35,"338 Willow St, New York City, NY 10001" +149958,AAA Batteries (4-pack),1,2.99,01/14/19 20:35,"22 Sunset St, Seattle, WA 98101" +149959,34in Ultrawide Monitor,1,379.99,01/05/19 20:45,"677 11th St, San Francisco, CA 94016" +149960,USB-C Charging Cable,1,11.95,01/19/19 21:11,"924 5th St, Boston, MA 02215" +149961,AA Batteries (4-pack),1,3.84,01/01/19 15:43,"406 Hickory St, Atlanta, GA 30301" +149962,Lightning Charging Cable,1,14.95,01/01/19 22:33,"484 Hill St, Atlanta, GA 30301" +149963,Apple Airpods Headphones,1,150,01/02/19 21:13,"189 5th St, Austin, TX 73301" +149964,AA Batteries (4-pack),1,3.84,01/03/19 11:06,"463 Cherry St, Boston, MA 02215" +149965,AA Batteries (4-pack),2,3.84,01/15/19 10:05,"46 10th St, New York City, NY 10001" +149966,Flatscreen TV,1,300,01/23/19 15:48,"152 11th St, Seattle, WA 98101" +149967,AA Batteries (4-pack),1,3.84,01/03/19 09:09,"578 Forest St, San Francisco, CA 94016" +149968,Vareebadd Phone,1,400,01/18/19 11:00,"134 8th St, New York City, NY 10001" +149969,USB-C Charging Cable,1,11.95,01/25/19 11:14,"907 Dogwood St, San Francisco, CA 94016" +149970,Wired Headphones,1,11.99,01/12/19 08:25,"465 Cherry St, Seattle, WA 98101" +149971,Wired Headphones,1,11.99,01/10/19 23:27,"632 Jackson St, New York City, NY 10001" +149972,AAA Batteries (4-pack),2,2.99,01/13/19 09:36,"563 Lake St, Atlanta, GA 30301" +149973,Flatscreen TV,1,300,01/28/19 11:54,"965 13th St, San Francisco, CA 94016" +149974,Lightning Charging Cable,1,14.95,01/27/19 16:47,"371 Elm St, Dallas, TX 75001" +149975,USB-C Charging Cable,1,11.95,01/26/19 14:59,"223 Forest St, San Francisco, CA 94016" +149976,iPhone,1,700,01/27/19 20:59,"41 Highland St, San Francisco, CA 94016" +149977,Bose SoundSport Headphones,1,99.99,01/27/19 04:53,"222 13th St, Atlanta, GA 30301" +149978,USB-C Charging Cable,1,11.95,01/26/19 17:20,"338 Maple St, New York City, NY 10001" +149979,Bose SoundSport Headphones,1,99.99,01/15/19 12:06,"822 Madison St, San Francisco, CA 94016" +149980,AA Batteries (4-pack),1,3.84,01/20/19 17:30,"717 Forest St, San Francisco, CA 94016" +149981,AAA Batteries (4-pack),2,2.99,01/20/19 23:27,"715 Madison St, New York City, NY 10001" +149982,Apple Airpods Headphones,1,150,01/25/19 18:51,"311 Sunset St, Portland, ME 04101" +149983,27in 4K Gaming Monitor,1,389.99,01/03/19 20:15,"968 Hickory St, New York City, NY 10001" +149984,34in Ultrawide Monitor,1,379.99,01/06/19 15:21,"635 North St, Atlanta, GA 30301" +149985,AAA Batteries (4-pack),1,2.99,01/01/19 17:48,"782 10th St, San Francisco, CA 94016" +149986,Wired Headphones,1,11.99,01/13/19 05:35,"896 5th St, Seattle, WA 98101" +149987,USB-C Charging Cable,1,11.95,01/21/19 07:08,"738 Jackson St, Los Angeles, CA 90001" +149988,AA Batteries (4-pack),1,3.84,01/04/19 18:56,"194 Cherry St, Los Angeles, CA 90001" +149989,Apple Airpods Headphones,1,150,01/24/19 20:14,"94 Pine St, Portland, OR 97035" +149990,Wired Headphones,1,11.99,01/23/19 09:09,"932 Washington St, Austin, TX 73301" +149991,Bose SoundSport Headphones,1,99.99,01/31/19 11:51,"904 River St, Dallas, TX 75001" +149992,Lightning Charging Cable,1,14.95,01/20/19 09:23,"60 River St, Dallas, TX 75001" +149993,AAA Batteries (4-pack),1,2.99,01/11/19 10:19,"730 Church St, Dallas, TX 75001" +149994,USB-C Charging Cable,1,11.95,01/16/19 22:09,"911 Johnson St, San Francisco, CA 94016" +149995,Lightning Charging Cable,1,14.95,01/29/19 16:14,"541 Highland St, San Francisco, CA 94016" +149996,20in Monitor,1,109.99,01/19/19 10:14,"475 Jefferson St, New York City, NY 10001" +149997,ThinkPad Laptop,1,999.99,01/06/19 17:40,"740 12th St, New York City, NY 10001" +149998,Wired Headphones,1,11.99,01/26/19 11:59,"613 Washington St, San Francisco, CA 94016" +149999,Wired Headphones,1,11.99,01/26/19 09:46,"714 Willow St, Los Angeles, CA 90001" +150000,USB-C Charging Cable,1,11.95,01/16/19 11:54,"639 Johnson St, San Francisco, CA 94016" +150001,AAA Batteries (4-pack),4,2.99,01/11/19 01:21,"433 Willow St, Boston, MA 02215" +150002,Apple Airpods Headphones,1,150,01/25/19 10:17,"511 South St, Los Angeles, CA 90001" +150003,iPhone,1,700,01/22/19 13:36,"925 South St, Los Angeles, CA 90001" +150004,Apple Airpods Headphones,1,150,01/31/19 19:59,"132 2nd St, New York City, NY 10001" +150005,AAA Batteries (4-pack),1,2.99,01/20/19 21:08,"20 Spruce St, San Francisco, CA 94016" +150006,Google Phone,1,600,01/05/19 12:34,"626 West St, San Francisco, CA 94016" +150007,AA Batteries (4-pack),1,3.84,01/30/19 12:11,"818 Sunset St, San Francisco, CA 94016" +150008,AA Batteries (4-pack),1,3.84,01/20/19 21:39,"62 Hill St, New York City, NY 10001" +150009,Wired Headphones,1,11.99,01/18/19 01:45,"275 Hickory St, Portland, OR 97035" +150010,USB-C Charging Cable,1,11.95,01/02/19 09:32,"776 Adams St, Los Angeles, CA 90001" +150011,Wired Headphones,1,11.99,01/01/19 15:34,"433 Main St, San Francisco, CA 94016" +150012,Bose SoundSport Headphones,1,99.99,01/19/19 13:33,"507 Wilson St, Seattle, WA 98101" +150013,AAA Batteries (4-pack),1,2.99,01/22/19 21:12,"238 14th St, Portland, OR 97035" +150014,Apple Airpods Headphones,1,150,01/19/19 11:50,"959 Jackson St, Portland, OR 97035" +150015,AA Batteries (4-pack),1,3.84,01/27/19 19:41,"832 1st St, Boston, MA 02215" +150016,AAA Batteries (4-pack),1,2.99,01/15/19 14:55,"255 Lincoln St, Los Angeles, CA 90001" +150017,Wired Headphones,1,11.99,01/29/19 12:51,"810 River St, Austin, TX 73301" +150018,Google Phone,1,600,01/02/19 16:44,"681 South St, Boston, MA 02215" +150019,Lightning Charging Cable,1,14.95,01/08/19 19:32,"110 Maple St, Atlanta, GA 30301" +150020,Wired Headphones,1,11.99,01/16/19 18:00,"694 Jackson St, Seattle, WA 98101" +150021,AAA Batteries (4-pack),1,2.99,01/04/19 16:52,"402 6th St, Boston, MA 02215" +150022,Wired Headphones,1,11.99,01/15/19 14:18,"225 Chestnut St, San Francisco, CA 94016" +150022,Vareebadd Phone,1,400,01/15/19 14:18,"225 Chestnut St, San Francisco, CA 94016" +150023,Wired Headphones,1,11.99,01/28/19 11:21,"102 Lake St, Dallas, TX 75001" +150024,AA Batteries (4-pack),3,3.84,01/29/19 18:07,"208 14th St, Portland, ME 04101" +150025,AAA Batteries (4-pack),1,2.99,01/09/19 07:51,"533 Hickory St, San Francisco, CA 94016" +150026,iPhone,1,700,01/12/19 22:05,"233 River St, Seattle, WA 98101" +150026,Apple Airpods Headphones,1,150,01/12/19 22:05,"233 River St, Seattle, WA 98101" +150027,Lightning Charging Cable,1,14.95,01/05/19 19:35,"104 9th St, New York City, NY 10001" +150028,AAA Batteries (4-pack),1,2.99,01/31/19 06:25,"671 Cherry St, Seattle, WA 98101" +150029,27in 4K Gaming Monitor,1,389.99,01/31/19 14:37,"22 Lincoln St, Seattle, WA 98101" +150030,USB-C Charging Cable,1,11.95,01/13/19 09:04,"979 Walnut St, San Francisco, CA 94016" +150031,Apple Airpods Headphones,1,150,01/02/19 18:51,"785 Cherry St, New York City, NY 10001" +150032,ThinkPad Laptop,1,999.99,01/10/19 16:03,"143 5th St, Austin, TX 73301" +150033,AA Batteries (4-pack),2,3.84,01/04/19 12:17,"118 Jefferson St, New York City, NY 10001" +150034,Bose SoundSport Headphones,1,99.99,01/26/19 08:20,"699 4th St, San Francisco, CA 94016" +150035,Wired Headphones,1,11.99,01/24/19 12:49,"618 Lake St, Los Angeles, CA 90001" +150036,Lightning Charging Cable,1,14.95,01/21/19 18:34,"634 Maple St, Portland, OR 97035" +150037,AA Batteries (4-pack),1,3.84,01/10/19 01:39,"809 Cedar St, Portland, ME 04101" +150038,Flatscreen TV,1,300,01/09/19 13:10,"385 10th St, Atlanta, GA 30301" +150039,27in FHD Monitor,1,149.99,01/31/19 02:34,"921 Lakeview St, Atlanta, GA 30301" +150040,27in FHD Monitor,1,149.99,01/31/19 12:44,"659 2nd St, San Francisco, CA 94016" +150041,Apple Airpods Headphones,1,150,01/31/19 10:43,"914 Walnut St, San Francisco, CA 94016" +150041,Google Phone,1,600,01/31/19 10:43,"914 Walnut St, San Francisco, CA 94016" +150042,Wired Headphones,2,11.99,01/08/19 23:37,"276 Main St, Boston, MA 02215" +150043,USB-C Charging Cable,1,11.95,01/04/19 14:21,"932 Church St, New York City, NY 10001" +150044,AAA Batteries (4-pack),2,2.99,01/09/19 18:58,"842 10th St, Austin, TX 73301" +150045,Wired Headphones,1,11.99,01/28/19 22:10,"654 South St, Austin, TX 73301" +150046,AAA Batteries (4-pack),1,2.99,01/19/19 19:21,"614 Cedar St, New York City, NY 10001" +150047,Lightning Charging Cable,1,14.95,01/30/19 15:59,"52 5th St, New York City, NY 10001" +150048,Lightning Charging Cable,1,14.95,01/05/19 16:23,"682 River St, New York City, NY 10001" +150049,AAA Batteries (4-pack),2,2.99,01/26/19 04:31,"649 4th St, Seattle, WA 98101" +150050,34in Ultrawide Monitor,1,379.99,01/28/19 16:01,"578 Jefferson St, Dallas, TX 75001" +150051,Lightning Charging Cable,1,14.95,01/19/19 11:44,"501 Elm St, San Francisco, CA 94016" +150052,Google Phone,1,600,01/24/19 23:29,"470 West St, Boston, MA 02215" +150053,USB-C Charging Cable,1,11.95,01/19/19 04:10,"115 Maple St, San Francisco, CA 94016" +150054,USB-C Charging Cable,1,11.95,01/21/19 12:13,"510 Church St, Portland, OR 97035" +150055,AAA Batteries (4-pack),1,2.99,01/27/19 22:23,"447 7th St, Boston, MA 02215" +150056,USB-C Charging Cable,2,11.95,01/26/19 16:54,"266 Center St, San Francisco, CA 94016" +150057,AA Batteries (4-pack),1,3.84,01/06/19 14:21,"288 7th St, Los Angeles, CA 90001" +150058,Macbook Pro Laptop,1,1700,01/23/19 08:15,"644 Washington St, Boston, MA 02215" +150059,Lightning Charging Cable,1,14.95,01/03/19 22:11,"259 Madison St, Seattle, WA 98101" +150060,Lightning Charging Cable,1,14.95,01/07/19 15:19,"384 Ridge St, Atlanta, GA 30301" +150061,AAA Batteries (4-pack),1,2.99,01/24/19 12:55,"212 Hickory St, San Francisco, CA 94016" +150062,AA Batteries (4-pack),1,3.84,01/12/19 09:30,"386 Cedar St, New York City, NY 10001" +150063,Lightning Charging Cable,1,14.95,01/01/19 16:35,"493 Lincoln St, Dallas, TX 75001" +150064,LG Dryer,1,600.0,01/09/19 06:42,"448 Main St, Los Angeles, CA 90001" +150065,AAA Batteries (4-pack),2,2.99,01/25/19 15:00,"185 Lakeview St, San Francisco, CA 94016" +150066,AAA Batteries (4-pack),1,2.99,01/05/19 06:40,"661 8th St, New York City, NY 10001" +150067,Wired Headphones,1,11.99,01/31/19 18:12,"247 South St, Austin, TX 73301" +150068,27in 4K Gaming Monitor,1,389.99,01/24/19 14:01,"135 9th St, Seattle, WA 98101" +150068,Wired Headphones,1,11.99,01/24/19 14:01,"135 9th St, Seattle, WA 98101" +150069,Apple Airpods Headphones,1,150,01/12/19 14:04,"690 Church St, Los Angeles, CA 90001" +150070,Google Phone,1,600,01/01/19 21:15,"926 13th St, Los Angeles, CA 90001" +150070,Wired Headphones,1,11.99,01/01/19 21:15,"926 13th St, Los Angeles, CA 90001" +150071,Flatscreen TV,1,300,01/17/19 20:14,"306 North St, Austin, TX 73301" +150072,USB-C Charging Cable,1,11.95,01/17/19 11:43,"230 Pine St, Los Angeles, CA 90001" +150073,Lightning Charging Cable,1,14.95,01/02/19 17:26,"56 Ridge St, Los Angeles, CA 90001" +150074,Vareebadd Phone,1,400,01/27/19 21:00,"277 Meadow St, Atlanta, GA 30301" +150075,Wired Headphones,1,11.99,01/23/19 18:15,"798 2nd St, Portland, ME 04101" +150076,27in 4K Gaming Monitor,1,389.99,01/11/19 23:10,"951 9th St, Seattle, WA 98101" +150077,Lightning Charging Cable,1,14.95,01/12/19 22:31,"594 Spruce St, San Francisco, CA 94016" +150078,Lightning Charging Cable,1,14.95,01/14/19 19:24,"249 Park St, Austin, TX 73301" +150079,Lightning Charging Cable,1,14.95,01/26/19 22:11,"351 Meadow St, San Francisco, CA 94016" +150080,USB-C Charging Cable,1,11.95,01/22/19 16:59,"959 Lakeview St, San Francisco, CA 94016" +150081,USB-C Charging Cable,1,11.95,01/30/19 21:26,"379 Forest St, San Francisco, CA 94016" +150082,AA Batteries (4-pack),1,3.84,01/17/19 14:59,"454 Lake St, Atlanta, GA 30301" +150083,USB-C Charging Cable,1,11.95,01/15/19 11:45,"391 2nd St, San Francisco, CA 94016" +150084,Lightning Charging Cable,1,14.95,01/14/19 09:54,"174 Chestnut St, New York City, NY 10001" +150085,ThinkPad Laptop,1,999.99,01/20/19 16:23,"682 11th St, San Francisco, CA 94016" +150086,Wired Headphones,1,11.99,01/25/19 16:02,"563 12th St, Boston, MA 02215" +150087,Google Phone,1,600,01/19/19 21:05,"161 4th St, Los Angeles, CA 90001" +150088,27in FHD Monitor,1,149.99,01/05/19 12:59,"196 5th St, Atlanta, GA 30301" +150089,Lightning Charging Cable,1,14.95,01/10/19 17:07,"769 Washington St, Boston, MA 02215" +150090,Google Phone,1,600,01/24/19 08:21,"623 Spruce St, San Francisco, CA 94016" +150090,USB-C Charging Cable,1,11.95,01/24/19 08:21,"623 Spruce St, San Francisco, CA 94016" +150091,Bose SoundSport Headphones,2,99.99,01/19/19 19:03,"400 4th St, Portland, OR 97035" +150092,Bose SoundSport Headphones,1,99.99,01/30/19 16:07,"773 11th St, Los Angeles, CA 90001" +150093,Wired Headphones,1,11.99,01/23/19 11:47,"451 14th St, Dallas, TX 75001" +150094,Apple Airpods Headphones,1,150,01/02/19 10:28,"815 Walnut St, Los Angeles, CA 90001" +150095,AA Batteries (4-pack),2,3.84,01/20/19 08:41,"535 Hill St, Boston, MA 02215" +150096,USB-C Charging Cable,1,11.95,01/28/19 17:38,"994 Lakeview St, Portland, ME 04101" +150097,Lightning Charging Cable,1,14.95,01/10/19 09:58,"152 Madison St, San Francisco, CA 94016" +150098,iPhone,1,700,01/21/19 10:20,"918 6th St, Dallas, TX 75001" +150099,Lightning Charging Cable,1,14.95,01/31/19 00:28,"724 1st St, Boston, MA 02215" +150100,34in Ultrawide Monitor,1,379.99,01/25/19 23:52,"684 Park St, San Francisco, CA 94016" +150101,Vareebadd Phone,1,400,01/02/19 23:01,"909 9th St, Dallas, TX 75001" +150101,Wired Headphones,1,11.99,01/02/19 23:01,"909 9th St, Dallas, TX 75001" +150102,34in Ultrawide Monitor,1,379.99,01/17/19 11:46,"402 8th St, Seattle, WA 98101" +150103,Wired Headphones,1,11.99,01/05/19 11:30,"17 River St, New York City, NY 10001" +150104,Flatscreen TV,1,300,01/23/19 08:16,"904 Wilson St, Boston, MA 02215" +150105,27in FHD Monitor,1,149.99,01/12/19 08:25,"522 13th St, San Francisco, CA 94016" +150106,34in Ultrawide Monitor,1,379.99,01/03/19 18:58,"780 West St, Austin, TX 73301" +150107,Google Phone,1,600,01/19/19 11:10,"362 Cherry St, Boston, MA 02215" +150108,AA Batteries (4-pack),1,3.84,01/25/19 10:46,"618 Dogwood St, Los Angeles, CA 90001" +150109,iPhone,2,700,01/11/19 17:15,"985 Park St, San Francisco, CA 94016" +150109,Lightning Charging Cable,1,14.95,01/11/19 17:15,"985 Park St, San Francisco, CA 94016" +150110,AAA Batteries (4-pack),2,2.99,01/03/19 15:47,"236 Johnson St, Los Angeles, CA 90001" +150111,Wired Headphones,1,11.99,01/10/19 14:43,"542 Highland St, Boston, MA 02215" +150112,Google Phone,1,600,01/27/19 16:31,"796 1st St, Atlanta, GA 30301" +150113,27in FHD Monitor,1,149.99,01/04/19 13:30,"342 14th St, Boston, MA 02215" +150114,AAA Batteries (4-pack),6,2.99,01/27/19 14:22,"23 Elm St, Boston, MA 02215" +150115,USB-C Charging Cable,2,11.95,01/05/19 18:22,"121 Lake St, San Francisco, CA 94016" +150116,Wired Headphones,1,11.99,01/20/19 09:59,"169 Dogwood St, San Francisco, CA 94016" +150117,AA Batteries (4-pack),1,3.84,01/24/19 11:57,"904 River St, Atlanta, GA 30301" +150118,Lightning Charging Cable,1,14.95,01/14/19 17:45,"698 2nd St, Dallas, TX 75001" +150119,Bose SoundSport Headphones,1,99.99,01/03/19 21:56,"976 Elm St, Atlanta, GA 30301" +150120,Bose SoundSport Headphones,1,99.99,01/23/19 09:52,"699 Church St, San Francisco, CA 94016" +150121,AAA Batteries (4-pack),1,2.99,01/24/19 20:54,"957 8th St, New York City, NY 10001" +150122,AA Batteries (4-pack),1,3.84,01/06/19 11:40,"814 Walnut St, Seattle, WA 98101" +150123,Wired Headphones,1,11.99,01/20/19 00:40,"431 Cherry St, New York City, NY 10001" +150124,USB-C Charging Cable,1,11.95,01/23/19 08:26,"989 Maple St, Los Angeles, CA 90001" +150125,USB-C Charging Cable,1,11.95,01/02/19 12:58,"651 Maple St, New York City, NY 10001" +150126,Bose SoundSport Headphones,1,99.99,01/07/19 15:11,"449 Cedar St, Los Angeles, CA 90001" +150127,34in Ultrawide Monitor,1,379.99,01/23/19 14:52,"340 Ridge St, Boston, MA 02215" +150128,27in 4K Gaming Monitor,1,389.99,01/20/19 18:29,"858 Elm St, Boston, MA 02215" +150129,USB-C Charging Cable,2,11.95,01/13/19 21:37,"196 Hickory St, Seattle, WA 98101" +150130,AA Batteries (4-pack),1,3.84,01/05/19 14:12,"617 8th St, Seattle, WA 98101" +150131,USB-C Charging Cable,2,11.95,01/29/19 08:33,"602 Pine St, Los Angeles, CA 90001" +150132,Apple Airpods Headphones,1,150,01/30/19 18:37,"549 South St, Seattle, WA 98101" +150133,Wired Headphones,1,11.99,01/13/19 10:14,"438 9th St, Boston, MA 02215" +150134,AA Batteries (4-pack),2,3.84,01/23/19 09:39,"691 10th St, Los Angeles, CA 90001" +150135,iPhone,1,700,01/29/19 15:56,"197 14th St, Los Angeles, CA 90001" +150136,Apple Airpods Headphones,1,150,01/12/19 10:38,"26 Elm St, Los Angeles, CA 90001" +150137,Wired Headphones,2,11.99,01/22/19 14:50,"831 Jefferson St, Portland, ME 04101" +150138,20in Monitor,1,109.99,01/06/19 10:44,"69 Elm St, Seattle, WA 98101" +150139,27in FHD Monitor,1,149.99,01/04/19 10:33,"822 Wilson St, Portland, OR 97035" +150140,AAA Batteries (4-pack),1,2.99,01/12/19 02:46,"928 Walnut St, San Francisco, CA 94016" +150141,USB-C Charging Cable,1,11.95,01/31/19 09:41,"420 Sunset St, San Francisco, CA 94016" +150142,Macbook Pro Laptop,1,1700,01/01/19 10:07,"162 11th St, Los Angeles, CA 90001" +150143,AAA Batteries (4-pack),1,2.99,01/17/19 00:42,"373 13th St, New York City, NY 10001" +150144,Vareebadd Phone,1,400,01/27/19 20:18,"456 Sunset St, Seattle, WA 98101" +150145,AAA Batteries (4-pack),1,2.99,01/25/19 19:30,"707 Cherry St, San Francisco, CA 94016" +150146,AAA Batteries (4-pack),1,2.99,01/08/19 23:51,"546 12th St, New York City, NY 10001" +150147,USB-C Charging Cable,1,11.95,01/06/19 15:45,"929 9th St, Seattle, WA 98101" +150148,Bose SoundSport Headphones,1,99.99,01/04/19 11:57,"821 South St, Austin, TX 73301" +150149,AA Batteries (4-pack),1,3.84,01/12/19 12:40,"956 Chestnut St, New York City, NY 10001" +150150,Flatscreen TV,1,300,01/07/19 07:40,"93 1st St, San Francisco, CA 94016" +150151,USB-C Charging Cable,1,11.95,01/16/19 21:47,"50 6th St, San Francisco, CA 94016" +150152,Lightning Charging Cable,1,14.95,01/27/19 13:12,"262 Dogwood St, Los Angeles, CA 90001" +150153,AAA Batteries (4-pack),1,2.99,01/17/19 14:35,"534 1st St, New York City, NY 10001" +150154,Macbook Pro Laptop,1,1700,01/18/19 14:23,"174 Spruce St, Atlanta, GA 30301" +150155,USB-C Charging Cable,1,11.95,01/16/19 19:43,"668 10th St, New York City, NY 10001" +150156,AAA Batteries (4-pack),1,2.99,01/28/19 12:59,"741 River St, San Francisco, CA 94016" +150157,20in Monitor,1,109.99,01/11/19 22:12,"620 Park St, San Francisco, CA 94016" +150158,34in Ultrawide Monitor,1,379.99,01/03/19 11:51,"856 Sunset St, New York City, NY 10001" +150159,27in 4K Gaming Monitor,1,389.99,01/08/19 07:53,"173 West St, Atlanta, GA 30301" +150160,20in Monitor,1,109.99,01/27/19 21:20,"425 Center St, Boston, MA 02215" +150161,Lightning Charging Cable,1,14.95,01/16/19 17:42,"387 Forest St, Portland, OR 97035" +150162,USB-C Charging Cable,1,11.95,01/21/19 14:13,"205 Hickory St, Seattle, WA 98101" +150163,Google Phone,1,600,01/14/19 14:41,"787 Walnut St, San Francisco, CA 94016" +150164,Lightning Charging Cable,1,14.95,01/27/19 18:01,"385 6th St, San Francisco, CA 94016" +150165,27in 4K Gaming Monitor,1,389.99,01/19/19 21:51,"960 River St, New York City, NY 10001" +150166,Vareebadd Phone,1,400,01/15/19 15:23,"636 Ridge St, Boston, MA 02215" +150167,Bose SoundSport Headphones,1,99.99,01/14/19 13:32,"493 Main St, San Francisco, CA 94016" +150168,Bose SoundSport Headphones,1,99.99,01/14/19 18:36,"27 Chestnut St, Portland, OR 97035" +150169,Wired Headphones,1,11.99,01/24/19 14:45,"669 Walnut St, Boston, MA 02215" +150170,Lightning Charging Cable,1,14.95,01/11/19 22:23,"231 South St, Dallas, TX 75001" +150171,AAA Batteries (4-pack),1,2.99,01/26/19 22:50,"260 Walnut St, New York City, NY 10001" +150172,Lightning Charging Cable,1,14.95,01/28/19 18:36,"535 Meadow St, Boston, MA 02215" +150173,iPhone,1,700,01/08/19 11:10,"628 Wilson St, Atlanta, GA 30301" +150174,Lightning Charging Cable,1,14.95,01/22/19 20:04,"568 Maple St, San Francisco, CA 94016" +150175,USB-C Charging Cable,1,11.95,01/04/19 12:22,"407 9th St, Portland, OR 97035" +150176,AA Batteries (4-pack),2,3.84,01/05/19 23:19,"544 Chestnut St, Boston, MA 02215" +150177,Apple Airpods Headphones,1,150,01/07/19 10:32,"632 Cherry St, Dallas, TX 75001" +150177,Wired Headphones,1,11.99,01/07/19 10:32,"632 Cherry St, Dallas, TX 75001" +150178,AAA Batteries (4-pack),1,2.99,01/30/19 07:53,"591 Spruce St, Dallas, TX 75001" +150179,USB-C Charging Cable,1,11.95,01/11/19 09:04,"336 Madison St, Portland, OR 97035" +150180,Macbook Pro Laptop,1,1700,01/30/19 04:50,"187 Spruce St, Seattle, WA 98101" +150181,AA Batteries (4-pack),1,3.84,01/12/19 20:53,"497 Lincoln St, Portland, OR 97035" +150182,USB-C Charging Cable,1,11.95,01/13/19 23:46,"635 Ridge St, Austin, TX 73301" +150183,Lightning Charging Cable,1,14.95,01/15/19 08:43,"955 13th St, Los Angeles, CA 90001" +150184,Bose SoundSport Headphones,1,99.99,01/07/19 23:13,"312 Washington St, Boston, MA 02215" +150185,Lightning Charging Cable,1,14.95,01/12/19 21:38,"351 1st St, Portland, ME 04101" +150186,Bose SoundSport Headphones,1,99.99,01/29/19 22:43,"751 Lincoln St, San Francisco, CA 94016" +150187,Bose SoundSport Headphones,1,99.99,01/26/19 10:57,"943 Cedar St, San Francisco, CA 94016" +150188,Lightning Charging Cable,1,14.95,01/24/19 10:36,"456 Spruce St, Dallas, TX 75001" +150189,Vareebadd Phone,1,400,01/03/19 08:58,"251 Hickory St, Austin, TX 73301" +150190,Apple Airpods Headphones,1,150,01/23/19 13:19,"725 Jefferson St, New York City, NY 10001" +150191,Lightning Charging Cable,1,14.95,01/29/19 18:18,"527 Madison St, Austin, TX 73301" +150192,Google Phone,1,600,01/10/19 18:02,"139 Cherry St, Dallas, TX 75001" +150192,Wired Headphones,1,11.99,01/10/19 18:02,"139 Cherry St, Dallas, TX 75001" +150193,Bose SoundSport Headphones,1,99.99,01/24/19 12:17,"522 South St, Los Angeles, CA 90001" +150194,27in FHD Monitor,1,149.99,01/24/19 16:05,"226 Hickory St, San Francisco, CA 94016" +150195,AA Batteries (4-pack),1,3.84,01/05/19 21:52,"617 12th St, Seattle, WA 98101" +150196,USB-C Charging Cable,1,11.95,01/07/19 10:28,"518 9th St, Los Angeles, CA 90001" +150197,USB-C Charging Cable,1,11.95,01/13/19 19:38,"722 Walnut St, Atlanta, GA 30301" +150198,Vareebadd Phone,1,400,01/30/19 18:30,"772 2nd St, Portland, OR 97035" +150199,Wired Headphones,1,11.99,01/17/19 23:24,"814 Forest St, Austin, TX 73301" +150200,USB-C Charging Cable,1,11.95,01/06/19 11:40,"380 River St, San Francisco, CA 94016" +150201,Wired Headphones,1,11.99,01/10/19 14:41,"870 Walnut St, Los Angeles, CA 90001" +150202,Macbook Pro Laptop,1,1700,01/13/19 11:14,"356 Jackson St, Atlanta, GA 30301" +150203,AA Batteries (4-pack),1,3.84,01/27/19 03:42,"466 9th St, San Francisco, CA 94016" +150204,Lightning Charging Cable,1,14.95,01/20/19 20:55,"299 6th St, San Francisco, CA 94016" +150205,Apple Airpods Headphones,1,150,01/20/19 08:29,"137 Ridge St, Dallas, TX 75001" +150206,Google Phone,1,600,01/25/19 08:56,"350 River St, Portland, OR 97035" +150206,USB-C Charging Cable,1,11.95,01/25/19 08:56,"350 River St, Portland, OR 97035" +150207,AA Batteries (4-pack),1,3.84,01/11/19 21:32,"756 Elm St, San Francisco, CA 94016" +150208,AAA Batteries (4-pack),1,2.99,01/14/19 21:07,"85 Meadow St, Austin, TX 73301" +150209,Wired Headphones,1,11.99,01/25/19 19:29,"848 12th St, Seattle, WA 98101" +150210,USB-C Charging Cable,2,11.95,01/17/19 20:03,"568 Maple St, Seattle, WA 98101" +150211,Apple Airpods Headphones,1,150,01/29/19 11:35,"483 10th St, Boston, MA 02215" +150212,Apple Airpods Headphones,1,150,01/18/19 14:06,"198 9th St, San Francisco, CA 94016" +150213,Lightning Charging Cable,1,14.95,01/18/19 16:12,"604 14th St, Los Angeles, CA 90001" +150214,Lightning Charging Cable,1,14.95,01/12/19 22:45,"591 4th St, Los Angeles, CA 90001" +150215,Bose SoundSport Headphones,1,99.99,01/07/19 22:58,"832 13th St, San Francisco, CA 94016" +150216,Apple Airpods Headphones,1,150,01/31/19 21:35,"604 11th St, Boston, MA 02215" +150217,20in Monitor,1,109.99,01/19/19 07:53,"132 Highland St, New York City, NY 10001" +150218,27in 4K Gaming Monitor,1,389.99,01/14/19 19:17,"773 Pine St, San Francisco, CA 94016" +150219,Macbook Pro Laptop,1,1700,01/06/19 22:23,"608 Adams St, Los Angeles, CA 90001" +150220,34in Ultrawide Monitor,1,379.99,01/06/19 23:25,"910 14th St, San Francisco, CA 94016" +150221,iPhone,1,700,01/09/19 13:28,"303 8th St, Austin, TX 73301" +150221,Lightning Charging Cable,1,14.95,01/09/19 13:28,"303 8th St, Austin, TX 73301" +150222,Google Phone,1,600,01/25/19 19:28,"235 Cedar St, Boston, MA 02215" +150223,Macbook Pro Laptop,1,1700,01/03/19 19:49,"189 Main St, Los Angeles, CA 90001" +150224,Macbook Pro Laptop,1,1700,01/10/19 00:01,"90 Elm St, Atlanta, GA 30301" +150225,AA Batteries (4-pack),1,3.84,01/18/19 15:12,"944 Walnut St, Los Angeles, CA 90001" +150226,USB-C Charging Cable,1,11.95,01/04/19 21:57,"828 Church St, New York City, NY 10001" +150227,Apple Airpods Headphones,1,150,01/24/19 09:09,"960 4th St, Portland, ME 04101" +150228,Lightning Charging Cable,1,14.95,01/23/19 18:42,"301 10th St, Los Angeles, CA 90001" +150229,AA Batteries (4-pack),2,3.84,01/07/19 17:54,"511 11th St, Los Angeles, CA 90001" +150230,27in 4K Gaming Monitor,1,389.99,01/07/19 10:02,"31 Cedar St, San Francisco, CA 94016" +150231,27in FHD Monitor,1,149.99,01/18/19 18:36,"965 8th St, Los Angeles, CA 90001" +150232,Lightning Charging Cable,1,14.95,01/25/19 14:08,"635 West St, Atlanta, GA 30301" +150233,AA Batteries (4-pack),2,3.84,01/14/19 21:34,"756 Johnson St, New York City, NY 10001" +150234,Apple Airpods Headphones,1,150,01/27/19 14:24,"647 Cedar St, Los Angeles, CA 90001" +150235,Wired Headphones,1,11.99,01/16/19 19:59,"23 Dogwood St, New York City, NY 10001" +150236,USB-C Charging Cable,1,11.95,01/28/19 10:03,"816 Park St, Austin, TX 73301" +150237,AA Batteries (4-pack),1,3.84,01/07/19 18:39,"168 4th St, New York City, NY 10001" +150238,20in Monitor,1,109.99,01/07/19 15:15,"766 Main St, San Francisco, CA 94016" +150239,USB-C Charging Cable,1,11.95,01/22/19 19:22,"178 Cedar St, San Francisco, CA 94016" +150240,Apple Airpods Headphones,1,150,01/23/19 00:40,"226 Willow St, Los Angeles, CA 90001" +150241,iPhone,1,700,01/14/19 10:29,"818 Spruce St, New York City, NY 10001" +150242,AAA Batteries (4-pack),1,2.99,01/25/19 15:59,"696 9th St, San Francisco, CA 94016" +150243,Macbook Pro Laptop,1,1700,01/31/19 10:56,"197 Chestnut St, Dallas, TX 75001" +150244,AAA Batteries (4-pack),1,2.99,01/03/19 11:25,"964 2nd St, San Francisco, CA 94016" +150244,Lightning Charging Cable,1,14.95,01/03/19 11:25,"964 2nd St, San Francisco, CA 94016" +150245,AA Batteries (4-pack),2,3.84,01/30/19 22:36,"65 South St, Dallas, TX 75001" +150246,AAA Batteries (4-pack),2,2.99,01/17/19 11:57,"551 Church St, New York City, NY 10001" +150247,Wired Headphones,1,11.99,01/20/19 09:11,"607 Lakeview St, Boston, MA 02215" +150248,AAA Batteries (4-pack),1,2.99,01/05/19 11:00,"916 Lincoln St, Seattle, WA 98101" +150249,Bose SoundSport Headphones,1,99.99,01/13/19 15:59,"454 1st St, San Francisco, CA 94016" +150250,20in Monitor,1,109.99,01/28/19 06:47,"423 North St, New York City, NY 10001" +150251,27in 4K Gaming Monitor,1,389.99,01/21/19 19:13,"385 Walnut St, Portland, OR 97035" +150252,Bose SoundSport Headphones,1,99.99,01/30/19 13:58,"341 8th St, New York City, NY 10001" +150253,Lightning Charging Cable,1,14.95,01/06/19 02:14,"326 Lakeview St, Austin, TX 73301" +150254,34in Ultrawide Monitor,1,379.99,01/29/19 13:07,"733 Dogwood St, Los Angeles, CA 90001" +150255,Lightning Charging Cable,1,14.95,01/25/19 19:22,"429 2nd St, New York City, NY 10001" +150256,Google Phone,1,600,01/02/19 00:01,"600 4th St, San Francisco, CA 94016" +150257,LG Dryer,1,600.0,01/19/19 12:44,"37 Meadow St, Dallas, TX 75001" +150258,Lightning Charging Cable,1,14.95,01/13/19 20:30,"948 1st St, Los Angeles, CA 90001" +150259,AA Batteries (4-pack),1,3.84,01/16/19 11:39,"491 Forest St, San Francisco, CA 94016" +150260,27in 4K Gaming Monitor,1,389.99,01/19/19 07:33,"185 Johnson St, Boston, MA 02215" +150261,Apple Airpods Headphones,1,150,01/24/19 18:23,"316 Lake St, New York City, NY 10001" +150262,Bose SoundSport Headphones,1,99.99,01/18/19 09:34,"359 2nd St, San Francisco, CA 94016" +150263,Wired Headphones,1,11.99,01/06/19 22:45,"456 Sunset St, Los Angeles, CA 90001" +150264,Bose SoundSport Headphones,1,99.99,01/15/19 15:18,"503 Spruce St, Los Angeles, CA 90001" +150265,Lightning Charging Cable,1,14.95,01/03/19 15:41,"420 11th St, New York City, NY 10001" +150266,Bose SoundSport Headphones,1,99.99,01/26/19 13:15,"753 9th St, Boston, MA 02215" +150267,USB-C Charging Cable,1,11.95,01/25/19 06:41,"296 Dogwood St, Los Angeles, CA 90001" +150268,AAA Batteries (4-pack),1,2.99,01/16/19 17:27,"824 Walnut St, San Francisco, CA 94016" +150269,Apple Airpods Headphones,1,150,01/13/19 14:47,"587 Main St, Los Angeles, CA 90001" +150270,Apple Airpods Headphones,1,150,01/02/19 21:39,"639 Adams St, New York City, NY 10001" +150271,USB-C Charging Cable,1,11.95,01/24/19 21:08,"139 1st St, San Francisco, CA 94016" +150272,Wired Headphones,2,11.99,01/01/19 09:47,"176 Highland St, San Francisco, CA 94016" +150273,Flatscreen TV,1,300,01/17/19 05:07,"138 Jefferson St, San Francisco, CA 94016" +150274,Wired Headphones,1,11.99,01/06/19 17:34,"643 Highland St, Boston, MA 02215" +150275,27in FHD Monitor,1,149.99,01/27/19 01:16,"244 Spruce St, Dallas, TX 75001" +150276,USB-C Charging Cable,1,11.95,01/03/19 16:00,"43 Walnut St, Boston, MA 02215" +150277,USB-C Charging Cable,1,11.95,01/04/19 20:44,"184 6th St, San Francisco, CA 94016" +150278,LG Washing Machine,1,600.0,01/24/19 17:14,"134 12th St, Portland, OR 97035" +150279,AAA Batteries (4-pack),1,2.99,01/03/19 12:25,"816 West St, Portland, OR 97035" +150280,Wired Headphones,1,11.99,01/13/19 01:26,"160 Walnut St, Boston, MA 02215" +150281,27in 4K Gaming Monitor,1,389.99,01/24/19 11:33,"536 South St, New York City, NY 10001" +150282,Google Phone,1,600,01/15/19 23:56,"559 Jackson St, Los Angeles, CA 90001" +150282,USB-C Charging Cable,1,11.95,01/15/19 23:56,"559 Jackson St, Los Angeles, CA 90001" +150283,Apple Airpods Headphones,1,150,01/14/19 14:11,"792 Lincoln St, Los Angeles, CA 90001" +150284,AAA Batteries (4-pack),2,2.99,01/24/19 21:38,"895 Johnson St, San Francisco, CA 94016" +150285,USB-C Charging Cable,1,11.95,01/05/19 13:58,"277 9th St, San Francisco, CA 94016" +150286,Google Phone,1,600,01/20/19 09:52,"9 Chestnut St, Los Angeles, CA 90001" +150287,Bose SoundSport Headphones,1,99.99,01/29/19 10:50,"587 Cherry St, Austin, TX 73301" +150288,Macbook Pro Laptop,1,1700,01/09/19 10:52,"636 West St, New York City, NY 10001" +150289,Wired Headphones,2,11.99,01/08/19 19:52,"882 Adams St, Los Angeles, CA 90001" +150290,Apple Airpods Headphones,1,150,01/05/19 14:19,"149 West St, Boston, MA 02215" +150291,Lightning Charging Cable,1,14.95,01/02/19 12:16,"523 Forest St, Atlanta, GA 30301" +150292,Wired Headphones,1,11.99,01/16/19 18:13,"862 Ridge St, Dallas, TX 75001" +150293,USB-C Charging Cable,2,11.95,01/22/19 15:54,"417 Highland St, Los Angeles, CA 90001" +150294,AA Batteries (4-pack),1,3.84,01/01/19 23:46,"593 11th St, Seattle, WA 98101" +150295,Macbook Pro Laptop,1,1700,01/12/19 21:43,"468 Hill St, San Francisco, CA 94016" +150296,Wired Headphones,1,11.99,01/13/19 23:09,"721 10th St, Dallas, TX 75001" +150297,AAA Batteries (4-pack),1,2.99,01/27/19 10:55,"875 Lincoln St, New York City, NY 10001" +150298,AA Batteries (4-pack),1,3.84,01/18/19 19:13,"156 10th St, San Francisco, CA 94016" +150299,Apple Airpods Headphones,1,150,01/04/19 16:18,"785 Jefferson St, New York City, NY 10001" +150300,AA Batteries (4-pack),1,3.84,01/28/19 17:15,"385 Dogwood St, Austin, TX 73301" +150301,27in 4K Gaming Monitor,1,389.99,01/12/19 12:55,"249 Main St, Boston, MA 02215" +150302,Macbook Pro Laptop,1,1700,01/04/19 18:15,"637 Washington St, Dallas, TX 75001" +150303,Bose SoundSport Headphones,1,99.99,01/21/19 16:30,"873 Cedar St, Seattle, WA 98101" +150304,AA Batteries (4-pack),1,3.84,01/10/19 09:34,"174 Madison St, Dallas, TX 75001" +150305,AA Batteries (4-pack),2,3.84,01/08/19 18:59,"875 Lake St, Boston, MA 02215" +150306,Google Phone,1,600,01/07/19 14:34,"810 West St, San Francisco, CA 94016" +150306,USB-C Charging Cable,2,11.95,01/07/19 14:34,"810 West St, San Francisco, CA 94016" +150307,27in 4K Gaming Monitor,1,389.99,01/26/19 20:14,"987 River St, Boston, MA 02215" +150308,iPhone,1,700,01/20/19 16:58,"431 Park St, Dallas, TX 75001" +150309,USB-C Charging Cable,1,11.95,01/08/19 21:10,"829 Spruce St, Atlanta, GA 30301" +150310,Bose SoundSport Headphones,1,99.99,01/26/19 18:26,"831 1st St, Los Angeles, CA 90001" +150311,USB-C Charging Cable,1,11.95,01/17/19 11:34,"714 Walnut St, Los Angeles, CA 90001" +150312,AAA Batteries (4-pack),1,2.99,01/16/19 16:39,"964 Willow St, San Francisco, CA 94016" +150313,27in 4K Gaming Monitor,1,389.99,01/12/19 00:22,"71 Johnson St, San Francisco, CA 94016" +150314,Google Phone,1,600,01/06/19 13:19,"236 Adams St, Dallas, TX 75001" +150314,iPhone,1,700,01/06/19 13:19,"236 Adams St, Dallas, TX 75001" +150315,27in FHD Monitor,1,149.99,01/17/19 21:52,"561 Hickory St, Los Angeles, CA 90001" +150316,Flatscreen TV,1,300,01/28/19 20:27,"669 Madison St, Atlanta, GA 30301" +150317,27in 4K Gaming Monitor,1,389.99,01/02/19 15:09,"702 14th St, Los Angeles, CA 90001" +150318,Bose SoundSport Headphones,1,99.99,01/10/19 09:30,"536 Dogwood St, Seattle, WA 98101" +150319,Apple Airpods Headphones,1,150,01/10/19 13:39,"316 Cedar St, Dallas, TX 75001" +150320,AAA Batteries (4-pack),3,2.99,01/26/19 18:12,"834 Sunset St, Atlanta, GA 30301" +150321,Bose SoundSport Headphones,1,99.99,01/22/19 09:18,"829 Maple St, Seattle, WA 98101" +150322,Apple Airpods Headphones,1,150,01/14/19 14:42,"142 5th St, Boston, MA 02215" +150323,Lightning Charging Cable,1,14.95,01/10/19 09:52,"941 Dogwood St, San Francisco, CA 94016" +150324,20in Monitor,1,109.99,01/13/19 21:01,"311 Cedar St, San Francisco, CA 94016" +150325,USB-C Charging Cable,1,11.95,01/31/19 13:22,"657 Cherry St, Seattle, WA 98101" +150326,Bose SoundSport Headphones,1,99.99,01/27/19 21:38,"823 Willow St, Los Angeles, CA 90001" +150327,Google Phone,1,600,01/07/19 13:51,"5 Meadow St, Los Angeles, CA 90001" +150328,iPhone,1,700,01/11/19 21:39,"978 10th St, Dallas, TX 75001" +150329,AAA Batteries (4-pack),2,2.99,01/16/19 09:02,"641 Johnson St, Austin, TX 73301" +150330,Bose SoundSport Headphones,1,99.99,01/18/19 08:45,"29 13th St, San Francisco, CA 94016" +150330,ThinkPad Laptop,1,999.99,01/18/19 08:45,"29 13th St, San Francisco, CA 94016" +150331,Bose SoundSport Headphones,1,99.99,01/19/19 14:01,"150 Highland St, San Francisco, CA 94016" +150332,Apple Airpods Headphones,1,150,01/04/19 20:14,"452 Meadow St, San Francisco, CA 94016" +150333,Apple Airpods Headphones,1,150,01/15/19 20:30,"876 Chestnut St, Austin, TX 73301" +150334,AA Batteries (4-pack),1,3.84,01/23/19 02:04,"218 14th St, San Francisco, CA 94016" +150335,AA Batteries (4-pack),1,3.84,01/16/19 20:31,"446 Main St, Boston, MA 02215" +150336,Lightning Charging Cable,1,14.95,01/14/19 16:36,"131 Main St, Dallas, TX 75001" +150337,Lightning Charging Cable,2,14.95,01/05/19 22:29,"717 5th St, Dallas, TX 75001" +150338,Google Phone,1,600,01/09/19 16:36,"965 Hickory St, Portland, OR 97035" +150339,Wired Headphones,1,11.99,01/19/19 09:52,"835 Cedar St, Los Angeles, CA 90001" +150340,Lightning Charging Cable,1,14.95,01/28/19 02:00,"584 West St, Dallas, TX 75001" +150341,Lightning Charging Cable,1,14.95,01/29/19 17:10,"999 Elm St, Boston, MA 02215" +150342,AA Batteries (4-pack),1,3.84,01/03/19 22:26,"366 11th St, New York City, NY 10001" +150343,AAA Batteries (4-pack),2,2.99,01/18/19 09:59,"292 7th St, San Francisco, CA 94016" +150343,AAA Batteries (4-pack),2,2.99,01/18/19 09:59,"292 7th St, San Francisco, CA 94016" +150344,AAA Batteries (4-pack),2,2.99,01/02/19 06:19,"52 Madison St, Austin, TX 73301" +150345,27in FHD Monitor,1,149.99,01/27/19 16:49,"131 Lake St, Los Angeles, CA 90001" +150346,Apple Airpods Headphones,1,150,01/31/19 19:01,"820 Maple St, San Francisco, CA 94016" +150347,AA Batteries (4-pack),1,3.84,01/05/19 14:03,"215 Maple St, San Francisco, CA 94016" +150348,27in 4K Gaming Monitor,1,389.99,01/23/19 13:13,"231 Elm St, Seattle, WA 98101" +150349,iPhone,1,700,01/21/19 21:45,"103 West St, Portland, ME 04101" +150350,AA Batteries (4-pack),2,3.84,01/01/19 15:40,"746 1st St, Portland, OR 97035" +150351,Lightning Charging Cable,1,14.95,01/27/19 20:14,"47 Lake St, New York City, NY 10001" +150352,AA Batteries (4-pack),1,3.84,01/10/19 07:32,"210 Lincoln St, New York City, NY 10001" +150353,AA Batteries (4-pack),1,3.84,01/18/19 13:19,"68 Wilson St, Boston, MA 02215" +150354,AAA Batteries (4-pack),1,2.99,01/24/19 16:17,"15 Park St, San Francisco, CA 94016" +150355,AA Batteries (4-pack),1,3.84,01/17/19 10:09,"635 Madison St, Los Angeles, CA 90001" +150356,Bose SoundSport Headphones,1,99.99,01/24/19 22:31,"661 Chestnut St, Boston, MA 02215" +150357,AA Batteries (4-pack),1,3.84,01/27/19 18:45,"243 5th St, Seattle, WA 98101" +150358,AAA Batteries (4-pack),1,2.99,01/03/19 18:14,"755 Spruce St, San Francisco, CA 94016" +150359,Wired Headphones,1,11.99,01/15/19 22:35,"45 Church St, Austin, TX 73301" +150360,Lightning Charging Cable,1,14.95,01/01/19 14:49,"832 Elm St, Atlanta, GA 30301" +150361,Flatscreen TV,1,300,01/04/19 19:53,"750 11th St, Boston, MA 02215" +150362,Bose SoundSport Headphones,1,99.99,01/22/19 14:25,"511 Lake St, Dallas, TX 75001" +150363,Wired Headphones,1,11.99,01/07/19 07:19,"275 Spruce St, Los Angeles, CA 90001" +150364,USB-C Charging Cable,1,11.95,01/24/19 18:05,"78 Forest St, Boston, MA 02215" +150365,USB-C Charging Cable,1,11.95,01/10/19 03:27,"522 West St, Boston, MA 02215" +150366,AA Batteries (4-pack),1,3.84,01/10/19 11:47,"699 5th St, Atlanta, GA 30301" +150367,USB-C Charging Cable,1,11.95,01/02/19 19:57,"975 Highland St, Boston, MA 02215" +150368,AAA Batteries (4-pack),1,2.99,01/29/19 16:07,"115 Elm St, Los Angeles, CA 90001" +150369,Flatscreen TV,1,300,01/06/19 20:23,"957 Sunset St, Los Angeles, CA 90001" +150370,Bose SoundSport Headphones,1,99.99,01/11/19 15:01,"236 Wilson St, Los Angeles, CA 90001" +150371,Lightning Charging Cable,1,14.95,01/29/19 13:13,"731 10th St, Dallas, TX 75001" +150372,20in Monitor,1,109.99,01/18/19 23:21,"104 Sunset St, Boston, MA 02215" +150373,AAA Batteries (4-pack),1,2.99,01/30/19 16:31,"436 Cedar St, Dallas, TX 75001" +150374,Lightning Charging Cable,1,14.95,01/18/19 09:04,"422 West St, Portland, OR 97035" +150375,34in Ultrawide Monitor,1,379.99,01/07/19 12:53,"264 Main St, Portland, ME 04101" +150376,27in 4K Gaming Monitor,1,389.99,01/15/19 03:12,"940 Park St, Atlanta, GA 30301" +150377,iPhone,1,700,01/21/19 20:55,"254 1st St, Dallas, TX 75001" +150378,USB-C Charging Cable,1,11.95,01/11/19 08:05,"111 Cedar St, Atlanta, GA 30301" +150379,Google Phone,1,600,01/31/19 17:28,"354 Jefferson St, Los Angeles, CA 90001" +150380,Flatscreen TV,1,300,01/05/19 09:50,"187 Dogwood St, Seattle, WA 98101" +150381,AAA Batteries (4-pack),2,2.99,01/13/19 21:13,"990 7th St, San Francisco, CA 94016" +150382,Lightning Charging Cable,1,14.95,01/06/19 07:52,"765 13th St, Los Angeles, CA 90001" +150383,USB-C Charging Cable,1,11.95,01/29/19 21:01,"718 Highland St, Dallas, TX 75001" +150384,Wired Headphones,1,11.99,01/10/19 10:50,"544 Ridge St, New York City, NY 10001" +150385,AAA Batteries (4-pack),1,2.99,01/19/19 15:46,"291 Chestnut St, Seattle, WA 98101" +150386,Apple Airpods Headphones,1,150,01/10/19 23:06,"560 Main St, San Francisco, CA 94016" +150387,Flatscreen TV,1,300,01/16/19 14:04,"892 5th St, Boston, MA 02215" +150388,AA Batteries (4-pack),4,3.84,01/02/19 22:50,"470 Wilson St, New York City, NY 10001" +150388,iPhone,1,700,01/02/19 22:50,"470 Wilson St, New York City, NY 10001" +150389,AAA Batteries (4-pack),1,2.99,01/14/19 23:56,"114 Elm St, New York City, NY 10001" +150390,iPhone,1,700,01/11/19 12:26,"181 Sunset St, Dallas, TX 75001" +150390,Wired Headphones,1,11.99,01/11/19 12:26,"181 Sunset St, Dallas, TX 75001" +150391,AAA Batteries (4-pack),1,2.99,01/31/19 22:51,"980 2nd St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +150392,USB-C Charging Cable,1,11.95,01/01/19 16:34,"562 Washington St, San Francisco, CA 94016" +150393,USB-C Charging Cable,1,11.95,01/24/19 16:53,"837 Johnson St, Boston, MA 02215" +150394,27in FHD Monitor,1,149.99,01/23/19 23:07,"304 2nd St, Los Angeles, CA 90001" +150395,Wired Headphones,1,11.99,01/15/19 17:58,"283 8th St, San Francisco, CA 94016" +150396,Bose SoundSport Headphones,1,99.99,01/14/19 11:22,"927 Lakeview St, Seattle, WA 98101" +150397,Wired Headphones,1,11.99,01/04/19 14:06,"264 Church St, Los Angeles, CA 90001" +150398,Wired Headphones,1,11.99,01/12/19 10:05,"706 13th St, Los Angeles, CA 90001" +150399,Wired Headphones,1,11.99,01/09/19 12:42,"580 9th St, Boston, MA 02215" +150400,USB-C Charging Cable,1,11.95,01/02/19 13:22,"718 11th St, Portland, OR 97035" +150401,AAA Batteries (4-pack),3,2.99,01/15/19 18:09,"98 5th St, Los Angeles, CA 90001" +150402,Wired Headphones,1,11.99,01/20/19 11:29,"705 10th St, Seattle, WA 98101" +150403,34in Ultrawide Monitor,1,379.99,01/23/19 11:15,"695 Elm St, San Francisco, CA 94016" +150404,iPhone,1,700,01/17/19 12:14,"369 5th St, San Francisco, CA 94016" +150405,27in FHD Monitor,1,149.99,01/18/19 22:36,"918 Sunset St, San Francisco, CA 94016" +150406,Wired Headphones,1,11.99,01/09/19 17:43,"21 Chestnut St, Los Angeles, CA 90001" +150407,AAA Batteries (4-pack),1,2.99,01/25/19 22:13,"333 Meadow St, Boston, MA 02215" +150408,Macbook Pro Laptop,1,1700,01/30/19 11:15,"538 Chestnut St, Boston, MA 02215" +150409,Lightning Charging Cable,1,14.95,01/17/19 01:19,"13 6th St, Portland, OR 97035" +150410,Google Phone,1,600,01/24/19 13:18,"735 7th St, Los Angeles, CA 90001" +150411,Lightning Charging Cable,1,14.95,01/11/19 19:18,"904 Willow St, Los Angeles, CA 90001" +150412,AAA Batteries (4-pack),1,2.99,01/22/19 07:31,"158 Maple St, San Francisco, CA 94016" +150413,Wired Headphones,1,11.99,01/10/19 21:35,"277 Johnson St, San Francisco, CA 94016" +150414,LG Dryer,1,600.0,01/20/19 11:45,"119 14th St, Seattle, WA 98101" +150415,USB-C Charging Cable,1,11.95,01/03/19 19:54,"290 14th St, Boston, MA 02215" +150416,Wired Headphones,1,11.99,01/31/19 10:03,"194 Spruce St, Los Angeles, CA 90001" +150417,27in FHD Monitor,1,149.99,01/10/19 17:56,"505 Center St, San Francisco, CA 94016" +150418,Bose SoundSport Headphones,1,99.99,01/08/19 14:32,"690 Wilson St, Los Angeles, CA 90001" +150419,AAA Batteries (4-pack),2,2.99,01/09/19 23:11,"394 Hickory St, Boston, MA 02215" +150420,USB-C Charging Cable,1,11.95,01/13/19 18:18,"574 River St, New York City, NY 10001" +150420,AA Batteries (4-pack),1,3.84,01/13/19 18:18,"574 River St, New York City, NY 10001" +150421,Apple Airpods Headphones,1,150,01/16/19 16:55,"107 8th St, Los Angeles, CA 90001" +150422,AA Batteries (4-pack),1,3.84,01/12/19 11:01,"178 Chestnut St, Seattle, WA 98101" +150423,AAA Batteries (4-pack),2,2.99,01/18/19 08:12,"410 10th St, Atlanta, GA 30301" +150424,AAA Batteries (4-pack),3,2.99,01/26/19 12:23,"138 2nd St, Seattle, WA 98101" +150425,USB-C Charging Cable,1,11.95,01/06/19 10:20,"492 Cherry St, Los Angeles, CA 90001" +150426,27in FHD Monitor,1,149.99,01/05/19 01:26,"945 Center St, Los Angeles, CA 90001" +150426,Bose SoundSport Headphones,1,99.99,01/05/19 01:26,"945 Center St, Los Angeles, CA 90001" +150427,AA Batteries (4-pack),1,3.84,01/05/19 19:16,"109 4th St, Seattle, WA 98101" +150428,AA Batteries (4-pack),2,3.84,01/14/19 16:54,"582 Dogwood St, New York City, NY 10001" +150429,20in Monitor,1,109.99,01/31/19 07:08,"389 West St, Los Angeles, CA 90001" +150430,Vareebadd Phone,1,400,01/23/19 19:40,"352 Dogwood St, Los Angeles, CA 90001" +150431,AAA Batteries (4-pack),2,2.99,01/13/19 21:26,"274 Sunset St, Portland, OR 97035" +150432,27in FHD Monitor,1,149.99,01/20/19 17:15,"744 Wilson St, New York City, NY 10001" +150433,USB-C Charging Cable,1,11.95,01/11/19 13:00,"656 River St, Atlanta, GA 30301" +150434,Wired Headphones,2,11.99,01/11/19 17:03,"495 14th St, Portland, OR 97035" +150435,AAA Batteries (4-pack),2,2.99,01/01/19 17:00,"773 Church St, New York City, NY 10001" +150436,iPhone,1,700,01/29/19 08:54,"681 Highland St, Los Angeles, CA 90001" +150437,Apple Airpods Headphones,1,150,01/27/19 21:48,"356 Wilson St, San Francisco, CA 94016" +150438,Bose SoundSport Headphones,1,99.99,01/01/19 14:12,"807 Hill St, San Francisco, CA 94016" +150439,Vareebadd Phone,1,400,01/23/19 23:57,"196 South St, San Francisco, CA 94016" +150440,Apple Airpods Headphones,1,150,01/24/19 17:02,"925 9th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +150441,Macbook Pro Laptop,1,1700,01/22/19 13:44,"173 Maple St, New York City, NY 10001" +150442,Apple Airpods Headphones,1,150,01/25/19 11:04,"783 Church St, Seattle, WA 98101" +150443,Bose SoundSport Headphones,1,99.99,01/19/19 00:05,"276 Walnut St, New York City, NY 10001" +150444,ThinkPad Laptop,1,999.99,01/21/19 12:25,"865 14th St, New York City, NY 10001" +150445,Google Phone,1,600,01/30/19 19:23,"889 River St, San Francisco, CA 94016" +150446,34in Ultrawide Monitor,1,379.99,01/15/19 10:05,"415 Sunset St, Atlanta, GA 30301" +150447,Wired Headphones,1,11.99,01/02/19 05:52,"706 5th St, San Francisco, CA 94016" +150448,27in FHD Monitor,1,149.99,01/07/19 21:51,"163 12th St, Los Angeles, CA 90001" +150449,iPhone,1,700,01/01/19 15:49,"970 10th St, Los Angeles, CA 90001" +150450,iPhone,1,700,01/20/19 14:58,"272 Meadow St, Portland, OR 97035" +150451,USB-C Charging Cable,1,11.95,01/17/19 16:04,"36 Main St, San Francisco, CA 94016" +150452,27in 4K Gaming Monitor,1,389.99,01/19/19 07:34,"579 2nd St, Austin, TX 73301" +150453,AA Batteries (4-pack),1,3.84,01/19/19 22:56,"353 Hickory St, Portland, OR 97035" +150454,Apple Airpods Headphones,1,150,01/09/19 18:59,"389 1st St, Seattle, WA 98101" +150455,Wired Headphones,1,11.99,01/25/19 09:13,"706 Cherry St, Atlanta, GA 30301" +150456,27in 4K Gaming Monitor,1,389.99,01/22/19 03:57,"663 Dogwood St, Dallas, TX 75001" +150456,USB-C Charging Cable,1,11.95,01/22/19 03:57,"663 Dogwood St, Dallas, TX 75001" +150457,27in FHD Monitor,1,149.99,01/23/19 11:47,"615 Meadow St, Los Angeles, CA 90001" +150458,27in 4K Gaming Monitor,1,389.99,01/01/19 13:11,"401 12th St, New York City, NY 10001" +150459,AA Batteries (4-pack),1,3.84,01/06/19 15:05,"756 Dogwood St, San Francisco, CA 94016" +150460,Apple Airpods Headphones,1,150,01/04/19 10:43,"845 10th St, Atlanta, GA 30301" +150461,Bose SoundSport Headphones,1,99.99,01/15/19 20:40,"194 Dogwood St, Boston, MA 02215" +150462,AA Batteries (4-pack),2,3.84,01/05/19 12:27,"909 11th St, Los Angeles, CA 90001" +150462,AA Batteries (4-pack),2,3.84,01/05/19 12:27,"909 11th St, Los Angeles, CA 90001" +150463,Macbook Pro Laptop,1,1700,01/10/19 19:59,"351 Adams St, San Francisco, CA 94016" +150464,Wired Headphones,1,11.99,01/27/19 23:32,"712 Hickory St, Boston, MA 02215" +150465,USB-C Charging Cable,1,11.95,01/02/19 11:30,"541 Lakeview St, Seattle, WA 98101" +150466,AA Batteries (4-pack),2,3.84,01/31/19 11:23,"961 5th St, Los Angeles, CA 90001" +150467,Apple Airpods Headphones,1,150,01/18/19 12:32,"577 Highland St, Atlanta, GA 30301" +150468,ThinkPad Laptop,1,999.99,01/18/19 08:06,"110 Chestnut St, Portland, ME 04101" +150469,Lightning Charging Cable,2,14.95,01/27/19 16:54,"866 2nd St, San Francisco, CA 94016" +150470,Apple Airpods Headphones,1,150,01/12/19 10:36,"106 Hill St, Seattle, WA 98101" +150471,Google Phone,1,600,01/27/19 12:31,"510 Madison St, New York City, NY 10001" +150472,34in Ultrawide Monitor,1,379.99,01/21/19 17:10,"443 Hill St, New York City, NY 10001" +150473,27in FHD Monitor,1,149.99,01/06/19 04:00,"787 Adams St, Atlanta, GA 30301" +150474,Bose SoundSport Headphones,1,99.99,01/29/19 07:57,"799 Cedar St, Atlanta, GA 30301" +150475,USB-C Charging Cable,1,11.95,01/20/19 12:26,"534 Pine St, San Francisco, CA 94016" +150476,AAA Batteries (4-pack),1,2.99,01/31/19 23:04,"457 Hickory St, San Francisco, CA 94016" +150477,AA Batteries (4-pack),2,3.84,01/13/19 12:21,"622 9th St, San Francisco, CA 94016" +150478,USB-C Charging Cable,1,11.95,01/26/19 00:33,"767 Main St, San Francisco, CA 94016" +150479,Apple Airpods Headphones,1,150,01/05/19 20:22,"927 Adams St, Dallas, TX 75001" +150480,AA Batteries (4-pack),1,3.84,01/29/19 15:31,"93 Pine St, Portland, OR 97035" +150481,Wired Headphones,1,11.99,01/27/19 13:09,"283 North St, Portland, ME 04101" +150482,Lightning Charging Cable,1,14.95,01/31/19 16:16,"979 Lincoln St, Atlanta, GA 30301" +150483,Macbook Pro Laptop,1,1700,01/07/19 09:15,"215 4th St, Dallas, TX 75001" +150484,Apple Airpods Headphones,1,150,01/05/19 12:56,"794 10th St, Los Angeles, CA 90001" +150485,AAA Batteries (4-pack),1,2.99,01/31/19 12:09,"207 9th St, New York City, NY 10001" +150486,27in 4K Gaming Monitor,1,389.99,01/15/19 13:14,"607 2nd St, Los Angeles, CA 90001" +150487,AA Batteries (4-pack),2,3.84,01/19/19 09:17,"985 Dogwood St, San Francisco, CA 94016" +150488,USB-C Charging Cable,1,11.95,01/22/19 18:32,"945 4th St, San Francisco, CA 94016" +150489,Bose SoundSport Headphones,1,99.99,01/04/19 18:13,"363 4th St, New York City, NY 10001" +150490,27in 4K Gaming Monitor,1,389.99,01/18/19 10:46,"783 Meadow St, Austin, TX 73301" +150491,AA Batteries (4-pack),2,3.84,01/15/19 20:22,"722 Hickory St, Los Angeles, CA 90001" +150492,USB-C Charging Cable,1,11.95,01/28/19 21:41,"980 Hill St, Seattle, WA 98101" +150493,AA Batteries (4-pack),2,3.84,01/12/19 10:46,"272 4th St, Boston, MA 02215" +150494,AAA Batteries (4-pack),2,2.99,01/02/19 16:01,"359 Main St, San Francisco, CA 94016" +150495,27in FHD Monitor,1,149.99,01/06/19 10:50,"700 Church St, New York City, NY 10001" +150496,27in 4K Gaming Monitor,1,389.99,01/05/19 17:39,"951 South St, Seattle, WA 98101" +150497,USB-C Charging Cable,1,11.95,01/03/19 20:29,"980 6th St, San Francisco, CA 94016" +150498,27in 4K Gaming Monitor,1,389.99,01/28/19 22:09,"928 Elm St, Los Angeles, CA 90001" +150499,Google Phone,1,600,01/18/19 14:52,"181 Cherry St, Boston, MA 02215" +150500,AA Batteries (4-pack),1,3.84,01/15/19 09:43,"242 5th St, Dallas, TX 75001" +150501,Lightning Charging Cable,1,14.95,01/11/19 20:19,"587 Willow St, Atlanta, GA 30301" +150502,AAA Batteries (4-pack),1,2.99,01/07/19 17:02,"438 Adams St, Los Angeles, CA 90001" +150503,AA Batteries (4-pack),1,3.84,01/31/19 12:17,"774 9th St, New York City, NY 10001" +150504,iPhone,1,700,01/21/19 10:07,"999 12th St, Portland, OR 97035" +150504,Google Phone,1,600,01/21/19 10:07,"999 12th St, Portland, OR 97035" +150505,AAA Batteries (4-pack),1,2.99,01/18/19 08:51,"123 13th St, San Francisco, CA 94016" +150506,USB-C Charging Cable,1,11.95,01/08/19 19:59,"714 Lincoln St, Los Angeles, CA 90001" +150507,Bose SoundSport Headphones,1,99.99,01/15/19 11:43,"536 Meadow St, Austin, TX 73301" +150508,AA Batteries (4-pack),1,3.84,01/23/19 18:12,"933 10th St, San Francisco, CA 94016" +150509,20in Monitor,1,109.99,01/01/19 11:24,"757 Chestnut St, San Francisco, CA 94016" +150510,Lightning Charging Cable,1,14.95,01/17/19 12:59,"277 West St, Los Angeles, CA 90001" +150511,Lightning Charging Cable,1,14.95,01/30/19 15:46,"778 Park St, Boston, MA 02215" +150512,Macbook Pro Laptop,1,1700,01/03/19 13:28,"448 Johnson St, Dallas, TX 75001" +150513,AAA Batteries (4-pack),1,2.99,01/05/19 15:31,"490 Johnson St, Boston, MA 02215" +150514,AAA Batteries (4-pack),1,2.99,01/07/19 21:04,"730 Hickory St, San Francisco, CA 94016" +150515,Lightning Charging Cable,1,14.95,01/28/19 13:26,"156 North St, Atlanta, GA 30301" +150516,34in Ultrawide Monitor,1,379.99,01/12/19 15:12,"233 2nd St, Los Angeles, CA 90001" +150517,Flatscreen TV,1,300,01/06/19 22:03,"654 Willow St, Los Angeles, CA 90001" +150518,Bose SoundSport Headphones,1,99.99,01/25/19 18:28,"692 Cedar St, New York City, NY 10001" +150519,AA Batteries (4-pack),1,3.84,01/11/19 22:23,"905 Park St, Dallas, TX 75001" +150520,Google Phone,1,600,01/08/19 17:53,"989 Maple St, Los Angeles, CA 90001" +150521,27in FHD Monitor,1,149.99,01/12/19 16:13,"435 Adams St, Portland, OR 97035" +150522,USB-C Charging Cable,1,11.95,01/08/19 18:17,"891 Lakeview St, San Francisco, CA 94016" +150523,Lightning Charging Cable,1,14.95,01/28/19 18:06,"365 Lakeview St, San Francisco, CA 94016" +150524,20in Monitor,1,109.99,01/01/19 21:17,"998 8th St, San Francisco, CA 94016" +150525,AAA Batteries (4-pack),1,2.99,01/06/19 20:07,"37 Spruce St, San Francisco, CA 94016" +150526,iPhone,1,700,01/25/19 10:44,"313 Main St, Los Angeles, CA 90001" +150527,AA Batteries (4-pack),1,3.84,01/30/19 09:00,"547 Lincoln St, Los Angeles, CA 90001" +150528,AA Batteries (4-pack),1,3.84,01/18/19 06:59,"887 West St, San Francisco, CA 94016" +150529,AAA Batteries (4-pack),1,2.99,01/26/19 10:39,"154 6th St, San Francisco, CA 94016" +150530,27in FHD Monitor,1,149.99,01/03/19 17:16,"376 Highland St, Seattle, WA 98101" +150531,20in Monitor,1,109.99,01/06/19 19:41,"330 12th St, Los Angeles, CA 90001" +150532,Apple Airpods Headphones,1,150,01/05/19 22:09,"531 River St, Los Angeles, CA 90001" +150533,USB-C Charging Cable,1,11.95,01/26/19 14:04,"780 6th St, San Francisco, CA 94016" +150534,Lightning Charging Cable,1,14.95,01/16/19 15:30,"947 Madison St, Austin, TX 73301" +150535,Apple Airpods Headphones,1,150,01/02/19 23:13,"609 12th St, San Francisco, CA 94016" +150536,Wired Headphones,1,11.99,01/20/19 12:03,"627 South St, Dallas, TX 75001" +150537,Lightning Charging Cable,1,14.95,01/23/19 09:46,"222 9th St, New York City, NY 10001" +150538,AA Batteries (4-pack),1,3.84,01/08/19 00:08,"157 Highland St, New York City, NY 10001" +150539,Google Phone,1,600,01/20/19 16:56,"372 Church St, Los Angeles, CA 90001" +150540,USB-C Charging Cable,1,11.95,01/01/19 08:59,"643 Meadow St, Dallas, TX 75001" +150540,Bose SoundSport Headphones,1,99.99,01/01/19 08:59,"643 Meadow St, Dallas, TX 75001" +150541,AAA Batteries (4-pack),1,2.99,01/08/19 15:35,"176 Chestnut St, Atlanta, GA 30301" +150542,Lightning Charging Cable,1,14.95,01/11/19 12:22,"608 Jackson St, Boston, MA 02215" +150543,Apple Airpods Headphones,1,150,01/17/19 19:15,"127 Sunset St, Atlanta, GA 30301" +150544,27in 4K Gaming Monitor,1,389.99,01/20/19 05:56,"441 Church St, San Francisco, CA 94016" +150545,Wired Headphones,1,11.99,01/05/19 17:34,"205 Maple St, Boston, MA 02215" +150546,Lightning Charging Cable,1,14.95,01/17/19 19:10,"819 Chestnut St, Dallas, TX 75001" +150547,AAA Batteries (4-pack),2,2.99,01/09/19 16:29,"437 9th St, Los Angeles, CA 90001" +150548,Wired Headphones,1,11.99,01/29/19 17:22,"32 Maple St, San Francisco, CA 94016" +150549,Bose SoundSport Headphones,1,99.99,01/17/19 20:43,"882 Elm St, Los Angeles, CA 90001" +150550,AAA Batteries (4-pack),1,2.99,01/31/19 20:03,"731 South St, Atlanta, GA 30301" +150551,27in 4K Gaming Monitor,1,389.99,01/24/19 23:19,"625 River St, San Francisco, CA 94016" +150552,USB-C Charging Cable,1,11.95,01/27/19 12:19,"348 Dogwood St, Austin, TX 73301" +150553,Google Phone,1,600,01/13/19 10:48,"758 South St, San Francisco, CA 94016" +150554,USB-C Charging Cable,1,11.95,01/20/19 15:30,"340 11th St, San Francisco, CA 94016" +150555,Apple Airpods Headphones,1,150,01/12/19 13:04,"384 Cedar St, New York City, NY 10001" +150556,Google Phone,1,600,01/16/19 23:48,"907 Center St, Austin, TX 73301" +150557,Google Phone,1,600,01/22/19 14:59,"53 7th St, Los Angeles, CA 90001" +150557,USB-C Charging Cable,1,11.95,01/22/19 14:59,"53 7th St, Los Angeles, CA 90001" +150558,Lightning Charging Cable,1,14.95,01/17/19 21:48,"101 11th St, San Francisco, CA 94016" +150559,Wired Headphones,1,11.99,01/04/19 09:41,"211 Walnut St, Portland, OR 97035" +150560,Bose SoundSport Headphones,1,99.99,01/02/19 14:21,"937 Adams St, Austin, TX 73301" +150561,Lightning Charging Cable,1,14.95,01/14/19 21:17,"930 Church St, San Francisco, CA 94016" +150562,iPhone,1,700,01/06/19 12:44,"2 Adams St, Atlanta, GA 30301" +150563,USB-C Charging Cable,1,11.95,01/26/19 19:12,"288 Madison St, Portland, OR 97035" +150564,AA Batteries (4-pack),1,3.84,01/31/19 15:00,"820 Maple St, New York City, NY 10001" +150565,Apple Airpods Headphones,1,150,01/20/19 20:50,"776 Highland St, San Francisco, CA 94016" +150566,34in Ultrawide Monitor,1,379.99,01/27/19 10:02,"338 Forest St, San Francisco, CA 94016" +150567,USB-C Charging Cable,1,11.95,01/05/19 20:59,"633 Adams St, San Francisco, CA 94016" +150568,Lightning Charging Cable,2,14.95,01/16/19 15:12,"563 13th St, Dallas, TX 75001" +150568,Google Phone,1,600,01/16/19 15:12,"563 13th St, Dallas, TX 75001" +150569,AAA Batteries (4-pack),1,2.99,01/03/19 17:03,"976 Park St, Los Angeles, CA 90001" +150570,Lightning Charging Cable,1,14.95,01/02/19 17:25,"123 North St, Seattle, WA 98101" +150571,Lightning Charging Cable,1,14.95,01/29/19 11:57,"897 Johnson St, San Francisco, CA 94016" +150572,AAA Batteries (4-pack),1,2.99,01/16/19 18:30,"225 Spruce St, San Francisco, CA 94016" +150573,AAA Batteries (4-pack),1,2.99,01/26/19 08:15,"184 10th St, San Francisco, CA 94016" +150574,USB-C Charging Cable,1,11.95,01/09/19 13:33,"554 Cedar St, Los Angeles, CA 90001" +150575,AAA Batteries (4-pack),1,2.99,01/15/19 11:49,"660 Jefferson St, Boston, MA 02215" +150576,Wired Headphones,1,11.99,01/11/19 19:48,"827 5th St, Austin, TX 73301" +150577,AA Batteries (4-pack),3,3.84,01/15/19 16:15,"108 Jackson St, San Francisco, CA 94016" +150578,34in Ultrawide Monitor,1,379.99,01/16/19 16:35,"333 Washington St, Los Angeles, CA 90001" +150579,iPhone,1,700,01/22/19 21:25,"713 South St, New York City, NY 10001" +150580,AAA Batteries (4-pack),3,2.99,01/14/19 21:08,"579 Lincoln St, San Francisco, CA 94016" +150581,Google Phone,1,600,01/27/19 13:17,"830 Church St, Atlanta, GA 30301" +150582,Lightning Charging Cable,1,14.95,01/24/19 11:50,"373 Hickory St, Portland, OR 97035" +150583,Lightning Charging Cable,1,14.95,01/06/19 16:38,"751 8th St, Los Angeles, CA 90001" +150584,27in 4K Gaming Monitor,1,389.99,01/15/19 12:45,"237 Sunset St, Portland, OR 97035" +150585,Apple Airpods Headphones,1,150,01/04/19 00:12,"482 Lakeview St, Atlanta, GA 30301" +150586,USB-C Charging Cable,1,11.95,01/19/19 12:49,"70 West St, Boston, MA 02215" +150587,Wired Headphones,1,11.99,01/06/19 12:16,"604 11th St, New York City, NY 10001" +150588,Lightning Charging Cable,1,14.95,01/28/19 19:27,"827 West St, Boston, MA 02215" +150589,iPhone,1,700,01/21/19 19:29,"766 Main St, Seattle, WA 98101" +150589,Lightning Charging Cable,1,14.95,01/21/19 19:29,"766 Main St, Seattle, WA 98101" +150590,Flatscreen TV,1,300,01/19/19 21:09,"698 Maple St, San Francisco, CA 94016" +150591,USB-C Charging Cable,1,11.95,01/20/19 07:15,"570 Highland St, San Francisco, CA 94016" +150592,USB-C Charging Cable,1,11.95,01/28/19 11:28,"745 River St, Boston, MA 02215" +150593,Lightning Charging Cable,1,14.95,01/30/19 13:07,"584 Cherry St, Portland, OR 97035" +150594,Wired Headphones,1,11.99,01/14/19 12:34,"862 Church St, Los Angeles, CA 90001" +150595,Lightning Charging Cable,1,14.95,01/11/19 10:49,"102 12th St, Los Angeles, CA 90001" +150596,AAA Batteries (4-pack),1,2.99,01/31/19 18:16,"488 Johnson St, San Francisco, CA 94016" +150597,Apple Airpods Headphones,1,150,01/17/19 13:08,"98 Walnut St, Dallas, TX 75001" +150598,Lightning Charging Cable,1,14.95,01/15/19 18:08,"87 Spruce St, Los Angeles, CA 90001" +150599,Bose SoundSport Headphones,1,99.99,01/20/19 14:22,"96 Johnson St, Dallas, TX 75001" +150600,Wired Headphones,1,11.99,01/16/19 09:22,"246 Lincoln St, Boston, MA 02215" +150601,Bose SoundSport Headphones,1,99.99,01/25/19 15:21,"679 Hickory St, San Francisco, CA 94016" +150602,Wired Headphones,1,11.99,01/19/19 20:06,"621 13th St, New York City, NY 10001" +150603,iPhone,1,700,01/30/19 10:45,"447 Church St, San Francisco, CA 94016" +150603,Lightning Charging Cable,1,14.95,01/30/19 10:45,"447 Church St, San Francisco, CA 94016" +150604,Lightning Charging Cable,1,14.95,01/31/19 18:19,"965 Pine St, San Francisco, CA 94016" +150605,Wired Headphones,1,11.99,01/09/19 09:43,"414 13th St, Portland, OR 97035" +150606,AAA Batteries (4-pack),1,2.99,01/19/19 16:28,"856 West St, Atlanta, GA 30301" +150607,AA Batteries (4-pack),1,3.84,01/13/19 16:58,"996 10th St, Los Angeles, CA 90001" +150608,Google Phone,1,600,01/16/19 14:03,"767 10th St, Los Angeles, CA 90001" +150609,ThinkPad Laptop,1,999.99,01/14/19 16:11,"506 Lakeview St, Los Angeles, CA 90001" +150610,Bose SoundSport Headphones,1,99.99,01/03/19 07:56,"324 Sunset St, San Francisco, CA 94016" +150611,Apple Airpods Headphones,1,150,01/25/19 15:38,"948 Main St, Atlanta, GA 30301" +150612,Bose SoundSport Headphones,1,99.99,01/27/19 11:56,"137 Maple St, Atlanta, GA 30301" +150613,Wired Headphones,1,11.99,01/02/19 09:52,"379 Willow St, New York City, NY 10001" +150614,Lightning Charging Cable,1,14.95,01/10/19 22:44,"13 Pine St, San Francisco, CA 94016" +150615,Apple Airpods Headphones,2,150,01/02/19 03:05,"749 Elm St, Austin, TX 73301" +150616,Flatscreen TV,1,300,01/16/19 17:02,"236 Jefferson St, Los Angeles, CA 90001" +150617,Apple Airpods Headphones,1,150,01/04/19 17:37,"271 12th St, Los Angeles, CA 90001" +150618,Lightning Charging Cable,1,14.95,01/30/19 19:00,"616 Center St, San Francisco, CA 94016" +150619,Flatscreen TV,1,300,01/30/19 20:44,"506 Forest St, San Francisco, CA 94016" +150620,Apple Airpods Headphones,1,150,01/07/19 10:52,"115 Adams St, Los Angeles, CA 90001" +150621,Wired Headphones,1,11.99,01/03/19 22:16,"488 7th St, Los Angeles, CA 90001" +150622,34in Ultrawide Monitor,1,379.99,01/11/19 20:36,"434 Adams St, Los Angeles, CA 90001" +150623,34in Ultrawide Monitor,1,379.99,01/13/19 15:39,"528 River St, Portland, OR 97035" +150624,Wired Headphones,1,11.99,01/12/19 08:49,"283 Spruce St, Los Angeles, CA 90001" +150625,AA Batteries (4-pack),1,3.84,01/15/19 17:01,"684 Jefferson St, San Francisco, CA 94016" +150626,iPhone,1,700,01/30/19 21:11,"605 Cherry St, Portland, OR 97035" +150627,USB-C Charging Cable,1,11.95,01/09/19 00:19,"451 Center St, New York City, NY 10001" +150628,Apple Airpods Headphones,1,150,01/06/19 09:11,"275 Lake St, Los Angeles, CA 90001" +150629,USB-C Charging Cable,1,11.95,01/01/19 11:01,"520 Maple St, Los Angeles, CA 90001" +150629,Apple Airpods Headphones,1,150,01/01/19 11:01,"520 Maple St, Los Angeles, CA 90001" +150630,Bose SoundSport Headphones,1,99.99,01/09/19 17:11,"811 Johnson St, San Francisco, CA 94016" +150630,AA Batteries (4-pack),1,3.84,01/09/19 17:11,"811 Johnson St, San Francisco, CA 94016" +150631,AAA Batteries (4-pack),1,2.99,01/26/19 01:19,"413 North St, Los Angeles, CA 90001" +150632,USB-C Charging Cable,1,11.95,01/06/19 08:23,"678 Center St, Boston, MA 02215" +150633,Wired Headphones,1,11.99,01/02/19 08:13,"695 4th St, Boston, MA 02215" +150634,Wired Headphones,1,11.99,01/10/19 14:24,"449 River St, San Francisco, CA 94016" +150635,Flatscreen TV,1,300,01/14/19 23:02,"619 Forest St, New York City, NY 10001" +150636,AAA Batteries (4-pack),1,2.99,01/08/19 12:21,"647 North St, Atlanta, GA 30301" +150637,Macbook Pro Laptop,1,1700,01/18/19 17:38,"5 7th St, Portland, OR 97035" +150638,Google Phone,1,600,01/30/19 23:45,"732 11th St, Los Angeles, CA 90001" +150639,Bose SoundSport Headphones,1,99.99,01/19/19 19:57,"16 Walnut St, New York City, NY 10001" +150640,USB-C Charging Cable,2,11.95,01/21/19 11:34,"130 Chestnut St, Seattle, WA 98101" +150641,Bose SoundSport Headphones,1,99.99,01/21/19 13:46,"396 Jackson St, Los Angeles, CA 90001" +150642,iPhone,1,700,01/17/19 08:43,"625 Meadow St, San Francisco, CA 94016" +150643,Bose SoundSport Headphones,1,99.99,01/27/19 07:07,"50 Johnson St, Austin, TX 73301" +150644,AA Batteries (4-pack),1,3.84,01/12/19 21:46,"607 10th St, San Francisco, CA 94016" +150645,Lightning Charging Cable,1,14.95,01/09/19 13:31,"957 West St, New York City, NY 10001" +150646,Bose SoundSport Headphones,1,99.99,01/29/19 17:08,"427 Center St, Los Angeles, CA 90001" +150647,AA Batteries (4-pack),1,3.84,01/01/19 09:53,"885 10th St, San Francisco, CA 94016" +150648,Apple Airpods Headphones,1,150,01/13/19 18:37,"590 Church St, San Francisco, CA 94016" +150649,Flatscreen TV,1,300,01/24/19 09:55,"507 1st St, San Francisco, CA 94016" +150650,Bose SoundSport Headphones,1,99.99,01/02/19 20:23,"350 Ridge St, Boston, MA 02215" +150651,Google Phone,1,600,01/19/19 14:04,"822 Church St, Dallas, TX 75001" +150652,27in FHD Monitor,1,149.99,01/24/19 00:02,"894 Elm St, New York City, NY 10001" +150653,Lightning Charging Cable,1,14.95,01/17/19 15:41,"578 Adams St, Portland, OR 97035" +150654,Wired Headphones,1,11.99,01/29/19 16:54,"722 Cherry St, Atlanta, GA 30301" +150655,LG Dryer,1,600.0,01/14/19 18:54,"708 North St, Portland, OR 97035" +150656,USB-C Charging Cable,1,11.95,01/06/19 10:01,"119 Walnut St, Dallas, TX 75001" +150657,USB-C Charging Cable,1,11.95,01/17/19 05:48,"19 2nd St, Boston, MA 02215" +150658,AAA Batteries (4-pack),2,2.99,01/25/19 01:12,"287 4th St, San Francisco, CA 94016" +150659,Wired Headphones,1,11.99,01/19/19 17:06,"907 Lake St, San Francisco, CA 94016" +150660,Apple Airpods Headphones,1,150,01/22/19 17:40,"125 5th St, Dallas, TX 75001" +150661,Wired Headphones,1,11.99,01/07/19 08:31,"173 Elm St, Dallas, TX 75001" +150662,Wired Headphones,1,11.99,01/12/19 20:56,"274 Highland St, Los Angeles, CA 90001" +150663,Lightning Charging Cable,1,14.95,01/30/19 13:36,"732 12th St, Los Angeles, CA 90001" +150664,USB-C Charging Cable,1,11.95,01/31/19 16:07,"265 Center St, San Francisco, CA 94016" +150665,AAA Batteries (4-pack),2,2.99,01/30/19 13:13,"651 Lake St, Dallas, TX 75001" +150666,LG Dryer,1,600.0,01/17/19 22:53,"242 2nd St, Seattle, WA 98101" +150666,34in Ultrawide Monitor,1,379.99,01/17/19 22:53,"242 2nd St, Seattle, WA 98101" +150667,Apple Airpods Headphones,1,150,01/29/19 21:07,"320 Pine St, Dallas, TX 75001" +150668,Lightning Charging Cable,1,14.95,01/11/19 11:38,"125 14th St, Atlanta, GA 30301" +150669,Lightning Charging Cable,1,14.95,01/04/19 08:27,"943 South St, Los Angeles, CA 90001" +150670,Lightning Charging Cable,1,14.95,01/09/19 20:29,"147 Ridge St, Boston, MA 02215" +150671,27in FHD Monitor,1,149.99,01/10/19 19:45,"735 6th St, Portland, OR 97035" +150672,USB-C Charging Cable,1,11.95,01/16/19 14:20,"155 Forest St, Dallas, TX 75001" +150673,20in Monitor,1,109.99,01/23/19 03:42,"153 Wilson St, Dallas, TX 75001" +150674,ThinkPad Laptop,1,999.99,01/28/19 12:20,"147 North St, New York City, NY 10001" +150675,Bose SoundSport Headphones,1,99.99,01/31/19 17:47,"453 Forest St, Portland, OR 97035" +150676,LG Dryer,1,600.0,01/11/19 14:07,"704 10th St, Los Angeles, CA 90001" +150677,Apple Airpods Headphones,1,150,01/21/19 13:53,"319 11th St, Los Angeles, CA 90001" +150678,AA Batteries (4-pack),1,3.84,01/28/19 11:27,"827 Hickory St, San Francisco, CA 94016" +150679,USB-C Charging Cable,1,11.95,01/14/19 10:25,"118 6th St, Los Angeles, CA 90001" +150680,Flatscreen TV,1,300,01/27/19 19:34,"882 Washington St, San Francisco, CA 94016" +150681,Lightning Charging Cable,1,14.95,01/19/19 15:32,"41 Jackson St, Dallas, TX 75001" +150682,Apple Airpods Headphones,1,150,01/01/19 12:57,"435 11th St, Seattle, WA 98101" +150683,USB-C Charging Cable,1,11.95,01/25/19 23:24,"71 Spruce St, New York City, NY 10001" +150684,Macbook Pro Laptop,1,1700,01/09/19 11:49,"967 Hickory St, Atlanta, GA 30301" +150685,Wired Headphones,2,11.99,01/09/19 16:55,"138 West St, Los Angeles, CA 90001" +150686,AAA Batteries (4-pack),1,2.99,01/30/19 00:28,"698 Main St, Boston, MA 02215" +150687,Apple Airpods Headphones,1,150,01/06/19 14:48,"28 14th St, New York City, NY 10001" +150688,AA Batteries (4-pack),1,3.84,01/31/19 12:07,"486 Park St, Atlanta, GA 30301" +150689,Bose SoundSport Headphones,1,99.99,01/31/19 06:37,"63 Jackson St, San Francisco, CA 94016" +150690,ThinkPad Laptop,1,999.99,01/23/19 12:22,"216 Ridge St, San Francisco, CA 94016" +150691,AAA Batteries (4-pack),1,2.99,01/09/19 16:43,"907 West St, Boston, MA 02215" +150692,LG Dryer,1,600.0,01/17/19 10:23,"535 Wilson St, Boston, MA 02215" +150693,USB-C Charging Cable,1,11.95,01/11/19 17:10,"946 Ridge St, Seattle, WA 98101" +150694,34in Ultrawide Monitor,1,379.99,01/14/19 07:51,"937 Jackson St, Atlanta, GA 30301" +150695,Wired Headphones,1,11.99,01/17/19 18:10,"987 Washington St, Atlanta, GA 30301" +150696,AA Batteries (4-pack),1,3.84,01/19/19 13:04,"281 Main St, Austin, TX 73301" +150697,USB-C Charging Cable,1,11.95,01/06/19 11:45,"880 Maple St, San Francisco, CA 94016" +150698,Google Phone,1,600,01/24/19 17:09,"430 12th St, Boston, MA 02215" +150699,Bose SoundSport Headphones,1,99.99,01/13/19 14:46,"372 Highland St, New York City, NY 10001" +150699,AAA Batteries (4-pack),2,2.99,01/13/19 14:46,"372 Highland St, New York City, NY 10001" +150700,LG Washing Machine,1,600.0,01/12/19 17:21,"805 Cedar St, Seattle, WA 98101" +150701,Wired Headphones,1,11.99,01/06/19 09:24,"206 Adams St, San Francisco, CA 94016" +150702,Apple Airpods Headphones,1,150,01/01/19 22:40,"507 11th St, New York City, NY 10001" +150703,27in FHD Monitor,1,149.99,01/08/19 20:42,"70 Highland St, San Francisco, CA 94016" +150704,AA Batteries (4-pack),1,3.84,01/22/19 16:30,"291 Madison St, Dallas, TX 75001" +150705,Apple Airpods Headphones,1,150,01/09/19 02:40,"979 Dogwood St, Seattle, WA 98101" +150706,Bose SoundSport Headphones,1,99.99,01/12/19 21:45,"598 Cedar St, New York City, NY 10001" +150707,Lightning Charging Cable,1,14.95,01/08/19 22:21,"317 14th St, San Francisco, CA 94016" +150708,20in Monitor,1,109.99,01/25/19 19:39,"108 Church St, New York City, NY 10001" +150709,USB-C Charging Cable,1,11.95,01/30/19 07:22,"860 10th St, San Francisco, CA 94016" +150710,Lightning Charging Cable,1,14.95,01/21/19 16:02,"911 Wilson St, Boston, MA 02215" +150711,AAA Batteries (4-pack),1,2.99,01/18/19 00:10,"462 7th St, New York City, NY 10001" +150712,ThinkPad Laptop,1,999.99,01/14/19 22:27,"132 14th St, New York City, NY 10001" +150713,AAA Batteries (4-pack),1,2.99,01/01/19 16:32,"940 River St, San Francisco, CA 94016" +150714,Lightning Charging Cable,1,14.95,01/25/19 16:24,"560 9th St, Los Angeles, CA 90001" +150715,20in Monitor,1,109.99,01/09/19 18:29,"133 Meadow St, San Francisco, CA 94016" +150716,iPhone,1,700,01/04/19 11:47,"464 Cedar St, San Francisco, CA 94016" +150717,Apple Airpods Headphones,1,150,01/22/19 18:59,"560 11th St, Seattle, WA 98101" +150718,Bose SoundSport Headphones,1,99.99,01/28/19 09:38,"782 Sunset St, Boston, MA 02215" +150719,AA Batteries (4-pack),1,3.84,01/25/19 12:15,"993 Cedar St, Portland, ME 04101" +150720,Wired Headphones,1,11.99,01/24/19 13:41,"887 Chestnut St, Atlanta, GA 30301" +150721,Lightning Charging Cable,2,14.95,01/14/19 13:49,"834 Church St, New York City, NY 10001" +150722,Flatscreen TV,1,300,01/25/19 09:02,"451 Ridge St, Portland, OR 97035" +150723,Lightning Charging Cable,1,14.95,01/10/19 01:18,"754 Lakeview St, Austin, TX 73301" +150724,Lightning Charging Cable,1,14.95,01/12/19 02:56,"149 West St, Seattle, WA 98101" +150725,AA Batteries (4-pack),1,3.84,01/17/19 15:55,"575 Jackson St, San Francisco, CA 94016" +150726,Lightning Charging Cable,1,14.95,01/24/19 13:12,"65 Madison St, Los Angeles, CA 90001" +150727,AA Batteries (4-pack),1,3.84,01/03/19 12:39,"786 Willow St, Boston, MA 02215" +150728,Wired Headphones,1,11.99,01/25/19 22:30,"978 Lincoln St, Austin, TX 73301" +150729,20in Monitor,1,109.99,01/29/19 08:00,"439 10th St, Los Angeles, CA 90001" +150730,USB-C Charging Cable,1,11.95,01/21/19 15:46,"383 Washington St, Atlanta, GA 30301" +150731,Google Phone,1,600,01/12/19 07:44,"64 Meadow St, San Francisco, CA 94016" +150732,Google Phone,1,600,01/20/19 21:06,"910 Lincoln St, Boston, MA 02215" +150733,iPhone,1,700,01/24/19 12:35,"538 Chestnut St, Dallas, TX 75001" +150734,34in Ultrawide Monitor,1,379.99,01/11/19 17:04,"290 10th St, New York City, NY 10001" +150735,AAA Batteries (4-pack),1,2.99,01/10/19 12:35,"491 Chestnut St, New York City, NY 10001" +150736,27in 4K Gaming Monitor,1,389.99,01/11/19 13:06,"856 Washington St, San Francisco, CA 94016" +150737,iPhone,1,700,01/27/19 21:34,"384 13th St, Los Angeles, CA 90001" +150738,Apple Airpods Headphones,1,150,01/14/19 06:43,"264 Forest St, San Francisco, CA 94016" +150739,AA Batteries (4-pack),1,3.84,01/18/19 17:03,"539 8th St, New York City, NY 10001" +150740,Macbook Pro Laptop,1,1700,01/11/19 16:48,"837 Johnson St, Atlanta, GA 30301" +150741,AAA Batteries (4-pack),1,2.99,01/14/19 02:54,"235 Wilson St, New York City, NY 10001" +150742,AAA Batteries (4-pack),1,2.99,01/12/19 11:34,"43 4th St, Los Angeles, CA 90001" +150743,Lightning Charging Cable,1,14.95,01/07/19 16:14,"111 Washington St, New York City, NY 10001" +150744,34in Ultrawide Monitor,1,379.99,01/10/19 19:09,"627 2nd St, New York City, NY 10001" +150745,Lightning Charging Cable,1,14.95,01/03/19 23:09,"722 Highland St, Los Angeles, CA 90001" +150746,Wired Headphones,1,11.99,01/11/19 23:57,"759 Lakeview St, Los Angeles, CA 90001" +150747,Vareebadd Phone,1,400,01/26/19 17:22,"361 Madison St, Boston, MA 02215" +150748,Apple Airpods Headphones,1,150,01/25/19 18:34,"920 Meadow St, Los Angeles, CA 90001" +150749,AA Batteries (4-pack),2,3.84,01/07/19 10:51,"405 Church St, Atlanta, GA 30301" +150750,USB-C Charging Cable,1,11.95,01/10/19 22:28,"905 South St, New York City, NY 10001" +150751,AAA Batteries (4-pack),1,2.99,01/01/19 22:26,"280 Sunset St, New York City, NY 10001" +150752,Wired Headphones,1,11.99,01/29/19 11:12,"122 5th St, Los Angeles, CA 90001" +150753,AA Batteries (4-pack),1,3.84,01/09/19 14:57,"939 Hill St, Portland, OR 97035" +150754,AA Batteries (4-pack),1,3.84,01/14/19 21:03,"725 6th St, New York City, NY 10001" +150755,Lightning Charging Cable,1,14.95,01/17/19 14:46,"194 Center St, Los Angeles, CA 90001" +150756,AAA Batteries (4-pack),1,2.99,01/15/19 18:12,"961 Jefferson St, Austin, TX 73301" +150757,34in Ultrawide Monitor,1,379.99,01/22/19 05:01,"164 Cherry St, Portland, OR 97035" +150758,Wired Headphones,1,11.99,01/19/19 17:27,"725 Jefferson St, Atlanta, GA 30301" +150759,Wired Headphones,1,11.99,01/06/19 14:27,"884 Wilson St, Dallas, TX 75001" +150760,Apple Airpods Headphones,1,150,01/17/19 20:32,"42 Hickory St, New York City, NY 10001" +150761,Wired Headphones,1,11.99,01/07/19 10:32,"658 8th St, Boston, MA 02215" +150762,Macbook Pro Laptop,1,1700,01/21/19 12:52,"36 6th St, San Francisco, CA 94016" +150763,Vareebadd Phone,1,400,01/30/19 21:33,"121 North St, Seattle, WA 98101" +150764,Bose SoundSport Headphones,1,99.99,01/30/19 12:30,"748 Jackson St, Los Angeles, CA 90001" +150765,Wired Headphones,1,11.99,01/08/19 04:46,"914 Highland St, Seattle, WA 98101" +150766,Apple Airpods Headphones,1,150,01/14/19 13:50,"174 South St, Boston, MA 02215" +150767,Lightning Charging Cable,1,14.95,01/05/19 10:17,"173 2nd St, Dallas, TX 75001" +150768,AAA Batteries (4-pack),1,2.99,01/17/19 19:18,"788 Forest St, Portland, ME 04101" +150769,AA Batteries (4-pack),2,3.84,01/28/19 20:22,"179 Highland St, Seattle, WA 98101" +150770,USB-C Charging Cable,1,11.95,01/19/19 21:04,"828 5th St, San Francisco, CA 94016" +150771,AAA Batteries (4-pack),1,2.99,01/30/19 23:59,"741 Willow St, Dallas, TX 75001" +150772,Bose SoundSport Headphones,1,99.99,01/29/19 02:03,"320 Walnut St, New York City, NY 10001" +150773,iPhone,1,700,01/16/19 02:18,"216 6th St, San Francisco, CA 94016" +150774,27in 4K Gaming Monitor,1,389.99,01/07/19 18:13,"373 Church St, Los Angeles, CA 90001" +150775,27in 4K Gaming Monitor,1,389.99,01/27/19 11:01,"768 Washington St, Atlanta, GA 30301" +150776,AAA Batteries (4-pack),1,2.99,01/18/19 16:34,"386 Center St, Los Angeles, CA 90001" +150777,Lightning Charging Cable,1,14.95,01/02/19 00:20,"590 1st St, Los Angeles, CA 90001" +150778,Lightning Charging Cable,1,14.95,01/12/19 09:09,"911 13th St, Los Angeles, CA 90001" +150779,Apple Airpods Headphones,1,150,01/29/19 15:05,"456 Lincoln St, Atlanta, GA 30301" +150780,USB-C Charging Cable,1,11.95,01/06/19 23:11,"558 Dogwood St, Seattle, WA 98101" +150781,Lightning Charging Cable,1,14.95,01/13/19 18:11,"367 Spruce St, New York City, NY 10001" +150782,Lightning Charging Cable,1,14.95,01/26/19 15:38,"620 Walnut St, Atlanta, GA 30301" +150783,Lightning Charging Cable,1,14.95,01/13/19 22:51,"733 11th St, Los Angeles, CA 90001" +150784,Wired Headphones,2,11.99,01/23/19 10:30,"493 Church St, Atlanta, GA 30301" +150785,Lightning Charging Cable,1,14.95,01/18/19 13:13,"629 14th St, San Francisco, CA 94016" +150786,Bose SoundSport Headphones,1,99.99,01/11/19 19:02,"50 Main St, Portland, OR 97035" +150787,AA Batteries (4-pack),1,3.84,01/31/19 15:28,"90 Chestnut St, Dallas, TX 75001" +150788,AA Batteries (4-pack),2,3.84,01/07/19 19:21,"337 Jefferson St, Boston, MA 02215" +150789,AA Batteries (4-pack),2,3.84,01/11/19 10:08,"604 Washington St, Boston, MA 02215" +150790,AAA Batteries (4-pack),1,2.99,01/13/19 08:25,"432 Sunset St, New York City, NY 10001" +150791,Macbook Pro Laptop,1,1700,01/18/19 12:15,"655 Wilson St, Atlanta, GA 30301" +150792,Wired Headphones,1,11.99,01/19/19 19:49,"815 Meadow St, Dallas, TX 75001" +150793,Google Phone,1,600,01/01/19 12:24,"583 Hill St, New York City, NY 10001" +150793,Bose SoundSport Headphones,1,99.99,01/01/19 12:24,"583 Hill St, New York City, NY 10001" +150794,34in Ultrawide Monitor,1,379.99,01/30/19 10:45,"679 West St, Boston, MA 02215" +150795,27in FHD Monitor,1,149.99,01/18/19 09:33,"203 Sunset St, New York City, NY 10001" +150796,Flatscreen TV,1,300,01/01/19 10:31,"220 South St, Los Angeles, CA 90001" +150797,AAA Batteries (4-pack),3,2.99,01/04/19 14:50,"112 1st St, San Francisco, CA 94016" +150798,Lightning Charging Cable,1,14.95,01/01/19 12:50,"404 Elm St, New York City, NY 10001" +150799,Vareebadd Phone,1,400,01/14/19 20:19,"818 8th St, New York City, NY 10001" +150800,Lightning Charging Cable,1,14.95,01/23/19 08:35,"393 Sunset St, San Francisco, CA 94016" +150801,AA Batteries (4-pack),3,3.84,01/03/19 23:25,"112 Madison St, San Francisco, CA 94016" +150802,ThinkPad Laptop,1,999.99,01/19/19 17:55,"113 12th St, Boston, MA 02215" +150803,Macbook Pro Laptop,1,1700,01/25/19 19:01,"454 South St, Los Angeles, CA 90001" +150804,AAA Batteries (4-pack),1,2.99,01/29/19 04:59,"297 Lincoln St, Los Angeles, CA 90001" +150805,AA Batteries (4-pack),1,3.84,01/30/19 13:59,"101 Park St, Boston, MA 02215" +150806,USB-C Charging Cable,1,11.95,01/27/19 10:58,"281 12th St, Los Angeles, CA 90001" +150807,iPhone,1,700,01/31/19 12:28,"733 Washington St, San Francisco, CA 94016" +150807,Lightning Charging Cable,1,14.95,01/31/19 12:28,"733 Washington St, San Francisco, CA 94016" +150808,Vareebadd Phone,1,400,01/12/19 06:42,"855 Church St, Los Angeles, CA 90001" +150809,AAA Batteries (4-pack),1,2.99,01/02/19 02:10,"184 Adams St, San Francisco, CA 94016" +150810,Apple Airpods Headphones,1,150,01/12/19 06:27,"554 Adams St, San Francisco, CA 94016" +150811,iPhone,1,700,01/08/19 10:40,"584 Park St, San Francisco, CA 94016" +150811,Lightning Charging Cable,1,14.95,01/08/19 10:40,"584 Park St, San Francisco, CA 94016" +150812,34in Ultrawide Monitor,1,379.99,01/05/19 12:25,"532 Main St, Boston, MA 02215" +150813,34in Ultrawide Monitor,1,379.99,01/21/19 20:19,"193 Chestnut St, Dallas, TX 75001" +150814,AA Batteries (4-pack),1,3.84,01/02/19 15:09,"152 8th St, Los Angeles, CA 90001" +150815,iPhone,1,700,01/16/19 17:42,"172 Hickory St, San Francisco, CA 94016" +150816,USB-C Charging Cable,2,11.95,01/28/19 13:22,"861 West St, Seattle, WA 98101" +150817,Apple Airpods Headphones,1,150,01/30/19 19:35,"192 Jackson St, New York City, NY 10001" +150818,Flatscreen TV,1,300,01/18/19 09:50,"938 11th St, New York City, NY 10001" +150819,Apple Airpods Headphones,1,150,01/01/19 14:46,"376 Highland St, San Francisco, CA 94016" +150820,Macbook Pro Laptop,1,1700,01/12/19 12:12,"994 Willow St, Dallas, TX 75001" +150821,Lightning Charging Cable,2,14.95,01/11/19 17:27,"45 Johnson St, San Francisco, CA 94016" +150822,AAA Batteries (4-pack),1,2.99,01/01/19 19:39,"162 Jefferson St, New York City, NY 10001" +150823,Macbook Pro Laptop,1,1700,01/11/19 23:48,"824 1st St, Atlanta, GA 30301" +150824,AAA Batteries (4-pack),1,2.99,01/30/19 17:57,"189 Church St, Atlanta, GA 30301" +150825,Flatscreen TV,1,300,01/27/19 06:59,"239 Hill St, Boston, MA 02215" +150826,AA Batteries (4-pack),2,3.84,01/18/19 19:40,"235 Hickory St, Austin, TX 73301" +150827,Lightning Charging Cable,1,14.95,01/19/19 14:37,"618 Walnut St, Atlanta, GA 30301" +150828,Bose SoundSport Headphones,1,99.99,01/02/19 21:09,"103 South St, Los Angeles, CA 90001" +150829,Wired Headphones,1,11.99,01/29/19 23:48,"946 Jackson St, San Francisco, CA 94016" +150830,Wired Headphones,1,11.99,01/13/19 18:38,"54 Lake St, Los Angeles, CA 90001" +150831,USB-C Charging Cable,1,11.95,01/25/19 10:02,"11 Wilson St, Los Angeles, CA 90001" +150832,Lightning Charging Cable,3,14.95,01/23/19 14:05,"86 1st St, Dallas, TX 75001" +150833,20in Monitor,1,109.99,01/20/19 22:19,"77 10th St, Atlanta, GA 30301" +150834,AA Batteries (4-pack),1,3.84,01/26/19 07:26,"899 Jackson St, Los Angeles, CA 90001" +150835,AA Batteries (4-pack),1,3.84,01/05/19 20:28,"321 Center St, Los Angeles, CA 90001" +150836,Google Phone,1,600,01/19/19 12:39,"462 Jefferson St, Los Angeles, CA 90001" +150837,Wired Headphones,1,11.99,01/19/19 15:47,"894 Main St, Los Angeles, CA 90001" +150838,USB-C Charging Cable,1,11.95,01/18/19 19:17,"319 Center St, Los Angeles, CA 90001" +150839,AAA Batteries (4-pack),1,2.99,01/18/19 09:50,"558 Church St, New York City, NY 10001" +150840,USB-C Charging Cable,1,11.95,01/15/19 12:02,"435 Hickory St, San Francisco, CA 94016" +150841,USB-C Charging Cable,1,11.95,01/05/19 14:24,"865 Jackson St, Seattle, WA 98101" +150842,Bose SoundSport Headphones,1,99.99,01/17/19 15:33,"840 Main St, Seattle, WA 98101" +150843,AA Batteries (4-pack),1,3.84,01/18/19 20:28,"865 1st St, New York City, NY 10001" +150844,Lightning Charging Cable,2,14.95,01/15/19 13:30,"879 8th St, San Francisco, CA 94016" +150845,Flatscreen TV,1,300,01/17/19 20:28,"471 Church St, Portland, OR 97035" +150846,Apple Airpods Headphones,1,150,01/18/19 07:31,"544 11th St, Austin, TX 73301" +150847,AAA Batteries (4-pack),1,2.99,01/19/19 14:40,"938 North St, San Francisco, CA 94016" +150848,Apple Airpods Headphones,1,150,01/11/19 07:53,"773 Lakeview St, New York City, NY 10001" +150849,AAA Batteries (4-pack),1,2.99,01/15/19 12:45,"958 1st St, San Francisco, CA 94016" +150850,Wired Headphones,1,11.99,01/18/19 12:48,"890 Wilson St, New York City, NY 10001" +150851,Wired Headphones,2,11.99,01/17/19 15:27,"741 Park St, Atlanta, GA 30301" +150852,Lightning Charging Cable,1,14.95,01/15/19 10:44,"448 4th St, San Francisco, CA 94016" +150853,AAA Batteries (4-pack),1,2.99,01/01/19 20:48,"861 Cherry St, Los Angeles, CA 90001" +150854,Apple Airpods Headphones,1,150,01/14/19 08:02,"515 Sunset St, San Francisco, CA 94016" +150855,AAA Batteries (4-pack),1,2.99,01/23/19 00:16,"680 Meadow St, Seattle, WA 98101" +150856,USB-C Charging Cable,1,11.95,01/19/19 11:28,"802 Church St, San Francisco, CA 94016" +150857,ThinkPad Laptop,1,999.99,01/06/19 09:39,"235 Maple St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +150858,20in Monitor,1,109.99,01/09/19 14:32,"264 North St, Los Angeles, CA 90001" +150859,Lightning Charging Cable,1,14.95,01/25/19 21:13,"440 South St, Los Angeles, CA 90001" +150860,Apple Airpods Headphones,1,150,01/16/19 14:30,"953 Wilson St, Austin, TX 73301" +150861,AAA Batteries (4-pack),1,2.99,01/05/19 16:26,"182 7th St, San Francisco, CA 94016" +150862,AA Batteries (4-pack),1,3.84,01/17/19 16:35,"472 Dogwood St, San Francisco, CA 94016" +150863,AAA Batteries (4-pack),1,2.99,01/09/19 14:25,"909 Center St, Los Angeles, CA 90001" +150864,iPhone,1,700,01/16/19 16:58,"651 Highland St, New York City, NY 10001" +150864,Wired Headphones,1,11.99,01/16/19 16:58,"651 Highland St, New York City, NY 10001" +150865,AAA Batteries (4-pack),2,2.99,01/17/19 19:25,"948 12th St, Seattle, WA 98101" +150866,AAA Batteries (4-pack),1,2.99,01/13/19 10:14,"640 Walnut St, Atlanta, GA 30301" +150867,Wired Headphones,1,11.99,01/16/19 20:51,"398 4th St, Austin, TX 73301" +150868,USB-C Charging Cable,1,11.95,01/18/19 20:30,"716 Jackson St, Portland, OR 97035" +150869,AAA Batteries (4-pack),1,2.99,01/23/19 22:19,"990 9th St, Seattle, WA 98101" +150870,Google Phone,1,600,01/05/19 22:36,"570 Johnson St, Los Angeles, CA 90001" +150871,Vareebadd Phone,1,400,01/14/19 21:24,"149 Cedar St, Dallas, TX 75001" +150871,iPhone,1,700,01/14/19 21:24,"149 Cedar St, Dallas, TX 75001" +150872,Apple Airpods Headphones,1,150,01/08/19 22:46,"979 Church St, Portland, ME 04101" +150873,Wired Headphones,1,11.99,01/02/19 09:00,"522 Forest St, Los Angeles, CA 90001" +150874,Lightning Charging Cable,1,14.95,01/07/19 13:58,"102 Willow St, San Francisco, CA 94016" +150875,AA Batteries (4-pack),2,3.84,01/14/19 10:09,"647 6th St, New York City, NY 10001" +150875,27in FHD Monitor,1,149.99,01/14/19 10:09,"647 6th St, New York City, NY 10001" +150876,ThinkPad Laptop,1,999.99,01/09/19 12:47,"251 Main St, San Francisco, CA 94016" +150877,USB-C Charging Cable,1,11.95,01/20/19 11:54,"424 Meadow St, New York City, NY 10001" +150878,Wired Headphones,1,11.99,01/14/19 01:33,"186 Madison St, Los Angeles, CA 90001" +150879,AAA Batteries (4-pack),2,2.99,01/26/19 16:43,"926 North St, Atlanta, GA 30301" +150880,Lightning Charging Cable,1,14.95,01/27/19 13:07,"834 Sunset St, Austin, TX 73301" +150881,Lightning Charging Cable,1,14.95,01/12/19 20:40,"518 Church St, Portland, OR 97035" +150882,27in FHD Monitor,1,149.99,01/27/19 14:17,"263 Elm St, New York City, NY 10001" +150883,Google Phone,1,600,01/18/19 15:04,"698 Ridge St, San Francisco, CA 94016" +150883,USB-C Charging Cable,1,11.95,01/18/19 15:04,"698 Ridge St, San Francisco, CA 94016" +150884,Wired Headphones,1,11.99,01/31/19 15:58,"140 Pine St, San Francisco, CA 94016" +150885,AAA Batteries (4-pack),1,2.99,01/16/19 21:00,"484 7th St, New York City, NY 10001" +150886,AAA Batteries (4-pack),2,2.99,01/17/19 18:30,"190 1st St, Boston, MA 02215" +150887,Apple Airpods Headphones,1,150,01/30/19 13:31,"296 Jefferson St, San Francisco, CA 94016" +150888,Bose SoundSport Headphones,1,99.99,01/14/19 07:08,"488 Jefferson St, Austin, TX 73301" +150889,27in 4K Gaming Monitor,1,389.99,01/16/19 16:28,"544 8th St, Los Angeles, CA 90001" +150890,Flatscreen TV,1,300,01/08/19 22:39,"171 Wilson St, San Francisco, CA 94016" +150891,Lightning Charging Cable,1,14.95,01/21/19 14:44,"103 Maple St, Los Angeles, CA 90001" +150892,Wired Headphones,1,11.99,01/23/19 06:32,"606 Spruce St, Dallas, TX 75001" +150893,Bose SoundSport Headphones,1,99.99,01/02/19 00:02,"197 South St, Atlanta, GA 30301" +150894,USB-C Charging Cable,1,11.95,01/12/19 13:42,"101 Johnson St, Los Angeles, CA 90001" +150895,AA Batteries (4-pack),1,3.84,01/20/19 16:11,"839 11th St, San Francisco, CA 94016" +150896,Lightning Charging Cable,1,14.95,01/19/19 11:43,"869 6th St, San Francisco, CA 94016" +150897,Lightning Charging Cable,1,14.95,01/12/19 08:10,"215 Highland St, Atlanta, GA 30301" +150898,Bose SoundSport Headphones,1,99.99,01/01/19 13:34,"348 Adams St, Los Angeles, CA 90001" +150899,20in Monitor,1,109.99,01/30/19 10:19,"844 South St, Seattle, WA 98101" +150900,AA Batteries (4-pack),1,3.84,01/09/19 20:30,"646 Dogwood St, San Francisco, CA 94016" +150901,AA Batteries (4-pack),1,3.84,01/25/19 06:19,"485 Lakeview St, San Francisco, CA 94016" +150902,AA Batteries (4-pack),1,3.84,01/02/19 19:09,"468 Sunset St, San Francisco, CA 94016" +150903,AAA Batteries (4-pack),2,2.99,01/19/19 20:56,"47 Lake St, San Francisco, CA 94016" +150904,AAA Batteries (4-pack),1,2.99,01/06/19 18:32,"430 Lakeview St, San Francisco, CA 94016" +150905,AAA Batteries (4-pack),1,2.99,01/04/19 22:16,"610 5th St, San Francisco, CA 94016" +150906,34in Ultrawide Monitor,1,379.99,01/15/19 21:58,"412 South St, Seattle, WA 98101" +150907,27in FHD Monitor,1,149.99,01/16/19 19:29,"511 5th St, Boston, MA 02215" +150908,27in FHD Monitor,1,149.99,01/05/19 04:14,"474 Main St, Atlanta, GA 30301" +150909,34in Ultrawide Monitor,1,379.99,01/31/19 16:25,"398 5th St, Boston, MA 02215" +150910,USB-C Charging Cable,1,11.95,01/03/19 13:38,"724 Center St, San Francisco, CA 94016" +150911,ThinkPad Laptop,1,999.99,01/15/19 20:01,"215 Wilson St, Portland, OR 97035" +150912,27in FHD Monitor,1,149.99,01/16/19 11:58,"407 10th St, San Francisco, CA 94016" +150913,AAA Batteries (4-pack),2,2.99,01/25/19 19:48,"251 Lincoln St, Seattle, WA 98101" +150914,AAA Batteries (4-pack),1,2.99,01/22/19 19:52,"210 11th St, San Francisco, CA 94016" +150915,Lightning Charging Cable,1,14.95,01/26/19 14:49,"636 6th St, San Francisco, CA 94016" +150916,Bose SoundSport Headphones,1,99.99,01/17/19 07:31,"712 Wilson St, Portland, OR 97035" +150917,27in 4K Gaming Monitor,1,389.99,01/30/19 09:58,"534 North St, Atlanta, GA 30301" +150918,34in Ultrawide Monitor,1,379.99,01/03/19 15:23,"278 Spruce St, San Francisco, CA 94016" +150919,Apple Airpods Headphones,1,150,01/02/19 14:29,"456 14th St, Los Angeles, CA 90001" +150920,USB-C Charging Cable,1,11.95,01/07/19 21:03,"6 Highland St, New York City, NY 10001" +150921,27in 4K Gaming Monitor,1,389.99,01/31/19 21:18,"900 Church St, San Francisco, CA 94016" +150922,AA Batteries (4-pack),1,3.84,01/04/19 23:18,"825 12th St, Portland, OR 97035" +150923,Bose SoundSport Headphones,1,99.99,01/21/19 11:13,"602 12th St, Boston, MA 02215" +150924,AA Batteries (4-pack),1,3.84,01/30/19 18:28,"537 11th St, Seattle, WA 98101" +150925,AAA Batteries (4-pack),2,2.99,01/12/19 12:33,"432 North St, Austin, TX 73301" +150926,Macbook Pro Laptop,1,1700,01/21/19 20:58,"189 North St, Portland, OR 97035" +150927,27in FHD Monitor,1,149.99,01/20/19 20:54,"157 Johnson St, Dallas, TX 75001" +150928,AA Batteries (4-pack),1,3.84,01/08/19 18:38,"921 Lake St, San Francisco, CA 94016" +150929,Apple Airpods Headphones,1,150,01/07/19 08:29,"460 Jackson St, New York City, NY 10001" +150930,Wired Headphones,1,11.99,01/14/19 11:14,"243 Adams St, New York City, NY 10001" +150931,27in FHD Monitor,1,149.99,01/05/19 20:48,"577 13th St, Los Angeles, CA 90001" +150932,20in Monitor,1,109.99,01/10/19 14:56,"287 Park St, Los Angeles, CA 90001" +150933,AAA Batteries (4-pack),1,2.99,01/06/19 20:10,"778 Wilson St, San Francisco, CA 94016" +150934,34in Ultrawide Monitor,1,379.99,01/17/19 19:18,"598 4th St, Seattle, WA 98101" +150935,AAA Batteries (4-pack),4,2.99,01/13/19 13:52,"565 Jefferson St, Dallas, TX 75001" +150936,AA Batteries (4-pack),2,3.84,01/05/19 23:34,"246 Wilson St, San Francisco, CA 94016" +150937,27in 4K Gaming Monitor,1,389.99,01/29/19 17:18,"100 Cherry St, Portland, OR 97035" +150938,34in Ultrawide Monitor,1,379.99,01/24/19 17:41,"888 Washington St, Los Angeles, CA 90001" +150939,USB-C Charging Cable,1,11.95,01/09/19 10:23,"983 Hill St, Austin, TX 73301" +150940,Bose SoundSport Headphones,1,99.99,01/14/19 22:49,"529 West St, San Francisco, CA 94016" +150941,Apple Airpods Headphones,1,150,01/25/19 15:32,"151 Sunset St, Los Angeles, CA 90001" +150942,AA Batteries (4-pack),2,3.84,01/21/19 14:40,"775 Jackson St, San Francisco, CA 94016" +150943,AAA Batteries (4-pack),1,2.99,01/16/19 00:13,"956 Lake St, San Francisco, CA 94016" +150944,AA Batteries (4-pack),1,3.84,01/06/19 11:12,"737 Sunset St, Seattle, WA 98101" +150945,AA Batteries (4-pack),1,3.84,01/01/19 10:23,"456 Meadow St, Los Angeles, CA 90001" +150946,Lightning Charging Cable,1,14.95,01/06/19 19:07,"494 Jackson St, San Francisco, CA 94016" +150947,AAA Batteries (4-pack),1,2.99,01/08/19 21:49,"926 4th St, Dallas, TX 75001" +150948,AAA Batteries (4-pack),1,2.99,01/23/19 10:46,"814 Adams St, Dallas, TX 75001" +150949,USB-C Charging Cable,1,11.95,01/13/19 20:27,"198 Forest St, Dallas, TX 75001" +150950,Wired Headphones,1,11.99,01/19/19 12:03,"280 Sunset St, Dallas, TX 75001" +150951,USB-C Charging Cable,1,11.95,01/25/19 19:48,"70 Center St, Boston, MA 02215" +150952,Lightning Charging Cable,1,14.95,01/26/19 10:46,"498 Lakeview St, Los Angeles, CA 90001" +150953,Wired Headphones,1,11.99,01/18/19 19:34,"877 Hill St, Los Angeles, CA 90001" +150954,USB-C Charging Cable,1,11.95,01/25/19 05:40,"740 9th St, San Francisco, CA 94016" +150955,ThinkPad Laptop,1,999.99,01/31/19 09:29,"37 Spruce St, New York City, NY 10001" +150956,AAA Batteries (4-pack),1,2.99,01/14/19 15:07,"691 Maple St, Boston, MA 02215" +150957,Wired Headphones,1,11.99,01/21/19 09:21,"369 Washington St, Los Angeles, CA 90001" +150958,Apple Airpods Headphones,1,150,01/16/19 15:58,"698 Chestnut St, New York City, NY 10001" +150959,Lightning Charging Cable,1,14.95,01/29/19 17:27,"520 Lincoln St, Los Angeles, CA 90001" +150960,Wired Headphones,1,11.99,01/16/19 12:36,"667 Washington St, Portland, OR 97035" +150961,USB-C Charging Cable,1,11.95,01/01/19 21:44,"301 Lincoln St, Boston, MA 02215" +150962,Wired Headphones,1,11.99,01/20/19 11:50,"892 South St, San Francisco, CA 94016" +150963,AA Batteries (4-pack),1,3.84,01/31/19 12:08,"867 9th St, Austin, TX 73301" +150964,Lightning Charging Cable,1,14.95,01/08/19 15:49,"536 Meadow St, New York City, NY 10001" +150965,AA Batteries (4-pack),1,3.84,01/17/19 11:31,"803 Spruce St, Seattle, WA 98101" +150966,20in Monitor,1,109.99,01/10/19 16:03,"383 Chestnut St, San Francisco, CA 94016" +150967,Google Phone,1,600,01/11/19 09:14,"879 11th St, Dallas, TX 75001" +150968,USB-C Charging Cable,1,11.95,01/24/19 17:24,"681 Cherry St, San Francisco, CA 94016" +150969,Google Phone,1,600,01/07/19 09:02,"911 Ridge St, Boston, MA 02215" +150970,Bose SoundSport Headphones,1,99.99,01/24/19 20:19,"444 Cedar St, Atlanta, GA 30301" +150971,AA Batteries (4-pack),1,3.84,01/26/19 11:05,"404 Hickory St, Los Angeles, CA 90001" +150972,USB-C Charging Cable,1,11.95,01/08/19 18:47,"128 Church St, Boston, MA 02215" +150973,USB-C Charging Cable,1,11.95,01/27/19 21:26,"276 1st St, New York City, NY 10001" +150974,AA Batteries (4-pack),2,3.84,01/28/19 13:11,"618 Walnut St, Seattle, WA 98101" +150975,AA Batteries (4-pack),1,3.84,01/27/19 14:33,"731 Jackson St, Dallas, TX 75001" +150976,USB-C Charging Cable,1,11.95,01/19/19 06:03,"878 Hill St, Dallas, TX 75001" +150977,AAA Batteries (4-pack),3,2.99,01/17/19 10:46,"525 Wilson St, Dallas, TX 75001" +150978,ThinkPad Laptop,1,999.99,01/23/19 11:08,"151 West St, San Francisco, CA 94016" +,,,,, +150979,Apple Airpods Headphones,1,150,01/30/19 19:28,"985 North St, New York City, NY 10001" +150980,Wired Headphones,1,11.99,01/12/19 20:17,"496 Chestnut St, San Francisco, CA 94016" +150981,Macbook Pro Laptop,1,1700,01/29/19 05:59,"65 9th St, Los Angeles, CA 90001" +150982,Apple Airpods Headphones,1,150,01/23/19 06:37,"66 Maple St, Boston, MA 02215" +150983,Wired Headphones,1,11.99,01/17/19 08:47,"564 1st St, San Francisco, CA 94016" +150984,Lightning Charging Cable,1,14.95,01/06/19 20:49,"896 9th St, Los Angeles, CA 90001" +150985,AAA Batteries (4-pack),2,2.99,01/15/19 11:47,"138 9th St, Portland, OR 97035" +150986,Lightning Charging Cable,1,14.95,01/18/19 15:08,"125 Madison St, San Francisco, CA 94016" +150987,Bose SoundSport Headphones,1,99.99,01/27/19 10:48,"848 Park St, San Francisco, CA 94016" +150988,27in FHD Monitor,1,149.99,01/11/19 15:08,"406 6th St, Atlanta, GA 30301" +150989,USB-C Charging Cable,1,11.95,01/22/19 14:57,"861 11th St, San Francisco, CA 94016" +150990,iPhone,1,700,01/26/19 13:33,"608 Wilson St, San Francisco, CA 94016" +150991,Apple Airpods Headphones,1,150,01/28/19 23:15,"318 Hill St, Boston, MA 02215" +150992,20in Monitor,1,109.99,01/18/19 10:46,"536 Meadow St, Dallas, TX 75001" +150993,Google Phone,1,600,01/29/19 11:54,"845 7th St, Los Angeles, CA 90001" +150994,Bose SoundSport Headphones,1,99.99,01/15/19 17:26,"471 7th St, Austin, TX 73301" +150995,AA Batteries (4-pack),3,3.84,01/30/19 22:16,"777 North St, Los Angeles, CA 90001" +150996,USB-C Charging Cable,1,11.95,01/24/19 14:24,"801 South St, Los Angeles, CA 90001" +150997,Wired Headphones,1,11.99,01/21/19 00:32,"845 Sunset St, San Francisco, CA 94016" +150998,20in Monitor,1,109.99,01/18/19 18:56,"797 Hickory St, San Francisco, CA 94016" +150999,20in Monitor,1,109.99,01/27/19 18:46,"882 Highland St, Austin, TX 73301" +151000,Vareebadd Phone,1,400,01/16/19 08:32,"376 Hill St, Los Angeles, CA 90001" +151000,USB-C Charging Cable,1,11.95,01/16/19 08:32,"376 Hill St, Los Angeles, CA 90001" +151001,AAA Batteries (4-pack),1,2.99,01/22/19 11:25,"877 12th St, Portland, OR 97035" +151002,Lightning Charging Cable,1,14.95,01/16/19 20:14,"166 Cedar St, Dallas, TX 75001" +151003,AAA Batteries (4-pack),2,2.99,01/17/19 12:46,"675 South St, Austin, TX 73301" +151004,Google Phone,1,600,01/04/19 11:56,"837 Spruce St, Austin, TX 73301" +151004,USB-C Charging Cable,1,11.95,01/04/19 11:56,"837 Spruce St, Austin, TX 73301" +151005,Apple Airpods Headphones,1,150,01/30/19 16:30,"946 Highland St, San Francisco, CA 94016" +151006,AAA Batteries (4-pack),2,2.99,01/16/19 14:27,"693 Park St, San Francisco, CA 94016" +151007,Apple Airpods Headphones,1,150,01/31/19 10:59,"824 7th St, Boston, MA 02215" +151008,Wired Headphones,1,11.99,01/08/19 13:24,"834 Forest St, Dallas, TX 75001" +151009,Lightning Charging Cable,1,14.95,01/20/19 09:53,"538 8th St, San Francisco, CA 94016" +151010,Bose SoundSport Headphones,1,99.99,01/25/19 20:52,"287 Hill St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +151011,Bose SoundSport Headphones,1,99.99,01/02/19 17:52,"859 Church St, San Francisco, CA 94016" +151012,27in 4K Gaming Monitor,1,389.99,01/08/19 07:23,"115 South St, Boston, MA 02215" +151013,AA Batteries (4-pack),1,3.84,01/02/19 20:20,"600 Cedar St, Austin, TX 73301" +151014,USB-C Charging Cable,1,11.95,01/15/19 13:28,"209 Washington St, San Francisco, CA 94016" +151015,AAA Batteries (4-pack),3,2.99,01/24/19 12:49,"218 Sunset St, Boston, MA 02215" +151016,Lightning Charging Cable,1,14.95,01/05/19 20:52,"852 Jackson St, Los Angeles, CA 90001" +151017,Apple Airpods Headphones,1,150,01/26/19 08:25,"707 Jackson St, New York City, NY 10001" +151018,USB-C Charging Cable,1,11.95,01/08/19 13:56,"624 North St, San Francisco, CA 94016" +151019,USB-C Charging Cable,1,11.95,01/12/19 10:25,"496 Cherry St, Portland, OR 97035" +151020,ThinkPad Laptop,1,999.99,01/31/19 22:38,"237 14th St, New York City, NY 10001" +151021,Apple Airpods Headphones,1,150,01/25/19 12:23,"35 7th St, Boston, MA 02215" +151022,Lightning Charging Cable,1,14.95,01/11/19 19:06,"647 Dogwood St, Los Angeles, CA 90001" +151022,34in Ultrawide Monitor,1,379.99,01/11/19 19:06,"647 Dogwood St, Los Angeles, CA 90001" +151023,AAA Batteries (4-pack),1,2.99,01/08/19 14:09,"298 Hickory St, Los Angeles, CA 90001" +151024,AAA Batteries (4-pack),2,2.99,01/19/19 15:17,"537 8th St, Portland, ME 04101" +151025,Apple Airpods Headphones,1,150,01/11/19 17:31,"173 Cedar St, New York City, NY 10001" +151026,AAA Batteries (4-pack),2,2.99,01/25/19 12:36,"88 9th St, Atlanta, GA 30301" +151027,iPhone,1,700,01/07/19 17:50,"969 Lakeview St, Los Angeles, CA 90001" +151028,34in Ultrawide Monitor,1,379.99,01/31/19 12:13,"761 8th St, Boston, MA 02215" +151029,USB-C Charging Cable,1,11.95,01/21/19 21:16,"881 Elm St, Los Angeles, CA 90001" +151030,AAA Batteries (4-pack),3,2.99,01/02/19 20:46,"274 Wilson St, Boston, MA 02215" +151031,AA Batteries (4-pack),1,3.84,01/04/19 14:10,"12 Center St, Los Angeles, CA 90001" +151032,27in FHD Monitor,1,149.99,01/04/19 15:36,"303 Highland St, New York City, NY 10001" +151033,AAA Batteries (4-pack),1,2.99,01/30/19 16:07,"150 Cedar St, Seattle, WA 98101" +151034,27in FHD Monitor,1,149.99,01/01/19 20:46,"885 South St, Seattle, WA 98101" +151035,Bose SoundSport Headphones,1,99.99,01/16/19 09:18,"912 Washington St, New York City, NY 10001" +151036,iPhone,1,700,01/21/19 14:17,"549 Park St, Los Angeles, CA 90001" +151036,Lightning Charging Cable,1,14.95,01/21/19 14:17,"549 Park St, Los Angeles, CA 90001" +151037,34in Ultrawide Monitor,1,379.99,01/21/19 22:20,"417 Washington St, Los Angeles, CA 90001" +151038,USB-C Charging Cable,1,11.95,01/27/19 00:02,"903 Jefferson St, Boston, MA 02215" +151039,AA Batteries (4-pack),1,3.84,01/05/19 09:42,"641 1st St, San Francisco, CA 94016" +151040,iPhone,1,700,01/26/19 21:47,"213 Lincoln St, San Francisco, CA 94016" +151041,20in Monitor,1,109.99,01/09/19 10:48,"686 Dogwood St, San Francisco, CA 94016" +151042,Flatscreen TV,1,300,01/08/19 08:08,"168 Jefferson St, Los Angeles, CA 90001" +151043,Wired Headphones,1,11.99,01/10/19 20:21,"615 14th St, San Francisco, CA 94016" +151044,Apple Airpods Headphones,1,150,01/20/19 14:09,"52 Main St, New York City, NY 10001" +151045,Bose SoundSport Headphones,1,99.99,01/14/19 20:05,"604 Jackson St, New York City, NY 10001" +151046,Wired Headphones,1,11.99,01/16/19 17:01,"575 Center St, Portland, OR 97035" +151047,AA Batteries (4-pack),2,3.84,01/08/19 21:51,"321 13th St, Los Angeles, CA 90001" +151048,ThinkPad Laptop,1,999.99,01/18/19 14:28,"498 North St, Los Angeles, CA 90001" +151049,Macbook Pro Laptop,1,1700,01/11/19 10:58,"331 Cherry St, Seattle, WA 98101" +151050,Bose SoundSport Headphones,1,99.99,01/12/19 14:11,"241 Jefferson St, New York City, NY 10001" +151051,Google Phone,1,600,01/16/19 07:54,"431 Wilson St, Boston, MA 02215" +151052,20in Monitor,1,109.99,01/01/19 10:55,"247 North St, Los Angeles, CA 90001" +151053,AAA Batteries (4-pack),1,2.99,01/07/19 10:03,"829 Johnson St, San Francisco, CA 94016" +151054,Wired Headphones,1,11.99,01/06/19 19:23,"814 South St, Seattle, WA 98101" +151055,Apple Airpods Headphones,1,150,01/11/19 16:49,"752 4th St, San Francisco, CA 94016" +151055,AA Batteries (4-pack),1,3.84,01/11/19 16:49,"752 4th St, San Francisco, CA 94016" +151056,Apple Airpods Headphones,1,150,01/21/19 09:20,"516 6th St, Dallas, TX 75001" +151057,USB-C Charging Cable,1,11.95,01/05/19 21:05,"904 Cherry St, New York City, NY 10001" +151058,34in Ultrawide Monitor,1,379.99,01/06/19 13:27,"621 Park St, Los Angeles, CA 90001" +151059,Apple Airpods Headphones,1,150,01/14/19 07:38,"606 Elm St, San Francisco, CA 94016" +151060,Bose SoundSport Headphones,1,99.99,01/08/19 15:40,"183 Forest St, San Francisco, CA 94016" +151061,AAA Batteries (4-pack),1,2.99,01/26/19 17:02,"962 Hill St, Dallas, TX 75001" +151062,34in Ultrawide Monitor,1,379.99,01/07/19 19:20,"974 14th St, Los Angeles, CA 90001" +151063,34in Ultrawide Monitor,1,379.99,01/05/19 15:43,"718 Cedar St, Dallas, TX 75001" +151064,Apple Airpods Headphones,1,150,01/01/19 10:07,"636 Pine St, Dallas, TX 75001" +151065,27in 4K Gaming Monitor,1,389.99,01/22/19 19:48,"360 Park St, Dallas, TX 75001" +151066,Lightning Charging Cable,1,14.95,01/27/19 10:39,"531 River St, San Francisco, CA 94016" +151067,Bose SoundSport Headphones,1,99.99,01/31/19 10:51,"79 1st St, New York City, NY 10001" +151068,LG Washing Machine,1,600.0,01/08/19 22:30,"761 Lincoln St, Boston, MA 02215" +151069,Vareebadd Phone,1,400,01/03/19 23:27,"853 9th St, Los Angeles, CA 90001" +151069,USB-C Charging Cable,1,11.95,01/03/19 23:27,"853 9th St, Los Angeles, CA 90001" +151070,USB-C Charging Cable,1,11.95,01/10/19 12:05,"951 Ridge St, Austin, TX 73301" +151071,Lightning Charging Cable,1,14.95,01/04/19 20:35,"910 9th St, Boston, MA 02215" +151072,Bose SoundSport Headphones,1,99.99,01/05/19 22:14,"611 Walnut St, New York City, NY 10001" +151073,AA Batteries (4-pack),2,3.84,01/26/19 07:31,"911 Meadow St, Dallas, TX 75001" +151074,Flatscreen TV,1,300,01/09/19 10:33,"449 Center St, Boston, MA 02215" +151074,AAA Batteries (4-pack),3,2.99,01/09/19 10:33,"449 Center St, Boston, MA 02215" +151075,Vareebadd Phone,1,400,01/26/19 13:36,"561 14th St, Seattle, WA 98101" +151076,Lightning Charging Cable,1,14.95,01/25/19 23:07,"789 10th St, San Francisco, CA 94016" +151077,Wired Headphones,1,11.99,01/13/19 15:13,"625 River St, Los Angeles, CA 90001" +151078,Apple Airpods Headphones,1,150,01/06/19 18:19,"835 Main St, Atlanta, GA 30301" +151079,AA Batteries (4-pack),1,3.84,01/22/19 00:21,"123 Elm St, New York City, NY 10001" +151080,iPhone,1,700,01/01/19 11:51,"776 6th St, Atlanta, GA 30301" +151080,Lightning Charging Cable,1,14.95,01/01/19 11:51,"776 6th St, Atlanta, GA 30301" +151081,AAA Batteries (4-pack),1,2.99,01/01/19 20:55,"214 14th St, Austin, TX 73301" +151082,iPhone,1,700,01/29/19 13:05,"832 Wilson St, Dallas, TX 75001" +151082,Lightning Charging Cable,1,14.95,01/29/19 13:05,"832 Wilson St, Dallas, TX 75001" +151083,AA Batteries (4-pack),1,3.84,01/07/19 13:20,"631 Chestnut St, Austin, TX 73301" +151084,AA Batteries (4-pack),1,3.84,01/14/19 06:18,"185 Meadow St, San Francisco, CA 94016" +151085,27in FHD Monitor,1,149.99,01/19/19 10:28,"54 Lake St, Boston, MA 02215" +151086,27in 4K Gaming Monitor,1,389.99,01/10/19 04:21,"222 Jefferson St, San Francisco, CA 94016" +151087,Lightning Charging Cable,1,14.95,01/16/19 21:22,"329 Hill St, Seattle, WA 98101" +151088,AAA Batteries (4-pack),1,2.99,01/08/19 17:58,"327 8th St, Boston, MA 02215" +151089,USB-C Charging Cable,1,11.95,01/17/19 13:10,"661 9th St, Dallas, TX 75001" +151090,Apple Airpods Headphones,1,150,01/08/19 13:35,"182 Highland St, Seattle, WA 98101" +151091,AA Batteries (4-pack),1,3.84,01/14/19 15:01,"603 Jefferson St, Portland, OR 97035" +151092,Macbook Pro Laptop,1,1700,01/28/19 08:21,"987 Walnut St, Portland, OR 97035" +151093,Google Phone,1,600,01/18/19 15:17,"287 Elm St, Dallas, TX 75001" +151093,USB-C Charging Cable,1,11.95,01/18/19 15:17,"287 Elm St, Dallas, TX 75001" +151093,Wired Headphones,3,11.99,01/18/19 15:17,"287 Elm St, Dallas, TX 75001" +151094,Lightning Charging Cable,1,14.95,01/08/19 18:02,"954 7th St, Los Angeles, CA 90001" +151095,Bose SoundSport Headphones,1,99.99,01/10/19 17:50,"998 Park St, Dallas, TX 75001" +151096,USB-C Charging Cable,1,11.95,01/29/19 11:10,"809 West St, Atlanta, GA 30301" +151096,Macbook Pro Laptop,1,1700,01/29/19 11:10,"809 West St, Atlanta, GA 30301" +151097,AAA Batteries (4-pack),1,2.99,01/11/19 18:39,"813 Church St, San Francisco, CA 94016" +151098,Macbook Pro Laptop,1,1700,01/28/19 05:42,"748 Cherry St, San Francisco, CA 94016" +151099,Wired Headphones,1,11.99,01/25/19 01:11,"437 South St, Portland, OR 97035" +151100,Apple Airpods Headphones,1,150,01/28/19 09:46,"506 4th St, New York City, NY 10001" +151101,AA Batteries (4-pack),2,3.84,01/28/19 18:27,"25 Highland St, Dallas, TX 75001" +151102,USB-C Charging Cable,1,11.95,01/03/19 09:27,"29 13th St, Los Angeles, CA 90001" +151103,AAA Batteries (4-pack),1,2.99,01/11/19 21:45,"476 Adams St, Dallas, TX 75001" +151104,AAA Batteries (4-pack),1,2.99,01/03/19 22:47,"578 Lincoln St, New York City, NY 10001" +151105,AAA Batteries (4-pack),1,2.99,01/13/19 16:41,"142 Dogwood St, New York City, NY 10001" +151106,Lightning Charging Cable,1,14.95,01/19/19 10:38,"91 Hickory St, San Francisco, CA 94016" +151107,Macbook Pro Laptop,1,1700,01/30/19 16:53,"237 7th St, Atlanta, GA 30301" +151108,iPhone,1,700,01/27/19 23:26,"774 Wilson St, Boston, MA 02215" +151109,34in Ultrawide Monitor,1,379.99,01/16/19 09:00,"603 Hickory St, Portland, OR 97035" +151110,ThinkPad Laptop,1,999.99,01/24/19 17:21,"871 Church St, San Francisco, CA 94016" +151111,Macbook Pro Laptop,1,1700,01/20/19 21:19,"602 Hickory St, Boston, MA 02215" +151112,iPhone,1,700,01/28/19 11:41,"367 Lake St, Dallas, TX 75001" +151113,AAA Batteries (4-pack),1,2.99,01/29/19 12:07,"927 Cedar St, New York City, NY 10001" +151114,USB-C Charging Cable,1,11.95,01/11/19 18:09,"978 Elm St, Atlanta, GA 30301" +151115,AA Batteries (4-pack),2,3.84,01/16/19 14:23,"312 Jackson St, Boston, MA 02215" +151116,27in FHD Monitor,1,149.99,01/24/19 20:36,"578 Church St, New York City, NY 10001" +151117,27in FHD Monitor,1,149.99,01/26/19 11:49,"832 Sunset St, Seattle, WA 98101" +151118,Wired Headphones,1,11.99,01/06/19 11:36,"834 Johnson St, Boston, MA 02215" +151119,Lightning Charging Cable,1,14.95,01/04/19 20:10,"839 Cedar St, San Francisco, CA 94016" +151120,Flatscreen TV,1,300,01/29/19 22:43,"215 2nd St, Boston, MA 02215" +151121,Apple Airpods Headphones,1,150,01/08/19 10:55,"281 River St, Dallas, TX 75001" +151122,USB-C Charging Cable,1,11.95,01/28/19 12:34,"815 Forest St, Portland, OR 97035" +151123,USB-C Charging Cable,1,11.95,01/16/19 19:29,"830 Church St, San Francisco, CA 94016" +151124,AA Batteries (4-pack),2,3.84,01/01/19 16:37,"703 Adams St, Seattle, WA 98101" +151125,Lightning Charging Cable,1,14.95,01/25/19 22:55,"603 Dogwood St, New York City, NY 10001" +151126,USB-C Charging Cable,1,11.95,01/16/19 13:46,"182 Center St, Boston, MA 02215" +151127,Apple Airpods Headphones,1,150,01/16/19 21:08,"273 14th St, Dallas, TX 75001" +151128,Apple Airpods Headphones,1,150,01/02/19 23:46,"852 Meadow St, Portland, OR 97035" +151129,Apple Airpods Headphones,1,150,01/12/19 15:02,"434 14th St, San Francisco, CA 94016" +151130,AAA Batteries (4-pack),2,2.99,01/06/19 16:33,"750 Ridge St, Atlanta, GA 30301" +151131,USB-C Charging Cable,1,11.95,01/25/19 12:51,"193 Meadow St, San Francisco, CA 94016" +151132,AA Batteries (4-pack),2,3.84,01/25/19 21:03,"301 1st St, Los Angeles, CA 90001" +151133,Flatscreen TV,1,300,01/29/19 21:57,"844 Dogwood St, Austin, TX 73301" +151134,AA Batteries (4-pack),1,3.84,01/22/19 14:55,"962 Church St, San Francisco, CA 94016" +151135,27in 4K Gaming Monitor,1,389.99,01/22/19 10:57,"512 Meadow St, Boston, MA 02215" +151136,27in FHD Monitor,1,149.99,01/29/19 18:39,"82 Meadow St, Los Angeles, CA 90001" +151137,AA Batteries (4-pack),1,3.84,01/06/19 07:48,"941 Maple St, Seattle, WA 98101" +151138,Lightning Charging Cable,1,14.95,01/17/19 10:23,"536 Meadow St, Atlanta, GA 30301" +151139,AA Batteries (4-pack),2,3.84,01/09/19 23:09,"440 Chestnut St, Dallas, TX 75001" +151140,Lightning Charging Cable,1,14.95,01/14/19 20:04,"846 5th St, San Francisco, CA 94016" +151141,Macbook Pro Laptop,1,1700,01/15/19 18:06,"98 Ridge St, Dallas, TX 75001" +151142,AAA Batteries (4-pack),2,2.99,01/19/19 21:25,"914 West St, Los Angeles, CA 90001" +151143,Wired Headphones,1,11.99,01/09/19 02:16,"59 Lake St, Los Angeles, CA 90001" +151144,AAA Batteries (4-pack),1,2.99,01/21/19 15:00,"564 Cherry St, New York City, NY 10001" +151145,Lightning Charging Cable,2,14.95,01/07/19 19:55,"26 9th St, Atlanta, GA 30301" +151146,Lightning Charging Cable,1,14.95,01/16/19 19:34,"214 6th St, Dallas, TX 75001" +151147,USB-C Charging Cable,1,11.95,01/13/19 20:41,"696 Adams St, Seattle, WA 98101" +151148,20in Monitor,1,109.99,01/16/19 20:34,"429 Dogwood St, Dallas, TX 75001" +151149,34in Ultrawide Monitor,1,379.99,01/15/19 15:46,"80 Spruce St, San Francisco, CA 94016" +151150,USB-C Charging Cable,1,11.95,01/01/19 19:55,"846 Cherry St, Austin, TX 73301" +151151,AA Batteries (4-pack),1,3.84,01/31/19 14:48,"376 Maple St, Boston, MA 02215" +151152,ThinkPad Laptop,1,999.99,01/21/19 21:32,"129 Dogwood St, Austin, TX 73301" +151153,Apple Airpods Headphones,1,150,01/28/19 17:41,"118 2nd St, New York City, NY 10001" +151154,AAA Batteries (4-pack),1,2.99,01/02/19 02:48,"801 4th St, San Francisco, CA 94016" +151155,iPhone,1,700,01/23/19 05:48,"133 5th St, San Francisco, CA 94016" +151156,Apple Airpods Headphones,1,150,01/31/19 19:58,"901 Johnson St, San Francisco, CA 94016" +151157,27in FHD Monitor,1,149.99,01/06/19 20:30,"859 Hickory St, Dallas, TX 75001" +151158,Apple Airpods Headphones,1,150,01/11/19 09:54,"207 Madison St, Portland, OR 97035" +151159,Wired Headphones,2,11.99,01/05/19 14:33,"513 Highland St, San Francisco, CA 94016" +151160,USB-C Charging Cable,1,11.95,01/24/19 22:53,"872 12th St, New York City, NY 10001" +151161,Google Phone,1,600,01/06/19 03:53,"982 Adams St, Portland, OR 97035" +151162,Wired Headphones,1,11.99,01/25/19 20:16,"314 7th St, Atlanta, GA 30301" +151163,Macbook Pro Laptop,1,1700,01/22/19 13:23,"227 River St, Portland, OR 97035" +151164,20in Monitor,1,109.99,01/01/19 08:40,"575 5th St, San Francisco, CA 94016" +151165,USB-C Charging Cable,1,11.95,01/11/19 21:58,"53 Main St, Atlanta, GA 30301" +151166,Lightning Charging Cable,1,14.95,01/28/19 18:38,"586 6th St, Los Angeles, CA 90001" +151167,Bose SoundSport Headphones,1,99.99,01/23/19 19:02,"117 Maple St, Boston, MA 02215" +151168,AAA Batteries (4-pack),2,2.99,01/27/19 20:59,"792 7th St, San Francisco, CA 94016" +151169,Google Phone,1,600,01/28/19 14:50,"485 Jefferson St, Boston, MA 02215" +151170,iPhone,1,700,01/04/19 20:07,"6 West St, Los Angeles, CA 90001" +151170,Lightning Charging Cable,1,14.95,01/04/19 20:07,"6 West St, Los Angeles, CA 90001" +151171,USB-C Charging Cable,1,11.95,01/04/19 12:13,"586 8th St, Dallas, TX 75001" +151172,Apple Airpods Headphones,1,150,01/15/19 07:30,"998 8th St, Austin, TX 73301" +151173,34in Ultrawide Monitor,1,379.99,01/20/19 21:54,"55 Ridge St, Austin, TX 73301" +151174,Google Phone,1,600,01/15/19 00:12,"733 Church St, Los Angeles, CA 90001" +151175,Apple Airpods Headphones,1,150,01/18/19 22:54,"195 Walnut St, Portland, OR 97035" +151176,AAA Batteries (4-pack),1,2.99,01/18/19 18:47,"995 11th St, Boston, MA 02215" +151177,Wired Headphones,1,11.99,01/19/19 15:42,"731 4th St, Boston, MA 02215" +151178,AA Batteries (4-pack),2,3.84,01/15/19 22:27,"842 9th St, San Francisco, CA 94016" +151179,Wired Headphones,1,11.99,01/02/19 09:14,"173 Madison St, Boston, MA 02215" +151180,AAA Batteries (4-pack),1,2.99,01/15/19 19:33,"261 11th St, Austin, TX 73301" +151181,Lightning Charging Cable,1,14.95,01/26/19 09:23,"587 Hickory St, Boston, MA 02215" +151182,AAA Batteries (4-pack),1,2.99,01/12/19 11:11,"450 Jackson St, Seattle, WA 98101" +151183,Bose SoundSport Headphones,1,99.99,01/10/19 09:48,"302 Chestnut St, San Francisco, CA 94016" +151184,Wired Headphones,1,11.99,01/08/19 09:42,"605 Chestnut St, Boston, MA 02215" +151185,Apple Airpods Headphones,1,150,01/20/19 18:31,"219 Main St, San Francisco, CA 94016" +151186,Apple Airpods Headphones,1,150,01/27/19 20:55,"609 Highland St, San Francisco, CA 94016" +151187,LG Washing Machine,1,600.0,01/20/19 16:40,"515 4th St, Boston, MA 02215" +151188,iPhone,1,700,01/10/19 14:43,"896 Center St, Seattle, WA 98101" +151189,27in FHD Monitor,1,149.99,01/07/19 13:33,"422 Spruce St, Los Angeles, CA 90001" +151190,Lightning Charging Cable,1,14.95,01/03/19 01:25,"282 Adams St, Los Angeles, CA 90001" +151191,USB-C Charging Cable,1,11.95,01/15/19 02:18,"807 Johnson St, Los Angeles, CA 90001" +151192,AAA Batteries (4-pack),1,2.99,01/19/19 13:29,"19 Hickory St, San Francisco, CA 94016" +151193,Wired Headphones,1,11.99,01/23/19 23:28,"821 Main St, Seattle, WA 98101" +151194,AA Batteries (4-pack),1,3.84,01/24/19 08:28,"76 Johnson St, Los Angeles, CA 90001" +151195,AA Batteries (4-pack),2,3.84,01/18/19 21:49,"28 Washington St, San Francisco, CA 94016" +151196,AAA Batteries (4-pack),1,2.99,01/10/19 18:00,"89 Ridge St, San Francisco, CA 94016" +151197,USB-C Charging Cable,1,11.95,01/08/19 07:34,"715 Church St, Atlanta, GA 30301" +151198,AAA Batteries (4-pack),3,2.99,01/02/19 12:38,"560 Center St, Boston, MA 02215" +151199,Apple Airpods Headphones,1,150,01/23/19 23:16,"844 1st St, New York City, NY 10001" +151200,AA Batteries (4-pack),2,3.84,01/26/19 16:52,"789 7th St, San Francisco, CA 94016" +151201,27in 4K Gaming Monitor,1,389.99,01/11/19 17:14,"718 Washington St, Los Angeles, CA 90001" +151202,Google Phone,1,600,01/16/19 11:11,"517 Meadow St, Atlanta, GA 30301" +151202,USB-C Charging Cable,1,11.95,01/16/19 11:11,"517 Meadow St, Atlanta, GA 30301" +151203,AA Batteries (4-pack),1,3.84,01/08/19 16:58,"941 Church St, San Francisco, CA 94016" +151204,Wired Headphones,1,11.99,01/24/19 10:39,"65 Lake St, San Francisco, CA 94016" +151205,AA Batteries (4-pack),1,3.84,01/07/19 18:32,"522 Adams St, San Francisco, CA 94016" +151206,Google Phone,1,600,01/11/19 16:37,"428 Main St, Seattle, WA 98101" +151207,27in 4K Gaming Monitor,1,389.99,01/06/19 17:38,"353 Sunset St, San Francisco, CA 94016" +151208,AAA Batteries (4-pack),1,2.99,01/14/19 16:45,"874 South St, Seattle, WA 98101" +151209,Lightning Charging Cable,1,14.95,01/26/19 14:44,"333 Hickory St, San Francisco, CA 94016" +151210,AA Batteries (4-pack),1,3.84,01/09/19 08:25,"300 8th St, San Francisco, CA 94016" +151211,AA Batteries (4-pack),1,3.84,01/22/19 19:52,"144 Hickory St, Dallas, TX 75001" +151212,Lightning Charging Cable,1,14.95,01/20/19 14:40,"519 Adams St, San Francisco, CA 94016" +151213,27in 4K Gaming Monitor,1,389.99,01/25/19 15:57,"367 14th St, Austin, TX 73301" +151214,AAA Batteries (4-pack),1,2.99,01/25/19 06:04,"995 Jefferson St, San Francisco, CA 94016" +151215,AAA Batteries (4-pack),2,2.99,01/31/19 18:55,"147 Adams St, Seattle, WA 98101" +151216,27in FHD Monitor,1,149.99,01/19/19 12:16,"771 Main St, San Francisco, CA 94016" +151217,Wired Headphones,1,11.99,01/14/19 17:52,"544 Lincoln St, Boston, MA 02215" +151218,Apple Airpods Headphones,1,150,01/30/19 10:12,"232 Sunset St, Los Angeles, CA 90001" +151219,Flatscreen TV,1,300,01/03/19 19:18,"700 12th St, Seattle, WA 98101" +151220,Bose SoundSport Headphones,1,99.99,01/16/19 11:52,"401 1st St, San Francisco, CA 94016" +151221,34in Ultrawide Monitor,1,379.99,01/03/19 14:08,"477 Hill St, Dallas, TX 75001" +151222,Macbook Pro Laptop,1,1700,01/19/19 15:15,"201 Sunset St, San Francisco, CA 94016" +151223,Wired Headphones,1,11.99,01/24/19 20:09,"647 2nd St, San Francisco, CA 94016" +151224,iPhone,1,700,01/09/19 17:54,"644 Cherry St, Atlanta, GA 30301" +151225,Bose SoundSport Headphones,1,99.99,01/08/19 20:38,"825 9th St, San Francisco, CA 94016" +151226,Wired Headphones,1,11.99,01/09/19 22:24,"548 Lincoln St, Dallas, TX 75001" +151227,Wired Headphones,1,11.99,01/24/19 19:57,"934 6th St, Austin, TX 73301" +151228,27in FHD Monitor,1,149.99,01/16/19 12:33,"71 14th St, Portland, OR 97035" +151229,Wired Headphones,2,11.99,01/14/19 20:47,"935 South St, Los Angeles, CA 90001" +151230,Lightning Charging Cable,1,14.95,01/01/19 19:11,"686 Walnut St, San Francisco, CA 94016" +151231,Wired Headphones,1,11.99,01/10/19 07:59,"210 Park St, San Francisco, CA 94016" +151232,Apple Airpods Headphones,1,150,01/13/19 07:30,"340 Maple St, Atlanta, GA 30301" +151233,AA Batteries (4-pack),1,3.84,01/05/19 18:49,"476 Center St, San Francisco, CA 94016" +151234,Google Phone,1,600,01/13/19 11:39,"275 Wilson St, San Francisco, CA 94016" +151235,Wired Headphones,2,11.99,01/12/19 14:32,"125 11th St, Portland, ME 04101" +151236,Lightning Charging Cable,1,14.95,01/15/19 20:14,"952 Wilson St, San Francisco, CA 94016" +151237,AA Batteries (4-pack),5,3.84,01/27/19 20:55,"860 Jefferson St, Seattle, WA 98101" +151238,AAA Batteries (4-pack),1,2.99,01/30/19 17:08,"249 8th St, Portland, OR 97035" +151239,AAA Batteries (4-pack),2,2.99,01/02/19 12:00,"554 Center St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +151240,ThinkPad Laptop,1,999.99,01/31/19 15:40,"805 6th St, Dallas, TX 75001" +151241,34in Ultrawide Monitor,1,379.99,01/22/19 20:00,"906 6th St, San Francisco, CA 94016" +151242,USB-C Charging Cable,1,11.95,01/21/19 18:07,"763 2nd St, Dallas, TX 75001" +151243,AAA Batteries (4-pack),1,2.99,01/15/19 08:02,"790 12th St, Atlanta, GA 30301" +151244,Wired Headphones,1,11.99,01/13/19 17:16,"677 Elm St, San Francisco, CA 94016" +151245,27in FHD Monitor,1,149.99,01/09/19 11:13,"750 Ridge St, Dallas, TX 75001" +151246,AAA Batteries (4-pack),1,2.99,01/06/19 16:03,"321 9th St, Dallas, TX 75001" +151247,Lightning Charging Cable,1,14.95,01/26/19 00:44,"987 Chestnut St, Boston, MA 02215" +151248,Wired Headphones,1,11.99,01/14/19 17:41,"42 13th St, Dallas, TX 75001" +151249,AA Batteries (4-pack),2,3.84,01/01/19 14:43,"213 Spruce St, Los Angeles, CA 90001" +151250,Apple Airpods Headphones,1,150,01/22/19 12:08,"978 Lakeview St, Seattle, WA 98101" +151251,Wired Headphones,1,11.99,01/14/19 07:19,"870 Washington St, San Francisco, CA 94016" +151252,27in FHD Monitor,1,149.99,01/18/19 18:51,"526 Lakeview St, Dallas, TX 75001" +151253,USB-C Charging Cable,2,11.95,01/29/19 12:00,"969 5th St, Los Angeles, CA 90001" +151254,Wired Headphones,1,11.99,01/15/19 22:22,"901 Wilson St, New York City, NY 10001" +151255,AA Batteries (4-pack),3,3.84,01/06/19 08:23,"665 Pine St, San Francisco, CA 94016" +151255,AA Batteries (4-pack),1,3.84,01/06/19 08:23,"665 Pine St, San Francisco, CA 94016" +151256,Google Phone,1,600,01/06/19 12:45,"593 Hickory St, San Francisco, CA 94016" +151257,Lightning Charging Cable,1,14.95,01/24/19 19:44,"279 Hill St, Los Angeles, CA 90001" +151258,27in FHD Monitor,1,149.99,01/31/19 18:04,"365 2nd St, Atlanta, GA 30301" +151259,Google Phone,1,600,01/10/19 13:24,"209 Center St, Portland, ME 04101" +151259,USB-C Charging Cable,2,11.95,01/10/19 13:24,"209 Center St, Portland, ME 04101" +151259,Wired Headphones,1,11.99,01/10/19 13:24,"209 Center St, Portland, ME 04101" +151260,Flatscreen TV,1,300,01/28/19 08:49,"528 Madison St, Atlanta, GA 30301" +151261,27in FHD Monitor,2,149.99,01/11/19 18:24,"263 Ridge St, New York City, NY 10001" +151262,USB-C Charging Cable,2,11.95,01/01/19 20:14,"678 Forest St, New York City, NY 10001" +151263,iPhone,1,700,01/17/19 03:09,"832 Meadow St, Los Angeles, CA 90001" +151264,34in Ultrawide Monitor,1,379.99,01/18/19 14:57,"340 4th St, New York City, NY 10001" +151265,AAA Batteries (4-pack),3,2.99,01/09/19 18:52,"822 Adams St, San Francisco, CA 94016" +151266,34in Ultrawide Monitor,1,379.99,01/04/19 12:56,"575 4th St, New York City, NY 10001" +151267,27in FHD Monitor,1,149.99,01/13/19 01:45,"924 1st St, San Francisco, CA 94016" +151268,LG Washing Machine,1,600.0,01/28/19 12:02,"145 10th St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +151269,Wired Headphones,1,11.99,01/01/19 10:16,"291 Adams St, New York City, NY 10001" +151270,iPhone,1,700,01/01/19 17:56,"38 6th St, San Francisco, CA 94016" +151271,Bose SoundSport Headphones,1,99.99,01/18/19 18:30,"917 13th St, Los Angeles, CA 90001" +151272,Macbook Pro Laptop,1,1700,01/11/19 21:49,"924 Church St, Atlanta, GA 30301" +151273,USB-C Charging Cable,1,11.95,01/18/19 08:59,"409 Forest St, Atlanta, GA 30301" +151274,Macbook Pro Laptop,1,1700,01/14/19 13:49,"30 13th St, Boston, MA 02215" +151275,Wired Headphones,1,11.99,01/22/19 09:51,"901 5th St, Los Angeles, CA 90001" +151276,Lightning Charging Cable,1,14.95,01/11/19 17:22,"131 Lake St, New York City, NY 10001" +151277,Apple Airpods Headphones,1,150,01/03/19 10:38,"294 Cherry St, San Francisco, CA 94016" +151278,34in Ultrawide Monitor,1,379.99,01/13/19 19:25,"722 Willow St, Portland, OR 97035" +151279,ThinkPad Laptop,1,999.99,01/06/19 09:27,"484 Johnson St, San Francisco, CA 94016" +151280,AA Batteries (4-pack),1,3.84,01/11/19 19:44,"315 Sunset St, New York City, NY 10001" +151281,Wired Headphones,1,11.99,01/27/19 21:18,"439 North St, Seattle, WA 98101" +151282,27in FHD Monitor,1,149.99,01/20/19 23:28,"840 South St, Portland, OR 97035" +151283,Bose SoundSport Headphones,1,99.99,01/20/19 17:41,"768 Adams St, San Francisco, CA 94016" +151284,USB-C Charging Cable,2,11.95,01/17/19 20:02,"12 6th St, San Francisco, CA 94016" +151285,Apple Airpods Headphones,1,150,01/07/19 16:14,"601 7th St, San Francisco, CA 94016" +151286,AAA Batteries (4-pack),2,2.99,01/19/19 18:03,"599 5th St, Dallas, TX 75001" +151287,Flatscreen TV,1,300,01/16/19 08:06,"852 Walnut St, Dallas, TX 75001" +151288,Apple Airpods Headphones,1,150,01/21/19 22:56,"325 Jackson St, Boston, MA 02215" +151289,AA Batteries (4-pack),1,3.84,01/25/19 17:32,"877 Jefferson St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +151290,AAA Batteries (4-pack),3,2.99,01/30/19 18:12,"161 10th St, New York City, NY 10001" +151291,LG Dryer,1,600.0,01/16/19 17:58,"141 Cherry St, Dallas, TX 75001" +151292,Apple Airpods Headphones,1,150,01/10/19 16:23,"632 West St, Boston, MA 02215" +151293,AAA Batteries (4-pack),1,2.99,01/28/19 11:37,"914 Chestnut St, San Francisco, CA 94016" +151294,Wired Headphones,2,11.99,01/17/19 21:49,"983 Jefferson St, New York City, NY 10001" +151295,Lightning Charging Cable,1,14.95,01/27/19 13:40,"15 Ridge St, Atlanta, GA 30301" +151296,27in 4K Gaming Monitor,1,389.99,01/14/19 11:33,"702 Lake St, San Francisco, CA 94016" +151297,Wired Headphones,1,11.99,01/27/19 16:40,"245 1st St, New York City, NY 10001" +151298,AAA Batteries (4-pack),1,2.99,01/16/19 14:31,"628 Center St, San Francisco, CA 94016" +151299,Wired Headphones,1,11.99,01/25/19 06:19,"310 14th St, Dallas, TX 75001" +151300,34in Ultrawide Monitor,1,379.99,01/12/19 11:32,"372 Church St, Boston, MA 02215" +151301,AAA Batteries (4-pack),1,2.99,01/11/19 21:18,"628 South St, Portland, ME 04101" +151302,USB-C Charging Cable,1,11.95,01/16/19 15:46,"971 Main St, Dallas, TX 75001" +151303,Flatscreen TV,1,300,01/30/19 11:32,"407 Willow St, Portland, OR 97035" +151304,Lightning Charging Cable,1,14.95,01/27/19 16:06,"205 Walnut St, Los Angeles, CA 90001" +151305,Apple Airpods Headphones,1,150,01/14/19 11:07,"726 Lakeview St, San Francisco, CA 94016" +151306,Wired Headphones,1,11.99,01/03/19 18:34,"458 Church St, Austin, TX 73301" +151307,34in Ultrawide Monitor,1,379.99,01/16/19 13:32,"252 West St, San Francisco, CA 94016" +151308,Bose SoundSport Headphones,1,99.99,01/14/19 01:12,"472 6th St, Los Angeles, CA 90001" +151309,27in 4K Gaming Monitor,1,389.99,01/26/19 14:43,"860 Pine St, Austin, TX 73301" +151310,Bose SoundSport Headphones,1,99.99,01/07/19 11:17,"535 Willow St, Boston, MA 02215" +151311,AAA Batteries (4-pack),2,2.99,01/19/19 21:03,"700 5th St, Seattle, WA 98101" +151312,AA Batteries (4-pack),1,3.84,01/06/19 12:53,"105 Chestnut St, Seattle, WA 98101" +151313,20in Monitor,1,109.99,01/24/19 15:48,"619 7th St, Boston, MA 02215" +151314,USB-C Charging Cable,1,11.95,01/14/19 15:24,"945 Lake St, Austin, TX 73301" +151315,Apple Airpods Headphones,1,150,01/19/19 10:26,"919 Sunset St, Portland, OR 97035" +151316,Wired Headphones,1,11.99,01/20/19 19:41,"206 2nd St, Los Angeles, CA 90001" +151317,Wired Headphones,1,11.99,01/05/19 13:13,"148 Ridge St, New York City, NY 10001" +151318,Bose SoundSport Headphones,1,99.99,01/08/19 13:19,"823 11th St, Atlanta, GA 30301" +151319,Apple Airpods Headphones,1,150,01/14/19 11:43,"247 Ridge St, Boston, MA 02215" +151320,27in FHD Monitor,1,149.99,01/29/19 23:21,"519 1st St, Los Angeles, CA 90001" +151320,27in FHD Monitor,1,149.99,01/29/19 23:21,"519 1st St, Los Angeles, CA 90001" +151321,Apple Airpods Headphones,1,150,01/10/19 18:39,"266 7th St, New York City, NY 10001" +151322,Google Phone,1,600,01/17/19 15:01,"763 Lakeview St, Seattle, WA 98101" +151323,USB-C Charging Cable,1,11.95,01/22/19 20:47,"616 Lakeview St, Boston, MA 02215" +151324,AAA Batteries (4-pack),2,2.99,01/08/19 17:47,"891 6th St, San Francisco, CA 94016" +151324,AA Batteries (4-pack),1,3.84,01/08/19 17:47,"891 6th St, San Francisco, CA 94016" +151325,AAA Batteries (4-pack),5,2.99,01/23/19 07:39,"811 Meadow St, Seattle, WA 98101" +151326,AAA Batteries (4-pack),2,2.99,01/16/19 12:37,"145 Walnut St, San Francisco, CA 94016" +151327,Flatscreen TV,1,300,01/15/19 20:18,"535 Washington St, Atlanta, GA 30301" +151328,AA Batteries (4-pack),1,3.84,01/28/19 12:38,"457 Ridge St, Boston, MA 02215" +151329,Apple Airpods Headphones,1,150,01/25/19 23:25,"665 Main St, Los Angeles, CA 90001" +151330,Macbook Pro Laptop,1,1700,01/08/19 19:00,"777 2nd St, Atlanta, GA 30301" +151331,Lightning Charging Cable,2,14.95,01/16/19 13:31,"956 12th St, Atlanta, GA 30301" +151332,Lightning Charging Cable,1,14.95,01/31/19 12:25,"583 Cedar St, San Francisco, CA 94016" +151333,34in Ultrawide Monitor,1,379.99,01/31/19 10:01,"377 Church St, San Francisco, CA 94016" +151334,27in 4K Gaming Monitor,1,389.99,01/19/19 13:40,"380 Church St, Boston, MA 02215" +151335,AA Batteries (4-pack),1,3.84,01/12/19 13:29,"289 Main St, San Francisco, CA 94016" +151336,AAA Batteries (4-pack),1,2.99,01/16/19 17:28,"298 Meadow St, New York City, NY 10001" +151337,AA Batteries (4-pack),1,3.84,01/28/19 21:59,"799 Sunset St, Dallas, TX 75001" +151338,Apple Airpods Headphones,1,150,01/12/19 10:55,"935 Lakeview St, San Francisco, CA 94016" +151339,27in FHD Monitor,1,149.99,01/17/19 10:35,"601 Madison St, New York City, NY 10001" +151340,AA Batteries (4-pack),1,3.84,01/14/19 18:57,"556 South St, Boston, MA 02215" +151341,USB-C Charging Cable,1,11.95,01/05/19 11:00,"202 Spruce St, San Francisco, CA 94016" +151342,Google Phone,1,600,01/28/19 08:31,"107 Cherry St, San Francisco, CA 94016" +151343,Apple Airpods Headphones,1,150,01/19/19 23:12,"194 Adams St, Seattle, WA 98101" +151344,Flatscreen TV,1,300,01/09/19 10:56,"137 Lakeview St, Boston, MA 02215" +151345,AA Batteries (4-pack),1,3.84,01/25/19 16:30,"684 Ridge St, San Francisco, CA 94016" +151346,LG Washing Machine,1,600.0,01/25/19 11:13,"580 Lakeview St, San Francisco, CA 94016" +151347,Bose SoundSport Headphones,1,99.99,01/17/19 12:55,"691 West St, Dallas, TX 75001" +151348,Google Phone,1,600,01/08/19 13:25,"691 Johnson St, Los Angeles, CA 90001" +151349,27in FHD Monitor,1,149.99,01/13/19 22:37,"381 Washington St, San Francisco, CA 94016" +151350,AAA Batteries (4-pack),1,2.99,01/01/19 12:05,"217 South St, Boston, MA 02215" +151351,AA Batteries (4-pack),1,3.84,01/22/19 14:03,"692 Willow St, San Francisco, CA 94016" +151352,Wired Headphones,2,11.99,01/13/19 19:32,"461 Jackson St, New York City, NY 10001" +151353,USB-C Charging Cable,1,11.95,01/05/19 23:50,"968 Jefferson St, Austin, TX 73301" +151354,Vareebadd Phone,1,400,01/02/19 01:07,"536 Madison St, Boston, MA 02215" +151354,USB-C Charging Cable,1,11.95,01/02/19 01:07,"536 Madison St, Boston, MA 02215" +151355,iPhone,1,700,01/28/19 15:23,"55 Johnson St, New York City, NY 10001" +151355,Lightning Charging Cable,1,14.95,01/28/19 15:23,"55 Johnson St, New York City, NY 10001" +151356,AA Batteries (4-pack),4,3.84,01/06/19 12:00,"555 Ridge St, Portland, OR 97035" +151357,27in 4K Gaming Monitor,1,389.99,01/20/19 22:05,"533 Lincoln St, San Francisco, CA 94016" +151358,AAA Batteries (4-pack),1,2.99,01/05/19 13:47,"236 Hickory St, Dallas, TX 75001" +151359,ThinkPad Laptop,1,999.99,01/26/19 12:34,"750 Hill St, Los Angeles, CA 90001" +151360,USB-C Charging Cable,1,11.95,01/01/19 13:55,"487 Cherry St, Austin, TX 73301" +151361,AA Batteries (4-pack),1,3.84,01/23/19 08:28,"683 River St, New York City, NY 10001" +151362,Wired Headphones,1,11.99,01/03/19 00:01,"982 Church St, Los Angeles, CA 90001" +151363,Lightning Charging Cable,1,14.95,01/10/19 10:38,"244 13th St, Boston, MA 02215" +151364,AA Batteries (4-pack),6,3.84,01/21/19 12:03,"931 1st St, San Francisco, CA 94016" +151365,Flatscreen TV,1,300,01/01/19 19:08,"782 Meadow St, New York City, NY 10001" +151366,USB-C Charging Cable,1,11.95,01/17/19 13:57,"25 North St, Seattle, WA 98101" +151367,Google Phone,1,600,01/07/19 18:54,"836 8th St, San Francisco, CA 94016" +151368,27in FHD Monitor,1,149.99,01/13/19 16:59,"143 Washington St, Atlanta, GA 30301" +151369,34in Ultrawide Monitor,1,379.99,01/31/19 10:11,"218 Madison St, Dallas, TX 75001" +151370,AA Batteries (4-pack),1,3.84,01/26/19 21:55,"294 Adams St, Atlanta, GA 30301" +151371,Bose SoundSport Headphones,1,99.99,01/09/19 06:06,"108 Jackson St, San Francisco, CA 94016" +151372,AAA Batteries (4-pack),1,2.99,01/28/19 13:00,"967 Chestnut St, San Francisco, CA 94016" +151373,Bose SoundSport Headphones,1,99.99,01/20/19 13:33,"614 Spruce St, Los Angeles, CA 90001" +151373,Lightning Charging Cable,1,14.95,01/20/19 13:33,"614 Spruce St, Los Angeles, CA 90001" +151374,Flatscreen TV,1,300,01/15/19 14:05,"871 Dogwood St, Seattle, WA 98101" +151375,Vareebadd Phone,1,400,01/24/19 17:53,"949 13th St, San Francisco, CA 94016" +151376,AAA Batteries (4-pack),1,2.99,01/15/19 11:28,"369 11th St, Los Angeles, CA 90001" +151377,Lightning Charging Cable,1,14.95,01/08/19 19:41,"16 Jefferson St, Los Angeles, CA 90001" +151378,27in 4K Gaming Monitor,1,389.99,01/21/19 14:53,"13 Main St, Dallas, TX 75001" +151379,Flatscreen TV,1,300,01/20/19 17:05,"89 West St, Los Angeles, CA 90001" +151380,AA Batteries (4-pack),2,3.84,01/20/19 11:23,"490 Cedar St, Boston, MA 02215" +151381,AA Batteries (4-pack),1,3.84,01/06/19 18:32,"298 Washington St, Seattle, WA 98101" +151382,20in Monitor,1,109.99,01/22/19 08:08,"707 Elm St, San Francisco, CA 94016" +151383,AA Batteries (4-pack),2,3.84,01/04/19 18:38,"715 Highland St, Seattle, WA 98101" +151384,USB-C Charging Cable,1,11.95,01/10/19 06:47,"370 Adams St, New York City, NY 10001" +151385,AAA Batteries (4-pack),1,2.99,01/03/19 15:32,"614 West St, Los Angeles, CA 90001" +151386,27in FHD Monitor,1,149.99,01/12/19 07:24,"816 Walnut St, Los Angeles, CA 90001" +151387,iPhone,1,700,01/06/19 21:20,"933 Ridge St, Los Angeles, CA 90001" +151387,Lightning Charging Cable,1,14.95,01/06/19 21:20,"933 Ridge St, Los Angeles, CA 90001" +151388,27in FHD Monitor,1,149.99,01/19/19 22:04,"825 Elm St, Boston, MA 02215" +151389,Bose SoundSport Headphones,1,99.99,01/06/19 12:24,"174 13th St, San Francisco, CA 94016" +151390,34in Ultrawide Monitor,1,379.99,01/09/19 14:33,"113 Madison St, Los Angeles, CA 90001" +151391,AAA Batteries (4-pack),1,2.99,01/15/19 20:21,"799 7th St, Atlanta, GA 30301" +151392,iPhone,1,700,01/03/19 12:37,"351 Sunset St, Boston, MA 02215" +151393,Wired Headphones,1,11.99,01/25/19 07:55,"774 Hickory St, New York City, NY 10001" +151394,Lightning Charging Cable,1,14.95,01/05/19 16:26,"884 Ridge St, San Francisco, CA 94016" +151395,AAA Batteries (4-pack),5,2.99,01/27/19 02:11,"638 13th St, Los Angeles, CA 90001" +151396,27in FHD Monitor,1,149.99,01/27/19 21:42,"121 North St, Austin, TX 73301" +151397,Apple Airpods Headphones,1,150,01/22/19 09:11,"394 7th St, Boston, MA 02215" +151398,Apple Airpods Headphones,1,150,01/15/19 20:09,"436 Hickory St, Austin, TX 73301" +151399,Apple Airpods Headphones,1,150,01/21/19 16:23,"807 Sunset St, Los Angeles, CA 90001" +151400,USB-C Charging Cable,1,11.95,01/19/19 19:14,"663 Hickory St, San Francisco, CA 94016" +151401,27in 4K Gaming Monitor,1,389.99,01/24/19 06:50,"702 Lakeview St, Los Angeles, CA 90001" +151402,USB-C Charging Cable,1,11.95,01/05/19 15:03,"272 Highland St, New York City, NY 10001" +151402,27in 4K Gaming Monitor,1,389.99,01/05/19 15:03,"272 Highland St, New York City, NY 10001" +151403,Lightning Charging Cable,1,14.95,01/31/19 23:29,"863 Forest St, San Francisco, CA 94016" +151404,AA Batteries (4-pack),1,3.84,01/21/19 09:16,"486 Lincoln St, Seattle, WA 98101" +151405,Wired Headphones,1,11.99,01/29/19 08:13,"809 Highland St, Boston, MA 02215" +151406,ThinkPad Laptop,1,999.99,01/02/19 17:33,"473 Walnut St, Austin, TX 73301" +151407,AA Batteries (4-pack),1,3.84,01/23/19 13:40,"804 Maple St, San Francisco, CA 94016" +151408,Lightning Charging Cable,1,14.95,01/26/19 21:57,"165 Pine St, San Francisco, CA 94016" +151409,34in Ultrawide Monitor,1,379.99,01/30/19 17:11,"246 Lake St, San Francisco, CA 94016" +151410,ThinkPad Laptop,1,999.99,01/31/19 01:20,"906 Cedar St, Boston, MA 02215" +151411,AA Batteries (4-pack),1,3.84,01/25/19 22:58,"956 12th St, New York City, NY 10001" +151412,USB-C Charging Cable,1,11.95,01/25/19 00:36,"8 Johnson St, Dallas, TX 75001" +151413,Wired Headphones,1,11.99,01/12/19 17:36,"406 Elm St, Los Angeles, CA 90001" +151414,AA Batteries (4-pack),1,3.84,01/08/19 23:38,"134 14th St, Portland, ME 04101" +151415,Lightning Charging Cable,1,14.95,01/25/19 19:31,"456 9th St, New York City, NY 10001" +151416,Google Phone,1,600,01/25/19 17:25,"98 River St, San Francisco, CA 94016" +151417,Bose SoundSport Headphones,1,99.99,01/25/19 22:22,"612 South St, New York City, NY 10001" +151418,USB-C Charging Cable,1,11.95,01/14/19 11:34,"165 Adams St, Atlanta, GA 30301" +151419,AAA Batteries (4-pack),1,2.99,01/12/19 08:10,"923 Lakeview St, San Francisco, CA 94016" +151420,USB-C Charging Cable,1,11.95,01/14/19 14:23,"960 Spruce St, Dallas, TX 75001" +151421,Google Phone,1,600,01/21/19 11:11,"972 Lincoln St, Los Angeles, CA 90001" +151421,USB-C Charging Cable,1,11.95,01/21/19 11:11,"972 Lincoln St, Los Angeles, CA 90001" +151422,Vareebadd Phone,1,400,01/03/19 22:08,"218 Highland St, Austin, TX 73301" +151423,AA Batteries (4-pack),1,3.84,01/18/19 08:36,"497 Lake St, Portland, ME 04101" +151424,AAA Batteries (4-pack),3,2.99,01/24/19 20:56,"55 Lincoln St, New York City, NY 10001" +151425,Wired Headphones,1,11.99,01/30/19 23:03,"451 Willow St, Seattle, WA 98101" +151426,Vareebadd Phone,1,400,01/18/19 18:53,"972 Elm St, Boston, MA 02215" +151427,Vareebadd Phone,1,400,01/07/19 20:55,"488 14th St, Portland, ME 04101" +151428,AA Batteries (4-pack),1,3.84,01/30/19 12:36,"426 Sunset St, New York City, NY 10001" +151429,Lightning Charging Cable,1,14.95,01/14/19 17:02,"741 Jefferson St, Boston, MA 02215" +151430,iPhone,1,700,01/17/19 13:16,"421 Chestnut St, San Francisco, CA 94016" +151431,Lightning Charging Cable,1,14.95,01/12/19 08:39,"299 Lincoln St, San Francisco, CA 94016" +151432,USB-C Charging Cable,1,11.95,01/06/19 21:01,"592 Jackson St, New York City, NY 10001" +151433,27in 4K Gaming Monitor,1,389.99,01/06/19 09:06,"312 Lake St, Los Angeles, CA 90001" +151434,AA Batteries (4-pack),2,3.84,01/03/19 16:37,"598 11th St, Boston, MA 02215" +151435,Lightning Charging Cable,2,14.95,01/18/19 10:41,"155 Church St, Atlanta, GA 30301" +151436,AA Batteries (4-pack),1,3.84,01/10/19 16:48,"945 Willow St, New York City, NY 10001" +151437,Lightning Charging Cable,1,14.95,01/15/19 14:59,"699 Lincoln St, New York City, NY 10001" +151438,27in FHD Monitor,1,149.99,01/26/19 12:33,"855 Lake St, Dallas, TX 75001" +151439,ThinkPad Laptop,1,999.99,01/06/19 21:47,"120 Wilson St, Dallas, TX 75001" +151440,Apple Airpods Headphones,1,150,01/03/19 12:18,"951 Church St, Los Angeles, CA 90001" +151441,Apple Airpods Headphones,1,150,01/17/19 11:24,"702 5th St, Dallas, TX 75001" +151442,Apple Airpods Headphones,1,150,01/09/19 16:46,"114 10th St, Portland, OR 97035" +151443,USB-C Charging Cable,1,11.95,01/15/19 22:03,"104 2nd St, Austin, TX 73301" +151444,AA Batteries (4-pack),1,3.84,01/25/19 05:01,"548 Cherry St, New York City, NY 10001" +151444,27in 4K Gaming Monitor,1,389.99,01/25/19 05:01,"548 Cherry St, New York City, NY 10001" +151445,AA Batteries (4-pack),2,3.84,01/13/19 01:42,"268 Johnson St, Seattle, WA 98101" +151446,Apple Airpods Headphones,1,150,01/14/19 22:37,"584 Highland St, San Francisco, CA 94016" +151447,Wired Headphones,1,11.99,01/16/19 18:07,"422 Highland St, San Francisco, CA 94016" +151448,27in 4K Gaming Monitor,1,389.99,01/05/19 15:03,"144 Lake St, San Francisco, CA 94016" +151449,AAA Batteries (4-pack),1,2.99,01/14/19 16:13,"307 Dogwood St, Boston, MA 02215" +151450,Bose SoundSport Headphones,1,99.99,01/31/19 10:40,"278 Hill St, Los Angeles, CA 90001" +151451,USB-C Charging Cable,1,11.95,01/21/19 16:16,"944 4th St, Austin, TX 73301" +151452,Apple Airpods Headphones,1,150,01/02/19 09:32,"195 Park St, Austin, TX 73301" +151453,Bose SoundSport Headphones,1,99.99,01/20/19 11:45,"624 Forest St, San Francisco, CA 94016" +151454,AAA Batteries (4-pack),2,2.99,01/10/19 13:55,"872 Jackson St, Boston, MA 02215" +151455,USB-C Charging Cable,1,11.95,01/03/19 23:14,"44 Cherry St, Austin, TX 73301" +151456,AAA Batteries (4-pack),2,2.99,01/06/19 20:02,"58 Willow St, Atlanta, GA 30301" +151457,AAA Batteries (4-pack),2,2.99,01/14/19 10:06,"735 Highland St, San Francisco, CA 94016" +151458,Apple Airpods Headphones,1,150,01/08/19 22:06,"754 Washington St, Portland, OR 97035" +151459,Macbook Pro Laptop,1,1700,01/29/19 15:39,"257 Maple St, Los Angeles, CA 90001" +151460,27in FHD Monitor,1,149.99,01/03/19 13:43,"790 Elm St, Portland, OR 97035" +151460,USB-C Charging Cable,1,11.95,01/03/19 13:43,"790 Elm St, Portland, OR 97035" +151461,Macbook Pro Laptop,1,1700,01/25/19 21:24,"976 13th St, Seattle, WA 98101" +151462,Wired Headphones,1,11.99,01/07/19 21:24,"452 Cedar St, San Francisco, CA 94016" +151463,Apple Airpods Headphones,1,150,01/02/19 15:01,"253 Lake St, Seattle, WA 98101" +151464,27in 4K Gaming Monitor,1,389.99,01/08/19 16:40,"526 9th St, Dallas, TX 75001" +151465,Apple Airpods Headphones,1,150,01/09/19 10:43,"911 Maple St, Los Angeles, CA 90001" +151466,USB-C Charging Cable,1,11.95,01/29/19 19:06,"114 Center St, Boston, MA 02215" +151467,27in 4K Gaming Monitor,1,389.99,01/10/19 10:42,"952 Cedar St, Boston, MA 02215" +151468,34in Ultrawide Monitor,1,379.99,01/22/19 14:59,"837 2nd St, Portland, ME 04101" +151469,AAA Batteries (4-pack),3,2.99,01/13/19 14:28,"227 14th St, San Francisco, CA 94016" +151470,Wired Headphones,1,11.99,01/30/19 15:10,"721 7th St, Atlanta, GA 30301" +151471,34in Ultrawide Monitor,1,379.99,01/08/19 20:15,"260 Dogwood St, Boston, MA 02215" +151472,USB-C Charging Cable,1,11.95,01/18/19 23:20,"86 Johnson St, Boston, MA 02215" +151473,USB-C Charging Cable,1,11.95,01/18/19 08:13,"565 Center St, Seattle, WA 98101" +151474,USB-C Charging Cable,1,11.95,01/09/19 20:15,"853 South St, Boston, MA 02215" +151475,Wired Headphones,1,11.99,01/25/19 12:00,"600 River St, Boston, MA 02215" +151476,27in FHD Monitor,1,149.99,01/20/19 22:23,"850 14th St, Dallas, TX 75001" +151477,Apple Airpods Headphones,1,150,01/12/19 11:33,"106 Jefferson St, Boston, MA 02215" +151478,ThinkPad Laptop,1,999.99,01/16/19 14:47,"918 Forest St, Dallas, TX 75001" +151479,Lightning Charging Cable,2,14.95,01/08/19 19:57,"19 Wilson St, San Francisco, CA 94016" +151480,Flatscreen TV,1,300,01/11/19 11:13,"799 Lake St, Los Angeles, CA 90001" +151481,USB-C Charging Cable,1,11.95,01/13/19 04:11,"259 North St, New York City, NY 10001" +151482,Flatscreen TV,1,300,01/19/19 00:04,"946 Willow St, Atlanta, GA 30301" +151483,Wired Headphones,1,11.99,01/21/19 23:47,"264 Adams St, Dallas, TX 75001" +151484,Lightning Charging Cable,1,14.95,01/20/19 06:39,"776 12th St, New York City, NY 10001" +151485,AA Batteries (4-pack),1,3.84,01/31/19 12:26,"305 Jackson St, San Francisco, CA 94016" +151486,ThinkPad Laptop,1,999.99,01/14/19 15:16,"575 Walnut St, Portland, OR 97035" +151487,AAA Batteries (4-pack),1,2.99,01/10/19 17:49,"259 1st St, Atlanta, GA 30301" +151488,Bose SoundSport Headphones,1,99.99,01/27/19 15:11,"622 4th St, Boston, MA 02215" +151489,USB-C Charging Cable,1,11.95,01/06/19 16:24,"210 7th St, San Francisco, CA 94016" +151490,AAA Batteries (4-pack),1,2.99,01/05/19 16:45,"801 Forest St, Seattle, WA 98101" +151491,Wired Headphones,1,11.99,01/14/19 17:43,"251 Wilson St, San Francisco, CA 94016" +151492,Bose SoundSport Headphones,1,99.99,01/12/19 13:46,"944 1st St, Seattle, WA 98101" +151493,USB-C Charging Cable,1,11.95,01/18/19 16:46,"465 Walnut St, Austin, TX 73301" +151494,AA Batteries (4-pack),1,3.84,01/04/19 19:32,"642 5th St, San Francisco, CA 94016" +151495,USB-C Charging Cable,1,11.95,01/01/19 12:21,"70 Spruce St, New York City, NY 10001" +151496,USB-C Charging Cable,2,11.95,01/12/19 14:04,"32 Cedar St, San Francisco, CA 94016" +151497,Bose SoundSport Headphones,1,99.99,01/09/19 08:18,"318 North St, Los Angeles, CA 90001" +151498,ThinkPad Laptop,1,999.99,01/10/19 16:30,"540 Forest St, San Francisco, CA 94016" +151499,27in 4K Gaming Monitor,1,389.99,01/12/19 10:50,"787 Sunset St, San Francisco, CA 94016" +151500,27in FHD Monitor,1,149.99,01/14/19 20:14,"921 North St, Los Angeles, CA 90001" +151501,AAA Batteries (4-pack),1,2.99,01/30/19 16:12,"111 2nd St, Austin, TX 73301" +151502,Apple Airpods Headphones,1,150,01/01/19 23:07,"642 Johnson St, Austin, TX 73301" +151503,iPhone,1,700,01/29/19 03:56,"636 North St, Atlanta, GA 30301" +151504,Wired Headphones,1,11.99,01/08/19 09:21,"241 West St, Los Angeles, CA 90001" +151505,34in Ultrawide Monitor,1,379.99,01/18/19 06:40,"323 Adams St, Los Angeles, CA 90001" +151506,Google Phone,1,600,01/16/19 15:21,"291 Willow St, New York City, NY 10001" +151507,Bose SoundSport Headphones,1,99.99,01/28/19 20:35,"606 Madison St, Austin, TX 73301" +151508,AAA Batteries (4-pack),1,2.99,01/30/19 14:11,"539 Hickory St, Seattle, WA 98101" +151509,Google Phone,1,600,01/24/19 07:49,"427 11th St, New York City, NY 10001" +151510,LG Dryer,1,600.0,01/05/19 12:31,"878 Hill St, San Francisco, CA 94016" +151511,AA Batteries (4-pack),1,3.84,01/11/19 21:34,"120 Meadow St, Seattle, WA 98101" +151512,ThinkPad Laptop,1,999.99,01/31/19 15:55,"286 8th St, Austin, TX 73301" +151513,Google Phone,1,600,01/10/19 04:39,"200 Elm St, Boston, MA 02215" +151514,USB-C Charging Cable,1,11.95,01/18/19 17:01,"229 Chestnut St, Atlanta, GA 30301" +151515,20in Monitor,1,109.99,01/28/19 17:56,"645 5th St, San Francisco, CA 94016" +151516,AAA Batteries (4-pack),1,2.99,01/07/19 21:20,"548 9th St, New York City, NY 10001" +151517,20in Monitor,1,109.99,01/10/19 07:25,"157 Center St, Los Angeles, CA 90001" +151518,Wired Headphones,1,11.99,01/05/19 16:29,"362 4th St, Seattle, WA 98101" +151519,AAA Batteries (4-pack),1,2.99,01/27/19 17:02,"545 12th St, New York City, NY 10001" +151520,AA Batteries (4-pack),1,3.84,01/29/19 09:45,"99 12th St, Boston, MA 02215" +151521,Lightning Charging Cable,1,14.95,01/16/19 20:20,"15 Madison St, Los Angeles, CA 90001" +151522,Wired Headphones,1,11.99,01/22/19 22:56,"210 Madison St, Boston, MA 02215" +151523,AAA Batteries (4-pack),2,2.99,01/15/19 11:21,"468 Chestnut St, Boston, MA 02215" +151524,Apple Airpods Headphones,1,150,01/09/19 16:40,"13 5th St, Atlanta, GA 30301" +151525,USB-C Charging Cable,1,11.95,01/01/19 17:37,"724 Maple St, San Francisco, CA 94016" +151526,USB-C Charging Cable,1,11.95,01/12/19 20:28,"509 12th St, Dallas, TX 75001" +151527,AA Batteries (4-pack),1,3.84,01/27/19 23:33,"883 Ridge St, Boston, MA 02215" +151528,USB-C Charging Cable,1,11.95,01/04/19 19:00,"236 1st St, San Francisco, CA 94016" +151529,20in Monitor,1,109.99,01/25/19 10:04,"200 Maple St, Austin, TX 73301" +151530,Macbook Pro Laptop,1,1700,01/03/19 16:46,"122 Walnut St, San Francisco, CA 94016" +151531,Apple Airpods Headphones,1,150,01/08/19 06:58,"963 7th St, Los Angeles, CA 90001" +151532,AA Batteries (4-pack),1,3.84,01/16/19 15:44,"142 North St, New York City, NY 10001" +151533,34in Ultrawide Monitor,1,379.99,01/29/19 17:02,"849 Lakeview St, San Francisco, CA 94016" +151534,Lightning Charging Cable,2,14.95,01/05/19 11:50,"46 Lakeview St, San Francisco, CA 94016" +151535,Lightning Charging Cable,1,14.95,01/06/19 18:54,"701 4th St, Portland, OR 97035" +151536,Lightning Charging Cable,1,14.95,01/25/19 10:50,"678 Main St, Los Angeles, CA 90001" +151537,Bose SoundSport Headphones,1,99.99,01/28/19 17:59,"730 Sunset St, Austin, TX 73301" +151538,34in Ultrawide Monitor,1,379.99,01/19/19 17:06,"964 Maple St, San Francisco, CA 94016" +151539,Flatscreen TV,1,300,01/04/19 18:43,"619 10th St, Dallas, TX 75001" +151540,AAA Batteries (4-pack),1,2.99,01/20/19 15:26,"65 12th St, San Francisco, CA 94016" +151541,Bose SoundSport Headphones,1,99.99,01/08/19 12:01,"578 Wilson St, Los Angeles, CA 90001" +151542,AAA Batteries (4-pack),1,2.99,01/21/19 14:12,"176 8th St, Los Angeles, CA 90001" +151543,Google Phone,1,600,01/17/19 01:55,"68 9th St, New York City, NY 10001" +151544,AA Batteries (4-pack),1,3.84,01/12/19 17:20,"291 North St, Portland, OR 97035" +151545,AAA Batteries (4-pack),1,2.99,01/06/19 22:00,"394 1st St, Dallas, TX 75001" +151546,Wired Headphones,1,11.99,01/08/19 14:36,"956 Lake St, Atlanta, GA 30301" +151547,Wired Headphones,2,11.99,01/04/19 09:32,"306 8th St, Los Angeles, CA 90001" +151548,AAA Batteries (4-pack),1,2.99,01/06/19 10:52,"622 Cherry St, San Francisco, CA 94016" +151549,Wired Headphones,1,11.99,01/22/19 01:26,"422 Hill St, Austin, TX 73301" +151550,Apple Airpods Headphones,1,150,01/22/19 18:20,"886 Hickory St, San Francisco, CA 94016" +151551,Wired Headphones,1,11.99,01/16/19 23:14,"799 Center St, San Francisco, CA 94016" +151552,Vareebadd Phone,1,400,01/09/19 18:50,"620 Main St, San Francisco, CA 94016" +151553,Bose SoundSport Headphones,1,99.99,01/22/19 07:12,"797 Johnson St, New York City, NY 10001" +151554,27in FHD Monitor,1,149.99,01/09/19 17:20,"522 5th St, New York City, NY 10001" +151555,34in Ultrawide Monitor,1,379.99,01/05/19 19:09,"102 Sunset St, San Francisco, CA 94016" +151556,Lightning Charging Cable,1,14.95,01/24/19 19:19,"721 9th St, San Francisco, CA 94016" +151557,20in Monitor,1,109.99,01/19/19 21:36,"439 14th St, San Francisco, CA 94016" +151558,USB-C Charging Cable,1,11.95,01/22/19 21:16,"261 13th St, San Francisco, CA 94016" +151559,Apple Airpods Headphones,1,150,01/01/19 13:16,"563 Jackson St, San Francisco, CA 94016" +151560,AA Batteries (4-pack),2,3.84,01/04/19 11:37,"285 Maple St, Los Angeles, CA 90001" +151561,AA Batteries (4-pack),2,3.84,01/28/19 09:24,"636 Wilson St, San Francisco, CA 94016" +151562,27in FHD Monitor,1,149.99,01/23/19 11:34,"606 Park St, Boston, MA 02215" +151563,AAA Batteries (4-pack),1,2.99,01/16/19 13:27,"896 Lincoln St, Dallas, TX 75001" +151564,20in Monitor,1,109.99,01/19/19 14:44,"883 South St, New York City, NY 10001" +151565,27in 4K Gaming Monitor,1,389.99,01/23/19 21:53,"911 Washington St, Atlanta, GA 30301" +151566,Wired Headphones,1,11.99,01/28/19 18:38,"263 9th St, New York City, NY 10001" +151567,27in 4K Gaming Monitor,1,389.99,01/19/19 18:59,"647 Lakeview St, Seattle, WA 98101" +151568,Lightning Charging Cable,1,14.95,01/03/19 18:23,"484 8th St, Dallas, TX 75001" +151569,AA Batteries (4-pack),1,3.84,01/27/19 00:30,"244 7th St, Atlanta, GA 30301" +151570,Lightning Charging Cable,2,14.95,01/18/19 13:20,"251 Lincoln St, Atlanta, GA 30301" +151571,Apple Airpods Headphones,1,150,01/28/19 11:49,"478 6th St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +151572,USB-C Charging Cable,1,11.95,01/05/19 20:28,"311 Willow St, Portland, OR 97035" +151573,Bose SoundSport Headphones,1,99.99,01/26/19 11:33,"890 5th St, Austin, TX 73301" +151574,AAA Batteries (4-pack),1,2.99,01/31/19 20:33,"350 6th St, Seattle, WA 98101" +151575,AA Batteries (4-pack),1,3.84,01/05/19 12:19,"128 6th St, San Francisco, CA 94016" +151576,Macbook Pro Laptop,1,1700,01/17/19 06:45,"277 Adams St, Atlanta, GA 30301" +151577,AA Batteries (4-pack),1,3.84,01/22/19 19:01,"872 Hickory St, Boston, MA 02215" +151578,Bose SoundSport Headphones,1,99.99,01/10/19 02:55,"441 Wilson St, New York City, NY 10001" +151579,Bose SoundSport Headphones,1,99.99,01/31/19 15:39,"352 10th St, Los Angeles, CA 90001" +151580,AA Batteries (4-pack),1,3.84,01/17/19 18:58,"910 10th St, Los Angeles, CA 90001" +151581,LG Washing Machine,1,600.0,01/31/19 06:01,"894 Sunset St, Seattle, WA 98101" +151582,AAA Batteries (4-pack),1,2.99,01/08/19 18:11,"700 Elm St, Boston, MA 02215" +151583,Lightning Charging Cable,1,14.95,01/04/19 10:44,"563 Center St, Portland, ME 04101" +151584,AAA Batteries (4-pack),1,2.99,01/03/19 17:06,"655 Willow St, Portland, OR 97035" +151585,Lightning Charging Cable,1,14.95,01/12/19 20:03,"230 Wilson St, Los Angeles, CA 90001" +151586,34in Ultrawide Monitor,1,379.99,01/01/19 15:29,"90 12th St, Austin, TX 73301" +151587,Bose SoundSport Headphones,1,99.99,01/17/19 21:21,"532 Forest St, Portland, OR 97035" +151588,iPhone,1,700,01/04/19 11:28,"971 11th St, New York City, NY 10001" +151589,ThinkPad Laptop,1,999.99,01/29/19 16:15,"940 Johnson St, Atlanta, GA 30301" +151590,USB-C Charging Cable,1,11.95,01/09/19 15:55,"620 Jefferson St, New York City, NY 10001" +151591,Apple Airpods Headphones,1,150,01/15/19 10:48,"578 Johnson St, Los Angeles, CA 90001" +151592,USB-C Charging Cable,1,11.95,01/31/19 13:37,"648 Dogwood St, San Francisco, CA 94016" +151593,AAA Batteries (4-pack),1,2.99,01/20/19 13:02,"227 Adams St, New York City, NY 10001" +151594,AA Batteries (4-pack),1,3.84,01/06/19 19:53,"951 West St, San Francisco, CA 94016" +151595,AA Batteries (4-pack),1,3.84,01/18/19 10:41,"943 Highland St, Dallas, TX 75001" +151596,34in Ultrawide Monitor,1,379.99,01/30/19 13:34,"386 5th St, Boston, MA 02215" +151597,Google Phone,1,600,01/17/19 12:45,"15 Pine St, Los Angeles, CA 90001" +151597,USB-C Charging Cable,1,11.95,01/17/19 12:45,"15 Pine St, Los Angeles, CA 90001" +151598,AA Batteries (4-pack),2,3.84,01/15/19 10:52,"141 Wilson St, Boston, MA 02215" +151599,Lightning Charging Cable,1,14.95,01/03/19 11:09,"76 Washington St, Los Angeles, CA 90001" +151600,USB-C Charging Cable,1,11.95,01/27/19 22:39,"276 Highland St, Los Angeles, CA 90001" +151601,Wired Headphones,1,11.99,01/16/19 16:51,"157 Dogwood St, San Francisco, CA 94016" +151602,Bose SoundSport Headphones,1,99.99,01/18/19 17:25,"410 Meadow St, New York City, NY 10001" +151602,34in Ultrawide Monitor,1,379.99,01/18/19 17:25,"410 Meadow St, New York City, NY 10001" +151603,Bose SoundSport Headphones,1,99.99,01/16/19 11:38,"58 Ridge St, Boston, MA 02215" +151604,Bose SoundSport Headphones,1,99.99,01/30/19 16:30,"209 Madison St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +151605,Flatscreen TV,1,300,01/01/19 19:24,"349 2nd St, Atlanta, GA 30301" +151606,20in Monitor,1,109.99,01/16/19 09:37,"305 Maple St, Atlanta, GA 30301" +151607,Apple Airpods Headphones,1,150,01/07/19 02:36,"705 Hickory St, Boston, MA 02215" +151608,Lightning Charging Cable,1,14.95,01/04/19 08:56,"581 Hickory St, Seattle, WA 98101" +151609,Flatscreen TV,1,300,01/06/19 21:58,"947 13th St, New York City, NY 10001" +151610,Lightning Charging Cable,1,14.95,01/24/19 06:14,"531 Wilson St, San Francisco, CA 94016" +151611,Flatscreen TV,1,300,01/14/19 23:50,"589 Lake St, Portland, OR 97035" +151612,Flatscreen TV,1,300,01/09/19 22:09,"786 4th St, Los Angeles, CA 90001" +151613,Bose SoundSport Headphones,1,99.99,01/21/19 16:22,"311 Ridge St, San Francisco, CA 94016" +151614,iPhone,1,700,01/27/19 15:33,"867 11th St, Atlanta, GA 30301" +151615,AA Batteries (4-pack),2,3.84,01/01/19 16:07,"528 12th St, San Francisco, CA 94016" +151616,Bose SoundSport Headphones,1,99.99,01/29/19 16:29,"619 14th St, San Francisco, CA 94016" +151617,34in Ultrawide Monitor,1,379.99,01/22/19 20:11,"363 Walnut St, Los Angeles, CA 90001" +151618,34in Ultrawide Monitor,1,379.99,01/13/19 08:38,"252 12th St, New York City, NY 10001" +151619,AAA Batteries (4-pack),1,2.99,01/29/19 19:47,"847 Lakeview St, Portland, ME 04101" +151620,USB-C Charging Cable,1,11.95,01/01/19 11:28,"695 Hickory St, San Francisco, CA 94016" +151621,Apple Airpods Headphones,1,150,01/31/19 10:03,"128 Johnson St, New York City, NY 10001" +151622,Apple Airpods Headphones,2,150,01/02/19 17:12,"377 Johnson St, Seattle, WA 98101" +151623,USB-C Charging Cable,1,11.95,01/07/19 21:22,"861 Lincoln St, Los Angeles, CA 90001" +151624,Bose SoundSport Headphones,1,99.99,01/20/19 14:44,"488 Highland St, Austin, TX 73301" +151625,Apple Airpods Headphones,1,150,01/07/19 14:56,"304 Main St, Atlanta, GA 30301" +151626,34in Ultrawide Monitor,1,379.99,01/03/19 19:20,"201 Maple St, Dallas, TX 75001" +151627,Apple Airpods Headphones,1,150,01/21/19 13:17,"419 Church St, Boston, MA 02215" +151627,20in Monitor,2,109.99,01/21/19 13:17,"419 Church St, Boston, MA 02215" +151628,Apple Airpods Headphones,1,150,01/06/19 21:26,"326 6th St, Atlanta, GA 30301" +151629,Wired Headphones,1,11.99,01/23/19 12:08,"88 West St, New York City, NY 10001" +151630,USB-C Charging Cable,1,11.95,01/24/19 21:41,"329 14th St, Boston, MA 02215" +151631,Wired Headphones,1,11.99,01/24/19 22:58,"225 Cherry St, Los Angeles, CA 90001" +151632,27in 4K Gaming Monitor,1,389.99,01/23/19 06:31,"78 Highland St, Seattle, WA 98101" +151632,Wired Headphones,1,11.99,01/23/19 06:31,"78 Highland St, Seattle, WA 98101" +151633,Apple Airpods Headphones,1,150,01/30/19 07:36,"43 Church St, Los Angeles, CA 90001" +151634,USB-C Charging Cable,1,11.95,01/08/19 12:44,"957 West St, Los Angeles, CA 90001" +151635,USB-C Charging Cable,1,11.95,01/04/19 18:31,"664 Main St, Dallas, TX 75001" +151636,20in Monitor,1,109.99,01/16/19 11:54,"888 West St, San Francisco, CA 94016" +151637,AA Batteries (4-pack),1,3.84,01/22/19 21:29,"300 Main St, Dallas, TX 75001" +151638,Wired Headphones,1,11.99,01/25/19 14:36,"35 South St, San Francisco, CA 94016" +151639,Wired Headphones,1,11.99,01/26/19 08:42,"299 North St, New York City, NY 10001" +151640,Wired Headphones,1,11.99,01/05/19 23:53,"605 Chestnut St, Boston, MA 02215" +151641,AAA Batteries (4-pack),4,2.99,01/14/19 08:01,"542 Lake St, Atlanta, GA 30301" +151642,Wired Headphones,1,11.99,01/23/19 01:05,"443 5th St, Dallas, TX 75001" +151643,Google Phone,1,600,01/12/19 15:32,"859 Dogwood St, San Francisco, CA 94016" +151644,Lightning Charging Cable,1,14.95,01/02/19 15:01,"734 Lakeview St, Boston, MA 02215" +151645,Apple Airpods Headphones,1,150,01/09/19 22:37,"824 Jefferson St, Los Angeles, CA 90001" +151646,Macbook Pro Laptop,1,1700,01/04/19 01:22,"126 7th St, New York City, NY 10001" +151647,USB-C Charging Cable,1,11.95,01/11/19 18:59,"926 River St, Dallas, TX 75001" +151648,AAA Batteries (4-pack),1,2.99,01/25/19 17:00,"473 Center St, San Francisco, CA 94016" +151648,Vareebadd Phone,1,400,01/25/19 17:00,"473 Center St, San Francisco, CA 94016" +151649,USB-C Charging Cable,1,11.95,01/02/19 23:51,"375 Lincoln St, New York City, NY 10001" +151650,AA Batteries (4-pack),1,3.84,01/09/19 21:18,"669 Wilson St, Los Angeles, CA 90001" +151651,AAA Batteries (4-pack),1,2.99,01/20/19 12:55,"12 Hickory St, Dallas, TX 75001" +151651,USB-C Charging Cable,1,11.95,01/20/19 12:55,"12 Hickory St, Dallas, TX 75001" +151652,27in FHD Monitor,1,149.99,01/25/19 17:35,"268 River St, San Francisco, CA 94016" +151653,Bose SoundSport Headphones,1,99.99,01/29/19 12:29,"904 Forest St, Los Angeles, CA 90001" +151654,34in Ultrawide Monitor,1,379.99,01/14/19 13:52,"722 7th St, San Francisco, CA 94016" +151655,ThinkPad Laptop,1,999.99,01/04/19 18:41,"781 South St, San Francisco, CA 94016" +151656,Lightning Charging Cable,1,14.95,01/29/19 11:46,"846 Johnson St, Boston, MA 02215" +151657,Wired Headphones,1,11.99,01/23/19 17:49,"93 Willow St, Boston, MA 02215" +151658,34in Ultrawide Monitor,1,379.99,01/17/19 19:48,"227 Sunset St, San Francisco, CA 94016" +151659,Wired Headphones,1,11.99,01/26/19 13:38,"39 2nd St, San Francisco, CA 94016" +151660,AAA Batteries (4-pack),1,2.99,01/01/19 11:01,"453 11th St, San Francisco, CA 94016" +151661,Flatscreen TV,1,300,01/15/19 16:04,"454 Church St, Boston, MA 02215" +151662,AA Batteries (4-pack),1,3.84,01/26/19 08:46,"470 Lake St, Los Angeles, CA 90001" +151663,Wired Headphones,1,11.99,01/27/19 11:18,"682 Washington St, Atlanta, GA 30301" +151664,Lightning Charging Cable,1,14.95,01/19/19 10:58,"671 South St, Boston, MA 02215" +151665,Flatscreen TV,1,300,01/31/19 12:33,"895 Ridge St, San Francisco, CA 94016" +151666,Apple Airpods Headphones,1,150,01/10/19 08:15,"205 Washington St, San Francisco, CA 94016" +151667,Wired Headphones,1,11.99,01/21/19 21:21,"93 Walnut St, Boston, MA 02215" +151668,Google Phone,1,600,01/30/19 16:03,"329 9th St, San Francisco, CA 94016" +151668,Wired Headphones,1,11.99,01/30/19 16:03,"329 9th St, San Francisco, CA 94016" +151669,Bose SoundSport Headphones,1,99.99,01/28/19 12:04,"235 12th St, Los Angeles, CA 90001" +151670,AA Batteries (4-pack),2,3.84,01/31/19 20:10,"717 Forest St, San Francisco, CA 94016" +151671,iPhone,1,700,01/21/19 01:22,"844 5th St, New York City, NY 10001" +151672,USB-C Charging Cable,1,11.95,01/22/19 18:45,"422 Center St, San Francisco, CA 94016" +151673,Bose SoundSport Headphones,1,99.99,01/01/19 09:54,"998 4th St, New York City, NY 10001" +151674,AA Batteries (4-pack),1,3.84,01/30/19 20:48,"165 Wilson St, New York City, NY 10001" +151675,USB-C Charging Cable,1,11.95,01/24/19 14:29,"4 Church St, San Francisco, CA 94016" +151676,Wired Headphones,1,11.99,01/13/19 11:15,"766 Lakeview St, Portland, OR 97035" +151677,Lightning Charging Cable,1,14.95,01/25/19 14:22,"374 Johnson St, San Francisco, CA 94016" +151677,USB-C Charging Cable,1,11.95,01/25/19 14:22,"374 Johnson St, San Francisco, CA 94016" +151678,AA Batteries (4-pack),1,3.84,01/15/19 23:47,"708 Hickory St, New York City, NY 10001" +151679,Lightning Charging Cable,1,14.95,01/11/19 01:32,"162 Johnson St, New York City, NY 10001" +151680,Wired Headphones,1,11.99,01/07/19 21:35,"592 Lakeview St, Boston, MA 02215" +151681,ThinkPad Laptop,1,999.99,01/22/19 20:46,"787 Sunset St, Los Angeles, CA 90001" +151682,Apple Airpods Headphones,1,150,01/23/19 20:07,"178 Cherry St, Atlanta, GA 30301" +151683,Bose SoundSport Headphones,1,99.99,01/06/19 18:02,"197 Ridge St, San Francisco, CA 94016" +151684,ThinkPad Laptop,1,999.99,01/24/19 18:01,"284 Jefferson St, New York City, NY 10001" +151685,Wired Headphones,1,11.99,01/19/19 22:23,"184 Spruce St, New York City, NY 10001" +151686,LG Dryer,1,600.0,01/30/19 13:52,"799 Lakeview St, Boston, MA 02215" +151687,ThinkPad Laptop,1,999.99,01/23/19 15:16,"151 11th St, Atlanta, GA 30301" +151688,34in Ultrawide Monitor,1,379.99,01/03/19 23:08,"747 Meadow St, Austin, TX 73301" +151689,Apple Airpods Headphones,1,150,01/19/19 03:27,"426 North St, Atlanta, GA 30301" +151690,AAA Batteries (4-pack),1,2.99,01/09/19 15:33,"889 Jefferson St, Atlanta, GA 30301" +151691,USB-C Charging Cable,2,11.95,01/13/19 20:16,"853 Washington St, Los Angeles, CA 90001" +151692,AAA Batteries (4-pack),1,2.99,01/20/19 12:09,"840 Hickory St, Austin, TX 73301" +151693,27in FHD Monitor,1,149.99,01/27/19 19:00,"810 Sunset St, Dallas, TX 75001" +151694,Wired Headphones,1,11.99,01/11/19 12:02,"905 Wilson St, Dallas, TX 75001" +151695,ThinkPad Laptop,1,999.99,01/03/19 05:46,"245 7th St, Dallas, TX 75001" +151696,Apple Airpods Headphones,1,150,01/02/19 22:02,"530 5th St, Dallas, TX 75001" +151697,Bose SoundSport Headphones,1,99.99,01/22/19 12:02,"696 Maple St, New York City, NY 10001" +151698,Flatscreen TV,1,300,01/06/19 16:55,"800 Ridge St, Los Angeles, CA 90001" +151699,Lightning Charging Cable,1,14.95,01/27/19 15:56,"6 7th St, San Francisco, CA 94016" +151700,Apple Airpods Headphones,1,150,01/16/19 17:52,"660 Willow St, New York City, NY 10001" +151701,AAA Batteries (4-pack),1,2.99,01/18/19 19:30,"901 West St, San Francisco, CA 94016" +151702,USB-C Charging Cable,1,11.95,01/23/19 19:52,"915 Chestnut St, Portland, ME 04101" +151703,Bose SoundSport Headphones,1,99.99,01/29/19 18:50,"893 Ridge St, Seattle, WA 98101" +151704,ThinkPad Laptop,1,999.99,01/02/19 11:26,"816 Meadow St, San Francisco, CA 94016" +151705,AA Batteries (4-pack),1,3.84,01/04/19 07:34,"227 Hickory St, San Francisco, CA 94016" +151706,27in FHD Monitor,1,149.99,01/18/19 07:52,"515 Forest St, San Francisco, CA 94016" +151707,USB-C Charging Cable,1,11.95,01/03/19 21:32,"429 14th St, Seattle, WA 98101" +151708,USB-C Charging Cable,1,11.95,01/17/19 12:37,"215 Main St, Portland, OR 97035" +151709,Lightning Charging Cable,1,14.95,01/17/19 10:27,"936 Johnson St, Austin, TX 73301" +151710,USB-C Charging Cable,1,11.95,01/31/19 18:30,"648 Madison St, Boston, MA 02215" +151711,Bose SoundSport Headphones,1,99.99,01/10/19 09:12,"21 Willow St, Boston, MA 02215" +151712,AAA Batteries (4-pack),7,2.99,01/12/19 23:14,"635 4th St, Dallas, TX 75001" +151713,Bose SoundSport Headphones,2,99.99,01/30/19 20:40,"219 Jackson St, Los Angeles, CA 90001" +151714,AAA Batteries (4-pack),5,2.99,01/16/19 12:31,"3 8th St, Boston, MA 02215" +151715,AAA Batteries (4-pack),1,2.99,01/06/19 19:44,"748 Main St, New York City, NY 10001" +151716,Lightning Charging Cable,1,14.95,01/10/19 10:36,"885 Cherry St, Dallas, TX 75001" +151717,AA Batteries (4-pack),1,3.84,01/04/19 15:15,"516 14th St, Los Angeles, CA 90001" +151718,34in Ultrawide Monitor,1,379.99,01/24/19 15:06,"253 Forest St, Dallas, TX 75001" +151719,USB-C Charging Cable,1,11.95,01/31/19 20:58,"472 Johnson St, Los Angeles, CA 90001" +151720,Vareebadd Phone,1,400,01/09/19 11:15,"568 Elm St, Portland, ME 04101" +151721,Wired Headphones,1,11.99,01/19/19 13:37,"140 Walnut St, Los Angeles, CA 90001" +151722,LG Washing Machine,1,600.0,01/30/19 15:30,"331 Wilson St, Boston, MA 02215" +151723,20in Monitor,1,109.99,01/10/19 22:25,"659 4th St, Boston, MA 02215" +151724,Apple Airpods Headphones,1,150,01/25/19 20:24,"985 1st St, San Francisco, CA 94016" +151725,Macbook Pro Laptop,1,1700,01/24/19 08:16,"602 Lake St, San Francisco, CA 94016" +151726,27in FHD Monitor,1,149.99,01/06/19 22:33,"910 Center St, Los Angeles, CA 90001" +151727,Apple Airpods Headphones,1,150,01/05/19 15:14,"601 6th St, New York City, NY 10001" +151728,iPhone,1,700,01/04/19 09:01,"825 Hill St, Dallas, TX 75001" +151728,Lightning Charging Cable,1,14.95,01/04/19 09:01,"825 Hill St, Dallas, TX 75001" +151729,Lightning Charging Cable,1,14.95,01/25/19 19:49,"166 Lakeview St, New York City, NY 10001" +151730,Lightning Charging Cable,1,14.95,01/23/19 23:19,"864 West St, San Francisco, CA 94016" +151731,iPhone,1,700,01/29/19 10:52,"208 Main St, Boston, MA 02215" +151732,Wired Headphones,1,11.99,01/01/19 19:00,"613 Cherry St, New York City, NY 10001" +151733,27in 4K Gaming Monitor,1,389.99,01/04/19 00:19,"392 South St, San Francisco, CA 94016" +151734,Apple Airpods Headphones,1,150,01/03/19 01:35,"94 Dogwood St, Los Angeles, CA 90001" +151735,USB-C Charging Cable,1,11.95,01/07/19 23:44,"15 Highland St, Boston, MA 02215" +151736,USB-C Charging Cable,1,11.95,01/04/19 13:09,"101 13th St, Atlanta, GA 30301" +151737,ThinkPad Laptop,1,999.99,01/22/19 15:20,"389 13th St, Los Angeles, CA 90001" +151738,USB-C Charging Cable,1,11.95,01/19/19 13:01,"884 Hickory St, Boston, MA 02215" +151739,27in 4K Gaming Monitor,1,389.99,01/18/19 08:48,"277 14th St, San Francisco, CA 94016" +151740,27in FHD Monitor,1,149.99,01/18/19 15:49,"482 Pine St, New York City, NY 10001" +151741,USB-C Charging Cable,1,11.95,01/13/19 08:28,"607 Wilson St, Atlanta, GA 30301" +151742,AAA Batteries (4-pack),1,2.99,01/17/19 00:10,"55 12th St, Boston, MA 02215" +151743,AA Batteries (4-pack),1,3.84,01/04/19 09:41,"231 8th St, San Francisco, CA 94016" +151744,Macbook Pro Laptop,1,1700,01/27/19 19:22,"36 Ridge St, Dallas, TX 75001" +151745,AAA Batteries (4-pack),1,2.99,01/13/19 18:13,"985 North St, Seattle, WA 98101" +151746,Apple Airpods Headphones,1,150,01/22/19 09:19,"110 Elm St, Atlanta, GA 30301" +151747,AA Batteries (4-pack),3,3.84,01/07/19 20:55,"920 11th St, Dallas, TX 75001" +151747,Bose SoundSport Headphones,1,99.99,01/07/19 20:55,"920 11th St, Dallas, TX 75001" +151748,Bose SoundSport Headphones,1,99.99,01/10/19 09:54,"589 9th St, San Francisco, CA 94016" +151749,AAA Batteries (4-pack),1,2.99,01/31/19 09:00,"49 River St, New York City, NY 10001" +151750,Google Phone,1,600,01/22/19 14:31,"280 Pine St, New York City, NY 10001" +151751,AAA Batteries (4-pack),1,2.99,01/17/19 12:03,"549 Meadow St, Seattle, WA 98101" +151752,AA Batteries (4-pack),1,3.84,01/10/19 16:58,"480 River St, San Francisco, CA 94016" +151753,Flatscreen TV,1,300,01/01/19 16:43,"82 Main St, Los Angeles, CA 90001" +151754,Lightning Charging Cable,1,14.95,01/13/19 20:32,"274 Dogwood St, Los Angeles, CA 90001" +151755,AAA Batteries (4-pack),1,2.99,01/19/19 13:19,"118 Church St, San Francisco, CA 94016" +151756,34in Ultrawide Monitor,1,379.99,01/15/19 14:50,"846 Chestnut St, San Francisco, CA 94016" +151757,Apple Airpods Headphones,1,150,01/02/19 06:41,"7 Maple St, San Francisco, CA 94016" +151758,USB-C Charging Cable,1,11.95,01/15/19 08:54,"510 Park St, San Francisco, CA 94016" +151759,AAA Batteries (4-pack),1,2.99,01/08/19 21:24,"559 Wilson St, Portland, OR 97035" +151760,Wired Headphones,2,11.99,01/04/19 14:17,"56 Meadow St, Dallas, TX 75001" +151761,AAA Batteries (4-pack),1,2.99,01/11/19 14:32,"179 Lincoln St, Boston, MA 02215" +151762,Bose SoundSport Headphones,1,99.99,01/28/19 17:07,"837 Wilson St, Seattle, WA 98101" +151763,Apple Airpods Headphones,1,150,01/02/19 22:34,"284 Maple St, Seattle, WA 98101" +151764,AAA Batteries (4-pack),1,2.99,01/31/19 07:32,"836 5th St, San Francisco, CA 94016" +151765,AAA Batteries (4-pack),3,2.99,01/28/19 15:57,"891 North St, San Francisco, CA 94016" +151766,Flatscreen TV,1,300,01/21/19 20:43,"428 10th St, Los Angeles, CA 90001" +151767,AA Batteries (4-pack),1,3.84,01/22/19 17:32,"24 1st St, Seattle, WA 98101" +151768,Apple Airpods Headphones,1,150,01/29/19 21:53,"133 Pine St, San Francisco, CA 94016" +151769,Apple Airpods Headphones,1,150,01/27/19 14:08,"628 Cherry St, San Francisco, CA 94016" +151770,Wired Headphones,1,11.99,01/31/19 09:39,"388 10th St, San Francisco, CA 94016" +151771,Lightning Charging Cable,2,14.95,01/20/19 21:17,"352 Center St, Los Angeles, CA 90001" +151772,27in FHD Monitor,1,149.99,01/11/19 18:21,"750 Park St, San Francisco, CA 94016" +151773,USB-C Charging Cable,1,11.95,01/29/19 21:15,"685 Sunset St, Los Angeles, CA 90001" +151774,Lightning Charging Cable,1,14.95,01/12/19 19:41,"235 Wilson St, Dallas, TX 75001" +151775,Lightning Charging Cable,1,14.95,01/06/19 10:06,"221 Lake St, Atlanta, GA 30301" +151776,Lightning Charging Cable,1,14.95,01/17/19 15:57,"957 Hill St, Boston, MA 02215" +151777,AAA Batteries (4-pack),3,2.99,01/07/19 18:11,"825 2nd St, San Francisco, CA 94016" +151778,Apple Airpods Headphones,1,150,01/20/19 12:08,"786 Highland St, Los Angeles, CA 90001" +151779,Bose SoundSport Headphones,1,99.99,01/30/19 08:42,"142 Chestnut St, San Francisco, CA 94016" +151779,27in FHD Monitor,1,149.99,01/30/19 08:42,"142 Chestnut St, San Francisco, CA 94016" +151780,USB-C Charging Cable,1,11.95,01/05/19 13:13,"657 12th St, San Francisco, CA 94016" +151781,AA Batteries (4-pack),2,3.84,01/03/19 14:11,"655 Cherry St, New York City, NY 10001" +151782,Vareebadd Phone,1,400,01/28/19 01:06,"764 Cedar St, Portland, OR 97035" +151782,USB-C Charging Cable,1,11.95,01/28/19 01:06,"764 Cedar St, Portland, OR 97035" +151783,Wired Headphones,1,11.99,01/30/19 14:39,"76 Maple St, Seattle, WA 98101" +151784,Lightning Charging Cable,1,14.95,01/30/19 00:40,"132 Cherry St, New York City, NY 10001" +151785,Lightning Charging Cable,1,14.95,01/10/19 11:42,"51 South St, Los Angeles, CA 90001" +151786,Bose SoundSport Headphones,1,99.99,01/06/19 12:46,"586 Lake St, New York City, NY 10001" +151787,ThinkPad Laptop,1,999.99,01/29/19 12:37,"3 Lake St, San Francisco, CA 94016" +151788,27in FHD Monitor,1,149.99,01/16/19 12:12,"133 Hickory St, San Francisco, CA 94016" +151789,Apple Airpods Headphones,1,150,01/22/19 14:47,"416 Highland St, New York City, NY 10001" +151790,20in Monitor,2,109.99,01/08/19 08:39,"871 Madison St, New York City, NY 10001" +151791,AA Batteries (4-pack),2,3.84,01/13/19 14:37,"384 5th St, San Francisco, CA 94016" +151792,iPhone,1,700,01/01/19 22:59,"628 Church St, San Francisco, CA 94016" +151792,Apple Airpods Headphones,1,150,01/01/19 22:59,"628 Church St, San Francisco, CA 94016" +151793,Wired Headphones,2,11.99,01/30/19 11:31,"637 Highland St, Portland, OR 97035" +151794,Lightning Charging Cable,1,14.95,01/10/19 10:33,"316 West St, Seattle, WA 98101" +151795,AA Batteries (4-pack),1,3.84,01/23/19 11:31,"856 South St, Seattle, WA 98101" +151796,iPhone,1,700,01/22/19 17:56,"186 Wilson St, Portland, OR 97035" +151797,ThinkPad Laptop,1,999.99,01/28/19 09:33,"94 Ridge St, San Francisco, CA 94016" +151798,AAA Batteries (4-pack),1,2.99,01/11/19 15:47,"730 8th St, San Francisco, CA 94016" +151799,AAA Batteries (4-pack),2,2.99,01/11/19 11:52,"330 Chestnut St, San Francisco, CA 94016" +151800,27in 4K Gaming Monitor,1,389.99,01/03/19 18:17,"265 5th St, Boston, MA 02215" +151801,Lightning Charging Cable,1,14.95,01/11/19 21:08,"269 Highland St, San Francisco, CA 94016" +151802,Apple Airpods Headphones,1,150,01/10/19 20:19,"361 10th St, Atlanta, GA 30301" +151803,Google Phone,1,600,01/14/19 10:02,"4 Maple St, Los Angeles, CA 90001" +151803,Wired Headphones,1,11.99,01/14/19 10:02,"4 Maple St, Los Angeles, CA 90001" +151804,USB-C Charging Cable,1,11.95,01/26/19 23:49,"172 Hill St, Seattle, WA 98101" +151805,Wired Headphones,1,11.99,01/05/19 02:52,"96 Church St, New York City, NY 10001" +151806,AAA Batteries (4-pack),1,2.99,01/28/19 10:38,"816 Ridge St, New York City, NY 10001" +151807,Lightning Charging Cable,2,14.95,01/12/19 08:16,"468 4th St, San Francisco, CA 94016" +151808,34in Ultrawide Monitor,1,379.99,01/22/19 15:48,"45 Jackson St, San Francisco, CA 94016" +151809,34in Ultrawide Monitor,1,379.99,01/03/19 15:45,"208 River St, Boston, MA 02215" +151810,Macbook Pro Laptop,1,1700,01/16/19 14:01,"580 6th St, Los Angeles, CA 90001" +151811,Apple Airpods Headphones,1,150,01/24/19 21:58,"665 Cherry St, Atlanta, GA 30301" +151812,Macbook Pro Laptop,1,1700,01/27/19 14:40,"340 4th St, Portland, OR 97035" +151813,AA Batteries (4-pack),1,3.84,01/29/19 09:56,"70 Ridge St, Los Angeles, CA 90001" +151814,Apple Airpods Headphones,1,150,01/14/19 19:06,"114 4th St, New York City, NY 10001" +151815,AA Batteries (4-pack),1,3.84,01/23/19 15:21,"21 Ridge St, San Francisco, CA 94016" +151816,Wired Headphones,1,11.99,01/08/19 11:55,"574 Cherry St, San Francisco, CA 94016" +151817,Bose SoundSport Headphones,1,99.99,01/02/19 22:37,"387 6th St, Seattle, WA 98101" +151818,AAA Batteries (4-pack),2,2.99,01/14/19 16:18,"165 11th St, Portland, OR 97035" +151819,Lightning Charging Cable,1,14.95,01/15/19 16:48,"218 5th St, Atlanta, GA 30301" +151820,27in 4K Gaming Monitor,1,389.99,01/22/19 18:18,"842 Washington St, New York City, NY 10001" +151821,Macbook Pro Laptop,1,1700,01/05/19 11:26,"92 8th St, New York City, NY 10001" +151822,Macbook Pro Laptop,1,1700,01/24/19 19:43,"374 Forest St, Los Angeles, CA 90001" +151823,27in FHD Monitor,1,149.99,01/07/19 14:09,"507 South St, Austin, TX 73301" +151824,34in Ultrawide Monitor,1,379.99,01/16/19 12:00,"400 Main St, Boston, MA 02215" +151825,Wired Headphones,1,11.99,01/19/19 10:01,"196 10th St, Boston, MA 02215" +151826,27in 4K Gaming Monitor,1,389.99,01/23/19 22:26,"26 Lake St, Los Angeles, CA 90001" +151827,Lightning Charging Cable,1,14.95,01/21/19 20:53,"642 Jackson St, New York City, NY 10001" +151828,27in FHD Monitor,1,149.99,01/27/19 11:30,"145 6th St, San Francisco, CA 94016" +151829,AA Batteries (4-pack),2,3.84,01/20/19 19:41,"791 Jackson St, Los Angeles, CA 90001" +151830,Apple Airpods Headphones,1,150,01/04/19 10:02,"379 South St, San Francisco, CA 94016" +151831,Lightning Charging Cable,1,14.95,01/09/19 10:23,"121 South St, Seattle, WA 98101" +151832,Lightning Charging Cable,1,14.95,01/08/19 10:46,"320 North St, New York City, NY 10001" +151833,USB-C Charging Cable,1,11.95,01/20/19 14:14,"75 Meadow St, Los Angeles, CA 90001" +151834,Bose SoundSport Headphones,1,99.99,01/03/19 11:11,"731 Spruce St, San Francisco, CA 94016" +151835,AA Batteries (4-pack),3,3.84,01/25/19 17:23,"976 Pine St, San Francisco, CA 94016" +151836,20in Monitor,1,109.99,01/01/19 16:48,"916 Walnut St, Boston, MA 02215" +151837,Macbook Pro Laptop,1,1700,01/19/19 11:14,"320 Spruce St, New York City, NY 10001" +151838,34in Ultrawide Monitor,1,379.99,01/11/19 09:38,"534 Pine St, San Francisco, CA 94016" +151839,Bose SoundSport Headphones,1,99.99,01/20/19 12:54,"894 Lincoln St, Atlanta, GA 30301" +151840,AAA Batteries (4-pack),1,2.99,01/11/19 11:46,"135 North St, Los Angeles, CA 90001" +151841,Flatscreen TV,1,300,01/07/19 21:24,"617 Cedar St, Dallas, TX 75001" +151842,Wired Headphones,1,11.99,01/27/19 11:11,"800 Meadow St, Los Angeles, CA 90001" +151843,AA Batteries (4-pack),1,3.84,01/07/19 15:41,"431 Jefferson St, Dallas, TX 75001" +151844,AAA Batteries (4-pack),1,2.99,01/07/19 11:14,"163 Park St, Boston, MA 02215" +151845,Bose SoundSport Headphones,1,99.99,01/15/19 15:09,"646 Wilson St, Los Angeles, CA 90001" +151846,AA Batteries (4-pack),1,3.84,01/26/19 11:38,"878 Adams St, San Francisco, CA 94016" +151847,Apple Airpods Headphones,1,150,01/03/19 16:43,"799 Adams St, Seattle, WA 98101" +151848,USB-C Charging Cable,1,11.95,01/24/19 21:38,"125 West St, Seattle, WA 98101" +151849,27in FHD Monitor,1,149.99,01/03/19 17:29,"270 River St, San Francisco, CA 94016" +151850,USB-C Charging Cable,1,11.95,01/23/19 20:32,"372 Washington St, San Francisco, CA 94016" +151851,ThinkPad Laptop,1,999.99,01/18/19 12:47,"895 Church St, Dallas, TX 75001" +151852,AAA Batteries (4-pack),1,2.99,01/21/19 18:38,"347 River St, Los Angeles, CA 90001" +151853,AA Batteries (4-pack),1,3.84,01/16/19 09:35,"466 Madison St, Dallas, TX 75001" +151854,Lightning Charging Cable,1,14.95,01/02/19 10:20,"646 Center St, San Francisco, CA 94016" +151855,Lightning Charging Cable,1,14.95,01/07/19 17:55,"733 West St, New York City, NY 10001" +151856,Wired Headphones,1,11.99,01/30/19 13:05,"131 11th St, Atlanta, GA 30301" +151857,USB-C Charging Cable,1,11.95,01/16/19 20:23,"809 Main St, New York City, NY 10001" +151857,Apple Airpods Headphones,1,150,01/16/19 20:23,"809 Main St, New York City, NY 10001" +151858,iPhone,1,700,01/06/19 11:22,"33 Johnson St, San Francisco, CA 94016" +151859,AAA Batteries (4-pack),1,2.99,01/25/19 00:30,"717 Cherry St, Dallas, TX 75001" +151860,AAA Batteries (4-pack),1,2.99,01/25/19 13:37,"739 Church St, Seattle, WA 98101" +151861,AA Batteries (4-pack),2,3.84,01/21/19 17:53,"77 5th St, Dallas, TX 75001" +151862,Google Phone,1,600,01/02/19 19:26,"491 Hill St, Dallas, TX 75001" +151863,Apple Airpods Headphones,1,150,01/19/19 13:58,"511 Church St, Los Angeles, CA 90001" +151864,AA Batteries (4-pack),1,3.84,01/22/19 11:35,"865 Maple St, Los Angeles, CA 90001" +151865,Bose SoundSport Headphones,1,99.99,01/07/19 22:14,"550 Elm St, Boston, MA 02215" +151866,USB-C Charging Cable,1,11.95,01/19/19 22:57,"453 12th St, Los Angeles, CA 90001" +151867,34in Ultrawide Monitor,1,379.99,01/07/19 17:22,"324 Adams St, New York City, NY 10001" +151868,34in Ultrawide Monitor,1,379.99,01/27/19 15:10,"665 Wilson St, Austin, TX 73301" +151869,AAA Batteries (4-pack),1,2.99,01/08/19 02:53,"538 Ridge St, Boston, MA 02215" +151870,27in FHD Monitor,1,149.99,01/12/19 20:49,"832 Washington St, Los Angeles, CA 90001" +151871,iPhone,1,700,01/22/19 23:45,"593 Church St, Seattle, WA 98101" +151871,Lightning Charging Cable,1,14.95,01/22/19 23:45,"593 Church St, Seattle, WA 98101" +151872,AA Batteries (4-pack),1,3.84,01/26/19 20:11,"983 10th St, Seattle, WA 98101" +151873,27in FHD Monitor,1,149.99,01/31/19 15:21,"741 Hill St, Los Angeles, CA 90001" +151874,Wired Headphones,1,11.99,01/04/19 21:40,"359 14th St, Los Angeles, CA 90001" +151875,Lightning Charging Cable,1,14.95,01/20/19 11:03,"161 Forest St, Austin, TX 73301" +151876,USB-C Charging Cable,1,11.95,01/08/19 10:54,"874 11th St, Atlanta, GA 30301" +151877,Lightning Charging Cable,1,14.95,01/10/19 11:07,"737 Cedar St, Los Angeles, CA 90001" +151878,27in 4K Gaming Monitor,1,389.99,01/03/19 16:02,"601 South St, San Francisco, CA 94016" +151879,AA Batteries (4-pack),1,3.84,01/29/19 02:57,"277 River St, Atlanta, GA 30301" +151880,AAA Batteries (4-pack),1,2.99,01/07/19 17:34,"681 Johnson St, Los Angeles, CA 90001" +151881,Lightning Charging Cable,1,14.95,01/08/19 22:53,"947 9th St, San Francisco, CA 94016" +151882,27in FHD Monitor,1,149.99,01/01/19 10:28,"243 Willow St, New York City, NY 10001" +151883,ThinkPad Laptop,1,999.99,01/08/19 15:47,"667 Jackson St, San Francisco, CA 94016" +151884,Wired Headphones,1,11.99,01/10/19 23:31,"771 Pine St, Los Angeles, CA 90001" +151885,Flatscreen TV,1,300,01/08/19 12:16,"911 Johnson St, New York City, NY 10001" +151886,USB-C Charging Cable,1,11.95,01/07/19 10:55,"183 11th St, Los Angeles, CA 90001" +151887,Wired Headphones,1,11.99,01/13/19 13:26,"488 Dogwood St, Seattle, WA 98101" +151888,Apple Airpods Headphones,1,150,01/25/19 09:28,"29 Park St, Portland, ME 04101" +151889,AAA Batteries (4-pack),1,2.99,01/26/19 19:40,"36 11th St, Atlanta, GA 30301" +151890,AAA Batteries (4-pack),1,2.99,01/23/19 15:44,"608 4th St, New York City, NY 10001" +151891,Lightning Charging Cable,1,14.95,01/21/19 22:50,"218 Meadow St, Seattle, WA 98101" +151892,Bose SoundSport Headphones,1,99.99,01/31/19 16:54,"41 Elm St, New York City, NY 10001" +151893,USB-C Charging Cable,1,11.95,01/22/19 15:31,"72 2nd St, Dallas, TX 75001" +151894,27in FHD Monitor,1,149.99,01/19/19 11:39,"910 1st St, Los Angeles, CA 90001" +151895,Bose SoundSport Headphones,1,99.99,01/22/19 16:16,"590 Jackson St, New York City, NY 10001" +151896,Flatscreen TV,1,300,01/30/19 19:02,"550 4th St, Boston, MA 02215" +151896,AAA Batteries (4-pack),2,2.99,01/30/19 19:02,"550 4th St, Boston, MA 02215" +151897,Lightning Charging Cable,1,14.95,01/04/19 08:12,"106 Pine St, Los Angeles, CA 90001" +151898,AA Batteries (4-pack),1,3.84,01/17/19 21:09,"618 Willow St, Los Angeles, CA 90001" +151899,34in Ultrawide Monitor,1,379.99,01/17/19 13:05,"322 Madison St, Austin, TX 73301" +151900,Google Phone,1,600,01/05/19 22:21,"904 Jackson St, Atlanta, GA 30301" +151901,Bose SoundSport Headphones,1,99.99,01/08/19 09:31,"323 11th St, Boston, MA 02215" +151902,Google Phone,1,600,01/13/19 20:19,"870 Hickory St, San Francisco, CA 94016" +151903,Wired Headphones,1,11.99,01/11/19 15:51,"342 Sunset St, Atlanta, GA 30301" +151904,USB-C Charging Cable,1,11.95,01/09/19 00:52,"36 10th St, New York City, NY 10001" +151905,27in 4K Gaming Monitor,1,389.99,01/22/19 23:25,"797 Lakeview St, New York City, NY 10001" +151906,Apple Airpods Headphones,1,150,01/22/19 21:16,"842 4th St, Los Angeles, CA 90001" +151907,USB-C Charging Cable,1,11.95,01/05/19 10:48,"618 Wilson St, San Francisco, CA 94016" +151908,Lightning Charging Cable,1,14.95,01/02/19 21:35,"264 10th St, Dallas, TX 75001" +151909,Lightning Charging Cable,1,14.95,01/19/19 00:39,"72 Center St, Boston, MA 02215" +151910,Macbook Pro Laptop,1,1700,01/21/19 10:13,"395 Chestnut St, Atlanta, GA 30301" +151911,Apple Airpods Headphones,1,150,01/30/19 18:37,"19 13th St, New York City, NY 10001" +151912,AA Batteries (4-pack),3,3.84,01/04/19 23:01,"144 Main St, New York City, NY 10001" +151913,Apple Airpods Headphones,1,150,01/06/19 18:42,"788 Pine St, Seattle, WA 98101" +151914,USB-C Charging Cable,1,11.95,01/30/19 10:55,"277 Pine St, Los Angeles, CA 90001" +151915,AAA Batteries (4-pack),2,2.99,01/29/19 11:24,"973 Highland St, San Francisco, CA 94016" +151916,LG Dryer,1,600.0,01/14/19 16:58,"559 Dogwood St, New York City, NY 10001" +151917,ThinkPad Laptop,1,999.99,01/18/19 16:47,"978 Jefferson St, Atlanta, GA 30301" +151918,Flatscreen TV,1,300,01/21/19 22:55,"66 Elm St, Portland, OR 97035" +151919,AA Batteries (4-pack),1,3.84,01/29/19 17:13,"448 Cedar St, Los Angeles, CA 90001" +151920,Wired Headphones,1,11.99,01/07/19 13:13,"290 Walnut St, San Francisco, CA 94016" +151921,Lightning Charging Cable,1,14.95,01/29/19 21:13,"653 Church St, Los Angeles, CA 90001" +151922,AA Batteries (4-pack),1,3.84,01/14/19 23:18,"297 River St, Seattle, WA 98101" +151923,AA Batteries (4-pack),1,3.84,01/15/19 22:08,"389 Lake St, Boston, MA 02215" +151924,AA Batteries (4-pack),1,3.84,01/24/19 06:08,"159 River St, New York City, NY 10001" +151925,Lightning Charging Cable,1,14.95,01/14/19 22:35,"999 Lincoln St, Atlanta, GA 30301" +151926,Wired Headphones,1,11.99,01/16/19 16:30,"627 8th St, San Francisco, CA 94016" +151927,27in 4K Gaming Monitor,1,389.99,01/08/19 14:04,"543 Johnson St, Boston, MA 02215" +151928,AA Batteries (4-pack),1,3.84,01/11/19 17:05,"718 Church St, Los Angeles, CA 90001" +151929,20in Monitor,1,109.99,01/13/19 13:56,"783 Lake St, Portland, OR 97035" +151930,AAA Batteries (4-pack),5,2.99,01/14/19 14:11,"692 5th St, Boston, MA 02215" +151931,iPhone,1,700,01/13/19 20:00,"369 Dogwood St, Seattle, WA 98101" +151931,Apple Airpods Headphones,1,150,01/13/19 20:00,"369 Dogwood St, Seattle, WA 98101" +151932,USB-C Charging Cable,1,11.95,01/12/19 14:23,"823 10th St, Portland, OR 97035" +151933,AAA Batteries (4-pack),1,2.99,01/25/19 15:16,"575 Sunset St, New York City, NY 10001" +151934,AAA Batteries (4-pack),1,2.99,01/22/19 10:47,"5 Wilson St, Dallas, TX 75001" +151935,Google Phone,1,600,01/03/19 15:33,"67 6th St, New York City, NY 10001" +151936,AAA Batteries (4-pack),3,2.99,01/20/19 14:17,"72 Highland St, San Francisco, CA 94016" +151937,Wired Headphones,1,11.99,01/23/19 21:14,"486 12th St, Seattle, WA 98101" +151938,Apple Airpods Headphones,1,150,01/17/19 11:32,"770 10th St, Dallas, TX 75001" +151939,Vareebadd Phone,1,400,01/19/19 11:45,"15 Park St, Austin, TX 73301" +151940,Apple Airpods Headphones,1,150,01/08/19 12:11,"546 West St, Dallas, TX 75001" +151941,iPhone,1,700,01/18/19 20:56,"122 14th St, Los Angeles, CA 90001" +151942,iPhone,1,700,01/23/19 15:32,"518 6th St, Dallas, TX 75001" +151943,USB-C Charging Cable,1,11.95,01/31/19 12:36,"274 Sunset St, San Francisco, CA 94016" +151944,AA Batteries (4-pack),1,3.84,01/30/19 17:46,"665 Jackson St, Seattle, WA 98101" +151945,Lightning Charging Cable,1,14.95,01/26/19 10:31,"660 Willow St, San Francisco, CA 94016" +151946,AAA Batteries (4-pack),1,2.99,01/09/19 12:39,"758 Johnson St, New York City, NY 10001" +151947,iPhone,1,700,01/03/19 08:22,"277 5th St, San Francisco, CA 94016" +151947,Apple Airpods Headphones,1,150,01/03/19 08:22,"277 5th St, San Francisco, CA 94016" +151948,34in Ultrawide Monitor,1,379.99,01/25/19 23:08,"881 Spruce St, Los Angeles, CA 90001" +151949,Apple Airpods Headphones,1,150,01/24/19 11:37,"910 Dogwood St, New York City, NY 10001" +151950,Google Phone,1,600,01/04/19 22:16,"580 Dogwood St, Los Angeles, CA 90001" +151951,AAA Batteries (4-pack),1,2.99,01/09/19 11:47,"596 12th St, Boston, MA 02215" +151951,Google Phone,1,600,01/09/19 11:47,"596 12th St, Boston, MA 02215" +151952,iPhone,1,700,01/05/19 12:00,"801 10th St, San Francisco, CA 94016" +151953,USB-C Charging Cable,1,11.95,01/07/19 20:40,"300 Jackson St, San Francisco, CA 94016" +151954,USB-C Charging Cable,3,11.95,01/01/19 11:28,"647 South St, Boston, MA 02215" +151955,27in 4K Gaming Monitor,1,389.99,01/09/19 22:08,"983 Wilson St, Boston, MA 02215" +151956,Google Phone,1,600,01/29/19 15:19,"998 Walnut St, New York City, NY 10001" +151957,Flatscreen TV,1,300,01/06/19 21:08,"748 7th St, Austin, TX 73301" +151958,AA Batteries (4-pack),1,3.84,01/18/19 20:30,"308 North St, Los Angeles, CA 90001" +151959,Apple Airpods Headphones,1,150,01/22/19 16:04,"448 13th St, San Francisco, CA 94016" +151960,Macbook Pro Laptop,1,1700,01/06/19 11:35,"311 Ridge St, Boston, MA 02215" +151961,Wired Headphones,1,11.99,01/22/19 21:48,"927 Johnson St, Los Angeles, CA 90001" +151962,Macbook Pro Laptop,1,1700,01/07/19 21:24,"184 Lincoln St, New York City, NY 10001" +151963,Wired Headphones,1,11.99,01/22/19 08:56,"179 Highland St, Los Angeles, CA 90001" +151964,AA Batteries (4-pack),1,3.84,01/28/19 13:45,"189 Walnut St, Boston, MA 02215" +151965,Macbook Pro Laptop,1,1700,01/29/19 18:07,"509 Walnut St, New York City, NY 10001" +151966,Lightning Charging Cable,1,14.95,01/09/19 19:14,"961 Chestnut St, Boston, MA 02215" +151967,ThinkPad Laptop,1,999.99,01/15/19 11:47,"131 North St, San Francisco, CA 94016" +151968,34in Ultrawide Monitor,1,379.99,01/09/19 09:38,"701 Chestnut St, San Francisco, CA 94016" +151969,Wired Headphones,1,11.99,01/08/19 14:05,"793 Walnut St, Boston, MA 02215" +151970,iPhone,1,700,01/24/19 08:22,"858 Walnut St, Los Angeles, CA 90001" +151971,27in 4K Gaming Monitor,1,389.99,01/10/19 16:01,"403 Washington St, San Francisco, CA 94016" +151972,Flatscreen TV,1,300,01/09/19 13:31,"27 Meadow St, New York City, NY 10001" +151973,Vareebadd Phone,1,400,01/20/19 11:17,"112 Ridge St, Los Angeles, CA 90001" +151974,Wired Headphones,1,11.99,01/16/19 16:21,"450 Jackson St, Dallas, TX 75001" +151975,Bose SoundSport Headphones,1,99.99,01/01/19 13:05,"483 8th St, Atlanta, GA 30301" +151976,Macbook Pro Laptop,1,1700,01/11/19 11:43,"552 South St, Los Angeles, CA 90001" +151977,USB-C Charging Cable,1,11.95,01/04/19 22:00,"682 Main St, San Francisco, CA 94016" +151978,Apple Airpods Headphones,1,150,01/19/19 20:56,"714 Johnson St, Los Angeles, CA 90001" +151979,Lightning Charging Cable,1,14.95,01/16/19 07:55,"909 Lincoln St, San Francisco, CA 94016" +151980,AA Batteries (4-pack),1,3.84,01/31/19 20:45,"21 Lakeview St, Atlanta, GA 30301" +151981,Wired Headphones,1,11.99,01/05/19 11:44,"845 7th St, San Francisco, CA 94016" +151982,USB-C Charging Cable,1,11.95,01/19/19 12:59,"411 Sunset St, Los Angeles, CA 90001" +151983,Wired Headphones,1,11.99,01/02/19 00:29,"384 Cherry St, Portland, OR 97035" +151984,USB-C Charging Cable,1,11.95,01/13/19 12:53,"938 Lakeview St, Los Angeles, CA 90001" +151985,USB-C Charging Cable,2,11.95,01/24/19 08:48,"498 4th St, Los Angeles, CA 90001" +151986,Macbook Pro Laptop,1,1700,01/02/19 23:06,"861 Lincoln St, Portland, OR 97035" +151987,AA Batteries (4-pack),1,3.84,01/19/19 15:25,"595 Ridge St, San Francisco, CA 94016" +151988,Wired Headphones,1,11.99,01/01/19 15:28,"144 11th St, Boston, MA 02215" +151989,Wired Headphones,2,11.99,01/24/19 11:12,"358 North St, San Francisco, CA 94016" +151990,Apple Airpods Headphones,1,150,01/05/19 07:43,"437 1st St, Dallas, TX 75001" +151990,Apple Airpods Headphones,1,150,01/05/19 07:43,"437 1st St, Dallas, TX 75001" +151991,ThinkPad Laptop,1,999.99,01/31/19 12:22,"289 8th St, Atlanta, GA 30301" +151992,AA Batteries (4-pack),2,3.84,01/27/19 14:39,"194 9th St, San Francisco, CA 94016" +151993,AAA Batteries (4-pack),5,2.99,01/17/19 18:56,"577 Johnson St, New York City, NY 10001" +151994,AAA Batteries (4-pack),1,2.99,01/13/19 20:53,"960 Meadow St, San Francisco, CA 94016" +151995,USB-C Charging Cable,1,11.95,01/11/19 11:16,"62 Washington St, New York City, NY 10001" +151996,Google Phone,1,600,01/05/19 11:56,"739 Elm St, San Francisco, CA 94016" +151997,20in Monitor,1,109.99,01/29/19 19:43,"367 9th St, New York City, NY 10001" +151998,Flatscreen TV,1,300,01/24/19 15:17,"862 2nd St, Boston, MA 02215" +151999,Google Phone,1,600,01/17/19 10:07,"1 Jefferson St, Austin, TX 73301" +152000,20in Monitor,1,109.99,01/08/19 09:54,"348 Hill St, New York City, NY 10001" +152001,Google Phone,1,600,01/04/19 15:56,"541 Johnson St, San Francisco, CA 94016" +152002,34in Ultrawide Monitor,1,379.99,01/25/19 21:55,"808 12th St, Los Angeles, CA 90001" +152003,Wired Headphones,1,11.99,01/07/19 06:13,"508 River St, Dallas, TX 75001" +152004,AAA Batteries (4-pack),2,2.99,01/06/19 11:41,"280 Adams St, Seattle, WA 98101" +152005,Bose SoundSport Headphones,1,99.99,01/24/19 11:35,"53 North St, Dallas, TX 75001" +152006,USB-C Charging Cable,1,11.95,01/28/19 13:41,"225 Pine St, Dallas, TX 75001" +152007,AA Batteries (4-pack),2,3.84,01/23/19 22:13,"190 Chestnut St, Los Angeles, CA 90001" +152008,Flatscreen TV,1,300,01/13/19 13:24,"739 8th St, New York City, NY 10001" +152009,27in FHD Monitor,1,149.99,01/08/19 21:09,"709 Washington St, Seattle, WA 98101" +152010,Lightning Charging Cable,1,14.95,01/06/19 13:23,"348 Highland St, Atlanta, GA 30301" +152011,AA Batteries (4-pack),1,3.84,01/30/19 16:04,"904 11th St, San Francisco, CA 94016" +152012,Wired Headphones,1,11.99,01/06/19 20:22,"440 Willow St, Los Angeles, CA 90001" +152013,Bose SoundSport Headphones,1,99.99,01/02/19 10:04,"501 Cedar St, Atlanta, GA 30301" +152014,USB-C Charging Cable,1,11.95,01/15/19 17:48,"225 North St, San Francisco, CA 94016" +152015,LG Dryer,1,600.0,01/21/19 20:19,"864 North St, Atlanta, GA 30301" +152016,iPhone,1,700,01/08/19 18:19,"612 Ridge St, Los Angeles, CA 90001" +152017,Apple Airpods Headphones,1,150,01/02/19 00:45,"673 Highland St, Los Angeles, CA 90001" +152018,USB-C Charging Cable,1,11.95,01/14/19 18:33,"213 14th St, San Francisco, CA 94016" +152019,ThinkPad Laptop,1,999.99,01/23/19 14:47,"105 Spruce St, Atlanta, GA 30301" +152020,AA Batteries (4-pack),1,3.84,01/17/19 21:10,"896 5th St, Atlanta, GA 30301" +152021,USB-C Charging Cable,1,11.95,01/10/19 15:04,"615 13th St, Boston, MA 02215" +152022,Apple Airpods Headphones,2,150,01/18/19 11:15,"62 Lake St, Los Angeles, CA 90001" +152023,Apple Airpods Headphones,1,150,01/26/19 22:05,"434 Lake St, Portland, OR 97035" +152023,Lightning Charging Cable,1,14.95,01/26/19 22:05,"434 Lake St, Portland, OR 97035" +152024,USB-C Charging Cable,1,11.95,01/19/19 03:06,"794 12th St, Dallas, TX 75001" +152025,34in Ultrawide Monitor,1,379.99,01/29/19 15:42,"150 North St, Austin, TX 73301" +152026,Wired Headphones,1,11.99,01/23/19 23:18,"918 Wilson St, San Francisco, CA 94016" +152027,34in Ultrawide Monitor,1,379.99,01/24/19 01:48,"245 Maple St, Atlanta, GA 30301" +152028,Bose SoundSport Headphones,1,99.99,01/04/19 11:25,"56 Highland St, Seattle, WA 98101" +152029,Apple Airpods Headphones,2,150,01/24/19 17:46,"101 13th St, Boston, MA 02215" +152030,ThinkPad Laptop,1,999.99,01/28/19 13:38,"5 Wilson St, New York City, NY 10001" +152031,Wired Headphones,1,11.99,01/22/19 15:57,"433 Center St, New York City, NY 10001" +152032,Lightning Charging Cable,1,14.95,01/19/19 15:11,"879 Jefferson St, New York City, NY 10001" +152033,Lightning Charging Cable,1,14.95,01/26/19 10:27,"540 13th St, San Francisco, CA 94016" +152034,AAA Batteries (4-pack),1,2.99,01/03/19 20:29,"269 Maple St, New York City, NY 10001" +152035,34in Ultrawide Monitor,1,379.99,01/27/19 18:11,"388 10th St, Los Angeles, CA 90001" +152036,Lightning Charging Cable,1,14.95,01/08/19 11:05,"932 Willow St, Los Angeles, CA 90001" +152037,Wired Headphones,1,11.99,01/11/19 10:17,"486 Washington St, Los Angeles, CA 90001" +152038,Wired Headphones,1,11.99,01/14/19 21:45,"797 Spruce St, Dallas, TX 75001" +152039,USB-C Charging Cable,1,11.95,01/15/19 13:17,"970 Madison St, Los Angeles, CA 90001" +152040,Bose SoundSport Headphones,1,99.99,01/23/19 12:21,"157 8th St, New York City, NY 10001" +152041,Flatscreen TV,1,300,01/02/19 09:36,"73 Park St, San Francisco, CA 94016" +152042,iPhone,1,700,01/01/19 14:03,"607 12th St, Los Angeles, CA 90001" +152043,Apple Airpods Headphones,1,150,01/18/19 13:34,"814 10th St, Atlanta, GA 30301" +152044,Bose SoundSport Headphones,1,99.99,01/31/19 07:44,"339 Forest St, Seattle, WA 98101" +152045,USB-C Charging Cable,1,11.95,01/18/19 10:38,"496 Dogwood St, San Francisco, CA 94016" +152046,Apple Airpods Headphones,1,150,01/03/19 09:43,"280 Highland St, San Francisco, CA 94016" +152047,34in Ultrawide Monitor,1,379.99,01/21/19 01:00,"264 Adams St, Los Angeles, CA 90001" +152048,AA Batteries (4-pack),1,3.84,01/11/19 14:44,"278 Hickory St, New York City, NY 10001" +152049,Apple Airpods Headphones,1,150,01/04/19 12:40,"398 Wilson St, Boston, MA 02215" +152050,USB-C Charging Cable,1,11.95,01/08/19 11:07,"990 Willow St, Dallas, TX 75001" +152051,Bose SoundSport Headphones,1,99.99,01/07/19 13:18,"295 Lake St, San Francisco, CA 94016" +152052,Lightning Charging Cable,1,14.95,01/31/19 10:46,"875 Jackson St, Austin, TX 73301" +152053,USB-C Charging Cable,1,11.95,01/05/19 11:04,"685 12th St, San Francisco, CA 94016" +152054,AAA Batteries (4-pack),2,2.99,01/06/19 11:16,"54 Lake St, San Francisco, CA 94016" +152055,Apple Airpods Headphones,1,150,01/26/19 11:46,"755 5th St, Dallas, TX 75001" +152056,AA Batteries (4-pack),1,3.84,01/16/19 12:14,"249 Sunset St, Los Angeles, CA 90001" +152057,AA Batteries (4-pack),1,3.84,01/20/19 14:04,"793 Dogwood St, Los Angeles, CA 90001" +152058,Wired Headphones,1,11.99,01/12/19 13:58,"101 Adams St, Los Angeles, CA 90001" +152059,AA Batteries (4-pack),1,3.84,01/24/19 14:00,"596 Madison St, Portland, OR 97035" +152060,Apple Airpods Headphones,1,150,01/05/19 21:42,"343 14th St, San Francisco, CA 94016" +152061,USB-C Charging Cable,1,11.95,01/25/19 10:36,"147 Church St, Los Angeles, CA 90001" +152062,27in FHD Monitor,1,149.99,01/04/19 11:13,"927 River St, Seattle, WA 98101" +152063,Bose SoundSport Headphones,1,99.99,01/14/19 11:02,"929 Sunset St, San Francisco, CA 94016" +152064,Bose SoundSport Headphones,1,99.99,01/26/19 12:16,"524 Pine St, Boston, MA 02215" +152065,Bose SoundSport Headphones,1,99.99,01/12/19 06:55,"232 9th St, Austin, TX 73301" +152065,Wired Headphones,1,11.99,01/12/19 06:55,"232 9th St, Austin, TX 73301" +152066,AA Batteries (4-pack),1,3.84,01/19/19 19:10,"282 Main St, San Francisco, CA 94016" +152067,27in FHD Monitor,1,149.99,01/26/19 12:54,"171 Lincoln St, Austin, TX 73301" +152068,USB-C Charging Cable,1,11.95,01/21/19 21:58,"276 6th St, New York City, NY 10001" +152069,Wired Headphones,1,11.99,01/07/19 12:43,"939 6th St, Los Angeles, CA 90001" +152070,AAA Batteries (4-pack),1,2.99,01/21/19 12:11,"680 4th St, Portland, OR 97035" +152070,Wired Headphones,1,11.99,01/21/19 12:11,"680 4th St, Portland, OR 97035" +152071,AA Batteries (4-pack),1,3.84,01/17/19 07:14,"335 Park St, Los Angeles, CA 90001" +152072,34in Ultrawide Monitor,1,379.99,01/28/19 13:54,"939 Willow St, Seattle, WA 98101" +152073,AA Batteries (4-pack),3,3.84,01/09/19 13:11,"318 Washington St, Boston, MA 02215" +152074,Macbook Pro Laptop,1,1700,01/26/19 14:40,"725 Cherry St, San Francisco, CA 94016" +152075,USB-C Charging Cable,1,11.95,01/30/19 19:01,"707 River St, Atlanta, GA 30301" +152076,34in Ultrawide Monitor,1,379.99,01/15/19 03:43,"350 Park St, San Francisco, CA 94016" +152077,Google Phone,1,600,01/05/19 21:10,"682 Cherry St, Los Angeles, CA 90001" +152077,USB-C Charging Cable,1,11.95,01/05/19 21:10,"682 Cherry St, Los Angeles, CA 90001" +152078,27in FHD Monitor,1,149.99,01/25/19 16:08,"991 8th St, Portland, OR 97035" +152079,Lightning Charging Cable,1,14.95,01/07/19 16:27,"958 7th St, San Francisco, CA 94016" +152080,Lightning Charging Cable,1,14.95,01/27/19 13:54,"598 Lake St, New York City, NY 10001" +152081,Wired Headphones,3,11.99,01/25/19 06:57,"673 8th St, San Francisco, CA 94016" +152082,Bose SoundSport Headphones,1,99.99,01/14/19 11:43,"558 South St, Dallas, TX 75001" +152083,USB-C Charging Cable,1,11.95,01/28/19 09:46,"696 Jackson St, Portland, OR 97035" +152084,iPhone,1,700,01/13/19 23:05,"954 13th St, Los Angeles, CA 90001" +152085,Lightning Charging Cable,1,14.95,01/10/19 15:48,"695 Hickory St, Atlanta, GA 30301" +152086,Apple Airpods Headphones,1,150,01/01/19 19:53,"397 Madison St, New York City, NY 10001" +152087,AAA Batteries (4-pack),1,2.99,01/10/19 12:41,"227 4th St, Seattle, WA 98101" +152088,Apple Airpods Headphones,1,150,01/24/19 11:05,"792 West St, San Francisco, CA 94016" +152089,Bose SoundSport Headphones,1,99.99,01/13/19 17:20,"383 12th St, Dallas, TX 75001" +152090,Bose SoundSport Headphones,1,99.99,01/25/19 19:26,"361 4th St, Atlanta, GA 30301" +152090,Bose SoundSport Headphones,1,99.99,01/25/19 19:26,"361 4th St, Atlanta, GA 30301" +152091,USB-C Charging Cable,1,11.95,01/20/19 06:07,"305 Forest St, New York City, NY 10001" +152092,Bose SoundSport Headphones,1,99.99,01/10/19 13:09,"844 Adams St, San Francisco, CA 94016" +152093,USB-C Charging Cable,2,11.95,01/15/19 06:39,"176 Church St, Los Angeles, CA 90001" +152094,Apple Airpods Headphones,1,150,01/02/19 22:16,"179 8th St, Dallas, TX 75001" +152095,AAA Batteries (4-pack),1,2.99,01/04/19 17:52,"953 9th St, Boston, MA 02215" +152096,Flatscreen TV,1,300,01/20/19 22:54,"900 Center St, Austin, TX 73301" +152097,Lightning Charging Cable,1,14.95,01/26/19 14:14,"969 12th St, New York City, NY 10001" +152098,Apple Airpods Headphones,1,150,01/08/19 14:34,"813 Cedar St, Boston, MA 02215" +152099,Apple Airpods Headphones,1,150,01/01/19 19:09,"240 Madison St, San Francisco, CA 94016" +152100,34in Ultrawide Monitor,1,379.99,01/13/19 16:57,"553 Pine St, Austin, TX 73301" +152101,USB-C Charging Cable,1,11.95,01/06/19 11:48,"929 1st St, Boston, MA 02215" +152102,AAA Batteries (4-pack),1,2.99,01/24/19 12:52,"247 Wilson St, Atlanta, GA 30301" +152103,AAA Batteries (4-pack),1,2.99,01/18/19 18:40,"956 Spruce St, Los Angeles, CA 90001" +152104,AAA Batteries (4-pack),1,2.99,01/14/19 22:42,"496 Hill St, Boston, MA 02215" +152105,Bose SoundSport Headphones,1,99.99,01/01/19 17:22,"997 Cedar St, Portland, OR 97035" +152106,Apple Airpods Headphones,1,150,01/03/19 00:00,"596 West St, New York City, NY 10001" +152107,Wired Headphones,1,11.99,01/14/19 18:17,"688 Wilson St, New York City, NY 10001" +152108,AAA Batteries (4-pack),1,2.99,01/31/19 10:39,"861 13th St, New York City, NY 10001" +152109,Wired Headphones,1,11.99,01/17/19 08:55,"905 11th St, San Francisco, CA 94016" +152110,Apple Airpods Headphones,1,150,01/07/19 11:57,"259 Lincoln St, Portland, OR 97035" +152111,AA Batteries (4-pack),1,3.84,01/03/19 22:10,"324 8th St, Dallas, TX 75001" +152112,Apple Airpods Headphones,1,150,01/18/19 11:49,"396 Lake St, Austin, TX 73301" +152113,Lightning Charging Cable,1,14.95,01/25/19 14:51,"110 Maple St, San Francisco, CA 94016" +152114,AAA Batteries (4-pack),1,2.99,01/27/19 23:35,"228 Lincoln St, Seattle, WA 98101" +152115,Lightning Charging Cable,1,14.95,01/10/19 21:09,"656 Walnut St, Los Angeles, CA 90001" +152116,USB-C Charging Cable,1,11.95,01/18/19 02:06,"104 Ridge St, San Francisco, CA 94016" +152117,AAA Batteries (4-pack),1,2.99,01/14/19 11:03,"781 Lincoln St, Los Angeles, CA 90001" +152118,Lightning Charging Cable,1,14.95,01/11/19 10:16,"723 Elm St, New York City, NY 10001" +152119,34in Ultrawide Monitor,1,379.99,01/31/19 15:36,"11 Hill St, San Francisco, CA 94016" +152120,Lightning Charging Cable,1,14.95,01/14/19 12:33,"771 Elm St, Atlanta, GA 30301" +152121,USB-C Charging Cable,1,11.95,01/12/19 14:54,"921 Chestnut St, San Francisco, CA 94016" +152122,Wired Headphones,1,11.99,01/06/19 15:46,"983 Park St, San Francisco, CA 94016" +152123,27in FHD Monitor,1,149.99,01/13/19 16:03,"541 Center St, Austin, TX 73301" +152124,27in FHD Monitor,1,149.99,01/03/19 21:23,"683 Forest St, Boston, MA 02215" +152125,Macbook Pro Laptop,1,1700,01/04/19 19:09,"54 Church St, Portland, ME 04101" +152126,Bose SoundSport Headphones,1,99.99,01/27/19 19:28,"877 8th St, Dallas, TX 75001" +152127,Wired Headphones,1,11.99,01/24/19 15:01,"120 Madison St, Boston, MA 02215" +152128,USB-C Charging Cable,1,11.95,01/05/19 03:04,"365 Main St, San Francisco, CA 94016" +152129,27in FHD Monitor,1,149.99,01/15/19 16:08,"466 Ridge St, Los Angeles, CA 90001" +152130,AAA Batteries (4-pack),1,2.99,01/09/19 00:22,"537 River St, Seattle, WA 98101" +152131,iPhone,1,700,01/28/19 19:37,"677 10th St, San Francisco, CA 94016" +152132,ThinkPad Laptop,1,999.99,01/27/19 12:30,"880 Forest St, Los Angeles, CA 90001" +152133,Apple Airpods Headphones,1,150,01/04/19 19:39,"822 Maple St, Austin, TX 73301" +152134,AA Batteries (4-pack),3,3.84,01/12/19 16:01,"187 Jackson St, Atlanta, GA 30301" +152135,20in Monitor,1,109.99,01/06/19 11:29,"866 North St, Seattle, WA 98101" +152136,Lightning Charging Cable,1,14.95,01/25/19 13:39,"764 Washington St, New York City, NY 10001" +152137,Wired Headphones,1,11.99,01/27/19 16:53,"768 Lake St, Atlanta, GA 30301" +152138,AAA Batteries (4-pack),1,2.99,01/24/19 10:29,"798 11th St, San Francisco, CA 94016" +152139,USB-C Charging Cable,1,11.95,01/24/19 14:43,"354 Hill St, Boston, MA 02215" +152140,AA Batteries (4-pack),1,3.84,01/09/19 15:43,"382 Pine St, San Francisco, CA 94016" +152141,AAA Batteries (4-pack),1,2.99,01/03/19 12:41,"938 Meadow St, New York City, NY 10001" +152142,Bose SoundSport Headphones,1,99.99,01/27/19 10:48,"254 Cherry St, Portland, OR 97035" +152143,USB-C Charging Cable,1,11.95,01/06/19 12:47,"689 Church St, Los Angeles, CA 90001" +152144,Google Phone,1,600,01/02/19 16:26,"294 South St, New York City, NY 10001" +152145,20in Monitor,1,109.99,01/19/19 17:13,"196 Chestnut St, Dallas, TX 75001" +152146,20in Monitor,1,109.99,01/14/19 09:32,"761 River St, Boston, MA 02215" +152147,AAA Batteries (4-pack),1,2.99,01/10/19 10:10,"833 Maple St, Los Angeles, CA 90001" +152148,Bose SoundSport Headphones,1,99.99,01/01/19 12:27,"311 Lake St, Atlanta, GA 30301" +152149,USB-C Charging Cable,1,11.95,01/14/19 11:42,"528 Spruce St, New York City, NY 10001" +152150,27in 4K Gaming Monitor,1,389.99,01/05/19 03:57,"538 10th St, Portland, OR 97035" +152151,Flatscreen TV,1,300,01/10/19 18:44,"902 13th St, San Francisco, CA 94016" +152152,AA Batteries (4-pack),1,3.84,01/26/19 13:45,"778 Main St, Portland, ME 04101" +152153,Lightning Charging Cable,1,14.95,01/26/19 20:39,"402 Church St, Atlanta, GA 30301" +152154,Wired Headphones,1,11.99,01/29/19 13:26,"549 2nd St, Los Angeles, CA 90001" +152154,AAA Batteries (4-pack),1,2.99,01/29/19 13:26,"549 2nd St, Los Angeles, CA 90001" +152155,AA Batteries (4-pack),2,3.84,01/07/19 15:24,"139 4th St, Dallas, TX 75001" +152156,27in 4K Gaming Monitor,1,389.99,01/13/19 12:33,"16 5th St, New York City, NY 10001" +152157,AAA Batteries (4-pack),4,2.99,01/27/19 09:32,"533 Center St, San Francisco, CA 94016" +152158,AA Batteries (4-pack),1,3.84,01/09/19 05:42,"207 Forest St, Dallas, TX 75001" +152159,Apple Airpods Headphones,1,150,01/16/19 10:58,"592 Sunset St, Los Angeles, CA 90001" +152160,Bose SoundSport Headphones,1,99.99,01/03/19 10:27,"125 North St, San Francisco, CA 94016" +152161,27in 4K Gaming Monitor,1,389.99,01/17/19 07:01,"953 Hickory St, New York City, NY 10001" +152162,AA Batteries (4-pack),2,3.84,01/06/19 10:37,"139 Hill St, Dallas, TX 75001" +152163,Bose SoundSport Headphones,1,99.99,01/22/19 20:37,"657 2nd St, Los Angeles, CA 90001" +152164,Lightning Charging Cable,1,14.95,01/26/19 12:45,"529 Forest St, San Francisco, CA 94016" +152165,AA Batteries (4-pack),1,3.84,01/19/19 17:37,"123 River St, New York City, NY 10001" +152166,AAA Batteries (4-pack),1,2.99,01/23/19 16:30,"58 Forest St, New York City, NY 10001" +152167,Lightning Charging Cable,1,14.95,01/19/19 13:13,"372 Pine St, Seattle, WA 98101" +152168,ThinkPad Laptop,1,999.99,01/07/19 11:17,"931 Ridge St, Los Angeles, CA 90001" +152169,Wired Headphones,2,11.99,01/14/19 15:36,"240 Lincoln St, Los Angeles, CA 90001" +152170,Apple Airpods Headphones,1,150,01/28/19 19:07,"779 Meadow St, Boston, MA 02215" +152171,AA Batteries (4-pack),1,3.84,01/12/19 01:34,"157 Willow St, San Francisco, CA 94016" +152172,AAA Batteries (4-pack),1,2.99,01/30/19 18:23,"210 Washington St, Atlanta, GA 30301" +152173,Bose SoundSport Headphones,1,99.99,01/14/19 18:02,"160 Jefferson St, Portland, OR 97035" +152174,27in FHD Monitor,1,149.99,01/23/19 11:24,"725 Forest St, New York City, NY 10001" +152175,AAA Batteries (4-pack),1,2.99,01/16/19 12:07,"344 10th St, Los Angeles, CA 90001" +152176,USB-C Charging Cable,2,11.95,01/31/19 19:01,"33 Forest St, New York City, NY 10001" +152177,AAA Batteries (4-pack),1,2.99,01/06/19 13:48,"537 Chestnut St, Dallas, TX 75001" +152178,27in 4K Gaming Monitor,1,389.99,01/10/19 20:59,"58 Meadow St, Seattle, WA 98101" +152179,27in 4K Gaming Monitor,1,389.99,01/29/19 09:09,"9 Lake St, Austin, TX 73301" +152180,27in FHD Monitor,1,149.99,01/27/19 02:26,"643 Forest St, Atlanta, GA 30301" +152181,Bose SoundSport Headphones,1,99.99,01/11/19 23:06,"896 13th St, Los Angeles, CA 90001" +152182,20in Monitor,1,109.99,01/12/19 15:07,"519 Church St, San Francisco, CA 94016" +152183,34in Ultrawide Monitor,1,379.99,01/23/19 22:09,"681 Cedar St, Boston, MA 02215" +152184,Vareebadd Phone,1,400,01/15/19 18:32,"667 14th St, Boston, MA 02215" +152185,Lightning Charging Cable,1,14.95,01/11/19 23:19,"335 Dogwood St, San Francisco, CA 94016" +152186,Bose SoundSport Headphones,2,99.99,01/04/19 11:04,"706 12th St, San Francisco, CA 94016" +152187,27in FHD Monitor,1,149.99,01/27/19 13:51,"256 Hill St, Portland, OR 97035" +152188,iPhone,1,700,01/19/19 14:25,"211 Dogwood St, Dallas, TX 75001" +152188,Lightning Charging Cable,1,14.95,01/19/19 14:25,"211 Dogwood St, Dallas, TX 75001" +152189,Lightning Charging Cable,1,14.95,01/06/19 21:27,"275 West St, Austin, TX 73301" +152190,ThinkPad Laptop,1,999.99,01/16/19 09:32,"757 Washington St, San Francisco, CA 94016" +152191,USB-C Charging Cable,1,11.95,01/07/19 17:06,"364 River St, Dallas, TX 75001" +152192,AAA Batteries (4-pack),2,2.99,01/17/19 15:20,"673 Church St, San Francisco, CA 94016" +152193,Wired Headphones,1,11.99,01/25/19 11:23,"572 River St, San Francisco, CA 94016" +152194,34in Ultrawide Monitor,1,379.99,01/20/19 08:36,"801 Jefferson St, Dallas, TX 75001" +152195,Lightning Charging Cable,1,14.95,01/16/19 11:10,"747 Ridge St, Seattle, WA 98101" +152196,Apple Airpods Headphones,1,150,01/28/19 19:58,"813 Jackson St, Atlanta, GA 30301" +152197,Lightning Charging Cable,1,14.95,01/11/19 01:09,"437 Walnut St, San Francisco, CA 94016" +152198,AA Batteries (4-pack),3,3.84,01/06/19 23:48,"241 Meadow St, Boston, MA 02215" +152199,Apple Airpods Headphones,1,150,01/19/19 15:55,"870 Wilson St, Los Angeles, CA 90001" +152200,20in Monitor,1,109.99,01/02/19 10:22,"455 Church St, New York City, NY 10001" +152201,USB-C Charging Cable,1,11.95,01/31/19 14:20,"34 Spruce St, San Francisco, CA 94016" +152202,Wired Headphones,1,11.99,01/04/19 12:53,"440 Park St, San Francisco, CA 94016" +152203,27in FHD Monitor,1,149.99,01/28/19 13:00,"397 Hickory St, Atlanta, GA 30301" +152203,AA Batteries (4-pack),1,3.84,01/28/19 13:00,"397 Hickory St, Atlanta, GA 30301" +152204,Apple Airpods Headphones,1,150,01/11/19 11:27,"959 Park St, San Francisco, CA 94016" +152205,34in Ultrawide Monitor,1,379.99,01/11/19 15:17,"549 Washington St, Atlanta, GA 30301" +152206,27in FHD Monitor,1,149.99,01/09/19 11:50,"314 Highland St, Boston, MA 02215" +152207,AA Batteries (4-pack),2,3.84,01/25/19 04:53,"448 Sunset St, San Francisco, CA 94016" +152208,Google Phone,1,600,01/09/19 11:07,"424 7th St, Seattle, WA 98101" +152209,LG Dryer,1,600.0,01/27/19 11:45,"503 8th St, Portland, OR 97035" +152210,Wired Headphones,1,11.99,01/30/19 20:58,"448 Lakeview St, Atlanta, GA 30301" +152211,Apple Airpods Headphones,1,150,01/19/19 21:08,"58 Park St, San Francisco, CA 94016" +152212,AA Batteries (4-pack),3,3.84,01/17/19 11:03,"435 Johnson St, San Francisco, CA 94016" +152213,Macbook Pro Laptop,1,1700,01/10/19 18:39,"419 Maple St, Los Angeles, CA 90001" +152214,Wired Headphones,1,11.99,01/19/19 00:16,"253 Ridge St, Los Angeles, CA 90001" +152215,Lightning Charging Cable,1,14.95,01/13/19 14:15,"378 4th St, Los Angeles, CA 90001" +152216,Lightning Charging Cable,1,14.95,01/30/19 06:26,"43 Park St, Boston, MA 02215" +152217,AA Batteries (4-pack),1,3.84,01/05/19 16:25,"427 Lakeview St, San Francisco, CA 94016" +152218,AAA Batteries (4-pack),1,2.99,01/11/19 19:25,"654 Meadow St, Los Angeles, CA 90001" +152219,AA Batteries (4-pack),3,3.84,01/20/19 15:34,"283 North St, Austin, TX 73301" +152220,Wired Headphones,1,11.99,01/31/19 12:27,"545 9th St, San Francisco, CA 94016" +152221,Flatscreen TV,1,300,01/22/19 21:53,"396 7th St, Los Angeles, CA 90001" +152222,27in 4K Gaming Monitor,1,389.99,01/11/19 22:16,"25 Spruce St, San Francisco, CA 94016" +152223,Vareebadd Phone,1,400,01/17/19 21:48,"599 12th St, Los Angeles, CA 90001" +152223,USB-C Charging Cable,1,11.95,01/17/19 21:48,"599 12th St, Los Angeles, CA 90001" +152224,Wired Headphones,1,11.99,01/27/19 23:34,"279 River St, Seattle, WA 98101" +152225,Flatscreen TV,1,300,01/06/19 13:29,"18 Chestnut St, Portland, OR 97035" +152226,iPhone,1,700,01/05/19 13:53,"237 Lincoln St, San Francisco, CA 94016" +152227,AA Batteries (4-pack),2,3.84,01/29/19 11:20,"724 Spruce St, San Francisco, CA 94016" +152228,Bose SoundSport Headphones,1,99.99,01/12/19 16:38,"895 9th St, Austin, TX 73301" +152229,Vareebadd Phone,1,400,01/04/19 19:04,"675 Cherry St, Atlanta, GA 30301" +152230,Macbook Pro Laptop,1,1700,01/15/19 15:21,"510 Church St, Seattle, WA 98101" +152231,Lightning Charging Cable,1,14.95,01/27/19 13:06,"840 5th St, Dallas, TX 75001" +152232,20in Monitor,1,109.99,01/10/19 11:46,"225 Washington St, Seattle, WA 98101" +152233,27in 4K Gaming Monitor,1,389.99,01/31/19 12:47,"820 Maple St, Seattle, WA 98101" +152234,Lightning Charging Cable,1,14.95,01/26/19 16:03,"50 Center St, Portland, OR 97035" +152235,USB-C Charging Cable,1,11.95,01/10/19 22:32,"198 12th St, Austin, TX 73301" +152236,AA Batteries (4-pack),2,3.84,01/25/19 17:16,"502 River St, Dallas, TX 75001" +152237,AA Batteries (4-pack),1,3.84,01/30/19 10:10,"565 1st St, Seattle, WA 98101" +152238,LG Washing Machine,1,600.0,01/11/19 15:36,"366 Washington St, San Francisco, CA 94016" +152239,Apple Airpods Headphones,1,150,01/25/19 21:47,"209 Ridge St, Seattle, WA 98101" +152240,AA Batteries (4-pack),1,3.84,01/08/19 09:36,"875 Maple St, San Francisco, CA 94016" +152241,AAA Batteries (4-pack),1,2.99,01/08/19 11:52,"614 River St, San Francisco, CA 94016" +152242,USB-C Charging Cable,1,11.95,01/19/19 12:44,"664 1st St, San Francisco, CA 94016" +152243,27in 4K Gaming Monitor,1,389.99,01/05/19 04:37,"20 Jefferson St, San Francisco, CA 94016" +152244,Google Phone,1,600,01/20/19 22:15,"107 Elm St, San Francisco, CA 94016" +152245,27in 4K Gaming Monitor,1,389.99,01/19/19 23:15,"613 Spruce St, Seattle, WA 98101" +152246,USB-C Charging Cable,1,11.95,01/29/19 20:50,"132 4th St, Atlanta, GA 30301" +152247,AA Batteries (4-pack),1,3.84,01/08/19 10:17,"823 Center St, Los Angeles, CA 90001" +152248,Google Phone,1,600,01/01/19 22:25,"549 River St, New York City, NY 10001" +152248,USB-C Charging Cable,1,11.95,01/01/19 22:25,"549 River St, New York City, NY 10001" +152249,Apple Airpods Headphones,1,150,01/26/19 14:04,"754 1st St, Austin, TX 73301" +152250,AA Batteries (4-pack),1,3.84,01/01/19 11:05,"156 Cherry St, Los Angeles, CA 90001" +152251,AAA Batteries (4-pack),3,2.99,01/04/19 10:28,"334 Center St, Seattle, WA 98101" +152252,27in 4K Gaming Monitor,1,389.99,01/13/19 14:55,"858 Madison St, San Francisco, CA 94016" +152253,Lightning Charging Cable,1,14.95,01/20/19 19:01,"29 Ridge St, Dallas, TX 75001" +152254,Wired Headphones,1,11.99,01/07/19 12:01,"164 Adams St, Los Angeles, CA 90001" +152255,Flatscreen TV,1,300,01/01/19 09:35,"872 Dogwood St, San Francisco, CA 94016" +152256,27in 4K Gaming Monitor,1,389.99,01/10/19 20:00,"463 13th St, Atlanta, GA 30301" +152257,Bose SoundSport Headphones,1,99.99,01/03/19 04:54,"497 Dogwood St, New York City, NY 10001" +152258,Lightning Charging Cable,1,14.95,01/17/19 11:21,"237 Cedar St, San Francisco, CA 94016" +152259,Apple Airpods Headphones,1,150,01/13/19 14:30,"62 Pine St, San Francisco, CA 94016" +152260,34in Ultrawide Monitor,1,379.99,01/27/19 22:21,"751 6th St, Los Angeles, CA 90001" +152261,Wired Headphones,1,11.99,01/29/19 07:44,"730 Madison St, Los Angeles, CA 90001" +152262,USB-C Charging Cable,1,11.95,01/01/19 22:06,"194 West St, Atlanta, GA 30301" +152263,34in Ultrawide Monitor,1,379.99,01/13/19 16:27,"741 Center St, New York City, NY 10001" +152264,AAA Batteries (4-pack),1,2.99,01/06/19 19:34,"558 Elm St, Austin, TX 73301" +152265,AAA Batteries (4-pack),1,2.99,01/09/19 14:01,"958 Chestnut St, Los Angeles, CA 90001" +152266,Apple Airpods Headphones,1,150,01/08/19 18:53,"816 Walnut St, Boston, MA 02215" +152267,Apple Airpods Headphones,1,150,01/09/19 23:00,"14 Highland St, San Francisco, CA 94016" +152268,Lightning Charging Cable,1,14.95,01/12/19 13:22,"342 Meadow St, Dallas, TX 75001" +152269,USB-C Charging Cable,1,11.95,01/12/19 15:41,"833 Chestnut St, San Francisco, CA 94016" +152270,Lightning Charging Cable,1,14.95,01/07/19 18:59,"145 Main St, Los Angeles, CA 90001" +152271,Lightning Charging Cable,1,14.95,01/12/19 06:22,"809 13th St, New York City, NY 10001" +152272,Google Phone,1,600,01/02/19 14:41,"768 Elm St, Portland, OR 97035" +152273,Wired Headphones,1,11.99,01/05/19 09:22,"803 10th St, San Francisco, CA 94016" +152274,Macbook Pro Laptop,1,1700,01/15/19 13:29,"932 Lincoln St, San Francisco, CA 94016" +152275,20in Monitor,1,109.99,01/29/19 21:47,"83 Washington St, Seattle, WA 98101" +152276,Lightning Charging Cable,1,14.95,01/09/19 10:46,"143 Washington St, San Francisco, CA 94016" +152277,ThinkPad Laptop,1,999.99,01/11/19 09:33,"576 6th St, Dallas, TX 75001" +152278,USB-C Charging Cable,1,11.95,01/05/19 10:25,"927 Adams St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +152279,Apple Airpods Headphones,1,150,01/20/19 20:21,"883 Meadow St, Boston, MA 02215" +152280,AA Batteries (4-pack),2,3.84,01/11/19 18:31,"534 Cherry St, New York City, NY 10001" +152281,Bose SoundSport Headphones,1,99.99,01/17/19 08:58,"320 Pine St, New York City, NY 10001" +152282,Google Phone,1,600,01/27/19 10:48,"826 Lake St, New York City, NY 10001" +152282,USB-C Charging Cable,3,11.95,01/27/19 10:48,"826 Lake St, New York City, NY 10001" +152283,Bose SoundSport Headphones,1,99.99,01/15/19 12:08,"154 Maple St, Boston, MA 02215" +152284,USB-C Charging Cable,1,11.95,01/05/19 23:21,"802 Cedar St, San Francisco, CA 94016" +152285,iPhone,1,700,01/31/19 22:51,"949 1st St, Los Angeles, CA 90001" +152286,27in 4K Gaming Monitor,1,389.99,01/13/19 16:42,"851 Cherry St, San Francisco, CA 94016" +152287,AAA Batteries (4-pack),3,2.99,01/18/19 19:58,"519 Elm St, San Francisco, CA 94016" +152288,Lightning Charging Cable,1,14.95,01/16/19 00:30,"167 4th St, San Francisco, CA 94016" +152289,27in FHD Monitor,1,149.99,01/15/19 14:50,"110 Lincoln St, Boston, MA 02215" +152290,Lightning Charging Cable,1,14.95,01/15/19 14:36,"638 11th St, Seattle, WA 98101" +152291,Google Phone,1,600,01/11/19 12:07,"938 Walnut St, Los Angeles, CA 90001" +152291,USB-C Charging Cable,2,11.95,01/11/19 12:07,"938 Walnut St, Los Angeles, CA 90001" +152292,34in Ultrawide Monitor,1,379.99,01/01/19 08:55,"603 North St, Los Angeles, CA 90001" +152293,USB-C Charging Cable,1,11.95,01/18/19 21:22,"405 Lakeview St, Portland, OR 97035" +152294,Macbook Pro Laptop,1,1700,01/24/19 17:31,"312 14th St, Los Angeles, CA 90001" +152295,Bose SoundSport Headphones,1,99.99,01/09/19 22:17,"26 West St, Dallas, TX 75001" +152296,27in FHD Monitor,1,149.99,01/09/19 18:39,"757 Forest St, San Francisco, CA 94016" +152297,Bose SoundSport Headphones,1,99.99,01/15/19 15:14,"428 Jackson St, San Francisco, CA 94016" +152298,Wired Headphones,1,11.99,01/19/19 17:43,"854 Walnut St, San Francisco, CA 94016" +152299,Bose SoundSport Headphones,1,99.99,01/25/19 11:46,"671 West St, San Francisco, CA 94016" +152300,Lightning Charging Cable,1,14.95,01/14/19 08:18,"647 Lakeview St, San Francisco, CA 94016" +152301,USB-C Charging Cable,1,11.95,01/08/19 07:04,"223 Highland St, Los Angeles, CA 90001" +152302,USB-C Charging Cable,1,11.95,01/03/19 13:33,"317 Hill St, Portland, OR 97035" +152303,USB-C Charging Cable,1,11.95,01/25/19 12:57,"666 Meadow St, Boston, MA 02215" +152304,AAA Batteries (4-pack),1,2.99,01/19/19 02:26,"380 Ridge St, Seattle, WA 98101" +152305,AA Batteries (4-pack),1,3.84,01/19/19 14:51,"291 Johnson St, Los Angeles, CA 90001" +152306,AA Batteries (4-pack),1,3.84,01/01/19 11:01,"551 13th St, Los Angeles, CA 90001" +152307,Google Phone,1,600,01/02/19 11:45,"839 Jackson St, New York City, NY 10001" +152308,Lightning Charging Cable,1,14.95,01/01/19 07:32,"283 Adams St, Los Angeles, CA 90001" +152309,Wired Headphones,1,11.99,01/04/19 12:18,"145 12th St, New York City, NY 10001" +152310,AA Batteries (4-pack),1,3.84,01/31/19 15:45,"766 2nd St, Atlanta, GA 30301" +152311,Apple Airpods Headphones,1,150,01/08/19 16:12,"29 Washington St, New York City, NY 10001" +152312,Lightning Charging Cable,1,14.95,01/23/19 09:37,"603 Madison St, Seattle, WA 98101" +152313,USB-C Charging Cable,1,11.95,01/25/19 17:10,"82 Church St, Dallas, TX 75001" +152314,iPhone,1,700,01/13/19 19:15,"536 9th St, San Francisco, CA 94016" +152314,Lightning Charging Cable,1,14.95,01/13/19 19:15,"536 9th St, San Francisco, CA 94016" +152315,AA Batteries (4-pack),1,3.84,01/08/19 09:27,"885 Jackson St, Seattle, WA 98101" +152316,Macbook Pro Laptop,1,1700,01/25/19 10:21,"893 Johnson St, Atlanta, GA 30301" +152317,20in Monitor,1,109.99,01/28/19 13:13,"632 Lake St, New York City, NY 10001" +152318,AA Batteries (4-pack),1,3.84,01/03/19 13:15,"282 Cedar St, San Francisco, CA 94016" +152319,USB-C Charging Cable,2,11.95,01/16/19 20:22,"130 Pine St, Atlanta, GA 30301" +152320,AAA Batteries (4-pack),3,2.99,01/25/19 07:32,"138 8th St, Austin, TX 73301" +152321,Bose SoundSport Headphones,1,99.99,01/31/19 19:47,"682 Pine St, Boston, MA 02215" +152322,27in 4K Gaming Monitor,1,389.99,01/01/19 11:08,"804 Willow St, San Francisco, CA 94016" +152323,34in Ultrawide Monitor,1,379.99,01/03/19 15:50,"216 Willow St, New York City, NY 10001" +152324,Bose SoundSport Headphones,1,99.99,01/04/19 13:28,"21 Lake St, Los Angeles, CA 90001" +152325,AA Batteries (4-pack),1,3.84,01/07/19 00:49,"513 4th St, New York City, NY 10001" +152326,USB-C Charging Cable,1,11.95,01/13/19 11:47,"355 Maple St, San Francisco, CA 94016" +152327,USB-C Charging Cable,1,11.95,01/28/19 04:59,"576 11th St, Dallas, TX 75001" +152328,ThinkPad Laptop,1,999.99,01/27/19 19:10,"304 Jefferson St, Austin, TX 73301" +152329,Bose SoundSport Headphones,1,99.99,01/27/19 17:24,"614 Dogwood St, San Francisco, CA 94016" +152330,Lightning Charging Cable,2,14.95,01/15/19 15:59,"405 12th St, New York City, NY 10001" +152331,AAA Batteries (4-pack),1,2.99,01/13/19 21:57,"614 12th St, New York City, NY 10001" +152332,USB-C Charging Cable,1,11.95,01/02/19 20:16,"959 11th St, San Francisco, CA 94016" +152333,Lightning Charging Cable,1,14.95,01/10/19 18:38,"784 Meadow St, San Francisco, CA 94016" +152334,Lightning Charging Cable,1,14.95,01/22/19 10:52,"942 Forest St, San Francisco, CA 94016" +152335,USB-C Charging Cable,1,11.95,01/06/19 20:00,"595 Walnut St, Dallas, TX 75001" +152336,27in FHD Monitor,1,149.99,01/15/19 13:28,"673 7th St, San Francisco, CA 94016" +152337,Wired Headphones,1,11.99,01/16/19 15:23,"971 Sunset St, San Francisco, CA 94016" +152338,Wired Headphones,1,11.99,01/02/19 15:34,"46 11th St, Los Angeles, CA 90001" +152339,USB-C Charging Cable,1,11.95,01/11/19 14:05,"658 Main St, San Francisco, CA 94016" +152340,USB-C Charging Cable,1,11.95,01/08/19 23:59,"667 Lincoln St, Los Angeles, CA 90001" +152341,Lightning Charging Cable,1,14.95,01/27/19 17:44,"829 Forest St, Los Angeles, CA 90001" +152342,AAA Batteries (4-pack),2,2.99,01/29/19 14:01,"532 Dogwood St, Seattle, WA 98101" +152343,Wired Headphones,1,11.99,01/29/19 00:34,"403 1st St, Atlanta, GA 30301" +152344,iPhone,1,700,01/25/19 01:56,"77 West St, San Francisco, CA 94016" +152345,AA Batteries (4-pack),1,3.84,01/08/19 19:44,"879 Hill St, New York City, NY 10001" +152346,Lightning Charging Cable,1,14.95,01/12/19 16:26,"211 Hickory St, Los Angeles, CA 90001" +152347,USB-C Charging Cable,1,11.95,01/20/19 17:43,"852 Lake St, Los Angeles, CA 90001" +152348,USB-C Charging Cable,1,11.95,01/02/19 00:25,"74 1st St, San Francisco, CA 94016" +152349,Vareebadd Phone,1,400,01/28/19 14:54,"530 12th St, Portland, OR 97035" +152349,USB-C Charging Cable,1,11.95,01/28/19 14:54,"530 12th St, Portland, OR 97035" +152350,Bose SoundSport Headphones,1,99.99,01/01/19 13:54,"13 Washington St, New York City, NY 10001" +152351,Apple Airpods Headphones,1,150,01/07/19 18:20,"251 Chestnut St, Atlanta, GA 30301" +152352,AA Batteries (4-pack),1,3.84,01/08/19 10:24,"653 Elm St, New York City, NY 10001" +152353,USB-C Charging Cable,1,11.95,01/19/19 15:50,"39 10th St, San Francisco, CA 94016" +152354,Lightning Charging Cable,1,14.95,01/24/19 21:20,"560 Willow St, Portland, OR 97035" +152355,Wired Headphones,1,11.99,01/22/19 12:30,"686 9th St, Dallas, TX 75001" +152356,AAA Batteries (4-pack),1,2.99,01/15/19 15:30,"772 7th St, Portland, OR 97035" +152357,ThinkPad Laptop,1,999.99,01/28/19 15:05,"541 4th St, New York City, NY 10001" +152358,Google Phone,1,600,01/16/19 17:43,"938 Hill St, Boston, MA 02215" +152359,Wired Headphones,1,11.99,01/15/19 15:16,"658 Park St, Dallas, TX 75001" +152360,27in 4K Gaming Monitor,1,389.99,01/14/19 07:46,"449 Jackson St, San Francisco, CA 94016" +152361,AAA Batteries (4-pack),1,2.99,01/31/19 18:19,"822 Cedar St, Seattle, WA 98101" +152362,iPhone,1,700,01/27/19 20:15,"155 2nd St, San Francisco, CA 94016" +152362,Lightning Charging Cable,1,14.95,01/27/19 20:15,"155 2nd St, San Francisco, CA 94016" +152362,Macbook Pro Laptop,1,1700,01/27/19 20:15,"155 2nd St, San Francisco, CA 94016" +152363,27in FHD Monitor,1,149.99,01/17/19 15:12,"321 Sunset St, Los Angeles, CA 90001" +152364,Apple Airpods Headphones,1,150,01/06/19 16:02,"16 Spruce St, Portland, ME 04101" +152365,AA Batteries (4-pack),1,3.84,01/08/19 12:57,"714 6th St, Seattle, WA 98101" +152366,Flatscreen TV,1,300,01/20/19 11:35,"735 South St, San Francisco, CA 94016" +152367,Lightning Charging Cable,1,14.95,01/17/19 09:38,"403 13th St, Dallas, TX 75001" +152368,34in Ultrawide Monitor,1,379.99,01/11/19 21:25,"375 2nd St, San Francisco, CA 94016" +152369,Wired Headphones,1,11.99,01/11/19 23:55,"91 7th St, Portland, OR 97035" +152370,AAA Batteries (4-pack),1,2.99,01/30/19 20:02,"238 Madison St, San Francisco, CA 94016" +152371,ThinkPad Laptop,1,999.99,01/25/19 11:36,"16 Spruce St, Seattle, WA 98101" +152372,USB-C Charging Cable,1,11.95,01/21/19 23:51,"593 14th St, San Francisco, CA 94016" +152373,ThinkPad Laptop,1,999.99,01/01/19 15:32,"594 4th St, Portland, OR 97035" +152374,Bose SoundSport Headphones,1,99.99,01/06/19 20:45,"520 Park St, San Francisco, CA 94016" +152375,AA Batteries (4-pack),1,3.84,01/26/19 07:37,"973 Maple St, Atlanta, GA 30301" +152376,iPhone,1,700,01/21/19 21:00,"597 Lincoln St, Portland, ME 04101" +152376,iPhone,1,700,01/21/19 21:00,"597 Lincoln St, Portland, ME 04101" +152377,34in Ultrawide Monitor,1,379.99,01/04/19 22:22,"585 Meadow St, Dallas, TX 75001" +152377,27in FHD Monitor,1,149.99,01/04/19 22:22,"585 Meadow St, Dallas, TX 75001" +152378,Lightning Charging Cable,1,14.95,01/20/19 20:10,"249 Highland St, San Francisco, CA 94016" +152379,AAA Batteries (4-pack),1,2.99,01/29/19 17:41,"230 7th St, New York City, NY 10001" +152380,AAA Batteries (4-pack),1,2.99,01/01/19 13:18,"960 Elm St, Austin, TX 73301" +152381,iPhone,1,700,01/23/19 12:28,"699 Jackson St, Boston, MA 02215" +152382,Bose SoundSport Headphones,1,99.99,01/13/19 13:00,"5 Cedar St, San Francisco, CA 94016" +152383,Apple Airpods Headphones,1,150,01/05/19 22:41,"778 South St, Los Angeles, CA 90001" +152384,AAA Batteries (4-pack),1,2.99,01/18/19 21:00,"821 Highland St, Atlanta, GA 30301" +152385,AAA Batteries (4-pack),2,2.99,01/03/19 14:23,"478 Church St, New York City, NY 10001" +152386,34in Ultrawide Monitor,1,379.99,01/14/19 15:05,"392 10th St, Boston, MA 02215" +152387,Lightning Charging Cable,1,14.95,01/10/19 07:47,"851 5th St, Austin, TX 73301" +152388,AA Batteries (4-pack),2,3.84,01/10/19 22:13,"238 11th St, Los Angeles, CA 90001" +152389,AA Batteries (4-pack),2,3.84,01/03/19 16:04,"567 14th St, New York City, NY 10001" +152390,USB-C Charging Cable,1,11.95,01/04/19 10:50,"379 Jackson St, Los Angeles, CA 90001" +152391,Bose SoundSport Headphones,1,99.99,01/15/19 23:56,"282 Spruce St, Los Angeles, CA 90001" +152392,Lightning Charging Cable,1,14.95,01/05/19 15:34,"205 13th St, Los Angeles, CA 90001" +152393,27in FHD Monitor,1,149.99,01/25/19 15:34,"6 11th St, San Francisco, CA 94016" +152394,27in 4K Gaming Monitor,1,389.99,01/11/19 13:33,"980 Park St, San Francisco, CA 94016" +152395,AA Batteries (4-pack),1,3.84,01/04/19 22:15,"240 Park St, San Francisco, CA 94016" +152396,27in FHD Monitor,1,149.99,01/28/19 09:34,"159 Sunset St, San Francisco, CA 94016" +152397,AAA Batteries (4-pack),3,2.99,01/12/19 19:30,"732 Spruce St, Dallas, TX 75001" +152398,Apple Airpods Headphones,1,150,01/28/19 19:35,"967 Hill St, New York City, NY 10001" +152399,Lightning Charging Cable,1,14.95,01/28/19 12:24,"997 Ridge St, Austin, TX 73301" +152400,AAA Batteries (4-pack),2,2.99,01/17/19 10:43,"573 8th St, Los Angeles, CA 90001" +152401,AAA Batteries (4-pack),5,2.99,01/11/19 13:43,"305 Lincoln St, Portland, OR 97035" +152402,Wired Headphones,1,11.99,01/08/19 23:04,"193 Meadow St, Atlanta, GA 30301" +152403,AA Batteries (4-pack),1,3.84,01/09/19 10:40,"207 Johnson St, San Francisco, CA 94016" +152404,USB-C Charging Cable,1,11.95,01/13/19 13:45,"527 Pine St, Dallas, TX 75001" +152405,Macbook Pro Laptop,1,1700,01/04/19 14:25,"304 Park St, New York City, NY 10001" +152406,iPhone,1,700,01/01/19 13:48,"285 Lincoln St, San Francisco, CA 94016" +152407,27in 4K Gaming Monitor,1,389.99,01/03/19 06:54,"834 Johnson St, Boston, MA 02215" +152408,Bose SoundSport Headphones,1,99.99,01/24/19 09:28,"592 Maple St, San Francisco, CA 94016" +152409,Bose SoundSport Headphones,1,99.99,01/14/19 21:07,"324 Park St, Los Angeles, CA 90001" +152410,AA Batteries (4-pack),1,3.84,01/05/19 14:13,"598 Walnut St, Boston, MA 02215" +152411,20in Monitor,1,109.99,01/15/19 11:09,"621 5th St, Los Angeles, CA 90001" +152412,AA Batteries (4-pack),1,3.84,01/16/19 19:33,"324 Jefferson St, Los Angeles, CA 90001" +152413,34in Ultrawide Monitor,1,379.99,01/25/19 10:06,"325 9th St, New York City, NY 10001" +152414,Lightning Charging Cable,1,14.95,01/25/19 11:56,"965 12th St, Los Angeles, CA 90001" +152415,USB-C Charging Cable,1,11.95,01/02/19 11:22,"756 12th St, Seattle, WA 98101" +152416,Apple Airpods Headphones,1,150,01/29/19 14:09,"945 Lakeview St, New York City, NY 10001" +152417,Bose SoundSport Headphones,1,99.99,01/29/19 06:05,"175 Jackson St, Portland, OR 97035" +152418,AAA Batteries (4-pack),1,2.99,01/30/19 12:31,"268 Highland St, Los Angeles, CA 90001" +152419,Lightning Charging Cable,1,14.95,01/22/19 22:41,"939 Jackson St, San Francisco, CA 94016" +152420,USB-C Charging Cable,1,11.95,01/22/19 12:53,"387 South St, Dallas, TX 75001" +152421,Bose SoundSport Headphones,1,99.99,01/16/19 09:24,"567 North St, Atlanta, GA 30301" +152422,AAA Batteries (4-pack),1,2.99,01/31/19 20:09,"290 Meadow St, Los Angeles, CA 90001" +152423,34in Ultrawide Monitor,1,379.99,01/22/19 16:31,"476 Highland St, Dallas, TX 75001" +152424,USB-C Charging Cable,2,11.95,01/30/19 12:17,"486 2nd St, Dallas, TX 75001" +152425,Bose SoundSport Headphones,1,99.99,01/17/19 07:42,"884 Elm St, Boston, MA 02215" +152426,AAA Batteries (4-pack),2,2.99,01/14/19 22:12,"552 Washington St, Atlanta, GA 30301" +152427,AAA Batteries (4-pack),2,2.99,01/04/19 09:58,"692 Cherry St, San Francisco, CA 94016" +152428,Lightning Charging Cable,1,14.95,01/08/19 09:26,"411 Main St, San Francisco, CA 94016" +152429,Wired Headphones,1,11.99,01/21/19 23:30,"635 11th St, Seattle, WA 98101" +152430,Apple Airpods Headphones,1,150,01/12/19 15:12,"52 4th St, Portland, OR 97035" +152431,34in Ultrawide Monitor,1,379.99,01/26/19 08:12,"761 13th St, Los Angeles, CA 90001" +152432,AA Batteries (4-pack),1,3.84,01/05/19 07:59,"548 Jackson St, Los Angeles, CA 90001" +152433,Lightning Charging Cable,1,14.95,01/11/19 18:47,"803 Willow St, San Francisco, CA 94016" +152434,Wired Headphones,1,11.99,01/09/19 22:21,"164 Park St, New York City, NY 10001" +152435,AAA Batteries (4-pack),1,2.99,01/22/19 20:26,"326 4th St, Seattle, WA 98101" +152436,ThinkPad Laptop,1,999.99,01/02/19 20:33,"604 5th St, San Francisco, CA 94016" +152437,AA Batteries (4-pack),1,3.84,01/19/19 21:18,"373 Walnut St, Portland, OR 97035" +152438,USB-C Charging Cable,1,11.95,01/18/19 13:07,"364 Sunset St, San Francisco, CA 94016" +152439,Lightning Charging Cable,1,14.95,01/20/19 12:45,"642 Spruce St, Seattle, WA 98101" +152440,Wired Headphones,1,11.99,01/10/19 12:12,"672 13th St, Los Angeles, CA 90001" +152441,Lightning Charging Cable,1,14.95,01/19/19 10:42,"15 Highland St, Austin, TX 73301" +152442,Flatscreen TV,1,300,01/08/19 23:38,"403 Elm St, San Francisco, CA 94016" +152443,20in Monitor,1,109.99,01/27/19 22:28,"177 Adams St, Los Angeles, CA 90001" +152444,Wired Headphones,1,11.99,01/14/19 16:55,"472 8th St, San Francisco, CA 94016" +152444,AAA Batteries (4-pack),1,2.99,01/14/19 16:55,"472 8th St, San Francisco, CA 94016" +152445,Lightning Charging Cable,1,14.95,01/20/19 23:53,"602 North St, New York City, NY 10001" +152446,34in Ultrawide Monitor,1,379.99,01/07/19 22:35,"807 7th St, Austin, TX 73301" +152447,ThinkPad Laptop,1,999.99,01/17/19 20:57,"624 Willow St, Los Angeles, CA 90001" +152448,USB-C Charging Cable,1,11.95,01/22/19 22:12,"205 Forest St, Los Angeles, CA 90001" +152449,AAA Batteries (4-pack),1,2.99,01/17/19 09:35,"237 Ridge St, Atlanta, GA 30301" +152450,Bose SoundSport Headphones,1,99.99,01/28/19 19:41,"566 Maple St, Boston, MA 02215" +152451,AAA Batteries (4-pack),3,2.99,01/14/19 09:35,"912 Maple St, Portland, OR 97035" +152452,Lightning Charging Cable,1,14.95,01/30/19 00:40,"472 6th St, San Francisco, CA 94016" +152453,USB-C Charging Cable,1,11.95,01/07/19 23:37,"169 Wilson St, Atlanta, GA 30301" +152454,Apple Airpods Headphones,1,150,01/11/19 20:08,"308 Pine St, Los Angeles, CA 90001" +152455,AA Batteries (4-pack),1,3.84,01/05/19 15:22,"632 13th St, New York City, NY 10001" +152456,AAA Batteries (4-pack),2,2.99,01/29/19 17:41,"246 Maple St, Los Angeles, CA 90001" +152457,34in Ultrawide Monitor,1,379.99,01/02/19 16:16,"730 1st St, San Francisco, CA 94016" +152458,27in FHD Monitor,1,149.99,01/15/19 19:43,"763 Jefferson St, Atlanta, GA 30301" +152459,iPhone,1,700,01/30/19 20:53,"116 Main St, Portland, OR 97035" +152459,Lightning Charging Cable,2,14.95,01/30/19 20:53,"116 Main St, Portland, OR 97035" +152460,Lightning Charging Cable,1,14.95,01/31/19 14:48,"88 Lakeview St, Los Angeles, CA 90001" +152461,Apple Airpods Headphones,1,150,01/01/19 13:48,"873 Cedar St, Boston, MA 02215" +152462,Bose SoundSport Headphones,1,99.99,01/27/19 16:32,"973 Spruce St, Portland, ME 04101" +152463,Macbook Pro Laptop,1,1700,01/15/19 15:40,"153 14th St, Atlanta, GA 30301" +152464,Apple Airpods Headphones,1,150,01/21/19 14:03,"839 Main St, Portland, OR 97035" +152465,AAA Batteries (4-pack),1,2.99,01/27/19 18:00,"644 Church St, Los Angeles, CA 90001" +152466,Lightning Charging Cable,1,14.95,01/11/19 00:41,"944 Jackson St, San Francisco, CA 94016" +152467,Bose SoundSport Headphones,1,99.99,01/15/19 21:39,"765 2nd St, Atlanta, GA 30301" +152468,AA Batteries (4-pack),1,3.84,01/16/19 15:10,"780 2nd St, San Francisco, CA 94016" +152469,AA Batteries (4-pack),1,3.84,01/02/19 17:09,"869 14th St, San Francisco, CA 94016" +152470,AAA Batteries (4-pack),1,2.99,01/04/19 05:02,"605 Walnut St, Los Angeles, CA 90001" +152471,AA Batteries (4-pack),2,3.84,01/21/19 13:55,"760 Willow St, Boston, MA 02215" +152472,Bose SoundSport Headphones,1,99.99,01/15/19 11:37,"969 2nd St, New York City, NY 10001" +152473,USB-C Charging Cable,1,11.95,01/28/19 19:23,"43 6th St, Los Angeles, CA 90001" +152473,iPhone,1,700,01/28/19 19:23,"43 6th St, Los Angeles, CA 90001" +152474,Google Phone,1,600,01/20/19 19:39,"918 Sunset St, San Francisco, CA 94016" +152475,USB-C Charging Cable,1,11.95,01/10/19 21:28,"30 Lakeview St, Dallas, TX 75001" +152476,Bose SoundSport Headphones,1,99.99,01/09/19 19:10,"156 4th St, Portland, ME 04101" +152477,Wired Headphones,3,11.99,01/14/19 13:59,"299 Elm St, New York City, NY 10001" +152478,Macbook Pro Laptop,1,1700,01/12/19 11:38,"998 Washington St, Dallas, TX 75001" +152479,27in 4K Gaming Monitor,1,389.99,01/15/19 16:49,"929 Main St, New York City, NY 10001" +152480,20in Monitor,1,109.99,01/27/19 17:57,"367 Spruce St, Los Angeles, CA 90001" +152481,USB-C Charging Cable,1,11.95,01/10/19 11:22,"35 Highland St, San Francisco, CA 94016" +152482,AA Batteries (4-pack),1,3.84,01/04/19 04:31,"551 Hickory St, San Francisco, CA 94016" +152483,Bose SoundSport Headphones,1,99.99,01/13/19 19:41,"95 13th St, Los Angeles, CA 90001" +152484,Flatscreen TV,1,300,01/26/19 12:09,"434 5th St, New York City, NY 10001" +152485,AA Batteries (4-pack),2,3.84,01/12/19 22:50,"401 Ridge St, Boston, MA 02215" +152486,AAA Batteries (4-pack),1,2.99,01/02/19 17:02,"91 Forest St, San Francisco, CA 94016" +152487,27in FHD Monitor,1,149.99,01/22/19 23:55,"334 8th St, Boston, MA 02215" +152488,Lightning Charging Cable,1,14.95,01/30/19 10:01,"640 Chestnut St, New York City, NY 10001" +152489,Lightning Charging Cable,1,14.95,01/24/19 10:38,"94 14th St, San Francisco, CA 94016" +152490,AA Batteries (4-pack),1,3.84,01/29/19 19:51,"951 Forest St, Portland, OR 97035" +152491,27in 4K Gaming Monitor,1,389.99,01/18/19 13:29,"797 10th St, New York City, NY 10001" +152492,USB-C Charging Cable,2,11.95,01/03/19 21:27,"879 Pine St, New York City, NY 10001" +152493,Lightning Charging Cable,1,14.95,01/10/19 13:57,"573 13th St, San Francisco, CA 94016" +152494,Lightning Charging Cable,1,14.95,01/18/19 23:45,"566 11th St, Boston, MA 02215" +152495,AAA Batteries (4-pack),1,2.99,01/01/19 06:45,"292 10th St, Dallas, TX 75001" +152496,Bose SoundSport Headphones,1,99.99,01/04/19 05:10,"903 Jackson St, San Francisco, CA 94016" +152497,Apple Airpods Headphones,1,150,01/27/19 18:09,"176 1st St, Austin, TX 73301" +152498,Wired Headphones,1,11.99,01/04/19 11:19,"520 Cedar St, Atlanta, GA 30301" +152499,Apple Airpods Headphones,1,150,01/31/19 13:12,"504 12th St, Atlanta, GA 30301" +152500,Wired Headphones,1,11.99,01/28/19 14:54,"73 11th St, Los Angeles, CA 90001" +152501,USB-C Charging Cable,1,11.95,01/31/19 21:00,"239 Jefferson St, Los Angeles, CA 90001" +152502,AA Batteries (4-pack),2,3.84,01/27/19 18:10,"543 Spruce St, Los Angeles, CA 90001" +152503,AA Batteries (4-pack),1,3.84,01/24/19 20:33,"820 Park St, Seattle, WA 98101" +152504,27in FHD Monitor,1,149.99,01/10/19 10:40,"242 Ridge St, Los Angeles, CA 90001" +152505,USB-C Charging Cable,1,11.95,01/19/19 13:01,"89 14th St, Atlanta, GA 30301" +152506,USB-C Charging Cable,1,11.95,01/19/19 14:19,"466 4th St, Austin, TX 73301" +152507,Wired Headphones,1,11.99,01/13/19 09:19,"134 Pine St, Seattle, WA 98101" +152508,Macbook Pro Laptop,1,1700,01/12/19 15:54,"879 Jackson St, Dallas, TX 75001" +152509,Bose SoundSport Headphones,1,99.99,01/11/19 11:37,"936 Cedar St, San Francisco, CA 94016" +152510,iPhone,1,700,01/15/19 13:33,"214 Johnson St, Austin, TX 73301" +152511,Wired Headphones,1,11.99,01/31/19 17:41,"8 9th St, Atlanta, GA 30301" +152512,Google Phone,1,600,01/16/19 17:10,"534 Ridge St, Portland, OR 97035" +152512,USB-C Charging Cable,1,11.95,01/16/19 17:10,"534 Ridge St, Portland, OR 97035" +152513,27in FHD Monitor,1,149.99,01/15/19 16:20,"409 Maple St, San Francisco, CA 94016" +152514,27in 4K Gaming Monitor,1,389.99,01/05/19 11:18,"509 Church St, Dallas, TX 75001" +152515,27in 4K Gaming Monitor,1,389.99,01/01/19 10:23,"564 Main St, New York City, NY 10001" +152516,AAA Batteries (4-pack),2,2.99,01/10/19 07:51,"432 Chestnut St, San Francisco, CA 94016" +152517,Bose SoundSport Headphones,1,99.99,01/13/19 10:34,"143 River St, Portland, OR 97035" +152518,AA Batteries (4-pack),1,3.84,01/29/19 13:57,"20 14th St, Atlanta, GA 30301" +152519,USB-C Charging Cable,1,11.95,01/30/19 17:32,"283 Pine St, New York City, NY 10001" +152520,Lightning Charging Cable,1,14.95,01/21/19 17:37,"789 Forest St, San Francisco, CA 94016" +152521,Macbook Pro Laptop,1,1700,01/20/19 06:29,"55 11th St, Seattle, WA 98101" +152522,ThinkPad Laptop,1,999.99,01/09/19 15:19,"9 Meadow St, San Francisco, CA 94016" +152523,20in Monitor,1,109.99,01/13/19 16:28,"801 Spruce St, Boston, MA 02215" +152524,Bose SoundSport Headphones,1,99.99,01/20/19 10:52,"306 12th St, Austin, TX 73301" +152525,USB-C Charging Cable,1,11.95,01/17/19 14:25,"44 River St, Atlanta, GA 30301" +152526,AAA Batteries (4-pack),1,2.99,01/06/19 14:37,"952 Center St, New York City, NY 10001" +152527,Wired Headphones,1,11.99,01/11/19 10:12,"403 West St, Atlanta, GA 30301" +152528,Apple Airpods Headphones,1,150,01/03/19 19:27,"212 Spruce St, Austin, TX 73301" +152529,Wired Headphones,1,11.99,01/21/19 19:13,"184 10th St, New York City, NY 10001" +152530,AA Batteries (4-pack),1,3.84,01/04/19 14:21,"841 Highland St, San Francisco, CA 94016" +152531,AA Batteries (4-pack),3,3.84,01/01/19 05:30,"82 Adams St, Portland, ME 04101" +152532,AA Batteries (4-pack),1,3.84,01/27/19 12:10,"570 Johnson St, Seattle, WA 98101" +152533,Google Phone,1,600,01/27/19 00:11,"712 9th St, San Francisco, CA 94016" +152534,USB-C Charging Cable,1,11.95,01/26/19 19:06,"511 Madison St, San Francisco, CA 94016" +152535,AA Batteries (4-pack),1,3.84,01/05/19 13:17,"273 Washington St, New York City, NY 10001" +152536,Lightning Charging Cable,1,14.95,01/08/19 13:15,"898 10th St, Dallas, TX 75001" +152537,Lightning Charging Cable,1,14.95,01/19/19 20:17,"760 Madison St, Los Angeles, CA 90001" +152538,34in Ultrawide Monitor,1,379.99,01/29/19 23:26,"274 River St, Boston, MA 02215" +152539,USB-C Charging Cable,1,11.95,01/09/19 22:21,"697 Adams St, New York City, NY 10001" +152540,Apple Airpods Headphones,1,150,01/28/19 17:42,"588 8th St, Boston, MA 02215" +152541,USB-C Charging Cable,1,11.95,01/09/19 14:43,"840 13th St, San Francisco, CA 94016" +152542,AAA Batteries (4-pack),2,2.99,01/13/19 18:34,"521 Adams St, Seattle, WA 98101" +152543,ThinkPad Laptop,1,999.99,01/16/19 18:50,"827 Dogwood St, Seattle, WA 98101" +152543,Vareebadd Phone,1,400,01/16/19 18:50,"827 Dogwood St, Seattle, WA 98101" +152544,AA Batteries (4-pack),1,3.84,01/16/19 17:40,"81 Jackson St, New York City, NY 10001" +152545,Apple Airpods Headphones,1,150,01/18/19 17:25,"603 Cherry St, San Francisco, CA 94016" +152546,AA Batteries (4-pack),1,3.84,01/21/19 07:22,"849 Highland St, New York City, NY 10001" +152547,USB-C Charging Cable,1,11.95,01/20/19 14:00,"859 Sunset St, San Francisco, CA 94016" +152548,Wired Headphones,1,11.99,01/29/19 00:13,"1 Park St, Atlanta, GA 30301" +152549,Apple Airpods Headphones,1,150,01/04/19 20:50,"253 Forest St, San Francisco, CA 94016" +152550,Apple Airpods Headphones,1,150,01/28/19 15:25,"342 Walnut St, Austin, TX 73301" +152551,Macbook Pro Laptop,1,1700,01/15/19 19:41,"424 10th St, New York City, NY 10001" +152552,AAA Batteries (4-pack),1,2.99,01/22/19 12:12,"946 West St, Los Angeles, CA 90001" +152553,Flatscreen TV,1,300,01/10/19 16:42,"141 7th St, Los Angeles, CA 90001" +152554,AA Batteries (4-pack),1,3.84,01/16/19 22:43,"559 5th St, Boston, MA 02215" +152555,AA Batteries (4-pack),1,3.84,01/05/19 17:24,"993 Adams St, Seattle, WA 98101" +152556,USB-C Charging Cable,1,11.95,01/18/19 10:25,"635 Park St, Los Angeles, CA 90001" +152557,Lightning Charging Cable,1,14.95,01/25/19 11:56,"314 North St, San Francisco, CA 94016" +152558,Wired Headphones,2,11.99,01/29/19 16:16,"637 Park St, San Francisco, CA 94016" +152559,20in Monitor,1,109.99,01/23/19 16:48,"281 Lakeview St, Los Angeles, CA 90001" +152560,AA Batteries (4-pack),2,3.84,01/05/19 21:12,"744 Church St, San Francisco, CA 94016" +152561,27in FHD Monitor,1,149.99,01/30/19 07:48,"371 Jefferson St, Atlanta, GA 30301" +152562,Lightning Charging Cable,1,14.95,01/26/19 09:48,"774 Lakeview St, New York City, NY 10001" +152563,Apple Airpods Headphones,1,150,01/25/19 00:10,"272 Hill St, Boston, MA 02215" +152564,USB-C Charging Cable,1,11.95,01/14/19 14:34,"793 13th St, Austin, TX 73301" +152565,Wired Headphones,1,11.99,01/11/19 14:54,"190 Highland St, San Francisco, CA 94016" +152566,Apple Airpods Headphones,1,150,01/23/19 13:24,"790 4th St, Atlanta, GA 30301" +152567,Lightning Charging Cable,1,14.95,01/04/19 23:11,"625 5th St, San Francisco, CA 94016" +152568,Lightning Charging Cable,1,14.95,01/16/19 17:07,"662 Washington St, New York City, NY 10001" +152569,AA Batteries (4-pack),2,3.84,01/27/19 04:52,"62 Hill St, Atlanta, GA 30301" +152570,Lightning Charging Cable,1,14.95,01/24/19 19:18,"498 Jackson St, New York City, NY 10001" +152571,Apple Airpods Headphones,1,150,01/19/19 15:55,"546 Willow St, Los Angeles, CA 90001" +152572,Wired Headphones,1,11.99,01/26/19 18:26,"340 Pine St, Atlanta, GA 30301" +152573,AAA Batteries (4-pack),1,2.99,01/07/19 19:50,"906 Park St, San Francisco, CA 94016" +152574,Wired Headphones,1,11.99,01/19/19 08:48,"974 Madison St, New York City, NY 10001" +152575,Flatscreen TV,1,300,01/03/19 12:05,"913 Dogwood St, Dallas, TX 75001" +152576,27in FHD Monitor,1,149.99,01/05/19 00:06,"308 11th St, Atlanta, GA 30301" +152577,Lightning Charging Cable,1,14.95,01/26/19 17:54,"232 Jefferson St, Dallas, TX 75001" +152578,34in Ultrawide Monitor,1,379.99,01/10/19 21:35,"400 Willow St, Boston, MA 02215" +152579,USB-C Charging Cable,2,11.95,01/20/19 07:36,"761 Lincoln St, San Francisco, CA 94016" +152580,Lightning Charging Cable,1,14.95,01/24/19 11:08,"359 West St, Los Angeles, CA 90001" +152581,AA Batteries (4-pack),1,3.84,01/29/19 08:12,"503 Walnut St, Seattle, WA 98101" +152582,USB-C Charging Cable,1,11.95,01/07/19 02:21,"695 Cherry St, Los Angeles, CA 90001" +152583,Bose SoundSport Headphones,1,99.99,01/15/19 13:59,"990 Church St, New York City, NY 10001" +152584,Wired Headphones,1,11.99,01/03/19 19:02,"43 13th St, San Francisco, CA 94016" +152585,USB-C Charging Cable,1,11.95,01/23/19 12:00,"817 Johnson St, Seattle, WA 98101" +152586,Wired Headphones,1,11.99,01/30/19 20:51,"733 Washington St, San Francisco, CA 94016" +152587,AA Batteries (4-pack),1,3.84,01/27/19 13:37,"837 Forest St, New York City, NY 10001" +152587,Macbook Pro Laptop,1,1700,01/27/19 13:37,"837 Forest St, New York City, NY 10001" +152588,AA Batteries (4-pack),1,3.84,01/13/19 13:35,"356 8th St, Los Angeles, CA 90001" +152589,Wired Headphones,1,11.99,01/28/19 21:29,"696 12th St, San Francisco, CA 94016" +152590,AA Batteries (4-pack),1,3.84,01/26/19 17:51,"194 Hill St, Boston, MA 02215" +152591,AA Batteries (4-pack),2,3.84,01/07/19 18:20,"336 12th St, Dallas, TX 75001" +152592,iPhone,1,700,01/13/19 19:01,"374 Lake St, San Francisco, CA 94016" +152592,Lightning Charging Cable,1,14.95,01/13/19 19:01,"374 Lake St, San Francisco, CA 94016" +152593,Google Phone,1,600,01/10/19 12:16,"851 Walnut St, Atlanta, GA 30301" +152594,USB-C Charging Cable,2,11.95,01/12/19 10:01,"115 Lakeview St, Dallas, TX 75001" +152595,27in 4K Gaming Monitor,1,389.99,01/28/19 10:51,"441 5th St, Los Angeles, CA 90001" +152596,AAA Batteries (4-pack),1,2.99,01/03/19 15:34,"308 Hickory St, Los Angeles, CA 90001" +152597,Lightning Charging Cable,1,14.95,01/21/19 15:18,"387 1st St, Seattle, WA 98101" +152598,Lightning Charging Cable,1,14.95,01/09/19 19:08,"945 Spruce St, New York City, NY 10001" +152599,Apple Airpods Headphones,1,150,01/14/19 17:28,"807 Cedar St, Seattle, WA 98101" +152600,20in Monitor,1,109.99,01/28/19 17:10,"345 Wilson St, New York City, NY 10001" +152601,AAA Batteries (4-pack),2,2.99,01/16/19 21:34,"430 Cedar St, Atlanta, GA 30301" +152602,27in FHD Monitor,1,149.99,01/19/19 22:49,"684 Hill St, New York City, NY 10001" +152603,Bose SoundSport Headphones,1,99.99,01/11/19 15:33,"909 Cedar St, Portland, ME 04101" +152604,Flatscreen TV,1,300,01/06/19 20:39,"913 Lake St, Dallas, TX 75001" +152605,Apple Airpods Headphones,1,150,01/21/19 15:31,"777 10th St, Los Angeles, CA 90001" +152606,Flatscreen TV,1,300,01/12/19 14:14,"107 7th St, New York City, NY 10001" +152607,Bose SoundSport Headphones,1,99.99,01/22/19 15:53,"357 4th St, Seattle, WA 98101" +152608,Bose SoundSport Headphones,1,99.99,01/14/19 17:06,"486 Church St, Boston, MA 02215" +152609,AA Batteries (4-pack),2,3.84,01/28/19 14:18,"891 Maple St, San Francisco, CA 94016" +152610,AAA Batteries (4-pack),3,2.99,01/29/19 12:52,"471 Meadow St, San Francisco, CA 94016" +152611,Bose SoundSport Headphones,1,99.99,01/24/19 20:01,"774 Park St, Seattle, WA 98101" +152612,AAA Batteries (4-pack),1,2.99,01/02/19 11:02,"916 Center St, New York City, NY 10001" +152613,USB-C Charging Cable,1,11.95,01/21/19 12:29,"687 Pine St, Atlanta, GA 30301" +152614,Lightning Charging Cable,1,14.95,01/04/19 10:12,"375 Lakeview St, Seattle, WA 98101" +152615,USB-C Charging Cable,1,11.95,01/01/19 08:54,"459 Jackson St, New York City, NY 10001" +152616,Wired Headphones,1,11.99,01/22/19 18:01,"74 Park St, Austin, TX 73301" +152617,27in FHD Monitor,1,149.99,01/29/19 08:39,"502 Jackson St, Dallas, TX 75001" +152618,Apple Airpods Headphones,1,150,01/05/19 19:06,"85 Washington St, New York City, NY 10001" +152619,Lightning Charging Cable,1,14.95,01/18/19 06:54,"147 Sunset St, Los Angeles, CA 90001" +152620,Macbook Pro Laptop,1,1700,01/05/19 15:50,"450 Lakeview St, San Francisco, CA 94016" +152621,USB-C Charging Cable,1,11.95,01/20/19 10:12,"498 Willow St, San Francisco, CA 94016" +152622,AA Batteries (4-pack),2,3.84,01/26/19 23:48,"796 Lincoln St, San Francisco, CA 94016" +152623,Macbook Pro Laptop,1,1700,01/26/19 11:15,"934 14th St, Los Angeles, CA 90001" +152624,Apple Airpods Headphones,1,150,01/06/19 19:56,"237 Main St, Austin, TX 73301" +152625,LG Washing Machine,1,600.0,01/24/19 16:22,"522 Madison St, Los Angeles, CA 90001" +152626,Bose SoundSport Headphones,1,99.99,01/23/19 19:38,"185 11th St, San Francisco, CA 94016" +152627,34in Ultrawide Monitor,1,379.99,01/12/19 19:18,"422 Washington St, Austin, TX 73301" +152628,Wired Headphones,1,11.99,01/20/19 10:32,"146 North St, Boston, MA 02215" +152629,USB-C Charging Cable,1,11.95,01/24/19 16:26,"283 Walnut St, Boston, MA 02215" +152630,Macbook Pro Laptop,1,1700,01/26/19 18:03,"764 10th St, Los Angeles, CA 90001" +152631,Apple Airpods Headphones,1,150,01/07/19 10:43,"21 Adams St, Dallas, TX 75001" +152632,27in FHD Monitor,1,149.99,01/07/19 01:54,"427 Jackson St, Los Angeles, CA 90001" +152633,USB-C Charging Cable,2,11.95,01/07/19 17:14,"755 Madison St, San Francisco, CA 94016" +152634,Bose SoundSport Headphones,1,99.99,01/25/19 20:05,"556 7th St, San Francisco, CA 94016" +152635,AA Batteries (4-pack),1,3.84,01/16/19 11:52,"42 Meadow St, Los Angeles, CA 90001" +152636,iPhone,1,700,01/06/19 11:57,"94 9th St, Portland, OR 97035" +152636,Wired Headphones,1,11.99,01/06/19 11:57,"94 9th St, Portland, OR 97035" +152637,AA Batteries (4-pack),1,3.84,01/18/19 09:34,"869 Lincoln St, Dallas, TX 75001" +152638,Wired Headphones,1,11.99,01/04/19 17:59,"972 Park St, Portland, OR 97035" +152639,AAA Batteries (4-pack),1,2.99,01/22/19 01:20,"184 1st St, Dallas, TX 75001" +152640,AA Batteries (4-pack),1,3.84,01/19/19 00:50,"598 Hickory St, New York City, NY 10001" +152641,Lightning Charging Cable,1,14.95,01/02/19 13:15,"286 River St, New York City, NY 10001" +152642,USB-C Charging Cable,1,11.95,01/21/19 09:32,"216 Lakeview St, San Francisco, CA 94016" +152643,27in FHD Monitor,1,149.99,01/20/19 13:33,"999 12th St, Atlanta, GA 30301" +152644,27in FHD Monitor,1,149.99,01/09/19 15:40,"735 Highland St, New York City, NY 10001" +152645,AAA Batteries (4-pack),1,2.99,01/28/19 11:09,"448 West St, Atlanta, GA 30301" +152646,Macbook Pro Laptop,1,1700,01/12/19 12:21,"202 Main St, New York City, NY 10001" +152647,AA Batteries (4-pack),1,3.84,01/26/19 16:30,"259 Park St, Los Angeles, CA 90001" +152648,Lightning Charging Cable,1,14.95,01/23/19 23:37,"795 2nd St, San Francisco, CA 94016" +152649,27in FHD Monitor,1,149.99,01/21/19 18:28,"731 Park St, San Francisco, CA 94016" +152650,USB-C Charging Cable,1,11.95,01/07/19 09:42,"186 Spruce St, New York City, NY 10001" +152651,Google Phone,1,600,01/08/19 18:41,"92 14th St, Los Angeles, CA 90001" +152651,USB-C Charging Cable,2,11.95,01/08/19 18:41,"92 14th St, Los Angeles, CA 90001" +152652,Lightning Charging Cable,3,14.95,01/07/19 16:15,"53 Jefferson St, San Francisco, CA 94016" +152653,AA Batteries (4-pack),2,3.84,01/18/19 12:54,"909 Adams St, San Francisco, CA 94016" +152654,Apple Airpods Headphones,2,150,01/08/19 12:00,"836 Sunset St, Atlanta, GA 30301" +152655,Bose SoundSport Headphones,1,99.99,01/25/19 19:45,"199 Washington St, Seattle, WA 98101" +152656,ThinkPad Laptop,1,999.99,01/13/19 15:22,"440 Lake St, Boston, MA 02215" +152657,Lightning Charging Cable,1,14.95,01/25/19 12:41,"409 Lakeview St, Portland, ME 04101" +152658,27in 4K Gaming Monitor,1,389.99,01/03/19 17:03,"874 10th St, San Francisco, CA 94016" +152659,Apple Airpods Headphones,1,150,01/13/19 19:39,"108 2nd St, Los Angeles, CA 90001" +152660,USB-C Charging Cable,2,11.95,01/23/19 14:15,"92 Hickory St, Los Angeles, CA 90001" +152661,Bose SoundSport Headphones,1,99.99,01/28/19 11:50,"382 Adams St, Atlanta, GA 30301" +152662,USB-C Charging Cable,2,11.95,01/02/19 10:48,"35 Center St, Austin, TX 73301" +152663,AAA Batteries (4-pack),1,2.99,01/01/19 19:38,"582 10th St, Boston, MA 02215" +152664,AA Batteries (4-pack),1,3.84,01/29/19 12:53,"197 Lakeview St, Dallas, TX 75001" +152665,20in Monitor,1,109.99,01/14/19 21:24,"700 West St, San Francisco, CA 94016" +152666,Wired Headphones,1,11.99,01/27/19 19:49,"554 Walnut St, Los Angeles, CA 90001" +152667,20in Monitor,1,109.99,01/16/19 22:37,"737 West St, Portland, OR 97035" +152668,27in FHD Monitor,1,149.99,01/09/19 12:20,"25 Hickory St, Atlanta, GA 30301" +152669,ThinkPad Laptop,1,999.99,01/01/19 13:23,"688 9th St, New York City, NY 10001" +152670,Bose SoundSport Headphones,1,99.99,01/02/19 11:32,"172 Church St, Los Angeles, CA 90001" +152671,AA Batteries (4-pack),1,3.84,01/26/19 21:14,"695 Jefferson St, Los Angeles, CA 90001" +152672,USB-C Charging Cable,1,11.95,01/11/19 08:05,"28 14th St, San Francisco, CA 94016" +152673,Lightning Charging Cable,1,14.95,01/18/19 00:15,"250 Pine St, San Francisco, CA 94016" +152674,USB-C Charging Cable,1,11.95,01/03/19 21:57,"300 Elm St, San Francisco, CA 94016" +152675,AA Batteries (4-pack),1,3.84,01/21/19 22:10,"286 Highland St, Atlanta, GA 30301" +152676,20in Monitor,1,109.99,01/25/19 11:06,"205 West St, Los Angeles, CA 90001" +152677,Wired Headphones,1,11.99,01/01/19 20:54,"941 Pine St, San Francisco, CA 94016" +152678,Wired Headphones,1,11.99,01/07/19 10:39,"609 10th St, Dallas, TX 75001" +152679,27in 4K Gaming Monitor,1,389.99,01/28/19 00:23,"580 Ridge St, Los Angeles, CA 90001" +152680,AAA Batteries (4-pack),1,2.99,01/16/19 08:06,"59 Highland St, New York City, NY 10001" +152681,AA Batteries (4-pack),2,3.84,01/31/19 14:59,"523 Cedar St, San Francisco, CA 94016" +152682,Apple Airpods Headphones,1,150,01/14/19 06:54,"301 Lincoln St, Seattle, WA 98101" +152683,Wired Headphones,1,11.99,01/03/19 18:09,"386 Walnut St, Boston, MA 02215" +152684,AAA Batteries (4-pack),1,2.99,01/10/19 10:25,"814 Cedar St, San Francisco, CA 94016" +152685,Lightning Charging Cable,1,14.95,01/06/19 07:59,"801 Lincoln St, Atlanta, GA 30301" +152686,AAA Batteries (4-pack),1,2.99,01/16/19 09:56,"462 7th St, San Francisco, CA 94016" +152687,ThinkPad Laptop,1,999.99,01/04/19 12:49,"201 10th St, San Francisco, CA 94016" +152688,AAA Batteries (4-pack),1,2.99,01/29/19 13:04,"439 Washington St, Los Angeles, CA 90001" +152689,Wired Headphones,1,11.99,01/06/19 19:54,"920 Walnut St, Boston, MA 02215" +152690,USB-C Charging Cable,1,11.95,01/10/19 21:14,"457 Willow St, Portland, ME 04101" +152691,USB-C Charging Cable,1,11.95,01/23/19 09:47,"955 Hill St, Seattle, WA 98101" +152692,Wired Headphones,1,11.99,01/19/19 11:25,"203 Main St, Portland, OR 97035" +152693,Apple Airpods Headphones,1,150,01/20/19 12:33,"800 Center St, Portland, OR 97035" +152694,AA Batteries (4-pack),1,3.84,01/16/19 14:40,"874 Adams St, New York City, NY 10001" +152695,Lightning Charging Cable,1,14.95,01/21/19 11:25,"103 Dogwood St, New York City, NY 10001" +152696,Wired Headphones,1,11.99,01/03/19 07:04,"136 6th St, Austin, TX 73301" +152697,27in 4K Gaming Monitor,1,389.99,01/24/19 10:27,"662 North St, New York City, NY 10001" +152698,Lightning Charging Cable,1,14.95,02/01/19 00:18,"852 South St, Los Angeles, CA 90001" +152699,Flatscreen TV,1,300,01/02/19 21:52,"346 Lake St, San Francisco, CA 94016" +152700,Google Phone,1,600,01/21/19 20:14,"295 Hickory St, Los Angeles, CA 90001" +152701,34in Ultrawide Monitor,1,379.99,01/16/19 15:31,"964 Spruce St, Boston, MA 02215" +152702,Apple Airpods Headphones,1,150,01/12/19 17:23,"762 Church St, Austin, TX 73301" +152703,Apple Airpods Headphones,1,150,01/27/19 09:57,"723 2nd St, New York City, NY 10001" +152704,Bose SoundSport Headphones,1,99.99,01/31/19 14:56,"285 Jackson St, Dallas, TX 75001" +152705,USB-C Charging Cable,1,11.95,01/31/19 16:04,"994 Highland St, San Francisco, CA 94016" +152706,AA Batteries (4-pack),6,3.84,01/17/19 14:29,"988 Center St, Boston, MA 02215" +152707,ThinkPad Laptop,1,999.99,01/22/19 16:41,"306 Ridge St, Dallas, TX 75001" +152708,Google Phone,1,600,01/16/19 11:26,"777 5th St, Los Angeles, CA 90001" +152709,USB-C Charging Cable,1,11.95,01/02/19 15:17,"288 4th St, San Francisco, CA 94016" +152710,iPhone,1,700,01/10/19 09:04,"780 Willow St, Los Angeles, CA 90001" +152711,Lightning Charging Cable,2,14.95,01/28/19 17:05,"601 10th St, Atlanta, GA 30301" +152712,USB-C Charging Cable,1,11.95,01/17/19 23:56,"140 Main St, Dallas, TX 75001" +152713,AAA Batteries (4-pack),3,2.99,01/02/19 16:40,"109 Highland St, Boston, MA 02215" +152714,Apple Airpods Headphones,1,150,01/03/19 21:18,"821 Washington St, Los Angeles, CA 90001" +152715,Lightning Charging Cable,2,14.95,01/08/19 18:58,"480 10th St, San Francisco, CA 94016" +152716,Apple Airpods Headphones,1,150,01/28/19 21:21,"53 10th St, Dallas, TX 75001" +152717,Apple Airpods Headphones,1,150,01/18/19 15:11,"634 Elm St, Los Angeles, CA 90001" +152718,AA Batteries (4-pack),2,3.84,01/26/19 13:31,"174 8th St, New York City, NY 10001" +152719,Apple Airpods Headphones,1,150,01/25/19 20:43,"494 Elm St, San Francisco, CA 94016" +152720,Wired Headphones,1,11.99,01/12/19 20:15,"323 5th St, San Francisco, CA 94016" +152721,Wired Headphones,1,11.99,01/31/19 21:55,"963 4th St, Boston, MA 02215" +152722,Lightning Charging Cable,1,14.95,01/20/19 12:51,"450 Wilson St, Boston, MA 02215" +152723,AAA Batteries (4-pack),1,2.99,01/31/19 21:28,"273 Cherry St, Dallas, TX 75001" +152724,AAA Batteries (4-pack),1,2.99,01/23/19 15:42,"775 Cherry St, Seattle, WA 98101" +152725,Wired Headphones,1,11.99,01/20/19 10:12,"396 7th St, Portland, OR 97035" +152726,27in 4K Gaming Monitor,1,389.99,01/10/19 12:54,"39 9th St, Boston, MA 02215" +152727,27in FHD Monitor,1,149.99,01/19/19 12:12,"247 Walnut St, San Francisco, CA 94016" +152728,Wired Headphones,1,11.99,01/24/19 14:06,"948 Ridge St, Dallas, TX 75001" +152729,USB-C Charging Cable,1,11.95,01/18/19 14:47,"659 4th St, San Francisco, CA 94016" +152730,Lightning Charging Cable,1,14.95,01/03/19 18:29,"245 Lake St, Los Angeles, CA 90001" +152731,Lightning Charging Cable,1,14.95,01/20/19 18:03,"449 River St, San Francisco, CA 94016" +152732,AAA Batteries (4-pack),2,2.99,01/07/19 03:49,"978 Cherry St, Atlanta, GA 30301" +152733,ThinkPad Laptop,1,999.99,01/14/19 09:39,"743 Meadow St, Los Angeles, CA 90001" +152734,Lightning Charging Cable,1,14.95,01/27/19 12:57,"841 Spruce St, San Francisco, CA 94016" +152735,USB-C Charging Cable,1,11.95,01/19/19 17:53,"198 5th St, New York City, NY 10001" +152736,LG Dryer,1,600.0,01/13/19 22:16,"974 Cedar St, Los Angeles, CA 90001" +152737,Flatscreen TV,1,300,01/01/19 20:02,"763 13th St, San Francisco, CA 94016" +152738,Apple Airpods Headphones,1,150,01/26/19 09:58,"383 Church St, Los Angeles, CA 90001" +152739,Flatscreen TV,1,300,01/21/19 19:40,"232 Church St, Seattle, WA 98101" +152740,Lightning Charging Cable,1,14.95,01/21/19 16:11,"435 River St, Seattle, WA 98101" +152741,34in Ultrawide Monitor,1,379.99,01/03/19 15:18,"43 West St, Seattle, WA 98101" +152742,iPhone,1,700,01/20/19 20:29,"611 Adams St, Los Angeles, CA 90001" +152742,Lightning Charging Cable,1,14.95,01/20/19 20:29,"611 Adams St, Los Angeles, CA 90001" +152743,Apple Airpods Headphones,1,150,01/31/19 19:55,"170 Lincoln St, New York City, NY 10001" +152744,AAA Batteries (4-pack),1,2.99,01/26/19 16:07,"969 5th St, Seattle, WA 98101" +152745,Lightning Charging Cable,1,14.95,01/21/19 23:05,"896 River St, Dallas, TX 75001" +152746,34in Ultrawide Monitor,1,379.99,01/26/19 21:32,"887 Sunset St, Los Angeles, CA 90001" +152747,Bose SoundSport Headphones,1,99.99,01/04/19 18:32,"203 Ridge St, San Francisco, CA 94016" +152748,Google Phone,1,600,01/17/19 11:59,"498 South St, Boston, MA 02215" +152749,Bose SoundSport Headphones,1,99.99,01/16/19 10:49,"127 Meadow St, Dallas, TX 75001" +152750,34in Ultrawide Monitor,1,379.99,01/23/19 17:27,"668 Dogwood St, Boston, MA 02215" +152751,27in 4K Gaming Monitor,1,389.99,01/27/19 22:17,"288 Park St, Los Angeles, CA 90001" +,,,,, +152752,Google Phone,1,600,01/03/19 14:08,"894 Adams St, San Francisco, CA 94016" +152752,Bose SoundSport Headphones,1,99.99,01/03/19 14:08,"894 Adams St, San Francisco, CA 94016" +152752,Wired Headphones,1,11.99,01/03/19 14:08,"894 Adams St, San Francisco, CA 94016" +152753,iPhone,1,700,01/13/19 11:42,"54 Main St, Boston, MA 02215" +152754,Wired Headphones,1,11.99,01/20/19 01:32,"795 Meadow St, Austin, TX 73301" +152755,Flatscreen TV,1,300,01/03/19 21:39,"529 Forest St, San Francisco, CA 94016" +152756,AA Batteries (4-pack),1,3.84,01/17/19 08:16,"860 Walnut St, San Francisco, CA 94016" +152757,AAA Batteries (4-pack),1,2.99,01/30/19 17:55,"761 Cedar St, San Francisco, CA 94016" +152758,Bose SoundSport Headphones,1,99.99,01/27/19 16:56,"634 Cherry St, San Francisco, CA 94016" +152759,Flatscreen TV,1,300,01/01/19 17:07,"399 Main St, San Francisco, CA 94016" +152760,iPhone,1,700,01/30/19 18:17,"707 7th St, Portland, OR 97035" +152760,Wired Headphones,1,11.99,01/30/19 18:17,"707 7th St, Portland, OR 97035" +152761,Lightning Charging Cable,1,14.95,01/28/19 22:12,"558 Hill St, Atlanta, GA 30301" +152762,Bose SoundSport Headphones,1,99.99,01/20/19 22:38,"306 South St, Boston, MA 02215" +152763,AA Batteries (4-pack),1,3.84,01/14/19 20:07,"684 10th St, San Francisco, CA 94016" +152764,Wired Headphones,1,11.99,01/15/19 00:38,"276 River St, Atlanta, GA 30301" +152765,Wired Headphones,1,11.99,01/27/19 10:57,"148 Spruce St, Los Angeles, CA 90001" +152766,Lightning Charging Cable,1,14.95,01/29/19 23:21,"755 Madison St, Austin, TX 73301" +152767,USB-C Charging Cable,1,11.95,01/02/19 22:17,"292 Willow St, San Francisco, CA 94016" +152768,Lightning Charging Cable,1,14.95,01/11/19 08:02,"641 Wilson St, Dallas, TX 75001" +152769,Flatscreen TV,1,300,01/19/19 16:30,"125 Maple St, Dallas, TX 75001" +152770,34in Ultrawide Monitor,1,379.99,01/04/19 13:44,"14 Spruce St, Austin, TX 73301" +152771,USB-C Charging Cable,1,11.95,01/11/19 15:30,"180 11th St, Dallas, TX 75001" +152772,20in Monitor,1,109.99,01/03/19 12:35,"900 Main St, Los Angeles, CA 90001" +152773,27in FHD Monitor,1,149.99,01/03/19 05:17,"750 Sunset St, Seattle, WA 98101" +152774,27in FHD Monitor,1,149.99,01/02/19 13:00,"123 Church St, New York City, NY 10001" +152775,Flatscreen TV,1,300,01/10/19 23:18,"142 Chestnut St, Los Angeles, CA 90001" +152776,ThinkPad Laptop,1,999.99,01/28/19 16:14,"902 Chestnut St, Los Angeles, CA 90001" +152777,USB-C Charging Cable,1,11.95,01/23/19 10:59,"764 Jefferson St, Seattle, WA 98101" +152778,Bose SoundSport Headphones,1,99.99,01/11/19 17:40,"121 Jackson St, San Francisco, CA 94016" +152779,AA Batteries (4-pack),1,3.84,01/31/19 00:12,"224 Hill St, Los Angeles, CA 90001" +152780,USB-C Charging Cable,1,11.95,01/15/19 13:10,"574 Lincoln St, Seattle, WA 98101" +152781,AAA Batteries (4-pack),2,2.99,01/12/19 11:08,"476 Hill St, Dallas, TX 75001" +152782,Apple Airpods Headphones,1,150,01/19/19 14:27,"347 Jackson St, San Francisco, CA 94016" +152783,Flatscreen TV,1,300,01/26/19 15:48,"219 Elm St, Seattle, WA 98101" +152784,AA Batteries (4-pack),1,3.84,01/26/19 15:03,"933 Highland St, San Francisco, CA 94016" +152785,Apple Airpods Headphones,1,150,01/02/19 15:49,"337 Madison St, Los Angeles, CA 90001" +152786,AAA Batteries (4-pack),1,2.99,01/11/19 16:54,"841 Elm St, Los Angeles, CA 90001" +152787,USB-C Charging Cable,1,11.95,01/09/19 17:45,"249 2nd St, Los Angeles, CA 90001" +152788,27in FHD Monitor,1,149.99,01/24/19 13:46,"260 Cherry St, New York City, NY 10001" +152789,20in Monitor,1,109.99,01/28/19 15:46,"632 Dogwood St, San Francisco, CA 94016" +152790,Lightning Charging Cable,2,14.95,01/05/19 00:02,"719 14th St, San Francisco, CA 94016" +152791,27in 4K Gaming Monitor,1,389.99,01/13/19 23:35,"328 Highland St, New York City, NY 10001" +152792,20in Monitor,1,109.99,01/16/19 17:27,"565 Willow St, Los Angeles, CA 90001" +152793,Lightning Charging Cable,1,14.95,01/24/19 08:43,"857 8th St, New York City, NY 10001" +152794,AA Batteries (4-pack),2,3.84,01/27/19 16:22,"377 13th St, Seattle, WA 98101" +152795,27in 4K Gaming Monitor,1,389.99,01/01/19 12:13,"204 9th St, New York City, NY 10001" +152796,AAA Batteries (4-pack),1,2.99,01/20/19 18:09,"896 2nd St, Los Angeles, CA 90001" +152797,USB-C Charging Cable,1,11.95,01/24/19 06:18,"389 Meadow St, Boston, MA 02215" +152798,AA Batteries (4-pack),2,3.84,01/31/19 18:09,"721 Hill St, Portland, OR 97035" +152799,Flatscreen TV,1,300,01/06/19 21:22,"44 1st St, Portland, OR 97035" +152800,Google Phone,1,600,01/21/19 20:21,"805 Jefferson St, San Francisco, CA 94016" +152801,Google Phone,1,600,01/14/19 18:31,"582 14th St, Los Angeles, CA 90001" +152802,Lightning Charging Cable,1,14.95,01/26/19 11:38,"586 2nd St, Boston, MA 02215" +152803,Wired Headphones,1,11.99,01/22/19 16:57,"715 Wilson St, Dallas, TX 75001" +152804,AA Batteries (4-pack),3,3.84,01/28/19 13:27,"168 River St, Atlanta, GA 30301" +152805,USB-C Charging Cable,1,11.95,01/02/19 12:41,"274 Main St, Los Angeles, CA 90001" +152806,Flatscreen TV,1,300,01/07/19 23:31,"878 11th St, Los Angeles, CA 90001" +152807,27in FHD Monitor,1,149.99,01/29/19 22:35,"786 Maple St, New York City, NY 10001" +152808,34in Ultrawide Monitor,1,379.99,01/31/19 00:55,"961 Dogwood St, San Francisco, CA 94016" +152809,USB-C Charging Cable,2,11.95,01/12/19 13:37,"413 11th St, Seattle, WA 98101" +152810,Google Phone,1,600,01/20/19 11:50,"568 Highland St, San Francisco, CA 94016" +152810,USB-C Charging Cable,1,11.95,01/20/19 11:50,"568 Highland St, San Francisco, CA 94016" +152810,Bose SoundSport Headphones,1,99.99,01/20/19 11:50,"568 Highland St, San Francisco, CA 94016" +152811,Flatscreen TV,1,300,01/31/19 16:32,"40 Spruce St, New York City, NY 10001" +152812,27in 4K Gaming Monitor,1,389.99,01/10/19 08:04,"328 Willow St, Dallas, TX 75001" +152813,iPhone,1,700,01/23/19 06:31,"217 13th St, Los Angeles, CA 90001" +152814,USB-C Charging Cable,1,11.95,01/02/19 16:51,"736 9th St, Dallas, TX 75001" +152815,Wired Headphones,1,11.99,01/22/19 15:51,"324 Johnson St, San Francisco, CA 94016" +152816,USB-C Charging Cable,1,11.95,01/10/19 15:41,"424 12th St, Los Angeles, CA 90001" +152817,Bose SoundSport Headphones,1,99.99,01/28/19 14:53,"933 Pine St, Atlanta, GA 30301" +152818,Lightning Charging Cable,1,14.95,01/13/19 14:52,"619 Lincoln St, New York City, NY 10001" +152819,USB-C Charging Cable,1,11.95,01/10/19 15:02,"446 Cherry St, San Francisco, CA 94016" +152820,AAA Batteries (4-pack),3,2.99,01/28/19 12:19,"607 Wilson St, San Francisco, CA 94016" +152821,27in FHD Monitor,1,149.99,01/22/19 13:48,"517 12th St, Portland, OR 97035" +152822,27in FHD Monitor,1,149.99,01/18/19 09:56,"71 4th St, San Francisco, CA 94016" +152823,27in FHD Monitor,1,149.99,01/28/19 15:07,"942 10th St, Los Angeles, CA 90001" +152824,Macbook Pro Laptop,1,1700,01/09/19 21:32,"602 Spruce St, Atlanta, GA 30301" +152825,Wired Headphones,1,11.99,01/31/19 09:43,"487 Lake St, San Francisco, CA 94016" +152826,USB-C Charging Cable,1,11.95,01/21/19 14:25,"913 South St, Boston, MA 02215" +152827,ThinkPad Laptop,1,999.99,01/01/19 13:55,"393 7th St, New York City, NY 10001" +152828,Wired Headphones,1,11.99,01/25/19 08:15,"101 Lakeview St, Los Angeles, CA 90001" +152829,Apple Airpods Headphones,1,150,01/29/19 19:54,"118 North St, New York City, NY 10001" +152830,Flatscreen TV,1,300,01/14/19 19:27,"807 Madison St, Portland, OR 97035" +152831,Lightning Charging Cable,1,14.95,01/06/19 00:42,"890 14th St, San Francisco, CA 94016" +152832,USB-C Charging Cable,1,11.95,01/07/19 15:57,"969 12th St, San Francisco, CA 94016" +152833,AAA Batteries (4-pack),2,2.99,01/09/19 07:53,"224 Chestnut St, Dallas, TX 75001" +152834,Lightning Charging Cable,1,14.95,01/21/19 11:52,"693 2nd St, San Francisco, CA 94016" +152835,Macbook Pro Laptop,1,1700,01/01/19 17:52,"241 Hickory St, Los Angeles, CA 90001" +152836,AAA Batteries (4-pack),1,2.99,01/08/19 20:57,"561 Park St, Dallas, TX 75001" +152837,AA Batteries (4-pack),1,3.84,01/17/19 09:29,"474 Sunset St, San Francisco, CA 94016" +152838,Apple Airpods Headphones,1,150,01/27/19 12:04,"205 Forest St, San Francisco, CA 94016" +152839,27in FHD Monitor,1,149.99,01/18/19 09:00,"45 Main St, San Francisco, CA 94016" +152840,Lightning Charging Cable,1,14.95,01/06/19 22:41,"600 West St, Boston, MA 02215" +152841,Lightning Charging Cable,1,14.95,01/29/19 23:21,"130 Pine St, Boston, MA 02215" +152842,34in Ultrawide Monitor,1,379.99,01/04/19 08:34,"722 Willow St, San Francisco, CA 94016" +152843,27in FHD Monitor,1,149.99,01/21/19 20:14,"968 Johnson St, San Francisco, CA 94016" +152844,Apple Airpods Headphones,1,150,01/01/19 16:25,"685 14th St, Los Angeles, CA 90001" +152845,Lightning Charging Cable,1,14.95,01/27/19 17:15,"774 10th St, Atlanta, GA 30301" +152846,Wired Headphones,1,11.99,01/19/19 18:24,"722 6th St, New York City, NY 10001" +152847,LG Washing Machine,1,600.0,01/23/19 21:09,"926 Adams St, Boston, MA 02215" +152848,27in FHD Monitor,1,149.99,01/04/19 17:35,"533 Lake St, San Francisco, CA 94016" +152849,27in 4K Gaming Monitor,1,389.99,01/09/19 15:23,"986 Johnson St, Boston, MA 02215" +152850,Lightning Charging Cable,1,14.95,01/24/19 05:18,"463 Lincoln St, San Francisco, CA 94016" +152851,Lightning Charging Cable,1,14.95,01/09/19 23:25,"271 2nd St, San Francisco, CA 94016" +152852,AA Batteries (4-pack),1,3.84,01/30/19 12:18,"511 Center St, Los Angeles, CA 90001" +152853,Apple Airpods Headphones,1,150,01/30/19 21:07,"312 14th St, San Francisco, CA 94016" +152854,Lightning Charging Cable,1,14.95,01/20/19 15:11,"402 Sunset St, Portland, OR 97035" +152854,USB-C Charging Cable,1,11.95,01/20/19 15:11,"402 Sunset St, Portland, OR 97035" +152855,Lightning Charging Cable,1,14.95,01/18/19 10:29,"526 Hickory St, Dallas, TX 75001" +152856,AAA Batteries (4-pack),1,2.99,01/05/19 16:37,"347 Wilson St, Seattle, WA 98101" +152857,Wired Headphones,1,11.99,01/23/19 18:23,"518 5th St, Dallas, TX 75001" +152858,USB-C Charging Cable,1,11.95,01/31/19 13:05,"937 Meadow St, San Francisco, CA 94016" +152859,27in 4K Gaming Monitor,1,389.99,01/19/19 14:34,"421 Washington St, Los Angeles, CA 90001" +152860,USB-C Charging Cable,1,11.95,01/02/19 10:17,"919 Cedar St, Dallas, TX 75001" +152861,AAA Batteries (4-pack),2,2.99,01/15/19 04:00,"393 Hill St, Seattle, WA 98101" +152862,iPhone,1,700,01/07/19 12:00,"52 Meadow St, Portland, ME 04101" +152862,Wired Headphones,1,11.99,01/07/19 12:00,"52 Meadow St, Portland, ME 04101" +152863,Lightning Charging Cable,1,14.95,01/21/19 01:34,"846 1st St, San Francisco, CA 94016" +152864,Bose SoundSport Headphones,1,99.99,01/14/19 13:16,"856 River St, Seattle, WA 98101" +152865,USB-C Charging Cable,1,11.95,01/02/19 11:18,"729 1st St, New York City, NY 10001" +152866,AA Batteries (4-pack),1,3.84,01/19/19 14:28,"378 Center St, New York City, NY 10001" +152867,Macbook Pro Laptop,1,1700,01/07/19 15:04,"448 Spruce St, Portland, OR 97035" +152868,Wired Headphones,1,11.99,01/23/19 20:21,"69 Ridge St, San Francisco, CA 94016" +152869,Lightning Charging Cable,1,14.95,01/26/19 10:38,"569 Lincoln St, San Francisco, CA 94016" +152870,AAA Batteries (4-pack),1,2.99,01/12/19 13:16,"321 Johnson St, San Francisco, CA 94016" +152871,Wired Headphones,1,11.99,01/31/19 18:50,"462 Cherry St, Boston, MA 02215" +152872,ThinkPad Laptop,1,999.99,01/03/19 15:30,"278 North St, New York City, NY 10001" +152873,34in Ultrawide Monitor,1,379.99,01/02/19 18:23,"679 Lake St, San Francisco, CA 94016" +152874,Apple Airpods Headphones,1,150,01/29/19 14:11,"423 Meadow St, Los Angeles, CA 90001" +152875,Apple Airpods Headphones,1,150,01/19/19 00:35,"307 Ridge St, Atlanta, GA 30301" +152876,USB-C Charging Cable,1,11.95,01/27/19 10:03,"603 Cherry St, San Francisco, CA 94016" +152877,USB-C Charging Cable,1,11.95,01/26/19 12:57,"244 Jefferson St, Dallas, TX 75001" +152878,AA Batteries (4-pack),1,3.84,01/10/19 14:17,"649 Center St, San Francisco, CA 94016" +152879,Apple Airpods Headphones,1,150,01/24/19 16:01,"470 2nd St, New York City, NY 10001" +152880,20in Monitor,1,109.99,01/14/19 17:34,"217 12th St, Austin, TX 73301" +152881,Wired Headphones,1,11.99,01/15/19 12:33,"737 West St, New York City, NY 10001" +152882,USB-C Charging Cable,1,11.95,01/11/19 09:10,"967 2nd St, San Francisco, CA 94016" +152883,AA Batteries (4-pack),1,3.84,01/14/19 18:44,"773 Forest St, Seattle, WA 98101" +152884,Macbook Pro Laptop,1,1700,01/26/19 12:27,"465 Highland St, Dallas, TX 75001" +152885,iPhone,1,700,01/17/19 08:12,"831 Main St, Los Angeles, CA 90001" +152885,Wired Headphones,2,11.99,01/17/19 08:12,"831 Main St, Los Angeles, CA 90001" +152886,USB-C Charging Cable,1,11.95,01/22/19 20:11,"592 South St, Portland, ME 04101" +152887,Apple Airpods Headphones,1,150,01/25/19 12:38,"778 Dogwood St, Atlanta, GA 30301" +152888,Wired Headphones,1,11.99,01/23/19 12:10,"117 11th St, New York City, NY 10001" +152889,27in FHD Monitor,1,149.99,01/12/19 17:47,"340 Madison St, Los Angeles, CA 90001" +152890,Flatscreen TV,1,300,01/11/19 20:51,"818 5th St, New York City, NY 10001" +152891,Flatscreen TV,1,300,01/20/19 09:09,"142 Spruce St, Los Angeles, CA 90001" +152892,USB-C Charging Cable,1,11.95,01/27/19 08:17,"110 Church St, Boston, MA 02215" +152893,Lightning Charging Cable,1,14.95,01/29/19 05:01,"981 11th St, San Francisco, CA 94016" +152894,Lightning Charging Cable,1,14.95,01/31/19 09:59,"223 14th St, Austin, TX 73301" +152895,Bose SoundSport Headphones,1,99.99,01/18/19 15:05,"981 Center St, Boston, MA 02215" +152896,Google Phone,1,600,01/08/19 17:07,"972 Madison St, San Francisco, CA 94016" +152897,Lightning Charging Cable,1,14.95,01/25/19 18:54,"274 Jefferson St, New York City, NY 10001" +152898,iPhone,1,700,01/16/19 23:49,"75 Dogwood St, Los Angeles, CA 90001" +152899,iPhone,1,700,01/30/19 20:41,"956 Ridge St, New York City, NY 10001" +152900,AAA Batteries (4-pack),1,2.99,01/02/19 08:55,"446 Jefferson St, Austin, TX 73301" +152901,AA Batteries (4-pack),1,3.84,01/07/19 09:24,"539 Willow St, Boston, MA 02215" +152902,AAA Batteries (4-pack),1,2.99,01/22/19 14:19,"831 Elm St, Portland, ME 04101" +152903,Flatscreen TV,1,300,01/13/19 21:06,"994 Hill St, Boston, MA 02215" +152904,AA Batteries (4-pack),1,3.84,01/09/19 16:49,"82 Highland St, San Francisco, CA 94016" +152905,Lightning Charging Cable,1,14.95,01/02/19 23:45,"71 1st St, Atlanta, GA 30301" +152906,AA Batteries (4-pack),1,3.84,01/27/19 09:33,"432 Johnson St, Los Angeles, CA 90001" +152907,Google Phone,1,600,01/16/19 12:19,"427 1st St, San Francisco, CA 94016" +152908,Apple Airpods Headphones,1,150,01/04/19 10:15,"778 Jackson St, Seattle, WA 98101" +152909,Apple Airpods Headphones,1,150,01/10/19 10:35,"393 Lincoln St, Boston, MA 02215" +152910,Wired Headphones,2,11.99,01/08/19 17:00,"624 Sunset St, San Francisco, CA 94016" +152911,AAA Batteries (4-pack),1,2.99,01/07/19 18:05,"194 Lincoln St, Austin, TX 73301" +152912,USB-C Charging Cable,1,11.95,01/11/19 10:18,"636 Meadow St, Boston, MA 02215" +152913,USB-C Charging Cable,1,11.95,01/08/19 22:07,"265 Hill St, Los Angeles, CA 90001" +152914,Google Phone,1,600,01/11/19 20:06,"944 Lakeview St, Dallas, TX 75001" +152915,ThinkPad Laptop,1,999.99,01/15/19 20:54,"884 Jackson St, Austin, TX 73301" +152916,AA Batteries (4-pack),1,3.84,01/26/19 18:02,"718 Forest St, Boston, MA 02215" +152917,27in 4K Gaming Monitor,1,389.99,01/17/19 22:59,"977 Chestnut St, Seattle, WA 98101" +152918,AAA Batteries (4-pack),2,2.99,01/02/19 16:07,"503 Adams St, Los Angeles, CA 90001" +152919,20in Monitor,1,109.99,01/02/19 11:47,"134 14th St, Dallas, TX 75001" +152920,USB-C Charging Cable,1,11.95,01/13/19 19:49,"663 Sunset St, San Francisco, CA 94016" +152921,USB-C Charging Cable,1,11.95,01/22/19 12:58,"855 Walnut St, Atlanta, GA 30301" +152922,Flatscreen TV,1,300,01/13/19 21:59,"94 10th St, Boston, MA 02215" +152923,AAA Batteries (4-pack),2,2.99,01/01/19 12:33,"803 Ridge St, San Francisco, CA 94016" +152924,ThinkPad Laptop,1,999.99,01/15/19 10:01,"281 4th St, San Francisco, CA 94016" +152925,iPhone,1,700,01/17/19 18:31,"696 North St, Boston, MA 02215" +152925,Wired Headphones,1,11.99,01/17/19 18:31,"696 North St, Boston, MA 02215" +152926,Bose SoundSport Headphones,1,99.99,01/31/19 23:01,"901 Jefferson St, Los Angeles, CA 90001" +152927,27in 4K Gaming Monitor,1,389.99,01/08/19 01:03,"819 11th St, New York City, NY 10001" +152928,AA Batteries (4-pack),1,3.84,01/13/19 17:43,"272 Jefferson St, San Francisco, CA 94016" +152929,AA Batteries (4-pack),1,3.84,01/20/19 15:11,"992 Johnson St, Boston, MA 02215" +152930,Lightning Charging Cable,1,14.95,01/02/19 22:27,"979 5th St, San Francisco, CA 94016" +152931,34in Ultrawide Monitor,1,379.99,01/06/19 15:15,"131 Elm St, Boston, MA 02215" +152932,Apple Airpods Headphones,1,150,01/02/19 17:02,"89 Walnut St, San Francisco, CA 94016" +152933,USB-C Charging Cable,1,11.95,01/27/19 00:01,"571 Lake St, Boston, MA 02215" +152934,Wired Headphones,1,11.99,01/21/19 15:43,"817 Elm St, Dallas, TX 75001" +152935,AA Batteries (4-pack),2,3.84,01/08/19 15:56,"852 Center St, San Francisco, CA 94016" +152936,Vareebadd Phone,1,400,01/17/19 11:28,"773 Lake St, San Francisco, CA 94016" +152937,27in FHD Monitor,1,149.99,01/25/19 18:40,"494 11th St, Austin, TX 73301" +152938,AAA Batteries (4-pack),1,2.99,01/15/19 09:39,"666 Johnson St, Los Angeles, CA 90001" +152939,Apple Airpods Headphones,1,150,01/12/19 10:40,"214 Main St, Los Angeles, CA 90001" +152940,AAA Batteries (4-pack),1,2.99,01/03/19 09:04,"817 Church St, Dallas, TX 75001" +152941,USB-C Charging Cable,1,11.95,01/05/19 20:50,"389 Pine St, New York City, NY 10001" +152942,AAA Batteries (4-pack),1,2.99,01/22/19 16:03,"890 Center St, Atlanta, GA 30301" +152943,Bose SoundSport Headphones,1,99.99,01/09/19 08:57,"576 Johnson St, Atlanta, GA 30301" +152944,Lightning Charging Cable,1,14.95,01/09/19 16:33,"453 4th St, New York City, NY 10001" +152945,Apple Airpods Headphones,1,150,01/13/19 15:43,"366 River St, Portland, OR 97035" +152946,AAA Batteries (4-pack),1,2.99,01/31/19 05:08,"582 Cedar St, Atlanta, GA 30301" +152947,AAA Batteries (4-pack),1,2.99,01/11/19 09:10,"697 Spruce St, Portland, OR 97035" +152948,Macbook Pro Laptop,1,1700,01/27/19 17:10,"973 Hickory St, Austin, TX 73301" +152949,Flatscreen TV,1,300,01/05/19 14:55,"365 11th St, San Francisco, CA 94016" +152950,Wired Headphones,1,11.99,01/18/19 17:50,"173 South St, Portland, OR 97035" +152951,USB-C Charging Cable,1,11.95,01/09/19 23:04,"66 Hill St, Atlanta, GA 30301" +152952,AAA Batteries (4-pack),1,2.99,01/09/19 21:45,"394 River St, Atlanta, GA 30301" +152953,AA Batteries (4-pack),1,3.84,01/22/19 15:37,"101 Forest St, Portland, OR 97035" +152954,Wired Headphones,1,11.99,01/15/19 19:31,"804 5th St, Seattle, WA 98101" +152955,AAA Batteries (4-pack),3,2.99,01/15/19 14:10,"145 Washington St, New York City, NY 10001" +152956,AA Batteries (4-pack),3,3.84,01/14/19 12:11,"243 Cherry St, San Francisco, CA 94016" +152957,AA Batteries (4-pack),1,3.84,01/06/19 18:51,"336 Hill St, Austin, TX 73301" +152958,iPhone,1,700,01/17/19 23:02,"19 Pine St, Atlanta, GA 30301" +152959,Bose SoundSport Headphones,1,99.99,01/23/19 17:49,"644 Park St, Los Angeles, CA 90001" +152960,27in FHD Monitor,1,149.99,01/01/19 20:50,"371 5th St, Boston, MA 02215" +152961,27in FHD Monitor,1,149.99,01/05/19 00:50,"261 Park St, Los Angeles, CA 90001" +152962,Lightning Charging Cable,1,14.95,01/19/19 06:29,"765 West St, San Francisco, CA 94016" +152963,USB-C Charging Cable,1,11.95,01/17/19 15:41,"466 Jackson St, Boston, MA 02215" +152964,Flatscreen TV,1,300,01/14/19 13:07,"52 Ridge St, Seattle, WA 98101" +152965,AAA Batteries (4-pack),1,2.99,01/08/19 11:22,"861 Elm St, Boston, MA 02215" +152966,Macbook Pro Laptop,1,1700,01/17/19 11:35,"537 6th St, New York City, NY 10001" +152967,AAA Batteries (4-pack),1,2.99,01/19/19 13:05,"711 Hill St, Portland, OR 97035" +152968,Bose SoundSport Headphones,1,99.99,01/03/19 14:39,"701 13th St, Austin, TX 73301" +152969,Wired Headphones,1,11.99,01/13/19 10:00,"844 Maple St, Boston, MA 02215" +152970,AA Batteries (4-pack),3,3.84,01/31/19 22:16,"351 Main St, Los Angeles, CA 90001" +152970,Google Phone,1,600,01/31/19 22:16,"351 Main St, Los Angeles, CA 90001" +152971,Wired Headphones,1,11.99,01/22/19 13:29,"458 Jefferson St, Atlanta, GA 30301" +152972,ThinkPad Laptop,1,999.99,01/02/19 02:47,"556 Forest St, Los Angeles, CA 90001" +152973,LG Dryer,1,600.0,01/30/19 00:58,"725 Lakeview St, San Francisco, CA 94016" +152974,AAA Batteries (4-pack),1,2.99,01/27/19 19:04,"980 Elm St, Portland, OR 97035" +152975,AA Batteries (4-pack),1,3.84,01/03/19 19:33,"108 Highland St, San Francisco, CA 94016" +152976,34in Ultrawide Monitor,1,379.99,01/25/19 10:28,"799 Ridge St, Los Angeles, CA 90001" +152977,AA Batteries (4-pack),1,3.84,01/04/19 12:45,"312 Madison St, Seattle, WA 98101" +152977,Bose SoundSport Headphones,1,99.99,01/04/19 12:45,"312 Madison St, Seattle, WA 98101" +152978,AA Batteries (4-pack),1,3.84,01/30/19 19:40,"181 Meadow St, Los Angeles, CA 90001" +152979,AAA Batteries (4-pack),1,2.99,01/13/19 12:15,"768 Lake St, San Francisco, CA 94016" +152980,Bose SoundSport Headphones,1,99.99,01/28/19 17:02,"347 Chestnut St, Austin, TX 73301" +152981,AA Batteries (4-pack),2,3.84,01/05/19 14:03,"42 Lakeview St, San Francisco, CA 94016" +152982,34in Ultrawide Monitor,1,379.99,01/28/19 19:29,"302 Washington St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +152983,Bose SoundSport Headphones,1,99.99,01/27/19 18:01,"857 4th St, Austin, TX 73301" +152984,Wired Headphones,1,11.99,01/04/19 10:11,"86 Adams St, Boston, MA 02215" +152985,Flatscreen TV,1,300,01/14/19 10:58,"73 Meadow St, Atlanta, GA 30301" +152986,AAA Batteries (4-pack),1,2.99,01/14/19 18:58,"820 Lake St, Boston, MA 02215" +152987,Vareebadd Phone,1,400,01/30/19 09:27,"797 2nd St, Boston, MA 02215" +152987,Bose SoundSport Headphones,1,99.99,01/30/19 09:27,"797 2nd St, Boston, MA 02215" +152988,Lightning Charging Cable,1,14.95,01/10/19 08:58,"661 Spruce St, Austin, TX 73301" +152989,Lightning Charging Cable,1,14.95,01/30/19 13:13,"586 Dogwood St, San Francisco, CA 94016" +152990,Apple Airpods Headphones,1,150,01/07/19 20:49,"569 11th St, Los Angeles, CA 90001" +152991,Bose SoundSport Headphones,1,99.99,01/31/19 12:00,"771 Lincoln St, Los Angeles, CA 90001" +152992,AA Batteries (4-pack),1,3.84,01/15/19 20:58,"792 Chestnut St, San Francisco, CA 94016" +152993,20in Monitor,1,109.99,01/26/19 18:53,"920 10th St, Dallas, TX 75001" +152994,AAA Batteries (4-pack),1,2.99,01/13/19 12:08,"204 Lake St, Los Angeles, CA 90001" +152995,Apple Airpods Headphones,1,150,01/14/19 07:29,"163 North St, San Francisco, CA 94016" +152996,Lightning Charging Cable,1,14.95,01/28/19 00:51,"852 8th St, Portland, OR 97035" +152997,27in FHD Monitor,1,149.99,01/03/19 12:15,"884 Ridge St, San Francisco, CA 94016" +152998,USB-C Charging Cable,1,11.95,01/31/19 19:45,"77 8th St, San Francisco, CA 94016" +152999,20in Monitor,1,109.99,01/31/19 19:40,"336 Main St, Los Angeles, CA 90001" +153000,AAA Batteries (4-pack),1,2.99,01/10/19 14:46,"210 Spruce St, Atlanta, GA 30301" +153001,AAA Batteries (4-pack),2,2.99,01/15/19 19:53,"564 Lincoln St, San Francisco, CA 94016" +153002,34in Ultrawide Monitor,1,379.99,01/16/19 15:52,"809 Johnson St, Portland, OR 97035" +153003,Lightning Charging Cable,1,14.95,01/09/19 15:48,"602 4th St, San Francisco, CA 94016" +153004,Wired Headphones,1,11.99,01/01/19 11:38,"481 Cedar St, Atlanta, GA 30301" +153005,27in 4K Gaming Monitor,1,389.99,01/13/19 19:06,"225 8th St, Boston, MA 02215" +153006,Lightning Charging Cable,1,14.95,01/16/19 22:46,"882 Adams St, New York City, NY 10001" +153007,Lightning Charging Cable,1,14.95,01/04/19 16:17,"375 7th St, Seattle, WA 98101" +153008,iPhone,1,700,01/25/19 20:21,"417 Church St, Atlanta, GA 30301" +153009,Lightning Charging Cable,1,14.95,01/15/19 00:39,"664 River St, San Francisco, CA 94016" +153010,Lightning Charging Cable,1,14.95,01/22/19 11:47,"306 10th St, Atlanta, GA 30301" +153011,AA Batteries (4-pack),1,3.84,01/14/19 12:45,"506 Sunset St, New York City, NY 10001" +153012,Flatscreen TV,1,300,01/31/19 11:20,"47 Adams St, San Francisco, CA 94016" +153013,Wired Headphones,1,11.99,01/09/19 22:59,"867 Washington St, San Francisco, CA 94016" +153014,Apple Airpods Headphones,1,150,01/01/19 21:59,"414 8th St, Boston, MA 02215" +153015,27in 4K Gaming Monitor,1,389.99,01/22/19 20:51,"347 Center St, Boston, MA 02215" +153015,27in FHD Monitor,1,149.99,01/22/19 20:51,"347 Center St, Boston, MA 02215" +153016,Flatscreen TV,1,300,01/03/19 10:39,"945 Chestnut St, Austin, TX 73301" +153017,AAA Batteries (4-pack),1,2.99,01/07/19 01:16,"576 Dogwood St, Los Angeles, CA 90001" +153018,ThinkPad Laptop,1,999.99,01/17/19 17:32,"894 Washington St, San Francisco, CA 94016" +153019,USB-C Charging Cable,1,11.95,01/06/19 23:12,"413 Dogwood St, New York City, NY 10001" +153020,AA Batteries (4-pack),2,3.84,01/06/19 22:27,"186 River St, Atlanta, GA 30301" +153021,Macbook Pro Laptop,1,1700,01/23/19 23:43,"513 6th St, San Francisco, CA 94016" +153022,Apple Airpods Headphones,1,150,01/15/19 08:17,"19 Cedar St, Los Angeles, CA 90001" +153023,AA Batteries (4-pack),1,3.84,01/23/19 15:38,"139 West St, Atlanta, GA 30301" +153024,27in 4K Gaming Monitor,1,389.99,01/07/19 07:08,"264 1st St, San Francisco, CA 94016" +153025,27in 4K Gaming Monitor,1,389.99,01/25/19 20:18,"729 West St, Atlanta, GA 30301" +153026,Lightning Charging Cable,1,14.95,01/29/19 17:27,"58 1st St, Boston, MA 02215" +153027,Flatscreen TV,1,300,01/23/19 23:16,"988 Center St, Boston, MA 02215" +153028,Lightning Charging Cable,2,14.95,01/28/19 22:40,"172 Lincoln St, Austin, TX 73301" +153029,34in Ultrawide Monitor,1,379.99,01/25/19 10:46,"525 13th St, San Francisco, CA 94016" +153030,27in 4K Gaming Monitor,1,389.99,01/31/19 13:33,"241 Washington St, Seattle, WA 98101" +153031,Lightning Charging Cable,1,14.95,01/18/19 10:40,"125 Main St, Austin, TX 73301" +153032,Wired Headphones,1,11.99,01/29/19 22:15,"872 Ridge St, New York City, NY 10001" +153033,Lightning Charging Cable,1,14.95,01/22/19 16:47,"164 8th St, Atlanta, GA 30301" +153034,Wired Headphones,2,11.99,01/19/19 15:05,"335 7th St, San Francisco, CA 94016" +153035,USB-C Charging Cable,1,11.95,01/25/19 11:59,"474 11th St, Seattle, WA 98101" +153036,Wired Headphones,1,11.99,02/01/19 02:01,"362 Cedar St, Boston, MA 02215" +153037,Wired Headphones,1,11.99,01/29/19 16:43,"856 North St, New York City, NY 10001" +153038,AA Batteries (4-pack),1,3.84,01/25/19 18:38,"891 Cedar St, Portland, OR 97035" +153039,34in Ultrawide Monitor,1,379.99,01/25/19 12:35,"121 Dogwood St, Atlanta, GA 30301" +153040,20in Monitor,1,109.99,01/06/19 17:12,"843 14th St, New York City, NY 10001" +153041,USB-C Charging Cable,1,11.95,01/12/19 10:52,"808 Ridge St, Atlanta, GA 30301" +153042,AA Batteries (4-pack),1,3.84,01/15/19 22:42,"731 8th St, Dallas, TX 75001" +153043,Bose SoundSport Headphones,1,99.99,01/01/19 17:12,"488 Willow St, Dallas, TX 75001" +153044,AAA Batteries (4-pack),1,2.99,01/07/19 14:04,"936 9th St, Austin, TX 73301" +153045,20in Monitor,1,109.99,01/20/19 11:15,"652 Adams St, Los Angeles, CA 90001" +153046,Lightning Charging Cable,1,14.95,01/10/19 21:00,"980 5th St, Austin, TX 73301" +153047,27in FHD Monitor,1,149.99,01/30/19 17:46,"2 Lake St, Austin, TX 73301" +153048,AAA Batteries (4-pack),1,2.99,01/08/19 15:02,"846 Elm St, Atlanta, GA 30301" +153049,Bose SoundSport Headphones,1,99.99,01/11/19 20:38,"723 7th St, Boston, MA 02215" +153050,USB-C Charging Cable,1,11.95,01/05/19 15:47,"597 North St, San Francisco, CA 94016" +153051,iPhone,1,700,01/20/19 22:30,"479 Cherry St, San Francisco, CA 94016" +153052,USB-C Charging Cable,1,11.95,01/27/19 12:04,"572 Maple St, San Francisco, CA 94016" +153053,Wired Headphones,1,11.99,01/08/19 16:25,"508 13th St, Dallas, TX 75001" +153054,USB-C Charging Cable,1,11.95,01/15/19 17:13,"170 South St, Atlanta, GA 30301" +153055,Flatscreen TV,1,300,01/14/19 16:25,"536 4th St, Austin, TX 73301" +153056,Wired Headphones,1,11.99,01/19/19 15:06,"743 Willow St, San Francisco, CA 94016" +153057,27in 4K Gaming Monitor,1,389.99,01/16/19 21:43,"657 13th St, Austin, TX 73301" +153058,Lightning Charging Cable,1,14.95,01/25/19 21:17,"56 Forest St, New York City, NY 10001" +153059,AAA Batteries (4-pack),1,2.99,01/26/19 20:45,"28 Lake St, Los Angeles, CA 90001" +153060,Lightning Charging Cable,1,14.95,01/20/19 19:18,"515 Lakeview St, Austin, TX 73301" +153061,Flatscreen TV,1,300,01/29/19 18:07,"494 Highland St, Boston, MA 02215" +153062,Apple Airpods Headphones,1,150,01/17/19 00:01,"234 Hickory St, Austin, TX 73301" +153063,AAA Batteries (4-pack),1,2.99,01/10/19 11:50,"647 Willow St, San Francisco, CA 94016" +153064,USB-C Charging Cable,1,11.95,01/03/19 08:59,"985 5th St, New York City, NY 10001" +153065,Wired Headphones,1,11.99,01/15/19 20:03,"944 Maple St, New York City, NY 10001" +153066,Lightning Charging Cable,1,14.95,01/25/19 01:37,"735 1st St, San Francisco, CA 94016" +153067,AA Batteries (4-pack),1,3.84,01/11/19 10:43,"607 Pine St, Seattle, WA 98101" +153068,34in Ultrawide Monitor,1,379.99,01/27/19 09:37,"26 Madison St, San Francisco, CA 94016" +153069,Apple Airpods Headphones,1,150,01/19/19 20:21,"804 Park St, Seattle, WA 98101" +153070,USB-C Charging Cable,1,11.95,01/31/19 18:37,"475 Park St, San Francisco, CA 94016" +153071,AA Batteries (4-pack),1,3.84,01/16/19 08:21,"111 Lincoln St, New York City, NY 10001" +153071,Wired Headphones,1,11.99,01/16/19 08:21,"111 Lincoln St, New York City, NY 10001" +153072,AA Batteries (4-pack),2,3.84,01/23/19 22:57,"560 Lakeview St, Atlanta, GA 30301" +153073,ThinkPad Laptop,1,999.99,01/01/19 20:33,"326 7th St, San Francisco, CA 94016" +153073,Wired Headphones,2,11.99,01/01/19 20:33,"326 7th St, San Francisco, CA 94016" +153074,Apple Airpods Headphones,1,150,01/19/19 13:24,"322 Lakeview St, Los Angeles, CA 90001" +153075,AA Batteries (4-pack),1,3.84,01/07/19 00:31,"133 Chestnut St, Los Angeles, CA 90001" +153076,AA Batteries (4-pack),2,3.84,01/14/19 22:13,"108 Jackson St, San Francisco, CA 94016" +153077,Vareebadd Phone,1,400,01/04/19 10:33,"596 1st St, New York City, NY 10001" +153078,Wired Headphones,1,11.99,01/24/19 12:45,"450 1st St, San Francisco, CA 94016" +153079,Bose SoundSport Headphones,1,99.99,01/28/19 18:42,"799 Maple St, Los Angeles, CA 90001" +153080,Wired Headphones,1,11.99,01/06/19 16:02,"653 Main St, Portland, ME 04101" +153081,Lightning Charging Cable,1,14.95,01/26/19 17:40,"349 Walnut St, San Francisco, CA 94016" +153082,USB-C Charging Cable,1,11.95,01/14/19 15:00,"205 Lincoln St, New York City, NY 10001" +153083,Lightning Charging Cable,1,14.95,01/28/19 12:32,"160 Adams St, Atlanta, GA 30301" +153084,Apple Airpods Headphones,1,150,01/31/19 14:38,"167 5th St, Atlanta, GA 30301" +153085,27in FHD Monitor,1,149.99,01/15/19 22:18,"886 West St, Los Angeles, CA 90001" +153086,Wired Headphones,1,11.99,01/29/19 13:32,"358 River St, Boston, MA 02215" +153087,27in 4K Gaming Monitor,1,389.99,01/23/19 20:06,"559 11th St, Portland, OR 97035" +153088,LG Dryer,1,600.0,01/04/19 16:44,"625 Main St, Portland, OR 97035" +153089,Vareebadd Phone,1,400,01/31/19 23:09,"878 Ridge St, Los Angeles, CA 90001" +153089,USB-C Charging Cable,1,11.95,01/31/19 23:09,"878 Ridge St, Los Angeles, CA 90001" +153090,USB-C Charging Cable,1,11.95,01/08/19 11:59,"586 6th St, Dallas, TX 75001" +153091,USB-C Charging Cable,1,11.95,01/21/19 17:32,"814 River St, Seattle, WA 98101" +153092,Lightning Charging Cable,1,14.95,01/11/19 16:14,"183 Meadow St, Seattle, WA 98101" +153093,34in Ultrawide Monitor,1,379.99,01/02/19 18:38,"975 Walnut St, Seattle, WA 98101" +153094,AA Batteries (4-pack),1,3.84,01/18/19 00:51,"431 Spruce St, Seattle, WA 98101" +153095,AAA Batteries (4-pack),2,2.99,01/06/19 12:43,"521 Cedar St, New York City, NY 10001" +153096,34in Ultrawide Monitor,1,379.99,01/26/19 20:17,"700 Washington St, Los Angeles, CA 90001" +153097,Macbook Pro Laptop,1,1700,01/05/19 12:38,"109 9th St, Dallas, TX 75001" +153098,USB-C Charging Cable,1,11.95,01/29/19 23:28,"398 Park St, Los Angeles, CA 90001" +153099,Google Phone,1,600,01/03/19 11:15,"686 Park St, Boston, MA 02215" +153100,Wired Headphones,1,11.99,01/04/19 17:46,"513 5th St, Portland, ME 04101" +153101,27in FHD Monitor,1,149.99,01/16/19 09:48,"975 Maple St, Austin, TX 73301" +153102,AA Batteries (4-pack),2,3.84,01/13/19 17:05,"167 6th St, Boston, MA 02215" +153103,AAA Batteries (4-pack),2,2.99,01/28/19 12:19,"738 Main St, Atlanta, GA 30301" +153104,ThinkPad Laptop,1,999.99,01/30/19 14:46,"647 Elm St, Portland, OR 97035" +153105,Lightning Charging Cable,1,14.95,01/11/19 19:24,"891 9th St, Atlanta, GA 30301" +153106,iPhone,1,700,01/14/19 21:50,"726 Adams St, New York City, NY 10001" +153107,Lightning Charging Cable,1,14.95,01/19/19 16:03,"981 Church St, San Francisco, CA 94016" +153108,AAA Batteries (4-pack),1,2.99,01/25/19 14:00,"507 Johnson St, Los Angeles, CA 90001" +153109,Bose SoundSport Headphones,1,99.99,01/07/19 23:20,"90 South St, Boston, MA 02215" +153110,iPhone,1,700,01/10/19 20:36,"422 Johnson St, Los Angeles, CA 90001" +153111,27in 4K Gaming Monitor,1,389.99,01/09/19 19:02,"19 Lincoln St, San Francisco, CA 94016" +153112,Bose SoundSport Headphones,1,99.99,01/15/19 02:23,"337 Sunset St, San Francisco, CA 94016" +153113,27in FHD Monitor,1,149.99,02/01/19 01:23,"650 11th St, Portland, OR 97035" +153114,AA Batteries (4-pack),1,3.84,01/04/19 18:08,"451 Center St, San Francisco, CA 94016" +153115,Macbook Pro Laptop,1,1700,01/30/19 18:28,"231 Hill St, Seattle, WA 98101" +153116,AAA Batteries (4-pack),5,2.99,01/04/19 10:50,"593 Sunset St, Austin, TX 73301" +153117,Flatscreen TV,1,300,01/10/19 05:05,"665 Walnut St, Boston, MA 02215" +153118,34in Ultrawide Monitor,1,379.99,01/01/19 12:02,"796 4th St, San Francisco, CA 94016" +153119,Bose SoundSport Headphones,1,99.99,01/20/19 15:40,"591 Jackson St, New York City, NY 10001" +153120,AA Batteries (4-pack),2,3.84,01/02/19 22:02,"121 7th St, Austin, TX 73301" +153121,Apple Airpods Headphones,1,150,01/27/19 17:09,"397 Lake St, Los Angeles, CA 90001" +153122,AA Batteries (4-pack),1,3.84,01/20/19 08:22,"325 South St, Los Angeles, CA 90001" +153123,Lightning Charging Cable,1,14.95,01/13/19 13:59,"909 11th St, Los Angeles, CA 90001" +153124,AAA Batteries (4-pack),1,2.99,01/05/19 12:51,"358 Dogwood St, Boston, MA 02215" +153125,Lightning Charging Cable,2,14.95,01/26/19 22:04,"87 Cedar St, Boston, MA 02215" +153126,Google Phone,1,600,01/30/19 14:25,"100 Washington St, New York City, NY 10001" +153127,27in FHD Monitor,1,149.99,01/03/19 23:26,"651 Forest St, Dallas, TX 75001" +153128,USB-C Charging Cable,2,11.95,01/28/19 00:57,"301 Hickory St, San Francisco, CA 94016" +153129,27in 4K Gaming Monitor,1,389.99,01/13/19 01:45,"190 Center St, Boston, MA 02215" +153130,Lightning Charging Cable,2,14.95,01/12/19 18:53,"32 Jefferson St, Seattle, WA 98101" +153131,Wired Headphones,2,11.99,01/09/19 04:18,"80 Spruce St, San Francisco, CA 94016" +153132,USB-C Charging Cable,1,11.95,01/24/19 19:55,"447 Lakeview St, New York City, NY 10001" +153133,ThinkPad Laptop,1,999.99,01/13/19 13:23,"159 Adams St, San Francisco, CA 94016" +153134,USB-C Charging Cable,1,11.95,01/28/19 20:00,"310 14th St, Boston, MA 02215" +153135,Wired Headphones,1,11.99,01/26/19 21:09,"38 Center St, Seattle, WA 98101" +153136,27in 4K Gaming Monitor,1,389.99,01/22/19 11:56,"483 5th St, San Francisco, CA 94016" +153137,Lightning Charging Cable,1,14.95,01/09/19 15:09,"658 Cherry St, New York City, NY 10001" +153138,iPhone,1,700,01/28/19 13:11,"864 Adams St, San Francisco, CA 94016" +153139,USB-C Charging Cable,1,11.95,01/06/19 20:45,"501 Adams St, Atlanta, GA 30301" +153140,Lightning Charging Cable,1,14.95,01/28/19 21:12,"169 Ridge St, Atlanta, GA 30301" +153141,USB-C Charging Cable,1,11.95,01/02/19 11:45,"243 Pine St, Los Angeles, CA 90001" +153142,Apple Airpods Headphones,1,150,01/17/19 18:23,"93 Forest St, Los Angeles, CA 90001" +153143,Wired Headphones,1,11.99,01/21/19 16:05,"886 5th St, San Francisco, CA 94016" +153144,27in FHD Monitor,1,149.99,01/17/19 13:38,"426 North St, San Francisco, CA 94016" +153145,AA Batteries (4-pack),1,3.84,01/14/19 18:59,"679 10th St, Austin, TX 73301" +153146,USB-C Charging Cable,1,11.95,01/21/19 02:06,"564 Cedar St, Portland, OR 97035" +153147,Wired Headphones,1,11.99,01/15/19 16:16,"660 12th St, Los Angeles, CA 90001" +153148,27in FHD Monitor,1,149.99,01/08/19 09:49,"48 12th St, Portland, OR 97035" +153149,Apple Airpods Headphones,1,150,01/21/19 19:25,"613 Wilson St, San Francisco, CA 94016" +153150,34in Ultrawide Monitor,1,379.99,01/15/19 23:15,"395 Maple St, Los Angeles, CA 90001" +153151,Apple Airpods Headphones,1,150,01/23/19 17:26,"349 10th St, San Francisco, CA 94016" +153152,Lightning Charging Cable,1,14.95,01/21/19 23:50,"70 Church St, San Francisco, CA 94016" +153153,20in Monitor,1,109.99,01/09/19 11:19,"932 8th St, San Francisco, CA 94016" +153154,Lightning Charging Cable,1,14.95,01/07/19 14:56,"395 5th St, Portland, OR 97035" +153155,Wired Headphones,1,11.99,01/04/19 09:51,"842 Ridge St, Atlanta, GA 30301" +153156,Flatscreen TV,1,300,01/30/19 14:37,"555 11th St, Dallas, TX 75001" +153157,27in FHD Monitor,1,149.99,01/02/19 10:28,"865 Main St, Seattle, WA 98101" +153158,Bose SoundSport Headphones,1,99.99,01/14/19 19:35,"663 Ridge St, Austin, TX 73301" +153159,Apple Airpods Headphones,1,150,01/04/19 05:43,"449 Adams St, San Francisco, CA 94016" +153160,AAA Batteries (4-pack),1,2.99,01/18/19 12:54,"403 Spruce St, San Francisco, CA 94016" +153161,USB-C Charging Cable,2,11.95,01/26/19 20:14,"799 Lakeview St, Dallas, TX 75001" +153162,Bose SoundSport Headphones,1,99.99,01/09/19 14:28,"108 11th St, New York City, NY 10001" +153163,Lightning Charging Cable,1,14.95,01/10/19 10:27,"211 Sunset St, Atlanta, GA 30301" +153164,iPhone,1,700,01/07/19 09:25,"607 Dogwood St, San Francisco, CA 94016" +153164,Lightning Charging Cable,1,14.95,01/07/19 09:25,"607 Dogwood St, San Francisco, CA 94016" +153165,34in Ultrawide Monitor,1,379.99,01/21/19 21:51,"646 Main St, San Francisco, CA 94016" +153166,USB-C Charging Cable,1,11.95,01/25/19 04:19,"132 Spruce St, San Francisco, CA 94016" +153167,Google Phone,1,600,01/26/19 13:03,"911 Adams St, Boston, MA 02215" +153168,Lightning Charging Cable,1,14.95,01/08/19 12:42,"782 North St, San Francisco, CA 94016" +153169,27in 4K Gaming Monitor,1,389.99,01/10/19 10:04,"604 Lincoln St, Boston, MA 02215" +153170,AAA Batteries (4-pack),1,2.99,01/11/19 14:08,"362 6th St, Boston, MA 02215" +153171,iPhone,1,700,01/30/19 18:33,"646 Meadow St, Portland, OR 97035" +153172,USB-C Charging Cable,1,11.95,01/18/19 19:41,"955 2nd St, Seattle, WA 98101" +153173,USB-C Charging Cable,1,11.95,01/26/19 09:52,"96 Willow St, Boston, MA 02215" +153174,USB-C Charging Cable,1,11.95,01/23/19 12:45,"149 Sunset St, Dallas, TX 75001" +153175,Bose SoundSport Headphones,1,99.99,01/03/19 13:04,"103 4th St, Los Angeles, CA 90001" +153176,AAA Batteries (4-pack),1,2.99,01/28/19 22:39,"156 South St, New York City, NY 10001" +153177,Wired Headphones,1,11.99,01/06/19 14:12,"93 1st St, New York City, NY 10001" +153178,Lightning Charging Cable,1,14.95,01/07/19 20:11,"906 Sunset St, Austin, TX 73301" +153179,Lightning Charging Cable,1,14.95,01/08/19 19:43,"641 Walnut St, San Francisco, CA 94016" +153180,Google Phone,1,600,01/13/19 18:59,"460 12th St, New York City, NY 10001" +153181,USB-C Charging Cable,1,11.95,01/10/19 15:25,"359 Washington St, Atlanta, GA 30301" +153182,Wired Headphones,1,11.99,01/19/19 22:29,"302 4th St, San Francisco, CA 94016" +153183,Vareebadd Phone,1,400,01/25/19 11:33,"44 South St, Los Angeles, CA 90001" +153184,Apple Airpods Headphones,1,150,01/05/19 13:09,"683 Walnut St, San Francisco, CA 94016" +153185,Bose SoundSport Headphones,1,99.99,01/01/19 15:42,"96 7th St, Atlanta, GA 30301" +153186,ThinkPad Laptop,1,999.99,01/10/19 23:26,"987 Lincoln St, Boston, MA 02215" +153187,USB-C Charging Cable,1,11.95,01/18/19 18:21,"260 Lincoln St, New York City, NY 10001" +153188,AA Batteries (4-pack),1,3.84,01/20/19 20:02,"2 2nd St, Dallas, TX 75001" +153189,34in Ultrawide Monitor,1,379.99,01/11/19 09:14,"736 Madison St, Los Angeles, CA 90001" +153190,Bose SoundSport Headphones,1,99.99,01/18/19 06:26,"900 1st St, San Francisco, CA 94016" +153191,Lightning Charging Cable,1,14.95,01/30/19 20:14,"412 Elm St, San Francisco, CA 94016" +153192,34in Ultrawide Monitor,1,379.99,01/11/19 12:53,"814 Chestnut St, Boston, MA 02215" +153193,USB-C Charging Cable,2,11.95,01/07/19 21:23,"773 Walnut St, Seattle, WA 98101" +153194,iPhone,1,700,01/04/19 19:59,"651 Pine St, New York City, NY 10001" +153195,USB-C Charging Cable,1,11.95,01/27/19 12:00,"791 Highland St, San Francisco, CA 94016" +153196,Apple Airpods Headphones,1,150,01/03/19 14:56,"638 South St, Los Angeles, CA 90001" +153197,Flatscreen TV,1,300,01/12/19 10:07,"224 2nd St, Atlanta, GA 30301" +153198,USB-C Charging Cable,1,11.95,01/24/19 20:39,"515 Ridge St, Atlanta, GA 30301" +153199,34in Ultrawide Monitor,1,379.99,01/04/19 19:56,"205 8th St, New York City, NY 10001" +153200,Bose SoundSport Headphones,1,99.99,01/27/19 23:51,"487 Main St, Los Angeles, CA 90001" +153201,AAA Batteries (4-pack),2,2.99,01/23/19 12:47,"387 Willow St, Seattle, WA 98101" +153202,Lightning Charging Cable,1,14.95,01/15/19 21:14,"731 Lakeview St, Boston, MA 02215" +153203,Lightning Charging Cable,1,14.95,01/28/19 14:20,"913 Sunset St, San Francisco, CA 94016" +153204,Flatscreen TV,1,300,01/27/19 02:17,"573 14th St, San Francisco, CA 94016" +153205,USB-C Charging Cable,1,11.95,01/23/19 21:30,"117 Willow St, Dallas, TX 75001" +153206,Lightning Charging Cable,1,14.95,01/30/19 16:50,"324 Forest St, Atlanta, GA 30301" +153207,Wired Headphones,1,11.99,01/08/19 13:52,"776 5th St, New York City, NY 10001" +153208,Lightning Charging Cable,1,14.95,01/29/19 12:56,"311 1st St, San Francisco, CA 94016" +153209,Apple Airpods Headphones,1,150,01/12/19 12:10,"979 Spruce St, New York City, NY 10001" +153210,Google Phone,1,600,01/20/19 20:29,"619 Madison St, Austin, TX 73301" +153211,AAA Batteries (4-pack),2,2.99,01/09/19 11:36,"237 6th St, Atlanta, GA 30301" +153212,Bose SoundSport Headphones,1,99.99,01/27/19 16:33,"931 14th St, San Francisco, CA 94016" +153213,iPhone,1,700,01/25/19 10:59,"462 Park St, San Francisco, CA 94016" +153214,34in Ultrawide Monitor,1,379.99,01/03/19 08:01,"476 Center St, San Francisco, CA 94016" +153215,Wired Headphones,1,11.99,01/02/19 00:16,"708 13th St, Dallas, TX 75001" +153216,USB-C Charging Cable,1,11.95,01/24/19 23:38,"560 Dogwood St, Boston, MA 02215" +153217,Apple Airpods Headphones,1,150,01/12/19 14:14,"566 Elm St, San Francisco, CA 94016" +153218,ThinkPad Laptop,1,999.99,01/29/19 07:54,"203 Ridge St, Seattle, WA 98101" +153219,34in Ultrawide Monitor,1,379.99,01/27/19 09:32,"783 Lake St, San Francisco, CA 94016" +153220,Lightning Charging Cable,1,14.95,01/01/19 13:13,"236 Hickory St, Atlanta, GA 30301" +153221,AA Batteries (4-pack),1,3.84,01/10/19 08:21,"963 Walnut St, Atlanta, GA 30301" +153222,Lightning Charging Cable,1,14.95,01/22/19 21:12,"535 Hill St, Dallas, TX 75001" +153223,AA Batteries (4-pack),1,3.84,01/29/19 09:10,"279 Church St, Los Angeles, CA 90001" +153224,AA Batteries (4-pack),1,3.84,01/28/19 18:51,"293 South St, San Francisco, CA 94016" +153225,Wired Headphones,1,11.99,01/18/19 08:16,"632 Cherry St, Portland, OR 97035" +153226,Macbook Pro Laptop,1,1700,01/04/19 22:44,"459 Ridge St, San Francisco, CA 94016" +153227,AA Batteries (4-pack),1,3.84,01/30/19 00:38,"120 Adams St, Los Angeles, CA 90001" +153228,27in 4K Gaming Monitor,1,389.99,01/29/19 16:52,"696 Main St, Dallas, TX 75001" +153229,Bose SoundSport Headphones,1,99.99,01/08/19 20:23,"436 North St, Los Angeles, CA 90001" +153230,Bose SoundSport Headphones,1,99.99,01/22/19 01:55,"405 Church St, San Francisco, CA 94016" +153231,Wired Headphones,1,11.99,01/16/19 15:02,"748 Johnson St, Boston, MA 02215" +153232,iPhone,1,700,01/23/19 10:05,"849 Highland St, San Francisco, CA 94016" +153233,iPhone,1,700,01/01/19 21:18,"915 12th St, Portland, OR 97035" +153234,AA Batteries (4-pack),1,3.84,01/18/19 17:33,"697 Madison St, Portland, OR 97035" +153235,27in FHD Monitor,1,149.99,01/20/19 19:48,"354 Sunset St, San Francisco, CA 94016" +153236,Wired Headphones,1,11.99,01/28/19 19:02,"600 Jefferson St, Seattle, WA 98101" +153237,Lightning Charging Cable,1,14.95,01/04/19 13:56,"392 North St, New York City, NY 10001" +153238,Apple Airpods Headphones,1,150,01/17/19 13:45,"201 Hill St, San Francisco, CA 94016" +153239,Bose SoundSport Headphones,1,99.99,01/19/19 08:01,"437 Lincoln St, Dallas, TX 75001" +153240,34in Ultrawide Monitor,1,379.99,01/01/19 17:40,"773 4th St, Los Angeles, CA 90001" +153241,AAA Batteries (4-pack),2,2.99,01/15/19 11:56,"161 14th St, San Francisco, CA 94016" +153242,Wired Headphones,1,11.99,01/05/19 15:55,"545 Ridge St, San Francisco, CA 94016" +153243,Apple Airpods Headphones,1,150,01/12/19 12:24,"297 Johnson St, Los Angeles, CA 90001" +153244,Lightning Charging Cable,1,14.95,01/09/19 13:43,"692 10th St, San Francisco, CA 94016" +153245,Apple Airpods Headphones,1,150,01/24/19 18:01,"979 Madison St, Boston, MA 02215" +153246,Lightning Charging Cable,1,14.95,01/05/19 14:09,"960 Highland St, San Francisco, CA 94016" +153247,Wired Headphones,1,11.99,01/29/19 15:14,"676 Walnut St, Atlanta, GA 30301" +153248,AAA Batteries (4-pack),1,2.99,01/25/19 20:57,"574 River St, New York City, NY 10001" +153249,AAA Batteries (4-pack),2,2.99,01/15/19 14:38,"275 North St, Boston, MA 02215" +153249,27in 4K Gaming Monitor,2,389.99,01/15/19 14:38,"275 North St, Boston, MA 02215" +153250,27in 4K Gaming Monitor,1,389.99,01/26/19 10:02,"810 Pine St, New York City, NY 10001" +153251,ThinkPad Laptop,1,999.99,01/15/19 12:23,"202 Sunset St, San Francisco, CA 94016" +153251,27in 4K Gaming Monitor,1,389.99,01/15/19 12:23,"202 Sunset St, San Francisco, CA 94016" +153252,AAA Batteries (4-pack),2,2.99,01/02/19 15:33,"949 Center St, San Francisco, CA 94016" +153253,AA Batteries (4-pack),2,3.84,01/29/19 00:08,"509 Elm St, Seattle, WA 98101" +153254,Wired Headphones,2,11.99,01/21/19 21:14,"331 Spruce St, Los Angeles, CA 90001" +153255,Flatscreen TV,1,300,01/19/19 21:12,"523 Cherry St, San Francisco, CA 94016" +153256,Apple Airpods Headphones,1,150,01/16/19 12:19,"806 Lincoln St, Atlanta, GA 30301" +153257,Apple Airpods Headphones,1,150,01/10/19 13:34,"224 Dogwood St, Austin, TX 73301" +153258,ThinkPad Laptop,1,999.99,01/06/19 07:37,"299 1st St, San Francisco, CA 94016" +153259,ThinkPad Laptop,1,999.99,01/31/19 10:43,"257 Lake St, San Francisco, CA 94016" +153260,20in Monitor,1,109.99,01/29/19 22:14,"26 Spruce St, San Francisco, CA 94016" +153261,Bose SoundSport Headphones,1,99.99,01/10/19 21:21,"277 5th St, San Francisco, CA 94016" +153262,AA Batteries (4-pack),3,3.84,01/09/19 13:59,"630 North St, Dallas, TX 75001" +153263,Lightning Charging Cable,1,14.95,01/30/19 13:18,"914 Center St, Los Angeles, CA 90001" +153264,Lightning Charging Cable,1,14.95,01/25/19 15:49,"149 Pine St, Dallas, TX 75001" +153265,27in FHD Monitor,1,149.99,01/25/19 19:12,"140 Johnson St, Seattle, WA 98101" +153266,Bose SoundSport Headphones,1,99.99,01/17/19 09:16,"329 Lake St, Atlanta, GA 30301" +153267,AAA Batteries (4-pack),1,2.99,01/01/19 21:20,"17 Lincoln St, Atlanta, GA 30301" +153268,Lightning Charging Cable,1,14.95,01/03/19 20:04,"228 Spruce St, Los Angeles, CA 90001" +153269,ThinkPad Laptop,1,999.99,01/22/19 14:46,"741 Lincoln St, San Francisco, CA 94016" +153270,USB-C Charging Cable,1,11.95,01/26/19 19:42,"652 Main St, Los Angeles, CA 90001" +153271,Vareebadd Phone,1,400,01/02/19 19:24,"477 12th St, San Francisco, CA 94016" +153272,Lightning Charging Cable,1,14.95,01/04/19 12:40,"384 River St, San Francisco, CA 94016" +153273,Apple Airpods Headphones,1,150,01/11/19 20:54,"898 Lincoln St, Portland, OR 97035" +153274,Wired Headphones,1,11.99,01/19/19 18:51,"972 Chestnut St, San Francisco, CA 94016" +153275,USB-C Charging Cable,1,11.95,01/02/19 10:32,"810 Chestnut St, San Francisco, CA 94016" +153276,AAA Batteries (4-pack),1,2.99,01/25/19 08:04,"8 Sunset St, Dallas, TX 75001" +153277,USB-C Charging Cable,1,11.95,01/01/19 13:03,"724 Sunset St, San Francisco, CA 94016" +153278,Apple Airpods Headphones,1,150,01/03/19 04:41,"573 River St, New York City, NY 10001" +153279,AA Batteries (4-pack),1,3.84,01/14/19 12:28,"847 2nd St, New York City, NY 10001" +153280,Lightning Charging Cable,1,14.95,01/11/19 18:32,"485 Madison St, San Francisco, CA 94016" +153281,Apple Airpods Headphones,1,150,01/04/19 20:32,"653 Lakeview St, San Francisco, CA 94016" +153282,20in Monitor,1,109.99,01/19/19 21:44,"824 4th St, Atlanta, GA 30301" +153283,AA Batteries (4-pack),3,3.84,01/26/19 15:10,"197 Elm St, San Francisco, CA 94016" +153284,Google Phone,1,600,01/06/19 18:59,"213 Wilson St, New York City, NY 10001" +153285,USB-C Charging Cable,1,11.95,01/12/19 18:17,"554 9th St, New York City, NY 10001" +153286,AA Batteries (4-pack),1,3.84,01/19/19 16:52,"748 Dogwood St, New York City, NY 10001" +153287,Lightning Charging Cable,1,14.95,01/22/19 20:48,"948 Main St, San Francisco, CA 94016" +153288,USB-C Charging Cable,2,11.95,01/03/19 14:04,"774 12th St, San Francisco, CA 94016" +153289,Bose SoundSport Headphones,1,99.99,01/10/19 10:03,"461 13th St, San Francisco, CA 94016" +153290,AAA Batteries (4-pack),1,2.99,01/25/19 07:18,"883 Hill St, Seattle, WA 98101" +153291,Apple Airpods Headphones,1,150,01/29/19 09:42,"95 Chestnut St, San Francisco, CA 94016" +153292,Wired Headphones,1,11.99,01/01/19 15:26,"633 Hill St, New York City, NY 10001" +153293,Apple Airpods Headphones,1,150,01/30/19 21:54,"776 Cedar St, San Francisco, CA 94016" +153294,27in 4K Gaming Monitor,1,389.99,01/12/19 21:33,"618 Lincoln St, Los Angeles, CA 90001" +153295,iPhone,1,700,01/30/19 15:41,"535 North St, Boston, MA 02215" +153296,AA Batteries (4-pack),2,3.84,01/12/19 05:52,"505 9th St, San Francisco, CA 94016" +153297,27in FHD Monitor,1,149.99,01/11/19 11:15,"660 West St, New York City, NY 10001" +153298,Lightning Charging Cable,1,14.95,01/13/19 12:01,"363 Maple St, Portland, OR 97035" +153299,iPhone,1,700,01/31/19 12:07,"260 Willow St, Portland, OR 97035" +153299,Lightning Charging Cable,1,14.95,01/31/19 12:07,"260 Willow St, Portland, OR 97035" +153300,Wired Headphones,1,11.99,01/16/19 09:23,"801 Wilson St, San Francisco, CA 94016" +153301,Apple Airpods Headphones,1,150,01/17/19 19:54,"959 Church St, Dallas, TX 75001" +153302,20in Monitor,1,109.99,01/26/19 13:09,"459 Jackson St, San Francisco, CA 94016" +153303,AAA Batteries (4-pack),2,2.99,01/25/19 17:36,"976 Maple St, San Francisco, CA 94016" +153304,USB-C Charging Cable,1,11.95,01/06/19 10:10,"781 Maple St, Los Angeles, CA 90001" +153305,USB-C Charging Cable,1,11.95,01/06/19 07:11,"218 Jackson St, San Francisco, CA 94016" +153306,Wired Headphones,1,11.99,01/13/19 09:39,"417 Church St, Austin, TX 73301" +153307,Wired Headphones,1,11.99,01/05/19 06:11,"825 Cedar St, Dallas, TX 75001" +153308,Lightning Charging Cable,1,14.95,01/30/19 21:10,"540 Willow St, Dallas, TX 75001" +153309,Google Phone,1,600,01/22/19 14:33,"398 Lincoln St, Dallas, TX 75001" +153310,Lightning Charging Cable,1,14.95,01/12/19 13:34,"386 12th St, Boston, MA 02215" +153311,Apple Airpods Headphones,1,150,01/22/19 11:01,"436 Pine St, San Francisco, CA 94016" +153312,Bose SoundSport Headphones,1,99.99,01/19/19 14:36,"935 2nd St, San Francisco, CA 94016" +153313,Wired Headphones,1,11.99,01/07/19 16:38,"99 4th St, Seattle, WA 98101" +153314,ThinkPad Laptop,1,999.99,01/08/19 18:26,"976 Jackson St, Portland, OR 97035" +153315,USB-C Charging Cable,1,11.95,01/14/19 18:36,"741 Pine St, San Francisco, CA 94016" +153316,AA Batteries (4-pack),1,3.84,01/20/19 12:00,"984 Highland St, San Francisco, CA 94016" +153317,Vareebadd Phone,1,400,01/17/19 11:43,"546 West St, Dallas, TX 75001" +153318,AAA Batteries (4-pack),2,2.99,01/14/19 00:29,"657 Lakeview St, New York City, NY 10001" +153319,Lightning Charging Cable,1,14.95,01/09/19 09:39,"503 13th St, New York City, NY 10001" +153320,Lightning Charging Cable,1,14.95,01/14/19 17:47,"574 5th St, Atlanta, GA 30301" +153321,USB-C Charging Cable,1,11.95,01/15/19 19:44,"884 Jefferson St, Austin, TX 73301" +153322,27in 4K Gaming Monitor,1,389.99,01/02/19 22:43,"193 14th St, Seattle, WA 98101" +153323,iPhone,1,700,01/30/19 15:39,"330 Wilson St, San Francisco, CA 94016" +153324,27in FHD Monitor,1,149.99,01/15/19 19:49,"341 Cherry St, Austin, TX 73301" +153325,LG Washing Machine,1,600.0,01/16/19 13:21,"936 Pine St, Austin, TX 73301" +153326,Wired Headphones,1,11.99,01/11/19 22:49,"620 6th St, Los Angeles, CA 90001" +153327,ThinkPad Laptop,1,999.99,01/03/19 11:41,"139 Adams St, Portland, OR 97035" +153328,AA Batteries (4-pack),1,3.84,01/31/19 15:05,"314 4th St, Boston, MA 02215" +153329,AAA Batteries (4-pack),2,2.99,01/03/19 19:58,"333 1st St, San Francisco, CA 94016" +153330,27in FHD Monitor,1,149.99,01/14/19 10:38,"242 Madison St, Dallas, TX 75001" +153331,Bose SoundSport Headphones,1,99.99,01/07/19 18:14,"744 1st St, Atlanta, GA 30301" +153332,27in 4K Gaming Monitor,1,389.99,01/17/19 07:19,"982 Jefferson St, Dallas, TX 75001" +153333,34in Ultrawide Monitor,1,379.99,01/18/19 07:13,"709 Adams St, San Francisco, CA 94016" +153334,Apple Airpods Headphones,1,150,01/08/19 18:14,"549 Center St, Los Angeles, CA 90001" +153335,Flatscreen TV,1,300,01/06/19 08:52,"325 Madison St, San Francisco, CA 94016" +153335,20in Monitor,1,109.99,01/06/19 08:52,"325 Madison St, San Francisco, CA 94016" +153336,34in Ultrawide Monitor,1,379.99,01/02/19 16:24,"719 Johnson St, New York City, NY 10001" +153337,Lightning Charging Cable,1,14.95,01/01/19 20:59,"519 Lake St, New York City, NY 10001" +153338,iPhone,1,700,01/14/19 12:03,"310 Hill St, Dallas, TX 75001" +153339,Wired Headphones,1,11.99,01/28/19 00:23,"155 North St, Boston, MA 02215" +153340,Flatscreen TV,1,300,01/28/19 14:46,"340 Cherry St, San Francisco, CA 94016" +153341,Lightning Charging Cable,1,14.95,01/05/19 18:13,"376 Cherry St, Seattle, WA 98101" +153342,27in 4K Gaming Monitor,1,389.99,01/13/19 15:18,"987 Highland St, Austin, TX 73301" +153343,27in 4K Gaming Monitor,1,389.99,01/02/19 09:29,"427 4th St, San Francisco, CA 94016" +153344,AAA Batteries (4-pack),3,2.99,01/03/19 12:35,"223 Washington St, Boston, MA 02215" +153345,Lightning Charging Cable,1,14.95,01/29/19 11:26,"984 11th St, San Francisco, CA 94016" +153346,Wired Headphones,1,11.99,01/01/19 23:41,"325 Lakeview St, Portland, OR 97035" +153346,AAA Batteries (4-pack),2,2.99,01/01/19 23:41,"325 Lakeview St, Portland, OR 97035" +153347,34in Ultrawide Monitor,1,379.99,01/09/19 21:28,"166 Jackson St, Boston, MA 02215" +153348,Apple Airpods Headphones,1,150,01/24/19 15:05,"577 Forest St, Boston, MA 02215" +153349,ThinkPad Laptop,1,999.99,01/27/19 21:55,"890 Hickory St, Boston, MA 02215" +153350,AAA Batteries (4-pack),1,2.99,01/07/19 12:15,"460 South St, San Francisco, CA 94016" +153351,Lightning Charging Cable,1,14.95,01/11/19 18:49,"935 Elm St, Los Angeles, CA 90001" +153352,Google Phone,1,600,01/01/19 15:59,"393 Washington St, Los Angeles, CA 90001" +153353,AAA Batteries (4-pack),1,2.99,01/25/19 12:05,"23 Sunset St, San Francisco, CA 94016" +153354,Wired Headphones,1,11.99,01/13/19 19:12,"854 Pine St, Portland, OR 97035" +153355,AAA Batteries (4-pack),1,2.99,01/19/19 22:20,"616 8th St, Seattle, WA 98101" +153356,Google Phone,1,600,01/21/19 06:01,"402 1st St, Atlanta, GA 30301" +153357,34in Ultrawide Monitor,1,379.99,01/28/19 11:19,"630 Chestnut St, New York City, NY 10001" +153358,27in 4K Gaming Monitor,1,389.99,01/29/19 16:54,"269 14th St, Seattle, WA 98101" +153359,Bose SoundSport Headphones,1,99.99,01/29/19 12:11,"403 13th St, New York City, NY 10001" +153360,34in Ultrawide Monitor,1,379.99,01/21/19 17:31,"668 Pine St, New York City, NY 10001" +153361,AA Batteries (4-pack),2,3.84,01/20/19 18:53,"527 Forest St, Seattle, WA 98101" +153362,AA Batteries (4-pack),1,3.84,01/07/19 18:26,"727 Forest St, San Francisco, CA 94016" +153363,34in Ultrawide Monitor,1,379.99,01/01/19 11:35,"890 9th St, Dallas, TX 75001" +153364,ThinkPad Laptop,1,999.99,01/30/19 20:10,"890 Sunset St, San Francisco, CA 94016" +153365,AAA Batteries (4-pack),2,2.99,01/20/19 03:08,"900 Adams St, Seattle, WA 98101" +153366,Wired Headphones,1,11.99,01/21/19 10:20,"133 10th St, Boston, MA 02215" +153367,AAA Batteries (4-pack),1,2.99,01/05/19 14:17,"735 Pine St, San Francisco, CA 94016" +153368,AA Batteries (4-pack),1,3.84,01/06/19 20:29,"687 River St, New York City, NY 10001" +153369,USB-C Charging Cable,1,11.95,01/09/19 22:30,"106 Elm St, Los Angeles, CA 90001" +153370,34in Ultrawide Monitor,1,379.99,01/29/19 21:12,"432 Madison St, Boston, MA 02215" +153371,AA Batteries (4-pack),1,3.84,01/25/19 12:32,"83 Madison St, Dallas, TX 75001" +153372,Apple Airpods Headphones,1,150,01/02/19 12:47,"941 River St, Los Angeles, CA 90001" +153373,AAA Batteries (4-pack),1,2.99,01/06/19 14:34,"807 Highland St, Austin, TX 73301" +153374,Flatscreen TV,1,300,01/25/19 19:49,"862 Forest St, Dallas, TX 75001" +153375,Apple Airpods Headphones,1,150,01/07/19 14:09,"577 2nd St, Seattle, WA 98101" +153376,Lightning Charging Cable,1,14.95,01/05/19 09:23,"4 14th St, Dallas, TX 75001" +153377,AA Batteries (4-pack),1,3.84,01/23/19 20:33,"646 Elm St, New York City, NY 10001" +153378,Bose SoundSport Headphones,1,99.99,01/27/19 20:46,"298 North St, Atlanta, GA 30301" +153379,27in FHD Monitor,1,149.99,01/08/19 19:24,"827 Forest St, Austin, TX 73301" +153380,Apple Airpods Headphones,1,150,01/04/19 19:35,"928 Jefferson St, Austin, TX 73301" +153381,USB-C Charging Cable,1,11.95,01/22/19 20:25,"222 Maple St, San Francisco, CA 94016" +153382,Bose SoundSport Headphones,1,99.99,01/04/19 18:31,"247 12th St, Dallas, TX 75001" +153383,Wired Headphones,1,11.99,01/22/19 11:08,"594 Spruce St, Atlanta, GA 30301" +153384,AA Batteries (4-pack),1,3.84,01/18/19 18:14,"882 Washington St, San Francisco, CA 94016" +153385,Lightning Charging Cable,1,14.95,01/21/19 09:23,"965 12th St, Seattle, WA 98101" +153386,AA Batteries (4-pack),2,3.84,01/12/19 14:24,"858 Ridge St, New York City, NY 10001" +153387,Wired Headphones,1,11.99,01/29/19 15:06,"77 10th St, San Francisco, CA 94016" +153388,Bose SoundSport Headphones,1,99.99,01/17/19 10:45,"622 Sunset St, Los Angeles, CA 90001" +153389,LG Dryer,1,600.0,01/31/19 21:49,"508 Meadow St, Boston, MA 02215" +153390,AA Batteries (4-pack),1,3.84,01/23/19 14:44,"961 Madison St, San Francisco, CA 94016" +,,,,, +153391,AAA Batteries (4-pack),1,2.99,01/18/19 14:50,"763 Church St, Los Angeles, CA 90001" +153392,Bose SoundSport Headphones,1,99.99,01/13/19 09:50,"918 14th St, Atlanta, GA 30301" +153393,AAA Batteries (4-pack),2,2.99,01/03/19 16:07,"806 Spruce St, Dallas, TX 75001" +153394,Lightning Charging Cable,1,14.95,01/24/19 16:09,"37 4th St, New York City, NY 10001" +153395,27in 4K Gaming Monitor,1,389.99,01/19/19 01:12,"876 Hickory St, Atlanta, GA 30301" +153396,USB-C Charging Cable,1,11.95,01/31/19 13:24,"538 Chestnut St, Boston, MA 02215" +153397,USB-C Charging Cable,1,11.95,01/26/19 23:00,"119 Lakeview St, New York City, NY 10001" +153397,Lightning Charging Cable,1,14.95,01/26/19 23:00,"119 Lakeview St, New York City, NY 10001" +153398,Macbook Pro Laptop,1,1700,01/25/19 14:38,"792 Main St, Austin, TX 73301" +153399,27in FHD Monitor,1,149.99,01/18/19 00:12,"840 9th St, San Francisco, CA 94016" +153400,USB-C Charging Cable,1,11.95,01/10/19 20:44,"849 Johnson St, Seattle, WA 98101" +153401,Macbook Pro Laptop,1,1700,01/16/19 11:38,"81 Forest St, Boston, MA 02215" +153402,ThinkPad Laptop,1,999.99,01/22/19 18:15,"536 Forest St, Austin, TX 73301" +153403,AA Batteries (4-pack),1,3.84,01/01/19 21:21,"228 Jefferson St, San Francisco, CA 94016" +153404,AAA Batteries (4-pack),1,2.99,01/16/19 15:02,"888 1st St, New York City, NY 10001" +153405,34in Ultrawide Monitor,1,379.99,01/16/19 20:11,"490 Johnson St, Los Angeles, CA 90001" +153406,Wired Headphones,1,11.99,01/13/19 08:33,"254 Lakeview St, San Francisco, CA 94016" +153407,AA Batteries (4-pack),3,3.84,01/29/19 14:38,"330 8th St, New York City, NY 10001" +153408,Lightning Charging Cable,1,14.95,01/25/19 02:54,"967 14th St, Seattle, WA 98101" +153409,Wired Headphones,1,11.99,01/16/19 15:40,"82 10th St, Austin, TX 73301" +153410,20in Monitor,1,109.99,01/01/19 07:30,"966 Washington St, Austin, TX 73301" +153411,AA Batteries (4-pack),1,3.84,01/26/19 10:53,"575 6th St, Seattle, WA 98101" +153412,AA Batteries (4-pack),1,3.84,01/15/19 21:29,"247 9th St, Seattle, WA 98101" +153413,Wired Headphones,1,11.99,01/31/19 10:01,"457 Center St, Austin, TX 73301" +153414,Flatscreen TV,1,300,01/17/19 13:34,"905 6th St, Dallas, TX 75001" +153415,27in FHD Monitor,1,149.99,01/19/19 19:01,"703 River St, Portland, OR 97035" +153416,Lightning Charging Cable,2,14.95,01/24/19 14:19,"798 Johnson St, Dallas, TX 75001" +153417,Lightning Charging Cable,1,14.95,01/03/19 23:33,"175 Forest St, San Francisco, CA 94016" +153418,Flatscreen TV,1,300,01/15/19 09:39,"491 12th St, San Francisco, CA 94016" +153419,iPhone,1,700,01/17/19 00:05,"459 Main St, San Francisco, CA 94016" +153420,Bose SoundSport Headphones,1,99.99,01/16/19 16:22,"826 Forest St, Los Angeles, CA 90001" +153421,27in 4K Gaming Monitor,1,389.99,01/10/19 09:56,"569 Cherry St, Dallas, TX 75001" +153422,Lightning Charging Cable,1,14.95,01/01/19 11:25,"531 Lakeview St, San Francisco, CA 94016" +153423,AAA Batteries (4-pack),1,2.99,01/08/19 18:49,"873 Forest St, San Francisco, CA 94016" +153424,USB-C Charging Cable,1,11.95,01/27/19 13:54,"695 7th St, San Francisco, CA 94016" +153425,Macbook Pro Laptop,1,1700,01/16/19 09:13,"244 Jackson St, Boston, MA 02215" +153426,Macbook Pro Laptop,1,1700,01/05/19 17:29,"39 8th St, Atlanta, GA 30301" +153427,27in FHD Monitor,1,149.99,01/11/19 19:34,"799 Dogwood St, Los Angeles, CA 90001" +153428,AAA Batteries (4-pack),1,2.99,01/20/19 10:17,"999 Washington St, Los Angeles, CA 90001" +153429,Wired Headphones,1,11.99,01/30/19 20:44,"523 Lakeview St, San Francisco, CA 94016" +153430,Macbook Pro Laptop,1,1700,01/09/19 13:20,"821 6th St, New York City, NY 10001" +153430,Apple Airpods Headphones,1,150,01/09/19 13:20,"821 6th St, New York City, NY 10001" +153431,Apple Airpods Headphones,1,150,01/09/19 21:55,"685 7th St, Portland, OR 97035" +153432,Lightning Charging Cable,1,14.95,01/11/19 18:46,"816 13th St, Boston, MA 02215" +153433,Bose SoundSport Headphones,1,99.99,01/14/19 14:17,"696 Jefferson St, Los Angeles, CA 90001" +153434,Flatscreen TV,1,300,01/19/19 11:08,"860 Cherry St, San Francisco, CA 94016" +153435,USB-C Charging Cable,1,11.95,01/22/19 14:25,"101 Hill St, Boston, MA 02215" +153436,AA Batteries (4-pack),2,3.84,01/30/19 17:32,"262 Church St, San Francisco, CA 94016" +153437,Apple Airpods Headphones,1,150,01/21/19 08:30,"913 5th St, San Francisco, CA 94016" +153438,AA Batteries (4-pack),1,3.84,01/23/19 17:11,"807 Pine St, Austin, TX 73301" +153439,Wired Headphones,1,11.99,01/24/19 18:58,"723 Meadow St, San Francisco, CA 94016" +153440,Lightning Charging Cable,1,14.95,01/26/19 20:16,"337 7th St, New York City, NY 10001" +153441,20in Monitor,1,109.99,01/26/19 19:48,"105 12th St, Dallas, TX 75001" +153442,AA Batteries (4-pack),1,3.84,01/03/19 10:57,"301 Forest St, Portland, OR 97035" +153443,USB-C Charging Cable,1,11.95,01/30/19 15:55,"40 5th St, Dallas, TX 75001" +153444,AAA Batteries (4-pack),2,2.99,01/25/19 19:51,"520 Ridge St, Atlanta, GA 30301" +153445,Lightning Charging Cable,1,14.95,01/06/19 09:14,"853 Dogwood St, Atlanta, GA 30301" +153446,Wired Headphones,1,11.99,01/05/19 00:49,"473 Sunset St, San Francisco, CA 94016" +153447,Apple Airpods Headphones,1,150,01/28/19 20:33,"157 8th St, Atlanta, GA 30301" +153448,Lightning Charging Cable,2,14.95,01/25/19 12:14,"438 9th St, Los Angeles, CA 90001" +153449,iPhone,1,700,01/10/19 16:07,"232 4th St, Portland, ME 04101" +153450,Flatscreen TV,1,300,01/12/19 13:54,"580 6th St, New York City, NY 10001" +153451,USB-C Charging Cable,1,11.95,01/08/19 15:12,"920 Hill St, San Francisco, CA 94016" +153452,USB-C Charging Cable,1,11.95,01/06/19 02:18,"84 4th St, Los Angeles, CA 90001" +153453,34in Ultrawide Monitor,1,379.99,01/18/19 14:36,"769 9th St, Los Angeles, CA 90001" +153454,Macbook Pro Laptop,1,1700,01/15/19 11:16,"123 Dogwood St, New York City, NY 10001" +153455,USB-C Charging Cable,1,11.95,01/02/19 18:36,"202 11th St, Boston, MA 02215" +153456,Wired Headphones,1,11.99,01/29/19 23:00,"477 8th St, Los Angeles, CA 90001" +153457,AA Batteries (4-pack),1,3.84,01/15/19 16:49,"607 7th St, San Francisco, CA 94016" +153458,Flatscreen TV,1,300,01/30/19 11:35,"249 Sunset St, San Francisco, CA 94016" +153459,Apple Airpods Headphones,1,150,01/13/19 09:53,"320 Wilson St, San Francisco, CA 94016" +153460,AA Batteries (4-pack),1,3.84,01/17/19 14:42,"829 Main St, San Francisco, CA 94016" +153461,Lightning Charging Cable,2,14.95,01/11/19 18:03,"963 Lake St, Seattle, WA 98101" +153462,20in Monitor,1,109.99,01/06/19 17:52,"18 Jackson St, New York City, NY 10001" +153463,AA Batteries (4-pack),1,3.84,01/05/19 14:29,"620 North St, Austin, TX 73301" +153464,AAA Batteries (4-pack),2,2.99,01/23/19 22:19,"807 13th St, New York City, NY 10001" +153465,Lightning Charging Cable,1,14.95,01/15/19 06:24,"30 Lincoln St, New York City, NY 10001" +153466,AAA Batteries (4-pack),1,2.99,01/11/19 21:38,"527 Lakeview St, Los Angeles, CA 90001" +153467,iPhone,1,700,01/06/19 23:51,"512 Main St, Los Angeles, CA 90001" +153468,Wired Headphones,1,11.99,01/28/19 21:27,"28 Washington St, Los Angeles, CA 90001" +153469,Apple Airpods Headphones,1,150,01/24/19 10:49,"731 5th St, Seattle, WA 98101" +153470,Lightning Charging Cable,1,14.95,01/24/19 18:58,"919 Chestnut St, Atlanta, GA 30301" +153471,27in 4K Gaming Monitor,1,389.99,01/07/19 21:07,"365 Ridge St, Boston, MA 02215" +153472,Lightning Charging Cable,1,14.95,01/24/19 12:14,"262 Sunset St, Portland, ME 04101" +153473,Macbook Pro Laptop,1,1700,01/11/19 22:26,"529 5th St, Portland, OR 97035" +153474,AA Batteries (4-pack),1,3.84,01/11/19 18:31,"973 Cedar St, San Francisco, CA 94016" +153475,AA Batteries (4-pack),1,3.84,01/01/19 11:27,"239 Ridge St, New York City, NY 10001" +153476,27in 4K Gaming Monitor,1,389.99,01/12/19 17:58,"911 Elm St, Atlanta, GA 30301" +153477,Vareebadd Phone,1,400,01/19/19 19:23,"383 Maple St, Portland, OR 97035" +153477,Wired Headphones,1,11.99,01/19/19 19:23,"383 Maple St, Portland, OR 97035" +153478,20in Monitor,1,109.99,01/02/19 19:12,"878 Church St, Los Angeles, CA 90001" +153479,27in FHD Monitor,1,149.99,01/22/19 16:57,"476 Pine St, Boston, MA 02215" +153480,20in Monitor,1,109.99,01/24/19 14:06,"222 Ridge St, Boston, MA 02215" +153481,34in Ultrawide Monitor,1,379.99,01/05/19 18:46,"133 Maple St, Portland, OR 97035" +153482,27in FHD Monitor,1,149.99,01/18/19 21:09,"739 Highland St, Los Angeles, CA 90001" +153483,Wired Headphones,1,11.99,01/21/19 13:28,"839 Cherry St, Seattle, WA 98101" +153484,Wired Headphones,1,11.99,01/27/19 18:35,"710 12th St, Atlanta, GA 30301" +153485,Bose SoundSport Headphones,1,99.99,01/29/19 16:24,"11 8th St, Boston, MA 02215" +153486,34in Ultrawide Monitor,1,379.99,01/29/19 12:06,"779 Hill St, New York City, NY 10001" +153487,Vareebadd Phone,1,400,01/12/19 14:45,"332 Jackson St, Boston, MA 02215" +153488,Flatscreen TV,1,300,01/10/19 10:04,"221 5th St, Seattle, WA 98101" +153489,Wired Headphones,1,11.99,01/31/19 16:01,"498 13th St, Los Angeles, CA 90001" +153490,Macbook Pro Laptop,1,1700,01/02/19 08:55,"668 Jefferson St, Atlanta, GA 30301" +153491,Apple Airpods Headphones,1,150,01/10/19 15:57,"310 Forest St, San Francisco, CA 94016" +153491,20in Monitor,1,109.99,01/10/19 15:57,"310 Forest St, San Francisco, CA 94016" +153492,Lightning Charging Cable,1,14.95,01/04/19 14:09,"778 2nd St, Los Angeles, CA 90001" +153493,AAA Batteries (4-pack),1,2.99,01/13/19 21:07,"772 Wilson St, Portland, OR 97035" +153494,Google Phone,1,600,01/20/19 15:16,"236 2nd St, Dallas, TX 75001" +153495,ThinkPad Laptop,1,999.99,01/24/19 12:04,"245 Sunset St, Boston, MA 02215" +153496,Bose SoundSport Headphones,1,99.99,01/11/19 14:16,"98 2nd St, New York City, NY 10001" +153497,34in Ultrawide Monitor,1,379.99,01/11/19 19:26,"46 Cherry St, San Francisco, CA 94016" +153498,AAA Batteries (4-pack),1,2.99,01/04/19 22:08,"454 Dogwood St, Seattle, WA 98101" +153499,Wired Headphones,1,11.99,01/29/19 10:03,"217 Washington St, San Francisco, CA 94016" +153500,Apple Airpods Headphones,1,150,01/09/19 03:15,"557 Lincoln St, Dallas, TX 75001" +153501,Lightning Charging Cable,1,14.95,01/07/19 20:47,"518 Park St, Dallas, TX 75001" +153502,AA Batteries (4-pack),1,3.84,01/14/19 15:31,"187 Johnson St, Los Angeles, CA 90001" +153503,Wired Headphones,1,11.99,01/26/19 01:51,"747 Jackson St, New York City, NY 10001" +153504,AAA Batteries (4-pack),2,2.99,01/29/19 10:44,"879 2nd St, Portland, OR 97035" +153505,Vareebadd Phone,1,400,01/01/19 17:37,"267 River St, New York City, NY 10001" +153506,Macbook Pro Laptop,1,1700,01/30/19 12:10,"390 West St, Dallas, TX 75001" +153507,Macbook Pro Laptop,1,1700,01/03/19 12:31,"526 Walnut St, San Francisco, CA 94016" +153508,Lightning Charging Cable,1,14.95,01/14/19 12:18,"987 Spruce St, Boston, MA 02215" +153509,27in 4K Gaming Monitor,1,389.99,01/23/19 19:32,"306 Cherry St, Los Angeles, CA 90001" +153510,AA Batteries (4-pack),1,3.84,01/23/19 05:07,"704 Lake St, Boston, MA 02215" +153511,Bose SoundSport Headphones,1,99.99,01/01/19 18:41,"915 Main St, Dallas, TX 75001" +153512,Bose SoundSport Headphones,1,99.99,01/09/19 16:21,"10 13th St, Los Angeles, CA 90001" +153513,AA Batteries (4-pack),2,3.84,01/31/19 11:51,"671 Ridge St, Dallas, TX 75001" +153514,AAA Batteries (4-pack),1,2.99,01/17/19 14:59,"537 Elm St, Portland, ME 04101" +153515,Wired Headphones,1,11.99,01/23/19 10:31,"337 Maple St, Dallas, TX 75001" +153516,Bose SoundSport Headphones,1,99.99,01/17/19 21:38,"687 Park St, San Francisco, CA 94016" +153517,34in Ultrawide Monitor,1,379.99,01/15/19 09:49,"934 Ridge St, San Francisco, CA 94016" +153517,27in 4K Gaming Monitor,1,389.99,01/15/19 09:49,"934 Ridge St, San Francisco, CA 94016" +153518,USB-C Charging Cable,1,11.95,01/19/19 19:30,"820 Lake St, Los Angeles, CA 90001" +153519,iPhone,1,700,01/22/19 10:21,"66 Sunset St, Austin, TX 73301" +153519,Lightning Charging Cable,1,14.95,01/22/19 10:21,"66 Sunset St, Austin, TX 73301" +153520,Apple Airpods Headphones,1,150,01/19/19 12:49,"901 Lakeview St, Atlanta, GA 30301" +153521,Vareebadd Phone,1,400,01/13/19 01:31,"128 Johnson St, Portland, ME 04101" +153522,iPhone,1,700,01/27/19 21:23,"648 9th St, Los Angeles, CA 90001" +153523,Apple Airpods Headphones,1,150,01/09/19 21:14,"285 Cherry St, Austin, TX 73301" +153524,27in 4K Gaming Monitor,1,389.99,01/04/19 23:54,"979 1st St, San Francisco, CA 94016" +153525,AAA Batteries (4-pack),1,2.99,01/13/19 17:22,"624 Maple St, Boston, MA 02215" +153526,27in FHD Monitor,1,149.99,01/13/19 19:35,"308 Lakeview St, San Francisco, CA 94016" +153527,AAA Batteries (4-pack),1,2.99,01/10/19 09:09,"164 4th St, San Francisco, CA 94016" +153528,Flatscreen TV,1,300,01/14/19 18:54,"693 West St, San Francisco, CA 94016" +153529,USB-C Charging Cable,1,11.95,01/08/19 08:58,"905 River St, Boston, MA 02215" +153530,Bose SoundSport Headphones,1,99.99,01/29/19 19:03,"266 Hill St, Boston, MA 02215" +153531,USB-C Charging Cable,1,11.95,01/14/19 19:15,"696 Wilson St, New York City, NY 10001" +153532,Wired Headphones,2,11.99,01/22/19 17:09,"453 6th St, Los Angeles, CA 90001" +153533,20in Monitor,1,109.99,01/07/19 20:32,"831 Adams St, San Francisco, CA 94016" +153534,AAA Batteries (4-pack),1,2.99,01/10/19 20:06,"133 Forest St, San Francisco, CA 94016" +153535,20in Monitor,1,109.99,01/15/19 15:29,"346 North St, Boston, MA 02215" +153536,Lightning Charging Cable,1,14.95,01/24/19 20:06,"648 1st St, Portland, OR 97035" +153537,ThinkPad Laptop,1,999.99,01/13/19 21:45,"460 Dogwood St, Los Angeles, CA 90001" +153538,27in 4K Gaming Monitor,1,389.99,01/31/19 15:49,"993 9th St, Portland, OR 97035" +153539,Lightning Charging Cable,1,14.95,01/26/19 08:42,"713 Madison St, Seattle, WA 98101" +153540,AAA Batteries (4-pack),1,2.99,01/27/19 10:19,"291 River St, Los Angeles, CA 90001" +153541,AAA Batteries (4-pack),1,2.99,01/16/19 23:13,"532 Elm St, San Francisco, CA 94016" +153542,Bose SoundSport Headphones,1,99.99,01/08/19 11:05,"799 Jefferson St, Atlanta, GA 30301" +153543,20in Monitor,1,109.99,01/07/19 14:15,"595 Ridge St, Los Angeles, CA 90001" +153544,iPhone,1,700,01/24/19 19:38,"725 13th St, Portland, OR 97035" +153545,AAA Batteries (4-pack),1,2.99,01/30/19 15:46,"757 Willow St, Dallas, TX 75001" +153546,AA Batteries (4-pack),1,3.84,01/05/19 01:40,"708 Chestnut St, San Francisco, CA 94016" +153547,AA Batteries (4-pack),1,3.84,01/17/19 13:50,"398 South St, Los Angeles, CA 90001" +153548,Lightning Charging Cable,1,14.95,01/11/19 11:43,"954 Highland St, Boston, MA 02215" +153549,Apple Airpods Headphones,1,150,01/05/19 09:40,"73 6th St, New York City, NY 10001" +153550,Google Phone,1,600,01/12/19 01:00,"792 7th St, Los Angeles, CA 90001" +153551,AA Batteries (4-pack),1,3.84,01/26/19 13:26,"136 13th St, San Francisco, CA 94016" +153552,AAA Batteries (4-pack),1,2.99,01/22/19 22:38,"872 North St, San Francisco, CA 94016" +153553,20in Monitor,1,109.99,01/02/19 21:53,"531 Sunset St, Portland, OR 97035" +153554,ThinkPad Laptop,1,999.99,01/18/19 23:57,"580 Cedar St, Portland, OR 97035" +153555,Bose SoundSport Headphones,1,99.99,01/06/19 01:01,"70 North St, Portland, OR 97035" +153556,Wired Headphones,1,11.99,01/05/19 15:45,"325 Main St, New York City, NY 10001" +153557,20in Monitor,1,109.99,01/25/19 20:36,"565 8th St, Los Angeles, CA 90001" +153558,USB-C Charging Cable,1,11.95,01/24/19 21:45,"135 Jackson St, Los Angeles, CA 90001" +153559,27in FHD Monitor,1,149.99,01/24/19 14:53,"594 13th St, New York City, NY 10001" +153560,AA Batteries (4-pack),1,3.84,01/05/19 18:47,"620 Dogwood St, Seattle, WA 98101" +153561,Lightning Charging Cable,1,14.95,01/29/19 13:13,"949 11th St, Los Angeles, CA 90001" +153562,Lightning Charging Cable,1,14.95,01/20/19 16:36,"71 8th St, Portland, OR 97035" +153563,Bose SoundSport Headphones,1,99.99,01/03/19 12:12,"164 Sunset St, San Francisco, CA 94016" +153564,Vareebadd Phone,1,400,01/04/19 12:16,"353 Adams St, Boston, MA 02215" +153564,USB-C Charging Cable,1,11.95,01/04/19 12:16,"353 Adams St, Boston, MA 02215" +153565,AA Batteries (4-pack),1,3.84,01/21/19 14:26,"405 Hill St, Portland, OR 97035" +153566,USB-C Charging Cable,1,11.95,01/16/19 12:58,"620 Washington St, Los Angeles, CA 90001" +153567,AAA Batteries (4-pack),1,2.99,01/11/19 15:11,"947 12th St, Dallas, TX 75001" +153568,27in 4K Gaming Monitor,1,389.99,01/20/19 12:15,"402 Hill St, Dallas, TX 75001" +153569,AAA Batteries (4-pack),1,2.99,01/13/19 18:47,"417 13th St, Atlanta, GA 30301" +153570,Wired Headphones,1,11.99,01/24/19 13:45,"760 Sunset St, Atlanta, GA 30301" +153571,USB-C Charging Cable,1,11.95,01/30/19 11:16,"520 8th St, San Francisco, CA 94016" +153572,Lightning Charging Cable,1,14.95,01/18/19 22:14,"112 Ridge St, Los Angeles, CA 90001" +153573,Lightning Charging Cable,1,14.95,01/14/19 09:58,"558 Center St, Boston, MA 02215" +153574,34in Ultrawide Monitor,1,379.99,01/25/19 17:44,"689 Elm St, San Francisco, CA 94016" +153575,27in FHD Monitor,1,149.99,01/05/19 10:32,"61 Dogwood St, Boston, MA 02215" +153576,Apple Airpods Headphones,1,150,01/25/19 09:23,"259 Willow St, Atlanta, GA 30301" +153577,USB-C Charging Cable,1,11.95,01/05/19 06:41,"569 Jackson St, Boston, MA 02215" +153578,Apple Airpods Headphones,1,150,01/26/19 14:41,"580 Adams St, Portland, OR 97035" +153579,AA Batteries (4-pack),1,3.84,01/30/19 19:14,"893 12th St, Boston, MA 02215" +153580,AA Batteries (4-pack),1,3.84,01/25/19 13:38,"602 Willow St, Los Angeles, CA 90001" +153581,Lightning Charging Cable,1,14.95,01/15/19 18:50,"519 7th St, Seattle, WA 98101" +153582,Google Phone,1,600,01/08/19 05:41,"971 10th St, Portland, ME 04101" +153582,Lightning Charging Cable,1,14.95,01/08/19 05:41,"971 10th St, Portland, ME 04101" +153583,Flatscreen TV,1,300,01/07/19 15:20,"725 South St, Austin, TX 73301" +153584,USB-C Charging Cable,1,11.95,01/21/19 08:42,"414 Washington St, New York City, NY 10001" +153585,Apple Airpods Headphones,1,150,01/08/19 23:14,"307 Willow St, New York City, NY 10001" +153586,Wired Headphones,1,11.99,01/23/19 22:36,"765 5th St, New York City, NY 10001" +153587,Google Phone,1,600,01/04/19 23:00,"252 Maple St, Boston, MA 02215" +153588,AA Batteries (4-pack),3,3.84,01/20/19 18:34,"153 14th St, New York City, NY 10001" +153589,Macbook Pro Laptop,1,1700,01/19/19 10:57,"805 Elm St, Los Angeles, CA 90001" +153590,Lightning Charging Cable,1,14.95,01/02/19 06:49,"172 Cedar St, Dallas, TX 75001" +153591,AAA Batteries (4-pack),2,2.99,01/03/19 12:16,"460 5th St, Seattle, WA 98101" +153592,AA Batteries (4-pack),1,3.84,01/13/19 20:22,"491 5th St, Boston, MA 02215" +153593,USB-C Charging Cable,1,11.95,01/01/19 17:40,"78 Forest St, San Francisco, CA 94016" +153594,Macbook Pro Laptop,1,1700,01/17/19 11:01,"608 Johnson St, Los Angeles, CA 90001" +153595,Bose SoundSport Headphones,1,99.99,01/18/19 12:23,"595 Forest St, San Francisco, CA 94016" +153596,Lightning Charging Cable,1,14.95,01/11/19 17:43,"636 Main St, Boston, MA 02215" +153597,AAA Batteries (4-pack),1,2.99,01/06/19 23:24,"494 Cedar St, Atlanta, GA 30301" +153598,AA Batteries (4-pack),1,3.84,01/17/19 18:00,"730 7th St, Seattle, WA 98101" +153599,Lightning Charging Cable,1,14.95,01/04/19 15:04,"933 11th St, Seattle, WA 98101" +153600,AAA Batteries (4-pack),1,2.99,01/30/19 19:13,"75 Park St, San Francisco, CA 94016" +153601,USB-C Charging Cable,1,11.95,01/08/19 00:14,"29 12th St, New York City, NY 10001" +,,,,, +153602,Lightning Charging Cable,1,14.95,01/22/19 11:55,"866 7th St, Portland, OR 97035" +153603,Apple Airpods Headphones,1,150,01/01/19 13:53,"268 Cedar St, Los Angeles, CA 90001" +153604,20in Monitor,1,109.99,01/01/19 13:36,"9 8th St, San Francisco, CA 94016" +153605,Lightning Charging Cable,1,14.95,01/18/19 10:34,"349 Main St, San Francisco, CA 94016" +153606,AA Batteries (4-pack),1,3.84,01/11/19 13:54,"639 Elm St, San Francisco, CA 94016" +153607,Lightning Charging Cable,1,14.95,01/24/19 14:51,"984 Pine St, New York City, NY 10001" +153608,Bose SoundSport Headphones,1,99.99,01/22/19 20:38,"274 5th St, Boston, MA 02215" +153609,34in Ultrawide Monitor,1,379.99,01/12/19 10:33,"832 Chestnut St, San Francisco, CA 94016" +153610,Flatscreen TV,1,300,01/13/19 22:29,"256 South St, Atlanta, GA 30301" +153611,AA Batteries (4-pack),1,3.84,01/21/19 00:51,"701 4th St, Seattle, WA 98101" +153612,Apple Airpods Headphones,1,150,01/13/19 13:35,"960 Spruce St, San Francisco, CA 94016" +153613,AA Batteries (4-pack),3,3.84,01/06/19 08:52,"607 Lakeview St, New York City, NY 10001" +153614,AAA Batteries (4-pack),1,2.99,01/10/19 20:30,"394 Forest St, Boston, MA 02215" +153615,Flatscreen TV,1,300,01/08/19 13:50,"986 14th St, Austin, TX 73301" +153616,27in 4K Gaming Monitor,1,389.99,01/26/19 13:33,"203 Willow St, Los Angeles, CA 90001" +153617,AA Batteries (4-pack),1,3.84,01/01/19 11:18,"334 Pine St, Dallas, TX 75001" +153618,LG Washing Machine,1,600.0,01/07/19 17:21,"313 Meadow St, Boston, MA 02215" +153619,34in Ultrawide Monitor,1,379.99,01/01/19 17:58,"747 11th St, San Francisco, CA 94016" +153620,Lightning Charging Cable,1,14.95,01/14/19 19:45,"892 Washington St, Los Angeles, CA 90001" +153621,Bose SoundSport Headphones,1,99.99,01/09/19 09:38,"699 9th St, San Francisco, CA 94016" +153622,ThinkPad Laptop,1,999.99,01/15/19 10:06,"978 11th St, Portland, OR 97035" +153623,Bose SoundSport Headphones,1,99.99,01/13/19 09:59,"925 Pine St, San Francisco, CA 94016" +153624,AA Batteries (4-pack),1,3.84,01/22/19 14:10,"269 Dogwood St, Atlanta, GA 30301" +153625,Lightning Charging Cable,1,14.95,01/01/19 17:36,"330 Chestnut St, Los Angeles, CA 90001" +153626,20in Monitor,1,109.99,01/16/19 13:09,"267 Lake St, Boston, MA 02215" +153627,Wired Headphones,1,11.99,01/22/19 22:09,"841 Jackson St, Los Angeles, CA 90001" +153628,34in Ultrawide Monitor,1,379.99,01/07/19 21:13,"804 Park St, New York City, NY 10001" +153629,ThinkPad Laptop,1,999.99,01/26/19 17:46,"402 River St, Boston, MA 02215" +153630,Apple Airpods Headphones,1,150,01/15/19 12:45,"995 Willow St, New York City, NY 10001" +153631,LG Washing Machine,1,600.0,01/09/19 09:49,"259 Pine St, New York City, NY 10001" +153632,LG Washing Machine,1,600.0,01/08/19 21:30,"873 8th St, Boston, MA 02215" +153633,iPhone,1,700,01/16/19 14:16,"501 12th St, Boston, MA 02215" +153634,34in Ultrawide Monitor,1,379.99,01/24/19 15:12,"146 Madison St, Boston, MA 02215" +153635,AA Batteries (4-pack),1,3.84,01/09/19 00:08,"550 10th St, San Francisco, CA 94016" +153636,Flatscreen TV,1,300,01/08/19 18:17,"446 Maple St, New York City, NY 10001" +153637,AA Batteries (4-pack),1,3.84,01/14/19 16:14,"353 Walnut St, New York City, NY 10001" +153638,27in FHD Monitor,1,149.99,01/22/19 17:43,"549 Center St, San Francisco, CA 94016" +153639,AA Batteries (4-pack),1,3.84,01/12/19 05:40,"898 7th St, New York City, NY 10001" +153640,Macbook Pro Laptop,1,1700,01/18/19 20:15,"314 Forest St, Portland, OR 97035" +153641,USB-C Charging Cable,1,11.95,01/05/19 22:50,"71 Forest St, Boston, MA 02215" +153642,Apple Airpods Headphones,1,150,01/24/19 15:37,"327 6th St, San Francisco, CA 94016" +153643,AAA Batteries (4-pack),1,2.99,01/02/19 12:16,"708 2nd St, Seattle, WA 98101" +,,,,, +153644,27in 4K Gaming Monitor,1,389.99,01/20/19 19:46,"778 Madison St, Los Angeles, CA 90001" +153645,Bose SoundSport Headphones,1,99.99,01/21/19 09:10,"211 11th St, Boston, MA 02215" +153646,Lightning Charging Cable,1,14.95,01/26/19 17:18,"976 Center St, San Francisco, CA 94016" +153647,Bose SoundSport Headphones,1,99.99,01/14/19 16:19,"437 10th St, San Francisco, CA 94016" +153648,USB-C Charging Cable,1,11.95,01/21/19 23:50,"407 Lake St, Dallas, TX 75001" +153649,Apple Airpods Headphones,1,150,01/05/19 00:19,"1 Walnut St, Los Angeles, CA 90001" +153650,Lightning Charging Cable,1,14.95,01/12/19 07:56,"190 Main St, Boston, MA 02215" +153651,27in FHD Monitor,1,149.99,01/15/19 16:56,"699 Lincoln St, Dallas, TX 75001" +153652,AA Batteries (4-pack),1,3.84,01/11/19 09:41,"501 Church St, Atlanta, GA 30301" +153653,USB-C Charging Cable,1,11.95,01/04/19 07:23,"69 Sunset St, Boston, MA 02215" +153654,Apple Airpods Headphones,1,150,01/08/19 20:16,"689 6th St, Los Angeles, CA 90001" +153655,AAA Batteries (4-pack),3,2.99,01/19/19 22:22,"897 2nd St, San Francisco, CA 94016" +153656,Lightning Charging Cable,1,14.95,01/14/19 14:13,"480 7th St, Dallas, TX 75001" +153657,AAA Batteries (4-pack),4,2.99,01/28/19 15:55,"853 Maple St, Boston, MA 02215" +153658,20in Monitor,1,109.99,01/20/19 08:20,"621 Willow St, Seattle, WA 98101" +,,,,, +153659,Wired Headphones,1,11.99,01/25/19 18:01,"637 Walnut St, Portland, OR 97035" +153660,AA Batteries (4-pack),2,3.84,01/02/19 09:16,"823 Wilson St, San Francisco, CA 94016" +153661,27in 4K Gaming Monitor,1,389.99,01/18/19 11:25,"873 Washington St, Atlanta, GA 30301" +153662,Macbook Pro Laptop,1,1700,01/04/19 02:27,"402 Lake St, Seattle, WA 98101" +153663,Flatscreen TV,1,300,01/09/19 12:01,"286 5th St, Austin, TX 73301" +153664,Bose SoundSport Headphones,1,99.99,01/12/19 13:20,"752 8th St, San Francisco, CA 94016" +153665,Wired Headphones,1,11.99,01/29/19 15:25,"531 Church St, San Francisco, CA 94016" +153666,Google Phone,1,600,01/30/19 16:13,"462 10th St, San Francisco, CA 94016" +153667,USB-C Charging Cable,1,11.95,01/13/19 15:42,"738 Hill St, Austin, TX 73301" +153668,AAA Batteries (4-pack),1,2.99,01/07/19 16:52,"65 1st St, Boston, MA 02215" +153669,AAA Batteries (4-pack),2,2.99,01/22/19 16:03,"612 Main St, San Francisco, CA 94016" +153670,Apple Airpods Headphones,1,150,01/12/19 17:48,"512 Highland St, New York City, NY 10001" +153671,Wired Headphones,1,11.99,01/11/19 03:49,"478 Elm St, Seattle, WA 98101" +153672,AA Batteries (4-pack),1,3.84,01/26/19 20:42,"514 Hill St, San Francisco, CA 94016" +153673,34in Ultrawide Monitor,1,379.99,01/30/19 21:05,"421 Wilson St, San Francisco, CA 94016" +153674,Wired Headphones,1,11.99,01/20/19 18:12,"321 11th St, Atlanta, GA 30301" +153675,Apple Airpods Headphones,1,150,01/08/19 21:04,"616 5th St, Portland, OR 97035" +153676,Lightning Charging Cable,1,14.95,01/05/19 19:56,"557 Cherry St, Boston, MA 02215" +153677,Lightning Charging Cable,1,14.95,01/13/19 18:52,"384 Jefferson St, Portland, OR 97035" +153678,AAA Batteries (4-pack),1,2.99,01/28/19 05:52,"521 Wilson St, Los Angeles, CA 90001" +153679,LG Washing Machine,1,600.0,01/19/19 19:56,"435 Church St, Los Angeles, CA 90001" +153680,iPhone,1,700,01/03/19 17:01,"114 Jefferson St, Boston, MA 02215" +153681,Wired Headphones,1,11.99,01/07/19 18:33,"663 6th St, Dallas, TX 75001" +153682,Lightning Charging Cable,1,14.95,01/05/19 20:34,"48 Forest St, Dallas, TX 75001" +153683,USB-C Charging Cable,1,11.95,01/20/19 12:34,"5 Church St, Los Angeles, CA 90001" +153684,AA Batteries (4-pack),1,3.84,01/10/19 16:49,"41 Church St, New York City, NY 10001" +153685,AAA Batteries (4-pack),1,2.99,01/02/19 14:36,"446 Adams St, Portland, OR 97035" +153686,Vareebadd Phone,1,400,01/04/19 10:57,"16 Hill St, New York City, NY 10001" +153687,Flatscreen TV,1,300,01/13/19 06:46,"308 10th St, New York City, NY 10001" +153688,Lightning Charging Cable,1,14.95,01/31/19 23:30,"242 Dogwood St, Dallas, TX 75001" +153689,27in 4K Gaming Monitor,1,389.99,01/28/19 19:31,"551 Madison St, Boston, MA 02215" +153690,Google Phone,1,600,01/07/19 07:12,"458 4th St, San Francisco, CA 94016" +153691,USB-C Charging Cable,1,11.95,01/23/19 01:41,"9 Lakeview St, New York City, NY 10001" +153692,AA Batteries (4-pack),5,3.84,01/16/19 20:43,"670 Washington St, San Francisco, CA 94016" +153693,USB-C Charging Cable,1,11.95,01/22/19 16:33,"180 14th St, San Francisco, CA 94016" +153694,Lightning Charging Cable,1,14.95,01/06/19 11:55,"661 14th St, Dallas, TX 75001" +153695,27in FHD Monitor,1,149.99,01/11/19 20:03,"57 Highland St, Atlanta, GA 30301" +153696,iPhone,1,700,01/09/19 22:26,"100 11th St, Boston, MA 02215" +153697,ThinkPad Laptop,1,999.99,01/24/19 11:06,"195 Highland St, Los Angeles, CA 90001" +153698,Flatscreen TV,1,300,01/14/19 12:53,"534 4th St, Dallas, TX 75001" +153699,AAA Batteries (4-pack),1,2.99,01/04/19 08:58,"768 Highland St, Austin, TX 73301" +153700,27in FHD Monitor,1,149.99,01/20/19 09:30,"613 South St, Los Angeles, CA 90001" +153701,AAA Batteries (4-pack),1,2.99,01/31/19 16:54,"430 Elm St, Atlanta, GA 30301" +153702,AAA Batteries (4-pack),1,2.99,01/25/19 16:00,"433 Cherry St, Los Angeles, CA 90001" +153703,Bose SoundSport Headphones,1,99.99,01/09/19 19:51,"640 Park St, Seattle, WA 98101" +153704,27in FHD Monitor,1,149.99,01/12/19 18:36,"113 Center St, New York City, NY 10001" +153705,Apple Airpods Headphones,1,150,01/31/19 16:28,"438 Willow St, Austin, TX 73301" +153706,Apple Airpods Headphones,1,150,01/14/19 20:37,"292 Highland St, New York City, NY 10001" +153707,27in FHD Monitor,1,149.99,01/28/19 04:15,"297 13th St, Los Angeles, CA 90001" +153708,Bose SoundSport Headphones,1,99.99,01/18/19 10:49,"823 Jefferson St, Austin, TX 73301" +153709,AAA Batteries (4-pack),1,2.99,01/15/19 15:08,"119 Maple St, Boston, MA 02215" +153710,Bose SoundSport Headphones,1,99.99,01/22/19 11:02,"825 Sunset St, Dallas, TX 75001" +153711,Wired Headphones,1,11.99,01/01/19 16:45,"561 Cherry St, Boston, MA 02215" +153712,AA Batteries (4-pack),1,3.84,01/09/19 05:23,"978 Jackson St, New York City, NY 10001" +153713,Apple Airpods Headphones,1,150,01/06/19 15:18,"582 Park St, Seattle, WA 98101" +153714,Wired Headphones,1,11.99,01/03/19 21:44,"20 Sunset St, Los Angeles, CA 90001" +153715,AAA Batteries (4-pack),1,2.99,01/22/19 17:55,"154 Highland St, Atlanta, GA 30301" +153716,Bose SoundSport Headphones,1,99.99,01/14/19 10:11,"76 South St, San Francisco, CA 94016" +153717,Lightning Charging Cable,1,14.95,01/06/19 19:24,"729 Dogwood St, Los Angeles, CA 90001" +153718,27in 4K Gaming Monitor,1,389.99,01/11/19 18:36,"14 Johnson St, Boston, MA 02215" +153719,Macbook Pro Laptop,1,1700,01/30/19 02:21,"886 13th St, Los Angeles, CA 90001" +153720,Vareebadd Phone,1,400,01/09/19 20:52,"120 River St, Atlanta, GA 30301" +153721,Macbook Pro Laptop,1,1700,01/31/19 00:59,"716 Chestnut St, San Francisco, CA 94016" +153722,Flatscreen TV,1,300,01/13/19 20:57,"314 Washington St, Dallas, TX 75001" +153723,USB-C Charging Cable,2,11.95,01/05/19 12:45,"505 Ridge St, San Francisco, CA 94016" +153724,AA Batteries (4-pack),1,3.84,01/21/19 14:51,"889 Chestnut St, Dallas, TX 75001" +153725,27in 4K Gaming Monitor,1,389.99,01/19/19 21:23,"501 Meadow St, Portland, OR 97035" +153726,Lightning Charging Cable,1,14.95,01/24/19 13:18,"423 Dogwood St, San Francisco, CA 94016" +153727,Apple Airpods Headphones,1,150,01/24/19 13:27,"445 Elm St, Boston, MA 02215" +153728,USB-C Charging Cable,1,11.95,01/31/19 17:10,"585 Hickory St, New York City, NY 10001" +153729,USB-C Charging Cable,1,11.95,01/20/19 10:48,"395 Willow St, San Francisco, CA 94016" +153730,USB-C Charging Cable,1,11.95,01/30/19 19:25,"44 Highland St, Portland, OR 97035" +153731,Macbook Pro Laptop,1,1700,01/31/19 01:54,"823 Walnut St, Dallas, TX 75001" +153732,Wired Headphones,1,11.99,01/07/19 08:52,"987 South St, Los Angeles, CA 90001" +153733,Bose SoundSport Headphones,1,99.99,01/26/19 19:53,"805 Washington St, Los Angeles, CA 90001" +153734,iPhone,1,700,01/08/19 14:23,"600 Hill St, Dallas, TX 75001" +153735,Bose SoundSport Headphones,1,99.99,01/13/19 20:46,"397 Elm St, Boston, MA 02215" +153736,AAA Batteries (4-pack),3,2.99,01/15/19 23:48,"432 Elm St, San Francisco, CA 94016" +153737,AA Batteries (4-pack),1,3.84,01/07/19 10:30,"469 Pine St, Portland, OR 97035" +153738,Google Phone,1,600,01/09/19 10:56,"387 Dogwood St, Los Angeles, CA 90001" +153739,AA Batteries (4-pack),1,3.84,01/05/19 21:22,"890 9th St, Atlanta, GA 30301" +153740,Bose SoundSport Headphones,1,99.99,01/07/19 21:15,"123 Center St, Dallas, TX 75001" +153741,Bose SoundSport Headphones,1,99.99,01/12/19 16:44,"184 8th St, San Francisco, CA 94016" +153742,Bose SoundSport Headphones,1,99.99,01/21/19 19:35,"355 10th St, Boston, MA 02215" +153743,USB-C Charging Cable,1,11.95,01/24/19 21:44,"768 Ridge St, Los Angeles, CA 90001" +153744,AAA Batteries (4-pack),1,2.99,01/09/19 18:52,"934 Main St, Portland, ME 04101" +153745,Apple Airpods Headphones,1,150,01/21/19 22:35,"385 Adams St, Portland, OR 97035" +153746,AAA Batteries (4-pack),1,2.99,01/14/19 22:46,"106 Maple St, Los Angeles, CA 90001" +153747,AA Batteries (4-pack),1,3.84,01/19/19 18:51,"638 13th St, Boston, MA 02215" +153748,USB-C Charging Cable,1,11.95,01/11/19 19:04,"30 Cedar St, Portland, OR 97035" +153749,Lightning Charging Cable,1,14.95,01/05/19 13:43,"877 Hickory St, Dallas, TX 75001" +153750,AAA Batteries (4-pack),1,2.99,01/26/19 10:21,"481 Spruce St, Atlanta, GA 30301" +153751,iPhone,1,700,01/10/19 10:31,"951 Jefferson St, Seattle, WA 98101" +153752,USB-C Charging Cable,1,11.95,01/27/19 15:24,"410 Spruce St, Dallas, TX 75001" +153753,Lightning Charging Cable,1,14.95,01/09/19 07:44,"555 Walnut St, Austin, TX 73301" +153754,USB-C Charging Cable,1,11.95,01/10/19 19:08,"206 Hill St, Seattle, WA 98101" +153755,AA Batteries (4-pack),1,3.84,01/04/19 08:43,"962 6th St, San Francisco, CA 94016" +153756,iPhone,1,700,01/04/19 12:56,"518 Jackson St, San Francisco, CA 94016" +153757,Google Phone,1,600,01/17/19 19:33,"241 Church St, San Francisco, CA 94016" +153758,AAA Batteries (4-pack),2,2.99,01/24/19 06:56,"546 13th St, San Francisco, CA 94016" +153759,Google Phone,1,600,01/27/19 11:04,"303 Lincoln St, Dallas, TX 75001" +153760,Wired Headphones,1,11.99,01/25/19 14:52,"723 Lincoln St, San Francisco, CA 94016" +153761,Wired Headphones,1,11.99,01/14/19 08:22,"463 Hill St, Dallas, TX 75001" +153762,USB-C Charging Cable,1,11.95,01/03/19 21:42,"703 12th St, San Francisco, CA 94016" +153763,AA Batteries (4-pack),1,3.84,01/03/19 14:08,"455 Center St, Atlanta, GA 30301" +153764,AA Batteries (4-pack),1,3.84,01/02/19 13:52,"57 North St, New York City, NY 10001" +153765,AAA Batteries (4-pack),1,2.99,01/11/19 14:59,"309 Chestnut St, Portland, ME 04101" +153766,Apple Airpods Headphones,1,150,01/02/19 21:47,"925 Willow St, Atlanta, GA 30301" +153767,AA Batteries (4-pack),1,3.84,01/19/19 23:13,"814 6th St, Boston, MA 02215" +153768,27in 4K Gaming Monitor,1,389.99,01/22/19 07:31,"694 Hickory St, Atlanta, GA 30301" +153769,AAA Batteries (4-pack),3,2.99,01/25/19 21:05,"646 Elm St, San Francisco, CA 94016" +153770,AAA Batteries (4-pack),1,2.99,01/19/19 09:23,"708 1st St, Boston, MA 02215" +153771,AAA Batteries (4-pack),1,2.99,01/13/19 22:31,"967 13th St, Portland, OR 97035" +153772,AA Batteries (4-pack),1,3.84,01/14/19 20:31,"573 Wilson St, Atlanta, GA 30301" +153773,iPhone,1,700,01/15/19 10:50,"882 Forest St, Portland, OR 97035" +153774,AAA Batteries (4-pack),2,2.99,01/18/19 13:06,"971 Church St, Boston, MA 02215" +153775,Apple Airpods Headphones,1,150,01/28/19 15:52,"193 Maple St, Boston, MA 02215" +153776,USB-C Charging Cable,1,11.95,01/29/19 15:40,"473 5th St, Portland, OR 97035" +153777,iPhone,1,700,01/05/19 13:13,"868 Spruce St, New York City, NY 10001" +153777,Wired Headphones,1,11.99,01/05/19 13:13,"868 Spruce St, New York City, NY 10001" +153778,AAA Batteries (4-pack),1,2.99,01/09/19 21:38,"730 Johnson St, San Francisco, CA 94016" +153779,Apple Airpods Headphones,1,150,01/27/19 14:19,"45 8th St, Austin, TX 73301" +153780,USB-C Charging Cable,1,11.95,01/02/19 19:21,"154 2nd St, Los Angeles, CA 90001" +153781,Bose SoundSport Headphones,1,99.99,01/18/19 19:18,"796 South St, New York City, NY 10001" +153782,AA Batteries (4-pack),1,3.84,01/14/19 10:54,"824 River St, Portland, OR 97035" +153783,AA Batteries (4-pack),1,3.84,01/05/19 20:21,"900 11th St, San Francisco, CA 94016" +153784,Macbook Pro Laptop,1,1700,01/11/19 22:19,"903 Walnut St, San Francisco, CA 94016" +153785,AA Batteries (4-pack),1,3.84,01/10/19 10:28,"998 10th St, New York City, NY 10001" +153786,Bose SoundSport Headphones,1,99.99,01/07/19 10:00,"190 Madison St, Atlanta, GA 30301" +153787,27in 4K Gaming Monitor,1,389.99,01/29/19 16:19,"427 Lincoln St, Seattle, WA 98101" +153788,Flatscreen TV,1,300,01/08/19 17:04,"708 Ridge St, New York City, NY 10001" +153789,AAA Batteries (4-pack),1,2.99,01/29/19 11:41,"527 Center St, Dallas, TX 75001" +153790,AAA Batteries (4-pack),3,2.99,01/21/19 21:31,"557 8th St, Los Angeles, CA 90001" +153791,Bose SoundSport Headphones,1,99.99,01/24/19 01:02,"228 Sunset St, Austin, TX 73301" +153792,Google Phone,1,600,01/23/19 19:26,"639 Chestnut St, Seattle, WA 98101" +153792,USB-C Charging Cable,1,11.95,01/23/19 19:26,"639 Chestnut St, Seattle, WA 98101" +153793,Bose SoundSport Headphones,1,99.99,01/03/19 20:49,"563 9th St, Dallas, TX 75001" +153794,Lightning Charging Cable,1,14.95,01/01/19 15:08,"938 Highland St, New York City, NY 10001" +153795,Bose SoundSport Headphones,1,99.99,01/30/19 20:33,"944 11th St, San Francisco, CA 94016" +153796,Lightning Charging Cable,1,14.95,01/09/19 14:42,"144 Hill St, San Francisco, CA 94016" +153797,Bose SoundSport Headphones,1,99.99,01/08/19 19:43,"828 Hill St, Atlanta, GA 30301" +153798,AAA Batteries (4-pack),1,2.99,01/05/19 13:07,"539 4th St, San Francisco, CA 94016" +153799,USB-C Charging Cable,1,11.95,01/09/19 18:59,"244 5th St, Seattle, WA 98101" +153800,Lightning Charging Cable,1,14.95,01/11/19 01:56,"704 Church St, Austin, TX 73301" +153801,AA Batteries (4-pack),1,3.84,01/05/19 16:35,"793 North St, San Francisco, CA 94016" +153802,Flatscreen TV,1,300,01/25/19 18:30,"966 Lakeview St, Seattle, WA 98101" +153803,Apple Airpods Headphones,1,150,01/28/19 08:19,"311 Park St, Seattle, WA 98101" +153804,Wired Headphones,1,11.99,01/29/19 22:50,"863 Walnut St, Portland, OR 97035" +153805,Macbook Pro Laptop,1,1700,01/25/19 17:59,"936 14th St, Austin, TX 73301" +153806,AAA Batteries (4-pack),2,2.99,01/18/19 09:49,"401 Main St, New York City, NY 10001" +153807,USB-C Charging Cable,1,11.95,01/06/19 12:17,"737 Main St, New York City, NY 10001" +153808,34in Ultrawide Monitor,1,379.99,01/14/19 22:49,"465 Johnson St, Dallas, TX 75001" +153809,AAA Batteries (4-pack),1,2.99,01/11/19 00:03,"373 Cedar St, Boston, MA 02215" +153810,AA Batteries (4-pack),3,3.84,01/21/19 20:07,"550 Ridge St, New York City, NY 10001" +153811,34in Ultrawide Monitor,1,379.99,01/27/19 20:18,"488 Jackson St, Los Angeles, CA 90001" +153812,iPhone,1,700,01/08/19 12:10,"867 Jackson St, Seattle, WA 98101" +153813,Lightning Charging Cable,1,14.95,01/08/19 16:04,"270 Cherry St, Dallas, TX 75001" +153814,Lightning Charging Cable,1,14.95,01/23/19 09:05,"668 8th St, San Francisco, CA 94016" +153815,Apple Airpods Headphones,1,150,01/26/19 13:11,"947 Church St, San Francisco, CA 94016" +153816,USB-C Charging Cable,1,11.95,01/08/19 18:38,"637 14th St, Atlanta, GA 30301" +153817,Bose SoundSport Headphones,1,99.99,01/27/19 17:23,"676 10th St, San Francisco, CA 94016" +153818,Lightning Charging Cable,1,14.95,01/29/19 18:53,"410 South St, Portland, ME 04101" +153819,34in Ultrawide Monitor,1,379.99,01/09/19 10:45,"985 Jefferson St, Austin, TX 73301" +153820,Lightning Charging Cable,1,14.95,01/08/19 10:33,"21 Willow St, Atlanta, GA 30301" +153821,AAA Batteries (4-pack),1,2.99,01/17/19 10:28,"85 4th St, Boston, MA 02215" +153822,iPhone,1,700,01/16/19 16:16,"667 Ridge St, San Francisco, CA 94016" +153822,Apple Airpods Headphones,1,150,01/16/19 16:16,"667 Ridge St, San Francisco, CA 94016" +153823,Wired Headphones,1,11.99,01/07/19 08:50,"265 West St, Los Angeles, CA 90001" +153824,AA Batteries (4-pack),1,3.84,01/19/19 15:58,"5 Madison St, Dallas, TX 75001" +153825,USB-C Charging Cable,1,11.95,01/18/19 22:40,"463 Highland St, Portland, OR 97035" +153826,Lightning Charging Cable,1,14.95,01/28/19 18:23,"724 Forest St, Boston, MA 02215" +153827,USB-C Charging Cable,1,11.95,01/01/19 07:23,"859 West St, San Francisco, CA 94016" +153828,Flatscreen TV,1,300,01/18/19 20:42,"256 Walnut St, Los Angeles, CA 90001" +153829,Lightning Charging Cable,1,14.95,01/24/19 16:29,"527 Willow St, New York City, NY 10001" +153830,iPhone,1,700,01/06/19 21:04,"234 Center St, Seattle, WA 98101" +153831,27in 4K Gaming Monitor,1,389.99,01/16/19 10:16,"23 12th St, San Francisco, CA 94016" +153832,Google Phone,1,600,01/07/19 14:50,"463 13th St, Portland, ME 04101" +153833,Wired Headphones,1,11.99,01/27/19 14:34,"990 Wilson St, Portland, OR 97035" +,,,,, +153834,AA Batteries (4-pack),2,3.84,01/06/19 11:44,"573 Hickory St, Los Angeles, CA 90001" +153835,AAA Batteries (4-pack),1,2.99,01/21/19 23:29,"792 14th St, Dallas, TX 75001" +153836,27in 4K Gaming Monitor,1,389.99,01/03/19 14:01,"53 2nd St, Seattle, WA 98101" +153837,Macbook Pro Laptop,1,1700,01/04/19 10:55,"623 River St, Dallas, TX 75001" +153838,AA Batteries (4-pack),2,3.84,01/17/19 10:41,"963 4th St, Los Angeles, CA 90001" +153839,AA Batteries (4-pack),2,3.84,01/17/19 12:23,"531 West St, San Francisco, CA 94016" +153840,AAA Batteries (4-pack),1,2.99,01/21/19 18:29,"681 13th St, Los Angeles, CA 90001" +153841,Bose SoundSport Headphones,1,99.99,01/11/19 12:15,"247 Adams St, San Francisco, CA 94016" +153842,Lightning Charging Cable,1,14.95,01/18/19 02:41,"465 Lakeview St, Los Angeles, CA 90001" +153843,Apple Airpods Headphones,1,150,01/22/19 17:18,"269 9th St, New York City, NY 10001" +153844,USB-C Charging Cable,1,11.95,01/25/19 22:57,"807 Lincoln St, San Francisco, CA 94016" +153845,Wired Headphones,1,11.99,01/07/19 13:30,"601 Washington St, New York City, NY 10001" +153846,Apple Airpods Headphones,1,150,01/30/19 22:38,"622 5th St, New York City, NY 10001" +153847,Flatscreen TV,1,300,01/12/19 22:29,"508 8th St, Dallas, TX 75001" +153848,AA Batteries (4-pack),2,3.84,01/19/19 21:58,"77 7th St, Portland, OR 97035" +153849,Wired Headphones,1,11.99,01/19/19 19:38,"593 9th St, New York City, NY 10001" +153850,34in Ultrawide Monitor,1,379.99,01/04/19 21:20,"809 Lakeview St, Boston, MA 02215" +153851,20in Monitor,1,109.99,01/04/19 18:41,"448 Center St, Los Angeles, CA 90001" +153852,27in FHD Monitor,1,149.99,01/19/19 02:35,"543 Adams St, Boston, MA 02215" +153853,iPhone,1,700,01/06/19 17:30,"716 Spruce St, Dallas, TX 75001" +153854,USB-C Charging Cable,1,11.95,01/24/19 10:49,"448 9th St, San Francisco, CA 94016" +153855,27in FHD Monitor,1,149.99,01/12/19 17:37,"353 Maple St, San Francisco, CA 94016" +153856,20in Monitor,1,109.99,01/17/19 19:57,"388 12th St, New York City, NY 10001" +153857,Lightning Charging Cable,1,14.95,01/07/19 10:54,"131 Chestnut St, Boston, MA 02215" +153858,Lightning Charging Cable,1,14.95,01/22/19 20:54,"171 Cherry St, San Francisco, CA 94016" +153859,iPhone,1,700,01/07/19 16:31,"363 Lake St, Boston, MA 02215" +153859,Lightning Charging Cable,1,14.95,01/07/19 16:31,"363 Lake St, Boston, MA 02215" +153860,Lightning Charging Cable,1,14.95,01/22/19 20:06,"307 Cherry St, San Francisco, CA 94016" +153861,Lightning Charging Cable,1,14.95,01/14/19 13:08,"503 6th St, Boston, MA 02215" +153862,Apple Airpods Headphones,1,150,01/26/19 10:03,"100 Sunset St, San Francisco, CA 94016" +153863,27in FHD Monitor,1,149.99,01/24/19 20:07,"649 Sunset St, San Francisco, CA 94016" +153864,AAA Batteries (4-pack),2,2.99,01/04/19 20:38,"859 Washington St, New York City, NY 10001" +153865,Lightning Charging Cable,1,14.95,01/04/19 12:33,"98 7th St, New York City, NY 10001" +153866,Apple Airpods Headphones,1,150,01/22/19 15:27,"874 Elm St, San Francisco, CA 94016" +153867,AAA Batteries (4-pack),1,2.99,01/31/19 12:19,"836 Dogwood St, Portland, OR 97035" +153868,Lightning Charging Cable,1,14.95,01/26/19 11:44,"569 Center St, San Francisco, CA 94016" +153869,USB-C Charging Cable,2,11.95,01/05/19 15:33,"960 Lakeview St, Dallas, TX 75001" +153870,27in 4K Gaming Monitor,1,389.99,01/22/19 19:09,"193 Wilson St, San Francisco, CA 94016" +153871,Flatscreen TV,1,300,01/12/19 14:35,"494 Madison St, Portland, OR 97035" +153872,Bose SoundSport Headphones,1,99.99,01/03/19 17:42,"8 Spruce St, Los Angeles, CA 90001" +153873,Lightning Charging Cable,1,14.95,01/15/19 20:52,"264 Ridge St, San Francisco, CA 94016" +153874,AAA Batteries (4-pack),2,2.99,01/02/19 12:43,"62 Meadow St, Boston, MA 02215" +153875,Lightning Charging Cable,1,14.95,01/17/19 14:24,"247 Sunset St, San Francisco, CA 94016" +153876,AA Batteries (4-pack),1,3.84,01/25/19 17:57,"149 Church St, Atlanta, GA 30301" +153877,AA Batteries (4-pack),1,3.84,01/26/19 14:36,"615 South St, San Francisco, CA 94016" +153878,Apple Airpods Headphones,1,150,01/18/19 02:14,"736 12th St, Atlanta, GA 30301" +153879,Lightning Charging Cable,1,14.95,01/11/19 00:35,"583 2nd St, San Francisco, CA 94016" +153880,Lightning Charging Cable,1,14.95,01/12/19 11:27,"369 South St, San Francisco, CA 94016" +153881,Vareebadd Phone,1,400,01/20/19 16:04,"500 Ridge St, Los Angeles, CA 90001" +153882,Flatscreen TV,1,300,01/03/19 14:28,"654 Main St, Seattle, WA 98101" +153883,27in 4K Gaming Monitor,1,389.99,01/26/19 18:52,"801 4th St, San Francisco, CA 94016" +153884,Lightning Charging Cable,1,14.95,01/09/19 15:00,"475 Forest St, New York City, NY 10001" +153885,USB-C Charging Cable,1,11.95,01/02/19 15:38,"18 Lake St, San Francisco, CA 94016" +153886,Flatscreen TV,1,300,01/25/19 13:23,"645 Washington St, Seattle, WA 98101" +153887,AAA Batteries (4-pack),1,2.99,01/26/19 09:37,"531 River St, New York City, NY 10001" +153888,Lightning Charging Cable,1,14.95,01/22/19 23:45,"819 Sunset St, Los Angeles, CA 90001" +153889,Wired Headphones,1,11.99,01/01/19 17:56,"874 Pine St, Los Angeles, CA 90001" +153890,34in Ultrawide Monitor,1,379.99,01/11/19 13:11,"779 Willow St, Dallas, TX 75001" +153891,27in FHD Monitor,1,149.99,01/05/19 14:08,"791 13th St, Portland, OR 97035" +153892,Lightning Charging Cable,2,14.95,01/29/19 21:12,"482 Main St, Boston, MA 02215" +153893,AA Batteries (4-pack),1,3.84,01/13/19 19:15,"476 Washington St, Boston, MA 02215" +153894,Lightning Charging Cable,1,14.95,01/22/19 15:50,"409 Adams St, Portland, OR 97035" +153895,AAA Batteries (4-pack),2,2.99,01/09/19 16:14,"949 North St, San Francisco, CA 94016" +153896,USB-C Charging Cable,1,11.95,01/15/19 18:03,"451 Chestnut St, New York City, NY 10001" +153897,Apple Airpods Headphones,1,150,01/18/19 14:08,"602 Spruce St, Austin, TX 73301" +153898,AAA Batteries (4-pack),1,2.99,01/08/19 00:17,"728 Meadow St, San Francisco, CA 94016" +153899,USB-C Charging Cable,1,11.95,01/18/19 17:02,"787 2nd St, Los Angeles, CA 90001" +153900,USB-C Charging Cable,1,11.95,01/29/19 08:51,"143 Wilson St, San Francisco, CA 94016" +153901,Bose SoundSport Headphones,1,99.99,01/19/19 00:34,"445 Ridge St, Dallas, TX 75001" +153902,Apple Airpods Headphones,1,150,01/08/19 15:12,"81 West St, New York City, NY 10001" +153903,Lightning Charging Cable,1,14.95,01/22/19 15:00,"562 2nd St, Portland, OR 97035" +153904,USB-C Charging Cable,1,11.95,01/18/19 17:30,"487 Main St, Dallas, TX 75001" +153905,34in Ultrawide Monitor,1,379.99,01/23/19 20:27,"921 7th St, New York City, NY 10001" +153906,Lightning Charging Cable,1,14.95,01/20/19 06:03,"88 Hill St, Seattle, WA 98101" +153907,Google Phone,1,600,01/21/19 18:55,"959 Church St, Los Angeles, CA 90001" +153908,27in FHD Monitor,1,149.99,01/03/19 13:59,"358 Forest St, Austin, TX 73301" +153909,USB-C Charging Cable,1,11.95,01/02/19 19:23,"664 4th St, Boston, MA 02215" +153910,Apple Airpods Headphones,1,150,01/20/19 04:01,"978 Willow St, San Francisco, CA 94016" +153911,Lightning Charging Cable,1,14.95,01/30/19 15:57,"316 10th St, San Francisco, CA 94016" +153912,20in Monitor,1,109.99,01/07/19 19:31,"854 4th St, San Francisco, CA 94016" +153913,USB-C Charging Cable,1,11.95,01/12/19 11:26,"777 Wilson St, Boston, MA 02215" +153914,Wired Headphones,1,11.99,01/25/19 09:19,"712 Lincoln St, Portland, OR 97035" +153915,Lightning Charging Cable,1,14.95,01/10/19 16:45,"518 7th St, San Francisco, CA 94016" +153916,AAA Batteries (4-pack),1,2.99,01/14/19 11:41,"907 North St, New York City, NY 10001" +153917,27in FHD Monitor,1,149.99,01/03/19 18:24,"241 14th St, Dallas, TX 75001" +153918,20in Monitor,1,109.99,01/05/19 08:37,"620 12th St, Seattle, WA 98101" +153919,Lightning Charging Cable,1,14.95,01/29/19 13:52,"568 14th St, Los Angeles, CA 90001" +153920,AAA Batteries (4-pack),1,2.99,01/08/19 21:09,"815 Johnson St, Atlanta, GA 30301" +153921,AA Batteries (4-pack),1,3.84,01/14/19 19:22,"258 Dogwood St, New York City, NY 10001" +153921,Lightning Charging Cable,1,14.95,01/14/19 19:22,"258 Dogwood St, New York City, NY 10001" +153922,34in Ultrawide Monitor,1,379.99,01/14/19 19:20,"843 5th St, Los Angeles, CA 90001" +153923,Lightning Charging Cable,1,14.95,01/10/19 22:04,"595 Dogwood St, San Francisco, CA 94016" +153924,Google Phone,1,600,01/15/19 14:11,"794 2nd St, Dallas, TX 75001" +153924,USB-C Charging Cable,1,11.95,01/15/19 14:11,"794 2nd St, Dallas, TX 75001" +153925,Wired Headphones,2,11.99,01/26/19 22:14,"601 Hickory St, Portland, ME 04101" +153926,Google Phone,1,600,01/09/19 13:04,"223 Park St, Los Angeles, CA 90001" +153927,Google Phone,1,600,01/10/19 13:53,"655 Cherry St, Los Angeles, CA 90001" +153927,Wired Headphones,1,11.99,01/10/19 13:53,"655 Cherry St, Los Angeles, CA 90001" +153928,27in 4K Gaming Monitor,1,389.99,01/09/19 18:22,"136 Ridge St, San Francisco, CA 94016" +153929,AAA Batteries (4-pack),1,2.99,01/12/19 20:51,"592 Hickory St, Austin, TX 73301" +153930,27in FHD Monitor,1,149.99,01/10/19 10:39,"11 River St, Portland, OR 97035" +153931,Bose SoundSport Headphones,1,99.99,01/22/19 14:56,"352 5th St, Austin, TX 73301" +153932,Bose SoundSport Headphones,1,99.99,01/04/19 14:39,"380 Lincoln St, Seattle, WA 98101" +153932,Macbook Pro Laptop,1,1700,01/04/19 14:39,"380 Lincoln St, Seattle, WA 98101" +153933,AAA Batteries (4-pack),3,2.99,01/04/19 09:25,"291 Dogwood St, Portland, OR 97035" +153934,Lightning Charging Cable,1,14.95,01/26/19 21:33,"344 Jackson St, Seattle, WA 98101" +153935,27in 4K Gaming Monitor,1,389.99,01/09/19 18:36,"496 Park St, Dallas, TX 75001" +153936,AAA Batteries (4-pack),2,2.99,01/14/19 16:16,"543 Washington St, San Francisco, CA 94016" +153937,Bose SoundSport Headphones,1,99.99,01/31/19 18:20,"976 1st St, Los Angeles, CA 90001" +153938,AAA Batteries (4-pack),2,2.99,01/04/19 11:32,"431 Forest St, Dallas, TX 75001" +153939,AA Batteries (4-pack),1,3.84,01/04/19 19:44,"472 13th St, Portland, OR 97035" +153939,AAA Batteries (4-pack),3,2.99,01/04/19 19:44,"472 13th St, Portland, OR 97035" +153940,USB-C Charging Cable,1,11.95,01/06/19 18:08,"906 Center St, San Francisco, CA 94016" +153941,27in 4K Gaming Monitor,1,389.99,01/31/19 20:17,"746 5th St, Los Angeles, CA 90001" +153942,Macbook Pro Laptop,1,1700,01/02/19 16:41,"941 11th St, Dallas, TX 75001" +153942,20in Monitor,1,109.99,01/02/19 16:41,"941 11th St, Dallas, TX 75001" +153943,Google Phone,1,600,01/03/19 19:31,"293 5th St, Dallas, TX 75001" +153943,USB-C Charging Cable,1,11.95,01/03/19 19:31,"293 5th St, Dallas, TX 75001" +153944,Apple Airpods Headphones,1,150,01/29/19 15:33,"643 Pine St, Boston, MA 02215" +153945,AA Batteries (4-pack),1,3.84,01/22/19 17:19,"830 Maple St, Dallas, TX 75001" +153946,27in FHD Monitor,1,149.99,01/05/19 20:19,"619 Washington St, San Francisco, CA 94016" +153947,Lightning Charging Cable,1,14.95,01/16/19 10:29,"991 1st St, San Francisco, CA 94016" +153948,Lightning Charging Cable,1,14.95,01/21/19 19:40,"465 Lincoln St, Atlanta, GA 30301" +153949,Bose SoundSport Headphones,1,99.99,01/09/19 22:57,"317 Dogwood St, San Francisco, CA 94016" +153950,AAA Batteries (4-pack),2,2.99,01/06/19 09:58,"380 West St, Portland, OR 97035" +153951,Lightning Charging Cable,1,14.95,01/17/19 11:25,"441 Main St, Los Angeles, CA 90001" +153952,AAA Batteries (4-pack),1,2.99,01/18/19 23:22,"641 11th St, San Francisco, CA 94016" +153953,Wired Headphones,2,11.99,01/20/19 11:42,"764 Hill St, New York City, NY 10001" +153954,AAA Batteries (4-pack),1,2.99,01/08/19 18:53,"929 Adams St, Austin, TX 73301" +153955,Apple Airpods Headphones,1,150,01/01/19 13:57,"746 Adams St, New York City, NY 10001" +153956,27in 4K Gaming Monitor,1,389.99,01/21/19 17:14,"189 14th St, New York City, NY 10001" +153957,AA Batteries (4-pack),1,3.84,01/09/19 13:48,"391 6th St, Austin, TX 73301" +153957,Apple Airpods Headphones,1,150,01/09/19 13:48,"391 6th St, Austin, TX 73301" +153958,Lightning Charging Cable,1,14.95,01/09/19 08:44,"977 Park St, Seattle, WA 98101" +153959,27in 4K Gaming Monitor,1,389.99,01/27/19 10:27,"636 Johnson St, New York City, NY 10001" +153960,Wired Headphones,1,11.99,01/28/19 12:45,"605 Hickory St, Los Angeles, CA 90001" +153961,USB-C Charging Cable,1,11.95,01/16/19 15:32,"175 Lincoln St, Boston, MA 02215" +153962,AAA Batteries (4-pack),1,2.99,01/01/19 14:04,"708 Meadow St, Los Angeles, CA 90001" +153963,27in FHD Monitor,1,149.99,01/09/19 21:11,"33 Chestnut St, Boston, MA 02215" +153964,34in Ultrawide Monitor,1,379.99,01/22/19 19:41,"97 West St, Portland, OR 97035" +153965,AAA Batteries (4-pack),1,2.99,01/03/19 11:02,"289 Maple St, Los Angeles, CA 90001" +153966,Apple Airpods Headphones,1,150,01/18/19 18:16,"536 North St, San Francisco, CA 94016" +153967,27in FHD Monitor,1,149.99,01/08/19 13:29,"222 Madison St, Atlanta, GA 30301" +153968,27in 4K Gaming Monitor,1,389.99,01/31/19 17:13,"419 Jefferson St, Atlanta, GA 30301" +153969,Bose SoundSport Headphones,1,99.99,01/16/19 15:02,"517 Adams St, Los Angeles, CA 90001" +153970,Vareebadd Phone,1,400,01/09/19 17:53,"867 12th St, Boston, MA 02215" +153970,USB-C Charging Cable,1,11.95,01/09/19 17:53,"867 12th St, Boston, MA 02215" +153971,Wired Headphones,1,11.99,01/02/19 18:28,"272 14th St, Austin, TX 73301" +153972,iPhone,1,700,01/02/19 20:00,"195 North St, San Francisco, CA 94016" +153973,AAA Batteries (4-pack),1,2.99,01/26/19 23:21,"654 Johnson St, San Francisco, CA 94016" +153974,USB-C Charging Cable,1,11.95,01/23/19 22:23,"622 River St, San Francisco, CA 94016" +153975,Wired Headphones,1,11.99,01/11/19 17:36,"618 Chestnut St, New York City, NY 10001" +153976,Wired Headphones,1,11.99,01/03/19 12:20,"350 Madison St, Austin, TX 73301" +153977,ThinkPad Laptop,1,999.99,01/23/19 18:20,"766 Willow St, Dallas, TX 75001" +153978,ThinkPad Laptop,1,999.99,01/06/19 18:37,"430 River St, Boston, MA 02215" +153979,AA Batteries (4-pack),2,3.84,01/12/19 13:12,"392 Jefferson St, Los Angeles, CA 90001" +153980,AA Batteries (4-pack),2,3.84,01/26/19 20:11,"172 2nd St, Los Angeles, CA 90001" +153981,27in 4K Gaming Monitor,1,389.99,01/26/19 09:37,"615 2nd St, San Francisco, CA 94016" +153982,Flatscreen TV,1,300,01/17/19 18:24,"594 10th St, Austin, TX 73301" +153983,AAA Batteries (4-pack),1,2.99,01/13/19 15:51,"323 Willow St, San Francisco, CA 94016" +153984,AA Batteries (4-pack),1,3.84,01/13/19 17:29,"538 Madison St, Seattle, WA 98101" +153985,Google Phone,1,600,01/26/19 21:09,"470 Main St, New York City, NY 10001" +153985,Bose SoundSport Headphones,1,99.99,01/26/19 21:09,"470 Main St, New York City, NY 10001" +153986,ThinkPad Laptop,1,999.99,01/14/19 15:12,"379 West St, San Francisco, CA 94016" +153987,Flatscreen TV,1,300,01/25/19 11:30,"578 Church St, Los Angeles, CA 90001" +153988,AAA Batteries (4-pack),1,2.99,01/23/19 19:11,"544 West St, San Francisco, CA 94016" +153989,Lightning Charging Cable,1,14.95,01/30/19 21:17,"409 Church St, New York City, NY 10001" +153990,Lightning Charging Cable,1,14.95,01/14/19 22:23,"253 5th St, San Francisco, CA 94016" +153991,20in Monitor,1,109.99,01/27/19 21:33,"371 Ridge St, Los Angeles, CA 90001" +153992,AA Batteries (4-pack),1,3.84,01/08/19 21:50,"129 Center St, San Francisco, CA 94016" +153993,USB-C Charging Cable,1,11.95,01/18/19 21:29,"171 Forest St, Seattle, WA 98101" +153994,Bose SoundSport Headphones,1,99.99,01/28/19 18:38,"430 Dogwood St, Seattle, WA 98101" +,,,,, +153995,USB-C Charging Cable,1,11.95,01/06/19 18:42,"341 North St, Boston, MA 02215" +153996,34in Ultrawide Monitor,1,379.99,01/18/19 22:06,"614 Wilson St, Dallas, TX 75001" +153997,USB-C Charging Cable,1,11.95,01/22/19 23:43,"816 Lakeview St, San Francisco, CA 94016" +153998,AA Batteries (4-pack),1,3.84,01/28/19 22:26,"455 13th St, Los Angeles, CA 90001" +153999,Wired Headphones,1,11.99,01/22/19 10:49,"33 Highland St, Seattle, WA 98101" +154000,AAA Batteries (4-pack),1,2.99,01/26/19 14:00,"190 Jefferson St, Boston, MA 02215" +154001,Lightning Charging Cable,1,14.95,02/01/19 00:55,"272 Dogwood St, Dallas, TX 75001" +154002,Bose SoundSport Headphones,1,99.99,01/08/19 15:16,"951 Walnut St, Seattle, WA 98101" +154003,Bose SoundSport Headphones,1,99.99,01/22/19 00:00,"59 7th St, Boston, MA 02215" +154004,Wired Headphones,1,11.99,01/16/19 21:24,"385 West St, San Francisco, CA 94016" +154005,USB-C Charging Cable,1,11.95,01/04/19 08:54,"629 Hill St, Portland, OR 97035" +154006,27in 4K Gaming Monitor,1,389.99,01/15/19 16:52,"854 13th St, Seattle, WA 98101" +154007,Wired Headphones,1,11.99,01/24/19 20:52,"449 10th St, New York City, NY 10001" +154008,Wired Headphones,1,11.99,01/16/19 20:31,"146 8th St, San Francisco, CA 94016" +154009,Wired Headphones,1,11.99,01/11/19 13:38,"459 6th St, Los Angeles, CA 90001" +154010,Apple Airpods Headphones,1,150,01/18/19 10:36,"729 Hill St, Seattle, WA 98101" +154011,Apple Airpods Headphones,1,150,01/28/19 14:53,"457 4th St, Los Angeles, CA 90001" +154012,AAA Batteries (4-pack),1,2.99,01/25/19 18:17,"514 Ridge St, Los Angeles, CA 90001" +154013,Lightning Charging Cable,1,14.95,01/14/19 14:54,"957 Lakeview St, Boston, MA 02215" +154014,AAA Batteries (4-pack),1,2.99,01/08/19 10:33,"553 Meadow St, Los Angeles, CA 90001" +154015,Lightning Charging Cable,1,14.95,01/16/19 17:33,"346 Jackson St, Los Angeles, CA 90001" +154016,AAA Batteries (4-pack),2,2.99,01/20/19 18:41,"996 Spruce St, Los Angeles, CA 90001" +154017,USB-C Charging Cable,1,11.95,01/15/19 16:57,"405 Lake St, Los Angeles, CA 90001" +154018,Bose SoundSport Headphones,1,99.99,01/23/19 19:34,"408 Cedar St, Boston, MA 02215" +154019,Bose SoundSport Headphones,1,99.99,01/14/19 08:08,"644 Willow St, Los Angeles, CA 90001" +154020,Wired Headphones,1,11.99,01/13/19 07:56,"64 Highland St, Los Angeles, CA 90001" +154021,USB-C Charging Cable,1,11.95,01/04/19 00:00,"319 Cedar St, Seattle, WA 98101" +154022,27in FHD Monitor,1,149.99,01/15/19 01:39,"693 Jackson St, San Francisco, CA 94016" +154023,AAA Batteries (4-pack),1,2.99,01/13/19 09:08,"592 Lake St, Los Angeles, CA 90001" +154024,AAA Batteries (4-pack),2,2.99,01/12/19 08:10,"14 Jackson St, San Francisco, CA 94016" +154025,27in 4K Gaming Monitor,1,389.99,01/03/19 12:08,"482 Pine St, Los Angeles, CA 90001" +154026,Lightning Charging Cable,1,14.95,01/02/19 02:25,"158 Spruce St, New York City, NY 10001" +154027,Lightning Charging Cable,1,14.95,01/31/19 20:31,"942 South St, New York City, NY 10001" +154028,Lightning Charging Cable,1,14.95,01/01/19 19:02,"184 Center St, Atlanta, GA 30301" +154029,Wired Headphones,2,11.99,01/25/19 11:11,"746 Main St, Austin, TX 73301" +154030,27in FHD Monitor,1,149.99,01/05/19 16:05,"556 Elm St, Portland, OR 97035" +154031,USB-C Charging Cable,1,11.95,01/08/19 14:36,"69 Hickory St, Dallas, TX 75001" +154032,AAA Batteries (4-pack),1,2.99,01/02/19 08:03,"9 5th St, New York City, NY 10001" +154033,27in FHD Monitor,1,149.99,01/08/19 21:22,"894 Cedar St, San Francisco, CA 94016" +154034,AA Batteries (4-pack),3,3.84,01/08/19 12:56,"648 Jefferson St, San Francisco, CA 94016" +154035,Apple Airpods Headphones,1,150,01/18/19 00:16,"201 6th St, Los Angeles, CA 90001" +154036,Lightning Charging Cable,1,14.95,01/15/19 02:37,"659 Forest St, Dallas, TX 75001" +154037,Google Phone,1,600,01/23/19 12:45,"560 Lakeview St, San Francisco, CA 94016" +154038,27in FHD Monitor,1,149.99,01/09/19 00:47,"464 Main St, San Francisco, CA 94016" +154039,Wired Headphones,1,11.99,01/14/19 12:31,"789 Madison St, Boston, MA 02215" +154040,iPhone,1,700,01/25/19 21:42,"813 Church St, San Francisco, CA 94016" +154041,AA Batteries (4-pack),2,3.84,01/13/19 20:52,"485 Highland St, Los Angeles, CA 90001" +154042,AAA Batteries (4-pack),1,2.99,01/12/19 23:51,"382 10th St, Los Angeles, CA 90001" +154043,Lightning Charging Cable,1,14.95,01/18/19 17:47,"278 8th St, San Francisco, CA 94016" +154044,AAA Batteries (4-pack),1,2.99,01/03/19 13:37,"938 Hill St, San Francisco, CA 94016" +154045,AA Batteries (4-pack),1,3.84,01/07/19 22:08,"671 Dogwood St, New York City, NY 10001" +154046,Macbook Pro Laptop,1,1700,01/25/19 15:26,"827 Madison St, Los Angeles, CA 90001" +154047,Lightning Charging Cable,1,14.95,01/26/19 20:02,"707 Washington St, Los Angeles, CA 90001" +154048,Macbook Pro Laptop,1,1700,01/18/19 09:29,"322 Cedar St, New York City, NY 10001" +154049,27in 4K Gaming Monitor,1,389.99,01/27/19 05:40,"135 West St, Dallas, TX 75001" +154050,Wired Headphones,1,11.99,01/20/19 12:51,"228 Hill St, San Francisco, CA 94016" +154051,Google Phone,1,600,01/31/19 19:56,"75 2nd St, San Francisco, CA 94016" +154052,USB-C Charging Cable,1,11.95,01/18/19 13:06,"656 River St, Los Angeles, CA 90001" +154053,Lightning Charging Cable,1,14.95,01/09/19 15:22,"61 Sunset St, San Francisco, CA 94016" +154054,Lightning Charging Cable,1,14.95,01/15/19 11:53,"385 1st St, Austin, TX 73301" +154055,Wired Headphones,2,11.99,01/22/19 09:45,"203 6th St, New York City, NY 10001" +154056,AAA Batteries (4-pack),1,2.99,01/14/19 05:45,"887 Ridge St, Atlanta, GA 30301" +154057,ThinkPad Laptop,1,999.99,01/20/19 08:28,"9 Forest St, Boston, MA 02215" +154058,AAA Batteries (4-pack),1,2.99,01/31/19 10:23,"623 8th St, Los Angeles, CA 90001" +154059,USB-C Charging Cable,1,11.95,01/25/19 15:14,"608 South St, San Francisco, CA 94016" +154060,Bose SoundSport Headphones,1,99.99,01/24/19 11:35,"548 Highland St, San Francisco, CA 94016" +154061,Macbook Pro Laptop,1,1700,01/05/19 16:54,"700 Jefferson St, New York City, NY 10001" +154062,Apple Airpods Headphones,1,150,01/23/19 22:34,"67 Dogwood St, Atlanta, GA 30301" +154063,ThinkPad Laptop,1,999.99,01/28/19 13:22,"226 Hill St, Dallas, TX 75001" +154064,Bose SoundSport Headphones,1,99.99,01/02/19 11:37,"50 2nd St, Portland, ME 04101" +154065,AA Batteries (4-pack),2,3.84,01/01/19 08:22,"456 Walnut St, New York City, NY 10001" +154066,34in Ultrawide Monitor,1,379.99,01/18/19 22:37,"785 Lincoln St, Los Angeles, CA 90001" +154067,Lightning Charging Cable,1,14.95,01/03/19 15:37,"686 West St, Atlanta, GA 30301" +154068,AA Batteries (4-pack),1,3.84,01/03/19 15:53,"868 Hickory St, San Francisco, CA 94016" +154069,Apple Airpods Headphones,1,150,01/02/19 15:27,"237 North St, San Francisco, CA 94016" +154070,27in 4K Gaming Monitor,1,389.99,01/13/19 10:58,"465 Forest St, San Francisco, CA 94016" +154071,AAA Batteries (4-pack),1,2.99,01/31/19 16:07,"240 Forest St, Austin, TX 73301" +154072,27in FHD Monitor,1,149.99,01/09/19 16:22,"109 Ridge St, San Francisco, CA 94016" +154073,USB-C Charging Cable,1,11.95,01/31/19 20:26,"566 Lincoln St, Portland, OR 97035" +154074,USB-C Charging Cable,1,11.95,01/27/19 20:37,"198 Pine St, New York City, NY 10001" +154075,Wired Headphones,1,11.99,01/16/19 21:21,"260 2nd St, New York City, NY 10001" +154076,AAA Batteries (4-pack),2,2.99,01/27/19 20:35,"638 Maple St, Austin, TX 73301" +154077,Wired Headphones,1,11.99,01/19/19 21:03,"579 Sunset St, Boston, MA 02215" +154078,USB-C Charging Cable,1,11.95,01/30/19 11:13,"152 Church St, San Francisco, CA 94016" +154079,AA Batteries (4-pack),1,3.84,01/09/19 18:07,"959 Jackson St, San Francisco, CA 94016" +154080,Wired Headphones,1,11.99,01/15/19 19:00,"518 Johnson St, San Francisco, CA 94016" +154081,Wired Headphones,1,11.99,01/07/19 13:21,"498 2nd St, New York City, NY 10001" +154082,Lightning Charging Cable,1,14.95,01/22/19 22:17,"456 12th St, Dallas, TX 75001" +154083,Lightning Charging Cable,1,14.95,01/06/19 12:09,"716 Meadow St, New York City, NY 10001" +154084,Lightning Charging Cable,1,14.95,01/21/19 14:30,"336 Johnson St, Los Angeles, CA 90001" +154085,AAA Batteries (4-pack),1,2.99,01/29/19 08:51,"792 11th St, New York City, NY 10001" +154086,AAA Batteries (4-pack),3,2.99,01/22/19 13:06,"869 Forest St, Seattle, WA 98101" +154087,Lightning Charging Cable,2,14.95,01/25/19 20:22,"905 9th St, Boston, MA 02215" +154088,Bose SoundSport Headphones,1,99.99,01/26/19 21:40,"597 Washington St, Dallas, TX 75001" +154089,Apple Airpods Headphones,1,150,01/22/19 16:48,"754 Johnson St, San Francisco, CA 94016" +154090,Lightning Charging Cable,1,14.95,01/17/19 10:42,"401 South St, Dallas, TX 75001" +154091,AAA Batteries (4-pack),1,2.99,01/19/19 09:20,"818 Dogwood St, Seattle, WA 98101" +154092,USB-C Charging Cable,1,11.95,01/16/19 13:37,"975 Pine St, New York City, NY 10001" +154093,Apple Airpods Headphones,1,150,01/09/19 18:34,"810 Highland St, Boston, MA 02215" +154094,USB-C Charging Cable,1,11.95,01/28/19 17:16,"880 9th St, Seattle, WA 98101" +154095,AAA Batteries (4-pack),1,2.99,01/19/19 00:23,"92 Washington St, Dallas, TX 75001" +154096,34in Ultrawide Monitor,1,379.99,01/19/19 19:08,"866 Wilson St, San Francisco, CA 94016" +154097,27in 4K Gaming Monitor,1,389.99,01/25/19 03:56,"884 Willow St, San Francisco, CA 94016" +154098,Lightning Charging Cable,1,14.95,02/01/19 01:06,"481 Chestnut St, Atlanta, GA 30301" +154099,Vareebadd Phone,1,400,01/26/19 09:49,"19 Lakeview St, Boston, MA 02215" +154099,USB-C Charging Cable,2,11.95,01/26/19 09:49,"19 Lakeview St, Boston, MA 02215" +154099,Wired Headphones,1,11.99,01/26/19 09:49,"19 Lakeview St, Boston, MA 02215" +154100,Macbook Pro Laptop,1,1700,01/31/19 14:04,"919 8th St, San Francisco, CA 94016" +154101,Bose SoundSport Headphones,1,99.99,01/18/19 11:19,"874 2nd St, Los Angeles, CA 90001" +154102,27in FHD Monitor,1,149.99,01/29/19 13:24,"60 Jackson St, Dallas, TX 75001" +154103,Bose SoundSport Headphones,1,99.99,01/05/19 20:13,"344 Meadow St, Dallas, TX 75001" +154104,Wired Headphones,2,11.99,01/20/19 07:05,"905 Maple St, New York City, NY 10001" +154105,AA Batteries (4-pack),1,3.84,01/03/19 20:30,"725 Lake St, Boston, MA 02215" +154106,AA Batteries (4-pack),1,3.84,01/22/19 10:47,"156 Cedar St, Boston, MA 02215" +154107,Flatscreen TV,1,300,01/11/19 19:49,"953 11th St, San Francisco, CA 94016" +154108,34in Ultrawide Monitor,1,379.99,01/08/19 17:07,"138 13th St, Austin, TX 73301" +154109,Vareebadd Phone,1,400,01/16/19 01:09,"583 South St, Seattle, WA 98101" +154110,Apple Airpods Headphones,1,150,01/29/19 12:47,"102 Lake St, Dallas, TX 75001" +154111,Lightning Charging Cable,1,14.95,01/22/19 12:22,"118 6th St, San Francisco, CA 94016" +154112,27in 4K Gaming Monitor,1,389.99,01/03/19 17:40,"375 Maple St, San Francisco, CA 94016" +154113,27in 4K Gaming Monitor,1,389.99,01/22/19 20:52,"323 4th St, New York City, NY 10001" +154114,Flatscreen TV,1,300,01/07/19 16:38,"514 Hickory St, New York City, NY 10001" +154115,27in FHD Monitor,1,149.99,01/31/19 23:44,"31 5th St, Boston, MA 02215" +154116,Bose SoundSport Headphones,1,99.99,01/10/19 20:33,"931 Elm St, Atlanta, GA 30301" +154117,AAA Batteries (4-pack),3,2.99,01/27/19 20:44,"548 Ridge St, Portland, ME 04101" +154118,USB-C Charging Cable,1,11.95,01/18/19 17:27,"118 14th St, Los Angeles, CA 90001" +154119,USB-C Charging Cable,1,11.95,01/12/19 19:32,"48 Hill St, San Francisco, CA 94016" +154120,Macbook Pro Laptop,1,1700,01/01/19 15:19,"176 Lake St, Atlanta, GA 30301" +154121,20in Monitor,1,109.99,01/30/19 21:54,"510 10th St, San Francisco, CA 94016" +154122,Bose SoundSport Headphones,1,99.99,01/19/19 22:37,"202 Washington St, San Francisco, CA 94016" +154123,20in Monitor,1,109.99,01/19/19 12:07,"988 Elm St, Los Angeles, CA 90001" +154124,Apple Airpods Headphones,1,150,01/30/19 15:28,"331 Spruce St, San Francisco, CA 94016" +154124,27in FHD Monitor,1,149.99,01/30/19 15:28,"331 Spruce St, San Francisco, CA 94016" +154125,USB-C Charging Cable,1,11.95,01/21/19 08:37,"415 Highland St, Seattle, WA 98101" +154126,USB-C Charging Cable,1,11.95,01/26/19 21:52,"804 7th St, Los Angeles, CA 90001" +154127,Wired Headphones,1,11.99,01/08/19 19:28,"978 Main St, Dallas, TX 75001" +154128,USB-C Charging Cable,2,11.95,01/04/19 21:36,"669 Hill St, New York City, NY 10001" +154129,Lightning Charging Cable,1,14.95,01/07/19 09:45,"59 6th St, Los Angeles, CA 90001" +154130,27in 4K Gaming Monitor,1,389.99,01/10/19 11:41,"899 Center St, Seattle, WA 98101" +154131,Lightning Charging Cable,1,14.95,01/28/19 16:36,"907 Maple St, San Francisco, CA 94016" +154132,USB-C Charging Cable,1,11.95,01/31/19 20:18,"356 1st St, Portland, ME 04101" +154133,Wired Headphones,2,11.99,01/03/19 21:12,"825 Elm St, Portland, OR 97035" +154134,Apple Airpods Headphones,1,150,01/02/19 10:23,"142 Meadow St, Los Angeles, CA 90001" +154135,AA Batteries (4-pack),3,3.84,01/09/19 18:53,"997 Church St, Los Angeles, CA 90001" +154136,Vareebadd Phone,1,400,01/12/19 23:06,"387 13th St, Boston, MA 02215" +154137,34in Ultrawide Monitor,1,379.99,01/26/19 14:55,"433 Maple St, San Francisco, CA 94016" +154138,ThinkPad Laptop,1,999.99,01/17/19 22:21,"436 Dogwood St, Los Angeles, CA 90001" +154139,20in Monitor,1,109.99,01/16/19 17:01,"976 2nd St, Austin, TX 73301" +154140,27in FHD Monitor,1,149.99,01/04/19 14:49,"977 North St, San Francisco, CA 94016" +154141,20in Monitor,1,109.99,01/05/19 11:06,"969 Meadow St, San Francisco, CA 94016" +154142,AAA Batteries (4-pack),1,2.99,01/30/19 16:54,"102 Forest St, Seattle, WA 98101" +154143,USB-C Charging Cable,1,11.95,01/01/19 20:12,"551 Lakeview St, Boston, MA 02215" +154144,AA Batteries (4-pack),1,3.84,01/02/19 11:42,"386 11th St, Los Angeles, CA 90001" +154145,Lightning Charging Cable,1,14.95,01/18/19 04:46,"609 Ridge St, San Francisco, CA 94016" +154146,AA Batteries (4-pack),3,3.84,01/27/19 18:14,"70 Hill St, New York City, NY 10001" +154147,Wired Headphones,1,11.99,01/29/19 00:45,"932 12th St, New York City, NY 10001" +154148,Bose SoundSport Headphones,1,99.99,01/26/19 19:57,"787 Chestnut St, San Francisco, CA 94016" +154149,iPhone,1,700,01/14/19 19:34,"671 South St, Austin, TX 73301" +154149,Lightning Charging Cable,1,14.95,01/14/19 19:34,"671 South St, Austin, TX 73301" +154150,27in 4K Gaming Monitor,1,389.99,01/14/19 20:16,"995 Lake St, San Francisco, CA 94016" +154151,Macbook Pro Laptop,1,1700,01/15/19 22:28,"397 14th St, San Francisco, CA 94016" +154152,Apple Airpods Headphones,1,150,01/10/19 18:53,"375 Lincoln St, Boston, MA 02215" +154153,AA Batteries (4-pack),1,3.84,01/03/19 06:48,"444 4th St, Los Angeles, CA 90001" +154154,USB-C Charging Cable,1,11.95,01/03/19 18:25,"935 Elm St, New York City, NY 10001" +154155,AA Batteries (4-pack),1,3.84,01/31/19 17:46,"626 11th St, Austin, TX 73301" +154156,AAA Batteries (4-pack),1,2.99,01/03/19 18:42,"705 Spruce St, Portland, OR 97035" +154157,Macbook Pro Laptop,1,1700,01/23/19 18:54,"992 Hill St, Portland, OR 97035" +154158,20in Monitor,1,109.99,01/07/19 13:35,"572 Washington St, Los Angeles, CA 90001" +154159,AAA Batteries (4-pack),2,2.99,01/12/19 13:22,"577 Pine St, San Francisco, CA 94016" +154160,34in Ultrawide Monitor,1,379.99,01/18/19 14:49,"698 Johnson St, Los Angeles, CA 90001" +154161,Flatscreen TV,1,300,01/10/19 21:14,"443 Hill St, Austin, TX 73301" +154162,Bose SoundSport Headphones,1,99.99,01/24/19 10:17,"64 North St, New York City, NY 10001" +154163,iPhone,1,700,01/19/19 11:41,"687 5th St, Boston, MA 02215" +154163,Lightning Charging Cable,2,14.95,01/19/19 11:41,"687 5th St, Boston, MA 02215" +154164,Lightning Charging Cable,1,14.95,01/15/19 12:33,"846 6th St, San Francisco, CA 94016" +154165,Google Phone,1,600,01/29/19 10:34,"213 Walnut St, San Francisco, CA 94016" +154166,Apple Airpods Headphones,1,150,01/12/19 14:25,"137 Lincoln St, San Francisco, CA 94016" +154167,27in FHD Monitor,1,149.99,01/19/19 23:57,"339 Main St, Dallas, TX 75001" +154168,20in Monitor,1,109.99,01/11/19 19:36,"40 Wilson St, Los Angeles, CA 90001" +154169,AAA Batteries (4-pack),3,2.99,01/15/19 22:35,"934 Park St, Seattle, WA 98101" +154170,20in Monitor,1,109.99,01/09/19 12:46,"47 13th St, Los Angeles, CA 90001" +154171,Macbook Pro Laptop,1,1700,01/30/19 16:26,"302 Forest St, Seattle, WA 98101" +154172,Apple Airpods Headphones,1,150,01/02/19 18:11,"919 Ridge St, New York City, NY 10001" +154173,Apple Airpods Headphones,1,150,01/11/19 09:47,"786 8th St, San Francisco, CA 94016" +154174,iPhone,1,700,01/12/19 13:47,"631 Lincoln St, Los Angeles, CA 90001" +154175,Wired Headphones,2,11.99,01/22/19 18:12,"554 Lincoln St, Dallas, TX 75001" +154176,Macbook Pro Laptop,1,1700,01/09/19 11:38,"25 13th St, San Francisco, CA 94016" +154177,LG Dryer,1,600.0,01/04/19 23:39,"277 Center St, Los Angeles, CA 90001" +154178,Lightning Charging Cable,1,14.95,01/08/19 20:18,"965 Forest St, New York City, NY 10001" +154179,Apple Airpods Headphones,1,150,01/14/19 23:55,"573 Cherry St, San Francisco, CA 94016" +154180,20in Monitor,1,109.99,01/29/19 08:30,"451 Cherry St, Dallas, TX 75001" +154181,iPhone,1,700,01/16/19 01:12,"24 Lakeview St, Atlanta, GA 30301" +154182,AAA Batteries (4-pack),1,2.99,01/23/19 06:37,"90 Church St, Boston, MA 02215" +154183,Bose SoundSport Headphones,1,99.99,01/13/19 08:17,"896 Adams St, New York City, NY 10001" +154184,Lightning Charging Cable,1,14.95,01/27/19 14:53,"337 Jefferson St, New York City, NY 10001" +154185,AAA Batteries (4-pack),2,2.99,01/19/19 16:15,"400 Pine St, Seattle, WA 98101" +154186,Macbook Pro Laptop,1,1700,01/01/19 12:01,"853 Highland St, Dallas, TX 75001" +154187,AA Batteries (4-pack),1,3.84,01/09/19 17:09,"36 Hickory St, Los Angeles, CA 90001" +154188,USB-C Charging Cable,1,11.95,01/27/19 10:13,"332 North St, Dallas, TX 75001" +154189,AAA Batteries (4-pack),2,2.99,01/16/19 19:38,"651 Elm St, Austin, TX 73301" +154190,Lightning Charging Cable,1,14.95,01/02/19 08:22,"970 1st St, Portland, OR 97035" +154191,AAA Batteries (4-pack),3,2.99,01/20/19 15:14,"580 Cedar St, Boston, MA 02215" +154192,Bose SoundSport Headphones,1,99.99,01/22/19 19:17,"142 14th St, New York City, NY 10001" +154193,Bose SoundSport Headphones,1,99.99,01/02/19 21:37,"623 5th St, Seattle, WA 98101" +154194,Wired Headphones,1,11.99,01/03/19 14:53,"911 Cedar St, Dallas, TX 75001" +154195,20in Monitor,1,109.99,01/29/19 07:48,"510 Adams St, Atlanta, GA 30301" +154196,Wired Headphones,1,11.99,01/28/19 21:11,"811 Meadow St, New York City, NY 10001" +154197,Bose SoundSport Headphones,1,99.99,01/10/19 18:32,"697 Church St, San Francisco, CA 94016" +154198,AA Batteries (4-pack),1,3.84,01/21/19 14:23,"530 9th St, Los Angeles, CA 90001" +154199,AA Batteries (4-pack),1,3.84,01/12/19 21:16,"87 West St, Dallas, TX 75001" +154200,AAA Batteries (4-pack),1,2.99,01/05/19 23:50,"324 7th St, New York City, NY 10001" +154201,34in Ultrawide Monitor,1,379.99,01/25/19 16:10,"253 12th St, Los Angeles, CA 90001" +154202,AA Batteries (4-pack),1,3.84,01/07/19 17:41,"421 Walnut St, Austin, TX 73301" +154203,Apple Airpods Headphones,1,150,01/06/19 19:06,"50 Hill St, Los Angeles, CA 90001" +154204,Lightning Charging Cable,1,14.95,01/18/19 12:16,"999 Maple St, San Francisco, CA 94016" +154205,USB-C Charging Cable,1,11.95,01/05/19 10:40,"601 Walnut St, San Francisco, CA 94016" +154206,27in 4K Gaming Monitor,1,389.99,01/22/19 19:11,"983 Willow St, Dallas, TX 75001" +154207,iPhone,1,700,01/05/19 21:05,"171 Lakeview St, Austin, TX 73301" +154207,Wired Headphones,1,11.99,01/05/19 21:05,"171 Lakeview St, Austin, TX 73301" +154208,Apple Airpods Headphones,1,150,01/16/19 07:54,"883 Elm St, Los Angeles, CA 90001" +154209,Lightning Charging Cable,1,14.95,01/02/19 17:08,"594 River St, Boston, MA 02215" +154210,Wired Headphones,1,11.99,01/01/19 12:41,"744 Chestnut St, Los Angeles, CA 90001" +154211,27in 4K Gaming Monitor,1,389.99,01/08/19 20:02,"936 4th St, Boston, MA 02215" +154212,Apple Airpods Headphones,1,150,01/31/19 12:12,"43 7th St, Los Angeles, CA 90001" +154212,Apple Airpods Headphones,1,150,01/31/19 12:12,"43 7th St, Los Angeles, CA 90001" +154213,LG Dryer,1,600.0,01/12/19 10:24,"637 Cherry St, Boston, MA 02215" +154214,27in FHD Monitor,1,149.99,01/17/19 21:26,"65 North St, Austin, TX 73301" +154215,34in Ultrawide Monitor,1,379.99,01/17/19 20:00,"556 Walnut St, San Francisco, CA 94016" +154216,Lightning Charging Cable,1,14.95,01/25/19 07:32,"934 Lakeview St, Seattle, WA 98101" +154217,Bose SoundSport Headphones,1,99.99,01/14/19 23:18,"809 Walnut St, San Francisco, CA 94016" +154218,Apple Airpods Headphones,1,150,01/30/19 06:46,"105 South St, Atlanta, GA 30301" +154219,AA Batteries (4-pack),1,3.84,01/11/19 14:15,"512 North St, Portland, ME 04101" +154220,AA Batteries (4-pack),1,3.84,01/11/19 17:38,"371 Spruce St, New York City, NY 10001" +154221,AAA Batteries (4-pack),1,2.99,01/20/19 17:15,"240 9th St, Dallas, TX 75001" +154222,USB-C Charging Cable,1,11.95,01/28/19 18:50,"441 5th St, New York City, NY 10001" +154223,Flatscreen TV,1,300,01/30/19 08:08,"480 Adams St, San Francisco, CA 94016" +154224,Wired Headphones,1,11.99,01/14/19 18:57,"384 Jackson St, San Francisco, CA 94016" +154224,27in 4K Gaming Monitor,1,389.99,01/14/19 18:57,"384 Jackson St, San Francisco, CA 94016" +154225,Lightning Charging Cable,1,14.95,01/15/19 18:25,"878 South St, San Francisco, CA 94016" +154226,USB-C Charging Cable,1,11.95,01/16/19 18:47,"325 10th St, New York City, NY 10001" +154227,Macbook Pro Laptop,1,1700,01/31/19 07:59,"215 Adams St, Austin, TX 73301" +154228,Google Phone,1,600,01/29/19 12:42,"184 4th St, Los Angeles, CA 90001" +154229,Lightning Charging Cable,1,14.95,01/13/19 06:39,"878 North St, Portland, OR 97035" +154230,iPhone,1,700,01/10/19 17:20,"104 Hickory St, Seattle, WA 98101" +154230,Lightning Charging Cable,1,14.95,01/10/19 17:20,"104 Hickory St, Seattle, WA 98101" +154231,ThinkPad Laptop,1,999.99,01/30/19 10:46,"772 Adams St, Boston, MA 02215" +154232,Google Phone,1,600,01/31/19 13:09,"310 12th St, San Francisco, CA 94016" +154232,USB-C Charging Cable,1,11.95,01/31/19 13:09,"310 12th St, San Francisco, CA 94016" +154233,AA Batteries (4-pack),1,3.84,01/31/19 14:19,"461 Walnut St, Portland, OR 97035" +154234,Apple Airpods Headphones,1,150,01/19/19 00:29,"889 Lincoln St, Dallas, TX 75001" +154235,Flatscreen TV,1,300,01/12/19 11:21,"521 Main St, Los Angeles, CA 90001" +154236,USB-C Charging Cable,1,11.95,01/23/19 16:34,"359 Spruce St, Los Angeles, CA 90001" +154237,AAA Batteries (4-pack),2,2.99,01/28/19 07:26,"737 7th St, Austin, TX 73301" +154238,Vareebadd Phone,1,400,01/14/19 10:09,"188 11th St, San Francisco, CA 94016" +154239,AAA Batteries (4-pack),1,2.99,01/17/19 20:44,"660 Lakeview St, Seattle, WA 98101" +154240,Wired Headphones,1,11.99,01/23/19 11:16,"921 Pine St, San Francisco, CA 94016" +154241,Lightning Charging Cable,1,14.95,01/02/19 20:47,"53 Walnut St, Atlanta, GA 30301" +154242,27in 4K Gaming Monitor,1,389.99,01/14/19 12:38,"440 13th St, New York City, NY 10001" +154243,Lightning Charging Cable,1,14.95,01/21/19 15:49,"506 West St, San Francisco, CA 94016" +154244,27in FHD Monitor,1,149.99,01/21/19 19:22,"265 Jefferson St, New York City, NY 10001" +154245,Flatscreen TV,1,300,01/18/19 11:27,"11 5th St, Dallas, TX 75001" +154246,27in FHD Monitor,1,149.99,01/10/19 15:26,"863 Jefferson St, San Francisco, CA 94016" +154247,AA Batteries (4-pack),1,3.84,01/09/19 23:34,"346 West St, San Francisco, CA 94016" +154248,USB-C Charging Cable,1,11.95,01/09/19 12:36,"488 Dogwood St, Los Angeles, CA 90001" +154249,iPhone,1,700,01/25/19 09:27,"129 Ridge St, Seattle, WA 98101" +154249,Lightning Charging Cable,1,14.95,01/25/19 09:27,"129 Ridge St, Seattle, WA 98101" +154250,Macbook Pro Laptop,1,1700,01/20/19 23:22,"740 5th St, Los Angeles, CA 90001" +154251,iPhone,1,700,01/10/19 23:19,"754 Maple St, Los Angeles, CA 90001" +154252,USB-C Charging Cable,1,11.95,02/01/19 00:18,"833 Chestnut St, Seattle, WA 98101" +154253,Lightning Charging Cable,1,14.95,01/02/19 19:05,"444 Spruce St, San Francisco, CA 94016" +154254,USB-C Charging Cable,1,11.95,01/13/19 19:38,"869 Lincoln St, Austin, TX 73301" +154255,AA Batteries (4-pack),1,3.84,01/16/19 11:48,"900 Pine St, San Francisco, CA 94016" +154256,Bose SoundSport Headphones,1,99.99,01/09/19 16:48,"482 River St, San Francisco, CA 94016" +154257,AAA Batteries (4-pack),1,2.99,01/06/19 22:37,"511 4th St, San Francisco, CA 94016" +154258,Bose SoundSport Headphones,1,99.99,01/07/19 08:55,"858 4th St, Seattle, WA 98101" +154259,USB-C Charging Cable,1,11.95,01/23/19 13:32,"744 1st St, Los Angeles, CA 90001" +154260,AAA Batteries (4-pack),2,2.99,01/26/19 12:07,"348 14th St, Dallas, TX 75001" +154261,Bose SoundSport Headphones,1,99.99,01/10/19 11:04,"195 Chestnut St, Dallas, TX 75001" +154262,iPhone,1,700,01/14/19 19:43,"447 Lincoln St, Austin, TX 73301" +154263,Apple Airpods Headphones,1,150,01/16/19 15:48,"727 Willow St, Portland, OR 97035" +154264,AA Batteries (4-pack),2,3.84,01/07/19 00:52,"256 6th St, San Francisco, CA 94016" +154265,Wired Headphones,1,11.99,01/20/19 08:32,"828 4th St, Portland, OR 97035" +154266,Lightning Charging Cable,1,14.95,01/21/19 19:41,"107 Jefferson St, San Francisco, CA 94016" +154267,34in Ultrawide Monitor,1,379.99,01/02/19 17:00,"231 Pine St, San Francisco, CA 94016" +154268,Bose SoundSport Headphones,1,99.99,01/28/19 12:32,"71 2nd St, Dallas, TX 75001" +154269,LG Dryer,1,600.0,01/18/19 16:50,"605 Adams St, Los Angeles, CA 90001" +154270,iPhone,1,700,01/29/19 22:12,"439 West St, Seattle, WA 98101" +154271,Apple Airpods Headphones,1,150,01/18/19 17:03,"393 6th St, San Francisco, CA 94016" +154272,AAA Batteries (4-pack),1,2.99,01/14/19 05:31,"681 5th St, Portland, ME 04101" +154273,27in FHD Monitor,1,149.99,01/31/19 22:48,"428 Wilson St, Portland, OR 97035" +154274,Flatscreen TV,1,300,01/11/19 20:00,"478 River St, San Francisco, CA 94016" +154275,Apple Airpods Headphones,1,150,01/20/19 09:59,"929 Highland St, Boston, MA 02215" +154276,Bose SoundSport Headphones,1,99.99,01/20/19 20:28,"451 9th St, Boston, MA 02215" +154277,Lightning Charging Cable,1,14.95,01/14/19 18:10,"327 Elm St, Los Angeles, CA 90001" +154278,AA Batteries (4-pack),2,3.84,01/01/19 18:41,"136 Ridge St, San Francisco, CA 94016" +154279,ThinkPad Laptop,1,999.99,01/24/19 11:32,"481 2nd St, Boston, MA 02215" +154280,20in Monitor,1,109.99,01/03/19 22:56,"453 Highland St, Los Angeles, CA 90001" +154280,Bose SoundSport Headphones,1,99.99,01/03/19 22:56,"453 Highland St, Los Angeles, CA 90001" +154281,Apple Airpods Headphones,1,150,01/05/19 12:04,"133 Center St, Seattle, WA 98101" +154282,AA Batteries (4-pack),1,3.84,01/30/19 13:18,"17 11th St, San Francisco, CA 94016" +154283,20in Monitor,1,109.99,01/24/19 08:00,"641 7th St, Dallas, TX 75001" +154284,Apple Airpods Headphones,1,150,01/05/19 02:42,"58 Elm St, Boston, MA 02215" +154285,27in FHD Monitor,1,149.99,01/11/19 13:29,"697 9th St, Boston, MA 02215" +154286,Wired Headphones,1,11.99,01/08/19 11:09,"5 Jackson St, Boston, MA 02215" +154287,Lightning Charging Cable,1,14.95,01/29/19 23:20,"364 6th St, Dallas, TX 75001" +154288,Google Phone,1,600,01/14/19 15:24,"482 Chestnut St, Boston, MA 02215" +154289,27in 4K Gaming Monitor,1,389.99,01/16/19 08:43,"142 Wilson St, Los Angeles, CA 90001" +154290,Wired Headphones,1,11.99,01/29/19 17:46,"882 11th St, Austin, TX 73301" +154290,34in Ultrawide Monitor,1,379.99,01/29/19 17:46,"882 11th St, Austin, TX 73301" +154291,AA Batteries (4-pack),1,3.84,01/26/19 07:26,"644 Lakeview St, San Francisco, CA 94016" +154291,Vareebadd Phone,1,400,01/26/19 07:26,"644 Lakeview St, San Francisco, CA 94016" +154292,Bose SoundSport Headphones,1,99.99,01/03/19 12:59,"977 Spruce St, Los Angeles, CA 90001" +154293,USB-C Charging Cable,1,11.95,01/22/19 18:55,"562 Jefferson St, Dallas, TX 75001" +154294,Apple Airpods Headphones,1,150,01/15/19 15:27,"775 Washington St, Seattle, WA 98101" +154295,Bose SoundSport Headphones,1,99.99,01/15/19 21:12,"357 1st St, Boston, MA 02215" +154296,AAA Batteries (4-pack),1,2.99,01/27/19 20:16,"336 Jefferson St, San Francisco, CA 94016" +154297,USB-C Charging Cable,1,11.95,01/24/19 12:40,"661 Hill St, Los Angeles, CA 90001" +154298,Google Phone,1,600,01/21/19 01:54,"402 Meadow St, Dallas, TX 75001" +154299,Flatscreen TV,1,300,01/21/19 13:19,"860 Park St, Dallas, TX 75001" +154300,Wired Headphones,3,11.99,01/12/19 16:34,"331 Hill St, Los Angeles, CA 90001" +154301,USB-C Charging Cable,1,11.95,01/19/19 21:44,"710 2nd St, San Francisco, CA 94016" +154302,AA Batteries (4-pack),2,3.84,01/10/19 15:25,"388 Elm St, Portland, OR 97035" +154303,AAA Batteries (4-pack),2,2.99,01/19/19 12:27,"828 13th St, San Francisco, CA 94016" +154304,AAA Batteries (4-pack),3,2.99,01/27/19 09:25,"491 Wilson St, Austin, TX 73301" +154305,Wired Headphones,1,11.99,01/26/19 22:51,"987 Willow St, Atlanta, GA 30301" +154306,27in 4K Gaming Monitor,1,389.99,01/24/19 13:38,"981 Elm St, Portland, ME 04101" +154307,Flatscreen TV,2,300,01/11/19 11:07,"200 1st St, Los Angeles, CA 90001" +154308,Flatscreen TV,1,300,01/22/19 20:46,"638 Walnut St, Los Angeles, CA 90001" +154309,Flatscreen TV,1,300,01/28/19 16:42,"694 Johnson St, San Francisco, CA 94016" +154310,Lightning Charging Cable,1,14.95,01/18/19 10:41,"547 12th St, Los Angeles, CA 90001" +154311,27in FHD Monitor,1,149.99,01/12/19 11:03,"797 5th St, San Francisco, CA 94016" +154312,Lightning Charging Cable,1,14.95,01/06/19 20:43,"757 Washington St, Atlanta, GA 30301" +154313,AAA Batteries (4-pack),1,2.99,01/19/19 00:50,"913 Forest St, Austin, TX 73301" +154314,USB-C Charging Cable,1,11.95,01/31/19 14:23,"621 1st St, Dallas, TX 75001" +154315,Lightning Charging Cable,1,14.95,01/29/19 20:10,"230 14th St, Boston, MA 02215" +154316,iPhone,1,700,01/14/19 20:06,"581 Adams St, Dallas, TX 75001" +154316,Lightning Charging Cable,1,14.95,01/14/19 20:06,"581 Adams St, Dallas, TX 75001" +154317,USB-C Charging Cable,1,11.95,01/04/19 18:41,"964 Meadow St, Los Angeles, CA 90001" +154318,AA Batteries (4-pack),1,3.84,01/02/19 20:10,"952 8th St, New York City, NY 10001" +154319,Macbook Pro Laptop,1,1700,01/18/19 07:44,"718 Dogwood St, Portland, ME 04101" +154320,AA Batteries (4-pack),2,3.84,01/28/19 16:29,"841 5th St, New York City, NY 10001" +154321,Wired Headphones,1,11.99,01/23/19 19:51,"601 6th St, Los Angeles, CA 90001" +154322,Flatscreen TV,1,300,01/07/19 07:51,"747 Washington St, Los Angeles, CA 90001" +154323,20in Monitor,1,109.99,01/07/19 14:08,"67 South St, Boston, MA 02215" +154324,Lightning Charging Cable,1,14.95,01/25/19 22:35,"396 Ridge St, New York City, NY 10001" +154325,Lightning Charging Cable,1,14.95,01/07/19 07:03,"99 Highland St, Boston, MA 02215" +154326,34in Ultrawide Monitor,1,379.99,01/04/19 17:15,"106 Johnson St, Portland, OR 97035" +154327,34in Ultrawide Monitor,1,379.99,01/20/19 15:24,"895 Maple St, Atlanta, GA 30301" +154328,Wired Headphones,2,11.99,01/04/19 16:24,"280 1st St, Los Angeles, CA 90001" +154329,Wired Headphones,1,11.99,01/04/19 23:41,"712 Madison St, San Francisco, CA 94016" +154330,Bose SoundSport Headphones,1,99.99,01/18/19 13:19,"872 South St, Portland, OR 97035" +154331,ThinkPad Laptop,1,999.99,01/02/19 14:21,"388 10th St, Los Angeles, CA 90001" +154332,Vareebadd Phone,1,400,01/27/19 15:51,"752 Sunset St, San Francisco, CA 94016" +154332,Bose SoundSport Headphones,1,99.99,01/27/19 15:51,"752 Sunset St, San Francisco, CA 94016" +154333,Bose SoundSport Headphones,1,99.99,01/06/19 12:31,"748 Hickory St, San Francisco, CA 94016" +154334,Google Phone,1,600,01/21/19 13:42,"314 Lincoln St, Los Angeles, CA 90001" +154334,USB-C Charging Cable,1,11.95,01/21/19 13:42,"314 Lincoln St, Los Angeles, CA 90001" +154335,34in Ultrawide Monitor,1,379.99,01/08/19 00:08,"411 Park St, San Francisco, CA 94016" +154336,34in Ultrawide Monitor,1,379.99,01/07/19 11:44,"734 Lincoln St, Austin, TX 73301" +154337,USB-C Charging Cable,1,11.95,01/29/19 11:42,"927 Maple St, New York City, NY 10001" +154338,27in FHD Monitor,1,149.99,01/30/19 10:54,"781 6th St, Los Angeles, CA 90001" +154339,Wired Headphones,1,11.99,01/23/19 09:21,"101 4th St, Austin, TX 73301" +154340,Lightning Charging Cable,2,14.95,01/07/19 10:01,"899 Dogwood St, Seattle, WA 98101" +154341,ThinkPad Laptop,1,999.99,01/21/19 16:52,"133 Park St, Los Angeles, CA 90001" +154342,Wired Headphones,1,11.99,01/31/19 13:17,"916 Main St, Los Angeles, CA 90001" +154343,USB-C Charging Cable,1,11.95,01/29/19 02:20,"779 Johnson St, San Francisco, CA 94016" +154344,AAA Batteries (4-pack),2,2.99,01/01/19 04:45,"883 4th St, Seattle, WA 98101" +154345,Bose SoundSport Headphones,1,99.99,01/02/19 10:50,"699 13th St, Boston, MA 02215" +154346,Bose SoundSport Headphones,1,99.99,01/26/19 12:05,"725 Walnut St, Seattle, WA 98101" +154347,Wired Headphones,1,11.99,01/23/19 20:26,"619 6th St, Austin, TX 73301" +154348,Bose SoundSport Headphones,1,99.99,01/22/19 22:27,"895 8th St, Portland, ME 04101" +154349,Apple Airpods Headphones,1,150,01/20/19 14:27,"318 Highland St, Los Angeles, CA 90001" +154350,Wired Headphones,1,11.99,01/19/19 19:24,"58 North St, San Francisco, CA 94016" +154351,Apple Airpods Headphones,1,150,01/03/19 05:54,"900 7th St, Dallas, TX 75001" +154352,Vareebadd Phone,1,400,01/21/19 02:52,"637 8th St, San Francisco, CA 94016" +154352,USB-C Charging Cable,1,11.95,01/21/19 02:52,"637 8th St, San Francisco, CA 94016" +154353,AA Batteries (4-pack),1,3.84,01/05/19 22:31,"45 Cherry St, New York City, NY 10001" +154354,Bose SoundSport Headphones,1,99.99,01/08/19 22:36,"353 4th St, New York City, NY 10001" +154355,Wired Headphones,1,11.99,01/15/19 18:51,"456 Washington St, Atlanta, GA 30301" +154356,AAA Batteries (4-pack),1,2.99,01/22/19 21:48,"376 7th St, San Francisco, CA 94016" +154357,AAA Batteries (4-pack),2,2.99,01/31/19 19:23,"930 Madison St, New York City, NY 10001" +154358,Bose SoundSport Headphones,1,99.99,01/02/19 17:08,"430 Highland St, Los Angeles, CA 90001" +154359,Flatscreen TV,1,300,01/02/19 00:51,"37 West St, New York City, NY 10001" +154359,27in 4K Gaming Monitor,1,389.99,01/02/19 00:51,"37 West St, New York City, NY 10001" +154360,USB-C Charging Cable,1,11.95,01/26/19 20:00,"198 Chestnut St, Los Angeles, CA 90001" +154361,Macbook Pro Laptop,1,1700,01/11/19 22:58,"47 5th St, New York City, NY 10001" +154362,Apple Airpods Headphones,1,150,01/16/19 11:36,"799 West St, Los Angeles, CA 90001" +154363,Vareebadd Phone,1,400,01/04/19 13:33,"304 8th St, Dallas, TX 75001" +154364,27in FHD Monitor,1,149.99,01/23/19 19:43,"414 Pine St, New York City, NY 10001" +154365,Lightning Charging Cable,1,14.95,01/15/19 16:35,"332 Ridge St, Dallas, TX 75001" +154366,USB-C Charging Cable,1,11.95,01/23/19 07:41,"223 Center St, Portland, OR 97035" +154367,Lightning Charging Cable,1,14.95,01/11/19 19:04,"87 Walnut St, Seattle, WA 98101" +154368,Bose SoundSport Headphones,1,99.99,01/23/19 20:08,"727 Jefferson St, Seattle, WA 98101" +154369,Wired Headphones,1,11.99,01/21/19 14:01,"683 8th St, Dallas, TX 75001" +154369,Macbook Pro Laptop,1,1700,01/21/19 14:01,"683 8th St, Dallas, TX 75001" +154370,Google Phone,1,600,01/31/19 07:00,"816 11th St, Dallas, TX 75001" +154370,USB-C Charging Cable,1,11.95,01/31/19 07:00,"816 11th St, Dallas, TX 75001" +154371,AA Batteries (4-pack),1,3.84,01/11/19 18:31,"264 Johnson St, New York City, NY 10001" +154372,Flatscreen TV,1,300,01/01/19 15:13,"108 14th St, Los Angeles, CA 90001" +154373,Google Phone,1,600,01/30/19 20:14,"501 Madison St, San Francisco, CA 94016" +154374,AA Batteries (4-pack),1,3.84,01/18/19 17:34,"669 Jackson St, Portland, OR 97035" +154375,iPhone,1,700,01/12/19 11:47,"786 Center St, Atlanta, GA 30301" +154376,AAA Batteries (4-pack),3,2.99,01/30/19 18:11,"246 Cherry St, Dallas, TX 75001" +154377,Flatscreen TV,1,300,01/06/19 09:34,"285 Elm St, San Francisco, CA 94016" +154378,ThinkPad Laptop,1,999.99,01/22/19 17:37,"846 8th St, Los Angeles, CA 90001" +154379,27in FHD Monitor,1,149.99,01/28/19 20:16,"220 Ridge St, Los Angeles, CA 90001" +154380,iPhone,1,700,01/13/19 01:17,"474 12th St, Portland, OR 97035" +154381,AA Batteries (4-pack),1,3.84,01/26/19 20:29,"975 South St, San Francisco, CA 94016" +154382,Wired Headphones,1,11.99,01/17/19 13:35,"139 Hickory St, San Francisco, CA 94016" +154383,Google Phone,1,600,01/29/19 19:22,"156 Johnson St, Los Angeles, CA 90001" +154384,AA Batteries (4-pack),1,3.84,01/23/19 07:43,"153 Washington St, Dallas, TX 75001" +154385,AAA Batteries (4-pack),1,2.99,01/17/19 09:16,"780 Adams St, Austin, TX 73301" +154386,USB-C Charging Cable,1,11.95,01/18/19 14:08,"344 Maple St, Boston, MA 02215" +154387,AA Batteries (4-pack),1,3.84,01/28/19 23:11,"670 Elm St, Boston, MA 02215" +154388,27in 4K Gaming Monitor,1,389.99,01/07/19 22:43,"917 Spruce St, New York City, NY 10001" +154389,Lightning Charging Cable,1,14.95,01/26/19 08:48,"960 Madison St, Dallas, TX 75001" +154390,Lightning Charging Cable,1,14.95,01/21/19 13:24,"771 North St, Boston, MA 02215" +154391,AAA Batteries (4-pack),1,2.99,01/29/19 10:52,"40 13th St, Austin, TX 73301" +154392,AA Batteries (4-pack),2,3.84,01/11/19 22:04,"868 Cherry St, Los Angeles, CA 90001" +154393,Macbook Pro Laptop,1,1700,01/24/19 10:48,"921 1st St, New York City, NY 10001" +154394,iPhone,1,700,01/12/19 22:24,"232 Sunset St, Atlanta, GA 30301" +154394,Lightning Charging Cable,1,14.95,01/12/19 22:24,"232 Sunset St, Atlanta, GA 30301" +154394,Wired Headphones,1,11.99,01/12/19 22:24,"232 Sunset St, Atlanta, GA 30301" +154395,AAA Batteries (4-pack),1,2.99,01/14/19 11:47,"897 Maple St, Austin, TX 73301" +154396,Wired Headphones,1,11.99,01/31/19 18:06,"506 4th St, Dallas, TX 75001" +154397,Flatscreen TV,1,300,01/07/19 11:25,"422 5th St, Los Angeles, CA 90001" +154398,USB-C Charging Cable,1,11.95,01/02/19 00:00,"648 Elm St, Los Angeles, CA 90001" +154399,iPhone,1,700,01/12/19 11:45,"337 Elm St, Los Angeles, CA 90001" +154399,Lightning Charging Cable,1,14.95,01/12/19 11:45,"337 Elm St, Los Angeles, CA 90001" +154400,Wired Headphones,2,11.99,01/20/19 13:55,"294 Maple St, San Francisco, CA 94016" +154401,Wired Headphones,1,11.99,01/02/19 22:07,"843 West St, Portland, OR 97035" +154402,AA Batteries (4-pack),2,3.84,01/19/19 20:13,"163 North St, Boston, MA 02215" +154403,USB-C Charging Cable,1,11.95,01/18/19 11:54,"130 1st St, Atlanta, GA 30301" +154404,Bose SoundSport Headphones,1,99.99,01/03/19 19:59,"438 11th St, Atlanta, GA 30301" +154405,USB-C Charging Cable,1,11.95,01/29/19 16:39,"785 Cherry St, Atlanta, GA 30301" +154406,USB-C Charging Cable,1,11.95,01/22/19 11:24,"694 Dogwood St, San Francisco, CA 94016" +154407,34in Ultrawide Monitor,1,379.99,01/04/19 18:54,"371 Jefferson St, Boston, MA 02215" +154408,Google Phone,1,600,01/30/19 14:13,"932 8th St, Boston, MA 02215" +154408,USB-C Charging Cable,1,11.95,01/30/19 14:13,"932 8th St, Boston, MA 02215" +154409,USB-C Charging Cable,1,11.95,01/07/19 16:04,"284 Chestnut St, Boston, MA 02215" +154410,Wired Headphones,1,11.99,01/24/19 19:26,"55 Walnut St, New York City, NY 10001" +154411,USB-C Charging Cable,1,11.95,01/19/19 22:58,"904 Cedar St, New York City, NY 10001" +154412,AA Batteries (4-pack),3,3.84,01/05/19 21:09,"266 Lake St, Los Angeles, CA 90001" +154413,USB-C Charging Cable,2,11.95,01/11/19 22:20,"628 Wilson St, San Francisco, CA 94016" +154414,ThinkPad Laptop,1,999.99,01/04/19 08:19,"793 Highland St, San Francisco, CA 94016" +154415,AAA Batteries (4-pack),1,2.99,01/25/19 21:52,"348 South St, Boston, MA 02215" +154416,Wired Headphones,1,11.99,01/02/19 13:46,"914 Hickory St, San Francisco, CA 94016" +154417,Bose SoundSport Headphones,1,99.99,01/13/19 10:57,"408 Highland St, New York City, NY 10001" +154418,AA Batteries (4-pack),1,3.84,01/28/19 16:49,"51 South St, San Francisco, CA 94016" +154419,Flatscreen TV,1,300,01/19/19 11:19,"179 Lake St, San Francisco, CA 94016" +154420,Apple Airpods Headphones,1,150,01/25/19 18:31,"187 1st St, New York City, NY 10001" +154421,USB-C Charging Cable,2,11.95,01/30/19 13:19,"409 Adams St, Atlanta, GA 30301" +154422,20in Monitor,1,109.99,01/16/19 20:01,"941 Wilson St, Boston, MA 02215" +154423,Apple Airpods Headphones,1,150,01/08/19 00:46,"600 Church St, Dallas, TX 75001" +154424,Lightning Charging Cable,1,14.95,01/18/19 09:36,"684 Ridge St, Los Angeles, CA 90001" +154425,Apple Airpods Headphones,1,150,01/30/19 14:04,"26 13th St, New York City, NY 10001" +154426,Vareebadd Phone,1,400,01/17/19 03:14,"94 Lincoln St, Los Angeles, CA 90001" +154426,Wired Headphones,1,11.99,01/17/19 03:14,"94 Lincoln St, Los Angeles, CA 90001" +154427,AA Batteries (4-pack),1,3.84,01/09/19 14:19,"307 Hickory St, San Francisco, CA 94016" +154428,Bose SoundSport Headphones,1,99.99,01/14/19 20:12,"648 Chestnut St, Dallas, TX 75001" +154429,USB-C Charging Cable,1,11.95,01/17/19 18:37,"120 Dogwood St, Boston, MA 02215" +154430,Lightning Charging Cable,1,14.95,01/27/19 11:24,"482 Highland St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +154431,Wired Headphones,1,11.99,01/28/19 12:12,"203 14th St, San Francisco, CA 94016" +154432,Lightning Charging Cable,1,14.95,01/02/19 11:09,"550 Dogwood St, Boston, MA 02215" +154433,Wired Headphones,1,11.99,01/04/19 14:16,"498 Wilson St, Los Angeles, CA 90001" +154434,ThinkPad Laptop,1,999.99,01/28/19 01:20,"389 Hickory St, San Francisco, CA 94016" +154435,AAA Batteries (4-pack),1,2.99,01/12/19 17:42,"812 Lincoln St, New York City, NY 10001" +154436,USB-C Charging Cable,1,11.95,01/25/19 14:03,"975 Jackson St, San Francisco, CA 94016" +154437,Lightning Charging Cable,1,14.95,01/05/19 23:58,"381 West St, San Francisco, CA 94016" +154438,Lightning Charging Cable,2,14.95,01/01/19 17:29,"111 9th St, New York City, NY 10001" +154439,AA Batteries (4-pack),1,3.84,01/14/19 15:21,"540 Elm St, Atlanta, GA 30301" +154440,USB-C Charging Cable,1,11.95,01/29/19 11:20,"426 Cherry St, San Francisco, CA 94016" +154441,AA Batteries (4-pack),1,3.84,01/24/19 11:53,"12 Meadow St, Los Angeles, CA 90001" +154442,20in Monitor,1,109.99,01/11/19 14:17,"169 Wilson St, Portland, OR 97035" +154443,27in FHD Monitor,1,149.99,01/04/19 13:11,"216 Cedar St, Atlanta, GA 30301" +154444,27in 4K Gaming Monitor,1,389.99,01/12/19 13:28,"959 Maple St, San Francisco, CA 94016" +154444,Wired Headphones,1,11.99,01/12/19 13:28,"959 Maple St, San Francisco, CA 94016" +154445,Google Phone,1,600,01/07/19 00:41,"327 Cherry St, New York City, NY 10001" +154446,Wired Headphones,1,11.99,01/04/19 20:19,"998 1st St, Los Angeles, CA 90001" +154447,AAA Batteries (4-pack),2,2.99,01/16/19 08:29,"758 River St, Dallas, TX 75001" +154448,AAA Batteries (4-pack),2,2.99,01/04/19 17:19,"51 Dogwood St, Dallas, TX 75001" +154449,Lightning Charging Cable,1,14.95,01/08/19 20:15,"473 North St, Seattle, WA 98101" +154450,USB-C Charging Cable,1,11.95,01/27/19 17:20,"119 Meadow St, New York City, NY 10001" +154451,Wired Headphones,1,11.99,01/31/19 19:32,"832 Lake St, Austin, TX 73301" +154452,AAA Batteries (4-pack),1,2.99,01/03/19 20:37,"423 Church St, New York City, NY 10001" +154453,USB-C Charging Cable,1,11.95,01/11/19 20:14,"311 Church St, New York City, NY 10001" +154454,Wired Headphones,1,11.99,01/18/19 12:57,"996 Pine St, New York City, NY 10001" +154455,ThinkPad Laptop,1,999.99,01/19/19 22:52,"488 Walnut St, San Francisco, CA 94016" +154456,Apple Airpods Headphones,1,150,01/28/19 15:25,"500 Lake St, San Francisco, CA 94016" +154457,AAA Batteries (4-pack),2,2.99,01/26/19 18:48,"626 Cedar St, Seattle, WA 98101" +154458,AAA Batteries (4-pack),1,2.99,01/04/19 15:35,"342 Spruce St, Boston, MA 02215" +154459,Lightning Charging Cable,1,14.95,01/27/19 16:02,"340 14th St, Dallas, TX 75001" +154460,Lightning Charging Cable,1,14.95,01/30/19 10:42,"67 Pine St, New York City, NY 10001" +154461,AA Batteries (4-pack),1,3.84,01/08/19 18:11,"573 2nd St, Atlanta, GA 30301" +154462,USB-C Charging Cable,1,11.95,01/05/19 18:40,"533 4th St, Austin, TX 73301" +154463,Bose SoundSport Headphones,1,99.99,01/18/19 11:28,"8 1st St, San Francisco, CA 94016" +154464,USB-C Charging Cable,1,11.95,01/22/19 15:19,"211 Washington St, Seattle, WA 98101" +154465,Lightning Charging Cable,1,14.95,01/31/19 21:52,"858 Highland St, San Francisco, CA 94016" +154466,Lightning Charging Cable,1,14.95,01/26/19 19:59,"216 2nd St, Atlanta, GA 30301" +154467,AAA Batteries (4-pack),2,2.99,01/28/19 17:02,"342 1st St, Dallas, TX 75001" +154468,27in FHD Monitor,1,149.99,01/28/19 09:23,"887 Cherry St, New York City, NY 10001" +154469,iPhone,1,700,01/14/19 20:57,"797 8th St, Portland, OR 97035" +154470,AAA Batteries (4-pack),1,2.99,01/04/19 13:51,"266 5th St, San Francisco, CA 94016" +154471,Bose SoundSport Headphones,1,99.99,01/15/19 14:17,"839 Chestnut St, San Francisco, CA 94016" +154472,ThinkPad Laptop,1,999.99,01/31/19 22:26,"566 River St, Boston, MA 02215" +154473,USB-C Charging Cable,1,11.95,01/03/19 12:35,"306 Pine St, Atlanta, GA 30301" +154474,Apple Airpods Headphones,1,150,01/15/19 10:04,"356 Chestnut St, Seattle, WA 98101" +154475,Wired Headphones,1,11.99,01/20/19 15:54,"655 River St, Portland, OR 97035" +154476,20in Monitor,1,109.99,01/08/19 15:36,"962 Madison St, Seattle, WA 98101" +154477,Macbook Pro Laptop,1,1700,01/04/19 07:01,"949 Center St, Los Angeles, CA 90001" +154477,Wired Headphones,1,11.99,01/04/19 07:01,"949 Center St, Los Angeles, CA 90001" +154478,iPhone,1,700,01/06/19 18:25,"665 11th St, San Francisco, CA 94016" +154478,Apple Airpods Headphones,1,150,01/06/19 18:25,"665 11th St, San Francisco, CA 94016" +154479,AA Batteries (4-pack),1,3.84,01/29/19 11:44,"444 9th St, Boston, MA 02215" +154480,AAA Batteries (4-pack),1,2.99,01/12/19 19:44,"390 Elm St, San Francisco, CA 94016" +154481,AAA Batteries (4-pack),1,2.99,01/19/19 13:01,"199 6th St, San Francisco, CA 94016" +154482,27in 4K Gaming Monitor,1,389.99,01/25/19 21:57,"726 Willow St, San Francisco, CA 94016" +154483,Apple Airpods Headphones,1,150,01/22/19 11:12,"112 Wilson St, Austin, TX 73301" +154484,LG Washing Machine,1,600.0,01/19/19 12:39,"110 Lake St, New York City, NY 10001" +154485,AA Batteries (4-pack),2,3.84,01/11/19 18:55,"324 Highland St, Austin, TX 73301" +154486,AA Batteries (4-pack),1,3.84,01/16/19 14:23,"776 Center St, Boston, MA 02215" +154487,Google Phone,1,600,01/09/19 14:26,"399 2nd St, Dallas, TX 75001" +154488,iPhone,1,700,01/11/19 03:21,"139 Forest St, Los Angeles, CA 90001" +154489,AA Batteries (4-pack),1,3.84,01/04/19 17:18,"864 Elm St, Boston, MA 02215" +154490,Wired Headphones,1,11.99,01/25/19 15:27,"37 1st St, Seattle, WA 98101" +154491,USB-C Charging Cable,1,11.95,01/31/19 22:13,"21 North St, San Francisco, CA 94016" +154492,27in 4K Gaming Monitor,1,389.99,01/29/19 22:39,"47 Lake St, San Francisco, CA 94016" +154493,Bose SoundSport Headphones,1,99.99,01/03/19 20:38,"751 Sunset St, San Francisco, CA 94016" +154494,27in 4K Gaming Monitor,1,389.99,01/26/19 20:50,"53 Sunset St, San Francisco, CA 94016" +154495,USB-C Charging Cable,1,11.95,01/21/19 20:44,"130 10th St, Austin, TX 73301" +154496,AAA Batteries (4-pack),1,2.99,01/05/19 08:21,"334 Hill St, New York City, NY 10001" +154497,AA Batteries (4-pack),1,3.84,01/11/19 15:32,"750 Church St, Los Angeles, CA 90001" +154498,USB-C Charging Cable,1,11.95,01/18/19 12:32,"668 Jackson St, Portland, OR 97035" +154499,Bose SoundSport Headphones,1,99.99,01/24/19 15:15,"914 Willow St, Austin, TX 73301" +154499,Apple Airpods Headphones,1,150,01/24/19 15:15,"914 Willow St, Austin, TX 73301" +154500,USB-C Charging Cable,1,11.95,01/03/19 10:49,"382 12th St, New York City, NY 10001" +154501,USB-C Charging Cable,1,11.95,01/01/19 15:42,"897 8th St, New York City, NY 10001" +154502,iPhone,1,700,01/12/19 11:09,"192 West St, New York City, NY 10001" +154503,AA Batteries (4-pack),1,3.84,01/13/19 20:52,"286 Meadow St, New York City, NY 10001" +154504,USB-C Charging Cable,1,11.95,01/15/19 12:43,"99 Park St, Dallas, TX 75001" +154505,Apple Airpods Headphones,1,150,01/20/19 12:25,"29 Lake St, Boston, MA 02215" +154506,AA Batteries (4-pack),1,3.84,01/22/19 11:06,"290 Adams St, New York City, NY 10001" +154507,AA Batteries (4-pack),1,3.84,01/10/19 11:28,"193 Highland St, Los Angeles, CA 90001" +154508,Apple Airpods Headphones,1,150,01/14/19 11:23,"444 Park St, Boston, MA 02215" +154509,USB-C Charging Cable,1,11.95,01/06/19 20:02,"197 Elm St, Los Angeles, CA 90001" +154510,Apple Airpods Headphones,1,150,01/04/19 21:59,"236 Spruce St, Seattle, WA 98101" +154511,USB-C Charging Cable,1,11.95,01/10/19 10:51,"266 Lakeview St, Dallas, TX 75001" +154512,Bose SoundSport Headphones,1,99.99,01/18/19 01:39,"392 South St, San Francisco, CA 94016" +154513,AAA Batteries (4-pack),1,2.99,01/13/19 14:28,"865 West St, San Francisco, CA 94016" +154514,USB-C Charging Cable,1,11.95,01/20/19 17:40,"609 Spruce St, Los Angeles, CA 90001" +154515,AA Batteries (4-pack),2,3.84,01/24/19 01:04,"184 Center St, Dallas, TX 75001" +154516,Bose SoundSport Headphones,1,99.99,01/26/19 19:23,"243 4th St, San Francisco, CA 94016" +154517,Bose SoundSport Headphones,1,99.99,01/10/19 15:03,"393 Johnson St, San Francisco, CA 94016" +154518,iPhone,1,700,01/01/19 14:14,"552 Wilson St, Seattle, WA 98101" +154519,USB-C Charging Cable,1,11.95,01/12/19 13:35,"654 Jackson St, Dallas, TX 75001" +154519,Lightning Charging Cable,2,14.95,01/12/19 13:35,"654 Jackson St, Dallas, TX 75001" +154520,Lightning Charging Cable,1,14.95,01/24/19 15:20,"522 Johnson St, San Francisco, CA 94016" +154521,LG Dryer,1,600.0,01/16/19 09:27,"513 Lincoln St, Los Angeles, CA 90001" +154522,Google Phone,1,600,01/19/19 16:40,"583 2nd St, Seattle, WA 98101" +154523,USB-C Charging Cable,1,11.95,01/15/19 13:52,"214 Park St, Boston, MA 02215" +154524,Google Phone,1,600,01/02/19 14:28,"662 4th St, San Francisco, CA 94016" +154525,AA Batteries (4-pack),1,3.84,01/06/19 10:27,"465 Highland St, New York City, NY 10001" +154526,USB-C Charging Cable,1,11.95,01/03/19 23:21,"69 North St, San Francisco, CA 94016" +154527,ThinkPad Laptop,1,999.99,01/15/19 19:48,"171 Park St, Portland, OR 97035" +154528,27in 4K Gaming Monitor,1,389.99,01/04/19 11:21,"809 5th St, Atlanta, GA 30301" +154529,27in FHD Monitor,1,149.99,01/25/19 22:29,"530 Willow St, Dallas, TX 75001" +154530,Apple Airpods Headphones,1,150,01/12/19 20:12,"249 4th St, Los Angeles, CA 90001" +154531,Apple Airpods Headphones,1,150,01/10/19 01:13,"928 14th St, Atlanta, GA 30301" +154532,ThinkPad Laptop,1,999.99,01/04/19 22:31,"894 Lincoln St, Boston, MA 02215" +154533,Wired Headphones,1,11.99,01/26/19 13:43,"896 River St, Los Angeles, CA 90001" +154534,Lightning Charging Cable,1,14.95,01/07/19 07:57,"448 Hickory St, New York City, NY 10001" +154535,ThinkPad Laptop,1,999.99,01/26/19 21:42,"154 South St, San Francisco, CA 94016" +154536,20in Monitor,1,109.99,01/03/19 15:32,"479 Spruce St, Atlanta, GA 30301" +154537,Vareebadd Phone,1,400,01/06/19 14:34,"612 Hill St, Dallas, TX 75001" +154538,Lightning Charging Cable,1,14.95,01/05/19 21:35,"49 Madison St, Austin, TX 73301" +154539,27in 4K Gaming Monitor,1,389.99,01/15/19 09:24,"896 South St, Seattle, WA 98101" +154540,Apple Airpods Headphones,1,150,01/21/19 16:41,"644 Johnson St, Dallas, TX 75001" +154541,ThinkPad Laptop,1,999.99,01/06/19 19:46,"721 Elm St, San Francisco, CA 94016" +154542,20in Monitor,1,109.99,01/11/19 12:20,"167 Willow St, San Francisco, CA 94016" +154543,iPhone,1,700,01/23/19 12:50,"607 Lincoln St, Dallas, TX 75001" +154544,AAA Batteries (4-pack),1,2.99,01/15/19 12:39,"396 Spruce St, San Francisco, CA 94016" +154545,Lightning Charging Cable,1,14.95,01/26/19 21:07,"234 11th St, New York City, NY 10001" +154546,20in Monitor,1,109.99,01/13/19 13:56,"455 North St, Atlanta, GA 30301" +154547,iPhone,1,700,01/07/19 02:22,"493 Willow St, Atlanta, GA 30301" +154548,Macbook Pro Laptop,1,1700,01/10/19 10:34,"392 Church St, Los Angeles, CA 90001" +154549,Lightning Charging Cable,1,14.95,01/05/19 09:54,"575 Meadow St, Los Angeles, CA 90001" +154550,Lightning Charging Cable,1,14.95,01/23/19 16:04,"973 Highland St, Dallas, TX 75001" +154551,USB-C Charging Cable,1,11.95,01/07/19 09:44,"189 Wilson St, New York City, NY 10001" +154552,AA Batteries (4-pack),1,3.84,01/10/19 06:34,"798 1st St, Seattle, WA 98101" +154553,Lightning Charging Cable,1,14.95,01/21/19 21:20,"624 Hill St, Atlanta, GA 30301" +,,,,, +154554,Lightning Charging Cable,1,14.95,01/19/19 11:12,"462 North St, San Francisco, CA 94016" +154554,34in Ultrawide Monitor,1,379.99,01/19/19 11:12,"462 North St, San Francisco, CA 94016" +154555,Wired Headphones,1,11.99,01/08/19 07:32,"217 Walnut St, Boston, MA 02215" +154556,Flatscreen TV,1,300,01/27/19 18:53,"837 Washington St, Seattle, WA 98101" +154557,Bose SoundSport Headphones,1,99.99,01/03/19 22:39,"881 1st St, Seattle, WA 98101" +154558,Bose SoundSport Headphones,1,99.99,01/24/19 14:15,"141 Main St, Atlanta, GA 30301" +154559,Flatscreen TV,1,300,01/23/19 15:45,"428 Madison St, San Francisco, CA 94016" +154560,Apple Airpods Headphones,1,150,01/27/19 13:06,"980 Willow St, Portland, OR 97035" +154561,Wired Headphones,2,11.99,01/25/19 23:23,"112 Chestnut St, Boston, MA 02215" +154562,AAA Batteries (4-pack),2,2.99,01/10/19 10:56,"667 Elm St, Los Angeles, CA 90001" +154563,Apple Airpods Headphones,1,150,01/26/19 08:52,"943 South St, San Francisco, CA 94016" +154564,AA Batteries (4-pack),1,3.84,01/18/19 17:18,"628 River St, San Francisco, CA 94016" +154565,27in FHD Monitor,1,149.99,01/22/19 21:46,"991 Sunset St, Los Angeles, CA 90001" +154566,20in Monitor,1,109.99,01/11/19 00:08,"828 River St, Austin, TX 73301" +154567,Bose SoundSport Headphones,1,99.99,01/30/19 21:59,"933 7th St, Los Angeles, CA 90001" +154568,Wired Headphones,1,11.99,01/07/19 06:58,"512 Hickory St, San Francisco, CA 94016" +154569,27in 4K Gaming Monitor,1,389.99,01/31/19 10:24,"598 Center St, San Francisco, CA 94016" +154570,Apple Airpods Headphones,1,150,01/24/19 15:04,"801 Main St, Dallas, TX 75001" +154571,27in FHD Monitor,1,149.99,01/03/19 16:48,"740 South St, Dallas, TX 75001" +154572,AA Batteries (4-pack),3,3.84,01/24/19 23:07,"639 Lake St, Seattle, WA 98101" +154573,Lightning Charging Cable,1,14.95,01/24/19 17:08,"81 14th St, San Francisco, CA 94016" +154574,AAA Batteries (4-pack),2,2.99,01/14/19 19:01,"912 13th St, Los Angeles, CA 90001" +154575,USB-C Charging Cable,1,11.95,01/06/19 19:06,"551 Lincoln St, Los Angeles, CA 90001" +154576,Lightning Charging Cable,1,14.95,01/01/19 09:11,"540 7th St, Boston, MA 02215" +154577,20in Monitor,1,109.99,01/22/19 18:48,"936 14th St, San Francisco, CA 94016" +154578,Macbook Pro Laptop,1,1700,01/19/19 09:37,"243 Elm St, Boston, MA 02215" +154579,Wired Headphones,1,11.99,01/25/19 06:25,"737 14th St, Los Angeles, CA 90001" +154580,27in FHD Monitor,1,149.99,01/18/19 20:08,"443 Meadow St, Portland, OR 97035" +154581,Wired Headphones,1,11.99,01/16/19 11:11,"536 Madison St, New York City, NY 10001" +154582,Wired Headphones,1,11.99,01/31/19 17:56,"646 8th St, New York City, NY 10001" +154583,Apple Airpods Headphones,1,150,01/03/19 08:32,"356 Jackson St, Boston, MA 02215" +154584,AAA Batteries (4-pack),1,2.99,01/31/19 13:58,"693 Meadow St, San Francisco, CA 94016" +154585,Bose SoundSport Headphones,1,99.99,01/09/19 17:53,"457 Lake St, Los Angeles, CA 90001" +154586,Bose SoundSport Headphones,1,99.99,01/21/19 07:40,"963 River St, Boston, MA 02215" +154587,27in FHD Monitor,1,149.99,01/01/19 16:32,"278 Spruce St, Boston, MA 02215" +154588,Wired Headphones,2,11.99,01/16/19 13:51,"88 Spruce St, Los Angeles, CA 90001" +154589,AA Batteries (4-pack),1,3.84,01/29/19 19:29,"129 Jackson St, Dallas, TX 75001" +154590,27in 4K Gaming Monitor,1,389.99,01/31/19 19:59,"36 2nd St, San Francisco, CA 94016" +154591,27in FHD Monitor,1,149.99,01/17/19 14:21,"994 Willow St, Seattle, WA 98101" +154592,27in 4K Gaming Monitor,1,389.99,01/22/19 21:38,"813 8th St, Austin, TX 73301" +154593,Macbook Pro Laptop,1,1700,01/22/19 11:21,"405 13th St, Boston, MA 02215" +154594,Lightning Charging Cable,1,14.95,01/27/19 14:15,"213 Wilson St, Dallas, TX 75001" +154595,Wired Headphones,1,11.99,01/30/19 09:05,"626 Sunset St, Los Angeles, CA 90001" +154596,Lightning Charging Cable,1,14.95,01/09/19 17:21,"443 Hill St, Portland, OR 97035" +154597,Macbook Pro Laptop,1,1700,01/22/19 14:47,"490 Adams St, Seattle, WA 98101" +154598,Apple Airpods Headphones,1,150,01/20/19 20:42,"772 Hill St, Dallas, TX 75001" +154599,Bose SoundSport Headphones,1,99.99,01/04/19 22:07,"201 Elm St, Los Angeles, CA 90001" +154600,iPhone,1,700,01/04/19 15:04,"197 Highland St, San Francisco, CA 94016" +154601,AA Batteries (4-pack),1,3.84,01/31/19 18:30,"153 Jackson St, San Francisco, CA 94016" +154602,USB-C Charging Cable,1,11.95,01/22/19 15:51,"395 Elm St, San Francisco, CA 94016" +154603,AAA Batteries (4-pack),3,2.99,01/20/19 19:55,"889 Jefferson St, Los Angeles, CA 90001" +154604,Wired Headphones,1,11.99,01/04/19 20:16,"844 11th St, New York City, NY 10001" +154605,27in 4K Gaming Monitor,1,389.99,01/29/19 21:39,"236 1st St, Boston, MA 02215" +154606,Vareebadd Phone,1,400,01/29/19 11:55,"70 14th St, New York City, NY 10001" +154607,USB-C Charging Cable,1,11.95,01/04/19 13:43,"169 13th St, Atlanta, GA 30301" +154608,AA Batteries (4-pack),1,3.84,01/21/19 21:57,"621 Center St, Boston, MA 02215" +154609,Lightning Charging Cable,1,14.95,01/04/19 21:41,"553 Main St, Los Angeles, CA 90001" +154610,USB-C Charging Cable,1,11.95,01/31/19 20:38,"600 9th St, Boston, MA 02215" +154611,Flatscreen TV,1,300,01/17/19 10:46,"492 North St, Los Angeles, CA 90001" +154612,AAA Batteries (4-pack),2,2.99,01/28/19 16:49,"295 Park St, Dallas, TX 75001" +154613,Lightning Charging Cable,1,14.95,01/18/19 11:22,"504 13th St, Dallas, TX 75001" +154614,ThinkPad Laptop,1,999.99,01/17/19 11:13,"587 Main St, New York City, NY 10001" +154615,AA Batteries (4-pack),1,3.84,01/21/19 16:54,"732 Cedar St, Boston, MA 02215" +154616,Apple Airpods Headphones,1,150,01/28/19 07:31,"137 Madison St, San Francisco, CA 94016" +154617,Lightning Charging Cable,1,14.95,01/14/19 09:29,"13 4th St, Los Angeles, CA 90001" +154618,Lightning Charging Cable,1,14.95,01/29/19 09:51,"927 Chestnut St, New York City, NY 10001" +154619,AAA Batteries (4-pack),2,2.99,01/03/19 12:14,"463 14th St, Boston, MA 02215" +154620,AAA Batteries (4-pack),1,2.99,01/06/19 06:41,"228 13th St, Los Angeles, CA 90001" +154621,Vareebadd Phone,1,400,01/06/19 17:34,"170 Elm St, Seattle, WA 98101" +154622,AAA Batteries (4-pack),1,2.99,01/29/19 13:12,"292 Lakeview St, Atlanta, GA 30301" +154623,AAA Batteries (4-pack),1,2.99,01/26/19 16:45,"194 Ridge St, San Francisco, CA 94016" +154624,USB-C Charging Cable,1,11.95,01/10/19 00:01,"21 West St, Los Angeles, CA 90001" +154625,USB-C Charging Cable,1,11.95,01/12/19 13:56,"784 Maple St, Los Angeles, CA 90001" +154626,Apple Airpods Headphones,1,150,01/02/19 22:37,"333 West St, Atlanta, GA 30301" +154627,Apple Airpods Headphones,1,150,01/10/19 18:49,"140 South St, Dallas, TX 75001" +154628,AAA Batteries (4-pack),1,2.99,01/27/19 05:23,"681 8th St, Boston, MA 02215" +154629,AAA Batteries (4-pack),1,2.99,01/05/19 10:38,"944 Park St, Portland, OR 97035" +154630,20in Monitor,1,109.99,01/07/19 07:31,"981 12th St, Seattle, WA 98101" +154631,27in FHD Monitor,1,149.99,01/06/19 20:39,"225 1st St, Los Angeles, CA 90001" +154632,AAA Batteries (4-pack),2,2.99,01/20/19 09:10,"834 Church St, Seattle, WA 98101" +154633,Bose SoundSport Headphones,1,99.99,01/05/19 20:22,"951 8th St, Dallas, TX 75001" +154634,AAA Batteries (4-pack),1,2.99,01/31/19 22:50,"665 11th St, San Francisco, CA 94016" +154635,Bose SoundSport Headphones,1,99.99,01/27/19 23:38,"885 River St, San Francisco, CA 94016" +154636,27in FHD Monitor,1,149.99,01/26/19 08:13,"831 Main St, Atlanta, GA 30301" +154637,AA Batteries (4-pack),2,3.84,01/22/19 20:33,"750 Walnut St, Dallas, TX 75001" +154638,Google Phone,1,600,01/01/19 09:05,"253 11th St, Atlanta, GA 30301" +154638,USB-C Charging Cable,1,11.95,01/01/19 09:05,"253 11th St, Atlanta, GA 30301" +154639,Bose SoundSport Headphones,1,99.99,01/05/19 17:39,"137 10th St, Atlanta, GA 30301" +154640,Apple Airpods Headphones,1,150,01/03/19 09:14,"978 Park St, San Francisco, CA 94016" +154641,Bose SoundSport Headphones,1,99.99,01/09/19 13:45,"482 Sunset St, San Francisco, CA 94016" +154642,AAA Batteries (4-pack),2,2.99,01/07/19 11:17,"628 Washington St, Los Angeles, CA 90001" +154643,AAA Batteries (4-pack),2,2.99,01/30/19 21:56,"348 Jackson St, San Francisco, CA 94016" +154644,Apple Airpods Headphones,1,150,01/26/19 18:58,"630 Lincoln St, San Francisco, CA 94016" +154645,AAA Batteries (4-pack),1,2.99,01/29/19 15:44,"398 Hill St, Dallas, TX 75001" +154646,Bose SoundSport Headphones,1,99.99,01/13/19 09:48,"251 Spruce St, Los Angeles, CA 90001" +154647,USB-C Charging Cable,1,11.95,01/26/19 17:19,"763 Cedar St, New York City, NY 10001" +154648,ThinkPad Laptop,1,999.99,01/20/19 18:32,"803 1st St, San Francisco, CA 94016" +154649,USB-C Charging Cable,1,11.95,01/07/19 08:23,"743 Main St, San Francisco, CA 94016" +154650,USB-C Charging Cable,1,11.95,01/15/19 10:58,"18 9th St, Los Angeles, CA 90001" +154651,AA Batteries (4-pack),1,3.84,01/24/19 08:48,"170 Spruce St, New York City, NY 10001" +154652,Bose SoundSport Headphones,1,99.99,01/11/19 12:13,"31 Lincoln St, Dallas, TX 75001" +154653,Flatscreen TV,1,300,01/20/19 18:43,"360 Cedar St, San Francisco, CA 94016" +154654,Wired Headphones,1,11.99,01/16/19 16:36,"684 14th St, Boston, MA 02215" +154655,Lightning Charging Cable,1,14.95,01/19/19 19:09,"205 1st St, New York City, NY 10001" +154656,AAA Batteries (4-pack),1,2.99,01/11/19 16:13,"349 Sunset St, Dallas, TX 75001" +154657,iPhone,1,700,01/04/19 20:33,"538 Adams St, Atlanta, GA 30301" +154657,Apple Airpods Headphones,1,150,01/04/19 20:33,"538 Adams St, Atlanta, GA 30301" +154658,Lightning Charging Cable,1,14.95,01/29/19 09:08,"635 Spruce St, Boston, MA 02215" +154659,34in Ultrawide Monitor,1,379.99,01/06/19 05:12,"448 2nd St, San Francisco, CA 94016" +154660,AAA Batteries (4-pack),1,2.99,01/14/19 20:15,"586 Johnson St, Atlanta, GA 30301" +154661,ThinkPad Laptop,1,999.99,01/10/19 11:22,"886 North St, San Francisco, CA 94016" +154662,Google Phone,1,600,01/22/19 06:09,"621 Jackson St, Los Angeles, CA 90001" +154663,Bose SoundSport Headphones,1,99.99,01/10/19 20:02,"818 Maple St, San Francisco, CA 94016" +154664,Apple Airpods Headphones,1,150,01/19/19 17:46,"3 Adams St, Los Angeles, CA 90001" +154665,Google Phone,1,600,01/23/19 09:56,"394 Church St, Austin, TX 73301" +154665,Bose SoundSport Headphones,1,99.99,01/23/19 09:56,"394 Church St, Austin, TX 73301" +154666,Macbook Pro Laptop,1,1700,01/07/19 01:30,"147 West St, New York City, NY 10001" +154667,34in Ultrawide Monitor,1,379.99,01/25/19 15:40,"579 Lake St, Austin, TX 73301" +154668,Apple Airpods Headphones,1,150,01/13/19 13:28,"824 Cedar St, Boston, MA 02215" +154669,Apple Airpods Headphones,1,150,01/08/19 14:10,"312 Forest St, Atlanta, GA 30301" +154670,20in Monitor,1,109.99,01/23/19 08:30,"446 8th St, Dallas, TX 75001" +154671,27in FHD Monitor,1,149.99,01/10/19 08:13,"437 Hickory St, Atlanta, GA 30301" +154672,Lightning Charging Cable,1,14.95,01/04/19 20:48,"613 1st St, Austin, TX 73301" +154673,Apple Airpods Headphones,1,150,01/08/19 17:32,"846 Meadow St, Dallas, TX 75001" +154674,AAA Batteries (4-pack),1,2.99,01/26/19 19:08,"906 Madison St, Austin, TX 73301" +154675,USB-C Charging Cable,1,11.95,01/28/19 22:01,"982 Hill St, Los Angeles, CA 90001" +154676,Lightning Charging Cable,1,14.95,01/06/19 14:27,"579 12th St, Atlanta, GA 30301" +154677,Apple Airpods Headphones,1,150,01/04/19 15:18,"52 Cherry St, Boston, MA 02215" +154678,ThinkPad Laptop,1,999.99,01/29/19 17:12,"33 Walnut St, New York City, NY 10001" +154679,Wired Headphones,1,11.99,01/21/19 21:29,"102 Lakeview St, San Francisco, CA 94016" +154680,USB-C Charging Cable,1,11.95,01/22/19 15:23,"631 Cherry St, Boston, MA 02215" +154681,Wired Headphones,1,11.99,01/12/19 14:51,"120 Adams St, San Francisco, CA 94016" +154682,Wired Headphones,1,11.99,01/11/19 15:26,"810 14th St, New York City, NY 10001" +154683,Google Phone,1,600,01/25/19 21:22,"503 9th St, New York City, NY 10001" +154684,Lightning Charging Cable,1,14.95,01/27/19 05:04,"709 River St, San Francisco, CA 94016" +154685,Lightning Charging Cable,1,14.95,01/07/19 16:29,"485 6th St, Los Angeles, CA 90001" +154686,AAA Batteries (4-pack),1,2.99,01/29/19 21:14,"398 1st St, Boston, MA 02215" +154687,AA Batteries (4-pack),1,3.84,01/13/19 12:03,"914 Cherry St, Boston, MA 02215" +154688,AA Batteries (4-pack),1,3.84,01/13/19 18:34,"942 Lakeview St, San Francisco, CA 94016" +154689,Apple Airpods Headphones,1,150,01/09/19 18:34,"364 6th St, Boston, MA 02215" +154690,Lightning Charging Cable,1,14.95,01/13/19 11:42,"412 13th St, Boston, MA 02215" +154691,20in Monitor,1,109.99,01/08/19 01:10,"176 4th St, Portland, OR 97035" +154692,Lightning Charging Cable,1,14.95,01/04/19 20:29,"934 1st St, San Francisco, CA 94016" +154693,34in Ultrawide Monitor,1,379.99,01/14/19 10:48,"335 North St, Atlanta, GA 30301" +154694,Wired Headphones,1,11.99,01/25/19 15:20,"837 West St, Portland, OR 97035" +154695,Bose SoundSport Headphones,1,99.99,01/25/19 13:09,"287 10th St, Boston, MA 02215" +154696,Flatscreen TV,1,300,01/26/19 23:09,"721 13th St, San Francisco, CA 94016" +154697,Apple Airpods Headphones,1,150,01/07/19 12:49,"176 Forest St, Los Angeles, CA 90001" +154698,Bose SoundSport Headphones,1,99.99,01/03/19 22:19,"867 Willow St, Portland, ME 04101" +154699,AAA Batteries (4-pack),1,2.99,01/09/19 20:35,"194 14th St, Atlanta, GA 30301" +154700,Lightning Charging Cable,1,14.95,01/02/19 14:20,"282 Church St, San Francisco, CA 94016" +154701,Lightning Charging Cable,1,14.95,01/19/19 20:31,"271 Willow St, Portland, OR 97035" +154702,AAA Batteries (4-pack),2,2.99,01/31/19 20:29,"317 Elm St, Boston, MA 02215" +154703,AAA Batteries (4-pack),4,2.99,01/16/19 23:31,"18 Highland St, Los Angeles, CA 90001" +154704,USB-C Charging Cable,1,11.95,01/24/19 00:37,"275 Lake St, New York City, NY 10001" +154705,20in Monitor,1,109.99,01/13/19 18:33,"827 Walnut St, Austin, TX 73301" +154706,AA Batteries (4-pack),1,3.84,01/25/19 16:19,"782 11th St, Boston, MA 02215" +154707,27in 4K Gaming Monitor,1,389.99,01/24/19 20:36,"726 Lake St, Boston, MA 02215" +154708,Apple Airpods Headphones,1,150,01/01/19 17:43,"227 6th St, San Francisco, CA 94016" +154709,Wired Headphones,1,11.99,01/07/19 20:54,"224 Lakeview St, Portland, ME 04101" +154710,34in Ultrawide Monitor,1,379.99,01/19/19 10:26,"420 6th St, Seattle, WA 98101" +154711,AA Batteries (4-pack),1,3.84,01/04/19 08:54,"707 5th St, San Francisco, CA 94016" +154712,Apple Airpods Headphones,1,150,01/02/19 10:54,"896 West St, San Francisco, CA 94016" +154713,Lightning Charging Cable,2,14.95,01/19/19 17:54,"289 Johnson St, Seattle, WA 98101" +154714,34in Ultrawide Monitor,1,379.99,01/02/19 11:56,"823 Wilson St, Dallas, TX 75001" +154715,27in FHD Monitor,1,149.99,01/02/19 21:46,"83 Lakeview St, Seattle, WA 98101" +154716,USB-C Charging Cable,1,11.95,01/07/19 01:06,"667 Madison St, Seattle, WA 98101" +154717,USB-C Charging Cable,1,11.95,01/16/19 11:29,"161 10th St, Boston, MA 02215" +154718,Bose SoundSport Headphones,1,99.99,01/27/19 10:25,"395 Highland St, San Francisco, CA 94016" +154719,AA Batteries (4-pack),1,3.84,01/25/19 11:53,"587 River St, Atlanta, GA 30301" +154720,Lightning Charging Cable,1,14.95,01/19/19 18:05,"33 Lake St, San Francisco, CA 94016" +154721,Bose SoundSport Headphones,1,99.99,01/18/19 16:53,"287 River St, Dallas, TX 75001" +154722,LG Dryer,1,600.0,01/20/19 22:54,"475 Dogwood St, Dallas, TX 75001" +154723,AA Batteries (4-pack),1,3.84,01/11/19 13:04,"513 Jefferson St, Los Angeles, CA 90001" +154724,Apple Airpods Headphones,1,150,01/20/19 17:42,"378 Chestnut St, San Francisco, CA 94016" +154725,AA Batteries (4-pack),1,3.84,01/02/19 12:04,"514 Hickory St, Dallas, TX 75001" +154726,27in FHD Monitor,1,149.99,01/21/19 16:08,"708 6th St, San Francisco, CA 94016" +154727,ThinkPad Laptop,1,999.99,01/20/19 08:48,"580 Hill St, Los Angeles, CA 90001" +154728,Lightning Charging Cable,1,14.95,01/25/19 22:52,"677 Adams St, Los Angeles, CA 90001" +154729,Lightning Charging Cable,1,14.95,01/08/19 16:14,"209 11th St, San Francisco, CA 94016" +154730,Wired Headphones,1,11.99,01/13/19 14:19,"496 6th St, Seattle, WA 98101" +154731,USB-C Charging Cable,1,11.95,01/31/19 15:37,"646 Washington St, San Francisco, CA 94016" +154732,USB-C Charging Cable,1,11.95,01/26/19 08:40,"822 Walnut St, San Francisco, CA 94016" +154733,USB-C Charging Cable,1,11.95,01/11/19 00:58,"419 14th St, Los Angeles, CA 90001" +154734,Wired Headphones,1,11.99,01/16/19 06:38,"644 Sunset St, Portland, OR 97035" +154735,AAA Batteries (4-pack),1,2.99,01/28/19 20:08,"362 Elm St, Boston, MA 02215" +154736,AA Batteries (4-pack),3,3.84,01/31/19 00:53,"247 Jackson St, Portland, OR 97035" +154737,Apple Airpods Headphones,1,150,01/25/19 11:20,"588 Adams St, Atlanta, GA 30301" +154738,Apple Airpods Headphones,1,150,01/24/19 09:18,"870 Walnut St, Portland, OR 97035" +154739,Wired Headphones,1,11.99,01/29/19 21:41,"989 Main St, Atlanta, GA 30301" +154740,iPhone,1,700,01/26/19 22:07,"807 Hickory St, New York City, NY 10001" +154741,Bose SoundSport Headphones,1,99.99,01/06/19 08:29,"644 Dogwood St, Los Angeles, CA 90001" +154742,Macbook Pro Laptop,1,1700,01/23/19 16:01,"34 West St, Boston, MA 02215" +154743,AA Batteries (4-pack),1,3.84,01/17/19 17:49,"46 Lincoln St, Seattle, WA 98101" +154744,Vareebadd Phone,1,400,01/14/19 08:56,"359 Lincoln St, Portland, OR 97035" +154744,USB-C Charging Cable,3,11.95,01/14/19 08:56,"359 Lincoln St, Portland, OR 97035" +154745,Apple Airpods Headphones,1,150,01/27/19 17:56,"260 7th St, Portland, OR 97035" +154746,Apple Airpods Headphones,1,150,01/16/19 14:45,"411 Jefferson St, San Francisco, CA 94016" +154747,AA Batteries (4-pack),1,3.84,01/11/19 20:17,"701 2nd St, San Francisco, CA 94016" +154748,Lightning Charging Cable,1,14.95,01/17/19 13:07,"457 South St, Dallas, TX 75001" +154749,27in FHD Monitor,1,149.99,01/29/19 09:24,"6 8th St, Seattle, WA 98101" +154750,AA Batteries (4-pack),1,3.84,01/01/19 09:06,"147 11th St, New York City, NY 10001" +154751,Apple Airpods Headphones,1,150,01/18/19 22:37,"819 Elm St, San Francisco, CA 94016" +154752,Lightning Charging Cable,1,14.95,01/25/19 04:00,"176 Lake St, Atlanta, GA 30301" +154753,27in FHD Monitor,1,149.99,01/11/19 09:27,"129 11th St, San Francisco, CA 94016" +154754,Macbook Pro Laptop,1,1700,01/21/19 13:03,"187 Lake St, San Francisco, CA 94016" +154755,Apple Airpods Headphones,1,150,01/08/19 08:27,"942 8th St, Dallas, TX 75001" +154756,AA Batteries (4-pack),1,3.84,01/13/19 21:33,"965 Maple St, San Francisco, CA 94016" +154757,iPhone,1,700,01/16/19 18:07,"392 River St, Dallas, TX 75001" +154758,USB-C Charging Cable,1,11.95,01/23/19 19:50,"92 11th St, San Francisco, CA 94016" +154759,Lightning Charging Cable,1,14.95,01/03/19 13:32,"594 River St, Boston, MA 02215" +154760,AA Batteries (4-pack),1,3.84,01/17/19 20:58,"672 Highland St, San Francisco, CA 94016" +154761,AA Batteries (4-pack),1,3.84,01/16/19 17:21,"746 Forest St, Portland, OR 97035" +154762,USB-C Charging Cable,1,11.95,01/23/19 21:10,"611 Jackson St, Portland, OR 97035" +154763,Wired Headphones,1,11.99,01/20/19 13:58,"350 South St, New York City, NY 10001" +154764,Lightning Charging Cable,1,14.95,01/27/19 18:34,"739 9th St, Atlanta, GA 30301" +154765,34in Ultrawide Monitor,1,379.99,01/30/19 13:04,"646 Adams St, San Francisco, CA 94016" +154766,AAA Batteries (4-pack),1,2.99,01/22/19 21:05,"573 11th St, Austin, TX 73301" +154767,Macbook Pro Laptop,1,1700,01/26/19 19:14,"115 Highland St, San Francisco, CA 94016" +154768,Lightning Charging Cable,1,14.95,01/25/19 00:28,"424 North St, Los Angeles, CA 90001" +154769,Bose SoundSport Headphones,1,99.99,01/29/19 16:01,"689 Forest St, San Francisco, CA 94016" +154770,Wired Headphones,1,11.99,01/30/19 09:43,"1 10th St, Seattle, WA 98101" +154771,Flatscreen TV,1,300,01/13/19 17:57,"136 North St, San Francisco, CA 94016" +154772,Lightning Charging Cable,2,14.95,01/08/19 09:22,"866 10th St, San Francisco, CA 94016" +154773,Bose SoundSport Headphones,1,99.99,01/12/19 15:41,"906 Maple St, New York City, NY 10001" +154774,iPhone,1,700,01/08/19 04:19,"840 5th St, New York City, NY 10001" +154775,AAA Batteries (4-pack),1,2.99,01/14/19 15:18,"828 6th St, Atlanta, GA 30301" +154776,Lightning Charging Cable,1,14.95,01/07/19 17:58,"318 5th St, Atlanta, GA 30301" +154777,Flatscreen TV,1,300,01/11/19 08:07,"493 Church St, San Francisco, CA 94016" +154778,34in Ultrawide Monitor,1,379.99,01/28/19 04:41,"605 Wilson St, San Francisco, CA 94016" +154779,Wired Headphones,1,11.99,01/31/19 15:03,"712 Lincoln St, San Francisco, CA 94016" +154780,Bose SoundSport Headphones,1,99.99,01/07/19 07:24,"280 Dogwood St, San Francisco, CA 94016" +154781,Bose SoundSport Headphones,1,99.99,01/14/19 07:46,"882 Elm St, San Francisco, CA 94016" +154782,Lightning Charging Cable,1,14.95,01/08/19 23:56,"486 9th St, San Francisco, CA 94016" +154783,AAA Batteries (4-pack),1,2.99,01/15/19 09:12,"745 9th St, Dallas, TX 75001" +154783,Bose SoundSport Headphones,1,99.99,01/15/19 09:12,"745 9th St, Dallas, TX 75001" +154784,AA Batteries (4-pack),1,3.84,01/23/19 19:41,"393 Washington St, Los Angeles, CA 90001" +154785,AAA Batteries (4-pack),2,2.99,01/18/19 10:27,"730 9th St, Los Angeles, CA 90001" +154786,Bose SoundSport Headphones,1,99.99,01/13/19 17:36,"46 1st St, Boston, MA 02215" +154787,Macbook Pro Laptop,1,1700,01/09/19 22:23,"434 Walnut St, Seattle, WA 98101" +154788,AA Batteries (4-pack),1,3.84,01/08/19 16:22,"770 Main St, Austin, TX 73301" +154789,Lightning Charging Cable,1,14.95,01/07/19 11:15,"376 Maple St, Dallas, TX 75001" +154790,AA Batteries (4-pack),1,3.84,01/21/19 13:44,"820 Meadow St, Atlanta, GA 30301" +154791,Lightning Charging Cable,1,14.95,01/14/19 20:38,"200 Main St, Dallas, TX 75001" +154792,Wired Headphones,1,11.99,01/22/19 08:00,"703 12th St, Atlanta, GA 30301" +154793,20in Monitor,1,109.99,01/21/19 07:52,"596 Lake St, New York City, NY 10001" +154794,AA Batteries (4-pack),3,3.84,01/02/19 14:33,"460 12th St, Atlanta, GA 30301" +154795,Wired Headphones,1,11.99,01/28/19 21:32,"50 Main St, San Francisco, CA 94016" +154796,Bose SoundSport Headphones,1,99.99,01/09/19 19:31,"194 8th St, New York City, NY 10001" +154797,34in Ultrawide Monitor,1,379.99,01/31/19 15:29,"561 12th St, Los Angeles, CA 90001" +154798,USB-C Charging Cable,1,11.95,01/02/19 09:02,"797 11th St, San Francisco, CA 94016" +154799,Apple Airpods Headphones,1,150,01/09/19 11:21,"350 Forest St, Los Angeles, CA 90001" +154800,USB-C Charging Cable,1,11.95,01/14/19 19:48,"408 Hickory St, Los Angeles, CA 90001" +154801,Bose SoundSport Headphones,1,99.99,01/30/19 10:52,"263 Jackson St, San Francisco, CA 94016" +154802,34in Ultrawide Monitor,1,379.99,01/04/19 01:54,"72 11th St, Los Angeles, CA 90001" +154803,AAA Batteries (4-pack),1,2.99,01/12/19 23:09,"175 6th St, New York City, NY 10001" +154804,Wired Headphones,1,11.99,01/28/19 12:02,"749 Elm St, Seattle, WA 98101" +154805,ThinkPad Laptop,1,999.99,01/01/19 14:36,"997 10th St, San Francisco, CA 94016" +154806,Apple Airpods Headphones,1,150,01/01/19 11:28,"324 2nd St, San Francisco, CA 94016" +154807,AAA Batteries (4-pack),1,2.99,01/08/19 12:48,"107 Sunset St, Los Angeles, CA 90001" +154808,AA Batteries (4-pack),1,3.84,01/14/19 22:29,"993 Spruce St, Austin, TX 73301" +154809,Wired Headphones,1,11.99,01/26/19 17:32,"245 12th St, Dallas, TX 75001" +154810,AAA Batteries (4-pack),4,2.99,01/06/19 20:36,"749 Pine St, San Francisco, CA 94016" +154811,Wired Headphones,1,11.99,01/17/19 17:50,"597 Willow St, New York City, NY 10001" +154812,AAA Batteries (4-pack),2,2.99,01/07/19 15:40,"69 Hickory St, Los Angeles, CA 90001" +154813,USB-C Charging Cable,1,11.95,01/04/19 11:53,"465 Chestnut St, San Francisco, CA 94016" +154814,USB-C Charging Cable,1,11.95,01/30/19 14:57,"124 Washington St, New York City, NY 10001" +154815,Lightning Charging Cable,1,14.95,01/28/19 00:11,"399 Highland St, Los Angeles, CA 90001" +154815,AA Batteries (4-pack),1,3.84,01/28/19 00:11,"399 Highland St, Los Angeles, CA 90001" +154816,iPhone,1,700,01/03/19 22:53,"321 Washington St, San Francisco, CA 94016" +154816,Apple Airpods Headphones,1,150,01/03/19 22:53,"321 Washington St, San Francisco, CA 94016" +154817,Wired Headphones,1,11.99,01/11/19 22:16,"224 12th St, Austin, TX 73301" +154818,Apple Airpods Headphones,1,150,01/08/19 01:20,"393 Willow St, San Francisco, CA 94016" +154819,34in Ultrawide Monitor,1,379.99,01/22/19 16:58,"981 Pine St, Atlanta, GA 30301" +154820,27in FHD Monitor,1,149.99,01/27/19 13:09,"911 Jackson St, Seattle, WA 98101" +154821,AAA Batteries (4-pack),1,2.99,01/25/19 18:12,"548 10th St, New York City, NY 10001" +154822,Lightning Charging Cable,1,14.95,01/13/19 19:02,"333 Lake St, San Francisco, CA 94016" +154823,34in Ultrawide Monitor,1,379.99,01/21/19 22:25,"3 Main St, San Francisco, CA 94016" +154824,Apple Airpods Headphones,1,150,01/30/19 05:55,"454 6th St, San Francisco, CA 94016" +154825,USB-C Charging Cable,1,11.95,01/10/19 11:32,"891 Pine St, New York City, NY 10001" +154826,Wired Headphones,2,11.99,01/09/19 10:52,"205 14th St, Atlanta, GA 30301" +154827,iPhone,1,700,01/01/19 21:03,"869 North St, Boston, MA 02215" +154828,AA Batteries (4-pack),1,3.84,01/20/19 20:55,"490 Center St, Atlanta, GA 30301" +154829,AAA Batteries (4-pack),3,2.99,01/09/19 07:43,"422 Park St, San Francisco, CA 94016" +154830,Lightning Charging Cable,1,14.95,01/07/19 15:53,"686 2nd St, Atlanta, GA 30301" +154831,LG Dryer,1,600.0,01/03/19 07:39,"740 Elm St, San Francisco, CA 94016" +154832,Bose SoundSport Headphones,1,99.99,01/21/19 22:36,"442 Lakeview St, Atlanta, GA 30301" +154833,Lightning Charging Cable,1,14.95,01/25/19 12:49,"678 River St, Atlanta, GA 30301" +154834,Bose SoundSport Headphones,1,99.99,01/27/19 14:26,"69 12th St, Atlanta, GA 30301" +154835,34in Ultrawide Monitor,1,379.99,01/09/19 18:04,"794 1st St, Los Angeles, CA 90001" +154836,Lightning Charging Cable,1,14.95,01/01/19 14:01,"933 Johnson St, New York City, NY 10001" +154837,Macbook Pro Laptop,1,1700,01/01/19 09:33,"392 Park St, Boston, MA 02215" +154838,Apple Airpods Headphones,1,150,01/15/19 20:21,"953 Chestnut St, Austin, TX 73301" +154839,27in 4K Gaming Monitor,1,389.99,01/04/19 14:22,"409 1st St, New York City, NY 10001" +154840,Google Phone,1,600,01/04/19 07:34,"737 Maple St, New York City, NY 10001" +154841,AAA Batteries (4-pack),1,2.99,01/01/19 09:56,"264 South St, San Francisco, CA 94016" +154842,AAA Batteries (4-pack),1,2.99,01/20/19 21:22,"142 1st St, Seattle, WA 98101" +154843,Apple Airpods Headphones,1,150,01/11/19 12:00,"169 Sunset St, Portland, ME 04101" +154844,USB-C Charging Cable,1,11.95,01/17/19 16:02,"550 Center St, Los Angeles, CA 90001" +154845,USB-C Charging Cable,1,11.95,01/04/19 15:43,"198 Johnson St, San Francisco, CA 94016" +154846,AA Batteries (4-pack),1,3.84,01/21/19 21:50,"653 Madison St, Dallas, TX 75001" +154847,iPhone,1,700,01/07/19 20:41,"925 2nd St, Los Angeles, CA 90001" +154847,Lightning Charging Cable,1,14.95,01/07/19 20:41,"925 2nd St, Los Angeles, CA 90001" +154848,20in Monitor,1,109.99,01/11/19 11:49,"807 Chestnut St, Los Angeles, CA 90001" +154849,Wired Headphones,1,11.99,01/03/19 11:35,"422 Madison St, Austin, TX 73301" +154850,AA Batteries (4-pack),1,3.84,01/13/19 18:41,"98 14th St, Seattle, WA 98101" +154851,Apple Airpods Headphones,1,150,01/20/19 20:33,"722 Lakeview St, New York City, NY 10001" +154852,USB-C Charging Cable,2,11.95,01/16/19 14:42,"512 12th St, New York City, NY 10001" +154853,AAA Batteries (4-pack),3,2.99,01/27/19 13:59,"138 Lincoln St, Boston, MA 02215" +154854,iPhone,1,700,01/03/19 13:06,"894 5th St, New York City, NY 10001" +154855,Bose SoundSport Headphones,1,99.99,01/20/19 11:00,"771 Cherry St, Los Angeles, CA 90001" +154856,Lightning Charging Cable,1,14.95,01/10/19 17:03,"650 North St, New York City, NY 10001" +154857,Apple Airpods Headphones,1,150,01/26/19 08:08,"601 Forest St, Los Angeles, CA 90001" +154858,Lightning Charging Cable,1,14.95,01/17/19 23:05,"150 Cedar St, Austin, TX 73301" +154859,Lightning Charging Cable,2,14.95,01/15/19 13:36,"81 8th St, Boston, MA 02215" +154860,34in Ultrawide Monitor,1,379.99,01/17/19 20:39,"698 Forest St, Los Angeles, CA 90001" +154861,Wired Headphones,1,11.99,01/03/19 15:19,"253 Adams St, New York City, NY 10001" +,,,,, +154862,AA Batteries (4-pack),1,3.84,01/14/19 15:31,"308 South St, Dallas, TX 75001" +154863,USB-C Charging Cable,1,11.95,01/26/19 14:26,"753 Main St, Los Angeles, CA 90001" +154864,20in Monitor,1,109.99,01/21/19 05:52,"287 Lincoln St, San Francisco, CA 94016" +154865,Lightning Charging Cable,1,14.95,01/15/19 14:46,"549 Center St, New York City, NY 10001" +154866,USB-C Charging Cable,1,11.95,01/11/19 14:19,"356 Ridge St, San Francisco, CA 94016" +154867,ThinkPad Laptop,1,999.99,01/14/19 14:47,"477 Dogwood St, Seattle, WA 98101" +154868,USB-C Charging Cable,2,11.95,01/24/19 14:32,"718 Jefferson St, Dallas, TX 75001" +154869,iPhone,1,700,01/03/19 09:34,"973 4th St, San Francisco, CA 94016" +154869,Wired Headphones,1,11.99,01/03/19 09:34,"973 4th St, San Francisco, CA 94016" +154870,27in FHD Monitor,1,149.99,01/15/19 07:15,"664 Hickory St, Portland, OR 97035" +154871,Apple Airpods Headphones,1,150,01/28/19 09:50,"684 Chestnut St, Dallas, TX 75001" +154872,AAA Batteries (4-pack),2,2.99,01/17/19 17:07,"636 4th St, San Francisco, CA 94016" +154873,Wired Headphones,1,11.99,01/09/19 13:26,"979 Center St, San Francisco, CA 94016" +154874,27in 4K Gaming Monitor,1,389.99,01/23/19 16:08,"628 North St, Portland, OR 97035" +154875,Wired Headphones,1,11.99,01/23/19 14:56,"840 10th St, Atlanta, GA 30301" +154876,Lightning Charging Cable,1,14.95,01/14/19 12:49,"115 Lincoln St, Seattle, WA 98101" +154877,Bose SoundSport Headphones,1,99.99,01/24/19 22:10,"824 Jackson St, New York City, NY 10001" +154878,27in 4K Gaming Monitor,1,389.99,01/24/19 14:24,"505 Hickory St, Seattle, WA 98101" +154879,Lightning Charging Cable,1,14.95,01/28/19 17:03,"971 Main St, Dallas, TX 75001" +154880,AA Batteries (4-pack),1,3.84,01/11/19 08:59,"765 West St, Los Angeles, CA 90001" +154880,27in FHD Monitor,1,149.99,01/11/19 08:59,"765 West St, Los Angeles, CA 90001" +154881,Apple Airpods Headphones,1,150,01/08/19 21:36,"353 Wilson St, Portland, OR 97035" +154882,USB-C Charging Cable,1,11.95,01/22/19 11:36,"848 12th St, Boston, MA 02215" +154883,AA Batteries (4-pack),1,3.84,01/23/19 15:15,"575 6th St, Los Angeles, CA 90001" +154884,34in Ultrawide Monitor,1,379.99,01/05/19 18:54,"929 Forest St, Portland, OR 97035" +154885,Wired Headphones,1,11.99,01/22/19 19:54,"557 Park St, Boston, MA 02215" +154886,AAA Batteries (4-pack),1,2.99,01/29/19 15:05,"253 4th St, Portland, OR 97035" +154887,iPhone,1,700,01/24/19 12:03,"433 Maple St, Los Angeles, CA 90001" +154887,AA Batteries (4-pack),1,3.84,01/24/19 12:03,"433 Maple St, Los Angeles, CA 90001" +154888,USB-C Charging Cable,1,11.95,01/26/19 20:49,"900 West St, New York City, NY 10001" +154889,iPhone,1,700,01/26/19 09:46,"926 Spruce St, San Francisco, CA 94016" +154890,27in 4K Gaming Monitor,1,389.99,01/20/19 23:36,"643 5th St, San Francisco, CA 94016" +154891,Wired Headphones,1,11.99,01/06/19 13:34,"74 Lakeview St, Los Angeles, CA 90001" +154892,Bose SoundSport Headphones,1,99.99,01/09/19 21:04,"127 Washington St, Los Angeles, CA 90001" +154893,Bose SoundSport Headphones,1,99.99,01/12/19 02:03,"365 Pine St, San Francisco, CA 94016" +154894,20in Monitor,1,109.99,01/25/19 01:02,"971 2nd St, Los Angeles, CA 90001" +154895,USB-C Charging Cable,1,11.95,01/06/19 09:57,"560 Forest St, Los Angeles, CA 90001" +154896,Lightning Charging Cable,1,14.95,01/21/19 14:51,"545 Jefferson St, Atlanta, GA 30301" +154897,Wired Headphones,1,11.99,01/16/19 10:50,"203 12th St, Los Angeles, CA 90001" +154898,AA Batteries (4-pack),1,3.84,01/27/19 22:03,"221 North St, Austin, TX 73301" +154899,34in Ultrawide Monitor,1,379.99,01/11/19 12:17,"106 River St, Seattle, WA 98101" +154900,USB-C Charging Cable,1,11.95,01/25/19 10:13,"98 13th St, San Francisco, CA 94016" +154901,Apple Airpods Headphones,1,150,01/03/19 08:27,"166 Center St, Los Angeles, CA 90001" +154902,27in FHD Monitor,1,149.99,01/12/19 08:11,"873 6th St, New York City, NY 10001" +154903,Flatscreen TV,1,300,01/24/19 06:28,"608 Church St, New York City, NY 10001" +154904,AAA Batteries (4-pack),1,2.99,01/16/19 13:07,"145 Lake St, Atlanta, GA 30301" +154905,iPhone,1,700,01/31/19 13:09,"241 West St, Los Angeles, CA 90001" +154906,Apple Airpods Headphones,1,150,01/02/19 12:00,"918 10th St, New York City, NY 10001" +,,,,, +154907,AA Batteries (4-pack),2,3.84,01/15/19 15:13,"455 Hickory St, San Francisco, CA 94016" +154908,Lightning Charging Cable,1,14.95,01/18/19 23:33,"886 Park St, Los Angeles, CA 90001" +154909,AA Batteries (4-pack),1,3.84,01/26/19 05:59,"518 Chestnut St, Austin, TX 73301" +154910,Wired Headphones,1,11.99,01/27/19 14:15,"182 Chestnut St, Boston, MA 02215" +154911,Wired Headphones,1,11.99,01/11/19 12:18,"445 2nd St, New York City, NY 10001" +154912,27in FHD Monitor,1,149.99,01/05/19 08:28,"646 Lake St, Dallas, TX 75001" +154913,AA Batteries (4-pack),2,3.84,01/10/19 21:28,"233 Lakeview St, Dallas, TX 75001" +154914,Bose SoundSport Headphones,1,99.99,01/29/19 20:57,"13 5th St, San Francisco, CA 94016" +154915,Vareebadd Phone,1,400,01/13/19 18:27,"398 Forest St, New York City, NY 10001" +154916,Lightning Charging Cable,1,14.95,01/09/19 13:31,"223 10th St, New York City, NY 10001" +154917,Bose SoundSport Headphones,1,99.99,01/31/19 11:22,"940 Lakeview St, San Francisco, CA 94016" +154918,USB-C Charging Cable,2,11.95,01/25/19 21:23,"672 Dogwood St, Austin, TX 73301" +154919,27in FHD Monitor,1,149.99,01/03/19 12:56,"591 Lakeview St, Los Angeles, CA 90001" +154920,AA Batteries (4-pack),2,3.84,01/28/19 21:12,"225 14th St, Los Angeles, CA 90001" +154920,Bose SoundSport Headphones,1,99.99,01/28/19 21:12,"225 14th St, Los Angeles, CA 90001" +154921,Lightning Charging Cable,1,14.95,01/29/19 17:00,"153 14th St, San Francisco, CA 94016" +154922,USB-C Charging Cable,2,11.95,01/14/19 20:15,"46 Center St, Portland, OR 97035" +154923,Bose SoundSport Headphones,1,99.99,01/14/19 09:07,"605 9th St, Los Angeles, CA 90001" +154924,27in FHD Monitor,1,149.99,01/30/19 21:01,"406 Maple St, Dallas, TX 75001" +154924,Lightning Charging Cable,1,14.95,01/30/19 21:01,"406 Maple St, Dallas, TX 75001" +154925,USB-C Charging Cable,1,11.95,01/30/19 11:42,"179 Spruce St, San Francisco, CA 94016" +154926,27in FHD Monitor,1,149.99,01/26/19 00:40,"101 Cherry St, San Francisco, CA 94016" +154927,USB-C Charging Cable,1,11.95,01/08/19 13:11,"491 Walnut St, Los Angeles, CA 90001" +154928,Lightning Charging Cable,1,14.95,01/25/19 19:52,"173 Ridge St, Los Angeles, CA 90001" +154929,AA Batteries (4-pack),3,3.84,01/21/19 09:33,"231 Pine St, Atlanta, GA 30301" +154930,Vareebadd Phone,1,400,01/14/19 21:43,"519 10th St, Boston, MA 02215" +154930,USB-C Charging Cable,1,11.95,01/14/19 21:43,"519 10th St, Boston, MA 02215" +154930,Wired Headphones,1,11.99,01/14/19 21:43,"519 10th St, Boston, MA 02215" +154931,27in 4K Gaming Monitor,1,389.99,01/16/19 13:49,"901 Walnut St, San Francisco, CA 94016" +154932,AAA Batteries (4-pack),1,2.99,01/08/19 12:10,"443 1st St, Los Angeles, CA 90001" +154933,Google Phone,1,600,01/23/19 18:19,"398 1st St, Dallas, TX 75001" +154933,Bose SoundSport Headphones,1,99.99,01/23/19 18:19,"398 1st St, Dallas, TX 75001" +154934,AAA Batteries (4-pack),1,2.99,01/03/19 16:11,"588 North St, Dallas, TX 75001" +154935,AA Batteries (4-pack),1,3.84,01/12/19 12:27,"56 Hickory St, Austin, TX 73301" +154936,Flatscreen TV,1,300,01/27/19 11:42,"934 14th St, Los Angeles, CA 90001" +154937,Wired Headphones,1,11.99,01/18/19 17:28,"54 Washington St, San Francisco, CA 94016" +154938,iPhone,1,700,01/30/19 13:23,"503 9th St, Boston, MA 02215" +154939,Lightning Charging Cable,1,14.95,01/16/19 09:40,"985 4th St, Atlanta, GA 30301" +154940,Apple Airpods Headphones,1,150,01/10/19 10:49,"109 Willow St, Los Angeles, CA 90001" +154941,AAA Batteries (4-pack),1,2.99,01/23/19 13:14,"205 Park St, San Francisco, CA 94016" +154942,27in FHD Monitor,1,149.99,01/25/19 08:11,"744 12th St, Portland, OR 97035" +154943,Flatscreen TV,1,300,01/01/19 17:11,"205 Forest St, Boston, MA 02215" +154944,Apple Airpods Headphones,1,150,01/29/19 18:53,"111 Spruce St, San Francisco, CA 94016" +154945,AA Batteries (4-pack),2,3.84,01/03/19 12:19,"224 Church St, San Francisco, CA 94016" +154946,34in Ultrawide Monitor,1,379.99,01/20/19 00:11,"498 Cherry St, San Francisco, CA 94016" +154947,ThinkPad Laptop,1,999.99,01/25/19 10:50,"890 Spruce St, Dallas, TX 75001" +154948,ThinkPad Laptop,1,999.99,01/25/19 07:53,"516 9th St, Dallas, TX 75001" +154949,USB-C Charging Cable,1,11.95,01/17/19 07:21,"805 Main St, Dallas, TX 75001" +154950,27in FHD Monitor,1,149.99,01/20/19 09:58,"350 Maple St, Portland, OR 97035" +154951,USB-C Charging Cable,1,11.95,01/27/19 18:07,"902 6th St, San Francisco, CA 94016" +154952,Flatscreen TV,1,300,01/12/19 22:41,"503 Sunset St, Dallas, TX 75001" +154953,AAA Batteries (4-pack),1,2.99,01/06/19 17:48,"709 Hill St, San Francisco, CA 94016" +154954,iPhone,1,700,01/03/19 13:05,"466 South St, Atlanta, GA 30301" +154955,Apple Airpods Headphones,1,150,01/10/19 20:51,"73 2nd St, Austin, TX 73301" +154956,Wired Headphones,1,11.99,01/14/19 19:06,"658 11th St, Portland, OR 97035" +154957,Lightning Charging Cable,1,14.95,01/14/19 09:43,"380 Park St, Atlanta, GA 30301" +154958,Wired Headphones,1,11.99,01/18/19 09:21,"167 9th St, Seattle, WA 98101" +154959,AA Batteries (4-pack),1,3.84,01/31/19 09:29,"483 14th St, Boston, MA 02215" +154960,AA Batteries (4-pack),1,3.84,01/16/19 20:35,"942 Center St, Los Angeles, CA 90001" +154961,27in 4K Gaming Monitor,1,389.99,01/10/19 10:12,"838 Hickory St, Los Angeles, CA 90001" +154962,20in Monitor,1,109.99,01/18/19 19:13,"939 Church St, Portland, OR 97035" +154963,AA Batteries (4-pack),1,3.84,01/06/19 09:01,"344 Lincoln St, Los Angeles, CA 90001" +154964,Flatscreen TV,1,300,01/30/19 19:19,"259 Cedar St, Los Angeles, CA 90001" +154965,Bose SoundSport Headphones,1,99.99,01/26/19 10:38,"793 Hickory St, Los Angeles, CA 90001" +154966,Macbook Pro Laptop,1,1700,01/11/19 22:10,"684 Hill St, Seattle, WA 98101" +154967,Lightning Charging Cable,1,14.95,01/06/19 13:20,"659 11th St, Atlanta, GA 30301" +154968,USB-C Charging Cable,1,11.95,01/03/19 06:53,"900 Lincoln St, Portland, OR 97035" +154969,Bose SoundSport Headphones,1,99.99,01/24/19 18:07,"424 Park St, Los Angeles, CA 90001" +154970,27in FHD Monitor,1,149.99,01/02/19 17:38,"146 Madison St, Portland, ME 04101" +154971,Macbook Pro Laptop,1,1700,01/18/19 09:29,"258 Jefferson St, Los Angeles, CA 90001" +154972,USB-C Charging Cable,1,11.95,01/12/19 22:22,"566 Lakeview St, Los Angeles, CA 90001" +154973,AAA Batteries (4-pack),2,2.99,01/07/19 15:16,"200 Center St, Dallas, TX 75001" +154974,ThinkPad Laptop,1,999.99,01/03/19 18:13,"370 Dogwood St, Atlanta, GA 30301" +154975,USB-C Charging Cable,1,11.95,01/26/19 14:10,"825 9th St, San Francisco, CA 94016" +154976,AA Batteries (4-pack),2,3.84,01/11/19 01:24,"916 Cedar St, Dallas, TX 75001" +154977,Bose SoundSport Headphones,1,99.99,01/24/19 17:05,"654 Wilson St, Austin, TX 73301" +154978,Flatscreen TV,1,300,01/03/19 09:49,"690 Cherry St, Atlanta, GA 30301" +154979,USB-C Charging Cable,1,11.95,01/25/19 13:49,"615 Highland St, Los Angeles, CA 90001" +154980,Lightning Charging Cable,1,14.95,01/19/19 19:47,"558 Willow St, New York City, NY 10001" +154981,27in FHD Monitor,1,149.99,01/07/19 19:41,"780 13th St, Portland, OR 97035" +154982,USB-C Charging Cable,1,11.95,01/28/19 18:29,"27 Forest St, San Francisco, CA 94016" +154983,AA Batteries (4-pack),2,3.84,01/07/19 22:41,"277 Maple St, Seattle, WA 98101" +154984,AA Batteries (4-pack),1,3.84,01/05/19 13:50,"187 Sunset St, Portland, OR 97035" +154985,ThinkPad Laptop,1,999.99,01/01/19 20:22,"121 Wilson St, Los Angeles, CA 90001" +154986,USB-C Charging Cable,1,11.95,01/19/19 08:56,"777 Jackson St, Austin, TX 73301" +154987,AA Batteries (4-pack),1,3.84,01/08/19 13:59,"470 Johnson St, Dallas, TX 75001" +154988,ThinkPad Laptop,1,999.99,01/23/19 15:58,"959 Lincoln St, New York City, NY 10001" +154989,Wired Headphones,1,11.99,01/18/19 15:45,"454 10th St, Atlanta, GA 30301" +154990,Apple Airpods Headphones,1,150,01/05/19 11:16,"266 12th St, Seattle, WA 98101" +154991,Wired Headphones,1,11.99,01/06/19 13:06,"5 11th St, San Francisco, CA 94016" +154991,USB-C Charging Cable,1,11.95,01/06/19 13:06,"5 11th St, San Francisco, CA 94016" +154992,34in Ultrawide Monitor,1,379.99,01/08/19 11:41,"313 Church St, New York City, NY 10001" +154993,Wired Headphones,3,11.99,01/26/19 10:30,"483 Sunset St, New York City, NY 10001" +154994,USB-C Charging Cable,1,11.95,01/07/19 20:23,"809 2nd St, San Francisco, CA 94016" +154995,USB-C Charging Cable,1,11.95,01/16/19 23:08,"151 Highland St, San Francisco, CA 94016" +154996,Lightning Charging Cable,1,14.95,01/24/19 11:12,"77 14th St, Seattle, WA 98101" +154997,Lightning Charging Cable,1,14.95,01/09/19 21:07,"933 Center St, Los Angeles, CA 90001" +154998,AA Batteries (4-pack),2,3.84,01/03/19 00:46,"129 4th St, New York City, NY 10001" +154999,AA Batteries (4-pack),5,3.84,01/22/19 18:22,"500 West St, San Francisco, CA 94016" +155000,Bose SoundSport Headphones,1,99.99,01/25/19 15:08,"535 Jefferson St, Austin, TX 73301" +155001,AA Batteries (4-pack),1,3.84,01/02/19 14:34,"547 4th St, San Francisco, CA 94016" +155002,Lightning Charging Cable,1,14.95,01/09/19 21:50,"247 2nd St, Boston, MA 02215" +155003,AA Batteries (4-pack),1,3.84,01/07/19 11:08,"736 Maple St, New York City, NY 10001" +155004,Bose SoundSport Headphones,1,99.99,01/09/19 12:28,"250 Madison St, New York City, NY 10001" +155005,Bose SoundSport Headphones,1,99.99,01/18/19 16:07,"747 North St, San Francisco, CA 94016" +155006,AA Batteries (4-pack),3,3.84,01/03/19 22:59,"884 Lakeview St, San Francisco, CA 94016" +155007,Bose SoundSport Headphones,1,99.99,01/09/19 16:35,"730 Center St, Boston, MA 02215" +155008,AA Batteries (4-pack),2,3.84,01/25/19 20:35,"489 Elm St, Los Angeles, CA 90001" +155009,AAA Batteries (4-pack),2,2.99,01/01/19 12:28,"218 Johnson St, Portland, ME 04101" +155010,Wired Headphones,1,11.99,01/30/19 22:53,"992 Jackson St, San Francisco, CA 94016" +155010,AAA Batteries (4-pack),2,2.99,01/30/19 22:53,"992 Jackson St, San Francisco, CA 94016" +155011,20in Monitor,1,109.99,01/06/19 16:11,"220 Forest St, Dallas, TX 75001" +155012,AA Batteries (4-pack),1,3.84,01/03/19 14:11,"192 13th St, Dallas, TX 75001" +155013,Macbook Pro Laptop,1,1700,01/24/19 17:23,"751 Jackson St, Los Angeles, CA 90001" +155014,LG Dryer,1,600.0,01/03/19 21:07,"256 Spruce St, San Francisco, CA 94016" +155015,USB-C Charging Cable,1,11.95,01/08/19 11:55,"565 12th St, Los Angeles, CA 90001" +155016,34in Ultrawide Monitor,1,379.99,01/06/19 01:37,"522 Lincoln St, Portland, OR 97035" +155017,USB-C Charging Cable,1,11.95,02/01/19 00:36,"16 Johnson St, Dallas, TX 75001" +155018,AAA Batteries (4-pack),1,2.99,01/02/19 08:14,"249 Willow St, Dallas, TX 75001" +155019,Lightning Charging Cable,1,14.95,01/23/19 15:09,"972 4th St, Los Angeles, CA 90001" +155020,USB-C Charging Cable,1,11.95,01/01/19 22:30,"921 Cedar St, Los Angeles, CA 90001" +155021,34in Ultrawide Monitor,1,379.99,01/16/19 16:41,"826 Lakeview St, Austin, TX 73301" +155022,Macbook Pro Laptop,1,1700,01/17/19 19:35,"574 Sunset St, New York City, NY 10001" +155023,USB-C Charging Cable,1,11.95,01/31/19 17:57,"395 14th St, Seattle, WA 98101" +155024,Lightning Charging Cable,1,14.95,01/01/19 12:09,"757 Ridge St, New York City, NY 10001" +155025,Apple Airpods Headphones,1,150,01/28/19 11:05,"199 Elm St, Atlanta, GA 30301" +155026,Wired Headphones,1,11.99,01/07/19 14:07,"392 Jackson St, Seattle, WA 98101" +155027,ThinkPad Laptop,1,999.99,01/23/19 22:42,"141 4th St, Los Angeles, CA 90001" +155028,27in 4K Gaming Monitor,1,389.99,01/29/19 18:21,"773 13th St, Seattle, WA 98101" +155029,AAA Batteries (4-pack),1,2.99,01/24/19 10:48,"401 Wilson St, New York City, NY 10001" +155030,AA Batteries (4-pack),1,3.84,01/04/19 21:18,"669 12th St, New York City, NY 10001" +155031,34in Ultrawide Monitor,1,379.99,01/17/19 15:04,"987 14th St, New York City, NY 10001" +155032,AAA Batteries (4-pack),2,2.99,01/16/19 10:17,"559 South St, San Francisco, CA 94016" +155033,Bose SoundSport Headphones,1,99.99,01/03/19 20:39,"967 Cedar St, New York City, NY 10001" +155034,USB-C Charging Cable,2,11.95,01/20/19 10:51,"204 Center St, Boston, MA 02215" +155035,Lightning Charging Cable,1,14.95,01/14/19 18:15,"323 6th St, San Francisco, CA 94016" +155036,AA Batteries (4-pack),2,3.84,01/25/19 11:28,"462 Lake St, New York City, NY 10001" +155037,Macbook Pro Laptop,1,1700,01/19/19 23:56,"465 11th St, New York City, NY 10001" +155038,27in FHD Monitor,1,149.99,01/17/19 13:48,"348 Adams St, Los Angeles, CA 90001" +155039,USB-C Charging Cable,1,11.95,01/27/19 06:03,"455 12th St, San Francisco, CA 94016" +155040,AAA Batteries (4-pack),2,2.99,01/22/19 14:12,"126 8th St, Los Angeles, CA 90001" +155041,USB-C Charging Cable,2,11.95,01/18/19 00:49,"515 South St, Dallas, TX 75001" +155042,Google Phone,1,600,01/30/19 17:11,"153 Hickory St, Atlanta, GA 30301" +155043,Vareebadd Phone,1,400,01/29/19 10:29,"91 Main St, New York City, NY 10001" +155043,USB-C Charging Cable,1,11.95,01/29/19 10:29,"91 Main St, New York City, NY 10001" +155044,AA Batteries (4-pack),2,3.84,01/23/19 15:04,"386 1st St, San Francisco, CA 94016" +155045,USB-C Charging Cable,1,11.95,01/20/19 23:44,"550 10th St, Los Angeles, CA 90001" +155046,Lightning Charging Cable,1,14.95,01/21/19 11:03,"558 4th St, Portland, OR 97035" +155047,AAA Batteries (4-pack),1,2.99,01/05/19 18:05,"689 Elm St, New York City, NY 10001" +155048,iPhone,1,700,01/13/19 09:31,"60 Meadow St, New York City, NY 10001" +155048,Lightning Charging Cable,1,14.95,01/13/19 09:31,"60 Meadow St, New York City, NY 10001" +155049,27in 4K Gaming Monitor,1,389.99,01/21/19 14:28,"255 Chestnut St, San Francisco, CA 94016" +155050,AAA Batteries (4-pack),1,2.99,01/02/19 13:19,"256 Jefferson St, Boston, MA 02215" +155051,Google Phone,1,600,01/30/19 02:19,"32 Highland St, New York City, NY 10001" +155051,Wired Headphones,1,11.99,01/30/19 02:19,"32 Highland St, New York City, NY 10001" +155052,USB-C Charging Cable,1,11.95,01/05/19 08:42,"712 Spruce St, Boston, MA 02215" +155053,Wired Headphones,1,11.99,01/10/19 17:12,"583 Adams St, Boston, MA 02215" +155054,Bose SoundSport Headphones,1,99.99,01/20/19 22:43,"649 Lakeview St, Los Angeles, CA 90001" +155055,AAA Batteries (4-pack),3,2.99,01/21/19 17:31,"357 Johnson St, San Francisco, CA 94016" +155056,Bose SoundSport Headphones,1,99.99,01/28/19 21:01,"918 Church St, Los Angeles, CA 90001" +155057,USB-C Charging Cable,1,11.95,01/13/19 16:57,"9 6th St, Boston, MA 02215" +155058,USB-C Charging Cable,2,11.95,01/25/19 16:48,"561 Johnson St, Boston, MA 02215" +155059,34in Ultrawide Monitor,1,379.99,01/17/19 14:49,"975 Dogwood St, New York City, NY 10001" +155060,Lightning Charging Cable,1,14.95,01/18/19 22:17,"310 Wilson St, San Francisco, CA 94016" +155061,Lightning Charging Cable,1,14.95,01/14/19 21:55,"447 Hickory St, New York City, NY 10001" +155062,20in Monitor,1,109.99,01/28/19 08:35,"235 Ridge St, San Francisco, CA 94016" +155063,Lightning Charging Cable,1,14.95,01/11/19 16:57,"545 Spruce St, San Francisco, CA 94016" +155064,ThinkPad Laptop,1,999.99,01/04/19 21:32,"854 Park St, San Francisco, CA 94016" +155065,USB-C Charging Cable,1,11.95,01/02/19 11:56,"49 8th St, Seattle, WA 98101" +155066,AAA Batteries (4-pack),1,2.99,01/07/19 10:28,"851 Adams St, Seattle, WA 98101" +155067,AA Batteries (4-pack),1,3.84,01/27/19 20:53,"27 Maple St, Seattle, WA 98101" +155068,Wired Headphones,1,11.99,01/28/19 19:11,"29 Chestnut St, San Francisco, CA 94016" +155069,Flatscreen TV,1,300,01/11/19 10:40,"368 Madison St, San Francisco, CA 94016" +155070,Lightning Charging Cable,1,14.95,01/19/19 09:20,"767 Maple St, Los Angeles, CA 90001" +155071,Wired Headphones,1,11.99,01/14/19 08:08,"996 Hickory St, Austin, TX 73301" +155072,Apple Airpods Headphones,1,150,01/30/19 05:27,"336 River St, Los Angeles, CA 90001" +155073,AAA Batteries (4-pack),1,2.99,01/22/19 17:18,"942 5th St, Los Angeles, CA 90001" +155074,20in Monitor,1,109.99,01/02/19 13:49,"42 8th St, Portland, ME 04101" +155075,Apple Airpods Headphones,1,150,01/07/19 23:25,"11 Ridge St, San Francisco, CA 94016" +155076,USB-C Charging Cable,1,11.95,01/18/19 12:13,"648 Church St, San Francisco, CA 94016" +155077,Wired Headphones,1,11.99,01/27/19 00:58,"474 Adams St, Atlanta, GA 30301" +155078,AA Batteries (4-pack),1,3.84,01/14/19 02:53,"404 5th St, Dallas, TX 75001" +155079,Lightning Charging Cable,1,14.95,01/09/19 20:41,"850 Spruce St, Portland, ME 04101" +155080,AA Batteries (4-pack),1,3.84,01/18/19 16:47,"101 Cherry St, Dallas, TX 75001" +155081,Google Phone,1,600,01/05/19 12:14,"810 Hickory St, Seattle, WA 98101" +155082,Lightning Charging Cable,1,14.95,01/15/19 22:59,"782 Highland St, New York City, NY 10001" +155083,USB-C Charging Cable,1,11.95,01/19/19 19:39,"809 West St, Dallas, TX 75001" +155084,USB-C Charging Cable,1,11.95,01/08/19 19:20,"403 North St, Atlanta, GA 30301" +155085,27in 4K Gaming Monitor,1,389.99,01/27/19 20:24,"801 12th St, Atlanta, GA 30301" +155086,Wired Headphones,1,11.99,01/21/19 13:47,"252 2nd St, Atlanta, GA 30301" +155087,USB-C Charging Cable,1,11.95,01/11/19 06:59,"435 Ridge St, Portland, OR 97035" +155088,Wired Headphones,1,11.99,01/09/19 21:06,"67 Ridge St, Austin, TX 73301" +155089,AA Batteries (4-pack),1,3.84,01/03/19 19:01,"74 Jefferson St, Portland, OR 97035" +155090,Wired Headphones,1,11.99,01/05/19 18:54,"161 Dogwood St, New York City, NY 10001" +155091,27in 4K Gaming Monitor,1,389.99,01/06/19 22:03,"62 Cherry St, Atlanta, GA 30301" +155092,Apple Airpods Headphones,1,150,01/04/19 12:04,"455 Highland St, Austin, TX 73301" +155093,Wired Headphones,1,11.99,01/10/19 13:19,"902 Spruce St, Los Angeles, CA 90001" +155094,Apple Airpods Headphones,1,150,01/26/19 07:04,"122 Sunset St, San Francisco, CA 94016" +155095,USB-C Charging Cable,3,11.95,01/04/19 08:15,"253 Park St, San Francisco, CA 94016" +155096,Google Phone,1,600,01/09/19 20:38,"649 Sunset St, New York City, NY 10001" +155097,AA Batteries (4-pack),1,3.84,01/27/19 16:58,"287 Lincoln St, New York City, NY 10001" +155098,Google Phone,1,600,01/25/19 21:29,"80 Park St, Seattle, WA 98101" +155098,USB-C Charging Cable,1,11.95,01/25/19 21:29,"80 Park St, Seattle, WA 98101" +155099,Apple Airpods Headphones,1,150,01/10/19 21:18,"474 Highland St, Portland, OR 97035" +155100,AA Batteries (4-pack),1,3.84,01/07/19 19:58,"234 Maple St, Dallas, TX 75001" +155101,Flatscreen TV,1,300,01/08/19 01:41,"19 Forest St, Seattle, WA 98101" +155102,AAA Batteries (4-pack),1,2.99,01/26/19 21:18,"489 Hickory St, Los Angeles, CA 90001" +155103,AA Batteries (4-pack),1,3.84,01/19/19 16:19,"650 Lakeview St, New York City, NY 10001" +155104,Bose SoundSport Headphones,1,99.99,01/03/19 12:48,"141 14th St, New York City, NY 10001" +155105,Google Phone,1,600,01/01/19 11:18,"979 South St, Boston, MA 02215" +155106,Apple Airpods Headphones,1,150,01/08/19 18:33,"848 Hickory St, San Francisco, CA 94016" +155107,Google Phone,1,600,01/28/19 12:52,"595 West St, San Francisco, CA 94016" +155108,Vareebadd Phone,1,400,01/16/19 15:50,"375 Pine St, San Francisco, CA 94016" +155109,Lightning Charging Cable,1,14.95,01/15/19 11:24,"694 Lakeview St, Austin, TX 73301" +155110,AAA Batteries (4-pack),1,2.99,01/02/19 22:22,"119 9th St, Boston, MA 02215" +155110,AAA Batteries (4-pack),2,2.99,01/02/19 22:22,"119 9th St, Boston, MA 02215" +155111,Vareebadd Phone,1,400,01/26/19 11:02,"548 14th St, Dallas, TX 75001" +155112,AA Batteries (4-pack),1,3.84,01/25/19 17:24,"321 Park St, Boston, MA 02215" +155113,Wired Headphones,1,11.99,01/28/19 13:29,"75 12th St, Los Angeles, CA 90001" +155114,Lightning Charging Cable,1,14.95,01/15/19 12:41,"94 1st St, Boston, MA 02215" +155115,Macbook Pro Laptop,1,1700,01/12/19 18:43,"156 Maple St, San Francisco, CA 94016" +155116,Macbook Pro Laptop,1,1700,01/07/19 16:06,"222 Jefferson St, San Francisco, CA 94016" +155117,Lightning Charging Cable,1,14.95,01/29/19 19:14,"507 Center St, Boston, MA 02215" +155118,Macbook Pro Laptop,1,1700,01/14/19 16:59,"285 Jefferson St, San Francisco, CA 94016" +155119,USB-C Charging Cable,1,11.95,01/15/19 10:17,"423 Elm St, Dallas, TX 75001" +155120,27in FHD Monitor,1,149.99,01/21/19 23:08,"823 8th St, San Francisco, CA 94016" +155121,Wired Headphones,1,11.99,01/15/19 09:10,"51 Highland St, San Francisco, CA 94016" +155122,AAA Batteries (4-pack),1,2.99,01/11/19 15:53,"332 Spruce St, Atlanta, GA 30301" +155123,Wired Headphones,1,11.99,01/05/19 13:57,"5 River St, Boston, MA 02215" +155124,Wired Headphones,1,11.99,01/04/19 16:11,"469 Washington St, New York City, NY 10001" +155125,AAA Batteries (4-pack),1,2.99,01/08/19 15:55,"487 Forest St, Atlanta, GA 30301" +155126,AA Batteries (4-pack),2,3.84,01/16/19 08:34,"428 14th St, Los Angeles, CA 90001" +155127,AA Batteries (4-pack),1,3.84,01/03/19 11:45,"568 12th St, Seattle, WA 98101" +155128,Lightning Charging Cable,1,14.95,01/29/19 17:32,"163 Spruce St, Austin, TX 73301" +155129,20in Monitor,1,109.99,01/11/19 10:58,"788 Jefferson St, San Francisco, CA 94016" +155130,Macbook Pro Laptop,1,1700,01/01/19 16:27,"320 Lakeview St, Boston, MA 02215" +155131,Wired Headphones,1,11.99,01/28/19 07:53,"728 14th St, Seattle, WA 98101" +155132,27in 4K Gaming Monitor,1,389.99,01/27/19 08:48,"58 West St, Los Angeles, CA 90001" +155133,ThinkPad Laptop,1,999.99,01/03/19 20:08,"250 Hickory St, Atlanta, GA 30301" +155134,Macbook Pro Laptop,1,1700,01/24/19 19:15,"397 13th St, San Francisco, CA 94016" +155135,Bose SoundSport Headphones,1,99.99,01/14/19 01:06,"763 Willow St, Boston, MA 02215" +155136,Lightning Charging Cable,1,14.95,01/28/19 21:00,"756 South St, New York City, NY 10001" +155137,Vareebadd Phone,1,400,01/17/19 19:41,"909 2nd St, Austin, TX 73301" +155138,LG Washing Machine,1,600.0,01/25/19 19:56,"609 Cherry St, Portland, OR 97035" +155139,Apple Airpods Headphones,1,150,01/28/19 04:07,"183 9th St, New York City, NY 10001" +155139,USB-C Charging Cable,1,11.95,01/28/19 04:07,"183 9th St, New York City, NY 10001" +155140,USB-C Charging Cable,1,11.95,01/22/19 17:09,"820 Forest St, Austin, TX 73301" +155141,Macbook Pro Laptop,1,1700,01/13/19 10:35,"285 Adams St, Portland, ME 04101" +155142,Wired Headphones,1,11.99,01/06/19 09:47,"279 14th St, San Francisco, CA 94016" +155143,USB-C Charging Cable,1,11.95,01/23/19 18:16,"233 Hill St, Portland, OR 97035" +155144,AAA Batteries (4-pack),2,2.99,01/01/19 13:03,"629 Park St, Atlanta, GA 30301" +155145,AA Batteries (4-pack),3,3.84,01/12/19 02:30,"471 Ridge St, San Francisco, CA 94016" +155146,AA Batteries (4-pack),1,3.84,01/30/19 16:11,"183 North St, San Francisco, CA 94016" +155147,Wired Headphones,1,11.99,01/08/19 18:11,"787 Pine St, Los Angeles, CA 90001" +155148,AAA Batteries (4-pack),1,2.99,01/18/19 23:34,"620 Elm St, San Francisco, CA 94016" +155149,USB-C Charging Cable,1,11.95,01/03/19 20:43,"564 Hill St, Los Angeles, CA 90001" +155150,Google Phone,1,600,01/15/19 20:45,"899 Dogwood St, San Francisco, CA 94016" +155150,USB-C Charging Cable,1,11.95,01/15/19 20:45,"899 Dogwood St, San Francisco, CA 94016" +155151,ThinkPad Laptop,1,999.99,01/23/19 16:12,"710 Johnson St, New York City, NY 10001" +155152,AA Batteries (4-pack),2,3.84,01/04/19 09:10,"552 1st St, Atlanta, GA 30301" +155153,Flatscreen TV,1,300,01/09/19 22:09,"494 Forest St, New York City, NY 10001" +155154,34in Ultrawide Monitor,1,379.99,01/05/19 14:14,"737 7th St, New York City, NY 10001" +155155,Bose SoundSport Headphones,1,99.99,01/15/19 21:42,"924 Ridge St, Los Angeles, CA 90001" +155156,LG Dryer,1,600.0,01/13/19 20:59,"717 Church St, Dallas, TX 75001" +155157,Google Phone,1,600,01/20/19 23:42,"921 Hill St, Atlanta, GA 30301" +155157,USB-C Charging Cable,1,11.95,01/20/19 23:42,"921 Hill St, Atlanta, GA 30301" +155158,Lightning Charging Cable,1,14.95,01/02/19 18:04,"181 Pine St, Portland, OR 97035" +155159,AAA Batteries (4-pack),1,2.99,01/20/19 13:09,"452 8th St, Los Angeles, CA 90001" +155160,Lightning Charging Cable,1,14.95,01/01/19 20:03,"7 Elm St, San Francisco, CA 94016" +155161,USB-C Charging Cable,1,11.95,01/29/19 20:29,"739 Jackson St, Atlanta, GA 30301" +155162,AAA Batteries (4-pack),1,2.99,01/28/19 15:43,"827 7th St, Los Angeles, CA 90001" +155163,Apple Airpods Headphones,1,150,01/04/19 15:59,"81 2nd St, San Francisco, CA 94016" +155164,iPhone,1,700,01/03/19 20:10,"147 9th St, San Francisco, CA 94016" +155165,Google Phone,1,600,01/24/19 20:07,"759 Spruce St, Seattle, WA 98101" +155165,Wired Headphones,1,11.99,01/24/19 20:07,"759 Spruce St, Seattle, WA 98101" +155166,Google Phone,1,600,01/24/19 13:03,"852 5th St, Los Angeles, CA 90001" +155167,Bose SoundSport Headphones,1,99.99,01/28/19 14:27,"181 11th St, Atlanta, GA 30301" +155168,Lightning Charging Cable,1,14.95,01/19/19 17:06,"986 Meadow St, San Francisco, CA 94016" +155169,Wired Headphones,1,11.99,01/26/19 14:23,"451 Center St, Boston, MA 02215" +155170,27in 4K Gaming Monitor,1,389.99,01/09/19 18:25,"733 Hickory St, San Francisco, CA 94016" +155171,Macbook Pro Laptop,1,1700,01/15/19 13:46,"721 13th St, Boston, MA 02215" +155172,Wired Headphones,1,11.99,01/08/19 15:26,"541 West St, San Francisco, CA 94016" +155173,Macbook Pro Laptop,1,1700,01/19/19 09:45,"542 Hill St, Portland, OR 97035" +155174,Lightning Charging Cable,1,14.95,01/07/19 18:52,"55 1st St, Boston, MA 02215" +155175,Lightning Charging Cable,1,14.95,01/16/19 22:13,"527 8th St, San Francisco, CA 94016" +155176,AAA Batteries (4-pack),1,2.99,01/05/19 16:41,"37 Adams St, San Francisco, CA 94016" +155177,27in 4K Gaming Monitor,1,389.99,01/23/19 18:44,"169 Cherry St, San Francisco, CA 94016" +155178,Apple Airpods Headphones,1,150,01/24/19 16:54,"760 Cedar St, San Francisco, CA 94016" +155179,Lightning Charging Cable,1,14.95,01/31/19 22:21,"699 Dogwood St, Boston, MA 02215" +155180,AA Batteries (4-pack),1,3.84,01/05/19 16:57,"808 14th St, Los Angeles, CA 90001" +155181,Lightning Charging Cable,1,14.95,01/07/19 18:55,"948 Lakeview St, New York City, NY 10001" +155182,Wired Headphones,1,11.99,01/08/19 18:42,"761 10th St, San Francisco, CA 94016" +155183,Bose SoundSport Headphones,2,99.99,01/17/19 19:21,"135 Meadow St, San Francisco, CA 94016" +155184,Bose SoundSport Headphones,1,99.99,01/06/19 18:48,"372 Jackson St, Los Angeles, CA 90001" +155185,Lightning Charging Cable,1,14.95,01/23/19 11:56,"121 14th St, Boston, MA 02215" +155186,AAA Batteries (4-pack),3,2.99,01/08/19 13:13,"109 Main St, San Francisco, CA 94016" +155187,Wired Headphones,1,11.99,01/25/19 18:48,"266 Elm St, Austin, TX 73301" +155188,20in Monitor,1,109.99,01/25/19 13:40,"111 8th St, New York City, NY 10001" +155189,AA Batteries (4-pack),2,3.84,01/24/19 14:36,"863 Center St, Austin, TX 73301" +155190,USB-C Charging Cable,1,11.95,01/06/19 17:13,"182 Adams St, New York City, NY 10001" +155191,Wired Headphones,1,11.99,01/31/19 07:35,"919 Lake St, New York City, NY 10001" +155191,AAA Batteries (4-pack),1,2.99,01/31/19 07:35,"919 Lake St, New York City, NY 10001" +155192,Lightning Charging Cable,1,14.95,01/28/19 15:00,"225 5th St, Los Angeles, CA 90001" +155193,Lightning Charging Cable,1,14.95,01/03/19 14:04,"314 Park St, Portland, ME 04101" +155194,AAA Batteries (4-pack),2,2.99,01/21/19 11:47,"361 Washington St, Boston, MA 02215" +155195,27in FHD Monitor,1,149.99,01/06/19 20:35,"524 6th St, Atlanta, GA 30301" +155196,Wired Headphones,1,11.99,01/20/19 18:55,"31 Adams St, San Francisco, CA 94016" +155197,USB-C Charging Cable,1,11.95,01/07/19 21:00,"924 7th St, San Francisco, CA 94016" +155198,Lightning Charging Cable,1,14.95,01/09/19 21:28,"793 Jefferson St, New York City, NY 10001" +155199,AA Batteries (4-pack),1,3.84,01/02/19 21:17,"711 Maple St, Los Angeles, CA 90001" +155200,Bose SoundSport Headphones,1,99.99,01/27/19 20:41,"728 West St, New York City, NY 10001" +155201,USB-C Charging Cable,1,11.95,01/01/19 11:18,"399 10th St, San Francisco, CA 94016" +155202,USB-C Charging Cable,1,11.95,01/21/19 14:34,"230 North St, San Francisco, CA 94016" +155203,USB-C Charging Cable,1,11.95,01/28/19 23:11,"235 Highland St, Boston, MA 02215" +155204,USB-C Charging Cable,1,11.95,01/31/19 18:46,"266 Adams St, Los Angeles, CA 90001" +155205,Wired Headphones,1,11.99,01/08/19 06:47,"378 Adams St, Seattle, WA 98101" +155206,AA Batteries (4-pack),1,3.84,01/14/19 21:28,"796 Park St, Boston, MA 02215" +155207,AAA Batteries (4-pack),1,2.99,01/18/19 19:02,"209 10th St, San Francisco, CA 94016" +155208,Wired Headphones,1,11.99,01/17/19 22:28,"537 Elm St, Boston, MA 02215" +155209,27in 4K Gaming Monitor,1,389.99,01/05/19 15:35,"340 2nd St, San Francisco, CA 94016" +155210,Lightning Charging Cable,1,14.95,01/18/19 00:35,"912 Wilson St, Atlanta, GA 30301" +155211,34in Ultrawide Monitor,1,379.99,01/29/19 17:35,"767 1st St, Los Angeles, CA 90001" +155212,AA Batteries (4-pack),1,3.84,01/15/19 18:51,"974 Elm St, San Francisco, CA 94016" +155213,Lightning Charging Cable,1,14.95,01/11/19 22:37,"48 Maple St, New York City, NY 10001" +155214,Google Phone,1,600,01/03/19 20:56,"55 Dogwood St, Los Angeles, CA 90001" +155215,27in FHD Monitor,1,149.99,01/12/19 13:57,"61 Cherry St, San Francisco, CA 94016" +155216,Apple Airpods Headphones,1,150,01/14/19 10:35,"377 Spruce St, Boston, MA 02215" +155217,Google Phone,1,600,01/22/19 19:38,"657 Washington St, Portland, OR 97035" +155218,Bose SoundSport Headphones,1,99.99,01/06/19 10:39,"474 Johnson St, San Francisco, CA 94016" +155219,Macbook Pro Laptop,1,1700,01/21/19 20:30,"968 8th St, Austin, TX 73301" +155220,Bose SoundSport Headphones,1,99.99,01/07/19 12:30,"914 Sunset St, San Francisco, CA 94016" +155221,Lightning Charging Cable,1,14.95,01/03/19 10:47,"26 13th St, Los Angeles, CA 90001" +155222,27in FHD Monitor,1,149.99,01/20/19 19:00,"625 9th St, San Francisco, CA 94016" +155223,USB-C Charging Cable,1,11.95,01/14/19 13:28,"503 Meadow St, New York City, NY 10001" +155223,Wired Headphones,1,11.99,01/14/19 13:28,"503 Meadow St, New York City, NY 10001" +155224,27in FHD Monitor,1,149.99,01/31/19 20:48,"682 11th St, Austin, TX 73301" +155225,Google Phone,1,600,01/01/19 13:33,"572 Ridge St, Seattle, WA 98101" +155225,USB-C Charging Cable,1,11.95,01/01/19 13:33,"572 Ridge St, Seattle, WA 98101" +155226,Macbook Pro Laptop,1,1700,01/07/19 11:01,"549 10th St, Seattle, WA 98101" +155227,USB-C Charging Cable,1,11.95,01/22/19 20:34,"738 Pine St, Seattle, WA 98101" +155228,27in FHD Monitor,1,149.99,01/08/19 13:47,"3 9th St, San Francisco, CA 94016" +155229,Lightning Charging Cable,1,14.95,01/09/19 21:30,"983 Park St, Los Angeles, CA 90001" +155230,Lightning Charging Cable,1,14.95,01/06/19 19:57,"40 Cedar St, New York City, NY 10001" +155231,Apple Airpods Headphones,1,150,01/22/19 14:43,"226 4th St, New York City, NY 10001" +155232,AA Batteries (4-pack),1,3.84,01/05/19 13:17,"133 North St, New York City, NY 10001" +155233,Wired Headphones,1,11.99,01/22/19 05:58,"267 North St, Boston, MA 02215" +155234,Google Phone,1,600,01/21/19 17:23,"982 Willow St, San Francisco, CA 94016" +155234,USB-C Charging Cable,1,11.95,01/21/19 17:23,"982 Willow St, San Francisco, CA 94016" +155235,Bose SoundSport Headphones,1,99.99,01/17/19 07:24,"973 Elm St, San Francisco, CA 94016" +155236,Macbook Pro Laptop,1,1700,01/04/19 11:52,"520 Walnut St, San Francisco, CA 94016" +155237,Wired Headphones,1,11.99,01/12/19 10:51,"623 Washington St, Los Angeles, CA 90001" +155238,Apple Airpods Headphones,1,150,01/10/19 22:21,"161 12th St, San Francisco, CA 94016" +155239,27in FHD Monitor,2,149.99,01/08/19 18:52,"212 14th St, Portland, OR 97035" +155240,27in FHD Monitor,1,149.99,01/16/19 13:08,"177 Highland St, Los Angeles, CA 90001" +155241,AAA Batteries (4-pack),3,2.99,01/21/19 15:03,"965 4th St, Los Angeles, CA 90001" +155242,AA Batteries (4-pack),1,3.84,01/13/19 20:32,"731 Meadow St, Seattle, WA 98101" +155243,USB-C Charging Cable,1,11.95,01/15/19 16:41,"364 9th St, San Francisco, CA 94016" +155244,Macbook Pro Laptop,1,1700,01/13/19 13:22,"471 11th St, Portland, OR 97035" +155245,Lightning Charging Cable,1,14.95,01/03/19 02:09,"377 Lincoln St, Portland, OR 97035" +155246,USB-C Charging Cable,1,11.95,01/24/19 22:43,"759 Elm St, New York City, NY 10001" +155247,USB-C Charging Cable,1,11.95,01/08/19 20:41,"326 West St, Los Angeles, CA 90001" +155248,Flatscreen TV,1,300,01/06/19 22:22,"296 Meadow St, Boston, MA 02215" +155249,AA Batteries (4-pack),1,3.84,01/16/19 18:46,"28 Meadow St, New York City, NY 10001" +155250,Apple Airpods Headphones,1,150,01/29/19 14:01,"557 Pine St, Boston, MA 02215" +155251,Lightning Charging Cable,1,14.95,01/11/19 20:01,"298 Lake St, San Francisco, CA 94016" +155252,Lightning Charging Cable,2,14.95,01/19/19 17:53,"200 Cherry St, San Francisco, CA 94016" +155253,27in FHD Monitor,1,149.99,01/26/19 20:25,"202 Jefferson St, Atlanta, GA 30301" +155254,Lightning Charging Cable,1,14.95,01/18/19 21:03,"266 Meadow St, Austin, TX 73301" +155255,AA Batteries (4-pack),1,3.84,01/10/19 21:32,"927 6th St, Los Angeles, CA 90001" +155256,20in Monitor,1,109.99,01/09/19 04:13,"35 Maple St, Los Angeles, CA 90001" +155257,AA Batteries (4-pack),1,3.84,01/25/19 16:47,"2 Cherry St, Seattle, WA 98101" +155258,AA Batteries (4-pack),1,3.84,01/06/19 17:04,"873 Lake St, Dallas, TX 75001" +155259,Apple Airpods Headphones,1,150,01/30/19 13:17,"454 Meadow St, Dallas, TX 75001" +155260,AAA Batteries (4-pack),2,2.99,01/19/19 18:41,"599 Madison St, San Francisco, CA 94016" +155261,AAA Batteries (4-pack),1,2.99,01/21/19 11:08,"683 Sunset St, Boston, MA 02215" +155262,Lightning Charging Cable,1,14.95,01/19/19 12:57,"489 10th St, Seattle, WA 98101" +155263,Lightning Charging Cable,1,14.95,01/12/19 17:25,"456 8th St, New York City, NY 10001" +155264,AAA Batteries (4-pack),1,2.99,01/24/19 19:29,"410 Park St, New York City, NY 10001" +155265,AAA Batteries (4-pack),1,2.99,01/31/19 12:39,"430 West St, San Francisco, CA 94016" +155266,AAA Batteries (4-pack),1,2.99,01/16/19 14:36,"4 North St, San Francisco, CA 94016" +155267,AA Batteries (4-pack),1,3.84,01/28/19 14:03,"691 Walnut St, Los Angeles, CA 90001" +155268,Lightning Charging Cable,1,14.95,01/05/19 11:50,"810 Park St, New York City, NY 10001" +155269,Apple Airpods Headphones,1,150,01/03/19 11:38,"65 Cherry St, Boston, MA 02215" +155270,27in FHD Monitor,1,149.99,01/20/19 20:24,"53 Chestnut St, New York City, NY 10001" +155271,AA Batteries (4-pack),1,3.84,01/25/19 10:55,"797 Lake St, Atlanta, GA 30301" +155272,Bose SoundSport Headphones,1,99.99,01/27/19 12:03,"288 Hill St, Boston, MA 02215" +155273,iPhone,1,700,01/22/19 11:34,"709 North St, San Francisco, CA 94016" +155274,iPhone,1,700,01/27/19 02:13,"133 Main St, San Francisco, CA 94016" +155275,AAA Batteries (4-pack),1,2.99,01/02/19 13:07,"307 Lakeview St, New York City, NY 10001" +155276,AA Batteries (4-pack),1,3.84,01/17/19 20:34,"933 Cedar St, Seattle, WA 98101" +155277,AAA Batteries (4-pack),1,2.99,01/08/19 17:38,"319 River St, New York City, NY 10001" +155278,Apple Airpods Headphones,1,150,01/15/19 15:26,"849 Church St, Dallas, TX 75001" +155279,AAA Batteries (4-pack),1,2.99,01/30/19 11:52,"484 Wilson St, New York City, NY 10001" +155280,20in Monitor,1,109.99,01/14/19 18:40,"985 1st St, Los Angeles, CA 90001" +155281,AAA Batteries (4-pack),1,2.99,01/23/19 12:15,"118 Cherry St, Los Angeles, CA 90001" +155282,Lightning Charging Cable,1,14.95,01/26/19 13:28,"744 12th St, Dallas, TX 75001" +155283,AA Batteries (4-pack),1,3.84,01/08/19 19:14,"452 Washington St, New York City, NY 10001" +155284,AAA Batteries (4-pack),1,2.99,01/07/19 15:35,"677 5th St, Los Angeles, CA 90001" +155285,Flatscreen TV,1,300,01/01/19 11:16,"765 4th St, Atlanta, GA 30301" +155286,AAA Batteries (4-pack),2,2.99,01/24/19 14:07,"480 Sunset St, Portland, OR 97035" +155287,27in FHD Monitor,1,149.99,01/30/19 09:02,"812 Center St, Atlanta, GA 30301" +155288,ThinkPad Laptop,1,999.99,01/11/19 17:44,"622 11th St, Boston, MA 02215" +155289,20in Monitor,1,109.99,01/04/19 18:18,"619 9th St, Boston, MA 02215" +155290,AAA Batteries (4-pack),2,2.99,01/07/19 17:02,"239 South St, San Francisco, CA 94016" +155291,AAA Batteries (4-pack),2,2.99,01/25/19 02:25,"884 Highland St, San Francisco, CA 94016" +155292,Bose SoundSport Headphones,1,99.99,01/20/19 14:54,"895 Sunset St, Los Angeles, CA 90001" +155293,AA Batteries (4-pack),1,3.84,01/02/19 22:27,"947 Maple St, Seattle, WA 98101" +155294,Bose SoundSport Headphones,1,99.99,01/14/19 00:47,"657 Hickory St, Austin, TX 73301" +155295,27in FHD Monitor,1,149.99,01/12/19 22:15,"264 6th St, Los Angeles, CA 90001" +155296,Apple Airpods Headphones,1,150,01/12/19 12:01,"514 Maple St, Atlanta, GA 30301" +155297,Bose SoundSport Headphones,1,99.99,01/13/19 01:21,"119 Chestnut St, Portland, OR 97035" +155298,Bose SoundSport Headphones,1,99.99,01/06/19 10:06,"866 Spruce St, Portland, OR 97035" +155299,Bose SoundSport Headphones,1,99.99,01/07/19 23:59,"584 Pine St, Boston, MA 02215" +155300,USB-C Charging Cable,1,11.95,01/30/19 19:13,"211 Cherry St, San Francisco, CA 94016" +155301,Flatscreen TV,1,300,01/09/19 20:37,"340 12th St, Atlanta, GA 30301" +155302,27in 4K Gaming Monitor,1,389.99,01/25/19 09:16,"889 11th St, Los Angeles, CA 90001" +155303,Bose SoundSport Headphones,1,99.99,01/15/19 17:48,"715 14th St, Dallas, TX 75001" +155304,34in Ultrawide Monitor,1,379.99,01/18/19 11:57,"813 Sunset St, Boston, MA 02215" +155305,Wired Headphones,1,11.99,01/05/19 11:17,"245 11th St, Los Angeles, CA 90001" +155306,27in 4K Gaming Monitor,1,389.99,01/05/19 17:37,"481 Hickory St, Dallas, TX 75001" +155307,USB-C Charging Cable,1,11.95,01/10/19 12:35,"651 Jefferson St, New York City, NY 10001" +155308,Wired Headphones,1,11.99,01/24/19 22:50,"674 Cherry St, San Francisco, CA 94016" +155309,AAA Batteries (4-pack),3,2.99,01/03/19 22:55,"460 9th St, Seattle, WA 98101" +155310,Apple Airpods Headphones,1,150,01/23/19 14:18,"283 Ridge St, Seattle, WA 98101" +155311,Google Phone,1,600,01/31/19 12:51,"399 1st St, Dallas, TX 75001" +155312,Wired Headphones,1,11.99,01/06/19 19:57,"902 Adams St, Boston, MA 02215" +155313,AA Batteries (4-pack),2,3.84,01/04/19 12:20,"378 Jackson St, Portland, ME 04101" +155314,USB-C Charging Cable,1,11.95,01/20/19 10:24,"279 Park St, Atlanta, GA 30301" +155315,Lightning Charging Cable,1,14.95,01/26/19 16:10,"443 Jefferson St, San Francisco, CA 94016" +155316,AAA Batteries (4-pack),1,2.99,01/29/19 13:31,"621 11th St, San Francisco, CA 94016" +155317,AA Batteries (4-pack),1,3.84,01/08/19 15:37,"985 8th St, Seattle, WA 98101" +155318,Wired Headphones,1,11.99,01/15/19 06:25,"451 Park St, Boston, MA 02215" +155319,iPhone,1,700,01/29/19 08:38,"457 Sunset St, New York City, NY 10001" +155320,34in Ultrawide Monitor,1,379.99,01/09/19 16:49,"853 Cherry St, Los Angeles, CA 90001" +155321,Bose SoundSport Headphones,1,99.99,01/12/19 20:00,"434 Madison St, San Francisco, CA 94016" +155322,Bose SoundSport Headphones,1,99.99,01/10/19 12:53,"573 Lakeview St, Boston, MA 02215" +155323,Wired Headphones,1,11.99,01/01/19 03:43,"497 13th St, San Francisco, CA 94016" +155324,Lightning Charging Cable,1,14.95,01/26/19 21:17,"221 8th St, Portland, ME 04101" +155324,USB-C Charging Cable,1,11.95,01/26/19 21:17,"221 8th St, Portland, ME 04101" +155325,Wired Headphones,1,11.99,01/13/19 07:58,"469 9th St, Los Angeles, CA 90001" +155326,Wired Headphones,1,11.99,01/06/19 20:55,"437 Elm St, New York City, NY 10001" +155327,Lightning Charging Cable,1,14.95,01/12/19 13:43,"70 Washington St, Atlanta, GA 30301" +155328,Apple Airpods Headphones,1,150,01/09/19 21:19,"916 Meadow St, New York City, NY 10001" +155328,USB-C Charging Cable,1,11.95,01/09/19 21:19,"916 Meadow St, New York City, NY 10001" +155329,20in Monitor,1,109.99,01/03/19 17:54,"444 Dogwood St, Austin, TX 73301" +155330,Wired Headphones,1,11.99,01/16/19 09:59,"534 Cherry St, San Francisco, CA 94016" +155330,AAA Batteries (4-pack),1,2.99,01/16/19 09:59,"534 Cherry St, San Francisco, CA 94016" +155331,ThinkPad Laptop,1,999.99,01/31/19 14:45,"849 Elm St, San Francisco, CA 94016" +155332,Wired Headphones,1,11.99,01/19/19 17:21,"655 Jefferson St, New York City, NY 10001" +155333,USB-C Charging Cable,1,11.95,01/14/19 20:32,"513 14th St, Atlanta, GA 30301" +155334,27in 4K Gaming Monitor,1,389.99,01/26/19 08:54,"410 13th St, San Francisco, CA 94016" +155335,Bose SoundSport Headphones,1,99.99,01/22/19 00:11,"200 Madison St, San Francisco, CA 94016" +155336,Apple Airpods Headphones,1,150,01/26/19 14:57,"782 Willow St, San Francisco, CA 94016" +155337,USB-C Charging Cable,1,11.95,01/11/19 23:07,"186 Church St, Atlanta, GA 30301" +155338,20in Monitor,1,109.99,01/04/19 16:24,"678 Meadow St, Dallas, TX 75001" +155339,Lightning Charging Cable,1,14.95,01/23/19 01:31,"997 9th St, New York City, NY 10001" +155340,AA Batteries (4-pack),3,3.84,01/16/19 20:59,"540 Jefferson St, San Francisco, CA 94016" +155341,AA Batteries (4-pack),1,3.84,01/21/19 17:37,"59 Jackson St, Austin, TX 73301" +155342,Apple Airpods Headphones,1,150,01/27/19 18:17,"409 Willow St, Dallas, TX 75001" +155343,AA Batteries (4-pack),1,3.84,01/29/19 18:13,"187 7th St, Los Angeles, CA 90001" +155344,Vareebadd Phone,1,400,01/07/19 08:32,"279 8th St, Atlanta, GA 30301" +155344,USB-C Charging Cable,1,11.95,01/07/19 08:32,"279 8th St, Atlanta, GA 30301" +155345,USB-C Charging Cable,1,11.95,01/14/19 17:57,"408 14th St, Los Angeles, CA 90001" +155346,USB-C Charging Cable,1,11.95,01/07/19 18:22,"426 Washington St, San Francisco, CA 94016" +155347,Bose SoundSport Headphones,1,99.99,01/06/19 00:31,"530 Adams St, Los Angeles, CA 90001" +155348,Flatscreen TV,1,300,01/31/19 17:29,"393 7th St, San Francisco, CA 94016" +155349,Apple Airpods Headphones,1,150,01/16/19 18:33,"166 West St, Los Angeles, CA 90001" +155350,27in 4K Gaming Monitor,1,389.99,01/30/19 18:17,"722 Ridge St, Los Angeles, CA 90001" +155351,AA Batteries (4-pack),3,3.84,01/24/19 16:59,"139 Washington St, San Francisco, CA 94016" +155352,Wired Headphones,1,11.99,01/01/19 12:20,"391 11th St, Los Angeles, CA 90001" +155353,20in Monitor,1,109.99,01/09/19 13:16,"531 Lake St, San Francisco, CA 94016" +155354,Apple Airpods Headphones,1,150,01/06/19 18:33,"431 Walnut St, San Francisco, CA 94016" +155355,Lightning Charging Cable,1,14.95,01/18/19 15:21,"635 Park St, Austin, TX 73301" +155356,Apple Airpods Headphones,1,150,01/07/19 20:33,"142 Wilson St, San Francisco, CA 94016" +155357,Wired Headphones,2,11.99,01/21/19 09:20,"927 Cedar St, San Francisco, CA 94016" +155358,Flatscreen TV,1,300,01/17/19 13:30,"33 Jefferson St, New York City, NY 10001" +155359,Wired Headphones,1,11.99,01/12/19 11:55,"979 2nd St, Los Angeles, CA 90001" +155360,34in Ultrawide Monitor,1,379.99,01/23/19 18:39,"40 Dogwood St, Portland, OR 97035" +155361,USB-C Charging Cable,1,11.95,01/26/19 18:02,"716 Pine St, San Francisco, CA 94016" +155362,USB-C Charging Cable,1,11.95,01/08/19 20:42,"136 Sunset St, Boston, MA 02215" +155363,AA Batteries (4-pack),1,3.84,01/29/19 12:42,"758 9th St, New York City, NY 10001" +155364,AAA Batteries (4-pack),2,2.99,01/08/19 15:10,"826 12th St, Los Angeles, CA 90001" +,,,,, +155365,AA Batteries (4-pack),1,3.84,01/24/19 10:50,"47 Forest St, Atlanta, GA 30301" +155366,34in Ultrawide Monitor,1,379.99,01/14/19 10:16,"184 Lincoln St, New York City, NY 10001" +155367,Wired Headphones,2,11.99,01/19/19 19:36,"686 4th St, Los Angeles, CA 90001" +155368,27in 4K Gaming Monitor,1,389.99,01/16/19 13:41,"951 Walnut St, Atlanta, GA 30301" +155369,27in FHD Monitor,1,149.99,01/12/19 13:21,"124 Johnson St, Boston, MA 02215" +155370,Lightning Charging Cable,1,14.95,01/21/19 20:47,"538 Jefferson St, Dallas, TX 75001" +155371,LG Dryer,1,600.0,01/11/19 17:20,"362 Washington St, San Francisco, CA 94016" +155372,Bose SoundSport Headphones,1,99.99,01/05/19 14:50,"356 11th St, San Francisco, CA 94016" +155373,AA Batteries (4-pack),1,3.84,01/04/19 17:30,"62 Jackson St, Austin, TX 73301" +155374,Lightning Charging Cable,1,14.95,01/21/19 14:50,"542 Willow St, San Francisco, CA 94016" +155375,Google Phone,1,600,01/26/19 00:34,"427 Center St, New York City, NY 10001" +155376,AAA Batteries (4-pack),1,2.99,01/22/19 18:11,"296 Pine St, Dallas, TX 75001" +155377,Wired Headphones,1,11.99,01/04/19 15:37,"253 6th St, Boston, MA 02215" +155378,AAA Batteries (4-pack),2,2.99,01/17/19 00:53,"110 4th St, Los Angeles, CA 90001" +155379,AA Batteries (4-pack),1,3.84,01/27/19 19:09,"583 South St, Los Angeles, CA 90001" +155380,ThinkPad Laptop,1,999.99,01/16/19 11:05,"362 Dogwood St, San Francisco, CA 94016" +155381,Lightning Charging Cable,1,14.95,01/19/19 12:33,"406 Highland St, Atlanta, GA 30301" +155382,27in FHD Monitor,1,149.99,01/10/19 22:58,"610 Main St, Boston, MA 02215" +155383,Wired Headphones,1,11.99,01/22/19 08:18,"809 10th St, San Francisco, CA 94016" +155384,Bose SoundSport Headphones,1,99.99,01/11/19 19:26,"49 2nd St, San Francisco, CA 94016" +155385,27in 4K Gaming Monitor,1,389.99,01/06/19 09:11,"332 Hill St, Seattle, WA 98101" +155386,Wired Headphones,1,11.99,01/16/19 13:17,"741 6th St, Dallas, TX 75001" +155387,USB-C Charging Cable,1,11.95,01/12/19 10:51,"972 Dogwood St, Portland, OR 97035" +155388,34in Ultrawide Monitor,1,379.99,01/27/19 09:43,"771 River St, San Francisco, CA 94016" +155389,Bose SoundSport Headphones,1,99.99,01/02/19 10:01,"741 7th St, Seattle, WA 98101" +155390,Lightning Charging Cable,1,14.95,01/22/19 09:06,"912 4th St, New York City, NY 10001" +155391,AA Batteries (4-pack),1,3.84,01/23/19 19:25,"550 Jefferson St, Atlanta, GA 30301" +155392,Wired Headphones,1,11.99,01/19/19 19:32,"917 6th St, San Francisco, CA 94016" +155393,iPhone,1,700,01/13/19 12:54,"239 Walnut St, Los Angeles, CA 90001" +155394,27in FHD Monitor,1,149.99,01/04/19 08:05,"396 6th St, Boston, MA 02215" +155395,Lightning Charging Cable,1,14.95,01/18/19 14:34,"723 Lincoln St, Los Angeles, CA 90001" +155396,Apple Airpods Headphones,1,150,01/16/19 18:05,"957 Adams St, Los Angeles, CA 90001" +155396,AAA Batteries (4-pack),1,2.99,01/16/19 18:05,"957 Adams St, Los Angeles, CA 90001" +155397,Bose SoundSport Headphones,1,99.99,01/27/19 21:25,"442 River St, Seattle, WA 98101" +155398,AA Batteries (4-pack),1,3.84,01/03/19 20:34,"532 Lakeview St, Los Angeles, CA 90001" +155399,Bose SoundSport Headphones,1,99.99,01/19/19 14:27,"704 Maple St, San Francisco, CA 94016" +155400,Bose SoundSport Headphones,1,99.99,01/11/19 16:59,"636 Meadow St, New York City, NY 10001" +155401,iPhone,1,700,01/29/19 18:11,"352 Ridge St, Portland, OR 97035" +155402,27in FHD Monitor,1,149.99,01/03/19 11:35,"874 Park St, San Francisco, CA 94016" +155403,Apple Airpods Headphones,1,150,01/29/19 16:28,"700 Willow St, San Francisco, CA 94016" +155404,AAA Batteries (4-pack),2,2.99,01/30/19 17:06,"601 Jackson St, Atlanta, GA 30301" +155405,iPhone,1,700,01/26/19 21:02,"252 Pine St, New York City, NY 10001" +155406,Bose SoundSport Headphones,1,99.99,01/08/19 00:06,"246 4th St, Los Angeles, CA 90001" +155407,AAA Batteries (4-pack),2,2.99,01/10/19 18:53,"859 12th St, Atlanta, GA 30301" +155408,AAA Batteries (4-pack),1,2.99,01/25/19 23:08,"167 Sunset St, Los Angeles, CA 90001" +155409,AA Batteries (4-pack),1,3.84,01/31/19 20:10,"877 Walnut St, Atlanta, GA 30301" +155410,Macbook Pro Laptop,1,1700,01/28/19 18:47,"708 Main St, New York City, NY 10001" +155411,Wired Headphones,1,11.99,01/10/19 21:38,"273 North St, Austin, TX 73301" +155412,Lightning Charging Cable,1,14.95,01/28/19 23:16,"276 Adams St, Portland, ME 04101" +155413,Bose SoundSport Headphones,1,99.99,01/29/19 09:57,"316 Ridge St, Atlanta, GA 30301" +155414,USB-C Charging Cable,1,11.95,01/08/19 07:58,"56 North St, San Francisco, CA 94016" +155415,Lightning Charging Cable,1,14.95,01/24/19 19:19,"406 Johnson St, Portland, ME 04101" +155416,AAA Batteries (4-pack),1,2.99,01/05/19 12:04,"295 Hill St, San Francisco, CA 94016" +155417,AAA Batteries (4-pack),3,2.99,01/31/19 09:58,"442 Willow St, San Francisco, CA 94016" +155418,Lightning Charging Cable,2,14.95,01/26/19 15:46,"202 Adams St, New York City, NY 10001" +155419,AAA Batteries (4-pack),1,2.99,01/19/19 20:46,"60 South St, New York City, NY 10001" +155420,Wired Headphones,1,11.99,01/16/19 22:37,"480 1st St, Dallas, TX 75001" +155421,USB-C Charging Cable,1,11.95,01/17/19 15:17,"774 North St, Portland, ME 04101" +155422,AA Batteries (4-pack),1,3.84,01/17/19 19:59,"998 12th St, Los Angeles, CA 90001" +155423,AA Batteries (4-pack),1,3.84,01/18/19 23:27,"412 Maple St, Atlanta, GA 30301" +155424,AAA Batteries (4-pack),1,2.99,01/25/19 20:08,"538 Spruce St, San Francisco, CA 94016" +155424,27in FHD Monitor,1,149.99,01/25/19 20:08,"538 Spruce St, San Francisco, CA 94016" +155425,Macbook Pro Laptop,1,1700,01/02/19 21:50,"708 Johnson St, San Francisco, CA 94016" +155426,Google Phone,1,600,01/29/19 11:35,"684 Sunset St, San Francisco, CA 94016" +155426,USB-C Charging Cable,1,11.95,01/29/19 11:35,"684 Sunset St, San Francisco, CA 94016" +155427,AAA Batteries (4-pack),4,2.99,01/15/19 10:12,"299 Maple St, Los Angeles, CA 90001" +155428,27in 4K Gaming Monitor,1,389.99,01/15/19 18:07,"53 Madison St, San Francisco, CA 94016" +155429,Apple Airpods Headphones,1,150,01/18/19 12:59,"264 Highland St, Los Angeles, CA 90001" +155430,USB-C Charging Cable,1,11.95,01/19/19 21:26,"583 Adams St, New York City, NY 10001" +155431,34in Ultrawide Monitor,1,379.99,01/15/19 22:25,"665 Pine St, Atlanta, GA 30301" +155432,AA Batteries (4-pack),1,3.84,01/20/19 16:44,"948 5th St, San Francisco, CA 94016" +155433,AA Batteries (4-pack),1,3.84,01/03/19 14:24,"580 Adams St, San Francisco, CA 94016" +155434,Lightning Charging Cable,1,14.95,01/12/19 10:59,"532 Maple St, Seattle, WA 98101" +155435,Lightning Charging Cable,1,14.95,01/16/19 16:03,"625 Chestnut St, Portland, OR 97035" +155436,ThinkPad Laptop,1,999.99,01/31/19 22:00,"276 Elm St, Austin, TX 73301" +155437,34in Ultrawide Monitor,1,379.99,01/08/19 09:47,"256 Sunset St, Dallas, TX 75001" +155438,Bose SoundSport Headphones,1,99.99,01/17/19 10:15,"568 14th St, Boston, MA 02215" +155439,Google Phone,1,600,01/12/19 15:02,"229 6th St, New York City, NY 10001" +155440,27in FHD Monitor,1,149.99,01/01/19 12:22,"619 Highland St, New York City, NY 10001" +155441,Lightning Charging Cable,1,14.95,01/23/19 02:27,"960 West St, Los Angeles, CA 90001" +155442,Apple Airpods Headphones,1,150,01/16/19 04:23,"528 10th St, Boston, MA 02215" +155443,Apple Airpods Headphones,1,150,01/28/19 09:57,"63 8th St, Los Angeles, CA 90001" +155444,Bose SoundSport Headphones,1,99.99,01/02/19 19:56,"99 Adams St, Atlanta, GA 30301" +155445,USB-C Charging Cable,1,11.95,01/21/19 17:02,"204 6th St, San Francisco, CA 94016" +155446,USB-C Charging Cable,1,11.95,01/11/19 12:34,"888 Center St, Boston, MA 02215" +155447,AAA Batteries (4-pack),1,2.99,01/15/19 11:33,"682 Lake St, Dallas, TX 75001" +155447,Bose SoundSport Headphones,1,99.99,01/15/19 11:33,"682 Lake St, Dallas, TX 75001" +155448,34in Ultrawide Monitor,1,379.99,01/05/19 22:04,"345 Lakeview St, Portland, OR 97035" +155449,Google Phone,1,600,01/26/19 18:56,"977 Park St, Dallas, TX 75001" +155450,USB-C Charging Cable,1,11.95,01/26/19 09:59,"21 Washington St, Seattle, WA 98101" +155451,Bose SoundSport Headphones,1,99.99,01/10/19 20:49,"416 11th St, San Francisco, CA 94016" +155452,Bose SoundSport Headphones,1,99.99,01/17/19 20:01,"782 Cedar St, San Francisco, CA 94016" +155453,Bose SoundSport Headphones,1,99.99,01/15/19 08:13,"94 Main St, New York City, NY 10001" +155454,Apple Airpods Headphones,1,150,01/19/19 00:28,"582 Maple St, Portland, ME 04101" +155455,USB-C Charging Cable,1,11.95,01/06/19 21:00,"643 9th St, Portland, OR 97035" +155456,Vareebadd Phone,1,400,01/17/19 20:47,"106 Lakeview St, Atlanta, GA 30301" +155457,USB-C Charging Cable,1,11.95,01/14/19 21:15,"802 12th St, San Francisco, CA 94016" +155458,AA Batteries (4-pack),2,3.84,01/02/19 13:28,"600 North St, Seattle, WA 98101" +155458,Wired Headphones,2,11.99,01/02/19 13:28,"600 North St, Seattle, WA 98101" +155459,Apple Airpods Headphones,1,150,01/02/19 17:54,"369 14th St, New York City, NY 10001" +155460,Bose SoundSport Headphones,1,99.99,01/05/19 14:30,"610 Lake St, Boston, MA 02215" +155461,AA Batteries (4-pack),1,3.84,01/03/19 18:57,"559 6th St, San Francisco, CA 94016" +155462,AA Batteries (4-pack),1,3.84,01/31/19 18:42,"716 Dogwood St, San Francisco, CA 94016" +155463,20in Monitor,1,109.99,01/17/19 16:21,"175 2nd St, Seattle, WA 98101" +155464,Vareebadd Phone,1,400,01/19/19 10:11,"10 Meadow St, Boston, MA 02215" +155465,Apple Airpods Headphones,1,150,01/31/19 12:08,"431 Lake St, Austin, TX 73301" +155466,AA Batteries (4-pack),2,3.84,01/23/19 16:29,"342 8th St, New York City, NY 10001" +155467,AAA Batteries (4-pack),1,2.99,01/12/19 19:13,"731 Adams St, Seattle, WA 98101" +155468,Lightning Charging Cable,1,14.95,01/10/19 18:17,"104 Forest St, Boston, MA 02215" +155469,Flatscreen TV,1,300,01/08/19 13:06,"960 Willow St, San Francisco, CA 94016" +155470,27in FHD Monitor,1,149.99,01/06/19 19:41,"424 Main St, Dallas, TX 75001" +155471,AAA Batteries (4-pack),2,2.99,01/22/19 09:55,"893 12th St, Boston, MA 02215" +155472,27in FHD Monitor,1,149.99,01/21/19 08:08,"351 Dogwood St, Austin, TX 73301" +155473,AA Batteries (4-pack),1,3.84,01/01/19 10:42,"128 Washington St, Los Angeles, CA 90001" +155474,AAA Batteries (4-pack),2,2.99,01/28/19 18:02,"912 Jackson St, Los Angeles, CA 90001" +155475,AAA Batteries (4-pack),1,2.99,01/07/19 09:23,"990 9th St, Los Angeles, CA 90001" +155476,Wired Headphones,3,11.99,01/07/19 12:12,"905 Highland St, San Francisco, CA 94016" +155477,Lightning Charging Cable,1,14.95,01/12/19 18:55,"730 North St, Austin, TX 73301" +155478,iPhone,1,700,01/21/19 03:27,"755 North St, San Francisco, CA 94016" +155478,Wired Headphones,1,11.99,01/21/19 03:27,"755 North St, San Francisco, CA 94016" +155479,Bose SoundSport Headphones,1,99.99,01/17/19 15:28,"252 Spruce St, Dallas, TX 75001" +155480,USB-C Charging Cable,1,11.95,01/17/19 20:10,"867 Forest St, Los Angeles, CA 90001" +155481,Bose SoundSport Headphones,1,99.99,01/08/19 15:29,"468 Main St, Boston, MA 02215" +155482,Lightning Charging Cable,1,14.95,01/23/19 13:43,"802 Lakeview St, San Francisco, CA 94016" +155483,ThinkPad Laptop,1,999.99,01/27/19 10:16,"519 Main St, Boston, MA 02215" +155484,27in FHD Monitor,1,149.99,01/01/19 13:03,"102 Main St, Atlanta, GA 30301" +155485,Wired Headphones,1,11.99,01/27/19 23:15,"944 Willow St, Dallas, TX 75001" +155486,Lightning Charging Cable,1,14.95,01/28/19 19:22,"496 Ridge St, San Francisco, CA 94016" +155487,Wired Headphones,1,11.99,01/23/19 10:10,"111 2nd St, Seattle, WA 98101" +155488,USB-C Charging Cable,1,11.95,01/02/19 08:40,"482 13th St, Los Angeles, CA 90001" +155489,Flatscreen TV,1,300,01/07/19 14:34,"41 River St, Los Angeles, CA 90001" +155490,Lightning Charging Cable,1,14.95,01/14/19 20:44,"381 2nd St, Atlanta, GA 30301" +155491,USB-C Charging Cable,1,11.95,01/03/19 16:34,"524 14th St, New York City, NY 10001" +155492,Google Phone,1,600,01/03/19 12:23,"877 Meadow St, Boston, MA 02215" +155493,Bose SoundSport Headphones,1,99.99,01/28/19 19:56,"256 Lincoln St, Atlanta, GA 30301" +155494,Apple Airpods Headphones,1,150,01/04/19 08:17,"604 Meadow St, Boston, MA 02215" +155495,27in 4K Gaming Monitor,1,389.99,01/06/19 17:18,"902 Adams St, Los Angeles, CA 90001" +155496,Apple Airpods Headphones,1,150,01/04/19 23:20,"39 Walnut St, San Francisco, CA 94016" +155497,AA Batteries (4-pack),1,3.84,01/30/19 12:49,"693 Walnut St, San Francisco, CA 94016" +155498,USB-C Charging Cable,1,11.95,01/29/19 11:04,"888 Forest St, New York City, NY 10001" +155499,USB-C Charging Cable,1,11.95,01/04/19 18:31,"158 West St, Boston, MA 02215" +155500,AA Batteries (4-pack),1,3.84,01/23/19 10:55,"349 Jefferson St, San Francisco, CA 94016" +155501,Apple Airpods Headphones,1,150,01/18/19 23:54,"266 Elm St, New York City, NY 10001" +155502,Lightning Charging Cable,1,14.95,01/25/19 20:19,"918 Ridge St, Dallas, TX 75001" +155503,34in Ultrawide Monitor,1,379.99,01/17/19 10:57,"30 4th St, Atlanta, GA 30301" +155504,Lightning Charging Cable,1,14.95,01/10/19 14:07,"855 Adams St, San Francisco, CA 94016" +155505,27in FHD Monitor,1,149.99,01/25/19 14:14,"769 5th St, San Francisco, CA 94016" +155506,Apple Airpods Headphones,1,150,01/18/19 09:06,"830 1st St, Dallas, TX 75001" +155507,AAA Batteries (4-pack),2,2.99,01/28/19 02:12,"101 Cherry St, Dallas, TX 75001" +155508,AA Batteries (4-pack),1,3.84,01/11/19 11:29,"83 South St, Seattle, WA 98101" +155509,Lightning Charging Cable,1,14.95,01/31/19 00:43,"936 11th St, Portland, OR 97035" +155510,Google Phone,1,600,01/01/19 08:35,"318 Center St, New York City, NY 10001" +155511,ThinkPad Laptop,1,999.99,01/14/19 07:39,"138 Main St, Atlanta, GA 30301" +155512,USB-C Charging Cable,1,11.95,01/04/19 15:59,"521 2nd St, Los Angeles, CA 90001" +155513,Bose SoundSport Headphones,1,99.99,01/05/19 01:43,"814 Jackson St, San Francisco, CA 94016" +155514,AAA Batteries (4-pack),2,2.99,01/17/19 12:29,"129 Hickory St, Seattle, WA 98101" +155515,AA Batteries (4-pack),1,3.84,01/29/19 10:18,"362 14th St, San Francisco, CA 94016" +155516,Apple Airpods Headphones,1,150,01/01/19 12:26,"228 Dogwood St, Los Angeles, CA 90001" +155517,USB-C Charging Cable,1,11.95,01/28/19 21:10,"268 Chestnut St, Seattle, WA 98101" +155518,27in FHD Monitor,1,149.99,01/09/19 12:38,"457 11th St, Boston, MA 02215" +155519,Bose SoundSport Headphones,1,99.99,01/10/19 13:22,"554 Lincoln St, New York City, NY 10001" +155520,ThinkPad Laptop,1,999.99,01/31/19 10:15,"576 Adams St, San Francisco, CA 94016" +155521,Lightning Charging Cable,1,14.95,01/26/19 10:27,"21 Main St, San Francisco, CA 94016" +155522,Vareebadd Phone,1,400,01/24/19 12:37,"408 Wilson St, Los Angeles, CA 90001" +155522,USB-C Charging Cable,2,11.95,01/24/19 12:37,"408 Wilson St, Los Angeles, CA 90001" +155523,AAA Batteries (4-pack),3,2.99,01/11/19 18:25,"485 Maple St, Atlanta, GA 30301" +155523,ThinkPad Laptop,1,999.99,01/11/19 18:25,"485 Maple St, Atlanta, GA 30301" +155524,AAA Batteries (4-pack),2,2.99,01/08/19 04:35,"534 10th St, Boston, MA 02215" +155525,Macbook Pro Laptop,1,1700,01/27/19 08:34,"276 14th St, New York City, NY 10001" +155526,Apple Airpods Headphones,1,150,01/26/19 12:41,"782 Maple St, San Francisco, CA 94016" +155527,Bose SoundSport Headphones,1,99.99,01/06/19 06:52,"823 Ridge St, New York City, NY 10001" +155528,AAA Batteries (4-pack),1,2.99,01/11/19 20:38,"922 Sunset St, Seattle, WA 98101" +155529,ThinkPad Laptop,1,999.99,01/05/19 14:10,"295 9th St, San Francisco, CA 94016" +155530,USB-C Charging Cable,1,11.95,01/22/19 01:43,"348 Ridge St, Dallas, TX 75001" +155531,AA Batteries (4-pack),1,3.84,01/24/19 08:51,"92 Church St, New York City, NY 10001" +155532,USB-C Charging Cable,1,11.95,01/11/19 13:41,"199 Cherry St, Los Angeles, CA 90001" +155533,Apple Airpods Headphones,1,150,01/05/19 16:26,"665 Meadow St, Atlanta, GA 30301" +155534,Bose SoundSport Headphones,1,99.99,01/08/19 11:31,"308 6th St, Portland, OR 97035" +155535,USB-C Charging Cable,1,11.95,01/11/19 12:46,"78 Center St, New York City, NY 10001" +155536,Apple Airpods Headphones,1,150,01/22/19 19:32,"898 Cherry St, Los Angeles, CA 90001" +155537,AAA Batteries (4-pack),1,2.99,01/18/19 21:43,"125 Lakeview St, Los Angeles, CA 90001" +155538,AA Batteries (4-pack),1,3.84,01/16/19 17:13,"114 9th St, New York City, NY 10001" +155539,Apple Airpods Headphones,1,150,01/04/19 16:58,"579 13th St, Dallas, TX 75001" +155540,USB-C Charging Cable,2,11.95,01/16/19 12:43,"292 Jefferson St, Los Angeles, CA 90001" +155541,USB-C Charging Cable,1,11.95,01/02/19 14:09,"982 Hickory St, Atlanta, GA 30301" +155542,Bose SoundSport Headphones,2,99.99,01/26/19 19:23,"956 Ridge St, Los Angeles, CA 90001" +155543,Wired Headphones,2,11.99,01/09/19 23:28,"479 Cedar St, New York City, NY 10001" +155544,USB-C Charging Cable,1,11.95,01/11/19 19:05,"52 2nd St, Dallas, TX 75001" +155545,Lightning Charging Cable,1,14.95,01/26/19 13:37,"192 Center St, Austin, TX 73301" +155546,Apple Airpods Headphones,1,150,01/02/19 18:42,"643 6th St, San Francisco, CA 94016" +155547,Google Phone,1,600,01/01/19 18:32,"793 Meadow St, San Francisco, CA 94016" +155548,AA Batteries (4-pack),1,3.84,01/07/19 17:07,"605 9th St, Portland, ME 04101" +155549,Bose SoundSport Headphones,1,99.99,01/02/19 20:54,"620 Madison St, Seattle, WA 98101" +155550,USB-C Charging Cable,1,11.95,01/14/19 17:32,"446 Adams St, Boston, MA 02215" +155551,Wired Headphones,1,11.99,01/09/19 19:24,"293 Lake St, Dallas, TX 75001" +155552,Apple Airpods Headphones,1,150,01/02/19 23:29,"100 5th St, New York City, NY 10001" +155553,Flatscreen TV,1,300,01/25/19 22:28,"214 West St, Los Angeles, CA 90001" +155554,Bose SoundSport Headphones,1,99.99,01/21/19 09:53,"348 5th St, Atlanta, GA 30301" +155555,USB-C Charging Cable,1,11.95,01/20/19 10:43,"225 Elm St, San Francisco, CA 94016" +155556,AAA Batteries (4-pack),3,2.99,01/13/19 17:56,"300 West St, Los Angeles, CA 90001" +155557,Wired Headphones,1,11.99,01/04/19 15:23,"33 Hickory St, New York City, NY 10001" +155558,Lightning Charging Cable,1,14.95,01/07/19 12:05,"4 Willow St, Seattle, WA 98101" +155559,Lightning Charging Cable,1,14.95,01/13/19 16:16,"132 Center St, New York City, NY 10001" +155560,Apple Airpods Headphones,1,150,01/28/19 21:19,"337 6th St, Portland, OR 97035" +155561,27in 4K Gaming Monitor,1,389.99,01/31/19 18:44,"445 Lincoln St, San Francisco, CA 94016" +155562,Bose SoundSport Headphones,1,99.99,01/24/19 09:59,"914 River St, Los Angeles, CA 90001" +155563,AAA Batteries (4-pack),4,2.99,01/27/19 11:36,"49 Ridge St, Dallas, TX 75001" +155564,Wired Headphones,1,11.99,01/13/19 01:43,"13 West St, New York City, NY 10001" +155565,Lightning Charging Cable,1,14.95,01/15/19 06:59,"843 1st St, Seattle, WA 98101" +155566,iPhone,1,700,01/12/19 23:39,"627 West St, Portland, ME 04101" +155567,34in Ultrawide Monitor,1,379.99,01/28/19 21:33,"560 Church St, Dallas, TX 75001" +155568,20in Monitor,1,109.99,01/08/19 16:29,"597 Elm St, San Francisco, CA 94016" +155569,AA Batteries (4-pack),1,3.84,01/02/19 10:05,"150 4th St, Dallas, TX 75001" +155570,Google Phone,1,600,01/19/19 13:07,"185 7th St, Los Angeles, CA 90001" +155570,USB-C Charging Cable,1,11.95,01/19/19 13:07,"185 7th St, Los Angeles, CA 90001" +155570,Apple Airpods Headphones,1,150,01/19/19 13:07,"185 7th St, Los Angeles, CA 90001" +155571,AA Batteries (4-pack),1,3.84,01/15/19 10:40,"318 Lakeview St, Seattle, WA 98101" +155572,Google Phone,1,600,01/26/19 20:04,"158 Pine St, San Francisco, CA 94016" +155572,USB-C Charging Cable,1,11.95,01/26/19 20:04,"158 Pine St, San Francisco, CA 94016" +155573,27in 4K Gaming Monitor,1,389.99,01/14/19 04:21,"715 6th St, Austin, TX 73301" +155574,34in Ultrawide Monitor,1,379.99,01/22/19 08:32,"198 Sunset St, Boston, MA 02215" +155575,iPhone,1,700,01/06/19 11:30,"687 Cherry St, San Francisco, CA 94016" +155575,Lightning Charging Cable,1,14.95,01/06/19 11:30,"687 Cherry St, San Francisco, CA 94016" +155576,AA Batteries (4-pack),1,3.84,01/09/19 20:55,"562 Chestnut St, Los Angeles, CA 90001" +155577,USB-C Charging Cable,1,11.95,01/19/19 20:42,"897 5th St, Seattle, WA 98101" +155578,27in FHD Monitor,1,149.99,01/27/19 15:49,"505 Madison St, Boston, MA 02215" +155579,AA Batteries (4-pack),2,3.84,01/15/19 19:35,"435 Jackson St, Seattle, WA 98101" +155580,AA Batteries (4-pack),1,3.84,01/26/19 16:10,"562 Meadow St, Los Angeles, CA 90001" +155581,27in FHD Monitor,1,149.99,01/16/19 23:54,"995 Jefferson St, Boston, MA 02215" +155582,Lightning Charging Cable,1,14.95,01/18/19 11:25,"43 Lincoln St, San Francisco, CA 94016" +,,,,, +155583,Apple Airpods Headphones,1,150,01/15/19 22:04,"206 9th St, Boston, MA 02215" +155584,USB-C Charging Cable,1,11.95,01/01/19 17:55,"308 Lincoln St, Los Angeles, CA 90001" +155585,iPhone,1,700,01/11/19 07:01,"469 1st St, Atlanta, GA 30301" +155586,iPhone,1,700,01/05/19 16:56,"938 West St, Los Angeles, CA 90001" +155586,Wired Headphones,2,11.99,01/05/19 16:56,"938 West St, Los Angeles, CA 90001" +155587,ThinkPad Laptop,1,999.99,01/11/19 14:32,"504 9th St, Los Angeles, CA 90001" +155588,27in 4K Gaming Monitor,1,389.99,01/21/19 12:15,"613 North St, Los Angeles, CA 90001" +155589,Google Phone,1,600,01/28/19 18:08,"352 Pine St, San Francisco, CA 94016" +155589,Wired Headphones,1,11.99,01/28/19 18:08,"352 Pine St, San Francisco, CA 94016" +155590,USB-C Charging Cable,1,11.95,01/21/19 07:03,"461 Lake St, New York City, NY 10001" +155591,AA Batteries (4-pack),1,3.84,01/10/19 12:25,"318 Center St, San Francisco, CA 94016" +155592,20in Monitor,1,109.99,01/27/19 07:22,"648 Forest St, Los Angeles, CA 90001" +155593,Lightning Charging Cable,1,14.95,01/18/19 13:15,"825 Jackson St, Seattle, WA 98101" +155594,27in 4K Gaming Monitor,1,389.99,01/02/19 21:34,"93 Walnut St, San Francisco, CA 94016" +155595,27in 4K Gaming Monitor,1,389.99,01/25/19 20:58,"39 Washington St, San Francisco, CA 94016" +155596,AA Batteries (4-pack),4,3.84,01/10/19 20:26,"986 Park St, Portland, OR 97035" +155597,ThinkPad Laptop,1,999.99,01/07/19 18:25,"43 South St, Atlanta, GA 30301" +155598,Apple Airpods Headphones,1,150,01/24/19 12:09,"200 River St, Los Angeles, CA 90001" +155599,27in FHD Monitor,1,149.99,01/27/19 17:17,"589 Wilson St, Los Angeles, CA 90001" +155600,iPhone,1,700,01/11/19 20:23,"3 Adams St, Atlanta, GA 30301" +155601,AA Batteries (4-pack),1,3.84,01/29/19 10:03,"293 Wilson St, Seattle, WA 98101" +155602,iPhone,1,700,01/05/19 10:31,"701 Cherry St, New York City, NY 10001" +155603,Vareebadd Phone,1,400,01/11/19 11:24,"523 9th St, Seattle, WA 98101" +155603,Wired Headphones,1,11.99,01/11/19 11:24,"523 9th St, Seattle, WA 98101" +155604,AAA Batteries (4-pack),1,2.99,01/20/19 16:43,"5 Meadow St, Los Angeles, CA 90001" +155605,AA Batteries (4-pack),1,3.84,01/01/19 22:42,"305 Elm St, Seattle, WA 98101" +155606,AA Batteries (4-pack),1,3.84,01/31/19 11:11,"536 Maple St, New York City, NY 10001" +155607,AA Batteries (4-pack),1,3.84,01/17/19 18:57,"625 Meadow St, Los Angeles, CA 90001" +155608,Wired Headphones,1,11.99,01/12/19 20:37,"417 West St, Atlanta, GA 30301" +155609,Macbook Pro Laptop,1,1700,01/01/19 18:52,"22 Main St, San Francisco, CA 94016" +155610,Wired Headphones,1,11.99,01/15/19 19:12,"292 Lake St, Atlanta, GA 30301" +155611,Flatscreen TV,1,300,01/21/19 18:51,"826 6th St, New York City, NY 10001" +155612,Wired Headphones,2,11.99,01/25/19 21:16,"230 Dogwood St, Dallas, TX 75001" +155613,ThinkPad Laptop,1,999.99,01/13/19 22:21,"463 Jefferson St, Atlanta, GA 30301" +155613,USB-C Charging Cable,1,11.95,01/13/19 22:21,"463 Jefferson St, Atlanta, GA 30301" +155614,Wired Headphones,1,11.99,01/17/19 01:25,"589 Elm St, New York City, NY 10001" +155615,Wired Headphones,1,11.99,01/20/19 10:59,"311 6th St, San Francisco, CA 94016" +155616,Lightning Charging Cable,1,14.95,01/24/19 17:43,"834 Sunset St, New York City, NY 10001" +155617,27in 4K Gaming Monitor,1,389.99,01/26/19 19:07,"390 Spruce St, Los Angeles, CA 90001" +155618,Lightning Charging Cable,1,14.95,01/06/19 09:06,"194 Maple St, Portland, ME 04101" +155619,LG Dryer,1,600.0,01/13/19 22:48,"902 Madison St, Dallas, TX 75001" +155620,Flatscreen TV,1,300,01/20/19 12:16,"587 River St, San Francisco, CA 94016" +155621,USB-C Charging Cable,1,11.95,01/04/19 14:00,"331 8th St, Boston, MA 02215" +155622,Bose SoundSport Headphones,1,99.99,01/02/19 19:21,"710 Cherry St, Portland, ME 04101" +155623,Macbook Pro Laptop,1,1700,01/12/19 16:15,"930 7th St, San Francisco, CA 94016" +155624,34in Ultrawide Monitor,1,379.99,01/22/19 15:02,"547 13th St, San Francisco, CA 94016" +155625,Wired Headphones,1,11.99,01/07/19 17:24,"490 Dogwood St, Boston, MA 02215" +155626,Wired Headphones,1,11.99,01/29/19 15:31,"822 1st St, New York City, NY 10001" +155627,27in 4K Gaming Monitor,1,389.99,01/26/19 19:33,"570 Forest St, Boston, MA 02215" +155628,Bose SoundSport Headphones,1,99.99,01/24/19 06:00,"687 2nd St, Portland, ME 04101" +155629,iPhone,1,700,01/10/19 20:36,"699 4th St, Los Angeles, CA 90001" +155630,Flatscreen TV,1,300,01/07/19 21:25,"812 Hickory St, Boston, MA 02215" +155631,Lightning Charging Cable,1,14.95,01/01/19 13:32,"862 Hill St, Los Angeles, CA 90001" +155632,iPhone,1,700,01/07/19 02:28,"43 Johnson St, San Francisco, CA 94016" +155633,ThinkPad Laptop,1,999.99,01/30/19 13:03,"422 Hill St, San Francisco, CA 94016" +155633,iPhone,1,700,01/30/19 13:03,"422 Hill St, San Francisco, CA 94016" +155634,Wired Headphones,1,11.99,01/04/19 08:48,"56 13th St, Boston, MA 02215" +155635,Lightning Charging Cable,1,14.95,01/06/19 14:06,"541 Madison St, New York City, NY 10001" +155636,AAA Batteries (4-pack),1,2.99,01/22/19 20:47,"258 Main St, Portland, OR 97035" +155637,Google Phone,1,600,01/13/19 10:47,"149 Madison St, Atlanta, GA 30301" +155638,20in Monitor,1,109.99,01/20/19 16:15,"134 11th St, Los Angeles, CA 90001" +155639,AA Batteries (4-pack),1,3.84,01/28/19 21:04,"75 11th St, Seattle, WA 98101" +155640,AA Batteries (4-pack),2,3.84,01/12/19 21:39,"206 Cedar St, San Francisco, CA 94016" +155641,34in Ultrawide Monitor,1,379.99,01/05/19 21:02,"440 Willow St, Boston, MA 02215" +155642,AA Batteries (4-pack),2,3.84,01/16/19 12:35,"176 Cherry St, San Francisco, CA 94016" +155643,Wired Headphones,1,11.99,01/01/19 17:11,"416 Meadow St, San Francisco, CA 94016" +155644,Wired Headphones,1,11.99,01/04/19 08:37,"850 Cedar St, Los Angeles, CA 90001" +155645,27in 4K Gaming Monitor,1,389.99,01/31/19 19:48,"733 5th St, Boston, MA 02215" +155646,Apple Airpods Headphones,1,150,01/06/19 14:00,"748 7th St, Dallas, TX 75001" +155647,AAA Batteries (4-pack),1,2.99,01/20/19 12:37,"990 Maple St, Boston, MA 02215" +155648,AAA Batteries (4-pack),1,2.99,01/31/19 14:35,"699 Dogwood St, Austin, TX 73301" +155649,iPhone,1,700,01/09/19 17:58,"349 12th St, San Francisco, CA 94016" +155650,AAA Batteries (4-pack),2,2.99,01/11/19 14:59,"657 Ridge St, Austin, TX 73301" +155651,27in FHD Monitor,1,149.99,01/16/19 22:01,"510 Willow St, Los Angeles, CA 90001" +155652,Wired Headphones,1,11.99,01/22/19 22:04,"88 Adams St, Los Angeles, CA 90001" +155653,Apple Airpods Headphones,1,150,01/01/19 10:15,"793 11th St, Los Angeles, CA 90001" +155654,Bose SoundSport Headphones,1,99.99,01/31/19 16:59,"395 Johnson St, New York City, NY 10001" +155655,AAA Batteries (4-pack),2,2.99,01/18/19 17:15,"928 Park St, Los Angeles, CA 90001" +155656,Wired Headphones,1,11.99,01/26/19 12:30,"29 Lincoln St, San Francisco, CA 94016" +155657,USB-C Charging Cable,1,11.95,01/19/19 08:25,"973 Forest St, Dallas, TX 75001" +155658,Bose SoundSport Headphones,1,99.99,01/11/19 18:07,"968 Church St, San Francisco, CA 94016" +155659,USB-C Charging Cable,1,11.95,01/15/19 14:48,"173 Highland St, Austin, TX 73301" +155660,iPhone,1,700,01/14/19 19:13,"322 9th St, New York City, NY 10001" +155661,Apple Airpods Headphones,1,150,01/01/19 11:13,"987 Cherry St, Boston, MA 02215" +155662,Lightning Charging Cable,1,14.95,01/04/19 10:59,"327 River St, Los Angeles, CA 90001" +155663,Apple Airpods Headphones,1,150,01/17/19 21:02,"963 11th St, San Francisco, CA 94016" +155664,Lightning Charging Cable,1,14.95,01/10/19 15:15,"448 Chestnut St, Austin, TX 73301" +155665,Apple Airpods Headphones,1,150,01/05/19 21:52,"157 Hickory St, Boston, MA 02215" +155666,Bose SoundSport Headphones,1,99.99,01/13/19 18:12,"662 9th St, Boston, MA 02215" +155667,Bose SoundSport Headphones,1,99.99,01/31/19 13:04,"236 West St, Portland, OR 97035" +155668,20in Monitor,1,109.99,01/28/19 21:09,"587 Willow St, Atlanta, GA 30301" +155669,Flatscreen TV,1,300,01/08/19 12:49,"755 West St, New York City, NY 10001" +155670,Apple Airpods Headphones,1,150,01/08/19 14:53,"476 Cedar St, New York City, NY 10001" +155671,Wired Headphones,1,11.99,01/23/19 12:21,"14 Hickory St, San Francisco, CA 94016" +155672,27in 4K Gaming Monitor,1,389.99,01/29/19 18:14,"354 Lake St, Boston, MA 02215" +155673,Bose SoundSport Headphones,2,99.99,01/18/19 01:47,"968 7th St, San Francisco, CA 94016" +155674,Apple Airpods Headphones,1,150,01/16/19 15:02,"49 Sunset St, Dallas, TX 75001" +155675,27in 4K Gaming Monitor,1,389.99,01/17/19 17:47,"220 Spruce St, Portland, OR 97035" +155676,Wired Headphones,1,11.99,01/14/19 19:10,"918 7th St, San Francisco, CA 94016" +155677,USB-C Charging Cable,1,11.95,01/25/19 13:28,"66 West St, Atlanta, GA 30301" +155678,Lightning Charging Cable,1,14.95,01/14/19 08:13,"386 4th St, Portland, ME 04101" +155679,Google Phone,1,600,01/25/19 20:25,"839 Lake St, Los Angeles, CA 90001" +155680,Bose SoundSport Headphones,1,99.99,01/01/19 12:18,"30 Hickory St, Austin, TX 73301" +155681,Bose SoundSport Headphones,1,99.99,01/16/19 22:29,"456 Hickory St, San Francisco, CA 94016" +155682,AA Batteries (4-pack),4,3.84,01/29/19 08:36,"431 Dogwood St, Los Angeles, CA 90001" +155683,AAA Batteries (4-pack),1,2.99,01/13/19 12:10,"560 Hill St, Boston, MA 02215" +155684,Macbook Pro Laptop,1,1700,01/13/19 21:36,"12 Washington St, San Francisco, CA 94016" +155685,Wired Headphones,1,11.99,01/05/19 08:31,"686 1st St, San Francisco, CA 94016" +155686,AAA Batteries (4-pack),1,2.99,01/18/19 11:47,"766 Spruce St, Austin, TX 73301" +155687,USB-C Charging Cable,1,11.95,01/02/19 15:03,"12 Johnson St, Seattle, WA 98101" +155688,Lightning Charging Cable,1,14.95,01/25/19 12:41,"299 River St, San Francisco, CA 94016" +155689,Wired Headphones,1,11.99,01/17/19 12:45,"25 Elm St, San Francisco, CA 94016" +155690,AAA Batteries (4-pack),1,2.99,01/09/19 18:55,"336 Madison St, Austin, TX 73301" +155691,Wired Headphones,1,11.99,01/09/19 19:32,"842 North St, San Francisco, CA 94016" +155692,USB-C Charging Cable,1,11.95,01/31/19 23:16,"769 7th St, Boston, MA 02215" +155693,Apple Airpods Headphones,1,150,01/10/19 12:42,"170 Johnson St, Atlanta, GA 30301" +155694,Lightning Charging Cable,1,14.95,01/27/19 11:33,"285 1st St, Dallas, TX 75001" +155695,Lightning Charging Cable,1,14.95,01/06/19 18:21,"124 North St, Austin, TX 73301" +155696,Wired Headphones,1,11.99,01/09/19 08:04,"84 Willow St, Dallas, TX 75001" +155697,AAA Batteries (4-pack),1,2.99,01/15/19 22:23,"516 Ridge St, San Francisco, CA 94016" +155698,Apple Airpods Headphones,1,150,01/15/19 19:50,"806 Adams St, Los Angeles, CA 90001" +155699,AA Batteries (4-pack),2,3.84,01/19/19 12:20,"56 Cherry St, Atlanta, GA 30301" +155700,Wired Headphones,1,11.99,01/21/19 01:05,"697 West St, New York City, NY 10001" +155701,USB-C Charging Cable,1,11.95,01/01/19 20:58,"248 14th St, Dallas, TX 75001" +155702,AA Batteries (4-pack),1,3.84,01/17/19 08:17,"87 Cedar St, San Francisco, CA 94016" +155703,Lightning Charging Cable,1,14.95,01/15/19 20:56,"162 6th St, Los Angeles, CA 90001" +155704,USB-C Charging Cable,1,11.95,01/07/19 17:36,"290 River St, San Francisco, CA 94016" +155705,Google Phone,1,600,01/31/19 17:43,"615 9th St, Atlanta, GA 30301" +155706,USB-C Charging Cable,1,11.95,01/09/19 16:43,"185 Jefferson St, Boston, MA 02215" +155707,AA Batteries (4-pack),1,3.84,01/05/19 16:31,"259 8th St, San Francisco, CA 94016" +155708,AAA Batteries (4-pack),1,2.99,01/04/19 14:09,"55 Lincoln St, Los Angeles, CA 90001" +155709,AA Batteries (4-pack),1,3.84,01/13/19 15:54,"220 4th St, New York City, NY 10001" +155710,iPhone,1,700,01/15/19 12:11,"955 Highland St, Portland, OR 97035" +155711,34in Ultrawide Monitor,1,379.99,01/09/19 08:06,"705 10th St, Atlanta, GA 30301" +155712,Wired Headphones,1,11.99,01/06/19 21:51,"493 Center St, San Francisco, CA 94016" +155713,Apple Airpods Headphones,1,150,01/30/19 19:15,"96 River St, Atlanta, GA 30301" +155714,Bose SoundSport Headphones,1,99.99,01/05/19 14:56,"16 Park St, Boston, MA 02215" +155715,Lightning Charging Cable,1,14.95,01/22/19 06:56,"811 1st St, Los Angeles, CA 90001" +155716,AAA Batteries (4-pack),1,2.99,01/13/19 20:34,"28 Forest St, Los Angeles, CA 90001" +155717,Wired Headphones,1,11.99,01/26/19 10:44,"523 Lake St, Atlanta, GA 30301" +155718,Apple Airpods Headphones,1,150,02/01/19 01:01,"664 Jefferson St, Los Angeles, CA 90001" +155719,Wired Headphones,1,11.99,01/06/19 07:13,"953 6th St, San Francisco, CA 94016" +155720,Lightning Charging Cable,2,14.95,01/08/19 10:49,"953 6th St, San Francisco, CA 94016" +155721,27in 4K Gaming Monitor,1,389.99,01/03/19 19:05,"545 Jackson St, San Francisco, CA 94016" +155722,Lightning Charging Cable,1,14.95,01/20/19 23:40,"790 Walnut St, Atlanta, GA 30301" +155723,Wired Headphones,1,11.99,01/04/19 07:24,"327 Chestnut St, Austin, TX 73301" +155724,Apple Airpods Headphones,1,150,01/22/19 17:23,"710 Hickory St, San Francisco, CA 94016" +155725,Wired Headphones,1,11.99,01/10/19 16:39,"655 6th St, Austin, TX 73301" +155726,USB-C Charging Cable,1,11.95,01/03/19 22:41,"383 7th St, Boston, MA 02215" +155727,USB-C Charging Cable,1,11.95,01/26/19 12:22,"263 10th St, San Francisco, CA 94016" +155728,Google Phone,1,600,01/17/19 09:29,"249 Lake St, Boston, MA 02215" +155729,27in 4K Gaming Monitor,1,389.99,01/15/19 23:08,"690 Maple St, San Francisco, CA 94016" +155730,Flatscreen TV,1,300,01/29/19 14:41,"403 Park St, Los Angeles, CA 90001" +155731,ThinkPad Laptop,1,999.99,01/25/19 11:57,"94 Washington St, San Francisco, CA 94016" +155732,iPhone,1,700,01/05/19 16:09,"408 Main St, Boston, MA 02215" +155733,Vareebadd Phone,1,400,01/20/19 18:47,"19 7th St, Los Angeles, CA 90001" +155734,AA Batteries (4-pack),2,3.84,01/24/19 18:08,"272 Center St, Boston, MA 02215" +155735,Bose SoundSport Headphones,1,99.99,01/24/19 08:36,"496 10th St, Atlanta, GA 30301" +155736,Flatscreen TV,1,300,01/30/19 11:31,"658 6th St, Boston, MA 02215" +155737,Lightning Charging Cable,1,14.95,01/17/19 17:59,"186 12th St, Dallas, TX 75001" +155738,Wired Headphones,1,11.99,01/15/19 14:46,"464 Main St, Austin, TX 73301" +155739,Wired Headphones,1,11.99,01/20/19 23:13,"19 11th St, Boston, MA 02215" +155740,34in Ultrawide Monitor,1,379.99,01/17/19 20:48,"788 14th St, Los Angeles, CA 90001" +155741,20in Monitor,1,109.99,01/09/19 00:48,"796 13th St, Portland, OR 97035" +155742,Lightning Charging Cable,1,14.95,01/29/19 09:19,"130 Main St, San Francisco, CA 94016" +155743,20in Monitor,1,109.99,01/17/19 22:51,"406 Park St, San Francisco, CA 94016" +155744,Wired Headphones,1,11.99,01/24/19 09:43,"280 Center St, San Francisco, CA 94016" +155745,Google Phone,1,600,01/09/19 16:27,"687 Washington St, San Francisco, CA 94016" +155745,USB-C Charging Cable,1,11.95,01/09/19 16:27,"687 Washington St, San Francisco, CA 94016" +155746,Lightning Charging Cable,1,14.95,01/18/19 12:42,"910 Highland St, New York City, NY 10001" +155747,AAA Batteries (4-pack),1,2.99,01/01/19 16:19,"786 Church St, Boston, MA 02215" +155748,Lightning Charging Cable,1,14.95,01/02/19 00:25,"215 11th St, Seattle, WA 98101" +155749,Flatscreen TV,1,300,01/23/19 11:51,"396 Lakeview St, Dallas, TX 75001" +155750,Apple Airpods Headphones,1,150,01/25/19 22:04,"14 Park St, New York City, NY 10001" +155751,AA Batteries (4-pack),1,3.84,01/01/19 19:25,"290 Hickory St, Austin, TX 73301" +155752,Apple Airpods Headphones,1,150,01/18/19 12:36,"247 Lincoln St, Atlanta, GA 30301" +155753,Lightning Charging Cable,1,14.95,01/26/19 17:05,"589 Cedar St, New York City, NY 10001" +155754,AAA Batteries (4-pack),1,2.99,01/05/19 21:45,"488 8th St, Los Angeles, CA 90001" +155755,Bose SoundSport Headphones,1,99.99,01/22/19 18:57,"138 Main St, San Francisco, CA 94016" +155756,AAA Batteries (4-pack),1,2.99,01/21/19 17:09,"431 South St, Dallas, TX 75001" +155757,Flatscreen TV,1,300,01/23/19 13:22,"209 Cherry St, Austin, TX 73301" +155758,ThinkPad Laptop,1,999.99,01/21/19 10:03,"199 11th St, Austin, TX 73301" +155759,Flatscreen TV,1,300,01/04/19 14:20,"276 10th St, Los Angeles, CA 90001" +155760,20in Monitor,1,109.99,01/14/19 16:40,"419 Forest St, Dallas, TX 75001" +155761,27in FHD Monitor,1,149.99,01/05/19 19:01,"421 4th St, San Francisco, CA 94016" +155762,AAA Batteries (4-pack),1,2.99,01/16/19 22:15,"786 Lake St, New York City, NY 10001" +155763,Apple Airpods Headphones,1,150,01/14/19 14:35,"644 4th St, Atlanta, GA 30301" +155764,USB-C Charging Cable,1,11.95,01/31/19 20:58,"225 12th St, Portland, OR 97035" +155765,USB-C Charging Cable,1,11.95,01/13/19 15:02,"308 Madison St, San Francisco, CA 94016" +155766,Lightning Charging Cable,1,14.95,01/21/19 20:57,"140 14th St, San Francisco, CA 94016" +155767,Lightning Charging Cable,1,14.95,01/31/19 13:35,"331 Willow St, Boston, MA 02215" +155768,Wired Headphones,1,11.99,01/12/19 21:10,"169 Pine St, Los Angeles, CA 90001" +155769,Lightning Charging Cable,1,14.95,01/24/19 19:51,"64 Meadow St, Portland, OR 97035" +155770,Flatscreen TV,1,300,01/02/19 00:46,"532 West St, Dallas, TX 75001" +155771,AAA Batteries (4-pack),1,2.99,01/25/19 19:25,"465 Main St, Los Angeles, CA 90001" +155772,34in Ultrawide Monitor,1,379.99,01/25/19 16:06,"140 2nd St, New York City, NY 10001" +155773,Apple Airpods Headphones,1,150,01/15/19 07:41,"976 Lincoln St, Seattle, WA 98101" +155774,USB-C Charging Cable,1,11.95,01/25/19 13:31,"896 12th St, Austin, TX 73301" +155775,Wired Headphones,1,11.99,01/27/19 14:51,"427 Jackson St, Boston, MA 02215" +155776,Macbook Pro Laptop,1,1700,01/26/19 18:15,"25 Center St, Austin, TX 73301" +155777,AAA Batteries (4-pack),2,2.99,01/21/19 23:32,"120 Church St, Los Angeles, CA 90001" +155778,AA Batteries (4-pack),1,3.84,01/31/19 10:34,"449 Wilson St, San Francisco, CA 94016" +155779,27in FHD Monitor,1,149.99,01/20/19 11:03,"175 Meadow St, Dallas, TX 75001" +155780,Google Phone,2,600,01/01/19 10:31,"173 2nd St, San Francisco, CA 94016" +155781,Lightning Charging Cable,1,14.95,01/16/19 20:08,"537 12th St, New York City, NY 10001" +155782,27in 4K Gaming Monitor,1,389.99,01/14/19 09:39,"250 Hickory St, Seattle, WA 98101" +,,,,, +155783,Wired Headphones,1,11.99,01/07/19 18:58,"614 Chestnut St, Seattle, WA 98101" +155784,iPhone,1,700,01/13/19 00:58,"601 Wilson St, San Francisco, CA 94016" +155784,Lightning Charging Cable,1,14.95,01/13/19 00:58,"601 Wilson St, San Francisco, CA 94016" +155784,Wired Headphones,1,11.99,01/13/19 00:58,"601 Wilson St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +155785,Apple Airpods Headphones,1,150,01/07/19 09:43,"30 North St, San Francisco, CA 94016" +155786,Wired Headphones,1,11.99,01/25/19 17:45,"131 West St, Portland, OR 97035" +155787,Wired Headphones,1,11.99,01/13/19 09:34,"370 Park St, Austin, TX 73301" +155788,AAA Batteries (4-pack),1,2.99,01/02/19 19:07,"57 6th St, Portland, OR 97035" +155789,AAA Batteries (4-pack),1,2.99,01/11/19 18:07,"611 Forest St, San Francisco, CA 94016" +155790,USB-C Charging Cable,1,11.95,01/18/19 19:47,"693 Center St, New York City, NY 10001" +155791,Google Phone,1,600,01/31/19 20:48,"528 13th St, San Francisco, CA 94016" +155792,20in Monitor,1,109.99,01/26/19 18:28,"666 8th St, San Francisco, CA 94016" +155793,AA Batteries (4-pack),2,3.84,01/19/19 19:06,"803 Church St, San Francisco, CA 94016" +155794,Google Phone,1,600,01/10/19 09:06,"177 2nd St, Dallas, TX 75001" +155795,USB-C Charging Cable,1,11.95,01/03/19 12:57,"794 12th St, Atlanta, GA 30301" +155796,AA Batteries (4-pack),1,3.84,01/11/19 17:08,"861 River St, Los Angeles, CA 90001" +155797,Apple Airpods Headphones,1,150,01/27/19 20:45,"786 Main St, New York City, NY 10001" +155798,USB-C Charging Cable,1,11.95,01/20/19 12:28,"726 Park St, Los Angeles, CA 90001" +155799,Lightning Charging Cable,1,14.95,01/09/19 19:46,"113 Main St, San Francisco, CA 94016" +155800,AA Batteries (4-pack),1,3.84,01/28/19 22:36,"925 4th St, Boston, MA 02215" +155801,20in Monitor,1,109.99,01/29/19 07:04,"446 6th St, Portland, OR 97035" +155802,USB-C Charging Cable,1,11.95,01/03/19 18:11,"218 Ridge St, Portland, OR 97035" +155803,Lightning Charging Cable,1,14.95,01/20/19 09:37,"279 Center St, San Francisco, CA 94016" +155804,27in FHD Monitor,1,149.99,01/29/19 11:36,"625 Jefferson St, Portland, OR 97035" +155805,Lightning Charging Cable,1,14.95,01/01/19 20:38,"778 Highland St, Boston, MA 02215" +155806,Apple Airpods Headphones,1,150,01/21/19 17:43,"560 Wilson St, Los Angeles, CA 90001" +155807,27in FHD Monitor,1,149.99,01/29/19 14:13,"412 Washington St, San Francisco, CA 94016" +155808,AAA Batteries (4-pack),5,2.99,01/09/19 13:57,"572 Hill St, San Francisco, CA 94016" +155809,20in Monitor,1,109.99,01/22/19 14:25,"105 Forest St, Boston, MA 02215" +155810,34in Ultrawide Monitor,1,379.99,01/15/19 19:12,"420 Park St, San Francisco, CA 94016" +155811,AA Batteries (4-pack),1,3.84,01/22/19 22:26,"340 Hickory St, Portland, OR 97035" +155812,Apple Airpods Headphones,1,150,01/05/19 19:46,"945 4th St, Atlanta, GA 30301" +155813,AAA Batteries (4-pack),1,2.99,01/07/19 11:15,"201 10th St, Boston, MA 02215" +155814,AA Batteries (4-pack),1,3.84,01/24/19 15:28,"713 Cedar St, San Francisco, CA 94016" +155815,Lightning Charging Cable,1,14.95,01/04/19 21:26,"579 9th St, Boston, MA 02215" +155816,Bose SoundSport Headphones,1,99.99,01/04/19 17:26,"632 14th St, Boston, MA 02215" +155817,USB-C Charging Cable,2,11.95,01/07/19 23:02,"677 Adams St, Dallas, TX 75001" +155818,Wired Headphones,1,11.99,01/08/19 16:27,"434 1st St, San Francisco, CA 94016" +155819,AA Batteries (4-pack),1,3.84,01/10/19 19:31,"582 Chestnut St, Portland, OR 97035" +155820,AAA Batteries (4-pack),1,2.99,01/31/19 11:07,"115 14th St, Los Angeles, CA 90001" +155821,34in Ultrawide Monitor,1,379.99,01/20/19 20:35,"377 6th St, Los Angeles, CA 90001" +155822,AAA Batteries (4-pack),2,2.99,01/30/19 18:22,"431 6th St, Boston, MA 02215" +155823,Bose SoundSport Headphones,1,99.99,01/24/19 22:55,"770 Walnut St, San Francisco, CA 94016" +155824,ThinkPad Laptop,1,999.99,01/03/19 04:18,"92 4th St, Atlanta, GA 30301" +155825,Wired Headphones,1,11.99,01/25/19 20:05,"657 14th St, Boston, MA 02215" +155826,Lightning Charging Cable,1,14.95,01/04/19 12:50,"20 5th St, Austin, TX 73301" +155827,AA Batteries (4-pack),4,3.84,01/25/19 15:52,"189 12th St, Dallas, TX 75001" +155828,AAA Batteries (4-pack),1,2.99,01/03/19 09:49,"611 Lakeview St, Dallas, TX 75001" +155829,AA Batteries (4-pack),1,3.84,01/03/19 15:42,"606 Adams St, San Francisco, CA 94016" +155830,USB-C Charging Cable,3,11.95,01/21/19 08:34,"648 Willow St, New York City, NY 10001" +155831,Lightning Charging Cable,1,14.95,01/06/19 12:53,"392 West St, Atlanta, GA 30301" +155832,AAA Batteries (4-pack),1,2.99,01/24/19 22:17,"484 Ridge St, Boston, MA 02215" +155833,Wired Headphones,1,11.99,01/28/19 15:51,"936 Sunset St, Boston, MA 02215" +155834,Bose SoundSport Headphones,1,99.99,01/11/19 19:39,"135 South St, Dallas, TX 75001" +155835,AA Batteries (4-pack),1,3.84,01/26/19 10:23,"432 13th St, San Francisco, CA 94016" +155836,Google Phone,1,600,01/15/19 13:58,"157 Spruce St, Portland, OR 97035" +155837,Bose SoundSport Headphones,1,99.99,01/29/19 11:44,"910 Center St, Portland, OR 97035" +155838,AA Batteries (4-pack),2,3.84,01/08/19 09:24,"143 Washington St, San Francisco, CA 94016" +155839,iPhone,1,700,01/26/19 17:28,"421 Washington St, Portland, OR 97035" +155840,USB-C Charging Cable,1,11.95,01/08/19 22:22,"536 North St, Seattle, WA 98101" +155841,AA Batteries (4-pack),4,3.84,01/03/19 13:33,"68 8th St, San Francisco, CA 94016" +155842,USB-C Charging Cable,1,11.95,01/08/19 18:23,"814 10th St, Los Angeles, CA 90001" +155843,Lightning Charging Cable,1,14.95,01/08/19 23:28,"58 5th St, Seattle, WA 98101" +155844,AA Batteries (4-pack),1,3.84,01/21/19 22:35,"210 14th St, Seattle, WA 98101" +155845,Bose SoundSport Headphones,1,99.99,01/01/19 13:37,"612 River St, Boston, MA 02215" +155846,Bose SoundSport Headphones,1,99.99,01/27/19 14:38,"636 2nd St, San Francisco, CA 94016" +155847,AAA Batteries (4-pack),1,2.99,01/31/19 10:01,"672 Spruce St, San Francisco, CA 94016" +155848,AA Batteries (4-pack),2,3.84,01/31/19 13:26,"274 Jackson St, Dallas, TX 75001" +155849,27in FHD Monitor,1,149.99,01/13/19 13:37,"918 Meadow St, Atlanta, GA 30301" +155850,20in Monitor,1,109.99,01/06/19 20:57,"997 Park St, San Francisco, CA 94016" +155851,iPhone,1,700,01/24/19 15:16,"168 Highland St, San Francisco, CA 94016" +155851,Apple Airpods Headphones,1,150,01/24/19 15:16,"168 Highland St, San Francisco, CA 94016" +155852,Bose SoundSport Headphones,1,99.99,01/03/19 13:32,"737 Willow St, San Francisco, CA 94016" +155853,AAA Batteries (4-pack),1,2.99,01/04/19 12:41,"319 8th St, New York City, NY 10001" +155854,Apple Airpods Headphones,1,150,01/18/19 15:07,"687 Jefferson St, San Francisco, CA 94016" +155855,Google Phone,1,600,01/17/19 18:59,"238 Maple St, San Francisco, CA 94016" +155855,Bose SoundSport Headphones,1,99.99,01/17/19 18:59,"238 Maple St, San Francisco, CA 94016" +155856,Macbook Pro Laptop,1,1700,01/05/19 17:05,"560 Lakeview St, Portland, OR 97035" +155857,Lightning Charging Cable,2,14.95,01/13/19 12:51,"802 Ridge St, Los Angeles, CA 90001" +155858,AAA Batteries (4-pack),2,2.99,01/09/19 15:39,"771 Jefferson St, Atlanta, GA 30301" +155859,Lightning Charging Cable,1,14.95,01/26/19 21:49,"453 11th St, Boston, MA 02215" +155860,USB-C Charging Cable,1,11.95,01/18/19 11:16,"284 Jefferson St, San Francisco, CA 94016" +155861,Wired Headphones,1,11.99,01/06/19 23:00,"977 10th St, Los Angeles, CA 90001" +155862,AA Batteries (4-pack),1,3.84,01/12/19 13:01,"773 Willow St, Los Angeles, CA 90001" +155863,Lightning Charging Cable,1,14.95,01/15/19 10:14,"365 South St, Dallas, TX 75001" +155864,Lightning Charging Cable,1,14.95,01/18/19 15:25,"161 Lakeview St, Portland, OR 97035" +155865,Google Phone,1,600,01/15/19 00:41,"127 6th St, San Francisco, CA 94016" +155866,USB-C Charging Cable,1,11.95,01/08/19 14:53,"872 Washington St, Atlanta, GA 30301" +155867,27in FHD Monitor,1,149.99,01/17/19 22:48,"24 Chestnut St, Portland, OR 97035" +155868,USB-C Charging Cable,1,11.95,01/25/19 22:07,"664 Cherry St, Boston, MA 02215" +155869,Wired Headphones,1,11.99,01/05/19 22:48,"195 13th St, Boston, MA 02215" +155870,AAA Batteries (4-pack),2,2.99,01/19/19 23:29,"394 Highland St, San Francisco, CA 94016" +155871,27in FHD Monitor,1,149.99,01/02/19 14:32,"772 Church St, Los Angeles, CA 90001" +155872,Bose SoundSport Headphones,1,99.99,01/20/19 20:48,"712 Chestnut St, Atlanta, GA 30301" +155873,AAA Batteries (4-pack),3,2.99,01/19/19 10:40,"442 Wilson St, New York City, NY 10001" +155874,34in Ultrawide Monitor,1,379.99,01/11/19 10:37,"351 Meadow St, San Francisco, CA 94016" +155875,Lightning Charging Cable,1,14.95,01/04/19 18:21,"15 Lincoln St, Los Angeles, CA 90001" +155876,iPhone,1,700,01/04/19 14:46,"413 Adams St, Atlanta, GA 30301" +155877,34in Ultrawide Monitor,1,379.99,01/25/19 16:24,"653 Jefferson St, Los Angeles, CA 90001" +155878,Apple Airpods Headphones,1,150,01/05/19 19:39,"931 Church St, San Francisco, CA 94016" +155879,Lightning Charging Cable,1,14.95,01/05/19 09:38,"350 Adams St, San Francisco, CA 94016" +155880,20in Monitor,1,109.99,01/20/19 19:14,"613 Jefferson St, Los Angeles, CA 90001" +155881,Wired Headphones,1,11.99,01/17/19 13:22,"758 14th St, Los Angeles, CA 90001" +155882,Apple Airpods Headphones,1,150,01/12/19 07:56,"10 Maple St, Portland, OR 97035" +155883,Google Phone,1,600,01/13/19 21:39,"70 Hill St, Dallas, TX 75001" +155883,USB-C Charging Cable,1,11.95,01/13/19 21:39,"70 Hill St, Dallas, TX 75001" +155884,27in 4K Gaming Monitor,1,389.99,01/31/19 18:57,"729 Center St, New York City, NY 10001" +155885,Wired Headphones,1,11.99,01/10/19 12:36,"769 Washington St, Dallas, TX 75001" +155886,Wired Headphones,1,11.99,01/11/19 23:28,"632 14th St, Seattle, WA 98101" +155887,AAA Batteries (4-pack),1,2.99,01/11/19 20:46,"848 1st St, Los Angeles, CA 90001" +155888,Lightning Charging Cable,1,14.95,01/14/19 23:38,"483 Jefferson St, Los Angeles, CA 90001" +155888,Lightning Charging Cable,1,14.95,01/14/19 23:38,"483 Jefferson St, Los Angeles, CA 90001" +155889,Lightning Charging Cable,1,14.95,01/14/19 18:27,"664 7th St, Seattle, WA 98101" +155890,USB-C Charging Cable,1,11.95,01/05/19 22:24,"582 Sunset St, Los Angeles, CA 90001" +155891,Apple Airpods Headphones,1,150,01/25/19 13:56,"490 Lake St, San Francisco, CA 94016" +155892,Wired Headphones,1,11.99,01/09/19 14:46,"224 Lakeview St, Los Angeles, CA 90001" +155893,Macbook Pro Laptop,1,1700,01/11/19 10:00,"907 Lakeview St, Los Angeles, CA 90001" +155894,AA Batteries (4-pack),1,3.84,01/13/19 17:06,"662 West St, Atlanta, GA 30301" +155895,AAA Batteries (4-pack),1,2.99,01/27/19 17:06,"965 Jefferson St, San Francisco, CA 94016" +155896,Bose SoundSport Headphones,1,99.99,01/24/19 00:53,"863 Lincoln St, San Francisco, CA 94016" +155897,Apple Airpods Headphones,1,150,01/09/19 13:39,"537 9th St, Atlanta, GA 30301" +155898,iPhone,1,700,01/22/19 12:39,"403 Park St, Atlanta, GA 30301" +155899,iPhone,1,700,01/25/19 14:07,"117 6th St, Seattle, WA 98101" +155900,34in Ultrawide Monitor,1,379.99,01/17/19 14:00,"674 River St, San Francisco, CA 94016" +155901,Apple Airpods Headphones,1,150,01/05/19 19:13,"658 Sunset St, Boston, MA 02215" +155902,Wired Headphones,1,11.99,01/31/19 12:44,"347 8th St, Dallas, TX 75001" +155903,AA Batteries (4-pack),1,3.84,01/01/19 12:42,"225 Highland St, New York City, NY 10001" +155904,AA Batteries (4-pack),1,3.84,01/29/19 18:52,"261 Pine St, Los Angeles, CA 90001" +155905,AAA Batteries (4-pack),1,2.99,01/19/19 13:25,"55 North St, Boston, MA 02215" +155906,ThinkPad Laptop,1,999.99,01/11/19 20:32,"227 4th St, Los Angeles, CA 90001" +155906,AAA Batteries (4-pack),1,2.99,01/11/19 20:32,"227 4th St, Los Angeles, CA 90001" +155907,AA Batteries (4-pack),1,3.84,01/12/19 22:56,"941 8th St, San Francisco, CA 94016" +155908,AA Batteries (4-pack),1,3.84,01/17/19 20:22,"16 Highland St, Los Angeles, CA 90001" +155909,Apple Airpods Headphones,1,150,01/20/19 22:20,"913 1st St, Los Angeles, CA 90001" +155910,Lightning Charging Cable,1,14.95,01/14/19 11:35,"651 Forest St, San Francisco, CA 94016" +155911,Lightning Charging Cable,1,14.95,01/09/19 19:09,"947 Johnson St, San Francisco, CA 94016" +155912,USB-C Charging Cable,1,11.95,01/31/19 20:17,"800 Wilson St, Boston, MA 02215" +155913,AA Batteries (4-pack),1,3.84,01/01/19 06:56,"589 6th St, Austin, TX 73301" +155914,AA Batteries (4-pack),1,3.84,01/10/19 22:29,"234 Highland St, Dallas, TX 75001" +155915,USB-C Charging Cable,1,11.95,01/17/19 17:39,"367 8th St, New York City, NY 10001" +155916,AAA Batteries (4-pack),2,2.99,01/30/19 16:09,"454 Madison St, Dallas, TX 75001" +155917,ThinkPad Laptop,1,999.99,01/30/19 12:44,"933 Lake St, New York City, NY 10001" +155918,USB-C Charging Cable,3,11.95,01/15/19 12:32,"620 11th St, San Francisco, CA 94016" +155919,iPhone,1,700,01/16/19 06:08,"685 10th St, Austin, TX 73301" +155920,USB-C Charging Cable,1,11.95,01/20/19 12:56,"736 Jackson St, San Francisco, CA 94016" +155921,USB-C Charging Cable,1,11.95,01/16/19 14:55,"93 South St, Dallas, TX 75001" +155922,Apple Airpods Headphones,1,150,01/25/19 13:47,"301 Walnut St, New York City, NY 10001" +155923,Macbook Pro Laptop,1,1700,01/24/19 11:21,"960 Church St, New York City, NY 10001" +155924,Google Phone,1,600,01/24/19 09:19,"103 12th St, Seattle, WA 98101" +155924,Bose SoundSport Headphones,1,99.99,01/24/19 09:19,"103 12th St, Seattle, WA 98101" +155925,27in 4K Gaming Monitor,1,389.99,01/18/19 14:07,"901 11th St, Seattle, WA 98101" +155926,AA Batteries (4-pack),1,3.84,01/28/19 13:10,"271 5th St, Los Angeles, CA 90001" +155927,Lightning Charging Cable,1,14.95,01/25/19 23:56,"251 Center St, Atlanta, GA 30301" +155928,AA Batteries (4-pack),1,3.84,01/07/19 10:53,"370 Adams St, Boston, MA 02215" +155929,Bose SoundSport Headphones,1,99.99,01/18/19 14:40,"844 Dogwood St, Los Angeles, CA 90001" +155930,Bose SoundSport Headphones,1,99.99,01/02/19 11:00,"976 Church St, New York City, NY 10001" +155931,USB-C Charging Cable,1,11.95,01/21/19 17:45,"199 13th St, Los Angeles, CA 90001" +155932,Apple Airpods Headphones,1,150,01/18/19 18:55,"324 Cherry St, Atlanta, GA 30301" +155933,27in 4K Gaming Monitor,1,389.99,01/12/19 12:33,"283 Chestnut St, New York City, NY 10001" +155934,27in FHD Monitor,1,149.99,01/15/19 15:24,"936 Church St, Boston, MA 02215" +155935,Bose SoundSport Headphones,1,99.99,01/19/19 14:18,"311 Madison St, Portland, OR 97035" +155936,Lightning Charging Cable,1,14.95,01/25/19 19:20,"32 12th St, San Francisco, CA 94016" +155937,AA Batteries (4-pack),1,3.84,01/23/19 09:49,"955 7th St, Los Angeles, CA 90001" +155938,USB-C Charging Cable,1,11.95,01/24/19 11:52,"47 Madison St, Portland, OR 97035" +155939,Apple Airpods Headphones,1,150,01/20/19 23:43,"304 Jackson St, Dallas, TX 75001" +155940,Wired Headphones,1,11.99,01/20/19 18:55,"25 1st St, San Francisco, CA 94016" +155941,Wired Headphones,1,11.99,01/10/19 13:13,"431 Meadow St, Los Angeles, CA 90001" +155942,Wired Headphones,2,11.99,01/21/19 12:03,"800 8th St, Austin, TX 73301" +155943,AAA Batteries (4-pack),3,2.99,01/21/19 07:41,"661 Church St, Los Angeles, CA 90001" +155944,Wired Headphones,1,11.99,01/03/19 22:59,"183 Willow St, New York City, NY 10001" +155945,Lightning Charging Cable,2,14.95,01/03/19 15:35,"538 Willow St, Dallas, TX 75001" +155946,AAA Batteries (4-pack),2,2.99,01/04/19 07:40,"824 Maple St, San Francisco, CA 94016" +155947,Lightning Charging Cable,1,14.95,01/28/19 03:25,"642 Lake St, Portland, OR 97035" +155947,AA Batteries (4-pack),1,3.84,01/28/19 03:25,"642 Lake St, Portland, OR 97035" +155948,34in Ultrawide Monitor,1,379.99,01/28/19 14:44,"676 11th St, Austin, TX 73301" +155949,Lightning Charging Cable,1,14.95,01/29/19 08:57,"364 1st St, Atlanta, GA 30301" +155950,USB-C Charging Cable,1,11.95,01/21/19 07:56,"693 Wilson St, Seattle, WA 98101" +155951,Lightning Charging Cable,1,14.95,01/06/19 15:39,"870 2nd St, San Francisco, CA 94016" +155952,AA Batteries (4-pack),2,3.84,01/01/19 11:18,"739 River St, New York City, NY 10001" +155953,Vareebadd Phone,1,400,01/24/19 07:57,"958 Elm St, San Francisco, CA 94016" +155954,Apple Airpods Headphones,1,150,01/20/19 15:50,"592 5th St, Dallas, TX 75001" +155955,Macbook Pro Laptop,1,1700,01/12/19 22:59,"53 Hill St, San Francisco, CA 94016" +155956,AAA Batteries (4-pack),2,2.99,01/12/19 10:52,"750 Cherry St, Austin, TX 73301" +155957,Bose SoundSport Headphones,1,99.99,01/13/19 14:59,"237 Park St, San Francisco, CA 94016" +155958,Google Phone,1,600,01/24/19 11:17,"461 Elm St, Boston, MA 02215" +155958,USB-C Charging Cable,1,11.95,01/24/19 11:17,"461 Elm St, Boston, MA 02215" +155959,Apple Airpods Headphones,1,150,01/11/19 14:18,"100 13th St, San Francisco, CA 94016" +155960,AA Batteries (4-pack),1,3.84,01/20/19 15:03,"734 9th St, Boston, MA 02215" +155961,Apple Airpods Headphones,1,150,01/15/19 17:31,"970 13th St, Seattle, WA 98101" +155962,Lightning Charging Cable,1,14.95,01/29/19 15:35,"478 River St, Portland, OR 97035" +155963,Lightning Charging Cable,1,14.95,01/08/19 05:57,"566 Hickory St, Seattle, WA 98101" +155964,AAA Batteries (4-pack),1,2.99,01/28/19 16:21,"744 West St, Los Angeles, CA 90001" +155965,AA Batteries (4-pack),1,3.84,01/18/19 21:24,"750 Johnson St, San Francisco, CA 94016" +155966,20in Monitor,1,109.99,01/22/19 18:06,"18 Elm St, Austin, TX 73301" +155967,AA Batteries (4-pack),1,3.84,01/20/19 15:09,"266 2nd St, New York City, NY 10001" +155968,Wired Headphones,1,11.99,01/05/19 17:02,"44 Hickory St, New York City, NY 10001" +155969,34in Ultrawide Monitor,1,379.99,01/21/19 15:56,"729 Church St, San Francisco, CA 94016" +155970,Wired Headphones,1,11.99,01/31/19 20:40,"718 13th St, San Francisco, CA 94016" +155971,iPhone,1,700,01/11/19 17:50,"64 Wilson St, Portland, ME 04101" +155972,Bose SoundSport Headphones,1,99.99,01/09/19 17:38,"913 4th St, Austin, TX 73301" +155973,Apple Airpods Headphones,1,150,01/10/19 16:56,"605 7th St, San Francisco, CA 94016" +155974,AA Batteries (4-pack),1,3.84,01/30/19 13:40,"680 Forest St, San Francisco, CA 94016" +155975,27in 4K Gaming Monitor,1,389.99,01/14/19 11:23,"563 Meadow St, Dallas, TX 75001" +155976,34in Ultrawide Monitor,1,379.99,01/07/19 21:09,"423 Walnut St, Boston, MA 02215" +155977,Flatscreen TV,1,300,01/04/19 20:49,"531 River St, New York City, NY 10001" +155978,AA Batteries (4-pack),2,3.84,01/22/19 10:47,"953 Cherry St, New York City, NY 10001" +155979,AAA Batteries (4-pack),2,2.99,01/30/19 20:19,"234 12th St, New York City, NY 10001" +155980,Apple Airpods Headphones,1,150,01/30/19 14:02,"265 10th St, Los Angeles, CA 90001" +155981,Apple Airpods Headphones,1,150,01/16/19 12:13,"523 Cherry St, San Francisco, CA 94016" +155982,iPhone,1,700,01/28/19 18:54,"634 Madison St, Boston, MA 02215" +155982,Lightning Charging Cable,1,14.95,01/28/19 18:54,"634 Madison St, Boston, MA 02215" +155983,Bose SoundSport Headphones,1,99.99,01/19/19 13:43,"178 Jackson St, San Francisco, CA 94016" +155984,AAA Batteries (4-pack),1,2.99,01/09/19 19:13,"299 West St, Los Angeles, CA 90001" +155985,34in Ultrawide Monitor,1,379.99,01/23/19 12:58,"308 Lake St, Austin, TX 73301" +155986,AAA Batteries (4-pack),1,2.99,01/07/19 11:50,"384 Sunset St, Seattle, WA 98101" +155987,Bose SoundSport Headphones,1,99.99,01/17/19 00:24,"458 Sunset St, San Francisco, CA 94016" +155988,27in FHD Monitor,1,149.99,01/25/19 10:22,"789 Hill St, San Francisco, CA 94016" +155989,Wired Headphones,1,11.99,01/08/19 11:33,"974 Highland St, Portland, OR 97035" +155990,Lightning Charging Cable,1,14.95,01/03/19 14:37,"673 Hickory St, Boston, MA 02215" +155991,20in Monitor,1,109.99,01/23/19 22:04,"325 Forest St, Los Angeles, CA 90001" +155992,Wired Headphones,1,11.99,01/13/19 18:02,"648 14th St, Seattle, WA 98101" +155993,Bose SoundSport Headphones,1,99.99,01/03/19 12:47,"920 13th St, Seattle, WA 98101" +155994,Lightning Charging Cable,1,14.95,01/01/19 15:09,"100 Wilson St, New York City, NY 10001" +155995,Lightning Charging Cable,1,14.95,01/27/19 18:02,"196 Highland St, San Francisco, CA 94016" +155996,AAA Batteries (4-pack),1,2.99,01/02/19 14:11,"174 West St, Los Angeles, CA 90001" +155997,Wired Headphones,2,11.99,01/09/19 07:15,"433 North St, Dallas, TX 75001" +155998,Lightning Charging Cable,1,14.95,01/29/19 21:53,"238 1st St, San Francisco, CA 94016" +155999,AAA Batteries (4-pack),1,2.99,01/28/19 07:32,"74 Center St, Austin, TX 73301" +156000,AA Batteries (4-pack),1,3.84,01/18/19 00:53,"697 Chestnut St, New York City, NY 10001" +156001,Wired Headphones,1,11.99,01/10/19 16:28,"12 River St, Seattle, WA 98101" +156002,AA Batteries (4-pack),1,3.84,01/28/19 07:12,"448 Church St, Los Angeles, CA 90001" +156003,Apple Airpods Headphones,1,150,01/16/19 13:14,"95 Lincoln St, Los Angeles, CA 90001" +156004,Bose SoundSport Headphones,1,99.99,01/05/19 17:04,"65 Lakeview St, Dallas, TX 75001" +156005,USB-C Charging Cable,2,11.95,01/08/19 10:19,"259 North St, Seattle, WA 98101" +156006,AAA Batteries (4-pack),2,2.99,01/28/19 12:54,"907 12th St, Boston, MA 02215" +156007,Lightning Charging Cable,1,14.95,01/28/19 21:58,"976 Highland St, San Francisco, CA 94016" +156008,Apple Airpods Headphones,1,150,01/24/19 20:23,"158 Cedar St, Portland, OR 97035" +156009,Wired Headphones,1,11.99,01/21/19 18:57,"876 Maple St, Los Angeles, CA 90001" +156010,Wired Headphones,3,11.99,01/15/19 12:04,"260 9th St, New York City, NY 10001" +156011,Bose SoundSport Headphones,1,99.99,01/26/19 12:55,"582 7th St, Seattle, WA 98101" +156012,Wired Headphones,1,11.99,01/23/19 01:56,"948 Lakeview St, Portland, OR 97035" +156013,USB-C Charging Cable,1,11.95,01/20/19 16:46,"669 Jefferson St, Seattle, WA 98101" +156014,27in FHD Monitor,1,149.99,01/04/19 16:56,"580 Madison St, Los Angeles, CA 90001" +156015,20in Monitor,1,109.99,01/11/19 18:00,"194 Willow St, Los Angeles, CA 90001" +156016,Apple Airpods Headphones,1,150,01/15/19 09:55,"723 Lake St, Portland, OR 97035" +156017,AAA Batteries (4-pack),1,2.99,01/16/19 21:38,"75 14th St, Dallas, TX 75001" +156018,Macbook Pro Laptop,1,1700,01/20/19 12:37,"777 Washington St, Portland, ME 04101" +156019,USB-C Charging Cable,1,11.95,01/01/19 15:40,"79 Meadow St, Boston, MA 02215" +156020,AA Batteries (4-pack),1,3.84,01/04/19 09:17,"145 North St, San Francisco, CA 94016" +156021,AAA Batteries (4-pack),2,2.99,01/12/19 23:47,"763 Cherry St, Boston, MA 02215" +156022,Bose SoundSport Headphones,1,99.99,01/13/19 16:23,"313 6th St, Los Angeles, CA 90001" +156023,Lightning Charging Cable,1,14.95,01/13/19 15:14,"538 5th St, Atlanta, GA 30301" +156024,Macbook Pro Laptop,1,1700,01/23/19 10:17,"584 Center St, New York City, NY 10001" +156024,Apple Airpods Headphones,1,150,01/23/19 10:17,"584 Center St, New York City, NY 10001" +156025,AAA Batteries (4-pack),2,2.99,01/04/19 11:46,"868 Madison St, Los Angeles, CA 90001" +156026,34in Ultrawide Monitor,1,379.99,01/18/19 18:40,"13 7th St, New York City, NY 10001" +156027,AA Batteries (4-pack),1,3.84,01/07/19 09:57,"940 River St, Dallas, TX 75001" +156028,Wired Headphones,1,11.99,01/31/19 09:38,"464 Walnut St, Dallas, TX 75001" +156029,AAA Batteries (4-pack),1,2.99,01/26/19 14:00,"86 West St, Seattle, WA 98101" +156030,Lightning Charging Cable,1,14.95,01/05/19 11:00,"567 River St, San Francisco, CA 94016" +156031,Lightning Charging Cable,1,14.95,01/25/19 14:18,"915 Elm St, San Francisco, CA 94016" +156032,AAA Batteries (4-pack),4,2.99,01/21/19 15:15,"390 8th St, Los Angeles, CA 90001" +156033,27in FHD Monitor,1,149.99,01/13/19 09:37,"753 West St, San Francisco, CA 94016" +,,,,, +156034,AAA Batteries (4-pack),1,2.99,01/28/19 11:43,"330 River St, Austin, TX 73301" +156035,USB-C Charging Cable,1,11.95,01/12/19 11:16,"886 10th St, Atlanta, GA 30301" +156036,Lightning Charging Cable,1,14.95,01/12/19 20:57,"617 5th St, Los Angeles, CA 90001" +156037,ThinkPad Laptop,1,999.99,01/31/19 08:51,"614 Madison St, San Francisco, CA 94016" +156038,Apple Airpods Headphones,1,150,01/27/19 23:20,"907 Wilson St, Los Angeles, CA 90001" +156039,Wired Headphones,1,11.99,01/12/19 04:34,"306 Madison St, Los Angeles, CA 90001" +156040,Wired Headphones,1,11.99,01/20/19 15:27,"573 Meadow St, Boston, MA 02215" +156041,USB-C Charging Cable,2,11.95,01/11/19 13:03,"843 Hickory St, Boston, MA 02215" +,,,,, +156042,AAA Batteries (4-pack),1,2.99,01/13/19 03:26,"613 Main St, Atlanta, GA 30301" +156043,AAA Batteries (4-pack),1,2.99,01/21/19 20:12,"390 Walnut St, Los Angeles, CA 90001" +156044,AA Batteries (4-pack),1,3.84,01/21/19 13:22,"306 12th St, New York City, NY 10001" +156045,Bose SoundSport Headphones,1,99.99,01/30/19 10:53,"354 8th St, San Francisco, CA 94016" +156046,AA Batteries (4-pack),1,3.84,01/18/19 18:11,"510 14th St, Dallas, TX 75001" +156047,AA Batteries (4-pack),1,3.84,01/25/19 20:41,"289 Park St, San Francisco, CA 94016" +156048,iPhone,1,700,01/16/19 12:25,"275 Highland St, Los Angeles, CA 90001" +156048,Lightning Charging Cable,1,14.95,01/16/19 12:25,"275 Highland St, Los Angeles, CA 90001" +156049,AAA Batteries (4-pack),1,2.99,01/05/19 16:35,"692 Highland St, San Francisco, CA 94016" +156050,USB-C Charging Cable,1,11.95,01/10/19 14:00,"501 8th St, Boston, MA 02215" +156051,Bose SoundSport Headphones,1,99.99,01/15/19 09:45,"198 Jackson St, Los Angeles, CA 90001" +156052,AAA Batteries (4-pack),1,2.99,01/17/19 21:05,"781 Lake St, San Francisco, CA 94016" +156053,Lightning Charging Cable,1,14.95,01/24/19 12:22,"482 Jefferson St, Dallas, TX 75001" +156054,iPhone,1,700,01/22/19 23:33,"282 Elm St, New York City, NY 10001" +156055,Wired Headphones,1,11.99,01/04/19 19:45,"882 Pine St, New York City, NY 10001" +156056,AAA Batteries (4-pack),1,2.99,01/25/19 14:33,"429 Wilson St, Los Angeles, CA 90001" +156057,AAA Batteries (4-pack),2,2.99,01/09/19 20:06,"31 6th St, Austin, TX 73301" +156058,AAA Batteries (4-pack),2,2.99,01/13/19 15:30,"48 Willow St, Boston, MA 02215" +156059,AAA Batteries (4-pack),1,2.99,01/21/19 19:29,"686 Hill St, Dallas, TX 75001" +156060,Lightning Charging Cable,1,14.95,01/31/19 23:34,"285 12th St, New York City, NY 10001" +156061,AA Batteries (4-pack),1,3.84,01/30/19 11:26,"534 Spruce St, Portland, ME 04101" +156062,Wired Headphones,1,11.99,01/14/19 09:42,"847 2nd St, New York City, NY 10001" +156063,Apple Airpods Headphones,1,150,01/07/19 22:48,"319 Lincoln St, Portland, OR 97035" +156064,Bose SoundSport Headphones,1,99.99,01/15/19 23:44,"485 11th St, New York City, NY 10001" +156065,AA Batteries (4-pack),3,3.84,01/31/19 16:13,"964 8th St, San Francisco, CA 94016" +156066,27in 4K Gaming Monitor,1,389.99,01/13/19 17:22,"670 Maple St, Boston, MA 02215" +156067,Google Phone,1,600,01/17/19 13:25,"347 Highland St, Boston, MA 02215" +156068,USB-C Charging Cable,1,11.95,01/03/19 17:16,"468 Lake St, Portland, OR 97035" +156069,Bose SoundSport Headphones,1,99.99,01/02/19 23:16,"263 Forest St, Boston, MA 02215" +156070,Lightning Charging Cable,1,14.95,01/28/19 01:16,"798 Park St, Los Angeles, CA 90001" +156071,Lightning Charging Cable,2,14.95,01/15/19 16:35,"900 Madison St, Los Angeles, CA 90001" +156072,iPhone,1,700,01/28/19 14:19,"52 Cherry St, San Francisco, CA 94016" +156072,Apple Airpods Headphones,1,150,01/28/19 14:19,"52 Cherry St, San Francisco, CA 94016" +156073,27in FHD Monitor,1,149.99,01/29/19 21:54,"67 Cherry St, San Francisco, CA 94016" +156074,AAA Batteries (4-pack),1,2.99,01/29/19 19:50,"749 Jefferson St, San Francisco, CA 94016" +156075,Wired Headphones,1,11.99,01/05/19 18:00,"481 Cherry St, Los Angeles, CA 90001" +156076,iPhone,1,700,01/04/19 17:16,"605 7th St, Atlanta, GA 30301" +156077,AA Batteries (4-pack),1,3.84,01/16/19 18:18,"676 9th St, Los Angeles, CA 90001" +156078,Lightning Charging Cable,1,14.95,01/28/19 07:50,"74 12th St, Atlanta, GA 30301" +156079,Flatscreen TV,1,300,01/30/19 11:27,"530 Jackson St, Austin, TX 73301" +156080,Apple Airpods Headphones,1,150,01/16/19 17:06,"699 Dogwood St, Seattle, WA 98101" +156081,27in FHD Monitor,1,149.99,01/20/19 21:04,"284 Church St, Dallas, TX 75001" +156082,Macbook Pro Laptop,1,1700,01/07/19 18:25,"32 Cedar St, Austin, TX 73301" +156083,ThinkPad Laptop,1,999.99,01/15/19 11:50,"67 Dogwood St, Dallas, TX 75001" +156084,27in 4K Gaming Monitor,1,389.99,01/27/19 08:29,"432 Wilson St, Los Angeles, CA 90001" +156085,34in Ultrawide Monitor,1,379.99,01/27/19 11:29,"114 Main St, Boston, MA 02215" +156086,Lightning Charging Cable,1,14.95,01/06/19 21:53,"791 South St, San Francisco, CA 94016" +156087,27in 4K Gaming Monitor,1,389.99,01/30/19 14:07,"612 North St, San Francisco, CA 94016" +156088,iPhone,1,700,01/17/19 20:20,"744 Spruce St, Los Angeles, CA 90001" +156089,Google Phone,1,600,01/24/19 13:45,"102 Lake St, Austin, TX 73301" +156090,AA Batteries (4-pack),1,3.84,01/18/19 11:36,"562 Chestnut St, Boston, MA 02215" +156091,27in FHD Monitor,1,149.99,01/06/19 15:42,"598 Church St, Seattle, WA 98101" +156092,Lightning Charging Cable,1,14.95,01/09/19 01:26,"79 Pine St, Los Angeles, CA 90001" +156093,AA Batteries (4-pack),1,3.84,01/16/19 11:09,"576 South St, Boston, MA 02215" +156094,Wired Headphones,1,11.99,01/14/19 06:07,"114 12th St, Dallas, TX 75001" +156095,Bose SoundSport Headphones,1,99.99,01/07/19 11:55,"785 Main St, Boston, MA 02215" +156096,34in Ultrawide Monitor,1,379.99,01/05/19 16:02,"825 Lake St, Los Angeles, CA 90001" +156097,20in Monitor,1,109.99,01/22/19 20:40,"85 2nd St, Los Angeles, CA 90001" +156098,USB-C Charging Cable,1,11.95,01/10/19 09:40,"394 Dogwood St, New York City, NY 10001" +156099,34in Ultrawide Monitor,1,379.99,01/09/19 00:41,"142 Spruce St, San Francisco, CA 94016" +156100,Wired Headphones,1,11.99,01/07/19 10:27,"593 4th St, San Francisco, CA 94016" +156101,iPhone,1,700,01/12/19 16:12,"893 5th St, San Francisco, CA 94016" +156101,Lightning Charging Cable,2,14.95,01/12/19 16:12,"893 5th St, San Francisco, CA 94016" +156102,Macbook Pro Laptop,1,1700,01/26/19 18:40,"46 Hill St, San Francisco, CA 94016" +156103,Apple Airpods Headphones,1,150,01/21/19 22:29,"294 5th St, San Francisco, CA 94016" +156104,Vareebadd Phone,1,400,01/25/19 12:56,"367 Maple St, Portland, OR 97035" +156105,20in Monitor,1,109.99,01/09/19 17:58,"52 Spruce St, San Francisco, CA 94016" +156106,Lightning Charging Cable,2,14.95,01/20/19 19:33,"292 14th St, San Francisco, CA 94016" +156107,Lightning Charging Cable,1,14.95,01/18/19 14:15,"832 8th St, Portland, OR 97035" +156108,ThinkPad Laptop,1,999.99,01/13/19 13:52,"198 12th St, Seattle, WA 98101" +156109,Bose SoundSport Headphones,1,99.99,01/12/19 16:08,"664 Washington St, Los Angeles, CA 90001" +156110,AAA Batteries (4-pack),2,2.99,01/18/19 23:23,"6 South St, New York City, NY 10001" +156111,Lightning Charging Cable,1,14.95,01/22/19 17:40,"751 Jefferson St, Los Angeles, CA 90001" +156112,ThinkPad Laptop,1,999.99,01/28/19 13:27,"661 4th St, New York City, NY 10001" +156113,Lightning Charging Cable,1,14.95,01/13/19 13:07,"494 Chestnut St, Atlanta, GA 30301" +156114,Flatscreen TV,1,300,01/22/19 23:29,"740 8th St, San Francisco, CA 94016" +156115,USB-C Charging Cable,2,11.95,01/16/19 22:33,"664 Lake St, New York City, NY 10001" +156116,USB-C Charging Cable,1,11.95,01/21/19 22:52,"476 Willow St, New York City, NY 10001" +156117,USB-C Charging Cable,1,11.95,01/22/19 10:23,"323 Hill St, Los Angeles, CA 90001" +156118,27in 4K Gaming Monitor,1,389.99,01/19/19 16:16,"580 13th St, Los Angeles, CA 90001" +156119,AA Batteries (4-pack),1,3.84,01/01/19 11:42,"466 Walnut St, Portland, OR 97035" +156120,Lightning Charging Cable,1,14.95,01/18/19 21:38,"852 Park St, Portland, OR 97035" +156121,Google Phone,1,600,01/13/19 11:03,"250 Church St, Los Angeles, CA 90001" +156122,Wired Headphones,1,11.99,01/25/19 00:00,"252 Chestnut St, Boston, MA 02215" +156123,Bose SoundSport Headphones,1,99.99,01/29/19 18:12,"118 Adams St, Los Angeles, CA 90001" +156124,Wired Headphones,1,11.99,01/16/19 22:53,"177 10th St, San Francisco, CA 94016" +156125,AAA Batteries (4-pack),1,2.99,01/24/19 03:48,"60 Walnut St, New York City, NY 10001" +156126,iPhone,1,700,01/12/19 22:54,"795 Forest St, Portland, OR 97035" +156127,34in Ultrawide Monitor,1,379.99,01/17/19 19:15,"593 Pine St, New York City, NY 10001" +156128,Wired Headphones,1,11.99,01/03/19 15:42,"963 Dogwood St, Boston, MA 02215" +156129,AAA Batteries (4-pack),1,2.99,01/23/19 09:29,"768 Chestnut St, Portland, ME 04101" +156130,AAA Batteries (4-pack),1,2.99,01/23/19 10:46,"450 Main St, Boston, MA 02215" +156131,Bose SoundSport Headphones,1,99.99,01/03/19 04:59,"506 Meadow St, Atlanta, GA 30301" +156132,USB-C Charging Cable,1,11.95,01/14/19 02:11,"48 Spruce St, Atlanta, GA 30301" +156133,Lightning Charging Cable,1,14.95,01/07/19 17:27,"625 Meadow St, Atlanta, GA 30301" +156134,Bose SoundSport Headphones,1,99.99,01/06/19 14:38,"195 Johnson St, Seattle, WA 98101" +156135,Google Phone,1,600,01/02/19 08:35,"293 Lincoln St, New York City, NY 10001" +156136,USB-C Charging Cable,1,11.95,01/03/19 11:37,"263 Elm St, Dallas, TX 75001" +156137,AA Batteries (4-pack),1,3.84,01/22/19 15:37,"82 Walnut St, New York City, NY 10001" +156137,20in Monitor,1,109.99,01/22/19 15:37,"82 Walnut St, New York City, NY 10001" +156138,Flatscreen TV,1,300,01/07/19 22:36,"518 13th St, Seattle, WA 98101" +156139,Lightning Charging Cable,1,14.95,01/12/19 12:43,"364 1st St, Boston, MA 02215" +156140,Bose SoundSport Headphones,1,99.99,01/02/19 00:02,"491 Madison St, Atlanta, GA 30301" +156141,Google Phone,1,600,01/23/19 16:32,"397 Highland St, New York City, NY 10001" +156141,Bose SoundSport Headphones,1,99.99,01/23/19 16:32,"397 Highland St, New York City, NY 10001" +156142,Lightning Charging Cable,1,14.95,01/30/19 09:55,"720 Lake St, Seattle, WA 98101" +156143,Apple Airpods Headphones,1,150,01/31/19 21:43,"407 North St, Dallas, TX 75001" +156144,AA Batteries (4-pack),1,3.84,01/04/19 16:47,"928 10th St, New York City, NY 10001" +156145,Apple Airpods Headphones,1,150,01/21/19 00:00,"8 Elm St, San Francisco, CA 94016" +156146,Google Phone,1,600,01/05/19 11:04,"696 4th St, Atlanta, GA 30301" +156147,AA Batteries (4-pack),1,3.84,01/28/19 12:30,"47 Madison St, San Francisco, CA 94016" +156148,Bose SoundSport Headphones,1,99.99,01/18/19 20:41,"520 8th St, San Francisco, CA 94016" +156149,Apple Airpods Headphones,1,150,01/09/19 13:59,"186 2nd St, Austin, TX 73301" +156150,USB-C Charging Cable,1,11.95,01/02/19 18:52,"627 North St, Atlanta, GA 30301" +156151,Lightning Charging Cable,1,14.95,01/26/19 09:51,"942 Park St, Los Angeles, CA 90001" +156152,27in 4K Gaming Monitor,1,389.99,01/08/19 18:48,"188 Willow St, Atlanta, GA 30301" +156153,USB-C Charging Cable,1,11.95,01/31/19 12:10,"891 Meadow St, New York City, NY 10001" +156154,Macbook Pro Laptop,1,1700,01/23/19 10:38,"829 9th St, San Francisco, CA 94016" +156155,27in 4K Gaming Monitor,1,389.99,01/15/19 12:19,"263 North St, Atlanta, GA 30301" +156156,AA Batteries (4-pack),2,3.84,01/05/19 18:33,"20 Johnson St, Los Angeles, CA 90001" +156157,USB-C Charging Cable,1,11.95,01/17/19 17:19,"940 2nd St, Boston, MA 02215" +156158,AAA Batteries (4-pack),6,2.99,01/03/19 19:36,"247 Lincoln St, San Francisco, CA 94016" +156159,Macbook Pro Laptop,1,1700,01/19/19 22:44,"715 Pine St, New York City, NY 10001" +156160,Apple Airpods Headphones,1,150,01/10/19 13:48,"513 7th St, San Francisco, CA 94016" +156161,AA Batteries (4-pack),1,3.84,01/13/19 18:11,"781 Cherry St, San Francisco, CA 94016" +156162,AAA Batteries (4-pack),1,2.99,01/04/19 14:45,"712 Dogwood St, San Francisco, CA 94016" +156163,AA Batteries (4-pack),1,3.84,01/27/19 12:37,"391 Walnut St, Portland, OR 97035" +156164,Lightning Charging Cable,1,14.95,01/02/19 12:43,"554 South St, Seattle, WA 98101" +156165,Lightning Charging Cable,1,14.95,01/16/19 14:22,"506 Jackson St, Atlanta, GA 30301" +156166,Wired Headphones,1,11.99,01/10/19 16:05,"582 5th St, Boston, MA 02215" +156167,27in FHD Monitor,1,149.99,01/23/19 17:42,"440 Highland St, San Francisco, CA 94016" +,,,,, +156168,Bose SoundSport Headphones,1,99.99,01/04/19 11:45,"776 Ridge St, Atlanta, GA 30301" +156169,Wired Headphones,1,11.99,01/04/19 10:55,"227 Elm St, San Francisco, CA 94016" +156170,Bose SoundSport Headphones,1,99.99,01/25/19 19:17,"100 6th St, Los Angeles, CA 90001" +156171,AA Batteries (4-pack),1,3.84,01/17/19 20:28,"33 12th St, Atlanta, GA 30301" +156172,ThinkPad Laptop,1,999.99,01/08/19 18:57,"596 South St, Atlanta, GA 30301" +156173,Bose SoundSport Headphones,1,99.99,01/29/19 21:11,"386 Cherry St, San Francisco, CA 94016" +156174,Wired Headphones,1,11.99,01/05/19 15:47,"992 South St, Austin, TX 73301" +156175,Lightning Charging Cable,1,14.95,01/23/19 20:14,"613 Meadow St, Boston, MA 02215" +156176,Bose SoundSport Headphones,1,99.99,01/20/19 19:39,"595 14th St, San Francisco, CA 94016" +156177,AA Batteries (4-pack),2,3.84,01/26/19 06:26,"40 Cherry St, Portland, OR 97035" +156178,Apple Airpods Headphones,1,150,01/16/19 19:17,"118 Park St, San Francisco, CA 94016" +,,,,, +156179,Flatscreen TV,1,300,01/09/19 22:39,"878 Wilson St, San Francisco, CA 94016" +156180,AA Batteries (4-pack),1,3.84,01/22/19 10:01,"405 12th St, San Francisco, CA 94016" +156181,USB-C Charging Cable,1,11.95,01/18/19 12:00,"242 Adams St, Dallas, TX 75001" +156182,USB-C Charging Cable,1,11.95,01/01/19 14:27,"516 Lincoln St, Austin, TX 73301" +156183,AA Batteries (4-pack),1,3.84,01/28/19 20:13,"851 8th St, San Francisco, CA 94016" +156184,Wired Headphones,1,11.99,01/25/19 05:48,"645 Lake St, Dallas, TX 75001" +156185,Lightning Charging Cable,2,14.95,01/12/19 11:45,"744 5th St, Boston, MA 02215" +156186,AA Batteries (4-pack),3,3.84,01/22/19 17:01,"620 9th St, Portland, ME 04101" +156187,Lightning Charging Cable,1,14.95,01/23/19 19:56,"159 Wilson St, San Francisco, CA 94016" +156188,Macbook Pro Laptop,1,1700,01/11/19 08:04,"61 Main St, Los Angeles, CA 90001" +156189,34in Ultrawide Monitor,1,379.99,01/26/19 11:43,"730 Elm St, Boston, MA 02215" +156190,AA Batteries (4-pack),1,3.84,01/06/19 13:43,"102 2nd St, Los Angeles, CA 90001" +156191,Wired Headphones,1,11.99,01/05/19 16:07,"176 River St, San Francisco, CA 94016" +156192,AA Batteries (4-pack),1,3.84,01/21/19 21:45,"303 Hickory St, San Francisco, CA 94016" +156193,Apple Airpods Headphones,1,150,01/21/19 11:37,"804 Maple St, San Francisco, CA 94016" +156194,iPhone,1,700,01/14/19 22:32,"561 1st St, Austin, TX 73301" +156194,Wired Headphones,1,11.99,01/14/19 22:32,"561 1st St, Austin, TX 73301" +156195,Wired Headphones,1,11.99,01/29/19 17:23,"341 Park St, Boston, MA 02215" +156196,USB-C Charging Cable,1,11.95,01/18/19 11:36,"849 8th St, New York City, NY 10001" +156197,AAA Batteries (4-pack),1,2.99,01/09/19 18:10,"4 Hill St, San Francisco, CA 94016" +156198,Google Phone,1,600,01/31/19 10:51,"425 Sunset St, Los Angeles, CA 90001" +156199,Lightning Charging Cable,1,14.95,01/30/19 12:16,"362 Sunset St, San Francisco, CA 94016" +156200,iPhone,1,700,01/10/19 10:56,"766 Lakeview St, New York City, NY 10001" +156201,Wired Headphones,1,11.99,01/10/19 13:47,"841 Highland St, Portland, OR 97035" +156202,Lightning Charging Cable,1,14.95,01/20/19 20:54,"252 South St, Boston, MA 02215" +156203,27in 4K Gaming Monitor,1,389.99,01/09/19 19:23,"328 Highland St, Portland, OR 97035" +156204,USB-C Charging Cable,1,11.95,01/10/19 22:56,"789 River St, Austin, TX 73301" +156204,AAA Batteries (4-pack),1,2.99,01/10/19 22:56,"789 River St, Austin, TX 73301" +156205,Apple Airpods Headphones,1,150,01/02/19 05:36,"155 Dogwood St, Portland, OR 97035" +156206,USB-C Charging Cable,1,11.95,01/15/19 10:29,"374 11th St, New York City, NY 10001" +156207,Flatscreen TV,1,300,01/17/19 11:25,"2 Highland St, Atlanta, GA 30301" +156208,Apple Airpods Headphones,1,150,01/28/19 10:13,"894 South St, Atlanta, GA 30301" +156209,USB-C Charging Cable,1,11.95,01/02/19 20:44,"452 Cherry St, San Francisco, CA 94016" +156210,Apple Airpods Headphones,1,150,01/04/19 08:24,"40 7th St, Seattle, WA 98101" +156211,Wired Headphones,1,11.99,01/15/19 19:14,"375 Dogwood St, Atlanta, GA 30301" +156212,Apple Airpods Headphones,1,150,01/27/19 15:00,"998 Dogwood St, Los Angeles, CA 90001" +156213,AA Batteries (4-pack),3,3.84,01/07/19 21:12,"978 5th St, Austin, TX 73301" +156214,Macbook Pro Laptop,1,1700,01/10/19 18:58,"424 11th St, San Francisco, CA 94016" +156215,AA Batteries (4-pack),1,3.84,01/18/19 18:48,"995 Wilson St, New York City, NY 10001" +156216,Apple Airpods Headphones,1,150,01/06/19 14:33,"831 13th St, Los Angeles, CA 90001" +156217,ThinkPad Laptop,1,999.99,01/19/19 19:35,"585 Adams St, Seattle, WA 98101" +156218,Wired Headphones,1,11.99,01/12/19 08:25,"360 Church St, New York City, NY 10001" +156219,Wired Headphones,1,11.99,01/12/19 17:50,"22 5th St, Los Angeles, CA 90001" +156220,Google Phone,1,600,01/28/19 17:14,"550 Walnut St, Seattle, WA 98101" +156221,34in Ultrawide Monitor,1,379.99,01/05/19 14:58,"58 5th St, Portland, OR 97035" +156222,27in FHD Monitor,1,149.99,01/04/19 17:20,"86 Forest St, Los Angeles, CA 90001" +156223,iPhone,1,700,01/14/19 13:57,"733 7th St, San Francisco, CA 94016" +156223,Apple Airpods Headphones,1,150,01/14/19 13:57,"733 7th St, San Francisco, CA 94016" +156224,Wired Headphones,1,11.99,01/02/19 08:03,"74 10th St, Dallas, TX 75001" +156225,AA Batteries (4-pack),2,3.84,01/31/19 13:11,"546 Walnut St, Austin, TX 73301" +156226,Lightning Charging Cable,1,14.95,01/15/19 20:00,"849 Walnut St, Boston, MA 02215" +156227,AAA Batteries (4-pack),3,2.99,01/19/19 09:42,"139 10th St, Atlanta, GA 30301" +156228,ThinkPad Laptop,1,999.99,01/12/19 05:06,"163 Cedar St, San Francisco, CA 94016" +156229,Wired Headphones,1,11.99,01/13/19 22:13,"697 Cherry St, New York City, NY 10001" +156230,AA Batteries (4-pack),2,3.84,01/31/19 08:42,"634 Meadow St, New York City, NY 10001" +156231,AAA Batteries (4-pack),1,2.99,01/20/19 10:28,"964 13th St, Boston, MA 02215" +156232,AAA Batteries (4-pack),3,2.99,01/14/19 10:59,"548 Pine St, Los Angeles, CA 90001" +156233,Apple Airpods Headphones,1,150,01/12/19 07:50,"528 Cherry St, Dallas, TX 75001" +156234,AA Batteries (4-pack),1,3.84,01/14/19 20:23,"960 1st St, San Francisco, CA 94016" +156235,Lightning Charging Cable,1,14.95,01/04/19 15:16,"612 Meadow St, New York City, NY 10001" +156236,Bose SoundSport Headphones,1,99.99,01/24/19 15:04,"48 Main St, Los Angeles, CA 90001" +156237,Lightning Charging Cable,1,14.95,01/03/19 18:27,"185 Adams St, Boston, MA 02215" +156238,AA Batteries (4-pack),1,3.84,01/23/19 22:51,"505 Spruce St, Dallas, TX 75001" +156239,Wired Headphones,1,11.99,01/17/19 14:45,"142 Center St, Dallas, TX 75001" +156240,Apple Airpods Headphones,1,150,01/18/19 21:07,"137 River St, Los Angeles, CA 90001" +156241,AAA Batteries (4-pack),3,2.99,01/12/19 16:53,"896 Center St, San Francisco, CA 94016" +156241,Lightning Charging Cable,1,14.95,01/12/19 16:53,"896 Center St, San Francisco, CA 94016" +156242,AA Batteries (4-pack),4,3.84,01/08/19 14:12,"628 1st St, Dallas, TX 75001" +156243,Wired Headphones,1,11.99,01/25/19 13:26,"84 Sunset St, Austin, TX 73301" +156244,Apple Airpods Headphones,1,150,01/05/19 21:18,"898 Elm St, Dallas, TX 75001" +156245,AA Batteries (4-pack),1,3.84,01/19/19 18:15,"260 River St, Boston, MA 02215" +156246,Apple Airpods Headphones,1,150,01/02/19 10:41,"141 9th St, Seattle, WA 98101" +156247,USB-C Charging Cable,1,11.95,01/12/19 22:48,"838 Dogwood St, Los Angeles, CA 90001" +156248,Bose SoundSport Headphones,1,99.99,01/18/19 10:18,"732 Madison St, Atlanta, GA 30301" +156249,Wired Headphones,1,11.99,01/27/19 17:35,"150 Cherry St, Los Angeles, CA 90001" +156250,27in 4K Gaming Monitor,1,389.99,01/30/19 00:17,"331 Meadow St, Boston, MA 02215" +156251,Wired Headphones,1,11.99,01/06/19 23:34,"734 Forest St, Los Angeles, CA 90001" +156252,Apple Airpods Headphones,1,150,01/05/19 18:57,"431 River St, San Francisco, CA 94016" +156253,iPhone,1,700,01/20/19 17:48,"587 Wilson St, Los Angeles, CA 90001" +156254,AA Batteries (4-pack),1,3.84,01/20/19 15:40,"548 Maple St, Portland, OR 97035" +156255,AAA Batteries (4-pack),1,2.99,01/15/19 13:52,"690 Wilson St, New York City, NY 10001" +156256,Apple Airpods Headphones,1,150,01/06/19 17:12,"472 11th St, New York City, NY 10001" +156257,Apple Airpods Headphones,1,150,01/20/19 09:13,"649 River St, New York City, NY 10001" +156258,Lightning Charging Cable,1,14.95,01/15/19 18:37,"544 4th St, Dallas, TX 75001" +156259,Apple Airpods Headphones,1,150,01/21/19 11:02,"744 Cherry St, San Francisco, CA 94016" +156260,Bose SoundSport Headphones,1,99.99,01/16/19 21:13,"323 Park St, Los Angeles, CA 90001" +156261,Lightning Charging Cable,1,14.95,01/15/19 18:18,"103 Adams St, San Francisco, CA 94016" +156262,AAA Batteries (4-pack),2,2.99,01/30/19 19:31,"381 2nd St, New York City, NY 10001" +156263,AAA Batteries (4-pack),2,2.99,01/02/19 05:01,"338 13th St, New York City, NY 10001" +156264,ThinkPad Laptop,1,999.99,01/11/19 13:32,"866 2nd St, Portland, OR 97035" +156265,AAA Batteries (4-pack),2,2.99,01/14/19 19:24,"812 Washington St, Los Angeles, CA 90001" +156266,Lightning Charging Cable,1,14.95,01/15/19 16:01,"195 Pine St, Los Angeles, CA 90001" +156267,Lightning Charging Cable,1,14.95,01/06/19 21:41,"242 Maple St, Los Angeles, CA 90001" +156268,Lightning Charging Cable,1,14.95,01/02/19 21:03,"237 11th St, Los Angeles, CA 90001" +156269,27in 4K Gaming Monitor,1,389.99,01/09/19 11:20,"208 Main St, Portland, OR 97035" +156270,Lightning Charging Cable,1,14.95,01/10/19 21:06,"97 Ridge St, Los Angeles, CA 90001" +156271,AA Batteries (4-pack),1,3.84,01/11/19 20:48,"570 Lake St, Boston, MA 02215" +156272,Macbook Pro Laptop,1,1700,01/15/19 11:32,"207 Lincoln St, Boston, MA 02215" +156273,Bose SoundSport Headphones,1,99.99,01/18/19 16:51,"609 11th St, Boston, MA 02215" +156274,iPhone,1,700,01/23/19 19:03,"927 13th St, New York City, NY 10001" +156275,AAA Batteries (4-pack),2,2.99,01/20/19 07:13,"478 1st St, Boston, MA 02215" +156276,Apple Airpods Headphones,1,150,01/13/19 11:59,"405 2nd St, Seattle, WA 98101" +156277,Apple Airpods Headphones,1,150,01/15/19 12:57,"724 1st St, New York City, NY 10001" +156278,Flatscreen TV,1,300,01/18/19 12:07,"799 5th St, Seattle, WA 98101" +156279,USB-C Charging Cable,2,11.95,01/06/19 23:02,"885 River St, Atlanta, GA 30301" +156280,34in Ultrawide Monitor,1,379.99,01/19/19 14:49,"722 6th St, Atlanta, GA 30301" +156281,34in Ultrawide Monitor,1,379.99,01/09/19 09:31,"98 Highland St, Los Angeles, CA 90001" +156282,Vareebadd Phone,1,400,01/02/19 00:46,"928 West St, San Francisco, CA 94016" +156282,Wired Headphones,1,11.99,01/02/19 00:46,"928 West St, San Francisco, CA 94016" +156283,Wired Headphones,1,11.99,01/28/19 19:41,"627 Cherry St, Seattle, WA 98101" +156284,AA Batteries (4-pack),1,3.84,01/15/19 16:30,"310 8th St, Los Angeles, CA 90001" +156285,Wired Headphones,1,11.99,01/29/19 15:48,"669 Main St, Los Angeles, CA 90001" +156286,27in FHD Monitor,1,149.99,01/01/19 11:26,"454 Lincoln St, Los Angeles, CA 90001" +156287,iPhone,1,700,01/17/19 19:58,"605 Jefferson St, San Francisco, CA 94016" +156288,AAA Batteries (4-pack),3,2.99,01/31/19 07:37,"887 Ridge St, Los Angeles, CA 90001" +156289,LG Dryer,1,600.0,01/25/19 16:24,"868 13th St, Los Angeles, CA 90001" +156290,AA Batteries (4-pack),1,3.84,01/02/19 12:41,"154 Jefferson St, Atlanta, GA 30301" +156291,Bose SoundSport Headphones,1,99.99,01/07/19 12:56,"316 Main St, Los Angeles, CA 90001" +156292,AA Batteries (4-pack),2,3.84,01/19/19 22:26,"530 Highland St, San Francisco, CA 94016" +156293,USB-C Charging Cable,1,11.95,01/05/19 20:49,"322 Park St, Atlanta, GA 30301" +156294,USB-C Charging Cable,1,11.95,01/24/19 19:44,"518 7th St, Boston, MA 02215" +156295,Bose SoundSport Headphones,1,99.99,01/17/19 11:17,"21 Hickory St, Atlanta, GA 30301" +156296,AA Batteries (4-pack),2,3.84,01/17/19 23:45,"934 Jefferson St, Dallas, TX 75001" +156297,AAA Batteries (4-pack),1,2.99,01/26/19 02:14,"840 Center St, Atlanta, GA 30301" +156298,Wired Headphones,1,11.99,01/08/19 16:47,"560 Elm St, Boston, MA 02215" +156299,Wired Headphones,1,11.99,01/31/19 15:53,"581 Walnut St, San Francisco, CA 94016" +156300,Bose SoundSport Headphones,1,99.99,01/30/19 07:33,"961 Johnson St, Dallas, TX 75001" +156301,Flatscreen TV,1,300,01/11/19 16:33,"636 Highland St, Los Angeles, CA 90001" +156302,Wired Headphones,1,11.99,01/24/19 12:36,"898 South St, Boston, MA 02215" +156303,AAA Batteries (4-pack),1,2.99,01/25/19 11:13,"809 Adams St, New York City, NY 10001" +156304,AAA Batteries (4-pack),1,2.99,01/10/19 20:43,"403 Hill St, San Francisco, CA 94016" +156305,Bose SoundSport Headphones,1,99.99,01/16/19 15:44,"586 11th St, New York City, NY 10001" +156306,Apple Airpods Headphones,1,150,01/16/19 00:00,"479 10th St, Boston, MA 02215" +156307,AA Batteries (4-pack),1,3.84,01/05/19 22:37,"300 6th St, Portland, OR 97035" +156308,Bose SoundSport Headphones,1,99.99,01/14/19 17:48,"145 13th St, Boston, MA 02215" +156309,27in FHD Monitor,1,149.99,01/13/19 20:40,"472 Lincoln St, San Francisco, CA 94016" +156310,AAA Batteries (4-pack),2,2.99,01/22/19 13:10,"200 Highland St, New York City, NY 10001" +156311,AA Batteries (4-pack),2,3.84,01/08/19 18:43,"20 12th St, Los Angeles, CA 90001" +156312,AA Batteries (4-pack),1,3.84,01/07/19 15:36,"47 2nd St, Seattle, WA 98101" +156313,Bose SoundSport Headphones,1,99.99,01/17/19 17:50,"744 4th St, Atlanta, GA 30301" +156314,Bose SoundSport Headphones,1,99.99,01/12/19 00:18,"804 4th St, Seattle, WA 98101" +156315,AAA Batteries (4-pack),2,2.99,01/29/19 08:58,"374 North St, New York City, NY 10001" +156316,Bose SoundSport Headphones,1,99.99,01/31/19 17:35,"197 Main St, San Francisco, CA 94016" +156317,USB-C Charging Cable,1,11.95,01/24/19 15:49,"491 Pine St, Atlanta, GA 30301" +156318,Lightning Charging Cable,1,14.95,01/22/19 17:36,"840 5th St, Dallas, TX 75001" +156319,AA Batteries (4-pack),1,3.84,01/15/19 14:14,"681 Sunset St, Los Angeles, CA 90001" +156320,Google Phone,1,600,01/16/19 18:30,"517 Meadow St, Austin, TX 73301" +156320,USB-C Charging Cable,1,11.95,01/16/19 18:30,"517 Meadow St, Austin, TX 73301" +156321,27in FHD Monitor,1,149.99,01/09/19 12:21,"38 13th St, Atlanta, GA 30301" +156322,USB-C Charging Cable,1,11.95,01/04/19 12:00,"557 6th St, San Francisco, CA 94016" +156323,AA Batteries (4-pack),2,3.84,01/24/19 19:51,"578 Willow St, Los Angeles, CA 90001" +156324,Bose SoundSport Headphones,1,99.99,01/02/19 14:26,"736 Cedar St, Los Angeles, CA 90001" +156325,Wired Headphones,1,11.99,01/17/19 14:32,"673 Washington St, Seattle, WA 98101" +156326,27in FHD Monitor,1,149.99,01/31/19 08:18,"56 Wilson St, Boston, MA 02215" +156327,Bose SoundSport Headphones,1,99.99,01/23/19 18:48,"483 Highland St, Los Angeles, CA 90001" +156328,AAA Batteries (4-pack),5,2.99,01/09/19 13:34,"457 9th St, Los Angeles, CA 90001" +156329,34in Ultrawide Monitor,1,379.99,01/21/19 12:30,"345 8th St, San Francisco, CA 94016" +156330,Wired Headphones,1,11.99,01/14/19 20:56,"553 Lakeview St, Austin, TX 73301" +156331,Wired Headphones,1,11.99,01/06/19 21:09,"29 North St, Seattle, WA 98101" +156332,AA Batteries (4-pack),1,3.84,01/03/19 19:19,"292 Elm St, Los Angeles, CA 90001" +156333,Wired Headphones,1,11.99,01/10/19 21:11,"762 13th St, Los Angeles, CA 90001" +156334,Bose SoundSport Headphones,1,99.99,01/15/19 15:58,"283 North St, Los Angeles, CA 90001" +,,,,, +156335,Flatscreen TV,1,300,01/29/19 14:52,"352 Sunset St, Los Angeles, CA 90001" +156336,Wired Headphones,1,11.99,01/27/19 13:33,"981 8th St, New York City, NY 10001" +156337,AA Batteries (4-pack),1,3.84,02/01/19 03:14,"129 Lincoln St, Austin, TX 73301" +156338,iPhone,1,700,01/21/19 10:15,"71 Sunset St, San Francisco, CA 94016" +156339,Lightning Charging Cable,1,14.95,01/19/19 00:34,"1 West St, Los Angeles, CA 90001" +156340,Wired Headphones,1,11.99,01/06/19 20:23,"58 11th St, San Francisco, CA 94016" +156341,Apple Airpods Headphones,1,150,01/04/19 21:49,"539 4th St, Portland, ME 04101" +156342,USB-C Charging Cable,2,11.95,01/30/19 11:57,"760 14th St, Boston, MA 02215" +156343,Google Phone,1,600,01/09/19 16:49,"48 11th St, New York City, NY 10001" +156343,USB-C Charging Cable,1,11.95,01/09/19 16:49,"48 11th St, New York City, NY 10001" +156344,Wired Headphones,1,11.99,01/30/19 01:35,"464 Cherry St, San Francisco, CA 94016" +156345,USB-C Charging Cable,1,11.95,01/14/19 21:22,"617 Walnut St, San Francisco, CA 94016" +156346,Wired Headphones,1,11.99,01/07/19 15:12,"607 Chestnut St, San Francisco, CA 94016" +156347,27in FHD Monitor,1,149.99,01/18/19 11:42,"949 13th St, Dallas, TX 75001" +156348,Lightning Charging Cable,1,14.95,01/10/19 18:55,"878 Jefferson St, Los Angeles, CA 90001" +156349,20in Monitor,1,109.99,01/19/19 16:01,"370 Ridge St, New York City, NY 10001" +156350,Wired Headphones,1,11.99,01/19/19 15:33,"157 Church St, New York City, NY 10001" +156351,Wired Headphones,1,11.99,01/18/19 20:02,"557 10th St, San Francisco, CA 94016" +156352,AA Batteries (4-pack),3,3.84,01/30/19 14:10,"940 Highland St, San Francisco, CA 94016" +156353,Wired Headphones,1,11.99,01/28/19 08:02,"778 10th St, Los Angeles, CA 90001" +156354,Flatscreen TV,1,300,01/19/19 16:22,"778 North St, Austin, TX 73301" +156355,Google Phone,1,600,01/18/19 21:48,"578 Hill St, Boston, MA 02215" +156355,USB-C Charging Cable,2,11.95,01/18/19 21:48,"578 Hill St, Boston, MA 02215" +156356,Lightning Charging Cable,1,14.95,01/07/19 11:42,"688 Dogwood St, Los Angeles, CA 90001" +156357,27in FHD Monitor,1,149.99,01/10/19 19:33,"528 Lincoln St, Atlanta, GA 30301" +156358,27in 4K Gaming Monitor,1,389.99,01/22/19 08:15,"526 Cherry St, San Francisco, CA 94016" +156359,Wired Headphones,1,11.99,01/03/19 08:34,"299 Jackson St, Austin, TX 73301" +156360,Flatscreen TV,1,300,01/25/19 13:13,"154 Hill St, Boston, MA 02215" +156361,USB-C Charging Cable,1,11.95,01/09/19 20:58,"306 Center St, New York City, NY 10001" +156362,USB-C Charging Cable,1,11.95,01/25/19 22:26,"8 Johnson St, Atlanta, GA 30301" +156363,AA Batteries (4-pack),2,3.84,01/19/19 13:27,"930 Hill St, San Francisco, CA 94016" +156364,AAA Batteries (4-pack),1,2.99,01/24/19 01:31,"893 Madison St, San Francisco, CA 94016" +156365,LG Washing Machine,1,600.0,01/08/19 19:46,"504 Spruce St, Atlanta, GA 30301" +156365,USB-C Charging Cable,1,11.95,01/08/19 19:46,"504 Spruce St, Atlanta, GA 30301" +156366,Macbook Pro Laptop,1,1700,01/05/19 12:20,"906 4th St, Dallas, TX 75001" +156366,AA Batteries (4-pack),1,3.84,01/05/19 12:20,"906 4th St, Dallas, TX 75001" +156367,Wired Headphones,2,11.99,01/17/19 19:32,"305 Hill St, San Francisco, CA 94016" +156368,Lightning Charging Cable,1,14.95,01/07/19 14:40,"627 Jefferson St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +156369,Wired Headphones,1,11.99,01/18/19 08:43,"718 14th St, Portland, OR 97035" +156370,Lightning Charging Cable,1,14.95,01/25/19 14:35,"960 Sunset St, New York City, NY 10001" +156371,USB-C Charging Cable,1,11.95,01/30/19 19:44,"899 14th St, Boston, MA 02215" +156372,Lightning Charging Cable,1,14.95,01/12/19 10:00,"601 12th St, Los Angeles, CA 90001" +156373,Wired Headphones,1,11.99,01/02/19 15:10,"698 South St, Los Angeles, CA 90001" +156374,Wired Headphones,1,11.99,01/12/19 22:29,"845 Willow St, Austin, TX 73301" +156375,AAA Batteries (4-pack),2,2.99,01/31/19 18:11,"733 12th St, New York City, NY 10001" +156376,Lightning Charging Cable,1,14.95,01/06/19 11:44,"262 Willow St, New York City, NY 10001" +156377,Vareebadd Phone,1,400,01/03/19 18:00,"645 Cherry St, San Francisco, CA 94016" +156378,Bose SoundSport Headphones,1,99.99,01/10/19 15:15,"728 Spruce St, Portland, OR 97035" +156379,USB-C Charging Cable,1,11.95,01/30/19 11:09,"859 Dogwood St, Atlanta, GA 30301" +156380,AAA Batteries (4-pack),2,2.99,01/18/19 17:17,"557 Hill St, Austin, TX 73301" +156381,Macbook Pro Laptop,1,1700,01/09/19 12:23,"64 13th St, Boston, MA 02215" +156382,Google Phone,1,600,01/07/19 20:29,"770 4th St, Austin, TX 73301" +156382,USB-C Charging Cable,1,11.95,01/07/19 20:29,"770 4th St, Austin, TX 73301" +156383,AAA Batteries (4-pack),2,2.99,01/14/19 09:07,"105 Washington St, Los Angeles, CA 90001" +156384,27in FHD Monitor,1,149.99,01/13/19 08:42,"417 Walnut St, Seattle, WA 98101" +156385,AAA Batteries (4-pack),2,2.99,01/15/19 09:16,"204 12th St, San Francisco, CA 94016" +156386,Wired Headphones,1,11.99,01/28/19 21:51,"910 Spruce St, San Francisco, CA 94016" +156387,27in FHD Monitor,1,149.99,01/21/19 10:08,"176 South St, Portland, OR 97035" +156388,Google Phone,1,600,01/28/19 12:05,"850 Hickory St, Seattle, WA 98101" +156388,USB-C Charging Cable,1,11.95,01/28/19 12:05,"850 Hickory St, Seattle, WA 98101" +156389,AA Batteries (4-pack),1,3.84,01/13/19 11:29,"7 South St, Portland, OR 97035" +156390,LG Washing Machine,1,600.0,01/31/19 20:25,"18 Center St, Los Angeles, CA 90001" +156391,Bose SoundSport Headphones,1,99.99,01/13/19 10:54,"98 Forest St, Portland, OR 97035" +156392,AAA Batteries (4-pack),1,2.99,01/17/19 12:13,"542 9th St, New York City, NY 10001" +156393,Flatscreen TV,1,300,01/26/19 23:19,"789 Spruce St, Seattle, WA 98101" +156394,Macbook Pro Laptop,1,1700,01/30/19 11:56,"773 8th St, New York City, NY 10001" +156395,Lightning Charging Cable,1,14.95,01/05/19 07:29,"939 12th St, Atlanta, GA 30301" +156396,AAA Batteries (4-pack),1,2.99,01/15/19 22:00,"762 Wilson St, New York City, NY 10001" +156397,Apple Airpods Headphones,1,150,01/03/19 12:23,"920 Willow St, Portland, ME 04101" +156398,AA Batteries (4-pack),1,3.84,01/29/19 11:09,"389 Pine St, Los Angeles, CA 90001" +156399,Wired Headphones,1,11.99,01/26/19 22:20,"577 Jefferson St, Boston, MA 02215" +156400,Bose SoundSport Headphones,1,99.99,01/09/19 17:11,"217 Cedar St, New York City, NY 10001" +156401,34in Ultrawide Monitor,1,379.99,01/15/19 10:41,"224 Cherry St, Los Angeles, CA 90001" +156402,Lightning Charging Cable,1,14.95,01/22/19 11:50,"710 10th St, Dallas, TX 75001" +156403,Wired Headphones,2,11.99,01/18/19 20:13,"826 Adams St, San Francisco, CA 94016" +156404,Macbook Pro Laptop,1,1700,01/14/19 19:14,"761 Maple St, New York City, NY 10001" +156405,AA Batteries (4-pack),3,3.84,01/22/19 09:41,"793 4th St, San Francisco, CA 94016" +156406,Bose SoundSport Headphones,1,99.99,01/17/19 16:16,"766 5th St, San Francisco, CA 94016" +156407,AA Batteries (4-pack),1,3.84,01/02/19 20:20,"768 Lincoln St, Atlanta, GA 30301" +156408,Bose SoundSport Headphones,1,99.99,01/04/19 12:34,"51 Lake St, New York City, NY 10001" +156409,AA Batteries (4-pack),1,3.84,01/05/19 08:52,"410 Walnut St, New York City, NY 10001" +156410,AAA Batteries (4-pack),1,2.99,01/11/19 13:27,"478 8th St, San Francisco, CA 94016" +156411,AA Batteries (4-pack),2,3.84,01/28/19 17:38,"180 Main St, Dallas, TX 75001" +156412,Apple Airpods Headphones,1,150,01/24/19 20:14,"571 Wilson St, San Francisco, CA 94016" +156413,AA Batteries (4-pack),2,3.84,01/12/19 13:52,"338 Hill St, Dallas, TX 75001" +156414,AA Batteries (4-pack),1,3.84,01/13/19 19:07,"53 8th St, Los Angeles, CA 90001" +156415,Wired Headphones,1,11.99,01/02/19 20:16,"942 Elm St, Austin, TX 73301" +156416,USB-C Charging Cable,1,11.95,01/11/19 13:54,"401 Pine St, New York City, NY 10001" +156417,Apple Airpods Headphones,1,150,01/02/19 21:47,"454 North St, Los Angeles, CA 90001" +156418,Wired Headphones,1,11.99,01/24/19 10:53,"617 10th St, New York City, NY 10001" +156419,USB-C Charging Cable,1,11.95,01/18/19 20:36,"300 Main St, Dallas, TX 75001" +156420,Wired Headphones,1,11.99,01/04/19 07:43,"978 Johnson St, Portland, ME 04101" +156421,AAA Batteries (4-pack),1,2.99,01/19/19 15:19,"249 14th St, Portland, OR 97035" +156422,AA Batteries (4-pack),1,3.84,01/09/19 18:35,"346 Dogwood St, Dallas, TX 75001" +156423,34in Ultrawide Monitor,1,379.99,01/01/19 07:49,"757 South St, Los Angeles, CA 90001" +156424,Apple Airpods Headphones,1,150,01/26/19 11:54,"979 Highland St, San Francisco, CA 94016" +156425,AA Batteries (4-pack),1,3.84,01/31/19 15:02,"425 10th St, Atlanta, GA 30301" +156426,Wired Headphones,1,11.99,01/15/19 14:06,"37 Wilson St, Atlanta, GA 30301" +156427,AAA Batteries (4-pack),1,2.99,01/29/19 22:13,"64 Cedar St, Atlanta, GA 30301" +156428,Google Phone,1,600,01/21/19 18:55,"789 Center St, New York City, NY 10001" +156428,USB-C Charging Cable,1,11.95,01/21/19 18:55,"789 Center St, New York City, NY 10001" +156429,USB-C Charging Cable,1,11.95,01/22/19 12:26,"864 Center St, Los Angeles, CA 90001" +156430,Lightning Charging Cable,1,14.95,01/08/19 06:53,"852 13th St, Dallas, TX 75001" +156431,AA Batteries (4-pack),1,3.84,01/30/19 21:46,"94 11th St, Atlanta, GA 30301" +156432,Apple Airpods Headphones,1,150,01/11/19 15:42,"432 Jefferson St, Los Angeles, CA 90001" +156433,Wired Headphones,1,11.99,01/30/19 17:15,"192 Cherry St, New York City, NY 10001" +156434,Flatscreen TV,1,300,01/02/19 17:50,"179 Highland St, San Francisco, CA 94016" +156435,USB-C Charging Cable,1,11.95,01/07/19 01:17,"712 Chestnut St, Los Angeles, CA 90001" +156436,ThinkPad Laptop,1,999.99,01/20/19 07:33,"159 Pine St, New York City, NY 10001" +156437,Flatscreen TV,1,300,01/13/19 10:28,"988 Meadow St, Los Angeles, CA 90001" +156437,AA Batteries (4-pack),1,3.84,01/13/19 10:28,"988 Meadow St, Los Angeles, CA 90001" +156438,USB-C Charging Cable,1,11.95,01/16/19 10:04,"581 Johnson St, Los Angeles, CA 90001" +156438,34in Ultrawide Monitor,1,379.99,01/16/19 10:04,"581 Johnson St, Los Angeles, CA 90001" +156439,AA Batteries (4-pack),1,3.84,01/05/19 13:56,"989 7th St, San Francisco, CA 94016" +156440,AA Batteries (4-pack),1,3.84,01/16/19 07:56,"90 Lincoln St, San Francisco, CA 94016" +156441,Apple Airpods Headphones,1,150,01/29/19 21:10,"487 Johnson St, San Francisco, CA 94016" +156442,27in 4K Gaming Monitor,1,389.99,01/21/19 14:32,"639 River St, San Francisco, CA 94016" +156443,USB-C Charging Cable,1,11.95,01/22/19 16:52,"706 Sunset St, Seattle, WA 98101" +156444,LG Dryer,1,600.0,01/31/19 20:26,"157 Hill St, Dallas, TX 75001" +156445,Lightning Charging Cable,1,14.95,01/25/19 15:28,"413 Walnut St, New York City, NY 10001" +156446,AA Batteries (4-pack),1,3.84,01/12/19 22:34,"410 Madison St, New York City, NY 10001" +156447,Wired Headphones,1,11.99,01/10/19 15:53,"679 Lakeview St, Dallas, TX 75001" +156448,USB-C Charging Cable,1,11.95,01/25/19 19:48,"382 Hickory St, Seattle, WA 98101" +156449,AA Batteries (4-pack),2,3.84,01/24/19 13:04,"336 Pine St, San Francisco, CA 94016" +156449,Apple Airpods Headphones,1,150,01/24/19 13:04,"336 Pine St, San Francisco, CA 94016" +156450,Vareebadd Phone,1,400,01/20/19 20:34,"642 Jefferson St, New York City, NY 10001" +156451,20in Monitor,1,109.99,01/27/19 16:38,"943 Cedar St, Seattle, WA 98101" +156452,Wired Headphones,1,11.99,01/24/19 13:25,"96 Park St, Boston, MA 02215" +156453,20in Monitor,1,109.99,01/05/19 12:51,"230 Willow St, Los Angeles, CA 90001" +156454,Bose SoundSport Headphones,1,99.99,01/10/19 22:13,"743 Lake St, San Francisco, CA 94016" +156455,AA Batteries (4-pack),1,3.84,01/29/19 19:41,"652 Adams St, Los Angeles, CA 90001" +156456,AA Batteries (4-pack),1,3.84,01/23/19 13:14,"928 Pine St, Boston, MA 02215" +156457,Bose SoundSport Headphones,1,99.99,01/19/19 20:43,"544 2nd St, New York City, NY 10001" +156458,20in Monitor,1,109.99,01/20/19 05:00,"441 4th St, Seattle, WA 98101" +156458,Lightning Charging Cable,1,14.95,01/20/19 05:00,"441 4th St, Seattle, WA 98101" +156459,Lightning Charging Cable,1,14.95,01/25/19 08:11,"816 Lake St, Atlanta, GA 30301" +156460,Apple Airpods Headphones,1,150,01/18/19 19:03,"932 Lakeview St, Seattle, WA 98101" +156461,Vareebadd Phone,1,400,01/14/19 23:37,"144 Park St, San Francisco, CA 94016" +156462,AAA Batteries (4-pack),3,2.99,01/10/19 21:55,"277 Forest St, Boston, MA 02215" +156463,Bose SoundSport Headphones,1,99.99,01/21/19 06:44,"361 Hickory St, Los Angeles, CA 90001" +156464,Flatscreen TV,1,300,01/05/19 20:15,"437 Lincoln St, Dallas, TX 75001" +156465,Bose SoundSport Headphones,1,99.99,01/30/19 15:31,"297 8th St, New York City, NY 10001" +156466,Flatscreen TV,1,300,01/07/19 21:05,"517 5th St, Boston, MA 02215" +156467,Wired Headphones,1,11.99,01/22/19 17:56,"688 Wilson St, San Francisco, CA 94016" +156468,Apple Airpods Headphones,1,150,01/26/19 15:19,"641 Adams St, Los Angeles, CA 90001" +156469,iPhone,1,700,01/06/19 22:56,"336 Hill St, San Francisco, CA 94016" +156469,Lightning Charging Cable,1,14.95,01/06/19 22:56,"336 Hill St, San Francisco, CA 94016" +156470,USB-C Charging Cable,1,11.95,01/30/19 12:59,"329 Lincoln St, Portland, OR 97035" +156471,Lightning Charging Cable,1,14.95,01/20/19 12:35,"876 6th St, Los Angeles, CA 90001" +156471,Wired Headphones,1,11.99,01/20/19 12:35,"876 6th St, Los Angeles, CA 90001" +156472,Wired Headphones,1,11.99,01/19/19 06:09,"843 Cedar St, San Francisco, CA 94016" +156473,Wired Headphones,1,11.99,01/04/19 14:07,"632 Chestnut St, Boston, MA 02215" +156474,AAA Batteries (4-pack),1,2.99,01/20/19 14:07,"373 13th St, Los Angeles, CA 90001" +156475,USB-C Charging Cable,1,11.95,01/12/19 00:45,"521 Pine St, New York City, NY 10001" +156476,AAA Batteries (4-pack),1,2.99,01/10/19 15:06,"946 8th St, Los Angeles, CA 90001" +156476,AAA Batteries (4-pack),1,2.99,01/10/19 15:06,"946 8th St, Los Angeles, CA 90001" +156477,Apple Airpods Headphones,1,150,01/22/19 16:37,"310 Adams St, Atlanta, GA 30301" +156478,Flatscreen TV,1,300,01/03/19 08:45,"95 11th St, Boston, MA 02215" +156479,Lightning Charging Cable,1,14.95,01/18/19 18:23,"326 Ridge St, New York City, NY 10001" +156480,27in FHD Monitor,1,149.99,01/03/19 19:23,"431 Jefferson St, Dallas, TX 75001" +156481,Flatscreen TV,1,300,01/11/19 09:35,"290 Ridge St, Los Angeles, CA 90001" +156482,20in Monitor,1,109.99,01/26/19 16:05,"490 Pine St, Austin, TX 73301" +156483,USB-C Charging Cable,1,11.95,01/22/19 17:47,"75 Maple St, Portland, ME 04101" +156484,Google Phone,1,600,01/14/19 16:20,"967 Ridge St, Boston, MA 02215" +156485,Apple Airpods Headphones,1,150,01/21/19 22:22,"188 North St, New York City, NY 10001" +156486,Wired Headphones,1,11.99,01/14/19 12:23,"305 13th St, New York City, NY 10001" +156487,Lightning Charging Cable,1,14.95,01/05/19 11:13,"455 West St, Los Angeles, CA 90001" +156488,27in FHD Monitor,1,149.99,01/09/19 22:40,"973 4th St, Los Angeles, CA 90001" +156489,iPhone,1,700,01/27/19 22:03,"379 West St, San Francisco, CA 94016" +156490,34in Ultrawide Monitor,1,379.99,01/17/19 15:55,"364 5th St, Boston, MA 02215" +156491,USB-C Charging Cable,1,11.95,01/07/19 08:01,"851 Jackson St, Atlanta, GA 30301" +156491,Lightning Charging Cable,2,14.95,01/07/19 08:01,"851 Jackson St, Atlanta, GA 30301" +156492,Lightning Charging Cable,1,14.95,01/22/19 11:02,"630 Main St, Los Angeles, CA 90001" +156493,AA Batteries (4-pack),1,3.84,01/20/19 18:17,"638 1st St, San Francisco, CA 94016" +156494,Bose SoundSport Headphones,1,99.99,01/28/19 18:47,"796 5th St, San Francisco, CA 94016" +156495,Wired Headphones,1,11.99,01/03/19 09:56,"537 Park St, Boston, MA 02215" +156496,27in FHD Monitor,1,149.99,01/31/19 17:49,"51 10th St, Seattle, WA 98101" +156497,Bose SoundSport Headphones,1,99.99,01/26/19 19:25,"594 Jefferson St, Los Angeles, CA 90001" +156498,AAA Batteries (4-pack),2,2.99,01/05/19 07:39,"431 14th St, Los Angeles, CA 90001" +156499,ThinkPad Laptop,1,999.99,01/14/19 15:35,"21 Lake St, New York City, NY 10001" +156500,20in Monitor,1,109.99,01/20/19 18:00,"957 6th St, Dallas, TX 75001" +156501,Lightning Charging Cable,1,14.95,01/07/19 12:29,"58 Highland St, San Francisco, CA 94016" +156502,27in FHD Monitor,1,149.99,01/31/19 15:13,"409 Wilson St, Dallas, TX 75001" +156503,USB-C Charging Cable,1,11.95,01/24/19 14:15,"551 14th St, San Francisco, CA 94016" +156504,AAA Batteries (4-pack),1,2.99,01/27/19 23:22,"792 Lincoln St, Los Angeles, CA 90001" +156505,AAA Batteries (4-pack),1,2.99,01/22/19 22:42,"794 Sunset St, Boston, MA 02215" +156506,Lightning Charging Cable,1,14.95,01/12/19 11:57,"486 Adams St, San Francisco, CA 94016" +156507,AAA Batteries (4-pack),2,2.99,01/15/19 09:06,"587 9th St, San Francisco, CA 94016" +156508,34in Ultrawide Monitor,1,379.99,01/29/19 11:56,"786 2nd St, Dallas, TX 75001" +156509,iPhone,1,700,01/15/19 22:58,"998 14th St, Dallas, TX 75001" +156510,Macbook Pro Laptop,1,1700,01/14/19 12:18,"283 Jefferson St, San Francisco, CA 94016" +156511,Wired Headphones,1,11.99,01/30/19 15:33,"563 Ridge St, San Francisco, CA 94016" +156512,AA Batteries (4-pack),2,3.84,01/11/19 10:07,"440 Meadow St, Portland, OR 97035" +156513,Apple Airpods Headphones,1,150,01/19/19 16:43,"161 Center St, New York City, NY 10001" +156514,Apple Airpods Headphones,1,150,01/18/19 21:49,"90 Lake St, Los Angeles, CA 90001" +156514,Lightning Charging Cable,1,14.95,01/18/19 21:49,"90 Lake St, Los Angeles, CA 90001" +156515,Lightning Charging Cable,1,14.95,01/01/19 22:38,"112 Church St, Boston, MA 02215" +156516,Lightning Charging Cable,1,14.95,01/30/19 19:28,"323 Jefferson St, Los Angeles, CA 90001" +156517,Lightning Charging Cable,1,14.95,01/31/19 12:43,"411 9th St, Los Angeles, CA 90001" +156518,USB-C Charging Cable,1,11.95,01/20/19 23:11,"194 Wilson St, Seattle, WA 98101" +156519,USB-C Charging Cable,1,11.95,01/27/19 06:33,"259 1st St, Seattle, WA 98101" +156520,USB-C Charging Cable,1,11.95,01/09/19 20:58,"987 South St, Seattle, WA 98101" +156521,AAA Batteries (4-pack),1,2.99,01/04/19 11:41,"466 9th St, New York City, NY 10001" +156522,Bose SoundSport Headphones,1,99.99,01/16/19 15:15,"710 Hill St, Los Angeles, CA 90001" +156523,Google Phone,1,600,01/27/19 01:21,"965 Lakeview St, San Francisco, CA 94016" +156524,34in Ultrawide Monitor,1,379.99,01/19/19 12:38,"285 Main St, San Francisco, CA 94016" +156525,34in Ultrawide Monitor,1,379.99,01/03/19 11:47,"763 Lakeview St, Los Angeles, CA 90001" +156526,AA Batteries (4-pack),1,3.84,01/13/19 00:52,"513 Meadow St, Seattle, WA 98101" +156527,20in Monitor,1,109.99,01/01/19 16:32,"122 Chestnut St, Portland, ME 04101" +156528,AA Batteries (4-pack),1,3.84,01/24/19 12:11,"681 Dogwood St, San Francisco, CA 94016" +156529,AA Batteries (4-pack),2,3.84,01/25/19 09:27,"289 Lakeview St, Boston, MA 02215" +156530,USB-C Charging Cable,1,11.95,01/09/19 13:13,"904 Jackson St, Portland, ME 04101" +156531,Lightning Charging Cable,1,14.95,01/19/19 11:01,"889 4th St, Portland, OR 97035" +156532,Apple Airpods Headphones,1,150,01/21/19 17:54,"477 Washington St, Los Angeles, CA 90001" +156533,Bose SoundSport Headphones,1,99.99,01/16/19 18:10,"335 1st St, Atlanta, GA 30301" +156534,USB-C Charging Cable,1,11.95,01/04/19 10:59,"486 5th St, San Francisco, CA 94016" +156534,Lightning Charging Cable,1,14.95,01/04/19 10:59,"486 5th St, San Francisco, CA 94016" +156535,20in Monitor,1,109.99,01/14/19 20:15,"466 Elm St, Atlanta, GA 30301" +156536,Lightning Charging Cable,1,14.95,01/16/19 04:16,"663 5th St, New York City, NY 10001" +156537,Google Phone,1,600,01/01/19 09:06,"27 12th St, San Francisco, CA 94016" +156538,Google Phone,1,600,01/27/19 13:14,"765 Church St, San Francisco, CA 94016" +156539,Wired Headphones,1,11.99,01/02/19 13:26,"537 Meadow St, New York City, NY 10001" +156540,Google Phone,1,600,01/15/19 19:41,"33 Elm St, Atlanta, GA 30301" +156541,Lightning Charging Cable,1,14.95,01/20/19 18:57,"243 Lakeview St, Atlanta, GA 30301" +156542,Wired Headphones,1,11.99,01/07/19 10:44,"798 Spruce St, New York City, NY 10001" +156543,27in FHD Monitor,1,149.99,01/02/19 21:53,"675 Ridge St, Atlanta, GA 30301" +156544,AA Batteries (4-pack),1,3.84,01/12/19 20:00,"380 Park St, Boston, MA 02215" +156545,Bose SoundSport Headphones,1,99.99,01/15/19 11:57,"301 Cedar St, Portland, OR 97035" +156546,AAA Batteries (4-pack),1,2.99,01/03/19 18:29,"832 Johnson St, San Francisco, CA 94016" +156547,Apple Airpods Headphones,1,150,01/22/19 01:06,"81 Walnut St, Los Angeles, CA 90001" +156548,USB-C Charging Cable,2,11.95,01/24/19 12:35,"61 5th St, Portland, OR 97035" +156549,AAA Batteries (4-pack),1,2.99,01/06/19 09:40,"2 River St, Austin, TX 73301" +156550,AAA Batteries (4-pack),1,2.99,01/11/19 21:49,"15 Jefferson St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +156551,iPhone,1,700,01/11/19 14:13,"277 Elm St, Atlanta, GA 30301" +156552,20in Monitor,1,109.99,01/07/19 06:37,"312 West St, San Francisco, CA 94016" +156553,Wired Headphones,1,11.99,01/13/19 04:37,"716 Spruce St, New York City, NY 10001" +156554,27in FHD Monitor,1,149.99,01/28/19 15:46,"929 Pine St, Los Angeles, CA 90001" +156555,Bose SoundSport Headphones,1,99.99,01/14/19 21:19,"383 8th St, Portland, OR 97035" +156556,Macbook Pro Laptop,1,1700,01/24/19 11:14,"473 5th St, San Francisco, CA 94016" +156557,20in Monitor,1,109.99,01/11/19 16:16,"649 Lincoln St, Los Angeles, CA 90001" +156558,27in 4K Gaming Monitor,1,389.99,01/25/19 09:02,"191 Center St, Atlanta, GA 30301" +156559,Bose SoundSport Headphones,1,99.99,01/26/19 09:07,"824 Cherry St, Portland, OR 97035" +156560,AAA Batteries (4-pack),1,2.99,01/30/19 10:46,"466 13th St, San Francisco, CA 94016" +156561,Wired Headphones,1,11.99,01/06/19 09:53,"219 Spruce St, Los Angeles, CA 90001" +156562,AAA Batteries (4-pack),1,2.99,01/29/19 20:20,"724 10th St, Atlanta, GA 30301" +156563,Lightning Charging Cable,1,14.95,01/29/19 17:53,"499 Wilson St, Atlanta, GA 30301" +156564,27in FHD Monitor,1,149.99,01/20/19 16:53,"844 4th St, Boston, MA 02215" +156565,Lightning Charging Cable,1,14.95,01/29/19 11:30,"925 Lake St, Boston, MA 02215" +156566,Apple Airpods Headphones,1,150,01/04/19 20:50,"686 1st St, San Francisco, CA 94016" +156567,LG Dryer,1,600.0,01/15/19 10:34,"930 Cherry St, Atlanta, GA 30301" +156568,Bose SoundSport Headphones,1,99.99,01/12/19 06:40,"733 10th St, San Francisco, CA 94016" +156569,AA Batteries (4-pack),2,3.84,01/05/19 23:49,"260 Highland St, Austin, TX 73301" +156570,AA Batteries (4-pack),1,3.84,01/14/19 20:49,"321 Park St, Los Angeles, CA 90001" +156571,iPhone,1,700,01/02/19 10:48,"762 Johnson St, New York City, NY 10001" +156572,USB-C Charging Cable,1,11.95,01/24/19 00:41,"536 Washington St, Los Angeles, CA 90001" +156573,27in 4K Gaming Monitor,1,389.99,01/01/19 19:56,"982 Pine St, San Francisco, CA 94016" +156574,Wired Headphones,1,11.99,01/07/19 21:38,"142 4th St, Austin, TX 73301" +156575,Wired Headphones,1,11.99,01/05/19 16:45,"949 Dogwood St, San Francisco, CA 94016" +156576,AAA Batteries (4-pack),1,2.99,01/28/19 05:41,"515 13th St, New York City, NY 10001" +156577,Lightning Charging Cable,1,14.95,01/23/19 14:10,"544 9th St, San Francisco, CA 94016" +156578,27in 4K Gaming Monitor,1,389.99,01/28/19 21:29,"334 11th St, Seattle, WA 98101" +156579,Apple Airpods Headphones,1,150,01/21/19 11:06,"311 Wilson St, San Francisco, CA 94016" +156580,iPhone,1,700,01/04/19 09:31,"506 River St, San Francisco, CA 94016" +156580,Lightning Charging Cable,1,14.95,01/04/19 09:31,"506 River St, San Francisco, CA 94016" +156581,Wired Headphones,2,11.99,01/11/19 14:13,"645 Meadow St, Atlanta, GA 30301" +156582,AA Batteries (4-pack),1,3.84,01/11/19 19:06,"373 Cherry St, Dallas, TX 75001" +156583,USB-C Charging Cable,1,11.95,01/17/19 12:59,"578 Chestnut St, New York City, NY 10001" +156584,27in FHD Monitor,1,149.99,01/07/19 12:53,"619 10th St, Boston, MA 02215" +156585,ThinkPad Laptop,1,999.99,01/01/19 21:09,"870 6th St, New York City, NY 10001" +156586,Wired Headphones,1,11.99,01/05/19 01:14,"616 Spruce St, San Francisco, CA 94016" +156587,34in Ultrawide Monitor,1,379.99,01/24/19 11:00,"893 Chestnut St, San Francisco, CA 94016" +156588,iPhone,1,700,01/31/19 16:18,"532 Church St, Portland, ME 04101" +156589,ThinkPad Laptop,1,999.99,01/06/19 21:39,"54 Spruce St, Atlanta, GA 30301" +156589,USB-C Charging Cable,1,11.95,01/06/19 21:39,"54 Spruce St, Atlanta, GA 30301" +156590,AAA Batteries (4-pack),1,2.99,01/23/19 19:20,"990 Hickory St, Seattle, WA 98101" +156591,iPhone,1,700,01/12/19 12:18,"804 River St, Los Angeles, CA 90001" +156592,Google Phone,1,600,01/10/19 12:30,"506 12th St, Seattle, WA 98101" +156592,USB-C Charging Cable,1,11.95,01/10/19 12:30,"506 12th St, Seattle, WA 98101" +156593,Lightning Charging Cable,1,14.95,01/19/19 22:28,"403 5th St, New York City, NY 10001" +156594,Bose SoundSport Headphones,1,99.99,01/24/19 19:40,"669 9th St, San Francisco, CA 94016" +156595,AA Batteries (4-pack),1,3.84,01/08/19 20:55,"334 9th St, Dallas, TX 75001" +156596,Apple Airpods Headphones,1,150,01/08/19 17:09,"357 Spruce St, Austin, TX 73301" +156597,AAA Batteries (4-pack),1,2.99,01/10/19 11:21,"879 Hill St, Los Angeles, CA 90001" +156598,AAA Batteries (4-pack),2,2.99,01/11/19 11:41,"249 11th St, Los Angeles, CA 90001" +156599,Macbook Pro Laptop,1,1700,01/26/19 21:08,"408 Cedar St, New York City, NY 10001" +156600,AA Batteries (4-pack),2,3.84,01/06/19 14:15,"323 13th St, San Francisco, CA 94016" +156601,Bose SoundSport Headphones,1,99.99,01/23/19 16:55,"710 Jackson St, Portland, ME 04101" +156602,Wired Headphones,1,11.99,01/09/19 14:22,"151 10th St, Los Angeles, CA 90001" +156603,Flatscreen TV,1,300,01/18/19 16:06,"991 River St, New York City, NY 10001" +156604,20in Monitor,1,109.99,01/03/19 15:42,"869 1st St, Portland, OR 97035" +156605,27in FHD Monitor,1,149.99,01/05/19 11:02,"92 Hickory St, Portland, ME 04101" +156606,AAA Batteries (4-pack),1,2.99,01/21/19 14:54,"126 2nd St, Atlanta, GA 30301" +156607,Apple Airpods Headphones,1,150,01/27/19 08:19,"869 Sunset St, San Francisco, CA 94016" +156608,Apple Airpods Headphones,1,150,01/28/19 11:37,"933 Chestnut St, San Francisco, CA 94016" +156609,AAA Batteries (4-pack),1,2.99,01/12/19 13:52,"503 Lincoln St, Los Angeles, CA 90001" +156610,Macbook Pro Laptop,1,1700,01/02/19 07:58,"421 Johnson St, New York City, NY 10001" +156611,Apple Airpods Headphones,1,150,01/01/19 14:15,"551 2nd St, Portland, ME 04101" +156612,USB-C Charging Cable,1,11.95,01/14/19 22:39,"65 Willow St, Boston, MA 02215" +156613,27in 4K Gaming Monitor,1,389.99,01/10/19 09:56,"48 Park St, Dallas, TX 75001" +156614,USB-C Charging Cable,1,11.95,01/02/19 18:34,"955 14th St, San Francisco, CA 94016" +156614,AA Batteries (4-pack),1,3.84,01/02/19 18:34,"955 14th St, San Francisco, CA 94016" +156615,AAA Batteries (4-pack),1,2.99,01/06/19 22:55,"125 Cedar St, Boston, MA 02215" +156616,AA Batteries (4-pack),3,3.84,01/01/19 22:08,"141 13th St, San Francisco, CA 94016" +156617,USB-C Charging Cable,1,11.95,01/11/19 15:45,"866 South St, New York City, NY 10001" +156618,Lightning Charging Cable,1,14.95,01/25/19 22:43,"741 Cherry St, Seattle, WA 98101" +156619,Apple Airpods Headphones,1,150,01/29/19 20:42,"418 Jackson St, San Francisco, CA 94016" +156620,Macbook Pro Laptop,1,1700,01/01/19 22:38,"737 Hill St, Dallas, TX 75001" +156621,Vareebadd Phone,1,400,01/26/19 09:33,"246 Sunset St, Austin, TX 73301" +156622,Vareebadd Phone,1,400,01/22/19 14:40,"678 Adams St, Los Angeles, CA 90001" +156623,Lightning Charging Cable,1,14.95,01/13/19 17:55,"165 Lakeview St, San Francisco, CA 94016" +156624,Lightning Charging Cable,1,14.95,01/28/19 11:20,"479 River St, Los Angeles, CA 90001" +156625,Wired Headphones,1,11.99,01/24/19 07:24,"552 Dogwood St, New York City, NY 10001" +156626,USB-C Charging Cable,2,11.95,01/23/19 21:48,"779 Madison St, New York City, NY 10001" +156627,AA Batteries (4-pack),2,3.84,01/30/19 19:16,"613 South St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +156628,27in FHD Monitor,1,149.99,01/04/19 18:28,"562 Highland St, New York City, NY 10001" +156629,iPhone,1,700,01/10/19 12:09,"210 Jefferson St, San Francisco, CA 94016" +156630,USB-C Charging Cable,1,11.95,01/23/19 13:03,"778 14th St, San Francisco, CA 94016" +156631,USB-C Charging Cable,1,11.95,01/29/19 13:17,"295 Pine St, Boston, MA 02215" +156632,Bose SoundSport Headphones,1,99.99,01/17/19 19:02,"791 9th St, Seattle, WA 98101" +156633,USB-C Charging Cable,1,11.95,01/05/19 09:27,"149 Church St, San Francisco, CA 94016" +156634,iPhone,1,700,01/21/19 11:29,"742 Johnson St, San Francisco, CA 94016" +156635,Apple Airpods Headphones,1,150,01/12/19 18:10,"593 Chestnut St, San Francisco, CA 94016" +156636,27in 4K Gaming Monitor,1,389.99,01/29/19 14:11,"704 Highland St, Los Angeles, CA 90001" +156637,Apple Airpods Headphones,1,150,01/28/19 10:13,"182 Hill St, Boston, MA 02215" +156638,Flatscreen TV,1,300,01/14/19 11:42,"797 5th St, San Francisco, CA 94016" +156639,AAA Batteries (4-pack),1,2.99,01/15/19 00:39,"872 Cherry St, Portland, OR 97035" +156640,Macbook Pro Laptop,1,1700,01/14/19 13:11,"943 Elm St, San Francisco, CA 94016" +156641,27in 4K Gaming Monitor,1,389.99,01/24/19 18:37,"188 Jefferson St, Los Angeles, CA 90001" +156642,27in FHD Monitor,1,149.99,01/09/19 12:04,"598 Maple St, San Francisco, CA 94016" +156643,Lightning Charging Cable,1,14.95,01/12/19 23:14,"867 7th St, San Francisco, CA 94016" +156644,Wired Headphones,1,11.99,01/26/19 13:22,"67 Willow St, Atlanta, GA 30301" +156645,Lightning Charging Cable,1,14.95,01/28/19 23:45,"531 Jackson St, Boston, MA 02215" +156646,Bose SoundSport Headphones,1,99.99,01/06/19 18:15,"641 1st St, Seattle, WA 98101" +156647,Wired Headphones,1,11.99,01/11/19 01:53,"450 Hickory St, Seattle, WA 98101" +156648,AA Batteries (4-pack),1,3.84,01/06/19 00:03,"590 Sunset St, New York City, NY 10001" +156649,AA Batteries (4-pack),1,3.84,01/24/19 11:16,"714 Spruce St, Portland, OR 97035" +156650,Bose SoundSport Headphones,1,99.99,01/18/19 17:56,"819 Dogwood St, Austin, TX 73301" +156651,Lightning Charging Cable,1,14.95,01/23/19 12:14,"165 Park St, San Francisco, CA 94016" +156651,Wired Headphones,2,11.99,01/23/19 12:14,"165 Park St, San Francisco, CA 94016" +156652,27in 4K Gaming Monitor,1,389.99,01/17/19 14:27,"995 Johnson St, Atlanta, GA 30301" +156653,AAA Batteries (4-pack),1,2.99,01/02/19 15:36,"791 Madison St, Seattle, WA 98101" +156654,Wired Headphones,1,11.99,01/19/19 07:01,"763 Elm St, Portland, OR 97035" +156655,Wired Headphones,1,11.99,01/18/19 14:50,"520 10th St, Austin, TX 73301" +156656,20in Monitor,1,109.99,01/20/19 12:28,"102 Center St, Boston, MA 02215" +156657,Wired Headphones,1,11.99,01/24/19 15:27,"686 Main St, Los Angeles, CA 90001" +156658,27in 4K Gaming Monitor,1,389.99,01/27/19 17:57,"232 Jefferson St, Los Angeles, CA 90001" +156659,Wired Headphones,2,11.99,01/25/19 20:51,"267 12th St, Los Angeles, CA 90001" +156660,AAA Batteries (4-pack),1,2.99,01/28/19 21:32,"604 Jackson St, Boston, MA 02215" +156661,Apple Airpods Headphones,1,150,01/28/19 13:13,"212 Willow St, Austin, TX 73301" +156662,AA Batteries (4-pack),1,3.84,01/10/19 12:02,"838 Meadow St, New York City, NY 10001" +156663,Google Phone,1,600,01/04/19 09:06,"302 Jefferson St, Austin, TX 73301" +156664,LG Washing Machine,1,600.0,01/28/19 23:00,"377 5th St, Atlanta, GA 30301" +156665,Flatscreen TV,1,300,01/22/19 23:12,"262 4th St, Los Angeles, CA 90001" +156666,Apple Airpods Headphones,1,150,01/20/19 14:24,"802 Washington St, New York City, NY 10001" +156667,AAA Batteries (4-pack),1,2.99,01/20/19 11:00,"823 Park St, Los Angeles, CA 90001" +156668,27in FHD Monitor,1,149.99,01/03/19 15:10,"652 4th St, New York City, NY 10001" +156669,Lightning Charging Cable,1,14.95,01/16/19 17:15,"566 Lakeview St, Boston, MA 02215" +156670,Lightning Charging Cable,1,14.95,01/08/19 14:06,"734 6th St, Boston, MA 02215" +156670,AAA Batteries (4-pack),1,2.99,01/08/19 14:06,"734 6th St, Boston, MA 02215" +156671,27in 4K Gaming Monitor,1,389.99,01/04/19 16:32,"2 14th St, Los Angeles, CA 90001" +156672,Google Phone,1,600,01/08/19 16:16,"732 Forest St, Boston, MA 02215" +156673,Bose SoundSport Headphones,1,99.99,01/13/19 07:09,"698 Johnson St, Dallas, TX 75001" +156674,27in FHD Monitor,1,149.99,01/16/19 21:56,"668 Lincoln St, San Francisco, CA 94016" +156675,Google Phone,1,600,01/21/19 22:47,"59 Center St, Atlanta, GA 30301" +156676,AA Batteries (4-pack),2,3.84,01/08/19 18:01,"360 5th St, Dallas, TX 75001" +156677,USB-C Charging Cable,1,11.95,01/04/19 00:50,"472 Highland St, Dallas, TX 75001" +156678,Bose SoundSport Headphones,1,99.99,01/27/19 11:48,"480 Church St, Dallas, TX 75001" +156679,Lightning Charging Cable,1,14.95,01/03/19 16:15,"504 7th St, Los Angeles, CA 90001" +156680,Bose SoundSport Headphones,1,99.99,01/11/19 15:18,"854 8th St, New York City, NY 10001" +156681,Apple Airpods Headphones,1,150,01/12/19 14:11,"51 Lake St, Seattle, WA 98101" +156682,USB-C Charging Cable,1,11.95,01/01/19 18:37,"791 4th St, Dallas, TX 75001" +156683,Flatscreen TV,1,300,01/08/19 17:36,"475 Wilson St, Seattle, WA 98101" +156684,AA Batteries (4-pack),1,3.84,01/07/19 18:26,"507 Johnson St, Atlanta, GA 30301" +156685,AAA Batteries (4-pack),2,2.99,01/03/19 20:05,"852 Adams St, San Francisco, CA 94016" +156686,Lightning Charging Cable,1,14.95,01/29/19 09:59,"472 Jackson St, Dallas, TX 75001" +156687,AAA Batteries (4-pack),2,2.99,01/28/19 20:40,"997 11th St, New York City, NY 10001" +156688,Lightning Charging Cable,1,14.95,01/17/19 20:25,"331 North St, San Francisco, CA 94016" +156689,Lightning Charging Cable,1,14.95,01/15/19 16:37,"5 Park St, Los Angeles, CA 90001" +156690,AAA Batteries (4-pack),1,2.99,01/25/19 10:58,"543 Chestnut St, Dallas, TX 75001" +156691,34in Ultrawide Monitor,1,379.99,01/26/19 11:10,"892 4th St, San Francisco, CA 94016" +156692,AA Batteries (4-pack),2,3.84,01/19/19 20:29,"451 Park St, Dallas, TX 75001" +156693,Lightning Charging Cable,1,14.95,01/21/19 14:30,"300 Hickory St, Dallas, TX 75001" +156694,Lightning Charging Cable,2,14.95,01/31/19 22:23,"43 Hickory St, Seattle, WA 98101" +156695,USB-C Charging Cable,1,11.95,01/27/19 09:58,"267 River St, Seattle, WA 98101" +156696,Wired Headphones,1,11.99,01/01/19 16:31,"305 Lincoln St, San Francisco, CA 94016" +156697,USB-C Charging Cable,1,11.95,01/29/19 18:02,"93 Ridge St, Atlanta, GA 30301" +156698,34in Ultrawide Monitor,1,379.99,01/21/19 11:08,"415 6th St, San Francisco, CA 94016" +156699,AA Batteries (4-pack),1,3.84,01/01/19 10:26,"146 9th St, Dallas, TX 75001" +156700,Lightning Charging Cable,1,14.95,01/02/19 11:19,"911 South St, Dallas, TX 75001" +156701,27in FHD Monitor,1,149.99,01/01/19 13:52,"674 Madison St, San Francisco, CA 94016" +156702,20in Monitor,1,109.99,01/06/19 19:48,"207 Maple St, San Francisco, CA 94016" +156703,AA Batteries (4-pack),1,3.84,01/22/19 15:37,"809 Meadow St, San Francisco, CA 94016" +156703,Lightning Charging Cable,1,14.95,01/22/19 15:37,"809 Meadow St, San Francisco, CA 94016" +156704,Wired Headphones,1,11.99,01/01/19 12:40,"396 Madison St, New York City, NY 10001" +156705,AA Batteries (4-pack),1,3.84,01/05/19 15:01,"506 12th St, Seattle, WA 98101" +156706,USB-C Charging Cable,1,11.95,01/31/19 15:37,"264 Meadow St, Portland, OR 97035" +156707,Wired Headphones,1,11.99,01/29/19 03:57,"155 Center St, San Francisco, CA 94016" +156708,Flatscreen TV,1,300,01/17/19 21:37,"719 13th St, Los Angeles, CA 90001" +156709,Lightning Charging Cable,1,14.95,01/13/19 13:51,"591 Chestnut St, San Francisco, CA 94016" +156710,USB-C Charging Cable,1,11.95,01/20/19 18:16,"699 4th St, Boston, MA 02215" +156711,Bose SoundSport Headphones,1,99.99,01/27/19 13:03,"435 11th St, San Francisco, CA 94016" +156712,20in Monitor,1,109.99,01/31/19 14:34,"56 Park St, New York City, NY 10001" +156713,Flatscreen TV,1,300,01/29/19 14:34,"386 Willow St, Atlanta, GA 30301" +156714,Bose SoundSport Headphones,1,99.99,01/16/19 10:40,"447 Madison St, New York City, NY 10001" +156715,Lightning Charging Cable,1,14.95,01/09/19 20:48,"279 Walnut St, Austin, TX 73301" +156716,Macbook Pro Laptop,1,1700,01/03/19 18:27,"941 Jefferson St, Los Angeles, CA 90001" +156717,AAA Batteries (4-pack),2,2.99,01/31/19 10:32,"248 10th St, Boston, MA 02215" +156718,Lightning Charging Cable,1,14.95,01/09/19 17:23,"317 Hill St, Atlanta, GA 30301" +156719,Lightning Charging Cable,1,14.95,01/12/19 00:40,"290 13th St, San Francisco, CA 94016" +156720,Bose SoundSport Headphones,1,99.99,01/11/19 10:50,"585 Washington St, Atlanta, GA 30301" +156721,Lightning Charging Cable,1,14.95,01/29/19 16:55,"475 Walnut St, Los Angeles, CA 90001" +156722,AA Batteries (4-pack),2,3.84,01/03/19 21:09,"901 Wilson St, Atlanta, GA 30301" +156723,AA Batteries (4-pack),1,3.84,01/11/19 20:44,"274 14th St, Dallas, TX 75001" +156724,iPhone,1,700,01/05/19 17:00,"204 9th St, Los Angeles, CA 90001" +156725,USB-C Charging Cable,1,11.95,01/14/19 14:04,"88 5th St, Portland, OR 97035" +156726,Google Phone,1,600,01/27/19 21:53,"113 Dogwood St, Atlanta, GA 30301" +156726,USB-C Charging Cable,1,11.95,01/27/19 21:53,"113 Dogwood St, Atlanta, GA 30301" +156727,34in Ultrawide Monitor,1,379.99,01/22/19 17:46,"974 Pine St, San Francisco, CA 94016" +156728,Apple Airpods Headphones,1,150,01/08/19 10:37,"960 Jefferson St, Boston, MA 02215" +156729,20in Monitor,1,109.99,01/23/19 22:17,"581 Center St, Dallas, TX 75001" +156730,Lightning Charging Cable,1,14.95,01/25/19 10:26,"972 Pine St, Seattle, WA 98101" +156731,Lightning Charging Cable,1,14.95,01/23/19 19:10,"603 Madison St, San Francisco, CA 94016" +156732,USB-C Charging Cable,1,11.95,01/26/19 20:09,"506 Dogwood St, Los Angeles, CA 90001" +156733,ThinkPad Laptop,1,999.99,01/22/19 09:02,"760 North St, Los Angeles, CA 90001" +156734,27in 4K Gaming Monitor,1,389.99,01/19/19 11:20,"3 Park St, Atlanta, GA 30301" +156735,Wired Headphones,1,11.99,01/19/19 13:45,"274 River St, Portland, ME 04101" +156736,Wired Headphones,1,11.99,01/25/19 20:16,"721 Church St, San Francisco, CA 94016" +156736,Vareebadd Phone,1,400,01/25/19 20:16,"721 Church St, San Francisco, CA 94016" +156737,Google Phone,1,600,01/03/19 09:34,"434 Chestnut St, Atlanta, GA 30301" +156738,iPhone,1,700,01/08/19 11:08,"962 13th St, San Francisco, CA 94016" +156738,Lightning Charging Cable,1,14.95,01/08/19 11:08,"962 13th St, San Francisco, CA 94016" +156739,34in Ultrawide Monitor,1,379.99,01/09/19 10:17,"6 Elm St, Austin, TX 73301" +156740,Wired Headphones,1,11.99,01/17/19 18:39,"705 Wilson St, Dallas, TX 75001" +156741,Macbook Pro Laptop,1,1700,01/03/19 13:29,"475 Cedar St, Boston, MA 02215" +156742,USB-C Charging Cable,1,11.95,01/08/19 00:06,"755 Hill St, San Francisco, CA 94016" +156743,Wired Headphones,1,11.99,01/20/19 12:04,"365 Ridge St, Boston, MA 02215" +156744,USB-C Charging Cable,1,11.95,01/14/19 08:24,"580 Johnson St, Atlanta, GA 30301" +156745,Flatscreen TV,1,300,01/31/19 11:18,"680 6th St, Portland, ME 04101" +156746,Lightning Charging Cable,1,14.95,01/23/19 13:24,"799 Johnson St, San Francisco, CA 94016" +156747,Bose SoundSport Headphones,1,99.99,01/22/19 23:36,"504 Church St, Austin, TX 73301" +156748,AA Batteries (4-pack),1,3.84,01/11/19 09:27,"250 Spruce St, Austin, TX 73301" +156749,34in Ultrawide Monitor,1,379.99,01/14/19 21:28,"253 Cedar St, San Francisco, CA 94016" +156750,Bose SoundSport Headphones,1,99.99,01/29/19 15:23,"245 Lake St, San Francisco, CA 94016" +156751,Flatscreen TV,1,300,01/13/19 22:03,"882 Jackson St, Los Angeles, CA 90001" +156752,27in 4K Gaming Monitor,1,389.99,01/16/19 13:43,"360 Cedar St, Boston, MA 02215" +156753,USB-C Charging Cable,1,11.95,01/09/19 11:25,"634 Dogwood St, New York City, NY 10001" +156754,27in FHD Monitor,1,149.99,01/06/19 10:51,"486 14th St, San Francisco, CA 94016" +156755,AAA Batteries (4-pack),1,2.99,01/13/19 00:04,"566 Pine St, Los Angeles, CA 90001" +156756,27in 4K Gaming Monitor,1,389.99,01/23/19 11:21,"63 Hill St, Atlanta, GA 30301" +156757,Lightning Charging Cable,1,14.95,01/12/19 18:03,"686 Madison St, Los Angeles, CA 90001" +156758,Wired Headphones,2,11.99,01/20/19 11:05,"280 Cherry St, San Francisco, CA 94016" +156759,Bose SoundSport Headphones,1,99.99,01/16/19 12:35,"339 Johnson St, Austin, TX 73301" +156760,iPhone,1,700,01/15/19 09:42,"999 Maple St, Atlanta, GA 30301" +156760,Wired Headphones,1,11.99,01/15/19 09:42,"999 Maple St, Atlanta, GA 30301" +156760,USB-C Charging Cable,1,11.95,01/15/19 09:42,"999 Maple St, Atlanta, GA 30301" +156761,iPhone,1,700,01/06/19 14:02,"608 River St, New York City, NY 10001" +156761,Lightning Charging Cable,1,14.95,01/06/19 14:02,"608 River St, New York City, NY 10001" +156762,Lightning Charging Cable,2,14.95,01/25/19 18:53,"54 Lincoln St, Los Angeles, CA 90001" +156763,ThinkPad Laptop,1,999.99,01/08/19 19:54,"502 Adams St, Portland, OR 97035" +156764,ThinkPad Laptop,1,999.99,01/25/19 06:21,"824 Adams St, San Francisco, CA 94016" +156765,Lightning Charging Cable,1,14.95,01/31/19 08:20,"147 River St, Portland, ME 04101" +156766,Wired Headphones,1,11.99,01/12/19 18:45,"352 Cherry St, Los Angeles, CA 90001" +156767,Google Phone,1,600,01/28/19 10:40,"473 Lakeview St, Portland, OR 97035" +156768,USB-C Charging Cable,1,11.95,01/30/19 13:17,"694 7th St, Seattle, WA 98101" +156769,Wired Headphones,1,11.99,01/26/19 19:42,"796 South St, San Francisco, CA 94016" +156770,Lightning Charging Cable,1,14.95,01/02/19 21:40,"190 Cedar St, Boston, MA 02215" +156771,USB-C Charging Cable,2,11.95,01/28/19 22:17,"166 Lakeview St, Seattle, WA 98101" +156772,AA Batteries (4-pack),1,3.84,01/15/19 14:23,"56 Center St, New York City, NY 10001" +156773,20in Monitor,1,109.99,01/04/19 12:45,"206 12th St, New York City, NY 10001" +156774,20in Monitor,1,109.99,01/24/19 19:15,"114 Jackson St, Los Angeles, CA 90001" +156775,Lightning Charging Cable,1,14.95,01/30/19 23:53,"789 South St, San Francisco, CA 94016" +156776,USB-C Charging Cable,1,11.95,01/22/19 09:51,"5 Highland St, Los Angeles, CA 90001" +,,,,, +156777,27in 4K Gaming Monitor,1,389.99,01/18/19 00:01,"868 Willow St, Boston, MA 02215" +156778,Apple Airpods Headphones,1,150,01/17/19 18:15,"547 Church St, Boston, MA 02215" +156779,AA Batteries (4-pack),1,3.84,01/24/19 11:41,"249 Madison St, San Francisco, CA 94016" +156780,Wired Headphones,1,11.99,01/19/19 15:30,"101 Willow St, New York City, NY 10001" +156781,AA Batteries (4-pack),1,3.84,01/19/19 11:09,"928 Lake St, Los Angeles, CA 90001" +156782,Macbook Pro Laptop,1,1700,01/07/19 17:28,"949 10th St, San Francisco, CA 94016" +156783,Lightning Charging Cable,1,14.95,01/11/19 21:26,"337 River St, Dallas, TX 75001" +156784,iPhone,1,700,01/24/19 14:25,"566 Spruce St, Los Angeles, CA 90001" +156785,Apple Airpods Headphones,1,150,01/24/19 17:07,"75 South St, Boston, MA 02215" +156786,Macbook Pro Laptop,1,1700,01/29/19 08:51,"527 Main St, Dallas, TX 75001" +156787,AAA Batteries (4-pack),1,2.99,01/12/19 07:37,"922 Hill St, Seattle, WA 98101" +156788,USB-C Charging Cable,1,11.95,01/12/19 11:33,"626 13th St, Boston, MA 02215" +156789,34in Ultrawide Monitor,1,379.99,01/27/19 16:32,"510 Elm St, San Francisco, CA 94016" +156790,AAA Batteries (4-pack),1,2.99,01/05/19 16:14,"310 4th St, Seattle, WA 98101" +156791,AAA Batteries (4-pack),1,2.99,01/23/19 13:52,"531 10th St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +156792,34in Ultrawide Monitor,1,379.99,01/05/19 12:05,"817 12th St, Atlanta, GA 30301" +156793,Apple Airpods Headphones,1,150,01/31/19 09:47,"567 Sunset St, Los Angeles, CA 90001" +156794,Wired Headphones,1,11.99,01/13/19 11:52,"233 12th St, San Francisco, CA 94016" +156795,AA Batteries (4-pack),1,3.84,01/10/19 15:41,"49 13th St, San Francisco, CA 94016" +156796,Apple Airpods Headphones,1,150,01/16/19 15:15,"206 Pine St, Dallas, TX 75001" +156797,Lightning Charging Cable,1,14.95,01/28/19 10:52,"694 Maple St, San Francisco, CA 94016" +156797,Lightning Charging Cable,1,14.95,01/28/19 10:52,"694 Maple St, San Francisco, CA 94016" +156798,Lightning Charging Cable,1,14.95,01/07/19 11:12,"447 14th St, Portland, OR 97035" +156799,Apple Airpods Headphones,1,150,01/05/19 09:18,"756 13th St, Los Angeles, CA 90001" +156800,AAA Batteries (4-pack),1,2.99,01/04/19 12:41,"644 Johnson St, San Francisco, CA 94016" +156801,Google Phone,1,600,01/02/19 11:58,"955 West St, New York City, NY 10001" +156802,iPhone,1,700,01/07/19 17:31,"499 Meadow St, Portland, OR 97035" +156803,Bose SoundSport Headphones,1,99.99,01/11/19 13:42,"496 5th St, Los Angeles, CA 90001" +156804,AAA Batteries (4-pack),1,2.99,01/26/19 21:53,"818 Forest St, Dallas, TX 75001" +156805,USB-C Charging Cable,1,11.95,01/06/19 20:30,"145 Spruce St, Portland, OR 97035" +156806,AA Batteries (4-pack),2,3.84,01/12/19 17:10,"674 1st St, New York City, NY 10001" +156807,AA Batteries (4-pack),1,3.84,01/30/19 13:40,"495 Meadow St, Austin, TX 73301" +156808,AA Batteries (4-pack),1,3.84,01/02/19 14:22,"87 Lakeview St, Los Angeles, CA 90001" +156809,USB-C Charging Cable,1,11.95,01/21/19 09:37,"388 Spruce St, New York City, NY 10001" +156810,AAA Batteries (4-pack),2,2.99,01/26/19 16:05,"597 Hill St, San Francisco, CA 94016" +156811,iPhone,1,700,01/28/19 22:04,"558 5th St, Boston, MA 02215" +156812,34in Ultrawide Monitor,1,379.99,01/06/19 16:04,"477 Adams St, San Francisco, CA 94016" +156813,Macbook Pro Laptop,1,1700,01/27/19 11:17,"990 6th St, Dallas, TX 75001" +156814,Bose SoundSport Headphones,1,99.99,01/10/19 21:49,"861 9th St, San Francisco, CA 94016" +156815,Bose SoundSport Headphones,1,99.99,01/12/19 14:11,"337 Wilson St, San Francisco, CA 94016" +156816,AAA Batteries (4-pack),2,2.99,01/22/19 16:49,"212 Walnut St, Dallas, TX 75001" +156817,ThinkPad Laptop,1,999.99,01/14/19 20:17,"352 2nd St, New York City, NY 10001" +156818,USB-C Charging Cable,1,11.95,01/28/19 14:09,"582 Meadow St, Boston, MA 02215" +156819,Wired Headphones,1,11.99,01/31/19 18:30,"892 12th St, Portland, OR 97035" +156820,AAA Batteries (4-pack),2,2.99,01/18/19 01:05,"927 Hickory St, Boston, MA 02215" +156821,iPhone,1,700,01/23/19 22:16,"852 12th St, San Francisco, CA 94016" +156821,Lightning Charging Cable,1,14.95,01/23/19 22:16,"852 12th St, San Francisco, CA 94016" +156822,USB-C Charging Cable,1,11.95,01/25/19 17:20,"530 Jefferson St, San Francisco, CA 94016" +156823,34in Ultrawide Monitor,1,379.99,01/20/19 02:46,"319 Hickory St, New York City, NY 10001" +156824,AAA Batteries (4-pack),1,2.99,01/29/19 18:06,"192 Maple St, Atlanta, GA 30301" +156825,Wired Headphones,1,11.99,01/22/19 12:25,"945 11th St, Portland, OR 97035" +156826,Wired Headphones,1,11.99,01/07/19 22:36,"414 8th St, Austin, TX 73301" +156827,AAA Batteries (4-pack),1,2.99,01/10/19 03:09,"415 Hickory St, Portland, OR 97035" +156828,Bose SoundSport Headphones,1,99.99,01/06/19 11:12,"118 Adams St, San Francisco, CA 94016" +156829,Lightning Charging Cable,1,14.95,01/08/19 05:08,"568 Highland St, San Francisco, CA 94016" +156830,Lightning Charging Cable,1,14.95,01/26/19 17:38,"160 Chestnut St, Los Angeles, CA 90001" +156831,Apple Airpods Headphones,1,150,01/27/19 22:17,"797 Center St, Los Angeles, CA 90001" +156832,USB-C Charging Cable,1,11.95,01/19/19 18:59,"40 13th St, Portland, ME 04101" +156833,USB-C Charging Cable,1,11.95,01/14/19 09:57,"13 West St, New York City, NY 10001" +156834,Flatscreen TV,1,300,01/29/19 18:25,"132 Jefferson St, Portland, ME 04101" +156835,20in Monitor,1,109.99,01/21/19 18:33,"179 Park St, Los Angeles, CA 90001" +156836,iPhone,1,700,01/18/19 17:57,"910 9th St, Los Angeles, CA 90001" +156836,Wired Headphones,1,11.99,01/18/19 17:57,"910 9th St, Los Angeles, CA 90001" +156837,Apple Airpods Headphones,1,150,01/30/19 11:20,"322 10th St, Dallas, TX 75001" +156838,AAA Batteries (4-pack),1,2.99,01/21/19 13:29,"803 South St, San Francisco, CA 94016" +156839,USB-C Charging Cable,1,11.95,01/31/19 12:59,"371 Wilson St, Austin, TX 73301" +156840,Apple Airpods Headphones,1,150,01/15/19 17:31,"62 13th St, Los Angeles, CA 90001" +156841,AA Batteries (4-pack),3,3.84,01/27/19 22:30,"739 Wilson St, Dallas, TX 75001" +156842,Wired Headphones,1,11.99,01/30/19 18:29,"539 Forest St, Los Angeles, CA 90001" +156843,Bose SoundSport Headphones,1,99.99,01/21/19 07:38,"709 Walnut St, San Francisco, CA 94016" +156844,Lightning Charging Cable,1,14.95,01/10/19 17:25,"758 Sunset St, Atlanta, GA 30301" +156845,USB-C Charging Cable,1,11.95,01/29/19 22:34,"262 Walnut St, Dallas, TX 75001" +156846,Wired Headphones,1,11.99,01/24/19 07:32,"948 Washington St, Los Angeles, CA 90001" +156847,Lightning Charging Cable,1,14.95,01/11/19 21:14,"62 14th St, Seattle, WA 98101" +156848,34in Ultrawide Monitor,1,379.99,01/21/19 07:45,"117 Ridge St, Boston, MA 02215" +156849,iPhone,1,700,01/01/19 19:58,"530 Pine St, New York City, NY 10001" +156850,Lightning Charging Cable,1,14.95,01/19/19 22:25,"563 South St, Atlanta, GA 30301" +156851,Macbook Pro Laptop,1,1700,01/29/19 13:15,"323 1st St, Austin, TX 73301" +156852,AA Batteries (4-pack),1,3.84,01/03/19 12:02,"263 Dogwood St, Boston, MA 02215" +,,,,, +156853,AA Batteries (4-pack),3,3.84,01/21/19 10:58,"573 1st St, Seattle, WA 98101" +156854,Wired Headphones,1,11.99,01/27/19 13:50,"830 9th St, New York City, NY 10001" +156855,AAA Batteries (4-pack),1,2.99,01/01/19 21:43,"653 Ridge St, Los Angeles, CA 90001" +156856,Bose SoundSport Headphones,1,99.99,01/25/19 17:00,"877 12th St, Austin, TX 73301" +156857,Flatscreen TV,1,300,01/20/19 18:17,"957 4th St, Seattle, WA 98101" +156858,27in FHD Monitor,1,149.99,01/15/19 10:36,"536 5th St, Portland, OR 97035" +156859,iPhone,1,700,01/04/19 14:01,"275 6th St, Los Angeles, CA 90001" +156860,Wired Headphones,1,11.99,01/04/19 10:11,"207 North St, Austin, TX 73301" +156861,Vareebadd Phone,1,400,01/13/19 07:03,"650 Wilson St, Los Angeles, CA 90001" +156861,Wired Headphones,1,11.99,01/13/19 07:03,"650 Wilson St, Los Angeles, CA 90001" +156861,Wired Headphones,1,11.99,01/13/19 07:03,"650 Wilson St, Los Angeles, CA 90001" +,,,,, +156862,iPhone,1,700,01/09/19 19:02,"332 Church St, New York City, NY 10001" +156862,Apple Airpods Headphones,1,150,01/09/19 19:02,"332 Church St, New York City, NY 10001" +156863,20in Monitor,1,109.99,01/24/19 20:02,"691 River St, San Francisco, CA 94016" +156864,Lightning Charging Cable,1,14.95,01/03/19 01:51,"784 Elm St, Boston, MA 02215" +156865,Apple Airpods Headphones,1,150,01/14/19 06:42,"311 Maple St, Atlanta, GA 30301" +156866,Macbook Pro Laptop,1,1700,01/01/19 15:27,"354 Meadow St, Atlanta, GA 30301" +156867,Bose SoundSport Headphones,1,99.99,01/01/19 14:34,"753 7th St, Portland, OR 97035" +156868,Wired Headphones,1,11.99,01/03/19 20:47,"371 8th St, Boston, MA 02215" +156869,Wired Headphones,1,11.99,01/26/19 12:05,"803 7th St, Boston, MA 02215" +156870,iPhone,1,700,01/29/19 14:32,"685 10th St, San Francisco, CA 94016" +156870,Apple Airpods Headphones,1,150,01/29/19 14:32,"685 10th St, San Francisco, CA 94016" +156871,AAA Batteries (4-pack),2,2.99,01/28/19 17:36,"271 14th St, Portland, OR 97035" +156872,Lightning Charging Cable,1,14.95,01/29/19 22:05,"674 Wilson St, Los Angeles, CA 90001" +156873,AA Batteries (4-pack),2,3.84,01/11/19 19:53,"194 7th St, Seattle, WA 98101" +156874,USB-C Charging Cable,1,11.95,01/07/19 07:15,"930 Washington St, Dallas, TX 75001" +156875,27in FHD Monitor,1,149.99,01/04/19 17:20,"705 Lake St, Los Angeles, CA 90001" +156876,Wired Headphones,1,11.99,01/02/19 17:34,"245 Church St, Boston, MA 02215" +156877,AA Batteries (4-pack),1,3.84,01/11/19 11:41,"697 10th St, San Francisco, CA 94016" +156877,AAA Batteries (4-pack),1,2.99,01/11/19 11:41,"697 10th St, San Francisco, CA 94016" +156878,AA Batteries (4-pack),2,3.84,01/23/19 16:16,"500 Lincoln St, San Francisco, CA 94016" +156879,iPhone,1,700,01/13/19 19:25,"398 Sunset St, New York City, NY 10001" +156880,34in Ultrawide Monitor,1,379.99,01/29/19 23:47,"886 14th St, Boston, MA 02215" +156881,AA Batteries (4-pack),1,3.84,01/03/19 20:20,"128 2nd St, San Francisco, CA 94016" +156882,AA Batteries (4-pack),2,3.84,01/05/19 07:51,"972 River St, Atlanta, GA 30301" +156883,20in Monitor,1,109.99,01/03/19 03:22,"156 1st St, New York City, NY 10001" +156884,USB-C Charging Cable,1,11.95,01/13/19 03:06,"462 Wilson St, San Francisco, CA 94016" +156885,Lightning Charging Cable,1,14.95,01/08/19 06:02,"4 Spruce St, Los Angeles, CA 90001" +156886,AAA Batteries (4-pack),1,2.99,01/21/19 22:13,"997 Lake St, Dallas, TX 75001" +156887,27in FHD Monitor,1,149.99,01/16/19 12:18,"447 Pine St, Atlanta, GA 30301" +156888,iPhone,1,700,01/25/19 22:45,"399 Sunset St, Boston, MA 02215" +156889,34in Ultrawide Monitor,1,379.99,01/12/19 13:46,"830 10th St, New York City, NY 10001" +156890,20in Monitor,1,109.99,01/11/19 12:15,"397 Chestnut St, Los Angeles, CA 90001" +156891,AAA Batteries (4-pack),1,2.99,01/12/19 06:14,"837 Johnson St, Los Angeles, CA 90001" +156892,AA Batteries (4-pack),2,3.84,01/16/19 01:48,"83 Meadow St, Portland, OR 97035" +156893,Flatscreen TV,1,300,01/03/19 17:53,"637 5th St, Los Angeles, CA 90001" +156894,Bose SoundSport Headphones,1,99.99,01/02/19 12:17,"939 1st St, New York City, NY 10001" +156895,Macbook Pro Laptop,1,1700,01/19/19 23:22,"269 Madison St, Seattle, WA 98101" +156896,ThinkPad Laptop,1,999.99,01/22/19 12:13,"571 Elm St, San Francisco, CA 94016" +156897,Apple Airpods Headphones,1,150,01/31/19 06:58,"237 12th St, Atlanta, GA 30301" +156898,USB-C Charging Cable,1,11.95,01/10/19 14:53,"589 Elm St, San Francisco, CA 94016" +156899,USB-C Charging Cable,1,11.95,01/29/19 13:44,"636 Lake St, Atlanta, GA 30301" +156900,AA Batteries (4-pack),1,3.84,01/21/19 23:31,"76 Chestnut St, Los Angeles, CA 90001" +156901,34in Ultrawide Monitor,1,379.99,01/02/19 22:03,"252 6th St, San Francisco, CA 94016" +156902,Wired Headphones,1,11.99,01/02/19 10:20,"896 6th St, Los Angeles, CA 90001" +156903,Google Phone,1,600,01/01/19 14:14,"807 Adams St, Seattle, WA 98101" +156903,USB-C Charging Cable,1,11.95,01/01/19 14:14,"807 Adams St, Seattle, WA 98101" +156904,Apple Airpods Headphones,1,150,01/07/19 19:38,"659 Sunset St, Atlanta, GA 30301" +156905,27in FHD Monitor,1,149.99,01/04/19 11:03,"405 Pine St, Dallas, TX 75001" +156906,AAA Batteries (4-pack),1,2.99,01/24/19 23:16,"529 Meadow St, New York City, NY 10001" +156907,Apple Airpods Headphones,1,150,01/03/19 07:46,"898 Lincoln St, Boston, MA 02215" +156908,Bose SoundSport Headphones,1,99.99,01/12/19 12:04,"748 10th St, Boston, MA 02215" +156909,AAA Batteries (4-pack),1,2.99,01/29/19 13:49,"450 Pine St, Portland, OR 97035" +156910,AA Batteries (4-pack),1,3.84,01/19/19 22:54,"924 Johnson St, Boston, MA 02215" +156911,Lightning Charging Cable,1,14.95,01/13/19 15:44,"962 Chestnut St, Los Angeles, CA 90001" +156912,Lightning Charging Cable,2,14.95,01/30/19 11:04,"945 1st St, Boston, MA 02215" +156913,USB-C Charging Cable,1,11.95,01/22/19 18:10,"932 Pine St, New York City, NY 10001" +156914,ThinkPad Laptop,1,999.99,01/08/19 14:08,"347 North St, Boston, MA 02215" +156915,27in FHD Monitor,1,149.99,01/08/19 10:33,"538 Madison St, San Francisco, CA 94016" +156916,AA Batteries (4-pack),2,3.84,01/22/19 19:05,"4 12th St, San Francisco, CA 94016" +156917,20in Monitor,1,109.99,01/18/19 20:15,"573 Ridge St, San Francisco, CA 94016" +156918,Apple Airpods Headphones,1,150,01/11/19 14:39,"695 5th St, San Francisco, CA 94016" +156919,Bose SoundSport Headphones,1,99.99,01/04/19 01:35,"787 13th St, Atlanta, GA 30301" +156920,Lightning Charging Cable,1,14.95,01/21/19 16:19,"202 5th St, Portland, ME 04101" +156921,Wired Headphones,1,11.99,01/26/19 02:11,"529 Madison St, Austin, TX 73301" +156922,Macbook Pro Laptop,1,1700,01/16/19 10:01,"349 Meadow St, Seattle, WA 98101" +156923,Apple Airpods Headphones,1,150,01/26/19 20:40,"858 6th St, Los Angeles, CA 90001" +156924,Lightning Charging Cable,1,14.95,01/18/19 14:07,"909 Jackson St, Los Angeles, CA 90001" +156925,AAA Batteries (4-pack),1,2.99,01/13/19 19:36,"888 Washington St, San Francisco, CA 94016" +156926,Bose SoundSport Headphones,1,99.99,01/22/19 21:33,"746 5th St, Los Angeles, CA 90001" +156927,Lightning Charging Cable,1,14.95,01/13/19 00:50,"993 Johnson St, Portland, OR 97035" +156928,iPhone,1,700,01/20/19 17:58,"524 Willow St, San Francisco, CA 94016" +156929,Lightning Charging Cable,1,14.95,01/28/19 14:39,"721 Main St, Portland, OR 97035" +156930,Apple Airpods Headphones,1,150,01/12/19 23:16,"756 1st St, Austin, TX 73301" +156931,34in Ultrawide Monitor,1,379.99,01/13/19 21:20,"226 South St, San Francisco, CA 94016" +156932,20in Monitor,1,109.99,01/24/19 09:38,"615 13th St, Los Angeles, CA 90001" +156933,Flatscreen TV,1,300,01/24/19 08:58,"692 Jackson St, New York City, NY 10001" +156934,AAA Batteries (4-pack),1,2.99,01/20/19 20:48,"457 Spruce St, New York City, NY 10001" +156935,Wired Headphones,1,11.99,01/17/19 10:27,"278 Pine St, Los Angeles, CA 90001" +156936,iPhone,1,700,01/24/19 18:00,"149 Jackson St, Los Angeles, CA 90001" +156937,Wired Headphones,1,11.99,01/11/19 11:46,"5 Elm St, San Francisco, CA 94016" +156938,AAA Batteries (4-pack),3,2.99,01/14/19 17:38,"586 River St, Los Angeles, CA 90001" +156939,27in 4K Gaming Monitor,1,389.99,01/15/19 15:52,"455 12th St, Portland, ME 04101" +156940,Apple Airpods Headphones,1,150,01/21/19 00:20,"401 North St, Los Angeles, CA 90001" +156941,Wired Headphones,1,11.99,01/29/19 07:47,"142 Forest St, San Francisco, CA 94016" +156942,34in Ultrawide Monitor,2,379.99,01/12/19 18:50,"353 Church St, San Francisco, CA 94016" +156943,AAA Batteries (4-pack),1,2.99,01/31/19 19:08,"13 Jefferson St, Seattle, WA 98101" +156944,27in 4K Gaming Monitor,1,389.99,01/13/19 11:50,"262 Madison St, San Francisco, CA 94016" +156945,iPhone,1,700,01/24/19 14:34,"814 Lake St, Portland, OR 97035" +156946,AAA Batteries (4-pack),2,2.99,01/18/19 23:55,"371 1st St, Los Angeles, CA 90001" +156947,27in 4K Gaming Monitor,1,389.99,01/13/19 05:57,"981 Willow St, New York City, NY 10001" +156948,27in FHD Monitor,1,149.99,01/10/19 11:08,"590 Elm St, San Francisco, CA 94016" +156949,USB-C Charging Cable,1,11.95,01/11/19 13:05,"502 Dogwood St, San Francisco, CA 94016" +156950,Wired Headphones,1,11.99,01/27/19 13:59,"718 Lincoln St, Atlanta, GA 30301" +156951,USB-C Charging Cable,1,11.95,01/22/19 13:58,"535 Jackson St, San Francisco, CA 94016" +156952,iPhone,1,700,01/24/19 22:19,"408 Highland St, New York City, NY 10001" +156953,Macbook Pro Laptop,1,1700,01/14/19 15:17,"267 14th St, Los Angeles, CA 90001" +156954,AA Batteries (4-pack),1,3.84,01/21/19 11:00,"481 Lake St, Dallas, TX 75001" +156955,34in Ultrawide Monitor,1,379.99,01/27/19 13:22,"56 Cedar St, San Francisco, CA 94016" +156955,Wired Headphones,2,11.99,01/27/19 13:22,"56 Cedar St, San Francisco, CA 94016" +156956,Google Phone,1,600,01/22/19 14:34,"352 Sunset St, San Francisco, CA 94016" +156957,USB-C Charging Cable,1,11.95,01/05/19 23:23,"194 1st St, Los Angeles, CA 90001" +156958,Lightning Charging Cable,1,14.95,01/30/19 23:37,"486 Pine St, New York City, NY 10001" +156959,AAA Batteries (4-pack),2,2.99,01/12/19 14:30,"769 5th St, Seattle, WA 98101" +156960,iPhone,1,700,01/02/19 22:29,"749 Main St, San Francisco, CA 94016" +156960,Lightning Charging Cable,1,14.95,01/02/19 22:29,"749 Main St, San Francisco, CA 94016" +156961,ThinkPad Laptop,1,999.99,01/06/19 10:46,"239 Maple St, San Francisco, CA 94016" +156962,Wired Headphones,1,11.99,01/03/19 10:41,"852 11th St, Los Angeles, CA 90001" +156963,27in FHD Monitor,1,149.99,01/10/19 22:42,"516 Forest St, New York City, NY 10001" +156964,AA Batteries (4-pack),2,3.84,01/24/19 09:16,"887 Washington St, Los Angeles, CA 90001" +156965,AAA Batteries (4-pack),2,2.99,01/25/19 15:54,"656 Elm St, Portland, OR 97035" +156966,Bose SoundSport Headphones,1,99.99,01/25/19 23:20,"126 12th St, San Francisco, CA 94016" +156967,AA Batteries (4-pack),1,3.84,01/05/19 21:27,"733 North St, Atlanta, GA 30301" +156968,AAA Batteries (4-pack),1,2.99,01/02/19 19:11,"307 Maple St, Los Angeles, CA 90001" +156969,iPhone,1,700,01/16/19 02:13,"207 Forest St, Atlanta, GA 30301" +156970,Wired Headphones,1,11.99,01/04/19 21:01,"637 Center St, Atlanta, GA 30301" +156971,USB-C Charging Cable,1,11.95,01/08/19 09:33,"283 Pine St, New York City, NY 10001" +156972,AAA Batteries (4-pack),1,2.99,01/15/19 16:43,"612 8th St, San Francisco, CA 94016" +156973,Apple Airpods Headphones,1,150,01/23/19 11:20,"529 12th St, Boston, MA 02215" +156974,AAA Batteries (4-pack),3,2.99,01/04/19 13:22,"18 Hill St, New York City, NY 10001" +156975,Lightning Charging Cable,1,14.95,01/07/19 08:54,"564 Jefferson St, Atlanta, GA 30301" +156976,Wired Headphones,1,11.99,01/03/19 20:49,"393 Jefferson St, Boston, MA 02215" +156977,27in 4K Gaming Monitor,1,389.99,01/23/19 08:29,"162 4th St, Portland, OR 97035" +156978,Flatscreen TV,1,300,01/17/19 12:10,"377 2nd St, San Francisco, CA 94016" +156979,USB-C Charging Cable,1,11.95,01/19/19 17:40,"311 Dogwood St, San Francisco, CA 94016" +156980,Lightning Charging Cable,1,14.95,01/03/19 12:07,"895 10th St, Portland, OR 97035" +156981,AA Batteries (4-pack),1,3.84,01/18/19 12:39,"801 Meadow St, San Francisco, CA 94016" +156982,Apple Airpods Headphones,1,150,01/10/19 13:47,"682 Wilson St, Seattle, WA 98101" +156983,20in Monitor,1,109.99,01/10/19 14:03,"326 11th St, Seattle, WA 98101" +156984,Lightning Charging Cable,1,14.95,01/20/19 19:45,"992 Ridge St, New York City, NY 10001" +156985,Apple Airpods Headphones,1,150,01/26/19 19:14,"737 Washington St, Los Angeles, CA 90001" +156986,Vareebadd Phone,1,400,01/07/19 10:07,"297 West St, Austin, TX 73301" +156987,Google Phone,1,600,01/11/19 08:34,"319 9th St, Austin, TX 73301" +156988,ThinkPad Laptop,1,999.99,01/13/19 08:48,"761 7th St, San Francisco, CA 94016" +156989,Lightning Charging Cable,1,14.95,01/21/19 10:41,"283 Lincoln St, Portland, OR 97035" +156989,Lightning Charging Cable,1,14.95,01/21/19 10:41,"283 Lincoln St, Portland, OR 97035" +156990,USB-C Charging Cable,1,11.95,01/10/19 12:28,"324 Pine St, Los Angeles, CA 90001" +156991,Bose SoundSport Headphones,1,99.99,01/14/19 11:31,"361 6th St, San Francisco, CA 94016" +156992,Wired Headphones,1,11.99,01/05/19 20:40,"7 Highland St, San Francisco, CA 94016" +156993,Wired Headphones,1,11.99,01/03/19 19:06,"414 South St, Boston, MA 02215" +156994,USB-C Charging Cable,2,11.95,01/17/19 20:23,"892 Sunset St, Seattle, WA 98101" +156995,Bose SoundSport Headphones,1,99.99,01/09/19 17:19,"608 Jefferson St, Dallas, TX 75001" +156996,ThinkPad Laptop,1,999.99,01/24/19 10:29,"968 Lake St, New York City, NY 10001" +156997,USB-C Charging Cable,1,11.95,01/05/19 14:47,"459 Sunset St, New York City, NY 10001" +156998,AAA Batteries (4-pack),4,2.99,01/23/19 16:06,"148 Willow St, Los Angeles, CA 90001" +156999,AA Batteries (4-pack),1,3.84,01/10/19 00:47,"277 Lakeview St, San Francisco, CA 94016" +157000,Vareebadd Phone,1,400,01/07/19 13:59,"5 13th St, Los Angeles, CA 90001" +157001,USB-C Charging Cable,1,11.95,01/06/19 12:21,"486 Sunset St, New York City, NY 10001" +157002,AAA Batteries (4-pack),1,2.99,01/31/19 20:29,"721 Park St, San Francisco, CA 94016" +157003,AA Batteries (4-pack),1,3.84,01/14/19 18:57,"923 Hill St, Los Angeles, CA 90001" +157004,Lightning Charging Cable,1,14.95,01/10/19 11:13,"452 Ridge St, San Francisco, CA 94016" +157004,Wired Headphones,1,11.99,01/10/19 11:13,"452 Ridge St, San Francisco, CA 94016" +157005,Apple Airpods Headphones,1,150,01/22/19 11:46,"894 South St, San Francisco, CA 94016" +157006,Apple Airpods Headphones,1,150,01/09/19 12:11,"59 Washington St, Atlanta, GA 30301" +157007,AA Batteries (4-pack),2,3.84,01/04/19 15:58,"385 7th St, San Francisco, CA 94016" +157008,AAA Batteries (4-pack),2,2.99,01/27/19 00:32,"924 8th St, Portland, OR 97035" +157009,Bose SoundSport Headphones,1,99.99,01/30/19 18:16,"432 7th St, Austin, TX 73301" +157010,AA Batteries (4-pack),1,3.84,01/19/19 15:29,"599 Church St, Boston, MA 02215" +157011,Apple Airpods Headphones,1,150,01/17/19 13:25,"620 Adams St, Atlanta, GA 30301" +157012,Bose SoundSport Headphones,1,99.99,01/10/19 19:38,"865 South St, San Francisco, CA 94016" +157013,AA Batteries (4-pack),1,3.84,01/26/19 21:00,"504 Lakeview St, Los Angeles, CA 90001" +157014,AA Batteries (4-pack),2,3.84,01/01/19 15:39,"258 Pine St, Dallas, TX 75001" +157015,AAA Batteries (4-pack),2,2.99,01/06/19 13:21,"615 Sunset St, Los Angeles, CA 90001" +157016,Lightning Charging Cable,1,14.95,01/31/19 12:05,"678 8th St, Atlanta, GA 30301" +157017,Lightning Charging Cable,1,14.95,01/04/19 11:03,"512 Chestnut St, Seattle, WA 98101" +157018,Wired Headphones,1,11.99,01/24/19 14:25,"193 Willow St, San Francisco, CA 94016" +157019,27in 4K Gaming Monitor,1,389.99,01/10/19 21:24,"244 11th St, Austin, TX 73301" +157020,Wired Headphones,1,11.99,01/24/19 14:29,"891 Maple St, San Francisco, CA 94016" +157021,AAA Batteries (4-pack),1,2.99,01/12/19 10:24,"207 North St, San Francisco, CA 94016" +157022,Bose SoundSport Headphones,1,99.99,01/31/19 16:12,"331 Spruce St, New York City, NY 10001" +157023,ThinkPad Laptop,1,999.99,01/18/19 15:02,"400 7th St, Los Angeles, CA 90001" +157024,Bose SoundSport Headphones,2,99.99,01/25/19 12:02,"166 Walnut St, New York City, NY 10001" +157025,USB-C Charging Cable,1,11.95,01/27/19 19:57,"999 Park St, Los Angeles, CA 90001" +157026,AA Batteries (4-pack),1,3.84,01/12/19 17:42,"849 Park St, San Francisco, CA 94016" +157027,Bose SoundSport Headphones,1,99.99,01/23/19 16:46,"49 Jackson St, New York City, NY 10001" +157028,Wired Headphones,1,11.99,01/20/19 10:55,"717 10th St, Boston, MA 02215" +157029,AAA Batteries (4-pack),2,2.99,01/10/19 01:04,"104 2nd St, Dallas, TX 75001" +157030,Apple Airpods Headphones,1,150,01/13/19 17:22,"897 Pine St, Boston, MA 02215" +157031,Apple Airpods Headphones,1,150,02/01/19 00:07,"842 Dogwood St, New York City, NY 10001" +157032,Wired Headphones,1,11.99,01/30/19 15:28,"316 Spruce St, Austin, TX 73301" +157033,Lightning Charging Cable,1,14.95,01/03/19 16:17,"971 Cherry St, Atlanta, GA 30301" +157034,USB-C Charging Cable,1,11.95,01/22/19 22:17,"590 Maple St, Atlanta, GA 30301" +157035,Wired Headphones,1,11.99,01/13/19 14:34,"26 1st St, New York City, NY 10001" +157036,Vareebadd Phone,1,400,01/16/19 21:53,"715 Hill St, San Francisco, CA 94016" +157037,Bose SoundSport Headphones,1,99.99,01/04/19 21:14,"204 Chestnut St, San Francisco, CA 94016" +157038,USB-C Charging Cable,1,11.95,01/21/19 21:38,"470 9th St, Seattle, WA 98101" +157039,Macbook Pro Laptop,1,1700,01/29/19 11:56,"292 Forest St, San Francisco, CA 94016" +157040,27in FHD Monitor,1,149.99,01/12/19 14:30,"97 Adams St, San Francisco, CA 94016" +157041,Wired Headphones,1,11.99,01/04/19 13:16,"101 Forest St, Boston, MA 02215" +157042,Apple Airpods Headphones,1,150,01/30/19 23:37,"973 Dogwood St, New York City, NY 10001" +157043,27in FHD Monitor,1,149.99,01/10/19 23:10,"549 8th St, Los Angeles, CA 90001" +157044,USB-C Charging Cable,1,11.95,01/15/19 23:41,"838 7th St, Atlanta, GA 30301" +157045,Apple Airpods Headphones,1,150,01/29/19 08:37,"348 Park St, New York City, NY 10001" +157046,USB-C Charging Cable,1,11.95,01/14/19 16:08,"565 Spruce St, Los Angeles, CA 90001" +157047,Macbook Pro Laptop,1,1700,01/26/19 08:48,"615 7th St, New York City, NY 10001" +157048,27in FHD Monitor,1,149.99,01/17/19 22:34,"771 South St, New York City, NY 10001" +157049,Apple Airpods Headphones,1,150,01/26/19 22:30,"41 Dogwood St, New York City, NY 10001" +157050,Wired Headphones,1,11.99,01/13/19 20:26,"125 Washington St, Atlanta, GA 30301" +157051,AA Batteries (4-pack),1,3.84,01/12/19 17:16,"233 11th St, Los Angeles, CA 90001" +157052,Lightning Charging Cable,1,14.95,01/03/19 17:41,"207 Johnson St, Los Angeles, CA 90001" +157053,USB-C Charging Cable,1,11.95,01/12/19 11:46,"744 1st St, New York City, NY 10001" +157054,Apple Airpods Headphones,1,150,01/25/19 11:45,"243 1st St, Boston, MA 02215" +157055,AAA Batteries (4-pack),1,2.99,01/19/19 23:24,"692 2nd St, Seattle, WA 98101" +157056,Lightning Charging Cable,1,14.95,01/19/19 18:35,"670 Highland St, Portland, OR 97035" +157057,AA Batteries (4-pack),1,3.84,01/25/19 13:43,"334 Pine St, San Francisco, CA 94016" +157058,iPhone,1,700,01/22/19 10:11,"623 6th St, New York City, NY 10001" +157059,AA Batteries (4-pack),1,3.84,01/18/19 14:42,"647 Center St, Portland, OR 97035" +157060,Lightning Charging Cable,1,14.95,01/14/19 11:06,"289 Lincoln St, Seattle, WA 98101" +157061,AA Batteries (4-pack),1,3.84,01/14/19 11:48,"484 Jackson St, Portland, OR 97035" +157062,USB-C Charging Cable,1,11.95,01/16/19 12:14,"867 Lakeview St, San Francisco, CA 94016" +157063,USB-C Charging Cable,2,11.95,01/21/19 15:04,"584 Maple St, Los Angeles, CA 90001" +157064,Flatscreen TV,1,300,01/30/19 17:10,"638 6th St, Boston, MA 02215" +157065,27in 4K Gaming Monitor,1,389.99,01/26/19 16:14,"315 2nd St, New York City, NY 10001" +157066,Bose SoundSport Headphones,1,99.99,01/01/19 20:31,"589 West St, Los Angeles, CA 90001" +157067,USB-C Charging Cable,2,11.95,01/18/19 00:08,"501 1st St, San Francisco, CA 94016" +157068,Macbook Pro Laptop,1,1700,01/09/19 19:43,"411 4th St, Boston, MA 02215" +157069,Bose SoundSport Headphones,1,99.99,01/10/19 12:15,"765 Forest St, Dallas, TX 75001" +157070,Lightning Charging Cable,1,14.95,01/05/19 11:03,"4 Elm St, Dallas, TX 75001" +157070,Wired Headphones,1,11.99,01/05/19 11:03,"4 Elm St, Dallas, TX 75001" +157071,Bose SoundSport Headphones,1,99.99,01/18/19 17:03,"24 Jefferson St, San Francisco, CA 94016" +157072,AA Batteries (4-pack),2,3.84,01/17/19 21:57,"310 Maple St, Portland, OR 97035" +157073,27in 4K Gaming Monitor,1,389.99,01/25/19 02:24,"653 Washington St, Austin, TX 73301" +157074,Wired Headphones,1,11.99,01/13/19 18:28,"141 Washington St, Atlanta, GA 30301" +157075,Bose SoundSport Headphones,1,99.99,01/21/19 01:42,"150 1st St, Los Angeles, CA 90001" +157076,Wired Headphones,2,11.99,01/24/19 15:45,"300 10th St, Atlanta, GA 30301" +157077,AA Batteries (4-pack),1,3.84,01/20/19 13:18,"869 Jefferson St, New York City, NY 10001" +157078,AA Batteries (4-pack),1,3.84,01/05/19 15:52,"298 4th St, San Francisco, CA 94016" +157078,Apple Airpods Headphones,1,150,01/05/19 15:52,"298 4th St, San Francisco, CA 94016" +157079,AA Batteries (4-pack),2,3.84,01/09/19 18:46,"716 Hickory St, Dallas, TX 75001" +157080,Wired Headphones,1,11.99,01/14/19 15:51,"130 River St, Dallas, TX 75001" +157081,Apple Airpods Headphones,1,150,01/25/19 19:28,"417 Dogwood St, Austin, TX 73301" +157082,USB-C Charging Cable,1,11.95,01/18/19 18:06,"348 5th St, Austin, TX 73301" +157083,Bose SoundSport Headphones,1,99.99,01/13/19 17:07,"929 8th St, Seattle, WA 98101" +157084,iPhone,1,700,01/13/19 20:35,"912 Hickory St, New York City, NY 10001" +157085,Lightning Charging Cable,1,14.95,01/06/19 10:51,"706 8th St, Boston, MA 02215" +157086,ThinkPad Laptop,1,999.99,01/25/19 05:10,"494 Lakeview St, San Francisco, CA 94016" +157087,Apple Airpods Headphones,1,150,01/15/19 12:29,"1 Washington St, Boston, MA 02215" +157088,Lightning Charging Cable,1,14.95,01/17/19 23:00,"84 Hickory St, Dallas, TX 75001" +157089,27in FHD Monitor,1,149.99,01/17/19 18:16,"830 Cherry St, San Francisco, CA 94016" +157090,Flatscreen TV,1,300,01/25/19 12:59,"680 Dogwood St, Portland, OR 97035" +157091,20in Monitor,1,109.99,01/26/19 01:28,"417 13th St, San Francisco, CA 94016" +157092,Bose SoundSport Headphones,1,99.99,01/10/19 21:32,"139 14th St, Dallas, TX 75001" +157093,Wired Headphones,1,11.99,01/23/19 22:03,"618 Maple St, New York City, NY 10001" +157094,Lightning Charging Cable,1,14.95,01/15/19 19:42,"4 4th St, Portland, OR 97035" +157095,Apple Airpods Headphones,1,150,01/20/19 12:31,"488 11th St, Dallas, TX 75001" +157096,20in Monitor,1,109.99,01/18/19 13:50,"404 Spruce St, Austin, TX 73301" +157097,Wired Headphones,1,11.99,01/14/19 20:18,"71 Maple St, San Francisco, CA 94016" +157098,Apple Airpods Headphones,1,150,01/23/19 19:20,"491 Wilson St, Seattle, WA 98101" +157099,AAA Batteries (4-pack),1,2.99,01/27/19 01:32,"735 Dogwood St, Boston, MA 02215" +157100,Apple Airpods Headphones,1,150,01/13/19 18:01,"726 Jackson St, Dallas, TX 75001" +157101,USB-C Charging Cable,1,11.95,01/31/19 10:44,"630 Park St, Los Angeles, CA 90001" +157102,Lightning Charging Cable,1,14.95,01/22/19 18:10,"359 Sunset St, New York City, NY 10001" +157103,AA Batteries (4-pack),3,3.84,01/09/19 12:55,"291 Park St, San Francisco, CA 94016" +157104,27in FHD Monitor,1,149.99,01/14/19 19:09,"506 Johnson St, New York City, NY 10001" +157105,AA Batteries (4-pack),2,3.84,01/28/19 13:32,"620 Madison St, Portland, OR 97035" +157106,USB-C Charging Cable,1,11.95,01/03/19 16:54,"768 West St, San Francisco, CA 94016" +157107,USB-C Charging Cable,1,11.95,01/23/19 19:36,"519 Main St, San Francisco, CA 94016" +157108,Lightning Charging Cable,1,14.95,01/01/19 11:54,"214 Elm St, New York City, NY 10001" +157109,Apple Airpods Headphones,1,150,01/28/19 22:55,"81 North St, Austin, TX 73301" +157110,Lightning Charging Cable,1,14.95,01/09/19 18:07,"575 1st St, Los Angeles, CA 90001" +157111,AAA Batteries (4-pack),1,2.99,01/27/19 06:50,"642 Maple St, Boston, MA 02215" +157112,Wired Headphones,1,11.99,01/12/19 12:30,"495 Jackson St, Boston, MA 02215" +157113,Apple Airpods Headphones,1,150,01/28/19 18:11,"906 Center St, Los Angeles, CA 90001" +157114,AA Batteries (4-pack),2,3.84,01/25/19 14:31,"144 4th St, San Francisco, CA 94016" +157115,AAA Batteries (4-pack),1,2.99,01/10/19 23:51,"171 Cherry St, Seattle, WA 98101" +157116,iPhone,1,700,01/11/19 09:12,"533 Elm St, Seattle, WA 98101" +157117,iPhone,1,700,01/02/19 08:10,"540 9th St, San Francisco, CA 94016" +157118,AAA Batteries (4-pack),2,2.99,01/25/19 10:56,"22 Chestnut St, Dallas, TX 75001" +157119,Flatscreen TV,1,300,01/12/19 12:39,"55 Cedar St, New York City, NY 10001" +157120,USB-C Charging Cable,1,11.95,01/12/19 10:00,"666 Jefferson St, New York City, NY 10001" +157121,Lightning Charging Cable,1,14.95,01/23/19 13:25,"619 Lincoln St, New York City, NY 10001" +157122,iPhone,1,700,01/30/19 15:18,"985 Adams St, San Francisco, CA 94016" +157122,Apple Airpods Headphones,1,150,01/30/19 15:18,"985 Adams St, San Francisco, CA 94016" +157123,ThinkPad Laptop,1,999.99,01/20/19 11:01,"122 2nd St, Los Angeles, CA 90001" +157124,34in Ultrawide Monitor,1,379.99,01/24/19 19:53,"650 Park St, Atlanta, GA 30301" +157125,34in Ultrawide Monitor,1,379.99,01/05/19 00:09,"844 5th St, San Francisco, CA 94016" +157126,LG Washing Machine,1,600.0,01/13/19 08:58,"466 Church St, Seattle, WA 98101" +157127,AAA Batteries (4-pack),1,2.99,01/26/19 21:57,"886 North St, San Francisco, CA 94016" +157128,Bose SoundSport Headphones,1,99.99,01/09/19 18:51,"403 Main St, Seattle, WA 98101" +157129,Apple Airpods Headphones,1,150,01/31/19 20:51,"59 Chestnut St, San Francisco, CA 94016" +157130,AA Batteries (4-pack),2,3.84,01/17/19 09:25,"384 Forest St, Los Angeles, CA 90001" +157131,Flatscreen TV,1,300,01/27/19 09:12,"414 Sunset St, San Francisco, CA 94016" +157131,Google Phone,1,600,01/27/19 09:12,"414 Sunset St, San Francisco, CA 94016" +157132,Apple Airpods Headphones,1,150,01/18/19 01:28,"206 Chestnut St, Boston, MA 02215" +157133,Wired Headphones,1,11.99,01/28/19 05:51,"645 Chestnut St, San Francisco, CA 94016" +157134,Apple Airpods Headphones,1,150,01/28/19 18:09,"366 Cedar St, Atlanta, GA 30301" +157135,Apple Airpods Headphones,1,150,01/18/19 01:32,"667 River St, San Francisco, CA 94016" +157136,USB-C Charging Cable,1,11.95,01/28/19 17:09,"784 Jefferson St, Los Angeles, CA 90001" +157137,20in Monitor,1,109.99,01/30/19 23:34,"18 Spruce St, Dallas, TX 75001" +157138,Bose SoundSport Headphones,1,99.99,01/30/19 17:35,"82 Spruce St, Seattle, WA 98101" +157139,34in Ultrawide Monitor,1,379.99,01/13/19 12:39,"826 Forest St, Atlanta, GA 30301" +157140,27in FHD Monitor,1,149.99,01/06/19 07:56,"208 West St, Dallas, TX 75001" +157141,Google Phone,1,600,01/18/19 17:02,"938 Cedar St, San Francisco, CA 94016" +157141,Wired Headphones,2,11.99,01/18/19 17:02,"938 Cedar St, San Francisco, CA 94016" +157142,Lightning Charging Cable,1,14.95,01/07/19 15:12,"650 North St, San Francisco, CA 94016" +157143,20in Monitor,1,109.99,01/03/19 13:59,"609 4th St, Austin, TX 73301" +157144,Macbook Pro Laptop,1,1700,01/23/19 20:40,"349 5th St, New York City, NY 10001" +157145,Flatscreen TV,1,300,01/10/19 09:37,"980 Wilson St, San Francisco, CA 94016" +157146,Macbook Pro Laptop,1,1700,01/22/19 12:50,"151 Dogwood St, New York City, NY 10001" +157147,Wired Headphones,1,11.99,01/17/19 21:03,"415 Spruce St, Austin, TX 73301" +157148,Macbook Pro Laptop,1,1700,01/03/19 10:45,"873 North St, San Francisco, CA 94016" +157149,Wired Headphones,1,11.99,01/14/19 17:40,"973 Hill St, Boston, MA 02215" +157150,Bose SoundSport Headphones,1,99.99,01/11/19 16:44,"289 14th St, Seattle, WA 98101" +157151,Apple Airpods Headphones,1,150,01/16/19 10:45,"304 8th St, Austin, TX 73301" +157152,34in Ultrawide Monitor,1,379.99,01/04/19 22:59,"572 Lake St, Dallas, TX 75001" +157153,Lightning Charging Cable,1,14.95,01/23/19 09:04,"904 5th St, Los Angeles, CA 90001" +157154,ThinkPad Laptop,1,999.99,01/22/19 14:12,"138 Cedar St, Atlanta, GA 30301" +157155,Wired Headphones,1,11.99,01/22/19 09:28,"872 Hill St, San Francisco, CA 94016" +157156,Wired Headphones,1,11.99,01/18/19 18:43,"832 2nd St, New York City, NY 10001" +157157,USB-C Charging Cable,1,11.95,01/25/19 20:14,"425 Dogwood St, Boston, MA 02215" +157158,Wired Headphones,1,11.99,01/29/19 22:01,"745 Maple St, Los Angeles, CA 90001" +157159,Google Phone,1,600,01/16/19 14:35,"573 Highland St, Boston, MA 02215" +157160,27in FHD Monitor,1,149.99,01/25/19 22:29,"133 Church St, Los Angeles, CA 90001" +157161,Lightning Charging Cable,1,14.95,01/17/19 16:41,"976 Church St, Los Angeles, CA 90001" +157162,27in 4K Gaming Monitor,1,389.99,01/22/19 16:22,"940 Dogwood St, Boston, MA 02215" +157163,Vareebadd Phone,1,400,01/10/19 15:13,"477 Johnson St, Atlanta, GA 30301" +157163,USB-C Charging Cable,1,11.95,01/10/19 15:13,"477 Johnson St, Atlanta, GA 30301" +157164,iPhone,1,700,01/25/19 11:01,"537 Cherry St, San Francisco, CA 94016" +157165,27in 4K Gaming Monitor,1,389.99,01/09/19 19:21,"437 Forest St, Los Angeles, CA 90001" +157166,Google Phone,1,600,01/23/19 16:42,"419 Jackson St, Los Angeles, CA 90001" +157167,Bose SoundSport Headphones,1,99.99,01/25/19 08:16,"646 Sunset St, Dallas, TX 75001" +157168,27in FHD Monitor,1,149.99,01/18/19 22:35,"654 1st St, Los Angeles, CA 90001" +157169,AAA Batteries (4-pack),1,2.99,01/06/19 21:13,"633 Lake St, New York City, NY 10001" +157170,USB-C Charging Cable,1,11.95,01/01/19 23:56,"138 Johnson St, Los Angeles, CA 90001" +157171,Lightning Charging Cable,1,14.95,01/13/19 16:59,"281 Church St, Portland, OR 97035" +157172,Lightning Charging Cable,1,14.95,01/18/19 15:13,"52 8th St, Los Angeles, CA 90001" +157173,LG Dryer,1,600.0,01/29/19 15:00,"471 Chestnut St, Seattle, WA 98101" +157174,iPhone,1,700,01/11/19 14:02,"369 Main St, Boston, MA 02215" +157175,AAA Batteries (4-pack),2,2.99,01/22/19 20:06,"934 Forest St, New York City, NY 10001" +157176,Lightning Charging Cable,1,14.95,01/17/19 17:00,"144 14th St, New York City, NY 10001" +157177,AAA Batteries (4-pack),1,2.99,01/04/19 17:30,"543 Highland St, Portland, OR 97035" +157178,Macbook Pro Laptop,1,1700,01/22/19 20:31,"447 Washington St, Seattle, WA 98101" +157179,AA Batteries (4-pack),1,3.84,01/03/19 18:15,"670 Meadow St, Seattle, WA 98101" +157180,AA Batteries (4-pack),1,3.84,01/12/19 00:22,"665 Adams St, Dallas, TX 75001" +157181,AA Batteries (4-pack),3,3.84,01/24/19 14:04,"306 Main St, Austin, TX 73301" +157182,USB-C Charging Cable,1,11.95,01/08/19 13:19,"213 Spruce St, New York City, NY 10001" +157183,27in FHD Monitor,1,149.99,01/20/19 14:35,"841 Hill St, Seattle, WA 98101" +157184,AA Batteries (4-pack),1,3.84,01/17/19 20:34,"919 Hickory St, Dallas, TX 75001" +157185,Macbook Pro Laptop,1,1700,01/01/19 18:35,"736 Chestnut St, Los Angeles, CA 90001" +157186,Apple Airpods Headphones,1,150,01/10/19 19:21,"427 2nd St, San Francisco, CA 94016" +157187,AA Batteries (4-pack),1,3.84,01/31/19 20:38,"915 Walnut St, Austin, TX 73301" +157188,AA Batteries (4-pack),1,3.84,01/13/19 18:20,"788 Cedar St, Atlanta, GA 30301" +157189,Bose SoundSport Headphones,1,99.99,01/19/19 19:43,"794 Center St, Los Angeles, CA 90001" +157190,AAA Batteries (4-pack),1,2.99,01/17/19 17:23,"998 Pine St, San Francisco, CA 94016" +157191,iPhone,1,700,01/23/19 15:08,"836 2nd St, Los Angeles, CA 90001" +157192,AAA Batteries (4-pack),2,2.99,01/12/19 11:46,"971 Main St, San Francisco, CA 94016" +157193,USB-C Charging Cable,1,11.95,01/17/19 20:27,"76 Forest St, Austin, TX 73301" +157194,Lightning Charging Cable,1,14.95,01/14/19 11:49,"252 Church St, New York City, NY 10001" +157195,ThinkPad Laptop,1,999.99,01/04/19 11:32,"942 Elm St, Dallas, TX 75001" +157196,Lightning Charging Cable,2,14.95,01/13/19 10:59,"27 2nd St, San Francisco, CA 94016" +157197,Google Phone,1,600,01/19/19 04:34,"105 Meadow St, San Francisco, CA 94016" +157198,USB-C Charging Cable,1,11.95,01/31/19 11:48,"649 13th St, New York City, NY 10001" +157199,AA Batteries (4-pack),2,3.84,01/01/19 21:39,"766 Center St, Boston, MA 02215" +157200,Wired Headphones,2,11.99,01/09/19 10:04,"198 12th St, Portland, OR 97035" +157201,Macbook Pro Laptop,1,1700,01/24/19 10:20,"495 Meadow St, Boston, MA 02215" +157202,Apple Airpods Headphones,1,150,01/07/19 19:57,"449 2nd St, Austin, TX 73301" +157203,AA Batteries (4-pack),2,3.84,01/14/19 21:15,"153 South St, Dallas, TX 75001" +157204,Wired Headphones,1,11.99,01/17/19 17:42,"801 Wilson St, Boston, MA 02215" +157205,Macbook Pro Laptop,1,1700,01/20/19 17:34,"952 14th St, Los Angeles, CA 90001" +157206,Wired Headphones,1,11.99,01/13/19 16:58,"964 Wilson St, Dallas, TX 75001" +157207,Apple Airpods Headphones,1,150,01/10/19 14:29,"847 North St, San Francisco, CA 94016" +157208,Apple Airpods Headphones,1,150,01/27/19 17:26,"452 10th St, Portland, OR 97035" +157209,Google Phone,1,600,01/29/19 22:24,"690 Jackson St, Los Angeles, CA 90001" +157209,USB-C Charging Cable,1,11.95,01/29/19 22:24,"690 Jackson St, Los Angeles, CA 90001" +157210,34in Ultrawide Monitor,1,379.99,01/03/19 20:15,"525 Church St, San Francisco, CA 94016" +157211,27in 4K Gaming Monitor,1,389.99,01/26/19 17:59,"235 Chestnut St, Atlanta, GA 30301" +157212,AA Batteries (4-pack),1,3.84,01/22/19 19:56,"452 8th St, Seattle, WA 98101" +157213,iPhone,1,700,01/31/19 20:48,"366 12th St, Atlanta, GA 30301" +157214,Vareebadd Phone,1,400,01/01/19 21:35,"372 Sunset St, Los Angeles, CA 90001" +157215,Apple Airpods Headphones,1,150,02/01/19 01:08,"658 Church St, New York City, NY 10001" +157216,Lightning Charging Cable,1,14.95,01/19/19 18:28,"714 Meadow St, Dallas, TX 75001" +157217,27in FHD Monitor,1,149.99,01/28/19 12:15,"800 13th St, Atlanta, GA 30301" +157218,Macbook Pro Laptop,1,1700,01/04/19 12:37,"342 Main St, San Francisco, CA 94016" +157219,Apple Airpods Headphones,1,150,01/26/19 09:38,"607 Jefferson St, New York City, NY 10001" +157220,Lightning Charging Cable,1,14.95,01/05/19 12:18,"478 7th St, Atlanta, GA 30301" +157221,USB-C Charging Cable,1,11.95,01/28/19 21:51,"849 9th St, Los Angeles, CA 90001" +157222,USB-C Charging Cable,1,11.95,01/20/19 11:32,"903 River St, Dallas, TX 75001" +157223,USB-C Charging Cable,1,11.95,01/27/19 22:14,"792 River St, Los Angeles, CA 90001" +157224,Google Phone,1,600,01/15/19 09:23,"30 Hickory St, San Francisco, CA 94016" +157225,AAA Batteries (4-pack),3,2.99,01/02/19 20:56,"441 Johnson St, San Francisco, CA 94016" +157226,20in Monitor,1,109.99,01/06/19 22:38,"105 Lakeview St, Austin, TX 73301" +157227,Wired Headphones,1,11.99,01/26/19 20:00,"32 Main St, Atlanta, GA 30301" +157228,Wired Headphones,1,11.99,01/04/19 19:56,"546 1st St, Dallas, TX 75001" +157229,LG Dryer,1,600.0,01/07/19 05:47,"280 Dogwood St, New York City, NY 10001" +157230,Google Phone,1,600,01/15/19 08:38,"13 Jefferson St, San Francisco, CA 94016" +157230,USB-C Charging Cable,1,11.95,01/15/19 08:38,"13 Jefferson St, San Francisco, CA 94016" +157231,Lightning Charging Cable,1,14.95,01/04/19 19:02,"401 8th St, Boston, MA 02215" +157232,AAA Batteries (4-pack),1,2.99,01/23/19 14:03,"507 2nd St, Dallas, TX 75001" +157233,USB-C Charging Cable,1,11.95,01/29/19 11:58,"498 2nd St, Boston, MA 02215" +157234,Lightning Charging Cable,2,14.95,01/03/19 11:39,"267 5th St, Boston, MA 02215" +157235,Wired Headphones,1,11.99,01/07/19 12:57,"598 Madison St, Boston, MA 02215" +157236,AAA Batteries (4-pack),1,2.99,01/24/19 17:26,"843 5th St, Seattle, WA 98101" +157237,iPhone,1,700,01/28/19 08:03,"75 Elm St, New York City, NY 10001" +157237,Lightning Charging Cable,1,14.95,01/28/19 08:03,"75 Elm St, New York City, NY 10001" +157238,27in 4K Gaming Monitor,1,389.99,01/31/19 18:22,"392 Highland St, San Francisco, CA 94016" +157239,Apple Airpods Headphones,1,150,01/24/19 14:15,"382 Hickory St, Atlanta, GA 30301" +157240,27in FHD Monitor,1,149.99,01/28/19 21:11,"314 10th St, Los Angeles, CA 90001" +157241,USB-C Charging Cable,1,11.95,01/19/19 14:47,"756 Chestnut St, Seattle, WA 98101" +157242,Lightning Charging Cable,1,14.95,01/31/19 21:28,"567 7th St, Atlanta, GA 30301" +157243,Apple Airpods Headphones,1,150,01/03/19 01:05,"8 Sunset St, Seattle, WA 98101" +157244,AAA Batteries (4-pack),1,2.99,01/05/19 18:34,"679 Lakeview St, San Francisco, CA 94016" +157245,AAA Batteries (4-pack),1,2.99,01/19/19 11:03,"123 2nd St, San Francisco, CA 94016" +157246,iPhone,1,700,01/03/19 21:00,"426 Forest St, San Francisco, CA 94016" +157246,Lightning Charging Cable,1,14.95,01/03/19 21:00,"426 Forest St, San Francisco, CA 94016" +157247,AAA Batteries (4-pack),1,2.99,01/18/19 00:09,"558 Wilson St, Boston, MA 02215" +157248,Lightning Charging Cable,1,14.95,01/04/19 15:20,"774 Park St, Los Angeles, CA 90001" +157249,34in Ultrawide Monitor,1,379.99,01/20/19 23:24,"747 Elm St, Los Angeles, CA 90001" +157250,27in 4K Gaming Monitor,1,389.99,01/19/19 21:47,"384 8th St, Los Angeles, CA 90001" +157251,USB-C Charging Cable,1,11.95,01/12/19 13:15,"130 Hill St, San Francisco, CA 94016" +157252,Bose SoundSport Headphones,1,99.99,01/05/19 19:49,"385 Wilson St, Atlanta, GA 30301" +157253,USB-C Charging Cable,1,11.95,01/26/19 10:09,"891 Lincoln St, San Francisco, CA 94016" +157254,Apple Airpods Headphones,1,150,01/07/19 01:14,"278 11th St, Dallas, TX 75001" +157255,USB-C Charging Cable,1,11.95,01/31/19 12:26,"727 Cedar St, San Francisco, CA 94016" +157256,USB-C Charging Cable,2,11.95,01/09/19 15:32,"449 Jackson St, Austin, TX 73301" +157257,Macbook Pro Laptop,1,1700,01/02/19 10:25,"857 River St, Atlanta, GA 30301" +157258,Bose SoundSport Headphones,1,99.99,01/11/19 17:08,"539 Willow St, Portland, OR 97035" +157259,Wired Headphones,1,11.99,01/07/19 13:39,"130 Center St, New York City, NY 10001" +157260,Wired Headphones,1,11.99,01/23/19 14:12,"911 1st St, New York City, NY 10001" +157261,20in Monitor,1,109.99,01/25/19 19:26,"691 Maple St, Austin, TX 73301" +157262,iPhone,1,700,01/29/19 21:21,"509 4th St, Boston, MA 02215" +157262,Lightning Charging Cable,1,14.95,01/29/19 21:21,"509 4th St, Boston, MA 02215" +157263,Wired Headphones,1,11.99,01/11/19 19:00,"920 9th St, Boston, MA 02215" +157264,Apple Airpods Headphones,1,150,01/31/19 20:17,"693 10th St, New York City, NY 10001" +157265,Macbook Pro Laptop,1,1700,01/28/19 17:18,"849 Johnson St, Dallas, TX 75001" +157266,AAA Batteries (4-pack),1,2.99,01/03/19 12:07,"367 12th St, Boston, MA 02215" +157267,27in FHD Monitor,1,149.99,01/27/19 13:51,"274 Forest St, Atlanta, GA 30301" +157268,Wired Headphones,1,11.99,01/21/19 10:30,"817 4th St, New York City, NY 10001" +157269,Apple Airpods Headphones,1,150,01/03/19 09:43,"691 Lincoln St, New York City, NY 10001" +157270,Apple Airpods Headphones,1,150,01/02/19 16:06,"101 Park St, Seattle, WA 98101" +157271,Wired Headphones,1,11.99,01/16/19 13:07,"472 Park St, Los Angeles, CA 90001" +157272,20in Monitor,1,109.99,01/20/19 17:11,"850 Main St, San Francisco, CA 94016" +157273,34in Ultrawide Monitor,1,379.99,01/10/19 07:19,"353 8th St, New York City, NY 10001" +157274,AA Batteries (4-pack),2,3.84,01/13/19 15:40,"524 12th St, Portland, OR 97035" +157275,Bose SoundSport Headphones,1,99.99,01/27/19 09:40,"682 Main St, San Francisco, CA 94016" +157276,AA Batteries (4-pack),1,3.84,01/02/19 13:38,"92 Lake St, Atlanta, GA 30301" +157277,Wired Headphones,1,11.99,01/09/19 12:18,"612 Lake St, Seattle, WA 98101" +157278,27in 4K Gaming Monitor,1,389.99,01/06/19 21:00,"307 Dogwood St, Boston, MA 02215" +157279,20in Monitor,1,109.99,01/14/19 13:33,"988 13th St, Los Angeles, CA 90001" +157280,iPhone,1,700,01/04/19 06:01,"192 Highland St, Atlanta, GA 30301" +157281,Wired Headphones,1,11.99,01/26/19 08:36,"698 9th St, New York City, NY 10001" +157282,AA Batteries (4-pack),1,3.84,01/04/19 08:22,"910 Hill St, San Francisco, CA 94016" +157283,Bose SoundSport Headphones,1,99.99,01/12/19 03:07,"105 Pine St, Atlanta, GA 30301" +157284,Flatscreen TV,1,300,01/10/19 20:55,"725 Sunset St, Los Angeles, CA 90001" +157285,USB-C Charging Cable,1,11.95,01/20/19 10:47,"180 Park St, San Francisco, CA 94016" +157285,USB-C Charging Cable,1,11.95,01/20/19 10:47,"180 Park St, San Francisco, CA 94016" +157286,34in Ultrawide Monitor,1,379.99,01/11/19 10:55,"416 Main St, Atlanta, GA 30301" +157287,Lightning Charging Cable,1,14.95,01/22/19 22:34,"175 Walnut St, San Francisco, CA 94016" +157288,AAA Batteries (4-pack),1,2.99,01/30/19 18:38,"718 13th St, Dallas, TX 75001" +157289,AAA Batteries (4-pack),1,2.99,01/19/19 17:05,"547 Jefferson St, Dallas, TX 75001" +157290,USB-C Charging Cable,1,11.95,01/23/19 09:00,"543 11th St, Dallas, TX 75001" +157291,AAA Batteries (4-pack),1,2.99,01/09/19 17:44,"327 Hickory St, Boston, MA 02215" +157291,USB-C Charging Cable,1,11.95,01/09/19 17:44,"327 Hickory St, Boston, MA 02215" +157292,AA Batteries (4-pack),3,3.84,01/04/19 09:26,"10 7th St, San Francisco, CA 94016" +157293,iPhone,1,700,01/06/19 10:32,"952 Chestnut St, Portland, OR 97035" +157294,USB-C Charging Cable,1,11.95,01/31/19 08:17,"255 Wilson St, Los Angeles, CA 90001" +157295,AA Batteries (4-pack),2,3.84,01/08/19 17:56,"866 Hill St, Dallas, TX 75001" +157296,Wired Headphones,1,11.99,01/07/19 21:22,"306 Pine St, Los Angeles, CA 90001" +157297,USB-C Charging Cable,1,11.95,01/16/19 23:31,"2 Willow St, San Francisco, CA 94016" +157298,Lightning Charging Cable,1,14.95,01/13/19 06:08,"816 Cherry St, Dallas, TX 75001" +157299,Wired Headphones,1,11.99,01/11/19 20:45,"240 14th St, Portland, OR 97035" +157300,AA Batteries (4-pack),1,3.84,01/22/19 16:15,"668 13th St, Boston, MA 02215" +157300,Apple Airpods Headphones,1,150,01/22/19 16:15,"668 13th St, Boston, MA 02215" +157301,AAA Batteries (4-pack),1,2.99,01/31/19 18:11,"241 Lake St, Los Angeles, CA 90001" +157302,AAA Batteries (4-pack),1,2.99,01/12/19 11:03,"530 Wilson St, Los Angeles, CA 90001" +157303,Flatscreen TV,1,300,01/20/19 12:41,"209 Cherry St, San Francisco, CA 94016" +157304,Wired Headphones,1,11.99,01/14/19 17:37,"185 7th St, San Francisco, CA 94016" +157305,iPhone,1,700,01/27/19 16:53,"528 Walnut St, Boston, MA 02215" +157306,AA Batteries (4-pack),1,3.84,01/22/19 14:01,"477 Park St, Boston, MA 02215" +157307,Vareebadd Phone,1,400,01/24/19 12:51,"142 Cherry St, New York City, NY 10001" +157308,34in Ultrawide Monitor,1,379.99,01/03/19 12:12,"543 Lincoln St, Portland, OR 97035" +157309,USB-C Charging Cable,1,11.95,01/03/19 15:16,"254 10th St, New York City, NY 10001" +157310,USB-C Charging Cable,1,11.95,01/26/19 17:41,"126 Forest St, Austin, TX 73301" +157311,Lightning Charging Cable,1,14.95,01/09/19 17:43,"539 7th St, Los Angeles, CA 90001" +157312,USB-C Charging Cable,1,11.95,01/02/19 23:16,"65 7th St, Dallas, TX 75001" +157313,Flatscreen TV,1,300,01/01/19 10:59,"396 Wilson St, Boston, MA 02215" +157314,Apple Airpods Headphones,1,150,01/26/19 19:10,"472 Dogwood St, San Francisco, CA 94016" +157315,Lightning Charging Cable,1,14.95,01/31/19 13:55,"33 Sunset St, San Francisco, CA 94016" +157316,Macbook Pro Laptop,1,1700,01/12/19 13:56,"554 13th St, Portland, ME 04101" +157317,AA Batteries (4-pack),1,3.84,01/18/19 02:30,"867 Pine St, New York City, NY 10001" +157318,Macbook Pro Laptop,1,1700,01/31/19 14:57,"152 River St, Boston, MA 02215" +157319,Wired Headphones,1,11.99,01/18/19 23:50,"900 Washington St, San Francisco, CA 94016" +157320,Apple Airpods Headphones,1,150,01/28/19 21:50,"436 Madison St, Atlanta, GA 30301" +157321,Apple Airpods Headphones,1,150,01/30/19 12:47,"927 West St, Los Angeles, CA 90001" +157321,Apple Airpods Headphones,1,150,01/30/19 12:47,"927 West St, Los Angeles, CA 90001" +157322,27in 4K Gaming Monitor,1,389.99,01/16/19 12:36,"742 Highland St, Atlanta, GA 30301" +157323,AAA Batteries (4-pack),4,2.99,01/20/19 10:55,"203 South St, Seattle, WA 98101" +157324,USB-C Charging Cable,1,11.95,01/07/19 01:41,"918 Park St, Seattle, WA 98101" +157325,USB-C Charging Cable,1,11.95,01/26/19 17:58,"915 Jefferson St, New York City, NY 10001" +157326,20in Monitor,1,109.99,01/29/19 09:53,"264 Johnson St, San Francisco, CA 94016" +,,,,, +157327,AA Batteries (4-pack),1,3.84,01/10/19 16:12,"3 11th St, San Francisco, CA 94016" +157328,27in 4K Gaming Monitor,1,389.99,01/23/19 18:20,"339 10th St, Seattle, WA 98101" +157329,AA Batteries (4-pack),1,3.84,01/12/19 22:01,"852 Lake St, Dallas, TX 75001" +157330,Wired Headphones,2,11.99,01/18/19 17:04,"635 Meadow St, New York City, NY 10001" +157331,AAA Batteries (4-pack),1,2.99,01/10/19 12:22,"773 4th St, New York City, NY 10001" +157332,AAA Batteries (4-pack),2,2.99,01/09/19 19:33,"194 Lake St, San Francisco, CA 94016" +157333,Apple Airpods Headphones,1,150,01/27/19 16:44,"347 Elm St, Los Angeles, CA 90001" +157334,Lightning Charging Cable,2,14.95,01/11/19 14:42,"518 14th St, Dallas, TX 75001" +157335,Wired Headphones,1,11.99,01/05/19 16:48,"728 Main St, Boston, MA 02215" +157336,Lightning Charging Cable,2,14.95,01/28/19 19:30,"710 1st St, Boston, MA 02215" +157337,Lightning Charging Cable,1,14.95,01/12/19 17:51,"297 Madison St, New York City, NY 10001" +157337,27in FHD Monitor,1,149.99,01/12/19 17:51,"297 Madison St, New York City, NY 10001" +157338,27in FHD Monitor,1,149.99,01/18/19 14:22,"939 1st St, Austin, TX 73301" +157338,Wired Headphones,1,11.99,01/18/19 14:22,"939 1st St, Austin, TX 73301" +157339,Bose SoundSport Headphones,1,99.99,01/04/19 16:34,"638 Church St, Boston, MA 02215" +157340,Lightning Charging Cable,1,14.95,01/26/19 15:49,"720 12th St, Portland, OR 97035" +157341,Wired Headphones,1,11.99,01/07/19 10:14,"890 Main St, New York City, NY 10001" +157342,27in FHD Monitor,1,149.99,01/08/19 15:59,"871 Sunset St, Seattle, WA 98101" +157343,Bose SoundSport Headphones,1,99.99,01/23/19 18:00,"928 11th St, Austin, TX 73301" +157344,USB-C Charging Cable,1,11.95,01/13/19 14:51,"392 Elm St, New York City, NY 10001" +157345,AA Batteries (4-pack),1,3.84,01/26/19 20:06,"286 South St, New York City, NY 10001" +157346,USB-C Charging Cable,1,11.95,01/17/19 13:35,"157 Main St, Portland, OR 97035" +157347,AAA Batteries (4-pack),2,2.99,01/26/19 22:02,"838 River St, San Francisco, CA 94016" +157348,USB-C Charging Cable,1,11.95,01/21/19 16:32,"716 Jefferson St, Austin, TX 73301" +157349,Macbook Pro Laptop,1,1700,01/15/19 23:16,"78 Elm St, New York City, NY 10001" +157350,Lightning Charging Cable,1,14.95,01/08/19 20:46,"647 Park St, Dallas, TX 75001" +157351,USB-C Charging Cable,1,11.95,01/09/19 19:38,"821 West St, New York City, NY 10001" +157352,AAA Batteries (4-pack),1,2.99,01/02/19 17:31,"95 Church St, San Francisco, CA 94016" +157353,USB-C Charging Cable,1,11.95,01/05/19 12:35,"119 Hill St, Austin, TX 73301" +157354,AA Batteries (4-pack),1,3.84,01/16/19 19:17,"24 13th St, Los Angeles, CA 90001" +157355,Apple Airpods Headphones,1,150,01/19/19 19:15,"958 Meadow St, Portland, OR 97035" +157356,Apple Airpods Headphones,1,150,01/22/19 13:08,"862 Elm St, New York City, NY 10001" +157357,Apple Airpods Headphones,1,150,01/13/19 15:27,"729 Center St, Boston, MA 02215" +157358,AA Batteries (4-pack),2,3.84,01/23/19 09:28,"770 10th St, San Francisco, CA 94016" +157358,Flatscreen TV,1,300,01/23/19 09:28,"770 10th St, San Francisco, CA 94016" +157359,34in Ultrawide Monitor,1,379.99,01/16/19 17:31,"569 Madison St, Dallas, TX 75001" +157360,AAA Batteries (4-pack),1,2.99,01/08/19 22:39,"35 11th St, San Francisco, CA 94016" +157361,Lightning Charging Cable,1,14.95,01/02/19 12:36,"100 Ridge St, Austin, TX 73301" +157362,Apple Airpods Headphones,1,150,01/31/19 19:43,"276 Highland St, Los Angeles, CA 90001" +157363,AA Batteries (4-pack),1,3.84,01/25/19 09:30,"719 13th St, Atlanta, GA 30301" +157364,USB-C Charging Cable,1,11.95,01/26/19 12:23,"880 9th St, San Francisco, CA 94016" +157365,USB-C Charging Cable,1,11.95,01/06/19 12:58,"636 Jefferson St, San Francisco, CA 94016" +157366,Lightning Charging Cable,2,14.95,01/11/19 18:03,"740 Cherry St, New York City, NY 10001" +157367,Bose SoundSport Headphones,1,99.99,01/30/19 15:33,"992 4th St, Atlanta, GA 30301" +157368,ThinkPad Laptop,1,999.99,01/08/19 23:36,"684 Walnut St, Dallas, TX 75001" +157369,AAA Batteries (4-pack),1,2.99,01/21/19 21:47,"944 11th St, Austin, TX 73301" +157370,Wired Headphones,1,11.99,01/03/19 17:37,"703 Maple St, San Francisco, CA 94016" +157371,Google Phone,1,600,01/04/19 09:45,"437 4th St, Boston, MA 02215" +157372,Wired Headphones,1,11.99,01/06/19 10:11,"935 9th St, San Francisco, CA 94016" +157373,Bose SoundSport Headphones,1,99.99,01/16/19 19:39,"756 Dogwood St, Austin, TX 73301" +157374,Apple Airpods Headphones,1,150,01/25/19 08:07,"922 10th St, Los Angeles, CA 90001" +157375,Google Phone,1,600,01/26/19 20:40,"254 7th St, Los Angeles, CA 90001" +157376,Wired Headphones,2,11.99,01/04/19 07:46,"372 Main St, New York City, NY 10001" +157377,Apple Airpods Headphones,1,150,01/18/19 20:07,"917 Willow St, Atlanta, GA 30301" +157378,USB-C Charging Cable,1,11.95,01/09/19 08:57,"431 Jackson St, San Francisco, CA 94016" +157379,Apple Airpods Headphones,1,150,01/14/19 11:10,"964 Park St, Los Angeles, CA 90001" +157380,iPhone,1,700,01/07/19 14:08,"222 Dogwood St, New York City, NY 10001" +157381,Macbook Pro Laptop,1,1700,01/21/19 20:43,"192 Sunset St, Portland, ME 04101" +157382,USB-C Charging Cable,1,11.95,01/08/19 18:23,"288 Lakeview St, Seattle, WA 98101" +157383,34in Ultrawide Monitor,1,379.99,01/04/19 12:14,"693 Willow St, Los Angeles, CA 90001" +157384,USB-C Charging Cable,1,11.95,01/17/19 07:40,"348 2nd St, Dallas, TX 75001" +157385,AAA Batteries (4-pack),3,2.99,01/19/19 11:57,"572 South St, Boston, MA 02215" +157386,27in FHD Monitor,1,149.99,01/01/19 16:56,"880 West St, Portland, OR 97035" +157387,AA Batteries (4-pack),1,3.84,01/20/19 11:19,"883 Highland St, Los Angeles, CA 90001" +157388,AA Batteries (4-pack),1,3.84,01/01/19 07:38,"316 Adams St, Dallas, TX 75001" +157389,Google Phone,1,600,01/09/19 13:25,"240 2nd St, Los Angeles, CA 90001" +157389,Wired Headphones,1,11.99,01/09/19 13:25,"240 2nd St, Los Angeles, CA 90001" +157390,Bose SoundSport Headphones,1,99.99,01/03/19 21:55,"895 11th St, Portland, OR 97035" +157391,Lightning Charging Cable,2,14.95,01/28/19 00:13,"65 Ridge St, San Francisco, CA 94016" +157392,Apple Airpods Headphones,1,150,01/18/19 19:56,"162 14th St, Austin, TX 73301" +157393,Apple Airpods Headphones,1,150,01/31/19 15:34,"892 13th St, San Francisco, CA 94016" +157394,AA Batteries (4-pack),2,3.84,01/10/19 10:45,"968 Madison St, Seattle, WA 98101" +157395,Lightning Charging Cable,1,14.95,01/08/19 11:11,"7 Jefferson St, Los Angeles, CA 90001" +157396,AA Batteries (4-pack),1,3.84,01/21/19 18:18,"28 6th St, San Francisco, CA 94016" +157397,Bose SoundSport Headphones,1,99.99,01/14/19 08:11,"424 Lakeview St, Los Angeles, CA 90001" +157398,Wired Headphones,1,11.99,01/17/19 17:44,"672 Ridge St, San Francisco, CA 94016" +157399,Lightning Charging Cable,1,14.95,01/24/19 09:30,"239 Cedar St, Portland, OR 97035" +157400,Apple Airpods Headphones,1,150,01/15/19 12:42,"457 10th St, New York City, NY 10001" +157401,Lightning Charging Cable,1,14.95,01/04/19 18:21,"159 11th St, Los Angeles, CA 90001" +157402,AA Batteries (4-pack),1,3.84,01/16/19 17:26,"200 West St, Boston, MA 02215" +157403,Apple Airpods Headphones,1,150,01/18/19 00:32,"891 Washington St, San Francisco, CA 94016" +157404,Macbook Pro Laptop,1,1700,01/29/19 22:13,"160 Lakeview St, San Francisco, CA 94016" +157405,AA Batteries (4-pack),1,3.84,01/01/19 21:08,"178 2nd St, New York City, NY 10001" +157406,USB-C Charging Cable,1,11.95,01/04/19 12:03,"962 Washington St, Los Angeles, CA 90001" +157407,Bose SoundSport Headphones,1,99.99,01/03/19 14:02,"805 Ridge St, Los Angeles, CA 90001" +157408,Apple Airpods Headphones,1,150,01/28/19 17:33,"818 Walnut St, Portland, OR 97035" +157409,Bose SoundSport Headphones,1,99.99,01/01/19 15:46,"195 7th St, Portland, OR 97035" +157410,AAA Batteries (4-pack),1,2.99,01/27/19 17:44,"887 2nd St, Austin, TX 73301" +157411,ThinkPad Laptop,1,999.99,01/12/19 13:26,"248 Hickory St, Atlanta, GA 30301" +157412,27in 4K Gaming Monitor,1,389.99,01/14/19 17:03,"676 Cherry St, Los Angeles, CA 90001" +157413,USB-C Charging Cable,1,11.95,01/14/19 16:57,"773 West St, Austin, TX 73301" +157414,AA Batteries (4-pack),1,3.84,01/16/19 11:47,"520 13th St, San Francisco, CA 94016" +157415,Lightning Charging Cable,1,14.95,01/18/19 18:38,"143 Sunset St, Dallas, TX 75001" +157416,Apple Airpods Headphones,1,150,01/14/19 12:42,"36 Washington St, Portland, ME 04101" +157417,27in FHD Monitor,1,149.99,01/04/19 09:22,"399 Maple St, Seattle, WA 98101" +157418,USB-C Charging Cable,1,11.95,01/27/19 12:14,"871 13th St, Austin, TX 73301" +157419,AA Batteries (4-pack),1,3.84,01/28/19 21:25,"380 5th St, San Francisco, CA 94016" +157420,27in 4K Gaming Monitor,1,389.99,01/22/19 19:04,"901 Jefferson St, New York City, NY 10001" +157421,Wired Headphones,1,11.99,01/04/19 16:57,"564 Lakeview St, Boston, MA 02215" +157422,AA Batteries (4-pack),1,3.84,01/07/19 15:17,"407 Lake St, Boston, MA 02215" +157422,Wired Headphones,1,11.99,01/07/19 15:17,"407 Lake St, Boston, MA 02215" +157423,27in FHD Monitor,1,149.99,01/31/19 17:13,"533 Willow St, San Francisco, CA 94016" +157424,Google Phone,1,600,01/05/19 21:18,"309 Wilson St, New York City, NY 10001" +157425,20in Monitor,1,109.99,01/11/19 17:15,"125 4th St, Boston, MA 02215" +157426,27in FHD Monitor,1,149.99,01/14/19 17:04,"610 4th St, Los Angeles, CA 90001" +157427,USB-C Charging Cable,1,11.95,01/19/19 21:20,"900 Dogwood St, Los Angeles, CA 90001" +157428,Wired Headphones,1,11.99,01/07/19 08:30,"281 Sunset St, Seattle, WA 98101" +157429,Lightning Charging Cable,2,14.95,01/14/19 09:59,"595 Walnut St, San Francisco, CA 94016" +157430,AA Batteries (4-pack),3,3.84,01/11/19 17:01,"307 River St, San Francisco, CA 94016" +157431,Lightning Charging Cable,1,14.95,01/13/19 10:42,"106 10th St, Atlanta, GA 30301" +157432,20in Monitor,1,109.99,01/02/19 23:19,"269 Elm St, Los Angeles, CA 90001" +157433,Apple Airpods Headphones,1,150,01/25/19 18:18,"255 Cherry St, Atlanta, GA 30301" +157434,Macbook Pro Laptop,1,1700,01/26/19 21:11,"639 River St, San Francisco, CA 94016" +157435,AA Batteries (4-pack),3,3.84,01/20/19 12:32,"406 West St, San Francisco, CA 94016" +157436,AA Batteries (4-pack),1,3.84,01/23/19 19:14,"666 Hill St, Dallas, TX 75001" +157437,Vareebadd Phone,1,400,01/26/19 05:52,"257 Maple St, San Francisco, CA 94016" +157437,USB-C Charging Cable,1,11.95,01/26/19 05:52,"257 Maple St, San Francisco, CA 94016" +157438,USB-C Charging Cable,1,11.95,01/16/19 21:31,"491 South St, San Francisco, CA 94016" +157439,Flatscreen TV,1,300,01/16/19 09:33,"501 Forest St, Portland, OR 97035" +157440,Apple Airpods Headphones,1,150,01/27/19 10:05,"761 West St, Los Angeles, CA 90001" +157441,AA Batteries (4-pack),2,3.84,01/14/19 22:33,"244 North St, Seattle, WA 98101" +157442,Lightning Charging Cable,1,14.95,01/04/19 12:45,"414 North St, San Francisco, CA 94016" +157443,Lightning Charging Cable,2,14.95,01/17/19 09:26,"793 Hill St, San Francisco, CA 94016" +157444,20in Monitor,1,109.99,01/30/19 18:10,"89 Dogwood St, Atlanta, GA 30301" +157445,Apple Airpods Headphones,1,150,01/10/19 15:36,"215 Highland St, New York City, NY 10001" +157446,34in Ultrawide Monitor,1,379.99,01/19/19 12:42,"190 Madison St, New York City, NY 10001" +157447,34in Ultrawide Monitor,1,379.99,01/15/19 15:30,"923 Main St, Austin, TX 73301" +157448,Lightning Charging Cable,1,14.95,01/16/19 13:51,"399 Hill St, New York City, NY 10001" +157449,AAA Batteries (4-pack),1,2.99,01/23/19 14:29,"705 Elm St, Boston, MA 02215" +157450,AAA Batteries (4-pack),1,2.99,01/27/19 22:08,"651 South St, Atlanta, GA 30301" +157451,Lightning Charging Cable,1,14.95,01/18/19 19:53,"112 Center St, Dallas, TX 75001" +157452,AAA Batteries (4-pack),1,2.99,01/14/19 22:57,"889 Hickory St, Portland, OR 97035" +157453,Lightning Charging Cable,2,14.95,01/11/19 17:49,"901 2nd St, New York City, NY 10001" +157454,USB-C Charging Cable,1,11.95,01/14/19 11:31,"783 Main St, Seattle, WA 98101" +157455,AAA Batteries (4-pack),3,2.99,01/26/19 15:48,"89 Church St, Austin, TX 73301" +157456,Lightning Charging Cable,1,14.95,01/19/19 08:41,"921 Maple St, San Francisco, CA 94016" +157457,Wired Headphones,1,11.99,01/01/19 19:15,"396 Maple St, Dallas, TX 75001" +157458,Apple Airpods Headphones,1,150,01/22/19 10:48,"391 2nd St, Dallas, TX 75001" +157459,20in Monitor,1,109.99,01/07/19 18:54,"791 North St, New York City, NY 10001" +157460,Bose SoundSport Headphones,1,99.99,01/12/19 20:41,"657 12th St, San Francisco, CA 94016" +157461,iPhone,1,700,01/02/19 10:27,"802 Wilson St, Austin, TX 73301" +157462,USB-C Charging Cable,1,11.95,01/11/19 17:53,"891 13th St, Dallas, TX 75001" +157463,Apple Airpods Headphones,1,150,01/15/19 21:50,"649 4th St, Portland, OR 97035" +157464,27in 4K Gaming Monitor,1,389.99,01/02/19 17:30,"205 North St, Seattle, WA 98101" +157465,27in 4K Gaming Monitor,1,389.99,01/06/19 12:48,"613 Chestnut St, Portland, OR 97035" +157466,Apple Airpods Headphones,1,150,01/27/19 20:13,"878 5th St, San Francisco, CA 94016" +157467,Bose SoundSport Headphones,1,99.99,01/18/19 20:41,"297 Spruce St, Dallas, TX 75001" +157468,AAA Batteries (4-pack),2,2.99,01/16/19 18:45,"318 South St, San Francisco, CA 94016" +157469,Lightning Charging Cable,1,14.95,01/03/19 14:52,"47 Elm St, San Francisco, CA 94016" +157470,USB-C Charging Cable,1,11.95,01/24/19 18:46,"60 2nd St, San Francisco, CA 94016" +157471,Wired Headphones,1,11.99,01/11/19 10:54,"850 1st St, Seattle, WA 98101" +157472,Google Phone,1,600,01/27/19 19:45,"124 South St, San Francisco, CA 94016" +157473,Apple Airpods Headphones,1,150,01/12/19 14:55,"375 Forest St, Boston, MA 02215" +157474,Wired Headphones,1,11.99,01/14/19 13:53,"179 Forest St, Boston, MA 02215" +157475,USB-C Charging Cable,1,11.95,01/01/19 08:12,"467 4th St, Seattle, WA 98101" +157476,Lightning Charging Cable,1,14.95,01/20/19 14:40,"411 1st St, Portland, OR 97035" +157477,AAA Batteries (4-pack),1,2.99,01/17/19 10:19,"126 Lake St, Seattle, WA 98101" +157478,Lightning Charging Cable,2,14.95,01/06/19 23:46,"864 Maple St, Dallas, TX 75001" +157479,Lightning Charging Cable,1,14.95,01/04/19 13:55,"587 Washington St, Boston, MA 02215" +157480,iPhone,1,700,01/27/19 10:36,"713 4th St, New York City, NY 10001" +157480,Lightning Charging Cable,1,14.95,01/27/19 10:36,"713 4th St, New York City, NY 10001" +157480,Wired Headphones,1,11.99,01/27/19 10:36,"713 4th St, New York City, NY 10001" +157481,AA Batteries (4-pack),1,3.84,01/22/19 11:39,"749 Washington St, New York City, NY 10001" +157482,Lightning Charging Cable,1,14.95,01/22/19 15:12,"957 Church St, Los Angeles, CA 90001" +157483,27in 4K Gaming Monitor,1,389.99,01/21/19 20:00,"255 Madison St, Austin, TX 73301" +157484,Lightning Charging Cable,1,14.95,01/11/19 12:58,"416 Madison St, Los Angeles, CA 90001" +157485,Apple Airpods Headphones,1,150,01/07/19 20:29,"571 Willow St, San Francisco, CA 94016" +157486,USB-C Charging Cable,1,11.95,01/25/19 18:17,"280 Lake St, San Francisco, CA 94016" +157487,Wired Headphones,1,11.99,01/25/19 21:43,"990 Cherry St, Los Angeles, CA 90001" +157488,AA Batteries (4-pack),1,3.84,01/26/19 19:14,"581 Highland St, Seattle, WA 98101" +157489,USB-C Charging Cable,1,11.95,01/09/19 11:01,"7 Church St, New York City, NY 10001" +157490,AA Batteries (4-pack),1,3.84,01/01/19 20:54,"561 Park St, Boston, MA 02215" +157491,AA Batteries (4-pack),1,3.84,01/14/19 19:49,"958 Pine St, San Francisco, CA 94016" +157492,Macbook Pro Laptop,1,1700,01/01/19 23:57,"962 Main St, Boston, MA 02215" +157493,27in FHD Monitor,1,149.99,01/26/19 22:55,"427 Elm St, San Francisco, CA 94016" +157494,AAA Batteries (4-pack),1,2.99,01/30/19 12:34,"778 Maple St, Los Angeles, CA 90001" +157495,iPhone,1,700,01/07/19 14:25,"334 6th St, Los Angeles, CA 90001" +157496,iPhone,1,700,01/09/19 04:56,"492 10th St, Los Angeles, CA 90001" +157497,Wired Headphones,1,11.99,01/04/19 17:20,"995 Washington St, Dallas, TX 75001" +157498,iPhone,1,700,01/30/19 18:37,"186 Center St, Seattle, WA 98101" +157499,USB-C Charging Cable,1,11.95,01/20/19 10:51,"164 13th St, San Francisco, CA 94016" +157500,Wired Headphones,1,11.99,01/17/19 15:52,"131 Maple St, Seattle, WA 98101" +157501,AAA Batteries (4-pack),1,2.99,01/04/19 09:25,"169 River St, Austin, TX 73301" +157502,iPhone,1,700,01/18/19 13:05,"562 Sunset St, Los Angeles, CA 90001" +157502,Apple Airpods Headphones,1,150,01/18/19 13:05,"562 Sunset St, Los Angeles, CA 90001" +157503,AAA Batteries (4-pack),4,2.99,01/07/19 00:24,"14 Dogwood St, San Francisco, CA 94016" +157504,27in 4K Gaming Monitor,1,389.99,01/20/19 17:00,"186 Washington St, Atlanta, GA 30301" +157505,USB-C Charging Cable,1,11.95,01/06/19 22:38,"162 Main St, New York City, NY 10001" +157506,Lightning Charging Cable,1,14.95,01/14/19 00:37,"75 6th St, Seattle, WA 98101" +157507,Apple Airpods Headphones,1,150,01/02/19 15:10,"778 6th St, San Francisco, CA 94016" +157508,Bose SoundSport Headphones,1,99.99,01/04/19 17:56,"494 Meadow St, San Francisco, CA 94016" +157509,LG Washing Machine,1,600.0,01/22/19 11:20,"372 West St, San Francisco, CA 94016" +157510,Lightning Charging Cable,1,14.95,01/31/19 11:40,"147 Spruce St, Boston, MA 02215" +157511,Google Phone,1,600,01/07/19 17:29,"812 Highland St, Portland, ME 04101" +157512,AA Batteries (4-pack),2,3.84,01/08/19 09:53,"602 7th St, Boston, MA 02215" +157513,34in Ultrawide Monitor,1,379.99,01/24/19 17:55,"78 Walnut St, Atlanta, GA 30301" +157514,iPhone,1,700,01/24/19 08:10,"314 Maple St, Austin, TX 73301" +157515,27in FHD Monitor,1,149.99,01/03/19 14:58,"407 Park St, Seattle, WA 98101" +157516,Lightning Charging Cable,1,14.95,01/01/19 22:42,"94 Lake St, San Francisco, CA 94016" +157517,Lightning Charging Cable,1,14.95,01/31/19 13:57,"515 Madison St, Austin, TX 73301" +157518,Apple Airpods Headphones,1,150,01/21/19 17:14,"613 Meadow St, San Francisco, CA 94016" +157519,AAA Batteries (4-pack),4,2.99,01/14/19 08:52,"129 7th St, Portland, OR 97035" +157520,AAA Batteries (4-pack),4,2.99,01/17/19 21:46,"497 Wilson St, Atlanta, GA 30301" +157521,Bose SoundSport Headphones,1,99.99,01/28/19 20:06,"106 Chestnut St, San Francisco, CA 94016" +157522,AA Batteries (4-pack),1,3.84,01/11/19 12:18,"993 7th St, Boston, MA 02215" +157523,USB-C Charging Cable,1,11.95,01/20/19 18:03,"886 Meadow St, New York City, NY 10001" +157524,USB-C Charging Cable,1,11.95,01/31/19 16:29,"585 Ridge St, New York City, NY 10001" +157525,Apple Airpods Headphones,1,150,01/07/19 11:27,"130 Jackson St, Atlanta, GA 30301" +157526,Apple Airpods Headphones,1,150,01/15/19 14:08,"869 8th St, Atlanta, GA 30301" +157527,USB-C Charging Cable,1,11.95,01/15/19 20:59,"69 Highland St, New York City, NY 10001" +157528,Bose SoundSport Headphones,1,99.99,01/20/19 07:07,"780 Jefferson St, Los Angeles, CA 90001" +157529,USB-C Charging Cable,1,11.95,01/03/19 21:29,"891 North St, San Francisco, CA 94016" +157530,USB-C Charging Cable,1,11.95,01/09/19 00:29,"373 Pine St, New York City, NY 10001" +157531,Google Phone,1,600,01/26/19 18:01,"508 Cedar St, San Francisco, CA 94016" +157531,USB-C Charging Cable,1,11.95,01/26/19 18:01,"508 Cedar St, San Francisco, CA 94016" +157531,Wired Headphones,1,11.99,01/26/19 18:01,"508 Cedar St, San Francisco, CA 94016" +157532,AA Batteries (4-pack),1,3.84,01/30/19 11:34,"896 Forest St, Los Angeles, CA 90001" +157533,Apple Airpods Headphones,1,150,01/05/19 10:07,"242 Meadow St, Boston, MA 02215" +157534,USB-C Charging Cable,1,11.95,01/09/19 08:05,"832 Highland St, Seattle, WA 98101" +157535,20in Monitor,1,109.99,01/14/19 09:15,"600 Highland St, Boston, MA 02215" +157536,Lightning Charging Cable,1,14.95,01/10/19 22:17,"307 9th St, Boston, MA 02215" +157537,Wired Headphones,1,11.99,01/28/19 21:51,"662 Jackson St, Atlanta, GA 30301" +157538,ThinkPad Laptop,1,999.99,01/17/19 00:22,"192 Center St, Austin, TX 73301" +157539,AA Batteries (4-pack),1,3.84,01/24/19 14:10,"815 Hill St, Boston, MA 02215" +157540,Lightning Charging Cable,1,14.95,01/31/19 10:53,"698 Elm St, Dallas, TX 75001" +157541,AA Batteries (4-pack),2,3.84,01/08/19 19:06,"722 Johnson St, Dallas, TX 75001" +157542,USB-C Charging Cable,2,11.95,01/05/19 14:34,"71 Wilson St, Dallas, TX 75001" +157543,Bose SoundSport Headphones,1,99.99,01/17/19 11:58,"515 Cherry St, Atlanta, GA 30301" +157544,USB-C Charging Cable,1,11.95,01/11/19 19:40,"385 Wilson St, San Francisco, CA 94016" +157545,34in Ultrawide Monitor,1,379.99,01/03/19 12:37,"246 Adams St, New York City, NY 10001" +157546,Lightning Charging Cable,1,14.95,01/10/19 23:14,"976 11th St, Los Angeles, CA 90001" +157547,Lightning Charging Cable,1,14.95,01/09/19 02:06,"518 Forest St, San Francisco, CA 94016" +157548,USB-C Charging Cable,1,11.95,01/02/19 18:56,"948 Sunset St, San Francisco, CA 94016" +157549,Wired Headphones,1,11.99,01/17/19 00:58,"481 Park St, San Francisco, CA 94016" +157550,USB-C Charging Cable,1,11.95,01/27/19 19:44,"320 12th St, Seattle, WA 98101" +157551,AAA Batteries (4-pack),3,2.99,01/08/19 08:57,"980 6th St, Seattle, WA 98101" +157552,Vareebadd Phone,1,400,01/19/19 00:04,"780 Main St, Dallas, TX 75001" +157553,27in 4K Gaming Monitor,1,389.99,01/24/19 19:11,"241 5th St, San Francisco, CA 94016" +157554,Wired Headphones,1,11.99,01/15/19 23:53,"461 10th St, Seattle, WA 98101" +157555,Apple Airpods Headphones,1,150,01/06/19 16:43,"990 Meadow St, Austin, TX 73301" +157556,Lightning Charging Cable,1,14.95,01/25/19 10:58,"881 Cherry St, San Francisco, CA 94016" +157557,USB-C Charging Cable,1,11.95,01/02/19 16:05,"79 8th St, Boston, MA 02215" +157558,AAA Batteries (4-pack),1,2.99,01/08/19 14:13,"329 Cherry St, Austin, TX 73301" +157559,AAA Batteries (4-pack),1,2.99,01/04/19 21:55,"436 West St, Dallas, TX 75001" +157560,AAA Batteries (4-pack),2,2.99,01/11/19 13:44,"633 6th St, Dallas, TX 75001" +157561,USB-C Charging Cable,1,11.95,01/05/19 13:07,"502 5th St, San Francisco, CA 94016" +157562,Bose SoundSport Headphones,1,99.99,01/14/19 14:32,"89 12th St, New York City, NY 10001" +157563,20in Monitor,1,109.99,01/27/19 18:58,"435 10th St, Atlanta, GA 30301" +157564,USB-C Charging Cable,1,11.95,01/10/19 11:49,"878 Washington St, Seattle, WA 98101" +157565,Apple Airpods Headphones,1,150,01/26/19 17:12,"400 Sunset St, Boston, MA 02215" +157565,Apple Airpods Headphones,1,150,01/26/19 17:12,"400 Sunset St, Boston, MA 02215" +157566,Apple Airpods Headphones,1,150,01/13/19 11:37,"643 Maple St, San Francisco, CA 94016" +157567,Apple Airpods Headphones,1,150,01/17/19 22:34,"521 Main St, Los Angeles, CA 90001" +157568,USB-C Charging Cable,1,11.95,01/11/19 10:43,"245 10th St, Portland, OR 97035" +157569,Wired Headphones,1,11.99,01/11/19 04:53,"174 Washington St, Atlanta, GA 30301" +157570,iPhone,1,700,01/10/19 18:35,"32 River St, Los Angeles, CA 90001" +157571,Bose SoundSport Headphones,1,99.99,01/23/19 19:43,"207 Johnson St, San Francisco, CA 94016" +157572,Wired Headphones,1,11.99,01/21/19 12:24,"341 Adams St, Los Angeles, CA 90001" +157573,AAA Batteries (4-pack),1,2.99,01/26/19 15:57,"74 Hill St, Austin, TX 73301" +157574,34in Ultrawide Monitor,1,379.99,01/16/19 12:30,"743 West St, Los Angeles, CA 90001" +157575,27in FHD Monitor,1,149.99,01/13/19 15:28,"808 Johnson St, New York City, NY 10001" +157576,27in FHD Monitor,1,149.99,01/23/19 16:57,"928 Wilson St, San Francisco, CA 94016" +157577,Wired Headphones,1,11.99,01/01/19 12:28,"461 Meadow St, Atlanta, GA 30301" +157578,Apple Airpods Headphones,1,150,01/04/19 21:26,"308 Jackson St, Boston, MA 02215" +157579,USB-C Charging Cable,1,11.95,01/07/19 21:46,"773 Pine St, San Francisco, CA 94016" +157580,Lightning Charging Cable,1,14.95,01/15/19 21:24,"39 11th St, Los Angeles, CA 90001" +157581,Lightning Charging Cable,1,14.95,01/29/19 18:04,"955 Church St, Portland, OR 97035" +157582,AA Batteries (4-pack),1,3.84,01/31/19 11:03,"929 Ridge St, San Francisco, CA 94016" +157583,Apple Airpods Headphones,1,150,01/22/19 19:35,"926 Forest St, Boston, MA 02215" +157584,AAA Batteries (4-pack),1,2.99,01/17/19 10:06,"614 Johnson St, Seattle, WA 98101" +157585,Lightning Charging Cable,1,14.95,01/20/19 20:08,"81 11th St, Austin, TX 73301" +157586,Bose SoundSport Headphones,1,99.99,01/29/19 18:54,"868 Willow St, Atlanta, GA 30301" +157587,Wired Headphones,1,11.99,01/03/19 20:43,"392 Lakeview St, Los Angeles, CA 90001" +157588,34in Ultrawide Monitor,1,379.99,01/19/19 20:22,"540 1st St, Los Angeles, CA 90001" +157589,Wired Headphones,1,11.99,01/16/19 12:04,"804 14th St, Seattle, WA 98101" +157590,Bose SoundSport Headphones,1,99.99,01/01/19 20:28,"495 Johnson St, Seattle, WA 98101" +157591,Lightning Charging Cable,1,14.95,01/04/19 19:03,"379 4th St, Los Angeles, CA 90001" +157592,Lightning Charging Cable,2,14.95,01/25/19 21:36,"479 South St, Portland, OR 97035" +157593,Bose SoundSport Headphones,1,99.99,01/06/19 08:53,"119 12th St, Boston, MA 02215" +157594,Apple Airpods Headphones,1,150,01/31/19 08:03,"310 Park St, Portland, ME 04101" +157595,USB-C Charging Cable,2,11.95,01/17/19 15:41,"863 Spruce St, Los Angeles, CA 90001" +157596,Lightning Charging Cable,1,14.95,01/29/19 16:19,"797 Spruce St, Seattle, WA 98101" +157597,Apple Airpods Headphones,1,150,01/21/19 23:31,"958 North St, Seattle, WA 98101" +157598,Wired Headphones,1,11.99,01/04/19 16:36,"504 7th St, Seattle, WA 98101" +157599,34in Ultrawide Monitor,1,379.99,01/14/19 10:04,"795 Pine St, Seattle, WA 98101" +157600,Bose SoundSport Headphones,1,99.99,01/28/19 14:50,"937 Spruce St, San Francisco, CA 94016" +157601,Google Phone,1,600,01/24/19 16:12,"380 12th St, Austin, TX 73301" +157601,Wired Headphones,1,11.99,01/24/19 16:12,"380 12th St, Austin, TX 73301" +157602,AAA Batteries (4-pack),2,2.99,01/23/19 20:55,"676 10th St, Los Angeles, CA 90001" +157603,Apple Airpods Headphones,1,150,01/02/19 17:19,"220 Washington St, Boston, MA 02215" +157604,AAA Batteries (4-pack),1,2.99,01/21/19 15:17,"806 Willow St, Boston, MA 02215" +157605,AA Batteries (4-pack),1,3.84,01/15/19 20:31,"927 Dogwood St, New York City, NY 10001" +157606,AAA Batteries (4-pack),1,2.99,01/22/19 17:46,"826 14th St, San Francisco, CA 94016" +157607,ThinkPad Laptop,1,999.99,01/28/19 03:46,"619 11th St, New York City, NY 10001" +157608,ThinkPad Laptop,1,999.99,01/16/19 23:01,"276 Cherry St, Atlanta, GA 30301" +157609,AAA Batteries (4-pack),1,2.99,01/18/19 18:35,"208 9th St, Portland, ME 04101" +157610,Bose SoundSport Headphones,1,99.99,01/03/19 11:23,"449 Wilson St, Dallas, TX 75001" +157611,Lightning Charging Cable,1,14.95,01/31/19 16:24,"624 Cherry St, New York City, NY 10001" +157612,Wired Headphones,1,11.99,01/25/19 19:00,"594 4th St, San Francisco, CA 94016" +157613,34in Ultrawide Monitor,1,379.99,01/14/19 15:50,"955 9th St, Boston, MA 02215" +157614,34in Ultrawide Monitor,1,379.99,01/04/19 12:57,"411 Willow St, New York City, NY 10001" +157615,27in FHD Monitor,1,149.99,01/10/19 17:42,"224 2nd St, Portland, ME 04101" +157616,Bose SoundSport Headphones,1,99.99,01/21/19 14:44,"239 Willow St, Los Angeles, CA 90001" +157617,AAA Batteries (4-pack),1,2.99,01/21/19 14:00,"709 9th St, Portland, OR 97035" +157618,Macbook Pro Laptop,1,1700,01/27/19 09:38,"165 Walnut St, Austin, TX 73301" +157619,AAA Batteries (4-pack),1,2.99,01/25/19 22:11,"150 Meadow St, New York City, NY 10001" +157620,Apple Airpods Headphones,1,150,01/26/19 18:22,"517 Spruce St, Boston, MA 02215" +157621,Wired Headphones,1,11.99,01/22/19 05:21,"996 Jackson St, Dallas, TX 75001" +157622,34in Ultrawide Monitor,1,379.99,01/18/19 22:09,"642 2nd St, New York City, NY 10001" +157623,Lightning Charging Cable,1,14.95,01/03/19 08:13,"251 Maple St, Portland, ME 04101" +157624,Lightning Charging Cable,1,14.95,01/09/19 16:08,"733 Willow St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +157625,USB-C Charging Cable,2,11.95,01/23/19 21:07,"951 Willow St, Los Angeles, CA 90001" +157626,Wired Headphones,1,11.99,01/30/19 06:54,"429 Ridge St, San Francisco, CA 94016" +157627,ThinkPad Laptop,1,999.99,01/02/19 20:53,"655 12th St, Los Angeles, CA 90001" +157628,Lightning Charging Cable,1,14.95,01/22/19 12:22,"58 5th St, Seattle, WA 98101" +157629,USB-C Charging Cable,1,11.95,01/20/19 15:16,"332 Spruce St, San Francisco, CA 94016" +157630,AAA Batteries (4-pack),1,2.99,01/06/19 16:15,"663 North St, San Francisco, CA 94016" +157631,Flatscreen TV,1,300,01/23/19 18:48,"364 Park St, San Francisco, CA 94016" +157632,Lightning Charging Cable,1,14.95,01/27/19 23:31,"152 14th St, Seattle, WA 98101" +157633,34in Ultrawide Monitor,1,379.99,01/13/19 00:28,"367 8th St, Dallas, TX 75001" +157634,Macbook Pro Laptop,1,1700,01/15/19 09:49,"691 South St, Atlanta, GA 30301" +157635,Apple Airpods Headphones,1,150,01/06/19 10:06,"735 Forest St, San Francisco, CA 94016" +157636,Lightning Charging Cable,1,14.95,01/20/19 20:33,"506 Lincoln St, Los Angeles, CA 90001" +157637,ThinkPad Laptop,1,999.99,01/19/19 19:19,"674 14th St, Los Angeles, CA 90001" +157638,AA Batteries (4-pack),3,3.84,01/29/19 22:54,"779 1st St, San Francisco, CA 94016" +157639,27in 4K Gaming Monitor,1,389.99,01/15/19 15:10,"216 2nd St, Los Angeles, CA 90001" +157640,34in Ultrawide Monitor,1,379.99,01/11/19 17:40,"405 Forest St, Austin, TX 73301" +157641,Google Phone,1,600,01/26/19 19:55,"382 Adams St, Atlanta, GA 30301" +157642,Lightning Charging Cable,1,14.95,01/25/19 09:34,"408 Lake St, Seattle, WA 98101" +157643,27in 4K Gaming Monitor,1,389.99,01/18/19 15:07,"899 11th St, Boston, MA 02215" +157644,Lightning Charging Cable,1,14.95,01/15/19 17:38,"886 7th St, New York City, NY 10001" +157645,iPhone,1,700,01/07/19 01:15,"107 Madison St, Portland, ME 04101" +157645,Wired Headphones,1,11.99,01/07/19 01:15,"107 Madison St, Portland, ME 04101" +157646,Bose SoundSport Headphones,1,99.99,01/25/19 16:29,"751 10th St, Dallas, TX 75001" +157647,Lightning Charging Cable,1,14.95,01/06/19 10:06,"260 Ridge St, Dallas, TX 75001" +157648,AAA Batteries (4-pack),2,2.99,01/17/19 01:12,"343 Willow St, Portland, OR 97035" +157649,Bose SoundSport Headphones,1,99.99,01/03/19 09:22,"229 13th St, San Francisco, CA 94016" +157650,AAA Batteries (4-pack),1,2.99,01/16/19 04:35,"666 Willow St, Seattle, WA 98101" +157651,27in 4K Gaming Monitor,1,389.99,01/07/19 08:15,"520 Church St, San Francisco, CA 94016" +157652,Apple Airpods Headphones,1,150,01/15/19 13:00,"98 12th St, San Francisco, CA 94016" +157653,Lightning Charging Cable,1,14.95,01/09/19 21:28,"905 6th St, New York City, NY 10001" +157654,34in Ultrawide Monitor,1,379.99,01/15/19 09:01,"867 Washington St, San Francisco, CA 94016" +157655,27in 4K Gaming Monitor,1,389.99,01/01/19 13:42,"215 North St, Seattle, WA 98101" +157656,iPhone,1,700,01/15/19 09:21,"445 14th St, New York City, NY 10001" +157656,Lightning Charging Cable,1,14.95,01/15/19 09:21,"445 14th St, New York City, NY 10001" +157657,AAA Batteries (4-pack),2,2.99,01/17/19 19:11,"340 Elm St, Boston, MA 02215" +157658,iPhone,1,700,01/09/19 14:09,"729 8th St, Los Angeles, CA 90001" +157659,AAA Batteries (4-pack),2,2.99,01/09/19 11:13,"912 Center St, San Francisco, CA 94016" +157660,Wired Headphones,1,11.99,01/30/19 13:12,"333 North St, San Francisco, CA 94016" +157661,AA Batteries (4-pack),2,3.84,01/27/19 15:10,"609 Sunset St, Seattle, WA 98101" +157662,Lightning Charging Cable,1,14.95,01/15/19 05:50,"958 Lincoln St, Seattle, WA 98101" +157663,AAA Batteries (4-pack),1,2.99,01/21/19 18:59,"806 14th St, San Francisco, CA 94016" +157664,Macbook Pro Laptop,1,1700,01/31/19 09:05,"920 Church St, Boston, MA 02215" +157665,AA Batteries (4-pack),1,3.84,01/29/19 14:02,"840 10th St, Los Angeles, CA 90001" +157666,AAA Batteries (4-pack),2,2.99,01/28/19 13:45,"398 14th St, Los Angeles, CA 90001" +157667,USB-C Charging Cable,1,11.95,01/09/19 11:36,"206 Forest St, Austin, TX 73301" +157668,AAA Batteries (4-pack),2,2.99,01/05/19 11:24,"661 Elm St, Los Angeles, CA 90001" +157669,ThinkPad Laptop,1,999.99,01/25/19 13:26,"415 Wilson St, San Francisco, CA 94016" +157670,20in Monitor,1,109.99,01/07/19 13:42,"890 1st St, Dallas, TX 75001" +157671,Bose SoundSport Headphones,1,99.99,01/10/19 07:06,"573 South St, Portland, ME 04101" +157672,AA Batteries (4-pack),1,3.84,01/08/19 08:19,"803 Lincoln St, San Francisco, CA 94016" +157673,34in Ultrawide Monitor,1,379.99,01/30/19 22:19,"478 Wilson St, Atlanta, GA 30301" +157674,AAA Batteries (4-pack),2,2.99,01/08/19 18:15,"566 13th St, Dallas, TX 75001" +157675,iPhone,1,700,01/15/19 22:42,"201 12th St, Dallas, TX 75001" +157676,Macbook Pro Laptop,1,1700,01/15/19 19:29,"801 Center St, Boston, MA 02215" +157677,Bose SoundSport Headphones,1,99.99,01/27/19 01:58,"501 Jackson St, Atlanta, GA 30301" +,,,,, +157678,Wired Headphones,1,11.99,01/06/19 14:09,"613 9th St, Los Angeles, CA 90001" +157679,Google Phone,1,600,01/18/19 19:38,"754 Willow St, San Francisco, CA 94016" +157680,27in 4K Gaming Monitor,1,389.99,01/18/19 15:54,"404 North St, Los Angeles, CA 90001" +157681,Wired Headphones,1,11.99,01/03/19 10:15,"671 Highland St, Dallas, TX 75001" +157682,Wired Headphones,1,11.99,01/13/19 22:21,"760 8th St, Los Angeles, CA 90001" +157683,AAA Batteries (4-pack),1,2.99,01/17/19 17:25,"668 Forest St, Austin, TX 73301" +157684,Apple Airpods Headphones,1,150,01/04/19 13:08,"43 South St, Austin, TX 73301" +157685,Apple Airpods Headphones,1,150,01/22/19 13:03,"830 Meadow St, San Francisco, CA 94016" +157686,Apple Airpods Headphones,1,150,01/24/19 14:16,"94 Forest St, San Francisco, CA 94016" +157687,AAA Batteries (4-pack),1,2.99,01/01/19 13:21,"700 Hill St, Dallas, TX 75001" +157688,Apple Airpods Headphones,1,150,01/03/19 21:23,"117 Washington St, Los Angeles, CA 90001" +157689,Apple Airpods Headphones,1,150,01/02/19 17:37,"891 Ridge St, New York City, NY 10001" +157690,USB-C Charging Cable,1,11.95,01/14/19 12:00,"981 Church St, Dallas, TX 75001" +157691,Lightning Charging Cable,1,14.95,01/24/19 19:36,"918 Church St, San Francisco, CA 94016" +157692,Wired Headphones,1,11.99,01/05/19 13:33,"993 Cherry St, Boston, MA 02215" +157693,Wired Headphones,1,11.99,01/30/19 08:10,"603 Highland St, Los Angeles, CA 90001" +157694,20in Monitor,1,109.99,01/21/19 14:46,"253 Hill St, Boston, MA 02215" +157695,Apple Airpods Headphones,1,150,01/21/19 14:01,"202 Adams St, Los Angeles, CA 90001" +157696,AA Batteries (4-pack),1,3.84,01/21/19 10:15,"578 Church St, Atlanta, GA 30301" +157697,Lightning Charging Cable,1,14.95,01/04/19 21:13,"442 4th St, Boston, MA 02215" +157698,Lightning Charging Cable,1,14.95,01/09/19 01:00,"96 Pine St, Los Angeles, CA 90001" +157699,Lightning Charging Cable,2,14.95,01/15/19 20:33,"299 14th St, Dallas, TX 75001" +157700,AA Batteries (4-pack),3,3.84,01/20/19 15:38,"589 Dogwood St, New York City, NY 10001" +157701,USB-C Charging Cable,1,11.95,01/12/19 13:21,"644 Madison St, Los Angeles, CA 90001" +157702,Bose SoundSport Headphones,1,99.99,01/03/19 08:51,"377 6th St, New York City, NY 10001" +157703,AA Batteries (4-pack),1,3.84,01/05/19 09:34,"13 Adams St, New York City, NY 10001" +157704,AA Batteries (4-pack),1,3.84,01/23/19 17:13,"735 4th St, San Francisco, CA 94016" +157705,USB-C Charging Cable,1,11.95,01/01/19 22:20,"228 Adams St, Boston, MA 02215" +157706,Apple Airpods Headphones,1,150,01/23/19 22:07,"402 Lincoln St, New York City, NY 10001" +157707,20in Monitor,1,109.99,01/05/19 16:58,"759 6th St, San Francisco, CA 94016" +157708,AAA Batteries (4-pack),1,2.99,01/13/19 10:33,"221 Adams St, Los Angeles, CA 90001" +157709,AA Batteries (4-pack),2,3.84,01/17/19 22:21,"164 2nd St, New York City, NY 10001" +157710,AA Batteries (4-pack),1,3.84,01/02/19 10:59,"174 Lincoln St, Seattle, WA 98101" +157711,Bose SoundSport Headphones,1,99.99,01/07/19 10:21,"432 6th St, Los Angeles, CA 90001" +157712,Macbook Pro Laptop,1,1700,01/24/19 10:32,"578 Wilson St, Boston, MA 02215" +157713,USB-C Charging Cable,1,11.95,01/16/19 13:23,"17 Meadow St, San Francisco, CA 94016" +157714,Apple Airpods Headphones,1,150,01/12/19 19:35,"215 Madison St, Atlanta, GA 30301" +157715,Wired Headphones,1,11.99,01/09/19 12:52,"349 2nd St, New York City, NY 10001" +157716,Wired Headphones,2,11.99,01/10/19 20:16,"958 8th St, Dallas, TX 75001" +157717,USB-C Charging Cable,1,11.95,01/06/19 10:41,"905 Main St, San Francisco, CA 94016" +157718,ThinkPad Laptop,1,999.99,01/08/19 18:13,"798 Wilson St, Dallas, TX 75001" +157719,20in Monitor,1,109.99,01/23/19 15:38,"368 14th St, Atlanta, GA 30301" +157720,Wired Headphones,1,11.99,01/11/19 13:25,"34 Madison St, San Francisco, CA 94016" +157721,Wired Headphones,2,11.99,01/15/19 14:24,"644 Jefferson St, Boston, MA 02215" +157722,20in Monitor,1,109.99,01/18/19 12:02,"645 13th St, Los Angeles, CA 90001" +157723,Wired Headphones,1,11.99,01/10/19 12:37,"409 Ridge St, Atlanta, GA 30301" +157724,Macbook Pro Laptop,1,1700,01/11/19 14:35,"205 Lincoln St, Boston, MA 02215" +157725,34in Ultrawide Monitor,1,379.99,01/01/19 10:56,"937 West St, Seattle, WA 98101" +157726,AA Batteries (4-pack),1,3.84,01/21/19 07:42,"78 13th St, San Francisco, CA 94016" +157727,Bose SoundSport Headphones,1,99.99,01/25/19 14:43,"848 4th St, New York City, NY 10001" +157728,Lightning Charging Cable,1,14.95,01/28/19 20:10,"36 Cedar St, Boston, MA 02215" +157729,LG Washing Machine,1,600.0,01/17/19 19:43,"528 West St, Los Angeles, CA 90001" +157730,USB-C Charging Cable,1,11.95,01/26/19 15:10,"718 Madison St, Los Angeles, CA 90001" +157731,USB-C Charging Cable,1,11.95,01/01/19 21:15,"276 Spruce St, Boston, MA 02215" +157732,AA Batteries (4-pack),4,3.84,01/12/19 14:45,"810 Forest St, Portland, ME 04101" +157733,iPhone,1,700,01/24/19 08:45,"162 Walnut St, San Francisco, CA 94016" +157734,Lightning Charging Cable,1,14.95,01/27/19 15:12,"241 Adams St, Boston, MA 02215" +157735,AA Batteries (4-pack),1,3.84,01/16/19 06:49,"253 Spruce St, Seattle, WA 98101" +157736,34in Ultrawide Monitor,1,379.99,01/10/19 11:22,"394 Walnut St, Atlanta, GA 30301" +157737,AA Batteries (4-pack),1,3.84,01/12/19 06:01,"856 Spruce St, New York City, NY 10001" +157738,AA Batteries (4-pack),1,3.84,01/26/19 18:40,"153 Highland St, Seattle, WA 98101" +157739,Wired Headphones,1,11.99,01/23/19 23:05,"29 Dogwood St, Boston, MA 02215" +157740,AAA Batteries (4-pack),1,2.99,01/17/19 23:53,"842 Wilson St, Boston, MA 02215" +157741,AAA Batteries (4-pack),1,2.99,01/08/19 14:28,"820 Jackson St, San Francisco, CA 94016" +157742,Apple Airpods Headphones,1,150,01/19/19 19:54,"253 12th St, Atlanta, GA 30301" +157743,iPhone,1,700,01/28/19 19:59,"978 6th St, Austin, TX 73301" +157744,iPhone,1,700,01/23/19 17:38,"545 Cherry St, Atlanta, GA 30301" +157745,Apple Airpods Headphones,1,150,01/18/19 22:00,"207 6th St, Boston, MA 02215" +157746,27in FHD Monitor,1,149.99,01/12/19 13:10,"667 Adams St, Los Angeles, CA 90001" +157747,Bose SoundSport Headphones,1,99.99,01/16/19 15:57,"852 West St, Boston, MA 02215" +157748,Bose SoundSport Headphones,1,99.99,01/28/19 14:17,"202 Willow St, Dallas, TX 75001" +157749,Wired Headphones,1,11.99,01/29/19 15:40,"179 Dogwood St, Atlanta, GA 30301" +157750,AA Batteries (4-pack),4,3.84,01/07/19 12:24,"375 11th St, Los Angeles, CA 90001" +157751,Bose SoundSport Headphones,1,99.99,01/12/19 19:57,"661 Willow St, New York City, NY 10001" +157752,AA Batteries (4-pack),1,3.84,01/07/19 20:53,"285 5th St, Portland, OR 97035" +157753,27in 4K Gaming Monitor,1,389.99,01/26/19 10:44,"965 9th St, San Francisco, CA 94016" +157754,Wired Headphones,1,11.99,01/31/19 20:58,"684 Maple St, Boston, MA 02215" +157755,AAA Batteries (4-pack),1,2.99,01/30/19 13:19,"360 Meadow St, Los Angeles, CA 90001" +157756,Flatscreen TV,1,300,01/09/19 14:48,"784 Center St, San Francisco, CA 94016" +157757,USB-C Charging Cable,2,11.95,01/11/19 10:04,"400 Meadow St, San Francisco, CA 94016" +157758,27in FHD Monitor,1,149.99,01/05/19 21:34,"966 Church St, San Francisco, CA 94016" +157759,Lightning Charging Cable,1,14.95,01/17/19 15:39,"645 Main St, Seattle, WA 98101" +157760,Apple Airpods Headphones,1,150,01/05/19 11:41,"348 10th St, Dallas, TX 75001" +157761,27in FHD Monitor,1,149.99,01/10/19 10:44,"861 Church St, San Francisco, CA 94016" +157762,USB-C Charging Cable,1,11.95,01/12/19 19:37,"271 Hickory St, Dallas, TX 75001" +157763,Bose SoundSport Headphones,1,99.99,01/23/19 21:35,"587 Park St, Boston, MA 02215" +157764,AAA Batteries (4-pack),1,2.99,01/09/19 22:41,"629 Madison St, Dallas, TX 75001" +157765,USB-C Charging Cable,1,11.95,01/18/19 00:13,"786 Jefferson St, Dallas, TX 75001" +157766,Vareebadd Phone,1,400,01/28/19 22:02,"374 Dogwood St, Dallas, TX 75001" +157767,Apple Airpods Headphones,1,150,01/27/19 21:15,"19 Lake St, San Francisco, CA 94016" +157768,iPhone,1,700,01/28/19 15:43,"818 Forest St, Portland, ME 04101" +157769,ThinkPad Laptop,1,999.99,01/30/19 22:15,"621 Meadow St, San Francisco, CA 94016" +157770,ThinkPad Laptop,1,999.99,01/03/19 11:45,"564 12th St, San Francisco, CA 94016" +157771,Apple Airpods Headphones,1,150,01/18/19 21:08,"699 Meadow St, Atlanta, GA 30301" +157772,Macbook Pro Laptop,1,1700,01/28/19 10:50,"194 4th St, New York City, NY 10001" +157773,iPhone,1,700,02/01/19 00:05,"759 Adams St, New York City, NY 10001" +157774,Lightning Charging Cable,1,14.95,01/22/19 15:34,"342 7th St, Dallas, TX 75001" +157775,Bose SoundSport Headphones,1,99.99,01/26/19 15:35,"717 1st St, Dallas, TX 75001" +157776,AAA Batteries (4-pack),2,2.99,01/30/19 13:57,"599 9th St, San Francisco, CA 94016" +157777,AA Batteries (4-pack),1,3.84,01/19/19 13:22,"477 Ridge St, New York City, NY 10001" +157778,Wired Headphones,1,11.99,01/06/19 21:33,"99 Park St, San Francisco, CA 94016" +157779,Lightning Charging Cable,1,14.95,01/16/19 20:29,"180 11th St, New York City, NY 10001" +157780,Bose SoundSport Headphones,1,99.99,01/24/19 17:00,"920 11th St, Los Angeles, CA 90001" +157781,Bose SoundSport Headphones,1,99.99,01/26/19 12:03,"811 West St, Seattle, WA 98101" +157782,Apple Airpods Headphones,1,150,01/05/19 08:57,"155 Washington St, Seattle, WA 98101" +157783,27in FHD Monitor,1,149.99,01/29/19 22:09,"477 Meadow St, San Francisco, CA 94016" +157784,Google Phone,1,600,01/26/19 11:17,"257 Washington St, Seattle, WA 98101" +157784,USB-C Charging Cable,1,11.95,01/26/19 11:17,"257 Washington St, Seattle, WA 98101" +157785,Lightning Charging Cable,1,14.95,01/30/19 08:22,"294 4th St, San Francisco, CA 94016" +157786,Wired Headphones,1,11.99,01/09/19 15:44,"184 Sunset St, San Francisco, CA 94016" +157787,Google Phone,1,600,01/30/19 11:42,"119 4th St, San Francisco, CA 94016" +157788,27in FHD Monitor,1,149.99,01/01/19 20:06,"155 Wilson St, San Francisco, CA 94016" +157789,Wired Headphones,1,11.99,01/25/19 15:05,"880 River St, Los Angeles, CA 90001" +157790,20in Monitor,1,109.99,01/06/19 23:01,"758 7th St, Los Angeles, CA 90001" +157791,AAA Batteries (4-pack),1,2.99,01/20/19 19:45,"221 Willow St, San Francisco, CA 94016" +157792,AA Batteries (4-pack),1,3.84,01/13/19 18:55,"458 Jefferson St, Dallas, TX 75001" +157793,Wired Headphones,1,11.99,01/10/19 19:26,"165 Wilson St, New York City, NY 10001" +157794,Lightning Charging Cable,1,14.95,01/18/19 14:46,"922 13th St, Atlanta, GA 30301" +157795,34in Ultrawide Monitor,1,379.99,01/29/19 04:46,"797 North St, Los Angeles, CA 90001" +157796,USB-C Charging Cable,1,11.95,01/21/19 13:59,"615 Willow St, San Francisco, CA 94016" +157797,Apple Airpods Headphones,1,150,01/21/19 20:12,"874 6th St, Los Angeles, CA 90001" +157798,Apple Airpods Headphones,1,150,01/11/19 13:13,"547 West St, Seattle, WA 98101" +157799,27in 4K Gaming Monitor,1,389.99,01/28/19 21:00,"304 Adams St, Atlanta, GA 30301" +157800,Lightning Charging Cable,3,14.95,01/08/19 16:23,"67 Lakeview St, San Francisco, CA 94016" +157801,Bose SoundSport Headphones,1,99.99,01/25/19 08:12,"76 4th St, Boston, MA 02215" +157802,Lightning Charging Cable,1,14.95,01/18/19 09:31,"85 13th St, San Francisco, CA 94016" +157803,Lightning Charging Cable,1,14.95,01/09/19 20:57,"717 14th St, Dallas, TX 75001" +157804,AA Batteries (4-pack),3,3.84,01/08/19 07:24,"686 Lake St, Boston, MA 02215" +157805,Google Phone,1,600,01/25/19 20:30,"396 Lakeview St, Atlanta, GA 30301" +157806,Lightning Charging Cable,1,14.95,01/10/19 22:32,"182 Church St, San Francisco, CA 94016" +157807,Wired Headphones,1,11.99,01/11/19 12:35,"376 8th St, Seattle, WA 98101" +157808,Bose SoundSport Headphones,1,99.99,01/19/19 10:31,"745 13th St, San Francisco, CA 94016" +157809,USB-C Charging Cable,1,11.95,01/22/19 07:11,"155 South St, New York City, NY 10001" +157810,USB-C Charging Cable,1,11.95,01/06/19 18:35,"529 Spruce St, Seattle, WA 98101" +157811,Lightning Charging Cable,1,14.95,01/24/19 15:13,"35 2nd St, San Francisco, CA 94016" +157812,Bose SoundSport Headphones,1,99.99,01/08/19 06:45,"262 Park St, Los Angeles, CA 90001" +157813,Lightning Charging Cable,1,14.95,01/10/19 21:51,"243 Church St, Boston, MA 02215" +157814,Lightning Charging Cable,1,14.95,01/30/19 22:24,"859 2nd St, Dallas, TX 75001" +157815,ThinkPad Laptop,1,999.99,01/24/19 22:31,"55 Washington St, Seattle, WA 98101" +157816,Lightning Charging Cable,1,14.95,01/19/19 16:40,"430 11th St, Dallas, TX 75001" +157817,Lightning Charging Cable,1,14.95,01/13/19 12:12,"241 Elm St, Los Angeles, CA 90001" +157818,34in Ultrawide Monitor,1,379.99,01/19/19 12:07,"96 Elm St, San Francisco, CA 94016" +157819,Lightning Charging Cable,1,14.95,01/30/19 22:00,"656 Johnson St, Austin, TX 73301" +157820,27in 4K Gaming Monitor,1,389.99,01/08/19 12:42,"837 1st St, San Francisco, CA 94016" +157821,Apple Airpods Headphones,1,150,01/23/19 20:24,"328 Wilson St, Atlanta, GA 30301" +157822,34in Ultrawide Monitor,1,379.99,01/04/19 16:38,"898 Jackson St, Austin, TX 73301" +157823,AA Batteries (4-pack),1,3.84,01/25/19 16:38,"935 Sunset St, Atlanta, GA 30301" +157824,20in Monitor,1,109.99,01/18/19 17:04,"279 Cedar St, Portland, OR 97035" +157825,Google Phone,1,600,01/23/19 09:50,"315 2nd St, Austin, TX 73301" +157826,USB-C Charging Cable,2,11.95,01/03/19 18:57,"558 Meadow St, Portland, ME 04101" +157827,ThinkPad Laptop,1,999.99,01/23/19 16:34,"344 Jefferson St, Austin, TX 73301" +157828,AA Batteries (4-pack),1,3.84,01/16/19 18:20,"464 4th St, San Francisco, CA 94016" +157829,Vareebadd Phone,1,400,01/13/19 09:13,"278 Lake St, San Francisco, CA 94016" +157830,Bose SoundSport Headphones,1,99.99,01/04/19 15:18,"402 Highland St, San Francisco, CA 94016" +157831,34in Ultrawide Monitor,1,379.99,01/24/19 09:32,"434 Lakeview St, Boston, MA 02215" +157832,Wired Headphones,1,11.99,01/29/19 07:46,"604 11th St, Austin, TX 73301" +157833,AA Batteries (4-pack),1,3.84,01/08/19 22:01,"90 12th St, Seattle, WA 98101" +157834,USB-C Charging Cable,1,11.95,01/22/19 02:19,"507 Meadow St, Los Angeles, CA 90001" +157835,Macbook Pro Laptop,1,1700,01/11/19 16:50,"36 13th St, Seattle, WA 98101" +157836,USB-C Charging Cable,2,11.95,01/28/19 13:13,"777 Chestnut St, Dallas, TX 75001" +157837,AA Batteries (4-pack),1,3.84,01/26/19 19:22,"492 Elm St, Los Angeles, CA 90001" +157838,AAA Batteries (4-pack),2,2.99,01/16/19 08:48,"278 7th St, Los Angeles, CA 90001" +157839,iPhone,1,700,01/22/19 12:45,"25 6th St, San Francisco, CA 94016" +157839,Lightning Charging Cable,1,14.95,01/22/19 12:45,"25 6th St, San Francisco, CA 94016" +157840,27in 4K Gaming Monitor,1,389.99,01/06/19 17:16,"420 Church St, Portland, ME 04101" +157841,Lightning Charging Cable,1,14.95,01/30/19 09:09,"461 Hill St, Seattle, WA 98101" +157842,Bose SoundSport Headphones,1,99.99,01/07/19 17:35,"25 11th St, San Francisco, CA 94016" +157843,Lightning Charging Cable,1,14.95,01/26/19 18:12,"80 Center St, San Francisco, CA 94016" +157844,Lightning Charging Cable,1,14.95,01/22/19 21:01,"176 Willow St, San Francisco, CA 94016" +157845,Lightning Charging Cable,1,14.95,01/19/19 21:59,"702 9th St, Seattle, WA 98101" +157846,Apple Airpods Headphones,1,150,01/18/19 02:04,"259 Park St, Boston, MA 02215" +157847,AAA Batteries (4-pack),1,2.99,01/21/19 20:36,"420 12th St, Boston, MA 02215" +157848,20in Monitor,1,109.99,01/01/19 14:12,"692 Main St, Portland, ME 04101" +157849,AA Batteries (4-pack),1,3.84,01/23/19 15:00,"827 Center St, San Francisco, CA 94016" +157850,27in 4K Gaming Monitor,1,389.99,01/29/19 14:04,"975 Center St, Seattle, WA 98101" +157851,USB-C Charging Cable,1,11.95,01/25/19 15:14,"666 Adams St, Los Angeles, CA 90001" +157852,USB-C Charging Cable,1,11.95,01/11/19 20:33,"677 2nd St, San Francisco, CA 94016" +157853,AAA Batteries (4-pack),1,2.99,01/14/19 15:22,"220 Forest St, New York City, NY 10001" +157854,USB-C Charging Cable,1,11.95,01/27/19 21:58,"245 Elm St, San Francisco, CA 94016" +157855,Apple Airpods Headphones,1,150,01/31/19 12:55,"294 Cherry St, Atlanta, GA 30301" +157856,AAA Batteries (4-pack),1,2.99,01/27/19 10:35,"712 6th St, New York City, NY 10001" +157857,Apple Airpods Headphones,1,150,01/02/19 17:04,"926 Center St, San Francisco, CA 94016" +157858,AAA Batteries (4-pack),1,2.99,01/04/19 19:29,"668 Ridge St, Seattle, WA 98101" +157859,Lightning Charging Cable,1,14.95,01/29/19 16:26,"585 11th St, Seattle, WA 98101" +157860,Bose SoundSport Headphones,1,99.99,01/17/19 09:09,"940 Wilson St, Atlanta, GA 30301" +157861,Lightning Charging Cable,1,14.95,01/30/19 21:04,"68 5th St, San Francisco, CA 94016" +157862,Bose SoundSport Headphones,1,99.99,01/06/19 20:59,"185 Pine St, San Francisco, CA 94016" +157863,AAA Batteries (4-pack),1,2.99,01/22/19 15:19,"276 Jackson St, New York City, NY 10001" +157864,USB-C Charging Cable,1,11.95,01/09/19 19:08,"992 4th St, San Francisco, CA 94016" +157865,Apple Airpods Headphones,1,150,01/10/19 15:46,"890 6th St, San Francisco, CA 94016" +157866,AA Batteries (4-pack),1,3.84,01/27/19 13:58,"481 Lincoln St, Los Angeles, CA 90001" +157867,Lightning Charging Cable,1,14.95,01/25/19 17:19,"538 Chestnut St, New York City, NY 10001" +157868,34in Ultrawide Monitor,1,379.99,01/24/19 16:00,"362 12th St, New York City, NY 10001" +157869,Wired Headphones,1,11.99,01/11/19 21:25,"50 Washington St, Boston, MA 02215" +157870,Apple Airpods Headphones,1,150,01/28/19 13:00,"238 River St, Los Angeles, CA 90001" +157871,27in FHD Monitor,1,149.99,01/11/19 22:54,"689 Main St, Seattle, WA 98101" +157872,AAA Batteries (4-pack),1,2.99,01/10/19 17:59,"978 Elm St, San Francisco, CA 94016" +157873,AAA Batteries (4-pack),1,2.99,01/21/19 14:02,"230 South St, Los Angeles, CA 90001" +157874,Lightning Charging Cable,1,14.95,01/01/19 10:54,"31 Elm St, San Francisco, CA 94016" +157875,USB-C Charging Cable,1,11.95,01/27/19 19:47,"29 Forest St, Boston, MA 02215" +157876,Lightning Charging Cable,1,14.95,01/27/19 16:51,"591 Jackson St, San Francisco, CA 94016" +157877,Wired Headphones,1,11.99,01/09/19 16:04,"160 Lake St, San Francisco, CA 94016" +157878,iPhone,1,700,01/22/19 11:55,"441 Center St, Los Angeles, CA 90001" +157878,Wired Headphones,1,11.99,01/22/19 11:55,"441 Center St, Los Angeles, CA 90001" +157879,Lightning Charging Cable,1,14.95,01/30/19 21:49,"309 Johnson St, San Francisco, CA 94016" +,,,,, +157880,Bose SoundSport Headphones,1,99.99,01/02/19 19:40,"731 Cedar St, Dallas, TX 75001" +157881,Lightning Charging Cable,1,14.95,01/11/19 07:56,"472 Lincoln St, Los Angeles, CA 90001" +157882,USB-C Charging Cable,1,11.95,01/14/19 00:05,"371 Church St, Boston, MA 02215" +157883,Flatscreen TV,1,300,01/17/19 07:30,"905 5th St, New York City, NY 10001" +157884,USB-C Charging Cable,1,11.95,01/02/19 17:42,"839 Jefferson St, Boston, MA 02215" +157885,Lightning Charging Cable,1,14.95,01/16/19 08:52,"681 7th St, Austin, TX 73301" +157886,Wired Headphones,1,11.99,01/27/19 09:19,"155 Hickory St, New York City, NY 10001" +157887,Apple Airpods Headphones,1,150,01/17/19 12:21,"694 Johnson St, Atlanta, GA 30301" +157888,Vareebadd Phone,1,400,01/18/19 11:25,"102 4th St, Boston, MA 02215" +157889,Bose SoundSport Headphones,1,99.99,01/22/19 05:41,"99 1st St, Boston, MA 02215" +157890,iPhone,1,700,01/30/19 14:27,"817 Johnson St, New York City, NY 10001" +157891,34in Ultrawide Monitor,1,379.99,01/11/19 11:38,"336 Jefferson St, New York City, NY 10001" +157892,AA Batteries (4-pack),1,3.84,01/24/19 00:37,"960 River St, San Francisco, CA 94016" +157893,iPhone,1,700,01/16/19 11:11,"803 Cherry St, New York City, NY 10001" +157894,Wired Headphones,1,11.99,01/11/19 17:57,"728 6th St, Austin, TX 73301" +157895,Macbook Pro Laptop,1,1700,01/25/19 01:58,"272 Cedar St, Boston, MA 02215" +157896,USB-C Charging Cable,1,11.95,01/20/19 21:59,"185 Dogwood St, San Francisco, CA 94016" +157897,Lightning Charging Cable,1,14.95,01/02/19 10:47,"978 Wilson St, Atlanta, GA 30301" +157898,LG Dryer,1,600.0,01/27/19 06:12,"899 North St, San Francisco, CA 94016" +157899,Wired Headphones,1,11.99,01/19/19 22:14,"380 Center St, Portland, OR 97035" +157900,Flatscreen TV,1,300,01/31/19 14:08,"357 Lincoln St, New York City, NY 10001" +157901,AA Batteries (4-pack),2,3.84,01/05/19 04:58,"953 Sunset St, San Francisco, CA 94016" +157902,AAA Batteries (4-pack),1,2.99,01/10/19 00:04,"749 Lincoln St, New York City, NY 10001" +157903,Lightning Charging Cable,1,14.95,01/01/19 18:42,"240 River St, Los Angeles, CA 90001" +157904,27in 4K Gaming Monitor,1,389.99,01/19/19 21:02,"851 9th St, Boston, MA 02215" +157905,27in FHD Monitor,1,149.99,01/19/19 11:37,"541 Walnut St, Seattle, WA 98101" +157906,Wired Headphones,1,11.99,01/27/19 21:21,"9 Park St, Los Angeles, CA 90001" +157907,Lightning Charging Cable,1,14.95,01/17/19 10:39,"785 10th St, New York City, NY 10001" +157908,Apple Airpods Headphones,1,150,01/05/19 11:41,"201 14th St, Austin, TX 73301" +157909,Google Phone,1,600,01/11/19 11:06,"656 Washington St, San Francisco, CA 94016" +157910,Lightning Charging Cable,1,14.95,01/28/19 08:08,"521 Washington St, Dallas, TX 75001" +157910,AA Batteries (4-pack),2,3.84,01/28/19 08:08,"521 Washington St, Dallas, TX 75001" +157911,USB-C Charging Cable,1,11.95,01/23/19 14:49,"876 Jefferson St, Portland, OR 97035" +157912,27in FHD Monitor,1,149.99,01/20/19 14:02,"547 9th St, Los Angeles, CA 90001" +157913,Flatscreen TV,1,300,01/02/19 21:12,"442 11th St, Los Angeles, CA 90001" +157914,AAA Batteries (4-pack),2,2.99,01/07/19 19:03,"937 West St, San Francisco, CA 94016" +157915,Macbook Pro Laptop,1,1700,01/06/19 14:37,"199 13th St, San Francisco, CA 94016" +157916,Wired Headphones,1,11.99,01/26/19 10:11,"223 Jackson St, New York City, NY 10001" +157917,27in 4K Gaming Monitor,1,389.99,01/01/19 17:22,"62 Lincoln St, Dallas, TX 75001" +157918,AA Batteries (4-pack),1,3.84,01/27/19 13:28,"525 Washington St, Los Angeles, CA 90001" +157918,AAA Batteries (4-pack),1,2.99,01/27/19 13:28,"525 Washington St, Los Angeles, CA 90001" +157919,AAA Batteries (4-pack),1,2.99,01/08/19 10:35,"209 Willow St, Los Angeles, CA 90001" +157920,34in Ultrawide Monitor,1,379.99,01/18/19 10:55,"545 Main St, New York City, NY 10001" +157921,iPhone,1,700,01/26/19 23:00,"331 5th St, San Francisco, CA 94016" +157922,Google Phone,1,600,01/18/19 20:42,"74 11th St, Dallas, TX 75001" +157922,USB-C Charging Cable,1,11.95,01/18/19 20:42,"74 11th St, Dallas, TX 75001" +157923,Wired Headphones,1,11.99,01/22/19 14:09,"732 6th St, Boston, MA 02215" +157924,Lightning Charging Cable,1,14.95,01/19/19 15:44,"14 Cherry St, Dallas, TX 75001" +157925,Bose SoundSport Headphones,1,99.99,01/03/19 18:10,"299 Chestnut St, Austin, TX 73301" +157926,Apple Airpods Headphones,1,150,01/18/19 13:02,"688 West St, Seattle, WA 98101" +157927,AAA Batteries (4-pack),1,2.99,01/05/19 10:46,"404 Forest St, Los Angeles, CA 90001" +157928,AA Batteries (4-pack),1,3.84,01/22/19 20:57,"203 10th St, New York City, NY 10001" +157929,USB-C Charging Cable,1,11.95,01/27/19 20:53,"994 Cedar St, Los Angeles, CA 90001" +157930,Bose SoundSport Headphones,1,99.99,01/16/19 20:17,"933 Walnut St, Los Angeles, CA 90001" +157931,AA Batteries (4-pack),1,3.84,01/24/19 21:07,"702 Jackson St, San Francisco, CA 94016" +157932,Lightning Charging Cable,1,14.95,01/09/19 23:57,"320 West St, New York City, NY 10001" +157933,Apple Airpods Headphones,1,150,01/24/19 11:20,"590 Maple St, New York City, NY 10001" +157934,34in Ultrawide Monitor,1,379.99,01/19/19 11:04,"403 Forest St, Seattle, WA 98101" +157935,Wired Headphones,1,11.99,01/28/19 23:02,"122 Lakeview St, San Francisco, CA 94016" +157936,Lightning Charging Cable,2,14.95,01/06/19 17:04,"616 North St, Portland, ME 04101" +157937,Bose SoundSport Headphones,1,99.99,01/21/19 20:39,"710 Cedar St, Atlanta, GA 30301" +157938,AA Batteries (4-pack),1,3.84,01/09/19 09:03,"269 Spruce St, Portland, ME 04101" +157939,Lightning Charging Cable,1,14.95,01/13/19 08:53,"277 Adams St, Portland, ME 04101" +157940,27in 4K Gaming Monitor,1,389.99,01/11/19 10:11,"660 Jefferson St, Dallas, TX 75001" +157941,AA Batteries (4-pack),1,3.84,01/28/19 09:12,"347 South St, Boston, MA 02215" +157942,ThinkPad Laptop,1,999.99,01/08/19 22:10,"186 Forest St, Boston, MA 02215" +157943,Google Phone,1,600,01/04/19 00:40,"219 7th St, Seattle, WA 98101" +157944,AA Batteries (4-pack),1,3.84,01/08/19 12:08,"43 Ridge St, Los Angeles, CA 90001" +157945,Lightning Charging Cable,1,14.95,01/02/19 12:41,"508 Lakeview St, San Francisco, CA 94016" +157946,Apple Airpods Headphones,1,150,01/13/19 17:21,"108 6th St, Los Angeles, CA 90001" +157947,Bose SoundSport Headphones,1,99.99,01/27/19 14:00,"797 Sunset St, Boston, MA 02215" +157948,AAA Batteries (4-pack),2,2.99,01/05/19 07:12,"456 Cedar St, Dallas, TX 75001" +157949,AAA Batteries (4-pack),2,2.99,01/14/19 20:13,"524 Johnson St, San Francisco, CA 94016" +157950,USB-C Charging Cable,1,11.95,01/04/19 21:21,"509 Ridge St, San Francisco, CA 94016" +157951,Google Phone,1,600,01/09/19 22:57,"130 Dogwood St, Los Angeles, CA 90001" +157952,USB-C Charging Cable,2,11.95,01/09/19 09:22,"64 Maple St, Seattle, WA 98101" +157953,Flatscreen TV,1,300,01/25/19 17:04,"858 Maple St, Boston, MA 02215" +157954,Lightning Charging Cable,1,14.95,01/01/19 13:41,"31 Forest St, San Francisco, CA 94016" +157955,Lightning Charging Cable,1,14.95,01/19/19 12:23,"353 4th St, San Francisco, CA 94016" +157956,Lightning Charging Cable,1,14.95,01/12/19 00:51,"493 Dogwood St, Dallas, TX 75001" +157957,Apple Airpods Headphones,1,150,01/29/19 15:43,"876 8th St, Los Angeles, CA 90001" +157958,AA Batteries (4-pack),1,3.84,01/29/19 19:52,"305 Dogwood St, San Francisco, CA 94016" +157959,Macbook Pro Laptop,1,1700,01/05/19 09:04,"318 West St, Atlanta, GA 30301" +157960,AAA Batteries (4-pack),1,2.99,01/26/19 12:39,"541 13th St, Portland, OR 97035" +157961,Lightning Charging Cable,1,14.95,01/24/19 09:22,"171 Pine St, San Francisco, CA 94016" +157962,USB-C Charging Cable,1,11.95,01/04/19 09:01,"841 River St, Los Angeles, CA 90001" +157963,Apple Airpods Headphones,1,150,01/18/19 22:49,"34 Lake St, San Francisco, CA 94016" +157964,34in Ultrawide Monitor,1,379.99,01/23/19 22:11,"480 9th St, San Francisco, CA 94016" +157965,Apple Airpods Headphones,1,150,01/23/19 12:08,"517 Willow St, Portland, ME 04101" +157966,AAA Batteries (4-pack),3,2.99,01/02/19 21:57,"42 Elm St, San Francisco, CA 94016" +157967,Apple Airpods Headphones,1,150,01/17/19 13:23,"37 Lincoln St, Atlanta, GA 30301" +157968,AA Batteries (4-pack),1,3.84,01/24/19 22:10,"481 Cedar St, Los Angeles, CA 90001" +157968,iPhone,1,700,01/24/19 22:10,"481 Cedar St, Los Angeles, CA 90001" +157969,27in 4K Gaming Monitor,1,389.99,01/08/19 14:59,"631 Johnson St, New York City, NY 10001" +157970,USB-C Charging Cable,1,11.95,01/29/19 20:03,"58 Jackson St, Atlanta, GA 30301" +157971,Wired Headphones,1,11.99,01/13/19 14:24,"520 Jackson St, Portland, ME 04101" +157972,34in Ultrawide Monitor,1,379.99,01/14/19 21:30,"936 Lincoln St, San Francisco, CA 94016" +157973,AAA Batteries (4-pack),3,2.99,01/19/19 12:13,"218 Park St, Dallas, TX 75001" +157974,Lightning Charging Cable,1,14.95,01/25/19 15:59,"822 11th St, San Francisco, CA 94016" +157975,AAA Batteries (4-pack),1,2.99,01/23/19 22:44,"751 Jackson St, New York City, NY 10001" +157976,Lightning Charging Cable,1,14.95,01/28/19 12:54,"62 Dogwood St, New York City, NY 10001" +157977,27in 4K Gaming Monitor,1,389.99,01/04/19 19:00,"267 Center St, San Francisco, CA 94016" +157978,Macbook Pro Laptop,1,1700,01/18/19 11:04,"917 Ridge St, Los Angeles, CA 90001" +157979,Wired Headphones,1,11.99,01/08/19 18:33,"147 Forest St, San Francisco, CA 94016" +157980,Google Phone,1,600,01/10/19 20:50,"197 Pine St, San Francisco, CA 94016" +157980,USB-C Charging Cable,1,11.95,01/10/19 20:50,"197 Pine St, San Francisco, CA 94016" +157981,iPhone,1,700,01/07/19 18:49,"726 Park St, Portland, OR 97035" +157982,34in Ultrawide Monitor,1,379.99,01/16/19 21:21,"441 7th St, Dallas, TX 75001" +157983,AAA Batteries (4-pack),1,2.99,01/06/19 00:15,"554 Lincoln St, Boston, MA 02215" +157984,Wired Headphones,1,11.99,01/25/19 13:19,"595 Adams St, San Francisco, CA 94016" +157985,USB-C Charging Cable,1,11.95,01/04/19 19:58,"698 Spruce St, Portland, ME 04101" +157986,AAA Batteries (4-pack),2,2.99,01/06/19 19:55,"693 Lincoln St, Austin, TX 73301" +157987,Lightning Charging Cable,1,14.95,01/26/19 20:36,"912 North St, Atlanta, GA 30301" +157988,ThinkPad Laptop,1,999.99,01/15/19 22:58,"537 2nd St, San Francisco, CA 94016" +157989,Bose SoundSport Headphones,1,99.99,01/23/19 15:52,"786 Lakeview St, Dallas, TX 75001" +157990,Vareebadd Phone,1,400,01/07/19 17:53,"143 Ridge St, Seattle, WA 98101" +157991,Google Phone,1,600,01/20/19 18:50,"582 Chestnut St, New York City, NY 10001" +157991,USB-C Charging Cable,1,11.95,01/20/19 18:50,"582 Chestnut St, New York City, NY 10001" +157992,Google Phone,1,600,01/18/19 20:39,"428 Washington St, Los Angeles, CA 90001" +157992,Bose SoundSport Headphones,1,99.99,01/18/19 20:39,"428 Washington St, Los Angeles, CA 90001" +157993,27in FHD Monitor,1,149.99,01/17/19 01:44,"314 Johnson St, Dallas, TX 75001" +157994,ThinkPad Laptop,1,999.99,01/25/19 04:40,"152 Wilson St, Portland, OR 97035" +157995,Lightning Charging Cable,1,14.95,01/22/19 18:35,"477 12th St, Boston, MA 02215" +157996,20in Monitor,1,109.99,01/04/19 13:09,"52 9th St, Los Angeles, CA 90001" +157997,Google Phone,1,600,01/30/19 10:18,"580 12th St, San Francisco, CA 94016" +157998,Apple Airpods Headphones,1,150,01/13/19 22:08,"278 North St, Atlanta, GA 30301" +157999,27in FHD Monitor,1,149.99,01/11/19 00:23,"523 Sunset St, Dallas, TX 75001" +158000,USB-C Charging Cable,2,11.95,01/08/19 11:26,"137 Lakeview St, Atlanta, GA 30301" +158001,USB-C Charging Cable,2,11.95,01/25/19 23:42,"425 Ridge St, San Francisco, CA 94016" +158002,27in FHD Monitor,1,149.99,01/22/19 12:48,"172 Adams St, Boston, MA 02215" +158003,AA Batteries (4-pack),3,3.84,01/31/19 18:48,"404 9th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +158004,Vareebadd Phone,1,400,01/02/19 12:50,"519 13th St, Seattle, WA 98101" +158004,USB-C Charging Cable,1,11.95,01/02/19 12:50,"519 13th St, Seattle, WA 98101" +158005,USB-C Charging Cable,1,11.95,01/20/19 20:44,"499 Wilson St, San Francisco, CA 94016" +158006,Apple Airpods Headphones,1,150,01/20/19 10:30,"182 14th St, San Francisco, CA 94016" +158007,iPhone,1,700,01/17/19 21:36,"745 Walnut St, Boston, MA 02215" +158007,Lightning Charging Cable,1,14.95,01/17/19 21:36,"745 Walnut St, Boston, MA 02215" +158008,20in Monitor,1,109.99,01/14/19 21:28,"403 13th St, Los Angeles, CA 90001" +158009,USB-C Charging Cable,1,11.95,01/30/19 15:06,"813 Main St, Dallas, TX 75001" +158010,34in Ultrawide Monitor,1,379.99,01/14/19 23:29,"766 Elm St, New York City, NY 10001" +158011,AAA Batteries (4-pack),1,2.99,01/23/19 14:12,"510 Lakeview St, Boston, MA 02215" +158012,Bose SoundSport Headphones,1,99.99,01/08/19 13:44,"757 Hickory St, Dallas, TX 75001" +158013,Macbook Pro Laptop,1,1700,01/28/19 20:06,"985 Elm St, Seattle, WA 98101" +158014,Lightning Charging Cable,1,14.95,01/19/19 06:45,"374 Meadow St, Boston, MA 02215" +158015,Lightning Charging Cable,1,14.95,01/01/19 19:19,"636 Madison St, San Francisco, CA 94016" +158016,Lightning Charging Cable,1,14.95,01/25/19 17:57,"290 Maple St, San Francisco, CA 94016" +158017,Google Phone,1,600,01/19/19 23:35,"304 North St, Dallas, TX 75001" +158018,Wired Headphones,1,11.99,01/19/19 00:00,"433 Lake St, Los Angeles, CA 90001" +158019,AA Batteries (4-pack),2,3.84,01/25/19 21:09,"432 8th St, Dallas, TX 75001" +158020,AAA Batteries (4-pack),2,2.99,01/06/19 17:54,"796 Washington St, Los Angeles, CA 90001" +158021,Wired Headphones,1,11.99,01/16/19 01:33,"380 2nd St, Dallas, TX 75001" +158022,USB-C Charging Cable,1,11.95,01/12/19 16:31,"257 Spruce St, San Francisco, CA 94016" +158023,iPhone,1,700,01/26/19 14:34,"338 Center St, San Francisco, CA 94016" +158024,Wired Headphones,1,11.99,01/13/19 14:17,"417 Chestnut St, San Francisco, CA 94016" +158025,iPhone,1,700,01/21/19 11:54,"184 13th St, Boston, MA 02215" +158025,Lightning Charging Cable,1,14.95,01/21/19 11:54,"184 13th St, Boston, MA 02215" +158026,Apple Airpods Headphones,1,150,01/23/19 19:09,"845 Hickory St, San Francisco, CA 94016" +158027,AAA Batteries (4-pack),2,2.99,01/29/19 20:59,"313 Highland St, New York City, NY 10001" +158028,Flatscreen TV,1,300,01/27/19 21:46,"818 Park St, Boston, MA 02215" +158029,AAA Batteries (4-pack),1,2.99,01/25/19 13:25,"91 5th St, San Francisco, CA 94016" +158030,Apple Airpods Headphones,1,150,01/28/19 15:14,"284 Cherry St, Los Angeles, CA 90001" +158031,Apple Airpods Headphones,1,150,01/27/19 05:51,"428 2nd St, Portland, OR 97035" +158032,USB-C Charging Cable,2,11.95,01/16/19 14:16,"106 Lake St, Los Angeles, CA 90001" +158033,Lightning Charging Cable,1,14.95,01/11/19 12:51,"741 Spruce St, San Francisco, CA 94016" +158034,AAA Batteries (4-pack),4,2.99,01/18/19 19:28,"204 Ridge St, Seattle, WA 98101" +158035,Flatscreen TV,1,300,01/08/19 19:37,"557 6th St, Los Angeles, CA 90001" +158036,Lightning Charging Cable,1,14.95,01/16/19 18:20,"662 12th St, Atlanta, GA 30301" +158037,34in Ultrawide Monitor,1,379.99,01/22/19 19:03,"48 6th St, Los Angeles, CA 90001" +158038,AA Batteries (4-pack),1,3.84,01/28/19 19:52,"913 1st St, Dallas, TX 75001" +158039,AAA Batteries (4-pack),1,2.99,01/14/19 11:52,"58 11th St, New York City, NY 10001" +158040,Bose SoundSport Headphones,1,99.99,01/03/19 12:50,"550 Meadow St, Seattle, WA 98101" +158041,34in Ultrawide Monitor,1,379.99,01/19/19 23:37,"72 8th St, San Francisco, CA 94016" +158042,Lightning Charging Cable,3,14.95,01/10/19 12:34,"493 1st St, San Francisco, CA 94016" +158043,AA Batteries (4-pack),1,3.84,01/23/19 10:38,"947 12th St, Los Angeles, CA 90001" +158044,27in FHD Monitor,1,149.99,01/07/19 18:05,"562 5th St, Los Angeles, CA 90001" +158045,27in FHD Monitor,1,149.99,01/14/19 18:58,"724 North St, Portland, OR 97035" +158046,USB-C Charging Cable,1,11.95,01/31/19 18:10,"974 Pine St, San Francisco, CA 94016" +158047,iPhone,1,700,01/02/19 20:37,"284 Cherry St, Atlanta, GA 30301" +158048,Wired Headphones,1,11.99,01/11/19 08:19,"782 8th St, Boston, MA 02215" +158049,USB-C Charging Cable,1,11.95,01/20/19 18:05,"351 Maple St, New York City, NY 10001" +158050,Lightning Charging Cable,1,14.95,01/05/19 18:02,"857 Dogwood St, Los Angeles, CA 90001" +158051,Macbook Pro Laptop,1,1700,01/08/19 18:44,"652 Highland St, Austin, TX 73301" +158052,Lightning Charging Cable,1,14.95,01/07/19 23:13,"222 Cedar St, Los Angeles, CA 90001" +158053,AA Batteries (4-pack),1,3.84,01/02/19 09:25,"106 Adams St, Austin, TX 73301" +158054,Apple Airpods Headphones,1,150,01/16/19 12:31,"839 River St, San Francisco, CA 94016" +158055,Apple Airpods Headphones,1,150,01/18/19 20:55,"159 Dogwood St, Atlanta, GA 30301" +158056,AAA Batteries (4-pack),1,2.99,01/18/19 09:59,"853 Jackson St, Los Angeles, CA 90001" +158057,Macbook Pro Laptop,1,1700,01/13/19 21:41,"53 12th St, Boston, MA 02215" +158058,AA Batteries (4-pack),1,3.84,01/05/19 17:46,"407 Wilson St, Los Angeles, CA 90001" +158059,AA Batteries (4-pack),1,3.84,01/24/19 12:58,"801 Forest St, San Francisco, CA 94016" +158060,Wired Headphones,1,11.99,01/14/19 22:04,"151 Chestnut St, New York City, NY 10001" +158061,AA Batteries (4-pack),1,3.84,01/23/19 09:36,"827 Lincoln St, Los Angeles, CA 90001" +158062,ThinkPad Laptop,1,999.99,01/10/19 11:58,"901 4th St, San Francisco, CA 94016" +158063,Lightning Charging Cable,1,14.95,01/17/19 20:44,"210 6th St, San Francisco, CA 94016" +158064,AA Batteries (4-pack),1,3.84,01/24/19 16:33,"401 1st St, New York City, NY 10001" +158065,AAA Batteries (4-pack),1,2.99,01/27/19 22:17,"833 5th St, Atlanta, GA 30301" +158066,Wired Headphones,1,11.99,01/10/19 13:26,"364 6th St, Portland, ME 04101" +158067,Lightning Charging Cable,1,14.95,01/14/19 21:46,"131 Lakeview St, Dallas, TX 75001" +158068,Wired Headphones,1,11.99,01/16/19 19:57,"250 Meadow St, Austin, TX 73301" +158069,Flatscreen TV,1,300,01/17/19 16:22,"138 5th St, San Francisco, CA 94016" +158070,USB-C Charging Cable,2,11.95,01/26/19 13:50,"706 Highland St, Los Angeles, CA 90001" +158071,USB-C Charging Cable,1,11.95,01/08/19 11:35,"990 Ridge St, Seattle, WA 98101" +158072,USB-C Charging Cable,1,11.95,01/13/19 01:19,"937 Madison St, Portland, OR 97035" +158073,iPhone,1,700,01/05/19 08:56,"46 Elm St, Boston, MA 02215" +158073,Lightning Charging Cable,2,14.95,01/05/19 08:56,"46 Elm St, Boston, MA 02215" +158074,Apple Airpods Headphones,1,150,01/25/19 03:31,"984 Highland St, Dallas, TX 75001" +158075,USB-C Charging Cable,1,11.95,01/20/19 14:03,"848 13th St, Austin, TX 73301" +158076,Wired Headphones,1,11.99,01/24/19 17:39,"742 9th St, Los Angeles, CA 90001" +158077,27in FHD Monitor,1,149.99,01/11/19 17:26,"263 6th St, New York City, NY 10001" +158078,USB-C Charging Cable,1,11.95,01/16/19 20:29,"64 Jackson St, Boston, MA 02215" +158079,iPhone,1,700,01/07/19 19:27,"2 South St, Atlanta, GA 30301" +158079,Lightning Charging Cable,1,14.95,01/07/19 19:27,"2 South St, Atlanta, GA 30301" +158080,AAA Batteries (4-pack),2,2.99,01/22/19 11:52,"655 12th St, Los Angeles, CA 90001" +158081,USB-C Charging Cable,1,11.95,01/01/19 10:19,"59 5th St, San Francisco, CA 94016" +158082,27in FHD Monitor,1,149.99,01/29/19 17:06,"849 River St, Portland, OR 97035" +158083,AA Batteries (4-pack),2,3.84,01/28/19 15:30,"771 Spruce St, New York City, NY 10001" +158084,Apple Airpods Headphones,1,150,01/24/19 14:22,"610 Cherry St, New York City, NY 10001" +158085,Macbook Pro Laptop,1,1700,01/26/19 21:57,"681 Cherry St, Dallas, TX 75001" +158086,AA Batteries (4-pack),2,3.84,01/02/19 18:41,"896 Elm St, Portland, OR 97035" +158087,Apple Airpods Headphones,1,150,01/19/19 14:29,"381 Forest St, Los Angeles, CA 90001" +158088,USB-C Charging Cable,1,11.95,01/22/19 18:48,"434 North St, Austin, TX 73301" +158089,AA Batteries (4-pack),1,3.84,01/15/19 20:06,"134 River St, Los Angeles, CA 90001" +158090,Wired Headphones,1,11.99,01/18/19 22:50,"814 4th St, Los Angeles, CA 90001" +158091,Google Phone,1,600,01/27/19 11:06,"401 7th St, New York City, NY 10001" +158092,AA Batteries (4-pack),1,3.84,01/26/19 17:59,"758 Walnut St, Atlanta, GA 30301" +158093,AA Batteries (4-pack),1,3.84,01/20/19 12:08,"321 Church St, Seattle, WA 98101" +158094,USB-C Charging Cable,1,11.95,01/05/19 12:38,"149 Center St, New York City, NY 10001" +158095,Lightning Charging Cable,1,14.95,01/19/19 14:07,"200 Highland St, Atlanta, GA 30301" +158096,Apple Airpods Headphones,1,150,01/04/19 13:51,"348 4th St, Boston, MA 02215" +158097,AAA Batteries (4-pack),2,2.99,01/07/19 00:12,"53 Walnut St, Los Angeles, CA 90001" +158098,Wired Headphones,1,11.99,01/31/19 08:13,"556 Lake St, New York City, NY 10001" +158099,AA Batteries (4-pack),3,3.84,01/27/19 19:32,"235 13th St, Austin, TX 73301" +158100,USB-C Charging Cable,1,11.95,01/26/19 20:05,"677 Lakeview St, San Francisco, CA 94016" +158101,20in Monitor,1,109.99,01/17/19 22:09,"269 Madison St, San Francisco, CA 94016" +158102,AAA Batteries (4-pack),1,2.99,01/02/19 13:07,"419 Willow St, Seattle, WA 98101" +158103,Wired Headphones,1,11.99,01/24/19 17:39,"105 Lake St, Dallas, TX 75001" +158104,iPhone,1,700,01/13/19 07:33,"97 Hickory St, San Francisco, CA 94016" +158105,Lightning Charging Cable,1,14.95,01/06/19 13:27,"831 Cherry St, Austin, TX 73301" +158106,AA Batteries (4-pack),2,3.84,01/03/19 19:24,"435 Cherry St, Los Angeles, CA 90001" +158107,Flatscreen TV,1,300,01/04/19 11:25,"331 Lincoln St, San Francisco, CA 94016" +158108,Apple Airpods Headphones,1,150,01/08/19 08:59,"924 Washington St, Atlanta, GA 30301" +158109,Apple Airpods Headphones,1,150,01/30/19 23:58,"715 8th St, Dallas, TX 75001" +158110,Google Phone,1,600,01/12/19 19:26,"524 Hill St, New York City, NY 10001" +158111,USB-C Charging Cable,1,11.95,01/31/19 21:48,"915 11th St, Atlanta, GA 30301" +158112,Lightning Charging Cable,1,14.95,01/03/19 14:34,"859 Spruce St, Dallas, TX 75001" +158113,Lightning Charging Cable,1,14.95,01/25/19 23:06,"348 Ridge St, Boston, MA 02215" +158114,Macbook Pro Laptop,1,1700,01/21/19 20:37,"719 Main St, Portland, OR 97035" +158115,Bose SoundSport Headphones,1,99.99,01/01/19 10:57,"426 Jefferson St, Dallas, TX 75001" +158116,USB-C Charging Cable,1,11.95,02/01/19 00:24,"233 Wilson St, Seattle, WA 98101" +158117,Google Phone,1,600,01/20/19 22:30,"312 Park St, Atlanta, GA 30301" +158118,USB-C Charging Cable,1,11.95,01/21/19 11:01,"63 Meadow St, Boston, MA 02215" +158119,Bose SoundSport Headphones,1,99.99,01/16/19 20:06,"494 Forest St, Los Angeles, CA 90001" +158120,USB-C Charging Cable,2,11.95,01/26/19 23:02,"781 Dogwood St, San Francisco, CA 94016" +158121,Apple Airpods Headphones,1,150,01/05/19 23:08,"583 Cedar St, Los Angeles, CA 90001" +158122,Wired Headphones,1,11.99,01/31/19 18:37,"431 Chestnut St, San Francisco, CA 94016" +158123,Bose SoundSport Headphones,1,99.99,01/07/19 06:47,"906 Jefferson St, San Francisco, CA 94016" +158124,Wired Headphones,1,11.99,01/27/19 10:55,"15 North St, Austin, TX 73301" +158125,iPhone,1,700,01/03/19 17:03,"419 Walnut St, Dallas, TX 75001" +158126,USB-C Charging Cable,1,11.95,01/12/19 10:27,"89 12th St, Seattle, WA 98101" +158127,AA Batteries (4-pack),1,3.84,01/04/19 20:05,"997 14th St, Seattle, WA 98101" +158128,AA Batteries (4-pack),1,3.84,01/07/19 16:55,"194 13th St, Portland, ME 04101" +158129,AA Batteries (4-pack),1,3.84,01/01/19 19:25,"461 4th St, Los Angeles, CA 90001" +158130,34in Ultrawide Monitor,1,379.99,01/20/19 22:16,"197 Cherry St, Dallas, TX 75001" +158131,USB-C Charging Cable,1,11.95,01/07/19 23:32,"254 North St, Dallas, TX 75001" +158132,AA Batteries (4-pack),2,3.84,01/15/19 19:07,"19 Johnson St, Atlanta, GA 30301" +158133,27in 4K Gaming Monitor,1,389.99,01/08/19 10:00,"721 Lakeview St, San Francisco, CA 94016" +158134,USB-C Charging Cable,1,11.95,01/14/19 13:15,"840 Maple St, Los Angeles, CA 90001" +158135,Apple Airpods Headphones,1,150,01/25/19 23:54,"337 Lincoln St, New York City, NY 10001" +158136,iPhone,1,700,01/06/19 22:38,"263 11th St, Dallas, TX 75001" +158136,Lightning Charging Cable,1,14.95,01/06/19 22:38,"263 11th St, Dallas, TX 75001" +158137,USB-C Charging Cable,1,11.95,01/30/19 14:36,"33 Meadow St, Dallas, TX 75001" +158138,Lightning Charging Cable,2,14.95,01/27/19 16:09,"340 7th St, San Francisco, CA 94016" +158139,Lightning Charging Cable,1,14.95,01/07/19 19:57,"391 Hickory St, Dallas, TX 75001" +158140,20in Monitor,1,109.99,01/20/19 15:43,"525 12th St, Los Angeles, CA 90001" +158141,Bose SoundSport Headphones,1,99.99,01/17/19 12:20,"167 Jefferson St, San Francisco, CA 94016" +158142,20in Monitor,1,109.99,01/06/19 15:03,"524 South St, Los Angeles, CA 90001" +158143,Bose SoundSport Headphones,1,99.99,01/24/19 22:05,"132 Jefferson St, Los Angeles, CA 90001" +158144,USB-C Charging Cable,1,11.95,01/10/19 10:51,"276 Cedar St, Portland, OR 97035" +158145,AAA Batteries (4-pack),2,2.99,01/27/19 21:14,"749 4th St, San Francisco, CA 94016" +158145,AAA Batteries (4-pack),1,2.99,01/27/19 21:14,"749 4th St, San Francisco, CA 94016" +158146,iPhone,1,700,01/14/19 16:03,"811 Ridge St, Seattle, WA 98101" +158147,Wired Headphones,1,11.99,01/30/19 13:06,"298 14th St, New York City, NY 10001" +158148,Bose SoundSport Headphones,1,99.99,01/13/19 08:33,"46 South St, Dallas, TX 75001" +158149,AAA Batteries (4-pack),2,2.99,01/08/19 21:19,"914 6th St, Seattle, WA 98101" +158150,Lightning Charging Cable,1,14.95,01/03/19 16:18,"822 Hill St, Seattle, WA 98101" +158151,USB-C Charging Cable,1,11.95,01/09/19 09:24,"804 Chestnut St, New York City, NY 10001" +158152,ThinkPad Laptop,1,999.99,01/20/19 12:18,"184 Chestnut St, Austin, TX 73301" +158153,Apple Airpods Headphones,1,150,01/22/19 11:01,"319 River St, San Francisco, CA 94016" +158154,AAA Batteries (4-pack),1,2.99,01/20/19 14:04,"123 River St, Atlanta, GA 30301" +158155,Wired Headphones,1,11.99,01/23/19 17:02,"654 11th St, Seattle, WA 98101" +158156,Lightning Charging Cable,1,14.95,01/20/19 09:56,"832 Spruce St, Atlanta, GA 30301" +158157,Lightning Charging Cable,1,14.95,01/26/19 13:28,"325 Cherry St, Boston, MA 02215" +158158,AAA Batteries (4-pack),1,2.99,01/19/19 12:06,"447 Sunset St, Dallas, TX 75001" +158159,Bose SoundSport Headphones,1,99.99,01/20/19 17:08,"586 Cherry St, Los Angeles, CA 90001" +158160,USB-C Charging Cable,1,11.95,01/24/19 14:23,"317 Chestnut St, Los Angeles, CA 90001" +158161,Lightning Charging Cable,1,14.95,01/16/19 23:34,"705 South St, Atlanta, GA 30301" +158162,Wired Headphones,1,11.99,01/11/19 19:10,"790 Cherry St, San Francisco, CA 94016" +158163,Wired Headphones,1,11.99,01/03/19 10:31,"931 Spruce St, Portland, ME 04101" +158164,AA Batteries (4-pack),3,3.84,01/13/19 20:52,"879 4th St, Boston, MA 02215" +158165,27in 4K Gaming Monitor,1,389.99,01/03/19 14:59,"380 1st St, San Francisco, CA 94016" +158166,AA Batteries (4-pack),1,3.84,01/04/19 18:03,"514 Dogwood St, New York City, NY 10001" +158167,Macbook Pro Laptop,1,1700,01/24/19 20:47,"874 Lakeview St, Los Angeles, CA 90001" +158168,USB-C Charging Cable,1,11.95,01/12/19 20:30,"729 Willow St, Dallas, TX 75001" +158169,AA Batteries (4-pack),4,3.84,01/08/19 12:07,"537 Pine St, Los Angeles, CA 90001" +158170,Wired Headphones,1,11.99,01/01/19 18:07,"840 Jefferson St, San Francisco, CA 94016" +158171,Apple Airpods Headphones,1,150,01/29/19 21:57,"305 Ridge St, San Francisco, CA 94016" +158172,Wired Headphones,1,11.99,01/14/19 21:16,"388 Walnut St, San Francisco, CA 94016" +158173,Wired Headphones,1,11.99,01/08/19 23:33,"821 Ridge St, Seattle, WA 98101" +158174,AA Batteries (4-pack),1,3.84,01/27/19 15:32,"817 Cherry St, Seattle, WA 98101" +158175,Lightning Charging Cable,1,14.95,01/05/19 13:25,"373 Walnut St, San Francisco, CA 94016" +158176,AA Batteries (4-pack),1,3.84,01/14/19 14:48,"607 7th St, Los Angeles, CA 90001" +158177,Flatscreen TV,1,300,01/26/19 02:53,"838 Sunset St, New York City, NY 10001" +158178,AA Batteries (4-pack),1,3.84,01/03/19 16:30,"800 Walnut St, Dallas, TX 75001" +158179,Google Phone,1,600,01/05/19 17:03,"302 Highland St, Los Angeles, CA 90001" +158180,Wired Headphones,1,11.99,01/11/19 15:12,"962 Adams St, San Francisco, CA 94016" +158181,USB-C Charging Cable,1,11.95,01/07/19 10:11,"341 Hickory St, Los Angeles, CA 90001" +158182,34in Ultrawide Monitor,1,379.99,01/02/19 21:07,"375 8th St, Dallas, TX 75001" +158183,27in 4K Gaming Monitor,1,389.99,01/31/19 19:10,"312 Forest St, Los Angeles, CA 90001" +158184,Lightning Charging Cable,1,14.95,01/21/19 13:51,"174 Jefferson St, Boston, MA 02215" +158185,Google Phone,1,600,01/16/19 21:00,"643 South St, Portland, OR 97035" +158186,AA Batteries (4-pack),3,3.84,01/16/19 20:49,"819 10th St, Boston, MA 02215" +158187,AA Batteries (4-pack),2,3.84,01/11/19 16:23,"717 River St, Los Angeles, CA 90001" +158188,27in 4K Gaming Monitor,1,389.99,01/27/19 13:15,"318 North St, Dallas, TX 75001" +158189,AAA Batteries (4-pack),1,2.99,01/27/19 14:24,"865 Hill St, Los Angeles, CA 90001" +158190,AA Batteries (4-pack),3,3.84,01/28/19 09:24,"590 Church St, Los Angeles, CA 90001" +158191,27in FHD Monitor,1,149.99,01/22/19 10:05,"393 Dogwood St, Atlanta, GA 30301" +158192,USB-C Charging Cable,1,11.95,01/10/19 17:39,"952 River St, Portland, OR 97035" +158193,iPhone,1,700,01/31/19 23:40,"634 10th St, San Francisco, CA 94016" +158193,Lightning Charging Cable,1,14.95,01/31/19 23:40,"634 10th St, San Francisco, CA 94016" +158194,AAA Batteries (4-pack),3,2.99,01/02/19 23:57,"664 Jackson St, Los Angeles, CA 90001" +158195,Google Phone,1,600,01/03/19 10:29,"548 Johnson St, Portland, OR 97035" +158195,USB-C Charging Cable,2,11.95,01/03/19 10:29,"548 Johnson St, Portland, OR 97035" +158196,27in 4K Gaming Monitor,1,389.99,01/12/19 22:52,"765 Pine St, San Francisco, CA 94016" +158197,LG Dryer,1,600.0,01/25/19 14:21,"554 Jackson St, San Francisco, CA 94016" +158198,Apple Airpods Headphones,1,150,01/25/19 11:39,"945 Center St, San Francisco, CA 94016" +158199,Bose SoundSport Headphones,1,99.99,01/13/19 17:09,"566 12th St, Austin, TX 73301" +158200,27in 4K Gaming Monitor,1,389.99,01/15/19 21:24,"25 Park St, Dallas, TX 75001" +158201,AAA Batteries (4-pack),1,2.99,01/27/19 20:45,"763 Highland St, Boston, MA 02215" +158202,AA Batteries (4-pack),2,3.84,01/14/19 13:21,"316 12th St, Atlanta, GA 30301" +158203,Wired Headphones,1,11.99,01/04/19 11:00,"453 Madison St, Los Angeles, CA 90001" +158204,Wired Headphones,1,11.99,01/28/19 23:25,"210 Jefferson St, San Francisco, CA 94016" +158205,AA Batteries (4-pack),1,3.84,01/06/19 14:33,"604 Spruce St, San Francisco, CA 94016" +158206,Lightning Charging Cable,1,14.95,01/09/19 12:28,"834 Spruce St, Boston, MA 02215" +158207,Wired Headphones,1,11.99,01/12/19 16:01,"372 12th St, San Francisco, CA 94016" +158208,AAA Batteries (4-pack),1,2.99,01/13/19 12:55,"83 West St, Los Angeles, CA 90001" +158209,Vareebadd Phone,1,400,01/31/19 12:53,"206 Cedar St, San Francisco, CA 94016" +158210,Bose SoundSport Headphones,1,99.99,01/04/19 17:50,"651 14th St, San Francisco, CA 94016" +158211,Bose SoundSport Headphones,1,99.99,01/27/19 10:48,"232 Elm St, Atlanta, GA 30301" +158212,Apple Airpods Headphones,1,150,01/24/19 12:52,"609 Johnson St, Portland, ME 04101" +158213,Google Phone,1,600,01/13/19 17:46,"51 Hill St, San Francisco, CA 94016" +158214,USB-C Charging Cable,2,11.95,01/25/19 20:59,"479 Washington St, San Francisco, CA 94016" +158215,Wired Headphones,1,11.99,01/22/19 15:00,"932 South St, San Francisco, CA 94016" +158216,Lightning Charging Cable,1,14.95,01/09/19 17:44,"384 South St, Dallas, TX 75001" +158217,AAA Batteries (4-pack),1,2.99,01/11/19 14:24,"752 7th St, Dallas, TX 75001" +158218,AAA Batteries (4-pack),1,2.99,01/02/19 10:22,"896 Elm St, San Francisco, CA 94016" +158219,USB-C Charging Cable,2,11.95,01/22/19 21:55,"408 Highland St, San Francisco, CA 94016" +158220,27in 4K Gaming Monitor,1,389.99,01/16/19 11:02,"749 Jefferson St, Boston, MA 02215" +158221,USB-C Charging Cable,1,11.95,01/31/19 13:54,"735 Jackson St, New York City, NY 10001" +158222,AA Batteries (4-pack),1,3.84,01/18/19 12:31,"585 1st St, Portland, OR 97035" +158223,34in Ultrawide Monitor,1,379.99,01/29/19 15:18,"688 Johnson St, Boston, MA 02215" +158224,USB-C Charging Cable,1,11.95,01/23/19 16:55,"350 Willow St, Los Angeles, CA 90001" +158225,AA Batteries (4-pack),1,3.84,01/25/19 16:22,"631 7th St, Atlanta, GA 30301" +158226,27in FHD Monitor,1,149.99,01/25/19 22:20,"63 4th St, San Francisco, CA 94016" +158227,27in 4K Gaming Monitor,1,389.99,01/06/19 15:00,"851 Johnson St, Atlanta, GA 30301" +158228,Apple Airpods Headphones,1,150,01/10/19 18:49,"807 Dogwood St, Seattle, WA 98101" +158229,AAA Batteries (4-pack),1,2.99,01/13/19 14:02,"520 8th St, Boston, MA 02215" +158230,27in 4K Gaming Monitor,1,389.99,01/02/19 20:01,"296 River St, Los Angeles, CA 90001" +158231,34in Ultrawide Monitor,1,379.99,01/29/19 06:04,"73 4th St, New York City, NY 10001" +158232,AA Batteries (4-pack),1,3.84,01/09/19 21:30,"55 Meadow St, Los Angeles, CA 90001" +158233,Bose SoundSport Headphones,1,99.99,01/06/19 16:32,"683 13th St, San Francisco, CA 94016" +158234,Apple Airpods Headphones,1,150,01/13/19 11:36,"809 Adams St, Atlanta, GA 30301" +158235,AAA Batteries (4-pack),1,2.99,01/04/19 02:54,"597 Hickory St, New York City, NY 10001" +158236,AAA Batteries (4-pack),2,2.99,01/05/19 08:05,"345 Main St, San Francisco, CA 94016" +158237,Bose SoundSport Headphones,1,99.99,01/13/19 16:25,"600 Meadow St, San Francisco, CA 94016" +158238,Macbook Pro Laptop,1,1700,01/21/19 20:24,"272 12th St, Portland, OR 97035" +158239,USB-C Charging Cable,1,11.95,01/01/19 17:00,"921 North St, New York City, NY 10001" +158240,Apple Airpods Headphones,1,150,01/24/19 19:09,"334 Washington St, San Francisco, CA 94016" +158241,AA Batteries (4-pack),2,3.84,01/08/19 08:44,"430 10th St, San Francisco, CA 94016" +158242,Wired Headphones,1,11.99,01/31/19 20:59,"162 Jackson St, Boston, MA 02215" +158243,AAA Batteries (4-pack),1,2.99,01/07/19 14:44,"26 Adams St, Los Angeles, CA 90001" +158244,iPhone,1,700,01/26/19 13:03,"440 4th St, Austin, TX 73301" +158245,20in Monitor,1,109.99,01/10/19 13:28,"795 Pine St, Portland, OR 97035" +158246,Flatscreen TV,1,300,01/26/19 14:32,"50 Adams St, Dallas, TX 75001" +158246,AAA Batteries (4-pack),1,2.99,01/26/19 14:32,"50 Adams St, Dallas, TX 75001" +158247,AAA Batteries (4-pack),1,2.99,01/18/19 23:45,"618 13th St, Portland, OR 97035" +158248,Macbook Pro Laptop,1,1700,01/07/19 08:38,"303 Pine St, Austin, TX 73301" +158249,AAA Batteries (4-pack),2,2.99,01/13/19 14:48,"227 River St, Austin, TX 73301" +158249,Wired Headphones,2,11.99,01/13/19 14:48,"227 River St, Austin, TX 73301" +158250,AAA Batteries (4-pack),2,2.99,01/27/19 21:16,"447 Cedar St, Seattle, WA 98101" +158251,USB-C Charging Cable,1,11.95,01/29/19 17:50,"403 7th St, Seattle, WA 98101" +158252,Wired Headphones,1,11.99,01/29/19 16:28,"771 11th St, Seattle, WA 98101" +158253,LG Dryer,1,600.0,01/14/19 21:53,"348 Madison St, Portland, OR 97035" +158254,USB-C Charging Cable,1,11.95,01/05/19 04:15,"965 West St, Atlanta, GA 30301" +158255,Wired Headphones,1,11.99,01/04/19 12:02,"876 Lakeview St, Atlanta, GA 30301" +158256,Lightning Charging Cable,1,14.95,01/28/19 10:02,"334 Adams St, Los Angeles, CA 90001" +158257,USB-C Charging Cable,1,11.95,01/21/19 15:21,"20 2nd St, San Francisco, CA 94016" +158258,27in 4K Gaming Monitor,1,389.99,01/06/19 15:36,"766 Center St, New York City, NY 10001" +158259,Apple Airpods Headphones,1,150,01/27/19 19:50,"725 Spruce St, New York City, NY 10001" +158260,USB-C Charging Cable,1,11.95,01/07/19 17:31,"673 Lake St, Los Angeles, CA 90001" +158261,USB-C Charging Cable,1,11.95,01/08/19 20:43,"689 1st St, San Francisco, CA 94016" +158262,Wired Headphones,2,11.99,01/18/19 14:02,"249 Chestnut St, Austin, TX 73301" +158263,Wired Headphones,1,11.99,01/05/19 14:09,"207 Johnson St, Boston, MA 02215" +158264,34in Ultrawide Monitor,1,379.99,01/15/19 23:10,"18 Madison St, San Francisco, CA 94016" +158265,34in Ultrawide Monitor,1,379.99,01/25/19 12:46,"867 Maple St, New York City, NY 10001" +158266,27in FHD Monitor,1,149.99,01/28/19 10:16,"841 2nd St, Los Angeles, CA 90001" +158267,Flatscreen TV,1,300,01/04/19 23:24,"288 Spruce St, San Francisco, CA 94016" +158268,27in 4K Gaming Monitor,1,389.99,01/22/19 20:16,"264 12th St, New York City, NY 10001" +158269,Apple Airpods Headphones,1,150,01/23/19 10:28,"990 7th St, Portland, OR 97035" +158270,Apple Airpods Headphones,1,150,01/18/19 20:58,"5 Washington St, Los Angeles, CA 90001" +158271,Apple Airpods Headphones,1,150,01/03/19 12:33,"282 2nd St, Los Angeles, CA 90001" +158272,Wired Headphones,1,11.99,01/25/19 12:50,"781 Walnut St, San Francisco, CA 94016" +158273,Apple Airpods Headphones,1,150,01/30/19 09:11,"294 Elm St, Austin, TX 73301" +158274,Lightning Charging Cable,1,14.95,01/02/19 15:07,"723 Jackson St, New York City, NY 10001" +158275,Apple Airpods Headphones,1,150,01/07/19 09:19,"51 Jefferson St, San Francisco, CA 94016" +158276,LG Dryer,1,600.0,01/22/19 11:15,"209 Pine St, Dallas, TX 75001" +158277,Macbook Pro Laptop,1,1700,01/30/19 13:17,"853 Park St, San Francisco, CA 94016" +158278,USB-C Charging Cable,1,11.95,01/01/19 12:42,"882 8th St, San Francisco, CA 94016" +158279,AAA Batteries (4-pack),1,2.99,01/05/19 09:33,"965 Chestnut St, San Francisco, CA 94016" +158280,Lightning Charging Cable,1,14.95,01/06/19 13:03,"652 Ridge St, Seattle, WA 98101" +158281,USB-C Charging Cable,1,11.95,01/31/19 08:29,"298 Cherry St, Dallas, TX 75001" +158282,27in FHD Monitor,1,149.99,01/22/19 11:55,"893 West St, Atlanta, GA 30301" +158283,34in Ultrawide Monitor,1,379.99,01/25/19 06:20,"147 Jackson St, Los Angeles, CA 90001" +158284,USB-C Charging Cable,1,11.95,01/30/19 08:30,"648 13th St, Boston, MA 02215" +158285,27in FHD Monitor,1,149.99,01/12/19 09:37,"454 Dogwood St, San Francisco, CA 94016" +158286,Wired Headphones,1,11.99,01/05/19 20:02,"233 Washington St, New York City, NY 10001" +158287,AAA Batteries (4-pack),1,2.99,01/05/19 11:57,"16 Hill St, Portland, OR 97035" +158288,Bose SoundSport Headphones,1,99.99,01/29/19 09:22,"171 Elm St, San Francisco, CA 94016" +158289,27in 4K Gaming Monitor,1,389.99,01/07/19 15:32,"203 Highland St, Los Angeles, CA 90001" +158290,Lightning Charging Cable,1,14.95,01/12/19 14:57,"348 1st St, San Francisco, CA 94016" +158291,Wired Headphones,1,11.99,01/24/19 12:42,"50 Center St, New York City, NY 10001" +158292,Bose SoundSport Headphones,1,99.99,01/02/19 05:35,"41 Main St, San Francisco, CA 94016" +158293,Bose SoundSport Headphones,1,99.99,01/16/19 19:45,"864 Walnut St, New York City, NY 10001" +158294,AA Batteries (4-pack),1,3.84,01/24/19 12:04,"425 Spruce St, New York City, NY 10001" +158295,Vareebadd Phone,1,400,01/25/19 23:40,"188 Willow St, Los Angeles, CA 90001" +158296,20in Monitor,1,109.99,01/18/19 17:43,"389 North St, Los Angeles, CA 90001" +158297,Wired Headphones,1,11.99,01/10/19 18:04,"640 5th St, Portland, OR 97035" +158298,USB-C Charging Cable,1,11.95,01/25/19 11:23,"569 Wilson St, Portland, ME 04101" +158299,USB-C Charging Cable,1,11.95,01/16/19 08:11,"517 Madison St, San Francisco, CA 94016" +158299,27in FHD Monitor,2,149.99,01/16/19 08:11,"517 Madison St, San Francisco, CA 94016" +158300,AA Batteries (4-pack),2,3.84,01/06/19 13:52,"751 River St, Atlanta, GA 30301" +158301,AAA Batteries (4-pack),1,2.99,01/10/19 16:09,"818 Jackson St, Los Angeles, CA 90001" +158302,ThinkPad Laptop,1,999.99,01/02/19 21:02,"637 Jackson St, San Francisco, CA 94016" +158303,27in FHD Monitor,1,149.99,01/31/19 12:33,"476 Sunset St, Portland, OR 97035" +,,,,, +158304,AAA Batteries (4-pack),2,2.99,01/04/19 11:48,"130 Jefferson St, San Francisco, CA 94016" +158305,AA Batteries (4-pack),1,3.84,01/22/19 17:23,"357 Hickory St, Seattle, WA 98101" +158306,AAA Batteries (4-pack),5,2.99,01/02/19 10:33,"683 14th St, New York City, NY 10001" +158307,34in Ultrawide Monitor,1,379.99,01/02/19 15:08,"321 Elm St, Dallas, TX 75001" +158308,Apple Airpods Headphones,1,150,01/06/19 22:59,"13 9th St, Los Angeles, CA 90001" +158309,Google Phone,1,600,01/05/19 13:40,"3 14th St, Atlanta, GA 30301" +158310,20in Monitor,1,109.99,01/23/19 22:15,"45 Johnson St, Los Angeles, CA 90001" +158311,27in 4K Gaming Monitor,1,389.99,01/16/19 18:20,"778 Elm St, Los Angeles, CA 90001" +158312,Macbook Pro Laptop,1,1700,01/11/19 13:45,"102 Willow St, Portland, OR 97035" +158313,AAA Batteries (4-pack),1,2.99,01/11/19 22:25,"884 Lincoln St, Austin, TX 73301" +158314,27in 4K Gaming Monitor,1,389.99,01/26/19 06:56,"775 Hickory St, Portland, OR 97035" +158315,20in Monitor,1,109.99,01/21/19 09:54,"215 5th St, Austin, TX 73301" +158316,Lightning Charging Cable,1,14.95,01/24/19 18:30,"404 South St, Austin, TX 73301" +158317,AAA Batteries (4-pack),1,2.99,01/07/19 10:55,"36 Meadow St, Boston, MA 02215" +158318,Wired Headphones,1,11.99,01/10/19 10:34,"114 7th St, Austin, TX 73301" +158319,Apple Airpods Headphones,1,150,01/13/19 22:16,"75 Hill St, Seattle, WA 98101" +158320,Wired Headphones,1,11.99,01/15/19 19:16,"245 South St, Atlanta, GA 30301" +158321,27in 4K Gaming Monitor,1,389.99,01/01/19 08:25,"809 Hill St, Atlanta, GA 30301" +158322,AAA Batteries (4-pack),1,2.99,01/20/19 00:08,"583 Lakeview St, Los Angeles, CA 90001" +158323,AAA Batteries (4-pack),1,2.99,01/24/19 12:30,"752 Maple St, Los Angeles, CA 90001" +158323,Wired Headphones,2,11.99,01/24/19 12:30,"752 Maple St, Los Angeles, CA 90001" +158324,Apple Airpods Headphones,1,150,01/18/19 15:07,"459 Center St, Dallas, TX 75001" +158325,AAA Batteries (4-pack),2,2.99,01/27/19 06:48,"161 7th St, Los Angeles, CA 90001" +158326,USB-C Charging Cable,1,11.95,01/28/19 21:02,"675 Willow St, New York City, NY 10001" +158327,USB-C Charging Cable,1,11.95,01/15/19 20:55,"281 Meadow St, San Francisco, CA 94016" +158328,USB-C Charging Cable,1,11.95,01/20/19 09:25,"497 Pine St, Dallas, TX 75001" +158329,AA Batteries (4-pack),1,3.84,01/26/19 08:43,"849 Lincoln St, New York City, NY 10001" +158330,USB-C Charging Cable,1,11.95,01/02/19 15:15,"358 Johnson St, San Francisco, CA 94016" +158331,AAA Batteries (4-pack),3,2.99,01/22/19 11:44,"420 11th St, Los Angeles, CA 90001" +158332,27in 4K Gaming Monitor,1,389.99,01/15/19 10:21,"154 Jackson St, Dallas, TX 75001" +158333,27in FHD Monitor,1,149.99,01/18/19 13:48,"483 12th St, San Francisco, CA 94016" +158334,34in Ultrawide Monitor,1,379.99,01/22/19 08:33,"404 Cherry St, San Francisco, CA 94016" +158335,Macbook Pro Laptop,1,1700,01/19/19 01:40,"69 Walnut St, New York City, NY 10001" +158336,Lightning Charging Cable,1,14.95,01/28/19 17:52,"811 Cherry St, Dallas, TX 75001" +158337,AA Batteries (4-pack),3,3.84,01/14/19 13:15,"31 Hill St, Atlanta, GA 30301" +158338,Bose SoundSport Headphones,1,99.99,01/03/19 12:09,"504 West St, San Francisco, CA 94016" +158339,AA Batteries (4-pack),1,3.84,01/14/19 20:32,"61 Main St, Dallas, TX 75001" +158340,27in 4K Gaming Monitor,1,389.99,01/04/19 18:37,"176 Johnson St, San Francisco, CA 94016" +158341,USB-C Charging Cable,1,11.95,01/10/19 18:36,"334 Jackson St, Seattle, WA 98101" +158342,34in Ultrawide Monitor,1,379.99,01/22/19 13:34,"689 Park St, Los Angeles, CA 90001" +158343,Apple Airpods Headphones,1,150,01/02/19 12:41,"61 Forest St, San Francisco, CA 94016" +158344,Wired Headphones,1,11.99,01/10/19 08:24,"445 2nd St, New York City, NY 10001" +158345,USB-C Charging Cable,1,11.95,01/08/19 10:18,"349 Lake St, San Francisco, CA 94016" +158346,Wired Headphones,1,11.99,01/04/19 21:25,"422 Dogwood St, San Francisco, CA 94016" +158347,27in FHD Monitor,1,149.99,01/04/19 13:02,"942 Spruce St, San Francisco, CA 94016" +158348,Wired Headphones,1,11.99,01/28/19 17:47,"236 Dogwood St, Atlanta, GA 30301" +158349,AA Batteries (4-pack),2,3.84,01/25/19 19:56,"672 Hickory St, San Francisco, CA 94016" +158350,Lightning Charging Cable,1,14.95,01/27/19 19:38,"33 11th St, Portland, OR 97035" +158351,USB-C Charging Cable,2,11.95,01/09/19 22:25,"329 Dogwood St, Austin, TX 73301" +158352,AAA Batteries (4-pack),1,2.99,01/01/19 15:36,"906 Chestnut St, Boston, MA 02215" +158353,Bose SoundSport Headphones,1,99.99,01/24/19 17:41,"554 Pine St, Portland, OR 97035" +158354,iPhone,1,700,01/18/19 20:50,"811 Highland St, Los Angeles, CA 90001" +158354,Wired Headphones,1,11.99,01/18/19 20:50,"811 Highland St, Los Angeles, CA 90001" +158355,Google Phone,1,600,01/19/19 17:36,"274 River St, Los Angeles, CA 90001" +158356,AA Batteries (4-pack),3,3.84,01/23/19 14:39,"572 Church St, Atlanta, GA 30301" +158357,Wired Headphones,1,11.99,01/03/19 12:38,"430 Jackson St, Boston, MA 02215" +158358,AA Batteries (4-pack),1,3.84,01/08/19 19:30,"888 Cedar St, Seattle, WA 98101" +158359,Apple Airpods Headphones,1,150,01/29/19 17:07,"690 Spruce St, Seattle, WA 98101" +158360,iPhone,1,700,01/01/19 22:35,"639 Elm St, Austin, TX 73301" +158361,Google Phone,1,600,01/06/19 13:09,"888 Park St, Seattle, WA 98101" +158362,AAA Batteries (4-pack),4,2.99,01/25/19 14:12,"216 1st St, San Francisco, CA 94016" +158363,Bose SoundSport Headphones,1,99.99,01/09/19 13:14,"200 Center St, New York City, NY 10001" +158364,34in Ultrawide Monitor,1,379.99,01/12/19 08:45,"974 South St, Los Angeles, CA 90001" +158365,AAA Batteries (4-pack),1,2.99,01/14/19 16:25,"442 Main St, Dallas, TX 75001" +158366,iPhone,1,700,01/12/19 20:41,"530 14th St, Boston, MA 02215" +158366,Lightning Charging Cable,1,14.95,01/12/19 20:41,"530 14th St, Boston, MA 02215" +158367,Macbook Pro Laptop,1,1700,01/27/19 13:20,"465 6th St, Boston, MA 02215" +158368,20in Monitor,1,109.99,01/21/19 15:13,"825 Spruce St, Los Angeles, CA 90001" +158369,20in Monitor,1,109.99,01/19/19 22:04,"68 Center St, Atlanta, GA 30301" +158370,AA Batteries (4-pack),1,3.84,01/11/19 20:42,"426 Spruce St, Austin, TX 73301" +158371,Apple Airpods Headphones,1,150,01/19/19 20:42,"841 South St, Boston, MA 02215" +158372,Lightning Charging Cable,1,14.95,01/30/19 02:07,"180 5th St, Boston, MA 02215" +158373,AAA Batteries (4-pack),2,2.99,01/30/19 10:48,"608 Lake St, New York City, NY 10001" +158374,Wired Headphones,1,11.99,01/14/19 15:37,"670 Lincoln St, Los Angeles, CA 90001" +158375,iPhone,1,700,01/10/19 15:10,"415 4th St, Portland, OR 97035" +158376,AA Batteries (4-pack),1,3.84,01/05/19 14:13,"258 Lakeview St, Austin, TX 73301" +158377,Bose SoundSport Headphones,1,99.99,01/06/19 16:16,"509 14th St, Austin, TX 73301" +158378,AAA Batteries (4-pack),1,2.99,01/06/19 21:13,"83 14th St, San Francisco, CA 94016" +158379,USB-C Charging Cable,1,11.95,01/01/19 09:52,"440 14th St, New York City, NY 10001" +158380,USB-C Charging Cable,1,11.95,01/23/19 20:10,"4 Park St, Los Angeles, CA 90001" +158381,27in 4K Gaming Monitor,1,389.99,01/31/19 07:24,"869 West St, San Francisco, CA 94016" +158382,Wired Headphones,1,11.99,01/30/19 18:35,"342 Highland St, Dallas, TX 75001" +158383,AAA Batteries (4-pack),1,2.99,01/05/19 14:06,"834 7th St, Atlanta, GA 30301" +158384,iPhone,1,700,01/09/19 12:41,"679 Lakeview St, Atlanta, GA 30301" +158385,AA Batteries (4-pack),3,3.84,01/27/19 08:00,"303 Lake St, San Francisco, CA 94016" +158386,AA Batteries (4-pack),1,3.84,01/31/19 10:41,"611 Forest St, New York City, NY 10001" +158387,AA Batteries (4-pack),1,3.84,01/09/19 15:24,"378 13th St, Atlanta, GA 30301" +158388,Google Phone,1,600,01/29/19 18:16,"995 11th St, San Francisco, CA 94016" +158389,AA Batteries (4-pack),1,3.84,01/21/19 19:43,"939 11th St, Seattle, WA 98101" +158390,ThinkPad Laptop,1,999.99,01/18/19 10:27,"366 11th St, Seattle, WA 98101" +158391,34in Ultrawide Monitor,1,379.99,01/22/19 19:50,"68 Center St, Los Angeles, CA 90001" +158392,27in FHD Monitor,1,149.99,01/24/19 18:30,"893 Forest St, Los Angeles, CA 90001" +158393,27in 4K Gaming Monitor,1,389.99,01/21/19 12:56,"822 Ridge St, San Francisco, CA 94016" +158394,AA Batteries (4-pack),1,3.84,01/11/19 20:36,"915 Willow St, New York City, NY 10001" +158395,Apple Airpods Headphones,1,150,01/25/19 11:55,"134 9th St, Atlanta, GA 30301" +158396,AA Batteries (4-pack),2,3.84,01/10/19 12:33,"951 Dogwood St, Dallas, TX 75001" +158397,Google Phone,1,600,01/29/19 10:58,"579 Madison St, Atlanta, GA 30301" +158397,Wired Headphones,1,11.99,01/29/19 10:58,"579 Madison St, Atlanta, GA 30301" +158398,AA Batteries (4-pack),1,3.84,01/01/19 22:35,"592 Madison St, Atlanta, GA 30301" +158398,USB-C Charging Cable,2,11.95,01/01/19 22:35,"592 Madison St, Atlanta, GA 30301" +158399,27in FHD Monitor,1,149.99,01/26/19 11:18,"822 1st St, Los Angeles, CA 90001" +158400,27in FHD Monitor,1,149.99,01/20/19 12:02,"167 Meadow St, Boston, MA 02215" +158401,USB-C Charging Cable,2,11.95,01/01/19 09:52,"920 Jefferson St, New York City, NY 10001" +158402,Macbook Pro Laptop,1,1700,01/15/19 21:53,"33 9th St, Austin, TX 73301" +158403,Bose SoundSport Headphones,1,99.99,01/31/19 16:15,"273 Cedar St, Los Angeles, CA 90001" +158404,34in Ultrawide Monitor,1,379.99,01/19/19 11:58,"262 Spruce St, Los Angeles, CA 90001" +158405,ThinkPad Laptop,1,999.99,01/20/19 14:37,"996 Maple St, San Francisco, CA 94016" +158406,Lightning Charging Cable,1,14.95,01/18/19 19:19,"29 Lake St, Boston, MA 02215" +158407,Wired Headphones,1,11.99,01/15/19 09:51,"875 5th St, Seattle, WA 98101" +158408,Wired Headphones,1,11.99,01/01/19 21:57,"891 Main St, Los Angeles, CA 90001" +158409,AAA Batteries (4-pack),4,2.99,01/12/19 21:11,"698 Jackson St, Boston, MA 02215" +158410,Lightning Charging Cable,1,14.95,01/16/19 21:25,"235 Hill St, San Francisco, CA 94016" +158411,Apple Airpods Headphones,1,150,01/23/19 18:51,"214 4th St, Dallas, TX 75001" +158412,AAA Batteries (4-pack),1,2.99,01/29/19 10:22,"107 10th St, Los Angeles, CA 90001" +158413,LG Washing Machine,1,600.0,01/20/19 12:40,"519 7th St, San Francisco, CA 94016" +158414,AAA Batteries (4-pack),2,2.99,01/17/19 20:45,"801 Maple St, Portland, ME 04101" +158415,34in Ultrawide Monitor,1,379.99,01/23/19 19:01,"560 Lincoln St, Los Angeles, CA 90001" +158416,Apple Airpods Headphones,1,150,01/10/19 07:18,"13 Center St, Dallas, TX 75001" +158417,iPhone,1,700,01/07/19 19:45,"337 Johnson St, San Francisco, CA 94016" +158418,Bose SoundSport Headphones,1,99.99,01/09/19 22:37,"3 South St, Seattle, WA 98101" +158419,Wired Headphones,1,11.99,01/07/19 01:26,"132 Spruce St, Atlanta, GA 30301" +158420,27in 4K Gaming Monitor,1,389.99,01/18/19 11:52,"138 Dogwood St, Boston, MA 02215" +158421,Apple Airpods Headphones,1,150,01/13/19 13:18,"834 Jackson St, Austin, TX 73301" +158422,AA Batteries (4-pack),2,3.84,01/20/19 11:53,"666 Cedar St, New York City, NY 10001" +158423,AA Batteries (4-pack),2,3.84,01/07/19 22:47,"710 Washington St, San Francisco, CA 94016" +158424,34in Ultrawide Monitor,1,379.99,01/11/19 10:57,"572 Pine St, Los Angeles, CA 90001" +158425,AAA Batteries (4-pack),1,2.99,01/14/19 16:42,"753 1st St, Austin, TX 73301" +158426,Wired Headphones,1,11.99,01/26/19 18:37,"492 North St, Boston, MA 02215" +158427,Bose SoundSport Headphones,1,99.99,01/25/19 17:04,"648 Meadow St, Los Angeles, CA 90001" +158428,USB-C Charging Cable,2,11.95,01/09/19 11:09,"43 6th St, Atlanta, GA 30301" +158429,Flatscreen TV,1,300,01/05/19 13:17,"166 River St, Boston, MA 02215" +158430,Wired Headphones,1,11.99,01/06/19 12:00,"135 Lakeview St, Boston, MA 02215" +158431,AAA Batteries (4-pack),1,2.99,01/21/19 16:17,"535 Washington St, Los Angeles, CA 90001" +158432,20in Monitor,1,109.99,01/10/19 21:27,"736 Pine St, Dallas, TX 75001" +158433,Macbook Pro Laptop,1,1700,01/02/19 09:59,"428 Jackson St, New York City, NY 10001" +158434,Lightning Charging Cable,1,14.95,01/15/19 12:19,"538 South St, San Francisco, CA 94016" +158435,AA Batteries (4-pack),1,3.84,01/18/19 17:44,"977 Chestnut St, San Francisco, CA 94016" +158436,Macbook Pro Laptop,1,1700,01/18/19 11:11,"706 Forest St, Seattle, WA 98101" +158437,USB-C Charging Cable,1,11.95,01/28/19 02:13,"883 River St, Atlanta, GA 30301" +158438,34in Ultrawide Monitor,1,379.99,01/05/19 13:35,"472 Chestnut St, San Francisco, CA 94016" +158439,AAA Batteries (4-pack),1,2.99,01/15/19 18:47,"258 Lake St, Portland, OR 97035" +158440,Lightning Charging Cable,1,14.95,01/09/19 13:14,"314 Park St, Boston, MA 02215" +158441,USB-C Charging Cable,1,11.95,01/08/19 16:16,"480 Pine St, New York City, NY 10001" +158442,Apple Airpods Headphones,1,150,01/12/19 11:42,"752 Maple St, Atlanta, GA 30301" +158443,Lightning Charging Cable,1,14.95,01/03/19 13:43,"671 9th St, Los Angeles, CA 90001" +158444,Lightning Charging Cable,2,14.95,01/19/19 16:06,"728 Pine St, Los Angeles, CA 90001" +158445,AAA Batteries (4-pack),1,2.99,01/26/19 15:42,"595 Madison St, Boston, MA 02215" +158446,Lightning Charging Cable,1,14.95,01/22/19 10:07,"202 Chestnut St, San Francisco, CA 94016" +158447,AA Batteries (4-pack),1,3.84,01/21/19 15:04,"670 Pine St, Boston, MA 02215" +158448,Apple Airpods Headphones,1,150,01/13/19 19:20,"516 River St, Los Angeles, CA 90001" +158449,USB-C Charging Cable,1,11.95,01/04/19 14:36,"172 Hill St, Seattle, WA 98101" +158450,34in Ultrawide Monitor,1,379.99,01/13/19 13:58,"101 9th St, Atlanta, GA 30301" +158451,Lightning Charging Cable,1,14.95,01/15/19 13:33,"581 Highland St, Los Angeles, CA 90001" +158452,Bose SoundSport Headphones,1,99.99,01/26/19 15:54,"931 South St, San Francisco, CA 94016" +158453,Macbook Pro Laptop,1,1700,01/10/19 12:19,"346 North St, New York City, NY 10001" +158454,USB-C Charging Cable,1,11.95,01/25/19 18:31,"468 4th St, San Francisco, CA 94016" +158455,Vareebadd Phone,1,400,01/29/19 07:37,"681 7th St, Austin, TX 73301" +158456,Apple Airpods Headphones,1,150,02/01/19 03:44,"745 13th St, New York City, NY 10001" +158457,Lightning Charging Cable,1,14.95,01/25/19 00:04,"623 Jackson St, Boston, MA 02215" +158458,Macbook Pro Laptop,1,1700,01/21/19 22:37,"109 Highland St, Atlanta, GA 30301" +158459,34in Ultrawide Monitor,1,379.99,01/12/19 13:52,"947 Meadow St, Atlanta, GA 30301" +158460,Lightning Charging Cable,1,14.95,01/17/19 00:42,"616 14th St, Los Angeles, CA 90001" +158461,Vareebadd Phone,1,400,01/09/19 20:05,"800 1st St, New York City, NY 10001" +158462,Lightning Charging Cable,1,14.95,01/08/19 10:14,"312 Cedar St, Atlanta, GA 30301" +158463,27in FHD Monitor,1,149.99,01/05/19 18:56,"467 Chestnut St, San Francisco, CA 94016" +158464,AA Batteries (4-pack),2,3.84,01/13/19 20:57,"560 Sunset St, Los Angeles, CA 90001" +158465,iPhone,1,700,01/05/19 13:40,"754 Cherry St, San Francisco, CA 94016" +158466,Flatscreen TV,1,300,01/02/19 16:38,"583 13th St, New York City, NY 10001" +158467,Bose SoundSport Headphones,1,99.99,01/15/19 15:13,"210 Pine St, San Francisco, CA 94016" +158468,Wired Headphones,1,11.99,01/17/19 21:44,"330 Adams St, Austin, TX 73301" +158469,20in Monitor,1,109.99,01/27/19 12:55,"734 Hickory St, Atlanta, GA 30301" +158470,AA Batteries (4-pack),1,3.84,01/07/19 19:48,"688 8th St, Los Angeles, CA 90001" +158471,USB-C Charging Cable,1,11.95,01/11/19 10:17,"928 7th St, Atlanta, GA 30301" +158472,AA Batteries (4-pack),1,3.84,01/25/19 08:30,"311 Johnson St, Atlanta, GA 30301" +158473,Apple Airpods Headphones,1,150,01/02/19 21:06,"352 Center St, San Francisco, CA 94016" +158474,Lightning Charging Cable,1,14.95,01/30/19 11:01,"141 West St, Dallas, TX 75001" +158475,AAA Batteries (4-pack),2,2.99,01/25/19 20:13,"850 Center St, San Francisco, CA 94016" +158476,Apple Airpods Headphones,1,150,01/19/19 15:18,"245 Johnson St, Boston, MA 02215" +158477,AA Batteries (4-pack),1,3.84,01/13/19 09:09,"578 Cedar St, Dallas, TX 75001" +158478,Flatscreen TV,1,300,01/13/19 01:22,"775 13th St, New York City, NY 10001" +158479,Google Phone,1,600,01/06/19 07:41,"464 9th St, Seattle, WA 98101" +158479,USB-C Charging Cable,1,11.95,01/06/19 07:41,"464 9th St, Seattle, WA 98101" +158479,Bose SoundSport Headphones,1,99.99,01/06/19 07:41,"464 9th St, Seattle, WA 98101" +158480,Google Phone,1,600,01/19/19 20:40,"945 Madison St, Los Angeles, CA 90001" +158481,AAA Batteries (4-pack),1,2.99,01/04/19 21:15,"499 10th St, Austin, TX 73301" +158482,AA Batteries (4-pack),2,3.84,01/08/19 13:17,"647 Washington St, Dallas, TX 75001" +158483,AAA Batteries (4-pack),1,2.99,01/03/19 21:13,"539 Lakeview St, San Francisco, CA 94016" +158484,Lightning Charging Cable,1,14.95,01/22/19 12:14,"662 7th St, San Francisco, CA 94016" +158485,AA Batteries (4-pack),1,3.84,01/14/19 16:43,"954 2nd St, Los Angeles, CA 90001" +158486,Lightning Charging Cable,1,14.95,01/09/19 17:48,"44 Chestnut St, Los Angeles, CA 90001" +158487,USB-C Charging Cable,1,11.95,01/15/19 14:09,"778 Spruce St, Seattle, WA 98101" +158488,Lightning Charging Cable,1,14.95,01/24/19 22:58,"10 River St, Austin, TX 73301" +158489,Wired Headphones,2,11.99,01/05/19 20:46,"358 Lincoln St, San Francisco, CA 94016" +158490,27in 4K Gaming Monitor,1,389.99,01/09/19 20:03,"619 6th St, New York City, NY 10001" +158491,Apple Airpods Headphones,1,150,01/17/19 15:49,"772 Willow St, Atlanta, GA 30301" +158492,Bose SoundSport Headphones,1,99.99,01/24/19 16:58,"483 Wilson St, San Francisco, CA 94016" +158493,USB-C Charging Cable,1,11.95,01/12/19 14:30,"930 Highland St, New York City, NY 10001" +158494,27in FHD Monitor,1,149.99,01/31/19 00:10,"791 Park St, Dallas, TX 75001" +158495,Flatscreen TV,1,300,01/28/19 13:22,"696 West St, Boston, MA 02215" +158496,34in Ultrawide Monitor,1,379.99,01/08/19 21:02,"531 Sunset St, San Francisco, CA 94016" +158497,27in 4K Gaming Monitor,1,389.99,01/24/19 19:02,"729 Church St, San Francisco, CA 94016" +158498,Wired Headphones,1,11.99,01/15/19 18:07,"858 1st St, New York City, NY 10001" +158499,Wired Headphones,1,11.99,01/07/19 12:38,"253 Park St, Boston, MA 02215" +158500,iPhone,1,700,01/04/19 18:28,"265 Wilson St, New York City, NY 10001" +158501,AA Batteries (4-pack),1,3.84,01/31/19 08:59,"821 Elm St, Los Angeles, CA 90001" +158502,AA Batteries (4-pack),1,3.84,01/16/19 07:08,"240 Park St, San Francisco, CA 94016" +158503,Lightning Charging Cable,1,14.95,01/10/19 06:42,"513 Jackson St, Atlanta, GA 30301" +158504,AA Batteries (4-pack),1,3.84,01/17/19 05:24,"772 Maple St, Seattle, WA 98101" +158505,Apple Airpods Headphones,1,150,01/06/19 19:12,"96 Highland St, San Francisco, CA 94016" +158506,27in FHD Monitor,1,149.99,01/18/19 18:25,"440 Center St, Dallas, TX 75001" +158507,Lightning Charging Cable,1,14.95,01/22/19 11:47,"789 Elm St, Dallas, TX 75001" +158508,Wired Headphones,1,11.99,01/18/19 10:15,"593 Cherry St, Austin, TX 73301" +158509,Apple Airpods Headphones,1,150,01/26/19 18:18,"689 Meadow St, Los Angeles, CA 90001" +158509,27in FHD Monitor,1,149.99,01/26/19 18:18,"689 Meadow St, Los Angeles, CA 90001" +158510,Bose SoundSport Headphones,1,99.99,01/02/19 21:37,"807 Maple St, Austin, TX 73301" +158511,Lightning Charging Cable,1,14.95,01/11/19 11:22,"281 Spruce St, San Francisco, CA 94016" +158512,AAA Batteries (4-pack),1,2.99,01/27/19 11:28,"135 Pine St, San Francisco, CA 94016" +158513,34in Ultrawide Monitor,1,379.99,01/20/19 12:01,"374 Pine St, Los Angeles, CA 90001" +158514,Google Phone,1,600,01/31/19 21:05,"719 Cherry St, Boston, MA 02215" +158514,USB-C Charging Cable,2,11.95,01/31/19 21:05,"719 Cherry St, Boston, MA 02215" +158514,Bose SoundSport Headphones,1,99.99,01/31/19 21:05,"719 Cherry St, Boston, MA 02215" +158515,USB-C Charging Cable,1,11.95,01/20/19 15:30,"288 Johnson St, Boston, MA 02215" +158516,Flatscreen TV,1,300,01/09/19 13:45,"232 North St, Portland, OR 97035" +158517,34in Ultrawide Monitor,1,379.99,01/02/19 18:16,"229 Church St, San Francisco, CA 94016" +158518,Wired Headphones,1,11.99,01/28/19 19:49,"526 4th St, San Francisco, CA 94016" +158519,Flatscreen TV,1,300,01/07/19 19:42,"542 Center St, New York City, NY 10001" +158520,ThinkPad Laptop,1,999.99,01/01/19 17:12,"125 6th St, Los Angeles, CA 90001" +158521,USB-C Charging Cable,1,11.95,01/27/19 11:08,"284 Meadow St, Boston, MA 02215" +158522,Wired Headphones,2,11.99,01/10/19 20:42,"483 Dogwood St, Austin, TX 73301" +158523,AA Batteries (4-pack),1,3.84,01/30/19 00:37,"535 6th St, Los Angeles, CA 90001" +158524,iPhone,1,700,01/22/19 22:23,"866 Ridge St, San Francisco, CA 94016" +158525,AA Batteries (4-pack),1,3.84,01/24/19 07:16,"381 Meadow St, Los Angeles, CA 90001" +158526,Lightning Charging Cable,1,14.95,01/27/19 11:21,"632 7th St, Los Angeles, CA 90001" +158527,Lightning Charging Cable,1,14.95,01/12/19 20:54,"598 Pine St, Dallas, TX 75001" +158528,AA Batteries (4-pack),1,3.84,01/10/19 10:49,"513 7th St, San Francisco, CA 94016" +158529,Google Phone,1,600,01/15/19 14:07,"592 13th St, New York City, NY 10001" +158529,AAA Batteries (4-pack),1,2.99,01/15/19 14:07,"592 13th St, New York City, NY 10001" +158530,20in Monitor,1,109.99,01/06/19 15:31,"703 Cherry St, Dallas, TX 75001" +158531,Flatscreen TV,1,300,01/08/19 20:19,"402 Washington St, Boston, MA 02215" +158532,34in Ultrawide Monitor,1,379.99,01/10/19 18:32,"962 Spruce St, Boston, MA 02215" +158533,Bose SoundSport Headphones,1,99.99,01/04/19 14:53,"110 10th St, Boston, MA 02215" +158534,USB-C Charging Cable,1,11.95,01/30/19 20:06,"70 Elm St, New York City, NY 10001" +158535,USB-C Charging Cable,1,11.95,01/02/19 22:19,"944 9th St, Austin, TX 73301" +158536,34in Ultrawide Monitor,1,379.99,01/26/19 03:46,"758 Forest St, San Francisco, CA 94016" +158537,AAA Batteries (4-pack),1,2.99,01/08/19 15:27,"112 12th St, San Francisco, CA 94016" +158538,iPhone,1,700,01/06/19 13:07,"444 Lincoln St, San Francisco, CA 94016" +158539,AA Batteries (4-pack),1,3.84,01/03/19 18:01,"896 Sunset St, Boston, MA 02215" +158540,Macbook Pro Laptop,2,1700,01/16/19 21:24,"820 Cedar St, Los Angeles, CA 90001" +158540,Bose SoundSport Headphones,1,99.99,01/16/19 21:24,"820 Cedar St, Los Angeles, CA 90001" +158541,Wired Headphones,1,11.99,01/07/19 10:15,"274 Walnut St, Seattle, WA 98101" +158542,Wired Headphones,1,11.99,01/09/19 16:09,"707 Johnson St, Seattle, WA 98101" +158543,USB-C Charging Cable,1,11.95,01/20/19 04:51,"95 Washington St, San Francisco, CA 94016" +158544,Bose SoundSport Headphones,1,99.99,01/22/19 08:47,"533 2nd St, Portland, OR 97035" +158545,AA Batteries (4-pack),1,3.84,01/22/19 19:22,"742 Lakeview St, Seattle, WA 98101" +158546,AA Batteries (4-pack),2,3.84,01/01/19 21:01,"616 Maple St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +158547,AAA Batteries (4-pack),1,2.99,01/31/19 19:51,"106 Dogwood St, Dallas, TX 75001" +158548,Apple Airpods Headphones,1,150,01/21/19 12:58,"604 Wilson St, Los Angeles, CA 90001" +158549,Bose SoundSport Headphones,1,99.99,01/19/19 13:08,"236 Main St, San Francisco, CA 94016" +158550,Bose SoundSport Headphones,1,99.99,01/27/19 12:42,"314 Spruce St, New York City, NY 10001" +158551,27in 4K Gaming Monitor,1,389.99,01/04/19 09:17,"337 Willow St, Seattle, WA 98101" +158552,Vareebadd Phone,1,400,01/31/19 11:08,"136 Hickory St, Atlanta, GA 30301" +158553,Wired Headphones,1,11.99,01/01/19 09:32,"693 9th St, Dallas, TX 75001" +158554,27in FHD Monitor,1,149.99,01/24/19 20:23,"23 West St, Boston, MA 02215" +158555,Google Phone,1,600,01/13/19 12:11,"149 Madison St, Portland, ME 04101" +158555,USB-C Charging Cable,3,11.95,01/13/19 12:11,"149 Madison St, Portland, ME 04101" +158555,Wired Headphones,1,11.99,01/13/19 12:11,"149 Madison St, Portland, ME 04101" +158556,AAA Batteries (4-pack),1,2.99,01/12/19 11:13,"950 Willow St, San Francisco, CA 94016" +158557,Apple Airpods Headphones,1,150,01/05/19 05:30,"486 13th St, Boston, MA 02215" +158558,Google Phone,1,600,01/03/19 18:41,"472 Adams St, Atlanta, GA 30301" +158559,Apple Airpods Headphones,1,150,01/20/19 14:10,"747 Cherry St, Los Angeles, CA 90001" +158560,USB-C Charging Cable,1,11.95,01/28/19 17:16,"101 Pine St, Dallas, TX 75001" +158561,AAA Batteries (4-pack),1,2.99,01/25/19 11:51,"256 Adams St, San Francisco, CA 94016" +158562,AA Batteries (4-pack),2,3.84,01/20/19 11:40,"457 Walnut St, Atlanta, GA 30301" +158563,Google Phone,1,600,01/24/19 11:29,"727 Jackson St, Los Angeles, CA 90001" +158563,USB-C Charging Cable,1,11.95,01/24/19 11:29,"727 Jackson St, Los Angeles, CA 90001" +158564,27in 4K Gaming Monitor,1,389.99,01/30/19 20:23,"225 Elm St, Dallas, TX 75001" +158565,AAA Batteries (4-pack),1,2.99,01/27/19 17:21,"416 West St, Seattle, WA 98101" +158566,Lightning Charging Cable,1,14.95,01/08/19 18:11,"887 Cherry St, Atlanta, GA 30301" +158567,AAA Batteries (4-pack),2,2.99,01/22/19 23:18,"842 Madison St, Boston, MA 02215" +158568,Apple Airpods Headphones,1,150,01/15/19 05:17,"981 North St, Austin, TX 73301" +158569,Lightning Charging Cable,2,14.95,01/14/19 23:14,"262 River St, Seattle, WA 98101" +158570,27in FHD Monitor,1,149.99,01/05/19 10:35,"344 Lincoln St, Portland, OR 97035" +158571,USB-C Charging Cable,1,11.95,01/31/19 15:22,"949 Main St, Austin, TX 73301" +158572,AAA Batteries (4-pack),1,2.99,01/05/19 07:18,"310 Jackson St, Seattle, WA 98101" +158573,Lightning Charging Cable,1,14.95,01/12/19 11:32,"880 Jackson St, Dallas, TX 75001" +158574,USB-C Charging Cable,1,11.95,01/15/19 19:40,"156 Washington St, Portland, OR 97035" +158575,Macbook Pro Laptop,1,1700,01/11/19 10:59,"361 Washington St, New York City, NY 10001" +158576,20in Monitor,1,109.99,01/16/19 14:33,"98 6th St, Los Angeles, CA 90001" +158577,Wired Headphones,1,11.99,01/14/19 17:28,"641 Lake St, Dallas, TX 75001" +158578,Bose SoundSport Headphones,1,99.99,01/15/19 17:11,"560 Church St, Seattle, WA 98101" +158579,Flatscreen TV,1,300,01/29/19 22:18,"713 Forest St, Austin, TX 73301" +158580,AA Batteries (4-pack),1,3.84,01/23/19 12:18,"174 Walnut St, San Francisco, CA 94016" +158581,Lightning Charging Cable,1,14.95,01/28/19 07:16,"718 Lake St, Boston, MA 02215" +158581,AAA Batteries (4-pack),4,2.99,01/28/19 07:16,"718 Lake St, Boston, MA 02215" +158582,Apple Airpods Headphones,1,150,01/30/19 08:40,"597 5th St, San Francisco, CA 94016" +158583,Apple Airpods Headphones,1,150,01/29/19 10:23,"901 Lincoln St, Dallas, TX 75001" +158584,AAA Batteries (4-pack),2,2.99,01/20/19 10:54,"799 Hickory St, Seattle, WA 98101" +158585,Wired Headphones,1,11.99,01/26/19 21:07,"444 Walnut St, Austin, TX 73301" +158586,Wired Headphones,1,11.99,01/12/19 17:05,"243 Jefferson St, New York City, NY 10001" +158587,iPhone,1,700,01/19/19 21:30,"406 Hill St, Austin, TX 73301" +158588,27in 4K Gaming Monitor,1,389.99,01/07/19 14:25,"133 Lake St, Seattle, WA 98101" +158589,AAA Batteries (4-pack),2,2.99,01/17/19 12:25,"778 Meadow St, San Francisco, CA 94016" +158590,34in Ultrawide Monitor,1,379.99,01/22/19 03:02,"712 1st St, New York City, NY 10001" +158591,AAA Batteries (4-pack),2,2.99,01/06/19 14:30,"269 Madison St, San Francisco, CA 94016" +158592,iPhone,1,700,01/09/19 08:28,"558 Main St, Los Angeles, CA 90001" +158593,USB-C Charging Cable,1,11.95,01/04/19 22:11,"463 Wilson St, Austin, TX 73301" +158594,Bose SoundSport Headphones,1,99.99,01/17/19 00:42,"104 West St, San Francisco, CA 94016" +158595,Wired Headphones,1,11.99,01/16/19 15:48,"370 Hill St, Portland, OR 97035" +158596,AAA Batteries (4-pack),2,2.99,01/18/19 16:27,"916 14th St, San Francisco, CA 94016" +158597,Apple Airpods Headphones,1,150,01/15/19 19:55,"652 Park St, New York City, NY 10001" +158598,Apple Airpods Headphones,1,150,01/12/19 22:18,"327 14th St, Seattle, WA 98101" +158599,AAA Batteries (4-pack),1,2.99,01/14/19 11:37,"216 Jackson St, Atlanta, GA 30301" +158600,34in Ultrawide Monitor,1,379.99,01/17/19 13:38,"351 1st St, Austin, TX 73301" +158601,AAA Batteries (4-pack),2,2.99,01/25/19 17:02,"325 11th St, New York City, NY 10001" +158602,Wired Headphones,2,11.99,01/19/19 19:31,"28 Dogwood St, Atlanta, GA 30301" +158603,Flatscreen TV,1,300,01/19/19 18:01,"602 1st St, Los Angeles, CA 90001" +158604,AAA Batteries (4-pack),1,2.99,01/04/19 19:12,"929 Ridge St, Dallas, TX 75001" +158605,AA Batteries (4-pack),1,3.84,01/08/19 11:45,"552 South St, Dallas, TX 75001" +158606,USB-C Charging Cable,1,11.95,01/03/19 23:38,"244 8th St, Los Angeles, CA 90001" +158607,Google Phone,1,600,01/07/19 11:52,"251 12th St, San Francisco, CA 94016" +158607,USB-C Charging Cable,1,11.95,01/07/19 11:52,"251 12th St, San Francisco, CA 94016" +158608,Vareebadd Phone,1,400,01/13/19 23:56,"604 Spruce St, Seattle, WA 98101" +158608,Wired Headphones,1,11.99,01/13/19 23:56,"604 Spruce St, Seattle, WA 98101" +158609,34in Ultrawide Monitor,1,379.99,01/18/19 09:48,"639 Forest St, San Francisco, CA 94016" +158610,AA Batteries (4-pack),1,3.84,01/30/19 23:38,"741 Sunset St, New York City, NY 10001" +158611,27in 4K Gaming Monitor,1,389.99,01/18/19 23:33,"824 Maple St, New York City, NY 10001" +158612,Bose SoundSport Headphones,1,99.99,01/20/19 18:58,"259 Cherry St, Los Angeles, CA 90001" +158613,20in Monitor,1,109.99,01/05/19 19:14,"757 4th St, Los Angeles, CA 90001" +158614,Lightning Charging Cable,1,14.95,01/23/19 00:35,"531 4th St, San Francisco, CA 94016" +158615,USB-C Charging Cable,1,11.95,01/22/19 12:58,"801 Johnson St, Los Angeles, CA 90001" +158616,Macbook Pro Laptop,1,1700,01/23/19 19:32,"286 Lakeview St, New York City, NY 10001" +158617,Lightning Charging Cable,1,14.95,01/30/19 14:56,"108 River St, Atlanta, GA 30301" +158618,AAA Batteries (4-pack),1,2.99,01/23/19 18:46,"843 Jackson St, Portland, OR 97035" +158619,AAA Batteries (4-pack),1,2.99,01/27/19 12:32,"619 Chestnut St, Austin, TX 73301" +158620,Bose SoundSport Headphones,1,99.99,01/19/19 01:03,"924 Madison St, San Francisco, CA 94016" +158621,Bose SoundSport Headphones,1,99.99,01/25/19 21:52,"107 Elm St, Los Angeles, CA 90001" +158622,AAA Batteries (4-pack),2,2.99,01/13/19 08:23,"727 Main St, Boston, MA 02215" +158623,AAA Batteries (4-pack),1,2.99,01/22/19 14:39,"373 Sunset St, Los Angeles, CA 90001" +158624,Lightning Charging Cable,1,14.95,01/08/19 14:46,"457 Center St, Portland, OR 97035" +158625,Wired Headphones,1,11.99,01/16/19 17:10,"204 River St, San Francisco, CA 94016" +158626,AA Batteries (4-pack),3,3.84,01/16/19 10:19,"805 Center St, Los Angeles, CA 90001" +158627,AAA Batteries (4-pack),1,2.99,01/18/19 13:45,"329 5th St, San Francisco, CA 94016" +158628,Wired Headphones,2,11.99,01/30/19 17:36,"260 Adams St, Austin, TX 73301" +158629,27in 4K Gaming Monitor,1,389.99,01/12/19 15:36,"428 Chestnut St, Dallas, TX 75001" +158630,Apple Airpods Headphones,1,150,01/08/19 12:55,"590 7th St, New York City, NY 10001" +158631,Lightning Charging Cable,1,14.95,01/09/19 14:18,"59 Maple St, Atlanta, GA 30301" +158632,Vareebadd Phone,1,400,01/28/19 16:59,"10 Park St, San Francisco, CA 94016" +158633,USB-C Charging Cable,1,11.95,01/31/19 12:22,"687 Park St, San Francisco, CA 94016" +158634,Lightning Charging Cable,1,14.95,01/14/19 20:08,"276 Walnut St, Los Angeles, CA 90001" +158635,AAA Batteries (4-pack),1,2.99,01/16/19 17:13,"602 12th St, Dallas, TX 75001" +158636,Wired Headphones,2,11.99,01/20/19 20:58,"680 Pine St, Dallas, TX 75001" +158637,AA Batteries (4-pack),4,3.84,01/04/19 15:15,"43 Adams St, San Francisco, CA 94016" +158638,Lightning Charging Cable,1,14.95,01/21/19 23:19,"76 Jackson St, Atlanta, GA 30301" +158639,27in 4K Gaming Monitor,1,389.99,01/28/19 19:47,"321 Cherry St, Boston, MA 02215" +158640,Bose SoundSport Headphones,1,99.99,01/12/19 20:23,"241 6th St, Los Angeles, CA 90001" +158641,ThinkPad Laptop,1,999.99,01/04/19 19:18,"544 Jefferson St, Austin, TX 73301" +158642,AA Batteries (4-pack),1,3.84,01/19/19 16:13,"833 Hickory St, New York City, NY 10001" +158643,AAA Batteries (4-pack),1,2.99,01/26/19 21:16,"104 9th St, Atlanta, GA 30301" +158644,Lightning Charging Cable,1,14.95,01/01/19 13:35,"205 8th St, Atlanta, GA 30301" +158644,20in Monitor,1,109.99,01/01/19 13:35,"205 8th St, Atlanta, GA 30301" +158645,Wired Headphones,1,11.99,01/19/19 14:48,"176 Jackson St, San Francisco, CA 94016" +158646,Lightning Charging Cable,1,14.95,01/23/19 19:35,"158 9th St, Los Angeles, CA 90001" +158647,34in Ultrawide Monitor,1,379.99,01/15/19 15:18,"653 Cherry St, Atlanta, GA 30301" +158648,27in 4K Gaming Monitor,1,389.99,01/26/19 21:37,"519 6th St, Seattle, WA 98101" +158649,AAA Batteries (4-pack),3,2.99,01/13/19 15:27,"90 Lakeview St, Los Angeles, CA 90001" +158650,Bose SoundSport Headphones,1,99.99,01/01/19 22:01,"591 Center St, San Francisco, CA 94016" +158651,27in FHD Monitor,1,149.99,01/13/19 10:40,"200 Forest St, Boston, MA 02215" +158652,USB-C Charging Cable,2,11.95,01/20/19 18:40,"92 Washington St, Atlanta, GA 30301" +158653,20in Monitor,1,109.99,01/12/19 21:02,"842 Dogwood St, San Francisco, CA 94016" +158654,Wired Headphones,1,11.99,01/08/19 08:41,"830 5th St, San Francisco, CA 94016" +158655,20in Monitor,1,109.99,01/21/19 21:38,"564 Meadow St, Los Angeles, CA 90001" +158656,AAA Batteries (4-pack),1,2.99,01/03/19 00:35,"135 Chestnut St, San Francisco, CA 94016" +158657,USB-C Charging Cable,1,11.95,01/20/19 00:36,"860 Center St, San Francisco, CA 94016" +158658,27in FHD Monitor,1,149.99,01/28/19 21:21,"237 6th St, San Francisco, CA 94016" +158659,Flatscreen TV,1,300,01/31/19 10:04,"938 Sunset St, Boston, MA 02215" +158660,20in Monitor,1,109.99,01/20/19 17:24,"429 Maple St, Seattle, WA 98101" +158661,AAA Batteries (4-pack),1,2.99,01/25/19 17:15,"397 Forest St, Seattle, WA 98101" +158662,Wired Headphones,1,11.99,01/20/19 07:08,"985 Park St, Los Angeles, CA 90001" +158663,AAA Batteries (4-pack),1,2.99,01/28/19 01:07,"325 11th St, Portland, OR 97035" +158664,Apple Airpods Headphones,1,150,01/22/19 15:08,"506 Highland St, Los Angeles, CA 90001" +158665,Macbook Pro Laptop,1,1700,01/24/19 08:24,"493 River St, Boston, MA 02215" +158666,AA Batteries (4-pack),2,3.84,01/20/19 08:22,"81 7th St, New York City, NY 10001" +158667,Apple Airpods Headphones,1,150,01/19/19 22:00,"634 Maple St, Austin, TX 73301" +158668,27in 4K Gaming Monitor,1,389.99,01/19/19 16:42,"529 Cedar St, Portland, OR 97035" +158669,Bose SoundSport Headphones,1,99.99,01/28/19 11:41,"10 Meadow St, Dallas, TX 75001" +158670,USB-C Charging Cable,1,11.95,01/23/19 08:15,"616 5th St, Los Angeles, CA 90001" +158671,Bose SoundSport Headphones,1,99.99,01/22/19 11:34,"659 8th St, San Francisco, CA 94016" +158672,iPhone,1,700,01/06/19 16:22,"145 Washington St, Portland, OR 97035" +158672,Lightning Charging Cable,1,14.95,01/06/19 16:22,"145 Washington St, Portland, OR 97035" +158673,27in FHD Monitor,1,149.99,01/01/19 19:16,"204 11th St, Los Angeles, CA 90001" +158674,Wired Headphones,1,11.99,01/05/19 15:26,"970 Center St, Los Angeles, CA 90001" +158675,Apple Airpods Headphones,1,150,01/09/19 14:28,"829 Washington St, Austin, TX 73301" +158676,USB-C Charging Cable,1,11.95,01/08/19 13:20,"139 4th St, Portland, OR 97035" +158677,USB-C Charging Cable,2,11.95,01/08/19 12:39,"915 Adams St, Boston, MA 02215" +158678,AA Batteries (4-pack),3,3.84,01/14/19 19:15,"170 Highland St, San Francisco, CA 94016" +158679,Apple Airpods Headphones,1,150,01/22/19 20:43,"749 River St, Dallas, TX 75001" +158680,Macbook Pro Laptop,1,1700,01/03/19 18:49,"910 Willow St, Boston, MA 02215" +158681,AAA Batteries (4-pack),1,2.99,01/22/19 17:37,"337 Chestnut St, San Francisco, CA 94016" +158682,Wired Headphones,1,11.99,01/16/19 16:39,"473 5th St, Boston, MA 02215" +158683,AAA Batteries (4-pack),1,2.99,01/14/19 08:41,"66 9th St, Los Angeles, CA 90001" +158684,AA Batteries (4-pack),2,3.84,01/04/19 22:43,"524 Elm St, New York City, NY 10001" +158685,USB-C Charging Cable,1,11.95,01/06/19 17:14,"666 Jackson St, Austin, TX 73301" +158686,USB-C Charging Cable,1,11.95,01/22/19 10:18,"163 Hill St, Boston, MA 02215" +158687,AAA Batteries (4-pack),2,2.99,01/28/19 21:42,"967 Adams St, Seattle, WA 98101" +158688,AA Batteries (4-pack),1,3.84,01/12/19 16:50,"901 1st St, San Francisco, CA 94016" +158689,Bose SoundSport Headphones,1,99.99,01/11/19 12:49,"693 Walnut St, Portland, OR 97035" +158690,Wired Headphones,1,11.99,01/14/19 16:17,"159 Dogwood St, Boston, MA 02215" +158691,Bose SoundSport Headphones,1,99.99,01/23/19 19:56,"765 Cherry St, Atlanta, GA 30301" +158692,AA Batteries (4-pack),3,3.84,01/16/19 18:25,"355 Hill St, Los Angeles, CA 90001" +158693,AAA Batteries (4-pack),1,2.99,01/03/19 19:25,"170 Pine St, Atlanta, GA 30301" +158694,Wired Headphones,1,11.99,01/31/19 13:43,"999 Johnson St, San Francisco, CA 94016" +158695,Wired Headphones,1,11.99,01/21/19 22:08,"943 South St, San Francisco, CA 94016" +158696,Bose SoundSport Headphones,1,99.99,01/23/19 23:45,"160 11th St, Seattle, WA 98101" +158697,Wired Headphones,1,11.99,01/31/19 14:06,"404 1st St, San Francisco, CA 94016" +158698,27in FHD Monitor,1,149.99,01/08/19 10:48,"625 Elm St, Portland, OR 97035" +158699,Apple Airpods Headphones,1,150,01/04/19 15:46,"579 River St, San Francisco, CA 94016" +158700,AA Batteries (4-pack),2,3.84,01/08/19 20:44,"492 4th St, New York City, NY 10001" +158701,27in FHD Monitor,1,149.99,01/12/19 17:41,"839 Maple St, Austin, TX 73301" +158702,Apple Airpods Headphones,1,150,01/08/19 18:56,"537 Cherry St, Los Angeles, CA 90001" +158703,USB-C Charging Cable,1,11.95,01/16/19 11:13,"206 Ridge St, San Francisco, CA 94016" +158704,USB-C Charging Cable,2,11.95,01/10/19 16:04,"60 13th St, Los Angeles, CA 90001" +158705,AA Batteries (4-pack),1,3.84,01/11/19 11:22,"636 13th St, Los Angeles, CA 90001" +158706,Lightning Charging Cable,1,14.95,01/24/19 19:34,"998 Church St, San Francisco, CA 94016" +158707,Lightning Charging Cable,1,14.95,01/27/19 18:06,"809 Hill St, New York City, NY 10001" +158708,Lightning Charging Cable,1,14.95,01/01/19 23:45,"974 Washington St, Seattle, WA 98101" +158709,Wired Headphones,1,11.99,01/29/19 17:21,"362 14th St, Los Angeles, CA 90001" +158710,Wired Headphones,1,11.99,01/10/19 16:48,"157 Hickory St, Portland, OR 97035" +158711,Wired Headphones,1,11.99,01/31/19 12:14,"427 South St, Boston, MA 02215" +158712,Bose SoundSport Headphones,1,99.99,01/09/19 21:31,"794 Spruce St, Portland, ME 04101" +158713,LG Washing Machine,1,600.0,01/24/19 13:45,"474 Highland St, Portland, OR 97035" +158714,27in 4K Gaming Monitor,1,389.99,01/03/19 10:36,"438 Ridge St, San Francisco, CA 94016" +158715,USB-C Charging Cable,1,11.95,01/27/19 14:28,"730 Church St, Atlanta, GA 30301" +158716,AAA Batteries (4-pack),1,2.99,01/01/19 15:13,"706 4th St, Los Angeles, CA 90001" +158717,iPhone,1,700,01/15/19 09:03,"419 13th St, Boston, MA 02215" +158718,Google Phone,1,600,01/16/19 08:24,"96 Cedar St, Seattle, WA 98101" +158719,Bose SoundSport Headphones,1,99.99,01/02/19 19:47,"165 Jefferson St, Portland, OR 97035" +158720,Wired Headphones,1,11.99,01/10/19 19:12,"471 7th St, San Francisco, CA 94016" +158721,Google Phone,1,600,01/27/19 10:20,"256 Walnut St, Dallas, TX 75001" +158721,USB-C Charging Cable,1,11.95,01/27/19 10:20,"256 Walnut St, Dallas, TX 75001" +158722,AAA Batteries (4-pack),1,2.99,01/11/19 18:48,"167 Center St, San Francisco, CA 94016" +158723,Lightning Charging Cable,1,14.95,01/03/19 22:35,"849 Forest St, Boston, MA 02215" +158724,Wired Headphones,1,11.99,01/23/19 00:26,"193 5th St, Boston, MA 02215" +158725,Lightning Charging Cable,1,14.95,01/26/19 08:58,"764 Forest St, Los Angeles, CA 90001" +158726,20in Monitor,1,109.99,01/24/19 21:39,"814 Madison St, Los Angeles, CA 90001" +158727,Apple Airpods Headphones,1,150,01/10/19 20:57,"959 9th St, San Francisco, CA 94016" +158728,USB-C Charging Cable,1,11.95,01/31/19 13:54,"260 Lakeview St, San Francisco, CA 94016" +158729,iPhone,1,700,01/17/19 16:45,"815 9th St, Portland, OR 97035" +158730,AAA Batteries (4-pack),1,2.99,01/13/19 17:22,"981 12th St, New York City, NY 10001" +158731,Bose SoundSport Headphones,1,99.99,01/17/19 13:08,"378 Park St, Boston, MA 02215" +158732,27in FHD Monitor,1,149.99,01/25/19 13:06,"41 Maple St, Boston, MA 02215" +158733,iPhone,1,700,01/24/19 08:59,"369 Forest St, Los Angeles, CA 90001" +158734,27in FHD Monitor,1,149.99,01/01/19 08:29,"604 Hill St, San Francisco, CA 94016" +158735,20in Monitor,1,109.99,01/20/19 10:48,"347 Cedar St, Boston, MA 02215" +158736,AAA Batteries (4-pack),1,2.99,01/28/19 17:13,"831 11th St, Boston, MA 02215" +158737,27in FHD Monitor,1,149.99,01/23/19 10:54,"314 Ridge St, Los Angeles, CA 90001" +158738,Macbook Pro Laptop,1,1700,01/30/19 12:43,"759 Wilson St, Dallas, TX 75001" +158739,AAA Batteries (4-pack),1,2.99,01/11/19 16:44,"556 6th St, Austin, TX 73301" +158740,27in 4K Gaming Monitor,1,389.99,01/03/19 20:48,"122 Spruce St, Los Angeles, CA 90001" +158741,27in FHD Monitor,1,149.99,01/19/19 01:19,"656 12th St, San Francisco, CA 94016" +158742,USB-C Charging Cable,1,11.95,01/21/19 22:48,"683 Elm St, Portland, OR 97035" +158743,AA Batteries (4-pack),1,3.84,01/29/19 19:26,"174 Hill St, San Francisco, CA 94016" +158744,Apple Airpods Headphones,1,150,01/18/19 09:41,"390 14th St, Seattle, WA 98101" +158745,Wired Headphones,1,11.99,01/31/19 19:59,"648 South St, Dallas, TX 75001" +158746,Google Phone,1,600,01/26/19 22:43,"259 Dogwood St, Boston, MA 02215" +158747,AA Batteries (4-pack),1,3.84,01/16/19 10:37,"50 2nd St, Austin, TX 73301" +158748,USB-C Charging Cable,1,11.95,01/18/19 18:44,"746 Jackson St, Dallas, TX 75001" +158749,Wired Headphones,1,11.99,01/15/19 01:34,"464 Johnson St, San Francisco, CA 94016" +158750,Google Phone,1,600,01/23/19 15:43,"299 Meadow St, Los Angeles, CA 90001" +158751,USB-C Charging Cable,1,11.95,01/14/19 23:47,"590 Pine St, Los Angeles, CA 90001" +158752,27in FHD Monitor,1,149.99,01/10/19 22:57,"307 2nd St, Atlanta, GA 30301" +158753,Apple Airpods Headphones,1,150,01/26/19 18:48,"242 North St, Dallas, TX 75001" +158754,Lightning Charging Cable,1,14.95,01/23/19 22:05,"205 River St, Boston, MA 02215" +158755,Lightning Charging Cable,1,14.95,01/28/19 16:39,"728 13th St, Los Angeles, CA 90001" +158756,Wired Headphones,1,11.99,01/03/19 11:44,"32 7th St, San Francisco, CA 94016" +158757,Wired Headphones,1,11.99,01/07/19 11:24,"585 Walnut St, Dallas, TX 75001" +158758,USB-C Charging Cable,1,11.95,01/29/19 17:56,"180 13th St, New York City, NY 10001" +158759,Google Phone,1,600,01/18/19 06:45,"185 8th St, Dallas, TX 75001" +158760,Bose SoundSport Headphones,1,99.99,01/03/19 17:13,"76 Walnut St, San Francisco, CA 94016" +158761,AA Batteries (4-pack),1,3.84,01/12/19 20:48,"359 Walnut St, Los Angeles, CA 90001" +158762,34in Ultrawide Monitor,1,379.99,01/23/19 14:24,"936 Forest St, New York City, NY 10001" +158763,AAA Batteries (4-pack),2,2.99,01/15/19 07:23,"772 Cedar St, Los Angeles, CA 90001" +158764,AA Batteries (4-pack),1,3.84,01/10/19 17:08,"270 14th St, Dallas, TX 75001" +158765,Wired Headphones,1,11.99,01/16/19 23:52,"753 Cedar St, San Francisco, CA 94016" +158766,Google Phone,1,600,01/20/19 00:26,"649 Willow St, Boston, MA 02215" +158767,Apple Airpods Headphones,1,150,01/09/19 08:22,"647 River St, Seattle, WA 98101" +158768,27in FHD Monitor,1,149.99,01/19/19 18:39,"763 10th St, Boston, MA 02215" +158769,USB-C Charging Cable,3,11.95,01/17/19 10:47,"723 South St, Austin, TX 73301" +158770,USB-C Charging Cable,2,11.95,01/25/19 15:04,"160 Lincoln St, Boston, MA 02215" +158771,AA Batteries (4-pack),1,3.84,01/24/19 17:09,"581 Ridge St, Seattle, WA 98101" +158772,Macbook Pro Laptop,1,1700,01/28/19 14:11,"15 River St, Boston, MA 02215" +158773,USB-C Charging Cable,1,11.95,01/03/19 12:12,"943 South St, Los Angeles, CA 90001" +158774,Wired Headphones,1,11.99,01/10/19 17:58,"313 Hill St, Atlanta, GA 30301" +158775,iPhone,1,700,01/21/19 08:55,"455 Ridge St, Boston, MA 02215" +158775,Lightning Charging Cable,1,14.95,01/21/19 08:55,"455 Ridge St, Boston, MA 02215" +158776,USB-C Charging Cable,2,11.95,01/28/19 20:36,"633 Ridge St, Austin, TX 73301" +158777,Lightning Charging Cable,2,14.95,01/27/19 19:11,"635 13th St, Portland, OR 97035" +158778,AA Batteries (4-pack),1,3.84,01/22/19 18:23,"210 10th St, San Francisco, CA 94016" +158779,USB-C Charging Cable,1,11.95,01/12/19 12:42,"109 Center St, New York City, NY 10001" +158780,AA Batteries (4-pack),1,3.84,01/31/19 09:48,"803 12th St, New York City, NY 10001" +158781,Lightning Charging Cable,1,14.95,01/16/19 17:47,"510 Wilson St, Seattle, WA 98101" +158782,USB-C Charging Cable,1,11.95,01/16/19 13:29,"127 Center St, Austin, TX 73301" +158783,Bose SoundSport Headphones,1,99.99,01/22/19 19:58,"336 Jackson St, San Francisco, CA 94016" +158784,Lightning Charging Cable,1,14.95,01/24/19 07:51,"512 11th St, San Francisco, CA 94016" +158785,Vareebadd Phone,1,400,01/26/19 20:02,"911 Willow St, San Francisco, CA 94016" +158785,Flatscreen TV,1,300,01/26/19 20:02,"911 Willow St, San Francisco, CA 94016" +158786,AA Batteries (4-pack),1,3.84,01/07/19 12:02,"757 Adams St, Atlanta, GA 30301" +158787,27in 4K Gaming Monitor,1,389.99,01/16/19 20:20,"361 Main St, Atlanta, GA 30301" +158788,Flatscreen TV,1,300,01/21/19 11:56,"607 Elm St, Los Angeles, CA 90001" +158789,AA Batteries (4-pack),2,3.84,01/06/19 18:43,"542 7th St, Los Angeles, CA 90001" +158790,USB-C Charging Cable,1,11.95,01/28/19 01:09,"462 Center St, San Francisco, CA 94016" +158791,Macbook Pro Laptop,1,1700,01/13/19 14:37,"595 Wilson St, San Francisco, CA 94016" +158792,Wired Headphones,1,11.99,01/23/19 17:33,"838 Hill St, San Francisco, CA 94016" +158793,27in FHD Monitor,1,149.99,01/27/19 19:10,"790 4th St, Dallas, TX 75001" +158794,AA Batteries (4-pack),1,3.84,01/08/19 10:17,"237 South St, San Francisco, CA 94016" +158795,Apple Airpods Headphones,1,150,01/03/19 10:06,"639 Wilson St, Atlanta, GA 30301" +158796,34in Ultrawide Monitor,1,379.99,01/17/19 13:33,"774 Jefferson St, San Francisco, CA 94016" +158797,Apple Airpods Headphones,1,150,01/03/19 05:15,"672 Chestnut St, Austin, TX 73301" +158798,AAA Batteries (4-pack),4,2.99,01/25/19 08:22,"498 Maple St, New York City, NY 10001" +158799,AAA Batteries (4-pack),1,2.99,01/31/19 21:45,"196 Spruce St, Atlanta, GA 30301" +158800,Wired Headphones,1,11.99,01/07/19 18:17,"558 6th St, Dallas, TX 75001" +158801,Apple Airpods Headphones,1,150,01/28/19 18:00,"316 Sunset St, San Francisco, CA 94016" +158802,AA Batteries (4-pack),1,3.84,01/29/19 23:50,"608 Spruce St, Dallas, TX 75001" +158803,ThinkPad Laptop,1,999.99,01/03/19 19:37,"666 Cherry St, Seattle, WA 98101" +158804,Apple Airpods Headphones,1,150,01/29/19 14:56,"746 13th St, Los Angeles, CA 90001" +158805,27in 4K Gaming Monitor,1,389.99,01/14/19 21:21,"916 Wilson St, Boston, MA 02215" +158806,Macbook Pro Laptop,1,1700,01/16/19 13:45,"745 1st St, Los Angeles, CA 90001" +158807,Wired Headphones,1,11.99,01/05/19 15:14,"825 Pine St, Portland, ME 04101" +158808,Wired Headphones,1,11.99,01/10/19 14:09,"945 4th St, San Francisco, CA 94016" +158809,Google Phone,1,600,01/19/19 10:05,"920 Chestnut St, San Francisco, CA 94016" +158810,AAA Batteries (4-pack),1,2.99,01/24/19 18:52,"367 2nd St, Dallas, TX 75001" +158811,iPhone,1,700,01/28/19 09:21,"775 Meadow St, Dallas, TX 75001" +158812,USB-C Charging Cable,1,11.95,01/08/19 19:30,"174 Johnson St, Boston, MA 02215" +158813,Apple Airpods Headphones,1,150,01/06/19 11:45,"194 1st St, Los Angeles, CA 90001" +158814,34in Ultrawide Monitor,1,379.99,01/28/19 13:31,"564 Church St, San Francisco, CA 94016" +158815,AAA Batteries (4-pack),1,2.99,01/29/19 12:38,"810 Elm St, Boston, MA 02215" +158816,AAA Batteries (4-pack),3,2.99,01/06/19 12:42,"416 Johnson St, Boston, MA 02215" +158817,Lightning Charging Cable,1,14.95,01/02/19 10:21,"627 West St, Austin, TX 73301" +158818,AA Batteries (4-pack),1,3.84,01/01/19 22:05,"423 South St, Seattle, WA 98101" +158819,Wired Headphones,1,11.99,01/17/19 12:26,"539 2nd St, Los Angeles, CA 90001" +158820,27in 4K Gaming Monitor,1,389.99,01/19/19 12:04,"451 Willow St, Dallas, TX 75001" +158821,AAA Batteries (4-pack),1,2.99,01/14/19 09:56,"560 Elm St, New York City, NY 10001" +158822,AA Batteries (4-pack),1,3.84,01/18/19 19:43,"692 6th St, Austin, TX 73301" +158823,Bose SoundSport Headphones,1,99.99,01/29/19 21:36,"377 West St, Atlanta, GA 30301" +158824,Wired Headphones,1,11.99,01/10/19 10:50,"677 Park St, Portland, OR 97035" +158825,Bose SoundSport Headphones,1,99.99,01/11/19 17:55,"611 River St, Atlanta, GA 30301" +158826,AA Batteries (4-pack),3,3.84,01/24/19 08:46,"849 Elm St, Portland, OR 97035" +158827,20in Monitor,1,109.99,01/22/19 14:06,"467 River St, Boston, MA 02215" +158828,Lightning Charging Cable,1,14.95,01/21/19 16:46,"530 Main St, Los Angeles, CA 90001" +158829,Bose SoundSport Headphones,1,99.99,01/23/19 13:59,"694 Madison St, Los Angeles, CA 90001" +158830,Macbook Pro Laptop,1,1700,01/24/19 18:58,"517 Madison St, San Francisco, CA 94016" +158831,Lightning Charging Cable,1,14.95,01/16/19 19:34,"495 Hill St, Seattle, WA 98101" +158832,AA Batteries (4-pack),1,3.84,01/12/19 11:15,"482 10th St, San Francisco, CA 94016" +158833,iPhone,1,700,01/15/19 10:09,"578 1st St, Los Angeles, CA 90001" +158834,Google Phone,1,600,01/05/19 21:29,"662 Willow St, San Francisco, CA 94016" +158835,iPhone,1,700,01/08/19 16:05,"86 Madison St, Los Angeles, CA 90001" +158836,34in Ultrawide Monitor,1,379.99,01/11/19 19:32,"290 Washington St, Los Angeles, CA 90001" +158837,AA Batteries (4-pack),1,3.84,01/11/19 13:52,"200 14th St, Seattle, WA 98101" +158838,iPhone,1,700,01/08/19 12:41,"209 Spruce St, New York City, NY 10001" +158839,USB-C Charging Cable,1,11.95,01/26/19 13:24,"943 Madison St, Seattle, WA 98101" +158840,Bose SoundSport Headphones,1,99.99,01/04/19 07:34,"924 Jefferson St, San Francisco, CA 94016" +158841,Apple Airpods Headphones,1,150,01/06/19 15:08,"227 Hickory St, Seattle, WA 98101" +158842,Apple Airpods Headphones,1,150,01/31/19 19:19,"424 Johnson St, San Francisco, CA 94016" +158843,AAA Batteries (4-pack),1,2.99,01/17/19 10:43,"59 Pine St, Dallas, TX 75001" +158844,USB-C Charging Cable,1,11.95,01/23/19 17:02,"521 River St, Atlanta, GA 30301" +158845,34in Ultrawide Monitor,1,379.99,01/11/19 22:04,"868 Willow St, Los Angeles, CA 90001" +158846,AAA Batteries (4-pack),4,2.99,01/05/19 11:04,"635 North St, Los Angeles, CA 90001" +158847,Wired Headphones,2,11.99,01/09/19 17:25,"764 2nd St, Boston, MA 02215" +158848,ThinkPad Laptop,1,999.99,01/01/19 09:07,"222 7th St, San Francisco, CA 94016" +158849,ThinkPad Laptop,1,999.99,01/13/19 14:19,"752 Lakeview St, San Francisco, CA 94016" +158850,Wired Headphones,1,11.99,01/31/19 16:31,"699 West St, Dallas, TX 75001" +158851,Macbook Pro Laptop,1,1700,01/29/19 00:17,"443 Main St, Los Angeles, CA 90001" +158852,AAA Batteries (4-pack),3,2.99,01/18/19 08:29,"815 Lincoln St, Austin, TX 73301" +158853,USB-C Charging Cable,1,11.95,01/03/19 15:12,"519 Center St, New York City, NY 10001" +158854,27in 4K Gaming Monitor,1,389.99,01/04/19 12:19,"765 Highland St, Seattle, WA 98101" +158855,Wired Headphones,1,11.99,01/13/19 16:02,"782 Maple St, Atlanta, GA 30301" +158856,AAA Batteries (4-pack),1,2.99,01/18/19 23:48,"320 Meadow St, Dallas, TX 75001" +158857,20in Monitor,1,109.99,01/02/19 11:46,"759 Church St, Seattle, WA 98101" +158858,LG Dryer,1,600.0,01/13/19 11:54,"414 Lincoln St, Portland, OR 97035" +158859,Google Phone,1,600,01/29/19 16:37,"451 11th St, Los Angeles, CA 90001" +158860,Apple Airpods Headphones,1,150,01/21/19 13:42,"671 Willow St, Los Angeles, CA 90001" +158861,USB-C Charging Cable,1,11.95,01/31/19 00:23,"204 Jefferson St, Dallas, TX 75001" +158862,Flatscreen TV,1,300,01/03/19 10:33,"314 River St, San Francisco, CA 94016" +158863,Vareebadd Phone,1,400,01/23/19 23:34,"404 Forest St, Los Angeles, CA 90001" +158864,AAA Batteries (4-pack),2,2.99,01/27/19 08:33,"154 Dogwood St, Seattle, WA 98101" +158865,AAA Batteries (4-pack),1,2.99,01/18/19 23:28,"201 13th St, Los Angeles, CA 90001" +158866,Apple Airpods Headphones,1,150,01/16/19 19:49,"932 South St, Los Angeles, CA 90001" +158867,Wired Headphones,1,11.99,01/30/19 17:42,"270 9th St, Los Angeles, CA 90001" +158868,27in 4K Gaming Monitor,1,389.99,01/31/19 08:46,"510 Willow St, San Francisco, CA 94016" +158869,USB-C Charging Cable,1,11.95,01/21/19 19:28,"11 Maple St, Austin, TX 73301" +158870,Lightning Charging Cable,1,14.95,01/29/19 18:26,"251 11th St, Los Angeles, CA 90001" +158871,Apple Airpods Headphones,1,150,01/20/19 00:28,"912 Jackson St, Atlanta, GA 30301" +158872,AAA Batteries (4-pack),2,2.99,01/31/19 13:22,"339 10th St, San Francisco, CA 94016" +158873,USB-C Charging Cable,1,11.95,01/03/19 14:06,"117 6th St, San Francisco, CA 94016" +158874,Lightning Charging Cable,1,14.95,01/11/19 17:22,"784 Willow St, Los Angeles, CA 90001" +158875,Lightning Charging Cable,1,14.95,01/28/19 09:54,"818 9th St, Dallas, TX 75001" +158876,USB-C Charging Cable,1,11.95,01/12/19 00:41,"156 Spruce St, Dallas, TX 75001" +158877,AA Batteries (4-pack),1,3.84,01/26/19 12:00,"69 Cedar St, New York City, NY 10001" +158878,iPhone,2,700,01/22/19 07:24,"922 12th St, Los Angeles, CA 90001" +158879,AA Batteries (4-pack),1,3.84,01/13/19 21:10,"529 Madison St, Los Angeles, CA 90001" +158880,USB-C Charging Cable,1,11.95,01/06/19 16:38,"716 14th St, Los Angeles, CA 90001" +158881,USB-C Charging Cable,1,11.95,01/01/19 13:56,"702 Jefferson St, Seattle, WA 98101" +158882,AAA Batteries (4-pack),2,2.99,01/29/19 14:45,"205 6th St, Boston, MA 02215" +158883,Wired Headphones,1,11.99,01/04/19 13:24,"384 Cedar St, Boston, MA 02215" +158884,27in FHD Monitor,1,149.99,01/27/19 20:49,"168 7th St, Austin, TX 73301" +158885,Apple Airpods Headphones,1,150,01/23/19 13:40,"648 Maple St, San Francisco, CA 94016" +158886,USB-C Charging Cable,1,11.95,01/23/19 20:58,"262 Lincoln St, Austin, TX 73301" +158887,27in 4K Gaming Monitor,1,389.99,01/11/19 08:55,"310 Washington St, New York City, NY 10001" +158888,27in FHD Monitor,1,149.99,01/10/19 19:35,"182 Highland St, San Francisco, CA 94016" +158889,USB-C Charging Cable,1,11.95,01/12/19 12:57,"630 Lincoln St, Atlanta, GA 30301" +158890,Bose SoundSport Headphones,1,99.99,01/16/19 19:49,"713 Elm St, Dallas, TX 75001" +158891,27in FHD Monitor,1,149.99,01/21/19 11:23,"320 Lakeview St, New York City, NY 10001" +158892,20in Monitor,1,109.99,01/28/19 13:06,"236 8th St, Austin, TX 73301" +158893,27in 4K Gaming Monitor,1,389.99,01/08/19 19:10,"382 Walnut St, San Francisco, CA 94016" +158894,27in FHD Monitor,1,149.99,01/07/19 11:39,"779 Sunset St, San Francisco, CA 94016" +158895,Lightning Charging Cable,1,14.95,01/27/19 21:51,"292 9th St, San Francisco, CA 94016" +158896,Lightning Charging Cable,1,14.95,01/06/19 14:59,"971 Spruce St, Portland, OR 97035" +158897,27in FHD Monitor,1,149.99,01/15/19 07:03,"524 Hickory St, Dallas, TX 75001" +158898,iPhone,1,700,01/27/19 09:05,"868 12th St, Seattle, WA 98101" +158899,USB-C Charging Cable,2,11.95,01/12/19 10:53,"245 Church St, Boston, MA 02215" +158900,20in Monitor,1,109.99,01/28/19 09:17,"909 12th St, Los Angeles, CA 90001" +158901,Wired Headphones,1,11.99,01/31/19 12:54,"225 6th St, Los Angeles, CA 90001" +158902,AA Batteries (4-pack),1,3.84,01/14/19 17:25,"404 Main St, Seattle, WA 98101" +158903,Bose SoundSport Headphones,1,99.99,01/03/19 22:02,"712 Dogwood St, San Francisco, CA 94016" +158904,27in FHD Monitor,1,149.99,01/05/19 11:48,"688 Elm St, Boston, MA 02215" +158905,Wired Headphones,1,11.99,01/06/19 18:39,"509 Main St, San Francisco, CA 94016" +158906,Bose SoundSport Headphones,1,99.99,01/02/19 06:35,"751 Lincoln St, Dallas, TX 75001" +158907,iPhone,1,700,01/01/19 19:08,"394 5th St, Los Angeles, CA 90001" +158907,Lightning Charging Cable,1,14.95,01/01/19 19:08,"394 5th St, Los Angeles, CA 90001" +158908,Wired Headphones,2,11.99,01/17/19 08:25,"42 13th St, Austin, TX 73301" +158909,Bose SoundSport Headphones,1,99.99,01/04/19 21:21,"595 Pine St, Boston, MA 02215" +158910,AAA Batteries (4-pack),1,2.99,01/20/19 21:46,"715 6th St, New York City, NY 10001" +158911,USB-C Charging Cable,1,11.95,01/21/19 10:00,"688 14th St, San Francisco, CA 94016" +158912,Vareebadd Phone,1,400,01/14/19 08:22,"425 14th St, San Francisco, CA 94016" +158913,USB-C Charging Cable,1,11.95,01/30/19 20:21,"227 Adams St, New York City, NY 10001" +158914,34in Ultrawide Monitor,1,379.99,01/05/19 18:55,"854 Sunset St, Dallas, TX 75001" +158915,34in Ultrawide Monitor,1,379.99,01/08/19 17:25,"723 13th St, San Francisco, CA 94016" +158916,Apple Airpods Headphones,1,150,01/08/19 05:24,"723 8th St, San Francisco, CA 94016" +158917,Apple Airpods Headphones,1,150,01/31/19 15:58,"843 Elm St, San Francisco, CA 94016" +158918,Flatscreen TV,1,300,01/05/19 03:25,"829 Johnson St, San Francisco, CA 94016" +158918,AA Batteries (4-pack),1,3.84,01/05/19 03:25,"829 Johnson St, San Francisco, CA 94016" +158919,LG Dryer,1,600.0,01/29/19 11:15,"67 Spruce St, Atlanta, GA 30301" +158920,27in FHD Monitor,1,149.99,01/06/19 19:41,"688 Lakeview St, San Francisco, CA 94016" +158921,iPhone,1,700,01/22/19 16:50,"853 14th St, Portland, OR 97035" +158922,Wired Headphones,1,11.99,01/02/19 15:43,"321 Cherry St, San Francisco, CA 94016" +158923,Lightning Charging Cable,1,14.95,01/10/19 18:47,"285 6th St, San Francisco, CA 94016" +158924,USB-C Charging Cable,1,11.95,01/26/19 20:35,"470 Cedar St, Los Angeles, CA 90001" +158925,Wired Headphones,1,11.99,01/17/19 14:04,"570 Johnson St, San Francisco, CA 94016" +158926,USB-C Charging Cable,1,11.95,01/20/19 13:19,"735 Cedar St, Los Angeles, CA 90001" +158927,AA Batteries (4-pack),1,3.84,01/02/19 18:20,"941 River St, San Francisco, CA 94016" +158928,27in FHD Monitor,1,149.99,01/20/19 11:09,"723 5th St, Los Angeles, CA 90001" +158929,ThinkPad Laptop,1,999.99,01/03/19 19:18,"990 1st St, New York City, NY 10001" +158929,Apple Airpods Headphones,1,150,01/03/19 19:18,"990 1st St, New York City, NY 10001" +158930,Wired Headphones,2,11.99,01/12/19 15:06,"468 Center St, Seattle, WA 98101" +158931,AA Batteries (4-pack),2,3.84,01/27/19 14:01,"573 Jefferson St, Seattle, WA 98101" +158932,Apple Airpods Headphones,1,150,01/15/19 08:11,"241 Ridge St, Los Angeles, CA 90001" +158933,AA Batteries (4-pack),1,3.84,01/12/19 14:57,"980 Lake St, Los Angeles, CA 90001" +158934,Wired Headphones,1,11.99,01/26/19 16:42,"231 Johnson St, Los Angeles, CA 90001" +158935,27in FHD Monitor,1,149.99,01/03/19 11:55,"539 Church St, San Francisco, CA 94016" +158936,USB-C Charging Cable,1,11.95,01/21/19 08:54,"48 14th St, New York City, NY 10001" +158937,AAA Batteries (4-pack),1,2.99,01/10/19 11:33,"28 Hill St, San Francisco, CA 94016" +158938,iPhone,1,700,01/31/19 18:30,"626 South St, Boston, MA 02215" +158939,USB-C Charging Cable,1,11.95,01/08/19 18:48,"168 Cherry St, Los Angeles, CA 90001" +158940,Lightning Charging Cable,1,14.95,01/21/19 12:16,"214 Lake St, Los Angeles, CA 90001" +158941,Wired Headphones,1,11.99,01/17/19 19:00,"769 Spruce St, San Francisco, CA 94016" +158942,27in FHD Monitor,1,149.99,01/18/19 11:28,"52 Johnson St, Dallas, TX 75001" +158943,Vareebadd Phone,1,400,01/16/19 17:46,"589 6th St, Los Angeles, CA 90001" +158944,AAA Batteries (4-pack),1,2.99,01/29/19 16:07,"295 Wilson St, Atlanta, GA 30301" +158945,27in FHD Monitor,1,149.99,01/13/19 10:07,"772 5th St, San Francisco, CA 94016" +158946,Flatscreen TV,1,300,01/24/19 21:43,"57 Spruce St, Los Angeles, CA 90001" +158947,Apple Airpods Headphones,1,150,01/19/19 20:40,"718 Jackson St, Seattle, WA 98101" +158948,iPhone,1,700,01/26/19 15:27,"150 North St, Los Angeles, CA 90001" +158949,AA Batteries (4-pack),2,3.84,01/06/19 17:46,"237 South St, Atlanta, GA 30301" +158950,Wired Headphones,1,11.99,01/20/19 17:07,"696 Jefferson St, Boston, MA 02215" +158951,AA Batteries (4-pack),1,3.84,01/15/19 13:35,"471 Willow St, San Francisco, CA 94016" +158952,AA Batteries (4-pack),1,3.84,01/28/19 00:08,"122 10th St, Los Angeles, CA 90001" +158953,34in Ultrawide Monitor,1,379.99,01/31/19 13:24,"930 Lakeview St, New York City, NY 10001" +158954,iPhone,1,700,01/29/19 03:20,"175 14th St, Los Angeles, CA 90001" +158954,Apple Airpods Headphones,1,150,01/29/19 03:20,"175 14th St, Los Angeles, CA 90001" +158954,Bose SoundSport Headphones,1,99.99,01/29/19 03:20,"175 14th St, Los Angeles, CA 90001" +158955,Bose SoundSport Headphones,1,99.99,01/27/19 20:24,"918 Elm St, San Francisco, CA 94016" +158956,Apple Airpods Headphones,1,150,01/21/19 23:05,"360 Cedar St, Seattle, WA 98101" +158957,Apple Airpods Headphones,1,150,01/19/19 18:46,"824 5th St, New York City, NY 10001" +158958,27in 4K Gaming Monitor,1,389.99,01/31/19 09:21,"475 Madison St, San Francisco, CA 94016" +158959,AA Batteries (4-pack),1,3.84,01/04/19 11:44,"118 Hill St, Boston, MA 02215" +158960,USB-C Charging Cable,1,11.95,01/05/19 10:08,"521 7th St, Seattle, WA 98101" +158961,AAA Batteries (4-pack),3,2.99,01/29/19 22:45,"780 Cherry St, Portland, ME 04101" +158962,AAA Batteries (4-pack),1,2.99,01/26/19 10:20,"546 Washington St, San Francisco, CA 94016" +158963,34in Ultrawide Monitor,1,379.99,01/24/19 01:28,"192 10th St, Dallas, TX 75001" +158964,Wired Headphones,2,11.99,01/25/19 19:00,"829 Cedar St, New York City, NY 10001" +158965,Lightning Charging Cable,1,14.95,01/14/19 19:58,"678 11th St, New York City, NY 10001" +158966,Apple Airpods Headphones,1,150,01/09/19 13:18,"105 Lake St, New York City, NY 10001" +158967,27in FHD Monitor,1,149.99,01/27/19 19:37,"733 North St, San Francisco, CA 94016" +158968,Google Phone,1,600,01/07/19 14:17,"970 Hill St, Portland, ME 04101" +158969,USB-C Charging Cable,1,11.95,01/24/19 23:10,"161 North St, Atlanta, GA 30301" +158970,USB-C Charging Cable,1,11.95,01/20/19 08:28,"255 9th St, San Francisco, CA 94016" +158971,AAA Batteries (4-pack),1,2.99,01/11/19 19:06,"109 Ridge St, Atlanta, GA 30301" +158972,Lightning Charging Cable,1,14.95,01/20/19 22:27,"790 Hickory St, San Francisco, CA 94016" +158973,Lightning Charging Cable,1,14.95,01/21/19 11:26,"927 North St, San Francisco, CA 94016" +158974,Apple Airpods Headphones,1,150,01/22/19 13:08,"414 Jefferson St, New York City, NY 10001" +158975,Wired Headphones,1,11.99,01/15/19 21:20,"257 1st St, San Francisco, CA 94016" +158976,Bose SoundSport Headphones,1,99.99,01/22/19 21:39,"127 Johnson St, San Francisco, CA 94016" +158977,27in FHD Monitor,1,149.99,01/03/19 05:09,"472 4th St, Los Angeles, CA 90001" +158978,20in Monitor,1,109.99,01/31/19 16:30,"160 Wilson St, Austin, TX 73301" +158979,Lightning Charging Cable,1,14.95,01/09/19 01:11,"717 Park St, San Francisco, CA 94016" +158980,Wired Headphones,1,11.99,01/19/19 19:04,"492 14th St, Austin, TX 73301" +158981,20in Monitor,1,109.99,01/05/19 13:02,"131 Dogwood St, Seattle, WA 98101" +158982,Lightning Charging Cable,1,14.95,01/27/19 21:38,"637 Cherry St, Atlanta, GA 30301" +158983,27in FHD Monitor,1,149.99,01/30/19 22:16,"592 Cedar St, Atlanta, GA 30301" +158984,USB-C Charging Cable,1,11.95,01/02/19 08:22,"809 Park St, Seattle, WA 98101" +158985,Apple Airpods Headphones,1,150,01/20/19 03:54,"357 Spruce St, Portland, OR 97035" +158986,27in 4K Gaming Monitor,1,389.99,01/01/19 14:43,"111 South St, New York City, NY 10001" +158987,Lightning Charging Cable,2,14.95,01/04/19 10:47,"358 Main St, Dallas, TX 75001" +158988,AAA Batteries (4-pack),1,2.99,01/12/19 12:31,"53 Church St, Los Angeles, CA 90001" +158989,AAA Batteries (4-pack),1,2.99,01/21/19 20:30,"811 12th St, Boston, MA 02215" +158990,LG Dryer,1,600.0,01/05/19 16:52,"271 6th St, Los Angeles, CA 90001" +158991,Wired Headphones,1,11.99,01/27/19 19:32,"388 11th St, Boston, MA 02215" +158992,Wired Headphones,1,11.99,01/07/19 20:04,"111 Park St, Portland, OR 97035" +158993,Apple Airpods Headphones,1,150,01/29/19 15:55,"774 5th St, Boston, MA 02215" +158994,Lightning Charging Cable,1,14.95,01/26/19 11:02,"389 Cedar St, San Francisco, CA 94016" +158995,AA Batteries (4-pack),1,3.84,01/15/19 12:04,"346 Forest St, New York City, NY 10001" +158996,ThinkPad Laptop,1,999.99,01/01/19 07:39,"864 Maple St, San Francisco, CA 94016" +158997,Lightning Charging Cable,1,14.95,01/27/19 14:01,"802 1st St, Los Angeles, CA 90001" +158998,USB-C Charging Cable,1,11.95,01/16/19 09:16,"273 Sunset St, Los Angeles, CA 90001" +158999,Apple Airpods Headphones,1,150,01/04/19 11:58,"198 Walnut St, Austin, TX 73301" +158999,Wired Headphones,1,11.99,01/04/19 11:58,"198 Walnut St, Austin, TX 73301" +159000,Apple Airpods Headphones,1,150,01/19/19 00:02,"585 West St, San Francisco, CA 94016" +159001,AAA Batteries (4-pack),1,2.99,01/20/19 07:49,"495 Wilson St, Dallas, TX 75001" +159002,Lightning Charging Cable,1,14.95,01/06/19 11:09,"316 Church St, San Francisco, CA 94016" +159003,AAA Batteries (4-pack),1,2.99,01/11/19 11:47,"646 10th St, Seattle, WA 98101" +159004,Wired Headphones,1,11.99,01/24/19 08:37,"440 Lakeview St, Los Angeles, CA 90001" +159005,iPhone,1,700,01/01/19 10:11,"57 10th St, Dallas, TX 75001" +159006,Bose SoundSport Headphones,1,99.99,01/10/19 08:59,"549 Highland St, San Francisco, CA 94016" +159007,Lightning Charging Cable,1,14.95,01/19/19 05:24,"173 Forest St, Los Angeles, CA 90001" +159008,AA Batteries (4-pack),2,3.84,01/27/19 19:53,"462 Dogwood St, Seattle, WA 98101" +159009,USB-C Charging Cable,1,11.95,01/09/19 06:34,"964 Pine St, Austin, TX 73301" +159010,AA Batteries (4-pack),1,3.84,01/11/19 15:09,"325 Johnson St, Portland, OR 97035" +159011,Apple Airpods Headphones,1,150,01/27/19 17:47,"217 7th St, Dallas, TX 75001" +159012,Flatscreen TV,1,300,01/19/19 17:16,"327 Willow St, Boston, MA 02215" +159013,Macbook Pro Laptop,1,1700,01/26/19 10:09,"512 West St, San Francisco, CA 94016" +159014,AA Batteries (4-pack),1,3.84,01/24/19 18:14,"905 12th St, Austin, TX 73301" +159015,USB-C Charging Cable,1,11.95,01/04/19 16:08,"392 Hill St, Boston, MA 02215" +159016,Macbook Pro Laptop,1,1700,01/22/19 21:56,"357 River St, Atlanta, GA 30301" +159017,Wired Headphones,1,11.99,01/22/19 22:58,"215 Sunset St, Portland, OR 97035" +159018,27in 4K Gaming Monitor,1,389.99,01/29/19 02:39,"198 Hickory St, New York City, NY 10001" +159019,Wired Headphones,1,11.99,01/06/19 19:49,"924 Johnson St, New York City, NY 10001" +159020,USB-C Charging Cable,1,11.95,01/20/19 21:11,"477 Lakeview St, Boston, MA 02215" +159021,Wired Headphones,1,11.99,01/27/19 17:11,"416 13th St, Portland, OR 97035" +159022,20in Monitor,1,109.99,01/24/19 10:24,"585 Jackson St, Seattle, WA 98101" +159022,AA Batteries (4-pack),1,3.84,01/24/19 10:24,"585 Jackson St, Seattle, WA 98101" +159023,Google Phone,1,600,01/10/19 13:18,"23 Park St, Boston, MA 02215" +159024,34in Ultrawide Monitor,1,379.99,01/04/19 20:13,"604 Cedar St, San Francisco, CA 94016" +159025,AAA Batteries (4-pack),1,2.99,01/24/19 11:19,"130 Adams St, San Francisco, CA 94016" +159026,Wired Headphones,1,11.99,01/06/19 20:58,"261 Meadow St, San Francisco, CA 94016" +159027,27in FHD Monitor,1,149.99,01/07/19 21:11,"163 Washington St, San Francisco, CA 94016" +159028,USB-C Charging Cable,1,11.95,01/31/19 07:07,"400 Cherry St, Austin, TX 73301" +159029,Lightning Charging Cable,1,14.95,01/06/19 06:05,"200 Willow St, Dallas, TX 75001" +159030,AA Batteries (4-pack),1,3.84,01/03/19 10:54,"128 Lake St, Boston, MA 02215" +159031,Google Phone,1,600,01/12/19 20:07,"871 8th St, San Francisco, CA 94016" +159031,USB-C Charging Cable,1,11.95,01/12/19 20:07,"871 8th St, San Francisco, CA 94016" +159032,AA Batteries (4-pack),2,3.84,01/14/19 10:53,"206 River St, New York City, NY 10001" +159033,AAA Batteries (4-pack),6,2.99,01/13/19 12:18,"297 Dogwood St, San Francisco, CA 94016" +159034,34in Ultrawide Monitor,1,379.99,01/28/19 18:58,"289 Johnson St, Seattle, WA 98101" +159035,Vareebadd Phone,1,400,01/07/19 10:30,"685 Pine St, Portland, OR 97035" +159036,Bose SoundSport Headphones,1,99.99,01/28/19 19:57,"933 Sunset St, Seattle, WA 98101" +159037,27in FHD Monitor,1,149.99,01/19/19 17:25,"545 Lincoln St, New York City, NY 10001" +159038,Google Phone,1,600,01/10/19 16:31,"263 Meadow St, San Francisco, CA 94016" +159039,Flatscreen TV,1,300,01/03/19 09:56,"76 5th St, Seattle, WA 98101" +159040,Wired Headphones,1,11.99,01/01/19 17:25,"467 Jefferson St, San Francisco, CA 94016" +159041,Flatscreen TV,1,300,01/08/19 00:15,"994 River St, New York City, NY 10001" +159042,20in Monitor,1,109.99,01/14/19 20:29,"415 Pine St, Los Angeles, CA 90001" +159043,Flatscreen TV,1,300,01/02/19 13:37,"501 Jefferson St, Dallas, TX 75001" +159044,Wired Headphones,1,11.99,01/15/19 00:18,"292 Madison St, Dallas, TX 75001" +159045,27in 4K Gaming Monitor,1,389.99,01/15/19 10:32,"783 9th St, Portland, OR 97035" +159046,Wired Headphones,1,11.99,01/28/19 23:56,"442 Walnut St, New York City, NY 10001" +159047,Lightning Charging Cable,1,14.95,01/05/19 13:55,"352 Chestnut St, Los Angeles, CA 90001" +159048,27in FHD Monitor,1,149.99,01/18/19 17:01,"210 1st St, Los Angeles, CA 90001" +159049,Wired Headphones,1,11.99,01/06/19 12:54,"343 Hickory St, Seattle, WA 98101" +159050,Wired Headphones,1,11.99,01/05/19 19:03,"776 2nd St, Austin, TX 73301" +159051,AA Batteries (4-pack),1,3.84,01/13/19 15:51,"187 Hill St, San Francisco, CA 94016" +159052,Lightning Charging Cable,1,14.95,01/30/19 18:58,"820 1st St, Austin, TX 73301" +159053,Lightning Charging Cable,1,14.95,01/25/19 11:03,"23 Center St, Atlanta, GA 30301" +159054,USB-C Charging Cable,1,11.95,01/17/19 13:32,"896 Cedar St, Boston, MA 02215" +159055,USB-C Charging Cable,1,11.95,01/19/19 10:35,"746 Johnson St, Seattle, WA 98101" +159056,AAA Batteries (4-pack),2,2.99,01/16/19 15:34,"276 South St, Seattle, WA 98101" +159057,AAA Batteries (4-pack),2,2.99,01/06/19 18:50,"608 Lakeview St, New York City, NY 10001" +159058,Apple Airpods Headphones,1,150,01/07/19 00:02,"168 12th St, Los Angeles, CA 90001" +159059,LG Washing Machine,1,600.0,01/30/19 06:31,"422 10th St, San Francisco, CA 94016" +159060,27in 4K Gaming Monitor,1,389.99,01/01/19 12:09,"416 Jefferson St, Seattle, WA 98101" +159061,AA Batteries (4-pack),1,3.84,01/03/19 12:55,"158 Forest St, Austin, TX 73301" +159062,iPhone,1,700,01/29/19 14:41,"520 5th St, San Francisco, CA 94016" +159062,Lightning Charging Cable,1,14.95,01/29/19 14:41,"520 5th St, San Francisco, CA 94016" +159063,Google Phone,1,600,01/28/19 14:05,"508 4th St, Dallas, TX 75001" +159064,27in 4K Gaming Monitor,1,389.99,01/26/19 15:39,"499 11th St, San Francisco, CA 94016" +159065,USB-C Charging Cable,1,11.95,01/07/19 20:49,"863 10th St, Los Angeles, CA 90001" +159066,Flatscreen TV,1,300,01/18/19 09:19,"434 12th St, Austin, TX 73301" +159067,USB-C Charging Cable,1,11.95,01/05/19 11:55,"181 Pine St, Seattle, WA 98101" +159068,Bose SoundSport Headphones,1,99.99,01/07/19 20:49,"112 Church St, Seattle, WA 98101" +159069,Lightning Charging Cable,1,14.95,01/17/19 14:57,"989 Washington St, Boston, MA 02215" +159070,AA Batteries (4-pack),1,3.84,01/24/19 09:29,"534 Spruce St, San Francisco, CA 94016" +159071,USB-C Charging Cable,1,11.95,01/24/19 10:13,"883 14th St, Los Angeles, CA 90001" +159072,Macbook Pro Laptop,1,1700,01/05/19 12:50,"591 1st St, San Francisco, CA 94016" +159073,USB-C Charging Cable,1,11.95,01/23/19 20:02,"898 Cherry St, Austin, TX 73301" +159074,Wired Headphones,1,11.99,01/31/19 17:25,"919 10th St, San Francisco, CA 94016" +159075,Lightning Charging Cable,1,14.95,01/07/19 11:05,"342 Jackson St, Los Angeles, CA 90001" +159076,Macbook Pro Laptop,1,1700,01/04/19 12:00,"494 Maple St, Dallas, TX 75001" +159077,AA Batteries (4-pack),1,3.84,01/09/19 19:46,"698 7th St, San Francisco, CA 94016" +159078,AA Batteries (4-pack),2,3.84,01/22/19 12:48,"887 Main St, Los Angeles, CA 90001" +159079,AA Batteries (4-pack),1,3.84,01/26/19 12:21,"270 West St, San Francisco, CA 94016" +159080,AA Batteries (4-pack),1,3.84,01/23/19 12:54,"234 River St, San Francisco, CA 94016" +159081,Lightning Charging Cable,1,14.95,01/09/19 17:21,"230 2nd St, New York City, NY 10001" +159082,iPhone,1,700,01/03/19 14:34,"286 Elm St, Seattle, WA 98101" +159083,Wired Headphones,1,11.99,01/20/19 16:12,"992 Dogwood St, Seattle, WA 98101" +159084,Flatscreen TV,1,300,01/20/19 17:43,"109 11th St, Seattle, WA 98101" +159085,Apple Airpods Headphones,1,150,01/24/19 18:48,"855 Washington St, New York City, NY 10001" +159086,Flatscreen TV,1,300,01/07/19 00:02,"488 2nd St, San Francisco, CA 94016" +159087,34in Ultrawide Monitor,1,379.99,01/29/19 19:46,"861 2nd St, Seattle, WA 98101" +159088,Bose SoundSport Headphones,1,99.99,01/20/19 14:59,"569 Ridge St, Dallas, TX 75001" +159089,Lightning Charging Cable,1,14.95,01/06/19 08:13,"473 Elm St, Los Angeles, CA 90001" +159090,USB-C Charging Cable,1,11.95,01/14/19 15:15,"142 Wilson St, Boston, MA 02215" +159091,AA Batteries (4-pack),1,3.84,01/21/19 19:22,"542 2nd St, Seattle, WA 98101" +159092,Bose SoundSport Headphones,1,99.99,01/12/19 16:25,"852 Park St, Los Angeles, CA 90001" +159092,ThinkPad Laptop,1,999.99,01/12/19 16:25,"852 Park St, Los Angeles, CA 90001" +159093,USB-C Charging Cable,1,11.95,01/04/19 13:12,"666 8th St, New York City, NY 10001" +159094,AAA Batteries (4-pack),1,2.99,01/22/19 10:57,"429 Wilson St, Boston, MA 02215" +159095,AA Batteries (4-pack),1,3.84,01/11/19 12:05,"659 12th St, New York City, NY 10001" +159096,27in FHD Monitor,1,149.99,01/03/19 20:32,"164 Cedar St, Portland, ME 04101" +159097,USB-C Charging Cable,1,11.95,01/28/19 08:54,"318 Jefferson St, San Francisco, CA 94016" +159098,AA Batteries (4-pack),1,3.84,01/30/19 21:27,"806 Jackson St, San Francisco, CA 94016" +159099,AAA Batteries (4-pack),1,2.99,01/07/19 11:52,"610 13th St, Dallas, TX 75001" +159100,Apple Airpods Headphones,1,150,01/10/19 12:19,"399 Lincoln St, San Francisco, CA 94016" +159101,Wired Headphones,1,11.99,01/31/19 14:28,"932 12th St, Seattle, WA 98101" +159102,AA Batteries (4-pack),2,3.84,01/15/19 13:38,"607 Church St, New York City, NY 10001" +159103,USB-C Charging Cable,1,11.95,01/05/19 12:06,"913 Wilson St, New York City, NY 10001" +159104,Apple Airpods Headphones,1,150,01/18/19 16:00,"438 Lakeview St, Portland, OR 97035" +159105,USB-C Charging Cable,1,11.95,01/02/19 14:39,"690 Lakeview St, Boston, MA 02215" +159106,Wired Headphones,1,11.99,01/06/19 11:55,"98 7th St, Portland, OR 97035" +159107,27in FHD Monitor,1,149.99,01/30/19 16:44,"424 Ridge St, Los Angeles, CA 90001" +159108,Lightning Charging Cable,1,14.95,01/03/19 08:15,"719 12th St, Atlanta, GA 30301" +159109,Apple Airpods Headphones,1,150,01/02/19 15:01,"272 Jefferson St, New York City, NY 10001" +159110,Lightning Charging Cable,1,14.95,01/02/19 18:25,"456 Willow St, Los Angeles, CA 90001" +159111,AAA Batteries (4-pack),1,2.99,01/02/19 22:00,"88 12th St, Atlanta, GA 30301" +159112,20in Monitor,1,109.99,01/12/19 20:32,"610 Sunset St, Dallas, TX 75001" +159113,Wired Headphones,1,11.99,01/23/19 16:04,"326 6th St, Los Angeles, CA 90001" +159114,Wired Headphones,1,11.99,01/30/19 01:46,"794 Forest St, Portland, OR 97035" +159115,USB-C Charging Cable,1,11.95,01/11/19 22:13,"186 12th St, Boston, MA 02215" +159116,Apple Airpods Headphones,1,150,01/01/19 12:52,"944 8th St, San Francisco, CA 94016" +159117,Wired Headphones,1,11.99,01/31/19 17:50,"310 Park St, San Francisco, CA 94016" +159118,USB-C Charging Cable,1,11.95,01/14/19 19:53,"594 Church St, Boston, MA 02215" +159119,iPhone,1,700,01/13/19 15:42,"621 Willow St, New York City, NY 10001" +159120,USB-C Charging Cable,1,11.95,01/31/19 22:57,"527 6th St, San Francisco, CA 94016" +159120,Bose SoundSport Headphones,1,99.99,01/31/19 22:57,"527 6th St, San Francisco, CA 94016" +159121,USB-C Charging Cable,1,11.95,01/12/19 06:43,"753 Hickory St, New York City, NY 10001" +159122,AAA Batteries (4-pack),1,2.99,01/19/19 18:02,"359 14th St, New York City, NY 10001" +159123,AA Batteries (4-pack),1,3.84,01/30/19 20:51,"67 Cherry St, San Francisco, CA 94016" +159124,Macbook Pro Laptop,1,1700,01/02/19 04:35,"206 2nd St, New York City, NY 10001" +159125,Macbook Pro Laptop,1,1700,01/16/19 21:01,"444 Lakeview St, Boston, MA 02215" +159126,Bose SoundSport Headphones,1,99.99,01/14/19 14:44,"484 Pine St, San Francisco, CA 94016" +159127,Google Phone,1,600,01/24/19 20:24,"290 Cedar St, Dallas, TX 75001" +159128,Wired Headphones,1,11.99,01/06/19 11:31,"715 13th St, Seattle, WA 98101" +159129,iPhone,1,700,01/07/19 07:13,"603 Dogwood St, San Francisco, CA 94016" +159129,Wired Headphones,1,11.99,01/07/19 07:13,"603 Dogwood St, San Francisco, CA 94016" +159130,Apple Airpods Headphones,1,150,01/31/19 21:06,"252 6th St, San Francisco, CA 94016" +159131,AAA Batteries (4-pack),1,2.99,02/01/19 00:16,"65 Elm St, Los Angeles, CA 90001" +159132,AA Batteries (4-pack),2,3.84,01/03/19 13:08,"707 5th St, New York City, NY 10001" +159133,USB-C Charging Cable,1,11.95,01/27/19 18:13,"828 Center St, San Francisco, CA 94016" +159134,USB-C Charging Cable,1,11.95,01/18/19 19:25,"858 River St, Dallas, TX 75001" +159135,20in Monitor,1,109.99,01/09/19 09:57,"662 Madison St, San Francisco, CA 94016" +159136,AAA Batteries (4-pack),3,2.99,01/10/19 15:56,"807 11th St, Los Angeles, CA 90001" +159137,Google Phone,1,600,01/20/19 08:11,"690 Lincoln St, New York City, NY 10001" +159138,Lightning Charging Cable,1,14.95,01/15/19 00:37,"468 Johnson St, Los Angeles, CA 90001" +159139,Bose SoundSport Headphones,1,99.99,01/02/19 20:06,"188 Cedar St, San Francisco, CA 94016" +159140,Apple Airpods Headphones,1,150,01/24/19 18:09,"369 Church St, Los Angeles, CA 90001" +159141,AA Batteries (4-pack),1,3.84,01/04/19 08:33,"746 Center St, Dallas, TX 75001" +159142,USB-C Charging Cable,1,11.95,01/16/19 21:47,"633 10th St, Boston, MA 02215" +159143,34in Ultrawide Monitor,1,379.99,01/24/19 15:40,"114 14th St, Austin, TX 73301" +159144,Macbook Pro Laptop,1,1700,01/27/19 12:50,"47 5th St, New York City, NY 10001" +159145,Lightning Charging Cable,1,14.95,01/24/19 06:21,"910 Wilson St, New York City, NY 10001" +159146,Wired Headphones,1,11.99,01/01/19 13:17,"50 Meadow St, San Francisco, CA 94016" +159147,Apple Airpods Headphones,1,150,01/07/19 16:39,"572 Hickory St, San Francisco, CA 94016" +159148,27in FHD Monitor,1,149.99,01/29/19 10:20,"14 Ridge St, San Francisco, CA 94016" +159149,USB-C Charging Cable,1,11.95,01/30/19 09:58,"333 Forest St, Dallas, TX 75001" +159150,AAA Batteries (4-pack),1,2.99,01/18/19 20:25,"839 Elm St, Boston, MA 02215" +159151,34in Ultrawide Monitor,1,379.99,01/20/19 21:04,"298 12th St, New York City, NY 10001" +159152,Lightning Charging Cable,2,14.95,01/15/19 14:40,"663 2nd St, San Francisco, CA 94016" +159153,Google Phone,1,600,01/21/19 14:39,"604 Wilson St, Portland, OR 97035" +159154,AAA Batteries (4-pack),3,2.99,01/05/19 10:56,"771 Church St, San Francisco, CA 94016" +159155,Apple Airpods Headphones,1,150,01/31/19 11:07,"127 Lake St, Atlanta, GA 30301" +159156,20in Monitor,1,109.99,01/15/19 09:14,"849 River St, Portland, ME 04101" +159157,Macbook Pro Laptop,1,1700,01/17/19 11:14,"66 Spruce St, Atlanta, GA 30301" +159158,Lightning Charging Cable,1,14.95,01/23/19 12:33,"294 Wilson St, New York City, NY 10001" +159159,AA Batteries (4-pack),2,3.84,01/30/19 09:07,"901 Church St, Los Angeles, CA 90001" +159160,Wired Headphones,1,11.99,01/26/19 18:40,"716 4th St, San Francisco, CA 94016" +159161,Lightning Charging Cable,1,14.95,01/31/19 09:23,"252 8th St, New York City, NY 10001" +159162,iPhone,1,700,01/17/19 16:22,"631 Walnut St, San Francisco, CA 94016" +159162,Apple Airpods Headphones,1,150,01/17/19 16:22,"631 Walnut St, San Francisco, CA 94016" +159162,Wired Headphones,1,11.99,01/17/19 16:22,"631 Walnut St, San Francisco, CA 94016" +159163,Flatscreen TV,1,300,01/22/19 11:59,"205 Madison St, Los Angeles, CA 90001" +159164,Flatscreen TV,1,300,01/04/19 19:04,"163 14th St, Atlanta, GA 30301" +159165,27in 4K Gaming Monitor,1,389.99,01/18/19 12:12,"119 2nd St, San Francisco, CA 94016" +159166,Google Phone,1,600,01/02/19 12:39,"93 Highland St, New York City, NY 10001" +159167,27in 4K Gaming Monitor,1,389.99,01/16/19 16:52,"734 West St, Atlanta, GA 30301" +159168,USB-C Charging Cable,2,11.95,01/09/19 10:19,"431 Lincoln St, Seattle, WA 98101" +159169,27in 4K Gaming Monitor,1,389.99,01/18/19 10:16,"765 Park St, San Francisco, CA 94016" +159170,27in 4K Gaming Monitor,1,389.99,01/27/19 18:12,"283 7th St, San Francisco, CA 94016" +159171,Wired Headphones,1,11.99,01/31/19 07:05,"572 Main St, Austin, TX 73301" +159172,Wired Headphones,1,11.99,01/26/19 13:32,"527 8th St, New York City, NY 10001" +159173,Wired Headphones,1,11.99,01/09/19 06:17,"250 Lake St, San Francisco, CA 94016" +159174,34in Ultrawide Monitor,1,379.99,01/04/19 20:28,"572 4th St, Atlanta, GA 30301" +159175,Flatscreen TV,1,300,01/10/19 22:17,"755 5th St, Boston, MA 02215" +159176,Bose SoundSport Headphones,1,99.99,01/21/19 21:47,"658 10th St, New York City, NY 10001" +159177,Macbook Pro Laptop,1,1700,01/29/19 11:27,"309 Jackson St, New York City, NY 10001" +159178,Flatscreen TV,1,300,01/04/19 19:03,"855 12th St, San Francisco, CA 94016" +159179,Google Phone,1,600,01/25/19 15:40,"860 Lake St, New York City, NY 10001" +159180,Vareebadd Phone,1,400,01/12/19 12:34,"443 12th St, Los Angeles, CA 90001" +159180,USB-C Charging Cable,1,11.95,01/12/19 12:34,"443 12th St, Los Angeles, CA 90001" +159181,USB-C Charging Cable,1,11.95,01/17/19 21:23,"403 Walnut St, Los Angeles, CA 90001" +159182,Bose SoundSport Headphones,1,99.99,01/28/19 20:39,"825 11th St, San Francisco, CA 94016" +159183,AA Batteries (4-pack),1,3.84,01/08/19 05:28,"617 Willow St, San Francisco, CA 94016" +159184,USB-C Charging Cable,1,11.95,01/30/19 20:51,"461 Cherry St, San Francisco, CA 94016" +159185,AA Batteries (4-pack),1,3.84,01/12/19 09:14,"508 Hickory St, Boston, MA 02215" +159186,27in FHD Monitor,1,149.99,01/23/19 21:38,"977 8th St, Austin, TX 73301" +159187,27in FHD Monitor,1,149.99,01/02/19 23:58,"264 Walnut St, San Francisco, CA 94016" +159188,Apple Airpods Headphones,1,150,01/09/19 19:46,"341 Main St, San Francisco, CA 94016" +159189,Apple Airpods Headphones,1,150,01/12/19 19:15,"101 Highland St, Portland, ME 04101" +159190,Bose SoundSport Headphones,1,99.99,01/17/19 11:52,"710 2nd St, Atlanta, GA 30301" +159191,34in Ultrawide Monitor,1,379.99,01/08/19 19:24,"948 Johnson St, San Francisco, CA 94016" +159192,USB-C Charging Cable,1,11.95,01/29/19 14:06,"596 Maple St, Boston, MA 02215" +159193,Lightning Charging Cable,1,14.95,01/11/19 12:51,"221 Willow St, Portland, OR 97035" +159194,USB-C Charging Cable,1,11.95,01/01/19 16:37,"327 Center St, San Francisco, CA 94016" +159195,Bose SoundSport Headphones,1,99.99,01/17/19 19:51,"814 Forest St, San Francisco, CA 94016" +159196,Flatscreen TV,1,300,01/27/19 23:47,"979 11th St, Boston, MA 02215" +159197,Lightning Charging Cable,1,14.95,01/18/19 23:21,"272 Maple St, Los Angeles, CA 90001" +159198,Macbook Pro Laptop,1,1700,01/08/19 17:06,"573 South St, Atlanta, GA 30301" +159199,Apple Airpods Headphones,1,150,01/18/19 16:10,"109 4th St, Portland, ME 04101" +159200,34in Ultrawide Monitor,1,379.99,01/06/19 18:15,"813 2nd St, Los Angeles, CA 90001" +159201,USB-C Charging Cable,1,11.95,01/28/19 07:52,"932 Dogwood St, Seattle, WA 98101" +159202,Apple Airpods Headphones,1,150,01/01/19 14:52,"273 Lincoln St, New York City, NY 10001" +159203,iPhone,1,700,01/16/19 12:35,"716 7th St, Austin, TX 73301" +159204,Google Phone,1,600,01/11/19 19:26,"906 Pine St, Portland, OR 97035" +159205,USB-C Charging Cable,1,11.95,01/05/19 09:32,"61 North St, New York City, NY 10001" +159206,USB-C Charging Cable,2,11.95,01/27/19 18:46,"744 Willow St, San Francisco, CA 94016" +159207,AA Batteries (4-pack),1,3.84,01/06/19 19:14,"278 Forest St, Los Angeles, CA 90001" +159208,27in FHD Monitor,1,149.99,01/30/19 13:22,"189 Park St, San Francisco, CA 94016" +159209,AAA Batteries (4-pack),1,2.99,01/25/19 13:27,"135 Meadow St, San Francisco, CA 94016" +159210,Apple Airpods Headphones,1,150,01/13/19 21:06,"206 Jackson St, New York City, NY 10001" +159211,Apple Airpods Headphones,1,150,01/13/19 01:23,"722 Dogwood St, San Francisco, CA 94016" +159212,Wired Headphones,1,11.99,01/13/19 08:09,"861 River St, New York City, NY 10001" +159213,Lightning Charging Cable,1,14.95,01/22/19 08:25,"424 12th St, Boston, MA 02215" +159214,USB-C Charging Cable,1,11.95,01/16/19 08:26,"228 Lincoln St, Los Angeles, CA 90001" +159215,Lightning Charging Cable,1,14.95,01/28/19 18:40,"880 2nd St, New York City, NY 10001" +159216,20in Monitor,1,109.99,01/03/19 11:44,"4 Walnut St, Seattle, WA 98101" +159217,34in Ultrawide Monitor,1,379.99,01/19/19 21:33,"283 1st St, New York City, NY 10001" +159218,AA Batteries (4-pack),1,3.84,01/02/19 18:02,"730 10th St, Austin, TX 73301" +159219,Lightning Charging Cable,1,14.95,01/09/19 21:19,"831 13th St, Atlanta, GA 30301" +159220,Lightning Charging Cable,1,14.95,01/12/19 08:07,"346 Hill St, New York City, NY 10001" +159221,Vareebadd Phone,1,400,01/08/19 06:44,"336 Church St, Austin, TX 73301" +159221,USB-C Charging Cable,1,11.95,01/08/19 06:44,"336 Church St, Austin, TX 73301" +159222,34in Ultrawide Monitor,1,379.99,01/02/19 11:26,"505 Elm St, San Francisco, CA 94016" +159223,Bose SoundSport Headphones,1,99.99,01/12/19 10:56,"992 Johnson St, Atlanta, GA 30301" +159224,Apple Airpods Headphones,1,150,01/19/19 21:05,"311 8th St, San Francisco, CA 94016" +159225,USB-C Charging Cable,1,11.95,01/20/19 19:34,"24 Madison St, Los Angeles, CA 90001" +159226,Apple Airpods Headphones,1,150,01/10/19 18:19,"72 Hickory St, Los Angeles, CA 90001" +159227,LG Washing Machine,1,600.0,01/07/19 21:02,"78 Adams St, Los Angeles, CA 90001" +159228,AA Batteries (4-pack),1,3.84,01/15/19 07:02,"780 2nd St, San Francisco, CA 94016" +159229,USB-C Charging Cable,1,11.95,01/24/19 14:48,"149 12th St, Seattle, WA 98101" +159230,Wired Headphones,1,11.99,01/13/19 20:14,"100 Sunset St, San Francisco, CA 94016" +159231,AA Batteries (4-pack),1,3.84,01/15/19 21:44,"67 Hill St, Austin, TX 73301" +159232,AA Batteries (4-pack),1,3.84,01/25/19 19:30,"112 Madison St, Dallas, TX 75001" +159233,Apple Airpods Headphones,1,150,01/03/19 19:49,"610 West St, Atlanta, GA 30301" +159234,Wired Headphones,1,11.99,01/08/19 22:15,"228 7th St, San Francisco, CA 94016" +159235,AAA Batteries (4-pack),2,2.99,01/05/19 20:30,"543 Church St, Los Angeles, CA 90001" +159236,Bose SoundSport Headphones,1,99.99,01/28/19 12:47,"623 Lincoln St, San Francisco, CA 94016" +159237,Wired Headphones,1,11.99,01/31/19 13:13,"381 Spruce St, San Francisco, CA 94016" +159238,AAA Batteries (4-pack),1,2.99,01/11/19 17:00,"243 Spruce St, Los Angeles, CA 90001" +159239,LG Dryer,1,600.0,01/03/19 13:14,"246 9th St, Atlanta, GA 30301" +159240,Google Phone,1,600,01/11/19 14:02,"696 Highland St, San Francisco, CA 94016" +159241,USB-C Charging Cable,1,11.95,01/30/19 10:36,"31 Wilson St, Seattle, WA 98101" +159242,USB-C Charging Cable,1,11.95,01/02/19 14:59,"107 11th St, San Francisco, CA 94016" +159243,USB-C Charging Cable,1,11.95,01/02/19 10:57,"706 6th St, Portland, OR 97035" +159244,Bose SoundSport Headphones,1,99.99,01/01/19 15:22,"553 Ridge St, Los Angeles, CA 90001" +159245,AAA Batteries (4-pack),1,2.99,01/13/19 19:46,"608 13th St, San Francisco, CA 94016" +159246,Apple Airpods Headphones,1,150,01/25/19 19:25,"774 Cedar St, Atlanta, GA 30301" +159247,Lightning Charging Cable,1,14.95,01/14/19 18:08,"543 Spruce St, Boston, MA 02215" +159248,ThinkPad Laptop,1,999.99,01/04/19 10:57,"272 4th St, Portland, OR 97035" +159249,Bose SoundSport Headphones,1,99.99,01/31/19 10:00,"256 Cherry St, Dallas, TX 75001" +159250,Wired Headphones,1,11.99,01/28/19 10:30,"410 6th St, San Francisco, CA 94016" +159251,Google Phone,1,600,01/23/19 14:27,"543 Cherry St, Atlanta, GA 30301" +159252,AAA Batteries (4-pack),1,2.99,01/29/19 11:57,"331 Meadow St, San Francisco, CA 94016" +159253,AAA Batteries (4-pack),2,2.99,01/24/19 13:55,"223 Church St, San Francisco, CA 94016" +159254,Lightning Charging Cable,1,14.95,01/08/19 14:44,"869 Pine St, New York City, NY 10001" +159255,Apple Airpods Headphones,1,150,01/20/19 10:18,"156 Highland St, Austin, TX 73301" +159256,20in Monitor,1,109.99,02/01/19 01:00,"607 Highland St, San Francisco, CA 94016" +159257,Bose SoundSport Headphones,1,99.99,01/22/19 19:18,"225 Chestnut St, San Francisco, CA 94016" +159257,Apple Airpods Headphones,1,150,01/22/19 19:18,"225 Chestnut St, San Francisco, CA 94016" +159258,USB-C Charging Cable,1,11.95,01/16/19 18:22,"643 South St, Los Angeles, CA 90001" +159259,USB-C Charging Cable,1,11.95,01/05/19 23:56,"488 1st St, Los Angeles, CA 90001" +159260,AAA Batteries (4-pack),1,2.99,01/21/19 13:11,"999 River St, Los Angeles, CA 90001" +,,,,, +159261,Apple Airpods Headphones,1,150,01/10/19 14:23,"752 Church St, San Francisco, CA 94016" +159262,Bose SoundSport Headphones,1,99.99,01/02/19 15:24,"732 Ridge St, San Francisco, CA 94016" +159263,AAA Batteries (4-pack),3,2.99,01/01/19 18:31,"293 Meadow St, Atlanta, GA 30301" +159264,Macbook Pro Laptop,1,1700,01/04/19 17:05,"338 Dogwood St, San Francisco, CA 94016" +159265,Bose SoundSport Headphones,1,99.99,01/20/19 07:26,"173 Hill St, Dallas, TX 75001" +159266,USB-C Charging Cable,2,11.95,01/19/19 17:34,"670 11th St, New York City, NY 10001" +159267,Wired Headphones,1,11.99,01/19/19 11:28,"335 7th St, San Francisco, CA 94016" +159268,Flatscreen TV,1,300,01/17/19 17:27,"114 Lakeview St, Portland, OR 97035" +159269,AAA Batteries (4-pack),1,2.99,01/22/19 09:01,"12 Lincoln St, Portland, OR 97035" +159270,Macbook Pro Laptop,1,1700,01/05/19 17:25,"981 North St, San Francisco, CA 94016" +159271,Apple Airpods Headphones,1,150,01/23/19 15:53,"488 Spruce St, San Francisco, CA 94016" +159272,AAA Batteries (4-pack),3,2.99,01/30/19 07:00,"164 7th St, Dallas, TX 75001" +159273,AAA Batteries (4-pack),1,2.99,01/13/19 11:30,"762 9th St, Los Angeles, CA 90001" +159274,Lightning Charging Cable,1,14.95,01/22/19 21:18,"576 Meadow St, Los Angeles, CA 90001" +159275,USB-C Charging Cable,1,11.95,01/29/19 17:24,"627 Main St, Seattle, WA 98101" +159276,Apple Airpods Headphones,1,150,01/26/19 11:43,"289 Highland St, Atlanta, GA 30301" +159277,AA Batteries (4-pack),1,3.84,01/30/19 18:21,"333 Spruce St, San Francisco, CA 94016" +159278,AAA Batteries (4-pack),1,2.99,01/31/19 20:43,"211 Lake St, New York City, NY 10001" +159279,ThinkPad Laptop,1,999.99,01/31/19 19:14,"123 Walnut St, New York City, NY 10001" +159280,Lightning Charging Cable,1,14.95,01/13/19 12:27,"454 12th St, San Francisco, CA 94016" +159281,iPhone,1,700,01/08/19 20:58,"589 5th St, Atlanta, GA 30301" +159282,Lightning Charging Cable,1,14.95,01/25/19 10:52,"804 Hill St, Boston, MA 02215" +159283,Macbook Pro Laptop,1,1700,01/06/19 14:14,"528 Center St, Portland, OR 97035" +159284,AA Batteries (4-pack),1,3.84,01/12/19 13:51,"182 Center St, New York City, NY 10001" +159285,34in Ultrawide Monitor,1,379.99,01/18/19 23:53,"224 Jackson St, Boston, MA 02215" +159286,20in Monitor,1,109.99,01/06/19 10:09,"673 6th St, Seattle, WA 98101" +159287,ThinkPad Laptop,1,999.99,01/13/19 22:09,"729 Jefferson St, Atlanta, GA 30301" +159288,iPhone,1,700,01/12/19 12:29,"28 Hill St, Boston, MA 02215" +159289,Lightning Charging Cable,1,14.95,01/21/19 22:03,"666 Walnut St, Los Angeles, CA 90001" +159290,USB-C Charging Cable,1,11.95,01/10/19 00:33,"79 Dogwood St, Los Angeles, CA 90001" +159291,USB-C Charging Cable,1,11.95,01/01/19 06:49,"362 10th St, Los Angeles, CA 90001" +159292,Apple Airpods Headphones,1,150,01/01/19 23:10,"4 Johnson St, Atlanta, GA 30301" +159293,iPhone,1,700,01/31/19 01:00,"728 10th St, Portland, ME 04101" +159294,Wired Headphones,1,11.99,01/11/19 14:31,"338 Johnson St, San Francisco, CA 94016" +159295,Lightning Charging Cable,1,14.95,01/10/19 16:15,"519 4th St, Los Angeles, CA 90001" +159296,AA Batteries (4-pack),1,3.84,01/02/19 09:09,"588 North St, Dallas, TX 75001" +159296,USB-C Charging Cable,1,11.95,01/02/19 09:09,"588 North St, Dallas, TX 75001" +159297,iPhone,1,700,01/30/19 19:09,"541 8th St, San Francisco, CA 94016" +159298,Apple Airpods Headphones,1,150,01/27/19 01:06,"761 Ridge St, Los Angeles, CA 90001" +159299,iPhone,1,700,01/04/19 08:14,"764 Spruce St, Seattle, WA 98101" +159299,Lightning Charging Cable,1,14.95,01/04/19 08:14,"764 Spruce St, Seattle, WA 98101" +159300,Wired Headphones,1,11.99,01/11/19 17:18,"33 1st St, San Francisco, CA 94016" +159301,iPhone,1,700,01/19/19 09:59,"719 14th St, Seattle, WA 98101" +159302,USB-C Charging Cable,1,11.95,01/01/19 14:01,"370 Cedar St, Seattle, WA 98101" +159303,LG Washing Machine,1,600.0,01/16/19 17:23,"488 Sunset St, New York City, NY 10001" +159304,Flatscreen TV,1,300,01/20/19 09:06,"990 8th St, Los Angeles, CA 90001" +159305,Bose SoundSport Headphones,1,99.99,01/10/19 18:51,"403 Washington St, San Francisco, CA 94016" +159306,AA Batteries (4-pack),1,3.84,01/18/19 15:06,"375 Pine St, San Francisco, CA 94016" +159307,USB-C Charging Cable,1,11.95,01/27/19 17:54,"508 Ridge St, New York City, NY 10001" +159308,AA Batteries (4-pack),1,3.84,01/23/19 23:18,"687 11th St, Portland, OR 97035" +159309,Wired Headphones,1,11.99,01/19/19 23:41,"85 Sunset St, Boston, MA 02215" +159310,Bose SoundSport Headphones,1,99.99,01/25/19 00:49,"867 6th St, New York City, NY 10001" +159311,AAA Batteries (4-pack),1,2.99,01/10/19 11:52,"640 Church St, Los Angeles, CA 90001" +159312,USB-C Charging Cable,1,11.95,01/19/19 00:45,"966 7th St, Los Angeles, CA 90001" +159313,USB-C Charging Cable,1,11.95,01/26/19 22:25,"471 Jackson St, New York City, NY 10001" +159314,Wired Headphones,1,11.99,01/15/19 11:30,"828 14th St, Austin, TX 73301" +159315,AA Batteries (4-pack),1,3.84,01/17/19 17:59,"527 Jefferson St, New York City, NY 10001" +159316,Wired Headphones,1,11.99,01/01/19 23:32,"719 Hickory St, Seattle, WA 98101" +159317,Wired Headphones,1,11.99,01/23/19 18:26,"83 Jefferson St, San Francisco, CA 94016" +159318,AAA Batteries (4-pack),1,2.99,01/07/19 18:09,"380 Dogwood St, Boston, MA 02215" +159319,AA Batteries (4-pack),1,3.84,01/27/19 16:04,"618 Maple St, Dallas, TX 75001" +159320,Apple Airpods Headphones,1,150,01/29/19 11:03,"137 14th St, Los Angeles, CA 90001" +159321,USB-C Charging Cable,1,11.95,01/01/19 18:49,"462 Lake St, San Francisco, CA 94016" +159322,AAA Batteries (4-pack),1,2.99,01/09/19 02:01,"116 Lake St, Austin, TX 73301" +159323,Wired Headphones,1,11.99,01/31/19 20:37,"776 Forest St, Boston, MA 02215" +159324,27in FHD Monitor,1,149.99,01/10/19 15:37,"106 Lakeview St, Atlanta, GA 30301" +159325,iPhone,1,700,01/19/19 16:10,"662 Elm St, San Francisco, CA 94016" +159326,AA Batteries (4-pack),1,3.84,01/26/19 12:50,"778 Ridge St, San Francisco, CA 94016" +159327,Google Phone,1,600,01/05/19 14:14,"869 Johnson St, San Francisco, CA 94016" +159328,Wired Headphones,1,11.99,01/01/19 06:16,"903 Spruce St, Boston, MA 02215" +159329,Macbook Pro Laptop,1,1700,01/19/19 22:35,"844 13th St, San Francisco, CA 94016" +159330,Google Phone,1,600,01/09/19 15:16,"469 14th St, Dallas, TX 75001" +159331,Bose SoundSport Headphones,1,99.99,01/10/19 21:44,"505 Chestnut St, Seattle, WA 98101" +159332,20in Monitor,1,109.99,01/26/19 17:44,"421 West St, Seattle, WA 98101" +159333,iPhone,1,700,01/20/19 21:22,"674 2nd St, Los Angeles, CA 90001" +159334,Wired Headphones,1,11.99,01/06/19 21:31,"380 1st St, Dallas, TX 75001" +159335,Lightning Charging Cable,1,14.95,01/21/19 11:52,"969 Adams St, Boston, MA 02215" +159336,Flatscreen TV,1,300,01/07/19 15:03,"925 6th St, Portland, OR 97035" +159337,Flatscreen TV,1,300,01/13/19 10:24,"149 Main St, Boston, MA 02215" +159338,34in Ultrawide Monitor,1,379.99,01/18/19 20:27,"506 Cedar St, Austin, TX 73301" +159339,Lightning Charging Cable,1,14.95,01/20/19 09:12,"440 11th St, Atlanta, GA 30301" +159340,AAA Batteries (4-pack),2,2.99,01/18/19 13:36,"917 Elm St, Atlanta, GA 30301" +159341,Apple Airpods Headphones,1,150,01/07/19 11:21,"884 West St, Los Angeles, CA 90001" +159342,Lightning Charging Cable,1,14.95,01/24/19 11:06,"284 Sunset St, San Francisco, CA 94016" +159343,USB-C Charging Cable,1,11.95,01/17/19 16:34,"41 10th St, Seattle, WA 98101" +159344,Lightning Charging Cable,2,14.95,01/12/19 14:44,"252 Forest St, Atlanta, GA 30301" +159345,20in Monitor,1,109.99,01/29/19 13:09,"638 Spruce St, Seattle, WA 98101" +159346,USB-C Charging Cable,1,11.95,01/27/19 19:57,"772 Park St, Seattle, WA 98101" +159347,Lightning Charging Cable,1,14.95,01/15/19 15:46,"684 Madison St, San Francisco, CA 94016" +159348,iPhone,1,700,01/29/19 11:16,"195 5th St, Boston, MA 02215" +159349,AA Batteries (4-pack),2,3.84,01/16/19 09:48,"303 Wilson St, New York City, NY 10001" +159350,Bose SoundSport Headphones,1,99.99,01/21/19 19:14,"725 Lakeview St, Austin, TX 73301" +159351,Lightning Charging Cable,1,14.95,01/15/19 10:52,"2 Hill St, New York City, NY 10001" +159352,Wired Headphones,1,11.99,01/24/19 19:03,"87 Pine St, Los Angeles, CA 90001" +159353,iPhone,1,700,01/08/19 09:47,"948 14th St, New York City, NY 10001" +159354,34in Ultrawide Monitor,1,379.99,01/04/19 12:08,"799 Highland St, New York City, NY 10001" +159355,Bose SoundSport Headphones,1,99.99,01/18/19 13:12,"10 River St, New York City, NY 10001" +159356,USB-C Charging Cable,1,11.95,01/13/19 09:38,"713 Chestnut St, San Francisco, CA 94016" +159357,ThinkPad Laptop,1,999.99,01/12/19 14:52,"658 Dogwood St, Portland, OR 97035" +159358,iPhone,1,700,01/25/19 03:43,"434 Johnson St, San Francisco, CA 94016" +159359,27in 4K Gaming Monitor,1,389.99,01/06/19 09:48,"95 Meadow St, San Francisco, CA 94016" +159360,AAA Batteries (4-pack),1,2.99,01/01/19 12:45,"309 West St, San Francisco, CA 94016" +159361,AAA Batteries (4-pack),1,2.99,01/06/19 12:34,"336 Washington St, Los Angeles, CA 90001" +159362,20in Monitor,1,109.99,01/20/19 11:35,"453 14th St, San Francisco, CA 94016" +159363,iPhone,1,700,01/11/19 20:46,"460 7th St, New York City, NY 10001" +159364,Wired Headphones,1,11.99,01/31/19 00:32,"862 Adams St, Seattle, WA 98101" +159365,Google Phone,1,600,01/20/19 10:03,"563 Hickory St, Austin, TX 73301" +159365,Bose SoundSport Headphones,1,99.99,01/20/19 10:03,"563 Hickory St, Austin, TX 73301" +159366,Lightning Charging Cable,1,14.95,01/23/19 23:59,"439 7th St, San Francisco, CA 94016" +159367,AAA Batteries (4-pack),2,2.99,01/13/19 20:24,"213 Dogwood St, Los Angeles, CA 90001" +159368,AA Batteries (4-pack),2,3.84,01/21/19 21:32,"124 Jefferson St, New York City, NY 10001" +159369,AAA Batteries (4-pack),1,2.99,01/01/19 10:47,"242 Church St, Los Angeles, CA 90001" +159370,USB-C Charging Cable,1,11.95,01/12/19 17:11,"47 South St, Portland, ME 04101" +159371,27in FHD Monitor,1,149.99,01/09/19 13:54,"398 River St, San Francisco, CA 94016" +159372,Lightning Charging Cable,1,14.95,01/17/19 01:00,"948 Hickory St, Portland, OR 97035" +159373,Bose SoundSport Headphones,1,99.99,01/28/19 21:21,"872 River St, Dallas, TX 75001" +159374,34in Ultrawide Monitor,1,379.99,01/15/19 18:33,"665 Lakeview St, Portland, OR 97035" +159375,iPhone,1,700,01/24/19 07:54,"255 South St, Portland, ME 04101" +159376,Wired Headphones,1,11.99,01/29/19 00:58,"636 Jefferson St, New York City, NY 10001" +159377,34in Ultrawide Monitor,1,379.99,01/14/19 13:52,"678 South St, San Francisco, CA 94016" +159378,Apple Airpods Headphones,1,150,01/27/19 16:44,"794 7th St, Boston, MA 02215" +159379,Flatscreen TV,1,300,01/04/19 15:21,"151 11th St, San Francisco, CA 94016" +159380,Bose SoundSport Headphones,1,99.99,01/15/19 21:33,"383 West St, San Francisco, CA 94016" +159381,Vareebadd Phone,1,400,01/21/19 13:12,"373 Ridge St, Dallas, TX 75001" +159382,ThinkPad Laptop,1,999.99,01/15/19 19:43,"78 Willow St, Seattle, WA 98101" +159383,Wired Headphones,1,11.99,01/18/19 13:11,"559 Lincoln St, Seattle, WA 98101" +159384,Google Phone,1,600,01/25/19 22:19,"46 Hill St, New York City, NY 10001" +159385,USB-C Charging Cable,1,11.95,01/07/19 14:12,"708 12th St, Portland, OR 97035" +159386,Apple Airpods Headphones,1,150,01/15/19 03:36,"872 Lincoln St, Austin, TX 73301" +159387,Vareebadd Phone,1,400,01/26/19 08:35,"811 Main St, Seattle, WA 98101" +159387,Bose SoundSport Headphones,1,99.99,01/26/19 08:35,"811 Main St, Seattle, WA 98101" +159388,AAA Batteries (4-pack),1,2.99,01/20/19 20:37,"795 9th St, San Francisco, CA 94016" +159389,AAA Batteries (4-pack),4,2.99,01/04/19 08:54,"534 Jefferson St, San Francisco, CA 94016" +159390,Wired Headphones,1,11.99,01/21/19 13:01,"207 Spruce St, Dallas, TX 75001" +159391,27in FHD Monitor,1,149.99,01/11/19 19:53,"96 South St, Atlanta, GA 30301" +159392,Wired Headphones,1,11.99,01/12/19 08:03,"529 Dogwood St, Los Angeles, CA 90001" +159393,Lightning Charging Cable,1,14.95,01/06/19 14:24,"411 Pine St, San Francisco, CA 94016" +159394,iPhone,1,700,01/17/19 14:48,"113 2nd St, Los Angeles, CA 90001" +159395,AAA Batteries (4-pack),1,2.99,01/19/19 12:31,"804 Meadow St, Los Angeles, CA 90001" +159396,27in FHD Monitor,1,149.99,01/21/19 21:37,"777 South St, San Francisco, CA 94016" +159397,34in Ultrawide Monitor,1,379.99,01/30/19 19:29,"759 2nd St, San Francisco, CA 94016" +159398,Apple Airpods Headphones,1,150,01/04/19 23:30,"169 5th St, Los Angeles, CA 90001" +159399,Apple Airpods Headphones,1,150,01/26/19 12:04,"592 Adams St, San Francisco, CA 94016" +159400,AAA Batteries (4-pack),1,2.99,01/11/19 16:06,"949 Walnut St, San Francisco, CA 94016" +159401,34in Ultrawide Monitor,1,379.99,01/04/19 11:08,"83 Spruce St, San Francisco, CA 94016" +159402,AAA Batteries (4-pack),2,2.99,01/24/19 11:31,"987 7th St, Atlanta, GA 30301" +159403,Macbook Pro Laptop,1,1700,01/11/19 10:19,"76 Park St, Atlanta, GA 30301" +159404,iPhone,1,700,01/20/19 20:26,"77 Madison St, Seattle, WA 98101" +159405,Wired Headphones,1,11.99,01/30/19 00:21,"46 Hill St, San Francisco, CA 94016" +159406,27in FHD Monitor,1,149.99,01/05/19 20:48,"480 Johnson St, Boston, MA 02215" +159407,Wired Headphones,1,11.99,01/13/19 12:47,"468 Lincoln St, Atlanta, GA 30301" +159408,Lightning Charging Cable,1,14.95,01/12/19 18:46,"562 Maple St, Dallas, TX 75001" +159409,Wired Headphones,1,11.99,01/17/19 17:26,"5 Center St, Boston, MA 02215" +159410,Wired Headphones,1,11.99,01/24/19 12:05,"333 Madison St, San Francisco, CA 94016" +159411,Lightning Charging Cable,1,14.95,01/31/19 12:24,"227 Spruce St, New York City, NY 10001" +159412,AAA Batteries (4-pack),1,2.99,01/28/19 20:10,"369 River St, San Francisco, CA 94016" +159413,Apple Airpods Headphones,1,150,01/30/19 20:17,"612 Walnut St, Seattle, WA 98101" +159414,AA Batteries (4-pack),1,3.84,01/28/19 15:55,"879 Meadow St, Los Angeles, CA 90001" +159415,Google Phone,1,600,01/22/19 14:12,"591 Wilson St, New York City, NY 10001" +159416,Apple Airpods Headphones,1,150,01/30/19 16:23,"693 12th St, Los Angeles, CA 90001" +159417,Bose SoundSport Headphones,1,99.99,01/31/19 21:36,"660 Willow St, Los Angeles, CA 90001" +159418,Bose SoundSport Headphones,1,99.99,01/02/19 13:26,"592 Cherry St, Los Angeles, CA 90001" +159419,Wired Headphones,1,11.99,01/04/19 14:15,"598 Meadow St, Atlanta, GA 30301" +159420,AAA Batteries (4-pack),1,2.99,01/14/19 09:40,"103 Johnson St, Dallas, TX 75001" +159421,AA Batteries (4-pack),1,3.84,01/30/19 11:44,"215 10th St, San Francisco, CA 94016" +159422,Flatscreen TV,1,300,01/19/19 21:13,"819 Johnson St, Atlanta, GA 30301" +159423,AAA Batteries (4-pack),2,2.99,01/26/19 19:08,"967 Hill St, Seattle, WA 98101" +159424,Wired Headphones,2,11.99,01/26/19 15:54,"444 Hill St, Seattle, WA 98101" +159425,34in Ultrawide Monitor,1,379.99,01/31/19 17:57,"756 River St, Seattle, WA 98101" +159426,AA Batteries (4-pack),2,3.84,01/01/19 19:37,"585 4th St, San Francisco, CA 94016" +159427,USB-C Charging Cable,1,11.95,01/10/19 08:28,"663 Lakeview St, San Francisco, CA 94016" +159428,34in Ultrawide Monitor,1,379.99,01/05/19 22:59,"664 Chestnut St, New York City, NY 10001" +159429,AA Batteries (4-pack),1,3.84,01/22/19 09:57,"672 Sunset St, San Francisco, CA 94016" +159430,AAA Batteries (4-pack),1,2.99,01/29/19 19:17,"621 Wilson St, San Francisco, CA 94016" +159431,Apple Airpods Headphones,1,150,01/25/19 06:48,"472 4th St, Atlanta, GA 30301" +159432,Wired Headphones,2,11.99,01/30/19 14:26,"724 Lakeview St, San Francisco, CA 94016" +159433,AAA Batteries (4-pack),1,2.99,01/10/19 21:07,"484 Forest St, Seattle, WA 98101" +159434,27in 4K Gaming Monitor,1,389.99,01/21/19 12:03,"56 9th St, Dallas, TX 75001" +159435,20in Monitor,1,109.99,01/01/19 09:42,"605 Forest St, Boston, MA 02215" +159436,Wired Headphones,1,11.99,01/30/19 14:00,"580 7th St, Boston, MA 02215" +159437,AAA Batteries (4-pack),2,2.99,01/27/19 23:53,"59 Dogwood St, Los Angeles, CA 90001" +159438,27in FHD Monitor,1,149.99,01/25/19 21:26,"285 Madison St, Atlanta, GA 30301" +159439,27in FHD Monitor,1,149.99,01/26/19 19:48,"938 4th St, New York City, NY 10001" +159440,27in 4K Gaming Monitor,1,389.99,01/12/19 15:41,"296 Adams St, San Francisco, CA 94016" +159441,USB-C Charging Cable,1,11.95,01/27/19 16:52,"738 8th St, Atlanta, GA 30301" +159441,Google Phone,1,600,01/27/19 16:52,"738 8th St, Atlanta, GA 30301" +159442,Macbook Pro Laptop,1,1700,01/29/19 10:38,"231 Lake St, New York City, NY 10001" +159443,Lightning Charging Cable,1,14.95,01/03/19 01:40,"211 6th St, San Francisco, CA 94016" +159444,AAA Batteries (4-pack),1,2.99,01/13/19 23:30,"827 Washington St, Los Angeles, CA 90001" +159445,Lightning Charging Cable,2,14.95,01/05/19 09:31,"422 Elm St, Los Angeles, CA 90001" +159446,27in 4K Gaming Monitor,1,389.99,01/20/19 09:28,"690 Wilson St, Atlanta, GA 30301" +159447,Apple Airpods Headphones,1,150,01/02/19 15:31,"681 Park St, Austin, TX 73301" +159448,Apple Airpods Headphones,1,150,01/25/19 15:51,"522 Spruce St, Los Angeles, CA 90001" +159449,AA Batteries (4-pack),1,3.84,01/22/19 20:13,"559 Sunset St, Los Angeles, CA 90001" +159450,Wired Headphones,1,11.99,01/09/19 23:15,"795 Chestnut St, Atlanta, GA 30301" +159451,Apple Airpods Headphones,1,150,01/30/19 15:52,"76 Spruce St, Los Angeles, CA 90001" +159452,Lightning Charging Cable,1,14.95,01/18/19 17:21,"269 Madison St, New York City, NY 10001" +159453,Lightning Charging Cable,1,14.95,01/25/19 12:38,"619 Lake St, Boston, MA 02215" +159454,Wired Headphones,2,11.99,01/10/19 22:01,"6 2nd St, San Francisco, CA 94016" +159455,Wired Headphones,2,11.99,01/22/19 11:14,"386 Lincoln St, Los Angeles, CA 90001" +159456,Bose SoundSport Headphones,1,99.99,01/12/19 17:25,"546 Washington St, New York City, NY 10001" +159457,Wired Headphones,1,11.99,01/28/19 13:39,"441 Wilson St, Dallas, TX 75001" +159458,Flatscreen TV,1,300,01/05/19 09:31,"708 Park St, San Francisco, CA 94016" +159459,27in 4K Gaming Monitor,1,389.99,01/23/19 11:58,"497 Walnut St, Los Angeles, CA 90001" +159460,Lightning Charging Cable,2,14.95,01/12/19 19:27,"803 North St, San Francisco, CA 94016" +159461,USB-C Charging Cable,1,11.95,01/22/19 17:33,"566 10th St, Portland, OR 97035" +159462,AAA Batteries (4-pack),1,2.99,01/12/19 18:56,"61 4th St, Los Angeles, CA 90001" +159463,Wired Headphones,1,11.99,01/14/19 15:53,"275 13th St, Boston, MA 02215" +159464,AAA Batteries (4-pack),1,2.99,01/10/19 19:28,"766 Washington St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +159465,27in FHD Monitor,1,149.99,01/06/19 00:34,"430 2nd St, Atlanta, GA 30301" +159466,AA Batteries (4-pack),1,3.84,01/25/19 21:25,"211 Highland St, Atlanta, GA 30301" +159467,Macbook Pro Laptop,1,1700,01/03/19 10:54,"248 Spruce St, Los Angeles, CA 90001" +159468,AA Batteries (4-pack),1,3.84,01/11/19 20:33,"619 Hickory St, Seattle, WA 98101" +159469,Apple Airpods Headphones,1,150,01/11/19 14:17,"35 4th St, Austin, TX 73301" +159470,USB-C Charging Cable,1,11.95,01/19/19 06:47,"695 Lincoln St, New York City, NY 10001" +159471,Apple Airpods Headphones,1,150,01/26/19 16:48,"491 12th St, Dallas, TX 75001" +159472,Lightning Charging Cable,1,14.95,01/26/19 07:37,"698 West St, Dallas, TX 75001" +159473,Wired Headphones,1,11.99,01/10/19 13:08,"104 Wilson St, Austin, TX 73301" +159474,USB-C Charging Cable,1,11.95,01/31/19 09:52,"702 Jackson St, San Francisco, CA 94016" +159475,AA Batteries (4-pack),1,3.84,01/14/19 08:20,"315 10th St, Seattle, WA 98101" +159476,Bose SoundSport Headphones,1,99.99,01/28/19 11:04,"749 Willow St, San Francisco, CA 94016" +159477,Wired Headphones,1,11.99,01/29/19 10:36,"660 Hickory St, Portland, OR 97035" +159478,AA Batteries (4-pack),3,3.84,01/06/19 19:06,"197 Pine St, San Francisco, CA 94016" +159479,AAA Batteries (4-pack),1,2.99,01/29/19 15:27,"814 River St, New York City, NY 10001" +159479,Apple Airpods Headphones,1,150,01/29/19 15:27,"814 River St, New York City, NY 10001" +159480,Bose SoundSport Headphones,1,99.99,01/01/19 17:19,"359 Walnut St, Atlanta, GA 30301" +159481,Wired Headphones,1,11.99,01/21/19 10:25,"143 Jackson St, San Francisco, CA 94016" +159482,USB-C Charging Cable,1,11.95,01/27/19 14:41,"998 Church St, New York City, NY 10001" +159483,AAA Batteries (4-pack),2,2.99,01/14/19 09:40,"774 Hill St, San Francisco, CA 94016" +159484,Lightning Charging Cable,1,14.95,01/17/19 10:06,"992 West St, New York City, NY 10001" +159485,Lightning Charging Cable,1,14.95,01/16/19 00:15,"665 13th St, Los Angeles, CA 90001" +159486,Lightning Charging Cable,2,14.95,01/25/19 16:05,"213 Lakeview St, Atlanta, GA 30301" +159487,Macbook Pro Laptop,1,1700,01/26/19 19:37,"91 2nd St, Boston, MA 02215" +159488,AAA Batteries (4-pack),2,2.99,01/31/19 17:38,"112 Washington St, Austin, TX 73301" +159489,AA Batteries (4-pack),2,3.84,01/18/19 14:21,"111 River St, San Francisco, CA 94016" +159490,AA Batteries (4-pack),1,3.84,01/06/19 21:30,"860 Forest St, New York City, NY 10001" +159491,AAA Batteries (4-pack),2,2.99,01/02/19 18:36,"226 Walnut St, New York City, NY 10001" +159492,USB-C Charging Cable,1,11.95,01/29/19 22:35,"815 5th St, Seattle, WA 98101" +159493,USB-C Charging Cable,1,11.95,01/24/19 23:31,"988 Pine St, Portland, OR 97035" +159494,Apple Airpods Headphones,1,150,01/29/19 22:27,"737 Wilson St, Portland, OR 97035" +159495,20in Monitor,1,109.99,01/08/19 15:56,"332 Dogwood St, Los Angeles, CA 90001" +159496,Bose SoundSport Headphones,1,99.99,01/16/19 10:21,"40 North St, New York City, NY 10001" +159497,27in FHD Monitor,1,149.99,01/08/19 10:39,"943 Willow St, San Francisco, CA 94016" +159498,iPhone,1,700,01/27/19 11:16,"72 2nd St, Los Angeles, CA 90001" +159499,Wired Headphones,1,11.99,01/14/19 10:45,"449 Cherry St, Boston, MA 02215" +159500,USB-C Charging Cable,1,11.95,01/18/19 11:06,"507 Hickory St, San Francisco, CA 94016" +159501,Bose SoundSport Headphones,1,99.99,01/09/19 07:30,"968 Main St, San Francisco, CA 94016" +159502,Flatscreen TV,1,300,01/23/19 12:46,"898 Dogwood St, San Francisco, CA 94016" +159503,Apple Airpods Headphones,1,150,01/03/19 22:03,"538 Hill St, San Francisco, CA 94016" +159504,Wired Headphones,1,11.99,01/20/19 18:37,"928 Church St, Boston, MA 02215" +159505,Apple Airpods Headphones,1,150,01/16/19 19:41,"98 1st St, Los Angeles, CA 90001" +159506,AA Batteries (4-pack),1,3.84,01/21/19 22:21,"299 7th St, Seattle, WA 98101" +159507,27in FHD Monitor,1,149.99,01/19/19 10:16,"845 River St, Boston, MA 02215" +159508,AA Batteries (4-pack),1,3.84,01/15/19 12:11,"100 Center St, San Francisco, CA 94016" +159509,Lightning Charging Cable,1,14.95,01/10/19 22:05,"775 Hill St, San Francisco, CA 94016" +159510,ThinkPad Laptop,1,999.99,01/05/19 17:59,"806 14th St, Seattle, WA 98101" +159511,Lightning Charging Cable,1,14.95,01/30/19 14:47,"712 6th St, Dallas, TX 75001" +159512,Wired Headphones,1,11.99,01/29/19 11:04,"693 Lake St, Boston, MA 02215" +159513,Flatscreen TV,1,300,01/18/19 20:28,"606 Lakeview St, Los Angeles, CA 90001" +159514,Wired Headphones,1,11.99,01/10/19 14:21,"389 2nd St, Atlanta, GA 30301" +159515,USB-C Charging Cable,1,11.95,01/05/19 18:36,"131 Adams St, Portland, OR 97035" +159516,AA Batteries (4-pack),1,3.84,01/15/19 17:17,"197 Washington St, San Francisco, CA 94016" +159517,Lightning Charging Cable,1,14.95,01/06/19 20:01,"616 River St, New York City, NY 10001" +159518,Lightning Charging Cable,1,14.95,01/28/19 13:01,"468 South St, San Francisco, CA 94016" +159519,27in 4K Gaming Monitor,1,389.99,01/14/19 21:11,"527 Ridge St, Los Angeles, CA 90001" +159520,AAA Batteries (4-pack),1,2.99,01/15/19 19:27,"751 Hickory St, Seattle, WA 98101" +159521,Wired Headphones,1,11.99,01/20/19 17:47,"619 North St, Austin, TX 73301" +159522,AA Batteries (4-pack),1,3.84,01/01/19 09:23,"84 6th St, New York City, NY 10001" +159523,AA Batteries (4-pack),1,3.84,01/05/19 09:37,"25 Meadow St, Austin, TX 73301" +159524,AAA Batteries (4-pack),1,2.99,01/14/19 00:01,"178 14th St, San Francisco, CA 94016" +159525,Wired Headphones,1,11.99,01/18/19 09:46,"868 Sunset St, San Francisco, CA 94016" +159526,Wired Headphones,2,11.99,01/18/19 19:12,"366 Cedar St, San Francisco, CA 94016" +159527,USB-C Charging Cable,1,11.95,01/17/19 18:53,"246 Main St, Los Angeles, CA 90001" +159528,Macbook Pro Laptop,1,1700,01/24/19 19:09,"313 4th St, San Francisco, CA 94016" +159529,Bose SoundSport Headphones,1,99.99,01/12/19 21:29,"982 Walnut St, Seattle, WA 98101" +159530,Lightning Charging Cable,1,14.95,01/30/19 18:06,"783 West St, Portland, OR 97035" +159531,Lightning Charging Cable,1,14.95,01/28/19 08:58,"239 10th St, Dallas, TX 75001" +159532,Flatscreen TV,1,300,01/22/19 18:57,"386 12th St, Los Angeles, CA 90001" +159533,27in FHD Monitor,1,149.99,01/17/19 23:18,"161 11th St, Austin, TX 73301" +159534,Bose SoundSport Headphones,1,99.99,01/19/19 11:03,"375 Chestnut St, Los Angeles, CA 90001" +159535,USB-C Charging Cable,1,11.95,01/15/19 21:35,"200 Highland St, Atlanta, GA 30301" +159536,27in 4K Gaming Monitor,1,389.99,01/22/19 16:11,"327 6th St, San Francisco, CA 94016" +159537,Wired Headphones,1,11.99,01/21/19 14:40,"216 River St, New York City, NY 10001" +159538,Wired Headphones,1,11.99,01/08/19 17:42,"888 Highland St, San Francisco, CA 94016" +159539,Lightning Charging Cable,1,14.95,01/22/19 13:52,"346 7th St, Los Angeles, CA 90001" +159540,USB-C Charging Cable,1,11.95,01/13/19 19:29,"265 Walnut St, Boston, MA 02215" +159541,34in Ultrawide Monitor,1,379.99,01/14/19 13:55,"939 Ridge St, Atlanta, GA 30301" +159542,Apple Airpods Headphones,1,150,01/24/19 11:13,"878 9th St, Seattle, WA 98101" +159543,Apple Airpods Headphones,1,150,01/22/19 05:36,"250 2nd St, New York City, NY 10001" +159544,Bose SoundSport Headphones,1,99.99,01/31/19 19:13,"791 Forest St, San Francisco, CA 94016" +159545,iPhone,1,700,01/14/19 13:10,"213 Pine St, Los Angeles, CA 90001" +159545,Lightning Charging Cable,1,14.95,01/14/19 13:10,"213 Pine St, Los Angeles, CA 90001" +159546,Bose SoundSport Headphones,1,99.99,01/01/19 23:36,"553 Sunset St, Seattle, WA 98101" +159547,Lightning Charging Cable,1,14.95,01/21/19 20:58,"357 14th St, Austin, TX 73301" +159548,AA Batteries (4-pack),3,3.84,01/02/19 11:30,"489 South St, Austin, TX 73301" +159549,Macbook Pro Laptop,1,1700,01/29/19 21:44,"263 Lincoln St, Seattle, WA 98101" +159550,AAA Batteries (4-pack),1,2.99,01/26/19 21:26,"305 2nd St, New York City, NY 10001" +159551,Bose SoundSport Headphones,1,99.99,01/06/19 11:21,"914 Adams St, San Francisco, CA 94016" +159552,Apple Airpods Headphones,1,150,01/07/19 12:08,"964 Jefferson St, San Francisco, CA 94016" +159553,Lightning Charging Cable,1,14.95,01/22/19 16:28,"295 13th St, Los Angeles, CA 90001" +159554,20in Monitor,1,109.99,01/03/19 12:42,"266 Highland St, Atlanta, GA 30301" +159555,AAA Batteries (4-pack),1,2.99,01/26/19 22:01,"433 9th St, San Francisco, CA 94016" +159556,AA Batteries (4-pack),4,3.84,01/22/19 19:28,"451 11th St, Seattle, WA 98101" +159557,USB-C Charging Cable,1,11.95,01/18/19 19:16,"557 Pine St, Boston, MA 02215" +159558,AAA Batteries (4-pack),1,2.99,01/05/19 08:29,"928 12th St, Dallas, TX 75001" +159559,27in FHD Monitor,1,149.99,01/22/19 01:17,"503 Adams St, Los Angeles, CA 90001" +159560,AA Batteries (4-pack),2,3.84,01/30/19 19:54,"898 Meadow St, Dallas, TX 75001" +159561,AA Batteries (4-pack),2,3.84,01/01/19 19:16,"33 Lake St, Seattle, WA 98101" +159562,34in Ultrawide Monitor,1,379.99,01/24/19 06:59,"3 Jefferson St, Boston, MA 02215" +159563,Wired Headphones,1,11.99,01/10/19 15:19,"118 7th St, Austin, TX 73301" +159564,Lightning Charging Cable,1,14.95,01/23/19 09:30,"850 Willow St, Dallas, TX 75001" +159565,USB-C Charging Cable,1,11.95,01/04/19 12:08,"415 Jefferson St, San Francisco, CA 94016" +159566,USB-C Charging Cable,1,11.95,01/23/19 19:00,"798 Meadow St, Austin, TX 73301" +159567,USB-C Charging Cable,1,11.95,01/31/19 19:39,"610 Elm St, Portland, OR 97035" +159568,ThinkPad Laptop,1,999.99,01/20/19 15:14,"817 Hickory St, Seattle, WA 98101" +159569,iPhone,1,700,01/13/19 15:56,"283 North St, Seattle, WA 98101" +159570,AAA Batteries (4-pack),1,2.99,01/29/19 06:38,"546 5th St, San Francisco, CA 94016" +159571,AAA Batteries (4-pack),3,2.99,01/21/19 08:18,"972 Meadow St, San Francisco, CA 94016" +159572,20in Monitor,1,109.99,01/24/19 11:21,"807 8th St, Boston, MA 02215" +159573,USB-C Charging Cable,1,11.95,01/03/19 11:01,"540 Lakeview St, Los Angeles, CA 90001" +159574,AA Batteries (4-pack),2,3.84,01/09/19 13:57,"46 West St, Austin, TX 73301" +159575,Google Phone,1,600,01/07/19 02:13,"385 Sunset St, Atlanta, GA 30301" +159576,Apple Airpods Headphones,1,150,01/19/19 17:02,"349 Pine St, New York City, NY 10001" +159577,AA Batteries (4-pack),2,3.84,01/29/19 20:42,"358 Church St, Seattle, WA 98101" +159578,27in 4K Gaming Monitor,1,389.99,01/25/19 21:31,"29 Lake St, Atlanta, GA 30301" +159579,Apple Airpods Headphones,1,150,01/31/19 14:18,"923 1st St, Seattle, WA 98101" +159580,Apple Airpods Headphones,1,150,01/21/19 03:48,"930 Cherry St, San Francisco, CA 94016" +159581,AA Batteries (4-pack),1,3.84,01/05/19 16:51,"366 Adams St, San Francisco, CA 94016" +159582,Vareebadd Phone,1,400,01/17/19 20:22,"799 Spruce St, Dallas, TX 75001" +159583,20in Monitor,1,109.99,01/31/19 15:12,"876 Madison St, San Francisco, CA 94016" +159584,Wired Headphones,1,11.99,01/18/19 00:17,"637 Johnson St, San Francisco, CA 94016" +159585,Flatscreen TV,1,300,01/08/19 10:25,"747 Chestnut St, San Francisco, CA 94016" +159586,Wired Headphones,1,11.99,01/28/19 22:50,"289 Washington St, Atlanta, GA 30301" +159587,Lightning Charging Cable,1,14.95,01/20/19 11:51,"396 Highland St, Seattle, WA 98101" +159588,Wired Headphones,1,11.99,01/22/19 16:30,"867 North St, Los Angeles, CA 90001" +159589,AAA Batteries (4-pack),2,2.99,01/26/19 23:10,"629 Sunset St, Portland, OR 97035" +159590,AAA Batteries (4-pack),1,2.99,01/13/19 19:17,"261 2nd St, San Francisco, CA 94016" +159591,AA Batteries (4-pack),2,3.84,01/24/19 19:53,"692 Wilson St, New York City, NY 10001" +159592,Wired Headphones,1,11.99,01/28/19 00:04,"813 North St, Portland, OR 97035" +159593,34in Ultrawide Monitor,1,379.99,01/10/19 19:28,"747 12th St, Los Angeles, CA 90001" +159594,USB-C Charging Cable,1,11.95,01/01/19 21:10,"161 Washington St, Boston, MA 02215" +159595,AA Batteries (4-pack),2,3.84,01/14/19 12:50,"818 13th St, Los Angeles, CA 90001" +159596,AAA Batteries (4-pack),3,2.99,01/19/19 19:41,"415 11th St, San Francisco, CA 94016" +159597,Apple Airpods Headphones,1,150,01/13/19 15:52,"378 Johnson St, New York City, NY 10001" +159598,AA Batteries (4-pack),1,3.84,01/08/19 16:20,"357 9th St, New York City, NY 10001" +159599,Lightning Charging Cable,1,14.95,01/09/19 22:59,"139 12th St, New York City, NY 10001" +159600,Macbook Pro Laptop,1,1700,01/10/19 20:44,"27 Highland St, Los Angeles, CA 90001" +159601,iPhone,1,700,01/29/19 13:19,"863 North St, New York City, NY 10001" +159602,USB-C Charging Cable,1,11.95,01/27/19 16:49,"768 Hill St, San Francisco, CA 94016" +159603,34in Ultrawide Monitor,1,379.99,01/14/19 15:34,"526 2nd St, San Francisco, CA 94016" +159604,iPhone,1,700,01/31/19 18:55,"223 Lakeview St, Austin, TX 73301" +159605,USB-C Charging Cable,1,11.95,01/20/19 13:56,"843 Washington St, New York City, NY 10001" +159606,34in Ultrawide Monitor,1,379.99,01/10/19 19:47,"100 5th St, Portland, OR 97035" +159607,Bose SoundSport Headphones,1,99.99,01/26/19 11:55,"776 Cherry St, Los Angeles, CA 90001" +159608,AA Batteries (4-pack),1,3.84,01/21/19 08:51,"151 Wilson St, Boston, MA 02215" +159609,Apple Airpods Headphones,1,150,01/17/19 12:03,"91 Adams St, Seattle, WA 98101" +159609,AA Batteries (4-pack),2,3.84,01/17/19 12:03,"91 Adams St, Seattle, WA 98101" +159610,Lightning Charging Cable,1,14.95,01/22/19 23:01,"442 Jefferson St, Los Angeles, CA 90001" +159611,AAA Batteries (4-pack),4,2.99,01/10/19 18:06,"378 7th St, Los Angeles, CA 90001" +159612,Wired Headphones,1,11.99,01/08/19 16:44,"123 River St, Atlanta, GA 30301" +159613,Lightning Charging Cable,1,14.95,01/30/19 11:36,"187 Dogwood St, Seattle, WA 98101" +159613,Bose SoundSport Headphones,1,99.99,01/30/19 11:36,"187 Dogwood St, Seattle, WA 98101" +159614,27in 4K Gaming Monitor,1,389.99,01/03/19 18:02,"454 Adams St, Los Angeles, CA 90001" +159615,USB-C Charging Cable,1,11.95,01/10/19 23:48,"124 Church St, San Francisco, CA 94016" +159616,Lightning Charging Cable,1,14.95,01/24/19 14:54,"700 Lakeview St, Portland, OR 97035" +159617,AA Batteries (4-pack),1,3.84,01/06/19 23:53,"370 11th St, Boston, MA 02215" +159618,USB-C Charging Cable,1,11.95,01/10/19 21:11,"259 5th St, Austin, TX 73301" +159619,USB-C Charging Cable,1,11.95,01/18/19 13:19,"472 Willow St, New York City, NY 10001" +159620,USB-C Charging Cable,1,11.95,01/26/19 16:35,"46 Spruce St, Los Angeles, CA 90001" +159621,Wired Headphones,1,11.99,01/08/19 17:40,"472 Spruce St, Austin, TX 73301" +159622,USB-C Charging Cable,1,11.95,01/22/19 17:12,"798 Cedar St, New York City, NY 10001" +159623,Bose SoundSport Headphones,1,99.99,01/28/19 17:52,"67 Pine St, San Francisco, CA 94016" +159624,Apple Airpods Headphones,1,150,01/17/19 16:32,"818 Hill St, Boston, MA 02215" +159625,Lightning Charging Cable,1,14.95,01/06/19 11:00,"505 Sunset St, New York City, NY 10001" +159626,USB-C Charging Cable,1,11.95,01/21/19 11:19,"249 13th St, Dallas, TX 75001" +159627,AA Batteries (4-pack),1,3.84,01/05/19 20:21,"256 Meadow St, Austin, TX 73301" +159628,AA Batteries (4-pack),1,3.84,01/26/19 11:33,"771 4th St, San Francisco, CA 94016" +159629,Bose SoundSport Headphones,1,99.99,01/30/19 21:28,"927 14th St, New York City, NY 10001" +159630,Apple Airpods Headphones,1,150,01/11/19 15:00,"481 Elm St, San Francisco, CA 94016" +159631,Wired Headphones,1,11.99,01/24/19 13:18,"404 Jackson St, Atlanta, GA 30301" +159632,Google Phone,1,600,01/07/19 15:38,"840 Hickory St, San Francisco, CA 94016" +159633,Bose SoundSport Headphones,1,99.99,01/18/19 11:40,"205 6th St, Boston, MA 02215" +159634,27in 4K Gaming Monitor,1,389.99,01/04/19 20:00,"531 12th St, Los Angeles, CA 90001" +159635,Bose SoundSport Headphones,1,99.99,01/23/19 13:27,"333 Jefferson St, Seattle, WA 98101" +159636,Wired Headphones,1,11.99,01/23/19 20:23,"409 Center St, San Francisco, CA 94016" +159637,Lightning Charging Cable,1,14.95,01/11/19 12:39,"148 North St, San Francisco, CA 94016" +159638,20in Monitor,1,109.99,01/12/19 20:31,"45 Hickory St, Dallas, TX 75001" +159639,34in Ultrawide Monitor,1,379.99,01/18/19 13:20,"884 Lakeview St, San Francisco, CA 94016" +159640,AAA Batteries (4-pack),1,2.99,01/07/19 14:41,"650 14th St, San Francisco, CA 94016" +159641,20in Monitor,1,109.99,01/17/19 04:26,"188 8th St, Los Angeles, CA 90001" +159642,Flatscreen TV,1,300,01/29/19 12:43,"436 Park St, Seattle, WA 98101" +159643,Google Phone,1,600,01/09/19 17:15,"45 Church St, Seattle, WA 98101" +159644,AA Batteries (4-pack),2,3.84,01/20/19 19:50,"516 Forest St, San Francisco, CA 94016" +159645,iPhone,1,700,01/14/19 12:01,"402 Jackson St, San Francisco, CA 94016" +159645,Wired Headphones,1,11.99,01/14/19 12:01,"402 Jackson St, San Francisco, CA 94016" +159646,USB-C Charging Cable,2,11.95,01/10/19 13:22,"122 Spruce St, New York City, NY 10001" +159647,Lightning Charging Cable,1,14.95,01/02/19 20:00,"715 12th St, New York City, NY 10001" +159648,Lightning Charging Cable,1,14.95,01/04/19 16:19,"774 Cedar St, Austin, TX 73301" +159649,AAA Batteries (4-pack),1,2.99,01/06/19 11:17,"53 Pine St, San Francisco, CA 94016" +159649,ThinkPad Laptop,1,999.99,01/06/19 11:17,"53 Pine St, San Francisco, CA 94016" +159650,AA Batteries (4-pack),1,3.84,01/17/19 01:18,"215 12th St, Los Angeles, CA 90001" +159651,Apple Airpods Headphones,1,150,01/23/19 14:28,"924 Sunset St, San Francisco, CA 94016" +159652,AAA Batteries (4-pack),1,2.99,01/29/19 11:27,"244 Willow St, Boston, MA 02215" +159653,AAA Batteries (4-pack),1,2.99,01/04/19 18:07,"368 Lake St, Boston, MA 02215" +159654,USB-C Charging Cable,1,11.95,01/21/19 01:07,"915 Jefferson St, New York City, NY 10001" +159655,Bose SoundSport Headphones,1,99.99,01/05/19 09:43,"193 7th St, San Francisco, CA 94016" +159656,AA Batteries (4-pack),1,3.84,01/16/19 13:32,"485 Jackson St, Boston, MA 02215" diff --git a/sales_data/Sales_July_2019.csv b/sales_data/Sales_July_2019.csv new file mode 100644 index 0000000..200987e --- /dev/null +++ b/sales_data/Sales_July_2019.csv @@ -0,0 +1,15041 @@ +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +221614,USB-C Charging Cable,1,11.95,07/14/19 21:59,"997 Jackson St, Dallas, TX 75001" +221615,Lightning Charging Cable,1,14.95,07/13/19 10:24,"772 Church St, Austin, TX 73301" +221616,Wired Headphones,1,11.99,07/13/19 15:22,"368 11th St, Seattle, WA 98101" +221617,Vareebadd Phone,1,400.0,07/29/19 22:25,"280 South St, Dallas, TX 75001" +221618,34in Ultrawide Monitor,1,379.99,07/13/19 09:48,"685 South St, San Francisco, CA 94016" +221619,Google Phone,1,600.0,07/04/19 18:24,"185 Lakeview St, Los Angeles, CA 90001" +221620,Lightning Charging Cable,1,14.95,07/25/19 03:18,"825 5th St, San Francisco, CA 94016" +221621,AA Batteries (4-pack),1,3.84,07/23/19 19:14,"232 Hickory St, San Francisco, CA 94016" +221622,Google Phone,1,600.0,07/23/19 20:26,"626 13th St, Seattle, WA 98101" +221623,iPhone,1,700.0,07/22/19 10:05,"965 11th St, San Francisco, CA 94016" +221624,AA Batteries (4-pack),1,3.84,07/09/19 07:13,"207 Wilson St, New York City, NY 10001" +221625,Bose SoundSport Headphones,1,99.99,07/27/19 10:45,"718 Highland St, Los Angeles, CA 90001" +221626,20in Monitor,1,109.99,07/01/19 15:38,"949 Lincoln St, Los Angeles, CA 90001" +221627,AAA Batteries (4-pack),1,2.99,07/27/19 00:21,"613 Forest St, Boston, MA 02215" +221628,34in Ultrawide Monitor,1,379.99,07/02/19 16:20,"840 Ridge St, Seattle, WA 98101" +221629,34in Ultrawide Monitor,1,379.99,07/12/19 07:14,"651 Highland St, Los Angeles, CA 90001" +221630,20in Monitor,1,109.99,07/04/19 22:06,"737 Park St, New York City, NY 10001" +221631,USB-C Charging Cable,1,11.95,07/31/19 06:30,"987 Spruce St, New York City, NY 10001" +221632,Lightning Charging Cable,1,14.95,07/02/19 20:22,"217 7th St, San Francisco, CA 94016" +221633,Wired Headphones,1,11.99,07/10/19 19:59,"930 7th St, San Francisco, CA 94016" +221633,USB-C Charging Cable,1,11.95,07/10/19 19:59,"930 7th St, San Francisco, CA 94016" +221634,AA Batteries (4-pack),1,3.84,07/01/19 20:11,"10 West St, Seattle, WA 98101" +221635,Bose SoundSport Headphones,1,99.99,07/19/19 12:21,"456 Ridge St, Seattle, WA 98101" +221636,AAA Batteries (4-pack),1,2.99,07/31/19 13:02,"574 Cedar St, New York City, NY 10001" +221637,iPhone,1,700.0,07/28/19 13:00,"255 Main St, Los Angeles, CA 90001" +221638,USB-C Charging Cable,1,11.95,07/28/19 23:37,"263 Pine St, Austin, TX 73301" +221639,AAA Batteries (4-pack),2,2.99,07/13/19 19:28,"262 2nd St, San Francisco, CA 94016" +221640,27in FHD Monitor,1,149.99,07/13/19 10:38,"26 12th St, Los Angeles, CA 90001" +221641,Lightning Charging Cable,1,14.95,07/23/19 17:34,"503 Johnson St, New York City, NY 10001" +221642,Macbook Pro Laptop,1,1700.0,07/23/19 17:06,"517 South St, San Francisco, CA 94016" +221643,Google Phone,1,600.0,07/13/19 12:46,"797 Church St, San Francisco, CA 94016" +221644,AA Batteries (4-pack),1,3.84,07/23/19 12:03,"361 Sunset St, New York City, NY 10001" +221645,USB-C Charging Cable,1,11.95,07/06/19 18:52,"309 14th St, Boston, MA 02215" +221646,AAA Batteries (4-pack),1,2.99,07/18/19 20:00,"414 13th St, New York City, NY 10001" +221647,Google Phone,1,600.0,07/08/19 13:46,"634 Washington St, San Francisco, CA 94016" +221648,AA Batteries (4-pack),1,3.84,07/31/19 15:28,"492 Main St, Los Angeles, CA 90001" +221649,Bose SoundSport Headphones,1,99.99,07/27/19 21:11,"788 Hill St, Atlanta, GA 30301" +221650,Lightning Charging Cable,1,14.95,07/16/19 23:04,"296 12th St, Austin, TX 73301" +221651,Lightning Charging Cable,1,14.95,07/31/19 13:01,"993 Forest St, San Francisco, CA 94016" +221652,USB-C Charging Cable,1,11.95,07/20/19 19:26,"522 9th St, San Francisco, CA 94016" +221653,Lightning Charging Cable,1,14.95,07/25/19 12:26,"66 Cherry St, Seattle, WA 98101" +221654,Apple Airpods Headphones,1,150.0,07/22/19 12:54,"489 Main St, Portland, ME 04101" +221655,27in FHD Monitor,1,149.99,07/05/19 10:24,"239 4th St, Austin, TX 73301" +221656,Bose SoundSport Headphones,1,99.99,07/09/19 21:19,"529 Dogwood St, Austin, TX 73301" +221657,Wired Headphones,1,11.99,07/03/19 19:26,"574 Lincoln St, Boston, MA 02215" +221658,USB-C Charging Cable,2,11.95,07/19/19 17:56,"169 Church St, San Francisco, CA 94016" +221659,Bose SoundSport Headphones,1,99.99,07/27/19 23:04,"419 4th St, San Francisco, CA 94016" +221660,20in Monitor,1,109.99,07/13/19 19:13,"85 6th St, San Francisco, CA 94016" +221661,Lightning Charging Cable,1,14.95,07/18/19 05:26,"897 Ridge St, San Francisco, CA 94016" +221662,AAA Batteries (4-pack),1,2.99,07/30/19 21:19,"737 7th St, Portland, OR 97035" +221663,AAA Batteries (4-pack),1,2.99,07/01/19 12:42,"151 Hickory St, San Francisco, CA 94016" +221664,Wired Headphones,1,11.99,07/21/19 18:25,"75 Walnut St, San Francisco, CA 94016" +221665,Wired Headphones,1,11.99,07/05/19 11:46,"643 Meadow St, Dallas, TX 75001" +221666,AA Batteries (4-pack),2,3.84,07/09/19 15:53,"407 Lincoln St, New York City, NY 10001" +221667,USB-C Charging Cable,1,11.95,07/18/19 19:20,"486 9th St, Los Angeles, CA 90001" +221668,Wired Headphones,1,11.99,07/23/19 15:34,"95 Forest St, San Francisco, CA 94016" +221669,Lightning Charging Cable,1,14.95,07/03/19 12:59,"698 South St, San Francisco, CA 94016" +221670,Vareebadd Phone,1,400.0,07/13/19 19:47,"239 Main St, San Francisco, CA 94016" +221670,USB-C Charging Cable,1,11.95,07/13/19 19:47,"239 Main St, San Francisco, CA 94016" +221671,Google Phone,1,600.0,07/09/19 04:55,"813 9th St, Los Angeles, CA 90001" +221671,USB-C Charging Cable,1,11.95,07/09/19 04:55,"813 9th St, Los Angeles, CA 90001" +221672,USB-C Charging Cable,1,11.95,07/31/19 16:22,"105 Lincoln St, New York City, NY 10001" +221673,Bose SoundSport Headphones,1,99.99,07/24/19 10:44,"889 2nd St, Los Angeles, CA 90001" +221674,Flatscreen TV,1,300.0,07/08/19 16:12,"703 Washington St, New York City, NY 10001" +221675,Lightning Charging Cable,1,14.95,07/29/19 19:53,"394 Walnut St, Los Angeles, CA 90001" +221676,USB-C Charging Cable,1,11.95,07/30/19 11:56,"892 4th St, Dallas, TX 75001" +221677,Wired Headphones,1,11.99,07/26/19 17:37,"252 Meadow St, New York City, NY 10001" +221678,Lightning Charging Cable,1,14.95,07/13/19 06:49,"193 5th St, Seattle, WA 98101" +221679,AAA Batteries (4-pack),2,2.99,07/29/19 08:52,"131 Lake St, Boston, MA 02215" +221680,Wired Headphones,1,11.99,07/06/19 19:46,"270 Sunset St, Atlanta, GA 30301" +221681,USB-C Charging Cable,1,11.95,07/19/19 07:10,"431 10th St, San Francisco, CA 94016" +221682,AAA Batteries (4-pack),1,2.99,07/20/19 13:31,"450 Wilson St, Dallas, TX 75001" +221683,iPhone,1,700.0,07/28/19 15:19,"317 Chestnut St, San Francisco, CA 94016" +221684,Bose SoundSport Headphones,1,99.99,07/04/19 20:10,"435 Jefferson St, Seattle, WA 98101" +221685,27in 4K Gaming Monitor,1,389.99,07/24/19 12:57,"580 Chestnut St, Boston, MA 02215" +221686,Google Phone,1,600.0,07/10/19 16:25,"256 Lakeview St, Los Angeles, CA 90001" +221687,Wired Headphones,1,11.99,07/27/19 15:46,"313 Spruce St, Dallas, TX 75001" +221688,Apple Airpods Headphones,1,150.0,07/24/19 08:38,"648 2nd St, San Francisco, CA 94016" +221689,27in 4K Gaming Monitor,1,389.99,08/01/19 02:15,"173 Wilson St, San Francisco, CA 94016" +221690,iPhone,1,700.0,07/21/19 10:46,"270 Hickory St, San Francisco, CA 94016" +221691,iPhone,1,700.0,07/17/19 15:45,"681 9th St, Los Angeles, CA 90001" +221691,Apple Airpods Headphones,1,150.0,07/17/19 15:45,"681 9th St, Los Angeles, CA 90001" +221692,27in 4K Gaming Monitor,1,389.99,07/23/19 22:11,"734 Dogwood St, Los Angeles, CA 90001" +221693,Bose SoundSport Headphones,1,99.99,07/24/19 12:43,"636 Park St, Boston, MA 02215" +221694,AA Batteries (4-pack),1,3.84,07/06/19 08:32,"625 2nd St, San Francisco, CA 94016" +221695,AA Batteries (4-pack),1,3.84,07/31/19 22:01,"425 Hill St, Seattle, WA 98101" +221696,AAA Batteries (4-pack),1,2.99,07/07/19 13:39,"712 Chestnut St, Seattle, WA 98101" +221697,Bose SoundSport Headphones,1,99.99,07/06/19 12:37,"693 1st St, San Francisco, CA 94016" +221698,AA Batteries (4-pack),2,3.84,07/21/19 20:41,"967 Meadow St, San Francisco, CA 94016" +221699,AA Batteries (4-pack),1,3.84,07/27/19 08:51,"199 8th St, San Francisco, CA 94016" +221700,AA Batteries (4-pack),1,3.84,07/11/19 12:53,"156 6th St, Boston, MA 02215" +221701,USB-C Charging Cable,1,11.95,07/05/19 15:21,"426 Adams St, Los Angeles, CA 90001" +221702,Bose SoundSport Headphones,1,99.99,07/01/19 13:27,"522 2nd St, Seattle, WA 98101" +221703,AAA Batteries (4-pack),1,2.99,07/03/19 10:52,"883 8th St, San Francisco, CA 94016" +221704,AA Batteries (4-pack),1,3.84,07/09/19 07:20,"700 Willow St, San Francisco, CA 94016" +221705,AAA Batteries (4-pack),1,2.99,07/03/19 14:53,"153 Park St, Boston, MA 02215" +221706,AA Batteries (4-pack),1,3.84,07/11/19 09:23,"343 Cherry St, New York City, NY 10001" +221707,iPhone,1,700.0,07/30/19 09:28,"558 Sunset St, New York City, NY 10001" +221707,Lightning Charging Cable,1,14.95,07/30/19 09:28,"558 Sunset St, New York City, NY 10001" +221708,27in 4K Gaming Monitor,1,389.99,07/12/19 09:05,"694 Center St, Seattle, WA 98101" +221709,Wired Headphones,1,11.99,07/20/19 19:10,"590 8th St, Seattle, WA 98101" +221710,Google Phone,1,600.0,07/26/19 16:59,"968 Chestnut St, San Francisco, CA 94016" +221711,Wired Headphones,1,11.99,07/18/19 19:10,"636 Park St, Boston, MA 02215" +221712,iPhone,1,700.0,07/23/19 16:21,"614 Johnson St, San Francisco, CA 94016" +221713,Lightning Charging Cable,1,14.95,07/19/19 17:50,"252 Adams St, Atlanta, GA 30301" +221714,34in Ultrawide Monitor,1,379.99,07/10/19 02:03,"755 Willow St, Austin, TX 73301" +221715,Wired Headphones,1,11.99,07/03/19 06:36,"550 Pine St, New York City, NY 10001" +221716,Google Phone,1,600.0,07/11/19 12:34,"116 13th St, New York City, NY 10001" +221717,Apple Airpods Headphones,1,150.0,07/11/19 20:58,"546 River St, Los Angeles, CA 90001" +221718,Wired Headphones,2,11.99,07/07/19 11:12,"342 Lincoln St, New York City, NY 10001" +221719,AAA Batteries (4-pack),2,2.99,07/15/19 16:56,"238 Highland St, Atlanta, GA 30301" +221720,Flatscreen TV,1,300.0,07/13/19 00:00,"564 Park St, Los Angeles, CA 90001" +221721,USB-C Charging Cable,1,11.95,07/31/19 17:49,"386 Walnut St, Dallas, TX 75001" +221722,27in 4K Gaming Monitor,1,389.99,07/26/19 13:22,"922 West St, Los Angeles, CA 90001" +221723,Lightning Charging Cable,1,14.95,07/11/19 11:14,"478 7th St, San Francisco, CA 94016" +221724,Google Phone,1,600.0,07/31/19 12:57,"828 Sunset St, Boston, MA 02215" +221725,Flatscreen TV,1,300.0,07/07/19 17:40,"536 Lakeview St, Boston, MA 02215" +221726,Lightning Charging Cable,1,14.95,07/02/19 20:10,"215 West St, Austin, TX 73301" +221727,Wired Headphones,1,11.99,07/31/19 21:31,"167 1st St, Boston, MA 02215" +221728,Macbook Pro Laptop,1,1700.0,07/26/19 08:49,"9 Main St, San Francisco, CA 94016" +221729,Wired Headphones,1,11.99,07/02/19 16:08,"421 Jefferson St, New York City, NY 10001" +221730,AA Batteries (4-pack),1,3.84,07/10/19 13:00,"452 5th St, San Francisco, CA 94016" +221731,Apple Airpods Headphones,1,150.0,07/10/19 16:01,"940 South St, Los Angeles, CA 90001" +221732,Lightning Charging Cable,1,14.95,07/22/19 22:10,"159 6th St, San Francisco, CA 94016" +221733,AAA Batteries (4-pack),1,2.99,07/04/19 21:18,"877 Willow St, Austin, TX 73301" +221734,Vareebadd Phone,1,400.0,07/13/19 17:45,"930 Wilson St, New York City, NY 10001" +221735,AAA Batteries (4-pack),2,2.99,07/11/19 21:13,"447 14th St, Atlanta, GA 30301" +221736,iPhone,1,700.0,07/16/19 17:33,"77 Park St, Los Angeles, CA 90001" +221737,Apple Airpods Headphones,1,150.0,07/07/19 21:28,"530 Lake St, San Francisco, CA 94016" +221738,34in Ultrawide Monitor,1,379.99,07/30/19 21:21,"100 Church St, San Francisco, CA 94016" +221739,Wired Headphones,1,11.99,07/11/19 12:43,"635 Wilson St, Boston, MA 02215" +221740,Bose SoundSport Headphones,1,99.99,07/01/19 23:16,"167 13th St, Los Angeles, CA 90001" +221741,USB-C Charging Cable,1,11.95,07/22/19 13:10,"919 Lakeview St, Portland, ME 04101" +221742,Macbook Pro Laptop,1,1700.0,07/13/19 15:13,"328 North St, New York City, NY 10001" +221743,Wired Headphones,1,11.99,07/08/19 12:22,"516 1st St, San Francisco, CA 94016" +221744,AA Batteries (4-pack),1,3.84,07/04/19 10:46,"687 Pine St, San Francisco, CA 94016" +221745,AAA Batteries (4-pack),2,2.99,07/21/19 02:49,"178 Wilson St, Los Angeles, CA 90001" +221746,Wired Headphones,1,11.99,07/18/19 01:45,"350 South St, San Francisco, CA 94016" +221747,Flatscreen TV,1,300.0,07/09/19 19:35,"226 Meadow St, Los Angeles, CA 90001" +221748,Wired Headphones,1,11.99,07/19/19 06:30,"530 River St, Boston, MA 02215" +221749,AA Batteries (4-pack),1,3.84,07/15/19 15:14,"902 Walnut St, Portland, OR 97035" +221750,Flatscreen TV,1,300.0,07/17/19 17:51,"722 Main St, San Francisco, CA 94016" +221751,20in Monitor,1,109.99,07/13/19 12:46,"46 2nd St, Austin, TX 73301" +221752,AA Batteries (4-pack),2,3.84,07/03/19 13:07,"457 Jackson St, Atlanta, GA 30301" +221753,34in Ultrawide Monitor,1,379.99,07/30/19 19:35,"999 Lake St, San Francisco, CA 94016" +221754,LG Washing Machine,1,600.0,07/20/19 11:52,"653 Washington St, New York City, NY 10001" +221755,Bose SoundSport Headphones,1,99.99,07/08/19 10:26,"247 Hill St, New York City, NY 10001" +221756,USB-C Charging Cable,1,11.95,07/29/19 11:57,"301 Hill St, Portland, OR 97035" +221757,AAA Batteries (4-pack),3,2.99,07/22/19 17:02,"444 Cedar St, Boston, MA 02215" +221758,AAA Batteries (4-pack),2,2.99,07/31/19 15:54,"825 Lincoln St, San Francisco, CA 94016" +221759,USB-C Charging Cable,1,11.95,07/09/19 19:26,"754 Chestnut St, Boston, MA 02215" +221760,20in Monitor,1,109.99,07/31/19 11:30,"685 Lincoln St, San Francisco, CA 94016" +221761,Google Phone,1,600.0,07/24/19 18:24,"183 Johnson St, Los Angeles, CA 90001" +221762,AAA Batteries (4-pack),1,2.99,07/06/19 13:15,"302 Main St, Atlanta, GA 30301" +221763,27in FHD Monitor,1,149.99,07/22/19 21:28,"237 Maple St, Boston, MA 02215" +221764,Wired Headphones,1,11.99,07/07/19 15:42,"717 Main St, New York City, NY 10001" +221765,34in Ultrawide Monitor,1,379.99,07/17/19 00:13,"484 10th St, Austin, TX 73301" +221766,Wired Headphones,1,11.99,07/02/19 16:23,"904 6th St, Boston, MA 02215" +221766,USB-C Charging Cable,1,11.95,07/02/19 16:23,"904 6th St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +221767,Macbook Pro Laptop,1,1700,07/29/19 18:56,"492 Lakeview St, Portland, OR 97035" +221768,Bose SoundSport Headphones,1,99.99,07/14/19 20:17,"803 West St, Atlanta, GA 30301" +221769,AAA Batteries (4-pack),1,2.99,07/12/19 18:49,"532 7th St, Boston, MA 02215" +221770,AA Batteries (4-pack),1,3.84,07/02/19 15:18,"913 Ridge St, Los Angeles, CA 90001" +221771,AAA Batteries (4-pack),1,2.99,07/01/19 14:31,"310 River St, Atlanta, GA 30301" +221772,AA Batteries (4-pack),1,3.84,07/14/19 12:01,"775 7th St, Seattle, WA 98101" +221773,Macbook Pro Laptop,1,1700,07/13/19 17:42,"350 Lake St, Atlanta, GA 30301" +221774,USB-C Charging Cable,1,11.95,07/19/19 09:42,"250 Highland St, Los Angeles, CA 90001" +221775,AAA Batteries (4-pack),2,2.99,07/26/19 17:09,"565 Main St, Austin, TX 73301" +221776,iPhone,1,700,07/25/19 09:02,"366 Main St, New York City, NY 10001" +221776,Lightning Charging Cable,1,14.95,07/25/19 09:02,"366 Main St, New York City, NY 10001" +221777,Lightning Charging Cable,1,14.95,07/29/19 14:06,"952 8th St, New York City, NY 10001" +221778,Lightning Charging Cable,2,14.95,07/07/19 07:37,"693 Willow St, San Francisco, CA 94016" +221779,27in FHD Monitor,1,149.99,07/06/19 19:20,"861 13th St, San Francisco, CA 94016" +221780,Wired Headphones,1,11.99,07/04/19 13:33,"404 12th St, Portland, ME 04101" +221781,AA Batteries (4-pack),3,3.84,07/23/19 13:57,"808 Highland St, Boston, MA 02215" +221782,Apple Airpods Headphones,1,150,07/27/19 10:49,"891 Main St, Los Angeles, CA 90001" +221783,Lightning Charging Cable,1,14.95,07/01/19 17:19,"127 Maple St, Atlanta, GA 30301" +221784,AA Batteries (4-pack),1,3.84,07/24/19 17:56,"255 Hill St, New York City, NY 10001" +221785,USB-C Charging Cable,1,11.95,07/26/19 19:41,"554 Main St, Dallas, TX 75001" +221786,Wired Headphones,1,11.99,07/01/19 06:35,"937 1st St, Boston, MA 02215" +221787,27in FHD Monitor,1,149.99,07/20/19 20:15,"134 2nd St, Seattle, WA 98101" +221788,Macbook Pro Laptop,1,1700,07/20/19 13:34,"723 2nd St, San Francisco, CA 94016" +221789,Apple Airpods Headphones,1,150,07/05/19 19:54,"795 Johnson St, Seattle, WA 98101" +221790,USB-C Charging Cable,1,11.95,07/24/19 17:45,"296 Meadow St, San Francisco, CA 94016" +221791,AA Batteries (4-pack),1,3.84,07/12/19 14:58,"874 Lake St, Dallas, TX 75001" +221792,AA Batteries (4-pack),1,3.84,07/03/19 15:05,"442 Jackson St, Portland, OR 97035" +221792,AA Batteries (4-pack),1,3.84,07/03/19 15:05,"442 Jackson St, Portland, OR 97035" +221793,Lightning Charging Cable,1,14.95,07/11/19 09:02,"445 Jefferson St, San Francisco, CA 94016" +221794,Apple Airpods Headphones,1,150,07/30/19 05:30,"591 North St, Los Angeles, CA 90001" +221795,Bose SoundSport Headphones,1,99.99,07/13/19 11:46,"959 Dogwood St, New York City, NY 10001" +221796,Google Phone,1,600,07/25/19 21:54,"1 Maple St, Atlanta, GA 30301" +221796,USB-C Charging Cable,1,11.95,07/25/19 21:54,"1 Maple St, Atlanta, GA 30301" +221797,Lightning Charging Cable,2,14.95,07/08/19 19:46,"70 12th St, New York City, NY 10001" +221798,USB-C Charging Cable,1,11.95,07/11/19 09:20,"272 North St, Austin, TX 73301" +221799,Lightning Charging Cable,1,14.95,07/21/19 21:40,"805 2nd St, New York City, NY 10001" +221800,Google Phone,1,600,07/22/19 20:29,"602 Highland St, Los Angeles, CA 90001" +221801,AA Batteries (4-pack),1,3.84,07/24/19 23:27,"581 Pine St, San Francisco, CA 94016" +221802,Apple Airpods Headphones,1,150,07/28/19 20:42,"281 Pine St, San Francisco, CA 94016" +221803,USB-C Charging Cable,1,11.95,07/24/19 18:11,"317 13th St, Dallas, TX 75001" +221804,Vareebadd Phone,1,400,07/19/19 11:08,"418 Hill St, Dallas, TX 75001" +221804,Wired Headphones,1,11.99,07/19/19 11:08,"418 Hill St, Dallas, TX 75001" +221805,34in Ultrawide Monitor,1,379.99,07/17/19 09:06,"795 Willow St, Seattle, WA 98101" +221806,AAA Batteries (4-pack),1,2.99,07/14/19 11:08,"39 River St, Atlanta, GA 30301" +221807,Wired Headphones,1,11.99,07/10/19 22:19,"7 South St, Los Angeles, CA 90001" +221808,34in Ultrawide Monitor,1,379.99,07/05/19 19:38,"92 7th St, Seattle, WA 98101" +221809,Bose SoundSport Headphones,1,99.99,07/08/19 18:19,"641 2nd St, Los Angeles, CA 90001" +221810,27in FHD Monitor,1,149.99,07/02/19 12:57,"235 Lakeview St, Los Angeles, CA 90001" +221811,Lightning Charging Cable,2,14.95,07/27/19 18:46,"206 Ridge St, Boston, MA 02215" +221812,AAA Batteries (4-pack),1,2.99,07/01/19 16:55,"932 4th St, Dallas, TX 75001" +221813,27in FHD Monitor,1,149.99,07/10/19 15:16,"986 Cedar St, Seattle, WA 98101" +221814,Google Phone,1,600,07/22/19 17:40,"253 10th St, Los Angeles, CA 90001" +221815,AAA Batteries (4-pack),1,2.99,07/23/19 12:23,"344 9th St, San Francisco, CA 94016" +221816,Wired Headphones,1,11.99,07/08/19 13:34,"67 River St, San Francisco, CA 94016" +221817,AA Batteries (4-pack),1,3.84,07/11/19 16:40,"613 Sunset St, Dallas, TX 75001" +221818,AAA Batteries (4-pack),1,2.99,07/03/19 16:57,"230 12th St, New York City, NY 10001" +221819,AAA Batteries (4-pack),1,2.99,07/20/19 11:32,"715 11th St, Atlanta, GA 30301" +221820,USB-C Charging Cable,1,11.95,07/15/19 21:59,"613 Chestnut St, San Francisco, CA 94016" +221821,USB-C Charging Cable,1,11.95,07/27/19 18:40,"42 Wilson St, Atlanta, GA 30301" +221822,USB-C Charging Cable,2,11.95,07/10/19 10:59,"249 Jefferson St, San Francisco, CA 94016" +221823,AA Batteries (4-pack),1,3.84,07/02/19 20:57,"594 Lakeview St, New York City, NY 10001" +221824,AA Batteries (4-pack),3,3.84,07/28/19 21:11,"500 8th St, Portland, OR 97035" +221825,Wired Headphones,1,11.99,07/07/19 23:51,"404 Adams St, New York City, NY 10001" +221826,USB-C Charging Cable,1,11.95,07/14/19 17:52,"542 Lakeview St, San Francisco, CA 94016" +221827,Wired Headphones,2,11.99,07/26/19 20:26,"391 13th St, New York City, NY 10001" +221828,Wired Headphones,1,11.99,07/17/19 11:07,"884 6th St, Boston, MA 02215" +221829,Google Phone,1,600,07/18/19 13:02,"747 Cherry St, Portland, OR 97035" +221830,USB-C Charging Cable,1,11.95,07/13/19 13:33,"196 Cherry St, Seattle, WA 98101" +221831,Bose SoundSport Headphones,1,99.99,07/29/19 21:44,"512 Main St, Boston, MA 02215" +221832,AAA Batteries (4-pack),1,2.99,07/18/19 22:44,"416 Spruce St, Los Angeles, CA 90001" +221833,AA Batteries (4-pack),2,3.84,07/07/19 16:49,"914 Elm St, San Francisco, CA 94016" +221834,Lightning Charging Cable,1,14.95,07/08/19 08:55,"898 River St, Los Angeles, CA 90001" +221835,Lightning Charging Cable,1,14.95,07/14/19 11:42,"414 Adams St, Los Angeles, CA 90001" +221836,AAA Batteries (4-pack),1,2.99,07/26/19 19:43,"317 14th St, New York City, NY 10001" +221837,Lightning Charging Cable,1,14.95,07/21/19 20:49,"485 River St, New York City, NY 10001" +221838,Lightning Charging Cable,1,14.95,07/04/19 17:05,"400 Sunset St, San Francisco, CA 94016" +221839,27in FHD Monitor,1,149.99,07/05/19 10:08,"203 Chestnut St, Los Angeles, CA 90001" +221840,Lightning Charging Cable,1,14.95,07/09/19 11:38,"241 6th St, Seattle, WA 98101" +221841,Lightning Charging Cable,1,14.95,07/05/19 12:16,"630 Ridge St, Atlanta, GA 30301" +221842,AAA Batteries (4-pack),2,2.99,07/03/19 17:01,"86 9th St, San Francisco, CA 94016" +221843,Lightning Charging Cable,1,14.95,07/01/19 19:13,"400 4th St, New York City, NY 10001" +221844,AAA Batteries (4-pack),3,2.99,07/09/19 10:53,"915 Meadow St, San Francisco, CA 94016" +221845,Bose SoundSport Headphones,1,99.99,07/20/19 21:24,"234 12th St, Boston, MA 02215" +221846,USB-C Charging Cable,1,11.95,07/06/19 19:48,"817 7th St, Austin, TX 73301" +221847,Wired Headphones,2,11.99,07/02/19 11:49,"314 Cedar St, San Francisco, CA 94016" +221848,USB-C Charging Cable,1,11.95,07/11/19 17:15,"737 Johnson St, San Francisco, CA 94016" +221849,Lightning Charging Cable,1,14.95,07/22/19 09:34,"66 Highland St, San Francisco, CA 94016" +221850,USB-C Charging Cable,1,11.95,07/26/19 19:51,"620 Hill St, Boston, MA 02215" +221851,AA Batteries (4-pack),2,3.84,07/13/19 20:08,"156 Dogwood St, Austin, TX 73301" +221852,Flatscreen TV,1,300,07/07/19 11:35,"883 Highland St, San Francisco, CA 94016" +221853,iPhone,1,700,07/06/19 19:07,"701 Meadow St, Seattle, WA 98101" +221854,AAA Batteries (4-pack),1,2.99,07/23/19 14:44,"742 Spruce St, Atlanta, GA 30301" +221855,34in Ultrawide Monitor,1,379.99,07/19/19 11:34,"240 North St, San Francisco, CA 94016" +221856,USB-C Charging Cable,2,11.95,07/23/19 23:38,"555 Johnson St, San Francisco, CA 94016" +221857,USB-C Charging Cable,1,11.95,07/24/19 10:12,"5 Spruce St, San Francisco, CA 94016" +221858,USB-C Charging Cable,2,11.95,07/31/19 23:07,"634 9th St, Atlanta, GA 30301" +221859,Google Phone,1,600,07/09/19 18:49,"904 11th St, Los Angeles, CA 90001" +221860,Wired Headphones,1,11.99,07/24/19 18:55,"424 9th St, Boston, MA 02215" +221860,USB-C Charging Cable,1,11.95,07/24/19 18:55,"424 9th St, Boston, MA 02215" +221861,Bose SoundSport Headphones,1,99.99,07/08/19 09:35,"564 Jackson St, Dallas, TX 75001" +221862,AA Batteries (4-pack),1,3.84,07/14/19 13:08,"22 Jackson St, Boston, MA 02215" +221863,34in Ultrawide Monitor,1,379.99,07/19/19 23:08,"368 North St, Dallas, TX 75001" +221864,iPhone,1,700,07/05/19 18:46,"276 Jackson St, Atlanta, GA 30301" +221865,Lightning Charging Cable,1,14.95,07/10/19 20:20,"168 North St, Austin, TX 73301" +221866,USB-C Charging Cable,1,11.95,07/05/19 10:58,"242 Jackson St, Seattle, WA 98101" +221867,Lightning Charging Cable,1,14.95,07/22/19 11:40,"954 Lake St, San Francisco, CA 94016" +221868,Lightning Charging Cable,1,14.95,07/30/19 19:26,"673 7th St, New York City, NY 10001" +221869,USB-C Charging Cable,1,11.95,07/13/19 17:50,"130 Hill St, Portland, ME 04101" +221870,AA Batteries (4-pack),1,3.84,07/06/19 01:10,"571 Madison St, Atlanta, GA 30301" +221871,Lightning Charging Cable,1,14.95,07/03/19 14:18,"134 Park St, Boston, MA 02215" +221872,Lightning Charging Cable,1,14.95,07/22/19 21:31,"155 Jackson St, Boston, MA 02215" +221873,Apple Airpods Headphones,1,150,07/15/19 12:54,"277 Church St, Atlanta, GA 30301" +221874,USB-C Charging Cable,1,11.95,07/13/19 22:08,"108 Cherry St, New York City, NY 10001" +221875,AA Batteries (4-pack),1,3.84,07/15/19 16:01,"270 Jefferson St, San Francisco, CA 94016" +221876,Apple Airpods Headphones,1,150,07/15/19 09:44,"603 River St, San Francisco, CA 94016" +221877,Apple Airpods Headphones,1,150,07/22/19 17:44,"677 7th St, San Francisco, CA 94016" +221878,Google Phone,1,600,07/08/19 18:51,"413 Center St, Boston, MA 02215" +221878,USB-C Charging Cable,1,11.95,07/08/19 18:51,"413 Center St, Boston, MA 02215" +221879,Apple Airpods Headphones,1,150,07/18/19 09:38,"419 Ridge St, Dallas, TX 75001" +221880,AA Batteries (4-pack),1,3.84,07/31/19 23:56,"550 11th St, San Francisco, CA 94016" +221881,Macbook Pro Laptop,1,1700,07/01/19 11:41,"406 Dogwood St, Boston, MA 02215" +221882,Wired Headphones,2,11.99,07/15/19 13:34,"412 Church St, Seattle, WA 98101" +221883,20in Monitor,1,109.99,07/23/19 15:37,"800 South St, Los Angeles, CA 90001" +221884,Flatscreen TV,1,300,07/18/19 08:43,"480 5th St, Seattle, WA 98101" +221885,AA Batteries (4-pack),2,3.84,07/12/19 11:06,"701 Willow St, Los Angeles, CA 90001" +221886,USB-C Charging Cable,1,11.95,07/20/19 18:53,"615 Johnson St, Boston, MA 02215" +221887,AA Batteries (4-pack),1,3.84,07/15/19 14:44,"151 Center St, Austin, TX 73301" +221888,Flatscreen TV,1,300,07/27/19 18:40,"202 Center St, San Francisco, CA 94016" +221889,Lightning Charging Cable,1,14.95,07/17/19 22:40,"207 Hickory St, San Francisco, CA 94016" +221890,AA Batteries (4-pack),1,3.84,07/26/19 08:24,"561 Madison St, San Francisco, CA 94016" +221891,Wired Headphones,2,11.99,07/03/19 00:47,"173 Elm St, San Francisco, CA 94016" +221892,Lightning Charging Cable,1,14.95,07/21/19 15:46,"990 Center St, Atlanta, GA 30301" +221893,Apple Airpods Headphones,1,150,07/29/19 13:47,"13 Maple St, Boston, MA 02215" +221894,AA Batteries (4-pack),2,3.84,07/25/19 12:47,"943 9th St, Boston, MA 02215" +221895,AA Batteries (4-pack),1,3.84,07/07/19 05:09,"431 Lakeview St, Portland, OR 97035" +221896,Google Phone,1,600,07/21/19 20:43,"526 9th St, San Francisco, CA 94016" +221897,USB-C Charging Cable,1,11.95,07/24/19 10:22,"67 Willow St, Portland, OR 97035" +221898,27in 4K Gaming Monitor,1,389.99,07/16/19 16:53,"644 Chestnut St, New York City, NY 10001" +221899,ThinkPad Laptop,1,999.99,07/15/19 10:07,"371 Walnut St, Boston, MA 02215" +221900,Lightning Charging Cable,1,14.95,07/19/19 22:37,"954 River St, Dallas, TX 75001" +221901,Apple Airpods Headphones,1,150,07/28/19 10:43,"619 North St, Boston, MA 02215" +221902,USB-C Charging Cable,1,11.95,07/26/19 10:07,"661 Lake St, San Francisco, CA 94016" +221903,Lightning Charging Cable,1,14.95,07/05/19 16:37,"188 Park St, San Francisco, CA 94016" +221904,Lightning Charging Cable,1,14.95,07/25/19 12:58,"823 Wilson St, Los Angeles, CA 90001" +221905,AAA Batteries (4-pack),1,2.99,07/09/19 15:21,"36 Chestnut St, Boston, MA 02215" +221906,Google Phone,1,600,07/19/19 16:51,"928 Willow St, Boston, MA 02215" +221907,AAA Batteries (4-pack),2,2.99,07/28/19 14:44,"751 Jackson St, Los Angeles, CA 90001" +221908,34in Ultrawide Monitor,1,379.99,07/11/19 10:00,"29 Lakeview St, San Francisco, CA 94016" +221909,Apple Airpods Headphones,1,150,07/23/19 19:25,"980 11th St, San Francisco, CA 94016" +221910,Apple Airpods Headphones,1,150,07/07/19 07:57,"702 12th St, Seattle, WA 98101" +221910,Wired Headphones,1,11.99,07/07/19 07:57,"702 12th St, Seattle, WA 98101" +221911,AA Batteries (4-pack),1,3.84,07/09/19 13:20,"806 4th St, New York City, NY 10001" +221912,Wired Headphones,1,11.99,07/15/19 12:22,"103 4th St, Portland, ME 04101" +221913,Wired Headphones,1,11.99,07/25/19 14:53,"473 Hickory St, San Francisco, CA 94016" +221914,Bose SoundSport Headphones,1,99.99,07/11/19 10:13,"940 9th St, Boston, MA 02215" +221915,20in Monitor,1,109.99,07/16/19 12:54,"433 Jackson St, Austin, TX 73301" +221916,Wired Headphones,1,11.99,07/05/19 17:52,"366 Cedar St, Boston, MA 02215" +221917,Macbook Pro Laptop,1,1700,07/24/19 07:06,"915 Cherry St, San Francisco, CA 94016" +221918,Bose SoundSport Headphones,1,99.99,07/22/19 21:39,"650 Spruce St, Atlanta, GA 30301" +221919,Macbook Pro Laptop,1,1700,07/24/19 09:21,"263 Madison St, Atlanta, GA 30301" +221920,AA Batteries (4-pack),1,3.84,07/03/19 16:19,"152 Forest St, Dallas, TX 75001" +221921,AAA Batteries (4-pack),1,2.99,07/28/19 14:51,"723 10th St, Los Angeles, CA 90001" +221922,27in 4K Gaming Monitor,1,389.99,07/29/19 20:18,"431 Meadow St, San Francisco, CA 94016" +221923,AAA Batteries (4-pack),1,2.99,07/25/19 20:06,"324 Sunset St, Los Angeles, CA 90001" +221924,AA Batteries (4-pack),1,3.84,07/04/19 08:18,"341 Jackson St, Los Angeles, CA 90001" +221925,Bose SoundSport Headphones,1,99.99,07/01/19 09:29,"733 Lake St, San Francisco, CA 94016" +221926,Wired Headphones,1,11.99,07/22/19 20:29,"576 Center St, Seattle, WA 98101" +221927,27in FHD Monitor,1,149.99,07/04/19 14:45,"348 Main St, Dallas, TX 75001" +221928,Wired Headphones,1,11.99,07/04/19 18:25,"381 12th St, Los Angeles, CA 90001" +221929,Macbook Pro Laptop,1,1700,07/23/19 16:31,"162 10th St, Atlanta, GA 30301" +221930,ThinkPad Laptop,1,999.99,07/14/19 07:10,"876 12th St, Los Angeles, CA 90001" +221931,iPhone,1,700,07/30/19 14:07,"593 Wilson St, San Francisco, CA 94016" +221932,27in 4K Gaming Monitor,1,389.99,07/04/19 01:53,"200 Johnson St, San Francisco, CA 94016" +221933,27in FHD Monitor,1,149.99,07/29/19 10:44,"65 Church St, Los Angeles, CA 90001" +221934,27in FHD Monitor,1,149.99,07/26/19 21:57,"675 7th St, Austin, TX 73301" +221935,USB-C Charging Cable,1,11.95,07/01/19 12:01,"211 11th St, Los Angeles, CA 90001" +221936,20in Monitor,1,109.99,07/06/19 19:31,"721 Adams St, Boston, MA 02215" +221937,Apple Airpods Headphones,1,150,07/30/19 18:26,"399 10th St, Dallas, TX 75001" +221938,USB-C Charging Cable,1,11.95,07/24/19 17:27,"878 Dogwood St, Dallas, TX 75001" +221939,Wired Headphones,1,11.99,07/20/19 20:00,"315 Hill St, Boston, MA 02215" +221940,Wired Headphones,1,11.99,07/14/19 21:51,"539 Meadow St, New York City, NY 10001" +221941,Vareebadd Phone,1,400,07/04/19 14:27,"405 8th St, San Francisco, CA 94016" +221942,Wired Headphones,1,11.99,07/11/19 11:04,"384 Ridge St, Portland, OR 97035" +221943,Lightning Charging Cable,1,14.95,07/13/19 23:15,"244 Cedar St, Los Angeles, CA 90001" +221944,AAA Batteries (4-pack),1,2.99,07/29/19 06:27,"849 Spruce St, Boston, MA 02215" +221945,AAA Batteries (4-pack),2,2.99,07/01/19 20:41,"714 Cedar St, San Francisco, CA 94016" +221946,AA Batteries (4-pack),2,3.84,07/14/19 16:18,"429 Hill St, Boston, MA 02215" +221947,Bose SoundSport Headphones,1,99.99,07/05/19 14:40,"775 Adams St, Seattle, WA 98101" +221948,Vareebadd Phone,1,400,07/04/19 08:15,"898 Ridge St, New York City, NY 10001" +221948,Bose SoundSport Headphones,1,99.99,07/04/19 08:15,"898 Ridge St, New York City, NY 10001" +221949,27in 4K Gaming Monitor,1,389.99,07/27/19 19:09,"110 Lincoln St, Austin, TX 73301" +221950,AA Batteries (4-pack),1,3.84,07/22/19 13:51,"276 Church St, Seattle, WA 98101" +221951,USB-C Charging Cable,1,11.95,07/23/19 17:07,"391 5th St, Boston, MA 02215" +221952,Lightning Charging Cable,1,14.95,07/07/19 15:58,"922 Cedar St, Seattle, WA 98101" +221953,iPhone,1,700,07/31/19 22:34,"248 Adams St, San Francisco, CA 94016" +221954,Flatscreen TV,1,300,07/29/19 12:07,"303 11th St, Los Angeles, CA 90001" +221955,USB-C Charging Cable,1,11.95,07/09/19 15:29,"956 Elm St, Seattle, WA 98101" +221956,USB-C Charging Cable,2,11.95,07/07/19 13:44,"755 Hickory St, Los Angeles, CA 90001" +221957,iPhone,1,700,07/13/19 05:39,"484 Johnson St, Dallas, TX 75001" +221958,AA Batteries (4-pack),1,3.84,07/22/19 13:30,"955 9th St, Dallas, TX 75001" +221959,AA Batteries (4-pack),1,3.84,07/15/19 10:06,"14 Highland St, San Francisco, CA 94016" +221960,USB-C Charging Cable,1,11.95,07/09/19 00:03,"667 Spruce St, Seattle, WA 98101" +221961,iPhone,1,700,07/04/19 23:16,"443 4th St, Seattle, WA 98101" +221962,iPhone,1,700,07/12/19 21:19,"566 Jackson St, Seattle, WA 98101" +221963,iPhone,1,700,07/17/19 18:14,"973 River St, San Francisco, CA 94016" +221963,Lightning Charging Cable,1,14.95,07/17/19 18:14,"973 River St, San Francisco, CA 94016" +221964,Wired Headphones,1,11.99,07/10/19 19:15,"771 Chestnut St, Atlanta, GA 30301" +221965,27in FHD Monitor,1,149.99,07/08/19 20:28,"415 11th St, Los Angeles, CA 90001" +221965,Apple Airpods Headphones,1,150,07/08/19 20:28,"415 11th St, Los Angeles, CA 90001" +221966,Apple Airpods Headphones,1,150,07/05/19 17:50,"194 Highland St, Boston, MA 02215" +221967,34in Ultrawide Monitor,1,379.99,07/21/19 09:12,"398 Dogwood St, Dallas, TX 75001" +221968,AAA Batteries (4-pack),1,2.99,07/02/19 08:00,"610 Chestnut St, Seattle, WA 98101" +221969,AAA Batteries (4-pack),1,2.99,07/30/19 09:40,"931 Dogwood St, New York City, NY 10001" +221970,USB-C Charging Cable,1,11.95,07/14/19 15:35,"859 4th St, Austin, TX 73301" +221971,Apple Airpods Headphones,1,150,07/17/19 22:45,"386 1st St, Los Angeles, CA 90001" +221972,AA Batteries (4-pack),3,3.84,07/04/19 23:38,"295 Park St, San Francisco, CA 94016" +221973,Lightning Charging Cable,1,14.95,07/09/19 08:31,"605 Lake St, San Francisco, CA 94016" +221974,USB-C Charging Cable,2,11.95,07/11/19 06:40,"853 Johnson St, San Francisco, CA 94016" +221975,Bose SoundSport Headphones,1,99.99,07/19/19 12:09,"590 Lake St, Los Angeles, CA 90001" +221976,Apple Airpods Headphones,1,150,07/11/19 19:47,"48 13th St, San Francisco, CA 94016" +221977,AAA Batteries (4-pack),1,2.99,07/27/19 01:36,"223 Church St, New York City, NY 10001" +221978,USB-C Charging Cable,1,11.95,07/17/19 19:31,"64 Lincoln St, Seattle, WA 98101" +221979,AAA Batteries (4-pack),3,2.99,07/22/19 16:08,"270 Hill St, Los Angeles, CA 90001" +221980,Lightning Charging Cable,1,14.95,07/04/19 06:58,"984 River St, Boston, MA 02215" +221981,LG Washing Machine,1,600.0,07/18/19 07:53,"370 Sunset St, San Francisco, CA 94016" +221982,Google Phone,1,600,07/25/19 20:23,"262 7th St, Los Angeles, CA 90001" +221983,34in Ultrawide Monitor,1,379.99,07/11/19 23:31,"930 5th St, San Francisco, CA 94016" +221984,Wired Headphones,1,11.99,07/16/19 14:03,"498 Highland St, Dallas, TX 75001" +221984,AAA Batteries (4-pack),1,2.99,07/16/19 14:03,"498 Highland St, Dallas, TX 75001" +221985,Bose SoundSport Headphones,1,99.99,07/02/19 20:35,"819 8th St, Boston, MA 02215" +221986,20in Monitor,1,109.99,07/21/19 12:41,"444 Wilson St, Seattle, WA 98101" +221987,Wired Headphones,1,11.99,07/14/19 16:56,"361 Wilson St, New York City, NY 10001" +221988,Google Phone,1,600,07/15/19 11:43,"904 Cherry St, Dallas, TX 75001" +221989,USB-C Charging Cable,1,11.95,07/27/19 21:33,"990 Pine St, Portland, OR 97035" +221990,USB-C Charging Cable,2,11.95,07/11/19 18:41,"769 South St, San Francisco, CA 94016" +221991,AA Batteries (4-pack),1,3.84,07/04/19 01:30,"15 Hill St, Boston, MA 02215" +221992,27in FHD Monitor,1,149.99,07/07/19 07:22,"103 6th St, Boston, MA 02215" +221993,Google Phone,1,600,07/12/19 19:49,"544 Spruce St, San Francisco, CA 94016" +221993,Bose SoundSport Headphones,1,99.99,07/12/19 19:49,"544 Spruce St, San Francisco, CA 94016" +221994,Wired Headphones,1,11.99,07/21/19 19:57,"39 Center St, Atlanta, GA 30301" +221995,Apple Airpods Headphones,1,150,07/07/19 16:47,"69 8th St, Los Angeles, CA 90001" +221996,AAA Batteries (4-pack),1,2.99,07/26/19 16:58,"565 Cedar St, San Francisco, CA 94016" +221997,AAA Batteries (4-pack),2,2.99,07/27/19 07:56,"998 4th St, Seattle, WA 98101" +221998,Bose SoundSport Headphones,1,99.99,07/28/19 20:41,"255 Willow St, Dallas, TX 75001" +221999,USB-C Charging Cable,2,11.95,07/07/19 16:41,"451 Meadow St, San Francisco, CA 94016" +222000,Wired Headphones,2,11.99,07/17/19 23:16,"71 Hill St, Los Angeles, CA 90001" +222001,LG Washing Machine,1,600.0,07/07/19 14:33,"975 14th St, New York City, NY 10001" +222002,Macbook Pro Laptop,1,1700,07/18/19 21:06,"89 Madison St, Atlanta, GA 30301" +222003,Macbook Pro Laptop,1,1700,07/28/19 11:27,"558 Sunset St, San Francisco, CA 94016" +222004,Wired Headphones,1,11.99,07/19/19 07:03,"85 Adams St, Dallas, TX 75001" +222005,Wired Headphones,1,11.99,07/07/19 03:37,"251 Johnson St, Atlanta, GA 30301" +222006,Bose SoundSport Headphones,1,99.99,07/22/19 15:37,"728 4th St, Seattle, WA 98101" +222007,Wired Headphones,1,11.99,07/02/19 15:31,"810 Sunset St, Portland, OR 97035" +222008,Flatscreen TV,1,300,07/06/19 22:13,"919 Walnut St, Austin, TX 73301" +222009,20in Monitor,1,109.99,07/15/19 18:48,"376 Chestnut St, Los Angeles, CA 90001" +222010,Google Phone,1,600,07/10/19 10:24,"433 Walnut St, New York City, NY 10001" +222011,Bose SoundSport Headphones,1,99.99,07/11/19 18:45,"178 Meadow St, Los Angeles, CA 90001" +222012,Wired Headphones,1,11.99,07/06/19 13:02,"461 12th St, Los Angeles, CA 90001" +222013,USB-C Charging Cable,1,11.95,07/30/19 01:51,"891 14th St, Boston, MA 02215" +222014,Bose SoundSport Headphones,1,99.99,07/04/19 20:02,"923 Center St, San Francisco, CA 94016" +222015,iPhone,1,700,07/08/19 10:48,"412 Meadow St, Los Angeles, CA 90001" +222016,iPhone,1,700,07/08/19 17:14,"792 Cherry St, New York City, NY 10001" +222016,Lightning Charging Cable,1,14.95,07/08/19 17:14,"792 Cherry St, New York City, NY 10001" +222017,USB-C Charging Cable,1,11.95,07/14/19 21:30,"25 8th St, San Francisco, CA 94016" +222018,Apple Airpods Headphones,1,150,07/23/19 14:01,"524 7th St, Los Angeles, CA 90001" +222019,Wired Headphones,1,11.99,07/03/19 20:08,"180 Elm St, New York City, NY 10001" +222020,AA Batteries (4-pack),1,3.84,07/14/19 20:07,"470 12th St, San Francisco, CA 94016" +222021,Apple Airpods Headphones,1,150,07/12/19 20:28,"18 14th St, San Francisco, CA 94016" +222022,Apple Airpods Headphones,1,150,07/30/19 12:37,"359 Center St, Portland, OR 97035" +222023,27in FHD Monitor,1,149.99,07/22/19 18:17,"28 Jefferson St, San Francisco, CA 94016" +222024,USB-C Charging Cable,1,11.95,07/15/19 22:51,"460 Center St, San Francisco, CA 94016" +222025,USB-C Charging Cable,1,11.95,07/21/19 00:40,"748 Adams St, San Francisco, CA 94016" +222026,USB-C Charging Cable,1,11.95,07/26/19 19:54,"40 10th St, San Francisco, CA 94016" +222027,Lightning Charging Cable,1,14.95,07/03/19 19:02,"4 Forest St, New York City, NY 10001" +222028,27in FHD Monitor,1,149.99,07/05/19 22:28,"162 9th St, New York City, NY 10001" +222029,USB-C Charging Cable,1,11.95,07/23/19 23:20,"886 Church St, Seattle, WA 98101" +222030,AAA Batteries (4-pack),1,2.99,07/06/19 05:48,"991 Dogwood St, San Francisco, CA 94016" +222031,ThinkPad Laptop,1,999.99,07/25/19 12:30,"575 8th St, Atlanta, GA 30301" +222031,Lightning Charging Cable,1,14.95,07/25/19 12:30,"575 8th St, Atlanta, GA 30301" +222032,Wired Headphones,1,11.99,07/16/19 21:44,"292 14th St, Boston, MA 02215" +222033,Lightning Charging Cable,1,14.95,07/23/19 19:29,"115 12th St, Los Angeles, CA 90001" +222034,USB-C Charging Cable,1,11.95,07/30/19 09:33,"487 Lakeview St, Los Angeles, CA 90001" +222035,Bose SoundSport Headphones,1,99.99,07/08/19 06:43,"473 Jackson St, San Francisco, CA 94016" +222036,Wired Headphones,1,11.99,07/26/19 17:59,"382 Maple St, Los Angeles, CA 90001" +222037,Lightning Charging Cable,1,14.95,07/11/19 17:15,"330 Lake St, New York City, NY 10001" +222038,Lightning Charging Cable,1,14.95,07/02/19 09:49,"483 4th St, Dallas, TX 75001" +222039,27in FHD Monitor,1,149.99,07/15/19 00:26,"577 1st St, San Francisco, CA 94016" +222040,27in FHD Monitor,1,149.99,07/11/19 20:28,"471 West St, Boston, MA 02215" +222041,Vareebadd Phone,1,400,07/05/19 11:59,"834 Wilson St, Seattle, WA 98101" +222042,AA Batteries (4-pack),1,3.84,07/04/19 22:08,"239 7th St, Seattle, WA 98101" +222043,Wired Headphones,1,11.99,07/29/19 14:56,"976 5th St, Seattle, WA 98101" +222044,Flatscreen TV,1,300,07/21/19 13:00,"603 Center St, Los Angeles, CA 90001" +222045,Apple Airpods Headphones,1,150,07/17/19 21:13,"933 11th St, San Francisco, CA 94016" +222046,Apple Airpods Headphones,1,150,07/01/19 17:27,"915 Main St, San Francisco, CA 94016" +222047,Wired Headphones,1,11.99,07/17/19 12:11,"593 5th St, Los Angeles, CA 90001" +222048,Google Phone,1,600,07/03/19 12:23,"516 Walnut St, New York City, NY 10001" +222049,Lightning Charging Cable,1,14.95,07/22/19 10:45,"401 10th St, Boston, MA 02215" +222050,iPhone,1,700,07/12/19 15:03,"425 West St, New York City, NY 10001" +222051,Bose SoundSport Headphones,1,99.99,07/27/19 21:12,"878 Jefferson St, Seattle, WA 98101" +222052,27in FHD Monitor,1,149.99,07/12/19 22:37,"562 Washington St, Portland, OR 97035" +222053,34in Ultrawide Monitor,1,379.99,07/23/19 21:00,"276 Chestnut St, Los Angeles, CA 90001" +222054,USB-C Charging Cable,1,11.95,07/02/19 19:23,"521 Forest St, Boston, MA 02215" +222055,34in Ultrawide Monitor,1,379.99,07/23/19 09:46,"316 11th St, Seattle, WA 98101" +222056,USB-C Charging Cable,1,11.95,07/26/19 23:40,"969 Park St, Atlanta, GA 30301" +222057,Google Phone,1,600,07/12/19 12:05,"428 13th St, New York City, NY 10001" +222058,Bose SoundSport Headphones,1,99.99,07/21/19 19:04,"425 Hill St, San Francisco, CA 94016" +222059,Lightning Charging Cable,1,14.95,07/22/19 08:50,"643 13th St, New York City, NY 10001" +222060,AAA Batteries (4-pack),1,2.99,07/15/19 17:14,"546 7th St, San Francisco, CA 94016" +222061,Google Phone,1,600,07/19/19 19:58,"840 1st St, Seattle, WA 98101" +222062,AAA Batteries (4-pack),1,2.99,07/08/19 09:40,"676 8th St, Los Angeles, CA 90001" +222063,Google Phone,1,600,07/23/19 19:32,"945 Hickory St, San Francisco, CA 94016" +222063,USB-C Charging Cable,2,11.95,07/23/19 19:32,"945 Hickory St, San Francisco, CA 94016" +222064,Apple Airpods Headphones,1,150,07/08/19 10:37,"323 10th St, San Francisco, CA 94016" +222065,Lightning Charging Cable,1,14.95,07/19/19 14:31,"817 Chestnut St, Los Angeles, CA 90001" +222066,34in Ultrawide Monitor,1,379.99,07/20/19 18:52,"674 Walnut St, Los Angeles, CA 90001" +222067,Flatscreen TV,1,300,07/21/19 14:47,"276 Madison St, San Francisco, CA 94016" +222068,AAA Batteries (4-pack),1,2.99,07/18/19 09:19,"57 2nd St, Portland, OR 97035" +222069,AAA Batteries (4-pack),1,2.99,07/05/19 08:22,"160 Ridge St, San Francisco, CA 94016" +222070,Lightning Charging Cable,1,14.95,07/13/19 00:40,"502 Meadow St, Los Angeles, CA 90001" +222071,USB-C Charging Cable,1,11.95,07/02/19 13:49,"882 West St, San Francisco, CA 94016" +222072,AA Batteries (4-pack),1,3.84,07/31/19 20:00,"186 Park St, San Francisco, CA 94016" +222073,20in Monitor,1,109.99,07/12/19 16:13,"241 Cherry St, San Francisco, CA 94016" +222073,AAA Batteries (4-pack),2,2.99,07/12/19 16:13,"241 Cherry St, San Francisco, CA 94016" +222074,Google Phone,1,600,07/06/19 18:12,"838 Johnson St, Los Angeles, CA 90001" +222075,27in FHD Monitor,1,149.99,07/10/19 00:41,"874 1st St, Austin, TX 73301" +222076,27in 4K Gaming Monitor,1,389.99,07/31/19 06:58,"153 South St, Dallas, TX 75001" +222077,USB-C Charging Cable,1,11.95,07/13/19 13:13,"25 1st St, San Francisco, CA 94016" +222078,Apple Airpods Headphones,1,150,07/19/19 15:51,"543 Wilson St, Portland, OR 97035" +222079,USB-C Charging Cable,1,11.95,07/16/19 12:14,"892 Madison St, Seattle, WA 98101" +222080,20in Monitor,1,109.99,07/10/19 21:38,"987 Maple St, Boston, MA 02215" +222081,Vareebadd Phone,1,400,07/04/19 11:50,"203 West St, San Francisco, CA 94016" +222081,AAA Batteries (4-pack),1,2.99,07/04/19 11:50,"203 West St, San Francisco, CA 94016" +222082,Apple Airpods Headphones,1,150,07/26/19 13:24,"515 Elm St, New York City, NY 10001" +222083,Apple Airpods Headphones,1,150,07/31/19 07:40,"196 Hickory St, San Francisco, CA 94016" +222084,Macbook Pro Laptop,1,1700,07/06/19 10:32,"208 Jackson St, Atlanta, GA 30301" +222085,Vareebadd Phone,1,400,07/26/19 12:12,"459 4th St, San Francisco, CA 94016" +222086,AA Batteries (4-pack),1,3.84,07/03/19 22:22,"115 12th St, San Francisco, CA 94016" +222087,Lightning Charging Cable,1,14.95,07/05/19 15:03,"826 Jefferson St, Los Angeles, CA 90001" +222088,Wired Headphones,1,11.99,07/02/19 17:15,"237 Lakeview St, Los Angeles, CA 90001" +222089,Wired Headphones,1,11.99,07/02/19 20:42,"193 Madison St, New York City, NY 10001" +222090,Lightning Charging Cable,1,14.95,07/12/19 13:28,"499 Sunset St, Los Angeles, CA 90001" +222091,27in FHD Monitor,1,149.99,07/09/19 19:17,"668 8th St, Portland, ME 04101" +222092,Macbook Pro Laptop,1,1700,07/08/19 17:55,"175 Center St, Seattle, WA 98101" +222093,Lightning Charging Cable,1,14.95,07/14/19 22:23,"950 Church St, Seattle, WA 98101" +222094,USB-C Charging Cable,2,11.95,07/03/19 20:19,"752 Madison St, Austin, TX 73301" +222095,AA Batteries (4-pack),1,3.84,07/29/19 16:10,"660 Washington St, San Francisco, CA 94016" +222096,Wired Headphones,1,11.99,07/13/19 09:12,"117 7th St, Dallas, TX 75001" +222097,AAA Batteries (4-pack),3,2.99,07/19/19 16:44,"529 13th St, Los Angeles, CA 90001" +222098,iPhone,1,700,07/02/19 20:18,"953 Jackson St, San Francisco, CA 94016" +222099,34in Ultrawide Monitor,1,379.99,07/23/19 15:13,"379 Hickory St, Boston, MA 02215" +222100,20in Monitor,1,109.99,07/08/19 06:38,"232 10th St, Los Angeles, CA 90001" +222101,USB-C Charging Cable,1,11.95,07/15/19 21:20,"236 Elm St, Boston, MA 02215" +222102,USB-C Charging Cable,1,11.95,07/01/19 23:38,"701 7th St, New York City, NY 10001" +222103,34in Ultrawide Monitor,1,379.99,07/20/19 13:36,"428 Wilson St, Portland, OR 97035" +222104,Apple Airpods Headphones,1,150,07/09/19 17:38,"736 Highland St, San Francisco, CA 94016" +222105,AAA Batteries (4-pack),1,2.99,07/05/19 20:41,"370 Cedar St, Los Angeles, CA 90001" +222106,Lightning Charging Cable,1,14.95,07/14/19 13:19,"641 Adams St, Austin, TX 73301" +222107,27in 4K Gaming Monitor,1,389.99,07/03/19 15:13,"214 Adams St, San Francisco, CA 94016" +222108,AAA Batteries (4-pack),1,2.99,07/23/19 19:29,"400 Adams St, Boston, MA 02215" +222109,Apple Airpods Headphones,1,150,07/19/19 21:07,"138 Church St, San Francisco, CA 94016" +222110,Bose SoundSport Headphones,1,99.99,07/23/19 12:37,"807 Madison St, Seattle, WA 98101" +222111,Wired Headphones,1,11.99,07/07/19 14:32,"487 Wilson St, San Francisco, CA 94016" +222112,Apple Airpods Headphones,1,150,07/21/19 17:33,"876 Lincoln St, Dallas, TX 75001" +222113,Lightning Charging Cable,1,14.95,07/13/19 23:33,"766 11th St, Los Angeles, CA 90001" +222114,Wired Headphones,1,11.99,07/24/19 10:03,"736 9th St, Portland, OR 97035" +222115,USB-C Charging Cable,1,11.95,07/31/19 21:19,"768 Sunset St, Atlanta, GA 30301" +222116,Google Phone,1,600,07/23/19 15:54,"7 Willow St, Atlanta, GA 30301" +222117,27in 4K Gaming Monitor,1,389.99,07/15/19 10:19,"160 Lake St, Seattle, WA 98101" +222118,34in Ultrawide Monitor,1,379.99,07/28/19 10:49,"952 Lincoln St, Atlanta, GA 30301" +222119,20in Monitor,1,109.99,07/15/19 17:11,"913 Cedar St, San Francisco, CA 94016" +222120,Apple Airpods Headphones,1,150,07/24/19 18:06,"464 Jefferson St, San Francisco, CA 94016" +222121,Lightning Charging Cable,1,14.95,08/01/19 00:00,"540 Dogwood St, Los Angeles, CA 90001" +222122,Macbook Pro Laptop,1,1700,07/08/19 21:38,"877 Washington St, Portland, ME 04101" +222123,Flatscreen TV,1,300,07/02/19 23:47,"956 Main St, Los Angeles, CA 90001" +222124,Apple Airpods Headphones,1,150,07/17/19 21:56,"244 Center St, Boston, MA 02215" +222125,27in FHD Monitor,1,149.99,07/27/19 12:11,"60 Walnut St, San Francisco, CA 94016" +222126,Flatscreen TV,1,300,07/23/19 10:38,"359 Wilson St, New York City, NY 10001" +222127,Vareebadd Phone,1,400,07/03/19 12:46,"215 Lake St, New York City, NY 10001" +222127,USB-C Charging Cable,2,11.95,07/03/19 12:46,"215 Lake St, New York City, NY 10001" +222128,USB-C Charging Cable,1,11.95,07/31/19 18:06,"469 7th St, Seattle, WA 98101" +222129,Bose SoundSport Headphones,1,99.99,07/09/19 14:39,"954 Spruce St, Seattle, WA 98101" +222130,AA Batteries (4-pack),2,3.84,07/13/19 14:09,"736 Washington St, Los Angeles, CA 90001" +222131,Lightning Charging Cable,1,14.95,07/22/19 10:14,"980 Park St, Dallas, TX 75001" +222132,Bose SoundSport Headphones,1,99.99,07/01/19 16:00,"478 Church St, Atlanta, GA 30301" +222133,USB-C Charging Cable,1,11.95,07/02/19 20:35,"638 Lake St, Boston, MA 02215" +222134,AAA Batteries (4-pack),2,2.99,07/25/19 14:24,"491 Sunset St, Portland, OR 97035" +222135,AAA Batteries (4-pack),1,2.99,07/05/19 01:47,"926 2nd St, San Francisco, CA 94016" +222136,AAA Batteries (4-pack),3,2.99,07/06/19 18:22,"880 Johnson St, San Francisco, CA 94016" +222137,Bose SoundSport Headphones,1,99.99,07/23/19 17:59,"629 6th St, Los Angeles, CA 90001" +222138,AA Batteries (4-pack),2,3.84,07/19/19 12:46,"422 14th St, Dallas, TX 75001" +222138,AA Batteries (4-pack),1,3.84,07/19/19 12:46,"422 14th St, Dallas, TX 75001" +222139,Google Phone,1,600,07/25/19 14:13,"881 7th St, Los Angeles, CA 90001" +222140,Google Phone,1,600,07/25/19 17:49,"659 Johnson St, San Francisco, CA 94016" +222140,USB-C Charging Cable,1,11.95,07/25/19 17:49,"659 Johnson St, San Francisco, CA 94016" +222141,USB-C Charging Cable,1,11.95,07/14/19 07:01,"449 4th St, Portland, ME 04101" +222142,AAA Batteries (4-pack),1,2.99,07/20/19 17:49,"623 Ridge St, Boston, MA 02215" +222143,Lightning Charging Cable,1,14.95,07/12/19 14:10,"328 West St, San Francisco, CA 94016" +222144,Flatscreen TV,1,300,07/13/19 11:34,"489 14th St, Dallas, TX 75001" +222145,27in 4K Gaming Monitor,1,389.99,07/27/19 16:21,"294 11th St, Dallas, TX 75001" +222146,Apple Airpods Headphones,1,150,07/14/19 15:57,"197 1st St, Atlanta, GA 30301" +222147,Bose SoundSport Headphones,1,99.99,07/25/19 08:53,"320 Walnut St, San Francisco, CA 94016" +222148,AAA Batteries (4-pack),1,2.99,07/02/19 00:40,"952 9th St, Dallas, TX 75001" +222149,Wired Headphones,1,11.99,07/19/19 11:02,"488 Jackson St, Boston, MA 02215" +222150,Lightning Charging Cable,1,14.95,07/26/19 08:06,"959 Spruce St, San Francisco, CA 94016" +222151,AAA Batteries (4-pack),4,2.99,07/12/19 20:14,"159 Church St, Seattle, WA 98101" +222152,27in 4K Gaming Monitor,1,389.99,07/14/19 08:52,"19 Ridge St, San Francisco, CA 94016" +222153,AAA Batteries (4-pack),2,2.99,07/03/19 10:46,"417 Park St, Portland, OR 97035" +222154,LG Washing Machine,1,600.0,07/11/19 17:29,"421 Wilson St, Dallas, TX 75001" +222155,USB-C Charging Cable,1,11.95,07/07/19 17:31,"119 Chestnut St, New York City, NY 10001" +222156,Bose SoundSport Headphones,1,99.99,07/28/19 17:58,"915 Jackson St, Boston, MA 02215" +222157,Apple Airpods Headphones,1,150,07/04/19 06:07,"633 Forest St, Boston, MA 02215" +222158,iPhone,1,700,07/19/19 22:45,"365 2nd St, Atlanta, GA 30301" +222158,Apple Airpods Headphones,1,150,07/19/19 22:45,"365 2nd St, Atlanta, GA 30301" +222159,Vareebadd Phone,1,400,07/01/19 18:18,"194 Dogwood St, New York City, NY 10001" +222159,USB-C Charging Cable,1,11.95,07/01/19 18:18,"194 Dogwood St, New York City, NY 10001" +222160,Bose SoundSport Headphones,1,99.99,07/20/19 07:52,"336 12th St, San Francisco, CA 94016" +222161,27in 4K Gaming Monitor,1,389.99,07/25/19 17:16,"987 12th St, Portland, ME 04101" +222162,Lightning Charging Cable,1,14.95,07/18/19 13:36,"627 Hickory St, San Francisco, CA 94016" +222163,Lightning Charging Cable,1,14.95,07/16/19 14:46,"661 1st St, Portland, OR 97035" +222164,USB-C Charging Cable,1,11.95,07/02/19 09:25,"386 Willow St, San Francisco, CA 94016" +222165,Lightning Charging Cable,1,14.95,07/30/19 21:05,"297 Cedar St, Seattle, WA 98101" +222166,20in Monitor,1,109.99,07/07/19 18:04,"501 Lincoln St, Atlanta, GA 30301" +222167,Bose SoundSport Headphones,1,99.99,07/31/19 19:39,"36 Cedar St, New York City, NY 10001" +222168,Wired Headphones,1,11.99,07/06/19 16:50,"592 8th St, Portland, ME 04101" +222169,Wired Headphones,1,11.99,07/23/19 13:04,"179 Jackson St, New York City, NY 10001" +222170,Lightning Charging Cable,1,14.95,07/10/19 22:15,"485 Elm St, Seattle, WA 98101" +222171,iPhone,1,700,07/12/19 17:56,"78 1st St, New York City, NY 10001" +222172,Bose SoundSport Headphones,1,99.99,07/17/19 20:09,"30 8th St, San Francisco, CA 94016" +222173,Lightning Charging Cable,1,14.95,07/19/19 20:16,"336 Jackson St, New York City, NY 10001" +222174,USB-C Charging Cable,1,11.95,07/15/19 19:26,"543 Park St, Boston, MA 02215" +222175,iPhone,1,700,07/05/19 10:28,"486 River St, San Francisco, CA 94016" +222176,Macbook Pro Laptop,1,1700,07/04/19 10:01,"618 River St, Portland, OR 97035" +222177,Lightning Charging Cable,1,14.95,07/11/19 18:11,"528 Jefferson St, San Francisco, CA 94016" +222178,Apple Airpods Headphones,1,150,07/01/19 23:36,"929 Dogwood St, Boston, MA 02215" +222179,USB-C Charging Cable,2,11.95,07/18/19 12:38,"300 Jefferson St, Austin, TX 73301" +222180,USB-C Charging Cable,1,11.95,07/01/19 11:52,"948 Church St, Dallas, TX 75001" +222181,USB-C Charging Cable,2,11.95,07/22/19 08:08,"638 Highland St, San Francisco, CA 94016" +222182,USB-C Charging Cable,1,11.95,07/16/19 20:47,"713 Sunset St, San Francisco, CA 94016" +222183,Google Phone,1,600,07/08/19 10:32,"64 12th St, Los Angeles, CA 90001" +222184,AA Batteries (4-pack),1,3.84,07/30/19 21:32,"911 4th St, Portland, OR 97035" +222185,AAA Batteries (4-pack),1,2.99,07/12/19 07:32,"929 Center St, New York City, NY 10001" +222186,34in Ultrawide Monitor,1,379.99,07/22/19 17:07,"617 5th St, Seattle, WA 98101" +222187,AA Batteries (4-pack),2,3.84,07/20/19 19:54,"502 2nd St, Boston, MA 02215" +222188,Apple Airpods Headphones,1,150,07/02/19 10:28,"267 13th St, Dallas, TX 75001" +222189,AAA Batteries (4-pack),1,2.99,07/17/19 14:10,"311 Walnut St, Austin, TX 73301" +222190,Lightning Charging Cable,1,14.95,07/12/19 19:45,"835 4th St, Dallas, TX 75001" +222191,AA Batteries (4-pack),3,3.84,07/08/19 20:47,"516 7th St, San Francisco, CA 94016" +222192,Wired Headphones,1,11.99,07/08/19 11:00,"882 Meadow St, Los Angeles, CA 90001" +222193,USB-C Charging Cable,1,11.95,07/09/19 07:33,"480 Jackson St, New York City, NY 10001" +222194,LG Washing Machine,1,600.0,07/06/19 13:16,"686 11th St, Boston, MA 02215" +222195,Flatscreen TV,1,300,07/08/19 23:05,"136 Walnut St, San Francisco, CA 94016" +222196,Apple Airpods Headphones,1,150,07/29/19 10:02,"190 Spruce St, Dallas, TX 75001" +222197,34in Ultrawide Monitor,1,379.99,07/02/19 19:59,"371 Lake St, San Francisco, CA 94016" +222198,Apple Airpods Headphones,1,150,07/05/19 08:58,"805 Cherry St, Los Angeles, CA 90001" +222199,Wired Headphones,1,11.99,07/19/19 15:53,"458 10th St, New York City, NY 10001" +222200,USB-C Charging Cable,1,11.95,07/18/19 13:04,"125 10th St, Dallas, TX 75001" +222201,AA Batteries (4-pack),1,3.84,07/11/19 21:30,"352 Maple St, Boston, MA 02215" +222202,AAA Batteries (4-pack),1,2.99,07/20/19 12:33,"668 9th St, San Francisco, CA 94016" +222203,Lightning Charging Cable,1,14.95,07/18/19 17:29,"7 River St, Austin, TX 73301" +222204,USB-C Charging Cable,1,11.95,07/04/19 17:33,"183 Washington St, Boston, MA 02215" +222205,AA Batteries (4-pack),2,3.84,07/03/19 14:53,"591 Johnson St, Atlanta, GA 30301" +222206,USB-C Charging Cable,2,11.95,07/04/19 00:18,"730 Cedar St, New York City, NY 10001" +222207,Wired Headphones,1,11.99,07/07/19 13:16,"897 12th St, Los Angeles, CA 90001" +222208,AAA Batteries (4-pack),2,2.99,07/18/19 14:06,"802 11th St, Atlanta, GA 30301" +222209,Vareebadd Phone,1,400,07/06/19 19:32,"588 7th St, San Francisco, CA 94016" +222210,34in Ultrawide Monitor,1,379.99,07/24/19 22:16,"593 7th St, San Francisco, CA 94016" +222211,Lightning Charging Cable,1,14.95,07/24/19 18:19,"923 12th St, San Francisco, CA 94016" +222212,Bose SoundSport Headphones,1,99.99,07/23/19 22:03,"139 South St, Atlanta, GA 30301" +222213,27in FHD Monitor,1,149.99,07/15/19 14:56,"401 Center St, Dallas, TX 75001" +222214,Wired Headphones,1,11.99,07/16/19 12:46,"282 Lake St, San Francisco, CA 94016" +222215,Lightning Charging Cable,1,14.95,07/18/19 00:54,"258 Walnut St, Austin, TX 73301" +222215,Google Phone,1,600,07/18/19 00:54,"258 Walnut St, Austin, TX 73301" +222216,AA Batteries (4-pack),1,3.84,07/02/19 21:21,"211 12th St, San Francisco, CA 94016" +222217,Bose SoundSport Headphones,1,99.99,07/03/19 14:18,"587 River St, San Francisco, CA 94016" +222218,34in Ultrawide Monitor,1,379.99,07/12/19 11:52,"139 Wilson St, Los Angeles, CA 90001" +222219,Apple Airpods Headphones,1,150,07/30/19 23:16,"125 Meadow St, Los Angeles, CA 90001" +222220,34in Ultrawide Monitor,1,379.99,07/09/19 15:00,"528 6th St, Seattle, WA 98101" +222221,AA Batteries (4-pack),1,3.84,07/28/19 10:07,"393 Maple St, Atlanta, GA 30301" +222222,AAA Batteries (4-pack),1,2.99,07/16/19 00:06,"644 Chestnut St, Atlanta, GA 30301" +222223,Bose SoundSport Headphones,1,99.99,07/07/19 10:15,"651 Maple St, San Francisco, CA 94016" +222224,Lightning Charging Cable,1,14.95,07/28/19 08:07,"818 Hickory St, Boston, MA 02215" +222225,Wired Headphones,1,11.99,07/30/19 23:15,"356 8th St, Boston, MA 02215" +222226,Apple Airpods Headphones,1,150,07/04/19 10:46,"30 6th St, Dallas, TX 75001" +222227,AA Batteries (4-pack),1,3.84,07/27/19 07:51,"502 Madison St, Boston, MA 02215" +222228,iPhone,1,700,07/15/19 07:35,"346 14th St, New York City, NY 10001" +222229,AAA Batteries (4-pack),1,2.99,07/02/19 10:11,"430 Wilson St, New York City, NY 10001" +222230,LG Dryer,1,600.0,07/29/19 09:32,"260 9th St, Los Angeles, CA 90001" +222231,Apple Airpods Headphones,1,150,07/05/19 19:16,"835 Washington St, Dallas, TX 75001" +222232,AAA Batteries (4-pack),3,2.99,07/12/19 22:18,"904 Spruce St, New York City, NY 10001" +222233,iPhone,1,700,07/18/19 16:48,"693 West St, Portland, OR 97035" +222233,Lightning Charging Cable,1,14.95,07/18/19 16:48,"693 West St, Portland, OR 97035" +222234,USB-C Charging Cable,1,11.95,07/04/19 17:22,"624 Jackson St, Dallas, TX 75001" +222235,Flatscreen TV,1,300,07/15/19 14:09,"966 1st St, Los Angeles, CA 90001" +222236,Lightning Charging Cable,2,14.95,07/01/19 16:28,"665 Dogwood St, Dallas, TX 75001" +222237,AAA Batteries (4-pack),2,2.99,07/03/19 07:34,"53 Sunset St, Los Angeles, CA 90001" +222238,27in FHD Monitor,1,149.99,07/22/19 18:57,"569 Walnut St, Los Angeles, CA 90001" +222239,Wired Headphones,1,11.99,07/12/19 18:47,"360 Wilson St, Los Angeles, CA 90001" +222240,AAA Batteries (4-pack),2,2.99,07/19/19 23:44,"775 Forest St, San Francisco, CA 94016" +222241,Lightning Charging Cable,1,14.95,07/14/19 01:55,"389 Church St, Los Angeles, CA 90001" +222242,iPhone,1,700,07/27/19 12:49,"362 Washington St, San Francisco, CA 94016" +222243,Apple Airpods Headphones,1,150,07/05/19 17:19,"818 Adams St, Boston, MA 02215" +222244,Lightning Charging Cable,1,14.95,07/14/19 15:05,"109 12th St, Los Angeles, CA 90001" +222245,Apple Airpods Headphones,1,150,07/25/19 06:46,"875 Church St, San Francisco, CA 94016" +222246,AAA Batteries (4-pack),1,2.99,07/15/19 15:33,"225 Pine St, Los Angeles, CA 90001" +222247,Apple Airpods Headphones,1,150,07/30/19 16:40,"729 Spruce St, New York City, NY 10001" +222248,Lightning Charging Cable,1,14.95,07/14/19 11:27,"904 2nd St, Dallas, TX 75001" +222249,AA Batteries (4-pack),1,3.84,07/07/19 07:55,"513 Park St, Los Angeles, CA 90001" +222250,AA Batteries (4-pack),1,3.84,07/18/19 20:07,"838 Willow St, New York City, NY 10001" +222251,iPhone,1,700,07/19/19 00:06,"229 Wilson St, San Francisco, CA 94016" +222252,Bose SoundSport Headphones,1,99.99,07/15/19 05:48,"924 8th St, New York City, NY 10001" +222253,Google Phone,1,600,07/27/19 20:41,"772 Center St, Boston, MA 02215" +222254,Wired Headphones,1,11.99,07/11/19 15:19,"864 Hickory St, Boston, MA 02215" +222255,34in Ultrawide Monitor,1,379.99,07/09/19 09:19,"510 12th St, Boston, MA 02215" +222256,Macbook Pro Laptop,1,1700,07/18/19 18:28,"776 River St, San Francisco, CA 94016" +222257,LG Dryer,1,600.0,07/18/19 12:30,"906 Highland St, Los Angeles, CA 90001" +222258,27in FHD Monitor,1,149.99,07/23/19 21:48,"786 Sunset St, Dallas, TX 75001" +222259,Apple Airpods Headphones,1,150,07/05/19 20:06,"555 Church St, Los Angeles, CA 90001" +222260,Bose SoundSport Headphones,2,99.99,07/02/19 05:09,"938 Dogwood St, San Francisco, CA 94016" +222261,20in Monitor,1,109.99,07/17/19 19:36,"305 Hill St, Los Angeles, CA 90001" +222262,Bose SoundSport Headphones,1,99.99,07/03/19 11:53,"272 Church St, New York City, NY 10001" +222263,27in FHD Monitor,1,149.99,07/11/19 21:51,"898 1st St, Boston, MA 02215" +222264,AAA Batteries (4-pack),1,2.99,07/13/19 09:59,"362 North St, Atlanta, GA 30301" +222265,27in FHD Monitor,1,149.99,07/04/19 18:24,"106 Elm St, Portland, OR 97035" +222266,Wired Headphones,1,11.99,07/04/19 16:37,"293 6th St, Los Angeles, CA 90001" +222267,AAA Batteries (4-pack),1,2.99,07/17/19 00:15,"974 Meadow St, Boston, MA 02215" +222268,Macbook Pro Laptop,1,1700,07/09/19 11:18,"334 Maple St, San Francisco, CA 94016" +222269,27in FHD Monitor,1,149.99,07/27/19 15:09,"833 Johnson St, Los Angeles, CA 90001" +222270,Wired Headphones,1,11.99,07/22/19 18:07,"511 Chestnut St, San Francisco, CA 94016" +222271,Wired Headphones,1,11.99,07/20/19 10:54,"76 Meadow St, New York City, NY 10001" +222271,AA Batteries (4-pack),2,3.84,07/20/19 10:54,"76 Meadow St, New York City, NY 10001" +222272,Wired Headphones,1,11.99,07/20/19 19:03,"735 Lincoln St, Boston, MA 02215" +222273,Bose SoundSport Headphones,1,99.99,07/24/19 03:36,"29 Meadow St, Los Angeles, CA 90001" +222274,USB-C Charging Cable,1,11.95,07/21/19 16:20,"341 7th St, Atlanta, GA 30301" +222275,Apple Airpods Headphones,1,150,07/19/19 03:24,"988 6th St, Seattle, WA 98101" +222276,Lightning Charging Cable,1,14.95,07/25/19 10:48,"367 Lake St, Boston, MA 02215" +222277,AAA Batteries (4-pack),2,2.99,07/26/19 16:14,"453 Park St, New York City, NY 10001" +222278,Apple Airpods Headphones,1,150,07/26/19 17:31,"25 Forest St, San Francisco, CA 94016" +222279,Bose SoundSport Headphones,1,99.99,07/09/19 14:48,"280 4th St, Seattle, WA 98101" +222280,AAA Batteries (4-pack),1,2.99,07/28/19 11:35,"767 Hill St, Seattle, WA 98101" +222281,Apple Airpods Headphones,1,150,07/24/19 16:49,"78 River St, New York City, NY 10001" +222282,27in FHD Monitor,1,149.99,07/08/19 17:38,"624 Adams St, Boston, MA 02215" +222283,USB-C Charging Cable,1,11.95,07/29/19 14:40,"429 Spruce St, Los Angeles, CA 90001" +222284,ThinkPad Laptop,1,999.99,07/10/19 12:29,"176 Washington St, San Francisco, CA 94016" +222285,34in Ultrawide Monitor,1,379.99,07/17/19 16:23,"79 West St, Los Angeles, CA 90001" +222286,34in Ultrawide Monitor,1,379.99,07/25/19 14:45,"995 10th St, Los Angeles, CA 90001" +222287,AAA Batteries (4-pack),4,2.99,07/25/19 14:25,"784 Meadow St, Atlanta, GA 30301" +222288,Apple Airpods Headphones,1,150,07/17/19 16:04,"14 Lincoln St, San Francisco, CA 94016" +222289,Wired Headphones,1,11.99,07/22/19 12:00,"614 Madison St, New York City, NY 10001" +222290,Apple Airpods Headphones,1,150,07/01/19 10:40,"266 South St, Los Angeles, CA 90001" +222291,USB-C Charging Cable,2,11.95,07/26/19 14:39,"364 Sunset St, San Francisco, CA 94016" +222292,Lightning Charging Cable,1,14.95,07/30/19 12:57,"5 13th St, Portland, OR 97035" +222293,Wired Headphones,1,11.99,07/27/19 07:46,"846 14th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +222294,USB-C Charging Cable,1,11.95,07/28/19 14:00,"322 Walnut St, New York City, NY 10001" +222295,Macbook Pro Laptop,1,1700,07/24/19 13:33,"602 Dogwood St, San Francisco, CA 94016" +222296,AA Batteries (4-pack),1,3.84,07/31/19 12:15,"289 Johnson St, San Francisco, CA 94016" +222297,AA Batteries (4-pack),2,3.84,07/27/19 13:53,"609 8th St, Los Angeles, CA 90001" +222298,AAA Batteries (4-pack),4,2.99,07/24/19 13:34,"311 12th St, Portland, OR 97035" +222299,AAA Batteries (4-pack),3,2.99,07/05/19 12:25,"554 Elm St, San Francisco, CA 94016" +222300,AA Batteries (4-pack),1,3.84,07/09/19 14:04,"607 Johnson St, Seattle, WA 98101" +222301,Bose SoundSport Headphones,1,99.99,07/18/19 19:20,"373 South St, New York City, NY 10001" +222302,Wired Headphones,1,11.99,07/26/19 20:41,"646 Elm St, Seattle, WA 98101" +222303,Wired Headphones,1,11.99,07/27/19 22:08,"954 South St, Portland, OR 97035" +222304,Vareebadd Phone,1,400,07/15/19 00:30,"169 5th St, Dallas, TX 75001" +222305,Lightning Charging Cable,1,14.95,07/20/19 09:53,"303 Cedar St, New York City, NY 10001" +222306,Apple Airpods Headphones,1,150,07/09/19 17:16,"318 River St, Los Angeles, CA 90001" +222307,AAA Batteries (4-pack),2,2.99,07/25/19 19:04,"300 Hickory St, New York City, NY 10001" +222308,USB-C Charging Cable,1,11.95,07/19/19 06:12,"528 Jackson St, San Francisco, CA 94016" +222309,AAA Batteries (4-pack),1,2.99,07/09/19 12:15,"504 Johnson St, Atlanta, GA 30301" +222310,AAA Batteries (4-pack),1,2.99,07/15/19 20:55,"922 Walnut St, San Francisco, CA 94016" +222311,Apple Airpods Headphones,1,150,07/15/19 12:46,"386 13th St, San Francisco, CA 94016" +222312,Bose SoundSport Headphones,1,99.99,07/16/19 17:21,"299 Washington St, Los Angeles, CA 90001" +222313,27in FHD Monitor,1,149.99,07/15/19 00:07,"731 Highland St, New York City, NY 10001" +222314,iPhone,1,700,07/22/19 10:04,"745 Pine St, San Francisco, CA 94016" +222315,Apple Airpods Headphones,1,150,07/08/19 15:41,"147 Adams St, Portland, OR 97035" +222316,AAA Batteries (4-pack),1,2.99,07/25/19 20:35,"69 Washington St, Austin, TX 73301" +222317,Google Phone,1,600,07/02/19 09:13,"133 Willow St, Los Angeles, CA 90001" +222317,USB-C Charging Cable,1,11.95,07/02/19 09:13,"133 Willow St, Los Angeles, CA 90001" +222317,Wired Headphones,1,11.99,07/02/19 09:13,"133 Willow St, Los Angeles, CA 90001" +222318,AA Batteries (4-pack),3,3.84,07/07/19 22:35,"269 Washington St, Seattle, WA 98101" +222319,27in FHD Monitor,1,149.99,07/22/19 11:50,"707 Madison St, San Francisco, CA 94016" +222320,Apple Airpods Headphones,1,150,07/30/19 00:17,"873 North St, San Francisco, CA 94016" +222321,USB-C Charging Cable,2,11.95,07/24/19 16:22,"890 8th St, San Francisco, CA 94016" +222322,AA Batteries (4-pack),1,3.84,07/18/19 14:30,"396 4th St, Seattle, WA 98101" +222323,Wired Headphones,1,11.99,07/22/19 16:26,"868 Meadow St, San Francisco, CA 94016" +222324,Wired Headphones,1,11.99,07/12/19 11:54,"668 7th St, Austin, TX 73301" +222325,AAA Batteries (4-pack),2,2.99,07/29/19 19:55,"252 7th St, Austin, TX 73301" +222326,USB-C Charging Cable,1,11.95,07/21/19 11:16,"982 Willow St, San Francisco, CA 94016" +222327,Macbook Pro Laptop,1,1700,07/22/19 20:41,"59 Meadow St, New York City, NY 10001" +222328,Wired Headphones,1,11.99,07/30/19 20:45,"419 Meadow St, Los Angeles, CA 90001" +222329,Apple Airpods Headphones,1,150,07/11/19 13:48,"615 5th St, San Francisco, CA 94016" +222330,AAA Batteries (4-pack),1,2.99,07/12/19 20:25,"867 1st St, Seattle, WA 98101" +222331,AAA Batteries (4-pack),1,2.99,07/08/19 12:26,"475 Jefferson St, Los Angeles, CA 90001" +222332,USB-C Charging Cable,1,11.95,07/25/19 13:39,"224 Madison St, Los Angeles, CA 90001" +222333,Flatscreen TV,1,300,07/14/19 10:38,"389 Johnson St, Portland, ME 04101" +222334,USB-C Charging Cable,1,11.95,07/24/19 20:14,"312 Hickory St, Los Angeles, CA 90001" +222335,AA Batteries (4-pack),2,3.84,07/08/19 20:59,"702 13th St, Los Angeles, CA 90001" +222336,AA Batteries (4-pack),1,3.84,07/13/19 12:04,"220 10th St, San Francisco, CA 94016" +222337,Lightning Charging Cable,1,14.95,07/29/19 15:51,"9 14th St, Seattle, WA 98101" +222338,Macbook Pro Laptop,1,1700,07/26/19 23:33,"769 4th St, Portland, OR 97035" +222339,Lightning Charging Cable,1,14.95,07/04/19 19:35,"985 Hickory St, Los Angeles, CA 90001" +222340,AA Batteries (4-pack),1,3.84,07/04/19 14:24,"101 8th St, Austin, TX 73301" +222341,USB-C Charging Cable,1,11.95,07/11/19 11:04,"4 Sunset St, Los Angeles, CA 90001" +222342,Bose SoundSport Headphones,1,99.99,07/02/19 12:31,"772 9th St, New York City, NY 10001" +222343,27in FHD Monitor,1,149.99,07/15/19 19:23,"541 5th St, Los Angeles, CA 90001" +222344,iPhone,1,700,07/05/19 16:46,"472 Lincoln St, Boston, MA 02215" +222345,USB-C Charging Cable,1,11.95,07/15/19 19:33,"76 Highland St, Austin, TX 73301" +222346,20in Monitor,1,109.99,07/20/19 10:27,"986 2nd St, San Francisco, CA 94016" +222347,Wired Headphones,1,11.99,07/21/19 11:22,"398 Elm St, San Francisco, CA 94016" +222348,USB-C Charging Cable,1,11.95,07/05/19 12:51,"459 Pine St, San Francisco, CA 94016" +222349,27in FHD Monitor,1,149.99,07/10/19 13:03,"129 Lakeview St, Dallas, TX 75001" +222350,AAA Batteries (4-pack),2,2.99,07/29/19 18:09,"367 Adams St, Los Angeles, CA 90001" +222351,AA Batteries (4-pack),1,3.84,07/27/19 22:58,"535 River St, Los Angeles, CA 90001" +222352,Apple Airpods Headphones,1,150,07/19/19 12:04,"49 River St, San Francisco, CA 94016" +222353,AAA Batteries (4-pack),1,2.99,07/16/19 21:54,"183 10th St, Dallas, TX 75001" +222354,USB-C Charging Cable,1,11.95,07/15/19 13:03,"338 Sunset St, New York City, NY 10001" +222355,USB-C Charging Cable,1,11.95,07/30/19 22:26,"652 2nd St, New York City, NY 10001" +222356,27in 4K Gaming Monitor,1,389.99,07/03/19 14:43,"217 Sunset St, Seattle, WA 98101" +222357,USB-C Charging Cable,1,11.95,07/21/19 16:12,"534 Sunset St, Austin, TX 73301" +222358,Macbook Pro Laptop,1,1700,07/01/19 17:51,"494 7th St, New York City, NY 10001" +222358,Wired Headphones,1,11.99,07/01/19 17:51,"494 7th St, New York City, NY 10001" +222359,iPhone,1,700,07/05/19 20:17,"998 Elm St, New York City, NY 10001" +222360,AA Batteries (4-pack),2,3.84,07/10/19 18:17,"554 South St, New York City, NY 10001" +222361,AAA Batteries (4-pack),1,2.99,07/23/19 14:03,"45 Cherry St, Dallas, TX 75001" +222362,Apple Airpods Headphones,1,150,07/28/19 12:22,"246 Lincoln St, San Francisco, CA 94016" +222363,Lightning Charging Cable,1,14.95,07/29/19 10:23,"63 South St, New York City, NY 10001" +222364,USB-C Charging Cable,1,11.95,07/16/19 20:32,"584 Jackson St, Boston, MA 02215" +222365,Lightning Charging Cable,1,14.95,07/24/19 15:09,"25 Jackson St, Los Angeles, CA 90001" +222366,Lightning Charging Cable,3,14.95,07/08/19 21:20,"810 Cherry St, San Francisco, CA 94016" +,,,,, +222367,iPhone,1,700,07/12/19 19:17,"486 Highland St, New York City, NY 10001" +222368,AAA Batteries (4-pack),1,2.99,07/04/19 17:52,"911 Jefferson St, San Francisco, CA 94016" +222369,AA Batteries (4-pack),1,3.84,07/18/19 09:47,"407 Ridge St, Dallas, TX 75001" +222370,AA Batteries (4-pack),1,3.84,07/20/19 19:56,"850 Maple St, New York City, NY 10001" +222371,Apple Airpods Headphones,1,150,07/08/19 10:04,"235 Church St, Dallas, TX 75001" +222372,34in Ultrawide Monitor,1,379.99,07/01/19 13:44,"397 Willow St, Atlanta, GA 30301" +222373,27in 4K Gaming Monitor,1,389.99,07/20/19 09:51,"167 Highland St, Portland, OR 97035" +222374,USB-C Charging Cable,1,11.95,07/05/19 14:16,"467 Chestnut St, San Francisco, CA 94016" +222375,USB-C Charging Cable,1,11.95,07/01/19 10:44,"815 Sunset St, San Francisco, CA 94016" +222376,Bose SoundSport Headphones,1,99.99,07/28/19 08:49,"117 Walnut St, San Francisco, CA 94016" +222377,20in Monitor,1,109.99,07/18/19 11:23,"89 Cedar St, Seattle, WA 98101" +222378,AAA Batteries (4-pack),1,2.99,07/10/19 17:21,"718 Johnson St, Dallas, TX 75001" +222379,USB-C Charging Cable,1,11.95,07/19/19 19:13,"20 Maple St, Boston, MA 02215" +222380,AA Batteries (4-pack),1,3.84,07/26/19 19:39,"904 Sunset St, New York City, NY 10001" +222381,AAA Batteries (4-pack),2,2.99,07/18/19 08:56,"835 Chestnut St, Los Angeles, CA 90001" +222382,Flatscreen TV,1,300,07/19/19 21:25,"961 Hickory St, Boston, MA 02215" +222383,USB-C Charging Cable,1,11.95,07/04/19 13:29,"152 Dogwood St, Dallas, TX 75001" +222384,Apple Airpods Headphones,1,150,07/18/19 18:13,"380 Washington St, Portland, OR 97035" +222385,20in Monitor,1,109.99,07/17/19 19:38,"798 Chestnut St, Dallas, TX 75001" +222386,27in 4K Gaming Monitor,1,389.99,07/15/19 10:08,"727 North St, Dallas, TX 75001" +222387,USB-C Charging Cable,1,11.95,07/26/19 15:37,"760 8th St, Los Angeles, CA 90001" +222388,USB-C Charging Cable,1,11.95,07/09/19 22:01,"754 Washington St, San Francisco, CA 94016" +222389,Wired Headphones,1,11.99,07/04/19 10:35,"999 2nd St, Boston, MA 02215" +222390,iPhone,1,700,07/07/19 17:01,"10 Chestnut St, Boston, MA 02215" +222391,Flatscreen TV,1,300,07/17/19 13:17,"888 Dogwood St, New York City, NY 10001" +222392,Wired Headphones,1,11.99,07/23/19 15:11,"177 4th St, Dallas, TX 75001" +222393,AAA Batteries (4-pack),1,2.99,07/30/19 20:00,"370 Maple St, San Francisco, CA 94016" +222394,ThinkPad Laptop,1,999.99,07/22/19 11:50,"299 South St, Los Angeles, CA 90001" +222395,Lightning Charging Cable,1,14.95,07/03/19 17:17,"513 Cedar St, Boston, MA 02215" +222396,Bose SoundSport Headphones,1,99.99,07/28/19 12:11,"174 Adams St, Portland, ME 04101" +222397,AAA Batteries (4-pack),1,2.99,07/01/19 08:47,"931 Jefferson St, San Francisco, CA 94016" +222398,LG Dryer,1,600.0,07/22/19 16:16,"336 Adams St, Atlanta, GA 30301" +222399,27in FHD Monitor,1,149.99,07/16/19 14:38,"336 Lake St, Dallas, TX 75001" +222400,Flatscreen TV,1,300,07/27/19 16:39,"7 Meadow St, San Francisco, CA 94016" +222401,AA Batteries (4-pack),2,3.84,07/04/19 00:21,"956 Johnson St, San Francisco, CA 94016" +222402,Flatscreen TV,1,300,07/25/19 08:21,"42 Cherry St, Boston, MA 02215" +222403,AAA Batteries (4-pack),2,2.99,07/16/19 20:11,"774 Main St, New York City, NY 10001" +222404,Lightning Charging Cable,1,14.95,07/13/19 21:06,"133 Chestnut St, Seattle, WA 98101" +222405,USB-C Charging Cable,1,11.95,07/28/19 14:09,"36 Forest St, San Francisco, CA 94016" +222406,AAA Batteries (4-pack),4,2.99,07/29/19 11:37,"392 7th St, Los Angeles, CA 90001" +222407,Lightning Charging Cable,1,14.95,07/05/19 09:47,"662 Chestnut St, Portland, OR 97035" +222408,AAA Batteries (4-pack),1,2.99,07/29/19 07:42,"707 2nd St, New York City, NY 10001" +222409,27in 4K Gaming Monitor,1,389.99,07/30/19 16:33,"762 Park St, San Francisco, CA 94016" +222410,USB-C Charging Cable,1,11.95,07/03/19 04:42,"563 North St, New York City, NY 10001" +222411,Lightning Charging Cable,1,14.95,07/14/19 21:42,"335 14th St, San Francisco, CA 94016" +222412,Lightning Charging Cable,1,14.95,07/18/19 08:23,"9 Park St, Boston, MA 02215" +222413,Wired Headphones,2,11.99,07/06/19 03:42,"380 6th St, San Francisco, CA 94016" +222414,USB-C Charging Cable,2,11.95,07/22/19 19:42,"809 Main St, Atlanta, GA 30301" +222415,iPhone,1,700,07/09/19 15:27,"61 4th St, San Francisco, CA 94016" +222416,Macbook Pro Laptop,1,1700,07/28/19 08:15,"560 Meadow St, Los Angeles, CA 90001" +222417,Wired Headphones,1,11.99,07/14/19 20:12,"49 Lake St, Boston, MA 02215" +222418,USB-C Charging Cable,1,11.95,07/09/19 11:47,"480 13th St, Atlanta, GA 30301" +222419,27in 4K Gaming Monitor,1,389.99,07/26/19 13:12,"938 Lincoln St, New York City, NY 10001" +222420,Macbook Pro Laptop,1,1700,07/26/19 13:22,"642 Ridge St, San Francisco, CA 94016" +222421,AA Batteries (4-pack),2,3.84,07/21/19 12:53,"678 River St, Portland, OR 97035" +222422,AA Batteries (4-pack),1,3.84,07/17/19 10:26,"111 5th St, New York City, NY 10001" +222423,Bose SoundSport Headphones,1,99.99,07/04/19 15:13,"150 Ridge St, Portland, OR 97035" +222424,USB-C Charging Cable,1,11.95,07/03/19 23:53,"674 7th St, San Francisco, CA 94016" +222425,Apple Airpods Headphones,1,150,07/08/19 11:15,"946 Park St, Los Angeles, CA 90001" +222426,Google Phone,1,600,07/12/19 12:56,"320 Wilson St, Los Angeles, CA 90001" +222427,Bose SoundSport Headphones,1,99.99,07/11/19 15:39,"734 2nd St, San Francisco, CA 94016" +222428,Lightning Charging Cable,1,14.95,07/24/19 08:32,"66 1st St, Dallas, TX 75001" +222429,AA Batteries (4-pack),2,3.84,07/08/19 15:04,"678 13th St, San Francisco, CA 94016" +222430,AAA Batteries (4-pack),4,2.99,07/12/19 11:38,"135 Park St, San Francisco, CA 94016" +222431,USB-C Charging Cable,1,11.95,07/20/19 13:19,"955 4th St, San Francisco, CA 94016" +222432,USB-C Charging Cable,1,11.95,07/13/19 18:16,"2 14th St, New York City, NY 10001" +222433,Lightning Charging Cable,1,14.95,07/18/19 13:57,"530 Hill St, Portland, OR 97035" +222434,iPhone,1,700,07/28/19 09:40,"655 Lakeview St, Dallas, TX 75001" +222435,Bose SoundSport Headphones,1,99.99,07/11/19 07:53,"719 Walnut St, Atlanta, GA 30301" +222436,iPhone,1,700,07/17/19 21:17,"500 10th St, Seattle, WA 98101" +222436,Apple Airpods Headphones,1,150,07/17/19 21:17,"500 10th St, Seattle, WA 98101" +222437,USB-C Charging Cable,2,11.95,07/20/19 11:36,"111 Forest St, Boston, MA 02215" +222438,AAA Batteries (4-pack),1,2.99,07/05/19 20:17,"511 Hickory St, Boston, MA 02215" +222439,Wired Headphones,1,11.99,07/10/19 07:31,"772 7th St, New York City, NY 10001" +222440,Lightning Charging Cable,1,14.95,07/20/19 11:36,"137 Johnson St, San Francisco, CA 94016" +222441,27in FHD Monitor,1,149.99,07/23/19 15:27,"662 9th St, Boston, MA 02215" +222442,AAA Batteries (4-pack),3,2.99,07/10/19 16:10,"306 Willow St, San Francisco, CA 94016" +222443,Lightning Charging Cable,1,14.95,07/20/19 18:04,"403 4th St, Boston, MA 02215" +222444,AAA Batteries (4-pack),1,2.99,07/16/19 21:21,"556 Jackson St, San Francisco, CA 94016" +222445,USB-C Charging Cable,1,11.95,07/11/19 11:16,"983 Church St, Dallas, TX 75001" +222446,ThinkPad Laptop,1,999.99,07/01/19 13:38,"733 Cedar St, New York City, NY 10001" +222447,iPhone,1,700,07/16/19 15:25,"413 Lincoln St, Dallas, TX 75001" +222447,Lightning Charging Cable,1,14.95,07/16/19 15:25,"413 Lincoln St, Dallas, TX 75001" +222448,AA Batteries (4-pack),2,3.84,07/24/19 21:11,"575 4th St, Austin, TX 73301" +222449,Apple Airpods Headphones,1,150,07/30/19 12:18,"173 River St, Seattle, WA 98101" +222450,AAA Batteries (4-pack),1,2.99,07/14/19 17:38,"706 Wilson St, Dallas, TX 75001" +222451,27in FHD Monitor,1,149.99,07/28/19 11:14,"733 Church St, New York City, NY 10001" +222452,Macbook Pro Laptop,1,1700,07/07/19 17:12,"450 Hickory St, Dallas, TX 75001" +222453,AA Batteries (4-pack),1,3.84,07/25/19 09:08,"811 Spruce St, San Francisco, CA 94016" +222454,27in FHD Monitor,1,149.99,07/02/19 22:05,"585 Jefferson St, Austin, TX 73301" +222455,Apple Airpods Headphones,1,150,07/30/19 12:30,"848 South St, Seattle, WA 98101" +222456,Lightning Charging Cable,1,14.95,07/19/19 10:57,"598 5th St, Boston, MA 02215" +222457,27in 4K Gaming Monitor,1,389.99,07/14/19 17:36,"16 Wilson St, New York City, NY 10001" +222458,USB-C Charging Cable,1,11.95,07/20/19 20:14,"42 Center St, San Francisco, CA 94016" +222459,27in FHD Monitor,1,149.99,07/27/19 16:17,"763 Pine St, San Francisco, CA 94016" +222460,Flatscreen TV,1,300,07/19/19 01:30,"704 South St, Boston, MA 02215" +222461,Lightning Charging Cable,1,14.95,07/06/19 11:39,"43 Jackson St, Atlanta, GA 30301" +222462,USB-C Charging Cable,1,11.95,07/29/19 11:25,"769 Washington St, Los Angeles, CA 90001" +222463,AAA Batteries (4-pack),1,2.99,07/28/19 18:00,"738 Park St, New York City, NY 10001" +222464,Wired Headphones,1,11.99,07/20/19 15:36,"767 Willow St, New York City, NY 10001" +222465,Apple Airpods Headphones,2,150,07/22/19 10:18,"459 Pine St, New York City, NY 10001" +222466,Lightning Charging Cable,1,14.95,07/28/19 16:45,"154 Ridge St, Boston, MA 02215" +222467,USB-C Charging Cable,1,11.95,07/28/19 21:02,"930 9th St, Dallas, TX 75001" +222468,Apple Airpods Headphones,1,150,07/21/19 09:33,"386 14th St, San Francisco, CA 94016" +222469,iPhone,1,700,07/25/19 09:09,"961 6th St, Austin, TX 73301" +222469,Apple Airpods Headphones,1,150,07/25/19 09:09,"961 6th St, Austin, TX 73301" +222470,Wired Headphones,1,11.99,07/22/19 14:27,"424 11th St, Dallas, TX 75001" +222471,AA Batteries (4-pack),2,3.84,07/25/19 22:28,"780 Jefferson St, Austin, TX 73301" +222472,27in FHD Monitor,1,149.99,07/09/19 18:30,"650 River St, Los Angeles, CA 90001" +222473,AA Batteries (4-pack),1,3.84,07/13/19 10:15,"721 Lincoln St, Austin, TX 73301" +222474,USB-C Charging Cable,1,11.95,07/13/19 22:04,"669 Walnut St, Boston, MA 02215" +222475,AA Batteries (4-pack),1,3.84,07/15/19 10:49,"762 Lakeview St, Boston, MA 02215" +222476,Wired Headphones,1,11.99,07/01/19 12:42,"277 Chestnut St, Portland, OR 97035" +222477,Lightning Charging Cable,1,14.95,07/31/19 07:07,"757 Lake St, San Francisco, CA 94016" +222478,Bose SoundSport Headphones,1,99.99,07/26/19 18:39,"39 Main St, Seattle, WA 98101" +222479,AAA Batteries (4-pack),1,2.99,07/26/19 22:13,"57 Jackson St, Los Angeles, CA 90001" +222480,ThinkPad Laptop,1,999.99,07/08/19 20:45,"810 Jackson St, San Francisco, CA 94016" +222481,AAA Batteries (4-pack),2,2.99,07/09/19 07:56,"444 Hickory St, Atlanta, GA 30301" +222482,Lightning Charging Cable,1,14.95,07/10/19 12:41,"257 Lake St, Austin, TX 73301" +222483,Bose SoundSport Headphones,1,99.99,07/07/19 12:19,"389 Madison St, Los Angeles, CA 90001" +222484,AA Batteries (4-pack),1,3.84,07/03/19 10:12,"658 Lakeview St, New York City, NY 10001" +222485,Wired Headphones,1,11.99,07/24/19 15:05,"814 Jefferson St, Dallas, TX 75001" +222486,Google Phone,1,600,07/06/19 16:09,"700 11th St, Boston, MA 02215" +222487,Lightning Charging Cable,1,14.95,07/08/19 11:00,"302 South St, San Francisco, CA 94016" +222488,Macbook Pro Laptop,1,1700,07/06/19 14:48,"560 Park St, Atlanta, GA 30301" +222489,Google Phone,1,600,07/21/19 17:34,"123 9th St, Seattle, WA 98101" +222490,Wired Headphones,1,11.99,07/18/19 22:20,"874 North St, New York City, NY 10001" +222491,Apple Airpods Headphones,1,150,07/29/19 00:04,"822 6th St, Portland, OR 97035" +222492,AAA Batteries (4-pack),2,2.99,07/16/19 16:47,"649 Hill St, New York City, NY 10001" +222493,Lightning Charging Cable,1,14.95,07/11/19 22:05,"638 Highland St, San Francisco, CA 94016" +222494,34in Ultrawide Monitor,1,379.99,07/13/19 04:33,"946 9th St, Boston, MA 02215" +222495,Macbook Pro Laptop,1,1700,07/27/19 15:06,"349 Jefferson St, New York City, NY 10001" +222496,ThinkPad Laptop,1,999.99,07/07/19 16:56,"580 Main St, San Francisco, CA 94016" +222497,Vareebadd Phone,1,400,07/26/19 11:03,"80 Meadow St, New York City, NY 10001" +222498,Apple Airpods Headphones,1,150,07/15/19 10:29,"234 Lincoln St, Seattle, WA 98101" +222499,Lightning Charging Cable,1,14.95,07/16/19 23:38,"845 Ridge St, San Francisco, CA 94016" +222500,USB-C Charging Cable,1,11.95,07/11/19 00:59,"893 Dogwood St, Austin, TX 73301" +222501,Flatscreen TV,1,300,07/31/19 21:35,"620 Wilson St, Los Angeles, CA 90001" +222502,Google Phone,1,600,07/08/19 20:52,"93 Madison St, Seattle, WA 98101" +222502,USB-C Charging Cable,2,11.95,07/08/19 20:52,"93 Madison St, Seattle, WA 98101" +222503,34in Ultrawide Monitor,1,379.99,07/27/19 09:34,"946 Park St, New York City, NY 10001" +222504,USB-C Charging Cable,1,11.95,07/20/19 20:50,"963 Church St, Seattle, WA 98101" +222505,AA Batteries (4-pack),1,3.84,07/03/19 20:47,"339 8th St, New York City, NY 10001" +222506,Macbook Pro Laptop,1,1700,07/01/19 22:09,"567 Hill St, New York City, NY 10001" +222507,AA Batteries (4-pack),1,3.84,07/21/19 18:29,"843 Lakeview St, San Francisco, CA 94016" +222508,Flatscreen TV,1,300,07/23/19 15:39,"512 Sunset St, New York City, NY 10001" +222508,Vareebadd Phone,1,400,07/23/19 15:39,"512 Sunset St, New York City, NY 10001" +222509,27in FHD Monitor,1,149.99,07/29/19 11:23,"283 14th St, Los Angeles, CA 90001" +222510,AA Batteries (4-pack),1,3.84,07/28/19 13:45,"156 West St, Los Angeles, CA 90001" +222511,Wired Headphones,1,11.99,07/24/19 14:59,"235 Forest St, Boston, MA 02215" +222512,Lightning Charging Cable,1,14.95,07/06/19 20:39,"339 River St, San Francisco, CA 94016" +222513,AAA Batteries (4-pack),1,2.99,07/11/19 23:13,"395 4th St, New York City, NY 10001" +222514,ThinkPad Laptop,1,999.99,07/07/19 22:17,"462 Chestnut St, Dallas, TX 75001" +222514,27in FHD Monitor,1,149.99,07/07/19 22:17,"462 Chestnut St, Dallas, TX 75001" +222515,Lightning Charging Cable,1,14.95,07/21/19 19:48,"546 Cherry St, Portland, OR 97035" +222516,Bose SoundSport Headphones,1,99.99,07/07/19 13:18,"664 Meadow St, Boston, MA 02215" +222517,AAA Batteries (4-pack),2,2.99,07/29/19 12:49,"490 Highland St, Los Angeles, CA 90001" +222518,Wired Headphones,1,11.99,07/21/19 10:52,"237 Park St, Boston, MA 02215" +222519,27in FHD Monitor,1,149.99,07/06/19 12:09,"373 9th St, Portland, OR 97035" +222520,Bose SoundSport Headphones,1,99.99,07/04/19 17:38,"973 Madison St, Atlanta, GA 30301" +222521,USB-C Charging Cable,1,11.95,07/01/19 11:08,"681 Spruce St, Boston, MA 02215" +222522,Wired Headphones,1,11.99,07/05/19 12:54,"166 Chestnut St, Portland, OR 97035" +222523,Apple Airpods Headphones,1,150,07/28/19 18:43,"201 Maple St, Atlanta, GA 30301" +222524,Wired Headphones,1,11.99,07/08/19 16:29,"17 West St, Seattle, WA 98101" +222525,USB-C Charging Cable,1,11.95,07/03/19 10:34,"916 12th St, Los Angeles, CA 90001" +222526,34in Ultrawide Monitor,1,379.99,07/05/19 17:14,"298 7th St, San Francisco, CA 94016" +222527,Lightning Charging Cable,1,14.95,07/20/19 07:37,"870 Hickory St, San Francisco, CA 94016" +222528,USB-C Charging Cable,1,11.95,07/10/19 16:29,"992 Willow St, San Francisco, CA 94016" +222529,Apple Airpods Headphones,1,150,07/20/19 08:10,"372 Jefferson St, Los Angeles, CA 90001" +222530,Apple Airpods Headphones,1,150,07/16/19 22:10,"798 8th St, Boston, MA 02215" +222531,AA Batteries (4-pack),1,3.84,07/04/19 10:48,"969 Jackson St, Seattle, WA 98101" +222532,Apple Airpods Headphones,1,150,07/14/19 00:32,"570 Adams St, Seattle, WA 98101" +222533,Macbook Pro Laptop,1,1700,07/13/19 12:25,"244 Maple St, Dallas, TX 75001" +222534,Apple Airpods Headphones,1,150,07/10/19 09:13,"307 Lakeview St, New York City, NY 10001" +222535,AA Batteries (4-pack),1,3.84,07/28/19 21:45,"841 South St, Los Angeles, CA 90001" +222536,iPhone,1,700,07/23/19 17:20,"231 Center St, Los Angeles, CA 90001" +222537,Lightning Charging Cable,1,14.95,07/18/19 22:07,"794 Maple St, Atlanta, GA 30301" +222538,AA Batteries (4-pack),1,3.84,07/16/19 18:22,"699 8th St, Los Angeles, CA 90001" +222539,27in FHD Monitor,1,149.99,07/03/19 14:57,"599 Lakeview St, San Francisco, CA 94016" +222540,Lightning Charging Cable,1,14.95,07/04/19 00:48,"139 Adams St, Dallas, TX 75001" +222541,iPhone,1,700,07/25/19 22:47,"288 Hickory St, Portland, OR 97035" +222542,27in FHD Monitor,1,149.99,07/26/19 20:15,"428 11th St, Dallas, TX 75001" +222543,Bose SoundSport Headphones,1,99.99,07/21/19 13:52,"884 Wilson St, Boston, MA 02215" +222544,Flatscreen TV,1,300,07/03/19 07:48,"908 Lake St, San Francisco, CA 94016" +222545,iPhone,1,700,07/28/19 22:30,"999 Sunset St, Seattle, WA 98101" +222546,ThinkPad Laptop,1,999.99,07/11/19 13:49,"134 6th St, Dallas, TX 75001" +222547,Google Phone,1,600,07/27/19 20:36,"469 Church St, Dallas, TX 75001" +222548,27in 4K Gaming Monitor,1,389.99,07/29/19 12:35,"51 Lake St, New York City, NY 10001" +222549,Bose SoundSport Headphones,1,99.99,07/03/19 16:07,"654 Jefferson St, Los Angeles, CA 90001" +222550,Wired Headphones,1,11.99,07/07/19 14:21,"121 Highland St, San Francisco, CA 94016" +222551,USB-C Charging Cable,1,11.95,07/26/19 03:19,"986 5th St, San Francisco, CA 94016" +222552,Apple Airpods Headphones,1,150,07/22/19 18:29,"185 Adams St, New York City, NY 10001" +222552,AAA Batteries (4-pack),1,2.99,07/22/19 18:29,"185 Adams St, New York City, NY 10001" +222553,AAA Batteries (4-pack),1,2.99,07/18/19 23:15,"559 Meadow St, Boston, MA 02215" +222554,iPhone,1,700,07/31/19 11:10,"377 Lakeview St, Boston, MA 02215" +222555,Lightning Charging Cable,1,14.95,07/06/19 21:58,"182 Dogwood St, Boston, MA 02215" +222556,Flatscreen TV,1,300,07/27/19 16:49,"510 5th St, Portland, ME 04101" +222556,34in Ultrawide Monitor,1,379.99,07/27/19 16:49,"510 5th St, Portland, ME 04101" +222557,Lightning Charging Cable,1,14.95,07/11/19 17:46,"590 2nd St, Austin, TX 73301" +222558,34in Ultrawide Monitor,1,379.99,07/27/19 17:34,"307 Pine St, San Francisco, CA 94016" +222559,34in Ultrawide Monitor,1,379.99,07/19/19 00:32,"832 Madison St, Boston, MA 02215" +222560,USB-C Charging Cable,1,11.95,07/06/19 23:21,"546 North St, San Francisco, CA 94016" +222561,AA Batteries (4-pack),1,3.84,07/27/19 15:30,"893 11th St, New York City, NY 10001" +222562,27in FHD Monitor,1,149.99,07/05/19 18:45,"249 Jackson St, Los Angeles, CA 90001" +222563,AA Batteries (4-pack),1,3.84,07/10/19 08:40,"943 9th St, Boston, MA 02215" +222564,AAA Batteries (4-pack),3,2.99,07/07/19 11:17,"213 Church St, Atlanta, GA 30301" +222565,AA Batteries (4-pack),1,3.84,07/04/19 14:02,"443 Jackson St, Seattle, WA 98101" +222566,27in 4K Gaming Monitor,1,389.99,07/25/19 16:42,"992 Forest St, San Francisco, CA 94016" +222567,AAA Batteries (4-pack),1,2.99,07/27/19 22:11,"764 Madison St, Austin, TX 73301" +222568,27in FHD Monitor,1,149.99,07/19/19 09:49,"359 Johnson St, Dallas, TX 75001" +222569,AAA Batteries (4-pack),4,2.99,07/31/19 09:46,"58 Sunset St, Dallas, TX 75001" +222570,AAA Batteries (4-pack),1,2.99,07/08/19 09:45,"417 Lakeview St, Atlanta, GA 30301" +222571,AA Batteries (4-pack),1,3.84,07/27/19 22:25,"399 Jefferson St, Atlanta, GA 30301" +222572,Bose SoundSport Headphones,1,99.99,07/14/19 18:40,"910 Madison St, Boston, MA 02215" +222573,LG Washing Machine,1,600.0,07/05/19 17:11,"585 9th St, San Francisco, CA 94016" +222574,ThinkPad Laptop,1,999.99,07/20/19 16:58,"945 South St, Los Angeles, CA 90001" +222575,ThinkPad Laptop,1,999.99,07/20/19 15:03,"374 4th St, San Francisco, CA 94016" +222575,Bose SoundSport Headphones,1,99.99,07/20/19 15:03,"374 4th St, San Francisco, CA 94016" +222576,iPhone,1,700,07/27/19 14:48,"577 13th St, Portland, OR 97035" +222576,Lightning Charging Cable,1,14.95,07/27/19 14:48,"577 13th St, Portland, OR 97035" +222577,Flatscreen TV,1,300,07/24/19 21:13,"76 6th St, New York City, NY 10001" +222578,34in Ultrawide Monitor,1,379.99,07/29/19 10:00,"601 Willow St, Dallas, TX 75001" +222579,Wired Headphones,1,11.99,07/01/19 22:43,"133 2nd St, New York City, NY 10001" +222580,27in FHD Monitor,1,149.99,07/14/19 14:19,"331 Dogwood St, San Francisco, CA 94016" +222581,Wired Headphones,1,11.99,07/21/19 14:33,"327 Dogwood St, San Francisco, CA 94016" +222582,Wired Headphones,1,11.99,07/22/19 14:07,"325 12th St, San Francisco, CA 94016" +222583,AA Batteries (4-pack),1,3.84,07/17/19 21:10,"155 Main St, San Francisco, CA 94016" +222584,34in Ultrawide Monitor,1,379.99,07/23/19 21:41,"67 Meadow St, San Francisco, CA 94016" +222585,27in 4K Gaming Monitor,1,389.99,07/08/19 16:06,"786 5th St, Seattle, WA 98101" +222586,AAA Batteries (4-pack),1,2.99,07/05/19 16:29,"846 9th St, San Francisco, CA 94016" +222587,USB-C Charging Cable,1,11.95,07/17/19 16:54,"803 14th St, New York City, NY 10001" +222588,Macbook Pro Laptop,1,1700,07/26/19 14:24,"407 Meadow St, Portland, OR 97035" +222589,Wired Headphones,1,11.99,07/26/19 13:59,"857 Center St, San Francisco, CA 94016" +222590,USB-C Charging Cable,1,11.95,07/18/19 17:50,"937 Maple St, San Francisco, CA 94016" +222591,Wired Headphones,1,11.99,07/23/19 19:43,"731 Willow St, Los Angeles, CA 90001" +222592,AAA Batteries (4-pack),2,2.99,07/19/19 17:59,"82 Meadow St, Portland, ME 04101" +222593,iPhone,1,700,07/21/19 09:48,"346 South St, San Francisco, CA 94016" +222594,ThinkPad Laptop,1,999.99,07/03/19 20:42,"348 Highland St, Boston, MA 02215" +222595,Bose SoundSport Headphones,1,99.99,07/02/19 08:08,"431 5th St, Boston, MA 02215" +222596,Bose SoundSport Headphones,1,99.99,07/30/19 23:37,"980 13th St, Austin, TX 73301" +222597,AA Batteries (4-pack),2,3.84,07/17/19 20:13,"766 Lake St, San Francisco, CA 94016" +222598,AA Batteries (4-pack),1,3.84,07/16/19 15:48,"7 Cherry St, Austin, TX 73301" +222599,AA Batteries (4-pack),1,3.84,07/10/19 15:35,"35 Adams St, San Francisco, CA 94016" +222600,AA Batteries (4-pack),1,3.84,07/20/19 12:43,"609 Lake St, Los Angeles, CA 90001" +222601,Wired Headphones,1,11.99,07/16/19 01:21,"972 Washington St, San Francisco, CA 94016" +222602,Apple Airpods Headphones,1,150,07/21/19 11:52,"207 Jackson St, San Francisco, CA 94016" +222603,Apple Airpods Headphones,1,150,07/13/19 22:57,"852 South St, San Francisco, CA 94016" +222604,AAA Batteries (4-pack),1,2.99,07/19/19 13:06,"239 South St, Atlanta, GA 30301" +222605,Lightning Charging Cable,1,14.95,07/01/19 12:05,"254 7th St, New York City, NY 10001" +222606,AAA Batteries (4-pack),1,2.99,07/14/19 14:05,"267 Hickory St, San Francisco, CA 94016" +222607,USB-C Charging Cable,1,11.95,07/01/19 10:15,"934 Hill St, Los Angeles, CA 90001" +222608,Wired Headphones,1,11.99,07/21/19 15:22,"331 Lake St, San Francisco, CA 94016" +222609,ThinkPad Laptop,1,999.99,07/01/19 18:08,"702 Willow St, Los Angeles, CA 90001" +222610,AA Batteries (4-pack),1,3.84,07/09/19 16:56,"300 Center St, Dallas, TX 75001" +222611,Wired Headphones,1,11.99,07/06/19 12:29,"490 Washington St, New York City, NY 10001" +222612,Google Phone,1,600,07/18/19 21:12,"371 1st St, San Francisco, CA 94016" +222613,Macbook Pro Laptop,1,1700,07/06/19 16:00,"926 Wilson St, Dallas, TX 75001" +222614,LG Washing Machine,1,600.0,07/25/19 22:17,"554 5th St, Atlanta, GA 30301" +222615,AA Batteries (4-pack),1,3.84,07/22/19 17:46,"779 Wilson St, Boston, MA 02215" +222616,AAA Batteries (4-pack),2,2.99,07/27/19 17:52,"826 Park St, Los Angeles, CA 90001" +222617,27in 4K Gaming Monitor,1,389.99,07/20/19 11:44,"760 Cherry St, San Francisco, CA 94016" +222618,Wired Headphones,1,11.99,07/04/19 14:39,"797 Sunset St, San Francisco, CA 94016" +222619,AA Batteries (4-pack),3,3.84,07/16/19 13:01,"706 South St, San Francisco, CA 94016" +222620,Wired Headphones,1,11.99,07/27/19 17:06,"70 11th St, San Francisco, CA 94016" +222621,Apple Airpods Headphones,1,150,07/12/19 11:13,"23 Main St, Dallas, TX 75001" +222622,Apple Airpods Headphones,1,150,07/29/19 15:14,"687 4th St, San Francisco, CA 94016" +222623,Bose SoundSport Headphones,1,99.99,07/31/19 08:55,"198 Meadow St, San Francisco, CA 94016" +222624,27in FHD Monitor,1,149.99,07/19/19 18:11,"521 Madison St, Los Angeles, CA 90001" +222625,ThinkPad Laptop,1,999.99,07/18/19 21:12,"747 Washington St, Boston, MA 02215" +222626,AA Batteries (4-pack),1,3.84,07/02/19 18:50,"206 Maple St, Dallas, TX 75001" +222627,AAA Batteries (4-pack),2,2.99,07/22/19 14:21,"619 West St, Los Angeles, CA 90001" +222628,34in Ultrawide Monitor,1,379.99,07/06/19 10:21,"688 North St, Portland, OR 97035" +222629,Apple Airpods Headphones,1,150,07/26/19 12:30,"337 Washington St, Dallas, TX 75001" +222630,27in 4K Gaming Monitor,1,389.99,07/02/19 15:00,"939 7th St, Austin, TX 73301" +222631,USB-C Charging Cable,1,11.95,07/30/19 13:44,"120 Lake St, Dallas, TX 75001" +222632,Google Phone,1,600,07/29/19 12:11,"525 Center St, Portland, OR 97035" +222633,34in Ultrawide Monitor,1,379.99,07/07/19 20:45,"335 Lakeview St, Atlanta, GA 30301" +222634,Apple Airpods Headphones,1,150,07/26/19 15:00,"54 Elm St, New York City, NY 10001" +222635,Wired Headphones,2,11.99,07/23/19 15:13,"11 Park St, Seattle, WA 98101" +222636,Bose SoundSport Headphones,1,99.99,07/08/19 19:00,"85 Pine St, Portland, OR 97035" +222637,Apple Airpods Headphones,1,150,07/30/19 07:42,"602 Wilson St, Dallas, TX 75001" +222638,AA Batteries (4-pack),1,3.84,07/14/19 12:32,"947 Lincoln St, Boston, MA 02215" +222639,Lightning Charging Cable,2,14.95,07/13/19 08:09,"680 7th St, Seattle, WA 98101" +222640,USB-C Charging Cable,1,11.95,07/04/19 21:00,"383 5th St, Atlanta, GA 30301" +222641,27in FHD Monitor,1,149.99,07/25/19 09:18,"335 Pine St, Boston, MA 02215" +222642,LG Dryer,1,600.0,07/04/19 12:09,"93 Forest St, San Francisco, CA 94016" +222643,Flatscreen TV,1,300,07/25/19 10:41,"311 Lakeview St, Portland, ME 04101" +222644,Lightning Charging Cable,1,14.95,07/11/19 21:47,"221 6th St, Seattle, WA 98101" +222644,27in FHD Monitor,1,149.99,07/11/19 21:47,"221 6th St, Seattle, WA 98101" +222645,Bose SoundSport Headphones,1,99.99,07/13/19 09:01,"169 West St, Dallas, TX 75001" +222646,Lightning Charging Cable,1,14.95,07/08/19 23:50,"534 Church St, New York City, NY 10001" +222647,AAA Batteries (4-pack),1,2.99,07/30/19 23:31,"795 Madison St, Los Angeles, CA 90001" +222648,Lightning Charging Cable,1,14.95,07/26/19 18:31,"522 12th St, San Francisco, CA 94016" +222649,AA Batteries (4-pack),1,3.84,07/19/19 16:49,"141 Adams St, New York City, NY 10001" +222650,Flatscreen TV,1,300,07/30/19 15:58,"688 5th St, San Francisco, CA 94016" +222651,Lightning Charging Cable,1,14.95,07/14/19 16:46,"703 13th St, Seattle, WA 98101" +222652,iPhone,1,700,07/05/19 20:17,"69 Wilson St, Dallas, TX 75001" +222652,Lightning Charging Cable,1,14.95,07/05/19 20:17,"69 Wilson St, Dallas, TX 75001" +222653,USB-C Charging Cable,2,11.95,07/10/19 16:39,"587 Highland St, San Francisco, CA 94016" +222654,Bose SoundSport Headphones,1,99.99,07/06/19 06:41,"711 Maple St, Austin, TX 73301" +222655,USB-C Charging Cable,2,11.95,07/22/19 10:35,"834 7th St, New York City, NY 10001" +222656,Google Phone,1,600,07/09/19 14:38,"619 Church St, Los Angeles, CA 90001" +222656,USB-C Charging Cable,1,11.95,07/09/19 14:38,"619 Church St, Los Angeles, CA 90001" +222657,Bose SoundSport Headphones,1,99.99,07/02/19 10:40,"454 14th St, Portland, OR 97035" +222658,Bose SoundSport Headphones,1,99.99,07/16/19 11:24,"320 Chestnut St, San Francisco, CA 94016" +222658,AAA Batteries (4-pack),1,2.99,07/16/19 11:24,"320 Chestnut St, San Francisco, CA 94016" +222659,Lightning Charging Cable,1,14.95,07/18/19 17:38,"473 Johnson St, Atlanta, GA 30301" +222660,AA Batteries (4-pack),1,3.84,07/02/19 16:35,"100 Lincoln St, San Francisco, CA 94016" +222661,Bose SoundSport Headphones,1,99.99,07/08/19 20:57,"10 4th St, San Francisco, CA 94016" +222662,AAA Batteries (4-pack),2,2.99,07/11/19 02:40,"167 Dogwood St, New York City, NY 10001" +222663,27in FHD Monitor,2,149.99,07/01/19 16:19,"346 Cedar St, New York City, NY 10001" +222664,Apple Airpods Headphones,1,150,07/12/19 14:52,"888 Cedar St, San Francisco, CA 94016" +222665,AA Batteries (4-pack),1,3.84,07/06/19 17:30,"626 South St, Los Angeles, CA 90001" +222666,Lightning Charging Cable,1,14.95,07/25/19 12:23,"797 Johnson St, Los Angeles, CA 90001" +222667,Bose SoundSport Headphones,1,99.99,07/11/19 11:41,"860 Ridge St, San Francisco, CA 94016" +222668,Google Phone,1,600,07/15/19 19:49,"729 Adams St, San Francisco, CA 94016" +222669,Apple Airpods Headphones,1,150,07/23/19 17:18,"312 Lake St, Boston, MA 02215" +222670,Lightning Charging Cable,1,14.95,07/04/19 07:08,"646 Maple St, Seattle, WA 98101" +222671,iPhone,1,700,07/27/19 19:18,"143 Dogwood St, Seattle, WA 98101" +222672,Lightning Charging Cable,1,14.95,07/21/19 13:41,"616 11th St, Los Angeles, CA 90001" +222673,AAA Batteries (4-pack),1,2.99,07/28/19 12:46,"149 12th St, San Francisco, CA 94016" +222674,iPhone,1,700,07/09/19 14:28,"700 Lake St, Portland, OR 97035" +222675,AAA Batteries (4-pack),1,2.99,07/11/19 14:09,"469 West St, Los Angeles, CA 90001" +222675,AAA Batteries (4-pack),2,2.99,07/11/19 14:09,"469 West St, Los Angeles, CA 90001" +222676,Wired Headphones,1,11.99,07/10/19 12:57,"705 Hill St, San Francisco, CA 94016" +222677,Bose SoundSport Headphones,1,99.99,07/04/19 08:42,"838 Jackson St, San Francisco, CA 94016" +222678,Wired Headphones,1,11.99,07/27/19 02:32,"5 11th St, Seattle, WA 98101" +222679,USB-C Charging Cable,1,11.95,07/24/19 21:46,"987 Center St, Dallas, TX 75001" +222680,AAA Batteries (4-pack),2,2.99,07/25/19 07:48,"638 Lakeview St, Dallas, TX 75001" +222681,Apple Airpods Headphones,1,150,07/20/19 13:21,"876 Forest St, Atlanta, GA 30301" +222682,AA Batteries (4-pack),1,3.84,07/03/19 22:15,"102 Willow St, Los Angeles, CA 90001" +222683,USB-C Charging Cable,1,11.95,07/09/19 21:57,"353 Church St, Boston, MA 02215" +222684,USB-C Charging Cable,1,11.95,07/29/19 19:40,"89 Spruce St, Dallas, TX 75001" +222685,ThinkPad Laptop,1,999.99,07/11/19 14:06,"379 7th St, Atlanta, GA 30301" +222686,Bose SoundSport Headphones,1,99.99,07/12/19 23:39,"580 2nd St, Atlanta, GA 30301" +222687,USB-C Charging Cable,1,11.95,07/06/19 16:34,"478 Cedar St, Los Angeles, CA 90001" +222688,iPhone,1,700,07/25/19 10:19,"165 West St, Austin, TX 73301" +222689,AA Batteries (4-pack),2,3.84,07/30/19 15:03,"587 Dogwood St, Los Angeles, CA 90001" +222690,27in FHD Monitor,1,149.99,07/30/19 11:19,"493 Forest St, Boston, MA 02215" +222691,Macbook Pro Laptop,1,1700,07/12/19 15:56,"438 5th St, New York City, NY 10001" +222692,AAA Batteries (4-pack),7,2.99,07/28/19 13:45,"53 10th St, Atlanta, GA 30301" +222693,Google Phone,1,600,07/22/19 09:03,"491 Main St, Boston, MA 02215" +222694,34in Ultrawide Monitor,1,379.99,07/10/19 04:53,"140 Lake St, Seattle, WA 98101" +222695,AAA Batteries (4-pack),2,2.99,07/25/19 20:28,"646 Wilson St, Los Angeles, CA 90001" +222696,Bose SoundSport Headphones,1,99.99,07/02/19 09:43,"783 Main St, Portland, OR 97035" +222697,iPhone,1,700,07/27/19 07:52,"850 River St, Los Angeles, CA 90001" +222697,Lightning Charging Cable,1,14.95,07/27/19 07:52,"850 River St, Los Angeles, CA 90001" +222698,Lightning Charging Cable,1,14.95,07/18/19 21:08,"931 12th St, Austin, TX 73301" +222699,USB-C Charging Cable,1,11.95,07/13/19 12:08,"520 Church St, Los Angeles, CA 90001" +222700,Bose SoundSport Headphones,1,99.99,07/19/19 17:32,"584 12th St, San Francisco, CA 94016" +222701,27in FHD Monitor,1,149.99,07/28/19 10:38,"978 9th St, San Francisco, CA 94016" +222702,Lightning Charging Cable,1,14.95,07/04/19 20:36,"330 Main St, Atlanta, GA 30301" +222703,AAA Batteries (4-pack),1,2.99,07/12/19 02:10,"237 Pine St, Los Angeles, CA 90001" +222704,AA Batteries (4-pack),1,3.84,07/02/19 08:51,"400 Dogwood St, San Francisco, CA 94016" +222705,27in 4K Gaming Monitor,1,389.99,07/08/19 06:19,"766 River St, Boston, MA 02215" +222706,Wired Headphones,1,11.99,07/20/19 22:42,"731 Park St, San Francisco, CA 94016" +222707,Wired Headphones,1,11.99,07/06/19 08:57,"368 6th St, Austin, TX 73301" +222708,Google Phone,1,600,07/11/19 19:17,"300 Madison St, Dallas, TX 75001" +222708,USB-C Charging Cable,1,11.95,07/11/19 19:17,"300 Madison St, Dallas, TX 75001" +222709,Flatscreen TV,1,300,07/06/19 12:00,"321 Church St, San Francisco, CA 94016" +222710,Lightning Charging Cable,1,14.95,07/17/19 22:43,"218 6th St, San Francisco, CA 94016" +222711,USB-C Charging Cable,1,11.95,07/28/19 18:10,"526 Hill St, San Francisco, CA 94016" +222712,AAA Batteries (4-pack),2,2.99,07/31/19 17:54,"717 Chestnut St, San Francisco, CA 94016" +222713,34in Ultrawide Monitor,1,379.99,07/31/19 11:28,"642 1st St, Atlanta, GA 30301" +222714,USB-C Charging Cable,1,11.95,07/06/19 20:45,"533 Main St, Atlanta, GA 30301" +222715,Vareebadd Phone,1,400,07/28/19 11:15,"838 4th St, Dallas, TX 75001" +222716,Lightning Charging Cable,1,14.95,07/21/19 14:56,"388 Hickory St, Los Angeles, CA 90001" +222717,Lightning Charging Cable,1,14.95,07/31/19 12:34,"434 Wilson St, Los Angeles, CA 90001" +222717,27in FHD Monitor,1,149.99,07/31/19 12:34,"434 Wilson St, Los Angeles, CA 90001" +222718,AA Batteries (4-pack),1,3.84,07/10/19 19:52,"178 12th St, Austin, TX 73301" +222719,AAA Batteries (4-pack),2,2.99,07/21/19 17:59,"664 Maple St, San Francisco, CA 94016" +222720,34in Ultrawide Monitor,1,379.99,07/08/19 17:22,"329 1st St, Boston, MA 02215" +222721,USB-C Charging Cable,1,11.95,07/20/19 12:09,"295 13th St, San Francisco, CA 94016" +222722,USB-C Charging Cable,1,11.95,07/10/19 22:01,"371 9th St, Dallas, TX 75001" +222723,iPhone,1,700,07/31/19 11:27,"739 Dogwood St, Los Angeles, CA 90001" +222723,Wired Headphones,1,11.99,07/31/19 11:27,"739 Dogwood St, Los Angeles, CA 90001" +222724,iPhone,1,700,07/27/19 16:00,"141 2nd St, Boston, MA 02215" +222725,20in Monitor,1,109.99,07/31/19 19:09,"525 Sunset St, San Francisco, CA 94016" +222726,AA Batteries (4-pack),1,3.84,07/06/19 00:22,"620 Adams St, New York City, NY 10001" +222727,Apple Airpods Headphones,1,150,07/02/19 13:06,"133 Willow St, Austin, TX 73301" +222728,Google Phone,1,600,07/21/19 12:37,"909 2nd St, San Francisco, CA 94016" +222729,USB-C Charging Cable,1,11.95,07/19/19 18:50,"981 Elm St, Portland, OR 97035" +222730,27in FHD Monitor,1,149.99,07/14/19 19:03,"314 Main St, Seattle, WA 98101" +222731,Apple Airpods Headphones,1,150,07/26/19 19:06,"15 River St, Dallas, TX 75001" +222732,AAA Batteries (4-pack),3,2.99,07/06/19 18:28,"813 West St, Los Angeles, CA 90001" +222733,Wired Headphones,2,11.99,07/01/19 14:24,"504 Chestnut St, Austin, TX 73301" +222734,Wired Headphones,1,11.99,07/27/19 21:08,"7 West St, Boston, MA 02215" +222735,USB-C Charging Cable,1,11.95,07/27/19 20:52,"606 14th St, Atlanta, GA 30301" +222736,Wired Headphones,1,11.99,07/26/19 23:17,"100 Jackson St, San Francisco, CA 94016" +222737,ThinkPad Laptop,1,999.99,07/24/19 23:12,"143 Hickory St, New York City, NY 10001" +222738,AA Batteries (4-pack),3,3.84,07/10/19 20:54,"942 Center St, Los Angeles, CA 90001" +222739,AAA Batteries (4-pack),1,2.99,07/30/19 12:03,"238 Chestnut St, Los Angeles, CA 90001" +222739,AA Batteries (4-pack),1,3.84,07/30/19 12:03,"238 Chestnut St, Los Angeles, CA 90001" +222740,Apple Airpods Headphones,1,150,07/17/19 08:23,"795 Chestnut St, Atlanta, GA 30301" +222741,34in Ultrawide Monitor,1,379.99,07/23/19 20:28,"956 Meadow St, San Francisco, CA 94016" +222742,Lightning Charging Cable,1,14.95,07/16/19 23:19,"930 9th St, Atlanta, GA 30301" +222743,Wired Headphones,1,11.99,07/21/19 20:00,"711 Center St, New York City, NY 10001" +222744,27in FHD Monitor,1,149.99,07/11/19 19:00,"537 Lake St, Boston, MA 02215" +222745,USB-C Charging Cable,1,11.95,07/11/19 14:46,"181 Elm St, Boston, MA 02215" +222746,USB-C Charging Cable,1,11.95,07/20/19 22:48,"429 Willow St, Austin, TX 73301" +222747,iPhone,1,700,07/08/19 11:47,"942 Walnut St, Portland, OR 97035" +222748,USB-C Charging Cable,2,11.95,07/05/19 10:54,"43 10th St, New York City, NY 10001" +222749,USB-C Charging Cable,1,11.95,07/19/19 09:53,"413 Pine St, San Francisco, CA 94016" +222750,USB-C Charging Cable,1,11.95,07/22/19 21:29,"75 13th St, San Francisco, CA 94016" +222751,Wired Headphones,1,11.99,07/25/19 10:16,"631 9th St, Atlanta, GA 30301" +222752,USB-C Charging Cable,1,11.95,07/11/19 09:10,"54 Forest St, Seattle, WA 98101" +222753,Wired Headphones,1,11.99,07/06/19 21:19,"62 1st St, Dallas, TX 75001" +222754,ThinkPad Laptop,1,999.99,07/22/19 13:22,"996 Park St, Atlanta, GA 30301" +222755,AAA Batteries (4-pack),2,2.99,07/09/19 13:09,"529 Cherry St, Boston, MA 02215" +222756,ThinkPad Laptop,1,999.99,07/03/19 21:09,"998 Wilson St, Los Angeles, CA 90001" +222757,Bose SoundSport Headphones,1,99.99,07/23/19 15:06,"445 Washington St, New York City, NY 10001" +222758,AA Batteries (4-pack),1,3.84,07/06/19 06:33,"624 Church St, New York City, NY 10001" +222759,AA Batteries (4-pack),1,3.84,07/16/19 22:17,"629 Main St, Portland, OR 97035" +222760,Apple Airpods Headphones,1,150,07/12/19 07:39,"976 13th St, Boston, MA 02215" +222761,AAA Batteries (4-pack),1,2.99,07/20/19 19:16,"44 Washington St, New York City, NY 10001" +222762,AA Batteries (4-pack),1,3.84,07/04/19 22:22,"378 Ridge St, Atlanta, GA 30301" +222763,USB-C Charging Cable,1,11.95,07/25/19 07:32,"602 Hill St, New York City, NY 10001" +222764,AA Batteries (4-pack),1,3.84,07/10/19 12:56,"322 Meadow St, San Francisco, CA 94016" +222765,Apple Airpods Headphones,1,150,07/10/19 20:41,"916 Lakeview St, Boston, MA 02215" +222766,Wired Headphones,1,11.99,07/03/19 15:07,"424 Spruce St, San Francisco, CA 94016" +222767,27in FHD Monitor,1,149.99,07/31/19 14:19,"371 6th St, New York City, NY 10001" +222767,Google Phone,1,600,07/31/19 14:19,"371 6th St, New York City, NY 10001" +222768,Macbook Pro Laptop,1,1700,07/02/19 18:53,"495 Park St, Atlanta, GA 30301" +222769,27in FHD Monitor,2,149.99,07/13/19 18:39,"52 Pine St, Seattle, WA 98101" +222770,Flatscreen TV,1,300,07/20/19 11:30,"617 11th St, San Francisco, CA 94016" +222771,Apple Airpods Headphones,1,150,07/25/19 13:32,"258 Elm St, San Francisco, CA 94016" +222772,Wired Headphones,1,11.99,07/04/19 19:25,"906 West St, New York City, NY 10001" +222773,AA Batteries (4-pack),1,3.84,07/09/19 13:20,"681 Willow St, San Francisco, CA 94016" +222774,Macbook Pro Laptop,1,1700,07/19/19 11:33,"996 Highland St, Seattle, WA 98101" +222775,AA Batteries (4-pack),1,3.84,07/09/19 15:21,"595 Hill St, New York City, NY 10001" +222776,Lightning Charging Cable,1,14.95,07/13/19 14:22,"472 Lake St, Los Angeles, CA 90001" +222777,Wired Headphones,1,11.99,07/25/19 23:59,"499 Walnut St, San Francisco, CA 94016" +222778,20in Monitor,1,109.99,07/31/19 11:30,"95 Wilson St, Portland, OR 97035" +222779,USB-C Charging Cable,1,11.95,07/30/19 18:39,"864 River St, Seattle, WA 98101" +222780,Google Phone,1,600,07/10/19 17:26,"685 South St, Dallas, TX 75001" +222781,34in Ultrawide Monitor,1,379.99,07/26/19 19:19,"917 Maple St, Atlanta, GA 30301" +222781,Google Phone,1,600,07/26/19 19:19,"917 Maple St, Atlanta, GA 30301" +222782,Lightning Charging Cable,1,14.95,07/20/19 11:45,"505 10th St, New York City, NY 10001" +222783,ThinkPad Laptop,1,999.99,07/12/19 22:24,"272 Willow St, San Francisco, CA 94016" +222784,Bose SoundSport Headphones,1,99.99,07/20/19 22:01,"595 Ridge St, Boston, MA 02215" +222785,AA Batteries (4-pack),7,3.84,07/19/19 12:59,"48 North St, Boston, MA 02215" +222786,Lightning Charging Cable,1,14.95,07/02/19 08:47,"256 Johnson St, Dallas, TX 75001" +222787,Wired Headphones,1,11.99,07/27/19 21:47,"730 South St, Boston, MA 02215" +222787,Flatscreen TV,1,300,07/27/19 21:47,"730 South St, Boston, MA 02215" +222788,Apple Airpods Headphones,1,150,07/07/19 18:26,"703 Lake St, Seattle, WA 98101" +222789,AA Batteries (4-pack),1,3.84,07/26/19 12:57,"927 11th St, Portland, OR 97035" +222790,Google Phone,1,600,07/29/19 20:02,"792 Lake St, Seattle, WA 98101" +222791,27in 4K Gaming Monitor,1,389.99,07/30/19 02:21,"184 Willow St, Boston, MA 02215" +222792,USB-C Charging Cable,1,11.95,07/09/19 10:21,"256 Cedar St, San Francisco, CA 94016" +222793,USB-C Charging Cable,1,11.95,07/05/19 10:52,"838 13th St, Los Angeles, CA 90001" +222794,Bose SoundSport Headphones,1,99.99,07/03/19 13:57,"910 Hill St, Boston, MA 02215" +222795,Lightning Charging Cable,2,14.95,07/22/19 15:49,"557 Meadow St, Portland, OR 97035" +222796,Bose SoundSport Headphones,1,99.99,07/20/19 09:56,"392 Cedar St, New York City, NY 10001" +222797,Macbook Pro Laptop,1,1700,07/15/19 15:03,"469 10th St, San Francisco, CA 94016" +222798,27in FHD Monitor,1,149.99,07/31/19 11:53,"10 Cedar St, San Francisco, CA 94016" +222799,34in Ultrawide Monitor,1,379.99,07/04/19 09:54,"909 9th St, Boston, MA 02215" +222800,Bose SoundSport Headphones,1,99.99,07/06/19 22:11,"958 5th St, Austin, TX 73301" +222801,Wired Headphones,2,11.99,07/16/19 16:01,"741 Forest St, Boston, MA 02215" +222802,Lightning Charging Cable,1,14.95,07/09/19 20:46,"94 Spruce St, San Francisco, CA 94016" +222803,Wired Headphones,2,11.99,07/14/19 23:56,"368 13th St, Los Angeles, CA 90001" +222804,Lightning Charging Cable,1,14.95,07/31/19 19:43,"399 Sunset St, Seattle, WA 98101" +222805,Macbook Pro Laptop,1,1700,07/13/19 10:38,"398 Johnson St, Los Angeles, CA 90001" +222806,iPhone,1,700,07/21/19 19:13,"891 8th St, Dallas, TX 75001" +222807,Bose SoundSport Headphones,1,99.99,07/11/19 11:41,"370 1st St, Atlanta, GA 30301" +222808,AA Batteries (4-pack),1,3.84,07/29/19 07:20,"730 10th St, Dallas, TX 75001" +222809,USB-C Charging Cable,1,11.95,07/02/19 11:01,"997 10th St, New York City, NY 10001" +222810,Lightning Charging Cable,1,14.95,07/14/19 21:57,"272 6th St, Boston, MA 02215" +222811,AA Batteries (4-pack),1,3.84,07/25/19 11:39,"658 4th St, Atlanta, GA 30301" +222812,34in Ultrawide Monitor,1,379.99,07/10/19 09:57,"477 West St, Dallas, TX 75001" +222813,Wired Headphones,1,11.99,07/06/19 22:09,"414 Jackson St, Portland, ME 04101" +222814,Apple Airpods Headphones,1,150,07/04/19 17:01,"30 7th St, San Francisco, CA 94016" +222815,USB-C Charging Cable,2,11.95,07/02/19 09:44,"91 Main St, Atlanta, GA 30301" +222816,iPhone,1,700,07/02/19 11:30,"369 4th St, Seattle, WA 98101" +222817,Macbook Pro Laptop,1,1700,07/31/19 21:46,"721 West St, Seattle, WA 98101" +222818,Apple Airpods Headphones,1,150,07/16/19 10:17,"476 Wilson St, Seattle, WA 98101" +222819,AA Batteries (4-pack),1,3.84,07/15/19 16:01,"707 7th St, Los Angeles, CA 90001" +222820,Flatscreen TV,1,300,07/14/19 08:01,"670 11th St, Los Angeles, CA 90001" +222821,Apple Airpods Headphones,1,150,07/18/19 22:08,"345 Madison St, San Francisco, CA 94016" +222822,Apple Airpods Headphones,1,150,07/26/19 18:58,"394 Washington St, Portland, OR 97035" +222823,Lightning Charging Cable,1,14.95,07/29/19 11:23,"517 1st St, Los Angeles, CA 90001" +222824,Wired Headphones,1,11.99,07/15/19 02:03,"491 Adams St, San Francisco, CA 94016" +222825,20in Monitor,1,109.99,07/02/19 17:54,"928 1st St, Seattle, WA 98101" +222825,Google Phone,1,600,07/02/19 17:54,"928 1st St, Seattle, WA 98101" +222826,LG Washing Machine,1,600.0,07/13/19 12:56,"799 Lincoln St, Seattle, WA 98101" +222827,Lightning Charging Cable,1,14.95,07/15/19 12:23,"445 Ridge St, New York City, NY 10001" +222828,Flatscreen TV,1,300,07/20/19 19:44,"555 Church St, Dallas, TX 75001" +222829,Apple Airpods Headphones,1,150,07/13/19 09:16,"340 Chestnut St, New York City, NY 10001" +222830,AA Batteries (4-pack),2,3.84,07/22/19 07:50,"127 Johnson St, San Francisco, CA 94016" +222831,Apple Airpods Headphones,1,150,07/28/19 12:39,"919 Church St, San Francisco, CA 94016" +222832,USB-C Charging Cable,1,11.95,07/10/19 16:48,"460 10th St, Seattle, WA 98101" +222833,AA Batteries (4-pack),2,3.84,07/21/19 01:19,"113 Lakeview St, Los Angeles, CA 90001" +222834,20in Monitor,2,109.99,07/21/19 13:53,"962 Chestnut St, Portland, ME 04101" +222835,Macbook Pro Laptop,1,1700,07/30/19 08:37,"220 Lake St, San Francisco, CA 94016" +222836,Lightning Charging Cable,1,14.95,07/19/19 13:07,"116 14th St, Los Angeles, CA 90001" +222837,27in FHD Monitor,1,149.99,07/05/19 07:42,"18 12th St, Los Angeles, CA 90001" +222838,AA Batteries (4-pack),2,3.84,07/20/19 22:53,"614 8th St, San Francisco, CA 94016" +222839,AAA Batteries (4-pack),1,2.99,07/17/19 10:07,"893 2nd St, Seattle, WA 98101" +222840,AAA Batteries (4-pack),2,2.99,07/02/19 17:38,"186 8th St, Los Angeles, CA 90001" +222841,AA Batteries (4-pack),1,3.84,07/23/19 17:35,"653 Cherry St, San Francisco, CA 94016" +222842,AA Batteries (4-pack),1,3.84,07/19/19 14:03,"735 Hickory St, San Francisco, CA 94016" +222843,Wired Headphones,1,11.99,07/09/19 16:42,"848 Cedar St, Los Angeles, CA 90001" +222844,Lightning Charging Cable,1,14.95,07/02/19 10:31,"19 Pine St, Boston, MA 02215" +222845,Wired Headphones,2,11.99,07/21/19 12:09,"823 Park St, Atlanta, GA 30301" +222846,Wired Headphones,1,11.99,07/29/19 09:23,"96 Johnson St, New York City, NY 10001" +222847,Lightning Charging Cable,1,14.95,07/17/19 11:40,"445 Cedar St, Atlanta, GA 30301" +222848,Lightning Charging Cable,1,14.95,07/08/19 22:28,"567 2nd St, Atlanta, GA 30301" +222849,USB-C Charging Cable,1,11.95,07/16/19 14:11,"460 West St, Boston, MA 02215" +222850,Bose SoundSport Headphones,1,99.99,07/15/19 04:18,"346 Johnson St, San Francisco, CA 94016" +222851,USB-C Charging Cable,2,11.95,07/06/19 20:58,"79 Jackson St, New York City, NY 10001" +222852,iPhone,1,700,07/14/19 19:22,"974 6th St, Austin, TX 73301" +222853,AA Batteries (4-pack),1,3.84,07/20/19 17:53,"498 Cedar St, Dallas, TX 75001" +222854,USB-C Charging Cable,1,11.95,07/16/19 16:26,"882 Dogwood St, Los Angeles, CA 90001" +222855,AA Batteries (4-pack),1,3.84,07/25/19 21:52,"640 Dogwood St, Boston, MA 02215" +222856,Macbook Pro Laptop,1,1700,07/07/19 10:12,"695 6th St, Seattle, WA 98101" +222857,USB-C Charging Cable,1,11.95,07/23/19 10:59,"872 1st St, Portland, OR 97035" +222858,Bose SoundSport Headphones,1,99.99,07/29/19 11:03,"512 South St, Dallas, TX 75001" +222859,Flatscreen TV,1,300,07/09/19 20:44,"731 Pine St, San Francisco, CA 94016" +222860,USB-C Charging Cable,1,11.95,07/07/19 23:50,"186 11th St, Los Angeles, CA 90001" +222861,34in Ultrawide Monitor,1,379.99,07/24/19 08:59,"623 Hill St, New York City, NY 10001" +222862,USB-C Charging Cable,2,11.95,07/19/19 16:55,"363 2nd St, Austin, TX 73301" +222863,Wired Headphones,1,11.99,07/03/19 13:09,"769 10th St, Atlanta, GA 30301" +222864,Lightning Charging Cable,1,14.95,07/08/19 12:43,"597 Center St, San Francisco, CA 94016" +222865,Google Phone,1,600,07/30/19 08:18,"424 Dogwood St, Boston, MA 02215" +222865,USB-C Charging Cable,1,11.95,07/30/19 08:18,"424 Dogwood St, Boston, MA 02215" +222866,AAA Batteries (4-pack),2,2.99,07/15/19 20:59,"441 Elm St, Austin, TX 73301" +222867,Apple Airpods Headphones,1,150,07/24/19 09:55,"756 Chestnut St, Los Angeles, CA 90001" +222868,AA Batteries (4-pack),1,3.84,07/26/19 09:12,"964 Lakeview St, Los Angeles, CA 90001" +222869,iPhone,1,700,07/04/19 18:19,"1 Pine St, San Francisco, CA 94016" +222869,Lightning Charging Cable,1,14.95,07/04/19 18:19,"1 Pine St, San Francisco, CA 94016" +222870,Apple Airpods Headphones,1,150,07/29/19 09:44,"787 5th St, Los Angeles, CA 90001" +222871,Lightning Charging Cable,1,14.95,07/15/19 17:14,"323 Adams St, San Francisco, CA 94016" +222871,AA Batteries (4-pack),1,3.84,07/15/19 17:14,"323 Adams St, San Francisco, CA 94016" +222872,Wired Headphones,1,11.99,07/09/19 12:37,"305 South St, Austin, TX 73301" +,,,,, +222873,Bose SoundSport Headphones,1,99.99,07/15/19 19:56,"16 1st St, Seattle, WA 98101" +222874,Google Phone,1,600,07/01/19 16:47,"964 14th St, Dallas, TX 75001" +222875,AA Batteries (4-pack),2,3.84,07/16/19 20:04,"723 Lakeview St, Los Angeles, CA 90001" +222876,USB-C Charging Cable,1,11.95,07/23/19 15:33,"644 Sunset St, Los Angeles, CA 90001" +222877,Macbook Pro Laptop,1,1700,07/04/19 07:44,"390 Madison St, Seattle, WA 98101" +222878,AA Batteries (4-pack),1,3.84,07/26/19 12:33,"819 Forest St, Dallas, TX 75001" +222879,20in Monitor,1,109.99,07/17/19 22:17,"168 4th St, Atlanta, GA 30301" +222880,Flatscreen TV,1,300,07/18/19 11:37,"133 6th St, Boston, MA 02215" +222880,Bose SoundSport Headphones,1,99.99,07/18/19 11:37,"133 6th St, Boston, MA 02215" +222881,20in Monitor,1,109.99,07/17/19 14:05,"670 Hill St, Atlanta, GA 30301" +222882,AAA Batteries (4-pack),1,2.99,07/05/19 08:36,"165 Hill St, Seattle, WA 98101" +222883,USB-C Charging Cable,1,11.95,07/18/19 02:25,"79 Lake St, San Francisco, CA 94016" +222884,20in Monitor,1,109.99,07/30/19 19:42,"548 Chestnut St, San Francisco, CA 94016" +222885,Macbook Pro Laptop,1,1700,07/16/19 11:57,"378 7th St, Atlanta, GA 30301" +222886,AAA Batteries (4-pack),1,2.99,07/19/19 12:23,"311 Park St, New York City, NY 10001" +222887,27in FHD Monitor,1,149.99,07/02/19 09:32,"430 Adams St, Dallas, TX 75001" +222888,Lightning Charging Cable,1,14.95,07/23/19 20:05,"801 Sunset St, New York City, NY 10001" +222889,Apple Airpods Headphones,1,150,07/27/19 21:08,"752 Willow St, San Francisco, CA 94016" +222890,iPhone,1,700,07/13/19 19:04,"671 13th St, New York City, NY 10001" +222891,Flatscreen TV,1,300,07/29/19 01:34,"93 12th St, New York City, NY 10001" +222892,Wired Headphones,1,11.99,07/21/19 11:47,"737 13th St, Austin, TX 73301" +222893,Apple Airpods Headphones,1,150,07/26/19 08:45,"472 West St, Los Angeles, CA 90001" +222894,USB-C Charging Cable,1,11.95,07/24/19 18:44,"847 Elm St, Portland, ME 04101" +222895,Macbook Pro Laptop,1,1700,07/14/19 19:25,"23 West St, Seattle, WA 98101" +222896,Google Phone,1,600,07/03/19 15:31,"431 8th St, New York City, NY 10001" +222897,Macbook Pro Laptop,1,1700,07/06/19 11:37,"802 Wilson St, San Francisco, CA 94016" +222898,Macbook Pro Laptop,1,1700,07/14/19 21:00,"312 Highland St, Austin, TX 73301" +222899,20in Monitor,1,109.99,07/30/19 07:06,"9 Sunset St, San Francisco, CA 94016" +222899,Flatscreen TV,1,300,07/30/19 07:06,"9 Sunset St, San Francisco, CA 94016" +222900,Lightning Charging Cable,1,14.95,07/23/19 21:39,"575 Jefferson St, Portland, ME 04101" +222901,Apple Airpods Headphones,1,150,07/02/19 17:20,"974 Jackson St, Los Angeles, CA 90001" +222902,Google Phone,1,600,07/25/19 16:57,"590 Jackson St, San Francisco, CA 94016" +222903,Macbook Pro Laptop,1,1700,07/10/19 10:58,"595 Meadow St, Seattle, WA 98101" +222904,Lightning Charging Cable,1,14.95,07/18/19 17:50,"948 West St, Boston, MA 02215" +222905,27in 4K Gaming Monitor,1,389.99,07/12/19 10:00,"960 Lake St, Los Angeles, CA 90001" +222906,USB-C Charging Cable,1,11.95,07/11/19 09:05,"935 12th St, New York City, NY 10001" +222907,20in Monitor,1,109.99,07/19/19 13:39,"349 Ridge St, Dallas, TX 75001" +222908,AAA Batteries (4-pack),2,2.99,07/16/19 17:10,"612 Pine St, San Francisco, CA 94016" +222909,USB-C Charging Cable,1,11.95,07/13/19 17:19,"11 9th St, Seattle, WA 98101" +222910,34in Ultrawide Monitor,1,379.99,07/02/19 16:22,"663 11th St, Dallas, TX 75001" +222911,AA Batteries (4-pack),1,3.84,07/05/19 13:18,"469 11th St, Seattle, WA 98101" +222912,AAA Batteries (4-pack),3,2.99,07/22/19 14:27,"669 11th St, Atlanta, GA 30301" +222913,Flatscreen TV,1,300,07/11/19 17:11,"995 Main St, San Francisco, CA 94016" +222914,Wired Headphones,1,11.99,07/11/19 13:27,"289 River St, San Francisco, CA 94016" +222915,AA Batteries (4-pack),3,3.84,07/02/19 00:54,"210 Maple St, New York City, NY 10001" +222916,AAA Batteries (4-pack),1,2.99,07/11/19 13:44,"958 8th St, Los Angeles, CA 90001" +222917,AAA Batteries (4-pack),1,2.99,07/28/19 17:12,"499 Center St, Los Angeles, CA 90001" +222918,Vareebadd Phone,1,400,07/13/19 11:52,"624 South St, Los Angeles, CA 90001" +222919,27in FHD Monitor,1,149.99,07/13/19 11:24,"781 Jefferson St, New York City, NY 10001" +222920,USB-C Charging Cable,1,11.95,07/12/19 20:30,"238 Main St, Seattle, WA 98101" +222921,AA Batteries (4-pack),1,3.84,07/03/19 04:18,"317 7th St, New York City, NY 10001" +222922,27in FHD Monitor,1,149.99,07/27/19 09:34,"707 Church St, Atlanta, GA 30301" +222923,AAA Batteries (4-pack),1,2.99,07/10/19 08:51,"194 Lake St, Los Angeles, CA 90001" +222924,USB-C Charging Cable,1,11.95,07/15/19 22:30,"651 12th St, Portland, OR 97035" +222925,Bose SoundSport Headphones,1,99.99,07/13/19 12:26,"794 7th St, Austin, TX 73301" +222926,Flatscreen TV,1,300,07/21/19 11:06,"974 Lake St, San Francisco, CA 94016" +222927,AAA Batteries (4-pack),1,2.99,07/17/19 16:52,"528 Lakeview St, Boston, MA 02215" +222928,27in FHD Monitor,1,149.99,07/05/19 18:22,"691 Adams St, Los Angeles, CA 90001" +222929,AAA Batteries (4-pack),2,2.99,07/29/19 13:14,"956 6th St, Boston, MA 02215" +222930,Bose SoundSport Headphones,1,99.99,07/11/19 22:55,"406 Hill St, Los Angeles, CA 90001" +222931,20in Monitor,1,109.99,07/08/19 22:25,"446 Center St, Atlanta, GA 30301" +222932,Vareebadd Phone,1,400,07/03/19 20:33,"674 Pine St, Atlanta, GA 30301" +222932,Wired Headphones,1,11.99,07/03/19 20:33,"674 Pine St, Atlanta, GA 30301" +222933,27in FHD Monitor,1,149.99,07/29/19 10:20,"44 1st St, Seattle, WA 98101" +222934,AAA Batteries (4-pack),1,2.99,07/31/19 17:18,"979 South St, San Francisco, CA 94016" +222935,Wired Headphones,1,11.99,07/13/19 22:09,"369 Dogwood St, Atlanta, GA 30301" +222936,Bose SoundSport Headphones,1,99.99,07/08/19 19:12,"43 Park St, Seattle, WA 98101" +222937,Bose SoundSport Headphones,1,99.99,07/29/19 17:13,"153 Elm St, Los Angeles, CA 90001" +222938,AAA Batteries (4-pack),1,2.99,07/01/19 10:22,"221 7th St, Atlanta, GA 30301" +222939,Wired Headphones,1,11.99,07/10/19 15:16,"409 Adams St, San Francisco, CA 94016" +222940,Lightning Charging Cable,1,14.95,07/31/19 15:16,"365 Walnut St, San Francisco, CA 94016" +222941,Google Phone,1,600,07/24/19 13:09,"171 South St, Seattle, WA 98101" +222942,Google Phone,1,600,07/08/19 11:50,"940 Meadow St, New York City, NY 10001" +222943,LG Dryer,1,600.0,07/04/19 14:39,"140 Spruce St, New York City, NY 10001" +222944,iPhone,1,700,07/31/19 06:14,"661 11th St, Los Angeles, CA 90001" +222944,Lightning Charging Cable,1,14.95,07/31/19 06:14,"661 11th St, Los Angeles, CA 90001" +222945,Apple Airpods Headphones,1,150,07/22/19 10:33,"889 Cherry St, Seattle, WA 98101" +222946,Lightning Charging Cable,1,14.95,07/20/19 14:20,"872 13th St, New York City, NY 10001" +222947,AAA Batteries (4-pack),1,2.99,07/24/19 10:38,"958 Center St, Seattle, WA 98101" +222948,AAA Batteries (4-pack),2,2.99,07/06/19 08:36,"691 14th St, San Francisco, CA 94016" +222949,Bose SoundSport Headphones,1,99.99,07/12/19 20:46,"688 Park St, New York City, NY 10001" +222950,27in FHD Monitor,1,149.99,07/31/19 18:58,"536 Lincoln St, Boston, MA 02215" +222951,Wired Headphones,2,11.99,07/08/19 20:35,"694 South St, Portland, OR 97035" +222952,Wired Headphones,1,11.99,07/23/19 23:00,"852 Cedar St, Dallas, TX 75001" +222953,AA Batteries (4-pack),1,3.84,07/12/19 09:13,"916 Sunset St, New York City, NY 10001" +222954,AA Batteries (4-pack),4,3.84,07/14/19 14:22,"781 Lincoln St, New York City, NY 10001" +222954,Apple Airpods Headphones,1,150,07/14/19 14:22,"781 Lincoln St, New York City, NY 10001" +222955,Wired Headphones,1,11.99,07/05/19 19:38,"23 Hickory St, San Francisco, CA 94016" +222956,Lightning Charging Cable,1,14.95,07/28/19 17:05,"898 Pine St, Los Angeles, CA 90001" +222957,34in Ultrawide Monitor,1,379.99,07/30/19 12:02,"564 Meadow St, Portland, OR 97035" +222958,20in Monitor,1,109.99,07/07/19 07:23,"68 Forest St, Atlanta, GA 30301" +222959,Lightning Charging Cable,1,14.95,07/08/19 13:54,"28 Dogwood St, Boston, MA 02215" +222960,AAA Batteries (4-pack),1,2.99,07/11/19 10:31,"278 Cedar St, Portland, ME 04101" +222961,ThinkPad Laptop,1,999.99,07/29/19 18:19,"522 Walnut St, Dallas, TX 75001" +222962,34in Ultrawide Monitor,1,379.99,07/03/19 09:16,"5 Lincoln St, Dallas, TX 75001" +222963,ThinkPad Laptop,1,999.99,07/16/19 14:00,"616 Hill St, San Francisco, CA 94016" +222964,AAA Batteries (4-pack),1,2.99,07/12/19 19:22,"242 7th St, Boston, MA 02215" +222965,AA Batteries (4-pack),1,3.84,07/02/19 21:24,"887 2nd St, New York City, NY 10001" +222966,Vareebadd Phone,1,400,07/04/19 09:19,"165 Cherry St, Boston, MA 02215" +222967,AAA Batteries (4-pack),2,2.99,07/20/19 06:44,"987 1st St, Los Angeles, CA 90001" +222968,Wired Headphones,1,11.99,07/24/19 13:28,"744 Jackson St, Los Angeles, CA 90001" +222969,AA Batteries (4-pack),3,3.84,07/29/19 08:06,"140 Main St, San Francisco, CA 94016" +222970,Wired Headphones,1,11.99,07/07/19 10:58,"84 Wilson St, Boston, MA 02215" +222971,20in Monitor,1,109.99,07/17/19 13:40,"650 Highland St, Boston, MA 02215" +222972,Apple Airpods Headphones,1,150,07/14/19 06:04,"843 8th St, Boston, MA 02215" +222973,AAA Batteries (4-pack),1,2.99,07/26/19 13:02,"700 10th St, New York City, NY 10001" +222974,Bose SoundSport Headphones,1,99.99,07/29/19 15:43,"693 Chestnut St, San Francisco, CA 94016" +222974,Lightning Charging Cable,1,14.95,07/29/19 15:43,"693 Chestnut St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +222975,USB-C Charging Cable,1,11.95,07/08/19 13:25,"172 Washington St, San Francisco, CA 94016" +222976,20in Monitor,1,109.99,07/23/19 17:35,"837 North St, Dallas, TX 75001" +222977,AA Batteries (4-pack),1,3.84,07/23/19 12:30,"282 8th St, New York City, NY 10001" +222978,AA Batteries (4-pack),1,3.84,07/16/19 13:22,"734 13th St, San Francisco, CA 94016" +222979,34in Ultrawide Monitor,1,379.99,07/07/19 11:41,"701 Willow St, Portland, ME 04101" +222980,Google Phone,1,600,07/12/19 23:22,"560 North St, Seattle, WA 98101" +222981,AA Batteries (4-pack),1,3.84,07/04/19 15:09,"380 11th St, Austin, TX 73301" +222982,Macbook Pro Laptop,1,1700,07/27/19 19:42,"791 8th St, Portland, OR 97035" +222983,Google Phone,1,600,07/25/19 20:07,"792 8th St, Los Angeles, CA 90001" +222983,USB-C Charging Cable,1,11.95,07/25/19 20:07,"792 8th St, Los Angeles, CA 90001" +222984,Flatscreen TV,1,300,07/17/19 16:29,"898 Johnson St, Seattle, WA 98101" +222985,Wired Headphones,2,11.99,07/01/19 11:02,"627 Walnut St, Atlanta, GA 30301" +222986,AAA Batteries (4-pack),1,2.99,07/19/19 01:16,"291 North St, Atlanta, GA 30301" +222987,Wired Headphones,1,11.99,07/07/19 14:43,"426 Chestnut St, Seattle, WA 98101" +222988,Lightning Charging Cable,1,14.95,07/17/19 23:44,"849 Lakeview St, Boston, MA 02215" +222989,iPhone,1,700,07/06/19 22:48,"795 6th St, New York City, NY 10001" +222990,AAA Batteries (4-pack),1,2.99,07/14/19 22:55,"677 2nd St, Seattle, WA 98101" +222991,Bose SoundSport Headphones,1,99.99,07/11/19 19:42,"216 Chestnut St, Portland, ME 04101" +222992,AA Batteries (4-pack),1,3.84,07/21/19 13:22,"3 6th St, Austin, TX 73301" +222993,Lightning Charging Cable,1,14.95,07/09/19 18:56,"616 North St, Los Angeles, CA 90001" +222994,Bose SoundSport Headphones,1,99.99,07/06/19 11:24,"585 Center St, New York City, NY 10001" +222995,Lightning Charging Cable,1,14.95,07/02/19 18:44,"521 Washington St, San Francisco, CA 94016" +222996,ThinkPad Laptop,1,999.99,07/13/19 16:08,"326 4th St, San Francisco, CA 94016" +222997,Apple Airpods Headphones,1,150,07/15/19 15:18,"246 South St, Portland, OR 97035" +222998,Bose SoundSport Headphones,1,99.99,07/28/19 22:11,"48 13th St, Boston, MA 02215" +222999,Wired Headphones,1,11.99,07/03/19 16:40,"82 River St, New York City, NY 10001" +223000,Wired Headphones,1,11.99,07/16/19 16:55,"651 Walnut St, San Francisco, CA 94016" +223001,Wired Headphones,1,11.99,07/02/19 16:24,"368 Chestnut St, Atlanta, GA 30301" +223002,Lightning Charging Cable,1,14.95,07/17/19 12:20,"235 5th St, Portland, OR 97035" +223003,Google Phone,1,600,07/02/19 20:38,"46 Forest St, Seattle, WA 98101" +223004,Google Phone,1,600,07/30/19 09:37,"440 Hickory St, Atlanta, GA 30301" +223005,USB-C Charging Cable,1,11.95,07/17/19 06:57,"237 West St, Atlanta, GA 30301" +223006,Google Phone,1,600,07/19/19 23:27,"236 Pine St, Atlanta, GA 30301" +223007,Lightning Charging Cable,1,14.95,07/06/19 14:56,"341 Johnson St, Los Angeles, CA 90001" +223008,USB-C Charging Cable,1,11.95,07/21/19 17:34,"593 Dogwood St, Dallas, TX 75001" +223009,27in 4K Gaming Monitor,1,389.99,07/21/19 08:03,"847 Jackson St, Boston, MA 02215" +223010,Lightning Charging Cable,1,14.95,07/10/19 02:36,"556 8th St, San Francisco, CA 94016" +223011,USB-C Charging Cable,2,11.95,07/15/19 21:41,"797 Johnson St, San Francisco, CA 94016" +223012,Lightning Charging Cable,1,14.95,07/18/19 15:14,"275 13th St, Boston, MA 02215" +223013,27in FHD Monitor,1,149.99,07/08/19 18:24,"512 Lakeview St, Atlanta, GA 30301" +223014,Bose SoundSport Headphones,1,99.99,07/30/19 08:34,"351 9th St, Seattle, WA 98101" +223015,Lightning Charging Cable,1,14.95,07/06/19 00:25,"421 Main St, New York City, NY 10001" +223016,Lightning Charging Cable,2,14.95,08/01/19 00:27,"500 Adams St, Los Angeles, CA 90001" +223017,Lightning Charging Cable,1,14.95,07/22/19 20:52,"401 1st St, Seattle, WA 98101" +223018,USB-C Charging Cable,1,11.95,07/07/19 10:05,"519 11th St, Atlanta, GA 30301" +223019,Wired Headphones,1,11.99,07/29/19 10:04,"717 6th St, Portland, ME 04101" +223020,Wired Headphones,1,11.99,07/05/19 12:12,"102 Pine St, Boston, MA 02215" +223021,Wired Headphones,1,11.99,07/03/19 12:40,"82 12th St, Seattle, WA 98101" +223022,Macbook Pro Laptop,1,1700,07/15/19 14:15,"709 South St, Seattle, WA 98101" +223023,Bose SoundSport Headphones,1,99.99,07/08/19 15:30,"150 Main St, San Francisco, CA 94016" +223024,AA Batteries (4-pack),1,3.84,07/09/19 20:56,"534 River St, Los Angeles, CA 90001" +223025,Lightning Charging Cable,1,14.95,07/29/19 20:00,"96 Ridge St, San Francisco, CA 94016" +223026,AA Batteries (4-pack),1,3.84,07/14/19 18:27,"345 12th St, Portland, OR 97035" +223027,27in FHD Monitor,1,149.99,07/29/19 03:54,"616 North St, Austin, TX 73301" +223028,20in Monitor,1,109.99,07/14/19 21:57,"713 West St, Atlanta, GA 30301" +223029,AAA Batteries (4-pack),1,2.99,07/30/19 20:13,"440 14th St, Dallas, TX 75001" +223030,34in Ultrawide Monitor,1,379.99,07/18/19 17:14,"954 4th St, Boston, MA 02215" +223031,AAA Batteries (4-pack),1,2.99,07/17/19 17:54,"96 Adams St, San Francisco, CA 94016" +223032,iPhone,1,700,07/22/19 00:35,"7 10th St, Los Angeles, CA 90001" +223033,USB-C Charging Cable,2,11.95,07/29/19 13:29,"974 Johnson St, New York City, NY 10001" +223034,Lightning Charging Cable,1,14.95,07/04/19 21:01,"940 Jackson St, New York City, NY 10001" +223035,Wired Headphones,1,11.99,07/24/19 22:04,"822 6th St, San Francisco, CA 94016" +223036,20in Monitor,1,109.99,07/06/19 11:15,"914 10th St, Los Angeles, CA 90001" +223037,Wired Headphones,1,11.99,07/03/19 15:02,"756 11th St, Austin, TX 73301" +223038,USB-C Charging Cable,1,11.95,07/30/19 17:41,"684 1st St, Dallas, TX 75001" +223039,27in 4K Gaming Monitor,1,389.99,07/04/19 13:44,"85 Sunset St, Seattle, WA 98101" +223040,Google Phone,1,600,07/14/19 21:06,"322 Spruce St, Atlanta, GA 30301" +223041,AAA Batteries (4-pack),2,2.99,07/06/19 18:27,"301 Willow St, Seattle, WA 98101" +223042,USB-C Charging Cable,1,11.95,07/23/19 22:55,"843 Ridge St, Seattle, WA 98101" +223043,AAA Batteries (4-pack),1,2.99,07/01/19 12:02,"42 Lakeview St, Los Angeles, CA 90001" +223044,34in Ultrawide Monitor,1,379.99,07/05/19 22:21,"848 Wilson St, San Francisco, CA 94016" +223045,27in 4K Gaming Monitor,1,389.99,07/26/19 14:29,"312 Johnson St, Boston, MA 02215" +223046,iPhone,1,700,07/12/19 13:14,"464 Hill St, Boston, MA 02215" +223046,Apple Airpods Headphones,1,150,07/12/19 13:14,"464 Hill St, Boston, MA 02215" +223047,Wired Headphones,1,11.99,07/04/19 13:54,"386 Lincoln St, San Francisco, CA 94016" +223048,Macbook Pro Laptop,1,1700,07/22/19 23:41,"12 12th St, Los Angeles, CA 90001" +223049,USB-C Charging Cable,1,11.95,07/18/19 07:53,"955 4th St, San Francisco, CA 94016" +223050,Wired Headphones,1,11.99,07/24/19 12:23,"375 South St, Los Angeles, CA 90001" +223051,27in 4K Gaming Monitor,1,389.99,07/05/19 22:25,"254 Walnut St, Seattle, WA 98101" +223052,Wired Headphones,1,11.99,07/11/19 20:59,"474 River St, New York City, NY 10001" +223053,Bose SoundSport Headphones,2,99.99,07/01/19 13:15,"975 Highland St, Portland, OR 97035" +223054,AA Batteries (4-pack),2,3.84,07/23/19 14:24,"640 Wilson St, Los Angeles, CA 90001" +223055,27in FHD Monitor,1,149.99,07/08/19 14:08,"772 Hickory St, Atlanta, GA 30301" +223056,Wired Headphones,1,11.99,07/28/19 15:56,"873 Walnut St, Atlanta, GA 30301" +223057,AAA Batteries (4-pack),1,2.99,07/07/19 11:31,"339 10th St, New York City, NY 10001" +223058,Lightning Charging Cable,2,14.95,07/24/19 22:48,"893 Cedar St, Portland, OR 97035" +223059,Bose SoundSport Headphones,1,99.99,07/07/19 10:36,"814 South St, Seattle, WA 98101" +223060,Lightning Charging Cable,1,14.95,07/20/19 12:25,"383 5th St, Austin, TX 73301" +223061,34in Ultrawide Monitor,1,379.99,07/13/19 19:02,"741 9th St, Atlanta, GA 30301" +223062,AAA Batteries (4-pack),2,2.99,07/29/19 09:40,"461 Church St, New York City, NY 10001" +223063,USB-C Charging Cable,1,11.95,07/04/19 20:47,"422 North St, New York City, NY 10001" +223064,ThinkPad Laptop,1,999.99,07/20/19 13:49,"278 1st St, San Francisco, CA 94016" +223065,iPhone,1,700,07/02/19 20:03,"307 6th St, Austin, TX 73301" +223065,Apple Airpods Headphones,1,150,07/02/19 20:03,"307 6th St, Austin, TX 73301" +223066,20in Monitor,1,109.99,07/21/19 06:12,"233 Center St, Dallas, TX 75001" +223067,AA Batteries (4-pack),1,3.84,07/17/19 19:58,"162 South St, Atlanta, GA 30301" +223068,27in FHD Monitor,1,149.99,07/03/19 17:32,"741 Sunset St, Atlanta, GA 30301" +223069,Apple Airpods Headphones,1,150,07/26/19 09:01,"270 Cherry St, San Francisco, CA 94016" +223070,Wired Headphones,1,11.99,07/02/19 20:20,"170 Dogwood St, Seattle, WA 98101" +223071,Bose SoundSport Headphones,1,99.99,07/07/19 10:09,"979 Wilson St, San Francisco, CA 94016" +223072,AA Batteries (4-pack),1,3.84,07/19/19 14:51,"364 Park St, New York City, NY 10001" +223073,Apple Airpods Headphones,1,150,07/04/19 21:33,"399 4th St, Austin, TX 73301" +223074,USB-C Charging Cable,1,11.95,07/25/19 20:32,"587 Lake St, New York City, NY 10001" +223075,Lightning Charging Cable,1,14.95,07/08/19 18:38,"872 River St, Atlanta, GA 30301" +223076,USB-C Charging Cable,1,11.95,07/04/19 22:13,"262 South St, Boston, MA 02215" +223077,AA Batteries (4-pack),1,3.84,07/18/19 08:20,"656 Sunset St, Los Angeles, CA 90001" +223078,Flatscreen TV,1,300,07/26/19 00:04,"748 Walnut St, New York City, NY 10001" +223079,AA Batteries (4-pack),2,3.84,07/05/19 03:51,"356 Park St, Los Angeles, CA 90001" +223080,iPhone,1,700,07/18/19 17:27,"736 4th St, San Francisco, CA 94016" +223080,Lightning Charging Cable,1,14.95,07/18/19 17:27,"736 4th St, San Francisco, CA 94016" +223081,AAA Batteries (4-pack),2,2.99,07/28/19 15:11,"943 Jefferson St, Dallas, TX 75001" +223082,iPhone,1,700,07/07/19 10:04,"41 Willow St, Los Angeles, CA 90001" +223083,Google Phone,1,600,07/25/19 10:09,"517 Hill St, Portland, ME 04101" +223084,AAA Batteries (4-pack),2,2.99,07/16/19 16:49,"5 11th St, San Francisco, CA 94016" +223085,ThinkPad Laptop,1,999.99,07/31/19 09:04,"148 1st St, San Francisco, CA 94016" +223086,Wired Headphones,1,11.99,07/06/19 22:57,"759 Wilson St, San Francisco, CA 94016" +223087,USB-C Charging Cable,1,11.95,07/16/19 15:43,"452 Willow St, New York City, NY 10001" +223088,AAA Batteries (4-pack),1,2.99,07/12/19 19:48,"199 Hill St, Portland, ME 04101" +223089,Lightning Charging Cable,1,14.95,07/22/19 18:40,"553 North St, Dallas, TX 75001" +223090,Wired Headphones,1,11.99,07/22/19 05:10,"730 1st St, San Francisco, CA 94016" +223091,Apple Airpods Headphones,1,150,07/04/19 02:32,"601 West St, Dallas, TX 75001" +223092,27in 4K Gaming Monitor,1,389.99,07/09/19 12:54,"420 Lake St, Boston, MA 02215" +223093,Lightning Charging Cable,1,14.95,07/20/19 12:35,"410 Dogwood St, San Francisco, CA 94016" +223094,USB-C Charging Cable,1,11.95,07/20/19 18:05,"501 Jackson St, Portland, ME 04101" +223095,27in FHD Monitor,1,149.99,07/03/19 12:52,"104 Jackson St, New York City, NY 10001" +223096,USB-C Charging Cable,1,11.95,07/09/19 19:24,"904 Cherry St, Boston, MA 02215" +223096,34in Ultrawide Monitor,1,379.99,07/09/19 19:24,"904 Cherry St, Boston, MA 02215" +223097,20in Monitor,1,109.99,07/27/19 19:45,"196 1st St, Dallas, TX 75001" +223098,AAA Batteries (4-pack),1,2.99,07/07/19 18:43,"356 Willow St, Atlanta, GA 30301" +223099,Lightning Charging Cable,1,14.95,07/30/19 14:57,"676 Maple St, Seattle, WA 98101" +223100,20in Monitor,1,109.99,07/26/19 12:26,"647 South St, Los Angeles, CA 90001" +223101,USB-C Charging Cable,2,11.95,07/27/19 19:43,"229 Forest St, Atlanta, GA 30301" +223102,AAA Batteries (4-pack),1,2.99,07/02/19 10:14,"19 North St, San Francisco, CA 94016" +223103,Wired Headphones,1,11.99,07/20/19 20:31,"35 Sunset St, San Francisco, CA 94016" +223104,AA Batteries (4-pack),3,3.84,07/13/19 12:34,"729 Lincoln St, Portland, OR 97035" +223105,USB-C Charging Cable,1,11.95,07/20/19 00:11,"56 Willow St, Boston, MA 02215" +223106,AA Batteries (4-pack),2,3.84,07/04/19 16:46,"375 Lincoln St, San Francisco, CA 94016" +223106,34in Ultrawide Monitor,1,379.99,07/04/19 16:46,"375 Lincoln St, San Francisco, CA 94016" +223107,Flatscreen TV,1,300,07/30/19 12:32,"358 Adams St, San Francisco, CA 94016" +223108,AAA Batteries (4-pack),1,2.99,07/10/19 11:25,"46 9th St, Portland, OR 97035" +223109,27in 4K Gaming Monitor,1,389.99,07/22/19 21:33,"822 Church St, Austin, TX 73301" +223110,Wired Headphones,1,11.99,07/31/19 14:44,"772 Willow St, San Francisco, CA 94016" +223111,Wired Headphones,1,11.99,07/20/19 09:00,"378 Jefferson St, Los Angeles, CA 90001" +223112,Apple Airpods Headphones,1,150,07/21/19 13:47,"87 12th St, Atlanta, GA 30301" +223113,Wired Headphones,2,11.99,07/01/19 16:43,"206 Walnut St, Atlanta, GA 30301" +223114,Apple Airpods Headphones,1,150,07/07/19 11:27,"507 10th St, Boston, MA 02215" +223115,AA Batteries (4-pack),1,3.84,07/13/19 13:08,"453 Church St, Austin, TX 73301" +223116,AA Batteries (4-pack),2,3.84,07/16/19 13:56,"563 South St, Dallas, TX 75001" +223117,AA Batteries (4-pack),1,3.84,07/28/19 14:13,"410 North St, Atlanta, GA 30301" +223118,Wired Headphones,1,11.99,07/14/19 02:42,"203 Washington St, Boston, MA 02215" +223119,Bose SoundSport Headphones,1,99.99,07/29/19 20:02,"800 Jefferson St, Austin, TX 73301" +223120,AA Batteries (4-pack),1,3.84,07/03/19 12:06,"380 River St, Boston, MA 02215" +223121,Google Phone,1,600,07/06/19 14:24,"958 Cedar St, San Francisco, CA 94016" +223122,Wired Headphones,1,11.99,07/29/19 10:55,"354 6th St, San Francisco, CA 94016" +223123,Apple Airpods Headphones,1,150,07/28/19 16:48,"484 4th St, Los Angeles, CA 90001" +223124,iPhone,1,700,07/08/19 19:47,"554 North St, Los Angeles, CA 90001" +223124,Apple Airpods Headphones,1,150,07/08/19 19:47,"554 North St, Los Angeles, CA 90001" +223125,Apple Airpods Headphones,1,150,07/20/19 09:58,"855 Walnut St, Atlanta, GA 30301" +223126,20in Monitor,1,109.99,07/08/19 12:23,"721 Cherry St, San Francisco, CA 94016" +223127,AA Batteries (4-pack),1,3.84,07/01/19 23:04,"83 4th St, Seattle, WA 98101" +223128,ThinkPad Laptop,1,999.99,07/27/19 17:42,"543 Adams St, Dallas, TX 75001" +223129,Wired Headphones,1,11.99,07/15/19 18:14,"244 Madison St, Boston, MA 02215" +223130,AA Batteries (4-pack),1,3.84,07/08/19 18:07,"589 4th St, Los Angeles, CA 90001" +223131,USB-C Charging Cable,1,11.95,07/09/19 13:49,"692 North St, San Francisco, CA 94016" +223132,LG Washing Machine,1,600.0,07/12/19 12:19,"974 14th St, Boston, MA 02215" +223133,Apple Airpods Headphones,1,150,07/16/19 13:26,"116 7th St, Portland, OR 97035" +223134,USB-C Charging Cable,1,11.95,07/25/19 18:14,"122 Lincoln St, San Francisco, CA 94016" +223135,Apple Airpods Headphones,1,150,07/03/19 21:23,"497 7th St, Los Angeles, CA 90001" +223135,Wired Headphones,1,11.99,07/03/19 21:23,"497 7th St, Los Angeles, CA 90001" +223136,AA Batteries (4-pack),2,3.84,07/13/19 00:16,"821 Elm St, Dallas, TX 75001" +223137,34in Ultrawide Monitor,1,379.99,07/25/19 12:04,"579 Jefferson St, San Francisco, CA 94016" +223138,AAA Batteries (4-pack),1,2.99,07/17/19 15:57,"443 South St, Seattle, WA 98101" +223139,AA Batteries (4-pack),1,3.84,07/04/19 17:06,"511 South St, Dallas, TX 75001" +,,,,, +223140,USB-C Charging Cable,1,11.95,07/08/19 20:22,"132 Johnson St, Boston, MA 02215" +223141,USB-C Charging Cable,1,11.95,07/29/19 22:05,"906 6th St, San Francisco, CA 94016" +223142,Lightning Charging Cable,1,14.95,07/01/19 11:56,"680 4th St, New York City, NY 10001" +223143,Flatscreen TV,1,300,07/30/19 14:50,"466 Lakeview St, New York City, NY 10001" +223144,AAA Batteries (4-pack),2,2.99,07/11/19 16:13,"711 Jackson St, Boston, MA 02215" +223145,Wired Headphones,1,11.99,07/27/19 12:53,"858 Sunset St, New York City, NY 10001" +223146,Wired Headphones,2,11.99,07/12/19 12:28,"725 Pine St, Dallas, TX 75001" +223147,Bose SoundSport Headphones,1,99.99,07/01/19 16:52,"562 Maple St, Atlanta, GA 30301" +223148,27in FHD Monitor,1,149.99,07/28/19 14:46,"654 Meadow St, New York City, NY 10001" +223149,Lightning Charging Cable,1,14.95,07/27/19 11:56,"28 Lincoln St, Austin, TX 73301" +223150,AAA Batteries (4-pack),1,2.99,07/15/19 22:04,"693 Maple St, Austin, TX 73301" +223151,Apple Airpods Headphones,1,150,07/21/19 15:16,"440 11th St, San Francisco, CA 94016" +223152,Google Phone,1,600,07/08/19 14:54,"479 Cedar St, New York City, NY 10001" +223153,AAA Batteries (4-pack),2,2.99,07/07/19 14:57,"637 Church St, Dallas, TX 75001" +223154,27in FHD Monitor,1,149.99,07/02/19 16:22,"926 Lincoln St, Boston, MA 02215" +223155,Wired Headphones,1,11.99,07/18/19 21:38,"571 8th St, San Francisco, CA 94016" +223156,Lightning Charging Cable,1,14.95,07/15/19 14:25,"467 Johnson St, Seattle, WA 98101" +223157,Google Phone,1,600,07/20/19 23:53,"141 Park St, Seattle, WA 98101" +223158,Lightning Charging Cable,1,14.95,07/12/19 14:27,"269 14th St, Los Angeles, CA 90001" +223159,Lightning Charging Cable,2,14.95,07/03/19 20:49,"969 14th St, New York City, NY 10001" +223160,AA Batteries (4-pack),1,3.84,07/04/19 14:49,"375 Center St, San Francisco, CA 94016" +223161,27in FHD Monitor,1,149.99,07/18/19 13:37,"519 13th St, Boston, MA 02215" +223161,27in FHD Monitor,1,149.99,07/18/19 13:37,"519 13th St, Boston, MA 02215" +223162,USB-C Charging Cable,1,11.95,07/28/19 14:58,"375 11th St, San Francisco, CA 94016" +223163,AAA Batteries (4-pack),1,2.99,07/08/19 02:51,"208 2nd St, San Francisco, CA 94016" +223164,AAA Batteries (4-pack),1,2.99,07/01/19 16:24,"658 13th St, Dallas, TX 75001" +223165,AAA Batteries (4-pack),1,2.99,07/15/19 11:29,"528 Walnut St, Los Angeles, CA 90001" +223166,AA Batteries (4-pack),1,3.84,07/25/19 09:07,"8 4th St, San Francisco, CA 94016" +223167,Apple Airpods Headphones,1,150,07/12/19 21:17,"667 Park St, Portland, OR 97035" +223167,20in Monitor,1,109.99,07/12/19 21:17,"667 Park St, Portland, OR 97035" +223168,Bose SoundSport Headphones,1,99.99,07/01/19 21:39,"308 Cherry St, Portland, OR 97035" +223169,Wired Headphones,1,11.99,07/29/19 16:18,"65 12th St, Boston, MA 02215" +223170,AA Batteries (4-pack),1,3.84,07/05/19 17:37,"364 12th St, Dallas, TX 75001" +223171,AA Batteries (4-pack),2,3.84,07/20/19 06:40,"749 Main St, New York City, NY 10001" +223172,AA Batteries (4-pack),1,3.84,07/11/19 23:42,"522 1st St, Atlanta, GA 30301" +223173,Lightning Charging Cable,1,14.95,07/24/19 07:04,"745 Adams St, Boston, MA 02215" +223174,Macbook Pro Laptop,1,1700,07/15/19 12:00,"935 Pine St, Dallas, TX 75001" +223175,Wired Headphones,2,11.99,07/15/19 11:42,"209 Hickory St, Portland, OR 97035" +223176,Wired Headphones,1,11.99,07/21/19 11:44,"349 Chestnut St, Boston, MA 02215" +223177,AAA Batteries (4-pack),1,2.99,07/29/19 19:52,"232 Chestnut St, San Francisco, CA 94016" +223178,Lightning Charging Cable,1,14.95,07/23/19 20:55,"502 Spruce St, Portland, OR 97035" +223179,Google Phone,1,600,07/31/19 08:49,"648 Jackson St, Atlanta, GA 30301" +223180,AA Batteries (4-pack),1,3.84,07/16/19 15:13,"672 River St, New York City, NY 10001" +223181,USB-C Charging Cable,1,11.95,07/18/19 19:33,"185 Lake St, Austin, TX 73301" +223182,USB-C Charging Cable,1,11.95,07/29/19 12:46,"468 5th St, Los Angeles, CA 90001" +223183,USB-C Charging Cable,1,11.95,07/24/19 17:40,"316 6th St, San Francisco, CA 94016" +223184,Macbook Pro Laptop,1,1700,07/29/19 19:47,"547 Johnson St, Dallas, TX 75001" +223185,Flatscreen TV,1,300,07/16/19 07:08,"430 Highland St, San Francisco, CA 94016" +223186,USB-C Charging Cable,1,11.95,07/11/19 21:36,"500 Ridge St, Seattle, WA 98101" +223187,27in 4K Gaming Monitor,1,389.99,07/15/19 19:46,"10 Highland St, Portland, OR 97035" +223188,Bose SoundSport Headphones,1,99.99,07/02/19 17:18,"203 9th St, San Francisco, CA 94016" +223189,Bose SoundSport Headphones,1,99.99,07/17/19 15:43,"629 Hill St, Seattle, WA 98101" +223190,Bose SoundSport Headphones,1,99.99,07/26/19 13:00,"1 11th St, Atlanta, GA 30301" +223191,AA Batteries (4-pack),1,3.84,07/06/19 14:07,"685 Hickory St, Atlanta, GA 30301" +223192,Bose SoundSport Headphones,1,99.99,07/04/19 14:06,"134 Hickory St, Portland, OR 97035" +223193,AAA Batteries (4-pack),1,2.99,07/06/19 01:07,"70 Walnut St, Dallas, TX 75001" +223194,Wired Headphones,1,11.99,07/20/19 08:11,"520 Sunset St, Boston, MA 02215" +223195,27in FHD Monitor,1,149.99,07/21/19 17:00,"748 Church St, San Francisco, CA 94016" +223196,Apple Airpods Headphones,1,150,07/08/19 20:35,"806 14th St, Los Angeles, CA 90001" +223197,iPhone,1,700,07/07/19 21:25,"598 Meadow St, San Francisco, CA 94016" +223197,Wired Headphones,1,11.99,07/07/19 21:25,"598 Meadow St, San Francisco, CA 94016" +223198,iPhone,1,700,07/02/19 11:07,"309 Pine St, Seattle, WA 98101" +223199,Bose SoundSport Headphones,1,99.99,07/15/19 18:32,"820 6th St, New York City, NY 10001" +223200,Lightning Charging Cable,1,14.95,07/04/19 00:39,"302 14th St, Austin, TX 73301" +223201,27in 4K Gaming Monitor,1,389.99,07/03/19 19:35,"271 North St, Los Angeles, CA 90001" +223202,USB-C Charging Cable,1,11.95,07/10/19 11:10,"33 11th St, Atlanta, GA 30301" +223203,Flatscreen TV,1,300,07/12/19 20:13,"827 Cherry St, Dallas, TX 75001" +223204,Macbook Pro Laptop,1,1700,07/17/19 19:49,"747 6th St, Boston, MA 02215" +223205,20in Monitor,1,109.99,07/21/19 22:02,"426 9th St, Atlanta, GA 30301" +223206,USB-C Charging Cable,1,11.95,07/15/19 21:40,"542 13th St, Portland, OR 97035" +223207,Apple Airpods Headphones,1,150,07/24/19 17:24,"243 South St, Atlanta, GA 30301" +223208,iPhone,1,700,07/15/19 05:28,"926 Wilson St, Portland, OR 97035" +223208,Lightning Charging Cable,1,14.95,07/15/19 05:28,"926 Wilson St, Portland, OR 97035" +223209,Bose SoundSport Headphones,1,99.99,07/20/19 19:16,"457 12th St, Portland, OR 97035" +223210,iPhone,1,700,07/03/19 18:59,"769 Lakeview St, Portland, OR 97035" +223211,Google Phone,1,600,07/29/19 12:13,"480 Cedar St, Los Angeles, CA 90001" +223212,Apple Airpods Headphones,1,150,07/17/19 10:47,"101 Lake St, San Francisco, CA 94016" +223213,AA Batteries (4-pack),2,3.84,07/06/19 12:24,"133 2nd St, Los Angeles, CA 90001" +223214,Lightning Charging Cable,1,14.95,07/09/19 11:06,"295 6th St, San Francisco, CA 94016" +223215,Google Phone,1,600,07/12/19 19:12,"625 North St, San Francisco, CA 94016" +223216,USB-C Charging Cable,1,11.95,07/28/19 13:47,"533 Wilson St, Atlanta, GA 30301" +223217,AA Batteries (4-pack),2,3.84,07/03/19 11:46,"269 Willow St, Dallas, TX 75001" +223218,AA Batteries (4-pack),1,3.84,07/04/19 11:28,"803 10th St, Boston, MA 02215" +223219,Bose SoundSport Headphones,1,99.99,07/23/19 16:32,"24 14th St, Portland, OR 97035" +223220,Flatscreen TV,1,300,07/23/19 22:39,"259 Cedar St, San Francisco, CA 94016" +223221,Bose SoundSport Headphones,1,99.99,07/22/19 20:45,"402 14th St, Austin, TX 73301" +223222,Google Phone,1,600,07/13/19 11:45,"317 Main St, Austin, TX 73301" +223222,USB-C Charging Cable,1,11.95,07/13/19 11:45,"317 Main St, Austin, TX 73301" +223223,AA Batteries (4-pack),1,3.84,07/21/19 11:21,"209 Meadow St, Atlanta, GA 30301" +223224,27in 4K Gaming Monitor,1,389.99,07/17/19 14:37,"68 10th St, Atlanta, GA 30301" +223225,Lightning Charging Cable,1,14.95,07/02/19 12:40,"933 Park St, Boston, MA 02215" +223226,Flatscreen TV,1,300,07/25/19 11:43,"55 Hill St, San Francisco, CA 94016" +223227,Bose SoundSport Headphones,1,99.99,07/23/19 19:51,"907 13th St, San Francisco, CA 94016" +223228,Wired Headphones,1,11.99,07/28/19 11:57,"667 South St, Los Angeles, CA 90001" +223228,Apple Airpods Headphones,1,150,07/28/19 11:57,"667 South St, Los Angeles, CA 90001" +223229,ThinkPad Laptop,1,999.99,07/02/19 00:12,"972 Ridge St, San Francisco, CA 94016" +223230,ThinkPad Laptop,1,999.99,07/21/19 12:55,"332 Church St, New York City, NY 10001" +223231,Vareebadd Phone,1,400,07/13/19 15:11,"533 11th St, Seattle, WA 98101" +223232,USB-C Charging Cable,1,11.95,07/08/19 17:39,"291 Meadow St, New York City, NY 10001" +223233,Lightning Charging Cable,1,14.95,07/17/19 15:57,"856 Hill St, San Francisco, CA 94016" +223234,Vareebadd Phone,1,400,07/19/19 18:46,"83 10th St, Boston, MA 02215" +223235,AA Batteries (4-pack),1,3.84,07/18/19 19:38,"884 14th St, New York City, NY 10001" +223236,Wired Headphones,1,11.99,07/02/19 19:31,"347 Maple St, San Francisco, CA 94016" +223237,34in Ultrawide Monitor,1,379.99,07/13/19 18:03,"870 Cherry St, San Francisco, CA 94016" +223238,27in FHD Monitor,1,149.99,07/18/19 12:36,"424 Madison St, San Francisco, CA 94016" +223239,Lightning Charging Cable,1,14.95,07/02/19 07:42,"571 South St, Seattle, WA 98101" +223240,Vareebadd Phone,1,400,07/28/19 23:15,"125 Cherry St, Atlanta, GA 30301" +223241,AAA Batteries (4-pack),1,2.99,07/28/19 22:28,"286 Main St, New York City, NY 10001" +223242,Lightning Charging Cable,1,14.95,07/25/19 22:31,"477 Lincoln St, Seattle, WA 98101" +,,,,, +223243,Lightning Charging Cable,1,14.95,07/11/19 13:02,"922 12th St, Seattle, WA 98101" +223244,iPhone,1,700,07/01/19 23:50,"927 Main St, Dallas, TX 75001" +223245,Wired Headphones,1,11.99,07/07/19 16:12,"479 Lakeview St, Boston, MA 02215" +223246,Wired Headphones,1,11.99,07/22/19 07:28,"233 5th St, Dallas, TX 75001" +223246,Vareebadd Phone,1,400,07/22/19 07:28,"233 5th St, Dallas, TX 75001" +223247,Wired Headphones,1,11.99,07/29/19 16:03,"148 Cherry St, Seattle, WA 98101" +223248,Wired Headphones,1,11.99,07/16/19 21:02,"447 Sunset St, Los Angeles, CA 90001" +223249,AA Batteries (4-pack),1,3.84,07/19/19 22:02,"554 6th St, Seattle, WA 98101" +223250,Bose SoundSport Headphones,1,99.99,07/03/19 15:43,"146 Church St, San Francisco, CA 94016" +223251,Apple Airpods Headphones,1,150,07/23/19 19:04,"42 7th St, New York City, NY 10001" +223252,Apple Airpods Headphones,1,150,07/17/19 00:13,"926 Spruce St, San Francisco, CA 94016" +223253,Macbook Pro Laptop,1,1700,07/28/19 18:28,"941 Wilson St, San Francisco, CA 94016" +223254,AAA Batteries (4-pack),2,2.99,07/12/19 18:12,"296 2nd St, Atlanta, GA 30301" +223255,27in 4K Gaming Monitor,1,389.99,07/14/19 13:23,"523 West St, San Francisco, CA 94016" +223256,AA Batteries (4-pack),1,3.84,07/10/19 10:21,"497 10th St, Boston, MA 02215" +223257,Lightning Charging Cable,1,14.95,07/05/19 09:17,"262 Pine St, Atlanta, GA 30301" +223258,AA Batteries (4-pack),1,3.84,07/24/19 08:35,"270 Main St, Los Angeles, CA 90001" +223259,Apple Airpods Headphones,1,150,07/05/19 13:59,"199 8th St, Austin, TX 73301" +223260,USB-C Charging Cable,1,11.95,07/16/19 23:12,"418 Johnson St, Austin, TX 73301" +223261,Lightning Charging Cable,1,14.95,07/06/19 11:21,"547 Johnson St, Boston, MA 02215" +223262,ThinkPad Laptop,1,999.99,07/18/19 19:05,"367 9th St, Los Angeles, CA 90001" +223263,Lightning Charging Cable,1,14.95,07/15/19 20:03,"992 Chestnut St, San Francisco, CA 94016" +223264,Apple Airpods Headphones,1,150,07/09/19 15:07,"537 River St, Portland, OR 97035" +223265,iPhone,1,700,07/28/19 11:08,"984 North St, San Francisco, CA 94016" +223265,Apple Airpods Headphones,1,150,07/28/19 11:08,"984 North St, San Francisco, CA 94016" +223266,AAA Batteries (4-pack),1,2.99,07/18/19 19:01,"184 Ridge St, San Francisco, CA 94016" +223267,Wired Headphones,1,11.99,07/04/19 14:38,"230 4th St, Dallas, TX 75001" +223268,iPhone,1,700,07/16/19 11:19,"742 Johnson St, Austin, TX 73301" +223268,Wired Headphones,1,11.99,07/16/19 11:19,"742 Johnson St, Austin, TX 73301" +223269,20in Monitor,1,109.99,07/23/19 08:43,"710 Lincoln St, San Francisco, CA 94016" +223270,iPhone,1,700,07/25/19 23:03,"112 Dogwood St, Dallas, TX 75001" +223271,Bose SoundSport Headphones,1,99.99,07/08/19 01:23,"193 Cherry St, Boston, MA 02215" +223272,Lightning Charging Cable,1,14.95,07/28/19 20:08,"364 Forest St, Seattle, WA 98101" +223273,LG Dryer,1,600.0,07/19/19 14:58,"823 Lakeview St, New York City, NY 10001" +223274,Bose SoundSport Headphones,1,99.99,07/20/19 12:09,"129 Willow St, New York City, NY 10001" +223275,AA Batteries (4-pack),1,3.84,07/05/19 13:49,"968 Hill St, San Francisco, CA 94016" +223276,USB-C Charging Cable,1,11.95,07/09/19 17:26,"366 6th St, Atlanta, GA 30301" +223277,Lightning Charging Cable,1,14.95,07/20/19 14:11,"465 Highland St, Atlanta, GA 30301" +223278,Vareebadd Phone,1,400,07/04/19 10:58,"323 11th St, Seattle, WA 98101" +223279,Wired Headphones,1,11.99,07/11/19 15:55,"167 4th St, Boston, MA 02215" +223280,AAA Batteries (4-pack),1,2.99,07/10/19 06:34,"787 2nd St, Los Angeles, CA 90001" +223281,Apple Airpods Headphones,1,150,07/16/19 12:37,"256 Washington St, Boston, MA 02215" +223282,27in FHD Monitor,1,149.99,07/27/19 16:48,"183 9th St, New York City, NY 10001" +223283,AAA Batteries (4-pack),2,2.99,07/01/19 13:52,"467 Center St, San Francisco, CA 94016" +223284,Lightning Charging Cable,1,14.95,07/23/19 18:50,"947 Park St, Dallas, TX 75001" +223285,USB-C Charging Cable,2,11.95,07/27/19 12:51,"100 Maple St, Los Angeles, CA 90001" +223286,34in Ultrawide Monitor,1,379.99,07/18/19 13:44,"504 River St, Dallas, TX 75001" +223287,Lightning Charging Cable,1,14.95,07/19/19 21:16,"323 Cherry St, New York City, NY 10001" +223288,34in Ultrawide Monitor,1,379.99,07/05/19 16:35,"330 Lakeview St, New York City, NY 10001" +223289,AAA Batteries (4-pack),1,2.99,07/08/19 02:48,"313 Wilson St, Los Angeles, CA 90001" +223290,Bose SoundSport Headphones,1,99.99,07/15/19 11:55,"425 Ridge St, Seattle, WA 98101" +223291,AA Batteries (4-pack),1,3.84,07/17/19 09:19,"202 1st St, San Francisco, CA 94016" +223292,AA Batteries (4-pack),1,3.84,07/17/19 07:31,"279 6th St, Dallas, TX 75001" +223293,Bose SoundSport Headphones,1,99.99,07/07/19 11:02,"596 Main St, San Francisco, CA 94016" +223294,AA Batteries (4-pack),1,3.84,07/28/19 21:32,"656 Jackson St, San Francisco, CA 94016" +223295,iPhone,1,700,07/16/19 21:53,"820 Walnut St, Portland, OR 97035" +223296,Apple Airpods Headphones,1,150,07/20/19 11:31,"918 Wilson St, Dallas, TX 75001" +223297,USB-C Charging Cable,1,11.95,07/15/19 12:14,"700 9th St, Boston, MA 02215" +223298,AAA Batteries (4-pack),1,2.99,07/26/19 23:46,"785 Madison St, Los Angeles, CA 90001" +223299,Lightning Charging Cable,1,14.95,07/02/19 19:26,"626 10th St, Boston, MA 02215" +223300,iPhone,1,700,07/23/19 15:58,"462 4th St, Dallas, TX 75001" +223301,iPhone,1,700,07/22/19 09:22,"707 9th St, Austin, TX 73301" +223302,AA Batteries (4-pack),1,3.84,07/09/19 13:18,"194 Walnut St, Portland, ME 04101" +223303,27in 4K Gaming Monitor,1,389.99,07/17/19 00:35,"410 Highland St, Portland, ME 04101" +223304,AAA Batteries (4-pack),2,2.99,07/19/19 00:07,"122 Cherry St, Boston, MA 02215" +223305,USB-C Charging Cable,1,11.95,07/14/19 22:45,"922 West St, Boston, MA 02215" +223306,USB-C Charging Cable,1,11.95,07/27/19 18:48,"343 Wilson St, San Francisco, CA 94016" +223307,USB-C Charging Cable,1,11.95,07/04/19 13:02,"765 Walnut St, Boston, MA 02215" +223308,AAA Batteries (4-pack),3,2.99,07/28/19 12:38,"786 13th St, Boston, MA 02215" +223309,Bose SoundSport Headphones,1,99.99,07/29/19 22:38,"471 North St, Dallas, TX 75001" +223310,Bose SoundSport Headphones,1,99.99,07/28/19 07:26,"536 Chestnut St, Seattle, WA 98101" +223311,Macbook Pro Laptop,1,1700,07/22/19 11:30,"987 6th St, New York City, NY 10001" +223312,Lightning Charging Cable,1,14.95,07/28/19 16:19,"55 8th St, Seattle, WA 98101" +223313,34in Ultrawide Monitor,1,379.99,07/05/19 00:30,"550 11th St, Boston, MA 02215" +223313,Apple Airpods Headphones,1,150,07/05/19 00:30,"550 11th St, Boston, MA 02215" +223314,Lightning Charging Cable,1,14.95,07/17/19 20:02,"176 North St, San Francisco, CA 94016" +223315,Lightning Charging Cable,1,14.95,07/08/19 12:53,"665 Wilson St, New York City, NY 10001" +223316,Lightning Charging Cable,1,14.95,07/30/19 12:11,"202 South St, Los Angeles, CA 90001" +223317,Lightning Charging Cable,1,14.95,07/15/19 10:09,"727 14th St, San Francisco, CA 94016" +223318,AAA Batteries (4-pack),1,2.99,07/17/19 15:04,"538 Johnson St, San Francisco, CA 94016" +223319,Google Phone,1,600,07/01/19 20:53,"340 Park St, Los Angeles, CA 90001" +223319,USB-C Charging Cable,1,11.95,07/01/19 20:53,"340 Park St, Los Angeles, CA 90001" +223320,Lightning Charging Cable,2,14.95,07/31/19 23:10,"483 West St, New York City, NY 10001" +223321,USB-C Charging Cable,1,11.95,07/31/19 22:31,"826 Ridge St, New York City, NY 10001" +223322,USB-C Charging Cable,1,11.95,07/02/19 12:42,"777 Main St, Atlanta, GA 30301" +223323,34in Ultrawide Monitor,1,379.99,07/09/19 18:02,"495 12th St, Atlanta, GA 30301" +223324,AA Batteries (4-pack),2,3.84,07/16/19 11:58,"457 11th St, Austin, TX 73301" +223325,USB-C Charging Cable,1,11.95,07/25/19 22:32,"449 Sunset St, Portland, OR 97035" +223326,27in FHD Monitor,1,149.99,07/10/19 18:20,"907 Elm St, Los Angeles, CA 90001" +223327,Lightning Charging Cable,1,14.95,07/15/19 22:04,"152 Washington St, New York City, NY 10001" +223328,Lightning Charging Cable,1,14.95,07/26/19 12:46,"745 Meadow St, Portland, OR 97035" +223329,Apple Airpods Headphones,1,150,07/16/19 19:17,"865 Johnson St, Dallas, TX 75001" +223330,Lightning Charging Cable,1,14.95,07/21/19 12:12,"950 Elm St, Los Angeles, CA 90001" +223331,Lightning Charging Cable,1,14.95,07/24/19 06:10,"536 Main St, San Francisco, CA 94016" +223332,Macbook Pro Laptop,1,1700,07/13/19 20:21,"866 13th St, San Francisco, CA 94016" +223333,27in 4K Gaming Monitor,1,389.99,07/09/19 11:40,"321 Ridge St, New York City, NY 10001" +223334,ThinkPad Laptop,1,999.99,07/02/19 19:28,"321 Dogwood St, New York City, NY 10001" +223335,34in Ultrawide Monitor,1,379.99,07/15/19 20:01,"127 Hill St, San Francisco, CA 94016" +223336,AAA Batteries (4-pack),1,2.99,07/26/19 21:48,"480 Johnson St, Atlanta, GA 30301" +223337,Lightning Charging Cable,1,14.95,07/05/19 05:11,"375 Lakeview St, Portland, OR 97035" +223338,27in 4K Gaming Monitor,1,389.99,07/27/19 23:11,"393 Willow St, Seattle, WA 98101" +223339,Wired Headphones,1,11.99,07/20/19 13:58,"737 Hickory St, Boston, MA 02215" +223340,AA Batteries (4-pack),1,3.84,07/12/19 10:17,"121 Wilson St, Austin, TX 73301" +223341,Lightning Charging Cable,1,14.95,07/10/19 16:26,"421 13th St, Los Angeles, CA 90001" +223342,Wired Headphones,1,11.99,07/24/19 11:36,"487 Walnut St, Los Angeles, CA 90001" +223343,34in Ultrawide Monitor,1,379.99,07/07/19 15:41,"410 River St, Portland, OR 97035" +223344,AA Batteries (4-pack),1,3.84,07/13/19 13:09,"520 Spruce St, New York City, NY 10001" +223345,20in Monitor,1,109.99,07/02/19 21:19,"880 Cherry St, San Francisco, CA 94016" +223346,AAA Batteries (4-pack),1,2.99,07/16/19 20:40,"749 Maple St, Los Angeles, CA 90001" +223347,AAA Batteries (4-pack),5,2.99,07/19/19 16:49,"414 Sunset St, Los Angeles, CA 90001" +223348,AAA Batteries (4-pack),1,2.99,07/07/19 18:24,"181 Lakeview St, Atlanta, GA 30301" +223349,Wired Headphones,1,11.99,07/24/19 16:22,"270 Meadow St, Los Angeles, CA 90001" +223350,AAA Batteries (4-pack),1,2.99,07/01/19 20:57,"865 4th St, Austin, TX 73301" +223351,34in Ultrawide Monitor,1,379.99,07/23/19 22:23,"174 2nd St, Portland, OR 97035" +223352,Lightning Charging Cable,1,14.95,07/19/19 00:46,"933 Main St, Los Angeles, CA 90001" +223353,Apple Airpods Headphones,1,150,07/14/19 16:19,"978 Ridge St, New York City, NY 10001" +223354,Wired Headphones,1,11.99,07/15/19 08:57,"144 5th St, New York City, NY 10001" +223355,27in FHD Monitor,1,149.99,07/31/19 00:35,"542 Walnut St, Austin, TX 73301" +223356,Macbook Pro Laptop,1,1700,07/15/19 14:46,"59 North St, Portland, ME 04101" +223357,Lightning Charging Cable,1,14.95,07/15/19 20:20,"966 North St, San Francisco, CA 94016" +223358,Wired Headphones,1,11.99,07/30/19 16:04,"30 Willow St, Seattle, WA 98101" +223359,Flatscreen TV,1,300,07/15/19 22:14,"835 Walnut St, San Francisco, CA 94016" +223360,Wired Headphones,1,11.99,07/11/19 21:32,"89 Willow St, Seattle, WA 98101" +223360,Macbook Pro Laptop,1,1700,07/11/19 21:32,"89 Willow St, Seattle, WA 98101" +223361,AA Batteries (4-pack),2,3.84,07/05/19 09:27,"248 8th St, Los Angeles, CA 90001" +223362,34in Ultrawide Monitor,1,379.99,07/19/19 23:46,"422 Jackson St, San Francisco, CA 94016" +223363,ThinkPad Laptop,1,999.99,07/18/19 16:09,"136 Hickory St, New York City, NY 10001" +223364,Flatscreen TV,1,300,07/26/19 14:38,"411 Maple St, San Francisco, CA 94016" +223365,Lightning Charging Cable,1,14.95,07/18/19 09:44,"239 Adams St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +223366,AAA Batteries (4-pack),3,2.99,07/14/19 18:18,"13 Meadow St, New York City, NY 10001" +223367,Bose SoundSport Headphones,1,99.99,07/03/19 21:24,"832 Madison St, Boston, MA 02215" +223368,27in 4K Gaming Monitor,1,389.99,07/06/19 11:18,"168 9th St, Austin, TX 73301" +223369,Apple Airpods Headphones,1,150,07/18/19 09:13,"463 North St, Portland, ME 04101" +223370,Lightning Charging Cable,2,14.95,07/05/19 12:15,"401 Adams St, New York City, NY 10001" +223371,USB-C Charging Cable,1,11.95,07/09/19 19:36,"8 Jackson St, Portland, OR 97035" +223372,ThinkPad Laptop,1,999.99,07/23/19 17:31,"158 4th St, Los Angeles, CA 90001" +223373,Bose SoundSport Headphones,1,99.99,07/09/19 08:41,"693 Sunset St, San Francisco, CA 94016" +223374,Lightning Charging Cable,1,14.95,07/19/19 18:10,"597 Ridge St, Los Angeles, CA 90001" +223375,AA Batteries (4-pack),1,3.84,07/03/19 16:19,"440 Lakeview St, New York City, NY 10001" +223376,Wired Headphones,1,11.99,07/25/19 10:09,"762 7th St, New York City, NY 10001" +223377,Apple Airpods Headphones,1,150,07/22/19 19:18,"905 Lake St, Atlanta, GA 30301" +223378,Bose SoundSport Headphones,1,99.99,07/30/19 15:45,"576 Dogwood St, New York City, NY 10001" +223379,Google Phone,1,600,07/17/19 08:47,"529 Park St, Boston, MA 02215" +223379,USB-C Charging Cable,1,11.95,07/17/19 08:47,"529 Park St, Boston, MA 02215" +223380,USB-C Charging Cable,1,11.95,07/03/19 10:55,"741 Cherry St, New York City, NY 10001" +223381,Apple Airpods Headphones,1,150,07/03/19 16:31,"616 North St, Los Angeles, CA 90001" +223382,Apple Airpods Headphones,1,150,07/17/19 08:09,"942 2nd St, Dallas, TX 75001" +223383,iPhone,1,700,07/12/19 20:11,"192 6th St, Los Angeles, CA 90001" +223384,Bose SoundSport Headphones,1,99.99,07/29/19 16:50,"976 Park St, Los Angeles, CA 90001" +223385,Wired Headphones,1,11.99,07/31/19 17:07,"496 Center St, Portland, OR 97035" +223386,27in FHD Monitor,1,149.99,07/05/19 16:56,"19 Main St, Los Angeles, CA 90001" +223387,AA Batteries (4-pack),1,3.84,07/14/19 03:22,"775 Park St, Atlanta, GA 30301" +223388,Lightning Charging Cable,1,14.95,07/28/19 12:55,"458 Madison St, Los Angeles, CA 90001" +223389,Bose SoundSport Headphones,1,99.99,07/26/19 21:41,"379 11th St, Seattle, WA 98101" +223390,AAA Batteries (4-pack),1,2.99,07/28/19 00:07,"905 Lincoln St, San Francisco, CA 94016" +223391,Flatscreen TV,1,300,07/09/19 12:21,"701 Spruce St, San Francisco, CA 94016" +223392,USB-C Charging Cable,1,11.95,07/22/19 10:39,"929 4th St, New York City, NY 10001" +223393,Lightning Charging Cable,1,14.95,07/26/19 18:06,"212 Spruce St, Los Angeles, CA 90001" +223394,Lightning Charging Cable,1,14.95,07/26/19 19:17,"539 Church St, Austin, TX 73301" +223395,AAA Batteries (4-pack),1,2.99,07/19/19 19:59,"183 Ridge St, New York City, NY 10001" +223396,AAA Batteries (4-pack),1,2.99,07/15/19 23:21,"288 8th St, Los Angeles, CA 90001" +223397,LG Dryer,1,600.0,07/01/19 17:44,"971 Maple St, Dallas, TX 75001" +223398,Google Phone,1,600,07/12/19 13:23,"220 4th St, Atlanta, GA 30301" +223399,Lightning Charging Cable,1,14.95,07/12/19 09:31,"709 2nd St, Atlanta, GA 30301" +223400,27in FHD Monitor,1,149.99,07/15/19 12:58,"416 Ridge St, Dallas, TX 75001" +223401,Wired Headphones,1,11.99,07/28/19 17:56,"233 Lake St, San Francisco, CA 94016" +223402,Macbook Pro Laptop,1,1700,07/22/19 11:57,"456 14th St, Atlanta, GA 30301" +223403,USB-C Charging Cable,1,11.95,07/23/19 15:59,"497 13th St, Los Angeles, CA 90001" +223404,27in 4K Gaming Monitor,1,389.99,07/16/19 10:45,"959 Elm St, Austin, TX 73301" +223405,Flatscreen TV,1,300,07/15/19 15:37,"750 Lakeview St, Los Angeles, CA 90001" +223406,AA Batteries (4-pack),1,3.84,07/03/19 09:17,"69 14th St, Portland, OR 97035" +223407,Vareebadd Phone,1,400,07/29/19 11:00,"797 Hill St, Seattle, WA 98101" +223408,USB-C Charging Cable,2,11.95,07/26/19 16:18,"377 Hickory St, Atlanta, GA 30301" +223409,AA Batteries (4-pack),1,3.84,07/19/19 11:34,"84 Spruce St, Boston, MA 02215" +223410,Bose SoundSport Headphones,1,99.99,07/29/19 16:50,"781 Cedar St, Dallas, TX 75001" +223411,USB-C Charging Cable,1,11.95,07/05/19 07:03,"215 12th St, Dallas, TX 75001" +223412,34in Ultrawide Monitor,1,379.99,07/19/19 15:03,"32 Park St, Los Angeles, CA 90001" +223413,iPhone,1,700,07/12/19 20:08,"145 11th St, Los Angeles, CA 90001" +223414,ThinkPad Laptop,1,999.99,07/28/19 15:55,"720 Hickory St, Los Angeles, CA 90001" +223415,Google Phone,1,600,07/09/19 16:10,"850 10th St, San Francisco, CA 94016" +223416,27in 4K Gaming Monitor,1,389.99,07/22/19 23:58,"248 13th St, San Francisco, CA 94016" +223417,Macbook Pro Laptop,1,1700,07/02/19 02:41,"954 Cherry St, New York City, NY 10001" +223418,USB-C Charging Cable,1,11.95,07/03/19 07:01,"236 9th St, San Francisco, CA 94016" +223419,AAA Batteries (4-pack),1,2.99,07/31/19 21:33,"193 11th St, Los Angeles, CA 90001" +223420,USB-C Charging Cable,1,11.95,07/03/19 13:04,"124 Dogwood St, Los Angeles, CA 90001" +223421,27in 4K Gaming Monitor,1,389.99,07/29/19 17:13,"673 Jackson St, San Francisco, CA 94016" +223422,USB-C Charging Cable,1,11.95,07/14/19 21:15,"918 Forest St, San Francisco, CA 94016" +223423,Lightning Charging Cable,1,14.95,07/26/19 20:53,"1 Church St, Los Angeles, CA 90001" +223424,USB-C Charging Cable,1,11.95,07/20/19 07:03,"285 Forest St, San Francisco, CA 94016" +223425,20in Monitor,1,109.99,07/18/19 09:40,"707 Hill St, New York City, NY 10001" +223426,AA Batteries (4-pack),1,3.84,07/07/19 14:16,"238 Highland St, Seattle, WA 98101" +223427,Lightning Charging Cable,1,14.95,07/07/19 12:03,"268 12th St, Los Angeles, CA 90001" +223428,27in FHD Monitor,1,149.99,07/09/19 15:34,"115 1st St, New York City, NY 10001" +223429,AA Batteries (4-pack),1,3.84,07/20/19 11:14,"440 Park St, Seattle, WA 98101" +223430,AAA Batteries (4-pack),1,2.99,07/02/19 21:46,"240 Lakeview St, San Francisco, CA 94016" +223431,Lightning Charging Cable,1,14.95,07/29/19 16:45,"471 Johnson St, Austin, TX 73301" +223431,Lightning Charging Cable,1,14.95,07/29/19 16:45,"471 Johnson St, Austin, TX 73301" +223432,USB-C Charging Cable,1,11.95,07/14/19 10:17,"97 1st St, Boston, MA 02215" +223433,ThinkPad Laptop,1,999.99,07/23/19 07:02,"840 Adams St, Seattle, WA 98101" +223434,34in Ultrawide Monitor,1,379.99,07/24/19 23:59,"724 Walnut St, New York City, NY 10001" +223435,Apple Airpods Headphones,1,150,07/20/19 21:45,"542 River St, Portland, OR 97035" +223436,AA Batteries (4-pack),1,3.84,07/17/19 22:26,"833 Cedar St, New York City, NY 10001" +223437,Wired Headphones,1,11.99,07/10/19 20:23,"171 Lake St, Portland, OR 97035" +223438,Bose SoundSport Headphones,1,99.99,07/07/19 12:13,"424 8th St, Portland, OR 97035" +223439,Lightning Charging Cable,1,14.95,07/22/19 14:25,"873 Main St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +223440,AAA Batteries (4-pack),1,2.99,07/21/19 17:07,"315 Cedar St, Boston, MA 02215" +223441,27in 4K Gaming Monitor,1,389.99,07/24/19 19:31,"116 10th St, San Francisco, CA 94016" +223442,USB-C Charging Cable,1,11.95,07/10/19 11:13,"118 Walnut St, Boston, MA 02215" +223443,AA Batteries (4-pack),1,3.84,07/19/19 13:42,"771 Jackson St, Los Angeles, CA 90001" +223444,USB-C Charging Cable,2,11.95,07/07/19 15:22,"106 9th St, New York City, NY 10001" +223445,27in FHD Monitor,1,149.99,07/01/19 20:10,"265 Jefferson St, Atlanta, GA 30301" +223446,27in 4K Gaming Monitor,1,389.99,07/09/19 05:54,"951 Maple St, Dallas, TX 75001" +223447,AA Batteries (4-pack),1,3.84,07/24/19 12:32,"558 13th St, Boston, MA 02215" +223448,Flatscreen TV,1,300,07/22/19 09:49,"873 Jefferson St, Atlanta, GA 30301" +223449,AAA Batteries (4-pack),1,2.99,07/11/19 16:00,"68 Pine St, Seattle, WA 98101" +223450,Apple Airpods Headphones,1,150,07/14/19 06:05,"169 Jefferson St, San Francisco, CA 94016" +223451,AA Batteries (4-pack),1,3.84,07/04/19 06:45,"577 Church St, Seattle, WA 98101" +223452,Wired Headphones,1,11.99,07/31/19 07:17,"436 Jackson St, Portland, ME 04101" +223453,34in Ultrawide Monitor,1,379.99,07/04/19 19:08,"150 Church St, Dallas, TX 75001" +223454,Google Phone,1,600,07/20/19 20:26,"123 River St, San Francisco, CA 94016" +223455,AAA Batteries (4-pack),2,2.99,07/10/19 16:42,"626 Lincoln St, New York City, NY 10001" +223456,USB-C Charging Cable,1,11.95,07/10/19 11:34,"323 Pine St, Los Angeles, CA 90001" +223457,AAA Batteries (4-pack),3,2.99,07/18/19 10:25,"405 West St, Portland, OR 97035" +223458,27in FHD Monitor,1,149.99,07/28/19 12:50,"422 7th St, Austin, TX 73301" +223459,Bose SoundSport Headphones,1,99.99,07/02/19 07:36,"12 Wilson St, Seattle, WA 98101" +223460,AA Batteries (4-pack),1,3.84,07/19/19 17:16,"363 Highland St, Boston, MA 02215" +223461,Lightning Charging Cable,1,14.95,07/31/19 10:40,"650 South St, Los Angeles, CA 90001" +223462,USB-C Charging Cable,1,11.95,07/16/19 23:32,"582 Adams St, Los Angeles, CA 90001" +223463,USB-C Charging Cable,1,11.95,07/10/19 17:04,"774 8th St, Atlanta, GA 30301" +223464,AAA Batteries (4-pack),1,2.99,07/01/19 10:58,"804 Ridge St, Boston, MA 02215" +223465,Lightning Charging Cable,1,14.95,07/21/19 13:25,"252 8th St, Austin, TX 73301" +223466,Lightning Charging Cable,1,14.95,07/12/19 18:15,"67 Elm St, Los Angeles, CA 90001" +223467,USB-C Charging Cable,1,11.95,07/22/19 08:07,"485 Dogwood St, New York City, NY 10001" +223468,AAA Batteries (4-pack),1,2.99,07/09/19 18:01,"639 Lake St, Dallas, TX 75001" +223469,Lightning Charging Cable,1,14.95,07/01/19 21:40,"609 8th St, New York City, NY 10001" +223470,ThinkPad Laptop,1,999.99,07/17/19 19:37,"732 Madison St, San Francisco, CA 94016" +223471,AA Batteries (4-pack),6,3.84,07/13/19 23:06,"797 Washington St, Boston, MA 02215" +223472,Wired Headphones,1,11.99,07/22/19 11:44,"439 Maple St, San Francisco, CA 94016" +223473,USB-C Charging Cable,1,11.95,07/04/19 19:24,"670 Church St, Los Angeles, CA 90001" +223474,Lightning Charging Cable,2,14.95,07/07/19 11:55,"532 Forest St, Boston, MA 02215" +223475,Lightning Charging Cable,1,14.95,07/19/19 21:57,"215 Chestnut St, Boston, MA 02215" +223476,27in FHD Monitor,1,149.99,07/26/19 20:32,"542 Adams St, Dallas, TX 75001" +223477,AA Batteries (4-pack),1,3.84,07/05/19 15:45,"709 7th St, New York City, NY 10001" +223478,USB-C Charging Cable,1,11.95,07/01/19 10:44,"480 1st St, Dallas, TX 75001" +223479,Wired Headphones,1,11.99,07/11/19 00:26,"355 River St, Portland, OR 97035" +223480,34in Ultrawide Monitor,1,379.99,07/23/19 10:52,"546 2nd St, Dallas, TX 75001" +223481,AA Batteries (4-pack),1,3.84,07/30/19 12:41,"448 Lincoln St, San Francisco, CA 94016" +223482,AA Batteries (4-pack),1,3.84,07/09/19 11:40,"117 4th St, Los Angeles, CA 90001" +223483,Google Phone,1,600,07/16/19 23:04,"153 Madison St, New York City, NY 10001" +223484,Lightning Charging Cable,1,14.95,07/02/19 17:28,"604 Jefferson St, San Francisco, CA 94016" +223485,Wired Headphones,1,11.99,07/29/19 10:59,"982 Center St, Boston, MA 02215" +223486,Flatscreen TV,1,300,07/29/19 14:45,"799 Washington St, San Francisco, CA 94016" +223487,Lightning Charging Cable,1,14.95,07/16/19 18:37,"755 Meadow St, San Francisco, CA 94016" +223488,USB-C Charging Cable,1,11.95,07/13/19 17:12,"109 Ridge St, Los Angeles, CA 90001" +223489,AAA Batteries (4-pack),1,2.99,07/20/19 20:54,"592 Willow St, Los Angeles, CA 90001" +223490,Wired Headphones,1,11.99,07/09/19 23:15,"288 5th St, Boston, MA 02215" +223491,Bose SoundSport Headphones,1,99.99,07/04/19 19:25,"300 River St, Austin, TX 73301" +223492,USB-C Charging Cable,1,11.95,07/13/19 06:35,"480 13th St, Los Angeles, CA 90001" +223493,ThinkPad Laptop,1,999.99,07/07/19 21:02,"75 Cedar St, Los Angeles, CA 90001" +223494,Wired Headphones,1,11.99,07/09/19 15:28,"791 1st St, Los Angeles, CA 90001" +223495,USB-C Charging Cable,1,11.95,07/20/19 16:31,"193 6th St, San Francisco, CA 94016" +223496,27in FHD Monitor,1,149.99,07/16/19 13:50,"754 12th St, Seattle, WA 98101" +223497,AA Batteries (4-pack),1,3.84,07/10/19 07:38,"630 Madison St, San Francisco, CA 94016" +223498,AA Batteries (4-pack),1,3.84,07/16/19 11:01,"217 Jackson St, Los Angeles, CA 90001" +223499,27in 4K Gaming Monitor,1,389.99,07/01/19 12:51,"200 River St, New York City, NY 10001" +223500,Wired Headphones,1,11.99,07/25/19 20:05,"527 Maple St, San Francisco, CA 94016" +223501,27in 4K Gaming Monitor,2,389.99,07/08/19 00:41,"392 7th St, Dallas, TX 75001" +223502,AAA Batteries (4-pack),3,2.99,07/24/19 21:36,"484 North St, Seattle, WA 98101" +223503,Google Phone,1,600,07/06/19 21:25,"739 Sunset St, Los Angeles, CA 90001" +223504,Lightning Charging Cable,1,14.95,07/15/19 19:16,"813 Maple St, Austin, TX 73301" +223505,Google Phone,1,600,07/15/19 11:37,"728 Pine St, Los Angeles, CA 90001" +223505,USB-C Charging Cable,2,11.95,07/15/19 11:37,"728 Pine St, Los Angeles, CA 90001" +223506,Apple Airpods Headphones,1,150,07/13/19 21:30,"157 Main St, Seattle, WA 98101" +223507,USB-C Charging Cable,1,11.95,07/28/19 18:32,"723 Chestnut St, Seattle, WA 98101" +223507,iPhone,1,700,07/28/19 18:32,"723 Chestnut St, Seattle, WA 98101" +223508,USB-C Charging Cable,1,11.95,07/07/19 11:29,"627 Walnut St, Seattle, WA 98101" +223509,Flatscreen TV,1,300,07/29/19 20:45,"670 Dogwood St, Austin, TX 73301" +223510,Wired Headphones,1,11.99,07/28/19 16:35,"222 River St, San Francisco, CA 94016" +223511,USB-C Charging Cable,1,11.95,07/04/19 12:46,"909 8th St, New York City, NY 10001" +223512,20in Monitor,1,109.99,07/01/19 21:02,"905 6th St, Seattle, WA 98101" +223513,USB-C Charging Cable,1,11.95,07/09/19 23:06,"681 Lakeview St, Dallas, TX 75001" +223514,AAA Batteries (4-pack),2,2.99,07/10/19 21:40,"222 Main St, San Francisco, CA 94016" +223515,Wired Headphones,1,11.99,07/03/19 08:52,"513 Washington St, San Francisco, CA 94016" +223516,USB-C Charging Cable,1,11.95,07/13/19 11:02,"612 Maple St, Seattle, WA 98101" +223517,34in Ultrawide Monitor,1,379.99,07/18/19 11:26,"716 10th St, Los Angeles, CA 90001" +223518,Apple Airpods Headphones,1,150,07/22/19 11:27,"958 Sunset St, Boston, MA 02215" +223519,USB-C Charging Cable,1,11.95,07/10/19 19:18,"585 Willow St, Austin, TX 73301" +223520,Lightning Charging Cable,1,14.95,07/18/19 13:50,"480 Center St, Los Angeles, CA 90001" +223521,AA Batteries (4-pack),1,3.84,07/15/19 16:06,"366 West St, Los Angeles, CA 90001" +223522,Lightning Charging Cable,1,14.95,07/02/19 11:21,"770 Dogwood St, Austin, TX 73301" +223523,Lightning Charging Cable,1,14.95,07/23/19 21:23,"381 Wilson St, San Francisco, CA 94016" +223524,Wired Headphones,2,11.99,07/14/19 18:24,"835 Dogwood St, San Francisco, CA 94016" +223525,Wired Headphones,1,11.99,07/11/19 09:18,"613 Washington St, San Francisco, CA 94016" +223526,AA Batteries (4-pack),1,3.84,07/27/19 18:26,"874 2nd St, Los Angeles, CA 90001" +223527,27in FHD Monitor,1,149.99,07/06/19 18:53,"288 9th St, Seattle, WA 98101" +223528,20in Monitor,1,109.99,07/31/19 19:06,"191 Dogwood St, Atlanta, GA 30301" +223529,AAA Batteries (4-pack),1,2.99,07/18/19 19:16,"55 Church St, New York City, NY 10001" +223530,Apple Airpods Headphones,1,150,07/05/19 12:31,"594 Washington St, Atlanta, GA 30301" +223531,AA Batteries (4-pack),1,3.84,07/29/19 20:21,"288 10th St, New York City, NY 10001" +223532,AAA Batteries (4-pack),2,2.99,07/21/19 14:20,"403 Hickory St, Portland, OR 97035" +223533,Flatscreen TV,1,300,07/21/19 08:04,"746 Highland St, San Francisco, CA 94016" +223534,Lightning Charging Cable,1,14.95,07/23/19 15:15,"259 Johnson St, San Francisco, CA 94016" +223535,USB-C Charging Cable,1,11.95,07/24/19 11:27,"735 South St, Boston, MA 02215" +223536,Apple Airpods Headphones,1,150,07/30/19 20:44,"138 Dogwood St, Portland, ME 04101" +223537,USB-C Charging Cable,1,11.95,07/10/19 20:32,"546 Lakeview St, Boston, MA 02215" +223538,Bose SoundSport Headphones,1,99.99,07/21/19 13:27,"554 Johnson St, San Francisco, CA 94016" +223539,USB-C Charging Cable,1,11.95,07/11/19 11:34,"166 8th St, Austin, TX 73301" +223540,USB-C Charging Cable,1,11.95,07/25/19 20:36,"278 12th St, San Francisco, CA 94016" +223541,Lightning Charging Cable,1,14.95,07/02/19 19:01,"531 South St, Boston, MA 02215" +223542,AAA Batteries (4-pack),1,2.99,07/21/19 17:33,"576 Lake St, Dallas, TX 75001" +223543,27in FHD Monitor,1,149.99,07/24/19 12:15,"142 Hill St, San Francisco, CA 94016" +223544,Bose SoundSport Headphones,1,99.99,07/22/19 19:44,"425 Hill St, Dallas, TX 75001" +223545,34in Ultrawide Monitor,1,379.99,07/01/19 21:19,"973 Main St, Portland, OR 97035" +223546,Google Phone,1,600,07/26/19 02:08,"823 Washington St, San Francisco, CA 94016" +223547,AAA Batteries (4-pack),1,2.99,07/11/19 14:39,"422 Park St, New York City, NY 10001" +223548,ThinkPad Laptop,1,999.99,07/10/19 13:02,"572 Lincoln St, Austin, TX 73301" +223549,Flatscreen TV,1,300,07/03/19 14:09,"350 Sunset St, Boston, MA 02215" +223550,Lightning Charging Cable,1,14.95,07/02/19 10:18,"287 13th St, San Francisco, CA 94016" +223551,ThinkPad Laptop,1,999.99,07/25/19 06:31,"511 Sunset St, San Francisco, CA 94016" +223552,Bose SoundSport Headphones,1,99.99,07/16/19 12:29,"263 Main St, New York City, NY 10001" +223553,AA Batteries (4-pack),1,3.84,07/01/19 22:33,"191 9th St, Seattle, WA 98101" +223554,AA Batteries (4-pack),1,3.84,07/19/19 23:03,"296 8th St, New York City, NY 10001" +223555,USB-C Charging Cable,1,11.95,07/16/19 14:17,"577 Cedar St, Seattle, WA 98101" +223556,Wired Headphones,1,11.99,07/28/19 09:22,"817 Maple St, Los Angeles, CA 90001" +223557,Macbook Pro Laptop,1,1700,07/17/19 22:48,"306 8th St, San Francisco, CA 94016" +223558,iPhone,1,700,07/17/19 14:26,"602 Washington St, Seattle, WA 98101" +223558,Lightning Charging Cable,1,14.95,07/17/19 14:26,"602 Washington St, Seattle, WA 98101" +223559,Apple Airpods Headphones,1,150,07/29/19 10:22,"35 Wilson St, Los Angeles, CA 90001" +223560,USB-C Charging Cable,1,11.95,07/16/19 17:16,"255 Walnut St, Atlanta, GA 30301" +223561,Lightning Charging Cable,1,14.95,07/30/19 19:41,"466 Jackson St, Los Angeles, CA 90001" +223562,Lightning Charging Cable,1,14.95,07/02/19 11:09,"802 South St, Los Angeles, CA 90001" +223563,34in Ultrawide Monitor,1,379.99,07/04/19 13:19,"960 Meadow St, San Francisco, CA 94016" +223564,27in 4K Gaming Monitor,1,389.99,07/31/19 12:23,"602 Forest St, New York City, NY 10001" +223565,AA Batteries (4-pack),1,3.84,07/06/19 16:04,"147 Wilson St, Los Angeles, CA 90001" +223566,Bose SoundSport Headphones,1,99.99,07/24/19 08:28,"416 Wilson St, Dallas, TX 75001" +223567,Lightning Charging Cable,1,14.95,07/20/19 22:32,"706 Willow St, Austin, TX 73301" +223568,Wired Headphones,1,11.99,07/01/19 15:56,"139 Forest St, Los Angeles, CA 90001" +223569,Lightning Charging Cable,1,14.95,07/11/19 14:11,"916 Forest St, Los Angeles, CA 90001" +223570,20in Monitor,1,109.99,07/23/19 19:21,"985 Jackson St, Boston, MA 02215" +223571,20in Monitor,1,109.99,07/03/19 17:48,"560 Chestnut St, San Francisco, CA 94016" +223572,Bose SoundSport Headphones,1,99.99,07/26/19 14:22,"756 Church St, San Francisco, CA 94016" +223573,AA Batteries (4-pack),3,3.84,07/09/19 19:54,"213 Hill St, Boston, MA 02215" +223574,Bose SoundSport Headphones,1,99.99,07/30/19 18:37,"451 Wilson St, Seattle, WA 98101" +223575,Wired Headphones,1,11.99,07/12/19 09:41,"559 Cherry St, Los Angeles, CA 90001" +223575,Apple Airpods Headphones,1,150,07/12/19 09:41,"559 Cherry St, Los Angeles, CA 90001" +223576,AA Batteries (4-pack),2,3.84,07/05/19 05:33,"311 Dogwood St, San Francisco, CA 94016" +223577,USB-C Charging Cable,1,11.95,07/20/19 11:48,"753 14th St, New York City, NY 10001" +223578,AAA Batteries (4-pack),1,2.99,07/10/19 17:41,"988 1st St, San Francisco, CA 94016" +223579,20in Monitor,1,109.99,07/10/19 11:00,"176 Lincoln St, Boston, MA 02215" +223580,34in Ultrawide Monitor,1,379.99,07/20/19 13:17,"932 12th St, San Francisco, CA 94016" +223581,AAA Batteries (4-pack),3,2.99,07/12/19 06:24,"23 Jackson St, Boston, MA 02215" +223582,USB-C Charging Cable,1,11.95,07/23/19 13:29,"133 12th St, San Francisco, CA 94016" +223583,Bose SoundSport Headphones,1,99.99,07/27/19 13:12,"124 Lake St, San Francisco, CA 94016" +223584,AAA Batteries (4-pack),2,2.99,07/22/19 21:27,"948 Hill St, Los Angeles, CA 90001" +223585,Wired Headphones,1,11.99,07/18/19 11:01,"627 Church St, New York City, NY 10001" +223586,Apple Airpods Headphones,1,150,07/31/19 12:53,"352 Walnut St, Portland, OR 97035" +223587,USB-C Charging Cable,1,11.95,07/09/19 13:44,"861 Sunset St, Atlanta, GA 30301" +223588,Bose SoundSport Headphones,1,99.99,07/27/19 11:37,"760 Highland St, Atlanta, GA 30301" +223589,USB-C Charging Cable,1,11.95,07/08/19 12:53,"573 13th St, Boston, MA 02215" +223590,ThinkPad Laptop,1,999.99,07/23/19 10:17,"536 Chestnut St, Dallas, TX 75001" +223591,20in Monitor,1,109.99,07/07/19 10:59,"236 Hill St, San Francisco, CA 94016" +223591,Google Phone,1,600,07/07/19 10:59,"236 Hill St, San Francisco, CA 94016" +223592,Wired Headphones,1,11.99,07/29/19 13:00,"518 Cherry St, Los Angeles, CA 90001" +223593,ThinkPad Laptop,1,999.99,07/30/19 23:29,"267 Cherry St, Austin, TX 73301" +223594,Wired Headphones,1,11.99,07/18/19 14:09,"639 Maple St, Austin, TX 73301" +223595,AAA Batteries (4-pack),2,2.99,07/20/19 01:21,"390 Main St, Austin, TX 73301" +223596,AA Batteries (4-pack),1,3.84,07/05/19 16:00,"971 Pine St, San Francisco, CA 94016" +223597,Apple Airpods Headphones,1,150,07/14/19 13:35,"196 Church St, Boston, MA 02215" +223598,USB-C Charging Cable,1,11.95,07/02/19 10:04,"791 Hickory St, San Francisco, CA 94016" +223599,Apple Airpods Headphones,1,150,07/07/19 16:08,"891 Wilson St, Boston, MA 02215" +223600,Apple Airpods Headphones,1,150,07/28/19 12:13,"845 14th St, San Francisco, CA 94016" +223601,iPhone,1,700,07/11/19 21:08,"183 Hickory St, Boston, MA 02215" +223602,Wired Headphones,1,11.99,07/04/19 13:27,"872 Meadow St, Los Angeles, CA 90001" +223603,Lightning Charging Cable,1,14.95,07/05/19 13:18,"317 Chestnut St, Los Angeles, CA 90001" +223604,Wired Headphones,1,11.99,07/26/19 17:57,"826 Hill St, Seattle, WA 98101" +223605,USB-C Charging Cable,1,11.95,07/13/19 11:38,"536 Center St, Dallas, TX 75001" +223606,34in Ultrawide Monitor,1,379.99,07/03/19 17:45,"688 Cherry St, San Francisco, CA 94016" +223607,Apple Airpods Headphones,1,150,07/15/19 21:59,"411 14th St, San Francisco, CA 94016" +223608,Lightning Charging Cable,1,14.95,07/09/19 18:00,"639 11th St, Boston, MA 02215" +223609,USB-C Charging Cable,1,11.95,07/17/19 15:56,"80 6th St, Los Angeles, CA 90001" +223610,USB-C Charging Cable,1,11.95,07/31/19 11:44,"110 Dogwood St, Los Angeles, CA 90001" +223611,AAA Batteries (4-pack),1,2.99,07/23/19 19:14,"438 11th St, Los Angeles, CA 90001" +223612,USB-C Charging Cable,2,11.95,07/10/19 10:01,"374 Lake St, San Francisco, CA 94016" +223613,AA Batteries (4-pack),1,3.84,07/06/19 23:48,"873 Elm St, San Francisco, CA 94016" +223614,Wired Headphones,1,11.99,07/16/19 19:31,"880 River St, Boston, MA 02215" +223615,AAA Batteries (4-pack),1,2.99,07/20/19 14:23,"170 Lakeview St, Seattle, WA 98101" +223616,USB-C Charging Cable,1,11.95,07/15/19 19:37,"779 Lincoln St, Austin, TX 73301" +223617,34in Ultrawide Monitor,1,379.99,07/21/19 11:09,"928 West St, Dallas, TX 75001" +223618,Bose SoundSport Headphones,1,99.99,07/02/19 22:32,"955 Church St, Boston, MA 02215" +223619,AA Batteries (4-pack),2,3.84,07/15/19 19:44,"539 Hickory St, San Francisco, CA 94016" +223620,Vareebadd Phone,1,400,07/06/19 08:24,"827 Wilson St, Austin, TX 73301" +223620,USB-C Charging Cable,2,11.95,07/06/19 08:24,"827 Wilson St, Austin, TX 73301" +223621,27in FHD Monitor,1,149.99,07/02/19 12:29,"894 13th St, New York City, NY 10001" +223622,Wired Headphones,1,11.99,07/02/19 14:20,"631 11th St, San Francisco, CA 94016" +223623,34in Ultrawide Monitor,1,379.99,07/01/19 17:31,"963 Jefferson St, San Francisco, CA 94016" +223624,AAA Batteries (4-pack),1,2.99,07/25/19 15:34,"597 Forest St, Portland, OR 97035" +223625,AAA Batteries (4-pack),1,2.99,07/07/19 08:24,"125 Pine St, San Francisco, CA 94016" +223626,Apple Airpods Headphones,1,150,07/08/19 15:33,"986 13th St, San Francisco, CA 94016" +223627,Apple Airpods Headphones,1,150,07/19/19 16:02,"828 Wilson St, San Francisco, CA 94016" +223627,Lightning Charging Cable,1,14.95,07/19/19 16:02,"828 Wilson St, San Francisco, CA 94016" +223628,34in Ultrawide Monitor,1,379.99,07/07/19 23:02,"127 River St, Los Angeles, CA 90001" +223629,20in Monitor,1,109.99,07/17/19 13:00,"449 1st St, New York City, NY 10001" +223630,Flatscreen TV,1,300,07/21/19 08:19,"144 Forest St, San Francisco, CA 94016" +223631,27in FHD Monitor,1,149.99,07/15/19 01:27,"382 9th St, Atlanta, GA 30301" +223632,USB-C Charging Cable,1,11.95,07/21/19 21:22,"415 5th St, Portland, OR 97035" +223633,AAA Batteries (4-pack),4,2.99,07/20/19 17:38,"843 South St, Boston, MA 02215" +223634,Wired Headphones,1,11.99,07/26/19 08:16,"719 South St, Los Angeles, CA 90001" +223635,AAA Batteries (4-pack),1,2.99,07/07/19 14:27,"959 11th St, Portland, ME 04101" +223636,AAA Batteries (4-pack),4,2.99,07/07/19 12:53,"50 Cherry St, Los Angeles, CA 90001" +223637,USB-C Charging Cable,1,11.95,07/19/19 10:13,"176 Johnson St, Dallas, TX 75001" +223638,Lightning Charging Cable,1,14.95,07/21/19 19:08,"656 Pine St, Portland, ME 04101" +223639,USB-C Charging Cable,1,11.95,07/22/19 20:26,"555 Forest St, Los Angeles, CA 90001" +223640,34in Ultrawide Monitor,1,379.99,07/13/19 10:32,"925 Spruce St, New York City, NY 10001" +223641,AAA Batteries (4-pack),3,2.99,07/22/19 19:46,"903 Pine St, Los Angeles, CA 90001" +223641,AA Batteries (4-pack),3,3.84,07/22/19 19:46,"903 Pine St, Los Angeles, CA 90001" +223642,USB-C Charging Cable,1,11.95,07/26/19 22:22,"404 Hickory St, Atlanta, GA 30301" +223643,Lightning Charging Cable,1,14.95,07/13/19 16:12,"307 Walnut St, New York City, NY 10001" +223644,AA Batteries (4-pack),1,3.84,07/08/19 20:48,"468 4th St, Los Angeles, CA 90001" +223645,Wired Headphones,1,11.99,07/10/19 17:16,"683 Madison St, Atlanta, GA 30301" +223646,Bose SoundSport Headphones,1,99.99,07/01/19 10:31,"21 Lakeview St, Dallas, TX 75001" +223647,27in 4K Gaming Monitor,1,389.99,07/22/19 19:13,"535 Pine St, New York City, NY 10001" +223648,27in 4K Gaming Monitor,1,389.99,07/26/19 12:43,"993 7th St, Austin, TX 73301" +223649,Bose SoundSport Headphones,1,99.99,07/03/19 11:09,"134 1st St, New York City, NY 10001" +223650,Flatscreen TV,1,300,07/17/19 00:02,"615 Jackson St, Boston, MA 02215" +223651,AAA Batteries (4-pack),1,2.99,07/09/19 15:26,"698 12th St, Austin, TX 73301" +223652,iPhone,1,700,07/04/19 13:28,"280 Willow St, Boston, MA 02215" +223652,Lightning Charging Cable,3,14.95,07/04/19 13:28,"280 Willow St, Boston, MA 02215" +223653,AAA Batteries (4-pack),3,2.99,07/18/19 16:12,"43 Main St, Los Angeles, CA 90001" +223654,Apple Airpods Headphones,1,150,07/14/19 15:33,"596 Pine St, Seattle, WA 98101" +223655,AAA Batteries (4-pack),1,2.99,07/04/19 12:13,"437 Main St, Atlanta, GA 30301" +223656,Lightning Charging Cable,1,14.95,07/10/19 11:41,"743 Hickory St, Boston, MA 02215" +223657,AAA Batteries (4-pack),1,2.99,07/10/19 20:43,"560 Jackson St, Austin, TX 73301" +223658,Apple Airpods Headphones,1,150,07/30/19 12:54,"940 South St, Los Angeles, CA 90001" +223659,20in Monitor,1,109.99,07/27/19 17:37,"917 North St, Los Angeles, CA 90001" +223660,Flatscreen TV,1,300,07/15/19 10:22,"163 Church St, Atlanta, GA 30301" +223661,Flatscreen TV,1,300,07/27/19 09:00,"643 Washington St, San Francisco, CA 94016" +223662,AA Batteries (4-pack),3,3.84,07/20/19 10:14,"80 Hickory St, Boston, MA 02215" +223663,USB-C Charging Cable,1,11.95,07/24/19 11:03,"134 Elm St, Boston, MA 02215" +223664,Wired Headphones,1,11.99,07/05/19 20:48,"887 Lincoln St, Dallas, TX 75001" +223665,USB-C Charging Cable,1,11.95,07/22/19 16:44,"276 Hill St, Seattle, WA 98101" +223666,27in FHD Monitor,1,149.99,07/01/19 20:32,"387 1st St, San Francisco, CA 94016" +223667,Apple Airpods Headphones,1,150,07/17/19 13:33,"592 Elm St, New York City, NY 10001" +223668,iPhone,1,700,07/13/19 22:52,"536 11th St, Dallas, TX 75001" +223668,Wired Headphones,1,11.99,07/13/19 22:52,"536 11th St, Dallas, TX 75001" +223669,AAA Batteries (4-pack),1,2.99,07/10/19 19:34,"427 Main St, San Francisco, CA 94016" +223670,Google Phone,1,600,07/09/19 09:34,"816 Wilson St, San Francisco, CA 94016" +223671,AA Batteries (4-pack),1,3.84,07/04/19 05:47,"498 Main St, San Francisco, CA 94016" +223672,27in FHD Monitor,1,149.99,07/28/19 22:21,"369 Walnut St, New York City, NY 10001" +223673,Wired Headphones,1,11.99,07/12/19 22:33,"531 Forest St, Los Angeles, CA 90001" +223674,Bose SoundSport Headphones,1,99.99,07/02/19 13:17,"543 1st St, Portland, OR 97035" +223675,Flatscreen TV,1,300,07/02/19 14:14,"496 Madison St, Los Angeles, CA 90001" +223676,AA Batteries (4-pack),1,3.84,07/09/19 10:16,"215 Highland St, Boston, MA 02215" +223677,AA Batteries (4-pack),1,3.84,07/07/19 20:58,"66 10th St, Seattle, WA 98101" +223678,Wired Headphones,1,11.99,07/29/19 19:34,"988 Ridge St, Los Angeles, CA 90001" +223679,Wired Headphones,2,11.99,07/01/19 12:29,"737 Church St, Atlanta, GA 30301" +223680,Flatscreen TV,1,300,07/06/19 23:35,"73 Jefferson St, Seattle, WA 98101" +223681,USB-C Charging Cable,2,11.95,07/01/19 18:58,"499 Park St, San Francisco, CA 94016" +223682,ThinkPad Laptop,1,999.99,07/13/19 05:57,"567 7th St, Los Angeles, CA 90001" +223683,AAA Batteries (4-pack),1,2.99,07/28/19 10:09,"148 Spruce St, San Francisco, CA 94016" +223684,Google Phone,1,600,07/15/19 12:40,"907 1st St, Seattle, WA 98101" +223685,Flatscreen TV,1,300,07/07/19 16:34,"629 6th St, San Francisco, CA 94016" +223686,27in FHD Monitor,1,149.99,07/01/19 18:07,"821 North St, San Francisco, CA 94016" +223687,Bose SoundSport Headphones,1,99.99,07/16/19 10:06,"465 Meadow St, New York City, NY 10001" +223688,iPhone,1,700,07/01/19 08:06,"255 11th St, San Francisco, CA 94016" +223688,Lightning Charging Cable,1,14.95,07/01/19 08:06,"255 11th St, San Francisco, CA 94016" +223689,AAA Batteries (4-pack),1,2.99,07/23/19 17:03,"764 South St, Dallas, TX 75001" +223690,Apple Airpods Headphones,1,150,07/04/19 16:58,"698 12th St, Seattle, WA 98101" +223691,Lightning Charging Cable,2,14.95,07/09/19 21:00,"618 8th St, New York City, NY 10001" +223692,Vareebadd Phone,1,400,07/08/19 16:10,"675 Walnut St, Boston, MA 02215" +223693,Wired Headphones,1,11.99,07/19/19 17:14,"24 Adams St, Portland, OR 97035" +223694,Bose SoundSport Headphones,1,99.99,07/06/19 17:37,"674 Highland St, Dallas, TX 75001" +223695,USB-C Charging Cable,2,11.95,07/09/19 18:34,"729 Highland St, Seattle, WA 98101" +223696,AA Batteries (4-pack),2,3.84,07/19/19 22:31,"570 Sunset St, San Francisco, CA 94016" +223697,Lightning Charging Cable,1,14.95,07/03/19 21:49,"348 11th St, Los Angeles, CA 90001" +223698,Apple Airpods Headphones,1,150,07/02/19 01:25,"476 Lakeview St, San Francisco, CA 94016" +223699,AA Batteries (4-pack),2,3.84,07/16/19 12:02,"93 Pine St, Dallas, TX 75001" +223700,Apple Airpods Headphones,1,150,07/27/19 08:16,"107 Madison St, New York City, NY 10001" +223701,34in Ultrawide Monitor,1,379.99,07/31/19 11:52,"373 Park St, New York City, NY 10001" +223702,Wired Headphones,2,11.99,07/01/19 13:06,"587 Wilson St, San Francisco, CA 94016" +223703,AA Batteries (4-pack),2,3.84,07/03/19 08:09,"325 Jackson St, Atlanta, GA 30301" +223704,Apple Airpods Headphones,1,150,07/25/19 12:26,"690 Wilson St, Dallas, TX 75001" +223705,Apple Airpods Headphones,1,150,07/05/19 14:02,"767 Adams St, Boston, MA 02215" +223706,USB-C Charging Cable,1,11.95,07/18/19 11:30,"14 Maple St, Seattle, WA 98101" +223707,Lightning Charging Cable,1,14.95,07/24/19 14:08,"96 5th St, San Francisco, CA 94016" +223708,AAA Batteries (4-pack),2,2.99,07/13/19 22:30,"46 11th St, Portland, OR 97035" +223709,AAA Batteries (4-pack),1,2.99,07/24/19 19:51,"191 9th St, Los Angeles, CA 90001" +223710,27in FHD Monitor,1,149.99,07/28/19 20:00,"985 11th St, New York City, NY 10001" +223711,Lightning Charging Cable,1,14.95,07/12/19 20:32,"875 Park St, Boston, MA 02215" +223712,AA Batteries (4-pack),1,3.84,07/24/19 20:17,"437 Adams St, New York City, NY 10001" +223713,Bose SoundSport Headphones,1,99.99,07/20/19 15:44,"323 Lincoln St, San Francisco, CA 94016" +223714,Wired Headphones,1,11.99,07/25/19 20:51,"207 Hill St, Portland, OR 97035" +223715,USB-C Charging Cable,1,11.95,07/24/19 14:28,"381 Spruce St, San Francisco, CA 94016" +223716,20in Monitor,1,109.99,07/09/19 19:52,"401 Hill St, Atlanta, GA 30301" +223717,Wired Headphones,1,11.99,07/09/19 21:16,"613 Adams St, Boston, MA 02215" +223718,iPhone,1,700,07/28/19 13:33,"725 Jackson St, Boston, MA 02215" +223719,Lightning Charging Cable,1,14.95,07/26/19 19:01,"466 Jefferson St, San Francisco, CA 94016" +223720,Lightning Charging Cable,1,14.95,07/26/19 22:30,"648 Hickory St, Seattle, WA 98101" +223721,27in FHD Monitor,1,149.99,07/14/19 22:14,"62 4th St, Seattle, WA 98101" +223722,Apple Airpods Headphones,1,150,07/22/19 22:13,"595 Ridge St, Dallas, TX 75001" +223723,Google Phone,1,600,07/22/19 18:09,"317 Jackson St, New York City, NY 10001" +223724,AA Batteries (4-pack),1,3.84,07/04/19 11:25,"31 Main St, Dallas, TX 75001" +223725,iPhone,1,700,07/27/19 17:22,"520 Adams St, Los Angeles, CA 90001" +223726,AA Batteries (4-pack),1,3.84,07/24/19 13:08,"486 West St, Seattle, WA 98101" +223727,USB-C Charging Cable,1,11.95,07/15/19 11:06,"827 Lake St, San Francisco, CA 94016" +223728,USB-C Charging Cable,1,11.95,07/07/19 18:06,"80 Ridge St, Portland, ME 04101" +223729,Flatscreen TV,1,300,07/14/19 18:46,"104 Jefferson St, San Francisco, CA 94016" +223730,Google Phone,1,600,07/13/19 13:39,"490 Sunset St, Seattle, WA 98101" +223731,Macbook Pro Laptop,1,1700,07/23/19 00:29,"339 10th St, Seattle, WA 98101" +223732,AA Batteries (4-pack),3,3.84,07/18/19 19:18,"578 Pine St, San Francisco, CA 94016" +223733,Google Phone,1,600,07/29/19 14:00,"555 Cedar St, San Francisco, CA 94016" +223734,Macbook Pro Laptop,1,1700,07/24/19 05:51,"152 Wilson St, New York City, NY 10001" +223734,LG Dryer,1,600.0,07/24/19 05:51,"152 Wilson St, New York City, NY 10001" +223735,AAA Batteries (4-pack),5,2.99,07/25/19 20:13,"436 4th St, Dallas, TX 75001" +223736,Lightning Charging Cable,1,14.95,07/29/19 08:01,"450 Highland St, New York City, NY 10001" +223737,Lightning Charging Cable,1,14.95,07/23/19 19:34,"963 2nd St, New York City, NY 10001" +223738,Macbook Pro Laptop,1,1700,07/06/19 17:26,"250 Chestnut St, San Francisco, CA 94016" +223739,Bose SoundSport Headphones,1,99.99,07/30/19 11:27,"525 Cherry St, Boston, MA 02215" +223740,Google Phone,1,600,07/25/19 22:30,"793 8th St, Dallas, TX 75001" +223741,20in Monitor,1,109.99,07/31/19 13:51,"208 Chestnut St, New York City, NY 10001" +223742,iPhone,1,700,07/10/19 16:49,"675 Pine St, San Francisco, CA 94016" +223742,Lightning Charging Cable,2,14.95,07/10/19 16:49,"675 Pine St, San Francisco, CA 94016" +223743,USB-C Charging Cable,2,11.95,07/27/19 22:33,"174 Cedar St, New York City, NY 10001" +223744,Bose SoundSport Headphones,1,99.99,07/09/19 08:20,"994 5th St, Atlanta, GA 30301" +223745,USB-C Charging Cable,1,11.95,07/12/19 17:28,"715 North St, Austin, TX 73301" +223746,AA Batteries (4-pack),1,3.84,07/11/19 11:35,"672 Center St, San Francisco, CA 94016" +223747,Wired Headphones,1,11.99,07/11/19 08:12,"436 Maple St, Atlanta, GA 30301" +223748,USB-C Charging Cable,1,11.95,07/22/19 20:03,"183 Park St, Los Angeles, CA 90001" +223749,Lightning Charging Cable,1,14.95,07/10/19 17:50,"906 Spruce St, Austin, TX 73301" +223750,iPhone,1,700,07/26/19 12:46,"967 Walnut St, Los Angeles, CA 90001" +223751,AA Batteries (4-pack),2,3.84,07/03/19 23:27,"314 Sunset St, Dallas, TX 75001" +223752,Macbook Pro Laptop,1,1700,07/30/19 21:41,"26 Main St, Atlanta, GA 30301" +223753,Lightning Charging Cable,1,14.95,07/03/19 18:55,"984 2nd St, New York City, NY 10001" +223754,Wired Headphones,1,11.99,07/09/19 10:23,"871 Willow St, Portland, OR 97035" +223755,Apple Airpods Headphones,1,150,07/17/19 13:37,"359 9th St, Atlanta, GA 30301" +223756,27in 4K Gaming Monitor,1,389.99,07/22/19 17:25,"917 11th St, Boston, MA 02215" +223757,20in Monitor,1,109.99,07/13/19 13:02,"191 13th St, Atlanta, GA 30301" +223758,USB-C Charging Cable,1,11.95,07/21/19 22:32,"980 South St, San Francisco, CA 94016" +223759,Apple Airpods Headphones,1,150,07/03/19 12:40,"34 Elm St, Austin, TX 73301" +223760,Wired Headphones,1,11.99,07/20/19 14:49,"816 Ridge St, San Francisco, CA 94016" +223761,AAA Batteries (4-pack),1,2.99,07/09/19 01:03,"937 9th St, Portland, OR 97035" +223762,Lightning Charging Cable,1,14.95,07/17/19 23:44,"662 Spruce St, Los Angeles, CA 90001" +223763,Lightning Charging Cable,1,14.95,07/09/19 20:55,"932 Highland St, Seattle, WA 98101" +223764,Apple Airpods Headphones,1,150,07/21/19 17:29,"528 Park St, Portland, ME 04101" +223765,Lightning Charging Cable,1,14.95,07/29/19 17:42,"879 Adams St, Los Angeles, CA 90001" +223766,USB-C Charging Cable,1,11.95,07/04/19 21:13,"883 6th St, New York City, NY 10001" +223767,Wired Headphones,1,11.99,07/24/19 15:46,"908 Spruce St, Portland, OR 97035" +223768,AAA Batteries (4-pack),1,2.99,07/10/19 18:52,"980 Willow St, Los Angeles, CA 90001" +223769,Vareebadd Phone,1,400,07/26/19 12:49,"74 Spruce St, Los Angeles, CA 90001" +223770,34in Ultrawide Monitor,1,379.99,07/16/19 10:31,"329 2nd St, Los Angeles, CA 90001" +223771,34in Ultrawide Monitor,1,379.99,07/13/19 12:21,"686 Cedar St, Dallas, TX 75001" +223772,Flatscreen TV,1,300,07/15/19 07:38,"349 Pine St, Boston, MA 02215" +223773,27in FHD Monitor,1,149.99,07/18/19 06:34,"341 11th St, San Francisco, CA 94016" +223774,AAA Batteries (4-pack),2,2.99,07/04/19 17:41,"43 Adams St, San Francisco, CA 94016" +223775,iPhone,1,700,07/22/19 17:57,"332 4th St, New York City, NY 10001" +223776,USB-C Charging Cable,1,11.95,07/16/19 17:23,"706 Cedar St, New York City, NY 10001" +223777,Bose SoundSport Headphones,1,99.99,07/04/19 12:18,"792 Hickory St, Seattle, WA 98101" +223777,Apple Airpods Headphones,1,150,07/04/19 12:18,"792 Hickory St, Seattle, WA 98101" +223778,34in Ultrawide Monitor,1,379.99,07/11/19 14:02,"861 Meadow St, Austin, TX 73301" +223779,AAA Batteries (4-pack),1,2.99,07/30/19 21:22,"761 West St, Boston, MA 02215" +223780,27in 4K Gaming Monitor,1,389.99,07/24/19 20:18,"779 4th St, Los Angeles, CA 90001" +223781,USB-C Charging Cable,1,11.95,07/28/19 14:07,"625 Elm St, New York City, NY 10001" +223782,Lightning Charging Cable,1,14.95,07/08/19 08:02,"612 Walnut St, San Francisco, CA 94016" +223783,USB-C Charging Cable,1,11.95,07/19/19 10:02,"616 Maple St, Atlanta, GA 30301" +223784,AAA Batteries (4-pack),3,2.99,07/27/19 17:33,"339 Maple St, New York City, NY 10001" +223785,Lightning Charging Cable,1,14.95,07/07/19 15:36,"849 10th St, San Francisco, CA 94016" +223786,Flatscreen TV,1,300,07/14/19 06:21,"492 South St, Atlanta, GA 30301" +223787,27in 4K Gaming Monitor,1,389.99,07/29/19 11:59,"966 Madison St, New York City, NY 10001" +223788,USB-C Charging Cable,1,11.95,07/24/19 11:31,"376 Jefferson St, Atlanta, GA 30301" +223789,Flatscreen TV,1,300,07/14/19 10:31,"899 Ridge St, San Francisco, CA 94016" +223790,Bose SoundSport Headphones,1,99.99,07/21/19 00:32,"133 Lakeview St, Seattle, WA 98101" +223791,Bose SoundSport Headphones,1,99.99,07/23/19 00:09,"481 Chestnut St, Atlanta, GA 30301" +223792,Lightning Charging Cable,1,14.95,07/16/19 08:00,"833 Hickory St, Portland, OR 97035" +223793,USB-C Charging Cable,1,11.95,07/05/19 02:21,"439 Lincoln St, New York City, NY 10001" +223794,Lightning Charging Cable,1,14.95,07/17/19 19:06,"998 11th St, Atlanta, GA 30301" +223795,Bose SoundSport Headphones,1,99.99,07/07/19 05:41,"726 Cedar St, New York City, NY 10001" +223796,20in Monitor,1,109.99,07/12/19 15:11,"208 Highland St, Los Angeles, CA 90001" +223797,AA Batteries (4-pack),2,3.84,07/26/19 23:37,"104 Dogwood St, Los Angeles, CA 90001" +223798,USB-C Charging Cable,1,11.95,07/28/19 10:14,"603 2nd St, Austin, TX 73301" +223799,AA Batteries (4-pack),1,3.84,07/16/19 07:44,"335 6th St, Dallas, TX 75001" +223800,USB-C Charging Cable,1,11.95,07/22/19 15:11,"706 Lincoln St, San Francisco, CA 94016" +223801,Apple Airpods Headphones,1,150,07/01/19 11:26,"318 Lincoln St, Boston, MA 02215" +223802,AA Batteries (4-pack),1,3.84,07/16/19 20:34,"815 8th St, Boston, MA 02215" +223803,Apple Airpods Headphones,1,150,07/26/19 21:38,"842 Park St, San Francisco, CA 94016" +223804,34in Ultrawide Monitor,1,379.99,07/26/19 14:31,"608 Washington St, San Francisco, CA 94016" +223805,Wired Headphones,1,11.99,07/17/19 12:30,"612 Adams St, San Francisco, CA 94016" +223806,Wired Headphones,1,11.99,07/14/19 08:20,"326 Washington St, Portland, OR 97035" +223807,USB-C Charging Cable,1,11.95,07/31/19 19:35,"335 10th St, San Francisco, CA 94016" +223808,ThinkPad Laptop,1,999.99,07/29/19 14:38,"158 Willow St, New York City, NY 10001" +223809,Lightning Charging Cable,1,14.95,07/13/19 13:23,"132 Washington St, Los Angeles, CA 90001" +223810,34in Ultrawide Monitor,1,379.99,07/06/19 18:29,"435 Highland St, Austin, TX 73301" +223811,Macbook Pro Laptop,1,1700,07/01/19 18:38,"978 Jefferson St, New York City, NY 10001" +223812,Apple Airpods Headphones,1,150,07/27/19 11:05,"260 Pine St, New York City, NY 10001" +223813,USB-C Charging Cable,1,11.95,07/30/19 18:49,"520 Dogwood St, Boston, MA 02215" +223814,Bose SoundSport Headphones,1,99.99,07/14/19 14:47,"68 Sunset St, Portland, OR 97035" +223815,20in Monitor,1,109.99,07/09/19 17:32,"463 Wilson St, Atlanta, GA 30301" +223816,AAA Batteries (4-pack),2,2.99,07/08/19 16:27,"579 Center St, San Francisco, CA 94016" +223817,Macbook Pro Laptop,1,1700,07/13/19 16:17,"939 Park St, Boston, MA 02215" +223818,Bose SoundSport Headphones,1,99.99,07/27/19 17:30,"338 Highland St, Los Angeles, CA 90001" +223819,ThinkPad Laptop,1,999.99,07/09/19 23:11,"917 Lake St, Boston, MA 02215" +,,,,, +223820,Bose SoundSport Headphones,1,99.99,07/08/19 05:37,"843 Cherry St, Seattle, WA 98101" +223821,20in Monitor,1,109.99,07/26/19 15:07,"516 Dogwood St, Los Angeles, CA 90001" +223822,27in FHD Monitor,1,149.99,07/27/19 09:51,"72 9th St, Dallas, TX 75001" +223823,USB-C Charging Cable,1,11.95,07/31/19 12:54,"257 9th St, New York City, NY 10001" +223824,AA Batteries (4-pack),1,3.84,07/06/19 08:11,"994 Ridge St, Los Angeles, CA 90001" +223825,Bose SoundSport Headphones,1,99.99,07/27/19 09:01,"913 Park St, Atlanta, GA 30301" +223826,Lightning Charging Cable,1,14.95,07/22/19 13:01,"743 River St, Boston, MA 02215" +223827,AA Batteries (4-pack),1,3.84,07/21/19 16:46,"62 River St, San Francisco, CA 94016" +223828,USB-C Charging Cable,1,11.95,07/11/19 19:04,"392 Walnut St, Dallas, TX 75001" +223829,Apple Airpods Headphones,1,150,07/11/19 10:01,"298 7th St, New York City, NY 10001" +223830,USB-C Charging Cable,1,11.95,07/31/19 17:13,"250 Sunset St, Dallas, TX 75001" +223831,AA Batteries (4-pack),1,3.84,07/13/19 10:39,"371 Elm St, Dallas, TX 75001" +223832,34in Ultrawide Monitor,1,379.99,07/22/19 20:26,"428 South St, Boston, MA 02215" +223833,27in 4K Gaming Monitor,1,389.99,07/28/19 15:23,"384 Elm St, Los Angeles, CA 90001" +223834,Wired Headphones,1,11.99,07/24/19 00:21,"636 Jackson St, Dallas, TX 75001" +223835,USB-C Charging Cable,1,11.95,07/19/19 23:33,"522 Spruce St, Seattle, WA 98101" +223836,ThinkPad Laptop,1,999.99,07/04/19 19:25,"344 Lincoln St, Seattle, WA 98101" +223837,Apple Airpods Headphones,1,150,07/09/19 13:56,"852 10th St, Dallas, TX 75001" +223838,AAA Batteries (4-pack),1,2.99,07/09/19 09:51,"302 Lake St, San Francisco, CA 94016" +223839,Apple Airpods Headphones,1,150,07/22/19 12:16,"582 2nd St, Dallas, TX 75001" +223840,AAA Batteries (4-pack),1,2.99,07/16/19 09:01,"529 4th St, Atlanta, GA 30301" +223841,27in FHD Monitor,1,149.99,07/17/19 11:52,"137 Willow St, Austin, TX 73301" +223842,27in 4K Gaming Monitor,1,389.99,07/11/19 14:36,"426 1st St, Los Angeles, CA 90001" +223842,Lightning Charging Cable,1,14.95,07/11/19 14:36,"426 1st St, Los Angeles, CA 90001" +223843,34in Ultrawide Monitor,1,379.99,07/28/19 19:16,"495 10th St, Boston, MA 02215" +223844,Lightning Charging Cable,2,14.95,07/22/19 21:24,"985 Hill St, Los Angeles, CA 90001" +223845,Bose SoundSport Headphones,1,99.99,07/17/19 12:08,"70 Meadow St, Dallas, TX 75001" +223846,Bose SoundSport Headphones,1,99.99,07/04/19 14:29,"305 Church St, New York City, NY 10001" +223847,ThinkPad Laptop,1,999.99,07/28/19 00:13,"987 Sunset St, San Francisco, CA 94016" +223848,AAA Batteries (4-pack),2,2.99,07/05/19 11:56,"715 Lincoln St, Atlanta, GA 30301" +223849,Bose SoundSport Headphones,2,99.99,07/18/19 17:03,"470 Jefferson St, Boston, MA 02215" +223850,Apple Airpods Headphones,2,150,07/05/19 12:07,"216 Elm St, Boston, MA 02215" +223851,AA Batteries (4-pack),1,3.84,07/09/19 16:45,"876 Johnson St, Portland, OR 97035" +223852,34in Ultrawide Monitor,1,379.99,07/23/19 11:42,"611 Washington St, Atlanta, GA 30301" +223853,AAA Batteries (4-pack),1,2.99,07/29/19 10:33,"844 Jackson St, Seattle, WA 98101" +223854,AA Batteries (4-pack),1,3.84,07/19/19 11:11,"808 Meadow St, New York City, NY 10001" +223855,AA Batteries (4-pack),1,3.84,07/23/19 18:49,"805 Main St, Los Angeles, CA 90001" +223856,iPhone,1,700,08/01/19 01:47,"440 Church St, Atlanta, GA 30301" +223857,Apple Airpods Headphones,1,150,07/29/19 11:56,"126 14th St, San Francisco, CA 94016" +223858,Lightning Charging Cable,1,14.95,07/10/19 11:47,"170 Lincoln St, Atlanta, GA 30301" +223858,27in 4K Gaming Monitor,1,389.99,07/10/19 11:47,"170 Lincoln St, Atlanta, GA 30301" +223859,Wired Headphones,1,11.99,07/15/19 01:51,"773 North St, San Francisco, CA 94016" +223860,ThinkPad Laptop,1,999.99,07/16/19 00:12,"727 10th St, San Francisco, CA 94016" +223861,AA Batteries (4-pack),3,3.84,07/13/19 21:59,"107 Lakeview St, San Francisco, CA 94016" +223862,AAA Batteries (4-pack),3,2.99,07/08/19 11:08,"405 Walnut St, Los Angeles, CA 90001" +223863,iPhone,1,700,07/21/19 16:30,"468 Elm St, New York City, NY 10001" +223863,Lightning Charging Cable,1,14.95,07/21/19 16:30,"468 Elm St, New York City, NY 10001" +223864,AA Batteries (4-pack),1,3.84,07/25/19 18:13,"437 Washington St, Seattle, WA 98101" +223865,Lightning Charging Cable,1,14.95,07/21/19 21:44,"137 Walnut St, San Francisco, CA 94016" +223866,USB-C Charging Cable,2,11.95,07/09/19 15:13,"279 Maple St, San Francisco, CA 94016" +223867,Apple Airpods Headphones,1,150,07/15/19 16:46,"970 Washington St, Atlanta, GA 30301" +223868,Google Phone,1,600,07/18/19 10:07,"423 Maple St, Seattle, WA 98101" +223868,USB-C Charging Cable,1,11.95,07/18/19 10:07,"423 Maple St, Seattle, WA 98101" +223869,Wired Headphones,1,11.99,07/09/19 11:20,"664 Wilson St, San Francisco, CA 94016" +223870,Apple Airpods Headphones,1,150,07/22/19 12:32,"985 Main St, Los Angeles, CA 90001" +223871,Lightning Charging Cable,1,14.95,07/15/19 19:43,"326 14th St, Dallas, TX 75001" +223872,Lightning Charging Cable,1,14.95,07/11/19 13:39,"844 Cherry St, San Francisco, CA 94016" +223873,AAA Batteries (4-pack),1,2.99,07/04/19 14:35,"621 Main St, Seattle, WA 98101" +223874,Apple Airpods Headphones,1,150,07/05/19 17:37,"868 8th St, San Francisco, CA 94016" +223875,AA Batteries (4-pack),1,3.84,07/24/19 18:57,"847 Chestnut St, San Francisco, CA 94016" +223876,Lightning Charging Cable,1,14.95,07/29/19 12:07,"604 Hill St, Boston, MA 02215" +223876,Wired Headphones,1,11.99,07/29/19 12:07,"604 Hill St, Boston, MA 02215" +223877,Apple Airpods Headphones,1,150,07/25/19 01:20,"736 West St, San Francisco, CA 94016" +223878,Apple Airpods Headphones,1,150,07/20/19 00:18,"729 Highland St, Dallas, TX 75001" +223879,Bose SoundSport Headphones,1,99.99,07/23/19 17:09,"791 Lincoln St, Atlanta, GA 30301" +223880,USB-C Charging Cable,1,11.95,07/04/19 21:08,"953 Elm St, Austin, TX 73301" +223881,34in Ultrawide Monitor,1,379.99,07/05/19 20:38,"562 Lincoln St, San Francisco, CA 94016" +223882,Wired Headphones,1,11.99,07/28/19 06:47,"313 Walnut St, San Francisco, CA 94016" +223883,Wired Headphones,1,11.99,07/25/19 18:40,"184 Johnson St, San Francisco, CA 94016" +223884,Lightning Charging Cable,1,14.95,07/16/19 21:15,"862 Park St, Seattle, WA 98101" +223885,Apple Airpods Headphones,1,150,07/26/19 16:47,"587 Highland St, Boston, MA 02215" +223886,Wired Headphones,1,11.99,07/14/19 15:55,"473 Walnut St, Seattle, WA 98101" +223887,Lightning Charging Cable,1,14.95,07/20/19 00:08,"188 Meadow St, San Francisco, CA 94016" +223888,AAA Batteries (4-pack),1,2.99,07/18/19 10:43,"974 14th St, Atlanta, GA 30301" +223889,Wired Headphones,1,11.99,07/19/19 16:10,"136 Walnut St, New York City, NY 10001" +223890,USB-C Charging Cable,1,11.95,07/28/19 12:01,"274 9th St, San Francisco, CA 94016" +223891,USB-C Charging Cable,1,11.95,07/06/19 17:34,"817 Jefferson St, Austin, TX 73301" +223892,20in Monitor,1,109.99,07/10/19 19:11,"456 Wilson St, San Francisco, CA 94016" +223893,Lightning Charging Cable,1,14.95,07/15/19 07:44,"891 13th St, San Francisco, CA 94016" +223894,27in FHD Monitor,1,149.99,07/13/19 19:58,"200 Sunset St, San Francisco, CA 94016" +223895,27in FHD Monitor,1,149.99,07/31/19 20:07,"438 Dogwood St, San Francisco, CA 94016" +223896,Wired Headphones,1,11.99,07/01/19 10:48,"628 Madison St, New York City, NY 10001" +223897,27in FHD Monitor,1,149.99,07/25/19 21:17,"94 Lake St, New York City, NY 10001" +223898,iPhone,1,700,07/08/19 18:56,"309 6th St, San Francisco, CA 94016" +223899,Flatscreen TV,1,300,07/18/19 19:27,"423 13th St, New York City, NY 10001" +223900,34in Ultrawide Monitor,1,379.99,07/10/19 05:41,"85 Ridge St, San Francisco, CA 94016" +223901,Wired Headphones,1,11.99,07/22/19 16:31,"428 12th St, Boston, MA 02215" +223902,AA Batteries (4-pack),1,3.84,07/07/19 11:41,"206 4th St, Seattle, WA 98101" +223903,Wired Headphones,1,11.99,07/11/19 00:49,"427 Hill St, New York City, NY 10001" +223904,34in Ultrawide Monitor,1,379.99,07/08/19 19:36,"832 9th St, San Francisco, CA 94016" +223905,27in 4K Gaming Monitor,1,389.99,07/08/19 15:39,"123 Jackson St, Seattle, WA 98101" +223906,Bose SoundSport Headphones,1,99.99,07/27/19 19:02,"994 North St, Dallas, TX 75001" +223907,USB-C Charging Cable,1,11.95,07/12/19 22:29,"881 13th St, New York City, NY 10001" +223908,Lightning Charging Cable,1,14.95,07/07/19 07:06,"261 Wilson St, Los Angeles, CA 90001" +223909,AAA Batteries (4-pack),1,2.99,07/28/19 12:06,"968 13th St, Austin, TX 73301" +223909,iPhone,1,700,07/28/19 12:06,"968 13th St, Austin, TX 73301" +223910,Lightning Charging Cable,1,14.95,07/07/19 09:00,"767 Jackson St, San Francisco, CA 94016" +223911,ThinkPad Laptop,1,999.99,07/06/19 20:43,"193 6th St, Atlanta, GA 30301" +223912,Bose SoundSport Headphones,1,99.99,07/24/19 20:16,"432 14th St, Los Angeles, CA 90001" +223913,Lightning Charging Cable,1,14.95,07/04/19 21:35,"602 West St, San Francisco, CA 94016" +223914,27in 4K Gaming Monitor,1,389.99,07/18/19 18:22,"673 Elm St, San Francisco, CA 94016" +223915,Wired Headphones,1,11.99,07/27/19 15:21,"119 Pine St, Seattle, WA 98101" +223916,34in Ultrawide Monitor,1,379.99,07/01/19 18:00,"472 8th St, Atlanta, GA 30301" +223917,20in Monitor,2,109.99,07/23/19 09:02,"715 South St, Boston, MA 02215" +223918,Wired Headphones,1,11.99,07/16/19 13:50,"523 South St, San Francisco, CA 94016" +223919,AAA Batteries (4-pack),1,2.99,07/05/19 17:47,"929 6th St, New York City, NY 10001" +223920,Apple Airpods Headphones,1,150,07/02/19 17:15,"87 North St, San Francisco, CA 94016" +223921,27in FHD Monitor,1,149.99,07/07/19 09:56,"261 1st St, San Francisco, CA 94016" +223922,USB-C Charging Cable,1,11.95,07/24/19 18:01,"198 River St, Los Angeles, CA 90001" +223923,AA Batteries (4-pack),1,3.84,07/03/19 18:17,"200 North St, Los Angeles, CA 90001" +223924,Lightning Charging Cable,1,14.95,07/25/19 17:45,"674 9th St, San Francisco, CA 94016" +223925,AA Batteries (4-pack),5,3.84,07/07/19 18:53,"198 Park St, Los Angeles, CA 90001" +223926,34in Ultrawide Monitor,1,379.99,07/18/19 21:31,"691 Main St, San Francisco, CA 94016" +223927,USB-C Charging Cable,1,11.95,07/07/19 15:31,"538 West St, Seattle, WA 98101" +223928,Lightning Charging Cable,1,14.95,07/12/19 10:57,"294 Willow St, Los Angeles, CA 90001" +223929,AAA Batteries (4-pack),1,2.99,07/24/19 09:57,"456 Ridge St, Seattle, WA 98101" +223930,AAA Batteries (4-pack),1,2.99,07/15/19 21:16,"710 Ridge St, New York City, NY 10001" +223931,27in FHD Monitor,1,149.99,07/05/19 10:57,"702 12th St, San Francisco, CA 94016" +223932,ThinkPad Laptop,1,999.99,07/19/19 11:49,"811 Hickory St, Boston, MA 02215" +223933,Bose SoundSport Headphones,1,99.99,07/14/19 14:28,"349 Jackson St, Seattle, WA 98101" +223934,Lightning Charging Cable,1,14.95,07/16/19 13:35,"259 Willow St, Los Angeles, CA 90001" +223935,USB-C Charging Cable,1,11.95,07/08/19 15:00,"871 2nd St, Seattle, WA 98101" +223936,Google Phone,1,600,07/11/19 12:00,"456 Johnson St, Seattle, WA 98101" +223937,AA Batteries (4-pack),1,3.84,07/17/19 13:45,"158 Cedar St, San Francisco, CA 94016" +223938,USB-C Charging Cable,1,11.95,07/19/19 18:00,"461 Spruce St, Seattle, WA 98101" +223939,AA Batteries (4-pack),1,3.84,07/17/19 23:11,"275 9th St, San Francisco, CA 94016" +223940,LG Dryer,1,600.0,07/25/19 14:40,"483 Elm St, Austin, TX 73301" +223941,AAA Batteries (4-pack),1,2.99,07/04/19 22:49,"178 Sunset St, Boston, MA 02215" +223942,34in Ultrawide Monitor,1,379.99,07/30/19 01:04,"362 8th St, Seattle, WA 98101" +223943,AA Batteries (4-pack),2,3.84,07/12/19 13:05,"897 River St, Seattle, WA 98101" +223944,AA Batteries (4-pack),1,3.84,07/03/19 09:14,"82 9th St, Dallas, TX 75001" +223945,Apple Airpods Headphones,1,150,07/28/19 16:56,"139 10th St, Boston, MA 02215" +223946,Lightning Charging Cable,1,14.95,07/25/19 21:48,"889 12th St, Los Angeles, CA 90001" +223947,34in Ultrawide Monitor,1,379.99,07/23/19 22:13,"707 Madison St, Los Angeles, CA 90001" +223948,USB-C Charging Cable,1,11.95,07/23/19 13:14,"529 Jefferson St, New York City, NY 10001" +223949,AAA Batteries (4-pack),1,2.99,07/04/19 11:36,"125 Park St, Dallas, TX 75001" +223950,AA Batteries (4-pack),1,3.84,07/25/19 21:20,"448 1st St, Boston, MA 02215" +223951,AAA Batteries (4-pack),1,2.99,07/27/19 22:05,"440 Pine St, San Francisco, CA 94016" +223952,USB-C Charging Cable,2,11.95,07/25/19 16:10,"858 Walnut St, San Francisco, CA 94016" +223952,AA Batteries (4-pack),1,3.84,07/25/19 16:10,"858 Walnut St, San Francisco, CA 94016" +223953,27in FHD Monitor,1,149.99,07/25/19 17:23,"746 12th St, San Francisco, CA 94016" +223954,Bose SoundSport Headphones,1,99.99,07/16/19 09:07,"480 Lincoln St, San Francisco, CA 94016" +223955,Wired Headphones,1,11.99,07/01/19 19:31,"630 Lakeview St, San Francisco, CA 94016" +223956,Lightning Charging Cable,1,14.95,07/26/19 10:49,"458 12th St, San Francisco, CA 94016" +223957,USB-C Charging Cable,2,11.95,07/21/19 12:51,"966 Sunset St, New York City, NY 10001" +223958,Apple Airpods Headphones,1,150,07/11/19 21:07,"822 Lakeview St, Seattle, WA 98101" +223959,AAA Batteries (4-pack),3,2.99,07/28/19 10:01,"437 Adams St, Los Angeles, CA 90001" +223960,USB-C Charging Cable,1,11.95,07/17/19 13:25,"602 7th St, Atlanta, GA 30301" +223961,Apple Airpods Headphones,1,150,07/06/19 13:47,"12 Maple St, Seattle, WA 98101" +223962,Wired Headphones,1,11.99,07/17/19 19:26,"112 Walnut St, New York City, NY 10001" +223963,Apple Airpods Headphones,1,150,07/31/19 14:37,"719 Lake St, San Francisco, CA 94016" +223964,AA Batteries (4-pack),3,3.84,07/04/19 19:06,"828 6th St, New York City, NY 10001" +223965,AA Batteries (4-pack),1,3.84,07/14/19 18:21,"840 Madison St, Los Angeles, CA 90001" +223966,Lightning Charging Cable,1,14.95,07/29/19 12:05,"812 Lakeview St, San Francisco, CA 94016" +223967,USB-C Charging Cable,1,11.95,07/29/19 11:12,"75 Spruce St, Dallas, TX 75001" +223968,AA Batteries (4-pack),1,3.84,07/22/19 17:32,"596 Church St, Los Angeles, CA 90001" +223969,iPhone,1,700,07/20/19 13:43,"1 Dogwood St, New York City, NY 10001" +223970,Lightning Charging Cable,1,14.95,07/18/19 19:08,"929 Lakeview St, San Francisco, CA 94016" +223971,AA Batteries (4-pack),2,3.84,07/01/19 14:59,"566 West St, Los Angeles, CA 90001" +223972,AA Batteries (4-pack),1,3.84,07/23/19 00:09,"619 Dogwood St, New York City, NY 10001" +223973,27in 4K Gaming Monitor,1,389.99,07/13/19 14:03,"64 Walnut St, Atlanta, GA 30301" +223974,Lightning Charging Cable,1,14.95,07/16/19 09:57,"823 5th St, San Francisco, CA 94016" +223975,iPhone,1,700,07/24/19 13:25,"888 Center St, San Francisco, CA 94016" +223976,USB-C Charging Cable,1,11.95,07/21/19 17:34,"840 4th St, New York City, NY 10001" +223977,ThinkPad Laptop,1,999.99,07/27/19 23:05,"774 Park St, Los Angeles, CA 90001" +223978,Bose SoundSport Headphones,1,99.99,07/17/19 12:10,"340 Madison St, San Francisco, CA 94016" +223979,Bose SoundSport Headphones,1,99.99,07/27/19 11:42,"353 Walnut St, Boston, MA 02215" +223980,Bose SoundSport Headphones,1,99.99,07/31/19 04:22,"953 Cherry St, San Francisco, CA 94016" +223981,Lightning Charging Cable,1,14.95,07/26/19 18:29,"427 8th St, Los Angeles, CA 90001" +223982,iPhone,1,700,07/07/19 19:27,"16 Cedar St, New York City, NY 10001" +223982,Lightning Charging Cable,1,14.95,07/07/19 19:27,"16 Cedar St, New York City, NY 10001" +223983,Google Phone,1,600,07/09/19 18:06,"402 Jackson St, New York City, NY 10001" +223984,AAA Batteries (4-pack),2,2.99,07/21/19 19:12,"270 Spruce St, San Francisco, CA 94016" +223985,27in FHD Monitor,1,149.99,07/27/19 20:32,"687 Dogwood St, Dallas, TX 75001" +223986,AA Batteries (4-pack),1,3.84,07/27/19 23:09,"473 1st St, New York City, NY 10001" +223987,USB-C Charging Cable,1,11.95,07/11/19 18:18,"892 Adams St, Los Angeles, CA 90001" +223988,Flatscreen TV,1,300,07/20/19 08:12,"534 5th St, Boston, MA 02215" +223988,USB-C Charging Cable,1,11.95,07/20/19 08:12,"534 5th St, Boston, MA 02215" +223989,Wired Headphones,1,11.99,07/22/19 15:37,"315 13th St, Los Angeles, CA 90001" +223990,Wired Headphones,1,11.99,07/24/19 18:09,"216 1st St, San Francisco, CA 94016" +223991,Bose SoundSport Headphones,1,99.99,07/21/19 13:46,"520 Cedar St, Boston, MA 02215" +223992,27in 4K Gaming Monitor,1,389.99,07/25/19 21:10,"748 Forest St, Seattle, WA 98101" +223993,AA Batteries (4-pack),5,3.84,07/15/19 09:39,"718 Maple St, Portland, OR 97035" +223994,Bose SoundSport Headphones,1,99.99,07/03/19 19:25,"623 Hill St, Dallas, TX 75001" +223995,AAA Batteries (4-pack),1,2.99,07/26/19 10:28,"871 Chestnut St, New York City, NY 10001" +223996,USB-C Charging Cable,1,11.95,07/04/19 22:21,"705 Park St, Atlanta, GA 30301" +223997,Flatscreen TV,1,300,07/23/19 12:41,"64 Pine St, New York City, NY 10001" +223998,Apple Airpods Headphones,1,150,07/23/19 19:22,"341 Sunset St, Atlanta, GA 30301" +223998,Bose SoundSport Headphones,1,99.99,07/23/19 19:22,"341 Sunset St, Atlanta, GA 30301" +223999,AA Batteries (4-pack),1,3.84,07/12/19 23:41,"716 11th St, San Francisco, CA 94016" +224000,27in FHD Monitor,1,149.99,07/01/19 19:13,"811 River St, Boston, MA 02215" +224001,AAA Batteries (4-pack),1,2.99,07/27/19 14:25,"752 13th St, San Francisco, CA 94016" +224002,AA Batteries (4-pack),1,3.84,07/05/19 17:17,"859 2nd St, Atlanta, GA 30301" +224003,34in Ultrawide Monitor,1,379.99,07/17/19 11:37,"657 South St, San Francisco, CA 94016" +224004,USB-C Charging Cable,1,11.95,07/08/19 22:41,"71 River St, New York City, NY 10001" +224005,AA Batteries (4-pack),1,3.84,07/17/19 17:31,"852 Lincoln St, Los Angeles, CA 90001" +224006,USB-C Charging Cable,1,11.95,07/18/19 13:38,"269 1st St, New York City, NY 10001" +224007,Bose SoundSport Headphones,1,99.99,07/06/19 09:37,"476 Church St, Los Angeles, CA 90001" +224008,Flatscreen TV,1,300,07/14/19 18:23,"624 Elm St, San Francisco, CA 94016" +224009,USB-C Charging Cable,1,11.95,07/23/19 23:52,"340 12th St, Seattle, WA 98101" +224010,Apple Airpods Headphones,1,150,07/23/19 19:17,"192 10th St, Seattle, WA 98101" +224011,Wired Headphones,1,11.99,07/17/19 11:56,"948 Johnson St, Portland, OR 97035" +224012,34in Ultrawide Monitor,1,379.99,07/24/19 18:43,"634 Lakeview St, Los Angeles, CA 90001" +224013,AAA Batteries (4-pack),1,2.99,07/03/19 12:40,"943 Chestnut St, Seattle, WA 98101" +224014,Apple Airpods Headphones,1,150,07/06/19 16:04,"835 Highland St, San Francisco, CA 94016" +224015,Apple Airpods Headphones,1,150,07/13/19 10:39,"119 8th St, Austin, TX 73301" +224016,Flatscreen TV,1,300,07/11/19 12:09,"771 2nd St, Boston, MA 02215" +224017,AA Batteries (4-pack),2,3.84,07/20/19 08:54,"805 Highland St, Atlanta, GA 30301" +224018,AA Batteries (4-pack),1,3.84,07/17/19 15:32,"984 8th St, Seattle, WA 98101" +224019,Apple Airpods Headphones,1,150,07/30/19 19:20,"495 8th St, Boston, MA 02215" +224020,27in 4K Gaming Monitor,1,389.99,07/26/19 16:48,"973 Lake St, San Francisco, CA 94016" +224021,Wired Headphones,1,11.99,07/14/19 16:42,"74 Elm St, Los Angeles, CA 90001" +224022,AA Batteries (4-pack),1,3.84,07/02/19 14:23,"130 Willow St, Boston, MA 02215" +224023,27in FHD Monitor,1,149.99,07/12/19 12:20,"631 Adams St, San Francisco, CA 94016" +224024,Wired Headphones,1,11.99,07/09/19 21:30,"880 Main St, Los Angeles, CA 90001" +224025,Apple Airpods Headphones,1,150,07/10/19 01:15,"794 8th St, Atlanta, GA 30301" +224026,USB-C Charging Cable,1,11.95,07/02/19 17:45,"173 Lake St, Atlanta, GA 30301" +224027,AA Batteries (4-pack),1,3.84,07/09/19 11:10,"152 Cherry St, New York City, NY 10001" +224028,Lightning Charging Cable,1,14.95,07/21/19 11:22,"55 Elm St, Atlanta, GA 30301" +224029,Bose SoundSport Headphones,1,99.99,07/23/19 04:28,"151 River St, Seattle, WA 98101" +224030,AA Batteries (4-pack),1,3.84,07/16/19 21:11,"928 Center St, San Francisco, CA 94016" +224031,AA Batteries (4-pack),1,3.84,07/24/19 18:02,"135 Dogwood St, San Francisco, CA 94016" +224032,AAA Batteries (4-pack),1,2.99,07/18/19 22:14,"716 North St, New York City, NY 10001" +,,,,, +224033,USB-C Charging Cable,1,11.95,07/20/19 09:27,"344 Willow St, Los Angeles, CA 90001" +224033,AA Batteries (4-pack),1,3.84,07/20/19 09:27,"344 Willow St, Los Angeles, CA 90001" +224034,AAA Batteries (4-pack),1,2.99,07/22/19 00:12,"144 Sunset St, Los Angeles, CA 90001" +224035,AAA Batteries (4-pack),1,2.99,07/15/19 21:41,"710 Adams St, Los Angeles, CA 90001" +224036,USB-C Charging Cable,1,11.95,07/22/19 18:19,"737 Cherry St, Seattle, WA 98101" +224037,27in 4K Gaming Monitor,1,389.99,07/11/19 17:40,"405 Sunset St, Austin, TX 73301" +224038,Wired Headphones,1,11.99,07/10/19 14:28,"567 6th St, Los Angeles, CA 90001" +224039,AA Batteries (4-pack),1,3.84,07/31/19 20:02,"492 Lakeview St, San Francisco, CA 94016" +224040,27in 4K Gaming Monitor,1,389.99,07/13/19 12:37,"897 10th St, Austin, TX 73301" +224041,AA Batteries (4-pack),1,3.84,07/08/19 21:14,"87 Cedar St, San Francisco, CA 94016" +224042,Lightning Charging Cable,1,14.95,07/03/19 14:44,"737 11th St, Boston, MA 02215" +224043,Flatscreen TV,1,300,07/19/19 07:50,"393 6th St, Dallas, TX 75001" +224044,AAA Batteries (4-pack),1,2.99,07/12/19 13:50,"626 Highland St, Los Angeles, CA 90001" +224045,LG Dryer,1,600.0,07/22/19 16:25,"500 Church St, New York City, NY 10001" +224045,USB-C Charging Cable,1,11.95,07/22/19 16:25,"500 Church St, New York City, NY 10001" +224046,Bose SoundSport Headphones,1,99.99,07/24/19 03:19,"409 Elm St, New York City, NY 10001" +224047,Wired Headphones,1,11.99,07/30/19 13:16,"341 Lakeview St, Boston, MA 02215" +224048,Lightning Charging Cable,2,14.95,07/31/19 23:32,"517 North St, Dallas, TX 75001" +224049,Bose SoundSport Headphones,1,99.99,07/06/19 21:16,"592 7th St, San Francisco, CA 94016" +224050,USB-C Charging Cable,1,11.95,07/23/19 20:11,"685 12th St, Boston, MA 02215" +224051,USB-C Charging Cable,1,11.95,07/29/19 11:59,"677 Jackson St, Dallas, TX 75001" +224052,Wired Headphones,1,11.99,07/03/19 13:47,"462 Forest St, San Francisco, CA 94016" +224053,USB-C Charging Cable,1,11.95,07/08/19 11:39,"994 Highland St, Los Angeles, CA 90001" +224054,Bose SoundSport Headphones,1,99.99,07/03/19 18:20,"930 Walnut St, San Francisco, CA 94016" +224055,Wired Headphones,1,11.99,07/26/19 18:50,"792 Dogwood St, New York City, NY 10001" +224056,34in Ultrawide Monitor,1,379.99,07/17/19 21:46,"529 Adams St, Atlanta, GA 30301" +224057,Bose SoundSport Headphones,1,99.99,07/03/19 20:25,"972 Forest St, Los Angeles, CA 90001" +224058,USB-C Charging Cable,2,11.95,07/21/19 16:15,"244 Ridge St, Los Angeles, CA 90001" +224059,AAA Batteries (4-pack),1,2.99,07/02/19 17:22,"838 Willow St, New York City, NY 10001" +224060,AAA Batteries (4-pack),2,2.99,07/19/19 20:19,"863 Lakeview St, New York City, NY 10001" +224061,Macbook Pro Laptop,1,1700,07/24/19 22:54,"307 Willow St, Boston, MA 02215" +224062,Wired Headphones,1,11.99,07/17/19 07:25,"330 8th St, Seattle, WA 98101" +224063,USB-C Charging Cable,1,11.95,07/04/19 07:57,"796 6th St, Austin, TX 73301" +224064,AA Batteries (4-pack),1,3.84,07/30/19 15:47,"699 Ridge St, Boston, MA 02215" +224065,27in FHD Monitor,1,149.99,07/10/19 13:45,"156 1st St, New York City, NY 10001" +224066,Apple Airpods Headphones,1,150,07/08/19 18:27,"24 11th St, Seattle, WA 98101" +224067,Google Phone,1,600,07/17/19 14:32,"55 Elm St, Los Angeles, CA 90001" +224068,AAA Batteries (4-pack),3,2.99,07/02/19 20:15,"604 River St, Boston, MA 02215" +224069,AA Batteries (4-pack),1,3.84,07/11/19 22:00,"641 Dogwood St, Atlanta, GA 30301" +224070,20in Monitor,1,109.99,07/31/19 18:39,"500 Ridge St, Portland, OR 97035" +224071,Lightning Charging Cable,1,14.95,07/01/19 19:56,"633 Main St, Austin, TX 73301" +224072,AAA Batteries (4-pack),2,2.99,07/27/19 10:18,"994 Walnut St, Los Angeles, CA 90001" +224073,iPhone,1,700,07/01/19 22:07,"819 Jackson St, San Francisco, CA 94016" +224074,Wired Headphones,1,11.99,07/14/19 15:25,"779 Maple St, San Francisco, CA 94016" +224075,USB-C Charging Cable,1,11.95,07/03/19 22:32,"398 Cedar St, Seattle, WA 98101" +224076,USB-C Charging Cable,1,11.95,07/22/19 10:33,"283 Cedar St, San Francisco, CA 94016" +224077,27in FHD Monitor,1,149.99,07/21/19 14:47,"420 13th St, Portland, OR 97035" +224078,Lightning Charging Cable,1,14.95,07/14/19 16:25,"306 Jackson St, San Francisco, CA 94016" +224079,USB-C Charging Cable,1,11.95,07/01/19 18:17,"969 Hill St, New York City, NY 10001" +224080,Apple Airpods Headphones,1,150,07/09/19 09:43,"490 Main St, Seattle, WA 98101" +224081,Bose SoundSport Headphones,1,99.99,07/14/19 13:54,"467 Center St, New York City, NY 10001" +224082,USB-C Charging Cable,1,11.95,07/10/19 11:52,"894 2nd St, Los Angeles, CA 90001" +224083,AA Batteries (4-pack),1,3.84,07/04/19 20:50,"642 Main St, Boston, MA 02215" +224084,34in Ultrawide Monitor,1,379.99,07/17/19 15:56,"111 Main St, Portland, ME 04101" +224085,AAA Batteries (4-pack),1,2.99,07/18/19 09:27,"701 Lincoln St, Los Angeles, CA 90001" +224086,Bose SoundSport Headphones,1,99.99,07/20/19 10:35,"82 Wilson St, Dallas, TX 75001" +224087,LG Dryer,1,600.0,07/17/19 21:10,"405 12th St, San Francisco, CA 94016" +224088,AA Batteries (4-pack),3,3.84,07/26/19 14:57,"376 Johnson St, Dallas, TX 75001" +224089,AA Batteries (4-pack),1,3.84,07/10/19 15:52,"689 Cherry St, Boston, MA 02215" +224090,AA Batteries (4-pack),1,3.84,07/17/19 14:51,"23 14th St, San Francisco, CA 94016" +224091,AAA Batteries (4-pack),1,2.99,07/31/19 17:56,"468 Madison St, Atlanta, GA 30301" +224092,AAA Batteries (4-pack),1,2.99,07/15/19 11:50,"195 14th St, San Francisco, CA 94016" +224093,AA Batteries (4-pack),1,3.84,07/03/19 13:09,"853 1st St, Boston, MA 02215" +224094,AA Batteries (4-pack),1,3.84,07/23/19 14:13,"764 13th St, Seattle, WA 98101" +224095,Vareebadd Phone,1,400,07/15/19 21:27,"190 Johnson St, San Francisco, CA 94016" +224095,USB-C Charging Cable,1,11.95,07/15/19 21:27,"190 Johnson St, San Francisco, CA 94016" +224096,iPhone,1,700,07/06/19 11:50,"375 North St, Atlanta, GA 30301" +224096,Apple Airpods Headphones,1,150,07/06/19 11:50,"375 North St, Atlanta, GA 30301" +224096,Wired Headphones,1,11.99,07/06/19 11:50,"375 North St, Atlanta, GA 30301" +224097,USB-C Charging Cable,1,11.95,07/16/19 18:42,"62 10th St, Austin, TX 73301" +224098,Lightning Charging Cable,1,14.95,07/04/19 13:16,"820 West St, San Francisco, CA 94016" +224099,Apple Airpods Headphones,1,150,07/25/19 20:14,"720 Lakeview St, Boston, MA 02215" +224100,27in FHD Monitor,1,149.99,07/18/19 11:58,"631 South St, Boston, MA 02215" +224101,Wired Headphones,1,11.99,07/10/19 23:53,"521 Maple St, Los Angeles, CA 90001" +224102,USB-C Charging Cable,1,11.95,07/06/19 17:04,"268 Elm St, Portland, OR 97035" +224103,USB-C Charging Cable,1,11.95,07/18/19 00:03,"143 Lakeview St, New York City, NY 10001" +224104,Lightning Charging Cable,1,14.95,07/12/19 16:29,"52 Sunset St, Austin, TX 73301" +224105,Wired Headphones,1,11.99,07/10/19 12:34,"675 4th St, Boston, MA 02215" +224106,Wired Headphones,1,11.99,07/26/19 15:05,"379 Jefferson St, San Francisco, CA 94016" +224107,27in 4K Gaming Monitor,1,389.99,07/18/19 22:37,"866 Meadow St, New York City, NY 10001" +224108,USB-C Charging Cable,1,11.95,07/08/19 20:31,"87 Maple St, New York City, NY 10001" +224109,AA Batteries (4-pack),1,3.84,07/15/19 08:53,"464 14th St, Boston, MA 02215" +224109,USB-C Charging Cable,1,11.95,07/15/19 08:53,"464 14th St, Boston, MA 02215" +224110,AAA Batteries (4-pack),1,2.99,07/05/19 18:26,"280 River St, San Francisco, CA 94016" +224111,AA Batteries (4-pack),1,3.84,07/13/19 16:08,"872 River St, San Francisco, CA 94016" +224112,AAA Batteries (4-pack),1,2.99,07/09/19 14:44,"671 Lakeview St, San Francisco, CA 94016" +224112,34in Ultrawide Monitor,1,379.99,07/09/19 14:44,"671 Lakeview St, San Francisco, CA 94016" +224113,Wired Headphones,1,11.99,07/10/19 10:22,"592 Hill St, Los Angeles, CA 90001" +224114,Bose SoundSport Headphones,1,99.99,07/22/19 11:00,"341 Meadow St, Los Angeles, CA 90001" +224115,Apple Airpods Headphones,1,150,07/16/19 13:12,"960 10th St, Atlanta, GA 30301" +224116,Lightning Charging Cable,1,14.95,07/28/19 19:58,"873 Pine St, Portland, OR 97035" +224117,AA Batteries (4-pack),1,3.84,07/13/19 14:12,"144 7th St, Dallas, TX 75001" +224118,Google Phone,1,600,07/05/19 08:05,"791 13th St, Los Angeles, CA 90001" +224119,iPhone,1,700,07/09/19 23:06,"984 Sunset St, Seattle, WA 98101" +224120,AA Batteries (4-pack),1,3.84,07/29/19 22:25,"627 Chestnut St, Seattle, WA 98101" +224121,Lightning Charging Cable,1,14.95,07/06/19 08:25,"129 Highland St, San Francisco, CA 94016" +224122,34in Ultrawide Monitor,1,379.99,07/02/19 11:17,"189 Walnut St, San Francisco, CA 94016" +224123,Wired Headphones,1,11.99,07/13/19 13:37,"362 Lakeview St, Austin, TX 73301" +224124,Lightning Charging Cable,1,14.95,07/10/19 16:46,"783 Jackson St, Boston, MA 02215" +224125,Google Phone,1,600,07/25/19 14:30,"628 Sunset St, Austin, TX 73301" +224125,USB-C Charging Cable,1,11.95,07/25/19 14:30,"628 Sunset St, Austin, TX 73301" +224126,Apple Airpods Headphones,1,150,07/03/19 17:45,"403 Jackson St, Atlanta, GA 30301" +224127,34in Ultrawide Monitor,1,379.99,07/30/19 07:57,"526 Church St, Atlanta, GA 30301" +224128,AA Batteries (4-pack),2,3.84,07/14/19 11:18,"570 12th St, San Francisco, CA 94016" +224129,27in FHD Monitor,1,149.99,07/07/19 18:55,"682 Johnson St, Boston, MA 02215" +224130,Apple Airpods Headphones,1,150,07/30/19 12:14,"173 Jefferson St, Atlanta, GA 30301" +224131,Bose SoundSport Headphones,1,99.99,07/02/19 22:52,"14 North St, San Francisco, CA 94016" +224132,20in Monitor,1,109.99,07/22/19 16:18,"901 Main St, Los Angeles, CA 90001" +224133,AAA Batteries (4-pack),3,2.99,07/16/19 11:41,"993 Willow St, Los Angeles, CA 90001" +224134,Apple Airpods Headphones,1,150,07/13/19 09:26,"545 Dogwood St, Seattle, WA 98101" +224135,Wired Headphones,1,11.99,07/23/19 20:20,"862 12th St, San Francisco, CA 94016" +224136,Wired Headphones,1,11.99,07/11/19 20:42,"931 Spruce St, San Francisco, CA 94016" +224137,27in FHD Monitor,1,149.99,07/14/19 16:11,"173 Lakeview St, Portland, OR 97035" +224138,USB-C Charging Cable,1,11.95,07/21/19 16:51,"993 Lakeview St, Austin, TX 73301" +224139,27in FHD Monitor,1,149.99,07/19/19 08:56,"430 Johnson St, Los Angeles, CA 90001" +224140,Bose SoundSport Headphones,1,99.99,07/24/19 18:21,"401 Church St, San Francisco, CA 94016" +224141,27in FHD Monitor,1,149.99,07/07/19 18:20,"90 Meadow St, Seattle, WA 98101" +224142,Lightning Charging Cable,1,14.95,07/15/19 10:51,"403 11th St, Los Angeles, CA 90001" +224142,Macbook Pro Laptop,1,1700,07/15/19 10:51,"403 11th St, Los Angeles, CA 90001" +224143,AA Batteries (4-pack),1,3.84,07/02/19 20:11,"890 2nd St, Los Angeles, CA 90001" +224144,Wired Headphones,1,11.99,07/11/19 18:32,"467 1st St, Boston, MA 02215" +224145,Macbook Pro Laptop,1,1700,07/23/19 19:23,"804 12th St, Portland, OR 97035" +224146,AAA Batteries (4-pack),1,2.99,07/06/19 22:27,"655 Lakeview St, Seattle, WA 98101" +224147,iPhone,1,700,07/12/19 16:22,"403 Hill St, New York City, NY 10001" +224148,AA Batteries (4-pack),2,3.84,07/24/19 20:30,"973 7th St, Seattle, WA 98101" +224149,Apple Airpods Headphones,1,150,07/17/19 12:39,"900 Sunset St, Los Angeles, CA 90001" +224150,Macbook Pro Laptop,1,1700,07/23/19 19:23,"65 Church St, Austin, TX 73301" +224151,USB-C Charging Cable,1,11.95,07/19/19 08:11,"452 Lakeview St, Los Angeles, CA 90001" +224152,AA Batteries (4-pack),2,3.84,07/31/19 04:38,"162 13th St, San Francisco, CA 94016" +224153,Bose SoundSport Headphones,1,99.99,07/30/19 21:13,"859 10th St, Los Angeles, CA 90001" +224154,AA Batteries (4-pack),1,3.84,07/14/19 12:12,"678 Johnson St, Seattle, WA 98101" +224155,Lightning Charging Cable,1,14.95,07/23/19 15:05,"394 Sunset St, Seattle, WA 98101" +224156,USB-C Charging Cable,1,11.95,07/26/19 19:48,"136 Pine St, Seattle, WA 98101" +224157,AAA Batteries (4-pack),1,2.99,07/27/19 08:06,"247 Cedar St, New York City, NY 10001" +224158,USB-C Charging Cable,1,11.95,07/26/19 09:12,"309 2nd St, Portland, OR 97035" +224159,USB-C Charging Cable,1,11.95,07/28/19 13:08,"397 Adams St, New York City, NY 10001" +224160,Wired Headphones,1,11.99,07/12/19 15:48,"464 Hickory St, Seattle, WA 98101" +224161,Apple Airpods Headphones,1,150,07/09/19 22:51,"415 River St, San Francisco, CA 94016" +224162,20in Monitor,1,109.99,07/04/19 05:35,"111 Adams St, San Francisco, CA 94016" +224163,AAA Batteries (4-pack),1,2.99,07/15/19 11:58,"939 4th St, Seattle, WA 98101" +224164,Lightning Charging Cable,1,14.95,07/26/19 11:05,"142 Jefferson St, Los Angeles, CA 90001" +224165,ThinkPad Laptop,1,999.99,07/09/19 10:58,"225 Ridge St, Austin, TX 73301" +224166,USB-C Charging Cable,1,11.95,07/08/19 14:25,"74 12th St, Atlanta, GA 30301" +224167,Bose SoundSport Headphones,1,99.99,07/02/19 14:02,"210 Johnson St, New York City, NY 10001" +224168,USB-C Charging Cable,1,11.95,07/22/19 22:15,"874 Adams St, San Francisco, CA 94016" +224169,AAA Batteries (4-pack),1,2.99,07/22/19 13:15,"440 Chestnut St, Seattle, WA 98101" +224170,iPhone,1,700,07/16/19 17:26,"11 Adams St, San Francisco, CA 94016" +224170,Apple Airpods Headphones,1,150,07/16/19 17:26,"11 Adams St, San Francisco, CA 94016" +224171,34in Ultrawide Monitor,1,379.99,07/13/19 01:50,"292 Elm St, Portland, OR 97035" +224172,AA Batteries (4-pack),1,3.84,07/08/19 05:53,"814 Main St, San Francisco, CA 94016" +224173,AA Batteries (4-pack),1,3.84,07/15/19 17:32,"773 Hickory St, San Francisco, CA 94016" +224174,ThinkPad Laptop,1,999.99,07/16/19 23:37,"450 Maple St, Los Angeles, CA 90001" +224175,AA Batteries (4-pack),2,3.84,07/01/19 11:20,"928 Elm St, Los Angeles, CA 90001" +224176,Google Phone,1,600,07/03/19 04:27,"792 Main St, Boston, MA 02215" +224176,USB-C Charging Cable,1,11.95,07/03/19 04:27,"792 Main St, Boston, MA 02215" +224177,27in FHD Monitor,1,149.99,07/19/19 10:59,"240 Cedar St, Dallas, TX 75001" +224178,34in Ultrawide Monitor,1,379.99,07/15/19 16:37,"563 7th St, Boston, MA 02215" +224179,AAA Batteries (4-pack),3,2.99,07/13/19 17:40,"626 Main St, San Francisco, CA 94016" +224180,USB-C Charging Cable,1,11.95,07/21/19 19:31,"87 8th St, Dallas, TX 75001" +224181,Bose SoundSport Headphones,1,99.99,07/20/19 15:02,"532 Madison St, San Francisco, CA 94016" +224182,AA Batteries (4-pack),1,3.84,07/04/19 21:30,"879 Forest St, Boston, MA 02215" +224183,ThinkPad Laptop,1,999.99,07/24/19 00:09,"860 Hill St, San Francisco, CA 94016" +224184,Apple Airpods Headphones,1,150,07/01/19 05:29,"312 Adams St, Boston, MA 02215" +224185,Vareebadd Phone,1,400,07/25/19 15:56,"207 Meadow St, Boston, MA 02215" +224185,USB-C Charging Cable,1,11.95,07/25/19 15:56,"207 Meadow St, Boston, MA 02215" +224186,Bose SoundSport Headphones,1,99.99,07/04/19 21:42,"74 River St, Dallas, TX 75001" +224187,Bose SoundSport Headphones,1,99.99,07/28/19 13:06,"904 Lake St, Boston, MA 02215" +224188,Lightning Charging Cable,1,14.95,07/20/19 12:35,"520 Cedar St, Los Angeles, CA 90001" +224189,Wired Headphones,1,11.99,07/18/19 23:26,"862 6th St, Atlanta, GA 30301" +224190,AAA Batteries (4-pack),1,2.99,07/25/19 15:41,"756 Willow St, Seattle, WA 98101" +224191,AAA Batteries (4-pack),2,2.99,07/15/19 20:10,"954 North St, San Francisco, CA 94016" +224192,AAA Batteries (4-pack),2,2.99,07/27/19 16:48,"447 Highland St, Seattle, WA 98101" +224193,LG Washing Machine,1,600.0,07/14/19 11:48,"943 4th St, Seattle, WA 98101" +224194,USB-C Charging Cable,1,11.95,07/16/19 13:19,"861 Walnut St, Los Angeles, CA 90001" +224195,AAA Batteries (4-pack),3,2.99,07/29/19 15:39,"482 Chestnut St, Boston, MA 02215" +224196,Lightning Charging Cable,1,14.95,07/15/19 17:58,"744 Walnut St, New York City, NY 10001" +224197,AA Batteries (4-pack),1,3.84,07/05/19 12:57,"474 Washington St, Dallas, TX 75001" +224198,Flatscreen TV,1,300,07/10/19 01:02,"595 Hickory St, Atlanta, GA 30301" +224199,Bose SoundSport Headphones,1,99.99,07/16/19 18:40,"169 Park St, New York City, NY 10001" +224200,AA Batteries (4-pack),1,3.84,07/27/19 22:08,"334 South St, New York City, NY 10001" +224201,AAA Batteries (4-pack),1,2.99,07/06/19 12:02,"102 1st St, San Francisco, CA 94016" +224202,ThinkPad Laptop,1,999.99,07/28/19 12:11,"224 South St, San Francisco, CA 94016" +224203,Wired Headphones,1,11.99,07/27/19 22:24,"797 Park St, Dallas, TX 75001" +224204,Wired Headphones,1,11.99,07/16/19 20:05,"694 Forest St, Boston, MA 02215" +224205,AAA Batteries (4-pack),1,2.99,07/15/19 12:58,"331 Main St, New York City, NY 10001" +224206,Lightning Charging Cable,1,14.95,07/13/19 23:48,"89 14th St, Portland, ME 04101" +224207,USB-C Charging Cable,1,11.95,07/14/19 14:05,"111 Chestnut St, Portland, OR 97035" +224208,AAA Batteries (4-pack),1,2.99,07/17/19 18:50,"185 Willow St, San Francisco, CA 94016" +224209,AA Batteries (4-pack),2,3.84,07/03/19 08:04,"806 Elm St, Dallas, TX 75001" +224210,Vareebadd Phone,1,400,07/19/19 21:58,"761 Park St, Austin, TX 73301" +224211,AA Batteries (4-pack),1,3.84,07/08/19 10:03,"174 Park St, Dallas, TX 75001" +224212,27in FHD Monitor,1,149.99,07/10/19 20:29,"583 Highland St, San Francisco, CA 94016" +224213,LG Dryer,1,600.0,07/17/19 21:54,"852 Jackson St, Boston, MA 02215" +224214,USB-C Charging Cable,1,11.95,08/01/19 01:18,"931 11th St, Los Angeles, CA 90001" +224215,iPhone,1,700,07/25/19 00:50,"203 11th St, Boston, MA 02215" +224216,USB-C Charging Cable,1,11.95,07/04/19 13:38,"473 7th St, San Francisco, CA 94016" +224217,Lightning Charging Cable,1,14.95,07/10/19 17:18,"557 Wilson St, Austin, TX 73301" +224218,USB-C Charging Cable,1,11.95,07/05/19 12:54,"549 Walnut St, Boston, MA 02215" +224219,AAA Batteries (4-pack),1,2.99,07/22/19 11:43,"270 Sunset St, Boston, MA 02215" +224220,AA Batteries (4-pack),1,3.84,07/07/19 14:08,"504 Lincoln St, Portland, ME 04101" +224221,AAA Batteries (4-pack),2,2.99,07/13/19 08:55,"254 Pine St, Atlanta, GA 30301" +224222,27in FHD Monitor,1,149.99,07/12/19 20:04,"514 5th St, Los Angeles, CA 90001" +224223,Macbook Pro Laptop,1,1700,07/18/19 14:11,"173 West St, Los Angeles, CA 90001" +224224,AAA Batteries (4-pack),2,2.99,07/31/19 02:11,"599 12th St, Los Angeles, CA 90001" +224225,Lightning Charging Cable,1,14.95,07/07/19 18:11,"415 Maple St, New York City, NY 10001" +224226,Apple Airpods Headphones,1,150,07/12/19 11:21,"478 Washington St, Dallas, TX 75001" +224227,Apple Airpods Headphones,1,150,07/03/19 23:29,"2 Jackson St, Los Angeles, CA 90001" +224228,27in FHD Monitor,1,149.99,07/31/19 09:28,"544 Wilson St, Portland, OR 97035" +224229,Google Phone,1,600,07/19/19 21:47,"334 8th St, Austin, TX 73301" +224230,34in Ultrawide Monitor,1,379.99,07/21/19 20:10,"230 Chestnut St, New York City, NY 10001" +224231,Wired Headphones,1,11.99,07/13/19 17:15,"121 Lakeview St, San Francisco, CA 94016" +224232,AA Batteries (4-pack),1,3.84,07/03/19 05:39,"109 Wilson St, Dallas, TX 75001" +224233,Flatscreen TV,1,300,07/27/19 23:14,"756 13th St, Austin, TX 73301" +224234,USB-C Charging Cable,1,11.95,07/08/19 15:49,"404 South St, Los Angeles, CA 90001" +224235,27in 4K Gaming Monitor,2,389.99,07/24/19 14:01,"702 8th St, Atlanta, GA 30301" +224236,AAA Batteries (4-pack),1,2.99,07/31/19 12:57,"188 12th St, Austin, TX 73301" +224237,27in 4K Gaming Monitor,1,389.99,07/05/19 19:07,"796 South St, Atlanta, GA 30301" +224238,27in 4K Gaming Monitor,1,389.99,07/10/19 14:46,"532 Willow St, Portland, ME 04101" +224239,Macbook Pro Laptop,1,1700,07/01/19 21:03,"234 Meadow St, San Francisco, CA 94016" +224240,34in Ultrawide Monitor,1,379.99,07/10/19 13:02,"517 Elm St, Boston, MA 02215" +224241,Bose SoundSport Headphones,1,99.99,07/14/19 22:46,"227 Dogwood St, New York City, NY 10001" +224242,AA Batteries (4-pack),1,3.84,07/07/19 13:36,"6 Cherry St, San Francisco, CA 94016" +224243,Flatscreen TV,1,300,07/14/19 17:11,"219 Park St, San Francisco, CA 94016" +224244,Apple Airpods Headphones,1,150,07/20/19 14:14,"813 Wilson St, Seattle, WA 98101" +224245,USB-C Charging Cable,1,11.95,07/24/19 08:41,"110 5th St, Atlanta, GA 30301" +224246,AA Batteries (4-pack),1,3.84,07/16/19 21:47,"765 Main St, Los Angeles, CA 90001" +224247,Macbook Pro Laptop,1,1700,07/13/19 11:57,"280 Sunset St, Seattle, WA 98101" +224248,Google Phone,1,600,07/21/19 17:52,"998 5th St, New York City, NY 10001" +224248,USB-C Charging Cable,2,11.95,07/21/19 17:52,"998 5th St, New York City, NY 10001" +224249,Lightning Charging Cable,1,14.95,07/18/19 06:34,"932 Maple St, Seattle, WA 98101" +224250,Apple Airpods Headphones,1,150,07/12/19 09:51,"119 South St, Boston, MA 02215" +224251,Lightning Charging Cable,1,14.95,07/23/19 09:01,"772 North St, Dallas, TX 75001" +224252,AAA Batteries (4-pack),1,2.99,07/09/19 19:52,"946 8th St, San Francisco, CA 94016" +224253,iPhone,1,700,07/20/19 13:35,"873 Cherry St, New York City, NY 10001" +224254,AA Batteries (4-pack),1,3.84,07/19/19 15:51,"346 Washington St, Austin, TX 73301" +224255,Google Phone,1,600,07/04/19 19:22,"801 Hickory St, Dallas, TX 75001" +224256,Google Phone,1,600,07/03/19 08:42,"249 Lake St, Los Angeles, CA 90001" +224257,USB-C Charging Cable,1,11.95,07/07/19 20:21,"13 Lakeview St, San Francisco, CA 94016" +224258,Bose SoundSport Headphones,1,99.99,07/22/19 06:10,"822 Madison St, Austin, TX 73301" +224259,USB-C Charging Cable,1,11.95,07/14/19 10:32,"22 8th St, San Francisco, CA 94016" +224260,Apple Airpods Headphones,1,150,07/03/19 10:12,"291 Highland St, Los Angeles, CA 90001" +224261,USB-C Charging Cable,1,11.95,07/28/19 13:48,"320 7th St, Los Angeles, CA 90001" +224262,USB-C Charging Cable,1,11.95,07/08/19 13:38,"721 Cherry St, Los Angeles, CA 90001" +224263,AAA Batteries (4-pack),1,2.99,07/05/19 21:11,"57 10th St, San Francisco, CA 94016" +224264,Apple Airpods Headphones,2,150,07/01/19 15:06,"425 River St, Atlanta, GA 30301" +224265,AAA Batteries (4-pack),2,2.99,07/31/19 14:10,"407 Hill St, Portland, OR 97035" +224266,AAA Batteries (4-pack),1,2.99,07/02/19 11:27,"262 Hickory St, Dallas, TX 75001" +224267,27in 4K Gaming Monitor,1,389.99,07/19/19 19:08,"805 2nd St, Austin, TX 73301" +224268,AAA Batteries (4-pack),1,2.99,07/27/19 11:44,"480 13th St, Seattle, WA 98101" +224269,Lightning Charging Cable,1,14.95,07/19/19 17:35,"193 Hill St, Dallas, TX 75001" +224270,Wired Headphones,1,11.99,07/23/19 22:37,"690 River St, San Francisco, CA 94016" +224271,Lightning Charging Cable,1,14.95,07/09/19 20:29,"834 Lake St, New York City, NY 10001" +224272,Lightning Charging Cable,1,14.95,07/28/19 12:15,"904 Sunset St, Seattle, WA 98101" +224273,Apple Airpods Headphones,1,150,07/10/19 21:41,"497 Church St, Boston, MA 02215" +224274,34in Ultrawide Monitor,1,379.99,07/01/19 12:18,"255 Church St, San Francisco, CA 94016" +224275,Bose SoundSport Headphones,1,99.99,07/01/19 13:48,"737 Main St, San Francisco, CA 94016" +224276,34in Ultrawide Monitor,1,379.99,07/07/19 06:31,"881 Jackson St, Atlanta, GA 30301" +224277,Wired Headphones,1,11.99,07/15/19 05:45,"398 Chestnut St, San Francisco, CA 94016" +224278,Wired Headphones,1,11.99,07/11/19 06:54,"692 North St, Boston, MA 02215" +224279,Google Phone,1,600,07/01/19 21:55,"9 Hickory St, Boston, MA 02215" +224280,27in FHD Monitor,1,149.99,07/12/19 11:33,"108 Lakeview St, San Francisco, CA 94016" +224281,Google Phone,1,600,07/29/19 19:19,"884 12th St, Atlanta, GA 30301" +224282,Wired Headphones,2,11.99,07/16/19 08:41,"541 8th St, San Francisco, CA 94016" +224282,34in Ultrawide Monitor,1,379.99,07/16/19 08:41,"541 8th St, San Francisco, CA 94016" +224283,Lightning Charging Cable,1,14.95,07/05/19 14:21,"217 Madison St, Dallas, TX 75001" +224284,AAA Batteries (4-pack),2,2.99,07/29/19 18:21,"808 13th St, Los Angeles, CA 90001" +224285,Google Phone,1,600,07/05/19 13:29,"1 Adams St, Austin, TX 73301" +224286,AAA Batteries (4-pack),2,2.99,07/04/19 17:20,"252 14th St, Atlanta, GA 30301" +224287,iPhone,1,700,07/14/19 10:36,"879 11th St, Austin, TX 73301" +224287,Lightning Charging Cable,1,14.95,07/14/19 10:36,"879 11th St, Austin, TX 73301" +224288,Lightning Charging Cable,2,14.95,07/20/19 10:31,"146 Elm St, Los Angeles, CA 90001" +224288,34in Ultrawide Monitor,1,379.99,07/20/19 10:31,"146 Elm St, Los Angeles, CA 90001" +224289,Bose SoundSport Headphones,1,99.99,07/08/19 18:37,"275 Cedar St, San Francisco, CA 94016" +224290,20in Monitor,1,109.99,07/06/19 19:38,"724 5th St, San Francisco, CA 94016" +224291,Wired Headphones,1,11.99,07/02/19 12:59,"274 Ridge St, Boston, MA 02215" +224292,Wired Headphones,1,11.99,07/18/19 10:43,"778 Adams St, Atlanta, GA 30301" +224293,Wired Headphones,1,11.99,07/24/19 20:41,"106 5th St, Portland, OR 97035" +224294,AAA Batteries (4-pack),1,2.99,07/20/19 19:29,"353 Wilson St, Portland, OR 97035" +224295,iPhone,1,700,07/04/19 21:26,"742 Center St, Seattle, WA 98101" +224296,AA Batteries (4-pack),1,3.84,07/19/19 21:27,"388 13th St, San Francisco, CA 94016" +224297,Lightning Charging Cable,1,14.95,07/21/19 23:05,"469 13th St, Los Angeles, CA 90001" +224298,ThinkPad Laptop,1,999.99,07/17/19 21:58,"990 4th St, Atlanta, GA 30301" +224299,Macbook Pro Laptop,1,1700,07/18/19 23:28,"173 Church St, Portland, OR 97035" +224300,USB-C Charging Cable,1,11.95,07/13/19 20:33,"905 South St, Seattle, WA 98101" +224301,Flatscreen TV,1,300,07/25/19 12:59,"847 Church St, Boston, MA 02215" +224302,AAA Batteries (4-pack),1,2.99,07/26/19 11:33,"856 Ridge St, New York City, NY 10001" +224303,20in Monitor,1,109.99,07/14/19 17:19,"966 Chestnut St, Los Angeles, CA 90001" +224304,27in 4K Gaming Monitor,1,389.99,07/04/19 21:46,"641 Center St, Boston, MA 02215" +224305,Lightning Charging Cable,1,14.95,07/27/19 19:12,"683 14th St, San Francisco, CA 94016" +224306,Apple Airpods Headphones,1,150,07/12/19 18:23,"861 Church St, Portland, OR 97035" +224307,Apple Airpods Headphones,1,150,07/19/19 07:35,"954 Walnut St, Atlanta, GA 30301" +224308,Lightning Charging Cable,1,14.95,07/31/19 21:37,"267 Washington St, Dallas, TX 75001" +224309,AA Batteries (4-pack),2,3.84,07/11/19 14:32,"989 10th St, Seattle, WA 98101" +224310,20in Monitor,1,109.99,07/16/19 17:04,"232 Lakeview St, Austin, TX 73301" +224311,USB-C Charging Cable,1,11.95,07/07/19 10:26,"223 Dogwood St, San Francisco, CA 94016" +224312,AA Batteries (4-pack),1,3.84,07/23/19 14:05,"509 Hickory St, Seattle, WA 98101" +224312,34in Ultrawide Monitor,1,379.99,07/23/19 14:05,"509 Hickory St, Seattle, WA 98101" +224313,USB-C Charging Cable,1,11.95,07/02/19 18:48,"673 Forest St, Dallas, TX 75001" +224314,Apple Airpods Headphones,1,150,07/26/19 22:52,"297 Washington St, Boston, MA 02215" +224315,Google Phone,1,600,07/30/19 07:04,"995 Cherry St, Portland, OR 97035" +224315,USB-C Charging Cable,1,11.95,07/30/19 07:04,"995 Cherry St, Portland, OR 97035" +224316,Apple Airpods Headphones,1,150,07/12/19 21:37,"572 Wilson St, New York City, NY 10001" +224317,Wired Headphones,1,11.99,07/01/19 17:19,"421 Johnson St, Seattle, WA 98101" +224318,Lightning Charging Cable,1,14.95,07/31/19 17:20,"252 West St, New York City, NY 10001" +224319,Flatscreen TV,1,300,07/10/19 13:30,"675 Elm St, Boston, MA 02215" +224320,Flatscreen TV,1,300,07/16/19 15:59,"349 Ridge St, Atlanta, GA 30301" +224321,Wired Headphones,1,11.99,07/26/19 18:23,"13 2nd St, Austin, TX 73301" +224322,Apple Airpods Headphones,1,150,07/12/19 10:28,"806 Lake St, Los Angeles, CA 90001" +224323,AA Batteries (4-pack),1,3.84,07/31/19 14:32,"311 5th St, Dallas, TX 75001" +224324,AAA Batteries (4-pack),1,2.99,07/28/19 09:31,"754 Dogwood St, Dallas, TX 75001" +224325,Lightning Charging Cable,1,14.95,07/19/19 14:11,"145 West St, Boston, MA 02215" +224326,Google Phone,1,600,07/14/19 20:02,"709 Cedar St, Dallas, TX 75001" +224326,USB-C Charging Cable,1,11.95,07/14/19 20:02,"709 Cedar St, Dallas, TX 75001" +224327,Flatscreen TV,1,300,07/13/19 21:44,"636 Lake St, Atlanta, GA 30301" +224328,Wired Headphones,1,11.99,07/22/19 17:50,"111 Hickory St, Los Angeles, CA 90001" +224329,AAA Batteries (4-pack),1,2.99,07/14/19 11:08,"622 9th St, Los Angeles, CA 90001" +224330,AAA Batteries (4-pack),2,2.99,07/09/19 19:26,"74 13th St, New York City, NY 10001" +224331,20in Monitor,1,109.99,07/06/19 03:46,"654 12th St, San Francisco, CA 94016" +224332,AAA Batteries (4-pack),1,2.99,07/20/19 21:32,"816 10th St, San Francisco, CA 94016" +224333,Vareebadd Phone,1,400,07/06/19 15:48,"438 Meadow St, Boston, MA 02215" +224333,Wired Headphones,1,11.99,07/06/19 15:48,"438 Meadow St, Boston, MA 02215" +224334,27in 4K Gaming Monitor,1,389.99,07/25/19 00:39,"845 Meadow St, Los Angeles, CA 90001" +224335,AAA Batteries (4-pack),2,2.99,07/17/19 22:29,"487 8th St, San Francisco, CA 94016" +224336,20in Monitor,1,109.99,07/07/19 14:15,"221 1st St, Los Angeles, CA 90001" +224337,Wired Headphones,1,11.99,07/16/19 02:11,"858 Hickory St, New York City, NY 10001" +224338,Wired Headphones,1,11.99,07/19/19 12:11,"547 North St, San Francisco, CA 94016" +224339,AA Batteries (4-pack),1,3.84,07/26/19 20:36,"105 Willow St, Portland, OR 97035" +224340,Macbook Pro Laptop,1,1700,07/13/19 14:11,"85 Pine St, Los Angeles, CA 90001" +224341,AAA Batteries (4-pack),1,2.99,07/06/19 00:34,"511 9th St, Boston, MA 02215" +224342,Flatscreen TV,1,300,07/24/19 13:44,"42 Meadow St, Portland, OR 97035" +224343,USB-C Charging Cable,1,11.95,07/23/19 17:44,"174 Main St, Los Angeles, CA 90001" +224344,AA Batteries (4-pack),2,3.84,07/04/19 13:15,"632 Center St, Seattle, WA 98101" +224345,AA Batteries (4-pack),1,3.84,07/14/19 21:02,"694 Jackson St, San Francisco, CA 94016" +224346,Bose SoundSport Headphones,1,99.99,07/02/19 10:23,"408 7th St, Boston, MA 02215" +224347,Wired Headphones,1,11.99,07/05/19 18:24,"506 Hickory St, Seattle, WA 98101" +224348,AAA Batteries (4-pack),1,2.99,07/06/19 19:58,"416 Johnson St, San Francisco, CA 94016" +224349,AA Batteries (4-pack),1,3.84,07/02/19 23:54,"669 Center St, San Francisco, CA 94016" +224350,USB-C Charging Cable,1,11.95,07/27/19 12:38,"452 Washington St, Boston, MA 02215" +224351,Lightning Charging Cable,1,14.95,07/10/19 11:40,"859 Wilson St, New York City, NY 10001" +224352,Wired Headphones,1,11.99,07/25/19 13:54,"510 Hickory St, Portland, ME 04101" +224353,27in FHD Monitor,1,149.99,07/19/19 19:49,"61 Hill St, Dallas, TX 75001" +224354,Lightning Charging Cable,1,14.95,07/01/19 18:29,"24 North St, San Francisco, CA 94016" +224355,AA Batteries (4-pack),1,3.84,07/30/19 16:58,"389 Madison St, San Francisco, CA 94016" +224356,USB-C Charging Cable,1,11.95,07/01/19 17:10,"874 River St, San Francisco, CA 94016" +224357,iPhone,1,700,07/09/19 17:28,"359 Meadow St, Los Angeles, CA 90001" +224358,AAA Batteries (4-pack),2,2.99,07/31/19 14:19,"148 Sunset St, Boston, MA 02215" +224359,AA Batteries (4-pack),1,3.84,07/14/19 21:32,"746 Highland St, San Francisco, CA 94016" +224360,USB-C Charging Cable,1,11.95,07/16/19 05:11,"970 Washington St, Los Angeles, CA 90001" +224361,AAA Batteries (4-pack),1,2.99,07/16/19 20:05,"207 North St, Boston, MA 02215" +224362,Flatscreen TV,1,300,07/24/19 16:53,"748 Maple St, Portland, ME 04101" +224363,USB-C Charging Cable,1,11.95,07/26/19 18:42,"97 Park St, Atlanta, GA 30301" +224364,Lightning Charging Cable,1,14.95,07/24/19 22:03,"87 Johnson St, Boston, MA 02215" +224365,ThinkPad Laptop,1,999.99,07/14/19 19:59,"52 Spruce St, Boston, MA 02215" +224366,USB-C Charging Cable,1,11.95,07/03/19 21:48,"234 Maple St, Seattle, WA 98101" +224367,LG Dryer,1,600.0,07/22/19 19:39,"344 13th St, Atlanta, GA 30301" +224368,34in Ultrawide Monitor,1,379.99,07/27/19 16:23,"839 Church St, Los Angeles, CA 90001" +224369,Lightning Charging Cable,2,14.95,07/01/19 19:44,"211 Wilson St, New York City, NY 10001" +224370,Wired Headphones,1,11.99,07/31/19 17:48,"331 Madison St, Seattle, WA 98101" +224371,Lightning Charging Cable,1,14.95,07/09/19 14:32,"64 6th St, New York City, NY 10001" +224372,Vareebadd Phone,1,400,07/09/19 15:39,"551 Wilson St, Atlanta, GA 30301" +224373,AAA Batteries (4-pack),1,2.99,07/07/19 12:19,"64 12th St, Atlanta, GA 30301" +224374,Google Phone,1,600,07/05/19 14:13,"365 West St, Portland, OR 97035" +224375,20in Monitor,1,109.99,07/28/19 21:09,"756 Walnut St, San Francisco, CA 94016" +224376,Lightning Charging Cable,1,14.95,07/22/19 11:58,"327 Dogwood St, Los Angeles, CA 90001" +224377,AA Batteries (4-pack),1,3.84,07/11/19 12:04,"646 Walnut St, Boston, MA 02215" +224378,Lightning Charging Cable,1,14.95,07/07/19 22:30,"230 Chestnut St, Boston, MA 02215" +224379,34in Ultrawide Monitor,1,379.99,07/12/19 03:27,"809 Walnut St, Dallas, TX 75001" +224380,AAA Batteries (4-pack),1,2.99,07/01/19 11:56,"565 West St, San Francisco, CA 94016" +224381,Lightning Charging Cable,1,14.95,07/25/19 11:23,"614 Dogwood St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +224382,AAA Batteries (4-pack),1,2.99,07/18/19 04:05,"249 Hill St, New York City, NY 10001" +224383,Wired Headphones,1,11.99,07/08/19 16:03,"108 7th St, Seattle, WA 98101" +224384,AAA Batteries (4-pack),1,2.99,07/31/19 18:02,"128 South St, San Francisco, CA 94016" +224385,AA Batteries (4-pack),2,3.84,07/21/19 07:22,"621 Adams St, Seattle, WA 98101" +224386,Lightning Charging Cable,1,14.95,07/10/19 18:21,"467 Lakeview St, Los Angeles, CA 90001" +224386,27in 4K Gaming Monitor,1,389.99,07/10/19 18:21,"467 Lakeview St, Los Angeles, CA 90001" +224387,USB-C Charging Cable,1,11.95,07/09/19 21:18,"453 Willow St, San Francisco, CA 94016" +224388,Lightning Charging Cable,1,14.95,07/22/19 16:57,"801 Park St, Los Angeles, CA 90001" +224389,AA Batteries (4-pack),1,3.84,07/07/19 16:35,"698 Park St, New York City, NY 10001" +224390,Macbook Pro Laptop,1,1700,07/16/19 10:28,"14 7th St, Dallas, TX 75001" +224391,27in FHD Monitor,1,149.99,07/12/19 17:39,"618 2nd St, Dallas, TX 75001" +224392,Google Phone,1,600,07/04/19 11:10,"369 Lakeview St, Atlanta, GA 30301" +224393,Lightning Charging Cable,1,14.95,07/12/19 11:26,"261 Main St, Boston, MA 02215" +224394,USB-C Charging Cable,1,11.95,07/15/19 18:23,"220 Jackson St, San Francisco, CA 94016" +224395,Lightning Charging Cable,1,14.95,07/03/19 07:20,"484 Dogwood St, San Francisco, CA 94016" +224396,Wired Headphones,1,11.99,07/21/19 18:12,"173 Lake St, Boston, MA 02215" +224397,Apple Airpods Headphones,1,150,07/19/19 17:15,"51 Willow St, San Francisco, CA 94016" +224398,AA Batteries (4-pack),1,3.84,07/13/19 19:42,"556 7th St, Seattle, WA 98101" +224399,AA Batteries (4-pack),1,3.84,07/14/19 21:36,"617 5th St, New York City, NY 10001" +224400,USB-C Charging Cable,1,11.95,07/10/19 11:13,"809 14th St, Austin, TX 73301" +224401,Apple Airpods Headphones,1,150,07/05/19 16:53,"251 Walnut St, Boston, MA 02215" +224402,USB-C Charging Cable,1,11.95,07/29/19 20:21,"704 Hill St, Los Angeles, CA 90001" +224403,AAA Batteries (4-pack),2,2.99,07/17/19 16:20,"104 Meadow St, San Francisco, CA 94016" +224404,Wired Headphones,1,11.99,07/31/19 14:38,"307 Lincoln St, Dallas, TX 75001" +224405,AAA Batteries (4-pack),1,2.99,07/28/19 17:39,"963 9th St, Atlanta, GA 30301" +224406,Wired Headphones,1,11.99,07/14/19 11:55,"481 Forest St, New York City, NY 10001" +224407,AAA Batteries (4-pack),1,2.99,07/19/19 21:18,"92 Jackson St, Dallas, TX 75001" +224408,AA Batteries (4-pack),1,3.84,07/31/19 02:20,"129 Meadow St, New York City, NY 10001" +224409,34in Ultrawide Monitor,1,379.99,07/12/19 16:53,"742 Lake St, Los Angeles, CA 90001" +224410,Apple Airpods Headphones,1,150,07/23/19 17:55,"186 Spruce St, Dallas, TX 75001" +224411,AAA Batteries (4-pack),1,2.99,07/24/19 09:27,"204 Johnson St, San Francisco, CA 94016" +224412,AA Batteries (4-pack),1,3.84,07/10/19 16:59,"389 South St, Los Angeles, CA 90001" +224413,AA Batteries (4-pack),2,3.84,07/02/19 08:39,"637 Hickory St, Los Angeles, CA 90001" +224414,27in 4K Gaming Monitor,1,389.99,07/21/19 20:27,"723 Hill St, Dallas, TX 75001" +224415,20in Monitor,1,109.99,07/13/19 23:25,"561 10th St, Los Angeles, CA 90001" +224416,Wired Headphones,1,11.99,07/04/19 13:42,"692 Jackson St, Seattle, WA 98101" +224417,AAA Batteries (4-pack),2,2.99,07/09/19 21:43,"776 Adams St, San Francisco, CA 94016" +224418,27in 4K Gaming Monitor,1,389.99,07/17/19 21:26,"84 Willow St, New York City, NY 10001" +224419,27in 4K Gaming Monitor,1,389.99,07/24/19 20:29,"106 13th St, Atlanta, GA 30301" +224420,Apple Airpods Headphones,1,150,07/17/19 20:21,"248 5th St, Boston, MA 02215" +224421,Lightning Charging Cable,1,14.95,07/16/19 12:38,"8 Hickory St, San Francisco, CA 94016" +224422,USB-C Charging Cable,1,11.95,07/10/19 18:55,"144 Johnson St, Dallas, TX 75001" +224423,Macbook Pro Laptop,1,1700,07/08/19 16:45,"396 13th St, Atlanta, GA 30301" +224424,AAA Batteries (4-pack),1,2.99,07/18/19 18:08,"726 North St, Portland, OR 97035" +224425,AAA Batteries (4-pack),1,2.99,07/01/19 22:54,"261 Main St, Los Angeles, CA 90001" +224426,AAA Batteries (4-pack),2,2.99,07/23/19 16:46,"793 Hill St, Dallas, TX 75001" +224427,Apple Airpods Headphones,1,150,07/31/19 12:32,"525 West St, San Francisco, CA 94016" +224428,AAA Batteries (4-pack),1,2.99,07/06/19 11:07,"86 10th St, New York City, NY 10001" +224429,27in FHD Monitor,1,149.99,07/09/19 13:22,"594 1st St, Atlanta, GA 30301" +224430,AAA Batteries (4-pack),1,2.99,07/01/19 21:32,"168 Willow St, Austin, TX 73301" +224431,Bose SoundSport Headphones,1,99.99,07/10/19 22:31,"404 4th St, Boston, MA 02215" +224432,27in 4K Gaming Monitor,1,389.99,07/02/19 13:55,"13 Highland St, Los Angeles, CA 90001" +224433,AAA Batteries (4-pack),2,2.99,07/06/19 20:29,"355 Center St, Los Angeles, CA 90001" +224434,Bose SoundSport Headphones,1,99.99,07/03/19 13:10,"354 West St, Seattle, WA 98101" +224435,AAA Batteries (4-pack),2,2.99,07/14/19 16:24,"946 10th St, Atlanta, GA 30301" +224436,27in FHD Monitor,1,149.99,07/13/19 10:03,"378 Hickory St, New York City, NY 10001" +224437,Lightning Charging Cable,1,14.95,07/21/19 19:43,"206 Park St, Boston, MA 02215" +224437,Apple Airpods Headphones,1,150,07/21/19 19:43,"206 Park St, Boston, MA 02215" +224438,Lightning Charging Cable,1,14.95,07/13/19 22:25,"871 North St, Dallas, TX 75001" +224439,USB-C Charging Cable,1,11.95,07/26/19 08:10,"283 7th St, New York City, NY 10001" +224440,27in FHD Monitor,1,149.99,07/12/19 14:50,"928 14th St, Boston, MA 02215" +224441,Lightning Charging Cable,1,14.95,07/06/19 06:30,"274 Spruce St, Portland, OR 97035" +224442,Wired Headphones,1,11.99,07/20/19 14:14,"366 Chestnut St, Atlanta, GA 30301" +224442,27in FHD Monitor,1,149.99,07/20/19 14:14,"366 Chestnut St, Atlanta, GA 30301" +224443,34in Ultrawide Monitor,1,379.99,07/17/19 13:30,"580 Maple St, San Francisco, CA 94016" +224444,Wired Headphones,1,11.99,07/21/19 10:47,"448 Walnut St, New York City, NY 10001" +224444,USB-C Charging Cable,1,11.95,07/21/19 10:47,"448 Walnut St, New York City, NY 10001" +224445,USB-C Charging Cable,1,11.95,07/30/19 22:08,"798 11th St, Seattle, WA 98101" +224446,AAA Batteries (4-pack),1,2.99,07/04/19 20:18,"226 4th St, San Francisco, CA 94016" +224447,AA Batteries (4-pack),1,3.84,07/12/19 08:09,"886 Ridge St, Portland, ME 04101" +224448,Bose SoundSport Headphones,1,99.99,07/21/19 07:46,"986 Pine St, San Francisco, CA 94016" +224449,Apple Airpods Headphones,1,150,07/12/19 21:30,"851 2nd St, San Francisco, CA 94016" +224450,Apple Airpods Headphones,1,150,07/13/19 21:15,"900 Cherry St, Seattle, WA 98101" +224451,USB-C Charging Cable,1,11.95,07/15/19 17:53,"568 Pine St, Portland, OR 97035" +224452,Bose SoundSport Headphones,1,99.99,07/17/19 13:41,"735 Maple St, San Francisco, CA 94016" +224453,AA Batteries (4-pack),1,3.84,07/27/19 20:54,"414 Hickory St, New York City, NY 10001" +224454,27in FHD Monitor,1,149.99,07/04/19 21:14,"166 Elm St, San Francisco, CA 94016" +224455,27in FHD Monitor,1,149.99,07/19/19 15:03,"693 11th St, Austin, TX 73301" +224456,Bose SoundSport Headphones,1,99.99,07/02/19 22:29,"155 North St, Atlanta, GA 30301" +224457,27in FHD Monitor,1,149.99,07/09/19 13:10,"905 Cherry St, Seattle, WA 98101" +224458,USB-C Charging Cable,1,11.95,07/03/19 15:47,"664 Elm St, Austin, TX 73301" +224459,27in FHD Monitor,1,149.99,07/29/19 11:54,"520 Spruce St, Portland, ME 04101" +224460,AAA Batteries (4-pack),1,2.99,07/29/19 09:26,"715 1st St, San Francisco, CA 94016" +224461,Bose SoundSport Headphones,1,99.99,07/03/19 22:58,"120 North St, New York City, NY 10001" +224462,Apple Airpods Headphones,1,150,07/08/19 09:22,"892 Hickory St, Seattle, WA 98101" +224463,AAA Batteries (4-pack),1,2.99,07/05/19 16:16,"614 Willow St, New York City, NY 10001" +224464,Wired Headphones,1,11.99,07/22/19 19:54,"632 West St, San Francisco, CA 94016" +224465,USB-C Charging Cable,1,11.95,07/15/19 18:46,"710 Madison St, San Francisco, CA 94016" +224466,Wired Headphones,1,11.99,07/06/19 11:01,"791 Dogwood St, San Francisco, CA 94016" +224467,Lightning Charging Cable,2,14.95,07/16/19 06:47,"816 Elm St, San Francisco, CA 94016" +224468,Wired Headphones,1,11.99,07/23/19 22:19,"203 Jackson St, San Francisco, CA 94016" +224469,Flatscreen TV,1,300,07/10/19 01:21,"731 Main St, Atlanta, GA 30301" +224470,Wired Headphones,1,11.99,07/16/19 21:04,"286 Lincoln St, Los Angeles, CA 90001" +224471,AAA Batteries (4-pack),1,2.99,07/07/19 22:17,"165 Sunset St, San Francisco, CA 94016" +224472,AA Batteries (4-pack),1,3.84,07/02/19 13:19,"51 Hickory St, New York City, NY 10001" +224473,Google Phone,1,600,07/09/19 18:08,"180 6th St, San Francisco, CA 94016" +224473,Wired Headphones,1,11.99,07/09/19 18:08,"180 6th St, San Francisco, CA 94016" +224474,AAA Batteries (4-pack),1,2.99,07/09/19 21:34,"19 Washington St, Seattle, WA 98101" +224474,USB-C Charging Cable,1,11.95,07/09/19 21:34,"19 Washington St, Seattle, WA 98101" +224475,AAA Batteries (4-pack),1,2.99,07/06/19 09:37,"387 Dogwood St, Los Angeles, CA 90001" +224476,iPhone,1,700,07/26/19 19:34,"943 9th St, Dallas, TX 75001" +224476,Apple Airpods Headphones,1,150,07/26/19 19:34,"943 9th St, Dallas, TX 75001" +224477,Macbook Pro Laptop,1,1700,07/15/19 22:30,"549 Cherry St, Portland, OR 97035" +224478,AA Batteries (4-pack),1,3.84,07/19/19 12:01,"431 Park St, Boston, MA 02215" +224479,Wired Headphones,1,11.99,07/01/19 12:38,"328 Jackson St, Los Angeles, CA 90001" +224480,27in FHD Monitor,1,149.99,07/09/19 18:59,"777 11th St, Portland, OR 97035" +224481,AA Batteries (4-pack),1,3.84,07/20/19 13:27,"593 Lakeview St, Los Angeles, CA 90001" +224482,iPhone,1,700,07/09/19 13:40,"438 Lake St, Atlanta, GA 30301" +224482,Lightning Charging Cable,1,14.95,07/09/19 13:40,"438 Lake St, Atlanta, GA 30301" +224483,LG Dryer,1,600.0,07/13/19 19:23,"466 Cherry St, Atlanta, GA 30301" +224484,Bose SoundSport Headphones,1,99.99,07/07/19 17:12,"380 10th St, San Francisco, CA 94016" +224485,AA Batteries (4-pack),2,3.84,07/06/19 07:48,"154 Chestnut St, Boston, MA 02215" +224486,Bose SoundSport Headphones,1,99.99,07/21/19 08:37,"592 Chestnut St, Seattle, WA 98101" +224487,AAA Batteries (4-pack),3,2.99,07/08/19 11:11,"191 12th St, Dallas, TX 75001" +224488,Google Phone,1,600,07/12/19 16:36,"863 Park St, Los Angeles, CA 90001" +224489,AA Batteries (4-pack),1,3.84,07/25/19 15:07,"48 Sunset St, New York City, NY 10001" +224490,Bose SoundSport Headphones,1,99.99,07/11/19 14:15,"280 Dogwood St, Seattle, WA 98101" +224491,iPhone,1,700,07/09/19 08:54,"585 Walnut St, San Francisco, CA 94016" +224492,AAA Batteries (4-pack),1,2.99,07/05/19 13:42,"833 West St, Austin, TX 73301" +224493,Apple Airpods Headphones,1,150,07/30/19 12:15,"988 Lincoln St, San Francisco, CA 94016" +224494,Apple Airpods Headphones,1,150,07/09/19 19:54,"861 Hickory St, Los Angeles, CA 90001" +224494,USB-C Charging Cable,1,11.95,07/09/19 19:54,"861 Hickory St, Los Angeles, CA 90001" +224495,27in 4K Gaming Monitor,1,389.99,07/23/19 10:06,"866 1st St, Boston, MA 02215" +224496,Bose SoundSport Headphones,1,99.99,07/03/19 18:13,"75 Lake St, Boston, MA 02215" +224497,Lightning Charging Cable,1,14.95,07/17/19 09:23,"73 11th St, Boston, MA 02215" +224498,34in Ultrawide Monitor,1,379.99,07/19/19 00:07,"144 Pine St, Seattle, WA 98101" +224499,AA Batteries (4-pack),1,3.84,07/01/19 16:15,"37 12th St, Los Angeles, CA 90001" +224500,AAA Batteries (4-pack),1,2.99,08/01/19 00:58,"744 Jackson St, Austin, TX 73301" +224501,AA Batteries (4-pack),1,3.84,07/25/19 18:09,"757 Madison St, Los Angeles, CA 90001" +224502,20in Monitor,1,109.99,07/25/19 11:38,"544 Adams St, Boston, MA 02215" +224503,AAA Batteries (4-pack),2,2.99,07/18/19 14:10,"214 Johnson St, Boston, MA 02215" +224504,USB-C Charging Cable,1,11.95,07/14/19 22:51,"937 8th St, Atlanta, GA 30301" +224505,Wired Headphones,1,11.99,07/14/19 08:10,"245 Cherry St, San Francisco, CA 94016" +224506,Apple Airpods Headphones,1,150,07/02/19 17:31,"247 Hickory St, Boston, MA 02215" +224507,AA Batteries (4-pack),1,3.84,07/10/19 15:32,"716 Washington St, San Francisco, CA 94016" +224508,Google Phone,1,600,07/31/19 19:03,"618 11th St, San Francisco, CA 94016" +224509,Lightning Charging Cable,1,14.95,07/15/19 11:21,"769 11th St, Dallas, TX 75001" +224510,AA Batteries (4-pack),1,3.84,07/23/19 14:35,"918 Hickory St, San Francisco, CA 94016" +224511,Lightning Charging Cable,1,14.95,07/04/19 20:22,"52 Maple St, San Francisco, CA 94016" +224512,AAA Batteries (4-pack),1,2.99,07/15/19 18:10,"54 South St, Austin, TX 73301" +224513,Wired Headphones,1,11.99,07/15/19 11:38,"612 Church St, Atlanta, GA 30301" +224514,Bose SoundSport Headphones,1,99.99,07/23/19 21:09,"81 Maple St, Los Angeles, CA 90001" +224515,27in FHD Monitor,1,149.99,07/10/19 13:22,"984 Lakeview St, Los Angeles, CA 90001" +224516,AA Batteries (4-pack),2,3.84,07/30/19 10:46,"554 8th St, San Francisco, CA 94016" +224517,USB-C Charging Cable,1,11.95,07/23/19 19:48,"242 Spruce St, Austin, TX 73301" +224518,Lightning Charging Cable,1,14.95,07/22/19 22:49,"42 Church St, Atlanta, GA 30301" +224519,Wired Headphones,1,11.99,07/15/19 21:54,"872 Jackson St, Atlanta, GA 30301" +224520,Apple Airpods Headphones,1,150,07/25/19 15:05,"186 West St, Seattle, WA 98101" +224521,20in Monitor,1,109.99,07/14/19 01:47,"110 12th St, Boston, MA 02215" +224522,iPhone,1,700,07/17/19 09:31,"940 Johnson St, Los Angeles, CA 90001" +224522,Lightning Charging Cable,1,14.95,07/17/19 09:31,"940 Johnson St, Los Angeles, CA 90001" +224523,27in 4K Gaming Monitor,1,389.99,07/07/19 20:21,"523 Center St, New York City, NY 10001" +224524,Bose SoundSport Headphones,1,99.99,07/10/19 17:06,"927 Elm St, New York City, NY 10001" +224525,iPhone,1,700,07/29/19 01:19,"754 West St, San Francisco, CA 94016" +224526,USB-C Charging Cable,1,11.95,07/07/19 22:01,"712 Walnut St, Seattle, WA 98101" +224527,USB-C Charging Cable,1,11.95,07/03/19 18:52,"499 Cedar St, New York City, NY 10001" +224528,Apple Airpods Headphones,1,150,07/11/19 15:27,"443 Pine St, San Francisco, CA 94016" +224528,AA Batteries (4-pack),1,3.84,07/11/19 15:27,"443 Pine St, San Francisco, CA 94016" +224529,27in 4K Gaming Monitor,1,389.99,07/31/19 12:47,"933 South St, Dallas, TX 75001" +224530,Flatscreen TV,1,300,07/10/19 06:22,"738 4th St, Boston, MA 02215" +224531,Flatscreen TV,1,300,07/21/19 21:22,"357 5th St, New York City, NY 10001" +224532,USB-C Charging Cable,2,11.95,07/13/19 10:32,"463 Elm St, Portland, OR 97035" +224533,Wired Headphones,2,11.99,07/23/19 18:03,"510 Church St, Boston, MA 02215" +224534,iPhone,1,700,07/20/19 12:25,"927 River St, San Francisco, CA 94016" +224535,Lightning Charging Cable,1,14.95,07/18/19 13:51,"753 Maple St, New York City, NY 10001" +224536,Macbook Pro Laptop,1,1700,07/14/19 13:05,"729 Lincoln St, Seattle, WA 98101" +224537,27in FHD Monitor,1,149.99,07/19/19 16:23,"455 Walnut St, Atlanta, GA 30301" +224538,20in Monitor,1,109.99,07/07/19 08:34,"621 Center St, Atlanta, GA 30301" +224539,Wired Headphones,1,11.99,07/01/19 13:19,"992 Jackson St, Seattle, WA 98101" +224540,Lightning Charging Cable,2,14.95,07/05/19 14:17,"895 4th St, Boston, MA 02215" +224541,34in Ultrawide Monitor,1,379.99,07/20/19 17:16,"477 9th St, San Francisco, CA 94016" +224542,USB-C Charging Cable,1,11.95,07/04/19 22:46,"597 Main St, Atlanta, GA 30301" +224543,34in Ultrawide Monitor,1,379.99,07/11/19 14:44,"979 Meadow St, Boston, MA 02215" +224544,34in Ultrawide Monitor,1,379.99,07/04/19 16:48,"383 Maple St, Atlanta, GA 30301" +224545,USB-C Charging Cable,1,11.95,07/19/19 17:42,"96 13th St, Boston, MA 02215" +224546,AA Batteries (4-pack),1,3.84,07/24/19 12:06,"618 North St, Austin, TX 73301" +224547,Wired Headphones,1,11.99,07/09/19 12:09,"713 Madison St, Dallas, TX 75001" +224548,AA Batteries (4-pack),1,3.84,07/06/19 11:13,"100 5th St, San Francisco, CA 94016" +224549,USB-C Charging Cable,1,11.95,07/20/19 16:03,"858 Sunset St, San Francisco, CA 94016" +224550,iPhone,1,700,07/03/19 11:14,"120 Jackson St, Los Angeles, CA 90001" +224551,USB-C Charging Cable,1,11.95,07/23/19 22:14,"996 14th St, Los Angeles, CA 90001" +224552,Lightning Charging Cable,1,14.95,07/01/19 15:24,"561 Ridge St, Los Angeles, CA 90001" +224553,AA Batteries (4-pack),1,3.84,07/09/19 11:06,"479 Willow St, Los Angeles, CA 90001" +224554,Lightning Charging Cable,1,14.95,07/10/19 01:04,"577 Johnson St, Boston, MA 02215" +224555,Wired Headphones,1,11.99,07/14/19 10:26,"370 Lincoln St, Los Angeles, CA 90001" +224556,Vareebadd Phone,1,400,07/18/19 15:00,"745 6th St, San Francisco, CA 94016" +224556,USB-C Charging Cable,1,11.95,07/18/19 15:00,"745 6th St, San Francisco, CA 94016" +224557,AAA Batteries (4-pack),1,2.99,07/14/19 14:49,"135 Center St, New York City, NY 10001" +224558,Wired Headphones,1,11.99,07/30/19 21:08,"561 North St, Dallas, TX 75001" +224559,Flatscreen TV,1,300,07/19/19 13:29,"213 8th St, Atlanta, GA 30301" +224560,Macbook Pro Laptop,1,1700,07/25/19 13:26,"87 Park St, Boston, MA 02215" +224561,USB-C Charging Cable,2,11.95,07/17/19 18:52,"195 Ridge St, Atlanta, GA 30301" +224562,ThinkPad Laptop,1,999.99,07/05/19 16:57,"496 Elm St, Seattle, WA 98101" +224562,Macbook Pro Laptop,1,1700,07/05/19 16:57,"496 Elm St, Seattle, WA 98101" +224563,AA Batteries (4-pack),1,3.84,07/03/19 13:49,"49 7th St, San Francisco, CA 94016" +224564,USB-C Charging Cable,1,11.95,07/12/19 18:08,"794 12th St, Seattle, WA 98101" +224564,Wired Headphones,1,11.99,07/12/19 18:08,"794 12th St, Seattle, WA 98101" +224565,27in FHD Monitor,1,149.99,07/14/19 12:29,"346 Cherry St, Boston, MA 02215" +224566,iPhone,1,700,07/20/19 14:25,"692 Johnson St, Portland, ME 04101" +224567,Lightning Charging Cable,1,14.95,07/20/19 20:54,"174 8th St, New York City, NY 10001" +224568,AAA Batteries (4-pack),1,2.99,07/15/19 18:32,"251 Chestnut St, New York City, NY 10001" +224569,Apple Airpods Headphones,1,150,07/18/19 11:37,"806 West St, Seattle, WA 98101" +224570,Lightning Charging Cable,1,14.95,07/29/19 11:25,"239 Lincoln St, Boston, MA 02215" +224571,USB-C Charging Cable,1,11.95,07/17/19 09:40,"750 Madison St, Austin, TX 73301" +224572,Wired Headphones,1,11.99,07/03/19 17:28,"632 Lake St, Dallas, TX 75001" +224573,USB-C Charging Cable,1,11.95,07/31/19 15:35,"358 Maple St, Los Angeles, CA 90001" +224574,Lightning Charging Cable,1,14.95,07/27/19 22:03,"278 Walnut St, Los Angeles, CA 90001" +224575,LG Dryer,1,600.0,07/27/19 09:10,"12 Lake St, Portland, OR 97035" +224576,AA Batteries (4-pack),2,3.84,07/11/19 10:43,"925 12th St, Los Angeles, CA 90001" +224577,USB-C Charging Cable,1,11.95,07/03/19 23:37,"283 Spruce St, Boston, MA 02215" +224578,AA Batteries (4-pack),1,3.84,07/02/19 14:31,"464 Sunset St, New York City, NY 10001" +224579,Bose SoundSport Headphones,1,99.99,07/07/19 11:33,"340 Willow St, Los Angeles, CA 90001" +224580,Lightning Charging Cable,1,14.95,07/04/19 12:16,"844 Washington St, New York City, NY 10001" +224581,AA Batteries (4-pack),1,3.84,07/04/19 11:58,"923 Church St, Boston, MA 02215" +224582,Wired Headphones,1,11.99,07/13/19 03:02,"507 12th St, San Francisco, CA 94016" +224583,Lightning Charging Cable,1,14.95,07/23/19 07:22,"829 Lakeview St, San Francisco, CA 94016" +224584,Wired Headphones,1,11.99,07/13/19 19:55,"366 River St, Seattle, WA 98101" +224585,Lightning Charging Cable,1,14.95,07/15/19 11:48,"421 Walnut St, New York City, NY 10001" +224586,USB-C Charging Cable,1,11.95,07/02/19 14:00,"629 11th St, New York City, NY 10001" +224587,USB-C Charging Cable,1,11.95,07/16/19 20:15,"698 Hickory St, Seattle, WA 98101" +224588,LG Dryer,1,600.0,07/13/19 16:55,"986 Ridge St, San Francisco, CA 94016" +224589,Apple Airpods Headphones,1,150,07/30/19 04:26,"471 Ridge St, Seattle, WA 98101" +224590,Apple Airpods Headphones,1,150,07/15/19 10:32,"867 Washington St, San Francisco, CA 94016" +224591,Wired Headphones,1,11.99,07/05/19 20:42,"943 Sunset St, San Francisco, CA 94016" +224592,USB-C Charging Cable,1,11.95,07/22/19 09:45,"236 7th St, Atlanta, GA 30301" +224593,USB-C Charging Cable,1,11.95,07/12/19 15:28,"858 Jackson St, Dallas, TX 75001" +224594,AA Batteries (4-pack),1,3.84,07/29/19 16:58,"482 Cedar St, Austin, TX 73301" +224595,AAA Batteries (4-pack),1,2.99,07/22/19 19:00,"128 Park St, Seattle, WA 98101" +224596,Lightning Charging Cable,1,14.95,07/19/19 11:11,"820 Jefferson St, Seattle, WA 98101" +224597,AA Batteries (4-pack),2,3.84,07/13/19 13:50,"978 Cherry St, Los Angeles, CA 90001" +224598,27in 4K Gaming Monitor,1,389.99,07/17/19 16:20,"292 Jefferson St, San Francisco, CA 94016" +224599,USB-C Charging Cable,1,11.95,07/20/19 21:21,"893 Cherry St, Los Angeles, CA 90001" +224600,Wired Headphones,2,11.99,07/13/19 23:10,"106 2nd St, Los Angeles, CA 90001" +224601,Wired Headphones,1,11.99,07/24/19 13:45,"548 River St, San Francisco, CA 94016" +224602,27in FHD Monitor,1,149.99,07/11/19 20:46,"982 Highland St, San Francisco, CA 94016" +224603,Wired Headphones,1,11.99,07/24/19 20:41,"953 6th St, Los Angeles, CA 90001" +224604,Apple Airpods Headphones,1,150,07/03/19 14:40,"972 Madison St, Atlanta, GA 30301" +224605,AA Batteries (4-pack),2,3.84,07/10/19 15:30,"324 Lincoln St, Boston, MA 02215" +224606,USB-C Charging Cable,1,11.95,07/02/19 13:23,"428 Hickory St, Atlanta, GA 30301" +224607,USB-C Charging Cable,2,11.95,07/03/19 19:16,"35 Chestnut St, San Francisco, CA 94016" +224607,Apple Airpods Headphones,1,150,07/03/19 19:16,"35 Chestnut St, San Francisco, CA 94016" +224608,34in Ultrawide Monitor,1,379.99,07/12/19 17:47,"295 Ridge St, Los Angeles, CA 90001" +224609,Lightning Charging Cable,1,14.95,07/25/19 18:41,"101 7th St, Austin, TX 73301" +224610,Lightning Charging Cable,1,14.95,07/20/19 22:30,"436 Wilson St, Boston, MA 02215" +224611,USB-C Charging Cable,1,11.95,07/05/19 16:44,"8 Hill St, San Francisco, CA 94016" +224612,ThinkPad Laptop,1,999.99,07/28/19 13:40,"876 Hill St, Los Angeles, CA 90001" +224613,Google Phone,1,600,07/11/19 11:50,"390 Maple St, San Francisco, CA 94016" +224613,Google Phone,1,600,07/11/19 11:50,"390 Maple St, San Francisco, CA 94016" +224614,USB-C Charging Cable,1,11.95,07/24/19 11:18,"279 Forest St, Austin, TX 73301" +224615,Wired Headphones,2,11.99,07/15/19 20:59,"623 Washington St, Austin, TX 73301" +224616,Bose SoundSport Headphones,1,99.99,07/18/19 14:35,"515 11th St, San Francisco, CA 94016" +224617,Lightning Charging Cable,1,14.95,07/14/19 22:13,"816 Cedar St, Seattle, WA 98101" +224618,27in FHD Monitor,1,149.99,07/25/19 14:54,"759 Madison St, Boston, MA 02215" +224619,AA Batteries (4-pack),1,3.84,07/12/19 12:56,"344 Jackson St, San Francisco, CA 94016" +224620,LG Dryer,1,600.0,07/11/19 14:11,"724 6th St, San Francisco, CA 94016" +224621,AAA Batteries (4-pack),1,2.99,07/13/19 22:44,"941 Church St, Austin, TX 73301" +224622,AA Batteries (4-pack),1,3.84,07/17/19 21:30,"365 Sunset St, New York City, NY 10001" +224623,Apple Airpods Headphones,1,150,07/03/19 22:10,"582 4th St, Portland, OR 97035" +224624,AAA Batteries (4-pack),1,2.99,07/30/19 12:28,"923 Ridge St, San Francisco, CA 94016" +224625,34in Ultrawide Monitor,1,379.99,07/27/19 22:01,"160 Johnson St, San Francisco, CA 94016" +224626,Wired Headphones,1,11.99,07/25/19 23:29,"837 Wilson St, Austin, TX 73301" +224627,AAA Batteries (4-pack),1,2.99,07/25/19 12:38,"369 12th St, Austin, TX 73301" +224628,Google Phone,1,600,07/01/19 22:47,"76 Church St, San Francisco, CA 94016" +224629,AAA Batteries (4-pack),1,2.99,07/31/19 00:01,"938 9th St, Austin, TX 73301" +224630,Lightning Charging Cable,1,14.95,07/03/19 11:43,"117 Maple St, Portland, OR 97035" +224631,Wired Headphones,1,11.99,07/07/19 10:33,"790 12th St, Los Angeles, CA 90001" +224632,Lightning Charging Cable,1,14.95,07/15/19 14:16,"894 4th St, San Francisco, CA 94016" +224633,Flatscreen TV,1,300,07/28/19 21:04,"9 South St, Los Angeles, CA 90001" +224634,Lightning Charging Cable,1,14.95,07/27/19 15:47,"193 14th St, Dallas, TX 75001" +224635,USB-C Charging Cable,1,11.95,07/11/19 12:19,"971 South St, San Francisco, CA 94016" +224636,Apple Airpods Headphones,1,150,07/30/19 18:03,"14 Willow St, New York City, NY 10001" +224637,Lightning Charging Cable,2,14.95,07/04/19 12:07,"79 Chestnut St, Los Angeles, CA 90001" +224638,AA Batteries (4-pack),1,3.84,07/03/19 20:05,"458 10th St, New York City, NY 10001" +224639,AA Batteries (4-pack),1,3.84,07/23/19 08:12,"751 Lake St, Portland, OR 97035" +224640,Lightning Charging Cable,1,14.95,07/15/19 09:10,"751 Johnson St, Dallas, TX 75001" +224641,Lightning Charging Cable,1,14.95,07/07/19 19:06,"440 Lake St, San Francisco, CA 94016" +224642,AA Batteries (4-pack),1,3.84,07/25/19 19:36,"667 Main St, Los Angeles, CA 90001" +224643,Bose SoundSport Headphones,1,99.99,07/13/19 15:48,"597 5th St, New York City, NY 10001" +224644,AAA Batteries (4-pack),2,2.99,07/11/19 08:20,"551 Maple St, Boston, MA 02215" +224645,34in Ultrawide Monitor,1,379.99,07/08/19 19:49,"765 Cedar St, Boston, MA 02215" +224646,Wired Headphones,1,11.99,07/21/19 08:44,"916 Wilson St, Portland, OR 97035" +224647,USB-C Charging Cable,2,11.95,07/25/19 13:53,"845 Jefferson St, Atlanta, GA 30301" +224648,USB-C Charging Cable,1,11.95,07/11/19 01:01,"4 5th St, San Francisco, CA 94016" +224649,USB-C Charging Cable,1,11.95,07/26/19 19:31,"89 1st St, New York City, NY 10001" +224650,Lightning Charging Cable,1,14.95,07/22/19 09:03,"231 12th St, Los Angeles, CA 90001" +224651,Lightning Charging Cable,1,14.95,07/24/19 20:08,"447 Lakeview St, Portland, ME 04101" +224652,AAA Batteries (4-pack),1,2.99,07/19/19 22:53,"270 7th St, San Francisco, CA 94016" +224653,Apple Airpods Headphones,1,150,07/02/19 23:22,"885 11th St, San Francisco, CA 94016" +224654,Bose SoundSport Headphones,1,99.99,07/10/19 11:33,"498 Forest St, San Francisco, CA 94016" +224655,Macbook Pro Laptop,1,1700,07/03/19 19:05,"912 Johnson St, New York City, NY 10001" +224656,USB-C Charging Cable,1,11.95,07/21/19 12:04,"60 Walnut St, Los Angeles, CA 90001" +224657,20in Monitor,1,109.99,07/18/19 18:03,"231 Ridge St, Dallas, TX 75001" +224658,LG Washing Machine,1,600.0,07/23/19 08:16,"956 Church St, New York City, NY 10001" +224659,AAA Batteries (4-pack),1,2.99,07/16/19 21:10,"673 Hill St, Dallas, TX 75001" +224660,Lightning Charging Cable,1,14.95,07/12/19 13:00,"463 Forest St, San Francisco, CA 94016" +224661,Flatscreen TV,1,300,07/17/19 15:23,"356 6th St, Austin, TX 73301" +224662,27in FHD Monitor,1,149.99,07/13/19 22:42,"223 Sunset St, Austin, TX 73301" +224662,Macbook Pro Laptop,1,1700,07/13/19 22:42,"223 Sunset St, Austin, TX 73301" +224663,AA Batteries (4-pack),2,3.84,07/27/19 17:46,"146 2nd St, Boston, MA 02215" +224664,Wired Headphones,1,11.99,07/02/19 10:51,"29 Jefferson St, Boston, MA 02215" +224665,ThinkPad Laptop,1,999.99,07/27/19 17:37,"230 Johnson St, New York City, NY 10001" +,,,,, +224666,34in Ultrawide Monitor,1,379.99,07/13/19 17:48,"433 Ridge St, San Francisco, CA 94016" +224667,USB-C Charging Cable,1,11.95,07/15/19 05:56,"77 Park St, Los Angeles, CA 90001" +224668,27in FHD Monitor,1,149.99,07/10/19 07:17,"81 8th St, New York City, NY 10001" +224669,Lightning Charging Cable,1,14.95,07/21/19 11:45,"24 Cherry St, Portland, OR 97035" +224670,Flatscreen TV,1,300,07/29/19 11:07,"193 14th St, Portland, OR 97035" +224671,Wired Headphones,1,11.99,07/18/19 20:36,"549 1st St, Dallas, TX 75001" +224672,iPhone,1,700,07/21/19 11:26,"681 Willow St, Atlanta, GA 30301" +224672,Lightning Charging Cable,1,14.95,07/21/19 11:26,"681 Willow St, Atlanta, GA 30301" +224673,AA Batteries (4-pack),3,3.84,07/10/19 09:56,"55 Johnson St, Los Angeles, CA 90001" +224674,Wired Headphones,1,11.99,07/04/19 12:33,"771 Jackson St, Seattle, WA 98101" +224675,Bose SoundSport Headphones,1,99.99,07/21/19 17:41,"332 10th St, Boston, MA 02215" +224676,AAA Batteries (4-pack),1,2.99,07/14/19 19:03,"740 Adams St, Austin, TX 73301" +224677,Lightning Charging Cable,1,14.95,07/13/19 13:13,"398 1st St, New York City, NY 10001" +224678,Wired Headphones,1,11.99,07/14/19 00:26,"393 6th St, Atlanta, GA 30301" +224679,USB-C Charging Cable,1,11.95,07/01/19 22:40,"786 5th St, New York City, NY 10001" +224680,AA Batteries (4-pack),1,3.84,07/16/19 10:24,"581 4th St, San Francisco, CA 94016" +224681,Google Phone,1,600,07/12/19 12:56,"484 4th St, Dallas, TX 75001" +224682,Wired Headphones,1,11.99,07/24/19 12:35,"635 Pine St, San Francisco, CA 94016" +224683,27in 4K Gaming Monitor,1,389.99,07/24/19 04:54,"63 11th St, Boston, MA 02215" +224684,USB-C Charging Cable,1,11.95,07/04/19 19:43,"498 Park St, Los Angeles, CA 90001" +224685,AAA Batteries (4-pack),1,2.99,07/25/19 18:09,"410 4th St, New York City, NY 10001" +224686,20in Monitor,1,109.99,07/12/19 23:36,"982 Jefferson St, Los Angeles, CA 90001" +224687,USB-C Charging Cable,1,11.95,07/03/19 22:34,"615 9th St, Portland, OR 97035" +224688,Apple Airpods Headphones,1,150,07/22/19 10:57,"755 14th St, San Francisco, CA 94016" +224689,Apple Airpods Headphones,1,150,07/07/19 22:30,"923 Lincoln St, Boston, MA 02215" +224690,27in FHD Monitor,1,149.99,07/08/19 21:05,"513 Lake St, San Francisco, CA 94016" +224691,Bose SoundSport Headphones,1,99.99,07/04/19 17:20,"797 Johnson St, Los Angeles, CA 90001" +224692,AAA Batteries (4-pack),1,2.99,07/07/19 18:19,"938 Cherry St, Dallas, TX 75001" +224693,Apple Airpods Headphones,1,150,07/01/19 11:03,"881 4th St, Los Angeles, CA 90001" +224694,Lightning Charging Cable,1,14.95,07/19/19 17:36,"369 Madison St, Los Angeles, CA 90001" +224695,AA Batteries (4-pack),1,3.84,07/17/19 16:32,"207 Jackson St, Austin, TX 73301" +224696,Macbook Pro Laptop,1,1700,07/07/19 10:14,"349 Spruce St, San Francisco, CA 94016" +224697,USB-C Charging Cable,1,11.95,07/30/19 17:46,"890 Washington St, Los Angeles, CA 90001" +224698,AA Batteries (4-pack),1,3.84,07/01/19 15:28,"174 14th St, New York City, NY 10001" +224699,AA Batteries (4-pack),1,3.84,07/11/19 15:58,"162 11th St, Boston, MA 02215" +224700,ThinkPad Laptop,1,999.99,07/11/19 00:44,"227 Cherry St, New York City, NY 10001" +224701,27in 4K Gaming Monitor,1,389.99,07/11/19 19:26,"436 Cherry St, Los Angeles, CA 90001" +224702,Wired Headphones,1,11.99,07/07/19 11:28,"431 Hill St, New York City, NY 10001" +224703,Macbook Pro Laptop,1,1700,07/04/19 01:13,"344 8th St, Los Angeles, CA 90001" +224704,USB-C Charging Cable,1,11.95,07/15/19 16:56,"979 Ridge St, Dallas, TX 75001" +224705,Wired Headphones,1,11.99,07/15/19 07:28,"627 Cherry St, Boston, MA 02215" +224706,USB-C Charging Cable,1,11.95,07/12/19 14:28,"229 Willow St, San Francisco, CA 94016" +224707,AA Batteries (4-pack),1,3.84,07/31/19 20:00,"337 Forest St, San Francisco, CA 94016" +224708,Macbook Pro Laptop,1,1700,07/01/19 13:37,"777 Lincoln St, Austin, TX 73301" +224709,AAA Batteries (4-pack),1,2.99,07/18/19 13:38,"980 5th St, Los Angeles, CA 90001" +224710,Apple Airpods Headphones,1,150,07/28/19 21:33,"52 Park St, San Francisco, CA 94016" +224711,USB-C Charging Cable,1,11.95,07/15/19 18:33,"393 Jefferson St, Los Angeles, CA 90001" +224712,Lightning Charging Cable,1,14.95,07/28/19 11:40,"39 Elm St, Los Angeles, CA 90001" +224713,Lightning Charging Cable,1,14.95,07/09/19 13:45,"59 Spruce St, Los Angeles, CA 90001" +224714,Macbook Pro Laptop,1,1700,07/19/19 09:54,"580 Forest St, Boston, MA 02215" +224715,Google Phone,1,600,07/10/19 19:06,"89 Center St, Los Angeles, CA 90001" +224716,20in Monitor,1,109.99,07/16/19 10:37,"285 Meadow St, Los Angeles, CA 90001" +224717,AAA Batteries (4-pack),1,2.99,07/14/19 20:01,"879 Highland St, San Francisco, CA 94016" +224718,USB-C Charging Cable,1,11.95,07/22/19 19:31,"97 Walnut St, Los Angeles, CA 90001" +224719,Apple Airpods Headphones,1,150,07/11/19 08:04,"562 9th St, Atlanta, GA 30301" +224720,AA Batteries (4-pack),1,3.84,07/31/19 19:36,"944 Madison St, San Francisco, CA 94016" +224721,Wired Headphones,1,11.99,07/01/19 20:01,"162 Madison St, San Francisco, CA 94016" +224722,iPhone,1,700,07/26/19 22:57,"950 11th St, Los Angeles, CA 90001" +224723,Apple Airpods Headphones,1,150,07/08/19 12:06,"86 Wilson St, Dallas, TX 75001" +224724,ThinkPad Laptop,1,999.99,07/05/19 08:57,"395 Church St, San Francisco, CA 94016" +224725,USB-C Charging Cable,1,11.95,07/13/19 10:48,"771 Jackson St, Atlanta, GA 30301" +224726,USB-C Charging Cable,1,11.95,07/28/19 11:02,"509 13th St, San Francisco, CA 94016" +224727,AAA Batteries (4-pack),1,2.99,07/28/19 10:50,"608 5th St, Los Angeles, CA 90001" +224728,AA Batteries (4-pack),1,3.84,07/11/19 09:42,"63 Adams St, Boston, MA 02215" +224729,Wired Headphones,1,11.99,07/15/19 09:02,"18 Jackson St, San Francisco, CA 94016" +224730,Bose SoundSport Headphones,1,99.99,07/16/19 11:56,"907 Pine St, Boston, MA 02215" +224731,iPhone,1,700,07/26/19 12:40,"702 Park St, Los Angeles, CA 90001" +224731,AA Batteries (4-pack),1,3.84,07/26/19 12:40,"702 Park St, Los Angeles, CA 90001" +224732,AA Batteries (4-pack),1,3.84,07/20/19 00:11,"854 South St, San Francisco, CA 94016" +224733,Macbook Pro Laptop,1,1700,07/28/19 11:34,"619 South St, San Francisco, CA 94016" +224734,Apple Airpods Headphones,1,150,07/31/19 14:54,"552 Madison St, Portland, OR 97035" +224735,USB-C Charging Cable,1,11.95,07/21/19 19:32,"385 13th St, Atlanta, GA 30301" +224736,Lightning Charging Cable,1,14.95,07/09/19 11:23,"379 Jefferson St, Los Angeles, CA 90001" +224737,USB-C Charging Cable,1,11.95,07/27/19 16:15,"350 Johnson St, San Francisco, CA 94016" +224738,Wired Headphones,1,11.99,07/05/19 21:17,"710 Elm St, Dallas, TX 75001" +224739,Apple Airpods Headphones,1,150,07/19/19 17:09,"169 4th St, Portland, ME 04101" +224740,Bose SoundSport Headphones,1,99.99,07/08/19 13:28,"481 14th St, Portland, ME 04101" +224741,Apple Airpods Headphones,1,150,07/22/19 03:20,"679 Chestnut St, Seattle, WA 98101" +224742,AA Batteries (4-pack),1,3.84,07/23/19 19:26,"358 11th St, Dallas, TX 75001" +224743,Macbook Pro Laptop,1,1700,07/14/19 18:30,"366 10th St, San Francisco, CA 94016" +224744,AAA Batteries (4-pack),2,2.99,07/19/19 13:07,"857 Ridge St, Los Angeles, CA 90001" +224745,Wired Headphones,1,11.99,07/27/19 16:30,"529 Washington St, Atlanta, GA 30301" +224746,ThinkPad Laptop,1,999.99,07/17/19 10:43,"224 Hickory St, Los Angeles, CA 90001" +224747,Lightning Charging Cable,2,14.95,07/24/19 18:28,"285 Park St, San Francisco, CA 94016" +224748,Lightning Charging Cable,1,14.95,07/25/19 18:05,"141 Adams St, Los Angeles, CA 90001" +224749,AAA Batteries (4-pack),1,2.99,07/05/19 20:50,"849 Wilson St, Atlanta, GA 30301" +224750,Wired Headphones,1,11.99,07/09/19 12:10,"814 9th St, Boston, MA 02215" +224751,Bose SoundSport Headphones,1,99.99,07/20/19 13:26,"918 Ridge St, San Francisco, CA 94016" +224752,Lightning Charging Cable,1,14.95,07/21/19 14:30,"345 Chestnut St, Seattle, WA 98101" +224753,Wired Headphones,1,11.99,07/29/19 17:20,"340 Maple St, Atlanta, GA 30301" +224754,Apple Airpods Headphones,1,150,07/04/19 16:06,"56 Forest St, New York City, NY 10001" +224755,Wired Headphones,1,11.99,07/21/19 17:31,"486 Washington St, Los Angeles, CA 90001" +224756,27in FHD Monitor,1,149.99,07/05/19 18:19,"348 Cedar St, San Francisco, CA 94016" +224757,Lightning Charging Cable,1,14.95,07/29/19 16:29,"902 Johnson St, Dallas, TX 75001" +224758,USB-C Charging Cable,1,11.95,07/19/19 22:33,"247 4th St, New York City, NY 10001" +224759,Lightning Charging Cable,2,14.95,07/28/19 08:23,"932 7th St, Los Angeles, CA 90001" +224760,Lightning Charging Cable,1,14.95,07/08/19 22:27,"739 Maple St, Atlanta, GA 30301" +224761,20in Monitor,1,109.99,07/04/19 18:14,"756 Elm St, New York City, NY 10001" +224762,AA Batteries (4-pack),1,3.84,07/20/19 14:21,"355 Willow St, Los Angeles, CA 90001" +224763,Lightning Charging Cable,1,14.95,07/08/19 14:31,"203 South St, Boston, MA 02215" +224764,27in FHD Monitor,1,149.99,07/28/19 12:52,"442 8th St, Austin, TX 73301" +224765,AA Batteries (4-pack),1,3.84,07/11/19 01:45,"925 1st St, San Francisco, CA 94016" +224766,Wired Headphones,1,11.99,07/17/19 17:24,"375 Hill St, San Francisco, CA 94016" +224767,Apple Airpods Headphones,1,150,07/27/19 19:58,"498 Ridge St, New York City, NY 10001" +224768,Bose SoundSport Headphones,1,99.99,07/30/19 00:02,"686 Dogwood St, Seattle, WA 98101" +224769,AA Batteries (4-pack),2,3.84,07/16/19 16:45,"185 Dogwood St, San Francisco, CA 94016" +224770,Macbook Pro Laptop,1,1700,07/07/19 14:49,"903 12th St, Portland, OR 97035" +224771,AAA Batteries (4-pack),1,2.99,07/10/19 02:01,"627 Main St, Seattle, WA 98101" +224772,34in Ultrawide Monitor,1,379.99,07/24/19 11:25,"984 South St, Austin, TX 73301" +224773,Lightning Charging Cable,2,14.95,07/23/19 08:41,"885 4th St, New York City, NY 10001" +224774,Bose SoundSport Headphones,1,99.99,07/22/19 00:05,"578 North St, Seattle, WA 98101" +224775,Wired Headphones,1,11.99,07/05/19 20:57,"593 Adams St, Seattle, WA 98101" +224776,Apple Airpods Headphones,1,150,07/21/19 21:19,"757 Hickory St, New York City, NY 10001" +224777,AA Batteries (4-pack),2,3.84,07/01/19 12:51,"423 North St, New York City, NY 10001" +224778,20in Monitor,1,109.99,07/10/19 18:35,"617 Park St, San Francisco, CA 94016" +224779,USB-C Charging Cable,1,11.95,07/08/19 20:19,"744 South St, Portland, OR 97035" +224780,USB-C Charging Cable,1,11.95,07/19/19 20:35,"873 Ridge St, Boston, MA 02215" +224781,Lightning Charging Cable,1,14.95,07/07/19 22:05,"383 Meadow St, Los Angeles, CA 90001" +224782,Bose SoundSport Headphones,1,99.99,07/08/19 00:22,"651 Cedar St, Portland, OR 97035" +224783,USB-C Charging Cable,1,11.95,07/07/19 15:38,"97 Willow St, Los Angeles, CA 90001" +224784,USB-C Charging Cable,1,11.95,07/22/19 17:30,"560 Washington St, Portland, OR 97035" +224785,USB-C Charging Cable,1,11.95,07/28/19 20:46,"881 4th St, Los Angeles, CA 90001" +224786,AAA Batteries (4-pack),1,2.99,07/08/19 15:19,"608 Adams St, New York City, NY 10001" +224787,AA Batteries (4-pack),2,3.84,07/13/19 00:12,"33 2nd St, Dallas, TX 75001" +224788,Wired Headphones,1,11.99,07/11/19 22:46,"323 Jefferson St, San Francisco, CA 94016" +224789,Apple Airpods Headphones,1,150,07/31/19 23:23,"643 Hickory St, Dallas, TX 75001" +224790,Lightning Charging Cable,1,14.95,07/04/19 23:00,"986 11th St, San Francisco, CA 94016" +224791,Flatscreen TV,1,300,07/29/19 14:57,"145 2nd St, Dallas, TX 75001" +224792,iPhone,1,700,07/10/19 10:36,"745 Cedar St, Atlanta, GA 30301" +224793,AAA Batteries (4-pack),3,2.99,07/24/19 14:06,"969 5th St, Los Angeles, CA 90001" +224794,AAA Batteries (4-pack),1,2.99,07/01/19 22:50,"397 10th St, Seattle, WA 98101" +224795,27in FHD Monitor,1,149.99,07/08/19 11:03,"848 Willow St, San Francisco, CA 94016" +224796,Google Phone,1,600,07/17/19 21:13,"182 West St, Atlanta, GA 30301" +224796,USB-C Charging Cable,1,11.95,07/17/19 21:13,"182 West St, Atlanta, GA 30301" +224797,Macbook Pro Laptop,1,1700,07/12/19 09:34,"770 7th St, Atlanta, GA 30301" +224798,27in FHD Monitor,1,149.99,07/15/19 07:52,"8 Walnut St, Atlanta, GA 30301" +224799,Macbook Pro Laptop,1,1700,07/20/19 22:28,"642 2nd St, Boston, MA 02215" +224800,Wired Headphones,1,11.99,07/27/19 20:20,"186 Madison St, Austin, TX 73301" +224801,27in 4K Gaming Monitor,1,389.99,07/16/19 14:53,"679 Jackson St, Los Angeles, CA 90001" +224802,Lightning Charging Cable,1,14.95,07/17/19 08:28,"934 Main St, New York City, NY 10001" +,,,,, +224803,AAA Batteries (4-pack),3,2.99,07/24/19 12:51,"732 Ridge St, Los Angeles, CA 90001" +224804,iPhone,1,700,07/23/19 21:50,"955 9th St, Seattle, WA 98101" +224804,Lightning Charging Cable,1,14.95,07/23/19 21:50,"955 9th St, Seattle, WA 98101" +224805,20in Monitor,1,109.99,07/23/19 07:38,"41 Elm St, Seattle, WA 98101" +224806,Wired Headphones,1,11.99,07/22/19 19:27,"860 Elm St, New York City, NY 10001" +224807,Bose SoundSport Headphones,1,99.99,07/24/19 19:10,"640 2nd St, Seattle, WA 98101" +224808,Apple Airpods Headphones,1,150,07/20/19 13:37,"795 Cherry St, Atlanta, GA 30301" +224809,Bose SoundSport Headphones,1,99.99,07/31/19 16:40,"980 Meadow St, Dallas, TX 75001" +224810,Bose SoundSport Headphones,1,99.99,07/13/19 14:34,"158 9th St, Los Angeles, CA 90001" +224811,Wired Headphones,1,11.99,07/30/19 10:02,"843 West St, Portland, OR 97035" +224812,AA Batteries (4-pack),1,3.84,07/27/19 21:27,"223 1st St, Seattle, WA 98101" +224812,Bose SoundSport Headphones,1,99.99,07/27/19 21:27,"223 1st St, Seattle, WA 98101" +,,,,, +224813,iPhone,1,700,07/25/19 12:35,"579 7th St, Austin, TX 73301" +224814,AA Batteries (4-pack),1,3.84,07/20/19 10:53,"403 Elm St, San Francisco, CA 94016" +224815,Wired Headphones,2,11.99,07/08/19 20:27,"50 Cherry St, Boston, MA 02215" +224816,Apple Airpods Headphones,1,150,07/23/19 20:36,"564 Pine St, Los Angeles, CA 90001" +224817,AAA Batteries (4-pack),1,2.99,07/24/19 18:38,"588 Washington St, New York City, NY 10001" +224818,34in Ultrawide Monitor,1,379.99,07/16/19 22:11,"374 6th St, Los Angeles, CA 90001" +224819,Apple Airpods Headphones,1,150,07/06/19 22:53,"808 Main St, Boston, MA 02215" +224820,USB-C Charging Cable,1,11.95,07/20/19 17:24,"415 Maple St, New York City, NY 10001" +224821,USB-C Charging Cable,1,11.95,07/16/19 09:54,"277 Lakeview St, New York City, NY 10001" +224822,Bose SoundSport Headphones,1,99.99,07/13/19 13:59,"748 Lake St, Atlanta, GA 30301" +224823,20in Monitor,1,109.99,07/20/19 18:43,"34 Maple St, Dallas, TX 75001" +224824,20in Monitor,1,109.99,07/31/19 07:13,"814 South St, Atlanta, GA 30301" +224825,Apple Airpods Headphones,1,150,07/06/19 13:59,"939 Main St, Portland, ME 04101" +224826,USB-C Charging Cable,1,11.95,07/28/19 09:30,"854 Dogwood St, Los Angeles, CA 90001" +224827,USB-C Charging Cable,1,11.95,07/17/19 13:24,"691 2nd St, Austin, TX 73301" +224828,Apple Airpods Headphones,1,150,07/11/19 13:41,"846 Adams St, New York City, NY 10001" +224829,ThinkPad Laptop,1,999.99,07/15/19 11:27,"630 Park St, Los Angeles, CA 90001" +224830,Bose SoundSport Headphones,1,99.99,07/04/19 08:27,"455 Hickory St, New York City, NY 10001" +224831,27in FHD Monitor,1,149.99,07/24/19 22:57,"125 2nd St, Los Angeles, CA 90001" +224832,Lightning Charging Cable,1,14.95,07/29/19 11:15,"822 7th St, Seattle, WA 98101" +224833,Macbook Pro Laptop,1,1700,07/09/19 13:29,"334 Cherry St, Boston, MA 02215" +224834,AAA Batteries (4-pack),1,2.99,07/02/19 20:36,"459 Lincoln St, Atlanta, GA 30301" +224835,AAA Batteries (4-pack),4,2.99,07/10/19 16:01,"147 5th St, Los Angeles, CA 90001" +224836,AA Batteries (4-pack),1,3.84,07/17/19 01:02,"773 Dogwood St, Seattle, WA 98101" +224837,27in FHD Monitor,1,149.99,07/21/19 08:09,"226 Hickory St, Boston, MA 02215" +224838,Apple Airpods Headphones,1,150,07/23/19 18:53,"20 Main St, New York City, NY 10001" +224839,Wired Headphones,1,11.99,07/13/19 11:15,"171 2nd St, Austin, TX 73301" +224840,AA Batteries (4-pack),2,3.84,07/09/19 14:19,"825 Cherry St, Atlanta, GA 30301" +224841,USB-C Charging Cable,1,11.95,07/25/19 10:09,"729 Sunset St, Atlanta, GA 30301" +224842,AA Batteries (4-pack),1,3.84,07/23/19 12:32,"844 River St, New York City, NY 10001" +224843,USB-C Charging Cable,1,11.95,07/11/19 17:53,"521 12th St, Boston, MA 02215" +224844,Apple Airpods Headphones,1,150,07/27/19 08:56,"773 Forest St, New York City, NY 10001" +224845,Lightning Charging Cable,1,14.95,07/01/19 09:11,"916 Main St, Atlanta, GA 30301" +224846,ThinkPad Laptop,1,999.99,07/16/19 22:18,"132 7th St, Los Angeles, CA 90001" +224847,AAA Batteries (4-pack),1,2.99,07/28/19 10:36,"576 Adams St, Boston, MA 02215" +224848,27in 4K Gaming Monitor,1,389.99,07/23/19 22:50,"204 Hill St, Los Angeles, CA 90001" +224849,Lightning Charging Cable,1,14.95,07/28/19 14:06,"360 11th St, San Francisco, CA 94016" +224849,Google Phone,1,600,07/28/19 14:06,"360 11th St, San Francisco, CA 94016" +224850,Apple Airpods Headphones,1,150,07/08/19 13:39,"823 Cedar St, Boston, MA 02215" +224851,20in Monitor,1,109.99,07/11/19 15:01,"381 Hickory St, San Francisco, CA 94016" +224852,Lightning Charging Cable,1,14.95,07/29/19 17:18,"722 River St, Portland, OR 97035" +224853,AA Batteries (4-pack),1,3.84,07/12/19 18:18,"29 North St, Seattle, WA 98101" +224854,Bose SoundSport Headphones,1,99.99,07/16/19 12:12,"523 4th St, Boston, MA 02215" +224855,Wired Headphones,1,11.99,07/02/19 18:03,"117 7th St, Boston, MA 02215" +224856,AA Batteries (4-pack),3,3.84,07/31/19 14:45,"933 Ridge St, Boston, MA 02215" +224857,Lightning Charging Cable,1,14.95,07/29/19 14:05,"236 12th St, Portland, OR 97035" +224858,AA Batteries (4-pack),1,3.84,07/22/19 12:49,"5 8th St, Los Angeles, CA 90001" +224859,Apple Airpods Headphones,1,150,07/23/19 07:00,"462 Maple St, Portland, OR 97035" +224860,Lightning Charging Cable,1,14.95,07/15/19 13:17,"756 West St, San Francisco, CA 94016" +224861,USB-C Charging Cable,1,11.95,07/06/19 22:59,"555 Walnut St, Dallas, TX 75001" +224862,Macbook Pro Laptop,1,1700,07/01/19 15:18,"137 10th St, New York City, NY 10001" +224863,Flatscreen TV,1,300,07/22/19 19:59,"757 Ridge St, Seattle, WA 98101" +224864,27in FHD Monitor,1,149.99,07/08/19 23:27,"387 Forest St, Los Angeles, CA 90001" +224865,AA Batteries (4-pack),2,3.84,07/17/19 16:06,"120 Jefferson St, San Francisco, CA 94016" +224866,Wired Headphones,1,11.99,07/07/19 15:01,"985 1st St, Los Angeles, CA 90001" +224867,Flatscreen TV,1,300,07/25/19 21:26,"604 Pine St, Atlanta, GA 30301" +224868,AA Batteries (4-pack),1,3.84,07/12/19 07:11,"984 West St, Dallas, TX 75001" +224869,27in 4K Gaming Monitor,1,389.99,07/18/19 22:27,"210 North St, Los Angeles, CA 90001" +224870,AAA Batteries (4-pack),1,2.99,07/17/19 20:25,"361 13th St, Dallas, TX 75001" +224871,Apple Airpods Headphones,1,150,07/06/19 17:24,"72 West St, Los Angeles, CA 90001" +224872,Google Phone,1,600,07/08/19 23:09,"761 Elm St, Portland, OR 97035" +224873,Apple Airpods Headphones,1,150,07/19/19 12:00,"153 1st St, San Francisco, CA 94016" +224874,AAA Batteries (4-pack),1,2.99,07/22/19 18:39,"34 Main St, Portland, ME 04101" +224875,USB-C Charging Cable,1,11.95,07/11/19 12:20,"45 Chestnut St, Los Angeles, CA 90001" +224876,AAA Batteries (4-pack),2,2.99,07/17/19 12:56,"991 12th St, Los Angeles, CA 90001" +224877,AA Batteries (4-pack),1,3.84,07/07/19 01:03,"634 9th St, Los Angeles, CA 90001" +224878,Wired Headphones,1,11.99,07/17/19 10:27,"151 Madison St, Seattle, WA 98101" +224879,20in Monitor,1,109.99,07/27/19 20:58,"289 Forest St, Dallas, TX 75001" +224880,AAA Batteries (4-pack),1,2.99,07/04/19 08:34,"983 8th St, San Francisco, CA 94016" +224881,Wired Headphones,1,11.99,07/05/19 11:02,"959 Washington St, Boston, MA 02215" +224882,AA Batteries (4-pack),1,3.84,07/11/19 11:53,"76 Jackson St, New York City, NY 10001" +224883,iPhone,1,700,07/25/19 08:03,"365 Sunset St, San Francisco, CA 94016" +224883,Apple Airpods Headphones,1,150,07/25/19 08:03,"365 Sunset St, San Francisco, CA 94016" +224884,Apple Airpods Headphones,1,150,07/26/19 23:57,"250 Center St, New York City, NY 10001" +224885,27in 4K Gaming Monitor,1,389.99,07/07/19 12:10,"592 9th St, Seattle, WA 98101" +224886,Lightning Charging Cable,1,14.95,07/17/19 16:29,"629 Lincoln St, Los Angeles, CA 90001" +224887,AA Batteries (4-pack),1,3.84,07/27/19 13:42,"813 Hickory St, Dallas, TX 75001" +224888,Lightning Charging Cable,1,14.95,07/12/19 18:05,"729 10th St, Boston, MA 02215" +224889,iPhone,1,700,07/11/19 22:00,"668 Madison St, San Francisco, CA 94016" +224889,Lightning Charging Cable,1,14.95,07/11/19 22:00,"668 Madison St, San Francisco, CA 94016" +224889,Apple Airpods Headphones,1,150,07/11/19 22:00,"668 Madison St, San Francisco, CA 94016" +224890,ThinkPad Laptop,1,999.99,07/22/19 06:46,"807 11th St, San Francisco, CA 94016" +224891,Bose SoundSport Headphones,1,99.99,07/22/19 17:25,"806 West St, Atlanta, GA 30301" +224892,Wired Headphones,1,11.99,07/21/19 07:50,"28 Walnut St, Dallas, TX 75001" +224893,27in 4K Gaming Monitor,1,389.99,07/13/19 17:15,"315 11th St, Dallas, TX 75001" +224894,Macbook Pro Laptop,1,1700,07/27/19 21:02,"54 Lincoln St, Boston, MA 02215" +224895,Lightning Charging Cable,1,14.95,07/11/19 19:43,"461 Jackson St, Austin, TX 73301" +224896,USB-C Charging Cable,1,11.95,07/05/19 01:06,"935 Ridge St, Boston, MA 02215" +224897,Lightning Charging Cable,1,14.95,07/29/19 20:08,"580 Maple St, Los Angeles, CA 90001" +224898,AAA Batteries (4-pack),2,2.99,07/30/19 18:23,"411 North St, San Francisco, CA 94016" +224899,AA Batteries (4-pack),1,3.84,07/29/19 18:44,"387 Jefferson St, San Francisco, CA 94016" +224900,Bose SoundSport Headphones,1,99.99,07/25/19 20:16,"119 14th St, New York City, NY 10001" +224901,USB-C Charging Cable,2,11.95,07/16/19 22:11,"6 Highland St, Atlanta, GA 30301" +224902,AA Batteries (4-pack),1,3.84,07/30/19 14:56,"531 West St, Portland, ME 04101" +224903,Flatscreen TV,1,300,07/25/19 19:55,"958 Forest St, Atlanta, GA 30301" +224904,ThinkPad Laptop,1,999.99,07/28/19 23:10,"694 Johnson St, Los Angeles, CA 90001" +224905,AA Batteries (4-pack),1,3.84,07/21/19 15:46,"181 Chestnut St, Atlanta, GA 30301" +224906,AAA Batteries (4-pack),1,2.99,07/22/19 20:41,"751 Johnson St, Portland, OR 97035" +224907,Lightning Charging Cable,1,14.95,07/07/19 17:37,"823 Willow St, San Francisco, CA 94016" +224908,Vareebadd Phone,1,400,07/13/19 23:10,"5 Main St, Dallas, TX 75001" +224909,Apple Airpods Headphones,1,150,07/16/19 12:35,"698 South St, Los Angeles, CA 90001" +224910,Flatscreen TV,1,300,07/27/19 22:45,"262 River St, New York City, NY 10001" +224911,Wired Headphones,1,11.99,07/26/19 21:55,"905 14th St, Seattle, WA 98101" +224912,Google Phone,1,600,07/11/19 12:08,"218 North St, San Francisco, CA 94016" +224912,USB-C Charging Cable,1,11.95,07/11/19 12:08,"218 North St, San Francisco, CA 94016" +224913,USB-C Charging Cable,1,11.95,07/21/19 15:11,"758 5th St, Los Angeles, CA 90001" +224914,34in Ultrawide Monitor,1,379.99,07/08/19 13:31,"387 Cherry St, Los Angeles, CA 90001" +224915,USB-C Charging Cable,1,11.95,07/05/19 18:26,"517 Main St, Boston, MA 02215" +224916,27in 4K Gaming Monitor,1,389.99,07/27/19 03:01,"329 2nd St, New York City, NY 10001" +224917,Google Phone,1,600,07/13/19 11:00,"677 Madison St, Los Angeles, CA 90001" +224918,USB-C Charging Cable,1,11.95,07/14/19 23:33,"139 Jackson St, Seattle, WA 98101" +224919,Macbook Pro Laptop,1,1700,07/18/19 08:28,"369 1st St, New York City, NY 10001" +224920,34in Ultrawide Monitor,1,379.99,07/17/19 18:30,"427 Lakeview St, Seattle, WA 98101" +224921,20in Monitor,1,109.99,07/06/19 19:32,"257 Ridge St, San Francisco, CA 94016" +224922,Vareebadd Phone,1,400,07/02/19 15:57,"480 8th St, New York City, NY 10001" +224923,Lightning Charging Cable,1,14.95,07/09/19 13:56,"200 Meadow St, New York City, NY 10001" +224924,Lightning Charging Cable,1,14.95,07/04/19 10:29,"89 Sunset St, Los Angeles, CA 90001" +224925,USB-C Charging Cable,1,11.95,07/25/19 16:54,"937 Elm St, Los Angeles, CA 90001" +224926,Bose SoundSport Headphones,1,99.99,07/25/19 22:00,"974 10th St, Los Angeles, CA 90001" +224927,27in FHD Monitor,1,149.99,07/01/19 15:50,"948 Lincoln St, Los Angeles, CA 90001" +224928,Bose SoundSport Headphones,1,99.99,07/03/19 12:40,"728 1st St, Seattle, WA 98101" +224929,Flatscreen TV,1,300,07/25/19 14:07,"820 Lincoln St, Seattle, WA 98101" +224930,34in Ultrawide Monitor,1,379.99,07/12/19 12:20,"245 Washington St, Dallas, TX 75001" +224931,AAA Batteries (4-pack),1,2.99,07/27/19 21:43,"51 Johnson St, New York City, NY 10001" +224932,27in FHD Monitor,1,149.99,07/08/19 18:32,"127 Elm St, Atlanta, GA 30301" +224933,AA Batteries (4-pack),1,3.84,07/07/19 18:17,"250 Elm St, Boston, MA 02215" +224934,AAA Batteries (4-pack),2,2.99,07/06/19 17:28,"299 Lincoln St, Dallas, TX 75001" +224935,AA Batteries (4-pack),1,3.84,07/22/19 09:57,"325 Spruce St, Portland, ME 04101" +224936,Wired Headphones,1,11.99,07/14/19 08:55,"219 Forest St, Atlanta, GA 30301" +224937,USB-C Charging Cable,1,11.95,07/08/19 18:57,"335 Hickory St, San Francisco, CA 94016" +224938,34in Ultrawide Monitor,1,379.99,07/23/19 23:29,"453 Dogwood St, Atlanta, GA 30301" +224939,AAA Batteries (4-pack),1,2.99,07/23/19 19:57,"108 12th St, Los Angeles, CA 90001" +224940,Lightning Charging Cable,1,14.95,07/06/19 11:05,"960 North St, San Francisco, CA 94016" +224941,Apple Airpods Headphones,1,150,07/09/19 11:51,"118 South St, New York City, NY 10001" +224942,Bose SoundSport Headphones,1,99.99,07/22/19 12:30,"790 Johnson St, San Francisco, CA 94016" +224943,Wired Headphones,1,11.99,07/03/19 18:59,"744 Maple St, Los Angeles, CA 90001" +224944,AAA Batteries (4-pack),3,2.99,07/28/19 17:26,"793 Highland St, New York City, NY 10001" +224945,Wired Headphones,1,11.99,07/13/19 20:17,"844 Dogwood St, Seattle, WA 98101" +224946,AA Batteries (4-pack),1,3.84,07/01/19 15:59,"312 Lincoln St, San Francisco, CA 94016" +224947,Macbook Pro Laptop,1,1700,07/22/19 22:43,"194 Adams St, Seattle, WA 98101" +224948,34in Ultrawide Monitor,1,379.99,07/11/19 20:06,"816 Washington St, San Francisco, CA 94016" +224949,Google Phone,1,600,07/25/19 12:01,"550 Dogwood St, San Francisco, CA 94016" +224949,USB-C Charging Cable,1,11.95,07/25/19 12:01,"550 Dogwood St, San Francisco, CA 94016" +224950,iPhone,1,700,07/14/19 21:28,"916 9th St, New York City, NY 10001" +224951,Google Phone,1,600,07/14/19 17:43,"580 Park St, Los Angeles, CA 90001" +224952,Macbook Pro Laptop,1,1700,07/24/19 11:12,"203 Adams St, Austin, TX 73301" +224953,AA Batteries (4-pack),1,3.84,07/20/19 22:22,"352 Washington St, Austin, TX 73301" +224954,Wired Headphones,1,11.99,07/18/19 16:29,"193 Dogwood St, Portland, OR 97035" +224955,USB-C Charging Cable,1,11.95,07/28/19 01:48,"617 Meadow St, Portland, OR 97035" +224956,iPhone,1,700,07/11/19 07:48,"132 Willow St, Portland, OR 97035" +224957,AA Batteries (4-pack),1,3.84,07/21/19 12:30,"660 Cherry St, San Francisco, CA 94016" +224958,Bose SoundSport Headphones,1,99.99,07/21/19 18:40,"574 14th St, San Francisco, CA 94016" +224959,AAA Batteries (4-pack),1,2.99,07/02/19 18:27,"811 North St, Los Angeles, CA 90001" +224960,Wired Headphones,2,11.99,07/16/19 12:14,"959 8th St, Los Angeles, CA 90001" +224961,USB-C Charging Cable,1,11.95,07/01/19 10:18,"935 Forest St, New York City, NY 10001" +224962,Flatscreen TV,1,300,07/27/19 01:15,"598 River St, Portland, ME 04101" +224963,AA Batteries (4-pack),1,3.84,07/13/19 17:10,"247 Meadow St, San Francisco, CA 94016" +224964,Bose SoundSport Headphones,1,99.99,07/26/19 00:12,"147 Center St, Atlanta, GA 30301" +224965,Google Phone,1,600,07/01/19 19:28,"177 Maple St, San Francisco, CA 94016" +224965,USB-C Charging Cable,2,11.95,07/01/19 19:28,"177 Maple St, San Francisco, CA 94016" +224966,Wired Headphones,1,11.99,07/03/19 21:03,"52 4th St, Dallas, TX 75001" +224967,AA Batteries (4-pack),1,3.84,07/24/19 14:07,"957 11th St, Los Angeles, CA 90001" +224968,27in FHD Monitor,1,149.99,07/13/19 17:54,"345 Center St, San Francisco, CA 94016" +224969,27in FHD Monitor,1,149.99,07/01/19 16:56,"697 Lake St, Atlanta, GA 30301" +224970,LG Dryer,1,600.0,07/29/19 13:10,"883 9th St, Boston, MA 02215" +224971,USB-C Charging Cable,1,11.95,07/18/19 02:38,"736 Johnson St, San Francisco, CA 94016" +224972,USB-C Charging Cable,1,11.95,07/04/19 13:43,"213 Church St, New York City, NY 10001" +224973,Vareebadd Phone,1,400,07/30/19 10:01,"383 Lakeview St, New York City, NY 10001" +224974,AAA Batteries (4-pack),1,2.99,07/27/19 05:09,"837 Maple St, New York City, NY 10001" +224975,Macbook Pro Laptop,1,1700,07/04/19 23:09,"983 River St, Boston, MA 02215" +224976,34in Ultrawide Monitor,1,379.99,07/01/19 19:02,"857 5th St, Dallas, TX 75001" +224977,AA Batteries (4-pack),1,3.84,07/06/19 05:49,"313 Main St, New York City, NY 10001" +224978,Apple Airpods Headphones,1,150,07/06/19 14:26,"795 Lake St, Los Angeles, CA 90001" +224979,AAA Batteries (4-pack),2,2.99,07/07/19 19:56,"446 Lake St, Seattle, WA 98101" +224980,Apple Airpods Headphones,1,150,07/01/19 15:36,"296 Walnut St, New York City, NY 10001" +224981,34in Ultrawide Monitor,1,379.99,07/15/19 20:20,"703 Center St, Seattle, WA 98101" +224982,USB-C Charging Cable,1,11.95,07/13/19 11:55,"797 1st St, Boston, MA 02215" +224983,Apple Airpods Headphones,1,150,07/23/19 17:29,"659 Elm St, Seattle, WA 98101" +224984,AA Batteries (4-pack),1,3.84,07/01/19 16:29,"803 9th St, Seattle, WA 98101" +224985,Macbook Pro Laptop,1,1700,07/13/19 09:50,"227 11th St, Seattle, WA 98101" +224986,27in 4K Gaming Monitor,1,389.99,07/26/19 09:19,"152 Meadow St, Austin, TX 73301" +224987,AA Batteries (4-pack),3,3.84,07/10/19 12:06,"933 1st St, New York City, NY 10001" +224988,34in Ultrawide Monitor,1,379.99,07/21/19 10:31,"518 Center St, Dallas, TX 75001" +224989,Lightning Charging Cable,1,14.95,07/08/19 07:32,"172 7th St, Boston, MA 02215" +224990,AA Batteries (4-pack),1,3.84,07/11/19 22:46,"966 Willow St, New York City, NY 10001" +224991,27in FHD Monitor,1,149.99,07/29/19 13:10,"15 Lake St, Los Angeles, CA 90001" +224992,USB-C Charging Cable,2,11.95,07/20/19 17:29,"644 Walnut St, New York City, NY 10001" +224993,Bose SoundSport Headphones,1,99.99,07/21/19 10:28,"863 Highland St, New York City, NY 10001" +224994,27in 4K Gaming Monitor,1,389.99,07/15/19 15:36,"506 Pine St, Dallas, TX 75001" +224995,Wired Headphones,1,11.99,07/18/19 14:57,"569 1st St, Austin, TX 73301" +224996,Apple Airpods Headphones,1,150,07/11/19 21:12,"77 Hickory St, San Francisco, CA 94016" +224997,USB-C Charging Cable,1,11.95,07/02/19 18:49,"441 Forest St, Los Angeles, CA 90001" +224998,Apple Airpods Headphones,1,150,07/31/19 21:01,"77 Hickory St, Dallas, TX 75001" +224999,AA Batteries (4-pack),1,3.84,07/15/19 13:11,"948 Washington St, Austin, TX 73301" +225000,AA Batteries (4-pack),2,3.84,07/10/19 11:53,"716 2nd St, San Francisco, CA 94016" +225001,Apple Airpods Headphones,1,150,07/02/19 13:40,"931 11th St, Dallas, TX 75001" +225002,AAA Batteries (4-pack),2,2.99,07/17/19 17:00,"735 6th St, San Francisco, CA 94016" +225003,AA Batteries (4-pack),1,3.84,07/22/19 13:35,"456 Maple St, Los Angeles, CA 90001" +225003,Google Phone,1,600,07/22/19 13:35,"456 Maple St, Los Angeles, CA 90001" +225004,AAA Batteries (4-pack),1,2.99,07/29/19 15:42,"988 Cedar St, San Francisco, CA 94016" +225004,AAA Batteries (4-pack),1,2.99,07/29/19 15:42,"988 Cedar St, San Francisco, CA 94016" +225005,AA Batteries (4-pack),1,3.84,07/26/19 21:11,"23 2nd St, San Francisco, CA 94016" +225006,AA Batteries (4-pack),3,3.84,08/01/19 00:11,"61 Highland St, Dallas, TX 75001" +225007,Bose SoundSport Headphones,1,99.99,07/09/19 10:17,"415 Walnut St, Boston, MA 02215" +225008,AAA Batteries (4-pack),1,2.99,07/25/19 20:53,"534 Willow St, Seattle, WA 98101" +225009,USB-C Charging Cable,1,11.95,07/29/19 15:05,"356 12th St, New York City, NY 10001" +225010,AA Batteries (4-pack),1,3.84,07/26/19 14:17,"330 Walnut St, Dallas, TX 75001" +225011,iPhone,1,700,07/08/19 17:42,"172 1st St, San Francisco, CA 94016" +225012,Apple Airpods Headphones,1,150,07/23/19 13:20,"501 1st St, San Francisco, CA 94016" +225013,Lightning Charging Cable,1,14.95,07/21/19 15:52,"498 Sunset St, Portland, OR 97035" +225014,27in 4K Gaming Monitor,1,389.99,07/22/19 20:12,"20 Washington St, New York City, NY 10001" +225015,Lightning Charging Cable,1,14.95,07/10/19 08:08,"198 1st St, Seattle, WA 98101" +225016,AAA Batteries (4-pack),2,2.99,07/24/19 21:34,"601 Jackson St, San Francisco, CA 94016" +225017,27in 4K Gaming Monitor,1,389.99,07/14/19 16:26,"565 11th St, Los Angeles, CA 90001" +225018,USB-C Charging Cable,1,11.95,07/19/19 13:59,"936 Lakeview St, San Francisco, CA 94016" +225019,34in Ultrawide Monitor,1,379.99,07/11/19 20:46,"521 12th St, Atlanta, GA 30301" +225020,27in 4K Gaming Monitor,1,389.99,07/14/19 18:39,"449 Cherry St, New York City, NY 10001" +225021,Lightning Charging Cable,1,14.95,07/13/19 08:49,"695 11th St, New York City, NY 10001" +225022,AA Batteries (4-pack),2,3.84,07/23/19 18:06,"990 Church St, Atlanta, GA 30301" +225023,Flatscreen TV,1,300,07/17/19 13:08,"573 Main St, New York City, NY 10001" +225024,AAA Batteries (4-pack),2,2.99,07/30/19 19:05,"8 11th St, San Francisco, CA 94016" +225025,AA Batteries (4-pack),1,3.84,07/23/19 22:20,"203 Hickory St, Los Angeles, CA 90001" +225026,AAA Batteries (4-pack),1,2.99,07/18/19 11:37,"572 Forest St, Portland, OR 97035" +225027,Flatscreen TV,1,300,07/01/19 23:28,"688 Pine St, Boston, MA 02215" +225028,Macbook Pro Laptop,1,1700,07/17/19 22:28,"137 12th St, New York City, NY 10001" +225029,Bose SoundSport Headphones,1,99.99,07/27/19 06:08,"941 Highland St, Los Angeles, CA 90001" +225030,AAA Batteries (4-pack),2,2.99,07/27/19 18:53,"107 Spruce St, San Francisco, CA 94016" +225031,Bose SoundSport Headphones,1,99.99,07/07/19 12:37,"680 Lakeview St, Los Angeles, CA 90001" +225032,AA Batteries (4-pack),1,3.84,07/28/19 11:44,"36 10th St, Atlanta, GA 30301" +225033,AAA Batteries (4-pack),2,2.99,07/08/19 21:25,"165 South St, Los Angeles, CA 90001" +225034,AAA Batteries (4-pack),1,2.99,07/27/19 10:24,"881 8th St, New York City, NY 10001" +225035,AA Batteries (4-pack),3,3.84,07/08/19 12:59,"902 14th St, Portland, OR 97035" +225036,Bose SoundSport Headphones,1,99.99,07/23/19 12:44,"672 Jefferson St, Dallas, TX 75001" +225037,Bose SoundSport Headphones,1,99.99,07/30/19 22:28,"165 Johnson St, Dallas, TX 75001" +225038,iPhone,1,700,07/30/19 09:12,"615 Park St, Boston, MA 02215" +225039,USB-C Charging Cable,1,11.95,07/26/19 20:41,"802 Meadow St, Boston, MA 02215" +225040,USB-C Charging Cable,1,11.95,07/14/19 17:48,"948 Cherry St, Atlanta, GA 30301" +225041,Wired Headphones,1,11.99,07/05/19 20:35,"730 Adams St, San Francisco, CA 94016" +225042,27in 4K Gaming Monitor,1,389.99,07/11/19 09:02,"494 Spruce St, Los Angeles, CA 90001" +225043,27in FHD Monitor,1,149.99,07/31/19 19:20,"262 13th St, Los Angeles, CA 90001" +225044,Wired Headphones,1,11.99,07/25/19 11:49,"268 South St, San Francisco, CA 94016" +225045,Google Phone,1,600,07/19/19 18:54,"124 Wilson St, Austin, TX 73301" +225045,Wired Headphones,1,11.99,07/19/19 18:54,"124 Wilson St, Austin, TX 73301" +225046,iPhone,1,700,07/01/19 18:03,"178 5th St, Los Angeles, CA 90001" +225047,Wired Headphones,1,11.99,07/29/19 16:04,"899 Cedar St, Portland, OR 97035" +225048,AA Batteries (4-pack),1,3.84,07/09/19 19:51,"811 Lake St, Portland, OR 97035" +225049,Lightning Charging Cable,1,14.95,07/27/19 23:15,"348 12th St, San Francisco, CA 94016" +225050,Apple Airpods Headphones,1,150,07/19/19 07:48,"308 River St, Austin, TX 73301" +225051,Lightning Charging Cable,1,14.95,07/12/19 12:59,"360 14th St, San Francisco, CA 94016" +225052,Wired Headphones,1,11.99,07/26/19 10:25,"87 13th St, Dallas, TX 75001" +225053,Apple Airpods Headphones,1,150,07/20/19 20:00,"91 Cedar St, Atlanta, GA 30301" +225054,AAA Batteries (4-pack),1,2.99,07/22/19 14:32,"625 4th St, San Francisco, CA 94016" +225055,LG Washing Machine,1,600.0,07/17/19 19:48,"628 Jefferson St, San Francisco, CA 94016" +225056,USB-C Charging Cable,1,11.95,07/25/19 17:53,"913 Highland St, San Francisco, CA 94016" +225057,Wired Headphones,1,11.99,07/16/19 11:53,"794 Dogwood St, Portland, OR 97035" +225058,iPhone,1,700,07/18/19 18:42,"203 Jefferson St, San Francisco, CA 94016" +225058,Apple Airpods Headphones,1,150,07/18/19 18:42,"203 Jefferson St, San Francisco, CA 94016" +225059,Google Phone,1,600,07/08/19 00:22,"153 Center St, Boston, MA 02215" +225060,Lightning Charging Cable,2,14.95,07/18/19 11:47,"173 Lake St, New York City, NY 10001" +225061,Wired Headphones,1,11.99,07/17/19 18:44,"392 Jefferson St, Dallas, TX 75001" +225062,Apple Airpods Headphones,1,150,07/22/19 21:54,"739 Hickory St, San Francisco, CA 94016" +225063,AAA Batteries (4-pack),1,2.99,07/28/19 16:42,"186 River St, San Francisco, CA 94016" +225064,Apple Airpods Headphones,1,150,07/20/19 21:11,"914 Meadow St, Austin, TX 73301" +225065,AAA Batteries (4-pack),1,2.99,07/06/19 17:23,"482 Madison St, Seattle, WA 98101" +225066,AA Batteries (4-pack),1,3.84,07/08/19 23:58,"660 Spruce St, Los Angeles, CA 90001" +225067,34in Ultrawide Monitor,1,379.99,07/25/19 10:33,"138 2nd St, Atlanta, GA 30301" +225068,Lightning Charging Cable,1,14.95,07/04/19 09:53,"783 Highland St, Los Angeles, CA 90001" +225069,27in FHD Monitor,1,149.99,07/26/19 15:52,"796 Cedar St, Los Angeles, CA 90001" +225070,Lightning Charging Cable,1,14.95,07/18/19 02:24,"175 Hickory St, New York City, NY 10001" +225071,Lightning Charging Cable,1,14.95,07/29/19 16:31,"573 Willow St, Austin, TX 73301" +225072,AAA Batteries (4-pack),1,2.99,07/20/19 20:50,"984 14th St, Portland, OR 97035" +225073,USB-C Charging Cable,1,11.95,07/28/19 22:44,"346 Chestnut St, Los Angeles, CA 90001" +225074,Apple Airpods Headphones,1,150,07/16/19 20:44,"384 11th St, Dallas, TX 75001" +225075,LG Dryer,1,600.0,07/14/19 08:00,"879 Main St, San Francisco, CA 94016" +225076,AA Batteries (4-pack),1,3.84,07/30/19 16:28,"418 Wilson St, San Francisco, CA 94016" +225077,Bose SoundSport Headphones,1,99.99,07/01/19 14:16,"919 Wilson St, San Francisco, CA 94016" +225078,Apple Airpods Headphones,1,150,07/31/19 10:38,"511 Ridge St, Boston, MA 02215" +225079,Flatscreen TV,1,300,07/30/19 19:52,"327 Walnut St, New York City, NY 10001" +225079,20in Monitor,1,109.99,07/30/19 19:52,"327 Walnut St, New York City, NY 10001" +225080,Wired Headphones,1,11.99,07/13/19 20:21,"844 Wilson St, Seattle, WA 98101" +225081,AA Batteries (4-pack),2,3.84,07/22/19 09:32,"210 Cherry St, Dallas, TX 75001" +225082,USB-C Charging Cable,1,11.95,07/30/19 12:01,"353 Lincoln St, New York City, NY 10001" +225083,Lightning Charging Cable,1,14.95,07/12/19 22:08,"364 West St, Los Angeles, CA 90001" +225084,Macbook Pro Laptop,1,1700,07/15/19 18:00,"317 Lake St, San Francisco, CA 94016" +225085,Bose SoundSport Headphones,1,99.99,07/25/19 19:36,"858 Forest St, Austin, TX 73301" +225086,27in 4K Gaming Monitor,1,389.99,07/03/19 19:30,"631 11th St, Atlanta, GA 30301" +225087,AAA Batteries (4-pack),1,2.99,07/17/19 18:16,"978 Washington St, Los Angeles, CA 90001" +225088,Apple Airpods Headphones,1,150,07/13/19 12:13,"923 North St, Atlanta, GA 30301" +225089,Wired Headphones,1,11.99,07/17/19 18:05,"138 North St, Portland, OR 97035" +225090,LG Dryer,1,600.0,07/07/19 21:28,"642 Cherry St, San Francisco, CA 94016" +225091,AAA Batteries (4-pack),1,2.99,07/05/19 22:03,"674 Willow St, Boston, MA 02215" +225092,USB-C Charging Cable,1,11.95,07/04/19 15:08,"378 Center St, New York City, NY 10001" +225093,Apple Airpods Headphones,1,150,07/11/19 15:29,"373 Spruce St, Austin, TX 73301" +225094,20in Monitor,1,109.99,07/01/19 22:02,"902 Center St, Los Angeles, CA 90001" +225095,Lightning Charging Cable,1,14.95,07/15/19 23:14,"939 Hickory St, Los Angeles, CA 90001" +225096,AAA Batteries (4-pack),1,2.99,07/08/19 00:41,"372 Hickory St, New York City, NY 10001" +225097,34in Ultrawide Monitor,1,379.99,07/16/19 00:57,"299 Lakeview St, San Francisco, CA 94016" +225098,Google Phone,1,600,07/15/19 16:33,"230 Sunset St, Los Angeles, CA 90001" +225099,Lightning Charging Cable,1,14.95,07/30/19 00:38,"993 Elm St, Boston, MA 02215" +225100,AAA Batteries (4-pack),1,2.99,07/27/19 20:49,"613 Main St, Los Angeles, CA 90001" +225101,20in Monitor,1,109.99,07/26/19 17:00,"992 Lake St, Boston, MA 02215" +225102,Lightning Charging Cable,1,14.95,07/10/19 11:08,"202 8th St, Atlanta, GA 30301" +225103,AA Batteries (4-pack),1,3.84,07/31/19 19:53,"677 Hill St, San Francisco, CA 94016" +225104,Lightning Charging Cable,1,14.95,07/22/19 20:57,"993 12th St, San Francisco, CA 94016" +225105,Lightning Charging Cable,1,14.95,07/27/19 11:12,"141 Pine St, Portland, OR 97035" +225106,Macbook Pro Laptop,1,1700,07/15/19 15:51,"858 Hill St, San Francisco, CA 94016" +225107,Wired Headphones,1,11.99,07/29/19 14:12,"987 River St, New York City, NY 10001" +225108,Bose SoundSport Headphones,1,99.99,07/21/19 11:28,"66 Forest St, Atlanta, GA 30301" +225109,AA Batteries (4-pack),1,3.84,07/21/19 16:04,"696 Willow St, Austin, TX 73301" +225110,USB-C Charging Cable,1,11.95,07/05/19 11:49,"553 Hill St, Boston, MA 02215" +225111,AA Batteries (4-pack),1,3.84,07/27/19 06:28,"12 Highland St, San Francisco, CA 94016" +225112,27in FHD Monitor,1,149.99,07/31/19 21:14,"624 Hill St, Dallas, TX 75001" +225113,Flatscreen TV,1,300,07/27/19 22:55,"215 Elm St, San Francisco, CA 94016" +225114,27in 4K Gaming Monitor,1,389.99,07/02/19 18:15,"285 Willow St, Los Angeles, CA 90001" +225115,27in 4K Gaming Monitor,1,389.99,07/11/19 20:26,"414 8th St, Atlanta, GA 30301" +225116,Bose SoundSport Headphones,1,99.99,07/02/19 19:53,"992 Meadow St, Austin, TX 73301" +225117,34in Ultrawide Monitor,1,379.99,07/06/19 13:18,"476 West St, Seattle, WA 98101" +225118,AA Batteries (4-pack),1,3.84,07/22/19 22:05,"855 Washington St, Dallas, TX 75001" +225119,Bose SoundSport Headphones,1,99.99,07/15/19 12:30,"268 West St, Seattle, WA 98101" +225120,LG Dryer,1,600.0,07/22/19 14:49,"385 Wilson St, San Francisco, CA 94016" +225121,Bose SoundSport Headphones,1,99.99,07/08/19 08:57,"189 Elm St, New York City, NY 10001" +225122,20in Monitor,1,109.99,07/31/19 23:14,"805 Walnut St, San Francisco, CA 94016" +225123,Lightning Charging Cable,1,14.95,07/11/19 21:30,"619 Chestnut St, Los Angeles, CA 90001" +225124,AA Batteries (4-pack),1,3.84,07/07/19 18:51,"42 Hill St, San Francisco, CA 94016" +225125,Apple Airpods Headphones,1,150,07/08/19 11:45,"293 Lincoln St, San Francisco, CA 94016" +225126,Lightning Charging Cable,1,14.95,07/18/19 18:45,"435 Ridge St, Boston, MA 02215" +225127,Lightning Charging Cable,1,14.95,07/04/19 17:14,"988 Lincoln St, Atlanta, GA 30301" +225128,USB-C Charging Cable,1,11.95,07/17/19 18:27,"777 5th St, Los Angeles, CA 90001" +225128,AA Batteries (4-pack),2,3.84,07/17/19 18:27,"777 5th St, Los Angeles, CA 90001" +225129,USB-C Charging Cable,1,11.95,07/26/19 11:11,"952 Church St, San Francisco, CA 94016" +225130,Lightning Charging Cable,1,14.95,07/25/19 12:23,"59 9th St, Atlanta, GA 30301" +225131,ThinkPad Laptop,1,999.99,07/07/19 21:19,"320 7th St, New York City, NY 10001" +225132,Apple Airpods Headphones,1,150,07/06/19 18:36,"395 Dogwood St, Dallas, TX 75001" +225133,27in FHD Monitor,1,149.99,07/05/19 11:45,"134 Walnut St, New York City, NY 10001" +225134,Bose SoundSport Headphones,1,99.99,07/08/19 10:40,"112 Madison St, Dallas, TX 75001" +225135,Apple Airpods Headphones,1,150,07/29/19 18:50,"724 West St, San Francisco, CA 94016" +225136,iPhone,1,700,07/14/19 20:54,"188 Walnut St, San Francisco, CA 94016" +225136,Wired Headphones,1,11.99,07/14/19 20:54,"188 Walnut St, San Francisco, CA 94016" +225137,Apple Airpods Headphones,1,150,07/02/19 19:11,"737 Adams St, Los Angeles, CA 90001" +225138,Wired Headphones,1,11.99,07/06/19 12:59,"228 Forest St, San Francisco, CA 94016" +225139,Wired Headphones,1,11.99,07/04/19 14:38,"915 Jackson St, Dallas, TX 75001" +225140,Lightning Charging Cable,1,14.95,07/28/19 22:00,"508 Wilson St, Portland, OR 97035" +225141,AAA Batteries (4-pack),1,2.99,07/15/19 08:56,"228 9th St, Dallas, TX 75001" +225142,AAA Batteries (4-pack),1,2.99,07/11/19 14:56,"248 Lincoln St, Seattle, WA 98101" +225143,34in Ultrawide Monitor,1,379.99,07/30/19 12:59,"158 Jefferson St, Dallas, TX 75001" +225144,34in Ultrawide Monitor,1,379.99,07/05/19 18:35,"323 9th St, San Francisco, CA 94016" +225145,USB-C Charging Cable,1,11.95,07/27/19 08:47,"263 Pine St, San Francisco, CA 94016" +225146,AA Batteries (4-pack),1,3.84,07/28/19 21:48,"277 Sunset St, Atlanta, GA 30301" +225147,Lightning Charging Cable,1,14.95,07/09/19 15:54,"790 Lake St, Boston, MA 02215" +225148,USB-C Charging Cable,1,11.95,07/16/19 21:32,"224 1st St, San Francisco, CA 94016" +225149,AA Batteries (4-pack),1,3.84,07/31/19 14:07,"406 Lincoln St, Austin, TX 73301" +225150,AA Batteries (4-pack),1,3.84,07/01/19 12:12,"736 Johnson St, Dallas, TX 75001" +225150,Apple Airpods Headphones,1,150,07/01/19 12:12,"736 Johnson St, Dallas, TX 75001" +225151,27in 4K Gaming Monitor,1,389.99,07/28/19 22:58,"173 Jackson St, Seattle, WA 98101" +225152,Bose SoundSport Headphones,1,99.99,07/29/19 11:26,"256 13th St, Austin, TX 73301" +225153,Lightning Charging Cable,1,14.95,07/10/19 19:56,"540 Highland St, Los Angeles, CA 90001" +225154,Bose SoundSport Headphones,1,99.99,07/20/19 09:31,"794 Hill St, New York City, NY 10001" +225155,Bose SoundSport Headphones,1,99.99,07/19/19 19:56,"371 Chestnut St, Los Angeles, CA 90001" +225156,iPhone,1,700,07/20/19 08:44,"571 6th St, Austin, TX 73301" +225157,USB-C Charging Cable,1,11.95,07/07/19 16:12,"98 6th St, Los Angeles, CA 90001" +225158,Macbook Pro Laptop,1,1700,07/16/19 14:59,"523 Madison St, San Francisco, CA 94016" +225159,Lightning Charging Cable,1,14.95,07/04/19 12:34,"275 Ridge St, Los Angeles, CA 90001" +225160,AA Batteries (4-pack),1,3.84,07/12/19 15:36,"321 4th St, Boston, MA 02215" +225161,USB-C Charging Cable,1,11.95,07/28/19 17:58,"390 13th St, San Francisco, CA 94016" +225162,USB-C Charging Cable,1,11.95,07/28/19 21:24,"413 Chestnut St, Atlanta, GA 30301" +225163,Apple Airpods Headphones,1,150,07/03/19 23:46,"462 Johnson St, Atlanta, GA 30301" +225164,Apple Airpods Headphones,1,150,07/18/19 02:45,"132 Maple St, Boston, MA 02215" +225165,Lightning Charging Cable,1,14.95,07/09/19 18:04,"249 Spruce St, New York City, NY 10001" +225166,Bose SoundSport Headphones,1,99.99,07/22/19 17:49,"803 Walnut St, New York City, NY 10001" +225167,AA Batteries (4-pack),1,3.84,07/04/19 21:05,"144 Cedar St, Atlanta, GA 30301" +225168,Lightning Charging Cable,1,14.95,07/05/19 19:40,"211 Jackson St, New York City, NY 10001" +225169,Lightning Charging Cable,1,14.95,07/25/19 17:35,"661 Hill St, San Francisco, CA 94016" +225170,Macbook Pro Laptop,1,1700,07/09/19 19:40,"365 Forest St, Seattle, WA 98101" +225171,20in Monitor,1,109.99,07/26/19 19:47,"960 2nd St, Portland, OR 97035" +225172,AA Batteries (4-pack),2,3.84,07/08/19 12:40,"301 Main St, Portland, OR 97035" +225173,Bose SoundSport Headphones,1,99.99,07/05/19 08:20,"622 5th St, Dallas, TX 75001" +225174,Lightning Charging Cable,1,14.95,07/28/19 13:47,"670 13th St, Seattle, WA 98101" +225175,Wired Headphones,1,11.99,07/09/19 19:14,"389 Lakeview St, San Francisco, CA 94016" +225176,Apple Airpods Headphones,1,150,07/14/19 18:10,"530 14th St, San Francisco, CA 94016" +225177,Apple Airpods Headphones,1,150,07/29/19 13:15,"226 Meadow St, San Francisco, CA 94016" +225178,Wired Headphones,1,11.99,07/24/19 16:29,"154 2nd St, New York City, NY 10001" +225179,Vareebadd Phone,1,400,07/10/19 18:35,"871 Meadow St, Austin, TX 73301" +225179,USB-C Charging Cable,1,11.95,07/10/19 18:35,"871 Meadow St, Austin, TX 73301" +225180,USB-C Charging Cable,1,11.95,07/01/19 16:14,"46 14th St, Dallas, TX 75001" +225181,Lightning Charging Cable,1,14.95,07/25/19 22:55,"788 9th St, Los Angeles, CA 90001" +225182,USB-C Charging Cable,1,11.95,07/17/19 18:54,"36 North St, New York City, NY 10001" +225183,USB-C Charging Cable,1,11.95,07/18/19 08:54,"675 14th St, Seattle, WA 98101" +225184,Lightning Charging Cable,1,14.95,07/11/19 04:21,"784 Park St, New York City, NY 10001" +225185,34in Ultrawide Monitor,1,379.99,07/15/19 10:58,"584 Hickory St, Austin, TX 73301" +225186,Apple Airpods Headphones,1,150,07/04/19 12:59,"584 Park St, New York City, NY 10001" +225187,Lightning Charging Cable,1,14.95,07/21/19 20:13,"357 Jackson St, Los Angeles, CA 90001" +225188,34in Ultrawide Monitor,1,379.99,07/19/19 09:45,"311 1st St, San Francisco, CA 94016" +225189,Wired Headphones,1,11.99,07/06/19 10:03,"612 2nd St, New York City, NY 10001" +225190,USB-C Charging Cable,1,11.95,07/20/19 12:41,"390 2nd St, San Francisco, CA 94016" +225191,Wired Headphones,1,11.99,07/30/19 16:28,"464 Jefferson St, Austin, TX 73301" +225192,Lightning Charging Cable,1,14.95,07/14/19 18:30,"40 Highland St, Boston, MA 02215" +225193,Lightning Charging Cable,1,14.95,07/02/19 14:25,"943 Washington St, Portland, OR 97035" +225194,Google Phone,1,600,07/01/19 11:13,"978 13th St, Los Angeles, CA 90001" +225195,27in FHD Monitor,1,149.99,07/05/19 17:34,"390 12th St, Dallas, TX 75001" +225196,Bose SoundSport Headphones,1,99.99,07/01/19 08:47,"567 Lincoln St, San Francisco, CA 94016" +225197,Bose SoundSport Headphones,1,99.99,07/20/19 15:42,"302 2nd St, Boston, MA 02215" +225198,AA Batteries (4-pack),1,3.84,07/02/19 16:00,"535 Cherry St, San Francisco, CA 94016" +225199,27in FHD Monitor,1,149.99,07/26/19 13:54,"804 Johnson St, San Francisco, CA 94016" +225200,Flatscreen TV,1,300,07/22/19 14:20,"147 Forest St, Dallas, TX 75001" +225201,Wired Headphones,1,11.99,07/09/19 17:06,"536 8th St, Boston, MA 02215" +225202,AAA Batteries (4-pack),1,2.99,07/10/19 23:09,"850 Highland St, Austin, TX 73301" +225203,AA Batteries (4-pack),4,3.84,07/13/19 09:42,"132 5th St, Dallas, TX 75001" +225204,Bose SoundSport Headphones,1,99.99,07/04/19 01:36,"29 5th St, Seattle, WA 98101" +225205,Lightning Charging Cable,1,14.95,07/21/19 11:37,"557 1st St, San Francisco, CA 94016" +225206,AA Batteries (4-pack),1,3.84,07/29/19 22:52,"962 10th St, Dallas, TX 75001" +225207,Lightning Charging Cable,1,14.95,07/06/19 21:00,"667 14th St, Boston, MA 02215" +225208,Lightning Charging Cable,1,14.95,07/11/19 22:38,"31 5th St, Portland, OR 97035" +225209,Wired Headphones,1,11.99,07/03/19 19:27,"855 Pine St, San Francisco, CA 94016" +225210,AAA Batteries (4-pack),3,2.99,07/03/19 23:37,"73 Jackson St, Dallas, TX 75001" +225211,iPhone,1,700,07/08/19 22:41,"255 Ridge St, New York City, NY 10001" +225212,34in Ultrawide Monitor,1,379.99,07/09/19 21:08,"409 South St, Los Angeles, CA 90001" +225213,AAA Batteries (4-pack),2,2.99,07/22/19 12:48,"302 West St, San Francisco, CA 94016" +225214,USB-C Charging Cable,2,11.95,07/17/19 20:19,"375 Cedar St, Portland, OR 97035" +225215,Bose SoundSport Headphones,1,99.99,07/03/19 17:19,"622 Wilson St, Boston, MA 02215" +225216,Apple Airpods Headphones,1,150,07/11/19 18:08,"369 Jefferson St, San Francisco, CA 94016" +225217,iPhone,1,700,07/23/19 00:40,"79 Meadow St, Atlanta, GA 30301" +225218,Wired Headphones,1,11.99,07/29/19 11:01,"122 2nd St, Seattle, WA 98101" +225219,Lightning Charging Cable,1,14.95,07/11/19 18:02,"304 9th St, San Francisco, CA 94016" +225220,Lightning Charging Cable,1,14.95,07/29/19 23:21,"788 Church St, San Francisco, CA 94016" +225221,Wired Headphones,1,11.99,07/25/19 17:39,"836 Jefferson St, Austin, TX 73301" +225222,AAA Batteries (4-pack),1,2.99,07/20/19 19:31,"622 Cedar St, Dallas, TX 75001" +225223,USB-C Charging Cable,1,11.95,07/06/19 11:10,"122 Lincoln St, Austin, TX 73301" +225224,AAA Batteries (4-pack),4,2.99,07/08/19 12:03,"9 5th St, New York City, NY 10001" +225225,Flatscreen TV,1,300,07/18/19 22:44,"882 Cherry St, San Francisco, CA 94016" +225226,Flatscreen TV,1,300,07/23/19 12:49,"397 12th St, Los Angeles, CA 90001" +225227,27in FHD Monitor,1,149.99,07/24/19 15:55,"839 Pine St, Austin, TX 73301" +225228,Flatscreen TV,1,300,07/30/19 08:52,"570 9th St, Atlanta, GA 30301" +225229,USB-C Charging Cable,1,11.95,07/03/19 09:17,"388 2nd St, Dallas, TX 75001" +225230,27in FHD Monitor,1,149.99,07/11/19 02:47,"656 13th St, Los Angeles, CA 90001" +225231,AA Batteries (4-pack),1,3.84,07/21/19 12:08,"191 Johnson St, San Francisco, CA 94016" +225232,USB-C Charging Cable,1,11.95,07/07/19 14:01,"113 River St, Atlanta, GA 30301" +225233,20in Monitor,1,109.99,07/16/19 17:14,"881 8th St, New York City, NY 10001" +225234,27in 4K Gaming Monitor,1,389.99,07/19/19 04:38,"517 Maple St, New York City, NY 10001" +225235,Lightning Charging Cable,1,14.95,07/26/19 10:24,"721 Wilson St, San Francisco, CA 94016" +225236,Lightning Charging Cable,1,14.95,07/28/19 17:54,"400 Wilson St, San Francisco, CA 94016" +225237,AAA Batteries (4-pack),1,2.99,07/25/19 19:20,"316 Center St, Boston, MA 02215" +225238,Lightning Charging Cable,2,14.95,07/08/19 00:52,"907 12th St, San Francisco, CA 94016" +225239,Wired Headphones,1,11.99,07/25/19 16:32,"774 West St, Dallas, TX 75001" +225240,Apple Airpods Headphones,1,150,07/29/19 13:26,"371 Main St, Dallas, TX 75001" +225241,34in Ultrawide Monitor,1,379.99,07/04/19 23:19,"101 Maple St, Los Angeles, CA 90001" +225242,Wired Headphones,1,11.99,07/24/19 23:32,"120 11th St, San Francisco, CA 94016" +225243,Wired Headphones,1,11.99,07/04/19 13:43,"499 Johnson St, San Francisco, CA 94016" +225244,AA Batteries (4-pack),1,3.84,07/08/19 16:09,"238 Hill St, Los Angeles, CA 90001" +225245,Bose SoundSport Headphones,1,99.99,07/11/19 22:38,"82 Chestnut St, New York City, NY 10001" +225246,ThinkPad Laptop,1,999.99,07/23/19 16:51,"335 Forest St, San Francisco, CA 94016" +225247,Lightning Charging Cable,1,14.95,07/28/19 17:54,"821 Highland St, Atlanta, GA 30301" +225248,AA Batteries (4-pack),1,3.84,07/10/19 09:31,"807 6th St, Atlanta, GA 30301" +225249,Wired Headphones,1,11.99,07/06/19 23:15,"309 Maple St, Atlanta, GA 30301" +225250,AAA Batteries (4-pack),1,2.99,07/08/19 11:10,"41 Chestnut St, Boston, MA 02215" +225251,Lightning Charging Cable,1,14.95,07/15/19 11:01,"66 Main St, Los Angeles, CA 90001" +225252,USB-C Charging Cable,1,11.95,07/03/19 10:34,"819 Main St, San Francisco, CA 94016" +225253,AAA Batteries (4-pack),1,2.99,07/30/19 20:48,"950 River St, New York City, NY 10001" +225254,AA Batteries (4-pack),2,3.84,07/19/19 08:06,"705 Main St, Portland, OR 97035" +225255,27in 4K Gaming Monitor,1,389.99,07/23/19 20:32,"64 1st St, San Francisco, CA 94016" +225256,27in FHD Monitor,1,149.99,07/03/19 09:12,"823 Lakeview St, Portland, ME 04101" +225257,34in Ultrawide Monitor,1,379.99,07/29/19 13:13,"455 10th St, Los Angeles, CA 90001" +225258,USB-C Charging Cable,1,11.95,07/31/19 13:51,"96 Forest St, New York City, NY 10001" +225259,Apple Airpods Headphones,1,150,07/26/19 15:29,"765 Center St, Portland, OR 97035" +225260,Bose SoundSport Headphones,1,99.99,07/26/19 09:59,"490 1st St, Los Angeles, CA 90001" +225261,USB-C Charging Cable,1,11.95,07/11/19 15:57,"52 Jefferson St, Boston, MA 02215" +225262,USB-C Charging Cable,1,11.95,07/06/19 09:27,"330 Pine St, San Francisco, CA 94016" +225263,34in Ultrawide Monitor,1,379.99,07/20/19 12:46,"418 11th St, Los Angeles, CA 90001" +225264,Lightning Charging Cable,1,14.95,07/30/19 11:52,"486 Chestnut St, Los Angeles, CA 90001" +225265,Apple Airpods Headphones,1,150,07/13/19 11:29,"382 Lakeview St, New York City, NY 10001" +225266,AAA Batteries (4-pack),1,2.99,07/07/19 19:34,"651 Wilson St, Los Angeles, CA 90001" +225267,USB-C Charging Cable,2,11.95,07/20/19 21:25,"145 Meadow St, Boston, MA 02215" +225268,Bose SoundSport Headphones,1,99.99,07/13/19 17:45,"917 Spruce St, Dallas, TX 75001" +225269,Lightning Charging Cable,1,14.95,07/11/19 12:22,"577 Walnut St, San Francisco, CA 94016" +225270,Macbook Pro Laptop,1,1700,07/13/19 16:14,"477 Lakeview St, San Francisco, CA 94016" +225271,Apple Airpods Headphones,1,150,07/29/19 01:21,"191 Washington St, New York City, NY 10001" +225271,iPhone,1,700,07/29/19 01:21,"191 Washington St, New York City, NY 10001" +225272,Wired Headphones,1,11.99,07/12/19 12:21,"276 5th St, San Francisco, CA 94016" +225273,Lightning Charging Cable,1,14.95,07/23/19 16:21,"630 14th St, Los Angeles, CA 90001" +225274,Apple Airpods Headphones,1,150,07/12/19 07:16,"127 Church St, Los Angeles, CA 90001" +225275,Bose SoundSport Headphones,1,99.99,07/14/19 16:49,"802 North St, Austin, TX 73301" +225276,Apple Airpods Headphones,1,150,07/09/19 10:26,"576 4th St, Portland, OR 97035" +225277,Wired Headphones,1,11.99,07/16/19 20:07,"735 Center St, Boston, MA 02215" +225278,Wired Headphones,1,11.99,07/11/19 20:41,"829 Forest St, San Francisco, CA 94016" +225279,Apple Airpods Headphones,1,150,07/11/19 11:49,"846 5th St, San Francisco, CA 94016" +225280,Lightning Charging Cable,1,14.95,07/07/19 07:44,"530 Park St, Los Angeles, CA 90001" +225281,20in Monitor,1,109.99,07/26/19 15:49,"659 9th St, San Francisco, CA 94016" +225282,Bose SoundSport Headphones,1,99.99,07/14/19 16:01,"462 River St, Portland, OR 97035" +225283,AAA Batteries (4-pack),1,2.99,07/21/19 21:32,"847 South St, Seattle, WA 98101" +225284,Apple Airpods Headphones,1,150,07/11/19 17:31,"237 Jefferson St, San Francisco, CA 94016" +225285,AA Batteries (4-pack),2,3.84,07/13/19 17:30,"306 South St, Los Angeles, CA 90001" +225286,27in FHD Monitor,1,149.99,07/04/19 12:55,"748 Johnson St, Boston, MA 02215" +225287,34in Ultrawide Monitor,1,379.99,07/02/19 07:29,"428 Church St, Portland, ME 04101" +225288,Apple Airpods Headphones,1,150,07/29/19 17:47,"459 Pine St, San Francisco, CA 94016" +225289,AAA Batteries (4-pack),2,2.99,07/28/19 10:21,"649 Hill St, Los Angeles, CA 90001" +225290,Wired Headphones,1,11.99,07/08/19 21:11,"226 Park St, New York City, NY 10001" +225291,iPhone,1,700,07/31/19 10:25,"90 12th St, Austin, TX 73301" +225291,Wired Headphones,1,11.99,07/31/19 10:25,"90 12th St, Austin, TX 73301" +225292,AAA Batteries (4-pack),1,2.99,07/16/19 16:02,"275 8th St, New York City, NY 10001" +225293,Bose SoundSport Headphones,1,99.99,07/19/19 13:57,"441 5th St, San Francisco, CA 94016" +225294,AAA Batteries (4-pack),1,2.99,07/24/19 18:32,"811 Park St, Los Angeles, CA 90001" +225295,Lightning Charging Cable,2,14.95,07/31/19 13:46,"146 13th St, New York City, NY 10001" +225296,34in Ultrawide Monitor,1,379.99,07/17/19 01:00,"364 14th St, Portland, ME 04101" +225297,34in Ultrawide Monitor,1,379.99,07/17/19 22:30,"538 Ridge St, San Francisco, CA 94016" +225298,Bose SoundSport Headphones,1,99.99,07/12/19 18:31,"244 Spruce St, Los Angeles, CA 90001" +225299,Wired Headphones,1,11.99,07/13/19 22:51,"136 Spruce St, New York City, NY 10001" +225300,ThinkPad Laptop,1,999.99,07/15/19 20:03,"987 Chestnut St, New York City, NY 10001" +225301,34in Ultrawide Monitor,1,379.99,07/10/19 16:51,"602 Lakeview St, Los Angeles, CA 90001" +225302,Wired Headphones,1,11.99,07/03/19 11:29,"775 Johnson St, San Francisco, CA 94016" +225303,USB-C Charging Cable,1,11.95,07/17/19 12:56,"576 1st St, Los Angeles, CA 90001" +225304,27in FHD Monitor,1,149.99,07/23/19 12:45,"202 Lakeview St, Dallas, TX 75001" +225305,27in FHD Monitor,1,149.99,07/05/19 17:05,"982 Park St, New York City, NY 10001" +225306,AAA Batteries (4-pack),1,2.99,07/29/19 18:51,"280 14th St, Los Angeles, CA 90001" +225307,USB-C Charging Cable,1,11.95,07/10/19 11:43,"885 2nd St, Los Angeles, CA 90001" +225308,27in FHD Monitor,1,149.99,07/14/19 18:24,"763 12th St, Austin, TX 73301" +225309,Apple Airpods Headphones,1,150,07/05/19 01:13,"577 Meadow St, New York City, NY 10001" +225310,AAA Batteries (4-pack),1,2.99,07/21/19 06:03,"678 Ridge St, Boston, MA 02215" +225311,USB-C Charging Cable,1,11.95,07/06/19 12:11,"324 Chestnut St, Austin, TX 73301" +225312,Lightning Charging Cable,1,14.95,07/14/19 18:14,"203 River St, Dallas, TX 75001" +225313,USB-C Charging Cable,1,11.95,07/14/19 21:45,"370 Maple St, Austin, TX 73301" +225313,Wired Headphones,2,11.99,07/14/19 21:45,"370 Maple St, Austin, TX 73301" +225314,Lightning Charging Cable,1,14.95,07/20/19 19:31,"477 Cedar St, Boston, MA 02215" +225315,Apple Airpods Headphones,1,150,07/28/19 11:45,"89 Adams St, Los Angeles, CA 90001" +225316,AA Batteries (4-pack),2,3.84,07/03/19 18:16,"762 1st St, San Francisco, CA 94016" +225317,AA Batteries (4-pack),1,3.84,07/29/19 06:43,"388 4th St, Dallas, TX 75001" +225318,Apple Airpods Headphones,1,150,07/05/19 17:31,"4 Madison St, New York City, NY 10001" +225319,27in 4K Gaming Monitor,1,389.99,07/31/19 22:07,"64 Cedar St, Dallas, TX 75001" +225320,AA Batteries (4-pack),2,3.84,07/07/19 15:40,"571 Pine St, New York City, NY 10001" +225321,Lightning Charging Cable,1,14.95,07/08/19 14:09,"14 Hill St, San Francisco, CA 94016" +225322,USB-C Charging Cable,1,11.95,07/02/19 09:11,"512 Lakeview St, New York City, NY 10001" +225323,Lightning Charging Cable,1,14.95,07/06/19 21:17,"556 Hickory St, Dallas, TX 75001" +225324,Wired Headphones,3,11.99,07/08/19 20:10,"257 Jefferson St, San Francisco, CA 94016" +225325,Apple Airpods Headphones,1,150,07/24/19 14:50,"468 West St, Los Angeles, CA 90001" +225326,ThinkPad Laptop,1,999.99,07/23/19 19:14,"165 4th St, San Francisco, CA 94016" +225327,Lightning Charging Cable,1,14.95,07/15/19 10:50,"450 Lakeview St, Portland, ME 04101" +225328,iPhone,1,700,07/09/19 18:53,"603 Highland St, Boston, MA 02215" +225329,Bose SoundSport Headphones,1,99.99,07/16/19 17:49,"808 8th St, Los Angeles, CA 90001" +225330,USB-C Charging Cable,1,11.95,07/25/19 12:23,"547 11th St, San Francisco, CA 94016" +225331,27in 4K Gaming Monitor,1,389.99,07/28/19 21:46,"679 Meadow St, Austin, TX 73301" +225332,AA Batteries (4-pack),2,3.84,07/29/19 00:39,"495 Jackson St, Dallas, TX 75001" +225333,Flatscreen TV,1,300,07/14/19 00:32,"604 West St, Los Angeles, CA 90001" +225334,Lightning Charging Cable,1,14.95,07/01/19 19:54,"673 Hickory St, Atlanta, GA 30301" +225335,27in 4K Gaming Monitor,1,389.99,07/07/19 12:11,"836 2nd St, Boston, MA 02215" +225336,AA Batteries (4-pack),3,3.84,07/30/19 22:16,"304 2nd St, Los Angeles, CA 90001" +225337,Flatscreen TV,1,300,07/04/19 12:07,"825 14th St, Atlanta, GA 30301" +225338,Wired Headphones,1,11.99,07/24/19 18:06,"88 9th St, San Francisco, CA 94016" +225339,USB-C Charging Cable,1,11.95,07/05/19 10:15,"205 Wilson St, San Francisco, CA 94016" +225340,AAA Batteries (4-pack),2,2.99,07/24/19 15:18,"221 Chestnut St, San Francisco, CA 94016" +225341,34in Ultrawide Monitor,1,379.99,07/01/19 14:40,"440 14th St, Seattle, WA 98101" +225342,USB-C Charging Cable,1,11.95,07/18/19 20:33,"136 Cedar St, New York City, NY 10001" +225342,20in Monitor,1,109.99,07/18/19 20:33,"136 Cedar St, New York City, NY 10001" +225343,USB-C Charging Cable,1,11.95,07/01/19 10:04,"540 Walnut St, Los Angeles, CA 90001" +225344,27in FHD Monitor,1,149.99,07/17/19 13:18,"472 Walnut St, Portland, ME 04101" +225345,Bose SoundSport Headphones,1,99.99,07/16/19 21:25,"641 11th St, Los Angeles, CA 90001" +225346,AA Batteries (4-pack),2,3.84,07/10/19 15:21,"962 Center St, New York City, NY 10001" +225347,AA Batteries (4-pack),1,3.84,07/06/19 15:06,"103 Lincoln St, Los Angeles, CA 90001" +225348,Apple Airpods Headphones,1,150,07/01/19 06:17,"317 Dogwood St, Boston, MA 02215" +225349,AA Batteries (4-pack),1,3.84,07/10/19 09:25,"555 10th St, Boston, MA 02215" +225350,USB-C Charging Cable,2,11.95,07/17/19 16:49,"576 Hill St, San Francisco, CA 94016" +225351,Lightning Charging Cable,1,14.95,07/27/19 02:26,"320 River St, Portland, OR 97035" +225352,Flatscreen TV,1,300,07/28/19 14:52,"722 Highland St, Atlanta, GA 30301" +225353,USB-C Charging Cable,1,11.95,07/15/19 12:52,"832 Park St, New York City, NY 10001" +225354,20in Monitor,1,109.99,07/07/19 14:05,"117 Highland St, San Francisco, CA 94016" +225355,Google Phone,1,600,07/02/19 14:45,"186 1st St, New York City, NY 10001" +225355,Bose SoundSport Headphones,1,99.99,07/02/19 14:45,"186 1st St, New York City, NY 10001" +225355,Wired Headphones,1,11.99,07/02/19 14:45,"186 1st St, New York City, NY 10001" +225356,AAA Batteries (4-pack),1,2.99,07/18/19 22:57,"604 Lincoln St, Seattle, WA 98101" +225357,Apple Airpods Headphones,1,150,07/21/19 14:11,"947 7th St, San Francisco, CA 94016" +225358,Vareebadd Phone,1,400,07/24/19 16:24,"553 5th St, Los Angeles, CA 90001" +225359,iPhone,1,700,07/25/19 18:00,"286 2nd St, Boston, MA 02215" +225360,Macbook Pro Laptop,1,1700,07/15/19 15:33,"568 Ridge St, Portland, OR 97035" +225361,Lightning Charging Cable,1,14.95,07/24/19 13:02,"361 7th St, San Francisco, CA 94016" +225362,AA Batteries (4-pack),2,3.84,07/12/19 09:30,"511 Sunset St, San Francisco, CA 94016" +225363,AAA Batteries (4-pack),2,2.99,07/14/19 11:00,"361 Johnson St, Atlanta, GA 30301" +225364,34in Ultrawide Monitor,1,379.99,07/30/19 20:56,"301 North St, New York City, NY 10001" +225365,Wired Headphones,1,11.99,07/05/19 09:25,"732 Johnson St, Boston, MA 02215" +225366,Google Phone,1,600,07/23/19 08:49,"527 Cedar St, San Francisco, CA 94016" +225366,Bose SoundSport Headphones,1,99.99,07/23/19 08:49,"527 Cedar St, San Francisco, CA 94016" +225367,AAA Batteries (4-pack),1,2.99,07/29/19 19:24,"7 Walnut St, Los Angeles, CA 90001" +225368,27in FHD Monitor,1,149.99,07/24/19 22:49,"380 12th St, Los Angeles, CA 90001" +225369,Lightning Charging Cable,1,14.95,07/26/19 13:20,"512 Highland St, Dallas, TX 75001" +225370,USB-C Charging Cable,1,11.95,07/18/19 00:29,"454 Adams St, New York City, NY 10001" +225371,Bose SoundSport Headphones,1,99.99,07/28/19 11:12,"422 7th St, New York City, NY 10001" +225372,ThinkPad Laptop,1,999.99,07/22/19 23:04,"818 Center St, Portland, OR 97035" +225373,AA Batteries (4-pack),2,3.84,07/11/19 20:00,"979 13th St, Atlanta, GA 30301" +225374,USB-C Charging Cable,2,11.95,07/30/19 12:31,"541 9th St, Seattle, WA 98101" +225375,Vareebadd Phone,1,400,07/06/19 11:20,"452 Wilson St, Los Angeles, CA 90001" +225376,Lightning Charging Cable,1,14.95,07/12/19 19:08,"863 Pine St, Los Angeles, CA 90001" +225377,Wired Headphones,1,11.99,07/22/19 11:22,"731 Park St, Boston, MA 02215" +225378,Apple Airpods Headphones,1,150,07/27/19 20:30,"178 Hickory St, Dallas, TX 75001" +225379,AA Batteries (4-pack),1,3.84,07/05/19 20:02,"205 1st St, Los Angeles, CA 90001" +225380,Bose SoundSport Headphones,1,99.99,07/22/19 20:06,"941 Park St, Dallas, TX 75001" +225381,Apple Airpods Headphones,1,150,07/05/19 23:40,"445 Cherry St, Portland, ME 04101" +225382,Wired Headphones,1,11.99,07/22/19 18:39,"237 Cedar St, San Francisco, CA 94016" +225383,27in FHD Monitor,1,149.99,07/07/19 17:29,"140 Maple St, Portland, ME 04101" +225384,AAA Batteries (4-pack),2,2.99,07/03/19 18:15,"469 Wilson St, Austin, TX 73301" +225385,AA Batteries (4-pack),1,3.84,07/06/19 22:34,"240 Church St, Boston, MA 02215" +225386,AAA Batteries (4-pack),2,2.99,07/04/19 11:05,"765 2nd St, San Francisco, CA 94016" +225387,20in Monitor,1,109.99,07/09/19 14:57,"208 Walnut St, New York City, NY 10001" +225388,Flatscreen TV,1,300,07/13/19 21:07,"201 8th St, New York City, NY 10001" +225389,Lightning Charging Cable,1,14.95,07/30/19 20:55,"76 Pine St, San Francisco, CA 94016" +225390,Bose SoundSport Headphones,1,99.99,07/14/19 09:07,"225 1st St, New York City, NY 10001" +225391,ThinkPad Laptop,1,999.99,07/24/19 09:39,"536 2nd St, San Francisco, CA 94016" +225392,ThinkPad Laptop,1,999.99,07/19/19 19:30,"587 South St, Dallas, TX 75001" +225393,Wired Headphones,1,11.99,07/15/19 16:10,"684 Cherry St, San Francisco, CA 94016" +225394,AAA Batteries (4-pack),1,2.99,07/02/19 10:21,"320 11th St, Los Angeles, CA 90001" +225395,AAA Batteries (4-pack),1,2.99,07/17/19 10:07,"765 8th St, Los Angeles, CA 90001" +225396,Flatscreen TV,1,300,07/21/19 17:34,"20 Hickory St, Portland, OR 97035" +225397,Apple Airpods Headphones,1,150,07/28/19 17:17,"928 River St, Seattle, WA 98101" +225398,Wired Headphones,1,11.99,07/21/19 19:32,"724 4th St, Los Angeles, CA 90001" +225399,AA Batteries (4-pack),1,3.84,07/15/19 19:09,"817 Madison St, Atlanta, GA 30301" +225400,20in Monitor,1,109.99,07/07/19 22:41,"243 8th St, Boston, MA 02215" +225401,iPhone,1,700,07/17/19 08:21,"421 Sunset St, Seattle, WA 98101" +225402,Wired Headphones,1,11.99,07/25/19 10:16,"220 7th St, Austin, TX 73301" +225403,Vareebadd Phone,1,400,07/30/19 14:23,"852 North St, Seattle, WA 98101" +225404,AA Batteries (4-pack),1,3.84,07/27/19 19:15,"525 Lakeview St, Dallas, TX 75001" +225405,Lightning Charging Cable,1,14.95,07/13/19 16:35,"458 Johnson St, New York City, NY 10001" +225406,LG Dryer,1,600.0,07/21/19 21:17,"341 7th St, Dallas, TX 75001" +225407,Apple Airpods Headphones,1,150,07/05/19 22:13,"268 Pine St, San Francisco, CA 94016" +225408,Lightning Charging Cable,3,14.95,07/03/19 11:54,"142 Church St, New York City, NY 10001" +225409,USB-C Charging Cable,1,11.95,07/25/19 12:07,"598 Meadow St, Boston, MA 02215" +225410,Google Phone,1,600,07/06/19 22:25,"496 14th St, Los Angeles, CA 90001" +225410,Wired Headphones,1,11.99,07/06/19 22:25,"496 14th St, Los Angeles, CA 90001" +225411,AAA Batteries (4-pack),1,2.99,07/26/19 12:59,"273 Walnut St, Los Angeles, CA 90001" +225412,27in 4K Gaming Monitor,1,389.99,07/08/19 15:54,"661 Cedar St, Seattle, WA 98101" +225413,Macbook Pro Laptop,1,1700,07/08/19 10:30,"989 Wilson St, Dallas, TX 75001" +225414,27in FHD Monitor,1,149.99,07/05/19 20:39,"985 Cedar St, New York City, NY 10001" +225415,Lightning Charging Cable,1,14.95,07/29/19 17:55,"72 Lakeview St, Boston, MA 02215" +225416,Apple Airpods Headphones,1,150,07/31/19 16:06,"153 Madison St, Los Angeles, CA 90001" +225417,34in Ultrawide Monitor,1,379.99,07/28/19 17:01,"126 7th St, Los Angeles, CA 90001" +225418,Lightning Charging Cable,1,14.95,07/26/19 04:01,"761 10th St, Atlanta, GA 30301" +225419,ThinkPad Laptop,1,999.99,07/27/19 13:56,"495 North St, Boston, MA 02215" +,,,,, +225420,Wired Headphones,1,11.99,07/02/19 12:33,"385 6th St, San Francisco, CA 94016" +225421,Apple Airpods Headphones,1,150,07/30/19 09:02,"254 Willow St, New York City, NY 10001" +225422,AAA Batteries (4-pack),1,2.99,07/05/19 15:01,"767 Jackson St, Los Angeles, CA 90001" +225423,Apple Airpods Headphones,1,150,07/25/19 13:08,"385 13th St, Dallas, TX 75001" +225424,AA Batteries (4-pack),1,3.84,07/14/19 18:36,"448 Adams St, Atlanta, GA 30301" +225425,Wired Headphones,1,11.99,07/31/19 17:49,"757 Park St, Seattle, WA 98101" +225426,Google Phone,1,600,07/13/19 02:04,"593 Willow St, Atlanta, GA 30301" +225427,AAA Batteries (4-pack),1,2.99,07/23/19 13:27,"361 9th St, San Francisco, CA 94016" +225428,USB-C Charging Cable,1,11.95,07/09/19 23:00,"388 Willow St, Boston, MA 02215" +225429,USB-C Charging Cable,1,11.95,07/21/19 07:18,"623 5th St, Portland, OR 97035" +225430,Lightning Charging Cable,1,14.95,07/25/19 20:17,"324 Lincoln St, San Francisco, CA 94016" +225431,AA Batteries (4-pack),1,3.84,07/20/19 12:02,"576 Main St, Boston, MA 02215" +225432,Lightning Charging Cable,2,14.95,07/16/19 08:37,"381 Meadow St, Seattle, WA 98101" +225433,27in 4K Gaming Monitor,1,389.99,07/30/19 01:42,"329 2nd St, Boston, MA 02215" +225434,27in FHD Monitor,1,149.99,07/01/19 22:30,"452 Meadow St, New York City, NY 10001" +225435,Lightning Charging Cable,2,14.95,07/22/19 14:24,"549 Forest St, New York City, NY 10001" +225436,AA Batteries (4-pack),2,3.84,07/05/19 13:08,"424 7th St, New York City, NY 10001" +225437,Wired Headphones,1,11.99,07/21/19 08:35,"857 Maple St, Dallas, TX 75001" +225438,Wired Headphones,1,11.99,07/28/19 23:16,"608 Center St, Portland, OR 97035" +225439,Lightning Charging Cable,1,14.95,07/24/19 20:14,"361 Center St, Austin, TX 73301" +225440,Wired Headphones,3,11.99,07/13/19 16:05,"460 West St, San Francisco, CA 94016" +225441,Wired Headphones,1,11.99,07/31/19 06:52,"81 Johnson St, Boston, MA 02215" +225442,iPhone,1,700,07/28/19 22:06,"869 Jefferson St, Los Angeles, CA 90001" +225443,AA Batteries (4-pack),2,3.84,07/25/19 20:44,"161 10th St, Seattle, WA 98101" +225444,USB-C Charging Cable,1,11.95,07/20/19 13:06,"273 Cedar St, Seattle, WA 98101" +225445,USB-C Charging Cable,1,11.95,07/11/19 15:03,"853 Hickory St, Los Angeles, CA 90001" +225446,USB-C Charging Cable,1,11.95,07/13/19 17:32,"232 Jefferson St, New York City, NY 10001" +,,,,, +225447,Lightning Charging Cable,1,14.95,07/25/19 11:41,"163 14th St, Boston, MA 02215" +225448,AA Batteries (4-pack),1,3.84,07/27/19 12:14,"971 14th St, Portland, OR 97035" +225449,Flatscreen TV,1,300,07/12/19 14:00,"112 Church St, Boston, MA 02215" +225450,AAA Batteries (4-pack),1,2.99,07/09/19 02:43,"13 Main St, Los Angeles, CA 90001" +225451,Apple Airpods Headphones,1,150,07/08/19 19:15,"833 Sunset St, Dallas, TX 75001" +225452,34in Ultrawide Monitor,1,379.99,07/10/19 09:31,"210 Johnson St, Portland, OR 97035" +225453,Wired Headphones,1,11.99,07/02/19 16:21,"709 8th St, Los Angeles, CA 90001" +225454,AA Batteries (4-pack),1,3.84,07/20/19 20:40,"816 Maple St, New York City, NY 10001" +225454,iPhone,1,700,07/20/19 20:40,"816 Maple St, New York City, NY 10001" +225455,Lightning Charging Cable,2,14.95,07/04/19 15:27,"421 Willow St, New York City, NY 10001" +225456,34in Ultrawide Monitor,1,379.99,07/02/19 12:28,"320 6th St, San Francisco, CA 94016" +225457,27in FHD Monitor,1,149.99,07/06/19 13:16,"245 Jefferson St, New York City, NY 10001" +225458,USB-C Charging Cable,1,11.95,07/26/19 18:58,"611 Lake St, Atlanta, GA 30301" +225459,Lightning Charging Cable,1,14.95,07/18/19 10:49,"525 Sunset St, San Francisco, CA 94016" +225460,20in Monitor,1,109.99,07/12/19 13:22,"966 12th St, Seattle, WA 98101" +225461,Lightning Charging Cable,1,14.95,07/20/19 06:46,"597 Hill St, Los Angeles, CA 90001" +225462,Bose SoundSport Headphones,1,99.99,07/13/19 11:08,"217 11th St, Boston, MA 02215" +225463,Flatscreen TV,1,300,07/02/19 13:14,"474 11th St, Atlanta, GA 30301" +225464,Lightning Charging Cable,1,14.95,07/08/19 23:37,"253 13th St, Atlanta, GA 30301" +225465,AA Batteries (4-pack),1,3.84,07/29/19 21:13,"121 10th St, Portland, OR 97035" +225466,AAA Batteries (4-pack),1,2.99,07/01/19 20:03,"575 Chestnut St, Atlanta, GA 30301" +225467,Wired Headphones,1,11.99,07/03/19 14:41,"3 Lincoln St, New York City, NY 10001" +225468,Lightning Charging Cable,1,14.95,07/23/19 12:24,"617 Adams St, Dallas, TX 75001" +225469,Apple Airpods Headphones,1,150,07/07/19 18:14,"761 5th St, San Francisco, CA 94016" +225470,Lightning Charging Cable,1,14.95,07/16/19 17:47,"43 Willow St, New York City, NY 10001" +225471,AA Batteries (4-pack),1,3.84,07/16/19 10:30,"76 Jackson St, Portland, ME 04101" +225472,AA Batteries (4-pack),2,3.84,07/24/19 11:20,"735 12th St, San Francisco, CA 94016" +225473,Lightning Charging Cable,1,14.95,07/15/19 23:21,"50 1st St, Portland, OR 97035" +225474,ThinkPad Laptop,1,999.99,07/30/19 21:24,"83 Sunset St, Seattle, WA 98101" +225475,Bose SoundSport Headphones,1,99.99,07/01/19 13:54,"742 Main St, Portland, OR 97035" +225476,Lightning Charging Cable,1,14.95,07/10/19 19:11,"631 Center St, San Francisco, CA 94016" +225477,USB-C Charging Cable,1,11.95,07/31/19 12:56,"152 Dogwood St, Dallas, TX 75001" +225478,AA Batteries (4-pack),1,3.84,07/28/19 17:38,"440 Hickory St, San Francisco, CA 94016" +225479,20in Monitor,2,109.99,07/23/19 16:04,"377 Ridge St, New York City, NY 10001" +225480,AA Batteries (4-pack),2,3.84,07/26/19 12:35,"684 Johnson St, Dallas, TX 75001" +225481,Google Phone,1,600,07/07/19 22:42,"335 12th St, Portland, OR 97035" +225481,USB-C Charging Cable,1,11.95,07/07/19 22:42,"335 12th St, Portland, OR 97035" +225481,Wired Headphones,1,11.99,07/07/19 22:42,"335 12th St, Portland, OR 97035" +225482,AA Batteries (4-pack),2,3.84,07/13/19 18:12,"26 Center St, San Francisco, CA 94016" +225483,USB-C Charging Cable,1,11.95,07/28/19 11:15,"220 10th St, Boston, MA 02215" +225484,Wired Headphones,2,11.99,07/29/19 17:38,"269 1st St, Los Angeles, CA 90001" +225485,USB-C Charging Cable,1,11.95,07/22/19 16:23,"813 1st St, Atlanta, GA 30301" +225486,Bose SoundSport Headphones,1,99.99,07/22/19 20:15,"13 2nd St, San Francisco, CA 94016" +225487,Wired Headphones,1,11.99,07/09/19 03:26,"68 Church St, Boston, MA 02215" +225488,20in Monitor,1,109.99,07/19/19 15:16,"969 Dogwood St, Los Angeles, CA 90001" +225489,Wired Headphones,1,11.99,07/14/19 17:14,"546 River St, Boston, MA 02215" +225490,Apple Airpods Headphones,1,150,07/16/19 09:04,"253 10th St, Boston, MA 02215" +225491,USB-C Charging Cable,1,11.95,07/25/19 22:23,"831 11th St, San Francisco, CA 94016" +225492,AA Batteries (4-pack),1,3.84,07/05/19 02:51,"773 Maple St, New York City, NY 10001" +225493,Lightning Charging Cable,1,14.95,07/10/19 21:01,"344 Ridge St, Portland, OR 97035" +225494,Apple Airpods Headphones,1,150,07/03/19 12:53,"533 Forest St, Los Angeles, CA 90001" +225495,Apple Airpods Headphones,1,150,07/07/19 13:52,"672 Wilson St, Seattle, WA 98101" +225496,Wired Headphones,1,11.99,07/18/19 21:55,"532 North St, San Francisco, CA 94016" +225497,20in Monitor,1,109.99,07/21/19 15:06,"876 Center St, Los Angeles, CA 90001" +225498,AA Batteries (4-pack),2,3.84,07/03/19 18:24,"154 Pine St, San Francisco, CA 94016" +225499,USB-C Charging Cable,1,11.95,07/31/19 11:03,"461 14th St, New York City, NY 10001" +225500,Flatscreen TV,1,300,07/05/19 13:35,"25 North St, San Francisco, CA 94016" +225501,34in Ultrawide Monitor,1,379.99,07/11/19 16:50,"880 Jackson St, Portland, OR 97035" +225502,AA Batteries (4-pack),1,3.84,07/03/19 16:32,"321 Cherry St, San Francisco, CA 94016" +225503,34in Ultrawide Monitor,1,379.99,07/31/19 07:10,"609 7th St, Atlanta, GA 30301" +225504,AA Batteries (4-pack),1,3.84,07/28/19 17:34,"108 6th St, San Francisco, CA 94016" +225505,Wired Headphones,1,11.99,07/13/19 13:58,"291 13th St, San Francisco, CA 94016" +225506,Flatscreen TV,2,300,07/25/19 18:48,"867 8th St, Seattle, WA 98101" +225507,iPhone,1,700,07/05/19 00:15,"535 Center St, Atlanta, GA 30301" +225508,USB-C Charging Cable,1,11.95,07/04/19 12:31,"101 River St, Austin, TX 73301" +225509,AAA Batteries (4-pack),1,2.99,07/12/19 08:40,"103 Highland St, Los Angeles, CA 90001" +225510,Wired Headphones,1,11.99,07/11/19 22:42,"907 Adams St, Austin, TX 73301" +225511,34in Ultrawide Monitor,1,379.99,07/11/19 07:09,"751 Adams St, New York City, NY 10001" +225512,AAA Batteries (4-pack),1,2.99,07/02/19 20:09,"472 Johnson St, Atlanta, GA 30301" +225513,Bose SoundSport Headphones,1,99.99,07/12/19 14:45,"38 Highland St, Seattle, WA 98101" +225514,Wired Headphones,1,11.99,07/08/19 17:45,"516 Pine St, Los Angeles, CA 90001" +225515,AA Batteries (4-pack),2,3.84,07/20/19 19:12,"551 13th St, Los Angeles, CA 90001" +225516,Bose SoundSport Headphones,1,99.99,07/27/19 11:30,"16 North St, Boston, MA 02215" +225517,AAA Batteries (4-pack),2,2.99,07/17/19 20:12,"107 Forest St, New York City, NY 10001" +225518,27in FHD Monitor,1,149.99,07/15/19 18:54,"701 Pine St, Seattle, WA 98101" +225519,Bose SoundSport Headphones,1,99.99,07/03/19 08:59,"90 Wilson St, San Francisco, CA 94016" +225520,27in 4K Gaming Monitor,1,389.99,07/15/19 14:27,"882 Park St, Seattle, WA 98101" +225521,20in Monitor,1,109.99,07/23/19 17:43,"558 Adams St, Atlanta, GA 30301" +225522,Bose SoundSport Headphones,1,99.99,07/11/19 12:30,"444 12th St, Dallas, TX 75001" +225523,20in Monitor,1,109.99,07/26/19 02:31,"768 Jackson St, New York City, NY 10001" +225524,AAA Batteries (4-pack),1,2.99,07/02/19 21:53,"4 11th St, Atlanta, GA 30301" +225525,AA Batteries (4-pack),1,3.84,07/25/19 10:28,"708 Lakeview St, San Francisco, CA 94016" +225526,AAA Batteries (4-pack),1,2.99,07/20/19 00:07,"75 West St, New York City, NY 10001" +225527,AA Batteries (4-pack),4,3.84,07/02/19 11:00,"880 Chestnut St, Boston, MA 02215" +225528,iPhone,1,700,07/10/19 10:28,"292 Jefferson St, San Francisco, CA 94016" +225529,Lightning Charging Cable,1,14.95,07/30/19 11:42,"950 Wilson St, Dallas, TX 75001" +225530,USB-C Charging Cable,1,11.95,07/01/19 08:52,"238 Maple St, Austin, TX 73301" +225531,AAA Batteries (4-pack),1,2.99,07/07/19 14:52,"502 Walnut St, Seattle, WA 98101" +225532,Lightning Charging Cable,1,14.95,07/17/19 13:22,"559 6th St, New York City, NY 10001" +225533,Google Phone,1,600,07/24/19 10:56,"616 Hill St, San Francisco, CA 94016" +225534,Flatscreen TV,1,300,07/18/19 12:14,"802 Jackson St, San Francisco, CA 94016" +225535,27in 4K Gaming Monitor,1,389.99,07/21/19 19:11,"204 Meadow St, New York City, NY 10001" +225536,Bose SoundSport Headphones,1,99.99,07/19/19 14:10,"65 12th St, New York City, NY 10001" +225537,ThinkPad Laptop,1,999.99,07/10/19 18:09,"561 5th St, Los Angeles, CA 90001" +225538,Bose SoundSport Headphones,1,99.99,07/06/19 20:28,"833 Jackson St, San Francisco, CA 94016" +225539,AA Batteries (4-pack),2,3.84,07/27/19 14:03,"333 Forest St, Portland, OR 97035" +225540,USB-C Charging Cable,1,11.95,07/02/19 17:23,"810 8th St, Los Angeles, CA 90001" +225541,Bose SoundSport Headphones,1,99.99,07/01/19 12:10,"761 Pine St, Boston, MA 02215" +225542,AA Batteries (4-pack),1,3.84,07/29/19 06:45,"100 Hill St, Dallas, TX 75001" +225543,USB-C Charging Cable,1,11.95,07/04/19 23:03,"746 Jefferson St, New York City, NY 10001" +225544,27in 4K Gaming Monitor,1,389.99,07/02/19 17:52,"798 Dogwood St, San Francisco, CA 94016" +225545,USB-C Charging Cable,1,11.95,07/02/19 20:15,"641 11th St, Los Angeles, CA 90001" +225546,AAA Batteries (4-pack),1,2.99,07/21/19 10:36,"828 Main St, San Francisco, CA 94016" +225547,27in FHD Monitor,1,149.99,07/06/19 15:32,"987 Johnson St, Los Angeles, CA 90001" +225548,Apple Airpods Headphones,1,150,07/31/19 15:58,"991 Jackson St, Boston, MA 02215" +225549,Wired Headphones,1,11.99,07/17/19 16:32,"481 2nd St, New York City, NY 10001" +225550,Wired Headphones,1,11.99,07/15/19 11:41,"383 West St, New York City, NY 10001" +225551,USB-C Charging Cable,1,11.95,07/16/19 08:50,"667 Main St, Atlanta, GA 30301" +225552,Lightning Charging Cable,1,14.95,07/09/19 14:10,"797 Walnut St, Portland, OR 97035" +225553,AAA Batteries (4-pack),1,2.99,07/20/19 15:29,"24 Madison St, San Francisco, CA 94016" +225554,AAA Batteries (4-pack),1,2.99,07/13/19 11:30,"114 Lake St, San Francisco, CA 94016" +225555,34in Ultrawide Monitor,1,379.99,07/26/19 23:54,"673 Park St, Atlanta, GA 30301" +225556,AAA Batteries (4-pack),2,2.99,07/15/19 11:11,"966 13th St, San Francisco, CA 94016" +225557,USB-C Charging Cable,2,11.95,07/16/19 10:49,"764 Lake St, San Francisco, CA 94016" +225558,AA Batteries (4-pack),1,3.84,07/04/19 12:58,"207 12th St, New York City, NY 10001" +225559,Wired Headphones,1,11.99,07/28/19 18:38,"977 North St, Seattle, WA 98101" +225560,Lightning Charging Cable,1,14.95,07/30/19 15:42,"716 Center St, Los Angeles, CA 90001" +225561,Apple Airpods Headphones,1,150,07/28/19 15:53,"725 River St, Los Angeles, CA 90001" +225562,ThinkPad Laptop,1,999.99,07/31/19 11:31,"514 Willow St, San Francisco, CA 94016" +225563,Lightning Charging Cable,1,14.95,07/29/19 21:29,"778 12th St, Atlanta, GA 30301" +225564,USB-C Charging Cable,1,11.95,07/15/19 18:27,"266 Lake St, Portland, OR 97035" +225565,USB-C Charging Cable,2,11.95,07/15/19 07:32,"724 North St, New York City, NY 10001" +225566,27in 4K Gaming Monitor,1,389.99,07/29/19 08:52,"789 Lake St, Los Angeles, CA 90001" +225566,27in 4K Gaming Monitor,1,389.99,07/29/19 08:52,"789 Lake St, Los Angeles, CA 90001" +225567,Lightning Charging Cable,1,14.95,07/31/19 16:47,"112 Dogwood St, Portland, OR 97035" +225568,27in 4K Gaming Monitor,1,389.99,07/24/19 21:23,"121 Johnson St, Austin, TX 73301" +225569,ThinkPad Laptop,1,999.99,07/21/19 18:55,"686 Center St, Austin, TX 73301" +225570,AAA Batteries (4-pack),1,2.99,07/26/19 09:26,"190 Hill St, Dallas, TX 75001" +225571,AAA Batteries (4-pack),1,2.99,07/20/19 09:47,"253 Walnut St, Los Angeles, CA 90001" +225572,USB-C Charging Cable,2,11.95,07/17/19 08:39,"586 Hill St, San Francisco, CA 94016" +225573,20in Monitor,1,109.99,07/23/19 12:34,"406 Walnut St, Los Angeles, CA 90001" +225574,Lightning Charging Cable,1,14.95,07/25/19 10:03,"561 Pine St, Atlanta, GA 30301" +225575,Lightning Charging Cable,1,14.95,07/09/19 18:56,"69 8th St, Seattle, WA 98101" +225576,34in Ultrawide Monitor,1,379.99,07/15/19 06:59,"900 Walnut St, San Francisco, CA 94016" +225577,Apple Airpods Headphones,1,150,07/11/19 16:46,"149 13th St, San Francisco, CA 94016" +225578,USB-C Charging Cable,1,11.95,07/15/19 18:21,"575 Cherry St, Portland, OR 97035" +225579,Wired Headphones,1,11.99,07/27/19 12:33,"346 1st St, New York City, NY 10001" +225580,Bose SoundSport Headphones,1,99.99,07/15/19 12:42,"320 8th St, Dallas, TX 75001" +225581,Lightning Charging Cable,1,14.95,07/22/19 18:10,"656 Lakeview St, San Francisco, CA 94016" +225582,USB-C Charging Cable,1,11.95,07/14/19 09:13,"210 Chestnut St, New York City, NY 10001" +225583,AAA Batteries (4-pack),1,2.99,07/14/19 21:53,"948 Wilson St, Los Angeles, CA 90001" +225584,Lightning Charging Cable,1,14.95,07/21/19 20:45,"212 5th St, Atlanta, GA 30301" +225585,Apple Airpods Headphones,1,150,07/19/19 12:57,"532 Forest St, Los Angeles, CA 90001" +225586,Lightning Charging Cable,1,14.95,07/23/19 13:50,"107 Park St, Los Angeles, CA 90001" +225587,Wired Headphones,1,11.99,07/09/19 00:57,"704 Ridge St, Portland, ME 04101" +225588,iPhone,1,700,07/17/19 14:32,"857 Main St, San Francisco, CA 94016" +225589,Flatscreen TV,1,300,07/19/19 16:56,"950 Pine St, San Francisco, CA 94016" +225590,Bose SoundSport Headphones,1,99.99,07/23/19 08:34,"617 South St, Dallas, TX 75001" +225591,Lightning Charging Cable,1,14.95,07/14/19 20:56,"636 Johnson St, Boston, MA 02215" +225592,Bose SoundSport Headphones,1,99.99,07/14/19 23:33,"291 Hill St, San Francisco, CA 94016" +225592,Bose SoundSport Headphones,1,99.99,07/14/19 23:33,"291 Hill St, San Francisco, CA 94016" +225593,AA Batteries (4-pack),1,3.84,07/02/19 23:54,"432 13th St, San Francisco, CA 94016" +225594,Apple Airpods Headphones,1,150,07/16/19 20:59,"824 Willow St, Austin, TX 73301" +225595,27in FHD Monitor,1,149.99,07/15/19 12:26,"752 Main St, Los Angeles, CA 90001" +225596,iPhone,1,700,07/08/19 13:34,"500 13th St, Boston, MA 02215" +225596,Lightning Charging Cable,1,14.95,07/08/19 13:34,"500 13th St, Boston, MA 02215" +225597,AA Batteries (4-pack),1,3.84,07/24/19 03:50,"726 Chestnut St, Los Angeles, CA 90001" +225598,Lightning Charging Cable,1,14.95,07/03/19 22:13,"575 Lakeview St, San Francisco, CA 94016" +225599,ThinkPad Laptop,1,999.99,07/02/19 18:28,"105 Meadow St, Seattle, WA 98101" +225600,Wired Headphones,1,11.99,07/03/19 13:08,"698 Park St, San Francisco, CA 94016" +225601,AA Batteries (4-pack),1,3.84,07/08/19 11:34,"201 West St, Los Angeles, CA 90001" +225602,27in FHD Monitor,1,149.99,07/31/19 19:09,"810 Chestnut St, Los Angeles, CA 90001" +225603,AA Batteries (4-pack),1,3.84,07/10/19 12:07,"574 1st St, San Francisco, CA 94016" +225604,Vareebadd Phone,1,400,07/05/19 19:59,"448 14th St, Dallas, TX 75001" +225605,AA Batteries (4-pack),1,3.84,07/20/19 14:40,"359 Highland St, Boston, MA 02215" +225606,Apple Airpods Headphones,1,150,07/12/19 04:37,"158 12th St, San Francisco, CA 94016" +225607,Wired Headphones,1,11.99,07/11/19 08:46,"353 Maple St, Dallas, TX 75001" +225608,Apple Airpods Headphones,1,150,07/05/19 20:36,"358 Lake St, San Francisco, CA 94016" +225609,Bose SoundSport Headphones,1,99.99,07/06/19 10:07,"472 Sunset St, San Francisco, CA 94016" +225610,Wired Headphones,1,11.99,07/13/19 22:25,"416 Lakeview St, New York City, NY 10001" +225611,AAA Batteries (4-pack),1,2.99,07/06/19 12:06,"829 Wilson St, Austin, TX 73301" +225612,AAA Batteries (4-pack),1,2.99,07/10/19 19:21,"477 Lake St, San Francisco, CA 94016" +225613,AAA Batteries (4-pack),1,2.99,07/03/19 13:44,"437 River St, Dallas, TX 75001" +225614,iPhone,1,700,07/15/19 18:18,"871 South St, Dallas, TX 75001" +225615,USB-C Charging Cable,2,11.95,07/05/19 12:06,"175 6th St, Los Angeles, CA 90001" +225616,Macbook Pro Laptop,1,1700,07/01/19 15:47,"685 Center St, Seattle, WA 98101" +225617,34in Ultrawide Monitor,1,379.99,07/25/19 12:44,"67 Spruce St, Seattle, WA 98101" +225618,AA Batteries (4-pack),1,3.84,07/20/19 09:54,"136 10th St, San Francisco, CA 94016" +225619,AAA Batteries (4-pack),1,2.99,07/26/19 10:59,"631 Willow St, Los Angeles, CA 90001" +225620,AAA Batteries (4-pack),1,2.99,07/04/19 00:41,"304 Hill St, San Francisco, CA 94016" +225621,USB-C Charging Cable,1,11.95,07/25/19 10:45,"480 Wilson St, Austin, TX 73301" +225622,AA Batteries (4-pack),1,3.84,07/23/19 14:09,"255 Church St, San Francisco, CA 94016" +225622,Wired Headphones,2,11.99,07/23/19 14:09,"255 Church St, San Francisco, CA 94016" +225623,27in 4K Gaming Monitor,1,389.99,07/25/19 19:06,"414 Lake St, San Francisco, CA 94016" +225624,Flatscreen TV,1,300,07/19/19 13:34,"118 Washington St, San Francisco, CA 94016" +225625,Lightning Charging Cable,1,14.95,07/02/19 20:21,"602 South St, New York City, NY 10001" +225626,AAA Batteries (4-pack),1,2.99,07/05/19 19:30,"571 Ridge St, Seattle, WA 98101" +225627,AAA Batteries (4-pack),1,2.99,07/06/19 07:44,"659 Madison St, Los Angeles, CA 90001" +225628,Wired Headphones,1,11.99,07/04/19 21:43,"13 12th St, New York City, NY 10001" +225629,Lightning Charging Cable,2,14.95,07/27/19 11:40,"588 Ridge St, New York City, NY 10001" +225630,AA Batteries (4-pack),1,3.84,07/22/19 18:26,"65 Cedar St, New York City, NY 10001" +225631,Bose SoundSport Headphones,1,99.99,07/09/19 20:02,"766 Park St, Boston, MA 02215" +225632,AAA Batteries (4-pack),2,2.99,07/29/19 00:28,"695 Johnson St, San Francisco, CA 94016" +225633,Apple Airpods Headphones,1,150,07/09/19 00:19,"850 Lake St, Seattle, WA 98101" +225634,AA Batteries (4-pack),1,3.84,07/31/19 16:06,"712 Park St, New York City, NY 10001" +225635,Wired Headphones,1,11.99,07/11/19 12:15,"474 Lakeview St, Los Angeles, CA 90001" +225636,Bose SoundSport Headphones,1,99.99,07/25/19 19:09,"222 Walnut St, San Francisco, CA 94016" +225637,Lightning Charging Cable,1,14.95,07/12/19 12:39,"962 River St, Los Angeles, CA 90001" +225638,Apple Airpods Headphones,1,150,07/16/19 17:37,"962 Adams St, Dallas, TX 75001" +225639,Apple Airpods Headphones,1,150,07/13/19 00:51,"460 South St, Los Angeles, CA 90001" +225640,AAA Batteries (4-pack),2,2.99,07/19/19 17:40,"332 Johnson St, San Francisco, CA 94016" +225641,USB-C Charging Cable,1,11.95,07/26/19 20:17,"610 Jefferson St, Los Angeles, CA 90001" +225642,34in Ultrawide Monitor,1,379.99,07/30/19 19:32,"834 Cedar St, Portland, OR 97035" +225643,USB-C Charging Cable,1,11.95,07/10/19 11:15,"586 Lakeview St, Boston, MA 02215" +225644,Bose SoundSport Headphones,1,99.99,07/10/19 13:38,"656 Washington St, Los Angeles, CA 90001" +225645,27in 4K Gaming Monitor,1,389.99,07/21/19 19:24,"18 Jefferson St, Atlanta, GA 30301" +225646,20in Monitor,1,109.99,07/04/19 10:04,"141 10th St, Boston, MA 02215" +225647,AA Batteries (4-pack),1,3.84,07/12/19 17:28,"185 4th St, Boston, MA 02215" +225648,Flatscreen TV,1,300,07/01/19 22:08,"565 Maple St, Atlanta, GA 30301" +225648,AA Batteries (4-pack),1,3.84,07/01/19 22:08,"565 Maple St, Atlanta, GA 30301" +225649,34in Ultrawide Monitor,1,379.99,07/16/19 23:10,"163 Pine St, San Francisco, CA 94016" +225650,Apple Airpods Headphones,1,150,07/24/19 17:11,"899 Spruce St, San Francisco, CA 94016" +225651,Apple Airpods Headphones,1,150,07/15/19 14:46,"47 Center St, Boston, MA 02215" +225651,Lightning Charging Cable,1,14.95,07/15/19 14:46,"47 Center St, Boston, MA 02215" +225652,AA Batteries (4-pack),1,3.84,07/26/19 12:26,"155 Willow St, New York City, NY 10001" +225653,Apple Airpods Headphones,1,150,07/10/19 12:03,"78 5th St, Dallas, TX 75001" +225654,USB-C Charging Cable,1,11.95,07/16/19 10:20,"880 Jackson St, Boston, MA 02215" +225655,AAA Batteries (4-pack),1,2.99,07/31/19 13:44,"806 13th St, Boston, MA 02215" +225656,AAA Batteries (4-pack),1,2.99,07/28/19 18:28,"408 Chestnut St, Dallas, TX 75001" +225657,Lightning Charging Cable,1,14.95,07/09/19 14:06,"119 Lake St, Boston, MA 02215" +225658,Wired Headphones,1,11.99,07/10/19 09:27,"850 2nd St, San Francisco, CA 94016" +225659,Bose SoundSport Headphones,1,99.99,07/29/19 12:45,"445 North St, Seattle, WA 98101" +225660,Lightning Charging Cable,1,14.95,07/11/19 16:40,"231 South St, New York City, NY 10001" +225661,AA Batteries (4-pack),2,3.84,07/26/19 06:48,"258 Pine St, Los Angeles, CA 90001" +225662,Apple Airpods Headphones,1,150,07/22/19 21:57,"550 10th St, New York City, NY 10001" +225663,Apple Airpods Headphones,1,150,07/22/19 14:27,"93 Adams St, New York City, NY 10001" +225664,Bose SoundSport Headphones,1,99.99,07/08/19 10:16,"585 Elm St, Boston, MA 02215" +225665,Apple Airpods Headphones,1,150,07/30/19 21:55,"894 1st St, Boston, MA 02215" +225666,Macbook Pro Laptop,1,1700,07/21/19 17:25,"649 7th St, Atlanta, GA 30301" +225667,Google Phone,1,600,07/13/19 21:31,"356 Cherry St, Los Angeles, CA 90001" +225667,USB-C Charging Cable,1,11.95,07/13/19 21:31,"356 Cherry St, Los Angeles, CA 90001" +225668,Lightning Charging Cable,1,14.95,07/10/19 09:42,"632 10th St, Atlanta, GA 30301" +225669,USB-C Charging Cable,1,11.95,07/03/19 10:28,"98 West St, New York City, NY 10001" +225670,Bose SoundSport Headphones,1,99.99,07/23/19 09:16,"63 Meadow St, Los Angeles, CA 90001" +225671,AAA Batteries (4-pack),2,2.99,07/25/19 22:16,"567 Washington St, Atlanta, GA 30301" +225672,AAA Batteries (4-pack),1,2.99,07/20/19 20:25,"808 River St, Seattle, WA 98101" +225673,Apple Airpods Headphones,1,150,07/13/19 14:09,"722 12th St, Seattle, WA 98101" +225674,Macbook Pro Laptop,1,1700,07/22/19 13:52,"222 Spruce St, San Francisco, CA 94016" +225675,Wired Headphones,2,11.99,07/27/19 01:31,"300 Washington St, Portland, OR 97035" +225676,34in Ultrawide Monitor,1,379.99,07/29/19 11:54,"436 5th St, Dallas, TX 75001" +225677,Google Phone,1,600,07/13/19 23:10,"543 4th St, Portland, OR 97035" +225678,Lightning Charging Cable,1,14.95,07/11/19 16:09,"352 River St, New York City, NY 10001" +225679,Apple Airpods Headphones,1,150,07/26/19 19:20,"483 Cedar St, Austin, TX 73301" +225680,iPhone,1,700,07/05/19 14:33,"387 12th St, New York City, NY 10001" +225681,AAA Batteries (4-pack),1,2.99,07/06/19 21:04,"634 14th St, New York City, NY 10001" +225682,Bose SoundSport Headphones,1,99.99,07/25/19 11:32,"82 Lakeview St, Dallas, TX 75001" +225683,ThinkPad Laptop,1,999.99,07/18/19 15:34,"693 Pine St, San Francisco, CA 94016" +225684,AA Batteries (4-pack),1,3.84,07/12/19 21:32,"346 Dogwood St, Austin, TX 73301" +225685,Flatscreen TV,1,300,07/21/19 18:26,"401 Highland St, Seattle, WA 98101" +225686,Wired Headphones,1,11.99,07/27/19 08:38,"530 Maple St, Boston, MA 02215" +225687,AA Batteries (4-pack),1,3.84,07/26/19 01:27,"713 2nd St, Seattle, WA 98101" +225688,Apple Airpods Headphones,1,150,07/09/19 15:44,"555 Maple St, Portland, OR 97035" +225689,Apple Airpods Headphones,1,150,07/30/19 14:41,"12 Main St, Portland, ME 04101" +225690,Wired Headphones,1,11.99,07/21/19 20:02,"847 Pine St, San Francisco, CA 94016" +225691,Wired Headphones,1,11.99,07/19/19 12:25,"162 Spruce St, New York City, NY 10001" +225692,iPhone,1,700,07/27/19 10:14,"116 Walnut St, Dallas, TX 75001" +225693,Wired Headphones,1,11.99,07/24/19 09:17,"84 Chestnut St, Boston, MA 02215" +225694,Bose SoundSport Headphones,1,99.99,07/17/19 23:13,"255 Elm St, Portland, OR 97035" +225695,Macbook Pro Laptop,1,1700,07/27/19 22:57,"878 Madison St, New York City, NY 10001" +225696,Apple Airpods Headphones,1,150,07/31/19 15:08,"324 Willow St, Boston, MA 02215" +225697,AAA Batteries (4-pack),1,2.99,07/03/19 10:48,"378 Pine St, Seattle, WA 98101" +225698,AAA Batteries (4-pack),1,2.99,07/30/19 04:10,"452 1st St, San Francisco, CA 94016" +225699,Bose SoundSport Headphones,1,99.99,07/09/19 12:45,"82 Sunset St, New York City, NY 10001" +225700,LG Washing Machine,1,600.0,07/04/19 00:16,"380 Hickory St, San Francisco, CA 94016" +225701,Apple Airpods Headphones,1,150,07/11/19 22:12,"254 Maple St, San Francisco, CA 94016" +225702,Bose SoundSport Headphones,1,99.99,07/27/19 13:27,"688 4th St, San Francisco, CA 94016" +225703,Apple Airpods Headphones,1,150,07/09/19 23:13,"685 13th St, Boston, MA 02215" +225704,Macbook Pro Laptop,1,1700,07/23/19 21:08,"299 Meadow St, San Francisco, CA 94016" +225705,AA Batteries (4-pack),1,3.84,07/03/19 18:10,"48 Lakeview St, Los Angeles, CA 90001" +225706,Google Phone,1,600,07/26/19 17:08,"329 Adams St, Boston, MA 02215" +225707,USB-C Charging Cable,1,11.95,07/13/19 17:41,"860 Madison St, San Francisco, CA 94016" +225708,Wired Headphones,1,11.99,07/26/19 08:13,"890 Jefferson St, Boston, MA 02215" +225709,Lightning Charging Cable,1,14.95,07/04/19 00:37,"340 Madison St, Portland, OR 97035" +225710,Lightning Charging Cable,1,14.95,07/02/19 23:09,"241 14th St, Seattle, WA 98101" +225711,ThinkPad Laptop,1,999.99,07/10/19 23:10,"553 Highland St, Austin, TX 73301" +225712,27in FHD Monitor,1,149.99,07/26/19 17:21,"57 Pine St, Los Angeles, CA 90001" +225713,USB-C Charging Cable,1,11.95,07/17/19 01:04,"858 Elm St, New York City, NY 10001" +225714,Macbook Pro Laptop,1,1700,07/18/19 15:45,"326 8th St, Seattle, WA 98101" +225715,Wired Headphones,1,11.99,07/19/19 19:06,"498 Elm St, Seattle, WA 98101" +225716,Bose SoundSport Headphones,1,99.99,07/19/19 16:48,"745 Center St, New York City, NY 10001" +225717,AAA Batteries (4-pack),1,2.99,07/29/19 21:00,"751 South St, Boston, MA 02215" +225718,AAA Batteries (4-pack),2,2.99,07/12/19 09:16,"469 Chestnut St, Los Angeles, CA 90001" +225719,Bose SoundSport Headphones,1,99.99,07/26/19 16:15,"696 North St, Seattle, WA 98101" +225720,Wired Headphones,1,11.99,07/21/19 17:51,"546 Elm St, Boston, MA 02215" +225721,AA Batteries (4-pack),1,3.84,07/02/19 13:55,"753 Washington St, San Francisco, CA 94016" +225722,USB-C Charging Cable,1,11.95,07/30/19 17:23,"899 Ridge St, San Francisco, CA 94016" +225723,20in Monitor,1,109.99,07/07/19 11:53,"303 Lincoln St, San Francisco, CA 94016" +225724,Bose SoundSport Headphones,1,99.99,07/05/19 21:02,"604 Spruce St, San Francisco, CA 94016" +225725,USB-C Charging Cable,1,11.95,07/26/19 11:53,"330 Cedar St, Boston, MA 02215" +225726,AA Batteries (4-pack),2,3.84,07/01/19 19:37,"256 Lincoln St, Boston, MA 02215" +225727,AA Batteries (4-pack),1,3.84,07/09/19 13:07,"205 11th St, Atlanta, GA 30301" +225728,AA Batteries (4-pack),1,3.84,07/27/19 12:25,"839 Johnson St, Dallas, TX 75001" +225729,USB-C Charging Cable,1,11.95,07/25/19 20:37,"286 14th St, Atlanta, GA 30301" +225730,Flatscreen TV,1,300,07/14/19 12:46,"622 4th St, New York City, NY 10001" +225731,AA Batteries (4-pack),1,3.84,07/06/19 12:46,"536 2nd St, San Francisco, CA 94016" +225732,Flatscreen TV,1,300,07/23/19 18:22,"347 Pine St, San Francisco, CA 94016" +225733,Wired Headphones,1,11.99,07/17/19 11:58,"113 Dogwood St, Atlanta, GA 30301" +225734,Bose SoundSport Headphones,1,99.99,07/06/19 00:55,"516 6th St, San Francisco, CA 94016" +225735,Bose SoundSport Headphones,1,99.99,07/21/19 18:44,"790 Elm St, Los Angeles, CA 90001" +225736,iPhone,1,700,07/08/19 11:02,"557 Ridge St, New York City, NY 10001" +225736,Lightning Charging Cable,1,14.95,07/08/19 11:02,"557 Ridge St, New York City, NY 10001" +225737,AAA Batteries (4-pack),2,2.99,07/08/19 21:46,"133 Wilson St, San Francisco, CA 94016" +225738,34in Ultrawide Monitor,1,379.99,07/24/19 07:37,"253 12th St, San Francisco, CA 94016" +225739,27in 4K Gaming Monitor,1,389.99,07/22/19 17:56,"164 Forest St, Seattle, WA 98101" +225740,ThinkPad Laptop,1,999.99,07/18/19 13:52,"504 Hill St, Dallas, TX 75001" +225741,Apple Airpods Headphones,1,150,07/21/19 20:59,"52 Lincoln St, Dallas, TX 75001" +225742,Apple Airpods Headphones,1,150,07/18/19 08:57,"105 14th St, Los Angeles, CA 90001" +225743,Flatscreen TV,1,300,07/12/19 13:03,"369 Park St, Portland, OR 97035" +225744,34in Ultrawide Monitor,1,379.99,07/19/19 19:04,"295 1st St, San Francisco, CA 94016" +225745,Apple Airpods Headphones,1,150,07/04/19 18:22,"709 Main St, San Francisco, CA 94016" +225746,Google Phone,1,600,07/24/19 13:30,"592 Hill St, San Francisco, CA 94016" +225747,20in Monitor,1,109.99,07/04/19 23:04,"742 14th St, Los Angeles, CA 90001" +225748,Lightning Charging Cable,1,14.95,07/12/19 21:53,"151 River St, Dallas, TX 75001" +225749,Google Phone,1,600,07/05/19 15:17,"532 Meadow St, New York City, NY 10001" +225749,USB-C Charging Cable,1,11.95,07/05/19 15:17,"532 Meadow St, New York City, NY 10001" +225750,AAA Batteries (4-pack),1,2.99,07/04/19 23:01,"429 Willow St, Seattle, WA 98101" +225751,Wired Headphones,1,11.99,07/13/19 09:54,"351 7th St, San Francisco, CA 94016" +225752,Lightning Charging Cable,1,14.95,07/08/19 19:52,"747 Church St, San Francisco, CA 94016" +225753,AA Batteries (4-pack),1,3.84,07/26/19 13:09,"149 North St, San Francisco, CA 94016" +225754,AA Batteries (4-pack),1,3.84,07/12/19 17:44,"627 Sunset St, Atlanta, GA 30301" +225755,Wired Headphones,1,11.99,07/24/19 14:42,"578 Meadow St, New York City, NY 10001" +225756,Wired Headphones,1,11.99,07/07/19 22:09,"872 Madison St, New York City, NY 10001" +225757,Apple Airpods Headphones,1,150,07/27/19 15:41,"331 6th St, Austin, TX 73301" +225758,USB-C Charging Cable,1,11.95,07/03/19 12:52,"19 Hickory St, San Francisco, CA 94016" +225759,USB-C Charging Cable,1,11.95,07/15/19 14:10,"938 11th St, Atlanta, GA 30301" +225760,Apple Airpods Headphones,1,150,07/21/19 23:31,"76 Cherry St, San Francisco, CA 94016" +225761,27in FHD Monitor,1,149.99,07/30/19 20:09,"242 10th St, San Francisco, CA 94016" +225762,Lightning Charging Cable,1,14.95,07/30/19 18:32,"240 Pine St, New York City, NY 10001" +225763,Bose SoundSport Headphones,2,99.99,07/13/19 20:02,"13 1st St, Atlanta, GA 30301" +225764,Bose SoundSport Headphones,1,99.99,07/28/19 19:03,"575 12th St, Portland, OR 97035" +225765,Apple Airpods Headphones,1,150,07/06/19 19:16,"545 Lakeview St, Los Angeles, CA 90001" +225766,AA Batteries (4-pack),1,3.84,07/08/19 12:04,"481 West St, Austin, TX 73301" +225767,iPhone,1,700,07/14/19 19:17,"5 7th St, New York City, NY 10001" +225767,Lightning Charging Cable,1,14.95,07/14/19 19:17,"5 7th St, New York City, NY 10001" +225768,27in 4K Gaming Monitor,1,389.99,07/04/19 18:45,"570 7th St, Atlanta, GA 30301" +225769,Wired Headphones,1,11.99,07/01/19 10:28,"8 North St, San Francisco, CA 94016" +225770,27in FHD Monitor,1,149.99,07/25/19 06:46,"528 South St, Dallas, TX 75001" +225771,34in Ultrawide Monitor,1,379.99,07/19/19 20:46,"520 Washington St, Los Angeles, CA 90001" +225772,Lightning Charging Cable,1,14.95,07/14/19 08:13,"841 Center St, San Francisco, CA 94016" +225773,Lightning Charging Cable,1,14.95,07/18/19 14:42,"244 6th St, San Francisco, CA 94016" +225774,iPhone,1,700,07/04/19 16:32,"957 Pine St, New York City, NY 10001" +225775,27in FHD Monitor,1,149.99,07/18/19 20:03,"661 Pine St, Atlanta, GA 30301" +225776,USB-C Charging Cable,1,11.95,07/15/19 19:08,"890 5th St, San Francisco, CA 94016" +225777,Macbook Pro Laptop,1,1700,07/07/19 15:48,"673 Park St, New York City, NY 10001" +225778,Bose SoundSport Headphones,1,99.99,07/07/19 14:49,"580 Chestnut St, Los Angeles, CA 90001" +225779,AAA Batteries (4-pack),1,2.99,07/15/19 09:39,"373 6th St, Los Angeles, CA 90001" +225780,AA Batteries (4-pack),1,3.84,07/02/19 08:11,"447 Church St, Boston, MA 02215" +225781,AAA Batteries (4-pack),1,2.99,07/16/19 10:27,"313 10th St, New York City, NY 10001" +225782,27in 4K Gaming Monitor,1,389.99,07/30/19 19:54,"742 Highland St, New York City, NY 10001" +225783,34in Ultrawide Monitor,1,379.99,07/09/19 10:19,"77 Hickory St, Boston, MA 02215" +225784,Wired Headphones,1,11.99,07/19/19 19:16,"475 Meadow St, Los Angeles, CA 90001" +225785,20in Monitor,1,109.99,07/29/19 11:59,"416 Spruce St, San Francisco, CA 94016" +225786,20in Monitor,1,109.99,07/08/19 00:27,"88 South St, Austin, TX 73301" +225787,Google Phone,1,600,07/09/19 21:25,"177 Hill St, Seattle, WA 98101" +225787,34in Ultrawide Monitor,1,379.99,07/09/19 21:25,"177 Hill St, Seattle, WA 98101" +225788,LG Washing Machine,1,600.0,07/15/19 15:54,"498 14th St, Seattle, WA 98101" +225789,Wired Headphones,1,11.99,07/28/19 14:57,"191 10th St, Los Angeles, CA 90001" +225790,27in FHD Monitor,1,149.99,07/14/19 22:53,"776 Washington St, New York City, NY 10001" +225791,AAA Batteries (4-pack),2,2.99,07/05/19 11:33,"156 5th St, San Francisco, CA 94016" +225792,iPhone,1,700,07/11/19 17:58,"656 River St, Los Angeles, CA 90001" +225792,Lightning Charging Cable,1,14.95,07/11/19 17:58,"656 River St, Los Angeles, CA 90001" +225793,ThinkPad Laptop,1,999.99,07/31/19 19:38,"892 5th St, San Francisco, CA 94016" +225794,AAA Batteries (4-pack),5,2.99,07/24/19 14:58,"609 Dogwood St, Boston, MA 02215" +225795,34in Ultrawide Monitor,1,379.99,07/19/19 09:29,"750 Washington St, Dallas, TX 75001" +225796,Macbook Pro Laptop,1,1700,07/05/19 14:23,"965 6th St, Dallas, TX 75001" +225797,Bose SoundSport Headphones,1,99.99,07/31/19 18:28,"26 North St, Seattle, WA 98101" +225798,Wired Headphones,1,11.99,07/07/19 10:11,"846 Elm St, San Francisco, CA 94016" +225799,Lightning Charging Cable,1,14.95,07/09/19 20:47,"730 Jefferson St, Boston, MA 02215" +225800,Macbook Pro Laptop,1,1700,07/05/19 14:44,"179 Walnut St, Los Angeles, CA 90001" +225801,Bose SoundSport Headphones,1,99.99,07/30/19 13:27,"915 11th St, San Francisco, CA 94016" +225802,Bose SoundSport Headphones,1,99.99,07/01/19 20:49,"857 North St, Los Angeles, CA 90001" +225803,Google Phone,1,600,07/08/19 18:40,"116 4th St, Atlanta, GA 30301" +225804,AA Batteries (4-pack),1,3.84,07/12/19 10:33,"806 Cedar St, New York City, NY 10001" +225805,AA Batteries (4-pack),1,3.84,07/21/19 06:11,"29 4th St, San Francisco, CA 94016" +225806,AA Batteries (4-pack),1,3.84,07/12/19 19:01,"116 Lake St, San Francisco, CA 94016" +225807,27in 4K Gaming Monitor,1,389.99,07/06/19 00:02,"851 Johnson St, Los Angeles, CA 90001" +225808,AA Batteries (4-pack),1,3.84,07/03/19 14:25,"7 Wilson St, New York City, NY 10001" +225809,34in Ultrawide Monitor,1,379.99,07/23/19 01:55,"8 13th St, San Francisco, CA 94016" +225810,Macbook Pro Laptop,1,1700,07/05/19 20:12,"331 Elm St, San Francisco, CA 94016" +225811,AA Batteries (4-pack),1,3.84,07/26/19 19:06,"481 Madison St, Los Angeles, CA 90001" +225812,AA Batteries (4-pack),1,3.84,07/17/19 12:41,"292 Chestnut St, Portland, OR 97035" +225813,AAA Batteries (4-pack),2,2.99,07/10/19 18:27,"667 Dogwood St, Atlanta, GA 30301" +225814,AA Batteries (4-pack),2,3.84,07/13/19 09:37,"838 Cherry St, Atlanta, GA 30301" +225815,Wired Headphones,1,11.99,07/22/19 23:15,"351 South St, Los Angeles, CA 90001" +225816,Wired Headphones,1,11.99,07/26/19 00:07,"833 8th St, Boston, MA 02215" +225816,AA Batteries (4-pack),1,3.84,07/26/19 00:07,"833 8th St, Boston, MA 02215" +225817,ThinkPad Laptop,1,999.99,07/03/19 18:18,"332 Hill St, Los Angeles, CA 90001" +225818,ThinkPad Laptop,1,999.99,07/29/19 12:31,"700 Hickory St, San Francisco, CA 94016" +225819,USB-C Charging Cable,1,11.95,07/30/19 11:32,"328 Lincoln St, Atlanta, GA 30301" +225820,USB-C Charging Cable,1,11.95,07/24/19 07:50,"838 Jackson St, San Francisco, CA 94016" +225821,Flatscreen TV,1,300,07/21/19 18:58,"769 Dogwood St, San Francisco, CA 94016" +225822,AAA Batteries (4-pack),1,2.99,07/02/19 16:50,"569 Hill St, New York City, NY 10001" +225823,20in Monitor,1,109.99,07/29/19 09:18,"766 Chestnut St, Atlanta, GA 30301" +225824,AA Batteries (4-pack),1,3.84,07/02/19 20:48,"232 Main St, San Francisco, CA 94016" +225825,Apple Airpods Headphones,1,150,07/07/19 14:54,"264 Center St, Portland, ME 04101" +225826,20in Monitor,1,109.99,07/08/19 20:05,"496 1st St, San Francisco, CA 94016" +225827,Lightning Charging Cable,1,14.95,07/29/19 21:08,"876 Cedar St, Austin, TX 73301" +225828,Lightning Charging Cable,1,14.95,07/27/19 16:22,"731 Sunset St, San Francisco, CA 94016" +225829,Bose SoundSport Headphones,1,99.99,07/28/19 01:06,"76 Highland St, San Francisco, CA 94016" +225830,Wired Headphones,1,11.99,07/22/19 01:57,"842 Adams St, San Francisco, CA 94016" +225831,Bose SoundSport Headphones,1,99.99,07/03/19 16:32,"751 Pine St, Dallas, TX 75001" +225832,27in FHD Monitor,1,149.99,07/11/19 09:50,"867 Park St, Austin, TX 73301" +225833,Wired Headphones,1,11.99,07/10/19 00:21,"499 Pine St, New York City, NY 10001" +225834,Lightning Charging Cable,1,14.95,07/08/19 10:29,"169 Lake St, Portland, OR 97035" +225835,Bose SoundSport Headphones,1,99.99,07/17/19 16:02,"537 10th St, San Francisco, CA 94016" +225836,iPhone,1,700,07/15/19 09:54,"660 Park St, Dallas, TX 75001" +225837,AAA Batteries (4-pack),1,2.99,07/15/19 11:30,"610 10th St, San Francisco, CA 94016" +225838,27in FHD Monitor,1,149.99,07/18/19 20:42,"900 Wilson St, Los Angeles, CA 90001" +225839,Macbook Pro Laptop,1,1700,07/31/19 13:33,"494 Hickory St, Los Angeles, CA 90001" +225840,Lightning Charging Cable,1,14.95,07/14/19 14:40,"906 Lake St, Los Angeles, CA 90001" +225841,Bose SoundSport Headphones,1,99.99,07/28/19 11:12,"193 Jackson St, Los Angeles, CA 90001" +225842,Google Phone,1,600,07/31/19 11:47,"505 Sunset St, New York City, NY 10001" +225843,AAA Batteries (4-pack),1,2.99,07/23/19 11:37,"275 Main St, New York City, NY 10001" +225844,Flatscreen TV,1,300,07/04/19 14:07,"220 Meadow St, Boston, MA 02215" +225845,Wired Headphones,1,11.99,07/18/19 05:23,"487 Adams St, San Francisco, CA 94016" +225846,Lightning Charging Cable,2,14.95,07/07/19 13:47,"572 Maple St, Atlanta, GA 30301" +225847,Lightning Charging Cable,1,14.95,07/10/19 12:37,"289 Main St, Dallas, TX 75001" +225848,Bose SoundSport Headphones,1,99.99,07/26/19 12:05,"927 Lincoln St, New York City, NY 10001" +225849,Lightning Charging Cable,1,14.95,07/26/19 17:04,"259 Jefferson St, San Francisco, CA 94016" +225850,AA Batteries (4-pack),1,3.84,07/18/19 17:04,"705 Church St, Dallas, TX 75001" +225851,Lightning Charging Cable,1,14.95,07/12/19 12:13,"67 14th St, Los Angeles, CA 90001" +225852,Lightning Charging Cable,1,14.95,07/09/19 09:01,"529 5th St, Dallas, TX 75001" +225852,Wired Headphones,1,11.99,07/09/19 09:01,"529 5th St, Dallas, TX 75001" +225853,USB-C Charging Cable,1,11.95,07/19/19 00:10,"807 13th St, San Francisco, CA 94016" +225854,Apple Airpods Headphones,1,150,07/18/19 13:12,"800 Meadow St, Portland, OR 97035" +225855,USB-C Charging Cable,1,11.95,07/08/19 01:01,"114 Chestnut St, Portland, OR 97035" +225856,Lightning Charging Cable,1,14.95,07/21/19 21:08,"482 Highland St, Seattle, WA 98101" +225857,Wired Headphones,1,11.99,07/12/19 10:38,"641 11th St, Dallas, TX 75001" +225858,34in Ultrawide Monitor,1,379.99,07/19/19 14:41,"10 Meadow St, Portland, OR 97035" +225859,AA Batteries (4-pack),2,3.84,07/12/19 21:30,"174 Willow St, Austin, TX 73301" +225860,AA Batteries (4-pack),1,3.84,07/02/19 12:18,"817 Hill St, Los Angeles, CA 90001" +225861,AAA Batteries (4-pack),2,2.99,07/05/19 19:01,"140 Park St, Boston, MA 02215" +225862,Apple Airpods Headphones,1,150,07/02/19 22:02,"719 Wilson St, Los Angeles, CA 90001" +225863,AAA Batteries (4-pack),1,2.99,07/11/19 07:02,"956 South St, New York City, NY 10001" +225864,AAA Batteries (4-pack),1,2.99,07/02/19 13:16,"811 10th St, Los Angeles, CA 90001" +225865,20in Monitor,1,109.99,07/04/19 08:52,"942 6th St, Los Angeles, CA 90001" +225866,Apple Airpods Headphones,1,150,07/21/19 21:39,"14 Elm St, Seattle, WA 98101" +225867,20in Monitor,1,109.99,07/22/19 16:32,"97 5th St, New York City, NY 10001" +225868,USB-C Charging Cable,1,11.95,07/11/19 12:09,"965 Jefferson St, Los Angeles, CA 90001" +225869,Lightning Charging Cable,2,14.95,07/24/19 16:16,"972 Washington St, Los Angeles, CA 90001" +225870,Macbook Pro Laptop,1,1700,07/08/19 10:39,"510 9th St, New York City, NY 10001" +225871,ThinkPad Laptop,1,999.99,07/28/19 18:27,"910 11th St, San Francisco, CA 94016" +225872,AAA Batteries (4-pack),2,2.99,07/16/19 20:19,"917 Hickory St, Portland, OR 97035" +225873,ThinkPad Laptop,1,999.99,07/15/19 11:15,"87 7th St, San Francisco, CA 94016" +225874,Wired Headphones,1,11.99,07/27/19 19:08,"952 Washington St, Seattle, WA 98101" +225875,20in Monitor,1,109.99,07/16/19 12:26,"308 Highland St, Los Angeles, CA 90001" +225876,AAA Batteries (4-pack),1,2.99,07/05/19 09:44,"316 Ridge St, Seattle, WA 98101" +225877,Wired Headphones,1,11.99,07/04/19 22:42,"4 Walnut St, San Francisco, CA 94016" +225878,Bose SoundSport Headphones,1,99.99,07/14/19 10:33,"455 Jackson St, Portland, OR 97035" +225879,AA Batteries (4-pack),2,3.84,07/29/19 20:43,"222 Dogwood St, Los Angeles, CA 90001" +225880,Apple Airpods Headphones,1,150,07/19/19 20:25,"574 North St, Los Angeles, CA 90001" +225881,Lightning Charging Cable,1,14.95,07/22/19 13:15,"301 Cherry St, Dallas, TX 75001" +225882,USB-C Charging Cable,1,11.95,07/11/19 09:26,"427 North St, Boston, MA 02215" +225883,Apple Airpods Headphones,1,150,07/08/19 08:27,"473 River St, New York City, NY 10001" +225884,AAA Batteries (4-pack),4,2.99,07/20/19 19:08,"8 Jefferson St, Dallas, TX 75001" +225885,iPhone,1,700,07/30/19 00:31,"198 Forest St, Boston, MA 02215" +225886,Wired Headphones,2,11.99,07/08/19 16:59,"509 Center St, Seattle, WA 98101" +225887,Flatscreen TV,1,300,07/19/19 15:23,"699 Lincoln St, Los Angeles, CA 90001" +225888,AAA Batteries (4-pack),1,2.99,07/22/19 17:42,"153 Lakeview St, Seattle, WA 98101" +225889,AA Batteries (4-pack),1,3.84,07/14/19 17:02,"564 West St, Boston, MA 02215" +225890,20in Monitor,1,109.99,07/06/19 15:08,"208 Forest St, Los Angeles, CA 90001" +225891,LG Dryer,1,600.0,07/13/19 12:39,"683 Hickory St, Boston, MA 02215" +225892,Apple Airpods Headphones,1,150,07/18/19 20:32,"734 South St, Boston, MA 02215" +225893,AA Batteries (4-pack),1,3.84,07/25/19 21:10,"28 Lakeview St, San Francisco, CA 94016" +225894,Google Phone,1,600,07/18/19 18:21,"384 Dogwood St, San Francisco, CA 94016" +225894,USB-C Charging Cable,1,11.95,07/18/19 18:21,"384 Dogwood St, San Francisco, CA 94016" +225895,AAA Batteries (4-pack),2,2.99,07/18/19 01:55,"281 Cherry St, Austin, TX 73301" +225896,Lightning Charging Cable,1,14.95,07/12/19 12:04,"782 12th St, Atlanta, GA 30301" +225897,Lightning Charging Cable,1,14.95,07/16/19 13:18,"198 Meadow St, San Francisco, CA 94016" +225898,34in Ultrawide Monitor,1,379.99,07/13/19 09:32,"799 Willow St, San Francisco, CA 94016" +225899,AA Batteries (4-pack),1,3.84,07/22/19 09:21,"861 Washington St, Seattle, WA 98101" +225900,AAA Batteries (4-pack),2,2.99,07/22/19 12:52,"508 Ridge St, San Francisco, CA 94016" +225901,Lightning Charging Cable,1,14.95,07/05/19 09:50,"604 Lakeview St, Boston, MA 02215" +225902,AA Batteries (4-pack),1,3.84,07/07/19 11:16,"400 Main St, New York City, NY 10001" +225903,iPhone,1,700,07/30/19 20:51,"808 Highland St, Atlanta, GA 30301" +225904,Google Phone,1,600,07/01/19 13:05,"722 Cedar St, Los Angeles, CA 90001" +225905,USB-C Charging Cable,1,11.95,07/10/19 19:52,"486 Ridge St, Boston, MA 02215" +225906,Flatscreen TV,1,300,07/15/19 00:31,"755 6th St, Seattle, WA 98101" +225907,Wired Headphones,1,11.99,07/31/19 16:25,"6 11th St, San Francisco, CA 94016" +225908,Bose SoundSport Headphones,1,99.99,07/29/19 11:57,"451 Wilson St, Seattle, WA 98101" +225909,Bose SoundSport Headphones,1,99.99,07/21/19 23:57,"236 Park St, Boston, MA 02215" +225910,Lightning Charging Cable,1,14.95,07/26/19 21:54,"769 Main St, New York City, NY 10001" +225911,USB-C Charging Cable,1,11.95,07/21/19 11:13,"80 1st St, Seattle, WA 98101" +225912,AAA Batteries (4-pack),1,2.99,07/05/19 19:35,"218 North St, Austin, TX 73301" +225913,Lightning Charging Cable,1,14.95,07/25/19 17:47,"438 Wilson St, San Francisco, CA 94016" +225914,27in 4K Gaming Monitor,1,389.99,07/03/19 14:40,"520 Madison St, New York City, NY 10001" +225915,Bose SoundSport Headphones,1,99.99,07/22/19 10:45,"659 12th St, Dallas, TX 75001" +225916,Bose SoundSport Headphones,1,99.99,07/30/19 22:48,"204 6th St, New York City, NY 10001" +225917,AA Batteries (4-pack),1,3.84,07/13/19 14:50,"192 River St, San Francisco, CA 94016" +225918,USB-C Charging Cable,1,11.95,07/27/19 00:28,"104 Meadow St, San Francisco, CA 94016" +225919,AAA Batteries (4-pack),1,2.99,07/08/19 21:46,"895 Hickory St, San Francisco, CA 94016" +225920,USB-C Charging Cable,1,11.95,07/12/19 12:58,"805 Jefferson St, Atlanta, GA 30301" +225921,Apple Airpods Headphones,1,150,07/24/19 22:12,"555 10th St, San Francisco, CA 94016" +225922,Bose SoundSport Headphones,1,99.99,07/16/19 13:16,"393 Hickory St, Seattle, WA 98101" +225923,34in Ultrawide Monitor,1,379.99,07/13/19 22:10,"883 North St, Austin, TX 73301" +225924,Wired Headphones,1,11.99,07/25/19 12:22,"655 North St, Portland, OR 97035" +225925,27in FHD Monitor,1,149.99,07/21/19 09:00,"519 Hickory St, New York City, NY 10001" +225926,Lightning Charging Cable,1,14.95,07/22/19 04:13,"49 7th St, New York City, NY 10001" +225927,Bose SoundSport Headphones,1,99.99,07/29/19 13:16,"632 North St, New York City, NY 10001" +225928,20in Monitor,1,109.99,07/02/19 16:11,"724 Park St, San Francisco, CA 94016" +225929,Lightning Charging Cable,1,14.95,07/23/19 12:09,"278 Johnson St, New York City, NY 10001" +225930,AAA Batteries (4-pack),1,2.99,07/15/19 15:35,"939 Lincoln St, Boston, MA 02215" +225931,AA Batteries (4-pack),1,3.84,07/25/19 12:02,"750 Lakeview St, Boston, MA 02215" +225932,Wired Headphones,1,11.99,07/01/19 14:33,"972 Jackson St, San Francisco, CA 94016" +225933,AAA Batteries (4-pack),2,2.99,07/02/19 17:48,"339 Sunset St, New York City, NY 10001" +225934,27in FHD Monitor,1,149.99,07/11/19 11:06,"132 6th St, Seattle, WA 98101" +225935,Bose SoundSport Headphones,1,99.99,07/13/19 16:33,"202 6th St, San Francisco, CA 94016" +225936,Lightning Charging Cable,1,14.95,07/14/19 21:05,"17 Johnson St, Portland, OR 97035" +225937,Apple Airpods Headphones,1,150,07/04/19 08:53,"298 Hickory St, Seattle, WA 98101" +225938,iPhone,1,700,07/07/19 20:40,"885 11th St, Seattle, WA 98101" +225939,27in 4K Gaming Monitor,1,389.99,07/08/19 10:44,"647 Center St, Atlanta, GA 30301" +225940,AA Batteries (4-pack),1,3.84,07/10/19 10:09,"646 Forest St, Portland, ME 04101" +225941,Apple Airpods Headphones,1,150,07/05/19 01:22,"939 Elm St, San Francisco, CA 94016" +225942,AAA Batteries (4-pack),3,2.99,07/02/19 21:31,"528 Lake St, New York City, NY 10001" +225943,AA Batteries (4-pack),1,3.84,07/22/19 11:58,"4 Sunset St, San Francisco, CA 94016" +225944,Macbook Pro Laptop,1,1700,07/13/19 16:32,"110 Lakeview St, San Francisco, CA 94016" +225945,Macbook Pro Laptop,1,1700,07/26/19 10:47,"83 Maple St, San Francisco, CA 94016" +225946,Wired Headphones,1,11.99,07/18/19 22:15,"992 West St, Los Angeles, CA 90001" +225947,Lightning Charging Cable,1,14.95,07/04/19 09:54,"595 Center St, San Francisco, CA 94016" +225948,Apple Airpods Headphones,1,150,07/29/19 18:35,"497 Washington St, San Francisco, CA 94016" +225949,27in 4K Gaming Monitor,1,389.99,07/17/19 10:23,"639 Johnson St, New York City, NY 10001" +225950,Flatscreen TV,1,300,07/08/19 22:03,"10 1st St, Atlanta, GA 30301" +225951,Lightning Charging Cable,2,14.95,07/16/19 16:32,"649 Cedar St, San Francisco, CA 94016" +225952,Macbook Pro Laptop,1,1700,07/23/19 11:06,"304 Jefferson St, Los Angeles, CA 90001" +225953,Lightning Charging Cable,1,14.95,07/15/19 09:35,"793 Lake St, Boston, MA 02215" +225954,Wired Headphones,1,11.99,07/15/19 11:25,"542 9th St, Atlanta, GA 30301" +225955,USB-C Charging Cable,1,11.95,07/30/19 18:52,"821 Center St, Portland, OR 97035" +225956,iPhone,1,700,07/13/19 08:45,"158 Johnson St, San Francisco, CA 94016" +225957,Apple Airpods Headphones,1,150,07/15/19 17:47,"135 Washington St, Los Angeles, CA 90001" +225958,Bose SoundSport Headphones,1,99.99,07/25/19 13:38,"667 13th St, New York City, NY 10001" +225959,Lightning Charging Cable,1,14.95,07/12/19 11:21,"777 Washington St, Seattle, WA 98101" +225960,Bose SoundSport Headphones,1,99.99,07/30/19 14:35,"872 Johnson St, Atlanta, GA 30301" +225961,iPhone,1,700,07/29/19 15:30,"154 11th St, New York City, NY 10001" +225962,Flatscreen TV,1,300,07/30/19 15:50,"182 5th St, Seattle, WA 98101" +225962,Lightning Charging Cable,1,14.95,07/30/19 15:50,"182 5th St, Seattle, WA 98101" +225963,Apple Airpods Headphones,1,150,07/21/19 15:10,"873 Adams St, New York City, NY 10001" +225964,Wired Headphones,1,11.99,07/17/19 09:08,"584 Cherry St, Boston, MA 02215" +225964,34in Ultrawide Monitor,1,379.99,07/17/19 09:08,"584 Cherry St, Boston, MA 02215" +225965,AAA Batteries (4-pack),1,2.99,07/27/19 13:03,"616 Johnson St, Austin, TX 73301" +225966,USB-C Charging Cable,1,11.95,07/27/19 14:34,"366 Forest St, Boston, MA 02215" +225967,Bose SoundSport Headphones,1,99.99,07/06/19 08:16,"143 Lakeview St, Boston, MA 02215" +225968,Apple Airpods Headphones,1,150,07/31/19 07:11,"593 5th St, New York City, NY 10001" +225969,27in 4K Gaming Monitor,1,389.99,07/25/19 17:30,"174 Spruce St, Atlanta, GA 30301" +225970,27in FHD Monitor,1,149.99,07/11/19 13:13,"805 Pine St, Los Angeles, CA 90001" +225971,AA Batteries (4-pack),2,3.84,07/30/19 14:14,"145 Church St, Atlanta, GA 30301" +225972,USB-C Charging Cable,1,11.95,07/21/19 14:17,"144 Hickory St, Seattle, WA 98101" +225973,Wired Headphones,1,11.99,07/02/19 11:21,"665 North St, Austin, TX 73301" +225974,Wired Headphones,1,11.99,07/21/19 13:35,"817 Johnson St, Dallas, TX 75001" +225975,Wired Headphones,1,11.99,07/03/19 14:48,"224 Jefferson St, New York City, NY 10001" +225976,Lightning Charging Cable,1,14.95,07/18/19 17:59,"249 Hill St, Dallas, TX 75001" +225977,Macbook Pro Laptop,1,1700,07/23/19 22:00,"193 Jefferson St, Seattle, WA 98101" +225978,iPhone,1,700,07/22/19 14:51,"515 8th St, Atlanta, GA 30301" +225978,Wired Headphones,2,11.99,07/22/19 14:51,"515 8th St, Atlanta, GA 30301" +225979,Apple Airpods Headphones,1,150,07/29/19 16:07,"670 Hill St, Boston, MA 02215" +225980,Wired Headphones,1,11.99,07/12/19 21:48,"203 4th St, New York City, NY 10001" +225981,AAA Batteries (4-pack),2,2.99,07/21/19 19:30,"629 Walnut St, New York City, NY 10001" +225982,27in 4K Gaming Monitor,1,389.99,07/06/19 07:07,"189 Adams St, Boston, MA 02215" +225983,AA Batteries (4-pack),1,3.84,07/24/19 10:25,"632 Sunset St, Boston, MA 02215" +225984,27in FHD Monitor,1,149.99,07/12/19 11:48,"129 Main St, Dallas, TX 75001" +225985,Bose SoundSport Headphones,1,99.99,07/17/19 20:37,"318 Walnut St, Atlanta, GA 30301" +225986,AA Batteries (4-pack),4,3.84,07/29/19 14:38,"369 2nd St, San Francisco, CA 94016" +225987,Google Phone,1,600,07/13/19 03:09,"353 Ridge St, Seattle, WA 98101" +225988,Wired Headphones,1,11.99,07/06/19 18:06,"938 Park St, San Francisco, CA 94016" +225989,USB-C Charging Cable,1,11.95,07/27/19 07:53,"109 Johnson St, San Francisco, CA 94016" +225990,Bose SoundSport Headphones,1,99.99,07/07/19 22:08,"964 Hill St, Portland, OR 97035" +225991,Lightning Charging Cable,1,14.95,07/27/19 20:05,"654 River St, Boston, MA 02215" +225992,AAA Batteries (4-pack),1,2.99,07/07/19 17:29,"438 Jefferson St, New York City, NY 10001" +225993,AAA Batteries (4-pack),2,2.99,07/04/19 21:07,"594 Lincoln St, San Francisco, CA 94016" +225994,Lightning Charging Cable,1,14.95,07/20/19 22:17,"434 Center St, New York City, NY 10001" +225995,iPhone,1,700,07/30/19 11:51,"61 River St, Austin, TX 73301" +225996,Wired Headphones,1,11.99,07/28/19 12:37,"205 Jackson St, San Francisco, CA 94016" +225997,iPhone,1,700,07/24/19 17:14,"959 Lakeview St, Seattle, WA 98101" +225998,AA Batteries (4-pack),3,3.84,07/14/19 15:13,"164 Lakeview St, Atlanta, GA 30301" +225999,Apple Airpods Headphones,1,150,07/09/19 23:28,"590 Dogwood St, Dallas, TX 75001" +226000,USB-C Charging Cable,1,11.95,07/22/19 20:01,"650 Meadow St, Atlanta, GA 30301" +226001,AAA Batteries (4-pack),1,2.99,07/01/19 20:13,"961 11th St, Portland, OR 97035" +226002,Bose SoundSport Headphones,1,99.99,07/14/19 09:33,"574 Main St, Austin, TX 73301" +226003,iPhone,1,700,07/22/19 21:43,"856 12th St, Los Angeles, CA 90001" +226004,Bose SoundSport Headphones,1,99.99,07/07/19 14:59,"916 Jackson St, San Francisco, CA 94016" +226005,iPhone,1,700,07/23/19 22:35,"509 West St, San Francisco, CA 94016" +226006,LG Washing Machine,1,600.0,07/31/19 17:40,"833 6th St, Dallas, TX 75001" +226007,27in FHD Monitor,1,149.99,07/13/19 16:23,"225 Ridge St, San Francisco, CA 94016" +226008,Lightning Charging Cable,1,14.95,07/19/19 17:49,"104 Hill St, Austin, TX 73301" +226009,Apple Airpods Headphones,1,150,07/18/19 20:28,"611 River St, Los Angeles, CA 90001" +226010,Google Phone,1,600,07/10/19 12:03,"865 Jackson St, Los Angeles, CA 90001" +226011,Lightning Charging Cable,1,14.95,07/22/19 14:49,"663 Elm St, Boston, MA 02215" +226012,AA Batteries (4-pack),2,3.84,07/12/19 16:24,"66 Cherry St, Seattle, WA 98101" +226013,USB-C Charging Cable,1,11.95,07/23/19 18:46,"729 Adams St, New York City, NY 10001" +226014,27in 4K Gaming Monitor,1,389.99,07/01/19 22:52,"770 Sunset St, Boston, MA 02215" +226015,Lightning Charging Cable,1,14.95,07/13/19 09:27,"477 Ridge St, Atlanta, GA 30301" +226016,Apple Airpods Headphones,1,150,07/03/19 19:59,"228 Spruce St, Los Angeles, CA 90001" +226017,AAA Batteries (4-pack),3,2.99,07/17/19 09:53,"499 Dogwood St, New York City, NY 10001" +226018,Apple Airpods Headphones,1,150,07/19/19 19:56,"505 Church St, Austin, TX 73301" +226019,USB-C Charging Cable,1,11.95,07/05/19 19:11,"946 Adams St, Los Angeles, CA 90001" +226020,Lightning Charging Cable,1,14.95,07/25/19 21:32,"48 Dogwood St, Dallas, TX 75001" +226021,USB-C Charging Cable,2,11.95,07/18/19 20:17,"778 4th St, San Francisco, CA 94016" +226022,34in Ultrawide Monitor,1,379.99,07/26/19 12:48,"579 Church St, San Francisco, CA 94016" +226023,Apple Airpods Headphones,1,150,07/21/19 19:30,"279 Meadow St, Boston, MA 02215" +226024,AAA Batteries (4-pack),2,2.99,07/23/19 14:57,"217 Park St, Boston, MA 02215" +226025,AAA Batteries (4-pack),2,2.99,07/31/19 15:25,"555 5th St, Dallas, TX 75001" +226026,AAA Batteries (4-pack),2,2.99,07/14/19 13:31,"591 14th St, Los Angeles, CA 90001" +226027,20in Monitor,1,109.99,07/30/19 11:50,"24 South St, Seattle, WA 98101" +226028,iPhone,1,700,07/20/19 10:01,"335 Jefferson St, Atlanta, GA 30301" +226028,Apple Airpods Headphones,1,150,07/20/19 10:01,"335 Jefferson St, Atlanta, GA 30301" +226029,AAA Batteries (4-pack),1,2.99,07/23/19 19:13,"756 Lincoln St, San Francisco, CA 94016" +226030,Bose SoundSport Headphones,1,99.99,07/07/19 11:16,"878 Walnut St, Atlanta, GA 30301" +226031,27in FHD Monitor,1,149.99,07/09/19 12:44,"797 Walnut St, San Francisco, CA 94016" +226032,iPhone,1,700,07/25/19 13:41,"112 Dogwood St, Dallas, TX 75001" +226033,Lightning Charging Cable,1,14.95,07/21/19 17:49,"456 Sunset St, New York City, NY 10001" +226034,Wired Headphones,1,11.99,07/12/19 11:41,"573 1st St, Los Angeles, CA 90001" +226035,Bose SoundSport Headphones,1,99.99,07/27/19 18:53,"418 Forest St, Boston, MA 02215" +226036,Lightning Charging Cable,1,14.95,07/07/19 17:36,"497 7th St, New York City, NY 10001" +226037,AA Batteries (4-pack),2,3.84,07/12/19 16:45,"607 Ridge St, San Francisco, CA 94016" +226038,AA Batteries (4-pack),1,3.84,07/08/19 21:40,"816 Willow St, San Francisco, CA 94016" +226039,Lightning Charging Cable,1,14.95,07/30/19 13:20,"778 Sunset St, New York City, NY 10001" +226040,Wired Headphones,1,11.99,07/03/19 21:17,"408 Chestnut St, Portland, OR 97035" +226040,Wired Headphones,1,11.99,07/03/19 21:17,"408 Chestnut St, Portland, OR 97035" +226041,USB-C Charging Cable,1,11.95,07/04/19 08:54,"816 Forest St, New York City, NY 10001" +226042,iPhone,1,700,07/20/19 22:23,"863 South St, Los Angeles, CA 90001" +226043,Bose SoundSport Headphones,1,99.99,07/02/19 11:58,"952 Cherry St, Atlanta, GA 30301" +226044,34in Ultrawide Monitor,1,379.99,07/02/19 12:18,"761 5th St, Boston, MA 02215" +226045,34in Ultrawide Monitor,1,379.99,07/16/19 02:11,"57 5th St, Dallas, TX 75001" +226046,AA Batteries (4-pack),1,3.84,07/12/19 17:05,"800 Hickory St, San Francisco, CA 94016" +226047,34in Ultrawide Monitor,1,379.99,07/26/19 10:28,"992 5th St, Los Angeles, CA 90001" +226048,Apple Airpods Headphones,1,150,07/13/19 10:31,"945 South St, Seattle, WA 98101" +226049,ThinkPad Laptop,1,999.99,07/12/19 22:02,"709 Park St, Atlanta, GA 30301" +226050,AA Batteries (4-pack),1,3.84,07/10/19 21:45,"837 9th St, San Francisco, CA 94016" +226051,Lightning Charging Cable,1,14.95,07/27/19 18:02,"16 Wilson St, New York City, NY 10001" +226052,Lightning Charging Cable,1,14.95,07/21/19 16:05,"77 Dogwood St, Los Angeles, CA 90001" +226053,Macbook Pro Laptop,1,1700,07/16/19 23:36,"891 Lincoln St, Seattle, WA 98101" +226054,AAA Batteries (4-pack),1,2.99,07/02/19 21:10,"552 Spruce St, Seattle, WA 98101" +226055,Wired Headphones,1,11.99,07/31/19 13:21,"565 Main St, San Francisco, CA 94016" +226056,iPhone,1,700,07/27/19 11:22,"609 Hickory St, Los Angeles, CA 90001" +226056,Wired Headphones,1,11.99,07/27/19 11:22,"609 Hickory St, Los Angeles, CA 90001" +226057,Apple Airpods Headphones,1,150,07/13/19 23:51,"911 Elm St, San Francisco, CA 94016" +226058,USB-C Charging Cable,1,11.95,07/27/19 22:07,"229 Center St, Boston, MA 02215" +226059,Wired Headphones,1,11.99,07/24/19 16:39,"309 Park St, Portland, OR 97035" +226060,LG Dryer,1,600.0,07/28/19 02:58,"594 7th St, New York City, NY 10001" +226061,AAA Batteries (4-pack),1,2.99,07/15/19 21:47,"894 8th St, San Francisco, CA 94016" +226062,Apple Airpods Headphones,1,150,07/29/19 14:34,"85 11th St, Seattle, WA 98101" +226063,Bose SoundSport Headphones,1,99.99,07/08/19 18:59,"426 Walnut St, Los Angeles, CA 90001" +226063,AAA Batteries (4-pack),1,2.99,07/08/19 18:59,"426 Walnut St, Los Angeles, CA 90001" +226064,AAA Batteries (4-pack),2,2.99,07/28/19 06:36,"785 11th St, Austin, TX 73301" +226065,Wired Headphones,1,11.99,07/30/19 23:19,"538 Walnut St, Los Angeles, CA 90001" +226066,Apple Airpods Headphones,1,150,07/06/19 22:30,"220 Spruce St, Los Angeles, CA 90001" +226067,AAA Batteries (4-pack),2,2.99,07/28/19 18:55,"975 Hill St, Los Angeles, CA 90001" +226068,AAA Batteries (4-pack),1,2.99,07/03/19 20:16,"572 Spruce St, Boston, MA 02215" +226069,34in Ultrawide Monitor,1,379.99,07/07/19 18:11,"990 Johnson St, Dallas, TX 75001" +226070,Wired Headphones,1,11.99,07/07/19 14:45,"331 Elm St, Atlanta, GA 30301" +226071,27in 4K Gaming Monitor,1,389.99,07/13/19 11:22,"230 Forest St, Los Angeles, CA 90001" +226072,USB-C Charging Cable,1,11.95,07/13/19 18:10,"660 Jackson St, San Francisco, CA 94016" +226073,AA Batteries (4-pack),1,3.84,07/16/19 12:01,"956 8th St, New York City, NY 10001" +226074,Bose SoundSport Headphones,1,99.99,07/08/19 18:41,"233 Main St, Seattle, WA 98101" +226075,iPhone,1,700,07/09/19 12:06,"958 Chestnut St, San Francisco, CA 94016" +226076,AAA Batteries (4-pack),1,2.99,07/08/19 08:50,"808 Elm St, Los Angeles, CA 90001" +226077,Lightning Charging Cable,1,14.95,07/18/19 19:59,"292 Hill St, Portland, OR 97035" +226078,Lightning Charging Cable,1,14.95,07/18/19 13:47,"209 Maple St, Los Angeles, CA 90001" +226079,Wired Headphones,1,11.99,07/02/19 17:56,"1 5th St, Seattle, WA 98101" +226080,27in 4K Gaming Monitor,1,389.99,07/21/19 06:06,"924 River St, Boston, MA 02215" +226081,Apple Airpods Headphones,1,150,07/31/19 10:40,"620 Spruce St, Los Angeles, CA 90001" +226082,AAA Batteries (4-pack),2,2.99,07/27/19 22:49,"348 Walnut St, Los Angeles, CA 90001" +226083,Lightning Charging Cable,1,14.95,07/30/19 09:04,"553 West St, Los Angeles, CA 90001" +226084,AA Batteries (4-pack),2,3.84,07/26/19 16:08,"903 Wilson St, Austin, TX 73301" +226085,Wired Headphones,1,11.99,07/29/19 16:50,"710 Elm St, Los Angeles, CA 90001" +226086,USB-C Charging Cable,2,11.95,07/23/19 12:40,"271 Johnson St, New York City, NY 10001" +226087,Apple Airpods Headphones,1,150,07/04/19 10:26,"22 West St, San Francisco, CA 94016" +226088,Apple Airpods Headphones,1,150,07/12/19 08:14,"961 Maple St, Dallas, TX 75001" +226089,Bose SoundSport Headphones,1,99.99,07/03/19 09:26,"972 Forest St, Austin, TX 73301" +226090,AAA Batteries (4-pack),2,2.99,07/13/19 22:12,"137 Cedar St, San Francisco, CA 94016" +226091,34in Ultrawide Monitor,1,379.99,07/11/19 13:37,"329 Cherry St, Dallas, TX 75001" +226092,Macbook Pro Laptop,1,1700,07/16/19 14:57,"795 Park St, San Francisco, CA 94016" +226093,20in Monitor,1,109.99,07/30/19 06:30,"642 Lakeview St, New York City, NY 10001" +226094,Lightning Charging Cable,1,14.95,07/20/19 12:22,"47 Willow St, Portland, OR 97035" +226095,AAA Batteries (4-pack),1,2.99,07/23/19 13:23,"146 12th St, Los Angeles, CA 90001" +226096,Bose SoundSport Headphones,1,99.99,07/06/19 10:02,"852 West St, San Francisco, CA 94016" +226097,Flatscreen TV,1,300,07/16/19 12:40,"817 Lake St, Los Angeles, CA 90001" +226098,AA Batteries (4-pack),1,3.84,07/01/19 20:06,"853 Center St, San Francisco, CA 94016" +226099,iPhone,1,700,07/31/19 10:07,"441 North St, Boston, MA 02215" +226100,Lightning Charging Cable,1,14.95,07/22/19 19:08,"454 Dogwood St, San Francisco, CA 94016" +226101,USB-C Charging Cable,1,11.95,07/15/19 17:00,"517 Wilson St, Portland, OR 97035" +226102,AAA Batteries (4-pack),3,2.99,07/09/19 12:49,"943 Washington St, San Francisco, CA 94016" +226103,Apple Airpods Headphones,1,150,07/14/19 13:29,"449 12th St, San Francisco, CA 94016" +226104,Wired Headphones,1,11.99,07/14/19 13:56,"166 Walnut St, San Francisco, CA 94016" +226105,USB-C Charging Cable,1,11.95,07/27/19 15:41,"516 Lake St, Atlanta, GA 30301" +226106,Apple Airpods Headphones,1,150,07/06/19 13:40,"627 Walnut St, New York City, NY 10001" +226107,Apple Airpods Headphones,1,150,07/27/19 14:56,"158 Ridge St, Boston, MA 02215" +226108,AA Batteries (4-pack),2,3.84,07/29/19 19:00,"667 12th St, San Francisco, CA 94016" +226109,Lightning Charging Cable,1,14.95,07/20/19 15:52,"225 Dogwood St, San Francisco, CA 94016" +226110,Wired Headphones,1,11.99,07/07/19 13:19,"300 8th St, San Francisco, CA 94016" +226111,Vareebadd Phone,1,400,07/03/19 18:13,"770 12th St, Atlanta, GA 30301" +226112,Wired Headphones,1,11.99,07/27/19 10:30,"243 Maple St, Dallas, TX 75001" +226113,Wired Headphones,1,11.99,07/07/19 22:07,"146 Hill St, Los Angeles, CA 90001" +226114,20in Monitor,1,109.99,07/12/19 00:43,"248 Lakeview St, San Francisco, CA 94016" +226115,Wired Headphones,1,11.99,07/23/19 11:13,"210 13th St, San Francisco, CA 94016" +226116,AAA Batteries (4-pack),2,2.99,07/21/19 16:24,"923 10th St, San Francisco, CA 94016" +226117,AAA Batteries (4-pack),1,2.99,07/06/19 13:37,"214 Washington St, Boston, MA 02215" +226118,AAA Batteries (4-pack),1,2.99,07/21/19 11:39,"651 Park St, Boston, MA 02215" +226119,Wired Headphones,2,11.99,07/30/19 09:48,"811 Center St, San Francisco, CA 94016" +226120,Bose SoundSport Headphones,1,99.99,07/26/19 23:01,"452 Hickory St, Los Angeles, CA 90001" +226121,iPhone,1,700,07/28/19 17:26,"582 Johnson St, Los Angeles, CA 90001" +226122,Wired Headphones,1,11.99,07/25/19 21:10,"809 Dogwood St, San Francisco, CA 94016" +226123,AA Batteries (4-pack),1,3.84,07/23/19 12:14,"396 Adams St, Los Angeles, CA 90001" +226124,Lightning Charging Cable,1,14.95,07/08/19 19:28,"850 Chestnut St, San Francisco, CA 94016" +226125,Lightning Charging Cable,1,14.95,07/14/19 06:57,"434 North St, New York City, NY 10001" +226126,Google Phone,1,600,07/25/19 12:50,"955 West St, Seattle, WA 98101" +226127,AA Batteries (4-pack),1,3.84,07/30/19 16:22,"807 6th St, Portland, OR 97035" +226128,iPhone,1,700,07/12/19 09:46,"862 7th St, San Francisco, CA 94016" +226129,27in FHD Monitor,1,149.99,07/15/19 14:50,"247 Jefferson St, San Francisco, CA 94016" +226130,Lightning Charging Cable,1,14.95,08/01/19 01:15,"599 West St, Seattle, WA 98101" +226131,USB-C Charging Cable,1,11.95,07/02/19 14:20,"725 Johnson St, New York City, NY 10001" +226132,Apple Airpods Headphones,1,150,07/18/19 20:59,"145 Hickory St, Dallas, TX 75001" +226133,AAA Batteries (4-pack),4,2.99,07/02/19 11:03,"384 Ridge St, New York City, NY 10001" +226134,USB-C Charging Cable,1,11.95,07/18/19 14:10,"989 Madison St, Boston, MA 02215" +226135,Wired Headphones,1,11.99,07/20/19 20:43,"369 8th St, Portland, OR 97035" +226136,AA Batteries (4-pack),2,3.84,07/07/19 02:36,"793 Sunset St, Los Angeles, CA 90001" +226137,Flatscreen TV,1,300,07/22/19 12:58,"303 Maple St, San Francisco, CA 94016" +226138,AA Batteries (4-pack),3,3.84,07/20/19 10:32,"953 10th St, Atlanta, GA 30301" +226139,Lightning Charging Cable,1,14.95,07/20/19 20:52,"786 Spruce St, Seattle, WA 98101" +226140,Apple Airpods Headphones,1,150,07/05/19 08:10,"719 Willow St, Boston, MA 02215" +226141,USB-C Charging Cable,1,11.95,07/19/19 09:01,"478 Dogwood St, Dallas, TX 75001" +226142,Lightning Charging Cable,1,14.95,07/02/19 09:02,"712 Center St, Los Angeles, CA 90001" +226143,AAA Batteries (4-pack),1,2.99,07/18/19 14:06,"664 12th St, Seattle, WA 98101" +226144,AAA Batteries (4-pack),3,2.99,07/16/19 10:58,"940 Church St, Dallas, TX 75001" +226145,AA Batteries (4-pack),1,3.84,07/21/19 17:24,"192 Jefferson St, Portland, OR 97035" +226146,Macbook Pro Laptop,1,1700,07/02/19 19:36,"421 Willow St, Boston, MA 02215" +226147,AAA Batteries (4-pack),2,2.99,07/11/19 14:16,"179 North St, Atlanta, GA 30301" +226148,27in FHD Monitor,1,149.99,07/21/19 00:01,"675 Adams St, Portland, OR 97035" +226149,USB-C Charging Cable,1,11.95,07/20/19 14:07,"57 Main St, San Francisco, CA 94016" +226150,Macbook Pro Laptop,1,1700,07/24/19 20:35,"713 Lakeview St, Atlanta, GA 30301" +226151,Wired Headphones,1,11.99,07/05/19 20:43,"968 Sunset St, Seattle, WA 98101" +226152,AAA Batteries (4-pack),1,2.99,07/10/19 07:15,"176 South St, New York City, NY 10001" +226153,Wired Headphones,1,11.99,07/27/19 17:21,"596 14th St, New York City, NY 10001" +226154,Wired Headphones,1,11.99,07/19/19 10:18,"597 7th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +226155,AA Batteries (4-pack),1,3.84,07/13/19 11:27,"415 Park St, New York City, NY 10001" +226156,Apple Airpods Headphones,1,150,07/19/19 20:31,"713 Sunset St, Los Angeles, CA 90001" +226157,Lightning Charging Cable,1,14.95,07/24/19 16:05,"541 Highland St, New York City, NY 10001" +226158,Lightning Charging Cable,1,14.95,07/30/19 07:13,"19 Wilson St, San Francisco, CA 94016" +226159,Lightning Charging Cable,1,14.95,07/25/19 15:17,"993 4th St, Seattle, WA 98101" +226160,Bose SoundSport Headphones,1,99.99,07/09/19 07:56,"758 Lake St, Portland, OR 97035" +226161,Google Phone,1,600,07/14/19 12:36,"665 Meadow St, New York City, NY 10001" +226162,Apple Airpods Headphones,1,150,07/08/19 11:03,"357 Walnut St, Atlanta, GA 30301" +226163,Wired Headphones,1,11.99,07/10/19 18:48,"662 8th St, Seattle, WA 98101" +226164,34in Ultrawide Monitor,1,379.99,07/03/19 08:28,"537 Meadow St, Seattle, WA 98101" +226165,Wired Headphones,1,11.99,07/29/19 08:25,"178 2nd St, San Francisco, CA 94016" +226166,AA Batteries (4-pack),1,3.84,07/27/19 13:29,"418 Elm St, Los Angeles, CA 90001" +226167,Bose SoundSport Headphones,1,99.99,07/04/19 17:26,"433 7th St, Atlanta, GA 30301" +226168,27in 4K Gaming Monitor,1,389.99,07/25/19 19:20,"336 Meadow St, Dallas, TX 75001" +226169,Lightning Charging Cable,1,14.95,07/25/19 00:32,"949 14th St, Dallas, TX 75001" +226170,34in Ultrawide Monitor,1,379.99,07/14/19 21:20,"922 Meadow St, Los Angeles, CA 90001" +226171,USB-C Charging Cable,1,11.95,07/13/19 11:56,"741 Dogwood St, San Francisco, CA 94016" +226172,Bose SoundSport Headphones,1,99.99,07/20/19 15:10,"372 Wilson St, San Francisco, CA 94016" +226173,Lightning Charging Cable,1,14.95,07/22/19 23:27,"772 Jefferson St, Dallas, TX 75001" +226174,Apple Airpods Headphones,1,150,07/22/19 10:51,"535 Lakeview St, New York City, NY 10001" +226175,AA Batteries (4-pack),2,3.84,07/04/19 13:14,"956 Cherry St, Los Angeles, CA 90001" +226176,AA Batteries (4-pack),1,3.84,07/08/19 12:22,"983 Sunset St, San Francisco, CA 94016" +226177,Google Phone,1,600,07/03/19 15:07,"894 Cedar St, Portland, OR 97035" +226178,Lightning Charging Cable,1,14.95,07/28/19 22:46,"754 River St, Los Angeles, CA 90001" +226178,Wired Headphones,1,11.99,07/28/19 22:46,"754 River St, Los Angeles, CA 90001" +226179,AA Batteries (4-pack),1,3.84,07/09/19 11:18,"815 4th St, San Francisco, CA 94016" +226180,27in 4K Gaming Monitor,1,389.99,07/28/19 20:17,"666 Jefferson St, San Francisco, CA 94016" +226181,Wired Headphones,1,11.99,07/31/19 13:40,"143 Jefferson St, San Francisco, CA 94016" +226182,USB-C Charging Cable,1,11.95,07/24/19 07:21,"719 South St, New York City, NY 10001" +226183,27in FHD Monitor,1,149.99,07/28/19 11:14,"954 13th St, Atlanta, GA 30301" +226184,Wired Headphones,1,11.99,07/23/19 04:38,"675 Meadow St, San Francisco, CA 94016" +226185,USB-C Charging Cable,1,11.95,07/29/19 10:37,"101 Jefferson St, Los Angeles, CA 90001" +226186,34in Ultrawide Monitor,1,379.99,07/29/19 07:41,"543 9th St, Austin, TX 73301" +226187,AA Batteries (4-pack),2,3.84,07/05/19 09:24,"103 Adams St, Los Angeles, CA 90001" +226188,Google Phone,1,600,07/13/19 17:58,"569 Forest St, Portland, OR 97035" +226189,20in Monitor,1,109.99,07/27/19 10:39,"375 Washington St, San Francisco, CA 94016" +226190,Lightning Charging Cable,1,14.95,07/22/19 17:05,"811 Maple St, New York City, NY 10001" +226191,Flatscreen TV,1,300,07/19/19 17:23,"347 Hill St, Dallas, TX 75001" +226192,Wired Headphones,2,11.99,07/15/19 20:03,"163 Washington St, Seattle, WA 98101" +226193,Lightning Charging Cable,1,14.95,07/08/19 09:09,"222 6th St, New York City, NY 10001" +226194,Lightning Charging Cable,1,14.95,07/12/19 12:10,"650 Elm St, Dallas, TX 75001" +226195,Google Phone,1,600,07/19/19 01:19,"816 Main St, San Francisco, CA 94016" +226196,Wired Headphones,1,11.99,07/14/19 11:53,"46 Elm St, Los Angeles, CA 90001" +226197,Apple Airpods Headphones,1,150,07/11/19 21:17,"135 2nd St, New York City, NY 10001" +226198,Flatscreen TV,1,300,07/31/19 13:49,"925 6th St, Atlanta, GA 30301" +226199,Wired Headphones,2,11.99,07/13/19 12:15,"775 Dogwood St, Dallas, TX 75001" +226200,AA Batteries (4-pack),1,3.84,07/18/19 14:20,"202 9th St, Los Angeles, CA 90001" +226201,Wired Headphones,1,11.99,07/02/19 10:30,"941 Elm St, Austin, TX 73301" +226202,Bose SoundSport Headphones,1,99.99,07/26/19 13:21,"775 Lincoln St, Los Angeles, CA 90001" +226203,27in 4K Gaming Monitor,1,389.99,07/08/19 03:32,"725 12th St, Seattle, WA 98101" +226204,USB-C Charging Cable,1,11.95,07/21/19 10:12,"476 Dogwood St, Boston, MA 02215" +226205,Apple Airpods Headphones,1,150,07/01/19 22:02,"841 Cherry St, Los Angeles, CA 90001" +226206,Bose SoundSport Headphones,1,99.99,07/29/19 12:46,"453 4th St, Boston, MA 02215" +226207,27in 4K Gaming Monitor,1,389.99,07/14/19 21:28,"545 Walnut St, Dallas, TX 75001" +226208,AAA Batteries (4-pack),1,2.99,07/13/19 17:13,"872 South St, Boston, MA 02215" +226209,USB-C Charging Cable,1,11.95,07/17/19 08:47,"494 12th St, Seattle, WA 98101" +226210,USB-C Charging Cable,1,11.95,07/17/19 09:17,"933 12th St, Boston, MA 02215" +226211,Wired Headphones,1,11.99,07/17/19 19:38,"89 1st St, San Francisco, CA 94016" +226212,AA Batteries (4-pack),1,3.84,07/26/19 08:23,"800 Johnson St, New York City, NY 10001" +226213,Wired Headphones,1,11.99,07/31/19 01:18,"197 1st St, Boston, MA 02215" +226214,Wired Headphones,1,11.99,07/05/19 09:32,"310 Lincoln St, Austin, TX 73301" +226215,Bose SoundSport Headphones,1,99.99,07/08/19 18:43,"779 Willow St, San Francisco, CA 94016" +226216,iPhone,1,700,07/06/19 21:06,"854 8th St, Dallas, TX 75001" +226216,Lightning Charging Cable,1,14.95,07/06/19 21:06,"854 8th St, Dallas, TX 75001" +226217,Lightning Charging Cable,1,14.95,07/09/19 18:06,"606 Lakeview St, Los Angeles, CA 90001" +226218,AA Batteries (4-pack),2,3.84,07/01/19 16:14,"180 Wilson St, Los Angeles, CA 90001" +226219,20in Monitor,1,109.99,07/06/19 10:10,"127 Lakeview St, Portland, OR 97035" +226220,Lightning Charging Cable,1,14.95,07/05/19 06:35,"685 12th St, Boston, MA 02215" +226221,Wired Headphones,1,11.99,07/26/19 21:07,"543 Madison St, San Francisco, CA 94016" +226222,20in Monitor,1,109.99,07/19/19 08:56,"487 Hickory St, New York City, NY 10001" +226223,27in 4K Gaming Monitor,1,389.99,07/23/19 19:27,"646 5th St, Los Angeles, CA 90001" +226224,USB-C Charging Cable,1,11.95,07/25/19 19:46,"392 Cherry St, Portland, OR 97035" +226225,Bose SoundSport Headphones,1,99.99,07/27/19 11:39,"715 Church St, New York City, NY 10001" +226226,Apple Airpods Headphones,1,150,07/23/19 12:17,"925 Center St, San Francisco, CA 94016" +226227,iPhone,1,700,07/21/19 22:13,"733 4th St, Atlanta, GA 30301" +226228,Lightning Charging Cable,1,14.95,07/29/19 16:05,"323 West St, Seattle, WA 98101" +226229,ThinkPad Laptop,1,999.99,07/07/19 21:46,"249 7th St, Atlanta, GA 30301" +226230,Bose SoundSport Headphones,1,99.99,07/11/19 10:46,"948 Walnut St, San Francisco, CA 94016" +226231,AAA Batteries (4-pack),2,2.99,07/13/19 14:31,"505 Lincoln St, San Francisco, CA 94016" +226232,AAA Batteries (4-pack),1,2.99,07/05/19 13:29,"37 Wilson St, San Francisco, CA 94016" +226233,Apple Airpods Headphones,1,150,07/24/19 10:25,"853 West St, Boston, MA 02215" +226234,Flatscreen TV,1,300,07/09/19 17:03,"991 Park St, Austin, TX 73301" +226235,AAA Batteries (4-pack),1,2.99,07/20/19 23:59,"48 Willow St, Los Angeles, CA 90001" +226236,AAA Batteries (4-pack),1,2.99,07/27/19 18:08,"83 Highland St, Atlanta, GA 30301" +226237,AA Batteries (4-pack),3,3.84,07/14/19 12:48,"631 Willow St, Boston, MA 02215" +226238,AAA Batteries (4-pack),2,2.99,07/06/19 22:26,"76 Spruce St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +226239,Macbook Pro Laptop,1,1700,07/24/19 21:29,"277 Lincoln St, New York City, NY 10001" +226240,Apple Airpods Headphones,1,150,07/30/19 17:47,"18 West St, Seattle, WA 98101" +226241,AAA Batteries (4-pack),2,2.99,07/12/19 16:28,"811 13th St, Austin, TX 73301" +226242,Wired Headphones,1,11.99,07/15/19 13:47,"947 Walnut St, Boston, MA 02215" +226243,34in Ultrawide Monitor,1,379.99,07/07/19 23:30,"185 Washington St, Dallas, TX 75001" +226244,Wired Headphones,1,11.99,07/02/19 04:05,"786 12th St, New York City, NY 10001" +226244,AA Batteries (4-pack),1,3.84,07/02/19 04:05,"786 12th St, New York City, NY 10001" +226245,34in Ultrawide Monitor,1,379.99,07/15/19 19:20,"192 8th St, Austin, TX 73301" +226246,27in FHD Monitor,1,149.99,07/17/19 22:15,"647 Meadow St, Boston, MA 02215" +226247,27in FHD Monitor,2,149.99,07/01/19 15:51,"775 Jefferson St, Austin, TX 73301" +226248,20in Monitor,1,109.99,07/09/19 10:20,"643 Hickory St, San Francisco, CA 94016" +226249,Wired Headphones,1,11.99,07/21/19 02:23,"877 14th St, Dallas, TX 75001" +226250,Lightning Charging Cable,1,14.95,07/08/19 10:59,"946 2nd St, New York City, NY 10001" +226251,AAA Batteries (4-pack),1,2.99,07/25/19 16:48,"297 Park St, Portland, OR 97035" +226252,Wired Headphones,1,11.99,07/01/19 22:12,"784 11th St, Boston, MA 02215" +226253,Apple Airpods Headphones,1,150,07/16/19 16:08,"836 Forest St, Dallas, TX 75001" +226254,Lightning Charging Cable,1,14.95,07/08/19 14:53,"820 9th St, Seattle, WA 98101" +226255,Google Phone,1,600,07/11/19 11:17,"840 Lake St, San Francisco, CA 94016" +226256,USB-C Charging Cable,1,11.95,07/06/19 17:07,"50 Center St, Seattle, WA 98101" +226257,USB-C Charging Cable,1,11.95,07/27/19 12:33,"23 Elm St, San Francisco, CA 94016" +226258,AAA Batteries (4-pack),1,2.99,07/19/19 22:06,"11 Park St, San Francisco, CA 94016" +226259,Google Phone,1,600,07/29/19 22:53,"136 North St, New York City, NY 10001" +226259,USB-C Charging Cable,1,11.95,07/29/19 22:53,"136 North St, New York City, NY 10001" +226260,AA Batteries (4-pack),1,3.84,07/16/19 00:04,"125 Forest St, San Francisco, CA 94016" +226261,USB-C Charging Cable,1,11.95,07/27/19 11:47,"229 7th St, San Francisco, CA 94016" +226262,AA Batteries (4-pack),2,3.84,07/24/19 14:15,"263 Church St, Seattle, WA 98101" +226263,USB-C Charging Cable,1,11.95,07/04/19 20:43,"804 Lincoln St, Boston, MA 02215" +226264,27in 4K Gaming Monitor,1,389.99,07/16/19 17:39,"280 River St, Dallas, TX 75001" +226265,27in FHD Monitor,1,149.99,07/29/19 08:10,"210 North St, Los Angeles, CA 90001" +226266,AA Batteries (4-pack),1,3.84,07/06/19 15:12,"456 North St, Dallas, TX 75001" +226267,USB-C Charging Cable,1,11.95,07/24/19 20:56,"660 Cherry St, New York City, NY 10001" +226268,Lightning Charging Cable,1,14.95,07/20/19 20:52,"86 Hickory St, San Francisco, CA 94016" +226269,Apple Airpods Headphones,1,150,07/17/19 18:31,"345 Lakeview St, Seattle, WA 98101" +226270,27in FHD Monitor,1,149.99,07/23/19 12:08,"870 Spruce St, Dallas, TX 75001" +226271,USB-C Charging Cable,1,11.95,07/08/19 11:09,"949 Ridge St, Boston, MA 02215" +226272,20in Monitor,1,109.99,07/09/19 19:08,"686 Pine St, Seattle, WA 98101" +226273,Lightning Charging Cable,1,14.95,07/11/19 22:55,"430 Sunset St, New York City, NY 10001" +226274,AAA Batteries (4-pack),1,2.99,07/26/19 15:40,"379 Walnut St, Los Angeles, CA 90001" +226275,Bose SoundSport Headphones,1,99.99,07/15/19 18:39,"491 River St, New York City, NY 10001" +226276,Lightning Charging Cable,1,14.95,07/31/19 13:36,"458 Jefferson St, Boston, MA 02215" +226277,USB-C Charging Cable,1,11.95,07/25/19 21:26,"524 Sunset St, San Francisco, CA 94016" +226278,Bose SoundSport Headphones,1,99.99,07/01/19 16:36,"85 Park St, San Francisco, CA 94016" +226279,27in 4K Gaming Monitor,1,389.99,07/31/19 12:11,"470 Ridge St, Los Angeles, CA 90001" +226280,Apple Airpods Headphones,1,150,07/18/19 07:04,"334 Forest St, Atlanta, GA 30301" +226281,ThinkPad Laptop,1,999.99,07/31/19 16:46,"46 4th St, Atlanta, GA 30301" +226282,iPhone,1,700,07/27/19 22:26,"844 North St, San Francisco, CA 94016" +226283,Wired Headphones,1,11.99,07/11/19 04:34,"888 Highland St, Austin, TX 73301" +226284,Lightning Charging Cable,1,14.95,07/06/19 02:49,"896 Main St, San Francisco, CA 94016" +226285,USB-C Charging Cable,1,11.95,07/24/19 17:54,"356 Jefferson St, Portland, ME 04101" +226286,Macbook Pro Laptop,1,1700,07/16/19 13:48,"456 Hill St, San Francisco, CA 94016" +226287,iPhone,1,700,07/27/19 15:50,"569 Hickory St, San Francisco, CA 94016" +226288,Google Phone,1,600,07/27/19 14:52,"440 Cherry St, Atlanta, GA 30301" +226289,iPhone,1,700,07/08/19 14:14,"302 Wilson St, New York City, NY 10001" +226289,Lightning Charging Cable,1,14.95,07/08/19 14:14,"302 Wilson St, New York City, NY 10001" +226290,AAA Batteries (4-pack),3,2.99,07/26/19 10:06,"759 Center St, Los Angeles, CA 90001" +226291,AA Batteries (4-pack),1,3.84,07/15/19 14:40,"534 Chestnut St, Portland, ME 04101" +226292,AAA Batteries (4-pack),1,2.99,07/03/19 13:06,"202 7th St, San Francisco, CA 94016" +226293,USB-C Charging Cable,1,11.95,07/30/19 17:57,"2 Park St, Los Angeles, CA 90001" +226294,USB-C Charging Cable,1,11.95,07/19/19 12:44,"777 Center St, Los Angeles, CA 90001" +226295,ThinkPad Laptop,1,999.99,07/19/19 22:05,"80 Meadow St, Boston, MA 02215" +226296,Google Phone,1,600,07/06/19 00:18,"159 11th St, Portland, ME 04101" +226297,Vareebadd Phone,1,400,07/08/19 19:59,"965 Cedar St, New York City, NY 10001" +226298,iPhone,1,700,07/30/19 15:10,"741 Washington St, Los Angeles, CA 90001" +226299,Lightning Charging Cable,1,14.95,07/13/19 14:17,"852 Ridge St, Los Angeles, CA 90001" +226300,LG Washing Machine,1,600.0,07/27/19 18:32,"138 Jefferson St, Seattle, WA 98101" +226301,27in FHD Monitor,1,149.99,07/11/19 09:01,"354 10th St, Seattle, WA 98101" +226302,USB-C Charging Cable,1,11.95,07/06/19 19:30,"546 Elm St, Atlanta, GA 30301" +226303,USB-C Charging Cable,1,11.95,07/15/19 05:52,"449 Main St, Boston, MA 02215" +226304,Bose SoundSport Headphones,1,99.99,07/19/19 15:54,"940 8th St, San Francisco, CA 94016" +226305,Lightning Charging Cable,1,14.95,07/04/19 15:57,"215 Ridge St, Seattle, WA 98101" +226306,AA Batteries (4-pack),1,3.84,07/24/19 22:21,"499 Jefferson St, Boston, MA 02215" +226307,Wired Headphones,1,11.99,07/16/19 10:36,"391 1st St, Atlanta, GA 30301" +226308,AA Batteries (4-pack),1,3.84,07/31/19 11:12,"328 1st St, New York City, NY 10001" +226309,USB-C Charging Cable,1,11.95,07/03/19 14:03,"452 2nd St, Portland, OR 97035" +226310,AA Batteries (4-pack),2,3.84,07/31/19 19:38,"619 13th St, Boston, MA 02215" +226311,Wired Headphones,1,11.99,07/19/19 02:24,"275 2nd St, Los Angeles, CA 90001" +226312,USB-C Charging Cable,1,11.95,07/09/19 19:04,"92 Elm St, New York City, NY 10001" +226313,27in 4K Gaming Monitor,1,389.99,07/29/19 20:29,"103 North St, Boston, MA 02215" +226314,AA Batteries (4-pack),1,3.84,07/25/19 08:03,"756 Park St, San Francisco, CA 94016" +226315,Google Phone,1,600,07/25/19 22:42,"203 Main St, Los Angeles, CA 90001" +226316,Wired Headphones,1,11.99,07/26/19 08:44,"15 North St, Seattle, WA 98101" +226317,Bose SoundSport Headphones,1,99.99,07/23/19 12:34,"802 2nd St, San Francisco, CA 94016" +226317,Lightning Charging Cable,1,14.95,07/23/19 12:34,"802 2nd St, San Francisco, CA 94016" +226318,USB-C Charging Cable,2,11.95,07/07/19 12:19,"2 Lakeview St, Dallas, TX 75001" +226319,Apple Airpods Headphones,1,150,07/15/19 15:27,"225 Church St, New York City, NY 10001" +226320,Lightning Charging Cable,1,14.95,07/04/19 19:17,"29 Maple St, Portland, OR 97035" +226321,27in 4K Gaming Monitor,1,389.99,07/29/19 18:44,"126 8th St, Los Angeles, CA 90001" +226322,Lightning Charging Cable,1,14.95,07/24/19 10:11,"932 West St, Los Angeles, CA 90001" +226323,Wired Headphones,2,11.99,07/22/19 12:05,"835 1st St, San Francisco, CA 94016" +226324,USB-C Charging Cable,1,11.95,07/17/19 22:08,"24 West St, Seattle, WA 98101" +226325,Bose SoundSport Headphones,1,99.99,07/20/19 10:10,"214 Washington St, Los Angeles, CA 90001" +226326,27in FHD Monitor,1,149.99,07/30/19 00:33,"925 Church St, Portland, OR 97035" +226327,Wired Headphones,1,11.99,07/07/19 17:55,"60 Elm St, Boston, MA 02215" +226328,AAA Batteries (4-pack),1,2.99,07/25/19 12:09,"651 Maple St, Atlanta, GA 30301" +226329,USB-C Charging Cable,1,11.95,07/29/19 12:02,"486 Hickory St, Los Angeles, CA 90001" +226330,27in FHD Monitor,1,149.99,07/01/19 08:41,"61 9th St, Atlanta, GA 30301" +226331,Lightning Charging Cable,1,14.95,07/04/19 11:27,"453 Hickory St, Los Angeles, CA 90001" +226332,AAA Batteries (4-pack),3,2.99,07/03/19 11:20,"730 South St, New York City, NY 10001" +226333,27in 4K Gaming Monitor,1,389.99,07/29/19 22:28,"978 Maple St, Atlanta, GA 30301" +226334,USB-C Charging Cable,1,11.95,07/12/19 08:17,"837 Hill St, San Francisco, CA 94016" +226335,AA Batteries (4-pack),1,3.84,07/05/19 11:55,"884 10th St, Atlanta, GA 30301" +226336,Lightning Charging Cable,1,14.95,07/09/19 21:35,"154 13th St, New York City, NY 10001" +226337,Lightning Charging Cable,1,14.95,07/31/19 22:04,"57 Park St, New York City, NY 10001" +226338,Wired Headphones,1,11.99,07/18/19 20:15,"420 11th St, San Francisco, CA 94016" +226339,Vareebadd Phone,1,400,07/16/19 11:57,"313 Pine St, Boston, MA 02215" +226340,Flatscreen TV,1,300,07/26/19 07:17,"295 Chestnut St, San Francisco, CA 94016" +226341,34in Ultrawide Monitor,1,379.99,07/22/19 13:22,"271 Pine St, Seattle, WA 98101" +226342,Google Phone,1,600,07/30/19 12:25,"235 Cedar St, San Francisco, CA 94016" +226343,AAA Batteries (4-pack),1,2.99,07/21/19 12:15,"770 Jefferson St, Dallas, TX 75001" +226344,Vareebadd Phone,1,400,07/26/19 17:39,"711 Maple St, Seattle, WA 98101" +226344,USB-C Charging Cable,1,11.95,07/26/19 17:39,"711 Maple St, Seattle, WA 98101" +226345,ThinkPad Laptop,1,999.99,07/11/19 23:11,"435 1st St, New York City, NY 10001" +226346,Wired Headphones,1,11.99,07/16/19 11:59,"918 Elm St, New York City, NY 10001" +226347,Apple Airpods Headphones,1,150,07/28/19 12:02,"475 North St, New York City, NY 10001" +226348,Wired Headphones,1,11.99,07/25/19 11:02,"393 Jefferson St, Boston, MA 02215" +226349,Wired Headphones,1,11.99,07/30/19 13:15,"394 4th St, Dallas, TX 75001" +226350,Apple Airpods Headphones,1,150,07/08/19 15:15,"454 12th St, Portland, ME 04101" +226351,AAA Batteries (4-pack),1,2.99,07/26/19 18:41,"742 Washington St, Austin, TX 73301" +226352,AA Batteries (4-pack),2,3.84,07/22/19 10:09,"306 Walnut St, San Francisco, CA 94016" +226353,20in Monitor,1,109.99,07/09/19 15:12,"769 Johnson St, San Francisco, CA 94016" +226354,USB-C Charging Cable,1,11.95,07/11/19 11:04,"533 Hickory St, San Francisco, CA 94016" +226355,AAA Batteries (4-pack),4,2.99,07/25/19 15:55,"852 Johnson St, New York City, NY 10001" +226356,Bose SoundSport Headphones,1,99.99,07/21/19 10:03,"784 9th St, Los Angeles, CA 90001" +226357,Google Phone,1,600,07/03/19 13:21,"625 7th St, San Francisco, CA 94016" +226358,27in 4K Gaming Monitor,1,389.99,07/06/19 20:44,"967 13th St, Los Angeles, CA 90001" +226359,AAA Batteries (4-pack),1,2.99,07/04/19 16:47,"298 Highland St, Portland, OR 97035" +226360,Google Phone,1,600,07/16/19 22:38,"334 8th St, Dallas, TX 75001" +226361,USB-C Charging Cable,1,11.95,07/09/19 18:11,"698 Ridge St, Atlanta, GA 30301" +226362,iPhone,1,700,07/13/19 00:32,"274 Johnson St, Los Angeles, CA 90001" +226363,Bose SoundSport Headphones,1,99.99,07/09/19 17:10,"512 North St, New York City, NY 10001" +226364,Lightning Charging Cable,1,14.95,07/24/19 23:02,"980 Wilson St, New York City, NY 10001" +226365,Flatscreen TV,1,300,07/04/19 07:08,"540 Lakeview St, New York City, NY 10001" +226366,ThinkPad Laptop,1,999.99,07/28/19 15:11,"26 Jackson St, San Francisco, CA 94016" +226367,34in Ultrawide Monitor,1,379.99,07/21/19 12:14,"82 Hickory St, Boston, MA 02215" +226368,Apple Airpods Headphones,1,150,07/27/19 20:46,"575 River St, San Francisco, CA 94016" +226369,AAA Batteries (4-pack),1,2.99,07/29/19 20:17,"46 10th St, San Francisco, CA 94016" +226370,USB-C Charging Cable,1,11.95,07/10/19 16:37,"227 Lincoln St, Los Angeles, CA 90001" +226371,Wired Headphones,1,11.99,07/23/19 01:55,"301 Sunset St, San Francisco, CA 94016" +226372,34in Ultrawide Monitor,1,379.99,07/25/19 19:54,"964 11th St, Boston, MA 02215" +226373,Wired Headphones,2,11.99,07/13/19 18:32,"971 Wilson St, Austin, TX 73301" +226374,Wired Headphones,1,11.99,07/28/19 14:17,"322 Willow St, New York City, NY 10001" +226375,Bose SoundSport Headphones,1,99.99,07/17/19 07:26,"239 Hickory St, Los Angeles, CA 90001" +226376,Lightning Charging Cable,1,14.95,07/27/19 00:51,"551 Forest St, New York City, NY 10001" +226377,Lightning Charging Cable,2,14.95,07/05/19 12:54,"307 Hill St, Dallas, TX 75001" +226378,iPhone,1,700,07/26/19 13:19,"708 8th St, Portland, OR 97035" +226379,Google Phone,1,600,07/23/19 13:39,"70 Cherry St, San Francisco, CA 94016" +226380,Wired Headphones,1,11.99,07/12/19 17:52,"636 Washington St, Austin, TX 73301" +226381,Macbook Pro Laptop,1,1700,07/22/19 12:48,"121 Pine St, New York City, NY 10001" +226382,Bose SoundSport Headphones,1,99.99,07/11/19 13:51,"621 Lincoln St, New York City, NY 10001" +226383,AA Batteries (4-pack),2,3.84,07/03/19 12:48,"533 5th St, San Francisco, CA 94016" +226384,iPhone,1,700,07/05/19 04:53,"98 2nd St, Boston, MA 02215" +226385,Lightning Charging Cable,1,14.95,07/15/19 11:19,"982 Sunset St, Portland, OR 97035" +226386,AA Batteries (4-pack),1,3.84,07/27/19 20:44,"932 Spruce St, Portland, OR 97035" +226387,AA Batteries (4-pack),1,3.84,07/21/19 19:25,"344 Church St, Boston, MA 02215" +226388,AA Batteries (4-pack),1,3.84,07/24/19 22:37,"943 14th St, Austin, TX 73301" +226389,iPhone,1,700,07/14/19 17:27,"547 Washington St, San Francisco, CA 94016" +226390,AA Batteries (4-pack),1,3.84,07/21/19 14:49,"800 Elm St, Los Angeles, CA 90001" +226391,AAA Batteries (4-pack),1,2.99,07/19/19 09:59,"793 Hill St, Seattle, WA 98101" +226392,Macbook Pro Laptop,1,1700,07/20/19 12:36,"458 Highland St, San Francisco, CA 94016" +226393,Lightning Charging Cable,1,14.95,07/12/19 15:15,"271 Lakeview St, Los Angeles, CA 90001" +226394,Lightning Charging Cable,1,14.95,07/18/19 08:39,"621 Cedar St, Los Angeles, CA 90001" +226395,Bose SoundSport Headphones,1,99.99,07/04/19 11:42,"595 Church St, Portland, OR 97035" +226396,Google Phone,1,600,07/05/19 13:13,"79 Ridge St, Portland, OR 97035" +226396,Lightning Charging Cable,1,14.95,07/05/19 13:13,"79 Ridge St, Portland, OR 97035" +226397,27in FHD Monitor,1,149.99,07/31/19 15:28,"802 Church St, Los Angeles, CA 90001" +226398,Lightning Charging Cable,1,14.95,07/30/19 21:23,"341 Cedar St, Boston, MA 02215" +226399,Bose SoundSport Headphones,1,99.99,07/08/19 16:07,"373 Jackson St, Atlanta, GA 30301" +226400,AA Batteries (4-pack),2,3.84,07/06/19 12:09,"943 River St, New York City, NY 10001" +226401,iPhone,1,700,07/14/19 09:38,"468 12th St, Dallas, TX 75001" +226402,27in FHD Monitor,1,149.99,07/16/19 12:49,"42 Maple St, San Francisco, CA 94016" +226403,AA Batteries (4-pack),1,3.84,07/14/19 12:11,"131 North St, New York City, NY 10001" +226404,20in Monitor,1,109.99,07/17/19 08:13,"216 5th St, San Francisco, CA 94016" +226405,AA Batteries (4-pack),1,3.84,07/30/19 23:19,"494 Chestnut St, New York City, NY 10001" +226406,USB-C Charging Cable,1,11.95,07/11/19 21:34,"556 5th St, Boston, MA 02215" +226407,Bose SoundSport Headphones,1,99.99,07/07/19 14:38,"528 2nd St, Los Angeles, CA 90001" +226408,Wired Headphones,1,11.99,07/20/19 15:38,"804 12th St, Atlanta, GA 30301" +226409,Apple Airpods Headphones,1,150,07/17/19 17:27,"177 Dogwood St, Portland, ME 04101" +226410,Bose SoundSport Headphones,1,99.99,07/06/19 20:15,"933 Maple St, New York City, NY 10001" +226411,Lightning Charging Cable,1,14.95,07/02/19 19:32,"867 Maple St, New York City, NY 10001" +226412,Apple Airpods Headphones,1,150,07/21/19 15:42,"329 5th St, San Francisco, CA 94016" +226413,27in 4K Gaming Monitor,1,389.99,07/09/19 01:31,"449 Lake St, New York City, NY 10001" +226414,34in Ultrawide Monitor,1,379.99,07/06/19 08:06,"354 Lake St, Los Angeles, CA 90001" +226415,Apple Airpods Headphones,1,150,07/21/19 19:21,"156 8th St, Los Angeles, CA 90001" +226416,AAA Batteries (4-pack),2,2.99,07/21/19 00:27,"379 11th St, Los Angeles, CA 90001" +226417,27in 4K Gaming Monitor,1,389.99,07/18/19 23:24,"57 4th St, Dallas, TX 75001" +226418,Apple Airpods Headphones,1,150,07/22/19 13:38,"112 Cedar St, Atlanta, GA 30301" +226419,AA Batteries (4-pack),1,3.84,07/10/19 17:56,"3 Elm St, Los Angeles, CA 90001" +226420,Google Phone,1,600,07/16/19 18:07,"493 Walnut St, San Francisco, CA 94016" +226421,AAA Batteries (4-pack),1,2.99,07/02/19 15:53,"946 Chestnut St, New York City, NY 10001" +226422,Apple Airpods Headphones,1,150,07/18/19 15:08,"610 Church St, San Francisco, CA 94016" +226423,Apple Airpods Headphones,1,150,07/23/19 18:30,"806 Adams St, Boston, MA 02215" +226424,Macbook Pro Laptop,1,1700,07/29/19 13:23,"295 Pine St, San Francisco, CA 94016" +226425,USB-C Charging Cable,1,11.95,07/18/19 22:10,"632 Lakeview St, Austin, TX 73301" +226426,Bose SoundSport Headphones,1,99.99,07/17/19 11:36,"994 6th St, Atlanta, GA 30301" +226427,27in 4K Gaming Monitor,1,389.99,07/24/19 23:49,"66 Hill St, Boston, MA 02215" +,,,,, +226428,Wired Headphones,1,11.99,07/05/19 12:40,"344 12th St, San Francisco, CA 94016" +226429,AA Batteries (4-pack),1,3.84,07/03/19 08:56,"657 Park St, Boston, MA 02215" +226430,20in Monitor,1,109.99,07/22/19 15:02,"454 1st St, Dallas, TX 75001" +226431,Google Phone,1,600,07/05/19 14:30,"961 River St, Los Angeles, CA 90001" +226431,Wired Headphones,1,11.99,07/05/19 14:30,"961 River St, Los Angeles, CA 90001" +226432,USB-C Charging Cable,1,11.95,07/03/19 19:24,"267 Lincoln St, San Francisco, CA 94016" +226433,AAA Batteries (4-pack),1,2.99,07/02/19 09:47,"733 9th St, Austin, TX 73301" +226434,USB-C Charging Cable,1,11.95,07/01/19 09:41,"802 Meadow St, New York City, NY 10001" +226435,Wired Headphones,1,11.99,07/04/19 17:20,"896 Center St, San Francisco, CA 94016" +226436,27in FHD Monitor,1,149.99,07/26/19 19:08,"184 7th St, Los Angeles, CA 90001" +226437,Bose SoundSport Headphones,1,99.99,07/24/19 17:21,"636 Chestnut St, Los Angeles, CA 90001" +226438,Wired Headphones,1,11.99,07/22/19 11:27,"773 Highland St, Atlanta, GA 30301" +226439,AA Batteries (4-pack),1,3.84,07/24/19 17:41,"915 Meadow St, San Francisco, CA 94016" +226440,USB-C Charging Cable,1,11.95,07/11/19 16:54,"611 Walnut St, Los Angeles, CA 90001" +226441,AA Batteries (4-pack),1,3.84,07/31/19 11:26,"194 12th St, San Francisco, CA 94016" +226442,USB-C Charging Cable,1,11.95,07/25/19 19:24,"208 Chestnut St, New York City, NY 10001" +226443,AA Batteries (4-pack),2,3.84,07/17/19 14:08,"735 Ridge St, Dallas, TX 75001" +226444,Macbook Pro Laptop,1,1700,07/23/19 20:47,"571 South St, San Francisco, CA 94016" +226445,USB-C Charging Cable,1,11.95,07/05/19 20:36,"661 14th St, Portland, ME 04101" +226446,ThinkPad Laptop,1,999.99,07/30/19 09:09,"163 Hill St, Portland, OR 97035" +226447,USB-C Charging Cable,1,11.95,07/24/19 20:03,"917 13th St, San Francisco, CA 94016" +226448,Wired Headphones,1,11.99,07/06/19 12:04,"590 14th St, San Francisco, CA 94016" +226449,AA Batteries (4-pack),5,3.84,07/17/19 18:24,"245 Meadow St, Los Angeles, CA 90001" +226450,AAA Batteries (4-pack),1,2.99,07/29/19 11:27,"608 Lincoln St, Dallas, TX 75001" +226451,Bose SoundSport Headphones,1,99.99,07/12/19 01:56,"219 13th St, Los Angeles, CA 90001" +226452,Lightning Charging Cable,1,14.95,07/21/19 21:39,"249 4th St, Los Angeles, CA 90001" +226453,AA Batteries (4-pack),1,3.84,07/02/19 09:46,"102 4th St, San Francisco, CA 94016" +226454,Wired Headphones,1,11.99,07/22/19 06:53,"723 Church St, Los Angeles, CA 90001" +226455,Apple Airpods Headphones,1,150,07/03/19 11:57,"663 Lakeview St, New York City, NY 10001" +226456,USB-C Charging Cable,1,11.95,07/07/19 17:12,"697 West St, San Francisco, CA 94016" +226457,Lightning Charging Cable,1,14.95,07/11/19 10:15,"465 Maple St, Los Angeles, CA 90001" +226458,Lightning Charging Cable,1,14.95,07/27/19 23:34,"669 7th St, San Francisco, CA 94016" +226459,AA Batteries (4-pack),3,3.84,07/18/19 00:58,"35 Maple St, Dallas, TX 75001" +226460,Lightning Charging Cable,1,14.95,07/26/19 17:46,"987 North St, San Francisco, CA 94016" +226461,USB-C Charging Cable,1,11.95,07/14/19 22:21,"875 Wilson St, Portland, OR 97035" +226462,AA Batteries (4-pack),1,3.84,07/18/19 18:13,"922 Cherry St, Dallas, TX 75001" +226463,AAA Batteries (4-pack),1,2.99,07/15/19 13:47,"502 Spruce St, Portland, OR 97035" +226464,Vareebadd Phone,1,400,07/01/19 09:04,"73 7th St, Austin, TX 73301" +226465,Wired Headphones,1,11.99,07/20/19 10:39,"431 Church St, Dallas, TX 75001" +226466,Apple Airpods Headphones,1,150,07/18/19 18:28,"518 13th St, New York City, NY 10001" +226467,34in Ultrawide Monitor,1,379.99,07/06/19 20:26,"697 12th St, New York City, NY 10001" +226468,Wired Headphones,1,11.99,07/02/19 15:51,"152 2nd St, Boston, MA 02215" +226469,AAA Batteries (4-pack),1,2.99,07/28/19 16:05,"822 Main St, Boston, MA 02215" +226470,AA Batteries (4-pack),2,3.84,07/15/19 19:19,"410 6th St, Boston, MA 02215" +226470,Apple Airpods Headphones,1,150,07/15/19 19:19,"410 6th St, Boston, MA 02215" +226471,AAA Batteries (4-pack),2,2.99,07/04/19 18:27,"246 11th St, San Francisco, CA 94016" +226472,Bose SoundSport Headphones,1,99.99,07/04/19 13:44,"219 7th St, New York City, NY 10001" +226473,Lightning Charging Cable,1,14.95,07/01/19 08:07,"386 Jackson St, San Francisco, CA 94016" +226474,AA Batteries (4-pack),2,3.84,07/17/19 21:45,"253 Cherry St, Boston, MA 02215" +226475,AA Batteries (4-pack),1,3.84,07/20/19 14:42,"593 Madison St, Seattle, WA 98101" +226476,AA Batteries (4-pack),1,3.84,07/18/19 15:20,"127 Sunset St, Los Angeles, CA 90001" +226477,Wired Headphones,1,11.99,07/05/19 14:31,"922 North St, Atlanta, GA 30301" +226478,Lightning Charging Cable,1,14.95,07/03/19 05:41,"207 Dogwood St, New York City, NY 10001" +226479,iPhone,1,700,07/11/19 21:03,"89 Wilson St, San Francisco, CA 94016" +226480,AAA Batteries (4-pack),2,2.99,07/16/19 05:19,"412 Jackson St, San Francisco, CA 94016" +226481,Lightning Charging Cable,1,14.95,07/16/19 08:48,"242 West St, New York City, NY 10001" +226481,34in Ultrawide Monitor,1,379.99,07/16/19 08:48,"242 West St, New York City, NY 10001" +226482,USB-C Charging Cable,2,11.95,07/05/19 04:49,"114 South St, Portland, OR 97035" +226483,27in FHD Monitor,1,149.99,07/24/19 10:28,"682 West St, Dallas, TX 75001" +226484,Macbook Pro Laptop,1,1700,07/05/19 19:08,"300 Dogwood St, San Francisco, CA 94016" +226485,AAA Batteries (4-pack),1,2.99,07/21/19 15:39,"581 4th St, Dallas, TX 75001" +226486,27in 4K Gaming Monitor,1,389.99,07/15/19 12:03,"59 Lakeview St, Portland, OR 97035" +226487,iPhone,1,700,07/29/19 13:49,"517 Hickory St, Los Angeles, CA 90001" +226488,AA Batteries (4-pack),1,3.84,07/22/19 11:27,"384 Hill St, Los Angeles, CA 90001" +226489,34in Ultrawide Monitor,1,379.99,07/18/19 12:28,"305 Church St, Seattle, WA 98101" +226490,AAA Batteries (4-pack),1,2.99,07/14/19 07:04,"906 South St, New York City, NY 10001" +226491,Bose SoundSport Headphones,1,99.99,07/31/19 12:47,"585 River St, Atlanta, GA 30301" +226492,Google Phone,1,600,07/23/19 22:58,"924 River St, Austin, TX 73301" +226493,27in 4K Gaming Monitor,1,389.99,07/29/19 11:40,"791 Forest St, Austin, TX 73301" +226494,AAA Batteries (4-pack),1,2.99,07/06/19 22:20,"312 Cedar St, Los Angeles, CA 90001" +226495,Apple Airpods Headphones,1,150,07/03/19 08:36,"324 Chestnut St, Portland, OR 97035" +226496,AAA Batteries (4-pack),1,2.99,07/14/19 20:35,"330 Lake St, Dallas, TX 75001" +226497,34in Ultrawide Monitor,1,379.99,07/14/19 15:44,"354 2nd St, Boston, MA 02215" +226498,Lightning Charging Cable,4,14.95,07/27/19 20:37,"606 Ridge St, Portland, OR 97035" +226499,27in FHD Monitor,1,149.99,07/07/19 19:51,"359 Ridge St, Los Angeles, CA 90001" +226500,Bose SoundSport Headphones,1,99.99,07/13/19 20:34,"584 11th St, Atlanta, GA 30301" +226501,AA Batteries (4-pack),3,3.84,07/02/19 20:14,"676 Madison St, San Francisco, CA 94016" +226502,Wired Headphones,1,11.99,07/12/19 22:43,"323 4th St, San Francisco, CA 94016" +226503,Apple Airpods Headphones,1,150,07/08/19 20:54,"605 Cedar St, Atlanta, GA 30301" +226504,USB-C Charging Cable,1,11.95,07/29/19 10:38,"619 8th St, Los Angeles, CA 90001" +226504,AA Batteries (4-pack),1,3.84,07/29/19 10:38,"619 8th St, Los Angeles, CA 90001" +226505,Macbook Pro Laptop,1,1700,07/05/19 01:02,"678 North St, Los Angeles, CA 90001" +226506,ThinkPad Laptop,1,999.99,07/07/19 21:27,"654 2nd St, Portland, ME 04101" +226507,Google Phone,1,600,07/02/19 15:20,"892 Main St, Portland, OR 97035" +226508,20in Monitor,1,109.99,07/06/19 01:36,"590 Center St, San Francisco, CA 94016" +226509,20in Monitor,1,109.99,07/10/19 13:51,"923 Hill St, Portland, OR 97035" +226510,Bose SoundSport Headphones,1,99.99,07/11/19 15:09,"182 14th St, Seattle, WA 98101" +226511,Bose SoundSport Headphones,1,99.99,07/07/19 21:32,"561 Dogwood St, Portland, OR 97035" +226512,27in 4K Gaming Monitor,1,389.99,07/03/19 14:28,"769 Lincoln St, Austin, TX 73301" +226513,iPhone,1,700,07/05/19 15:19,"682 14th St, New York City, NY 10001" +226514,27in 4K Gaming Monitor,1,389.99,07/30/19 12:15,"991 Johnson St, Austin, TX 73301" +226515,27in 4K Gaming Monitor,1,389.99,07/31/19 15:34,"408 Johnson St, Atlanta, GA 30301" +226516,AA Batteries (4-pack),1,3.84,07/19/19 22:09,"127 11th St, Dallas, TX 75001" +226517,Lightning Charging Cable,1,14.95,07/15/19 13:51,"731 10th St, San Francisco, CA 94016" +226518,20in Monitor,1,109.99,07/28/19 14:32,"331 Hickory St, Atlanta, GA 30301" +226519,iPhone,1,700,07/01/19 07:08,"288 Highland St, San Francisco, CA 94016" +226520,AAA Batteries (4-pack),1,2.99,07/13/19 16:20,"432 Meadow St, Dallas, TX 75001" +226521,27in FHD Monitor,1,149.99,07/22/19 16:47,"611 10th St, San Francisco, CA 94016" +226522,Wired Headphones,1,11.99,07/09/19 09:51,"898 Wilson St, Los Angeles, CA 90001" +226523,Lightning Charging Cable,2,14.95,07/15/19 09:35,"669 West St, Boston, MA 02215" +226524,27in FHD Monitor,1,149.99,07/06/19 10:29,"969 Washington St, Atlanta, GA 30301" +226525,USB-C Charging Cable,1,11.95,07/02/19 16:14,"596 Hickory St, Boston, MA 02215" +226526,Lightning Charging Cable,1,14.95,07/27/19 10:51,"972 14th St, San Francisco, CA 94016" +226527,AAA Batteries (4-pack),2,2.99,07/29/19 23:20,"541 6th St, San Francisco, CA 94016" +226528,Lightning Charging Cable,1,14.95,07/22/19 18:25,"474 13th St, San Francisco, CA 94016" +226529,AA Batteries (4-pack),2,3.84,07/29/19 20:47,"497 Pine St, Atlanta, GA 30301" +226530,AAA Batteries (4-pack),1,2.99,07/18/19 19:55,"793 Hickory St, San Francisco, CA 94016" +226531,USB-C Charging Cable,1,11.95,07/26/19 20:56,"801 Johnson St, Seattle, WA 98101" +226532,Lightning Charging Cable,1,14.95,07/17/19 21:56,"289 South St, Dallas, TX 75001" +226533,Apple Airpods Headphones,1,150,07/25/19 12:19,"617 14th St, San Francisco, CA 94016" +226534,USB-C Charging Cable,1,11.95,07/19/19 18:44,"673 8th St, San Francisco, CA 94016" +226535,Lightning Charging Cable,2,14.95,07/08/19 17:58,"93 Washington St, New York City, NY 10001" +226536,AA Batteries (4-pack),2,3.84,07/04/19 10:31,"536 6th St, Los Angeles, CA 90001" +226537,Bose SoundSport Headphones,1,99.99,07/09/19 14:01,"809 Adams St, New York City, NY 10001" +226538,Macbook Pro Laptop,1,1700,07/15/19 14:01,"171 5th St, San Francisco, CA 94016" +226539,Bose SoundSport Headphones,1,99.99,07/03/19 11:39,"630 Hill St, Los Angeles, CA 90001" +226540,27in FHD Monitor,1,149.99,07/12/19 23:37,"798 Cherry St, Los Angeles, CA 90001" +226541,USB-C Charging Cable,1,11.95,07/12/19 09:16,"814 Elm St, Los Angeles, CA 90001" +226542,Lightning Charging Cable,1,14.95,07/21/19 15:47,"507 5th St, Boston, MA 02215" +226543,Wired Headphones,1,11.99,07/27/19 12:57,"257 Madison St, Austin, TX 73301" +226544,Wired Headphones,1,11.99,07/29/19 20:18,"430 Lakeview St, Seattle, WA 98101" +226545,AA Batteries (4-pack),1,3.84,07/11/19 09:20,"181 Ridge St, Atlanta, GA 30301" +226546,20in Monitor,2,109.99,07/20/19 16:40,"442 Pine St, Austin, TX 73301" +226547,ThinkPad Laptop,1,999.99,07/23/19 01:28,"584 Spruce St, New York City, NY 10001" +226548,USB-C Charging Cable,1,11.95,07/01/19 10:39,"521 Highland St, New York City, NY 10001" +226549,Wired Headphones,1,11.99,07/11/19 10:05,"177 Ridge St, Seattle, WA 98101" +226550,Lightning Charging Cable,1,14.95,07/25/19 08:40,"726 12th St, New York City, NY 10001" +226551,27in 4K Gaming Monitor,1,389.99,07/12/19 07:37,"448 Washington St, Los Angeles, CA 90001" +226552,27in FHD Monitor,1,149.99,07/21/19 07:41,"515 Johnson St, San Francisco, CA 94016" +226553,AA Batteries (4-pack),1,3.84,07/09/19 15:52,"53 Willow St, Boston, MA 02215" +226554,Wired Headphones,2,11.99,07/06/19 19:01,"933 Park St, Portland, OR 97035" +226555,iPhone,1,700,07/17/19 22:49,"353 South St, San Francisco, CA 94016" +226556,Bose SoundSport Headphones,1,99.99,07/03/19 00:48,"892 1st St, San Francisco, CA 94016" +226557,Bose SoundSport Headphones,1,99.99,07/27/19 19:15,"572 Highland St, Portland, ME 04101" +226558,ThinkPad Laptop,1,999.99,07/28/19 13:18,"423 Main St, Los Angeles, CA 90001" +226559,AA Batteries (4-pack),1,3.84,07/25/19 19:18,"564 Meadow St, Los Angeles, CA 90001" +226560,Wired Headphones,1,11.99,07/14/19 09:06,"431 14th St, San Francisco, CA 94016" +226561,20in Monitor,1,109.99,07/25/19 11:33,"522 Elm St, Atlanta, GA 30301" +226562,USB-C Charging Cable,1,11.95,07/30/19 23:05,"749 Forest St, Portland, OR 97035" +226563,Lightning Charging Cable,1,14.95,07/24/19 21:07,"362 Ridge St, Portland, OR 97035" +226564,iPhone,1,700,07/01/19 08:46,"514 Washington St, Dallas, TX 75001" +226564,Lightning Charging Cable,2,14.95,07/01/19 08:46,"514 Washington St, Dallas, TX 75001" +226565,AA Batteries (4-pack),2,3.84,07/17/19 12:52,"100 Chestnut St, Dallas, TX 75001" +226566,Lightning Charging Cable,1,14.95,07/03/19 00:06,"325 South St, San Francisco, CA 94016" +226567,AAA Batteries (4-pack),1,2.99,07/08/19 19:56,"587 Maple St, Boston, MA 02215" +226568,27in 4K Gaming Monitor,1,389.99,07/03/19 09:57,"947 Maple St, New York City, NY 10001" +226569,Apple Airpods Headphones,1,150,07/19/19 20:45,"126 9th St, Boston, MA 02215" +226570,AAA Batteries (4-pack),2,2.99,07/02/19 12:43,"758 7th St, San Francisco, CA 94016" +226571,AAA Batteries (4-pack),1,2.99,07/01/19 10:25,"867 14th St, Boston, MA 02215" +226572,27in FHD Monitor,1,149.99,07/26/19 20:12,"602 Walnut St, Atlanta, GA 30301" +226573,Wired Headphones,1,11.99,07/10/19 12:09,"785 Dogwood St, New York City, NY 10001" +226574,ThinkPad Laptop,1,999.99,07/01/19 20:12,"275 Willow St, New York City, NY 10001" +226575,Apple Airpods Headphones,1,150,07/24/19 14:53,"126 5th St, San Francisco, CA 94016" +226576,Bose SoundSport Headphones,1,99.99,07/08/19 21:07,"267 River St, Atlanta, GA 30301" +226577,Wired Headphones,1,11.99,07/25/19 20:27,"628 Cherry St, Portland, OR 97035" +226578,ThinkPad Laptop,1,999.99,07/14/19 11:25,"978 Madison St, Los Angeles, CA 90001" +226579,Vareebadd Phone,1,400,07/16/19 14:33,"986 6th St, Dallas, TX 75001" +226579,Wired Headphones,1,11.99,07/16/19 14:33,"986 6th St, Dallas, TX 75001" +226580,Wired Headphones,1,11.99,07/17/19 16:47,"983 Highland St, Portland, ME 04101" +226581,20in Monitor,1,109.99,07/04/19 21:54,"319 Highland St, Boston, MA 02215" +226582,AA Batteries (4-pack),1,3.84,07/03/19 01:48,"24 Cedar St, San Francisco, CA 94016" +226583,27in FHD Monitor,1,149.99,07/21/19 01:08,"77 Chestnut St, Boston, MA 02215" +226584,27in 4K Gaming Monitor,1,389.99,07/31/19 21:26,"28 Johnson St, Portland, OR 97035" +226585,Wired Headphones,1,11.99,07/03/19 15:10,"958 9th St, Seattle, WA 98101" +226586,Apple Airpods Headphones,1,150,07/24/19 23:34,"968 Cedar St, San Francisco, CA 94016" +226587,27in FHD Monitor,1,149.99,07/25/19 23:21,"941 Hickory St, Boston, MA 02215" +226588,iPhone,1,700,07/30/19 12:07,"209 Wilson St, Atlanta, GA 30301" +226589,AAA Batteries (4-pack),2,2.99,07/31/19 16:53,"237 Maple St, Los Angeles, CA 90001" +226590,34in Ultrawide Monitor,1,379.99,07/24/19 12:00,"753 North St, Portland, OR 97035" +226591,34in Ultrawide Monitor,1,379.99,07/14/19 19:25,"866 7th St, San Francisco, CA 94016" +226592,34in Ultrawide Monitor,1,379.99,07/23/19 18:56,"592 Main St, San Francisco, CA 94016" +226592,ThinkPad Laptop,1,999.99,07/23/19 18:56,"592 Main St, San Francisco, CA 94016" +226593,ThinkPad Laptop,1,999.99,07/05/19 09:15,"118 Pine St, San Francisco, CA 94016" +226594,USB-C Charging Cable,1,11.95,07/23/19 21:43,"750 Wilson St, Los Angeles, CA 90001" +226594,Apple Airpods Headphones,1,150,07/23/19 21:43,"750 Wilson St, Los Angeles, CA 90001" +226595,Flatscreen TV,1,300,07/06/19 16:09,"281 10th St, San Francisco, CA 94016" +226596,Lightning Charging Cable,1,14.95,07/19/19 15:07,"689 Jackson St, San Francisco, CA 94016" +226597,USB-C Charging Cable,1,11.95,07/23/19 07:25,"505 13th St, Boston, MA 02215" +226598,iPhone,1,700,07/24/19 19:59,"16 Center St, San Francisco, CA 94016" +226598,Lightning Charging Cable,1,14.95,07/24/19 19:59,"16 Center St, San Francisco, CA 94016" +226599,USB-C Charging Cable,1,11.95,07/21/19 15:56,"876 Dogwood St, New York City, NY 10001" +226600,Apple Airpods Headphones,1,150,07/20/19 08:43,"433 Meadow St, New York City, NY 10001" +226601,AAA Batteries (4-pack),1,2.99,07/28/19 18:41,"201 8th St, Atlanta, GA 30301" +226602,AAA Batteries (4-pack),1,2.99,07/12/19 10:31,"400 12th St, Seattle, WA 98101" +226603,Macbook Pro Laptop,1,1700,07/01/19 20:42,"564 Jackson St, Los Angeles, CA 90001" +226603,AAA Batteries (4-pack),3,2.99,07/01/19 20:42,"564 Jackson St, Los Angeles, CA 90001" +226604,iPhone,1,700,07/29/19 20:07,"914 Meadow St, New York City, NY 10001" +226605,Apple Airpods Headphones,1,150,07/04/19 01:59,"429 Jackson St, Boston, MA 02215" +226606,USB-C Charging Cable,1,11.95,07/03/19 20:30,"617 8th St, New York City, NY 10001" +226607,Flatscreen TV,1,300,07/20/19 21:11,"213 Highland St, Los Angeles, CA 90001" +226608,Apple Airpods Headphones,1,150,07/24/19 10:43,"799 River St, San Francisco, CA 94016" +226609,Apple Airpods Headphones,1,150,07/02/19 12:02,"787 Cedar St, Dallas, TX 75001" +226610,20in Monitor,1,109.99,07/28/19 18:56,"770 11th St, San Francisco, CA 94016" +226611,USB-C Charging Cable,2,11.95,07/31/19 12:25,"580 9th St, San Francisco, CA 94016" +226612,iPhone,1,700,07/26/19 18:51,"675 Lincoln St, San Francisco, CA 94016" +226613,Wired Headphones,1,11.99,07/31/19 09:34,"328 Wilson St, San Francisco, CA 94016" +226614,Lightning Charging Cable,1,14.95,07/19/19 11:31,"458 Adams St, Los Angeles, CA 90001" +226615,Wired Headphones,1,11.99,07/14/19 21:58,"394 Main St, San Francisco, CA 94016" +226616,Bose SoundSport Headphones,1,99.99,07/07/19 10:32,"549 Main St, Los Angeles, CA 90001" +226617,Wired Headphones,1,11.99,07/10/19 21:05,"464 Johnson St, Portland, OR 97035" +226618,27in 4K Gaming Monitor,1,389.99,07/28/19 20:59,"447 Maple St, Austin, TX 73301" +226619,Wired Headphones,1,11.99,07/29/19 16:25,"719 6th St, New York City, NY 10001" +226620,Lightning Charging Cable,1,14.95,07/14/19 12:53,"480 South St, San Francisco, CA 94016" +226621,Macbook Pro Laptop,1,1700,07/28/19 07:27,"215 6th St, San Francisco, CA 94016" +226622,AA Batteries (4-pack),2,3.84,07/19/19 19:19,"776 West St, Seattle, WA 98101" +226623,27in FHD Monitor,1,149.99,07/03/19 09:59,"743 Johnson St, Seattle, WA 98101" +226624,Macbook Pro Laptop,1,1700,07/13/19 11:23,"279 Highland St, Seattle, WA 98101" +226625,AAA Batteries (4-pack),1,2.99,07/15/19 20:20,"40 Willow St, Atlanta, GA 30301" +226626,Wired Headphones,1,11.99,07/01/19 17:49,"921 13th St, San Francisco, CA 94016" +226627,Google Phone,1,600,07/03/19 18:57,"418 2nd St, Seattle, WA 98101" +226628,Lightning Charging Cable,1,14.95,07/20/19 18:20,"643 11th St, Austin, TX 73301" +226629,AAA Batteries (4-pack),2,2.99,07/10/19 07:37,"555 North St, Portland, OR 97035" +226630,Macbook Pro Laptop,1,1700,07/30/19 04:31,"683 Wilson St, New York City, NY 10001" +226631,Lightning Charging Cable,1,14.95,07/07/19 15:20,"240 Wilson St, Los Angeles, CA 90001" +226632,AAA Batteries (4-pack),1,2.99,07/03/19 15:07,"130 West St, Boston, MA 02215" +226633,iPhone,1,700,07/21/19 19:33,"811 1st St, San Francisco, CA 94016" +226634,Wired Headphones,1,11.99,07/21/19 19:43,"119 Johnson St, Portland, OR 97035" +226635,34in Ultrawide Monitor,1,379.99,07/28/19 07:50,"328 Sunset St, San Francisco, CA 94016" +226636,USB-C Charging Cable,1,11.95,07/09/19 13:03,"866 Chestnut St, Austin, TX 73301" +226637,27in FHD Monitor,1,149.99,07/13/19 21:19,"847 13th St, Boston, MA 02215" +226638,Lightning Charging Cable,1,14.95,07/14/19 13:37,"359 Cedar St, San Francisco, CA 94016" +226639,20in Monitor,1,109.99,07/03/19 16:58,"439 Cedar St, San Francisco, CA 94016" +226640,AA Batteries (4-pack),1,3.84,07/20/19 18:33,"100 1st St, San Francisco, CA 94016" +226641,AAA Batteries (4-pack),1,2.99,07/05/19 14:07,"767 4th St, San Francisco, CA 94016" +226642,ThinkPad Laptop,1,999.99,07/12/19 13:12,"119 4th St, San Francisco, CA 94016" +226643,Lightning Charging Cable,1,14.95,07/21/19 07:36,"488 North St, Austin, TX 73301" +226644,AA Batteries (4-pack),1,3.84,07/24/19 14:14,"905 11th St, Atlanta, GA 30301" +226645,Wired Headphones,1,11.99,07/22/19 10:31,"838 Chestnut St, Atlanta, GA 30301" +226646,Bose SoundSport Headphones,1,99.99,07/07/19 17:51,"637 Main St, New York City, NY 10001" +226647,AAA Batteries (4-pack),2,2.99,07/23/19 17:14,"149 Pine St, Los Angeles, CA 90001" +226648,ThinkPad Laptop,1,999.99,07/06/19 08:09,"892 Forest St, Boston, MA 02215" +226649,Apple Airpods Headphones,1,150,07/17/19 17:59,"411 River St, Boston, MA 02215" +226650,34in Ultrawide Monitor,1,379.99,07/05/19 18:23,"63 Meadow St, San Francisco, CA 94016" +226651,USB-C Charging Cable,1,11.95,07/02/19 14:23,"708 Pine St, Portland, OR 97035" +226652,USB-C Charging Cable,1,11.95,07/11/19 22:45,"344 Jackson St, Los Angeles, CA 90001" +226653,27in FHD Monitor,1,149.99,07/28/19 21:17,"806 Chestnut St, Seattle, WA 98101" +226654,USB-C Charging Cable,1,11.95,07/28/19 19:06,"62 River St, San Francisco, CA 94016" +226655,Bose SoundSport Headphones,1,99.99,07/19/19 09:48,"971 Willow St, New York City, NY 10001" +226656,Flatscreen TV,1,300,07/04/19 17:28,"866 South St, Boston, MA 02215" +226657,Bose SoundSport Headphones,1,99.99,07/02/19 22:29,"824 4th St, Austin, TX 73301" +226658,AAA Batteries (4-pack),1,2.99,07/18/19 11:22,"945 Wilson St, New York City, NY 10001" +226659,AAA Batteries (4-pack),2,2.99,07/04/19 11:35,"969 12th St, Atlanta, GA 30301" +226660,iPhone,1,700,07/18/19 00:15,"265 Church St, San Francisco, CA 94016" +226660,Lightning Charging Cable,1,14.95,07/18/19 00:15,"265 Church St, San Francisco, CA 94016" +226660,Wired Headphones,1,11.99,07/18/19 00:15,"265 Church St, San Francisco, CA 94016" +226661,iPhone,1,700,07/04/19 19:09,"634 Madison St, San Francisco, CA 94016" +226662,Wired Headphones,1,11.99,07/05/19 23:07,"13 Park St, San Francisco, CA 94016" +226663,AA Batteries (4-pack),1,3.84,07/14/19 16:48,"284 Elm St, Portland, OR 97035" +226664,Bose SoundSport Headphones,1,99.99,07/30/19 06:49,"596 Hickory St, New York City, NY 10001" +226665,Flatscreen TV,1,300,07/20/19 05:31,"732 Main St, New York City, NY 10001" +226666,Wired Headphones,1,11.99,07/14/19 20:38,"50 Dogwood St, Los Angeles, CA 90001" +226667,Macbook Pro Laptop,1,1700,07/29/19 18:39,"666 Cherry St, Los Angeles, CA 90001" +226668,AA Batteries (4-pack),1,3.84,07/07/19 16:49,"69 Jefferson St, San Francisco, CA 94016" +226669,USB-C Charging Cable,1,11.95,07/23/19 13:10,"72 Hill St, Dallas, TX 75001" +226670,Wired Headphones,1,11.99,07/23/19 06:56,"346 Hickory St, Seattle, WA 98101" +226671,AA Batteries (4-pack),1,3.84,07/15/19 11:11,"465 Dogwood St, Los Angeles, CA 90001" +226672,AAA Batteries (4-pack),2,2.99,07/24/19 20:20,"85 5th St, Dallas, TX 75001" +226673,AAA Batteries (4-pack),3,2.99,07/16/19 17:28,"360 4th St, New York City, NY 10001" +226674,LG Dryer,1,600.0,07/05/19 11:22,"418 West St, Boston, MA 02215" +226675,34in Ultrawide Monitor,1,379.99,07/09/19 13:09,"739 8th St, Dallas, TX 75001" +226676,Bose SoundSport Headphones,1,99.99,07/25/19 22:24,"736 Forest St, Los Angeles, CA 90001" +226677,Apple Airpods Headphones,1,150,07/13/19 12:38,"737 7th St, New York City, NY 10001" +226678,Apple Airpods Headphones,1,150,07/09/19 23:35,"175 Main St, San Francisco, CA 94016" +226679,USB-C Charging Cable,1,11.95,07/29/19 08:43,"959 14th St, Los Angeles, CA 90001" +226680,27in 4K Gaming Monitor,1,389.99,07/21/19 21:44,"571 West St, New York City, NY 10001" +226681,AAA Batteries (4-pack),1,2.99,07/21/19 17:16,"882 Meadow St, San Francisco, CA 94016" +226682,AAA Batteries (4-pack),1,2.99,07/19/19 17:47,"452 Main St, Los Angeles, CA 90001" +226683,Lightning Charging Cable,1,14.95,07/09/19 08:04,"983 Cherry St, Boston, MA 02215" +226684,AA Batteries (4-pack),1,3.84,07/09/19 08:31,"240 14th St, San Francisco, CA 94016" +226685,Lightning Charging Cable,1,14.95,07/16/19 21:54,"836 Cherry St, Austin, TX 73301" +226686,Apple Airpods Headphones,1,150,07/30/19 20:58,"434 Maple St, New York City, NY 10001" +226687,USB-C Charging Cable,1,11.95,07/28/19 13:13,"906 Jefferson St, Atlanta, GA 30301" +226688,AA Batteries (4-pack),1,3.84,07/20/19 16:23,"216 11th St, Los Angeles, CA 90001" +226689,USB-C Charging Cable,1,11.95,07/10/19 20:37,"480 Sunset St, Atlanta, GA 30301" +226690,USB-C Charging Cable,1,11.95,07/01/19 21:11,"274 Willow St, Atlanta, GA 30301" +226691,Wired Headphones,2,11.99,07/15/19 19:22,"227 Maple St, San Francisco, CA 94016" +226692,Wired Headphones,2,11.99,07/30/19 13:28,"71 13th St, Atlanta, GA 30301" +226693,Apple Airpods Headphones,1,150,07/20/19 11:19,"122 Lakeview St, Boston, MA 02215" +226694,Apple Airpods Headphones,1,150,07/14/19 18:44,"314 Hill St, San Francisco, CA 94016" +226695,Macbook Pro Laptop,1,1700,07/05/19 13:45,"880 Walnut St, San Francisco, CA 94016" +226696,AA Batteries (4-pack),1,3.84,07/05/19 17:34,"408 9th St, Los Angeles, CA 90001" +226697,Wired Headphones,1,11.99,07/10/19 10:04,"485 6th St, New York City, NY 10001" +226698,ThinkPad Laptop,1,999.99,07/25/19 14:09,"313 Chestnut St, Los Angeles, CA 90001" +226699,Wired Headphones,4,11.99,07/22/19 20:22,"311 13th St, San Francisco, CA 94016" +226700,Lightning Charging Cable,1,14.95,07/23/19 13:32,"533 10th St, Los Angeles, CA 90001" +226701,Wired Headphones,1,11.99,07/02/19 12:23,"716 12th St, Austin, TX 73301" +226702,AAA Batteries (4-pack),2,2.99,07/18/19 19:43,"472 Spruce St, New York City, NY 10001" +226703,AA Batteries (4-pack),1,3.84,07/29/19 13:42,"386 Forest St, Atlanta, GA 30301" +226704,USB-C Charging Cable,1,11.95,07/20/19 09:19,"956 12th St, San Francisco, CA 94016" +226705,Wired Headphones,1,11.99,07/31/19 20:21,"935 Wilson St, San Francisco, CA 94016" +226706,iPhone,1,700,07/27/19 09:47,"355 Wilson St, Atlanta, GA 30301" +226707,Apple Airpods Headphones,1,150,07/06/19 10:26,"145 11th St, New York City, NY 10001" +226708,iPhone,1,700,07/22/19 19:20,"964 Lakeview St, Dallas, TX 75001" +226709,AA Batteries (4-pack),1,3.84,07/04/19 13:39,"443 Ridge St, Seattle, WA 98101" +226710,Wired Headphones,1,11.99,07/19/19 13:29,"153 Forest St, Atlanta, GA 30301" +226711,27in 4K Gaming Monitor,1,389.99,07/14/19 01:57,"973 Highland St, San Francisco, CA 94016" +226712,Apple Airpods Headphones,1,150,07/02/19 12:37,"275 Spruce St, Dallas, TX 75001" +226713,Wired Headphones,1,11.99,07/25/19 06:06,"852 Washington St, Dallas, TX 75001" +226714,iPhone,1,700,07/07/19 22:22,"482 13th St, San Francisco, CA 94016" +226714,Lightning Charging Cable,1,14.95,07/07/19 22:22,"482 13th St, San Francisco, CA 94016" +226715,Vareebadd Phone,1,400,07/30/19 14:32,"396 13th St, Dallas, TX 75001" +226716,iPhone,1,700,07/29/19 18:53,"293 Highland St, Austin, TX 73301" +226717,Lightning Charging Cable,1,14.95,07/22/19 09:42,"767 12th St, Portland, OR 97035" +226718,Wired Headphones,1,11.99,07/26/19 19:43,"928 Cherry St, Atlanta, GA 30301" +226719,AA Batteries (4-pack),1,3.84,07/19/19 19:57,"900 Willow St, Austin, TX 73301" +226720,AA Batteries (4-pack),1,3.84,07/04/19 19:23,"555 Cedar St, Seattle, WA 98101" +226721,AAA Batteries (4-pack),1,2.99,07/01/19 15:20,"758 Lakeview St, Los Angeles, CA 90001" +226722,Bose SoundSport Headphones,1,99.99,07/17/19 17:28,"882 Chestnut St, Austin, TX 73301" +226723,USB-C Charging Cable,1,11.95,07/15/19 13:54,"280 Elm St, Los Angeles, CA 90001" +226724,AA Batteries (4-pack),1,3.84,07/26/19 16:23,"764 Chestnut St, Dallas, TX 75001" +226725,AA Batteries (4-pack),2,3.84,07/03/19 06:14,"700 Ridge St, New York City, NY 10001" +226726,Lightning Charging Cable,1,14.95,07/10/19 13:25,"224 Chestnut St, Dallas, TX 75001" +226727,Wired Headphones,1,11.99,07/14/19 17:34,"109 1st St, San Francisco, CA 94016" +226728,27in FHD Monitor,1,149.99,07/20/19 14:55,"769 Cedar St, Portland, OR 97035" +226729,AA Batteries (4-pack),2,3.84,07/02/19 13:20,"606 West St, Seattle, WA 98101" +226730,AA Batteries (4-pack),4,3.84,07/26/19 12:33,"620 Hickory St, San Francisco, CA 94016" +226731,AAA Batteries (4-pack),2,2.99,07/27/19 20:19,"705 Park St, Dallas, TX 75001" +226732,AAA Batteries (4-pack),1,2.99,07/05/19 22:29,"412 Washington St, San Francisco, CA 94016" +226733,USB-C Charging Cable,1,11.95,07/18/19 19:38,"810 Sunset St, San Francisco, CA 94016" +226734,Lightning Charging Cable,1,14.95,07/28/19 13:56,"456 Washington St, Boston, MA 02215" +226735,27in FHD Monitor,1,149.99,07/15/19 12:38,"937 Cedar St, Dallas, TX 75001" +226736,AAA Batteries (4-pack),1,2.99,07/16/19 19:16,"949 11th St, Seattle, WA 98101" +226737,Wired Headphones,1,11.99,07/16/19 22:49,"40 Willow St, Seattle, WA 98101" +226738,Lightning Charging Cable,1,14.95,07/10/19 14:00,"49 Sunset St, New York City, NY 10001" +226739,USB-C Charging Cable,1,11.95,07/17/19 20:25,"514 Dogwood St, Los Angeles, CA 90001" +226740,USB-C Charging Cable,1,11.95,07/03/19 17:30,"18 9th St, Portland, OR 97035" +226741,AA Batteries (4-pack),1,3.84,07/09/19 17:37,"359 Hickory St, Los Angeles, CA 90001" +226742,Wired Headphones,1,11.99,07/01/19 07:52,"627 Cherry St, San Francisco, CA 94016" +226743,Macbook Pro Laptop,1,1700,07/13/19 11:04,"452 Center St, Los Angeles, CA 90001" +226744,USB-C Charging Cable,1,11.95,07/01/19 11:47,"989 7th St, Portland, OR 97035" +226745,AA Batteries (4-pack),1,3.84,07/13/19 09:26,"209 River St, Los Angeles, CA 90001" +226746,USB-C Charging Cable,1,11.95,07/16/19 13:25,"177 Church St, Los Angeles, CA 90001" +226747,AAA Batteries (4-pack),1,2.99,07/17/19 15:32,"407 Forest St, Dallas, TX 75001" +226748,USB-C Charging Cable,1,11.95,07/16/19 11:57,"340 Lake St, Portland, OR 97035" +226749,Bose SoundSport Headphones,1,99.99,07/29/19 14:55,"899 12th St, Los Angeles, CA 90001" +226750,34in Ultrawide Monitor,1,379.99,07/28/19 10:03,"416 Spruce St, San Francisco, CA 94016" +226751,iPhone,1,700,07/20/19 15:55,"986 Center St, Los Angeles, CA 90001" +226752,Lightning Charging Cable,2,14.95,07/09/19 15:31,"985 Church St, Portland, OR 97035" +226753,Bose SoundSport Headphones,1,99.99,07/26/19 21:57,"303 9th St, New York City, NY 10001" +226754,Wired Headphones,1,11.99,07/05/19 10:37,"948 Lincoln St, Dallas, TX 75001" +226755,Flatscreen TV,1,300,07/10/19 20:38,"863 Meadow St, Portland, ME 04101" +226756,AA Batteries (4-pack),1,3.84,07/21/19 08:33,"885 8th St, New York City, NY 10001" +226757,USB-C Charging Cable,1,11.95,07/18/19 22:07,"906 Hill St, Boston, MA 02215" +226758,Flatscreen TV,1,300,07/28/19 05:27,"480 8th St, Los Angeles, CA 90001" +226758,Lightning Charging Cable,1,14.95,07/28/19 05:27,"480 8th St, Los Angeles, CA 90001" +226759,USB-C Charging Cable,1,11.95,07/12/19 12:24,"341 West St, Portland, OR 97035" +226760,Wired Headphones,1,11.99,07/05/19 21:47,"631 6th St, New York City, NY 10001" +226761,34in Ultrawide Monitor,1,379.99,07/02/19 21:48,"894 Main St, New York City, NY 10001" +226762,USB-C Charging Cable,1,11.95,07/07/19 11:08,"230 Jackson St, San Francisco, CA 94016" +226763,USB-C Charging Cable,1,11.95,07/18/19 21:47,"14 Wilson St, Los Angeles, CA 90001" +226764,Lightning Charging Cable,1,14.95,07/24/19 13:44,"991 Dogwood St, Los Angeles, CA 90001" +226765,AA Batteries (4-pack),1,3.84,07/16/19 09:44,"973 Madison St, Austin, TX 73301" +226766,Google Phone,1,600,07/05/19 12:33,"173 Ridge St, Atlanta, GA 30301" +226767,USB-C Charging Cable,1,11.95,07/08/19 20:25,"30 River St, Boston, MA 02215" +226768,Wired Headphones,1,11.99,07/22/19 23:27,"84 Madison St, San Francisco, CA 94016" +226769,AA Batteries (4-pack),2,3.84,07/06/19 20:31,"874 Spruce St, Atlanta, GA 30301" +226769,USB-C Charging Cable,2,11.95,07/06/19 20:31,"874 Spruce St, Atlanta, GA 30301" +226770,AAA Batteries (4-pack),1,2.99,07/08/19 08:03,"686 Cherry St, San Francisco, CA 94016" +226771,Apple Airpods Headphones,1,150,07/18/19 15:37,"992 Adams St, Seattle, WA 98101" +226772,AA Batteries (4-pack),3,3.84,07/15/19 12:32,"130 Sunset St, Los Angeles, CA 90001" +226773,Macbook Pro Laptop,1,1700,07/19/19 10:43,"93 Willow St, Boston, MA 02215" +226774,USB-C Charging Cable,1,11.95,07/26/19 03:45,"565 Hickory St, San Francisco, CA 94016" +226775,USB-C Charging Cable,1,11.95,07/06/19 10:40,"367 Forest St, San Francisco, CA 94016" +226776,Bose SoundSport Headphones,1,99.99,07/24/19 10:30,"38 8th St, Boston, MA 02215" +226777,Flatscreen TV,1,300,07/17/19 22:53,"853 Cedar St, Seattle, WA 98101" +226778,34in Ultrawide Monitor,1,379.99,07/10/19 17:20,"504 Walnut St, Portland, OR 97035" +226779,iPhone,1,700,07/06/19 15:23,"11 Meadow St, Boston, MA 02215" +226780,Lightning Charging Cable,1,14.95,07/15/19 12:43,"731 Johnson St, San Francisco, CA 94016" +226781,Wired Headphones,1,11.99,07/29/19 18:50,"562 North St, New York City, NY 10001" +,,,,, +226782,AAA Batteries (4-pack),2,2.99,07/10/19 09:05,"281 2nd St, Seattle, WA 98101" +226782,USB-C Charging Cable,1,11.95,07/10/19 09:05,"281 2nd St, Seattle, WA 98101" +226783,Lightning Charging Cable,1,14.95,07/15/19 18:12,"72 Lincoln St, San Francisco, CA 94016" +226784,iPhone,1,700,07/17/19 13:23,"847 Meadow St, Atlanta, GA 30301" +226784,Lightning Charging Cable,1,14.95,07/17/19 13:23,"847 Meadow St, Atlanta, GA 30301" +226785,ThinkPad Laptop,1,999.99,07/16/19 19:47,"463 Church St, New York City, NY 10001" +226786,Vareebadd Phone,1,400,07/29/19 09:59,"369 4th St, San Francisco, CA 94016" +226787,USB-C Charging Cable,1,11.95,07/17/19 23:39,"789 Hill St, Atlanta, GA 30301" +226788,Lightning Charging Cable,1,14.95,07/02/19 18:34,"662 West St, Dallas, TX 75001" +226789,USB-C Charging Cable,1,11.95,07/10/19 19:24,"615 Lake St, San Francisco, CA 94016" +226790,Lightning Charging Cable,1,14.95,07/23/19 10:12,"258 Chestnut St, San Francisco, CA 94016" +226791,27in FHD Monitor,1,149.99,07/28/19 13:28,"932 Cherry St, New York City, NY 10001" +226792,AAA Batteries (4-pack),1,2.99,07/31/19 12:54,"120 11th St, New York City, NY 10001" +226793,AAA Batteries (4-pack),1,2.99,07/21/19 16:59,"416 12th St, San Francisco, CA 94016" +226794,Lightning Charging Cable,1,14.95,07/19/19 14:43,"109 10th St, Portland, ME 04101" +226795,USB-C Charging Cable,1,11.95,07/01/19 18:48,"330 Center St, Atlanta, GA 30301" +226796,Apple Airpods Headphones,1,150,07/12/19 00:12,"993 6th St, Seattle, WA 98101" +226797,USB-C Charging Cable,1,11.95,07/06/19 19:39,"294 4th St, San Francisco, CA 94016" +226798,AA Batteries (4-pack),2,3.84,07/15/19 05:32,"787 Church St, Los Angeles, CA 90001" +226799,AAA Batteries (4-pack),1,2.99,07/22/19 15:22,"367 2nd St, Boston, MA 02215" +226800,Flatscreen TV,1,300,07/06/19 23:11,"16 11th St, New York City, NY 10001" +226801,Bose SoundSport Headphones,1,99.99,07/13/19 22:23,"755 River St, Austin, TX 73301" +226802,Apple Airpods Headphones,1,150,07/31/19 18:35,"943 10th St, Atlanta, GA 30301" +226803,AA Batteries (4-pack),1,3.84,07/06/19 16:44,"540 Dogwood St, Austin, TX 73301" +226804,AA Batteries (4-pack),1,3.84,07/22/19 15:08,"788 Maple St, San Francisco, CA 94016" +226805,AAA Batteries (4-pack),1,2.99,07/02/19 14:02,"921 North St, New York City, NY 10001" +226806,Flatscreen TV,1,300,07/03/19 21:55,"902 Hickory St, Dallas, TX 75001" +226807,ThinkPad Laptop,1,999.99,07/27/19 19:32,"839 Chestnut St, Dallas, TX 75001" +226808,Lightning Charging Cable,1,14.95,07/25/19 09:42,"193 Madison St, Boston, MA 02215" +226809,AA Batteries (4-pack),1,3.84,07/04/19 21:48,"637 1st St, San Francisco, CA 94016" +226810,Apple Airpods Headphones,1,150,07/02/19 14:42,"709 West St, Seattle, WA 98101" +226811,Lightning Charging Cable,1,14.95,07/13/19 13:30,"450 Pine St, San Francisco, CA 94016" +226812,34in Ultrawide Monitor,1,379.99,07/25/19 08:40,"294 5th St, Los Angeles, CA 90001" +226813,27in FHD Monitor,1,149.99,07/26/19 13:52,"991 8th St, Dallas, TX 75001" +226814,LG Washing Machine,1,600.0,07/11/19 09:13,"969 Park St, San Francisco, CA 94016" +226815,AAA Batteries (4-pack),1,2.99,07/28/19 07:59,"444 Main St, Los Angeles, CA 90001" +226816,Lightning Charging Cable,1,14.95,07/16/19 12:11,"612 Ridge St, New York City, NY 10001" +226817,Wired Headphones,1,11.99,07/06/19 20:15,"537 Madison St, Los Angeles, CA 90001" +226818,Apple Airpods Headphones,1,150,07/26/19 00:19,"936 Main St, Los Angeles, CA 90001" +226819,AAA Batteries (4-pack),1,2.99,07/26/19 08:50,"271 River St, New York City, NY 10001" +226820,Wired Headphones,1,11.99,07/21/19 17:38,"599 Elm St, Atlanta, GA 30301" +226821,Apple Airpods Headphones,1,150,07/03/19 15:06,"694 4th St, Atlanta, GA 30301" +226822,Wired Headphones,1,11.99,07/14/19 20:25,"2 Jackson St, Austin, TX 73301" +226823,Flatscreen TV,1,300,07/06/19 16:35,"5 5th St, Dallas, TX 75001" +226824,27in FHD Monitor,1,149.99,07/16/19 14:25,"413 Hickory St, Los Angeles, CA 90001" +226825,Apple Airpods Headphones,1,150,07/16/19 11:15,"867 Highland St, Dallas, TX 75001" +226826,AA Batteries (4-pack),2,3.84,07/01/19 20:55,"583 Church St, Boston, MA 02215" +226827,27in 4K Gaming Monitor,1,389.99,07/30/19 17:16,"949 Lakeview St, San Francisco, CA 94016" +226828,Wired Headphones,1,11.99,07/09/19 10:41,"912 South St, Atlanta, GA 30301" +226829,Bose SoundSport Headphones,1,99.99,07/17/19 21:58,"382 Lincoln St, New York City, NY 10001" +226830,USB-C Charging Cable,1,11.95,07/29/19 14:24,"810 2nd St, Portland, OR 97035" +226831,AAA Batteries (4-pack),4,2.99,07/23/19 20:51,"331 River St, Dallas, TX 75001" +226832,AA Batteries (4-pack),2,3.84,07/14/19 14:25,"92 Cherry St, Atlanta, GA 30301" +226833,USB-C Charging Cable,1,11.95,07/11/19 13:17,"48 Hill St, Dallas, TX 75001" +226834,USB-C Charging Cable,2,11.95,07/02/19 17:44,"303 Church St, Portland, OR 97035" +226835,Lightning Charging Cable,1,14.95,07/24/19 14:19,"417 1st St, San Francisco, CA 94016" +226836,USB-C Charging Cable,1,11.95,07/18/19 09:58,"146 1st St, New York City, NY 10001" +226837,ThinkPad Laptop,1,999.99,07/02/19 21:14,"664 Lincoln St, Portland, OR 97035" +226838,Lightning Charging Cable,1,14.95,07/28/19 10:41,"362 5th St, New York City, NY 10001" +226839,AAA Batteries (4-pack),2,2.99,07/21/19 15:57,"125 Cherry St, Dallas, TX 75001" +226840,Macbook Pro Laptop,1,1700,07/18/19 20:02,"7 Hickory St, Boston, MA 02215" +226841,34in Ultrawide Monitor,1,379.99,07/29/19 13:24,"933 10th St, Boston, MA 02215" +226842,AAA Batteries (4-pack),2,2.99,07/08/19 12:35,"701 Center St, San Francisco, CA 94016" +226843,USB-C Charging Cable,1,11.95,07/17/19 16:52,"27 8th St, New York City, NY 10001" +226844,27in FHD Monitor,1,149.99,07/02/19 08:45,"809 Elm St, Seattle, WA 98101" +226845,USB-C Charging Cable,1,11.95,07/08/19 19:27,"138 Hill St, Atlanta, GA 30301" +226846,USB-C Charging Cable,1,11.95,07/22/19 23:02,"650 West St, Seattle, WA 98101" +226847,Wired Headphones,1,11.99,07/11/19 21:05,"397 Lincoln St, San Francisco, CA 94016" +226848,27in 4K Gaming Monitor,1,389.99,07/22/19 13:52,"749 Main St, San Francisco, CA 94016" +226849,Lightning Charging Cable,1,14.95,07/05/19 10:36,"437 Park St, Atlanta, GA 30301" +226850,AAA Batteries (4-pack),1,2.99,07/02/19 13:12,"190 Johnson St, Portland, OR 97035" +226851,27in FHD Monitor,1,149.99,07/01/19 19:31,"742 Adams St, San Francisco, CA 94016" +226852,Google Phone,1,600,07/01/19 14:57,"7 Center St, Los Angeles, CA 90001" +226853,USB-C Charging Cable,1,11.95,07/10/19 23:47,"600 Adams St, San Francisco, CA 94016" +226854,ThinkPad Laptop,1,999.99,07/07/19 01:19,"21 Forest St, New York City, NY 10001" +226855,27in 4K Gaming Monitor,1,389.99,07/15/19 22:13,"157 6th St, Portland, ME 04101" +226856,Wired Headphones,1,11.99,07/29/19 07:40,"631 7th St, Los Angeles, CA 90001" +226857,AA Batteries (4-pack),1,3.84,07/07/19 11:41,"488 Forest St, Dallas, TX 75001" +226858,AAA Batteries (4-pack),1,2.99,07/10/19 11:32,"45 7th St, San Francisco, CA 94016" +226859,27in 4K Gaming Monitor,1,389.99,07/10/19 12:25,"559 Highland St, San Francisco, CA 94016" +226860,Wired Headphones,1,11.99,07/26/19 15:31,"337 South St, Dallas, TX 75001" +226861,USB-C Charging Cable,1,11.95,07/01/19 07:50,"515 Park St, Portland, OR 97035" +226862,USB-C Charging Cable,1,11.95,07/20/19 10:03,"724 Walnut St, New York City, NY 10001" +226863,AAA Batteries (4-pack),1,2.99,07/23/19 15:49,"379 West St, New York City, NY 10001" +226864,USB-C Charging Cable,1,11.95,07/19/19 14:14,"73 Lakeview St, Dallas, TX 75001" +226865,AAA Batteries (4-pack),1,2.99,07/17/19 12:12,"137 Johnson St, Dallas, TX 75001" +226866,Lightning Charging Cable,1,14.95,07/16/19 23:02,"719 Meadow St, San Francisco, CA 94016" +226867,Vareebadd Phone,1,400,07/30/19 13:33,"568 12th St, New York City, NY 10001" +226868,Lightning Charging Cable,1,14.95,07/12/19 08:15,"319 5th St, Boston, MA 02215" +226869,34in Ultrawide Monitor,1,379.99,07/28/19 17:32,"313 Madison St, Seattle, WA 98101" +226870,Lightning Charging Cable,1,14.95,07/04/19 14:09,"239 14th St, San Francisco, CA 94016" +226870,AA Batteries (4-pack),1,3.84,07/04/19 14:09,"239 14th St, San Francisco, CA 94016" +226871,Flatscreen TV,1,300,07/07/19 19:52,"419 River St, Atlanta, GA 30301" +226872,Flatscreen TV,1,300,07/10/19 20:16,"187 2nd St, Los Angeles, CA 90001" +226873,AAA Batteries (4-pack),1,2.99,07/28/19 22:11,"808 Hickory St, Boston, MA 02215" +226874,Lightning Charging Cable,1,14.95,07/03/19 19:59,"733 Lake St, Los Angeles, CA 90001" +226875,Bose SoundSport Headphones,1,99.99,07/09/19 16:48,"51 North St, New York City, NY 10001" +226876,USB-C Charging Cable,1,11.95,07/29/19 00:51,"56 5th St, San Francisco, CA 94016" +226877,AA Batteries (4-pack),2,3.84,07/24/19 11:25,"545 5th St, San Francisco, CA 94016" +226878,USB-C Charging Cable,2,11.95,07/21/19 20:29,"373 Hickory St, Dallas, TX 75001" +226879,AAA Batteries (4-pack),1,2.99,07/25/19 10:38,"66 Johnson St, New York City, NY 10001" +226880,Wired Headphones,1,11.99,07/13/19 15:52,"289 10th St, Los Angeles, CA 90001" +226881,AA Batteries (4-pack),1,3.84,07/24/19 16:18,"841 River St, Austin, TX 73301" +226882,Apple Airpods Headphones,1,150,07/23/19 10:35,"769 Dogwood St, San Francisco, CA 94016" +226883,AA Batteries (4-pack),1,3.84,07/20/19 13:39,"290 Ridge St, Seattle, WA 98101" +226884,USB-C Charging Cable,1,11.95,07/05/19 08:47,"116 Meadow St, Los Angeles, CA 90001" +226885,27in 4K Gaming Monitor,1,389.99,07/28/19 18:20,"100 Meadow St, New York City, NY 10001" +226886,USB-C Charging Cable,1,11.95,07/18/19 11:39,"268 Cherry St, Seattle, WA 98101" +226887,AA Batteries (4-pack),1,3.84,07/19/19 19:22,"769 Wilson St, San Francisco, CA 94016" +226888,Flatscreen TV,1,300,07/23/19 14:50,"868 Forest St, Atlanta, GA 30301" +226889,USB-C Charging Cable,1,11.95,07/27/19 12:25,"142 Main St, Los Angeles, CA 90001" +226890,AAA Batteries (4-pack),1,2.99,07/12/19 20:57,"750 Walnut St, San Francisco, CA 94016" +226891,AAA Batteries (4-pack),3,2.99,07/18/19 13:48,"528 Cherry St, Dallas, TX 75001" +226892,Wired Headphones,1,11.99,07/30/19 11:24,"668 Cedar St, San Francisco, CA 94016" +226893,iPhone,1,700,07/17/19 03:28,"587 Jackson St, Atlanta, GA 30301" +226893,Vareebadd Phone,1,400,07/17/19 03:28,"587 Jackson St, Atlanta, GA 30301" +226894,USB-C Charging Cable,1,11.95,07/23/19 16:15,"270 12th St, Seattle, WA 98101" +226895,AA Batteries (4-pack),2,3.84,07/29/19 07:57,"455 7th St, San Francisco, CA 94016" +226896,USB-C Charging Cable,1,11.95,07/19/19 09:44,"803 13th St, San Francisco, CA 94016" +226897,Bose SoundSport Headphones,1,99.99,07/23/19 19:16,"317 10th St, Boston, MA 02215" +226898,AAA Batteries (4-pack),1,2.99,07/06/19 18:48,"622 Church St, Los Angeles, CA 90001" +226899,Apple Airpods Headphones,1,150,07/13/19 21:28,"552 Walnut St, San Francisco, CA 94016" +226900,Wired Headphones,1,11.99,07/15/19 14:10,"170 Pine St, New York City, NY 10001" +226901,Lightning Charging Cable,1,14.95,07/11/19 12:50,"636 4th St, San Francisco, CA 94016" +226902,USB-C Charging Cable,1,11.95,07/22/19 22:21,"716 Hill St, New York City, NY 10001" +226903,Bose SoundSport Headphones,1,99.99,07/31/19 11:37,"419 4th St, San Francisco, CA 94016" +226904,iPhone,1,700,07/18/19 11:27,"988 Pine St, San Francisco, CA 94016" +226905,Lightning Charging Cable,1,14.95,07/30/19 18:35,"62 Spruce St, Los Angeles, CA 90001" +226905,USB-C Charging Cable,1,11.95,07/30/19 18:35,"62 Spruce St, Los Angeles, CA 90001" +226906,Wired Headphones,1,11.99,07/05/19 23:40,"897 Washington St, Boston, MA 02215" +226907,Apple Airpods Headphones,1,150,07/10/19 21:16,"867 Sunset St, Los Angeles, CA 90001" +226908,34in Ultrawide Monitor,1,379.99,07/19/19 21:38,"191 Church St, New York City, NY 10001" +226909,Wired Headphones,1,11.99,07/14/19 21:11,"458 Pine St, New York City, NY 10001" +226910,USB-C Charging Cable,2,11.95,07/19/19 14:53,"910 Johnson St, Seattle, WA 98101" +226911,Wired Headphones,1,11.99,07/10/19 12:03,"60 10th St, Los Angeles, CA 90001" +226912,USB-C Charging Cable,1,11.95,07/27/19 17:54,"412 Hickory St, Portland, OR 97035" +226913,USB-C Charging Cable,2,11.95,07/15/19 09:06,"448 Chestnut St, San Francisco, CA 94016" +226914,27in FHD Monitor,1,149.99,07/15/19 16:29,"350 Jefferson St, San Francisco, CA 94016" +226915,Wired Headphones,1,11.99,07/11/19 19:52,"104 Wilson St, Dallas, TX 75001" +226916,Wired Headphones,1,11.99,07/24/19 17:13,"208 Wilson St, San Francisco, CA 94016" +226917,Apple Airpods Headphones,1,150,07/28/19 11:27,"428 Pine St, San Francisco, CA 94016" +226918,AA Batteries (4-pack),2,3.84,07/14/19 14:04,"730 8th St, Los Angeles, CA 90001" +226919,USB-C Charging Cable,2,11.95,07/30/19 16:24,"397 Center St, New York City, NY 10001" +226920,Apple Airpods Headphones,1,150,07/11/19 09:46,"24 2nd St, Los Angeles, CA 90001" +226921,Vareebadd Phone,1,400,07/06/19 12:14,"291 1st St, Los Angeles, CA 90001" +226922,AA Batteries (4-pack),1,3.84,07/04/19 12:00,"904 Pine St, Seattle, WA 98101" +226923,Bose SoundSport Headphones,1,99.99,07/07/19 19:09,"396 South St, New York City, NY 10001" +226924,Lightning Charging Cable,1,14.95,07/05/19 08:50,"418 Hill St, Seattle, WA 98101" +226925,Wired Headphones,1,11.99,07/04/19 08:02,"211 North St, Los Angeles, CA 90001" +226926,iPhone,1,700,07/25/19 15:47,"912 Maple St, New York City, NY 10001" +226926,Wired Headphones,1,11.99,07/25/19 15:47,"912 Maple St, New York City, NY 10001" +226927,USB-C Charging Cable,3,11.95,07/16/19 23:43,"343 Main St, San Francisco, CA 94016" +226928,AAA Batteries (4-pack),2,2.99,07/17/19 13:09,"775 South St, Los Angeles, CA 90001" +226929,USB-C Charging Cable,2,11.95,07/25/19 15:38,"536 14th St, San Francisco, CA 94016" +226930,Bose SoundSport Headphones,1,99.99,07/21/19 16:51,"56 Center St, Portland, OR 97035" +226931,Lightning Charging Cable,1,14.95,07/14/19 23:03,"6 River St, San Francisco, CA 94016" +226932,USB-C Charging Cable,1,11.95,07/06/19 18:54,"660 Cherry St, Atlanta, GA 30301" +226933,Lightning Charging Cable,1,14.95,07/02/19 07:04,"91 River St, Boston, MA 02215" +226934,Google Phone,1,600,07/24/19 10:51,"425 7th St, Dallas, TX 75001" +226935,Wired Headphones,2,11.99,07/27/19 13:16,"57 Meadow St, Los Angeles, CA 90001" +226936,USB-C Charging Cable,1,11.95,07/18/19 19:25,"409 Lake St, Dallas, TX 75001" +226937,USB-C Charging Cable,1,11.95,07/27/19 19:07,"927 Hickory St, San Francisco, CA 94016" +226938,27in FHD Monitor,1,149.99,07/27/19 19:27,"688 Johnson St, Atlanta, GA 30301" +226939,27in 4K Gaming Monitor,1,389.99,07/09/19 07:47,"866 Hill St, Boston, MA 02215" +226940,Lightning Charging Cable,1,14.95,07/19/19 07:54,"718 Wilson St, Boston, MA 02215" +226941,Google Phone,1,600,07/29/19 11:55,"377 9th St, San Francisco, CA 94016" +226942,27in FHD Monitor,1,149.99,07/19/19 20:21,"227 Lake St, Los Angeles, CA 90001" +226943,AAA Batteries (4-pack),1,2.99,07/27/19 17:14,"606 7th St, Austin, TX 73301" +226944,Macbook Pro Laptop,1,1700,07/09/19 11:29,"551 Hickory St, Seattle, WA 98101" +226945,USB-C Charging Cable,1,11.95,07/02/19 11:17,"396 2nd St, Austin, TX 73301" +226946,Google Phone,1,600,07/04/19 18:49,"774 11th St, Atlanta, GA 30301" +226947,Lightning Charging Cable,1,14.95,07/23/19 22:35,"76 Meadow St, Atlanta, GA 30301" +226948,AAA Batteries (4-pack),1,2.99,07/06/19 20:38,"621 Church St, New York City, NY 10001" +226949,Google Phone,1,600,07/03/19 16:32,"258 11th St, Los Angeles, CA 90001" +226950,iPhone,1,700,07/20/19 15:47,"90 Maple St, Boston, MA 02215" +226950,Wired Headphones,2,11.99,07/20/19 15:47,"90 Maple St, Boston, MA 02215" +226951,Lightning Charging Cable,1,14.95,07/09/19 17:05,"542 River St, Seattle, WA 98101" +226952,USB-C Charging Cable,2,11.95,07/18/19 10:57,"248 Lakeview St, San Francisco, CA 94016" +226953,34in Ultrawide Monitor,1,379.99,07/08/19 12:13,"819 River St, Atlanta, GA 30301" +226954,20in Monitor,1,109.99,07/29/19 22:07,"545 Cherry St, New York City, NY 10001" +226955,Lightning Charging Cable,1,14.95,07/18/19 18:18,"235 Cedar St, New York City, NY 10001" +226956,Google Phone,1,600,07/20/19 14:27,"166 North St, San Francisco, CA 94016" +226957,USB-C Charging Cable,1,11.95,07/15/19 11:36,"133 Park St, Boston, MA 02215" +226958,Wired Headphones,1,11.99,07/05/19 16:50,"554 1st St, Dallas, TX 75001" +226959,USB-C Charging Cable,1,11.95,07/30/19 09:45,"164 Dogwood St, Portland, OR 97035" +226960,Macbook Pro Laptop,1,1700,07/01/19 18:22,"142 Walnut St, San Francisco, CA 94016" +226961,Apple Airpods Headphones,1,150,07/27/19 22:10,"938 4th St, Los Angeles, CA 90001" +226962,Wired Headphones,1,11.99,07/16/19 13:41,"773 Meadow St, San Francisco, CA 94016" +226963,Lightning Charging Cable,1,14.95,07/13/19 14:39,"542 13th St, San Francisco, CA 94016" +226964,Lightning Charging Cable,1,14.95,07/07/19 11:43,"140 12th St, San Francisco, CA 94016" +226965,AAA Batteries (4-pack),1,2.99,07/29/19 09:03,"913 13th St, Los Angeles, CA 90001" +226966,Apple Airpods Headphones,1,150,07/08/19 07:43,"30 Jefferson St, Los Angeles, CA 90001" +226967,ThinkPad Laptop,1,999.99,07/30/19 19:50,"489 River St, San Francisco, CA 94016" +226968,USB-C Charging Cable,1,11.95,07/19/19 22:30,"517 Sunset St, Boston, MA 02215" +226969,AA Batteries (4-pack),1,3.84,07/05/19 19:39,"208 Park St, New York City, NY 10001" +226970,Flatscreen TV,1,300,07/20/19 09:33,"802 Ridge St, Portland, OR 97035" +226971,Lightning Charging Cable,1,14.95,07/29/19 16:39,"188 Meadow St, San Francisco, CA 94016" +226972,AA Batteries (4-pack),2,3.84,07/23/19 21:03,"708 13th St, San Francisco, CA 94016" +226973,Google Phone,1,600,07/06/19 21:33,"407 North St, Atlanta, GA 30301" +226974,AA Batteries (4-pack),1,3.84,07/28/19 17:18,"841 2nd St, New York City, NY 10001" +226975,27in 4K Gaming Monitor,1,389.99,07/25/19 17:42,"655 11th St, San Francisco, CA 94016" +226976,Lightning Charging Cable,2,14.95,07/23/19 19:59,"229 7th St, Seattle, WA 98101" +226977,34in Ultrawide Monitor,1,379.99,07/10/19 11:43,"198 Lakeview St, Portland, ME 04101" +226978,AA Batteries (4-pack),1,3.84,07/22/19 15:28,"550 South St, San Francisco, CA 94016" +226979,AAA Batteries (4-pack),1,2.99,07/11/19 02:48,"942 4th St, Dallas, TX 75001" +226980,AAA Batteries (4-pack),1,2.99,07/12/19 07:54,"977 Johnson St, Dallas, TX 75001" +226981,27in 4K Gaming Monitor,1,389.99,07/19/19 16:28,"523 Sunset St, Boston, MA 02215" +226982,27in FHD Monitor,1,149.99,07/12/19 13:30,"383 Hill St, New York City, NY 10001" +226983,Google Phone,1,600,07/20/19 10:33,"352 Cedar St, New York City, NY 10001" +226984,USB-C Charging Cable,1,11.95,07/22/19 01:41,"613 Willow St, Atlanta, GA 30301" +226985,USB-C Charging Cable,1,11.95,07/30/19 17:37,"812 10th St, Los Angeles, CA 90001" +226986,iPhone,1,700,07/23/19 00:09,"628 Lakeview St, Seattle, WA 98101" +226986,Lightning Charging Cable,1,14.95,07/23/19 00:09,"628 Lakeview St, Seattle, WA 98101" +226987,Bose SoundSport Headphones,1,99.99,07/17/19 13:28,"662 West St, San Francisco, CA 94016" +226988,USB-C Charging Cable,1,11.95,07/26/19 12:17,"939 6th St, Austin, TX 73301" +226989,AAA Batteries (4-pack),1,2.99,07/16/19 00:33,"184 Spruce St, Atlanta, GA 30301" +226990,AAA Batteries (4-pack),3,2.99,07/23/19 19:07,"510 Lincoln St, San Francisco, CA 94016" +226991,Lightning Charging Cable,1,14.95,07/23/19 07:57,"723 7th St, Dallas, TX 75001" +226992,Google Phone,1,600,07/03/19 01:09,"550 Spruce St, New York City, NY 10001" +226993,20in Monitor,1,109.99,07/31/19 16:43,"645 Lincoln St, New York City, NY 10001" +226994,AA Batteries (4-pack),2,3.84,07/18/19 22:27,"628 Willow St, Seattle, WA 98101" +226995,USB-C Charging Cable,1,11.95,07/06/19 19:42,"637 Meadow St, New York City, NY 10001" +226996,Lightning Charging Cable,1,14.95,07/29/19 06:28,"58 7th St, Dallas, TX 75001" +226997,Wired Headphones,1,11.99,07/18/19 16:32,"135 Lakeview St, San Francisco, CA 94016" +226998,Bose SoundSport Headphones,1,99.99,07/20/19 08:22,"605 Elm St, Los Angeles, CA 90001" +226999,Wired Headphones,1,11.99,07/05/19 09:54,"385 River St, San Francisco, CA 94016" +227000,AA Batteries (4-pack),3,3.84,07/12/19 22:28,"829 12th St, Los Angeles, CA 90001" +227001,Google Phone,1,600,07/09/19 16:12,"190 7th St, Austin, TX 73301" +227002,AAA Batteries (4-pack),3,2.99,07/01/19 10:29,"116 2nd St, Dallas, TX 75001" +227003,Wired Headphones,1,11.99,07/22/19 06:13,"300 Maple St, Los Angeles, CA 90001" +,,,,, +227004,ThinkPad Laptop,1,999.99,07/09/19 22:43,"146 Sunset St, Atlanta, GA 30301" +227005,AAA Batteries (4-pack),1,2.99,07/03/19 12:52,"565 Walnut St, New York City, NY 10001" +227006,Bose SoundSport Headphones,1,99.99,07/06/19 02:14,"656 Spruce St, Los Angeles, CA 90001" +227007,AAA Batteries (4-pack),1,2.99,07/16/19 13:56,"817 River St, San Francisco, CA 94016" +227008,AA Batteries (4-pack),1,3.84,07/21/19 08:00,"599 Lincoln St, San Francisco, CA 94016" +227009,AAA Batteries (4-pack),1,2.99,07/08/19 11:36,"572 Cherry St, San Francisco, CA 94016" +227010,Apple Airpods Headphones,1,150,07/11/19 15:34,"618 Chestnut St, San Francisco, CA 94016" +227011,AA Batteries (4-pack),2,3.84,07/12/19 15:13,"546 Church St, Dallas, TX 75001" +227012,AA Batteries (4-pack),1,3.84,07/02/19 16:28,"258 6th St, Los Angeles, CA 90001" +227013,iPhone,1,700,07/25/19 14:34,"841 Hill St, San Francisco, CA 94016" +227014,Macbook Pro Laptop,1,1700,07/26/19 07:49,"758 2nd St, Dallas, TX 75001" +227015,AA Batteries (4-pack),1,3.84,07/19/19 19:30,"54 Center St, New York City, NY 10001" +227016,USB-C Charging Cable,1,11.95,07/02/19 17:26,"366 Spruce St, Portland, OR 97035" +227017,USB-C Charging Cable,1,11.95,07/22/19 12:29,"159 Meadow St, New York City, NY 10001" +227018,Lightning Charging Cable,1,14.95,07/08/19 11:16,"521 River St, San Francisco, CA 94016" +227019,Wired Headphones,1,11.99,07/06/19 23:27,"322 Main St, San Francisco, CA 94016" +227020,Wired Headphones,1,11.99,07/08/19 01:18,"909 Meadow St, Los Angeles, CA 90001" +227021,Lightning Charging Cable,1,14.95,07/14/19 21:09,"967 Cherry St, Austin, TX 73301" +227022,Lightning Charging Cable,1,14.95,07/29/19 12:30,"764 Willow St, New York City, NY 10001" +227023,Wired Headphones,1,11.99,07/16/19 01:32,"707 10th St, Boston, MA 02215" +227024,Macbook Pro Laptop,1,1700,07/11/19 10:59,"393 Highland St, Boston, MA 02215" +227025,34in Ultrawide Monitor,1,379.99,07/25/19 23:07,"530 Lake St, Los Angeles, CA 90001" +227026,Bose SoundSport Headphones,1,99.99,07/01/19 12:24,"851 Lakeview St, Boston, MA 02215" +227027,AAA Batteries (4-pack),1,2.99,07/09/19 09:30,"100 Dogwood St, Dallas, TX 75001" +227028,ThinkPad Laptop,1,999.99,07/28/19 17:49,"809 9th St, Los Angeles, CA 90001" +227029,34in Ultrawide Monitor,1,379.99,07/09/19 11:24,"795 2nd St, Atlanta, GA 30301" +227030,Lightning Charging Cable,1,14.95,07/13/19 15:10,"261 Lakeview St, Atlanta, GA 30301" +227031,Vareebadd Phone,1,400,07/15/19 14:16,"835 Elm St, Boston, MA 02215" +227031,Bose SoundSport Headphones,1,99.99,07/15/19 14:16,"835 Elm St, Boston, MA 02215" +227031,Wired Headphones,1,11.99,07/15/19 14:16,"835 Elm St, Boston, MA 02215" +227032,Macbook Pro Laptop,1,1700,07/03/19 07:22,"68 Sunset St, Los Angeles, CA 90001" +227033,Lightning Charging Cable,1,14.95,07/11/19 16:44,"257 Johnson St, Dallas, TX 75001" +227034,AA Batteries (4-pack),1,3.84,07/03/19 14:37,"44 Main St, Austin, TX 73301" +227035,Flatscreen TV,1,300,07/27/19 19:39,"790 7th St, San Francisco, CA 94016" +227036,Lightning Charging Cable,1,14.95,07/22/19 16:59,"227 Pine St, San Francisco, CA 94016" +227037,Flatscreen TV,1,300,07/28/19 19:56,"900 Dogwood St, Los Angeles, CA 90001" +227038,Bose SoundSport Headphones,1,99.99,07/11/19 10:56,"635 North St, Boston, MA 02215" +227039,Bose SoundSport Headphones,1,99.99,07/22/19 22:09,"184 Lakeview St, Seattle, WA 98101" +227040,Apple Airpods Headphones,1,150,07/14/19 17:07,"756 Highland St, Dallas, TX 75001" +227041,Wired Headphones,1,11.99,07/29/19 22:56,"18 2nd St, Dallas, TX 75001" +227042,AA Batteries (4-pack),2,3.84,07/07/19 05:59,"304 River St, Los Angeles, CA 90001" +227043,27in 4K Gaming Monitor,1,389.99,07/24/19 15:34,"93 Dogwood St, San Francisco, CA 94016" +227044,Flatscreen TV,1,300,07/04/19 23:28,"226 Spruce St, New York City, NY 10001" +227045,AAA Batteries (4-pack),1,2.99,07/15/19 12:19,"661 5th St, Seattle, WA 98101" +227046,Wired Headphones,1,11.99,07/26/19 14:23,"3 Adams St, Dallas, TX 75001" +227047,AA Batteries (4-pack),1,3.84,07/22/19 17:25,"534 Lake St, Dallas, TX 75001" +227048,USB-C Charging Cable,1,11.95,07/01/19 19:34,"327 North St, Los Angeles, CA 90001" +227049,Wired Headphones,1,11.99,07/25/19 16:00,"244 Walnut St, Seattle, WA 98101" +227050,Lightning Charging Cable,1,14.95,07/03/19 16:29,"282 Elm St, New York City, NY 10001" +227051,Lightning Charging Cable,1,14.95,07/23/19 16:06,"166 Park St, Boston, MA 02215" +227052,Macbook Pro Laptop,1,1700,07/31/19 17:56,"88 Hickory St, San Francisco, CA 94016" +227053,Wired Headphones,1,11.99,07/22/19 23:33,"52 8th St, Dallas, TX 75001" +227054,Bose SoundSport Headphones,1,99.99,07/08/19 20:17,"688 12th St, Dallas, TX 75001" +227055,20in Monitor,1,109.99,07/18/19 12:39,"2 Johnson St, Boston, MA 02215" +227056,20in Monitor,1,109.99,07/10/19 11:25,"942 10th St, Dallas, TX 75001" +227057,USB-C Charging Cable,1,11.95,07/25/19 11:42,"31 Chestnut St, New York City, NY 10001" +227058,20in Monitor,1,109.99,07/02/19 21:35,"753 Johnson St, New York City, NY 10001" +227059,Flatscreen TV,1,300,07/30/19 16:58,"739 North St, Atlanta, GA 30301" +227060,Bose SoundSport Headphones,1,99.99,07/15/19 19:50,"693 Center St, San Francisco, CA 94016" +227061,Lightning Charging Cable,1,14.95,07/28/19 09:40,"393 Hill St, Atlanta, GA 30301" +227062,Wired Headphones,1,11.99,07/26/19 19:43,"143 Willow St, San Francisco, CA 94016" +227063,AAA Batteries (4-pack),1,2.99,07/30/19 18:06,"618 Sunset St, Dallas, TX 75001" +227064,Lightning Charging Cable,1,14.95,07/15/19 03:23,"88 11th St, Austin, TX 73301" +227065,AA Batteries (4-pack),3,3.84,07/12/19 01:47,"494 Cherry St, Dallas, TX 75001" +227066,27in FHD Monitor,1,149.99,07/18/19 17:17,"348 Adams St, San Francisco, CA 94016" +227067,AA Batteries (4-pack),1,3.84,07/21/19 21:10,"538 South St, San Francisco, CA 94016" +227068,27in FHD Monitor,1,149.99,07/15/19 21:18,"932 Main St, San Francisco, CA 94016" +227069,Apple Airpods Headphones,1,150,07/08/19 05:56,"248 2nd St, San Francisco, CA 94016" +227070,Macbook Pro Laptop,1,1700,07/03/19 22:27,"771 Highland St, Boston, MA 02215" +227071,AAA Batteries (4-pack),1,2.99,07/12/19 18:37,"213 Lake St, New York City, NY 10001" +227072,Macbook Pro Laptop,1,1700,07/13/19 18:57,"212 Hickory St, San Francisco, CA 94016" +227073,Bose SoundSport Headphones,1,99.99,07/14/19 23:21,"680 Wilson St, New York City, NY 10001" +227074,Apple Airpods Headphones,1,150,07/08/19 12:13,"363 Johnson St, Seattle, WA 98101" +227075,Bose SoundSport Headphones,1,99.99,07/28/19 12:16,"937 Pine St, Seattle, WA 98101" +227076,Vareebadd Phone,1,400,07/31/19 13:54,"209 Maple St, Seattle, WA 98101" +227077,Apple Airpods Headphones,1,150,07/03/19 17:00,"831 River St, San Francisco, CA 94016" +227078,USB-C Charging Cable,1,11.95,07/23/19 05:36,"236 Jefferson St, Los Angeles, CA 90001" +227079,USB-C Charging Cable,1,11.95,07/18/19 12:33,"317 North St, Seattle, WA 98101" +227080,34in Ultrawide Monitor,1,379.99,07/15/19 14:46,"765 11th St, Boston, MA 02215" +227081,27in 4K Gaming Monitor,1,389.99,07/21/19 17:01,"867 13th St, Los Angeles, CA 90001" +227082,AA Batteries (4-pack),1,3.84,07/29/19 18:14,"518 Main St, Austin, TX 73301" +227083,Bose SoundSport Headphones,1,99.99,07/27/19 22:37,"13 South St, Portland, OR 97035" +227084,iPhone,1,700,07/22/19 19:04,"511 Ridge St, San Francisco, CA 94016" +227085,Vareebadd Phone,1,400,07/11/19 09:43,"169 10th St, Seattle, WA 98101" +227085,Bose SoundSport Headphones,1,99.99,07/11/19 09:43,"169 10th St, Seattle, WA 98101" +227086,Apple Airpods Headphones,1,150,07/06/19 17:27,"149 7th St, New York City, NY 10001" +227087,AAA Batteries (4-pack),1,2.99,07/17/19 11:25,"57 Park St, New York City, NY 10001" +227088,Apple Airpods Headphones,1,150,07/19/19 11:00,"750 Chestnut St, New York City, NY 10001" +227089,Apple Airpods Headphones,1,150,07/23/19 20:26,"26 Highland St, New York City, NY 10001" +227090,Apple Airpods Headphones,1,150,07/17/19 11:13,"524 Forest St, Seattle, WA 98101" +227091,34in Ultrawide Monitor,1,379.99,07/09/19 14:24,"589 South St, New York City, NY 10001" +227092,Lightning Charging Cable,1,14.95,07/25/19 10:03,"402 10th St, San Francisco, CA 94016" +227093,Flatscreen TV,1,300,07/30/19 20:41,"186 Lakeview St, Atlanta, GA 30301" +227094,USB-C Charging Cable,1,11.95,07/16/19 20:11,"477 Main St, Los Angeles, CA 90001" +227095,Lightning Charging Cable,1,14.95,07/18/19 10:04,"630 Main St, San Francisco, CA 94016" +227096,27in 4K Gaming Monitor,1,389.99,07/31/19 17:15,"854 Park St, Seattle, WA 98101" +227097,Bose SoundSport Headphones,1,99.99,07/29/19 10:47,"644 Church St, Los Angeles, CA 90001" +227098,Wired Headphones,1,11.99,07/23/19 13:42,"594 13th St, Seattle, WA 98101" +227099,USB-C Charging Cable,2,11.95,07/28/19 09:40,"752 Lakeview St, Los Angeles, CA 90001" +227099,Apple Airpods Headphones,1,150,07/28/19 09:40,"752 Lakeview St, Los Angeles, CA 90001" +227100,AA Batteries (4-pack),1,3.84,07/16/19 10:22,"306 Highland St, San Francisco, CA 94016" +227101,Lightning Charging Cable,1,14.95,07/07/19 08:09,"357 Center St, San Francisco, CA 94016" +227102,27in 4K Gaming Monitor,1,389.99,07/07/19 11:27,"806 Hill St, New York City, NY 10001" +227103,AA Batteries (4-pack),1,3.84,07/08/19 14:42,"267 Jackson St, New York City, NY 10001" +227104,Wired Headphones,1,11.99,07/29/19 23:34,"202 Madison St, Boston, MA 02215" +227105,AAA Batteries (4-pack),3,2.99,07/18/19 22:22,"183 2nd St, Portland, ME 04101" +227106,Bose SoundSport Headphones,1,99.99,07/05/19 09:02,"863 9th St, San Francisco, CA 94016" +227107,AA Batteries (4-pack),1,3.84,07/02/19 12:19,"445 Adams St, Austin, TX 73301" +227108,AA Batteries (4-pack),2,3.84,07/02/19 15:28,"509 7th St, New York City, NY 10001" +227109,Apple Airpods Headphones,1,150,07/23/19 16:02,"70 Ridge St, Dallas, TX 75001" +227110,AAA Batteries (4-pack),1,2.99,07/08/19 14:20,"853 Jefferson St, Portland, OR 97035" +227111,Wired Headphones,1,11.99,07/24/19 20:40,"105 Pine St, Los Angeles, CA 90001" +227112,Lightning Charging Cable,1,14.95,07/23/19 17:21,"298 10th St, Boston, MA 02215" +227113,Bose SoundSport Headphones,1,99.99,07/23/19 11:04,"869 10th St, Atlanta, GA 30301" +227114,Flatscreen TV,1,300,07/18/19 16:17,"660 North St, Atlanta, GA 30301" +227115,Google Phone,1,600,07/24/19 15:45,"907 10th St, Los Angeles, CA 90001" +227116,AAA Batteries (4-pack),1,2.99,07/02/19 17:18,"987 Lake St, Boston, MA 02215" +227117,Apple Airpods Headphones,1,150,07/31/19 19:50,"797 Center St, New York City, NY 10001" +227118,Google Phone,1,600,07/21/19 06:08,"239 Jackson St, Atlanta, GA 30301" +227119,AAA Batteries (4-pack),1,2.99,07/25/19 15:15,"496 11th St, Atlanta, GA 30301" +227120,LG Washing Machine,1,600.0,07/13/19 05:26,"161 Sunset St, Los Angeles, CA 90001" +227121,AA Batteries (4-pack),1,3.84,07/10/19 15:24,"372 Willow St, Dallas, TX 75001" +227122,Lightning Charging Cable,1,14.95,07/24/19 10:57,"833 4th St, San Francisco, CA 94016" +227123,Wired Headphones,1,11.99,07/23/19 20:20,"385 Meadow St, Boston, MA 02215" +227124,Wired Headphones,1,11.99,07/16/19 05:55,"102 6th St, Dallas, TX 75001" +227125,AAA Batteries (4-pack),2,2.99,07/24/19 16:10,"421 13th St, Los Angeles, CA 90001" +227126,AAA Batteries (4-pack),2,2.99,07/08/19 22:44,"511 Elm St, Los Angeles, CA 90001" +227127,Apple Airpods Headphones,1,150,07/27/19 05:44,"910 Madison St, Los Angeles, CA 90001" +227128,Wired Headphones,1,11.99,07/11/19 13:10,"980 Sunset St, Seattle, WA 98101" +227129,Apple Airpods Headphones,1,150,07/06/19 12:56,"927 Jefferson St, New York City, NY 10001" +227130,27in 4K Gaming Monitor,1,389.99,07/17/19 13:07,"608 11th St, New York City, NY 10001" +227131,Flatscreen TV,1,300,07/27/19 14:26,"881 Johnson St, Seattle, WA 98101" +227132,USB-C Charging Cable,1,11.95,07/03/19 10:38,"312 Hill St, New York City, NY 10001" +227133,Apple Airpods Headphones,1,150,07/03/19 12:57,"500 Johnson St, Los Angeles, CA 90001" +227134,Apple Airpods Headphones,1,150,07/24/19 10:09,"759 Lakeview St, San Francisco, CA 94016" +227135,Apple Airpods Headphones,1,150,07/04/19 17:22,"310 Park St, Los Angeles, CA 90001" +227135,LG Washing Machine,1,600.0,07/04/19 17:22,"310 Park St, Los Angeles, CA 90001" +227136,iPhone,1,700,07/30/19 08:10,"124 Chestnut St, Los Angeles, CA 90001" +227137,LG Dryer,1,600.0,07/13/19 11:04,"680 Jackson St, Austin, TX 73301" +227138,Macbook Pro Laptop,1,1700,07/10/19 10:35,"281 Adams St, San Francisco, CA 94016" +227139,Lightning Charging Cable,1,14.95,07/23/19 11:56,"765 Chestnut St, Dallas, TX 75001" +227140,iPhone,1,700,07/26/19 12:32,"464 Cedar St, San Francisco, CA 94016" +227141,Lightning Charging Cable,1,14.95,07/01/19 17:06,"243 10th St, Seattle, WA 98101" +227142,Wired Headphones,1,11.99,07/26/19 18:31,"590 Sunset St, Austin, TX 73301" +227143,Wired Headphones,1,11.99,07/02/19 13:58,"173 Hill St, Dallas, TX 75001" +227144,AAA Batteries (4-pack),2,2.99,07/12/19 20:09,"609 Lincoln St, Dallas, TX 75001" +227145,34in Ultrawide Monitor,1,379.99,07/24/19 04:42,"348 6th St, San Francisco, CA 94016" +227146,Google Phone,1,600,07/31/19 14:33,"407 Adams St, San Francisco, CA 94016" +227146,Bose SoundSport Headphones,1,99.99,07/31/19 14:33,"407 Adams St, San Francisco, CA 94016" +227147,27in FHD Monitor,1,149.99,07/04/19 20:28,"142 Cedar St, New York City, NY 10001" +227148,AAA Batteries (4-pack),1,2.99,07/29/19 17:26,"9 Jackson St, San Francisco, CA 94016" +227149,Macbook Pro Laptop,1,1700,07/19/19 17:07,"348 Lincoln St, San Francisco, CA 94016" +227150,Lightning Charging Cable,1,14.95,07/12/19 16:10,"462 Hill St, Dallas, TX 75001" +227151,Apple Airpods Headphones,1,150,07/17/19 16:16,"240 Center St, San Francisco, CA 94016" +227152,Bose SoundSport Headphones,1,99.99,07/31/19 09:06,"660 Hickory St, San Francisco, CA 94016" +227153,AA Batteries (4-pack),1,3.84,07/12/19 20:26,"570 Chestnut St, Portland, OR 97035" +227154,USB-C Charging Cable,1,11.95,07/01/19 14:38,"821 Park St, San Francisco, CA 94016" +227155,27in FHD Monitor,1,149.99,07/27/19 13:56,"875 10th St, Atlanta, GA 30301" +227156,Wired Headphones,1,11.99,07/22/19 08:23,"928 South St, Los Angeles, CA 90001" +227157,Google Phone,1,600,07/18/19 22:00,"433 Pine St, Austin, TX 73301" +227158,Lightning Charging Cable,1,14.95,07/25/19 15:55,"111 7th St, Boston, MA 02215" +227159,Bose SoundSport Headphones,1,99.99,07/06/19 01:39,"324 14th St, Atlanta, GA 30301" +227160,27in 4K Gaming Monitor,1,389.99,07/23/19 16:48,"52 11th St, New York City, NY 10001" +227161,AA Batteries (4-pack),1,3.84,07/26/19 10:31,"807 Walnut St, San Francisco, CA 94016" +227162,Lightning Charging Cable,1,14.95,07/13/19 19:58,"335 Ridge St, New York City, NY 10001" +227163,AA Batteries (4-pack),1,3.84,07/10/19 01:17,"442 Cedar St, New York City, NY 10001" +227164,27in 4K Gaming Monitor,1,389.99,07/28/19 15:32,"599 1st St, Atlanta, GA 30301" +227165,USB-C Charging Cable,1,11.95,07/01/19 21:00,"873 River St, San Francisco, CA 94016" +227166,AAA Batteries (4-pack),1,2.99,07/06/19 22:32,"726 Main St, San Francisco, CA 94016" +227167,USB-C Charging Cable,1,11.95,07/31/19 18:51,"422 Wilson St, Los Angeles, CA 90001" +227168,AA Batteries (4-pack),1,3.84,07/14/19 21:35,"60 Wilson St, Atlanta, GA 30301" +227169,Lightning Charging Cable,1,14.95,07/28/19 21:03,"703 Adams St, New York City, NY 10001" +227170,Lightning Charging Cable,1,14.95,07/17/19 07:38,"919 Elm St, San Francisco, CA 94016" +227171,Google Phone,1,600,07/31/19 19:10,"982 Forest St, Portland, OR 97035" +227171,USB-C Charging Cable,1,11.95,07/31/19 19:10,"982 Forest St, Portland, OR 97035" +227171,Wired Headphones,2,11.99,07/31/19 19:10,"982 Forest St, Portland, OR 97035" +227172,AA Batteries (4-pack),2,3.84,07/02/19 17:43,"931 Lincoln St, New York City, NY 10001" +227173,USB-C Charging Cable,1,11.95,07/02/19 16:35,"530 Jefferson St, Seattle, WA 98101" +227174,Lightning Charging Cable,1,14.95,07/05/19 14:33,"932 River St, San Francisco, CA 94016" +227175,Google Phone,1,600,07/22/19 19:10,"812 11th St, Austin, TX 73301" +227175,USB-C Charging Cable,1,11.95,07/22/19 19:10,"812 11th St, Austin, TX 73301" +227176,Wired Headphones,1,11.99,07/05/19 23:14,"348 Highland St, Dallas, TX 75001" +227177,USB-C Charging Cable,1,11.95,07/19/19 16:42,"534 Lincoln St, New York City, NY 10001" +227178,Lightning Charging Cable,1,14.95,07/19/19 12:21,"821 Washington St, Boston, MA 02215" +227179,27in 4K Gaming Monitor,1,389.99,07/21/19 17:29,"831 North St, Dallas, TX 75001" +227180,Lightning Charging Cable,1,14.95,07/26/19 11:21,"317 9th St, Boston, MA 02215" +227181,20in Monitor,1,109.99,07/06/19 00:45,"123 Center St, Austin, TX 73301" +227182,Lightning Charging Cable,1,14.95,07/09/19 14:20,"936 Hickory St, San Francisco, CA 94016" +227183,AA Batteries (4-pack),1,3.84,07/10/19 17:11,"809 7th St, Los Angeles, CA 90001" +227184,Apple Airpods Headphones,1,150,07/15/19 13:27,"963 Washington St, San Francisco, CA 94016" +227185,20in Monitor,1,109.99,07/27/19 13:46,"369 5th St, San Francisco, CA 94016" +227186,USB-C Charging Cable,1,11.95,07/18/19 18:32,"459 Ridge St, Boston, MA 02215" +227187,AA Batteries (4-pack),1,3.84,07/30/19 12:31,"669 Highland St, San Francisco, CA 94016" +227188,Bose SoundSport Headphones,1,99.99,07/07/19 10:35,"663 Wilson St, New York City, NY 10001" +227189,20in Monitor,1,109.99,07/07/19 21:04,"137 Church St, New York City, NY 10001" +227190,20in Monitor,1,109.99,07/23/19 16:26,"357 7th St, San Francisco, CA 94016" +227191,Wired Headphones,1,11.99,07/19/19 12:12,"690 Jackson St, New York City, NY 10001" +227192,USB-C Charging Cable,1,11.95,07/24/19 12:21,"488 Park St, Atlanta, GA 30301" +227193,iPhone,1,700,07/26/19 18:41,"121 14th St, Austin, TX 73301" +227194,AAA Batteries (4-pack),2,2.99,07/24/19 18:27,"876 Park St, San Francisco, CA 94016" +227195,27in FHD Monitor,1,149.99,07/27/19 11:41,"491 Cherry St, San Francisco, CA 94016" +227196,34in Ultrawide Monitor,1,379.99,07/09/19 20:31,"12 Lakeview St, Los Angeles, CA 90001" +227197,Lightning Charging Cable,1,14.95,07/07/19 16:48,"326 Washington St, Los Angeles, CA 90001" +227198,AAA Batteries (4-pack),1,2.99,07/06/19 08:37,"363 Cedar St, Atlanta, GA 30301" +227199,Apple Airpods Headphones,1,150,07/10/19 16:41,"746 Walnut St, San Francisco, CA 94016" +227200,Wired Headphones,1,11.99,07/14/19 22:33,"579 Jefferson St, Austin, TX 73301" +227201,Apple Airpods Headphones,1,150,07/09/19 19:12,"97 Willow St, Seattle, WA 98101" +227202,Apple Airpods Headphones,1,150,07/03/19 11:11,"945 7th St, New York City, NY 10001" +227203,Lightning Charging Cable,2,14.95,07/08/19 14:46,"126 Hill St, San Francisco, CA 94016" +227204,USB-C Charging Cable,2,11.95,07/17/19 17:14,"477 7th St, Boston, MA 02215" +227205,AAA Batteries (4-pack),1,2.99,07/21/19 18:26,"593 Cedar St, Boston, MA 02215" +227206,AAA Batteries (4-pack),1,2.99,07/21/19 23:03,"947 Washington St, Austin, TX 73301" +227207,Flatscreen TV,1,300,07/24/19 20:49,"423 Maple St, Boston, MA 02215" +227208,27in FHD Monitor,1,149.99,07/15/19 21:41,"445 11th St, Portland, OR 97035" +227209,Wired Headphones,1,11.99,07/31/19 09:56,"106 Lincoln St, San Francisco, CA 94016" +227209,Lightning Charging Cable,1,14.95,07/31/19 09:56,"106 Lincoln St, San Francisco, CA 94016" +227210,USB-C Charging Cable,1,11.95,07/13/19 12:48,"736 13th St, New York City, NY 10001" +227211,ThinkPad Laptop,1,999.99,07/19/19 18:59,"326 Main St, San Francisco, CA 94016" +227212,Bose SoundSport Headphones,1,99.99,07/08/19 06:31,"595 Washington St, Boston, MA 02215" +227213,34in Ultrawide Monitor,1,379.99,07/04/19 14:59,"146 Lakeview St, Austin, TX 73301" +227214,Lightning Charging Cable,2,14.95,07/22/19 08:53,"571 8th St, Portland, ME 04101" +227215,Google Phone,1,600,07/03/19 23:57,"611 Jackson St, Boston, MA 02215" +227216,USB-C Charging Cable,1,11.95,07/04/19 00:48,"337 Park St, New York City, NY 10001" +227217,Apple Airpods Headphones,1,150,07/26/19 08:45,"27 Maple St, New York City, NY 10001" +227218,27in FHD Monitor,1,149.99,07/03/19 14:13,"850 Adams St, Portland, OR 97035" +227219,Apple Airpods Headphones,1,150,07/09/19 08:52,"714 Center St, Boston, MA 02215" +227220,Vareebadd Phone,1,400,07/05/19 14:28,"256 Walnut St, Los Angeles, CA 90001" +227221,Apple Airpods Headphones,1,150,07/10/19 13:22,"949 Forest St, Boston, MA 02215" +227222,Apple Airpods Headphones,1,150,07/24/19 13:31,"18 Pine St, Los Angeles, CA 90001" +227223,AA Batteries (4-pack),1,3.84,07/25/19 13:54,"932 7th St, New York City, NY 10001" +227224,Wired Headphones,1,11.99,07/26/19 07:39,"219 13th St, Boston, MA 02215" +227225,27in FHD Monitor,1,149.99,07/18/19 18:08,"616 2nd St, Los Angeles, CA 90001" +227226,Apple Airpods Headphones,1,150,07/04/19 17:25,"74 Wilson St, Austin, TX 73301" +227227,Lightning Charging Cable,1,14.95,07/31/19 14:24,"778 Park St, San Francisco, CA 94016" +227228,Lightning Charging Cable,1,14.95,07/19/19 08:53,"59 7th St, Los Angeles, CA 90001" +227229,Wired Headphones,1,11.99,07/13/19 11:36,"887 Wilson St, San Francisco, CA 94016" +227230,Lightning Charging Cable,1,14.95,07/18/19 17:01,"152 Church St, New York City, NY 10001" +227231,AA Batteries (4-pack),1,3.84,07/26/19 18:41,"457 2nd St, Los Angeles, CA 90001" +227232,34in Ultrawide Monitor,1,379.99,07/27/19 10:32,"640 Center St, Dallas, TX 75001" +227233,AAA Batteries (4-pack),1,2.99,07/05/19 21:38,"464 Highland St, Los Angeles, CA 90001" +227234,AAA Batteries (4-pack),1,2.99,07/25/19 18:27,"110 Jackson St, Seattle, WA 98101" +227235,AAA Batteries (4-pack),1,2.99,07/25/19 18:31,"236 Elm St, San Francisco, CA 94016" +227236,AAA Batteries (4-pack),2,2.99,07/06/19 13:01,"531 Meadow St, Seattle, WA 98101" +227237,Apple Airpods Headphones,1,150,07/24/19 16:57,"177 8th St, San Francisco, CA 94016" +227238,Bose SoundSport Headphones,1,99.99,07/20/19 19:15,"810 Cherry St, Los Angeles, CA 90001" +227239,Bose SoundSport Headphones,1,99.99,07/19/19 14:54,"763 Pine St, Atlanta, GA 30301" +227240,iPhone,1,700,07/30/19 12:10,"656 Church St, Los Angeles, CA 90001" +227240,Wired Headphones,1,11.99,07/30/19 12:10,"656 Church St, Los Angeles, CA 90001" +227241,Wired Headphones,1,11.99,07/21/19 08:48,"474 Lincoln St, San Francisco, CA 94016" +227242,Wired Headphones,1,11.99,07/21/19 10:49,"26 Sunset St, Atlanta, GA 30301" +227243,USB-C Charging Cable,1,11.95,07/30/19 16:28,"275 Walnut St, Austin, TX 73301" +227244,27in FHD Monitor,1,149.99,07/21/19 16:38,"495 Willow St, San Francisco, CA 94016" +227245,Lightning Charging Cable,1,14.95,07/08/19 16:50,"457 4th St, Atlanta, GA 30301" +227245,Wired Headphones,1,11.99,07/08/19 16:50,"457 4th St, Atlanta, GA 30301" +227246,34in Ultrawide Monitor,1,379.99,07/22/19 10:10,"809 Cedar St, New York City, NY 10001" +227247,AA Batteries (4-pack),1,3.84,07/26/19 20:45,"750 Madison St, San Francisco, CA 94016" +227248,AA Batteries (4-pack),2,3.84,07/14/19 10:56,"679 Willow St, Atlanta, GA 30301" +227249,Lightning Charging Cable,1,14.95,07/12/19 07:57,"887 Walnut St, Seattle, WA 98101" +227250,Macbook Pro Laptop,1,1700,07/19/19 20:09,"123 8th St, New York City, NY 10001" +227251,Lightning Charging Cable,1,14.95,07/07/19 16:26,"126 13th St, San Francisco, CA 94016" +227252,AA Batteries (4-pack),1,3.84,07/18/19 14:12,"75 Spruce St, Austin, TX 73301" +227253,Wired Headphones,1,11.99,07/27/19 14:17,"348 Forest St, Los Angeles, CA 90001" +227254,USB-C Charging Cable,1,11.95,07/20/19 15:24,"450 Hickory St, Los Angeles, CA 90001" +227255,AAA Batteries (4-pack),1,2.99,07/07/19 14:51,"77 Lake St, Seattle, WA 98101" +227256,Apple Airpods Headphones,1,150,07/26/19 20:11,"762 Wilson St, Dallas, TX 75001" +227257,AAA Batteries (4-pack),1,2.99,07/14/19 12:15,"138 Hickory St, San Francisco, CA 94016" +227258,Bose SoundSport Headphones,1,99.99,07/01/19 21:52,"660 Maple St, Boston, MA 02215" +227259,Wired Headphones,1,11.99,07/06/19 09:23,"971 Park St, San Francisco, CA 94016" +227260,Bose SoundSport Headphones,1,99.99,07/16/19 10:53,"766 13th St, San Francisco, CA 94016" +227261,AAA Batteries (4-pack),1,2.99,07/05/19 12:52,"484 Dogwood St, Portland, OR 97035" +227262,Bose SoundSport Headphones,1,99.99,07/14/19 16:39,"927 Maple St, San Francisco, CA 94016" +227263,AAA Batteries (4-pack),1,2.99,07/18/19 16:58,"401 8th St, Los Angeles, CA 90001" +227264,Macbook Pro Laptop,1,1700,07/11/19 18:38,"741 River St, Seattle, WA 98101" +227264,AA Batteries (4-pack),2,3.84,07/11/19 18:38,"741 River St, Seattle, WA 98101" +227265,AAA Batteries (4-pack),1,2.99,07/14/19 11:20,"762 Washington St, Los Angeles, CA 90001" +227266,AA Batteries (4-pack),2,3.84,07/05/19 19:10,"369 Hickory St, Los Angeles, CA 90001" +227267,USB-C Charging Cable,1,11.95,07/01/19 20:43,"969 11th St, Seattle, WA 98101" +227268,Lightning Charging Cable,1,14.95,08/01/19 00:00,"366 River St, Seattle, WA 98101" +227269,AA Batteries (4-pack),2,3.84,07/12/19 00:15,"616 5th St, San Francisco, CA 94016" +227270,Macbook Pro Laptop,1,1700,07/26/19 11:33,"669 1st St, Portland, OR 97035" +227271,Lightning Charging Cable,1,14.95,07/26/19 10:13,"404 8th St, New York City, NY 10001" +227272,Flatscreen TV,1,300,07/15/19 11:16,"766 Park St, Los Angeles, CA 90001" +227273,AAA Batteries (4-pack),3,2.99,07/02/19 14:51,"297 5th St, Los Angeles, CA 90001" +227274,AA Batteries (4-pack),1,3.84,07/03/19 06:27,"432 Meadow St, Los Angeles, CA 90001" +227275,Apple Airpods Headphones,1,150,07/17/19 08:39,"49 Park St, San Francisco, CA 94016" +227276,Bose SoundSport Headphones,1,99.99,07/05/19 09:26,"854 Lakeview St, San Francisco, CA 94016" +227277,Wired Headphones,1,11.99,07/07/19 05:59,"567 6th St, Atlanta, GA 30301" +227277,Lightning Charging Cable,1,14.95,07/07/19 05:59,"567 6th St, Atlanta, GA 30301" +227278,AAA Batteries (4-pack),2,2.99,07/09/19 21:36,"949 6th St, Dallas, TX 75001" +227279,AAA Batteries (4-pack),1,2.99,07/15/19 02:13,"256 Jefferson St, Boston, MA 02215" +227280,34in Ultrawide Monitor,1,379.99,07/05/19 15:40,"566 Cherry St, Atlanta, GA 30301" +227281,AA Batteries (4-pack),1,3.84,07/25/19 20:00,"188 Chestnut St, San Francisco, CA 94016" +227282,Lightning Charging Cable,1,14.95,07/15/19 13:29,"824 Madison St, Austin, TX 73301" +227283,USB-C Charging Cable,1,11.95,07/10/19 17:06,"216 Hickory St, Portland, OR 97035" +227284,Google Phone,1,600,07/26/19 11:13,"516 South St, Los Angeles, CA 90001" +227285,27in 4K Gaming Monitor,1,389.99,07/01/19 13:01,"225 Lakeview St, San Francisco, CA 94016" +227286,20in Monitor,1,109.99,07/11/19 18:31,"287 Chestnut St, San Francisco, CA 94016" +227287,Wired Headphones,1,11.99,07/22/19 10:30,"725 Highland St, Seattle, WA 98101" +227288,Apple Airpods Headphones,1,150,07/07/19 14:37,"90 Willow St, Los Angeles, CA 90001" +227289,Lightning Charging Cable,1,14.95,07/16/19 21:48,"816 Willow St, San Francisco, CA 94016" +227290,iPhone,1,700,07/02/19 11:06,"301 Willow St, Boston, MA 02215" +227290,Lightning Charging Cable,1,14.95,07/02/19 11:06,"301 Willow St, Boston, MA 02215" +227291,Apple Airpods Headphones,1,150,07/15/19 22:26,"331 Highland St, San Francisco, CA 94016" +227292,Apple Airpods Headphones,1,150,07/27/19 14:19,"377 8th St, Portland, OR 97035" +227293,27in 4K Gaming Monitor,1,389.99,07/19/19 12:24,"517 7th St, San Francisco, CA 94016" +227294,Wired Headphones,1,11.99,07/13/19 21:15,"132 Lake St, Los Angeles, CA 90001" +227295,20in Monitor,1,109.99,07/21/19 10:34,"727 Hill St, Boston, MA 02215" +227296,Apple Airpods Headphones,1,150,07/27/19 17:38,"514 River St, San Francisco, CA 94016" +227297,USB-C Charging Cable,1,11.95,07/02/19 21:15,"544 Hill St, Austin, TX 73301" +227298,iPhone,1,700,07/07/19 21:23,"493 Johnson St, Dallas, TX 75001" +227299,AAA Batteries (4-pack),2,2.99,07/28/19 18:39,"794 12th St, Los Angeles, CA 90001" +227300,iPhone,1,700,07/26/19 12:46,"360 River St, San Francisco, CA 94016" +227301,Lightning Charging Cable,1,14.95,07/05/19 21:49,"869 Center St, San Francisco, CA 94016" +227302,AA Batteries (4-pack),1,3.84,07/14/19 16:40,"155 8th St, Boston, MA 02215" +227303,Apple Airpods Headphones,1,150,07/27/19 19:43,"951 13th St, Atlanta, GA 30301" +227304,Vareebadd Phone,1,400,07/02/19 13:55,"240 Johnson St, Los Angeles, CA 90001" +227305,AAA Batteries (4-pack),1,2.99,07/17/19 19:32,"144 Highland St, San Francisco, CA 94016" +227306,Wired Headphones,1,11.99,07/28/19 21:25,"648 Cedar St, San Francisco, CA 94016" +227307,Apple Airpods Headphones,1,150,07/09/19 20:00,"847 Chestnut St, Atlanta, GA 30301" +227308,Bose SoundSport Headphones,1,99.99,07/18/19 14:50,"41 Spruce St, New York City, NY 10001" +227309,Google Phone,1,600,07/29/19 10:55,"483 5th St, Boston, MA 02215" +227310,Wired Headphones,1,11.99,07/28/19 18:16,"206 11th St, Seattle, WA 98101" +227311,AA Batteries (4-pack),1,3.84,07/08/19 18:32,"868 2nd St, San Francisco, CA 94016" +227312,Vareebadd Phone,1,400,07/30/19 19:19,"15 2nd St, Boston, MA 02215" +227312,USB-C Charging Cable,1,11.95,07/30/19 19:19,"15 2nd St, Boston, MA 02215" +227313,Bose SoundSport Headphones,1,99.99,07/06/19 20:54,"369 River St, Portland, ME 04101" +227314,AAA Batteries (4-pack),1,2.99,07/06/19 15:01,"29 5th St, Boston, MA 02215" +227315,Apple Airpods Headphones,1,150,07/05/19 11:21,"487 Wilson St, New York City, NY 10001" +227316,Apple Airpods Headphones,1,150,07/15/19 15:18,"141 Adams St, New York City, NY 10001" +227317,Macbook Pro Laptop,1,1700,07/24/19 08:50,"109 Forest St, Dallas, TX 75001" +227318,Lightning Charging Cable,1,14.95,07/16/19 10:07,"476 Ridge St, Portland, OR 97035" +227319,iPhone,1,700,07/12/19 18:19,"491 6th St, San Francisco, CA 94016" +227319,Wired Headphones,1,11.99,07/12/19 18:19,"491 6th St, San Francisco, CA 94016" +227320,USB-C Charging Cable,1,11.95,07/15/19 13:12,"373 Johnson St, New York City, NY 10001" +227321,AA Batteries (4-pack),1,3.84,07/15/19 22:57,"211 Dogwood St, Boston, MA 02215" +227322,iPhone,1,700,07/21/19 18:33,"77 12th St, San Francisco, CA 94016" +227323,Apple Airpods Headphones,1,150,07/20/19 15:35,"492 4th St, Dallas, TX 75001" +227324,AAA Batteries (4-pack),1,2.99,07/28/19 08:59,"634 Spruce St, Boston, MA 02215" +227325,Wired Headphones,1,11.99,07/01/19 21:45,"843 2nd St, San Francisco, CA 94016" +227326,USB-C Charging Cable,2,11.95,07/09/19 09:45,"573 9th St, Los Angeles, CA 90001" +227327,Apple Airpods Headphones,1,150,07/13/19 22:33,"898 Hill St, Los Angeles, CA 90001" +227328,27in FHD Monitor,2,149.99,07/01/19 12:16,"959 Main St, Dallas, TX 75001" +227329,Lightning Charging Cable,1,14.95,07/03/19 17:29,"592 Park St, Seattle, WA 98101" +227330,Bose SoundSport Headphones,1,99.99,07/25/19 08:39,"482 Hickory St, New York City, NY 10001" +227331,Wired Headphones,1,11.99,07/07/19 04:12,"434 5th St, San Francisco, CA 94016" +227332,USB-C Charging Cable,1,11.95,07/31/19 23:00,"690 Spruce St, San Francisco, CA 94016" +227333,AAA Batteries (4-pack),1,2.99,07/14/19 15:26,"843 11th St, Atlanta, GA 30301" +227334,Lightning Charging Cable,1,14.95,07/07/19 10:05,"31 Dogwood St, San Francisco, CA 94016" +227335,Wired Headphones,1,11.99,07/28/19 20:51,"378 Walnut St, Atlanta, GA 30301" +227336,Bose SoundSport Headphones,1,99.99,07/22/19 21:59,"509 Meadow St, Seattle, WA 98101" +227337,27in 4K Gaming Monitor,1,389.99,07/11/19 22:46,"155 Jackson St, Boston, MA 02215" +227338,USB-C Charging Cable,1,11.95,07/17/19 16:08,"114 Lincoln St, Boston, MA 02215" +227339,27in 4K Gaming Monitor,1,389.99,07/20/19 19:19,"707 Jefferson St, Boston, MA 02215" +227340,Lightning Charging Cable,1,14.95,07/24/19 19:02,"896 Jackson St, Seattle, WA 98101" +227341,AAA Batteries (4-pack),1,2.99,07/02/19 20:06,"233 Highland St, Portland, ME 04101" +227342,27in FHD Monitor,1,149.99,07/13/19 00:24,"530 9th St, Austin, TX 73301" +227343,27in 4K Gaming Monitor,1,389.99,07/15/19 19:30,"573 Maple St, Los Angeles, CA 90001" +227344,USB-C Charging Cable,1,11.95,07/05/19 12:25,"294 Spruce St, New York City, NY 10001" +227345,Bose SoundSport Headphones,1,99.99,07/12/19 10:02,"350 Lakeview St, Austin, TX 73301" +227346,Lightning Charging Cable,2,14.95,07/11/19 14:06,"68 8th St, Dallas, TX 75001" +227347,Apple Airpods Headphones,1,150,07/18/19 21:13,"886 Main St, Seattle, WA 98101" +227348,AAA Batteries (4-pack),1,2.99,07/05/19 00:53,"429 2nd St, San Francisco, CA 94016" +227349,Apple Airpods Headphones,1,150,07/31/19 11:57,"316 13th St, Boston, MA 02215" +227350,AA Batteries (4-pack),1,3.84,07/22/19 12:32,"387 7th St, Atlanta, GA 30301" +227351,AA Batteries (4-pack),1,3.84,07/03/19 07:06,"212 Adams St, San Francisco, CA 94016" +227352,Wired Headphones,1,11.99,07/25/19 21:15,"961 Sunset St, New York City, NY 10001" +227353,LG Washing Machine,1,600.0,07/14/19 18:37,"529 Cherry St, New York City, NY 10001" +227354,iPhone,1,700,07/25/19 14:12,"779 4th St, San Francisco, CA 94016" +227355,Bose SoundSport Headphones,1,99.99,07/31/19 10:34,"55 Hill St, Austin, TX 73301" +227356,Lightning Charging Cable,2,14.95,07/30/19 09:14,"420 Highland St, New York City, NY 10001" +227357,iPhone,1,700,07/24/19 11:48,"938 Lincoln St, San Francisco, CA 94016" +227357,Wired Headphones,1,11.99,07/24/19 11:48,"938 Lincoln St, San Francisco, CA 94016" +227358,Macbook Pro Laptop,1,1700,07/05/19 17:13,"909 Washington St, Portland, OR 97035" +227359,27in 4K Gaming Monitor,1,389.99,07/26/19 12:03,"659 Church St, Los Angeles, CA 90001" +227360,20in Monitor,1,109.99,07/15/19 02:37,"740 Ridge St, Portland, ME 04101" +227361,AA Batteries (4-pack),2,3.84,07/19/19 13:24,"104 Hill St, Atlanta, GA 30301" +227362,Lightning Charging Cable,1,14.95,07/16/19 14:10,"746 Park St, Seattle, WA 98101" +227363,Macbook Pro Laptop,1,1700,07/02/19 13:26,"482 6th St, New York City, NY 10001" +227364,Wired Headphones,1,11.99,07/31/19 07:04,"682 Forest St, Los Angeles, CA 90001" +227365,Macbook Pro Laptop,1,1700,07/12/19 14:47,"775 Maple St, San Francisco, CA 94016" +227366,AAA Batteries (4-pack),1,2.99,07/09/19 10:55,"338 South St, San Francisco, CA 94016" +227367,LG Washing Machine,1,600.0,07/31/19 07:44,"891 7th St, Dallas, TX 75001" +227368,Lightning Charging Cable,1,14.95,07/20/19 14:12,"685 River St, Austin, TX 73301" +227369,Google Phone,1,600,07/04/19 20:23,"573 Washington St, Los Angeles, CA 90001" +227369,Wired Headphones,1,11.99,07/04/19 20:23,"573 Washington St, Los Angeles, CA 90001" +227370,Bose SoundSport Headphones,1,99.99,07/23/19 11:06,"173 Lakeview St, Seattle, WA 98101" +227371,Wired Headphones,1,11.99,07/31/19 12:11,"401 Wilson St, Los Angeles, CA 90001" +227372,AA Batteries (4-pack),1,3.84,07/19/19 10:37,"291 Lakeview St, San Francisco, CA 94016" +227373,Flatscreen TV,1,300,07/01/19 20:20,"345 Main St, San Francisco, CA 94016" +227374,Apple Airpods Headphones,1,150,07/08/19 15:40,"157 10th St, San Francisco, CA 94016" +227375,Google Phone,1,600,07/11/19 21:11,"451 West St, San Francisco, CA 94016" +227376,Wired Headphones,1,11.99,07/01/19 10:39,"286 Willow St, Los Angeles, CA 90001" +227377,Wired Headphones,1,11.99,07/12/19 12:28,"668 West St, San Francisco, CA 94016" +227378,Wired Headphones,1,11.99,07/13/19 00:25,"133 Spruce St, Portland, OR 97035" +227379,Bose SoundSport Headphones,1,99.99,07/06/19 13:15,"516 Hickory St, San Francisco, CA 94016" +227380,iPhone,1,700,07/18/19 02:04,"666 Forest St, Los Angeles, CA 90001" +227381,Macbook Pro Laptop,1,1700,07/20/19 20:51,"17 Forest St, San Francisco, CA 94016" +227382,AA Batteries (4-pack),1,3.84,07/07/19 09:21,"626 Main St, New York City, NY 10001" +227383,AA Batteries (4-pack),1,3.84,07/09/19 07:50,"188 South St, Seattle, WA 98101" +227384,AAA Batteries (4-pack),1,2.99,07/21/19 19:46,"840 Pine St, Seattle, WA 98101" +227385,34in Ultrawide Monitor,1,379.99,07/10/19 16:50,"461 Madison St, San Francisco, CA 94016" +227386,27in 4K Gaming Monitor,1,389.99,07/29/19 13:12,"427 Lakeview St, Dallas, TX 75001" +227386,Bose SoundSport Headphones,1,99.99,07/29/19 13:12,"427 Lakeview St, Dallas, TX 75001" +227387,Wired Headphones,1,11.99,07/20/19 18:20,"931 Wilson St, Dallas, TX 75001" +227388,AA Batteries (4-pack),1,3.84,07/24/19 23:51,"785 4th St, Los Angeles, CA 90001" +227389,USB-C Charging Cable,2,11.95,07/02/19 19:43,"272 Madison St, New York City, NY 10001" +227390,Lightning Charging Cable,1,14.95,07/05/19 02:21,"19 1st St, Boston, MA 02215" +227391,Bose SoundSport Headphones,1,99.99,07/24/19 11:20,"216 Spruce St, San Francisco, CA 94016" +227392,27in 4K Gaming Monitor,1,389.99,07/26/19 07:19,"77 Pine St, Boston, MA 02215" +227393,Google Phone,1,600,07/06/19 08:39,"284 13th St, Seattle, WA 98101" +227393,USB-C Charging Cable,1,11.95,07/06/19 08:39,"284 13th St, Seattle, WA 98101" +227394,USB-C Charging Cable,1,11.95,07/27/19 21:18,"764 Hill St, Portland, OR 97035" +227395,Apple Airpods Headphones,1,150,07/31/19 18:11,"258 Cedar St, Los Angeles, CA 90001" +227396,USB-C Charging Cable,1,11.95,07/06/19 18:34,"836 11th St, New York City, NY 10001" +227397,27in 4K Gaming Monitor,1,389.99,07/02/19 09:20,"473 Jackson St, Los Angeles, CA 90001" +227398,Bose SoundSport Headphones,1,99.99,07/04/19 11:16,"965 Center St, Seattle, WA 98101" +227399,27in 4K Gaming Monitor,1,389.99,07/23/19 01:16,"453 6th St, New York City, NY 10001" +227400,34in Ultrawide Monitor,1,379.99,07/07/19 15:45,"292 12th St, Los Angeles, CA 90001" +227401,27in 4K Gaming Monitor,1,389.99,07/28/19 15:52,"137 Ridge St, San Francisco, CA 94016" +227402,Apple Airpods Headphones,1,150,07/21/19 17:17,"9 8th St, San Francisco, CA 94016" +227403,20in Monitor,1,109.99,07/06/19 10:16,"974 10th St, New York City, NY 10001" +227404,USB-C Charging Cable,1,11.95,07/26/19 10:34,"980 Dogwood St, Dallas, TX 75001" +227405,Apple Airpods Headphones,1,150,07/07/19 10:22,"391 Forest St, New York City, NY 10001" +227406,Vareebadd Phone,1,400,07/19/19 10:27,"949 Washington St, Dallas, TX 75001" +227406,USB-C Charging Cable,1,11.95,07/19/19 10:27,"949 Washington St, Dallas, TX 75001" +227407,AAA Batteries (4-pack),1,2.99,07/12/19 22:59,"139 10th St, Dallas, TX 75001" +227408,AAA Batteries (4-pack),1,2.99,07/01/19 19:08,"744 Cedar St, Los Angeles, CA 90001" +227409,Google Phone,1,600,07/12/19 14:48,"909 River St, Atlanta, GA 30301" +227410,Apple Airpods Headphones,1,150,07/18/19 10:53,"231 Willow St, Portland, OR 97035" +227411,Bose SoundSport Headphones,1,99.99,07/09/19 21:43,"905 Sunset St, Seattle, WA 98101" +227412,34in Ultrawide Monitor,1,379.99,07/27/19 14:34,"721 Washington St, Los Angeles, CA 90001" +227413,AAA Batteries (4-pack),2,2.99,07/03/19 15:39,"680 Dogwood St, New York City, NY 10001" +227414,Wired Headphones,1,11.99,07/24/19 20:28,"666 Cedar St, Seattle, WA 98101" +227415,USB-C Charging Cable,1,11.95,07/07/19 14:35,"368 1st St, Los Angeles, CA 90001" +227416,27in 4K Gaming Monitor,1,389.99,07/25/19 03:24,"527 Jackson St, Boston, MA 02215" +227417,Apple Airpods Headphones,1,150,07/30/19 16:48,"379 4th St, New York City, NY 10001" +227418,AA Batteries (4-pack),1,3.84,07/04/19 16:05,"874 West St, San Francisco, CA 94016" +227419,Flatscreen TV,1,300,07/23/19 21:49,"378 2nd St, San Francisco, CA 94016" +227420,Wired Headphones,1,11.99,07/28/19 11:46,"838 7th St, San Francisco, CA 94016" +227421,Wired Headphones,1,11.99,07/02/19 17:12,"741 Lincoln St, Boston, MA 02215" +227422,27in 4K Gaming Monitor,1,389.99,07/27/19 22:32,"539 Walnut St, Portland, ME 04101" +227423,27in FHD Monitor,1,149.99,07/09/19 19:22,"738 River St, Portland, OR 97035" +227424,Wired Headphones,1,11.99,07/21/19 13:52,"385 Highland St, Boston, MA 02215" +227425,AA Batteries (4-pack),1,3.84,07/21/19 15:54,"332 10th St, New York City, NY 10001" +227426,USB-C Charging Cable,1,11.95,07/03/19 12:50,"966 Highland St, Dallas, TX 75001" +227427,Lightning Charging Cable,1,14.95,07/15/19 14:27,"560 Washington St, Boston, MA 02215" +227428,34in Ultrawide Monitor,1,379.99,07/21/19 17:04,"690 Cherry St, Atlanta, GA 30301" +227429,USB-C Charging Cable,1,11.95,07/20/19 11:29,"782 Hill St, San Francisco, CA 94016" +227430,USB-C Charging Cable,1,11.95,07/04/19 14:07,"95 Willow St, Portland, OR 97035" +227431,iPhone,1,700,07/18/19 19:01,"612 Lake St, San Francisco, CA 94016" +227432,Lightning Charging Cable,1,14.95,07/23/19 11:21,"590 12th St, Boston, MA 02215" +227433,Flatscreen TV,1,300,07/26/19 10:04,"44 Jackson St, Los Angeles, CA 90001" +227434,Lightning Charging Cable,1,14.95,07/15/19 10:56,"295 Chestnut St, Boston, MA 02215" +227435,ThinkPad Laptop,1,999.99,07/16/19 20:33,"579 Chestnut St, Los Angeles, CA 90001" +227436,Macbook Pro Laptop,1,1700,07/18/19 18:10,"672 Maple St, Atlanta, GA 30301" +227437,AA Batteries (4-pack),1,3.84,07/29/19 09:29,"816 Willow St, New York City, NY 10001" +227438,Lightning Charging Cable,1,14.95,07/12/19 10:16,"403 Willow St, New York City, NY 10001" +227439,Lightning Charging Cable,1,14.95,07/22/19 08:24,"301 Lakeview St, Atlanta, GA 30301" +227440,Google Phone,1,600,07/19/19 13:20,"556 South St, San Francisco, CA 94016" +227441,Vareebadd Phone,1,400,07/14/19 07:01,"976 Main St, Boston, MA 02215" +227442,AAA Batteries (4-pack),2,2.99,07/05/19 01:02,"847 Washington St, San Francisco, CA 94016" +227443,Wired Headphones,1,11.99,07/30/19 21:24,"262 Maple St, Austin, TX 73301" +227444,Lightning Charging Cable,1,14.95,07/22/19 12:34,"860 Lakeview St, Dallas, TX 75001" +227445,AA Batteries (4-pack),2,3.84,07/28/19 19:17,"175 Dogwood St, Dallas, TX 75001" +227446,Lightning Charging Cable,1,14.95,07/06/19 13:59,"486 Meadow St, New York City, NY 10001" +227447,Lightning Charging Cable,1,14.95,07/06/19 08:56,"365 Lincoln St, Boston, MA 02215" +227448,USB-C Charging Cable,1,11.95,07/22/19 19:23,"212 Dogwood St, Boston, MA 02215" +227449,Lightning Charging Cable,1,14.95,07/29/19 10:27,"92 Forest St, New York City, NY 10001" +227450,Wired Headphones,1,11.99,07/13/19 21:26,"424 1st St, Portland, OR 97035" +227451,USB-C Charging Cable,1,11.95,07/04/19 20:46,"461 10th St, Seattle, WA 98101" +227452,AA Batteries (4-pack),1,3.84,07/21/19 09:05,"635 Wilson St, Boston, MA 02215" +227453,27in 4K Gaming Monitor,1,389.99,07/29/19 10:46,"958 Highland St, New York City, NY 10001" +227454,27in FHD Monitor,1,149.99,07/24/19 22:59,"879 North St, Los Angeles, CA 90001" +227455,USB-C Charging Cable,1,11.95,07/22/19 14:23,"748 10th St, Los Angeles, CA 90001" +227456,AAA Batteries (4-pack),2,2.99,07/22/19 17:51,"426 West St, Portland, OR 97035" +227457,34in Ultrawide Monitor,1,379.99,07/27/19 22:00,"15 Forest St, San Francisco, CA 94016" +227458,USB-C Charging Cable,1,11.95,07/29/19 10:43,"114 Willow St, New York City, NY 10001" +227459,iPhone,1,700,07/04/19 21:41,"698 1st St, Los Angeles, CA 90001" +227460,AA Batteries (4-pack),1,3.84,07/03/19 15:47,"306 Church St, Los Angeles, CA 90001" +227461,iPhone,1,700,07/31/19 20:13,"958 Spruce St, New York City, NY 10001" +227462,34in Ultrawide Monitor,1,379.99,07/29/19 07:26,"104 South St, Portland, OR 97035" +227463,AA Batteries (4-pack),2,3.84,07/09/19 14:36,"223 Elm St, Seattle, WA 98101" +227464,Wired Headphones,1,11.99,07/17/19 19:57,"863 Madison St, Atlanta, GA 30301" +227465,Apple Airpods Headphones,1,150,07/20/19 19:37,"114 Sunset St, Dallas, TX 75001" +227466,Flatscreen TV,1,300,07/24/19 22:57,"245 14th St, Los Angeles, CA 90001" +227467,Apple Airpods Headphones,1,150,07/01/19 21:16,"411 Hickory St, New York City, NY 10001" +227468,Lightning Charging Cable,1,14.95,07/22/19 00:36,"55 River St, Portland, OR 97035" +227469,AA Batteries (4-pack),1,3.84,07/03/19 19:59,"242 Jefferson St, Boston, MA 02215" +227470,Lightning Charging Cable,1,14.95,07/24/19 00:42,"814 North St, Boston, MA 02215" +227471,USB-C Charging Cable,2,11.95,07/10/19 19:16,"24 2nd St, Atlanta, GA 30301" +227472,Lightning Charging Cable,1,14.95,07/17/19 17:39,"398 Lakeview St, New York City, NY 10001" +227473,27in FHD Monitor,1,149.99,07/04/19 18:43,"732 Jackson St, Seattle, WA 98101" +227474,AAA Batteries (4-pack),2,2.99,07/29/19 08:29,"658 14th St, Los Angeles, CA 90001" +227475,Apple Airpods Headphones,1,150,07/27/19 23:09,"91 5th St, San Francisco, CA 94016" +227476,Apple Airpods Headphones,1,150,07/19/19 16:54,"266 1st St, San Francisco, CA 94016" +227477,AAA Batteries (4-pack),1,2.99,07/11/19 12:00,"993 Johnson St, Los Angeles, CA 90001" +227478,Bose SoundSport Headphones,1,99.99,07/22/19 08:47,"510 Main St, New York City, NY 10001" +227479,34in Ultrawide Monitor,1,379.99,07/31/19 14:44,"73 Park St, Atlanta, GA 30301" +227480,Lightning Charging Cable,1,14.95,07/02/19 08:15,"695 North St, New York City, NY 10001" +227481,AA Batteries (4-pack),1,3.84,07/24/19 18:52,"656 Main St, San Francisco, CA 94016" +227482,Wired Headphones,1,11.99,07/28/19 22:08,"924 Maple St, New York City, NY 10001" +227483,AA Batteries (4-pack),1,3.84,07/27/19 17:37,"196 1st St, San Francisco, CA 94016" +227484,AAA Batteries (4-pack),4,2.99,07/30/19 09:23,"32 Lakeview St, New York City, NY 10001" +227485,iPhone,1,700,07/06/19 08:12,"548 Cherry St, Atlanta, GA 30301" +227486,AAA Batteries (4-pack),1,2.99,07/23/19 19:58,"871 Park St, Dallas, TX 75001" +227487,27in 4K Gaming Monitor,1,389.99,07/01/19 13:24,"539 5th St, San Francisco, CA 94016" +227488,27in 4K Gaming Monitor,1,389.99,07/30/19 18:05,"586 8th St, Portland, ME 04101" +227489,Wired Headphones,1,11.99,07/12/19 09:42,"635 Maple St, New York City, NY 10001" +227490,AAA Batteries (4-pack),1,2.99,07/13/19 15:02,"290 Main St, San Francisco, CA 94016" +227491,Wired Headphones,1,11.99,07/05/19 23:01,"478 Sunset St, Boston, MA 02215" +227492,AAA Batteries (4-pack),1,2.99,07/17/19 08:34,"883 Park St, Boston, MA 02215" +227493,Apple Airpods Headphones,1,150,07/13/19 21:21,"380 Park St, Los Angeles, CA 90001" +227494,20in Monitor,1,109.99,07/04/19 13:18,"376 Center St, San Francisco, CA 94016" +227495,Lightning Charging Cable,1,14.95,07/04/19 00:03,"527 Lincoln St, San Francisco, CA 94016" +227496,AAA Batteries (4-pack),2,2.99,07/21/19 07:38,"519 2nd St, San Francisco, CA 94016" +227497,Apple Airpods Headphones,1,150,07/30/19 19:25,"892 River St, Austin, TX 73301" +227498,Google Phone,1,600,07/04/19 14:39,"199 6th St, Dallas, TX 75001" +227499,AAA Batteries (4-pack),1,2.99,07/21/19 12:46,"123 2nd St, Atlanta, GA 30301" +227500,AAA Batteries (4-pack),1,2.99,07/26/19 11:32,"696 Jackson St, Boston, MA 02215" +227501,AAA Batteries (4-pack),1,2.99,07/25/19 08:47,"676 13th St, Austin, TX 73301" +227502,Vareebadd Phone,1,400,07/17/19 14:21,"812 Wilson St, Atlanta, GA 30301" +227502,USB-C Charging Cable,2,11.95,07/17/19 14:21,"812 Wilson St, Atlanta, GA 30301" +227503,Vareebadd Phone,1,400,07/05/19 09:09,"524 10th St, Los Angeles, CA 90001" +227504,AAA Batteries (4-pack),1,2.99,07/07/19 12:25,"428 Spruce St, New York City, NY 10001" +227505,AA Batteries (4-pack),1,3.84,07/01/19 10:56,"31 Jefferson St, New York City, NY 10001" +227505,ThinkPad Laptop,1,999.99,07/01/19 10:56,"31 Jefferson St, New York City, NY 10001" +227506,Bose SoundSport Headphones,1,99.99,07/15/19 23:37,"484 Lincoln St, Austin, TX 73301" +227507,Apple Airpods Headphones,1,150,07/25/19 16:42,"489 Chestnut St, San Francisco, CA 94016" +227508,ThinkPad Laptop,1,999.99,07/08/19 13:35,"771 Cherry St, Seattle, WA 98101" +227509,Lightning Charging Cable,1,14.95,07/25/19 16:34,"463 Sunset St, Austin, TX 73301" +227510,27in FHD Monitor,1,149.99,07/10/19 13:57,"286 Park St, Los Angeles, CA 90001" +227511,27in 4K Gaming Monitor,1,389.99,07/24/19 08:16,"926 Hickory St, Austin, TX 73301" +227512,AA Batteries (4-pack),2,3.84,07/30/19 18:39,"685 2nd St, Boston, MA 02215" +227513,USB-C Charging Cable,1,11.95,07/23/19 02:04,"293 Lakeview St, San Francisco, CA 94016" +227514,Lightning Charging Cable,1,14.95,07/30/19 17:10,"206 Lincoln St, Los Angeles, CA 90001" +227515,Lightning Charging Cable,1,14.95,07/31/19 12:09,"872 Church St, San Francisco, CA 94016" +227516,Apple Airpods Headphones,1,150,07/05/19 17:07,"236 1st St, Portland, OR 97035" +227517,AAA Batteries (4-pack),4,2.99,07/01/19 20:06,"178 Jefferson St, San Francisco, CA 94016" +227518,Lightning Charging Cable,1,14.95,07/08/19 13:30,"781 Church St, New York City, NY 10001" +227519,Wired Headphones,1,11.99,07/09/19 21:52,"90 Cedar St, San Francisco, CA 94016" +227520,USB-C Charging Cable,1,11.95,07/04/19 04:58,"324 Spruce St, New York City, NY 10001" +227521,Flatscreen TV,1,300,07/12/19 09:54,"627 Park St, Boston, MA 02215" +227522,Lightning Charging Cable,1,14.95,07/14/19 06:01,"661 Meadow St, Seattle, WA 98101" +227523,AA Batteries (4-pack),1,3.84,07/30/19 19:15,"345 Sunset St, Dallas, TX 75001" +227524,20in Monitor,1,109.99,07/09/19 22:39,"487 Willow St, Austin, TX 73301" +227525,AA Batteries (4-pack),3,3.84,07/20/19 12:06,"866 Elm St, New York City, NY 10001" +227526,Bose SoundSport Headphones,1,99.99,07/20/19 16:23,"596 Cedar St, Seattle, WA 98101" +227527,Bose SoundSport Headphones,1,99.99,07/04/19 19:58,"870 Adams St, Boston, MA 02215" +227528,AAA Batteries (4-pack),1,2.99,07/20/19 02:09,"581 Lake St, New York City, NY 10001" +227529,AA Batteries (4-pack),1,3.84,07/11/19 15:34,"83 8th St, Portland, OR 97035" +227530,27in FHD Monitor,1,149.99,07/06/19 20:30,"749 North St, San Francisco, CA 94016" +227531,Apple Airpods Headphones,1,150,07/24/19 19:57,"5 Elm St, Seattle, WA 98101" +227532,Lightning Charging Cable,1,14.95,07/31/19 16:44,"232 Chestnut St, New York City, NY 10001" +227533,Bose SoundSport Headphones,1,99.99,07/28/19 13:07,"786 Lakeview St, New York City, NY 10001" +227534,AA Batteries (4-pack),2,3.84,07/14/19 20:31,"481 Dogwood St, Dallas, TX 75001" +227535,AAA Batteries (4-pack),3,2.99,07/29/19 22:56,"902 Park St, Atlanta, GA 30301" +227536,Lightning Charging Cable,1,14.95,07/15/19 09:57,"439 Willow St, Boston, MA 02215" +227537,Lightning Charging Cable,1,14.95,07/21/19 08:57,"628 11th St, Boston, MA 02215" +227538,Wired Headphones,1,11.99,07/25/19 06:12,"830 13th St, Los Angeles, CA 90001" +227539,Apple Airpods Headphones,1,150,07/04/19 14:45,"438 6th St, San Francisco, CA 94016" +227540,AAA Batteries (4-pack),1,2.99,07/31/19 17:25,"893 Hill St, San Francisco, CA 94016" +227541,27in FHD Monitor,1,149.99,07/04/19 17:52,"819 Adams St, Atlanta, GA 30301" +227542,AAA Batteries (4-pack),1,2.99,07/08/19 12:30,"676 Willow St, San Francisco, CA 94016" +227543,Lightning Charging Cable,1,14.95,07/13/19 21:55,"977 Walnut St, Portland, OR 97035" +227544,27in 4K Gaming Monitor,1,389.99,07/31/19 23:09,"938 9th St, Boston, MA 02215" +227545,AAA Batteries (4-pack),1,2.99,07/02/19 16:10,"465 West St, Seattle, WA 98101" +227546,iPhone,1,700,07/10/19 16:44,"786 11th St, Los Angeles, CA 90001" +227547,AAA Batteries (4-pack),1,2.99,07/22/19 13:38,"724 North St, Austin, TX 73301" +227548,USB-C Charging Cable,1,11.95,07/25/19 20:47,"817 Adams St, New York City, NY 10001" +227549,USB-C Charging Cable,1,11.95,07/29/19 08:29,"970 10th St, Boston, MA 02215" +227550,AAA Batteries (4-pack),3,2.99,07/18/19 15:10,"389 West St, San Francisco, CA 94016" +227551,Wired Headphones,1,11.99,07/06/19 12:55,"935 Lakeview St, Atlanta, GA 30301" +227552,Google Phone,1,600,07/11/19 08:12,"623 Dogwood St, Los Angeles, CA 90001" +227553,AA Batteries (4-pack),1,3.84,07/24/19 14:12,"360 Forest St, Portland, OR 97035" +227554,Lightning Charging Cable,1,14.95,07/27/19 21:15,"602 River St, San Francisco, CA 94016" +227555,AA Batteries (4-pack),1,3.84,07/15/19 18:23,"93 Forest St, San Francisco, CA 94016" +227556,Lightning Charging Cable,1,14.95,07/08/19 10:09,"783 Forest St, New York City, NY 10001" +227557,AAA Batteries (4-pack),1,2.99,07/01/19 20:37,"318 Church St, San Francisco, CA 94016" +227558,34in Ultrawide Monitor,1,379.99,07/31/19 19:20,"393 Meadow St, Dallas, TX 75001" +227559,ThinkPad Laptop,1,999.99,07/01/19 21:53,"403 Lakeview St, Dallas, TX 75001" +227560,Lightning Charging Cable,2,14.95,07/30/19 22:08,"243 5th St, Seattle, WA 98101" +227561,AA Batteries (4-pack),1,3.84,07/29/19 16:50,"951 Madison St, Boston, MA 02215" +227562,AAA Batteries (4-pack),1,2.99,07/06/19 12:41,"764 Highland St, Boston, MA 02215" +227563,Bose SoundSport Headphones,1,99.99,07/09/19 22:01,"741 Jefferson St, Los Angeles, CA 90001" +227564,27in 4K Gaming Monitor,1,389.99,07/04/19 09:59,"620 Walnut St, San Francisco, CA 94016" +227565,AA Batteries (4-pack),1,3.84,07/12/19 20:11,"866 Walnut St, Seattle, WA 98101" +227566,20in Monitor,1,109.99,07/27/19 14:57,"889 10th St, Portland, OR 97035" +227567,AA Batteries (4-pack),1,3.84,07/02/19 17:26,"339 Lake St, Seattle, WA 98101" +227568,Wired Headphones,1,11.99,07/03/19 17:04,"954 River St, Los Angeles, CA 90001" +227569,iPhone,1,700,07/26/19 02:14,"766 2nd St, Los Angeles, CA 90001" +227570,Wired Headphones,1,11.99,07/09/19 11:09,"870 Park St, San Francisco, CA 94016" +227571,AA Batteries (4-pack),1,3.84,07/24/19 14:26,"635 2nd St, New York City, NY 10001" +227572,AAA Batteries (4-pack),3,2.99,07/25/19 19:17,"297 Chestnut St, Seattle, WA 98101" +227573,Apple Airpods Headphones,1,150,07/23/19 12:43,"162 Adams St, Seattle, WA 98101" +227574,iPhone,1,700,07/13/19 07:33,"549 1st St, Los Angeles, CA 90001" +227575,USB-C Charging Cable,2,11.95,07/11/19 11:41,"801 Highland St, San Francisco, CA 94016" +227576,AAA Batteries (4-pack),1,2.99,07/02/19 21:02,"390 Cherry St, Atlanta, GA 30301" +227577,USB-C Charging Cable,1,11.95,07/25/19 14:47,"552 1st St, Los Angeles, CA 90001" +227578,Bose SoundSport Headphones,1,99.99,07/20/19 01:12,"106 Pine St, San Francisco, CA 94016" +227579,Bose SoundSport Headphones,1,99.99,07/27/19 19:20,"279 Adams St, Seattle, WA 98101" +227580,Wired Headphones,1,11.99,07/03/19 20:36,"350 4th St, Dallas, TX 75001" +227581,Apple Airpods Headphones,1,150,07/05/19 16:06,"789 7th St, Boston, MA 02215" +227582,AAA Batteries (4-pack),1,2.99,07/02/19 14:31,"730 Spruce St, San Francisco, CA 94016" +227583,Wired Headphones,1,11.99,07/19/19 16:52,"782 Church St, Dallas, TX 75001" +227584,27in FHD Monitor,1,149.99,07/16/19 15:20,"592 Maple St, Seattle, WA 98101" +227585,Lightning Charging Cable,1,14.95,07/26/19 20:37,"525 North St, Portland, OR 97035" +227586,USB-C Charging Cable,1,11.95,07/18/19 13:08,"23 12th St, San Francisco, CA 94016" +227587,ThinkPad Laptop,1,999.99,07/02/19 20:25,"748 Jefferson St, Austin, TX 73301" +227588,Apple Airpods Headphones,1,150,07/26/19 12:43,"638 Elm St, Dallas, TX 75001" +227589,USB-C Charging Cable,1,11.95,07/05/19 17:37,"145 South St, Atlanta, GA 30301" +227590,Bose SoundSport Headphones,1,99.99,07/24/19 16:04,"281 1st St, Dallas, TX 75001" +227591,20in Monitor,1,109.99,07/02/19 21:57,"542 West St, Los Angeles, CA 90001" +227592,AAA Batteries (4-pack),1,2.99,07/25/19 18:24,"954 14th St, San Francisco, CA 94016" +227593,USB-C Charging Cable,1,11.95,07/03/19 20:25,"520 Johnson St, Atlanta, GA 30301" +227594,USB-C Charging Cable,1,11.95,07/07/19 12:21,"976 Hickory St, San Francisco, CA 94016" +227595,27in 4K Gaming Monitor,1,389.99,07/31/19 09:58,"172 13th St, Dallas, TX 75001" +227596,Lightning Charging Cable,1,14.95,07/25/19 10:01,"562 6th St, Los Angeles, CA 90001" +227597,Lightning Charging Cable,2,14.95,07/01/19 10:26,"59 Walnut St, San Francisco, CA 94016" +227598,27in FHD Monitor,1,149.99,07/13/19 18:06,"93 10th St, San Francisco, CA 94016" +227599,iPhone,1,700,07/04/19 20:49,"342 13th St, Atlanta, GA 30301" +227600,USB-C Charging Cable,1,11.95,07/10/19 13:01,"858 9th St, New York City, NY 10001" +227601,USB-C Charging Cable,1,11.95,07/11/19 06:48,"134 Wilson St, Los Angeles, CA 90001" +227602,Macbook Pro Laptop,1,1700,07/29/19 14:19,"742 Lakeview St, Seattle, WA 98101" +227603,Bose SoundSport Headphones,1,99.99,07/09/19 17:55,"709 12th St, New York City, NY 10001" +227604,Lightning Charging Cable,1,14.95,07/18/19 23:15,"255 Forest St, Los Angeles, CA 90001" +227605,iPhone,1,700,07/27/19 09:07,"478 13th St, Boston, MA 02215" +227606,Wired Headphones,1,11.99,07/16/19 12:31,"993 Spruce St, Portland, OR 97035" +227607,AA Batteries (4-pack),1,3.84,07/17/19 08:14,"589 Madison St, Los Angeles, CA 90001" +227608,Bose SoundSport Headphones,1,99.99,07/19/19 15:33,"987 Spruce St, Dallas, TX 75001" +227609,27in 4K Gaming Monitor,1,389.99,07/08/19 20:44,"690 Maple St, San Francisco, CA 94016" +227610,Macbook Pro Laptop,1,1700,07/24/19 06:46,"807 Pine St, Portland, OR 97035" +227611,Macbook Pro Laptop,1,1700,07/02/19 15:50,"788 4th St, Boston, MA 02215" +227612,Apple Airpods Headphones,1,150,07/30/19 18:13,"266 4th St, Austin, TX 73301" +227613,AA Batteries (4-pack),1,3.84,07/02/19 13:17,"810 Willow St, Los Angeles, CA 90001" +227614,Flatscreen TV,1,300,07/09/19 14:35,"167 13th St, San Francisco, CA 94016" +227615,27in FHD Monitor,1,149.99,07/26/19 15:13,"960 Jackson St, Los Angeles, CA 90001" +227616,Lightning Charging Cable,2,14.95,07/03/19 18:03,"841 Cherry St, San Francisco, CA 94016" +227617,Wired Headphones,1,11.99,07/23/19 21:07,"360 South St, Dallas, TX 75001" +227618,AAA Batteries (4-pack),1,2.99,07/16/19 19:13,"852 Adams St, Los Angeles, CA 90001" +227619,USB-C Charging Cable,1,11.95,07/24/19 09:23,"715 8th St, Los Angeles, CA 90001" +227620,iPhone,1,700,07/30/19 22:57,"254 Cedar St, Los Angeles, CA 90001" +227621,27in 4K Gaming Monitor,1,389.99,07/02/19 11:17,"294 Jefferson St, Austin, TX 73301" +227622,Lightning Charging Cable,1,14.95,07/16/19 08:55,"359 11th St, New York City, NY 10001" +227623,Bose SoundSport Headphones,1,99.99,07/20/19 07:18,"951 Dogwood St, Boston, MA 02215" +227624,AA Batteries (4-pack),1,3.84,07/16/19 17:46,"825 Walnut St, Los Angeles, CA 90001" +227625,Bose SoundSport Headphones,1,99.99,07/04/19 20:56,"92 North St, New York City, NY 10001" +227626,USB-C Charging Cable,2,11.95,07/01/19 19:28,"863 South St, Portland, OR 97035" +227627,Lightning Charging Cable,1,14.95,07/09/19 23:33,"52 Ridge St, New York City, NY 10001" +227628,Lightning Charging Cable,1,14.95,07/04/19 17:41,"955 Walnut St, Dallas, TX 75001" +227629,Flatscreen TV,1,300,07/24/19 16:45,"423 Elm St, San Francisco, CA 94016" +227630,AA Batteries (4-pack),1,3.84,07/24/19 12:57,"102 Cherry St, Boston, MA 02215" +227631,Apple Airpods Headphones,1,150,07/16/19 02:28,"126 12th St, Dallas, TX 75001" +227632,AA Batteries (4-pack),1,3.84,07/24/19 13:26,"267 8th St, San Francisco, CA 94016" +227633,Lightning Charging Cable,1,14.95,07/31/19 19:53,"144 Willow St, New York City, NY 10001" +227634,Lightning Charging Cable,1,14.95,07/13/19 21:17,"637 Elm St, San Francisco, CA 94016" +227635,Wired Headphones,1,11.99,07/15/19 21:37,"455 Meadow St, San Francisco, CA 94016" +227636,Apple Airpods Headphones,1,150,07/07/19 19:01,"537 North St, Boston, MA 02215" +227637,AA Batteries (4-pack),2,3.84,07/28/19 13:43,"48 Center St, Dallas, TX 75001" +227638,Lightning Charging Cable,1,14.95,07/01/19 12:39,"435 12th St, Austin, TX 73301" +227639,Bose SoundSport Headphones,1,99.99,07/11/19 08:55,"485 5th St, New York City, NY 10001" +227640,AAA Batteries (4-pack),1,2.99,07/29/19 23:17,"359 Park St, Dallas, TX 75001" +227641,AAA Batteries (4-pack),1,2.99,07/02/19 18:00,"522 1st St, San Francisco, CA 94016" +227642,34in Ultrawide Monitor,1,379.99,07/07/19 01:16,"630 Dogwood St, San Francisco, CA 94016" +227643,27in FHD Monitor,1,149.99,07/13/19 09:11,"18 14th St, New York City, NY 10001" +227644,Lightning Charging Cable,1,14.95,07/09/19 19:59,"507 8th St, Dallas, TX 75001" +227645,27in 4K Gaming Monitor,1,389.99,07/25/19 15:40,"76 14th St, New York City, NY 10001" +227646,Flatscreen TV,1,300,07/21/19 16:59,"289 Pine St, San Francisco, CA 94016" +227647,AAA Batteries (4-pack),1,2.99,07/16/19 10:16,"356 Lake St, Dallas, TX 75001" +227648,Wired Headphones,1,11.99,07/06/19 16:36,"18 Park St, Portland, OR 97035" +227649,Macbook Pro Laptop,1,1700,07/11/19 22:26,"67 Hickory St, San Francisco, CA 94016" +227650,AAA Batteries (4-pack),3,2.99,07/18/19 14:59,"589 Madison St, New York City, NY 10001" +227651,27in FHD Monitor,1,149.99,07/05/19 10:14,"403 1st St, Boston, MA 02215" +227652,20in Monitor,1,109.99,07/08/19 07:11,"7 Cherry St, Austin, TX 73301" +227652,Apple Airpods Headphones,1,150,07/08/19 07:11,"7 Cherry St, Austin, TX 73301" +227653,20in Monitor,1,109.99,07/02/19 23:31,"879 Dogwood St, New York City, NY 10001" +227654,Bose SoundSport Headphones,1,99.99,07/26/19 10:57,"449 Hill St, Seattle, WA 98101" +227655,Wired Headphones,1,11.99,07/31/19 19:28,"168 Park St, Los Angeles, CA 90001" +227656,Wired Headphones,1,11.99,07/01/19 08:08,"50 Jefferson St, Atlanta, GA 30301" +227657,Wired Headphones,1,11.99,07/25/19 12:36,"821 Hickory St, Los Angeles, CA 90001" +227658,AA Batteries (4-pack),1,3.84,07/07/19 14:03,"567 Sunset St, Dallas, TX 75001" +227659,Bose SoundSport Headphones,1,99.99,07/16/19 16:31,"872 Elm St, Los Angeles, CA 90001" +227660,Wired Headphones,1,11.99,07/13/19 14:36,"318 Center St, San Francisco, CA 94016" +227661,USB-C Charging Cable,1,11.95,07/21/19 18:57,"308 Walnut St, Dallas, TX 75001" +227662,34in Ultrawide Monitor,1,379.99,07/01/19 13:42,"183 Lake St, Atlanta, GA 30301" +227663,Apple Airpods Headphones,1,150,07/15/19 04:27,"610 8th St, San Francisco, CA 94016" +227664,AA Batteries (4-pack),2,3.84,07/06/19 14:38,"454 9th St, Los Angeles, CA 90001" +227665,Wired Headphones,1,11.99,07/08/19 10:40,"297 Main St, Boston, MA 02215" +227666,iPhone,1,700,07/20/19 13:16,"949 North St, New York City, NY 10001" +227666,Lightning Charging Cable,1,14.95,07/20/19 13:16,"949 North St, New York City, NY 10001" +227666,Wired Headphones,1,11.99,07/20/19 13:16,"949 North St, New York City, NY 10001" +227667,27in 4K Gaming Monitor,1,389.99,07/08/19 20:13,"970 10th St, Seattle, WA 98101" +227668,Bose SoundSport Headphones,1,99.99,07/08/19 19:42,"80 Jackson St, Los Angeles, CA 90001" +227669,Wired Headphones,1,11.99,07/11/19 17:20,"517 Elm St, New York City, NY 10001" +227670,AAA Batteries (4-pack),1,2.99,07/25/19 19:00,"746 Forest St, San Francisco, CA 94016" +227671,AA Batteries (4-pack),1,3.84,07/21/19 00:28,"274 Park St, San Francisco, CA 94016" +227672,Apple Airpods Headphones,1,150,07/31/19 13:43,"333 River St, Boston, MA 02215" +227673,LG Washing Machine,1,600.0,07/11/19 12:17,"462 Wilson St, New York City, NY 10001" +227674,Macbook Pro Laptop,1,1700,07/20/19 05:47,"428 Forest St, Dallas, TX 75001" +227675,27in 4K Gaming Monitor,1,389.99,07/17/19 13:21,"87 Elm St, San Francisco, CA 94016" +227676,Wired Headphones,1,11.99,07/30/19 21:50,"948 Park St, Boston, MA 02215" +227677,USB-C Charging Cable,1,11.95,07/26/19 21:01,"969 Center St, New York City, NY 10001" +227678,AA Batteries (4-pack),1,3.84,07/06/19 18:53,"851 Center St, Austin, TX 73301" +227679,AA Batteries (4-pack),2,3.84,07/24/19 19:53,"938 Dogwood St, Los Angeles, CA 90001" +227680,Bose SoundSport Headphones,1,99.99,07/23/19 19:04,"213 Jackson St, San Francisco, CA 94016" +227681,Macbook Pro Laptop,1,1700,07/04/19 22:30,"512 Elm St, San Francisco, CA 94016" +227682,ThinkPad Laptop,1,999.99,07/23/19 08:53,"310 Church St, Los Angeles, CA 90001" +227682,Apple Airpods Headphones,1,150,07/23/19 08:53,"310 Church St, Los Angeles, CA 90001" +227683,AA Batteries (4-pack),1,3.84,07/10/19 03:40,"632 Lincoln St, San Francisco, CA 94016" +227684,Lightning Charging Cable,1,14.95,07/12/19 10:33,"841 South St, Atlanta, GA 30301" +227685,AA Batteries (4-pack),1,3.84,07/10/19 18:32,"168 South St, Dallas, TX 75001" +227686,20in Monitor,1,109.99,07/19/19 17:35,"299 Highland St, Seattle, WA 98101" +227687,Lightning Charging Cable,1,14.95,07/25/19 22:30,"592 Cherry St, Boston, MA 02215" +227688,AA Batteries (4-pack),4,3.84,07/23/19 17:48,"804 4th St, New York City, NY 10001" +227689,AA Batteries (4-pack),1,3.84,07/23/19 16:22,"813 6th St, Seattle, WA 98101" +227690,Bose SoundSport Headphones,1,99.99,07/25/19 19:01,"395 10th St, Dallas, TX 75001" +227691,AA Batteries (4-pack),1,3.84,07/17/19 22:06,"609 North St, San Francisco, CA 94016" +227692,AAA Batteries (4-pack),1,2.99,07/11/19 17:18,"253 Park St, Seattle, WA 98101" +227693,AA Batteries (4-pack),1,3.84,07/16/19 08:46,"106 Main St, San Francisco, CA 94016" +227694,AA Batteries (4-pack),2,3.84,07/02/19 10:45,"683 Cherry St, Atlanta, GA 30301" +227695,USB-C Charging Cable,1,11.95,07/25/19 14:20,"244 1st St, Los Angeles, CA 90001" +,,,,, +227696,27in 4K Gaming Monitor,1,389.99,07/25/19 16:29,"517 Dogwood St, Portland, OR 97035" +227697,AAA Batteries (4-pack),2,2.99,07/01/19 13:11,"612 Cedar St, San Francisco, CA 94016" +227698,USB-C Charging Cable,1,11.95,07/24/19 18:14,"727 Elm St, Atlanta, GA 30301" +227699,27in FHD Monitor,1,149.99,07/05/19 21:39,"46 West St, Austin, TX 73301" +227700,AAA Batteries (4-pack),1,2.99,07/25/19 11:39,"771 8th St, Boston, MA 02215" +227701,USB-C Charging Cable,1,11.95,07/21/19 21:21,"863 Cedar St, Atlanta, GA 30301" +227702,Flatscreen TV,1,300,07/22/19 09:22,"67 Dogwood St, San Francisco, CA 94016" +227703,Bose SoundSport Headphones,1,99.99,07/13/19 21:01,"428 6th St, Portland, OR 97035" +227704,AAA Batteries (4-pack),1,2.99,07/10/19 13:37,"86 Spruce St, San Francisco, CA 94016" +227705,Bose SoundSport Headphones,1,99.99,07/03/19 20:50,"38 Lake St, San Francisco, CA 94016" +227706,Lightning Charging Cable,1,14.95,07/14/19 09:44,"312 8th St, New York City, NY 10001" +227707,AAA Batteries (4-pack),1,2.99,07/26/19 09:07,"483 2nd St, Seattle, WA 98101" +227708,iPhone,1,700,07/21/19 18:43,"966 6th St, Boston, MA 02215" +227709,Google Phone,1,600,07/21/19 15:02,"601 Walnut St, Atlanta, GA 30301" +227710,Lightning Charging Cable,1,14.95,07/25/19 21:09,"875 Sunset St, Austin, TX 73301" +227711,Lightning Charging Cable,1,14.95,07/29/19 16:57,"888 Walnut St, San Francisco, CA 94016" +,,,,, +227712,Wired Headphones,1,11.99,07/13/19 12:15,"64 Madison St, Dallas, TX 75001" +227712,Lightning Charging Cable,2,14.95,07/13/19 12:15,"64 Madison St, Dallas, TX 75001" +227713,Lightning Charging Cable,1,14.95,07/17/19 14:29,"490 4th St, Dallas, TX 75001" +227714,Apple Airpods Headphones,1,150,07/16/19 14:52,"553 13th St, Los Angeles, CA 90001" +227715,Google Phone,1,600,07/08/19 07:33,"54 Washington St, Portland, ME 04101" +227715,USB-C Charging Cable,1,11.95,07/08/19 07:33,"54 Washington St, Portland, ME 04101" +227716,USB-C Charging Cable,1,11.95,07/16/19 20:49,"809 Center St, New York City, NY 10001" +227717,Wired Headphones,1,11.99,07/13/19 22:23,"24 2nd St, Portland, OR 97035" +227718,Wired Headphones,1,11.99,07/24/19 20:55,"51 Forest St, Atlanta, GA 30301" +227719,USB-C Charging Cable,1,11.95,07/29/19 12:52,"203 Cedar St, Los Angeles, CA 90001" +227720,AAA Batteries (4-pack),1,2.99,07/20/19 15:52,"143 1st St, New York City, NY 10001" +227721,USB-C Charging Cable,2,11.95,07/05/19 13:37,"246 8th St, Seattle, WA 98101" +227722,Lightning Charging Cable,1,14.95,07/05/19 09:06,"845 Chestnut St, Atlanta, GA 30301" +227723,AAA Batteries (4-pack),1,2.99,07/27/19 20:43,"23 4th St, Atlanta, GA 30301" +227724,iPhone,1,700,07/06/19 11:26,"108 Chestnut St, Atlanta, GA 30301" +227724,Lightning Charging Cable,1,14.95,07/06/19 11:26,"108 Chestnut St, Atlanta, GA 30301" +227724,Apple Airpods Headphones,1,150,07/06/19 11:26,"108 Chestnut St, Atlanta, GA 30301" +227725,Bose SoundSport Headphones,1,99.99,07/30/19 13:28,"434 13th St, San Francisco, CA 94016" +227726,AA Batteries (4-pack),1,3.84,07/14/19 12:50,"747 6th St, New York City, NY 10001" +227727,27in 4K Gaming Monitor,1,389.99,07/31/19 19:09,"379 Meadow St, Seattle, WA 98101" +227728,AAA Batteries (4-pack),3,2.99,07/25/19 08:55,"722 Adams St, Dallas, TX 75001" +227729,Wired Headphones,1,11.99,07/04/19 20:30,"236 11th St, Dallas, TX 75001" +227730,AA Batteries (4-pack),1,3.84,07/12/19 11:41,"551 1st St, San Francisco, CA 94016" +227730,AAA Batteries (4-pack),1,2.99,07/12/19 11:41,"551 1st St, San Francisco, CA 94016" +227731,USB-C Charging Cable,1,11.95,07/01/19 14:40,"940 Pine St, New York City, NY 10001" +227732,Apple Airpods Headphones,1,150,07/06/19 21:55,"811 6th St, Los Angeles, CA 90001" +227733,AA Batteries (4-pack),1,3.84,07/20/19 14:13,"872 2nd St, Los Angeles, CA 90001" +227734,ThinkPad Laptop,1,999.99,07/14/19 15:44,"420 7th St, New York City, NY 10001" +227735,Flatscreen TV,1,300,07/22/19 14:52,"395 10th St, New York City, NY 10001" +227736,USB-C Charging Cable,1,11.95,07/31/19 12:58,"658 13th St, Boston, MA 02215" +227737,AAA Batteries (4-pack),2,2.99,07/09/19 13:19,"120 West St, Boston, MA 02215" +227738,AA Batteries (4-pack),1,3.84,07/30/19 21:48,"399 Jackson St, Los Angeles, CA 90001" +227739,Lightning Charging Cable,1,14.95,07/04/19 23:04,"502 Forest St, Boston, MA 02215" +227740,27in FHD Monitor,1,149.99,07/11/19 19:23,"585 Jackson St, Atlanta, GA 30301" +227741,USB-C Charging Cable,1,11.95,07/31/19 20:05,"683 9th St, San Francisco, CA 94016" +227742,AA Batteries (4-pack),1,3.84,07/30/19 10:58,"964 5th St, Los Angeles, CA 90001" +227743,34in Ultrawide Monitor,1,379.99,07/12/19 17:14,"913 Lincoln St, Austin, TX 73301" +227744,AA Batteries (4-pack),1,3.84,07/08/19 20:29,"395 Park St, Dallas, TX 75001" +227745,AAA Batteries (4-pack),2,2.99,07/13/19 17:32,"62 Center St, Boston, MA 02215" +227746,Flatscreen TV,1,300,07/29/19 19:29,"492 Hill St, Los Angeles, CA 90001" +227747,Apple Airpods Headphones,1,150,07/04/19 11:07,"687 Forest St, San Francisco, CA 94016" +227748,AAA Batteries (4-pack),1,2.99,07/09/19 13:48,"439 Church St, Austin, TX 73301" +227749,Wired Headphones,1,11.99,07/22/19 19:53,"370 14th St, Seattle, WA 98101" +227750,Bose SoundSport Headphones,1,99.99,07/10/19 15:09,"721 Main St, San Francisco, CA 94016" +227751,Wired Headphones,1,11.99,07/19/19 14:18,"454 Jefferson St, New York City, NY 10001" +227752,27in 4K Gaming Monitor,1,389.99,07/18/19 10:37,"654 Pine St, Portland, OR 97035" +227753,Lightning Charging Cable,1,14.95,07/15/19 09:04,"225 Washington St, San Francisco, CA 94016" +227754,Bose SoundSport Headphones,1,99.99,07/24/19 16:06,"162 Jefferson St, Los Angeles, CA 90001" +227755,Flatscreen TV,1,300,07/26/19 11:57,"297 5th St, New York City, NY 10001" +227756,27in FHD Monitor,1,149.99,07/02/19 22:47,"390 2nd St, San Francisco, CA 94016" +227757,AAA Batteries (4-pack),1,2.99,07/12/19 14:37,"143 6th St, Los Angeles, CA 90001" +227758,USB-C Charging Cable,1,11.95,07/15/19 12:44,"57 Washington St, Boston, MA 02215" +227759,Google Phone,1,600,07/03/19 10:46,"260 Main St, Portland, ME 04101" +227760,Apple Airpods Headphones,1,150,07/01/19 19:08,"757 Chestnut St, San Francisco, CA 94016" +227761,Apple Airpods Headphones,1,150,07/05/19 13:58,"756 2nd St, San Francisco, CA 94016" +227762,Macbook Pro Laptop,1,1700,07/09/19 14:37,"221 Spruce St, Seattle, WA 98101" +227763,Lightning Charging Cable,2,14.95,07/22/19 20:15,"389 West St, San Francisco, CA 94016" +227764,Flatscreen TV,1,300,07/03/19 19:09,"877 Cedar St, Los Angeles, CA 90001" +227765,iPhone,1,700,07/18/19 23:44,"190 4th St, Boston, MA 02215" +227766,Wired Headphones,1,11.99,07/23/19 12:35,"396 Lake St, Dallas, TX 75001" +227767,AAA Batteries (4-pack),1,2.99,07/12/19 22:00,"478 Washington St, Austin, TX 73301" +227768,Lightning Charging Cable,1,14.95,07/05/19 19:27,"90 Johnson St, Portland, ME 04101" +227769,20in Monitor,1,109.99,07/21/19 22:11,"643 Willow St, San Francisco, CA 94016" +227770,Lightning Charging Cable,1,14.95,07/24/19 11:25,"618 Highland St, Los Angeles, CA 90001" +227771,AA Batteries (4-pack),1,3.84,07/26/19 14:26,"126 Church St, New York City, NY 10001" +227772,USB-C Charging Cable,1,11.95,07/06/19 20:01,"455 Cherry St, Los Angeles, CA 90001" +227773,USB-C Charging Cable,1,11.95,07/03/19 21:28,"701 Hickory St, Seattle, WA 98101" +227774,Apple Airpods Headphones,1,150,07/16/19 21:58,"566 13th St, Atlanta, GA 30301" +227775,Bose SoundSport Headphones,1,99.99,07/22/19 09:39,"517 Dogwood St, Atlanta, GA 30301" +227776,Wired Headphones,1,11.99,07/20/19 15:34,"478 2nd St, New York City, NY 10001" +227777,Apple Airpods Headphones,1,150,07/10/19 12:07,"293 2nd St, Portland, OR 97035" +227778,Wired Headphones,1,11.99,07/11/19 19:51,"433 Johnson St, Atlanta, GA 30301" +227779,Wired Headphones,1,11.99,07/24/19 19:50,"530 Church St, New York City, NY 10001" +227780,AA Batteries (4-pack),1,3.84,07/20/19 19:34,"752 13th St, New York City, NY 10001" +227781,Macbook Pro Laptop,1,1700,07/08/19 12:46,"533 14th St, Atlanta, GA 30301" +227782,Lightning Charging Cable,1,14.95,07/07/19 12:27,"759 6th St, San Francisco, CA 94016" +227783,Lightning Charging Cable,1,14.95,07/30/19 19:15,"962 8th St, Boston, MA 02215" +227784,Wired Headphones,1,11.99,07/27/19 01:29,"596 Cedar St, New York City, NY 10001" +227785,Wired Headphones,1,11.99,07/24/19 21:36,"757 Elm St, Atlanta, GA 30301" +227786,Apple Airpods Headphones,1,150,07/09/19 12:19,"653 Ridge St, Atlanta, GA 30301" +227787,20in Monitor,1,109.99,07/20/19 10:31,"310 1st St, Boston, MA 02215" +227788,Apple Airpods Headphones,1,150,07/16/19 12:07,"307 Highland St, Seattle, WA 98101" +227789,27in FHD Monitor,1,149.99,07/30/19 11:20,"586 West St, Atlanta, GA 30301" +227790,27in FHD Monitor,1,149.99,07/23/19 02:12,"768 Walnut St, San Francisco, CA 94016" +227791,LG Washing Machine,1,600.0,07/02/19 10:15,"403 Center St, San Francisco, CA 94016" +227792,Bose SoundSport Headphones,1,99.99,07/30/19 14:11,"324 Park St, Seattle, WA 98101" +227793,27in 4K Gaming Monitor,1,389.99,07/20/19 13:07,"5 Lakeview St, San Francisco, CA 94016" +227794,iPhone,1,700,07/07/19 14:35,"893 Lincoln St, Boston, MA 02215" +227795,LG Dryer,1,600.0,07/12/19 21:06,"610 14th St, Seattle, WA 98101" +227796,Bose SoundSport Headphones,1,99.99,07/23/19 10:19,"718 Hill St, San Francisco, CA 94016" +227797,Bose SoundSport Headphones,1,99.99,07/27/19 22:16,"984 Johnson St, Austin, TX 73301" +227798,34in Ultrawide Monitor,1,379.99,07/11/19 12:23,"355 Cedar St, Atlanta, GA 30301" +227799,Wired Headphones,1,11.99,07/17/19 22:20,"873 Cedar St, Atlanta, GA 30301" +227800,Flatscreen TV,1,300,07/29/19 22:34,"645 Wilson St, Boston, MA 02215" +227801,AAA Batteries (4-pack),1,2.99,07/09/19 22:08,"716 Hickory St, Portland, ME 04101" +227802,USB-C Charging Cable,1,11.95,07/15/19 19:49,"173 Hickory St, San Francisco, CA 94016" +227803,Wired Headphones,1,11.99,07/10/19 19:03,"214 Cherry St, Portland, ME 04101" +227804,USB-C Charging Cable,1,11.95,07/02/19 10:01,"646 Lakeview St, New York City, NY 10001" +227805,AAA Batteries (4-pack),1,2.99,07/13/19 13:00,"942 5th St, San Francisco, CA 94016" +227806,Apple Airpods Headphones,1,150,07/19/19 15:22,"968 7th St, Atlanta, GA 30301" +227807,Lightning Charging Cable,1,14.95,07/31/19 13:21,"323 13th St, Portland, OR 97035" +227808,Macbook Pro Laptop,1,1700,07/20/19 12:10,"548 7th St, San Francisco, CA 94016" +227809,Wired Headphones,1,11.99,07/08/19 12:29,"781 Madison St, Los Angeles, CA 90001" +227810,USB-C Charging Cable,1,11.95,07/22/19 11:55,"238 2nd St, Dallas, TX 75001" +227811,USB-C Charging Cable,1,11.95,07/27/19 11:11,"4 Hill St, San Francisco, CA 94016" +227812,Bose SoundSport Headphones,1,99.99,07/02/19 21:17,"673 West St, Dallas, TX 75001" +227813,Flatscreen TV,1,300,07/11/19 09:09,"68 Jackson St, Dallas, TX 75001" +227814,iPhone,1,700,07/01/19 11:59,"764 Hickory St, Dallas, TX 75001" +227815,AA Batteries (4-pack),1,3.84,07/05/19 16:39,"395 Park St, Atlanta, GA 30301" +227816,iPhone,1,700,07/11/19 14:21,"597 Lakeview St, Atlanta, GA 30301" +227817,AA Batteries (4-pack),1,3.84,07/08/19 13:53,"192 Meadow St, Austin, TX 73301" +227818,34in Ultrawide Monitor,1,379.99,07/22/19 10:12,"258 River St, San Francisco, CA 94016" +227819,Macbook Pro Laptop,1,1700,07/29/19 09:13,"910 Highland St, Seattle, WA 98101" +227820,ThinkPad Laptop,1,999.99,07/05/19 22:30,"823 14th St, Dallas, TX 75001" +227821,AA Batteries (4-pack),2,3.84,07/27/19 12:55,"837 Sunset St, Boston, MA 02215" +227822,Vareebadd Phone,1,400,07/24/19 09:07,"2 1st St, New York City, NY 10001" +227822,Bose SoundSport Headphones,1,99.99,07/24/19 09:07,"2 1st St, New York City, NY 10001" +227823,27in 4K Gaming Monitor,1,389.99,07/18/19 10:40,"425 Ridge St, Los Angeles, CA 90001" +227824,Wired Headphones,1,11.99,07/31/19 00:41,"682 Hill St, Dallas, TX 75001" +227825,iPhone,1,700,07/24/19 11:11,"304 Main St, San Francisco, CA 94016" +227826,Flatscreen TV,1,300,07/02/19 17:37,"27 Madison St, Portland, OR 97035" +227827,Wired Headphones,1,11.99,07/06/19 11:04,"192 Main St, San Francisco, CA 94016" +227827,Bose SoundSport Headphones,1,99.99,07/06/19 11:04,"192 Main St, San Francisco, CA 94016" +227828,Apple Airpods Headphones,1,150,07/06/19 00:17,"673 8th St, Boston, MA 02215" +227829,34in Ultrawide Monitor,1,379.99,07/24/19 08:06,"194 Ridge St, Boston, MA 02215" +227830,AAA Batteries (4-pack),2,2.99,07/06/19 17:47,"447 12th St, Los Angeles, CA 90001" +227831,Wired Headphones,1,11.99,07/19/19 10:43,"394 1st St, Atlanta, GA 30301" +227832,USB-C Charging Cable,1,11.95,07/02/19 18:49,"853 14th St, Boston, MA 02215" +227833,Google Phone,1,600,07/15/19 08:54,"418 8th St, New York City, NY 10001" +227834,27in 4K Gaming Monitor,1,389.99,07/21/19 18:39,"145 Center St, Los Angeles, CA 90001" +227835,AAA Batteries (4-pack),1,2.99,07/09/19 19:31,"105 Willow St, New York City, NY 10001" +227836,27in 4K Gaming Monitor,1,389.99,07/20/19 22:21,"535 13th St, Atlanta, GA 30301" +227837,Bose SoundSport Headphones,1,99.99,07/25/19 14:38,"418 Lincoln St, San Francisco, CA 94016" +227838,Wired Headphones,1,11.99,07/02/19 13:20,"4 South St, Boston, MA 02215" +227839,AAA Batteries (4-pack),1,2.99,07/15/19 12:51,"436 6th St, San Francisco, CA 94016" +227840,AAA Batteries (4-pack),1,2.99,07/15/19 10:53,"127 Lake St, Portland, OR 97035" +227841,USB-C Charging Cable,1,11.95,07/27/19 12:31,"833 12th St, San Francisco, CA 94016" +227842,Apple Airpods Headphones,1,150,07/16/19 19:44,"618 Jackson St, New York City, NY 10001" +227842,USB-C Charging Cable,2,11.95,07/16/19 19:44,"618 Jackson St, New York City, NY 10001" +227843,Apple Airpods Headphones,1,150,07/27/19 20:13,"921 Cherry St, Portland, OR 97035" +227844,USB-C Charging Cable,1,11.95,07/26/19 17:41,"998 7th St, San Francisco, CA 94016" +227845,Wired Headphones,1,11.99,07/22/19 22:59,"526 Spruce St, Dallas, TX 75001" +227846,AAA Batteries (4-pack),2,2.99,07/15/19 12:33,"393 Lakeview St, Los Angeles, CA 90001" +227847,34in Ultrawide Monitor,1,379.99,07/06/19 16:56,"644 10th St, Atlanta, GA 30301" +227848,USB-C Charging Cable,1,11.95,07/12/19 01:07,"775 Sunset St, Dallas, TX 75001" +227849,AA Batteries (4-pack),1,3.84,07/29/19 21:46,"707 Hickory St, San Francisco, CA 94016" +227850,Lightning Charging Cable,1,14.95,07/08/19 20:42,"955 5th St, San Francisco, CA 94016" +227851,Flatscreen TV,1,300,07/25/19 21:00,"68 Madison St, San Francisco, CA 94016" +227852,Lightning Charging Cable,1,14.95,07/23/19 17:20,"66 Lake St, Los Angeles, CA 90001" +227853,Bose SoundSport Headphones,1,99.99,07/24/19 20:51,"224 Lake St, Los Angeles, CA 90001" +227854,AA Batteries (4-pack),2,3.84,07/01/19 19:00,"247 Sunset St, Los Angeles, CA 90001" +227855,Wired Headphones,1,11.99,07/24/19 13:22,"647 Cherry St, Atlanta, GA 30301" +227856,Apple Airpods Headphones,1,150,07/07/19 13:50,"90 River St, Austin, TX 73301" +227857,27in 4K Gaming Monitor,1,389.99,07/22/19 15:07,"569 5th St, Dallas, TX 75001" +227858,AAA Batteries (4-pack),3,2.99,07/07/19 14:43,"437 Chestnut St, New York City, NY 10001" +227859,Wired Headphones,1,11.99,07/07/19 09:59,"773 Hickory St, Atlanta, GA 30301" +227860,20in Monitor,1,109.99,07/07/19 22:37,"825 Lake St, Atlanta, GA 30301" +227861,Bose SoundSport Headphones,1,99.99,07/08/19 11:04,"226 4th St, New York City, NY 10001" +227862,34in Ultrawide Monitor,1,379.99,07/16/19 18:53,"432 Cherry St, Los Angeles, CA 90001" +227863,USB-C Charging Cable,1,11.95,07/28/19 20:56,"529 Sunset St, San Francisco, CA 94016" +227864,Wired Headphones,1,11.99,07/15/19 19:47,"458 Meadow St, Austin, TX 73301" +227865,Lightning Charging Cable,1,14.95,07/20/19 22:49,"296 Washington St, Boston, MA 02215" +227866,27in 4K Gaming Monitor,1,389.99,07/13/19 06:19,"455 8th St, San Francisco, CA 94016" +227867,AAA Batteries (4-pack),1,2.99,07/15/19 13:43,"215 Dogwood St, New York City, NY 10001" +227868,34in Ultrawide Monitor,1,379.99,07/31/19 12:41,"950 13th St, Atlanta, GA 30301" +227869,Lightning Charging Cable,1,14.95,07/16/19 22:52,"635 Forest St, Dallas, TX 75001" +227870,Wired Headphones,1,11.99,07/25/19 22:49,"410 Hickory St, New York City, NY 10001" +227871,Lightning Charging Cable,1,14.95,07/31/19 11:44,"627 4th St, Austin, TX 73301" +227872,Wired Headphones,1,11.99,07/16/19 20:33,"599 Park St, New York City, NY 10001" +227873,34in Ultrawide Monitor,1,379.99,07/28/19 16:31,"372 Walnut St, Los Angeles, CA 90001" +227874,Google Phone,1,600,07/19/19 12:24,"67 Dogwood St, Atlanta, GA 30301" +227875,Lightning Charging Cable,2,14.95,07/12/19 21:05,"118 North St, San Francisco, CA 94016" +227876,USB-C Charging Cable,1,11.95,07/14/19 19:10,"168 Lincoln St, Dallas, TX 75001" +227877,AAA Batteries (4-pack),1,2.99,07/26/19 11:40,"144 Wilson St, Los Angeles, CA 90001" +227878,Wired Headphones,1,11.99,07/15/19 20:50,"349 Chestnut St, Austin, TX 73301" +227879,Bose SoundSport Headphones,1,99.99,07/27/19 19:20,"188 Maple St, Atlanta, GA 30301" +227880,ThinkPad Laptop,1,999.99,07/27/19 10:01,"440 Highland St, Portland, OR 97035" +227881,AA Batteries (4-pack),1,3.84,07/14/19 13:08,"360 Madison St, Dallas, TX 75001" +227882,AAA Batteries (4-pack),2,2.99,07/19/19 09:25,"298 Walnut St, Los Angeles, CA 90001" +227883,Lightning Charging Cable,1,14.95,07/03/19 18:40,"923 2nd St, New York City, NY 10001" +227884,20in Monitor,1,109.99,07/27/19 12:32,"95 Church St, San Francisco, CA 94016" +227885,AA Batteries (4-pack),1,3.84,07/18/19 10:55,"251 Johnson St, San Francisco, CA 94016" +227886,ThinkPad Laptop,1,999.99,07/23/19 12:33,"129 1st St, San Francisco, CA 94016" +227887,Apple Airpods Headphones,1,150,07/24/19 15:49,"133 Walnut St, Portland, OR 97035" +227888,Lightning Charging Cable,1,14.95,07/07/19 09:04,"300 11th St, New York City, NY 10001" +227889,Lightning Charging Cable,1,14.95,07/10/19 10:05,"711 Washington St, Los Angeles, CA 90001" +227890,USB-C Charging Cable,1,11.95,07/16/19 17:04,"214 12th St, New York City, NY 10001" +227891,USB-C Charging Cable,1,11.95,07/18/19 20:02,"803 10th St, San Francisco, CA 94016" +227892,Flatscreen TV,1,300,07/09/19 09:35,"915 Sunset St, Los Angeles, CA 90001" +227893,Lightning Charging Cable,1,14.95,07/19/19 13:50,"358 Lincoln St, Austin, TX 73301" +227894,Bose SoundSport Headphones,1,99.99,07/12/19 16:39,"905 River St, San Francisco, CA 94016" +227895,Lightning Charging Cable,1,14.95,07/29/19 17:08,"7 11th St, Seattle, WA 98101" +227896,Lightning Charging Cable,1,14.95,07/20/19 14:09,"826 14th St, Los Angeles, CA 90001" +227897,Apple Airpods Headphones,1,150,07/17/19 09:50,"187 South St, Boston, MA 02215" +227898,Apple Airpods Headphones,1,150,07/20/19 14:34,"397 10th St, Atlanta, GA 30301" +227899,AAA Batteries (4-pack),1,2.99,07/07/19 07:05,"975 Highland St, Seattle, WA 98101" +227900,Bose SoundSport Headphones,1,99.99,07/21/19 08:03,"639 5th St, Los Angeles, CA 90001" +227901,Wired Headphones,1,11.99,07/21/19 10:36,"762 Jackson St, Portland, OR 97035" +227902,27in FHD Monitor,1,149.99,07/06/19 20:57,"342 Chestnut St, Atlanta, GA 30301" +227903,AA Batteries (4-pack),1,3.84,07/30/19 12:22,"796 1st St, Austin, TX 73301" +227904,Lightning Charging Cable,1,14.95,07/17/19 15:16,"155 Lincoln St, Seattle, WA 98101" +227905,AAA Batteries (4-pack),1,2.99,07/03/19 11:58,"965 Cedar St, San Francisco, CA 94016" +227906,Wired Headphones,1,11.99,07/15/19 12:32,"883 4th St, Portland, OR 97035" +227907,Lightning Charging Cable,1,14.95,07/23/19 19:09,"799 Cherry St, Boston, MA 02215" +227908,AA Batteries (4-pack),1,3.84,07/06/19 13:45,"102 11th St, San Francisco, CA 94016" +227909,Vareebadd Phone,1,400,07/04/19 15:35,"912 13th St, New York City, NY 10001" +227910,iPhone,1,700,07/18/19 12:02,"498 Ridge St, Seattle, WA 98101" +227910,Lightning Charging Cable,1,14.95,07/18/19 12:02,"498 Ridge St, Seattle, WA 98101" +227911,Lightning Charging Cable,1,14.95,07/18/19 18:09,"786 13th St, Portland, OR 97035" +227912,20in Monitor,1,109.99,07/26/19 20:11,"78 6th St, Boston, MA 02215" +227913,Lightning Charging Cable,1,14.95,07/13/19 14:00,"216 River St, New York City, NY 10001" +227913,27in 4K Gaming Monitor,1,389.99,07/13/19 14:00,"216 River St, New York City, NY 10001" +227914,27in 4K Gaming Monitor,1,389.99,07/19/19 13:13,"105 Jackson St, Austin, TX 73301" +227915,USB-C Charging Cable,1,11.95,07/10/19 20:24,"737 1st St, Atlanta, GA 30301" +227916,AA Batteries (4-pack),1,3.84,07/24/19 20:51,"10 North St, Los Angeles, CA 90001" +227917,AAA Batteries (4-pack),1,2.99,07/26/19 19:09,"437 Chestnut St, San Francisco, CA 94016" +227918,Flatscreen TV,1,300,07/31/19 18:10,"63 Center St, Portland, OR 97035" +227919,Apple Airpods Headphones,1,150,07/03/19 17:48,"70 Chestnut St, Los Angeles, CA 90001" +227920,20in Monitor,1,109.99,07/15/19 04:15,"653 6th St, Austin, TX 73301" +227921,Bose SoundSport Headphones,1,99.99,07/31/19 18:36,"563 Dogwood St, New York City, NY 10001" +227922,Lightning Charging Cable,2,14.95,07/03/19 23:09,"773 Adams St, San Francisco, CA 94016" +227923,Wired Headphones,1,11.99,07/26/19 11:04,"838 North St, Los Angeles, CA 90001" +227924,27in FHD Monitor,1,149.99,07/18/19 15:33,"917 9th St, Dallas, TX 75001" +227925,USB-C Charging Cable,1,11.95,07/28/19 16:54,"648 Maple St, Atlanta, GA 30301" +227926,AA Batteries (4-pack),2,3.84,07/15/19 20:35,"983 Pine St, New York City, NY 10001" +227927,AAA Batteries (4-pack),1,2.99,07/09/19 16:06,"617 Madison St, New York City, NY 10001" +227928,USB-C Charging Cable,1,11.95,07/13/19 15:28,"307 Wilson St, Boston, MA 02215" +227929,AAA Batteries (4-pack),1,2.99,07/22/19 10:02,"532 Chestnut St, Portland, OR 97035" +227930,Lightning Charging Cable,1,14.95,07/21/19 12:44,"953 5th St, New York City, NY 10001" +227931,USB-C Charging Cable,1,11.95,07/22/19 11:29,"3 Johnson St, Dallas, TX 75001" +227932,27in 4K Gaming Monitor,1,389.99,07/06/19 07:47,"229 Wilson St, Los Angeles, CA 90001" +227933,Lightning Charging Cable,1,14.95,07/13/19 13:07,"274 10th St, Dallas, TX 75001" +227934,Flatscreen TV,1,300,07/09/19 19:42,"833 14th St, Dallas, TX 75001" +227935,Wired Headphones,2,11.99,07/03/19 17:07,"757 12th St, San Francisco, CA 94016" +227936,34in Ultrawide Monitor,1,379.99,07/05/19 10:07,"592 12th St, Seattle, WA 98101" +227937,Bose SoundSport Headphones,1,99.99,07/31/19 12:13,"841 Maple St, New York City, NY 10001" +227938,AA Batteries (4-pack),1,3.84,07/25/19 18:26,"376 1st St, Seattle, WA 98101" +227939,Apple Airpods Headphones,1,150,07/20/19 21:04,"534 West St, New York City, NY 10001" +227940,AAA Batteries (4-pack),2,2.99,07/14/19 19:42,"981 Ridge St, New York City, NY 10001" +227941,Bose SoundSport Headphones,1,99.99,07/27/19 14:11,"139 Hill St, San Francisco, CA 94016" +227942,Macbook Pro Laptop,1,1700,07/10/19 10:22,"886 Spruce St, Boston, MA 02215" +227943,27in FHD Monitor,1,149.99,07/07/19 12:40,"370 Wilson St, New York City, NY 10001" +227944,AAA Batteries (4-pack),1,2.99,07/25/19 00:00,"831 Hill St, Austin, TX 73301" +227945,Google Phone,1,600,07/01/19 21:29,"699 6th St, San Francisco, CA 94016" +227946,iPhone,1,700,07/02/19 22:46,"693 1st St, Boston, MA 02215" +227946,Lightning Charging Cable,1,14.95,07/02/19 22:46,"693 1st St, Boston, MA 02215" +227946,Apple Airpods Headphones,1,150,07/02/19 22:46,"693 1st St, Boston, MA 02215" +227947,AA Batteries (4-pack),1,3.84,07/07/19 10:43,"306 4th St, San Francisco, CA 94016" +227948,27in FHD Monitor,1,149.99,07/07/19 18:20,"469 13th St, Atlanta, GA 30301" +227949,USB-C Charging Cable,1,11.95,07/03/19 09:10,"921 South St, Dallas, TX 75001" +227950,Bose SoundSport Headphones,1,99.99,07/31/19 16:40,"134 Maple St, New York City, NY 10001" +227951,27in FHD Monitor,1,149.99,07/19/19 18:55,"61 West St, Boston, MA 02215" +227952,27in 4K Gaming Monitor,1,389.99,07/22/19 18:51,"591 Main St, Seattle, WA 98101" +227953,AAA Batteries (4-pack),2,2.99,07/20/19 20:30,"257 Madison St, Los Angeles, CA 90001" +227954,Apple Airpods Headphones,1,150,07/07/19 18:56,"422 Chestnut St, San Francisco, CA 94016" +227955,ThinkPad Laptop,1,999.99,07/02/19 08:55,"400 9th St, San Francisco, CA 94016" +227956,27in 4K Gaming Monitor,1,389.99,07/04/19 14:41,"778 Pine St, San Francisco, CA 94016" +227957,AA Batteries (4-pack),1,3.84,07/08/19 15:07,"603 Park St, Boston, MA 02215" +227958,AAA Batteries (4-pack),2,2.99,07/31/19 22:02,"365 Chestnut St, Dallas, TX 75001" +227959,Lightning Charging Cable,1,14.95,07/17/19 10:30,"947 Center St, San Francisco, CA 94016" +227960,AAA Batteries (4-pack),1,2.99,07/12/19 08:05,"922 5th St, Los Angeles, CA 90001" +227961,Lightning Charging Cable,1,14.95,07/09/19 07:36,"734 12th St, San Francisco, CA 94016" +227962,USB-C Charging Cable,1,11.95,07/31/19 16:56,"993 Lakeview St, Los Angeles, CA 90001" +227963,Lightning Charging Cable,1,14.95,07/03/19 19:24,"926 7th St, San Francisco, CA 94016" +227964,Bose SoundSport Headphones,1,99.99,07/16/19 12:22,"12 Hill St, Los Angeles, CA 90001" +227965,Lightning Charging Cable,1,14.95,07/06/19 19:25,"993 South St, San Francisco, CA 94016" +227966,20in Monitor,1,109.99,07/24/19 15:03,"503 6th St, San Francisco, CA 94016" +227967,Apple Airpods Headphones,1,150,07/24/19 16:46,"915 Washington St, Atlanta, GA 30301" +227968,AAA Batteries (4-pack),1,2.99,07/26/19 09:55,"55 West St, Austin, TX 73301" +227969,34in Ultrawide Monitor,1,379.99,07/30/19 17:05,"978 Hickory St, San Francisco, CA 94016" +227970,AAA Batteries (4-pack),1,2.99,07/09/19 11:42,"370 Jackson St, Los Angeles, CA 90001" +227971,Lightning Charging Cable,1,14.95,07/30/19 17:32,"711 Jefferson St, New York City, NY 10001" +227972,Wired Headphones,1,11.99,07/22/19 09:18,"494 1st St, Dallas, TX 75001" +227973,Lightning Charging Cable,1,14.95,07/22/19 14:30,"322 7th St, New York City, NY 10001" +227974,Wired Headphones,1,11.99,07/06/19 22:37,"102 Center St, Dallas, TX 75001" +227975,Wired Headphones,1,11.99,07/13/19 21:27,"514 Maple St, Dallas, TX 75001" +227976,AAA Batteries (4-pack),2,2.99,07/10/19 17:22,"236 1st St, Dallas, TX 75001" +227977,Wired Headphones,1,11.99,07/18/19 11:55,"569 9th St, Atlanta, GA 30301" +227978,20in Monitor,1,109.99,07/31/19 15:24,"110 Elm St, San Francisco, CA 94016" +227979,Lightning Charging Cable,1,14.95,07/22/19 15:35,"554 Chestnut St, New York City, NY 10001" +227980,Lightning Charging Cable,1,14.95,07/02/19 22:18,"116 Cedar St, Seattle, WA 98101" +227981,Google Phone,1,600,07/29/19 11:06,"301 10th St, Los Angeles, CA 90001" +227981,Wired Headphones,1,11.99,07/29/19 11:06,"301 10th St, Los Angeles, CA 90001" +227982,Lightning Charging Cable,2,14.95,07/06/19 14:31,"657 5th St, Dallas, TX 75001" +227983,27in FHD Monitor,1,149.99,07/29/19 03:51,"933 Lakeview St, San Francisco, CA 94016" +227984,AA Batteries (4-pack),1,3.84,07/29/19 18:47,"793 2nd St, Portland, OR 97035" +227985,27in 4K Gaming Monitor,1,389.99,07/01/19 21:18,"636 Chestnut St, New York City, NY 10001" +227986,USB-C Charging Cable,1,11.95,07/04/19 17:14,"141 River St, Portland, OR 97035" +227987,20in Monitor,1,109.99,07/01/19 13:51,"480 Chestnut St, Boston, MA 02215" +227988,USB-C Charging Cable,1,11.95,07/15/19 12:16,"77 Dogwood St, New York City, NY 10001" +227989,AAA Batteries (4-pack),2,2.99,07/19/19 23:07,"159 Pine St, San Francisco, CA 94016" +227990,AA Batteries (4-pack),1,3.84,07/10/19 15:56,"573 Forest St, Los Angeles, CA 90001" +227991,Apple Airpods Headphones,1,150,07/01/19 05:09,"731 Adams St, Boston, MA 02215" +227992,Bose SoundSport Headphones,1,99.99,07/31/19 19:22,"633 4th St, Los Angeles, CA 90001" +227993,AAA Batteries (4-pack),1,2.99,07/31/19 00:02,"330 Park St, Seattle, WA 98101" +227994,USB-C Charging Cable,1,11.95,07/27/19 11:33,"138 Willow St, Austin, TX 73301" +227995,27in FHD Monitor,1,149.99,07/29/19 23:03,"764 Elm St, Dallas, TX 75001" +227996,Lightning Charging Cable,2,14.95,07/08/19 01:44,"105 Madison St, Boston, MA 02215" +227997,Google Phone,1,600,07/06/19 14:30,"925 1st St, New York City, NY 10001" +227998,Lightning Charging Cable,1,14.95,07/16/19 13:41,"494 Hickory St, Seattle, WA 98101" +227999,34in Ultrawide Monitor,1,379.99,07/05/19 13:23,"213 Adams St, Portland, OR 97035" +228000,AAA Batteries (4-pack),2,2.99,07/26/19 20:21,"910 6th St, Los Angeles, CA 90001" +228001,27in 4K Gaming Monitor,1,389.99,07/16/19 09:48,"166 6th St, New York City, NY 10001" +228002,USB-C Charging Cable,2,11.95,07/25/19 12:43,"499 Elm St, Los Angeles, CA 90001" +228003,Bose SoundSport Headphones,1,99.99,07/01/19 23:53,"849 Cedar St, Los Angeles, CA 90001" +228004,USB-C Charging Cable,1,11.95,07/02/19 11:04,"557 Adams St, Dallas, TX 75001" +228005,Wired Headphones,1,11.99,07/06/19 18:54,"975 9th St, Dallas, TX 75001" +228006,AA Batteries (4-pack),1,3.84,07/14/19 02:35,"265 Jackson St, Los Angeles, CA 90001" +228007,Macbook Pro Laptop,1,1700,07/14/19 09:28,"56 Main St, Austin, TX 73301" +228008,Apple Airpods Headphones,1,150,07/10/19 21:04,"799 1st St, New York City, NY 10001" +228009,Apple Airpods Headphones,1,150,07/13/19 11:57,"619 Jefferson St, Dallas, TX 75001" +228010,AA Batteries (4-pack),2,3.84,07/28/19 23:20,"140 Church St, Atlanta, GA 30301" +228011,USB-C Charging Cable,1,11.95,07/02/19 08:55,"929 13th St, Boston, MA 02215" +228012,27in FHD Monitor,1,149.99,07/28/19 09:49,"586 Jackson St, San Francisco, CA 94016" +228013,USB-C Charging Cable,1,11.95,07/06/19 15:36,"917 River St, New York City, NY 10001" +228014,AA Batteries (4-pack),1,3.84,07/06/19 16:30,"798 Hill St, New York City, NY 10001" +228015,Google Phone,1,600,07/20/19 14:28,"991 Cedar St, Austin, TX 73301" +228016,ThinkPad Laptop,1,999.99,07/23/19 15:43,"549 South St, Seattle, WA 98101" +228017,Lightning Charging Cable,1,14.95,07/18/19 19:15,"268 Park St, New York City, NY 10001" +228018,USB-C Charging Cable,1,11.95,07/04/19 14:17,"497 Elm St, Seattle, WA 98101" +228019,ThinkPad Laptop,1,999.99,07/15/19 10:16,"294 2nd St, Austin, TX 73301" +228020,Google Phone,1,600,07/22/19 14:42,"442 Adams St, San Francisco, CA 94016" +228021,34in Ultrawide Monitor,1,379.99,07/28/19 14:19,"651 Madison St, Atlanta, GA 30301" +228022,27in 4K Gaming Monitor,1,389.99,07/31/19 13:05,"140 7th St, New York City, NY 10001" +228023,iPhone,1,700,07/29/19 09:49,"584 Forest St, Seattle, WA 98101" +228023,Wired Headphones,1,11.99,07/29/19 09:49,"584 Forest St, Seattle, WA 98101" +228024,Bose SoundSport Headphones,1,99.99,07/19/19 15:14,"568 Lake St, San Francisco, CA 94016" +228025,27in FHD Monitor,1,149.99,07/30/19 09:17,"18 13th St, Boston, MA 02215" +228026,AA Batteries (4-pack),1,3.84,07/03/19 03:35,"322 Walnut St, San Francisco, CA 94016" +228027,20in Monitor,1,109.99,07/02/19 08:37,"194 8th St, San Francisco, CA 94016" +228028,Apple Airpods Headphones,1,150,07/27/19 20:40,"499 Adams St, San Francisco, CA 94016" +228029,AA Batteries (4-pack),2,3.84,07/03/19 21:42,"801 14th St, Dallas, TX 75001" +228030,AA Batteries (4-pack),1,3.84,07/22/19 18:40,"430 Elm St, San Francisco, CA 94016" +228031,27in 4K Gaming Monitor,1,389.99,07/09/19 20:50,"616 5th St, Portland, OR 97035" +228032,Wired Headphones,1,11.99,07/05/19 18:22,"549 10th St, New York City, NY 10001" +228033,Bose SoundSport Headphones,1,99.99,07/05/19 10:30,"35 11th St, Los Angeles, CA 90001" +228034,Bose SoundSport Headphones,1,99.99,07/16/19 14:13,"717 Elm St, San Francisco, CA 94016" +228035,AAA Batteries (4-pack),1,2.99,07/02/19 10:16,"432 Spruce St, San Francisco, CA 94016" +228035,Bose SoundSport Headphones,1,99.99,07/02/19 10:16,"432 Spruce St, San Francisco, CA 94016" +228036,AAA Batteries (4-pack),2,2.99,07/20/19 20:35,"54 Meadow St, Seattle, WA 98101" +228037,Wired Headphones,1,11.99,07/02/19 20:38,"510 8th St, Los Angeles, CA 90001" +228038,USB-C Charging Cable,1,11.95,07/14/19 19:04,"132 12th St, Boston, MA 02215" +228039,AA Batteries (4-pack),1,3.84,07/22/19 17:28,"926 11th St, Atlanta, GA 30301" +228040,Apple Airpods Headphones,1,150,07/20/19 14:46,"830 Chestnut St, San Francisco, CA 94016" +228041,iPhone,1,700,07/16/19 14:46,"37 Washington St, Los Angeles, CA 90001" +228041,Wired Headphones,1,11.99,07/16/19 14:46,"37 Washington St, Los Angeles, CA 90001" +228042,Bose SoundSport Headphones,1,99.99,07/07/19 20:13,"193 9th St, Dallas, TX 75001" +228043,AA Batteries (4-pack),3,3.84,07/03/19 15:12,"121 Walnut St, Atlanta, GA 30301" +228044,Bose SoundSport Headphones,1,99.99,07/01/19 14:13,"797 Forest St, Austin, TX 73301" +228045,34in Ultrawide Monitor,1,379.99,07/06/19 06:26,"84 Spruce St, Atlanta, GA 30301" +228046,Wired Headphones,1,11.99,07/28/19 14:13,"932 Jefferson St, Seattle, WA 98101" +228047,Lightning Charging Cable,1,14.95,07/14/19 19:46,"171 Washington St, Dallas, TX 75001" +228048,ThinkPad Laptop,1,999.99,07/15/19 14:29,"379 Hill St, San Francisco, CA 94016" +228049,AAA Batteries (4-pack),1,2.99,07/06/19 18:16,"846 Jefferson St, New York City, NY 10001" +228050,20in Monitor,1,109.99,07/16/19 20:47,"272 Willow St, Portland, OR 97035" +228051,USB-C Charging Cable,1,11.95,07/14/19 21:04,"214 Sunset St, New York City, NY 10001" +228052,AAA Batteries (4-pack),1,2.99,07/26/19 12:35,"488 5th St, Seattle, WA 98101" +228053,AA Batteries (4-pack),1,3.84,07/10/19 19:07,"829 Willow St, Portland, OR 97035" +228054,AAA Batteries (4-pack),1,2.99,07/14/19 13:57,"464 Pine St, Boston, MA 02215" +228055,Lightning Charging Cable,1,14.95,07/21/19 11:08,"236 1st St, San Francisco, CA 94016" +228056,AA Batteries (4-pack),1,3.84,07/05/19 16:13,"418 Park St, Boston, MA 02215" +228057,Wired Headphones,1,11.99,07/04/19 21:53,"46 Church St, San Francisco, CA 94016" +228058,Apple Airpods Headphones,1,150,07/19/19 20:18,"568 Center St, San Francisco, CA 94016" +228059,Macbook Pro Laptop,1,1700,07/18/19 15:41,"826 6th St, Atlanta, GA 30301" +228060,Wired Headphones,1,11.99,07/18/19 15:07,"828 Lincoln St, San Francisco, CA 94016" +228061,iPhone,1,700,07/18/19 18:30,"357 North St, Los Angeles, CA 90001" +228062,20in Monitor,1,109.99,07/20/19 16:45,"285 8th St, Atlanta, GA 30301" +228063,AA Batteries (4-pack),1,3.84,07/03/19 02:26,"975 Jefferson St, Boston, MA 02215" +228064,Bose SoundSport Headphones,1,99.99,07/18/19 05:19,"762 Park St, Austin, TX 73301" +228065,Lightning Charging Cable,1,14.95,07/20/19 11:57,"506 1st St, Dallas, TX 75001" +228066,Bose SoundSport Headphones,1,99.99,07/26/19 19:26,"209 Jackson St, San Francisco, CA 94016" +228067,Lightning Charging Cable,2,14.95,07/09/19 19:21,"232 Elm St, San Francisco, CA 94016" +228068,27in 4K Gaming Monitor,1,389.99,07/17/19 19:08,"891 Church St, San Francisco, CA 94016" +228069,USB-C Charging Cable,2,11.95,07/10/19 13:50,"172 7th St, Atlanta, GA 30301" +228070,Bose SoundSport Headphones,1,99.99,07/07/19 05:04,"853 8th St, Dallas, TX 75001" +228071,AA Batteries (4-pack),1,3.84,07/11/19 19:03,"830 Madison St, Dallas, TX 75001" +228072,LG Washing Machine,1,600.0,07/05/19 19:36,"648 Highland St, Dallas, TX 75001" +228073,27in FHD Monitor,1,149.99,07/10/19 23:17,"713 Center St, New York City, NY 10001" +228074,Lightning Charging Cable,1,14.95,07/23/19 16:03,"455 Cherry St, New York City, NY 10001" +228075,Google Phone,1,600,07/27/19 22:16,"609 Washington St, Seattle, WA 98101" +228076,iPhone,1,700,07/02/19 07:20,"337 North St, Atlanta, GA 30301" +228076,Lightning Charging Cable,1,14.95,07/02/19 07:20,"337 North St, Atlanta, GA 30301" +228077,AAA Batteries (4-pack),2,2.99,07/02/19 23:13,"837 River St, Dallas, TX 75001" +228078,AAA Batteries (4-pack),1,2.99,07/13/19 18:25,"957 Hickory St, New York City, NY 10001" +228079,Vareebadd Phone,1,400,07/17/19 15:47,"174 North St, Boston, MA 02215" +228080,AAA Batteries (4-pack),1,2.99,07/07/19 14:19,"31 Ridge St, San Francisco, CA 94016" +228081,Apple Airpods Headphones,1,150,07/09/19 23:38,"532 Adams St, San Francisco, CA 94016" +228082,USB-C Charging Cable,1,11.95,07/07/19 15:44,"531 Washington St, Boston, MA 02215" +228083,Apple Airpods Headphones,1,150,07/20/19 06:52,"497 Highland St, Dallas, TX 75001" +228084,Bose SoundSport Headphones,1,99.99,07/29/19 22:06,"847 Dogwood St, San Francisco, CA 94016" +228085,Bose SoundSport Headphones,1,99.99,07/09/19 12:30,"112 1st St, New York City, NY 10001" +228086,AA Batteries (4-pack),1,3.84,07/14/19 11:17,"432 7th St, New York City, NY 10001" +228087,27in 4K Gaming Monitor,1,389.99,07/03/19 21:24,"509 Park St, Seattle, WA 98101" +228088,iPhone,1,700,07/14/19 13:11,"418 Spruce St, Austin, TX 73301" +228089,34in Ultrawide Monitor,1,379.99,07/21/19 14:34,"882 Meadow St, Boston, MA 02215" +228090,Lightning Charging Cable,1,14.95,07/17/19 08:44,"795 Johnson St, Portland, OR 97035" +228091,USB-C Charging Cable,1,11.95,07/18/19 13:19,"510 9th St, San Francisco, CA 94016" +228092,20in Monitor,1,109.99,07/08/19 20:00,"653 Wilson St, Portland, ME 04101" +228093,AA Batteries (4-pack),1,3.84,07/03/19 14:42,"471 Elm St, Los Angeles, CA 90001" +228094,Wired Headphones,2,11.99,07/10/19 14:33,"73 13th St, Austin, TX 73301" +228095,Bose SoundSport Headphones,1,99.99,07/12/19 12:07,"652 Main St, Seattle, WA 98101" +228096,34in Ultrawide Monitor,1,379.99,07/18/19 22:07,"96 Hickory St, Seattle, WA 98101" +228097,Lightning Charging Cable,1,14.95,07/06/19 09:24,"563 Hill St, Los Angeles, CA 90001" +228098,Bose SoundSport Headphones,1,99.99,07/04/19 23:09,"666 Hickory St, Dallas, TX 75001" +228099,USB-C Charging Cable,1,11.95,07/15/19 23:17,"961 Maple St, New York City, NY 10001" +228100,Google Phone,1,600,07/17/19 15:27,"215 Lake St, New York City, NY 10001" +228101,USB-C Charging Cable,1,11.95,07/14/19 10:29,"138 1st St, Los Angeles, CA 90001" +228102,AA Batteries (4-pack),1,3.84,07/29/19 18:43,"257 10th St, Atlanta, GA 30301" +228103,AAA Batteries (4-pack),1,2.99,07/22/19 20:09,"308 Forest St, San Francisco, CA 94016" +228104,USB-C Charging Cable,1,11.95,07/26/19 12:43,"226 Washington St, Los Angeles, CA 90001" +228105,Wired Headphones,1,11.99,07/03/19 10:35,"569 Elm St, San Francisco, CA 94016" +228106,Google Phone,1,600,07/21/19 15:55,"529 Cedar St, Austin, TX 73301" +228106,USB-C Charging Cable,1,11.95,07/21/19 15:55,"529 Cedar St, Austin, TX 73301" +228107,AA Batteries (4-pack),1,3.84,07/03/19 18:20,"723 13th St, Boston, MA 02215" +228108,Vareebadd Phone,1,400,07/16/19 16:51,"197 Pine St, New York City, NY 10001" +228108,Bose SoundSport Headphones,1,99.99,07/16/19 16:51,"197 Pine St, New York City, NY 10001" +228109,AAA Batteries (4-pack),1,2.99,07/04/19 18:56,"293 Jackson St, Atlanta, GA 30301" +228110,Flatscreen TV,1,300,07/18/19 10:12,"128 Lincoln St, Austin, TX 73301" +228111,Vareebadd Phone,1,400,07/30/19 16:02,"705 Willow St, Boston, MA 02215" +228111,USB-C Charging Cable,1,11.95,07/30/19 16:02,"705 Willow St, Boston, MA 02215" +228112,Lightning Charging Cable,1,14.95,07/29/19 18:36,"309 13th St, Boston, MA 02215" +228113,USB-C Charging Cable,1,11.95,07/05/19 19:52,"220 10th St, New York City, NY 10001" +228114,AA Batteries (4-pack),2,3.84,07/04/19 10:23,"823 13th St, Boston, MA 02215" +228115,AAA Batteries (4-pack),4,2.99,07/23/19 22:21,"648 1st St, New York City, NY 10001" +228116,AAA Batteries (4-pack),1,2.99,07/27/19 14:44,"735 Dogwood St, Boston, MA 02215" +228117,Wired Headphones,1,11.99,07/14/19 12:20,"904 9th St, San Francisco, CA 94016" +228118,Google Phone,1,600,07/07/19 17:42,"161 Highland St, Seattle, WA 98101" +228119,Google Phone,1,600,07/05/19 17:15,"508 9th St, New York City, NY 10001" +228120,AAA Batteries (4-pack),3,2.99,07/22/19 08:33,"383 Pine St, San Francisco, CA 94016" +228121,AA Batteries (4-pack),1,3.84,07/14/19 14:18,"950 South St, Atlanta, GA 30301" +228122,USB-C Charging Cable,1,11.95,07/12/19 22:30,"901 Elm St, Los Angeles, CA 90001" +228123,Flatscreen TV,1,300,07/26/19 09:28,"885 Lake St, San Francisco, CA 94016" +228124,Apple Airpods Headphones,1,150,07/12/19 21:11,"376 Meadow St, Los Angeles, CA 90001" +228125,34in Ultrawide Monitor,1,379.99,07/24/19 10:26,"570 13th St, Boston, MA 02215" +228126,AA Batteries (4-pack),3,3.84,07/20/19 09:06,"807 7th St, New York City, NY 10001" +228127,Lightning Charging Cable,2,14.95,07/20/19 16:55,"543 Willow St, Portland, ME 04101" +228128,Apple Airpods Headphones,1,150,07/05/19 11:49,"770 11th St, Dallas, TX 75001" +228129,USB-C Charging Cable,1,11.95,07/03/19 18:36,"678 Wilson St, Dallas, TX 75001" +228130,Lightning Charging Cable,1,14.95,07/10/19 01:11,"448 Meadow St, San Francisco, CA 94016" +228131,Lightning Charging Cable,1,14.95,07/28/19 21:07,"980 13th St, Portland, OR 97035" +228132,Google Phone,1,600,07/09/19 10:28,"613 Willow St, Portland, OR 97035" +228133,AAA Batteries (4-pack),2,2.99,07/08/19 06:24,"578 Spruce St, Boston, MA 02215" +228134,Macbook Pro Laptop,1,1700,07/24/19 20:42,"108 Dogwood St, Atlanta, GA 30301" +228135,Lightning Charging Cable,1,14.95,07/11/19 16:45,"99 Pine St, San Francisco, CA 94016" +228136,AAA Batteries (4-pack),3,2.99,07/04/19 12:45,"565 1st St, Austin, TX 73301" +228137,AAA Batteries (4-pack),1,2.99,07/25/19 23:18,"406 Spruce St, Boston, MA 02215" +228138,Lightning Charging Cable,2,14.95,07/13/19 15:15,"482 Elm St, Los Angeles, CA 90001" +228139,27in FHD Monitor,1,149.99,07/01/19 21:15,"948 Meadow St, Atlanta, GA 30301" +228140,Flatscreen TV,1,300,07/21/19 13:52,"67 Cedar St, Dallas, TX 75001" +228141,USB-C Charging Cable,1,11.95,07/20/19 09:59,"240 Lakeview St, New York City, NY 10001" +228142,USB-C Charging Cable,1,11.95,07/03/19 22:44,"500 2nd St, Los Angeles, CA 90001" +228143,Apple Airpods Headphones,1,150,07/17/19 12:05,"913 Jackson St, New York City, NY 10001" +228144,AAA Batteries (4-pack),1,2.99,07/23/19 18:22,"659 Hickory St, San Francisco, CA 94016" +228145,AAA Batteries (4-pack),2,2.99,07/23/19 11:26,"550 Park St, Boston, MA 02215" +228146,27in FHD Monitor,1,149.99,07/09/19 13:37,"319 Forest St, Los Angeles, CA 90001" +228147,20in Monitor,1,109.99,07/29/19 13:18,"682 Adams St, Los Angeles, CA 90001" +228148,Lightning Charging Cable,1,14.95,07/23/19 13:38,"797 4th St, Los Angeles, CA 90001" +228149,AAA Batteries (4-pack),2,2.99,07/25/19 21:07,"621 2nd St, Dallas, TX 75001" +228150,AA Batteries (4-pack),2,3.84,07/28/19 09:23,"281 Willow St, New York City, NY 10001" +228151,Wired Headphones,1,11.99,07/18/19 20:36,"788 Main St, Boston, MA 02215" +228152,Apple Airpods Headphones,1,150,07/05/19 11:45,"945 Lincoln St, Portland, ME 04101" +228153,Wired Headphones,2,11.99,07/05/19 16:24,"331 Spruce St, Boston, MA 02215" +228154,Bose SoundSport Headphones,1,99.99,07/30/19 13:02,"271 West St, Portland, ME 04101" +228155,27in FHD Monitor,1,149.99,07/16/19 13:17,"911 9th St, Boston, MA 02215" +228156,Wired Headphones,1,11.99,07/11/19 08:39,"650 Hickory St, Los Angeles, CA 90001" +228157,AAA Batteries (4-pack),1,2.99,07/23/19 14:00,"888 6th St, Atlanta, GA 30301" +228158,27in 4K Gaming Monitor,1,389.99,07/04/19 00:08,"451 Sunset St, Dallas, TX 75001" +228159,Apple Airpods Headphones,1,150,07/22/19 20:37,"148 Dogwood St, New York City, NY 10001" +228160,27in FHD Monitor,1,149.99,07/25/19 14:48,"100 12th St, New York City, NY 10001" +228161,iPhone,1,700,07/10/19 20:25,"727 Willow St, Austin, TX 73301" +228162,USB-C Charging Cable,1,11.95,07/29/19 20:16,"777 South St, Seattle, WA 98101" +228163,AA Batteries (4-pack),1,3.84,07/02/19 20:19,"14 4th St, Boston, MA 02215" +228164,USB-C Charging Cable,1,11.95,07/02/19 09:54,"972 Lakeview St, New York City, NY 10001" +228165,AAA Batteries (4-pack),2,2.99,07/15/19 13:16,"506 5th St, Portland, OR 97035" +228166,Apple Airpods Headphones,1,150,07/07/19 19:05,"387 Jackson St, Seattle, WA 98101" +228167,AAA Batteries (4-pack),1,2.99,07/21/19 19:57,"534 West St, San Francisco, CA 94016" +228168,Apple Airpods Headphones,1,150,07/08/19 22:05,"242 Ridge St, Los Angeles, CA 90001" +,,,,, +228169,Apple Airpods Headphones,1,150,07/05/19 19:14,"485 Sunset St, Seattle, WA 98101" +228170,Google Phone,1,600,07/31/19 10:09,"496 River St, Boston, MA 02215" +228171,AA Batteries (4-pack),1,3.84,07/02/19 13:08,"532 Chestnut St, Los Angeles, CA 90001" +228172,AAA Batteries (4-pack),2,2.99,07/07/19 11:21,"241 2nd St, San Francisco, CA 94016" +228173,Apple Airpods Headphones,1,150,07/02/19 19:19,"108 Chestnut St, Portland, OR 97035" +228174,USB-C Charging Cable,1,11.95,07/03/19 21:10,"831 Highland St, New York City, NY 10001" +228175,Lightning Charging Cable,1,14.95,07/11/19 18:29,"324 North St, Los Angeles, CA 90001" +228176,Wired Headphones,1,11.99,07/23/19 11:51,"539 4th St, Los Angeles, CA 90001" +228177,Bose SoundSport Headphones,1,99.99,07/22/19 19:57,"944 Elm St, Austin, TX 73301" +228178,Wired Headphones,1,11.99,07/10/19 15:25,"100 Madison St, New York City, NY 10001" +228179,Bose SoundSport Headphones,1,99.99,07/12/19 14:00,"325 10th St, San Francisco, CA 94016" +228180,Wired Headphones,1,11.99,07/20/19 14:52,"391 14th St, San Francisco, CA 94016" +228181,iPhone,1,700,07/17/19 21:06,"351 Forest St, Dallas, TX 75001" +228182,AA Batteries (4-pack),2,3.84,07/02/19 15:11,"409 Center St, Los Angeles, CA 90001" +228183,ThinkPad Laptop,1,999.99,07/27/19 16:31,"104 Sunset St, Portland, OR 97035" +228184,Apple Airpods Headphones,1,150,07/12/19 20:13,"809 2nd St, New York City, NY 10001" +228185,USB-C Charging Cable,1,11.95,07/09/19 09:11,"896 Main St, Boston, MA 02215" +228186,AA Batteries (4-pack),1,3.84,07/23/19 10:59,"924 Highland St, Los Angeles, CA 90001" +228187,AA Batteries (4-pack),3,3.84,07/16/19 15:28,"786 4th St, San Francisco, CA 94016" +228188,Google Phone,1,600,07/03/19 14:18,"64 Pine St, New York City, NY 10001" +228188,Wired Headphones,1,11.99,07/03/19 14:18,"64 Pine St, New York City, NY 10001" +228189,27in 4K Gaming Monitor,1,389.99,07/22/19 22:14,"394 Park St, Portland, OR 97035" +228190,USB-C Charging Cable,1,11.95,07/21/19 01:56,"84 Dogwood St, Portland, OR 97035" +228191,Apple Airpods Headphones,1,150,07/14/19 11:01,"841 Lake St, San Francisco, CA 94016" +228192,AAA Batteries (4-pack),1,2.99,07/01/19 19:11,"371 Adams St, Boston, MA 02215" +228193,iPhone,1,700,07/16/19 16:46,"200 Park St, Portland, OR 97035" +228194,Apple Airpods Headphones,1,150,07/19/19 23:48,"255 Jefferson St, Los Angeles, CA 90001" +228195,AAA Batteries (4-pack),1,2.99,07/31/19 11:08,"199 Madison St, Los Angeles, CA 90001" +228196,Macbook Pro Laptop,1,1700,07/25/19 17:23,"545 2nd St, Boston, MA 02215" +228197,AA Batteries (4-pack),1,3.84,07/14/19 19:29,"80 Adams St, Seattle, WA 98101" +228198,Lightning Charging Cable,1,14.95,07/27/19 09:49,"354 Chestnut St, Los Angeles, CA 90001" +228199,Lightning Charging Cable,1,14.95,07/16/19 13:03,"723 Highland St, Boston, MA 02215" +228200,USB-C Charging Cable,1,11.95,07/02/19 21:54,"650 6th St, San Francisco, CA 94016" +228201,AAA Batteries (4-pack),1,2.99,07/31/19 20:17,"457 11th St, Los Angeles, CA 90001" +228202,Bose SoundSport Headphones,1,99.99,07/22/19 19:23,"231 Main St, Los Angeles, CA 90001" +228203,Wired Headphones,1,11.99,07/31/19 19:17,"960 4th St, Los Angeles, CA 90001" +228204,iPhone,1,700,07/26/19 19:09,"70 Forest St, Boston, MA 02215" +228204,Wired Headphones,1,11.99,07/26/19 19:09,"70 Forest St, Boston, MA 02215" +228205,USB-C Charging Cable,1,11.95,07/17/19 02:27,"437 2nd St, San Francisco, CA 94016" +228206,Wired Headphones,1,11.99,07/10/19 19:51,"54 Elm St, Portland, OR 97035" +228207,Apple Airpods Headphones,1,150,07/24/19 21:04,"500 North St, New York City, NY 10001" +228208,ThinkPad Laptop,1,999.99,07/23/19 15:37,"97 12th St, San Francisco, CA 94016" +228209,USB-C Charging Cable,1,11.95,07/16/19 03:06,"648 Jackson St, Atlanta, GA 30301" +228210,Bose SoundSport Headphones,1,99.99,07/24/19 12:38,"478 5th St, San Francisco, CA 94016" +228211,AAA Batteries (4-pack),1,2.99,07/02/19 22:53,"777 Meadow St, Los Angeles, CA 90001" +228212,Macbook Pro Laptop,1,1700,07/10/19 07:12,"298 Adams St, Seattle, WA 98101" +228213,iPhone,1,700,07/25/19 21:09,"926 8th St, Seattle, WA 98101" +228214,AA Batteries (4-pack),1,3.84,07/14/19 15:12,"637 Hill St, Los Angeles, CA 90001" +228215,AA Batteries (4-pack),1,3.84,07/28/19 13:46,"495 Chestnut St, New York City, NY 10001" +228216,20in Monitor,1,109.99,07/04/19 00:19,"419 Cedar St, San Francisco, CA 94016" +228217,AA Batteries (4-pack),1,3.84,07/15/19 10:49,"913 7th St, Dallas, TX 75001" +228218,Lightning Charging Cable,1,14.95,07/25/19 18:51,"380 Hill St, Seattle, WA 98101" +228219,Apple Airpods Headphones,1,150,07/27/19 16:52,"210 Dogwood St, San Francisco, CA 94016" +228220,AAA Batteries (4-pack),1,2.99,07/22/19 15:05,"118 10th St, New York City, NY 10001" +228221,Bose SoundSport Headphones,1,99.99,07/28/19 12:52,"192 Lincoln St, New York City, NY 10001" +228222,27in 4K Gaming Monitor,1,389.99,07/24/19 17:37,"669 14th St, San Francisco, CA 94016" +228223,USB-C Charging Cable,1,11.95,07/23/19 10:12,"924 Washington St, San Francisco, CA 94016" +228224,34in Ultrawide Monitor,1,379.99,07/06/19 19:39,"183 Adams St, New York City, NY 10001" +228225,AAA Batteries (4-pack),2,2.99,07/21/19 01:46,"889 Johnson St, Atlanta, GA 30301" +228226,AAA Batteries (4-pack),1,2.99,07/27/19 08:33,"233 Willow St, San Francisco, CA 94016" +228227,20in Monitor,1,109.99,07/15/19 19:55,"737 Hickory St, San Francisco, CA 94016" +228228,Apple Airpods Headphones,1,150,07/07/19 12:57,"301 Highland St, Los Angeles, CA 90001" +228229,Apple Airpods Headphones,1,150,07/07/19 17:29,"183 Center St, Dallas, TX 75001" +228230,USB-C Charging Cable,1,11.95,07/05/19 08:50,"514 7th St, Portland, OR 97035" +228230,34in Ultrawide Monitor,1,379.99,07/05/19 08:50,"514 7th St, Portland, OR 97035" +228231,Lightning Charging Cable,1,14.95,07/21/19 13:48,"248 Hickory St, Dallas, TX 75001" +228232,AAA Batteries (4-pack),3,2.99,07/20/19 21:14,"2 Church St, Austin, TX 73301" +228233,Wired Headphones,1,11.99,07/17/19 20:44,"67 2nd St, New York City, NY 10001" +228234,Vareebadd Phone,1,400,07/16/19 14:45,"21 Jackson St, San Francisco, CA 94016" +228234,Wired Headphones,1,11.99,07/16/19 14:45,"21 Jackson St, San Francisco, CA 94016" +228235,Wired Headphones,1,11.99,07/01/19 18:22,"736 11th St, Boston, MA 02215" +228236,AAA Batteries (4-pack),2,2.99,07/10/19 16:15,"845 Jefferson St, San Francisco, CA 94016" +228237,27in FHD Monitor,1,149.99,07/20/19 19:53,"142 Ridge St, San Francisco, CA 94016" +228238,Flatscreen TV,1,300,07/05/19 16:51,"621 Main St, Boston, MA 02215" +228239,27in FHD Monitor,1,149.99,07/29/19 22:21,"772 Highland St, San Francisco, CA 94016" +228240,Flatscreen TV,1,300,07/30/19 15:42,"124 5th St, San Francisco, CA 94016" +228241,27in 4K Gaming Monitor,1,389.99,07/02/19 11:48,"628 Ridge St, Austin, TX 73301" +228242,iPhone,1,700,07/17/19 15:33,"215 Dogwood St, Dallas, TX 75001" +228243,USB-C Charging Cable,1,11.95,07/04/19 01:13,"507 Center St, San Francisco, CA 94016" +228244,USB-C Charging Cable,1,11.95,07/12/19 15:32,"338 2nd St, Portland, OR 97035" +228245,AA Batteries (4-pack),2,3.84,07/12/19 13:16,"767 Lakeview St, Austin, TX 73301" +228246,34in Ultrawide Monitor,1,379.99,07/26/19 14:03,"133 11th St, San Francisco, CA 94016" +228247,Lightning Charging Cable,1,14.95,07/06/19 21:30,"430 Cedar St, San Francisco, CA 94016" +228248,Apple Airpods Headphones,1,150,07/08/19 14:05,"730 Hickory St, San Francisco, CA 94016" +228249,AA Batteries (4-pack),1,3.84,07/12/19 18:06,"979 Dogwood St, New York City, NY 10001" +228250,27in FHD Monitor,1,149.99,07/11/19 11:38,"122 1st St, Los Angeles, CA 90001" +228251,Bose SoundSport Headphones,1,99.99,07/31/19 07:28,"825 13th St, Atlanta, GA 30301" +228252,AA Batteries (4-pack),2,3.84,07/27/19 17:43,"616 Park St, San Francisco, CA 94016" +228253,Flatscreen TV,1,300,07/23/19 23:43,"196 Adams St, Boston, MA 02215" +228254,AAA Batteries (4-pack),2,2.99,07/11/19 11:26,"361 Madison St, San Francisco, CA 94016" +228255,USB-C Charging Cable,1,11.95,07/24/19 03:21,"855 Cedar St, San Francisco, CA 94016" +228256,Flatscreen TV,1,300,07/18/19 17:02,"977 Jefferson St, Los Angeles, CA 90001" +228257,20in Monitor,1,109.99,07/31/19 17:06,"59 Cedar St, New York City, NY 10001" +228258,34in Ultrawide Monitor,1,379.99,07/13/19 07:29,"427 Highland St, Dallas, TX 75001" +228259,Bose SoundSport Headphones,1,99.99,07/26/19 22:45,"317 Pine St, New York City, NY 10001" +228260,Wired Headphones,1,11.99,07/23/19 21:58,"551 Madison St, Dallas, TX 75001" +228261,ThinkPad Laptop,1,999.99,07/13/19 05:01,"284 Elm St, Austin, TX 73301" +228262,Google Phone,1,600,07/13/19 17:27,"557 South St, Dallas, TX 75001" +228263,AA Batteries (4-pack),1,3.84,07/08/19 02:46,"845 Ridge St, Austin, TX 73301" +228264,Wired Headphones,2,11.99,07/23/19 18:10,"932 Madison St, Atlanta, GA 30301" +228265,AA Batteries (4-pack),1,3.84,07/01/19 21:11,"582 River St, San Francisco, CA 94016" +228266,27in FHD Monitor,1,149.99,07/22/19 10:33,"708 1st St, Boston, MA 02215" +228267,Wired Headphones,1,11.99,07/19/19 09:23,"316 Johnson St, Dallas, TX 75001" +228268,Bose SoundSport Headphones,1,99.99,07/10/19 14:10,"795 River St, San Francisco, CA 94016" +228269,iPhone,1,700,07/05/19 18:15,"511 Willow St, Los Angeles, CA 90001" +228269,Lightning Charging Cable,1,14.95,07/05/19 18:15,"511 Willow St, Los Angeles, CA 90001" +228270,USB-C Charging Cable,1,11.95,07/29/19 09:25,"554 Church St, Seattle, WA 98101" +228271,AAA Batteries (4-pack),1,2.99,07/25/19 14:17,"922 Wilson St, Boston, MA 02215" +228272,Wired Headphones,1,11.99,07/13/19 15:17,"353 Adams St, Dallas, TX 75001" +228273,27in 4K Gaming Monitor,1,389.99,07/24/19 17:52,"698 2nd St, San Francisco, CA 94016" +228274,AA Batteries (4-pack),2,3.84,07/04/19 14:57,"494 Cherry St, Dallas, TX 75001" +228275,Macbook Pro Laptop,1,1700,07/09/19 20:57,"630 Lincoln St, San Francisco, CA 94016" +228276,AA Batteries (4-pack),2,3.84,07/10/19 09:28,"627 Chestnut St, New York City, NY 10001" +228277,AA Batteries (4-pack),1,3.84,07/19/19 22:05,"415 Johnson St, San Francisco, CA 94016" +228278,AAA Batteries (4-pack),1,2.99,07/05/19 09:22,"378 Lincoln St, New York City, NY 10001" +228279,USB-C Charging Cable,1,11.95,07/13/19 15:46,"399 Hill St, Los Angeles, CA 90001" +228280,USB-C Charging Cable,1,11.95,07/10/19 09:48,"260 North St, San Francisco, CA 94016" +,,,,, +228281,ThinkPad Laptop,1,999.99,07/25/19 20:14,"345 Cherry St, San Francisco, CA 94016" +,,,,, +228282,Bose SoundSport Headphones,1,99.99,07/15/19 18:33,"121 Forest St, Boston, MA 02215" +228283,34in Ultrawide Monitor,1,379.99,07/21/19 17:34,"82 4th St, Atlanta, GA 30301" +228284,Wired Headphones,1,11.99,07/08/19 05:21,"16 Sunset St, San Francisco, CA 94016" +228285,iPhone,1,700,07/02/19 18:47,"700 Adams St, San Francisco, CA 94016" +228285,Wired Headphones,1,11.99,07/02/19 18:47,"700 Adams St, San Francisco, CA 94016" +228286,27in 4K Gaming Monitor,1,389.99,07/06/19 16:00,"470 7th St, Boston, MA 02215" +228286,34in Ultrawide Monitor,1,379.99,07/06/19 16:00,"470 7th St, Boston, MA 02215" +228287,AAA Batteries (4-pack),1,2.99,07/03/19 13:38,"463 10th St, New York City, NY 10001" +228288,Apple Airpods Headphones,1,150,07/02/19 16:12,"201 7th St, New York City, NY 10001" +228289,Bose SoundSport Headphones,1,99.99,07/29/19 13:25,"886 Walnut St, Portland, OR 97035" +228290,AAA Batteries (4-pack),1,2.99,07/17/19 10:37,"438 Forest St, Boston, MA 02215" +228291,USB-C Charging Cable,1,11.95,07/31/19 14:55,"922 Washington St, Los Angeles, CA 90001" +228292,Wired Headphones,1,11.99,07/01/19 14:29,"309 Sunset St, Los Angeles, CA 90001" +228293,AAA Batteries (4-pack),1,2.99,07/21/19 06:40,"821 Maple St, Portland, OR 97035" +228294,AAA Batteries (4-pack),1,2.99,07/01/19 19:40,"863 Spruce St, Portland, OR 97035" +228295,Macbook Pro Laptop,1,1700,07/26/19 18:48,"282 West St, San Francisco, CA 94016" +228296,Flatscreen TV,1,300,07/22/19 09:10,"358 5th St, Boston, MA 02215" +228297,LG Dryer,1,600.0,07/17/19 10:22,"938 4th St, San Francisco, CA 94016" +228298,Flatscreen TV,1,300,07/20/19 17:20,"697 Chestnut St, San Francisco, CA 94016" +228299,27in 4K Gaming Monitor,1,389.99,07/26/19 11:43,"336 14th St, Austin, TX 73301" +228300,27in 4K Gaming Monitor,1,389.99,07/19/19 08:21,"685 Lake St, Los Angeles, CA 90001" +228301,USB-C Charging Cable,1,11.95,07/03/19 21:32,"903 7th St, San Francisco, CA 94016" +228302,Flatscreen TV,1,300,07/15/19 22:54,"253 Hill St, Dallas, TX 75001" +228303,Bose SoundSport Headphones,1,99.99,07/21/19 20:00,"133 Forest St, Los Angeles, CA 90001" +228304,USB-C Charging Cable,1,11.95,07/21/19 14:16,"5 14th St, Dallas, TX 75001" +228305,LG Dryer,1,600.0,07/15/19 09:19,"809 6th St, San Francisco, CA 94016" +228306,USB-C Charging Cable,1,11.95,07/13/19 09:11,"56 Meadow St, San Francisco, CA 94016" +228307,Apple Airpods Headphones,1,150,07/11/19 21:42,"402 8th St, New York City, NY 10001" +228308,Lightning Charging Cable,1,14.95,07/28/19 12:14,"333 Meadow St, San Francisco, CA 94016" +228309,Macbook Pro Laptop,1,1700,07/11/19 20:55,"366 Cedar St, San Francisco, CA 94016" +228310,ThinkPad Laptop,1,999.99,07/29/19 22:44,"50 Maple St, Los Angeles, CA 90001" +228311,Apple Airpods Headphones,1,150,07/18/19 15:19,"261 Lincoln St, Boston, MA 02215" +228312,Bose SoundSport Headphones,1,99.99,07/03/19 12:32,"279 North St, New York City, NY 10001" +228313,Bose SoundSport Headphones,1,99.99,07/31/19 21:09,"25 Chestnut St, Dallas, TX 75001" +228314,Wired Headphones,1,11.99,07/04/19 19:42,"213 Elm St, Los Angeles, CA 90001" +228315,Apple Airpods Headphones,1,150,07/27/19 20:06,"406 West St, Portland, OR 97035" +228316,Macbook Pro Laptop,1,1700,07/14/19 22:21,"734 Cherry St, San Francisco, CA 94016" +228317,Vareebadd Phone,1,400,07/21/19 23:02,"213 2nd St, Boston, MA 02215" +228318,Wired Headphones,1,11.99,07/30/19 18:33,"426 Park St, Dallas, TX 75001" +228319,USB-C Charging Cable,1,11.95,07/21/19 13:12,"693 Jefferson St, Los Angeles, CA 90001" +228320,Lightning Charging Cable,1,14.95,07/22/19 19:01,"44 Lakeview St, San Francisco, CA 94016" +228321,Bose SoundSport Headphones,1,99.99,07/01/19 19:45,"820 6th St, Los Angeles, CA 90001" +228322,USB-C Charging Cable,2,11.95,07/15/19 16:27,"459 Willow St, Dallas, TX 75001" +228323,AA Batteries (4-pack),1,3.84,07/05/19 12:19,"864 13th St, Atlanta, GA 30301" +228324,Lightning Charging Cable,1,14.95,07/04/19 10:38,"49 Hickory St, Portland, OR 97035" +228325,27in 4K Gaming Monitor,1,389.99,07/21/19 21:40,"665 Lincoln St, Atlanta, GA 30301" +228326,Bose SoundSport Headphones,1,99.99,07/16/19 13:06,"926 9th St, San Francisco, CA 94016" +228327,AA Batteries (4-pack),2,3.84,07/10/19 16:02,"567 2nd St, New York City, NY 10001" +,,,,, +228328,Lightning Charging Cable,1,14.95,07/22/19 20:44,"459 Hickory St, Atlanta, GA 30301" +228329,Bose SoundSport Headphones,1,99.99,07/29/19 07:18,"530 Adams St, Los Angeles, CA 90001" +228330,34in Ultrawide Monitor,1,379.99,07/03/19 13:22,"66 River St, Atlanta, GA 30301" +228331,27in FHD Monitor,1,149.99,07/27/19 11:53,"323 West St, Atlanta, GA 30301" +228332,27in 4K Gaming Monitor,1,389.99,07/25/19 17:17,"794 River St, Seattle, WA 98101" +228333,USB-C Charging Cable,1,11.95,07/05/19 22:11,"881 Highland St, Dallas, TX 75001" +228334,AA Batteries (4-pack),2,3.84,07/13/19 04:45,"253 Lake St, Boston, MA 02215" +228335,34in Ultrawide Monitor,1,379.99,07/20/19 03:26,"639 10th St, San Francisco, CA 94016" +228336,27in 4K Gaming Monitor,1,389.99,07/16/19 18:44,"161 Madison St, Austin, TX 73301" +228337,AA Batteries (4-pack),1,3.84,07/13/19 20:02,"622 Madison St, San Francisco, CA 94016" +228338,AA Batteries (4-pack),1,3.84,07/07/19 21:59,"86 Maple St, San Francisco, CA 94016" +228339,27in 4K Gaming Monitor,1,389.99,07/28/19 17:55,"704 Madison St, Dallas, TX 75001" +228340,Macbook Pro Laptop,1,1700,07/28/19 14:44,"264 Center St, Austin, TX 73301" +228341,AA Batteries (4-pack),1,3.84,07/18/19 22:59,"60 Johnson St, New York City, NY 10001" +228342,USB-C Charging Cable,1,11.95,07/11/19 07:08,"828 River St, Los Angeles, CA 90001" +228343,Lightning Charging Cable,1,14.95,07/04/19 12:44,"340 Adams St, Dallas, TX 75001" +228344,Lightning Charging Cable,1,14.95,07/22/19 22:03,"335 5th St, Los Angeles, CA 90001" +228345,27in 4K Gaming Monitor,1,389.99,07/02/19 12:10,"620 Walnut St, Atlanta, GA 30301" +228346,27in FHD Monitor,1,149.99,07/05/19 11:29,"899 Hill St, Atlanta, GA 30301" +228347,Lightning Charging Cable,1,14.95,07/21/19 05:26,"164 Cherry St, Atlanta, GA 30301" +228348,20in Monitor,1,109.99,07/19/19 11:26,"90 7th St, Portland, ME 04101" +228349,Lightning Charging Cable,1,14.95,07/29/19 10:53,"13 Washington St, Dallas, TX 75001" +228350,ThinkPad Laptop,1,999.99,07/24/19 21:54,"599 Center St, San Francisco, CA 94016" +228351,34in Ultrawide Monitor,1,379.99,07/18/19 22:21,"587 Elm St, Dallas, TX 75001" +228352,27in 4K Gaming Monitor,1,389.99,07/05/19 14:29,"398 Highland St, Seattle, WA 98101" +228353,AAA Batteries (4-pack),1,2.99,07/09/19 10:06,"328 Lakeview St, Dallas, TX 75001" +228354,34in Ultrawide Monitor,1,379.99,07/12/19 11:26,"785 North St, Los Angeles, CA 90001" +228355,27in 4K Gaming Monitor,1,389.99,07/17/19 18:12,"827 Madison St, Atlanta, GA 30301" +228356,AA Batteries (4-pack),1,3.84,07/16/19 20:00,"813 Dogwood St, Portland, OR 97035" +228357,Wired Headphones,1,11.99,07/23/19 18:22,"952 8th St, Dallas, TX 75001" +228358,Bose SoundSport Headphones,1,99.99,07/12/19 10:17,"616 Cedar St, Atlanta, GA 30301" +228359,Apple Airpods Headphones,1,150,07/04/19 14:50,"954 12th St, Dallas, TX 75001" +228360,USB-C Charging Cable,1,11.95,07/11/19 12:52,"684 2nd St, Los Angeles, CA 90001" +228361,Apple Airpods Headphones,1,150,07/02/19 17:18,"565 Chestnut St, New York City, NY 10001" +228362,USB-C Charging Cable,1,11.95,07/18/19 20:33,"743 Hickory St, Portland, OR 97035" +228363,27in FHD Monitor,1,149.99,07/24/19 19:50,"491 West St, San Francisco, CA 94016" +228364,Lightning Charging Cable,1,14.95,07/11/19 21:17,"999 4th St, Los Angeles, CA 90001" +228365,Apple Airpods Headphones,1,150,07/21/19 06:57,"661 Sunset St, New York City, NY 10001" +228366,AA Batteries (4-pack),1,3.84,07/08/19 21:22,"870 Cherry St, New York City, NY 10001" +228367,Wired Headphones,1,11.99,07/01/19 16:32,"995 10th St, San Francisco, CA 94016" +228368,AA Batteries (4-pack),1,3.84,07/26/19 11:40,"538 West St, San Francisco, CA 94016" +228369,Bose SoundSport Headphones,1,99.99,07/25/19 15:01,"562 Cedar St, San Francisco, CA 94016" +228370,iPhone,1,700,07/04/19 16:43,"370 Meadow St, Atlanta, GA 30301" +228371,AA Batteries (4-pack),1,3.84,07/24/19 11:12,"929 Spruce St, New York City, NY 10001" +228372,Lightning Charging Cable,1,14.95,07/31/19 09:55,"711 14th St, Boston, MA 02215" +228373,Bose SoundSport Headphones,1,99.99,07/09/19 12:07,"488 Willow St, Seattle, WA 98101" +228374,AA Batteries (4-pack),1,3.84,07/11/19 22:14,"729 8th St, San Francisco, CA 94016" +228375,AA Batteries (4-pack),1,3.84,07/24/19 20:53,"205 Hill St, Los Angeles, CA 90001" +228376,Macbook Pro Laptop,1,1700,07/06/19 07:43,"904 Cedar St, Seattle, WA 98101" +228377,AA Batteries (4-pack),1,3.84,07/15/19 14:12,"831 Park St, Los Angeles, CA 90001" +228378,Lightning Charging Cable,2,14.95,07/04/19 11:33,"979 Park St, San Francisco, CA 94016" +228379,USB-C Charging Cable,1,11.95,07/05/19 20:39,"48 1st St, Austin, TX 73301" +228380,AA Batteries (4-pack),1,3.84,07/21/19 10:44,"829 Park St, Dallas, TX 75001" +228381,Wired Headphones,1,11.99,07/01/19 19:04,"879 Park St, San Francisco, CA 94016" +228382,USB-C Charging Cable,3,11.95,07/26/19 10:53,"287 Park St, Los Angeles, CA 90001" +228383,Lightning Charging Cable,1,14.95,07/29/19 21:49,"191 Dogwood St, Boston, MA 02215" +228384,AA Batteries (4-pack),1,3.84,07/28/19 11:03,"363 West St, New York City, NY 10001" +228385,Lightning Charging Cable,1,14.95,07/18/19 12:28,"726 Lincoln St, Portland, OR 97035" +228386,AAA Batteries (4-pack),1,2.99,07/29/19 06:24,"559 4th St, Seattle, WA 98101" +228387,USB-C Charging Cable,1,11.95,07/18/19 00:06,"328 Cedar St, San Francisco, CA 94016" +228388,AAA Batteries (4-pack),2,2.99,07/05/19 13:27,"602 Forest St, Atlanta, GA 30301" +228389,Lightning Charging Cable,1,14.95,07/12/19 07:15,"520 13th St, Seattle, WA 98101" +228390,27in 4K Gaming Monitor,1,389.99,07/09/19 23:35,"993 Adams St, Boston, MA 02215" +228391,AAA Batteries (4-pack),1,2.99,07/04/19 19:24,"564 1st St, New York City, NY 10001" +228392,Lightning Charging Cable,2,14.95,07/08/19 14:28,"485 Hill St, Boston, MA 02215" +228393,20in Monitor,1,109.99,07/27/19 16:04,"65 Lakeview St, New York City, NY 10001" +228394,Wired Headphones,1,11.99,07/27/19 13:18,"92 Forest St, Los Angeles, CA 90001" +228395,AA Batteries (4-pack),1,3.84,07/15/19 21:49,"801 Spruce St, Portland, ME 04101" +228396,Lightning Charging Cable,1,14.95,07/30/19 18:50,"749 2nd St, Atlanta, GA 30301" +228396,AAA Batteries (4-pack),1,2.99,07/30/19 18:50,"749 2nd St, Atlanta, GA 30301" +228397,Lightning Charging Cable,1,14.95,07/12/19 16:33,"586 Elm St, San Francisco, CA 94016" +228398,AAA Batteries (4-pack),2,2.99,07/19/19 05:28,"724 11th St, San Francisco, CA 94016" +228399,AAA Batteries (4-pack),1,2.99,07/17/19 18:57,"905 12th St, Atlanta, GA 30301" +228400,Lightning Charging Cable,1,14.95,07/31/19 21:47,"171 Washington St, New York City, NY 10001" +228401,AA Batteries (4-pack),1,3.84,07/14/19 13:10,"406 8th St, Seattle, WA 98101" +228402,AA Batteries (4-pack),2,3.84,07/30/19 01:13,"144 Jackson St, Atlanta, GA 30301" +228403,ThinkPad Laptop,1,999.99,07/20/19 19:11,"239 8th St, New York City, NY 10001" +228404,Apple Airpods Headphones,1,150,07/12/19 06:29,"985 Cherry St, Los Angeles, CA 90001" +228405,AAA Batteries (4-pack),1,2.99,07/23/19 12:40,"305 Ridge St, Boston, MA 02215" +228406,AAA Batteries (4-pack),2,2.99,07/16/19 04:05,"110 Spruce St, Seattle, WA 98101" +228407,34in Ultrawide Monitor,1,379.99,07/27/19 15:55,"318 8th St, San Francisco, CA 94016" +228408,Lightning Charging Cable,1,14.95,07/03/19 02:19,"118 Cherry St, San Francisco, CA 94016" +228409,27in FHD Monitor,1,149.99,07/13/19 21:42,"793 Pine St, Los Angeles, CA 90001" +228410,20in Monitor,1,109.99,07/27/19 19:34,"8 South St, Los Angeles, CA 90001" +228411,34in Ultrawide Monitor,1,379.99,07/09/19 20:11,"950 Hill St, Los Angeles, CA 90001" +228412,USB-C Charging Cable,1,11.95,07/30/19 12:54,"800 Washington St, San Francisco, CA 94016" +228413,USB-C Charging Cable,1,11.95,07/14/19 09:12,"637 10th St, Boston, MA 02215" +228414,AAA Batteries (4-pack),1,2.99,07/16/19 15:08,"235 6th St, Boston, MA 02215" +228415,AAA Batteries (4-pack),1,2.99,07/03/19 21:31,"830 Hickory St, New York City, NY 10001" +228416,20in Monitor,1,109.99,07/01/19 11:51,"263 2nd St, Portland, ME 04101" +228417,Google Phone,1,600,07/05/19 20:37,"835 5th St, San Francisco, CA 94016" +228417,USB-C Charging Cable,2,11.95,07/05/19 20:37,"835 5th St, San Francisco, CA 94016" +228417,Bose SoundSport Headphones,1,99.99,07/05/19 20:37,"835 5th St, San Francisco, CA 94016" +228418,AAA Batteries (4-pack),1,2.99,07/22/19 21:53,"306 Johnson St, Seattle, WA 98101" +228419,Lightning Charging Cable,1,14.95,07/05/19 12:06,"866 6th St, Austin, TX 73301" +228420,Bose SoundSport Headphones,1,99.99,07/27/19 16:25,"301 Hickory St, Austin, TX 73301" +228421,USB-C Charging Cable,1,11.95,07/10/19 19:24,"658 Madison St, Seattle, WA 98101" +228422,Wired Headphones,1,11.99,07/07/19 14:49,"294 13th St, Los Angeles, CA 90001" +228423,Lightning Charging Cable,1,14.95,07/22/19 11:56,"821 8th St, Austin, TX 73301" +228424,Apple Airpods Headphones,1,150,07/11/19 10:55,"49 Lincoln St, Los Angeles, CA 90001" +228425,Lightning Charging Cable,1,14.95,07/30/19 22:11,"376 Lakeview St, Atlanta, GA 30301" +228426,Lightning Charging Cable,1,14.95,07/20/19 00:44,"790 5th St, New York City, NY 10001" +228427,AAA Batteries (4-pack),1,2.99,07/05/19 10:41,"902 Park St, Portland, OR 97035" +228428,USB-C Charging Cable,1,11.95,07/10/19 19:03,"513 Dogwood St, Los Angeles, CA 90001" +228429,USB-C Charging Cable,1,11.95,07/20/19 13:39,"951 Washington St, Boston, MA 02215" +228430,34in Ultrawide Monitor,1,379.99,07/10/19 21:18,"115 Maple St, Atlanta, GA 30301" +228431,Flatscreen TV,1,300,07/04/19 04:57,"804 10th St, San Francisco, CA 94016" +228432,AA Batteries (4-pack),1,3.84,07/19/19 10:29,"31 Madison St, San Francisco, CA 94016" +228433,iPhone,1,700,07/29/19 19:39,"682 Maple St, San Francisco, CA 94016" +228434,Lightning Charging Cable,1,14.95,07/01/19 14:36,"188 Center St, San Francisco, CA 94016" +228435,Lightning Charging Cable,1,14.95,07/17/19 08:13,"786 Main St, New York City, NY 10001" +228436,AA Batteries (4-pack),1,3.84,07/04/19 15:52,"100 Cherry St, San Francisco, CA 94016" +228437,iPhone,1,700,07/06/19 09:28,"657 South St, San Francisco, CA 94016" +228438,Lightning Charging Cable,1,14.95,07/15/19 19:31,"540 Pine St, Boston, MA 02215" +228439,AAA Batteries (4-pack),1,2.99,07/25/19 12:13,"226 Center St, San Francisco, CA 94016" +228440,Bose SoundSport Headphones,1,99.99,07/08/19 17:42,"116 Highland St, Los Angeles, CA 90001" +228441,Bose SoundSport Headphones,1,99.99,07/28/19 19:28,"822 Sunset St, Seattle, WA 98101" +228442,AA Batteries (4-pack),2,3.84,07/30/19 11:26,"453 Wilson St, Dallas, TX 75001" +228443,Bose SoundSport Headphones,1,99.99,07/21/19 14:50,"601 Willow St, New York City, NY 10001" +228444,Lightning Charging Cable,1,14.95,07/21/19 21:17,"357 14th St, Austin, TX 73301" +228445,USB-C Charging Cable,1,11.95,07/09/19 18:49,"428 Hill St, Los Angeles, CA 90001" +228446,27in FHD Monitor,1,149.99,07/04/19 11:52,"298 1st St, San Francisco, CA 94016" +228447,Lightning Charging Cable,1,14.95,07/27/19 07:09,"602 Forest St, Portland, OR 97035" +228448,34in Ultrawide Monitor,1,379.99,07/07/19 15:49,"551 Johnson St, San Francisco, CA 94016" +228449,Wired Headphones,1,11.99,07/08/19 09:53,"460 11th St, San Francisco, CA 94016" +228450,USB-C Charging Cable,1,11.95,07/30/19 15:48,"302 Meadow St, Seattle, WA 98101" +228451,Google Phone,1,600,07/02/19 12:02,"425 Maple St, San Francisco, CA 94016" +228452,USB-C Charging Cable,1,11.95,07/22/19 20:45,"609 Maple St, San Francisco, CA 94016" +228453,27in FHD Monitor,1,149.99,07/10/19 17:45,"351 Lakeview St, New York City, NY 10001" +228454,Apple Airpods Headphones,1,150,07/31/19 16:45,"249 Main St, Los Angeles, CA 90001" +228455,Wired Headphones,1,11.99,07/09/19 17:44,"569 Spruce St, Portland, OR 97035" +228456,Macbook Pro Laptop,1,1700,07/06/19 09:36,"751 11th St, Seattle, WA 98101" +228457,iPhone,1,700,07/20/19 22:01,"333 Park St, New York City, NY 10001" +228457,Wired Headphones,1,11.99,07/20/19 22:01,"333 Park St, New York City, NY 10001" +228458,AA Batteries (4-pack),1,3.84,07/16/19 23:20,"16 Jackson St, New York City, NY 10001" +228459,Wired Headphones,1,11.99,07/15/19 14:08,"783 Lakeview St, Austin, TX 73301" +228460,Bose SoundSport Headphones,1,99.99,07/05/19 11:16,"161 Park St, Austin, TX 73301" +228461,Lightning Charging Cable,1,14.95,07/20/19 13:13,"646 Cherry St, San Francisco, CA 94016" +228462,27in FHD Monitor,1,149.99,07/10/19 21:44,"78 Park St, San Francisco, CA 94016" +228463,iPhone,1,700,07/29/19 13:46,"89 Wilson St, New York City, NY 10001" +228464,iPhone,1,700,07/02/19 16:06,"533 Meadow St, Atlanta, GA 30301" +228465,AAA Batteries (4-pack),1,2.99,07/25/19 20:46,"888 Highland St, New York City, NY 10001" +228466,AAA Batteries (4-pack),1,2.99,07/19/19 11:53,"580 Meadow St, New York City, NY 10001" +228467,Wired Headphones,1,11.99,07/14/19 18:39,"656 Forest St, Los Angeles, CA 90001" +228468,Macbook Pro Laptop,1,1700,07/19/19 08:08,"631 Lake St, New York City, NY 10001" +228469,AA Batteries (4-pack),1,3.84,07/09/19 09:48,"381 13th St, Dallas, TX 75001" +228470,AA Batteries (4-pack),1,3.84,07/07/19 17:36,"800 9th St, San Francisco, CA 94016" +228471,AAA Batteries (4-pack),2,2.99,07/28/19 17:07,"383 Adams St, New York City, NY 10001" +228472,Wired Headphones,1,11.99,07/20/19 22:48,"537 1st St, Los Angeles, CA 90001" +228473,AA Batteries (4-pack),1,3.84,07/26/19 18:05,"252 10th St, San Francisco, CA 94016" +228474,USB-C Charging Cable,1,11.95,07/15/19 23:10,"896 Walnut St, Portland, OR 97035" +228475,Lightning Charging Cable,1,14.95,07/02/19 21:22,"769 Cedar St, San Francisco, CA 94016" +228476,USB-C Charging Cable,1,11.95,07/23/19 22:27,"156 Hickory St, San Francisco, CA 94016" +228477,Wired Headphones,1,11.99,07/08/19 11:31,"788 Spruce St, Los Angeles, CA 90001" +228478,Wired Headphones,1,11.99,07/09/19 11:56,"622 4th St, San Francisco, CA 94016" +228479,Wired Headphones,1,11.99,07/29/19 18:57,"461 13th St, Boston, MA 02215" +228480,AA Batteries (4-pack),2,3.84,07/09/19 09:52,"169 South St, Dallas, TX 75001" +228481,Google Phone,1,600,07/31/19 15:58,"103 10th St, Los Angeles, CA 90001" +228481,USB-C Charging Cable,1,11.95,07/31/19 15:58,"103 10th St, Los Angeles, CA 90001" +228482,Lightning Charging Cable,1,14.95,07/14/19 13:59,"727 North St, San Francisco, CA 94016" +228483,27in FHD Monitor,1,149.99,07/17/19 21:31,"438 Church St, Austin, TX 73301" +228484,Lightning Charging Cable,1,14.95,07/29/19 19:21,"248 Chestnut St, Boston, MA 02215" +228485,27in FHD Monitor,1,149.99,07/01/19 18:22,"705 Maple St, San Francisco, CA 94016" +228486,AA Batteries (4-pack),1,3.84,07/04/19 12:41,"328 West St, Portland, OR 97035" +228487,Wired Headphones,1,11.99,07/12/19 10:22,"447 Jefferson St, San Francisco, CA 94016" +228488,20in Monitor,1,109.99,07/19/19 15:45,"506 Highland St, Dallas, TX 75001" +228489,Wired Headphones,1,11.99,07/18/19 18:13,"906 6th St, Los Angeles, CA 90001" +228490,USB-C Charging Cable,1,11.95,07/20/19 13:37,"745 Highland St, San Francisco, CA 94016" +228491,Lightning Charging Cable,1,14.95,07/17/19 14:07,"564 Hickory St, New York City, NY 10001" +228492,Wired Headphones,1,11.99,07/25/19 13:44,"223 Willow St, Austin, TX 73301" +228493,iPhone,1,700,07/25/19 19:16,"399 Highland St, Portland, OR 97035" +228494,AAA Batteries (4-pack),1,2.99,07/03/19 20:26,"636 Hill St, Dallas, TX 75001" +228495,27in FHD Monitor,1,149.99,07/25/19 07:13,"867 Park St, New York City, NY 10001" +228496,Lightning Charging Cable,1,14.95,07/17/19 12:47,"176 River St, Austin, TX 73301" +228497,Lightning Charging Cable,1,14.95,07/17/19 16:55,"612 2nd St, San Francisco, CA 94016" +228498,AA Batteries (4-pack),1,3.84,07/23/19 16:25,"615 10th St, Dallas, TX 75001" +228499,27in 4K Gaming Monitor,1,389.99,07/21/19 09:59,"881 River St, San Francisco, CA 94016" +228500,Apple Airpods Headphones,1,150,07/26/19 21:41,"11 Jackson St, Austin, TX 73301" +228501,AAA Batteries (4-pack),1,2.99,07/28/19 10:59,"703 River St, Dallas, TX 75001" +228502,AAA Batteries (4-pack),1,2.99,07/23/19 23:31,"584 Wilson St, San Francisco, CA 94016" +228503,27in FHD Monitor,1,149.99,07/09/19 19:27,"154 Walnut St, Dallas, TX 75001" +228504,Apple Airpods Headphones,1,150,07/09/19 20:58,"730 Center St, Portland, ME 04101" +228505,Google Phone,1,600,07/27/19 05:38,"700 Park St, Austin, TX 73301" +228506,Bose SoundSport Headphones,1,99.99,07/18/19 20:56,"545 11th St, Los Angeles, CA 90001" +228507,Lightning Charging Cable,1,14.95,07/27/19 10:37,"229 Dogwood St, Los Angeles, CA 90001" +228508,Google Phone,1,600,07/11/19 20:29,"907 12th St, New York City, NY 10001" +228509,Wired Headphones,1,11.99,07/19/19 01:39,"623 Hickory St, Los Angeles, CA 90001" +228510,27in 4K Gaming Monitor,1,389.99,07/28/19 13:41,"526 11th St, San Francisco, CA 94016" +228511,Apple Airpods Headphones,1,150,07/27/19 21:33,"576 4th St, Boston, MA 02215" +228512,AAA Batteries (4-pack),1,2.99,07/27/19 19:37,"70 14th St, Los Angeles, CA 90001" +228513,AAA Batteries (4-pack),2,2.99,07/30/19 07:11,"748 Jackson St, Los Angeles, CA 90001" +228514,Lightning Charging Cable,1,14.95,07/25/19 07:14,"422 5th St, Los Angeles, CA 90001" +228515,USB-C Charging Cable,1,11.95,07/02/19 10:56,"792 Dogwood St, Boston, MA 02215" +228516,AA Batteries (4-pack),1,3.84,07/17/19 11:59,"200 2nd St, Portland, OR 97035" +228517,AAA Batteries (4-pack),1,2.99,07/16/19 10:05,"47 12th St, Dallas, TX 75001" +228518,Lightning Charging Cable,1,14.95,07/30/19 21:09,"138 Cherry St, Atlanta, GA 30301" +228519,Google Phone,1,600,07/17/19 13:47,"972 Hickory St, Portland, ME 04101" +228519,Wired Headphones,1,11.99,07/17/19 13:47,"972 Hickory St, Portland, ME 04101" +228520,USB-C Charging Cable,2,11.95,07/12/19 09:07,"30 West St, Boston, MA 02215" +228521,Macbook Pro Laptop,1,1700,07/24/19 14:57,"41 Main St, Atlanta, GA 30301" +228522,iPhone,1,700,07/01/19 07:40,"607 10th St, Boston, MA 02215" +228522,Lightning Charging Cable,1,14.95,07/01/19 07:40,"607 10th St, Boston, MA 02215" +228522,Wired Headphones,1,11.99,07/01/19 07:40,"607 10th St, Boston, MA 02215" +228522,Bose SoundSport Headphones,1,99.99,07/01/19 07:40,"607 10th St, Boston, MA 02215" +228523,AAA Batteries (4-pack),2,2.99,07/30/19 19:17,"449 Hill St, Boston, MA 02215" +228524,Wired Headphones,1,11.99,07/08/19 18:58,"986 Jackson St, Dallas, TX 75001" +228525,20in Monitor,1,109.99,07/26/19 17:02,"493 5th St, San Francisco, CA 94016" +228526,USB-C Charging Cable,1,11.95,07/10/19 12:12,"362 Lake St, Austin, TX 73301" +228527,AA Batteries (4-pack),1,3.84,07/13/19 11:44,"477 Lincoln St, Atlanta, GA 30301" +228528,USB-C Charging Cable,2,11.95,07/15/19 22:06,"657 Jefferson St, Portland, OR 97035" +228529,ThinkPad Laptop,1,999.99,07/25/19 00:09,"234 Forest St, San Francisco, CA 94016" +228530,34in Ultrawide Monitor,1,379.99,07/18/19 09:18,"897 Washington St, San Francisco, CA 94016" +228531,Vareebadd Phone,1,400,07/16/19 09:12,"164 Cherry St, New York City, NY 10001" +228532,34in Ultrawide Monitor,1,379.99,07/27/19 19:10,"812 Wilson St, Seattle, WA 98101" +228533,Wired Headphones,1,11.99,07/20/19 00:11,"408 Hill St, San Francisco, CA 94016" +228534,Lightning Charging Cable,1,14.95,07/23/19 18:54,"960 Willow St, Los Angeles, CA 90001" +228535,20in Monitor,1,109.99,07/23/19 19:46,"334 4th St, Los Angeles, CA 90001" +228536,USB-C Charging Cable,1,11.95,07/28/19 21:13,"718 Jefferson St, New York City, NY 10001" +228537,Google Phone,1,600,07/30/19 19:41,"373 4th St, New York City, NY 10001" +228538,Lightning Charging Cable,1,14.95,07/18/19 07:21,"967 Elm St, San Francisco, CA 94016" +228539,Flatscreen TV,1,300,07/22/19 19:33,"191 West St, Boston, MA 02215" +228540,Lightning Charging Cable,1,14.95,07/10/19 19:57,"815 Wilson St, Boston, MA 02215" +228541,AA Batteries (4-pack),1,3.84,07/26/19 21:14,"629 Adams St, Austin, TX 73301" +228542,Apple Airpods Headphones,1,150,07/10/19 18:15,"495 Jefferson St, San Francisco, CA 94016" +228543,34in Ultrawide Monitor,1,379.99,07/16/19 18:26,"750 River St, Los Angeles, CA 90001" +228544,Google Phone,1,600,07/27/19 11:22,"511 Forest St, San Francisco, CA 94016" +228545,27in FHD Monitor,1,149.99,07/05/19 02:49,"186 Wilson St, Atlanta, GA 30301" +228546,AA Batteries (4-pack),1,3.84,07/15/19 11:08,"689 13th St, Boston, MA 02215" +228547,USB-C Charging Cable,1,11.95,07/24/19 17:53,"867 Adams St, New York City, NY 10001" +228548,20in Monitor,1,109.99,07/18/19 20:39,"769 Washington St, San Francisco, CA 94016" +228549,Macbook Pro Laptop,1,1700,07/31/19 12:23,"282 14th St, Los Angeles, CA 90001" +228550,Wired Headphones,1,11.99,07/02/19 11:18,"921 8th St, Seattle, WA 98101" +228550,Wired Headphones,1,11.99,07/02/19 11:18,"921 8th St, Seattle, WA 98101" +228551,AAA Batteries (4-pack),4,2.99,07/16/19 16:42,"679 Maple St, New York City, NY 10001" +228552,AA Batteries (4-pack),1,3.84,07/13/19 21:08,"946 Elm St, Los Angeles, CA 90001" +228553,Bose SoundSport Headphones,1,99.99,07/31/19 22:45,"884 7th St, Seattle, WA 98101" +228554,Bose SoundSport Headphones,1,99.99,07/30/19 15:53,"928 West St, Los Angeles, CA 90001" +228555,Apple Airpods Headphones,1,150,07/11/19 06:45,"361 5th St, Los Angeles, CA 90001" +228556,USB-C Charging Cable,1,11.95,07/15/19 20:25,"494 Walnut St, Boston, MA 02215" +228557,Wired Headphones,1,11.99,07/03/19 17:51,"997 5th St, Dallas, TX 75001" +228558,Apple Airpods Headphones,1,150,07/25/19 19:28,"556 Park St, Los Angeles, CA 90001" +228559,AA Batteries (4-pack),1,3.84,07/07/19 22:46,"392 11th St, Atlanta, GA 30301" +228560,AAA Batteries (4-pack),2,2.99,07/12/19 15:12,"158 Wilson St, Seattle, WA 98101" +228561,LG Washing Machine,1,600.0,07/17/19 21:33,"479 Dogwood St, Los Angeles, CA 90001" +228562,AAA Batteries (4-pack),1,2.99,07/06/19 14:45,"109 Forest St, San Francisco, CA 94016" +228563,Apple Airpods Headphones,1,150,07/22/19 18:58,"810 Church St, New York City, NY 10001" +228564,Apple Airpods Headphones,1,150,07/02/19 21:11,"918 Johnson St, Boston, MA 02215" +228565,27in 4K Gaming Monitor,1,389.99,07/12/19 16:25,"619 Center St, San Francisco, CA 94016" +228566,Lightning Charging Cable,1,14.95,07/25/19 19:03,"567 4th St, San Francisco, CA 94016" +228567,iPhone,1,700,07/16/19 09:45,"34 13th St, Atlanta, GA 30301" +228568,Google Phone,1,600,07/29/19 18:09,"575 Lake St, Portland, OR 97035" +228569,Bose SoundSport Headphones,1,99.99,07/02/19 22:10,"823 12th St, San Francisco, CA 94016" +228570,Wired Headphones,1,11.99,07/13/19 06:12,"627 Elm St, Los Angeles, CA 90001" +228571,USB-C Charging Cable,1,11.95,07/14/19 19:43,"274 8th St, San Francisco, CA 94016" +228572,Apple Airpods Headphones,1,150,07/20/19 10:07,"270 11th St, Boston, MA 02215" +228573,Wired Headphones,1,11.99,07/10/19 21:21,"29 Jackson St, New York City, NY 10001" +228574,Wired Headphones,1,11.99,07/03/19 14:58,"777 Elm St, Austin, TX 73301" +228575,AAA Batteries (4-pack),1,2.99,07/30/19 21:18,"930 West St, San Francisco, CA 94016" +228576,USB-C Charging Cable,1,11.95,07/16/19 20:59,"50 14th St, New York City, NY 10001" +228577,Wired Headphones,1,11.99,07/07/19 15:39,"439 Washington St, Boston, MA 02215" +228578,AAA Batteries (4-pack),2,2.99,07/10/19 20:06,"700 Madison St, San Francisco, CA 94016" +228579,USB-C Charging Cable,1,11.95,07/21/19 15:38,"800 Maple St, Seattle, WA 98101" +228580,Lightning Charging Cable,1,14.95,07/24/19 00:42,"160 Maple St, San Francisco, CA 94016" +228581,27in 4K Gaming Monitor,1,389.99,07/11/19 18:09,"716 Lakeview St, New York City, NY 10001" +228582,AA Batteries (4-pack),1,3.84,07/11/19 08:11,"509 4th St, Austin, TX 73301" +228583,Bose SoundSport Headphones,1,99.99,07/30/19 22:55,"235 9th St, Atlanta, GA 30301" +228584,Wired Headphones,1,11.99,07/15/19 12:31,"893 Dogwood St, San Francisco, CA 94016" +228584,Lightning Charging Cable,2,14.95,07/15/19 12:31,"893 Dogwood St, San Francisco, CA 94016" +228585,34in Ultrawide Monitor,1,379.99,07/28/19 19:16,"843 Cedar St, Atlanta, GA 30301" +228586,Apple Airpods Headphones,1,150,07/01/19 13:27,"566 Lincoln St, San Francisco, CA 94016" +228587,Lightning Charging Cable,1,14.95,07/21/19 12:44,"285 14th St, San Francisco, CA 94016" +228588,Bose SoundSport Headphones,1,99.99,07/11/19 14:10,"103 Lincoln St, New York City, NY 10001" +228589,Lightning Charging Cable,1,14.95,07/02/19 03:23,"601 10th St, Dallas, TX 75001" +228590,AAA Batteries (4-pack),1,2.99,07/17/19 21:55,"500 13th St, Los Angeles, CA 90001" +228591,Google Phone,1,600,07/08/19 12:26,"788 Dogwood St, San Francisco, CA 94016" +228592,Wired Headphones,1,11.99,07/29/19 18:18,"118 1st St, Atlanta, GA 30301" +228593,AA Batteries (4-pack),1,3.84,07/15/19 09:41,"385 Sunset St, San Francisco, CA 94016" +228594,AA Batteries (4-pack),1,3.84,07/01/19 23:34,"807 Hill St, Boston, MA 02215" +228595,Lightning Charging Cable,1,14.95,07/26/19 14:24,"102 South St, Portland, OR 97035" +228596,Lightning Charging Cable,1,14.95,07/28/19 09:10,"494 Hickory St, Boston, MA 02215" +228597,Bose SoundSport Headphones,1,99.99,07/03/19 08:09,"43 Sunset St, Los Angeles, CA 90001" +228598,34in Ultrawide Monitor,1,379.99,07/12/19 09:06,"214 Willow St, Los Angeles, CA 90001" +228599,Apple Airpods Headphones,1,150,07/28/19 00:25,"537 11th St, San Francisco, CA 94016" +228600,AA Batteries (4-pack),1,3.84,07/26/19 08:45,"783 Washington St, New York City, NY 10001" +228601,Google Phone,1,600,07/01/19 19:10,"244 Cherry St, Austin, TX 73301" +228602,ThinkPad Laptop,1,999.99,07/04/19 16:36,"8 5th St, Los Angeles, CA 90001" +228603,iPhone,1,700,07/26/19 17:44,"810 Lakeview St, San Francisco, CA 94016" +228604,AAA Batteries (4-pack),1,2.99,07/26/19 15:23,"851 Cherry St, Dallas, TX 75001" +228605,Wired Headphones,1,11.99,07/04/19 18:09,"543 Highland St, San Francisco, CA 94016" +228606,Lightning Charging Cable,1,14.95,07/09/19 08:14,"919 5th St, Dallas, TX 75001" +228607,AAA Batteries (4-pack),3,2.99,07/29/19 17:29,"782 Dogwood St, Dallas, TX 75001" +228608,USB-C Charging Cable,1,11.95,07/29/19 18:46,"700 1st St, New York City, NY 10001" +228609,Vareebadd Phone,1,400,07/27/19 11:12,"771 River St, Los Angeles, CA 90001" +228610,AA Batteries (4-pack),3,3.84,07/10/19 17:55,"770 Spruce St, New York City, NY 10001" +228611,LG Washing Machine,1,600.0,07/26/19 22:56,"612 1st St, Dallas, TX 75001" +228612,USB-C Charging Cable,1,11.95,07/05/19 11:15,"818 Adams St, San Francisco, CA 94016" +228613,27in FHD Monitor,1,149.99,07/16/19 10:17,"38 12th St, New York City, NY 10001" +228614,iPhone,1,700,07/26/19 19:21,"810 Main St, San Francisco, CA 94016" +228615,Flatscreen TV,1,300,07/24/19 09:43,"477 9th St, Los Angeles, CA 90001" +228616,27in 4K Gaming Monitor,1,389.99,07/09/19 19:19,"316 12th St, Los Angeles, CA 90001" +228616,AAA Batteries (4-pack),1,2.99,07/09/19 19:19,"316 12th St, Los Angeles, CA 90001" +228617,USB-C Charging Cable,1,11.95,07/18/19 11:09,"87 Adams St, Portland, OR 97035" +228618,Vareebadd Phone,1,400,07/07/19 06:32,"153 Dogwood St, San Francisco, CA 94016" +228619,27in FHD Monitor,1,149.99,07/25/19 17:50,"893 5th St, San Francisco, CA 94016" +228620,Wired Headphones,1,11.99,07/10/19 16:20,"611 4th St, Portland, OR 97035" +228621,Wired Headphones,1,11.99,07/16/19 16:46,"942 14th St, New York City, NY 10001" +228622,Lightning Charging Cable,1,14.95,07/28/19 16:32,"659 North St, Seattle, WA 98101" +228623,AA Batteries (4-pack),2,3.84,07/05/19 19:08,"594 9th St, Los Angeles, CA 90001" +228624,Lightning Charging Cable,1,14.95,07/08/19 19:18,"956 River St, Seattle, WA 98101" +228625,Wired Headphones,1,11.99,07/24/19 04:53,"272 1st St, San Francisco, CA 94016" +228626,USB-C Charging Cable,2,11.95,07/31/19 10:11,"710 Park St, Dallas, TX 75001" +228627,AAA Batteries (4-pack),1,2.99,07/29/19 14:43,"190 North St, Los Angeles, CA 90001" +228628,AAA Batteries (4-pack),1,2.99,07/05/19 08:34,"64 Center St, Boston, MA 02215" +228629,Wired Headphones,1,11.99,07/06/19 19:56,"679 Hickory St, San Francisco, CA 94016" +228630,AA Batteries (4-pack),1,3.84,07/10/19 19:39,"460 5th St, Portland, OR 97035" +228631,Wired Headphones,1,11.99,07/24/19 13:31,"499 Washington St, San Francisco, CA 94016" +228632,AAA Batteries (4-pack),1,2.99,07/11/19 17:32,"968 Walnut St, Dallas, TX 75001" +228633,AAA Batteries (4-pack),1,2.99,07/02/19 17:56,"347 Lake St, Los Angeles, CA 90001" +228634,Vareebadd Phone,1,400,07/06/19 21:39,"610 Park St, New York City, NY 10001" +228635,AA Batteries (4-pack),2,3.84,07/12/19 11:22,"899 Main St, Atlanta, GA 30301" +228636,iPhone,1,700,07/28/19 19:31,"708 Johnson St, Dallas, TX 75001" +228637,USB-C Charging Cable,1,11.95,07/01/19 23:07,"823 Pine St, New York City, NY 10001" +228638,AA Batteries (4-pack),3,3.84,07/02/19 12:04,"282 10th St, San Francisco, CA 94016" +228639,AAA Batteries (4-pack),1,2.99,07/31/19 19:59,"827 Cedar St, Boston, MA 02215" +228640,Lightning Charging Cable,1,14.95,07/23/19 09:57,"536 Lincoln St, Seattle, WA 98101" +228641,Apple Airpods Headphones,1,150,07/22/19 17:35,"490 1st St, Seattle, WA 98101" +228642,Wired Headphones,1,11.99,07/07/19 10:30,"718 Park St, San Francisco, CA 94016" +228643,Lightning Charging Cable,1,14.95,07/08/19 17:46,"793 Wilson St, Boston, MA 02215" +228644,AAA Batteries (4-pack),1,2.99,07/19/19 18:09,"946 8th St, Seattle, WA 98101" +228645,USB-C Charging Cable,2,11.95,07/04/19 11:55,"841 Meadow St, New York City, NY 10001" +228646,Bose SoundSport Headphones,1,99.99,07/15/19 11:58,"111 Jackson St, Los Angeles, CA 90001" +228647,Apple Airpods Headphones,1,150,07/11/19 18:28,"358 7th St, Los Angeles, CA 90001" +228648,Vareebadd Phone,1,400,07/01/19 17:34,"100 Willow St, Los Angeles, CA 90001" +228648,USB-C Charging Cable,1,11.95,07/01/19 17:34,"100 Willow St, Los Angeles, CA 90001" +228649,Macbook Pro Laptop,1,1700,07/26/19 12:22,"167 Lincoln St, Portland, OR 97035" +228650,27in FHD Monitor,1,149.99,07/28/19 12:44,"870 Elm St, Los Angeles, CA 90001" +228651,USB-C Charging Cable,1,11.95,07/12/19 21:38,"315 10th St, San Francisco, CA 94016" +228652,Wired Headphones,1,11.99,07/02/19 20:14,"965 Adams St, Seattle, WA 98101" +228653,27in 4K Gaming Monitor,1,389.99,07/06/19 18:27,"479 2nd St, Boston, MA 02215" +228654,Apple Airpods Headphones,1,150,07/26/19 11:05,"776 Church St, Boston, MA 02215" +228655,Flatscreen TV,1,300,07/08/19 11:50,"901 Hickory St, San Francisco, CA 94016" +228656,Wired Headphones,1,11.99,07/22/19 17:18,"10 North St, Seattle, WA 98101" +228657,AAA Batteries (4-pack),1,2.99,07/23/19 14:01,"11 Madison St, New York City, NY 10001" +228658,Bose SoundSport Headphones,1,99.99,07/09/19 19:31,"600 Wilson St, New York City, NY 10001" +228659,AAA Batteries (4-pack),2,2.99,07/27/19 23:07,"700 West St, San Francisco, CA 94016" +228660,34in Ultrawide Monitor,1,379.99,07/05/19 16:08,"127 North St, Seattle, WA 98101" +228661,USB-C Charging Cable,1,11.95,07/11/19 13:33,"289 Lakeview St, New York City, NY 10001" +228662,AAA Batteries (4-pack),1,2.99,07/13/19 15:17,"129 Jackson St, San Francisco, CA 94016" +228663,USB-C Charging Cable,1,11.95,07/18/19 08:53,"801 Jefferson St, Boston, MA 02215" +228664,ThinkPad Laptop,1,999.99,07/03/19 08:16,"684 Jefferson St, Portland, OR 97035" +228665,AA Batteries (4-pack),1,3.84,07/18/19 11:55,"821 1st St, Dallas, TX 75001" +228666,34in Ultrawide Monitor,1,379.99,07/17/19 20:06,"616 13th St, Seattle, WA 98101" +228667,AAA Batteries (4-pack),2,2.99,07/02/19 13:37,"481 West St, Dallas, TX 75001" +228668,Apple Airpods Headphones,1,150,07/29/19 22:59,"285 Ridge St, San Francisco, CA 94016" +228669,20in Monitor,1,109.99,07/05/19 16:27,"624 Wilson St, Seattle, WA 98101" +228670,Wired Headphones,1,11.99,07/23/19 16:24,"728 Hill St, Boston, MA 02215" +228671,AAA Batteries (4-pack),1,2.99,07/06/19 17:08,"844 Washington St, Seattle, WA 98101" +228672,AAA Batteries (4-pack),1,2.99,07/26/19 16:00,"741 Elm St, San Francisco, CA 94016" +228673,iPhone,1,700,07/02/19 08:40,"368 Dogwood St, Boston, MA 02215" +228674,Wired Headphones,1,11.99,07/11/19 12:33,"345 Johnson St, Seattle, WA 98101" +228675,34in Ultrawide Monitor,1,379.99,07/20/19 20:14,"634 Hill St, Los Angeles, CA 90001" +228676,Vareebadd Phone,1,400,07/16/19 11:32,"198 Spruce St, San Francisco, CA 94016" +228677,AA Batteries (4-pack),1,3.84,07/28/19 07:42,"925 Adams St, Boston, MA 02215" +228678,27in 4K Gaming Monitor,1,389.99,07/12/19 22:18,"976 Madison St, San Francisco, CA 94016" +228679,AA Batteries (4-pack),1,3.84,07/20/19 20:23,"355 Lincoln St, New York City, NY 10001" +228680,AA Batteries (4-pack),1,3.84,07/26/19 13:45,"864 14th St, San Francisco, CA 94016" +228681,34in Ultrawide Monitor,1,379.99,07/07/19 12:29,"389 Hickory St, San Francisco, CA 94016" +228682,34in Ultrawide Monitor,1,379.99,07/30/19 09:35,"947 Cedar St, New York City, NY 10001" +228683,Bose SoundSport Headphones,1,99.99,07/29/19 11:38,"813 Park St, New York City, NY 10001" +228684,USB-C Charging Cable,1,11.95,07/14/19 15:04,"704 9th St, Los Angeles, CA 90001" +228685,USB-C Charging Cable,1,11.95,07/14/19 17:26,"430 Park St, Seattle, WA 98101" +228686,Wired Headphones,1,11.99,07/29/19 19:22,"124 Cedar St, Los Angeles, CA 90001" +228687,Lightning Charging Cable,1,14.95,07/18/19 09:31,"2 South St, San Francisco, CA 94016" +228688,USB-C Charging Cable,1,11.95,07/17/19 16:43,"459 River St, Portland, ME 04101" +228689,Wired Headphones,1,11.99,07/31/19 15:52,"860 Cedar St, San Francisco, CA 94016" +228690,AAA Batteries (4-pack),3,2.99,07/15/19 09:54,"810 Sunset St, Dallas, TX 75001" +228691,Bose SoundSport Headphones,1,99.99,07/29/19 08:07,"95 10th St, Portland, OR 97035" +228692,Wired Headphones,1,11.99,07/02/19 17:16,"715 Maple St, Dallas, TX 75001" +228693,34in Ultrawide Monitor,1,379.99,07/31/19 18:22,"752 Madison St, Austin, TX 73301" +228694,LG Dryer,1,600.0,07/02/19 13:16,"577 Madison St, Atlanta, GA 30301" +228695,iPhone,1,700,07/11/19 00:31,"936 Cedar St, Portland, OR 97035" +228696,Bose SoundSport Headphones,1,99.99,07/11/19 18:58,"909 Walnut St, Los Angeles, CA 90001" +228697,Flatscreen TV,1,300,07/31/19 22:32,"696 Dogwood St, New York City, NY 10001" +228698,ThinkPad Laptop,1,999.99,07/26/19 07:06,"274 7th St, San Francisco, CA 94016" +228699,34in Ultrawide Monitor,1,379.99,07/18/19 16:55,"184 7th St, Los Angeles, CA 90001" +228700,Apple Airpods Headphones,1,150,07/26/19 09:26,"994 Elm St, New York City, NY 10001" +228701,Wired Headphones,1,11.99,07/23/19 12:25,"332 Dogwood St, Boston, MA 02215" +228702,Apple Airpods Headphones,1,150,07/04/19 10:59,"45 Meadow St, Dallas, TX 75001" +228703,Apple Airpods Headphones,1,150,07/03/19 17:33,"96 Sunset St, Dallas, TX 75001" +228704,USB-C Charging Cable,1,11.95,07/11/19 19:02,"848 13th St, Dallas, TX 75001" +228705,iPhone,1,700,07/11/19 22:16,"746 Forest St, New York City, NY 10001" +228706,AA Batteries (4-pack),1,3.84,07/28/19 11:08,"876 River St, Boston, MA 02215" +228707,ThinkPad Laptop,1,999.99,07/06/19 10:40,"448 Lake St, Los Angeles, CA 90001" +228708,Wired Headphones,1,11.99,07/06/19 18:17,"328 13th St, San Francisco, CA 94016" +228708,AAA Batteries (4-pack),1,2.99,07/06/19 18:17,"328 13th St, San Francisco, CA 94016" +228709,USB-C Charging Cable,1,11.95,07/18/19 22:13,"141 Walnut St, New York City, NY 10001" +228710,27in FHD Monitor,1,149.99,07/27/19 21:38,"726 Willow St, Seattle, WA 98101" +228711,AAA Batteries (4-pack),2,2.99,07/12/19 08:21,"385 Jefferson St, Boston, MA 02215" +228712,USB-C Charging Cable,1,11.95,07/12/19 14:13,"715 Madison St, Portland, OR 97035" +228713,Flatscreen TV,1,300,07/13/19 07:54,"439 Jefferson St, New York City, NY 10001" +228714,Apple Airpods Headphones,1,150,07/21/19 11:11,"128 14th St, San Francisco, CA 94016" +228715,AAA Batteries (4-pack),1,2.99,07/25/19 21:55,"275 13th St, Atlanta, GA 30301" +228716,Wired Headphones,2,11.99,07/27/19 22:22,"281 Lakeview St, New York City, NY 10001" +228717,Bose SoundSport Headphones,1,99.99,07/22/19 10:26,"732 Adams St, Los Angeles, CA 90001" +228717,Lightning Charging Cable,1,14.95,07/22/19 10:26,"732 Adams St, Los Angeles, CA 90001" +228718,AAA Batteries (4-pack),1,2.99,07/10/19 10:42,"502 Jefferson St, Austin, TX 73301" +228719,Apple Airpods Headphones,1,150,07/09/19 19:53,"724 Hickory St, Seattle, WA 98101" +228720,Wired Headphones,1,11.99,07/29/19 19:38,"735 Jefferson St, Boston, MA 02215" +228721,27in FHD Monitor,1,149.99,07/11/19 00:37,"536 13th St, Boston, MA 02215" +228722,34in Ultrawide Monitor,1,379.99,07/26/19 22:03,"207 1st St, Dallas, TX 75001" +228722,20in Monitor,1,109.99,07/26/19 22:03,"207 1st St, Dallas, TX 75001" +228723,AA Batteries (4-pack),2,3.84,07/06/19 15:16,"306 9th St, Seattle, WA 98101" +228724,Wired Headphones,1,11.99,07/18/19 13:24,"334 Washington St, Austin, TX 73301" +228725,Lightning Charging Cable,1,14.95,07/14/19 21:20,"738 Pine St, San Francisco, CA 94016" +228726,Wired Headphones,1,11.99,07/19/19 16:48,"870 Hickory St, New York City, NY 10001" +228727,Apple Airpods Headphones,1,150,07/02/19 11:26,"239 1st St, Portland, ME 04101" +228728,Lightning Charging Cable,1,14.95,07/13/19 19:43,"364 Wilson St, Boston, MA 02215" +228729,Wired Headphones,1,11.99,07/29/19 18:08,"124 Willow St, New York City, NY 10001" +228730,27in 4K Gaming Monitor,1,389.99,07/12/19 11:09,"881 River St, San Francisco, CA 94016" +228731,AAA Batteries (4-pack),1,2.99,07/05/19 17:47,"305 5th St, Portland, OR 97035" +228732,Bose SoundSport Headphones,1,99.99,07/22/19 09:22,"745 Ridge St, San Francisco, CA 94016" +228733,Wired Headphones,1,11.99,07/25/19 08:57,"939 11th St, San Francisco, CA 94016" +228734,Apple Airpods Headphones,1,150,07/25/19 16:49,"597 4th St, Los Angeles, CA 90001" +228735,AAA Batteries (4-pack),1,2.99,07/01/19 11:02,"538 Lakeview St, Seattle, WA 98101" +228736,USB-C Charging Cable,1,11.95,07/29/19 19:05,"703 6th St, Dallas, TX 75001" +228737,Wired Headphones,1,11.99,07/11/19 16:24,"12 Spruce St, Portland, ME 04101" +228738,USB-C Charging Cable,1,11.95,07/27/19 18:38,"227 Pine St, Boston, MA 02215" +228739,AA Batteries (4-pack),1,3.84,07/26/19 20:49,"128 Walnut St, New York City, NY 10001" +228740,Apple Airpods Headphones,1,150,07/12/19 17:09,"380 Willow St, San Francisco, CA 94016" +228741,AAA Batteries (4-pack),1,2.99,07/21/19 15:12,"603 5th St, Los Angeles, CA 90001" +228742,AAA Batteries (4-pack),2,2.99,07/14/19 10:58,"96 Center St, Dallas, TX 75001" +228743,Apple Airpods Headphones,1,150,07/25/19 03:16,"275 Forest St, San Francisco, CA 94016" +228744,Bose SoundSport Headphones,1,99.99,07/15/19 18:16,"505 Hill St, New York City, NY 10001" +228745,iPhone,1,700,07/08/19 11:50,"998 Hill St, New York City, NY 10001" +228746,Bose SoundSport Headphones,1,99.99,07/25/19 23:45,"875 Maple St, Los Angeles, CA 90001" +228747,27in FHD Monitor,1,149.99,07/31/19 08:13,"268 Church St, Los Angeles, CA 90001" +228748,AAA Batteries (4-pack),1,2.99,07/26/19 13:17,"772 Lincoln St, San Francisco, CA 94016" +228749,Apple Airpods Headphones,1,150,07/08/19 15:05,"551 10th St, Los Angeles, CA 90001" +228750,USB-C Charging Cable,1,11.95,07/31/19 09:56,"731 Jackson St, Boston, MA 02215" +228751,Lightning Charging Cable,1,14.95,07/02/19 13:01,"246 Maple St, San Francisco, CA 94016" +228752,27in 4K Gaming Monitor,1,389.99,07/09/19 18:58,"735 Jackson St, San Francisco, CA 94016" +228753,Lightning Charging Cable,1,14.95,07/27/19 13:34,"547 River St, Seattle, WA 98101" +228754,USB-C Charging Cable,1,11.95,08/01/19 00:21,"977 North St, San Francisco, CA 94016" +228755,20in Monitor,1,109.99,07/01/19 08:30,"383 14th St, San Francisco, CA 94016" +228756,34in Ultrawide Monitor,1,379.99,07/29/19 13:23,"891 North St, Seattle, WA 98101" +228757,AAA Batteries (4-pack),1,2.99,07/04/19 20:48,"451 Main St, Seattle, WA 98101" +228758,Flatscreen TV,1,300,07/14/19 19:55,"817 9th St, Austin, TX 73301" +228759,AAA Batteries (4-pack),2,2.99,07/07/19 10:28,"218 Park St, Atlanta, GA 30301" +228760,20in Monitor,1,109.99,07/24/19 09:43,"260 Maple St, Austin, TX 73301" +228761,Bose SoundSport Headphones,1,99.99,07/19/19 14:52,"931 9th St, Atlanta, GA 30301" +228762,ThinkPad Laptop,1,999.99,07/09/19 09:15,"405 Madison St, Portland, OR 97035" +228763,AAA Batteries (4-pack),1,2.99,07/19/19 22:28,"327 Hickory St, Atlanta, GA 30301" +228764,AA Batteries (4-pack),1,3.84,07/07/19 20:14,"469 9th St, Dallas, TX 75001" +228765,AA Batteries (4-pack),1,3.84,07/08/19 21:32,"409 Spruce St, Los Angeles, CA 90001" +228766,Lightning Charging Cable,1,14.95,07/03/19 18:29,"626 10th St, Seattle, WA 98101" +228766,Google Phone,1,600,07/03/19 18:29,"626 10th St, Seattle, WA 98101" +228767,Flatscreen TV,1,300,07/10/19 16:28,"153 8th St, San Francisco, CA 94016" +228768,Wired Headphones,1,11.99,07/27/19 18:53,"140 1st St, Los Angeles, CA 90001" +228769,Wired Headphones,2,11.99,07/31/19 08:38,"950 North St, New York City, NY 10001" +228770,AAA Batteries (4-pack),1,2.99,07/17/19 16:13,"217 Cedar St, Dallas, TX 75001" +228771,Macbook Pro Laptop,1,1700,07/17/19 17:40,"117 Dogwood St, Boston, MA 02215" +228772,Lightning Charging Cable,1,14.95,07/11/19 16:53,"370 Jackson St, San Francisco, CA 94016" +228773,Flatscreen TV,1,300,07/13/19 13:16,"289 4th St, Seattle, WA 98101" +228774,27in 4K Gaming Monitor,1,389.99,07/23/19 19:56,"116 West St, Boston, MA 02215" +228775,Apple Airpods Headphones,1,150,07/01/19 11:21,"923 River St, Boston, MA 02215" +228776,ThinkPad Laptop,1,999.99,07/15/19 10:06,"251 5th St, Atlanta, GA 30301" +228777,USB-C Charging Cable,1,11.95,07/04/19 18:18,"674 Willow St, Dallas, TX 75001" +228778,Wired Headphones,2,11.99,07/06/19 10:10,"180 Church St, New York City, NY 10001" +228779,Wired Headphones,1,11.99,07/08/19 23:05,"883 Church St, Los Angeles, CA 90001" +228780,Bose SoundSport Headphones,1,99.99,07/14/19 15:44,"552 9th St, Los Angeles, CA 90001" +228781,27in 4K Gaming Monitor,1,389.99,07/07/19 17:44,"83 Highland St, New York City, NY 10001" +228782,USB-C Charging Cable,1,11.95,07/03/19 22:17,"986 Walnut St, Dallas, TX 75001" +228782,Bose SoundSport Headphones,1,99.99,07/03/19 22:17,"986 Walnut St, Dallas, TX 75001" +228783,Macbook Pro Laptop,1,1700,07/15/19 14:28,"703 Cedar St, San Francisco, CA 94016" +228784,27in FHD Monitor,1,149.99,07/09/19 16:06,"345 Lincoln St, San Francisco, CA 94016" +228785,iPhone,1,700,07/22/19 09:07,"734 Wilson St, Boston, MA 02215" +228786,AAA Batteries (4-pack),1,2.99,07/08/19 15:14,"577 Park St, Los Angeles, CA 90001" +228787,Lightning Charging Cable,1,14.95,07/27/19 18:31,"554 2nd St, Los Angeles, CA 90001" +228788,Apple Airpods Headphones,1,150,07/05/19 16:08,"738 Hickory St, Los Angeles, CA 90001" +228789,USB-C Charging Cable,1,11.95,07/13/19 16:16,"791 Cherry St, Los Angeles, CA 90001" +228790,20in Monitor,1,109.99,07/06/19 21:19,"691 Cedar St, New York City, NY 10001" +228791,AAA Batteries (4-pack),2,2.99,07/16/19 00:15,"460 8th St, Seattle, WA 98101" +228792,iPhone,1,700,07/22/19 15:53,"336 Jackson St, Austin, TX 73301" +228793,USB-C Charging Cable,1,11.95,07/02/19 18:32,"75 4th St, Los Angeles, CA 90001" +228794,Wired Headphones,1,11.99,07/30/19 08:43,"81 Madison St, Atlanta, GA 30301" +228795,Lightning Charging Cable,1,14.95,07/27/19 16:06,"113 12th St, Portland, OR 97035" +228796,Google Phone,1,600,07/12/19 10:54,"487 Johnson St, Los Angeles, CA 90001" +228797,USB-C Charging Cable,1,11.95,07/21/19 10:38,"136 6th St, Boston, MA 02215" +228798,Lightning Charging Cable,1,14.95,07/11/19 08:51,"248 Park St, Atlanta, GA 30301" +228799,Wired Headphones,1,11.99,07/02/19 22:12,"912 Jackson St, San Francisco, CA 94016" +228800,Apple Airpods Headphones,1,150,07/27/19 22:38,"26 Wilson St, New York City, NY 10001" +228801,USB-C Charging Cable,2,11.95,07/25/19 10:21,"653 2nd St, Dallas, TX 75001" +228802,AAA Batteries (4-pack),1,2.99,07/17/19 09:46,"791 Highland St, New York City, NY 10001" +228803,Macbook Pro Laptop,1,1700,07/05/19 13:16,"333 Walnut St, Dallas, TX 75001" +228804,USB-C Charging Cable,1,11.95,07/22/19 20:56,"402 Lakeview St, New York City, NY 10001" +228805,Apple Airpods Headphones,1,150,07/03/19 18:11,"475 Willow St, Seattle, WA 98101" +228806,Vareebadd Phone,1,400,07/21/19 17:46,"622 Park St, San Francisco, CA 94016" +228807,ThinkPad Laptop,1,999.99,07/31/19 16:29,"768 8th St, San Francisco, CA 94016" +228808,AA Batteries (4-pack),1,3.84,07/03/19 22:17,"887 Ridge St, San Francisco, CA 94016" +228809,AAA Batteries (4-pack),1,2.99,07/14/19 17:40,"740 4th St, San Francisco, CA 94016" +228810,AAA Batteries (4-pack),2,2.99,07/13/19 11:12,"657 Park St, Seattle, WA 98101" +228811,ThinkPad Laptop,1,999.99,07/02/19 18:09,"582 Maple St, Boston, MA 02215" +228812,USB-C Charging Cable,1,11.95,07/28/19 07:09,"573 Center St, Portland, ME 04101" +228813,USB-C Charging Cable,1,11.95,07/05/19 06:20,"924 Lincoln St, Boston, MA 02215" +228814,USB-C Charging Cable,1,11.95,07/25/19 14:29,"224 4th St, Austin, TX 73301" +228815,Lightning Charging Cable,1,14.95,07/18/19 13:41,"368 8th St, San Francisco, CA 94016" +228816,27in 4K Gaming Monitor,1,389.99,07/16/19 09:56,"802 West St, Boston, MA 02215" +228817,iPhone,1,700,07/26/19 14:49,"502 6th St, New York City, NY 10001" +228818,Macbook Pro Laptop,1,1700,07/01/19 07:42,"110 Dogwood St, San Francisco, CA 94016" +228819,Lightning Charging Cable,1,14.95,07/23/19 15:08,"94 Hickory St, San Francisco, CA 94016" +228820,Apple Airpods Headphones,1,150,07/15/19 19:05,"311 Lake St, Atlanta, GA 30301" +228821,USB-C Charging Cable,1,11.95,07/30/19 18:47,"906 8th St, New York City, NY 10001" +228822,AAA Batteries (4-pack),1,2.99,07/10/19 08:57,"727 4th St, Boston, MA 02215" +228823,Apple Airpods Headphones,1,150,07/31/19 20:17,"557 Washington St, Dallas, TX 75001" +228824,AA Batteries (4-pack),1,3.84,07/10/19 09:05,"429 Jackson St, San Francisco, CA 94016" +228825,AAA Batteries (4-pack),1,2.99,07/07/19 08:49,"320 Cherry St, Los Angeles, CA 90001" +228826,Bose SoundSport Headphones,1,99.99,07/26/19 21:27,"665 Lake St, Seattle, WA 98101" +228827,Lightning Charging Cable,1,14.95,07/10/19 17:46,"766 6th St, Boston, MA 02215" +228828,Apple Airpods Headphones,1,150,07/07/19 23:34,"290 Ridge St, Austin, TX 73301" +228829,Lightning Charging Cable,1,14.95,07/03/19 19:14,"300 Highland St, New York City, NY 10001" +228830,Lightning Charging Cable,1,14.95,07/23/19 23:48,"236 Church St, Seattle, WA 98101" +228831,27in 4K Gaming Monitor,1,389.99,07/16/19 18:40,"964 Forest St, San Francisco, CA 94016" +228832,Macbook Pro Laptop,1,1700,07/08/19 20:08,"876 Highland St, San Francisco, CA 94016" +228833,USB-C Charging Cable,1,11.95,07/07/19 10:11,"278 Cherry St, Portland, ME 04101" +228833,AAA Batteries (4-pack),1,2.99,07/07/19 10:11,"278 Cherry St, Portland, ME 04101" +228834,AA Batteries (4-pack),1,3.84,07/25/19 13:41,"530 Hill St, New York City, NY 10001" +228835,Wired Headphones,1,11.99,07/20/19 06:53,"917 13th St, San Francisco, CA 94016" +228836,Wired Headphones,1,11.99,07/03/19 12:01,"221 6th St, Portland, OR 97035" +228837,Apple Airpods Headphones,1,150,07/08/19 18:07,"828 Lakeview St, Seattle, WA 98101" +228838,Google Phone,1,600,07/31/19 13:00,"766 Jefferson St, San Francisco, CA 94016" +228839,Lightning Charging Cable,1,14.95,07/07/19 08:28,"688 8th St, Seattle, WA 98101" +228840,27in 4K Gaming Monitor,1,389.99,07/21/19 19:18,"330 Highland St, Atlanta, GA 30301" +228841,Apple Airpods Headphones,1,150,07/14/19 14:27,"231 Center St, Los Angeles, CA 90001" +228842,Wired Headphones,1,11.99,07/02/19 16:26,"669 Ridge St, Los Angeles, CA 90001" +228843,AA Batteries (4-pack),1,3.84,07/08/19 13:50,"791 14th St, San Francisco, CA 94016" +228844,Bose SoundSport Headphones,1,99.99,07/29/19 10:51,"502 Park St, San Francisco, CA 94016" +228845,Lightning Charging Cable,1,14.95,07/16/19 20:22,"439 1st St, San Francisco, CA 94016" +228846,34in Ultrawide Monitor,1,379.99,07/01/19 17:00,"325 Adams St, Dallas, TX 75001" +228847,USB-C Charging Cable,1,11.95,07/16/19 17:26,"794 Cherry St, Boston, MA 02215" +228848,Flatscreen TV,1,300,07/17/19 12:14,"902 Lakeview St, San Francisco, CA 94016" +228849,Apple Airpods Headphones,1,150,07/06/19 20:32,"541 Main St, Los Angeles, CA 90001" +228850,Wired Headphones,1,11.99,07/23/19 21:00,"498 13th St, New York City, NY 10001" +228851,27in FHD Monitor,1,149.99,07/18/19 12:48,"260 1st St, Seattle, WA 98101" +228852,27in FHD Monitor,1,149.99,07/14/19 19:10,"445 4th St, San Francisco, CA 94016" +228853,ThinkPad Laptop,1,999.99,07/01/19 02:45,"774 Jefferson St, Seattle, WA 98101" +228854,Apple Airpods Headphones,1,150,07/14/19 19:31,"323 Forest St, Seattle, WA 98101" +228855,Lightning Charging Cable,1,14.95,07/03/19 13:01,"372 Park St, Dallas, TX 75001" +228856,Lightning Charging Cable,1,14.95,07/15/19 22:54,"20 Pine St, Los Angeles, CA 90001" +228857,20in Monitor,1,109.99,07/22/19 10:46,"906 River St, San Francisco, CA 94016" +228858,Bose SoundSport Headphones,1,99.99,07/19/19 07:00,"492 10th St, New York City, NY 10001" +228859,Bose SoundSport Headphones,1,99.99,07/03/19 19:58,"289 9th St, Los Angeles, CA 90001" +228860,Lightning Charging Cable,1,14.95,07/29/19 22:37,"236 Wilson St, San Francisco, CA 94016" +228861,Apple Airpods Headphones,1,150,07/12/19 10:51,"802 10th St, Los Angeles, CA 90001" +228862,AAA Batteries (4-pack),1,2.99,07/30/19 21:44,"849 9th St, Los Angeles, CA 90001" +228863,AAA Batteries (4-pack),2,2.99,07/23/19 10:32,"22 1st St, Austin, TX 73301" +228864,Wired Headphones,1,11.99,07/22/19 19:03,"688 2nd St, Dallas, TX 75001" +228864,AA Batteries (4-pack),2,3.84,07/22/19 19:03,"688 2nd St, Dallas, TX 75001" +228865,AAA Batteries (4-pack),2,2.99,07/27/19 02:22,"661 Highland St, Boston, MA 02215" +228866,AA Batteries (4-pack),2,3.84,07/26/19 19:07,"322 Chestnut St, Portland, ME 04101" +228867,Lightning Charging Cable,1,14.95,07/10/19 08:29,"91 Wilson St, Seattle, WA 98101" +228868,Lightning Charging Cable,1,14.95,07/31/19 23:37,"711 8th St, Portland, OR 97035" +228869,ThinkPad Laptop,1,999.99,07/02/19 13:36,"861 Church St, Boston, MA 02215" +228870,Lightning Charging Cable,1,14.95,07/28/19 08:45,"783 West St, Dallas, TX 75001" +228871,20in Monitor,1,109.99,07/28/19 18:29,"267 North St, New York City, NY 10001" +228872,Flatscreen TV,1,300,07/04/19 13:24,"322 12th St, Dallas, TX 75001" +228873,Bose SoundSport Headphones,1,99.99,07/11/19 06:28,"262 6th St, San Francisco, CA 94016" +228874,Macbook Pro Laptop,1,1700,07/28/19 23:35,"32 14th St, Atlanta, GA 30301" +228875,iPhone,1,700,07/26/19 15:10,"771 14th St, San Francisco, CA 94016" +228875,Wired Headphones,1,11.99,07/26/19 15:10,"771 14th St, San Francisco, CA 94016" +228876,27in FHD Monitor,1,149.99,07/08/19 10:05,"604 11th St, New York City, NY 10001" +228877,Flatscreen TV,1,300,07/30/19 09:46,"576 Chestnut St, Portland, OR 97035" +228878,AA Batteries (4-pack),1,3.84,07/30/19 18:17,"207 Ridge St, Boston, MA 02215" +228879,USB-C Charging Cable,2,11.95,07/05/19 01:14,"812 Wilson St, Los Angeles, CA 90001" +228880,Apple Airpods Headphones,1,150,07/26/19 03:41,"876 Maple St, San Francisco, CA 94016" +228881,Flatscreen TV,1,300,07/26/19 19:37,"85 Center St, Boston, MA 02215" +228882,USB-C Charging Cable,1,11.95,07/12/19 17:46,"295 12th St, Seattle, WA 98101" +228883,Wired Headphones,1,11.99,07/29/19 12:31,"161 2nd St, San Francisco, CA 94016" +228884,Apple Airpods Headphones,1,150,07/19/19 17:25,"799 8th St, Los Angeles, CA 90001" +228885,AA Batteries (4-pack),1,3.84,07/05/19 01:35,"101 2nd St, Boston, MA 02215" +228886,ThinkPad Laptop,1,999.99,07/22/19 13:20,"651 Maple St, Dallas, TX 75001" +228887,Apple Airpods Headphones,1,150,07/21/19 12:38,"459 Park St, Los Angeles, CA 90001" +228888,Wired Headphones,1,11.99,07/15/19 15:26,"178 12th St, New York City, NY 10001" +228889,USB-C Charging Cable,1,11.95,07/18/19 17:31,"602 Johnson St, San Francisco, CA 94016" +228890,AA Batteries (4-pack),1,3.84,07/11/19 10:54,"181 Maple St, San Francisco, CA 94016" +228891,iPhone,1,700,07/09/19 12:05,"789 North St, San Francisco, CA 94016" +228892,AAA Batteries (4-pack),2,2.99,07/02/19 13:23,"412 Lincoln St, Los Angeles, CA 90001" +228893,AA Batteries (4-pack),1,3.84,07/14/19 23:28,"849 South St, Atlanta, GA 30301" +228894,Google Phone,1,600,07/07/19 00:01,"61 9th St, San Francisco, CA 94016" +228894,USB-C Charging Cable,1,11.95,07/07/19 00:01,"61 9th St, San Francisco, CA 94016" +228895,USB-C Charging Cable,1,11.95,07/27/19 14:02,"885 8th St, Boston, MA 02215" +228896,Wired Headphones,1,11.99,07/12/19 08:21,"115 Sunset St, Dallas, TX 75001" +228897,Bose SoundSport Headphones,1,99.99,07/18/19 06:46,"863 Cherry St, Seattle, WA 98101" +228898,34in Ultrawide Monitor,1,379.99,07/15/19 18:51,"939 Park St, Portland, OR 97035" +228898,Apple Airpods Headphones,1,150,07/15/19 18:51,"939 Park St, Portland, OR 97035" +228899,USB-C Charging Cable,1,11.95,07/06/19 19:25,"456 Forest St, Portland, OR 97035" +228900,Wired Headphones,1,11.99,07/31/19 10:18,"32 6th St, Portland, ME 04101" +228901,Lightning Charging Cable,1,14.95,07/06/19 09:42,"433 Spruce St, Austin, TX 73301" +228902,20in Monitor,1,109.99,07/27/19 10:06,"375 River St, Dallas, TX 75001" +228903,Lightning Charging Cable,1,14.95,07/01/19 17:35,"163 9th St, San Francisco, CA 94016" +228904,Wired Headphones,1,11.99,07/01/19 12:27,"11 2nd St, New York City, NY 10001" +228905,USB-C Charging Cable,1,11.95,07/16/19 21:40,"866 Jackson St, New York City, NY 10001" +228906,Wired Headphones,1,11.99,07/30/19 23:15,"878 14th St, New York City, NY 10001" +228907,AAA Batteries (4-pack),1,2.99,07/28/19 10:36,"344 1st St, San Francisco, CA 94016" +228908,Apple Airpods Headphones,1,150,07/01/19 17:02,"810 Washington St, Portland, OR 97035" +228909,Wired Headphones,1,11.99,07/12/19 19:19,"721 Center St, Los Angeles, CA 90001" +228910,Lightning Charging Cable,1,14.95,07/20/19 08:53,"713 12th St, San Francisco, CA 94016" +228911,Google Phone,1,600,07/24/19 16:23,"407 Lake St, San Francisco, CA 94016" +228912,27in 4K Gaming Monitor,1,389.99,07/09/19 06:45,"969 13th St, Austin, TX 73301" +228913,AAA Batteries (4-pack),1,2.99,07/04/19 14:29,"9 1st St, Dallas, TX 75001" +228914,20in Monitor,1,109.99,07/28/19 20:28,"862 Park St, San Francisco, CA 94016" +228915,27in FHD Monitor,1,149.99,07/05/19 23:45,"201 Walnut St, New York City, NY 10001" +228916,Bose SoundSport Headphones,1,99.99,07/06/19 22:55,"759 9th St, Boston, MA 02215" +228917,Vareebadd Phone,1,400,07/29/19 14:15,"25 Maple St, Portland, OR 97035" +228918,AA Batteries (4-pack),1,3.84,07/26/19 15:19,"549 4th St, Los Angeles, CA 90001" +228919,AA Batteries (4-pack),1,3.84,07/25/19 20:36,"695 Adams St, San Francisco, CA 94016" +228920,AA Batteries (4-pack),1,3.84,07/29/19 21:34,"537 Ridge St, Portland, ME 04101" +228921,LG Washing Machine,1,600.0,07/05/19 08:15,"674 Willow St, Portland, ME 04101" +228922,Google Phone,1,600,07/21/19 14:17,"402 Meadow St, Los Angeles, CA 90001" +228922,Wired Headphones,1,11.99,07/21/19 14:17,"402 Meadow St, Los Angeles, CA 90001" +228923,Lightning Charging Cable,1,14.95,07/14/19 11:46,"408 2nd St, Los Angeles, CA 90001" +228924,AA Batteries (4-pack),1,3.84,07/03/19 13:46,"624 13th St, Dallas, TX 75001" +228925,iPhone,1,700,07/04/19 15:57,"806 North St, Dallas, TX 75001" +228926,AAA Batteries (4-pack),1,2.99,07/08/19 19:10,"666 Cedar St, Seattle, WA 98101" +228927,Bose SoundSport Headphones,1,99.99,07/26/19 12:45,"126 Hickory St, Boston, MA 02215" +228928,20in Monitor,1,109.99,07/09/19 22:02,"528 Madison St, Seattle, WA 98101" +228929,Bose SoundSport Headphones,1,99.99,07/14/19 20:25,"367 Jefferson St, Dallas, TX 75001" +228930,20in Monitor,1,109.99,07/22/19 23:23,"86 Pine St, Dallas, TX 75001" +228931,Flatscreen TV,1,300,07/15/19 10:12,"167 8th St, San Francisco, CA 94016" +228932,Apple Airpods Headphones,1,150,07/31/19 21:54,"365 Cherry St, San Francisco, CA 94016" +228933,27in 4K Gaming Monitor,1,389.99,07/18/19 20:13,"358 12th St, Portland, OR 97035" +228934,27in FHD Monitor,1,149.99,07/15/19 14:38,"604 13th St, San Francisco, CA 94016" +228935,27in 4K Gaming Monitor,1,389.99,07/26/19 22:10,"140 West St, San Francisco, CA 94016" +228936,27in FHD Monitor,1,149.99,07/21/19 17:17,"86 6th St, San Francisco, CA 94016" +228937,Apple Airpods Headphones,1,150,07/24/19 11:20,"32 Walnut St, Los Angeles, CA 90001" +228938,Wired Headphones,1,11.99,07/26/19 22:33,"580 Jackson St, New York City, NY 10001" +228939,ThinkPad Laptop,1,999.99,07/06/19 16:02,"145 Sunset St, New York City, NY 10001" +228940,Lightning Charging Cable,1,14.95,07/11/19 15:10,"480 Jackson St, Austin, TX 73301" +228941,AAA Batteries (4-pack),2,2.99,07/03/19 16:52,"557 Adams St, Dallas, TX 75001" +228942,Lightning Charging Cable,1,14.95,07/20/19 16:05,"594 14th St, Seattle, WA 98101" +228943,AAA Batteries (4-pack),1,2.99,07/04/19 21:14,"618 Forest St, Seattle, WA 98101" +228944,AA Batteries (4-pack),1,3.84,07/14/19 23:19,"932 Maple St, Los Angeles, CA 90001" +228945,Wired Headphones,1,11.99,07/09/19 21:05,"518 Hill St, Portland, OR 97035" +228946,Apple Airpods Headphones,1,150,07/08/19 17:39,"427 5th St, Austin, TX 73301" +228947,AA Batteries (4-pack),3,3.84,07/01/19 14:22,"566 Pine St, Seattle, WA 98101" +228948,USB-C Charging Cable,1,11.95,07/09/19 08:26,"308 Main St, Austin, TX 73301" +228949,USB-C Charging Cable,1,11.95,07/30/19 14:56,"651 Wilson St, Atlanta, GA 30301" +228950,Flatscreen TV,1,300,07/17/19 12:09,"145 Cherry St, New York City, NY 10001" +228951,Apple Airpods Headphones,1,150,07/25/19 09:58,"346 West St, Los Angeles, CA 90001" +228952,AA Batteries (4-pack),2,3.84,07/06/19 00:16,"897 5th St, Los Angeles, CA 90001" +228953,Bose SoundSport Headphones,1,99.99,07/03/19 19:57,"357 West St, Boston, MA 02215" +228954,Apple Airpods Headphones,1,150,07/24/19 10:07,"843 Walnut St, Seattle, WA 98101" +228955,Lightning Charging Cable,1,14.95,07/12/19 21:05,"261 North St, San Francisco, CA 94016" +228956,ThinkPad Laptop,1,999.99,07/04/19 14:30,"167 River St, Seattle, WA 98101" +228957,AA Batteries (4-pack),2,3.84,07/25/19 13:04,"182 Washington St, Seattle, WA 98101" +228958,Lightning Charging Cable,1,14.95,07/08/19 13:54,"724 Adams St, Dallas, TX 75001" +228959,AAA Batteries (4-pack),2,2.99,07/23/19 17:36,"309 9th St, Los Angeles, CA 90001" +228960,USB-C Charging Cable,2,11.95,07/20/19 21:39,"846 7th St, Boston, MA 02215" +228961,AAA Batteries (4-pack),1,2.99,07/19/19 21:44,"682 West St, Atlanta, GA 30301" +228962,Bose SoundSport Headphones,1,99.99,07/12/19 16:01,"52 13th St, Seattle, WA 98101" +228963,USB-C Charging Cable,1,11.95,07/05/19 12:09,"838 Jackson St, Los Angeles, CA 90001" +228964,ThinkPad Laptop,1,999.99,07/14/19 15:42,"696 11th St, Seattle, WA 98101" +228965,LG Washing Machine,1,600.0,07/04/19 11:17,"941 Main St, Los Angeles, CA 90001" +228966,Lightning Charging Cable,1,14.95,07/28/19 15:04,"844 Johnson St, New York City, NY 10001" +228967,AA Batteries (4-pack),1,3.84,07/16/19 13:57,"437 9th St, San Francisco, CA 94016" +228968,27in FHD Monitor,1,149.99,07/12/19 17:59,"521 Sunset St, Austin, TX 73301" +228968,Bose SoundSport Headphones,1,99.99,07/12/19 17:59,"521 Sunset St, Austin, TX 73301" +228969,AAA Batteries (4-pack),1,2.99,07/10/19 13:29,"727 Cedar St, Atlanta, GA 30301" +228970,Apple Airpods Headphones,1,150,07/05/19 16:01,"668 Johnson St, Los Angeles, CA 90001" +228971,AAA Batteries (4-pack),1,2.99,07/31/19 17:01,"44 4th St, Atlanta, GA 30301" +228972,27in 4K Gaming Monitor,1,389.99,07/20/19 09:13,"586 Forest St, Boston, MA 02215" +228973,USB-C Charging Cable,1,11.95,07/20/19 15:15,"966 9th St, San Francisco, CA 94016" +228973,Lightning Charging Cable,1,14.95,07/20/19 15:15,"966 9th St, San Francisco, CA 94016" +228974,iPhone,1,700,07/07/19 21:15,"17 Hickory St, Portland, OR 97035" +228975,Lightning Charging Cable,1,14.95,07/07/19 22:09,"750 Cherry St, Austin, TX 73301" +228976,Macbook Pro Laptop,1,1700,07/21/19 20:37,"321 11th St, Los Angeles, CA 90001" +228976,Wired Headphones,1,11.99,07/21/19 20:37,"321 11th St, Los Angeles, CA 90001" +228977,Wired Headphones,1,11.99,07/02/19 15:59,"421 4th St, Boston, MA 02215" +228978,AAA Batteries (4-pack),2,2.99,07/24/19 08:50,"116 Johnson St, San Francisco, CA 94016" +228979,Lightning Charging Cable,1,14.95,07/12/19 11:07,"742 Cedar St, Atlanta, GA 30301" +228980,Bose SoundSport Headphones,1,99.99,07/11/19 18:53,"730 River St, Seattle, WA 98101" +228981,Bose SoundSport Headphones,1,99.99,07/09/19 10:05,"653 Park St, Boston, MA 02215" +228982,Google Phone,1,600,07/01/19 16:32,"496 Hill St, Seattle, WA 98101" +228982,USB-C Charging Cable,1,11.95,07/01/19 16:32,"496 Hill St, Seattle, WA 98101" +228983,20in Monitor,1,109.99,07/26/19 08:55,"990 Washington St, Boston, MA 02215" +228984,AAA Batteries (4-pack),1,2.99,07/08/19 10:16,"15 Park St, Seattle, WA 98101" +228985,20in Monitor,1,109.99,07/29/19 18:07,"399 Meadow St, San Francisco, CA 94016" +228986,Wired Headphones,1,11.99,07/09/19 22:11,"763 Jefferson St, Boston, MA 02215" +228987,Flatscreen TV,1,300,07/12/19 04:50,"305 Main St, San Francisco, CA 94016" +228988,Lightning Charging Cable,1,14.95,07/17/19 20:43,"901 5th St, San Francisco, CA 94016" +228989,AAA Batteries (4-pack),2,2.99,07/16/19 22:18,"465 5th St, Los Angeles, CA 90001" +228990,Apple Airpods Headphones,1,150,08/01/19 00:04,"23 Lakeview St, Austin, TX 73301" +228991,USB-C Charging Cable,1,11.95,07/17/19 08:01,"249 Willow St, New York City, NY 10001" +228992,Lightning Charging Cable,1,14.95,07/21/19 14:17,"578 Cedar St, Atlanta, GA 30301" +228993,AA Batteries (4-pack),1,3.84,07/18/19 17:52,"663 7th St, New York City, NY 10001" +228994,Apple Airpods Headphones,1,150,07/06/19 20:50,"77 Lincoln St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +228995,AA Batteries (4-pack),1,3.84,07/26/19 08:31,"129 Lincoln St, Seattle, WA 98101" +228996,Apple Airpods Headphones,1,150,07/02/19 14:14,"193 Elm St, Los Angeles, CA 90001" +228997,USB-C Charging Cable,1,11.95,07/18/19 13:24,"702 4th St, Boston, MA 02215" +228998,Wired Headphones,1,11.99,07/13/19 18:44,"166 Center St, New York City, NY 10001" +228999,34in Ultrawide Monitor,1,379.99,07/27/19 22:03,"845 Maple St, Atlanta, GA 30301" +229000,Bose SoundSport Headphones,1,99.99,07/31/19 13:09,"668 Maple St, Los Angeles, CA 90001" +229001,AAA Batteries (4-pack),1,2.99,07/16/19 11:01,"532 14th St, San Francisco, CA 94016" +229002,Lightning Charging Cable,1,14.95,07/31/19 13:45,"941 10th St, Los Angeles, CA 90001" +229003,34in Ultrawide Monitor,1,379.99,07/15/19 12:40,"239 Hickory St, San Francisco, CA 94016" +229004,Vareebadd Phone,1,400,07/25/19 18:29,"909 Jefferson St, Atlanta, GA 30301" +229004,USB-C Charging Cable,1,11.95,07/25/19 18:29,"909 Jefferson St, Atlanta, GA 30301" +229005,AA Batteries (4-pack),1,3.84,07/19/19 13:45,"350 13th St, Boston, MA 02215" +229006,Bose SoundSport Headphones,1,99.99,07/20/19 22:14,"175 North St, San Francisco, CA 94016" +229007,Apple Airpods Headphones,1,150,07/28/19 09:54,"760 Center St, San Francisco, CA 94016" +229008,Wired Headphones,1,11.99,07/04/19 18:22,"492 5th St, Portland, OR 97035" +229009,34in Ultrawide Monitor,1,379.99,07/20/19 10:53,"341 Park St, Los Angeles, CA 90001" +229010,Bose SoundSport Headphones,1,99.99,07/06/19 17:20,"309 5th St, Atlanta, GA 30301" +229011,Lightning Charging Cable,1,14.95,07/10/19 21:37,"614 10th St, Los Angeles, CA 90001" +229012,ThinkPad Laptop,1,999.99,07/29/19 21:19,"874 Johnson St, Austin, TX 73301" +229013,Wired Headphones,1,11.99,07/26/19 20:24,"270 Lakeview St, Seattle, WA 98101" +229014,27in FHD Monitor,1,149.99,07/27/19 19:39,"512 South St, New York City, NY 10001" +229015,USB-C Charging Cable,1,11.95,07/26/19 12:00,"608 12th St, Atlanta, GA 30301" +229016,AAA Batteries (4-pack),1,2.99,07/06/19 08:17,"388 Willow St, Seattle, WA 98101" +229017,ThinkPad Laptop,1,999.99,07/07/19 20:20,"490 12th St, Dallas, TX 75001" +229018,USB-C Charging Cable,2,11.95,07/30/19 23:50,"625 Wilson St, New York City, NY 10001" +,,,,, +229019,AAA Batteries (4-pack),1,2.99,07/10/19 22:21,"481 Lincoln St, Seattle, WA 98101" +229020,Lightning Charging Cable,1,14.95,07/08/19 17:08,"918 Main St, Austin, TX 73301" +229021,iPhone,1,700,07/10/19 07:15,"414 Sunset St, New York City, NY 10001" +229022,Wired Headphones,1,11.99,07/22/19 16:17,"9 2nd St, Seattle, WA 98101" +229023,AAA Batteries (4-pack),2,2.99,07/02/19 12:33,"775 Elm St, San Francisco, CA 94016" +229024,Bose SoundSport Headphones,1,99.99,07/01/19 23:47,"761 Jefferson St, New York City, NY 10001" +229025,AA Batteries (4-pack),1,3.84,07/29/19 11:15,"811 12th St, Los Angeles, CA 90001" +229026,34in Ultrawide Monitor,1,379.99,07/11/19 03:09,"67 West St, Los Angeles, CA 90001" +229027,AA Batteries (4-pack),1,3.84,07/16/19 13:29,"682 Madison St, Boston, MA 02215" +229028,Lightning Charging Cable,1,14.95,07/16/19 21:59,"26 Dogwood St, Boston, MA 02215" +229029,iPhone,1,700,07/27/19 07:42,"81 Sunset St, Los Angeles, CA 90001" +229030,27in FHD Monitor,1,149.99,07/11/19 14:43,"249 Meadow St, Los Angeles, CA 90001" +229031,27in FHD Monitor,1,149.99,07/25/19 10:50,"302 Cherry St, Seattle, WA 98101" +229032,Macbook Pro Laptop,1,1700,07/07/19 22:07,"194 14th St, Atlanta, GA 30301" +229033,USB-C Charging Cable,1,11.95,07/27/19 18:10,"860 7th St, San Francisco, CA 94016" +229034,Bose SoundSport Headphones,1,99.99,07/29/19 17:24,"539 Pine St, San Francisco, CA 94016" +229035,27in FHD Monitor,1,149.99,07/17/19 19:40,"433 Cherry St, San Francisco, CA 94016" +229036,Bose SoundSport Headphones,1,99.99,07/02/19 17:46,"853 Park St, Los Angeles, CA 90001" +229037,Macbook Pro Laptop,1,1700,07/04/19 17:13,"952 8th St, Los Angeles, CA 90001" +229038,AA Batteries (4-pack),1,3.84,07/04/19 19:22,"652 Washington St, Los Angeles, CA 90001" +229039,AAA Batteries (4-pack),1,2.99,07/20/19 14:26,"887 Pine St, Boston, MA 02215" +229040,AAA Batteries (4-pack),1,2.99,07/10/19 13:06,"790 Lakeview St, New York City, NY 10001" +229041,Bose SoundSport Headphones,1,99.99,07/21/19 17:47,"965 2nd St, New York City, NY 10001" +229042,USB-C Charging Cable,2,11.95,07/15/19 15:42,"401 13th St, New York City, NY 10001" +229043,LG Dryer,1,600.0,07/14/19 14:50,"645 Church St, Portland, OR 97035" +229044,27in FHD Monitor,1,149.99,07/18/19 00:02,"895 10th St, San Francisco, CA 94016" +229045,Lightning Charging Cable,1,14.95,07/26/19 14:38,"424 5th St, Seattle, WA 98101" +229046,Wired Headphones,1,11.99,07/04/19 19:18,"807 Elm St, Atlanta, GA 30301" +229047,iPhone,1,700,07/09/19 22:30,"640 Jefferson St, Dallas, TX 75001" +229047,Wired Headphones,1,11.99,07/09/19 22:30,"640 Jefferson St, Dallas, TX 75001" +229048,Wired Headphones,1,11.99,07/28/19 15:31,"398 14th St, Austin, TX 73301" +229049,Lightning Charging Cable,1,14.95,07/18/19 11:04,"152 Pine St, San Francisco, CA 94016" +229050,Bose SoundSport Headphones,1,99.99,07/22/19 23:11,"990 Lake St, Los Angeles, CA 90001" +229051,AAA Batteries (4-pack),1,2.99,07/05/19 19:42,"173 Pine St, New York City, NY 10001" +229052,Google Phone,1,600,07/24/19 12:51,"200 14th St, San Francisco, CA 94016" +229052,Bose SoundSport Headphones,1,99.99,07/24/19 12:51,"200 14th St, San Francisco, CA 94016" +229053,34in Ultrawide Monitor,1,379.99,07/25/19 18:12,"715 10th St, San Francisco, CA 94016" +229054,Bose SoundSport Headphones,1,99.99,07/03/19 08:34,"124 West St, San Francisco, CA 94016" +229055,USB-C Charging Cable,2,11.95,07/28/19 22:49,"745 4th St, Los Angeles, CA 90001" +229056,Lightning Charging Cable,1,14.95,07/21/19 21:43,"197 Chestnut St, Los Angeles, CA 90001" +229057,Apple Airpods Headphones,1,150,07/25/19 00:05,"971 Lake St, Seattle, WA 98101" +229058,Wired Headphones,1,11.99,07/27/19 12:42,"564 2nd St, San Francisco, CA 94016" +229059,AA Batteries (4-pack),1,3.84,07/25/19 07:59,"851 Sunset St, Boston, MA 02215" +229060,Google Phone,1,600,07/10/19 23:39,"49 Church St, Dallas, TX 75001" +229060,USB-C Charging Cable,1,11.95,07/10/19 23:39,"49 Church St, Dallas, TX 75001" +229061,34in Ultrawide Monitor,1,379.99,07/03/19 20:11,"643 South St, San Francisco, CA 94016" +229062,Lightning Charging Cable,1,14.95,07/16/19 14:53,"226 4th St, San Francisco, CA 94016" +229063,USB-C Charging Cable,1,11.95,07/02/19 12:28,"818 River St, San Francisco, CA 94016" +229064,USB-C Charging Cable,1,11.95,07/30/19 16:35,"918 Madison St, Austin, TX 73301" +229065,AAA Batteries (4-pack),1,2.99,07/17/19 23:55,"198 Main St, Seattle, WA 98101" +229066,AAA Batteries (4-pack),1,2.99,07/11/19 05:35,"337 West St, Boston, MA 02215" +229067,AA Batteries (4-pack),1,3.84,07/24/19 18:07,"149 Cherry St, San Francisco, CA 94016" +229068,27in 4K Gaming Monitor,1,389.99,07/28/19 20:14,"153 Spruce St, San Francisco, CA 94016" +229069,USB-C Charging Cable,1,11.95,07/25/19 16:10,"130 Madison St, San Francisco, CA 94016" +229070,20in Monitor,1,109.99,07/25/19 07:08,"685 Madison St, Los Angeles, CA 90001" +229071,Wired Headphones,1,11.99,07/14/19 19:16,"941 Church St, Dallas, TX 75001" +229072,Wired Headphones,1,11.99,07/08/19 21:21,"739 8th St, Los Angeles, CA 90001" +229073,USB-C Charging Cable,1,11.95,07/19/19 20:56,"324 Johnson St, Austin, TX 73301" +229074,AAA Batteries (4-pack),1,2.99,07/29/19 18:17,"376 Lake St, Boston, MA 02215" +229075,34in Ultrawide Monitor,1,379.99,07/19/19 20:32,"505 Wilson St, San Francisco, CA 94016" +229076,Apple Airpods Headphones,1,150,07/18/19 17:45,"809 Meadow St, Dallas, TX 75001" +229077,Wired Headphones,1,11.99,07/19/19 19:52,"112 Hill St, Austin, TX 73301" +229078,27in FHD Monitor,1,149.99,07/22/19 16:59,"598 12th St, San Francisco, CA 94016" +229079,AAA Batteries (4-pack),1,2.99,07/31/19 10:37,"708 14th St, Atlanta, GA 30301" +229080,AA Batteries (4-pack),1,3.84,07/23/19 21:30,"419 Cherry St, Boston, MA 02215" +229081,AA Batteries (4-pack),1,3.84,07/07/19 13:25,"220 Adams St, Los Angeles, CA 90001" +229082,AA Batteries (4-pack),1,3.84,07/27/19 17:25,"581 Dogwood St, Atlanta, GA 30301" +229083,USB-C Charging Cable,1,11.95,07/14/19 13:02,"293 Elm St, San Francisco, CA 94016" +229084,Bose SoundSport Headphones,1,99.99,07/17/19 16:21,"94 Johnson St, Atlanta, GA 30301" +229085,Wired Headphones,2,11.99,07/07/19 09:44,"487 Park St, Los Angeles, CA 90001" +229086,27in FHD Monitor,1,149.99,07/07/19 15:09,"995 Walnut St, San Francisco, CA 94016" +229087,Wired Headphones,1,11.99,07/15/19 09:46,"848 Sunset St, Portland, OR 97035" +229088,Apple Airpods Headphones,1,150,07/14/19 11:36,"185 13th St, Boston, MA 02215" +229089,AAA Batteries (4-pack),1,2.99,07/10/19 11:45,"936 Adams St, Atlanta, GA 30301" +229090,Wired Headphones,1,11.99,07/29/19 19:34,"79 Jefferson St, San Francisco, CA 94016" +229091,Lightning Charging Cable,1,14.95,07/13/19 20:06,"19 13th St, Portland, OR 97035" +229092,Apple Airpods Headphones,1,150,07/08/19 12:20,"702 Washington St, New York City, NY 10001" +229093,iPhone,1,700,07/19/19 19:48,"573 Adams St, New York City, NY 10001" +229094,Apple Airpods Headphones,1,150,07/09/19 22:36,"953 Forest St, San Francisco, CA 94016" +229095,Lightning Charging Cable,1,14.95,07/27/19 23:32,"581 Cedar St, Portland, ME 04101" +229096,AAA Batteries (4-pack),3,2.99,07/26/19 10:20,"158 Hickory St, San Francisco, CA 94016" +229097,34in Ultrawide Monitor,1,379.99,07/03/19 14:24,"391 Elm St, San Francisco, CA 94016" +229098,20in Monitor,1,109.99,07/22/19 14:19,"16 4th St, Austin, TX 73301" +229099,Wired Headphones,1,11.99,07/25/19 20:54,"727 11th St, San Francisco, CA 94016" +229100,Lightning Charging Cable,1,14.95,07/07/19 20:56,"201 Center St, San Francisco, CA 94016" +229101,AA Batteries (4-pack),1,3.84,07/13/19 13:57,"635 Park St, San Francisco, CA 94016" +229102,Apple Airpods Headphones,1,150,07/08/19 11:42,"150 1st St, Los Angeles, CA 90001" +229103,Wired Headphones,1,11.99,07/17/19 18:58,"62 12th St, New York City, NY 10001" +229104,AA Batteries (4-pack),1,3.84,07/05/19 15:03,"110 Elm St, San Francisco, CA 94016" +229105,Macbook Pro Laptop,1,1700,07/20/19 12:30,"150 8th St, Dallas, TX 75001" +229106,Apple Airpods Headphones,1,150,07/20/19 16:10,"848 Jackson St, Portland, OR 97035" +229107,iPhone,1,700,07/05/19 15:13,"86 Dogwood St, Portland, OR 97035" +229107,Lightning Charging Cable,1,14.95,07/05/19 15:13,"86 Dogwood St, Portland, OR 97035" +229107,Wired Headphones,1,11.99,07/05/19 15:13,"86 Dogwood St, Portland, OR 97035" +229108,AA Batteries (4-pack),2,3.84,07/05/19 21:21,"733 Sunset St, Boston, MA 02215" +229109,Lightning Charging Cable,1,14.95,07/16/19 11:29,"146 9th St, Los Angeles, CA 90001" +229110,USB-C Charging Cable,1,11.95,07/24/19 18:41,"352 Elm St, New York City, NY 10001" +229111,27in FHD Monitor,1,149.99,07/12/19 20:34,"648 Cherry St, Seattle, WA 98101" +229112,AAA Batteries (4-pack),1,2.99,07/10/19 10:45,"627 7th St, Los Angeles, CA 90001" +229113,AAA Batteries (4-pack),5,2.99,07/19/19 11:07,"851 14th St, New York City, NY 10001" +229114,AAA Batteries (4-pack),1,2.99,07/30/19 18:05,"545 2nd St, Seattle, WA 98101" +229115,iPhone,1,700,07/23/19 10:03,"916 6th St, Los Angeles, CA 90001" +229115,Lightning Charging Cable,1,14.95,07/23/19 10:03,"916 6th St, Los Angeles, CA 90001" +229115,Apple Airpods Headphones,1,150,07/23/19 10:03,"916 6th St, Los Angeles, CA 90001" +229116,Bose SoundSport Headphones,1,99.99,07/09/19 09:03,"6 10th St, New York City, NY 10001" +229117,Apple Airpods Headphones,1,150,07/12/19 21:54,"491 Wilson St, Atlanta, GA 30301" +229118,Lightning Charging Cable,1,14.95,07/30/19 09:46,"279 Adams St, Atlanta, GA 30301" +229119,27in 4K Gaming Monitor,1,389.99,07/29/19 15:00,"560 Adams St, Los Angeles, CA 90001" +229120,Lightning Charging Cable,1,14.95,07/29/19 17:12,"67 North St, New York City, NY 10001" +229121,Wired Headphones,1,11.99,07/12/19 06:45,"539 Meadow St, New York City, NY 10001" +229122,USB-C Charging Cable,1,11.95,07/20/19 09:30,"179 Lake St, Los Angeles, CA 90001" +229123,27in FHD Monitor,1,149.99,07/26/19 23:23,"242 Highland St, Dallas, TX 75001" +229124,AA Batteries (4-pack),2,3.84,07/20/19 18:23,"461 Main St, Boston, MA 02215" +229125,Bose SoundSport Headphones,1,99.99,07/02/19 21:01,"549 Walnut St, Los Angeles, CA 90001" +229126,AA Batteries (4-pack),2,3.84,07/22/19 13:08,"158 Forest St, San Francisco, CA 94016" +229127,27in 4K Gaming Monitor,1,389.99,07/11/19 23:15,"394 Sunset St, Austin, TX 73301" +229128,AAA Batteries (4-pack),1,2.99,07/14/19 10:11,"442 Jefferson St, New York City, NY 10001" +229129,Wired Headphones,2,11.99,07/08/19 21:12,"280 Maple St, Seattle, WA 98101" +229130,ThinkPad Laptop,1,999.99,07/14/19 09:47,"502 11th St, Seattle, WA 98101" +229131,27in FHD Monitor,1,149.99,07/22/19 21:00,"42 Pine St, Portland, OR 97035" +229132,iPhone,1,700,07/05/19 11:40,"887 Ridge St, Seattle, WA 98101" +229132,Wired Headphones,2,11.99,07/05/19 11:40,"887 Ridge St, Seattle, WA 98101" +229133,AAA Batteries (4-pack),2,2.99,07/28/19 10:46,"146 Spruce St, Atlanta, GA 30301" +229134,USB-C Charging Cable,1,11.95,07/25/19 17:29,"300 4th St, New York City, NY 10001" +229135,ThinkPad Laptop,1,999.99,07/16/19 23:30,"905 6th St, Dallas, TX 75001" +229136,USB-C Charging Cable,1,11.95,07/22/19 20:41,"412 Jackson St, Austin, TX 73301" +229137,27in 4K Gaming Monitor,1,389.99,07/20/19 10:53,"290 Pine St, San Francisco, CA 94016" +229138,USB-C Charging Cable,1,11.95,07/23/19 20:11,"226 Lakeview St, Austin, TX 73301" +229139,AA Batteries (4-pack),2,3.84,07/18/19 19:53,"257 Center St, Los Angeles, CA 90001" +229140,ThinkPad Laptop,1,999.99,07/17/19 15:47,"649 Center St, Seattle, WA 98101" +229141,Bose SoundSport Headphones,1,99.99,07/02/19 21:33,"618 Center St, Austin, TX 73301" +229142,27in FHD Monitor,1,149.99,07/21/19 13:46,"213 Lake St, Los Angeles, CA 90001" +229143,USB-C Charging Cable,1,11.95,07/17/19 15:53,"35 10th St, San Francisco, CA 94016" +229144,AAA Batteries (4-pack),1,2.99,07/12/19 21:30,"818 West St, San Francisco, CA 94016" +229145,AA Batteries (4-pack),2,3.84,07/30/19 19:11,"384 Washington St, San Francisco, CA 94016" +229146,iPhone,1,700,07/01/19 13:19,"919 Spruce St, Los Angeles, CA 90001" +229147,AA Batteries (4-pack),1,3.84,07/11/19 21:53,"801 6th St, Los Angeles, CA 90001" +229148,USB-C Charging Cable,1,11.95,07/31/19 13:57,"530 12th St, Seattle, WA 98101" +229149,Apple Airpods Headphones,1,150,07/27/19 13:44,"364 Adams St, San Francisco, CA 94016" +229150,27in 4K Gaming Monitor,1,389.99,07/17/19 23:26,"409 Main St, Boston, MA 02215" +229151,Wired Headphones,1,11.99,07/18/19 21:43,"809 Cherry St, New York City, NY 10001" +229152,USB-C Charging Cable,1,11.95,07/08/19 18:31,"506 Wilson St, Los Angeles, CA 90001" +229153,AAA Batteries (4-pack),1,2.99,07/02/19 21:32,"226 Hickory St, San Francisco, CA 94016" +229154,AA Batteries (4-pack),1,3.84,07/05/19 13:58,"627 Hill St, San Francisco, CA 94016" +229155,Lightning Charging Cable,1,14.95,07/26/19 18:58,"537 Elm St, Dallas, TX 75001" +229156,USB-C Charging Cable,1,11.95,07/11/19 12:14,"290 Park St, San Francisco, CA 94016" +229157,20in Monitor,1,109.99,07/02/19 12:41,"741 Lake St, Dallas, TX 75001" +229158,Wired Headphones,1,11.99,07/28/19 17:31,"439 13th St, Seattle, WA 98101" +229159,AA Batteries (4-pack),1,3.84,07/22/19 21:57,"886 Lake St, Austin, TX 73301" +229160,27in 4K Gaming Monitor,1,389.99,07/04/19 12:22,"864 Sunset St, Los Angeles, CA 90001" +229161,27in FHD Monitor,1,149.99,07/09/19 19:24,"544 Cedar St, San Francisco, CA 94016" +229162,Flatscreen TV,1,300,07/19/19 11:15,"966 12th St, Los Angeles, CA 90001" +229163,Apple Airpods Headphones,1,150,07/16/19 11:35,"213 Jefferson St, Portland, ME 04101" +229164,Apple Airpods Headphones,1,150,07/23/19 11:13,"473 Cedar St, Los Angeles, CA 90001" +229165,Wired Headphones,1,11.99,07/26/19 05:22,"538 1st St, New York City, NY 10001" +229166,USB-C Charging Cable,1,11.95,07/21/19 13:16,"376 Hill St, San Francisco, CA 94016" +229167,Apple Airpods Headphones,1,150,07/17/19 19:42,"395 1st St, Boston, MA 02215" +229168,Bose SoundSport Headphones,1,99.99,07/22/19 16:14,"620 Lincoln St, Atlanta, GA 30301" +229169,AA Batteries (4-pack),1,3.84,07/02/19 15:33,"897 5th St, Atlanta, GA 30301" +229170,Wired Headphones,1,11.99,07/14/19 20:27,"48 11th St, Los Angeles, CA 90001" +229171,Apple Airpods Headphones,1,150,07/03/19 14:18,"800 13th St, Portland, OR 97035" +229172,AA Batteries (4-pack),1,3.84,07/29/19 02:01,"244 South St, San Francisco, CA 94016" +229173,AA Batteries (4-pack),1,3.84,07/03/19 00:48,"413 Washington St, Atlanta, GA 30301" +229174,Apple Airpods Headphones,1,150,07/29/19 18:39,"705 Center St, Boston, MA 02215" +229175,AAA Batteries (4-pack),1,2.99,07/28/19 17:11,"651 Adams St, New York City, NY 10001" +229176,USB-C Charging Cable,2,11.95,07/07/19 12:41,"669 River St, Boston, MA 02215" +229177,AAA Batteries (4-pack),1,2.99,07/22/19 16:59,"546 Hickory St, Austin, TX 73301" +229178,USB-C Charging Cable,1,11.95,07/21/19 14:19,"255 Johnson St, Los Angeles, CA 90001" +229179,20in Monitor,1,109.99,07/28/19 10:24,"919 Maple St, Austin, TX 73301" +229180,Bose SoundSport Headphones,1,99.99,07/06/19 00:03,"930 12th St, Seattle, WA 98101" +229181,LG Washing Machine,1,600.0,07/29/19 21:36,"11 Johnson St, Los Angeles, CA 90001" +229182,AAA Batteries (4-pack),2,2.99,07/18/19 21:41,"802 West St, Atlanta, GA 30301" +229183,Lightning Charging Cable,1,14.95,07/07/19 22:02,"978 Cedar St, Los Angeles, CA 90001" +229184,USB-C Charging Cable,1,11.95,07/05/19 09:04,"144 13th St, Seattle, WA 98101" +229185,iPhone,1,700,07/27/19 12:34,"758 Park St, Portland, ME 04101" +229185,Lightning Charging Cable,1,14.95,07/27/19 12:34,"758 Park St, Portland, ME 04101" +229186,Wired Headphones,1,11.99,07/14/19 20:26,"740 6th St, Seattle, WA 98101" +229187,Lightning Charging Cable,1,14.95,07/24/19 18:40,"738 Lake St, New York City, NY 10001" +229188,USB-C Charging Cable,1,11.95,07/25/19 19:11,"958 Spruce St, San Francisco, CA 94016" +229189,AAA Batteries (4-pack),1,2.99,07/07/19 14:03,"496 Dogwood St, San Francisco, CA 94016" +229190,Wired Headphones,1,11.99,07/08/19 13:37,"185 8th St, Boston, MA 02215" +229191,USB-C Charging Cable,1,11.95,07/27/19 14:29,"723 Ridge St, Boston, MA 02215" +229192,Wired Headphones,1,11.99,07/13/19 17:08,"331 Sunset St, San Francisco, CA 94016" +229193,34in Ultrawide Monitor,1,379.99,07/13/19 17:29,"168 9th St, San Francisco, CA 94016" +229193,USB-C Charging Cable,1,11.95,07/13/19 17:29,"168 9th St, San Francisco, CA 94016" +229194,27in FHD Monitor,1,149.99,07/15/19 12:33,"495 11th St, Los Angeles, CA 90001" +229195,Bose SoundSport Headphones,1,99.99,07/08/19 13:26,"572 2nd St, San Francisco, CA 94016" +229196,AAA Batteries (4-pack),1,2.99,07/06/19 00:24,"764 Park St, Boston, MA 02215" +229197,AAA Batteries (4-pack),1,2.99,07/14/19 20:14,"35 Cedar St, New York City, NY 10001" +229198,Vareebadd Phone,1,400,07/11/19 01:02,"77 Hickory St, San Francisco, CA 94016" +229198,Wired Headphones,1,11.99,07/11/19 01:02,"77 Hickory St, San Francisco, CA 94016" +229199,Lightning Charging Cable,1,14.95,07/07/19 18:29,"102 Main St, Los Angeles, CA 90001" +229200,Flatscreen TV,1,300,07/02/19 00:20,"831 Cherry St, Los Angeles, CA 90001" +229201,AAA Batteries (4-pack),3,2.99,07/31/19 23:18,"776 Cherry St, Portland, OR 97035" +229202,AA Batteries (4-pack),1,3.84,07/30/19 12:49,"747 Lake St, Boston, MA 02215" +229203,34in Ultrawide Monitor,1,379.99,07/22/19 13:41,"310 Adams St, Boston, MA 02215" +229204,AAA Batteries (4-pack),1,2.99,07/14/19 01:00,"836 10th St, New York City, NY 10001" +229205,27in FHD Monitor,1,149.99,07/25/19 18:00,"336 Ridge St, Los Angeles, CA 90001" +229206,Wired Headphones,1,11.99,07/08/19 18:55,"409 Cedar St, New York City, NY 10001" +229207,AA Batteries (4-pack),1,3.84,07/08/19 15:55,"552 Ridge St, Los Angeles, CA 90001" +229208,Apple Airpods Headphones,1,150,07/29/19 14:17,"411 Willow St, Atlanta, GA 30301" +229209,27in FHD Monitor,1,149.99,07/24/19 13:55,"99 River St, Boston, MA 02215" +229210,Vareebadd Phone,1,400,07/31/19 18:17,"302 Hickory St, San Francisco, CA 94016" +229211,Lightning Charging Cable,1,14.95,07/30/19 13:24,"734 Forest St, Los Angeles, CA 90001" +229212,Bose SoundSport Headphones,1,99.99,07/31/19 21:43,"327 Lincoln St, Seattle, WA 98101" +229213,27in FHD Monitor,1,149.99,07/13/19 15:03,"909 Pine St, Portland, OR 97035" +229214,Apple Airpods Headphones,1,150,07/08/19 22:26,"433 Hickory St, Boston, MA 02215" +229215,Wired Headphones,1,11.99,07/07/19 14:52,"534 2nd St, Los Angeles, CA 90001" +229216,USB-C Charging Cable,1,11.95,07/05/19 16:07,"954 Jefferson St, San Francisco, CA 94016" +229217,AAA Batteries (4-pack),1,2.99,07/06/19 10:07,"109 Hill St, Seattle, WA 98101" +229218,AA Batteries (4-pack),1,3.84,07/27/19 18:02,"367 Spruce St, San Francisco, CA 94016" +229219,LG Dryer,1,600.0,07/31/19 19:12,"39 Walnut St, Seattle, WA 98101" +229220,27in FHD Monitor,1,149.99,07/13/19 17:00,"558 Johnson St, Seattle, WA 98101" +229221,Bose SoundSport Headphones,1,99.99,07/10/19 12:10,"861 Maple St, Austin, TX 73301" +229222,Bose SoundSport Headphones,1,99.99,07/22/19 11:41,"86 Jefferson St, Boston, MA 02215" +229223,AAA Batteries (4-pack),1,2.99,07/20/19 16:09,"300 12th St, Boston, MA 02215" +229224,Google Phone,1,600,07/24/19 16:53,"13 6th St, Boston, MA 02215" +229224,Wired Headphones,1,11.99,07/24/19 16:53,"13 6th St, Boston, MA 02215" +229225,Flatscreen TV,1,300,07/08/19 12:35,"286 Washington St, Dallas, TX 75001" +229226,AA Batteries (4-pack),1,3.84,07/25/19 16:38,"692 Washington St, San Francisco, CA 94016" +229227,Bose SoundSport Headphones,1,99.99,07/27/19 00:58,"277 Lincoln St, Boston, MA 02215" +229228,USB-C Charging Cable,1,11.95,07/23/19 22:37,"204 Hill St, New York City, NY 10001" +229229,Bose SoundSport Headphones,1,99.99,07/05/19 06:05,"460 8th St, San Francisco, CA 94016" +229230,Bose SoundSport Headphones,1,99.99,07/14/19 11:55,"475 Elm St, San Francisco, CA 94016" +229231,AAA Batteries (4-pack),1,2.99,07/11/19 20:31,"229 Washington St, Seattle, WA 98101" +229232,Bose SoundSport Headphones,1,99.99,07/24/19 14:25,"932 9th St, Dallas, TX 75001" +229232,AAA Batteries (4-pack),1,2.99,07/24/19 14:25,"932 9th St, Dallas, TX 75001" +229233,Apple Airpods Headphones,1,150,07/27/19 22:14,"174 14th St, Los Angeles, CA 90001" +229234,Bose SoundSport Headphones,1,99.99,07/10/19 21:58,"539 2nd St, San Francisco, CA 94016" +229235,27in FHD Monitor,1,149.99,07/31/19 16:05,"879 8th St, Portland, OR 97035" +229236,Apple Airpods Headphones,1,150,07/28/19 15:54,"762 Church St, Seattle, WA 98101" +229237,Lightning Charging Cable,1,14.95,07/16/19 11:48,"127 Spruce St, Atlanta, GA 30301" +229238,27in FHD Monitor,1,149.99,07/08/19 20:04,"423 7th St, Los Angeles, CA 90001" +229238,Wired Headphones,1,11.99,07/08/19 20:04,"423 7th St, Los Angeles, CA 90001" +229239,Lightning Charging Cable,1,14.95,07/31/19 10:14,"589 2nd St, Atlanta, GA 30301" +229240,Lightning Charging Cable,1,14.95,07/09/19 18:17,"557 Sunset St, Boston, MA 02215" +229241,Lightning Charging Cable,1,14.95,07/06/19 09:24,"123 South St, Boston, MA 02215" +229242,34in Ultrawide Monitor,1,379.99,07/05/19 17:25,"983 Meadow St, Seattle, WA 98101" +229243,34in Ultrawide Monitor,1,379.99,07/20/19 09:32,"543 6th St, New York City, NY 10001" +229243,Bose SoundSport Headphones,1,99.99,07/20/19 09:32,"543 6th St, New York City, NY 10001" +229244,Lightning Charging Cable,2,14.95,07/29/19 14:43,"711 Center St, Boston, MA 02215" +229245,AA Batteries (4-pack),1,3.84,07/08/19 20:27,"8 9th St, New York City, NY 10001" +229246,Wired Headphones,1,11.99,07/01/19 14:29,"353 Walnut St, Austin, TX 73301" +229247,34in Ultrawide Monitor,1,379.99,07/18/19 12:58,"44 Johnson St, Los Angeles, CA 90001" +229248,Wired Headphones,1,11.99,07/26/19 18:15,"460 Chestnut St, Atlanta, GA 30301" +229249,27in FHD Monitor,1,149.99,07/24/19 13:22,"842 Walnut St, Austin, TX 73301" +229250,LG Washing Machine,1,600.0,07/28/19 23:22,"595 Highland St, New York City, NY 10001" +229251,AAA Batteries (4-pack),2,2.99,07/19/19 10:33,"924 Church St, San Francisco, CA 94016" +229252,Flatscreen TV,1,300,07/29/19 18:42,"614 Maple St, Los Angeles, CA 90001" +229253,Google Phone,1,600,07/22/19 18:26,"668 Cherry St, Atlanta, GA 30301" +229254,iPhone,1,700,07/02/19 13:26,"397 Main St, Seattle, WA 98101" +229254,Wired Headphones,1,11.99,07/02/19 13:26,"397 Main St, Seattle, WA 98101" +229255,AAA Batteries (4-pack),3,2.99,07/27/19 18:55,"427 North St, Austin, TX 73301" +229256,iPhone,1,700,07/11/19 21:23,"735 Adams St, Dallas, TX 75001" +229256,Apple Airpods Headphones,1,150,07/11/19 21:23,"735 Adams St, Dallas, TX 75001" +229257,Lightning Charging Cable,1,14.95,07/29/19 20:17,"210 6th St, Seattle, WA 98101" +229258,Flatscreen TV,1,300,07/08/19 17:48,"102 Walnut St, New York City, NY 10001" +229259,Google Phone,1,600,07/20/19 10:51,"311 Jackson St, Los Angeles, CA 90001" +229260,20in Monitor,1,109.99,07/20/19 22:26,"372 5th St, Los Angeles, CA 90001" +229261,Flatscreen TV,1,300,07/17/19 17:51,"883 North St, Dallas, TX 75001" +229262,AA Batteries (4-pack),1,3.84,07/17/19 11:20,"890 Willow St, Atlanta, GA 30301" +229263,AA Batteries (4-pack),1,3.84,07/13/19 05:47,"939 South St, Dallas, TX 75001" +229264,AAA Batteries (4-pack),1,2.99,07/31/19 10:23,"28 2nd St, Austin, TX 73301" +229265,Macbook Pro Laptop,1,1700,07/21/19 17:19,"289 Pine St, Los Angeles, CA 90001" +229266,iPhone,1,700,07/19/19 16:06,"5 Maple St, Los Angeles, CA 90001" +229267,Wired Headphones,1,11.99,07/10/19 22:30,"503 Center St, New York City, NY 10001" +229268,Wired Headphones,1,11.99,07/17/19 08:23,"471 Lakeview St, Dallas, TX 75001" +229269,Bose SoundSport Headphones,1,99.99,07/08/19 11:57,"156 Meadow St, Boston, MA 02215" +229270,AA Batteries (4-pack),1,3.84,07/25/19 14:55,"683 Lakeview St, Seattle, WA 98101" +229271,Apple Airpods Headphones,1,150,07/08/19 16:57,"853 7th St, Atlanta, GA 30301" +229272,Lightning Charging Cable,2,14.95,07/31/19 17:30,"262 4th St, New York City, NY 10001" +229273,AAA Batteries (4-pack),1,2.99,07/19/19 11:49,"619 7th St, San Francisco, CA 94016" +229274,27in 4K Gaming Monitor,1,389.99,07/24/19 12:30,"778 Chestnut St, Boston, MA 02215" +229275,27in FHD Monitor,1,149.99,07/12/19 23:54,"17 Lincoln St, San Francisco, CA 94016" +229276,20in Monitor,1,109.99,07/09/19 00:35,"867 Center St, Austin, TX 73301" +229277,27in 4K Gaming Monitor,1,389.99,07/10/19 11:09,"889 Lakeview St, Dallas, TX 75001" +229278,AA Batteries (4-pack),1,3.84,07/11/19 16:47,"695 North St, Seattle, WA 98101" +229279,AA Batteries (4-pack),1,3.84,07/17/19 18:46,"629 Main St, Atlanta, GA 30301" +229280,Apple Airpods Headphones,1,150,07/01/19 14:34,"83 Jefferson St, Austin, TX 73301" +229281,USB-C Charging Cable,1,11.95,07/29/19 14:42,"939 River St, Dallas, TX 75001" +229282,27in FHD Monitor,1,149.99,07/03/19 15:18,"128 River St, Seattle, WA 98101" +229283,20in Monitor,1,109.99,07/14/19 19:45,"514 Willow St, Portland, OR 97035" +229284,Macbook Pro Laptop,1,1700,07/31/19 11:30,"794 North St, New York City, NY 10001" +229285,USB-C Charging Cable,1,11.95,07/01/19 14:00,"797 West St, Seattle, WA 98101" +229286,Wired Headphones,3,11.99,07/24/19 11:08,"945 Lakeview St, San Francisco, CA 94016" +229287,USB-C Charging Cable,1,11.95,07/11/19 23:35,"863 Center St, San Francisco, CA 94016" +229288,20in Monitor,1,109.99,07/11/19 09:00,"522 Willow St, Los Angeles, CA 90001" +229289,USB-C Charging Cable,1,11.95,07/03/19 22:51,"954 Madison St, San Francisco, CA 94016" +229290,Flatscreen TV,1,300,07/02/19 18:15,"92 Lake St, New York City, NY 10001" +229291,Apple Airpods Headphones,1,150,07/09/19 17:55,"657 12th St, New York City, NY 10001" +229292,20in Monitor,1,109.99,07/01/19 12:24,"831 Madison St, San Francisco, CA 94016" +229293,USB-C Charging Cable,1,11.95,07/22/19 19:17,"209 Lincoln St, Dallas, TX 75001" +229294,Bose SoundSport Headphones,1,99.99,07/10/19 08:48,"991 Hill St, San Francisco, CA 94016" +229295,AAA Batteries (4-pack),1,2.99,07/11/19 15:03,"407 Washington St, New York City, NY 10001" +229296,Bose SoundSport Headphones,1,99.99,07/04/19 20:12,"877 Chestnut St, New York City, NY 10001" +229297,USB-C Charging Cable,1,11.95,07/24/19 22:25,"85 12th St, Los Angeles, CA 90001" +229298,iPhone,1,700,07/07/19 18:33,"50 Madison St, Atlanta, GA 30301" +229299,Flatscreen TV,1,300,07/22/19 07:48,"818 Walnut St, San Francisco, CA 94016" +229300,USB-C Charging Cable,1,11.95,07/02/19 13:11,"123 Jefferson St, Boston, MA 02215" +229301,Wired Headphones,1,11.99,07/24/19 08:48,"83 13th St, Los Angeles, CA 90001" +229302,AA Batteries (4-pack),2,3.84,07/23/19 18:03,"500 Highland St, New York City, NY 10001" +229303,iPhone,1,700,07/19/19 11:24,"732 Walnut St, Seattle, WA 98101" +229303,Apple Airpods Headphones,1,150,07/19/19 11:24,"732 Walnut St, Seattle, WA 98101" +229304,Flatscreen TV,1,300,07/14/19 09:58,"385 Church St, Seattle, WA 98101" +229305,Flatscreen TV,1,300,07/28/19 14:38,"194 Washington St, Boston, MA 02215" +229306,Vareebadd Phone,1,400,07/03/19 19:07,"14 Dogwood St, Boston, MA 02215" +229307,Bose SoundSport Headphones,1,99.99,07/17/19 18:20,"740 1st St, Boston, MA 02215" +229308,USB-C Charging Cable,1,11.95,07/11/19 19:30,"416 Johnson St, New York City, NY 10001" +229309,Bose SoundSport Headphones,1,99.99,07/10/19 17:47,"267 13th St, Seattle, WA 98101" +229310,Bose SoundSport Headphones,1,99.99,07/24/19 15:22,"234 5th St, Los Angeles, CA 90001" +229311,27in FHD Monitor,1,149.99,07/24/19 11:28,"730 Chestnut St, Boston, MA 02215" +229311,Bose SoundSport Headphones,1,99.99,07/24/19 11:28,"730 Chestnut St, Boston, MA 02215" +229312,ThinkPad Laptop,1,999.99,07/24/19 15:02,"166 1st St, Austin, TX 73301" +229313,LG Washing Machine,1,600.0,07/20/19 13:47,"215 Madison St, San Francisco, CA 94016" +229314,Apple Airpods Headphones,1,150,07/04/19 21:27,"176 11th St, San Francisco, CA 94016" +229315,AAA Batteries (4-pack),2,2.99,07/26/19 12:35,"53 Walnut St, Atlanta, GA 30301" +229316,Apple Airpods Headphones,1,150,07/18/19 11:39,"41 9th St, Boston, MA 02215" +229317,AA Batteries (4-pack),1,3.84,07/30/19 11:16,"910 10th St, Boston, MA 02215" +229318,27in FHD Monitor,1,149.99,07/17/19 17:36,"943 8th St, New York City, NY 10001" +229319,iPhone,1,700,07/03/19 10:03,"744 Walnut St, Austin, TX 73301" +229320,Flatscreen TV,1,300,07/30/19 14:15,"735 Walnut St, San Francisco, CA 94016" +229321,Wired Headphones,1,11.99,07/26/19 20:59,"414 Dogwood St, San Francisco, CA 94016" +229322,Bose SoundSport Headphones,1,99.99,07/26/19 21:44,"715 Cedar St, Atlanta, GA 30301" +229323,27in 4K Gaming Monitor,1,389.99,07/30/19 21:57,"455 Lake St, Boston, MA 02215" +229324,AAA Batteries (4-pack),1,2.99,07/22/19 22:07,"398 Maple St, Seattle, WA 98101" +229325,LG Dryer,1,600.0,07/01/19 08:31,"23 10th St, Dallas, TX 75001" +229326,Wired Headphones,1,11.99,07/07/19 12:48,"357 North St, San Francisco, CA 94016" +229327,27in FHD Monitor,1,149.99,07/12/19 09:34,"49 Johnson St, Austin, TX 73301" +229328,AAA Batteries (4-pack),1,2.99,07/28/19 13:12,"347 7th St, Boston, MA 02215" +229329,USB-C Charging Cable,1,11.95,07/24/19 11:13,"566 Adams St, Seattle, WA 98101" +229330,Lightning Charging Cable,1,14.95,07/17/19 21:50,"836 Dogwood St, Los Angeles, CA 90001" +229331,Lightning Charging Cable,1,14.95,07/02/19 20:34,"32 Hill St, New York City, NY 10001" +229332,AAA Batteries (4-pack),1,2.99,07/20/19 07:33,"587 South St, San Francisco, CA 94016" +229333,USB-C Charging Cable,2,11.95,07/13/19 21:23,"258 6th St, Atlanta, GA 30301" +229334,Flatscreen TV,1,300,07/15/19 12:07,"429 5th St, San Francisco, CA 94016" +229334,Lightning Charging Cable,1,14.95,07/15/19 12:07,"429 5th St, San Francisco, CA 94016" +229335,Wired Headphones,1,11.99,07/14/19 13:50,"685 Willow St, San Francisco, CA 94016" +229336,AA Batteries (4-pack),1,3.84,07/15/19 12:44,"993 Ridge St, San Francisco, CA 94016" +229337,20in Monitor,1,109.99,07/03/19 10:37,"599 7th St, San Francisco, CA 94016" +229338,Lightning Charging Cable,1,14.95,07/06/19 12:58,"353 Cherry St, San Francisco, CA 94016" +229339,Google Phone,1,600,07/18/19 07:45,"313 Madison St, New York City, NY 10001" +229339,USB-C Charging Cable,1,11.95,07/18/19 07:45,"313 Madison St, New York City, NY 10001" +229340,34in Ultrawide Monitor,1,379.99,07/12/19 14:10,"461 Cherry St, New York City, NY 10001" +229341,27in FHD Monitor,1,149.99,07/12/19 20:55,"900 6th St, San Francisco, CA 94016" +229342,AA Batteries (4-pack),2,3.84,07/02/19 11:01,"226 5th St, Boston, MA 02215" +229343,27in 4K Gaming Monitor,1,389.99,07/04/19 22:57,"179 11th St, Dallas, TX 75001" +229344,AA Batteries (4-pack),1,3.84,08/01/19 00:28,"759 Forest St, Los Angeles, CA 90001" +229345,Wired Headphones,2,11.99,07/18/19 12:28,"264 1st St, Seattle, WA 98101" +229346,USB-C Charging Cable,2,11.95,07/17/19 21:49,"724 Forest St, Dallas, TX 75001" +229347,Bose SoundSport Headphones,1,99.99,07/17/19 19:55,"206 12th St, Boston, MA 02215" +229348,USB-C Charging Cable,1,11.95,07/25/19 19:43,"377 Hickory St, New York City, NY 10001" +229349,ThinkPad Laptop,1,999.99,07/14/19 15:23,"255 4th St, Austin, TX 73301" +229350,Lightning Charging Cable,1,14.95,07/03/19 12:00,"941 Elm St, San Francisco, CA 94016" +229351,Wired Headphones,1,11.99,07/10/19 17:45,"230 Meadow St, San Francisco, CA 94016" +229352,Macbook Pro Laptop,1,1700,07/03/19 22:06,"203 Center St, Los Angeles, CA 90001" +229353,USB-C Charging Cable,2,11.95,07/12/19 20:56,"535 Elm St, Boston, MA 02215" +229354,iPhone,1,700,07/13/19 13:44,"222 Pine St, Dallas, TX 75001" +229355,Apple Airpods Headphones,1,150,07/11/19 18:27,"205 6th St, New York City, NY 10001" +229355,AA Batteries (4-pack),3,3.84,07/11/19 18:27,"205 6th St, New York City, NY 10001" +229356,USB-C Charging Cable,1,11.95,07/26/19 09:11,"871 Lake St, Los Angeles, CA 90001" +229357,AAA Batteries (4-pack),3,2.99,07/27/19 10:19,"284 Wilson St, Atlanta, GA 30301" +229358,Apple Airpods Headphones,1,150,07/03/19 11:05,"494 Walnut St, Los Angeles, CA 90001" +229359,20in Monitor,1,109.99,07/02/19 21:13,"729 Hickory St, New York City, NY 10001" +229360,Bose SoundSport Headphones,1,99.99,07/03/19 20:22,"959 13th St, Boston, MA 02215" +229361,Google Phone,1,600,07/14/19 09:35,"113 Washington St, San Francisco, CA 94016" +229362,Google Phone,1,600,07/03/19 09:09,"306 Hill St, New York City, NY 10001" +229363,Bose SoundSport Headphones,1,99.99,07/25/19 10:59,"625 10th St, Austin, TX 73301" +229364,Flatscreen TV,1,300,07/23/19 11:40,"850 Cherry St, New York City, NY 10001" +229365,AA Batteries (4-pack),1,3.84,07/03/19 18:21,"941 Madison St, New York City, NY 10001" +229366,Lightning Charging Cable,1,14.95,07/11/19 18:47,"326 Main St, Dallas, TX 75001" +229367,iPhone,1,700,07/30/19 20:29,"500 Willow St, Dallas, TX 75001" +229367,Apple Airpods Headphones,1,150,07/30/19 20:29,"500 Willow St, Dallas, TX 75001" +229368,AAA Batteries (4-pack),1,2.99,07/12/19 23:01,"962 5th St, New York City, NY 10001" +229369,27in FHD Monitor,1,149.99,07/17/19 21:30,"875 Johnson St, New York City, NY 10001" +229370,USB-C Charging Cable,1,11.95,07/05/19 11:38,"984 Madison St, New York City, NY 10001" +229371,34in Ultrawide Monitor,1,379.99,07/24/19 06:39,"65 Washington St, Seattle, WA 98101" +229372,USB-C Charging Cable,1,11.95,07/30/19 20:55,"717 Adams St, Portland, OR 97035" +229373,AA Batteries (4-pack),1,3.84,07/25/19 01:15,"420 Ridge St, New York City, NY 10001" +229374,34in Ultrawide Monitor,1,379.99,07/23/19 20:28,"525 Lincoln St, Austin, TX 73301" +229375,USB-C Charging Cable,1,11.95,07/07/19 00:25,"992 Ridge St, Boston, MA 02215" +229376,Macbook Pro Laptop,1,1700,07/06/19 18:36,"80 West St, Atlanta, GA 30301" +229377,USB-C Charging Cable,1,11.95,07/29/19 21:53,"527 8th St, Austin, TX 73301" +229378,Lightning Charging Cable,1,14.95,07/19/19 15:33,"5 Cedar St, Seattle, WA 98101" +229379,Apple Airpods Headphones,1,150,07/16/19 12:21,"319 14th St, Los Angeles, CA 90001" +229380,Bose SoundSport Headphones,1,99.99,07/11/19 04:45,"125 Lake St, Los Angeles, CA 90001" +229381,Apple Airpods Headphones,1,150,07/11/19 12:25,"932 5th St, Dallas, TX 75001" +229382,Apple Airpods Headphones,1,150,07/29/19 11:19,"830 Center St, Boston, MA 02215" +229383,20in Monitor,1,109.99,07/21/19 18:33,"236 Madison St, San Francisco, CA 94016" +229384,Bose SoundSport Headphones,1,99.99,07/03/19 21:59,"430 West St, San Francisco, CA 94016" +229385,AAA Batteries (4-pack),2,2.99,07/15/19 20:13,"151 Madison St, Atlanta, GA 30301" +229386,27in FHD Monitor,2,149.99,07/24/19 10:09,"225 Hill St, Los Angeles, CA 90001" +229386,Lightning Charging Cable,1,14.95,07/24/19 10:09,"225 Hill St, Los Angeles, CA 90001" +229387,Apple Airpods Headphones,1,150,07/06/19 20:35,"939 South St, San Francisco, CA 94016" +229388,AA Batteries (4-pack),2,3.84,07/25/19 08:45,"750 Main St, Boston, MA 02215" +229389,LG Washing Machine,1,600.0,07/07/19 23:00,"712 Hill St, San Francisco, CA 94016" +229390,USB-C Charging Cable,1,11.95,07/11/19 06:48,"548 Walnut St, San Francisco, CA 94016" +229391,AA Batteries (4-pack),1,3.84,07/14/19 19:33,"726 10th St, Dallas, TX 75001" +229392,Lightning Charging Cable,2,14.95,07/11/19 18:07,"982 Lakeview St, New York City, NY 10001" +229393,Wired Headphones,1,11.99,07/17/19 11:08,"868 Lake St, Atlanta, GA 30301" +229394,AA Batteries (4-pack),2,3.84,07/25/19 22:40,"457 Pine St, Seattle, WA 98101" +229395,Bose SoundSport Headphones,1,99.99,07/19/19 20:00,"24 South St, Atlanta, GA 30301" +229396,AAA Batteries (4-pack),2,2.99,07/25/19 10:12,"383 Lincoln St, Atlanta, GA 30301" +229397,Bose SoundSport Headphones,1,99.99,07/17/19 16:33,"675 Chestnut St, Portland, OR 97035" +229398,AA Batteries (4-pack),1,3.84,07/29/19 09:46,"210 14th St, New York City, NY 10001" +229399,Macbook Pro Laptop,1,1700,07/10/19 20:07,"185 Lakeview St, Atlanta, GA 30301" +229400,Apple Airpods Headphones,1,150,07/12/19 23:46,"957 5th St, Portland, OR 97035" +229401,Wired Headphones,1,11.99,07/08/19 21:38,"517 Spruce St, Austin, TX 73301" +229402,AA Batteries (4-pack),1,3.84,07/28/19 20:55,"107 Ridge St, San Francisco, CA 94016" +229403,Lightning Charging Cable,1,14.95,07/30/19 13:38,"122 2nd St, Dallas, TX 75001" +229404,Lightning Charging Cable,1,14.95,07/08/19 18:11,"619 7th St, Austin, TX 73301" +229405,Apple Airpods Headphones,1,150,07/15/19 08:01,"452 2nd St, Atlanta, GA 30301" +229406,34in Ultrawide Monitor,1,379.99,07/23/19 14:16,"500 Cherry St, Dallas, TX 75001" +229407,USB-C Charging Cable,1,11.95,07/10/19 01:57,"705 Meadow St, Los Angeles, CA 90001" +229408,Google Phone,1,600,07/12/19 15:07,"800 Dogwood St, Boston, MA 02215" +229409,USB-C Charging Cable,1,11.95,07/09/19 09:21,"111 Madison St, New York City, NY 10001" +229410,Bose SoundSport Headphones,1,99.99,07/07/19 20:16,"434 Highland St, Seattle, WA 98101" +229411,27in FHD Monitor,1,149.99,07/24/19 16:58,"770 Pine St, New York City, NY 10001" +229412,Bose SoundSport Headphones,1,99.99,07/11/19 13:07,"901 Maple St, Dallas, TX 75001" +229413,Bose SoundSport Headphones,1,99.99,07/22/19 23:08,"464 Spruce St, Dallas, TX 75001" +229414,ThinkPad Laptop,1,999.99,07/03/19 12:25,"144 South St, New York City, NY 10001" +229415,AAA Batteries (4-pack),2,2.99,07/31/19 09:20,"127 Forest St, Boston, MA 02215" +229416,AA Batteries (4-pack),1,3.84,07/29/19 10:58,"241 Meadow St, Boston, MA 02215" +229417,AA Batteries (4-pack),2,3.84,07/09/19 18:15,"784 7th St, Seattle, WA 98101" +229418,Bose SoundSport Headphones,1,99.99,07/03/19 07:20,"350 Cedar St, Portland, OR 97035" +229419,AAA Batteries (4-pack),1,2.99,07/23/19 08:54,"278 Ridge St, Atlanta, GA 30301" +229420,Wired Headphones,1,11.99,07/09/19 13:49,"813 River St, Dallas, TX 75001" +229421,Lightning Charging Cable,1,14.95,07/09/19 19:48,"712 River St, Boston, MA 02215" +229422,USB-C Charging Cable,1,11.95,07/08/19 20:20,"62 Sunset St, New York City, NY 10001" +229423,USB-C Charging Cable,1,11.95,07/07/19 16:10,"197 10th St, Dallas, TX 75001" +229424,USB-C Charging Cable,1,11.95,07/25/19 15:46,"179 Lincoln St, Los Angeles, CA 90001" +229425,Apple Airpods Headphones,1,150,07/01/19 20:52,"895 Lake St, New York City, NY 10001" +229426,ThinkPad Laptop,1,999.99,07/31/19 06:09,"874 Madison St, Boston, MA 02215" +229427,Bose SoundSport Headphones,1,99.99,07/05/19 10:24,"100 Dogwood St, San Francisco, CA 94016" +229428,AAA Batteries (4-pack),1,2.99,07/07/19 16:36,"637 1st St, New York City, NY 10001" +229429,Bose SoundSport Headphones,1,99.99,07/20/19 16:02,"569 Meadow St, Austin, TX 73301" +229430,27in 4K Gaming Monitor,1,389.99,07/13/19 09:51,"990 Maple St, San Francisco, CA 94016" +229431,Wired Headphones,1,11.99,07/21/19 12:06,"123 12th St, Austin, TX 73301" +229432,AA Batteries (4-pack),2,3.84,07/29/19 17:28,"360 Cherry St, Boston, MA 02215" +229433,34in Ultrawide Monitor,1,379.99,07/06/19 20:44,"61 Jefferson St, Atlanta, GA 30301" +229434,USB-C Charging Cable,1,11.95,07/13/19 20:16,"39 River St, Boston, MA 02215" +229435,USB-C Charging Cable,1,11.95,07/14/19 11:28,"997 Dogwood St, Dallas, TX 75001" +229436,USB-C Charging Cable,1,11.95,07/08/19 10:46,"476 River St, San Francisco, CA 94016" +229437,Apple Airpods Headphones,1,150,07/22/19 10:07,"411 5th St, San Francisco, CA 94016" +229438,AA Batteries (4-pack),2,3.84,07/15/19 16:25,"52 13th St, San Francisco, CA 94016" +229439,27in 4K Gaming Monitor,1,389.99,07/20/19 18:33,"409 1st St, Boston, MA 02215" +229440,Wired Headphones,1,11.99,07/29/19 17:41,"494 Hill St, Boston, MA 02215" +229441,iPhone,1,700,07/10/19 08:06,"692 Pine St, Seattle, WA 98101" +229442,Apple Airpods Headphones,1,150,07/02/19 02:18,"311 Adams St, Los Angeles, CA 90001" +229443,Lightning Charging Cable,1,14.95,07/20/19 06:16,"998 6th St, Austin, TX 73301" +229444,Wired Headphones,1,11.99,07/30/19 00:03,"221 Spruce St, San Francisco, CA 94016" +229445,AAA Batteries (4-pack),2,2.99,07/20/19 13:57,"322 14th St, New York City, NY 10001" +229446,AA Batteries (4-pack),1,3.84,07/31/19 16:31,"703 Hill St, Boston, MA 02215" +229447,USB-C Charging Cable,2,11.95,07/18/19 16:06,"906 8th St, Atlanta, GA 30301" +229448,AAA Batteries (4-pack),1,2.99,07/13/19 23:40,"81 Lake St, Austin, TX 73301" +229449,Lightning Charging Cable,1,14.95,07/26/19 10:28,"892 5th St, Dallas, TX 75001" +229450,AAA Batteries (4-pack),2,2.99,07/08/19 09:55,"281 South St, New York City, NY 10001" +229451,AA Batteries (4-pack),1,3.84,07/10/19 11:56,"141 Chestnut St, Boston, MA 02215" +229452,Apple Airpods Headphones,1,150,07/28/19 10:45,"903 Johnson St, Boston, MA 02215" +229453,Wired Headphones,1,11.99,07/27/19 17:51,"552 7th St, New York City, NY 10001" +229454,USB-C Charging Cable,1,11.95,07/26/19 17:16,"506 Spruce St, Boston, MA 02215" +229455,34in Ultrawide Monitor,1,379.99,07/27/19 17:25,"473 Cedar St, Portland, OR 97035" +229456,USB-C Charging Cable,1,11.95,07/04/19 10:29,"299 Maple St, San Francisco, CA 94016" +229457,AAA Batteries (4-pack),1,2.99,07/12/19 21:02,"528 Main St, Dallas, TX 75001" +229458,27in FHD Monitor,1,149.99,07/28/19 06:48,"550 1st St, Portland, OR 97035" +229459,27in FHD Monitor,1,149.99,07/08/19 19:30,"422 Spruce St, Los Angeles, CA 90001" +229460,AAA Batteries (4-pack),1,2.99,07/26/19 19:11,"821 Spruce St, Los Angeles, CA 90001" +229461,AA Batteries (4-pack),1,3.84,07/18/19 08:52,"760 Washington St, Boston, MA 02215" +229462,27in 4K Gaming Monitor,1,389.99,07/31/19 18:07,"903 Forest St, San Francisco, CA 94016" +229463,27in 4K Gaming Monitor,1,389.99,07/21/19 12:43,"694 Madison St, Los Angeles, CA 90001" +229464,34in Ultrawide Monitor,1,379.99,07/12/19 22:05,"787 Chestnut St, Los Angeles, CA 90001" +229465,27in 4K Gaming Monitor,1,389.99,07/24/19 08:48,"274 Washington St, Atlanta, GA 30301" +229466,Lightning Charging Cable,1,14.95,07/28/19 13:55,"28 Dogwood St, San Francisco, CA 94016" +229467,Vareebadd Phone,1,400,07/04/19 18:45,"405 Dogwood St, San Francisco, CA 94016" +229467,AA Batteries (4-pack),1,3.84,07/04/19 18:45,"405 Dogwood St, San Francisco, CA 94016" +229468,AA Batteries (4-pack),2,3.84,07/05/19 08:49,"681 Jefferson St, Los Angeles, CA 90001" +229469,Apple Airpods Headphones,1,150,07/05/19 15:39,"494 5th St, Boston, MA 02215" +229470,AA Batteries (4-pack),2,3.84,07/23/19 20:01,"572 4th St, Los Angeles, CA 90001" +229471,Lightning Charging Cable,1,14.95,07/13/19 10:02,"188 Cherry St, New York City, NY 10001" +229472,USB-C Charging Cable,1,11.95,07/22/19 13:57,"938 Jefferson St, Atlanta, GA 30301" +229473,AAA Batteries (4-pack),2,2.99,07/22/19 14:25,"551 Elm St, San Francisco, CA 94016" +229474,USB-C Charging Cable,1,11.95,07/13/19 11:37,"427 Hickory St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +229475,Google Phone,1,600,07/17/19 21:21,"774 10th St, Austin, TX 73301" +229475,Bose SoundSport Headphones,1,99.99,07/17/19 21:21,"774 10th St, Austin, TX 73301" +229476,Lightning Charging Cable,1,14.95,07/16/19 17:52,"994 6th St, Portland, ME 04101" +229477,USB-C Charging Cable,1,11.95,07/27/19 14:01,"235 Elm St, Atlanta, GA 30301" +229478,Wired Headphones,1,11.99,07/27/19 21:06,"939 Pine St, Portland, OR 97035" +229479,AAA Batteries (4-pack),3,2.99,07/06/19 12:11,"622 Wilson St, Portland, OR 97035" +229480,USB-C Charging Cable,1,11.95,07/12/19 19:55,"432 12th St, San Francisco, CA 94016" +229481,AAA Batteries (4-pack),1,2.99,07/14/19 14:55,"9 Sunset St, Boston, MA 02215" +229482,AAA Batteries (4-pack),1,2.99,07/02/19 09:34,"225 Park St, New York City, NY 10001" +229483,AA Batteries (4-pack),1,3.84,07/15/19 07:57,"398 Park St, Los Angeles, CA 90001" +229484,34in Ultrawide Monitor,1,379.99,07/27/19 10:49,"815 Church St, San Francisco, CA 94016" +229485,Bose SoundSport Headphones,1,99.99,07/29/19 12:05,"322 9th St, Seattle, WA 98101" +229486,Flatscreen TV,1,300,07/25/19 20:54,"67 14th St, San Francisco, CA 94016" +229487,34in Ultrawide Monitor,1,379.99,07/23/19 06:41,"638 Cedar St, Dallas, TX 75001" +229488,Lightning Charging Cable,1,14.95,07/16/19 14:51,"927 South St, Atlanta, GA 30301" +229489,Bose SoundSport Headphones,1,99.99,07/05/19 18:43,"684 Elm St, Dallas, TX 75001" +229490,AAA Batteries (4-pack),1,2.99,07/19/19 15:14,"367 Sunset St, Los Angeles, CA 90001" +229491,20in Monitor,1,109.99,07/15/19 14:04,"777 7th St, Atlanta, GA 30301" +229492,Apple Airpods Headphones,1,150,07/27/19 16:33,"307 Church St, San Francisco, CA 94016" +229493,AAA Batteries (4-pack),1,2.99,07/26/19 15:34,"600 North St, San Francisco, CA 94016" +229494,Macbook Pro Laptop,1,1700,07/10/19 20:12,"283 13th St, Atlanta, GA 30301" +229495,USB-C Charging Cable,1,11.95,07/06/19 11:46,"91 6th St, San Francisco, CA 94016" +229496,Wired Headphones,1,11.99,07/02/19 19:18,"272 9th St, Atlanta, GA 30301" +229497,Bose SoundSport Headphones,1,99.99,07/14/19 13:05,"575 8th St, Seattle, WA 98101" +229498,AAA Batteries (4-pack),1,2.99,07/26/19 14:00,"790 Cedar St, Dallas, TX 75001" +229499,AAA Batteries (4-pack),1,2.99,07/01/19 14:56,"840 Forest St, Boston, MA 02215" +229500,Bose SoundSport Headphones,1,99.99,07/14/19 16:07,"5 River St, New York City, NY 10001" +229501,34in Ultrawide Monitor,1,379.99,07/06/19 16:09,"958 Hill St, New York City, NY 10001" +229502,AAA Batteries (4-pack),1,2.99,07/06/19 15:20,"265 13th St, Los Angeles, CA 90001" +229503,34in Ultrawide Monitor,1,379.99,07/28/19 15:26,"358 Chestnut St, Boston, MA 02215" +229504,iPhone,1,700,07/09/19 13:47,"708 Maple St, Dallas, TX 75001" +229505,Apple Airpods Headphones,1,150,07/20/19 01:19,"312 River St, Boston, MA 02215" +229506,Macbook Pro Laptop,1,1700,07/27/19 07:47,"24 6th St, Atlanta, GA 30301" +229507,Apple Airpods Headphones,1,150,07/13/19 13:30,"909 Hickory St, New York City, NY 10001" +229508,Wired Headphones,1,11.99,07/21/19 17:06,"715 10th St, Seattle, WA 98101" +229509,AAA Batteries (4-pack),1,2.99,07/25/19 15:18,"120 Dogwood St, New York City, NY 10001" +229510,AA Batteries (4-pack),3,3.84,07/25/19 09:58,"15 North St, Dallas, TX 75001" +229511,AAA Batteries (4-pack),2,2.99,07/27/19 18:29,"356 Chestnut St, Atlanta, GA 30301" +229512,20in Monitor,1,109.99,07/21/19 21:12,"603 Wilson St, San Francisco, CA 94016" +229512,Wired Headphones,1,11.99,07/21/19 21:12,"603 Wilson St, San Francisco, CA 94016" +229513,Apple Airpods Headphones,2,150,07/13/19 22:33,"23 7th St, Atlanta, GA 30301" +229514,Wired Headphones,2,11.99,07/23/19 09:48,"245 Madison St, Boston, MA 02215" +229515,USB-C Charging Cable,1,11.95,07/05/19 21:35,"117 Forest St, Seattle, WA 98101" +229516,Flatscreen TV,1,300,07/20/19 11:53,"205 Willow St, San Francisco, CA 94016" +229517,AA Batteries (4-pack),2,3.84,07/15/19 12:41,"908 Washington St, Portland, OR 97035" +229518,Apple Airpods Headphones,1,150,07/09/19 16:48,"147 Cherry St, Los Angeles, CA 90001" +229519,34in Ultrawide Monitor,1,379.99,07/09/19 08:34,"5 Forest St, San Francisco, CA 94016" +229520,Apple Airpods Headphones,1,150,07/13/19 00:21,"471 West St, Boston, MA 02215" +229521,27in 4K Gaming Monitor,1,389.99,07/18/19 07:09,"345 6th St, Dallas, TX 75001" +229522,Bose SoundSport Headphones,1,99.99,07/09/19 06:49,"913 Lincoln St, New York City, NY 10001" +229523,Bose SoundSport Headphones,1,99.99,07/05/19 10:43,"223 Cherry St, San Francisco, CA 94016" +229524,27in 4K Gaming Monitor,1,389.99,07/07/19 00:35,"519 Willow St, Los Angeles, CA 90001" +229525,Google Phone,1,600,07/12/19 08:47,"523 North St, Dallas, TX 75001" +229525,USB-C Charging Cable,1,11.95,07/12/19 08:47,"523 North St, Dallas, TX 75001" +229526,Lightning Charging Cable,1,14.95,07/21/19 16:49,"751 8th St, Seattle, WA 98101" +229527,Wired Headphones,1,11.99,07/30/19 12:55,"414 West St, San Francisco, CA 94016" +229528,Apple Airpods Headphones,1,150,07/18/19 10:28,"272 13th St, Los Angeles, CA 90001" +229529,Apple Airpods Headphones,1,150,07/28/19 21:17,"926 Hickory St, Boston, MA 02215" +229530,Flatscreen TV,1,300,07/15/19 17:55,"887 Maple St, Atlanta, GA 30301" +229531,AAA Batteries (4-pack),1,2.99,07/16/19 09:22,"416 Main St, Portland, OR 97035" +229532,Lightning Charging Cable,1,14.95,07/08/19 14:30,"274 Sunset St, Dallas, TX 75001" +229533,Lightning Charging Cable,1,14.95,07/20/19 11:18,"321 Walnut St, Seattle, WA 98101" +229534,Apple Airpods Headphones,1,150,07/05/19 10:49,"989 Hickory St, New York City, NY 10001" +229535,Lightning Charging Cable,1,14.95,07/24/19 13:12,"950 Lakeview St, San Francisco, CA 94016" +229536,Lightning Charging Cable,1,14.95,07/02/19 12:36,"512 6th St, New York City, NY 10001" +229537,Bose SoundSport Headphones,1,99.99,07/10/19 13:06,"966 Walnut St, Boston, MA 02215" +229538,AA Batteries (4-pack),2,3.84,07/21/19 08:36,"15 9th St, Austin, TX 73301" +229539,Bose SoundSport Headphones,1,99.99,07/03/19 21:06,"80 Lake St, Atlanta, GA 30301" +229540,Bose SoundSport Headphones,1,99.99,07/22/19 19:37,"848 Sunset St, Atlanta, GA 30301" +229541,USB-C Charging Cable,1,11.95,07/22/19 16:13,"289 5th St, Austin, TX 73301" +229542,20in Monitor,1,109.99,07/28/19 00:01,"954 Willow St, San Francisco, CA 94016" +229543,AAA Batteries (4-pack),1,2.99,07/17/19 14:17,"794 7th St, San Francisco, CA 94016" +229544,AA Batteries (4-pack),1,3.84,07/16/19 15:10,"298 Meadow St, San Francisco, CA 94016" +229545,AAA Batteries (4-pack),3,2.99,07/24/19 09:55,"591 Chestnut St, Los Angeles, CA 90001" +229546,AA Batteries (4-pack),1,3.84,07/12/19 17:14,"854 Elm St, Los Angeles, CA 90001" +229547,34in Ultrawide Monitor,1,379.99,07/22/19 20:29,"795 Cedar St, San Francisco, CA 94016" +229548,Google Phone,1,600,07/08/19 14:00,"409 Dogwood St, Los Angeles, CA 90001" +229549,27in 4K Gaming Monitor,1,389.99,07/08/19 09:49,"743 Chestnut St, Seattle, WA 98101" +229550,USB-C Charging Cable,1,11.95,07/26/19 11:33,"537 Jefferson St, New York City, NY 10001" +229551,USB-C Charging Cable,1,11.95,07/19/19 11:16,"330 Lake St, Los Angeles, CA 90001" +229552,AAA Batteries (4-pack),1,2.99,07/14/19 11:33,"978 Spruce St, Dallas, TX 75001" +229553,AAA Batteries (4-pack),1,2.99,07/12/19 17:51,"890 Cedar St, Seattle, WA 98101" +229554,AAA Batteries (4-pack),2,2.99,07/13/19 10:14,"844 Meadow St, New York City, NY 10001" +229555,27in FHD Monitor,1,149.99,07/01/19 19:04,"705 Elm St, San Francisco, CA 94016" +229556,AAA Batteries (4-pack),2,2.99,07/19/19 01:40,"249 River St, San Francisco, CA 94016" +229557,Wired Headphones,1,11.99,07/25/19 13:20,"335 10th St, Dallas, TX 75001" +229558,Wired Headphones,1,11.99,07/20/19 17:14,"285 Meadow St, Los Angeles, CA 90001" +229559,Apple Airpods Headphones,1,150,07/02/19 06:44,"578 Adams St, Boston, MA 02215" +229560,Lightning Charging Cable,1,14.95,07/24/19 21:57,"60 North St, Portland, ME 04101" +229561,USB-C Charging Cable,1,11.95,07/29/19 11:00,"868 Chestnut St, Los Angeles, CA 90001" +229562,USB-C Charging Cable,1,11.95,07/01/19 21:28,"796 Pine St, Seattle, WA 98101" +229563,USB-C Charging Cable,1,11.95,07/23/19 21:10,"35 7th St, San Francisco, CA 94016" +229564,AAA Batteries (4-pack),1,2.99,07/09/19 21:14,"237 9th St, Atlanta, GA 30301" +229565,AAA Batteries (4-pack),1,2.99,07/10/19 09:20,"452 6th St, Los Angeles, CA 90001" +229566,Wired Headphones,1,11.99,07/02/19 19:55,"482 North St, Boston, MA 02215" +229567,27in 4K Gaming Monitor,1,389.99,07/24/19 09:29,"652 Spruce St, Los Angeles, CA 90001" +229568,Apple Airpods Headphones,1,150,07/14/19 16:15,"865 Willow St, San Francisco, CA 94016" +229569,Apple Airpods Headphones,1,150,07/10/19 18:18,"837 Center St, San Francisco, CA 94016" +229570,Apple Airpods Headphones,1,150,07/21/19 19:35,"315 Washington St, New York City, NY 10001" +229571,27in FHD Monitor,1,149.99,07/15/19 21:50,"230 Cedar St, Boston, MA 02215" +229572,AA Batteries (4-pack),2,3.84,07/07/19 17:25,"530 Main St, Austin, TX 73301" +229573,Apple Airpods Headphones,1,150,07/04/19 14:16,"691 Washington St, San Francisco, CA 94016" +229574,Flatscreen TV,1,300,07/05/19 22:39,"333 Pine St, New York City, NY 10001" +229575,Flatscreen TV,1,300,07/08/19 15:31,"450 14th St, San Francisco, CA 94016" +229576,AA Batteries (4-pack),1,3.84,07/31/19 13:18,"974 Jefferson St, Boston, MA 02215" +229577,27in 4K Gaming Monitor,1,389.99,07/07/19 08:10,"641 Walnut St, Atlanta, GA 30301" +229578,iPhone,1,700,07/29/19 15:07,"15 Forest St, Dallas, TX 75001" +229579,Lightning Charging Cable,1,14.95,07/03/19 23:03,"159 Cedar St, New York City, NY 10001" +229580,Google Phone,1,600,07/23/19 19:15,"840 Dogwood St, San Francisco, CA 94016" +229581,Google Phone,1,600,07/13/19 01:26,"337 Johnson St, San Francisco, CA 94016" +229582,Bose SoundSport Headphones,1,99.99,07/27/19 08:52,"759 Maple St, Austin, TX 73301" +229583,Flatscreen TV,1,300,07/26/19 09:22,"561 Walnut St, Los Angeles, CA 90001" +229584,Lightning Charging Cable,1,14.95,07/28/19 22:12,"132 6th St, San Francisco, CA 94016" +229585,Lightning Charging Cable,1,14.95,07/09/19 16:31,"950 Church St, Atlanta, GA 30301" +229586,AAA Batteries (4-pack),1,2.99,07/20/19 02:01,"250 5th St, San Francisco, CA 94016" +229587,Wired Headphones,1,11.99,07/09/19 22:56,"932 Washington St, Austin, TX 73301" +229588,Apple Airpods Headphones,1,150,07/06/19 18:41,"742 North St, Los Angeles, CA 90001" +229589,Google Phone,1,600,07/22/19 11:50,"242 Church St, San Francisco, CA 94016" +229590,Flatscreen TV,1,300,07/23/19 22:38,"854 Lincoln St, Boston, MA 02215" +229591,Lightning Charging Cable,1,14.95,07/16/19 19:53,"206 Ridge St, Seattle, WA 98101" +229592,20in Monitor,1,109.99,07/26/19 10:38,"25 Cherry St, San Francisco, CA 94016" +229593,Lightning Charging Cable,1,14.95,07/17/19 04:57,"647 10th St, San Francisco, CA 94016" +229594,Lightning Charging Cable,1,14.95,07/16/19 12:38,"816 River St, Austin, TX 73301" +229595,USB-C Charging Cable,1,11.95,07/21/19 22:50,"355 Main St, Portland, OR 97035" +229596,AAA Batteries (4-pack),2,2.99,07/27/19 04:45,"356 5th St, Los Angeles, CA 90001" +229597,Macbook Pro Laptop,1,1700,07/31/19 09:32,"407 Jefferson St, Austin, TX 73301" +229598,AA Batteries (4-pack),1,3.84,07/19/19 10:26,"266 13th St, Atlanta, GA 30301" +229599,Flatscreen TV,1,300,07/17/19 16:33,"987 14th St, New York City, NY 10001" +229600,AA Batteries (4-pack),1,3.84,07/01/19 14:17,"917 Pine St, Los Angeles, CA 90001" +229601,27in FHD Monitor,1,149.99,07/16/19 11:29,"209 Hill St, San Francisco, CA 94016" +229602,AA Batteries (4-pack),1,3.84,07/12/19 15:47,"351 West St, San Francisco, CA 94016" +229603,Flatscreen TV,1,300,07/28/19 14:07,"554 Highland St, New York City, NY 10001" +229604,Bose SoundSport Headphones,1,99.99,07/03/19 12:38,"6 Madison St, San Francisco, CA 94016" +229605,Wired Headphones,1,11.99,07/26/19 20:58,"575 Meadow St, New York City, NY 10001" +229606,AAA Batteries (4-pack),1,2.99,07/27/19 21:04,"658 Walnut St, Portland, OR 97035" +229607,Bose SoundSport Headphones,1,99.99,07/05/19 16:53,"995 Cedar St, San Francisco, CA 94016" +229608,iPhone,1,700,07/16/19 00:16,"507 13th St, New York City, NY 10001" +229609,Lightning Charging Cable,1,14.95,07/13/19 09:50,"495 7th St, Los Angeles, CA 90001" +229610,USB-C Charging Cable,1,11.95,07/11/19 10:04,"263 Ridge St, Dallas, TX 75001" +229611,LG Dryer,1,600.0,07/04/19 10:02,"385 Elm St, San Francisco, CA 94016" +229612,Lightning Charging Cable,1,14.95,07/25/19 14:43,"878 Cedar St, San Francisco, CA 94016" +229613,Apple Airpods Headphones,1,150,07/16/19 10:10,"412 13th St, New York City, NY 10001" +229614,34in Ultrawide Monitor,1,379.99,07/24/19 12:53,"606 2nd St, San Francisco, CA 94016" +229615,ThinkPad Laptop,1,999.99,07/31/19 18:23,"217 Main St, Austin, TX 73301" +229616,Bose SoundSport Headphones,1,99.99,07/01/19 15:26,"988 North St, Los Angeles, CA 90001" +229617,27in 4K Gaming Monitor,1,389.99,07/18/19 14:55,"116 Madison St, New York City, NY 10001" +229618,ThinkPad Laptop,1,999.99,07/08/19 17:17,"927 Church St, New York City, NY 10001" +229619,AAA Batteries (4-pack),1,2.99,07/02/19 12:58,"316 14th St, New York City, NY 10001" +229620,AAA Batteries (4-pack),1,2.99,07/02/19 23:04,"44 4th St, Austin, TX 73301" +229621,AAA Batteries (4-pack),1,2.99,07/17/19 06:37,"738 Washington St, New York City, NY 10001" +229622,AAA Batteries (4-pack),1,2.99,07/25/19 23:28,"404 Chestnut St, Portland, OR 97035" +229623,AAA Batteries (4-pack),4,2.99,07/19/19 21:16,"907 13th St, Los Angeles, CA 90001" +229624,27in 4K Gaming Monitor,1,389.99,07/17/19 13:21,"609 Jackson St, Los Angeles, CA 90001" +229625,AA Batteries (4-pack),1,3.84,07/24/19 16:56,"406 7th St, San Francisco, CA 94016" +229626,USB-C Charging Cable,1,11.95,07/26/19 14:01,"107 Jackson St, Dallas, TX 75001" +229627,27in 4K Gaming Monitor,1,389.99,07/08/19 19:53,"654 Church St, Boston, MA 02215" +229628,AAA Batteries (4-pack),1,2.99,07/25/19 16:25,"115 Madison St, Atlanta, GA 30301" +229629,27in FHD Monitor,1,149.99,07/11/19 20:11,"801 1st St, San Francisco, CA 94016" +229630,34in Ultrawide Monitor,1,379.99,07/17/19 15:15,"954 Sunset St, New York City, NY 10001" +229631,AA Batteries (4-pack),1,3.84,07/20/19 14:49,"600 Hickory St, Los Angeles, CA 90001" +229632,34in Ultrawide Monitor,1,379.99,07/03/19 11:23,"502 2nd St, Dallas, TX 75001" +229633,USB-C Charging Cable,1,11.95,07/05/19 13:18,"961 Lake St, San Francisco, CA 94016" +229634,27in FHD Monitor,1,149.99,07/04/19 09:18,"404 Hill St, Atlanta, GA 30301" +229635,AA Batteries (4-pack),1,3.84,07/10/19 12:23,"622 Ridge St, Boston, MA 02215" +229636,34in Ultrawide Monitor,1,379.99,07/07/19 15:26,"399 1st St, Boston, MA 02215" +229637,Lightning Charging Cable,1,14.95,07/28/19 17:44,"832 Forest St, San Francisco, CA 94016" +229638,Lightning Charging Cable,1,14.95,07/03/19 16:06,"270 11th St, Atlanta, GA 30301" +229639,Wired Headphones,1,11.99,07/17/19 11:24,"539 Elm St, San Francisco, CA 94016" +229640,Wired Headphones,1,11.99,07/16/19 04:58,"558 Main St, San Francisco, CA 94016" +229641,Wired Headphones,1,11.99,07/10/19 18:07,"11 10th St, Boston, MA 02215" +229642,Macbook Pro Laptop,1,1700,07/11/19 19:17,"447 Elm St, Atlanta, GA 30301" +229643,Bose SoundSport Headphones,1,99.99,07/18/19 17:54,"166 Hill St, Portland, OR 97035" +229644,34in Ultrawide Monitor,1,379.99,07/15/19 11:03,"142 6th St, Boston, MA 02215" +229645,AAA Batteries (4-pack),3,2.99,07/24/19 08:17,"203 Highland St, Boston, MA 02215" +229646,Lightning Charging Cable,1,14.95,07/20/19 14:48,"921 Spruce St, Boston, MA 02215" +229647,Lightning Charging Cable,1,14.95,07/29/19 18:20,"836 13th St, New York City, NY 10001" +229648,Bose SoundSport Headphones,1,99.99,07/14/19 07:56,"586 Hill St, San Francisco, CA 94016" +229649,USB-C Charging Cable,1,11.95,07/12/19 21:57,"773 Washington St, San Francisco, CA 94016" +229650,USB-C Charging Cable,1,11.95,07/07/19 17:43,"725 Meadow St, Boston, MA 02215" +229651,Wired Headphones,1,11.99,07/25/19 11:05,"334 14th St, Los Angeles, CA 90001" +229652,Wired Headphones,1,11.99,07/23/19 17:05,"675 12th St, Dallas, TX 75001" +229653,Macbook Pro Laptop,1,1700,07/03/19 08:39,"826 Main St, San Francisco, CA 94016" +229654,AAA Batteries (4-pack),1,2.99,07/22/19 10:46,"441 Lincoln St, Boston, MA 02215" +229655,Apple Airpods Headphones,1,150,07/04/19 11:03,"757 2nd St, San Francisco, CA 94016" +229656,Lightning Charging Cable,2,14.95,07/16/19 08:47,"541 Lake St, Los Angeles, CA 90001" +229657,ThinkPad Laptop,1,999.99,07/13/19 15:14,"568 Main St, Los Angeles, CA 90001" +229658,Lightning Charging Cable,1,14.95,07/20/19 14:42,"462 11th St, San Francisco, CA 94016" +229659,Lightning Charging Cable,1,14.95,07/11/19 14:45,"316 Spruce St, Los Angeles, CA 90001" +229660,Apple Airpods Headphones,1,150,07/09/19 12:12,"873 Washington St, Portland, OR 97035" +229661,Apple Airpods Headphones,1,150,07/01/19 22:39,"537 13th St, San Francisco, CA 94016" +229662,USB-C Charging Cable,1,11.95,07/08/19 14:16,"815 1st St, San Francisco, CA 94016" +229663,AAA Batteries (4-pack),1,2.99,07/07/19 12:50,"463 Wilson St, San Francisco, CA 94016" +229664,Vareebadd Phone,1,400,07/12/19 20:28,"156 Dogwood St, San Francisco, CA 94016" +229665,AA Batteries (4-pack),1,3.84,07/24/19 10:14,"277 12th St, Los Angeles, CA 90001" +229666,AAA Batteries (4-pack),1,2.99,07/27/19 12:28,"837 Park St, Boston, MA 02215" +229667,Wired Headphones,1,11.99,07/31/19 18:52,"709 4th St, San Francisco, CA 94016" +229668,27in 4K Gaming Monitor,1,389.99,07/28/19 08:52,"81 4th St, Los Angeles, CA 90001" +229669,Apple Airpods Headphones,1,150,07/05/19 14:08,"737 Walnut St, Los Angeles, CA 90001" +229670,AAA Batteries (4-pack),1,2.99,07/19/19 10:55,"441 11th St, Atlanta, GA 30301" +229671,Macbook Pro Laptop,1,1700,07/18/19 17:43,"997 1st St, San Francisco, CA 94016" +229672,ThinkPad Laptop,1,999.99,07/25/19 15:54,"572 Hill St, Atlanta, GA 30301" +229673,Lightning Charging Cable,1,14.95,07/10/19 13:18,"318 Highland St, Portland, OR 97035" +229674,ThinkPad Laptop,1,999.99,07/22/19 10:09,"739 Pine St, New York City, NY 10001" +229675,Apple Airpods Headphones,1,150,07/13/19 16:45,"131 Cherry St, Seattle, WA 98101" +229676,AAA Batteries (4-pack),1,2.99,07/01/19 14:11,"751 Lincoln St, Austin, TX 73301" +229677,AAA Batteries (4-pack),1,2.99,07/19/19 14:30,"504 Cherry St, Austin, TX 73301" +229678,Lightning Charging Cable,1,14.95,07/04/19 18:57,"439 Church St, Dallas, TX 75001" +229679,Google Phone,1,600,07/07/19 20:49,"635 Center St, Atlanta, GA 30301" +229679,Wired Headphones,1,11.99,07/07/19 20:49,"635 Center St, Atlanta, GA 30301" +229680,AAA Batteries (4-pack),1,2.99,07/05/19 16:04,"895 Jefferson St, Los Angeles, CA 90001" +229681,USB-C Charging Cable,1,11.95,07/04/19 11:31,"103 Ridge St, Boston, MA 02215" +229682,Google Phone,1,600,07/09/19 19:19,"65 6th St, Los Angeles, CA 90001" +229683,AA Batteries (4-pack),1,3.84,07/24/19 15:38,"416 Pine St, Boston, MA 02215" +229684,Apple Airpods Headphones,1,150,07/22/19 15:45,"50 Maple St, Atlanta, GA 30301" +229684,iPhone,1,700,07/22/19 15:45,"50 Maple St, Atlanta, GA 30301" +229685,iPhone,1,700,07/09/19 15:10,"456 Center St, San Francisco, CA 94016" +229686,Flatscreen TV,1,300,07/03/19 11:16,"808 Madison St, Boston, MA 02215" +229687,Vareebadd Phone,1,400,07/21/19 14:30,"293 Washington St, Portland, OR 97035" +229688,Lightning Charging Cable,1,14.95,07/06/19 18:58,"706 Hill St, Seattle, WA 98101" +229689,27in FHD Monitor,1,149.99,07/16/19 18:57,"31 Jefferson St, San Francisco, CA 94016" +229690,AAA Batteries (4-pack),1,2.99,07/28/19 00:48,"228 4th St, Los Angeles, CA 90001" +229691,Apple Airpods Headphones,1,150,07/09/19 19:52,"195 South St, New York City, NY 10001" +229692,USB-C Charging Cable,1,11.95,07/11/19 12:47,"732 14th St, Dallas, TX 75001" +229693,ThinkPad Laptop,1,999.99,07/16/19 13:07,"721 6th St, New York City, NY 10001" +229694,iPhone,1,700,07/29/19 13:44,"365 Sunset St, Seattle, WA 98101" +229695,Bose SoundSport Headphones,1,99.99,07/30/19 12:55,"130 Walnut St, Los Angeles, CA 90001" +229696,Wired Headphones,1,11.99,07/28/19 16:33,"98 Sunset St, Dallas, TX 75001" +229697,20in Monitor,1,109.99,07/11/19 14:16,"142 Johnson St, Dallas, TX 75001" +229698,Lightning Charging Cable,1,14.95,07/13/19 12:39,"860 Lakeview St, Los Angeles, CA 90001" +229699,USB-C Charging Cable,1,11.95,07/27/19 14:31,"233 Maple St, Dallas, TX 75001" +229700,USB-C Charging Cable,1,11.95,07/13/19 19:11,"729 Elm St, Dallas, TX 75001" +229701,USB-C Charging Cable,1,11.95,07/16/19 17:45,"673 12th St, Dallas, TX 75001" +229702,Lightning Charging Cable,1,14.95,07/20/19 07:39,"960 7th St, Los Angeles, CA 90001" +229703,iPhone,1,700,07/24/19 11:54,"201 1st St, New York City, NY 10001" +229704,Apple Airpods Headphones,1,150,07/24/19 19:44,"262 Forest St, San Francisco, CA 94016" +229705,27in 4K Gaming Monitor,1,389.99,07/12/19 22:05,"544 2nd St, New York City, NY 10001" +229706,Lightning Charging Cable,1,14.95,07/30/19 11:15,"445 Cherry St, Los Angeles, CA 90001" +229707,AAA Batteries (4-pack),1,2.99,07/10/19 07:41,"980 Washington St, Boston, MA 02215" +229708,Flatscreen TV,1,300,07/22/19 22:35,"672 8th St, Los Angeles, CA 90001" +229709,Lightning Charging Cable,1,14.95,07/15/19 09:32,"348 Main St, San Francisco, CA 94016" +229710,27in 4K Gaming Monitor,1,389.99,07/29/19 01:16,"646 South St, Boston, MA 02215" +229711,Vareebadd Phone,1,400,07/08/19 22:24,"367 Wilson St, Los Angeles, CA 90001" +229712,Bose SoundSport Headphones,1,99.99,07/14/19 21:42,"956 Jackson St, San Francisco, CA 94016" +229713,USB-C Charging Cable,1,11.95,07/01/19 21:26,"116 4th St, New York City, NY 10001" +229714,Macbook Pro Laptop,1,1700,07/21/19 16:32,"486 Adams St, Los Angeles, CA 90001" +229715,Lightning Charging Cable,1,14.95,07/03/19 19:44,"976 Maple St, Los Angeles, CA 90001" +229716,34in Ultrawide Monitor,1,379.99,07/10/19 13:44,"454 Wilson St, Portland, OR 97035" +229717,Macbook Pro Laptop,1,1700,07/28/19 23:40,"939 Hickory St, Austin, TX 73301" +229718,AAA Batteries (4-pack),1,2.99,07/20/19 19:23,"416 Willow St, San Francisco, CA 94016" +229719,Vareebadd Phone,1,400,07/31/19 20:38,"36 Jackson St, Dallas, TX 75001" +229720,AAA Batteries (4-pack),1,2.99,07/21/19 23:36,"736 4th St, Boston, MA 02215" +229721,27in FHD Monitor,1,149.99,07/24/19 01:07,"95 Ridge St, Los Angeles, CA 90001" +229722,Wired Headphones,1,11.99,07/02/19 21:38,"823 Ridge St, Dallas, TX 75001" +229722,AAA Batteries (4-pack),2,2.99,07/02/19 21:38,"823 Ridge St, Dallas, TX 75001" +229723,AA Batteries (4-pack),1,3.84,07/05/19 13:14,"757 7th St, Portland, OR 97035" +229724,Bose SoundSport Headphones,1,99.99,07/22/19 18:28,"268 1st St, San Francisco, CA 94016" +229725,Apple Airpods Headphones,1,150,07/03/19 22:23,"538 Madison St, Portland, OR 97035" +229726,27in 4K Gaming Monitor,1,389.99,07/30/19 18:06,"89 Meadow St, San Francisco, CA 94016" +229727,USB-C Charging Cable,1,11.95,07/05/19 17:15,"588 Sunset St, Los Angeles, CA 90001" +229728,AA Batteries (4-pack),1,3.84,07/10/19 14:24,"99 Cedar St, San Francisco, CA 94016" +229729,Google Phone,1,600,07/24/19 21:32,"878 Chestnut St, Seattle, WA 98101" +229730,AAA Batteries (4-pack),1,2.99,07/09/19 07:17,"443 Forest St, New York City, NY 10001" +229731,Wired Headphones,1,11.99,07/29/19 03:53,"443 Washington St, Atlanta, GA 30301" +229732,Google Phone,1,600,07/30/19 12:14,"262 South St, Los Angeles, CA 90001" +229733,AA Batteries (4-pack),1,3.84,07/16/19 10:58,"80 Washington St, Boston, MA 02215" +229734,USB-C Charging Cable,1,11.95,07/08/19 08:21,"360 Cherry St, San Francisco, CA 94016" +229735,USB-C Charging Cable,1,11.95,07/02/19 19:57,"782 7th St, Portland, OR 97035" +229736,iPhone,1,700,07/24/19 06:18,"157 Lakeview St, Portland, OR 97035" +229737,iPhone,1,700,07/27/19 15:28,"915 Park St, Los Angeles, CA 90001" +229737,Lightning Charging Cable,1,14.95,07/27/19 15:28,"915 Park St, Los Angeles, CA 90001" +229738,Vareebadd Phone,1,400,07/22/19 08:55,"975 Hickory St, Atlanta, GA 30301" +229738,USB-C Charging Cable,1,11.95,07/22/19 08:55,"975 Hickory St, Atlanta, GA 30301" +229739,AAA Batteries (4-pack),1,2.99,07/18/19 10:30,"816 North St, New York City, NY 10001" +229740,AA Batteries (4-pack),1,3.84,07/25/19 19:48,"207 Lake St, Dallas, TX 75001" +229741,Wired Headphones,1,11.99,07/07/19 04:56,"745 Maple St, Portland, OR 97035" +229741,AA Batteries (4-pack),2,3.84,07/07/19 04:56,"745 Maple St, Portland, OR 97035" +229742,34in Ultrawide Monitor,1,379.99,07/20/19 07:12,"620 5th St, New York City, NY 10001" +229743,USB-C Charging Cable,1,11.95,07/07/19 10:12,"967 7th St, Seattle, WA 98101" +229744,Google Phone,1,600,07/20/19 19:39,"741 4th St, Portland, OR 97035" +229745,USB-C Charging Cable,1,11.95,07/25/19 15:00,"330 Pine St, New York City, NY 10001" +229746,iPhone,1,700,07/19/19 19:58,"509 West St, Austin, TX 73301" +229747,AAA Batteries (4-pack),2,2.99,07/06/19 16:06,"528 Cedar St, New York City, NY 10001" +229748,AAA Batteries (4-pack),2,2.99,07/20/19 01:24,"17 12th St, New York City, NY 10001" +229749,Apple Airpods Headphones,1,150,07/23/19 14:47,"344 Main St, New York City, NY 10001" +229750,Wired Headphones,1,11.99,07/07/19 07:29,"870 Lake St, New York City, NY 10001" +229751,Lightning Charging Cable,1,14.95,07/24/19 23:28,"776 Park St, San Francisco, CA 94016" +229752,Lightning Charging Cable,1,14.95,07/03/19 20:39,"912 Ridge St, Portland, OR 97035" +229753,ThinkPad Laptop,1,999.99,07/16/19 11:05,"198 Lakeview St, Los Angeles, CA 90001" +229754,AA Batteries (4-pack),1,3.84,07/19/19 18:21,"985 Washington St, Boston, MA 02215" +229755,34in Ultrawide Monitor,1,379.99,07/19/19 10:19,"612 Washington St, Dallas, TX 75001" +229756,Wired Headphones,1,11.99,07/27/19 17:30,"390 Washington St, San Francisco, CA 94016" +229757,27in FHD Monitor,1,149.99,07/04/19 22:42,"604 Adams St, Boston, MA 02215" +229758,AAA Batteries (4-pack),2,2.99,07/31/19 21:37,"50 6th St, Portland, OR 97035" +229759,LG Washing Machine,1,600.0,07/06/19 11:46,"924 14th St, Atlanta, GA 30301" +229760,AAA Batteries (4-pack),1,2.99,07/15/19 12:57,"73 Ridge St, New York City, NY 10001" +229761,AA Batteries (4-pack),1,3.84,07/18/19 20:32,"906 11th St, San Francisco, CA 94016" +229762,USB-C Charging Cable,1,11.95,07/16/19 13:11,"892 Madison St, New York City, NY 10001" +229763,Flatscreen TV,1,300,07/20/19 12:08,"135 Lakeview St, Dallas, TX 75001" +229764,Lightning Charging Cable,1,14.95,07/20/19 12:07,"40 6th St, Austin, TX 73301" +229765,20in Monitor,1,109.99,07/28/19 20:16,"802 North St, New York City, NY 10001" +229766,USB-C Charging Cable,1,11.95,07/15/19 11:23,"72 West St, Los Angeles, CA 90001" +229766,Lightning Charging Cable,1,14.95,07/15/19 11:23,"72 West St, Los Angeles, CA 90001" +229767,20in Monitor,1,109.99,07/08/19 06:27,"701 Sunset St, Los Angeles, CA 90001" +229768,USB-C Charging Cable,1,11.95,07/16/19 19:39,"829 Jefferson St, New York City, NY 10001" +229769,Bose SoundSport Headphones,1,99.99,07/27/19 12:23,"672 Willow St, New York City, NY 10001" +229770,USB-C Charging Cable,1,11.95,07/29/19 12:11,"136 Maple St, Los Angeles, CA 90001" +229771,USB-C Charging Cable,2,11.95,07/14/19 06:50,"744 Walnut St, San Francisco, CA 94016" +229772,27in FHD Monitor,1,149.99,07/14/19 19:44,"191 Elm St, New York City, NY 10001" +229773,AAA Batteries (4-pack),1,2.99,07/18/19 07:50,"296 14th St, New York City, NY 10001" +229774,Google Phone,1,600,07/04/19 17:41,"549 Madison St, Los Angeles, CA 90001" +229774,Wired Headphones,1,11.99,07/04/19 17:41,"549 Madison St, Los Angeles, CA 90001" +229775,Lightning Charging Cable,1,14.95,07/28/19 11:50,"912 Forest St, Portland, OR 97035" +229776,Wired Headphones,1,11.99,07/30/19 12:55,"75 Madison St, Los Angeles, CA 90001" +229777,27in FHD Monitor,1,149.99,07/05/19 11:59,"818 Lincoln St, Portland, OR 97035" +229778,Bose SoundSport Headphones,1,99.99,07/26/19 13:43,"934 River St, Austin, TX 73301" +229779,Wired Headphones,1,11.99,07/18/19 20:23,"503 Walnut St, Seattle, WA 98101" +229780,Apple Airpods Headphones,1,150,07/30/19 20:41,"610 Meadow St, Dallas, TX 75001" +229781,Flatscreen TV,1,300,07/09/19 14:56,"364 Meadow St, New York City, NY 10001" +229782,AAA Batteries (4-pack),2,2.99,07/09/19 22:11,"512 Wilson St, Atlanta, GA 30301" +229783,USB-C Charging Cable,1,11.95,07/22/19 16:02,"472 Ridge St, Atlanta, GA 30301" +229784,Wired Headphones,1,11.99,07/20/19 20:49,"995 Maple St, New York City, NY 10001" +229785,USB-C Charging Cable,1,11.95,07/30/19 12:37,"290 12th St, Seattle, WA 98101" +229786,Google Phone,1,600,07/19/19 00:15,"559 Walnut St, Dallas, TX 75001" +229786,USB-C Charging Cable,1,11.95,07/19/19 00:15,"559 Walnut St, Dallas, TX 75001" +229786,Bose SoundSport Headphones,1,99.99,07/19/19 00:15,"559 Walnut St, Dallas, TX 75001" +229787,Apple Airpods Headphones,1,150,07/09/19 18:22,"481 Jackson St, Atlanta, GA 30301" +229788,Flatscreen TV,1,300,07/30/19 08:12,"292 West St, Atlanta, GA 30301" +229789,Bose SoundSport Headphones,1,99.99,07/01/19 07:40,"478 Cedar St, Austin, TX 73301" +229790,USB-C Charging Cable,2,11.95,07/03/19 22:00,"776 West St, Atlanta, GA 30301" +229791,USB-C Charging Cable,1,11.95,07/08/19 06:23,"597 Pine St, Portland, OR 97035" +,,,,, +229792,Lightning Charging Cable,1,14.95,07/23/19 19:41,"947 7th St, San Francisco, CA 94016" +229793,Wired Headphones,2,11.99,07/16/19 16:29,"706 4th St, Boston, MA 02215" +229794,Wired Headphones,1,11.99,07/26/19 06:23,"148 Center St, San Francisco, CA 94016" +229795,27in FHD Monitor,1,149.99,07/12/19 10:43,"345 4th St, San Francisco, CA 94016" +229796,Lightning Charging Cable,1,14.95,07/01/19 18:10,"216 Lincoln St, San Francisco, CA 94016" +229797,ThinkPad Laptop,1,999.99,07/04/19 21:54,"813 Willow St, Los Angeles, CA 90001" +229798,USB-C Charging Cable,1,11.95,07/07/19 11:59,"235 Highland St, San Francisco, CA 94016" +229799,USB-C Charging Cable,1,11.95,07/30/19 00:17,"66 Lincoln St, Los Angeles, CA 90001" +229800,Apple Airpods Headphones,1,150,07/13/19 09:49,"172 2nd St, Atlanta, GA 30301" +229801,USB-C Charging Cable,1,11.95,07/22/19 18:27,"207 Dogwood St, Atlanta, GA 30301" +229802,USB-C Charging Cable,2,11.95,07/23/19 21:52,"510 Willow St, San Francisco, CA 94016" +229803,Bose SoundSport Headphones,1,99.99,07/31/19 09:29,"446 Walnut St, Atlanta, GA 30301" +229804,Wired Headphones,1,11.99,07/24/19 11:40,"184 13th St, Dallas, TX 75001" +229805,Flatscreen TV,1,300,07/26/19 16:42,"493 5th St, New York City, NY 10001" +229806,AA Batteries (4-pack),2,3.84,07/11/19 03:43,"429 Adams St, San Francisco, CA 94016" +229807,Wired Headphones,1,11.99,07/31/19 13:07,"821 9th St, Atlanta, GA 30301" +229808,AAA Batteries (4-pack),2,2.99,07/30/19 15:07,"150 11th St, Dallas, TX 75001" +229809,20in Monitor,1,109.99,07/16/19 21:07,"451 River St, Portland, OR 97035" +229810,Bose SoundSport Headphones,1,99.99,07/24/19 14:55,"330 Cherry St, Seattle, WA 98101" +229810,Lightning Charging Cable,1,14.95,07/24/19 14:55,"330 Cherry St, Seattle, WA 98101" +229811,AAA Batteries (4-pack),1,2.99,07/08/19 14:06,"865 Cherry St, Los Angeles, CA 90001" +229812,USB-C Charging Cable,1,11.95,07/16/19 18:27,"587 Willow St, San Francisco, CA 94016" +229813,Wired Headphones,1,11.99,07/23/19 10:20,"970 Adams St, Dallas, TX 75001" +229814,LG Dryer,1,600.0,07/19/19 12:47,"426 Church St, San Francisco, CA 94016" +229815,Bose SoundSport Headphones,1,99.99,07/17/19 16:25,"379 Ridge St, San Francisco, CA 94016" +,,,,, +229816,Google Phone,1,600,07/16/19 20:09,"812 Walnut St, Portland, OR 97035" +229817,34in Ultrawide Monitor,1,379.99,07/08/19 12:39,"545 7th St, Seattle, WA 98101" +229818,AAA Batteries (4-pack),1,2.99,07/26/19 22:02,"647 Forest St, Seattle, WA 98101" +229819,Bose SoundSport Headphones,1,99.99,07/04/19 20:18,"538 North St, Atlanta, GA 30301" +229820,ThinkPad Laptop,1,999.99,07/01/19 17:47,"316 Elm St, Seattle, WA 98101" +229821,Wired Headphones,1,11.99,07/20/19 10:42,"302 Lake St, Atlanta, GA 30301" +229822,Lightning Charging Cable,1,14.95,07/04/19 14:03,"678 Church St, New York City, NY 10001" +229823,Flatscreen TV,1,300,07/06/19 00:14,"377 Maple St, San Francisco, CA 94016" +229824,Lightning Charging Cable,1,14.95,07/09/19 14:42,"927 Pine St, Los Angeles, CA 90001" +229825,AA Batteries (4-pack),1,3.84,07/15/19 12:23,"583 Spruce St, San Francisco, CA 94016" +229826,27in FHD Monitor,1,149.99,07/30/19 12:37,"646 5th St, Los Angeles, CA 90001" +229827,Lightning Charging Cable,1,14.95,07/17/19 05:01,"970 Madison St, San Francisco, CA 94016" +229828,AA Batteries (4-pack),1,3.84,07/04/19 08:36,"121 2nd St, Los Angeles, CA 90001" +229829,iPhone,1,700,07/23/19 21:39,"925 5th St, San Francisco, CA 94016" +229829,Apple Airpods Headphones,1,150,07/23/19 21:39,"925 5th St, San Francisco, CA 94016" +229830,Bose SoundSport Headphones,1,99.99,07/08/19 21:34,"985 Adams St, San Francisco, CA 94016" +229831,Apple Airpods Headphones,1,150,07/08/19 12:27,"97 Elm St, New York City, NY 10001" +229832,Google Phone,1,600,07/28/19 13:54,"320 Main St, Portland, ME 04101" +229833,AAA Batteries (4-pack),1,2.99,07/14/19 19:58,"631 Hill St, Los Angeles, CA 90001" +229834,Bose SoundSport Headphones,1,99.99,07/25/19 15:29,"282 Lake St, Dallas, TX 75001" +229835,Google Phone,1,600,07/22/19 13:17,"137 Cedar St, Boston, MA 02215" +229836,Macbook Pro Laptop,1,1700,07/18/19 11:32,"165 West St, Dallas, TX 75001" +229837,iPhone,1,700,07/21/19 06:05,"514 11th St, San Francisco, CA 94016" +229838,34in Ultrawide Monitor,1,379.99,07/10/19 09:27,"999 Walnut St, San Francisco, CA 94016" +229839,Wired Headphones,1,11.99,07/12/19 18:57,"330 Ridge St, Los Angeles, CA 90001" +229840,AA Batteries (4-pack),1,3.84,07/10/19 22:55,"945 Willow St, Atlanta, GA 30301" +229841,27in FHD Monitor,1,149.99,08/01/19 02:39,"686 Hill St, Dallas, TX 75001" +229842,AAA Batteries (4-pack),2,2.99,07/17/19 08:36,"148 West St, Austin, TX 73301" +229843,AAA Batteries (4-pack),1,2.99,07/27/19 20:58,"520 River St, San Francisco, CA 94016" +229844,Bose SoundSport Headphones,1,99.99,07/12/19 09:00,"414 11th St, Boston, MA 02215" +229845,USB-C Charging Cable,1,11.95,07/24/19 12:00,"879 13th St, San Francisco, CA 94016" +229846,Bose SoundSport Headphones,1,99.99,07/09/19 10:13,"310 14th St, Atlanta, GA 30301" +229847,Apple Airpods Headphones,1,150,07/22/19 18:30,"254 Willow St, Portland, OR 97035" +229848,AAA Batteries (4-pack),1,2.99,07/24/19 16:54,"528 Wilson St, Portland, OR 97035" +229849,Wired Headphones,1,11.99,07/05/19 14:39,"916 13th St, New York City, NY 10001" +229850,Lightning Charging Cable,1,14.95,07/21/19 16:20,"629 Lincoln St, Portland, OR 97035" +229851,Wired Headphones,1,11.99,07/12/19 11:15,"691 Lakeview St, Dallas, TX 75001" +229852,Lightning Charging Cable,1,14.95,07/15/19 21:47,"478 Wilson St, New York City, NY 10001" +229853,Lightning Charging Cable,1,14.95,07/05/19 00:02,"398 Center St, Austin, TX 73301" +229854,AA Batteries (4-pack),1,3.84,07/02/19 05:10,"250 Chestnut St, Atlanta, GA 30301" +229855,Bose SoundSport Headphones,1,99.99,07/02/19 22:23,"676 10th St, Dallas, TX 75001" +229856,Apple Airpods Headphones,1,150,07/24/19 16:30,"952 Jackson St, Dallas, TX 75001" +229857,34in Ultrawide Monitor,1,379.99,07/08/19 11:56,"647 Maple St, Boston, MA 02215" +229858,AA Batteries (4-pack),1,3.84,07/25/19 16:56,"913 Center St, San Francisco, CA 94016" +229859,Bose SoundSport Headphones,1,99.99,07/01/19 21:16,"365 West St, Boston, MA 02215" +,,,,, +229860,Google Phone,1,600,07/26/19 21:17,"414 Spruce St, San Francisco, CA 94016" +229861,AAA Batteries (4-pack),3,2.99,07/29/19 04:36,"390 Washington St, Atlanta, GA 30301" +229862,Google Phone,1,600,07/05/19 05:46,"427 Forest St, Los Angeles, CA 90001" +229862,USB-C Charging Cable,1,11.95,07/05/19 05:46,"427 Forest St, Los Angeles, CA 90001" +229863,AA Batteries (4-pack),1,3.84,07/04/19 19:43,"115 Forest St, Los Angeles, CA 90001" +229864,iPhone,1,700,07/08/19 07:59,"31 Hickory St, San Francisco, CA 94016" +229865,AAA Batteries (4-pack),1,2.99,07/30/19 19:19,"816 Cherry St, San Francisco, CA 94016" +229866,Flatscreen TV,1,300,07/27/19 12:10,"435 8th St, Atlanta, GA 30301" +229867,Wired Headphones,1,11.99,07/16/19 07:36,"195 Church St, Austin, TX 73301" +229868,ThinkPad Laptop,1,999.99,07/02/19 11:01,"109 Meadow St, Atlanta, GA 30301" +229869,Flatscreen TV,1,300,07/08/19 22:44,"792 Johnson St, Atlanta, GA 30301" +229870,AA Batteries (4-pack),1,3.84,07/05/19 00:03,"668 11th St, San Francisco, CA 94016" +229871,Vareebadd Phone,1,400,07/28/19 20:34,"902 Forest St, Atlanta, GA 30301" +229871,Bose SoundSport Headphones,1,99.99,07/28/19 20:34,"902 Forest St, Atlanta, GA 30301" +229872,USB-C Charging Cable,1,11.95,07/18/19 02:02,"544 10th St, Dallas, TX 75001" +229873,Lightning Charging Cable,1,14.95,07/29/19 00:34,"632 Jefferson St, San Francisco, CA 94016" +229874,Macbook Pro Laptop,1,1700,07/06/19 16:54,"336 Johnson St, Los Angeles, CA 90001" +229875,USB-C Charging Cable,1,11.95,07/07/19 21:20,"541 Elm St, New York City, NY 10001" +229876,Wired Headphones,1,11.99,07/28/19 11:35,"229 Main St, New York City, NY 10001" +229877,USB-C Charging Cable,1,11.95,07/03/19 09:33,"553 Lincoln St, Atlanta, GA 30301" +229878,Bose SoundSport Headphones,1,99.99,08/01/19 01:38,"996 Main St, Los Angeles, CA 90001" +229879,AAA Batteries (4-pack),2,2.99,07/04/19 13:47,"750 6th St, San Francisco, CA 94016" +229880,ThinkPad Laptop,1,999.99,07/20/19 20:09,"538 Washington St, Seattle, WA 98101" +229881,Bose SoundSport Headphones,1,99.99,07/07/19 12:07,"232 Meadow St, San Francisco, CA 94016" +229882,USB-C Charging Cable,2,11.95,07/11/19 21:35,"664 Walnut St, San Francisco, CA 94016" +229883,Wired Headphones,1,11.99,07/28/19 13:13,"815 5th St, Los Angeles, CA 90001" +229884,Macbook Pro Laptop,1,1700,07/21/19 18:59,"501 Sunset St, Portland, OR 97035" +229885,Vareebadd Phone,1,400,07/04/19 20:42,"156 Forest St, Dallas, TX 75001" +229886,Bose SoundSport Headphones,1,99.99,07/10/19 18:15,"699 Hickory St, Seattle, WA 98101" +229887,Lightning Charging Cable,1,14.95,07/02/19 22:38,"769 9th St, San Francisco, CA 94016" +229888,USB-C Charging Cable,1,11.95,07/19/19 11:47,"591 Elm St, San Francisco, CA 94016" +229889,Apple Airpods Headphones,1,150,07/03/19 00:28,"747 West St, Atlanta, GA 30301" +229890,Wired Headphones,1,11.99,07/15/19 12:40,"940 Dogwood St, San Francisco, CA 94016" +229891,Google Phone,1,600,07/28/19 00:54,"553 Center St, San Francisco, CA 94016" +229892,USB-C Charging Cable,1,11.95,07/21/19 00:42,"786 Cherry St, Portland, OR 97035" +229893,27in FHD Monitor,1,149.99,07/25/19 22:22,"584 1st St, Atlanta, GA 30301" +229894,AAA Batteries (4-pack),3,2.99,07/14/19 08:21,"987 South St, Atlanta, GA 30301" +229895,USB-C Charging Cable,1,11.95,07/24/19 20:27,"761 Forest St, San Francisco, CA 94016" +229895,Wired Headphones,1,11.99,07/24/19 20:27,"761 Forest St, San Francisco, CA 94016" +229896,Google Phone,1,600,07/16/19 14:42,"602 8th St, Dallas, TX 75001" +,,,,, +229897,AAA Batteries (4-pack),1,2.99,07/10/19 16:55,"246 Jackson St, Dallas, TX 75001" +229898,USB-C Charging Cable,1,11.95,07/19/19 17:07,"117 Madison St, Boston, MA 02215" +229899,ThinkPad Laptop,1,999.99,07/12/19 17:23,"734 Spruce St, New York City, NY 10001" +229900,AA Batteries (4-pack),2,3.84,07/28/19 11:03,"597 12th St, Los Angeles, CA 90001" +229901,34in Ultrawide Monitor,1,379.99,07/13/19 11:23,"658 Church St, Dallas, TX 75001" +229902,AA Batteries (4-pack),1,3.84,07/21/19 18:36,"455 6th St, Atlanta, GA 30301" +229903,USB-C Charging Cable,1,11.95,07/27/19 19:51,"296 Forest St, Seattle, WA 98101" +229904,ThinkPad Laptop,1,999.99,07/06/19 22:17,"410 Center St, New York City, NY 10001" +229905,Wired Headphones,1,11.99,07/28/19 13:30,"879 1st St, New York City, NY 10001" +229906,Bose SoundSport Headphones,1,99.99,07/11/19 15:29,"59 Lakeview St, Austin, TX 73301" +229907,USB-C Charging Cable,1,11.95,07/31/19 13:09,"357 Cedar St, Los Angeles, CA 90001" +229908,Flatscreen TV,1,300,07/15/19 19:52,"319 Spruce St, Boston, MA 02215" +229909,Apple Airpods Headphones,1,150,07/15/19 18:03,"956 4th St, Atlanta, GA 30301" +229910,Google Phone,1,600,07/05/19 08:15,"606 1st St, Seattle, WA 98101" +229911,AAA Batteries (4-pack),2,2.99,07/16/19 18:27,"866 4th St, Seattle, WA 98101" +229912,Wired Headphones,1,11.99,07/29/19 11:50,"83 14th St, San Francisco, CA 94016" +229913,iPhone,1,700,07/13/19 23:03,"770 7th St, San Francisco, CA 94016" +229914,AAA Batteries (4-pack),3,2.99,07/13/19 12:14,"466 Willow St, Atlanta, GA 30301" +229915,AA Batteries (4-pack),1,3.84,07/02/19 13:26,"514 Johnson St, New York City, NY 10001" +229916,20in Monitor,1,109.99,07/03/19 07:08,"425 Lakeview St, Boston, MA 02215" +229917,Lightning Charging Cable,1,14.95,07/01/19 09:59,"249 West St, San Francisco, CA 94016" +229918,20in Monitor,1,109.99,07/03/19 14:09,"892 Park St, San Francisco, CA 94016" +229919,20in Monitor,1,109.99,07/14/19 12:17,"749 Lakeview St, Seattle, WA 98101" +229920,Flatscreen TV,1,300,07/20/19 22:32,"658 Chestnut St, San Francisco, CA 94016" +229921,Macbook Pro Laptop,1,1700,07/28/19 20:14,"645 Madison St, Boston, MA 02215" +229922,USB-C Charging Cable,1,11.95,07/29/19 14:49,"534 Main St, San Francisco, CA 94016" +229923,AAA Batteries (4-pack),1,2.99,07/14/19 16:04,"551 Elm St, Boston, MA 02215" +229924,27in 4K Gaming Monitor,1,389.99,07/10/19 02:12,"446 12th St, San Francisco, CA 94016" +229925,AAA Batteries (4-pack),2,2.99,07/07/19 13:58,"24 West St, Seattle, WA 98101" +229926,AA Batteries (4-pack),1,3.84,07/12/19 17:11,"766 Ridge St, New York City, NY 10001" +229927,Macbook Pro Laptop,1,1700,07/17/19 20:39,"664 6th St, Los Angeles, CA 90001" +229928,AA Batteries (4-pack),1,3.84,07/25/19 13:30,"794 Main St, San Francisco, CA 94016" +229929,iPhone,1,700,07/31/19 14:39,"696 Adams St, Boston, MA 02215" +229930,Apple Airpods Headphones,1,150,07/16/19 08:37,"569 Lincoln St, San Francisco, CA 94016" +229931,Wired Headphones,1,11.99,07/15/19 21:33,"386 10th St, Los Angeles, CA 90001" +229932,27in FHD Monitor,1,149.99,07/29/19 21:18,"933 Spruce St, San Francisco, CA 94016" +229933,Macbook Pro Laptop,1,1700,07/16/19 22:21,"613 2nd St, Boston, MA 02215" +229934,Lightning Charging Cable,1,14.95,07/26/19 12:27,"893 Elm St, Atlanta, GA 30301" +229935,Lightning Charging Cable,1,14.95,07/22/19 10:11,"477 Adams St, Portland, OR 97035" +229936,Wired Headphones,1,11.99,07/24/19 21:18,"244 Elm St, Los Angeles, CA 90001" +229937,Wired Headphones,1,11.99,07/20/19 22:24,"996 Park St, San Francisco, CA 94016" +229938,27in 4K Gaming Monitor,1,389.99,07/08/19 12:56,"199 Lakeview St, San Francisco, CA 94016" +229939,27in 4K Gaming Monitor,1,389.99,07/15/19 20:12,"195 Main St, Boston, MA 02215" +229940,Bose SoundSport Headphones,1,99.99,07/24/19 10:45,"659 Main St, Seattle, WA 98101" +229941,Bose SoundSport Headphones,1,99.99,07/01/19 17:45,"171 9th St, Los Angeles, CA 90001" +229942,USB-C Charging Cable,1,11.95,07/18/19 11:14,"7 Washington St, Seattle, WA 98101" +229943,Apple Airpods Headphones,1,150,07/07/19 18:42,"920 7th St, San Francisco, CA 94016" +229944,iPhone,1,700,07/13/19 16:52,"926 South St, San Francisco, CA 94016" +229944,Lightning Charging Cable,1,14.95,07/13/19 16:52,"926 South St, San Francisco, CA 94016" +229945,Bose SoundSport Headphones,1,99.99,07/09/19 09:55,"607 Adams St, Atlanta, GA 30301" +229946,USB-C Charging Cable,1,11.95,07/07/19 12:36,"939 Ridge St, San Francisco, CA 94016" +229947,34in Ultrawide Monitor,1,379.99,07/08/19 13:46,"482 10th St, Atlanta, GA 30301" +229948,27in 4K Gaming Monitor,1,389.99,07/09/19 23:34,"500 Spruce St, Seattle, WA 98101" +229949,Wired Headphones,1,11.99,07/18/19 17:52,"58 Highland St, San Francisco, CA 94016" +229950,Lightning Charging Cable,1,14.95,07/14/19 10:45,"604 10th St, San Francisco, CA 94016" +229951,USB-C Charging Cable,1,11.95,07/06/19 11:45,"441 Jefferson St, Seattle, WA 98101" +229952,iPhone,1,700,07/07/19 15:05,"901 Meadow St, Austin, TX 73301" +229952,Lightning Charging Cable,1,14.95,07/07/19 15:05,"901 Meadow St, Austin, TX 73301" +229953,AAA Batteries (4-pack),1,2.99,07/13/19 11:35,"822 Hickory St, San Francisco, CA 94016" +229954,AA Batteries (4-pack),3,3.84,07/27/19 11:11,"402 Park St, Boston, MA 02215" +229955,20in Monitor,1,109.99,07/14/19 22:05,"565 Ridge St, Atlanta, GA 30301" +229956,LG Dryer,1,600.0,07/11/19 20:15,"756 Hickory St, Seattle, WA 98101" +229957,iPhone,1,700,07/21/19 18:59,"21 Hickory St, Dallas, TX 75001" +229958,Apple Airpods Headphones,1,150,07/04/19 09:15,"658 Elm St, Dallas, TX 75001" +229959,iPhone,1,700,07/25/19 15:59,"116 River St, San Francisco, CA 94016" +229959,Lightning Charging Cable,1,14.95,07/25/19 15:59,"116 River St, San Francisco, CA 94016" +229960,AA Batteries (4-pack),1,3.84,07/11/19 07:42,"642 13th St, New York City, NY 10001" +229961,AA Batteries (4-pack),1,3.84,07/17/19 22:38,"874 Sunset St, Dallas, TX 75001" +229962,USB-C Charging Cable,1,11.95,07/21/19 14:06,"840 Maple St, New York City, NY 10001" +229963,Apple Airpods Headphones,1,150,07/22/19 22:36,"969 River St, Atlanta, GA 30301" +229964,20in Monitor,1,109.99,07/26/19 00:22,"436 West St, Austin, TX 73301" +229965,Apple Airpods Headphones,1,150,07/27/19 14:19,"972 Ridge St, New York City, NY 10001" +229966,Wired Headphones,1,11.99,07/07/19 16:42,"890 9th St, San Francisco, CA 94016" +229967,AAA Batteries (4-pack),1,2.99,07/18/19 12:28,"998 Highland St, Los Angeles, CA 90001" +229968,27in FHD Monitor,1,149.99,07/14/19 21:12,"27 Sunset St, Los Angeles, CA 90001" +,,,,, +229969,Lightning Charging Cable,1,14.95,07/15/19 13:50,"51 Maple St, Austin, TX 73301" +229970,Lightning Charging Cable,1,14.95,07/12/19 19:55,"337 5th St, Los Angeles, CA 90001" +229971,iPhone,1,700,07/16/19 19:00,"824 10th St, Boston, MA 02215" +229971,Apple Airpods Headphones,1,150,07/16/19 19:00,"824 10th St, Boston, MA 02215" +229972,USB-C Charging Cable,1,11.95,07/25/19 14:15,"935 Hill St, Atlanta, GA 30301" +229973,AAA Batteries (4-pack),1,2.99,07/20/19 14:16,"490 Center St, Atlanta, GA 30301" +229974,AAA Batteries (4-pack),1,2.99,07/13/19 00:48,"179 Maple St, Atlanta, GA 30301" +229975,USB-C Charging Cable,1,11.95,07/15/19 12:15,"864 Church St, Seattle, WA 98101" +229976,AA Batteries (4-pack),1,3.84,07/13/19 13:01,"758 Maple St, Los Angeles, CA 90001" +229977,USB-C Charging Cable,1,11.95,07/20/19 20:43,"801 Walnut St, Austin, TX 73301" +229978,Bose SoundSport Headphones,1,99.99,07/02/19 18:10,"677 Center St, Los Angeles, CA 90001" +229979,AAA Batteries (4-pack),2,2.99,07/20/19 18:49,"866 5th St, Dallas, TX 75001" +229980,27in FHD Monitor,1,149.99,07/31/19 16:28,"600 5th St, Los Angeles, CA 90001" +229981,Apple Airpods Headphones,1,150,07/14/19 17:44,"577 Jackson St, Dallas, TX 75001" +229982,ThinkPad Laptop,1,999.99,07/28/19 16:31,"611 Lincoln St, Dallas, TX 75001" +229983,Apple Airpods Headphones,1,150,07/20/19 19:36,"16 6th St, Seattle, WA 98101" +229984,20in Monitor,1,109.99,07/25/19 14:27,"452 6th St, San Francisco, CA 94016" +229985,Lightning Charging Cable,1,14.95,07/09/19 22:17,"363 Forest St, Seattle, WA 98101" +229986,20in Monitor,1,109.99,07/14/19 14:01,"565 Highland St, San Francisco, CA 94016" +229987,AA Batteries (4-pack),1,3.84,07/07/19 01:12,"585 Pine St, Austin, TX 73301" +229988,27in 4K Gaming Monitor,1,389.99,07/01/19 23:13,"709 Spruce St, Seattle, WA 98101" +229989,34in Ultrawide Monitor,1,379.99,07/10/19 00:36,"863 Ridge St, Boston, MA 02215" +229990,AAA Batteries (4-pack),1,2.99,07/01/19 09:29,"47 Church St, New York City, NY 10001" +229991,Lightning Charging Cable,1,14.95,07/30/19 19:31,"679 River St, San Francisco, CA 94016" +229992,USB-C Charging Cable,1,11.95,07/17/19 13:03,"132 Cedar St, Seattle, WA 98101" +229993,Wired Headphones,1,11.99,07/12/19 23:30,"360 Center St, Dallas, TX 75001" +229994,Lightning Charging Cable,1,14.95,07/12/19 21:55,"402 Sunset St, Dallas, TX 75001" +229995,Apple Airpods Headphones,1,150,07/29/19 09:47,"99 North St, Seattle, WA 98101" +229996,AAA Batteries (4-pack),1,2.99,07/12/19 13:07,"818 8th St, Atlanta, GA 30301" +229997,Wired Headphones,1,11.99,07/08/19 09:45,"420 Spruce St, San Francisco, CA 94016" +229998,Wired Headphones,1,11.99,07/22/19 16:37,"171 Madison St, San Francisco, CA 94016" +229999,Flatscreen TV,1,300,07/29/19 21:36,"854 Highland St, Portland, ME 04101" +230000,Lightning Charging Cable,1,14.95,07/02/19 16:17,"534 South St, Boston, MA 02215" +230001,iPhone,1,700,07/05/19 12:47,"749 Hickory St, Boston, MA 02215" +230002,Apple Airpods Headphones,1,150,07/22/19 18:19,"644 Spruce St, San Francisco, CA 94016" +230003,AA Batteries (4-pack),3,3.84,07/15/19 18:23,"262 Chestnut St, San Francisco, CA 94016" +230004,27in 4K Gaming Monitor,1,389.99,07/30/19 08:34,"769 Lincoln St, San Francisco, CA 94016" +230005,Wired Headphones,1,11.99,07/03/19 16:57,"757 Park St, San Francisco, CA 94016" +230006,iPhone,1,700,07/06/19 18:33,"251 Johnson St, San Francisco, CA 94016" +230007,Wired Headphones,3,11.99,07/22/19 08:32,"350 Walnut St, Los Angeles, CA 90001" +230008,Bose SoundSport Headphones,1,99.99,07/25/19 09:45,"360 Lakeview St, Portland, OR 97035" +230009,iPhone,1,700,07/13/19 00:44,"74 Church St, San Francisco, CA 94016" +230009,Lightning Charging Cable,1,14.95,07/13/19 00:44,"74 Church St, San Francisco, CA 94016" +230010,AAA Batteries (4-pack),2,2.99,07/03/19 20:50,"667 Walnut St, Dallas, TX 75001" +,,,,, +230011,ThinkPad Laptop,1,999.99,07/20/19 23:09,"569 10th St, Portland, ME 04101" +230012,AAA Batteries (4-pack),1,2.99,07/31/19 19:08,"705 8th St, Los Angeles, CA 90001" +230013,Macbook Pro Laptop,1,1700,07/26/19 04:26,"331 Chestnut St, San Francisco, CA 94016" +230014,AA Batteries (4-pack),1,3.84,07/11/19 01:52,"997 Sunset St, San Francisco, CA 94016" +230015,AAA Batteries (4-pack),1,2.99,07/03/19 21:27,"485 11th St, San Francisco, CA 94016" +230016,AA Batteries (4-pack),1,3.84,07/19/19 10:25,"204 Ridge St, Los Angeles, CA 90001" +230017,USB-C Charging Cable,1,11.95,07/07/19 10:50,"571 Center St, Los Angeles, CA 90001" +230018,Lightning Charging Cable,1,14.95,07/11/19 16:37,"518 River St, Dallas, TX 75001" +230019,Bose SoundSport Headphones,2,99.99,07/31/19 13:26,"343 Pine St, Los Angeles, CA 90001" +230020,Bose SoundSport Headphones,1,99.99,07/08/19 13:59,"718 2nd St, Boston, MA 02215" +230021,Bose SoundSport Headphones,1,99.99,07/19/19 17:10,"691 Hickory St, Portland, ME 04101" +230021,Macbook Pro Laptop,1,1700,07/19/19 17:10,"691 Hickory St, Portland, ME 04101" +230022,AAA Batteries (4-pack),1,2.99,07/13/19 18:55,"901 7th St, Los Angeles, CA 90001" +230023,Lightning Charging Cable,1,14.95,07/01/19 13:16,"295 Highland St, Dallas, TX 75001" +230024,Google Phone,1,600,07/12/19 12:00,"755 Washington St, Austin, TX 73301" +230025,AAA Batteries (4-pack),1,2.99,07/02/19 21:00,"866 7th St, Los Angeles, CA 90001" +230026,Apple Airpods Headphones,1,150,07/18/19 22:48,"472 Meadow St, Los Angeles, CA 90001" +230027,AAA Batteries (4-pack),3,2.99,07/07/19 09:18,"539 2nd St, San Francisco, CA 94016" +230027,Macbook Pro Laptop,1,1700,07/07/19 09:18,"539 2nd St, San Francisco, CA 94016" +230028,AA Batteries (4-pack),1,3.84,07/28/19 17:05,"784 Park St, Dallas, TX 75001" +230029,AA Batteries (4-pack),1,3.84,07/27/19 12:52,"262 Lincoln St, Los Angeles, CA 90001" +230030,Flatscreen TV,1,300,07/23/19 09:37,"627 14th St, Atlanta, GA 30301" +230031,Wired Headphones,1,11.99,07/14/19 17:57,"421 Lincoln St, New York City, NY 10001" +230031,Apple Airpods Headphones,1,150,07/14/19 17:57,"421 Lincoln St, New York City, NY 10001" +230032,Apple Airpods Headphones,1,150,07/29/19 01:01,"126 Ridge St, Boston, MA 02215" +230033,Apple Airpods Headphones,1,150,07/08/19 13:47,"732 Wilson St, Los Angeles, CA 90001" +230034,Apple Airpods Headphones,1,150,07/24/19 22:11,"306 2nd St, Portland, OR 97035" +230035,USB-C Charging Cable,1,11.95,07/18/19 07:49,"566 12th St, Portland, OR 97035" +230036,AA Batteries (4-pack),1,3.84,07/05/19 17:51,"594 Hill St, Boston, MA 02215" +230037,Wired Headphones,1,11.99,07/04/19 12:54,"750 Jefferson St, Dallas, TX 75001" +230038,34in Ultrawide Monitor,1,379.99,07/20/19 14:48,"545 14th St, Dallas, TX 75001" +230039,USB-C Charging Cable,1,11.95,07/06/19 23:22,"910 12th St, Boston, MA 02215" +230040,USB-C Charging Cable,1,11.95,07/14/19 16:42,"717 4th St, Seattle, WA 98101" +230041,AAA Batteries (4-pack),1,2.99,07/23/19 19:12,"733 Lake St, Austin, TX 73301" +230042,Wired Headphones,1,11.99,07/17/19 09:34,"334 Adams St, Los Angeles, CA 90001" +230043,Flatscreen TV,1,300,07/30/19 18:05,"617 Maple St, Los Angeles, CA 90001" +230044,Bose SoundSport Headphones,1,99.99,07/08/19 12:15,"999 10th St, Austin, TX 73301" +230045,AAA Batteries (4-pack),1,2.99,07/11/19 20:55,"158 Adams St, San Francisco, CA 94016" +230046,Flatscreen TV,1,300,07/21/19 10:47,"805 Pine St, San Francisco, CA 94016" +230047,Wired Headphones,1,11.99,07/31/19 17:32,"262 Cherry St, Boston, MA 02215" +230048,Google Phone,1,600,07/01/19 13:40,"142 Jackson St, Boston, MA 02215" +230049,Bose SoundSport Headphones,1,99.99,07/29/19 16:25,"689 Lake St, Austin, TX 73301" +230050,Apple Airpods Headphones,1,150,07/05/19 15:53,"292 Elm St, Los Angeles, CA 90001" +230051,Bose SoundSport Headphones,1,99.99,07/16/19 02:59,"177 Main St, Boston, MA 02215" +230052,AAA Batteries (4-pack),1,2.99,07/25/19 12:15,"507 Willow St, New York City, NY 10001" +230053,Wired Headphones,1,11.99,07/10/19 15:04,"549 Jackson St, Boston, MA 02215" +230054,USB-C Charging Cable,1,11.95,07/21/19 22:04,"961 Lakeview St, New York City, NY 10001" +230055,AAA Batteries (4-pack),3,2.99,07/17/19 10:48,"38 Ridge St, Los Angeles, CA 90001" +230056,Lightning Charging Cable,1,14.95,07/22/19 12:55,"146 Pine St, San Francisco, CA 94016" +230057,Wired Headphones,1,11.99,07/09/19 12:46,"404 Pine St, Seattle, WA 98101" +230058,34in Ultrawide Monitor,1,379.99,07/21/19 09:09,"81 5th St, Los Angeles, CA 90001" +230059,AAA Batteries (4-pack),2,2.99,07/21/19 13:46,"698 Lake St, San Francisco, CA 94016" +230060,AAA Batteries (4-pack),1,2.99,07/23/19 04:10,"228 Cedar St, San Francisco, CA 94016" +230061,Lightning Charging Cable,1,14.95,07/19/19 18:47,"678 Pine St, Seattle, WA 98101" +230062,Wired Headphones,1,11.99,07/12/19 14:41,"458 Highland St, Los Angeles, CA 90001" +230063,Google Phone,1,600,07/04/19 18:41,"49 4th St, San Francisco, CA 94016" +230064,Apple Airpods Headphones,1,150,07/19/19 15:47,"695 Ridge St, New York City, NY 10001" +230065,Apple Airpods Headphones,1,150,07/13/19 02:14,"435 Lake St, Atlanta, GA 30301" +230066,Bose SoundSport Headphones,1,99.99,07/20/19 11:29,"311 8th St, Atlanta, GA 30301" +230067,Apple Airpods Headphones,1,150,07/11/19 14:39,"285 Sunset St, Seattle, WA 98101" +230068,27in 4K Gaming Monitor,1,389.99,07/05/19 09:57,"693 Johnson St, New York City, NY 10001" +230069,Lightning Charging Cable,1,14.95,07/21/19 20:18,"784 Ridge St, Dallas, TX 75001" +230070,AA Batteries (4-pack),1,3.84,07/11/19 07:20,"788 Church St, Atlanta, GA 30301" +230071,Wired Headphones,1,11.99,07/21/19 09:41,"727 10th St, Seattle, WA 98101" +230072,Wired Headphones,1,11.99,07/25/19 19:38,"675 Jefferson St, San Francisco, CA 94016" +230073,AA Batteries (4-pack),1,3.84,07/29/19 22:15,"811 Dogwood St, Los Angeles, CA 90001" +230074,Wired Headphones,2,11.99,07/01/19 18:31,"977 West St, Boston, MA 02215" +230075,Lightning Charging Cable,1,14.95,07/25/19 10:08,"615 Lake St, Los Angeles, CA 90001" +230076,Bose SoundSport Headphones,1,99.99,07/06/19 00:35,"793 Lake St, Atlanta, GA 30301" +230077,AAA Batteries (4-pack),2,2.99,07/04/19 13:46,"319 Pine St, New York City, NY 10001" +230078,Google Phone,1,600,07/26/19 14:46,"494 6th St, Atlanta, GA 30301" +230079,Lightning Charging Cable,1,14.95,07/31/19 14:57,"324 12th St, San Francisco, CA 94016" +230080,AAA Batteries (4-pack),1,2.99,07/22/19 00:35,"61 Washington St, San Francisco, CA 94016" +230081,27in FHD Monitor,1,149.99,07/16/19 07:36,"160 Highland St, San Francisco, CA 94016" +230082,Macbook Pro Laptop,1,1700,07/12/19 23:25,"335 1st St, San Francisco, CA 94016" +230083,27in 4K Gaming Monitor,1,389.99,07/21/19 15:31,"774 Hickory St, Boston, MA 02215" +230084,Flatscreen TV,1,300,07/25/19 21:53,"208 Maple St, Los Angeles, CA 90001" +230085,ThinkPad Laptop,1,999.99,07/04/19 08:59,"81 11th St, Seattle, WA 98101" +230086,Apple Airpods Headphones,1,150,07/25/19 07:02,"287 Meadow St, Austin, TX 73301" +230087,27in 4K Gaming Monitor,1,389.99,07/31/19 21:04,"145 Lincoln St, Los Angeles, CA 90001" +230088,USB-C Charging Cable,1,11.95,07/14/19 19:15,"528 Ridge St, Boston, MA 02215" +230089,USB-C Charging Cable,1,11.95,07/20/19 23:17,"919 Highland St, Dallas, TX 75001" +230090,Google Phone,1,600,07/22/19 20:53,"382 6th St, Atlanta, GA 30301" +230091,Apple Airpods Headphones,1,150,07/20/19 14:31,"732 Cedar St, Boston, MA 02215" +230092,Bose SoundSport Headphones,1,99.99,07/14/19 09:01,"180 Sunset St, Los Angeles, CA 90001" +230093,Wired Headphones,1,11.99,07/13/19 16:19,"414 8th St, New York City, NY 10001" +230094,Google Phone,1,600,07/19/19 15:35,"352 Park St, Seattle, WA 98101" +230095,Bose SoundSport Headphones,1,99.99,07/17/19 18:16,"439 Park St, Portland, OR 97035" +230096,Wired Headphones,1,11.99,07/11/19 14:56,"655 South St, Seattle, WA 98101" +230097,Wired Headphones,1,11.99,07/13/19 17:07,"272 Main St, Boston, MA 02215" +230098,AA Batteries (4-pack),1,3.84,07/29/19 23:07,"779 Lake St, Los Angeles, CA 90001" +230099,20in Monitor,1,109.99,07/27/19 19:55,"611 11th St, Los Angeles, CA 90001" +230100,Bose SoundSport Headphones,1,99.99,07/14/19 09:33,"728 8th St, Seattle, WA 98101" +230101,Lightning Charging Cable,1,14.95,07/07/19 19:42,"211 Lakeview St, Boston, MA 02215" +230102,Bose SoundSport Headphones,1,99.99,07/23/19 10:29,"912 Highland St, Boston, MA 02215" +230103,27in FHD Monitor,1,149.99,07/16/19 12:19,"24 1st St, Seattle, WA 98101" +230104,Bose SoundSport Headphones,1,99.99,07/14/19 19:50,"316 Walnut St, San Francisco, CA 94016" +230105,Bose SoundSport Headphones,1,99.99,07/10/19 16:57,"862 11th St, Los Angeles, CA 90001" +230106,Flatscreen TV,1,300,07/04/19 21:43,"357 Dogwood St, Boston, MA 02215" +230107,USB-C Charging Cable,1,11.95,07/04/19 17:17,"112 West St, Boston, MA 02215" +230108,iPhone,1,700,07/17/19 20:10,"307 Cedar St, Portland, ME 04101" +230109,AAA Batteries (4-pack),1,2.99,07/25/19 02:12,"391 Forest St, San Francisco, CA 94016" +230110,AA Batteries (4-pack),1,3.84,07/27/19 22:46,"824 West St, Boston, MA 02215" +230111,USB-C Charging Cable,1,11.95,07/28/19 22:00,"338 Jefferson St, Atlanta, GA 30301" +230112,AA Batteries (4-pack),2,3.84,07/29/19 18:28,"113 Johnson St, Seattle, WA 98101" +230113,Bose SoundSport Headphones,1,99.99,07/12/19 10:19,"332 Chestnut St, Dallas, TX 75001" +230114,Lightning Charging Cable,1,14.95,07/30/19 10:16,"738 11th St, Los Angeles, CA 90001" +230115,AAA Batteries (4-pack),1,2.99,07/30/19 19:54,"646 Lake St, Los Angeles, CA 90001" +230116,AAA Batteries (4-pack),1,2.99,07/14/19 18:36,"68 Elm St, Atlanta, GA 30301" +230117,Macbook Pro Laptop,1,1700,07/29/19 14:37,"863 Jefferson St, San Francisco, CA 94016" +230118,Lightning Charging Cable,1,14.95,07/17/19 15:31,"904 Lakeview St, San Francisco, CA 94016" +230119,Lightning Charging Cable,1,14.95,07/13/19 17:25,"870 South St, San Francisco, CA 94016" +230120,AAA Batteries (4-pack),1,2.99,07/19/19 19:00,"991 Johnson St, New York City, NY 10001" +230121,Bose SoundSport Headphones,1,99.99,07/22/19 16:32,"314 14th St, San Francisco, CA 94016" +230122,Wired Headphones,1,11.99,07/11/19 16:30,"839 Lake St, Boston, MA 02215" +230123,AAA Batteries (4-pack),1,2.99,07/15/19 14:38,"373 Church St, Dallas, TX 75001" +230124,Lightning Charging Cable,1,14.95,07/17/19 11:59,"380 Park St, Portland, OR 97035" +230125,Apple Airpods Headphones,1,150,07/31/19 10:49,"624 North St, San Francisco, CA 94016" +230126,USB-C Charging Cable,2,11.95,07/21/19 19:22,"439 7th St, Atlanta, GA 30301" +230127,AAA Batteries (4-pack),1,2.99,07/02/19 10:43,"136 12th St, San Francisco, CA 94016" +230128,Lightning Charging Cable,1,14.95,07/03/19 17:18,"522 Meadow St, Atlanta, GA 30301" +230129,Wired Headphones,1,11.99,07/19/19 11:21,"45 13th St, Los Angeles, CA 90001" +230130,Apple Airpods Headphones,1,150,07/26/19 16:51,"830 1st St, Boston, MA 02215" +230131,27in FHD Monitor,1,149.99,07/05/19 00:05,"698 Chestnut St, Los Angeles, CA 90001" +230132,27in FHD Monitor,1,149.99,07/12/19 22:29,"773 River St, San Francisco, CA 94016" +230133,27in 4K Gaming Monitor,1,389.99,07/23/19 16:37,"939 Adams St, San Francisco, CA 94016" +230134,AA Batteries (4-pack),1,3.84,07/17/19 11:24,"399 West St, Los Angeles, CA 90001" +230135,Vareebadd Phone,1,400,07/02/19 14:50,"48 6th St, Los Angeles, CA 90001" +230135,Bose SoundSport Headphones,1,99.99,07/02/19 14:50,"48 6th St, Los Angeles, CA 90001" +230136,AA Batteries (4-pack),1,3.84,07/26/19 15:49,"856 Cedar St, San Francisco, CA 94016" +230137,iPhone,1,700,07/29/19 17:01,"668 10th St, San Francisco, CA 94016" +230138,34in Ultrawide Monitor,1,379.99,07/16/19 16:14,"19 Center St, Los Angeles, CA 90001" +230139,Wired Headphones,1,11.99,07/30/19 22:03,"727 Highland St, Los Angeles, CA 90001" +230140,ThinkPad Laptop,1,999.99,07/22/19 11:50,"660 Park St, Portland, OR 97035" +230141,USB-C Charging Cable,1,11.95,07/06/19 10:57,"75 West St, Dallas, TX 75001" +230142,AA Batteries (4-pack),2,3.84,07/26/19 16:31,"158 Madison St, San Francisco, CA 94016" +230143,Bose SoundSport Headphones,1,99.99,07/23/19 18:11,"111 Sunset St, San Francisco, CA 94016" +230144,20in Monitor,1,109.99,07/14/19 09:35,"4 Sunset St, Boston, MA 02215" +230145,Apple Airpods Headphones,1,150,07/14/19 22:11,"685 Adams St, New York City, NY 10001" +230146,Wired Headphones,1,11.99,07/30/19 20:56,"845 10th St, San Francisco, CA 94016" +230147,Bose SoundSport Headphones,1,99.99,07/14/19 12:09,"453 13th St, San Francisco, CA 94016" +230148,Bose SoundSport Headphones,1,99.99,07/04/19 12:47,"160 Adams St, Seattle, WA 98101" +230149,ThinkPad Laptop,1,999.99,07/22/19 11:02,"641 12th St, San Francisco, CA 94016" +230150,Lightning Charging Cable,1,14.95,07/24/19 17:23,"567 Hickory St, New York City, NY 10001" +230151,34in Ultrawide Monitor,1,379.99,07/14/19 21:22,"451 Main St, San Francisco, CA 94016" +230151,AAA Batteries (4-pack),1,2.99,07/14/19 21:22,"451 Main St, San Francisco, CA 94016" +230152,34in Ultrawide Monitor,1,379.99,07/05/19 15:14,"944 12th St, San Francisco, CA 94016" +230153,27in 4K Gaming Monitor,1,389.99,07/02/19 16:39,"691 Lincoln St, Portland, ME 04101" +230154,Bose SoundSport Headphones,1,99.99,07/10/19 14:21,"992 North St, San Francisco, CA 94016" +230155,34in Ultrawide Monitor,1,379.99,07/06/19 20:54,"605 Sunset St, Seattle, WA 98101" +230156,iPhone,1,700,07/17/19 09:37,"898 Lake St, New York City, NY 10001" +230157,USB-C Charging Cable,1,11.95,07/27/19 13:26,"144 Madison St, Portland, OR 97035" +230158,USB-C Charging Cable,1,11.95,07/28/19 18:54,"480 South St, San Francisco, CA 94016" +230159,Lightning Charging Cable,1,14.95,07/06/19 11:42,"421 1st St, Seattle, WA 98101" +230160,Apple Airpods Headphones,1,150,07/01/19 23:18,"954 Elm St, San Francisco, CA 94016" +230161,Wired Headphones,1,11.99,07/24/19 13:33,"992 8th St, Atlanta, GA 30301" +230162,Lightning Charging Cable,1,14.95,07/10/19 19:17,"309 13th St, Atlanta, GA 30301" +230163,27in FHD Monitor,1,149.99,07/24/19 20:23,"33 Lincoln St, San Francisco, CA 94016" +230164,Bose SoundSport Headphones,1,99.99,07/18/19 21:42,"653 2nd St, San Francisco, CA 94016" +230165,USB-C Charging Cable,1,11.95,07/09/19 22:58,"268 7th St, Boston, MA 02215" +230166,AAA Batteries (4-pack),2,2.99,07/21/19 13:06,"472 Church St, New York City, NY 10001" +230167,iPhone,1,700,07/01/19 10:58,"294 Church St, New York City, NY 10001" +230168,Apple Airpods Headphones,1,150,07/23/19 14:57,"470 4th St, Portland, OR 97035" +230169,Wired Headphones,2,11.99,07/18/19 18:16,"213 Lakeview St, San Francisco, CA 94016" +230170,Bose SoundSport Headphones,2,99.99,07/10/19 11:57,"775 Hickory St, Atlanta, GA 30301" +230171,27in 4K Gaming Monitor,1,389.99,07/13/19 15:51,"550 4th St, New York City, NY 10001" +230172,AAA Batteries (4-pack),1,2.99,07/29/19 19:10,"668 River St, Dallas, TX 75001" +230173,Lightning Charging Cable,1,14.95,07/25/19 13:55,"595 Jefferson St, Atlanta, GA 30301" +230174,Lightning Charging Cable,1,14.95,07/23/19 23:52,"783 Cherry St, New York City, NY 10001" +230175,LG Washing Machine,1,600.0,07/30/19 13:32,"456 Chestnut St, New York City, NY 10001" +230176,Google Phone,1,600,07/04/19 15:59,"398 Lincoln St, Dallas, TX 75001" +230177,Google Phone,1,600,07/21/19 08:38,"572 Sunset St, Atlanta, GA 30301" +230177,34in Ultrawide Monitor,1,379.99,07/21/19 08:38,"572 Sunset St, Atlanta, GA 30301" +230178,USB-C Charging Cable,1,11.95,07/16/19 16:40,"81 Madison St, Atlanta, GA 30301" +230179,Wired Headphones,1,11.99,07/04/19 22:40,"875 Willow St, San Francisco, CA 94016" +230180,USB-C Charging Cable,1,11.95,07/19/19 22:31,"603 10th St, Seattle, WA 98101" +230181,Wired Headphones,1,11.99,07/25/19 01:06,"867 Johnson St, Austin, TX 73301" +230182,AAA Batteries (4-pack),2,2.99,07/23/19 19:52,"792 Washington St, San Francisco, CA 94016" +230183,iPhone,1,700,07/20/19 12:43,"856 Hickory St, San Francisco, CA 94016" +230183,Apple Airpods Headphones,1,150,07/20/19 12:43,"856 Hickory St, San Francisco, CA 94016" +230184,Apple Airpods Headphones,1,150,07/08/19 10:49,"637 5th St, Portland, OR 97035" +230185,Apple Airpods Headphones,1,150,07/07/19 12:08,"762 Lakeview St, Seattle, WA 98101" +230186,ThinkPad Laptop,1,999.99,07/03/19 08:43,"296 10th St, Austin, TX 73301" +230187,AAA Batteries (4-pack),3,2.99,07/07/19 22:07,"361 Chestnut St, New York City, NY 10001" +230188,USB-C Charging Cable,1,11.95,07/25/19 21:01,"775 Lake St, Boston, MA 02215" +230189,Lightning Charging Cable,1,14.95,07/10/19 23:48,"420 River St, Los Angeles, CA 90001" +230190,AAA Batteries (4-pack),1,2.99,07/26/19 17:17,"130 10th St, New York City, NY 10001" +230191,USB-C Charging Cable,1,11.95,07/29/19 22:57,"287 Madison St, Boston, MA 02215" +230192,34in Ultrawide Monitor,1,379.99,07/01/19 19:10,"977 Park St, Boston, MA 02215" +230193,AAA Batteries (4-pack),1,2.99,07/31/19 01:49,"165 9th St, New York City, NY 10001" +230194,Macbook Pro Laptop,1,1700,07/27/19 14:58,"473 8th St, Atlanta, GA 30301" +230195,Apple Airpods Headphones,1,150,07/25/19 11:17,"168 Pine St, Atlanta, GA 30301" +230196,ThinkPad Laptop,1,999.99,07/18/19 19:32,"252 7th St, San Francisco, CA 94016" +230197,AAA Batteries (4-pack),1,2.99,07/02/19 09:07,"266 6th St, Los Angeles, CA 90001" +230198,Lightning Charging Cable,1,14.95,07/27/19 14:38,"165 Cherry St, Dallas, TX 75001" +230199,AAA Batteries (4-pack),1,2.99,07/11/19 16:13,"85 Hill St, San Francisco, CA 94016" +230200,27in FHD Monitor,1,149.99,07/22/19 16:40,"45 8th St, Boston, MA 02215" +230201,Apple Airpods Headphones,1,150,07/12/19 22:35,"822 Pine St, Atlanta, GA 30301" +230202,27in FHD Monitor,1,149.99,07/30/19 21:54,"534 Johnson St, Los Angeles, CA 90001" +230203,Apple Airpods Headphones,1,150,07/25/19 19:25,"120 11th St, Los Angeles, CA 90001" +230204,27in FHD Monitor,1,149.99,07/28/19 07:18,"233 Pine St, Portland, OR 97035" +230205,Macbook Pro Laptop,1,1700,07/27/19 21:55,"114 Willow St, Austin, TX 73301" +230206,27in FHD Monitor,1,149.99,07/04/19 17:27,"933 Cedar St, Boston, MA 02215" +230207,Google Phone,1,600,07/15/19 05:01,"709 Hill St, Portland, ME 04101" +230208,USB-C Charging Cable,1,11.95,07/01/19 14:11,"90 11th St, San Francisco, CA 94016" +230209,USB-C Charging Cable,2,11.95,07/10/19 18:51,"481 West St, San Francisco, CA 94016" +230210,27in FHD Monitor,1,149.99,07/09/19 19:16,"124 Walnut St, San Francisco, CA 94016" +230211,27in FHD Monitor,1,149.99,07/17/19 17:46,"950 Cedar St, San Francisco, CA 94016" +230212,Google Phone,1,600,07/05/19 11:13,"642 River St, New York City, NY 10001" +230213,AA Batteries (4-pack),1,3.84,07/07/19 12:08,"987 6th St, New York City, NY 10001" +230214,Lightning Charging Cable,1,14.95,07/07/19 09:36,"674 Cherry St, Atlanta, GA 30301" +230215,USB-C Charging Cable,2,11.95,07/20/19 20:05,"477 Sunset St, New York City, NY 10001" +230216,AAA Batteries (4-pack),1,2.99,07/30/19 22:40,"548 Main St, Portland, OR 97035" +230217,ThinkPad Laptop,1,999.99,07/21/19 16:35,"628 Main St, New York City, NY 10001" +230218,iPhone,1,700,07/26/19 12:23,"382 Washington St, San Francisco, CA 94016" +230219,Macbook Pro Laptop,1,1700,07/30/19 19:53,"689 Elm St, New York City, NY 10001" +230220,Macbook Pro Laptop,1,1700,07/31/19 17:03,"401 8th St, San Francisco, CA 94016" +230221,Lightning Charging Cable,1,14.95,07/17/19 09:13,"909 Sunset St, New York City, NY 10001" +230222,Flatscreen TV,1,300,07/17/19 16:40,"419 Walnut St, New York City, NY 10001" +230223,Wired Headphones,1,11.99,07/02/19 19:00,"110 6th St, San Francisco, CA 94016" +230224,Macbook Pro Laptop,1,1700,07/10/19 23:19,"409 Madison St, San Francisco, CA 94016" +230225,AAA Batteries (4-pack),1,2.99,07/07/19 17:25,"800 8th St, Boston, MA 02215" +230226,Apple Airpods Headphones,1,150,07/10/19 22:44,"431 5th St, Seattle, WA 98101" +230227,Apple Airpods Headphones,1,150,07/15/19 17:57,"138 4th St, New York City, NY 10001" +230228,Wired Headphones,1,11.99,07/13/19 21:40,"674 River St, Boston, MA 02215" +230229,ThinkPad Laptop,1,999.99,07/12/19 22:28,"306 Chestnut St, Los Angeles, CA 90001" +230230,Lightning Charging Cable,1,14.95,07/25/19 14:10,"373 Church St, San Francisco, CA 94016" +230231,AA Batteries (4-pack),1,3.84,07/10/19 18:36,"23 North St, Atlanta, GA 30301" +230232,Google Phone,1,600,07/09/19 19:56,"528 Church St, Dallas, TX 75001" +230233,Bose SoundSport Headphones,1,99.99,07/01/19 23:02,"76 Hill St, Portland, OR 97035" +230234,27in FHD Monitor,1,149.99,07/10/19 11:24,"817 Pine St, Boston, MA 02215" +230235,Lightning Charging Cable,1,14.95,07/27/19 11:56,"948 Jefferson St, San Francisco, CA 94016" +230236,Wired Headphones,1,11.99,07/01/19 12:01,"784 Pine St, Atlanta, GA 30301" +230237,USB-C Charging Cable,1,11.95,07/06/19 06:04,"684 Adams St, San Francisco, CA 94016" +230238,Bose SoundSport Headphones,1,99.99,07/23/19 11:26,"83 Ridge St, Los Angeles, CA 90001" +230239,AA Batteries (4-pack),1,3.84,07/05/19 07:54,"664 4th St, Boston, MA 02215" +230240,Wired Headphones,1,11.99,07/05/19 19:24,"913 Lincoln St, Dallas, TX 75001" +230241,AAA Batteries (4-pack),1,2.99,07/30/19 18:41,"253 Cherry St, Boston, MA 02215" +230242,27in 4K Gaming Monitor,1,389.99,07/19/19 21:19,"802 Cedar St, Los Angeles, CA 90001" +230243,Apple Airpods Headphones,1,150,07/12/19 17:19,"609 5th St, Los Angeles, CA 90001" +230244,LG Washing Machine,1,600.0,07/03/19 20:22,"467 North St, Seattle, WA 98101" +230245,AA Batteries (4-pack),2,3.84,07/24/19 21:04,"546 12th St, Los Angeles, CA 90001" +230246,AAA Batteries (4-pack),1,2.99,07/05/19 17:20,"620 North St, Dallas, TX 75001" +230247,AA Batteries (4-pack),1,3.84,07/26/19 21:22,"651 Church St, San Francisco, CA 94016" +230248,AAA Batteries (4-pack),2,2.99,07/25/19 16:12,"751 Hill St, Austin, TX 73301" +230249,AA Batteries (4-pack),1,3.84,07/23/19 08:46,"729 Hill St, Dallas, TX 75001" +230250,Wired Headphones,1,11.99,07/21/19 05:45,"254 Elm St, San Francisco, CA 94016" +230251,Apple Airpods Headphones,1,150,07/28/19 18:53,"949 Main St, San Francisco, CA 94016" +230252,AAA Batteries (4-pack),1,2.99,07/14/19 20:20,"224 Wilson St, Austin, TX 73301" +230253,Apple Airpods Headphones,1,150,07/05/19 22:29,"282 Johnson St, Boston, MA 02215" +230254,USB-C Charging Cable,1,11.95,07/28/19 17:53,"286 Dogwood St, Atlanta, GA 30301" +230255,Wired Headphones,1,11.99,07/23/19 16:23,"17 Elm St, San Francisco, CA 94016" +230256,AAA Batteries (4-pack),1,2.99,07/14/19 05:02,"479 Hickory St, Boston, MA 02215" +230257,27in FHD Monitor,1,149.99,07/09/19 12:01,"274 Center St, Austin, TX 73301" +230258,Wired Headphones,1,11.99,07/28/19 22:19,"464 1st St, Dallas, TX 75001" +230259,27in 4K Gaming Monitor,1,389.99,07/02/19 15:40,"883 Madison St, Boston, MA 02215" +230260,USB-C Charging Cable,1,11.95,07/25/19 14:56,"69 North St, San Francisco, CA 94016" +230261,USB-C Charging Cable,1,11.95,07/30/19 18:29,"20 Maple St, Atlanta, GA 30301" +230262,Lightning Charging Cable,1,14.95,07/12/19 22:45,"354 10th St, Seattle, WA 98101" +230263,AA Batteries (4-pack),3,3.84,07/13/19 22:22,"125 Lincoln St, Los Angeles, CA 90001" +230264,34in Ultrawide Monitor,1,379.99,07/30/19 17:08,"679 7th St, Boston, MA 02215" +230265,Bose SoundSport Headphones,1,99.99,07/31/19 16:02,"844 Lake St, Portland, ME 04101" +230266,27in FHD Monitor,1,149.99,07/04/19 20:37,"433 Maple St, San Francisco, CA 94016" +230267,AA Batteries (4-pack),2,3.84,07/06/19 10:44,"320 South St, New York City, NY 10001" +230268,AAA Batteries (4-pack),4,2.99,07/10/19 13:33,"768 River St, San Francisco, CA 94016" +230269,Lightning Charging Cable,1,14.95,07/28/19 13:46,"613 12th St, San Francisco, CA 94016" +230270,27in FHD Monitor,1,149.99,07/23/19 15:40,"960 West St, New York City, NY 10001" +230271,USB-C Charging Cable,1,11.95,07/16/19 20:36,"342 Sunset St, San Francisco, CA 94016" +230272,34in Ultrawide Monitor,1,379.99,07/05/19 00:06,"282 9th St, Seattle, WA 98101" +230273,USB-C Charging Cable,1,11.95,07/14/19 15:17,"196 Lake St, San Francisco, CA 94016" +230274,USB-C Charging Cable,1,11.95,07/27/19 19:01,"834 Johnson St, Portland, ME 04101" +230275,AAA Batteries (4-pack),1,2.99,07/07/19 14:31,"988 Dogwood St, New York City, NY 10001" +230276,27in FHD Monitor,1,149.99,07/07/19 19:20,"592 Spruce St, San Francisco, CA 94016" +230277,AAA Batteries (4-pack),3,2.99,07/17/19 14:26,"14 Jackson St, Atlanta, GA 30301" +230278,Bose SoundSport Headphones,1,99.99,07/18/19 08:54,"339 Forest St, Boston, MA 02215" +230279,Google Phone,1,600,07/11/19 19:25,"519 8th St, Boston, MA 02215" +230280,AAA Batteries (4-pack),1,2.99,07/05/19 12:27,"118 Lake St, Los Angeles, CA 90001" +230281,Lightning Charging Cable,1,14.95,07/24/19 18:56,"113 Wilson St, Dallas, TX 75001" +230282,Macbook Pro Laptop,1,1700,07/13/19 18:42,"805 Park St, San Francisco, CA 94016" +230283,AA Batteries (4-pack),1,3.84,07/08/19 17:26,"568 Willow St, New York City, NY 10001" +230284,34in Ultrawide Monitor,1,379.99,07/21/19 07:44,"748 Park St, Los Angeles, CA 90001" +230285,AA Batteries (4-pack),3,3.84,07/15/19 21:20,"81 14th St, Los Angeles, CA 90001" +230286,Bose SoundSport Headphones,1,99.99,07/20/19 18:29,"811 Lakeview St, San Francisco, CA 94016" +230287,AA Batteries (4-pack),1,3.84,07/22/19 11:17,"614 12th St, New York City, NY 10001" +230288,Bose SoundSport Headphones,1,99.99,07/05/19 22:00,"401 Washington St, San Francisco, CA 94016" +230289,Bose SoundSport Headphones,1,99.99,07/20/19 01:25,"752 Willow St, Austin, TX 73301" +230290,Apple Airpods Headphones,1,150,07/21/19 10:22,"287 Elm St, Los Angeles, CA 90001" +230291,USB-C Charging Cable,1,11.95,07/19/19 02:24,"534 Jackson St, Dallas, TX 75001" +230292,AA Batteries (4-pack),2,3.84,07/14/19 21:02,"928 11th St, San Francisco, CA 94016" +230293,Wired Headphones,2,11.99,07/16/19 22:16,"609 Park St, Los Angeles, CA 90001" +230294,AAA Batteries (4-pack),2,2.99,07/28/19 14:20,"253 Walnut St, San Francisco, CA 94016" +230295,USB-C Charging Cable,1,11.95,07/23/19 19:43,"516 Highland St, Boston, MA 02215" +230296,Wired Headphones,1,11.99,07/07/19 19:59,"785 Ridge St, San Francisco, CA 94016" +230297,20in Monitor,1,109.99,07/06/19 09:43,"168 Park St, San Francisco, CA 94016" +230298,Wired Headphones,1,11.99,07/03/19 09:30,"419 11th St, Boston, MA 02215" +230299,AAA Batteries (4-pack),2,2.99,07/09/19 18:59,"242 Chestnut St, Boston, MA 02215" +230300,USB-C Charging Cable,1,11.95,07/26/19 16:48,"553 Ridge St, New York City, NY 10001" +230301,AAA Batteries (4-pack),2,2.99,07/29/19 09:33,"526 Main St, San Francisco, CA 94016" +230302,Wired Headphones,1,11.99,07/31/19 18:06,"957 Washington St, New York City, NY 10001" +230303,AAA Batteries (4-pack),1,2.99,07/19/19 20:37,"687 Hill St, New York City, NY 10001" +230304,Wired Headphones,1,11.99,07/07/19 07:46,"141 Maple St, Austin, TX 73301" +230305,Apple Airpods Headphones,1,150,07/18/19 09:35,"203 6th St, Dallas, TX 75001" +230306,Google Phone,1,600,07/23/19 12:11,"218 Dogwood St, Seattle, WA 98101" +230307,AA Batteries (4-pack),2,3.84,07/03/19 08:33,"9 Willow St, Los Angeles, CA 90001" +230308,USB-C Charging Cable,1,11.95,07/26/19 10:01,"445 West St, Los Angeles, CA 90001" +230309,Wired Headphones,1,11.99,07/31/19 10:17,"47 Meadow St, Los Angeles, CA 90001" +230310,Bose SoundSport Headphones,1,99.99,07/31/19 18:58,"386 Jackson St, Seattle, WA 98101" +230311,iPhone,1,700,07/22/19 19:36,"520 Highland St, San Francisco, CA 94016" +230312,27in FHD Monitor,1,149.99,07/07/19 21:20,"496 2nd St, Boston, MA 02215" +230313,Wired Headphones,1,11.99,07/16/19 12:21,"132 Park St, San Francisco, CA 94016" +230314,LG Washing Machine,1,600.0,07/05/19 19:37,"828 Center St, New York City, NY 10001" +230315,USB-C Charging Cable,1,11.95,07/12/19 19:45,"39 North St, San Francisco, CA 94016" +230316,Bose SoundSport Headphones,1,99.99,07/16/19 13:21,"697 Chestnut St, San Francisco, CA 94016" +230317,iPhone,1,700,07/13/19 19:08,"472 Church St, Dallas, TX 75001" +230318,Wired Headphones,1,11.99,07/07/19 18:50,"7 Cherry St, Boston, MA 02215" +230319,iPhone,1,700,07/19/19 09:24,"428 Elm St, Portland, OR 97035" +230320,Apple Airpods Headphones,1,150,07/10/19 11:17,"60 8th St, New York City, NY 10001" +230321,Bose SoundSport Headphones,1,99.99,07/27/19 13:59,"828 9th St, Portland, OR 97035" +230322,Lightning Charging Cable,1,14.95,07/16/19 18:15,"884 Center St, New York City, NY 10001" +230323,27in FHD Monitor,1,149.99,07/31/19 13:37,"870 Madison St, San Francisco, CA 94016" +230324,AA Batteries (4-pack),3,3.84,07/27/19 16:24,"491 Spruce St, Dallas, TX 75001" +230325,USB-C Charging Cable,1,11.95,07/20/19 18:35,"171 Johnson St, New York City, NY 10001" +230326,iPhone,1,700,07/07/19 08:15,"537 10th St, Portland, OR 97035" +230327,Lightning Charging Cable,1,14.95,07/01/19 14:09,"416 Madison St, San Francisco, CA 94016" +230328,Lightning Charging Cable,2,14.95,07/17/19 15:02,"582 Center St, New York City, NY 10001" +230328,AAA Batteries (4-pack),2,2.99,07/17/19 15:02,"582 Center St, New York City, NY 10001" +230329,Lightning Charging Cable,1,14.95,07/15/19 19:51,"161 2nd St, San Francisco, CA 94016" +230330,AAA Batteries (4-pack),3,2.99,07/15/19 00:57,"408 2nd St, Seattle, WA 98101" +230331,Wired Headphones,1,11.99,07/06/19 20:09,"334 Adams St, Seattle, WA 98101" +230332,Macbook Pro Laptop,1,1700,07/18/19 19:35,"962 Sunset St, San Francisco, CA 94016" +230333,Bose SoundSport Headphones,1,99.99,07/28/19 16:40,"599 Main St, Atlanta, GA 30301" +230334,AA Batteries (4-pack),2,3.84,07/21/19 15:30,"436 13th St, Los Angeles, CA 90001" +230335,34in Ultrawide Monitor,1,379.99,07/29/19 13:15,"288 Elm St, New York City, NY 10001" +230336,AAA Batteries (4-pack),1,2.99,07/15/19 06:54,"622 Johnson St, Atlanta, GA 30301" +230337,Wired Headphones,1,11.99,07/24/19 09:00,"439 Park St, Atlanta, GA 30301" +230338,Macbook Pro Laptop,1,1700,07/16/19 17:44,"465 Maple St, Austin, TX 73301" +230339,Wired Headphones,1,11.99,07/29/19 19:23,"877 Chestnut St, Dallas, TX 75001" +230340,27in FHD Monitor,1,149.99,07/30/19 13:31,"476 Maple St, Boston, MA 02215" +230341,AA Batteries (4-pack),2,3.84,07/08/19 08:30,"185 Chestnut St, Boston, MA 02215" +230342,USB-C Charging Cable,1,11.95,07/08/19 13:32,"775 Washington St, San Francisco, CA 94016" +230343,AAA Batteries (4-pack),1,2.99,07/30/19 21:18,"162 Dogwood St, Los Angeles, CA 90001" +230344,AA Batteries (4-pack),1,3.84,07/21/19 12:58,"69 Willow St, Los Angeles, CA 90001" +230345,AAA Batteries (4-pack),3,2.99,07/15/19 01:49,"203 Church St, Seattle, WA 98101" +230346,27in FHD Monitor,1,149.99,07/31/19 08:56,"29 11th St, Los Angeles, CA 90001" +230347,AAA Batteries (4-pack),1,2.99,07/06/19 14:01,"53 Madison St, San Francisco, CA 94016" +230348,Lightning Charging Cable,1,14.95,07/10/19 14:56,"779 Jefferson St, Atlanta, GA 30301" +230349,ThinkPad Laptop,1,999.99,07/16/19 22:06,"737 10th St, Boston, MA 02215" +230350,AA Batteries (4-pack),1,3.84,07/04/19 14:58,"129 Sunset St, Los Angeles, CA 90001" +230351,ThinkPad Laptop,1,999.99,07/30/19 12:56,"254 6th St, New York City, NY 10001" +230352,ThinkPad Laptop,1,999.99,07/02/19 09:58,"485 River St, Los Angeles, CA 90001" +230353,Apple Airpods Headphones,1,150,07/10/19 15:48,"564 10th St, San Francisco, CA 94016" +230354,AAA Batteries (4-pack),1,2.99,07/06/19 13:52,"777 Jefferson St, Boston, MA 02215" +230355,AAA Batteries (4-pack),1,2.99,07/05/19 14:21,"94 10th St, Portland, OR 97035" +230356,Wired Headphones,1,11.99,07/28/19 20:00,"886 Cherry St, San Francisco, CA 94016" +230357,USB-C Charging Cable,2,11.95,07/11/19 12:35,"918 Cedar St, Atlanta, GA 30301" +230358,Apple Airpods Headphones,1,150,07/07/19 00:10,"532 Johnson St, New York City, NY 10001" +230359,Apple Airpods Headphones,1,150,07/09/19 13:15,"459 Sunset St, Portland, OR 97035" +230360,Wired Headphones,1,11.99,07/11/19 17:21,"901 8th St, Boston, MA 02215" +230361,20in Monitor,1,109.99,07/20/19 17:11,"139 Ridge St, Dallas, TX 75001" +230362,AAA Batteries (4-pack),2,2.99,07/13/19 09:39,"355 Lakeview St, Los Angeles, CA 90001" +230363,20in Monitor,1,109.99,07/11/19 14:14,"957 Center St, Dallas, TX 75001" +230364,AAA Batteries (4-pack),2,2.99,07/15/19 09:36,"400 1st St, Austin, TX 73301" +230365,Google Phone,1,600,07/03/19 06:08,"969 Lake St, New York City, NY 10001" +230366,USB-C Charging Cable,1,11.95,07/10/19 12:11,"34 5th St, Boston, MA 02215" +230367,Google Phone,1,600,07/02/19 20:39,"491 Park St, Boston, MA 02215" +230367,USB-C Charging Cable,2,11.95,07/02/19 20:39,"491 Park St, Boston, MA 02215" +230368,AAA Batteries (4-pack),1,2.99,07/28/19 17:12,"254 Chestnut St, San Francisco, CA 94016" +230369,Lightning Charging Cable,1,14.95,07/25/19 16:57,"670 Cedar St, Dallas, TX 75001" +230370,AAA Batteries (4-pack),1,2.99,07/02/19 12:48,"955 Spruce St, San Francisco, CA 94016" +230371,Google Phone,1,600,07/10/19 14:37,"332 Johnson St, Boston, MA 02215" +230371,USB-C Charging Cable,1,11.95,07/10/19 14:37,"332 Johnson St, Boston, MA 02215" +230372,27in FHD Monitor,1,149.99,07/10/19 09:42,"617 Ridge St, Los Angeles, CA 90001" +230373,Bose SoundSport Headphones,1,99.99,07/27/19 17:45,"305 Johnson St, Los Angeles, CA 90001" +230374,27in 4K Gaming Monitor,1,389.99,07/30/19 18:33,"459 River St, Los Angeles, CA 90001" +230375,USB-C Charging Cable,1,11.95,07/09/19 17:00,"182 Elm St, Portland, OR 97035" +230376,AA Batteries (4-pack),1,3.84,07/10/19 22:25,"555 South St, Atlanta, GA 30301" +230377,27in FHD Monitor,1,149.99,07/13/19 14:26,"128 Spruce St, Los Angeles, CA 90001" +230378,Wired Headphones,1,11.99,07/31/19 12:54,"765 Maple St, Portland, OR 97035" +230379,AA Batteries (4-pack),4,3.84,07/22/19 09:11,"397 Hill St, Boston, MA 02215" +230380,Apple Airpods Headphones,1,150,07/03/19 19:08,"999 Lake St, Dallas, TX 75001" +230381,AAA Batteries (4-pack),3,2.99,07/14/19 00:10,"191 River St, Dallas, TX 75001" +230382,ThinkPad Laptop,1,999.99,07/22/19 22:24,"708 4th St, Atlanta, GA 30301" +230383,Bose SoundSport Headphones,1,99.99,07/30/19 19:12,"768 Pine St, Boston, MA 02215" +230384,Bose SoundSport Headphones,1,99.99,07/20/19 12:09,"760 Pine St, Seattle, WA 98101" +230385,USB-C Charging Cable,1,11.95,07/03/19 07:44,"440 2nd St, Seattle, WA 98101" +230386,iPhone,1,700,07/08/19 08:44,"282 Chestnut St, San Francisco, CA 94016" +230387,Bose SoundSport Headphones,1,99.99,07/10/19 10:18,"107 2nd St, Boston, MA 02215" +230388,Apple Airpods Headphones,1,150,07/21/19 13:49,"306 Pine St, Portland, OR 97035" +230389,Lightning Charging Cable,1,14.95,07/26/19 01:05,"592 Park St, Boston, MA 02215" +230390,Macbook Pro Laptop,1,1700,07/05/19 11:03,"345 12th St, Boston, MA 02215" +230391,USB-C Charging Cable,1,11.95,07/22/19 15:35,"953 Adams St, San Francisco, CA 94016" +230392,USB-C Charging Cable,1,11.95,07/30/19 23:50,"918 Pine St, New York City, NY 10001" +230393,USB-C Charging Cable,1,11.95,07/09/19 11:30,"193 13th St, Portland, OR 97035" +230394,Wired Headphones,1,11.99,07/27/19 15:00,"961 8th St, Los Angeles, CA 90001" +230395,Lightning Charging Cable,1,14.95,07/02/19 02:25,"653 Lakeview St, Portland, OR 97035" +230396,34in Ultrawide Monitor,1,379.99,07/12/19 19:55,"856 Cedar St, Seattle, WA 98101" +230397,Bose SoundSport Headphones,1,99.99,07/24/19 22:31,"557 Highland St, Atlanta, GA 30301" +230398,USB-C Charging Cable,1,11.95,07/13/19 14:36,"841 9th St, San Francisco, CA 94016" +230399,Lightning Charging Cable,1,14.95,07/29/19 21:35,"201 Pine St, San Francisco, CA 94016" +230400,Apple Airpods Headphones,1,150,07/13/19 19:55,"45 Lakeview St, Austin, TX 73301" +230401,AA Batteries (4-pack),1,3.84,07/20/19 16:34,"111 7th St, San Francisco, CA 94016" +230402,20in Monitor,1,109.99,07/03/19 14:07,"864 North St, San Francisco, CA 94016" +230403,34in Ultrawide Monitor,1,379.99,07/23/19 14:51,"200 14th St, New York City, NY 10001" +230404,Macbook Pro Laptop,1,1700,07/01/19 20:21,"415 West St, Portland, ME 04101" +230405,Wired Headphones,1,11.99,07/27/19 22:05,"237 Hickory St, Austin, TX 73301" +230406,Flatscreen TV,1,300,07/01/19 22:53,"322 Maple St, San Francisco, CA 94016" +230407,27in 4K Gaming Monitor,1,389.99,07/29/19 19:09,"438 5th St, San Francisco, CA 94016" +230408,Bose SoundSport Headphones,1,99.99,07/18/19 11:29,"557 Elm St, San Francisco, CA 94016" +230409,27in FHD Monitor,1,149.99,07/15/19 13:51,"528 Walnut St, Seattle, WA 98101" +230410,USB-C Charging Cable,1,11.95,07/26/19 12:36,"524 Park St, Boston, MA 02215" +230411,Lightning Charging Cable,1,14.95,07/28/19 17:06,"916 Madison St, San Francisco, CA 94016" +230412,Bose SoundSport Headphones,1,99.99,07/27/19 10:17,"28 Main St, Seattle, WA 98101" +230413,Lightning Charging Cable,2,14.95,07/24/19 08:54,"762 9th St, New York City, NY 10001" +230414,Apple Airpods Headphones,1,150,07/09/19 08:52,"716 Hickory St, Atlanta, GA 30301" +230415,Lightning Charging Cable,1,14.95,07/22/19 21:18,"635 Willow St, Boston, MA 02215" +230416,AAA Batteries (4-pack),1,2.99,07/16/19 20:39,"434 Lakeview St, Los Angeles, CA 90001" +230417,27in 4K Gaming Monitor,1,389.99,07/10/19 21:20,"323 Pine St, San Francisco, CA 94016" +230418,27in FHD Monitor,1,149.99,07/20/19 15:06,"609 Park St, Boston, MA 02215" +230419,Lightning Charging Cable,1,14.95,07/04/19 10:49,"899 Jefferson St, Boston, MA 02215" +230420,Lightning Charging Cable,1,14.95,07/21/19 19:09,"647 Jackson St, New York City, NY 10001" +230421,Apple Airpods Headphones,1,150,07/17/19 17:14,"606 12th St, Dallas, TX 75001" +230422,Bose SoundSport Headphones,1,99.99,07/25/19 09:36,"321 7th St, Los Angeles, CA 90001" +230423,AAA Batteries (4-pack),1,2.99,07/05/19 10:59,"812 Lake St, Dallas, TX 75001" +230424,LG Washing Machine,1,600.0,07/29/19 12:05,"668 8th St, San Francisco, CA 94016" +230425,Wired Headphones,1,11.99,07/30/19 11:58,"898 9th St, Austin, TX 73301" +230426,AAA Batteries (4-pack),1,2.99,07/28/19 20:35,"485 1st St, Los Angeles, CA 90001" +230427,AA Batteries (4-pack),4,3.84,07/04/19 20:27,"674 Willow St, Los Angeles, CA 90001" +230428,USB-C Charging Cable,1,11.95,07/19/19 20:08,"993 5th St, Seattle, WA 98101" +230429,USB-C Charging Cable,1,11.95,07/25/19 10:45,"583 Madison St, New York City, NY 10001" +230430,Apple Airpods Headphones,1,150,07/07/19 09:41,"163 Madison St, Boston, MA 02215" +230431,Google Phone,1,600,07/11/19 11:21,"259 Church St, New York City, NY 10001" +230432,Google Phone,1,600,07/25/19 18:12,"372 North St, Atlanta, GA 30301" +230433,Wired Headphones,1,11.99,07/17/19 11:24,"555 Dogwood St, Atlanta, GA 30301" +230434,Lightning Charging Cable,1,14.95,07/09/19 11:55,"332 Center St, San Francisco, CA 94016" +230435,Bose SoundSport Headphones,1,99.99,07/08/19 05:43,"152 North St, New York City, NY 10001" +230436,Wired Headphones,1,11.99,07/18/19 17:10,"723 Hickory St, Portland, OR 97035" +230437,AA Batteries (4-pack),1,3.84,07/13/19 11:20,"789 Highland St, New York City, NY 10001" +230438,USB-C Charging Cable,1,11.95,07/08/19 00:04,"56 Willow St, Seattle, WA 98101" +230439,27in FHD Monitor,1,149.99,07/23/19 00:14,"359 Ridge St, Los Angeles, CA 90001" +230440,Wired Headphones,1,11.99,07/31/19 18:18,"956 11th St, San Francisco, CA 94016" +230441,27in FHD Monitor,1,149.99,07/16/19 14:13,"179 13th St, Seattle, WA 98101" +230442,Flatscreen TV,1,300,07/26/19 11:46,"883 River St, Austin, TX 73301" +230443,USB-C Charging Cable,1,11.95,07/01/19 17:47,"726 River St, Portland, OR 97035" +230444,USB-C Charging Cable,1,11.95,07/29/19 17:57,"909 11th St, San Francisco, CA 94016" +230445,Lightning Charging Cable,1,14.95,07/22/19 17:28,"883 River St, Boston, MA 02215" +230446,Macbook Pro Laptop,1,1700,07/21/19 22:22,"155 9th St, New York City, NY 10001" +230447,AAA Batteries (4-pack),1,2.99,07/22/19 06:07,"872 2nd St, Atlanta, GA 30301" +230448,Google Phone,1,600,07/02/19 19:11,"242 Church St, San Francisco, CA 94016" +230448,USB-C Charging Cable,1,11.95,07/02/19 19:11,"242 Church St, San Francisco, CA 94016" +230449,AAA Batteries (4-pack),1,2.99,07/10/19 12:01,"918 Dogwood St, Dallas, TX 75001" +230450,Bose SoundSport Headphones,1,99.99,07/14/19 10:36,"399 Adams St, New York City, NY 10001" +230451,ThinkPad Laptop,1,999.99,07/20/19 01:21,"940 Ridge St, New York City, NY 10001" +230451,Google Phone,1,600,07/20/19 01:21,"940 Ridge St, New York City, NY 10001" +230452,AAA Batteries (4-pack),1,2.99,07/29/19 21:21,"405 Washington St, Austin, TX 73301" +230453,27in 4K Gaming Monitor,1,389.99,07/05/19 18:34,"900 Pine St, San Francisco, CA 94016" +230454,USB-C Charging Cable,1,11.95,07/09/19 11:13,"427 Pine St, San Francisco, CA 94016" +230455,Bose SoundSport Headphones,1,99.99,08/01/19 01:06,"109 Pine St, Portland, OR 97035" +230456,34in Ultrawide Monitor,1,379.99,07/21/19 08:43,"594 14th St, New York City, NY 10001" +230457,AAA Batteries (4-pack),1,2.99,07/19/19 02:36,"698 Wilson St, Dallas, TX 75001" +230458,Lightning Charging Cable,1,14.95,07/06/19 19:25,"918 Elm St, Atlanta, GA 30301" +230459,Wired Headphones,1,11.99,07/03/19 11:29,"765 14th St, New York City, NY 10001" +230460,Apple Airpods Headphones,1,150,07/15/19 08:35,"242 Sunset St, San Francisco, CA 94016" +230461,Bose SoundSport Headphones,1,99.99,07/27/19 09:19,"653 Highland St, Portland, OR 97035" +230461,USB-C Charging Cable,1,11.95,07/27/19 09:19,"653 Highland St, Portland, OR 97035" +230462,Wired Headphones,1,11.99,07/29/19 13:50,"917 Hill St, Los Angeles, CA 90001" +230463,Lightning Charging Cable,1,14.95,07/06/19 12:06,"434 9th St, Boston, MA 02215" +230464,AA Batteries (4-pack),2,3.84,07/14/19 22:13,"965 Adams St, San Francisco, CA 94016" +230465,Apple Airpods Headphones,1,150,07/16/19 15:12,"278 Spruce St, Atlanta, GA 30301" +230466,Vareebadd Phone,1,400,07/31/19 19:03,"34 Center St, Los Angeles, CA 90001" +230466,Wired Headphones,1,11.99,07/31/19 19:03,"34 Center St, Los Angeles, CA 90001" +230467,Apple Airpods Headphones,1,150,07/07/19 18:33,"552 Park St, Atlanta, GA 30301" +230468,Lightning Charging Cable,1,14.95,07/05/19 11:13,"378 Wilson St, New York City, NY 10001" +230469,USB-C Charging Cable,1,11.95,07/18/19 08:38,"83 Maple St, New York City, NY 10001" +230470,USB-C Charging Cable,1,11.95,07/15/19 19:06,"973 Jefferson St, New York City, NY 10001" +230471,Flatscreen TV,1,300,07/06/19 01:26,"4 1st St, Austin, TX 73301" +230472,Wired Headphones,2,11.99,07/23/19 21:14,"652 12th St, San Francisco, CA 94016" +230473,Google Phone,1,600,07/18/19 16:05,"858 Highland St, Dallas, TX 75001" +230473,Wired Headphones,1,11.99,07/18/19 16:05,"858 Highland St, Dallas, TX 75001" +230474,USB-C Charging Cable,1,11.95,07/02/19 18:30,"106 Maple St, New York City, NY 10001" +230475,Bose SoundSport Headphones,1,99.99,07/29/19 11:37,"5 10th St, Los Angeles, CA 90001" +230476,USB-C Charging Cable,1,11.95,07/24/19 12:13,"667 14th St, Dallas, TX 75001" +230477,AA Batteries (4-pack),1,3.84,07/14/19 18:09,"246 4th St, Dallas, TX 75001" +230478,27in FHD Monitor,1,149.99,07/12/19 14:42,"559 5th St, Boston, MA 02215" +230479,Apple Airpods Headphones,1,150,07/25/19 16:25,"293 6th St, San Francisco, CA 94016" +230480,AA Batteries (4-pack),1,3.84,07/29/19 16:18,"449 Center St, New York City, NY 10001" +230481,Wired Headphones,1,11.99,07/28/19 14:28,"288 Lake St, New York City, NY 10001" +230482,AAA Batteries (4-pack),1,2.99,07/28/19 19:09,"293 Adams St, New York City, NY 10001" +230483,27in 4K Gaming Monitor,1,389.99,07/04/19 11:23,"906 Lake St, Los Angeles, CA 90001" +230484,AA Batteries (4-pack),1,3.84,07/29/19 20:06,"118 Madison St, New York City, NY 10001" +230485,Apple Airpods Headphones,1,150,07/31/19 18:08,"920 4th St, Atlanta, GA 30301" +230486,Apple Airpods Headphones,1,150,07/28/19 03:53,"517 Lakeview St, San Francisco, CA 94016" +230487,Bose SoundSport Headphones,1,99.99,07/05/19 08:30,"617 Park St, Los Angeles, CA 90001" +230488,AA Batteries (4-pack),2,3.84,07/04/19 13:17,"862 7th St, Los Angeles, CA 90001" +230489,20in Monitor,1,109.99,07/24/19 08:43,"441 Sunset St, Austin, TX 73301" +230490,AA Batteries (4-pack),1,3.84,07/17/19 21:18,"875 Forest St, Atlanta, GA 30301" +230491,USB-C Charging Cable,1,11.95,07/18/19 06:21,"827 6th St, San Francisco, CA 94016" +230492,Apple Airpods Headphones,1,150,07/29/19 13:15,"639 Meadow St, New York City, NY 10001" +230493,Lightning Charging Cable,1,14.95,07/21/19 16:41,"351 Dogwood St, Los Angeles, CA 90001" +230494,Macbook Pro Laptop,1,1700,07/03/19 18:27,"758 5th St, San Francisco, CA 94016" +230495,Lightning Charging Cable,1,14.95,07/04/19 00:30,"207 5th St, Los Angeles, CA 90001" +230496,34in Ultrawide Monitor,1,379.99,07/15/19 20:16,"355 West St, Dallas, TX 75001" +230497,Lightning Charging Cable,1,14.95,07/13/19 11:56,"305 River St, Austin, TX 73301" +230498,USB-C Charging Cable,1,11.95,07/04/19 00:41,"348 Adams St, Atlanta, GA 30301" +230499,Apple Airpods Headphones,1,150,07/12/19 12:37,"492 14th St, Boston, MA 02215" +230500,Lightning Charging Cable,1,14.95,07/27/19 21:29,"303 14th St, New York City, NY 10001" +230501,Google Phone,1,600,07/11/19 23:41,"296 Pine St, Dallas, TX 75001" +230502,27in 4K Gaming Monitor,1,389.99,07/05/19 15:48,"406 10th St, San Francisco, CA 94016" +230503,27in FHD Monitor,1,149.99,07/25/19 21:34,"60 11th St, San Francisco, CA 94016" +230503,34in Ultrawide Monitor,1,379.99,07/25/19 21:34,"60 11th St, San Francisco, CA 94016" +230504,Lightning Charging Cable,1,14.95,07/05/19 19:01,"529 Jefferson St, Atlanta, GA 30301" +230505,Bose SoundSport Headphones,1,99.99,07/23/19 15:14,"370 13th St, New York City, NY 10001" +230506,Macbook Pro Laptop,1,1700,07/21/19 11:58,"952 12th St, Dallas, TX 75001" +230507,Google Phone,1,600,07/15/19 04:40,"502 West St, Los Angeles, CA 90001" +230507,Bose SoundSport Headphones,1,99.99,07/15/19 04:40,"502 West St, Los Angeles, CA 90001" +230507,Wired Headphones,1,11.99,07/15/19 04:40,"502 West St, Los Angeles, CA 90001" +230508,AAA Batteries (4-pack),1,2.99,07/25/19 20:59,"958 Lake St, Los Angeles, CA 90001" +230509,20in Monitor,1,109.99,07/23/19 09:03,"580 Center St, Boston, MA 02215" +230509,Lightning Charging Cable,1,14.95,07/23/19 09:03,"580 Center St, Boston, MA 02215" +230510,Lightning Charging Cable,1,14.95,07/16/19 13:25,"332 Chestnut St, Portland, OR 97035" +230511,Flatscreen TV,1,300,07/03/19 14:42,"952 Pine St, San Francisco, CA 94016" +230512,Wired Headphones,1,11.99,07/18/19 07:54,"861 4th St, Boston, MA 02215" +230513,USB-C Charging Cable,1,11.95,07/27/19 12:20,"998 5th St, Portland, OR 97035" +230514,AA Batteries (4-pack),2,3.84,07/26/19 11:29,"466 Lincoln St, New York City, NY 10001" +230515,USB-C Charging Cable,1,11.95,07/18/19 17:33,"726 Sunset St, New York City, NY 10001" +230516,Bose SoundSport Headphones,1,99.99,07/14/19 13:39,"42 Meadow St, New York City, NY 10001" +230517,Bose SoundSport Headphones,1,99.99,07/19/19 11:49,"957 14th St, New York City, NY 10001" +230518,AAA Batteries (4-pack),1,2.99,07/29/19 17:15,"722 8th St, Los Angeles, CA 90001" +230519,Apple Airpods Headphones,1,150,07/12/19 00:35,"7 Sunset St, Dallas, TX 75001" +230520,AAA Batteries (4-pack),1,2.99,07/19/19 18:45,"577 14th St, San Francisco, CA 94016" +230521,AAA Batteries (4-pack),1,2.99,07/13/19 23:39,"92 9th St, San Francisco, CA 94016" +230522,iPhone,1,700,07/03/19 15:09,"740 Meadow St, New York City, NY 10001" +230523,AA Batteries (4-pack),2,3.84,07/07/19 13:58,"443 Forest St, San Francisco, CA 94016" +230524,Wired Headphones,1,11.99,07/24/19 17:03,"512 Maple St, Dallas, TX 75001" +230525,AAA Batteries (4-pack),1,2.99,07/26/19 09:14,"732 River St, Boston, MA 02215" +230526,USB-C Charging Cable,1,11.95,07/10/19 18:59,"29 Dogwood St, Boston, MA 02215" +230527,USB-C Charging Cable,1,11.95,07/06/19 16:06,"62 Center St, Seattle, WA 98101" +230528,AAA Batteries (4-pack),3,2.99,07/31/19 23:26,"403 Main St, San Francisco, CA 94016" +230529,Wired Headphones,1,11.99,07/29/19 13:07,"37 Washington St, New York City, NY 10001" +230530,Apple Airpods Headphones,1,150,07/08/19 15:36,"678 Spruce St, Los Angeles, CA 90001" +230531,27in 4K Gaming Monitor,1,389.99,07/05/19 19:49,"700 Wilson St, New York City, NY 10001" +230532,Wired Headphones,1,11.99,07/10/19 17:29,"147 Dogwood St, San Francisco, CA 94016" +230533,27in FHD Monitor,1,149.99,07/14/19 10:38,"624 12th St, San Francisco, CA 94016" +230534,Wired Headphones,1,11.99,07/20/19 11:24,"48 Chestnut St, San Francisco, CA 94016" +230535,ThinkPad Laptop,1,999.99,07/14/19 10:00,"441 1st St, Atlanta, GA 30301" +230536,ThinkPad Laptop,1,999.99,07/09/19 10:56,"700 Forest St, New York City, NY 10001" +230537,USB-C Charging Cable,1,11.95,07/26/19 07:37,"578 2nd St, Austin, TX 73301" +230538,USB-C Charging Cable,1,11.95,07/16/19 00:02,"547 12th St, Atlanta, GA 30301" +230539,Wired Headphones,1,11.99,07/25/19 11:33,"337 Meadow St, Dallas, TX 75001" +230540,Bose SoundSport Headphones,1,99.99,07/31/19 14:51,"388 13th St, Seattle, WA 98101" +230541,34in Ultrawide Monitor,1,379.99,07/15/19 21:09,"159 Lake St, Portland, OR 97035" +230542,iPhone,1,700,07/03/19 21:20,"354 Spruce St, Boston, MA 02215" +230543,Wired Headphones,1,11.99,07/14/19 12:54,"153 Pine St, Boston, MA 02215" +230544,Apple Airpods Headphones,1,150,07/25/19 19:46,"930 8th St, Austin, TX 73301" +230545,USB-C Charging Cable,1,11.95,07/24/19 16:32,"629 Madison St, San Francisco, CA 94016" +230546,Lightning Charging Cable,1,14.95,07/10/19 16:44,"802 8th St, Atlanta, GA 30301" +230547,AA Batteries (4-pack),2,3.84,07/12/19 11:57,"986 Cedar St, Portland, OR 97035" +230548,Lightning Charging Cable,1,14.95,07/08/19 13:35,"801 Lake St, Boston, MA 02215" +230549,AAA Batteries (4-pack),2,2.99,07/30/19 11:12,"148 Jefferson St, Los Angeles, CA 90001" +230550,AAA Batteries (4-pack),1,2.99,07/11/19 08:18,"536 Lake St, New York City, NY 10001" +230551,Wired Headphones,2,11.99,07/28/19 15:19,"696 Highland St, Los Angeles, CA 90001" +230552,AAA Batteries (4-pack),2,2.99,07/03/19 17:35,"368 Lakeview St, Los Angeles, CA 90001" +230553,Google Phone,1,600,07/24/19 17:02,"926 Cedar St, Boston, MA 02215" +230554,Apple Airpods Headphones,1,150,07/06/19 20:29,"842 Cedar St, Atlanta, GA 30301" +230555,20in Monitor,1,109.99,07/21/19 00:27,"343 Lincoln St, Boston, MA 02215" +230556,Wired Headphones,1,11.99,07/01/19 12:35,"732 Pine St, Seattle, WA 98101" +230557,27in FHD Monitor,1,149.99,07/26/19 00:36,"71 North St, Austin, TX 73301" +230558,Lightning Charging Cable,1,14.95,07/26/19 10:36,"858 South St, Dallas, TX 75001" +230559,Flatscreen TV,1,300,07/21/19 17:42,"881 Wilson St, San Francisco, CA 94016" +230560,AA Batteries (4-pack),1,3.84,07/09/19 22:52,"671 Elm St, Los Angeles, CA 90001" +230561,20in Monitor,1,109.99,07/23/19 10:06,"536 6th St, Boston, MA 02215" +230562,Flatscreen TV,1,300,07/21/19 16:48,"537 9th St, New York City, NY 10001" +230563,USB-C Charging Cable,1,11.95,07/23/19 20:14,"153 Forest St, Boston, MA 02215" +230564,AAA Batteries (4-pack),1,2.99,07/25/19 08:59,"574 Elm St, Atlanta, GA 30301" +230565,AA Batteries (4-pack),1,3.84,07/06/19 21:09,"922 Chestnut St, Boston, MA 02215" +230566,AAA Batteries (4-pack),1,2.99,07/30/19 19:22,"636 Ridge St, New York City, NY 10001" +230567,Bose SoundSport Headphones,1,99.99,07/28/19 20:37,"189 Hill St, Seattle, WA 98101" +230568,AA Batteries (4-pack),2,3.84,07/18/19 11:23,"562 Lincoln St, San Francisco, CA 94016" +230569,Wired Headphones,1,11.99,07/07/19 15:00,"919 Adams St, Boston, MA 02215" +230570,AAA Batteries (4-pack),1,2.99,07/23/19 17:28,"180 Sunset St, Los Angeles, CA 90001" +230571,Macbook Pro Laptop,1,1700,07/23/19 16:00,"54 Chestnut St, Atlanta, GA 30301" +230572,Wired Headphones,1,11.99,07/21/19 22:40,"5 Lake St, Los Angeles, CA 90001" +230573,USB-C Charging Cable,1,11.95,07/10/19 23:34,"98 Jackson St, San Francisco, CA 94016" +230574,27in FHD Monitor,1,149.99,07/31/19 19:26,"189 West St, Austin, TX 73301" +230575,USB-C Charging Cable,1,11.95,07/20/19 12:54,"400 12th St, New York City, NY 10001" +230576,Google Phone,1,600,07/27/19 23:31,"880 River St, Los Angeles, CA 90001" +230577,iPhone,1,700,07/19/19 08:04,"603 14th St, Los Angeles, CA 90001" +230578,Bose SoundSport Headphones,1,99.99,07/31/19 01:58,"36 8th St, Austin, TX 73301" +230579,AA Batteries (4-pack),1,3.84,07/02/19 17:52,"818 Cedar St, New York City, NY 10001" +230580,AA Batteries (4-pack),1,3.84,07/27/19 14:08,"114 Cherry St, New York City, NY 10001" +230581,AAA Batteries (4-pack),2,2.99,07/10/19 20:48,"631 Washington St, Boston, MA 02215" +230582,AA Batteries (4-pack),1,3.84,07/08/19 20:15,"464 Johnson St, Los Angeles, CA 90001" +230583,34in Ultrawide Monitor,1,379.99,07/03/19 14:03,"240 Willow St, San Francisco, CA 94016" +230584,USB-C Charging Cable,1,11.95,07/21/19 11:18,"486 Walnut St, Los Angeles, CA 90001" +230585,AAA Batteries (4-pack),1,2.99,07/29/19 14:56,"990 7th St, San Francisco, CA 94016" +230586,Bose SoundSport Headphones,1,99.99,07/10/19 18:32,"90 Elm St, San Francisco, CA 94016" +230587,AAA Batteries (4-pack),1,2.99,07/08/19 11:38,"174 South St, New York City, NY 10001" +230588,Bose SoundSport Headphones,1,99.99,07/10/19 21:14,"833 Wilson St, Boston, MA 02215" +230589,USB-C Charging Cable,1,11.95,07/18/19 16:12,"658 5th St, San Francisco, CA 94016" +230590,Bose SoundSport Headphones,1,99.99,07/09/19 11:19,"891 Sunset St, San Francisco, CA 94016" +230591,Wired Headphones,1,11.99,07/27/19 16:19,"256 Cedar St, Portland, OR 97035" +230592,27in 4K Gaming Monitor,1,389.99,07/08/19 11:23,"744 Dogwood St, Austin, TX 73301" +230593,AAA Batteries (4-pack),1,2.99,07/11/19 14:14,"38 4th St, Seattle, WA 98101" +230594,AA Batteries (4-pack),1,3.84,07/25/19 14:26,"495 Cedar St, San Francisco, CA 94016" +230595,Lightning Charging Cable,1,14.95,07/15/19 20:32,"195 13th St, Dallas, TX 75001" +230596,Lightning Charging Cable,1,14.95,07/13/19 12:57,"25 Ridge St, Los Angeles, CA 90001" +230597,USB-C Charging Cable,1,11.95,07/15/19 12:50,"399 Jackson St, New York City, NY 10001" +230598,27in FHD Monitor,1,149.99,07/08/19 01:24,"462 Hickory St, Boston, MA 02215" +230599,USB-C Charging Cable,1,11.95,07/30/19 19:17,"630 Elm St, Austin, TX 73301" +230600,Lightning Charging Cable,1,14.95,07/12/19 17:01,"349 Wilson St, Atlanta, GA 30301" +230601,27in FHD Monitor,1,149.99,07/25/19 14:15,"735 2nd St, Los Angeles, CA 90001" +230602,Google Phone,1,600,07/11/19 23:13,"404 Wilson St, Los Angeles, CA 90001" +230603,Lightning Charging Cable,1,14.95,07/25/19 17:37,"476 Forest St, Seattle, WA 98101" +230604,Lightning Charging Cable,1,14.95,07/07/19 08:15,"184 5th St, Atlanta, GA 30301" +230605,Bose SoundSport Headphones,1,99.99,07/22/19 00:08,"567 Lakeview St, Boston, MA 02215" +230606,USB-C Charging Cable,1,11.95,07/30/19 21:33,"247 Highland St, Seattle, WA 98101" +230607,Wired Headphones,1,11.99,07/08/19 12:48,"150 Sunset St, Portland, OR 97035" +230608,USB-C Charging Cable,1,11.95,07/25/19 20:38,"352 Forest St, Dallas, TX 75001" +230608,AAA Batteries (4-pack),1,2.99,07/25/19 20:38,"352 Forest St, Dallas, TX 75001" +230609,Lightning Charging Cable,1,14.95,07/22/19 23:51,"975 Willow St, Seattle, WA 98101" +230610,Apple Airpods Headphones,1,150,07/29/19 20:00,"864 Elm St, Portland, OR 97035" +230611,Apple Airpods Headphones,1,150,07/26/19 20:15,"398 Pine St, Boston, MA 02215" +230612,Lightning Charging Cable,1,14.95,07/15/19 07:19,"113 Walnut St, Atlanta, GA 30301" +230613,Apple Airpods Headphones,1,150,07/14/19 13:54,"375 Dogwood St, New York City, NY 10001" +230614,USB-C Charging Cable,1,11.95,07/12/19 12:37,"460 2nd St, San Francisco, CA 94016" +230615,USB-C Charging Cable,1,11.95,07/21/19 06:14,"275 Walnut St, Seattle, WA 98101" +230616,Lightning Charging Cable,1,14.95,07/27/19 09:00,"467 Maple St, San Francisco, CA 94016" +230617,Apple Airpods Headphones,1,150,07/19/19 10:47,"950 Jackson St, Austin, TX 73301" +230618,USB-C Charging Cable,1,11.95,07/11/19 15:34,"175 North St, Los Angeles, CA 90001" +230619,AAA Batteries (4-pack),1,2.99,07/16/19 14:02,"124 Hickory St, Atlanta, GA 30301" +230620,USB-C Charging Cable,1,11.95,07/29/19 13:56,"545 Elm St, Portland, ME 04101" +230621,Vareebadd Phone,1,400,07/31/19 08:30,"362 Walnut St, San Francisco, CA 94016" +230622,Apple Airpods Headphones,1,150,07/06/19 08:28,"447 2nd St, New York City, NY 10001" +230623,20in Monitor,1,109.99,07/30/19 20:19,"186 Sunset St, Los Angeles, CA 90001" +230624,AAA Batteries (4-pack),2,2.99,07/25/19 19:59,"267 Madison St, Boston, MA 02215" +230625,Wired Headphones,1,11.99,07/13/19 08:25,"876 Jackson St, New York City, NY 10001" +230626,AA Batteries (4-pack),1,3.84,07/24/19 05:52,"571 West St, Dallas, TX 75001" +230627,AA Batteries (4-pack),1,3.84,07/21/19 21:40,"249 Spruce St, Boston, MA 02215" +230628,Flatscreen TV,1,300,07/01/19 23:35,"883 North St, Atlanta, GA 30301" +230629,27in FHD Monitor,1,149.99,07/17/19 08:28,"402 Elm St, Boston, MA 02215" +230630,AA Batteries (4-pack),1,3.84,07/15/19 19:56,"921 Spruce St, Los Angeles, CA 90001" +230631,Apple Airpods Headphones,1,150,07/16/19 14:20,"479 Willow St, San Francisco, CA 94016" +230632,AAA Batteries (4-pack),1,2.99,07/02/19 09:55,"840 Chestnut St, Dallas, TX 75001" +230633,USB-C Charging Cable,1,11.95,07/29/19 08:33,"971 Willow St, San Francisco, CA 94016" +230634,USB-C Charging Cable,1,11.95,07/04/19 02:19,"147 Maple St, Atlanta, GA 30301" +230635,AAA Batteries (4-pack),1,2.99,07/11/19 20:02,"850 1st St, Portland, OR 97035" +230636,USB-C Charging Cable,1,11.95,07/27/19 21:58,"123 Wilson St, San Francisco, CA 94016" +230637,USB-C Charging Cable,1,11.95,07/30/19 16:25,"499 Lake St, San Francisco, CA 94016" +230638,34in Ultrawide Monitor,1,379.99,07/11/19 16:13,"984 Washington St, Boston, MA 02215" +230639,AA Batteries (4-pack),1,3.84,07/23/19 11:58,"983 8th St, Dallas, TX 75001" +230640,AA Batteries (4-pack),1,3.84,07/01/19 08:27,"915 Park St, Seattle, WA 98101" +230641,AA Batteries (4-pack),1,3.84,07/01/19 19:04,"355 Ridge St, Boston, MA 02215" +230642,27in FHD Monitor,1,149.99,07/21/19 18:19,"810 14th St, Los Angeles, CA 90001" +230643,AAA Batteries (4-pack),4,2.99,07/13/19 14:49,"175 Walnut St, Portland, OR 97035" +230644,USB-C Charging Cable,1,11.95,07/10/19 18:57,"125 14th St, San Francisco, CA 94016" +230645,AA Batteries (4-pack),1,3.84,07/29/19 10:26,"166 River St, Atlanta, GA 30301" +230646,Bose SoundSport Headphones,1,99.99,07/08/19 13:18,"204 Highland St, Seattle, WA 98101" +230647,AAA Batteries (4-pack),2,2.99,07/13/19 17:36,"217 Walnut St, Boston, MA 02215" +230648,Google Phone,1,600,07/31/19 10:53,"954 Dogwood St, San Francisco, CA 94016" +230648,USB-C Charging Cable,1,11.95,07/31/19 10:53,"954 Dogwood St, San Francisco, CA 94016" +230649,Lightning Charging Cable,1,14.95,07/29/19 20:04,"602 Lincoln St, Seattle, WA 98101" +230650,Google Phone,1,600,07/23/19 10:47,"638 Adams St, Dallas, TX 75001" +230651,USB-C Charging Cable,1,11.95,07/18/19 13:14,"967 Main St, Boston, MA 02215" +230652,Wired Headphones,1,11.99,07/09/19 09:58,"506 Jackson St, Boston, MA 02215" +230653,LG Dryer,1,600.0,07/15/19 09:57,"48 Lincoln St, New York City, NY 10001" +230654,USB-C Charging Cable,1,11.95,07/30/19 16:29,"296 Highland St, New York City, NY 10001" +230655,27in FHD Monitor,1,149.99,07/07/19 20:24,"344 Main St, New York City, NY 10001" +230656,AAA Batteries (4-pack),1,2.99,07/15/19 12:37,"690 Center St, San Francisco, CA 94016" +230657,USB-C Charging Cable,1,11.95,07/16/19 21:46,"920 Lincoln St, Boston, MA 02215" +230658,Google Phone,1,600,07/02/19 00:42,"592 Main St, Austin, TX 73301" +230659,Wired Headphones,1,11.99,07/27/19 21:00,"616 Cherry St, Boston, MA 02215" +230660,Lightning Charging Cable,1,14.95,07/29/19 11:31,"319 Sunset St, San Francisco, CA 94016" +230661,Wired Headphones,1,11.99,07/22/19 12:35,"212 Washington St, Los Angeles, CA 90001" +230662,Google Phone,1,600,07/27/19 16:00,"90 Meadow St, Portland, OR 97035" +230662,USB-C Charging Cable,1,11.95,07/27/19 16:00,"90 Meadow St, Portland, OR 97035" +230663,Bose SoundSport Headphones,1,99.99,07/24/19 19:09,"953 Hill St, Los Angeles, CA 90001" +230664,34in Ultrawide Monitor,1,379.99,07/13/19 11:53,"180 5th St, Dallas, TX 75001" +230665,Bose SoundSport Headphones,1,99.99,07/29/19 20:08,"110 9th St, San Francisco, CA 94016" +230666,AAA Batteries (4-pack),3,2.99,07/08/19 13:49,"685 Adams St, Atlanta, GA 30301" +230667,Macbook Pro Laptop,1,1700,07/07/19 16:03,"577 12th St, San Francisco, CA 94016" +230668,Lightning Charging Cable,1,14.95,07/20/19 07:05,"83 Ridge St, San Francisco, CA 94016" +230669,ThinkPad Laptop,1,999.99,07/30/19 14:09,"52 Chestnut St, Seattle, WA 98101" +230670,Bose SoundSport Headphones,1,99.99,07/30/19 21:24,"153 7th St, New York City, NY 10001" +230670,USB-C Charging Cable,1,11.95,07/30/19 21:24,"153 7th St, New York City, NY 10001" +230671,Lightning Charging Cable,1,14.95,07/09/19 11:36,"681 Cedar St, Los Angeles, CA 90001" +230672,AAA Batteries (4-pack),2,2.99,07/23/19 16:40,"530 12th St, San Francisco, CA 94016" +230673,LG Washing Machine,1,600.0,07/02/19 01:12,"71 8th St, San Francisco, CA 94016" +230674,USB-C Charging Cable,1,11.95,07/30/19 14:39,"800 River St, New York City, NY 10001" +230674,AAA Batteries (4-pack),1,2.99,07/30/19 14:39,"800 River St, New York City, NY 10001" +230675,Bose SoundSport Headphones,1,99.99,07/25/19 09:45,"185 Lake St, San Francisco, CA 94016" +230676,Wired Headphones,1,11.99,07/04/19 12:00,"144 Johnson St, San Francisco, CA 94016" +230677,AA Batteries (4-pack),1,3.84,07/04/19 10:38,"970 Pine St, Seattle, WA 98101" +230678,Wired Headphones,1,11.99,07/17/19 17:02,"268 Park St, Dallas, TX 75001" +230679,Bose SoundSport Headphones,1,99.99,07/07/19 11:31,"782 Adams St, San Francisco, CA 94016" +230680,Google Phone,1,600,07/11/19 10:34,"99 Walnut St, Los Angeles, CA 90001" +230681,Wired Headphones,2,11.99,07/16/19 01:14,"987 Lakeview St, Los Angeles, CA 90001" +230682,Wired Headphones,3,11.99,07/25/19 09:18,"583 Sunset St, San Francisco, CA 94016" +230683,Wired Headphones,2,11.99,07/25/19 21:01,"566 7th St, San Francisco, CA 94016" +230684,Wired Headphones,2,11.99,07/08/19 20:01,"896 Elm St, San Francisco, CA 94016" +230685,AAA Batteries (4-pack),1,2.99,07/28/19 10:00,"365 Willow St, Portland, OR 97035" +230686,AA Batteries (4-pack),2,3.84,07/01/19 11:49,"764 North St, Los Angeles, CA 90001" +230687,AAA Batteries (4-pack),3,2.99,07/31/19 10:39,"991 Hickory St, New York City, NY 10001" +230688,Vareebadd Phone,1,400,07/06/19 13:16,"960 9th St, Austin, TX 73301" +230689,iPhone,1,700,07/02/19 18:36,"829 Sunset St, Boston, MA 02215" +230690,27in 4K Gaming Monitor,1,389.99,07/03/19 22:47,"210 River St, San Francisco, CA 94016" +230691,Lightning Charging Cable,1,14.95,07/17/19 09:12,"200 Park St, Dallas, TX 75001" +230692,Apple Airpods Headphones,1,150,07/19/19 03:51,"357 Lincoln St, New York City, NY 10001" +230693,Lightning Charging Cable,1,14.95,07/02/19 21:01,"348 North St, New York City, NY 10001" +230694,Lightning Charging Cable,1,14.95,07/11/19 21:12,"911 Maple St, Los Angeles, CA 90001" +230695,AA Batteries (4-pack),1,3.84,07/05/19 11:35,"433 Johnson St, San Francisco, CA 94016" +230696,USB-C Charging Cable,1,11.95,07/15/19 15:21,"8 River St, Atlanta, GA 30301" +230697,AAA Batteries (4-pack),1,2.99,07/09/19 11:39,"762 Forest St, San Francisco, CA 94016" +230698,Lightning Charging Cable,1,14.95,07/03/19 06:31,"889 Washington St, Portland, OR 97035" +230698,AA Batteries (4-pack),1,3.84,07/03/19 06:31,"889 Washington St, Portland, OR 97035" +230699,20in Monitor,1,109.99,07/10/19 08:53,"40 Pine St, New York City, NY 10001" +230700,Apple Airpods Headphones,1,150,07/22/19 12:23,"28 River St, Boston, MA 02215" +230701,Bose SoundSport Headphones,1,99.99,07/06/19 17:24,"926 Chestnut St, Seattle, WA 98101" +230702,Apple Airpods Headphones,1,150,07/22/19 10:14,"991 Lincoln St, Atlanta, GA 30301" +230703,AAA Batteries (4-pack),3,2.99,07/31/19 17:57,"72 River St, Los Angeles, CA 90001" +230704,Bose SoundSport Headphones,1,99.99,07/27/19 12:13,"555 13th St, Los Angeles, CA 90001" +230705,AA Batteries (4-pack),1,3.84,07/29/19 18:49,"625 7th St, San Francisco, CA 94016" +230706,AA Batteries (4-pack),1,3.84,07/15/19 14:54,"366 9th St, Los Angeles, CA 90001" +230707,Wired Headphones,1,11.99,07/23/19 18:52,"941 Main St, San Francisco, CA 94016" +230708,Apple Airpods Headphones,1,150,07/22/19 11:25,"75 River St, New York City, NY 10001" +230709,27in FHD Monitor,1,149.99,07/31/19 19:17,"684 Wilson St, San Francisco, CA 94016" +230709,Apple Airpods Headphones,1,150,07/31/19 19:17,"684 Wilson St, San Francisco, CA 94016" +230710,iPhone,1,700,07/24/19 22:52,"374 Lincoln St, Austin, TX 73301" +230711,Lightning Charging Cable,1,14.95,07/28/19 18:05,"275 Center St, San Francisco, CA 94016" +230712,ThinkPad Laptop,1,999.99,07/20/19 12:50,"846 13th St, Dallas, TX 75001" +230713,Vareebadd Phone,1,400,07/27/19 17:49,"400 Lake St, San Francisco, CA 94016" +230714,USB-C Charging Cable,1,11.95,07/25/19 09:04,"43 Adams St, Dallas, TX 75001" +230715,Bose SoundSport Headphones,1,99.99,07/27/19 11:46,"417 4th St, Los Angeles, CA 90001" +230716,Wired Headphones,1,11.99,07/08/19 11:58,"709 14th St, Boston, MA 02215" +230717,Wired Headphones,1,11.99,07/14/19 20:54,"664 4th St, Boston, MA 02215" +230718,34in Ultrawide Monitor,1,379.99,07/03/19 16:37,"12 Willow St, Los Angeles, CA 90001" +230719,Macbook Pro Laptop,1,1700,07/20/19 17:27,"243 8th St, Dallas, TX 75001" +230720,34in Ultrawide Monitor,1,379.99,07/09/19 18:49,"766 9th St, San Francisco, CA 94016" +230721,27in 4K Gaming Monitor,1,389.99,07/25/19 11:42,"488 7th St, Los Angeles, CA 90001" +230722,Lightning Charging Cable,2,14.95,07/07/19 09:35,"620 Hickory St, Dallas, TX 75001" +230723,Lightning Charging Cable,1,14.95,07/12/19 10:50,"236 Spruce St, Boston, MA 02215" +230724,Lightning Charging Cable,1,14.95,07/26/19 19:49,"698 14th St, New York City, NY 10001" +230725,USB-C Charging Cable,1,11.95,07/04/19 18:07,"79 8th St, San Francisco, CA 94016" +230726,Lightning Charging Cable,1,14.95,07/06/19 22:37,"197 Jefferson St, San Francisco, CA 94016" +230726,ThinkPad Laptop,1,999.99,07/06/19 22:37,"197 Jefferson St, San Francisco, CA 94016" +230727,27in FHD Monitor,1,149.99,07/13/19 12:12,"497 Washington St, Portland, OR 97035" +230728,Flatscreen TV,1,300,07/20/19 21:42,"105 Lincoln St, Los Angeles, CA 90001" +230729,27in FHD Monitor,2,149.99,07/17/19 18:41,"151 Johnson St, San Francisco, CA 94016" +230730,USB-C Charging Cable,1,11.95,07/22/19 13:25,"750 North St, Los Angeles, CA 90001" +230731,AAA Batteries (4-pack),2,2.99,07/22/19 19:47,"726 South St, Atlanta, GA 30301" +230732,Wired Headphones,1,11.99,07/15/19 22:35,"181 Meadow St, Los Angeles, CA 90001" +230732,USB-C Charging Cable,1,11.95,07/15/19 22:35,"181 Meadow St, Los Angeles, CA 90001" +230733,AAA Batteries (4-pack),1,2.99,07/18/19 08:03,"22 Ridge St, New York City, NY 10001" +230734,Wired Headphones,1,11.99,07/13/19 17:54,"954 Lincoln St, Austin, TX 73301" +230735,AA Batteries (4-pack),1,3.84,07/12/19 20:37,"103 Adams St, Boston, MA 02215" +230736,Bose SoundSport Headphones,1,99.99,07/11/19 13:04,"864 13th St, Seattle, WA 98101" +230737,Wired Headphones,1,11.99,07/23/19 17:45,"302 Washington St, Los Angeles, CA 90001" +230738,Flatscreen TV,1,300,07/12/19 23:46,"899 Willow St, Portland, ME 04101" +230739,Lightning Charging Cable,1,14.95,07/28/19 22:56,"13 South St, Dallas, TX 75001" +230740,AA Batteries (4-pack),1,3.84,07/05/19 20:40,"645 8th St, Portland, ME 04101" +230741,USB-C Charging Cable,1,11.95,07/07/19 17:09,"85 West St, Seattle, WA 98101" +230742,Apple Airpods Headphones,1,150,07/31/19 23:36,"233 Elm St, New York City, NY 10001" +230743,USB-C Charging Cable,1,11.95,07/06/19 18:54,"482 11th St, San Francisco, CA 94016" +230744,iPhone,1,700,07/11/19 12:37,"742 South St, Dallas, TX 75001" +230744,Wired Headphones,1,11.99,07/11/19 12:37,"742 South St, Dallas, TX 75001" +230745,Wired Headphones,1,11.99,07/23/19 20:49,"523 Cherry St, Dallas, TX 75001" +230746,AAA Batteries (4-pack),1,2.99,07/16/19 13:36,"654 Lakeview St, Los Angeles, CA 90001" +230747,Lightning Charging Cable,1,14.95,07/18/19 14:09,"702 West St, Seattle, WA 98101" +230748,Lightning Charging Cable,1,14.95,07/05/19 23:53,"620 Hickory St, San Francisco, CA 94016" +230749,Macbook Pro Laptop,1,1700,07/09/19 08:14,"65 Maple St, Portland, OR 97035" +230750,USB-C Charging Cable,1,11.95,07/28/19 08:01,"64 8th St, Portland, OR 97035" +230751,AAA Batteries (4-pack),3,2.99,07/28/19 21:38,"645 Cherry St, Boston, MA 02215" +230752,USB-C Charging Cable,1,11.95,07/18/19 21:43,"414 1st St, San Francisco, CA 94016" +230753,iPhone,1,700,07/17/19 10:18,"498 Lincoln St, San Francisco, CA 94016" +230754,Lightning Charging Cable,1,14.95,07/31/19 14:30,"833 Forest St, San Francisco, CA 94016" +230755,AA Batteries (4-pack),1,3.84,07/01/19 20:51,"80 Main St, San Francisco, CA 94016" +230756,Flatscreen TV,1,300,07/29/19 12:37,"390 Center St, Los Angeles, CA 90001" +230757,27in FHD Monitor,1,149.99,07/09/19 08:43,"964 Sunset St, Boston, MA 02215" +230758,Google Phone,1,600,07/16/19 17:01,"365 Forest St, Atlanta, GA 30301" +230758,USB-C Charging Cable,1,11.95,07/16/19 17:01,"365 Forest St, Atlanta, GA 30301" +230759,AA Batteries (4-pack),3,3.84,07/26/19 12:44,"222 9th St, Atlanta, GA 30301" +230760,AA Batteries (4-pack),1,3.84,07/04/19 23:20,"642 Madison St, Dallas, TX 75001" +230761,Apple Airpods Headphones,1,150,07/02/19 19:14,"832 North St, Boston, MA 02215" +230762,USB-C Charging Cable,1,11.95,07/16/19 18:40,"312 4th St, Los Angeles, CA 90001" +230763,Apple Airpods Headphones,1,150,07/20/19 19:55,"731 14th St, Los Angeles, CA 90001" +230764,LG Dryer,1,600.0,07/03/19 17:50,"649 Jackson St, New York City, NY 10001" +230765,Lightning Charging Cable,1,14.95,07/29/19 18:03,"429 13th St, San Francisco, CA 94016" +230766,USB-C Charging Cable,1,11.95,07/18/19 14:27,"811 Lake St, Portland, OR 97035" +230766,Apple Airpods Headphones,1,150,07/18/19 14:27,"811 Lake St, Portland, OR 97035" +230767,USB-C Charging Cable,1,11.95,07/16/19 20:42,"713 Elm St, New York City, NY 10001" +230768,Bose SoundSport Headphones,1,99.99,07/31/19 19:15,"588 8th St, New York City, NY 10001" +230769,USB-C Charging Cable,1,11.95,07/18/19 11:35,"498 Walnut St, San Francisco, CA 94016" +230770,USB-C Charging Cable,1,11.95,07/15/19 10:03,"413 Jefferson St, San Francisco, CA 94016" +230771,USB-C Charging Cable,1,11.95,07/05/19 13:44,"877 Lakeview St, Dallas, TX 75001" +230772,Lightning Charging Cable,1,14.95,07/08/19 15:35,"484 Jefferson St, Dallas, TX 75001" +230773,Lightning Charging Cable,1,14.95,07/23/19 17:26,"893 14th St, Los Angeles, CA 90001" +230774,AAA Batteries (4-pack),1,2.99,07/09/19 21:52,"581 Washington St, Boston, MA 02215" +230775,Bose SoundSport Headphones,1,99.99,07/01/19 20:33,"284 Main St, New York City, NY 10001" +230776,AA Batteries (4-pack),1,3.84,07/19/19 20:19,"57 13th St, San Francisco, CA 94016" +230777,Flatscreen TV,1,300,07/12/19 12:42,"180 Johnson St, San Francisco, CA 94016" +230778,Bose SoundSport Headphones,1,99.99,07/21/19 09:02,"371 9th St, Atlanta, GA 30301" +230779,AAA Batteries (4-pack),1,2.99,07/14/19 00:31,"651 West St, New York City, NY 10001" +230780,USB-C Charging Cable,3,11.95,07/19/19 16:51,"147 5th St, Portland, OR 97035" +230781,USB-C Charging Cable,1,11.95,07/16/19 11:36,"779 Lincoln St, San Francisco, CA 94016" +230782,Lightning Charging Cable,1,14.95,07/20/19 14:47,"163 Ridge St, Portland, OR 97035" +230783,AA Batteries (4-pack),1,3.84,07/01/19 14:18,"892 Wilson St, Boston, MA 02215" +230784,Lightning Charging Cable,1,14.95,07/29/19 20:21,"298 Lake St, Dallas, TX 75001" +230785,Wired Headphones,1,11.99,07/24/19 14:14,"636 11th St, Los Angeles, CA 90001" +230786,27in 4K Gaming Monitor,1,389.99,07/08/19 15:15,"150 Forest St, Seattle, WA 98101" +230787,Wired Headphones,1,11.99,07/16/19 18:11,"973 Madison St, San Francisco, CA 94016" +230788,Apple Airpods Headphones,1,150,07/08/19 12:19,"853 Dogwood St, Austin, TX 73301" +230789,Wired Headphones,1,11.99,07/12/19 10:35,"377 9th St, Dallas, TX 75001" +230790,AA Batteries (4-pack),1,3.84,07/24/19 12:29,"897 5th St, Portland, OR 97035" +230791,AAA Batteries (4-pack),3,2.99,07/25/19 23:06,"973 Willow St, San Francisco, CA 94016" +230792,34in Ultrawide Monitor,1,379.99,07/17/19 18:29,"574 Dogwood St, Los Angeles, CA 90001" +230793,Apple Airpods Headphones,1,150,07/21/19 20:01,"756 Ridge St, Dallas, TX 75001" +230794,Wired Headphones,1,11.99,07/30/19 11:18,"831 Chestnut St, Austin, TX 73301" +230795,27in 4K Gaming Monitor,1,389.99,07/17/19 13:16,"854 Adams St, San Francisco, CA 94016" +230796,Bose SoundSport Headphones,1,99.99,07/07/19 11:56,"761 1st St, Seattle, WA 98101" +230797,Wired Headphones,1,11.99,07/31/19 16:29,"430 North St, San Francisco, CA 94016" +230798,AAA Batteries (4-pack),1,2.99,07/26/19 23:46,"467 Forest St, Atlanta, GA 30301" +230799,iPhone,1,700,07/24/19 14:28,"852 Sunset St, Boston, MA 02215" +230800,ThinkPad Laptop,1,999.99,07/20/19 09:02,"127 14th St, San Francisco, CA 94016" +230801,ThinkPad Laptop,1,999.99,07/26/19 23:33,"548 8th St, Boston, MA 02215" +230802,Apple Airpods Headphones,1,150,07/20/19 17:12,"654 4th St, Portland, OR 97035" +230803,USB-C Charging Cable,2,11.95,07/20/19 09:21,"78 Hickory St, Los Angeles, CA 90001" +230804,Apple Airpods Headphones,1,150,07/08/19 04:55,"515 West St, San Francisco, CA 94016" +230805,27in FHD Monitor,1,149.99,07/08/19 21:38,"354 Forest St, Seattle, WA 98101" +230806,Lightning Charging Cable,1,14.95,07/20/19 09:40,"667 12th St, New York City, NY 10001" +230807,Lightning Charging Cable,1,14.95,07/13/19 20:44,"757 Wilson St, Dallas, TX 75001" +230808,20in Monitor,1,109.99,07/17/19 22:35,"104 Lake St, San Francisco, CA 94016" +230809,AAA Batteries (4-pack),1,2.99,07/17/19 17:44,"498 Dogwood St, Los Angeles, CA 90001" +230810,AA Batteries (4-pack),1,3.84,07/17/19 22:18,"302 Johnson St, Boston, MA 02215" +230811,AAA Batteries (4-pack),1,2.99,07/12/19 11:39,"433 Johnson St, Los Angeles, CA 90001" +230812,Wired Headphones,1,11.99,07/26/19 14:51,"786 Lincoln St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +230813,AA Batteries (4-pack),3,3.84,07/10/19 20:03,"89 Church St, San Francisco, CA 94016" +230814,Apple Airpods Headphones,1,150,07/04/19 03:31,"898 14th St, Dallas, TX 75001" +230815,USB-C Charging Cable,1,11.95,07/02/19 15:05,"412 Chestnut St, Atlanta, GA 30301" +230816,Bose SoundSport Headphones,1,99.99,07/23/19 10:32,"135 Johnson St, Los Angeles, CA 90001" +230817,Bose SoundSport Headphones,1,99.99,07/16/19 11:35,"208 Elm St, Portland, OR 97035" +230818,Flatscreen TV,1,300,07/19/19 12:25,"869 Adams St, Los Angeles, CA 90001" +230819,USB-C Charging Cable,1,11.95,07/09/19 20:37,"587 4th St, Los Angeles, CA 90001" +230820,AA Batteries (4-pack),1,3.84,07/07/19 13:21,"96 Walnut St, San Francisco, CA 94016" +230821,27in 4K Gaming Monitor,1,389.99,07/27/19 12:38,"82 Forest St, Atlanta, GA 30301" +230822,27in FHD Monitor,1,149.99,07/28/19 00:08,"172 Willow St, San Francisco, CA 94016" +230823,AA Batteries (4-pack),1,3.84,07/26/19 17:24,"554 13th St, New York City, NY 10001" +230824,27in FHD Monitor,1,149.99,07/03/19 12:49,"661 Hickory St, Los Angeles, CA 90001" +230825,Macbook Pro Laptop,1,1700,07/16/19 15:29,"812 Ridge St, Seattle, WA 98101" +230826,USB-C Charging Cable,1,11.95,07/10/19 23:25,"554 9th St, New York City, NY 10001" +230826,iPhone,1,700,07/10/19 23:25,"554 9th St, New York City, NY 10001" +230827,27in FHD Monitor,1,149.99,07/02/19 18:06,"240 Main St, Portland, OR 97035" +230828,AAA Batteries (4-pack),1,2.99,07/15/19 19:30,"962 Meadow St, Los Angeles, CA 90001" +230829,Bose SoundSport Headphones,1,99.99,07/16/19 07:33,"3 4th St, Seattle, WA 98101" +230830,Lightning Charging Cable,1,14.95,07/18/19 22:15,"788 7th St, San Francisco, CA 94016" +230831,USB-C Charging Cable,1,11.95,07/28/19 18:05,"466 Lake St, San Francisco, CA 94016" +230832,20in Monitor,1,109.99,07/03/19 21:58,"810 Ridge St, San Francisco, CA 94016" +230833,Google Phone,1,600,07/20/19 15:53,"368 13th St, Atlanta, GA 30301" +230834,AAA Batteries (4-pack),1,2.99,07/28/19 15:55,"369 Cherry St, Dallas, TX 75001" +230835,iPhone,1,700,07/13/19 08:18,"20 Johnson St, Portland, OR 97035" +230836,Lightning Charging Cable,1,14.95,07/26/19 12:24,"484 Ridge St, Boston, MA 02215" +230837,27in FHD Monitor,1,149.99,07/30/19 00:16,"124 4th St, Atlanta, GA 30301" +230838,27in FHD Monitor,1,149.99,07/15/19 17:12,"108 Chestnut St, Dallas, TX 75001" +230839,AAA Batteries (4-pack),2,2.99,07/01/19 18:28,"668 Church St, Boston, MA 02215" +230840,AA Batteries (4-pack),1,3.84,07/21/19 20:54,"229 7th St, Dallas, TX 75001" +230841,USB-C Charging Cable,1,11.95,07/07/19 23:11,"121 North St, San Francisco, CA 94016" +230842,AA Batteries (4-pack),1,3.84,07/12/19 14:38,"670 Johnson St, Portland, OR 97035" +230843,AA Batteries (4-pack),2,3.84,07/12/19 13:36,"235 Church St, New York City, NY 10001" +230844,AA Batteries (4-pack),1,3.84,07/13/19 08:52,"681 9th St, San Francisco, CA 94016" +230845,USB-C Charging Cable,1,11.95,07/31/19 20:39,"46 6th St, New York City, NY 10001" +230846,Bose SoundSport Headphones,1,99.99,07/11/19 11:11,"715 Dogwood St, New York City, NY 10001" +230847,Google Phone,1,600,07/12/19 23:21,"227 River St, Los Angeles, CA 90001" +230847,USB-C Charging Cable,1,11.95,07/12/19 23:21,"227 River St, Los Angeles, CA 90001" +230848,USB-C Charging Cable,1,11.95,07/12/19 00:08,"882 Hickory St, San Francisco, CA 94016" +230849,AA Batteries (4-pack),1,3.84,07/19/19 21:38,"705 7th St, San Francisco, CA 94016" +230850,AA Batteries (4-pack),1,3.84,07/31/19 22:07,"924 Hill St, Los Angeles, CA 90001" +230851,Wired Headphones,1,11.99,07/28/19 10:43,"507 Chestnut St, Portland, OR 97035" +230852,Lightning Charging Cable,1,14.95,07/28/19 11:02,"370 7th St, Boston, MA 02215" +230853,Google Phone,1,600,07/17/19 19:24,"95 Pine St, San Francisco, CA 94016" +230854,Wired Headphones,1,11.99,07/31/19 11:42,"295 Jackson St, Los Angeles, CA 90001" +230855,AAA Batteries (4-pack),2,2.99,07/24/19 14:21,"71 Johnson St, New York City, NY 10001" +230856,USB-C Charging Cable,1,11.95,07/05/19 08:21,"70 Madison St, San Francisco, CA 94016" +230857,AAA Batteries (4-pack),3,2.99,07/21/19 14:05,"193 Spruce St, New York City, NY 10001" +230858,20in Monitor,1,109.99,07/10/19 17:28,"52 Washington St, Portland, OR 97035" +230859,Bose SoundSport Headphones,1,99.99,07/02/19 23:29,"968 Meadow St, Atlanta, GA 30301" +230860,Google Phone,1,600,07/01/19 16:45,"496 4th St, Los Angeles, CA 90001" +230861,AA Batteries (4-pack),2,3.84,07/19/19 03:32,"20 13th St, San Francisco, CA 94016" +230862,34in Ultrawide Monitor,1,379.99,07/30/19 22:12,"628 Jefferson St, Atlanta, GA 30301" +230863,Bose SoundSport Headphones,1,99.99,07/11/19 21:06,"90 11th St, Dallas, TX 75001" +230864,Bose SoundSport Headphones,1,99.99,07/09/19 10:17,"29 Maple St, Seattle, WA 98101" +230865,AAA Batteries (4-pack),1,2.99,07/07/19 02:38,"125 5th St, Dallas, TX 75001" +230866,AAA Batteries (4-pack),2,2.99,07/29/19 14:08,"858 Main St, Boston, MA 02215" +230867,Apple Airpods Headphones,1,150,07/17/19 18:36,"943 Ridge St, San Francisco, CA 94016" +230868,27in FHD Monitor,1,149.99,07/13/19 19:15,"847 Main St, Dallas, TX 75001" +230869,USB-C Charging Cable,1,11.95,07/25/19 12:16,"266 7th St, Dallas, TX 75001" +230870,Lightning Charging Cable,1,14.95,07/08/19 19:01,"185 Walnut St, Atlanta, GA 30301" +230871,USB-C Charging Cable,3,11.95,07/30/19 15:51,"199 Ridge St, San Francisco, CA 94016" +230872,AAA Batteries (4-pack),2,2.99,07/25/19 19:35,"593 6th St, Los Angeles, CA 90001" +230873,AA Batteries (4-pack),1,3.84,07/16/19 16:25,"840 14th St, Dallas, TX 75001" +230874,Macbook Pro Laptop,1,1700,07/02/19 20:28,"272 14th St, San Francisco, CA 94016" +230875,iPhone,1,700,07/29/19 13:24,"489 7th St, New York City, NY 10001" +230876,Bose SoundSport Headphones,1,99.99,07/05/19 11:15,"326 Jefferson St, Portland, OR 97035" +230877,AA Batteries (4-pack),1,3.84,07/17/19 12:32,"474 7th St, Dallas, TX 75001" +230878,Lightning Charging Cable,1,14.95,07/17/19 00:35,"474 Park St, Seattle, WA 98101" +230879,Wired Headphones,1,11.99,07/19/19 09:58,"982 7th St, Los Angeles, CA 90001" +230880,USB-C Charging Cable,1,11.95,07/18/19 12:05,"377 West St, New York City, NY 10001" +230881,Bose SoundSport Headphones,1,99.99,07/03/19 22:12,"132 Spruce St, New York City, NY 10001" +230882,Lightning Charging Cable,1,14.95,07/14/19 14:39,"762 Lincoln St, San Francisco, CA 94016" +230883,Lightning Charging Cable,2,14.95,07/14/19 21:16,"501 10th St, San Francisco, CA 94016" +230884,27in 4K Gaming Monitor,1,389.99,07/28/19 13:07,"333 Wilson St, San Francisco, CA 94016" +230885,Wired Headphones,1,11.99,07/12/19 13:36,"727 Cedar St, Los Angeles, CA 90001" +230886,27in 4K Gaming Monitor,1,389.99,07/26/19 11:09,"231 Dogwood St, Atlanta, GA 30301" +230887,AAA Batteries (4-pack),2,2.99,07/05/19 13:42,"288 Main St, San Francisco, CA 94016" +230888,Wired Headphones,1,11.99,07/17/19 15:32,"417 Maple St, San Francisco, CA 94016" +230889,AA Batteries (4-pack),3,3.84,07/05/19 20:35,"676 Pine St, Los Angeles, CA 90001" +230890,USB-C Charging Cable,1,11.95,07/22/19 22:06,"794 Willow St, Boston, MA 02215" +230891,AA Batteries (4-pack),2,3.84,07/18/19 10:50,"194 Meadow St, Portland, OR 97035" +230892,Wired Headphones,1,11.99,07/22/19 11:24,"331 Lakeview St, New York City, NY 10001" +230893,27in FHD Monitor,1,149.99,07/08/19 09:03,"768 Chestnut St, Boston, MA 02215" +230894,Wired Headphones,1,11.99,07/21/19 12:38,"80 Hickory St, San Francisco, CA 94016" +230895,AA Batteries (4-pack),1,3.84,07/29/19 15:45,"654 Madison St, Boston, MA 02215" +230896,Bose SoundSport Headphones,1,99.99,07/29/19 13:50,"774 4th St, San Francisco, CA 94016" +230897,Bose SoundSport Headphones,1,99.99,07/04/19 17:16,"909 Center St, San Francisco, CA 94016" +230898,Bose SoundSport Headphones,1,99.99,07/08/19 22:20,"400 11th St, San Francisco, CA 94016" +230899,Apple Airpods Headphones,1,150,07/29/19 19:19,"982 Wilson St, San Francisco, CA 94016" +230900,Bose SoundSport Headphones,1,99.99,07/20/19 12:41,"732 West St, New York City, NY 10001" +230901,AA Batteries (4-pack),1,3.84,07/27/19 10:40,"764 2nd St, Atlanta, GA 30301" +230902,USB-C Charging Cable,1,11.95,07/02/19 11:19,"543 10th St, Austin, TX 73301" +230903,USB-C Charging Cable,1,11.95,07/16/19 00:53,"534 Ridge St, Los Angeles, CA 90001" +230904,Google Phone,1,600,07/16/19 19:20,"801 Lake St, Boston, MA 02215" +230905,27in 4K Gaming Monitor,1,389.99,07/07/19 17:45,"863 11th St, Portland, OR 97035" +230906,ThinkPad Laptop,1,999.99,07/15/19 08:12,"952 Church St, Boston, MA 02215" +230907,Bose SoundSport Headphones,1,99.99,07/08/19 14:34,"404 12th St, Los Angeles, CA 90001" +230908,Lightning Charging Cable,1,14.95,07/24/19 17:51,"904 Cedar St, Portland, ME 04101" +230909,Lightning Charging Cable,1,14.95,07/31/19 17:50,"853 Spruce St, Atlanta, GA 30301" +230910,USB-C Charging Cable,1,11.95,07/29/19 11:54,"298 14th St, Los Angeles, CA 90001" +230911,AA Batteries (4-pack),4,3.84,07/17/19 23:29,"190 West St, Los Angeles, CA 90001" +230912,Flatscreen TV,1,300,07/14/19 10:25,"288 Cherry St, Boston, MA 02215" +230913,Wired Headphones,1,11.99,07/11/19 11:15,"728 Cedar St, San Francisco, CA 94016" +230914,Lightning Charging Cable,1,14.95,07/09/19 20:43,"89 10th St, San Francisco, CA 94016" +230915,USB-C Charging Cable,1,11.95,07/07/19 22:11,"500 Maple St, Boston, MA 02215" +230916,Google Phone,1,600,07/30/19 20:03,"192 West St, San Francisco, CA 94016" +230917,AA Batteries (4-pack),1,3.84,07/06/19 07:23,"238 Elm St, Portland, ME 04101" +230918,27in FHD Monitor,1,149.99,07/18/19 12:54,"212 Elm St, San Francisco, CA 94016" +230919,34in Ultrawide Monitor,1,379.99,07/25/19 16:47,"998 Meadow St, New York City, NY 10001" +230920,AA Batteries (4-pack),1,3.84,07/13/19 14:17,"105 1st St, Seattle, WA 98101" +230921,USB-C Charging Cable,1,11.95,07/14/19 11:19,"719 Forest St, Atlanta, GA 30301" +230922,Lightning Charging Cable,1,14.95,07/05/19 12:21,"105 Willow St, San Francisco, CA 94016" +230923,27in FHD Monitor,1,149.99,07/02/19 09:35,"115 Cherry St, Boston, MA 02215" +230924,Apple Airpods Headphones,1,150,07/07/19 15:06,"190 10th St, Atlanta, GA 30301" +230925,Bose SoundSport Headphones,1,99.99,07/22/19 11:55,"205 4th St, Atlanta, GA 30301" +230926,Bose SoundSport Headphones,1,99.99,07/01/19 13:46,"868 Jefferson St, Seattle, WA 98101" +230927,Wired Headphones,1,11.99,07/14/19 11:18,"805 Main St, New York City, NY 10001" +230928,iPhone,1,700,07/23/19 17:53,"468 10th St, Dallas, TX 75001" +230929,Wired Headphones,1,11.99,07/20/19 11:06,"510 Hickory St, New York City, NY 10001" +230930,Apple Airpods Headphones,1,150,07/30/19 20:38,"49 Church St, San Francisco, CA 94016" +230931,27in FHD Monitor,1,149.99,07/31/19 23:24,"20 Pine St, Atlanta, GA 30301" +,,,,, +230932,Wired Headphones,2,11.99,07/18/19 13:24,"993 Sunset St, Portland, OR 97035" +230933,Lightning Charging Cable,1,14.95,07/29/19 21:50,"849 Park St, Seattle, WA 98101" +230934,Lightning Charging Cable,1,14.95,07/30/19 21:04,"714 Pine St, New York City, NY 10001" +230935,USB-C Charging Cable,2,11.95,07/12/19 09:06,"372 6th St, San Francisco, CA 94016" +230936,Lightning Charging Cable,2,14.95,07/25/19 07:28,"701 Cedar St, Atlanta, GA 30301" +230937,Lightning Charging Cable,1,14.95,07/06/19 07:49,"807 Ridge St, San Francisco, CA 94016" +230938,Bose SoundSport Headphones,1,99.99,07/22/19 15:11,"501 Park St, San Francisco, CA 94016" +230939,Bose SoundSport Headphones,1,99.99,07/10/19 14:54,"435 4th St, San Francisco, CA 94016" +230940,Flatscreen TV,1,300,07/20/19 09:56,"163 Maple St, Boston, MA 02215" +230941,Lightning Charging Cable,1,14.95,07/14/19 14:49,"388 Lakeview St, Atlanta, GA 30301" +230942,Google Phone,1,600,07/21/19 19:06,"456 11th St, Seattle, WA 98101" +230943,Lightning Charging Cable,2,14.95,07/31/19 09:16,"546 Jefferson St, Los Angeles, CA 90001" +230944,AAA Batteries (4-pack),1,2.99,07/04/19 14:32,"214 South St, Atlanta, GA 30301" +230945,Wired Headphones,1,11.99,07/10/19 17:44,"988 6th St, San Francisco, CA 94016" +230946,Lightning Charging Cable,1,14.95,07/30/19 08:49,"437 Highland St, Los Angeles, CA 90001" +230947,Bose SoundSport Headphones,1,99.99,07/01/19 21:10,"7 13th St, Los Angeles, CA 90001" +230948,AA Batteries (4-pack),3,3.84,07/03/19 09:18,"142 1st St, San Francisco, CA 94016" +230949,AAA Batteries (4-pack),1,2.99,07/23/19 16:25,"894 North St, San Francisco, CA 94016" +230950,27in FHD Monitor,1,149.99,07/23/19 01:37,"35 5th St, Portland, OR 97035" +230951,USB-C Charging Cable,1,11.95,07/28/19 22:10,"648 Sunset St, San Francisco, CA 94016" +230952,Wired Headphones,1,11.99,07/25/19 15:42,"232 1st St, Boston, MA 02215" +230953,Wired Headphones,1,11.99,07/13/19 15:06,"489 Main St, Atlanta, GA 30301" +230954,Macbook Pro Laptop,1,1700,07/13/19 11:54,"841 Pine St, San Francisco, CA 94016" +230955,27in FHD Monitor,1,149.99,07/15/19 21:58,"729 8th St, Boston, MA 02215" +230956,Bose SoundSport Headphones,1,99.99,07/31/19 14:31,"50 5th St, Austin, TX 73301" +,,,,, +230957,AAA Batteries (4-pack),1,2.99,07/15/19 10:27,"249 Lakeview St, Austin, TX 73301" +230958,AAA Batteries (4-pack),3,2.99,07/19/19 14:19,"752 Sunset St, Portland, OR 97035" +230959,Macbook Pro Laptop,1,1700,07/15/19 16:51,"39 Forest St, Portland, OR 97035" +230960,Bose SoundSport Headphones,1,99.99,07/03/19 14:28,"887 Sunset St, Boston, MA 02215" +230961,Apple Airpods Headphones,1,150,07/02/19 15:56,"531 North St, San Francisco, CA 94016" +230962,AA Batteries (4-pack),2,3.84,07/06/19 08:11,"707 Chestnut St, San Francisco, CA 94016" +230963,Wired Headphones,3,11.99,07/24/19 10:01,"720 Dogwood St, San Francisco, CA 94016" +230964,20in Monitor,1,109.99,07/21/19 17:06,"182 Cherry St, Los Angeles, CA 90001" +230965,USB-C Charging Cable,1,11.95,07/28/19 16:55,"992 Wilson St, Portland, OR 97035" +230966,AA Batteries (4-pack),1,3.84,07/06/19 16:18,"639 Meadow St, Seattle, WA 98101" +230967,Lightning Charging Cable,1,14.95,07/18/19 19:46,"806 Forest St, Seattle, WA 98101" +230968,Lightning Charging Cable,1,14.95,07/31/19 01:02,"408 Forest St, Los Angeles, CA 90001" +230969,USB-C Charging Cable,1,11.95,07/12/19 14:10,"299 Meadow St, Portland, ME 04101" +230970,USB-C Charging Cable,1,11.95,07/08/19 11:58,"261 Maple St, Portland, OR 97035" +230971,AAA Batteries (4-pack),1,2.99,07/03/19 11:11,"327 Lakeview St, Atlanta, GA 30301" +230972,Apple Airpods Headphones,1,150,07/08/19 08:07,"324 Chestnut St, San Francisco, CA 94016" +230973,AA Batteries (4-pack),1,3.84,07/23/19 17:11,"889 7th St, San Francisco, CA 94016" +230974,Apple Airpods Headphones,1,150,07/09/19 21:46,"810 Elm St, San Francisco, CA 94016" +230975,USB-C Charging Cable,1,11.95,07/28/19 22:48,"219 4th St, Boston, MA 02215" +230976,Wired Headphones,1,11.99,07/30/19 19:21,"276 Cherry St, New York City, NY 10001" +230977,USB-C Charging Cable,2,11.95,07/24/19 23:25,"764 14th St, Los Angeles, CA 90001" +230978,Lightning Charging Cable,1,14.95,07/07/19 23:45,"614 Jackson St, Los Angeles, CA 90001" +230979,Apple Airpods Headphones,1,150,07/28/19 21:53,"699 Chestnut St, Boston, MA 02215" +230980,Lightning Charging Cable,1,14.95,07/23/19 23:13,"714 Willow St, Dallas, TX 75001" +230981,AA Batteries (4-pack),1,3.84,07/16/19 14:08,"307 Pine St, San Francisco, CA 94016" +230982,Google Phone,1,600,07/23/19 10:46,"317 Lakeview St, Portland, OR 97035" +230983,27in 4K Gaming Monitor,1,389.99,07/23/19 07:42,"152 Church St, Seattle, WA 98101" +230984,Wired Headphones,1,11.99,07/21/19 23:50,"406 1st St, Austin, TX 73301" +230985,AA Batteries (4-pack),2,3.84,07/23/19 10:01,"119 Forest St, New York City, NY 10001" +230986,Google Phone,1,600,07/07/19 12:32,"759 Chestnut St, Los Angeles, CA 90001" +230987,USB-C Charging Cable,1,11.95,07/28/19 21:50,"350 13th St, Portland, OR 97035" +230988,20in Monitor,1,109.99,07/03/19 14:01,"214 10th St, San Francisco, CA 94016" +230989,Lightning Charging Cable,1,14.95,07/16/19 16:07,"380 Elm St, New York City, NY 10001" +230990,AA Batteries (4-pack),2,3.84,07/01/19 06:41,"976 Main St, San Francisco, CA 94016" +230991,Vareebadd Phone,1,400,07/27/19 17:36,"409 Cherry St, Atlanta, GA 30301" +230992,USB-C Charging Cable,1,11.95,07/07/19 18:15,"505 West St, New York City, NY 10001" +230993,Vareebadd Phone,1,400,07/26/19 12:33,"462 Wilson St, Austin, TX 73301" +230994,USB-C Charging Cable,1,11.95,07/26/19 09:28,"46 8th St, Boston, MA 02215" +230995,AAA Batteries (4-pack),1,2.99,07/17/19 21:13,"299 Park St, New York City, NY 10001" +230996,Google Phone,1,600,07/09/19 18:49,"976 11th St, Atlanta, GA 30301" +230997,Lightning Charging Cable,1,14.95,07/17/19 20:59,"515 6th St, Portland, OR 97035" +230998,Flatscreen TV,1,300,07/14/19 09:35,"13 5th St, New York City, NY 10001" +230999,Lightning Charging Cable,1,14.95,07/30/19 09:38,"399 4th St, San Francisco, CA 94016" +231000,AAA Batteries (4-pack),1,2.99,07/06/19 07:33,"29 Church St, Los Angeles, CA 90001" +231001,Apple Airpods Headphones,1,150,07/24/19 23:04,"270 Meadow St, New York City, NY 10001" +231002,Apple Airpods Headphones,1,150,07/08/19 00:46,"295 Maple St, San Francisco, CA 94016" +231003,Apple Airpods Headphones,1,150,07/02/19 19:41,"110 Pine St, Boston, MA 02215" +231004,27in FHD Monitor,1,149.99,07/10/19 07:31,"218 13th St, Austin, TX 73301" +231005,USB-C Charging Cable,2,11.95,07/21/19 20:42,"731 13th St, Los Angeles, CA 90001" +231006,Lightning Charging Cable,1,14.95,07/01/19 07:08,"784 Lakeview St, San Francisco, CA 94016" +231007,AA Batteries (4-pack),2,3.84,07/21/19 11:16,"35 South St, Seattle, WA 98101" +231008,Lightning Charging Cable,1,14.95,07/30/19 16:02,"182 Madison St, Boston, MA 02215" +231009,27in 4K Gaming Monitor,1,389.99,07/21/19 21:19,"519 South St, Austin, TX 73301" +231010,Wired Headphones,1,11.99,07/11/19 18:03,"211 Walnut St, Austin, TX 73301" +231011,AAA Batteries (4-pack),1,2.99,07/16/19 12:04,"617 Adams St, New York City, NY 10001" +231012,Lightning Charging Cable,1,14.95,07/11/19 19:18,"562 Forest St, Seattle, WA 98101" +231013,AAA Batteries (4-pack),3,2.99,07/04/19 21:18,"236 Elm St, New York City, NY 10001" +231014,34in Ultrawide Monitor,1,379.99,07/27/19 12:33,"438 13th St, San Francisco, CA 94016" +231015,Lightning Charging Cable,1,14.95,07/09/19 12:07,"65 Spruce St, Los Angeles, CA 90001" +231016,Bose SoundSport Headphones,1,99.99,07/25/19 00:22,"793 Sunset St, San Francisco, CA 94016" +231017,AA Batteries (4-pack),2,3.84,07/29/19 09:52,"25 8th St, San Francisco, CA 94016" +231018,27in FHD Monitor,1,149.99,07/26/19 23:00,"376 Lakeview St, Los Angeles, CA 90001" +231019,Wired Headphones,1,11.99,07/31/19 12:55,"753 Jackson St, San Francisco, CA 94016" +231020,Apple Airpods Headphones,1,150,07/02/19 23:28,"491 Madison St, San Francisco, CA 94016" +231021,Lightning Charging Cable,1,14.95,07/29/19 22:19,"975 4th St, San Francisco, CA 94016" +231022,Lightning Charging Cable,1,14.95,07/02/19 12:39,"46 North St, Los Angeles, CA 90001" +231023,Flatscreen TV,1,300,07/31/19 18:12,"75 Adams St, Los Angeles, CA 90001" +231024,Lightning Charging Cable,1,14.95,07/11/19 16:44,"318 Sunset St, Los Angeles, CA 90001" +231025,Apple Airpods Headphones,1,150,07/04/19 15:42,"858 Maple St, San Francisco, CA 94016" +231026,Apple Airpods Headphones,1,150,07/27/19 15:49,"571 Chestnut St, Seattle, WA 98101" +231027,AA Batteries (4-pack),2,3.84,07/05/19 12:01,"641 Wilson St, Boston, MA 02215" +231028,USB-C Charging Cable,1,11.95,07/01/19 21:30,"720 South St, Los Angeles, CA 90001" +231029,AAA Batteries (4-pack),1,2.99,07/21/19 20:30,"441 Pine St, New York City, NY 10001" +231030,iPhone,1,700,07/25/19 09:11,"382 Madison St, Los Angeles, CA 90001" +231031,Bose SoundSport Headphones,1,99.99,07/07/19 18:46,"118 Spruce St, Dallas, TX 75001" +231032,Lightning Charging Cable,1,14.95,07/22/19 20:21,"948 6th St, Dallas, TX 75001" +231033,Macbook Pro Laptop,1,1700,07/11/19 10:39,"299 River St, Atlanta, GA 30301" +231034,Google Phone,1,600,07/07/19 00:24,"92 Adams St, San Francisco, CA 94016" +231035,Flatscreen TV,1,300,07/09/19 09:17,"813 Willow St, New York City, NY 10001" +231036,34in Ultrawide Monitor,1,379.99,07/13/19 10:53,"873 Park St, Atlanta, GA 30301" +231037,iPhone,1,700,07/08/19 10:45,"159 Park St, San Francisco, CA 94016" +231038,AAA Batteries (4-pack),1,2.99,07/18/19 19:51,"138 Cherry St, San Francisco, CA 94016" +231039,Apple Airpods Headphones,1,150,07/05/19 22:24,"34 Center St, San Francisco, CA 94016" +231040,iPhone,1,700,07/03/19 06:49,"383 11th St, Los Angeles, CA 90001" +231040,Wired Headphones,2,11.99,07/03/19 06:49,"383 11th St, Los Angeles, CA 90001" +231041,Bose SoundSport Headphones,1,99.99,07/22/19 06:31,"246 Elm St, San Francisco, CA 94016" +231042,USB-C Charging Cable,2,11.95,07/10/19 09:32,"228 Chestnut St, Boston, MA 02215" +231043,20in Monitor,1,109.99,07/27/19 12:28,"275 9th St, Boston, MA 02215" +231044,27in 4K Gaming Monitor,1,389.99,07/18/19 13:33,"532 Hickory St, Boston, MA 02215" +231045,Apple Airpods Headphones,1,150,07/20/19 22:56,"396 Lake St, New York City, NY 10001" +231046,Bose SoundSport Headphones,1,99.99,07/08/19 18:15,"971 5th St, Boston, MA 02215" +231047,Bose SoundSport Headphones,1,99.99,07/26/19 14:43,"437 1st St, Dallas, TX 75001" +231048,USB-C Charging Cable,1,11.95,07/31/19 14:47,"456 5th St, San Francisco, CA 94016" +231049,AA Batteries (4-pack),1,3.84,07/27/19 15:05,"337 7th St, New York City, NY 10001" +231050,AA Batteries (4-pack),1,3.84,07/05/19 13:00,"488 Hickory St, Los Angeles, CA 90001" +231051,USB-C Charging Cable,1,11.95,07/29/19 20:42,"413 2nd St, Dallas, TX 75001" +231052,Wired Headphones,1,11.99,07/31/19 12:46,"675 Highland St, Portland, OR 97035" +231053,USB-C Charging Cable,1,11.95,07/16/19 09:36,"697 Adams St, New York City, NY 10001" +231054,AA Batteries (4-pack),1,3.84,07/02/19 22:14,"876 Washington St, Austin, TX 73301" +231055,Lightning Charging Cable,1,14.95,07/22/19 15:28,"72 Washington St, Dallas, TX 75001" +231056,iPhone,1,700,07/22/19 11:33,"578 Ridge St, San Francisco, CA 94016" +231057,Lightning Charging Cable,1,14.95,07/22/19 00:21,"944 Highland St, New York City, NY 10001" +231058,Wired Headphones,1,11.99,07/01/19 15:56,"553 Sunset St, New York City, NY 10001" +231059,27in FHD Monitor,1,149.99,07/11/19 18:18,"416 Walnut St, Dallas, TX 75001" +231060,AAA Batteries (4-pack),1,2.99,07/16/19 07:25,"266 Cherry St, San Francisco, CA 94016" +231061,Bose SoundSport Headphones,1,99.99,07/05/19 18:40,"726 2nd St, San Francisco, CA 94016" +231062,iPhone,1,700,07/22/19 08:40,"56 Lakeview St, Atlanta, GA 30301" +231063,Wired Headphones,1,11.99,07/04/19 15:51,"595 11th St, Portland, OR 97035" +231064,Apple Airpods Headphones,1,150,07/08/19 18:31,"648 12th St, New York City, NY 10001" +231065,AAA Batteries (4-pack),1,2.99,07/01/19 09:25,"574 12th St, Dallas, TX 75001" +231066,27in 4K Gaming Monitor,1,389.99,07/11/19 21:41,"436 Cedar St, Los Angeles, CA 90001" +231067,Bose SoundSport Headphones,1,99.99,07/04/19 19:51,"770 Lake St, Boston, MA 02215" +231068,27in FHD Monitor,1,149.99,07/27/19 02:05,"577 Willow St, Portland, OR 97035" +231068,Lightning Charging Cable,1,14.95,07/27/19 02:05,"577 Willow St, Portland, OR 97035" +231069,Wired Headphones,1,11.99,07/24/19 10:20,"229 Lakeview St, Portland, OR 97035" +231070,34in Ultrawide Monitor,1,379.99,07/16/19 21:25,"382 8th St, San Francisco, CA 94016" +231071,AA Batteries (4-pack),1,3.84,07/29/19 15:50,"763 2nd St, Los Angeles, CA 90001" +231072,USB-C Charging Cable,1,11.95,07/21/19 13:20,"410 Lincoln St, San Francisco, CA 94016" +231073,AAA Batteries (4-pack),2,2.99,07/16/19 10:58,"824 Lakeview St, San Francisco, CA 94016" +231074,Bose SoundSport Headphones,1,99.99,07/26/19 16:30,"880 Cherry St, Portland, OR 97035" +231075,Vareebadd Phone,1,400,07/11/19 18:54,"975 Chestnut St, Los Angeles, CA 90001" +231076,AA Batteries (4-pack),1,3.84,07/19/19 12:03,"352 Meadow St, Austin, TX 73301" +231077,Bose SoundSport Headphones,1,99.99,07/02/19 18:07,"916 6th St, Los Angeles, CA 90001" +231078,LG Dryer,1,600.0,07/21/19 11:22,"550 11th St, Seattle, WA 98101" +231079,Bose SoundSport Headphones,1,99.99,07/16/19 16:37,"16 Sunset St, New York City, NY 10001" +231080,Lightning Charging Cable,1,14.95,07/08/19 20:59,"67 Park St, Los Angeles, CA 90001" +231081,ThinkPad Laptop,1,999.99,07/09/19 19:38,"668 Chestnut St, Los Angeles, CA 90001" +231082,34in Ultrawide Monitor,1,379.99,07/27/19 16:01,"688 5th St, Atlanta, GA 30301" +231083,Macbook Pro Laptop,1,1700,07/07/19 13:55,"696 Hickory St, Atlanta, GA 30301" +231084,AA Batteries (4-pack),2,3.84,07/17/19 22:38,"625 Main St, Los Angeles, CA 90001" +231085,USB-C Charging Cable,1,11.95,07/10/19 16:11,"178 North St, Los Angeles, CA 90001" +231086,AA Batteries (4-pack),1,3.84,07/22/19 07:56,"277 Willow St, Los Angeles, CA 90001" +231087,Wired Headphones,1,11.99,07/03/19 19:53,"350 12th St, San Francisco, CA 94016" +231088,USB-C Charging Cable,1,11.95,07/29/19 14:06,"775 Madison St, Los Angeles, CA 90001" +231089,Vareebadd Phone,1,400,07/25/19 19:22,"360 11th St, Dallas, TX 75001" +231089,USB-C Charging Cable,1,11.95,07/25/19 19:22,"360 11th St, Dallas, TX 75001" +231089,Wired Headphones,1,11.99,07/25/19 19:22,"360 11th St, Dallas, TX 75001" +231090,AA Batteries (4-pack),1,3.84,07/05/19 14:27,"743 7th St, Portland, OR 97035" +231091,Macbook Pro Laptop,1,1700,07/15/19 19:59,"46 South St, San Francisco, CA 94016" +231092,Lightning Charging Cable,1,14.95,07/05/19 00:25,"789 7th St, Atlanta, GA 30301" +231093,Bose SoundSport Headphones,1,99.99,07/23/19 11:58,"516 7th St, New York City, NY 10001" +231094,USB-C Charging Cable,1,11.95,07/03/19 17:50,"557 River St, Los Angeles, CA 90001" +231095,ThinkPad Laptop,1,999.99,07/16/19 21:05,"396 Lake St, San Francisco, CA 94016" +231096,Wired Headphones,1,11.99,07/13/19 15:01,"587 14th St, New York City, NY 10001" +231097,Google Phone,1,600,07/01/19 17:26,"758 8th St, Los Angeles, CA 90001" +231097,USB-C Charging Cable,1,11.95,07/01/19 17:26,"758 8th St, Los Angeles, CA 90001" +231098,Vareebadd Phone,1,400,07/25/19 19:06,"698 Park St, Boston, MA 02215" +231099,Lightning Charging Cable,1,14.95,07/27/19 17:25,"967 14th St, Austin, TX 73301" +231100,USB-C Charging Cable,1,11.95,07/13/19 19:00,"754 6th St, Austin, TX 73301" +231101,Apple Airpods Headphones,1,150,07/04/19 10:12,"167 8th St, Portland, OR 97035" +231102,34in Ultrawide Monitor,1,379.99,07/06/19 18:42,"42 Willow St, San Francisco, CA 94016" +231103,Google Phone,1,600,07/18/19 16:41,"272 Hill St, San Francisco, CA 94016" +231104,27in 4K Gaming Monitor,1,389.99,07/06/19 08:33,"413 Hill St, Austin, TX 73301" +231105,Wired Headphones,1,11.99,07/11/19 18:26,"727 Park St, Seattle, WA 98101" +231106,34in Ultrawide Monitor,1,379.99,07/11/19 17:21,"165 11th St, San Francisco, CA 94016" +231107,Lightning Charging Cable,1,14.95,07/10/19 22:34,"997 14th St, Seattle, WA 98101" +231108,USB-C Charging Cable,2,11.95,07/06/19 18:52,"229 Sunset St, Portland, OR 97035" +231109,USB-C Charging Cable,1,11.95,07/18/19 11:19,"591 9th St, Los Angeles, CA 90001" +231110,AAA Batteries (4-pack),3,2.99,07/11/19 18:41,"668 Cherry St, San Francisco, CA 94016" +231111,Lightning Charging Cable,1,14.95,07/23/19 02:06,"451 North St, Los Angeles, CA 90001" +231112,AA Batteries (4-pack),1,3.84,07/03/19 18:07,"827 Washington St, Seattle, WA 98101" +231113,34in Ultrawide Monitor,1,379.99,07/17/19 11:25,"740 5th St, New York City, NY 10001" +231114,Wired Headphones,1,11.99,07/14/19 17:28,"81 8th St, San Francisco, CA 94016" +231115,Wired Headphones,1,11.99,07/27/19 22:05,"770 Meadow St, Boston, MA 02215" +231116,Bose SoundSport Headphones,1,99.99,07/04/19 18:37,"252 Ridge St, Portland, OR 97035" +231117,AAA Batteries (4-pack),1,2.99,07/17/19 22:42,"460 River St, Los Angeles, CA 90001" +231118,iPhone,1,700,07/28/19 13:15,"801 1st St, Boston, MA 02215" +231119,USB-C Charging Cable,1,11.95,07/19/19 10:42,"816 4th St, Los Angeles, CA 90001" +231120,Vareebadd Phone,1,400,07/02/19 20:28,"640 13th St, Boston, MA 02215" +231120,USB-C Charging Cable,1,11.95,07/02/19 20:28,"640 13th St, Boston, MA 02215" +231121,AAA Batteries (4-pack),1,2.99,07/06/19 16:00,"374 Lakeview St, Atlanta, GA 30301" +231122,Apple Airpods Headphones,1,150,07/15/19 08:04,"500 1st St, New York City, NY 10001" +231123,USB-C Charging Cable,1,11.95,07/25/19 23:09,"151 Madison St, Dallas, TX 75001" +231124,AAA Batteries (4-pack),1,2.99,07/02/19 09:17,"671 5th St, San Francisco, CA 94016" +231125,ThinkPad Laptop,1,999.99,07/06/19 15:51,"229 6th St, Seattle, WA 98101" +231126,27in FHD Monitor,1,149.99,07/29/19 13:29,"960 8th St, Atlanta, GA 30301" +231127,Wired Headphones,1,11.99,07/04/19 10:22,"280 Chestnut St, New York City, NY 10001" +231128,Lightning Charging Cable,1,14.95,07/29/19 23:41,"462 Lincoln St, Dallas, TX 75001" +231129,LG Dryer,1,600.0,07/01/19 15:30,"601 Ridge St, Austin, TX 73301" +231130,20in Monitor,1,109.99,07/23/19 12:55,"841 9th St, New York City, NY 10001" +231131,USB-C Charging Cable,1,11.95,07/02/19 01:14,"428 Maple St, Boston, MA 02215" +231132,AA Batteries (4-pack),1,3.84,07/30/19 12:52,"479 5th St, San Francisco, CA 94016" +231133,Flatscreen TV,1,300,07/25/19 03:18,"812 7th St, New York City, NY 10001" +231134,Apple Airpods Headphones,1,150,07/02/19 10:24,"11 Washington St, Los Angeles, CA 90001" +231135,AAA Batteries (4-pack),1,2.99,07/14/19 11:56,"640 10th St, Dallas, TX 75001" +231136,USB-C Charging Cable,1,11.95,07/02/19 16:28,"206 Wilson St, Los Angeles, CA 90001" +231137,Macbook Pro Laptop,1,1700,07/26/19 17:39,"431 South St, Los Angeles, CA 90001" +231138,AA Batteries (4-pack),1,3.84,07/02/19 21:10,"73 10th St, San Francisco, CA 94016" +231139,Lightning Charging Cable,1,14.95,07/13/19 18:59,"326 4th St, Portland, ME 04101" +231140,Google Phone,1,600,07/04/19 23:17,"898 Cherry St, Atlanta, GA 30301" +231141,AAA Batteries (4-pack),1,2.99,07/03/19 09:31,"544 Pine St, San Francisco, CA 94016" +231142,Apple Airpods Headphones,1,150,07/30/19 19:33,"738 Meadow St, San Francisco, CA 94016" +231143,AA Batteries (4-pack),2,3.84,07/21/19 01:02,"197 Forest St, Boston, MA 02215" +231144,AAA Batteries (4-pack),2,2.99,07/03/19 16:18,"367 Cherry St, Boston, MA 02215" +231145,AA Batteries (4-pack),1,3.84,07/01/19 23:52,"206 Willow St, Dallas, TX 75001" +231146,USB-C Charging Cable,2,11.95,07/03/19 05:20,"903 Highland St, San Francisco, CA 94016" +231147,Bose SoundSport Headphones,1,99.99,07/21/19 14:12,"382 2nd St, Los Angeles, CA 90001" +231148,USB-C Charging Cable,1,11.95,07/31/19 20:26,"664 6th St, San Francisco, CA 94016" +231149,Bose SoundSport Headphones,1,99.99,07/07/19 17:11,"530 Hickory St, New York City, NY 10001" +231150,Lightning Charging Cable,1,14.95,07/03/19 21:33,"887 River St, Atlanta, GA 30301" +231151,Wired Headphones,1,11.99,07/10/19 17:39,"392 11th St, Los Angeles, CA 90001" +231152,USB-C Charging Cable,1,11.95,07/18/19 11:12,"21 Walnut St, New York City, NY 10001" +231153,AA Batteries (4-pack),1,3.84,07/20/19 18:58,"854 Sunset St, Seattle, WA 98101" +231154,Wired Headphones,1,11.99,07/12/19 13:11,"751 Sunset St, Dallas, TX 75001" +231155,iPhone,1,700,07/29/19 19:06,"880 12th St, Seattle, WA 98101" +231155,Lightning Charging Cable,2,14.95,07/29/19 19:06,"880 12th St, Seattle, WA 98101" +231156,34in Ultrawide Monitor,1,379.99,07/14/19 22:33,"442 Jackson St, Los Angeles, CA 90001" +231157,AAA Batteries (4-pack),1,2.99,07/08/19 09:03,"312 12th St, Los Angeles, CA 90001" +231158,27in FHD Monitor,1,149.99,07/31/19 20:56,"317 Park St, Atlanta, GA 30301" +231159,AAA Batteries (4-pack),2,2.99,07/28/19 21:07,"409 Madison St, Atlanta, GA 30301" +231160,Lightning Charging Cable,1,14.95,07/18/19 09:06,"245 North St, San Francisco, CA 94016" +231161,AAA Batteries (4-pack),1,2.99,07/04/19 11:14,"709 8th St, Seattle, WA 98101" +231162,AAA Batteries (4-pack),1,2.99,07/20/19 14:19,"134 Dogwood St, San Francisco, CA 94016" +231163,USB-C Charging Cable,1,11.95,07/19/19 16:34,"184 2nd St, Dallas, TX 75001" +231164,LG Washing Machine,1,600.0,07/30/19 14:05,"317 Walnut St, Seattle, WA 98101" +231165,27in 4K Gaming Monitor,1,389.99,07/28/19 14:00,"836 4th St, Austin, TX 73301" +231166,AA Batteries (4-pack),1,3.84,07/25/19 19:35,"67 Sunset St, Boston, MA 02215" +231167,AAA Batteries (4-pack),1,2.99,07/08/19 15:04,"67 5th St, New York City, NY 10001" +231168,Lightning Charging Cable,1,14.95,07/08/19 12:47,"71 Meadow St, Atlanta, GA 30301" +231169,Google Phone,1,600,07/16/19 09:30,"483 Cedar St, Los Angeles, CA 90001" +231169,Bose SoundSport Headphones,1,99.99,07/16/19 09:30,"483 Cedar St, Los Angeles, CA 90001" +231170,AAA Batteries (4-pack),1,2.99,07/26/19 19:28,"461 Cherry St, Los Angeles, CA 90001" +231171,27in 4K Gaming Monitor,1,389.99,07/11/19 18:00,"196 North St, Seattle, WA 98101" +231172,Lightning Charging Cable,1,14.95,07/14/19 11:14,"553 Lincoln St, Portland, ME 04101" +231173,USB-C Charging Cable,1,11.95,07/27/19 20:25,"341 Church St, Atlanta, GA 30301" +231174,USB-C Charging Cable,1,11.95,07/27/19 21:00,"918 Forest St, Portland, OR 97035" +231175,27in 4K Gaming Monitor,1,389.99,07/23/19 19:25,"544 Jackson St, Dallas, TX 75001" +231176,Wired Headphones,1,11.99,07/28/19 18:40,"104 Center St, Los Angeles, CA 90001" +231177,Wired Headphones,1,11.99,07/11/19 16:44,"923 Johnson St, Dallas, TX 75001" +231178,Bose SoundSport Headphones,1,99.99,07/05/19 11:52,"252 Dogwood St, New York City, NY 10001" +231179,Lightning Charging Cable,1,14.95,07/18/19 17:21,"639 1st St, San Francisco, CA 94016" +231180,Bose SoundSport Headphones,1,99.99,07/19/19 13:31,"198 6th St, New York City, NY 10001" +231181,Wired Headphones,1,11.99,07/25/19 10:13,"490 Park St, San Francisco, CA 94016" +231182,Google Phone,1,600,07/07/19 15:02,"43 Lakeview St, Portland, OR 97035" +231183,AA Batteries (4-pack),1,3.84,07/03/19 22:37,"236 Adams St, Austin, TX 73301" +231184,Lightning Charging Cable,1,14.95,07/20/19 23:05,"708 Lake St, San Francisco, CA 94016" +231185,Apple Airpods Headphones,1,150,07/15/19 12:48,"998 Spruce St, Seattle, WA 98101" +231186,Bose SoundSport Headphones,1,99.99,07/31/19 17:26,"340 Washington St, Los Angeles, CA 90001" +231187,Macbook Pro Laptop,1,1700,07/26/19 04:38,"41 Lake St, San Francisco, CA 94016" +231188,34in Ultrawide Monitor,1,379.99,07/19/19 13:36,"731 Cedar St, New York City, NY 10001" +231189,Lightning Charging Cable,2,14.95,07/27/19 14:19,"210 Park St, San Francisco, CA 94016" +231190,Wired Headphones,2,11.99,07/25/19 12:13,"148 West St, Dallas, TX 75001" +231191,Wired Headphones,1,11.99,07/28/19 07:06,"890 Maple St, Atlanta, GA 30301" +231192,USB-C Charging Cable,1,11.95,07/24/19 18:39,"125 1st St, New York City, NY 10001" +231193,USB-C Charging Cable,1,11.95,07/15/19 13:24,"959 Highland St, New York City, NY 10001" +231194,Apple Airpods Headphones,1,150,07/29/19 22:54,"693 Hill St, New York City, NY 10001" +231195,AA Batteries (4-pack),1,3.84,07/30/19 15:16,"596 13th St, Los Angeles, CA 90001" +231196,AAA Batteries (4-pack),2,2.99,07/27/19 14:13,"300 12th St, San Francisco, CA 94016" +231197,USB-C Charging Cable,1,11.95,07/22/19 16:26,"251 11th St, New York City, NY 10001" +231198,Google Phone,1,600,07/11/19 23:12,"153 Maple St, Atlanta, GA 30301" +231199,AAA Batteries (4-pack),1,2.99,07/07/19 11:35,"680 Spruce St, New York City, NY 10001" +231200,AAA Batteries (4-pack),1,2.99,07/25/19 19:29,"558 Park St, Dallas, TX 75001" +231201,USB-C Charging Cable,1,11.95,07/30/19 20:53,"559 North St, Los Angeles, CA 90001" +231202,AAA Batteries (4-pack),1,2.99,07/29/19 10:24,"700 Cedar St, Seattle, WA 98101" +231203,Macbook Pro Laptop,1,1700,07/24/19 11:59,"530 Pine St, Los Angeles, CA 90001" +231204,27in 4K Gaming Monitor,1,389.99,07/06/19 12:14,"576 Church St, Boston, MA 02215" +231205,20in Monitor,1,109.99,07/12/19 21:42,"64 Wilson St, New York City, NY 10001" +231206,AA Batteries (4-pack),1,3.84,07/12/19 17:48,"683 Hickory St, San Francisco, CA 94016" +231207,AAA Batteries (4-pack),1,2.99,07/01/19 12:21,"492 Pine St, Atlanta, GA 30301" +231208,Lightning Charging Cable,1,14.95,07/21/19 19:34,"143 Dogwood St, San Francisco, CA 94016" +231209,Wired Headphones,1,11.99,07/09/19 02:45,"82 Church St, Boston, MA 02215" +231210,iPhone,1,700,07/03/19 12:49,"202 Jackson St, Dallas, TX 75001" +231211,AA Batteries (4-pack),1,3.84,07/24/19 10:32,"857 1st St, Austin, TX 73301" +231212,USB-C Charging Cable,1,11.95,07/03/19 21:33,"830 West St, New York City, NY 10001" +231213,USB-C Charging Cable,1,11.95,07/26/19 19:28,"127 Sunset St, New York City, NY 10001" +231214,Lightning Charging Cable,1,14.95,07/28/19 22:30,"504 Maple St, Dallas, TX 75001" +231214,USB-C Charging Cable,1,11.95,07/28/19 22:30,"504 Maple St, Dallas, TX 75001" +231215,USB-C Charging Cable,2,11.95,07/12/19 12:44,"165 Cherry St, Seattle, WA 98101" +231216,Macbook Pro Laptop,1,1700,07/13/19 19:50,"251 Sunset St, San Francisco, CA 94016" +231217,Lightning Charging Cable,1,14.95,07/18/19 11:27,"142 Jackson St, San Francisco, CA 94016" +231218,Apple Airpods Headphones,1,150,07/22/19 13:26,"720 1st St, San Francisco, CA 94016" +231219,Apple Airpods Headphones,1,150,07/15/19 20:07,"683 Washington St, New York City, NY 10001" +231220,Bose SoundSport Headphones,1,99.99,07/04/19 17:32,"533 8th St, Atlanta, GA 30301" +231221,AAA Batteries (4-pack),1,2.99,07/17/19 20:12,"31 West St, Los Angeles, CA 90001" +231222,34in Ultrawide Monitor,1,379.99,07/29/19 14:01,"640 7th St, Seattle, WA 98101" +231223,Bose SoundSport Headphones,1,99.99,07/13/19 04:45,"424 Elm St, Boston, MA 02215" +231224,ThinkPad Laptop,1,999.99,07/22/19 21:07,"949 Park St, Boston, MA 02215" +231225,USB-C Charging Cable,1,11.95,07/15/19 19:41,"450 Jefferson St, Los Angeles, CA 90001" +231226,Apple Airpods Headphones,1,150,07/16/19 15:20,"817 Hill St, San Francisco, CA 94016" +231227,Apple Airpods Headphones,1,150,07/23/19 16:36,"397 Madison St, New York City, NY 10001" +231228,AAA Batteries (4-pack),3,2.99,07/12/19 21:45,"193 Walnut St, San Francisco, CA 94016" +231229,27in FHD Monitor,1,149.99,07/26/19 21:10,"639 Pine St, San Francisco, CA 94016" +231230,Wired Headphones,1,11.99,07/22/19 17:49,"110 4th St, San Francisco, CA 94016" +231231,AA Batteries (4-pack),1,3.84,07/11/19 17:41,"203 Jackson St, Atlanta, GA 30301" +231232,iPhone,1,700,07/01/19 13:44,"298 Main St, Boston, MA 02215" +231233,AAA Batteries (4-pack),1,2.99,07/18/19 14:44,"100 4th St, San Francisco, CA 94016" +231234,iPhone,1,700,07/16/19 14:45,"909 Meadow St, Seattle, WA 98101" +231235,Google Phone,1,600,07/29/19 21:17,"660 Hill St, New York City, NY 10001" +231235,Bose SoundSport Headphones,1,99.99,07/29/19 21:17,"660 Hill St, New York City, NY 10001" +231236,Apple Airpods Headphones,1,150,07/16/19 13:31,"792 Jefferson St, San Francisco, CA 94016" +231237,Lightning Charging Cable,1,14.95,07/24/19 11:55,"325 14th St, San Francisco, CA 94016" +231238,iPhone,1,700,07/19/19 12:04,"262 Park St, Los Angeles, CA 90001" +231239,Google Phone,1,600,07/23/19 09:55,"80 10th St, Boston, MA 02215" +231240,AA Batteries (4-pack),1,3.84,07/24/19 00:04,"964 Adams St, New York City, NY 10001" +231241,Apple Airpods Headphones,1,150,07/24/19 14:11,"526 10th St, Los Angeles, CA 90001" +231242,USB-C Charging Cable,1,11.95,07/15/19 21:04,"682 Main St, Boston, MA 02215" +231243,Google Phone,1,600,07/09/19 15:01,"22 Willow St, Seattle, WA 98101" +231243,USB-C Charging Cable,1,11.95,07/09/19 15:01,"22 Willow St, Seattle, WA 98101" +231244,Lightning Charging Cable,1,14.95,07/05/19 11:02,"569 Willow St, San Francisco, CA 94016" +231245,AA Batteries (4-pack),1,3.84,07/08/19 21:17,"839 Meadow St, San Francisco, CA 94016" +231246,Bose SoundSport Headphones,1,99.99,07/14/19 16:58,"596 10th St, Atlanta, GA 30301" +231247,Google Phone,1,600,07/25/19 22:09,"448 Highland St, Los Angeles, CA 90001" +231248,27in FHD Monitor,1,149.99,07/15/19 19:43,"461 Madison St, Los Angeles, CA 90001" +231249,Vareebadd Phone,1,400,07/14/19 18:22,"876 13th St, Boston, MA 02215" +231250,27in 4K Gaming Monitor,1,389.99,07/22/19 03:47,"937 14th St, San Francisco, CA 94016" +231251,AAA Batteries (4-pack),3,2.99,07/17/19 06:03,"978 Cherry St, Los Angeles, CA 90001" +231252,USB-C Charging Cable,1,11.95,07/26/19 22:28,"498 Lincoln St, Austin, TX 73301" +231253,Flatscreen TV,1,300,07/01/19 18:41,"676 Washington St, Boston, MA 02215" +231254,Wired Headphones,1,11.99,07/26/19 20:42,"374 Washington St, New York City, NY 10001" +231255,AAA Batteries (4-pack),3,2.99,07/18/19 20:26,"708 11th St, New York City, NY 10001" +231256,AA Batteries (4-pack),1,3.84,07/03/19 00:21,"618 Cherry St, Portland, ME 04101" +231257,Bose SoundSport Headphones,1,99.99,07/31/19 09:27,"933 Cherry St, San Francisco, CA 94016" +231258,AAA Batteries (4-pack),2,2.99,07/14/19 20:10,"599 Madison St, Los Angeles, CA 90001" +231259,Wired Headphones,1,11.99,07/18/19 11:09,"62 North St, San Francisco, CA 94016" +231260,USB-C Charging Cable,1,11.95,07/13/19 19:40,"951 Elm St, Dallas, TX 75001" +231261,Vareebadd Phone,1,400,07/04/19 18:45,"622 Lakeview St, San Francisco, CA 94016" +231262,AA Batteries (4-pack),2,3.84,07/01/19 17:17,"800 North St, Dallas, TX 75001" +231263,20in Monitor,1,109.99,07/14/19 17:05,"40 Wilson St, Seattle, WA 98101" +231264,Apple Airpods Headphones,1,150,07/22/19 18:00,"840 Chestnut St, Seattle, WA 98101" +231265,27in FHD Monitor,1,149.99,07/20/19 10:59,"917 Pine St, San Francisco, CA 94016" +231265,USB-C Charging Cable,1,11.95,07/20/19 10:59,"917 Pine St, San Francisco, CA 94016" +231266,Lightning Charging Cable,1,14.95,07/10/19 05:09,"568 West St, New York City, NY 10001" +231267,20in Monitor,1,109.99,07/03/19 22:46,"306 Dogwood St, Dallas, TX 75001" +231268,AAA Batteries (4-pack),1,2.99,07/11/19 07:21,"528 Park St, San Francisco, CA 94016" +231269,AAA Batteries (4-pack),1,2.99,07/13/19 21:05,"825 Hill St, New York City, NY 10001" +231270,USB-C Charging Cable,1,11.95,07/27/19 10:52,"517 Pine St, Atlanta, GA 30301" +231271,AA Batteries (4-pack),2,3.84,07/31/19 13:17,"481 Jefferson St, Atlanta, GA 30301" +231272,Lightning Charging Cable,1,14.95,07/21/19 18:48,"448 Lincoln St, Los Angeles, CA 90001" +231273,Apple Airpods Headphones,1,150,07/24/19 20:37,"225 13th St, Los Angeles, CA 90001" +231274,Bose SoundSport Headphones,1,99.99,07/31/19 08:12,"748 Church St, New York City, NY 10001" +231275,Apple Airpods Headphones,1,150,07/01/19 16:40,"716 Park St, San Francisco, CA 94016" +231276,AAA Batteries (4-pack),1,2.99,07/16/19 04:56,"10 7th St, Los Angeles, CA 90001" +231277,USB-C Charging Cable,1,11.95,07/11/19 11:04,"889 Jefferson St, New York City, NY 10001" +231278,Lightning Charging Cable,1,14.95,07/28/19 15:38,"130 Jefferson St, New York City, NY 10001" +231279,AAA Batteries (4-pack),1,2.99,07/08/19 15:26,"14 Lincoln St, Seattle, WA 98101" +231280,AA Batteries (4-pack),2,3.84,07/20/19 20:53,"297 Adams St, Seattle, WA 98101" +231281,Wired Headphones,1,11.99,07/15/19 11:42,"744 11th St, Portland, OR 97035" +231282,Lightning Charging Cable,1,14.95,07/22/19 21:36,"221 Meadow St, Boston, MA 02215" +231283,Wired Headphones,1,11.99,07/18/19 13:26,"138 Sunset St, Boston, MA 02215" +231284,Wired Headphones,1,11.99,07/18/19 14:17,"143 Center St, Austin, TX 73301" +231285,USB-C Charging Cable,1,11.95,07/19/19 18:44,"103 Chestnut St, Boston, MA 02215" +231286,Macbook Pro Laptop,1,1700,07/26/19 16:45,"189 9th St, Seattle, WA 98101" +231287,USB-C Charging Cable,1,11.95,07/18/19 11:01,"513 Walnut St, San Francisco, CA 94016" +231288,AAA Batteries (4-pack),1,2.99,07/21/19 15:19,"88 Center St, San Francisco, CA 94016" +231289,Bose SoundSport Headphones,1,99.99,07/26/19 17:57,"976 Hickory St, San Francisco, CA 94016" +231290,Google Phone,1,600,07/30/19 13:57,"803 Spruce St, Austin, TX 73301" +231291,AAA Batteries (4-pack),2,2.99,07/10/19 00:42,"642 12th St, Los Angeles, CA 90001" +231292,Lightning Charging Cable,1,14.95,07/12/19 02:34,"605 West St, Los Angeles, CA 90001" +231293,Lightning Charging Cable,1,14.95,07/14/19 20:22,"715 Jefferson St, Austin, TX 73301" +231294,Wired Headphones,1,11.99,07/02/19 20:26,"602 11th St, San Francisco, CA 94016" +231295,Bose SoundSport Headphones,1,99.99,07/04/19 22:04,"347 Lakeview St, New York City, NY 10001" +231296,Lightning Charging Cable,1,14.95,07/13/19 23:14,"437 4th St, Austin, TX 73301" +231297,27in 4K Gaming Monitor,1,389.99,07/11/19 09:11,"928 Meadow St, Los Angeles, CA 90001" +231298,AA Batteries (4-pack),1,3.84,07/10/19 20:18,"3 Elm St, San Francisco, CA 94016" +231299,27in 4K Gaming Monitor,1,389.99,07/04/19 15:34,"851 Pine St, Austin, TX 73301" +231300,Google Phone,1,600,07/15/19 14:46,"108 Forest St, Austin, TX 73301" +231301,27in FHD Monitor,1,149.99,07/24/19 23:24,"853 12th St, Seattle, WA 98101" +231302,AA Batteries (4-pack),1,3.84,07/08/19 15:05,"736 Maple St, Boston, MA 02215" +231303,Wired Headphones,1,11.99,07/06/19 13:13,"307 14th St, Dallas, TX 75001" +231304,Wired Headphones,1,11.99,07/17/19 09:13,"471 Sunset St, San Francisco, CA 94016" +231305,Apple Airpods Headphones,1,150,07/13/19 15:08,"930 Walnut St, Boston, MA 02215" +231306,AA Batteries (4-pack),1,3.84,07/11/19 21:07,"783 South St, Los Angeles, CA 90001" +231307,Apple Airpods Headphones,1,150,07/15/19 17:10,"393 5th St, New York City, NY 10001" +231308,AA Batteries (4-pack),2,3.84,07/17/19 01:30,"285 Willow St, Los Angeles, CA 90001" +231309,20in Monitor,1,109.99,07/17/19 20:19,"733 Dogwood St, Dallas, TX 75001" +231310,Apple Airpods Headphones,1,150,07/30/19 23:33,"203 Willow St, San Francisco, CA 94016" +231311,AA Batteries (4-pack),2,3.84,07/16/19 23:00,"24 Meadow St, Portland, OR 97035" +231312,AA Batteries (4-pack),1,3.84,07/18/19 17:19,"35 Lincoln St, Boston, MA 02215" +231313,Apple Airpods Headphones,1,150,07/06/19 22:31,"956 Lake St, Austin, TX 73301" +231314,Bose SoundSport Headphones,1,99.99,07/25/19 18:11,"472 Johnson St, Los Angeles, CA 90001" +231315,20in Monitor,1,109.99,07/02/19 14:48,"941 Pine St, Boston, MA 02215" +231316,20in Monitor,1,109.99,07/13/19 20:05,"295 2nd St, New York City, NY 10001" +231317,Apple Airpods Headphones,1,150,07/07/19 10:55,"749 Elm St, New York City, NY 10001" +231318,AAA Batteries (4-pack),1,2.99,07/13/19 18:22,"414 Center St, San Francisco, CA 94016" +231319,27in FHD Monitor,1,149.99,07/16/19 15:02,"556 11th St, Los Angeles, CA 90001" +231320,Wired Headphones,1,11.99,07/01/19 17:12,"191 13th St, Boston, MA 02215" +231321,AA Batteries (4-pack),2,3.84,07/03/19 20:00,"539 4th St, Boston, MA 02215" +231322,AA Batteries (4-pack),1,3.84,07/14/19 18:00,"160 Walnut St, Atlanta, GA 30301" +231323,USB-C Charging Cable,1,11.95,07/03/19 16:05,"958 Meadow St, Dallas, TX 75001" +231324,Flatscreen TV,1,300,07/06/19 08:45,"866 Highland St, San Francisco, CA 94016" +231325,AAA Batteries (4-pack),1,2.99,07/17/19 21:22,"897 7th St, Dallas, TX 75001" +231326,AAA Batteries (4-pack),1,2.99,07/25/19 15:11,"491 River St, Atlanta, GA 30301" +231327,Bose SoundSport Headphones,1,99.99,07/22/19 08:19,"453 14th St, New York City, NY 10001" +231328,Wired Headphones,1,11.99,07/05/19 15:42,"43 4th St, Seattle, WA 98101" +231329,AA Batteries (4-pack),1,3.84,07/03/19 08:33,"388 Madison St, San Francisco, CA 94016" +231330,Lightning Charging Cable,1,14.95,07/29/19 05:20,"741 Park St, San Francisco, CA 94016" +231331,AA Batteries (4-pack),1,3.84,07/23/19 11:46,"862 North St, Atlanta, GA 30301" +231332,AA Batteries (4-pack),1,3.84,07/06/19 16:21,"522 Washington St, Boston, MA 02215" +231333,AA Batteries (4-pack),1,3.84,07/07/19 00:44,"774 6th St, New York City, NY 10001" +231334,AA Batteries (4-pack),1,3.84,07/30/19 16:46,"792 Pine St, Boston, MA 02215" +231335,Bose SoundSport Headphones,1,99.99,07/30/19 20:47,"533 Johnson St, Los Angeles, CA 90001" +231336,USB-C Charging Cable,1,11.95,07/12/19 10:54,"127 Maple St, New York City, NY 10001" +231337,Google Phone,1,600,07/20/19 18:32,"325 Lincoln St, Los Angeles, CA 90001" +231337,USB-C Charging Cable,2,11.95,07/20/19 18:32,"325 Lincoln St, Los Angeles, CA 90001" +231338,USB-C Charging Cable,1,11.95,07/14/19 19:28,"147 Ridge St, New York City, NY 10001" +231339,AA Batteries (4-pack),1,3.84,07/07/19 12:16,"490 River St, Los Angeles, CA 90001" +231340,Wired Headphones,1,11.99,07/27/19 08:18,"763 Johnson St, New York City, NY 10001" +231341,Lightning Charging Cable,1,14.95,07/20/19 22:08,"255 Cherry St, Austin, TX 73301" +231342,USB-C Charging Cable,1,11.95,07/09/19 21:03,"432 Washington St, San Francisco, CA 94016" +231343,iPhone,1,700,07/21/19 11:03,"912 7th St, Dallas, TX 75001" +231344,Apple Airpods Headphones,1,150,07/09/19 20:47,"344 Wilson St, San Francisco, CA 94016" +231345,27in 4K Gaming Monitor,1,389.99,07/13/19 16:19,"345 7th St, San Francisco, CA 94016" +231346,iPhone,1,700,07/20/19 13:12,"97 Church St, San Francisco, CA 94016" +231346,Lightning Charging Cable,1,14.95,07/20/19 13:12,"97 Church St, San Francisco, CA 94016" +231347,Flatscreen TV,1,300,07/09/19 09:30,"156 Spruce St, Seattle, WA 98101" +231348,Bose SoundSport Headphones,1,99.99,07/19/19 19:04,"507 Walnut St, San Francisco, CA 94016" +231349,AA Batteries (4-pack),1,3.84,07/21/19 17:20,"871 Washington St, San Francisco, CA 94016" +231350,27in FHD Monitor,1,149.99,07/04/19 07:50,"716 Jefferson St, New York City, NY 10001" +231351,ThinkPad Laptop,1,999.99,07/09/19 20:17,"162 South St, San Francisco, CA 94016" +231352,27in FHD Monitor,1,149.99,07/29/19 19:59,"423 8th St, Portland, ME 04101" +231353,AAA Batteries (4-pack),1,2.99,07/21/19 13:06,"943 4th St, Atlanta, GA 30301" +231354,Wired Headphones,1,11.99,07/24/19 11:04,"535 10th St, New York City, NY 10001" +231355,Apple Airpods Headphones,1,150,07/11/19 06:11,"382 Cherry St, Los Angeles, CA 90001" +231356,Wired Headphones,1,11.99,07/29/19 12:03,"595 10th St, Los Angeles, CA 90001" +231357,AAA Batteries (4-pack),2,2.99,07/12/19 15:55,"100 Sunset St, Seattle, WA 98101" +231358,Bose SoundSport Headphones,1,99.99,07/11/19 09:51,"752 Cedar St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +231359,Flatscreen TV,1,300,07/26/19 18:49,"812 Jefferson St, Atlanta, GA 30301" +231360,ThinkPad Laptop,1,999.99,07/08/19 13:46,"447 6th St, Portland, OR 97035" +231361,USB-C Charging Cable,1,11.95,07/27/19 18:58,"175 Lincoln St, Portland, OR 97035" +231362,34in Ultrawide Monitor,1,379.99,07/27/19 10:40,"815 11th St, Dallas, TX 75001" +231363,USB-C Charging Cable,1,11.95,07/03/19 19:09,"491 Jackson St, Boston, MA 02215" +231364,Apple Airpods Headphones,1,150,07/16/19 23:31,"730 North St, San Francisco, CA 94016" +231365,Bose SoundSport Headphones,1,99.99,07/03/19 17:56,"216 Walnut St, Boston, MA 02215" +231366,27in FHD Monitor,1,149.99,07/13/19 03:38,"532 River St, Portland, OR 97035" +231367,AA Batteries (4-pack),1,3.84,07/20/19 18:42,"19 2nd St, Portland, OR 97035" +,,,,, +231368,AA Batteries (4-pack),1,3.84,07/06/19 07:52,"609 9th St, San Francisco, CA 94016" +231369,Lightning Charging Cable,1,14.95,07/26/19 17:45,"947 Pine St, Boston, MA 02215" +231370,AA Batteries (4-pack),1,3.84,07/15/19 11:43,"195 River St, New York City, NY 10001" +231371,34in Ultrawide Monitor,1,379.99,07/19/19 15:51,"571 Walnut St, San Francisco, CA 94016" +231372,Apple Airpods Headphones,1,150,07/26/19 14:25,"483 South St, Boston, MA 02215" +231373,Apple Airpods Headphones,1,150,07/10/19 17:06,"492 Elm St, Seattle, WA 98101" +231374,AAA Batteries (4-pack),1,2.99,07/08/19 11:04,"684 11th St, Seattle, WA 98101" +231375,Lightning Charging Cable,1,14.95,07/28/19 20:23,"655 Cherry St, San Francisco, CA 94016" +231376,Macbook Pro Laptop,1,1700,07/27/19 18:28,"702 14th St, San Francisco, CA 94016" +231377,AA Batteries (4-pack),1,3.84,07/04/19 21:43,"18 West St, Boston, MA 02215" +231378,Bose SoundSport Headphones,1,99.99,07/08/19 01:31,"421 River St, Boston, MA 02215" +231379,USB-C Charging Cable,2,11.95,07/30/19 09:13,"430 Cedar St, San Francisco, CA 94016" +231380,Apple Airpods Headphones,1,150,07/08/19 08:03,"956 5th St, Atlanta, GA 30301" +231381,USB-C Charging Cable,2,11.95,07/20/19 15:12,"84 10th St, San Francisco, CA 94016" +231382,Wired Headphones,1,11.99,07/01/19 06:36,"910 Park St, Austin, TX 73301" +231383,Lightning Charging Cable,2,14.95,07/19/19 21:01,"487 Lake St, Dallas, TX 75001" +231384,AAA Batteries (4-pack),1,2.99,07/20/19 17:23,"367 Johnson St, San Francisco, CA 94016" +231385,Google Phone,1,600,07/17/19 16:56,"925 Washington St, Dallas, TX 75001" +231385,USB-C Charging Cable,1,11.95,07/17/19 16:56,"925 Washington St, Dallas, TX 75001" +231386,AA Batteries (4-pack),1,3.84,07/29/19 21:37,"145 8th St, Atlanta, GA 30301" +231387,Lightning Charging Cable,1,14.95,07/21/19 11:21,"930 14th St, Seattle, WA 98101" +231388,Bose SoundSport Headphones,1,99.99,07/15/19 10:12,"622 Hill St, Austin, TX 73301" +231389,AAA Batteries (4-pack),1,2.99,07/17/19 21:00,"870 9th St, Austin, TX 73301" +231390,27in 4K Gaming Monitor,1,389.99,07/27/19 20:58,"880 14th St, Los Angeles, CA 90001" +231391,USB-C Charging Cable,1,11.95,07/04/19 17:18,"365 Johnson St, Atlanta, GA 30301" +231392,USB-C Charging Cable,1,11.95,07/11/19 00:49,"69 Jackson St, San Francisco, CA 94016" +231393,AA Batteries (4-pack),1,3.84,07/09/19 13:14,"544 Madison St, New York City, NY 10001" +231394,AAA Batteries (4-pack),1,2.99,07/27/19 13:58,"309 Wilson St, Los Angeles, CA 90001" +231395,Macbook Pro Laptop,1,1700,07/06/19 10:39,"356 Dogwood St, Austin, TX 73301" +231396,ThinkPad Laptop,1,999.99,07/05/19 11:08,"487 West St, Boston, MA 02215" +231396,Google Phone,1,600,07/05/19 11:08,"487 West St, Boston, MA 02215" +231397,USB-C Charging Cable,1,11.95,07/12/19 18:46,"126 Madison St, Dallas, TX 75001" +231398,AA Batteries (4-pack),1,3.84,07/03/19 22:23,"485 Wilson St, Austin, TX 73301" +231399,AA Batteries (4-pack),1,3.84,07/25/19 06:09,"839 Park St, Seattle, WA 98101" +231400,Bose SoundSport Headphones,1,99.99,07/27/19 02:07,"51 6th St, San Francisco, CA 94016" +231401,Bose SoundSport Headphones,1,99.99,07/05/19 19:07,"959 8th St, Atlanta, GA 30301" +231402,Lightning Charging Cable,1,14.95,07/28/19 17:13,"365 Lincoln St, Boston, MA 02215" +231403,USB-C Charging Cable,1,11.95,07/06/19 17:15,"861 Hill St, Los Angeles, CA 90001" +231404,Wired Headphones,1,11.99,07/30/19 19:54,"979 Dogwood St, Boston, MA 02215" +231405,Bose SoundSport Headphones,1,99.99,07/10/19 15:05,"506 Adams St, Seattle, WA 98101" +231406,Bose SoundSport Headphones,1,99.99,07/19/19 18:44,"875 Maple St, San Francisco, CA 94016" +231407,Apple Airpods Headphones,1,150,07/12/19 20:39,"528 Lake St, Seattle, WA 98101" +231408,Vareebadd Phone,1,400,07/02/19 12:35,"217 2nd St, Austin, TX 73301" +231409,Macbook Pro Laptop,1,1700,07/12/19 09:18,"503 Park St, New York City, NY 10001" +231410,20in Monitor,1,109.99,07/23/19 16:14,"222 Main St, Seattle, WA 98101" +231411,Macbook Pro Laptop,1,1700,07/25/19 17:27,"772 10th St, Los Angeles, CA 90001" +231412,Lightning Charging Cable,1,14.95,07/03/19 08:59,"37 10th St, New York City, NY 10001" +231413,Bose SoundSport Headphones,1,99.99,07/09/19 09:45,"729 Pine St, Boston, MA 02215" +231414,Apple Airpods Headphones,1,150,07/04/19 08:47,"500 11th St, New York City, NY 10001" +231415,AAA Batteries (4-pack),3,2.99,07/18/19 14:55,"313 14th St, Atlanta, GA 30301" +231416,Bose SoundSport Headphones,1,99.99,07/27/19 12:11,"95 Maple St, Portland, OR 97035" +231417,AAA Batteries (4-pack),1,2.99,07/05/19 20:10,"399 Washington St, San Francisco, CA 94016" +231418,AA Batteries (4-pack),4,3.84,07/13/19 18:53,"61 Lake St, Seattle, WA 98101" +231419,27in 4K Gaming Monitor,1,389.99,07/04/19 22:03,"983 River St, Portland, OR 97035" +231420,iPhone,1,700,07/22/19 07:46,"264 4th St, Portland, OR 97035" +231421,USB-C Charging Cable,1,11.95,07/03/19 16:33,"291 8th St, Atlanta, GA 30301" +231422,USB-C Charging Cable,1,11.95,07/12/19 16:17,"871 Church St, Portland, ME 04101" +231423,iPhone,1,700,07/28/19 18:39,"433 Elm St, Portland, OR 97035" +231424,iPhone,1,700,07/20/19 15:26,"544 Meadow St, San Francisco, CA 94016" +231425,Wired Headphones,1,11.99,07/21/19 20:43,"859 Cedar St, Dallas, TX 75001" +231426,USB-C Charging Cable,1,11.95,07/08/19 02:34,"106 Spruce St, San Francisco, CA 94016" +231427,AAA Batteries (4-pack),1,2.99,07/19/19 01:00,"890 Lincoln St, Dallas, TX 75001" +231428,Vareebadd Phone,1,400,07/15/19 06:51,"25 Cedar St, New York City, NY 10001" +231428,USB-C Charging Cable,1,11.95,07/15/19 06:51,"25 Cedar St, New York City, NY 10001" +231429,AAA Batteries (4-pack),1,2.99,07/05/19 12:25,"873 Forest St, Seattle, WA 98101" +231430,USB-C Charging Cable,1,11.95,07/11/19 17:38,"158 8th St, San Francisco, CA 94016" +231431,Bose SoundSport Headphones,1,99.99,07/18/19 08:00,"302 10th St, Portland, OR 97035" +231432,AA Batteries (4-pack),1,3.84,07/24/19 09:06,"28 Cedar St, San Francisco, CA 94016" +231433,20in Monitor,1,109.99,08/01/19 02:46,"927 Main St, San Francisco, CA 94016" +231434,Macbook Pro Laptop,1,1700,07/22/19 15:00,"26 Washington St, New York City, NY 10001" +231435,AA Batteries (4-pack),1,3.84,07/14/19 16:49,"23 Wilson St, Dallas, TX 75001" +231436,20in Monitor,1,109.99,07/13/19 10:25,"52 Adams St, New York City, NY 10001" +231437,LG Washing Machine,1,600.0,07/04/19 20:41,"595 Highland St, Los Angeles, CA 90001" +231438,USB-C Charging Cable,1,11.95,07/06/19 16:18,"444 Cedar St, Portland, OR 97035" +231439,20in Monitor,1,109.99,07/07/19 19:31,"783 Lincoln St, Atlanta, GA 30301" +231440,Lightning Charging Cable,1,14.95,07/27/19 20:35,"768 Highland St, Dallas, TX 75001" +231441,Macbook Pro Laptop,1,1700,07/24/19 15:52,"565 Hill St, New York City, NY 10001" +231442,20in Monitor,1,109.99,07/30/19 07:53,"584 Church St, Boston, MA 02215" +231443,Flatscreen TV,1,300,07/06/19 13:52,"122 Washington St, Dallas, TX 75001" +231444,27in 4K Gaming Monitor,1,389.99,07/09/19 09:43,"280 Jackson St, Boston, MA 02215" +231445,Macbook Pro Laptop,1,1700,07/24/19 08:10,"340 Highland St, New York City, NY 10001" +231446,Vareebadd Phone,1,400,07/04/19 17:16,"622 Elm St, Atlanta, GA 30301" +231447,AA Batteries (4-pack),2,3.84,07/25/19 11:00,"355 Johnson St, San Francisco, CA 94016" +231448,AAA Batteries (4-pack),1,2.99,07/14/19 06:56,"416 4th St, New York City, NY 10001" +231449,Lightning Charging Cable,1,14.95,07/13/19 17:29,"220 Main St, Los Angeles, CA 90001" +231450,Apple Airpods Headphones,1,150,07/14/19 11:40,"312 South St, Los Angeles, CA 90001" +231451,AA Batteries (4-pack),1,3.84,07/24/19 14:37,"611 North St, San Francisco, CA 94016" +231452,Wired Headphones,2,11.99,07/03/19 10:15,"157 Johnson St, San Francisco, CA 94016" +231453,27in FHD Monitor,1,149.99,07/24/19 16:34,"680 7th St, San Francisco, CA 94016" +231454,USB-C Charging Cable,1,11.95,07/11/19 18:29,"749 Washington St, San Francisco, CA 94016" +231455,Wired Headphones,1,11.99,07/29/19 20:06,"252 Jackson St, San Francisco, CA 94016" +231456,USB-C Charging Cable,1,11.95,07/10/19 16:36,"108 Lincoln St, San Francisco, CA 94016" +231456,Wired Headphones,1,11.99,07/10/19 16:36,"108 Lincoln St, San Francisco, CA 94016" +231457,Wired Headphones,1,11.99,07/23/19 08:17,"240 Willow St, San Francisco, CA 94016" +231458,USB-C Charging Cable,1,11.95,07/25/19 02:29,"290 4th St, Los Angeles, CA 90001" +231459,AAA Batteries (4-pack),1,2.99,07/07/19 20:16,"255 Dogwood St, Los Angeles, CA 90001" +231460,27in 4K Gaming Monitor,1,389.99,07/23/19 06:00,"482 Highland St, Los Angeles, CA 90001" +231461,Wired Headphones,1,11.99,07/20/19 12:26,"205 Willow St, Dallas, TX 75001" +231461,Google Phone,1,600,07/20/19 12:26,"205 Willow St, Dallas, TX 75001" +231462,27in 4K Gaming Monitor,1,389.99,07/24/19 00:38,"389 Meadow St, Los Angeles, CA 90001" +231463,Lightning Charging Cable,1,14.95,07/29/19 02:02,"591 Pine St, New York City, NY 10001" +231464,20in Monitor,1,109.99,07/02/19 10:38,"691 North St, New York City, NY 10001" +231465,20in Monitor,1,109.99,07/03/19 07:36,"859 Pine St, New York City, NY 10001" +231466,27in 4K Gaming Monitor,1,389.99,07/07/19 11:13,"729 River St, San Francisco, CA 94016" +231467,USB-C Charging Cable,1,11.95,07/27/19 13:24,"738 Adams St, San Francisco, CA 94016" +231468,27in 4K Gaming Monitor,1,389.99,07/29/19 20:38,"22 Spruce St, San Francisco, CA 94016" +231469,27in 4K Gaming Monitor,1,389.99,07/29/19 05:51,"333 7th St, New York City, NY 10001" +231470,Bose SoundSport Headphones,1,99.99,07/21/19 13:45,"739 10th St, San Francisco, CA 94016" +231471,AAA Batteries (4-pack),3,2.99,07/14/19 08:53,"553 8th St, San Francisco, CA 94016" +231472,Google Phone,1,600,07/21/19 22:23,"280 Adams St, Boston, MA 02215" +231473,Apple Airpods Headphones,1,150,07/05/19 18:03,"212 7th St, Los Angeles, CA 90001" +231474,Wired Headphones,1,11.99,07/05/19 14:04,"773 Maple St, Boston, MA 02215" +231475,Bose SoundSport Headphones,1,99.99,07/06/19 09:48,"663 Sunset St, New York City, NY 10001" +231476,AAA Batteries (4-pack),1,2.99,07/13/19 18:30,"572 Highland St, San Francisco, CA 94016" +231477,AAA Batteries (4-pack),2,2.99,07/11/19 17:16,"906 Willow St, San Francisco, CA 94016" +231478,Flatscreen TV,1,300,07/17/19 21:43,"998 8th St, Dallas, TX 75001" +231479,USB-C Charging Cable,1,11.95,07/07/19 14:03,"585 Spruce St, Portland, OR 97035" +231480,Flatscreen TV,1,300,07/09/19 13:05,"668 11th St, Dallas, TX 75001" +231481,USB-C Charging Cable,2,11.95,07/09/19 22:48,"948 Lakeview St, Portland, OR 97035" +231482,34in Ultrawide Monitor,1,379.99,07/31/19 12:33,"893 West St, Portland, OR 97035" +231483,Apple Airpods Headphones,1,150,07/12/19 21:47,"761 9th St, Portland, OR 97035" +231484,AA Batteries (4-pack),1,3.84,07/03/19 07:42,"599 South St, Los Angeles, CA 90001" +231485,Lightning Charging Cable,1,14.95,07/10/19 09:19,"551 North St, Austin, TX 73301" +231486,Apple Airpods Headphones,1,150,07/20/19 17:22,"839 Church St, Dallas, TX 75001" +231487,AAA Batteries (4-pack),1,2.99,07/04/19 17:22,"245 Madison St, Seattle, WA 98101" +231488,34in Ultrawide Monitor,1,379.99,07/08/19 13:22,"347 West St, Portland, OR 97035" +231489,Wired Headphones,1,11.99,07/05/19 14:09,"240 North St, Seattle, WA 98101" +231490,Lightning Charging Cable,1,14.95,07/17/19 23:36,"520 Main St, Boston, MA 02215" +231491,ThinkPad Laptop,1,999.99,07/01/19 20:22,"988 Spruce St, Atlanta, GA 30301" +231492,Wired Headphones,1,11.99,07/20/19 06:23,"750 Chestnut St, San Francisco, CA 94016" +231493,LG Dryer,1,600.0,07/18/19 06:48,"468 Madison St, Portland, OR 97035" +231494,Bose SoundSport Headphones,1,99.99,07/02/19 18:57,"919 River St, Los Angeles, CA 90001" +231495,Macbook Pro Laptop,1,1700,07/30/19 06:39,"446 Lakeview St, Los Angeles, CA 90001" +231496,Wired Headphones,1,11.99,07/15/19 20:36,"230 14th St, Atlanta, GA 30301" +231497,Lightning Charging Cable,1,14.95,07/18/19 12:42,"972 Jefferson St, Dallas, TX 75001" +231498,27in 4K Gaming Monitor,1,389.99,07/25/19 01:11,"229 2nd St, Los Angeles, CA 90001" +231499,AA Batteries (4-pack),1,3.84,07/04/19 08:32,"40 Jefferson St, Portland, OR 97035" +231500,ThinkPad Laptop,1,999.99,07/31/19 08:57,"909 Jackson St, Atlanta, GA 30301" +231501,USB-C Charging Cable,1,11.95,07/21/19 23:09,"333 Meadow St, New York City, NY 10001" +231502,Google Phone,1,600,07/25/19 09:43,"463 Hill St, Dallas, TX 75001" +231503,Bose SoundSport Headphones,1,99.99,07/17/19 05:11,"598 Main St, Los Angeles, CA 90001" +231504,USB-C Charging Cable,1,11.95,07/13/19 10:49,"593 10th St, San Francisco, CA 94016" +231505,AAA Batteries (4-pack),1,2.99,07/30/19 00:00,"916 Forest St, San Francisco, CA 94016" +231506,27in FHD Monitor,1,149.99,07/14/19 17:58,"6 Church St, San Francisco, CA 94016" +231507,Flatscreen TV,1,300,07/16/19 08:39,"406 Spruce St, Los Angeles, CA 90001" +231508,20in Monitor,1,109.99,07/11/19 21:21,"261 Johnson St, Dallas, TX 75001" +231509,34in Ultrawide Monitor,1,379.99,07/17/19 12:38,"285 9th St, New York City, NY 10001" +231510,AAA Batteries (4-pack),1,2.99,07/10/19 17:38,"618 Jefferson St, Austin, TX 73301" +231511,AAA Batteries (4-pack),1,2.99,07/14/19 14:52,"624 Spruce St, Los Angeles, CA 90001" +231512,Wired Headphones,1,11.99,07/17/19 16:44,"125 Park St, San Francisco, CA 94016" +231513,Wired Headphones,1,11.99,07/12/19 16:10,"670 Highland St, Los Angeles, CA 90001" +231514,Bose SoundSport Headphones,1,99.99,07/25/19 21:45,"687 9th St, Los Angeles, CA 90001" +231515,AA Batteries (4-pack),1,3.84,07/02/19 22:22,"762 Jefferson St, Los Angeles, CA 90001" +231516,Wired Headphones,1,11.99,07/01/19 14:28,"445 Maple St, San Francisco, CA 94016" +231517,Lightning Charging Cable,1,14.95,07/28/19 16:56,"988 North St, Seattle, WA 98101" +231518,AAA Batteries (4-pack),1,2.99,07/14/19 11:55,"312 Jackson St, New York City, NY 10001" +231519,AA Batteries (4-pack),1,3.84,07/03/19 14:06,"228 9th St, Austin, TX 73301" +231520,Apple Airpods Headphones,1,150,07/28/19 00:38,"758 2nd St, Los Angeles, CA 90001" +231521,Vareebadd Phone,1,400,07/13/19 11:09,"738 Willow St, San Francisco, CA 94016" +231522,Wired Headphones,1,11.99,07/19/19 11:15,"361 Willow St, San Francisco, CA 94016" +231523,AA Batteries (4-pack),1,3.84,07/03/19 12:28,"487 Center St, Los Angeles, CA 90001" +231524,Lightning Charging Cable,1,14.95,07/12/19 18:20,"508 Lake St, New York City, NY 10001" +231525,Flatscreen TV,1,300,07/21/19 11:13,"741 River St, Dallas, TX 75001" +231526,AAA Batteries (4-pack),1,2.99,07/18/19 21:02,"664 1st St, Boston, MA 02215" +231527,34in Ultrawide Monitor,1,379.99,07/23/19 14:38,"267 Sunset St, Los Angeles, CA 90001" +231528,AA Batteries (4-pack),1,3.84,07/10/19 21:08,"613 Hill St, Los Angeles, CA 90001" +231529,AA Batteries (4-pack),1,3.84,07/21/19 07:57,"624 Center St, New York City, NY 10001" +231530,AA Batteries (4-pack),1,3.84,07/08/19 13:43,"275 2nd St, San Francisco, CA 94016" +231531,Wired Headphones,1,11.99,07/01/19 18:24,"731 Pine St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +231532,Bose SoundSport Headphones,1,99.99,07/18/19 11:25,"910 Jefferson St, San Francisco, CA 94016" +231533,Macbook Pro Laptop,1,1700,07/15/19 17:13,"902 Cherry St, Los Angeles, CA 90001" +231533,Lightning Charging Cable,1,14.95,07/15/19 17:13,"902 Cherry St, Los Angeles, CA 90001" +231534,Apple Airpods Headphones,1,150,07/30/19 01:29,"711 Highland St, Portland, OR 97035" +231535,iPhone,1,700,07/24/19 19:58,"961 6th St, Portland, OR 97035" +231535,Wired Headphones,1,11.99,07/24/19 19:58,"961 6th St, Portland, OR 97035" +231536,AA Batteries (4-pack),1,3.84,07/29/19 16:48,"3 Madison St, San Francisco, CA 94016" +231537,27in FHD Monitor,1,149.99,07/11/19 23:08,"958 Meadow St, Boston, MA 02215" +231538,AA Batteries (4-pack),1,3.84,07/07/19 00:01,"507 6th St, Seattle, WA 98101" +231539,Macbook Pro Laptop,1,1700,07/25/19 19:21,"125 Wilson St, San Francisco, CA 94016" +231540,Wired Headphones,1,11.99,07/27/19 12:22,"418 Jefferson St, Dallas, TX 75001" +231541,USB-C Charging Cable,1,11.95,07/16/19 10:36,"986 Lakeview St, Portland, OR 97035" +231542,Flatscreen TV,1,300,07/24/19 18:48,"264 North St, Dallas, TX 75001" +231543,20in Monitor,1,109.99,07/02/19 16:50,"191 Dogwood St, New York City, NY 10001" +231544,AA Batteries (4-pack),1,3.84,07/01/19 11:55,"701 6th St, Portland, OR 97035" +231545,27in 4K Gaming Monitor,1,389.99,07/23/19 18:07,"820 Maple St, Dallas, TX 75001" +231546,Apple Airpods Headphones,1,150,07/12/19 20:56,"478 Elm St, Los Angeles, CA 90001" +231547,27in FHD Monitor,1,149.99,07/12/19 21:13,"478 South St, Los Angeles, CA 90001" +231548,34in Ultrawide Monitor,1,379.99,07/02/19 17:19,"951 13th St, San Francisco, CA 94016" +231549,USB-C Charging Cable,1,11.95,07/29/19 16:40,"300 Adams St, Atlanta, GA 30301" +231550,Lightning Charging Cable,1,14.95,07/09/19 23:17,"624 Spruce St, Atlanta, GA 30301" +231551,Flatscreen TV,1,300,07/08/19 17:30,"917 9th St, New York City, NY 10001" +231552,34in Ultrawide Monitor,1,379.99,07/11/19 19:32,"287 Dogwood St, Los Angeles, CA 90001" +231553,Macbook Pro Laptop,1,1700,07/28/19 16:55,"62 Walnut St, New York City, NY 10001" +231554,AA Batteries (4-pack),1,3.84,07/18/19 10:47,"320 Jefferson St, San Francisco, CA 94016" +231555,Google Phone,1,600,07/11/19 20:51,"707 Hickory St, Austin, TX 73301" +231556,USB-C Charging Cable,1,11.95,07/15/19 21:15,"306 Elm St, Los Angeles, CA 90001" +231557,Apple Airpods Headphones,1,150,07/13/19 12:59,"377 Willow St, Los Angeles, CA 90001" +231558,27in 4K Gaming Monitor,1,389.99,07/29/19 17:22,"187 North St, Boston, MA 02215" +231559,Bose SoundSport Headphones,1,99.99,07/06/19 21:14,"366 1st St, Boston, MA 02215" +231560,AAA Batteries (4-pack),1,2.99,07/05/19 17:10,"675 Lakeview St, New York City, NY 10001" +231561,AA Batteries (4-pack),1,3.84,07/26/19 11:45,"572 South St, Atlanta, GA 30301" +231562,AA Batteries (4-pack),1,3.84,07/29/19 16:43,"318 Pine St, Atlanta, GA 30301" +231563,Macbook Pro Laptop,1,1700,07/02/19 08:00,"617 Walnut St, Seattle, WA 98101" +231564,AA Batteries (4-pack),2,3.84,07/08/19 09:20,"908 Jefferson St, New York City, NY 10001" +231565,Wired Headphones,1,11.99,07/20/19 20:38,"708 Walnut St, San Francisco, CA 94016" +231566,Wired Headphones,1,11.99,07/27/19 10:05,"550 Hickory St, Los Angeles, CA 90001" +231567,Apple Airpods Headphones,1,150,07/14/19 17:54,"138 Walnut St, Atlanta, GA 30301" +231568,Lightning Charging Cable,1,14.95,07/14/19 00:55,"384 1st St, Los Angeles, CA 90001" +231569,27in FHD Monitor,1,149.99,07/01/19 16:23,"929 10th St, San Francisco, CA 94016" +231570,AA Batteries (4-pack),1,3.84,07/23/19 12:14,"546 Walnut St, Dallas, TX 75001" +231571,34in Ultrawide Monitor,1,379.99,07/07/19 10:19,"288 Church St, Los Angeles, CA 90001" +231572,Apple Airpods Headphones,1,150,07/08/19 13:24,"102 River St, Seattle, WA 98101" +231573,AAA Batteries (4-pack),1,2.99,07/06/19 11:47,"661 Maple St, San Francisco, CA 94016" +231574,27in FHD Monitor,1,149.99,07/19/19 02:47,"983 Elm St, San Francisco, CA 94016" +231575,iPhone,1,700,07/25/19 12:12,"20 4th St, Austin, TX 73301" +231576,USB-C Charging Cable,1,11.95,07/03/19 17:06,"131 Main St, Seattle, WA 98101" +231577,Apple Airpods Headphones,1,150,07/31/19 09:53,"636 Madison St, Los Angeles, CA 90001" +231578,USB-C Charging Cable,1,11.95,07/02/19 23:02,"769 Dogwood St, Los Angeles, CA 90001" +231579,20in Monitor,1,109.99,07/15/19 15:24,"598 Lincoln St, Austin, TX 73301" +231580,Lightning Charging Cable,1,14.95,07/25/19 20:21,"175 Chestnut St, New York City, NY 10001" +231581,27in FHD Monitor,1,149.99,07/08/19 23:13,"823 Spruce St, Atlanta, GA 30301" +231582,Lightning Charging Cable,1,14.95,07/15/19 13:58,"777 Willow St, Seattle, WA 98101" +231583,ThinkPad Laptop,1,999.99,07/09/19 13:32,"878 Lincoln St, Los Angeles, CA 90001" +231584,20in Monitor,1,109.99,07/04/19 19:01,"999 Hill St, Los Angeles, CA 90001" +231585,Wired Headphones,1,11.99,07/14/19 22:04,"216 Dogwood St, Boston, MA 02215" +231586,AAA Batteries (4-pack),2,2.99,07/19/19 18:43,"973 6th St, San Francisco, CA 94016" +231587,Lightning Charging Cable,1,14.95,07/19/19 13:27,"747 Jefferson St, Boston, MA 02215" +231588,Google Phone,1,600,07/28/19 20:13,"647 South St, San Francisco, CA 94016" +231589,USB-C Charging Cable,1,11.95,07/07/19 14:17,"167 Wilson St, San Francisco, CA 94016" +231590,AAA Batteries (4-pack),2,2.99,07/30/19 18:48,"459 Church St, San Francisco, CA 94016" +231591,27in FHD Monitor,1,149.99,07/26/19 06:03,"122 Center St, New York City, NY 10001" +231592,27in FHD Monitor,1,149.99,07/25/19 12:37,"978 Cherry St, San Francisco, CA 94016" +231593,USB-C Charging Cable,1,11.95,07/04/19 23:58,"879 Elm St, Dallas, TX 75001" +231594,AA Batteries (4-pack),1,3.84,07/29/19 10:43,"157 2nd St, Atlanta, GA 30301" +231595,USB-C Charging Cable,1,11.95,07/17/19 18:37,"972 10th St, Boston, MA 02215" +231596,Wired Headphones,1,11.99,07/21/19 13:23,"890 Madison St, Atlanta, GA 30301" +231597,AA Batteries (4-pack),1,3.84,07/27/19 17:08,"248 Willow St, San Francisco, CA 94016" +231598,AA Batteries (4-pack),2,3.84,07/23/19 14:36,"606 Dogwood St, Los Angeles, CA 90001" +231599,Lightning Charging Cable,1,14.95,07/09/19 11:06,"100 Center St, Dallas, TX 75001" +231600,AAA Batteries (4-pack),1,2.99,07/13/19 08:48,"809 Meadow St, Portland, OR 97035" +231601,Wired Headphones,1,11.99,07/25/19 00:02,"591 Meadow St, Los Angeles, CA 90001" +231602,Apple Airpods Headphones,1,150,07/24/19 19:42,"986 Elm St, Portland, OR 97035" +231603,USB-C Charging Cable,1,11.95,07/31/19 21:56,"694 Hill St, San Francisco, CA 94016" +231604,AA Batteries (4-pack),1,3.84,07/30/19 00:29,"211 Park St, Dallas, TX 75001" +231605,27in FHD Monitor,1,149.99,07/03/19 17:09,"246 Dogwood St, Portland, OR 97035" +231606,Flatscreen TV,1,300,07/20/19 22:15,"676 4th St, Dallas, TX 75001" +231607,Apple Airpods Headphones,1,150,07/31/19 12:11,"25 Church St, Atlanta, GA 30301" +231608,AAA Batteries (4-pack),1,2.99,07/08/19 14:22,"542 Lincoln St, San Francisco, CA 94016" +231608,AAA Batteries (4-pack),2,2.99,07/08/19 14:22,"542 Lincoln St, San Francisco, CA 94016" +231609,27in FHD Monitor,1,149.99,07/30/19 20:49,"95 Johnson St, San Francisco, CA 94016" +231610,AA Batteries (4-pack),1,3.84,07/09/19 15:40,"172 Adams St, Los Angeles, CA 90001" +231611,LG Dryer,1,600.0,07/12/19 09:40,"849 Meadow St, San Francisco, CA 94016" +231612,AAA Batteries (4-pack),1,2.99,07/21/19 14:00,"480 4th St, Seattle, WA 98101" +231613,Lightning Charging Cable,2,14.95,07/09/19 17:09,"304 Chestnut St, Boston, MA 02215" +231614,Google Phone,1,600,07/09/19 09:07,"100 4th St, Atlanta, GA 30301" +231615,Apple Airpods Headphones,1,150,07/04/19 02:01,"958 Elm St, New York City, NY 10001" +231616,AA Batteries (4-pack),1,3.84,07/09/19 21:45,"189 4th St, Boston, MA 02215" +231617,27in 4K Gaming Monitor,1,389.99,07/06/19 19:22,"886 Cedar St, Seattle, WA 98101" +231618,Apple Airpods Headphones,1,150,07/23/19 17:22,"429 Church St, San Francisco, CA 94016" +231619,Lightning Charging Cable,1,14.95,07/27/19 08:50,"739 14th St, New York City, NY 10001" +231620,AAA Batteries (4-pack),1,2.99,07/02/19 23:36,"122 Lincoln St, San Francisco, CA 94016" +231621,Bose SoundSport Headphones,1,99.99,07/18/19 19:53,"338 Forest St, Austin, TX 73301" +231622,Flatscreen TV,1,300,07/23/19 10:26,"992 Lincoln St, Portland, ME 04101" +231623,Wired Headphones,1,11.99,07/01/19 08:58,"742 Cherry St, New York City, NY 10001" +231624,Apple Airpods Headphones,1,150,07/30/19 08:17,"750 Sunset St, Portland, ME 04101" +231625,USB-C Charging Cable,1,11.95,07/15/19 12:07,"114 Elm St, San Francisco, CA 94016" +231626,Wired Headphones,1,11.99,07/26/19 10:59,"109 Cherry St, San Francisco, CA 94016" +231627,USB-C Charging Cable,1,11.95,07/28/19 15:15,"917 West St, Atlanta, GA 30301" +231628,AA Batteries (4-pack),1,3.84,07/31/19 22:34,"654 Highland St, Dallas, TX 75001" +231629,AA Batteries (4-pack),1,3.84,07/11/19 06:23,"284 Dogwood St, San Francisco, CA 94016" +231630,Lightning Charging Cable,2,14.95,07/21/19 16:00,"106 Dogwood St, Austin, TX 73301" +231631,Wired Headphones,1,11.99,07/30/19 19:38,"37 11th St, San Francisco, CA 94016" +231632,34in Ultrawide Monitor,1,379.99,07/14/19 10:23,"914 North St, Los Angeles, CA 90001" +231633,AA Batteries (4-pack),1,3.84,07/04/19 14:56,"636 Maple St, San Francisco, CA 94016" +231634,Macbook Pro Laptop,1,1700,07/21/19 10:04,"130 2nd St, New York City, NY 10001" +231634,AA Batteries (4-pack),1,3.84,07/21/19 10:04,"130 2nd St, New York City, NY 10001" +231635,Apple Airpods Headphones,1,150,07/28/19 16:10,"798 Washington St, New York City, NY 10001" +231636,27in 4K Gaming Monitor,1,389.99,07/13/19 11:00,"79 8th St, Boston, MA 02215" +231637,Wired Headphones,1,11.99,07/02/19 16:13,"44 Dogwood St, San Francisco, CA 94016" +231638,Bose SoundSport Headphones,1,99.99,07/01/19 21:36,"27 Sunset St, Boston, MA 02215" +231639,34in Ultrawide Monitor,1,379.99,07/28/19 21:16,"819 11th St, Portland, OR 97035" +231640,AAA Batteries (4-pack),1,2.99,07/18/19 09:39,"403 Pine St, Seattle, WA 98101" +231641,Lightning Charging Cable,1,14.95,07/26/19 15:26,"105 River St, Los Angeles, CA 90001" +231642,Apple Airpods Headphones,1,150,07/17/19 11:40,"438 6th St, Seattle, WA 98101" +231643,USB-C Charging Cable,1,11.95,07/21/19 09:27,"612 Lake St, Austin, TX 73301" +231644,AAA Batteries (4-pack),1,2.99,07/20/19 23:13,"343 Hill St, Portland, ME 04101" +231645,Wired Headphones,3,11.99,07/30/19 22:14,"838 Lincoln St, Dallas, TX 75001" +231646,USB-C Charging Cable,1,11.95,07/25/19 16:34,"24 Hickory St, New York City, NY 10001" +231647,AAA Batteries (4-pack),1,2.99,07/01/19 21:10,"882 Main St, Los Angeles, CA 90001" +231648,Apple Airpods Headphones,1,150,07/05/19 19:39,"757 Johnson St, San Francisco, CA 94016" +231649,34in Ultrawide Monitor,1,379.99,07/07/19 19:36,"833 Sunset St, New York City, NY 10001" +231650,iPhone,1,700,07/29/19 22:31,"187 4th St, Los Angeles, CA 90001" +231651,Wired Headphones,1,11.99,07/06/19 15:59,"56 13th St, New York City, NY 10001" +231652,Lightning Charging Cable,1,14.95,07/01/19 23:37,"407 Park St, San Francisco, CA 94016" +231653,Lightning Charging Cable,1,14.95,07/20/19 18:57,"824 14th St, Dallas, TX 75001" +231654,Lightning Charging Cable,1,14.95,07/05/19 21:19,"176 12th St, San Francisco, CA 94016" +231655,Wired Headphones,1,11.99,07/09/19 11:15,"915 Highland St, Los Angeles, CA 90001" +231656,AA Batteries (4-pack),1,3.84,07/04/19 16:28,"335 13th St, San Francisco, CA 94016" +231657,Lightning Charging Cable,2,14.95,07/03/19 08:18,"405 10th St, Atlanta, GA 30301" +231658,AA Batteries (4-pack),1,3.84,07/08/19 20:14,"775 Willow St, New York City, NY 10001" +231659,Wired Headphones,1,11.99,07/05/19 20:17,"542 Jefferson St, Los Angeles, CA 90001" +231660,AAA Batteries (4-pack),1,2.99,07/10/19 15:13,"135 Walnut St, Los Angeles, CA 90001" +231661,AA Batteries (4-pack),1,3.84,07/13/19 07:59,"258 River St, Atlanta, GA 30301" +231662,27in 4K Gaming Monitor,1,389.99,07/08/19 12:36,"943 Washington St, Boston, MA 02215" +231663,Apple Airpods Headphones,1,150,07/08/19 21:33,"72 Ridge St, Portland, OR 97035" +231664,AAA Batteries (4-pack),2,2.99,07/08/19 20:07,"759 1st St, San Francisco, CA 94016" +231665,Apple Airpods Headphones,1,150,07/03/19 18:19,"515 Church St, New York City, NY 10001" +231666,27in FHD Monitor,1,149.99,07/30/19 18:27,"65 Forest St, New York City, NY 10001" +231667,Lightning Charging Cable,1,14.95,07/19/19 15:10,"861 Park St, Dallas, TX 75001" +231668,USB-C Charging Cable,1,11.95,07/03/19 15:30,"21 Lake St, Los Angeles, CA 90001" +231669,USB-C Charging Cable,1,11.95,07/08/19 23:21,"949 Hickory St, Seattle, WA 98101" +231670,Macbook Pro Laptop,1,1700,07/26/19 12:53,"934 Meadow St, Portland, ME 04101" +231671,USB-C Charging Cable,1,11.95,07/28/19 08:30,"689 Church St, Boston, MA 02215" +231672,27in FHD Monitor,1,149.99,07/26/19 21:34,"66 Johnson St, San Francisco, CA 94016" +231672,Wired Headphones,1,11.99,07/26/19 21:34,"66 Johnson St, San Francisco, CA 94016" +231673,Flatscreen TV,1,300,07/22/19 14:37,"682 Pine St, Austin, TX 73301" +231674,Bose SoundSport Headphones,1,99.99,07/10/19 11:09,"412 Meadow St, Boston, MA 02215" +231675,USB-C Charging Cable,1,11.95,07/15/19 12:06,"417 10th St, Dallas, TX 75001" +231676,Apple Airpods Headphones,1,150,07/20/19 20:09,"334 Walnut St, Portland, OR 97035" +231677,AAA Batteries (4-pack),4,2.99,07/06/19 15:08,"191 South St, San Francisco, CA 94016" +231678,27in 4K Gaming Monitor,1,389.99,07/05/19 20:09,"199 Elm St, Dallas, TX 75001" +231679,Macbook Pro Laptop,1,1700,07/16/19 21:12,"918 Spruce St, New York City, NY 10001" +231680,34in Ultrawide Monitor,1,379.99,07/09/19 15:24,"653 Church St, San Francisco, CA 94016" +231681,Wired Headphones,1,11.99,07/09/19 23:58,"709 Hickory St, Los Angeles, CA 90001" +231682,Lightning Charging Cable,1,14.95,07/03/19 20:39,"553 14th St, Seattle, WA 98101" +231683,AAA Batteries (4-pack),1,2.99,07/22/19 00:53,"786 Walnut St, Atlanta, GA 30301" +231684,AA Batteries (4-pack),1,3.84,07/30/19 15:00,"477 Willow St, Los Angeles, CA 90001" +231685,34in Ultrawide Monitor,1,379.99,07/03/19 12:02,"462 11th St, San Francisco, CA 94016" +231686,Apple Airpods Headphones,1,150,07/21/19 11:32,"449 Ridge St, Atlanta, GA 30301" +231687,Wired Headphones,1,11.99,07/21/19 08:25,"674 Spruce St, Los Angeles, CA 90001" +231688,Apple Airpods Headphones,1,150,07/12/19 21:19,"532 Wilson St, New York City, NY 10001" +231689,Bose SoundSport Headphones,1,99.99,07/07/19 19:33,"195 8th St, Portland, ME 04101" +231690,34in Ultrawide Monitor,1,379.99,07/05/19 14:55,"397 Chestnut St, New York City, NY 10001" +231691,Wired Headphones,1,11.99,07/04/19 17:40,"10 4th St, New York City, NY 10001" +231692,Apple Airpods Headphones,1,150,07/30/19 11:02,"227 14th St, Seattle, WA 98101" +231693,Bose SoundSport Headphones,1,99.99,07/03/19 08:22,"662 Madison St, Austin, TX 73301" +231694,27in 4K Gaming Monitor,1,389.99,07/22/19 11:59,"848 Adams St, New York City, NY 10001" +231695,Wired Headphones,1,11.99,07/10/19 13:49,"913 7th St, Dallas, TX 75001" +231696,USB-C Charging Cable,1,11.95,07/15/19 16:13,"856 2nd St, New York City, NY 10001" +231697,Flatscreen TV,1,300,07/11/19 18:58,"890 Adams St, Atlanta, GA 30301" +231697,Lightning Charging Cable,1,14.95,07/11/19 18:58,"890 Adams St, Atlanta, GA 30301" +231698,27in 4K Gaming Monitor,1,389.99,07/07/19 22:11,"197 Chestnut St, Los Angeles, CA 90001" +231699,Wired Headphones,1,11.99,07/11/19 19:09,"323 Elm St, Los Angeles, CA 90001" +231700,Lightning Charging Cable,1,14.95,07/12/19 23:11,"642 Ridge St, San Francisco, CA 94016" +231701,Lightning Charging Cable,1,14.95,07/19/19 22:58,"328 Lakeview St, Atlanta, GA 30301" +231702,Flatscreen TV,1,300,07/26/19 14:22,"57 Dogwood St, San Francisco, CA 94016" +231703,Wired Headphones,1,11.99,07/26/19 18:32,"636 9th St, Dallas, TX 75001" +231704,27in 4K Gaming Monitor,1,389.99,07/16/19 23:56,"815 Wilson St, Atlanta, GA 30301" +231705,AAA Batteries (4-pack),1,2.99,07/30/19 22:35,"699 Forest St, Dallas, TX 75001" +231706,Google Phone,1,600,07/28/19 19:56,"791 Sunset St, San Francisco, CA 94016" +231707,Lightning Charging Cable,1,14.95,07/14/19 20:07,"954 Wilson St, New York City, NY 10001" +231708,27in 4K Gaming Monitor,1,389.99,07/04/19 11:34,"571 Ridge St, Los Angeles, CA 90001" +231709,iPhone,1,700,07/11/19 22:02,"243 West St, San Francisco, CA 94016" +231710,Google Phone,1,600,07/07/19 22:35,"123 Cedar St, Dallas, TX 75001" +231711,34in Ultrawide Monitor,1,379.99,07/28/19 09:21,"528 Lincoln St, Los Angeles, CA 90001" +231712,AA Batteries (4-pack),2,3.84,07/02/19 10:15,"681 Madison St, Los Angeles, CA 90001" +231713,AAA Batteries (4-pack),1,2.99,07/07/19 19:58,"756 7th St, Boston, MA 02215" +231714,Wired Headphones,1,11.99,07/19/19 17:50,"806 Jefferson St, Los Angeles, CA 90001" +231715,Apple Airpods Headphones,1,150,07/31/19 20:29,"512 4th St, Los Angeles, CA 90001" +231716,AA Batteries (4-pack),1,3.84,07/13/19 13:04,"572 Jackson St, New York City, NY 10001" +231717,Bose SoundSport Headphones,1,99.99,07/20/19 10:22,"998 Dogwood St, San Francisco, CA 94016" +231718,AA Batteries (4-pack),1,3.84,07/27/19 11:43,"435 4th St, Seattle, WA 98101" +231719,AA Batteries (4-pack),1,3.84,07/02/19 20:33,"917 Forest St, Boston, MA 02215" +231720,Lightning Charging Cable,1,14.95,07/08/19 18:57,"100 7th St, San Francisco, CA 94016" +231721,Lightning Charging Cable,1,14.95,07/05/19 22:16,"405 Jackson St, Los Angeles, CA 90001" +231722,Apple Airpods Headphones,1,150,07/26/19 08:47,"778 Pine St, Seattle, WA 98101" +231723,Bose SoundSport Headphones,1,99.99,07/17/19 11:50,"683 Jefferson St, San Francisco, CA 94016" +231724,iPhone,1,700,07/08/19 15:21,"853 West St, Los Angeles, CA 90001" +231725,Wired Headphones,4,11.99,07/31/19 16:59,"142 Cedar St, Los Angeles, CA 90001" +231726,Lightning Charging Cable,1,14.95,07/03/19 10:37,"108 Maple St, San Francisco, CA 94016" +231727,AA Batteries (4-pack),1,3.84,07/28/19 20:36,"554 Lakeview St, San Francisco, CA 94016" +231728,Vareebadd Phone,1,400,07/15/19 11:21,"716 Forest St, San Francisco, CA 94016" +231728,USB-C Charging Cable,1,11.95,07/15/19 11:21,"716 Forest St, San Francisco, CA 94016" +231729,Apple Airpods Headphones,1,150,07/24/19 11:34,"339 Forest St, Portland, OR 97035" +231730,AA Batteries (4-pack),1,3.84,07/06/19 18:25,"401 Wilson St, San Francisco, CA 94016" +231731,Lightning Charging Cable,1,14.95,07/05/19 22:26,"314 14th St, Seattle, WA 98101" +231732,34in Ultrawide Monitor,1,379.99,07/25/19 11:05,"355 Chestnut St, Boston, MA 02215" +231733,Lightning Charging Cable,1,14.95,07/31/19 10:38,"652 Hill St, Atlanta, GA 30301" +231734,Lightning Charging Cable,1,14.95,07/12/19 23:00,"987 Wilson St, San Francisco, CA 94016" +231735,AAA Batteries (4-pack),2,2.99,07/05/19 16:15,"286 Elm St, Seattle, WA 98101" +231736,AA Batteries (4-pack),2,3.84,07/28/19 19:44,"598 Wilson St, San Francisco, CA 94016" +231737,Wired Headphones,1,11.99,07/14/19 15:44,"54 Elm St, Portland, OR 97035" +231738,Bose SoundSport Headphones,1,99.99,07/19/19 13:41,"24 2nd St, Seattle, WA 98101" +231739,34in Ultrawide Monitor,1,379.99,07/04/19 01:50,"547 Wilson St, Portland, ME 04101" +231740,AA Batteries (4-pack),1,3.84,07/27/19 07:27,"457 Dogwood St, Dallas, TX 75001" +231741,Lightning Charging Cable,1,14.95,07/30/19 10:25,"85 14th St, Austin, TX 73301" +231742,iPhone,1,700,07/16/19 19:16,"244 Main St, Dallas, TX 75001" +231743,27in 4K Gaming Monitor,1,389.99,07/19/19 22:43,"735 Park St, Los Angeles, CA 90001" +231744,AAA Batteries (4-pack),3,2.99,07/09/19 17:11,"741 Meadow St, New York City, NY 10001" +231745,ThinkPad Laptop,1,999.99,07/07/19 12:56,"582 Cedar St, San Francisco, CA 94016" +231746,Lightning Charging Cable,1,14.95,07/30/19 19:00,"487 Park St, New York City, NY 10001" +231747,Google Phone,1,600,07/07/19 10:40,"812 Dogwood St, San Francisco, CA 94016" +231748,Wired Headphones,1,11.99,07/14/19 14:50,"38 11th St, New York City, NY 10001" +231749,Lightning Charging Cable,1,14.95,07/13/19 14:50,"343 12th St, Los Angeles, CA 90001" +231750,Bose SoundSport Headphones,1,99.99,07/31/19 15:24,"807 13th St, Boston, MA 02215" +231751,USB-C Charging Cable,1,11.95,07/31/19 23:52,"29 2nd St, Los Angeles, CA 90001" +231752,USB-C Charging Cable,1,11.95,07/19/19 13:36,"945 Lake St, Los Angeles, CA 90001" +231753,Wired Headphones,1,11.99,07/25/19 22:05,"564 Jefferson St, Seattle, WA 98101" +231754,AAA Batteries (4-pack),2,2.99,07/09/19 19:34,"940 Meadow St, Los Angeles, CA 90001" +231755,Lightning Charging Cable,1,14.95,07/21/19 13:21,"139 Cedar St, Los Angeles, CA 90001" +231756,ThinkPad Laptop,1,999.99,07/05/19 20:01,"205 Jefferson St, Atlanta, GA 30301" +231757,Apple Airpods Headphones,1,150,07/03/19 16:30,"797 10th St, New York City, NY 10001" +231758,USB-C Charging Cable,1,11.95,07/30/19 22:02,"903 14th St, Portland, OR 97035" +231759,Vareebadd Phone,1,400,07/14/19 15:48,"842 Madison St, Portland, OR 97035" +231760,Lightning Charging Cable,1,14.95,07/29/19 16:22,"664 Park St, New York City, NY 10001" +231761,Apple Airpods Headphones,1,150,07/03/19 17:08,"788 Lakeview St, Seattle, WA 98101" +231762,20in Monitor,1,109.99,07/19/19 11:39,"847 13th St, Dallas, TX 75001" +231763,Lightning Charging Cable,1,14.95,07/23/19 09:16,"78 10th St, San Francisco, CA 94016" +231764,iPhone,1,700,07/01/19 20:04,"696 Church St, San Francisco, CA 94016" +231765,AA Batteries (4-pack),1,3.84,07/10/19 22:29,"442 South St, Los Angeles, CA 90001" +231766,27in FHD Monitor,1,149.99,07/29/19 21:24,"695 Dogwood St, Austin, TX 73301" +231767,AAA Batteries (4-pack),1,2.99,07/04/19 14:29,"711 Hill St, Portland, OR 97035" +231768,AAA Batteries (4-pack),1,2.99,07/21/19 16:36,"969 Ridge St, San Francisco, CA 94016" +231769,Wired Headphones,1,11.99,07/31/19 08:10,"626 5th St, Atlanta, GA 30301" +231770,Wired Headphones,1,11.99,07/14/19 19:31,"6 13th St, Dallas, TX 75001" +231771,AAA Batteries (4-pack),1,2.99,07/06/19 10:23,"742 4th St, Los Angeles, CA 90001" +231772,Bose SoundSport Headphones,1,99.99,07/14/19 18:01,"848 Park St, Atlanta, GA 30301" +231773,AA Batteries (4-pack),1,3.84,07/20/19 19:14,"616 West St, New York City, NY 10001" +231774,Apple Airpods Headphones,1,150,07/03/19 17:02,"72 Pine St, Dallas, TX 75001" +231775,Bose SoundSport Headphones,1,99.99,07/22/19 20:30,"66 Lake St, San Francisco, CA 94016" +231776,USB-C Charging Cable,1,11.95,07/18/19 15:16,"624 Highland St, Los Angeles, CA 90001" +231777,34in Ultrawide Monitor,1,379.99,07/03/19 13:55,"951 Madison St, Portland, OR 97035" +231778,Wired Headphones,1,11.99,07/16/19 10:49,"114 14th St, Dallas, TX 75001" +231779,AAA Batteries (4-pack),1,2.99,07/17/19 14:22,"5 South St, Atlanta, GA 30301" +231780,Lightning Charging Cable,1,14.95,07/11/19 21:31,"788 West St, New York City, NY 10001" +231781,Bose SoundSport Headphones,1,99.99,07/06/19 19:23,"432 North St, Austin, TX 73301" +231782,27in 4K Gaming Monitor,1,389.99,07/19/19 09:45,"2 Lake St, Seattle, WA 98101" +231783,AA Batteries (4-pack),3,3.84,07/22/19 19:49,"84 Adams St, Atlanta, GA 30301" +231784,34in Ultrawide Monitor,1,379.99,07/14/19 12:35,"7 Elm St, Boston, MA 02215" +231785,Apple Airpods Headphones,1,150,07/08/19 15:49,"184 2nd St, Dallas, TX 75001" +231786,27in 4K Gaming Monitor,1,389.99,07/19/19 14:00,"360 Chestnut St, Austin, TX 73301" +231787,Wired Headphones,1,11.99,07/01/19 18:26,"300 Adams St, Atlanta, GA 30301" +231788,Vareebadd Phone,1,400,07/08/19 22:09,"646 Madison St, Seattle, WA 98101" +231789,AA Batteries (4-pack),2,3.84,07/16/19 14:11,"411 South St, Seattle, WA 98101" +231790,USB-C Charging Cable,1,11.95,07/25/19 20:51,"483 Lakeview St, San Francisco, CA 94016" +231791,USB-C Charging Cable,1,11.95,07/27/19 20:09,"459 5th St, New York City, NY 10001" +231792,Macbook Pro Laptop,1,1700,07/06/19 18:05,"718 Johnson St, San Francisco, CA 94016" +231793,Google Phone,1,600,07/08/19 10:43,"901 Washington St, San Francisco, CA 94016" +231793,USB-C Charging Cable,1,11.95,07/08/19 10:43,"901 Washington St, San Francisco, CA 94016" +231794,AA Batteries (4-pack),2,3.84,07/29/19 18:33,"371 River St, Los Angeles, CA 90001" +231795,27in 4K Gaming Monitor,1,389.99,07/24/19 20:48,"531 Maple St, Los Angeles, CA 90001" +231796,Lightning Charging Cable,1,14.95,07/01/19 07:35,"719 4th St, Boston, MA 02215" +231797,Google Phone,1,600,07/18/19 21:35,"14 Dogwood St, San Francisco, CA 94016" +231797,Bose SoundSport Headphones,1,99.99,07/18/19 21:35,"14 Dogwood St, San Francisco, CA 94016" +231798,AA Batteries (4-pack),1,3.84,07/30/19 10:25,"804 5th St, Los Angeles, CA 90001" +231799,AAA Batteries (4-pack),2,2.99,07/04/19 20:18,"875 Cedar St, Boston, MA 02215" +231800,Flatscreen TV,1,300,07/08/19 22:08,"905 Lake St, San Francisco, CA 94016" +231801,Google Phone,1,600,07/15/19 15:41,"740 Meadow St, San Francisco, CA 94016" +231801,USB-C Charging Cable,1,11.95,07/15/19 15:41,"740 Meadow St, San Francisco, CA 94016" +231802,USB-C Charging Cable,1,11.95,07/19/19 20:08,"983 Lake St, Dallas, TX 75001" +231803,Macbook Pro Laptop,1,1700,07/10/19 19:17,"225 Highland St, Boston, MA 02215" +231804,Apple Airpods Headphones,1,150,07/25/19 22:01,"103 14th St, Los Angeles, CA 90001" +231805,Vareebadd Phone,1,400,07/06/19 20:23,"586 6th St, San Francisco, CA 94016" +231805,USB-C Charging Cable,1,11.95,07/06/19 20:23,"586 6th St, San Francisco, CA 94016" +231806,AAA Batteries (4-pack),1,2.99,07/09/19 16:00,"795 Forest St, Los Angeles, CA 90001" +231807,AAA Batteries (4-pack),2,2.99,07/28/19 23:48,"720 12th St, Boston, MA 02215" +231808,Apple Airpods Headphones,1,150,07/13/19 09:45,"209 5th St, Boston, MA 02215" +231809,AAA Batteries (4-pack),1,2.99,07/02/19 17:55,"168 Maple St, Los Angeles, CA 90001" +231810,27in FHD Monitor,1,149.99,07/23/19 11:18,"711 Elm St, Los Angeles, CA 90001" +231811,Lightning Charging Cable,1,14.95,07/24/19 16:02,"352 Main St, Los Angeles, CA 90001" +231812,AA Batteries (4-pack),1,3.84,08/01/19 02:29,"245 Washington St, New York City, NY 10001" +231813,Lightning Charging Cable,1,14.95,07/15/19 16:04,"262 Park St, Seattle, WA 98101" +231814,Wired Headphones,2,11.99,07/01/19 11:42,"319 12th St, Dallas, TX 75001" +231814,Apple Airpods Headphones,1,150,07/01/19 11:42,"319 12th St, Dallas, TX 75001" +231815,Bose SoundSport Headphones,1,99.99,07/30/19 21:00,"773 12th St, Los Angeles, CA 90001" +231816,Bose SoundSport Headphones,1,99.99,07/18/19 07:45,"263 Sunset St, Atlanta, GA 30301" +231817,AAA Batteries (4-pack),1,2.99,07/05/19 19:13,"592 Hill St, Atlanta, GA 30301" +231818,Wired Headphones,1,11.99,07/31/19 14:47,"91 Chestnut St, Atlanta, GA 30301" +231819,iPhone,1,700,07/11/19 11:45,"782 14th St, Portland, OR 97035" +231820,Google Phone,1,600,07/13/19 09:44,"831 River St, New York City, NY 10001" +231821,Wired Headphones,1,11.99,07/26/19 18:53,"314 River St, Los Angeles, CA 90001" +231822,Wired Headphones,1,11.99,07/30/19 21:50,"52 Church St, Los Angeles, CA 90001" +231823,AA Batteries (4-pack),1,3.84,07/25/19 06:55,"685 4th St, Los Angeles, CA 90001" +231824,Wired Headphones,1,11.99,07/19/19 13:50,"451 1st St, Atlanta, GA 30301" +231825,Apple Airpods Headphones,1,150,07/07/19 22:08,"480 Elm St, San Francisco, CA 94016" +231826,AA Batteries (4-pack),1,3.84,07/19/19 13:11,"569 Chestnut St, New York City, NY 10001" +231827,USB-C Charging Cable,1,11.95,07/03/19 22:30,"69 Chestnut St, Atlanta, GA 30301" +231828,AAA Batteries (4-pack),2,2.99,07/02/19 16:18,"416 14th St, San Francisco, CA 94016" +231829,Flatscreen TV,1,300,07/27/19 12:46,"312 Hickory St, Boston, MA 02215" +231830,34in Ultrawide Monitor,1,379.99,07/16/19 22:28,"803 Johnson St, Dallas, TX 75001" +231831,ThinkPad Laptop,1,999.99,07/21/19 18:57,"124 12th St, Los Angeles, CA 90001" +231832,USB-C Charging Cable,2,11.95,07/07/19 22:17,"154 Forest St, Los Angeles, CA 90001" +231833,Bose SoundSport Headphones,1,99.99,07/13/19 14:52,"628 9th St, New York City, NY 10001" +231834,Apple Airpods Headphones,1,150,07/02/19 22:27,"807 Willow St, Dallas, TX 75001" +231835,AA Batteries (4-pack),1,3.84,07/26/19 17:22,"585 Lake St, San Francisco, CA 94016" +231836,Wired Headphones,1,11.99,07/27/19 00:31,"968 14th St, New York City, NY 10001" +231837,AA Batteries (4-pack),1,3.84,07/17/19 17:45,"710 Hickory St, Seattle, WA 98101" +231838,Lightning Charging Cable,1,14.95,07/07/19 04:18,"3 Lake St, New York City, NY 10001" +231839,Apple Airpods Headphones,1,150,07/26/19 20:12,"221 2nd St, Portland, ME 04101" +231840,USB-C Charging Cable,1,11.95,07/30/19 17:00,"188 9th St, New York City, NY 10001" +231841,Apple Airpods Headphones,1,150,07/02/19 14:29,"585 North St, Dallas, TX 75001" +231842,Google Phone,1,600,07/01/19 08:08,"866 Lincoln St, Seattle, WA 98101" +231842,USB-C Charging Cable,1,11.95,07/01/19 08:08,"866 Lincoln St, Seattle, WA 98101" +231843,Bose SoundSport Headphones,1,99.99,07/19/19 22:01,"248 Wilson St, Austin, TX 73301" +231844,Lightning Charging Cable,1,14.95,07/12/19 16:39,"994 Sunset St, Seattle, WA 98101" +231845,AAA Batteries (4-pack),1,2.99,07/26/19 12:29,"874 5th St, San Francisco, CA 94016" +231846,USB-C Charging Cable,1,11.95,07/09/19 19:11,"519 Willow St, Boston, MA 02215" +231847,iPhone,1,700,07/26/19 17:34,"46 10th St, Seattle, WA 98101" +231848,Apple Airpods Headphones,1,150,07/30/19 09:53,"70 River St, Los Angeles, CA 90001" +231849,Flatscreen TV,1,300,07/14/19 13:34,"52 Adams St, New York City, NY 10001" +231850,Lightning Charging Cable,1,14.95,07/06/19 16:20,"221 Maple St, Seattle, WA 98101" +231851,Lightning Charging Cable,1,14.95,07/22/19 09:31,"336 1st St, Portland, ME 04101" +231852,AAA Batteries (4-pack),3,2.99,07/29/19 19:55,"297 Hickory St, New York City, NY 10001" +231852,AAA Batteries (4-pack),1,2.99,07/29/19 19:55,"297 Hickory St, New York City, NY 10001" +231853,AA Batteries (4-pack),1,3.84,07/28/19 11:38,"984 Pine St, San Francisco, CA 94016" +231854,Wired Headphones,1,11.99,07/19/19 16:33,"2 Pine St, Los Angeles, CA 90001" +231855,Lightning Charging Cable,2,14.95,07/20/19 07:41,"528 Park St, San Francisco, CA 94016" +231856,USB-C Charging Cable,1,11.95,07/27/19 22:57,"897 Willow St, Portland, OR 97035" +231857,USB-C Charging Cable,1,11.95,07/10/19 17:25,"875 7th St, Los Angeles, CA 90001" +231858,27in 4K Gaming Monitor,1,389.99,07/26/19 18:51,"797 14th St, Portland, ME 04101" +231859,AAA Batteries (4-pack),2,2.99,07/12/19 18:13,"363 Main St, Boston, MA 02215" +231860,34in Ultrawide Monitor,1,379.99,07/08/19 15:21,"140 Meadow St, Los Angeles, CA 90001" +231861,USB-C Charging Cable,1,11.95,07/26/19 14:35,"612 Lakeview St, Dallas, TX 75001" +231862,Apple Airpods Headphones,1,150,07/24/19 23:36,"396 Cherry St, San Francisco, CA 94016" +231863,AA Batteries (4-pack),2,3.84,07/20/19 15:26,"297 Washington St, San Francisco, CA 94016" +231864,USB-C Charging Cable,1,11.95,07/26/19 22:26,"102 7th St, Dallas, TX 75001" +231865,AAA Batteries (4-pack),1,2.99,07/09/19 16:22,"794 Cherry St, New York City, NY 10001" +231866,27in FHD Monitor,1,149.99,07/18/19 10:27,"639 Johnson St, San Francisco, CA 94016" +231867,Bose SoundSport Headphones,1,99.99,07/22/19 22:56,"290 Highland St, Los Angeles, CA 90001" +231868,Apple Airpods Headphones,1,150,07/16/19 16:43,"384 10th St, Atlanta, GA 30301" +231869,Lightning Charging Cable,1,14.95,07/11/19 20:41,"628 Cedar St, Atlanta, GA 30301" +231870,USB-C Charging Cable,1,11.95,07/28/19 17:12,"887 2nd St, Atlanta, GA 30301" +231871,AA Batteries (4-pack),1,3.84,07/21/19 11:29,"58 Ridge St, Austin, TX 73301" +231872,27in 4K Gaming Monitor,1,389.99,07/07/19 18:06,"313 South St, New York City, NY 10001" +231873,27in 4K Gaming Monitor,1,389.99,07/20/19 10:21,"121 Willow St, Los Angeles, CA 90001" +231874,Bose SoundSport Headphones,1,99.99,07/02/19 20:46,"123 West St, Dallas, TX 75001" +231875,AAA Batteries (4-pack),1,2.99,07/22/19 18:43,"55 North St, San Francisco, CA 94016" +231876,USB-C Charging Cable,1,11.95,07/30/19 16:47,"775 Spruce St, San Francisco, CA 94016" +231877,AAA Batteries (4-pack),1,2.99,07/14/19 10:38,"809 Maple St, Atlanta, GA 30301" +231878,AAA Batteries (4-pack),1,2.99,07/30/19 09:55,"335 12th St, Seattle, WA 98101" +,,,,, +231879,USB-C Charging Cable,1,11.95,07/12/19 21:59,"753 Willow St, Los Angeles, CA 90001" +231880,Macbook Pro Laptop,1,1700,07/17/19 10:52,"909 Johnson St, New York City, NY 10001" +231881,Lightning Charging Cable,1,14.95,07/30/19 19:00,"365 Church St, New York City, NY 10001" +231882,AA Batteries (4-pack),1,3.84,07/22/19 14:25,"406 Washington St, Boston, MA 02215" +231883,Apple Airpods Headphones,1,150,07/10/19 18:28,"343 9th St, Dallas, TX 75001" +231884,Bose SoundSport Headphones,1,99.99,07/25/19 13:00,"591 Ridge St, Portland, OR 97035" +231885,USB-C Charging Cable,2,11.95,07/12/19 01:17,"471 Wilson St, Boston, MA 02215" +231886,Wired Headphones,2,11.99,07/12/19 07:02,"98 11th St, San Francisco, CA 94016" +231887,LG Washing Machine,1,600.0,07/17/19 17:53,"68 11th St, Los Angeles, CA 90001" +231888,27in FHD Monitor,1,149.99,07/26/19 17:39,"989 Jefferson St, Portland, OR 97035" +231889,Wired Headphones,1,11.99,07/31/19 12:18,"689 Madison St, Dallas, TX 75001" +231890,34in Ultrawide Monitor,1,379.99,07/22/19 23:33,"394 12th St, San Francisco, CA 94016" +231891,AA Batteries (4-pack),1,3.84,07/29/19 18:18,"597 Lakeview St, Atlanta, GA 30301" +231892,27in 4K Gaming Monitor,1,389.99,07/25/19 16:16,"994 9th St, Austin, TX 73301" +231893,AA Batteries (4-pack),1,3.84,07/25/19 09:12,"563 Lincoln St, Seattle, WA 98101" +231894,AA Batteries (4-pack),1,3.84,07/08/19 10:22,"985 Park St, San Francisco, CA 94016" +231895,Apple Airpods Headphones,1,150,07/12/19 18:26,"476 Church St, Portland, OR 97035" +231896,iPhone,1,700,07/14/19 22:08,"874 Jackson St, Seattle, WA 98101" +231897,Wired Headphones,1,11.99,07/13/19 12:18,"820 Elm St, Los Angeles, CA 90001" +231898,AAA Batteries (4-pack),2,2.99,07/07/19 21:22,"110 Sunset St, San Francisco, CA 94016" +231899,AAA Batteries (4-pack),1,2.99,07/22/19 16:17,"522 Madison St, Boston, MA 02215" +231900,USB-C Charging Cable,2,11.95,07/04/19 20:50,"574 Cedar St, Portland, OR 97035" +231901,Lightning Charging Cable,1,14.95,07/19/19 09:27,"254 Hickory St, Portland, OR 97035" +231902,AAA Batteries (4-pack),1,2.99,07/27/19 23:24,"619 Maple St, Austin, TX 73301" +231903,AA Batteries (4-pack),1,3.84,07/22/19 12:51,"830 Johnson St, San Francisco, CA 94016" +231904,USB-C Charging Cable,2,11.95,07/04/19 20:40,"419 South St, Atlanta, GA 30301" +231905,Apple Airpods Headphones,1,150,07/26/19 07:42,"33 7th St, Los Angeles, CA 90001" +231906,AA Batteries (4-pack),1,3.84,07/09/19 19:39,"172 13th St, San Francisco, CA 94016" +231907,Wired Headphones,1,11.99,07/09/19 10:40,"230 Wilson St, Los Angeles, CA 90001" +231908,Lightning Charging Cable,1,14.95,07/17/19 22:11,"489 Lakeview St, Austin, TX 73301" +231909,Macbook Pro Laptop,1,1700,07/15/19 20:01,"270 Jefferson St, San Francisco, CA 94016" +231910,Apple Airpods Headphones,1,150,07/04/19 22:00,"786 Spruce St, San Francisco, CA 94016" +231911,Wired Headphones,1,11.99,07/30/19 09:44,"923 Dogwood St, Dallas, TX 75001" +231912,Apple Airpods Headphones,1,150,07/03/19 21:42,"640 Cedar St, Los Angeles, CA 90001" +231913,27in 4K Gaming Monitor,1,389.99,07/16/19 09:02,"353 Highland St, San Francisco, CA 94016" +231914,27in 4K Gaming Monitor,1,389.99,07/16/19 12:45,"927 Wilson St, Austin, TX 73301" +231915,USB-C Charging Cable,1,11.95,07/01/19 13:05,"64 Lincoln St, Los Angeles, CA 90001" +231916,USB-C Charging Cable,1,11.95,07/11/19 19:32,"705 10th St, Boston, MA 02215" +231917,AA Batteries (4-pack),1,3.84,07/30/19 06:49,"556 River St, San Francisco, CA 94016" +231918,Wired Headphones,1,11.99,07/04/19 07:05,"430 Wilson St, Portland, OR 97035" +231919,iPhone,1,700,07/17/19 22:15,"65 Main St, Boston, MA 02215" +231919,Lightning Charging Cable,1,14.95,07/17/19 22:15,"65 Main St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +231920,Apple Airpods Headphones,1,150,07/16/19 19:36,"785 Spruce St, San Francisco, CA 94016" +231921,27in FHD Monitor,1,149.99,07/28/19 18:23,"429 Maple St, Boston, MA 02215" +231922,AAA Batteries (4-pack),1,2.99,07/21/19 14:19,"211 Hickory St, San Francisco, CA 94016" +231923,Google Phone,1,600,07/19/19 19:06,"207 Maple St, San Francisco, CA 94016" +231923,USB-C Charging Cable,1,11.95,07/19/19 19:06,"207 Maple St, San Francisco, CA 94016" +231924,USB-C Charging Cable,1,11.95,07/29/19 22:17,"879 10th St, Boston, MA 02215" +231925,34in Ultrawide Monitor,1,379.99,07/28/19 11:57,"915 Willow St, Portland, ME 04101" +231926,Bose SoundSport Headphones,1,99.99,07/16/19 19:32,"716 8th St, Boston, MA 02215" +231927,USB-C Charging Cable,1,11.95,07/14/19 16:22,"501 Lakeview St, New York City, NY 10001" +231928,USB-C Charging Cable,1,11.95,07/31/19 01:15,"395 10th St, New York City, NY 10001" +231929,USB-C Charging Cable,1,11.95,07/27/19 10:05,"370 Madison St, Austin, TX 73301" +231930,Wired Headphones,1,11.99,07/06/19 15:11,"46 Cherry St, Atlanta, GA 30301" +231931,AA Batteries (4-pack),1,3.84,07/29/19 23:31,"979 14th St, New York City, NY 10001" +231932,Macbook Pro Laptop,1,1700,07/22/19 19:13,"598 10th St, Atlanta, GA 30301" +231933,AA Batteries (4-pack),1,3.84,07/11/19 12:53,"279 Spruce St, San Francisco, CA 94016" +231934,Vareebadd Phone,1,400,07/19/19 11:12,"759 Main St, Dallas, TX 75001" +231935,Wired Headphones,1,11.99,07/13/19 17:08,"691 Forest St, Portland, OR 97035" +231936,Lightning Charging Cable,1,14.95,07/15/19 01:12,"501 Meadow St, Portland, OR 97035" +231937,Lightning Charging Cable,1,14.95,07/07/19 09:14,"859 Madison St, Atlanta, GA 30301" +231938,AA Batteries (4-pack),1,3.84,07/17/19 18:01,"79 Church St, San Francisco, CA 94016" +231939,AAA Batteries (4-pack),1,2.99,07/01/19 19:59,"374 Washington St, Dallas, TX 75001" +231940,27in FHD Monitor,1,149.99,07/09/19 20:47,"880 Park St, San Francisco, CA 94016" +231941,AAA Batteries (4-pack),3,2.99,07/29/19 22:41,"876 7th St, New York City, NY 10001" +231942,AAA Batteries (4-pack),1,2.99,07/01/19 10:55,"523 Madison St, Los Angeles, CA 90001" +231943,Lightning Charging Cable,2,14.95,07/14/19 20:52,"647 Adams St, New York City, NY 10001" +231944,USB-C Charging Cable,1,11.95,07/22/19 18:54,"946 Lake St, San Francisco, CA 94016" +231945,Wired Headphones,1,11.99,07/02/19 13:53,"847 Meadow St, Seattle, WA 98101" +231946,AA Batteries (4-pack),1,3.84,07/12/19 15:16,"285 Hill St, New York City, NY 10001" +231947,AA Batteries (4-pack),1,3.84,07/28/19 14:56,"970 South St, San Francisco, CA 94016" +231947,Apple Airpods Headphones,1,150,07/28/19 14:56,"970 South St, San Francisco, CA 94016" +231948,Bose SoundSport Headphones,1,99.99,07/24/19 17:14,"317 Chestnut St, Los Angeles, CA 90001" +231949,AA Batteries (4-pack),1,3.84,07/27/19 13:18,"711 West St, Los Angeles, CA 90001" +231950,Lightning Charging Cable,1,14.95,07/28/19 11:24,"525 Lakeview St, Portland, OR 97035" +231951,ThinkPad Laptop,1,999.99,07/19/19 11:13,"829 Elm St, New York City, NY 10001" +231952,27in FHD Monitor,1,149.99,07/13/19 16:21,"189 Wilson St, New York City, NY 10001" +231953,Wired Headphones,1,11.99,07/24/19 04:39,"54 Church St, Austin, TX 73301" +231954,AA Batteries (4-pack),1,3.84,07/01/19 23:09,"778 Pine St, Atlanta, GA 30301" +231955,USB-C Charging Cable,1,11.95,07/06/19 18:49,"124 Main St, Atlanta, GA 30301" +231956,AA Batteries (4-pack),1,3.84,07/29/19 21:29,"892 7th St, San Francisco, CA 94016" +231957,USB-C Charging Cable,1,11.95,07/19/19 13:02,"418 Cherry St, San Francisco, CA 94016" +231958,Flatscreen TV,1,300,07/17/19 15:12,"916 7th St, Los Angeles, CA 90001" +231959,Apple Airpods Headphones,1,150,07/15/19 19:06,"64 Jefferson St, New York City, NY 10001" +231960,USB-C Charging Cable,1,11.95,07/24/19 09:23,"123 7th St, Seattle, WA 98101" +231961,Vareebadd Phone,1,400,07/07/19 11:43,"612 Lake St, San Francisco, CA 94016" +231962,27in 4K Gaming Monitor,1,389.99,07/25/19 10:48,"289 5th St, San Francisco, CA 94016" +231962,USB-C Charging Cable,1,11.95,07/25/19 10:48,"289 5th St, San Francisco, CA 94016" +231963,Bose SoundSport Headphones,1,99.99,07/17/19 13:13,"44 1st St, Dallas, TX 75001" +231964,34in Ultrawide Monitor,1,379.99,07/18/19 23:44,"93 Pine St, Los Angeles, CA 90001" +231965,27in FHD Monitor,1,149.99,07/09/19 15:00,"435 Lake St, Austin, TX 73301" +231966,Wired Headphones,1,11.99,07/27/19 21:46,"304 Main St, Austin, TX 73301" +231967,Lightning Charging Cable,1,14.95,07/11/19 18:04,"489 7th St, Boston, MA 02215" +231968,Wired Headphones,1,11.99,07/06/19 10:32,"437 West St, Los Angeles, CA 90001" +231969,27in FHD Monitor,1,149.99,07/17/19 15:30,"273 River St, San Francisco, CA 94016" +231970,Wired Headphones,1,11.99,07/15/19 07:53,"400 Madison St, New York City, NY 10001" +231971,Bose SoundSport Headphones,1,99.99,07/07/19 08:41,"509 River St, Austin, TX 73301" +231972,AAA Batteries (4-pack),1,2.99,07/19/19 10:37,"451 Jefferson St, San Francisco, CA 94016" +231973,USB-C Charging Cable,1,11.95,07/11/19 07:58,"968 Hickory St, Boston, MA 02215" +231974,AA Batteries (4-pack),1,3.84,07/15/19 17:19,"596 Wilson St, San Francisco, CA 94016" +231975,Lightning Charging Cable,1,14.95,07/03/19 20:46,"552 13th St, Portland, OR 97035" +231976,Macbook Pro Laptop,1,1700,07/03/19 09:13,"597 Elm St, San Francisco, CA 94016" +231977,iPhone,1,700,07/14/19 13:02,"899 Lake St, San Francisco, CA 94016" +231978,USB-C Charging Cable,1,11.95,07/01/19 17:34,"635 12th St, San Francisco, CA 94016" +231979,Bose SoundSport Headphones,1,99.99,07/05/19 08:34,"966 Cedar St, San Francisco, CA 94016" +231980,AAA Batteries (4-pack),1,2.99,07/15/19 23:08,"390 Spruce St, Seattle, WA 98101" +231981,Bose SoundSport Headphones,1,99.99,07/08/19 23:47,"727 Church St, Seattle, WA 98101" +231982,iPhone,1,700,07/05/19 15:18,"723 6th St, New York City, NY 10001" +231983,iPhone,1,700,07/29/19 12:56,"287 Washington St, Portland, OR 97035" +231984,Apple Airpods Headphones,1,150,07/29/19 17:45,"170 Johnson St, San Francisco, CA 94016" +231985,USB-C Charging Cable,2,11.95,07/10/19 15:59,"745 Adams St, San Francisco, CA 94016" +231986,AA Batteries (4-pack),1,3.84,07/26/19 11:14,"552 Walnut St, Portland, OR 97035" +231987,AAA Batteries (4-pack),1,2.99,07/04/19 20:19,"11 1st St, Los Angeles, CA 90001" +231988,Flatscreen TV,1,300,07/21/19 19:40,"410 Lincoln St, San Francisco, CA 94016" +231989,Bose SoundSport Headphones,1,99.99,07/03/19 20:57,"168 Sunset St, Portland, OR 97035" +231990,iPhone,1,700,07/26/19 12:20,"596 Madison St, Seattle, WA 98101" +231991,Lightning Charging Cable,1,14.95,07/12/19 23:06,"995 5th St, Atlanta, GA 30301" +231992,Lightning Charging Cable,1,14.95,07/14/19 17:19,"651 Dogwood St, Los Angeles, CA 90001" +231993,AA Batteries (4-pack),2,3.84,07/30/19 18:37,"77 Main St, Seattle, WA 98101" +231994,USB-C Charging Cable,1,11.95,08/01/19 01:30,"564 Hill St, Los Angeles, CA 90001" +231995,27in FHD Monitor,1,149.99,07/13/19 18:54,"969 Park St, Los Angeles, CA 90001" +231996,Apple Airpods Headphones,1,150,07/19/19 11:23,"749 Highland St, San Francisco, CA 94016" +231997,AA Batteries (4-pack),1,3.84,07/30/19 14:44,"385 Sunset St, Atlanta, GA 30301" +231998,AAA Batteries (4-pack),2,2.99,07/06/19 23:13,"739 Ridge St, Seattle, WA 98101" +231999,Vareebadd Phone,1,400,07/08/19 16:11,"16 Meadow St, Dallas, TX 75001" +232000,27in FHD Monitor,1,149.99,07/04/19 01:18,"749 Spruce St, New York City, NY 10001" +232001,27in FHD Monitor,1,149.99,07/12/19 23:24,"607 River St, Seattle, WA 98101" +232002,ThinkPad Laptop,1,999.99,07/26/19 12:35,"655 Cherry St, Dallas, TX 75001" +232003,27in 4K Gaming Monitor,1,389.99,07/21/19 06:37,"801 5th St, Boston, MA 02215" +232004,Apple Airpods Headphones,1,150,07/29/19 21:40,"70 Park St, Portland, ME 04101" +232005,AA Batteries (4-pack),3,3.84,07/26/19 20:54,"539 1st St, Atlanta, GA 30301" +232005,iPhone,1,700,07/26/19 20:54,"539 1st St, Atlanta, GA 30301" +232006,USB-C Charging Cable,2,11.95,07/22/19 21:02,"377 Elm St, Los Angeles, CA 90001" +232007,27in FHD Monitor,1,149.99,07/12/19 19:02,"796 Center St, Los Angeles, CA 90001" +232008,Bose SoundSport Headphones,1,99.99,07/30/19 08:59,"193 Jefferson St, San Francisco, CA 94016" +232009,Apple Airpods Headphones,1,150,07/24/19 21:14,"317 10th St, San Francisco, CA 94016" +232010,Wired Headphones,1,11.99,07/06/19 14:47,"695 West St, San Francisco, CA 94016" +232011,AA Batteries (4-pack),1,3.84,07/07/19 16:49,"484 Maple St, San Francisco, CA 94016" +232012,AAA Batteries (4-pack),1,2.99,07/31/19 17:08,"507 Willow St, New York City, NY 10001" +232013,USB-C Charging Cable,1,11.95,07/16/19 19:07,"759 Park St, Portland, OR 97035" +232014,iPhone,1,700,07/21/19 11:10,"385 9th St, Seattle, WA 98101" +232015,Wired Headphones,2,11.99,07/22/19 17:18,"504 Maple St, San Francisco, CA 94016" +232016,AA Batteries (4-pack),1,3.84,07/31/19 13:36,"210 Spruce St, New York City, NY 10001" +232017,Wired Headphones,1,11.99,07/16/19 23:43,"236 Cedar St, Dallas, TX 75001" +232018,Lightning Charging Cable,1,14.95,07/29/19 17:46,"259 Sunset St, Portland, ME 04101" +232019,Lightning Charging Cable,1,14.95,07/10/19 22:17,"723 Cedar St, San Francisco, CA 94016" +232020,AA Batteries (4-pack),1,3.84,07/05/19 20:15,"694 Pine St, New York City, NY 10001" +232021,AA Batteries (4-pack),1,3.84,07/17/19 15:11,"603 Spruce St, Portland, OR 97035" +232022,Wired Headphones,1,11.99,07/03/19 06:25,"104 4th St, Los Angeles, CA 90001" +232023,USB-C Charging Cable,1,11.95,07/16/19 08:58,"261 Jackson St, Boston, MA 02215" +232024,USB-C Charging Cable,1,11.95,07/28/19 16:04,"946 River St, San Francisco, CA 94016" +232025,AA Batteries (4-pack),1,3.84,07/25/19 19:45,"683 Spruce St, Los Angeles, CA 90001" +232026,Lightning Charging Cable,1,14.95,07/11/19 13:30,"800 13th St, New York City, NY 10001" +232027,Macbook Pro Laptop,1,1700,07/27/19 17:54,"374 Dogwood St, Los Angeles, CA 90001" +232028,USB-C Charging Cable,1,11.95,07/22/19 15:23,"554 Lakeview St, New York City, NY 10001" +232029,34in Ultrawide Monitor,1,379.99,07/18/19 09:07,"376 14th St, San Francisco, CA 94016" +232030,Lightning Charging Cable,1,14.95,07/20/19 22:10,"639 Center St, Atlanta, GA 30301" +232031,AA Batteries (4-pack),1,3.84,07/04/19 11:48,"349 Hill St, New York City, NY 10001" +232032,Macbook Pro Laptop,1,1700,07/22/19 21:06,"662 Meadow St, Los Angeles, CA 90001" +232033,27in FHD Monitor,1,149.99,07/08/19 10:12,"335 Elm St, Los Angeles, CA 90001" +232034,Lightning Charging Cable,1,14.95,07/11/19 21:12,"214 Hickory St, Austin, TX 73301" +232035,Apple Airpods Headphones,1,150,07/29/19 13:28,"600 11th St, Boston, MA 02215" +232036,AA Batteries (4-pack),1,3.84,07/02/19 09:03,"922 Spruce St, New York City, NY 10001" +232037,USB-C Charging Cable,1,11.95,07/05/19 22:33,"907 6th St, San Francisco, CA 94016" +232038,Wired Headphones,1,11.99,07/25/19 02:30,"731 River St, Portland, OR 97035" +232039,Lightning Charging Cable,1,14.95,07/15/19 10:58,"5 Johnson St, Portland, OR 97035" +232040,AA Batteries (4-pack),1,3.84,07/22/19 20:18,"849 Lakeview St, New York City, NY 10001" +232041,Wired Headphones,1,11.99,07/06/19 14:11,"589 1st St, San Francisco, CA 94016" +232042,27in FHD Monitor,1,149.99,07/20/19 15:11,"414 Dogwood St, San Francisco, CA 94016" +232043,Bose SoundSport Headphones,1,99.99,07/27/19 09:02,"521 Center St, Portland, OR 97035" +232044,Wired Headphones,1,11.99,07/14/19 15:28,"598 Madison St, Austin, TX 73301" +232045,27in 4K Gaming Monitor,1,389.99,07/08/19 09:10,"916 Cherry St, San Francisco, CA 94016" +232046,Apple Airpods Headphones,1,150,07/27/19 13:33,"469 Elm St, Portland, OR 97035" +232047,USB-C Charging Cable,2,11.95,07/17/19 10:29,"569 Main St, Los Angeles, CA 90001" +232048,iPhone,1,700,07/17/19 21:55,"503 Johnson St, New York City, NY 10001" +232049,Lightning Charging Cable,1,14.95,07/06/19 19:20,"838 South St, New York City, NY 10001" +232050,Apple Airpods Headphones,1,150,07/04/19 11:42,"175 Cedar St, Seattle, WA 98101" +232050,iPhone,1,700,07/04/19 11:42,"175 Cedar St, Seattle, WA 98101" +232051,Wired Headphones,1,11.99,07/05/19 11:15,"155 Jackson St, New York City, NY 10001" +232052,34in Ultrawide Monitor,1,379.99,07/02/19 20:17,"537 14th St, Los Angeles, CA 90001" +232053,Apple Airpods Headphones,1,150,07/26/19 10:28,"968 Jefferson St, New York City, NY 10001" +232054,Wired Headphones,1,11.99,07/02/19 16:59,"918 Lakeview St, Seattle, WA 98101" +232055,AAA Batteries (4-pack),2,2.99,07/26/19 20:13,"52 2nd St, Los Angeles, CA 90001" +232056,Apple Airpods Headphones,1,150,07/09/19 21:25,"426 Washington St, Austin, TX 73301" +232057,ThinkPad Laptop,1,999.99,07/27/19 11:32,"290 Cedar St, San Francisco, CA 94016" +232058,Wired Headphones,1,11.99,07/30/19 14:04,"401 Forest St, Boston, MA 02215" +232059,Wired Headphones,1,11.99,07/19/19 22:46,"876 Pine St, Atlanta, GA 30301" +232060,34in Ultrawide Monitor,1,379.99,07/02/19 15:29,"58 10th St, San Francisco, CA 94016" +232061,USB-C Charging Cable,1,11.95,07/08/19 13:55,"427 Jefferson St, San Francisco, CA 94016" +232062,USB-C Charging Cable,1,11.95,07/01/19 14:39,"899 10th St, San Francisco, CA 94016" +232063,iPhone,1,700,07/09/19 10:38,"676 Lincoln St, San Francisco, CA 94016" +232064,Lightning Charging Cable,1,14.95,07/11/19 08:46,"525 5th St, Austin, TX 73301" +232065,34in Ultrawide Monitor,1,379.99,07/03/19 12:40,"646 Jefferson St, New York City, NY 10001" +232066,Wired Headphones,1,11.99,07/05/19 11:08,"584 12th St, Boston, MA 02215" +232067,Vareebadd Phone,1,400,07/31/19 12:06,"897 9th St, Portland, OR 97035" +232068,iPhone,1,700,07/01/19 13:26,"358 Adams St, Los Angeles, CA 90001" +232068,Lightning Charging Cable,1,14.95,07/01/19 13:26,"358 Adams St, Los Angeles, CA 90001" +232069,27in FHD Monitor,1,149.99,07/20/19 19:44,"446 Elm St, Los Angeles, CA 90001" +232070,Bose SoundSport Headphones,1,99.99,07/25/19 07:40,"864 2nd St, Los Angeles, CA 90001" +232071,USB-C Charging Cable,2,11.95,07/25/19 16:50,"416 Willow St, New York City, NY 10001" +232072,Vareebadd Phone,1,400,07/04/19 11:55,"743 10th St, San Francisco, CA 94016" +232073,ThinkPad Laptop,1,999.99,07/01/19 19:14,"391 13th St, Boston, MA 02215" +232074,Lightning Charging Cable,1,14.95,07/17/19 06:54,"270 Willow St, Portland, ME 04101" +232075,AAA Batteries (4-pack),1,2.99,07/03/19 01:59,"105 10th St, New York City, NY 10001" +232076,Wired Headphones,1,11.99,07/07/19 11:40,"544 Lincoln St, Seattle, WA 98101" +232077,Lightning Charging Cable,1,14.95,07/02/19 21:27,"523 Johnson St, New York City, NY 10001" +232078,ThinkPad Laptop,1,999.99,07/29/19 13:29,"59 2nd St, Austin, TX 73301" +232079,Macbook Pro Laptop,1,1700,07/28/19 20:58,"366 Wilson St, Atlanta, GA 30301" +232080,27in FHD Monitor,1,149.99,07/25/19 12:47,"98 12th St, Portland, OR 97035" +232081,Lightning Charging Cable,1,14.95,07/21/19 17:43,"505 4th St, New York City, NY 10001" +232081,Wired Headphones,1,11.99,07/21/19 17:43,"505 4th St, New York City, NY 10001" +232082,Lightning Charging Cable,1,14.95,07/19/19 07:12,"612 8th St, San Francisco, CA 94016" +232083,iPhone,1,700,07/14/19 17:24,"981 Willow St, San Francisco, CA 94016" +232084,Google Phone,1,600,07/07/19 09:28,"265 4th St, Los Angeles, CA 90001" +232085,USB-C Charging Cable,1,11.95,07/13/19 11:19,"259 Lakeview St, New York City, NY 10001" +232086,Bose SoundSport Headphones,1,99.99,07/05/19 13:30,"896 Highland St, San Francisco, CA 94016" +232087,Wired Headphones,2,11.99,07/18/19 22:12,"317 6th St, San Francisco, CA 94016" +232088,AA Batteries (4-pack),1,3.84,07/22/19 19:43,"877 9th St, New York City, NY 10001" +232089,AAA Batteries (4-pack),1,2.99,07/13/19 12:39,"257 4th St, Atlanta, GA 30301" +232090,USB-C Charging Cable,1,11.95,07/12/19 05:58,"902 Spruce St, New York City, NY 10001" +232091,USB-C Charging Cable,1,11.95,07/30/19 21:53,"825 Washington St, San Francisco, CA 94016" +232092,Wired Headphones,1,11.99,07/31/19 13:37,"156 Wilson St, Austin, TX 73301" +232093,USB-C Charging Cable,1,11.95,07/01/19 11:14,"687 Meadow St, San Francisco, CA 94016" +232094,Apple Airpods Headphones,1,150,07/23/19 20:00,"725 Washington St, San Francisco, CA 94016" +232095,Macbook Pro Laptop,1,1700,07/12/19 16:46,"368 10th St, San Francisco, CA 94016" +232096,iPhone,1,700,07/03/19 22:08,"930 2nd St, New York City, NY 10001" +232096,Lightning Charging Cable,1,14.95,07/03/19 22:08,"930 2nd St, New York City, NY 10001" +232097,Wired Headphones,1,11.99,07/03/19 07:14,"851 Highland St, San Francisco, CA 94016" +232098,Apple Airpods Headphones,1,150,07/27/19 13:24,"662 10th St, Portland, OR 97035" +232099,USB-C Charging Cable,1,11.95,07/31/19 21:43,"319 Madison St, Austin, TX 73301" +232100,Apple Airpods Headphones,1,150,07/31/19 15:00,"432 Forest St, Boston, MA 02215" +232101,Bose SoundSport Headphones,1,99.99,07/13/19 19:13,"586 13th St, Seattle, WA 98101" +232102,AAA Batteries (4-pack),1,2.99,07/15/19 12:59,"854 5th St, Atlanta, GA 30301" +232103,Wired Headphones,1,11.99,07/05/19 23:00,"415 Spruce St, New York City, NY 10001" +232104,AA Batteries (4-pack),1,3.84,07/15/19 20:29,"501 11th St, Boston, MA 02215" +232105,AA Batteries (4-pack),2,3.84,07/13/19 16:03,"712 Park St, New York City, NY 10001" +232106,Wired Headphones,1,11.99,07/06/19 13:02,"912 Maple St, Seattle, WA 98101" +232107,AA Batteries (4-pack),1,3.84,07/28/19 11:37,"402 Forest St, Seattle, WA 98101" +232108,Bose SoundSport Headphones,1,99.99,07/26/19 14:58,"163 Cedar St, Atlanta, GA 30301" +232109,Bose SoundSport Headphones,1,99.99,07/06/19 20:43,"984 Ridge St, Boston, MA 02215" +232110,Wired Headphones,1,11.99,07/20/19 19:49,"847 Elm St, Los Angeles, CA 90001" +232111,Lightning Charging Cable,1,14.95,07/04/19 10:23,"58 Pine St, Los Angeles, CA 90001" +232112,Lightning Charging Cable,1,14.95,07/15/19 16:21,"486 Dogwood St, San Francisco, CA 94016" +232113,Lightning Charging Cable,1,14.95,07/10/19 17:24,"579 North St, Boston, MA 02215" +232114,27in FHD Monitor,1,149.99,07/09/19 13:38,"726 Dogwood St, Portland, OR 97035" +232115,Wired Headphones,1,11.99,07/02/19 10:40,"639 Wilson St, Dallas, TX 75001" +232116,Lightning Charging Cable,1,14.95,07/21/19 08:20,"790 Cedar St, San Francisco, CA 94016" +232117,Flatscreen TV,1,300,07/19/19 13:40,"178 12th St, Dallas, TX 75001" +232118,USB-C Charging Cable,1,11.95,07/23/19 10:04,"123 12th St, Atlanta, GA 30301" +232119,27in FHD Monitor,1,149.99,07/09/19 22:28,"698 1st St, Seattle, WA 98101" +232120,Lightning Charging Cable,1,14.95,07/03/19 14:30,"517 Adams St, San Francisco, CA 94016" +232121,Bose SoundSport Headphones,1,99.99,07/20/19 13:45,"347 Hickory St, New York City, NY 10001" +232122,Flatscreen TV,1,300,07/07/19 11:54,"626 7th St, San Francisco, CA 94016" +232123,Apple Airpods Headphones,1,150,07/19/19 21:41,"693 Cherry St, New York City, NY 10001" +232124,27in FHD Monitor,1,149.99,07/31/19 16:41,"277 Johnson St, Los Angeles, CA 90001" +232125,Lightning Charging Cable,1,14.95,07/18/19 22:15,"660 10th St, Atlanta, GA 30301" +232126,Bose SoundSport Headphones,1,99.99,07/17/19 16:35,"565 9th St, Atlanta, GA 30301" +232127,27in 4K Gaming Monitor,1,389.99,07/08/19 10:22,"921 Wilson St, Portland, OR 97035" +232128,Lightning Charging Cable,1,14.95,07/11/19 15:15,"490 Park St, San Francisco, CA 94016" +232129,Wired Headphones,1,11.99,07/29/19 22:34,"997 7th St, San Francisco, CA 94016" +232130,Lightning Charging Cable,1,14.95,07/27/19 15:14,"624 West St, San Francisco, CA 94016" +232131,USB-C Charging Cable,1,11.95,07/01/19 13:48,"382 7th St, Dallas, TX 75001" +232132,Lightning Charging Cable,1,14.95,07/06/19 14:30,"150 6th St, Seattle, WA 98101" +232133,Bose SoundSport Headphones,1,99.99,07/29/19 17:36,"322 Washington St, Dallas, TX 75001" +232134,27in 4K Gaming Monitor,1,389.99,07/25/19 02:14,"690 Highland St, Dallas, TX 75001" +232135,Lightning Charging Cable,1,14.95,07/14/19 10:42,"240 Ridge St, Austin, TX 73301" +232136,AA Batteries (4-pack),1,3.84,07/17/19 18:08,"569 Jackson St, Los Angeles, CA 90001" +232137,Wired Headphones,1,11.99,07/06/19 09:34,"93 2nd St, San Francisco, CA 94016" +232138,27in FHD Monitor,1,149.99,07/03/19 05:15,"783 Spruce St, San Francisco, CA 94016" +232139,Lightning Charging Cable,1,14.95,07/20/19 21:51,"445 1st St, Portland, OR 97035" +232140,27in 4K Gaming Monitor,1,389.99,07/30/19 18:21,"626 Forest St, Austin, TX 73301" +232141,20in Monitor,1,109.99,07/15/19 19:40,"936 Willow St, Dallas, TX 75001" +232142,Bose SoundSport Headphones,1,99.99,07/21/19 09:02,"931 Forest St, Los Angeles, CA 90001" +232143,Lightning Charging Cable,1,14.95,07/23/19 18:36,"979 Jefferson St, Austin, TX 73301" +232144,Wired Headphones,1,11.99,07/31/19 21:55,"737 9th St, New York City, NY 10001" +232145,AAA Batteries (4-pack),1,2.99,07/13/19 20:43,"929 North St, Boston, MA 02215" +232146,Lightning Charging Cable,1,14.95,07/12/19 05:27,"643 Lincoln St, Los Angeles, CA 90001" +232147,Flatscreen TV,1,300,07/17/19 19:23,"161 Maple St, Boston, MA 02215" +232148,AAA Batteries (4-pack),3,2.99,07/04/19 00:26,"394 14th St, New York City, NY 10001" +232149,Macbook Pro Laptop,1,1700,07/16/19 18:46,"742 Forest St, New York City, NY 10001" +232150,AA Batteries (4-pack),1,3.84,07/10/19 23:55,"388 9th St, Dallas, TX 75001" +232151,27in 4K Gaming Monitor,1,389.99,07/05/19 20:11,"523 Highland St, New York City, NY 10001" +232151,AA Batteries (4-pack),2,3.84,07/05/19 20:11,"523 Highland St, New York City, NY 10001" +232152,iPhone,1,700,07/20/19 10:09,"91 14th St, San Francisco, CA 94016" +232153,Wired Headphones,1,11.99,07/27/19 12:07,"327 Lincoln St, Los Angeles, CA 90001" +232154,Apple Airpods Headphones,1,150,07/15/19 17:42,"860 9th St, Dallas, TX 75001" +232155,Bose SoundSport Headphones,1,99.99,07/11/19 06:08,"438 12th St, Los Angeles, CA 90001" +232156,27in 4K Gaming Monitor,1,389.99,07/27/19 01:34,"269 Lincoln St, Los Angeles, CA 90001" +232157,Lightning Charging Cable,1,14.95,07/23/19 20:42,"641 5th St, Los Angeles, CA 90001" +232158,ThinkPad Laptop,1,999.99,07/21/19 01:20,"241 Jackson St, New York City, NY 10001" +232159,Apple Airpods Headphones,1,150,07/01/19 08:23,"548 Wilson St, San Francisco, CA 94016" +232160,ThinkPad Laptop,1,999.99,07/02/19 19:50,"987 14th St, Los Angeles, CA 90001" +232161,Flatscreen TV,1,300,07/13/19 14:14,"814 12th St, Boston, MA 02215" +232162,Apple Airpods Headphones,1,150,07/10/19 17:43,"775 Highland St, New York City, NY 10001" +232163,AA Batteries (4-pack),1,3.84,07/29/19 20:13,"209 Chestnut St, Portland, OR 97035" +232164,ThinkPad Laptop,1,999.99,07/06/19 07:38,"593 Madison St, Boston, MA 02215" +232165,AAA Batteries (4-pack),2,2.99,07/01/19 20:17,"637 12th St, Austin, TX 73301" +232166,20in Monitor,1,109.99,07/31/19 11:56,"470 1st St, Austin, TX 73301" +232167,AA Batteries (4-pack),1,3.84,07/15/19 10:51,"446 Highland St, Seattle, WA 98101" +232168,AA Batteries (4-pack),1,3.84,07/19/19 13:58,"624 Wilson St, New York City, NY 10001" +232169,USB-C Charging Cable,1,11.95,07/31/19 14:07,"735 Lincoln St, San Francisco, CA 94016" +232170,AAA Batteries (4-pack),1,2.99,07/31/19 15:56,"90 6th St, Boston, MA 02215" +232171,AA Batteries (4-pack),2,3.84,07/02/19 12:41,"273 Pine St, San Francisco, CA 94016" +232172,27in FHD Monitor,1,149.99,07/14/19 19:02,"835 7th St, San Francisco, CA 94016" +232173,USB-C Charging Cable,1,11.95,07/12/19 11:40,"572 Washington St, San Francisco, CA 94016" +232174,USB-C Charging Cable,1,11.95,07/26/19 13:46,"321 Adams St, Seattle, WA 98101" +232175,USB-C Charging Cable,1,11.95,07/16/19 18:10,"278 8th St, Portland, OR 97035" +232176,Bose SoundSport Headphones,1,99.99,07/19/19 21:53,"583 8th St, Atlanta, GA 30301" +232177,Bose SoundSport Headphones,1,99.99,07/05/19 21:20,"489 Cherry St, New York City, NY 10001" +232178,USB-C Charging Cable,1,11.95,07/15/19 06:41,"761 North St, Austin, TX 73301" +232179,AAA Batteries (4-pack),1,2.99,07/14/19 15:01,"423 Sunset St, New York City, NY 10001" +232180,AAA Batteries (4-pack),1,2.99,07/13/19 08:02,"664 Jackson St, San Francisco, CA 94016" +232181,Wired Headphones,2,11.99,07/25/19 20:25,"666 Lake St, Dallas, TX 75001" +232182,AA Batteries (4-pack),1,3.84,07/15/19 09:26,"799 Chestnut St, New York City, NY 10001" +232183,20in Monitor,1,109.99,07/20/19 15:13,"286 Hill St, Los Angeles, CA 90001" +232184,Macbook Pro Laptop,1,1700,07/04/19 22:59,"287 2nd St, Los Angeles, CA 90001" +232185,USB-C Charging Cable,3,11.95,07/10/19 21:56,"59 Elm St, Los Angeles, CA 90001" +232186,Lightning Charging Cable,1,14.95,07/20/19 13:11,"640 Ridge St, San Francisco, CA 94016" +232187,Lightning Charging Cable,1,14.95,07/31/19 19:21,"498 12th St, Los Angeles, CA 90001" +232188,AAA Batteries (4-pack),2,2.99,07/26/19 15:49,"144 Park St, Los Angeles, CA 90001" +232189,USB-C Charging Cable,1,11.95,07/09/19 09:58,"466 Highland St, Boston, MA 02215" +232190,Lightning Charging Cable,1,14.95,07/24/19 12:56,"382 Park St, San Francisco, CA 94016" +232191,Lightning Charging Cable,1,14.95,07/21/19 20:49,"431 Hill St, San Francisco, CA 94016" +232192,Lightning Charging Cable,1,14.95,07/15/19 16:21,"199 10th St, San Francisco, CA 94016" +232193,Lightning Charging Cable,1,14.95,07/11/19 22:54,"201 Elm St, Boston, MA 02215" +232194,USB-C Charging Cable,1,11.95,07/12/19 17:22,"752 Park St, Los Angeles, CA 90001" +232195,USB-C Charging Cable,1,11.95,07/26/19 20:41,"392 Hickory St, San Francisco, CA 94016" +232196,ThinkPad Laptop,1,999.99,07/02/19 15:47,"850 Lakeview St, Boston, MA 02215" +232197,Flatscreen TV,1,300,07/28/19 07:49,"199 6th St, Dallas, TX 75001" +232198,Macbook Pro Laptop,1,1700,07/06/19 22:28,"958 Lake St, Seattle, WA 98101" +232199,Google Phone,1,600,07/19/19 23:53,"263 Chestnut St, San Francisco, CA 94016" +232200,Bose SoundSport Headphones,1,99.99,07/25/19 14:44,"380 Dogwood St, Portland, OR 97035" +232201,Bose SoundSport Headphones,1,99.99,07/11/19 10:20,"578 Madison St, Atlanta, GA 30301" +232202,AAA Batteries (4-pack),1,2.99,07/21/19 21:21,"789 Hill St, San Francisco, CA 94016" +232203,Lightning Charging Cable,1,14.95,07/15/19 23:27,"227 Lakeview St, New York City, NY 10001" +232204,27in FHD Monitor,1,149.99,07/11/19 14:14,"83 Chestnut St, Seattle, WA 98101" +232205,USB-C Charging Cable,1,11.95,07/27/19 18:32,"610 Jefferson St, Portland, OR 97035" +232206,Wired Headphones,1,11.99,07/30/19 21:45,"952 6th St, Boston, MA 02215" +232207,USB-C Charging Cable,1,11.95,07/15/19 08:42,"257 North St, Portland, OR 97035" +232208,Apple Airpods Headphones,1,150,07/10/19 11:01,"499 Ridge St, Los Angeles, CA 90001" +232209,USB-C Charging Cable,1,11.95,07/02/19 17:06,"829 4th St, San Francisco, CA 94016" +232210,USB-C Charging Cable,2,11.95,07/29/19 15:43,"257 12th St, San Francisco, CA 94016" +232211,Lightning Charging Cable,1,14.95,07/06/19 15:16,"136 Sunset St, Los Angeles, CA 90001" +232212,Bose SoundSport Headphones,1,99.99,07/28/19 19:34,"802 Dogwood St, Seattle, WA 98101" +232213,Flatscreen TV,2,300,07/17/19 17:32,"781 Washington St, Dallas, TX 75001" +232214,iPhone,1,700,07/09/19 12:23,"631 Chestnut St, Dallas, TX 75001" +232215,AAA Batteries (4-pack),1,2.99,07/15/19 20:28,"453 Meadow St, Dallas, TX 75001" +232216,Apple Airpods Headphones,1,150,07/25/19 14:33,"888 Highland St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +232217,Lightning Charging Cable,1,14.95,07/14/19 11:41,"89 8th St, Austin, TX 73301" +232218,USB-C Charging Cable,1,11.95,07/08/19 11:08,"538 Jefferson St, Dallas, TX 75001" +232219,ThinkPad Laptop,1,999.99,07/10/19 00:38,"374 9th St, Boston, MA 02215" +232220,Apple Airpods Headphones,1,150,07/31/19 18:20,"437 4th St, Boston, MA 02215" +232221,AAA Batteries (4-pack),2,2.99,07/13/19 14:25,"826 1st St, Seattle, WA 98101" +232222,USB-C Charging Cable,1,11.95,07/11/19 13:20,"772 Sunset St, Los Angeles, CA 90001" +232223,Lightning Charging Cable,1,14.95,07/13/19 16:12,"190 Park St, Dallas, TX 75001" +232224,Google Phone,1,600,07/15/19 17:55,"646 Walnut St, Los Angeles, CA 90001" +232225,Apple Airpods Headphones,1,150,07/07/19 18:36,"967 11th St, Dallas, TX 75001" +232226,27in FHD Monitor,1,149.99,07/11/19 12:45,"570 Elm St, San Francisco, CA 94016" +232227,34in Ultrawide Monitor,1,379.99,07/18/19 15:40,"992 5th St, Los Angeles, CA 90001" +232228,20in Monitor,1,109.99,07/03/19 16:05,"846 9th St, New York City, NY 10001" +232229,27in 4K Gaming Monitor,1,389.99,07/20/19 13:01,"126 Washington St, Los Angeles, CA 90001" +232230,Lightning Charging Cable,1,14.95,07/16/19 08:44,"261 Dogwood St, Los Angeles, CA 90001" +232231,iPhone,1,700,07/29/19 13:29,"362 12th St, New York City, NY 10001" +232232,Lightning Charging Cable,1,14.95,07/22/19 19:47,"342 Cherry St, New York City, NY 10001" +232233,Lightning Charging Cable,1,14.95,07/12/19 18:05,"81 Chestnut St, San Francisco, CA 94016" +232234,Apple Airpods Headphones,1,150,07/06/19 13:27,"654 Walnut St, Los Angeles, CA 90001" +232235,USB-C Charging Cable,1,11.95,07/10/19 17:08,"362 Hickory St, Los Angeles, CA 90001" +232236,AAA Batteries (4-pack),1,2.99,07/30/19 20:01,"777 Washington St, Boston, MA 02215" +232237,AA Batteries (4-pack),1,3.84,07/18/19 07:47,"907 4th St, Dallas, TX 75001" +232238,Bose SoundSport Headphones,1,99.99,07/28/19 15:18,"954 West St, Dallas, TX 75001" +232239,AAA Batteries (4-pack),1,2.99,07/19/19 20:12,"575 9th St, San Francisco, CA 94016" +232240,34in Ultrawide Monitor,1,379.99,07/09/19 09:33,"55 6th St, Austin, TX 73301" +232241,Lightning Charging Cable,1,14.95,07/14/19 19:51,"887 Hickory St, Los Angeles, CA 90001" +232242,ThinkPad Laptop,1,999.99,07/12/19 05:19,"368 Forest St, San Francisco, CA 94016" +232243,20in Monitor,1,109.99,07/30/19 11:55,"115 Jefferson St, San Francisco, CA 94016" +232244,Bose SoundSport Headphones,1,99.99,07/11/19 11:06,"505 Highland St, Atlanta, GA 30301" +232245,Lightning Charging Cable,1,14.95,07/11/19 11:55,"494 10th St, Atlanta, GA 30301" +232246,USB-C Charging Cable,1,11.95,07/25/19 20:54,"437 Wilson St, Atlanta, GA 30301" +232247,Bose SoundSport Headphones,1,99.99,07/25/19 13:10,"33 Jackson St, San Francisco, CA 94016" +232248,Bose SoundSport Headphones,1,99.99,07/15/19 18:58,"607 Wilson St, Seattle, WA 98101" +232249,Apple Airpods Headphones,1,150,07/26/19 13:56,"141 Adams St, Dallas, TX 75001" +232250,Macbook Pro Laptop,1,1700,07/10/19 17:09,"991 Pine St, Portland, OR 97035" +232251,AA Batteries (4-pack),1,3.84,07/30/19 13:37,"418 Center St, Portland, OR 97035" +232252,AAA Batteries (4-pack),1,2.99,07/18/19 12:45,"697 Wilson St, Dallas, TX 75001" +232253,AAA Batteries (4-pack),1,2.99,07/15/19 17:29,"406 South St, Austin, TX 73301" +232254,AAA Batteries (4-pack),1,2.99,07/04/19 13:48,"187 Church St, San Francisco, CA 94016" +232255,AAA Batteries (4-pack),4,2.99,07/21/19 21:08,"384 Forest St, Dallas, TX 75001" +232256,Lightning Charging Cable,1,14.95,07/08/19 14:27,"228 Chestnut St, San Francisco, CA 94016" +232257,iPhone,1,700,07/16/19 18:50,"55 Cedar St, Los Angeles, CA 90001" +232258,Lightning Charging Cable,1,14.95,07/19/19 15:22,"62 Pine St, New York City, NY 10001" +232259,iPhone,1,700,07/22/19 16:59,"750 Elm St, Boston, MA 02215" +232260,Apple Airpods Headphones,1,150,07/08/19 12:29,"8 Church St, San Francisco, CA 94016" +232261,iPhone,1,700,07/15/19 14:29,"819 Lake St, Atlanta, GA 30301" +232262,Wired Headphones,1,11.99,07/04/19 15:49,"493 5th St, Los Angeles, CA 90001" +232263,Macbook Pro Laptop,1,1700,07/17/19 00:00,"865 Forest St, Los Angeles, CA 90001" +232264,Apple Airpods Headphones,1,150,07/20/19 11:41,"632 8th St, Dallas, TX 75001" +232265,Flatscreen TV,1,300,07/01/19 19:59,"663 Center St, Boston, MA 02215" +232266,AA Batteries (4-pack),1,3.84,07/18/19 12:09,"703 Adams St, Boston, MA 02215" +232267,USB-C Charging Cable,1,11.95,07/31/19 13:14,"635 9th St, New York City, NY 10001" +232268,Lightning Charging Cable,1,14.95,07/20/19 10:44,"649 Main St, Los Angeles, CA 90001" +232269,Apple Airpods Headphones,1,150,07/31/19 20:06,"963 2nd St, Portland, OR 97035" +232270,Wired Headphones,1,11.99,07/02/19 11:46,"129 West St, New York City, NY 10001" +232271,AAA Batteries (4-pack),3,2.99,07/31/19 04:06,"563 Spruce St, Los Angeles, CA 90001" +232272,27in FHD Monitor,1,149.99,07/25/19 04:17,"406 4th St, Atlanta, GA 30301" +232273,34in Ultrawide Monitor,1,379.99,07/09/19 13:24,"496 7th St, San Francisco, CA 94016" +232274,Lightning Charging Cable,1,14.95,07/15/19 14:10,"504 South St, Portland, OR 97035" +232275,AAA Batteries (4-pack),3,2.99,07/10/19 17:46,"85 Pine St, San Francisco, CA 94016" +232276,iPhone,1,700,07/30/19 09:39,"162 4th St, Los Angeles, CA 90001" +232277,Bose SoundSport Headphones,1,99.99,07/24/19 12:21,"952 Lake St, San Francisco, CA 94016" +232278,Bose SoundSport Headphones,1,99.99,07/25/19 08:56,"1 Washington St, Dallas, TX 75001" +232279,AAA Batteries (4-pack),1,2.99,07/29/19 10:21,"882 Lake St, San Francisco, CA 94016" +232280,Flatscreen TV,1,300,07/04/19 08:41,"273 9th St, Los Angeles, CA 90001" +232281,Wired Headphones,1,11.99,07/22/19 18:58,"403 Forest St, San Francisco, CA 94016" +232281,AAA Batteries (4-pack),1,2.99,07/22/19 18:58,"403 Forest St, San Francisco, CA 94016" +232282,Wired Headphones,1,11.99,07/18/19 17:20,"336 Washington St, San Francisco, CA 94016" +232283,Apple Airpods Headphones,1,150,07/20/19 17:39,"839 Park St, San Francisco, CA 94016" +232284,AA Batteries (4-pack),1,3.84,07/29/19 16:11,"513 Sunset St, Seattle, WA 98101" +232285,ThinkPad Laptop,1,999.99,07/21/19 20:43,"368 Highland St, San Francisco, CA 94016" +232286,iPhone,1,700,07/30/19 13:46,"911 Wilson St, San Francisco, CA 94016" +232287,USB-C Charging Cable,1,11.95,07/11/19 16:40,"145 Willow St, New York City, NY 10001" +232288,Wired Headphones,1,11.99,07/23/19 00:23,"329 Center St, Portland, OR 97035" +232289,Apple Airpods Headphones,1,150,07/30/19 11:40,"442 West St, Los Angeles, CA 90001" +232290,AA Batteries (4-pack),1,3.84,07/21/19 16:07,"94 Pine St, New York City, NY 10001" +232291,iPhone,1,700,07/09/19 16:42,"763 9th St, Seattle, WA 98101" +232292,Lightning Charging Cable,1,14.95,07/29/19 22:32,"103 Hickory St, San Francisco, CA 94016" +232293,AA Batteries (4-pack),2,3.84,07/14/19 12:04,"888 Park St, New York City, NY 10001" +232294,Lightning Charging Cable,1,14.95,07/08/19 18:39,"715 8th St, Atlanta, GA 30301" +232295,AAA Batteries (4-pack),2,2.99,07/06/19 14:35,"654 Cedar St, Los Angeles, CA 90001" +232296,27in 4K Gaming Monitor,1,389.99,07/06/19 13:43,"427 5th St, New York City, NY 10001" +232297,Lightning Charging Cable,1,14.95,07/08/19 17:22,"646 Cherry St, Los Angeles, CA 90001" +232298,AA Batteries (4-pack),1,3.84,07/12/19 17:02,"56 6th St, Atlanta, GA 30301" +232299,Apple Airpods Headphones,1,150,07/12/19 11:30,"446 Main St, Dallas, TX 75001" +232300,Apple Airpods Headphones,1,150,07/12/19 20:24,"461 Willow St, Dallas, TX 75001" +232301,Apple Airpods Headphones,1,150,07/03/19 17:18,"757 1st St, Seattle, WA 98101" +232302,Bose SoundSport Headphones,1,99.99,07/01/19 23:16,"481 Maple St, Boston, MA 02215" +232303,Apple Airpods Headphones,1,150,07/16/19 18:59,"778 South St, Boston, MA 02215" +232304,Bose SoundSport Headphones,2,99.99,07/20/19 13:28,"444 2nd St, Austin, TX 73301" +232305,Lightning Charging Cable,1,14.95,07/14/19 14:20,"851 Wilson St, Austin, TX 73301" +232306,Google Phone,1,600,07/26/19 14:44,"183 Jackson St, San Francisco, CA 94016" +232306,Bose SoundSport Headphones,1,99.99,07/26/19 14:44,"183 Jackson St, San Francisco, CA 94016" +232307,27in FHD Monitor,1,149.99,07/10/19 05:58,"758 4th St, New York City, NY 10001" +232308,27in FHD Monitor,1,149.99,07/29/19 21:43,"760 Walnut St, San Francisco, CA 94016" +232309,AAA Batteries (4-pack),1,2.99,07/06/19 21:37,"868 1st St, New York City, NY 10001" +232310,USB-C Charging Cable,1,11.95,07/17/19 23:09,"999 2nd St, San Francisco, CA 94016" +232311,Wired Headphones,1,11.99,07/04/19 10:54,"698 North St, San Francisco, CA 94016" +232312,Apple Airpods Headphones,1,150,07/23/19 21:07,"656 Washington St, Dallas, TX 75001" +232313,27in FHD Monitor,1,149.99,07/11/19 08:07,"119 Dogwood St, Atlanta, GA 30301" +232314,AAA Batteries (4-pack),2,2.99,07/07/19 02:12,"847 Washington St, Dallas, TX 75001" +232315,USB-C Charging Cable,1,11.95,07/23/19 10:49,"419 Lincoln St, New York City, NY 10001" +232316,Apple Airpods Headphones,1,150,07/05/19 10:19,"787 Lakeview St, Atlanta, GA 30301" +232317,Wired Headphones,2,11.99,07/21/19 18:36,"178 Pine St, Atlanta, GA 30301" +232318,Wired Headphones,1,11.99,07/05/19 21:11,"806 Forest St, New York City, NY 10001" +232319,AA Batteries (4-pack),1,3.84,07/31/19 21:55,"962 Elm St, Los Angeles, CA 90001" +232320,Lightning Charging Cable,1,14.95,07/17/19 11:59,"649 11th St, Seattle, WA 98101" +232321,iPhone,1,700,07/30/19 19:45,"917 Hickory St, Dallas, TX 75001" +232322,Vareebadd Phone,1,400,07/21/19 12:03,"835 8th St, New York City, NY 10001" +232323,AAA Batteries (4-pack),1,2.99,07/25/19 12:21,"524 7th St, New York City, NY 10001" +232324,Bose SoundSport Headphones,1,99.99,07/30/19 19:47,"523 Lakeview St, New York City, NY 10001" +232325,USB-C Charging Cable,1,11.95,07/29/19 20:47,"386 Johnson St, San Francisco, CA 94016" +232326,AAA Batteries (4-pack),1,2.99,07/01/19 12:43,"335 Sunset St, San Francisco, CA 94016" +232327,AA Batteries (4-pack),1,3.84,07/23/19 10:44,"779 6th St, New York City, NY 10001" +232328,Lightning Charging Cable,1,14.95,07/07/19 14:28,"303 4th St, Austin, TX 73301" +232329,AA Batteries (4-pack),1,3.84,07/30/19 11:44,"285 14th St, Austin, TX 73301" +232330,Bose SoundSport Headphones,1,99.99,07/19/19 10:32,"859 7th St, San Francisco, CA 94016" +232331,AAA Batteries (4-pack),1,2.99,07/16/19 13:00,"589 Spruce St, Austin, TX 73301" +232332,Lightning Charging Cable,1,14.95,07/13/19 17:39,"535 Elm St, San Francisco, CA 94016" +232333,Bose SoundSport Headphones,1,99.99,07/25/19 00:10,"158 Hickory St, Portland, OR 97035" +232334,Lightning Charging Cable,2,14.95,07/07/19 13:31,"749 Cherry St, Dallas, TX 75001" +232335,Bose SoundSport Headphones,1,99.99,07/26/19 15:07,"354 Lakeview St, Atlanta, GA 30301" +232336,AA Batteries (4-pack),1,3.84,07/10/19 14:12,"772 8th St, Atlanta, GA 30301" +232337,AAA Batteries (4-pack),2,2.99,07/24/19 23:29,"88 South St, Dallas, TX 75001" +232338,Wired Headphones,1,11.99,07/24/19 00:44,"696 Center St, San Francisco, CA 94016" +232339,Lightning Charging Cable,1,14.95,07/06/19 13:23,"673 Jefferson St, Portland, OR 97035" +232340,27in 4K Gaming Monitor,1,389.99,07/08/19 13:07,"322 Maple St, Atlanta, GA 30301" +232341,USB-C Charging Cable,1,11.95,07/18/19 20:26,"814 Lake St, New York City, NY 10001" +232342,27in 4K Gaming Monitor,1,389.99,07/02/19 13:17,"201 13th St, New York City, NY 10001" +232343,Apple Airpods Headphones,1,150,07/07/19 20:19,"406 Elm St, Boston, MA 02215" +232344,Wired Headphones,1,11.99,07/03/19 23:18,"878 Maple St, San Francisco, CA 94016" +232345,USB-C Charging Cable,1,11.95,07/12/19 19:05,"99 Johnson St, Boston, MA 02215" +232346,Lightning Charging Cable,1,14.95,07/22/19 19:23,"679 Hill St, Los Angeles, CA 90001" +232347,AAA Batteries (4-pack),1,2.99,07/27/19 14:25,"292 Walnut St, Portland, OR 97035" +232348,27in 4K Gaming Monitor,1,389.99,07/20/19 21:13,"314 Forest St, Dallas, TX 75001" +232349,AA Batteries (4-pack),1,3.84,07/08/19 21:32,"325 Cherry St, San Francisco, CA 94016" +232350,Flatscreen TV,1,300,07/09/19 22:36,"303 6th St, Portland, OR 97035" +232351,USB-C Charging Cable,1,11.95,07/22/19 19:23,"960 Walnut St, New York City, NY 10001" +232352,20in Monitor,1,109.99,07/15/19 18:00,"283 Park St, Los Angeles, CA 90001" +232353,34in Ultrawide Monitor,1,379.99,07/25/19 17:32,"757 Cherry St, Seattle, WA 98101" +232354,AA Batteries (4-pack),1,3.84,07/21/19 19:45,"805 Chestnut St, Atlanta, GA 30301" +232355,Apple Airpods Headphones,1,150,07/08/19 16:25,"892 9th St, San Francisco, CA 94016" +232356,AA Batteries (4-pack),1,3.84,07/18/19 20:28,"842 Dogwood St, New York City, NY 10001" +232357,Vareebadd Phone,1,400,07/19/19 21:28,"776 North St, Atlanta, GA 30301" +232358,AAA Batteries (4-pack),1,2.99,07/30/19 19:50,"598 2nd St, New York City, NY 10001" +232359,AAA Batteries (4-pack),4,2.99,07/02/19 00:55,"597 13th St, Los Angeles, CA 90001" +232360,Flatscreen TV,1,300,07/28/19 23:05,"382 10th St, Portland, OR 97035" +232361,iPhone,1,700,07/09/19 21:14,"478 Johnson St, San Francisco, CA 94016" +232362,Lightning Charging Cable,1,14.95,07/13/19 11:52,"955 8th St, Austin, TX 73301" +232363,USB-C Charging Cable,1,11.95,07/29/19 03:27,"854 Highland St, Seattle, WA 98101" +232364,Apple Airpods Headphones,1,150,07/28/19 20:06,"657 Cherry St, San Francisco, CA 94016" +232365,27in 4K Gaming Monitor,1,389.99,07/12/19 20:32,"529 Adams St, Seattle, WA 98101" +232366,Apple Airpods Headphones,1,150,07/07/19 21:44,"627 9th St, San Francisco, CA 94016" +232367,Wired Headphones,1,11.99,07/27/19 17:44,"665 Adams St, San Francisco, CA 94016" +232368,Lightning Charging Cable,1,14.95,07/22/19 13:05,"454 2nd St, Portland, OR 97035" +232369,Wired Headphones,2,11.99,07/07/19 01:24,"737 South St, New York City, NY 10001" +232370,Lightning Charging Cable,1,14.95,07/06/19 20:39,"438 12th St, New York City, NY 10001" +232371,Apple Airpods Headphones,1,150,07/11/19 19:42,"777 Wilson St, San Francisco, CA 94016" +232372,27in FHD Monitor,1,149.99,07/29/19 19:08,"774 Main St, San Francisco, CA 94016" +232373,iPhone,1,700,07/05/19 17:38,"692 Hickory St, Atlanta, GA 30301" +232374,Wired Headphones,1,11.99,07/16/19 15:22,"554 8th St, Boston, MA 02215" +232374,ThinkPad Laptop,1,999.99,07/16/19 15:22,"554 8th St, Boston, MA 02215" +232375,27in FHD Monitor,1,149.99,07/27/19 12:34,"749 North St, New York City, NY 10001" +232376,34in Ultrawide Monitor,1,379.99,07/23/19 15:07,"919 Ridge St, San Francisco, CA 94016" +232377,Lightning Charging Cable,1,14.95,07/05/19 17:39,"110 Willow St, Los Angeles, CA 90001" +232378,Apple Airpods Headphones,1,150,07/20/19 00:41,"114 Center St, Los Angeles, CA 90001" +232379,Bose SoundSport Headphones,1,99.99,07/29/19 08:22,"487 Spruce St, Atlanta, GA 30301" +,,,,, +232380,AAA Batteries (4-pack),1,2.99,07/12/19 21:25,"502 6th St, New York City, NY 10001" +232381,Lightning Charging Cable,1,14.95,07/16/19 20:23,"578 Center St, Dallas, TX 75001" +232382,Apple Airpods Headphones,1,150,07/13/19 17:05,"625 Church St, Seattle, WA 98101" +232383,USB-C Charging Cable,1,11.95,07/04/19 13:17,"46 Church St, Boston, MA 02215" +232384,27in 4K Gaming Monitor,1,389.99,07/30/19 14:53,"33 Forest St, New York City, NY 10001" +232385,27in FHD Monitor,1,149.99,07/24/19 20:53,"376 Cherry St, San Francisco, CA 94016" +232386,Apple Airpods Headphones,1,150,07/30/19 10:05,"203 4th St, Seattle, WA 98101" +232387,Wired Headphones,1,11.99,07/18/19 16:39,"505 9th St, San Francisco, CA 94016" +232388,AA Batteries (4-pack),4,3.84,07/18/19 09:10,"797 Meadow St, Los Angeles, CA 90001" +232389,34in Ultrawide Monitor,1,379.99,07/12/19 02:06,"753 Willow St, San Francisco, CA 94016" +232390,Macbook Pro Laptop,1,1700,07/05/19 13:45,"401 Lake St, New York City, NY 10001" +232391,Bose SoundSport Headphones,1,99.99,07/08/19 11:07,"468 13th St, San Francisco, CA 94016" +232392,27in FHD Monitor,1,149.99,07/23/19 22:04,"919 Forest St, Portland, OR 97035" +232393,Wired Headphones,1,11.99,07/10/19 13:19,"324 Johnson St, Seattle, WA 98101" +232394,USB-C Charging Cable,2,11.95,07/16/19 01:21,"709 Park St, San Francisco, CA 94016" +232395,27in FHD Monitor,1,149.99,07/07/19 08:38,"460 Wilson St, Austin, TX 73301" +232396,AAA Batteries (4-pack),3,2.99,07/31/19 12:02,"916 Johnson St, New York City, NY 10001" +232397,27in FHD Monitor,1,149.99,07/04/19 16:43,"406 Cedar St, Dallas, TX 75001" +232398,USB-C Charging Cable,1,11.95,07/23/19 10:33,"668 9th St, Seattle, WA 98101" +232399,AA Batteries (4-pack),1,3.84,07/26/19 12:00,"823 Sunset St, New York City, NY 10001" +232400,iPhone,1,700,07/02/19 22:10,"478 8th St, Seattle, WA 98101" +232400,Wired Headphones,1,11.99,07/02/19 22:10,"478 8th St, Seattle, WA 98101" +232401,USB-C Charging Cable,2,11.95,07/17/19 11:55,"862 10th St, San Francisco, CA 94016" +232402,27in FHD Monitor,1,149.99,07/21/19 08:53,"885 Lincoln St, Boston, MA 02215" +232403,USB-C Charging Cable,1,11.95,07/25/19 20:15,"715 1st St, New York City, NY 10001" +232404,USB-C Charging Cable,1,11.95,07/09/19 06:59,"852 Lincoln St, Dallas, TX 75001" +232405,Macbook Pro Laptop,1,1700,07/31/19 14:34,"29 Sunset St, Dallas, TX 75001" +232406,27in FHD Monitor,1,149.99,07/05/19 12:42,"979 Park St, San Francisco, CA 94016" +232407,USB-C Charging Cable,1,11.95,07/31/19 16:20,"152 Cherry St, Los Angeles, CA 90001" +232408,Flatscreen TV,1,300,07/09/19 02:46,"557 Chestnut St, Seattle, WA 98101" +232409,Lightning Charging Cable,1,14.95,07/16/19 06:41,"907 Johnson St, San Francisco, CA 94016" +232410,AAA Batteries (4-pack),1,2.99,07/29/19 16:23,"532 Maple St, San Francisco, CA 94016" +232411,Bose SoundSport Headphones,1,99.99,07/20/19 13:05,"433 Hill St, Atlanta, GA 30301" +232412,20in Monitor,1,109.99,07/08/19 06:14,"169 South St, San Francisco, CA 94016" +232413,27in 4K Gaming Monitor,1,389.99,07/29/19 17:03,"981 2nd St, San Francisco, CA 94016" +232414,USB-C Charging Cable,1,11.95,07/12/19 21:30,"744 Hickory St, Boston, MA 02215" +232415,USB-C Charging Cable,1,11.95,07/16/19 23:57,"742 Johnson St, Atlanta, GA 30301" +232416,Lightning Charging Cable,1,14.95,07/06/19 19:49,"779 Wilson St, New York City, NY 10001" +232417,AAA Batteries (4-pack),2,2.99,07/26/19 01:28,"45 Lincoln St, Boston, MA 02215" +232418,USB-C Charging Cable,1,11.95,07/23/19 11:06,"290 Lakeview St, Los Angeles, CA 90001" +232419,USB-C Charging Cable,1,11.95,07/27/19 13:14,"162 Madison St, Austin, TX 73301" +232420,USB-C Charging Cable,1,11.95,07/19/19 12:48,"700 Lakeview St, San Francisco, CA 94016" +232421,Apple Airpods Headphones,1,150,07/10/19 15:59,"495 Ridge St, San Francisco, CA 94016" +232422,Lightning Charging Cable,1,14.95,07/09/19 18:01,"819 8th St, San Francisco, CA 94016" +232423,AA Batteries (4-pack),1,3.84,07/07/19 15:45,"279 14th St, Boston, MA 02215" +232424,Lightning Charging Cable,1,14.95,07/06/19 14:21,"365 14th St, San Francisco, CA 94016" +232425,AAA Batteries (4-pack),1,2.99,07/20/19 07:55,"478 12th St, San Francisco, CA 94016" +,,,,, +232426,Macbook Pro Laptop,1,1700,07/17/19 14:00,"47 Highland St, Austin, TX 73301" +232427,ThinkPad Laptop,1,999.99,07/21/19 22:13,"721 Jackson St, Portland, OR 97035" +232428,Macbook Pro Laptop,1,1700,07/18/19 10:36,"236 10th St, Austin, TX 73301" +232429,Apple Airpods Headphones,1,150,07/24/19 15:49,"415 Lincoln St, New York City, NY 10001" +232430,USB-C Charging Cable,1,11.95,07/10/19 16:04,"294 Forest St, Seattle, WA 98101" +232431,USB-C Charging Cable,1,11.95,07/08/19 22:06,"877 2nd St, Los Angeles, CA 90001" +232432,Apple Airpods Headphones,1,150,07/21/19 20:11,"596 Forest St, Atlanta, GA 30301" +232433,Wired Headphones,1,11.99,07/12/19 15:36,"149 13th St, Boston, MA 02215" +232434,AA Batteries (4-pack),1,3.84,07/21/19 23:06,"325 Church St, Boston, MA 02215" +232435,Apple Airpods Headphones,1,150,07/29/19 11:15,"606 5th St, Seattle, WA 98101" +232436,AA Batteries (4-pack),1,3.84,07/27/19 18:20,"148 Willow St, Dallas, TX 75001" +232437,Lightning Charging Cable,1,14.95,07/12/19 20:26,"327 Sunset St, Portland, OR 97035" +232438,USB-C Charging Cable,1,11.95,07/05/19 00:45,"896 Church St, New York City, NY 10001" +232439,20in Monitor,1,109.99,07/26/19 12:50,"801 13th St, San Francisco, CA 94016" +232440,Flatscreen TV,1,300,07/23/19 20:54,"2 Ridge St, Seattle, WA 98101" +232441,USB-C Charging Cable,1,11.95,07/10/19 22:08,"426 Wilson St, New York City, NY 10001" +232442,Lightning Charging Cable,1,14.95,07/04/19 15:47,"349 Hill St, Atlanta, GA 30301" +232443,34in Ultrawide Monitor,1,379.99,07/05/19 19:43,"541 Sunset St, Austin, TX 73301" +232444,Wired Headphones,1,11.99,07/08/19 10:14,"590 4th St, Atlanta, GA 30301" +232445,Wired Headphones,1,11.99,07/20/19 17:25,"3 Wilson St, Austin, TX 73301" +232446,ThinkPad Laptop,1,999.99,07/13/19 13:42,"557 Forest St, San Francisco, CA 94016" +232447,Wired Headphones,1,11.99,07/29/19 21:25,"445 Lake St, Austin, TX 73301" +232448,AAA Batteries (4-pack),1,2.99,07/31/19 11:39,"138 Madison St, San Francisco, CA 94016" +232449,20in Monitor,1,109.99,07/05/19 19:22,"242 Lakeview St, San Francisco, CA 94016" +232450,27in FHD Monitor,1,149.99,07/06/19 17:51,"262 Walnut St, Boston, MA 02215" +232451,Apple Airpods Headphones,1,150,07/13/19 17:32,"993 Jefferson St, Los Angeles, CA 90001" +232452,Lightning Charging Cable,1,14.95,07/02/19 19:26,"351 Lincoln St, Portland, OR 97035" +232453,Lightning Charging Cable,1,14.95,07/05/19 14:42,"922 Dogwood St, San Francisco, CA 94016" +232454,AA Batteries (4-pack),2,3.84,07/30/19 15:12,"9 Elm St, Seattle, WA 98101" +232455,AA Batteries (4-pack),1,3.84,07/28/19 16:09,"167 6th St, New York City, NY 10001" +232455,iPhone,1,700,07/28/19 16:09,"167 6th St, New York City, NY 10001" +232456,AAA Batteries (4-pack),1,2.99,07/24/19 17:04,"498 Cedar St, Atlanta, GA 30301" +232456,Wired Headphones,1,11.99,07/24/19 17:04,"498 Cedar St, Atlanta, GA 30301" +232457,Lightning Charging Cable,1,14.95,07/19/19 08:50,"941 Washington St, Los Angeles, CA 90001" +232458,AA Batteries (4-pack),1,3.84,07/01/19 13:05,"369 Jefferson St, Dallas, TX 75001" +232459,AA Batteries (4-pack),1,3.84,07/15/19 18:19,"360 Elm St, Los Angeles, CA 90001" +232459,USB-C Charging Cable,1,11.95,07/15/19 18:19,"360 Elm St, Los Angeles, CA 90001" +232460,Wired Headphones,1,11.99,07/12/19 07:00,"418 Elm St, Los Angeles, CA 90001" +232461,Apple Airpods Headphones,1,150,07/11/19 14:37,"862 Hill St, Dallas, TX 75001" +232462,Google Phone,1,600,07/21/19 12:41,"636 Hill St, Atlanta, GA 30301" +232463,AAA Batteries (4-pack),2,2.99,07/13/19 10:52,"327 8th St, San Francisco, CA 94016" +232464,27in FHD Monitor,1,149.99,07/05/19 21:37,"96 Elm St, San Francisco, CA 94016" +232465,AA Batteries (4-pack),2,3.84,07/06/19 14:18,"375 Lakeview St, Los Angeles, CA 90001" +232466,USB-C Charging Cable,1,11.95,07/13/19 18:29,"942 11th St, Austin, TX 73301" +232467,Apple Airpods Headphones,1,150,07/22/19 11:50,"414 Lincoln St, Boston, MA 02215" +232468,AA Batteries (4-pack),2,3.84,07/19/19 20:58,"924 Walnut St, Seattle, WA 98101" +232469,34in Ultrawide Monitor,1,379.99,07/06/19 19:40,"231 Chestnut St, Austin, TX 73301" +232470,Flatscreen TV,1,300,07/08/19 19:56,"767 Elm St, New York City, NY 10001" +232471,AA Batteries (4-pack),1,3.84,07/29/19 17:50,"567 Chestnut St, Portland, OR 97035" +232472,Flatscreen TV,1,300,07/19/19 23:52,"185 Jefferson St, Seattle, WA 98101" +232473,AA Batteries (4-pack),1,3.84,07/29/19 17:13,"727 Jefferson St, Los Angeles, CA 90001" +232474,Apple Airpods Headphones,1,150,07/09/19 07:31,"294 Johnson St, New York City, NY 10001" +232475,AA Batteries (4-pack),1,3.84,07/22/19 19:53,"232 Chestnut St, Boston, MA 02215" +232476,27in 4K Gaming Monitor,1,389.99,07/30/19 21:12,"573 7th St, San Francisco, CA 94016" +232477,Bose SoundSport Headphones,1,99.99,07/27/19 00:39,"930 Wilson St, San Francisco, CA 94016" +232478,Apple Airpods Headphones,1,150,07/05/19 12:23,"2 River St, San Francisco, CA 94016" +232478,Google Phone,1,600,07/05/19 12:23,"2 River St, San Francisco, CA 94016" +232479,Lightning Charging Cable,1,14.95,07/12/19 15:20,"218 Jefferson St, New York City, NY 10001" +232480,Bose SoundSport Headphones,1,99.99,07/07/19 23:19,"825 9th St, Los Angeles, CA 90001" +232481,USB-C Charging Cable,1,11.95,07/05/19 12:42,"162 12th St, San Francisco, CA 94016" +232482,Lightning Charging Cable,1,14.95,07/09/19 21:49,"996 Madison St, Los Angeles, CA 90001" +232483,Bose SoundSport Headphones,1,99.99,07/16/19 20:11,"10 Dogwood St, New York City, NY 10001" +232484,USB-C Charging Cable,3,11.95,07/17/19 11:45,"659 Chestnut St, San Francisco, CA 94016" +232485,AA Batteries (4-pack),1,3.84,07/27/19 11:16,"399 Johnson St, Boston, MA 02215" +232486,27in FHD Monitor,1,149.99,07/24/19 18:45,"431 Willow St, Boston, MA 02215" +232487,AAA Batteries (4-pack),1,2.99,07/23/19 00:34,"906 12th St, Dallas, TX 75001" +232488,Flatscreen TV,1,300,07/14/19 21:40,"193 Highland St, Austin, TX 73301" +232489,AAA Batteries (4-pack),1,2.99,07/17/19 19:42,"689 North St, New York City, NY 10001" +232490,Flatscreen TV,1,300,07/04/19 17:01,"800 Chestnut St, San Francisco, CA 94016" +232491,AAA Batteries (4-pack),2,2.99,07/22/19 00:53,"924 10th St, Seattle, WA 98101" +232492,27in 4K Gaming Monitor,1,389.99,07/05/19 15:59,"155 Hickory St, Dallas, TX 75001" +232493,27in FHD Monitor,1,149.99,07/13/19 13:59,"957 12th St, Boston, MA 02215" +232494,20in Monitor,1,109.99,07/27/19 23:19,"795 Cherry St, Austin, TX 73301" +232495,Wired Headphones,1,11.99,07/24/19 11:11,"737 5th St, Seattle, WA 98101" +232496,Lightning Charging Cable,1,14.95,07/12/19 12:54,"372 Park St, Portland, ME 04101" +232497,27in 4K Gaming Monitor,1,389.99,07/29/19 12:31,"373 Jefferson St, San Francisco, CA 94016" +232498,Bose SoundSport Headphones,1,99.99,07/23/19 13:03,"149 Main St, Atlanta, GA 30301" +232499,AA Batteries (4-pack),1,3.84,07/09/19 14:16,"66 Main St, Los Angeles, CA 90001" +232500,Lightning Charging Cable,1,14.95,07/21/19 10:00,"967 Center St, Seattle, WA 98101" +232501,AA Batteries (4-pack),3,3.84,07/21/19 19:16,"216 Park St, Dallas, TX 75001" +232502,ThinkPad Laptop,1,999.99,07/15/19 14:31,"520 North St, San Francisco, CA 94016" +232503,20in Monitor,1,109.99,07/24/19 21:04,"66 9th St, Dallas, TX 75001" +232504,Apple Airpods Headphones,1,150,07/02/19 12:26,"650 4th St, New York City, NY 10001" +232505,Wired Headphones,1,11.99,07/27/19 22:13,"129 13th St, San Francisco, CA 94016" +232506,20in Monitor,1,109.99,07/24/19 17:36,"571 Cherry St, Seattle, WA 98101" +232507,Wired Headphones,1,11.99,07/15/19 13:56,"202 Spruce St, New York City, NY 10001" +232508,Lightning Charging Cable,1,14.95,07/06/19 11:32,"264 Elm St, San Francisco, CA 94016" +232509,USB-C Charging Cable,1,11.95,07/13/19 07:48,"721 Highland St, Dallas, TX 75001" +232510,Bose SoundSport Headphones,1,99.99,07/24/19 00:06,"816 5th St, San Francisco, CA 94016" +232511,Macbook Pro Laptop,1,1700,07/25/19 19:04,"20 Washington St, New York City, NY 10001" +232512,AAA Batteries (4-pack),1,2.99,07/19/19 17:05,"463 Spruce St, San Francisco, CA 94016" +232513,Lightning Charging Cable,1,14.95,07/11/19 14:54,"31 River St, New York City, NY 10001" +232514,AAA Batteries (4-pack),1,2.99,07/09/19 11:28,"342 Maple St, Boston, MA 02215" +232515,AAA Batteries (4-pack),2,2.99,07/20/19 06:49,"732 Park St, Los Angeles, CA 90001" +232516,Wired Headphones,1,11.99,07/31/19 22:05,"887 North St, Austin, TX 73301" +232517,Wired Headphones,1,11.99,07/28/19 15:41,"159 Ridge St, San Francisco, CA 94016" +232518,ThinkPad Laptop,1,999.99,07/14/19 12:56,"314 North St, Seattle, WA 98101" +232519,Wired Headphones,1,11.99,07/20/19 10:26,"365 Washington St, Boston, MA 02215" +232520,AAA Batteries (4-pack),1,2.99,07/30/19 18:17,"153 11th St, Atlanta, GA 30301" +232521,Bose SoundSport Headphones,1,99.99,07/19/19 19:18,"991 Madison St, Boston, MA 02215" +232522,Apple Airpods Headphones,1,150,07/27/19 21:35,"216 Ridge St, Atlanta, GA 30301" +232523,Bose SoundSport Headphones,1,99.99,07/15/19 17:28,"396 Adams St, Austin, TX 73301" +232524,AA Batteries (4-pack),2,3.84,07/04/19 19:08,"200 Center St, Los Angeles, CA 90001" +232525,ThinkPad Laptop,1,999.99,07/21/19 07:37,"691 5th St, San Francisco, CA 94016" +232526,iPhone,1,700,07/05/19 18:49,"239 14th St, Boston, MA 02215" +232527,Bose SoundSport Headphones,1,99.99,07/18/19 21:06,"394 1st St, Boston, MA 02215" +232528,Apple Airpods Headphones,1,150,07/21/19 21:52,"695 Lincoln St, Seattle, WA 98101" +232529,Google Phone,1,600,07/24/19 23:02,"386 6th St, Dallas, TX 75001" +232530,27in FHD Monitor,1,149.99,07/05/19 12:36,"67 River St, New York City, NY 10001" +232531,27in FHD Monitor,1,149.99,07/04/19 19:03,"508 9th St, Portland, OR 97035" +232532,iPhone,1,700,07/14/19 21:50,"997 Hill St, Austin, TX 73301" +232533,AA Batteries (4-pack),1,3.84,07/12/19 09:02,"647 Church St, San Francisco, CA 94016" +232534,iPhone,1,700,07/16/19 09:24,"127 Dogwood St, Boston, MA 02215" +232535,AA Batteries (4-pack),1,3.84,07/06/19 20:53,"812 Highland St, New York City, NY 10001" +232536,27in FHD Monitor,1,149.99,07/01/19 08:57,"723 Chestnut St, Dallas, TX 75001" +232537,Lightning Charging Cable,1,14.95,07/21/19 07:50,"656 Johnson St, Seattle, WA 98101" +232538,Apple Airpods Headphones,1,150,07/31/19 15:38,"465 Elm St, Boston, MA 02215" +232539,AA Batteries (4-pack),2,3.84,07/01/19 11:29,"830 2nd St, Portland, OR 97035" +232540,Macbook Pro Laptop,1,1700,07/22/19 16:57,"134 West St, New York City, NY 10001" +232541,Bose SoundSport Headphones,1,99.99,07/20/19 19:24,"857 Spruce St, New York City, NY 10001" +232542,27in 4K Gaming Monitor,1,389.99,07/26/19 06:46,"717 14th St, Portland, OR 97035" +232543,iPhone,1,700,07/25/19 07:48,"714 9th St, Atlanta, GA 30301" +232544,AAA Batteries (4-pack),1,2.99,07/11/19 13:56,"820 North St, Atlanta, GA 30301" +232545,AAA Batteries (4-pack),1,2.99,07/21/19 00:24,"962 13th St, San Francisco, CA 94016" +232546,AAA Batteries (4-pack),4,2.99,07/06/19 19:55,"769 Ridge St, San Francisco, CA 94016" +232547,USB-C Charging Cable,1,11.95,07/21/19 18:36,"353 Elm St, San Francisco, CA 94016" +232548,AA Batteries (4-pack),2,3.84,07/30/19 11:04,"911 1st St, San Francisco, CA 94016" +232549,USB-C Charging Cable,1,11.95,07/28/19 15:44,"247 10th St, Dallas, TX 75001" +232550,AA Batteries (4-pack),3,3.84,07/14/19 19:13,"889 Church St, San Francisco, CA 94016" +232551,AAA Batteries (4-pack),2,2.99,07/29/19 10:06,"475 Walnut St, San Francisco, CA 94016" +232552,USB-C Charging Cable,1,11.95,07/17/19 17:38,"405 6th St, Boston, MA 02215" +232553,20in Monitor,1,109.99,07/23/19 18:20,"32 Madison St, Atlanta, GA 30301" +232554,AAA Batteries (4-pack),1,2.99,07/10/19 18:49,"668 Park St, Los Angeles, CA 90001" +232555,Apple Airpods Headphones,1,150,07/25/19 00:06,"55 6th St, Portland, OR 97035" +232556,Apple Airpods Headphones,1,150,07/04/19 01:01,"969 Madison St, San Francisco, CA 94016" +232557,Google Phone,1,600,07/06/19 14:01,"586 Church St, Los Angeles, CA 90001" +232558,USB-C Charging Cable,1,11.95,07/03/19 10:50,"104 10th St, San Francisco, CA 94016" +232558,AAA Batteries (4-pack),1,2.99,07/03/19 10:50,"104 10th St, San Francisco, CA 94016" +232559,Apple Airpods Headphones,1,150,07/04/19 11:23,"151 Madison St, New York City, NY 10001" +232560,Vareebadd Phone,1,400,07/18/19 14:49,"464 Spruce St, Boston, MA 02215" +232561,Google Phone,1,600,07/04/19 18:57,"100 6th St, Los Angeles, CA 90001" +232562,AAA Batteries (4-pack),7,2.99,07/06/19 16:53,"973 1st St, Austin, TX 73301" +232563,AA Batteries (4-pack),1,3.84,07/10/19 12:18,"447 14th St, San Francisco, CA 94016" +232564,AAA Batteries (4-pack),2,2.99,07/09/19 17:52,"749 2nd St, New York City, NY 10001" +232565,AAA Batteries (4-pack),2,2.99,07/08/19 12:36,"636 Lincoln St, San Francisco, CA 94016" +232566,iPhone,1,700,07/28/19 14:54,"324 Jackson St, Portland, OR 97035" +232567,Lightning Charging Cable,1,14.95,07/12/19 17:54,"2 Meadow St, Austin, TX 73301" +232568,AAA Batteries (4-pack),2,2.99,07/20/19 22:47,"522 Jackson St, Los Angeles, CA 90001" +232569,AA Batteries (4-pack),1,3.84,07/10/19 21:51,"514 West St, Portland, OR 97035" +232570,Lightning Charging Cable,1,14.95,07/20/19 21:24,"34 Walnut St, Seattle, WA 98101" +232571,Google Phone,1,600,07/11/19 07:45,"936 Hickory St, Atlanta, GA 30301" +232572,Wired Headphones,1,11.99,07/04/19 23:38,"283 Hickory St, Seattle, WA 98101" +232573,USB-C Charging Cable,1,11.95,07/09/19 09:37,"740 Maple St, San Francisco, CA 94016" +232574,iPhone,1,700,07/29/19 20:18,"86 Forest St, Seattle, WA 98101" +232574,Apple Airpods Headphones,1,150,07/29/19 20:18,"86 Forest St, Seattle, WA 98101" +232575,AA Batteries (4-pack),1,3.84,08/01/19 02:29,"955 Willow St, Atlanta, GA 30301" +232576,Vareebadd Phone,1,400,07/03/19 05:46,"725 4th St, New York City, NY 10001" +232577,27in 4K Gaming Monitor,1,389.99,07/31/19 20:47,"309 Lakeview St, Dallas, TX 75001" +232578,Lightning Charging Cable,1,14.95,07/13/19 12:30,"944 8th St, San Francisco, CA 94016" +232579,USB-C Charging Cable,1,11.95,07/03/19 14:25,"332 North St, Boston, MA 02215" +232580,Macbook Pro Laptop,1,1700,07/11/19 11:38,"160 Washington St, Seattle, WA 98101" +232581,AA Batteries (4-pack),1,3.84,07/02/19 22:45,"463 Hill St, Los Angeles, CA 90001" +232582,AA Batteries (4-pack),1,3.84,07/11/19 14:39,"72 Forest St, Seattle, WA 98101" +232583,Wired Headphones,2,11.99,07/21/19 20:59,"188 12th St, Portland, OR 97035" +232584,AAA Batteries (4-pack),2,2.99,07/25/19 14:58,"600 Chestnut St, Dallas, TX 75001" +232585,Wired Headphones,2,11.99,07/18/19 02:44,"580 13th St, Boston, MA 02215" +232586,USB-C Charging Cable,1,11.95,07/03/19 13:24,"989 Johnson St, Austin, TX 73301" +232587,Lightning Charging Cable,1,14.95,07/15/19 09:46,"674 Meadow St, Los Angeles, CA 90001" +232588,Lightning Charging Cable,1,14.95,07/06/19 18:57,"358 River St, New York City, NY 10001" +232589,USB-C Charging Cable,1,11.95,07/17/19 07:41,"943 Pine St, Austin, TX 73301" +232590,AAA Batteries (4-pack),3,2.99,07/15/19 11:09,"760 Spruce St, Boston, MA 02215" +232591,Apple Airpods Headphones,1,150,07/28/19 20:54,"37 4th St, Dallas, TX 75001" +232592,Wired Headphones,2,11.99,07/21/19 05:41,"900 Hill St, Seattle, WA 98101" +232593,Lightning Charging Cable,1,14.95,07/15/19 15:08,"741 13th St, Boston, MA 02215" +232594,Wired Headphones,1,11.99,07/10/19 10:48,"381 Highland St, San Francisco, CA 94016" +232595,Bose SoundSport Headphones,1,99.99,07/21/19 01:12,"379 Hill St, New York City, NY 10001" +232596,USB-C Charging Cable,1,11.95,07/01/19 06:53,"84 Sunset St, San Francisco, CA 94016" +232597,Apple Airpods Headphones,1,150,07/22/19 22:49,"244 Jefferson St, San Francisco, CA 94016" +232598,Macbook Pro Laptop,1,1700,07/30/19 16:45,"70 Walnut St, Los Angeles, CA 90001" +232599,Bose SoundSport Headphones,1,99.99,07/27/19 00:06,"75 Jefferson St, Seattle, WA 98101" +232600,iPhone,1,700,07/07/19 12:29,"291 Hickory St, San Francisco, CA 94016" +232601,Apple Airpods Headphones,1,150,07/30/19 18:02,"662 West St, San Francisco, CA 94016" +232602,Macbook Pro Laptop,1,1700,07/09/19 01:43,"860 Washington St, Seattle, WA 98101" +232603,USB-C Charging Cable,1,11.95,07/31/19 16:01,"794 Cherry St, Atlanta, GA 30301" +232604,Bose SoundSport Headphones,1,99.99,07/30/19 18:17,"533 River St, New York City, NY 10001" +232605,USB-C Charging Cable,1,11.95,07/05/19 16:28,"181 Highland St, Portland, ME 04101" +232606,AAA Batteries (4-pack),1,2.99,07/15/19 18:10,"722 Lakeview St, San Francisco, CA 94016" +232607,Lightning Charging Cable,1,14.95,07/06/19 22:01,"590 Johnson St, New York City, NY 10001" +232608,ThinkPad Laptop,1,999.99,07/13/19 20:13,"36 North St, San Francisco, CA 94016" +232609,AAA Batteries (4-pack),1,2.99,07/11/19 21:21,"59 8th St, New York City, NY 10001" +232610,AAA Batteries (4-pack),1,2.99,07/06/19 17:20,"877 Spruce St, Atlanta, GA 30301" +232611,iPhone,1,700,07/20/19 16:21,"649 12th St, Los Angeles, CA 90001" +232611,Apple Airpods Headphones,1,150,07/20/19 16:21,"649 12th St, Los Angeles, CA 90001" +232612,Lightning Charging Cable,1,14.95,07/15/19 11:37,"305 Sunset St, Austin, TX 73301" +232613,AA Batteries (4-pack),2,3.84,07/29/19 12:20,"94 Pine St, Dallas, TX 75001" +232614,Apple Airpods Headphones,1,150,07/01/19 11:44,"421 Lakeview St, New York City, NY 10001" +232615,Macbook Pro Laptop,1,1700,07/01/19 17:46,"777 Dogwood St, New York City, NY 10001" +232616,AA Batteries (4-pack),1,3.84,07/30/19 15:28,"316 Jackson St, Portland, OR 97035" +232617,Vareebadd Phone,1,400,07/15/19 11:55,"397 Hickory St, San Francisco, CA 94016" +232618,AA Batteries (4-pack),2,3.84,07/14/19 14:55,"952 11th St, Los Angeles, CA 90001" +232619,Wired Headphones,1,11.99,07/03/19 21:46,"699 Church St, Austin, TX 73301" +232620,27in FHD Monitor,1,149.99,07/02/19 22:51,"345 Pine St, Seattle, WA 98101" +232621,Apple Airpods Headphones,1,150,07/11/19 19:47,"730 South St, San Francisco, CA 94016" +232622,USB-C Charging Cable,1,11.95,07/03/19 17:32,"342 Spruce St, Los Angeles, CA 90001" +232623,Wired Headphones,1,11.99,07/22/19 14:31,"405 Maple St, San Francisco, CA 94016" +232624,ThinkPad Laptop,1,999.99,07/12/19 12:19,"927 2nd St, Atlanta, GA 30301" +232625,USB-C Charging Cable,1,11.95,07/03/19 15:17,"770 13th St, Boston, MA 02215" +232626,Google Phone,1,600,07/09/19 23:52,"39 Wilson St, San Francisco, CA 94016" +232626,USB-C Charging Cable,1,11.95,07/09/19 23:52,"39 Wilson St, San Francisco, CA 94016" +232627,Vareebadd Phone,1,400,07/25/19 16:56,"478 Pine St, Dallas, TX 75001" +232627,USB-C Charging Cable,1,11.95,07/25/19 16:56,"478 Pine St, Dallas, TX 75001" +232628,iPhone,1,700,07/17/19 12:38,"659 1st St, Dallas, TX 75001" +232629,Apple Airpods Headphones,1,150,07/22/19 16:42,"604 4th St, San Francisco, CA 94016" +232630,AA Batteries (4-pack),1,3.84,07/23/19 17:50,"447 Walnut St, Portland, OR 97035" +232631,Bose SoundSport Headphones,1,99.99,07/03/19 20:00,"170 Ridge St, New York City, NY 10001" +232632,AA Batteries (4-pack),1,3.84,07/20/19 21:39,"81 Jackson St, Atlanta, GA 30301" +232633,Google Phone,1,600,07/31/19 20:24,"5 Meadow St, Los Angeles, CA 90001" +232634,Lightning Charging Cable,1,14.95,07/08/19 13:31,"199 North St, San Francisco, CA 94016" +232635,Flatscreen TV,1,300,07/08/19 15:18,"112 Pine St, San Francisco, CA 94016" +232636,Google Phone,1,600,07/25/19 22:31,"101 8th St, Atlanta, GA 30301" +232636,USB-C Charging Cable,1,11.95,07/25/19 22:31,"101 8th St, Atlanta, GA 30301" +232637,USB-C Charging Cable,1,11.95,07/10/19 13:13,"378 Dogwood St, Boston, MA 02215" +232638,Flatscreen TV,1,300,07/01/19 16:00,"385 Madison St, Austin, TX 73301" +232639,34in Ultrawide Monitor,1,379.99,07/11/19 20:40,"449 Chestnut St, San Francisco, CA 94016" +232640,Bose SoundSport Headphones,1,99.99,07/13/19 10:24,"321 10th St, Los Angeles, CA 90001" +232641,AA Batteries (4-pack),1,3.84,07/10/19 18:06,"376 Hill St, Boston, MA 02215" +232641,Google Phone,1,600,07/10/19 18:06,"376 Hill St, Boston, MA 02215" +232642,20in Monitor,1,109.99,07/05/19 12:57,"730 Ridge St, Los Angeles, CA 90001" +232643,Apple Airpods Headphones,1,150,07/22/19 16:36,"63 Lakeview St, Portland, ME 04101" +232644,Macbook Pro Laptop,1,1700,07/21/19 14:48,"210 Ridge St, Seattle, WA 98101" +232645,ThinkPad Laptop,1,999.99,07/13/19 14:04,"811 10th St, San Francisco, CA 94016" +232646,AAA Batteries (4-pack),1,2.99,07/19/19 17:21,"126 South St, Dallas, TX 75001" +232647,Apple Airpods Headphones,1,150,07/19/19 09:10,"827 Cedar St, Boston, MA 02215" +232648,Lightning Charging Cable,1,14.95,07/10/19 09:49,"344 Willow St, Los Angeles, CA 90001" +232649,AAA Batteries (4-pack),1,2.99,07/27/19 09:39,"367 6th St, Atlanta, GA 30301" +232650,Lightning Charging Cable,1,14.95,07/11/19 21:03,"84 Willow St, Portland, OR 97035" +232651,27in 4K Gaming Monitor,1,389.99,07/31/19 10:50,"214 Johnson St, New York City, NY 10001" +232652,Lightning Charging Cable,1,14.95,07/25/19 11:53,"54 South St, Atlanta, GA 30301" +232653,Lightning Charging Cable,1,14.95,07/22/19 19:23,"22 2nd St, San Francisco, CA 94016" +232654,Bose SoundSport Headphones,1,99.99,07/20/19 22:24,"601 6th St, New York City, NY 10001" +232655,AA Batteries (4-pack),1,3.84,07/09/19 22:05,"481 Lincoln St, Los Angeles, CA 90001" +232656,AAA Batteries (4-pack),1,2.99,07/12/19 09:07,"488 6th St, San Francisco, CA 94016" +232657,Apple Airpods Headphones,1,150,07/05/19 14:48,"180 Spruce St, San Francisco, CA 94016" +232658,AA Batteries (4-pack),1,3.84,07/07/19 19:13,"116 Ridge St, San Francisco, CA 94016" +232659,Wired Headphones,1,11.99,07/19/19 23:11,"831 Maple St, Austin, TX 73301" +232660,Apple Airpods Headphones,1,150,07/06/19 09:38,"768 Center St, Los Angeles, CA 90001" +232661,USB-C Charging Cable,1,11.95,07/12/19 17:36,"114 Park St, Atlanta, GA 30301" +232662,Wired Headphones,1,11.99,07/15/19 14:47,"242 South St, San Francisco, CA 94016" +232663,Bose SoundSport Headphones,1,99.99,07/03/19 19:20,"43 4th St, Seattle, WA 98101" +232664,USB-C Charging Cable,1,11.95,07/29/19 18:26,"431 11th St, Portland, ME 04101" +232665,Wired Headphones,1,11.99,07/07/19 13:09,"415 Sunset St, Boston, MA 02215" +232666,Lightning Charging Cable,1,14.95,07/23/19 22:09,"886 North St, Los Angeles, CA 90001" +232667,USB-C Charging Cable,2,11.95,07/19/19 21:31,"129 Wilson St, San Francisco, CA 94016" +232668,ThinkPad Laptop,1,999.99,07/04/19 23:27,"251 Elm St, Portland, OR 97035" +232669,Apple Airpods Headphones,1,150,07/17/19 20:24,"18 12th St, San Francisco, CA 94016" +232670,AA Batteries (4-pack),1,3.84,07/06/19 21:57,"922 Park St, New York City, NY 10001" +232671,AA Batteries (4-pack),1,3.84,07/19/19 18:16,"527 Jefferson St, San Francisco, CA 94016" +232672,AAA Batteries (4-pack),2,2.99,07/27/19 16:56,"487 13th St, Boston, MA 02215" +232673,AA Batteries (4-pack),1,3.84,07/22/19 22:52,"128 Pine St, Austin, TX 73301" +232674,Lightning Charging Cable,1,14.95,07/09/19 21:42,"442 Madison St, Los Angeles, CA 90001" +232675,Bose SoundSport Headphones,1,99.99,07/28/19 10:36,"814 Madison St, Los Angeles, CA 90001" +232676,Wired Headphones,1,11.99,07/09/19 18:25,"934 Church St, Austin, TX 73301" +232677,27in 4K Gaming Monitor,1,389.99,07/15/19 12:48,"307 Cherry St, Austin, TX 73301" +232678,Lightning Charging Cable,1,14.95,07/06/19 12:02,"767 West St, Portland, OR 97035" +232679,Macbook Pro Laptop,1,1700,07/22/19 11:40,"757 Jefferson St, Los Angeles, CA 90001" +232680,AAA Batteries (4-pack),2,2.99,07/14/19 22:46,"18 Dogwood St, Seattle, WA 98101" +232681,AA Batteries (4-pack),1,3.84,07/19/19 14:14,"20 Willow St, San Francisco, CA 94016" +232682,ThinkPad Laptop,1,999.99,07/28/19 22:38,"702 Highland St, Boston, MA 02215" +232683,Lightning Charging Cable,1,14.95,07/29/19 08:37,"152 Chestnut St, San Francisco, CA 94016" +232684,AA Batteries (4-pack),1,3.84,07/09/19 10:49,"518 South St, Los Angeles, CA 90001" +232685,AAA Batteries (4-pack),1,2.99,07/26/19 16:57,"652 Highland St, Dallas, TX 75001" +232686,USB-C Charging Cable,1,11.95,07/29/19 22:37,"11 Lincoln St, San Francisco, CA 94016" +232687,Wired Headphones,2,11.99,07/05/19 19:29,"923 Church St, New York City, NY 10001" +232688,Google Phone,1,600,07/08/19 17:38,"387 Spruce St, Portland, OR 97035" +232689,Lightning Charging Cable,1,14.95,07/10/19 11:03,"150 Dogwood St, San Francisco, CA 94016" +232690,Wired Headphones,1,11.99,07/13/19 11:20,"797 Sunset St, Los Angeles, CA 90001" +232691,AAA Batteries (4-pack),1,2.99,07/18/19 05:50,"367 Meadow St, San Francisco, CA 94016" +232692,Flatscreen TV,1,300,07/18/19 13:12,"697 1st St, Dallas, TX 75001" +232693,Apple Airpods Headphones,1,150,07/22/19 23:52,"912 Meadow St, San Francisco, CA 94016" +232693,Wired Headphones,1,11.99,07/22/19 23:52,"912 Meadow St, San Francisco, CA 94016" +232694,AA Batteries (4-pack),1,3.84,07/28/19 21:23,"497 Wilson St, New York City, NY 10001" +232695,Vareebadd Phone,1,400,07/28/19 11:10,"207 North St, Dallas, TX 75001" +232696,Wired Headphones,3,11.99,07/02/19 15:20,"402 Lake St, Los Angeles, CA 90001" +232697,Lightning Charging Cable,1,14.95,07/09/19 18:02,"204 Wilson St, Los Angeles, CA 90001" +232698,Wired Headphones,2,11.99,07/05/19 10:48,"133 1st St, San Francisco, CA 94016" +232699,Google Phone,1,600,07/27/19 13:52,"374 Sunset St, Dallas, TX 75001" +232699,USB-C Charging Cable,1,11.95,07/27/19 13:52,"374 Sunset St, Dallas, TX 75001" +232700,27in 4K Gaming Monitor,1,389.99,07/07/19 17:46,"290 5th St, San Francisco, CA 94016" +232701,AAA Batteries (4-pack),1,2.99,07/18/19 15:42,"457 Washington St, Seattle, WA 98101" +232701,USB-C Charging Cable,1,11.95,07/18/19 15:42,"457 Washington St, Seattle, WA 98101" +232702,Apple Airpods Headphones,1,150,07/17/19 18:21,"969 Main St, New York City, NY 10001" +232703,ThinkPad Laptop,1,999.99,07/04/19 18:25,"770 Jackson St, Boston, MA 02215" +232704,27in FHD Monitor,1,149.99,07/03/19 16:55,"537 Church St, San Francisco, CA 94016" +232705,Lightning Charging Cable,1,14.95,07/21/19 09:48,"107 Ridge St, New York City, NY 10001" +232706,Lightning Charging Cable,1,14.95,07/11/19 09:39,"860 North St, Seattle, WA 98101" +232707,Wired Headphones,1,11.99,07/12/19 08:06,"70 Johnson St, Atlanta, GA 30301" +232708,AAA Batteries (4-pack),1,2.99,07/13/19 11:13,"427 Cedar St, Atlanta, GA 30301" +232709,AA Batteries (4-pack),1,3.84,07/31/19 22:46,"778 Johnson St, Atlanta, GA 30301" +232710,Lightning Charging Cable,1,14.95,07/05/19 13:15,"436 13th St, Los Angeles, CA 90001" +232711,27in 4K Gaming Monitor,1,389.99,07/31/19 18:32,"797 10th St, Los Angeles, CA 90001" +232712,ThinkPad Laptop,1,999.99,07/10/19 17:38,"764 Forest St, Dallas, TX 75001" +232713,USB-C Charging Cable,1,11.95,07/31/19 10:13,"198 14th St, San Francisco, CA 94016" +232714,iPhone,1,700,07/08/19 17:27,"886 Meadow St, New York City, NY 10001" +232715,iPhone,1,700,07/11/19 10:35,"923 5th St, Portland, OR 97035" +232716,AA Batteries (4-pack),1,3.84,07/14/19 20:07,"732 Sunset St, Atlanta, GA 30301" +232716,Google Phone,1,600,07/14/19 20:07,"732 Sunset St, Atlanta, GA 30301" +232717,Lightning Charging Cable,1,14.95,07/18/19 18:42,"60 6th St, Portland, OR 97035" +232718,AAA Batteries (4-pack),1,2.99,07/26/19 12:53,"84 14th St, Seattle, WA 98101" +232719,Bose SoundSport Headphones,1,99.99,07/16/19 20:24,"352 Elm St, Dallas, TX 75001" +232720,34in Ultrawide Monitor,1,379.99,07/11/19 18:10,"486 13th St, San Francisco, CA 94016" +232721,Wired Headphones,1,11.99,07/22/19 11:43,"151 Spruce St, New York City, NY 10001" +232722,Wired Headphones,1,11.99,07/18/19 18:34,"256 Ridge St, Los Angeles, CA 90001" +232723,AAA Batteries (4-pack),1,2.99,07/20/19 12:28,"683 Jackson St, San Francisco, CA 94016" +232724,Bose SoundSport Headphones,1,99.99,07/15/19 10:02,"257 Walnut St, Los Angeles, CA 90001" +232725,Bose SoundSport Headphones,1,99.99,07/13/19 17:28,"130 Lakeview St, Boston, MA 02215" +232726,AA Batteries (4-pack),1,3.84,07/26/19 12:33,"310 4th St, New York City, NY 10001" +232727,AAA Batteries (4-pack),1,2.99,07/12/19 20:57,"264 1st St, Atlanta, GA 30301" +232728,34in Ultrawide Monitor,1,379.99,07/07/19 19:32,"350 Adams St, Boston, MA 02215" +232729,Bose SoundSport Headphones,1,99.99,07/20/19 16:07,"178 6th St, San Francisco, CA 94016" +232730,Lightning Charging Cable,1,14.95,07/18/19 06:23,"785 Spruce St, Los Angeles, CA 90001" +232731,USB-C Charging Cable,1,11.95,07/16/19 20:07,"76 1st St, Seattle, WA 98101" +232732,Wired Headphones,1,11.99,07/20/19 15:24,"65 2nd St, San Francisco, CA 94016" +232733,ThinkPad Laptop,1,999.99,07/22/19 22:29,"860 River St, New York City, NY 10001" +232734,ThinkPad Laptop,1,999.99,07/28/19 13:17,"781 Madison St, San Francisco, CA 94016" +232735,AAA Batteries (4-pack),4,2.99,07/15/19 17:02,"534 Maple St, Seattle, WA 98101" +232736,27in 4K Gaming Monitor,1,389.99,07/14/19 10:00,"156 Madison St, Boston, MA 02215" +232737,Vareebadd Phone,1,400,07/23/19 17:20,"532 4th St, San Francisco, CA 94016" +232738,27in 4K Gaming Monitor,1,389.99,07/09/19 15:16,"487 10th St, Atlanta, GA 30301" +232739,Apple Airpods Headphones,1,150,07/26/19 15:09,"454 Hickory St, Atlanta, GA 30301" +232740,AA Batteries (4-pack),1,3.84,07/23/19 00:16,"600 1st St, Los Angeles, CA 90001" +232741,Lightning Charging Cable,1,14.95,07/04/19 13:31,"875 11th St, Los Angeles, CA 90001" +232741,AA Batteries (4-pack),1,3.84,07/04/19 13:31,"875 11th St, Los Angeles, CA 90001" +232742,Bose SoundSport Headphones,1,99.99,07/26/19 11:29,"47 6th St, Los Angeles, CA 90001" +232743,Bose SoundSport Headphones,1,99.99,07/03/19 18:35,"643 Meadow St, Boston, MA 02215" +232744,Lightning Charging Cable,1,14.95,07/06/19 15:12,"781 Park St, Los Angeles, CA 90001" +232745,USB-C Charging Cable,1,11.95,07/29/19 10:43,"340 7th St, Dallas, TX 75001" +232746,USB-C Charging Cable,2,11.95,07/26/19 11:49,"118 Park St, Boston, MA 02215" +232747,Wired Headphones,1,11.99,07/19/19 13:14,"854 Meadow St, New York City, NY 10001" +232748,Macbook Pro Laptop,1,1700,07/24/19 15:18,"329 9th St, Los Angeles, CA 90001" +232749,Macbook Pro Laptop,1,1700,07/05/19 14:33,"72 8th St, Atlanta, GA 30301" +232750,Lightning Charging Cable,1,14.95,07/23/19 17:20,"774 2nd St, Los Angeles, CA 90001" +232751,Wired Headphones,1,11.99,07/16/19 10:52,"266 Lake St, New York City, NY 10001" +232752,USB-C Charging Cable,1,11.95,07/12/19 23:39,"479 Jackson St, Atlanta, GA 30301" +232753,AAA Batteries (4-pack),1,2.99,07/08/19 18:54,"328 Lincoln St, San Francisco, CA 94016" +232754,AAA Batteries (4-pack),1,2.99,07/10/19 12:06,"507 Madison St, Atlanta, GA 30301" +232755,Apple Airpods Headphones,1,150,07/14/19 18:14,"162 Jackson St, Portland, OR 97035" +232756,Bose SoundSport Headphones,1,99.99,07/18/19 12:02,"336 Elm St, Los Angeles, CA 90001" +232757,Wired Headphones,1,11.99,07/26/19 21:17,"892 Madison St, New York City, NY 10001" +232758,Wired Headphones,1,11.99,07/01/19 11:25,"224 Church St, Los Angeles, CA 90001" +232759,iPhone,1,700,07/29/19 16:01,"551 North St, Atlanta, GA 30301" +232760,27in FHD Monitor,1,149.99,07/01/19 12:11,"892 Cedar St, Austin, TX 73301" +232761,Lightning Charging Cable,1,14.95,07/04/19 07:59,"436 Sunset St, Los Angeles, CA 90001" +232762,27in 4K Gaming Monitor,1,389.99,07/20/19 09:24,"425 Johnson St, San Francisco, CA 94016" +232763,34in Ultrawide Monitor,1,379.99,07/31/19 14:24,"222 6th St, Boston, MA 02215" +232764,AAA Batteries (4-pack),1,2.99,07/18/19 12:49,"143 8th St, San Francisco, CA 94016" +232765,Apple Airpods Headphones,1,150,07/20/19 19:50,"841 Walnut St, Seattle, WA 98101" +232766,AAA Batteries (4-pack),1,2.99,07/27/19 20:03,"806 Church St, San Francisco, CA 94016" +232767,USB-C Charging Cable,2,11.95,07/26/19 13:03,"202 Sunset St, New York City, NY 10001" +232768,AAA Batteries (4-pack),1,2.99,07/07/19 11:32,"709 10th St, Boston, MA 02215" +232768,iPhone,1,700,07/07/19 11:32,"709 10th St, Boston, MA 02215" +232769,USB-C Charging Cable,1,11.95,07/09/19 14:25,"900 Walnut St, Atlanta, GA 30301" +232770,Bose SoundSport Headphones,1,99.99,07/30/19 22:15,"188 12th St, San Francisco, CA 94016" +232771,Apple Airpods Headphones,1,150,07/14/19 16:37,"238 4th St, Boston, MA 02215" +232772,27in 4K Gaming Monitor,1,389.99,07/06/19 17:38,"154 River St, Austin, TX 73301" +232773,34in Ultrawide Monitor,1,379.99,07/25/19 15:27,"768 5th St, Los Angeles, CA 90001" +232774,USB-C Charging Cable,1,11.95,07/11/19 19:50,"520 South St, New York City, NY 10001" +232775,AAA Batteries (4-pack),1,2.99,07/26/19 22:10,"388 Johnson St, Los Angeles, CA 90001" +232776,27in FHD Monitor,1,149.99,07/13/19 22:41,"689 12th St, Los Angeles, CA 90001" +232777,Bose SoundSport Headphones,1,99.99,07/22/19 16:25,"972 Highland St, Austin, TX 73301" +232778,27in FHD Monitor,1,149.99,07/01/19 12:37,"287 Willow St, San Francisco, CA 94016" +232779,ThinkPad Laptop,1,999.99,07/26/19 14:40,"909 River St, Portland, OR 97035" +232780,Wired Headphones,1,11.99,07/13/19 17:43,"575 2nd St, Los Angeles, CA 90001" +232781,AA Batteries (4-pack),1,3.84,07/11/19 16:54,"621 Pine St, New York City, NY 10001" +232782,Lightning Charging Cable,1,14.95,07/31/19 18:55,"487 14th St, Portland, OR 97035" +232783,Lightning Charging Cable,1,14.95,07/29/19 15:01,"336 Maple St, Atlanta, GA 30301" +232784,Macbook Pro Laptop,1,1700,07/02/19 18:25,"983 River St, San Francisco, CA 94016" +232785,Lightning Charging Cable,2,14.95,07/09/19 14:07,"486 River St, Austin, TX 73301" +232786,AAA Batteries (4-pack),2,2.99,07/07/19 23:43,"772 14th St, Portland, OR 97035" +232787,USB-C Charging Cable,1,11.95,07/20/19 11:27,"388 Adams St, Atlanta, GA 30301" +232788,Lightning Charging Cable,1,14.95,07/23/19 09:26,"423 Forest St, New York City, NY 10001" +232789,Apple Airpods Headphones,1,150,07/08/19 12:08,"327 4th St, New York City, NY 10001" +232790,USB-C Charging Cable,1,11.95,07/27/19 12:47,"512 Cherry St, Atlanta, GA 30301" +232791,AA Batteries (4-pack),1,3.84,07/20/19 14:26,"540 Ridge St, Dallas, TX 75001" +232792,Apple Airpods Headphones,1,150,07/16/19 10:57,"925 Hill St, New York City, NY 10001" +232793,USB-C Charging Cable,1,11.95,07/18/19 14:47,"264 Jefferson St, San Francisco, CA 94016" +232794,27in FHD Monitor,1,149.99,07/22/19 12:28,"26 Johnson St, Los Angeles, CA 90001" +,,,,, +232795,AA Batteries (4-pack),1,3.84,07/28/19 14:33,"116 Pine St, Portland, ME 04101" +232796,Apple Airpods Headphones,1,150,07/30/19 03:43,"442 Willow St, Seattle, WA 98101" +232797,27in FHD Monitor,1,149.99,07/05/19 17:44,"253 9th St, Boston, MA 02215" +232798,AAA Batteries (4-pack),3,2.99,07/29/19 01:38,"438 14th St, Boston, MA 02215" +232799,AA Batteries (4-pack),2,3.84,07/25/19 22:54,"752 2nd St, Dallas, TX 75001" +232800,AAA Batteries (4-pack),2,2.99,07/07/19 15:45,"339 Lakeview St, Atlanta, GA 30301" +232801,Apple Airpods Headphones,1,150,07/07/19 16:49,"979 2nd St, Portland, OR 97035" +232802,iPhone,1,700,07/08/19 16:06,"838 Lakeview St, Dallas, TX 75001" +232803,20in Monitor,1,109.99,07/10/19 17:12,"830 Hickory St, San Francisco, CA 94016" +232804,Wired Headphones,1,11.99,07/01/19 19:50,"367 Hickory St, San Francisco, CA 94016" +232805,USB-C Charging Cable,1,11.95,07/14/19 12:40,"777 Walnut St, Seattle, WA 98101" +232806,USB-C Charging Cable,1,11.95,07/02/19 09:48,"463 13th St, Austin, TX 73301" +232807,AA Batteries (4-pack),3,3.84,07/21/19 13:29,"329 9th St, New York City, NY 10001" +232807,Bose SoundSport Headphones,1,99.99,07/21/19 13:29,"329 9th St, New York City, NY 10001" +232808,USB-C Charging Cable,1,11.95,07/25/19 22:42,"78 8th St, San Francisco, CA 94016" +232809,AA Batteries (4-pack),1,3.84,07/13/19 18:52,"280 12th St, Boston, MA 02215" +232810,AA Batteries (4-pack),1,3.84,07/10/19 20:41,"322 Hill St, Dallas, TX 75001" +232810,AAA Batteries (4-pack),1,2.99,07/10/19 20:41,"322 Hill St, Dallas, TX 75001" +232811,34in Ultrawide Monitor,1,379.99,07/12/19 16:21,"824 Willow St, New York City, NY 10001" +232812,ThinkPad Laptop,1,999.99,07/15/19 09:44,"559 12th St, Austin, TX 73301" +232813,34in Ultrawide Monitor,1,379.99,07/15/19 13:13,"442 West St, San Francisco, CA 94016" +232814,27in FHD Monitor,1,149.99,07/19/19 18:35,"778 11th St, Portland, OR 97035" +232815,AA Batteries (4-pack),2,3.84,07/23/19 11:06,"881 8th St, Seattle, WA 98101" +232816,27in 4K Gaming Monitor,1,389.99,07/28/19 13:59,"705 13th St, New York City, NY 10001" +232817,Lightning Charging Cable,2,14.95,07/03/19 05:14,"913 Ridge St, Austin, TX 73301" +232817,Vareebadd Phone,1,400,07/03/19 05:14,"913 Ridge St, Austin, TX 73301" +232818,AA Batteries (4-pack),2,3.84,07/30/19 00:56,"959 South St, Seattle, WA 98101" +232819,AAA Batteries (4-pack),2,2.99,07/29/19 12:06,"709 12th St, San Francisco, CA 94016" +232820,AA Batteries (4-pack),3,3.84,07/08/19 09:58,"931 River St, Los Angeles, CA 90001" +232821,AAA Batteries (4-pack),1,2.99,07/19/19 15:23,"304 1st St, Austin, TX 73301" +232822,Wired Headphones,1,11.99,07/12/19 10:16,"67 Highland St, Boston, MA 02215" +232823,USB-C Charging Cable,1,11.95,07/16/19 10:30,"252 Main St, Boston, MA 02215" +232824,Flatscreen TV,1,300,07/18/19 17:15,"167 Church St, San Francisco, CA 94016" +232825,USB-C Charging Cable,1,11.95,07/13/19 10:17,"968 Dogwood St, Seattle, WA 98101" +232826,AA Batteries (4-pack),1,3.84,07/11/19 08:29,"778 1st St, Atlanta, GA 30301" +232827,Wired Headphones,2,11.99,07/09/19 14:08,"289 Cherry St, Atlanta, GA 30301" +232828,Bose SoundSport Headphones,1,99.99,07/06/19 09:13,"360 Hickory St, Boston, MA 02215" +232829,Bose SoundSport Headphones,1,99.99,07/26/19 15:02,"901 Washington St, Dallas, TX 75001" +232830,Lightning Charging Cable,1,14.95,07/02/19 10:57,"255 12th St, New York City, NY 10001" +232831,34in Ultrawide Monitor,1,379.99,07/26/19 11:18,"116 Lincoln St, Portland, OR 97035" +232832,Wired Headphones,1,11.99,07/04/19 16:58,"824 Pine St, San Francisco, CA 94016" +232833,Apple Airpods Headphones,1,150,07/07/19 20:08,"828 Jackson St, Portland, OR 97035" +232834,AA Batteries (4-pack),1,3.84,07/20/19 11:43,"133 Ridge St, Atlanta, GA 30301" +232835,Flatscreen TV,1,300,07/22/19 21:33,"788 14th St, San Francisco, CA 94016" +232836,AAA Batteries (4-pack),2,2.99,07/20/19 08:39,"181 Spruce St, Portland, ME 04101" +232837,Wired Headphones,1,11.99,07/28/19 20:45,"273 6th St, Los Angeles, CA 90001" +232838,Apple Airpods Headphones,1,150,07/29/19 18:02,"559 Willow St, New York City, NY 10001" +232839,Apple Airpods Headphones,1,150,07/01/19 22:02,"697 Cherry St, New York City, NY 10001" +232840,20in Monitor,2,109.99,07/04/19 20:08,"511 8th St, Portland, OR 97035" +232841,USB-C Charging Cable,1,11.95,07/30/19 22:59,"726 5th St, Austin, TX 73301" +232842,USB-C Charging Cable,1,11.95,07/16/19 12:22,"68 Park St, Seattle, WA 98101" +232843,AA Batteries (4-pack),1,3.84,07/13/19 16:49,"214 14th St, New York City, NY 10001" +232844,AA Batteries (4-pack),3,3.84,07/02/19 08:33,"689 Cedar St, San Francisco, CA 94016" +232845,AAA Batteries (4-pack),1,2.99,07/02/19 08:18,"836 Johnson St, San Francisco, CA 94016" +232846,ThinkPad Laptop,1,999.99,07/28/19 09:38,"223 Main St, Atlanta, GA 30301" +232847,27in FHD Monitor,1,149.99,07/18/19 16:10,"312 Madison St, Dallas, TX 75001" +232848,Bose SoundSport Headphones,1,99.99,07/09/19 12:31,"805 Center St, Atlanta, GA 30301" +232849,Bose SoundSport Headphones,1,99.99,07/03/19 08:50,"535 Washington St, San Francisco, CA 94016" +232850,Wired Headphones,1,11.99,07/28/19 12:15,"681 Cedar St, San Francisco, CA 94016" +232851,iPhone,1,700,07/21/19 19:21,"636 Cherry St, Dallas, TX 75001" +232852,iPhone,1,700,07/11/19 22:31,"314 Dogwood St, Portland, ME 04101" +232853,27in 4K Gaming Monitor,1,389.99,07/14/19 18:58,"139 5th St, New York City, NY 10001" +232854,Apple Airpods Headphones,1,150,07/27/19 09:07,"167 Adams St, New York City, NY 10001" +232855,Vareebadd Phone,1,400,07/11/19 06:57,"945 Adams St, Seattle, WA 98101" +232855,USB-C Charging Cable,1,11.95,07/11/19 06:57,"945 Adams St, Seattle, WA 98101" +232856,Google Phone,1,600,07/08/19 19:17,"673 Madison St, San Francisco, CA 94016" +232857,AAA Batteries (4-pack),2,2.99,07/15/19 16:05,"924 12th St, San Francisco, CA 94016" +232858,27in FHD Monitor,1,149.99,07/14/19 14:42,"969 Hickory St, Boston, MA 02215" +232859,USB-C Charging Cable,1,11.95,07/31/19 07:37,"403 Hickory St, San Francisco, CA 94016" +232860,Lightning Charging Cable,1,14.95,07/04/19 11:28,"566 West St, Portland, ME 04101" +232861,Apple Airpods Headphones,1,150,07/05/19 20:49,"271 8th St, Los Angeles, CA 90001" +232862,AA Batteries (4-pack),1,3.84,07/23/19 21:44,"446 Chestnut St, Atlanta, GA 30301" +232863,iPhone,1,700,07/14/19 17:49,"434 Cherry St, Boston, MA 02215" +232864,Google Phone,1,600,07/11/19 16:21,"415 Pine St, San Francisco, CA 94016" +232865,27in 4K Gaming Monitor,1,389.99,07/16/19 23:34,"486 Lakeview St, Boston, MA 02215" +232866,AA Batteries (4-pack),1,3.84,07/21/19 07:27,"124 Spruce St, San Francisco, CA 94016" +232867,Lightning Charging Cable,1,14.95,07/04/19 15:52,"251 West St, New York City, NY 10001" +232868,Lightning Charging Cable,1,14.95,07/22/19 09:19,"170 North St, Seattle, WA 98101" +232869,20in Monitor,1,109.99,07/17/19 17:35,"725 Chestnut St, San Francisco, CA 94016" +232870,Bose SoundSport Headphones,1,99.99,07/01/19 12:12,"255 Forest St, San Francisco, CA 94016" +232871,AA Batteries (4-pack),1,3.84,07/03/19 09:14,"513 4th St, Austin, TX 73301" +232872,Flatscreen TV,1,300,07/15/19 07:05,"600 North St, Dallas, TX 75001" +232873,27in 4K Gaming Monitor,1,389.99,07/21/19 13:18,"515 Elm St, San Francisco, CA 94016" +232874,USB-C Charging Cable,1,11.95,07/13/19 15:17,"137 2nd St, Boston, MA 02215" +232875,Bose SoundSport Headphones,1,99.99,07/21/19 08:27,"598 North St, San Francisco, CA 94016" +232876,AAA Batteries (4-pack),1,2.99,07/05/19 15:48,"438 Cedar St, New York City, NY 10001" +232877,27in FHD Monitor,1,149.99,07/31/19 09:02,"783 Meadow St, Portland, OR 97035" +232878,27in 4K Gaming Monitor,1,389.99,07/08/19 08:46,"964 5th St, New York City, NY 10001" +232879,Google Phone,1,600,07/06/19 12:11,"252 Meadow St, Atlanta, GA 30301" +232880,Wired Headphones,2,11.99,07/19/19 21:57,"994 Hickory St, Dallas, TX 75001" +232881,AA Batteries (4-pack),1,3.84,07/20/19 21:46,"887 2nd St, New York City, NY 10001" +232882,AA Batteries (4-pack),2,3.84,07/19/19 09:26,"982 Meadow St, San Francisco, CA 94016" +232883,Wired Headphones,1,11.99,07/27/19 13:39,"784 Wilson St, New York City, NY 10001" +232884,AAA Batteries (4-pack),2,2.99,07/07/19 19:37,"614 Lakeview St, San Francisco, CA 94016" +232885,27in FHD Monitor,1,149.99,07/29/19 12:58,"14 Elm St, Dallas, TX 75001" +232886,Google Phone,1,600,07/14/19 08:49,"946 Ridge St, Boston, MA 02215" +232886,Wired Headphones,1,11.99,07/14/19 08:49,"946 Ridge St, Boston, MA 02215" +232887,Wired Headphones,1,11.99,07/22/19 16:16,"484 10th St, San Francisco, CA 94016" +232888,AAA Batteries (4-pack),1,2.99,07/12/19 14:24,"430 North St, San Francisco, CA 94016" +232889,USB-C Charging Cable,2,11.95,07/16/19 18:34,"389 Willow St, Los Angeles, CA 90001" +232890,AAA Batteries (4-pack),3,2.99,07/17/19 09:23,"451 Dogwood St, Austin, TX 73301" +232891,Apple Airpods Headphones,1,150,07/01/19 19:00,"425 Highland St, New York City, NY 10001" +232892,USB-C Charging Cable,1,11.95,07/09/19 13:24,"334 10th St, San Francisco, CA 94016" +232893,27in FHD Monitor,1,149.99,07/27/19 20:20,"578 Madison St, Atlanta, GA 30301" +232894,AA Batteries (4-pack),1,3.84,07/25/19 19:54,"496 7th St, Dallas, TX 75001" +232895,iPhone,1,700,07/01/19 06:00,"689 West St, Atlanta, GA 30301" +232896,Wired Headphones,1,11.99,07/06/19 15:24,"882 14th St, San Francisco, CA 94016" +232897,USB-C Charging Cable,1,11.95,07/20/19 11:21,"392 Jefferson St, Seattle, WA 98101" +232898,AAA Batteries (4-pack),2,2.99,07/31/19 18:25,"519 Madison St, New York City, NY 10001" +232899,AAA Batteries (4-pack),1,2.99,07/26/19 21:10,"591 Adams St, Boston, MA 02215" +232900,Lightning Charging Cable,1,14.95,07/24/19 18:34,"867 Ridge St, Boston, MA 02215" +232901,20in Monitor,1,109.99,07/29/19 23:42,"111 Main St, Atlanta, GA 30301" +232902,27in 4K Gaming Monitor,1,389.99,07/07/19 22:52,"444 Church St, San Francisco, CA 94016" +232903,AA Batteries (4-pack),1,3.84,07/19/19 00:07,"338 Sunset St, Seattle, WA 98101" +232904,Wired Headphones,1,11.99,07/31/19 23:58,"717 12th St, San Francisco, CA 94016" +232905,27in FHD Monitor,1,149.99,07/27/19 12:03,"585 Highland St, New York City, NY 10001" +232906,AAA Batteries (4-pack),1,2.99,07/16/19 11:51,"100 Walnut St, Dallas, TX 75001" +232907,34in Ultrawide Monitor,1,379.99,07/09/19 10:34,"922 Park St, New York City, NY 10001" +232908,Lightning Charging Cable,1,14.95,07/06/19 17:24,"531 4th St, New York City, NY 10001" +232909,Wired Headphones,1,11.99,07/30/19 17:34,"310 Hill St, Boston, MA 02215" +232910,AAA Batteries (4-pack),1,2.99,07/09/19 09:12,"139 Jefferson St, Boston, MA 02215" +232911,Wired Headphones,1,11.99,07/13/19 19:00,"980 Main St, San Francisco, CA 94016" +232912,AA Batteries (4-pack),1,3.84,07/16/19 18:52,"355 Pine St, Austin, TX 73301" +232913,27in FHD Monitor,1,149.99,07/19/19 20:29,"220 Highland St, Los Angeles, CA 90001" +232914,AA Batteries (4-pack),1,3.84,07/16/19 09:24,"277 Wilson St, San Francisco, CA 94016" +232915,34in Ultrawide Monitor,1,379.99,07/28/19 12:43,"682 Willow St, Los Angeles, CA 90001" +232916,Wired Headphones,1,11.99,07/18/19 00:59,"625 4th St, Los Angeles, CA 90001" +232917,Lightning Charging Cable,1,14.95,07/06/19 12:42,"20 4th St, San Francisco, CA 94016" +232917,Vareebadd Phone,1,400,07/06/19 12:42,"20 4th St, San Francisco, CA 94016" +232918,Lightning Charging Cable,1,14.95,07/16/19 04:33,"558 1st St, San Francisco, CA 94016" +232919,Apple Airpods Headphones,1,150,07/09/19 16:04,"228 Chestnut St, Austin, TX 73301" +232920,Bose SoundSport Headphones,1,99.99,07/22/19 14:54,"871 2nd St, Los Angeles, CA 90001" +232921,Apple Airpods Headphones,1,150,07/20/19 23:21,"620 Dogwood St, Austin, TX 73301" +232922,Lightning Charging Cable,1,14.95,07/25/19 07:20,"855 11th St, New York City, NY 10001" +232923,Google Phone,1,600,07/17/19 18:39,"486 13th St, San Francisco, CA 94016" +232923,USB-C Charging Cable,1,11.95,07/17/19 18:39,"486 13th St, San Francisco, CA 94016" +232924,Google Phone,1,600,07/05/19 17:32,"263 Hickory St, Portland, ME 04101" +232925,Bose SoundSport Headphones,1,99.99,07/10/19 04:51,"145 Forest St, Boston, MA 02215" +232926,Lightning Charging Cable,1,14.95,07/03/19 20:23,"808 Chestnut St, San Francisco, CA 94016" +232927,AAA Batteries (4-pack),1,2.99,07/01/19 12:03,"701 10th St, Boston, MA 02215" +232928,27in 4K Gaming Monitor,1,389.99,07/25/19 06:58,"801 Ridge St, San Francisco, CA 94016" +232929,Apple Airpods Headphones,1,150,07/20/19 23:36,"109 Jefferson St, Portland, OR 97035" +232930,AA Batteries (4-pack),2,3.84,07/27/19 18:49,"421 Church St, Seattle, WA 98101" +232931,AA Batteries (4-pack),2,3.84,07/26/19 13:20,"628 Hill St, Portland, OR 97035" +232932,AAA Batteries (4-pack),1,2.99,07/11/19 00:47,"566 8th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +232933,AA Batteries (4-pack),2,3.84,07/02/19 14:17,"883 Elm St, Dallas, TX 75001" +232934,Bose SoundSport Headphones,1,99.99,07/14/19 10:29,"627 Cedar St, Boston, MA 02215" +232935,USB-C Charging Cable,1,11.95,07/12/19 14:29,"566 14th St, Los Angeles, CA 90001" +,,,,, +232936,AA Batteries (4-pack),1,3.84,07/15/19 01:08,"342 Madison St, Atlanta, GA 30301" +232937,AA Batteries (4-pack),1,3.84,07/23/19 21:15,"921 River St, Dallas, TX 75001" +232938,Wired Headphones,1,11.99,07/28/19 13:45,"6 Maple St, Dallas, TX 75001" +232939,Apple Airpods Headphones,1,150,07/09/19 12:59,"107 5th St, San Francisco, CA 94016" +232940,USB-C Charging Cable,1,11.95,07/22/19 13:35,"540 6th St, San Francisco, CA 94016" +232941,27in FHD Monitor,1,149.99,07/14/19 18:10,"305 Hill St, Los Angeles, CA 90001" +232942,AA Batteries (4-pack),1,3.84,07/18/19 01:10,"235 Adams St, Dallas, TX 75001" +232943,AAA Batteries (4-pack),1,2.99,07/28/19 07:14,"468 Lakeview St, New York City, NY 10001" +232944,AAA Batteries (4-pack),1,2.99,07/25/19 19:28,"561 11th St, Portland, OR 97035" +232945,Apple Airpods Headphones,1,150,07/10/19 17:33,"339 Hickory St, Dallas, TX 75001" +232946,27in 4K Gaming Monitor,1,389.99,07/09/19 12:49,"379 North St, Boston, MA 02215" +232947,AAA Batteries (4-pack),1,2.99,07/02/19 09:23,"243 14th St, New York City, NY 10001" +232948,Lightning Charging Cable,2,14.95,07/08/19 15:17,"567 1st St, San Francisco, CA 94016" +232949,Apple Airpods Headphones,1,150,07/10/19 14:54,"882 11th St, New York City, NY 10001" +232950,AA Batteries (4-pack),1,3.84,07/07/19 18:05,"883 Spruce St, New York City, NY 10001" +232951,Apple Airpods Headphones,1,150,07/24/19 07:54,"114 Elm St, Los Angeles, CA 90001" +232952,USB-C Charging Cable,1,11.95,07/08/19 17:01,"50 Willow St, New York City, NY 10001" +232953,Bose SoundSport Headphones,1,99.99,07/03/19 22:04,"702 Cherry St, Atlanta, GA 30301" +232954,AAA Batteries (4-pack),1,2.99,07/17/19 11:14,"908 13th St, Los Angeles, CA 90001" +232955,Vareebadd Phone,1,400,07/08/19 16:55,"547 12th St, Los Angeles, CA 90001" +232956,20in Monitor,1,109.99,07/11/19 19:19,"145 14th St, Austin, TX 73301" +232957,USB-C Charging Cable,1,11.95,07/24/19 21:21,"286 Highland St, Boston, MA 02215" +232958,Apple Airpods Headphones,1,150,07/14/19 16:35,"802 4th St, Portland, OR 97035" +232959,20in Monitor,1,109.99,07/05/19 12:16,"202 Dogwood St, New York City, NY 10001" +232960,34in Ultrawide Monitor,1,379.99,07/02/19 20:38,"611 Ridge St, San Francisco, CA 94016" +232961,AA Batteries (4-pack),1,3.84,07/03/19 12:04,"675 Pine St, Los Angeles, CA 90001" +232962,AAA Batteries (4-pack),1,2.99,07/23/19 12:58,"587 Hill St, Austin, TX 73301" +232962,Wired Headphones,1,11.99,07/23/19 12:58,"587 Hill St, Austin, TX 73301" +232963,Lightning Charging Cable,1,14.95,07/30/19 19:58,"235 14th St, Seattle, WA 98101" +232964,AA Batteries (4-pack),2,3.84,07/12/19 09:35,"877 Chestnut St, New York City, NY 10001" +232965,Apple Airpods Headphones,1,150,07/15/19 00:16,"108 Church St, San Francisco, CA 94016" +232966,USB-C Charging Cable,1,11.95,07/06/19 17:14,"374 Forest St, Atlanta, GA 30301" +232967,Macbook Pro Laptop,1,1700,07/22/19 12:14,"124 14th St, San Francisco, CA 94016" +232968,27in 4K Gaming Monitor,1,389.99,07/28/19 10:19,"984 North St, New York City, NY 10001" +232969,Bose SoundSport Headphones,1,99.99,07/27/19 06:37,"422 Cedar St, Los Angeles, CA 90001" +232970,Apple Airpods Headphones,1,150,07/24/19 11:52,"460 Center St, San Francisco, CA 94016" +232971,20in Monitor,1,109.99,07/03/19 10:47,"617 South St, Dallas, TX 75001" +232972,Macbook Pro Laptop,1,1700,07/03/19 14:31,"348 Johnson St, New York City, NY 10001" +232973,AAA Batteries (4-pack),1,2.99,07/18/19 13:46,"537 6th St, San Francisco, CA 94016" +232974,AAA Batteries (4-pack),2,2.99,07/22/19 07:12,"741 Johnson St, Los Angeles, CA 90001" +232975,Wired Headphones,1,11.99,07/29/19 14:41,"814 South St, San Francisco, CA 94016" +232976,Wired Headphones,1,11.99,07/08/19 22:45,"117 North St, Seattle, WA 98101" +232977,Wired Headphones,1,11.99,07/18/19 14:30,"381 Lakeview St, San Francisco, CA 94016" +232978,Wired Headphones,1,11.99,07/01/19 23:04,"693 Spruce St, Boston, MA 02215" +232979,Google Phone,1,600,07/02/19 13:46,"713 4th St, Boston, MA 02215" +232980,Lightning Charging Cable,1,14.95,07/09/19 17:45,"376 South St, Dallas, TX 75001" +232981,Lightning Charging Cable,1,14.95,07/09/19 00:39,"296 South St, Dallas, TX 75001" +232982,USB-C Charging Cable,1,11.95,07/20/19 18:17,"882 2nd St, Boston, MA 02215" +232983,AAA Batteries (4-pack),1,2.99,07/27/19 11:19,"28 Church St, Boston, MA 02215" +232984,Bose SoundSport Headphones,1,99.99,07/29/19 09:02,"370 Hickory St, San Francisco, CA 94016" +232985,AAA Batteries (4-pack),1,2.99,07/15/19 16:56,"353 Jackson St, San Francisco, CA 94016" +232986,Bose SoundSport Headphones,1,99.99,07/08/19 12:01,"238 8th St, Los Angeles, CA 90001" +232987,Bose SoundSport Headphones,1,99.99,07/21/19 02:11,"748 Main St, Dallas, TX 75001" +232988,AAA Batteries (4-pack),1,2.99,07/28/19 10:26,"307 Ridge St, Boston, MA 02215" +232989,Macbook Pro Laptop,1,1700,07/31/19 16:21,"31 14th St, Boston, MA 02215" +232990,Macbook Pro Laptop,1,1700,07/20/19 11:39,"250 Adams St, Los Angeles, CA 90001" +232991,ThinkPad Laptop,1,999.99,07/04/19 19:58,"32 Forest St, Portland, OR 97035" +232992,Macbook Pro Laptop,1,1700,07/15/19 10:49,"354 4th St, Dallas, TX 75001" +232993,AAA Batteries (4-pack),1,2.99,07/09/19 09:08,"707 9th St, San Francisco, CA 94016" +232994,Lightning Charging Cable,1,14.95,07/20/19 11:04,"663 5th St, Los Angeles, CA 90001" +232995,AAA Batteries (4-pack),2,2.99,07/20/19 18:55,"455 Jackson St, New York City, NY 10001" +232996,ThinkPad Laptop,1,999.99,07/26/19 19:33,"982 14th St, San Francisco, CA 94016" +232997,USB-C Charging Cable,1,11.95,07/13/19 18:21,"74 Lakeview St, New York City, NY 10001" +232998,iPhone,1,700,07/16/19 11:54,"702 Madison St, Austin, TX 73301" +232999,27in 4K Gaming Monitor,1,389.99,07/12/19 19:22,"703 Lincoln St, Seattle, WA 98101" +233000,AAA Batteries (4-pack),1,2.99,07/08/19 17:50,"7 14th St, San Francisco, CA 94016" +233001,AAA Batteries (4-pack),2,2.99,07/03/19 21:21,"358 Cherry St, Dallas, TX 75001" +233002,AAA Batteries (4-pack),2,2.99,07/15/19 10:47,"877 Chestnut St, San Francisco, CA 94016" +233003,USB-C Charging Cable,1,11.95,07/07/19 11:50,"825 2nd St, San Francisco, CA 94016" +233004,iPhone,1,700,07/20/19 20:33,"166 Meadow St, Atlanta, GA 30301" +233005,Flatscreen TV,1,300,07/04/19 15:06,"431 Church St, Seattle, WA 98101" +233006,Lightning Charging Cable,1,14.95,07/04/19 13:55,"49 Cherry St, Atlanta, GA 30301" +233007,Lightning Charging Cable,1,14.95,07/04/19 07:37,"379 Johnson St, Boston, MA 02215" +233008,USB-C Charging Cable,1,11.95,07/12/19 22:08,"331 6th St, San Francisco, CA 94016" +233009,AAA Batteries (4-pack),4,2.99,07/31/19 11:29,"59 Hickory St, San Francisco, CA 94016" +233010,USB-C Charging Cable,1,11.95,07/10/19 14:45,"52 Cedar St, Dallas, TX 75001" +233011,iPhone,1,700,07/08/19 09:55,"728 7th St, New York City, NY 10001" +233012,Apple Airpods Headphones,1,150,07/12/19 14:48,"934 9th St, Boston, MA 02215" +233013,AAA Batteries (4-pack),3,2.99,07/18/19 20:10,"250 Jackson St, Portland, OR 97035" +233014,27in FHD Monitor,1,149.99,07/16/19 16:19,"123 Dogwood St, Boston, MA 02215" +233015,Lightning Charging Cable,1,14.95,07/30/19 19:47,"110 Maple St, Dallas, TX 75001" +233016,Bose SoundSport Headphones,1,99.99,07/16/19 16:22,"769 Adams St, San Francisco, CA 94016" +233017,AAA Batteries (4-pack),1,2.99,07/24/19 20:37,"244 12th St, Los Angeles, CA 90001" +233018,Apple Airpods Headphones,1,150,07/04/19 19:26,"607 Madison St, Atlanta, GA 30301" +233019,Wired Headphones,1,11.99,07/10/19 12:07,"169 1st St, Seattle, WA 98101" +233020,AAA Batteries (4-pack),6,2.99,07/28/19 17:44,"751 Hill St, San Francisco, CA 94016" +233021,USB-C Charging Cable,1,11.95,07/18/19 00:39,"285 Maple St, Boston, MA 02215" +233022,AA Batteries (4-pack),1,3.84,07/24/19 18:42,"102 10th St, San Francisco, CA 94016" +233022,Apple Airpods Headphones,1,150,07/24/19 18:42,"102 10th St, San Francisco, CA 94016" +233023,AAA Batteries (4-pack),2,2.99,07/19/19 23:47,"749 Highland St, Austin, TX 73301" +233024,Lightning Charging Cable,1,14.95,07/15/19 12:58,"659 Hill St, Los Angeles, CA 90001" +233025,Wired Headphones,1,11.99,08/01/19 02:54,"476 Lake St, New York City, NY 10001" +233026,Wired Headphones,1,11.99,07/28/19 12:58,"468 Meadow St, San Francisco, CA 94016" +233027,ThinkPad Laptop,1,999.99,07/29/19 11:58,"15 Sunset St, Atlanta, GA 30301" +233028,USB-C Charging Cable,1,11.95,07/17/19 16:55,"576 6th St, New York City, NY 10001" +233029,Wired Headphones,1,11.99,07/21/19 00:41,"745 4th St, Austin, TX 73301" +233030,Apple Airpods Headphones,1,150,07/01/19 15:12,"370 Hill St, San Francisco, CA 94016" +233031,Macbook Pro Laptop,1,1700,07/16/19 09:48,"278 9th St, Boston, MA 02215" +233032,AAA Batteries (4-pack),1,2.99,07/04/19 14:14,"8 Elm St, Atlanta, GA 30301" +233033,AA Batteries (4-pack),1,3.84,07/05/19 08:16,"336 Lincoln St, Los Angeles, CA 90001" +233034,Lightning Charging Cable,1,14.95,07/10/19 09:16,"955 Washington St, Atlanta, GA 30301" +233035,Apple Airpods Headphones,1,150,07/12/19 14:27,"788 South St, Boston, MA 02215" +233036,Bose SoundSport Headphones,1,99.99,07/26/19 20:59,"900 9th St, Portland, OR 97035" +233037,Lightning Charging Cable,1,14.95,07/24/19 23:14,"403 7th St, Los Angeles, CA 90001" +233038,USB-C Charging Cable,1,11.95,07/02/19 19:30,"126 6th St, Seattle, WA 98101" +233039,AA Batteries (4-pack),1,3.84,07/15/19 16:01,"758 Jefferson St, Atlanta, GA 30301" +233040,Apple Airpods Headphones,1,150,07/25/19 23:55,"929 Main St, Los Angeles, CA 90001" +233041,Flatscreen TV,1,300,07/13/19 17:21,"613 Walnut St, New York City, NY 10001" +233042,Lightning Charging Cable,1,14.95,07/07/19 16:44,"799 Meadow St, New York City, NY 10001" +233043,Wired Headphones,1,11.99,07/03/19 14:25,"632 Elm St, Los Angeles, CA 90001" +233044,Flatscreen TV,1,300,07/01/19 17:37,"481 Forest St, Los Angeles, CA 90001" +233045,27in FHD Monitor,1,149.99,07/06/19 23:33,"926 Ridge St, New York City, NY 10001" +233046,Wired Headphones,1,11.99,07/15/19 10:40,"490 5th St, Los Angeles, CA 90001" +233046,Wired Headphones,1,11.99,07/15/19 10:40,"490 5th St, Los Angeles, CA 90001" +233047,Wired Headphones,1,11.99,07/14/19 13:26,"617 13th St, Atlanta, GA 30301" +233048,LG Dryer,1,600.0,07/17/19 20:35,"384 Lakeview St, New York City, NY 10001" +233049,Lightning Charging Cable,1,14.95,07/26/19 09:40,"973 Elm St, New York City, NY 10001" +233050,Wired Headphones,1,11.99,07/26/19 13:43,"184 Main St, Boston, MA 02215" +233051,AA Batteries (4-pack),1,3.84,07/28/19 18:07,"892 Chestnut St, San Francisco, CA 94016" +233052,AA Batteries (4-pack),1,3.84,07/30/19 10:47,"522 Lake St, San Francisco, CA 94016" +,,,,, +233053,ThinkPad Laptop,1,999.99,07/25/19 19:22,"882 Spruce St, Atlanta, GA 30301" +233054,AA Batteries (4-pack),1,3.84,07/26/19 00:47,"903 10th St, Seattle, WA 98101" +233055,AAA Batteries (4-pack),2,2.99,07/03/19 12:15,"995 Lakeview St, Seattle, WA 98101" +233056,USB-C Charging Cable,1,11.95,07/30/19 08:06,"731 7th St, Los Angeles, CA 90001" +233057,Apple Airpods Headphones,1,150,07/03/19 10:54,"870 Jefferson St, New York City, NY 10001" +233058,27in FHD Monitor,1,149.99,07/10/19 06:26,"623 Walnut St, San Francisco, CA 94016" +233059,34in Ultrawide Monitor,1,379.99,07/06/19 13:14,"469 Walnut St, San Francisco, CA 94016" +233060,Google Phone,1,600,07/29/19 14:06,"306 Lake St, Dallas, TX 75001" +233061,Lightning Charging Cable,2,14.95,07/02/19 21:26,"140 Meadow St, Austin, TX 73301" +233062,AA Batteries (4-pack),1,3.84,07/26/19 19:45,"60 Cherry St, San Francisco, CA 94016" +233063,Wired Headphones,1,11.99,07/16/19 19:38,"258 Pine St, San Francisco, CA 94016" +233064,AAA Batteries (4-pack),2,2.99,07/05/19 12:08,"933 1st St, Dallas, TX 75001" +233065,34in Ultrawide Monitor,1,379.99,07/06/19 13:57,"121 Forest St, Dallas, TX 75001" +233066,Bose SoundSport Headphones,1,99.99,07/23/19 18:21,"463 7th St, Portland, ME 04101" +233067,Wired Headphones,1,11.99,07/11/19 14:31,"476 North St, Boston, MA 02215" +233068,27in FHD Monitor,1,149.99,07/13/19 20:40,"563 Washington St, New York City, NY 10001" +233069,Wired Headphones,1,11.99,07/14/19 11:34,"246 2nd St, New York City, NY 10001" +233070,AAA Batteries (4-pack),1,2.99,07/05/19 20:10,"762 River St, San Francisco, CA 94016" +233071,Vareebadd Phone,1,400,07/21/19 09:54,"171 West St, Portland, OR 97035" +233072,Vareebadd Phone,1,400,07/29/19 15:29,"289 Lakeview St, New York City, NY 10001" +233073,Lightning Charging Cable,1,14.95,07/18/19 11:04,"33 4th St, Los Angeles, CA 90001" +233074,AA Batteries (4-pack),1,3.84,07/05/19 22:55,"147 5th St, Austin, TX 73301" +233075,Apple Airpods Headphones,1,150,07/02/19 09:41,"13 Johnson St, Seattle, WA 98101" +233076,Bose SoundSport Headphones,1,99.99,07/26/19 15:47,"257 Madison St, Seattle, WA 98101" +233077,Wired Headphones,1,11.99,07/07/19 12:26,"478 Ridge St, San Francisco, CA 94016" +233078,USB-C Charging Cable,1,11.95,07/02/19 22:04,"911 Hickory St, San Francisco, CA 94016" +233079,Bose SoundSport Headphones,1,99.99,07/27/19 14:32,"360 West St, Austin, TX 73301" +233080,Apple Airpods Headphones,1,150,07/07/19 18:38,"741 Park St, Boston, MA 02215" +233081,Bose SoundSport Headphones,1,99.99,07/20/19 20:17,"747 Hickory St, New York City, NY 10001" +233082,Vareebadd Phone,1,400,07/02/19 07:07,"781 9th St, San Francisco, CA 94016" +233083,USB-C Charging Cable,1,11.95,07/13/19 22:39,"195 7th St, Dallas, TX 75001" +233084,USB-C Charging Cable,2,11.95,07/15/19 11:29,"365 Willow St, New York City, NY 10001" +233085,Apple Airpods Headphones,1,150,07/24/19 10:09,"540 10th St, Atlanta, GA 30301" +233086,ThinkPad Laptop,1,999.99,07/15/19 10:59,"731 12th St, Dallas, TX 75001" +233087,AAA Batteries (4-pack),1,2.99,07/13/19 07:22,"206 11th St, Seattle, WA 98101" +233088,AAA Batteries (4-pack),2,2.99,07/16/19 12:03,"13 14th St, New York City, NY 10001" +233089,AA Batteries (4-pack),1,3.84,07/01/19 19:26,"11 South St, Atlanta, GA 30301" +233090,Lightning Charging Cable,1,14.95,07/06/19 20:35,"985 Hill St, San Francisco, CA 94016" +233091,Lightning Charging Cable,1,14.95,07/23/19 22:11,"861 Lake St, New York City, NY 10001" +233092,Apple Airpods Headphones,1,150,07/19/19 16:55,"76 12th St, San Francisco, CA 94016" +233093,AAA Batteries (4-pack),1,2.99,07/11/19 11:33,"434 West St, Boston, MA 02215" +233094,Flatscreen TV,1,300,07/13/19 15:59,"955 Madison St, San Francisco, CA 94016" +233095,Apple Airpods Headphones,1,150,07/13/19 10:36,"164 Adams St, Portland, OR 97035" +233096,AAA Batteries (4-pack),1,2.99,07/29/19 15:10,"836 1st St, New York City, NY 10001" +233097,Google Phone,1,600,07/01/19 06:31,"887 Lake St, Boston, MA 02215" +233098,AA Batteries (4-pack),1,3.84,07/07/19 21:29,"175 South St, San Francisco, CA 94016" +233099,USB-C Charging Cable,1,11.95,07/08/19 22:37,"416 Forest St, Los Angeles, CA 90001" +233099,Lightning Charging Cable,1,14.95,07/08/19 22:37,"416 Forest St, Los Angeles, CA 90001" +233100,iPhone,1,700,07/11/19 09:06,"539 Spruce St, Atlanta, GA 30301" +233101,27in FHD Monitor,1,149.99,07/07/19 22:45,"473 Lincoln St, San Francisco, CA 94016" +233101,USB-C Charging Cable,1,11.95,07/07/19 22:45,"473 Lincoln St, San Francisco, CA 94016" +233102,AAA Batteries (4-pack),1,2.99,07/14/19 10:50,"518 Willow St, Atlanta, GA 30301" +233103,AA Batteries (4-pack),1,3.84,07/09/19 01:21,"532 Wilson St, New York City, NY 10001" +233104,AAA Batteries (4-pack),2,2.99,07/16/19 20:48,"150 8th St, Dallas, TX 75001" +233105,AAA Batteries (4-pack),1,2.99,07/16/19 23:10,"856 Jefferson St, Boston, MA 02215" +233106,Apple Airpods Headphones,1,150,07/17/19 12:22,"798 Jefferson St, Dallas, TX 75001" +233107,34in Ultrawide Monitor,1,379.99,07/10/19 17:33,"639 12th St, New York City, NY 10001" +233108,Wired Headphones,1,11.99,07/15/19 09:28,"178 Hickory St, New York City, NY 10001" +233109,AAA Batteries (4-pack),1,2.99,07/12/19 11:33,"325 2nd St, San Francisco, CA 94016" +233110,Wired Headphones,1,11.99,07/29/19 18:28,"443 Lakeview St, San Francisco, CA 94016" +233111,LG Dryer,1,600.0,07/24/19 19:18,"43 Johnson St, Seattle, WA 98101" +233112,AA Batteries (4-pack),1,3.84,07/15/19 19:59,"37 West St, Boston, MA 02215" +233113,27in 4K Gaming Monitor,1,389.99,07/06/19 11:30,"834 Spruce St, Atlanta, GA 30301" +233114,Macbook Pro Laptop,1,1700,07/07/19 18:25,"276 Church St, San Francisco, CA 94016" +233115,iPhone,1,700,07/01/19 12:09,"713 Lincoln St, Boston, MA 02215" +233116,Vareebadd Phone,1,400,07/01/19 15:12,"704 Washington St, Seattle, WA 98101" +233117,Apple Airpods Headphones,1,150,07/20/19 21:30,"768 Park St, Boston, MA 02215" +233118,Macbook Pro Laptop,1,1700,07/30/19 14:42,"196 Jackson St, Boston, MA 02215" +233119,USB-C Charging Cable,1,11.95,07/12/19 19:00,"101 Cedar St, New York City, NY 10001" +233120,Lightning Charging Cable,1,14.95,07/01/19 17:42,"946 9th St, Atlanta, GA 30301" +233121,AAA Batteries (4-pack),2,2.99,07/02/19 23:35,"247 12th St, New York City, NY 10001" +233122,Bose SoundSport Headphones,1,99.99,07/03/19 07:39,"531 1st St, Los Angeles, CA 90001" +233123,USB-C Charging Cable,1,11.95,07/31/19 16:35,"294 Sunset St, San Francisco, CA 94016" +233124,Bose SoundSport Headphones,1,99.99,07/23/19 21:46,"647 Meadow St, Los Angeles, CA 90001" +233125,USB-C Charging Cable,1,11.95,07/05/19 12:22,"514 Pine St, Portland, OR 97035" +233126,Macbook Pro Laptop,1,1700,07/03/19 12:03,"162 Lincoln St, New York City, NY 10001" +233127,AAA Batteries (4-pack),1,2.99,07/04/19 17:38,"243 Cherry St, Dallas, TX 75001" +233128,AAA Batteries (4-pack),6,2.99,07/05/19 19:08,"778 Jefferson St, San Francisco, CA 94016" +233129,AAA Batteries (4-pack),1,2.99,07/12/19 13:07,"994 Jefferson St, Portland, OR 97035" +233130,AAA Batteries (4-pack),1,2.99,07/16/19 17:25,"785 Lakeview St, Seattle, WA 98101" +233131,Lightning Charging Cable,1,14.95,07/22/19 13:41,"470 12th St, Seattle, WA 98101" +233132,Lightning Charging Cable,1,14.95,07/29/19 18:12,"586 Lincoln St, San Francisco, CA 94016" +233133,Flatscreen TV,1,300,07/21/19 18:25,"569 Pine St, Portland, OR 97035" +233134,Apple Airpods Headphones,1,150,07/17/19 14:05,"949 8th St, Los Angeles, CA 90001" +233134,AAA Batteries (4-pack),1,2.99,07/17/19 14:05,"949 8th St, Los Angeles, CA 90001" +233135,Lightning Charging Cable,1,14.95,07/24/19 09:20,"912 Wilson St, Los Angeles, CA 90001" +233136,Wired Headphones,1,11.99,07/31/19 18:10,"343 11th St, New York City, NY 10001" +233137,Lightning Charging Cable,1,14.95,07/02/19 05:39,"970 13th St, Dallas, TX 75001" +233138,USB-C Charging Cable,1,11.95,07/17/19 19:21,"91 9th St, Seattle, WA 98101" +233139,Google Phone,1,600,07/05/19 08:25,"192 13th St, San Francisco, CA 94016" +233140,LG Washing Machine,1,600.0,07/17/19 14:16,"989 Ridge St, Los Angeles, CA 90001" +233141,Lightning Charging Cable,1,14.95,07/29/19 14:24,"318 Jackson St, Los Angeles, CA 90001" +233142,Google Phone,1,600,07/20/19 19:03,"515 1st St, San Francisco, CA 94016" +233143,AAA Batteries (4-pack),1,2.99,07/15/19 13:58,"198 Forest St, San Francisco, CA 94016" +233144,Lightning Charging Cable,1,14.95,07/22/19 14:31,"988 Willow St, Seattle, WA 98101" +233145,AA Batteries (4-pack),1,3.84,07/18/19 20:29,"910 9th St, Boston, MA 02215" +233146,Lightning Charging Cable,1,14.95,07/13/19 10:13,"899 South St, New York City, NY 10001" +233147,Wired Headphones,2,11.99,07/21/19 19:21,"947 6th St, New York City, NY 10001" +233148,AA Batteries (4-pack),1,3.84,07/05/19 14:03,"856 Madison St, Los Angeles, CA 90001" +233149,Bose SoundSport Headphones,1,99.99,07/01/19 16:40,"169 South St, Austin, TX 73301" +233150,AA Batteries (4-pack),1,3.84,07/28/19 20:32,"954 13th St, Atlanta, GA 30301" +233151,27in FHD Monitor,1,149.99,07/06/19 20:26,"102 West St, New York City, NY 10001" +233152,USB-C Charging Cable,2,11.95,07/10/19 21:48,"217 13th St, Los Angeles, CA 90001" +233153,AA Batteries (4-pack),3,3.84,07/25/19 06:52,"427 Elm St, Atlanta, GA 30301" +233154,Lightning Charging Cable,1,14.95,07/19/19 10:13,"842 Lake St, San Francisco, CA 94016" +233155,Wired Headphones,1,11.99,07/28/19 14:28,"706 Sunset St, Austin, TX 73301" +233156,USB-C Charging Cable,1,11.95,07/29/19 19:15,"654 Hill St, San Francisco, CA 94016" +233157,27in FHD Monitor,1,149.99,07/06/19 00:32,"460 South St, Boston, MA 02215" +233158,Lightning Charging Cable,1,14.95,07/18/19 20:23,"897 6th St, San Francisco, CA 94016" +233158,USB-C Charging Cable,1,11.95,07/18/19 20:23,"897 6th St, San Francisco, CA 94016" +233159,Wired Headphones,1,11.99,07/22/19 22:09,"477 Lakeview St, Atlanta, GA 30301" +233160,Lightning Charging Cable,1,14.95,07/06/19 11:53,"374 Ridge St, Atlanta, GA 30301" +233161,27in FHD Monitor,1,149.99,07/23/19 14:11,"610 Center St, Los Angeles, CA 90001" +233162,Apple Airpods Headphones,1,150,07/05/19 13:36,"410 5th St, San Francisco, CA 94016" +233163,27in FHD Monitor,1,149.99,07/02/19 16:16,"481 Elm St, Los Angeles, CA 90001" +233164,USB-C Charging Cable,1,11.95,07/01/19 17:06,"809 Lake St, Dallas, TX 75001" +233165,AAA Batteries (4-pack),1,2.99,07/18/19 13:22,"956 13th St, San Francisco, CA 94016" +233166,Wired Headphones,1,11.99,07/21/19 09:06,"468 1st St, New York City, NY 10001" +233167,27in FHD Monitor,1,149.99,07/02/19 15:14,"713 Johnson St, San Francisco, CA 94016" +233168,Bose SoundSport Headphones,1,99.99,07/30/19 14:30,"236 Chestnut St, San Francisco, CA 94016" +233169,Wired Headphones,1,11.99,07/19/19 22:05,"774 11th St, San Francisco, CA 94016" +233170,AAA Batteries (4-pack),2,2.99,07/14/19 09:08,"169 Jackson St, New York City, NY 10001" +233171,27in FHD Monitor,1,149.99,07/21/19 17:09,"268 Sunset St, Los Angeles, CA 90001" +233172,USB-C Charging Cable,2,11.95,07/05/19 14:19,"14 11th St, Seattle, WA 98101" +233173,Wired Headphones,1,11.99,07/29/19 16:25,"182 Spruce St, San Francisco, CA 94016" +233174,27in FHD Monitor,1,149.99,07/29/19 12:15,"245 River St, New York City, NY 10001" +233175,AA Batteries (4-pack),3,3.84,07/30/19 08:04,"599 11th St, Atlanta, GA 30301" +233176,AA Batteries (4-pack),2,3.84,07/04/19 10:18,"598 Spruce St, San Francisco, CA 94016" +233177,27in 4K Gaming Monitor,1,389.99,07/22/19 09:02,"410 13th St, Portland, OR 97035" +233178,Bose SoundSport Headphones,1,99.99,07/26/19 06:10,"232 Johnson St, Los Angeles, CA 90001" +233179,USB-C Charging Cable,1,11.95,07/31/19 13:37,"401 Jackson St, Los Angeles, CA 90001" +233180,27in FHD Monitor,1,149.99,07/05/19 20:06,"78 North St, New York City, NY 10001" +233181,AAA Batteries (4-pack),1,2.99,07/15/19 11:37,"649 Willow St, Seattle, WA 98101" +233182,AA Batteries (4-pack),1,3.84,07/11/19 09:53,"132 Lincoln St, San Francisco, CA 94016" +233183,Macbook Pro Laptop,1,1700,07/15/19 09:31,"902 Sunset St, Atlanta, GA 30301" +233184,AAA Batteries (4-pack),2,2.99,07/22/19 08:16,"69 Hill St, San Francisco, CA 94016" +233185,ThinkPad Laptop,1,999.99,07/22/19 12:30,"145 Dogwood St, Dallas, TX 75001" +233186,AA Batteries (4-pack),1,3.84,07/24/19 17:42,"835 13th St, New York City, NY 10001" +233187,USB-C Charging Cable,1,11.95,07/04/19 10:42,"264 West St, Atlanta, GA 30301" +233188,AAA Batteries (4-pack),1,2.99,07/21/19 18:33,"776 8th St, New York City, NY 10001" +233189,USB-C Charging Cable,1,11.95,07/09/19 11:15,"226 Lakeview St, San Francisco, CA 94016" +233190,iPhone,1,700,07/26/19 16:37,"996 Main St, San Francisco, CA 94016" +233191,20in Monitor,1,109.99,07/24/19 11:47,"115 Center St, Austin, TX 73301" +233192,AAA Batteries (4-pack),2,2.99,07/25/19 20:53,"556 13th St, Portland, OR 97035" +233193,Wired Headphones,1,11.99,07/04/19 10:22,"799 Cherry St, Dallas, TX 75001" +233194,USB-C Charging Cable,1,11.95,07/14/19 17:26,"162 11th St, San Francisco, CA 94016" +233195,USB-C Charging Cable,1,11.95,07/01/19 10:53,"472 Highland St, Boston, MA 02215" +233196,27in FHD Monitor,1,149.99,07/11/19 20:06,"381 Elm St, Atlanta, GA 30301" +233197,34in Ultrawide Monitor,1,379.99,07/19/19 07:18,"513 Willow St, Atlanta, GA 30301" +233198,Apple Airpods Headphones,1,150,07/15/19 11:02,"885 7th St, Austin, TX 73301" +233199,iPhone,1,700,07/05/19 11:19,"989 Walnut St, New York City, NY 10001" +233199,Lightning Charging Cable,1,14.95,07/05/19 11:19,"989 Walnut St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +233200,USB-C Charging Cable,1,11.95,07/16/19 21:42,"690 7th St, San Francisco, CA 94016" +233201,AA Batteries (4-pack),1,3.84,07/20/19 22:11,"428 Dogwood St, Los Angeles, CA 90001" +233202,27in 4K Gaming Monitor,1,389.99,07/19/19 21:14,"183 Main St, Los Angeles, CA 90001" +233203,Lightning Charging Cable,1,14.95,07/12/19 16:23,"446 South St, Los Angeles, CA 90001" +233204,Wired Headphones,1,11.99,07/05/19 14:45,"375 Highland St, Dallas, TX 75001" +233205,Bose SoundSport Headphones,1,99.99,07/21/19 09:26,"872 Lincoln St, San Francisco, CA 94016" +233206,Lightning Charging Cable,1,14.95,07/18/19 11:02,"752 Highland St, New York City, NY 10001" +233207,AA Batteries (4-pack),2,3.84,07/24/19 08:28,"357 12th St, New York City, NY 10001" +233208,AAA Batteries (4-pack),1,2.99,07/13/19 15:06,"182 Cherry St, Los Angeles, CA 90001" +233209,AAA Batteries (4-pack),3,2.99,07/25/19 10:07,"918 Park St, Austin, TX 73301" +233210,20in Monitor,1,109.99,07/30/19 09:38,"795 Adams St, San Francisco, CA 94016" +233211,20in Monitor,1,109.99,07/18/19 10:42,"328 5th St, Austin, TX 73301" +233212,Macbook Pro Laptop,1,1700,07/22/19 20:46,"494 5th St, Portland, OR 97035" +233213,27in 4K Gaming Monitor,1,389.99,07/21/19 22:05,"534 Sunset St, New York City, NY 10001" +233214,Wired Headphones,1,11.99,07/26/19 20:15,"212 Spruce St, Seattle, WA 98101" +233215,Wired Headphones,2,11.99,07/24/19 21:05,"111 Sunset St, San Francisco, CA 94016" +233216,Vareebadd Phone,1,400,07/07/19 23:21,"285 14th St, New York City, NY 10001" +233217,27in 4K Gaming Monitor,1,389.99,07/17/19 10:20,"498 North St, New York City, NY 10001" +233218,Macbook Pro Laptop,1,1700,07/12/19 10:04,"360 West St, San Francisco, CA 94016" +233219,Lightning Charging Cable,1,14.95,07/28/19 07:24,"568 11th St, San Francisco, CA 94016" +233220,AAA Batteries (4-pack),1,2.99,07/01/19 13:56,"300 Lakeview St, Los Angeles, CA 90001" +233221,USB-C Charging Cable,1,11.95,07/27/19 08:17,"209 9th St, Dallas, TX 75001" +233222,Lightning Charging Cable,1,14.95,07/15/19 16:59,"345 Park St, Dallas, TX 75001" +233222,USB-C Charging Cable,1,11.95,07/15/19 16:59,"345 Park St, Dallas, TX 75001" +233223,AAA Batteries (4-pack),1,2.99,07/14/19 09:16,"570 7th St, Boston, MA 02215" +233224,Wired Headphones,1,11.99,07/13/19 12:29,"959 5th St, Boston, MA 02215" +233225,Apple Airpods Headphones,1,150,07/24/19 01:32,"198 Elm St, San Francisco, CA 94016" +233226,USB-C Charging Cable,1,11.95,07/08/19 13:06,"833 Lakeview St, New York City, NY 10001" +233227,27in 4K Gaming Monitor,1,389.99,07/16/19 19:25,"488 Adams St, Atlanta, GA 30301" +233228,Apple Airpods Headphones,1,150,07/26/19 12:40,"942 Forest St, New York City, NY 10001" +233229,34in Ultrawide Monitor,1,379.99,07/12/19 22:42,"803 Jackson St, New York City, NY 10001" +233230,AA Batteries (4-pack),1,3.84,07/31/19 08:20,"545 Cedar St, San Francisco, CA 94016" +233231,AAA Batteries (4-pack),1,2.99,07/23/19 14:11,"736 Dogwood St, Los Angeles, CA 90001" +233232,Apple Airpods Headphones,1,150,07/18/19 11:11,"433 Pine St, San Francisco, CA 94016" +233233,USB-C Charging Cable,1,11.95,07/22/19 21:14,"996 Hill St, Portland, OR 97035" +233234,Bose SoundSport Headphones,1,99.99,07/02/19 08:09,"882 River St, Atlanta, GA 30301" +233235,iPhone,1,700,07/05/19 20:59,"889 West St, San Francisco, CA 94016" +233236,Wired Headphones,2,11.99,07/11/19 04:58,"692 Center St, Seattle, WA 98101" +233237,USB-C Charging Cable,1,11.95,07/23/19 09:58,"279 West St, Austin, TX 73301" +233238,AAA Batteries (4-pack),1,2.99,07/08/19 16:01,"866 Ridge St, New York City, NY 10001" +233239,Macbook Pro Laptop,1,1700,07/19/19 11:19,"108 Washington St, New York City, NY 10001" +233240,Apple Airpods Headphones,1,150,07/02/19 17:58,"236 9th St, Los Angeles, CA 90001" +233241,Wired Headphones,1,11.99,07/12/19 23:19,"937 Park St, Boston, MA 02215" +233242,AA Batteries (4-pack),1,3.84,07/27/19 22:16,"474 Elm St, Los Angeles, CA 90001" +233243,27in 4K Gaming Monitor,1,389.99,07/01/19 21:03,"977 Jefferson St, San Francisco, CA 94016" +233244,Apple Airpods Headphones,1,150,07/04/19 15:33,"879 Lake St, San Francisco, CA 94016" +233245,AA Batteries (4-pack),1,3.84,07/21/19 18:49,"521 Main St, Portland, ME 04101" +233246,iPhone,1,700,07/17/19 10:20,"372 Meadow St, New York City, NY 10001" +233247,USB-C Charging Cable,1,11.95,07/05/19 19:16,"520 13th St, Seattle, WA 98101" +233248,Flatscreen TV,1,300,07/10/19 15:04,"701 13th St, Los Angeles, CA 90001" +233249,AAA Batteries (4-pack),2,2.99,07/21/19 05:14,"519 Adams St, Dallas, TX 75001" +233250,Wired Headphones,1,11.99,07/23/19 13:34,"401 5th St, San Francisco, CA 94016" +233251,AA Batteries (4-pack),1,3.84,07/19/19 13:10,"860 West St, Los Angeles, CA 90001" +233252,27in 4K Gaming Monitor,1,389.99,07/18/19 22:18,"582 11th St, New York City, NY 10001" +233253,27in 4K Gaming Monitor,1,389.99,07/29/19 10:47,"309 Spruce St, Los Angeles, CA 90001" +233254,34in Ultrawide Monitor,1,379.99,07/26/19 18:39,"31 Cedar St, Austin, TX 73301" +233255,AA Batteries (4-pack),1,3.84,07/12/19 13:50,"334 Lake St, New York City, NY 10001" +233256,USB-C Charging Cable,1,11.95,07/01/19 03:40,"516 Hickory St, New York City, NY 10001" +233257,AA Batteries (4-pack),1,3.84,07/22/19 22:54,"934 Maple St, Dallas, TX 75001" +233258,iPhone,1,700,07/17/19 21:57,"335 6th St, Boston, MA 02215" +233259,Lightning Charging Cable,1,14.95,07/01/19 14:12,"662 9th St, Seattle, WA 98101" +233259,Macbook Pro Laptop,1,1700,07/01/19 14:12,"662 9th St, Seattle, WA 98101" +233260,AA Batteries (4-pack),2,3.84,07/09/19 03:22,"861 Sunset St, New York City, NY 10001" +233261,iPhone,1,700,07/16/19 14:59,"671 1st St, Boston, MA 02215" +233262,Apple Airpods Headphones,1,150,07/20/19 19:10,"3 Lake St, Boston, MA 02215" +233263,Bose SoundSport Headphones,1,99.99,07/02/19 00:16,"167 Park St, Portland, OR 97035" +233264,27in FHD Monitor,1,149.99,07/19/19 12:00,"874 South St, Portland, OR 97035" +233265,AAA Batteries (4-pack),1,2.99,07/08/19 13:43,"659 Cedar St, Atlanta, GA 30301" +233266,27in FHD Monitor,1,149.99,07/26/19 12:52,"126 Highland St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +233267,AAA Batteries (4-pack),2,2.99,07/24/19 16:08,"718 Center St, New York City, NY 10001" +233268,Wired Headphones,1,11.99,07/23/19 22:17,"543 13th St, Seattle, WA 98101" +233269,USB-C Charging Cable,1,11.95,07/13/19 11:58,"73 Lake St, Austin, TX 73301" +233270,AAA Batteries (4-pack),2,2.99,07/18/19 10:49,"319 7th St, Los Angeles, CA 90001" +233271,AA Batteries (4-pack),2,3.84,07/08/19 12:16,"855 9th St, New York City, NY 10001" +233272,AAA Batteries (4-pack),1,2.99,07/16/19 10:37,"958 4th St, Austin, TX 73301" +233273,Bose SoundSport Headphones,1,99.99,07/03/19 05:51,"797 Sunset St, Los Angeles, CA 90001" +233274,Wired Headphones,1,11.99,07/25/19 18:28,"115 Ridge St, Los Angeles, CA 90001" +233275,AAA Batteries (4-pack),1,2.99,07/25/19 16:37,"113 10th St, San Francisco, CA 94016" +233276,AA Batteries (4-pack),1,3.84,07/08/19 12:47,"262 6th St, Los Angeles, CA 90001" +233277,AA Batteries (4-pack),2,3.84,07/28/19 15:54,"160 2nd St, Austin, TX 73301" +233278,Wired Headphones,1,11.99,07/02/19 08:35,"985 Hill St, Seattle, WA 98101" +233279,Lightning Charging Cable,2,14.95,07/27/19 13:13,"753 Sunset St, Boston, MA 02215" +233280,20in Monitor,1,109.99,07/28/19 01:21,"124 Lakeview St, Seattle, WA 98101" +233281,AA Batteries (4-pack),1,3.84,07/11/19 10:44,"883 Chestnut St, New York City, NY 10001" +233282,Lightning Charging Cable,1,14.95,07/13/19 14:28,"595 Jackson St, San Francisco, CA 94016" +233283,Apple Airpods Headphones,1,150,07/06/19 21:18,"648 Lake St, San Francisco, CA 94016" +233284,AA Batteries (4-pack),1,3.84,07/05/19 14:49,"111 Wilson St, Boston, MA 02215" +,,,,, +233285,27in FHD Monitor,1,149.99,07/24/19 17:33,"138 River St, Dallas, TX 75001" +233286,AAA Batteries (4-pack),3,2.99,07/28/19 09:54,"440 Sunset St, Dallas, TX 75001" +233287,LG Washing Machine,1,600.0,07/19/19 09:25,"592 Highland St, San Francisco, CA 94016" +233288,20in Monitor,1,109.99,07/29/19 21:58,"128 1st St, Seattle, WA 98101" +233289,AA Batteries (4-pack),1,3.84,07/01/19 16:26,"531 Hickory St, Seattle, WA 98101" +233290,USB-C Charging Cable,1,11.95,07/31/19 00:14,"142 4th St, Dallas, TX 75001" +233291,34in Ultrawide Monitor,1,379.99,07/09/19 08:37,"989 Cedar St, New York City, NY 10001" +233292,Lightning Charging Cable,1,14.95,07/12/19 15:58,"39 Hickory St, Boston, MA 02215" +233293,27in FHD Monitor,1,149.99,07/29/19 17:42,"102 West St, Austin, TX 73301" +233294,34in Ultrawide Monitor,1,379.99,07/05/19 23:52,"620 Chestnut St, San Francisco, CA 94016" +233295,Apple Airpods Headphones,1,150,07/24/19 20:25,"102 Walnut St, Atlanta, GA 30301" +233296,Bose SoundSport Headphones,1,99.99,07/29/19 12:15,"907 Walnut St, Los Angeles, CA 90001" +233297,27in 4K Gaming Monitor,1,389.99,07/02/19 17:27,"469 11th St, San Francisco, CA 94016" +233298,Apple Airpods Headphones,1,150,07/28/19 14:21,"843 Main St, San Francisco, CA 94016" +233299,AAA Batteries (4-pack),1,2.99,07/03/19 15:12,"83 Sunset St, Los Angeles, CA 90001" +233300,Bose SoundSport Headphones,1,99.99,07/02/19 16:42,"205 North St, San Francisco, CA 94016" +233301,Apple Airpods Headphones,1,150,07/02/19 11:17,"148 Forest St, Dallas, TX 75001" +233302,Bose SoundSport Headphones,1,99.99,07/19/19 20:25,"606 14th St, Los Angeles, CA 90001" +233303,Apple Airpods Headphones,1,150,07/07/19 23:06,"2 Pine St, San Francisco, CA 94016" +233304,AA Batteries (4-pack),1,3.84,07/29/19 01:24,"543 Park St, New York City, NY 10001" +233305,20in Monitor,1,109.99,07/07/19 18:12,"573 Chestnut St, Dallas, TX 75001" +233306,AAA Batteries (4-pack),3,2.99,07/19/19 12:41,"759 14th St, San Francisco, CA 94016" +233307,ThinkPad Laptop,1,999.99,07/29/19 08:57,"277 7th St, Boston, MA 02215" +233308,USB-C Charging Cable,1,11.95,07/06/19 10:24,"788 Forest St, Atlanta, GA 30301" +233309,Apple Airpods Headphones,1,150,07/06/19 09:44,"688 Cherry St, Los Angeles, CA 90001" +233310,AAA Batteries (4-pack),1,2.99,07/09/19 19:28,"621 7th St, Boston, MA 02215" +233311,Bose SoundSport Headphones,1,99.99,07/04/19 17:23,"642 Maple St, Boston, MA 02215" +233312,USB-C Charging Cable,1,11.95,07/29/19 19:06,"204 Meadow St, Portland, OR 97035" +233313,Bose SoundSport Headphones,1,99.99,07/10/19 14:15,"928 Center St, San Francisco, CA 94016" +233314,LG Dryer,1,600.0,07/22/19 01:25,"311 River St, San Francisco, CA 94016" +233315,AAA Batteries (4-pack),2,2.99,07/19/19 11:22,"512 Dogwood St, New York City, NY 10001" +233316,Bose SoundSport Headphones,1,99.99,07/29/19 20:18,"207 Washington St, San Francisco, CA 94016" +233317,AA Batteries (4-pack),2,3.84,07/30/19 14:06,"225 Maple St, Boston, MA 02215" +233318,Lightning Charging Cable,1,14.95,07/10/19 13:13,"571 14th St, Portland, OR 97035" +233319,USB-C Charging Cable,1,11.95,07/12/19 20:25,"255 4th St, Los Angeles, CA 90001" +233320,Wired Headphones,1,11.99,07/01/19 21:38,"342 Jefferson St, New York City, NY 10001" +233321,USB-C Charging Cable,1,11.95,07/19/19 05:47,"806 Lake St, Portland, OR 97035" +233322,27in FHD Monitor,1,149.99,07/08/19 22:09,"352 4th St, Atlanta, GA 30301" +233323,AAA Batteries (4-pack),1,2.99,07/18/19 20:17,"640 Main St, Boston, MA 02215" +233324,AAA Batteries (4-pack),1,2.99,07/02/19 12:42,"234 10th St, Los Angeles, CA 90001" +233325,AAA Batteries (4-pack),2,2.99,07/21/19 21:47,"636 Pine St, Seattle, WA 98101" +233326,Lightning Charging Cable,1,14.95,07/07/19 09:17,"818 North St, Boston, MA 02215" +233327,AA Batteries (4-pack),1,3.84,07/28/19 20:38,"522 Center St, San Francisco, CA 94016" +233328,AAA Batteries (4-pack),1,2.99,07/06/19 20:17,"214 10th St, Austin, TX 73301" +233329,Apple Airpods Headphones,1,150,07/13/19 20:22,"584 Highland St, New York City, NY 10001" +233330,Bose SoundSport Headphones,1,99.99,07/16/19 11:31,"278 Pine St, Los Angeles, CA 90001" +233331,Bose SoundSport Headphones,1,99.99,07/06/19 14:26,"239 Johnson St, New York City, NY 10001" +233332,Apple Airpods Headphones,1,150,07/08/19 13:20,"558 Main St, Seattle, WA 98101" +233333,USB-C Charging Cable,1,11.95,07/10/19 17:04,"316 Center St, Austin, TX 73301" +233334,AA Batteries (4-pack),2,3.84,07/27/19 15:38,"339 6th St, New York City, NY 10001" +233335,Lightning Charging Cable,1,14.95,07/02/19 09:05,"716 Spruce St, Los Angeles, CA 90001" +233336,27in FHD Monitor,1,149.99,07/12/19 00:31,"310 Chestnut St, San Francisco, CA 94016" +233337,AAA Batteries (4-pack),1,2.99,07/02/19 11:22,"662 Hickory St, Dallas, TX 75001" +233338,AAA Batteries (4-pack),1,2.99,07/18/19 04:56,"89 Cedar St, San Francisco, CA 94016" +233339,AAA Batteries (4-pack),2,2.99,07/11/19 20:30,"533 10th St, Los Angeles, CA 90001" +233340,iPhone,1,700,07/03/19 09:23,"981 Willow St, San Francisco, CA 94016" +233341,USB-C Charging Cable,1,11.95,07/02/19 23:13,"160 Elm St, Portland, ME 04101" +233342,USB-C Charging Cable,1,11.95,07/08/19 00:34,"569 Lake St, Portland, OR 97035" +233343,LG Washing Machine,1,600.0,07/26/19 01:12,"326 River St, San Francisco, CA 94016" +233344,Lightning Charging Cable,1,14.95,07/12/19 09:54,"635 Maple St, Boston, MA 02215" +233345,Apple Airpods Headphones,1,150,08/01/19 01:10,"520 Johnson St, Austin, TX 73301" +233346,Flatscreen TV,1,300,07/06/19 19:47,"854 Lake St, Dallas, TX 75001" +233347,USB-C Charging Cable,1,11.95,07/08/19 20:54,"530 West St, Portland, OR 97035" +233348,27in FHD Monitor,1,149.99,07/18/19 22:45,"811 Adams St, Los Angeles, CA 90001" +233349,Lightning Charging Cable,1,14.95,07/10/19 22:57,"303 Cherry St, San Francisco, CA 94016" +233350,AAA Batteries (4-pack),1,2.99,07/12/19 20:54,"219 9th St, San Francisco, CA 94016" +233351,Macbook Pro Laptop,1,1700,07/08/19 00:03,"640 Lake St, New York City, NY 10001" +233352,AAA Batteries (4-pack),3,2.99,07/17/19 22:05,"320 Jefferson St, Seattle, WA 98101" +233353,AA Batteries (4-pack),1,3.84,07/25/19 11:11,"625 9th St, Los Angeles, CA 90001" +233354,ThinkPad Laptop,1,999.99,07/02/19 12:48,"277 12th St, Los Angeles, CA 90001" +233355,Macbook Pro Laptop,1,1700,07/25/19 13:23,"940 7th St, San Francisco, CA 94016" +233356,ThinkPad Laptop,1,999.99,07/29/19 18:36,"51 13th St, Boston, MA 02215" +233357,Flatscreen TV,1,300,07/22/19 12:18,"373 North St, San Francisco, CA 94016" +233358,AA Batteries (4-pack),2,3.84,07/27/19 23:44,"767 4th St, Los Angeles, CA 90001" +233359,USB-C Charging Cable,1,11.95,07/30/19 14:29,"5 Jackson St, Portland, OR 97035" +233360,Wired Headphones,1,11.99,07/06/19 16:18,"232 Church St, San Francisco, CA 94016" +233361,Bose SoundSport Headphones,1,99.99,07/30/19 14:11,"272 Maple St, Boston, MA 02215" +233362,Macbook Pro Laptop,1,1700,07/26/19 13:42,"51 10th St, Atlanta, GA 30301" +233363,iPhone,1,700,07/27/19 06:10,"792 12th St, Boston, MA 02215" +233364,34in Ultrawide Monitor,1,379.99,07/24/19 16:09,"321 Washington St, Los Angeles, CA 90001" +233365,Macbook Pro Laptop,1,1700,07/01/19 06:53,"430 Adams St, Portland, OR 97035" +233366,USB-C Charging Cable,1,11.95,07/03/19 20:06,"13 Willow St, Los Angeles, CA 90001" +233367,AA Batteries (4-pack),1,3.84,07/29/19 15:17,"93 2nd St, Austin, TX 73301" +233368,34in Ultrawide Monitor,1,379.99,07/16/19 14:27,"667 Jackson St, San Francisco, CA 94016" +233369,27in FHD Monitor,1,149.99,07/28/19 18:22,"968 Elm St, San Francisco, CA 94016" +233370,Lightning Charging Cable,1,14.95,07/21/19 17:17,"67 North St, New York City, NY 10001" +233371,Macbook Pro Laptop,1,1700,07/27/19 08:26,"34 1st St, Boston, MA 02215" +233372,AA Batteries (4-pack),1,3.84,07/08/19 14:00,"760 10th St, Atlanta, GA 30301" +233373,AAA Batteries (4-pack),1,2.99,07/19/19 17:26,"883 4th St, Seattle, WA 98101" +233374,Wired Headphones,1,11.99,07/24/19 09:02,"66 Washington St, Portland, OR 97035" +233375,27in FHD Monitor,1,149.99,07/05/19 19:26,"440 1st St, San Francisco, CA 94016" +233376,USB-C Charging Cable,1,11.95,07/17/19 12:38,"262 Hill St, Los Angeles, CA 90001" +233377,Lightning Charging Cable,1,14.95,07/16/19 10:57,"519 Meadow St, Los Angeles, CA 90001" +233378,Apple Airpods Headphones,1,150,07/07/19 10:36,"916 North St, Austin, TX 73301" +233379,LG Dryer,1,600.0,07/04/19 11:10,"616 Hickory St, San Francisco, CA 94016" +233380,Wired Headphones,1,11.99,07/10/19 09:59,"855 Cherry St, Portland, OR 97035" +233381,AA Batteries (4-pack),3,3.84,07/26/19 13:38,"52 Church St, Boston, MA 02215" +233382,AAA Batteries (4-pack),2,2.99,07/03/19 12:36,"484 14th St, Seattle, WA 98101" +233383,27in FHD Monitor,1,149.99,07/11/19 11:54,"784 Willow St, Portland, OR 97035" +233384,Lightning Charging Cable,1,14.95,07/16/19 22:24,"771 River St, Dallas, TX 75001" +233385,Bose SoundSport Headphones,1,99.99,07/01/19 16:01,"441 Forest St, San Francisco, CA 94016" +233386,ThinkPad Laptop,1,999.99,07/14/19 19:55,"520 Elm St, Boston, MA 02215" +233387,27in 4K Gaming Monitor,1,389.99,07/14/19 23:15,"422 Johnson St, Los Angeles, CA 90001" +233388,USB-C Charging Cable,1,11.95,07/27/19 20:27,"642 Hickory St, San Francisco, CA 94016" +233389,Apple Airpods Headphones,1,150,07/24/19 10:31,"145 Washington St, New York City, NY 10001" +233390,AAA Batteries (4-pack),1,2.99,07/11/19 21:52,"334 4th St, San Francisco, CA 94016" +233391,USB-C Charging Cable,1,11.95,07/29/19 10:22,"525 9th St, New York City, NY 10001" +233392,USB-C Charging Cable,1,11.95,07/01/19 21:52,"424 Lake St, Los Angeles, CA 90001" +233393,Apple Airpods Headphones,1,150,07/20/19 23:29,"733 Elm St, Los Angeles, CA 90001" +233394,Lightning Charging Cable,1,14.95,07/01/19 18:27,"781 South St, New York City, NY 10001" +233395,USB-C Charging Cable,1,11.95,07/07/19 12:05,"544 10th St, Seattle, WA 98101" +233396,Wired Headphones,1,11.99,07/08/19 17:59,"417 North St, Dallas, TX 75001" +233397,AA Batteries (4-pack),1,3.84,07/22/19 19:27,"219 Johnson St, New York City, NY 10001" +233398,Bose SoundSport Headphones,1,99.99,07/15/19 01:35,"751 Washington St, Atlanta, GA 30301" +233399,iPhone,1,700,07/29/19 23:26,"234 Ridge St, Boston, MA 02215" +233400,AA Batteries (4-pack),1,3.84,07/23/19 16:46,"292 South St, San Francisco, CA 94016" +233401,AAA Batteries (4-pack),2,2.99,07/15/19 21:09,"7 Willow St, Seattle, WA 98101" +233402,Wired Headphones,1,11.99,07/09/19 12:29,"804 10th St, Portland, OR 97035" +233403,27in FHD Monitor,1,149.99,07/09/19 09:02,"641 Lakeview St, Los Angeles, CA 90001" +233404,Apple Airpods Headphones,1,150,07/14/19 20:44,"343 1st St, Seattle, WA 98101" +233405,Apple Airpods Headphones,1,150,07/31/19 19:17,"294 Main St, Dallas, TX 75001" +233406,Apple Airpods Headphones,1,150,07/12/19 13:29,"798 Highland St, San Francisco, CA 94016" +233407,Lightning Charging Cable,1,14.95,07/23/19 11:12,"220 8th St, San Francisco, CA 94016" +233408,Wired Headphones,1,11.99,07/27/19 15:05,"940 4th St, San Francisco, CA 94016" +233409,USB-C Charging Cable,1,11.95,07/24/19 22:52,"385 Pine St, Atlanta, GA 30301" +233410,AAA Batteries (4-pack),1,2.99,07/13/19 20:54,"262 4th St, Los Angeles, CA 90001" +233411,Bose SoundSport Headphones,1,99.99,07/10/19 18:57,"70 South St, Seattle, WA 98101" +233412,iPhone,1,700,07/16/19 19:23,"437 11th St, Los Angeles, CA 90001" +233413,AAA Batteries (4-pack),1,2.99,07/13/19 18:47,"53 Wilson St, Seattle, WA 98101" +233414,Lightning Charging Cable,1,14.95,07/27/19 18:38,"544 Jackson St, New York City, NY 10001" +233415,Wired Headphones,1,11.99,07/22/19 11:58,"800 6th St, Los Angeles, CA 90001" +233416,34in Ultrawide Monitor,1,379.99,07/17/19 13:11,"916 11th St, Atlanta, GA 30301" +233417,Wired Headphones,2,11.99,07/23/19 12:08,"531 Pine St, New York City, NY 10001" +233418,Lightning Charging Cable,1,14.95,07/04/19 18:11,"77 Church St, New York City, NY 10001" +233419,AAA Batteries (4-pack),1,2.99,07/13/19 10:28,"223 Cedar St, San Francisco, CA 94016" +233420,Lightning Charging Cable,1,14.95,07/25/19 15:36,"909 Hill St, Boston, MA 02215" +233421,Wired Headphones,1,11.99,07/31/19 12:41,"575 Main St, San Francisco, CA 94016" +233422,Wired Headphones,2,11.99,07/18/19 17:18,"689 5th St, New York City, NY 10001" +233423,Wired Headphones,1,11.99,07/10/19 16:45,"695 10th St, Boston, MA 02215" +233424,27in FHD Monitor,1,149.99,07/10/19 16:31,"957 North St, Los Angeles, CA 90001" +233425,AA Batteries (4-pack),1,3.84,07/17/19 23:37,"319 11th St, Austin, TX 73301" +233426,Apple Airpods Headphones,1,150,07/02/19 10:38,"485 9th St, Austin, TX 73301" +233427,USB-C Charging Cable,1,11.95,07/14/19 11:30,"77 Washington St, New York City, NY 10001" +233428,27in 4K Gaming Monitor,1,389.99,07/27/19 10:42,"591 5th St, Dallas, TX 75001" +233429,Macbook Pro Laptop,1,1700,07/23/19 20:16,"988 Elm St, San Francisco, CA 94016" +233430,iPhone,1,700,07/16/19 10:07,"719 7th St, Boston, MA 02215" +233431,Google Phone,1,600,07/30/19 15:27,"426 Johnson St, Los Angeles, CA 90001" +233432,Flatscreen TV,1,300,07/17/19 22:46,"42 8th St, Los Angeles, CA 90001" +233433,AAA Batteries (4-pack),3,2.99,07/22/19 10:43,"471 Cedar St, New York City, NY 10001" +233434,Google Phone,1,600,07/24/19 19:58,"337 Park St, Los Angeles, CA 90001" +233434,USB-C Charging Cable,1,11.95,07/24/19 19:58,"337 Park St, Los Angeles, CA 90001" +233435,Bose SoundSport Headphones,1,99.99,07/26/19 22:46,"518 Maple St, Los Angeles, CA 90001" +233436,Apple Airpods Headphones,1,150,07/07/19 15:12,"977 West St, Atlanta, GA 30301" +233437,AA Batteries (4-pack),1,3.84,07/11/19 18:01,"983 13th St, San Francisco, CA 94016" +233438,Apple Airpods Headphones,1,150,07/05/19 20:06,"57 11th St, Dallas, TX 75001" +233439,ThinkPad Laptop,1,999.99,07/23/19 16:54,"328 West St, Austin, TX 73301" +233440,AA Batteries (4-pack),1,3.84,07/21/19 21:55,"509 Highland St, Atlanta, GA 30301" +233441,AAA Batteries (4-pack),5,2.99,07/03/19 10:41,"187 Madison St, Portland, OR 97035" +233442,Wired Headphones,1,11.99,07/03/19 10:03,"34 14th St, San Francisco, CA 94016" +233443,AA Batteries (4-pack),1,3.84,07/12/19 11:00,"281 Cherry St, Austin, TX 73301" +233444,Apple Airpods Headphones,1,150,07/17/19 04:02,"432 Park St, New York City, NY 10001" +233445,USB-C Charging Cable,2,11.95,07/11/19 14:00,"392 Adams St, Boston, MA 02215" +233446,Bose SoundSport Headphones,1,99.99,07/20/19 17:59,"719 Lakeview St, Austin, TX 73301" +233447,AAA Batteries (4-pack),1,2.99,07/11/19 16:42,"63 Ridge St, Boston, MA 02215" +233448,AA Batteries (4-pack),1,3.84,07/14/19 12:16,"775 Lakeview St, Atlanta, GA 30301" +233449,Vareebadd Phone,1,400,07/18/19 17:11,"601 Main St, Los Angeles, CA 90001" +233449,Bose SoundSport Headphones,1,99.99,07/18/19 17:11,"601 Main St, Los Angeles, CA 90001" +233450,AAA Batteries (4-pack),1,2.99,07/11/19 14:39,"198 Wilson St, Dallas, TX 75001" +233451,AA Batteries (4-pack),1,3.84,07/21/19 13:16,"57 Hill St, San Francisco, CA 94016" +233452,AA Batteries (4-pack),4,3.84,07/20/19 13:35,"493 Meadow St, Atlanta, GA 30301" +233453,Bose SoundSport Headphones,1,99.99,07/19/19 12:40,"421 Forest St, New York City, NY 10001" +233454,Vareebadd Phone,1,400,07/26/19 21:55,"617 Forest St, San Francisco, CA 94016" +233455,Flatscreen TV,1,300,07/30/19 22:31,"936 Adams St, San Francisco, CA 94016" +233456,Flatscreen TV,1,300,07/04/19 15:08,"834 Lakeview St, New York City, NY 10001" +233457,USB-C Charging Cable,2,11.95,07/24/19 22:08,"853 7th St, San Francisco, CA 94016" +233458,Apple Airpods Headphones,1,150,07/27/19 00:53,"324 8th St, Atlanta, GA 30301" +233459,AA Batteries (4-pack),2,3.84,07/29/19 21:10,"69 Lincoln St, New York City, NY 10001" +233460,AAA Batteries (4-pack),1,2.99,07/25/19 16:02,"659 Jefferson St, Boston, MA 02215" +233461,AA Batteries (4-pack),1,3.84,07/07/19 17:07,"637 Dogwood St, Atlanta, GA 30301" +233462,AA Batteries (4-pack),1,3.84,07/18/19 13:04,"124 Ridge St, San Francisco, CA 94016" +233463,AAA Batteries (4-pack),1,2.99,07/30/19 14:58,"447 8th St, Dallas, TX 75001" +233464,Google Phone,1,600,07/08/19 16:48,"16 Madison St, Los Angeles, CA 90001" +233464,Bose SoundSport Headphones,1,99.99,07/08/19 16:48,"16 Madison St, Los Angeles, CA 90001" +233465,Wired Headphones,1,11.99,07/17/19 20:51,"974 Jackson St, New York City, NY 10001" +233466,Flatscreen TV,1,300,07/08/19 18:15,"919 Willow St, San Francisco, CA 94016" +233467,Lightning Charging Cable,1,14.95,07/25/19 12:51,"222 Cherry St, San Francisco, CA 94016" +233468,Google Phone,1,600,07/20/19 13:36,"388 Sunset St, Portland, OR 97035" +233469,USB-C Charging Cable,1,11.95,07/01/19 20:18,"559 Highland St, New York City, NY 10001" +233470,Apple Airpods Headphones,1,150,07/03/19 10:28,"279 Dogwood St, Portland, OR 97035" +233471,Lightning Charging Cable,1,14.95,07/01/19 19:04,"427 West St, Atlanta, GA 30301" +233472,USB-C Charging Cable,1,11.95,07/09/19 11:55,"82 Hill St, Atlanta, GA 30301" +233473,Apple Airpods Headphones,1,150,07/02/19 01:29,"397 Jefferson St, Dallas, TX 75001" +233474,AAA Batteries (4-pack),1,2.99,07/30/19 14:41,"947 Lake St, Portland, OR 97035" +233475,iPhone,1,700,07/24/19 09:51,"946 7th St, San Francisco, CA 94016" +233475,Lightning Charging Cable,1,14.95,07/24/19 09:51,"946 7th St, San Francisco, CA 94016" +233476,AAA Batteries (4-pack),1,2.99,07/31/19 13:52,"53 Adams St, San Francisco, CA 94016" +233477,USB-C Charging Cable,1,11.95,07/31/19 12:23,"913 North St, San Francisco, CA 94016" +233478,iPhone,1,700,07/27/19 13:40,"341 8th St, Boston, MA 02215" +233479,USB-C Charging Cable,1,11.95,07/20/19 10:14,"745 7th St, Los Angeles, CA 90001" +233480,Macbook Pro Laptop,1,1700,07/22/19 11:33,"239 Jefferson St, Portland, OR 97035" +233481,Lightning Charging Cable,1,14.95,07/14/19 19:02,"71 Washington St, Dallas, TX 75001" +233482,27in 4K Gaming Monitor,1,389.99,07/24/19 21:26,"584 Chestnut St, Dallas, TX 75001" +233483,27in FHD Monitor,1,149.99,07/22/19 10:23,"723 10th St, New York City, NY 10001" +233484,Lightning Charging Cable,1,14.95,07/28/19 10:40,"698 4th St, Boston, MA 02215" +233485,Macbook Pro Laptop,1,1700,07/16/19 10:08,"572 Pine St, San Francisco, CA 94016" +233486,USB-C Charging Cable,1,11.95,07/03/19 10:28,"13 Cedar St, San Francisco, CA 94016" +233487,ThinkPad Laptop,1,999.99,07/10/19 18:21,"905 Pine St, Portland, OR 97035" +233488,Lightning Charging Cable,1,14.95,07/11/19 18:20,"419 Cedar St, Dallas, TX 75001" +233489,AA Batteries (4-pack),1,3.84,07/05/19 11:23,"378 Church St, San Francisco, CA 94016" +233490,Flatscreen TV,1,300,07/09/19 10:36,"257 9th St, Atlanta, GA 30301" +233491,Bose SoundSport Headphones,1,99.99,07/10/19 15:45,"578 Church St, San Francisco, CA 94016" +233492,27in FHD Monitor,1,149.99,07/02/19 19:33,"849 Maple St, San Francisco, CA 94016" +233493,AAA Batteries (4-pack),1,2.99,07/24/19 17:48,"360 Willow St, San Francisco, CA 94016" +233494,Bose SoundSport Headphones,1,99.99,07/31/19 14:37,"280 Hickory St, Dallas, TX 75001" +233495,Vareebadd Phone,1,400,07/10/19 12:33,"565 Church St, Dallas, TX 75001" +233496,AAA Batteries (4-pack),2,2.99,07/20/19 09:42,"282 Jefferson St, Atlanta, GA 30301" +233497,Wired Headphones,1,11.99,07/02/19 15:42,"937 Adams St, San Francisco, CA 94016" +233498,USB-C Charging Cable,1,11.95,07/09/19 23:17,"717 13th St, Boston, MA 02215" +233499,Macbook Pro Laptop,1,1700,07/29/19 14:47,"746 Pine St, Los Angeles, CA 90001" +233500,Lightning Charging Cable,1,14.95,07/13/19 20:00,"503 Jefferson St, San Francisco, CA 94016" +233501,Lightning Charging Cable,1,14.95,07/21/19 08:32,"748 Main St, Dallas, TX 75001" +233502,AAA Batteries (4-pack),2,2.99,07/10/19 21:19,"812 Church St, Austin, TX 73301" +233503,Bose SoundSport Headphones,1,99.99,07/06/19 11:01,"637 Adams St, Portland, OR 97035" +233504,27in FHD Monitor,1,149.99,07/04/19 11:18,"672 4th St, Boston, MA 02215" +233505,AA Batteries (4-pack),1,3.84,07/16/19 20:39,"437 Chestnut St, Portland, ME 04101" +233506,Bose SoundSport Headphones,1,99.99,07/03/19 18:18,"156 Lincoln St, New York City, NY 10001" +233507,AA Batteries (4-pack),2,3.84,07/14/19 17:05,"862 Spruce St, Boston, MA 02215" +233508,Apple Airpods Headphones,1,150,07/24/19 03:45,"796 Hickory St, San Francisco, CA 94016" +233509,AA Batteries (4-pack),2,3.84,07/04/19 08:46,"206 Hickory St, Los Angeles, CA 90001" +233510,USB-C Charging Cable,1,11.95,07/07/19 15:35,"207 Adams St, New York City, NY 10001" +233511,Apple Airpods Headphones,1,150,07/21/19 17:57,"760 Johnson St, Los Angeles, CA 90001" +233512,AA Batteries (4-pack),1,3.84,07/29/19 15:49,"347 Jackson St, Los Angeles, CA 90001" +233513,Wired Headphones,1,11.99,07/21/19 18:38,"294 Forest St, Los Angeles, CA 90001" +233514,Wired Headphones,1,11.99,07/28/19 18:45,"858 Dogwood St, San Francisco, CA 94016" +233515,iPhone,1,700,07/08/19 16:26,"379 7th St, Los Angeles, CA 90001" +233516,27in 4K Gaming Monitor,1,389.99,07/24/19 19:17,"111 Adams St, Los Angeles, CA 90001" +233517,27in 4K Gaming Monitor,1,389.99,07/18/19 17:01,"165 Spruce St, Atlanta, GA 30301" +233518,AA Batteries (4-pack),2,3.84,07/25/19 03:57,"611 7th St, San Francisco, CA 94016" +233519,Bose SoundSport Headphones,1,99.99,07/04/19 11:10,"146 1st St, San Francisco, CA 94016" +233520,AAA Batteries (4-pack),2,2.99,07/06/19 18:20,"39 4th St, Seattle, WA 98101" +233521,Bose SoundSport Headphones,1,99.99,07/05/19 11:46,"816 Jackson St, Portland, OR 97035" +233522,Lightning Charging Cable,1,14.95,08/01/19 01:14,"667 Pine St, New York City, NY 10001" +233523,ThinkPad Laptop,1,999.99,07/25/19 13:46,"990 11th St, New York City, NY 10001" +233524,AA Batteries (4-pack),1,3.84,07/29/19 17:35,"174 West St, Los Angeles, CA 90001" +233525,Wired Headphones,1,11.99,07/06/19 21:02,"367 Hickory St, Los Angeles, CA 90001" +233526,Bose SoundSport Headphones,1,99.99,07/07/19 22:15,"190 North St, Los Angeles, CA 90001" +233527,iPhone,1,700,07/16/19 08:21,"318 Pine St, Los Angeles, CA 90001" +233528,USB-C Charging Cable,1,11.95,07/18/19 23:51,"973 River St, Los Angeles, CA 90001" +233529,Macbook Pro Laptop,1,1700,07/31/19 10:48,"550 Walnut St, Seattle, WA 98101" +233530,Wired Headphones,1,11.99,07/13/19 07:30,"250 Park St, San Francisco, CA 94016" +233531,Lightning Charging Cable,1,14.95,07/24/19 19:21,"960 Ridge St, Boston, MA 02215" +233532,Apple Airpods Headphones,1,150,07/31/19 11:32,"519 Madison St, San Francisco, CA 94016" +233533,Wired Headphones,1,11.99,07/01/19 15:25,"129 North St, Portland, ME 04101" +233534,Google Phone,1,600,07/28/19 16:09,"367 Meadow St, Los Angeles, CA 90001" +233535,USB-C Charging Cable,2,11.95,07/29/19 08:13,"522 6th St, New York City, NY 10001" +233536,Lightning Charging Cable,2,14.95,07/22/19 15:44,"524 Lincoln St, Los Angeles, CA 90001" +233537,Lightning Charging Cable,1,14.95,07/12/19 12:12,"31 Sunset St, Seattle, WA 98101" +233538,Macbook Pro Laptop,1,1700,07/21/19 19:59,"480 Wilson St, San Francisco, CA 94016" +233539,Apple Airpods Headphones,1,150,07/03/19 10:02,"670 Jefferson St, Los Angeles, CA 90001" +233540,Bose SoundSport Headphones,1,99.99,07/14/19 13:24,"133 5th St, Los Angeles, CA 90001" +233541,Lightning Charging Cable,1,14.95,07/01/19 11:43,"478 1st St, Los Angeles, CA 90001" +233542,ThinkPad Laptop,1,999.99,07/18/19 21:55,"122 Lake St, Los Angeles, CA 90001" +233543,Apple Airpods Headphones,1,150,07/10/19 15:22,"342 Washington St, San Francisco, CA 94016" +233544,27in 4K Gaming Monitor,1,389.99,07/18/19 10:22,"419 9th St, Dallas, TX 75001" +233545,Macbook Pro Laptop,1,1700,08/01/19 00:19,"504 5th St, San Francisco, CA 94016" +233546,AAA Batteries (4-pack),1,2.99,07/01/19 22:07,"858 13th St, Austin, TX 73301" +233547,Bose SoundSport Headphones,1,99.99,07/17/19 13:49,"919 4th St, Austin, TX 73301" +233548,USB-C Charging Cable,1,11.95,07/10/19 11:37,"704 Walnut St, Boston, MA 02215" +233549,Bose SoundSport Headphones,1,99.99,07/03/19 09:05,"645 Hill St, Seattle, WA 98101" +233550,Google Phone,1,600,07/26/19 12:05,"532 Lincoln St, Seattle, WA 98101" +233550,USB-C Charging Cable,1,11.95,07/26/19 12:05,"532 Lincoln St, Seattle, WA 98101" +233551,Apple Airpods Headphones,1,150,07/02/19 22:48,"583 Wilson St, Dallas, TX 75001" +233552,AA Batteries (4-pack),1,3.84,07/25/19 22:05,"660 Jackson St, San Francisco, CA 94016" +233553,Lightning Charging Cable,1,14.95,07/22/19 20:12,"117 West St, Los Angeles, CA 90001" +233554,AA Batteries (4-pack),2,3.84,07/14/19 20:52,"819 Park St, Los Angeles, CA 90001" +233555,Wired Headphones,1,11.99,07/10/19 17:11,"519 Adams St, Atlanta, GA 30301" +233556,AA Batteries (4-pack),2,3.84,07/09/19 22:24,"209 Church St, New York City, NY 10001" +233557,Lightning Charging Cable,1,14.95,07/22/19 21:03,"695 Cedar St, New York City, NY 10001" +233558,AAA Batteries (4-pack),3,2.99,07/25/19 11:00,"801 Ridge St, Portland, ME 04101" +233559,Google Phone,1,600,07/14/19 21:59,"19 12th St, San Francisco, CA 94016" +233560,iPhone,1,700,07/28/19 15:14,"211 Cherry St, New York City, NY 10001" +233561,AA Batteries (4-pack),1,3.84,07/12/19 20:34,"760 Church St, San Francisco, CA 94016" +233562,Lightning Charging Cable,1,14.95,07/31/19 12:07,"570 Park St, San Francisco, CA 94016" +233563,Apple Airpods Headphones,1,150,07/13/19 13:12,"421 West St, San Francisco, CA 94016" +233564,Wired Headphones,1,11.99,07/01/19 21:59,"684 Cherry St, San Francisco, CA 94016" +233565,Apple Airpods Headphones,1,150,07/04/19 16:03,"697 Dogwood St, San Francisco, CA 94016" +233566,Apple Airpods Headphones,1,150,07/07/19 21:47,"896 South St, Los Angeles, CA 90001" +233567,Lightning Charging Cable,1,14.95,07/03/19 07:19,"575 2nd St, San Francisco, CA 94016" +233568,27in 4K Gaming Monitor,1,389.99,07/01/19 17:45,"360 Sunset St, Portland, OR 97035" +233569,AAA Batteries (4-pack),1,2.99,07/23/19 19:26,"421 Madison St, San Francisco, CA 94016" +233570,27in FHD Monitor,1,149.99,07/16/19 08:27,"228 Church St, Portland, OR 97035" +233571,Wired Headphones,1,11.99,07/28/19 20:19,"936 Adams St, San Francisco, CA 94016" +233572,34in Ultrawide Monitor,1,379.99,07/13/19 19:43,"633 13th St, San Francisco, CA 94016" +233573,Wired Headphones,1,11.99,07/26/19 13:40,"482 Walnut St, Austin, TX 73301" +233574,iPhone,1,700,07/16/19 13:00,"735 West St, Boston, MA 02215" +233574,LG Dryer,1,600.0,07/16/19 13:00,"735 West St, Boston, MA 02215" +233575,Flatscreen TV,1,300,07/26/19 15:11,"861 Maple St, Boston, MA 02215" +233576,Lightning Charging Cable,1,14.95,07/31/19 11:45,"946 Jefferson St, New York City, NY 10001" +233577,AAA Batteries (4-pack),1,2.99,07/28/19 17:17,"463 Walnut St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +233578,AA Batteries (4-pack),1,3.84,07/20/19 14:36,"498 Spruce St, San Francisco, CA 94016" +233579,27in FHD Monitor,1,149.99,07/25/19 22:00,"83 West St, Seattle, WA 98101" +233580,AAA Batteries (4-pack),2,2.99,07/26/19 12:23,"396 Elm St, Dallas, TX 75001" +233581,Wired Headphones,1,11.99,07/20/19 13:33,"417 South St, Los Angeles, CA 90001" +233582,Apple Airpods Headphones,1,150,07/07/19 00:26,"804 Chestnut St, Boston, MA 02215" +233583,Macbook Pro Laptop,1,1700,07/28/19 14:54,"532 12th St, Boston, MA 02215" +233584,Apple Airpods Headphones,1,150,07/23/19 12:38,"988 Spruce St, Boston, MA 02215" +233585,Bose SoundSport Headphones,1,99.99,07/20/19 14:24,"546 Lincoln St, San Francisco, CA 94016" +233586,LG Washing Machine,1,600.0,07/02/19 13:23,"593 Sunset St, Los Angeles, CA 90001" +233587,iPhone,1,700,07/11/19 21:50,"147 8th St, Los Angeles, CA 90001" +233587,Lightning Charging Cable,3,14.95,07/11/19 21:50,"147 8th St, Los Angeles, CA 90001" +233588,Wired Headphones,1,11.99,07/21/19 17:41,"817 Jefferson St, New York City, NY 10001" +233589,Flatscreen TV,1,300,07/25/19 15:11,"735 Lincoln St, Portland, OR 97035" +233590,Lightning Charging Cable,1,14.95,07/29/19 21:12,"944 West St, Boston, MA 02215" +233591,Apple Airpods Headphones,1,150,07/18/19 18:52,"903 Chestnut St, Boston, MA 02215" +233592,AAA Batteries (4-pack),1,2.99,07/03/19 22:29,"874 Jefferson St, Boston, MA 02215" +233593,Flatscreen TV,1,300,07/31/19 19:21,"573 Ridge St, San Francisco, CA 94016" +233594,AAA Batteries (4-pack),1,2.99,07/29/19 13:41,"29 Main St, San Francisco, CA 94016" +233595,AAA Batteries (4-pack),3,2.99,07/19/19 09:58,"368 Dogwood St, New York City, NY 10001" +233596,Apple Airpods Headphones,1,150,07/05/19 11:05,"644 Cedar St, San Francisco, CA 94016" +233597,20in Monitor,1,109.99,07/09/19 16:37,"262 Chestnut St, Dallas, TX 75001" +233598,Apple Airpods Headphones,1,150,07/03/19 16:40,"643 5th St, Boston, MA 02215" +233599,Wired Headphones,1,11.99,07/17/19 16:51,"519 River St, Los Angeles, CA 90001" +233600,27in 4K Gaming Monitor,1,389.99,07/10/19 06:27,"452 Forest St, Austin, TX 73301" +233601,AAA Batteries (4-pack),2,2.99,07/28/19 10:41,"76 Sunset St, San Francisco, CA 94016" +233602,AAA Batteries (4-pack),2,2.99,07/29/19 23:13,"40 Willow St, Los Angeles, CA 90001" +233603,AAA Batteries (4-pack),2,2.99,07/21/19 09:58,"379 10th St, New York City, NY 10001" +233604,AAA Batteries (4-pack),1,2.99,07/21/19 20:13,"636 Main St, New York City, NY 10001" +233605,Lightning Charging Cable,1,14.95,07/30/19 22:05,"683 Elm St, Los Angeles, CA 90001" +233606,Wired Headphones,1,11.99,07/03/19 21:16,"406 Maple St, Seattle, WA 98101" +233607,AA Batteries (4-pack),1,3.84,07/30/19 07:00,"296 Elm St, San Francisco, CA 94016" +233608,AAA Batteries (4-pack),3,2.99,07/11/19 18:20,"437 West St, Los Angeles, CA 90001" +233609,34in Ultrawide Monitor,1,379.99,07/05/19 14:13,"365 Park St, Dallas, TX 75001" +233610,AAA Batteries (4-pack),4,2.99,07/29/19 18:40,"971 9th St, San Francisco, CA 94016" +233611,Apple Airpods Headphones,1,150,07/02/19 12:09,"15 Highland St, San Francisco, CA 94016" +233612,Bose SoundSport Headphones,1,99.99,07/14/19 11:10,"537 Washington St, Portland, OR 97035" +233613,20in Monitor,1,109.99,07/04/19 00:51,"72 4th St, New York City, NY 10001" +233614,Wired Headphones,1,11.99,07/20/19 13:14,"760 14th St, New York City, NY 10001" +233615,Apple Airpods Headphones,1,150,07/28/19 21:21,"263 Madison St, San Francisco, CA 94016" +233616,USB-C Charging Cable,1,11.95,07/13/19 19:36,"16 5th St, Portland, OR 97035" +233617,Apple Airpods Headphones,1,150,07/12/19 13:42,"632 9th St, Boston, MA 02215" +233618,Wired Headphones,1,11.99,07/10/19 14:11,"669 Church St, New York City, NY 10001" +233619,Wired Headphones,1,11.99,07/04/19 21:09,"664 Elm St, Los Angeles, CA 90001" +233620,Lightning Charging Cable,1,14.95,07/07/19 12:16,"911 Meadow St, Boston, MA 02215" +233621,AAA Batteries (4-pack),1,2.99,07/02/19 13:07,"725 Lakeview St, Austin, TX 73301" +233622,AA Batteries (4-pack),1,3.84,07/09/19 17:13,"342 North St, Portland, OR 97035" +233623,27in FHD Monitor,1,149.99,07/05/19 12:07,"367 8th St, Los Angeles, CA 90001" +233624,20in Monitor,1,109.99,07/05/19 14:00,"224 Highland St, Los Angeles, CA 90001" +233625,Lightning Charging Cable,1,14.95,07/26/19 14:47,"972 Lakeview St, San Francisco, CA 94016" +233626,AA Batteries (4-pack),1,3.84,07/28/19 18:58,"882 Main St, New York City, NY 10001" +233627,Flatscreen TV,1,300,07/29/19 14:29,"669 5th St, Atlanta, GA 30301" +233628,USB-C Charging Cable,1,11.95,07/01/19 10:25,"842 Hill St, Atlanta, GA 30301" +233629,AAA Batteries (4-pack),1,2.99,07/21/19 14:48,"554 Maple St, New York City, NY 10001" +233630,Lightning Charging Cable,1,14.95,07/05/19 08:37,"272 South St, San Francisco, CA 94016" +233631,Flatscreen TV,1,300,07/04/19 14:22,"450 6th St, San Francisco, CA 94016" +233632,20in Monitor,1,109.99,07/10/19 13:16,"82 7th St, Dallas, TX 75001" +233633,Lightning Charging Cable,2,14.95,07/25/19 07:49,"568 Jackson St, San Francisco, CA 94016" +233634,Apple Airpods Headphones,1,150,07/31/19 18:51,"262 Chestnut St, San Francisco, CA 94016" +233635,Bose SoundSport Headphones,1,99.99,07/16/19 12:35,"291 Johnson St, Boston, MA 02215" +233636,Wired Headphones,2,11.99,07/18/19 17:18,"790 Cedar St, New York City, NY 10001" +233637,Lightning Charging Cable,1,14.95,07/10/19 22:25,"919 Jackson St, San Francisco, CA 94016" +233638,AA Batteries (4-pack),2,3.84,07/14/19 11:20,"926 6th St, San Francisco, CA 94016" +233639,AA Batteries (4-pack),1,3.84,07/29/19 12:54,"745 2nd St, Atlanta, GA 30301" +233640,Wired Headphones,1,11.99,07/09/19 09:29,"32 Chestnut St, Dallas, TX 75001" +233641,AA Batteries (4-pack),1,3.84,07/18/19 12:30,"152 13th St, Los Angeles, CA 90001" +233642,Wired Headphones,1,11.99,07/04/19 11:42,"585 Wilson St, San Francisco, CA 94016" +233643,AA Batteries (4-pack),1,3.84,07/23/19 17:29,"694 Johnson St, Los Angeles, CA 90001" +233644,Lightning Charging Cable,1,14.95,07/06/19 14:15,"406 Chestnut St, Dallas, TX 75001" +233645,Apple Airpods Headphones,1,150,07/17/19 14:52,"145 Dogwood St, Los Angeles, CA 90001" +233646,USB-C Charging Cable,1,11.95,07/15/19 14:50,"315 Lakeview St, Atlanta, GA 30301" +233647,34in Ultrawide Monitor,1,379.99,07/10/19 22:07,"313 13th St, Dallas, TX 75001" +233648,AAA Batteries (4-pack),1,2.99,07/24/19 11:24,"189 1st St, Seattle, WA 98101" +233649,34in Ultrawide Monitor,1,379.99,07/29/19 17:31,"907 Wilson St, New York City, NY 10001" +233650,iPhone,1,700,07/19/19 22:11,"681 4th St, Seattle, WA 98101" +233650,Lightning Charging Cable,1,14.95,07/19/19 22:11,"681 4th St, Seattle, WA 98101" +233651,AAA Batteries (4-pack),1,2.99,07/29/19 18:42,"193 9th St, Boston, MA 02215" +233652,Wired Headphones,1,11.99,07/30/19 13:04,"425 9th St, Boston, MA 02215" +233653,AA Batteries (4-pack),2,3.84,07/07/19 07:18,"876 Adams St, New York City, NY 10001" +233654,Lightning Charging Cable,1,14.95,07/18/19 22:35,"639 Walnut St, Boston, MA 02215" +233655,Flatscreen TV,1,300,07/17/19 13:32,"571 11th St, Dallas, TX 75001" +233656,Wired Headphones,1,11.99,07/07/19 08:36,"581 Park St, Seattle, WA 98101" +233657,Flatscreen TV,1,300,07/07/19 21:14,"375 12th St, Boston, MA 02215" +233658,Vareebadd Phone,1,400,07/03/19 17:37,"943 7th St, Boston, MA 02215" +233659,AAA Batteries (4-pack),1,2.99,07/02/19 17:14,"378 5th St, San Francisco, CA 94016" +233659,Wired Headphones,2,11.99,07/02/19 17:14,"378 5th St, San Francisco, CA 94016" +233660,Lightning Charging Cable,1,14.95,07/18/19 16:17,"240 14th St, Los Angeles, CA 90001" +233661,Wired Headphones,1,11.99,07/04/19 16:40,"260 8th St, Portland, ME 04101" +233662,Wired Headphones,1,11.99,07/24/19 23:25,"520 North St, Los Angeles, CA 90001" +233663,Wired Headphones,1,11.99,07/08/19 08:10,"24 8th St, San Francisco, CA 94016" +233664,USB-C Charging Cable,1,11.95,07/12/19 13:49,"69 Spruce St, Atlanta, GA 30301" +233665,USB-C Charging Cable,1,11.95,07/03/19 16:24,"618 Park St, Los Angeles, CA 90001" +233666,LG Dryer,1,600.0,07/10/19 11:49,"551 Pine St, San Francisco, CA 94016" +233667,Lightning Charging Cable,1,14.95,07/28/19 16:08,"103 Lincoln St, San Francisco, CA 94016" +233668,Lightning Charging Cable,1,14.95,07/24/19 12:54,"689 Jefferson St, New York City, NY 10001" +233669,Lightning Charging Cable,1,14.95,07/14/19 22:07,"897 8th St, San Francisco, CA 94016" +233670,AA Batteries (4-pack),1,3.84,07/11/19 19:07,"141 1st St, Dallas, TX 75001" +233671,Bose SoundSport Headphones,1,99.99,07/07/19 23:40,"652 Cedar St, New York City, NY 10001" +233672,Wired Headphones,1,11.99,07/12/19 22:38,"876 Chestnut St, Boston, MA 02215" +233673,Apple Airpods Headphones,1,150,07/02/19 12:12,"203 Lincoln St, San Francisco, CA 94016" +233674,Wired Headphones,1,11.99,07/09/19 13:23,"666 Pine St, New York City, NY 10001" +233675,34in Ultrawide Monitor,1,379.99,07/05/19 19:04,"688 8th St, Atlanta, GA 30301" +233676,Lightning Charging Cable,1,14.95,07/21/19 05:55,"177 Center St, Boston, MA 02215" +233677,AA Batteries (4-pack),1,3.84,07/03/19 22:01,"168 West St, Austin, TX 73301" +233678,AA Batteries (4-pack),2,3.84,07/17/19 15:00,"762 Sunset St, Boston, MA 02215" +233679,Apple Airpods Headphones,1,150,07/20/19 11:48,"320 Pine St, Portland, OR 97035" +233680,Apple Airpods Headphones,1,150,07/03/19 12:47,"306 11th St, New York City, NY 10001" +233681,USB-C Charging Cable,2,11.95,07/21/19 15:37,"558 Highland St, New York City, NY 10001" +233681,20in Monitor,1,109.99,07/21/19 15:37,"558 Highland St, New York City, NY 10001" +233682,AA Batteries (4-pack),1,3.84,07/27/19 12:12,"560 Main St, Boston, MA 02215" +233683,Bose SoundSport Headphones,1,99.99,07/08/19 15:26,"421 North St, Dallas, TX 75001" +233684,Lightning Charging Cable,1,14.95,07/23/19 14:29,"590 Park St, New York City, NY 10001" +233685,Apple Airpods Headphones,1,150,07/07/19 22:24,"878 Sunset St, Los Angeles, CA 90001" +233686,Wired Headphones,1,11.99,07/13/19 10:04,"602 6th St, Austin, TX 73301" +233687,27in FHD Monitor,1,149.99,07/01/19 20:27,"461 2nd St, New York City, NY 10001" +233688,Lightning Charging Cable,1,14.95,07/01/19 08:32,"103 1st St, San Francisco, CA 94016" +233689,AA Batteries (4-pack),1,3.84,07/16/19 11:31,"93 Cherry St, San Francisco, CA 94016" +233690,Wired Headphones,1,11.99,07/18/19 13:49,"145 Maple St, San Francisco, CA 94016" +233691,Lightning Charging Cable,1,14.95,07/20/19 06:46,"424 Dogwood St, Los Angeles, CA 90001" +233692,iPhone,1,700,07/31/19 08:26,"252 Adams St, Atlanta, GA 30301" +233693,AAA Batteries (4-pack),1,2.99,07/02/19 09:20,"969 12th St, San Francisco, CA 94016" +233694,AAA Batteries (4-pack),1,2.99,07/02/19 17:27,"716 Ridge St, Boston, MA 02215" +233695,AAA Batteries (4-pack),2,2.99,07/23/19 22:17,"443 Elm St, San Francisco, CA 94016" +233696,Apple Airpods Headphones,1,150,07/27/19 21:13,"609 River St, Atlanta, GA 30301" +233697,34in Ultrawide Monitor,1,379.99,07/20/19 13:28,"723 Center St, Seattle, WA 98101" +233698,Bose SoundSport Headphones,1,99.99,07/22/19 17:19,"75 4th St, San Francisco, CA 94016" +233699,Lightning Charging Cable,1,14.95,07/13/19 13:42,"752 Cedar St, Los Angeles, CA 90001" +233700,Bose SoundSport Headphones,1,99.99,07/31/19 16:00,"777 Maple St, San Francisco, CA 94016" +233701,Wired Headphones,1,11.99,07/23/19 12:27,"847 Sunset St, New York City, NY 10001" +233702,AA Batteries (4-pack),1,3.84,07/05/19 10:55,"382 Spruce St, San Francisco, CA 94016" +233703,AAA Batteries (4-pack),3,2.99,07/14/19 02:59,"159 Maple St, San Francisco, CA 94016" +233704,Vareebadd Phone,1,400,07/28/19 17:25,"469 Main St, Atlanta, GA 30301" +233705,Wired Headphones,1,11.99,07/20/19 19:22,"153 Forest St, Los Angeles, CA 90001" +233706,iPhone,1,700,07/09/19 17:54,"272 River St, Los Angeles, CA 90001" +233707,AA Batteries (4-pack),1,3.84,07/05/19 16:14,"617 North St, Los Angeles, CA 90001" +233708,USB-C Charging Cable,1,11.95,07/21/19 14:30,"470 Hill St, Los Angeles, CA 90001" +233709,Wired Headphones,1,11.99,07/08/19 04:52,"132 11th St, Boston, MA 02215" +233710,Bose SoundSport Headphones,1,99.99,07/10/19 03:07,"562 Cedar St, San Francisco, CA 94016" +233711,Lightning Charging Cable,1,14.95,07/02/19 15:32,"568 Hill St, Boston, MA 02215" +233712,AAA Batteries (4-pack),1,2.99,07/24/19 17:53,"657 Willow St, San Francisco, CA 94016" +233713,USB-C Charging Cable,1,11.95,07/06/19 11:43,"6 Ridge St, New York City, NY 10001" +233714,AAA Batteries (4-pack),2,2.99,07/29/19 10:57,"686 Walnut St, Boston, MA 02215" +233715,Vareebadd Phone,1,400,07/26/19 11:49,"479 9th St, Los Angeles, CA 90001" +233716,USB-C Charging Cable,1,11.95,07/27/19 17:13,"343 Maple St, San Francisco, CA 94016" +233717,Lightning Charging Cable,2,14.95,07/03/19 17:12,"867 11th St, New York City, NY 10001" +233718,Apple Airpods Headphones,1,150,07/20/19 20:15,"192 Hickory St, San Francisco, CA 94016" +233719,AAA Batteries (4-pack),1,2.99,07/28/19 18:31,"433 Forest St, Portland, OR 97035" +233720,Apple Airpods Headphones,1,150,07/01/19 10:23,"874 Highland St, Seattle, WA 98101" +233721,USB-C Charging Cable,1,11.95,07/30/19 15:02,"823 Lincoln St, New York City, NY 10001" +233722,AAA Batteries (4-pack),2,2.99,07/23/19 20:51,"441 Lincoln St, San Francisco, CA 94016" +233723,Bose SoundSport Headphones,1,99.99,07/07/19 20:36,"169 11th St, Dallas, TX 75001" +233724,Bose SoundSport Headphones,1,99.99,07/11/19 09:28,"534 Forest St, Atlanta, GA 30301" +233725,27in 4K Gaming Monitor,1,389.99,07/16/19 16:50,"944 1st St, Dallas, TX 75001" +233726,Macbook Pro Laptop,1,1700,07/31/19 16:08,"165 9th St, Los Angeles, CA 90001" +233727,AA Batteries (4-pack),2,3.84,07/17/19 12:30,"461 Washington St, Seattle, WA 98101" +233728,Wired Headphones,1,11.99,07/26/19 12:45,"204 Church St, Dallas, TX 75001" +233729,27in FHD Monitor,1,149.99,07/23/19 07:11,"265 10th St, Portland, ME 04101" +233730,AA Batteries (4-pack),1,3.84,07/03/19 23:33,"714 Ridge St, Los Angeles, CA 90001" +233731,USB-C Charging Cable,1,11.95,07/09/19 08:23,"680 South St, Los Angeles, CA 90001" +233732,Apple Airpods Headphones,1,150,07/17/19 12:12,"520 Lake St, San Francisco, CA 94016" +233733,34in Ultrawide Monitor,1,379.99,07/16/19 06:49,"137 11th St, New York City, NY 10001" +233734,AA Batteries (4-pack),1,3.84,07/20/19 09:13,"45 Dogwood St, San Francisco, CA 94016" +233735,Apple Airpods Headphones,1,150,07/10/19 11:50,"432 Willow St, Portland, OR 97035" +233736,27in 4K Gaming Monitor,1,389.99,07/12/19 18:58,"844 Dogwood St, New York City, NY 10001" +233737,Google Phone,1,600,07/11/19 23:56,"366 Church St, Austin, TX 73301" +233738,20in Monitor,1,109.99,07/12/19 19:17,"947 Chestnut St, Los Angeles, CA 90001" +233739,Vareebadd Phone,1,400,07/14/19 15:37,"731 Dogwood St, Portland, OR 97035" +233740,Bose SoundSport Headphones,1,99.99,07/24/19 00:27,"699 Adams St, New York City, NY 10001" +233741,Lightning Charging Cable,1,14.95,07/07/19 14:04,"579 West St, San Francisco, CA 94016" +233742,Bose SoundSport Headphones,1,99.99,07/24/19 19:15,"328 Jackson St, Dallas, TX 75001" +233743,USB-C Charging Cable,1,11.95,07/18/19 10:52,"506 4th St, San Francisco, CA 94016" +233744,20in Monitor,1,109.99,07/12/19 08:35,"364 Chestnut St, Portland, OR 97035" +233745,USB-C Charging Cable,1,11.95,07/21/19 20:01,"415 Madison St, Dallas, TX 75001" +233746,Bose SoundSport Headphones,1,99.99,07/30/19 17:41,"62 9th St, Portland, ME 04101" +233747,Apple Airpods Headphones,1,150,07/03/19 10:44,"590 Walnut St, San Francisco, CA 94016" +233748,Macbook Pro Laptop,1,1700,07/03/19 09:52,"596 Walnut St, Los Angeles, CA 90001" +233749,AAA Batteries (4-pack),2,2.99,07/12/19 18:00,"995 Meadow St, Dallas, TX 75001" +233750,AA Batteries (4-pack),1,3.84,07/15/19 15:03,"241 Ridge St, San Francisco, CA 94016" +233751,Lightning Charging Cable,1,14.95,07/15/19 16:55,"79 Dogwood St, San Francisco, CA 94016" +233752,AAA Batteries (4-pack),1,2.99,07/26/19 21:53,"721 Church St, Dallas, TX 75001" +233753,Wired Headphones,1,11.99,07/30/19 10:03,"528 Dogwood St, San Francisco, CA 94016" +233754,27in 4K Gaming Monitor,1,389.99,07/11/19 20:04,"747 9th St, Austin, TX 73301" +233755,USB-C Charging Cable,1,11.95,07/25/19 18:12,"224 Hickory St, Los Angeles, CA 90001" +233756,USB-C Charging Cable,1,11.95,07/29/19 21:38,"602 Johnson St, Boston, MA 02215" +233757,Wired Headphones,1,11.99,07/22/19 13:52,"456 Cedar St, Los Angeles, CA 90001" +233758,Bose SoundSport Headphones,1,99.99,07/27/19 18:20,"232 12th St, Dallas, TX 75001" +233759,Lightning Charging Cable,1,14.95,07/01/19 10:15,"335 North St, Portland, OR 97035" +233760,Flatscreen TV,1,300,07/23/19 09:22,"600 4th St, Dallas, TX 75001" +233761,Bose SoundSport Headphones,1,99.99,07/27/19 11:46,"215 14th St, Boston, MA 02215" +233762,LG Dryer,1,600.0,07/01/19 23:02,"512 Lakeview St, Portland, OR 97035" +233763,Macbook Pro Laptop,1,1700,07/29/19 16:56,"893 Church St, Boston, MA 02215" +233764,34in Ultrawide Monitor,1,379.99,07/26/19 07:52,"846 7th St, San Francisco, CA 94016" +233765,AAA Batteries (4-pack),1,2.99,07/05/19 11:20,"675 Willow St, Los Angeles, CA 90001" +233766,AA Batteries (4-pack),1,3.84,07/15/19 21:03,"910 Maple St, New York City, NY 10001" +233767,Bose SoundSport Headphones,1,99.99,07/26/19 23:27,"1 5th St, Boston, MA 02215" +233768,Wired Headphones,1,11.99,07/27/19 15:38,"444 13th St, Los Angeles, CA 90001" +233769,20in Monitor,1,109.99,07/15/19 10:29,"784 2nd St, Portland, OR 97035" +233770,Google Phone,1,600,07/25/19 22:21,"467 Pine St, Los Angeles, CA 90001" +233771,AAA Batteries (4-pack),1,2.99,07/02/19 18:46,"481 Johnson St, Los Angeles, CA 90001" +233772,Bose SoundSport Headphones,1,99.99,07/25/19 19:34,"699 Johnson St, San Francisco, CA 94016" +233773,34in Ultrawide Monitor,1,379.99,07/21/19 13:33,"144 Ridge St, Atlanta, GA 30301" +233774,Wired Headphones,1,11.99,07/28/19 14:15,"603 7th St, New York City, NY 10001" +233775,20in Monitor,1,109.99,07/17/19 18:30,"670 Willow St, New York City, NY 10001" +233776,20in Monitor,1,109.99,07/01/19 08:02,"795 Chestnut St, New York City, NY 10001" +233777,Lightning Charging Cable,1,14.95,07/12/19 22:29,"827 4th St, Portland, ME 04101" +233778,AAA Batteries (4-pack),1,2.99,07/21/19 11:28,"950 Walnut St, Dallas, TX 75001" +233779,Wired Headphones,1,11.99,07/16/19 21:18,"338 Cedar St, New York City, NY 10001" +233780,Apple Airpods Headphones,1,150,07/26/19 01:44,"718 Hill St, Boston, MA 02215" +233781,Wired Headphones,1,11.99,07/12/19 16:01,"921 1st St, Los Angeles, CA 90001" +233782,USB-C Charging Cable,1,11.95,07/02/19 11:45,"130 1st St, San Francisco, CA 94016" +233783,AA Batteries (4-pack),1,3.84,07/11/19 13:04,"876 7th St, San Francisco, CA 94016" +233784,iPhone,1,700,07/26/19 12:13,"519 6th St, Seattle, WA 98101" +233785,20in Monitor,1,109.99,07/30/19 19:06,"88 14th St, New York City, NY 10001" +233786,iPhone,1,700,07/14/19 19:50,"45 Chestnut St, New York City, NY 10001" +233787,AA Batteries (4-pack),1,3.84,07/13/19 21:10,"983 South St, San Francisco, CA 94016" +233788,Apple Airpods Headphones,1,150,07/19/19 15:45,"595 Washington St, San Francisco, CA 94016" +233789,AA Batteries (4-pack),1,3.84,07/18/19 19:18,"492 Johnson St, Atlanta, GA 30301" +233790,Apple Airpods Headphones,1,150,07/14/19 17:06,"101 6th St, San Francisco, CA 94016" +233791,Lightning Charging Cable,1,14.95,07/29/19 23:00,"726 Main St, Los Angeles, CA 90001" +233792,AA Batteries (4-pack),1,3.84,07/12/19 13:47,"917 Jackson St, Dallas, TX 75001" +233793,34in Ultrawide Monitor,1,379.99,07/03/19 08:15,"592 Willow St, San Francisco, CA 94016" +233794,Macbook Pro Laptop,1,1700,07/20/19 08:35,"183 9th St, San Francisco, CA 94016" +233795,Lightning Charging Cable,1,14.95,07/22/19 16:38,"509 8th St, Seattle, WA 98101" +233796,AA Batteries (4-pack),1,3.84,07/07/19 19:09,"54 Washington St, Seattle, WA 98101" +233797,20in Monitor,1,109.99,07/16/19 22:29,"698 Park St, New York City, NY 10001" +233798,Lightning Charging Cable,1,14.95,07/15/19 10:42,"657 Cherry St, Dallas, TX 75001" +233799,AAA Batteries (4-pack),1,2.99,07/26/19 05:36,"730 5th St, Seattle, WA 98101" +233800,Apple Airpods Headphones,1,150,07/08/19 20:35,"445 Cedar St, New York City, NY 10001" +233801,AA Batteries (4-pack),1,3.84,07/04/19 15:41,"260 Johnson St, Portland, OR 97035" +233802,Wired Headphones,1,11.99,07/26/19 17:02,"10 Church St, Austin, TX 73301" +233803,Bose SoundSport Headphones,1,99.99,07/06/19 13:40,"525 West St, San Francisco, CA 94016" +233804,AA Batteries (4-pack),1,3.84,07/14/19 06:41,"903 Lake St, New York City, NY 10001" +233805,USB-C Charging Cable,1,11.95,07/09/19 20:17,"848 6th St, New York City, NY 10001" +233806,Lightning Charging Cable,1,14.95,07/27/19 22:19,"126 Hickory St, Seattle, WA 98101" +233807,AA Batteries (4-pack),4,3.84,07/08/19 00:05,"73 5th St, Seattle, WA 98101" +233808,AAA Batteries (4-pack),3,2.99,07/06/19 18:55,"817 Walnut St, Boston, MA 02215" +233809,20in Monitor,1,109.99,07/26/19 21:31,"552 10th St, San Francisco, CA 94016" +233810,Wired Headphones,1,11.99,07/30/19 17:43,"343 South St, Los Angeles, CA 90001" +233811,ThinkPad Laptop,1,999.99,07/17/19 22:15,"150 7th St, Seattle, WA 98101" +233812,iPhone,1,700,07/12/19 22:10,"579 Hill St, Seattle, WA 98101" +233813,Apple Airpods Headphones,1,150,07/05/19 19:10,"229 9th St, Dallas, TX 75001" +233814,Wired Headphones,1,11.99,07/19/19 12:18,"957 Lake St, Boston, MA 02215" +233815,34in Ultrawide Monitor,1,379.99,07/10/19 21:34,"830 South St, San Francisco, CA 94016" +233816,AAA Batteries (4-pack),3,2.99,07/02/19 03:08,"360 Lakeview St, San Francisco, CA 94016" +233817,AAA Batteries (4-pack),1,2.99,07/02/19 11:26,"615 Meadow St, San Francisco, CA 94016" +233818,USB-C Charging Cable,1,11.95,07/21/19 20:15,"930 Sunset St, San Francisco, CA 94016" +233819,AAA Batteries (4-pack),1,2.99,07/23/19 10:45,"151 Willow St, San Francisco, CA 94016" +233820,27in FHD Monitor,1,149.99,07/18/19 00:34,"353 10th St, Portland, OR 97035" +233821,Google Phone,1,600,07/18/19 20:31,"750 Meadow St, Atlanta, GA 30301" +233822,Flatscreen TV,1,300,07/05/19 23:41,"760 Wilson St, Atlanta, GA 30301" +233823,AAA Batteries (4-pack),1,2.99,07/22/19 20:08,"438 Lake St, Atlanta, GA 30301" +233824,Lightning Charging Cable,1,14.95,07/10/19 19:06,"782 1st St, New York City, NY 10001" +233825,ThinkPad Laptop,1,999.99,07/05/19 14:26,"348 Madison St, Seattle, WA 98101" +233826,AAA Batteries (4-pack),1,2.99,07/25/19 18:46,"981 Wilson St, Los Angeles, CA 90001" +233827,AA Batteries (4-pack),2,3.84,07/29/19 22:02,"360 2nd St, Dallas, TX 75001" +233828,Apple Airpods Headphones,1,150,07/15/19 14:17,"984 Elm St, San Francisco, CA 94016" +233829,AAA Batteries (4-pack),1,2.99,07/23/19 13:35,"16 1st St, New York City, NY 10001" +233830,AAA Batteries (4-pack),1,2.99,07/28/19 22:41,"811 14th St, Dallas, TX 75001" +233831,Lightning Charging Cable,1,14.95,07/13/19 21:59,"107 Pine St, Los Angeles, CA 90001" +233832,Wired Headphones,1,11.99,07/22/19 23:08,"135 Church St, Austin, TX 73301" +233833,USB-C Charging Cable,1,11.95,07/04/19 11:05,"187 5th St, San Francisco, CA 94016" +233834,Lightning Charging Cable,1,14.95,07/09/19 12:03,"750 Center St, San Francisco, CA 94016" +233835,27in 4K Gaming Monitor,1,389.99,07/17/19 09:32,"570 Lakeview St, Los Angeles, CA 90001" +233836,27in FHD Monitor,1,149.99,07/21/19 19:24,"244 Hickory St, Portland, OR 97035" +233837,USB-C Charging Cable,1,11.95,07/26/19 06:51,"74 Johnson St, San Francisco, CA 94016" +233838,AA Batteries (4-pack),1,3.84,07/22/19 20:07,"934 Forest St, San Francisco, CA 94016" +233839,27in FHD Monitor,1,149.99,07/14/19 17:53,"216 Hickory St, Seattle, WA 98101" +233840,27in FHD Monitor,1,149.99,07/20/19 19:38,"520 8th St, Seattle, WA 98101" +233841,AA Batteries (4-pack),1,3.84,07/10/19 12:47,"691 Forest St, San Francisco, CA 94016" +233841,Apple Airpods Headphones,1,150,07/10/19 12:47,"691 Forest St, San Francisco, CA 94016" +233842,USB-C Charging Cable,1,11.95,07/25/19 10:41,"561 North St, Portland, OR 97035" +233843,Wired Headphones,1,11.99,07/09/19 19:45,"968 6th St, Boston, MA 02215" +233844,Apple Airpods Headphones,1,150,07/01/19 13:15,"779 Cedar St, Seattle, WA 98101" +233844,Lightning Charging Cable,1,14.95,07/01/19 13:15,"779 Cedar St, Seattle, WA 98101" +233845,Bose SoundSport Headphones,1,99.99,07/20/19 11:46,"914 Ridge St, Austin, TX 73301" +233846,Wired Headphones,1,11.99,07/27/19 09:49,"62 Maple St, Boston, MA 02215" +233847,LG Dryer,1,600.0,07/15/19 04:51,"627 1st St, Los Angeles, CA 90001" +233848,Macbook Pro Laptop,1,1700,07/25/19 13:45,"473 Cherry St, New York City, NY 10001" +233849,AA Batteries (4-pack),1,3.84,07/02/19 17:00,"106 Johnson St, Los Angeles, CA 90001" +233849,USB-C Charging Cable,1,11.95,07/02/19 17:00,"106 Johnson St, Los Angeles, CA 90001" +233850,Vareebadd Phone,1,400,07/30/19 16:21,"903 North St, Portland, OR 97035" +233851,Apple Airpods Headphones,1,150,07/20/19 10:11,"354 River St, San Francisco, CA 94016" +233852,iPhone,1,700,07/17/19 15:53,"689 Walnut St, San Francisco, CA 94016" +233853,AAA Batteries (4-pack),1,2.99,07/14/19 12:39,"781 Dogwood St, Los Angeles, CA 90001" +233854,USB-C Charging Cable,1,11.95,07/18/19 16:48,"931 Main St, Dallas, TX 75001" +233855,AAA Batteries (4-pack),1,2.99,07/10/19 21:49,"91 Spruce St, San Francisco, CA 94016" +233856,27in FHD Monitor,1,149.99,07/19/19 11:09,"331 5th St, Los Angeles, CA 90001" +233857,Lightning Charging Cable,1,14.95,07/12/19 12:09,"321 Cherry St, Los Angeles, CA 90001" +233858,Lightning Charging Cable,1,14.95,07/15/19 11:49,"195 South St, Boston, MA 02215" +233859,iPhone,1,700,07/24/19 21:12,"910 Pine St, Austin, TX 73301" +233860,27in FHD Monitor,1,149.99,07/31/19 12:18,"796 Ridge St, Austin, TX 73301" +233861,Lightning Charging Cable,1,14.95,07/26/19 16:57,"238 Jefferson St, Atlanta, GA 30301" +233862,Lightning Charging Cable,1,14.95,07/13/19 14:17,"518 Lakeview St, Seattle, WA 98101" +233863,Macbook Pro Laptop,1,1700,07/17/19 19:55,"701 14th St, San Francisco, CA 94016" +233864,Wired Headphones,1,11.99,07/20/19 11:05,"236 13th St, Los Angeles, CA 90001" +233865,iPhone,1,700,07/06/19 14:20,"757 2nd St, Atlanta, GA 30301" +233866,ThinkPad Laptop,1,999.99,07/04/19 10:08,"221 Ridge St, New York City, NY 10001" +233867,Vareebadd Phone,1,400,07/04/19 19:17,"116 Walnut St, San Francisco, CA 94016" +233867,27in 4K Gaming Monitor,1,389.99,07/04/19 19:17,"116 Walnut St, San Francisco, CA 94016" +233868,iPhone,1,700,07/05/19 11:42,"223 Adams St, New York City, NY 10001" +233869,Lightning Charging Cable,1,14.95,07/20/19 11:38,"981 2nd St, New York City, NY 10001" +233870,Lightning Charging Cable,1,14.95,07/18/19 11:20,"289 9th St, Los Angeles, CA 90001" +233871,Wired Headphones,1,11.99,07/09/19 11:15,"493 Madison St, San Francisco, CA 94016" +233872,Lightning Charging Cable,2,14.95,07/15/19 12:44,"155 Hickory St, Los Angeles, CA 90001" +233873,AAA Batteries (4-pack),4,2.99,07/29/19 11:42,"960 River St, San Francisco, CA 94016" +233874,27in FHD Monitor,1,149.99,07/21/19 23:02,"18 Church St, San Francisco, CA 94016" +233875,USB-C Charging Cable,1,11.95,07/29/19 07:30,"492 Lincoln St, New York City, NY 10001" +233876,Wired Headphones,1,11.99,07/13/19 06:01,"2 1st St, San Francisco, CA 94016" +233877,USB-C Charging Cable,1,11.95,07/13/19 17:49,"498 Johnson St, Dallas, TX 75001" +233878,Bose SoundSport Headphones,1,99.99,07/10/19 09:41,"808 Wilson St, New York City, NY 10001" +233879,Wired Headphones,2,11.99,07/28/19 10:38,"39 Cedar St, Boston, MA 02215" +233880,34in Ultrawide Monitor,1,379.99,07/24/19 18:47,"548 Ridge St, Los Angeles, CA 90001" +233881,AAA Batteries (4-pack),2,2.99,07/09/19 13:48,"645 10th St, San Francisco, CA 94016" +233882,AAA Batteries (4-pack),1,2.99,07/05/19 13:28,"931 Wilson St, Los Angeles, CA 90001" +233883,Wired Headphones,1,11.99,07/17/19 16:34,"588 Jackson St, Los Angeles, CA 90001" +233884,Vareebadd Phone,1,400,07/24/19 10:41,"231 Hickory St, New York City, NY 10001" +233885,AAA Batteries (4-pack),1,2.99,07/01/19 13:21,"254 Church St, San Francisco, CA 94016" +233886,USB-C Charging Cable,1,11.95,07/20/19 00:38,"939 12th St, New York City, NY 10001" +233887,USB-C Charging Cable,1,11.95,07/08/19 12:09,"493 Main St, Dallas, TX 75001" +233888,34in Ultrawide Monitor,1,379.99,07/03/19 05:01,"811 Cedar St, Atlanta, GA 30301" +233889,AA Batteries (4-pack),1,3.84,07/18/19 19:28,"398 2nd St, Boston, MA 02215" +233890,iPhone,1,700,07/11/19 13:36,"736 14th St, Seattle, WA 98101" +233891,AAA Batteries (4-pack),2,2.99,07/16/19 20:55,"634 Hickory St, Atlanta, GA 30301" +233892,27in FHD Monitor,1,149.99,07/26/19 18:48,"560 Spruce St, Los Angeles, CA 90001" +233893,Flatscreen TV,1,300,07/25/19 22:55,"350 Lincoln St, Los Angeles, CA 90001" +233894,Apple Airpods Headphones,1,150,07/25/19 21:05,"981 6th St, Dallas, TX 75001" +233895,27in 4K Gaming Monitor,1,389.99,07/02/19 16:25,"458 Highland St, Atlanta, GA 30301" +233896,AA Batteries (4-pack),1,3.84,07/17/19 16:30,"13 12th St, Austin, TX 73301" +233897,34in Ultrawide Monitor,1,379.99,07/01/19 07:07,"762 Forest St, Austin, TX 73301" +233898,Macbook Pro Laptop,1,1700,07/12/19 20:12,"593 North St, San Francisco, CA 94016" +233899,Wired Headphones,2,11.99,07/13/19 13:30,"401 Forest St, Dallas, TX 75001" +233900,Wired Headphones,1,11.99,07/21/19 12:13,"858 Madison St, San Francisco, CA 94016" +233901,AAA Batteries (4-pack),2,2.99,07/10/19 16:21,"698 Cherry St, Dallas, TX 75001" +233902,Wired Headphones,1,11.99,07/30/19 17:38,"544 14th St, Portland, OR 97035" +233903,AAA Batteries (4-pack),1,2.99,07/04/19 09:02,"914 Spruce St, San Francisco, CA 94016" +233904,AA Batteries (4-pack),1,3.84,07/16/19 17:03,"375 Church St, San Francisco, CA 94016" +233905,AA Batteries (4-pack),1,3.84,07/09/19 11:14,"385 Chestnut St, San Francisco, CA 94016" +233906,Wired Headphones,1,11.99,07/20/19 14:38,"617 Hill St, Portland, OR 97035" +233907,Wired Headphones,1,11.99,07/22/19 21:10,"920 Hickory St, San Francisco, CA 94016" +233908,ThinkPad Laptop,1,999.99,07/01/19 22:40,"823 Pine St, San Francisco, CA 94016" +233909,AA Batteries (4-pack),1,3.84,07/20/19 14:31,"176 13th St, San Francisco, CA 94016" +233910,Lightning Charging Cable,1,14.95,07/23/19 05:49,"14 South St, Los Angeles, CA 90001" +233911,USB-C Charging Cable,1,11.95,07/26/19 20:16,"671 Center St, San Francisco, CA 94016" +233912,Bose SoundSport Headphones,1,99.99,07/05/19 17:26,"593 Walnut St, Seattle, WA 98101" +233913,Flatscreen TV,1,300,07/10/19 21:32,"45 North St, San Francisco, CA 94016" +233914,Lightning Charging Cable,1,14.95,07/05/19 23:31,"845 14th St, Portland, OR 97035" +233915,AAA Batteries (4-pack),2,2.99,07/06/19 22:55,"843 2nd St, San Francisco, CA 94016" +233916,20in Monitor,1,109.99,07/09/19 14:00,"181 Lincoln St, Dallas, TX 75001" +233917,USB-C Charging Cable,1,11.95,07/31/19 00:16,"448 5th St, New York City, NY 10001" +233918,USB-C Charging Cable,1,11.95,07/13/19 19:39,"454 Meadow St, Portland, OR 97035" +233918,Google Phone,1,600,07/13/19 19:39,"454 Meadow St, Portland, OR 97035" +233919,27in FHD Monitor,1,149.99,07/22/19 14:17,"184 12th St, San Francisco, CA 94016" +233920,Bose SoundSport Headphones,1,99.99,07/18/19 11:58,"857 Lakeview St, Boston, MA 02215" +233921,Bose SoundSport Headphones,1,99.99,07/18/19 06:08,"126 10th St, Portland, OR 97035" +233922,Apple Airpods Headphones,1,150,07/30/19 11:51,"446 Washington St, Boston, MA 02215" +233923,Lightning Charging Cable,1,14.95,07/01/19 22:08,"33 Sunset St, Atlanta, GA 30301" +233924,20in Monitor,1,109.99,07/12/19 09:40,"842 Willow St, Los Angeles, CA 90001" +233925,27in FHD Monitor,1,149.99,07/23/19 19:43,"92 Pine St, Portland, ME 04101" +233926,34in Ultrawide Monitor,1,379.99,07/31/19 17:08,"116 4th St, San Francisco, CA 94016" +233927,USB-C Charging Cable,1,11.95,07/04/19 17:10,"688 1st St, San Francisco, CA 94016" +233928,USB-C Charging Cable,1,11.95,07/15/19 18:19,"977 Cherry St, Los Angeles, CA 90001" +233929,Google Phone,1,600,07/26/19 13:00,"830 Chestnut St, Austin, TX 73301" +233930,Wired Headphones,1,11.99,07/06/19 22:12,"460 2nd St, Portland, ME 04101" +233931,Flatscreen TV,1,300,07/12/19 13:16,"686 Wilson St, Boston, MA 02215" +233932,27in FHD Monitor,1,149.99,07/07/19 18:52,"97 Meadow St, New York City, NY 10001" +233933,Apple Airpods Headphones,1,150,07/31/19 13:35,"427 8th St, San Francisco, CA 94016" +233934,Wired Headphones,1,11.99,07/10/19 11:34,"202 Madison St, New York City, NY 10001" +233935,Lightning Charging Cable,1,14.95,07/22/19 08:56,"746 Hill St, Los Angeles, CA 90001" +233936,Lightning Charging Cable,1,14.95,07/25/19 01:27,"229 Pine St, San Francisco, CA 94016" +233937,Bose SoundSport Headphones,1,99.99,07/24/19 14:02,"163 9th St, Los Angeles, CA 90001" +233938,Bose SoundSport Headphones,1,99.99,07/18/19 10:30,"756 Adams St, San Francisco, CA 94016" +233939,34in Ultrawide Monitor,1,379.99,07/29/19 17:13,"770 Washington St, San Francisco, CA 94016" +233940,AA Batteries (4-pack),1,3.84,07/05/19 10:49,"875 Elm St, San Francisco, CA 94016" +233941,Macbook Pro Laptop,1,1700,07/03/19 19:11,"833 12th St, Atlanta, GA 30301" +233942,34in Ultrawide Monitor,1,379.99,07/30/19 19:10,"576 Johnson St, San Francisco, CA 94016" +233943,Lightning Charging Cable,1,14.95,07/12/19 08:48,"471 13th St, New York City, NY 10001" +233944,Flatscreen TV,1,300,07/08/19 10:24,"491 Cedar St, San Francisco, CA 94016" +233945,34in Ultrawide Monitor,1,379.99,07/06/19 10:52,"889 Adams St, Seattle, WA 98101" +233946,AA Batteries (4-pack),2,3.84,07/13/19 08:59,"516 12th St, Los Angeles, CA 90001" +233947,Macbook Pro Laptop,1,1700,07/15/19 12:43,"341 West St, Austin, TX 73301" +233948,Lightning Charging Cable,1,14.95,07/11/19 12:54,"443 2nd St, Austin, TX 73301" +233949,iPhone,1,700,07/07/19 18:38,"498 Washington St, San Francisco, CA 94016" +233949,Lightning Charging Cable,1,14.95,07/07/19 18:38,"498 Washington St, San Francisco, CA 94016" +233950,Google Phone,1,600,07/02/19 15:50,"529 Highland St, Dallas, TX 75001" +233951,Lightning Charging Cable,1,14.95,07/28/19 11:03,"289 North St, New York City, NY 10001" +233952,AAA Batteries (4-pack),1,2.99,07/26/19 11:36,"55 Wilson St, San Francisco, CA 94016" +233953,Wired Headphones,1,11.99,07/13/19 07:37,"702 River St, San Francisco, CA 94016" +233954,Apple Airpods Headphones,1,150,07/14/19 18:07,"16 Forest St, San Francisco, CA 94016" +233955,20in Monitor,1,109.99,07/15/19 10:36,"463 5th St, San Francisco, CA 94016" +233956,Wired Headphones,1,11.99,07/12/19 10:53,"408 8th St, Austin, TX 73301" +233957,Bose SoundSport Headphones,1,99.99,07/22/19 14:37,"988 Forest St, Boston, MA 02215" +233958,27in FHD Monitor,1,149.99,07/20/19 21:48,"497 Dogwood St, Dallas, TX 75001" +233958,Wired Headphones,2,11.99,07/20/19 21:48,"497 Dogwood St, Dallas, TX 75001" +233959,27in 4K Gaming Monitor,1,389.99,07/17/19 10:59,"146 West St, Austin, TX 73301" +233960,USB-C Charging Cable,1,11.95,07/24/19 20:04,"550 Lincoln St, Dallas, TX 75001" +233961,AAA Batteries (4-pack),2,2.99,07/03/19 16:04,"723 Madison St, San Francisco, CA 94016" +233962,USB-C Charging Cable,2,11.95,07/27/19 12:39,"448 Willow St, Atlanta, GA 30301" +233963,Lightning Charging Cable,1,14.95,07/01/19 21:32,"57 6th St, New York City, NY 10001" +233964,34in Ultrawide Monitor,1,379.99,07/06/19 11:14,"834 11th St, New York City, NY 10001" +233965,Apple Airpods Headphones,1,150,07/20/19 20:02,"118 Lakeview St, San Francisco, CA 94016" +233966,USB-C Charging Cable,1,11.95,07/11/19 20:30,"308 1st St, San Francisco, CA 94016" +233967,USB-C Charging Cable,1,11.95,07/21/19 12:39,"626 Ridge St, Dallas, TX 75001" +233968,Lightning Charging Cable,1,14.95,07/31/19 23:28,"986 9th St, Portland, OR 97035" +233969,iPhone,1,700,07/11/19 14:23,"851 West St, San Francisco, CA 94016" +233970,Wired Headphones,1,11.99,07/19/19 16:17,"816 Elm St, Los Angeles, CA 90001" +233971,AAA Batteries (4-pack),2,2.99,07/15/19 17:55,"370 Ridge St, Boston, MA 02215" +233972,Lightning Charging Cable,1,14.95,07/19/19 07:26,"913 Lakeview St, Seattle, WA 98101" +233973,Wired Headphones,1,11.99,07/01/19 14:30,"574 Cedar St, Boston, MA 02215" +233974,27in FHD Monitor,1,149.99,07/22/19 18:03,"34 Dogwood St, Portland, OR 97035" +233975,AAA Batteries (4-pack),1,2.99,07/08/19 20:56,"957 Jefferson St, Atlanta, GA 30301" +233976,Bose SoundSport Headphones,1,99.99,07/29/19 19:58,"714 Willow St, Los Angeles, CA 90001" +233977,Apple Airpods Headphones,1,150,07/16/19 07:47,"235 12th St, Boston, MA 02215" +233978,27in FHD Monitor,1,149.99,07/29/19 11:28,"84 Johnson St, Seattle, WA 98101" +233979,USB-C Charging Cable,1,11.95,07/01/19 08:53,"944 Walnut St, Boston, MA 02215" +233980,Vareebadd Phone,1,400,07/29/19 21:18,"496 Maple St, Portland, OR 97035" +233981,Flatscreen TV,1,300,07/14/19 17:08,"541 Madison St, Los Angeles, CA 90001" +233982,Lightning Charging Cable,1,14.95,07/18/19 00:34,"828 8th St, San Francisco, CA 94016" +233983,AAA Batteries (4-pack),1,2.99,07/26/19 15:22,"385 Jefferson St, Atlanta, GA 30301" +233984,AAA Batteries (4-pack),1,2.99,07/21/19 19:01,"851 Church St, Seattle, WA 98101" +233985,Wired Headphones,1,11.99,07/31/19 12:00,"36 West St, Portland, OR 97035" +233986,ThinkPad Laptop,1,999.99,07/02/19 00:04,"619 5th St, Boston, MA 02215" +233987,Wired Headphones,1,11.99,07/18/19 12:12,"423 Ridge St, Dallas, TX 75001" +233988,34in Ultrawide Monitor,1,379.99,07/31/19 10:44,"820 6th St, Boston, MA 02215" +233989,iPhone,1,700,07/22/19 23:01,"435 5th St, Austin, TX 73301" +233989,Lightning Charging Cable,1,14.95,07/22/19 23:01,"435 5th St, Austin, TX 73301" +233990,Lightning Charging Cable,1,14.95,07/26/19 16:05,"419 2nd St, Seattle, WA 98101" +233991,Apple Airpods Headphones,1,150,07/18/19 08:32,"107 Walnut St, Los Angeles, CA 90001" +233991,AA Batteries (4-pack),2,3.84,07/18/19 08:32,"107 Walnut St, Los Angeles, CA 90001" +233992,AAA Batteries (4-pack),1,2.99,07/25/19 12:57,"460 South St, Boston, MA 02215" +233993,20in Monitor,1,109.99,07/06/19 18:26,"619 2nd St, Los Angeles, CA 90001" +233994,27in FHD Monitor,1,149.99,07/11/19 15:51,"786 Washington St, San Francisco, CA 94016" +233995,AA Batteries (4-pack),1,3.84,07/15/19 12:27,"762 Madison St, New York City, NY 10001" +233996,AAA Batteries (4-pack),1,2.99,07/16/19 21:27,"473 2nd St, San Francisco, CA 94016" +233997,Wired Headphones,1,11.99,07/04/19 12:27,"428 Spruce St, New York City, NY 10001" +233998,Apple Airpods Headphones,1,150,07/24/19 10:01,"244 1st St, San Francisco, CA 94016" +233999,Lightning Charging Cable,1,14.95,07/06/19 09:25,"76 5th St, Seattle, WA 98101" +234000,Google Phone,1,600,07/05/19 11:25,"788 Forest St, Atlanta, GA 30301" +234001,AAA Batteries (4-pack),1,2.99,07/23/19 16:28,"943 4th St, Atlanta, GA 30301" +234001,Lightning Charging Cable,1,14.95,07/23/19 16:28,"943 4th St, Atlanta, GA 30301" +234002,34in Ultrawide Monitor,1,379.99,07/21/19 00:47,"911 9th St, Dallas, TX 75001" +234003,AAA Batteries (4-pack),1,2.99,07/07/19 07:21,"436 Jefferson St, Seattle, WA 98101" +234004,Flatscreen TV,1,300,07/21/19 09:20,"931 Hill St, Atlanta, GA 30301" +234005,34in Ultrawide Monitor,1,379.99,07/03/19 16:37,"521 Willow St, Atlanta, GA 30301" +234006,Macbook Pro Laptop,1,1700,07/26/19 19:41,"206 Sunset St, Portland, OR 97035" +234007,AAA Batteries (4-pack),1,2.99,07/07/19 12:19,"873 Jackson St, Los Angeles, CA 90001" +234008,Lightning Charging Cable,1,14.95,07/31/19 12:11,"464 Forest St, Boston, MA 02215" +234009,34in Ultrawide Monitor,1,379.99,07/28/19 19:50,"730 1st St, Portland, OR 97035" +234010,Lightning Charging Cable,1,14.95,07/04/19 09:40,"563 Madison St, San Francisco, CA 94016" +234011,34in Ultrawide Monitor,1,379.99,07/21/19 19:51,"118 Main St, Los Angeles, CA 90001" +234012,USB-C Charging Cable,1,11.95,07/07/19 17:50,"329 Meadow St, Atlanta, GA 30301" +234013,AA Batteries (4-pack),1,3.84,07/15/19 19:15,"274 Wilson St, Atlanta, GA 30301" +234014,Apple Airpods Headphones,1,150,07/01/19 14:18,"629 Jefferson St, Boston, MA 02215" +234015,Lightning Charging Cable,1,14.95,07/06/19 18:12,"701 Willow St, Boston, MA 02215" +234016,Bose SoundSport Headphones,1,99.99,07/24/19 16:52,"5 Cedar St, San Francisco, CA 94016" +234017,Bose SoundSport Headphones,1,99.99,07/16/19 19:17,"47 10th St, Los Angeles, CA 90001" +234018,27in FHD Monitor,1,149.99,07/19/19 14:11,"838 Chestnut St, Boston, MA 02215" +234019,27in FHD Monitor,1,149.99,07/13/19 22:07,"562 Hickory St, San Francisco, CA 94016" +234020,AA Batteries (4-pack),3,3.84,07/23/19 18:47,"270 North St, San Francisco, CA 94016" +234021,USB-C Charging Cable,3,11.95,07/17/19 10:23,"871 South St, Austin, TX 73301" +234022,AAA Batteries (4-pack),2,2.99,07/10/19 17:02,"704 2nd St, San Francisco, CA 94016" +234023,AA Batteries (4-pack),1,3.84,07/23/19 12:24,"434 Wilson St, Seattle, WA 98101" +234024,USB-C Charging Cable,1,11.95,07/16/19 19:57,"58 11th St, San Francisco, CA 94016" +234025,27in FHD Monitor,1,149.99,07/11/19 14:39,"632 Lincoln St, Portland, ME 04101" +234026,AAA Batteries (4-pack),1,2.99,07/25/19 23:01,"907 Chestnut St, New York City, NY 10001" +234027,AAA Batteries (4-pack),2,2.99,07/28/19 11:19,"137 Dogwood St, Atlanta, GA 30301" +234028,Bose SoundSport Headphones,1,99.99,07/02/19 07:54,"258 5th St, Austin, TX 73301" +234029,Apple Airpods Headphones,1,150,07/15/19 10:45,"500 Main St, San Francisco, CA 94016" +234030,Lightning Charging Cable,1,14.95,07/21/19 22:26,"359 4th St, Portland, OR 97035" +234031,USB-C Charging Cable,1,11.95,07/04/19 17:09,"657 Lake St, New York City, NY 10001" +234032,USB-C Charging Cable,2,11.95,07/30/19 21:50,"286 9th St, San Francisco, CA 94016" +234033,27in FHD Monitor,1,149.99,07/25/19 13:16,"16 Madison St, San Francisco, CA 94016" +234034,Apple Airpods Headphones,1,150,07/14/19 21:10,"34 Hickory St, Los Angeles, CA 90001" +234035,AA Batteries (4-pack),1,3.84,07/10/19 21:44,"82 Willow St, Los Angeles, CA 90001" +234036,Lightning Charging Cable,1,14.95,07/18/19 07:48,"524 River St, New York City, NY 10001" +234037,AA Batteries (4-pack),3,3.84,07/24/19 18:12,"318 12th St, Portland, OR 97035" +234038,AAA Batteries (4-pack),1,2.99,07/21/19 12:17,"52 13th St, San Francisco, CA 94016" +234039,AA Batteries (4-pack),1,3.84,07/02/19 03:12,"135 Willow St, Dallas, TX 75001" +234040,Apple Airpods Headphones,1,150,07/18/19 18:39,"92 Pine St, New York City, NY 10001" +234041,27in 4K Gaming Monitor,1,389.99,07/05/19 13:57,"469 Center St, Dallas, TX 75001" +234042,AA Batteries (4-pack),1,3.84,07/18/19 20:31,"607 Chestnut St, San Francisco, CA 94016" +234043,Apple Airpods Headphones,1,150,07/28/19 20:57,"442 10th St, New York City, NY 10001" +234044,Google Phone,1,600,07/21/19 13:25,"745 Cedar St, San Francisco, CA 94016" +234045,Lightning Charging Cable,1,14.95,07/19/19 11:19,"933 Pine St, Atlanta, GA 30301" +234046,AA Batteries (4-pack),2,3.84,07/29/19 10:45,"777 Adams St, New York City, NY 10001" +234047,AAA Batteries (4-pack),2,2.99,07/22/19 07:35,"488 Hickory St, Boston, MA 02215" +234048,ThinkPad Laptop,1,999.99,07/17/19 22:53,"214 13th St, Los Angeles, CA 90001" +234049,Apple Airpods Headphones,1,150,07/25/19 18:59,"865 Lakeview St, San Francisco, CA 94016" +234050,Apple Airpods Headphones,1,150,07/04/19 11:47,"405 Meadow St, Seattle, WA 98101" +234051,Wired Headphones,1,11.99,07/06/19 10:42,"912 Spruce St, Boston, MA 02215" +234052,AAA Batteries (4-pack),1,2.99,07/31/19 15:36,"623 Hill St, Atlanta, GA 30301" +234053,USB-C Charging Cable,1,11.95,07/08/19 11:51,"626 Hickory St, Boston, MA 02215" +234054,USB-C Charging Cable,1,11.95,07/26/19 16:21,"147 River St, Austin, TX 73301" +234055,Macbook Pro Laptop,1,1700,07/17/19 09:19,"605 Forest St, Los Angeles, CA 90001" +234056,20in Monitor,1,109.99,07/31/19 14:20,"108 South St, Portland, OR 97035" +234057,AA Batteries (4-pack),2,3.84,07/05/19 19:04,"291 Lakeview St, New York City, NY 10001" +234058,AA Batteries (4-pack),1,3.84,07/30/19 22:06,"854 1st St, San Francisco, CA 94016" +234059,Wired Headphones,1,11.99,07/06/19 18:32,"782 Church St, Los Angeles, CA 90001" +234060,Bose SoundSport Headphones,1,99.99,07/03/19 00:04,"925 6th St, San Francisco, CA 94016" +234061,Apple Airpods Headphones,1,150,07/02/19 12:48,"285 Main St, San Francisco, CA 94016" +234062,Lightning Charging Cable,1,14.95,07/23/19 19:24,"825 Lincoln St, Atlanta, GA 30301" +234063,Wired Headphones,1,11.99,07/25/19 22:05,"593 Forest St, San Francisco, CA 94016" +234064,AA Batteries (4-pack),1,3.84,07/24/19 21:20,"207 10th St, San Francisco, CA 94016" +234065,Wired Headphones,1,11.99,07/03/19 10:36,"76 Ridge St, Atlanta, GA 30301" +234066,Wired Headphones,1,11.99,07/07/19 08:30,"46 10th St, New York City, NY 10001" +234067,USB-C Charging Cable,1,11.95,07/13/19 21:42,"504 12th St, San Francisco, CA 94016" +234068,27in 4K Gaming Monitor,1,389.99,07/05/19 20:27,"761 Highland St, San Francisco, CA 94016" +234069,ThinkPad Laptop,1,999.99,07/10/19 22:20,"298 4th St, New York City, NY 10001" +234070,Flatscreen TV,1,300,07/08/19 12:07,"240 Lincoln St, Seattle, WA 98101" +234071,AAA Batteries (4-pack),1,2.99,07/02/19 18:05,"973 Hill St, New York City, NY 10001" +234072,Wired Headphones,1,11.99,07/21/19 17:28,"343 2nd St, New York City, NY 10001" +234073,Macbook Pro Laptop,1,1700,07/19/19 21:25,"433 Sunset St, San Francisco, CA 94016" +234074,AAA Batteries (4-pack),1,2.99,07/15/19 14:10,"957 Sunset St, Seattle, WA 98101" +234075,27in 4K Gaming Monitor,1,389.99,07/03/19 19:37,"540 11th St, Los Angeles, CA 90001" +234076,Bose SoundSport Headphones,1,99.99,07/26/19 10:49,"150 Main St, New York City, NY 10001" +234077,Flatscreen TV,1,300,07/16/19 12:22,"861 6th St, Seattle, WA 98101" +234078,27in 4K Gaming Monitor,1,389.99,07/05/19 17:09,"802 Willow St, San Francisco, CA 94016" +234079,Apple Airpods Headphones,1,150,07/16/19 15:58,"834 Hickory St, Dallas, TX 75001" +234080,27in FHD Monitor,1,149.99,07/20/19 16:31,"825 13th St, Boston, MA 02215" +234081,ThinkPad Laptop,1,999.99,07/15/19 21:45,"39 11th St, San Francisco, CA 94016" +234082,Apple Airpods Headphones,1,150,07/25/19 19:40,"451 Center St, San Francisco, CA 94016" +234083,Bose SoundSport Headphones,1,99.99,07/10/19 11:48,"495 Highland St, Boston, MA 02215" +234084,Lightning Charging Cable,1,14.95,07/29/19 12:40,"27 9th St, New York City, NY 10001" +234085,AAA Batteries (4-pack),1,2.99,07/07/19 16:15,"368 River St, New York City, NY 10001" +234086,AA Batteries (4-pack),1,3.84,07/02/19 14:28,"834 7th St, San Francisco, CA 94016" +234087,Google Phone,1,600,07/08/19 11:07,"748 Madison St, San Francisco, CA 94016" +234088,AAA Batteries (4-pack),3,2.99,07/05/19 02:32,"216 Park St, Boston, MA 02215" +234089,Apple Airpods Headphones,1,150,07/03/19 06:02,"44 Wilson St, San Francisco, CA 94016" +234090,iPhone,1,700,07/10/19 08:58,"802 Washington St, New York City, NY 10001" +234091,AAA Batteries (4-pack),1,2.99,07/21/19 22:32,"396 South St, Los Angeles, CA 90001" +234092,AAA Batteries (4-pack),1,2.99,07/03/19 08:35,"370 Lake St, Seattle, WA 98101" +234093,Bose SoundSport Headphones,1,99.99,07/12/19 12:27,"641 Pine St, Seattle, WA 98101" +234094,27in FHD Monitor,1,149.99,07/31/19 06:31,"89 Jackson St, Dallas, TX 75001" +234094,USB-C Charging Cable,1,11.95,07/31/19 06:31,"89 Jackson St, Dallas, TX 75001" +234095,USB-C Charging Cable,1,11.95,07/08/19 14:28,"654 1st St, Atlanta, GA 30301" +234095,Wired Headphones,1,11.99,07/08/19 14:28,"654 1st St, Atlanta, GA 30301" +234096,Lightning Charging Cable,2,14.95,07/31/19 16:22,"606 13th St, Seattle, WA 98101" +234097,Bose SoundSport Headphones,1,99.99,07/09/19 14:36,"891 Pine St, New York City, NY 10001" +234098,AAA Batteries (4-pack),3,2.99,07/19/19 08:15,"151 Main St, Los Angeles, CA 90001" +234099,Wired Headphones,1,11.99,07/28/19 13:09,"104 Church St, Atlanta, GA 30301" +234100,Lightning Charging Cable,1,14.95,07/03/19 23:25,"135 River St, San Francisco, CA 94016" +234101,AA Batteries (4-pack),1,3.84,07/25/19 15:08,"505 Dogwood St, Los Angeles, CA 90001" +234102,Apple Airpods Headphones,1,150,07/15/19 10:22,"69 Center St, Seattle, WA 98101" +234103,Google Phone,1,600,07/17/19 13:38,"88 9th St, New York City, NY 10001" +234104,Wired Headphones,2,11.99,07/27/19 12:10,"910 Center St, Dallas, TX 75001" +234105,iPhone,1,700,07/13/19 05:17,"457 1st St, Portland, OR 97035" +234106,AA Batteries (4-pack),1,3.84,07/18/19 09:04,"94 Dogwood St, Dallas, TX 75001" +234107,Google Phone,1,600,07/25/19 22:32,"146 Spruce St, San Francisco, CA 94016" +234108,27in 4K Gaming Monitor,1,389.99,07/09/19 20:53,"594 Cedar St, San Francisco, CA 94016" +234109,Wired Headphones,1,11.99,07/03/19 15:33,"590 9th St, San Francisco, CA 94016" +234110,AAA Batteries (4-pack),1,2.99,07/31/19 15:08,"957 Hickory St, New York City, NY 10001" +234111,Wired Headphones,1,11.99,07/19/19 18:33,"991 Forest St, Atlanta, GA 30301" +234112,USB-C Charging Cable,1,11.95,07/25/19 00:08,"640 Madison St, San Francisco, CA 94016" +234113,Apple Airpods Headphones,1,150,07/14/19 21:05,"746 Spruce St, Dallas, TX 75001" +234114,Bose SoundSport Headphones,1,99.99,07/02/19 15:13,"96 14th St, Los Angeles, CA 90001" +234115,Wired Headphones,1,11.99,07/19/19 10:39,"101 Washington St, New York City, NY 10001" +234116,AA Batteries (4-pack),1,3.84,07/14/19 07:48,"129 Ridge St, San Francisco, CA 94016" +234117,USB-C Charging Cable,1,11.95,07/29/19 12:46,"183 Cherry St, Boston, MA 02215" +234118,27in FHD Monitor,1,149.99,07/15/19 21:27,"578 Park St, San Francisco, CA 94016" +234119,Lightning Charging Cable,1,14.95,07/12/19 17:33,"522 Walnut St, Atlanta, GA 30301" +234120,Google Phone,1,600,07/05/19 14:26,"97 Lake St, San Francisco, CA 94016" +234121,AA Batteries (4-pack),2,3.84,07/01/19 21:25,"141 Cedar St, San Francisco, CA 94016" +234122,AAA Batteries (4-pack),2,2.99,07/28/19 13:23,"766 Spruce St, New York City, NY 10001" +234123,Macbook Pro Laptop,1,1700,07/30/19 11:19,"294 1st St, Seattle, WA 98101" +234124,Wired Headphones,1,11.99,07/15/19 18:04,"993 Highland St, Dallas, TX 75001" +234125,AA Batteries (4-pack),1,3.84,07/18/19 15:20,"916 Park St, Los Angeles, CA 90001" +234126,Lightning Charging Cable,2,14.95,07/04/19 07:53,"215 Lakeview St, San Francisco, CA 94016" +234127,LG Washing Machine,1,600.0,07/24/19 12:41,"734 4th St, Los Angeles, CA 90001" +234128,27in 4K Gaming Monitor,1,389.99,07/03/19 02:03,"398 Hill St, San Francisco, CA 94016" +234129,Macbook Pro Laptop,1,1700,07/30/19 09:11,"525 West St, San Francisco, CA 94016" +234130,AA Batteries (4-pack),1,3.84,07/01/19 07:30,"110 Park St, Los Angeles, CA 90001" +234131,USB-C Charging Cable,1,11.95,07/14/19 11:03,"781 Hickory St, Atlanta, GA 30301" +234132,Bose SoundSport Headphones,1,99.99,07/18/19 01:04,"102 Washington St, New York City, NY 10001" +234132,AA Batteries (4-pack),1,3.84,07/18/19 01:04,"102 Washington St, New York City, NY 10001" +234133,27in 4K Gaming Monitor,1,389.99,07/10/19 10:04,"249 Ridge St, Portland, ME 04101" +234134,AAA Batteries (4-pack),1,2.99,07/01/19 09:41,"651 7th St, Seattle, WA 98101" +234135,Lightning Charging Cable,1,14.95,07/06/19 09:47,"136 South St, Atlanta, GA 30301" +234136,Lightning Charging Cable,1,14.95,07/18/19 18:31,"705 Pine St, Los Angeles, CA 90001" +234137,Lightning Charging Cable,1,14.95,07/14/19 21:43,"502 4th St, Boston, MA 02215" +234138,Apple Airpods Headphones,1,150,07/25/19 12:06,"887 Sunset St, Atlanta, GA 30301" +234139,Wired Headphones,1,11.99,07/15/19 05:26,"335 Lincoln St, Los Angeles, CA 90001" +234140,USB-C Charging Cable,1,11.95,07/14/19 11:27,"352 8th St, New York City, NY 10001" +234141,Bose SoundSport Headphones,1,99.99,07/18/19 22:13,"6 Main St, Los Angeles, CA 90001" +234142,USB-C Charging Cable,1,11.95,07/14/19 09:31,"685 10th St, Los Angeles, CA 90001" +234143,iPhone,1,700,07/28/19 11:25,"795 4th St, Austin, TX 73301" +234144,AA Batteries (4-pack),1,3.84,07/24/19 21:12,"943 Walnut St, Atlanta, GA 30301" +234145,AAA Batteries (4-pack),3,2.99,07/31/19 20:51,"588 Adams St, New York City, NY 10001" +234146,27in 4K Gaming Monitor,1,389.99,07/06/19 19:06,"467 12th St, San Francisco, CA 94016" +234147,Google Phone,1,600,07/19/19 08:52,"329 9th St, San Francisco, CA 94016" +234148,USB-C Charging Cable,1,11.95,07/18/19 20:14,"437 Sunset St, San Francisco, CA 94016" +234149,Lightning Charging Cable,1,14.95,07/17/19 20:21,"127 7th St, San Francisco, CA 94016" +234150,27in FHD Monitor,1,149.99,07/29/19 17:25,"761 Center St, Los Angeles, CA 90001" +234151,USB-C Charging Cable,1,11.95,07/14/19 21:44,"900 Meadow St, Austin, TX 73301" +234152,AAA Batteries (4-pack),3,2.99,07/08/19 16:48,"207 Pine St, Los Angeles, CA 90001" +234153,USB-C Charging Cable,1,11.95,07/17/19 17:07,"766 Chestnut St, San Francisco, CA 94016" +234154,Apple Airpods Headphones,1,150,07/18/19 19:17,"877 Highland St, Portland, OR 97035" +234155,AA Batteries (4-pack),3,3.84,07/03/19 04:29,"459 Sunset St, San Francisco, CA 94016" +234156,27in FHD Monitor,1,149.99,07/26/19 17:02,"80 13th St, Dallas, TX 75001" +234157,Bose SoundSport Headphones,1,99.99,07/14/19 20:14,"496 Walnut St, Dallas, TX 75001" +234158,Macbook Pro Laptop,1,1700,07/22/19 18:11,"8 Lake St, Seattle, WA 98101" +234159,AAA Batteries (4-pack),1,2.99,07/16/19 15:52,"227 Spruce St, Seattle, WA 98101" +234160,Bose SoundSport Headphones,1,99.99,07/29/19 10:59,"341 13th St, San Francisco, CA 94016" +234161,Apple Airpods Headphones,1,150,07/02/19 17:02,"838 13th St, San Francisco, CA 94016" +234162,USB-C Charging Cable,1,11.95,07/18/19 08:43,"873 South St, San Francisco, CA 94016" +234163,20in Monitor,1,109.99,07/30/19 12:21,"858 Maple St, Los Angeles, CA 90001" +234164,AAA Batteries (4-pack),1,2.99,07/20/19 17:07,"880 Jefferson St, New York City, NY 10001" +234165,Apple Airpods Headphones,1,150,07/29/19 12:45,"363 Jackson St, Boston, MA 02215" +234166,Lightning Charging Cable,1,14.95,07/25/19 20:50,"740 Hickory St, Boston, MA 02215" +234167,Flatscreen TV,1,300,07/07/19 16:18,"203 Adams St, Los Angeles, CA 90001" +234167,Bose SoundSport Headphones,1,99.99,07/07/19 16:18,"203 Adams St, Los Angeles, CA 90001" +234168,AA Batteries (4-pack),1,3.84,07/21/19 12:54,"795 Forest St, Seattle, WA 98101" +234169,iPhone,1,700,07/28/19 19:44,"258 Hickory St, Los Angeles, CA 90001" +234170,AAA Batteries (4-pack),2,2.99,07/20/19 17:36,"3 8th St, Boston, MA 02215" +234171,AA Batteries (4-pack),1,3.84,07/18/19 16:23,"630 11th St, Atlanta, GA 30301" +234172,Bose SoundSport Headphones,1,99.99,07/27/19 10:48,"367 Elm St, San Francisco, CA 94016" +234173,AA Batteries (4-pack),1,3.84,07/25/19 07:52,"164 Dogwood St, San Francisco, CA 94016" +234174,Lightning Charging Cable,1,14.95,07/05/19 12:44,"72 9th St, San Francisco, CA 94016" +234175,Flatscreen TV,1,300,07/02/19 21:48,"137 Cherry St, Dallas, TX 75001" +234176,Flatscreen TV,1,300,07/28/19 14:50,"452 Wilson St, San Francisco, CA 94016" +234177,27in FHD Monitor,1,149.99,07/07/19 14:15,"819 Lake St, Portland, OR 97035" +234178,Lightning Charging Cable,1,14.95,07/02/19 09:14,"369 Spruce St, Portland, OR 97035" +234179,Bose SoundSport Headphones,1,99.99,07/28/19 10:33,"330 2nd St, Los Angeles, CA 90001" +234180,Lightning Charging Cable,1,14.95,07/21/19 20:18,"566 Meadow St, New York City, NY 10001" +234181,Lightning Charging Cable,2,14.95,07/20/19 18:22,"577 Jackson St, San Francisco, CA 94016" +234182,iPhone,1,700,07/29/19 17:13,"168 Meadow St, Boston, MA 02215" +234183,Wired Headphones,1,11.99,07/31/19 12:05,"476 Church St, Atlanta, GA 30301" +234184,AA Batteries (4-pack),1,3.84,07/14/19 18:51,"22 Forest St, Austin, TX 73301" +234185,Lightning Charging Cable,1,14.95,07/06/19 11:18,"821 Dogwood St, Los Angeles, CA 90001" +234186,ThinkPad Laptop,1,999.99,07/23/19 01:28,"742 13th St, San Francisco, CA 94016" +234187,LG Washing Machine,1,600.0,07/02/19 08:59,"851 Lakeview St, San Francisco, CA 94016" +234188,iPhone,1,700,07/25/19 16:10,"425 Cedar St, Los Angeles, CA 90001" +234189,Lightning Charging Cable,1,14.95,07/30/19 10:42,"805 4th St, Seattle, WA 98101" +234190,27in FHD Monitor,1,149.99,07/18/19 07:52,"272 Jefferson St, San Francisco, CA 94016" +234191,AA Batteries (4-pack),1,3.84,07/03/19 17:38,"391 Willow St, San Francisco, CA 94016" +234192,Wired Headphones,1,11.99,07/08/19 18:10,"130 12th St, San Francisco, CA 94016" +234193,AAA Batteries (4-pack),1,2.99,07/10/19 18:27,"466 Park St, San Francisco, CA 94016" +234194,Bose SoundSport Headphones,1,99.99,07/29/19 01:34,"367 Center St, San Francisco, CA 94016" +234195,AA Batteries (4-pack),1,3.84,07/21/19 07:17,"241 Adams St, San Francisco, CA 94016" +234196,Bose SoundSport Headphones,1,99.99,07/04/19 14:26,"885 Hickory St, New York City, NY 10001" +234197,27in 4K Gaming Monitor,1,389.99,07/29/19 15:56,"842 West St, Seattle, WA 98101" +234198,Lightning Charging Cable,1,14.95,07/06/19 11:29,"52 Cherry St, Portland, OR 97035" +234199,Apple Airpods Headphones,1,150,07/19/19 08:28,"561 Johnson St, New York City, NY 10001" +234200,34in Ultrawide Monitor,1,379.99,07/16/19 10:19,"120 10th St, Atlanta, GA 30301" +234201,Apple Airpods Headphones,1,150,07/07/19 13:07,"346 9th St, San Francisco, CA 94016" +234202,20in Monitor,1,109.99,07/25/19 12:13,"727 Madison St, New York City, NY 10001" +234203,AA Batteries (4-pack),1,3.84,07/12/19 14:10,"319 River St, Portland, OR 97035" +234204,Google Phone,1,600,07/25/19 14:05,"93 Madison St, New York City, NY 10001" +234205,Flatscreen TV,1,300,07/15/19 01:47,"152 Lake St, Los Angeles, CA 90001" +234206,27in 4K Gaming Monitor,1,389.99,07/26/19 19:36,"103 Sunset St, Los Angeles, CA 90001" +234207,Apple Airpods Headphones,1,150,07/09/19 14:15,"194 Dogwood St, Dallas, TX 75001" +234208,27in 4K Gaming Monitor,1,389.99,07/18/19 11:59,"90 Lake St, San Francisco, CA 94016" +234209,Macbook Pro Laptop,1,1700,07/15/19 10:42,"538 Meadow St, Austin, TX 73301" +234210,USB-C Charging Cable,1,11.95,07/12/19 18:48,"278 Ridge St, Los Angeles, CA 90001" +234211,Apple Airpods Headphones,1,150,07/10/19 13:51,"466 Hickory St, San Francisco, CA 94016" +234212,Google Phone,1,600,07/19/19 13:58,"766 Johnson St, Portland, OR 97035" +234213,AA Batteries (4-pack),1,3.84,07/21/19 21:51,"253 Jefferson St, Dallas, TX 75001" +234214,Google Phone,1,600,07/03/19 12:54,"621 5th St, Dallas, TX 75001" +234215,iPhone,1,700,07/13/19 14:36,"711 Lake St, San Francisco, CA 94016" +234216,AA Batteries (4-pack),1,3.84,07/13/19 14:36,"151 Willow St, Boston, MA 02215" +234217,USB-C Charging Cable,1,11.95,07/31/19 19:29,"304 Willow St, San Francisco, CA 94016" +234218,Wired Headphones,1,11.99,07/25/19 18:15,"953 Cherry St, Dallas, TX 75001" +234219,iPhone,1,700,07/23/19 19:04,"379 Lakeview St, Boston, MA 02215" +234220,AA Batteries (4-pack),1,3.84,07/28/19 19:10,"419 Willow St, Los Angeles, CA 90001" +234221,Apple Airpods Headphones,1,150,07/15/19 00:37,"203 14th St, New York City, NY 10001" +234222,AA Batteries (4-pack),1,3.84,07/07/19 09:03,"105 10th St, Los Angeles, CA 90001" +234223,AA Batteries (4-pack),1,3.84,07/16/19 18:13,"599 Washington St, Seattle, WA 98101" +234224,AA Batteries (4-pack),1,3.84,07/28/19 19:50,"237 Jefferson St, San Francisco, CA 94016" +234225,Lightning Charging Cable,1,14.95,07/04/19 17:57,"622 Dogwood St, Dallas, TX 75001" +234226,ThinkPad Laptop,1,999.99,07/18/19 16:49,"436 2nd St, Boston, MA 02215" +234227,Google Phone,1,600,07/11/19 11:59,"765 Forest St, Dallas, TX 75001" +234228,AAA Batteries (4-pack),1,2.99,07/16/19 05:51,"896 Ridge St, San Francisco, CA 94016" +234229,AAA Batteries (4-pack),2,2.99,07/28/19 20:56,"858 Center St, San Francisco, CA 94016" +234230,Wired Headphones,1,11.99,07/14/19 11:49,"555 Hill St, Seattle, WA 98101" +234231,20in Monitor,1,109.99,07/13/19 16:34,"137 13th St, New York City, NY 10001" +234232,Lightning Charging Cable,1,14.95,07/08/19 09:30,"273 Chestnut St, Portland, OR 97035" +234233,AAA Batteries (4-pack),1,2.99,07/26/19 17:04,"346 Meadow St, Los Angeles, CA 90001" +234234,Lightning Charging Cable,1,14.95,07/29/19 11:50,"868 Adams St, Los Angeles, CA 90001" +234235,AAA Batteries (4-pack),2,2.99,07/18/19 16:17,"120 South St, Boston, MA 02215" +234236,Macbook Pro Laptop,1,1700,07/25/19 18:34,"323 Church St, Boston, MA 02215" +234237,USB-C Charging Cable,1,11.95,07/15/19 18:43,"476 Hickory St, Los Angeles, CA 90001" +234238,USB-C Charging Cable,1,11.95,07/28/19 11:09,"479 Chestnut St, Boston, MA 02215" +234239,Wired Headphones,1,11.99,07/28/19 06:38,"874 10th St, New York City, NY 10001" +234240,iPhone,1,700,07/17/19 21:26,"57 West St, San Francisco, CA 94016" +234241,Bose SoundSport Headphones,1,99.99,07/18/19 09:48,"934 Jefferson St, San Francisco, CA 94016" +234242,AAA Batteries (4-pack),1,2.99,07/17/19 06:28,"428 Wilson St, Atlanta, GA 30301" +234243,AAA Batteries (4-pack),2,2.99,07/10/19 20:13,"880 Center St, San Francisco, CA 94016" +234244,Wired Headphones,1,11.99,07/31/19 17:22,"522 11th St, Atlanta, GA 30301" +234245,USB-C Charging Cable,2,11.95,07/20/19 00:44,"308 Chestnut St, Portland, OR 97035" +234246,27in FHD Monitor,1,149.99,07/04/19 16:08,"994 Lakeview St, Boston, MA 02215" +234247,AAA Batteries (4-pack),2,2.99,07/15/19 17:13,"960 Cherry St, Seattle, WA 98101" +234248,USB-C Charging Cable,1,11.95,07/05/19 11:32,"344 Cherry St, Atlanta, GA 30301" +234249,Google Phone,1,600,07/04/19 21:52,"959 South St, San Francisco, CA 94016" +234250,AAA Batteries (4-pack),1,2.99,07/26/19 12:59,"868 Main St, New York City, NY 10001" +234251,AA Batteries (4-pack),1,3.84,07/12/19 15:05,"379 Wilson St, Portland, OR 97035" +234252,Apple Airpods Headphones,1,150,07/01/19 18:29,"895 Dogwood St, San Francisco, CA 94016" +234253,27in 4K Gaming Monitor,1,389.99,07/28/19 08:51,"82 4th St, San Francisco, CA 94016" +234254,Macbook Pro Laptop,1,1700,07/26/19 13:26,"921 Park St, Seattle, WA 98101" +234255,USB-C Charging Cable,1,11.95,07/17/19 07:38,"326 Park St, Portland, OR 97035" +234256,USB-C Charging Cable,1,11.95,07/31/19 23:10,"253 Park St, San Francisco, CA 94016" +234257,Bose SoundSport Headphones,1,99.99,07/23/19 20:15,"303 Sunset St, Boston, MA 02215" +234258,Bose SoundSport Headphones,1,99.99,07/03/19 16:36,"518 Adams St, Dallas, TX 75001" +234259,AAA Batteries (4-pack),2,2.99,07/27/19 12:12,"610 13th St, Atlanta, GA 30301" +234260,USB-C Charging Cable,1,11.95,07/13/19 01:09,"185 10th St, Los Angeles, CA 90001" +234261,Apple Airpods Headphones,1,150,07/16/19 12:40,"522 Cedar St, Los Angeles, CA 90001" +234262,USB-C Charging Cable,1,11.95,07/20/19 17:36,"174 Lake St, San Francisco, CA 94016" +234263,27in 4K Gaming Monitor,1,389.99,07/01/19 15:32,"519 Walnut St, Los Angeles, CA 90001" +234264,AA Batteries (4-pack),2,3.84,07/27/19 09:44,"46 South St, Seattle, WA 98101" +234265,Flatscreen TV,1,300,07/26/19 22:36,"748 Hickory St, San Francisco, CA 94016" +234266,USB-C Charging Cable,2,11.95,07/21/19 12:31,"488 Ridge St, Atlanta, GA 30301" +234267,iPhone,1,700,07/23/19 19:37,"748 Main St, Boston, MA 02215" +234268,Flatscreen TV,1,300,07/27/19 22:02,"282 Park St, San Francisco, CA 94016" +234269,USB-C Charging Cable,1,11.95,07/26/19 18:50,"775 Lincoln St, Seattle, WA 98101" +234270,AA Batteries (4-pack),1,3.84,07/27/19 14:28,"542 Forest St, Los Angeles, CA 90001" +234271,Apple Airpods Headphones,1,150,07/30/19 18:30,"699 Hill St, San Francisco, CA 94016" +234272,AAA Batteries (4-pack),2,2.99,07/19/19 10:03,"804 West St, Atlanta, GA 30301" +234273,34in Ultrawide Monitor,1,379.99,07/31/19 10:43,"851 Chestnut St, Boston, MA 02215" +234274,Lightning Charging Cable,2,14.95,07/18/19 22:10,"114 Lakeview St, Los Angeles, CA 90001" +234275,Flatscreen TV,1,300,07/16/19 17:22,"103 Church St, Portland, OR 97035" +234276,USB-C Charging Cable,1,11.95,07/02/19 18:28,"789 Lincoln St, Dallas, TX 75001" +234277,Apple Airpods Headphones,1,150,07/14/19 22:51,"731 Lincoln St, Los Angeles, CA 90001" +234278,USB-C Charging Cable,1,11.95,07/07/19 19:03,"387 Lakeview St, San Francisco, CA 94016" +234279,Lightning Charging Cable,1,14.95,07/05/19 17:50,"735 Spruce St, Los Angeles, CA 90001" +234280,34in Ultrawide Monitor,1,379.99,07/13/19 06:30,"771 Highland St, Austin, TX 73301" +234280,USB-C Charging Cable,1,11.95,07/13/19 06:30,"771 Highland St, Austin, TX 73301" +234281,USB-C Charging Cable,1,11.95,07/24/19 17:34,"722 8th St, San Francisco, CA 94016" +234282,Bose SoundSport Headphones,1,99.99,07/25/19 21:08,"737 Maple St, Atlanta, GA 30301" +234283,AA Batteries (4-pack),1,3.84,07/13/19 11:38,"824 Forest St, Los Angeles, CA 90001" +234284,AAA Batteries (4-pack),1,2.99,07/12/19 17:39,"250 Willow St, Atlanta, GA 30301" +234285,USB-C Charging Cable,1,11.95,07/18/19 14:55,"847 Madison St, Los Angeles, CA 90001" +234286,AAA Batteries (4-pack),2,2.99,07/30/19 09:29,"915 Jefferson St, San Francisco, CA 94016" +234287,AA Batteries (4-pack),3,3.84,07/16/19 08:40,"342 9th St, Portland, OR 97035" +234288,USB-C Charging Cable,1,11.95,07/20/19 19:33,"698 Ridge St, San Francisco, CA 94016" +234289,AA Batteries (4-pack),1,3.84,07/06/19 13:35,"571 Forest St, Boston, MA 02215" +234290,USB-C Charging Cable,1,11.95,07/28/19 11:26,"153 6th St, San Francisco, CA 94016" +234291,AAA Batteries (4-pack),2,2.99,07/23/19 08:22,"671 Pine St, Dallas, TX 75001" +234292,Bose SoundSport Headphones,1,99.99,07/17/19 13:24,"861 Elm St, Boston, MA 02215" +234293,Lightning Charging Cable,1,14.95,07/06/19 06:25,"20 12th St, San Francisco, CA 94016" +234294,Google Phone,1,600,07/10/19 09:36,"966 Jackson St, Dallas, TX 75001" +234294,USB-C Charging Cable,1,11.95,07/10/19 09:36,"966 Jackson St, Dallas, TX 75001" +234294,Bose SoundSport Headphones,1,99.99,07/10/19 09:36,"966 Jackson St, Dallas, TX 75001" +234295,27in FHD Monitor,1,149.99,07/16/19 12:37,"703 Church St, San Francisco, CA 94016" +234296,Wired Headphones,1,11.99,07/08/19 01:08,"86 12th St, Seattle, WA 98101" +234297,Apple Airpods Headphones,1,150,07/20/19 13:40,"256 4th St, New York City, NY 10001" +234297,Apple Airpods Headphones,1,150,07/20/19 13:40,"256 4th St, New York City, NY 10001" +234298,AA Batteries (4-pack),2,3.84,07/17/19 12:53,"228 Lake St, Los Angeles, CA 90001" +234299,27in FHD Monitor,1,149.99,07/12/19 06:28,"594 South St, Boston, MA 02215" +234300,27in FHD Monitor,1,149.99,07/18/19 19:26,"558 Jefferson St, Atlanta, GA 30301" +234301,USB-C Charging Cable,1,11.95,07/15/19 06:47,"666 Lakeview St, Seattle, WA 98101" +234302,Bose SoundSport Headphones,1,99.99,07/07/19 13:31,"595 Sunset St, Seattle, WA 98101" +234303,USB-C Charging Cable,1,11.95,07/05/19 16:20,"56 6th St, Boston, MA 02215" +234304,34in Ultrawide Monitor,1,379.99,07/19/19 19:06,"132 Forest St, New York City, NY 10001" +234305,Bose SoundSport Headphones,1,99.99,07/05/19 19:02,"871 Adams St, Los Angeles, CA 90001" +234305,Apple Airpods Headphones,1,150,07/05/19 19:02,"871 Adams St, Los Angeles, CA 90001" +234306,AA Batteries (4-pack),2,3.84,07/29/19 10:07,"747 Park St, Dallas, TX 75001" +234307,AA Batteries (4-pack),1,3.84,07/25/19 11:27,"325 13th St, New York City, NY 10001" +234308,AA Batteries (4-pack),1,3.84,07/01/19 17:23,"719 Wilson St, Atlanta, GA 30301" +234309,Lightning Charging Cable,1,14.95,07/28/19 20:16,"164 Ridge St, New York City, NY 10001" +234310,iPhone,1,700,07/10/19 18:21,"107 Center St, San Francisco, CA 94016" +234310,Lightning Charging Cable,1,14.95,07/10/19 18:21,"107 Center St, San Francisco, CA 94016" +234311,27in FHD Monitor,1,149.99,07/13/19 13:15,"623 4th St, Los Angeles, CA 90001" +234312,AAA Batteries (4-pack),1,2.99,07/22/19 21:26,"309 Johnson St, Los Angeles, CA 90001" +234313,USB-C Charging Cable,1,11.95,07/29/19 20:47,"241 Ridge St, Los Angeles, CA 90001" +234314,Flatscreen TV,1,300,07/17/19 18:00,"612 Sunset St, Los Angeles, CA 90001" +234315,Bose SoundSport Headphones,1,99.99,07/04/19 21:18,"918 Adams St, Dallas, TX 75001" +234316,Wired Headphones,1,11.99,07/03/19 18:20,"210 Meadow St, San Francisco, CA 94016" +234317,Bose SoundSport Headphones,1,99.99,07/18/19 21:39,"372 Wilson St, Atlanta, GA 30301" +234318,USB-C Charging Cable,1,11.95,07/17/19 19:21,"317 Maple St, Los Angeles, CA 90001" +234319,Apple Airpods Headphones,1,150,07/18/19 10:51,"263 Jackson St, San Francisco, CA 94016" +234320,USB-C Charging Cable,1,11.95,07/26/19 15:16,"861 8th St, Los Angeles, CA 90001" +234321,USB-C Charging Cable,1,11.95,07/11/19 15:53,"920 Lake St, San Francisco, CA 94016" +234322,AA Batteries (4-pack),2,3.84,07/11/19 21:53,"543 1st St, Los Angeles, CA 90001" +234323,AA Batteries (4-pack),1,3.84,07/17/19 20:20,"846 Hill St, Boston, MA 02215" +234324,Lightning Charging Cable,1,14.95,07/01/19 16:09,"296 Spruce St, Los Angeles, CA 90001" +234325,34in Ultrawide Monitor,1,379.99,07/01/19 11:13,"611 10th St, San Francisco, CA 94016" +234326,34in Ultrawide Monitor,1,379.99,07/16/19 22:58,"240 Pine St, Los Angeles, CA 90001" +234327,iPhone,1,700,07/01/19 14:34,"841 Lake St, Boston, MA 02215" +234327,Wired Headphones,1,11.99,07/01/19 14:34,"841 Lake St, Boston, MA 02215" +234328,27in 4K Gaming Monitor,1,389.99,07/12/19 14:11,"911 Jackson St, San Francisco, CA 94016" +234329,Wired Headphones,1,11.99,07/17/19 16:27,"709 7th St, Dallas, TX 75001" +234330,USB-C Charging Cable,1,11.95,07/31/19 21:55,"427 Lincoln St, San Francisco, CA 94016" +234331,Google Phone,1,600,07/25/19 14:27,"403 Wilson St, New York City, NY 10001" +234332,Lightning Charging Cable,1,14.95,07/06/19 19:28,"967 Forest St, Boston, MA 02215" +234333,27in 4K Gaming Monitor,1,389.99,07/31/19 08:43,"653 Ridge St, San Francisco, CA 94016" +234334,AAA Batteries (4-pack),1,2.99,07/30/19 17:59,"240 Lakeview St, Portland, OR 97035" +234335,Lightning Charging Cable,1,14.95,07/06/19 18:38,"132 8th St, Seattle, WA 98101" +234336,Flatscreen TV,1,300,07/08/19 08:21,"485 Lincoln St, Los Angeles, CA 90001" +234337,Lightning Charging Cable,1,14.95,07/13/19 13:21,"290 Madison St, Los Angeles, CA 90001" +234338,27in 4K Gaming Monitor,1,389.99,07/24/19 09:40,"522 Forest St, Dallas, TX 75001" +234339,Apple Airpods Headphones,1,150,07/01/19 16:13,"903 Ridge St, Boston, MA 02215" +234340,Apple Airpods Headphones,1,150,07/30/19 18:28,"345 Hill St, San Francisco, CA 94016" +234341,20in Monitor,1,109.99,07/13/19 21:35,"685 Madison St, Los Angeles, CA 90001" +234342,USB-C Charging Cable,1,11.95,07/28/19 17:26,"121 Main St, San Francisco, CA 94016" +234343,USB-C Charging Cable,1,11.95,07/10/19 18:26,"122 Johnson St, Atlanta, GA 30301" +234344,iPhone,1,700,07/12/19 17:45,"413 Jackson St, San Francisco, CA 94016" +234345,Lightning Charging Cable,1,14.95,07/26/19 21:48,"885 6th St, Dallas, TX 75001" +234346,Wired Headphones,1,11.99,07/29/19 21:34,"174 Adams St, San Francisco, CA 94016" +234347,ThinkPad Laptop,1,999.99,07/08/19 15:09,"459 5th St, Los Angeles, CA 90001" +234348,Apple Airpods Headphones,1,150,07/07/19 07:05,"453 Highland St, Portland, OR 97035" +234349,iPhone,1,700,07/13/19 17:22,"183 North St, San Francisco, CA 94016" +234349,Apple Airpods Headphones,1,150,07/13/19 17:22,"183 North St, San Francisco, CA 94016" +234350,20in Monitor,1,109.99,07/04/19 07:32,"23 Pine St, Los Angeles, CA 90001" +234351,Bose SoundSport Headphones,1,99.99,07/02/19 12:42,"843 Elm St, Boston, MA 02215" +234352,AAA Batteries (4-pack),1,2.99,07/18/19 16:59,"428 Lincoln St, San Francisco, CA 94016" +234353,Lightning Charging Cable,1,14.95,07/25/19 18:41,"479 5th St, Seattle, WA 98101" +234354,AAA Batteries (4-pack),1,2.99,07/29/19 11:15,"949 Main St, Los Angeles, CA 90001" +234355,AAA Batteries (4-pack),1,2.99,07/24/19 23:09,"226 13th St, Los Angeles, CA 90001" +234356,Bose SoundSport Headphones,1,99.99,07/10/19 18:22,"667 6th St, New York City, NY 10001" +234357,USB-C Charging Cable,2,11.95,07/04/19 11:24,"833 Chestnut St, Boston, MA 02215" +234358,27in FHD Monitor,1,149.99,07/30/19 14:11,"658 North St, New York City, NY 10001" +234359,Macbook Pro Laptop,1,1700,07/21/19 18:31,"356 Main St, Los Angeles, CA 90001" +234360,AAA Batteries (4-pack),1,2.99,07/26/19 23:45,"772 Sunset St, Portland, OR 97035" +234361,Apple Airpods Headphones,1,150,07/13/19 16:59,"545 6th St, San Francisco, CA 94016" +234362,Lightning Charging Cable,1,14.95,07/06/19 20:33,"368 West St, New York City, NY 10001" +234363,Lightning Charging Cable,1,14.95,07/05/19 12:55,"863 River St, New York City, NY 10001" +234364,ThinkPad Laptop,1,999.99,07/10/19 13:59,"43 Highland St, Los Angeles, CA 90001" +234365,Bose SoundSport Headphones,1,99.99,07/17/19 13:10,"404 Pine St, New York City, NY 10001" +234366,27in FHD Monitor,1,149.99,07/20/19 00:44,"239 Chestnut St, San Francisco, CA 94016" +234367,Apple Airpods Headphones,1,150,07/17/19 09:15,"555 Jackson St, San Francisco, CA 94016" +234368,Google Phone,1,600,07/29/19 13:22,"690 Lake St, Dallas, TX 75001" +234369,Wired Headphones,1,11.99,07/09/19 10:27,"357 Sunset St, Atlanta, GA 30301" +234370,USB-C Charging Cable,1,11.95,07/27/19 07:57,"990 Hill St, Seattle, WA 98101" +234371,AA Batteries (4-pack),1,3.84,07/19/19 15:02,"493 Dogwood St, Los Angeles, CA 90001" +234372,Bose SoundSport Headphones,1,99.99,07/14/19 21:39,"359 8th St, San Francisco, CA 94016" +234373,Lightning Charging Cable,2,14.95,07/10/19 16:24,"798 8th St, Los Angeles, CA 90001" +234374,Wired Headphones,1,11.99,07/04/19 17:50,"473 Main St, San Francisco, CA 94016" +234375,Bose SoundSport Headphones,1,99.99,07/12/19 21:09,"423 Park St, Los Angeles, CA 90001" +234376,Apple Airpods Headphones,1,150,07/03/19 00:26,"875 1st St, San Francisco, CA 94016" +234377,Apple Airpods Headphones,1,150,07/28/19 22:30,"639 10th St, San Francisco, CA 94016" +234378,USB-C Charging Cable,1,11.95,07/10/19 11:04,"623 Lakeview St, Austin, TX 73301" +234379,USB-C Charging Cable,1,11.95,07/16/19 13:20,"784 14th St, Portland, OR 97035" +234380,Lightning Charging Cable,1,14.95,07/08/19 14:22,"522 8th St, San Francisco, CA 94016" +234381,AA Batteries (4-pack),2,3.84,07/22/19 13:27,"84 Pine St, Dallas, TX 75001" +234382,AA Batteries (4-pack),1,3.84,07/22/19 13:15,"871 Wilson St, Portland, OR 97035" +234383,USB-C Charging Cable,1,11.95,07/28/19 17:52,"84 Jefferson St, Seattle, WA 98101" +234384,27in 4K Gaming Monitor,1,389.99,07/12/19 20:28,"782 Main St, Austin, TX 73301" +234385,AAA Batteries (4-pack),5,2.99,07/05/19 11:11,"760 Lakeview St, Los Angeles, CA 90001" +234386,AA Batteries (4-pack),1,3.84,07/09/19 12:59,"286 Lake St, New York City, NY 10001" +234387,27in FHD Monitor,1,149.99,07/07/19 12:12,"380 Highland St, Los Angeles, CA 90001" +234388,Apple Airpods Headphones,1,150,07/07/19 08:54,"575 Maple St, New York City, NY 10001" +234389,USB-C Charging Cable,2,11.95,07/23/19 18:46,"210 River St, Dallas, TX 75001" +234390,Wired Headphones,3,11.99,07/19/19 21:08,"23 Meadow St, Portland, ME 04101" +234390,ThinkPad Laptop,1,999.99,07/19/19 21:08,"23 Meadow St, Portland, ME 04101" +234391,Google Phone,1,600,07/01/19 19:49,"606 Forest St, Dallas, TX 75001" +234392,ThinkPad Laptop,1,999.99,07/28/19 21:50,"855 Jefferson St, Austin, TX 73301" +234393,Flatscreen TV,1,300,07/18/19 14:37,"768 Ridge St, San Francisco, CA 94016" +234394,AA Batteries (4-pack),2,3.84,07/16/19 14:11,"674 9th St, New York City, NY 10001" +234395,Lightning Charging Cable,1,14.95,07/03/19 01:57,"161 Madison St, San Francisco, CA 94016" +234396,Apple Airpods Headphones,1,150,07/15/19 08:22,"362 Adams St, Dallas, TX 75001" +234397,Lightning Charging Cable,2,14.95,07/28/19 10:19,"269 13th St, Los Angeles, CA 90001" +234398,27in 4K Gaming Monitor,1,389.99,07/16/19 14:09,"867 Willow St, Los Angeles, CA 90001" +234399,iPhone,1,700,07/15/19 13:47,"40 Lincoln St, Seattle, WA 98101" +234400,20in Monitor,1,109.99,07/18/19 11:16,"532 Pine St, Atlanta, GA 30301" +234401,Bose SoundSport Headphones,1,99.99,07/27/19 06:47,"498 River St, Seattle, WA 98101" +234402,27in FHD Monitor,1,149.99,07/18/19 17:56,"34 Cedar St, Atlanta, GA 30301" +234403,Lightning Charging Cable,1,14.95,07/17/19 17:46,"217 14th St, Los Angeles, CA 90001" +234404,Wired Headphones,1,11.99,07/18/19 18:43,"297 South St, Atlanta, GA 30301" +234405,AA Batteries (4-pack),1,3.84,07/27/19 18:46,"856 Sunset St, Dallas, TX 75001" +234406,USB-C Charging Cable,1,11.95,07/19/19 12:49,"809 Lincoln St, New York City, NY 10001" +234407,AAA Batteries (4-pack),1,2.99,07/21/19 11:54,"393 Sunset St, New York City, NY 10001" +234408,Bose SoundSport Headphones,1,99.99,07/01/19 14:58,"595 Highland St, Portland, OR 97035" +234409,AAA Batteries (4-pack),1,2.99,07/15/19 15:07,"434 1st St, Seattle, WA 98101" +234410,ThinkPad Laptop,1,999.99,07/03/19 23:38,"305 1st St, Austin, TX 73301" +234411,Wired Headphones,1,11.99,07/14/19 19:10,"912 Johnson St, San Francisco, CA 94016" +234412,27in 4K Gaming Monitor,1,389.99,07/19/19 15:10,"813 10th St, San Francisco, CA 94016" +234413,Wired Headphones,2,11.99,07/12/19 07:51,"477 2nd St, Austin, TX 73301" +234414,Macbook Pro Laptop,1,1700,07/05/19 20:31,"404 Dogwood St, Dallas, TX 75001" +234415,AAA Batteries (4-pack),1,2.99,07/24/19 18:13,"191 Willow St, Los Angeles, CA 90001" +234416,Google Phone,1,600,07/03/19 07:53,"19 Main St, San Francisco, CA 94016" +234417,Wired Headphones,1,11.99,07/23/19 18:40,"476 Washington St, Atlanta, GA 30301" +234418,USB-C Charging Cable,1,11.95,07/17/19 14:00,"997 Maple St, Atlanta, GA 30301" +234419,Apple Airpods Headphones,1,150,07/08/19 21:45,"51 Maple St, Portland, OR 97035" +234420,Lightning Charging Cable,1,14.95,07/21/19 11:00,"850 Meadow St, San Francisco, CA 94016" +234421,Flatscreen TV,1,300,07/10/19 23:04,"130 Highland St, Portland, ME 04101" +234422,Bose SoundSport Headphones,1,99.99,07/07/19 10:23,"922 Hill St, San Francisco, CA 94016" +234423,iPhone,1,700,07/02/19 13:48,"242 Elm St, Atlanta, GA 30301" +234424,Google Phone,1,600,07/21/19 11:25,"847 Forest St, Los Angeles, CA 90001" +234425,LG Washing Machine,1,600.0,07/17/19 21:43,"426 Dogwood St, Boston, MA 02215" +234426,Google Phone,1,600,07/10/19 14:33,"296 6th St, Los Angeles, CA 90001" +234427,Apple Airpods Headphones,1,150,07/08/19 17:30,"794 Dogwood St, Boston, MA 02215" +234428,USB-C Charging Cable,2,11.95,07/18/19 09:00,"121 Pine St, Seattle, WA 98101" +234429,AA Batteries (4-pack),1,3.84,07/01/19 14:52,"859 12th St, San Francisco, CA 94016" +234430,Google Phone,1,600,07/03/19 22:38,"226 Meadow St, Boston, MA 02215" +234431,20in Monitor,1,109.99,07/15/19 22:40,"918 Park St, San Francisco, CA 94016" +234432,34in Ultrawide Monitor,1,379.99,07/23/19 12:37,"811 Lincoln St, Portland, OR 97035" +234433,AAA Batteries (4-pack),1,2.99,07/04/19 07:50,"713 Cherry St, Austin, TX 73301" +234434,AA Batteries (4-pack),1,3.84,07/08/19 19:32,"296 Maple St, Los Angeles, CA 90001" +234435,Lightning Charging Cable,1,14.95,07/22/19 15:02,"381 Elm St, San Francisco, CA 94016" +234436,Lightning Charging Cable,1,14.95,08/01/19 01:31,"952 North St, Los Angeles, CA 90001" +234437,Bose SoundSport Headphones,1,99.99,07/02/19 19:09,"514 Chestnut St, Los Angeles, CA 90001" +234438,Wired Headphones,2,11.99,07/12/19 00:18,"572 Cedar St, San Francisco, CA 94016" +234438,Lightning Charging Cable,1,14.95,07/12/19 00:18,"572 Cedar St, San Francisco, CA 94016" +234439,ThinkPad Laptop,1,999.99,07/12/19 13:10,"425 13th St, San Francisco, CA 94016" +234440,Lightning Charging Cable,1,14.95,07/10/19 19:22,"54 Sunset St, Los Angeles, CA 90001" +234441,AAA Batteries (4-pack),4,2.99,07/05/19 20:04,"85 Johnson St, Atlanta, GA 30301" +234442,USB-C Charging Cable,1,11.95,07/19/19 22:05,"146 Jefferson St, Los Angeles, CA 90001" +234443,Lightning Charging Cable,1,14.95,07/27/19 16:05,"774 Hickory St, Dallas, TX 75001" +234444,USB-C Charging Cable,1,11.95,07/25/19 15:47,"912 Lake St, San Francisco, CA 94016" +234445,Lightning Charging Cable,1,14.95,07/31/19 19:06,"859 Madison St, New York City, NY 10001" +234446,USB-C Charging Cable,1,11.95,07/12/19 18:11,"859 11th St, Boston, MA 02215" +234447,AAA Batteries (4-pack),1,2.99,07/18/19 19:41,"689 13th St, San Francisco, CA 94016" +234448,AAA Batteries (4-pack),1,2.99,07/28/19 11:19,"283 Hill St, San Francisco, CA 94016" +234449,AAA Batteries (4-pack),2,2.99,07/10/19 00:52,"853 Maple St, Los Angeles, CA 90001" +234450,Wired Headphones,3,11.99,07/03/19 03:53,"423 Hickory St, Los Angeles, CA 90001" +234451,Wired Headphones,1,11.99,07/16/19 15:48,"421 Johnson St, Austin, TX 73301" +234452,20in Monitor,1,109.99,07/28/19 07:45,"577 6th St, New York City, NY 10001" +234453,iPhone,1,700,07/21/19 18:50,"21 Lakeview St, Austin, TX 73301" +234454,Lightning Charging Cable,1,14.95,07/17/19 20:04,"967 9th St, San Francisco, CA 94016" +234455,Macbook Pro Laptop,1,1700,07/15/19 09:19,"435 Chestnut St, New York City, NY 10001" +234456,LG Washing Machine,1,600.0,07/29/19 22:42,"782 Spruce St, Austin, TX 73301" +234457,Bose SoundSport Headphones,1,99.99,07/25/19 11:04,"613 Jefferson St, Boston, MA 02215" +234458,AAA Batteries (4-pack),1,2.99,07/07/19 20:09,"745 Willow St, Atlanta, GA 30301" +234459,LG Washing Machine,1,600.0,07/21/19 21:02,"267 1st St, Atlanta, GA 30301" +234460,Wired Headphones,1,11.99,07/23/19 17:54,"440 5th St, Portland, OR 97035" +234461,Lightning Charging Cable,1,14.95,07/17/19 13:33,"601 Madison St, Boston, MA 02215" +234462,iPhone,1,700,07/10/19 22:09,"943 1st St, New York City, NY 10001" +234462,Wired Headphones,1,11.99,07/10/19 22:09,"943 1st St, New York City, NY 10001" +234463,Lightning Charging Cable,1,14.95,07/17/19 22:44,"126 2nd St, Atlanta, GA 30301" +234464,27in 4K Gaming Monitor,1,389.99,07/30/19 14:34,"116 South St, Portland, ME 04101" +,,,,, +234465,AA Batteries (4-pack),2,3.84,07/08/19 17:27,"87 Meadow St, New York City, NY 10001" +234466,USB-C Charging Cable,1,11.95,07/08/19 11:48,"87 Cedar St, San Francisco, CA 94016" +234467,Google Phone,1,600,07/06/19 07:25,"770 1st St, San Francisco, CA 94016" +234468,AAA Batteries (4-pack),1,2.99,07/29/19 16:09,"743 5th St, Atlanta, GA 30301" +234469,Google Phone,1,600,07/05/19 09:07,"968 14th St, Los Angeles, CA 90001" +234470,Lightning Charging Cable,1,14.95,07/17/19 13:30,"370 Lincoln St, Austin, TX 73301" +234471,Apple Airpods Headphones,1,150,07/12/19 12:06,"43 Lincoln St, New York City, NY 10001" +234472,Macbook Pro Laptop,1,1700,07/17/19 21:40,"246 Jefferson St, Dallas, TX 75001" +234473,Vareebadd Phone,1,400,07/02/19 17:32,"35 Lakeview St, Boston, MA 02215" +234473,USB-C Charging Cable,1,11.95,07/02/19 17:32,"35 Lakeview St, Boston, MA 02215" +234474,ThinkPad Laptop,1,999.99,07/27/19 14:51,"602 Dogwood St, Dallas, TX 75001" +234475,Macbook Pro Laptop,1,1700,07/26/19 23:06,"924 North St, Los Angeles, CA 90001" +234476,LG Washing Machine,1,600.0,07/18/19 14:43,"34 14th St, Austin, TX 73301" +234477,Lightning Charging Cable,1,14.95,07/02/19 16:19,"816 Ridge St, New York City, NY 10001" +234478,Apple Airpods Headphones,1,150,07/14/19 02:03,"280 Jackson St, San Francisco, CA 94016" +234479,Apple Airpods Headphones,1,150,07/07/19 14:15,"89 South St, Boston, MA 02215" +234480,AA Batteries (4-pack),1,3.84,07/06/19 14:31,"253 Chestnut St, Los Angeles, CA 90001" +234481,AA Batteries (4-pack),1,3.84,07/20/19 15:32,"489 Ridge St, New York City, NY 10001" +234482,USB-C Charging Cable,1,11.95,07/03/19 23:31,"517 Park St, San Francisco, CA 94016" +234483,AAA Batteries (4-pack),2,2.99,07/18/19 12:10,"984 14th St, San Francisco, CA 94016" +234484,Apple Airpods Headphones,1,150,07/25/19 15:56,"187 West St, San Francisco, CA 94016" +234485,USB-C Charging Cable,1,11.95,07/27/19 17:21,"628 5th St, Seattle, WA 98101" +234486,AA Batteries (4-pack),1,3.84,07/16/19 09:34,"884 Johnson St, Portland, OR 97035" +234487,AAA Batteries (4-pack),1,2.99,07/14/19 16:27,"361 4th St, Portland, OR 97035" +234488,27in FHD Monitor,1,149.99,07/06/19 17:17,"207 Center St, Dallas, TX 75001" +234489,AA Batteries (4-pack),1,3.84,07/23/19 19:46,"591 Willow St, Boston, MA 02215" +234490,Macbook Pro Laptop,1,1700,07/30/19 18:06,"30 Highland St, Dallas, TX 75001" +234491,AA Batteries (4-pack),1,3.84,07/15/19 12:40,"476 Spruce St, Los Angeles, CA 90001" +234492,Apple Airpods Headphones,1,150,07/16/19 22:24,"963 Sunset St, Boston, MA 02215" +234493,USB-C Charging Cable,1,11.95,07/21/19 12:59,"32 4th St, San Francisco, CA 94016" +234494,Lightning Charging Cable,1,14.95,07/12/19 20:02,"24 Wilson St, New York City, NY 10001" +234495,USB-C Charging Cable,1,11.95,07/04/19 18:58,"832 Walnut St, San Francisco, CA 94016" +234496,Wired Headphones,1,11.99,07/14/19 10:27,"490 Main St, San Francisco, CA 94016" +234497,Vareebadd Phone,1,400,07/20/19 12:16,"14 6th St, New York City, NY 10001" +234498,Apple Airpods Headphones,1,150,07/23/19 11:20,"277 Madison St, New York City, NY 10001" +234499,AA Batteries (4-pack),2,3.84,07/31/19 19:09,"394 12th St, Los Angeles, CA 90001" +234500,Flatscreen TV,1,300,07/15/19 14:45,"460 1st St, Seattle, WA 98101" +234501,27in 4K Gaming Monitor,1,389.99,07/14/19 13:49,"751 Forest St, Portland, OR 97035" +234502,AA Batteries (4-pack),1,3.84,07/23/19 19:10,"373 Center St, New York City, NY 10001" +234503,USB-C Charging Cable,1,11.95,07/03/19 17:10,"101 Highland St, Dallas, TX 75001" +234504,AAA Batteries (4-pack),2,2.99,07/02/19 00:19,"430 1st St, Seattle, WA 98101" +234505,USB-C Charging Cable,2,11.95,07/09/19 21:19,"525 8th St, Portland, OR 97035" +234506,AAA Batteries (4-pack),2,2.99,07/31/19 13:51,"299 7th St, Boston, MA 02215" +234507,27in FHD Monitor,1,149.99,07/10/19 22:17,"347 12th St, San Francisco, CA 94016" +234508,AA Batteries (4-pack),1,3.84,07/09/19 09:45,"974 Lakeview St, Atlanta, GA 30301" +234509,Lightning Charging Cable,1,14.95,07/23/19 10:56,"164 Lake St, New York City, NY 10001" +234510,Wired Headphones,1,11.99,07/24/19 13:28,"646 River St, Austin, TX 73301" +234511,Lightning Charging Cable,1,14.95,07/15/19 16:53,"436 10th St, Boston, MA 02215" +234512,iPhone,1,700,07/12/19 12:59,"579 9th St, Los Angeles, CA 90001" +234513,AAA Batteries (4-pack),1,2.99,07/23/19 13:06,"329 Wilson St, Los Angeles, CA 90001" +234514,27in FHD Monitor,1,149.99,07/03/19 10:53,"681 10th St, Seattle, WA 98101" +234515,AAA Batteries (4-pack),1,2.99,07/10/19 12:56,"738 6th St, San Francisco, CA 94016" +234516,Lightning Charging Cable,1,14.95,07/03/19 07:53,"985 Ridge St, San Francisco, CA 94016" +234517,USB-C Charging Cable,1,11.95,07/23/19 13:17,"48 Pine St, Boston, MA 02215" +234518,AAA Batteries (4-pack),1,2.99,07/13/19 10:52,"362 9th St, Atlanta, GA 30301" +234519,27in 4K Gaming Monitor,1,389.99,07/15/19 05:16,"631 Meadow St, Dallas, TX 75001" +234520,34in Ultrawide Monitor,1,379.99,07/06/19 14:28,"997 13th St, Los Angeles, CA 90001" +234521,AA Batteries (4-pack),1,3.84,07/12/19 15:42,"974 Chestnut St, Seattle, WA 98101" +234522,USB-C Charging Cable,1,11.95,07/28/19 12:08,"984 10th St, Dallas, TX 75001" +234523,Lightning Charging Cable,1,14.95,07/22/19 19:23,"969 Lakeview St, Los Angeles, CA 90001" +234524,USB-C Charging Cable,1,11.95,07/15/19 06:27,"595 Spruce St, New York City, NY 10001" +234525,AAA Batteries (4-pack),1,2.99,07/14/19 13:41,"335 Cedar St, New York City, NY 10001" +234526,AA Batteries (4-pack),1,3.84,07/04/19 19:39,"366 Main St, San Francisco, CA 94016" +234526,Google Phone,1,600,07/04/19 19:39,"366 Main St, San Francisco, CA 94016" +234527,Vareebadd Phone,1,400,07/03/19 12:14,"56 Cherry St, New York City, NY 10001" +234528,AAA Batteries (4-pack),1,2.99,07/19/19 17:29,"446 14th St, Seattle, WA 98101" +234529,27in FHD Monitor,1,149.99,07/02/19 17:25,"120 Ridge St, Atlanta, GA 30301" +234530,Wired Headphones,1,11.99,07/05/19 21:30,"640 Willow St, Los Angeles, CA 90001" +234531,iPhone,1,700,07/17/19 17:53,"352 Walnut St, New York City, NY 10001" +234532,Wired Headphones,1,11.99,07/10/19 15:21,"687 North St, San Francisco, CA 94016" +234533,Flatscreen TV,1,300,07/09/19 16:23,"581 4th St, Los Angeles, CA 90001" +234533,34in Ultrawide Monitor,1,379.99,07/09/19 16:23,"581 4th St, Los Angeles, CA 90001" +234534,AA Batteries (4-pack),2,3.84,07/15/19 08:20,"506 13th St, Seattle, WA 98101" +234535,ThinkPad Laptop,1,999.99,07/13/19 14:24,"978 4th St, Portland, ME 04101" +234536,Bose SoundSport Headphones,1,99.99,07/27/19 10:51,"680 14th St, Dallas, TX 75001" +234537,AA Batteries (4-pack),1,3.84,07/17/19 15:13,"826 Main St, San Francisco, CA 94016" +234538,AA Batteries (4-pack),1,3.84,07/24/19 01:54,"778 8th St, Boston, MA 02215" +234539,Apple Airpods Headphones,1,150,07/01/19 14:25,"907 Forest St, Atlanta, GA 30301" +234540,AAA Batteries (4-pack),1,2.99,07/28/19 22:47,"15 Walnut St, New York City, NY 10001" +234541,Apple Airpods Headphones,1,150,07/12/19 17:31,"105 Washington St, Los Angeles, CA 90001" +234542,Bose SoundSport Headphones,1,99.99,07/07/19 11:30,"947 Lake St, Austin, TX 73301" +234543,AAA Batteries (4-pack),1,2.99,07/13/19 11:40,"915 North St, Los Angeles, CA 90001" +234544,Bose SoundSport Headphones,1,99.99,07/11/19 16:47,"116 Dogwood St, San Francisco, CA 94016" +234545,Wired Headphones,1,11.99,07/13/19 12:01,"766 Meadow St, Los Angeles, CA 90001" +234546,Lightning Charging Cable,1,14.95,07/22/19 14:40,"86 Chestnut St, Los Angeles, CA 90001" +234546,Apple Airpods Headphones,1,150,07/22/19 14:40,"86 Chestnut St, Los Angeles, CA 90001" +234547,27in 4K Gaming Monitor,1,389.99,07/17/19 11:09,"612 Park St, New York City, NY 10001" +234548,AA Batteries (4-pack),1,3.84,07/18/19 11:06,"754 Maple St, Dallas, TX 75001" +234549,AAA Batteries (4-pack),3,2.99,07/01/19 21:17,"639 12th St, Austin, TX 73301" +234550,Lightning Charging Cable,2,14.95,07/08/19 22:16,"557 Jefferson St, Boston, MA 02215" +234551,AA Batteries (4-pack),3,3.84,07/18/19 11:27,"358 Elm St, New York City, NY 10001" +234552,AAA Batteries (4-pack),2,2.99,07/24/19 09:10,"734 Main St, Boston, MA 02215" +234553,Bose SoundSport Headphones,1,99.99,07/10/19 17:27,"105 Adams St, Dallas, TX 75001" +234554,Macbook Pro Laptop,1,1700,07/05/19 18:46,"800 10th St, Los Angeles, CA 90001" +234555,AAA Batteries (4-pack),1,2.99,07/18/19 13:32,"666 Jefferson St, Los Angeles, CA 90001" +234556,AAA Batteries (4-pack),2,2.99,07/30/19 19:21,"251 Spruce St, San Francisco, CA 94016" +234557,AA Batteries (4-pack),1,3.84,07/13/19 17:30,"448 Church St, Dallas, TX 75001" +234558,Wired Headphones,1,11.99,07/27/19 22:07,"692 West St, Dallas, TX 75001" +234559,ThinkPad Laptop,1,999.99,07/27/19 19:55,"595 Johnson St, Los Angeles, CA 90001" +234560,AAA Batteries (4-pack),2,2.99,07/09/19 21:18,"734 13th St, Boston, MA 02215" +234561,Wired Headphones,1,11.99,07/04/19 21:29,"456 Dogwood St, Seattle, WA 98101" +234562,USB-C Charging Cable,1,11.95,07/30/19 12:46,"20 Lincoln St, Boston, MA 02215" +234563,27in FHD Monitor,1,149.99,07/12/19 22:02,"982 Elm St, San Francisco, CA 94016" +234564,USB-C Charging Cable,1,11.95,07/30/19 01:58,"799 Johnson St, Portland, OR 97035" +234565,USB-C Charging Cable,1,11.95,07/07/19 05:46,"982 West St, San Francisco, CA 94016" +234566,Apple Airpods Headphones,1,150,07/01/19 19:10,"471 Chestnut St, New York City, NY 10001" +234567,Lightning Charging Cable,1,14.95,07/25/19 21:18,"23 Lincoln St, New York City, NY 10001" +234568,USB-C Charging Cable,1,11.95,07/19/19 15:38,"632 Highland St, Dallas, TX 75001" +234569,27in FHD Monitor,1,149.99,07/07/19 13:05,"642 2nd St, Portland, OR 97035" +234570,AAA Batteries (4-pack),1,2.99,07/31/19 21:30,"508 Jefferson St, Dallas, TX 75001" +234571,Apple Airpods Headphones,1,150,07/30/19 13:52,"239 8th St, Los Angeles, CA 90001" +234572,Macbook Pro Laptop,1,1700,07/20/19 14:45,"674 Adams St, Seattle, WA 98101" +234573,AA Batteries (4-pack),1,3.84,07/01/19 13:04,"161 Lakeview St, Los Angeles, CA 90001" +234574,Lightning Charging Cable,1,14.95,07/01/19 18:47,"569 Wilson St, Los Angeles, CA 90001" +234575,iPhone,1,700,07/13/19 09:42,"853 Johnson St, San Francisco, CA 94016" +234576,Lightning Charging Cable,1,14.95,07/31/19 15:24,"65 Sunset St, San Francisco, CA 94016" +234577,Lightning Charging Cable,1,14.95,07/19/19 11:33,"976 Adams St, San Francisco, CA 94016" +234578,ThinkPad Laptop,1,999.99,07/21/19 19:34,"156 2nd St, Boston, MA 02215" +234579,34in Ultrawide Monitor,1,379.99,07/28/19 19:24,"657 Madison St, Boston, MA 02215" +234580,27in FHD Monitor,1,149.99,07/25/19 13:05,"830 Chestnut St, Dallas, TX 75001" +234581,20in Monitor,1,109.99,07/23/19 09:44,"730 14th St, Dallas, TX 75001" +234582,USB-C Charging Cable,1,11.95,07/16/19 20:40,"633 Park St, San Francisco, CA 94016" +234583,Apple Airpods Headphones,1,150,07/09/19 13:52,"39 9th St, Boston, MA 02215" +234584,iPhone,1,700,07/18/19 14:00,"207 Main St, Boston, MA 02215" +234585,Apple Airpods Headphones,1,150,07/17/19 14:57,"873 Willow St, Seattle, WA 98101" +234586,Macbook Pro Laptop,1,1700,07/21/19 20:24,"57 Park St, New York City, NY 10001" +234587,Lightning Charging Cable,1,14.95,07/17/19 00:37,"60 Johnson St, Seattle, WA 98101" +234588,USB-C Charging Cable,1,11.95,07/14/19 05:19,"59 Maple St, Portland, OR 97035" +234589,AAA Batteries (4-pack),2,2.99,07/26/19 17:41,"526 Washington St, Atlanta, GA 30301" +234590,Lightning Charging Cable,1,14.95,07/09/19 11:51,"220 1st St, Los Angeles, CA 90001" +234591,AAA Batteries (4-pack),1,2.99,07/29/19 13:25,"269 6th St, Los Angeles, CA 90001" +234592,27in 4K Gaming Monitor,1,389.99,07/10/19 19:22,"261 Church St, San Francisco, CA 94016" +234593,Lightning Charging Cable,1,14.95,07/22/19 14:03,"970 11th St, San Francisco, CA 94016" +234594,Flatscreen TV,1,300,07/26/19 00:40,"651 Washington St, Dallas, TX 75001" +234595,34in Ultrawide Monitor,1,379.99,07/29/19 18:59,"756 Wilson St, Dallas, TX 75001" +234596,Apple Airpods Headphones,1,150,07/19/19 12:45,"145 Highland St, Seattle, WA 98101" +234597,AAA Batteries (4-pack),1,2.99,07/30/19 11:31,"498 7th St, San Francisco, CA 94016" +234598,USB-C Charging Cable,1,11.95,07/14/19 12:26,"890 Dogwood St, Los Angeles, CA 90001" +234599,AAA Batteries (4-pack),1,2.99,07/08/19 21:38,"138 Church St, Austin, TX 73301" +234600,Wired Headphones,1,11.99,07/30/19 17:20,"565 Johnson St, New York City, NY 10001" +234601,Google Phone,1,600,07/13/19 16:51,"913 Walnut St, Los Angeles, CA 90001" +234602,AAA Batteries (4-pack),2,2.99,07/29/19 14:29,"606 Lakeview St, Boston, MA 02215" +234603,AA Batteries (4-pack),1,3.84,07/27/19 18:55,"460 Meadow St, Los Angeles, CA 90001" +234604,AAA Batteries (4-pack),2,2.99,07/04/19 15:44,"384 Center St, Dallas, TX 75001" +234605,Apple Airpods Headphones,1,150,07/02/19 20:03,"960 Chestnut St, New York City, NY 10001" +234606,Flatscreen TV,1,300,07/15/19 18:16,"799 Lincoln St, Dallas, TX 75001" +234607,iPhone,1,700,07/02/19 12:02,"808 Maple St, Los Angeles, CA 90001" +234608,Bose SoundSport Headphones,1,99.99,07/15/19 15:11,"617 Walnut St, New York City, NY 10001" +234609,USB-C Charging Cable,1,11.95,07/10/19 10:01,"209 Ridge St, Atlanta, GA 30301" +234610,AAA Batteries (4-pack),1,2.99,07/26/19 22:03,"953 North St, Austin, TX 73301" +234611,Wired Headphones,1,11.99,07/11/19 12:15,"278 9th St, Boston, MA 02215" +234612,Google Phone,1,600,07/04/19 08:20,"620 8th St, Los Angeles, CA 90001" +234613,Wired Headphones,1,11.99,07/02/19 09:13,"632 12th St, Los Angeles, CA 90001" +234614,AAA Batteries (4-pack),1,2.99,07/09/19 17:40,"383 Walnut St, New York City, NY 10001" +234615,Macbook Pro Laptop,1,1700,07/29/19 20:04,"879 Main St, San Francisco, CA 94016" +234616,iPhone,1,700,07/20/19 10:16,"629 8th St, San Francisco, CA 94016" +234617,Bose SoundSport Headphones,1,99.99,07/20/19 13:44,"746 Jefferson St, San Francisco, CA 94016" +234618,AAA Batteries (4-pack),1,2.99,07/14/19 12:22,"3 Maple St, Austin, TX 73301" +234619,AAA Batteries (4-pack),2,2.99,07/10/19 11:53,"611 Ridge St, Portland, OR 97035" +234620,Lightning Charging Cable,1,14.95,07/26/19 09:03,"454 Jefferson St, Boston, MA 02215" +234621,Apple Airpods Headphones,1,150,07/16/19 09:10,"902 Spruce St, Austin, TX 73301" +234622,AA Batteries (4-pack),1,3.84,07/14/19 19:01,"818 Maple St, Boston, MA 02215" +234623,USB-C Charging Cable,1,11.95,07/05/19 18:58,"687 Spruce St, Los Angeles, CA 90001" +234624,Flatscreen TV,1,300,07/09/19 21:50,"830 8th St, Boston, MA 02215" +234625,Wired Headphones,1,11.99,08/01/19 05:38,"60 Pine St, Atlanta, GA 30301" +234626,Lightning Charging Cable,1,14.95,07/19/19 19:38,"712 Dogwood St, San Francisco, CA 94016" +234627,AAA Batteries (4-pack),1,2.99,07/11/19 07:53,"235 Adams St, San Francisco, CA 94016" +234628,Bose SoundSport Headphones,1,99.99,07/25/19 09:14,"940 Ridge St, San Francisco, CA 94016" +234629,AAA Batteries (4-pack),2,2.99,07/25/19 00:51,"986 Cedar St, Dallas, TX 75001" +234630,Google Phone,1,600,07/31/19 17:28,"851 North St, New York City, NY 10001" +234631,AA Batteries (4-pack),1,3.84,07/05/19 19:40,"299 14th St, Los Angeles, CA 90001" +234632,Lightning Charging Cable,1,14.95,07/05/19 16:17,"619 Lincoln St, Portland, OR 97035" +234633,AAA Batteries (4-pack),1,2.99,07/28/19 01:30,"374 7th St, Dallas, TX 75001" +234634,Bose SoundSport Headphones,1,99.99,07/29/19 14:36,"282 Spruce St, New York City, NY 10001" +234635,Lightning Charging Cable,1,14.95,07/15/19 19:07,"310 1st St, San Francisco, CA 94016" +234636,AAA Batteries (4-pack),1,2.99,07/21/19 10:41,"756 Park St, San Francisco, CA 94016" +234637,Lightning Charging Cable,1,14.95,07/23/19 18:23,"391 Meadow St, San Francisco, CA 94016" +234638,AAA Batteries (4-pack),2,2.99,07/05/19 10:44,"978 Highland St, Atlanta, GA 30301" +234639,Wired Headphones,1,11.99,07/31/19 14:18,"927 Adams St, Austin, TX 73301" +234640,AAA Batteries (4-pack),1,2.99,07/02/19 21:54,"988 Madison St, Seattle, WA 98101" +234641,Apple Airpods Headphones,1,150,07/05/19 16:27,"98 13th St, New York City, NY 10001" +234642,Bose SoundSport Headphones,1,99.99,07/28/19 13:06,"489 12th St, Seattle, WA 98101" +234643,Lightning Charging Cable,2,14.95,07/01/19 18:21,"238 8th St, Dallas, TX 75001" +234644,AA Batteries (4-pack),1,3.84,07/20/19 17:02,"684 Dogwood St, Los Angeles, CA 90001" +234645,Wired Headphones,1,11.99,07/28/19 12:12,"600 Highland St, Dallas, TX 75001" +234646,USB-C Charging Cable,1,11.95,07/06/19 12:20,"549 Cherry St, San Francisco, CA 94016" +234647,Apple Airpods Headphones,1,150,07/21/19 09:55,"96 Hickory St, San Francisco, CA 94016" +234648,Flatscreen TV,1,300,07/12/19 17:29,"98 Forest St, San Francisco, CA 94016" +234649,Bose SoundSport Headphones,1,99.99,07/29/19 13:32,"720 West St, Seattle, WA 98101" +234650,AA Batteries (4-pack),1,3.84,07/22/19 12:26,"25 Park St, Los Angeles, CA 90001" +234651,Lightning Charging Cable,1,14.95,07/23/19 07:34,"159 Johnson St, Dallas, TX 75001" +234652,27in FHD Monitor,1,149.99,07/19/19 10:36,"321 Ridge St, Los Angeles, CA 90001" +234653,27in FHD Monitor,1,149.99,07/01/19 20:37,"110 Maple St, Los Angeles, CA 90001" +234654,USB-C Charging Cable,1,11.95,07/31/19 14:14,"663 Pine St, Austin, TX 73301" +234655,20in Monitor,1,109.99,07/02/19 20:40,"83 2nd St, New York City, NY 10001" +234656,Bose SoundSport Headphones,1,99.99,07/31/19 19:30,"328 Main St, New York City, NY 10001" +234657,AAA Batteries (4-pack),1,2.99,07/19/19 09:49,"634 10th St, San Francisco, CA 94016" +234658,USB-C Charging Cable,1,11.95,07/13/19 10:42,"128 Johnson St, San Francisco, CA 94016" +234659,AAA Batteries (4-pack),2,2.99,07/19/19 16:04,"23 Pine St, Boston, MA 02215" +234660,Lightning Charging Cable,1,14.95,07/25/19 17:11,"556 River St, Boston, MA 02215" +234661,Bose SoundSport Headphones,1,99.99,07/25/19 21:19,"317 Wilson St, Los Angeles, CA 90001" +234662,iPhone,1,700,07/03/19 20:22,"146 10th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +234663,Wired Headphones,1,11.99,07/01/19 15:35,"834 13th St, Austin, TX 73301" +234664,Lightning Charging Cable,1,14.95,07/07/19 20:12,"159 Park St, San Francisco, CA 94016" +234665,27in 4K Gaming Monitor,1,389.99,07/03/19 19:02,"957 7th St, San Francisco, CA 94016" +234666,Lightning Charging Cable,1,14.95,07/30/19 16:55,"733 Hill St, San Francisco, CA 94016" +234667,27in FHD Monitor,1,149.99,07/10/19 09:19,"871 Lincoln St, Los Angeles, CA 90001" +234668,Apple Airpods Headphones,1,150,07/24/19 21:12,"309 Adams St, Atlanta, GA 30301" +234669,iPhone,1,700,07/03/19 07:26,"833 Meadow St, Portland, OR 97035" +234669,Lightning Charging Cable,1,14.95,07/03/19 07:26,"833 Meadow St, Portland, OR 97035" +234669,Wired Headphones,1,11.99,07/03/19 07:26,"833 Meadow St, Portland, OR 97035" +234670,AAA Batteries (4-pack),1,2.99,07/11/19 12:24,"551 Hickory St, San Francisco, CA 94016" +234671,Lightning Charging Cable,1,14.95,07/10/19 16:18,"173 4th St, Atlanta, GA 30301" +234672,Apple Airpods Headphones,1,150,07/31/19 15:40,"355 8th St, Portland, OR 97035" +234673,Bose SoundSport Headphones,1,99.99,07/07/19 19:59,"768 10th St, New York City, NY 10001" +234674,AAA Batteries (4-pack),2,2.99,07/19/19 15:25,"245 Wilson St, Seattle, WA 98101" +234675,20in Monitor,1,109.99,07/22/19 14:38,"883 Church St, Seattle, WA 98101" +234676,Macbook Pro Laptop,1,1700,07/28/19 00:00,"952 Park St, Los Angeles, CA 90001" +234677,USB-C Charging Cable,1,11.95,07/28/19 21:08,"374 8th St, Boston, MA 02215" +234678,27in 4K Gaming Monitor,1,389.99,07/17/19 18:32,"445 Wilson St, San Francisco, CA 94016" +234679,AAA Batteries (4-pack),1,2.99,07/22/19 18:32,"345 Hickory St, San Francisco, CA 94016" +234680,Bose SoundSport Headphones,1,99.99,07/27/19 13:47,"732 6th St, San Francisco, CA 94016" +234681,AAA Batteries (4-pack),1,2.99,07/16/19 08:38,"316 Highland St, New York City, NY 10001" +234682,Wired Headphones,1,11.99,07/21/19 18:53,"95 Jefferson St, Los Angeles, CA 90001" +234683,Lightning Charging Cable,1,14.95,07/27/19 18:42,"946 2nd St, San Francisco, CA 94016" +234684,Wired Headphones,1,11.99,07/07/19 16:46,"640 Sunset St, Dallas, TX 75001" +234685,27in 4K Gaming Monitor,1,389.99,07/27/19 22:00,"44 Chestnut St, San Francisco, CA 94016" +234686,Macbook Pro Laptop,1,1700,07/20/19 18:48,"80 River St, San Francisco, CA 94016" +234687,AAA Batteries (4-pack),2,2.99,07/05/19 09:00,"834 River St, Portland, OR 97035" +234688,34in Ultrawide Monitor,1,379.99,07/05/19 11:03,"688 River St, Seattle, WA 98101" +234689,27in 4K Gaming Monitor,1,389.99,07/12/19 05:03,"689 12th St, San Francisco, CA 94016" +234690,Lightning Charging Cable,1,14.95,07/05/19 11:46,"761 14th St, Los Angeles, CA 90001" +234691,Wired Headphones,1,11.99,07/19/19 13:44,"968 Wilson St, Los Angeles, CA 90001" +234692,Lightning Charging Cable,1,14.95,07/11/19 13:15,"971 9th St, New York City, NY 10001" +234693,USB-C Charging Cable,1,11.95,07/01/19 14:39,"905 West St, New York City, NY 10001" +234694,USB-C Charging Cable,1,11.95,07/13/19 07:28,"917 Center St, Atlanta, GA 30301" +234695,34in Ultrawide Monitor,1,379.99,07/28/19 12:32,"186 Chestnut St, Atlanta, GA 30301" +234696,Wired Headphones,2,11.99,07/09/19 18:47,"552 4th St, Atlanta, GA 30301" +234697,USB-C Charging Cable,1,11.95,07/04/19 14:06,"517 1st St, Dallas, TX 75001" +234698,Vareebadd Phone,1,400,07/23/19 18:15,"669 Willow St, San Francisco, CA 94016" +234699,iPhone,1,700,07/11/19 08:42,"898 12th St, San Francisco, CA 94016" +234700,Lightning Charging Cable,1,14.95,07/21/19 17:25,"227 Lincoln St, Los Angeles, CA 90001" +234701,Google Phone,1,600,07/01/19 08:07,"416 Walnut St, Portland, ME 04101" +234702,Apple Airpods Headphones,1,150,07/24/19 15:23,"287 6th St, New York City, NY 10001" +234703,AA Batteries (4-pack),1,3.84,07/31/19 21:03,"887 8th St, San Francisco, CA 94016" +234704,Lightning Charging Cable,1,14.95,07/08/19 09:17,"498 Dogwood St, Los Angeles, CA 90001" +234705,AA Batteries (4-pack),1,3.84,07/02/19 16:42,"919 Lakeview St, Seattle, WA 98101" +234706,USB-C Charging Cable,1,11.95,07/26/19 16:23,"349 Maple St, Los Angeles, CA 90001" +234707,27in 4K Gaming Monitor,1,389.99,07/26/19 10:14,"271 Forest St, San Francisco, CA 94016" +234708,AA Batteries (4-pack),1,3.84,07/07/19 10:41,"279 Elm St, Dallas, TX 75001" +234709,Apple Airpods Headphones,1,150,07/03/19 08:21,"667 Madison St, Boston, MA 02215" +234710,Bose SoundSport Headphones,1,99.99,07/28/19 14:18,"607 Madison St, Seattle, WA 98101" +234711,Google Phone,1,600,07/12/19 21:55,"543 Johnson St, Los Angeles, CA 90001" +234712,Wired Headphones,1,11.99,07/15/19 11:03,"203 River St, Seattle, WA 98101" +234713,AA Batteries (4-pack),1,3.84,07/28/19 16:18,"57 Spruce St, Los Angeles, CA 90001" +234714,27in FHD Monitor,1,149.99,07/21/19 13:43,"218 1st St, San Francisco, CA 94016" +234715,Macbook Pro Laptop,1,1700,07/17/19 08:04,"434 Park St, Atlanta, GA 30301" +234716,Bose SoundSport Headphones,1,99.99,07/20/19 03:41,"205 Lincoln St, San Francisco, CA 94016" +234717,USB-C Charging Cable,1,11.95,07/18/19 20:56,"224 Main St, San Francisco, CA 94016" +234718,Wired Headphones,1,11.99,07/16/19 09:50,"26 North St, Portland, ME 04101" +234719,Lightning Charging Cable,1,14.95,07/24/19 09:04,"412 8th St, New York City, NY 10001" +234720,iPhone,1,700,07/23/19 10:35,"164 Church St, San Francisco, CA 94016" +234721,Wired Headphones,1,11.99,07/05/19 12:50,"262 10th St, Atlanta, GA 30301" +234722,AAA Batteries (4-pack),1,2.99,07/26/19 13:16,"826 Sunset St, San Francisco, CA 94016" +234723,34in Ultrawide Monitor,1,379.99,07/08/19 21:20,"167 Main St, Los Angeles, CA 90001" +234724,Wired Headphones,1,11.99,07/24/19 22:49,"307 Main St, Atlanta, GA 30301" +234725,34in Ultrawide Monitor,1,379.99,07/24/19 22:04,"75 Center St, Dallas, TX 75001" +234726,Lightning Charging Cable,1,14.95,07/13/19 17:57,"869 River St, New York City, NY 10001" +234727,AAA Batteries (4-pack),1,2.99,07/20/19 13:29,"502 Madison St, Dallas, TX 75001" +234728,AAA Batteries (4-pack),5,2.99,07/24/19 04:27,"645 Pine St, Austin, TX 73301" +234729,USB-C Charging Cable,1,11.95,07/12/19 10:17,"802 Adams St, New York City, NY 10001" +234730,AA Batteries (4-pack),1,3.84,07/23/19 14:34,"877 6th St, San Francisco, CA 94016" +234731,Bose SoundSport Headphones,1,99.99,07/21/19 18:35,"395 Willow St, Boston, MA 02215" +234732,Lightning Charging Cable,1,14.95,07/21/19 11:54,"824 Maple St, Seattle, WA 98101" +234733,iPhone,1,700,07/11/19 13:52,"73 Hill St, San Francisco, CA 94016" +234734,USB-C Charging Cable,2,11.95,07/06/19 07:04,"953 Madison St, Los Angeles, CA 90001" +234735,Apple Airpods Headphones,1,150,07/04/19 12:50,"213 14th St, Los Angeles, CA 90001" +234736,34in Ultrawide Monitor,1,379.99,07/22/19 09:37,"997 Elm St, San Francisco, CA 94016" +234737,Google Phone,1,600,07/31/19 22:27,"333 13th St, New York City, NY 10001" +234738,AA Batteries (4-pack),1,3.84,07/30/19 22:42,"289 9th St, Portland, OR 97035" +234739,Lightning Charging Cable,1,14.95,07/17/19 13:44,"623 Cedar St, Los Angeles, CA 90001" +234740,27in FHD Monitor,1,149.99,07/10/19 11:23,"357 Lake St, Atlanta, GA 30301" +234741,AAA Batteries (4-pack),1,2.99,07/16/19 23:52,"504 9th St, San Francisco, CA 94016" +234742,27in 4K Gaming Monitor,1,389.99,07/07/19 08:17,"873 Highland St, Boston, MA 02215" +234743,34in Ultrawide Monitor,1,379.99,07/30/19 09:45,"410 Park St, Los Angeles, CA 90001" +234744,Apple Airpods Headphones,1,150,07/18/19 09:38,"816 Cherry St, New York City, NY 10001" +234745,AAA Batteries (4-pack),1,2.99,07/19/19 17:57,"130 8th St, Portland, OR 97035" +234746,Wired Headphones,1,11.99,07/15/19 19:32,"48 Walnut St, San Francisco, CA 94016" +234747,Wired Headphones,1,11.99,07/03/19 10:47,"353 North St, Los Angeles, CA 90001" +234748,USB-C Charging Cable,1,11.95,07/10/19 09:25,"929 River St, San Francisco, CA 94016" +234749,27in FHD Monitor,1,149.99,07/07/19 14:36,"633 Elm St, Boston, MA 02215" +234750,AA Batteries (4-pack),2,3.84,07/29/19 22:43,"242 4th St, San Francisco, CA 94016" +234751,Wired Headphones,1,11.99,07/16/19 17:23,"949 Meadow St, Boston, MA 02215" +234751,USB-C Charging Cable,1,11.95,07/16/19 17:23,"949 Meadow St, Boston, MA 02215" +234752,Wired Headphones,1,11.99,07/08/19 18:56,"830 Lake St, San Francisco, CA 94016" +234753,Bose SoundSport Headphones,1,99.99,07/17/19 09:30,"744 1st St, San Francisco, CA 94016" +234754,Macbook Pro Laptop,1,1700,07/24/19 17:50,"142 Johnson St, Dallas, TX 75001" +234755,Lightning Charging Cable,1,14.95,07/20/19 20:36,"319 13th St, New York City, NY 10001" +234756,Bose SoundSport Headphones,1,99.99,07/11/19 19:30,"573 Chestnut St, San Francisco, CA 94016" +234757,AA Batteries (4-pack),2,3.84,07/11/19 18:18,"899 Hickory St, Boston, MA 02215" +234758,Apple Airpods Headphones,1,150,07/25/19 14:04,"528 Ridge St, San Francisco, CA 94016" +234759,Lightning Charging Cable,1,14.95,07/24/19 12:59,"530 Sunset St, Dallas, TX 75001" +234760,Bose SoundSport Headphones,1,99.99,07/12/19 11:03,"609 1st St, New York City, NY 10001" +234761,AAA Batteries (4-pack),2,2.99,07/08/19 17:20,"506 Cedar St, San Francisco, CA 94016" +234762,USB-C Charging Cable,1,11.95,07/13/19 13:11,"518 Jackson St, Los Angeles, CA 90001" +234763,Apple Airpods Headphones,1,150,07/09/19 20:24,"464 Adams St, Los Angeles, CA 90001" +234764,AA Batteries (4-pack),1,3.84,07/04/19 12:33,"916 Cherry St, Dallas, TX 75001" +234765,Lightning Charging Cable,1,14.95,07/08/19 00:46,"687 Jefferson St, Atlanta, GA 30301" +234766,Lightning Charging Cable,1,14.95,07/15/19 13:37,"930 Lake St, Los Angeles, CA 90001" +234767,iPhone,1,700,07/20/19 20:06,"884 8th St, Austin, TX 73301" +234768,Wired Headphones,1,11.99,07/09/19 18:40,"272 South St, Los Angeles, CA 90001" +234768,Lightning Charging Cable,1,14.95,07/09/19 18:40,"272 South St, Los Angeles, CA 90001" +234769,Wired Headphones,1,11.99,07/19/19 02:27,"488 West St, Boston, MA 02215" +234770,AAA Batteries (4-pack),2,2.99,07/21/19 15:27,"556 West St, San Francisco, CA 94016" +234771,ThinkPad Laptop,1,999.99,07/31/19 17:01,"457 Walnut St, San Francisco, CA 94016" +234772,Apple Airpods Headphones,1,150,07/22/19 13:02,"846 Lakeview St, Dallas, TX 75001" +234773,Lightning Charging Cable,1,14.95,07/20/19 11:48,"324 Hill St, New York City, NY 10001" +234774,AA Batteries (4-pack),1,3.84,07/18/19 20:06,"908 Washington St, Los Angeles, CA 90001" +234775,AA Batteries (4-pack),1,3.84,07/06/19 08:02,"953 Cherry St, Dallas, TX 75001" +234776,Wired Headphones,1,11.99,07/30/19 13:21,"842 Elm St, Seattle, WA 98101" +234777,AAA Batteries (4-pack),1,2.99,07/23/19 10:41,"370 6th St, San Francisco, CA 94016" +234778,AAA Batteries (4-pack),3,2.99,07/15/19 21:16,"297 Hickory St, San Francisco, CA 94016" +234779,AA Batteries (4-pack),3,3.84,07/30/19 15:22,"5 Wilson St, Dallas, TX 75001" +234780,USB-C Charging Cable,1,11.95,07/13/19 22:00,"526 Park St, Boston, MA 02215" +234781,AA Batteries (4-pack),1,3.84,07/16/19 01:21,"2 5th St, Seattle, WA 98101" +234782,Lightning Charging Cable,2,14.95,07/22/19 11:36,"864 1st St, Atlanta, GA 30301" +234783,Lightning Charging Cable,1,14.95,07/13/19 13:02,"197 North St, San Francisco, CA 94016" +234784,Apple Airpods Headphones,1,150,07/05/19 13:08,"334 Highland St, Atlanta, GA 30301" +234785,Wired Headphones,1,11.99,07/24/19 18:16,"680 11th St, San Francisco, CA 94016" +234786,iPhone,1,700,07/09/19 12:10,"623 Highland St, New York City, NY 10001" +,,,,, +234787,AA Batteries (4-pack),1,3.84,07/21/19 15:33,"813 4th St, Portland, OR 97035" +234788,34in Ultrawide Monitor,1,379.99,07/07/19 15:18,"161 Church St, Austin, TX 73301" +234789,Google Phone,1,600,07/06/19 10:19,"75 1st St, Austin, TX 73301" +234790,Bose SoundSport Headphones,1,99.99,07/19/19 20:46,"347 Cedar St, San Francisco, CA 94016" +234791,Bose SoundSport Headphones,1,99.99,07/10/19 11:08,"215 Sunset St, San Francisco, CA 94016" +234792,AA Batteries (4-pack),2,3.84,07/29/19 12:47,"53 Lake St, Dallas, TX 75001" +234793,Wired Headphones,1,11.99,07/09/19 12:36,"524 Madison St, Los Angeles, CA 90001" +234794,Apple Airpods Headphones,1,150,07/09/19 10:37,"667 Pine St, Austin, TX 73301" +234795,Lightning Charging Cable,1,14.95,07/01/19 11:41,"184 12th St, New York City, NY 10001" +234796,Lightning Charging Cable,3,14.95,07/18/19 09:15,"417 11th St, Los Angeles, CA 90001" +234797,USB-C Charging Cable,1,11.95,07/20/19 01:16,"478 Madison St, Seattle, WA 98101" +234798,Lightning Charging Cable,1,14.95,07/04/19 15:13,"375 Hickory St, San Francisco, CA 94016" +234799,ThinkPad Laptop,1,999.99,07/28/19 15:30,"965 Dogwood St, Dallas, TX 75001" +234800,27in 4K Gaming Monitor,1,389.99,07/19/19 13:02,"262 Hill St, Los Angeles, CA 90001" +234801,Bose SoundSport Headphones,1,99.99,07/08/19 02:26,"951 Chestnut St, Los Angeles, CA 90001" +234802,USB-C Charging Cable,1,11.95,07/04/19 20:56,"269 Cedar St, Dallas, TX 75001" +234803,Lightning Charging Cable,1,14.95,07/05/19 19:17,"693 North St, Dallas, TX 75001" +234804,ThinkPad Laptop,1,999.99,07/02/19 19:30,"498 10th St, Los Angeles, CA 90001" +234805,USB-C Charging Cable,1,11.95,07/19/19 17:21,"489 Park St, Portland, OR 97035" +234806,Lightning Charging Cable,1,14.95,07/02/19 18:36,"879 Walnut St, Atlanta, GA 30301" +234807,AA Batteries (4-pack),1,3.84,08/01/19 01:25,"403 Washington St, San Francisco, CA 94016" +234808,Lightning Charging Cable,1,14.95,07/18/19 09:08,"115 Jackson St, San Francisco, CA 94016" +234809,Wired Headphones,1,11.99,07/28/19 11:29,"606 Johnson St, Portland, OR 97035" +234810,Bose SoundSport Headphones,1,99.99,07/04/19 13:39,"223 Johnson St, Portland, ME 04101" +234811,AA Batteries (4-pack),1,3.84,07/18/19 21:03,"695 8th St, Seattle, WA 98101" +234812,Lightning Charging Cable,1,14.95,07/07/19 19:02,"47 8th St, San Francisco, CA 94016" +234813,Lightning Charging Cable,2,14.95,07/16/19 16:31,"408 Jefferson St, Boston, MA 02215" +234814,Lightning Charging Cable,2,14.95,07/29/19 06:17,"108 12th St, Seattle, WA 98101" +234814,Lightning Charging Cable,1,14.95,07/29/19 06:17,"108 12th St, Seattle, WA 98101" +234815,Wired Headphones,1,11.99,07/02/19 16:59,"50 1st St, San Francisco, CA 94016" +234816,USB-C Charging Cable,1,11.95,07/24/19 21:12,"253 Sunset St, Boston, MA 02215" +234817,Wired Headphones,2,11.99,07/07/19 14:58,"898 5th St, Seattle, WA 98101" +234818,Lightning Charging Cable,1,14.95,07/31/19 18:47,"350 11th St, New York City, NY 10001" +234819,Lightning Charging Cable,2,14.95,07/28/19 18:59,"5 Cherry St, San Francisco, CA 94016" +234820,Apple Airpods Headphones,1,150,07/27/19 12:44,"313 14th St, San Francisco, CA 94016" +234821,Bose SoundSport Headphones,1,99.99,07/12/19 14:34,"96 West St, Portland, OR 97035" +234822,Bose SoundSport Headphones,1,99.99,07/31/19 18:17,"973 Maple St, Seattle, WA 98101" +234823,Lightning Charging Cable,1,14.95,07/05/19 19:18,"926 14th St, San Francisco, CA 94016" +234824,USB-C Charging Cable,1,11.95,07/18/19 15:55,"717 1st St, Dallas, TX 75001" +234825,27in FHD Monitor,1,149.99,07/31/19 22:54,"967 Main St, New York City, NY 10001" +234826,Vareebadd Phone,1,400,07/27/19 15:09,"541 2nd St, Atlanta, GA 30301" +234827,Apple Airpods Headphones,1,150,07/21/19 22:31,"108 South St, Portland, ME 04101" +234828,Bose SoundSport Headphones,1,99.99,07/16/19 17:07,"138 Walnut St, San Francisco, CA 94016" +234829,Wired Headphones,1,11.99,07/07/19 02:13,"371 4th St, Seattle, WA 98101" +234830,iPhone,1,700,07/09/19 20:58,"116 Park St, Los Angeles, CA 90001" +234830,Apple Airpods Headphones,1,150,07/09/19 20:58,"116 Park St, Los Angeles, CA 90001" +234831,27in 4K Gaming Monitor,1,389.99,07/26/19 11:46,"678 Park St, Dallas, TX 75001" +234832,AAA Batteries (4-pack),2,2.99,07/14/19 19:57,"157 Wilson St, San Francisco, CA 94016" +234833,AAA Batteries (4-pack),2,2.99,07/16/19 20:05,"32 13th St, San Francisco, CA 94016" +234834,27in FHD Monitor,1,149.99,07/10/19 12:37,"339 13th St, New York City, NY 10001" +234835,Bose SoundSport Headphones,1,99.99,07/13/19 15:57,"311 Center St, Boston, MA 02215" +234836,Apple Airpods Headphones,1,150,07/30/19 09:40,"583 11th St, Austin, TX 73301" +234837,AAA Batteries (4-pack),1,2.99,07/09/19 18:51,"363 Elm St, Portland, OR 97035" +234838,20in Monitor,1,109.99,07/24/19 13:24,"736 Adams St, New York City, NY 10001" +234839,AAA Batteries (4-pack),1,2.99,07/21/19 20:19,"198 Park St, Austin, TX 73301" +234840,27in FHD Monitor,1,149.99,07/06/19 20:06,"431 West St, New York City, NY 10001" +234841,Bose SoundSport Headphones,1,99.99,07/27/19 12:41,"468 Jackson St, Boston, MA 02215" +234842,AAA Batteries (4-pack),2,2.99,07/14/19 19:09,"940 Main St, Atlanta, GA 30301" +234843,Apple Airpods Headphones,1,150,07/15/19 22:04,"346 5th St, Boston, MA 02215" +234844,Bose SoundSport Headphones,1,99.99,07/22/19 21:22,"901 Dogwood St, Boston, MA 02215" +234845,27in 4K Gaming Monitor,1,389.99,07/23/19 15:58,"773 Church St, Portland, OR 97035" +234846,Lightning Charging Cable,1,14.95,07/31/19 17:14,"314 Hickory St, Dallas, TX 75001" +234847,LG Washing Machine,1,600.0,07/06/19 15:09,"346 13th St, San Francisco, CA 94016" +234848,Flatscreen TV,1,300,07/07/19 13:00,"992 Walnut St, San Francisco, CA 94016" +234849,AA Batteries (4-pack),1,3.84,07/02/19 08:42,"616 Spruce St, Boston, MA 02215" +234850,Lightning Charging Cable,1,14.95,07/20/19 11:06,"366 14th St, San Francisco, CA 94016" +234851,USB-C Charging Cable,1,11.95,07/21/19 17:39,"898 Elm St, New York City, NY 10001" +234852,USB-C Charging Cable,1,11.95,07/13/19 22:18,"436 Lakeview St, San Francisco, CA 94016" +234853,USB-C Charging Cable,1,11.95,07/19/19 08:11,"139 2nd St, Los Angeles, CA 90001" +234854,AA Batteries (4-pack),1,3.84,07/13/19 20:56,"113 2nd St, Boston, MA 02215" +234855,Lightning Charging Cable,2,14.95,07/21/19 08:36,"175 Chestnut St, Atlanta, GA 30301" +234856,ThinkPad Laptop,1,999.99,07/17/19 19:18,"567 Wilson St, San Francisco, CA 94016" +234857,27in 4K Gaming Monitor,1,389.99,07/23/19 07:25,"382 7th St, Atlanta, GA 30301" +234858,Apple Airpods Headphones,1,150,07/27/19 21:32,"912 Pine St, Atlanta, GA 30301" +234859,Lightning Charging Cable,1,14.95,07/18/19 19:02,"916 North St, Los Angeles, CA 90001" +234860,USB-C Charging Cable,1,11.95,07/07/19 18:22,"699 9th St, Los Angeles, CA 90001" +234861,Wired Headphones,1,11.99,07/28/19 22:06,"171 Hickory St, New York City, NY 10001" +234862,AA Batteries (4-pack),2,3.84,07/19/19 20:52,"532 Cherry St, San Francisco, CA 94016" +234863,USB-C Charging Cable,1,11.95,07/09/19 13:22,"807 Willow St, New York City, NY 10001" +234864,AAA Batteries (4-pack),1,2.99,07/22/19 08:21,"849 14th St, Los Angeles, CA 90001" +234865,Lightning Charging Cable,1,14.95,07/23/19 17:24,"527 River St, San Francisco, CA 94016" +234866,AAA Batteries (4-pack),1,2.99,07/29/19 13:20,"293 Forest St, San Francisco, CA 94016" +234867,Wired Headphones,1,11.99,07/31/19 10:55,"853 Meadow St, Dallas, TX 75001" +234868,Apple Airpods Headphones,1,150,07/11/19 22:09,"38 North St, Seattle, WA 98101" +234868,Bose SoundSport Headphones,1,99.99,07/11/19 22:09,"38 North St, Seattle, WA 98101" +234869,Bose SoundSport Headphones,1,99.99,07/28/19 11:15,"478 Madison St, Los Angeles, CA 90001" +234870,Bose SoundSport Headphones,1,99.99,07/06/19 07:46,"607 Adams St, Portland, ME 04101" +234871,Apple Airpods Headphones,1,150,07/28/19 17:35,"446 Washington St, Los Angeles, CA 90001" +234872,AAA Batteries (4-pack),1,2.99,07/23/19 08:34,"92 4th St, Boston, MA 02215" +234873,USB-C Charging Cable,1,11.95,07/16/19 15:42,"516 4th St, Boston, MA 02215" +234874,AA Batteries (4-pack),1,3.84,07/27/19 16:11,"824 5th St, Dallas, TX 75001" +234875,USB-C Charging Cable,1,11.95,07/20/19 17:47,"271 Walnut St, Los Angeles, CA 90001" +234876,Wired Headphones,1,11.99,07/02/19 20:57,"521 Elm St, New York City, NY 10001" +234877,34in Ultrawide Monitor,1,379.99,07/29/19 08:17,"545 Meadow St, Austin, TX 73301" +234878,AA Batteries (4-pack),1,3.84,07/09/19 13:11,"443 Lakeview St, New York City, NY 10001" +234879,Macbook Pro Laptop,1,1700,07/23/19 02:53,"675 5th St, New York City, NY 10001" +234880,Wired Headphones,1,11.99,07/02/19 10:09,"928 Willow St, New York City, NY 10001" +234881,34in Ultrawide Monitor,1,379.99,07/27/19 15:00,"984 Madison St, Atlanta, GA 30301" +234882,USB-C Charging Cable,1,11.95,07/15/19 13:56,"427 Lincoln St, Seattle, WA 98101" +234883,USB-C Charging Cable,1,11.95,07/11/19 06:49,"701 7th St, San Francisco, CA 94016" +234884,AAA Batteries (4-pack),1,2.99,07/13/19 16:57,"510 Pine St, New York City, NY 10001" +234885,AAA Batteries (4-pack),1,2.99,07/29/19 19:49,"536 Meadow St, Los Angeles, CA 90001" +234886,Wired Headphones,1,11.99,07/25/19 15:38,"740 Highland St, Austin, TX 73301" +234887,USB-C Charging Cable,1,11.95,07/05/19 16:17,"703 Hickory St, Los Angeles, CA 90001" +234888,Apple Airpods Headphones,1,150,07/17/19 19:04,"265 13th St, Boston, MA 02215" +234889,AA Batteries (4-pack),1,3.84,07/23/19 11:46,"226 South St, New York City, NY 10001" +234890,Wired Headphones,1,11.99,07/20/19 19:34,"715 Spruce St, San Francisco, CA 94016" +234891,34in Ultrawide Monitor,1,379.99,07/27/19 23:47,"902 Park St, San Francisco, CA 94016" +234892,Lightning Charging Cable,1,14.95,07/23/19 10:44,"313 Elm St, Boston, MA 02215" +234893,iPhone,1,700,07/29/19 19:04,"333 Highland St, New York City, NY 10001" +234894,Bose SoundSport Headphones,1,99.99,07/12/19 13:51,"800 Sunset St, Los Angeles, CA 90001" +234895,AA Batteries (4-pack),1,3.84,07/30/19 17:42,"461 7th St, San Francisco, CA 94016" +234896,Bose SoundSport Headphones,1,99.99,07/08/19 21:54,"902 Main St, Austin, TX 73301" +234897,USB-C Charging Cable,1,11.95,07/03/19 02:52,"280 Sunset St, Seattle, WA 98101" +234898,Google Phone,1,600,07/23/19 06:21,"575 Walnut St, New York City, NY 10001" +234898,AA Batteries (4-pack),1,3.84,07/23/19 06:21,"575 Walnut St, New York City, NY 10001" +234899,Bose SoundSport Headphones,1,99.99,07/17/19 08:04,"327 4th St, San Francisco, CA 94016" +234900,Macbook Pro Laptop,1,1700,07/03/19 08:12,"385 Elm St, Atlanta, GA 30301" +234901,AAA Batteries (4-pack),1,2.99,07/16/19 10:08,"750 Center St, Boston, MA 02215" +234902,Wired Headphones,1,11.99,07/10/19 14:41,"986 Park St, San Francisco, CA 94016" +234903,Flatscreen TV,1,300,07/22/19 12:21,"837 Ridge St, San Francisco, CA 94016" +234904,Wired Headphones,1,11.99,07/02/19 21:58,"251 6th St, New York City, NY 10001" +234905,USB-C Charging Cable,1,11.95,07/10/19 08:47,"19 Park St, Portland, OR 97035" +234906,Apple Airpods Headphones,1,150,07/10/19 12:34,"700 Hill St, Dallas, TX 75001" +234906,Lightning Charging Cable,1,14.95,07/10/19 12:34,"700 Hill St, Dallas, TX 75001" +234907,Apple Airpods Headphones,1,150,07/29/19 15:50,"980 11th St, San Francisco, CA 94016" +234908,27in 4K Gaming Monitor,1,389.99,07/30/19 19:48,"230 Jackson St, New York City, NY 10001" +234909,AA Batteries (4-pack),4,3.84,07/06/19 15:57,"463 2nd St, Los Angeles, CA 90001" +234910,Lightning Charging Cable,1,14.95,07/06/19 10:51,"305 1st St, Los Angeles, CA 90001" +234911,Lightning Charging Cable,1,14.95,07/04/19 07:04,"232 8th St, Dallas, TX 75001" +234912,Lightning Charging Cable,1,14.95,07/01/19 20:13,"854 Lakeview St, Los Angeles, CA 90001" +234913,iPhone,1,700,07/07/19 18:37,"396 Jefferson St, Boston, MA 02215" +234914,Lightning Charging Cable,1,14.95,07/31/19 14:17,"842 5th St, New York City, NY 10001" +234915,AA Batteries (4-pack),3,3.84,07/09/19 19:38,"463 6th St, New York City, NY 10001" +234916,AAA Batteries (4-pack),1,2.99,07/04/19 20:16,"256 Lincoln St, Atlanta, GA 30301" +234917,Apple Airpods Headphones,1,150,07/04/19 10:24,"854 Johnson St, Boston, MA 02215" +234918,Apple Airpods Headphones,1,150,07/18/19 21:14,"257 Pine St, New York City, NY 10001" +234919,USB-C Charging Cable,1,11.95,07/01/19 23:05,"435 Church St, San Francisco, CA 94016" +234920,Wired Headphones,1,11.99,07/08/19 11:05,"661 13th St, San Francisco, CA 94016" +234921,AA Batteries (4-pack),1,3.84,07/20/19 10:05,"789 Meadow St, Austin, TX 73301" +234922,LG Dryer,1,600.0,07/22/19 15:04,"641 Center St, San Francisco, CA 94016" +234923,Lightning Charging Cable,1,14.95,07/17/19 00:00,"886 12th St, Boston, MA 02215" +234924,AA Batteries (4-pack),1,3.84,07/09/19 13:47,"611 River St, San Francisco, CA 94016" +234925,27in FHD Monitor,1,149.99,07/06/19 09:57,"213 Main St, Seattle, WA 98101" +234926,AAA Batteries (4-pack),1,2.99,07/27/19 13:24,"296 South St, San Francisco, CA 94016" +234927,USB-C Charging Cable,1,11.95,07/25/19 10:55,"659 12th St, Dallas, TX 75001" +234927,AA Batteries (4-pack),1,3.84,07/25/19 10:55,"659 12th St, Dallas, TX 75001" +234928,Apple Airpods Headphones,1,150,07/27/19 20:15,"201 14th St, San Francisco, CA 94016" +234929,Macbook Pro Laptop,1,1700,07/03/19 10:31,"610 Meadow St, Los Angeles, CA 90001" +234930,Lightning Charging Cable,1,14.95,07/12/19 13:37,"202 Wilson St, Boston, MA 02215" +234931,USB-C Charging Cable,1,11.95,07/12/19 07:49,"194 Hickory St, San Francisco, CA 94016" +234932,Lightning Charging Cable,1,14.95,07/26/19 18:23,"577 7th St, San Francisco, CA 94016" +234933,Wired Headphones,1,11.99,07/12/19 21:46,"347 Elm St, Los Angeles, CA 90001" +234934,USB-C Charging Cable,1,11.95,07/08/19 12:27,"238 Pine St, New York City, NY 10001" +234935,AA Batteries (4-pack),1,3.84,07/19/19 15:53,"219 4th St, Austin, TX 73301" +234936,27in FHD Monitor,1,149.99,07/14/19 15:44,"131 Center St, Portland, OR 97035" +234937,27in 4K Gaming Monitor,1,389.99,07/12/19 05:57,"726 5th St, Portland, OR 97035" +234938,Bose SoundSport Headphones,1,99.99,07/24/19 14:55,"745 Meadow St, Los Angeles, CA 90001" +234939,AA Batteries (4-pack),1,3.84,07/28/19 22:27,"511 Church St, New York City, NY 10001" +234940,Wired Headphones,1,11.99,07/06/19 12:50,"917 Hill St, New York City, NY 10001" +234941,Bose SoundSport Headphones,1,99.99,07/31/19 23:48,"64 Meadow St, New York City, NY 10001" +234942,Macbook Pro Laptop,1,1700,07/10/19 16:44,"489 Forest St, Los Angeles, CA 90001" +234943,Lightning Charging Cable,1,14.95,07/17/19 19:45,"588 Maple St, Portland, OR 97035" +234944,Lightning Charging Cable,1,14.95,07/21/19 17:39,"565 Church St, Seattle, WA 98101" +234945,USB-C Charging Cable,1,11.95,07/19/19 15:20,"228 Washington St, Austin, TX 73301" +234946,Macbook Pro Laptop,1,1700,07/01/19 10:16,"341 13th St, San Francisco, CA 94016" +234947,27in FHD Monitor,1,149.99,07/08/19 14:49,"495 11th St, San Francisco, CA 94016" +234948,Bose SoundSport Headphones,1,99.99,07/09/19 18:20,"163 Elm St, New York City, NY 10001" +234949,34in Ultrawide Monitor,1,379.99,07/11/19 17:22,"134 Hill St, Dallas, TX 75001" +234950,Apple Airpods Headphones,1,150,07/07/19 12:52,"855 Ridge St, Los Angeles, CA 90001" +234951,34in Ultrawide Monitor,1,379.99,07/15/19 13:50,"185 10th St, New York City, NY 10001" +234952,USB-C Charging Cable,1,11.95,07/10/19 04:52,"885 Washington St, Los Angeles, CA 90001" +234953,AAA Batteries (4-pack),1,2.99,07/21/19 12:59,"397 Hill St, New York City, NY 10001" +234954,Lightning Charging Cable,1,14.95,07/20/19 08:47,"502 Johnson St, Atlanta, GA 30301" +234955,Macbook Pro Laptop,1,1700,07/08/19 21:09,"540 River St, Boston, MA 02215" +234956,27in FHD Monitor,1,149.99,07/30/19 11:06,"351 11th St, Seattle, WA 98101" +234957,Wired Headphones,1,11.99,07/14/19 18:21,"275 Walnut St, Seattle, WA 98101" +234958,iPhone,1,700,07/06/19 20:36,"630 Dogwood St, Portland, OR 97035" +234959,Flatscreen TV,1,300,07/13/19 20:40,"511 1st St, Portland, OR 97035" +234960,Bose SoundSport Headphones,1,99.99,07/13/19 04:34,"466 9th St, Dallas, TX 75001" +234961,AAA Batteries (4-pack),1,2.99,07/31/19 08:29,"319 1st St, Boston, MA 02215" +234962,27in FHD Monitor,1,149.99,07/03/19 07:05,"737 West St, Los Angeles, CA 90001" +234963,27in 4K Gaming Monitor,1,389.99,07/14/19 02:08,"567 Pine St, San Francisco, CA 94016" +234964,AAA Batteries (4-pack),1,2.99,07/25/19 14:58,"173 Willow St, Atlanta, GA 30301" +234965,Wired Headphones,1,11.99,07/06/19 06:32,"654 Sunset St, Atlanta, GA 30301" +234966,iPhone,1,700,07/07/19 13:04,"763 2nd St, Seattle, WA 98101" +234966,Wired Headphones,1,11.99,07/07/19 13:04,"763 2nd St, Seattle, WA 98101" +234967,AA Batteries (4-pack),1,3.84,07/28/19 21:44,"316 North St, Los Angeles, CA 90001" +234968,Bose SoundSport Headphones,1,99.99,07/15/19 10:13,"825 Park St, Seattle, WA 98101" +234969,Apple Airpods Headphones,1,150,07/17/19 10:36,"715 Jackson St, Seattle, WA 98101" +234970,20in Monitor,1,109.99,07/13/19 18:11,"289 Dogwood St, Seattle, WA 98101" +234971,AAA Batteries (4-pack),2,2.99,07/11/19 13:13,"41 Washington St, San Francisco, CA 94016" +234972,27in FHD Monitor,1,149.99,07/15/19 06:48,"846 10th St, New York City, NY 10001" +234973,27in FHD Monitor,1,149.99,07/15/19 09:10,"889 North St, Los Angeles, CA 90001" +234974,AAA Batteries (4-pack),1,2.99,07/21/19 21:30,"814 Johnson St, Los Angeles, CA 90001" +234975,Apple Airpods Headphones,1,150,07/26/19 08:44,"641 Elm St, Boston, MA 02215" +234976,Vareebadd Phone,1,400,07/09/19 00:02,"513 Washington St, Los Angeles, CA 90001" +234977,20in Monitor,1,109.99,07/17/19 14:36,"809 Willow St, Los Angeles, CA 90001" +234978,AAA Batteries (4-pack),2,2.99,07/26/19 15:12,"718 Walnut St, Dallas, TX 75001" +234979,AA Batteries (4-pack),2,3.84,07/07/19 20:48,"230 13th St, Dallas, TX 75001" +234980,AAA Batteries (4-pack),2,2.99,07/15/19 17:36,"675 Lincoln St, Boston, MA 02215" +234981,Google Phone,1,600,07/11/19 11:55,"536 12th St, Boston, MA 02215" +234981,Bose SoundSport Headphones,1,99.99,07/11/19 11:55,"536 12th St, Boston, MA 02215" +234982,ThinkPad Laptop,1,999.99,07/01/19 19:36,"892 Lake St, New York City, NY 10001" +234983,Apple Airpods Headphones,1,150,07/16/19 15:33,"347 Wilson St, Austin, TX 73301" +234984,USB-C Charging Cable,1,11.95,07/31/19 16:38,"163 Park St, Los Angeles, CA 90001" +234985,ThinkPad Laptop,1,999.99,07/09/19 12:30,"489 Forest St, New York City, NY 10001" +234986,Wired Headphones,1,11.99,07/14/19 08:10,"547 Adams St, Portland, OR 97035" +234987,Macbook Pro Laptop,1,1700,07/08/19 15:48,"400 West St, Atlanta, GA 30301" +234988,USB-C Charging Cable,1,11.95,07/09/19 18:23,"498 Jefferson St, Dallas, TX 75001" +234989,USB-C Charging Cable,1,11.95,07/10/19 12:32,"329 Walnut St, Los Angeles, CA 90001" +234990,AAA Batteries (4-pack),1,2.99,07/01/19 22:19,"11 Dogwood St, Dallas, TX 75001" +234990,AAA Batteries (4-pack),4,2.99,07/01/19 22:19,"11 Dogwood St, Dallas, TX 75001" +234991,Lightning Charging Cable,1,14.95,07/23/19 08:29,"489 Adams St, Seattle, WA 98101" +234992,Flatscreen TV,1,300,07/30/19 07:13,"616 Spruce St, Boston, MA 02215" +234993,AA Batteries (4-pack),1,3.84,07/13/19 10:04,"831 Walnut St, Los Angeles, CA 90001" +234994,AA Batteries (4-pack),1,3.84,07/22/19 00:56,"299 Church St, Seattle, WA 98101" +234995,Lightning Charging Cable,1,14.95,07/10/19 15:24,"737 14th St, Austin, TX 73301" +234996,27in FHD Monitor,1,149.99,07/18/19 05:04,"421 Johnson St, Dallas, TX 75001" +234997,Apple Airpods Headphones,1,150,07/02/19 19:44,"300 Adams St, Los Angeles, CA 90001" +234998,20in Monitor,1,109.99,07/21/19 16:13,"240 Madison St, San Francisco, CA 94016" +234999,AAA Batteries (4-pack),1,2.99,07/20/19 23:19,"252 River St, Portland, OR 97035" +235000,Lightning Charging Cable,1,14.95,07/05/19 17:12,"802 Jefferson St, Los Angeles, CA 90001" +235001,Bose SoundSport Headphones,1,99.99,07/13/19 12:31,"828 Chestnut St, New York City, NY 10001" +235002,Wired Headphones,1,11.99,07/06/19 10:35,"182 Main St, Los Angeles, CA 90001" +235003,Bose SoundSport Headphones,1,99.99,07/31/19 08:52,"991 Church St, San Francisco, CA 94016" +235004,Apple Airpods Headphones,1,150,07/04/19 18:53,"465 Cedar St, San Francisco, CA 94016" +235005,Bose SoundSport Headphones,1,99.99,07/11/19 11:57,"189 11th St, New York City, NY 10001" +235006,AAA Batteries (4-pack),1,2.99,07/20/19 23:16,"343 Madison St, Los Angeles, CA 90001" +235007,Lightning Charging Cable,1,14.95,07/21/19 06:45,"687 Hill St, Atlanta, GA 30301" +235008,AA Batteries (4-pack),1,3.84,07/03/19 13:16,"397 Sunset St, Atlanta, GA 30301" +235009,AA Batteries (4-pack),2,3.84,07/25/19 21:49,"236 8th St, San Francisco, CA 94016" +235010,AA Batteries (4-pack),2,3.84,07/23/19 08:26,"842 South St, Atlanta, GA 30301" +235011,AA Batteries (4-pack),1,3.84,07/16/19 07:55,"373 6th St, San Francisco, CA 94016" +235012,Wired Headphones,1,11.99,07/26/19 18:31,"552 7th St, Los Angeles, CA 90001" +235013,AAA Batteries (4-pack),1,2.99,07/04/19 14:53,"76 Chestnut St, Atlanta, GA 30301" +235014,Bose SoundSport Headphones,1,99.99,07/18/19 12:02,"291 Maple St, Los Angeles, CA 90001" +235015,Macbook Pro Laptop,1,1700,07/26/19 20:10,"799 Lincoln St, Boston, MA 02215" +235016,Wired Headphones,1,11.99,07/11/19 22:56,"411 1st St, Los Angeles, CA 90001" +235017,AA Batteries (4-pack),1,3.84,07/30/19 22:25,"353 9th St, New York City, NY 10001" +235018,AA Batteries (4-pack),2,3.84,07/02/19 11:35,"338 Jefferson St, San Francisco, CA 94016" +235019,27in FHD Monitor,1,149.99,07/15/19 13:50,"275 4th St, New York City, NY 10001" +235020,27in FHD Monitor,1,149.99,07/18/19 07:05,"836 Wilson St, Austin, TX 73301" +235021,Bose SoundSport Headphones,1,99.99,07/04/19 03:44,"636 Maple St, Los Angeles, CA 90001" +235022,ThinkPad Laptop,1,999.99,07/09/19 14:45,"50 12th St, Los Angeles, CA 90001" +235023,AAA Batteries (4-pack),1,2.99,07/10/19 09:46,"576 Jefferson St, San Francisco, CA 94016" +235024,USB-C Charging Cable,4,11.95,07/24/19 15:43,"27 River St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +235025,Wired Headphones,1,11.99,07/02/19 01:59,"448 Chestnut St, San Francisco, CA 94016" +235026,LG Dryer,1,600.0,07/20/19 19:48,"416 4th St, Austin, TX 73301" +235027,Apple Airpods Headphones,1,150,07/31/19 20:05,"788 Adams St, Atlanta, GA 30301" +235028,Google Phone,1,600,07/18/19 16:19,"709 Elm St, San Francisco, CA 94016" +235029,Apple Airpods Headphones,1,150,07/23/19 22:33,"330 Forest St, Los Angeles, CA 90001" +235030,iPhone,1,700,07/08/19 15:14,"556 Dogwood St, Boston, MA 02215" +235031,34in Ultrawide Monitor,1,379.99,07/12/19 19:13,"12 Adams St, San Francisco, CA 94016" +235032,Lightning Charging Cable,1,14.95,07/26/19 09:26,"929 14th St, New York City, NY 10001" +235033,AA Batteries (4-pack),1,3.84,07/07/19 14:00,"744 Washington St, Atlanta, GA 30301" +235034,AA Batteries (4-pack),1,3.84,07/19/19 14:44,"811 Washington St, San Francisco, CA 94016" +235035,AA Batteries (4-pack),1,3.84,07/31/19 14:21,"6 Adams St, New York City, NY 10001" +235036,AA Batteries (4-pack),1,3.84,07/27/19 18:01,"863 Jackson St, New York City, NY 10001" +235037,LG Dryer,1,600.0,07/06/19 09:30,"815 Cedar St, San Francisco, CA 94016" +235038,Lightning Charging Cable,1,14.95,07/19/19 19:57,"614 Lakeview St, Atlanta, GA 30301" +235039,20in Monitor,1,109.99,07/23/19 09:18,"876 2nd St, New York City, NY 10001" +235040,Wired Headphones,1,11.99,07/13/19 21:41,"827 8th St, San Francisco, CA 94016" +235041,LG Washing Machine,1,600.0,07/03/19 17:51,"421 Center St, San Francisco, CA 94016" +235042,Wired Headphones,1,11.99,07/20/19 14:09,"897 Walnut St, San Francisco, CA 94016" +235043,ThinkPad Laptop,1,999.99,07/02/19 17:00,"163 Cherry St, Boston, MA 02215" +235044,34in Ultrawide Monitor,1,379.99,07/27/19 09:22,"908 Adams St, San Francisco, CA 94016" +235045,27in FHD Monitor,1,149.99,07/03/19 10:49,"552 Willow St, Boston, MA 02215" +235046,AAA Batteries (4-pack),1,2.99,07/08/19 14:17,"521 North St, San Francisco, CA 94016" +235047,AAA Batteries (4-pack),1,2.99,07/25/19 17:45,"605 Walnut St, Portland, OR 97035" +235048,Wired Headphones,1,11.99,07/17/19 19:41,"240 Elm St, San Francisco, CA 94016" +235049,Apple Airpods Headphones,1,150,07/03/19 16:02,"779 Lake St, Boston, MA 02215" +235050,AA Batteries (4-pack),1,3.84,07/28/19 11:39,"857 Johnson St, Los Angeles, CA 90001" +235051,Apple Airpods Headphones,1,150,07/03/19 20:15,"650 Meadow St, New York City, NY 10001" +235052,Lightning Charging Cable,1,14.95,07/21/19 10:47,"153 9th St, Boston, MA 02215" +235053,34in Ultrawide Monitor,1,379.99,07/19/19 11:52,"792 14th St, Seattle, WA 98101" +235054,AAA Batteries (4-pack),1,2.99,07/01/19 13:22,"590 River St, San Francisco, CA 94016" +235055,Macbook Pro Laptop,1,1700,07/29/19 17:31,"677 Madison St, Boston, MA 02215" +235056,Wired Headphones,2,11.99,07/09/19 21:11,"653 Pine St, New York City, NY 10001" +235057,AAA Batteries (4-pack),1,2.99,07/13/19 10:07,"263 Lincoln St, San Francisco, CA 94016" +235058,Bose SoundSport Headphones,1,99.99,07/17/19 22:24,"585 4th St, San Francisco, CA 94016" +235059,27in FHD Monitor,1,149.99,07/29/19 10:12,"756 Ridge St, Atlanta, GA 30301" +235060,USB-C Charging Cable,1,11.95,07/15/19 08:23,"152 Lincoln St, Austin, TX 73301" +235061,Apple Airpods Headphones,1,150,07/24/19 00:55,"63 River St, Los Angeles, CA 90001" +235062,Lightning Charging Cable,1,14.95,07/28/19 00:01,"819 12th St, San Francisco, CA 94016" +235063,AA Batteries (4-pack),1,3.84,07/07/19 11:40,"542 Lakeview St, New York City, NY 10001" +235064,USB-C Charging Cable,1,11.95,07/15/19 12:27,"970 Elm St, New York City, NY 10001" +235065,USB-C Charging Cable,1,11.95,07/18/19 13:32,"760 Sunset St, San Francisco, CA 94016" +235066,iPhone,1,700,07/22/19 22:24,"339 Park St, New York City, NY 10001" +235066,Wired Headphones,1,11.99,07/22/19 22:24,"339 Park St, New York City, NY 10001" +235067,Google Phone,1,600,07/13/19 17:35,"747 Meadow St, Austin, TX 73301" +235068,AAA Batteries (4-pack),3,2.99,07/02/19 00:38,"396 Johnson St, Dallas, TX 75001" +235069,20in Monitor,1,109.99,07/25/19 16:16,"506 Forest St, San Francisco, CA 94016" +235070,Apple Airpods Headphones,1,150,07/05/19 15:37,"786 Maple St, San Francisco, CA 94016" +235071,Flatscreen TV,1,300,07/18/19 23:38,"921 2nd St, New York City, NY 10001" +235072,AA Batteries (4-pack),1,3.84,07/29/19 15:00,"360 Washington St, Los Angeles, CA 90001" +235073,Bose SoundSport Headphones,1,99.99,07/02/19 20:43,"81 2nd St, Seattle, WA 98101" +235074,AAA Batteries (4-pack),1,2.99,07/19/19 16:02,"955 Dogwood St, San Francisco, CA 94016" +235075,USB-C Charging Cable,1,11.95,07/26/19 11:32,"866 12th St, Atlanta, GA 30301" +235076,Wired Headphones,1,11.99,07/15/19 13:04,"552 7th St, Atlanta, GA 30301" +235077,20in Monitor,1,109.99,07/21/19 12:07,"168 Jefferson St, San Francisco, CA 94016" +235078,Bose SoundSport Headphones,1,99.99,07/04/19 03:52,"456 7th St, San Francisco, CA 94016" +235079,Bose SoundSport Headphones,1,99.99,07/20/19 17:18,"176 12th St, Los Angeles, CA 90001" +235080,Apple Airpods Headphones,1,150,07/30/19 19:00,"956 North St, Boston, MA 02215" +235081,ThinkPad Laptop,1,999.99,07/17/19 13:45,"761 Park St, Atlanta, GA 30301" +235082,AAA Batteries (4-pack),1,2.99,07/09/19 20:55,"741 11th St, San Francisco, CA 94016" +235083,Apple Airpods Headphones,1,150,07/11/19 15:56,"479 River St, San Francisco, CA 94016" +235084,Lightning Charging Cable,1,14.95,07/08/19 16:28,"830 Elm St, New York City, NY 10001" +235085,Lightning Charging Cable,1,14.95,07/08/19 22:25,"749 1st St, Seattle, WA 98101" +235086,Wired Headphones,1,11.99,07/20/19 17:01,"412 12th St, Los Angeles, CA 90001" +235087,ThinkPad Laptop,1,999.99,07/07/19 07:58,"39 1st St, New York City, NY 10001" +235088,ThinkPad Laptop,1,999.99,07/20/19 11:32,"915 Lincoln St, San Francisco, CA 94016" +235089,USB-C Charging Cable,1,11.95,07/31/19 18:04,"337 4th St, San Francisco, CA 94016" +235090,AAA Batteries (4-pack),1,2.99,07/09/19 21:46,"990 5th St, New York City, NY 10001" +235091,iPhone,1,700,07/08/19 14:07,"452 Wilson St, Dallas, TX 75001" +235092,Lightning Charging Cable,1,14.95,07/21/19 14:25,"679 13th St, Austin, TX 73301" +235093,AA Batteries (4-pack),2,3.84,07/29/19 09:50,"707 Park St, Dallas, TX 75001" +235094,Lightning Charging Cable,1,14.95,07/22/19 19:45,"340 Forest St, San Francisco, CA 94016" +235095,USB-C Charging Cable,1,11.95,07/02/19 13:44,"468 West St, Los Angeles, CA 90001" +235096,Apple Airpods Headphones,1,150,07/24/19 18:53,"49 Adams St, Portland, OR 97035" +235097,Apple Airpods Headphones,1,150,07/07/19 17:21,"766 Maple St, Austin, TX 73301" +235098,USB-C Charging Cable,1,11.95,07/09/19 17:33,"614 9th St, Portland, OR 97035" +235099,27in 4K Gaming Monitor,1,389.99,07/18/19 06:57,"79 Johnson St, Portland, ME 04101" +235100,Apple Airpods Headphones,1,150,07/20/19 17:31,"246 Hill St, New York City, NY 10001" +235101,20in Monitor,1,109.99,07/27/19 16:02,"415 Meadow St, Dallas, TX 75001" +235102,Apple Airpods Headphones,1,150,07/26/19 21:17,"756 Church St, Portland, ME 04101" +235103,USB-C Charging Cable,1,11.95,07/13/19 09:38,"178 5th St, New York City, NY 10001" +235104,iPhone,1,700,07/04/19 22:25,"879 Spruce St, New York City, NY 10001" +235104,Apple Airpods Headphones,1,150,07/04/19 22:25,"879 Spruce St, New York City, NY 10001" +235105,Lightning Charging Cable,1,14.95,07/26/19 14:08,"863 7th St, Los Angeles, CA 90001" +235106,Wired Headphones,1,11.99,07/01/19 21:15,"812 Church St, Seattle, WA 98101" +235107,Wired Headphones,1,11.99,07/23/19 16:34,"499 Park St, San Francisco, CA 94016" +235108,ThinkPad Laptop,1,999.99,07/05/19 12:06,"239 Meadow St, Boston, MA 02215" +235109,AAA Batteries (4-pack),2,2.99,07/30/19 13:13,"587 Cedar St, Portland, OR 97035" +235110,20in Monitor,1,109.99,07/15/19 11:57,"972 11th St, Austin, TX 73301" +235111,AA Batteries (4-pack),1,3.84,07/19/19 06:42,"80 9th St, Portland, OR 97035" +235112,USB-C Charging Cable,1,11.95,07/02/19 22:57,"605 Meadow St, Boston, MA 02215" +235113,AAA Batteries (4-pack),1,2.99,07/10/19 20:07,"676 Johnson St, San Francisco, CA 94016" +235114,20in Monitor,1,109.99,07/08/19 11:20,"280 Hickory St, San Francisco, CA 94016" +235115,Lightning Charging Cable,1,14.95,07/17/19 15:33,"440 Meadow St, Los Angeles, CA 90001" +235116,Apple Airpods Headphones,1,150,07/17/19 13:54,"185 Willow St, Seattle, WA 98101" +235117,Lightning Charging Cable,1,14.95,07/05/19 16:24,"985 Forest St, Austin, TX 73301" +235118,Wired Headphones,1,11.99,07/05/19 19:06,"662 11th St, San Francisco, CA 94016" +235119,AA Batteries (4-pack),2,3.84,07/26/19 12:17,"687 Sunset St, Los Angeles, CA 90001" +235120,Wired Headphones,1,11.99,07/16/19 18:58,"65 Jackson St, Los Angeles, CA 90001" +235121,27in FHD Monitor,1,149.99,07/24/19 17:00,"332 8th St, New York City, NY 10001" +235122,Flatscreen TV,1,300,07/29/19 12:01,"919 7th St, San Francisco, CA 94016" +235123,Lightning Charging Cable,1,14.95,07/09/19 11:10,"923 North St, Portland, OR 97035" +235124,Bose SoundSport Headphones,1,99.99,07/08/19 09:16,"920 Jefferson St, Dallas, TX 75001" +235125,AA Batteries (4-pack),2,3.84,07/23/19 16:17,"10 Hickory St, Boston, MA 02215" +235126,USB-C Charging Cable,1,11.95,07/03/19 12:46,"690 14th St, New York City, NY 10001" +235127,AAA Batteries (4-pack),2,2.99,07/21/19 13:37,"741 9th St, New York City, NY 10001" +235128,Apple Airpods Headphones,1,150,07/22/19 22:48,"461 Center St, Portland, OR 97035" +235129,USB-C Charging Cable,1,11.95,07/15/19 12:39,"746 River St, Dallas, TX 75001" +235129,AAA Batteries (4-pack),3,2.99,07/15/19 12:39,"746 River St, Dallas, TX 75001" +235130,Google Phone,1,600,07/05/19 17:01,"487 Maple St, Los Angeles, CA 90001" +235130,USB-C Charging Cable,1,11.95,07/05/19 17:01,"487 Maple St, Los Angeles, CA 90001" +235131,Vareebadd Phone,1,400,07/02/19 00:39,"541 Walnut St, San Francisco, CA 94016" +235131,USB-C Charging Cable,1,11.95,07/02/19 00:39,"541 Walnut St, San Francisco, CA 94016" +235132,34in Ultrawide Monitor,1,379.99,07/15/19 12:20,"611 Center St, San Francisco, CA 94016" +235133,AA Batteries (4-pack),2,3.84,07/27/19 23:12,"954 Cedar St, Boston, MA 02215" +235134,Google Phone,1,600,07/29/19 12:18,"490 Cherry St, Dallas, TX 75001" +235135,ThinkPad Laptop,1,999.99,07/16/19 11:53,"882 South St, San Francisco, CA 94016" +235135,Wired Headphones,1,11.99,07/16/19 11:53,"882 South St, San Francisco, CA 94016" +235136,AA Batteries (4-pack),2,3.84,07/31/19 08:40,"553 Hill St, New York City, NY 10001" +235137,Flatscreen TV,1,300,07/20/19 15:13,"46 Madison St, Portland, OR 97035" +235138,AAA Batteries (4-pack),1,2.99,07/31/19 23:01,"229 Church St, Austin, TX 73301" +235139,iPhone,1,700,07/27/19 18:19,"934 Highland St, Los Angeles, CA 90001" +235139,Apple Airpods Headphones,1,150,07/27/19 18:19,"934 Highland St, Los Angeles, CA 90001" +235140,27in FHD Monitor,1,149.99,07/08/19 16:27,"106 Elm St, Dallas, TX 75001" +235141,Wired Headphones,1,11.99,07/22/19 07:47,"901 Highland St, Portland, OR 97035" +235142,ThinkPad Laptop,1,999.99,07/15/19 20:28,"790 12th St, New York City, NY 10001" +235143,Macbook Pro Laptop,1,1700,07/02/19 14:00,"819 12th St, San Francisco, CA 94016" +235144,Wired Headphones,1,11.99,07/18/19 22:00,"438 North St, New York City, NY 10001" +235145,AAA Batteries (4-pack),1,2.99,07/18/19 18:57,"893 Pine St, New York City, NY 10001" +235146,Apple Airpods Headphones,1,150,07/19/19 11:00,"329 Pine St, New York City, NY 10001" +235147,Google Phone,1,600,07/28/19 13:49,"145 11th St, Atlanta, GA 30301" +235148,Bose SoundSport Headphones,1,99.99,07/26/19 18:46,"138 10th St, Dallas, TX 75001" +235149,Apple Airpods Headphones,1,150,07/18/19 03:32,"938 Madison St, Atlanta, GA 30301" +235150,Apple Airpods Headphones,1,150,07/20/19 20:57,"721 Madison St, San Francisco, CA 94016" +235151,AA Batteries (4-pack),1,3.84,07/10/19 12:01,"283 River St, Los Angeles, CA 90001" +235152,27in FHD Monitor,1,149.99,07/17/19 16:56,"77 Park St, Los Angeles, CA 90001" +235153,Lightning Charging Cable,1,14.95,07/09/19 23:23,"744 Johnson St, San Francisco, CA 94016" +235154,Wired Headphones,1,11.99,07/06/19 18:02,"754 South St, Portland, ME 04101" +235155,AAA Batteries (4-pack),1,2.99,07/13/19 13:36,"177 Johnson St, Atlanta, GA 30301" +235156,Bose SoundSport Headphones,1,99.99,07/28/19 22:12,"125 Johnson St, Austin, TX 73301" +235157,Bose SoundSport Headphones,1,99.99,07/08/19 09:23,"411 Cedar St, San Francisco, CA 94016" +235158,Lightning Charging Cable,1,14.95,07/07/19 08:17,"207 Adams St, New York City, NY 10001" +235159,USB-C Charging Cable,1,11.95,07/04/19 19:16,"210 Elm St, San Francisco, CA 94016" +235159,Apple Airpods Headphones,1,150,07/04/19 19:16,"210 Elm St, San Francisco, CA 94016" +235160,AA Batteries (4-pack),1,3.84,07/31/19 21:16,"463 Lake St, San Francisco, CA 94016" +235161,Apple Airpods Headphones,1,150,07/18/19 06:14,"684 Forest St, Boston, MA 02215" +235162,AA Batteries (4-pack),1,3.84,07/06/19 01:06,"751 Dogwood St, Los Angeles, CA 90001" +235163,AAA Batteries (4-pack),4,2.99,07/21/19 14:26,"223 Walnut St, San Francisco, CA 94016" +235164,AA Batteries (4-pack),3,3.84,07/15/19 10:49,"970 Main St, San Francisco, CA 94016" +235165,Flatscreen TV,1,300,07/31/19 16:44,"789 Spruce St, Los Angeles, CA 90001" +235166,Apple Airpods Headphones,1,150,07/29/19 21:06,"823 8th St, San Francisco, CA 94016" +235167,Flatscreen TV,1,300,07/27/19 05:38,"169 Lakeview St, New York City, NY 10001" +235168,ThinkPad Laptop,1,999.99,07/31/19 21:11,"720 Dogwood St, Atlanta, GA 30301" +235169,27in FHD Monitor,1,149.99,07/04/19 13:07,"592 Madison St, New York City, NY 10001" +235170,AAA Batteries (4-pack),2,2.99,07/08/19 13:17,"642 Lincoln St, Atlanta, GA 30301" +235171,Apple Airpods Headphones,1,150,07/20/19 13:33,"910 Dogwood St, Dallas, TX 75001" +235172,AA Batteries (4-pack),1,3.84,07/26/19 13:56,"515 1st St, New York City, NY 10001" +235173,AA Batteries (4-pack),1,3.84,07/04/19 18:51,"288 Park St, Dallas, TX 75001" +235174,AAA Batteries (4-pack),1,2.99,07/02/19 13:00,"255 11th St, San Francisco, CA 94016" +235175,Macbook Pro Laptop,1,1700,07/17/19 23:02,"380 Highland St, San Francisco, CA 94016" +235176,iPhone,1,700,07/02/19 11:23,"22 West St, San Francisco, CA 94016" +235177,Bose SoundSport Headphones,1,99.99,07/09/19 14:57,"45 10th St, San Francisco, CA 94016" +235178,Lightning Charging Cable,1,14.95,07/24/19 18:50,"710 Ridge St, New York City, NY 10001" +235179,34in Ultrawide Monitor,1,379.99,07/02/19 14:20,"750 Cherry St, Los Angeles, CA 90001" +235180,Bose SoundSport Headphones,1,99.99,07/21/19 07:10,"650 South St, Dallas, TX 75001" +235181,USB-C Charging Cable,1,11.95,07/11/19 20:00,"943 Sunset St, Dallas, TX 75001" +235182,Bose SoundSport Headphones,1,99.99,07/10/19 02:46,"500 1st St, New York City, NY 10001" +235183,Lightning Charging Cable,1,14.95,07/05/19 15:44,"118 Cherry St, Seattle, WA 98101" +235184,AA Batteries (4-pack),1,3.84,07/06/19 13:12,"671 Church St, Austin, TX 73301" +235185,Google Phone,1,600,07/14/19 23:58,"325 5th St, Atlanta, GA 30301" +235186,27in FHD Monitor,1,149.99,07/07/19 07:19,"80 12th St, Dallas, TX 75001" +235187,Bose SoundSport Headphones,1,99.99,07/08/19 20:57,"310 Cherry St, Portland, OR 97035" +235188,20in Monitor,1,109.99,07/06/19 21:54,"487 Main St, San Francisco, CA 94016" +235189,USB-C Charging Cable,1,11.95,07/10/19 09:40,"941 South St, Seattle, WA 98101" +235190,Macbook Pro Laptop,1,1700,07/04/19 14:53,"727 5th St, Los Angeles, CA 90001" +235191,AA Batteries (4-pack),1,3.84,07/20/19 06:27,"391 North St, Los Angeles, CA 90001" +235192,34in Ultrawide Monitor,1,379.99,07/24/19 19:46,"5 Sunset St, Dallas, TX 75001" +235193,AAA Batteries (4-pack),2,2.99,07/19/19 18:42,"540 North St, Los Angeles, CA 90001" +235194,AA Batteries (4-pack),1,3.84,07/29/19 10:25,"517 1st St, San Francisco, CA 94016" +235195,Vareebadd Phone,1,400,07/11/19 12:53,"461 9th St, Austin, TX 73301" +235196,34in Ultrawide Monitor,1,379.99,07/29/19 14:20,"725 Lake St, San Francisco, CA 94016" +235197,34in Ultrawide Monitor,1,379.99,07/04/19 18:25,"9 8th St, Boston, MA 02215" +235198,Wired Headphones,1,11.99,07/31/19 13:54,"542 11th St, Boston, MA 02215" +235199,Wired Headphones,1,11.99,07/13/19 10:04,"473 Lake St, Portland, OR 97035" +235200,AAA Batteries (4-pack),2,2.99,07/01/19 11:47,"4 9th St, San Francisco, CA 94016" +235201,Bose SoundSport Headphones,1,99.99,07/14/19 04:56,"762 10th St, Seattle, WA 98101" +235202,Wired Headphones,1,11.99,07/17/19 14:58,"129 Hill St, San Francisco, CA 94016" +235203,34in Ultrawide Monitor,1,379.99,07/13/19 12:47,"102 River St, Portland, OR 97035" +235204,USB-C Charging Cable,1,11.95,07/16/19 11:34,"406 11th St, San Francisco, CA 94016" +235205,AAA Batteries (4-pack),2,2.99,07/01/19 21:56,"71 Elm St, Los Angeles, CA 90001" +235206,Wired Headphones,1,11.99,07/24/19 19:00,"514 Jefferson St, Los Angeles, CA 90001" +235207,Lightning Charging Cable,1,14.95,07/12/19 15:41,"674 Chestnut St, Dallas, TX 75001" +235208,Macbook Pro Laptop,1,1700,07/20/19 09:42,"49 North St, New York City, NY 10001" +235209,20in Monitor,1,109.99,07/17/19 22:19,"483 Cedar St, Los Angeles, CA 90001" +235210,Lightning Charging Cable,2,14.95,07/06/19 17:01,"52 Dogwood St, Boston, MA 02215" +235211,Wired Headphones,1,11.99,07/23/19 02:30,"393 Maple St, Boston, MA 02215" +235212,AAA Batteries (4-pack),1,2.99,07/27/19 13:14,"545 Ridge St, Boston, MA 02215" +235213,iPhone,1,700,07/22/19 19:18,"655 Meadow St, Los Angeles, CA 90001" +235214,AA Batteries (4-pack),1,3.84,07/16/19 11:37,"415 River St, San Francisco, CA 94016" +235215,27in FHD Monitor,1,149.99,07/16/19 16:19,"810 Adams St, Portland, OR 97035" +235216,Wired Headphones,1,11.99,07/18/19 00:00,"861 6th St, Seattle, WA 98101" +235217,USB-C Charging Cable,1,11.95,07/13/19 10:34,"995 River St, Atlanta, GA 30301" +235218,Lightning Charging Cable,2,14.95,07/29/19 17:43,"301 Jefferson St, Atlanta, GA 30301" +235219,AA Batteries (4-pack),1,3.84,07/06/19 15:45,"559 Willow St, San Francisco, CA 94016" +235220,Bose SoundSport Headphones,1,99.99,07/31/19 13:56,"740 Willow St, New York City, NY 10001" +235221,34in Ultrawide Monitor,1,379.99,07/14/19 14:28,"569 Cherry St, Boston, MA 02215" +235222,20in Monitor,1,109.99,07/17/19 23:42,"79 Jackson St, Dallas, TX 75001" +235222,AA Batteries (4-pack),3,3.84,07/17/19 23:42,"79 Jackson St, Dallas, TX 75001" +235223,USB-C Charging Cable,1,11.95,07/06/19 19:54,"185 6th St, Seattle, WA 98101" +235224,Lightning Charging Cable,1,14.95,07/07/19 14:03,"316 8th St, Los Angeles, CA 90001" +235225,AAA Batteries (4-pack),2,2.99,07/12/19 12:18,"939 Washington St, San Francisco, CA 94016" +235226,27in 4K Gaming Monitor,1,389.99,07/19/19 17:21,"960 Highland St, New York City, NY 10001" +235227,Wired Headphones,1,11.99,07/13/19 10:21,"967 Cedar St, Seattle, WA 98101" +235228,AA Batteries (4-pack),1,3.84,07/18/19 22:46,"247 7th St, Los Angeles, CA 90001" +235229,Apple Airpods Headphones,1,150,07/26/19 20:29,"415 Cedar St, Atlanta, GA 30301" +235230,AAA Batteries (4-pack),1,2.99,07/04/19 13:00,"658 Cedar St, San Francisco, CA 94016" +235231,USB-C Charging Cable,1,11.95,07/07/19 08:52,"734 8th St, Dallas, TX 75001" +235232,Lightning Charging Cable,1,14.95,07/24/19 11:19,"191 Adams St, Portland, OR 97035" +235233,AA Batteries (4-pack),1,3.84,07/10/19 17:06,"656 Sunset St, San Francisco, CA 94016" +235234,Flatscreen TV,1,300,07/14/19 09:20,"745 12th St, New York City, NY 10001" +235235,27in FHD Monitor,1,149.99,07/31/19 13:37,"269 Ridge St, Atlanta, GA 30301" +235236,Apple Airpods Headphones,1,150,07/01/19 12:26,"530 Wilson St, Los Angeles, CA 90001" +235237,Wired Headphones,1,11.99,07/01/19 19:18,"214 4th St, Los Angeles, CA 90001" +235238,Lightning Charging Cable,1,14.95,07/04/19 22:37,"825 Spruce St, Atlanta, GA 30301" +235239,Apple Airpods Headphones,1,150,07/17/19 09:15,"543 13th St, Los Angeles, CA 90001" +235240,AAA Batteries (4-pack),2,2.99,07/04/19 14:35,"372 River St, Boston, MA 02215" +235241,27in FHD Monitor,1,149.99,07/05/19 19:37,"673 Main St, San Francisco, CA 94016" +235242,iPhone,1,700,07/24/19 07:49,"975 Lakeview St, Los Angeles, CA 90001" +235243,Bose SoundSport Headphones,1,99.99,07/11/19 18:27,"896 Johnson St, Los Angeles, CA 90001" +235244,34in Ultrawide Monitor,1,379.99,07/27/19 18:25,"549 River St, Los Angeles, CA 90001" +235245,Wired Headphones,1,11.99,07/14/19 08:46,"852 6th St, New York City, NY 10001" +235246,iPhone,1,700,07/20/19 10:30,"753 River St, New York City, NY 10001" +235247,Lightning Charging Cable,1,14.95,07/30/19 22:57,"449 Washington St, Boston, MA 02215" +235248,AA Batteries (4-pack),1,3.84,07/20/19 00:53,"948 Church St, San Francisco, CA 94016" +235249,Vareebadd Phone,1,400,07/19/19 17:30,"753 Meadow St, San Francisco, CA 94016" +235249,USB-C Charging Cable,1,11.95,07/19/19 17:30,"753 Meadow St, San Francisco, CA 94016" +235250,Vareebadd Phone,1,400,07/30/19 19:49,"513 Lincoln St, San Francisco, CA 94016" +235251,USB-C Charging Cable,1,11.95,07/05/19 17:21,"993 Forest St, Seattle, WA 98101" +235252,Apple Airpods Headphones,1,150,07/30/19 18:35,"666 Willow St, Seattle, WA 98101" +235253,Lightning Charging Cable,1,14.95,07/14/19 14:00,"843 Adams St, Portland, OR 97035" +235254,Macbook Pro Laptop,1,1700,07/21/19 12:01,"410 13th St, New York City, NY 10001" +235255,AA Batteries (4-pack),1,3.84,07/30/19 12:30,"768 Madison St, San Francisco, CA 94016" +235256,27in FHD Monitor,1,149.99,07/09/19 17:43,"589 10th St, Dallas, TX 75001" +235257,Wired Headphones,1,11.99,07/14/19 13:56,"67 Washington St, San Francisco, CA 94016" +235258,Wired Headphones,1,11.99,07/13/19 20:10,"255 South St, San Francisco, CA 94016" +235259,USB-C Charging Cable,1,11.95,07/29/19 19:56,"741 4th St, San Francisco, CA 94016" +235260,Bose SoundSport Headphones,1,99.99,07/26/19 21:38,"443 10th St, Boston, MA 02215" +235261,iPhone,1,700,07/08/19 14:14,"914 13th St, Los Angeles, CA 90001" +235262,USB-C Charging Cable,1,11.95,07/14/19 15:22,"66 Madison St, Portland, OR 97035" +235263,Wired Headphones,2,11.99,07/11/19 06:28,"507 Walnut St, San Francisco, CA 94016" +235264,USB-C Charging Cable,2,11.95,07/03/19 05:02,"889 Washington St, Boston, MA 02215" +235265,AAA Batteries (4-pack),1,2.99,07/19/19 16:10,"250 8th St, Seattle, WA 98101" +235266,AA Batteries (4-pack),1,3.84,07/17/19 00:52,"65 Wilson St, Boston, MA 02215" +235267,Flatscreen TV,1,300,07/20/19 10:29,"127 11th St, New York City, NY 10001" +235268,USB-C Charging Cable,1,11.95,07/17/19 15:38,"187 9th St, Los Angeles, CA 90001" +235269,AAA Batteries (4-pack),3,2.99,07/03/19 16:59,"844 North St, San Francisco, CA 94016" +235270,AAA Batteries (4-pack),1,2.99,07/29/19 16:11,"901 Maple St, San Francisco, CA 94016" +235271,iPhone,1,700,07/19/19 18:10,"816 Lakeview St, New York City, NY 10001" +235271,Lightning Charging Cable,1,14.95,07/19/19 18:10,"816 Lakeview St, New York City, NY 10001" +235272,USB-C Charging Cable,1,11.95,07/20/19 10:41,"508 Chestnut St, Los Angeles, CA 90001" +235273,Bose SoundSport Headphones,1,99.99,07/11/19 01:00,"411 8th St, San Francisco, CA 94016" +235274,AA Batteries (4-pack),2,3.84,07/05/19 16:54,"520 Dogwood St, Atlanta, GA 30301" +235275,Apple Airpods Headphones,1,150,07/15/19 00:45,"915 12th St, Seattle, WA 98101" +235276,Bose SoundSport Headphones,1,99.99,07/23/19 18:13,"844 2nd St, San Francisco, CA 94016" +235277,LG Washing Machine,1,600.0,07/05/19 19:10,"469 South St, Austin, TX 73301" +235278,Bose SoundSport Headphones,1,99.99,07/30/19 22:35,"654 River St, Portland, ME 04101" +235279,AA Batteries (4-pack),1,3.84,07/18/19 13:50,"696 Pine St, Seattle, WA 98101" +235280,Wired Headphones,2,11.99,07/21/19 21:44,"486 Highland St, Atlanta, GA 30301" +235281,AAA Batteries (4-pack),3,2.99,07/09/19 22:42,"549 Cedar St, Dallas, TX 75001" +235282,USB-C Charging Cable,1,11.95,07/24/19 17:32,"498 Pine St, Los Angeles, CA 90001" +235283,AAA Batteries (4-pack),2,2.99,07/24/19 22:53,"376 Ridge St, San Francisco, CA 94016" +235284,ThinkPad Laptop,1,999.99,07/26/19 18:41,"306 Cherry St, Atlanta, GA 30301" +235285,Apple Airpods Headphones,1,150,07/17/19 21:24,"171 11th St, Los Angeles, CA 90001" +235286,27in FHD Monitor,1,149.99,07/07/19 17:36,"548 Cedar St, Boston, MA 02215" +235287,ThinkPad Laptop,1,999.99,07/22/19 15:18,"710 7th St, Boston, MA 02215" +235288,USB-C Charging Cable,1,11.95,07/30/19 13:58,"541 Chestnut St, New York City, NY 10001" +235289,AA Batteries (4-pack),1,3.84,07/18/19 14:08,"625 Johnson St, Atlanta, GA 30301" +235290,27in 4K Gaming Monitor,1,389.99,07/17/19 13:48,"559 Maple St, Los Angeles, CA 90001" +235291,AAA Batteries (4-pack),1,2.99,07/08/19 08:56,"434 Main St, Dallas, TX 75001" +235292,Lightning Charging Cable,1,14.95,07/01/19 14:59,"507 River St, New York City, NY 10001" +235293,Flatscreen TV,1,300,07/30/19 12:02,"490 Lake St, Seattle, WA 98101" +235294,USB-C Charging Cable,1,11.95,07/28/19 14:33,"596 Lincoln St, San Francisco, CA 94016" +235295,Apple Airpods Headphones,1,150,07/03/19 15:33,"694 Dogwood St, Dallas, TX 75001" +235296,AA Batteries (4-pack),5,3.84,07/10/19 12:15,"516 4th St, Los Angeles, CA 90001" +235297,Flatscreen TV,1,300,07/03/19 14:23,"642 North St, New York City, NY 10001" +235298,20in Monitor,1,109.99,07/11/19 22:42,"799 Center St, New York City, NY 10001" +235298,AA Batteries (4-pack),2,3.84,07/11/19 22:42,"799 Center St, New York City, NY 10001" +235299,AA Batteries (4-pack),1,3.84,07/27/19 18:04,"745 Maple St, Dallas, TX 75001" +235300,Wired Headphones,1,11.99,07/26/19 22:03,"938 South St, Austin, TX 73301" +235301,Bose SoundSport Headphones,1,99.99,07/30/19 12:54,"557 4th St, Portland, OR 97035" +235302,USB-C Charging Cable,1,11.95,07/12/19 19:04,"783 12th St, Dallas, TX 75001" +235303,USB-C Charging Cable,1,11.95,07/18/19 14:43,"864 Highland St, Boston, MA 02215" +235304,27in FHD Monitor,1,149.99,07/23/19 22:09,"449 7th St, Atlanta, GA 30301" +235305,27in 4K Gaming Monitor,1,389.99,07/11/19 08:44,"15 South St, Los Angeles, CA 90001" +235306,AA Batteries (4-pack),1,3.84,07/17/19 12:21,"288 9th St, Austin, TX 73301" +235307,Wired Headphones,1,11.99,07/17/19 20:48,"432 Lakeview St, Los Angeles, CA 90001" +235308,AA Batteries (4-pack),1,3.84,07/29/19 10:48,"606 Forest St, San Francisco, CA 94016" +235309,AA Batteries (4-pack),2,3.84,07/13/19 14:48,"52 12th St, Dallas, TX 75001" +235310,Macbook Pro Laptop,1,1700,07/22/19 23:11,"606 Walnut St, San Francisco, CA 94016" +235311,AA Batteries (4-pack),1,3.84,07/01/19 10:45,"259 Johnson St, Los Angeles, CA 90001" +235312,27in 4K Gaming Monitor,1,389.99,07/28/19 23:56,"324 Spruce St, Portland, OR 97035" +235313,Macbook Pro Laptop,1,1700,07/30/19 04:19,"246 Cedar St, Seattle, WA 98101" +235314,AAA Batteries (4-pack),1,2.99,07/10/19 18:48,"323 Jackson St, San Francisco, CA 94016" +235315,Flatscreen TV,1,300,07/08/19 14:27,"956 Chestnut St, San Francisco, CA 94016" +235316,Apple Airpods Headphones,1,150,07/22/19 20:52,"934 Center St, Boston, MA 02215" +235317,AAA Batteries (4-pack),5,2.99,07/12/19 19:58,"869 11th St, Austin, TX 73301" +235318,Wired Headphones,1,11.99,07/08/19 07:32,"63 Chestnut St, San Francisco, CA 94016" +235319,USB-C Charging Cable,1,11.95,07/01/19 18:10,"215 Elm St, Los Angeles, CA 90001" +235320,Apple Airpods Headphones,1,150,07/12/19 15:05,"305 Main St, Dallas, TX 75001" +235321,Flatscreen TV,1,300,07/30/19 02:27,"535 12th St, Seattle, WA 98101" +235322,Apple Airpods Headphones,1,150,07/07/19 14:55,"839 Elm St, Austin, TX 73301" +235323,AAA Batteries (4-pack),1,2.99,07/12/19 18:50,"921 River St, San Francisco, CA 94016" +235324,iPhone,1,700,07/11/19 22:21,"379 Madison St, San Francisco, CA 94016" +235325,USB-C Charging Cable,1,11.95,07/22/19 19:00,"182 Jackson St, New York City, NY 10001" +235326,Wired Headphones,1,11.99,07/21/19 12:07,"657 Johnson St, New York City, NY 10001" +235327,AA Batteries (4-pack),1,3.84,07/22/19 01:31,"442 Highland St, New York City, NY 10001" +235328,34in Ultrawide Monitor,1,379.99,07/30/19 13:48,"305 10th St, Seattle, WA 98101" +235329,USB-C Charging Cable,1,11.95,07/13/19 13:54,"615 Spruce St, New York City, NY 10001" +235330,USB-C Charging Cable,1,11.95,07/17/19 06:16,"589 Meadow St, Boston, MA 02215" +235331,LG Dryer,1,600.0,07/07/19 16:45,"641 Lincoln St, Dallas, TX 75001" +235332,Apple Airpods Headphones,1,150,07/16/19 11:15,"285 8th St, San Francisco, CA 94016" +235333,Bose SoundSport Headphones,1,99.99,07/11/19 23:36,"212 Hill St, Boston, MA 02215" +235334,Apple Airpods Headphones,1,150,07/22/19 20:26,"230 Chestnut St, San Francisco, CA 94016" +,,,,, +235335,Wired Headphones,1,11.99,07/23/19 08:58,"811 Pine St, San Francisco, CA 94016" +235336,Lightning Charging Cable,1,14.95,07/26/19 18:56,"745 Johnson St, Los Angeles, CA 90001" +235337,iPhone,1,700,07/26/19 11:49,"488 Willow St, New York City, NY 10001" +235337,Lightning Charging Cable,1,14.95,07/26/19 11:49,"488 Willow St, New York City, NY 10001" +235338,Lightning Charging Cable,1,14.95,07/24/19 15:32,"94 Jefferson St, Atlanta, GA 30301" +235339,AAA Batteries (4-pack),1,2.99,07/13/19 10:01,"908 Lincoln St, Atlanta, GA 30301" +235340,Apple Airpods Headphones,1,150,07/30/19 08:36,"803 Park St, San Francisco, CA 94016" +235341,USB-C Charging Cable,1,11.95,07/17/19 09:29,"356 14th St, Los Angeles, CA 90001" +235342,AA Batteries (4-pack),2,3.84,07/19/19 09:31,"883 11th St, Dallas, TX 75001" +235343,USB-C Charging Cable,1,11.95,07/01/19 14:44,"712 Cherry St, Seattle, WA 98101" +235344,Macbook Pro Laptop,1,1700,07/10/19 22:38,"655 Jackson St, San Francisco, CA 94016" +235345,Wired Headphones,1,11.99,07/19/19 15:43,"390 Elm St, Dallas, TX 75001" +235346,27in 4K Gaming Monitor,1,389.99,07/15/19 10:36,"237 Adams St, San Francisco, CA 94016" +235347,AAA Batteries (4-pack),2,2.99,07/06/19 23:41,"662 Sunset St, Boston, MA 02215" +235348,Wired Headphones,1,11.99,07/17/19 16:22,"926 8th St, Los Angeles, CA 90001" +235349,Google Phone,1,600,07/21/19 22:07,"193 Meadow St, San Francisco, CA 94016" +235350,Lightning Charging Cable,1,14.95,07/28/19 19:53,"809 Adams St, Boston, MA 02215" +235351,AAA Batteries (4-pack),1,2.99,07/06/19 12:18,"264 Johnson St, New York City, NY 10001" +235352,Apple Airpods Headphones,1,150,07/04/19 19:08,"681 Hill St, New York City, NY 10001" +,,,,, +235353,iPhone,1,700,07/01/19 14:38,"726 Meadow St, San Francisco, CA 94016" +235354,USB-C Charging Cable,1,11.95,07/22/19 22:56,"929 Jefferson St, Seattle, WA 98101" +235355,Bose SoundSport Headphones,1,99.99,07/13/19 08:48,"706 Center St, New York City, NY 10001" +235356,20in Monitor,1,109.99,07/04/19 03:03,"949 Jackson St, San Francisco, CA 94016" +235357,Macbook Pro Laptop,1,1700,07/14/19 08:01,"513 11th St, Portland, OR 97035" +235358,Apple Airpods Headphones,1,150,07/07/19 21:44,"706 River St, Atlanta, GA 30301" +235359,AA Batteries (4-pack),1,3.84,07/17/19 14:43,"858 West St, Seattle, WA 98101" +235360,Google Phone,1,600,07/15/19 12:33,"602 Church St, San Francisco, CA 94016" +235361,Bose SoundSport Headphones,1,99.99,07/25/19 16:09,"23 Spruce St, San Francisco, CA 94016" +235361,Lightning Charging Cable,1,14.95,07/25/19 16:09,"23 Spruce St, San Francisco, CA 94016" +235362,Macbook Pro Laptop,1,1700,07/12/19 20:15,"473 Cedar St, San Francisco, CA 94016" +235363,Google Phone,1,600,07/12/19 12:31,"115 14th St, Boston, MA 02215" +235364,AA Batteries (4-pack),1,3.84,07/27/19 15:10,"702 Hill St, Los Angeles, CA 90001" +235365,AAA Batteries (4-pack),1,2.99,07/23/19 02:41,"937 Sunset St, Boston, MA 02215" +235366,Flatscreen TV,1,300,07/30/19 12:11,"343 Hill St, San Francisco, CA 94016" +235367,USB-C Charging Cable,1,11.95,07/16/19 12:37,"990 Elm St, Boston, MA 02215" +235368,iPhone,1,700,07/11/19 09:23,"597 Sunset St, Atlanta, GA 30301" +235369,USB-C Charging Cable,1,11.95,07/19/19 17:54,"793 Main St, New York City, NY 10001" +235370,USB-C Charging Cable,2,11.95,07/18/19 23:18,"538 Willow St, Dallas, TX 75001" +235371,Apple Airpods Headphones,1,150,07/29/19 22:04,"583 14th St, San Francisco, CA 94016" +235372,Lightning Charging Cable,1,14.95,07/02/19 12:09,"793 8th St, Austin, TX 73301" +235373,AAA Batteries (4-pack),1,2.99,07/20/19 17:39,"147 Park St, San Francisco, CA 94016" +235374,USB-C Charging Cable,1,11.95,07/26/19 22:44,"214 Lakeview St, San Francisco, CA 94016" +235375,ThinkPad Laptop,1,999.99,07/19/19 16:11,"119 Spruce St, San Francisco, CA 94016" +235376,AA Batteries (4-pack),2,3.84,07/29/19 12:26,"602 Center St, New York City, NY 10001" +235377,Bose SoundSport Headphones,1,99.99,07/07/19 20:32,"360 1st St, Boston, MA 02215" +235378,iPhone,1,700,07/26/19 16:38,"318 Cedar St, Seattle, WA 98101" +235379,Flatscreen TV,1,300,07/14/19 14:17,"171 Church St, Seattle, WA 98101" +235380,Wired Headphones,1,11.99,07/22/19 07:50,"728 12th St, New York City, NY 10001" +235381,Wired Headphones,1,11.99,07/16/19 11:04,"346 South St, Dallas, TX 75001" +235381,Lightning Charging Cable,1,14.95,07/16/19 11:04,"346 South St, Dallas, TX 75001" +235382,Lightning Charging Cable,1,14.95,07/20/19 15:31,"873 Walnut St, Los Angeles, CA 90001" +235383,iPhone,1,700,07/18/19 11:22,"488 Chestnut St, Boston, MA 02215" +235384,AAA Batteries (4-pack),1,2.99,07/26/19 17:02,"916 6th St, San Francisco, CA 94016" +235385,Lightning Charging Cable,2,14.95,07/10/19 13:59,"680 Church St, Boston, MA 02215" +235386,Wired Headphones,1,11.99,07/30/19 20:21,"245 Elm St, San Francisco, CA 94016" +235387,AA Batteries (4-pack),1,3.84,07/31/19 14:41,"629 River St, Atlanta, GA 30301" +235388,USB-C Charging Cable,1,11.95,07/09/19 06:31,"521 Walnut St, Boston, MA 02215" +235389,AA Batteries (4-pack),1,3.84,07/01/19 22:36,"949 Highland St, Dallas, TX 75001" +235390,27in 4K Gaming Monitor,1,389.99,07/27/19 18:40,"822 Adams St, Portland, OR 97035" +235391,iPhone,1,700,07/02/19 21:27,"386 Hickory St, Portland, ME 04101" +235392,20in Monitor,1,109.99,07/06/19 15:21,"536 10th St, Portland, OR 97035" +235393,Bose SoundSport Headphones,1,99.99,07/30/19 17:14,"493 South St, Portland, OR 97035" +235394,AA Batteries (4-pack),1,3.84,07/06/19 21:29,"546 Madison St, San Francisco, CA 94016" +235395,Wired Headphones,2,11.99,07/05/19 22:59,"687 Walnut St, Dallas, TX 75001" +235396,Wired Headphones,1,11.99,07/22/19 07:37,"20 Pine St, Atlanta, GA 30301" +235397,Lightning Charging Cable,1,14.95,07/13/19 12:57,"584 1st St, San Francisco, CA 94016" +235398,USB-C Charging Cable,1,11.95,07/04/19 16:11,"591 Main St, San Francisco, CA 94016" +235399,AA Batteries (4-pack),3,3.84,07/03/19 13:04,"785 Madison St, Los Angeles, CA 90001" +235400,Lightning Charging Cable,1,14.95,07/15/19 23:17,"211 Jackson St, Dallas, TX 75001" +235401,Wired Headphones,1,11.99,07/03/19 12:19,"365 Church St, Los Angeles, CA 90001" +235402,Apple Airpods Headphones,1,150,07/08/19 15:08,"455 Hill St, San Francisco, CA 94016" +235403,Apple Airpods Headphones,1,150,07/07/19 15:08,"462 Meadow St, San Francisco, CA 94016" +235404,AA Batteries (4-pack),1,3.84,07/18/19 19:52,"62 Chestnut St, New York City, NY 10001" +235405,USB-C Charging Cable,1,11.95,07/20/19 22:20,"378 Madison St, San Francisco, CA 94016" +235406,AA Batteries (4-pack),1,3.84,07/21/19 12:50,"159 2nd St, San Francisco, CA 94016" +235407,27in 4K Gaming Monitor,1,389.99,07/02/19 18:14,"491 Spruce St, New York City, NY 10001" +235408,Lightning Charging Cable,1,14.95,07/27/19 11:32,"445 Hill St, Austin, TX 73301" +235409,AAA Batteries (4-pack),1,2.99,07/14/19 22:56,"795 Chestnut St, San Francisco, CA 94016" +235409,Macbook Pro Laptop,1,1700,07/14/19 22:56,"795 Chestnut St, San Francisco, CA 94016" +235410,AAA Batteries (4-pack),1,2.99,07/05/19 16:05,"922 10th St, San Francisco, CA 94016" +235411,Wired Headphones,1,11.99,07/22/19 13:56,"13 Pine St, San Francisco, CA 94016" +235412,Apple Airpods Headphones,1,150,07/03/19 20:10,"562 Sunset St, San Francisco, CA 94016" +235413,27in FHD Monitor,1,149.99,07/15/19 09:57,"715 13th St, Dallas, TX 75001" +235414,Wired Headphones,1,11.99,07/12/19 14:48,"772 Center St, Boston, MA 02215" +235415,Lightning Charging Cable,1,14.95,07/23/19 12:08,"70 Maple St, New York City, NY 10001" +235416,USB-C Charging Cable,1,11.95,07/06/19 13:33,"330 Ridge St, Portland, OR 97035" +235417,Bose SoundSport Headphones,1,99.99,07/02/19 21:39,"962 10th St, Seattle, WA 98101" +235418,USB-C Charging Cable,1,11.95,07/10/19 23:29,"813 Spruce St, Portland, OR 97035" +235419,ThinkPad Laptop,1,999.99,07/15/19 12:32,"808 Chestnut St, Boston, MA 02215" +235420,Lightning Charging Cable,2,14.95,07/02/19 21:39,"240 Chestnut St, San Francisco, CA 94016" +235421,Bose SoundSport Headphones,1,99.99,07/05/19 17:24,"325 South St, San Francisco, CA 94016" +235422,Wired Headphones,3,11.99,07/11/19 21:43,"258 Hickory St, Boston, MA 02215" +235423,Apple Airpods Headphones,1,150,07/08/19 10:52,"81 5th St, San Francisco, CA 94016" +235424,USB-C Charging Cable,1,11.95,07/03/19 11:31,"422 12th St, Los Angeles, CA 90001" +235425,Wired Headphones,1,11.99,07/20/19 14:14,"40 Sunset St, Atlanta, GA 30301" +235426,Wired Headphones,1,11.99,07/08/19 22:56,"752 Sunset St, Austin, TX 73301" +235427,AA Batteries (4-pack),1,3.84,07/07/19 11:39,"933 Chestnut St, Los Angeles, CA 90001" +235428,20in Monitor,1,109.99,07/12/19 11:53,"382 Ridge St, New York City, NY 10001" +235429,AA Batteries (4-pack),6,3.84,07/27/19 11:25,"236 Church St, Los Angeles, CA 90001" +235430,Macbook Pro Laptop,1,1700,07/04/19 18:25,"635 Center St, Boston, MA 02215" +235431,AAA Batteries (4-pack),1,2.99,07/16/19 10:27,"459 Church St, Atlanta, GA 30301" +235432,USB-C Charging Cable,1,11.95,07/29/19 10:07,"825 Maple St, New York City, NY 10001" +235433,USB-C Charging Cable,1,11.95,07/14/19 23:57,"665 Cedar St, New York City, NY 10001" +235434,Google Phone,1,600,07/12/19 14:20,"960 Madison St, San Francisco, CA 94016" +235435,27in 4K Gaming Monitor,1,389.99,07/13/19 21:55,"139 4th St, Seattle, WA 98101" +235436,AA Batteries (4-pack),1,3.84,07/17/19 12:06,"621 13th St, Dallas, TX 75001" +235437,AAA Batteries (4-pack),1,2.99,07/29/19 17:17,"707 Church St, Seattle, WA 98101" +235438,Lightning Charging Cable,1,14.95,07/26/19 19:35,"283 Madison St, Los Angeles, CA 90001" +235439,Wired Headphones,2,11.99,07/30/19 22:55,"156 Madison St, San Francisco, CA 94016" +235440,27in FHD Monitor,1,149.99,07/07/19 10:22,"586 Park St, San Francisco, CA 94016" +235441,Google Phone,1,600,07/10/19 11:17,"868 Wilson St, Dallas, TX 75001" +235441,Wired Headphones,1,11.99,07/10/19 11:17,"868 Wilson St, Dallas, TX 75001" +235442,USB-C Charging Cable,1,11.95,07/31/19 18:29,"995 8th St, Boston, MA 02215" +235442,AAA Batteries (4-pack),1,2.99,07/31/19 18:29,"995 8th St, Boston, MA 02215" +235443,34in Ultrawide Monitor,1,379.99,07/10/19 18:05,"400 Chestnut St, Portland, OR 97035" +235444,Wired Headphones,1,11.99,07/19/19 15:11,"884 Cedar St, San Francisco, CA 94016" +235445,LG Washing Machine,1,600.0,07/24/19 09:50,"322 Lake St, New York City, NY 10001" +235446,USB-C Charging Cable,1,11.95,07/31/19 11:40,"459 Meadow St, Boston, MA 02215" +235447,AA Batteries (4-pack),3,3.84,07/20/19 18:03,"513 Jefferson St, Seattle, WA 98101" +235448,Apple Airpods Headphones,1,150,07/30/19 11:41,"368 Ridge St, Atlanta, GA 30301" +235449,USB-C Charging Cable,1,11.95,07/11/19 05:21,"447 North St, San Francisco, CA 94016" +235450,USB-C Charging Cable,1,11.95,07/02/19 18:40,"136 1st St, San Francisco, CA 94016" +235451,Bose SoundSport Headphones,1,99.99,07/14/19 15:20,"206 Meadow St, Seattle, WA 98101" +235452,Apple Airpods Headphones,1,150,07/15/19 16:03,"902 6th St, New York City, NY 10001" +235453,AA Batteries (4-pack),3,3.84,07/07/19 18:56,"904 12th St, Atlanta, GA 30301" +235454,Lightning Charging Cable,1,14.95,07/25/19 16:46,"81 South St, New York City, NY 10001" +235455,AAA Batteries (4-pack),1,2.99,07/07/19 12:52,"460 Jackson St, New York City, NY 10001" +235456,27in FHD Monitor,1,149.99,07/31/19 10:01,"827 West St, Boston, MA 02215" +235457,USB-C Charging Cable,1,11.95,07/20/19 01:02,"895 Cherry St, Boston, MA 02215" +235458,USB-C Charging Cable,1,11.95,07/11/19 14:26,"523 14th St, Los Angeles, CA 90001" +235459,USB-C Charging Cable,1,11.95,07/02/19 21:33,"157 Cherry St, Austin, TX 73301" +235460,USB-C Charging Cable,1,11.95,07/04/19 18:42,"119 Wilson St, Dallas, TX 75001" +235460,USB-C Charging Cable,1,11.95,07/04/19 18:42,"119 Wilson St, Dallas, TX 75001" +235461,20in Monitor,1,109.99,07/04/19 08:17,"764 Park St, San Francisco, CA 94016" +235462,27in FHD Monitor,1,149.99,07/06/19 23:01,"356 Madison St, Atlanta, GA 30301" +235463,Wired Headphones,1,11.99,07/05/19 09:06,"233 Elm St, Austin, TX 73301" +235464,ThinkPad Laptop,1,999.99,07/20/19 22:30,"495 Cherry St, Los Angeles, CA 90001" +235465,USB-C Charging Cable,1,11.95,07/12/19 11:28,"298 Jefferson St, Atlanta, GA 30301" +235466,Wired Headphones,1,11.99,07/23/19 21:21,"294 8th St, Boston, MA 02215" +235467,Bose SoundSport Headphones,1,99.99,07/12/19 15:21,"610 Willow St, San Francisco, CA 94016" +235468,Apple Airpods Headphones,1,150,07/17/19 20:49,"475 Jefferson St, San Francisco, CA 94016" +235469,20in Monitor,1,109.99,07/17/19 13:38,"865 Lake St, San Francisco, CA 94016" +235470,27in FHD Monitor,1,149.99,07/03/19 13:43,"76 10th St, New York City, NY 10001" +235471,Lightning Charging Cable,1,14.95,07/13/19 13:11,"452 Chestnut St, Seattle, WA 98101" +235472,AA Batteries (4-pack),1,3.84,07/21/19 19:50,"671 Pine St, New York City, NY 10001" +235473,Bose SoundSport Headphones,1,99.99,07/14/19 15:55,"965 Hickory St, San Francisco, CA 94016" +235474,Lightning Charging Cable,1,14.95,07/16/19 17:34,"959 Center St, Portland, ME 04101" +235475,AAA Batteries (4-pack),1,2.99,07/18/19 10:28,"589 6th St, San Francisco, CA 94016" +235476,Wired Headphones,1,11.99,07/11/19 23:44,"719 Cedar St, San Francisco, CA 94016" +235477,20in Monitor,1,109.99,07/09/19 15:24,"102 1st St, San Francisco, CA 94016" +235478,Apple Airpods Headphones,1,150,07/26/19 22:16,"415 12th St, Boston, MA 02215" +235479,Apple Airpods Headphones,1,150,07/29/19 10:48,"622 7th St, San Francisco, CA 94016" +235480,Apple Airpods Headphones,1,150,07/06/19 09:34,"694 1st St, Atlanta, GA 30301" +235481,Apple Airpods Headphones,1,150,07/17/19 20:29,"42 Chestnut St, San Francisco, CA 94016" +235482,USB-C Charging Cable,1,11.95,07/19/19 12:54,"144 Hickory St, San Francisco, CA 94016" +235483,Apple Airpods Headphones,1,150,07/12/19 12:40,"735 West St, San Francisco, CA 94016" +235484,USB-C Charging Cable,1,11.95,07/03/19 17:03,"905 Jackson St, San Francisco, CA 94016" +235485,27in FHD Monitor,1,149.99,07/09/19 17:47,"688 7th St, New York City, NY 10001" +235486,AAA Batteries (4-pack),1,2.99,07/22/19 10:05,"855 Wilson St, Los Angeles, CA 90001" +235487,Apple Airpods Headphones,1,150,07/15/19 19:28,"861 River St, Boston, MA 02215" +235488,Lightning Charging Cable,1,14.95,07/06/19 20:57,"616 Cedar St, San Francisco, CA 94016" +235489,Google Phone,1,600,07/13/19 16:34,"615 6th St, San Francisco, CA 94016" +235489,USB-C Charging Cable,1,11.95,07/13/19 16:34,"615 6th St, San Francisco, CA 94016" +235490,Lightning Charging Cable,1,14.95,07/16/19 14:49,"150 West St, Los Angeles, CA 90001" +235491,USB-C Charging Cable,1,11.95,07/23/19 09:31,"933 Church St, Los Angeles, CA 90001" +235492,Apple Airpods Headphones,1,150,07/11/19 12:11,"412 Willow St, Boston, MA 02215" +235493,27in FHD Monitor,1,149.99,07/08/19 13:57,"300 North St, Los Angeles, CA 90001" +235494,Apple Airpods Headphones,1,150,07/03/19 17:32,"803 Elm St, San Francisco, CA 94016" +235495,USB-C Charging Cable,1,11.95,07/03/19 16:55,"937 Forest St, San Francisco, CA 94016" +235496,Macbook Pro Laptop,1,1700,07/14/19 18:48,"499 13th St, San Francisco, CA 94016" +235497,Wired Headphones,1,11.99,07/18/19 20:46,"690 Cherry St, Dallas, TX 75001" +235498,USB-C Charging Cable,1,11.95,07/19/19 18:36,"227 Center St, Los Angeles, CA 90001" +235499,USB-C Charging Cable,1,11.95,07/10/19 12:24,"441 14th St, San Francisco, CA 94016" +235500,27in FHD Monitor,1,149.99,07/03/19 11:33,"636 10th St, San Francisco, CA 94016" +235501,ThinkPad Laptop,1,999.99,07/02/19 15:56,"501 8th St, Portland, OR 97035" +235502,Flatscreen TV,1,300,07/16/19 17:38,"152 Adams St, San Francisco, CA 94016" +235503,Wired Headphones,1,11.99,07/16/19 23:03,"549 Elm St, San Francisco, CA 94016" +235504,Lightning Charging Cable,1,14.95,07/28/19 14:50,"480 12th St, Los Angeles, CA 90001" +235505,USB-C Charging Cable,2,11.95,07/07/19 12:09,"854 8th St, Austin, TX 73301" +235506,USB-C Charging Cable,1,11.95,07/02/19 16:49,"224 Chestnut St, Boston, MA 02215" +235507,Apple Airpods Headphones,1,150,07/15/19 04:05,"719 Lincoln St, Atlanta, GA 30301" +235508,Bose SoundSport Headphones,1,99.99,07/06/19 13:34,"102 Wilson St, Seattle, WA 98101" +235509,Apple Airpods Headphones,1,150,07/13/19 23:35,"298 12th St, Boston, MA 02215" +235510,AAA Batteries (4-pack),1,2.99,07/18/19 17:36,"360 Spruce St, Boston, MA 02215" +235511,Lightning Charging Cable,1,14.95,07/11/19 09:04,"716 Center St, Atlanta, GA 30301" +235512,Bose SoundSport Headphones,1,99.99,07/02/19 11:18,"947 11th St, New York City, NY 10001" +235513,Lightning Charging Cable,1,14.95,07/27/19 12:35,"621 5th St, New York City, NY 10001" +235514,iPhone,1,700,07/22/19 00:02,"717 12th St, San Francisco, CA 94016" +235515,USB-C Charging Cable,1,11.95,07/04/19 18:11,"210 River St, Portland, ME 04101" +235516,USB-C Charging Cable,1,11.95,07/01/19 17:03,"342 Walnut St, New York City, NY 10001" +235517,27in 4K Gaming Monitor,1,389.99,07/18/19 17:37,"36 River St, New York City, NY 10001" +235518,Apple Airpods Headphones,1,150,07/06/19 22:12,"739 8th St, Los Angeles, CA 90001" +235519,20in Monitor,1,109.99,07/23/19 17:49,"322 West St, New York City, NY 10001" +235520,Macbook Pro Laptop,1,1700,07/18/19 13:47,"975 River St, Los Angeles, CA 90001" +235521,Wired Headphones,1,11.99,07/31/19 07:48,"914 Dogwood St, New York City, NY 10001" +235522,AA Batteries (4-pack),2,3.84,07/05/19 18:58,"576 12th St, San Francisco, CA 94016" +235523,Apple Airpods Headphones,1,150,07/29/19 14:25,"470 1st St, San Francisco, CA 94016" +235524,AAA Batteries (4-pack),1,2.99,07/11/19 21:30,"678 Jefferson St, New York City, NY 10001" +235525,27in 4K Gaming Monitor,1,389.99,07/18/19 16:27,"185 Washington St, San Francisco, CA 94016" +235526,Wired Headphones,1,11.99,07/27/19 21:20,"780 2nd St, San Francisco, CA 94016" +235527,27in FHD Monitor,1,149.99,07/01/19 15:07,"915 7th St, Los Angeles, CA 90001" +235528,USB-C Charging Cable,1,11.95,07/18/19 12:33,"236 Center St, New York City, NY 10001" +235529,Bose SoundSport Headphones,1,99.99,07/11/19 08:11,"901 Washington St, San Francisco, CA 94016" +235530,AA Batteries (4-pack),1,3.84,07/03/19 08:43,"473 Elm St, New York City, NY 10001" +235531,AAA Batteries (4-pack),2,2.99,07/27/19 02:15,"841 5th St, San Francisco, CA 94016" +235532,Wired Headphones,1,11.99,07/25/19 12:40,"96 1st St, Atlanta, GA 30301" +235533,iPhone,1,700,07/12/19 09:59,"239 2nd St, Los Angeles, CA 90001" +235534,USB-C Charging Cable,1,11.95,07/31/19 22:06,"762 2nd St, Atlanta, GA 30301" +235535,Bose SoundSport Headphones,1,99.99,07/01/19 12:08,"599 12th St, Los Angeles, CA 90001" +235536,Wired Headphones,1,11.99,07/08/19 20:39,"168 Hill St, San Francisco, CA 94016" +235537,iPhone,1,700,07/09/19 15:33,"834 Washington St, Austin, TX 73301" +235538,USB-C Charging Cable,1,11.95,07/31/19 20:31,"474 Lakeview St, San Francisco, CA 94016" +235539,USB-C Charging Cable,1,11.95,07/06/19 14:07,"798 Lakeview St, Seattle, WA 98101" +235540,AAA Batteries (4-pack),1,2.99,07/05/19 12:13,"772 Washington St, New York City, NY 10001" +235540,USB-C Charging Cable,1,11.95,07/05/19 12:13,"772 Washington St, New York City, NY 10001" +235541,AAA Batteries (4-pack),1,2.99,07/13/19 00:48,"73 Madison St, New York City, NY 10001" +235542,USB-C Charging Cable,1,11.95,07/18/19 09:31,"550 1st St, Portland, OR 97035" +235543,20in Monitor,1,109.99,07/08/19 03:50,"205 Sunset St, San Francisco, CA 94016" +235544,Bose SoundSport Headphones,1,99.99,07/18/19 11:40,"238 6th St, Los Angeles, CA 90001" +235545,USB-C Charging Cable,1,11.95,07/30/19 21:53,"63 9th St, Boston, MA 02215" +235546,AAA Batteries (4-pack),1,2.99,07/12/19 15:29,"428 Chestnut St, Portland, OR 97035" +235547,USB-C Charging Cable,1,11.95,07/18/19 16:54,"583 Chestnut St, Austin, TX 73301" +235548,iPhone,1,700,07/27/19 18:45,"685 North St, San Francisco, CA 94016" +235549,Apple Airpods Headphones,1,150,07/08/19 15:44,"134 Church St, Dallas, TX 75001" +235550,Lightning Charging Cable,1,14.95,07/26/19 06:56,"496 North St, Boston, MA 02215" +235551,AA Batteries (4-pack),2,3.84,07/06/19 02:32,"829 10th St, Los Angeles, CA 90001" +235552,34in Ultrawide Monitor,1,379.99,07/08/19 19:27,"738 Johnson St, Los Angeles, CA 90001" +235553,USB-C Charging Cable,2,11.95,07/31/19 08:56,"964 River St, Portland, OR 97035" +235554,Wired Headphones,1,11.99,07/31/19 14:22,"231 13th St, Dallas, TX 75001" +235555,AAA Batteries (4-pack),1,2.99,07/24/19 06:31,"696 Church St, New York City, NY 10001" +235556,Lightning Charging Cable,1,14.95,07/30/19 12:44,"413 1st St, Austin, TX 73301" +235557,AA Batteries (4-pack),2,3.84,07/19/19 16:59,"778 Chestnut St, San Francisco, CA 94016" +235558,ThinkPad Laptop,1,999.99,07/09/19 19:23,"424 14th St, Los Angeles, CA 90001" +235559,34in Ultrawide Monitor,1,379.99,07/20/19 21:52,"890 Washington St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +235560,Lightning Charging Cable,1,14.95,07/03/19 20:46,"158 Washington St, Dallas, TX 75001" +235561,USB-C Charging Cable,1,11.95,07/06/19 19:38,"756 1st St, Boston, MA 02215" +235562,USB-C Charging Cable,1,11.95,07/22/19 14:08,"173 Johnson St, San Francisco, CA 94016" +235563,Lightning Charging Cable,1,14.95,07/26/19 14:47,"974 River St, Austin, TX 73301" +235564,Macbook Pro Laptop,1,1700,07/10/19 17:41,"841 Sunset St, Boston, MA 02215" +235565,Bose SoundSport Headphones,1,99.99,07/31/19 21:13,"43 Dogwood St, Austin, TX 73301" +235566,27in 4K Gaming Monitor,1,389.99,07/20/19 23:21,"107 Madison St, Los Angeles, CA 90001" +235567,Bose SoundSport Headphones,1,99.99,07/01/19 22:49,"274 West St, Boston, MA 02215" +235568,Apple Airpods Headphones,1,150,07/24/19 21:41,"868 Johnson St, Boston, MA 02215" +235569,Wired Headphones,1,11.99,07/20/19 14:16,"638 12th St, Los Angeles, CA 90001" +235570,Lightning Charging Cable,1,14.95,07/04/19 12:46,"641 Maple St, New York City, NY 10001" +235571,AA Batteries (4-pack),1,3.84,07/21/19 08:52,"835 Park St, San Francisco, CA 94016" +235572,Wired Headphones,1,11.99,07/03/19 15:03,"796 Jefferson St, New York City, NY 10001" +235573,AAA Batteries (4-pack),1,2.99,07/17/19 21:02,"180 Johnson St, New York City, NY 10001" +235574,Google Phone,1,600,07/14/19 21:44,"296 Wilson St, Boston, MA 02215" +235575,AAA Batteries (4-pack),1,2.99,07/11/19 20:45,"139 Center St, San Francisco, CA 94016" +235576,27in FHD Monitor,1,149.99,07/06/19 15:22,"795 West St, Austin, TX 73301" +235577,USB-C Charging Cable,1,11.95,07/30/19 20:50,"530 Forest St, San Francisco, CA 94016" +235578,Google Phone,1,600,07/12/19 18:10,"314 Madison St, Los Angeles, CA 90001" +235579,Apple Airpods Headphones,1,150,07/26/19 13:44,"708 Sunset St, San Francisco, CA 94016" +235580,Google Phone,1,600,07/22/19 11:44,"616 Forest St, San Francisco, CA 94016" +235581,AA Batteries (4-pack),1,3.84,07/19/19 01:32,"810 River St, San Francisco, CA 94016" +235582,Bose SoundSport Headphones,1,99.99,07/23/19 10:28,"308 2nd St, San Francisco, CA 94016" +235583,USB-C Charging Cable,1,11.95,07/20/19 15:12,"590 Hill St, San Francisco, CA 94016" +235584,Flatscreen TV,1,300,07/04/19 03:36,"959 Spruce St, Los Angeles, CA 90001" +235585,27in 4K Gaming Monitor,1,389.99,07/23/19 18:58,"414 Jackson St, Atlanta, GA 30301" +235586,Wired Headphones,1,11.99,07/31/19 15:34,"989 Washington St, Atlanta, GA 30301" +235587,Bose SoundSport Headphones,1,99.99,07/12/19 14:38,"196 North St, Los Angeles, CA 90001" +235588,Vareebadd Phone,1,400,07/29/19 20:17,"553 Cedar St, Boston, MA 02215" +235589,27in FHD Monitor,1,149.99,07/23/19 19:14,"727 13th St, Dallas, TX 75001" +235590,Apple Airpods Headphones,1,150,07/01/19 10:50,"528 11th St, San Francisco, CA 94016" +235591,AA Batteries (4-pack),2,3.84,07/02/19 16:04,"673 11th St, New York City, NY 10001" +235592,Lightning Charging Cable,1,14.95,07/28/19 15:06,"912 Johnson St, Seattle, WA 98101" +235593,AAA Batteries (4-pack),1,2.99,07/12/19 19:57,"856 4th St, Boston, MA 02215" +235594,Wired Headphones,1,11.99,07/30/19 17:53,"551 Wilson St, Boston, MA 02215" +235595,AA Batteries (4-pack),1,3.84,07/20/19 12:20,"407 Sunset St, Seattle, WA 98101" +235596,Apple Airpods Headphones,1,150,07/07/19 20:22,"649 5th St, New York City, NY 10001" +235597,Lightning Charging Cable,1,14.95,07/17/19 12:01,"7 Cedar St, New York City, NY 10001" +235598,USB-C Charging Cable,1,11.95,07/31/19 20:56,"602 Hickory St, Portland, OR 97035" +235599,USB-C Charging Cable,1,11.95,07/08/19 12:40,"630 Forest St, San Francisco, CA 94016" +235600,AA Batteries (4-pack),1,3.84,07/02/19 08:47,"776 Elm St, Portland, OR 97035" +235601,USB-C Charging Cable,1,11.95,07/06/19 23:30,"628 Ridge St, New York City, NY 10001" +235602,USB-C Charging Cable,1,11.95,07/09/19 12:09,"586 Lakeview St, New York City, NY 10001" +235603,ThinkPad Laptop,1,999.99,07/08/19 22:56,"344 7th St, Los Angeles, CA 90001" +235604,iPhone,1,700,07/27/19 12:20,"711 Jefferson St, Dallas, TX 75001" +235604,Apple Airpods Headphones,1,150,07/27/19 12:20,"711 Jefferson St, Dallas, TX 75001" +235605,AAA Batteries (4-pack),2,2.99,07/17/19 05:51,"815 River St, Boston, MA 02215" +235606,USB-C Charging Cable,1,11.95,07/20/19 12:54,"251 6th St, New York City, NY 10001" +235607,AA Batteries (4-pack),2,3.84,07/08/19 13:32,"994 8th St, Boston, MA 02215" +235608,USB-C Charging Cable,1,11.95,07/19/19 19:48,"198 Church St, San Francisco, CA 94016" +235609,USB-C Charging Cable,1,11.95,07/06/19 16:18,"701 Cherry St, Austin, TX 73301" +235610,Wired Headphones,1,11.99,07/14/19 13:44,"180 Johnson St, San Francisco, CA 94016" +235611,AA Batteries (4-pack),1,3.84,07/27/19 19:57,"727 Cherry St, Dallas, TX 75001" +235611,27in FHD Monitor,1,149.99,07/27/19 19:57,"727 Cherry St, Dallas, TX 75001" +235612,Wired Headphones,1,11.99,07/18/19 12:29,"403 8th St, Boston, MA 02215" +235613,AA Batteries (4-pack),1,3.84,07/31/19 06:04,"862 Willow St, Los Angeles, CA 90001" +235614,AA Batteries (4-pack),1,3.84,07/07/19 20:22,"692 Park St, New York City, NY 10001" +235615,Lightning Charging Cable,1,14.95,07/27/19 20:25,"994 Cedar St, San Francisco, CA 94016" +235615,AAA Batteries (4-pack),1,2.99,07/27/19 20:25,"994 Cedar St, San Francisco, CA 94016" +235616,Macbook Pro Laptop,1,1700,07/07/19 18:43,"716 Willow St, San Francisco, CA 94016" +235617,Flatscreen TV,1,300,07/20/19 12:01,"322 Highland St, New York City, NY 10001" +235618,34in Ultrawide Monitor,1,379.99,07/10/19 21:54,"461 Adams St, Los Angeles, CA 90001" +235619,AA Batteries (4-pack),1,3.84,07/15/19 14:25,"197 Hickory St, New York City, NY 10001" +235620,AAA Batteries (4-pack),2,2.99,07/16/19 18:28,"81 7th St, Atlanta, GA 30301" +235621,Bose SoundSport Headphones,1,99.99,07/03/19 22:47,"411 South St, Los Angeles, CA 90001" +235622,Wired Headphones,1,11.99,07/30/19 19:38,"460 Spruce St, San Francisco, CA 94016" +235623,Wired Headphones,1,11.99,07/05/19 11:52,"724 5th St, Boston, MA 02215" +235624,Google Phone,1,600,07/09/19 11:03,"861 Meadow St, Boston, MA 02215" +235625,AA Batteries (4-pack),1,3.84,07/16/19 16:34,"331 2nd St, San Francisco, CA 94016" +235626,AAA Batteries (4-pack),1,2.99,07/23/19 10:18,"336 Cedar St, San Francisco, CA 94016" +235627,AA Batteries (4-pack),1,3.84,07/21/19 21:14,"510 Park St, San Francisco, CA 94016" +235628,Bose SoundSport Headphones,1,99.99,07/29/19 10:22,"708 Pine St, San Francisco, CA 94016" +235629,27in FHD Monitor,1,149.99,07/07/19 13:15,"562 11th St, Los Angeles, CA 90001" +235630,Google Phone,1,600,07/25/19 16:22,"356 Lincoln St, Seattle, WA 98101" +235631,ThinkPad Laptop,1,999.99,07/15/19 20:42,"675 12th St, Seattle, WA 98101" +235632,AA Batteries (4-pack),1,3.84,07/27/19 13:39,"309 11th St, Seattle, WA 98101" +235633,USB-C Charging Cable,1,11.95,07/27/19 19:25,"784 Meadow St, Los Angeles, CA 90001" +235634,34in Ultrawide Monitor,1,379.99,07/24/19 10:50,"29 Lincoln St, New York City, NY 10001" +235635,Lightning Charging Cable,1,14.95,07/15/19 15:20,"338 Washington St, San Francisco, CA 94016" +235636,Lightning Charging Cable,1,14.95,07/20/19 17:02,"256 Sunset St, Boston, MA 02215" +235637,Apple Airpods Headphones,1,150,07/15/19 20:28,"976 13th St, San Francisco, CA 94016" +235638,Wired Headphones,1,11.99,07/10/19 08:44,"72 5th St, Austin, TX 73301" +235639,27in FHD Monitor,1,149.99,07/09/19 21:01,"479 8th St, San Francisco, CA 94016" +235640,27in FHD Monitor,1,149.99,07/21/19 11:39,"873 Madison St, Los Angeles, CA 90001" +235641,USB-C Charging Cable,1,11.95,07/02/19 17:46,"643 Pine St, Austin, TX 73301" +235642,Lightning Charging Cable,1,14.95,07/02/19 23:05,"929 Lincoln St, Austin, TX 73301" +235643,Flatscreen TV,1,300,07/08/19 06:57,"235 Lake St, Seattle, WA 98101" +235644,Macbook Pro Laptop,1,1700,07/20/19 20:56,"169 Washington St, Dallas, TX 75001" +235645,Google Phone,1,600,07/31/19 12:22,"44 14th St, San Francisco, CA 94016" +235645,USB-C Charging Cable,1,11.95,07/31/19 12:22,"44 14th St, San Francisco, CA 94016" +235646,34in Ultrawide Monitor,1,379.99,07/14/19 15:12,"913 8th St, San Francisco, CA 94016" +235647,Wired Headphones,1,11.99,07/26/19 13:14,"632 14th St, Los Angeles, CA 90001" +235648,AA Batteries (4-pack),1,3.84,07/24/19 18:36,"959 2nd St, New York City, NY 10001" +235649,Apple Airpods Headphones,1,150,07/31/19 15:48,"869 8th St, San Francisco, CA 94016" +235650,ThinkPad Laptop,1,999.99,07/05/19 01:33,"563 8th St, Los Angeles, CA 90001" +235651,ThinkPad Laptop,1,999.99,07/27/19 20:07,"636 5th St, Dallas, TX 75001" +235652,iPhone,1,700,07/01/19 12:21,"211 5th St, Atlanta, GA 30301" +235653,Wired Headphones,1,11.99,07/23/19 23:38,"495 Lincoln St, Boston, MA 02215" +235654,Apple Airpods Headphones,1,150,07/08/19 16:06,"294 Jackson St, Austin, TX 73301" +235655,AAA Batteries (4-pack),1,2.99,07/29/19 06:59,"175 Church St, New York City, NY 10001" +235656,Apple Airpods Headphones,1,150,07/04/19 20:27,"57 10th St, New York City, NY 10001" +235657,USB-C Charging Cable,1,11.95,07/09/19 11:19,"886 Meadow St, San Francisco, CA 94016" +235658,AAA Batteries (4-pack),2,2.99,07/27/19 12:43,"976 Church St, Los Angeles, CA 90001" +235659,Wired Headphones,1,11.99,07/27/19 20:44,"824 Highland St, New York City, NY 10001" +235660,27in 4K Gaming Monitor,1,389.99,07/24/19 09:37,"937 Adams St, San Francisco, CA 94016" +235661,Wired Headphones,1,11.99,07/09/19 17:19,"347 Johnson St, Austin, TX 73301" +235662,Google Phone,1,600,07/27/19 11:17,"522 Jackson St, Portland, OR 97035" +235663,Macbook Pro Laptop,1,1700,07/21/19 09:14,"196 5th St, San Francisco, CA 94016" +235664,Lightning Charging Cable,1,14.95,07/26/19 12:29,"479 5th St, Seattle, WA 98101" +235665,Flatscreen TV,1,300,07/07/19 14:13,"64 Dogwood St, Austin, TX 73301" +235666,Lightning Charging Cable,2,14.95,07/13/19 23:38,"393 Lincoln St, San Francisco, CA 94016" +235667,iPhone,1,700,07/16/19 19:28,"109 Meadow St, San Francisco, CA 94016" +235668,Lightning Charging Cable,1,14.95,07/27/19 20:09,"234 6th St, San Francisco, CA 94016" +235669,Vareebadd Phone,1,400,07/17/19 15:02,"641 14th St, San Francisco, CA 94016" +235669,Bose SoundSport Headphones,1,99.99,07/17/19 15:02,"641 14th St, San Francisco, CA 94016" +235670,USB-C Charging Cable,1,11.95,07/09/19 09:44,"373 Ridge St, San Francisco, CA 94016" +235671,AAA Batteries (4-pack),1,2.99,07/06/19 07:35,"483 Lake St, Dallas, TX 75001" +235672,iPhone,1,700,07/02/19 11:17,"397 Jackson St, Los Angeles, CA 90001" +235673,Flatscreen TV,1,300,07/24/19 10:24,"267 Spruce St, Boston, MA 02215" +235674,AAA Batteries (4-pack),2,2.99,07/21/19 21:10,"465 Jackson St, Los Angeles, CA 90001" +235675,USB-C Charging Cable,2,11.95,07/19/19 13:52,"708 12th St, Dallas, TX 75001" +235676,USB-C Charging Cable,1,11.95,07/07/19 23:17,"1 9th St, Boston, MA 02215" +235677,27in 4K Gaming Monitor,1,389.99,07/30/19 16:34,"418 Main St, Seattle, WA 98101" +235678,AA Batteries (4-pack),1,3.84,07/27/19 17:03,"563 1st St, Boston, MA 02215" +235679,Bose SoundSport Headphones,1,99.99,07/25/19 16:42,"247 4th St, San Francisco, CA 94016" +235680,27in 4K Gaming Monitor,1,389.99,07/30/19 08:25,"937 8th St, Atlanta, GA 30301" +235681,Wired Headphones,1,11.99,07/15/19 16:23,"840 4th St, Portland, ME 04101" +235682,AAA Batteries (4-pack),1,2.99,07/12/19 08:05,"521 Spruce St, San Francisco, CA 94016" +235683,Apple Airpods Headphones,1,150,07/26/19 23:06,"659 Chestnut St, Los Angeles, CA 90001" +235684,AAA Batteries (4-pack),2,2.99,07/16/19 12:45,"344 Wilson St, San Francisco, CA 94016" +235685,20in Monitor,1,109.99,07/01/19 19:26,"888 8th St, Boston, MA 02215" +235686,AAA Batteries (4-pack),1,2.99,07/26/19 20:19,"430 6th St, Atlanta, GA 30301" +235687,LG Washing Machine,1,600.0,07/03/19 20:12,"787 14th St, Seattle, WA 98101" +235688,Lightning Charging Cable,1,14.95,07/02/19 16:43,"460 Pine St, Seattle, WA 98101" +235689,AA Batteries (4-pack),1,3.84,07/12/19 14:11,"723 South St, Atlanta, GA 30301" +235690,27in 4K Gaming Monitor,1,389.99,07/14/19 15:50,"550 7th St, Los Angeles, CA 90001" +235691,USB-C Charging Cable,1,11.95,07/20/19 17:41,"923 Willow St, San Francisco, CA 94016" +235692,Google Phone,1,600,07/12/19 11:20,"235 Willow St, Portland, OR 97035" +235693,AAA Batteries (4-pack),1,2.99,07/31/19 22:38,"402 Lakeview St, Dallas, TX 75001" +235694,USB-C Charging Cable,1,11.95,07/29/19 15:23,"511 Spruce St, Boston, MA 02215" +235695,27in 4K Gaming Monitor,1,389.99,07/17/19 11:23,"594 Hill St, Los Angeles, CA 90001" +235696,Bose SoundSport Headphones,1,99.99,07/25/19 08:53,"599 Hill St, New York City, NY 10001" +235697,Lightning Charging Cable,1,14.95,07/10/19 17:03,"380 13th St, Los Angeles, CA 90001" +235698,27in 4K Gaming Monitor,1,389.99,07/18/19 12:49,"607 11th St, San Francisco, CA 94016" +235699,AA Batteries (4-pack),1,3.84,07/04/19 17:26,"680 Hickory St, Seattle, WA 98101" +235700,27in 4K Gaming Monitor,1,389.99,07/03/19 11:32,"528 Cherry St, Seattle, WA 98101" +235701,Lightning Charging Cable,1,14.95,07/19/19 19:36,"810 10th St, Boston, MA 02215" +235702,20in Monitor,1,109.99,07/02/19 21:46,"702 Main St, Austin, TX 73301" +235703,Wired Headphones,1,11.99,07/02/19 04:41,"671 Lake St, Atlanta, GA 30301" +235704,Wired Headphones,1,11.99,07/08/19 06:28,"862 West St, Austin, TX 73301" +235705,27in 4K Gaming Monitor,1,389.99,07/13/19 21:50,"365 9th St, Seattle, WA 98101" +235706,Lightning Charging Cable,1,14.95,07/18/19 12:40,"757 Chestnut St, Los Angeles, CA 90001" +235707,AA Batteries (4-pack),1,3.84,07/23/19 15:48,"574 11th St, Atlanta, GA 30301" +235708,Wired Headphones,1,11.99,07/20/19 15:04,"254 Elm St, Los Angeles, CA 90001" +235709,AA Batteries (4-pack),1,3.84,07/16/19 17:41,"28 Cherry St, Portland, OR 97035" +235710,Lightning Charging Cable,1,14.95,07/23/19 15:02,"223 Jefferson St, Portland, OR 97035" +235711,Wired Headphones,1,11.99,07/29/19 20:40,"67 Jackson St, San Francisco, CA 94016" +235712,Wired Headphones,1,11.99,07/05/19 17:32,"695 Walnut St, Dallas, TX 75001" +235713,Bose SoundSport Headphones,1,99.99,07/03/19 21:49,"1 1st St, Atlanta, GA 30301" +235714,27in FHD Monitor,1,149.99,07/15/19 20:58,"245 Pine St, Boston, MA 02215" +235715,Wired Headphones,1,11.99,07/02/19 19:13,"923 Highland St, Seattle, WA 98101" +235716,USB-C Charging Cable,1,11.95,07/03/19 21:12,"836 Cherry St, San Francisco, CA 94016" +235717,USB-C Charging Cable,1,11.95,07/25/19 00:39,"921 Ridge St, Atlanta, GA 30301" +235718,AA Batteries (4-pack),1,3.84,07/19/19 16:16,"525 9th St, Boston, MA 02215" +235719,iPhone,1,700,07/09/19 20:42,"615 Dogwood St, Atlanta, GA 30301" +235719,Wired Headphones,1,11.99,07/09/19 20:42,"615 Dogwood St, Atlanta, GA 30301" +235720,iPhone,1,700,07/21/19 12:17,"350 Sunset St, Atlanta, GA 30301" +235721,27in 4K Gaming Monitor,1,389.99,07/25/19 16:15,"50 Washington St, Boston, MA 02215" +235722,27in FHD Monitor,1,149.99,07/26/19 08:18,"716 Wilson St, Seattle, WA 98101" +235723,iPhone,1,700,07/27/19 12:01,"657 10th St, Seattle, WA 98101" +235724,iPhone,1,700,07/03/19 08:33,"939 Spruce St, San Francisco, CA 94016" +235725,AA Batteries (4-pack),1,3.84,07/07/19 17:34,"847 Johnson St, Austin, TX 73301" +235726,AA Batteries (4-pack),1,3.84,07/17/19 14:18,"731 5th St, Dallas, TX 75001" +235727,ThinkPad Laptop,1,999.99,07/21/19 21:57,"397 4th St, San Francisco, CA 94016" +235728,20in Monitor,1,109.99,07/28/19 18:37,"872 River St, San Francisco, CA 94016" +235729,AAA Batteries (4-pack),2,2.99,07/17/19 07:24,"715 4th St, San Francisco, CA 94016" +235730,USB-C Charging Cable,1,11.95,07/01/19 12:25,"679 Lincoln St, New York City, NY 10001" +235731,Flatscreen TV,1,300,07/13/19 01:34,"268 Church St, San Francisco, CA 94016" +235732,USB-C Charging Cable,1,11.95,07/20/19 19:02,"804 2nd St, Boston, MA 02215" +235733,LG Dryer,1,600.0,07/01/19 09:01,"751 11th St, San Francisco, CA 94016" +235734,Apple Airpods Headphones,1,150,07/20/19 14:48,"984 Washington St, San Francisco, CA 94016" +235735,AAA Batteries (4-pack),1,2.99,07/25/19 08:48,"207 5th St, New York City, NY 10001" +235736,Lightning Charging Cable,1,14.95,07/19/19 09:24,"21 Elm St, Seattle, WA 98101" +235737,Lightning Charging Cable,1,14.95,07/24/19 11:23,"896 Walnut St, Seattle, WA 98101" +235738,AAA Batteries (4-pack),1,2.99,07/15/19 15:08,"465 Highland St, San Francisco, CA 94016" +235739,Google Phone,1,600,07/19/19 10:43,"820 2nd St, New York City, NY 10001" +235740,Bose SoundSport Headphones,1,99.99,07/02/19 16:42,"208 14th St, San Francisco, CA 94016" +235741,AA Batteries (4-pack),1,3.84,07/22/19 11:48,"599 Lakeview St, Portland, OR 97035" +235742,Lightning Charging Cable,1,14.95,07/17/19 13:46,"734 Lincoln St, Seattle, WA 98101" +235743,ThinkPad Laptop,1,999.99,07/13/19 12:33,"136 14th St, Austin, TX 73301" +235744,27in 4K Gaming Monitor,1,389.99,07/23/19 14:12,"669 1st St, Los Angeles, CA 90001" +235745,27in 4K Gaming Monitor,1,389.99,07/03/19 07:15,"173 2nd St, New York City, NY 10001" +235746,Apple Airpods Headphones,1,150,07/05/19 12:21,"904 10th St, San Francisco, CA 94016" +235747,AAA Batteries (4-pack),2,2.99,07/23/19 18:22,"260 Lake St, Los Angeles, CA 90001" +235748,27in 4K Gaming Monitor,1,389.99,07/28/19 19:48,"161 Willow St, Austin, TX 73301" +235749,AA Batteries (4-pack),1,3.84,07/04/19 22:17,"706 Lakeview St, San Francisco, CA 94016" +235750,AA Batteries (4-pack),1,3.84,07/30/19 09:25,"508 14th St, Boston, MA 02215" +235751,Wired Headphones,1,11.99,07/29/19 11:58,"735 2nd St, San Francisco, CA 94016" +235752,27in 4K Gaming Monitor,1,389.99,07/02/19 13:18,"362 Pine St, Portland, OR 97035" +235753,AAA Batteries (4-pack),2,2.99,07/21/19 22:30,"229 Willow St, Seattle, WA 98101" +235753,20in Monitor,1,109.99,07/21/19 22:30,"229 Willow St, Seattle, WA 98101" +235754,iPhone,1,700,07/04/19 14:44,"39 Cedar St, Atlanta, GA 30301" +235754,Lightning Charging Cable,1,14.95,07/04/19 14:44,"39 Cedar St, Atlanta, GA 30301" +235755,Wired Headphones,1,11.99,07/19/19 17:56,"962 4th St, San Francisco, CA 94016" +235756,Bose SoundSport Headphones,1,99.99,07/30/19 20:20,"249 Meadow St, New York City, NY 10001" +235757,Bose SoundSport Headphones,1,99.99,07/13/19 10:29,"258 Cedar St, Seattle, WA 98101" +235758,AA Batteries (4-pack),1,3.84,07/27/19 15:42,"409 Highland St, New York City, NY 10001" +235759,Bose SoundSport Headphones,1,99.99,07/10/19 22:54,"827 Hill St, Boston, MA 02215" +235760,AAA Batteries (4-pack),1,2.99,07/10/19 22:50,"940 Forest St, Seattle, WA 98101" +235761,AAA Batteries (4-pack),1,2.99,07/02/19 15:56,"902 Johnson St, New York City, NY 10001" +235762,AA Batteries (4-pack),1,3.84,07/31/19 15:33,"81 Forest St, Boston, MA 02215" +235763,27in FHD Monitor,1,149.99,07/29/19 18:15,"558 Hickory St, Dallas, TX 75001" +235764,Google Phone,1,600,07/08/19 12:56,"69 Walnut St, New York City, NY 10001" +235765,AAA Batteries (4-pack),1,2.99,07/04/19 21:07,"782 Madison St, Los Angeles, CA 90001" +235766,Vareebadd Phone,1,400,07/18/19 13:57,"255 Jackson St, Seattle, WA 98101" +235767,AAA Batteries (4-pack),1,2.99,07/31/19 17:40,"541 14th St, New York City, NY 10001" +235768,Flatscreen TV,1,300,07/21/19 09:01,"431 Lakeview St, New York City, NY 10001" +235769,AA Batteries (4-pack),2,3.84,07/05/19 23:29,"591 8th St, Portland, OR 97035" +235770,USB-C Charging Cable,1,11.95,07/02/19 16:17,"476 Meadow St, San Francisco, CA 94016" +235771,Vareebadd Phone,1,400,07/14/19 13:18,"621 9th St, Austin, TX 73301" +235771,Bose SoundSport Headphones,1,99.99,07/14/19 13:18,"621 9th St, Austin, TX 73301" +235772,27in FHD Monitor,1,149.99,07/11/19 23:52,"715 North St, San Francisco, CA 94016" +235773,USB-C Charging Cable,1,11.95,07/31/19 16:01,"333 Sunset St, Seattle, WA 98101" +235774,Google Phone,1,600,07/25/19 10:10,"925 Jefferson St, San Francisco, CA 94016" +235775,AAA Batteries (4-pack),1,2.99,07/03/19 11:46,"393 9th St, New York City, NY 10001" +235776,20in Monitor,1,109.99,07/14/19 16:46,"760 Adams St, Dallas, TX 75001" +235777,Bose SoundSport Headphones,1,99.99,07/29/19 20:22,"704 5th St, San Francisco, CA 94016" +235778,Apple Airpods Headphones,1,150,07/08/19 15:37,"912 2nd St, San Francisco, CA 94016" +235779,AA Batteries (4-pack),3,3.84,07/30/19 14:52,"982 Park St, Los Angeles, CA 90001" +235780,Lightning Charging Cable,1,14.95,07/28/19 10:17,"986 North St, New York City, NY 10001" +235781,Wired Headphones,1,11.99,07/29/19 07:37,"124 Maple St, Seattle, WA 98101" +235782,Lightning Charging Cable,1,14.95,07/26/19 13:56,"756 Washington St, Los Angeles, CA 90001" +235783,Lightning Charging Cable,1,14.95,07/04/19 18:22,"865 Hill St, Dallas, TX 75001" +235784,Lightning Charging Cable,1,14.95,07/04/19 02:02,"343 Maple St, San Francisco, CA 94016" +235785,USB-C Charging Cable,2,11.95,07/08/19 23:33,"598 5th St, Los Angeles, CA 90001" +235786,34in Ultrawide Monitor,1,379.99,07/15/19 14:23,"504 Hickory St, San Francisco, CA 94016" +235787,AAA Batteries (4-pack),1,2.99,07/11/19 22:37,"729 9th St, San Francisco, CA 94016" +235788,AAA Batteries (4-pack),1,2.99,07/03/19 07:58,"192 Meadow St, Portland, OR 97035" +235789,Flatscreen TV,1,300,07/22/19 16:11,"670 Adams St, San Francisco, CA 94016" +235790,Lightning Charging Cable,1,14.95,07/12/19 17:28,"634 Hickory St, Seattle, WA 98101" +235791,20in Monitor,1,109.99,07/08/19 10:03,"720 Hickory St, San Francisco, CA 94016" +235792,AA Batteries (4-pack),2,3.84,07/19/19 10:02,"937 Park St, Los Angeles, CA 90001" +235793,Bose SoundSport Headphones,1,99.99,07/13/19 17:49,"622 Park St, Atlanta, GA 30301" +235794,AAA Batteries (4-pack),3,2.99,07/08/19 17:58,"232 Meadow St, Seattle, WA 98101" +235795,Wired Headphones,1,11.99,07/24/19 08:43,"821 South St, Atlanta, GA 30301" +235796,27in 4K Gaming Monitor,1,389.99,07/22/19 19:30,"182 Lake St, San Francisco, CA 94016" +235797,AA Batteries (4-pack),1,3.84,07/07/19 11:51,"980 Johnson St, Los Angeles, CA 90001" +235798,USB-C Charging Cable,1,11.95,07/12/19 23:21,"211 12th St, Seattle, WA 98101" +235799,AA Batteries (4-pack),1,3.84,07/22/19 18:23,"235 10th St, New York City, NY 10001" +235800,AA Batteries (4-pack),1,3.84,07/27/19 23:24,"895 Sunset St, Los Angeles, CA 90001" +235801,iPhone,1,700,07/29/19 23:53,"107 4th St, Portland, OR 97035" +235802,USB-C Charging Cable,1,11.95,07/31/19 05:35,"300 Wilson St, Atlanta, GA 30301" +235803,34in Ultrawide Monitor,1,379.99,07/31/19 22:50,"760 Cedar St, San Francisco, CA 94016" +235804,Macbook Pro Laptop,1,1700,07/30/19 11:12,"353 North St, San Francisco, CA 94016" +235804,Vareebadd Phone,1,400,07/30/19 11:12,"353 North St, San Francisco, CA 94016" +235805,iPhone,1,700,07/27/19 19:36,"931 14th St, Los Angeles, CA 90001" +235805,Lightning Charging Cable,1,14.95,07/27/19 19:36,"931 14th St, Los Angeles, CA 90001" +235806,Wired Headphones,1,11.99,07/19/19 19:51,"56 4th St, New York City, NY 10001" +235807,Google Phone,1,600,07/27/19 13:37,"548 Adams St, Boston, MA 02215" +235808,Google Phone,1,600,07/29/19 13:14,"213 Cherry St, San Francisco, CA 94016" +235808,USB-C Charging Cable,1,11.95,07/29/19 13:14,"213 Cherry St, San Francisco, CA 94016" +235809,20in Monitor,1,109.99,07/05/19 19:44,"809 Park St, San Francisco, CA 94016" +235810,AAA Batteries (4-pack),1,2.99,07/12/19 19:00,"315 7th St, Boston, MA 02215" +235811,Wired Headphones,1,11.99,07/13/19 10:53,"721 13th St, New York City, NY 10001" +235812,27in 4K Gaming Monitor,1,389.99,07/01/19 13:13,"49 West St, Portland, OR 97035" +235813,Flatscreen TV,1,300,07/20/19 11:38,"512 1st St, New York City, NY 10001" +235814,Flatscreen TV,1,300,07/17/19 19:29,"443 Spruce St, Atlanta, GA 30301" +235815,AA Batteries (4-pack),2,3.84,07/21/19 14:21,"285 Chestnut St, San Francisco, CA 94016" +235816,Bose SoundSport Headphones,1,99.99,07/29/19 17:01,"216 Walnut St, Portland, OR 97035" +235817,Apple Airpods Headphones,1,150,07/25/19 13:01,"169 Main St, Seattle, WA 98101" +235818,AA Batteries (4-pack),1,3.84,07/20/19 09:15,"807 Washington St, Portland, OR 97035" +235819,34in Ultrawide Monitor,1,379.99,07/11/19 11:42,"245 Walnut St, Boston, MA 02215" +235820,Lightning Charging Cable,1,14.95,07/10/19 18:48,"787 River St, San Francisco, CA 94016" +235821,Wired Headphones,1,11.99,07/18/19 18:52,"233 Maple St, Los Angeles, CA 90001" +235822,Wired Headphones,1,11.99,07/06/19 18:55,"288 Hickory St, Seattle, WA 98101" +235823,Lightning Charging Cable,1,14.95,07/01/19 21:36,"736 Cedar St, Los Angeles, CA 90001" +235824,Lightning Charging Cable,1,14.95,07/01/19 20:45,"37 Johnson St, Austin, TX 73301" +235825,Lightning Charging Cable,1,14.95,07/28/19 12:14,"578 14th St, San Francisco, CA 94016" +235826,AAA Batteries (4-pack),2,2.99,07/18/19 07:37,"515 1st St, San Francisco, CA 94016" +235827,Bose SoundSport Headphones,1,99.99,07/17/19 16:37,"573 North St, San Francisco, CA 94016" +235828,Wired Headphones,2,11.99,07/06/19 21:13,"938 5th St, Seattle, WA 98101" +235829,USB-C Charging Cable,1,11.95,07/20/19 19:58,"766 Walnut St, Los Angeles, CA 90001" +235830,AA Batteries (4-pack),1,3.84,07/29/19 13:37,"189 10th St, Los Angeles, CA 90001" +235831,Apple Airpods Headphones,1,150,07/08/19 20:32,"709 Lakeview St, San Francisco, CA 94016" +235832,AAA Batteries (4-pack),1,2.99,07/03/19 17:53,"130 West St, Boston, MA 02215" +235833,Wired Headphones,1,11.99,07/17/19 21:11,"780 6th St, New York City, NY 10001" +235834,Wired Headphones,1,11.99,07/04/19 17:39,"782 South St, Los Angeles, CA 90001" +235835,AA Batteries (4-pack),1,3.84,07/14/19 21:37,"147 Jackson St, San Francisco, CA 94016" +235836,Lightning Charging Cable,1,14.95,07/05/19 15:03,"102 Highland St, Dallas, TX 75001" +235837,Wired Headphones,1,11.99,07/06/19 15:16,"378 Wilson St, San Francisco, CA 94016" +235838,Wired Headphones,1,11.99,07/06/19 16:45,"344 South St, Atlanta, GA 30301" +235839,Apple Airpods Headphones,1,150,07/31/19 15:11,"157 North St, New York City, NY 10001" +235840,Bose SoundSport Headphones,1,99.99,07/18/19 13:03,"770 Lake St, Boston, MA 02215" +235841,Wired Headphones,1,11.99,07/21/19 23:16,"202 8th St, Dallas, TX 75001" +235842,Wired Headphones,1,11.99,07/07/19 22:46,"395 Lincoln St, New York City, NY 10001" +235843,Wired Headphones,1,11.99,07/31/19 15:23,"255 Center St, New York City, NY 10001" +235844,Lightning Charging Cable,1,14.95,07/01/19 16:43,"934 10th St, Boston, MA 02215" +235845,27in FHD Monitor,1,149.99,07/19/19 11:31,"483 Center St, San Francisco, CA 94016" +235846,ThinkPad Laptop,1,999.99,07/27/19 01:43,"625 4th St, New York City, NY 10001" +235847,Apple Airpods Headphones,1,150,07/19/19 13:19,"537 Jackson St, San Francisco, CA 94016" +235848,Google Phone,1,600,07/21/19 15:57,"513 Cherry St, Atlanta, GA 30301" +235848,USB-C Charging Cable,1,11.95,07/21/19 15:57,"513 Cherry St, Atlanta, GA 30301" +235849,AA Batteries (4-pack),1,3.84,07/29/19 13:06,"302 West St, Boston, MA 02215" +235850,USB-C Charging Cable,1,11.95,07/26/19 14:26,"601 8th St, San Francisco, CA 94016" +235851,Apple Airpods Headphones,1,150,07/29/19 20:29,"377 Forest St, Portland, OR 97035" +235852,USB-C Charging Cable,1,11.95,07/08/19 08:40,"734 Madison St, San Francisco, CA 94016" +235853,34in Ultrawide Monitor,1,379.99,07/08/19 13:34,"849 Maple St, San Francisco, CA 94016" +235854,Lightning Charging Cable,1,14.95,07/16/19 16:34,"160 North St, New York City, NY 10001" +235855,USB-C Charging Cable,1,11.95,07/02/19 18:06,"385 West St, San Francisco, CA 94016" +235856,Google Phone,1,600,07/03/19 18:09,"263 6th St, Boston, MA 02215" +235856,Bose SoundSport Headphones,1,99.99,07/03/19 18:09,"263 6th St, Boston, MA 02215" +235857,Bose SoundSport Headphones,1,99.99,07/13/19 11:51,"433 Hill St, Austin, TX 73301" +235858,AA Batteries (4-pack),1,3.84,07/24/19 18:32,"657 Spruce St, Dallas, TX 75001" +235859,AA Batteries (4-pack),1,3.84,07/17/19 20:13,"225 Jackson St, Austin, TX 73301" +235860,USB-C Charging Cable,1,11.95,07/26/19 20:23,"599 Meadow St, New York City, NY 10001" +235861,27in FHD Monitor,1,149.99,07/29/19 10:59,"756 Dogwood St, Boston, MA 02215" +235862,Apple Airpods Headphones,1,150,07/01/19 19:08,"225 Lake St, San Francisco, CA 94016" +235863,AA Batteries (4-pack),1,3.84,07/20/19 16:04,"406 6th St, San Francisco, CA 94016" +235864,AA Batteries (4-pack),1,3.84,07/05/19 22:27,"614 Dogwood St, Los Angeles, CA 90001" +235865,AA Batteries (4-pack),1,3.84,07/20/19 18:18,"573 10th St, New York City, NY 10001" +235866,27in FHD Monitor,1,149.99,07/21/19 14:36,"635 Madison St, Los Angeles, CA 90001" +235867,Bose SoundSport Headphones,1,99.99,07/23/19 07:26,"286 Hickory St, Dallas, TX 75001" +235868,34in Ultrawide Monitor,1,379.99,07/24/19 12:04,"471 Highland St, San Francisco, CA 94016" +235869,27in FHD Monitor,1,149.99,07/18/19 20:05,"864 Hill St, San Francisco, CA 94016" +235870,Bose SoundSport Headphones,1,99.99,07/27/19 18:17,"405 River St, San Francisco, CA 94016" +235871,AAA Batteries (4-pack),1,2.99,07/18/19 22:18,"664 Pine St, Boston, MA 02215" +235872,34in Ultrawide Monitor,1,379.99,07/30/19 09:33,"846 4th St, San Francisco, CA 94016" +235873,USB-C Charging Cable,1,11.95,07/28/19 20:38,"136 Cherry St, Portland, OR 97035" +235874,Vareebadd Phone,1,400,07/14/19 22:54,"708 Willow St, Boston, MA 02215" +235875,Lightning Charging Cable,2,14.95,07/25/19 17:56,"329 Dogwood St, Los Angeles, CA 90001" +235876,AA Batteries (4-pack),2,3.84,07/16/19 14:32,"567 Park St, San Francisco, CA 94016" +235877,Apple Airpods Headphones,1,150,07/23/19 21:09,"812 7th St, Atlanta, GA 30301" +235878,AAA Batteries (4-pack),2,2.99,07/04/19 09:15,"745 River St, San Francisco, CA 94016" +235879,Bose SoundSport Headphones,1,99.99,07/25/19 19:56,"492 13th St, Seattle, WA 98101" +235880,Wired Headphones,1,11.99,07/12/19 21:16,"348 Pine St, Austin, TX 73301" +235881,ThinkPad Laptop,1,999.99,07/03/19 18:39,"87 Lincoln St, San Francisco, CA 94016" +235882,27in 4K Gaming Monitor,1,389.99,07/02/19 13:18,"199 Church St, Los Angeles, CA 90001" +235883,Wired Headphones,1,11.99,07/29/19 10:58,"178 Johnson St, San Francisco, CA 94016" +235884,Lightning Charging Cable,1,14.95,07/20/19 19:11,"398 Church St, Boston, MA 02215" +235885,AAA Batteries (4-pack),1,2.99,07/13/19 11:15,"714 5th St, Atlanta, GA 30301" +235886,27in 4K Gaming Monitor,1,389.99,07/14/19 06:15,"875 Jefferson St, San Francisco, CA 94016" +235887,USB-C Charging Cable,2,11.95,07/08/19 23:51,"117 Cherry St, San Francisco, CA 94016" +235888,USB-C Charging Cable,1,11.95,07/08/19 14:34,"927 Cedar St, Austin, TX 73301" +235888,Apple Airpods Headphones,1,150,07/08/19 14:34,"927 Cedar St, Austin, TX 73301" +235889,AAA Batteries (4-pack),1,2.99,07/18/19 18:05,"151 Pine St, Seattle, WA 98101" +235890,Lightning Charging Cable,1,14.95,07/04/19 02:13,"757 Highland St, Seattle, WA 98101" +235891,Apple Airpods Headphones,1,150,07/03/19 02:24,"140 11th St, San Francisco, CA 94016" +235892,AA Batteries (4-pack),1,3.84,07/15/19 16:40,"374 Ridge St, Boston, MA 02215" +235893,Lightning Charging Cable,1,14.95,07/19/19 20:51,"668 River St, San Francisco, CA 94016" +235894,Lightning Charging Cable,1,14.95,07/19/19 12:35,"297 Sunset St, Dallas, TX 75001" +235895,Apple Airpods Headphones,1,150,07/29/19 10:53,"328 1st St, San Francisco, CA 94016" +235896,AAA Batteries (4-pack),1,2.99,07/24/19 10:58,"831 Main St, Boston, MA 02215" +235897,Bose SoundSport Headphones,1,99.99,07/16/19 17:11,"802 12th St, Austin, TX 73301" +235898,Bose SoundSport Headphones,1,99.99,07/10/19 16:17,"48 Adams St, Seattle, WA 98101" +235899,Lightning Charging Cable,1,14.95,07/13/19 06:41,"309 Ridge St, Seattle, WA 98101" +235900,AAA Batteries (4-pack),2,2.99,07/01/19 13:47,"542 Elm St, Los Angeles, CA 90001" +235901,Wired Headphones,1,11.99,07/02/19 17:42,"995 13th St, New York City, NY 10001" +235902,AA Batteries (4-pack),1,3.84,07/16/19 11:51,"392 Sunset St, Los Angeles, CA 90001" +235903,27in FHD Monitor,1,149.99,07/28/19 19:44,"432 Willow St, Portland, OR 97035" +235904,34in Ultrawide Monitor,1,379.99,07/24/19 16:35,"910 Hickory St, San Francisco, CA 94016" +235905,Lightning Charging Cable,1,14.95,07/18/19 06:12,"575 Main St, Seattle, WA 98101" +235906,AA Batteries (4-pack),1,3.84,07/11/19 09:01,"945 Hill St, San Francisco, CA 94016" +235907,AAA Batteries (4-pack),1,2.99,07/26/19 21:27,"889 5th St, Los Angeles, CA 90001" +235908,Google Phone,1,600,07/28/19 21:02,"830 Wilson St, Seattle, WA 98101" +235908,Bose SoundSport Headphones,1,99.99,07/28/19 21:02,"830 Wilson St, Seattle, WA 98101" +235909,Wired Headphones,1,11.99,07/13/19 20:30,"283 North St, Dallas, TX 75001" +235910,Lightning Charging Cable,1,14.95,07/18/19 11:48,"240 Cedar St, New York City, NY 10001" +235911,Apple Airpods Headphones,1,150,07/16/19 14:40,"526 Chestnut St, San Francisco, CA 94016" +235912,27in 4K Gaming Monitor,1,389.99,07/20/19 17:31,"117 Meadow St, Atlanta, GA 30301" +235913,USB-C Charging Cable,1,11.95,07/22/19 04:08,"886 14th St, Atlanta, GA 30301" +235914,AA Batteries (4-pack),1,3.84,07/15/19 20:57,"996 Lake St, Atlanta, GA 30301" +235915,27in FHD Monitor,1,149.99,07/10/19 20:49,"443 Walnut St, Atlanta, GA 30301" +235916,Bose SoundSport Headphones,1,99.99,07/21/19 21:39,"155 South St, Boston, MA 02215" +235917,AAA Batteries (4-pack),3,2.99,07/04/19 18:06,"126 Pine St, Dallas, TX 75001" +235918,AAA Batteries (4-pack),2,2.99,07/16/19 12:02,"777 10th St, Los Angeles, CA 90001" +235919,AA Batteries (4-pack),1,3.84,07/29/19 10:05,"401 Ridge St, Boston, MA 02215" +235920,USB-C Charging Cable,1,11.95,07/24/19 23:31,"256 Hill St, San Francisco, CA 94016" +235921,Macbook Pro Laptop,1,1700,07/12/19 13:46,"307 South St, Los Angeles, CA 90001" +235922,Bose SoundSport Headphones,1,99.99,07/08/19 23:12,"442 Johnson St, San Francisco, CA 94016" +235923,Vareebadd Phone,1,400,07/13/19 02:40,"891 1st St, Boston, MA 02215" +235924,Lightning Charging Cable,1,14.95,07/04/19 22:20,"282 Center St, Seattle, WA 98101" +235925,Bose SoundSport Headphones,1,99.99,07/01/19 09:08,"314 Highland St, San Francisco, CA 94016" +235926,Macbook Pro Laptop,1,1700,07/19/19 16:28,"647 Pine St, Los Angeles, CA 90001" +235927,AAA Batteries (4-pack),1,2.99,07/27/19 20:55,"494 Madison St, San Francisco, CA 94016" +235928,Google Phone,1,600,07/27/19 06:11,"157 Forest St, Boston, MA 02215" +235929,27in FHD Monitor,1,149.99,07/19/19 11:18,"382 Sunset St, Portland, OR 97035" +235930,Wired Headphones,1,11.99,07/29/19 10:46,"728 Pine St, Boston, MA 02215" +235931,Apple Airpods Headphones,1,150,07/15/19 15:24,"748 Johnson St, Los Angeles, CA 90001" +235932,Lightning Charging Cable,1,14.95,07/22/19 15:25,"169 11th St, Atlanta, GA 30301" +235933,Wired Headphones,1,11.99,07/21/19 01:49,"431 Jackson St, Boston, MA 02215" +235934,ThinkPad Laptop,1,999.99,07/17/19 09:52,"413 Center St, Los Angeles, CA 90001" +235935,AA Batteries (4-pack),5,3.84,07/08/19 08:57,"30 Highland St, Los Angeles, CA 90001" +235936,Bose SoundSport Headphones,1,99.99,07/29/19 22:17,"683 Elm St, Los Angeles, CA 90001" +235937,Apple Airpods Headphones,1,150,07/31/19 01:09,"526 14th St, San Francisco, CA 94016" +235938,AA Batteries (4-pack),1,3.84,07/31/19 12:59,"737 West St, Austin, TX 73301" +235939,Flatscreen TV,1,300,07/04/19 14:24,"856 Ridge St, New York City, NY 10001" +,,,,, +235940,27in FHD Monitor,1,149.99,07/01/19 12:06,"742 Sunset St, Dallas, TX 75001" +235941,AA Batteries (4-pack),2,3.84,07/26/19 20:50,"299 Ridge St, Los Angeles, CA 90001" +235942,Vareebadd Phone,1,400,07/30/19 15:38,"201 Cherry St, New York City, NY 10001" +235943,Apple Airpods Headphones,1,150,07/01/19 18:53,"130 Washington St, San Francisco, CA 94016" +235944,20in Monitor,1,109.99,07/08/19 12:35,"349 Johnson St, Portland, OR 97035" +235945,AA Batteries (4-pack),1,3.84,07/30/19 14:27,"454 Cedar St, Los Angeles, CA 90001" +235946,Lightning Charging Cable,1,14.95,07/06/19 18:21,"832 Adams St, Los Angeles, CA 90001" +235947,Vareebadd Phone,1,400,07/17/19 00:14,"442 4th St, Seattle, WA 98101" +235947,Bose SoundSport Headphones,1,99.99,07/17/19 00:14,"442 4th St, Seattle, WA 98101" +235948,Macbook Pro Laptop,1,1700,07/26/19 20:56,"308 1st St, Los Angeles, CA 90001" +235949,Lightning Charging Cable,1,14.95,07/23/19 11:28,"37 4th St, New York City, NY 10001" +235950,iPhone,1,700,07/30/19 14:46,"562 Walnut St, San Francisco, CA 94016" +235951,Wired Headphones,1,11.99,07/03/19 19:30,"221 Center St, Boston, MA 02215" +235952,Lightning Charging Cable,1,14.95,07/20/19 22:14,"439 Sunset St, Los Angeles, CA 90001" +235953,AAA Batteries (4-pack),1,2.99,07/31/19 18:08,"120 Chestnut St, Portland, OR 97035" +235954,USB-C Charging Cable,1,11.95,07/08/19 12:24,"750 Maple St, San Francisco, CA 94016" +235955,Apple Airpods Headphones,1,150,07/09/19 17:35,"194 7th St, Portland, OR 97035" +235956,Wired Headphones,1,11.99,07/13/19 11:34,"130 14th St, Atlanta, GA 30301" +235957,20in Monitor,1,109.99,07/23/19 20:11,"382 5th St, San Francisco, CA 94016" +235958,AA Batteries (4-pack),1,3.84,07/23/19 21:43,"721 Chestnut St, Dallas, TX 75001" +235959,Google Phone,1,600,07/27/19 13:13,"739 5th St, New York City, NY 10001" +235960,Flatscreen TV,1,300,07/29/19 11:52,"463 Forest St, New York City, NY 10001" +235961,34in Ultrawide Monitor,1,379.99,07/01/19 18:21,"437 Hill St, Portland, OR 97035" +235962,Flatscreen TV,1,300,07/23/19 14:55,"657 Lincoln St, Portland, OR 97035" +235963,Wired Headphones,1,11.99,07/21/19 14:56,"847 1st St, San Francisco, CA 94016" +235964,Wired Headphones,1,11.99,07/21/19 20:03,"424 Jackson St, New York City, NY 10001" +235965,20in Monitor,1,109.99,07/07/19 20:49,"334 12th St, San Francisco, CA 94016" +235966,USB-C Charging Cable,1,11.95,07/14/19 18:20,"670 North St, San Francisco, CA 94016" +235967,27in 4K Gaming Monitor,1,389.99,07/10/19 23:28,"731 Cedar St, Atlanta, GA 30301" +235968,AA Batteries (4-pack),1,3.84,07/15/19 09:08,"658 South St, Los Angeles, CA 90001" +235969,Flatscreen TV,1,300,07/11/19 07:21,"757 9th St, Portland, OR 97035" +235970,Wired Headphones,1,11.99,07/09/19 21:16,"257 Wilson St, San Francisco, CA 94016" +235971,Bose SoundSport Headphones,1,99.99,07/20/19 13:04,"728 2nd St, Boston, MA 02215" +235972,Apple Airpods Headphones,1,150,07/29/19 11:21,"239 Sunset St, San Francisco, CA 94016" +235973,Apple Airpods Headphones,1,150,07/07/19 14:48,"734 Hickory St, Los Angeles, CA 90001" +235974,AAA Batteries (4-pack),1,2.99,07/03/19 17:28,"948 Hill St, San Francisco, CA 94016" +235975,ThinkPad Laptop,1,999.99,07/14/19 09:31,"254 Madison St, New York City, NY 10001" +235976,Lightning Charging Cable,1,14.95,07/20/19 11:32,"654 Sunset St, San Francisco, CA 94016" +235977,Macbook Pro Laptop,1,1700,07/05/19 09:17,"674 Center St, Seattle, WA 98101" +235978,AA Batteries (4-pack),1,3.84,07/21/19 10:57,"6 Jefferson St, Atlanta, GA 30301" +235979,AA Batteries (4-pack),1,3.84,07/18/19 00:57,"674 Willow St, San Francisco, CA 94016" +235980,Lightning Charging Cable,2,14.95,07/01/19 10:01,"308 Pine St, Portland, OR 97035" +235981,Google Phone,1,600,07/22/19 21:13,"947 14th St, New York City, NY 10001" +235982,20in Monitor,1,109.99,07/02/19 20:59,"562 5th St, San Francisco, CA 94016" +235983,27in 4K Gaming Monitor,1,389.99,07/03/19 18:21,"767 North St, Los Angeles, CA 90001" +235984,Lightning Charging Cable,1,14.95,07/12/19 08:46,"683 12th St, Dallas, TX 75001" +235985,ThinkPad Laptop,1,999.99,07/30/19 10:33,"890 5th St, Boston, MA 02215" +235986,27in FHD Monitor,1,149.99,07/30/19 19:46,"19 Highland St, San Francisco, CA 94016" +235987,AA Batteries (4-pack),1,3.84,07/02/19 23:13,"958 11th St, San Francisco, CA 94016" +235988,AA Batteries (4-pack),2,3.84,07/17/19 15:24,"51 Main St, Austin, TX 73301" +235989,ThinkPad Laptop,1,999.99,07/01/19 13:37,"125 Cedar St, Dallas, TX 75001" +235990,AAA Batteries (4-pack),1,2.99,07/06/19 20:52,"442 Elm St, Portland, ME 04101" +235991,Google Phone,1,600,07/11/19 10:52,"373 Sunset St, Atlanta, GA 30301" +235992,Lightning Charging Cable,1,14.95,07/12/19 07:56,"704 12th St, Dallas, TX 75001" +235993,Wired Headphones,1,11.99,07/15/19 19:31,"299 Cherry St, Dallas, TX 75001" +235994,ThinkPad Laptop,1,999.99,07/07/19 10:40,"559 1st St, Seattle, WA 98101" +235995,USB-C Charging Cable,1,11.95,07/02/19 12:06,"175 Hill St, Boston, MA 02215" +235996,Wired Headphones,2,11.99,07/17/19 22:08,"312 Meadow St, Austin, TX 73301" +235997,Vareebadd Phone,1,400,07/05/19 09:05,"33 Madison St, Seattle, WA 98101" +235998,Vareebadd Phone,1,400,07/30/19 01:05,"227 Hill St, San Francisco, CA 94016" +235999,AA Batteries (4-pack),1,3.84,07/09/19 14:08,"354 Lake St, Portland, OR 97035" +236000,AA Batteries (4-pack),2,3.84,07/19/19 13:29,"900 Maple St, Los Angeles, CA 90001" +236001,Bose SoundSport Headphones,1,99.99,07/29/19 14:53,"456 5th St, Seattle, WA 98101" +236002,USB-C Charging Cable,1,11.95,07/24/19 21:02,"632 14th St, Boston, MA 02215" +236003,20in Monitor,1,109.99,07/07/19 17:23,"61 Johnson St, Los Angeles, CA 90001" +236004,Lightning Charging Cable,1,14.95,07/28/19 11:30,"784 9th St, New York City, NY 10001" +236005,Bose SoundSport Headphones,1,99.99,07/04/19 23:21,"934 Main St, Austin, TX 73301" +236006,AA Batteries (4-pack),1,3.84,07/05/19 22:14,"996 North St, New York City, NY 10001" +236007,Bose SoundSport Headphones,1,99.99,07/31/19 20:26,"712 Lakeview St, San Francisco, CA 94016" +236008,27in FHD Monitor,1,149.99,07/02/19 09:24,"880 2nd St, New York City, NY 10001" +236009,Flatscreen TV,1,300,07/09/19 21:17,"776 12th St, Los Angeles, CA 90001" +236010,Lightning Charging Cable,1,14.95,07/07/19 14:18,"407 Lakeview St, Seattle, WA 98101" +236011,AA Batteries (4-pack),1,3.84,07/31/19 12:06,"468 5th St, Los Angeles, CA 90001" +236012,AAA Batteries (4-pack),1,2.99,07/31/19 16:51,"698 Center St, Los Angeles, CA 90001" +236013,AA Batteries (4-pack),3,3.84,07/13/19 22:30,"293 Johnson St, Atlanta, GA 30301" +236014,AA Batteries (4-pack),1,3.84,07/13/19 11:33,"627 Jackson St, Dallas, TX 75001" +236015,Wired Headphones,1,11.99,07/29/19 08:49,"830 Adams St, Seattle, WA 98101" +236016,Flatscreen TV,1,300,07/13/19 08:06,"264 Lincoln St, New York City, NY 10001" +236016,AA Batteries (4-pack),1,3.84,07/13/19 08:06,"264 Lincoln St, New York City, NY 10001" +236017,34in Ultrawide Monitor,1,379.99,07/10/19 07:08,"418 Cherry St, Los Angeles, CA 90001" diff --git a/sales_data/Sales_June_2019.csv b/sales_data/Sales_June_2019.csv new file mode 100644 index 0000000..1b5cb2e --- /dev/null +++ b/sales_data/Sales_June_2019.csv @@ -0,0 +1,16050 @@ +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +206225,Apple Airpods Headphones,1,150.0,06/07/19 15:20,"769 Spruce St, San Francisco, CA 94016" +206226,AAA Batteries (4-pack),1,2.99,06/03/19 22:38,"431 Madison St, Los Angeles, CA 90001" +206227,USB-C Charging Cable,1,11.95,06/15/19 11:15,"88 Lake St, Portland, OR 97035" +206228,AA Batteries (4-pack),1,3.84,06/10/19 17:24,"49 6th St, Boston, MA 02215" +206229,27in FHD Monitor,1,149.99,06/23/19 00:46,"728 Lakeview St, Seattle, WA 98101" +206230,27in FHD Monitor,1,149.99,06/09/19 15:39,"171 Walnut St, Boston, MA 02215" +206231,iPhone,1,700.0,06/10/19 19:03,"153 Pine St, New York City, NY 10001" +206232,AA Batteries (4-pack),1,3.84,06/09/19 01:41,"965 Highland St, Portland, ME 04101" +206233,AAA Batteries (4-pack),1,2.99,06/21/19 16:24,"536 Maple St, Boston, MA 02215" +206234,Lightning Charging Cable,1,14.95,06/21/19 01:14,"684 Highland St, San Francisco, CA 94016" +206235,Lightning Charging Cable,2,14.95,06/24/19 16:34,"319 River St, Seattle, WA 98101" +206236,AA Batteries (4-pack),2,3.84,06/10/19 21:55,"462 Park St, New York City, NY 10001" +206237,Bose SoundSport Headphones,1,99.99,06/11/19 08:06,"906 4th St, Los Angeles, CA 90001" +206238,AAA Batteries (4-pack),1,2.99,06/25/19 10:33,"163 Johnson St, Portland, OR 97035" +206239,USB-C Charging Cable,1,11.95,06/10/19 13:54,"327 Jefferson St, Boston, MA 02215" +206240,34in Ultrawide Monitor,1,379.99,06/02/19 20:39,"571 8th St, New York City, NY 10001" +206241,Bose SoundSport Headphones,1,99.99,06/30/19 20:49,"34 7th St, Boston, MA 02215" +206242,AAA Batteries (4-pack),3,2.99,06/25/19 21:32,"161 13th St, Portland, OR 97035" +206243,Google Phone,1,600.0,06/08/19 18:44,"427 2nd St, Atlanta, GA 30301" +206243,USB-C Charging Cable,1,11.95,06/08/19 18:44,"427 2nd St, Atlanta, GA 30301" +206244,AAA Batteries (4-pack),1,2.99,06/25/19 11:27,"286 13th St, San Francisco, CA 94016" +206244,27in 4K Gaming Monitor,1,389.99,06/25/19 11:27,"286 13th St, San Francisco, CA 94016" +206245,AAA Batteries (4-pack),1,2.99,06/03/19 09:02,"435 West St, Seattle, WA 98101" +206246,USB-C Charging Cable,1,11.95,06/16/19 06:12,"179 12th St, San Francisco, CA 94016" +206247,Lightning Charging Cable,1,14.95,06/29/19 14:33,"987 River St, Portland, OR 97035" +206248,20in Monitor,1,109.99,06/15/19 12:13,"194 11th St, Portland, OR 97035" +206249,AA Batteries (4-pack),1,3.84,06/26/19 13:52,"73 Center St, Atlanta, GA 30301" +206250,iPhone,1,700.0,06/19/19 08:10,"178 Willow St, Dallas, TX 75001" +206250,Lightning Charging Cable,1,14.95,06/19/19 08:10,"178 Willow St, Dallas, TX 75001" +206251,Wired Headphones,1,11.99,06/09/19 10:54,"242 Hickory St, Dallas, TX 75001" +206252,USB-C Charging Cable,1,11.95,06/14/19 13:05,"694 6th St, Seattle, WA 98101" +206253,AAA Batteries (4-pack),1,2.99,06/28/19 14:16,"380 Adams St, Boston, MA 02215" +206254,Bose SoundSport Headphones,1,99.99,06/30/19 11:21,"269 Highland St, San Francisco, CA 94016" +206255,AA Batteries (4-pack),2,3.84,06/01/19 22:54,"875 Main St, San Francisco, CA 94016" +206256,34in Ultrawide Monitor,1,379.99,06/30/19 22:39,"986 Meadow St, Los Angeles, CA 90001" +206257,Macbook Pro Laptop,1,1700.0,06/22/19 18:59,"618 Hill St, Portland, OR 97035" +206258,27in FHD Monitor,1,149.99,06/27/19 18:11,"544 Lakeview St, New York City, NY 10001" +206259,Apple Airpods Headphones,1,150.0,06/22/19 17:07,"583 7th St, Los Angeles, CA 90001" +206260,AA Batteries (4-pack),1,3.84,06/18/19 16:19,"922 North St, San Francisco, CA 94016" +206261,Apple Airpods Headphones,1,150.0,06/27/19 09:02,"296 Lincoln St, Seattle, WA 98101" +206262,Apple Airpods Headphones,1,150.0,06/01/19 10:44,"904 Sunset St, Atlanta, GA 30301" +206263,iPhone,1,700.0,06/18/19 11:06,"692 Jackson St, Los Angeles, CA 90001" +206264,AAA Batteries (4-pack),1,2.99,06/10/19 18:55,"368 13th St, San Francisco, CA 94016" +206265,Wired Headphones,1,11.99,06/07/19 09:06,"588 Highland St, Los Angeles, CA 90001" +206266,Lightning Charging Cable,1,14.95,06/27/19 11:33,"11 Walnut St, San Francisco, CA 94016" +206267,Google Phone,1,600.0,06/28/19 22:27,"153 8th St, San Francisco, CA 94016" +206267,USB-C Charging Cable,1,11.95,06/28/19 22:27,"153 8th St, San Francisco, CA 94016" +206268,Lightning Charging Cable,1,14.95,06/26/19 11:03,"906 10th St, Atlanta, GA 30301" +206269,Wired Headphones,1,11.99,06/16/19 11:15,"442 Center St, New York City, NY 10001" +206270,ThinkPad Laptop,1,999.99,06/16/19 10:56,"548 Forest St, San Francisco, CA 94016" +206271,Bose SoundSport Headphones,1,99.99,06/19/19 13:36,"915 14th St, New York City, NY 10001" +206272,Bose SoundSport Headphones,1,99.99,06/02/19 15:45,"938 Walnut St, Atlanta, GA 30301" +206273,Lightning Charging Cable,1,14.95,06/25/19 12:21,"958 2nd St, Los Angeles, CA 90001" +206274,Bose SoundSport Headphones,1,99.99,06/25/19 14:27,"567 Maple St, San Francisco, CA 94016" +206275,Apple Airpods Headphones,1,150.0,06/29/19 11:18,"340 Jefferson St, Boston, MA 02215" +206276,USB-C Charging Cable,1,11.95,06/20/19 20:55,"487 Lincoln St, Atlanta, GA 30301" +206277,Vareebadd Phone,1,400.0,06/10/19 15:50,"72 Washington St, Portland, ME 04101" +206278,Apple Airpods Headphones,1,150.0,06/18/19 10:42,"271 1st St, New York City, NY 10001" +206279,Bose SoundSport Headphones,1,99.99,06/12/19 16:47,"282 West St, Los Angeles, CA 90001" +206280,Wired Headphones,1,11.99,06/30/19 17:22,"868 West St, San Francisco, CA 94016" +206281,Apple Airpods Headphones,1,150.0,06/16/19 17:31,"655 9th St, San Francisco, CA 94016" +206282,Lightning Charging Cable,1,14.95,06/28/19 20:59,"378 Elm St, Dallas, TX 75001" +206283,ThinkPad Laptop,1,999.99,06/01/19 11:26,"237 6th St, San Francisco, CA 94016" +206284,Wired Headphones,1,11.99,06/21/19 21:01,"681 Elm St, Atlanta, GA 30301" +206285,34in Ultrawide Monitor,1,379.99,06/02/19 20:19,"817 Forest St, Seattle, WA 98101" +206286,Wired Headphones,1,11.99,06/28/19 14:42,"69 Jackson St, Atlanta, GA 30301" +206287,27in 4K Gaming Monitor,1,389.99,06/19/19 14:28,"992 Madison St, New York City, NY 10001" +206288,USB-C Charging Cable,1,11.95,06/08/19 23:38,"755 South St, San Francisco, CA 94016" +206289,USB-C Charging Cable,1,11.95,06/11/19 19:22,"597 Cherry St, Boston, MA 02215" +206290,27in FHD Monitor,1,149.99,06/28/19 07:53,"797 South St, Boston, MA 02215" +206291,Flatscreen TV,1,300.0,06/10/19 23:39,"132 9th St, Atlanta, GA 30301" +206292,Lightning Charging Cable,1,14.95,06/05/19 14:02,"467 1st St, San Francisco, CA 94016" +206292,iPhone,1,700.0,06/05/19 14:02,"467 1st St, San Francisco, CA 94016" +206293,USB-C Charging Cable,1,11.95,06/03/19 10:54,"116 Washington St, Seattle, WA 98101" +206294,Apple Airpods Headphones,1,150.0,06/22/19 10:24,"916 Lake St, Los Angeles, CA 90001" +206295,Apple Airpods Headphones,2,150.0,06/26/19 17:14,"592 Madison St, San Francisco, CA 94016" +206296,USB-C Charging Cable,2,11.95,06/21/19 00:37,"519 2nd St, Seattle, WA 98101" +206297,34in Ultrawide Monitor,1,379.99,06/17/19 20:06,"850 11th St, Portland, ME 04101" +206298,34in Ultrawide Monitor,1,379.99,06/25/19 06:32,"346 Sunset St, New York City, NY 10001" +206299,Wired Headphones,1,11.99,06/25/19 18:57,"831 West St, New York City, NY 10001" +206300,USB-C Charging Cable,1,11.95,06/19/19 19:49,"979 Pine St, New York City, NY 10001" +206301,34in Ultrawide Monitor,1,379.99,06/14/19 21:15,"462 Highland St, San Francisco, CA 94016" +206302,USB-C Charging Cable,1,11.95,06/05/19 15:51,"422 6th St, Portland, OR 97035" +206303,USB-C Charging Cable,1,11.95,06/08/19 10:38,"638 9th St, San Francisco, CA 94016" +206304,27in 4K Gaming Monitor,1,389.99,06/17/19 18:45,"889 5th St, Austin, TX 73301" +206305,Apple Airpods Headphones,1,150.0,06/04/19 10:05,"261 6th St, Dallas, TX 75001" +206306,34in Ultrawide Monitor,1,379.99,06/28/19 11:30,"604 Chestnut St, San Francisco, CA 94016" +206307,Wired Headphones,1,11.99,06/17/19 16:20,"950 11th St, New York City, NY 10001" +206308,34in Ultrawide Monitor,1,379.99,06/21/19 16:03,"162 Main St, Austin, TX 73301" +206309,27in FHD Monitor,1,149.99,06/18/19 08:37,"788 9th St, New York City, NY 10001" +206310,Google Phone,1,600.0,06/30/19 19:52,"535 Elm St, New York City, NY 10001" +206311,AAA Batteries (4-pack),3,2.99,06/06/19 20:54,"526 Maple St, Seattle, WA 98101" +206312,27in FHD Monitor,1,149.99,06/15/19 22:19,"331 Maple St, New York City, NY 10001" +206313,34in Ultrawide Monitor,1,379.99,06/18/19 13:08,"593 Sunset St, Seattle, WA 98101" +206314,Lightning Charging Cable,1,14.95,06/24/19 20:41,"349 Pine St, Portland, OR 97035" +206315,Lightning Charging Cable,1,14.95,06/20/19 09:52,"435 Willow St, New York City, NY 10001" +206316,AAA Batteries (4-pack),4,2.99,06/08/19 09:33,"500 Jackson St, Atlanta, GA 30301" +206317,Google Phone,1,600.0,06/29/19 16:42,"512 Elm St, San Francisco, CA 94016" +206317,USB-C Charging Cable,1,11.95,06/29/19 16:42,"512 Elm St, San Francisco, CA 94016" +206318,AAA Batteries (4-pack),2,2.99,06/05/19 14:36,"343 Meadow St, Boston, MA 02215" +206319,AAA Batteries (4-pack),4,2.99,06/12/19 16:20,"248 Hickory St, San Francisco, CA 94016" +206320,ThinkPad Laptop,1,999.99,06/07/19 16:50,"852 West St, New York City, NY 10001" +206321,Bose SoundSport Headphones,1,99.99,06/21/19 14:28,"729 Lake St, Seattle, WA 98101" +206322,Google Phone,1,600.0,06/23/19 22:14,"221 Willow St, New York City, NY 10001" +206322,Bose SoundSport Headphones,1,99.99,06/23/19 22:14,"221 Willow St, New York City, NY 10001" +206323,Apple Airpods Headphones,1,150.0,06/22/19 11:29,"840 2nd St, Dallas, TX 75001" +206324,AAA Batteries (4-pack),1,2.99,06/14/19 16:50,"426 Wilson St, Seattle, WA 98101" +206325,USB-C Charging Cable,1,11.95,06/17/19 12:00,"557 Spruce St, San Francisco, CA 94016" +206326,Google Phone,1,600.0,06/22/19 15:20,"306 South St, New York City, NY 10001" +206327,Macbook Pro Laptop,1,1700.0,06/17/19 09:06,"429 10th St, New York City, NY 10001" +206328,AAA Batteries (4-pack),3,2.99,06/28/19 19:32,"840 Walnut St, Portland, OR 97035" +206329,Macbook Pro Laptop,1,1700.0,06/06/19 15:56,"65 2nd St, San Francisco, CA 94016" +206330,ThinkPad Laptop,1,999.99,06/11/19 15:49,"798 Chestnut St, Boston, MA 02215" +206331,Lightning Charging Cable,1,14.95,06/15/19 20:18,"909 7th St, Seattle, WA 98101" +206332,Apple Airpods Headphones,1,150.0,06/21/19 20:43,"518 Maple St, Dallas, TX 75001" +206333,AAA Batteries (4-pack),1,2.99,06/13/19 13:56,"736 Main St, Boston, MA 02215" +206334,Bose SoundSport Headphones,1,99.99,06/27/19 12:16,"337 12th St, Atlanta, GA 30301" +206335,AA Batteries (4-pack),1,3.84,06/04/19 21:17,"51 2nd St, Los Angeles, CA 90001" +206336,Wired Headphones,1,11.99,06/01/19 17:45,"367 Lincoln St, New York City, NY 10001" +206337,Google Phone,1,600.0,06/01/19 09:49,"356 9th St, Seattle, WA 98101" +206338,Lightning Charging Cable,1,14.95,06/30/19 12:52,"280 Lake St, San Francisco, CA 94016" +206338,27in FHD Monitor,1,149.99,06/30/19 12:52,"280 Lake St, San Francisco, CA 94016" +206339,ThinkPad Laptop,1,999.99,06/11/19 10:00,"324 Walnut St, Dallas, TX 75001" +206340,Apple Airpods Headphones,1,150.0,06/04/19 19:59,"529 12th St, Dallas, TX 75001" +206341,Macbook Pro Laptop,1,1700.0,06/14/19 13:33,"2 1st St, Seattle, WA 98101" +206342,Wired Headphones,1,11.99,06/29/19 20:07,"845 14th St, Atlanta, GA 30301" +206343,Lightning Charging Cable,1,14.95,06/26/19 11:20,"602 Sunset St, Dallas, TX 75001" +206344,Bose SoundSport Headphones,1,99.99,06/11/19 17:36,"447 5th St, New York City, NY 10001" +206345,Bose SoundSport Headphones,1,99.99,06/20/19 15:13,"225 Johnson St, Los Angeles, CA 90001" +206346,AA Batteries (4-pack),1,3.84,06/09/19 08:23,"911 Washington St, Atlanta, GA 30301" +206347,Macbook Pro Laptop,1,1700.0,06/04/19 15:56,"523 Jackson St, Dallas, TX 75001" +206348,USB-C Charging Cable,1,11.95,06/30/19 10:38,"537 6th St, San Francisco, CA 94016" +206349,USB-C Charging Cable,1,11.95,06/11/19 11:21,"959 9th St, Seattle, WA 98101" +206350,USB-C Charging Cable,1,11.95,06/20/19 12:15,"381 6th St, New York City, NY 10001" +206350,Bose SoundSport Headphones,1,99.99,06/20/19 12:15,"381 6th St, New York City, NY 10001" +206351,Bose SoundSport Headphones,1,99.99,06/21/19 09:11,"556 Jackson St, San Francisco, CA 94016" +206352,USB-C Charging Cable,1,11.95,06/22/19 14:30,"974 Hill St, San Francisco, CA 94016" +206353,20in Monitor,1,109.99,06/10/19 19:48,"971 Meadow St, New York City, NY 10001" +206354,Apple Airpods Headphones,1,150.0,06/06/19 20:01,"22 Adams St, Los Angeles, CA 90001" +206355,Wired Headphones,1,11.99,06/13/19 11:08,"746 Center St, Los Angeles, CA 90001" +206356,Wired Headphones,1,11.99,06/02/19 17:27,"158 1st St, Austin, TX 73301" +206357,AA Batteries (4-pack),1,3.84,06/07/19 10:07,"16 River St, Portland, OR 97035" +206358,AA Batteries (4-pack),1,3.84,06/30/19 12:18,"503 South St, New York City, NY 10001" +206359,Lightning Charging Cable,1,14.95,06/21/19 18:35,"987 West St, San Francisco, CA 94016" +206360,Apple Airpods Headphones,1,150.0,06/13/19 20:01,"702 Lake St, Boston, MA 02215" +206361,34in Ultrawide Monitor,1,379.99,06/24/19 15:27,"549 Forest St, San Francisco, CA 94016" +206362,Lightning Charging Cable,1,14.95,06/22/19 21:54,"261 Lakeview St, Los Angeles, CA 90001" +206363,27in 4K Gaming Monitor,1,389.99,06/02/19 16:02,"423 Sunset St, Boston, MA 02215" +206364,Bose SoundSport Headphones,1,99.99,06/13/19 01:31,"693 Cedar St, Los Angeles, CA 90001" +206365,Bose SoundSport Headphones,1,99.99,06/12/19 17:56,"667 Elm St, Los Angeles, CA 90001" +206366,Google Phone,1,600.0,06/10/19 22:12,"265 7th St, Los Angeles, CA 90001" +206367,27in 4K Gaming Monitor,1,389.99,06/20/19 22:07,"801 Cherry St, San Francisco, CA 94016" +206368,AAA Batteries (4-pack),1,2.99,06/13/19 18:49,"455 13th St, Austin, TX 73301" +206369,Lightning Charging Cable,1,14.95,06/17/19 00:01,"720 West St, New York City, NY 10001" +206370,Apple Airpods Headphones,2,150.0,06/18/19 21:08,"605 Dogwood St, New York City, NY 10001" +206371,Bose SoundSport Headphones,1,99.99,06/29/19 13:39,"97 River St, Portland, ME 04101" +206372,Lightning Charging Cable,1,14.95,06/24/19 11:36,"947 1st St, Portland, OR 97035" +206373,27in 4K Gaming Monitor,1,389.99,06/20/19 00:35,"878 Willow St, Los Angeles, CA 90001" +206374,Google Phone,1,600.0,06/04/19 14:28,"466 Jefferson St, San Francisco, CA 94016" +206375,Bose SoundSport Headphones,1,99.99,06/07/19 08:38,"709 Meadow St, Portland, OR 97035" +206376,Lightning Charging Cable,1,14.95,06/14/19 10:54,"685 7th St, San Francisco, CA 94016" +206377,AAA Batteries (4-pack),1,2.99,06/04/19 13:37,"423 Lakeview St, New York City, NY 10001" +206378,USB-C Charging Cable,1,11.95,06/23/19 00:05,"227 Walnut St, San Francisco, CA 94016" +206379,Wired Headphones,1,11.99,06/19/19 22:50,"747 Walnut St, New York City, NY 10001" +206380,ThinkPad Laptop,1,999.99,06/11/19 19:08,"988 Willow St, Austin, TX 73301" +206381,AAA Batteries (4-pack),1,2.99,06/22/19 07:19,"664 Spruce St, San Francisco, CA 94016" +206382,iPhone,1,700.0,06/02/19 09:31,"876 8th St, San Francisco, CA 94016" +206382,Apple Airpods Headphones,1,150.0,06/02/19 09:31,"876 8th St, San Francisco, CA 94016" +206383,AA Batteries (4-pack),1,3.84,06/17/19 00:01,"909 Johnson St, Atlanta, GA 30301" +206384,AA Batteries (4-pack),1,3.84,06/12/19 14:00,"867 River St, Austin, TX 73301" +206385,Apple Airpods Headphones,1,150.0,06/15/19 21:28,"174 Johnson St, Atlanta, GA 30301" +206386,Bose SoundSport Headphones,1,99.99,06/03/19 14:15,"190 Jefferson St, San Francisco, CA 94016" +206387,AA Batteries (4-pack),1,3.84,06/24/19 15:40,"951 Sunset St, Boston, MA 02215" +206388,Lightning Charging Cable,1,14.95,06/15/19 21:58,"631 Johnson St, San Francisco, CA 94016" +206389,27in FHD Monitor,1,149.99,06/06/19 19:55,"17 North St, Portland, OR 97035" +206390,Google Phone,1,600.0,06/04/19 10:49,"575 Willow St, Seattle, WA 98101" +206390,USB-C Charging Cable,1,11.95,06/04/19 10:49,"575 Willow St, Seattle, WA 98101" +206391,USB-C Charging Cable,1,11.95,06/23/19 17:36,"336 Wilson St, Atlanta, GA 30301" +206392,Lightning Charging Cable,1,14.95,06/30/19 16:28,"812 Lincoln St, Seattle, WA 98101" +206393,AAA Batteries (4-pack),1,2.99,06/26/19 23:19,"402 5th St, New York City, NY 10001" +206394,iPhone,1,700.0,06/06/19 21:23,"175 Hill St, Austin, TX 73301" +206395,AAA Batteries (4-pack),4,2.99,06/13/19 14:01,"358 Madison St, San Francisco, CA 94016" +206396,Lightning Charging Cable,1,14.95,06/09/19 12:53,"338 11th St, Portland, ME 04101" +206397,Bose SoundSport Headphones,1,99.99,06/13/19 14:19,"900 Center St, Seattle, WA 98101" +206398,AA Batteries (4-pack),1,3.84,06/13/19 17:18,"125 Jefferson St, San Francisco, CA 94016" +206399,Google Phone,1,600.0,06/27/19 11:16,"587 Dogwood St, San Francisco, CA 94016" +206399,USB-C Charging Cable,1,11.95,06/27/19 11:16,"587 Dogwood St, San Francisco, CA 94016" +206400,Apple Airpods Headphones,1,150.0,06/27/19 15:42,"851 10th St, Atlanta, GA 30301" +206401,Wired Headphones,1,11.99,06/25/19 22:31,"895 11th St, San Francisco, CA 94016" +206402,iPhone,1,700.0,06/20/19 18:38,"614 Johnson St, San Francisco, CA 94016" +206403,Apple Airpods Headphones,1,150.0,06/03/19 08:55,"741 Jackson St, Portland, OR 97035" +206404,Wired Headphones,1,11.99,06/13/19 14:49,"750 4th St, San Francisco, CA 94016" +206405,Bose SoundSport Headphones,1,99.99,06/07/19 11:52,"610 2nd St, San Francisco, CA 94016" +206406,Apple Airpods Headphones,2,150.0,06/26/19 11:30,"543 Spruce St, Atlanta, GA 30301" +206407,Bose SoundSport Headphones,1,99.99,06/15/19 19:18,"196 9th St, Boston, MA 02215" +206408,iPhone,1,700.0,06/03/19 08:44,"26 South St, Boston, MA 02215" +206409,AA Batteries (4-pack),1,3.84,06/13/19 17:08,"229 2nd St, Portland, OR 97035" +206410,Wired Headphones,1,11.99,06/27/19 13:25,"240 Adams St, Los Angeles, CA 90001" +206411,Macbook Pro Laptop,1,1700.0,06/18/19 10:51,"825 North St, Boston, MA 02215" +206412,USB-C Charging Cable,1,11.95,06/07/19 17:59,"429 Walnut St, Dallas, TX 75001" +206413,iPhone,1,700.0,06/27/19 10:45,"962 12th St, New York City, NY 10001" +206413,Lightning Charging Cable,1,14.95,06/27/19 10:45,"962 12th St, New York City, NY 10001" +206414,Wired Headphones,1,11.99,06/13/19 21:37,"658 Elm St, Boston, MA 02215" +206415,Lightning Charging Cable,1,14.95,06/28/19 00:43,"33 Pine St, New York City, NY 10001" +206416,Lightning Charging Cable,1,14.95,06/10/19 22:12,"539 Pine St, Portland, OR 97035" +206417,AA Batteries (4-pack),1,3.84,06/21/19 13:12,"138 Johnson St, New York City, NY 10001" +206418,AAA Batteries (4-pack),3,2.99,06/18/19 11:35,"220 8th St, San Francisco, CA 94016" +206419,AA Batteries (4-pack),1,3.84,06/26/19 13:35,"382 7th St, New York City, NY 10001" +206420,AA Batteries (4-pack),1,3.84,06/14/19 08:16,"527 Hickory St, Los Angeles, CA 90001" +206421,AAA Batteries (4-pack),1,2.99,06/04/19 21:45,"473 Center St, Dallas, TX 75001" +206422,USB-C Charging Cable,1,11.95,06/09/19 20:50,"274 Chestnut St, Dallas, TX 75001" +206423,Wired Headphones,1,11.99,06/19/19 16:18,"19 Washington St, Austin, TX 73301" +206424,Lightning Charging Cable,1,14.95,06/23/19 17:54,"326 14th St, Los Angeles, CA 90001" +206425,Apple Airpods Headphones,1,150.0,06/11/19 12:44,"32 Highland St, Los Angeles, CA 90001" +206426,Apple Airpods Headphones,1,150.0,06/30/19 13:22,"490 Cedar St, Los Angeles, CA 90001" +206427,USB-C Charging Cable,1,11.95,06/30/19 22:08,"282 Main St, Los Angeles, CA 90001" +206428,Apple Airpods Headphones,1,150.0,06/21/19 10:52,"764 Johnson St, Boston, MA 02215" +206429,Vareebadd Phone,1,400.0,06/14/19 11:50,"667 Hill St, Los Angeles, CA 90001" +206430,Lightning Charging Cable,1,14.95,06/22/19 18:27,"421 11th St, Los Angeles, CA 90001" +206431,AAA Batteries (4-pack),1,2.99,06/13/19 09:58,"312 Lake St, Dallas, TX 75001" +206432,27in FHD Monitor,1,149.99,06/03/19 22:47,"710 Cherry St, San Francisco, CA 94016" +206433,USB-C Charging Cable,1,11.95,06/25/19 10:57,"736 Hill St, San Francisco, CA 94016" +206434,Apple Airpods Headphones,1,150.0,06/01/19 18:53,"150 Lakeview St, Los Angeles, CA 90001" +206435,Lightning Charging Cable,1,14.95,06/02/19 01:06,"937 West St, Seattle, WA 98101" +206436,34in Ultrawide Monitor,1,379.99,06/22/19 15:19,"960 12th St, San Francisco, CA 94016" +206437,Bose SoundSport Headphones,1,99.99,06/04/19 21:49,"373 Wilson St, San Francisco, CA 94016" +206438,Wired Headphones,1,11.99,06/24/19 17:32,"147 Maple St, Seattle, WA 98101" +206439,ThinkPad Laptop,1,999.99,06/10/19 14:58,"32 Center St, San Francisco, CA 94016" +206439,USB-C Charging Cable,1,11.95,06/10/19 14:58,"32 Center St, San Francisco, CA 94016" +206440,iPhone,1,700.0,06/22/19 13:51,"698 Main St, San Francisco, CA 94016" +206440,Lightning Charging Cable,1,14.95,06/22/19 13:51,"698 Main St, San Francisco, CA 94016" +206441,27in FHD Monitor,1,149.99,06/25/19 13:33,"579 Church St, Portland, OR 97035" +206442,AAA Batteries (4-pack),2,2.99,06/23/19 05:16,"624 Walnut St, New York City, NY 10001" +206443,Lightning Charging Cable,1,14.95,06/06/19 09:02,"350 Washington St, San Francisco, CA 94016" +206444,Lightning Charging Cable,1,14.95,06/27/19 23:49,"730 Church St, New York City, NY 10001" +206445,34in Ultrawide Monitor,1,379.99,06/18/19 16:27,"500 14th St, New York City, NY 10001" +206446,AA Batteries (4-pack),1,3.84,06/08/19 12:51,"646 Dogwood St, Austin, TX 73301" +206447,USB-C Charging Cable,1,11.95,06/03/19 00:50,"355 Willow St, New York City, NY 10001" +206448,Wired Headphones,1,11.99,06/23/19 10:26,"354 River St, Boston, MA 02215" +206449,AAA Batteries (4-pack),1,2.99,06/18/19 23:30,"936 Spruce St, Boston, MA 02215" +206450,Lightning Charging Cable,1,14.95,06/22/19 19:59,"992 Adams St, Atlanta, GA 30301" +206451,Apple Airpods Headphones,1,150.0,06/03/19 14:05,"261 Willow St, Atlanta, GA 30301" +206452,Vareebadd Phone,1,400.0,06/19/19 23:07,"497 Center St, San Francisco, CA 94016" +206452,Bose SoundSport Headphones,1,99.99,06/19/19 23:07,"497 Center St, San Francisco, CA 94016" +206453,Bose SoundSport Headphones,1,99.99,06/02/19 22:04,"585 Cherry St, Portland, OR 97035" +206454,Vareebadd Phone,1,400.0,06/18/19 07:18,"543 2nd St, Seattle, WA 98101" +206455,AAA Batteries (4-pack),1,2.99,06/23/19 18:20,"146 North St, San Francisco, CA 94016" +206456,Bose SoundSport Headphones,1,99.99,06/25/19 07:28,"594 Hickory St, San Francisco, CA 94016" +206457,27in 4K Gaming Monitor,1,389.99,06/15/19 01:07,"970 14th St, Seattle, WA 98101" +206458,Wired Headphones,2,11.99,06/16/19 08:10,"618 13th St, Austin, TX 73301" +206459,AAA Batteries (4-pack),2,2.99,06/04/19 14:03,"681 Washington St, Los Angeles, CA 90001" +206460,AAA Batteries (4-pack),1,2.99,06/15/19 21:26,"45 Walnut St, Boston, MA 02215" +206461,AA Batteries (4-pack),2,3.84,06/29/19 17:32,"836 Forest St, San Francisco, CA 94016" +206462,Bose SoundSport Headphones,1,99.99,06/30/19 21:09,"701 7th St, Los Angeles, CA 90001" +206463,AA Batteries (4-pack),2,3.84,06/14/19 23:05,"531 9th St, Seattle, WA 98101" +206464,USB-C Charging Cable,1,11.95,06/26/19 10:24,"621 Church St, Boston, MA 02215" +206465,Flatscreen TV,1,300.0,06/18/19 18:41,"854 West St, New York City, NY 10001" +206466,Apple Airpods Headphones,1,150.0,06/01/19 17:40,"219 South St, Boston, MA 02215" +206467,AA Batteries (4-pack),2,3.84,06/16/19 10:34,"564 Meadow St, Dallas, TX 75001" +206468,AA Batteries (4-pack),1,3.84,06/30/19 11:13,"587 13th St, Atlanta, GA 30301" +206469,Lightning Charging Cable,2,14.95,06/27/19 09:51,"845 5th St, San Francisco, CA 94016" +206470,AA Batteries (4-pack),1,3.84,06/05/19 08:41,"556 6th St, Boston, MA 02215" +206471,20in Monitor,1,109.99,06/30/19 14:20,"568 7th St, San Francisco, CA 94016" +206472,iPhone,1,700.0,06/14/19 23:39,"597 River St, New York City, NY 10001" +206473,Wired Headphones,1,11.99,06/09/19 14:53,"687 Jackson St, New York City, NY 10001" +206474,Bose SoundSport Headphones,1,99.99,06/22/19 11:41,"813 10th St, New York City, NY 10001" +206475,Lightning Charging Cable,2,14.95,06/16/19 00:06,"493 West St, San Francisco, CA 94016" +206476,Wired Headphones,1,11.99,06/05/19 13:06,"13 Jefferson St, New York City, NY 10001" +206477,AA Batteries (4-pack),4,3.84,06/13/19 19:02,"952 Walnut St, San Francisco, CA 94016" +206478,iPhone,1,700.0,06/18/19 15:24,"181 1st St, Seattle, WA 98101" +206479,USB-C Charging Cable,1,11.95,06/21/19 19:52,"915 Ridge St, Boston, MA 02215" +206480,Bose SoundSport Headphones,1,99.99,06/23/19 01:43,"396 River St, Atlanta, GA 30301" +206481,27in 4K Gaming Monitor,1,389.99,06/21/19 19:20,"123 Chestnut St, San Francisco, CA 94016" +206482,USB-C Charging Cable,1,11.95,06/19/19 12:35,"342 4th St, New York City, NY 10001" +206483,20in Monitor,1,109.99,06/03/19 18:17,"466 Church St, San Francisco, CA 94016" +206484,Lightning Charging Cable,1,14.95,06/23/19 13:04,"839 Washington St, Portland, OR 97035" +206485,USB-C Charging Cable,1,11.95,06/23/19 21:58,"546 14th St, Portland, OR 97035" +206486,AAA Batteries (4-pack),1,2.99,06/20/19 17:32,"486 1st St, New York City, NY 10001" +206487,Macbook Pro Laptop,1,1700.0,06/12/19 19:55,"897 Willow St, New York City, NY 10001" +206488,Lightning Charging Cable,1,14.95,06/05/19 14:32,"890 Adams St, Seattle, WA 98101" +206489,AAA Batteries (4-pack),1,2.99,06/11/19 23:11,"64 Dogwood St, Los Angeles, CA 90001" +206490,USB-C Charging Cable,1,11.95,06/16/19 15:24,"393 Wilson St, San Francisco, CA 94016" +206491,Macbook Pro Laptop,1,1700.0,06/16/19 16:24,"156 Main St, New York City, NY 10001" +206492,27in FHD Monitor,1,149.99,06/27/19 00:05,"292 12th St, Portland, OR 97035" +206493,Wired Headphones,1,11.99,06/24/19 13:20,"669 Meadow St, Dallas, TX 75001" +206494,Lightning Charging Cable,2,14.95,06/30/19 12:09,"27 Park St, Atlanta, GA 30301" +206495,iPhone,1,700.0,06/27/19 17:15,"245 Maple St, San Francisco, CA 94016" +206496,Apple Airpods Headphones,1,150.0,06/20/19 07:24,"333 Forest St, Boston, MA 02215" +206497,Lightning Charging Cable,1,14.95,06/20/19 00:55,"531 2nd St, New York City, NY 10001" +206498,Wired Headphones,1,11.99,06/10/19 11:55,"48 11th St, Dallas, TX 75001" +206499,Wired Headphones,1,11.99,06/26/19 10:10,"5 Cedar St, San Francisco, CA 94016" +206500,Apple Airpods Headphones,1,150.0,06/09/19 14:11,"261 Wilson St, Los Angeles, CA 90001" +206501,AA Batteries (4-pack),1,3.84,06/09/19 13:57,"921 Forest St, Austin, TX 73301" +206502,AA Batteries (4-pack),1,3.84,06/22/19 00:30,"243 Main St, San Francisco, CA 94016" +206503,34in Ultrawide Monitor,1,379.99,06/04/19 12:59,"211 13th St, Austin, TX 73301" +206504,Lightning Charging Cable,1,14.95,06/30/19 18:57,"4 Walnut St, Atlanta, GA 30301" +206505,34in Ultrawide Monitor,1,379.99,06/03/19 10:10,"334 Sunset St, Austin, TX 73301" +206506,Flatscreen TV,1,300.0,06/17/19 13:11,"186 Elm St, Atlanta, GA 30301" +206507,Lightning Charging Cable,1,14.95,06/26/19 20:07,"227 Cedar St, New York City, NY 10001" +206508,AAA Batteries (4-pack),2,2.99,06/09/19 23:56,"657 Jackson St, San Francisco, CA 94016" +206509,27in 4K Gaming Monitor,1,389.99,06/17/19 16:21,"764 Highland St, Seattle, WA 98101" +206510,Wired Headphones,1,11.99,06/13/19 13:44,"878 Lincoln St, Atlanta, GA 30301" +206511,Bose SoundSport Headphones,1,99.99,06/28/19 17:37,"127 Forest St, Los Angeles, CA 90001" +206512,Apple Airpods Headphones,1,150.0,06/08/19 15:07,"636 Maple St, San Francisco, CA 94016" +206513,Google Phone,1,600.0,06/25/19 18:45,"615 14th St, San Francisco, CA 94016" +206514,Flatscreen TV,1,300.0,06/09/19 18:41,"539 Meadow St, New York City, NY 10001" +206515,Lightning Charging Cable,1,14.95,06/05/19 12:17,"75 Elm St, San Francisco, CA 94016" +206516,USB-C Charging Cable,1,11.95,06/16/19 09:18,"407 River St, San Francisco, CA 94016" +206517,Bose SoundSport Headphones,1,99.99,06/05/19 13:02,"560 Church St, Atlanta, GA 30301" +206518,Google Phone,1,600.0,06/06/19 13:05,"213 13th St, New York City, NY 10001" +206518,Wired Headphones,1,11.99,06/06/19 13:05,"213 13th St, New York City, NY 10001" +206519,Apple Airpods Headphones,1,150.0,06/16/19 06:33,"587 8th St, Portland, OR 97035" +206520,USB-C Charging Cable,1,11.95,06/26/19 20:12,"777 Walnut St, Los Angeles, CA 90001" +206521,27in 4K Gaming Monitor,1,389.99,06/19/19 22:43,"558 8th St, Boston, MA 02215" +206522,AA Batteries (4-pack),1,3.84,06/06/19 21:20,"146 5th St, Seattle, WA 98101" +206523,AAA Batteries (4-pack),2,2.99,06/01/19 11:28,"396 14th St, Austin, TX 73301" +206524,Macbook Pro Laptop,1,1700.0,06/30/19 10:33,"310 4th St, San Francisco, CA 94016" +206525,AAA Batteries (4-pack),2,2.99,06/28/19 14:18,"762 Walnut St, Atlanta, GA 30301" +206526,Wired Headphones,1,11.99,06/24/19 19:45,"944 Johnson St, Seattle, WA 98101" +206527,AA Batteries (4-pack),1,3.84,06/05/19 17:17,"362 Cherry St, San Francisco, CA 94016" +206528,Google Phone,1,600.0,06/15/19 13:57,"75 Lincoln St, Los Angeles, CA 90001" +206529,iPhone,1,700.0,06/10/19 17:47,"685 Willow St, Portland, OR 97035" +206530,Lightning Charging Cable,1,14.95,06/09/19 01:41,"988 12th St, New York City, NY 10001" +206531,27in FHD Monitor,1,149.99,06/13/19 13:20,"15 Washington St, San Francisco, CA 94016" +206532,Wired Headphones,1,11.99,06/27/19 23:31,"783 Forest St, Atlanta, GA 30301" +206533,USB-C Charging Cable,1,11.95,06/11/19 20:29,"618 Maple St, Austin, TX 73301" +206534,34in Ultrawide Monitor,1,379.99,06/06/19 11:59,"948 13th St, Austin, TX 73301" +206535,AAA Batteries (4-pack),1,2.99,06/24/19 22:01,"501 Main St, San Francisco, CA 94016" +206536,27in 4K Gaming Monitor,1,389.99,06/15/19 22:26,"135 Adams St, Los Angeles, CA 90001" +206537,34in Ultrawide Monitor,1,379.99,06/10/19 06:48,"464 Chestnut St, New York City, NY 10001" +206538,AA Batteries (4-pack),1,3.84,06/23/19 16:17,"235 Park St, Los Angeles, CA 90001" +206539,AA Batteries (4-pack),1,3.84,06/12/19 00:09,"276 Wilson St, Portland, ME 04101" +206540,LG Washing Machine,1,600.0,06/12/19 21:54,"241 Cherry St, Los Angeles, CA 90001" +206541,ThinkPad Laptop,1,999.99,06/23/19 16:59,"719 Washington St, Boston, MA 02215" +206542,AA Batteries (4-pack),1,3.84,06/10/19 15:11,"823 7th St, San Francisco, CA 94016" +206542,AAA Batteries (4-pack),1,2.99,06/10/19 15:11,"823 7th St, San Francisco, CA 94016" +206543,Lightning Charging Cable,1,14.95,06/07/19 18:23,"26 Hickory St, San Francisco, CA 94016" +206544,AA Batteries (4-pack),1,3.84,06/07/19 12:18,"863 North St, Dallas, TX 75001" +206545,34in Ultrawide Monitor,1,379.99,06/25/19 18:46,"572 13th St, Dallas, TX 75001" +206546,Lightning Charging Cable,2,14.95,06/23/19 16:39,"764 1st St, Boston, MA 02215" +206547,Vareebadd Phone,1,400.0,06/22/19 22:38,"140 Wilson St, Boston, MA 02215" +206548,Vareebadd Phone,1,400.0,06/23/19 14:04,"262 Wilson St, Dallas, TX 75001" +206549,Lightning Charging Cable,1,14.95,06/21/19 12:54,"66 Madison St, San Francisco, CA 94016" +206550,USB-C Charging Cable,1,11.95,06/07/19 22:14,"843 Washington St, Boston, MA 02215" +206551,Bose SoundSport Headphones,1,99.99,06/23/19 11:23,"437 Forest St, New York City, NY 10001" +206552,ThinkPad Laptop,1,999.99,06/23/19 13:30,"745 Highland St, Boston, MA 02215" +206553,Google Phone,1,600.0,06/22/19 14:49,"744 Maple St, Los Angeles, CA 90001" +206554,Apple Airpods Headphones,1,150.0,06/25/19 22:19,"618 Hickory St, Seattle, WA 98101" +206555,USB-C Charging Cable,1,11.95,06/11/19 04:53,"68 Elm St, Dallas, TX 75001" +206556,27in 4K Gaming Monitor,1,389.99,06/12/19 08:44,"294 Jackson St, San Francisco, CA 94016" +206557,USB-C Charging Cable,1,11.95,06/13/19 14:29,"184 Park St, Los Angeles, CA 90001" +206558,Bose SoundSport Headphones,1,99.99,06/04/19 06:41,"178 4th St, San Francisco, CA 94016" +206559,Wired Headphones,1,11.99,06/09/19 13:55,"65 Jackson St, Atlanta, GA 30301" +206560,USB-C Charging Cable,1,11.95,06/24/19 20:36,"435 Walnut St, Boston, MA 02215" +206561,Lightning Charging Cable,1,14.95,06/26/19 09:13,"220 Walnut St, Atlanta, GA 30301" +206562,Wired Headphones,1,11.99,06/02/19 21:41,"919 Chestnut St, New York City, NY 10001" +206563,AAA Batteries (4-pack),1,2.99,06/25/19 18:05,"669 Center St, New York City, NY 10001" +206564,Apple Airpods Headphones,1,150.0,06/27/19 06:24,"199 Walnut St, Los Angeles, CA 90001" +206565,34in Ultrawide Monitor,1,379.99,06/01/19 19:32,"170 Highland St, Boston, MA 02215" +206566,Lightning Charging Cable,1,14.95,06/14/19 16:52,"621 Center St, Los Angeles, CA 90001" +206567,USB-C Charging Cable,1,11.95,06/05/19 06:33,"558 Meadow St, New York City, NY 10001" +206568,USB-C Charging Cable,1,11.95,06/02/19 07:22,"548 Ridge St, Boston, MA 02215" +206569,Flatscreen TV,1,300.0,06/11/19 19:01,"189 Elm St, San Francisco, CA 94016" +206570,USB-C Charging Cable,1,11.95,06/04/19 12:07,"103 Pine St, New York City, NY 10001" +206571,27in 4K Gaming Monitor,1,389.99,06/19/19 07:53,"131 Hickory St, Seattle, WA 98101" +206572,Lightning Charging Cable,1,14.95,06/12/19 11:24,"26 Washington St, San Francisco, CA 94016" +206573,20in Monitor,1,109.99,06/07/19 14:47,"432 Jackson St, Portland, OR 97035" +206574,AAA Batteries (4-pack),4,2.99,06/18/19 13:49,"154 Pine St, Atlanta, GA 30301" +206575,Lightning Charging Cable,1,14.95,06/26/19 19:34,"260 Hill St, San Francisco, CA 94016" +206576,27in 4K Gaming Monitor,1,389.99,06/11/19 23:45,"156 Pine St, Los Angeles, CA 90001" +206577,USB-C Charging Cable,1,11.95,06/24/19 19:02,"317 Walnut St, New York City, NY 10001" +206578,AAA Batteries (4-pack),3,2.99,06/16/19 13:30,"973 5th St, San Francisco, CA 94016" +206579,USB-C Charging Cable,1,11.95,06/29/19 22:29,"940 West St, Atlanta, GA 30301" +206580,AAA Batteries (4-pack),2,2.99,06/23/19 09:15,"282 8th St, Atlanta, GA 30301" +206581,Vareebadd Phone,1,400.0,06/29/19 09:05,"915 North St, New York City, NY 10001" +206581,USB-C Charging Cable,3,11.95,06/29/19 09:05,"915 North St, New York City, NY 10001" +206582,USB-C Charging Cable,1,11.95,06/24/19 11:05,"544 8th St, Austin, TX 73301" +206583,Lightning Charging Cable,1,14.95,06/02/19 10:33,"635 North St, San Francisco, CA 94016" +206584,AA Batteries (4-pack),2,3.84,06/24/19 22:09,"599 Washington St, San Francisco, CA 94016" +206585,20in Monitor,1,109.99,06/26/19 19:06,"721 Center St, New York City, NY 10001" +206586,USB-C Charging Cable,1,11.95,06/17/19 10:02,"954 Walnut St, Atlanta, GA 30301" +206587,AAA Batteries (4-pack),1,2.99,06/27/19 07:00,"737 6th St, New York City, NY 10001" +206588,Apple Airpods Headphones,1,150.0,06/12/19 11:54,"655 Madison St, New York City, NY 10001" +206589,AAA Batteries (4-pack),2,2.99,06/19/19 01:12,"779 11th St, Seattle, WA 98101" +206590,Lightning Charging Cable,1,14.95,06/19/19 15:08,"43 6th St, Seattle, WA 98101" +206591,Flatscreen TV,1,300.0,06/21/19 10:24,"770 Dogwood St, San Francisco, CA 94016" +206592,Lightning Charging Cable,1,14.95,06/04/19 20:21,"21 13th St, Dallas, TX 75001" +206593,Bose SoundSport Headphones,1,99.99,06/29/19 16:55,"400 Main St, San Francisco, CA 94016" +206594,ThinkPad Laptop,1,999.99,06/15/19 08:29,"40 1st St, Atlanta, GA 30301" +206595,iPhone,1,700.0,06/07/19 16:55,"610 6th St, Seattle, WA 98101" +206596,Macbook Pro Laptop,1,1700.0,06/28/19 12:55,"22 9th St, New York City, NY 10001" +206597,AAA Batteries (4-pack),4,2.99,06/11/19 13:50,"532 River St, New York City, NY 10001" +206598,AA Batteries (4-pack),1,3.84,06/24/19 21:46,"906 14th St, San Francisco, CA 94016" +206599,Lightning Charging Cable,1,14.95,06/02/19 19:32,"526 Jackson St, Seattle, WA 98101" +206600,Wired Headphones,1,11.99,06/12/19 23:03,"365 8th St, New York City, NY 10001" +206601,USB-C Charging Cable,1,11.95,06/22/19 09:12,"441 Sunset St, San Francisco, CA 94016" +206602,USB-C Charging Cable,1,11.95,06/08/19 13:32,"381 Jackson St, Boston, MA 02215" +206603,AA Batteries (4-pack),1,3.84,06/14/19 17:18,"685 Cedar St, Seattle, WA 98101" +206604,Wired Headphones,2,11.99,06/18/19 18:29,"531 Dogwood St, New York City, NY 10001" +206605,27in FHD Monitor,1,149.99,06/19/19 18:14,"286 Hickory St, New York City, NY 10001" +206606,USB-C Charging Cable,1,11.95,06/13/19 13:52,"663 6th St, Dallas, TX 75001" +206607,Google Phone,1,600.0,06/03/19 10:13,"256 Washington St, Seattle, WA 98101" +206608,Bose SoundSport Headphones,1,99.99,06/03/19 09:24,"119 Main St, Dallas, TX 75001" +206609,ThinkPad Laptop,1,999.99,06/14/19 19:52,"192 Lincoln St, Los Angeles, CA 90001" +206610,AA Batteries (4-pack),1,3.84,06/23/19 13:42,"7 Lake St, Dallas, TX 75001" +206611,Apple Airpods Headphones,1,150.0,06/12/19 20:31,"142 14th St, Atlanta, GA 30301" +206612,27in FHD Monitor,1,149.99,06/16/19 13:44,"778 14th St, Los Angeles, CA 90001" +206613,Lightning Charging Cable,1,14.95,06/18/19 21:37,"967 2nd St, San Francisco, CA 94016" +206614,Apple Airpods Headphones,1,150.0,06/04/19 20:24,"375 Walnut St, Dallas, TX 75001" +206615,LG Washing Machine,1,600.0,06/09/19 17:49,"824 Adams St, San Francisco, CA 94016" +206616,USB-C Charging Cable,1,11.95,06/03/19 09:29,"557 Lincoln St, Seattle, WA 98101" +206617,Lightning Charging Cable,1,14.95,06/21/19 18:59,"779 Cedar St, Seattle, WA 98101" +206617,Bose SoundSport Headphones,1,99.99,06/21/19 18:59,"779 Cedar St, Seattle, WA 98101" +206618,Lightning Charging Cable,1,14.95,06/05/19 19:05,"202 12th St, Boston, MA 02215" +206619,AAA Batteries (4-pack),1,2.99,06/18/19 09:37,"197 Maple St, Atlanta, GA 30301" +206620,AA Batteries (4-pack),1,3.84,06/08/19 09:36,"990 River St, San Francisco, CA 94016" +206621,AAA Batteries (4-pack),1,2.99,06/28/19 12:00,"819 Church St, Boston, MA 02215" +206622,USB-C Charging Cable,2,11.95,06/28/19 13:39,"702 1st St, San Francisco, CA 94016" +206623,Wired Headphones,1,11.99,06/20/19 15:42,"827 Maple St, San Francisco, CA 94016" +206624,Apple Airpods Headphones,1,150.0,06/26/19 15:57,"155 Hickory St, New York City, NY 10001" +206625,USB-C Charging Cable,1,11.95,06/04/19 18:52,"890 1st St, Austin, TX 73301" +206626,AA Batteries (4-pack),1,3.84,06/30/19 17:36,"171 14th St, Los Angeles, CA 90001" +206627,USB-C Charging Cable,1,11.95,06/07/19 19:13,"295 Jackson St, San Francisco, CA 94016" +206628,Google Phone,1,600.0,06/18/19 13:48,"572 6th St, Seattle, WA 98101" +206628,Wired Headphones,1,11.99,06/18/19 13:48,"572 6th St, Seattle, WA 98101" +206629,Apple Airpods Headphones,1,150.0,06/24/19 20:31,"918 Dogwood St, Boston, MA 02215" +206630,iPhone,1,700.0,06/21/19 09:18,"174 Sunset St, Boston, MA 02215" +206631,Flatscreen TV,1,300.0,06/01/19 11:17,"262 Meadow St, Dallas, TX 75001" +206632,AA Batteries (4-pack),1,3.84,06/04/19 15:38,"882 Sunset St, San Francisco, CA 94016" +206633,USB-C Charging Cable,1,11.95,06/20/19 16:03,"104 South St, Dallas, TX 75001" +206634,Flatscreen TV,1,300.0,06/03/19 21:01,"479 1st St, Portland, OR 97035" +206635,AAA Batteries (4-pack),1,2.99,06/30/19 18:25,"503 Chestnut St, Dallas, TX 75001" +206636,Macbook Pro Laptop,1,1700.0,06/03/19 17:50,"217 West St, Seattle, WA 98101" +206636,Flatscreen TV,1,300.0,06/03/19 17:50,"217 West St, Seattle, WA 98101" +206637,USB-C Charging Cable,1,11.95,06/28/19 15:54,"797 Church St, New York City, NY 10001" +206638,AAA Batteries (4-pack),1,2.99,06/24/19 20:03,"551 Lake St, New York City, NY 10001" +206639,Wired Headphones,1,11.99,06/06/19 02:56,"513 Hill St, Atlanta, GA 30301" +206640,Lightning Charging Cable,1,14.95,06/09/19 20:28,"290 4th St, San Francisco, CA 94016" +206641,AA Batteries (4-pack),1,3.84,06/15/19 13:03,"815 Sunset St, Seattle, WA 98101" +206642,34in Ultrawide Monitor,1,379.99,06/11/19 09:34,"839 Jefferson St, Dallas, TX 75001" +206643,27in FHD Monitor,1,149.99,06/13/19 14:23,"877 Adams St, Atlanta, GA 30301" +206644,AA Batteries (4-pack),2,3.84,06/07/19 13:05,"941 13th St, Boston, MA 02215" +206645,20in Monitor,1,109.99,06/24/19 17:26,"535 Meadow St, New York City, NY 10001" +206646,27in 4K Gaming Monitor,1,389.99,06/13/19 21:17,"807 14th St, New York City, NY 10001" +206647,Lightning Charging Cable,1,14.95,06/25/19 07:55,"144 6th St, San Francisco, CA 94016" +206648,Lightning Charging Cable,1,14.95,06/01/19 18:17,"414 Lakeview St, San Francisco, CA 94016" +206649,AA Batteries (4-pack),2,3.84,06/11/19 20:06,"129 Center St, San Francisco, CA 94016" +206650,AAA Batteries (4-pack),1,2.99,06/26/19 18:02,"901 13th St, Atlanta, GA 30301" +206651,AA Batteries (4-pack),1,3.84,06/01/19 19:45,"638 4th St, Atlanta, GA 30301" +206652,Bose SoundSport Headphones,1,99.99,06/03/19 12:43,"108 Hill St, New York City, NY 10001" +206653,AA Batteries (4-pack),1,3.84,06/30/19 11:29,"219 Jackson St, Dallas, TX 75001" +206654,Bose SoundSport Headphones,1,99.99,06/11/19 11:34,"988 8th St, Austin, TX 73301" +206655,USB-C Charging Cable,1,11.95,06/30/19 23:32,"544 Adams St, New York City, NY 10001" +206656,Lightning Charging Cable,1,14.95,06/22/19 17:58,"489 Park St, Los Angeles, CA 90001" +206657,AAA Batteries (4-pack),1,2.99,06/02/19 11:30,"240 Pine St, Los Angeles, CA 90001" +206658,AA Batteries (4-pack),1,3.84,06/25/19 15:05,"798 Lakeview St, San Francisco, CA 94016" +206659,AAA Batteries (4-pack),2,2.99,06/06/19 13:03,"16 Willow St, New York City, NY 10001" +206660,AA Batteries (4-pack),1,3.84,06/20/19 23:00,"40 7th St, New York City, NY 10001" +206661,Lightning Charging Cable,1,14.95,06/28/19 20:28,"638 14th St, San Francisco, CA 94016" +206662,34in Ultrawide Monitor,1,379.99,06/30/19 02:52,"732 Hill St, San Francisco, CA 94016" +206663,20in Monitor,1,109.99,06/02/19 18:07,"88 4th St, Los Angeles, CA 90001" +206663,iPhone,1,700.0,06/02/19 18:07,"88 4th St, Los Angeles, CA 90001" +206664,20in Monitor,1,109.99,06/12/19 09:31,"868 Meadow St, San Francisco, CA 94016" +206665,Google Phone,1,600.0,06/07/19 20:27,"662 Elm St, San Francisco, CA 94016" +206666,Apple Airpods Headphones,1,150.0,06/03/19 16:40,"87 13th St, Seattle, WA 98101" +206667,27in FHD Monitor,1,149.99,06/13/19 23:18,"999 Sunset St, Atlanta, GA 30301" +206668,Wired Headphones,1,11.99,06/19/19 08:26,"363 1st St, Dallas, TX 75001" +206669,Wired Headphones,1,11.99,06/12/19 09:56,"801 Walnut St, San Francisco, CA 94016" +206670,iPhone,1,700.0,06/07/19 14:36,"580 14th St, Los Angeles, CA 90001" +206671,20in Monitor,1,109.99,06/11/19 12:52,"917 Lake St, Portland, ME 04101" +206672,20in Monitor,1,109.99,06/12/19 00:40,"569 River St, Los Angeles, CA 90001" +206673,Apple Airpods Headphones,1,150.0,06/13/19 11:04,"759 Lake St, San Francisco, CA 94016" +206674,20in Monitor,1,109.99,06/15/19 12:57,"852 River St, Seattle, WA 98101" +206675,Wired Headphones,1,11.99,06/10/19 21:48,"791 Ridge St, New York City, NY 10001" +206676,AA Batteries (4-pack),4,3.84,06/22/19 10:29,"669 Lincoln St, New York City, NY 10001" +206677,AA Batteries (4-pack),1,3.84,06/18/19 13:39,"100 Willow St, Seattle, WA 98101" +206678,AA Batteries (4-pack),2,3.84,06/01/19 08:15,"399 1st St, Austin, TX 73301" +206679,Lightning Charging Cable,1,14.95,06/21/19 18:07,"651 Ridge St, San Francisco, CA 94016" +206680,Google Phone,1,600.0,06/29/19 12:10,"227 Adams St, Dallas, TX 75001" +206681,Wired Headphones,1,11.99,06/24/19 16:53,"443 Madison St, Boston, MA 02215" +206682,Bose SoundSport Headphones,1,99.99,06/12/19 07:03,"508 10th St, San Francisco, CA 94016" +206683,Wired Headphones,1,11.99,06/27/19 20:16,"327 Adams St, Los Angeles, CA 90001" +206684,Lightning Charging Cable,1,14.95,06/16/19 18:40,"313 12th St, Los Angeles, CA 90001" +206685,AAA Batteries (4-pack),2,2.99,06/05/19 21:38,"892 Forest St, New York City, NY 10001" +206686,Bose SoundSport Headphones,1,99.99,06/22/19 19:36,"987 North St, New York City, NY 10001" +206687,AA Batteries (4-pack),1,3.84,06/12/19 20:08,"51 Pine St, San Francisco, CA 94016" +206688,ThinkPad Laptop,1,999.99,06/11/19 04:34,"309 Church St, Boston, MA 02215" +206689,Wired Headphones,1,11.99,06/17/19 00:05,"284 9th St, Los Angeles, CA 90001" +206690,Lightning Charging Cable,1,14.95,06/24/19 15:29,"773 Highland St, Los Angeles, CA 90001" +206691,AAA Batteries (4-pack),1,2.99,06/16/19 23:58,"433 Madison St, San Francisco, CA 94016" +206692,iPhone,1,700.0,06/26/19 13:32,"149 Lincoln St, San Francisco, CA 94016" +206693,Google Phone,1,600.0,06/05/19 15:13,"810 2nd St, Seattle, WA 98101" +206693,USB-C Charging Cable,1,11.95,06/05/19 15:13,"810 2nd St, Seattle, WA 98101" +206694,AAA Batteries (4-pack),1,2.99,06/05/19 15:53,"433 Wilson St, Los Angeles, CA 90001" +206695,Apple Airpods Headphones,1,150.0,06/10/19 12:42,"360 Chestnut St, Atlanta, GA 30301" +206696,Wired Headphones,1,11.99,06/22/19 18:09,"21 Highland St, Dallas, TX 75001" +206697,AA Batteries (4-pack),1,3.84,06/08/19 14:15,"316 Lincoln St, San Francisco, CA 94016" +206698,iPhone,1,700.0,06/11/19 21:35,"507 Main St, Boston, MA 02215" +206699,34in Ultrawide Monitor,1,379.99,06/01/19 14:18,"944 2nd St, Austin, TX 73301" +,,,,, +206700,AA Batteries (4-pack),1,3.84,06/25/19 12:24,"139 Spruce St, New York City, NY 10001" +206701,Macbook Pro Laptop,1,1700,06/10/19 22:05,"939 13th St, Atlanta, GA 30301" +206702,20in Monitor,1,109.99,06/22/19 19:40,"489 Chestnut St, Boston, MA 02215" +206703,Apple Airpods Headphones,1,150,06/21/19 22:31,"750 1st St, San Francisco, CA 94016" +206704,34in Ultrawide Monitor,1,379.99,06/02/19 22:18,"409 Park St, San Francisco, CA 94016" +206705,Lightning Charging Cable,1,14.95,06/16/19 10:32,"162 14th St, Dallas, TX 75001" +206706,Bose SoundSport Headphones,1,99.99,06/03/19 10:00,"373 4th St, Los Angeles, CA 90001" +206707,Lightning Charging Cable,1,14.95,06/30/19 12:48,"156 Cherry St, San Francisco, CA 94016" +206708,34in Ultrawide Monitor,1,379.99,06/07/19 00:15,"922 River St, San Francisco, CA 94016" +206709,Lightning Charging Cable,1,14.95,06/13/19 17:10,"424 Sunset St, Boston, MA 02215" +206709,Google Phone,1,600,06/13/19 17:10,"424 Sunset St, Boston, MA 02215" +206710,27in FHD Monitor,1,149.99,06/09/19 15:01,"744 10th St, Los Angeles, CA 90001" +206711,Lightning Charging Cable,2,14.95,06/20/19 15:27,"685 Maple St, New York City, NY 10001" +206712,Apple Airpods Headphones,1,150,06/16/19 23:58,"90 Walnut St, Austin, TX 73301" +206713,27in 4K Gaming Monitor,1,389.99,06/19/19 09:55,"712 Jackson St, Boston, MA 02215" +206714,Bose SoundSport Headphones,1,99.99,06/18/19 19:54,"564 12th St, San Francisco, CA 94016" +206715,Lightning Charging Cable,1,14.95,06/13/19 23:35,"174 West St, San Francisco, CA 94016" +206716,Wired Headphones,1,11.99,06/09/19 01:24,"421 Forest St, Dallas, TX 75001" +206717,USB-C Charging Cable,1,11.95,06/07/19 04:45,"236 River St, Los Angeles, CA 90001" +206718,Flatscreen TV,1,300,06/21/19 20:39,"171 Elm St, Seattle, WA 98101" +206719,USB-C Charging Cable,1,11.95,06/26/19 18:02,"984 12th St, Boston, MA 02215" +206720,Bose SoundSport Headphones,1,99.99,06/08/19 15:27,"791 Willow St, Seattle, WA 98101" +206721,Apple Airpods Headphones,1,150,06/30/19 11:50,"265 South St, Boston, MA 02215" +206722,Macbook Pro Laptop,1,1700,06/05/19 11:36,"958 Dogwood St, Los Angeles, CA 90001" +206723,27in 4K Gaming Monitor,1,389.99,06/09/19 11:00,"85 Hickory St, Boston, MA 02215" +206724,AA Batteries (4-pack),1,3.84,06/10/19 10:55,"820 Church St, Portland, OR 97035" +206725,Apple Airpods Headphones,1,150,06/26/19 14:37,"57 2nd St, Portland, ME 04101" +206726,Flatscreen TV,1,300,06/28/19 19:34,"420 Pine St, Atlanta, GA 30301" +206727,34in Ultrawide Monitor,1,379.99,06/25/19 18:44,"520 11th St, Los Angeles, CA 90001" +206728,iPhone,1,700,06/09/19 20:25,"423 Highland St, Los Angeles, CA 90001" +206728,Lightning Charging Cable,1,14.95,06/09/19 20:25,"423 Highland St, Los Angeles, CA 90001" +206729,Bose SoundSport Headphones,1,99.99,06/01/19 18:43,"249 Walnut St, Dallas, TX 75001" +206730,Apple Airpods Headphones,1,150,06/08/19 23:03,"13 Forest St, Los Angeles, CA 90001" +206731,Google Phone,1,600,06/21/19 13:35,"258 River St, San Francisco, CA 94016" +206732,Apple Airpods Headphones,1,150,06/02/19 21:33,"35 Lake St, New York City, NY 10001" +206733,Google Phone,1,600,06/30/19 09:12,"649 Willow St, New York City, NY 10001" +206733,USB-C Charging Cable,1,11.95,06/30/19 09:12,"649 Willow St, New York City, NY 10001" +206733,Wired Headphones,1,11.99,06/30/19 09:12,"649 Willow St, New York City, NY 10001" +206734,Lightning Charging Cable,1,14.95,06/17/19 21:22,"572 Forest St, Los Angeles, CA 90001" +206735,Apple Airpods Headphones,1,150,06/12/19 19:25,"975 5th St, Portland, OR 97035" +206735,AAA Batteries (4-pack),2,2.99,06/12/19 19:25,"975 5th St, Portland, OR 97035" +206736,AA Batteries (4-pack),1,3.84,06/16/19 18:31,"117 Forest St, Austin, TX 73301" +206737,AAA Batteries (4-pack),1,2.99,06/24/19 18:35,"431 8th St, New York City, NY 10001" +206738,Lightning Charging Cable,1,14.95,06/21/19 04:40,"648 Maple St, Austin, TX 73301" +206739,AA Batteries (4-pack),1,3.84,06/08/19 11:42,"157 14th St, Los Angeles, CA 90001" +206740,Flatscreen TV,1,300,06/01/19 19:30,"536 Cedar St, San Francisco, CA 94016" +206741,Flatscreen TV,1,300,06/06/19 15:48,"607 Center St, Los Angeles, CA 90001" +206742,AA Batteries (4-pack),1,3.84,06/22/19 21:03,"88 Sunset St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +206743,Apple Airpods Headphones,1,150,06/29/19 13:41,"122 West St, San Francisco, CA 94016" +206744,USB-C Charging Cable,1,11.95,06/15/19 11:53,"976 Center St, Los Angeles, CA 90001" +206745,AA Batteries (4-pack),1,3.84,06/14/19 20:17,"795 North St, San Francisco, CA 94016" +206746,USB-C Charging Cable,1,11.95,06/15/19 15:20,"429 Hill St, Seattle, WA 98101" +206747,Bose SoundSport Headphones,1,99.99,06/04/19 19:34,"932 River St, New York City, NY 10001" +206748,AA Batteries (4-pack),1,3.84,06/26/19 16:51,"913 Highland St, Atlanta, GA 30301" +206749,Wired Headphones,1,11.99,06/07/19 22:06,"280 Willow St, San Francisco, CA 94016" +206750,Bose SoundSport Headphones,1,99.99,06/09/19 17:12,"171 13th St, New York City, NY 10001" +206751,iPhone,1,700,06/10/19 20:59,"657 Church St, Portland, OR 97035" +206752,AA Batteries (4-pack),2,3.84,06/10/19 14:15,"680 4th St, New York City, NY 10001" +206753,27in FHD Monitor,1,149.99,06/16/19 17:58,"95 4th St, New York City, NY 10001" +206754,27in 4K Gaming Monitor,1,389.99,06/30/19 15:07,"98 Center St, Portland, OR 97035" +206755,AA Batteries (4-pack),2,3.84,06/25/19 12:23,"520 North St, Seattle, WA 98101" +206756,AAA Batteries (4-pack),3,2.99,06/13/19 03:14,"55 6th St, New York City, NY 10001" +206757,20in Monitor,1,109.99,06/18/19 21:13,"873 Forest St, Dallas, TX 75001" +206758,Wired Headphones,1,11.99,06/21/19 10:29,"479 Dogwood St, Los Angeles, CA 90001" +206758,Lightning Charging Cable,1,14.95,06/21/19 10:29,"479 Dogwood St, Los Angeles, CA 90001" +206759,20in Monitor,1,109.99,06/26/19 19:16,"69 2nd St, Boston, MA 02215" +206760,USB-C Charging Cable,2,11.95,06/23/19 13:45,"270 Main St, San Francisco, CA 94016" +206761,iPhone,1,700,06/07/19 05:00,"89 8th St, Atlanta, GA 30301" +206762,Lightning Charging Cable,1,14.95,06/18/19 19:48,"229 5th St, San Francisco, CA 94016" +206763,AAA Batteries (4-pack),1,2.99,06/19/19 18:53,"734 Chestnut St, Los Angeles, CA 90001" +206764,Bose SoundSport Headphones,1,99.99,06/27/19 22:03,"617 Madison St, Portland, OR 97035" +206765,iPhone,1,700,06/01/19 12:47,"125 Forest St, Los Angeles, CA 90001" +206766,Macbook Pro Laptop,1,1700,06/26/19 21:29,"538 Jackson St, Austin, TX 73301" +206767,Bose SoundSport Headphones,1,99.99,06/26/19 19:52,"543 Cherry St, Atlanta, GA 30301" +206768,Bose SoundSport Headphones,1,99.99,06/04/19 08:32,"530 Jefferson St, Dallas, TX 75001" +206769,AA Batteries (4-pack),1,3.84,06/29/19 10:06,"771 Main St, Dallas, TX 75001" +206770,Apple Airpods Headphones,1,150,06/22/19 22:17,"695 Sunset St, Dallas, TX 75001" +206771,Lightning Charging Cable,1,14.95,06/23/19 10:54,"729 Ridge St, San Francisco, CA 94016" +206772,AA Batteries (4-pack),2,3.84,06/15/19 20:23,"813 West St, Los Angeles, CA 90001" +206773,Lightning Charging Cable,1,14.95,06/08/19 19:54,"526 12th St, Boston, MA 02215" +206774,27in 4K Gaming Monitor,1,389.99,06/11/19 05:59,"529 Ridge St, Los Angeles, CA 90001" +206775,Bose SoundSport Headphones,1,99.99,06/11/19 11:03,"997 Johnson St, New York City, NY 10001" +206776,AA Batteries (4-pack),1,3.84,06/09/19 20:57,"864 13th St, Portland, OR 97035" +206777,Apple Airpods Headphones,1,150,06/10/19 19:13,"809 Walnut St, San Francisco, CA 94016" +206778,Macbook Pro Laptop,1,1700,06/11/19 19:21,"694 Park St, Austin, TX 73301" +206779,Lightning Charging Cable,1,14.95,06/13/19 13:03,"24 Lake St, Seattle, WA 98101" +206780,USB-C Charging Cable,1,11.95,06/12/19 19:09,"195 Lake St, Dallas, TX 75001" +206781,Bose SoundSport Headphones,1,99.99,06/20/19 17:26,"613 Main St, Portland, OR 97035" +206782,Apple Airpods Headphones,1,150,06/15/19 18:33,"613 River St, Dallas, TX 75001" +206783,iPhone,1,700,06/19/19 11:16,"412 Cherry St, San Francisco, CA 94016" +206784,AA Batteries (4-pack),1,3.84,06/10/19 08:38,"738 2nd St, San Francisco, CA 94016" +206785,iPhone,1,700,06/07/19 22:25,"829 Hill St, Atlanta, GA 30301" +206786,Google Phone,1,600,06/20/19 19:45,"354 13th St, Seattle, WA 98101" +206787,AAA Batteries (4-pack),1,2.99,06/11/19 22:48,"636 10th St, Los Angeles, CA 90001" +206788,Bose SoundSport Headphones,1,99.99,06/12/19 14:05,"74 Lake St, Portland, OR 97035" +206789,AAA Batteries (4-pack),1,2.99,06/20/19 08:38,"670 13th St, Seattle, WA 98101" +206790,Apple Airpods Headphones,1,150,06/18/19 23:17,"333 Park St, Atlanta, GA 30301" +206791,iPhone,1,700,06/10/19 13:44,"774 Wilson St, San Francisco, CA 94016" +206792,Bose SoundSport Headphones,1,99.99,06/27/19 20:44,"210 North St, Atlanta, GA 30301" +206793,Bose SoundSport Headphones,1,99.99,06/01/19 23:37,"735 North St, Seattle, WA 98101" +206794,Lightning Charging Cable,1,14.95,06/08/19 22:08,"969 7th St, San Francisco, CA 94016" +206795,Wired Headphones,1,11.99,06/25/19 10:43,"382 Maple St, San Francisco, CA 94016" +206796,Macbook Pro Laptop,1,1700,06/29/19 18:17,"413 8th St, Boston, MA 02215" +206797,AA Batteries (4-pack),1,3.84,06/09/19 20:22,"283 Adams St, New York City, NY 10001" +206798,AA Batteries (4-pack),2,3.84,06/17/19 14:12,"142 Willow St, San Francisco, CA 94016" +206799,Flatscreen TV,1,300,06/26/19 16:09,"804 Hickory St, Los Angeles, CA 90001" +206800,USB-C Charging Cable,1,11.95,06/12/19 19:16,"929 North St, Los Angeles, CA 90001" +206801,AA Batteries (4-pack),1,3.84,06/10/19 22:58,"550 Forest St, Portland, ME 04101" +206802,AAA Batteries (4-pack),1,2.99,06/17/19 18:30,"858 Forest St, Boston, MA 02215" +206803,Apple Airpods Headphones,1,150,06/04/19 08:47,"363 Walnut St, Los Angeles, CA 90001" +206804,27in FHD Monitor,1,149.99,06/13/19 11:28,"400 Willow St, Austin, TX 73301" +206805,34in Ultrawide Monitor,1,379.99,06/27/19 14:15,"732 Highland St, Los Angeles, CA 90001" +206806,ThinkPad Laptop,1,999.99,06/29/19 19:19,"727 West St, Seattle, WA 98101" +206807,AA Batteries (4-pack),1,3.84,06/22/19 18:10,"497 Hill St, New York City, NY 10001" +206808,27in FHD Monitor,1,149.99,06/10/19 20:41,"208 Church St, Los Angeles, CA 90001" +206809,USB-C Charging Cable,1,11.95,06/16/19 13:20,"286 Dogwood St, Los Angeles, CA 90001" +206810,Apple Airpods Headphones,1,150,06/15/19 14:33,"457 1st St, Austin, TX 73301" +206811,ThinkPad Laptop,1,999.99,06/11/19 23:07,"404 Spruce St, Boston, MA 02215" +206812,Apple Airpods Headphones,1,150,06/19/19 10:09,"551 10th St, Atlanta, GA 30301" +206813,Lightning Charging Cable,1,14.95,06/23/19 18:05,"299 8th St, Los Angeles, CA 90001" +206814,USB-C Charging Cable,1,11.95,06/23/19 13:27,"961 Sunset St, Atlanta, GA 30301" +206815,Vareebadd Phone,1,400,06/25/19 15:10,"263 Lakeview St, Seattle, WA 98101" +206816,27in 4K Gaming Monitor,1,389.99,06/12/19 14:32,"242 9th St, San Francisco, CA 94016" +206817,Apple Airpods Headphones,1,150,06/12/19 07:52,"312 10th St, Boston, MA 02215" +206818,Bose SoundSport Headphones,1,99.99,06/27/19 19:29,"849 Hickory St, Los Angeles, CA 90001" +206818,Wired Headphones,2,11.99,06/27/19 19:29,"849 Hickory St, Los Angeles, CA 90001" +206819,Lightning Charging Cable,1,14.95,06/01/19 20:07,"483 Willow St, Los Angeles, CA 90001" +206820,Flatscreen TV,1,300,06/30/19 12:24,"660 Dogwood St, Dallas, TX 75001" +206821,AAA Batteries (4-pack),1,2.99,06/18/19 10:50,"23 Lakeview St, Boston, MA 02215" +206822,USB-C Charging Cable,1,11.95,06/24/19 10:36,"228 Hickory St, Boston, MA 02215" +206823,20in Monitor,1,109.99,06/27/19 19:54,"318 4th St, New York City, NY 10001" +206824,USB-C Charging Cable,1,11.95,06/17/19 11:40,"147 13th St, San Francisco, CA 94016" +206825,Apple Airpods Headphones,1,150,06/29/19 20:15,"633 North St, New York City, NY 10001" +206826,27in 4K Gaming Monitor,1,389.99,06/16/19 22:18,"549 9th St, Portland, OR 97035" +206827,USB-C Charging Cable,1,11.95,06/21/19 22:17,"405 4th St, New York City, NY 10001" +206828,Macbook Pro Laptop,1,1700,06/22/19 09:09,"208 River St, Boston, MA 02215" +206828,Macbook Pro Laptop,1,1700,06/22/19 09:09,"208 River St, Boston, MA 02215" +206829,Google Phone,1,600,06/08/19 11:13,"96 Walnut St, Atlanta, GA 30301" +206829,USB-C Charging Cable,1,11.95,06/08/19 11:13,"96 Walnut St, Atlanta, GA 30301" +206830,34in Ultrawide Monitor,1,379.99,06/26/19 22:05,"818 Chestnut St, Austin, TX 73301" +206831,AA Batteries (4-pack),2,3.84,06/12/19 17:16,"187 Hill St, Dallas, TX 75001" +206832,20in Monitor,1,109.99,06/04/19 12:53,"481 Dogwood St, Boston, MA 02215" +206833,Wired Headphones,1,11.99,06/30/19 22:52,"31 Main St, New York City, NY 10001" +206834,Lightning Charging Cable,1,14.95,06/12/19 12:20,"880 Elm St, San Francisco, CA 94016" +206835,USB-C Charging Cable,1,11.95,06/30/19 10:38,"665 Walnut St, New York City, NY 10001" +206836,AA Batteries (4-pack),1,3.84,06/11/19 14:54,"222 Meadow St, Los Angeles, CA 90001" +206837,Bose SoundSport Headphones,1,99.99,06/29/19 18:22,"607 10th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +206838,AAA Batteries (4-pack),1,2.99,06/08/19 08:46,"463 Lake St, Austin, TX 73301" +206839,Apple Airpods Headphones,1,150,06/22/19 09:13,"346 2nd St, New York City, NY 10001" +206840,AAA Batteries (4-pack),2,2.99,06/05/19 14:49,"689 Pine St, San Francisco, CA 94016" +206841,34in Ultrawide Monitor,1,379.99,06/10/19 21:55,"177 10th St, New York City, NY 10001" +206842,AA Batteries (4-pack),1,3.84,06/28/19 10:47,"184 West St, Los Angeles, CA 90001" +206843,Lightning Charging Cable,1,14.95,06/24/19 15:48,"91 Hill St, Atlanta, GA 30301" +206844,AA Batteries (4-pack),1,3.84,06/27/19 10:46,"581 Jackson St, Los Angeles, CA 90001" +206845,Apple Airpods Headphones,1,150,06/13/19 20:48,"886 Jackson St, San Francisco, CA 94016" +206846,27in 4K Gaming Monitor,1,389.99,06/08/19 12:54,"958 Walnut St, New York City, NY 10001" +206847,Wired Headphones,1,11.99,06/27/19 21:24,"462 10th St, Seattle, WA 98101" +206848,AAA Batteries (4-pack),1,2.99,06/08/19 20:14,"985 Hill St, Los Angeles, CA 90001" +206848,Vareebadd Phone,1,400,06/08/19 20:14,"985 Hill St, Los Angeles, CA 90001" +206849,LG Washing Machine,1,600.0,06/14/19 08:57,"934 Highland St, Los Angeles, CA 90001" +206850,LG Washing Machine,1,600.0,06/23/19 13:54,"96 Adams St, San Francisco, CA 94016" +206851,USB-C Charging Cable,1,11.95,06/17/19 17:04,"653 Lincoln St, New York City, NY 10001" +206852,Bose SoundSport Headphones,1,99.99,06/27/19 14:35,"60 11th St, San Francisco, CA 94016" +206853,Lightning Charging Cable,1,14.95,06/26/19 11:15,"787 Cedar St, San Francisco, CA 94016" +206854,USB-C Charging Cable,1,11.95,06/18/19 00:51,"658 Pine St, San Francisco, CA 94016" +206855,Wired Headphones,1,11.99,06/18/19 21:02,"981 6th St, Seattle, WA 98101" +206856,20in Monitor,1,109.99,06/18/19 16:16,"190 Washington St, Los Angeles, CA 90001" +206857,Lightning Charging Cable,1,14.95,06/25/19 03:48,"564 4th St, Boston, MA 02215" +206858,Google Phone,1,600,06/05/19 22:58,"688 2nd St, San Francisco, CA 94016" +206858,USB-C Charging Cable,1,11.95,06/05/19 22:58,"688 2nd St, San Francisco, CA 94016" +206859,Bose SoundSport Headphones,1,99.99,06/24/19 12:41,"674 Dogwood St, Seattle, WA 98101" +206860,AAA Batteries (4-pack),1,2.99,06/23/19 10:53,"747 Cherry St, Seattle, WA 98101" +206861,ThinkPad Laptop,1,999.99,06/06/19 11:22,"880 Main St, San Francisco, CA 94016" +206862,Macbook Pro Laptop,1,1700,06/12/19 09:50,"654 Meadow St, Seattle, WA 98101" +206863,USB-C Charging Cable,1,11.95,06/23/19 15:53,"986 Church St, Boston, MA 02215" +206864,AAA Batteries (4-pack),1,2.99,06/16/19 17:05,"407 Hill St, Los Angeles, CA 90001" +206864,AAA Batteries (4-pack),1,2.99,06/16/19 17:05,"407 Hill St, Los Angeles, CA 90001" +206865,USB-C Charging Cable,1,11.95,06/03/19 17:34,"952 8th St, Los Angeles, CA 90001" +206866,Flatscreen TV,1,300,06/05/19 19:48,"698 Pine St, New York City, NY 10001" +206867,AAA Batteries (4-pack),1,2.99,06/23/19 16:31,"302 7th St, Dallas, TX 75001" +206868,Wired Headphones,1,11.99,06/03/19 18:43,"705 Pine St, Dallas, TX 75001" +206869,USB-C Charging Cable,1,11.95,06/10/19 20:24,"367 Lakeview St, Dallas, TX 75001" +206870,Vareebadd Phone,1,400,06/27/19 22:48,"6 1st St, San Francisco, CA 94016" +206871,Apple Airpods Headphones,1,150,06/06/19 20:50,"27 Willow St, Boston, MA 02215" +206872,Bose SoundSport Headphones,1,99.99,06/21/19 09:21,"777 4th St, Austin, TX 73301" +206873,Wired Headphones,1,11.99,06/21/19 18:29,"457 Willow St, San Francisco, CA 94016" +206874,AA Batteries (4-pack),1,3.84,06/24/19 21:31,"710 Maple St, Los Angeles, CA 90001" +206875,Flatscreen TV,1,300,06/22/19 12:23,"480 Pine St, Atlanta, GA 30301" +206876,Apple Airpods Headphones,1,150,06/23/19 14:16,"629 Hickory St, Seattle, WA 98101" +206877,Lightning Charging Cable,1,14.95,06/13/19 02:02,"846 Wilson St, Boston, MA 02215" +206878,ThinkPad Laptop,1,999.99,06/08/19 04:17,"638 South St, New York City, NY 10001" +206879,AA Batteries (4-pack),1,3.84,06/05/19 19:35,"708 7th St, Portland, OR 97035" +206880,USB-C Charging Cable,1,11.95,06/19/19 05:22,"946 Cherry St, Boston, MA 02215" +206881,Flatscreen TV,1,300,06/21/19 22:12,"260 North St, San Francisco, CA 94016" +206882,20in Monitor,1,109.99,06/14/19 14:03,"960 13th St, Seattle, WA 98101" +206883,AA Batteries (4-pack),2,3.84,06/23/19 11:02,"404 Highland St, Los Angeles, CA 90001" +206884,34in Ultrawide Monitor,1,379.99,06/01/19 08:09,"384 12th St, Boston, MA 02215" +206885,USB-C Charging Cable,1,11.95,06/06/19 09:31,"881 Forest St, San Francisco, CA 94016" +206886,Google Phone,1,600,06/01/19 12:22,"233 Hill St, San Francisco, CA 94016" +206887,Lightning Charging Cable,1,14.95,06/16/19 17:06,"698 Ridge St, San Francisco, CA 94016" +206888,AAA Batteries (4-pack),2,2.99,06/01/19 13:11,"111 Willow St, Portland, OR 97035" +206889,USB-C Charging Cable,1,11.95,06/16/19 18:15,"706 Jackson St, San Francisco, CA 94016" +206890,Wired Headphones,1,11.99,06/30/19 13:08,"916 Hickory St, Seattle, WA 98101" +206891,AAA Batteries (4-pack),1,2.99,06/12/19 18:32,"706 10th St, Seattle, WA 98101" +206892,Bose SoundSport Headphones,1,99.99,06/20/19 15:38,"100 Jefferson St, San Francisco, CA 94016" +206893,Macbook Pro Laptop,1,1700,06/27/19 17:26,"928 Maple St, San Francisco, CA 94016" +206894,Flatscreen TV,1,300,06/08/19 14:11,"107 Adams St, Atlanta, GA 30301" +206895,Bose SoundSport Headphones,1,99.99,06/10/19 07:33,"406 Chestnut St, Portland, OR 97035" +206896,Apple Airpods Headphones,1,150,06/23/19 22:46,"889 Jefferson St, San Francisco, CA 94016" +206897,Vareebadd Phone,1,400,06/11/19 19:47,"435 14th St, Dallas, TX 75001" +206897,USB-C Charging Cable,1,11.95,06/11/19 19:47,"435 14th St, Dallas, TX 75001" +206898,34in Ultrawide Monitor,1,379.99,06/07/19 02:19,"937 Adams St, San Francisco, CA 94016" +206899,Apple Airpods Headphones,1,150,06/18/19 19:08,"221 Jackson St, San Francisco, CA 94016" +206900,Wired Headphones,1,11.99,06/25/19 01:14,"287 10th St, San Francisco, CA 94016" +206901,Apple Airpods Headphones,1,150,06/17/19 02:48,"435 Wilson St, Austin, TX 73301" +206902,Lightning Charging Cable,1,14.95,06/05/19 20:10,"134 7th St, Dallas, TX 75001" +206903,AAA Batteries (4-pack),1,2.99,06/16/19 01:21,"879 8th St, Atlanta, GA 30301" +206904,AA Batteries (4-pack),2,3.84,06/04/19 20:09,"338 Lakeview St, San Francisco, CA 94016" +206905,Apple Airpods Headphones,1,150,06/22/19 20:04,"670 Hill St, Atlanta, GA 30301" +206906,Macbook Pro Laptop,1,1700,06/30/19 14:16,"671 Jackson St, Los Angeles, CA 90001" +206907,Wired Headphones,1,11.99,06/20/19 00:17,"313 Cherry St, Portland, OR 97035" +206908,Lightning Charging Cable,1,14.95,06/11/19 17:26,"589 West St, Los Angeles, CA 90001" +206909,27in 4K Gaming Monitor,1,389.99,06/23/19 09:04,"749 Cherry St, Dallas, TX 75001" +206910,Bose SoundSport Headphones,1,99.99,06/27/19 22:25,"605 West St, Atlanta, GA 30301" +206911,AA Batteries (4-pack),1,3.84,06/28/19 13:06,"954 12th St, San Francisco, CA 94016" +206912,27in 4K Gaming Monitor,1,389.99,06/30/19 21:55,"515 Forest St, Boston, MA 02215" +206913,27in 4K Gaming Monitor,1,389.99,06/06/19 19:14,"24 5th St, Portland, OR 97035" +206914,USB-C Charging Cable,1,11.95,06/10/19 22:22,"352 West St, New York City, NY 10001" +206915,Lightning Charging Cable,1,14.95,06/03/19 09:39,"585 Elm St, San Francisco, CA 94016" +206916,USB-C Charging Cable,1,11.95,06/23/19 21:02,"244 Chestnut St, San Francisco, CA 94016" +206917,AAA Batteries (4-pack),2,2.99,06/04/19 13:23,"555 6th St, Boston, MA 02215" +206918,AA Batteries (4-pack),1,3.84,06/13/19 10:57,"702 1st St, San Francisco, CA 94016" +206919,Google Phone,1,600,06/26/19 10:40,"22 9th St, Seattle, WA 98101" +206919,USB-C Charging Cable,1,11.95,06/26/19 10:40,"22 9th St, Seattle, WA 98101" +206920,USB-C Charging Cable,1,11.95,06/26/19 09:40,"283 Spruce St, Portland, OR 97035" +206921,Wired Headphones,2,11.99,06/18/19 20:26,"56 Washington St, San Francisco, CA 94016" +206922,AA Batteries (4-pack),1,3.84,06/12/19 21:36,"517 Willow St, Los Angeles, CA 90001" +206923,AA Batteries (4-pack),1,3.84,06/13/19 00:17,"825 Jackson St, San Francisco, CA 94016" +206924,Macbook Pro Laptop,1,1700,06/24/19 11:31,"937 Cedar St, Seattle, WA 98101" +206925,Flatscreen TV,1,300,06/25/19 10:10,"842 Hill St, Boston, MA 02215" +206926,Apple Airpods Headphones,1,150,06/09/19 17:12,"182 Johnson St, Los Angeles, CA 90001" +206927,Lightning Charging Cable,2,14.95,06/06/19 20:34,"140 14th St, Portland, OR 97035" +206928,Wired Headphones,1,11.99,06/21/19 22:06,"343 Center St, Boston, MA 02215" +206929,USB-C Charging Cable,1,11.95,06/30/19 13:54,"710 Forest St, Atlanta, GA 30301" +206930,AA Batteries (4-pack),2,3.84,06/26/19 21:46,"665 1st St, Dallas, TX 75001" +206931,Bose SoundSport Headphones,2,99.99,06/03/19 13:59,"4 Hickory St, New York City, NY 10001" +206932,Lightning Charging Cable,1,14.95,06/04/19 13:09,"936 North St, Los Angeles, CA 90001" +206933,iPhone,1,700,06/02/19 16:03,"250 1st St, Seattle, WA 98101" +206933,Lightning Charging Cable,1,14.95,06/02/19 16:03,"250 1st St, Seattle, WA 98101" +206933,Macbook Pro Laptop,1,1700,06/02/19 16:03,"250 1st St, Seattle, WA 98101" +206934,Bose SoundSport Headphones,1,99.99,06/16/19 12:31,"516 Walnut St, San Francisco, CA 94016" +206935,Apple Airpods Headphones,1,150,06/13/19 12:04,"483 Chestnut St, Dallas, TX 75001" +206936,Wired Headphones,1,11.99,06/28/19 11:48,"345 Jefferson St, New York City, NY 10001" +206937,USB-C Charging Cable,1,11.95,06/23/19 18:39,"259 Center St, Atlanta, GA 30301" +206938,AAA Batteries (4-pack),2,2.99,06/29/19 18:58,"835 West St, New York City, NY 10001" +206939,Apple Airpods Headphones,1,150,06/07/19 22:00,"222 West St, Seattle, WA 98101" +206940,Google Phone,1,600,06/17/19 17:26,"339 Highland St, Austin, TX 73301" +206940,Wired Headphones,1,11.99,06/17/19 17:26,"339 Highland St, Austin, TX 73301" +206941,Wired Headphones,1,11.99,06/14/19 16:14,"684 Cedar St, New York City, NY 10001" +206942,AAA Batteries (4-pack),1,2.99,06/04/19 00:20,"296 Highland St, Los Angeles, CA 90001" +206943,USB-C Charging Cable,1,11.95,06/09/19 15:18,"312 6th St, Boston, MA 02215" +206944,Wired Headphones,1,11.99,06/18/19 19:19,"466 Meadow St, San Francisco, CA 94016" +206945,Bose SoundSport Headphones,1,99.99,06/23/19 16:39,"587 South St, San Francisco, CA 94016" +206946,Apple Airpods Headphones,1,150,06/13/19 20:14,"220 Lake St, Los Angeles, CA 90001" +206947,USB-C Charging Cable,1,11.95,06/11/19 16:45,"843 North St, New York City, NY 10001" +206948,Apple Airpods Headphones,1,150,06/11/19 12:28,"332 Adams St, New York City, NY 10001" +206949,Apple Airpods Headphones,1,150,06/23/19 16:40,"779 Cedar St, Austin, TX 73301" +206950,Lightning Charging Cable,1,14.95,06/21/19 19:55,"258 West St, Austin, TX 73301" +206951,AA Batteries (4-pack),1,3.84,06/28/19 17:36,"259 Cherry St, Seattle, WA 98101" +206952,USB-C Charging Cable,1,11.95,06/15/19 13:51,"604 Hill St, Portland, OR 97035" +206953,ThinkPad Laptop,1,999.99,06/27/19 23:29,"745 Maple St, San Francisco, CA 94016" +206954,Apple Airpods Headphones,1,150,06/14/19 16:18,"215 Lakeview St, Austin, TX 73301" +206955,27in 4K Gaming Monitor,1,389.99,06/14/19 08:20,"73 5th St, New York City, NY 10001" +206956,Macbook Pro Laptop,1,1700,06/18/19 14:39,"595 Washington St, New York City, NY 10001" +206957,Wired Headphones,1,11.99,06/17/19 12:34,"176 River St, Atlanta, GA 30301" +206958,Apple Airpods Headphones,1,150,06/30/19 20:23,"827 13th St, Boston, MA 02215" +206959,Vareebadd Phone,1,400,06/03/19 23:56,"805 Lake St, San Francisco, CA 94016" +206959,USB-C Charging Cable,1,11.95,06/03/19 23:56,"805 Lake St, San Francisco, CA 94016" +206960,Apple Airpods Headphones,1,150,06/28/19 18:20,"873 Adams St, San Francisco, CA 94016" +206961,Google Phone,1,600,06/06/19 08:23,"794 2nd St, Seattle, WA 98101" +206961,USB-C Charging Cable,1,11.95,06/06/19 08:23,"794 2nd St, Seattle, WA 98101" +206962,Apple Airpods Headphones,1,150,06/26/19 17:12,"711 Cherry St, New York City, NY 10001" +206963,USB-C Charging Cable,1,11.95,06/30/19 21:07,"560 Lincoln St, New York City, NY 10001" +206964,Apple Airpods Headphones,1,150,06/19/19 23:04,"543 10th St, New York City, NY 10001" +206965,27in FHD Monitor,1,149.99,06/05/19 14:48,"302 6th St, San Francisco, CA 94016" +206966,Lightning Charging Cable,1,14.95,06/24/19 17:08,"731 10th St, New York City, NY 10001" +206967,Wired Headphones,2,11.99,06/28/19 08:05,"467 Elm St, Los Angeles, CA 90001" +206968,USB-C Charging Cable,1,11.95,06/19/19 08:22,"441 Hill St, New York City, NY 10001" +206969,USB-C Charging Cable,1,11.95,06/08/19 17:45,"958 South St, San Francisco, CA 94016" +206970,Bose SoundSport Headphones,1,99.99,06/22/19 00:51,"764 9th St, San Francisco, CA 94016" +206971,Apple Airpods Headphones,1,150,06/10/19 19:37,"203 Pine St, San Francisco, CA 94016" +206972,Lightning Charging Cable,1,14.95,06/14/19 15:00,"397 Cedar St, New York City, NY 10001" +206973,USB-C Charging Cable,1,11.95,06/28/19 06:42,"337 Walnut St, New York City, NY 10001" +206974,AA Batteries (4-pack),2,3.84,06/16/19 18:09,"656 11th St, Seattle, WA 98101" +206975,Apple Airpods Headphones,1,150,06/03/19 15:08,"766 Jefferson St, Atlanta, GA 30301" +206976,Wired Headphones,1,11.99,06/16/19 12:23,"657 Meadow St, Los Angeles, CA 90001" +206977,Lightning Charging Cable,1,14.95,06/04/19 21:01,"812 Cherry St, Los Angeles, CA 90001" +206978,Google Phone,1,600,06/01/19 16:48,"591 Hill St, New York City, NY 10001" +206979,Lightning Charging Cable,1,14.95,06/14/19 00:15,"274 12th St, Los Angeles, CA 90001" +206980,USB-C Charging Cable,1,11.95,06/06/19 06:34,"661 7th St, Los Angeles, CA 90001" +206981,34in Ultrawide Monitor,1,379.99,06/13/19 09:40,"572 Cherry St, San Francisco, CA 94016" +206982,Lightning Charging Cable,1,14.95,06/10/19 15:05,"671 Highland St, Portland, OR 97035" +206983,20in Monitor,1,109.99,06/03/19 10:15,"909 Highland St, Los Angeles, CA 90001" +206984,AAA Batteries (4-pack),1,2.99,06/13/19 22:09,"884 West St, San Francisco, CA 94016" +206985,USB-C Charging Cable,1,11.95,06/12/19 10:44,"106 11th St, San Francisco, CA 94016" +206986,ThinkPad Laptop,1,999.99,06/08/19 18:06,"921 1st St, San Francisco, CA 94016" +206987,Lightning Charging Cable,1,14.95,06/11/19 01:16,"245 Dogwood St, Los Angeles, CA 90001" +206988,Apple Airpods Headphones,1,150,06/08/19 14:09,"170 Dogwood St, New York City, NY 10001" +206989,Lightning Charging Cable,1,14.95,06/18/19 13:21,"604 Willow St, San Francisco, CA 94016" +206990,Lightning Charging Cable,1,14.95,06/02/19 18:05,"502 1st St, San Francisco, CA 94016" +206991,Wired Headphones,1,11.99,06/18/19 17:17,"687 Jefferson St, Atlanta, GA 30301" +206992,Lightning Charging Cable,1,14.95,06/22/19 12:44,"276 Ridge St, San Francisco, CA 94016" +206993,Google Phone,1,600,06/27/19 07:22,"690 7th St, Atlanta, GA 30301" +206994,Lightning Charging Cable,1,14.95,06/19/19 18:50,"659 Pine St, Atlanta, GA 30301" +206995,AA Batteries (4-pack),1,3.84,06/13/19 11:43,"554 Lake St, Austin, TX 73301" +206996,USB-C Charging Cable,1,11.95,06/27/19 10:42,"901 Lake St, Los Angeles, CA 90001" +206997,USB-C Charging Cable,1,11.95,06/08/19 14:20,"563 13th St, Seattle, WA 98101" +206998,AA Batteries (4-pack),1,3.84,06/27/19 14:26,"63 Church St, Boston, MA 02215" +206999,AAA Batteries (4-pack),2,2.99,06/20/19 11:04,"750 River St, Dallas, TX 75001" +206999,AA Batteries (4-pack),1,3.84,06/20/19 11:04,"750 River St, Dallas, TX 75001" +207000,Lightning Charging Cable,1,14.95,06/10/19 14:29,"84 Meadow St, Boston, MA 02215" +207001,27in FHD Monitor,1,149.99,06/24/19 20:25,"833 Lakeview St, Los Angeles, CA 90001" +207002,27in FHD Monitor,2,149.99,06/22/19 12:38,"837 4th St, Atlanta, GA 30301" +207003,USB-C Charging Cable,1,11.95,06/03/19 21:16,"376 Cherry St, San Francisco, CA 94016" +207004,Wired Headphones,1,11.99,06/17/19 22:34,"945 Washington St, Dallas, TX 75001" +207005,USB-C Charging Cable,1,11.95,06/05/19 09:48,"934 Forest St, New York City, NY 10001" +207006,AAA Batteries (4-pack),1,2.99,06/22/19 13:02,"835 River St, San Francisco, CA 94016" +207007,27in FHD Monitor,1,149.99,06/25/19 10:46,"950 Ridge St, Los Angeles, CA 90001" +207008,Lightning Charging Cable,1,14.95,06/08/19 12:29,"732 Johnson St, San Francisco, CA 94016" +207009,AAA Batteries (4-pack),1,2.99,06/28/19 11:53,"717 1st St, Portland, OR 97035" +207010,Apple Airpods Headphones,1,150,06/18/19 20:30,"813 Hill St, San Francisco, CA 94016" +207010,34in Ultrawide Monitor,1,379.99,06/18/19 20:30,"813 Hill St, San Francisco, CA 94016" +207011,Google Phone,1,600,06/21/19 23:24,"549 Ridge St, San Francisco, CA 94016" +207012,Google Phone,1,600,06/20/19 14:06,"814 Adams St, Los Angeles, CA 90001" +207012,USB-C Charging Cable,1,11.95,06/20/19 14:06,"814 Adams St, Los Angeles, CA 90001" +207013,Bose SoundSport Headphones,1,99.99,06/14/19 17:00,"575 North St, San Francisco, CA 94016" +207014,Apple Airpods Headphones,1,150,06/08/19 20:07,"821 Jackson St, Portland, OR 97035" +207014,AAA Batteries (4-pack),1,2.99,06/08/19 20:07,"821 Jackson St, Portland, OR 97035" +207015,AAA Batteries (4-pack),2,2.99,06/10/19 13:34,"910 Cedar St, Seattle, WA 98101" +207016,Flatscreen TV,1,300,06/01/19 16:37,"991 Park St, Los Angeles, CA 90001" +207017,Apple Airpods Headphones,1,150,06/29/19 18:56,"172 Maple St, Atlanta, GA 30301" +207018,Bose SoundSport Headphones,1,99.99,06/01/19 20:08,"898 Pine St, San Francisco, CA 94016" +207019,27in 4K Gaming Monitor,1,389.99,06/24/19 22:09,"246 Main St, New York City, NY 10001" +207020,Wired Headphones,1,11.99,06/15/19 14:13,"914 Cedar St, Los Angeles, CA 90001" +207021,iPhone,1,700,06/19/19 14:18,"432 Adams St, Seattle, WA 98101" +207022,Lightning Charging Cable,1,14.95,06/03/19 21:06,"573 Center St, Los Angeles, CA 90001" +207023,Lightning Charging Cable,1,14.95,06/01/19 17:59,"168 Main St, New York City, NY 10001" +207024,AAA Batteries (4-pack),1,2.99,06/19/19 11:48,"336 Elm St, Los Angeles, CA 90001" +207025,AA Batteries (4-pack),2,3.84,06/02/19 11:06,"844 Hickory St, San Francisco, CA 94016" +207026,Bose SoundSport Headphones,1,99.99,06/19/19 20:30,"245 Dogwood St, Seattle, WA 98101" +207027,Bose SoundSport Headphones,1,99.99,06/30/19 08:33,"740 11th St, Los Angeles, CA 90001" +207028,AA Batteries (4-pack),1,3.84,06/26/19 03:21,"549 Lake St, San Francisco, CA 94016" +207029,Wired Headphones,1,11.99,06/23/19 21:29,"169 Sunset St, New York City, NY 10001" +207030,AA Batteries (4-pack),1,3.84,06/08/19 12:58,"49 Highland St, San Francisco, CA 94016" +207031,Apple Airpods Headphones,1,150,06/13/19 21:43,"262 9th St, San Francisco, CA 94016" +207032,AAA Batteries (4-pack),1,2.99,06/02/19 09:29,"139 2nd St, Boston, MA 02215" +207033,20in Monitor,1,109.99,06/23/19 12:11,"148 Hill St, Boston, MA 02215" +207034,34in Ultrawide Monitor,1,379.99,06/18/19 17:54,"922 5th St, Los Angeles, CA 90001" +207035,Wired Headphones,1,11.99,06/12/19 00:42,"702 Lincoln St, San Francisco, CA 94016" +207036,Wired Headphones,1,11.99,06/10/19 10:31,"836 11th St, San Francisco, CA 94016" +207037,Bose SoundSport Headphones,1,99.99,06/14/19 05:07,"320 4th St, Boston, MA 02215" +207038,AA Batteries (4-pack),4,3.84,06/21/19 14:52,"532 South St, Los Angeles, CA 90001" +207039,AA Batteries (4-pack),2,3.84,06/22/19 13:07,"309 Dogwood St, Boston, MA 02215" +207040,Bose SoundSport Headphones,1,99.99,06/29/19 13:17,"856 Church St, Atlanta, GA 30301" +207041,20in Monitor,1,109.99,06/14/19 13:30,"203 Lakeview St, Los Angeles, CA 90001" +207042,AAA Batteries (4-pack),3,2.99,06/03/19 09:16,"14 4th St, Atlanta, GA 30301" +207043,AAA Batteries (4-pack),2,2.99,06/12/19 11:45,"507 Hill St, Los Angeles, CA 90001" +207044,Lightning Charging Cable,1,14.95,06/29/19 01:54,"513 Center St, Dallas, TX 75001" +207045,27in FHD Monitor,1,149.99,06/01/19 14:56,"382 North St, San Francisco, CA 94016" +207046,USB-C Charging Cable,1,11.95,06/01/19 15:04,"550 10th St, Dallas, TX 75001" +207047,USB-C Charging Cable,1,11.95,06/28/19 13:20,"574 13th St, Dallas, TX 75001" +207048,34in Ultrawide Monitor,1,379.99,06/10/19 17:18,"839 Spruce St, Portland, ME 04101" +207049,Apple Airpods Headphones,1,150,06/06/19 09:29,"446 Spruce St, San Francisco, CA 94016" +207050,USB-C Charging Cable,2,11.95,06/25/19 21:38,"238 River St, Seattle, WA 98101" +207051,AA Batteries (4-pack),5,3.84,06/13/19 23:23,"622 9th St, Los Angeles, CA 90001" +207052,LG Dryer,1,600.0,06/11/19 19:41,"759 River St, San Francisco, CA 94016" +207053,Macbook Pro Laptop,1,1700,06/22/19 14:21,"570 Hickory St, New York City, NY 10001" +207054,AA Batteries (4-pack),2,3.84,06/13/19 22:12,"799 Walnut St, San Francisco, CA 94016" +207055,34in Ultrawide Monitor,1,379.99,06/11/19 19:05,"968 7th St, Los Angeles, CA 90001" +207056,AA Batteries (4-pack),2,3.84,06/22/19 06:55,"222 Cedar St, Boston, MA 02215" +207057,USB-C Charging Cable,1,11.95,06/06/19 18:00,"318 Meadow St, Boston, MA 02215" +207058,AAA Batteries (4-pack),1,2.99,06/30/19 20:00,"682 Wilson St, Boston, MA 02215" +207059,Bose SoundSport Headphones,1,99.99,06/05/19 10:31,"678 7th St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +207060,Wired Headphones,1,11.99,06/15/19 04:44,"255 Johnson St, Los Angeles, CA 90001" +207061,Flatscreen TV,1,300,06/19/19 12:46,"438 11th St, San Francisco, CA 94016" +207062,iPhone,1,700,06/13/19 12:49,"867 River St, Seattle, WA 98101" +207063,Wired Headphones,2,11.99,06/12/19 13:05,"569 South St, San Francisco, CA 94016" +207064,AA Batteries (4-pack),1,3.84,06/19/19 16:34,"570 Meadow St, Boston, MA 02215" +207065,Apple Airpods Headphones,1,150,06/26/19 18:24,"411 Willow St, Portland, OR 97035" +207066,Wired Headphones,1,11.99,06/23/19 11:32,"866 Meadow St, Los Angeles, CA 90001" +207067,USB-C Charging Cable,1,11.95,06/12/19 17:50,"750 14th St, San Francisco, CA 94016" +207068,Wired Headphones,1,11.99,06/10/19 17:55,"743 South St, New York City, NY 10001" +207069,Apple Airpods Headphones,1,150,06/05/19 20:02,"916 Spruce St, Dallas, TX 75001" +207070,USB-C Charging Cable,1,11.95,06/24/19 12:20,"293 Willow St, San Francisco, CA 94016" +207071,Google Phone,1,600,06/29/19 16:14,"519 Church St, San Francisco, CA 94016" +207071,USB-C Charging Cable,1,11.95,06/29/19 16:14,"519 Church St, San Francisco, CA 94016" +207072,Lightning Charging Cable,1,14.95,06/21/19 22:59,"809 Pine St, Boston, MA 02215" +207073,AA Batteries (4-pack),1,3.84,06/29/19 15:40,"982 Adams St, Portland, OR 97035" +207074,AA Batteries (4-pack),1,3.84,06/01/19 13:37,"980 Walnut St, Austin, TX 73301" +207075,27in FHD Monitor,1,149.99,06/26/19 19:19,"830 Jackson St, San Francisco, CA 94016" +207076,USB-C Charging Cable,1,11.95,06/29/19 10:51,"500 Elm St, Los Angeles, CA 90001" +207077,USB-C Charging Cable,1,11.95,06/16/19 19:45,"890 10th St, Boston, MA 02215" +207078,Lightning Charging Cable,2,14.95,06/21/19 13:26,"796 Lakeview St, San Francisco, CA 94016" +207079,Apple Airpods Headphones,1,150,06/09/19 06:09,"395 Maple St, Los Angeles, CA 90001" +207080,Apple Airpods Headphones,1,150,06/05/19 14:01,"842 6th St, Portland, ME 04101" +207081,AA Batteries (4-pack),1,3.84,06/11/19 12:16,"726 10th St, San Francisco, CA 94016" +207082,AAA Batteries (4-pack),1,2.99,06/23/19 10:59,"496 6th St, Boston, MA 02215" +207083,AA Batteries (4-pack),2,3.84,06/27/19 00:05,"951 10th St, Los Angeles, CA 90001" +207084,27in 4K Gaming Monitor,1,389.99,06/14/19 15:09,"633 6th St, Portland, ME 04101" +207085,27in 4K Gaming Monitor,1,389.99,06/07/19 18:27,"985 Cherry St, Atlanta, GA 30301" +207086,Wired Headphones,1,11.99,06/08/19 11:19,"737 River St, Boston, MA 02215" +207087,AA Batteries (4-pack),1,3.84,06/01/19 12:56,"893 Johnson St, New York City, NY 10001" +207088,Lightning Charging Cable,1,14.95,06/23/19 11:50,"366 11th St, Los Angeles, CA 90001" +207089,Apple Airpods Headphones,1,150,06/01/19 19:59,"572 Adams St, New York City, NY 10001" +207089,Wired Headphones,1,11.99,06/01/19 19:59,"572 Adams St, New York City, NY 10001" +207090,Google Phone,1,600,06/30/19 23:55,"592 Jackson St, Seattle, WA 98101" +207091,USB-C Charging Cable,1,11.95,06/13/19 07:59,"890 Park St, Austin, TX 73301" +207092,USB-C Charging Cable,1,11.95,06/14/19 19:02,"200 Jackson St, San Francisco, CA 94016" +207093,Macbook Pro Laptop,1,1700,06/17/19 10:48,"375 Wilson St, San Francisco, CA 94016" +207094,ThinkPad Laptop,1,999.99,06/20/19 22:12,"225 Ridge St, Dallas, TX 75001" +207095,Flatscreen TV,1,300,06/20/19 17:58,"545 Lake St, San Francisco, CA 94016" +207096,Flatscreen TV,1,300,06/09/19 00:41,"992 Sunset St, San Francisco, CA 94016" +207097,USB-C Charging Cable,1,11.95,06/05/19 18:00,"840 11th St, San Francisco, CA 94016" +207098,USB-C Charging Cable,1,11.95,06/14/19 22:51,"169 11th St, Boston, MA 02215" +207099,Wired Headphones,1,11.99,06/12/19 19:41,"338 Hickory St, Boston, MA 02215" +207100,34in Ultrawide Monitor,1,379.99,06/15/19 11:24,"593 Jefferson St, Boston, MA 02215" +207101,ThinkPad Laptop,1,999.99,06/22/19 18:22,"746 10th St, Atlanta, GA 30301" +207102,AAA Batteries (4-pack),2,2.99,06/03/19 10:49,"107 8th St, Los Angeles, CA 90001" +207103,AA Batteries (4-pack),3,3.84,06/15/19 16:07,"703 14th St, Los Angeles, CA 90001" +207104,Flatscreen TV,1,300,06/14/19 22:48,"987 4th St, San Francisco, CA 94016" +207105,AAA Batteries (4-pack),1,2.99,06/12/19 15:29,"405 5th St, New York City, NY 10001" +207106,Lightning Charging Cable,1,14.95,06/22/19 20:51,"511 River St, San Francisco, CA 94016" +207107,USB-C Charging Cable,1,11.95,06/13/19 09:04,"363 Main St, Boston, MA 02215" +207108,Lightning Charging Cable,1,14.95,06/06/19 10:14,"672 Center St, Atlanta, GA 30301" +207109,27in FHD Monitor,1,149.99,06/19/19 15:36,"673 5th St, Boston, MA 02215" +207110,Wired Headphones,1,11.99,06/12/19 18:53,"329 Forest St, San Francisco, CA 94016" +207111,Apple Airpods Headphones,1,150,06/13/19 00:22,"816 Willow St, Los Angeles, CA 90001" +207112,Apple Airpods Headphones,1,150,06/27/19 19:47,"658 13th St, New York City, NY 10001" +207113,Apple Airpods Headphones,1,150,06/16/19 11:50,"663 5th St, San Francisco, CA 94016" +207114,Wired Headphones,1,11.99,06/08/19 14:55,"338 10th St, Atlanta, GA 30301" +207115,Macbook Pro Laptop,1,1700,06/21/19 13:31,"759 Pine St, Los Angeles, CA 90001" +207116,34in Ultrawide Monitor,1,379.99,06/24/19 17:24,"228 Forest St, Los Angeles, CA 90001" +207117,AA Batteries (4-pack),5,3.84,06/10/19 01:11,"429 Cedar St, Atlanta, GA 30301" +207118,27in FHD Monitor,1,149.99,06/14/19 14:57,"290 1st St, Boston, MA 02215" +207119,Lightning Charging Cable,1,14.95,06/10/19 22:24,"745 Lake St, Los Angeles, CA 90001" +207120,iPhone,1,700,06/23/19 10:33,"181 Center St, Dallas, TX 75001" +207120,Apple Airpods Headphones,1,150,06/23/19 10:33,"181 Center St, Dallas, TX 75001" +207120,Wired Headphones,1,11.99,06/23/19 10:33,"181 Center St, Dallas, TX 75001" +207121,Apple Airpods Headphones,1,150,06/22/19 19:03,"394 Highland St, Los Angeles, CA 90001" +207122,34in Ultrawide Monitor,1,379.99,06/22/19 19:49,"189 Church St, San Francisco, CA 94016" +207123,Macbook Pro Laptop,1,1700,06/26/19 00:38,"282 Walnut St, Boston, MA 02215" +207124,Bose SoundSport Headphones,1,99.99,06/18/19 21:45,"381 Walnut St, New York City, NY 10001" +207125,AAA Batteries (4-pack),1,2.99,06/16/19 08:51,"251 Main St, Seattle, WA 98101" +207126,Lightning Charging Cable,1,14.95,06/26/19 02:22,"978 Wilson St, San Francisco, CA 94016" +207127,Lightning Charging Cable,1,14.95,06/28/19 05:52,"300 7th St, New York City, NY 10001" +207128,34in Ultrawide Monitor,1,379.99,06/16/19 11:35,"787 Park St, Los Angeles, CA 90001" +207129,USB-C Charging Cable,1,11.95,06/20/19 12:33,"282 14th St, Seattle, WA 98101" +207130,Google Phone,1,600,06/29/19 18:58,"749 River St, San Francisco, CA 94016" +207130,USB-C Charging Cable,1,11.95,06/29/19 18:58,"749 River St, San Francisco, CA 94016" +207131,Wired Headphones,1,11.99,06/20/19 13:11,"66 6th St, New York City, NY 10001" +207132,27in 4K Gaming Monitor,1,389.99,06/04/19 17:27,"875 Cedar St, Seattle, WA 98101" +207133,USB-C Charging Cable,1,11.95,06/07/19 10:04,"579 Park St, Los Angeles, CA 90001" +207134,AAA Batteries (4-pack),1,2.99,06/06/19 12:23,"724 South St, San Francisco, CA 94016" +207135,AA Batteries (4-pack),1,3.84,06/16/19 13:25,"617 Pine St, Seattle, WA 98101" +207136,Bose SoundSport Headphones,1,99.99,06/20/19 20:06,"817 Main St, Atlanta, GA 30301" +207137,USB-C Charging Cable,1,11.95,06/05/19 15:51,"66 12th St, San Francisco, CA 94016" +207138,AAA Batteries (4-pack),1,2.99,06/18/19 06:49,"712 13th St, Atlanta, GA 30301" +207139,LG Dryer,1,600.0,06/10/19 10:28,"651 Park St, Seattle, WA 98101" +207140,Lightning Charging Cable,1,14.95,06/04/19 19:20,"475 Chestnut St, Boston, MA 02215" +207141,AA Batteries (4-pack),1,3.84,06/17/19 19:37,"267 13th St, New York City, NY 10001" +207142,iPhone,1,700,06/25/19 12:07,"52 Cedar St, Boston, MA 02215" +207143,USB-C Charging Cable,1,11.95,06/06/19 13:56,"181 Washington St, Atlanta, GA 30301" +207144,Wired Headphones,1,11.99,06/05/19 22:11,"253 Johnson St, Los Angeles, CA 90001" +207144,AA Batteries (4-pack),1,3.84,06/05/19 22:11,"253 Johnson St, Los Angeles, CA 90001" +207145,Wired Headphones,1,11.99,06/26/19 20:48,"833 13th St, New York City, NY 10001" +207146,Lightning Charging Cable,1,14.95,06/05/19 16:04,"827 Spruce St, Los Angeles, CA 90001" +207147,Apple Airpods Headphones,1,150,06/13/19 11:03,"388 14th St, Atlanta, GA 30301" +207148,Wired Headphones,1,11.99,06/23/19 02:33,"344 Dogwood St, Atlanta, GA 30301" +207149,AAA Batteries (4-pack),2,2.99,06/14/19 18:13,"1 North St, Boston, MA 02215" +207150,AAA Batteries (4-pack),3,2.99,06/03/19 00:58,"999 Ridge St, Seattle, WA 98101" +207151,AAA Batteries (4-pack),1,2.99,06/27/19 17:19,"281 Cedar St, Seattle, WA 98101" +207152,AA Batteries (4-pack),1,3.84,06/28/19 19:08,"229 Meadow St, Dallas, TX 75001" +207153,Flatscreen TV,1,300,06/13/19 22:52,"248 5th St, San Francisco, CA 94016" +207154,Lightning Charging Cable,1,14.95,06/10/19 12:43,"307 Hill St, San Francisco, CA 94016" +207155,Lightning Charging Cable,1,14.95,06/12/19 02:48,"720 11th St, Seattle, WA 98101" +207156,Lightning Charging Cable,1,14.95,06/17/19 11:55,"718 1st St, Seattle, WA 98101" +207157,Wired Headphones,1,11.99,06/25/19 13:09,"244 West St, Atlanta, GA 30301" +207158,Apple Airpods Headphones,1,150,06/22/19 14:51,"442 11th St, Austin, TX 73301" +207159,Bose SoundSport Headphones,1,99.99,06/15/19 20:47,"776 Madison St, San Francisco, CA 94016" +207160,20in Monitor,1,109.99,06/23/19 17:14,"269 7th St, San Francisco, CA 94016" +207161,Wired Headphones,1,11.99,06/17/19 20:43,"271 5th St, New York City, NY 10001" +207162,34in Ultrawide Monitor,1,379.99,06/21/19 05:25,"617 Jefferson St, San Francisco, CA 94016" +207163,USB-C Charging Cable,2,11.95,06/24/19 21:00,"121 11th St, San Francisco, CA 94016" +207164,27in FHD Monitor,1,149.99,06/11/19 13:57,"499 Adams St, Portland, OR 97035" +207165,20in Monitor,1,109.99,06/15/19 18:26,"354 Lake St, San Francisco, CA 94016" +207166,ThinkPad Laptop,1,999.99,06/24/19 01:07,"959 Hickory St, Atlanta, GA 30301" +207167,USB-C Charging Cable,2,11.95,06/05/19 10:25,"241 North St, San Francisco, CA 94016" +207168,Macbook Pro Laptop,1,1700,06/13/19 00:56,"913 Dogwood St, San Francisco, CA 94016" +207169,Bose SoundSport Headphones,1,99.99,06/25/19 13:42,"934 Highland St, San Francisco, CA 94016" +207170,USB-C Charging Cable,1,11.95,06/17/19 19:18,"865 Main St, Seattle, WA 98101" +207171,USB-C Charging Cable,1,11.95,06/25/19 22:33,"83 Park St, Seattle, WA 98101" +207172,Lightning Charging Cable,1,14.95,06/15/19 11:43,"231 Forest St, Dallas, TX 75001" +207173,AA Batteries (4-pack),1,3.84,06/09/19 10:41,"751 Cedar St, Seattle, WA 98101" +207174,iPhone,1,700,06/07/19 08:35,"963 Dogwood St, San Francisco, CA 94016" +207174,Apple Airpods Headphones,1,150,06/07/19 08:35,"963 Dogwood St, San Francisco, CA 94016" +207175,Lightning Charging Cable,1,14.95,06/11/19 21:11,"622 Main St, Dallas, TX 75001" +207176,USB-C Charging Cable,1,11.95,06/15/19 21:53,"256 Dogwood St, Boston, MA 02215" +207177,27in FHD Monitor,1,149.99,06/20/19 16:08,"120 Hill St, Dallas, TX 75001" +207178,27in 4K Gaming Monitor,1,389.99,06/26/19 12:09,"308 Wilson St, New York City, NY 10001" +207179,Wired Headphones,1,11.99,06/25/19 13:44,"375 Lincoln St, Los Angeles, CA 90001" +207180,Wired Headphones,1,11.99,06/05/19 08:30,"708 12th St, Seattle, WA 98101" +207181,Apple Airpods Headphones,1,150,06/24/19 10:30,"152 Johnson St, Los Angeles, CA 90001" +207182,Lightning Charging Cable,1,14.95,06/01/19 15:23,"538 Adams St, Seattle, WA 98101" +207183,USB-C Charging Cable,1,11.95,06/12/19 01:12,"392 River St, San Francisco, CA 94016" +207184,Wired Headphones,2,11.99,06/03/19 13:53,"817 Dogwood St, Los Angeles, CA 90001" +207185,iPhone,1,700,06/13/19 19:54,"893 Dogwood St, Boston, MA 02215" +207185,Macbook Pro Laptop,1,1700,06/13/19 19:54,"893 Dogwood St, Boston, MA 02215" +207186,USB-C Charging Cable,1,11.95,06/10/19 12:04,"397 Cherry St, New York City, NY 10001" +207187,ThinkPad Laptop,1,999.99,06/29/19 18:05,"670 Johnson St, Boston, MA 02215" +207188,AA Batteries (4-pack),1,3.84,06/22/19 18:25,"386 Lakeview St, Austin, TX 73301" +207189,Lightning Charging Cable,1,14.95,06/11/19 17:37,"586 Jefferson St, New York City, NY 10001" +207190,Vareebadd Phone,1,400,06/09/19 22:43,"947 Dogwood St, Los Angeles, CA 90001" +207191,Lightning Charging Cable,1,14.95,06/26/19 19:48,"399 1st St, San Francisco, CA 94016" +207192,Lightning Charging Cable,1,14.95,06/04/19 09:45,"234 Ridge St, San Francisco, CA 94016" +207193,Lightning Charging Cable,1,14.95,06/25/19 21:19,"685 Center St, Atlanta, GA 30301" +207194,Bose SoundSport Headphones,1,99.99,06/21/19 08:59,"940 Hill St, Dallas, TX 75001" +207195,AA Batteries (4-pack),1,3.84,06/04/19 22:29,"266 10th St, Los Angeles, CA 90001" +207196,Bose SoundSport Headphones,1,99.99,06/25/19 14:42,"828 12th St, San Francisco, CA 94016" +207197,Wired Headphones,1,11.99,06/22/19 13:20,"978 Pine St, Dallas, TX 75001" +207198,Wired Headphones,1,11.99,07/01/19 00:31,"689 Center St, San Francisco, CA 94016" +207199,AAA Batteries (4-pack),1,2.99,06/14/19 19:26,"327 Sunset St, San Francisco, CA 94016" +207200,Wired Headphones,1,11.99,06/17/19 17:04,"779 6th St, Seattle, WA 98101" +207201,AAA Batteries (4-pack),1,2.99,06/20/19 22:10,"395 Lake St, Atlanta, GA 30301" +207202,Lightning Charging Cable,1,14.95,06/15/19 20:40,"285 Adams St, Portland, OR 97035" +207203,iPhone,1,700,06/11/19 14:42,"223 6th St, San Francisco, CA 94016" +207203,Lightning Charging Cable,1,14.95,06/11/19 14:42,"223 6th St, San Francisco, CA 94016" +207204,Apple Airpods Headphones,1,150,06/15/19 14:36,"254 Highland St, New York City, NY 10001" +207205,USB-C Charging Cable,2,11.95,06/15/19 06:13,"838 Lincoln St, San Francisco, CA 94016" +207206,Google Phone,1,600,06/25/19 22:02,"550 1st St, Boston, MA 02215" +207206,USB-C Charging Cable,1,11.95,06/25/19 22:02,"550 1st St, Boston, MA 02215" +207207,Lightning Charging Cable,1,14.95,06/22/19 21:04,"113 Meadow St, Austin, TX 73301" +207208,27in 4K Gaming Monitor,1,389.99,06/23/19 21:10,"578 11th St, Seattle, WA 98101" +207209,Bose SoundSport Headphones,1,99.99,06/21/19 07:53,"131 4th St, Seattle, WA 98101" +207210,Google Phone,1,600,06/09/19 09:02,"745 Walnut St, San Francisco, CA 94016" +207211,AAA Batteries (4-pack),1,2.99,06/12/19 19:57,"124 Washington St, San Francisco, CA 94016" +207212,Lightning Charging Cable,1,14.95,06/16/19 19:10,"622 5th St, Los Angeles, CA 90001" +207212,Apple Airpods Headphones,1,150,06/16/19 19:10,"622 5th St, Los Angeles, CA 90001" +207213,Lightning Charging Cable,1,14.95,06/26/19 16:08,"705 Willow St, San Francisco, CA 94016" +207214,AA Batteries (4-pack),5,3.84,06/21/19 14:30,"756 5th St, Portland, OR 97035" +207215,27in 4K Gaming Monitor,1,389.99,06/30/19 22:07,"276 Dogwood St, Dallas, TX 75001" +207216,AAA Batteries (4-pack),1,2.99,06/28/19 17:35,"929 Cherry St, San Francisco, CA 94016" +207217,27in 4K Gaming Monitor,1,389.99,06/29/19 00:10,"810 2nd St, New York City, NY 10001" +207218,iPhone,1,700,06/01/19 16:28,"436 Jefferson St, New York City, NY 10001" +207218,Wired Headphones,1,11.99,06/01/19 16:28,"436 Jefferson St, New York City, NY 10001" +207219,USB-C Charging Cable,1,11.95,06/01/19 19:36,"875 Cherry St, San Francisco, CA 94016" +207220,Bose SoundSport Headphones,1,99.99,06/06/19 11:03,"702 12th St, Portland, OR 97035" +207221,AA Batteries (4-pack),1,3.84,06/13/19 10:59,"630 14th St, Los Angeles, CA 90001" +207222,Flatscreen TV,1,300,06/20/19 22:54,"180 River St, New York City, NY 10001" +207223,Macbook Pro Laptop,1,1700,06/29/19 20:36,"691 8th St, San Francisco, CA 94016" +207224,USB-C Charging Cable,1,11.95,06/21/19 23:21,"119 Adams St, New York City, NY 10001" +207225,AAA Batteries (4-pack),1,2.99,06/10/19 15:13,"360 Chestnut St, Boston, MA 02215" +207225,Lightning Charging Cable,1,14.95,06/10/19 15:13,"360 Chestnut St, Boston, MA 02215" +207226,Lightning Charging Cable,1,14.95,06/16/19 11:58,"463 Washington St, Austin, TX 73301" +207227,USB-C Charging Cable,1,11.95,06/08/19 22:15,"282 Ridge St, New York City, NY 10001" +207228,USB-C Charging Cable,1,11.95,06/30/19 19:16,"233 Maple St, Seattle, WA 98101" +207229,Apple Airpods Headphones,1,150,06/24/19 16:07,"937 14th St, Dallas, TX 75001" +207230,AA Batteries (4-pack),2,3.84,06/19/19 14:55,"531 7th St, Los Angeles, CA 90001" +207231,Lightning Charging Cable,1,14.95,06/23/19 16:45,"959 14th St, Dallas, TX 75001" +207232,Lightning Charging Cable,1,14.95,06/01/19 09:53,"333 Meadow St, New York City, NY 10001" +207233,Apple Airpods Headphones,1,150,06/03/19 19:16,"315 Highland St, San Francisco, CA 94016" +207234,Lightning Charging Cable,1,14.95,06/14/19 13:21,"594 6th St, New York City, NY 10001" +207235,Lightning Charging Cable,1,14.95,06/28/19 15:52,"1 Park St, Atlanta, GA 30301" +207236,Bose SoundSport Headphones,1,99.99,06/28/19 12:01,"630 5th St, Portland, OR 97035" +207237,Bose SoundSport Headphones,1,99.99,06/16/19 10:40,"917 14th St, San Francisco, CA 94016" +207238,Lightning Charging Cable,1,14.95,06/01/19 10:13,"959 Meadow St, New York City, NY 10001" +207239,AAA Batteries (4-pack),1,2.99,06/03/19 13:11,"480 Pine St, Los Angeles, CA 90001" +207240,27in 4K Gaming Monitor,1,389.99,06/02/19 14:02,"49 Sunset St, Portland, OR 97035" +207241,34in Ultrawide Monitor,1,379.99,06/21/19 04:11,"501 Highland St, San Francisco, CA 94016" +207242,AA Batteries (4-pack),1,3.84,06/28/19 18:51,"853 2nd St, San Francisco, CA 94016" +207242,Wired Headphones,1,11.99,06/28/19 18:51,"853 2nd St, San Francisco, CA 94016" +207243,27in 4K Gaming Monitor,1,389.99,06/22/19 09:36,"184 14th St, Boston, MA 02215" +207244,Macbook Pro Laptop,1,1700,06/29/19 16:45,"779 13th St, San Francisco, CA 94016" +207245,AAA Batteries (4-pack),2,2.99,06/21/19 12:52,"305 7th St, San Francisco, CA 94016" +207246,AAA Batteries (4-pack),1,2.99,06/12/19 16:17,"499 South St, Austin, TX 73301" +207247,AAA Batteries (4-pack),2,2.99,06/17/19 10:55,"739 South St, Los Angeles, CA 90001" +207248,AAA Batteries (4-pack),2,2.99,06/26/19 12:58,"649 Lake St, Austin, TX 73301" +207249,27in FHD Monitor,1,149.99,06/17/19 13:15,"413 9th St, San Francisco, CA 94016" +207250,AAA Batteries (4-pack),1,2.99,06/15/19 09:34,"125 Park St, Los Angeles, CA 90001" +207251,Wired Headphones,1,11.99,06/12/19 22:10,"103 Elm St, Atlanta, GA 30301" +207252,AA Batteries (4-pack),1,3.84,06/19/19 16:50,"460 Center St, New York City, NY 10001" +207253,Wired Headphones,1,11.99,06/23/19 09:45,"664 Walnut St, New York City, NY 10001" +207254,AA Batteries (4-pack),1,3.84,06/15/19 17:44,"272 Johnson St, Boston, MA 02215" +207255,Lightning Charging Cable,1,14.95,06/01/19 13:36,"727 Center St, Seattle, WA 98101" +207256,20in Monitor,1,109.99,06/18/19 11:14,"148 Meadow St, San Francisco, CA 94016" +207257,Apple Airpods Headphones,1,150,06/22/19 23:07,"87 Madison St, Portland, OR 97035" +207258,Vareebadd Phone,1,400,06/14/19 12:46,"425 8th St, San Francisco, CA 94016" +207259,Lightning Charging Cable,1,14.95,06/30/19 08:42,"725 Meadow St, Boston, MA 02215" +207260,AA Batteries (4-pack),1,3.84,06/07/19 18:24,"809 West St, San Francisco, CA 94016" +207261,Wired Headphones,1,11.99,06/09/19 09:32,"951 Madison St, Seattle, WA 98101" +207261,AA Batteries (4-pack),1,3.84,06/09/19 09:32,"951 Madison St, Seattle, WA 98101" +207262,20in Monitor,1,109.99,06/10/19 15:11,"243 Johnson St, Seattle, WA 98101" +207263,USB-C Charging Cable,1,11.95,06/19/19 11:06,"236 Lakeview St, New York City, NY 10001" +207263,Bose SoundSport Headphones,1,99.99,06/19/19 11:06,"236 Lakeview St, New York City, NY 10001" +207264,AAA Batteries (4-pack),1,2.99,06/14/19 19:05,"542 Pine St, San Francisco, CA 94016" +207265,AAA Batteries (4-pack),1,2.99,06/02/19 01:18,"926 Jackson St, Seattle, WA 98101" +207266,AAA Batteries (4-pack),1,2.99,06/20/19 11:45,"239 9th St, Atlanta, GA 30301" +207267,Wired Headphones,1,11.99,06/17/19 22:23,"944 13th St, San Francisco, CA 94016" +207268,Wired Headphones,1,11.99,06/16/19 13:56,"349 West St, Los Angeles, CA 90001" +207269,Flatscreen TV,1,300,06/02/19 10:49,"964 13th St, Los Angeles, CA 90001" +207270,Lightning Charging Cable,1,14.95,06/22/19 17:06,"394 Jefferson St, San Francisco, CA 94016" +207271,AA Batteries (4-pack),1,3.84,06/13/19 10:10,"265 Jackson St, Los Angeles, CA 90001" +207272,AAA Batteries (4-pack),1,2.99,06/29/19 15:22,"806 1st St, San Francisco, CA 94016" +207273,Apple Airpods Headphones,1,150,06/07/19 21:00,"545 Sunset St, Los Angeles, CA 90001" +207274,Lightning Charging Cable,1,14.95,06/21/19 12:53,"260 Cedar St, Los Angeles, CA 90001" +207275,Bose SoundSport Headphones,1,99.99,06/08/19 04:26,"808 Ridge St, Atlanta, GA 30301" +207276,27in 4K Gaming Monitor,1,389.99,06/10/19 09:06,"939 10th St, Austin, TX 73301" +207277,Lightning Charging Cable,1,14.95,06/23/19 16:08,"479 Willow St, Los Angeles, CA 90001" +207278,USB-C Charging Cable,1,11.95,06/22/19 21:52,"571 Madison St, Seattle, WA 98101" +207279,AA Batteries (4-pack),1,3.84,06/05/19 13:40,"374 North St, Boston, MA 02215" +207280,Wired Headphones,1,11.99,06/05/19 20:24,"894 River St, New York City, NY 10001" +207281,Lightning Charging Cable,1,14.95,06/06/19 20:04,"877 Adams St, Atlanta, GA 30301" +207282,AA Batteries (4-pack),3,3.84,06/12/19 16:42,"93 Hill St, Seattle, WA 98101" +207283,27in 4K Gaming Monitor,1,389.99,06/09/19 16:10,"226 Johnson St, Dallas, TX 75001" +207284,Wired Headphones,1,11.99,06/27/19 18:50,"300 Washington St, San Francisco, CA 94016" +207285,Apple Airpods Headphones,1,150,06/01/19 14:48,"183 Hickory St, New York City, NY 10001" +207286,34in Ultrawide Monitor,1,379.99,06/13/19 13:30,"633 Hill St, Los Angeles, CA 90001" +207287,USB-C Charging Cable,2,11.95,06/02/19 03:23,"149 12th St, Portland, OR 97035" +207287,Bose SoundSport Headphones,1,99.99,06/02/19 03:23,"149 12th St, Portland, OR 97035" +207288,Apple Airpods Headphones,1,150,06/19/19 16:28,"307 Park St, Los Angeles, CA 90001" +207289,20in Monitor,1,109.99,06/09/19 09:37,"622 Willow St, Boston, MA 02215" +207290,Flatscreen TV,1,300,06/11/19 18:42,"268 14th St, Seattle, WA 98101" +207291,AA Batteries (4-pack),4,3.84,06/18/19 08:30,"808 North St, Los Angeles, CA 90001" +207292,AA Batteries (4-pack),2,3.84,06/12/19 17:48,"126 River St, Portland, OR 97035" +207293,iPhone,1,700,06/10/19 21:29,"93 Washington St, New York City, NY 10001" +207294,Lightning Charging Cable,2,14.95,06/17/19 11:50,"380 Lake St, Dallas, TX 75001" +207295,iPhone,1,700,06/30/19 16:39,"960 Hill St, Austin, TX 73301" +207295,Lightning Charging Cable,1,14.95,06/30/19 16:39,"960 Hill St, Austin, TX 73301" +207296,Google Phone,1,600,06/13/19 18:43,"793 Park St, San Francisco, CA 94016" +207297,AAA Batteries (4-pack),2,2.99,06/23/19 08:37,"294 Hickory St, Los Angeles, CA 90001" +207298,Wired Headphones,1,11.99,06/01/19 21:22,"690 12th St, San Francisco, CA 94016" +207299,USB-C Charging Cable,2,11.95,06/29/19 10:40,"349 Park St, Los Angeles, CA 90001" +207300,Flatscreen TV,1,300,06/09/19 20:24,"190 6th St, Dallas, TX 75001" +207301,Macbook Pro Laptop,1,1700,06/25/19 03:40,"591 12th St, New York City, NY 10001" +207302,AA Batteries (4-pack),2,3.84,06/22/19 15:29,"570 Ridge St, Atlanta, GA 30301" +207303,ThinkPad Laptop,1,999.99,06/06/19 10:13,"935 Highland St, Austin, TX 73301" +207304,AAA Batteries (4-pack),1,2.99,06/06/19 12:30,"333 Adams St, Boston, MA 02215" +207305,Bose SoundSport Headphones,1,99.99,06/09/19 17:05,"304 Cedar St, San Francisco, CA 94016" +207306,Google Phone,1,600,06/09/19 21:59,"621 Highland St, Boston, MA 02215" +207307,AAA Batteries (4-pack),1,2.99,06/12/19 06:53,"7 Cherry St, Boston, MA 02215" +207308,Apple Airpods Headphones,1,150,06/25/19 15:19,"896 Wilson St, Atlanta, GA 30301" +207309,USB-C Charging Cable,1,11.95,06/16/19 23:35,"611 Dogwood St, San Francisco, CA 94016" +207310,AAA Batteries (4-pack),3,2.99,06/05/19 08:47,"624 Center St, New York City, NY 10001" +207311,USB-C Charging Cable,1,11.95,06/30/19 20:04,"50 Pine St, San Francisco, CA 94016" +207312,USB-C Charging Cable,1,11.95,06/23/19 10:15,"11 9th St, Portland, OR 97035" +207313,AA Batteries (4-pack),1,3.84,06/15/19 12:41,"120 North St, Dallas, TX 75001" +207314,AA Batteries (4-pack),1,3.84,06/06/19 14:47,"811 8th St, San Francisco, CA 94016" +207315,Macbook Pro Laptop,1,1700,06/01/19 14:08,"259 13th St, New York City, NY 10001" +207316,20in Monitor,1,109.99,06/05/19 13:12,"679 5th St, Los Angeles, CA 90001" +207317,AA Batteries (4-pack),1,3.84,06/12/19 23:06,"783 Maple St, Portland, OR 97035" +207317,AAA Batteries (4-pack),1,2.99,06/12/19 23:06,"783 Maple St, Portland, OR 97035" +207318,Macbook Pro Laptop,1,1700,06/01/19 11:24,"697 Highland St, San Francisco, CA 94016" +207319,Vareebadd Phone,1,400,06/24/19 20:24,"599 Cedar St, San Francisco, CA 94016" +207319,Wired Headphones,1,11.99,06/24/19 20:24,"599 Cedar St, San Francisco, CA 94016" +207320,27in 4K Gaming Monitor,1,389.99,06/29/19 19:03,"447 Jefferson St, Los Angeles, CA 90001" +207321,Lightning Charging Cable,1,14.95,06/05/19 18:25,"699 6th St, San Francisco, CA 94016" +207322,Lightning Charging Cable,1,14.95,06/20/19 23:02,"210 Hickory St, Portland, ME 04101" +207323,AAA Batteries (4-pack),1,2.99,06/20/19 20:20,"216 11th St, Atlanta, GA 30301" +207324,Apple Airpods Headphones,1,150,06/29/19 17:54,"838 Highland St, Atlanta, GA 30301" +207325,34in Ultrawide Monitor,1,379.99,06/02/19 20:10,"914 Walnut St, San Francisco, CA 94016" +207326,Bose SoundSport Headphones,1,99.99,06/15/19 19:13,"282 Jackson St, San Francisco, CA 94016" +207327,USB-C Charging Cable,1,11.95,06/23/19 11:55,"684 8th St, Austin, TX 73301" +207328,AA Batteries (4-pack),1,3.84,06/10/19 02:34,"234 Sunset St, San Francisco, CA 94016" +207329,Google Phone,1,600,06/10/19 19:30,"492 Lake St, Los Angeles, CA 90001" +207330,27in FHD Monitor,1,149.99,06/29/19 09:27,"442 Highland St, San Francisco, CA 94016" +207331,Wired Headphones,1,11.99,06/25/19 19:29,"244 Elm St, Los Angeles, CA 90001" +207332,AAA Batteries (4-pack),1,2.99,06/01/19 09:23,"31 7th St, Dallas, TX 75001" +207333,iPhone,1,700,06/15/19 09:54,"183 River St, Los Angeles, CA 90001" +207334,20in Monitor,1,109.99,06/25/19 15:16,"606 Hill St, San Francisco, CA 94016" +207335,Lightning Charging Cable,1,14.95,06/16/19 14:43,"327 Chestnut St, Dallas, TX 75001" +207336,Flatscreen TV,1,300,06/07/19 15:08,"107 Main St, Boston, MA 02215" +207337,ThinkPad Laptop,1,999.99,06/20/19 20:43,"572 Hickory St, San Francisco, CA 94016" +207338,AAA Batteries (4-pack),2,2.99,06/11/19 08:30,"802 Forest St, Atlanta, GA 30301" +207339,34in Ultrawide Monitor,1,379.99,06/26/19 10:58,"619 Cedar St, Seattle, WA 98101" +207340,AAA Batteries (4-pack),1,2.99,06/19/19 21:55,"571 13th St, San Francisco, CA 94016" +207341,Bose SoundSport Headphones,1,99.99,06/23/19 14:52,"883 13th St, San Francisco, CA 94016" +207342,Lightning Charging Cable,1,14.95,06/27/19 20:56,"81 13th St, San Francisco, CA 94016" +207343,27in FHD Monitor,1,149.99,06/12/19 15:11,"385 Willow St, Seattle, WA 98101" +207344,Wired Headphones,1,11.99,06/28/19 15:48,"342 Lakeview St, Seattle, WA 98101" +207345,Wired Headphones,1,11.99,06/24/19 08:40,"516 4th St, Los Angeles, CA 90001" +207346,Bose SoundSport Headphones,1,99.99,06/13/19 12:08,"442 Washington St, Dallas, TX 75001" +207347,27in 4K Gaming Monitor,1,389.99,06/02/19 15:21,"275 Forest St, Boston, MA 02215" +207348,AA Batteries (4-pack),1,3.84,06/18/19 07:26,"467 Meadow St, New York City, NY 10001" +207349,USB-C Charging Cable,1,11.95,06/22/19 06:25,"639 West St, Austin, TX 73301" +207350,USB-C Charging Cable,1,11.95,06/08/19 14:40,"218 Lincoln St, New York City, NY 10001" +207351,Lightning Charging Cable,1,14.95,06/04/19 09:28,"237 River St, Dallas, TX 75001" +207352,Vareebadd Phone,1,400,06/01/19 23:08,"571 14th St, Atlanta, GA 30301" +207352,Wired Headphones,1,11.99,06/01/19 23:08,"571 14th St, Atlanta, GA 30301" +207353,Bose SoundSport Headphones,1,99.99,06/22/19 13:50,"798 Ridge St, San Francisco, CA 94016" +207354,AAA Batteries (4-pack),1,2.99,06/19/19 08:57,"556 Maple St, Boston, MA 02215" +207355,Wired Headphones,1,11.99,06/14/19 18:02,"680 Park St, Los Angeles, CA 90001" +207356,Vareebadd Phone,1,400,06/15/19 23:20,"381 Church St, Los Angeles, CA 90001" +207357,Lightning Charging Cable,1,14.95,06/30/19 10:02,"290 Ridge St, Boston, MA 02215" +207358,34in Ultrawide Monitor,1,379.99,06/06/19 16:15,"961 Main St, Seattle, WA 98101" +207359,Apple Airpods Headphones,1,150,06/11/19 13:20,"201 Meadow St, New York City, NY 10001" +207360,Lightning Charging Cable,1,14.95,06/17/19 23:19,"339 13th St, San Francisco, CA 94016" +207361,Apple Airpods Headphones,1,150,06/20/19 15:34,"577 1st St, Los Angeles, CA 90001" +207362,Google Phone,1,600,06/09/19 14:19,"140 Willow St, San Francisco, CA 94016" +207363,27in FHD Monitor,1,149.99,06/29/19 20:19,"766 Adams St, Atlanta, GA 30301" +207364,27in FHD Monitor,1,149.99,06/12/19 13:01,"863 Pine St, New York City, NY 10001" +207365,Apple Airpods Headphones,1,150,06/24/19 19:14,"871 River St, Los Angeles, CA 90001" +207366,Bose SoundSport Headphones,1,99.99,06/16/19 01:28,"846 Dogwood St, Boston, MA 02215" +207366,Lightning Charging Cable,1,14.95,06/16/19 01:28,"846 Dogwood St, Boston, MA 02215" +207367,Macbook Pro Laptop,1,1700,06/15/19 18:35,"2 Jefferson St, Seattle, WA 98101" +207368,Wired Headphones,1,11.99,06/11/19 18:30,"190 Hill St, San Francisco, CA 94016" +207369,USB-C Charging Cable,1,11.95,06/28/19 21:06,"725 Forest St, New York City, NY 10001" +207370,Apple Airpods Headphones,1,150,06/03/19 17:18,"326 Highland St, New York City, NY 10001" +207371,Lightning Charging Cable,1,14.95,06/05/19 08:21,"963 5th St, Dallas, TX 75001" +207372,Google Phone,1,600,06/23/19 12:54,"783 8th St, Atlanta, GA 30301" +207373,USB-C Charging Cable,2,11.95,06/24/19 05:30,"716 Dogwood St, Austin, TX 73301" +207374,Apple Airpods Headphones,1,150,06/07/19 14:15,"943 Madison St, Los Angeles, CA 90001" +207375,20in Monitor,1,109.99,06/29/19 10:03,"785 Ridge St, Seattle, WA 98101" +207376,Flatscreen TV,1,300,06/30/19 13:47,"562 5th St, Los Angeles, CA 90001" +207377,Apple Airpods Headphones,1,150,06/20/19 11:54,"959 Adams St, Los Angeles, CA 90001" +207378,Lightning Charging Cable,1,14.95,06/03/19 10:05,"436 Wilson St, Los Angeles, CA 90001" +207379,Apple Airpods Headphones,1,150,06/25/19 16:00,"392 8th St, San Francisco, CA 94016" +207379,iPhone,1,700,06/25/19 16:00,"392 8th St, San Francisco, CA 94016" +207380,Apple Airpods Headphones,1,150,06/09/19 22:50,"676 14th St, Los Angeles, CA 90001" +207381,USB-C Charging Cable,2,11.95,06/05/19 12:05,"386 Jackson St, Boston, MA 02215" +207382,AAA Batteries (4-pack),3,2.99,06/04/19 12:29,"587 Washington St, Los Angeles, CA 90001" +207383,Bose SoundSport Headphones,1,99.99,06/03/19 11:37,"961 Highland St, San Francisco, CA 94016" +207384,iPhone,1,700,06/09/19 14:57,"112 Park St, Boston, MA 02215" +207385,AAA Batteries (4-pack),1,2.99,06/27/19 08:30,"437 Hill St, San Francisco, CA 94016" +207386,Macbook Pro Laptop,1,1700,06/11/19 20:12,"217 Meadow St, San Francisco, CA 94016" +207387,20in Monitor,1,109.99,06/16/19 15:35,"3 Ridge St, Boston, MA 02215" +207388,Flatscreen TV,2,300,06/09/19 12:40,"746 Maple St, New York City, NY 10001" +207389,Lightning Charging Cable,1,14.95,06/24/19 09:45,"235 6th St, Dallas, TX 75001" +207390,iPhone,1,700,06/29/19 14:55,"67 River St, San Francisco, CA 94016" +207391,Bose SoundSport Headphones,1,99.99,06/12/19 13:59,"177 6th St, Dallas, TX 75001" +207392,Google Phone,1,600,06/24/19 23:15,"188 Willow St, Los Angeles, CA 90001" +207393,iPhone,1,700,06/23/19 06:33,"376 West St, San Francisco, CA 94016" +207394,iPhone,1,700,06/16/19 15:22,"525 Park St, Seattle, WA 98101" +207394,Wired Headphones,1,11.99,06/16/19 15:22,"525 Park St, Seattle, WA 98101" +207395,27in 4K Gaming Monitor,1,389.99,06/19/19 11:22,"774 Wilson St, San Francisco, CA 94016" +207396,AA Batteries (4-pack),1,3.84,06/23/19 16:16,"644 Jackson St, Austin, TX 73301" +207397,Lightning Charging Cable,1,14.95,06/07/19 14:18,"253 Sunset St, San Francisco, CA 94016" +207398,Lightning Charging Cable,1,14.95,06/16/19 18:20,"155 Jackson St, Austin, TX 73301" +207399,AAA Batteries (4-pack),1,2.99,06/17/19 22:14,"919 Elm St, San Francisco, CA 94016" +207400,AA Batteries (4-pack),2,3.84,06/05/19 13:54,"654 14th St, Austin, TX 73301" +207401,AAA Batteries (4-pack),2,2.99,06/05/19 20:10,"188 1st St, San Francisco, CA 94016" +207402,AAA Batteries (4-pack),1,2.99,06/19/19 18:52,"918 5th St, New York City, NY 10001" +207403,Apple Airpods Headphones,1,150,06/21/19 13:03,"632 Elm St, Atlanta, GA 30301" +207404,27in FHD Monitor,1,149.99,06/15/19 20:59,"104 8th St, Boston, MA 02215" +207405,27in FHD Monitor,1,149.99,06/20/19 11:14,"636 5th St, Los Angeles, CA 90001" +207406,Wired Headphones,1,11.99,06/05/19 22:02,"899 13th St, New York City, NY 10001" +207407,AAA Batteries (4-pack),1,2.99,06/06/19 09:54,"952 5th St, Portland, OR 97035" +207408,AAA Batteries (4-pack),1,2.99,06/02/19 22:27,"74 13th St, New York City, NY 10001" +207409,Google Phone,1,600,06/27/19 11:18,"706 Walnut St, Boston, MA 02215" +207409,Wired Headphones,1,11.99,06/27/19 11:18,"706 Walnut St, Boston, MA 02215" +207410,Apple Airpods Headphones,1,150,06/01/19 11:13,"888 7th St, Atlanta, GA 30301" +207411,ThinkPad Laptop,1,999.99,06/22/19 09:49,"182 Adams St, New York City, NY 10001" +207412,USB-C Charging Cable,2,11.95,06/09/19 20:56,"971 Pine St, Los Angeles, CA 90001" +207413,USB-C Charging Cable,1,11.95,06/04/19 18:25,"715 Hill St, San Francisco, CA 94016" +207414,Wired Headphones,1,11.99,06/07/19 22:57,"338 Park St, Austin, TX 73301" +207415,Wired Headphones,1,11.99,06/24/19 02:00,"101 North St, Dallas, TX 75001" +207416,AAA Batteries (4-pack),1,2.99,06/19/19 23:29,"127 Jefferson St, San Francisco, CA 94016" +207417,Wired Headphones,1,11.99,06/01/19 15:42,"680 Willow St, San Francisco, CA 94016" +207417,34in Ultrawide Monitor,1,379.99,06/01/19 15:42,"680 Willow St, San Francisco, CA 94016" +207418,Apple Airpods Headphones,1,150,06/24/19 17:25,"910 10th St, New York City, NY 10001" +207419,Google Phone,1,600,06/17/19 10:49,"998 Hickory St, Boston, MA 02215" +207420,Macbook Pro Laptop,1,1700,06/07/19 17:10,"732 12th St, Boston, MA 02215" +207421,34in Ultrawide Monitor,1,379.99,06/30/19 15:56,"584 Walnut St, Boston, MA 02215" +207422,USB-C Charging Cable,1,11.95,06/07/19 17:55,"7 Willow St, Los Angeles, CA 90001" +207423,34in Ultrawide Monitor,1,379.99,06/11/19 11:00,"663 Willow St, San Francisco, CA 94016" +207423,Wired Headphones,1,11.99,06/11/19 11:00,"663 Willow St, San Francisco, CA 94016" +207424,Lightning Charging Cable,1,14.95,06/05/19 18:36,"259 South St, New York City, NY 10001" +207425,AAA Batteries (4-pack),1,2.99,06/10/19 21:17,"937 11th St, Portland, OR 97035" +,,,,, +207426,LG Washing Machine,1,600.0,06/06/19 17:05,"66 14th St, Boston, MA 02215" +207427,Google Phone,1,600,06/01/19 13:54,"459 Meadow St, Boston, MA 02215" +207428,Apple Airpods Headphones,1,150,06/06/19 19:58,"274 12th St, New York City, NY 10001" +207429,AA Batteries (4-pack),1,3.84,06/09/19 02:36,"514 Spruce St, Seattle, WA 98101" +207430,27in 4K Gaming Monitor,1,389.99,06/26/19 16:58,"334 Chestnut St, Seattle, WA 98101" +207431,AAA Batteries (4-pack),2,2.99,06/10/19 13:25,"276 9th St, Seattle, WA 98101" +207432,Apple Airpods Headphones,1,150,06/14/19 16:48,"940 Sunset St, Seattle, WA 98101" +207433,Google Phone,1,600,06/02/19 11:21,"820 Johnson St, Atlanta, GA 30301" +207434,AAA Batteries (4-pack),1,2.99,06/15/19 13:27,"449 Cedar St, Dallas, TX 75001" +207435,Lightning Charging Cable,1,14.95,06/07/19 16:16,"130 5th St, Atlanta, GA 30301" +207436,USB-C Charging Cable,1,11.95,06/18/19 14:03,"656 Adams St, New York City, NY 10001" +207437,Apple Airpods Headphones,1,150,06/16/19 13:22,"440 Main St, New York City, NY 10001" +207438,AA Batteries (4-pack),1,3.84,06/19/19 00:30,"650 Ridge St, San Francisco, CA 94016" +207439,Wired Headphones,1,11.99,06/25/19 08:34,"43 Center St, Boston, MA 02215" +207440,27in FHD Monitor,1,149.99,06/11/19 04:42,"904 Hickory St, Seattle, WA 98101" +207441,Vareebadd Phone,1,400,06/05/19 19:15,"837 Jackson St, San Francisco, CA 94016" +207442,iPhone,1,700,06/14/19 21:14,"364 Ridge St, San Francisco, CA 94016" +207442,Apple Airpods Headphones,1,150,06/14/19 21:14,"364 Ridge St, San Francisco, CA 94016" +207443,AAA Batteries (4-pack),1,2.99,06/28/19 19:32,"5 Adams St, San Francisco, CA 94016" +207444,Macbook Pro Laptop,1,1700,06/26/19 15:41,"390 Jackson St, San Francisco, CA 94016" +207445,ThinkPad Laptop,1,999.99,06/08/19 16:11,"907 Cedar St, New York City, NY 10001" +207446,Macbook Pro Laptop,1,1700,06/14/19 22:23,"824 Madison St, Dallas, TX 75001" +207447,USB-C Charging Cable,1,11.95,06/12/19 23:29,"358 2nd St, Seattle, WA 98101" +207448,USB-C Charging Cable,1,11.95,06/11/19 22:02,"303 Chestnut St, Austin, TX 73301" +207449,Lightning Charging Cable,1,14.95,06/09/19 21:03,"641 Cedar St, New York City, NY 10001" +207450,Apple Airpods Headphones,1,150,06/16/19 19:23,"789 11th St, New York City, NY 10001" +207451,Lightning Charging Cable,1,14.95,06/18/19 12:01,"827 Forest St, San Francisco, CA 94016" +207452,Lightning Charging Cable,1,14.95,06/12/19 14:19,"521 Spruce St, Austin, TX 73301" +207453,34in Ultrawide Monitor,1,379.99,06/25/19 12:54,"649 West St, Dallas, TX 75001" +207454,Bose SoundSport Headphones,1,99.99,06/16/19 19:09,"28 14th St, Portland, OR 97035" +207455,Wired Headphones,2,11.99,06/19/19 08:29,"219 Ridge St, Portland, ME 04101" +207456,USB-C Charging Cable,1,11.95,06/09/19 13:49,"25 Johnson St, Seattle, WA 98101" +207457,Wired Headphones,1,11.99,06/06/19 16:50,"7 Jefferson St, New York City, NY 10001" +207458,Apple Airpods Headphones,1,150,06/27/19 22:49,"941 11th St, Los Angeles, CA 90001" +207459,Lightning Charging Cable,1,14.95,06/21/19 05:41,"285 Madison St, Atlanta, GA 30301" +207460,Apple Airpods Headphones,1,150,06/30/19 17:31,"289 Lake St, San Francisco, CA 94016" +207461,Lightning Charging Cable,1,14.95,06/19/19 10:45,"129 7th St, Austin, TX 73301" +207462,AA Batteries (4-pack),2,3.84,06/17/19 17:29,"191 12th St, Los Angeles, CA 90001" +207463,AAA Batteries (4-pack),2,2.99,06/04/19 12:51,"101 Walnut St, Los Angeles, CA 90001" +207464,USB-C Charging Cable,1,11.95,06/21/19 17:48,"842 14th St, San Francisco, CA 94016" +207465,Lightning Charging Cable,1,14.95,06/13/19 15:01,"826 Willow St, Los Angeles, CA 90001" +207466,27in 4K Gaming Monitor,1,389.99,06/15/19 09:07,"950 Jackson St, New York City, NY 10001" +207467,AA Batteries (4-pack),4,3.84,06/05/19 14:37,"251 Dogwood St, San Francisco, CA 94016" +207468,AA Batteries (4-pack),3,3.84,06/27/19 00:26,"261 Spruce St, Dallas, TX 75001" +207469,Lightning Charging Cable,1,14.95,06/29/19 18:02,"577 Walnut St, Atlanta, GA 30301" +207470,Lightning Charging Cable,1,14.95,06/11/19 15:39,"379 Jackson St, Los Angeles, CA 90001" +207471,AAA Batteries (4-pack),1,2.99,06/18/19 18:33,"865 Lakeview St, New York City, NY 10001" +207472,34in Ultrawide Monitor,1,379.99,06/29/19 18:56,"572 Madison St, San Francisco, CA 94016" +207473,AA Batteries (4-pack),2,3.84,06/25/19 17:13,"909 North St, San Francisco, CA 94016" +207474,Bose SoundSport Headphones,1,99.99,06/07/19 19:59,"492 8th St, Atlanta, GA 30301" +207475,AAA Batteries (4-pack),3,2.99,06/29/19 11:33,"920 5th St, Seattle, WA 98101" +207476,Wired Headphones,1,11.99,06/01/19 13:20,"6 Hickory St, San Francisco, CA 94016" +207477,USB-C Charging Cable,1,11.95,06/23/19 14:52,"715 Johnson St, Boston, MA 02215" +207478,AA Batteries (4-pack),1,3.84,06/02/19 22:16,"494 South St, San Francisco, CA 94016" +207479,Vareebadd Phone,1,400,06/01/19 23:19,"720 Center St, Atlanta, GA 30301" +207480,USB-C Charging Cable,1,11.95,06/28/19 17:26,"325 Chestnut St, Seattle, WA 98101" +207481,AAA Batteries (4-pack),1,2.99,06/30/19 18:26,"467 9th St, New York City, NY 10001" +207482,Lightning Charging Cable,1,14.95,06/04/19 17:02,"532 Ridge St, San Francisco, CA 94016" +207483,USB-C Charging Cable,1,11.95,06/06/19 19:17,"875 Main St, Seattle, WA 98101" +207484,Apple Airpods Headphones,1,150,06/29/19 09:16,"795 South St, New York City, NY 10001" +207485,27in FHD Monitor,1,149.99,06/25/19 19:45,"149 Highland St, San Francisco, CA 94016" +207486,27in 4K Gaming Monitor,1,389.99,06/08/19 16:34,"829 Lake St, Boston, MA 02215" +207487,AA Batteries (4-pack),1,3.84,06/08/19 13:17,"478 Walnut St, New York City, NY 10001" +207488,AAA Batteries (4-pack),1,2.99,06/08/19 20:15,"414 Main St, New York City, NY 10001" +207489,Lightning Charging Cable,1,14.95,06/12/19 21:12,"635 Johnson St, New York City, NY 10001" +207490,Lightning Charging Cable,1,14.95,06/24/19 17:16,"595 Meadow St, Atlanta, GA 30301" +207491,AA Batteries (4-pack),1,3.84,06/01/19 19:42,"615 4th St, Portland, OR 97035" +207492,AAA Batteries (4-pack),2,2.99,06/09/19 18:17,"512 Hill St, San Francisco, CA 94016" +207493,Lightning Charging Cable,1,14.95,06/29/19 14:00,"59 Washington St, New York City, NY 10001" +207494,27in FHD Monitor,1,149.99,06/08/19 22:10,"717 10th St, Los Angeles, CA 90001" +207495,USB-C Charging Cable,1,11.95,06/28/19 16:48,"899 8th St, Seattle, WA 98101" +207496,Apple Airpods Headphones,1,150,06/25/19 22:04,"890 10th St, Boston, MA 02215" +207497,Apple Airpods Headphones,1,150,06/27/19 14:42,"124 14th St, Dallas, TX 75001" +207498,Apple Airpods Headphones,1,150,06/27/19 11:45,"12 Hickory St, New York City, NY 10001" +207499,27in FHD Monitor,1,149.99,06/29/19 09:46,"213 1st St, San Francisco, CA 94016" +207500,AAA Batteries (4-pack),1,2.99,06/11/19 19:43,"399 4th St, Boston, MA 02215" +207501,Lightning Charging Cable,1,14.95,06/03/19 19:04,"181 Maple St, Los Angeles, CA 90001" +207502,iPhone,1,700,06/23/19 19:11,"172 Hill St, Seattle, WA 98101" +207502,Lightning Charging Cable,1,14.95,06/23/19 19:11,"172 Hill St, Seattle, WA 98101" +207502,Wired Headphones,1,11.99,06/23/19 19:11,"172 Hill St, Seattle, WA 98101" +207503,Google Phone,1,600,06/30/19 21:49,"251 Jefferson St, San Francisco, CA 94016" +207504,iPhone,1,700,06/30/19 16:14,"45 Lake St, Atlanta, GA 30301" +207505,Bose SoundSport Headphones,1,99.99,06/16/19 19:27,"312 Meadow St, Portland, OR 97035" +207506,USB-C Charging Cable,1,11.95,06/13/19 07:12,"591 12th St, Austin, TX 73301" +207507,AA Batteries (4-pack),1,3.84,06/26/19 10:58,"721 Lincoln St, Seattle, WA 98101" +207508,AA Batteries (4-pack),1,3.84,06/27/19 08:19,"317 Park St, San Francisco, CA 94016" +207509,34in Ultrawide Monitor,1,379.99,06/12/19 12:47,"179 West St, New York City, NY 10001" +207510,USB-C Charging Cable,1,11.95,06/20/19 01:12,"295 10th St, San Francisco, CA 94016" +207511,Lightning Charging Cable,1,14.95,06/18/19 11:14,"716 Chestnut St, Dallas, TX 75001" +207512,AA Batteries (4-pack),1,3.84,06/08/19 19:24,"328 12th St, Portland, OR 97035" +207513,AA Batteries (4-pack),1,3.84,06/19/19 00:10,"205 7th St, Seattle, WA 98101" +207514,iPhone,1,700,06/09/19 14:52,"163 Hickory St, Portland, OR 97035" +207515,Google Phone,1,600,06/27/19 00:15,"611 Elm St, Atlanta, GA 30301" +207516,AA Batteries (4-pack),2,3.84,06/26/19 22:53,"944 Adams St, Portland, OR 97035" +207517,Wired Headphones,1,11.99,06/11/19 13:21,"87 Maple St, Seattle, WA 98101" +207518,Lightning Charging Cable,1,14.95,06/15/19 19:35,"83 Adams St, San Francisco, CA 94016" +207519,AAA Batteries (4-pack),2,2.99,06/01/19 18:12,"16 1st St, San Francisco, CA 94016" +207520,iPhone,1,700,06/02/19 15:55,"409 Jefferson St, Dallas, TX 75001" +207521,Lightning Charging Cable,1,14.95,06/10/19 01:16,"814 Jefferson St, San Francisco, CA 94016" +207522,AA Batteries (4-pack),1,3.84,06/04/19 23:19,"492 Sunset St, Boston, MA 02215" +207523,Lightning Charging Cable,1,14.95,06/20/19 19:20,"857 North St, Boston, MA 02215" +207524,Apple Airpods Headphones,1,150,06/26/19 21:07,"342 Park St, Austin, TX 73301" +207525,Google Phone,1,600,06/26/19 19:00,"429 South St, San Francisco, CA 94016" +207526,27in FHD Monitor,1,149.99,06/16/19 16:02,"946 Washington St, New York City, NY 10001" +207527,Wired Headphones,1,11.99,06/01/19 12:02,"571 Lake St, Los Angeles, CA 90001" +207528,USB-C Charging Cable,1,11.95,06/03/19 08:49,"324 West St, Seattle, WA 98101" +207529,USB-C Charging Cable,1,11.95,06/02/19 21:26,"310 Meadow St, Portland, OR 97035" +207530,Google Phone,1,600,06/14/19 17:12,"464 14th St, San Francisco, CA 94016" +207530,USB-C Charging Cable,1,11.95,06/14/19 17:12,"464 14th St, San Francisco, CA 94016" +207531,AAA Batteries (4-pack),2,2.99,06/29/19 10:58,"459 13th St, Seattle, WA 98101" +207532,34in Ultrawide Monitor,1,379.99,06/06/19 21:18,"421 9th St, Los Angeles, CA 90001" +207533,Bose SoundSport Headphones,1,99.99,06/04/19 18:00,"457 Madison St, San Francisco, CA 94016" +207534,USB-C Charging Cable,2,11.95,06/26/19 23:15,"91 Walnut St, Los Angeles, CA 90001" +207535,USB-C Charging Cable,1,11.95,06/29/19 14:11,"823 Hickory St, Los Angeles, CA 90001" +207536,Lightning Charging Cable,1,14.95,06/29/19 19:59,"26 12th St, San Francisco, CA 94016" +207537,Lightning Charging Cable,1,14.95,06/17/19 21:16,"343 Jackson St, San Francisco, CA 94016" +207538,iPhone,1,700,06/01/19 13:10,"235 Ridge St, San Francisco, CA 94016" +207538,Wired Headphones,1,11.99,06/01/19 13:10,"235 Ridge St, San Francisco, CA 94016" +207539,Lightning Charging Cable,1,14.95,06/08/19 10:41,"454 Washington St, New York City, NY 10001" +207540,Google Phone,1,600,06/26/19 19:03,"248 4th St, Seattle, WA 98101" +207541,USB-C Charging Cable,1,11.95,06/25/19 17:32,"258 Cedar St, New York City, NY 10001" +207542,AA Batteries (4-pack),1,3.84,06/28/19 13:52,"963 Washington St, Los Angeles, CA 90001" +207543,27in 4K Gaming Monitor,1,389.99,06/15/19 18:47,"324 14th St, San Francisco, CA 94016" +207544,USB-C Charging Cable,2,11.95,06/11/19 19:01,"6 6th St, San Francisco, CA 94016" +207545,27in FHD Monitor,1,149.99,06/07/19 19:05,"890 Church St, Boston, MA 02215" +207546,iPhone,1,700,06/28/19 16:46,"556 Willow St, San Francisco, CA 94016" +207547,Lightning Charging Cable,1,14.95,06/05/19 14:48,"306 2nd St, San Francisco, CA 94016" +207548,Bose SoundSport Headphones,1,99.99,06/10/19 09:24,"730 Highland St, San Francisco, CA 94016" +207549,AAA Batteries (4-pack),1,2.99,06/08/19 00:04,"884 Cherry St, Los Angeles, CA 90001" +207550,iPhone,1,700,06/19/19 12:37,"167 Jefferson St, Seattle, WA 98101" +207551,USB-C Charging Cable,1,11.95,06/09/19 19:34,"43 Hickory St, New York City, NY 10001" +207552,Apple Airpods Headphones,1,150,06/25/19 13:22,"206 13th St, San Francisco, CA 94016" +207553,USB-C Charging Cable,1,11.95,06/03/19 14:56,"869 11th St, Seattle, WA 98101" +207554,Apple Airpods Headphones,1,150,06/15/19 00:49,"237 Cherry St, Los Angeles, CA 90001" +207554,27in FHD Monitor,1,149.99,06/15/19 00:49,"237 Cherry St, Los Angeles, CA 90001" +207555,USB-C Charging Cable,1,11.95,06/13/19 07:05,"744 Hickory St, Dallas, TX 75001" +207556,34in Ultrawide Monitor,1,379.99,06/07/19 16:33,"367 1st St, New York City, NY 10001" +207556,34in Ultrawide Monitor,1,379.99,06/07/19 16:33,"367 1st St, New York City, NY 10001" +207557,AAA Batteries (4-pack),1,2.99,06/20/19 05:29,"515 Cedar St, Los Angeles, CA 90001" +207558,34in Ultrawide Monitor,1,379.99,06/05/19 15:18,"693 6th St, Los Angeles, CA 90001" +207559,AA Batteries (4-pack),1,3.84,06/03/19 14:29,"629 12th St, San Francisco, CA 94016" +207560,USB-C Charging Cable,1,11.95,06/14/19 17:07,"975 River St, Austin, TX 73301" +207561,Wired Headphones,1,11.99,06/10/19 12:50,"760 Dogwood St, Boston, MA 02215" +207562,20in Monitor,2,109.99,06/30/19 21:40,"867 Cherry St, Seattle, WA 98101" +207563,Bose SoundSport Headphones,1,99.99,06/07/19 11:02,"736 Lincoln St, Boston, MA 02215" +207564,27in FHD Monitor,1,149.99,06/16/19 06:09,"598 Hill St, San Francisco, CA 94016" +207565,Lightning Charging Cable,1,14.95,06/08/19 21:30,"315 Walnut St, Los Angeles, CA 90001" +207566,USB-C Charging Cable,2,11.95,06/10/19 19:54,"596 Dogwood St, Atlanta, GA 30301" +207567,Apple Airpods Headphones,1,150,06/30/19 14:06,"810 North St, Atlanta, GA 30301" +207568,Bose SoundSport Headphones,1,99.99,06/01/19 21:00,"664 13th St, Los Angeles, CA 90001" +207569,Bose SoundSport Headphones,1,99.99,06/03/19 20:37,"502 South St, New York City, NY 10001" +207570,AA Batteries (4-pack),1,3.84,06/06/19 17:38,"211 Hill St, San Francisco, CA 94016" +207571,AA Batteries (4-pack),1,3.84,06/29/19 09:43,"150 Johnson St, Los Angeles, CA 90001" +207572,Flatscreen TV,1,300,06/22/19 20:06,"208 North St, Portland, ME 04101" +207573,AA Batteries (4-pack),1,3.84,06/24/19 22:53,"382 Hickory St, Los Angeles, CA 90001" +207574,Flatscreen TV,1,300,06/14/19 12:57,"333 6th St, Portland, OR 97035" +207575,Lightning Charging Cable,1,14.95,06/22/19 17:34,"452 Dogwood St, San Francisco, CA 94016" +207576,27in 4K Gaming Monitor,1,389.99,06/08/19 09:29,"69 Elm St, Dallas, TX 75001" +207577,USB-C Charging Cable,1,11.95,06/23/19 12:41,"439 10th St, Los Angeles, CA 90001" +207578,USB-C Charging Cable,1,11.95,06/06/19 13:05,"546 Ridge St, Austin, TX 73301" +207579,AA Batteries (4-pack),1,3.84,06/07/19 02:46,"301 10th St, San Francisco, CA 94016" +207580,USB-C Charging Cable,1,11.95,06/02/19 07:52,"63 Wilson St, San Francisco, CA 94016" +207581,Lightning Charging Cable,1,14.95,06/04/19 13:49,"397 Elm St, Atlanta, GA 30301" +207582,27in FHD Monitor,1,149.99,06/06/19 21:15,"920 Elm St, New York City, NY 10001" +207583,Wired Headphones,2,11.99,06/22/19 21:54,"165 Lincoln St, San Francisco, CA 94016" +207584,Lightning Charging Cable,1,14.95,06/14/19 21:05,"360 13th St, Boston, MA 02215" +207585,Apple Airpods Headphones,1,150,06/29/19 16:19,"89 11th St, Los Angeles, CA 90001" +207586,USB-C Charging Cable,1,11.95,06/28/19 20:29,"555 Hill St, Dallas, TX 75001" +207587,AAA Batteries (4-pack),1,2.99,06/01/19 02:49,"862 Lincoln St, Austin, TX 73301" +207588,AAA Batteries (4-pack),1,2.99,06/11/19 21:37,"702 10th St, San Francisco, CA 94016" +207589,Lightning Charging Cable,1,14.95,06/08/19 13:26,"457 Jefferson St, San Francisco, CA 94016" +207590,Macbook Pro Laptop,1,1700,06/29/19 21:58,"604 Center St, Dallas, TX 75001" +207591,Google Phone,1,600,06/07/19 12:46,"631 Lincoln St, San Francisco, CA 94016" +207592,Apple Airpods Headphones,1,150,06/21/19 06:22,"991 Hickory St, Dallas, TX 75001" +207593,Wired Headphones,2,11.99,06/28/19 17:20,"830 Lakeview St, Seattle, WA 98101" +207594,AAA Batteries (4-pack),1,2.99,06/11/19 09:24,"351 Adams St, Boston, MA 02215" +207595,Apple Airpods Headphones,1,150,06/03/19 09:43,"370 Church St, San Francisco, CA 94016" +207596,20in Monitor,1,109.99,06/20/19 08:56,"521 Willow St, San Francisco, CA 94016" +207597,Bose SoundSport Headphones,1,99.99,06/24/19 14:00,"574 Ridge St, Austin, TX 73301" +207598,ThinkPad Laptop,1,999.99,06/02/19 21:03,"842 Church St, Boston, MA 02215" +207599,Apple Airpods Headphones,1,150,06/18/19 23:51,"393 Walnut St, Dallas, TX 75001" +207600,27in FHD Monitor,1,149.99,06/04/19 17:33,"692 Cherry St, San Francisco, CA 94016" +207601,Apple Airpods Headphones,1,150,06/09/19 17:09,"319 Jackson St, San Francisco, CA 94016" +207602,Wired Headphones,1,11.99,06/30/19 14:25,"283 West St, San Francisco, CA 94016" +207603,AAA Batteries (4-pack),1,2.99,06/05/19 21:07,"57 Center St, Seattle, WA 98101" +207604,Apple Airpods Headphones,1,150,06/18/19 02:38,"279 11th St, New York City, NY 10001" +207605,AA Batteries (4-pack),1,3.84,06/04/19 14:51,"605 Center St, Seattle, WA 98101" +207606,AA Batteries (4-pack),1,3.84,06/24/19 23:34,"679 Cherry St, Atlanta, GA 30301" +207607,Google Phone,1,600,06/05/19 13:56,"532 Sunset St, Boston, MA 02215" +207608,USB-C Charging Cable,1,11.95,06/15/19 19:11,"934 Lake St, New York City, NY 10001" +207609,Lightning Charging Cable,1,14.95,06/17/19 15:42,"65 Park St, Atlanta, GA 30301" +207610,Apple Airpods Headphones,1,150,06/04/19 19:50,"263 8th St, Austin, TX 73301" +207611,AAA Batteries (4-pack),1,2.99,06/15/19 10:24,"482 Lake St, Los Angeles, CA 90001" +207612,AA Batteries (4-pack),1,3.84,06/18/19 21:37,"462 West St, New York City, NY 10001" +207613,27in 4K Gaming Monitor,1,389.99,06/29/19 23:03,"32 South St, Boston, MA 02215" +207614,27in FHD Monitor,1,149.99,06/20/19 10:38,"921 Spruce St, San Francisco, CA 94016" +207615,Bose SoundSport Headphones,1,99.99,06/23/19 17:37,"159 Church St, Los Angeles, CA 90001" +207616,Google Phone,1,600,06/19/19 19:01,"882 5th St, San Francisco, CA 94016" +207617,27in 4K Gaming Monitor,1,389.99,06/08/19 10:58,"258 1st St, Los Angeles, CA 90001" +207617,Flatscreen TV,1,300,06/08/19 10:58,"258 1st St, Los Angeles, CA 90001" +207618,ThinkPad Laptop,1,999.99,06/11/19 19:27,"578 Elm St, Seattle, WA 98101" +207619,ThinkPad Laptop,1,999.99,06/14/19 08:00,"335 Hill St, Los Angeles, CA 90001" +207620,USB-C Charging Cable,1,11.95,06/21/19 16:07,"436 Jefferson St, Portland, ME 04101" +207621,Bose SoundSport Headphones,1,99.99,06/24/19 21:46,"490 River St, Dallas, TX 75001" +207622,Google Phone,1,600,06/21/19 09:32,"292 Johnson St, Dallas, TX 75001" +207623,Bose SoundSport Headphones,1,99.99,06/15/19 23:03,"924 12th St, Dallas, TX 75001" +207624,Macbook Pro Laptop,1,1700,06/29/19 23:16,"472 4th St, San Francisco, CA 94016" +207625,AA Batteries (4-pack),2,3.84,06/14/19 19:45,"660 9th St, Dallas, TX 75001" +207626,iPhone,1,700,06/23/19 19:31,"123 West St, Boston, MA 02215" +207627,Lightning Charging Cable,1,14.95,06/11/19 16:46,"405 Cherry St, Dallas, TX 75001" +207628,27in FHD Monitor,1,149.99,06/10/19 12:20,"259 Meadow St, Dallas, TX 75001" +207629,Apple Airpods Headphones,1,150,06/13/19 18:28,"818 Elm St, Los Angeles, CA 90001" +207630,27in FHD Monitor,1,149.99,06/11/19 11:33,"136 4th St, San Francisco, CA 94016" +207631,ThinkPad Laptop,1,999.99,06/23/19 11:11,"888 Adams St, Los Angeles, CA 90001" +207632,Lightning Charging Cable,1,14.95,06/18/19 18:17,"419 West St, Los Angeles, CA 90001" +207633,Wired Headphones,1,11.99,06/04/19 07:18,"812 Madison St, San Francisco, CA 94016" +207634,27in 4K Gaming Monitor,1,389.99,06/10/19 09:15,"856 North St, New York City, NY 10001" +207635,USB-C Charging Cable,1,11.95,06/29/19 08:22,"67 West St, Los Angeles, CA 90001" +207636,USB-C Charging Cable,1,11.95,06/09/19 14:23,"665 2nd St, Boston, MA 02215" +207637,USB-C Charging Cable,1,11.95,06/26/19 20:15,"933 Hickory St, Dallas, TX 75001" +207638,20in Monitor,1,109.99,06/20/19 11:30,"12 Lake St, Boston, MA 02215" +207639,Wired Headphones,1,11.99,06/28/19 06:06,"497 Washington St, Seattle, WA 98101" +207640,27in 4K Gaming Monitor,1,389.99,06/19/19 17:27,"843 Willow St, New York City, NY 10001" +207641,Wired Headphones,1,11.99,06/30/19 23:26,"704 Sunset St, New York City, NY 10001" +207642,USB-C Charging Cable,1,11.95,06/17/19 13:03,"906 Lincoln St, Portland, OR 97035" +207643,AA Batteries (4-pack),2,3.84,06/12/19 19:38,"191 River St, Seattle, WA 98101" +207644,Macbook Pro Laptop,1,1700,06/17/19 10:30,"150 Washington St, New York City, NY 10001" +207645,USB-C Charging Cable,1,11.95,06/13/19 18:10,"127 Willow St, Seattle, WA 98101" +207646,Wired Headphones,1,11.99,06/07/19 10:48,"276 Wilson St, San Francisco, CA 94016" +207647,iPhone,1,700,06/05/19 20:34,"405 Sunset St, Boston, MA 02215" +207648,Lightning Charging Cable,1,14.95,06/17/19 16:40,"344 Forest St, Dallas, TX 75001" +207649,USB-C Charging Cable,1,11.95,06/21/19 08:22,"186 Sunset St, New York City, NY 10001" +207650,Wired Headphones,1,11.99,06/03/19 21:25,"58 Highland St, Portland, OR 97035" +207651,AAA Batteries (4-pack),1,2.99,06/24/19 21:12,"387 5th St, Seattle, WA 98101" +207652,27in FHD Monitor,1,149.99,06/11/19 19:27,"627 Lakeview St, Boston, MA 02215" +207653,AA Batteries (4-pack),1,3.84,06/01/19 19:54,"625 7th St, Los Angeles, CA 90001" +207654,AA Batteries (4-pack),1,3.84,06/30/19 04:02,"732 Johnson St, New York City, NY 10001" +207655,Lightning Charging Cable,1,14.95,06/04/19 17:45,"835 12th St, San Francisco, CA 94016" +207656,Wired Headphones,1,11.99,06/30/19 13:22,"82 Church St, Los Angeles, CA 90001" +207657,Bose SoundSport Headphones,1,99.99,06/21/19 01:27,"274 5th St, Los Angeles, CA 90001" +207658,AA Batteries (4-pack),2,3.84,06/08/19 15:42,"109 South St, Austin, TX 73301" +207659,AA Batteries (4-pack),1,3.84,06/03/19 15:32,"119 5th St, San Francisco, CA 94016" +207660,AA Batteries (4-pack),1,3.84,06/24/19 08:53,"244 4th St, San Francisco, CA 94016" +207661,Wired Headphones,2,11.99,06/08/19 15:27,"763 5th St, San Francisco, CA 94016" +207662,27in FHD Monitor,1,149.99,06/27/19 15:46,"804 Lake St, Dallas, TX 75001" +207663,USB-C Charging Cable,1,11.95,06/15/19 10:40,"898 Madison St, Los Angeles, CA 90001" +207664,Macbook Pro Laptop,1,1700,06/10/19 18:20,"756 13th St, New York City, NY 10001" +207665,Bose SoundSport Headphones,1,99.99,06/25/19 15:41,"521 Pine St, San Francisco, CA 94016" +207666,AA Batteries (4-pack),1,3.84,06/10/19 10:35,"360 Washington St, San Francisco, CA 94016" +207667,USB-C Charging Cable,1,11.95,06/26/19 07:45,"875 Madison St, New York City, NY 10001" +207668,Apple Airpods Headphones,1,150,06/25/19 20:56,"22 Forest St, Boston, MA 02215" +207669,Macbook Pro Laptop,1,1700,06/17/19 17:21,"382 Sunset St, San Francisco, CA 94016" +207670,Wired Headphones,1,11.99,06/13/19 17:09,"441 South St, Los Angeles, CA 90001" +207671,Macbook Pro Laptop,1,1700,06/17/19 13:09,"78 Willow St, Atlanta, GA 30301" +207672,Flatscreen TV,1,300,06/06/19 15:54,"634 Chestnut St, Austin, TX 73301" +207673,ThinkPad Laptop,1,999.99,06/29/19 08:25,"274 Washington St, Los Angeles, CA 90001" +207674,Apple Airpods Headphones,1,150,06/20/19 20:56,"461 Lake St, Los Angeles, CA 90001" +207675,iPhone,1,700,06/19/19 09:29,"153 Washington St, New York City, NY 10001" +207676,AAA Batteries (4-pack),1,2.99,06/22/19 11:12,"206 Ridge St, Portland, ME 04101" +207677,Wired Headphones,2,11.99,06/20/19 22:37,"779 Meadow St, San Francisco, CA 94016" +207678,Wired Headphones,1,11.99,06/28/19 12:36,"422 13th St, Boston, MA 02215" +207679,AA Batteries (4-pack),1,3.84,06/04/19 15:07,"375 Highland St, San Francisco, CA 94016" +207680,Google Phone,1,600,06/01/19 17:47,"804 Jackson St, San Francisco, CA 94016" +207680,USB-C Charging Cable,1,11.95,06/01/19 17:47,"804 Jackson St, San Francisco, CA 94016" +207681,27in FHD Monitor,1,149.99,06/26/19 19:55,"266 10th St, San Francisco, CA 94016" +207682,34in Ultrawide Monitor,1,379.99,06/22/19 18:37,"327 Lincoln St, Dallas, TX 75001" +207683,Wired Headphones,1,11.99,06/22/19 07:28,"906 8th St, San Francisco, CA 94016" +207684,Wired Headphones,2,11.99,06/05/19 10:18,"617 1st St, San Francisco, CA 94016" +207685,Bose SoundSport Headphones,2,99.99,06/06/19 18:22,"235 Elm St, Boston, MA 02215" +207686,Wired Headphones,1,11.99,06/07/19 17:23,"56 Meadow St, New York City, NY 10001" +207687,AAA Batteries (4-pack),3,2.99,06/11/19 20:46,"765 Pine St, Seattle, WA 98101" +207688,Lightning Charging Cable,1,14.95,06/14/19 18:56,"819 6th St, Portland, ME 04101" +207689,AA Batteries (4-pack),2,3.84,06/07/19 17:58,"132 12th St, Boston, MA 02215" +207690,AA Batteries (4-pack),1,3.84,06/10/19 10:22,"560 Highland St, Boston, MA 02215" +207691,Lightning Charging Cable,1,14.95,06/14/19 19:31,"134 9th St, Austin, TX 73301" +207692,AA Batteries (4-pack),3,3.84,06/13/19 14:46,"979 Forest St, Portland, OR 97035" +207693,USB-C Charging Cable,1,11.95,06/13/19 14:38,"241 Hickory St, Dallas, TX 75001" +207694,Wired Headphones,1,11.99,06/05/19 16:38,"596 8th St, Boston, MA 02215" +207695,USB-C Charging Cable,1,11.95,06/14/19 14:01,"256 North St, San Francisco, CA 94016" +207695,USB-C Charging Cable,2,11.95,06/14/19 14:01,"256 North St, San Francisco, CA 94016" +207696,ThinkPad Laptop,1,999.99,06/20/19 12:31,"418 Meadow St, New York City, NY 10001" +207697,Wired Headphones,1,11.99,06/25/19 20:16,"307 Cedar St, Boston, MA 02215" +207698,iPhone,1,700,06/26/19 17:38,"699 1st St, San Francisco, CA 94016" +207699,34in Ultrawide Monitor,1,379.99,06/27/19 18:38,"482 Lake St, Dallas, TX 75001" +207700,Macbook Pro Laptop,1,1700,06/29/19 08:31,"20 Ridge St, Atlanta, GA 30301" +207701,Flatscreen TV,1,300,06/08/19 08:02,"333 North St, San Francisco, CA 94016" +207702,AAA Batteries (4-pack),2,2.99,06/11/19 07:40,"800 2nd St, San Francisco, CA 94016" +207703,Lightning Charging Cable,1,14.95,06/26/19 19:50,"146 12th St, Los Angeles, CA 90001" +207704,Wired Headphones,2,11.99,06/07/19 23:20,"207 Ridge St, Dallas, TX 75001" +207705,34in Ultrawide Monitor,1,379.99,06/26/19 23:31,"665 12th St, New York City, NY 10001" +207706,USB-C Charging Cable,1,11.95,06/14/19 21:46,"79 Wilson St, San Francisco, CA 94016" +207707,Wired Headphones,1,11.99,06/11/19 23:08,"35 Wilson St, Los Angeles, CA 90001" +207708,Apple Airpods Headphones,1,150,06/15/19 06:27,"807 7th St, Los Angeles, CA 90001" +207709,AAA Batteries (4-pack),1,2.99,06/29/19 22:14,"192 Walnut St, Los Angeles, CA 90001" +207710,Wired Headphones,1,11.99,06/24/19 20:18,"427 Center St, Boston, MA 02215" +207711,iPhone,1,700,06/16/19 15:09,"677 Maple St, Los Angeles, CA 90001" +207711,Wired Headphones,1,11.99,06/16/19 15:09,"677 Maple St, Los Angeles, CA 90001" +207712,AA Batteries (4-pack),1,3.84,06/15/19 13:52,"409 Jefferson St, New York City, NY 10001" +207713,Apple Airpods Headphones,1,150,06/05/19 11:43,"864 Meadow St, San Francisco, CA 94016" +207714,Apple Airpods Headphones,1,150,06/28/19 15:22,"647 7th St, Los Angeles, CA 90001" +207715,AAA Batteries (4-pack),1,2.99,06/14/19 16:44,"889 Wilson St, San Francisco, CA 94016" +207716,iPhone,1,700,06/19/19 21:45,"110 Hill St, San Francisco, CA 94016" +207717,Apple Airpods Headphones,1,150,06/24/19 14:48,"607 Maple St, Los Angeles, CA 90001" +207718,iPhone,1,700,06/26/19 20:33,"172 5th St, San Francisco, CA 94016" +207719,Macbook Pro Laptop,1,1700,06/20/19 19:44,"34 Forest St, San Francisco, CA 94016" +207720,AAA Batteries (4-pack),1,2.99,06/09/19 14:56,"305 Walnut St, Seattle, WA 98101" +207721,AA Batteries (4-pack),1,3.84,06/23/19 14:51,"15 Jackson St, Seattle, WA 98101" +207722,iPhone,1,700,06/15/19 14:53,"346 Lakeview St, San Francisco, CA 94016" +207722,USB-C Charging Cable,1,11.95,06/15/19 14:53,"346 Lakeview St, San Francisco, CA 94016" +207723,Bose SoundSport Headphones,1,99.99,06/07/19 18:34,"644 4th St, Atlanta, GA 30301" +207724,AAA Batteries (4-pack),1,2.99,06/19/19 10:52,"654 6th St, Portland, ME 04101" +207725,34in Ultrawide Monitor,1,379.99,06/02/19 14:15,"406 Walnut St, San Francisco, CA 94016" +207726,AA Batteries (4-pack),1,3.84,06/27/19 21:46,"700 10th St, San Francisco, CA 94016" +207727,Vareebadd Phone,1,400,06/25/19 18:48,"732 Meadow St, Seattle, WA 98101" +207727,USB-C Charging Cable,1,11.95,06/25/19 18:48,"732 Meadow St, Seattle, WA 98101" +207728,Apple Airpods Headphones,1,150,06/08/19 20:05,"948 Ridge St, New York City, NY 10001" +207729,ThinkPad Laptop,1,999.99,06/11/19 20:56,"916 Lincoln St, Los Angeles, CA 90001" +207730,Flatscreen TV,1,300,06/26/19 21:06,"505 Center St, San Francisco, CA 94016" +207731,AAA Batteries (4-pack),1,2.99,06/18/19 21:24,"598 Forest St, Portland, ME 04101" +207732,27in 4K Gaming Monitor,1,389.99,06/30/19 16:09,"918 Spruce St, Boston, MA 02215" +207733,Macbook Pro Laptop,1,1700,06/30/19 20:21,"146 7th St, San Francisco, CA 94016" +207734,Flatscreen TV,1,300,06/05/19 15:41,"85 Forest St, Atlanta, GA 30301" +207735,27in 4K Gaming Monitor,1,389.99,06/08/19 23:26,"231 4th St, Boston, MA 02215" +207736,Lightning Charging Cable,1,14.95,06/12/19 09:16,"148 Walnut St, San Francisco, CA 94016" +207737,Lightning Charging Cable,1,14.95,06/30/19 17:38,"348 Hickory St, Austin, TX 73301" +207738,Vareebadd Phone,1,400,06/27/19 23:02,"253 9th St, Los Angeles, CA 90001" +207739,27in FHD Monitor,1,149.99,06/02/19 19:04,"767 Jefferson St, Portland, OR 97035" +207740,Wired Headphones,1,11.99,06/02/19 19:46,"841 7th St, San Francisco, CA 94016" +207741,AA Batteries (4-pack),1,3.84,06/09/19 20:43,"684 Jefferson St, San Francisco, CA 94016" +207742,AA Batteries (4-pack),2,3.84,06/02/19 13:21,"619 4th St, Boston, MA 02215" +207743,Wired Headphones,1,11.99,06/24/19 20:25,"568 Walnut St, Portland, ME 04101" +207744,USB-C Charging Cable,3,11.95,06/28/19 17:38,"109 8th St, Boston, MA 02215" +207745,Macbook Pro Laptop,1,1700,06/24/19 17:23,"853 River St, Dallas, TX 75001" +207746,AA Batteries (4-pack),1,3.84,06/12/19 17:05,"362 Elm St, San Francisco, CA 94016" +207747,AAA Batteries (4-pack),2,2.99,06/07/19 13:30,"309 5th St, Los Angeles, CA 90001" +207748,AA Batteries (4-pack),1,3.84,06/04/19 14:58,"412 Main St, Seattle, WA 98101" +207749,Bose SoundSport Headphones,1,99.99,06/11/19 16:30,"338 Park St, San Francisco, CA 94016" +207750,iPhone,1,700,06/01/19 21:16,"274 Willow St, Los Angeles, CA 90001" +207751,AA Batteries (4-pack),1,3.84,06/17/19 08:39,"657 7th St, Seattle, WA 98101" +207752,AAA Batteries (4-pack),1,2.99,06/26/19 12:55,"201 Madison St, Dallas, TX 75001" +207753,Bose SoundSport Headphones,1,99.99,06/25/19 09:58,"539 Adams St, Dallas, TX 75001" +207754,Google Phone,1,600,06/13/19 13:11,"444 Hickory St, Los Angeles, CA 90001" +207755,USB-C Charging Cable,1,11.95,06/04/19 18:28,"439 Jackson St, Dallas, TX 75001" +207756,27in FHD Monitor,1,149.99,06/11/19 11:56,"259 Hill St, Seattle, WA 98101" +207756,Wired Headphones,1,11.99,06/11/19 11:56,"259 Hill St, Seattle, WA 98101" +207757,iPhone,1,700,06/17/19 12:07,"916 Jackson St, Los Angeles, CA 90001" +207758,34in Ultrawide Monitor,1,379.99,06/07/19 21:06,"691 Forest St, Seattle, WA 98101" +207759,AA Batteries (4-pack),2,3.84,06/14/19 15:23,"166 Center St, Atlanta, GA 30301" +207760,AA Batteries (4-pack),1,3.84,06/25/19 17:47,"422 Johnson St, San Francisco, CA 94016" +207761,Google Phone,1,600,06/21/19 18:47,"288 Willow St, Seattle, WA 98101" +207761,USB-C Charging Cable,1,11.95,06/21/19 18:47,"288 Willow St, Seattle, WA 98101" +207762,34in Ultrawide Monitor,1,379.99,06/24/19 08:45,"66 Church St, San Francisco, CA 94016" +207763,AA Batteries (4-pack),1,3.84,06/06/19 10:54,"631 Jefferson St, New York City, NY 10001" +207764,Apple Airpods Headphones,1,150,06/05/19 20:01,"59 Washington St, San Francisco, CA 94016" +207765,iPhone,1,700,06/07/19 12:21,"895 North St, Austin, TX 73301" +207766,27in FHD Monitor,1,149.99,06/16/19 14:04,"533 Spruce St, Atlanta, GA 30301" +207767,27in 4K Gaming Monitor,1,389.99,06/15/19 08:51,"119 North St, Austin, TX 73301" +207768,iPhone,1,700,06/11/19 12:17,"949 Lincoln St, New York City, NY 10001" +207769,20in Monitor,1,109.99,06/24/19 12:20,"755 Park St, Atlanta, GA 30301" +207770,27in 4K Gaming Monitor,1,389.99,06/09/19 12:22,"651 Church St, San Francisco, CA 94016" +207771,AA Batteries (4-pack),2,3.84,06/22/19 21:59,"884 Pine St, San Francisco, CA 94016" +207772,27in FHD Monitor,1,149.99,06/20/19 22:05,"413 Madison St, Seattle, WA 98101" +207773,ThinkPad Laptop,1,999.99,06/23/19 17:59,"454 11th St, Boston, MA 02215" +207774,27in FHD Monitor,1,149.99,06/12/19 14:20,"406 Chestnut St, San Francisco, CA 94016" +207775,USB-C Charging Cable,1,11.95,06/12/19 12:32,"799 River St, San Francisco, CA 94016" +207776,Lightning Charging Cable,1,14.95,06/19/19 15:52,"905 Chestnut St, San Francisco, CA 94016" +207777,Wired Headphones,1,11.99,06/22/19 18:26,"84 Pine St, Atlanta, GA 30301" +207778,iPhone,1,700,06/06/19 12:21,"333 Lake St, Atlanta, GA 30301" +207778,Lightning Charging Cable,1,14.95,06/06/19 12:21,"333 Lake St, Atlanta, GA 30301" +207779,20in Monitor,1,109.99,06/14/19 19:20,"784 Highland St, Los Angeles, CA 90001" +207780,Wired Headphones,1,11.99,06/06/19 09:29,"971 Willow St, Los Angeles, CA 90001" +207780,27in 4K Gaming Monitor,1,389.99,06/06/19 09:29,"971 Willow St, Los Angeles, CA 90001" +207781,AAA Batteries (4-pack),1,2.99,06/06/19 15:38,"182 Main St, Austin, TX 73301" +207782,AAA Batteries (4-pack),1,2.99,06/29/19 17:47,"918 Highland St, Los Angeles, CA 90001" +207783,ThinkPad Laptop,1,999.99,06/02/19 11:16,"830 Hickory St, Los Angeles, CA 90001" +207784,Lightning Charging Cable,1,14.95,06/13/19 21:29,"685 North St, New York City, NY 10001" +207785,Google Phone,1,600,06/08/19 20:16,"285 Elm St, San Francisco, CA 94016" +207785,USB-C Charging Cable,1,11.95,06/08/19 20:16,"285 Elm St, San Francisco, CA 94016" +207786,Lightning Charging Cable,1,14.95,06/25/19 10:30,"922 14th St, San Francisco, CA 94016" +207787,Wired Headphones,1,11.99,06/17/19 12:57,"296 Washington St, Los Angeles, CA 90001" +207788,20in Monitor,1,109.99,06/14/19 16:33,"196 Jefferson St, Seattle, WA 98101" +207789,AAA Batteries (4-pack),1,2.99,06/25/19 22:11,"260 Adams St, San Francisco, CA 94016" +207790,27in FHD Monitor,1,149.99,06/05/19 06:03,"667 Pine St, Dallas, TX 75001" +207791,Wired Headphones,1,11.99,06/25/19 04:15,"241 Lincoln St, Austin, TX 73301" +207792,Flatscreen TV,1,300,06/23/19 00:32,"640 Highland St, Los Angeles, CA 90001" +207792,34in Ultrawide Monitor,1,379.99,06/23/19 00:32,"640 Highland St, Los Angeles, CA 90001" +207793,AA Batteries (4-pack),2,3.84,06/07/19 22:12,"136 Ridge St, Boston, MA 02215" +207794,AA Batteries (4-pack),2,3.84,06/09/19 13:52,"306 10th St, Austin, TX 73301" +207795,Lightning Charging Cable,1,14.95,06/20/19 10:38,"235 Lake St, Boston, MA 02215" +207796,Wired Headphones,2,11.99,06/30/19 08:29,"684 14th St, San Francisco, CA 94016" +207797,Apple Airpods Headphones,1,150,06/30/19 15:06,"928 Spruce St, New York City, NY 10001" +207798,Wired Headphones,1,11.99,06/12/19 18:15,"59 Jefferson St, Los Angeles, CA 90001" +207799,Wired Headphones,1,11.99,06/06/19 17:53,"369 5th St, San Francisco, CA 94016" +207800,20in Monitor,1,109.99,06/20/19 12:09,"500 Walnut St, San Francisco, CA 94016" +207801,Apple Airpods Headphones,1,150,06/28/19 10:41,"741 Hill St, Boston, MA 02215" +207802,USB-C Charging Cable,2,11.95,06/23/19 10:06,"277 Lakeview St, San Francisco, CA 94016" +207803,AA Batteries (4-pack),1,3.84,06/27/19 13:53,"922 Wilson St, Atlanta, GA 30301" +207804,AA Batteries (4-pack),1,3.84,06/22/19 18:29,"144 Wilson St, Portland, OR 97035" +207805,Wired Headphones,1,11.99,06/18/19 18:45,"533 Washington St, Boston, MA 02215" +207806,AA Batteries (4-pack),1,3.84,06/01/19 14:58,"140 Forest St, New York City, NY 10001" +207807,Apple Airpods Headphones,1,150,06/13/19 16:01,"986 Walnut St, Dallas, TX 75001" +207808,Apple Airpods Headphones,1,150,06/04/19 16:29,"251 4th St, Boston, MA 02215" +207809,Wired Headphones,1,11.99,06/10/19 14:14,"707 14th St, New York City, NY 10001" +207810,Wired Headphones,1,11.99,06/04/19 21:50,"176 9th St, Portland, OR 97035" +207811,USB-C Charging Cable,2,11.95,06/04/19 13:24,"700 Chestnut St, San Francisco, CA 94016" +207812,Flatscreen TV,1,300,06/19/19 14:37,"724 West St, San Francisco, CA 94016" +207813,AAA Batteries (4-pack),1,2.99,06/24/19 08:40,"461 2nd St, Boston, MA 02215" +207814,Lightning Charging Cable,1,14.95,06/02/19 16:32,"161 Spruce St, Atlanta, GA 30301" +207815,Macbook Pro Laptop,1,1700,06/04/19 14:02,"972 Cherry St, San Francisco, CA 94016" +207816,Macbook Pro Laptop,1,1700,06/25/19 19:10,"60 North St, Seattle, WA 98101" +207817,USB-C Charging Cable,1,11.95,06/21/19 21:35,"922 6th St, Los Angeles, CA 90001" +207818,USB-C Charging Cable,1,11.95,06/19/19 21:38,"95 South St, Los Angeles, CA 90001" +207819,Apple Airpods Headphones,1,150,06/08/19 19:40,"57 Wilson St, San Francisco, CA 94016" +207820,27in 4K Gaming Monitor,1,389.99,06/05/19 09:27,"456 Main St, New York City, NY 10001" +207821,34in Ultrawide Monitor,1,379.99,06/27/19 12:35,"912 10th St, New York City, NY 10001" +207822,Wired Headphones,1,11.99,06/17/19 22:52,"412 Forest St, New York City, NY 10001" +207823,27in FHD Monitor,1,149.99,06/11/19 12:19,"809 12th St, San Francisco, CA 94016" +207824,AA Batteries (4-pack),1,3.84,06/27/19 16:44,"885 Elm St, Austin, TX 73301" +207825,AA Batteries (4-pack),2,3.84,06/26/19 08:40,"473 Ridge St, Atlanta, GA 30301" +207826,Google Phone,1,600,06/12/19 07:45,"590 1st St, Los Angeles, CA 90001" +207827,Bose SoundSport Headphones,1,99.99,06/18/19 14:54,"672 4th St, Atlanta, GA 30301" +207828,Lightning Charging Cable,1,14.95,06/17/19 08:15,"536 Lakeview St, San Francisco, CA 94016" +207829,Bose SoundSport Headphones,2,99.99,06/09/19 10:01,"816 Walnut St, Boston, MA 02215" +207830,27in FHD Monitor,1,149.99,06/25/19 10:03,"686 Walnut St, Dallas, TX 75001" +207831,34in Ultrawide Monitor,1,379.99,06/03/19 20:56,"781 Johnson St, Portland, ME 04101" +207832,Lightning Charging Cable,1,14.95,06/07/19 18:21,"291 5th St, New York City, NY 10001" +207833,27in FHD Monitor,1,149.99,06/10/19 09:30,"45 10th St, Atlanta, GA 30301" +207834,Bose SoundSport Headphones,1,99.99,06/01/19 13:15,"914 West St, Los Angeles, CA 90001" +207835,Lightning Charging Cable,1,14.95,06/27/19 08:26,"975 Madison St, New York City, NY 10001" +207836,Apple Airpods Headphones,1,150,06/07/19 10:24,"805 12th St, Seattle, WA 98101" +207837,AAA Batteries (4-pack),1,2.99,06/19/19 18:09,"379 River St, Los Angeles, CA 90001" +207838,Google Phone,1,600,06/02/19 12:55,"593 West St, Dallas, TX 75001" +207839,AA Batteries (4-pack),2,3.84,06/28/19 13:57,"237 Jackson St, Austin, TX 73301" +207840,AA Batteries (4-pack),1,3.84,06/12/19 14:16,"519 Washington St, Dallas, TX 75001" +207841,27in 4K Gaming Monitor,1,389.99,06/19/19 13:46,"651 14th St, San Francisco, CA 94016" +207842,AAA Batteries (4-pack),1,2.99,06/06/19 19:20,"275 Johnson St, New York City, NY 10001" +207843,34in Ultrawide Monitor,1,379.99,06/23/19 16:49,"527 Washington St, Los Angeles, CA 90001" +207844,Wired Headphones,1,11.99,06/03/19 16:14,"954 13th St, San Francisco, CA 94016" +207845,Wired Headphones,1,11.99,06/06/19 17:59,"574 Church St, Los Angeles, CA 90001" +207846,Lightning Charging Cable,1,14.95,06/15/19 16:10,"603 Highland St, Dallas, TX 75001" +207847,Bose SoundSport Headphones,1,99.99,06/06/19 13:19,"861 Dogwood St, Boston, MA 02215" +207848,Lightning Charging Cable,1,14.95,06/29/19 17:07,"437 9th St, Atlanta, GA 30301" +207849,iPhone,1,700,06/15/19 16:09,"855 West St, Seattle, WA 98101" +207850,34in Ultrawide Monitor,1,379.99,06/11/19 17:43,"220 Center St, Dallas, TX 75001" +207851,Lightning Charging Cable,1,14.95,06/25/19 23:41,"42 Adams St, Boston, MA 02215" +207852,AA Batteries (4-pack),1,3.84,06/28/19 21:47,"416 Johnson St, San Francisco, CA 94016" +207853,27in FHD Monitor,1,149.99,06/08/19 15:16,"672 Lakeview St, Los Angeles, CA 90001" +207854,Google Phone,1,600,06/03/19 13:38,"659 Cherry St, Boston, MA 02215" +207854,USB-C Charging Cable,1,11.95,06/03/19 13:38,"659 Cherry St, Boston, MA 02215" +207855,27in FHD Monitor,1,149.99,06/28/19 15:14,"269 Lake St, New York City, NY 10001" +207856,Google Phone,1,600,06/19/19 23:19,"518 6th St, Dallas, TX 75001" +207856,USB-C Charging Cable,1,11.95,06/19/19 23:19,"518 6th St, Dallas, TX 75001" +207857,Lightning Charging Cable,2,14.95,06/10/19 11:37,"473 Center St, New York City, NY 10001" +207858,20in Monitor,1,109.99,06/03/19 10:52,"366 Church St, San Francisco, CA 94016" +207859,Lightning Charging Cable,1,14.95,06/28/19 18:37,"816 Washington St, Atlanta, GA 30301" +207860,Flatscreen TV,1,300,06/24/19 10:22,"325 Center St, San Francisco, CA 94016" +207861,Apple Airpods Headphones,1,150,06/04/19 08:49,"929 Pine St, Austin, TX 73301" +207862,USB-C Charging Cable,1,11.95,06/25/19 19:56,"676 Jefferson St, San Francisco, CA 94016" +207863,AA Batteries (4-pack),1,3.84,06/30/19 14:35,"60 Hill St, Dallas, TX 75001" +207864,AAA Batteries (4-pack),1,2.99,06/28/19 10:35,"68 4th St, Los Angeles, CA 90001" +207865,Lightning Charging Cable,1,14.95,06/30/19 05:00,"163 Pine St, Austin, TX 73301" +207866,AA Batteries (4-pack),1,3.84,06/16/19 22:23,"133 Forest St, Portland, OR 97035" +207867,Wired Headphones,1,11.99,06/23/19 16:56,"30 Elm St, Boston, MA 02215" +207868,AAA Batteries (4-pack),2,2.99,06/15/19 10:36,"552 Hill St, San Francisco, CA 94016" +207869,AAA Batteries (4-pack),1,2.99,06/01/19 20:13,"572 Adams St, Los Angeles, CA 90001" +207870,27in FHD Monitor,1,149.99,06/11/19 11:00,"174 5th St, Dallas, TX 75001" +207871,AA Batteries (4-pack),3,3.84,06/15/19 09:38,"777 Adams St, Los Angeles, CA 90001" +207872,27in FHD Monitor,1,149.99,06/23/19 20:17,"547 Lakeview St, Atlanta, GA 30301" +207873,AAA Batteries (4-pack),1,2.99,06/29/19 01:25,"644 4th St, Atlanta, GA 30301" +207874,Flatscreen TV,1,300,06/11/19 20:22,"22 Highland St, Seattle, WA 98101" +207875,Bose SoundSport Headphones,1,99.99,06/26/19 16:48,"170 Cherry St, San Francisco, CA 94016" +207876,AA Batteries (4-pack),1,3.84,06/26/19 10:49,"167 Ridge St, Seattle, WA 98101" +207877,34in Ultrawide Monitor,1,379.99,06/08/19 10:57,"284 Cedar St, Los Angeles, CA 90001" +207878,Flatscreen TV,1,300,06/01/19 14:11,"536 Highland St, Dallas, TX 75001" +207879,Wired Headphones,2,11.99,06/04/19 18:50,"821 10th St, Dallas, TX 75001" +207880,34in Ultrawide Monitor,1,379.99,06/28/19 13:51,"147 Chestnut St, San Francisco, CA 94016" +207881,Vareebadd Phone,1,400,06/18/19 15:07,"429 Dogwood St, New York City, NY 10001" +207882,Wired Headphones,1,11.99,06/29/19 23:14,"163 2nd St, Los Angeles, CA 90001" +207883,AA Batteries (4-pack),2,3.84,06/15/19 18:35,"374 4th St, New York City, NY 10001" +207884,AA Batteries (4-pack),1,3.84,06/13/19 13:05,"401 Forest St, New York City, NY 10001" +207885,AAA Batteries (4-pack),3,2.99,06/25/19 18:30,"945 Park St, Austin, TX 73301" +207886,27in 4K Gaming Monitor,1,389.99,06/05/19 05:08,"29 13th St, Portland, OR 97035" +207887,Apple Airpods Headphones,1,150,06/15/19 13:17,"223 14th St, Dallas, TX 75001" +207888,Apple Airpods Headphones,1,150,06/10/19 00:57,"654 6th St, New York City, NY 10001" +207889,Lightning Charging Cable,1,14.95,06/15/19 03:52,"701 Johnson St, Seattle, WA 98101" +207890,27in FHD Monitor,1,149.99,06/09/19 13:32,"767 Adams St, Los Angeles, CA 90001" +207891,Lightning Charging Cable,1,14.95,06/30/19 11:46,"253 Adams St, Seattle, WA 98101" +207892,USB-C Charging Cable,1,11.95,06/22/19 20:23,"301 Park St, New York City, NY 10001" +207893,Google Phone,1,600,06/06/19 08:42,"870 Walnut St, Boston, MA 02215" +207893,USB-C Charging Cable,1,11.95,06/06/19 08:42,"870 Walnut St, Boston, MA 02215" +207894,AAA Batteries (4-pack),2,2.99,06/27/19 07:28,"693 Cedar St, Boston, MA 02215" +207895,27in FHD Monitor,1,149.99,06/18/19 21:52,"150 Church St, New York City, NY 10001" +207896,Apple Airpods Headphones,1,150,06/16/19 04:04,"219 13th St, Dallas, TX 75001" +207897,Google Phone,1,600,06/28/19 19:04,"301 South St, San Francisco, CA 94016" +207898,AA Batteries (4-pack),1,3.84,06/26/19 20:39,"11 Adams St, New York City, NY 10001" +207899,Flatscreen TV,1,300,06/28/19 19:30,"976 Willow St, Los Angeles, CA 90001" +207900,Bose SoundSport Headphones,1,99.99,06/19/19 17:51,"559 Hill St, Seattle, WA 98101" +207901,AAA Batteries (4-pack),2,2.99,06/18/19 11:23,"831 Cherry St, Seattle, WA 98101" +207902,27in FHD Monitor,1,149.99,06/06/19 00:02,"357 Church St, Boston, MA 02215" +207903,AA Batteries (4-pack),1,3.84,06/15/19 12:00,"341 Madison St, San Francisco, CA 94016" +207904,34in Ultrawide Monitor,1,379.99,06/06/19 08:37,"164 Cherry St, Los Angeles, CA 90001" +207905,Apple Airpods Headphones,1,150,06/04/19 16:51,"901 Hickory St, Boston, MA 02215" +207906,Wired Headphones,1,11.99,06/08/19 19:06,"322 Willow St, San Francisco, CA 94016" +207907,20in Monitor,1,109.99,06/17/19 12:17,"230 Center St, Boston, MA 02215" +207908,Macbook Pro Laptop,1,1700,06/22/19 07:53,"457 5th St, New York City, NY 10001" +207909,Wired Headphones,1,11.99,06/03/19 13:10,"450 Church St, Los Angeles, CA 90001" +207910,Apple Airpods Headphones,1,150,06/25/19 15:17,"995 8th St, San Francisco, CA 94016" +207910,USB-C Charging Cable,1,11.95,06/25/19 15:17,"995 8th St, San Francisco, CA 94016" +207911,Wired Headphones,1,11.99,06/18/19 07:49,"954 Main St, San Francisco, CA 94016" +207912,AA Batteries (4-pack),1,3.84,06/18/19 11:08,"122 Church St, Austin, TX 73301" +207913,Lightning Charging Cable,1,14.95,06/16/19 19:18,"605 Cedar St, San Francisco, CA 94016" +207914,Lightning Charging Cable,1,14.95,06/19/19 09:23,"558 Walnut St, San Francisco, CA 94016" +207915,USB-C Charging Cable,1,11.95,06/02/19 12:03,"556 North St, New York City, NY 10001" +207916,20in Monitor,1,109.99,06/13/19 17:27,"398 Meadow St, Atlanta, GA 30301" +207917,USB-C Charging Cable,1,11.95,06/17/19 14:36,"57 Main St, Dallas, TX 75001" +207918,Wired Headphones,1,11.99,06/18/19 07:38,"810 Spruce St, New York City, NY 10001" +207919,Wired Headphones,1,11.99,06/11/19 13:56,"624 14th St, Atlanta, GA 30301" +207920,AA Batteries (4-pack),2,3.84,06/24/19 13:59,"150 Hickory St, New York City, NY 10001" +207921,Bose SoundSport Headphones,1,99.99,06/10/19 21:17,"281 11th St, San Francisco, CA 94016" +207922,Lightning Charging Cable,1,14.95,06/29/19 10:01,"766 Maple St, Portland, OR 97035" +207923,Apple Airpods Headphones,1,150,06/17/19 10:39,"263 Johnson St, San Francisco, CA 94016" +207924,Wired Headphones,1,11.99,06/25/19 12:24,"816 7th St, Los Angeles, CA 90001" +207925,USB-C Charging Cable,1,11.95,06/27/19 21:17,"970 River St, Los Angeles, CA 90001" +207926,iPhone,1,700,06/27/19 12:03,"394 Johnson St, Atlanta, GA 30301" +207926,Lightning Charging Cable,1,14.95,06/27/19 12:03,"394 Johnson St, Atlanta, GA 30301" +207927,USB-C Charging Cable,1,11.95,06/19/19 08:17,"160 5th St, San Francisco, CA 94016" +207928,USB-C Charging Cable,1,11.95,06/07/19 23:57,"51 Highland St, San Francisco, CA 94016" +207929,USB-C Charging Cable,1,11.95,06/25/19 20:15,"555 Lakeview St, Portland, ME 04101" +207930,Wired Headphones,1,11.99,06/05/19 04:25,"748 Hickory St, San Francisco, CA 94016" +207931,USB-C Charging Cable,1,11.95,06/03/19 10:13,"894 Cherry St, Austin, TX 73301" +207932,USB-C Charging Cable,1,11.95,06/16/19 19:31,"567 Hill St, Los Angeles, CA 90001" +207933,USB-C Charging Cable,1,11.95,06/18/19 01:20,"648 Wilson St, Dallas, TX 75001" +207934,Macbook Pro Laptop,1,1700,06/05/19 13:32,"255 River St, Boston, MA 02215" +207935,AAA Batteries (4-pack),3,2.99,06/24/19 00:04,"854 9th St, New York City, NY 10001" +207936,AA Batteries (4-pack),1,3.84,06/02/19 13:34,"263 Jackson St, San Francisco, CA 94016" +207937,Bose SoundSport Headphones,1,99.99,06/16/19 22:49,"79 Jefferson St, San Francisco, CA 94016" +207938,Vareebadd Phone,1,400,06/11/19 05:30,"140 Johnson St, New York City, NY 10001" +207939,Lightning Charging Cable,1,14.95,07/01/19 02:18,"25 7th St, Portland, ME 04101" +207940,AA Batteries (4-pack),1,3.84,06/26/19 07:43,"836 14th St, Boston, MA 02215" +207941,Lightning Charging Cable,1,14.95,06/21/19 16:07,"138 11th St, Boston, MA 02215" +207942,USB-C Charging Cable,1,11.95,06/13/19 15:59,"73 14th St, Atlanta, GA 30301" +207943,27in 4K Gaming Monitor,1,389.99,06/11/19 17:58,"461 1st St, Austin, TX 73301" +207944,AAA Batteries (4-pack),1,2.99,06/07/19 17:05,"728 Adams St, Seattle, WA 98101" +207945,Wired Headphones,1,11.99,06/19/19 12:07,"771 11th St, Dallas, TX 75001" +207946,AA Batteries (4-pack),1,3.84,06/08/19 17:29,"713 Madison St, New York City, NY 10001" +207947,ThinkPad Laptop,1,999.99,06/27/19 01:05,"736 Elm St, Los Angeles, CA 90001" +207948,AA Batteries (4-pack),1,3.84,06/29/19 20:42,"185 Hill St, Los Angeles, CA 90001" +207949,Apple Airpods Headphones,1,150,06/27/19 13:04,"111 Willow St, Atlanta, GA 30301" +207950,Vareebadd Phone,1,400,06/14/19 17:28,"390 River St, Los Angeles, CA 90001" +207951,LG Washing Machine,1,600.0,06/13/19 11:41,"204 Madison St, Los Angeles, CA 90001" +207952,AA Batteries (4-pack),1,3.84,06/13/19 15:53,"39 Maple St, New York City, NY 10001" +207953,27in FHD Monitor,1,149.99,06/03/19 11:47,"86 West St, Los Angeles, CA 90001" +207954,AAA Batteries (4-pack),1,2.99,06/14/19 07:42,"862 Hickory St, Boston, MA 02215" +207955,Lightning Charging Cable,1,14.95,06/01/19 08:12,"366 Willow St, Portland, OR 97035" +207956,AA Batteries (4-pack),1,3.84,06/18/19 12:16,"58 Adams St, Boston, MA 02215" +207957,AAA Batteries (4-pack),1,2.99,06/11/19 18:37,"939 West St, San Francisco, CA 94016" +207958,ThinkPad Laptop,1,999.99,06/06/19 17:08,"360 Lake St, Austin, TX 73301" +207959,AAA Batteries (4-pack),1,2.99,06/10/19 07:53,"980 Jefferson St, New York City, NY 10001" +207960,AA Batteries (4-pack),1,3.84,06/30/19 19:53,"608 2nd St, Seattle, WA 98101" +207961,Google Phone,1,600,06/15/19 11:55,"847 Madison St, San Francisco, CA 94016" +207962,27in 4K Gaming Monitor,1,389.99,06/17/19 13:12,"912 2nd St, Portland, ME 04101" +207963,AA Batteries (4-pack),1,3.84,06/03/19 21:02,"858 9th St, Los Angeles, CA 90001" +207964,Google Phone,1,600,06/04/19 21:20,"718 Willow St, Dallas, TX 75001" +207965,Flatscreen TV,1,300,06/04/19 10:04,"559 Cherry St, Portland, OR 97035" +207966,Apple Airpods Headphones,1,150,06/04/19 15:02,"832 Dogwood St, Los Angeles, CA 90001" +207967,34in Ultrawide Monitor,1,379.99,06/09/19 19:01,"311 Main St, Atlanta, GA 30301" +207968,Lightning Charging Cable,1,14.95,06/26/19 21:21,"71 Cedar St, Seattle, WA 98101" +207968,USB-C Charging Cable,1,11.95,06/26/19 21:21,"71 Cedar St, Seattle, WA 98101" +207969,AA Batteries (4-pack),3,3.84,06/24/19 21:25,"391 Chestnut St, Portland, ME 04101" +207970,Wired Headphones,1,11.99,06/26/19 22:31,"5 Johnson St, Austin, TX 73301" +207971,27in FHD Monitor,1,149.99,06/29/19 18:57,"783 West St, San Francisco, CA 94016" +207972,Flatscreen TV,1,300,06/19/19 21:04,"552 Ridge St, San Francisco, CA 94016" +207973,Apple Airpods Headphones,1,150,06/14/19 13:21,"204 Elm St, Portland, OR 97035" +207974,Flatscreen TV,1,300,06/09/19 12:23,"905 Hickory St, Portland, OR 97035" +207974,AA Batteries (4-pack),1,3.84,06/09/19 12:23,"905 Hickory St, Portland, OR 97035" +207975,Vareebadd Phone,1,400,06/04/19 10:52,"498 South St, San Francisco, CA 94016" +207975,USB-C Charging Cable,1,11.95,06/04/19 10:52,"498 South St, San Francisco, CA 94016" +207976,Lightning Charging Cable,1,14.95,06/18/19 16:53,"333 Ridge St, Los Angeles, CA 90001" +207977,Vareebadd Phone,1,400,06/30/19 10:58,"795 Elm St, Los Angeles, CA 90001" +207978,Lightning Charging Cable,1,14.95,06/26/19 14:29,"663 9th St, San Francisco, CA 94016" +207979,20in Monitor,1,109.99,06/18/19 14:11,"577 Washington St, Los Angeles, CA 90001" +207980,AA Batteries (4-pack),1,3.84,06/19/19 15:16,"162 Dogwood St, Los Angeles, CA 90001" +207981,Wired Headphones,1,11.99,06/02/19 07:29,"477 Highland St, San Francisco, CA 94016" +207982,Lightning Charging Cable,1,14.95,06/27/19 06:12,"19 Dogwood St, San Francisco, CA 94016" +207983,Bose SoundSport Headphones,1,99.99,06/23/19 17:58,"616 Dogwood St, Atlanta, GA 30301" +207984,Bose SoundSport Headphones,1,99.99,06/17/19 08:25,"176 Maple St, Austin, TX 73301" +207985,Wired Headphones,1,11.99,06/24/19 12:16,"861 Church St, San Francisco, CA 94016" +207986,27in FHD Monitor,1,149.99,06/14/19 12:14,"719 Johnson St, Boston, MA 02215" +207987,Lightning Charging Cable,1,14.95,06/04/19 20:56,"704 Forest St, Los Angeles, CA 90001" +207988,AAA Batteries (4-pack),1,2.99,06/19/19 13:40,"728 Church St, New York City, NY 10001" +207989,USB-C Charging Cable,1,11.95,06/19/19 02:24,"887 9th St, New York City, NY 10001" +207990,Lightning Charging Cable,2,14.95,06/09/19 17:43,"376 9th St, Seattle, WA 98101" +207991,Apple Airpods Headphones,1,150,06/08/19 09:55,"617 West St, Atlanta, GA 30301" +207992,Apple Airpods Headphones,1,150,06/18/19 17:38,"151 Lake St, San Francisco, CA 94016" +207993,Apple Airpods Headphones,1,150,06/29/19 18:13,"262 West St, New York City, NY 10001" +207994,Bose SoundSport Headphones,1,99.99,06/27/19 13:05,"288 Maple St, Austin, TX 73301" +207995,Apple Airpods Headphones,1,150,06/19/19 10:54,"170 Cherry St, Los Angeles, CA 90001" +207996,Google Phone,1,600,06/09/19 20:45,"938 2nd St, Austin, TX 73301" +207996,Wired Headphones,1,11.99,06/09/19 20:45,"938 2nd St, Austin, TX 73301" +207997,Flatscreen TV,1,300,06/03/19 21:33,"904 Church St, Seattle, WA 98101" +207998,Lightning Charging Cable,2,14.95,06/18/19 13:34,"474 Hickory St, San Francisco, CA 94016" +207999,Macbook Pro Laptop,1,1700,06/16/19 14:25,"668 Main St, Los Angeles, CA 90001" +208000,Macbook Pro Laptop,1,1700,06/04/19 20:34,"696 Ridge St, Los Angeles, CA 90001" +208001,34in Ultrawide Monitor,1,379.99,06/04/19 18:15,"793 Adams St, Dallas, TX 75001" +208002,Bose SoundSport Headphones,1,99.99,06/02/19 14:49,"756 9th St, San Francisco, CA 94016" +208003,AAA Batteries (4-pack),1,2.99,06/28/19 05:49,"652 1st St, Austin, TX 73301" +208004,27in 4K Gaming Monitor,1,389.99,06/29/19 13:09,"181 Cherry St, Los Angeles, CA 90001" +208005,Lightning Charging Cable,1,14.95,06/03/19 14:37,"472 Washington St, Austin, TX 73301" +208006,Wired Headphones,1,11.99,06/02/19 12:47,"808 Meadow St, New York City, NY 10001" +208007,USB-C Charging Cable,1,11.95,06/27/19 09:56,"548 Johnson St, Los Angeles, CA 90001" +208008,Apple Airpods Headphones,1,150,06/30/19 13:58,"225 Dogwood St, Austin, TX 73301" +208009,Lightning Charging Cable,1,14.95,06/19/19 11:00,"167 Jackson St, New York City, NY 10001" +208010,AAA Batteries (4-pack),1,2.99,06/10/19 18:08,"368 Hill St, Austin, TX 73301" +208011,Bose SoundSport Headphones,1,99.99,06/25/19 12:14,"212 Jackson St, Dallas, TX 75001" +208012,Google Phone,1,600,06/13/19 13:31,"702 Lakeview St, Boston, MA 02215" +208012,USB-C Charging Cable,2,11.95,06/13/19 13:31,"702 Lakeview St, Boston, MA 02215" +208013,USB-C Charging Cable,1,11.95,06/27/19 15:13,"699 11th St, Austin, TX 73301" +208014,Wired Headphones,1,11.99,06/17/19 10:55,"818 Hill St, New York City, NY 10001" +208015,USB-C Charging Cable,1,11.95,06/18/19 09:18,"179 Forest St, Los Angeles, CA 90001" +208016,27in 4K Gaming Monitor,1,389.99,06/10/19 13:16,"183 Willow St, Los Angeles, CA 90001" +208017,ThinkPad Laptop,1,999.99,06/20/19 03:50,"259 Chestnut St, Atlanta, GA 30301" +208018,AA Batteries (4-pack),1,3.84,06/17/19 21:28,"685 West St, San Francisco, CA 94016" +208019,AA Batteries (4-pack),1,3.84,06/24/19 21:15,"884 Maple St, San Francisco, CA 94016" +208020,Lightning Charging Cable,1,14.95,06/25/19 23:53,"248 2nd St, New York City, NY 10001" +208021,AAA Batteries (4-pack),2,2.99,06/19/19 22:32,"490 Sunset St, Boston, MA 02215" +208022,Lightning Charging Cable,1,14.95,06/09/19 15:21,"990 Lake St, Atlanta, GA 30301" +208023,27in FHD Monitor,1,149.99,06/02/19 17:47,"317 Forest St, San Francisco, CA 94016" +208024,Lightning Charging Cable,1,14.95,06/21/19 05:48,"467 Walnut St, Los Angeles, CA 90001" +208025,USB-C Charging Cable,1,11.95,06/10/19 21:28,"328 Adams St, Austin, TX 73301" +208026,AA Batteries (4-pack),3,3.84,06/19/19 09:38,"608 Church St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +208027,Apple Airpods Headphones,1,150,06/14/19 12:58,"809 Willow St, Boston, MA 02215" +208028,34in Ultrawide Monitor,1,379.99,06/25/19 22:45,"552 Sunset St, San Francisco, CA 94016" +208029,Lightning Charging Cable,1,14.95,06/22/19 11:27,"637 Madison St, Portland, OR 97035" +208030,AA Batteries (4-pack),2,3.84,06/26/19 22:42,"478 Ridge St, Seattle, WA 98101" +208031,Flatscreen TV,1,300,06/20/19 09:10,"708 1st St, New York City, NY 10001" +208032,27in 4K Gaming Monitor,1,389.99,06/29/19 22:46,"539 Forest St, San Francisco, CA 94016" +208033,Apple Airpods Headphones,1,150,06/24/19 11:34,"877 Highland St, Los Angeles, CA 90001" +208034,iPhone,1,700,06/06/19 10:09,"171 Lake St, San Francisco, CA 94016" +208035,27in FHD Monitor,1,149.99,06/22/19 13:38,"245 Chestnut St, Dallas, TX 75001" +208036,20in Monitor,1,109.99,06/28/19 21:17,"623 11th St, Seattle, WA 98101" +208037,Lightning Charging Cable,1,14.95,06/22/19 23:18,"950 Pine St, Seattle, WA 98101" +208038,AAA Batteries (4-pack),1,2.99,06/16/19 18:33,"541 Madison St, Dallas, TX 75001" +208039,Wired Headphones,1,11.99,06/27/19 00:40,"529 Spruce St, Seattle, WA 98101" +208040,AAA Batteries (4-pack),1,2.99,06/18/19 15:12,"575 Cedar St, San Francisco, CA 94016" +208041,Bose SoundSport Headphones,1,99.99,06/23/19 14:33,"776 Adams St, New York City, NY 10001" +208042,Vareebadd Phone,1,400,06/13/19 16:52,"495 8th St, Atlanta, GA 30301" +208043,Vareebadd Phone,1,400,06/24/19 15:23,"109 11th St, Los Angeles, CA 90001" +208044,AA Batteries (4-pack),2,3.84,06/24/19 19:58,"780 Jefferson St, Los Angeles, CA 90001" +208045,USB-C Charging Cable,1,11.95,06/27/19 17:33,"324 11th St, Boston, MA 02215" +208046,Wired Headphones,1,11.99,06/23/19 20:30,"840 Highland St, Dallas, TX 75001" +208046,27in 4K Gaming Monitor,1,389.99,06/23/19 20:30,"840 Highland St, Dallas, TX 75001" +208047,AAA Batteries (4-pack),1,2.99,06/12/19 09:28,"578 Hill St, Boston, MA 02215" +208048,Bose SoundSport Headphones,1,99.99,06/30/19 16:46,"630 Center St, Atlanta, GA 30301" +208049,USB-C Charging Cable,1,11.95,06/16/19 19:58,"96 Chestnut St, Los Angeles, CA 90001" +208050,Google Phone,1,600,06/11/19 16:22,"153 Dogwood St, San Francisco, CA 94016" +208051,Apple Airpods Headphones,1,150,06/07/19 11:48,"960 Willow St, Atlanta, GA 30301" +208052,iPhone,1,700,06/19/19 17:35,"76 11th St, Atlanta, GA 30301" +208053,Apple Airpods Headphones,1,150,06/02/19 11:47,"781 Lincoln St, San Francisco, CA 94016" +208054,Apple Airpods Headphones,1,150,06/14/19 17:52,"67 Ridge St, San Francisco, CA 94016" +208055,Apple Airpods Headphones,1,150,06/11/19 23:08,"944 Spruce St, Los Angeles, CA 90001" +208056,AAA Batteries (4-pack),1,2.99,06/27/19 20:00,"183 Ridge St, Boston, MA 02215" +208057,Wired Headphones,1,11.99,06/05/19 18:26,"529 Elm St, Seattle, WA 98101" +208058,Bose SoundSport Headphones,1,99.99,06/02/19 21:42,"885 Dogwood St, San Francisco, CA 94016" +208059,Lightning Charging Cable,1,14.95,06/22/19 15:02,"995 14th St, Dallas, TX 75001" +208060,Lightning Charging Cable,1,14.95,06/21/19 10:16,"656 13th St, Boston, MA 02215" +208061,USB-C Charging Cable,1,11.95,06/02/19 19:58,"870 Church St, San Francisco, CA 94016" +208062,AAA Batteries (4-pack),1,2.99,06/27/19 13:20,"35 Chestnut St, Dallas, TX 75001" +208063,USB-C Charging Cable,1,11.95,06/24/19 11:16,"270 10th St, San Francisco, CA 94016" +208064,USB-C Charging Cable,1,11.95,06/17/19 16:45,"169 Elm St, Atlanta, GA 30301" +208065,AAA Batteries (4-pack),1,2.99,06/23/19 12:11,"47 Johnson St, New York City, NY 10001" +208066,Bose SoundSport Headphones,1,99.99,06/21/19 19:33,"25 Cedar St, Los Angeles, CA 90001" +208067,iPhone,1,700,06/18/19 10:25,"331 7th St, San Francisco, CA 94016" +208068,AA Batteries (4-pack),1,3.84,06/15/19 11:00,"569 Meadow St, Seattle, WA 98101" +208069,Lightning Charging Cable,1,14.95,06/13/19 12:59,"71 North St, New York City, NY 10001" +208070,AA Batteries (4-pack),1,3.84,06/19/19 21:11,"822 12th St, Atlanta, GA 30301" +208071,AA Batteries (4-pack),1,3.84,06/06/19 20:23,"406 12th St, Los Angeles, CA 90001" +208072,Wired Headphones,1,11.99,06/23/19 18:48,"192 Spruce St, New York City, NY 10001" +208073,AA Batteries (4-pack),1,3.84,06/12/19 19:58,"566 2nd St, Los Angeles, CA 90001" +208074,27in FHD Monitor,1,149.99,06/08/19 17:38,"732 Jefferson St, New York City, NY 10001" +208075,Google Phone,1,600,06/03/19 15:03,"181 Dogwood St, New York City, NY 10001" +208076,Apple Airpods Headphones,1,150,06/13/19 23:33,"970 Jackson St, San Francisco, CA 94016" +208077,USB-C Charging Cable,1,11.95,06/25/19 14:08,"895 Spruce St, Boston, MA 02215" +208078,Flatscreen TV,1,300,06/16/19 22:41,"88 7th St, Dallas, TX 75001" +208079,ThinkPad Laptop,1,999.99,06/11/19 13:18,"298 4th St, Boston, MA 02215" +208080,Lightning Charging Cable,1,14.95,06/03/19 00:51,"946 Maple St, Dallas, TX 75001" +208081,Apple Airpods Headphones,1,150,06/15/19 10:03,"945 Meadow St, Los Angeles, CA 90001" +208082,Wired Headphones,1,11.99,06/30/19 19:48,"619 Meadow St, Dallas, TX 75001" +208083,27in 4K Gaming Monitor,1,389.99,06/21/19 12:47,"346 Willow St, Dallas, TX 75001" +208084,AA Batteries (4-pack),2,3.84,06/28/19 07:59,"162 Jefferson St, Dallas, TX 75001" +208085,AAA Batteries (4-pack),1,2.99,06/04/19 08:45,"719 Lake St, Los Angeles, CA 90001" +208086,AAA Batteries (4-pack),1,2.99,06/07/19 18:39,"576 Center St, Austin, TX 73301" +208087,Apple Airpods Headphones,1,150,06/23/19 18:52,"798 9th St, Seattle, WA 98101" +208088,Lightning Charging Cable,1,14.95,06/04/19 23:59,"768 12th St, Boston, MA 02215" +208089,AA Batteries (4-pack),1,3.84,06/22/19 09:27,"752 Adams St, Boston, MA 02215" +208090,Lightning Charging Cable,1,14.95,06/04/19 13:42,"497 1st St, Boston, MA 02215" +208091,Lightning Charging Cable,2,14.95,06/24/19 21:36,"148 Walnut St, San Francisco, CA 94016" +208092,Lightning Charging Cable,1,14.95,06/05/19 12:51,"998 9th St, Atlanta, GA 30301" +208093,Flatscreen TV,1,300,06/29/19 15:31,"940 9th St, New York City, NY 10001" +208094,27in 4K Gaming Monitor,1,389.99,06/28/19 15:58,"997 Jefferson St, Boston, MA 02215" +208095,Google Phone,1,600,06/03/19 16:40,"358 Walnut St, Dallas, TX 75001" +208095,USB-C Charging Cable,1,11.95,06/03/19 16:40,"358 Walnut St, Dallas, TX 75001" +208096,Bose SoundSport Headphones,1,99.99,06/01/19 18:13,"404 Pine St, New York City, NY 10001" +208097,ThinkPad Laptop,1,999.99,06/23/19 11:32,"971 Johnson St, Boston, MA 02215" +208098,ThinkPad Laptop,1,999.99,06/28/19 21:36,"428 Cherry St, San Francisco, CA 94016" +208099,AA Batteries (4-pack),1,3.84,06/27/19 10:54,"359 1st St, Seattle, WA 98101" +208100,27in FHD Monitor,1,149.99,06/29/19 22:48,"528 Jefferson St, New York City, NY 10001" +208100,USB-C Charging Cable,1,11.95,06/29/19 22:48,"528 Jefferson St, New York City, NY 10001" +208101,ThinkPad Laptop,1,999.99,06/15/19 13:50,"787 Cedar St, Dallas, TX 75001" +208102,Lightning Charging Cable,2,14.95,06/04/19 07:55,"392 4th St, Portland, OR 97035" +208103,Bose SoundSport Headphones,1,99.99,06/14/19 09:04,"354 Chestnut St, New York City, NY 10001" +208104,Lightning Charging Cable,1,14.95,06/18/19 19:06,"233 Highland St, Seattle, WA 98101" +208105,Flatscreen TV,1,300,06/29/19 10:18,"229 Maple St, San Francisco, CA 94016" +208106,Google Phone,1,600,06/23/19 14:35,"232 Lincoln St, San Francisco, CA 94016" +208107,Wired Headphones,1,11.99,06/20/19 10:39,"558 8th St, Los Angeles, CA 90001" +208108,AA Batteries (4-pack),3,3.84,06/22/19 01:04,"760 Willow St, San Francisco, CA 94016" +208109,Apple Airpods Headphones,1,150,06/30/19 21:01,"188 Center St, Atlanta, GA 30301" +208110,Wired Headphones,1,11.99,06/14/19 20:11,"94 2nd St, New York City, NY 10001" +208111,Lightning Charging Cable,1,14.95,06/22/19 08:41,"69 13th St, Dallas, TX 75001" +208112,Google Phone,1,600,06/14/19 00:00,"746 Hill St, Dallas, TX 75001" +208112,USB-C Charging Cable,1,11.95,06/14/19 00:00,"746 Hill St, Dallas, TX 75001" +208113,USB-C Charging Cable,1,11.95,06/04/19 20:18,"930 Maple St, Austin, TX 73301" +208114,AAA Batteries (4-pack),1,2.99,06/20/19 11:22,"966 Cedar St, San Francisco, CA 94016" +208114,iPhone,1,700,06/20/19 11:22,"966 Cedar St, San Francisco, CA 94016" +208115,Bose SoundSport Headphones,1,99.99,06/22/19 15:47,"172 4th St, Atlanta, GA 30301" +208116,Flatscreen TV,1,300,06/18/19 15:11,"247 Pine St, San Francisco, CA 94016" +208117,AA Batteries (4-pack),2,3.84,06/17/19 18:50,"701 Park St, Dallas, TX 75001" +208118,USB-C Charging Cable,1,11.95,06/08/19 17:40,"316 1st St, San Francisco, CA 94016" +208119,iPhone,1,700,06/19/19 09:13,"903 7th St, San Francisco, CA 94016" +208120,Lightning Charging Cable,1,14.95,06/04/19 16:30,"573 Meadow St, San Francisco, CA 94016" +208121,20in Monitor,1,109.99,06/30/19 18:22,"616 10th St, Atlanta, GA 30301" +208122,AA Batteries (4-pack),1,3.84,06/15/19 17:58,"404 11th St, Los Angeles, CA 90001" +208123,Bose SoundSport Headphones,1,99.99,06/03/19 07:32,"160 Maple St, Dallas, TX 75001" +208124,20in Monitor,1,109.99,06/26/19 22:34,"464 12th St, Boston, MA 02215" +208125,Lightning Charging Cable,1,14.95,06/07/19 12:47,"565 Jefferson St, New York City, NY 10001" +208126,AAA Batteries (4-pack),2,2.99,06/01/19 21:53,"934 Cedar St, San Francisco, CA 94016" +208127,20in Monitor,1,109.99,06/11/19 20:00,"30 Walnut St, Atlanta, GA 30301" +208128,Wired Headphones,1,11.99,06/03/19 19:19,"227 Lakeview St, Austin, TX 73301" +208129,Wired Headphones,1,11.99,06/01/19 19:59,"420 River St, New York City, NY 10001" +208130,USB-C Charging Cable,1,11.95,06/14/19 17:21,"354 5th St, Dallas, TX 75001" +208131,iPhone,1,700,06/10/19 07:10,"469 7th St, San Francisco, CA 94016" +208132,Apple Airpods Headphones,1,150,06/09/19 13:17,"684 Walnut St, New York City, NY 10001" +208133,USB-C Charging Cable,1,11.95,06/27/19 17:39,"81 9th St, San Francisco, CA 94016" +208134,Bose SoundSport Headphones,1,99.99,06/25/19 16:22,"158 2nd St, Dallas, TX 75001" +208135,Wired Headphones,2,11.99,06/06/19 23:25,"711 Madison St, San Francisco, CA 94016" +208136,Macbook Pro Laptop,1,1700,06/28/19 15:55,"494 Johnson St, Seattle, WA 98101" +208137,Lightning Charging Cable,1,14.95,06/01/19 22:05,"621 Sunset St, San Francisco, CA 94016" +208138,Google Phone,1,600,06/06/19 11:36,"540 Sunset St, Atlanta, GA 30301" +208138,USB-C Charging Cable,1,11.95,06/06/19 11:36,"540 Sunset St, Atlanta, GA 30301" +208138,Wired Headphones,1,11.99,06/06/19 11:36,"540 Sunset St, Atlanta, GA 30301" +208139,AAA Batteries (4-pack),3,2.99,06/19/19 17:32,"119 Adams St, Los Angeles, CA 90001" +208140,AAA Batteries (4-pack),1,2.99,06/14/19 17:36,"282 Willow St, Portland, OR 97035" +208141,ThinkPad Laptop,1,999.99,06/17/19 11:57,"193 Wilson St, Dallas, TX 75001" +208142,Apple Airpods Headphones,1,150,06/06/19 01:42,"929 Lakeview St, Los Angeles, CA 90001" +208142,Wired Headphones,1,11.99,06/06/19 01:42,"929 Lakeview St, Los Angeles, CA 90001" +208143,Wired Headphones,1,11.99,06/01/19 12:45,"401 Main St, San Francisco, CA 94016" +208144,34in Ultrawide Monitor,1,379.99,06/09/19 23:02,"564 2nd St, New York City, NY 10001" +208145,Lightning Charging Cable,2,14.95,06/19/19 12:02,"400 Johnson St, Los Angeles, CA 90001" +208146,Lightning Charging Cable,1,14.95,06/07/19 15:33,"261 9th St, San Francisco, CA 94016" +208147,Bose SoundSport Headphones,1,99.99,06/03/19 13:35,"366 Jefferson St, Austin, TX 73301" +208148,Macbook Pro Laptop,1,1700,06/09/19 14:52,"155 Jackson St, New York City, NY 10001" +208149,Bose SoundSport Headphones,1,99.99,06/14/19 18:50,"652 9th St, San Francisco, CA 94016" +208150,AA Batteries (4-pack),1,3.84,06/30/19 13:10,"66 Sunset St, Boston, MA 02215" +208151,27in FHD Monitor,1,149.99,06/04/19 12:31,"375 Hill St, Portland, OR 97035" +208152,27in FHD Monitor,1,149.99,06/08/19 17:23,"861 13th St, Portland, OR 97035" +208153,AA Batteries (4-pack),1,3.84,06/12/19 18:32,"428 Church St, New York City, NY 10001" +208154,USB-C Charging Cable,1,11.95,06/13/19 08:57,"420 2nd St, New York City, NY 10001" +208155,USB-C Charging Cable,1,11.95,06/17/19 15:00,"758 5th St, San Francisco, CA 94016" +208156,27in 4K Gaming Monitor,1,389.99,06/13/19 18:14,"9 River St, Seattle, WA 98101" +208157,Bose SoundSport Headphones,1,99.99,06/15/19 22:23,"571 North St, San Francisco, CA 94016" +208158,USB-C Charging Cable,1,11.95,06/26/19 16:52,"569 Walnut St, Los Angeles, CA 90001" +208159,AA Batteries (4-pack),1,3.84,06/26/19 20:10,"379 Hill St, San Francisco, CA 94016" +208160,Apple Airpods Headphones,1,150,06/18/19 21:09,"814 Spruce St, Boston, MA 02215" +208161,USB-C Charging Cable,1,11.95,06/14/19 20:34,"821 9th St, Portland, OR 97035" +208162,LG Washing Machine,1,600.0,06/17/19 22:20,"500 Jackson St, Los Angeles, CA 90001" +208163,27in FHD Monitor,1,149.99,06/01/19 18:15,"547 Dogwood St, Atlanta, GA 30301" +208164,AA Batteries (4-pack),1,3.84,06/21/19 09:32,"621 2nd St, New York City, NY 10001" +208165,Bose SoundSport Headphones,1,99.99,06/26/19 12:01,"359 Madison St, New York City, NY 10001" +208166,ThinkPad Laptop,1,999.99,06/18/19 17:36,"293 North St, Austin, TX 73301" +208167,AAA Batteries (4-pack),2,2.99,06/08/19 20:11,"475 Main St, New York City, NY 10001" +208168,AAA Batteries (4-pack),1,2.99,06/27/19 12:41,"566 2nd St, Seattle, WA 98101" +208169,USB-C Charging Cable,1,11.95,06/29/19 16:53,"553 Forest St, San Francisco, CA 94016" +208170,Google Phone,1,600,06/18/19 18:33,"185 14th St, San Francisco, CA 94016" +208171,Wired Headphones,1,11.99,06/26/19 23:22,"164 North St, Boston, MA 02215" +208172,USB-C Charging Cable,1,11.95,06/23/19 10:54,"86 Lake St, New York City, NY 10001" +208173,Vareebadd Phone,1,400,06/17/19 14:35,"218 2nd St, Dallas, TX 75001" +208174,iPhone,1,700,06/29/19 22:23,"661 Cedar St, New York City, NY 10001" +208175,Apple Airpods Headphones,1,150,06/22/19 11:40,"322 West St, San Francisco, CA 94016" +208175,AAA Batteries (4-pack),2,2.99,06/22/19 11:40,"322 West St, San Francisco, CA 94016" +208176,Flatscreen TV,1,300,06/21/19 16:25,"442 Adams St, San Francisco, CA 94016" +208177,AA Batteries (4-pack),1,3.84,06/16/19 00:55,"426 Jefferson St, Portland, OR 97035" +208178,34in Ultrawide Monitor,1,379.99,06/15/19 12:31,"661 Walnut St, New York City, NY 10001" +208179,Google Phone,1,600,06/21/19 04:08,"649 Center St, San Francisco, CA 94016" +208180,AA Batteries (4-pack),2,3.84,06/27/19 20:02,"11 9th St, Dallas, TX 75001" +208181,USB-C Charging Cable,1,11.95,06/06/19 22:24,"305 6th St, New York City, NY 10001" +208182,Flatscreen TV,1,300,06/28/19 20:04,"405 14th St, Seattle, WA 98101" +208183,Lightning Charging Cable,1,14.95,06/03/19 22:52,"704 Cherry St, San Francisco, CA 94016" +208184,USB-C Charging Cable,1,11.95,06/30/19 10:49,"331 Hickory St, Seattle, WA 98101" +208185,Google Phone,1,600,06/18/19 11:17,"17 Madison St, San Francisco, CA 94016" +208186,USB-C Charging Cable,1,11.95,06/14/19 17:28,"533 Jackson St, Boston, MA 02215" +208187,Bose SoundSport Headphones,1,99.99,06/14/19 00:30,"208 1st St, Los Angeles, CA 90001" +208188,Lightning Charging Cable,1,14.95,06/19/19 17:51,"978 Hill St, Dallas, TX 75001" +208189,AA Batteries (4-pack),1,3.84,06/15/19 10:00,"963 Jefferson St, Atlanta, GA 30301" +208190,USB-C Charging Cable,1,11.95,06/18/19 00:07,"105 Ridge St, New York City, NY 10001" +208191,USB-C Charging Cable,1,11.95,06/29/19 15:50,"578 Adams St, Boston, MA 02215" +208192,Apple Airpods Headphones,1,150,06/26/19 22:29,"611 Maple St, Boston, MA 02215" +208193,AAA Batteries (4-pack),1,2.99,06/25/19 08:20,"449 1st St, Los Angeles, CA 90001" +208194,Bose SoundSport Headphones,1,99.99,06/03/19 07:43,"298 Ridge St, Boston, MA 02215" +208195,USB-C Charging Cable,1,11.95,06/20/19 17:18,"94 Lincoln St, Los Angeles, CA 90001" +208196,Lightning Charging Cable,1,14.95,06/29/19 15:32,"40 13th St, Seattle, WA 98101" +208197,Wired Headphones,1,11.99,06/23/19 15:01,"857 14th St, Atlanta, GA 30301" +208198,AAA Batteries (4-pack),1,2.99,06/20/19 12:27,"638 Madison St, Los Angeles, CA 90001" +208199,AAA Batteries (4-pack),1,2.99,06/26/19 12:30,"9 11th St, New York City, NY 10001" +208200,iPhone,1,700,06/02/19 09:52,"651 Meadow St, San Francisco, CA 94016" +208201,AA Batteries (4-pack),1,3.84,06/06/19 21:02,"156 9th St, Seattle, WA 98101" +208202,Flatscreen TV,1,300,06/21/19 14:37,"824 North St, New York City, NY 10001" +208203,AAA Batteries (4-pack),1,2.99,06/21/19 16:27,"248 Maple St, Boston, MA 02215" +208204,AAA Batteries (4-pack),4,2.99,06/17/19 19:47,"734 Hill St, Boston, MA 02215" +208205,Lightning Charging Cable,1,14.95,06/14/19 23:55,"937 5th St, San Francisco, CA 94016" +208206,Bose SoundSport Headphones,1,99.99,06/05/19 18:58,"94 Pine St, Los Angeles, CA 90001" +208207,Apple Airpods Headphones,1,150,06/21/19 20:12,"490 North St, Austin, TX 73301" +208208,USB-C Charging Cable,1,11.95,06/18/19 18:00,"672 14th St, San Francisco, CA 94016" +208209,Vareebadd Phone,1,400,06/04/19 13:38,"682 10th St, Portland, OR 97035" +208210,ThinkPad Laptop,1,999.99,06/30/19 15:32,"604 Sunset St, New York City, NY 10001" +208211,AAA Batteries (4-pack),2,2.99,06/12/19 11:42,"926 River St, Los Angeles, CA 90001" +208212,Google Phone,1,600,06/21/19 00:17,"641 Adams St, Boston, MA 02215" +208213,Wired Headphones,1,11.99,06/03/19 10:15,"291 Dogwood St, Austin, TX 73301" +208214,Google Phone,1,600,06/26/19 22:11,"227 Meadow St, Atlanta, GA 30301" +208215,AAA Batteries (4-pack),1,2.99,06/15/19 18:18,"477 Elm St, Atlanta, GA 30301" +208216,Lightning Charging Cable,1,14.95,06/21/19 18:37,"525 Johnson St, Los Angeles, CA 90001" +208217,Lightning Charging Cable,1,14.95,06/16/19 11:47,"427 2nd St, Los Angeles, CA 90001" +208218,ThinkPad Laptop,1,999.99,06/14/19 20:33,"947 Washington St, San Francisco, CA 94016" +208219,Apple Airpods Headphones,1,150,06/15/19 13:07,"79 Lake St, Atlanta, GA 30301" +208220,Bose SoundSport Headphones,1,99.99,06/29/19 08:44,"362 Washington St, Atlanta, GA 30301" +208221,LG Dryer,1,600.0,06/09/19 21:47,"641 Wilson St, San Francisco, CA 94016" +208222,Apple Airpods Headphones,1,150,06/17/19 13:46,"711 11th St, San Francisco, CA 94016" +208223,Bose SoundSport Headphones,1,99.99,06/22/19 20:38,"591 Jefferson St, San Francisco, CA 94016" +208224,USB-C Charging Cable,1,11.95,06/25/19 15:00,"835 11th St, Los Angeles, CA 90001" +208225,Wired Headphones,1,11.99,06/22/19 14:18,"381 Hickory St, Dallas, TX 75001" +208226,Flatscreen TV,1,300,06/11/19 22:20,"834 Highland St, Los Angeles, CA 90001" +208227,AAA Batteries (4-pack),2,2.99,06/24/19 11:50,"670 Madison St, Austin, TX 73301" +208228,Google Phone,1,600,06/25/19 12:57,"722 Church St, San Francisco, CA 94016" +208228,Wired Headphones,1,11.99,06/25/19 12:57,"722 Church St, San Francisco, CA 94016" +208229,USB-C Charging Cable,1,11.95,06/07/19 03:50,"182 Lincoln St, Los Angeles, CA 90001" +208230,Google Phone,1,600,06/22/19 12:49,"497 9th St, Los Angeles, CA 90001" +208230,USB-C Charging Cable,1,11.95,06/22/19 12:49,"497 9th St, Los Angeles, CA 90001" +208231,AA Batteries (4-pack),1,3.84,06/15/19 14:54,"941 Jefferson St, Boston, MA 02215" +208232,iPhone,1,700,06/22/19 19:48,"377 Hill St, San Francisco, CA 94016" +208232,Lightning Charging Cable,1,14.95,06/22/19 19:48,"377 Hill St, San Francisco, CA 94016" +208233,USB-C Charging Cable,1,11.95,06/28/19 15:48,"238 Chestnut St, San Francisco, CA 94016" +208234,AA Batteries (4-pack),3,3.84,06/06/19 11:29,"240 Washington St, Los Angeles, CA 90001" +208235,Lightning Charging Cable,1,14.95,06/11/19 10:18,"203 Church St, Austin, TX 73301" +208236,AA Batteries (4-pack),1,3.84,06/06/19 22:59,"634 Meadow St, Atlanta, GA 30301" +208237,Lightning Charging Cable,1,14.95,06/07/19 15:09,"735 North St, Los Angeles, CA 90001" +208238,27in FHD Monitor,1,149.99,06/05/19 14:07,"648 Chestnut St, San Francisco, CA 94016" +208239,27in FHD Monitor,1,149.99,06/15/19 08:27,"594 Forest St, Austin, TX 73301" +208240,Lightning Charging Cable,1,14.95,06/16/19 17:51,"994 4th St, Los Angeles, CA 90001" +208241,AA Batteries (4-pack),1,3.84,06/06/19 15:25,"355 4th St, Dallas, TX 75001" +208242,Bose SoundSport Headphones,1,99.99,06/05/19 22:56,"269 Park St, Boston, MA 02215" +208243,AAA Batteries (4-pack),2,2.99,06/07/19 04:13,"602 Maple St, Boston, MA 02215" +208244,Lightning Charging Cable,1,14.95,06/30/19 01:07,"934 South St, San Francisco, CA 94016" +208245,AAA Batteries (4-pack),1,2.99,06/15/19 23:28,"3 Dogwood St, Los Angeles, CA 90001" +208246,AAA Batteries (4-pack),2,2.99,06/22/19 21:16,"862 7th St, Los Angeles, CA 90001" +208247,Flatscreen TV,1,300,06/04/19 20:30,"889 Lakeview St, Los Angeles, CA 90001" +208248,Lightning Charging Cable,1,14.95,06/11/19 14:50,"238 Dogwood St, Boston, MA 02215" +208249,Wired Headphones,1,11.99,06/28/19 10:33,"683 Forest St, New York City, NY 10001" +208250,USB-C Charging Cable,1,11.95,06/04/19 00:48,"53 Pine St, Dallas, TX 75001" +208251,34in Ultrawide Monitor,1,379.99,06/24/19 13:56,"189 River St, Los Angeles, CA 90001" +208252,Macbook Pro Laptop,1,1700,06/06/19 14:08,"62 1st St, New York City, NY 10001" +208253,Lightning Charging Cable,2,14.95,06/07/19 18:13,"183 River St, Atlanta, GA 30301" +208254,Flatscreen TV,1,300,06/09/19 11:53,"54 North St, New York City, NY 10001" +208255,Wired Headphones,1,11.99,06/07/19 17:43,"566 Cherry St, Los Angeles, CA 90001" +208256,Wired Headphones,1,11.99,06/03/19 14:50,"427 Cherry St, Los Angeles, CA 90001" +208257,Lightning Charging Cable,1,14.95,06/10/19 21:22,"10 Wilson St, Portland, OR 97035" +208258,USB-C Charging Cable,1,11.95,06/02/19 20:36,"736 North St, Boston, MA 02215" +208259,USB-C Charging Cable,1,11.95,06/26/19 18:28,"205 4th St, Portland, OR 97035" +208260,Lightning Charging Cable,1,14.95,06/29/19 19:37,"620 Cherry St, Austin, TX 73301" +208261,27in FHD Monitor,1,149.99,06/08/19 19:50,"131 Johnson St, Boston, MA 02215" +208262,Bose SoundSport Headphones,1,99.99,06/17/19 18:59,"193 Church St, Seattle, WA 98101" +208263,Apple Airpods Headphones,1,150,06/10/19 12:59,"626 Highland St, Los Angeles, CA 90001" +208264,AAA Batteries (4-pack),1,2.99,06/25/19 20:16,"743 Center St, New York City, NY 10001" +208265,USB-C Charging Cable,1,11.95,06/06/19 22:22,"171 Washington St, Boston, MA 02215" +208266,Lightning Charging Cable,1,14.95,06/23/19 19:09,"128 Highland St, San Francisco, CA 94016" +208267,Lightning Charging Cable,1,14.95,06/15/19 11:37,"240 Center St, Seattle, WA 98101" +208268,34in Ultrawide Monitor,1,379.99,06/05/19 14:48,"390 2nd St, San Francisco, CA 94016" +208269,Bose SoundSport Headphones,1,99.99,06/04/19 01:18,"401 North St, Atlanta, GA 30301" +208270,Lightning Charging Cable,1,14.95,06/14/19 18:18,"336 Lake St, Boston, MA 02215" +208271,27in FHD Monitor,1,149.99,06/13/19 13:11,"458 Wilson St, New York City, NY 10001" +208272,Apple Airpods Headphones,1,150,06/10/19 13:48,"261 Jefferson St, Los Angeles, CA 90001" +208273,Macbook Pro Laptop,1,1700,06/16/19 18:13,"943 Walnut St, Los Angeles, CA 90001" +208274,AA Batteries (4-pack),1,3.84,06/01/19 17:44,"956 Highland St, San Francisco, CA 94016" +208275,Vareebadd Phone,1,400,06/06/19 23:44,"83 12th St, Los Angeles, CA 90001" +208276,AAA Batteries (4-pack),1,2.99,06/16/19 10:56,"89 Chestnut St, Boston, MA 02215" +208277,AA Batteries (4-pack),1,3.84,06/05/19 21:58,"805 Willow St, Atlanta, GA 30301" +208278,Lightning Charging Cable,1,14.95,06/06/19 21:21,"591 14th St, Los Angeles, CA 90001" +208279,AAA Batteries (4-pack),3,2.99,06/23/19 21:32,"939 North St, New York City, NY 10001" +208280,20in Monitor,1,109.99,06/09/19 19:39,"671 Lincoln St, Los Angeles, CA 90001" +208281,20in Monitor,1,109.99,06/20/19 17:15,"184 Chestnut St, New York City, NY 10001" +208282,Lightning Charging Cable,1,14.95,06/16/19 13:51,"85 Maple St, Portland, ME 04101" +208283,AAA Batteries (4-pack),1,2.99,06/04/19 21:43,"451 Chestnut St, Dallas, TX 75001" +208284,AAA Batteries (4-pack),1,2.99,06/04/19 16:28,"184 West St, Los Angeles, CA 90001" +208285,20in Monitor,1,109.99,06/05/19 07:54,"197 Center St, Boston, MA 02215" +208286,AA Batteries (4-pack),1,3.84,06/14/19 13:06,"688 Willow St, Los Angeles, CA 90001" +208287,Google Phone,1,600,06/19/19 13:50,"627 Lincoln St, San Francisco, CA 94016" +208287,Bose SoundSport Headphones,1,99.99,06/19/19 13:50,"627 Lincoln St, San Francisco, CA 94016" +208288,ThinkPad Laptop,1,999.99,06/07/19 11:47,"671 Lincoln St, Atlanta, GA 30301" +208289,20in Monitor,1,109.99,06/12/19 21:49,"16 Jackson St, San Francisco, CA 94016" +208290,Macbook Pro Laptop,1,1700,06/26/19 05:32,"123 Chestnut St, San Francisco, CA 94016" +208291,iPhone,1,700,06/13/19 11:57,"383 South St, San Francisco, CA 94016" +208291,Lightning Charging Cable,1,14.95,06/13/19 11:57,"383 South St, San Francisco, CA 94016" +208292,27in 4K Gaming Monitor,1,389.99,06/27/19 01:06,"397 South St, Boston, MA 02215" +208293,AA Batteries (4-pack),1,3.84,06/28/19 07:48,"696 8th St, New York City, NY 10001" +208294,Bose SoundSport Headphones,1,99.99,06/10/19 14:13,"381 7th St, New York City, NY 10001" +208295,27in 4K Gaming Monitor,1,389.99,06/09/19 10:44,"474 Center St, New York City, NY 10001" +208296,AAA Batteries (4-pack),1,2.99,06/03/19 14:42,"209 North St, Dallas, TX 75001" +208297,Bose SoundSport Headphones,1,99.99,06/15/19 14:43,"623 Jackson St, Boston, MA 02215" +208298,Wired Headphones,1,11.99,06/06/19 01:25,"999 Park St, San Francisco, CA 94016" +208299,Lightning Charging Cable,1,14.95,06/07/19 13:17,"505 2nd St, San Francisco, CA 94016" +208300,AA Batteries (4-pack),1,3.84,06/10/19 22:00,"315 Washington St, San Francisco, CA 94016" +208301,AA Batteries (4-pack),1,3.84,06/13/19 18:59,"7 Pine St, Atlanta, GA 30301" +208302,Bose SoundSport Headphones,1,99.99,06/11/19 11:16,"980 8th St, San Francisco, CA 94016" +208303,AA Batteries (4-pack),2,3.84,06/15/19 19:50,"152 Meadow St, San Francisco, CA 94016" +208304,AAA Batteries (4-pack),1,2.99,06/18/19 22:00,"131 4th St, Dallas, TX 75001" +208305,Apple Airpods Headphones,1,150,06/14/19 16:45,"485 Hill St, New York City, NY 10001" +208306,AA Batteries (4-pack),2,3.84,06/27/19 15:26,"451 Spruce St, Austin, TX 73301" +208307,Lightning Charging Cable,1,14.95,06/07/19 20:52,"96 Jackson St, Boston, MA 02215" +208308,Lightning Charging Cable,1,14.95,06/26/19 21:06,"335 1st St, Dallas, TX 75001" +208309,USB-C Charging Cable,1,11.95,06/02/19 13:38,"589 Dogwood St, Atlanta, GA 30301" +208310,Bose SoundSport Headphones,1,99.99,06/24/19 15:20,"816 4th St, Los Angeles, CA 90001" +208311,AA Batteries (4-pack),1,3.84,06/15/19 10:31,"760 10th St, Los Angeles, CA 90001" +208312,Bose SoundSport Headphones,1,99.99,06/07/19 16:25,"910 Chestnut St, Dallas, TX 75001" +208313,AAA Batteries (4-pack),1,2.99,06/06/19 22:42,"254 North St, Atlanta, GA 30301" +208314,Apple Airpods Headphones,1,150,06/06/19 15:55,"206 12th St, Los Angeles, CA 90001" +208315,ThinkPad Laptop,1,999.99,06/22/19 07:44,"919 4th St, Seattle, WA 98101" +208316,AAA Batteries (4-pack),1,2.99,06/08/19 15:08,"505 13th St, San Francisco, CA 94016" +208317,Bose SoundSport Headphones,1,99.99,06/02/19 08:09,"391 Spruce St, Austin, TX 73301" +208318,ThinkPad Laptop,1,999.99,06/30/19 21:55,"681 Lake St, New York City, NY 10001" +208319,Wired Headphones,1,11.99,06/01/19 15:24,"476 Madison St, Boston, MA 02215" +208320,AAA Batteries (4-pack),1,2.99,06/26/19 12:01,"398 10th St, Los Angeles, CA 90001" +208321,Lightning Charging Cable,1,14.95,06/08/19 22:15,"309 8th St, Austin, TX 73301" +208322,Wired Headphones,1,11.99,06/11/19 21:20,"462 Lincoln St, San Francisco, CA 94016" +208323,AAA Batteries (4-pack),1,2.99,06/26/19 21:40,"965 12th St, San Francisco, CA 94016" +208324,USB-C Charging Cable,1,11.95,06/09/19 14:02,"414 Jefferson St, Los Angeles, CA 90001" +208325,USB-C Charging Cable,1,11.95,06/23/19 09:56,"178 Cedar St, New York City, NY 10001" +208326,Bose SoundSport Headphones,1,99.99,06/18/19 12:43,"640 6th St, Dallas, TX 75001" +208327,Lightning Charging Cable,1,14.95,06/06/19 09:12,"388 Park St, Portland, OR 97035" +208328,AAA Batteries (4-pack),1,2.99,06/02/19 14:21,"140 Spruce St, Portland, ME 04101" +208329,Lightning Charging Cable,1,14.95,06/18/19 22:08,"976 Hickory St, Boston, MA 02215" +208330,AAA Batteries (4-pack),1,2.99,06/15/19 13:58,"571 Jefferson St, Portland, OR 97035" +208331,Apple Airpods Headphones,1,150,06/13/19 08:22,"855 10th St, Austin, TX 73301" +208332,Apple Airpods Headphones,1,150,06/20/19 10:13,"27 Wilson St, Atlanta, GA 30301" +208333,AAA Batteries (4-pack),4,2.99,06/25/19 17:31,"201 Maple St, Portland, ME 04101" +208334,Macbook Pro Laptop,1,1700,06/08/19 16:51,"821 Ridge St, San Francisco, CA 94016" +208335,USB-C Charging Cable,1,11.95,06/09/19 10:36,"2 13th St, San Francisco, CA 94016" +208336,Lightning Charging Cable,1,14.95,06/26/19 18:29,"249 Adams St, New York City, NY 10001" +208337,USB-C Charging Cable,1,11.95,06/28/19 22:54,"519 Cedar St, Boston, MA 02215" +208338,ThinkPad Laptop,1,999.99,06/17/19 12:17,"192 Washington St, Los Angeles, CA 90001" +208339,USB-C Charging Cable,1,11.95,06/08/19 19:59,"41 1st St, Los Angeles, CA 90001" +208340,AAA Batteries (4-pack),1,2.99,06/23/19 21:39,"749 Madison St, Portland, OR 97035" +208341,Bose SoundSport Headphones,1,99.99,06/17/19 18:25,"369 Maple St, Boston, MA 02215" +208342,Google Phone,1,600,06/14/19 08:21,"469 Elm St, Dallas, TX 75001" +208343,AA Batteries (4-pack),1,3.84,06/21/19 11:27,"75 Forest St, Los Angeles, CA 90001" +208344,Lightning Charging Cable,1,14.95,06/23/19 00:31,"112 Walnut St, San Francisco, CA 94016" +208345,Lightning Charging Cable,1,14.95,06/15/19 18:44,"655 11th St, Seattle, WA 98101" +208346,LG Washing Machine,1,600.0,06/10/19 17:25,"989 Center St, San Francisco, CA 94016" +208347,AAA Batteries (4-pack),2,2.99,06/12/19 08:28,"682 Cherry St, Los Angeles, CA 90001" +208348,Bose SoundSport Headphones,1,99.99,06/28/19 10:25,"92 13th St, Seattle, WA 98101" +208349,27in 4K Gaming Monitor,1,389.99,06/04/19 22:31,"103 Washington St, Los Angeles, CA 90001" +208350,27in FHD Monitor,1,149.99,06/29/19 15:38,"620 Center St, Boston, MA 02215" +208351,AA Batteries (4-pack),2,3.84,06/21/19 22:48,"55 Maple St, Los Angeles, CA 90001" +208352,AA Batteries (4-pack),1,3.84,06/25/19 13:12,"514 Johnson St, Los Angeles, CA 90001" +208353,AA Batteries (4-pack),1,3.84,06/20/19 13:21,"710 14th St, Seattle, WA 98101" +208354,Apple Airpods Headphones,1,150,06/04/19 18:51,"829 10th St, Boston, MA 02215" +208355,Google Phone,1,600,06/22/19 18:36,"985 Dogwood St, Dallas, TX 75001" +208355,Bose SoundSport Headphones,1,99.99,06/22/19 18:36,"985 Dogwood St, Dallas, TX 75001" +208356,Wired Headphones,1,11.99,06/12/19 19:56,"262 Cherry St, Atlanta, GA 30301" +208357,Apple Airpods Headphones,1,150,06/21/19 15:48,"514 Forest St, Portland, OR 97035" +208358,Google Phone,1,600,06/05/19 22:25,"207 Chestnut St, Los Angeles, CA 90001" +208359,USB-C Charging Cable,1,11.95,06/16/19 16:05,"36 Elm St, Los Angeles, CA 90001" +208360,27in FHD Monitor,1,149.99,06/23/19 11:07,"150 10th St, San Francisco, CA 94016" +208361,Bose SoundSport Headphones,1,99.99,06/25/19 17:16,"143 11th St, San Francisco, CA 94016" +208362,Bose SoundSport Headphones,1,99.99,06/06/19 18:33,"423 Highland St, Dallas, TX 75001" +208363,Macbook Pro Laptop,1,1700,06/26/19 14:58,"922 Elm St, Seattle, WA 98101" +208364,AA Batteries (4-pack),1,3.84,06/10/19 19:25,"881 5th St, New York City, NY 10001" +208365,27in 4K Gaming Monitor,1,389.99,06/01/19 15:06,"766 Willow St, Dallas, TX 75001" +208366,AAA Batteries (4-pack),1,2.99,06/01/19 10:45,"366 Jefferson St, Portland, ME 04101" +208367,Apple Airpods Headphones,1,150,06/17/19 12:21,"594 Main St, San Francisco, CA 94016" +208368,AA Batteries (4-pack),1,3.84,06/10/19 17:45,"918 West St, Atlanta, GA 30301" +208369,Flatscreen TV,1,300,06/22/19 15:07,"258 Willow St, Los Angeles, CA 90001" +208370,AA Batteries (4-pack),1,3.84,06/11/19 10:40,"71 Jefferson St, Atlanta, GA 30301" +208371,Lightning Charging Cable,1,14.95,06/15/19 13:55,"194 8th St, Atlanta, GA 30301" +208372,Apple Airpods Headphones,1,150,06/06/19 16:37,"464 4th St, Portland, ME 04101" +208373,Google Phone,1,600,06/24/19 09:06,"707 Lake St, Dallas, TX 75001" +208373,USB-C Charging Cable,1,11.95,06/24/19 09:06,"707 Lake St, Dallas, TX 75001" +208373,Bose SoundSport Headphones,1,99.99,06/24/19 09:06,"707 Lake St, Dallas, TX 75001" +208374,Wired Headphones,1,11.99,06/19/19 21:44,"757 River St, Austin, TX 73301" +208375,AA Batteries (4-pack),1,3.84,06/11/19 13:44,"618 Chestnut St, Atlanta, GA 30301" +208376,Flatscreen TV,1,300,06/06/19 22:12,"164 Maple St, New York City, NY 10001" +208377,AAA Batteries (4-pack),1,2.99,06/25/19 21:33,"395 14th St, Los Angeles, CA 90001" +208378,Apple Airpods Headphones,1,150,06/18/19 21:53,"783 2nd St, Seattle, WA 98101" +208379,Lightning Charging Cable,1,14.95,06/24/19 11:06,"577 Lincoln St, Atlanta, GA 30301" +208380,Lightning Charging Cable,1,14.95,06/01/19 12:13,"651 12th St, Los Angeles, CA 90001" +208381,AA Batteries (4-pack),1,3.84,06/01/19 12:43,"557 Adams St, Atlanta, GA 30301" +208382,Bose SoundSport Headphones,1,99.99,06/23/19 12:14,"997 North St, Los Angeles, CA 90001" +208383,AA Batteries (4-pack),2,3.84,06/16/19 20:08,"465 South St, New York City, NY 10001" +208384,27in FHD Monitor,1,149.99,06/05/19 16:16,"915 Madison St, Portland, OR 97035" +208385,USB-C Charging Cable,1,11.95,06/17/19 15:36,"778 Chestnut St, Los Angeles, CA 90001" +208386,Lightning Charging Cable,1,14.95,06/22/19 21:14,"885 13th St, Seattle, WA 98101" +208387,AAA Batteries (4-pack),1,2.99,06/02/19 01:53,"513 Cherry St, New York City, NY 10001" +208388,AAA Batteries (4-pack),1,2.99,06/16/19 14:47,"176 Church St, Seattle, WA 98101" +208389,Apple Airpods Headphones,1,150,06/15/19 14:24,"780 Adams St, Seattle, WA 98101" +208390,AA Batteries (4-pack),1,3.84,06/14/19 05:25,"553 Washington St, Los Angeles, CA 90001" +208391,Apple Airpods Headphones,1,150,06/28/19 18:08,"125 West St, Los Angeles, CA 90001" +208392,Lightning Charging Cable,1,14.95,06/22/19 12:05,"925 Willow St, San Francisco, CA 94016" +208393,AA Batteries (4-pack),1,3.84,06/29/19 15:03,"481 8th St, San Francisco, CA 94016" +208394,iPhone,1,700,06/15/19 13:37,"7 Madison St, Boston, MA 02215" +208395,iPhone,1,700,06/21/19 11:17,"891 Lake St, San Francisco, CA 94016" +208396,iPhone,1,700,06/27/19 21:25,"242 Hill St, Los Angeles, CA 90001" +208396,Lightning Charging Cable,1,14.95,06/27/19 21:25,"242 Hill St, Los Angeles, CA 90001" +208397,AAA Batteries (4-pack),1,2.99,06/14/19 20:51,"721 Pine St, Boston, MA 02215" +208398,AAA Batteries (4-pack),1,2.99,06/02/19 17:56,"156 Highland St, Boston, MA 02215" +208399,Bose SoundSport Headphones,1,99.99,06/22/19 14:07,"794 North St, Los Angeles, CA 90001" +208400,AA Batteries (4-pack),1,3.84,06/12/19 10:09,"402 4th St, Boston, MA 02215" +208401,Apple Airpods Headphones,1,150,06/06/19 21:12,"142 1st St, Austin, TX 73301" +208402,Google Phone,1,600,06/11/19 22:12,"941 8th St, Boston, MA 02215" +208403,Macbook Pro Laptop,1,1700,06/11/19 06:35,"574 Forest St, Atlanta, GA 30301" +208404,AAA Batteries (4-pack),1,2.99,06/07/19 21:17,"449 Dogwood St, San Francisco, CA 94016" +208405,Flatscreen TV,1,300,06/14/19 12:16,"229 12th St, San Francisco, CA 94016" +208406,Wired Headphones,4,11.99,06/27/19 07:58,"14 Ridge St, Seattle, WA 98101" +208407,AAA Batteries (4-pack),2,2.99,06/04/19 13:24,"399 Maple St, San Francisco, CA 94016" +208408,USB-C Charging Cable,1,11.95,06/29/19 22:16,"407 Church St, Los Angeles, CA 90001" +208409,Macbook Pro Laptop,1,1700,06/18/19 13:27,"227 Walnut St, Atlanta, GA 30301" +208410,AAA Batteries (4-pack),1,2.99,06/12/19 10:27,"303 Johnson St, Los Angeles, CA 90001" +208411,Wired Headphones,1,11.99,06/22/19 21:20,"240 North St, Portland, OR 97035" +208412,Lightning Charging Cable,1,14.95,06/19/19 09:58,"756 Pine St, New York City, NY 10001" +208413,Google Phone,1,600,06/21/19 18:48,"125 Cherry St, Los Angeles, CA 90001" +208414,Bose SoundSport Headphones,1,99.99,06/23/19 16:53,"962 7th St, Boston, MA 02215" +208415,USB-C Charging Cable,1,11.95,06/22/19 18:47,"921 Lakeview St, Dallas, TX 75001" +208416,Apple Airpods Headphones,1,150,06/16/19 11:33,"830 Park St, Los Angeles, CA 90001" +208417,ThinkPad Laptop,1,999.99,06/19/19 12:40,"220 8th St, San Francisco, CA 94016" +208418,27in FHD Monitor,1,149.99,06/10/19 17:39,"688 Lincoln St, Seattle, WA 98101" +208418,Wired Headphones,1,11.99,06/10/19 17:39,"688 Lincoln St, Seattle, WA 98101" +208419,iPhone,1,700,06/24/19 07:46,"267 Willow St, Dallas, TX 75001" +208420,AA Batteries (4-pack),1,3.84,06/08/19 10:59,"958 Pine St, Boston, MA 02215" +208421,iPhone,1,700,06/03/19 06:59,"448 7th St, Los Angeles, CA 90001" +208422,AA Batteries (4-pack),4,3.84,06/16/19 19:31,"734 9th St, San Francisco, CA 94016" +208423,Google Phone,1,600,06/26/19 18:03,"496 Lincoln St, Dallas, TX 75001" +208424,AAA Batteries (4-pack),2,2.99,06/17/19 19:03,"937 Lincoln St, Boston, MA 02215" +208425,Lightning Charging Cable,1,14.95,06/16/19 10:12,"808 7th St, San Francisco, CA 94016" +208426,USB-C Charging Cable,2,11.95,06/07/19 05:20,"495 9th St, San Francisco, CA 94016" +208427,34in Ultrawide Monitor,1,379.99,06/20/19 10:27,"865 Church St, San Francisco, CA 94016" +208428,Lightning Charging Cable,1,14.95,06/15/19 13:13,"15 Pine St, Boston, MA 02215" +208429,USB-C Charging Cable,1,11.95,06/25/19 17:00,"538 Dogwood St, Portland, OR 97035" +208430,Bose SoundSport Headphones,1,99.99,06/28/19 13:06,"878 13th St, New York City, NY 10001" +208431,Lightning Charging Cable,1,14.95,06/18/19 14:05,"623 Pine St, San Francisco, CA 94016" +208432,AA Batteries (4-pack),1,3.84,06/06/19 22:19,"582 9th St, Atlanta, GA 30301" +208433,AAA Batteries (4-pack),1,2.99,06/13/19 10:58,"525 North St, Portland, ME 04101" +208434,LG Dryer,1,600.0,06/21/19 12:42,"776 Spruce St, New York City, NY 10001" +208435,Apple Airpods Headphones,1,150,06/24/19 19:50,"31 Elm St, San Francisco, CA 94016" +208436,Wired Headphones,1,11.99,06/25/19 08:05,"843 10th St, Seattle, WA 98101" +208437,AAA Batteries (4-pack),1,2.99,06/19/19 09:16,"515 Highland St, Boston, MA 02215" +208438,Macbook Pro Laptop,1,1700,06/04/19 13:32,"177 Dogwood St, Boston, MA 02215" +208439,27in 4K Gaming Monitor,1,389.99,06/19/19 11:58,"6 Hill St, Los Angeles, CA 90001" +208440,iPhone,1,700,06/11/19 09:33,"833 North St, Austin, TX 73301" +208441,34in Ultrawide Monitor,1,379.99,06/29/19 22:10,"203 Walnut St, San Francisco, CA 94016" +208442,USB-C Charging Cable,1,11.95,06/14/19 14:44,"701 Cedar St, Boston, MA 02215" +208442,Bose SoundSport Headphones,1,99.99,06/14/19 14:44,"701 Cedar St, Boston, MA 02215" +208443,Flatscreen TV,1,300,06/23/19 19:44,"79 Jackson St, San Francisco, CA 94016" +208444,Bose SoundSport Headphones,1,99.99,06/17/19 14:00,"197 Willow St, Atlanta, GA 30301" +208445,iPhone,1,700,06/15/19 03:15,"315 South St, Boston, MA 02215" +208446,AAA Batteries (4-pack),2,2.99,06/12/19 01:04,"322 Meadow St, Seattle, WA 98101" +208447,AA Batteries (4-pack),1,3.84,06/27/19 08:00,"828 Cherry St, San Francisco, CA 94016" +208448,iPhone,1,700,06/08/19 18:18,"464 Wilson St, Atlanta, GA 30301" +208449,AAA Batteries (4-pack),1,2.99,06/16/19 13:23,"683 Ridge St, Seattle, WA 98101" +208450,27in FHD Monitor,1,149.99,06/06/19 17:48,"422 Johnson St, New York City, NY 10001" +208451,20in Monitor,1,109.99,06/14/19 17:51,"440 Jefferson St, Austin, TX 73301" +208452,Apple Airpods Headphones,1,150,06/08/19 20:14,"584 Walnut St, Los Angeles, CA 90001" +208453,Flatscreen TV,1,300,06/29/19 08:23,"574 Jefferson St, New York City, NY 10001" +208454,Apple Airpods Headphones,1,150,06/18/19 20:27,"252 6th St, Austin, TX 73301" +208455,AA Batteries (4-pack),1,3.84,06/20/19 09:23,"770 Spruce St, Dallas, TX 75001" +208456,27in 4K Gaming Monitor,1,389.99,06/22/19 13:41,"111 Sunset St, New York City, NY 10001" +208457,Lightning Charging Cable,1,14.95,06/08/19 20:23,"85 12th St, New York City, NY 10001" +208458,AA Batteries (4-pack),1,3.84,06/22/19 11:55,"332 10th St, Dallas, TX 75001" +208459,Bose SoundSport Headphones,1,99.99,06/30/19 18:51,"393 Park St, Los Angeles, CA 90001" +208460,USB-C Charging Cable,1,11.95,06/08/19 20:43,"327 Meadow St, Boston, MA 02215" +208461,USB-C Charging Cable,1,11.95,06/10/19 20:01,"391 Jackson St, Boston, MA 02215" +208462,Wired Headphones,1,11.99,06/02/19 23:52,"666 Sunset St, San Francisco, CA 94016" +208463,ThinkPad Laptop,1,999.99,06/28/19 10:37,"884 Lake St, Los Angeles, CA 90001" +208464,Google Phone,1,600,06/07/19 11:48,"619 Forest St, Atlanta, GA 30301" +208465,AA Batteries (4-pack),1,3.84,06/16/19 18:18,"154 River St, Seattle, WA 98101" +208466,Wired Headphones,1,11.99,06/22/19 16:07,"707 Highland St, San Francisco, CA 94016" +208467,34in Ultrawide Monitor,1,379.99,06/27/19 23:53,"198 Church St, New York City, NY 10001" +208468,Wired Headphones,1,11.99,06/28/19 17:43,"810 West St, San Francisco, CA 94016" +208469,Google Phone,1,600,06/09/19 12:09,"392 Jackson St, New York City, NY 10001" +208470,27in FHD Monitor,1,149.99,06/17/19 17:54,"715 Jackson St, New York City, NY 10001" +208471,Bose SoundSport Headphones,1,99.99,06/15/19 23:43,"409 Lincoln St, San Francisco, CA 94016" +208472,AAA Batteries (4-pack),3,2.99,06/05/19 17:02,"762 6th St, Boston, MA 02215" +208473,Lightning Charging Cable,1,14.95,06/02/19 14:41,"838 Chestnut St, Portland, OR 97035" +208474,AAA Batteries (4-pack),3,2.99,06/29/19 16:36,"403 Park St, San Francisco, CA 94016" +208475,USB-C Charging Cable,1,11.95,06/30/19 22:11,"413 Adams St, San Francisco, CA 94016" +208476,Google Phone,1,600,06/14/19 07:38,"504 10th St, New York City, NY 10001" +208476,USB-C Charging Cable,1,11.95,06/14/19 07:38,"504 10th St, New York City, NY 10001" +208477,Wired Headphones,1,11.99,06/19/19 14:01,"571 Lake St, New York City, NY 10001" +208478,Apple Airpods Headphones,1,150,06/14/19 21:40,"840 Sunset St, Portland, OR 97035" +208479,27in FHD Monitor,1,149.99,06/11/19 09:30,"465 8th St, Dallas, TX 75001" +208480,USB-C Charging Cable,1,11.95,06/03/19 11:08,"741 Lake St, San Francisco, CA 94016" +208481,Wired Headphones,2,11.99,06/22/19 00:03,"957 Main St, San Francisco, CA 94016" +208482,Lightning Charging Cable,1,14.95,06/14/19 23:19,"997 Ridge St, Los Angeles, CA 90001" +208483,Lightning Charging Cable,1,14.95,06/01/19 14:41,"720 Cedar St, San Francisco, CA 94016" +208484,Wired Headphones,1,11.99,06/22/19 14:35,"163 Highland St, Portland, OR 97035" +208485,AA Batteries (4-pack),1,3.84,06/13/19 20:56,"584 12th St, San Francisco, CA 94016" +208486,USB-C Charging Cable,2,11.95,06/12/19 20:55,"465 9th St, Seattle, WA 98101" +208487,USB-C Charging Cable,1,11.95,06/16/19 16:50,"673 1st St, Seattle, WA 98101" +208488,Lightning Charging Cable,1,14.95,06/22/19 22:31,"345 Cedar St, New York City, NY 10001" +208489,Wired Headphones,1,11.99,06/01/19 11:52,"53 Walnut St, Dallas, TX 75001" +208490,Wired Headphones,1,11.99,06/06/19 15:02,"865 Willow St, Boston, MA 02215" +208491,34in Ultrawide Monitor,1,379.99,06/11/19 19:48,"404 10th St, Dallas, TX 75001" +208492,USB-C Charging Cable,1,11.95,06/20/19 20:25,"689 Center St, Austin, TX 73301" +208493,Flatscreen TV,1,300,06/04/19 21:42,"202 Walnut St, New York City, NY 10001" +208494,34in Ultrawide Monitor,1,379.99,06/06/19 09:21,"18 Washington St, Portland, OR 97035" +208495,Lightning Charging Cable,1,14.95,06/01/19 22:26,"412 Wilson St, San Francisco, CA 94016" +208496,AAA Batteries (4-pack),1,2.99,06/27/19 22:10,"887 Highland St, Austin, TX 73301" +208497,AA Batteries (4-pack),1,3.84,06/19/19 09:03,"90 Park St, San Francisco, CA 94016" +208498,Wired Headphones,1,11.99,06/27/19 22:00,"741 Wilson St, Seattle, WA 98101" +208499,Macbook Pro Laptop,1,1700,06/27/19 21:39,"206 Lincoln St, Los Angeles, CA 90001" +208500,Lightning Charging Cable,1,14.95,06/27/19 03:37,"832 Lincoln St, Atlanta, GA 30301" +208501,34in Ultrawide Monitor,1,379.99,06/27/19 11:38,"64 Church St, Atlanta, GA 30301" +208502,Macbook Pro Laptop,1,1700,06/16/19 22:09,"937 South St, Seattle, WA 98101" +208503,AA Batteries (4-pack),1,3.84,06/14/19 18:42,"8 Hill St, San Francisco, CA 94016" +208504,Macbook Pro Laptop,1,1700,06/24/19 07:39,"931 Pine St, San Francisco, CA 94016" +208505,AA Batteries (4-pack),2,3.84,06/26/19 17:21,"807 Lake St, Boston, MA 02215" +208506,Lightning Charging Cable,1,14.95,06/29/19 07:59,"17 Elm St, Boston, MA 02215" +208507,USB-C Charging Cable,1,11.95,06/19/19 17:44,"620 Church St, Boston, MA 02215" +208508,Flatscreen TV,1,300,06/11/19 14:37,"599 Hickory St, Los Angeles, CA 90001" +208509,Google Phone,1,600,06/19/19 20:05,"424 5th St, San Francisco, CA 94016" +208510,AA Batteries (4-pack),2,3.84,06/27/19 10:31,"258 Wilson St, Los Angeles, CA 90001" +208511,AAA Batteries (4-pack),2,2.99,06/09/19 16:59,"692 Hill St, Los Angeles, CA 90001" +208512,Macbook Pro Laptop,1,1700,06/27/19 12:02,"385 Washington St, New York City, NY 10001" +208513,Wired Headphones,1,11.99,06/25/19 15:53,"211 10th St, Boston, MA 02215" +208514,Wired Headphones,1,11.99,06/05/19 11:58,"587 4th St, New York City, NY 10001" +208515,iPhone,1,700,06/30/19 12:44,"880 6th St, New York City, NY 10001" +208515,Wired Headphones,1,11.99,06/30/19 12:44,"880 6th St, New York City, NY 10001" +208516,USB-C Charging Cable,1,11.95,06/19/19 09:55,"226 1st St, Seattle, WA 98101" +208517,Bose SoundSport Headphones,1,99.99,06/06/19 20:03,"38 Elm St, Los Angeles, CA 90001" +208518,Lightning Charging Cable,1,14.95,06/30/19 18:41,"790 8th St, Seattle, WA 98101" +208519,AA Batteries (4-pack),1,3.84,06/10/19 15:48,"99 Lakeview St, Boston, MA 02215" +208520,Wired Headphones,1,11.99,06/22/19 16:10,"461 Ridge St, San Francisco, CA 94016" +208521,AA Batteries (4-pack),1,3.84,06/17/19 10:59,"927 Spruce St, Seattle, WA 98101" +208522,Bose SoundSport Headphones,1,99.99,06/01/19 23:16,"234 Cedar St, San Francisco, CA 94016" +208523,USB-C Charging Cable,1,11.95,06/24/19 02:50,"561 Jefferson St, Seattle, WA 98101" +208524,USB-C Charging Cable,1,11.95,06/23/19 19:55,"630 Park St, Seattle, WA 98101" +208525,27in FHD Monitor,1,149.99,06/14/19 09:10,"136 South St, Los Angeles, CA 90001" +208526,27in FHD Monitor,1,149.99,06/12/19 12:40,"313 11th St, Seattle, WA 98101" +208527,Flatscreen TV,1,300,06/27/19 00:34,"839 Ridge St, Dallas, TX 75001" +208528,Lightning Charging Cable,1,14.95,06/18/19 22:19,"314 11th St, San Francisco, CA 94016" +208529,Vareebadd Phone,1,400,06/13/19 11:37,"510 12th St, Austin, TX 73301" +208530,AAA Batteries (4-pack),1,2.99,06/11/19 11:53,"687 Willow St, New York City, NY 10001" +208531,Google Phone,1,600,06/13/19 10:08,"246 Maple St, Los Angeles, CA 90001" +208532,iPhone,1,700,06/21/19 17:33,"628 9th St, Portland, ME 04101" +208532,Wired Headphones,1,11.99,06/21/19 17:33,"628 9th St, Portland, ME 04101" +208533,Flatscreen TV,1,300,06/23/19 10:27,"735 10th St, Atlanta, GA 30301" +208534,AA Batteries (4-pack),2,3.84,06/16/19 14:23,"281 12th St, Atlanta, GA 30301" +208535,USB-C Charging Cable,1,11.95,06/05/19 09:25,"457 7th St, San Francisco, CA 94016" +208536,Lightning Charging Cable,1,14.95,06/19/19 12:33,"545 8th St, Boston, MA 02215" +208537,Bose SoundSport Headphones,1,99.99,06/03/19 15:33,"936 13th St, Los Angeles, CA 90001" +208537,27in 4K Gaming Monitor,1,389.99,06/03/19 15:33,"936 13th St, Los Angeles, CA 90001" +208538,USB-C Charging Cable,1,11.95,06/08/19 19:44,"488 7th St, Boston, MA 02215" +208539,AA Batteries (4-pack),2,3.84,06/21/19 13:13,"898 5th St, San Francisco, CA 94016" +208540,USB-C Charging Cable,1,11.95,06/02/19 18:04,"480 4th St, Boston, MA 02215" +208541,Apple Airpods Headphones,1,150,06/15/19 10:18,"881 Madison St, Los Angeles, CA 90001" +208542,ThinkPad Laptop,1,999.99,06/15/19 21:38,"305 Meadow St, Los Angeles, CA 90001" +208543,Google Phone,1,600,06/04/19 19:21,"289 Highland St, Portland, OR 97035" +208543,Wired Headphones,1,11.99,06/04/19 19:21,"289 Highland St, Portland, OR 97035" +208544,Apple Airpods Headphones,1,150,06/27/19 10:35,"958 Lincoln St, Seattle, WA 98101" +208545,AA Batteries (4-pack),3,3.84,06/25/19 23:20,"924 North St, Atlanta, GA 30301" +208546,USB-C Charging Cable,1,11.95,06/04/19 21:53,"893 Forest St, Portland, OR 97035" +208547,Apple Airpods Headphones,1,150,06/03/19 11:37,"904 River St, Atlanta, GA 30301" +208548,Lightning Charging Cable,1,14.95,06/04/19 22:28,"292 Lake St, Austin, TX 73301" +208549,27in 4K Gaming Monitor,1,389.99,06/12/19 17:15,"418 7th St, Los Angeles, CA 90001" +208549,Lightning Charging Cable,1,14.95,06/12/19 17:15,"418 7th St, Los Angeles, CA 90001" +208550,Google Phone,1,600,06/13/19 14:05,"979 West St, Portland, OR 97035" +208551,AAA Batteries (4-pack),1,2.99,06/07/19 16:08,"698 1st St, Portland, OR 97035" +208552,Apple Airpods Headphones,1,150,06/17/19 20:10,"44 Walnut St, Los Angeles, CA 90001" +208553,USB-C Charging Cable,1,11.95,06/06/19 14:03,"183 West St, Seattle, WA 98101" +208554,Bose SoundSport Headphones,1,99.99,06/11/19 13:32,"750 River St, Los Angeles, CA 90001" +208555,Wired Headphones,1,11.99,06/28/19 19:08,"475 Cedar St, San Francisco, CA 94016" +208556,AA Batteries (4-pack),1,3.84,06/14/19 18:29,"13 Wilson St, New York City, NY 10001" +208557,Bose SoundSport Headphones,1,99.99,06/01/19 07:39,"199 Elm St, Atlanta, GA 30301" +208558,34in Ultrawide Monitor,1,379.99,06/30/19 17:45,"949 Maple St, San Francisco, CA 94016" +208559,27in 4K Gaming Monitor,1,389.99,06/26/19 15:54,"121 Forest St, New York City, NY 10001" +208560,Macbook Pro Laptop,1,1700,06/17/19 08:47,"726 South St, San Francisco, CA 94016" +208561,Lightning Charging Cable,1,14.95,06/26/19 09:43,"257 2nd St, New York City, NY 10001" +208562,Bose SoundSport Headphones,1,99.99,06/27/19 10:16,"33 Chestnut St, Seattle, WA 98101" +208563,Macbook Pro Laptop,1,1700,06/25/19 19:49,"808 Center St, New York City, NY 10001" +208564,USB-C Charging Cable,1,11.95,06/24/19 21:32,"74 Highland St, New York City, NY 10001" +208565,Apple Airpods Headphones,1,150,06/08/19 22:42,"283 Lincoln St, San Francisco, CA 94016" +208566,AA Batteries (4-pack),1,3.84,06/29/19 13:49,"43 Dogwood St, Dallas, TX 75001" +208567,Google Phone,1,600,06/05/19 17:10,"440 9th St, San Francisco, CA 94016" +208568,Apple Airpods Headphones,1,150,06/16/19 15:44,"997 West St, Portland, OR 97035" +208569,27in FHD Monitor,1,149.99,06/15/19 13:39,"320 Church St, New York City, NY 10001" +208570,ThinkPad Laptop,1,999.99,06/14/19 19:21,"779 Jackson St, Boston, MA 02215" +208571,Vareebadd Phone,1,400,06/03/19 21:35,"957 7th St, Los Angeles, CA 90001" +208571,Wired Headphones,1,11.99,06/03/19 21:35,"957 7th St, Los Angeles, CA 90001" +208572,Apple Airpods Headphones,1,150,06/14/19 17:31,"336 Maple St, San Francisco, CA 94016" +208573,20in Monitor,1,109.99,06/08/19 17:40,"321 River St, Portland, OR 97035" +208574,Lightning Charging Cable,1,14.95,06/03/19 08:23,"584 West St, Portland, OR 97035" +208575,Apple Airpods Headphones,1,150,06/03/19 10:58,"379 South St, New York City, NY 10001" +208576,Vareebadd Phone,1,400,06/19/19 19:01,"63 Johnson St, Dallas, TX 75001" +208577,USB-C Charging Cable,1,11.95,06/29/19 11:32,"485 Cherry St, New York City, NY 10001" +208578,Google Phone,1,600,06/19/19 12:19,"471 Wilson St, New York City, NY 10001" +208579,AAA Batteries (4-pack),1,2.99,06/10/19 00:12,"343 Chestnut St, San Francisco, CA 94016" +,,,,, +208580,Wired Headphones,1,11.99,06/19/19 13:51,"291 7th St, Los Angeles, CA 90001" +208581,Lightning Charging Cable,1,14.95,06/13/19 18:00,"878 Center St, Boston, MA 02215" +208582,Wired Headphones,1,11.99,06/24/19 18:19,"755 1st St, Los Angeles, CA 90001" +208583,AAA Batteries (4-pack),1,2.99,06/09/19 20:57,"810 Main St, Los Angeles, CA 90001" +208584,Lightning Charging Cable,1,14.95,06/09/19 16:49,"964 11th St, Los Angeles, CA 90001" +208585,AAA Batteries (4-pack),1,2.99,06/03/19 11:00,"389 Willow St, Boston, MA 02215" +208586,AA Batteries (4-pack),2,3.84,06/05/19 13:01,"733 12th St, Austin, TX 73301" +208587,AA Batteries (4-pack),2,3.84,06/12/19 20:38,"912 9th St, Los Angeles, CA 90001" +208588,Macbook Pro Laptop,1,1700,06/13/19 23:08,"200 Meadow St, Portland, OR 97035" +208589,Apple Airpods Headphones,1,150,06/17/19 17:24,"56 Park St, Los Angeles, CA 90001" +208590,Macbook Pro Laptop,1,1700,06/11/19 10:56,"835 6th St, Boston, MA 02215" +208591,27in 4K Gaming Monitor,1,389.99,06/30/19 16:53,"149 Willow St, Dallas, TX 75001" +208592,27in FHD Monitor,1,149.99,06/27/19 20:07,"756 Willow St, Los Angeles, CA 90001" +208593,Lightning Charging Cable,1,14.95,06/08/19 15:31,"182 5th St, San Francisco, CA 94016" +208594,Lightning Charging Cable,1,14.95,06/08/19 13:42,"671 7th St, Atlanta, GA 30301" +208595,Lightning Charging Cable,1,14.95,06/26/19 16:43,"146 Elm St, Boston, MA 02215" +208596,27in FHD Monitor,1,149.99,06/30/19 13:13,"367 Johnson St, Austin, TX 73301" +208597,USB-C Charging Cable,1,11.95,06/11/19 14:23,"87 2nd St, Atlanta, GA 30301" +208598,AAA Batteries (4-pack),1,2.99,06/30/19 18:15,"940 Park St, Seattle, WA 98101" +208599,Lightning Charging Cable,1,14.95,06/14/19 15:08,"256 Spruce St, Dallas, TX 75001" +208600,Wired Headphones,1,11.99,06/18/19 08:36,"300 Cherry St, San Francisco, CA 94016" +208601,AAA Batteries (4-pack),1,2.99,06/24/19 11:20,"228 2nd St, New York City, NY 10001" +208601,AA Batteries (4-pack),1,3.84,06/24/19 11:20,"228 2nd St, New York City, NY 10001" +208602,AA Batteries (4-pack),1,3.84,06/17/19 14:09,"122 West St, Dallas, TX 75001" +208603,Vareebadd Phone,1,400,06/22/19 08:42,"948 Ridge St, Los Angeles, CA 90001" +208604,27in FHD Monitor,1,149.99,06/09/19 11:38,"854 Church St, New York City, NY 10001" +208605,AA Batteries (4-pack),1,3.84,06/24/19 14:55,"576 5th St, Portland, OR 97035" +208606,Lightning Charging Cable,2,14.95,06/08/19 08:28,"438 Adams St, Boston, MA 02215" +208607,Apple Airpods Headphones,1,150,06/17/19 19:01,"918 Hickory St, San Francisco, CA 94016" +208608,27in 4K Gaming Monitor,1,389.99,06/20/19 14:33,"436 8th St, Austin, TX 73301" +208609,AAA Batteries (4-pack),3,2.99,06/18/19 17:11,"839 12th St, San Francisco, CA 94016" +208610,AAA Batteries (4-pack),1,2.99,06/16/19 14:15,"383 Cedar St, San Francisco, CA 94016" +208611,USB-C Charging Cable,1,11.95,06/24/19 11:14,"728 Cherry St, San Francisco, CA 94016" +208612,USB-C Charging Cable,1,11.95,06/04/19 06:17,"799 2nd St, Dallas, TX 75001" +208612,AAA Batteries (4-pack),1,2.99,06/04/19 06:17,"799 2nd St, Dallas, TX 75001" +208613,Wired Headphones,1,11.99,06/19/19 14:01,"653 Washington St, Dallas, TX 75001" +208614,Lightning Charging Cable,1,14.95,06/01/19 16:47,"999 Elm St, Dallas, TX 75001" +208615,AAA Batteries (4-pack),1,2.99,06/24/19 15:03,"725 Jackson St, Dallas, TX 75001" +208616,Bose SoundSport Headphones,1,99.99,06/21/19 15:08,"817 Willow St, Los Angeles, CA 90001" +208617,Lightning Charging Cable,1,14.95,06/06/19 16:27,"50 Maple St, Portland, OR 97035" +208618,Wired Headphones,1,11.99,06/20/19 20:33,"354 Park St, Boston, MA 02215" +208619,Flatscreen TV,1,300,06/03/19 13:49,"676 Lake St, Los Angeles, CA 90001" +208620,AA Batteries (4-pack),2,3.84,06/15/19 22:47,"201 Walnut St, New York City, NY 10001" +208621,Macbook Pro Laptop,1,1700,06/10/19 19:09,"160 Johnson St, Boston, MA 02215" +208622,AA Batteries (4-pack),3,3.84,06/26/19 10:06,"174 13th St, Boston, MA 02215" +208623,USB-C Charging Cable,1,11.95,06/01/19 18:17,"991 6th St, Portland, OR 97035" +208624,Macbook Pro Laptop,1,1700,06/20/19 22:31,"122 Forest St, Atlanta, GA 30301" +208625,ThinkPad Laptop,1,999.99,06/21/19 22:59,"339 Park St, New York City, NY 10001" +208626,iPhone,1,700,06/04/19 14:29,"634 13th St, Atlanta, GA 30301" +208627,Apple Airpods Headphones,1,150,06/23/19 14:26,"827 South St, Dallas, TX 75001" +208628,AAA Batteries (4-pack),1,2.99,06/11/19 20:12,"898 Cherry St, San Francisco, CA 94016" +208629,USB-C Charging Cable,1,11.95,06/20/19 18:21,"663 12th St, San Francisco, CA 94016" +208630,Macbook Pro Laptop,1,1700,06/06/19 10:11,"54 Park St, San Francisco, CA 94016" +208631,AAA Batteries (4-pack),1,2.99,06/28/19 18:57,"517 Spruce St, Atlanta, GA 30301" +208632,USB-C Charging Cable,1,11.95,06/30/19 19:16,"502 Jackson St, Seattle, WA 98101" +208633,AA Batteries (4-pack),1,3.84,06/07/19 11:52,"228 Cherry St, New York City, NY 10001" +208634,AA Batteries (4-pack),1,3.84,06/17/19 14:07,"103 Lakeview St, Boston, MA 02215" +208635,Lightning Charging Cable,1,14.95,06/15/19 10:58,"461 South St, Boston, MA 02215" +208636,AAA Batteries (4-pack),1,2.99,06/25/19 12:26,"177 Pine St, Atlanta, GA 30301" +208637,Apple Airpods Headphones,1,150,06/22/19 07:13,"996 Hill St, Atlanta, GA 30301" +208638,Apple Airpods Headphones,1,150,06/30/19 13:32,"12 Church St, Dallas, TX 75001" +208639,Apple Airpods Headphones,1,150,06/23/19 10:07,"675 13th St, New York City, NY 10001" +208640,Apple Airpods Headphones,1,150,06/27/19 14:38,"705 Forest St, Boston, MA 02215" +208641,AAA Batteries (4-pack),2,2.99,06/14/19 13:08,"927 Cedar St, Los Angeles, CA 90001" +208642,iPhone,1,700,06/18/19 11:22,"197 West St, Los Angeles, CA 90001" +208643,AA Batteries (4-pack),2,3.84,06/24/19 09:30,"956 6th St, Los Angeles, CA 90001" +,,,,, +208644,Lightning Charging Cable,1,14.95,06/29/19 06:25,"646 Hickory St, Los Angeles, CA 90001" +208645,USB-C Charging Cable,1,11.95,06/03/19 10:39,"69 4th St, New York City, NY 10001" +208646,ThinkPad Laptop,1,999.99,06/12/19 11:42,"956 6th St, Dallas, TX 75001" +208647,AA Batteries (4-pack),1,3.84,06/19/19 20:06,"618 Cedar St, San Francisco, CA 94016" +208648,Bose SoundSport Headphones,1,99.99,06/15/19 17:02,"588 Main St, Dallas, TX 75001" +208649,USB-C Charging Cable,1,11.95,06/01/19 16:03,"303 11th St, Dallas, TX 75001" +208650,AAA Batteries (4-pack),2,2.99,06/22/19 21:20,"498 8th St, Los Angeles, CA 90001" +208651,AAA Batteries (4-pack),1,2.99,06/30/19 11:50,"136 5th St, Portland, OR 97035" +208652,Bose SoundSport Headphones,1,99.99,06/14/19 09:37,"830 Lakeview St, Los Angeles, CA 90001" +208653,Wired Headphones,1,11.99,06/26/19 22:48,"200 13th St, Atlanta, GA 30301" +208654,Apple Airpods Headphones,1,150,06/23/19 00:34,"733 Hickory St, Los Angeles, CA 90001" +208655,AAA Batteries (4-pack),1,2.99,06/17/19 22:12,"136 West St, Dallas, TX 75001" +208656,ThinkPad Laptop,1,999.99,06/29/19 15:56,"732 South St, New York City, NY 10001" +208657,AA Batteries (4-pack),1,3.84,06/13/19 15:45,"140 7th St, San Francisco, CA 94016" +208658,Bose SoundSport Headphones,1,99.99,06/09/19 20:21,"296 Cedar St, Los Angeles, CA 90001" +208659,USB-C Charging Cable,1,11.95,06/02/19 10:36,"329 Maple St, Los Angeles, CA 90001" +208660,Lightning Charging Cable,1,14.95,06/09/19 19:22,"781 Spruce St, San Francisco, CA 94016" +208661,Apple Airpods Headphones,1,150,06/11/19 12:40,"872 6th St, Portland, OR 97035" +208662,USB-C Charging Cable,1,11.95,06/08/19 22:37,"176 Johnson St, Atlanta, GA 30301" +208663,Apple Airpods Headphones,1,150,06/25/19 10:51,"607 12th St, Portland, ME 04101" +208664,27in FHD Monitor,1,149.99,06/11/19 18:29,"514 Church St, Austin, TX 73301" +208665,Apple Airpods Headphones,1,150,06/16/19 16:34,"154 Johnson St, Austin, TX 73301" +208666,AA Batteries (4-pack),1,3.84,06/08/19 17:44,"69 West St, Atlanta, GA 30301" +208667,USB-C Charging Cable,1,11.95,06/02/19 09:30,"948 Pine St, Los Angeles, CA 90001" +208668,Wired Headphones,1,11.99,06/07/19 19:34,"466 Lincoln St, Dallas, TX 75001" +208669,27in FHD Monitor,1,149.99,06/16/19 10:42,"676 4th St, Atlanta, GA 30301" +208670,USB-C Charging Cable,1,11.95,06/13/19 13:34,"266 River St, New York City, NY 10001" +208671,Lightning Charging Cable,1,14.95,06/12/19 23:13,"40 Hickory St, New York City, NY 10001" +208672,USB-C Charging Cable,1,11.95,06/04/19 06:24,"350 Park St, New York City, NY 10001" +,,,,, +208673,34in Ultrawide Monitor,1,379.99,06/23/19 14:33,"981 12th St, Portland, OR 97035" +208674,Lightning Charging Cable,1,14.95,06/17/19 17:57,"768 Lakeview St, San Francisco, CA 94016" +208675,Apple Airpods Headphones,1,150,06/10/19 10:34,"742 Washington St, Dallas, TX 75001" +208676,AA Batteries (4-pack),1,3.84,06/07/19 17:18,"609 13th St, New York City, NY 10001" +208677,Wired Headphones,1,11.99,06/22/19 10:47,"454 Dogwood St, New York City, NY 10001" +208678,Bose SoundSport Headphones,1,99.99,06/11/19 10:52,"814 6th St, Boston, MA 02215" +208679,27in FHD Monitor,1,149.99,06/18/19 17:51,"485 Willow St, Boston, MA 02215" +208680,AAA Batteries (4-pack),2,2.99,06/03/19 14:10,"216 Johnson St, Portland, OR 97035" +208681,Vareebadd Phone,1,400,06/26/19 08:43,"709 5th St, Seattle, WA 98101" +208682,34in Ultrawide Monitor,1,379.99,06/14/19 21:56,"263 Elm St, Portland, OR 97035" +208683,Macbook Pro Laptop,1,1700,06/16/19 06:05,"37 Spruce St, San Francisco, CA 94016" +208683,USB-C Charging Cable,1,11.95,06/16/19 06:05,"37 Spruce St, San Francisco, CA 94016" +208684,Apple Airpods Headphones,1,150,06/27/19 09:54,"140 11th St, Dallas, TX 75001" +208685,Bose SoundSport Headphones,1,99.99,06/23/19 13:53,"616 Spruce St, Boston, MA 02215" +208686,Lightning Charging Cable,1,14.95,06/10/19 14:33,"774 13th St, Boston, MA 02215" +208687,iPhone,1,700,06/10/19 11:33,"854 7th St, Seattle, WA 98101" +208688,Lightning Charging Cable,1,14.95,06/06/19 19:26,"607 12th St, Seattle, WA 98101" +208689,Apple Airpods Headphones,1,150,06/09/19 14:58,"605 Walnut St, San Francisco, CA 94016" +208690,Wired Headphones,1,11.99,06/03/19 15:12,"214 West St, San Francisco, CA 94016" +208691,AAA Batteries (4-pack),1,2.99,06/21/19 19:17,"221 Sunset St, Atlanta, GA 30301" +208692,AAA Batteries (4-pack),4,2.99,06/24/19 15:59,"189 River St, New York City, NY 10001" +208692,AAA Batteries (4-pack),3,2.99,06/24/19 15:59,"189 River St, New York City, NY 10001" +208693,Lightning Charging Cable,1,14.95,06/18/19 11:59,"401 5th St, Seattle, WA 98101" +208694,AA Batteries (4-pack),1,3.84,06/03/19 16:49,"284 River St, Boston, MA 02215" +208695,USB-C Charging Cable,2,11.95,06/18/19 01:25,"191 Adams St, Atlanta, GA 30301" +208696,Apple Airpods Headphones,1,150,06/10/19 15:47,"448 9th St, Portland, OR 97035" +208697,ThinkPad Laptop,1,999.99,06/17/19 20:07,"303 Park St, San Francisco, CA 94016" +208698,Wired Headphones,1,11.99,06/28/19 15:07,"932 Chestnut St, Seattle, WA 98101" +208699,AAA Batteries (4-pack),1,2.99,06/25/19 14:56,"491 Spruce St, Los Angeles, CA 90001" +208700,34in Ultrawide Monitor,1,379.99,06/24/19 11:19,"567 13th St, New York City, NY 10001" +208701,Lightning Charging Cable,2,14.95,06/06/19 19:12,"415 Church St, Dallas, TX 75001" +208702,LG Dryer,1,600.0,06/30/19 21:27,"326 Lincoln St, San Francisco, CA 94016" +208703,AAA Batteries (4-pack),1,2.99,06/14/19 19:30,"750 1st St, Los Angeles, CA 90001" +208704,Bose SoundSport Headphones,1,99.99,06/09/19 14:15,"702 14th St, Boston, MA 02215" +208705,27in 4K Gaming Monitor,1,389.99,06/11/19 18:43,"215 River St, Dallas, TX 75001" +208706,Wired Headphones,1,11.99,06/23/19 14:07,"440 Elm St, Los Angeles, CA 90001" +208707,USB-C Charging Cable,1,11.95,06/29/19 08:08,"670 Main St, Atlanta, GA 30301" +208708,Apple Airpods Headphones,1,150,06/08/19 20:00,"789 Lake St, New York City, NY 10001" +208709,AAA Batteries (4-pack),1,2.99,06/17/19 13:19,"524 Jackson St, San Francisco, CA 94016" +208710,AA Batteries (4-pack),2,3.84,06/11/19 18:36,"98 Willow St, Portland, ME 04101" +208711,27in FHD Monitor,1,149.99,06/10/19 14:53,"438 Madison St, Dallas, TX 75001" +208712,AA Batteries (4-pack),2,3.84,06/30/19 01:06,"846 Madison St, Boston, MA 02215" +208713,Wired Headphones,1,11.99,06/11/19 18:41,"879 Hickory St, Atlanta, GA 30301" +208714,USB-C Charging Cable,1,11.95,06/12/19 23:19,"794 Cedar St, Austin, TX 73301" +208714,Macbook Pro Laptop,1,1700,06/12/19 23:19,"794 Cedar St, Austin, TX 73301" +208715,Lightning Charging Cable,1,14.95,06/20/19 19:59,"317 Lake St, Los Angeles, CA 90001" +208716,Lightning Charging Cable,1,14.95,06/30/19 20:36,"315 11th St, Atlanta, GA 30301" +208717,USB-C Charging Cable,1,11.95,06/01/19 17:35,"131 Lake St, Los Angeles, CA 90001" +208718,Wired Headphones,1,11.99,06/16/19 21:13,"626 Cedar St, Los Angeles, CA 90001" +208719,34in Ultrawide Monitor,1,379.99,06/30/19 11:09,"543 Hill St, Dallas, TX 75001" +208720,Wired Headphones,1,11.99,06/22/19 12:36,"449 Jefferson St, San Francisco, CA 94016" +208721,Macbook Pro Laptop,1,1700,06/12/19 22:58,"129 Adams St, Portland, OR 97035" +208722,Bose SoundSport Headphones,1,99.99,06/27/19 14:05,"276 13th St, New York City, NY 10001" +208723,Lightning Charging Cable,1,14.95,06/16/19 01:07,"332 Washington St, San Francisco, CA 94016" +208724,USB-C Charging Cable,1,11.95,06/27/19 07:34,"807 Jefferson St, San Francisco, CA 94016" +208725,Macbook Pro Laptop,1,1700,06/04/19 19:43,"280 Johnson St, Los Angeles, CA 90001" +208726,USB-C Charging Cable,1,11.95,06/01/19 14:51,"96 North St, San Francisco, CA 94016" +208727,Lightning Charging Cable,1,14.95,06/17/19 16:22,"365 South St, San Francisco, CA 94016" +208728,Lightning Charging Cable,1,14.95,06/01/19 11:01,"111 Ridge St, San Francisco, CA 94016" +208729,AA Batteries (4-pack),1,3.84,06/02/19 23:25,"474 West St, Austin, TX 73301" +208730,ThinkPad Laptop,1,999.99,06/17/19 16:35,"198 1st St, Los Angeles, CA 90001" +208731,AA Batteries (4-pack),1,3.84,06/22/19 07:54,"568 Jackson St, Los Angeles, CA 90001" +208732,34in Ultrawide Monitor,1,379.99,06/22/19 10:50,"989 Cherry St, New York City, NY 10001" +208733,Flatscreen TV,1,300,06/26/19 14:46,"606 Jackson St, New York City, NY 10001" +208734,Wired Headphones,1,11.99,06/07/19 22:46,"895 Hill St, New York City, NY 10001" +208735,Bose SoundSport Headphones,1,99.99,06/15/19 05:57,"857 Maple St, Boston, MA 02215" +208736,USB-C Charging Cable,1,11.95,06/24/19 23:59,"655 Church St, New York City, NY 10001" +208737,34in Ultrawide Monitor,1,379.99,06/26/19 21:14,"802 Lakeview St, Seattle, WA 98101" +208738,Apple Airpods Headphones,1,150,06/16/19 01:54,"705 Cherry St, Los Angeles, CA 90001" +208739,Apple Airpods Headphones,1,150,06/06/19 00:01,"908 5th St, San Francisco, CA 94016" +208740,Macbook Pro Laptop,1,1700,06/09/19 14:59,"214 4th St, Los Angeles, CA 90001" +208741,AAA Batteries (4-pack),1,2.99,06/30/19 13:06,"898 14th St, Dallas, TX 75001" +208742,iPhone,1,700,06/13/19 22:44,"614 1st St, Seattle, WA 98101" +208743,34in Ultrawide Monitor,1,379.99,06/17/19 12:22,"221 7th St, Seattle, WA 98101" +208744,Wired Headphones,2,11.99,06/06/19 11:05,"106 Pine St, San Francisco, CA 94016" +208745,AAA Batteries (4-pack),1,2.99,06/05/19 08:40,"10 12th St, Boston, MA 02215" +208746,USB-C Charging Cable,1,11.95,06/23/19 10:30,"301 1st St, Boston, MA 02215" +208747,AAA Batteries (4-pack),2,2.99,06/15/19 00:08,"111 Meadow St, San Francisco, CA 94016" +208748,AAA Batteries (4-pack),1,2.99,06/21/19 21:01,"895 Hickory St, New York City, NY 10001" +208749,AAA Batteries (4-pack),1,2.99,06/17/19 22:05,"576 Hill St, Boston, MA 02215" +208750,Macbook Pro Laptop,1,1700,06/16/19 11:15,"728 Forest St, New York City, NY 10001" +208751,27in FHD Monitor,1,149.99,06/18/19 09:11,"992 11th St, San Francisco, CA 94016" +208752,Flatscreen TV,1,300,06/26/19 22:07,"676 Johnson St, San Francisco, CA 94016" +208753,34in Ultrawide Monitor,1,379.99,06/01/19 22:16,"522 River St, New York City, NY 10001" +208754,AAA Batteries (4-pack),1,2.99,06/26/19 22:19,"53 Washington St, San Francisco, CA 94016" +208755,iPhone,1,700,06/27/19 11:32,"807 Jefferson St, Austin, TX 73301" +208755,Wired Headphones,1,11.99,06/27/19 11:32,"807 Jefferson St, Austin, TX 73301" +208756,AAA Batteries (4-pack),2,2.99,06/16/19 17:36,"395 West St, New York City, NY 10001" +208757,USB-C Charging Cable,1,11.95,06/18/19 19:03,"377 Walnut St, Boston, MA 02215" +208758,Apple Airpods Headphones,1,150,06/25/19 15:04,"494 Center St, Boston, MA 02215" +208759,AA Batteries (4-pack),1,3.84,06/06/19 16:13,"951 Jackson St, Seattle, WA 98101" +208760,Wired Headphones,2,11.99,06/30/19 00:41,"859 Dogwood St, New York City, NY 10001" +208761,20in Monitor,1,109.99,06/30/19 18:56,"396 12th St, San Francisco, CA 94016" +208762,AAA Batteries (4-pack),1,2.99,06/06/19 14:02,"623 Dogwood St, San Francisco, CA 94016" +208763,Wired Headphones,1,11.99,06/02/19 09:38,"825 Hickory St, San Francisco, CA 94016" +208764,Bose SoundSport Headphones,1,99.99,06/14/19 08:21,"792 Main St, San Francisco, CA 94016" +208765,Bose SoundSport Headphones,1,99.99,06/03/19 16:22,"996 Lakeview St, Boston, MA 02215" +208766,20in Monitor,1,109.99,06/16/19 15:18,"575 Lakeview St, New York City, NY 10001" +208767,USB-C Charging Cable,1,11.95,06/30/19 15:26,"322 7th St, New York City, NY 10001" +208768,Flatscreen TV,1,300,06/18/19 10:14,"393 Church St, Boston, MA 02215" +208768,AA Batteries (4-pack),1,3.84,06/18/19 10:14,"393 Church St, Boston, MA 02215" +208769,Lightning Charging Cable,1,14.95,06/10/19 19:09,"864 Meadow St, Dallas, TX 75001" +208770,AA Batteries (4-pack),2,3.84,06/26/19 20:19,"651 Hill St, Dallas, TX 75001" +208771,Apple Airpods Headphones,1,150,06/11/19 23:02,"515 Hill St, Austin, TX 73301" +208772,USB-C Charging Cable,1,11.95,06/26/19 18:40,"89 8th St, Seattle, WA 98101" +208773,34in Ultrawide Monitor,1,379.99,06/19/19 13:39,"258 Willow St, Los Angeles, CA 90001" +208774,Apple Airpods Headphones,1,150,06/20/19 14:21,"177 Highland St, Boston, MA 02215" +208775,Bose SoundSport Headphones,1,99.99,06/13/19 19:56,"518 Ridge St, Boston, MA 02215" +208776,AA Batteries (4-pack),2,3.84,06/04/19 17:15,"222 Lakeview St, New York City, NY 10001" +208777,Bose SoundSport Headphones,1,99.99,06/20/19 11:40,"714 Pine St, Portland, OR 97035" +208778,USB-C Charging Cable,1,11.95,06/14/19 13:35,"916 Lakeview St, Los Angeles, CA 90001" +208779,AA Batteries (4-pack),2,3.84,06/04/19 14:56,"443 Jefferson St, Portland, OR 97035" +208780,AA Batteries (4-pack),1,3.84,06/25/19 15:20,"169 14th St, New York City, NY 10001" +208781,Lightning Charging Cable,1,14.95,06/24/19 17:03,"120 12th St, Los Angeles, CA 90001" +208782,USB-C Charging Cable,1,11.95,06/27/19 09:10,"70 Church St, Atlanta, GA 30301" +208783,Macbook Pro Laptop,1,1700,06/10/19 10:56,"803 Main St, San Francisco, CA 94016" +208784,Lightning Charging Cable,1,14.95,06/05/19 19:46,"520 1st St, Boston, MA 02215" +208785,AA Batteries (4-pack),1,3.84,06/21/19 17:28,"596 Jefferson St, New York City, NY 10001" +208786,USB-C Charging Cable,1,11.95,06/28/19 20:20,"95 Pine St, Boston, MA 02215" +208787,Bose SoundSport Headphones,1,99.99,06/12/19 12:12,"407 Chestnut St, Boston, MA 02215" +208788,AA Batteries (4-pack),1,3.84,06/16/19 10:29,"233 8th St, San Francisco, CA 94016" +208789,Apple Airpods Headphones,1,150,06/25/19 22:47,"941 Wilson St, Austin, TX 73301" +208790,Lightning Charging Cable,1,14.95,06/04/19 18:46,"369 Cedar St, Boston, MA 02215" +208791,Apple Airpods Headphones,1,150,06/21/19 11:30,"367 Lincoln St, San Francisco, CA 94016" +208792,27in 4K Gaming Monitor,1,389.99,06/14/19 12:58,"919 Lake St, Seattle, WA 98101" +208793,AA Batteries (4-pack),4,3.84,06/08/19 05:32,"985 Jefferson St, Austin, TX 73301" +208794,Bose SoundSport Headphones,1,99.99,06/13/19 06:01,"1 2nd St, Los Angeles, CA 90001" +208795,27in FHD Monitor,1,149.99,06/19/19 16:32,"359 Main St, Seattle, WA 98101" +208796,AAA Batteries (4-pack),1,2.99,06/22/19 08:46,"751 4th St, Portland, OR 97035" +208797,AAA Batteries (4-pack),1,2.99,06/30/19 07:22,"594 Hickory St, New York City, NY 10001" +208798,LG Dryer,1,600.0,06/14/19 15:49,"637 Sunset St, Los Angeles, CA 90001" +208799,27in 4K Gaming Monitor,1,389.99,06/05/19 10:48,"456 Meadow St, Los Angeles, CA 90001" +208800,Wired Headphones,1,11.99,06/17/19 05:10,"287 Sunset St, Los Angeles, CA 90001" +208801,Lightning Charging Cable,1,14.95,06/21/19 18:24,"256 13th St, Dallas, TX 75001" +208802,USB-C Charging Cable,1,11.95,06/07/19 23:25,"330 Lake St, Los Angeles, CA 90001" +208803,Flatscreen TV,1,300,06/03/19 00:47,"878 2nd St, San Francisco, CA 94016" +208804,Lightning Charging Cable,1,14.95,06/30/19 21:40,"227 Johnson St, Los Angeles, CA 90001" +208805,Lightning Charging Cable,1,14.95,06/11/19 11:49,"5 Jefferson St, San Francisco, CA 94016" +208806,Wired Headphones,1,11.99,06/10/19 11:30,"82 Washington St, San Francisco, CA 94016" +208807,Wired Headphones,1,11.99,06/18/19 19:29,"168 Chestnut St, San Francisco, CA 94016" +208808,Apple Airpods Headphones,1,150,06/20/19 12:27,"600 Sunset St, Portland, OR 97035" +208809,AA Batteries (4-pack),5,3.84,06/22/19 18:18,"111 Center St, San Francisco, CA 94016" +208810,34in Ultrawide Monitor,1,379.99,06/07/19 16:15,"299 11th St, San Francisco, CA 94016" +208811,AAA Batteries (4-pack),1,2.99,06/28/19 21:15,"840 Sunset St, Los Angeles, CA 90001" +208812,Wired Headphones,1,11.99,06/11/19 01:46,"705 Elm St, Boston, MA 02215" +208813,AAA Batteries (4-pack),3,2.99,06/27/19 13:45,"719 Jackson St, Austin, TX 73301" +208814,AA Batteries (4-pack),1,3.84,06/14/19 14:31,"965 Meadow St, Boston, MA 02215" +208815,20in Monitor,1,109.99,06/16/19 22:29,"296 Maple St, New York City, NY 10001" +208816,USB-C Charging Cable,1,11.95,06/10/19 07:40,"497 South St, Portland, OR 97035" +208817,Flatscreen TV,1,300,06/17/19 22:00,"672 Lake St, San Francisco, CA 94016" +208818,Wired Headphones,1,11.99,06/05/19 09:29,"191 Meadow St, Atlanta, GA 30301" +208819,Wired Headphones,1,11.99,06/25/19 18:41,"437 North St, Boston, MA 02215" +208820,Bose SoundSport Headphones,1,99.99,06/27/19 20:02,"520 Forest St, New York City, NY 10001" +208821,AA Batteries (4-pack),1,3.84,06/22/19 11:10,"530 11th St, Los Angeles, CA 90001" +208822,Google Phone,1,600,06/05/19 19:11,"46 13th St, New York City, NY 10001" +208823,Bose SoundSport Headphones,1,99.99,06/27/19 19:26,"338 Meadow St, San Francisco, CA 94016" +208824,Wired Headphones,1,11.99,06/28/19 00:21,"372 Wilson St, New York City, NY 10001" +208825,Wired Headphones,1,11.99,06/23/19 10:46,"350 Jefferson St, Los Angeles, CA 90001" +208826,USB-C Charging Cable,1,11.95,06/14/19 16:33,"994 5th St, Los Angeles, CA 90001" +208827,27in 4K Gaming Monitor,1,389.99,06/12/19 17:52,"853 Cedar St, San Francisco, CA 94016" +208828,Wired Headphones,1,11.99,06/05/19 01:03,"716 Elm St, Austin, TX 73301" +208829,Google Phone,1,600,06/11/19 11:19,"165 Maple St, Portland, OR 97035" +208830,20in Monitor,1,109.99,06/16/19 13:07,"856 Elm St, San Francisco, CA 94016" +208831,Wired Headphones,1,11.99,06/28/19 22:26,"821 Washington St, New York City, NY 10001" +208832,Lightning Charging Cable,1,14.95,06/23/19 17:25,"501 13th St, San Francisco, CA 94016" +208833,USB-C Charging Cable,1,11.95,06/08/19 19:13,"185 1st St, Austin, TX 73301" +208834,Wired Headphones,1,11.99,06/11/19 13:04,"444 Forest St, Seattle, WA 98101" +208835,Google Phone,1,600,06/10/19 17:27,"268 Park St, Boston, MA 02215" +208836,27in FHD Monitor,1,149.99,06/11/19 19:19,"639 Hickory St, Boston, MA 02215" +208837,AAA Batteries (4-pack),1,2.99,06/23/19 05:32,"303 Main St, Atlanta, GA 30301" +208838,Google Phone,1,600,06/27/19 17:05,"555 Maple St, Seattle, WA 98101" +208838,USB-C Charging Cable,1,11.95,06/27/19 17:05,"555 Maple St, Seattle, WA 98101" +208839,Bose SoundSport Headphones,1,99.99,06/02/19 13:57,"883 West St, Los Angeles, CA 90001" +208840,Bose SoundSport Headphones,1,99.99,06/19/19 11:07,"874 8th St, San Francisco, CA 94016" +208841,Wired Headphones,1,11.99,06/30/19 16:54,"138 Wilson St, San Francisco, CA 94016" +208842,Lightning Charging Cable,1,14.95,06/18/19 14:06,"704 Wilson St, New York City, NY 10001" +208843,Bose SoundSport Headphones,1,99.99,06/14/19 14:24,"337 Church St, Los Angeles, CA 90001" +208844,Wired Headphones,1,11.99,06/30/19 12:33,"568 Dogwood St, Los Angeles, CA 90001" +208845,USB-C Charging Cable,1,11.95,06/05/19 09:08,"565 Lake St, San Francisco, CA 94016" +208846,Bose SoundSport Headphones,1,99.99,06/18/19 19:33,"379 Lake St, Atlanta, GA 30301" +208847,Macbook Pro Laptop,1,1700,06/01/19 16:05,"603 Washington St, Boston, MA 02215" +208848,20in Monitor,1,109.99,06/12/19 09:09,"477 Center St, Atlanta, GA 30301" +208849,USB-C Charging Cable,1,11.95,06/02/19 22:08,"52 13th St, Dallas, TX 75001" +208850,AAA Batteries (4-pack),3,2.99,06/22/19 19:45,"637 Lakeview St, Los Angeles, CA 90001" +208851,Macbook Pro Laptop,1,1700,06/22/19 15:17,"404 Chestnut St, New York City, NY 10001" +208852,Apple Airpods Headphones,1,150,06/28/19 16:54,"514 8th St, Seattle, WA 98101" +208853,Wired Headphones,1,11.99,06/01/19 16:44,"603 7th St, Austin, TX 73301" +208854,AA Batteries (4-pack),1,3.84,06/24/19 14:43,"120 10th St, New York City, NY 10001" +208855,AA Batteries (4-pack),1,3.84,06/13/19 11:21,"178 Church St, San Francisco, CA 94016" +208856,USB-C Charging Cable,1,11.95,06/26/19 16:23,"323 14th St, Los Angeles, CA 90001" +208857,AAA Batteries (4-pack),1,2.99,06/04/19 11:25,"175 6th St, Atlanta, GA 30301" +208858,Bose SoundSport Headphones,1,99.99,06/22/19 19:49,"279 Cedar St, Atlanta, GA 30301" +208859,Wired Headphones,1,11.99,06/24/19 18:17,"557 Sunset St, Los Angeles, CA 90001" +208860,Apple Airpods Headphones,1,150,06/04/19 11:59,"60 Forest St, San Francisco, CA 94016" +208861,iPhone,1,700,06/11/19 08:14,"936 2nd St, Los Angeles, CA 90001" +208862,34in Ultrawide Monitor,1,379.99,06/08/19 13:30,"188 Chestnut St, Atlanta, GA 30301" +208863,27in 4K Gaming Monitor,1,389.99,06/08/19 13:33,"783 4th St, Los Angeles, CA 90001" +208864,Lightning Charging Cable,1,14.95,06/28/19 21:35,"506 2nd St, Boston, MA 02215" +208865,USB-C Charging Cable,1,11.95,06/13/19 20:48,"713 8th St, Atlanta, GA 30301" +208866,Wired Headphones,1,11.99,06/23/19 23:39,"135 Center St, Austin, TX 73301" +208867,USB-C Charging Cable,1,11.95,06/26/19 12:28,"952 9th St, San Francisco, CA 94016" +208868,AA Batteries (4-pack),1,3.84,06/30/19 18:26,"886 North St, Seattle, WA 98101" +208869,AA Batteries (4-pack),2,3.84,06/07/19 21:31,"772 Lincoln St, Seattle, WA 98101" +208869,USB-C Charging Cable,1,11.95,06/07/19 21:31,"772 Lincoln St, Seattle, WA 98101" +208870,USB-C Charging Cable,1,11.95,06/25/19 03:17,"351 9th St, Atlanta, GA 30301" +208871,AAA Batteries (4-pack),1,2.99,06/14/19 09:03,"176 Highland St, San Francisco, CA 94016" +208872,AAA Batteries (4-pack),1,2.99,06/27/19 16:34,"269 Hill St, San Francisco, CA 94016" +208873,AA Batteries (4-pack),1,3.84,06/03/19 07:53,"309 Cherry St, Los Angeles, CA 90001" +208874,Vareebadd Phone,1,400,06/30/19 23:33,"902 Jackson St, Atlanta, GA 30301" +208874,USB-C Charging Cable,1,11.95,06/30/19 23:33,"902 Jackson St, Atlanta, GA 30301" +208875,Bose SoundSport Headphones,1,99.99,06/05/19 23:42,"183 Hickory St, Atlanta, GA 30301" +208876,iPhone,1,700,06/19/19 14:14,"672 6th St, Seattle, WA 98101" +208877,Google Phone,1,600,06/24/19 10:15,"362 4th St, San Francisco, CA 94016" +208878,AAA Batteries (4-pack),1,2.99,06/23/19 08:34,"359 Walnut St, New York City, NY 10001" +208879,Bose SoundSport Headphones,1,99.99,06/17/19 09:16,"472 Jefferson St, Austin, TX 73301" +208880,AA Batteries (4-pack),1,3.84,06/21/19 00:34,"822 Center St, Atlanta, GA 30301" +208881,Lightning Charging Cable,1,14.95,06/11/19 11:23,"923 Pine St, Los Angeles, CA 90001" +208882,Wired Headphones,1,11.99,06/16/19 19:54,"925 Sunset St, Los Angeles, CA 90001" +208883,Macbook Pro Laptop,1,1700,06/30/19 18:27,"452 Forest St, Boston, MA 02215" +208884,Flatscreen TV,1,300,06/27/19 10:55,"185 Maple St, San Francisco, CA 94016" +208885,Bose SoundSport Headphones,1,99.99,06/19/19 13:56,"514 12th St, San Francisco, CA 94016" +208886,AA Batteries (4-pack),1,3.84,06/11/19 13:51,"58 Madison St, San Francisco, CA 94016" +208887,ThinkPad Laptop,1,999.99,06/04/19 22:00,"245 4th St, San Francisco, CA 94016" +208888,USB-C Charging Cable,2,11.95,06/29/19 17:23,"310 Maple St, Seattle, WA 98101" +208889,Wired Headphones,1,11.99,06/02/19 17:33,"758 Sunset St, Dallas, TX 75001" +208890,USB-C Charging Cable,1,11.95,06/07/19 12:54,"845 Hill St, San Francisco, CA 94016" +208891,AA Batteries (4-pack),1,3.84,06/27/19 14:32,"457 West St, Boston, MA 02215" +208892,Wired Headphones,1,11.99,06/04/19 10:28,"342 Sunset St, Boston, MA 02215" +208893,AAA Batteries (4-pack),1,2.99,06/19/19 06:51,"537 Adams St, New York City, NY 10001" +208894,Wired Headphones,2,11.99,06/25/19 11:41,"396 Ridge St, New York City, NY 10001" +208895,AA Batteries (4-pack),1,3.84,06/03/19 12:34,"649 10th St, Boston, MA 02215" +208896,Wired Headphones,1,11.99,06/15/19 21:07,"138 11th St, Los Angeles, CA 90001" +208897,LG Washing Machine,1,600.0,06/08/19 10:00,"456 Pine St, San Francisco, CA 94016" +208898,Lightning Charging Cable,1,14.95,06/29/19 05:36,"663 Wilson St, Boston, MA 02215" +208899,AAA Batteries (4-pack),2,2.99,06/20/19 22:42,"518 8th St, Boston, MA 02215" +208900,AAA Batteries (4-pack),1,2.99,06/03/19 19:31,"742 Church St, Austin, TX 73301" +208901,34in Ultrawide Monitor,1,379.99,06/11/19 12:13,"100 9th St, Seattle, WA 98101" +208902,Lightning Charging Cable,1,14.95,06/05/19 15:59,"454 Hill St, New York City, NY 10001" +208903,AAA Batteries (4-pack),1,2.99,06/10/19 05:18,"538 Sunset St, Los Angeles, CA 90001" +208904,USB-C Charging Cable,1,11.95,06/22/19 08:06,"75 Pine St, San Francisco, CA 94016" +208905,USB-C Charging Cable,1,11.95,06/17/19 21:02,"258 Sunset St, Los Angeles, CA 90001" +208906,AA Batteries (4-pack),2,3.84,06/03/19 11:36,"371 Hickory St, New York City, NY 10001" +208907,USB-C Charging Cable,1,11.95,06/25/19 13:18,"547 Meadow St, San Francisco, CA 94016" +208908,Google Phone,1,600,06/07/19 20:40,"616 Jefferson St, San Francisco, CA 94016" +208909,Lightning Charging Cable,1,14.95,06/23/19 21:28,"316 Cedar St, San Francisco, CA 94016" +208910,AA Batteries (4-pack),2,3.84,06/21/19 19:03,"370 Madison St, Boston, MA 02215" +208911,Wired Headphones,1,11.99,06/06/19 01:37,"245 South St, New York City, NY 10001" +208912,USB-C Charging Cable,1,11.95,06/27/19 20:52,"872 9th St, Los Angeles, CA 90001" +208912,Lightning Charging Cable,2,14.95,06/27/19 20:52,"872 9th St, Los Angeles, CA 90001" +208913,Lightning Charging Cable,1,14.95,06/06/19 11:32,"115 10th St, Los Angeles, CA 90001" +208914,Lightning Charging Cable,1,14.95,06/15/19 19:38,"862 11th St, Dallas, TX 75001" +208915,Macbook Pro Laptop,1,1700,06/07/19 15:46,"881 Wilson St, Los Angeles, CA 90001" +208916,27in FHD Monitor,1,149.99,06/08/19 19:36,"786 6th St, San Francisco, CA 94016" +208917,AA Batteries (4-pack),1,3.84,06/11/19 15:08,"238 12th St, Boston, MA 02215" +208918,Macbook Pro Laptop,1,1700,06/03/19 12:37,"426 Pine St, Los Angeles, CA 90001" +208919,Bose SoundSport Headphones,1,99.99,06/06/19 20:40,"957 Park St, Los Angeles, CA 90001" +208920,AA Batteries (4-pack),1,3.84,06/12/19 22:02,"378 Adams St, Seattle, WA 98101" +208921,USB-C Charging Cable,1,11.95,06/16/19 16:10,"865 Center St, Dallas, TX 75001" +208922,USB-C Charging Cable,1,11.95,06/06/19 13:41,"581 14th St, Boston, MA 02215" +208923,Google Phone,1,600,06/01/19 15:57,"162 Hickory St, San Francisco, CA 94016" +208923,USB-C Charging Cable,1,11.95,06/01/19 15:57,"162 Hickory St, San Francisco, CA 94016" +208924,Wired Headphones,2,11.99,06/26/19 01:29,"998 Sunset St, Boston, MA 02215" +208925,AAA Batteries (4-pack),2,2.99,06/26/19 20:10,"630 Lake St, Seattle, WA 98101" +208926,Apple Airpods Headphones,1,150,06/08/19 10:34,"498 Cherry St, Austin, TX 73301" +208927,Google Phone,1,600,06/17/19 12:01,"286 Elm St, Dallas, TX 75001" +208928,Bose SoundSport Headphones,1,99.99,06/30/19 22:51,"462 13th St, Atlanta, GA 30301" +208929,USB-C Charging Cable,1,11.95,06/24/19 09:59,"89 Madison St, San Francisco, CA 94016" +208930,ThinkPad Laptop,1,999.99,06/04/19 18:46,"536 Madison St, New York City, NY 10001" +208931,Lightning Charging Cable,1,14.95,06/28/19 13:14,"466 River St, Atlanta, GA 30301" +208932,AA Batteries (4-pack),1,3.84,06/30/19 16:29,"620 10th St, Portland, OR 97035" +208932,USB-C Charging Cable,1,11.95,06/30/19 16:29,"620 10th St, Portland, OR 97035" +208933,AA Batteries (4-pack),1,3.84,06/17/19 08:48,"56 Park St, Los Angeles, CA 90001" +208934,AA Batteries (4-pack),1,3.84,06/03/19 10:43,"383 Washington St, Dallas, TX 75001" +208935,ThinkPad Laptop,1,999.99,06/20/19 21:51,"351 12th St, Boston, MA 02215" +208936,Wired Headphones,1,11.99,06/11/19 10:38,"495 Lake St, New York City, NY 10001" +208937,AAA Batteries (4-pack),1,2.99,06/02/19 13:21,"703 Cedar St, San Francisco, CA 94016" +208938,USB-C Charging Cable,1,11.95,06/09/19 19:14,"312 South St, Boston, MA 02215" +208939,AA Batteries (4-pack),1,3.84,06/30/19 09:32,"610 Lakeview St, Atlanta, GA 30301" +208940,iPhone,1,700,06/19/19 15:00,"587 1st St, Atlanta, GA 30301" +208941,Bose SoundSport Headphones,1,99.99,06/02/19 10:03,"817 Adams St, Atlanta, GA 30301" +208942,Lightning Charging Cable,1,14.95,06/05/19 13:12,"824 Main St, San Francisco, CA 94016" +208943,AA Batteries (4-pack),1,3.84,06/18/19 16:51,"814 Lake St, New York City, NY 10001" +208944,USB-C Charging Cable,1,11.95,06/27/19 19:10,"119 Chestnut St, Los Angeles, CA 90001" +208945,USB-C Charging Cable,1,11.95,06/28/19 15:43,"432 14th St, New York City, NY 10001" +208946,20in Monitor,1,109.99,06/23/19 17:08,"340 West St, Boston, MA 02215" +208947,Google Phone,1,600,06/28/19 21:28,"38 Lake St, San Francisco, CA 94016" +208947,USB-C Charging Cable,2,11.95,06/28/19 21:28,"38 Lake St, San Francisco, CA 94016" +208948,34in Ultrawide Monitor,1,379.99,06/08/19 23:54,"153 Madison St, Atlanta, GA 30301" +208949,Macbook Pro Laptop,1,1700,06/23/19 14:02,"821 10th St, New York City, NY 10001" +208950,Bose SoundSport Headphones,1,99.99,06/16/19 13:09,"202 Sunset St, Portland, OR 97035" +208951,Apple Airpods Headphones,1,150,06/22/19 16:53,"835 1st St, New York City, NY 10001" +208952,AAA Batteries (4-pack),3,2.99,06/08/19 12:38,"425 Washington St, San Francisco, CA 94016" +208953,AA Batteries (4-pack),2,3.84,06/25/19 09:27,"355 Maple St, Austin, TX 73301" +208954,34in Ultrawide Monitor,1,379.99,06/15/19 20:59,"94 Center St, Austin, TX 73301" +208955,AA Batteries (4-pack),2,3.84,06/26/19 12:25,"839 10th St, Los Angeles, CA 90001" +208956,Wired Headphones,1,11.99,06/17/19 11:49,"835 Hickory St, Boston, MA 02215" +208957,Bose SoundSport Headphones,1,99.99,06/10/19 12:27,"86 Sunset St, Seattle, WA 98101" +208958,Bose SoundSport Headphones,1,99.99,06/04/19 11:41,"914 Walnut St, Boston, MA 02215" +208959,Bose SoundSport Headphones,1,99.99,06/15/19 21:48,"679 Main St, San Francisco, CA 94016" +208960,Google Phone,1,600,06/18/19 12:17,"271 Sunset St, Austin, TX 73301" +208961,Lightning Charging Cable,1,14.95,06/22/19 13:47,"254 8th St, Boston, MA 02215" +208962,Bose SoundSport Headphones,1,99.99,06/01/19 17:44,"874 Dogwood St, Atlanta, GA 30301" +208963,AAA Batteries (4-pack),1,2.99,06/04/19 19:02,"841 Forest St, San Francisco, CA 94016" +208964,27in 4K Gaming Monitor,1,389.99,06/04/19 12:39,"452 Spruce St, Atlanta, GA 30301" +208965,Lightning Charging Cable,1,14.95,06/10/19 12:28,"879 Adams St, Dallas, TX 75001" +208965,Google Phone,1,600,06/10/19 12:28,"879 Adams St, Dallas, TX 75001" +208966,ThinkPad Laptop,1,999.99,06/16/19 10:14,"534 1st St, San Francisco, CA 94016" +208967,Wired Headphones,1,11.99,06/09/19 08:22,"52 Adams St, Portland, OR 97035" +208968,Bose SoundSport Headphones,1,99.99,06/12/19 17:06,"509 Hill St, San Francisco, CA 94016" +208969,Lightning Charging Cable,1,14.95,06/27/19 11:26,"150 Lincoln St, Seattle, WA 98101" +208970,USB-C Charging Cable,1,11.95,06/11/19 19:27,"949 13th St, Seattle, WA 98101" +208971,Lightning Charging Cable,1,14.95,06/09/19 13:06,"429 Hill St, Dallas, TX 75001" +208972,AAA Batteries (4-pack),1,2.99,06/22/19 21:17,"167 Highland St, Seattle, WA 98101" +208973,Bose SoundSport Headphones,1,99.99,06/21/19 15:03,"348 Jackson St, Los Angeles, CA 90001" +208974,Wired Headphones,1,11.99,06/26/19 16:09,"409 West St, Los Angeles, CA 90001" +208975,Apple Airpods Headphones,1,150,06/08/19 18:36,"70 7th St, Los Angeles, CA 90001" +208976,Macbook Pro Laptop,1,1700,06/26/19 23:08,"481 Hill St, Los Angeles, CA 90001" +208977,Apple Airpods Headphones,1,150,06/14/19 21:35,"334 11th St, Seattle, WA 98101" +208978,AAA Batteries (4-pack),1,2.99,06/07/19 09:37,"573 Church St, San Francisco, CA 94016" +208979,27in FHD Monitor,1,149.99,06/06/19 13:39,"616 Sunset St, Portland, OR 97035" +208980,Wired Headphones,1,11.99,06/24/19 23:26,"539 Park St, San Francisco, CA 94016" +208981,Lightning Charging Cable,1,14.95,06/30/19 11:32,"15 West St, Atlanta, GA 30301" +208982,Apple Airpods Headphones,1,150,06/27/19 20:51,"660 Maple St, Atlanta, GA 30301" +208983,27in FHD Monitor,1,149.99,06/12/19 10:49,"351 Maple St, New York City, NY 10001" +208984,ThinkPad Laptop,1,999.99,06/11/19 22:17,"631 Hickory St, New York City, NY 10001" +208985,USB-C Charging Cable,1,11.95,06/07/19 15:54,"657 River St, Los Angeles, CA 90001" +208986,USB-C Charging Cable,1,11.95,06/22/19 11:22,"553 Center St, New York City, NY 10001" +208987,AA Batteries (4-pack),2,3.84,06/02/19 15:34,"126 Highland St, Portland, ME 04101" +208988,Wired Headphones,1,11.99,06/26/19 18:07,"413 Adams St, New York City, NY 10001" +208989,34in Ultrawide Monitor,1,379.99,06/15/19 18:39,"808 Lakeview St, Los Angeles, CA 90001" +208990,AAA Batteries (4-pack),1,2.99,06/29/19 16:58,"799 1st St, Los Angeles, CA 90001" +208991,AAA Batteries (4-pack),1,2.99,06/19/19 11:14,"270 Johnson St, San Francisco, CA 94016" +208992,USB-C Charging Cable,1,11.95,06/01/19 08:27,"934 Hill St, Seattle, WA 98101" +208993,Lightning Charging Cable,1,14.95,06/08/19 09:03,"75 Main St, Atlanta, GA 30301" +208994,USB-C Charging Cable,2,11.95,06/01/19 12:52,"670 Madison St, New York City, NY 10001" +208995,Lightning Charging Cable,1,14.95,06/06/19 20:32,"780 Madison St, New York City, NY 10001" +208996,Lightning Charging Cable,1,14.95,06/19/19 08:37,"150 Lincoln St, San Francisco, CA 94016" +208997,Bose SoundSport Headphones,1,99.99,06/20/19 19:50,"104 Ridge St, Los Angeles, CA 90001" +208998,iPhone,1,700,06/26/19 12:21,"15 6th St, San Francisco, CA 94016" +208999,Apple Airpods Headphones,1,150,06/15/19 12:02,"548 North St, Dallas, TX 75001" +209000,Lightning Charging Cable,1,14.95,06/09/19 11:04,"754 Lakeview St, Boston, MA 02215" +209001,Lightning Charging Cable,1,14.95,06/20/19 08:11,"755 Wilson St, Los Angeles, CA 90001" +209002,Google Phone,1,600,06/11/19 18:59,"443 Jefferson St, Boston, MA 02215" +209003,Macbook Pro Laptop,1,1700,06/05/19 23:38,"889 Lakeview St, Dallas, TX 75001" +209004,Wired Headphones,1,11.99,06/10/19 09:07,"761 5th St, Los Angeles, CA 90001" +209005,Flatscreen TV,1,300,06/08/19 00:08,"757 Spruce St, Dallas, TX 75001" +209006,LG Dryer,1,600.0,06/28/19 10:42,"129 Pine St, Los Angeles, CA 90001" +209007,Macbook Pro Laptop,1,1700,06/09/19 15:51,"354 Johnson St, San Francisco, CA 94016" +209008,Bose SoundSport Headphones,1,99.99,06/22/19 18:22,"993 Spruce St, Seattle, WA 98101" +209009,Lightning Charging Cable,1,14.95,06/23/19 11:37,"817 13th St, Los Angeles, CA 90001" +209010,Wired Headphones,1,11.99,06/22/19 10:07,"777 Adams St, Los Angeles, CA 90001" +209011,AAA Batteries (4-pack),2,2.99,06/20/19 22:27,"901 North St, San Francisco, CA 94016" +209012,AAA Batteries (4-pack),1,2.99,06/21/19 17:57,"168 Hickory St, San Francisco, CA 94016" +209013,AAA Batteries (4-pack),1,2.99,06/27/19 22:54,"526 Lincoln St, Boston, MA 02215" +209014,Wired Headphones,1,11.99,06/01/19 04:37,"383 Park St, San Francisco, CA 94016" +209015,Bose SoundSport Headphones,1,99.99,06/27/19 10:08,"648 West St, Los Angeles, CA 90001" +209016,USB-C Charging Cable,3,11.95,06/19/19 16:30,"264 9th St, San Francisco, CA 94016" +209017,AA Batteries (4-pack),1,3.84,06/03/19 11:43,"751 Cedar St, Los Angeles, CA 90001" +209018,27in FHD Monitor,1,149.99,06/23/19 09:55,"999 6th St, San Francisco, CA 94016" +209019,USB-C Charging Cable,1,11.95,06/21/19 12:55,"254 Meadow St, Austin, TX 73301" +209020,AAA Batteries (4-pack),1,2.99,06/05/19 20:37,"82 6th St, Portland, OR 97035" +209021,Macbook Pro Laptop,1,1700,06/06/19 18:17,"126 Hill St, Atlanta, GA 30301" +209022,AAA Batteries (4-pack),1,2.99,06/14/19 20:32,"449 Highland St, Austin, TX 73301" +209023,AAA Batteries (4-pack),1,2.99,06/07/19 22:54,"801 7th St, New York City, NY 10001" +209024,Lightning Charging Cable,1,14.95,06/21/19 07:50,"269 Lincoln St, Boston, MA 02215" +209025,Wired Headphones,1,11.99,06/05/19 17:14,"693 Chestnut St, Boston, MA 02215" +209026,20in Monitor,1,109.99,06/20/19 20:24,"454 Adams St, Los Angeles, CA 90001" +209027,Apple Airpods Headphones,1,150,06/05/19 11:01,"587 11th St, San Francisco, CA 94016" +209028,Apple Airpods Headphones,1,150,06/03/19 20:55,"755 14th St, Los Angeles, CA 90001" +209029,Wired Headphones,2,11.99,06/04/19 08:28,"928 South St, Dallas, TX 75001" +209030,AA Batteries (4-pack),2,3.84,06/28/19 16:12,"520 North St, New York City, NY 10001" +209031,ThinkPad Laptop,1,999.99,06/05/19 19:09,"618 Hill St, Atlanta, GA 30301" +209032,AAA Batteries (4-pack),1,2.99,06/30/19 21:07,"491 Pine St, Los Angeles, CA 90001" +209033,USB-C Charging Cable,2,11.95,06/05/19 13:57,"396 Jefferson St, Boston, MA 02215" +209034,Lightning Charging Cable,1,14.95,06/08/19 22:10,"54 Johnson St, Boston, MA 02215" +209035,ThinkPad Laptop,1,999.99,06/02/19 13:20,"597 Lincoln St, New York City, NY 10001" +209036,Wired Headphones,1,11.99,06/22/19 14:00,"958 River St, San Francisco, CA 94016" +209037,27in 4K Gaming Monitor,1,389.99,06/19/19 13:08,"171 7th St, Los Angeles, CA 90001" +209038,Apple Airpods Headphones,1,150,06/03/19 17:33,"230 Washington St, Los Angeles, CA 90001" +209039,Wired Headphones,1,11.99,06/18/19 11:34,"237 9th St, Portland, OR 97035" +209039,USB-C Charging Cable,1,11.95,06/18/19 11:34,"237 9th St, Portland, OR 97035" +209040,Wired Headphones,1,11.99,06/29/19 20:13,"539 Lakeview St, New York City, NY 10001" +209041,Wired Headphones,1,11.99,06/01/19 15:54,"323 Willow St, San Francisco, CA 94016" +209042,Lightning Charging Cable,1,14.95,06/11/19 19:38,"164 Jackson St, Austin, TX 73301" +209043,Apple Airpods Headphones,1,150,06/21/19 19:18,"69 Center St, San Francisco, CA 94016" +209044,AA Batteries (4-pack),1,3.84,06/17/19 18:17,"610 Sunset St, Austin, TX 73301" +209045,20in Monitor,1,109.99,06/22/19 03:19,"22 Hickory St, Seattle, WA 98101" +209046,34in Ultrawide Monitor,1,379.99,06/22/19 20:40,"185 Chestnut St, Atlanta, GA 30301" +209047,Apple Airpods Headphones,1,150,06/04/19 05:34,"355 Dogwood St, San Francisco, CA 94016" +209048,AA Batteries (4-pack),1,3.84,06/24/19 21:59,"559 4th St, Boston, MA 02215" +209049,Lightning Charging Cable,1,14.95,06/02/19 00:08,"106 Wilson St, San Francisco, CA 94016" +209050,Apple Airpods Headphones,1,150,06/14/19 17:56,"504 Lincoln St, Dallas, TX 75001" +209051,USB-C Charging Cable,1,11.95,06/13/19 08:26,"620 Jackson St, Boston, MA 02215" +209052,iPhone,1,700,06/27/19 13:08,"24 Highland St, San Francisco, CA 94016" +209053,Bose SoundSport Headphones,1,99.99,06/18/19 16:49,"323 Lake St, Boston, MA 02215" +209054,AAA Batteries (4-pack),1,2.99,06/20/19 13:38,"58 Sunset St, Boston, MA 02215" +209055,Google Phone,1,600,06/30/19 18:54,"794 Jefferson St, San Francisco, CA 94016" +209056,Macbook Pro Laptop,1,1700,06/11/19 14:55,"967 Willow St, Austin, TX 73301" +209057,AA Batteries (4-pack),1,3.84,06/06/19 19:27,"319 9th St, Austin, TX 73301" +209058,34in Ultrawide Monitor,1,379.99,06/09/19 15:33,"229 9th St, Portland, OR 97035" +209059,AA Batteries (4-pack),2,3.84,06/20/19 17:57,"808 1st St, Seattle, WA 98101" +209060,ThinkPad Laptop,1,999.99,06/18/19 17:46,"656 6th St, Los Angeles, CA 90001" +209061,USB-C Charging Cable,1,11.95,06/03/19 13:00,"462 Spruce St, Dallas, TX 75001" +209062,AAA Batteries (4-pack),2,2.99,06/25/19 11:40,"758 Chestnut St, New York City, NY 10001" +209063,Lightning Charging Cable,1,14.95,06/12/19 12:07,"239 Maple St, San Francisco, CA 94016" +209064,Bose SoundSport Headphones,1,99.99,06/10/19 15:10,"449 Adams St, San Francisco, CA 94016" +209065,AA Batteries (4-pack),1,3.84,06/18/19 13:38,"120 Walnut St, Boston, MA 02215" +209066,Wired Headphones,1,11.99,06/15/19 10:53,"400 13th St, San Francisco, CA 94016" +209067,AA Batteries (4-pack),1,3.84,06/18/19 16:28,"539 Center St, New York City, NY 10001" +209068,iPhone,1,700,06/09/19 08:53,"676 9th St, Portland, ME 04101" +209069,Bose SoundSport Headphones,1,99.99,06/11/19 09:25,"768 7th St, Atlanta, GA 30301" +209070,Wired Headphones,2,11.99,06/08/19 23:33,"972 10th St, New York City, NY 10001" +209071,AA Batteries (4-pack),1,3.84,06/26/19 18:34,"666 Cherry St, Portland, OR 97035" +209072,Wired Headphones,1,11.99,06/20/19 23:39,"191 River St, San Francisco, CA 94016" +209073,Apple Airpods Headphones,1,150,06/17/19 12:17,"477 Park St, Los Angeles, CA 90001" +209074,AAA Batteries (4-pack),1,2.99,06/25/19 09:59,"414 South St, New York City, NY 10001" +209075,Lightning Charging Cable,2,14.95,06/21/19 16:38,"60 Madison St, New York City, NY 10001" +209076,Lightning Charging Cable,1,14.95,06/15/19 16:23,"546 Johnson St, Los Angeles, CA 90001" +209077,USB-C Charging Cable,1,11.95,06/19/19 11:34,"623 Hickory St, San Francisco, CA 94016" +209078,Google Phone,1,600,06/20/19 06:50,"198 Church St, Boston, MA 02215" +209079,AAA Batteries (4-pack),1,2.99,06/16/19 08:25,"473 Lake St, Dallas, TX 75001" +209080,AA Batteries (4-pack),1,3.84,06/14/19 08:02,"247 Chestnut St, New York City, NY 10001" +209081,Apple Airpods Headphones,1,150,06/18/19 09:59,"207 Lincoln St, San Francisco, CA 94016" +209082,Wired Headphones,1,11.99,06/02/19 12:05,"265 South St, Atlanta, GA 30301" +209082,AA Batteries (4-pack),1,3.84,06/02/19 12:05,"265 South St, Atlanta, GA 30301" +209083,USB-C Charging Cable,1,11.95,06/09/19 12:48,"1 Lake St, San Francisco, CA 94016" +209084,Wired Headphones,1,11.99,06/05/19 18:26,"961 5th St, Seattle, WA 98101" +209085,AA Batteries (4-pack),2,3.84,06/22/19 16:58,"292 Washington St, Boston, MA 02215" +209086,Lightning Charging Cable,1,14.95,06/03/19 11:21,"186 River St, San Francisco, CA 94016" +209087,AA Batteries (4-pack),1,3.84,06/15/19 17:01,"814 Jefferson St, Los Angeles, CA 90001" +209088,ThinkPad Laptop,1,999.99,06/28/19 13:36,"654 12th St, Austin, TX 73301" +209089,AAA Batteries (4-pack),1,2.99,06/13/19 15:46,"799 Pine St, Atlanta, GA 30301" +209090,ThinkPad Laptop,1,999.99,06/21/19 20:56,"799 Ridge St, Boston, MA 02215" +209091,Wired Headphones,1,11.99,06/18/19 20:33,"259 Ridge St, Boston, MA 02215" +209092,iPhone,1,700,06/13/19 19:28,"579 Hill St, Los Angeles, CA 90001" +209093,AAA Batteries (4-pack),1,2.99,06/22/19 22:21,"962 Lincoln St, Boston, MA 02215" +209094,Apple Airpods Headphones,1,150,06/27/19 15:15,"63 Lakeview St, New York City, NY 10001" +209095,34in Ultrawide Monitor,1,379.99,06/03/19 20:38,"203 Ridge St, Dallas, TX 75001" +209096,USB-C Charging Cable,1,11.95,06/13/19 16:50,"621 14th St, Dallas, TX 75001" +209097,Bose SoundSport Headphones,1,99.99,06/06/19 14:57,"431 Center St, Austin, TX 73301" +209098,Apple Airpods Headphones,1,150,06/29/19 22:10,"365 Pine St, New York City, NY 10001" +209099,Lightning Charging Cable,1,14.95,06/06/19 21:56,"971 Church St, Austin, TX 73301" +209100,Wired Headphones,1,11.99,06/26/19 11:08,"984 Ridge St, Atlanta, GA 30301" +209101,USB-C Charging Cable,1,11.95,06/23/19 16:31,"474 Walnut St, New York City, NY 10001" +209102,Lightning Charging Cable,1,14.95,06/25/19 22:41,"837 Ridge St, Los Angeles, CA 90001" +209103,AA Batteries (4-pack),1,3.84,06/12/19 20:22,"766 Lakeview St, Atlanta, GA 30301" +209104,USB-C Charging Cable,1,11.95,06/20/19 20:51,"450 River St, New York City, NY 10001" +209105,Wired Headphones,1,11.99,06/20/19 04:22,"865 Dogwood St, New York City, NY 10001" +209106,Bose SoundSport Headphones,1,99.99,06/24/19 11:53,"64 9th St, San Francisco, CA 94016" +209107,AAA Batteries (4-pack),1,2.99,06/21/19 18:26,"68 Forest St, Seattle, WA 98101" +209108,AA Batteries (4-pack),2,3.84,06/17/19 16:38,"443 Cherry St, New York City, NY 10001" +209109,USB-C Charging Cable,1,11.95,06/13/19 21:36,"392 West St, San Francisco, CA 94016" +209110,USB-C Charging Cable,1,11.95,06/29/19 21:28,"749 Center St, Los Angeles, CA 90001" +209111,USB-C Charging Cable,1,11.95,06/10/19 07:29,"131 Elm St, Dallas, TX 75001" +209112,AAA Batteries (4-pack),2,2.99,06/06/19 20:02,"156 Highland St, Portland, ME 04101" +209113,27in 4K Gaming Monitor,1,389.99,06/03/19 10:41,"995 Lake St, New York City, NY 10001" +209114,Macbook Pro Laptop,1,1700,06/26/19 15:23,"909 Main St, Austin, TX 73301" +209115,USB-C Charging Cable,1,11.95,06/18/19 22:58,"522 6th St, Seattle, WA 98101" +209116,Bose SoundSport Headphones,1,99.99,06/14/19 22:22,"88 Walnut St, San Francisco, CA 94016" +209117,Wired Headphones,1,11.99,06/08/19 21:26,"552 13th St, Los Angeles, CA 90001" +209118,AA Batteries (4-pack),1,3.84,06/04/19 00:01,"643 Church St, San Francisco, CA 94016" +209119,AAA Batteries (4-pack),1,2.99,06/16/19 21:19,"253 13th St, Atlanta, GA 30301" +209120,AA Batteries (4-pack),1,3.84,06/06/19 10:08,"801 Elm St, Los Angeles, CA 90001" +209121,Apple Airpods Headphones,1,150,06/26/19 21:42,"527 7th St, Portland, OR 97035" +209122,Bose SoundSport Headphones,1,99.99,06/30/19 17:02,"391 Adams St, Austin, TX 73301" +209123,AAA Batteries (4-pack),2,2.99,06/28/19 21:32,"722 4th St, Dallas, TX 75001" +209124,Lightning Charging Cable,1,14.95,06/24/19 17:42,"825 Sunset St, Los Angeles, CA 90001" +209125,Lightning Charging Cable,2,14.95,06/12/19 17:43,"114 Park St, Los Angeles, CA 90001" +209126,AA Batteries (4-pack),1,3.84,06/20/19 13:58,"422 Cherry St, Atlanta, GA 30301" +209127,Bose SoundSport Headphones,1,99.99,06/22/19 22:21,"699 Main St, Los Angeles, CA 90001" +209128,AAA Batteries (4-pack),1,2.99,06/11/19 20:01,"180 2nd St, New York City, NY 10001" +209129,Lightning Charging Cable,1,14.95,06/10/19 21:20,"937 8th St, Los Angeles, CA 90001" +209130,Bose SoundSport Headphones,1,99.99,06/05/19 19:43,"991 11th St, Dallas, TX 75001" +209131,Bose SoundSport Headphones,1,99.99,06/12/19 18:16,"421 Washington St, New York City, NY 10001" +209132,Wired Headphones,1,11.99,06/12/19 13:45,"512 Forest St, Los Angeles, CA 90001" +209133,AAA Batteries (4-pack),3,2.99,06/22/19 07:48,"983 Cherry St, Boston, MA 02215" +209134,USB-C Charging Cable,1,11.95,06/12/19 14:24,"1 Elm St, Los Angeles, CA 90001" +209135,Wired Headphones,1,11.99,06/21/19 13:53,"925 9th St, Dallas, TX 75001" +209136,AAA Batteries (4-pack),2,2.99,06/06/19 06:27,"456 Cherry St, Atlanta, GA 30301" +209137,Flatscreen TV,1,300,06/02/19 15:48,"912 7th St, Atlanta, GA 30301" +209138,Lightning Charging Cable,1,14.95,06/21/19 02:37,"688 2nd St, Boston, MA 02215" +209139,27in FHD Monitor,1,149.99,06/06/19 17:25,"936 Cedar St, San Francisco, CA 94016" +209140,Flatscreen TV,1,300,06/27/19 14:07,"55 12th St, Seattle, WA 98101" +209141,AA Batteries (4-pack),1,3.84,06/07/19 17:26,"868 6th St, Atlanta, GA 30301" +209142,Wired Headphones,1,11.99,06/24/19 11:13,"684 Hill St, New York City, NY 10001" +209143,Lightning Charging Cable,1,14.95,06/27/19 07:49,"314 Forest St, New York City, NY 10001" +209144,Lightning Charging Cable,1,14.95,06/27/19 12:23,"67 12th St, New York City, NY 10001" +209145,AA Batteries (4-pack),1,3.84,06/09/19 20:04,"664 Lincoln St, Los Angeles, CA 90001" +209146,USB-C Charging Cable,1,11.95,06/25/19 09:17,"763 Pine St, Boston, MA 02215" +209147,USB-C Charging Cable,2,11.95,06/17/19 19:03,"112 Hickory St, San Francisco, CA 94016" +209148,Lightning Charging Cable,1,14.95,06/04/19 14:43,"9 Maple St, Dallas, TX 75001" +209149,Flatscreen TV,1,300,06/30/19 00:11,"217 North St, Austin, TX 73301" +209150,Google Phone,1,600,06/06/19 12:07,"655 Hickory St, Boston, MA 02215" +209151,Wired Headphones,1,11.99,06/26/19 11:03,"9 12th St, Atlanta, GA 30301" +209152,34in Ultrawide Monitor,1,379.99,06/03/19 16:07,"614 8th St, New York City, NY 10001" +209153,USB-C Charging Cable,1,11.95,06/15/19 16:47,"724 South St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +209154,iPhone,1,700,06/20/19 10:18,"613 Lincoln St, Boston, MA 02215" +209155,AA Batteries (4-pack),1,3.84,06/13/19 05:58,"80 Hickory St, New York City, NY 10001" +209156,Apple Airpods Headphones,1,150,06/23/19 23:26,"717 South St, Boston, MA 02215" +209157,AAA Batteries (4-pack),2,2.99,06/14/19 11:33,"798 7th St, Boston, MA 02215" +209158,AAA Batteries (4-pack),1,2.99,06/17/19 21:46,"731 1st St, San Francisco, CA 94016" +209159,Macbook Pro Laptop,1,1700,06/27/19 23:48,"91 2nd St, Portland, OR 97035" +209160,Apple Airpods Headphones,1,150,06/29/19 12:13,"814 Highland St, Atlanta, GA 30301" +209161,Wired Headphones,1,11.99,06/15/19 13:36,"318 Forest St, Los Angeles, CA 90001" +209162,Lightning Charging Cable,1,14.95,06/24/19 13:17,"628 14th St, Atlanta, GA 30301" +209163,AA Batteries (4-pack),1,3.84,06/04/19 16:44,"114 River St, Seattle, WA 98101" +209164,Wired Headphones,1,11.99,06/07/19 16:28,"900 Jefferson St, Austin, TX 73301" +209165,USB-C Charging Cable,1,11.95,06/13/19 17:09,"526 River St, Seattle, WA 98101" +209166,34in Ultrawide Monitor,1,379.99,06/09/19 09:35,"398 Main St, Boston, MA 02215" +209167,Bose SoundSport Headphones,1,99.99,06/30/19 13:49,"904 Lakeview St, Dallas, TX 75001" +209168,AAA Batteries (4-pack),1,2.99,06/07/19 19:36,"117 Ridge St, Austin, TX 73301" +209169,Apple Airpods Headphones,1,150,06/20/19 14:27,"732 Lincoln St, San Francisco, CA 94016" +209170,Lightning Charging Cable,1,14.95,06/03/19 20:36,"924 Highland St, San Francisco, CA 94016" +209171,Lightning Charging Cable,1,14.95,06/08/19 00:02,"247 4th St, San Francisco, CA 94016" +209172,Lightning Charging Cable,1,14.95,06/08/19 18:56,"437 Lincoln St, Dallas, TX 75001" +209173,USB-C Charging Cable,1,11.95,06/23/19 21:50,"464 Chestnut St, San Francisco, CA 94016" +209174,ThinkPad Laptop,1,999.99,06/22/19 15:39,"44 South St, Boston, MA 02215" +209175,20in Monitor,1,109.99,06/18/19 19:18,"898 6th St, Los Angeles, CA 90001" +209176,Lightning Charging Cable,1,14.95,06/04/19 09:26,"571 River St, San Francisco, CA 94016" +209177,Bose SoundSport Headphones,1,99.99,06/10/19 14:58,"694 8th St, New York City, NY 10001" +209178,AAA Batteries (4-pack),1,2.99,06/21/19 21:20,"411 Washington St, San Francisco, CA 94016" +209179,Apple Airpods Headphones,1,150,06/22/19 11:14,"387 13th St, San Francisco, CA 94016" +209180,AAA Batteries (4-pack),2,2.99,06/28/19 21:21,"773 Chestnut St, San Francisco, CA 94016" +209181,Flatscreen TV,1,300,06/16/19 20:39,"599 Dogwood St, Boston, MA 02215" +209182,27in 4K Gaming Monitor,1,389.99,06/08/19 14:10,"304 Dogwood St, Los Angeles, CA 90001" +209183,Apple Airpods Headphones,1,150,06/08/19 18:34,"190 Lake St, San Francisco, CA 94016" +209184,USB-C Charging Cable,1,11.95,06/27/19 17:13,"377 Jackson St, New York City, NY 10001" +209185,Apple Airpods Headphones,1,150,06/28/19 17:17,"231 Walnut St, Portland, ME 04101" +209186,AAA Batteries (4-pack),1,2.99,06/08/19 12:19,"869 Wilson St, Boston, MA 02215" +209187,Apple Airpods Headphones,1,150,06/20/19 10:31,"955 Washington St, Portland, OR 97035" +209188,AA Batteries (4-pack),1,3.84,06/10/19 00:10,"852 11th St, New York City, NY 10001" +209189,AAA Batteries (4-pack),1,2.99,06/24/19 19:37,"565 Highland St, New York City, NY 10001" +209190,27in FHD Monitor,1,149.99,06/23/19 09:40,"994 Lincoln St, San Francisco, CA 94016" +209191,Apple Airpods Headphones,1,150,06/25/19 13:03,"754 Hickory St, Boston, MA 02215" +209192,Bose SoundSport Headphones,1,99.99,06/20/19 03:15,"507 Johnson St, Los Angeles, CA 90001" +209193,Bose SoundSport Headphones,1,99.99,06/15/19 22:56,"786 North St, Los Angeles, CA 90001" +209194,Macbook Pro Laptop,1,1700,06/19/19 12:30,"567 13th St, Boston, MA 02215" +209195,ThinkPad Laptop,1,999.99,06/13/19 19:32,"510 9th St, New York City, NY 10001" +209196,Wired Headphones,1,11.99,06/27/19 22:12,"176 Walnut St, Dallas, TX 75001" +209197,34in Ultrawide Monitor,1,379.99,06/14/19 15:23,"233 Jackson St, Atlanta, GA 30301" +209198,Apple Airpods Headphones,1,150,06/08/19 18:15,"851 Hill St, New York City, NY 10001" +209199,USB-C Charging Cable,1,11.95,06/04/19 11:24,"686 Adams St, San Francisco, CA 94016" +209200,Bose SoundSport Headphones,1,99.99,06/19/19 19:49,"665 West St, Portland, OR 97035" +209201,Apple Airpods Headphones,1,150,06/19/19 10:03,"168 Lincoln St, New York City, NY 10001" +209202,20in Monitor,1,109.99,06/11/19 19:38,"166 13th St, Los Angeles, CA 90001" +209203,Lightning Charging Cable,1,14.95,06/09/19 09:11,"248 Church St, Atlanta, GA 30301" +209204,Lightning Charging Cable,1,14.95,06/11/19 17:55,"2 River St, Atlanta, GA 30301" +209205,Macbook Pro Laptop,1,1700,06/03/19 19:16,"807 Wilson St, Dallas, TX 75001" +209206,Apple Airpods Headphones,1,150,06/29/19 08:42,"645 Lakeview St, Seattle, WA 98101" +209207,Wired Headphones,1,11.99,06/23/19 13:14,"817 Center St, Dallas, TX 75001" +209208,AAA Batteries (4-pack),1,2.99,06/21/19 12:02,"855 River St, San Francisco, CA 94016" +209208,Google Phone,1,600,06/21/19 12:02,"855 River St, San Francisco, CA 94016" +209209,Bose SoundSport Headphones,1,99.99,06/06/19 20:38,"531 Johnson St, Boston, MA 02215" +209210,Google Phone,1,600,06/18/19 11:13,"485 Ridge St, Seattle, WA 98101" +209211,USB-C Charging Cable,1,11.95,06/24/19 09:30,"472 12th St, Seattle, WA 98101" +209212,Lightning Charging Cable,1,14.95,06/23/19 02:26,"164 Main St, Los Angeles, CA 90001" +209213,AAA Batteries (4-pack),1,2.99,06/03/19 21:00,"274 Sunset St, New York City, NY 10001" +209214,Apple Airpods Headphones,1,150,06/19/19 16:28,"108 13th St, Seattle, WA 98101" +209215,Wired Headphones,2,11.99,06/07/19 20:12,"641 5th St, Dallas, TX 75001" +209216,USB-C Charging Cable,1,11.95,06/16/19 10:50,"223 4th St, Portland, OR 97035" +209217,USB-C Charging Cable,1,11.95,06/21/19 10:29,"844 Hill St, Atlanta, GA 30301" +209218,Lightning Charging Cable,1,14.95,06/13/19 20:51,"276 Forest St, San Francisco, CA 94016" +209219,iPhone,1,700,06/26/19 19:57,"92 Jackson St, Los Angeles, CA 90001" +209220,Google Phone,1,600,06/25/19 19:58,"476 Park St, Los Angeles, CA 90001" +209221,AA Batteries (4-pack),1,3.84,06/09/19 11:56,"256 Pine St, Austin, TX 73301" +209222,USB-C Charging Cable,1,11.95,06/07/19 11:36,"602 Dogwood St, Atlanta, GA 30301" +209223,USB-C Charging Cable,1,11.95,06/26/19 01:05,"279 Willow St, Seattle, WA 98101" +209224,iPhone,1,700,06/13/19 16:27,"102 9th St, San Francisco, CA 94016" +209225,34in Ultrawide Monitor,1,379.99,06/06/19 11:22,"658 Walnut St, New York City, NY 10001" +209226,Google Phone,1,600,06/19/19 07:33,"266 Dogwood St, Atlanta, GA 30301" +209226,USB-C Charging Cable,1,11.95,06/19/19 07:33,"266 Dogwood St, Atlanta, GA 30301" +209227,20in Monitor,1,109.99,06/02/19 16:28,"882 Jackson St, Los Angeles, CA 90001" +209228,AA Batteries (4-pack),1,3.84,06/21/19 05:58,"994 13th St, New York City, NY 10001" +209229,Lightning Charging Cable,1,14.95,06/14/19 17:13,"849 12th St, Los Angeles, CA 90001" +209230,Lightning Charging Cable,2,14.95,06/24/19 22:12,"402 Sunset St, Dallas, TX 75001" +209231,Bose SoundSport Headphones,1,99.99,06/26/19 08:38,"681 Ridge St, New York City, NY 10001" +209232,Lightning Charging Cable,2,14.95,06/19/19 13:04,"139 1st St, Seattle, WA 98101" +209233,USB-C Charging Cable,1,11.95,06/01/19 20:18,"533 Johnson St, San Francisco, CA 94016" +209234,Lightning Charging Cable,1,14.95,06/07/19 11:31,"218 Elm St, San Francisco, CA 94016" +209235,AAA Batteries (4-pack),1,2.99,06/17/19 14:50,"255 Adams St, San Francisco, CA 94016" +209236,iPhone,1,700,06/13/19 19:43,"476 Jackson St, Austin, TX 73301" +209237,Apple Airpods Headphones,1,150,06/13/19 10:51,"101 Dogwood St, San Francisco, CA 94016" +209238,Lightning Charging Cable,1,14.95,06/14/19 17:28,"632 Center St, Los Angeles, CA 90001" +209239,AAA Batteries (4-pack),1,2.99,06/06/19 20:36,"68 Maple St, Austin, TX 73301" +209240,AAA Batteries (4-pack),1,2.99,06/22/19 21:34,"876 11th St, Boston, MA 02215" +209241,Wired Headphones,1,11.99,06/23/19 20:12,"769 9th St, San Francisco, CA 94016" +209242,iPhone,1,700,06/30/19 19:58,"189 Ridge St, New York City, NY 10001" +209243,Lightning Charging Cable,1,14.95,06/09/19 19:47,"496 Spruce St, Dallas, TX 75001" +209244,Apple Airpods Headphones,1,150,06/20/19 19:06,"929 9th St, Dallas, TX 75001" +209245,Wired Headphones,2,11.99,06/04/19 09:38,"278 Lincoln St, Boston, MA 02215" +209246,AAA Batteries (4-pack),1,2.99,06/28/19 03:30,"957 Highland St, Atlanta, GA 30301" +209247,AA Batteries (4-pack),1,3.84,06/26/19 21:07,"59 Johnson St, San Francisco, CA 94016" +209248,20in Monitor,1,109.99,06/28/19 21:47,"959 12th St, Los Angeles, CA 90001" +209249,Bose SoundSport Headphones,1,99.99,06/01/19 18:15,"993 13th St, Boston, MA 02215" +209250,Bose SoundSport Headphones,1,99.99,06/04/19 10:55,"577 Main St, San Francisco, CA 94016" +209251,Wired Headphones,1,11.99,06/28/19 22:39,"215 Adams St, Atlanta, GA 30301" +209252,Macbook Pro Laptop,1,1700,06/14/19 23:31,"341 Washington St, New York City, NY 10001" +209253,Wired Headphones,1,11.99,06/14/19 12:29,"815 Forest St, Dallas, TX 75001" +209254,AA Batteries (4-pack),2,3.84,06/26/19 21:15,"879 Washington St, Austin, TX 73301" +209255,AA Batteries (4-pack),2,3.84,06/19/19 10:11,"873 River St, Los Angeles, CA 90001" +209256,USB-C Charging Cable,2,11.95,06/01/19 14:59,"976 Dogwood St, Los Angeles, CA 90001" +209257,AAA Batteries (4-pack),2,2.99,06/22/19 16:24,"735 13th St, Boston, MA 02215" +209258,Vareebadd Phone,1,400,06/13/19 18:20,"810 Wilson St, Dallas, TX 75001" +209258,Wired Headphones,1,11.99,06/13/19 18:20,"810 Wilson St, Dallas, TX 75001" +209259,20in Monitor,1,109.99,06/10/19 13:16,"440 Pine St, San Francisco, CA 94016" +209260,Wired Headphones,1,11.99,06/29/19 18:12,"101 14th St, San Francisco, CA 94016" +209261,USB-C Charging Cable,1,11.95,06/06/19 19:35,"103 Park St, Seattle, WA 98101" +209262,Lightning Charging Cable,1,14.95,06/15/19 12:04,"393 West St, Boston, MA 02215" +209263,USB-C Charging Cable,1,11.95,06/05/19 18:14,"131 Park St, Los Angeles, CA 90001" +209264,AAA Batteries (4-pack),1,2.99,06/15/19 11:23,"156 Pine St, New York City, NY 10001" +209265,iPhone,1,700,06/29/19 21:22,"484 Forest St, San Francisco, CA 94016" +209266,Apple Airpods Headphones,1,150,06/21/19 08:57,"860 Hickory St, New York City, NY 10001" +209267,iPhone,1,700,06/04/19 13:36,"436 12th St, Boston, MA 02215" +209267,Wired Headphones,1,11.99,06/04/19 13:36,"436 12th St, Boston, MA 02215" +209268,AAA Batteries (4-pack),1,2.99,06/22/19 13:55,"160 Lakeview St, Boston, MA 02215" +209269,Lightning Charging Cable,1,14.95,06/10/19 08:18,"590 Meadow St, Boston, MA 02215" +209270,Wired Headphones,1,11.99,06/06/19 18:04,"706 Wilson St, Austin, TX 73301" +209271,AA Batteries (4-pack),2,3.84,06/16/19 09:16,"651 7th St, Los Angeles, CA 90001" +209272,iPhone,1,700,06/08/19 21:11,"574 Madison St, New York City, NY 10001" +209273,Lightning Charging Cable,1,14.95,06/06/19 13:25,"223 6th St, New York City, NY 10001" +209274,ThinkPad Laptop,1,999.99,06/18/19 14:19,"68 Johnson St, San Francisco, CA 94016" +209275,Lightning Charging Cable,1,14.95,06/24/19 21:19,"89 13th St, San Francisco, CA 94016" +209276,AA Batteries (4-pack),1,3.84,06/08/19 19:38,"335 10th St, New York City, NY 10001" +209277,AAA Batteries (4-pack),2,2.99,06/11/19 17:27,"676 South St, San Francisco, CA 94016" +209278,Lightning Charging Cable,1,14.95,06/03/19 18:06,"163 Lincoln St, New York City, NY 10001" +209279,Bose SoundSport Headphones,1,99.99,06/01/19 15:01,"861 1st St, Boston, MA 02215" +209280,AAA Batteries (4-pack),3,2.99,06/14/19 15:56,"400 Lakeview St, Seattle, WA 98101" +209281,Lightning Charging Cable,1,14.95,06/24/19 12:09,"394 Lincoln St, Boston, MA 02215" +209282,USB-C Charging Cable,1,11.95,06/24/19 00:39,"625 Elm St, Boston, MA 02215" +209283,Lightning Charging Cable,1,14.95,06/26/19 10:41,"107 14th St, Boston, MA 02215" +209284,Bose SoundSport Headphones,1,99.99,06/16/19 14:02,"811 9th St, Los Angeles, CA 90001" +209285,LG Washing Machine,1,600.0,06/05/19 19:00,"953 Center St, New York City, NY 10001" +209286,Lightning Charging Cable,1,14.95,06/21/19 18:54,"908 13th St, San Francisco, CA 94016" +209287,Bose SoundSport Headphones,1,99.99,06/28/19 12:51,"968 14th St, New York City, NY 10001" +209288,Vareebadd Phone,1,400,06/29/19 21:52,"125 Sunset St, Boston, MA 02215" +209289,Google Phone,1,600,06/13/19 17:19,"126 River St, Portland, ME 04101" +209290,USB-C Charging Cable,1,11.95,06/08/19 19:45,"368 Park St, San Francisco, CA 94016" +209291,AA Batteries (4-pack),2,3.84,06/06/19 14:09,"30 Jackson St, New York City, NY 10001" +209292,27in 4K Gaming Monitor,1,389.99,06/27/19 21:31,"307 1st St, Boston, MA 02215" +209293,iPhone,1,700,06/22/19 16:33,"204 Center St, San Francisco, CA 94016" +209294,AA Batteries (4-pack),1,3.84,06/07/19 17:36,"208 Madison St, Los Angeles, CA 90001" +209295,Wired Headphones,1,11.99,06/07/19 09:42,"601 14th St, San Francisco, CA 94016" +209296,Wired Headphones,1,11.99,06/16/19 14:32,"405 Ridge St, San Francisco, CA 94016" +209297,AAA Batteries (4-pack),1,2.99,06/21/19 07:35,"18 Madison St, Los Angeles, CA 90001" +209298,USB-C Charging Cable,1,11.95,06/13/19 15:01,"977 Center St, Dallas, TX 75001" +209299,Apple Airpods Headphones,1,150,06/06/19 09:19,"534 Hill St, Boston, MA 02215" +209300,iPhone,1,700,06/21/19 12:05,"992 13th St, Seattle, WA 98101" +209300,Lightning Charging Cable,1,14.95,06/21/19 12:05,"992 13th St, Seattle, WA 98101" +209301,Bose SoundSport Headphones,1,99.99,06/03/19 09:28,"199 11th St, Austin, TX 73301" +209302,Lightning Charging Cable,1,14.95,06/11/19 15:26,"973 Main St, San Francisco, CA 94016" +209303,Apple Airpods Headphones,1,150,06/25/19 14:16,"948 Cherry St, Dallas, TX 75001" +209304,AAA Batteries (4-pack),1,2.99,06/06/19 21:48,"725 Meadow St, Los Angeles, CA 90001" +209305,Lightning Charging Cable,1,14.95,06/02/19 13:15,"16 13th St, New York City, NY 10001" +209306,27in FHD Monitor,1,149.99,06/10/19 12:19,"621 Wilson St, Dallas, TX 75001" +209307,Lightning Charging Cable,1,14.95,06/18/19 12:25,"115 Hickory St, San Francisco, CA 94016" +209308,USB-C Charging Cable,1,11.95,06/09/19 11:23,"927 1st St, Los Angeles, CA 90001" +209309,USB-C Charging Cable,1,11.95,06/07/19 19:33,"470 Maple St, San Francisco, CA 94016" +209310,Bose SoundSport Headphones,1,99.99,06/22/19 11:12,"697 Elm St, San Francisco, CA 94016" +209311,20in Monitor,1,109.99,06/04/19 23:18,"750 Madison St, Atlanta, GA 30301" +209312,AA Batteries (4-pack),1,3.84,06/22/19 02:05,"436 Church St, San Francisco, CA 94016" +209313,34in Ultrawide Monitor,1,379.99,06/18/19 10:39,"17 Walnut St, Dallas, TX 75001" +209314,20in Monitor,1,109.99,06/17/19 13:04,"119 5th St, Boston, MA 02215" +209315,Wired Headphones,1,11.99,06/11/19 22:21,"635 Highland St, San Francisco, CA 94016" +209316,AAA Batteries (4-pack),1,2.99,06/27/19 18:26,"516 1st St, Atlanta, GA 30301" +209317,Lightning Charging Cable,1,14.95,06/14/19 14:44,"263 Jackson St, San Francisco, CA 94016" +209318,27in 4K Gaming Monitor,1,389.99,06/07/19 21:38,"511 8th St, Austin, TX 73301" +209319,AA Batteries (4-pack),1,3.84,06/04/19 15:00,"393 Lakeview St, San Francisco, CA 94016" +209320,AA Batteries (4-pack),1,3.84,06/08/19 18:39,"757 Highland St, Los Angeles, CA 90001" +209321,Bose SoundSport Headphones,1,99.99,06/30/19 11:32,"782 10th St, San Francisco, CA 94016" +209322,20in Monitor,1,109.99,06/10/19 12:31,"181 Elm St, Boston, MA 02215" +209323,AAA Batteries (4-pack),1,2.99,06/01/19 12:48,"773 Elm St, San Francisco, CA 94016" +209324,AA Batteries (4-pack),1,3.84,06/08/19 16:33,"11 Jackson St, New York City, NY 10001" +209325,Wired Headphones,1,11.99,06/20/19 18:29,"10 2nd St, San Francisco, CA 94016" +209326,AAA Batteries (4-pack),1,2.99,06/02/19 19:55,"753 Jackson St, Boston, MA 02215" +209327,Wired Headphones,1,11.99,06/06/19 13:33,"381 Lakeview St, Atlanta, GA 30301" +209328,LG Dryer,1,600.0,06/23/19 21:33,"508 Spruce St, Dallas, TX 75001" +209329,Lightning Charging Cable,1,14.95,06/10/19 14:54,"880 Elm St, New York City, NY 10001" +209330,Lightning Charging Cable,1,14.95,06/11/19 15:51,"897 2nd St, San Francisco, CA 94016" +209331,AAA Batteries (4-pack),4,2.99,06/03/19 22:10,"659 7th St, San Francisco, CA 94016" +209332,Lightning Charging Cable,1,14.95,06/11/19 18:03,"461 Madison St, Los Angeles, CA 90001" +209333,Lightning Charging Cable,1,14.95,06/03/19 20:28,"111 Adams St, Los Angeles, CA 90001" +209334,20in Monitor,1,109.99,06/16/19 18:43,"194 1st St, Los Angeles, CA 90001" +209335,27in FHD Monitor,1,149.99,06/08/19 17:26,"968 Highland St, San Francisco, CA 94016" +209336,AAA Batteries (4-pack),1,2.99,06/16/19 10:35,"993 North St, Atlanta, GA 30301" +209337,AA Batteries (4-pack),1,3.84,06/01/19 11:23,"533 Ridge St, Atlanta, GA 30301" +209338,AAA Batteries (4-pack),2,2.99,06/30/19 21:26,"661 14th St, Seattle, WA 98101" +209339,Vareebadd Phone,1,400,06/16/19 22:01,"110 13th St, Atlanta, GA 30301" +209340,USB-C Charging Cable,1,11.95,06/07/19 16:15,"487 Park St, Dallas, TX 75001" +209341,AA Batteries (4-pack),1,3.84,06/22/19 18:05,"98 6th St, Boston, MA 02215" +209342,Wired Headphones,1,11.99,06/13/19 17:25,"79 Pine St, Los Angeles, CA 90001" +209343,Lightning Charging Cable,1,14.95,06/13/19 10:15,"317 Adams St, Austin, TX 73301" +209344,USB-C Charging Cable,1,11.95,06/04/19 08:50,"22 River St, Los Angeles, CA 90001" +209345,AA Batteries (4-pack),1,3.84,06/11/19 16:22,"130 West St, San Francisco, CA 94016" +209346,Google Phone,1,600,06/18/19 13:49,"720 West St, Dallas, TX 75001" +209347,Flatscreen TV,1,300,06/20/19 18:46,"338 Adams St, Los Angeles, CA 90001" +209348,27in 4K Gaming Monitor,1,389.99,06/16/19 08:19,"718 Dogwood St, Los Angeles, CA 90001" +209349,Vareebadd Phone,1,400,06/13/19 09:03,"583 Dogwood St, Boston, MA 02215" +209350,AAA Batteries (4-pack),1,2.99,06/24/19 19:53,"552 Forest St, Dallas, TX 75001" +209351,34in Ultrawide Monitor,1,379.99,06/26/19 17:43,"30 4th St, San Francisco, CA 94016" +209352,Lightning Charging Cable,1,14.95,06/20/19 13:40,"372 4th St, San Francisco, CA 94016" +209352,Lightning Charging Cable,1,14.95,06/20/19 13:40,"372 4th St, San Francisco, CA 94016" +209353,USB-C Charging Cable,1,11.95,06/25/19 14:15,"956 North St, Atlanta, GA 30301" +209354,AA Batteries (4-pack),2,3.84,06/13/19 18:18,"575 Dogwood St, Portland, OR 97035" +209355,AA Batteries (4-pack),1,3.84,06/29/19 00:42,"302 Chestnut St, Portland, ME 04101" +209356,Apple Airpods Headphones,1,150,06/09/19 20:24,"72 Church St, New York City, NY 10001" +209357,Macbook Pro Laptop,1,1700,06/30/19 23:52,"913 West St, San Francisco, CA 94016" +209358,AA Batteries (4-pack),1,3.84,06/28/19 19:24,"278 Elm St, Austin, TX 73301" +209359,USB-C Charging Cable,1,11.95,06/08/19 11:41,"843 Lakeview St, San Francisco, CA 94016" +209360,34in Ultrawide Monitor,1,379.99,06/24/19 15:21,"963 Sunset St, Dallas, TX 75001" +209361,iPhone,1,700,06/14/19 13:21,"997 13th St, New York City, NY 10001" +209362,Wired Headphones,1,11.99,06/27/19 10:42,"341 Chestnut St, Seattle, WA 98101" +209363,USB-C Charging Cable,1,11.95,06/15/19 20:29,"192 Hickory St, Seattle, WA 98101" +209364,Google Phone,1,600,06/12/19 20:23,"410 14th St, Austin, TX 73301" +209365,AA Batteries (4-pack),1,3.84,06/13/19 05:57,"111 North St, Boston, MA 02215" +209366,Wired Headphones,1,11.99,06/14/19 12:15,"639 Chestnut St, Seattle, WA 98101" +209367,27in 4K Gaming Monitor,1,389.99,06/21/19 14:25,"892 Center St, New York City, NY 10001" +209368,Macbook Pro Laptop,1,1700,06/02/19 18:10,"627 12th St, Seattle, WA 98101" +209369,Lightning Charging Cable,1,14.95,06/22/19 14:26,"978 Chestnut St, Austin, TX 73301" +209370,AAA Batteries (4-pack),4,2.99,06/19/19 17:04,"612 1st St, Atlanta, GA 30301" +209371,Wired Headphones,1,11.99,06/25/19 10:30,"652 Chestnut St, New York City, NY 10001" +209372,Wired Headphones,1,11.99,06/27/19 12:31,"863 12th St, New York City, NY 10001" +209373,Bose SoundSport Headphones,1,99.99,06/24/19 15:50,"70 Highland St, San Francisco, CA 94016" +209374,AAA Batteries (4-pack),1,2.99,06/07/19 22:42,"527 Park St, Portland, OR 97035" +209375,Bose SoundSport Headphones,1,99.99,06/15/19 06:05,"993 Pine St, New York City, NY 10001" +209376,Wired Headphones,1,11.99,06/06/19 12:41,"545 North St, New York City, NY 10001" +209377,USB-C Charging Cable,1,11.95,06/11/19 18:45,"604 Dogwood St, San Francisco, CA 94016" +209378,34in Ultrawide Monitor,1,379.99,06/08/19 17:41,"877 13th St, Dallas, TX 75001" +209379,Macbook Pro Laptop,1,1700,06/26/19 12:37,"524 10th St, Atlanta, GA 30301" +209380,AAA Batteries (4-pack),1,2.99,06/06/19 11:53,"369 Madison St, Boston, MA 02215" +209381,Apple Airpods Headphones,1,150,06/26/19 21:08,"444 Hickory St, Los Angeles, CA 90001" +209382,Apple Airpods Headphones,1,150,06/16/19 16:36,"743 Chestnut St, Portland, OR 97035" +209383,AA Batteries (4-pack),1,3.84,06/19/19 15:43,"381 1st St, Los Angeles, CA 90001" +209384,AA Batteries (4-pack),1,3.84,06/22/19 23:02,"233 4th St, Austin, TX 73301" +209385,Wired Headphones,1,11.99,06/07/19 17:52,"368 10th St, Atlanta, GA 30301" +209386,27in FHD Monitor,1,149.99,06/13/19 19:57,"987 Johnson St, New York City, NY 10001" +209387,ThinkPad Laptop,1,999.99,06/16/19 12:43,"944 1st St, Dallas, TX 75001" +209388,Lightning Charging Cable,1,14.95,06/22/19 15:18,"217 Spruce St, Austin, TX 73301" +209389,ThinkPad Laptop,1,999.99,06/30/19 09:11,"580 5th St, San Francisco, CA 94016" +209390,Lightning Charging Cable,2,14.95,06/21/19 22:52,"475 Spruce St, San Francisco, CA 94016" +209391,Flatscreen TV,1,300,06/20/19 21:41,"217 Park St, Atlanta, GA 30301" +209392,Vareebadd Phone,1,400,06/07/19 13:24,"455 Willow St, San Francisco, CA 94016" +209392,USB-C Charging Cable,1,11.95,06/07/19 13:24,"455 Willow St, San Francisco, CA 94016" +209393,AA Batteries (4-pack),1,3.84,06/10/19 10:47,"982 Jackson St, Dallas, TX 75001" +209394,USB-C Charging Cable,1,11.95,06/16/19 19:25,"452 South St, San Francisco, CA 94016" +209395,Lightning Charging Cable,1,14.95,06/09/19 12:29,"250 5th St, Dallas, TX 75001" +209396,Apple Airpods Headphones,1,150,06/21/19 14:35,"743 Dogwood St, Portland, OR 97035" +209397,iPhone,1,700,06/12/19 16:34,"107 Lincoln St, Austin, TX 73301" +209398,Apple Airpods Headphones,1,150,06/18/19 12:11,"765 Walnut St, Atlanta, GA 30301" +209399,Bose SoundSport Headphones,1,99.99,06/25/19 10:56,"120 Washington St, Boston, MA 02215" +209400,ThinkPad Laptop,1,999.99,06/20/19 18:17,"679 12th St, San Francisco, CA 94016" +209401,Bose SoundSport Headphones,1,99.99,06/27/19 16:33,"750 Sunset St, New York City, NY 10001" +209402,AAA Batteries (4-pack),3,2.99,06/30/19 11:56,"974 Pine St, San Francisco, CA 94016" +209403,Lightning Charging Cable,1,14.95,06/23/19 01:59,"15 Cherry St, Atlanta, GA 30301" +209404,27in 4K Gaming Monitor,1,389.99,06/12/19 11:19,"769 Forest St, Los Angeles, CA 90001" +209405,Apple Airpods Headphones,1,150,06/04/19 21:25,"196 Dogwood St, Austin, TX 73301" +209406,AAA Batteries (4-pack),2,2.99,06/25/19 01:05,"968 Hill St, Los Angeles, CA 90001" +209407,iPhone,1,700,06/16/19 12:24,"133 South St, Los Angeles, CA 90001" +209408,AA Batteries (4-pack),1,3.84,06/09/19 10:53,"20 Hill St, Portland, ME 04101" +209409,Wired Headphones,1,11.99,06/08/19 14:36,"204 Elm St, Dallas, TX 75001" +209410,AAA Batteries (4-pack),1,2.99,06/23/19 21:23,"22 2nd St, New York City, NY 10001" +209411,Google Phone,1,600,06/08/19 16:30,"855 Washington St, Atlanta, GA 30301" +209412,Flatscreen TV,2,300,06/19/19 22:05,"588 Church St, Los Angeles, CA 90001" +209413,AA Batteries (4-pack),1,3.84,06/12/19 20:33,"222 Lakeview St, San Francisco, CA 94016" +209414,AA Batteries (4-pack),1,3.84,06/18/19 11:53,"433 7th St, Boston, MA 02215" +209415,USB-C Charging Cable,1,11.95,06/12/19 18:13,"313 Lakeview St, Atlanta, GA 30301" +209416,AAA Batteries (4-pack),1,2.99,06/29/19 07:47,"289 River St, Portland, ME 04101" +209417,AA Batteries (4-pack),1,3.84,06/25/19 00:07,"676 Park St, San Francisco, CA 94016" +209418,USB-C Charging Cable,1,11.95,06/13/19 20:03,"608 11th St, Seattle, WA 98101" +209419,27in 4K Gaming Monitor,1,389.99,06/25/19 16:11,"502 South St, San Francisco, CA 94016" +209420,AA Batteries (4-pack),1,3.84,06/21/19 19:34,"931 Church St, Los Angeles, CA 90001" +209421,Apple Airpods Headphones,1,150,06/20/19 16:57,"654 11th St, Portland, ME 04101" +209422,AA Batteries (4-pack),1,3.84,06/04/19 13:23,"364 Jackson St, San Francisco, CA 94016" +209423,AA Batteries (4-pack),1,3.84,06/03/19 23:43,"746 Hickory St, Dallas, TX 75001" +209424,27in 4K Gaming Monitor,1,389.99,06/15/19 11:27,"992 Meadow St, San Francisco, CA 94016" +209425,Lightning Charging Cable,2,14.95,06/23/19 20:33,"603 Pine St, New York City, NY 10001" +209426,Bose SoundSport Headphones,1,99.99,06/12/19 12:04,"329 Willow St, Dallas, TX 75001" +209427,USB-C Charging Cable,1,11.95,06/30/19 21:59,"739 Hill St, Austin, TX 73301" +209428,Bose SoundSport Headphones,1,99.99,06/15/19 21:47,"972 Adams St, Dallas, TX 75001" +209429,Lightning Charging Cable,1,14.95,06/29/19 23:35,"912 Lake St, Dallas, TX 75001" +209430,USB-C Charging Cable,1,11.95,06/05/19 08:19,"355 Cedar St, Portland, OR 97035" +209431,AA Batteries (4-pack),1,3.84,06/07/19 20:05,"5 Dogwood St, Los Angeles, CA 90001" +209432,Flatscreen TV,1,300,06/17/19 19:59,"689 9th St, Los Angeles, CA 90001" +209433,USB-C Charging Cable,1,11.95,06/22/19 07:43,"134 Highland St, San Francisco, CA 94016" +209434,AA Batteries (4-pack),2,3.84,06/29/19 21:01,"330 13th St, Boston, MA 02215" +209434,27in FHD Monitor,1,149.99,06/29/19 21:01,"330 13th St, Boston, MA 02215" +209435,Vareebadd Phone,1,400,06/05/19 14:26,"741 South St, Dallas, TX 75001" +209436,Bose SoundSport Headphones,1,99.99,06/23/19 17:22,"831 Church St, Atlanta, GA 30301" +209437,27in 4K Gaming Monitor,1,389.99,06/07/19 08:25,"609 Jefferson St, Boston, MA 02215" +209438,Lightning Charging Cable,1,14.95,06/20/19 13:40,"315 Sunset St, Boston, MA 02215" +209439,Bose SoundSport Headphones,1,99.99,06/07/19 11:52,"578 1st St, San Francisco, CA 94016" +209440,USB-C Charging Cable,1,11.95,06/05/19 19:40,"302 Hickory St, Los Angeles, CA 90001" +209441,AA Batteries (4-pack),1,3.84,06/19/19 13:06,"381 West St, Austin, TX 73301" +209442,AAA Batteries (4-pack),1,2.99,06/02/19 02:09,"257 5th St, Atlanta, GA 30301" +209443,Bose SoundSport Headphones,1,99.99,06/30/19 23:26,"843 Main St, Dallas, TX 75001" +209444,Apple Airpods Headphones,1,150,06/25/19 09:52,"375 5th St, New York City, NY 10001" +209445,Wired Headphones,1,11.99,06/15/19 01:05,"523 Main St, Boston, MA 02215" +209446,USB-C Charging Cable,1,11.95,06/24/19 09:07,"468 8th St, Portland, OR 97035" +209447,AA Batteries (4-pack),1,3.84,06/15/19 22:19,"572 Lincoln St, San Francisco, CA 94016" +209448,AA Batteries (4-pack),1,3.84,06/02/19 13:45,"322 Hill St, Portland, OR 97035" +209449,AA Batteries (4-pack),1,3.84,06/14/19 13:00,"27 4th St, Los Angeles, CA 90001" +209450,27in 4K Gaming Monitor,1,389.99,06/19/19 16:45,"448 West St, Atlanta, GA 30301" +209451,Wired Headphones,1,11.99,06/23/19 13:50,"188 Wilson St, Dallas, TX 75001" +209452,Apple Airpods Headphones,1,150,06/19/19 12:34,"215 Willow St, San Francisco, CA 94016" +209453,Lightning Charging Cable,1,14.95,06/02/19 17:54,"293 Jackson St, Boston, MA 02215" +209454,27in FHD Monitor,1,149.99,06/09/19 18:33,"680 Spruce St, San Francisco, CA 94016" +209455,Macbook Pro Laptop,1,1700,06/15/19 07:40,"592 Spruce St, Seattle, WA 98101" +209456,27in 4K Gaming Monitor,1,389.99,06/11/19 08:36,"286 Lincoln St, San Francisco, CA 94016" +209457,27in 4K Gaming Monitor,1,389.99,06/22/19 11:58,"901 Lake St, Boston, MA 02215" +209458,AAA Batteries (4-pack),1,2.99,06/25/19 16:22,"855 Cherry St, Atlanta, GA 30301" +209459,AAA Batteries (4-pack),1,2.99,06/26/19 14:37,"374 11th St, Los Angeles, CA 90001" +209460,iPhone,1,700,06/29/19 19:54,"919 West St, San Francisco, CA 94016" +209461,AAA Batteries (4-pack),2,2.99,06/12/19 22:07,"268 Forest St, San Francisco, CA 94016" +209462,Bose SoundSport Headphones,1,99.99,06/11/19 20:12,"101 4th St, Los Angeles, CA 90001" +209463,Flatscreen TV,1,300,06/05/19 13:38,"40 Adams St, Los Angeles, CA 90001" +209464,iPhone,1,700,06/22/19 18:22,"194 14th St, Austin, TX 73301" +209465,AAA Batteries (4-pack),1,2.99,06/19/19 16:42,"773 7th St, San Francisco, CA 94016" +209466,AAA Batteries (4-pack),1,2.99,06/04/19 08:14,"713 Park St, Boston, MA 02215" +209467,USB-C Charging Cable,1,11.95,06/20/19 21:39,"411 Park St, San Francisco, CA 94016" +209468,Lightning Charging Cable,1,14.95,06/29/19 11:46,"163 River St, Austin, TX 73301" +209469,Bose SoundSport Headphones,1,99.99,06/26/19 20:42,"466 Walnut St, New York City, NY 10001" +209469,Lightning Charging Cable,1,14.95,06/26/19 20:42,"466 Walnut St, New York City, NY 10001" +209470,AA Batteries (4-pack),1,3.84,06/08/19 08:44,"622 Jackson St, Atlanta, GA 30301" +209471,Vareebadd Phone,1,400,06/24/19 17:59,"225 10th St, Dallas, TX 75001" +209472,27in 4K Gaming Monitor,1,389.99,06/12/19 16:02,"137 7th St, Los Angeles, CA 90001" +209473,AA Batteries (4-pack),1,3.84,06/04/19 00:58,"645 Forest St, Boston, MA 02215" +209474,Bose SoundSport Headphones,1,99.99,06/23/19 14:52,"120 Pine St, Los Angeles, CA 90001" +209475,34in Ultrawide Monitor,1,379.99,06/04/19 18:17,"849 Lakeview St, San Francisco, CA 94016" +209476,AA Batteries (4-pack),1,3.84,06/22/19 19:59,"363 Lakeview St, Los Angeles, CA 90001" +209477,AAA Batteries (4-pack),1,2.99,06/16/19 16:37,"353 Maple St, Austin, TX 73301" +209478,Apple Airpods Headphones,1,150,06/23/19 11:29,"367 Elm St, Atlanta, GA 30301" +209479,USB-C Charging Cable,1,11.95,06/30/19 22:41,"2 Ridge St, Boston, MA 02215" +209480,Lightning Charging Cable,1,14.95,06/01/19 20:22,"367 Lake St, Los Angeles, CA 90001" +209481,Apple Airpods Headphones,1,150,06/11/19 09:45,"267 6th St, San Francisco, CA 94016" +209482,AAA Batteries (4-pack),2,2.99,06/26/19 20:33,"384 Willow St, Los Angeles, CA 90001" +209483,Lightning Charging Cable,1,14.95,06/23/19 20:55,"26 11th St, Los Angeles, CA 90001" +209484,27in FHD Monitor,1,149.99,06/08/19 20:54,"849 Walnut St, San Francisco, CA 94016" +209485,Lightning Charging Cable,1,14.95,06/08/19 15:29,"622 River St, San Francisco, CA 94016" +209486,USB-C Charging Cable,1,11.95,06/26/19 11:01,"695 Willow St, Portland, OR 97035" +209487,Apple Airpods Headphones,1,150,06/29/19 14:44,"462 Lakeview St, Atlanta, GA 30301" +209488,LG Dryer,1,600.0,06/11/19 20:32,"394 Walnut St, San Francisco, CA 94016" +209489,Macbook Pro Laptop,1,1700,06/16/19 09:10,"658 Wilson St, New York City, NY 10001" +209490,Lightning Charging Cable,1,14.95,06/02/19 12:37,"959 Main St, Boston, MA 02215" +209491,USB-C Charging Cable,1,11.95,06/22/19 10:58,"420 Sunset St, New York City, NY 10001" +209492,USB-C Charging Cable,1,11.95,06/24/19 15:20,"308 4th St, Boston, MA 02215" +209493,Bose SoundSport Headphones,1,99.99,06/20/19 13:56,"636 Adams St, Atlanta, GA 30301" +209494,Lightning Charging Cable,1,14.95,06/15/19 11:48,"450 South St, San Francisco, CA 94016" +209495,Bose SoundSport Headphones,1,99.99,06/24/19 10:30,"191 7th St, Dallas, TX 75001" +209496,27in 4K Gaming Monitor,1,389.99,06/23/19 11:40,"440 Lakeview St, Seattle, WA 98101" +209497,Bose SoundSport Headphones,1,99.99,06/09/19 18:23,"887 Church St, Boston, MA 02215" +209498,Lightning Charging Cable,1,14.95,06/14/19 19:14,"107 Ridge St, Austin, TX 73301" +209499,Bose SoundSport Headphones,1,99.99,06/30/19 17:54,"284 Lakeview St, Dallas, TX 75001" +209500,AA Batteries (4-pack),1,3.84,06/24/19 10:43,"905 Hickory St, New York City, NY 10001" +209501,Apple Airpods Headphones,1,150,06/22/19 10:59,"349 Church St, San Francisco, CA 94016" +209502,iPhone,1,700,06/20/19 11:21,"440 Chestnut St, Los Angeles, CA 90001" +209502,Lightning Charging Cable,1,14.95,06/20/19 11:21,"440 Chestnut St, Los Angeles, CA 90001" +209503,Lightning Charging Cable,1,14.95,06/28/19 12:01,"554 Church St, Boston, MA 02215" +209504,AA Batteries (4-pack),1,3.84,06/22/19 20:15,"176 Willow St, Atlanta, GA 30301" +209505,USB-C Charging Cable,2,11.95,06/24/19 13:06,"395 River St, Atlanta, GA 30301" +209506,Lightning Charging Cable,1,14.95,06/08/19 10:04,"802 Park St, Los Angeles, CA 90001" +209507,Bose SoundSport Headphones,1,99.99,06/12/19 18:36,"554 8th St, New York City, NY 10001" +209508,Bose SoundSport Headphones,1,99.99,06/03/19 08:49,"440 Forest St, Dallas, TX 75001" +209509,Wired Headphones,2,11.99,06/19/19 20:18,"58 Johnson St, Seattle, WA 98101" +209510,AA Batteries (4-pack),2,3.84,06/10/19 16:39,"561 Sunset St, San Francisco, CA 94016" +209511,20in Monitor,1,109.99,06/20/19 14:22,"416 1st St, New York City, NY 10001" +209512,Lightning Charging Cable,1,14.95,06/28/19 12:15,"623 Lincoln St, New York City, NY 10001" +209513,AAA Batteries (4-pack),1,2.99,06/23/19 03:28,"312 Madison St, Los Angeles, CA 90001" +209514,Apple Airpods Headphones,1,150,06/28/19 10:12,"602 4th St, New York City, NY 10001" +209515,Apple Airpods Headphones,1,150,06/21/19 18:14,"672 Meadow St, Boston, MA 02215" +209516,Lightning Charging Cable,1,14.95,06/08/19 03:24,"952 Johnson St, New York City, NY 10001" +209517,AAA Batteries (4-pack),2,2.99,06/01/19 23:36,"568 Main St, Atlanta, GA 30301" +209518,USB-C Charging Cable,1,11.95,06/28/19 00:34,"232 Lincoln St, Los Angeles, CA 90001" +209519,Wired Headphones,1,11.99,06/30/19 19:26,"501 Ridge St, Portland, OR 97035" +209520,Bose SoundSport Headphones,1,99.99,06/06/19 10:49,"64 Park St, Boston, MA 02215" +209521,Lightning Charging Cable,2,14.95,06/23/19 22:43,"65 Center St, Dallas, TX 75001" +209522,Wired Headphones,1,11.99,06/15/19 12:13,"309 Meadow St, Boston, MA 02215" +209523,34in Ultrawide Monitor,1,379.99,06/28/19 18:57,"198 Hickory St, Boston, MA 02215" +209524,Lightning Charging Cable,1,14.95,06/20/19 10:09,"99 Main St, San Francisco, CA 94016" +209525,Google Phone,1,600,06/30/19 17:03,"733 Church St, Los Angeles, CA 90001" +209525,USB-C Charging Cable,1,11.95,06/30/19 17:03,"733 Church St, Los Angeles, CA 90001" +209526,USB-C Charging Cable,1,11.95,06/20/19 11:09,"157 Spruce St, Seattle, WA 98101" +209527,Google Phone,1,600,06/09/19 12:59,"38 Jackson St, Portland, OR 97035" +209528,USB-C Charging Cable,1,11.95,06/10/19 12:01,"716 Spruce St, San Francisco, CA 94016" +209529,AA Batteries (4-pack),2,3.84,06/06/19 00:28,"67 5th St, Los Angeles, CA 90001" +209530,AA Batteries (4-pack),1,3.84,06/17/19 17:21,"112 14th St, Los Angeles, CA 90001" +209531,AA Batteries (4-pack),1,3.84,06/24/19 23:57,"629 1st St, Seattle, WA 98101" +209532,USB-C Charging Cable,1,11.95,06/12/19 13:35,"840 Main St, San Francisco, CA 94016" +209533,34in Ultrawide Monitor,1,379.99,06/06/19 16:19,"902 Church St, Los Angeles, CA 90001" +209534,Wired Headphones,1,11.99,06/30/19 14:03,"934 4th St, San Francisco, CA 94016" +209535,Lightning Charging Cable,1,14.95,06/26/19 07:46,"13 Jackson St, Seattle, WA 98101" +209536,Macbook Pro Laptop,1,1700,06/24/19 18:27,"943 Lakeview St, Boston, MA 02215" +209537,AAA Batteries (4-pack),1,2.99,06/22/19 18:01,"535 14th St, Portland, OR 97035" +209538,Wired Headphones,1,11.99,06/30/19 06:14,"899 Lakeview St, Los Angeles, CA 90001" +209539,Wired Headphones,1,11.99,06/24/19 10:35,"285 Church St, Los Angeles, CA 90001" +209540,USB-C Charging Cable,1,11.95,06/04/19 11:09,"486 Main St, Atlanta, GA 30301" +209541,Lightning Charging Cable,1,14.95,06/05/19 20:07,"799 Jackson St, Atlanta, GA 30301" +209542,AAA Batteries (4-pack),3,2.99,06/25/19 16:14,"187 1st St, Atlanta, GA 30301" +209543,ThinkPad Laptop,1,999.99,06/17/19 13:01,"257 6th St, Boston, MA 02215" +209544,Lightning Charging Cable,2,14.95,06/14/19 17:13,"901 Lake St, Los Angeles, CA 90001" +209545,Wired Headphones,1,11.99,06/08/19 20:42,"284 Hill St, Los Angeles, CA 90001" +209546,USB-C Charging Cable,1,11.95,06/18/19 15:51,"360 West St, New York City, NY 10001" +209547,Flatscreen TV,1,300,06/21/19 20:34,"715 Dogwood St, San Francisco, CA 94016" +209548,34in Ultrawide Monitor,1,379.99,06/24/19 18:21,"537 Jackson St, San Francisco, CA 94016" +209549,AAA Batteries (4-pack),2,2.99,06/27/19 19:53,"826 8th St, Boston, MA 02215" +209550,USB-C Charging Cable,1,11.95,06/21/19 13:01,"238 Walnut St, San Francisco, CA 94016" +209551,AAA Batteries (4-pack),2,2.99,06/15/19 23:45,"933 Lake St, Atlanta, GA 30301" +209552,Wired Headphones,1,11.99,06/19/19 20:28,"350 Elm St, Dallas, TX 75001" +209553,AAA Batteries (4-pack),2,2.99,06/21/19 17:21,"587 Maple St, Seattle, WA 98101" +209554,AA Batteries (4-pack),1,3.84,06/26/19 14:32,"252 Jefferson St, Atlanta, GA 30301" +209555,AA Batteries (4-pack),1,3.84,06/03/19 10:37,"282 Jackson St, Los Angeles, CA 90001" +209556,Macbook Pro Laptop,1,1700,06/08/19 16:18,"767 North St, Boston, MA 02215" +209557,iPhone,1,700,06/03/19 17:00,"482 Walnut St, San Francisco, CA 94016" +209558,Bose SoundSport Headphones,1,99.99,06/13/19 14:25,"997 6th St, New York City, NY 10001" +209559,USB-C Charging Cable,1,11.95,06/18/19 22:55,"713 Church St, Portland, OR 97035" +209560,USB-C Charging Cable,1,11.95,06/01/19 19:25,"785 Center St, San Francisco, CA 94016" +209561,AA Batteries (4-pack),3,3.84,06/03/19 20:14,"965 Washington St, New York City, NY 10001" +209562,Apple Airpods Headphones,1,150,06/27/19 07:18,"129 Hill St, Los Angeles, CA 90001" +209563,Lightning Charging Cable,1,14.95,06/07/19 15:14,"943 Cherry St, Dallas, TX 75001" +209564,AA Batteries (4-pack),1,3.84,06/20/19 21:17,"362 13th St, Atlanta, GA 30301" +209565,AAA Batteries (4-pack),1,2.99,06/08/19 20:57,"691 West St, San Francisco, CA 94016" +209566,AAA Batteries (4-pack),1,2.99,06/10/19 21:19,"764 Jefferson St, Seattle, WA 98101" +209567,27in FHD Monitor,1,149.99,06/12/19 16:45,"800 Willow St, Dallas, TX 75001" +209568,iPhone,1,700,06/09/19 09:26,"703 Sunset St, San Francisco, CA 94016" +209569,34in Ultrawide Monitor,1,379.99,06/19/19 21:33,"41 South St, New York City, NY 10001" +209570,AA Batteries (4-pack),1,3.84,06/17/19 16:16,"455 Maple St, Austin, TX 73301" +209571,ThinkPad Laptop,1,999.99,06/15/19 14:27,"978 Walnut St, San Francisco, CA 94016" +209572,Apple Airpods Headphones,1,150,06/23/19 14:05,"235 Maple St, San Francisco, CA 94016" +209573,Macbook Pro Laptop,1,1700,06/26/19 08:38,"220 10th St, Los Angeles, CA 90001" +209574,USB-C Charging Cable,1,11.95,06/22/19 17:04,"153 7th St, New York City, NY 10001" +209575,AA Batteries (4-pack),1,3.84,06/13/19 09:53,"219 Washington St, Dallas, TX 75001" +209576,Wired Headphones,1,11.99,06/04/19 11:26,"585 1st St, Los Angeles, CA 90001" +209577,27in FHD Monitor,1,149.99,06/11/19 09:38,"6 11th St, Dallas, TX 75001" +209578,AAA Batteries (4-pack),4,2.99,06/21/19 08:05,"697 South St, Dallas, TX 75001" +209579,Apple Airpods Headphones,1,150,06/18/19 20:39,"747 Lake St, New York City, NY 10001" +209580,Wired Headphones,1,11.99,06/17/19 09:56,"808 11th St, Dallas, TX 75001" +209581,Apple Airpods Headphones,1,150,06/27/19 21:55,"238 Wilson St, Boston, MA 02215" +209582,Apple Airpods Headphones,1,150,06/26/19 15:59,"101 6th St, Los Angeles, CA 90001" +209582,20in Monitor,1,109.99,06/26/19 15:59,"101 6th St, Los Angeles, CA 90001" +209583,27in 4K Gaming Monitor,1,389.99,06/30/19 14:05,"135 12th St, San Francisco, CA 94016" +209584,Apple Airpods Headphones,1,150,06/19/19 10:15,"257 Adams St, Seattle, WA 98101" +209585,Apple Airpods Headphones,1,150,06/03/19 18:44,"371 Cherry St, Austin, TX 73301" +209586,27in 4K Gaming Monitor,1,389.99,06/29/19 21:02,"192 Meadow St, New York City, NY 10001" +209587,iPhone,1,700,06/07/19 19:12,"170 Lakeview St, Portland, ME 04101" +209588,USB-C Charging Cable,1,11.95,06/18/19 03:43,"571 Madison St, Portland, ME 04101" +209588,AA Batteries (4-pack),1,3.84,06/18/19 03:43,"571 Madison St, Portland, ME 04101" +209589,Wired Headphones,1,11.99,06/14/19 17:36,"422 10th St, Atlanta, GA 30301" +209590,USB-C Charging Cable,1,11.95,06/21/19 17:03,"400 7th St, San Francisco, CA 94016" +209591,Google Phone,1,600,06/26/19 13:45,"387 7th St, San Francisco, CA 94016" +209592,Vareebadd Phone,1,400,06/24/19 10:52,"925 Center St, Portland, OR 97035" +209593,AAA Batteries (4-pack),1,2.99,06/01/19 06:19,"961 North St, San Francisco, CA 94016" +209594,Lightning Charging Cable,1,14.95,06/16/19 09:59,"415 Wilson St, Los Angeles, CA 90001" +209595,Vareebadd Phone,1,400,06/14/19 08:13,"723 8th St, Austin, TX 73301" +209596,USB-C Charging Cable,1,11.95,06/16/19 15:04,"118 Church St, Boston, MA 02215" +209597,27in 4K Gaming Monitor,1,389.99,06/02/19 22:17,"341 7th St, Atlanta, GA 30301" +209598,Apple Airpods Headphones,1,150,06/06/19 20:14,"744 Sunset St, San Francisco, CA 94016" +209599,Lightning Charging Cable,1,14.95,07/01/19 02:18,"329 14th St, Los Angeles, CA 90001" +209600,iPhone,1,700,06/26/19 08:13,"653 Church St, Portland, OR 97035" +209601,Apple Airpods Headphones,1,150,06/24/19 20:59,"352 River St, New York City, NY 10001" +209602,27in 4K Gaming Monitor,1,389.99,06/17/19 19:03,"829 Main St, New York City, NY 10001" +209603,AAA Batteries (4-pack),3,2.99,06/30/19 15:28,"984 Maple St, Atlanta, GA 30301" +209604,AA Batteries (4-pack),1,3.84,06/25/19 09:09,"662 Sunset St, Seattle, WA 98101" +209605,Macbook Pro Laptop,1,1700,06/23/19 16:38,"847 Lakeview St, Portland, ME 04101" +209606,USB-C Charging Cable,1,11.95,06/14/19 16:14,"825 Church St, Portland, OR 97035" +209607,Vareebadd Phone,1,400,06/01/19 12:15,"911 Church St, New York City, NY 10001" +209607,Bose SoundSport Headphones,1,99.99,06/01/19 12:15,"911 Church St, New York City, NY 10001" +209608,AAA Batteries (4-pack),1,2.99,06/12/19 11:48,"472 1st St, Dallas, TX 75001" +209609,Apple Airpods Headphones,1,150,06/06/19 22:53,"45 13th St, San Francisco, CA 94016" +209609,Bose SoundSport Headphones,1,99.99,06/06/19 22:53,"45 13th St, San Francisco, CA 94016" +209610,Bose SoundSport Headphones,1,99.99,06/19/19 16:23,"631 Spruce St, Boston, MA 02215" +209611,AAA Batteries (4-pack),1,2.99,06/10/19 18:40,"799 Cedar St, San Francisco, CA 94016" +209612,Flatscreen TV,1,300,06/29/19 16:58,"363 Lake St, Los Angeles, CA 90001" +209613,Bose SoundSport Headphones,1,99.99,06/10/19 18:41,"58 13th St, Dallas, TX 75001" +209614,Lightning Charging Cable,1,14.95,06/02/19 02:14,"972 8th St, San Francisco, CA 94016" +209615,Macbook Pro Laptop,1,1700,06/05/19 10:00,"122 Cherry St, Boston, MA 02215" +209616,Macbook Pro Laptop,1,1700,06/19/19 22:42,"526 North St, Atlanta, GA 30301" +209617,20in Monitor,1,109.99,06/28/19 16:56,"538 Lincoln St, Austin, TX 73301" +209618,Wired Headphones,1,11.99,06/05/19 13:12,"658 Lakeview St, Los Angeles, CA 90001" +209619,Lightning Charging Cable,3,14.95,06/09/19 20:06,"863 North St, Atlanta, GA 30301" +209620,Lightning Charging Cable,1,14.95,06/19/19 22:10,"401 14th St, San Francisco, CA 94016" +209621,Vareebadd Phone,1,400,06/08/19 15:52,"401 Church St, Boston, MA 02215" +209622,AAA Batteries (4-pack),2,2.99,06/20/19 20:22,"588 2nd St, Los Angeles, CA 90001" +209623,Lightning Charging Cable,1,14.95,06/19/19 21:19,"469 10th St, Los Angeles, CA 90001" +209624,Vareebadd Phone,1,400,06/08/19 19:15,"587 Center St, San Francisco, CA 94016" +209625,Wired Headphones,1,11.99,06/07/19 14:41,"411 Cherry St, Boston, MA 02215" +209626,Bose SoundSport Headphones,1,99.99,06/12/19 23:37,"114 Wilson St, San Francisco, CA 94016" +209627,USB-C Charging Cable,1,11.95,06/02/19 16:13,"300 Lincoln St, San Francisco, CA 94016" +209628,USB-C Charging Cable,1,11.95,06/13/19 10:01,"633 12th St, Los Angeles, CA 90001" +209629,Apple Airpods Headphones,1,150,06/12/19 05:15,"702 8th St, Austin, TX 73301" +209630,Lightning Charging Cable,1,14.95,06/09/19 12:29,"6 Chestnut St, San Francisco, CA 94016" +209631,Lightning Charging Cable,1,14.95,06/17/19 21:53,"902 North St, Seattle, WA 98101" +209632,Wired Headphones,1,11.99,06/10/19 19:21,"651 Dogwood St, Austin, TX 73301" +209633,AAA Batteries (4-pack),5,2.99,06/07/19 10:34,"80 Spruce St, San Francisco, CA 94016" +209634,Wired Headphones,1,11.99,06/30/19 20:02,"27 Main St, Dallas, TX 75001" +209635,USB-C Charging Cable,1,11.95,06/22/19 11:55,"826 8th St, Portland, OR 97035" +209636,AA Batteries (4-pack),1,3.84,06/18/19 09:34,"617 Washington St, San Francisco, CA 94016" +209637,iPhone,1,700,06/11/19 21:06,"978 Pine St, Atlanta, GA 30301" +209638,27in FHD Monitor,1,149.99,06/26/19 20:53,"338 Chestnut St, Atlanta, GA 30301" +209639,Flatscreen TV,1,300,06/29/19 07:55,"303 Chestnut St, Los Angeles, CA 90001" +209640,Bose SoundSport Headphones,1,99.99,06/15/19 13:37,"34 Madison St, San Francisco, CA 94016" +209641,USB-C Charging Cable,1,11.95,06/19/19 19:40,"365 12th St, Boston, MA 02215" +209642,Lightning Charging Cable,2,14.95,06/10/19 11:32,"920 Adams St, New York City, NY 10001" +209643,Apple Airpods Headphones,1,150,06/17/19 11:35,"357 6th St, New York City, NY 10001" +209644,Wired Headphones,1,11.99,06/16/19 06:14,"679 Maple St, Portland, OR 97035" +209645,USB-C Charging Cable,1,11.95,06/12/19 16:39,"745 Adams St, New York City, NY 10001" +209646,USB-C Charging Cable,1,11.95,06/18/19 18:58,"254 12th St, Portland, OR 97035" +209647,Lightning Charging Cable,1,14.95,06/16/19 12:20,"455 Cedar St, San Francisco, CA 94016" +209648,Google Phone,1,600,06/17/19 21:30,"566 North St, Boston, MA 02215" +209649,Bose SoundSport Headphones,1,99.99,06/06/19 09:21,"179 Hill St, Los Angeles, CA 90001" +209650,Wired Headphones,1,11.99,06/19/19 08:56,"270 River St, Boston, MA 02215" +209651,iPhone,1,700,06/21/19 14:45,"384 Hill St, New York City, NY 10001" +209652,27in FHD Monitor,1,149.99,06/11/19 23:54,"666 Washington St, Seattle, WA 98101" +209653,Wired Headphones,1,11.99,06/09/19 15:33,"214 Lake St, Austin, TX 73301" +209654,27in 4K Gaming Monitor,1,389.99,06/11/19 10:04,"18 Ridge St, Boston, MA 02215" +209655,AA Batteries (4-pack),1,3.84,06/04/19 14:06,"941 14th St, Austin, TX 73301" +209656,20in Monitor,1,109.99,06/23/19 18:35,"803 8th St, Boston, MA 02215" +209657,Wired Headphones,1,11.99,06/21/19 14:31,"703 Church St, Los Angeles, CA 90001" +209658,27in FHD Monitor,1,149.99,06/18/19 16:24,"451 Spruce St, Atlanta, GA 30301" +209659,USB-C Charging Cable,1,11.95,06/11/19 07:41,"626 Hickory St, Boston, MA 02215" +209660,Wired Headphones,1,11.99,06/29/19 18:23,"185 Washington St, New York City, NY 10001" +209661,iPhone,1,700,06/07/19 21:40,"277 6th St, Atlanta, GA 30301" +209662,USB-C Charging Cable,1,11.95,06/02/19 14:29,"198 1st St, San Francisco, CA 94016" +209663,34in Ultrawide Monitor,1,379.99,06/26/19 19:57,"96 River St, Seattle, WA 98101" +209664,USB-C Charging Cable,1,11.95,06/03/19 20:20,"447 Madison St, Los Angeles, CA 90001" +209665,Apple Airpods Headphones,1,150,06/24/19 23:08,"2 Lake St, Los Angeles, CA 90001" +209666,Apple Airpods Headphones,1,150,06/04/19 11:50,"799 Center St, Los Angeles, CA 90001" +209667,Lightning Charging Cable,1,14.95,06/14/19 10:43,"201 4th St, San Francisco, CA 94016" +209668,27in 4K Gaming Monitor,1,389.99,06/13/19 10:51,"559 6th St, San Francisco, CA 94016" +209669,27in 4K Gaming Monitor,1,389.99,06/14/19 16:07,"843 Hill St, Los Angeles, CA 90001" +209670,Lightning Charging Cable,1,14.95,06/14/19 10:22,"365 9th St, New York City, NY 10001" +209671,USB-C Charging Cable,1,11.95,06/02/19 10:31,"511 7th St, San Francisco, CA 94016" +209672,USB-C Charging Cable,2,11.95,06/30/19 12:41,"630 Sunset St, San Francisco, CA 94016" +209673,iPhone,1,700,06/07/19 13:03,"807 Walnut St, San Francisco, CA 94016" +209674,USB-C Charging Cable,1,11.95,06/04/19 17:31,"450 West St, San Francisco, CA 94016" +209675,AA Batteries (4-pack),1,3.84,06/27/19 07:04,"867 North St, Austin, TX 73301" +209676,AA Batteries (4-pack),2,3.84,06/11/19 10:14,"99 Adams St, Boston, MA 02215" +209677,Wired Headphones,1,11.99,06/10/19 18:41,"509 Madison St, San Francisco, CA 94016" +209678,27in FHD Monitor,1,149.99,06/30/19 14:21,"720 River St, San Francisco, CA 94016" +209679,Lightning Charging Cable,1,14.95,06/16/19 09:58,"19 Maple St, San Francisco, CA 94016" +209680,27in 4K Gaming Monitor,1,389.99,06/16/19 14:32,"363 Forest St, Austin, TX 73301" +209681,Google Phone,1,600,06/12/19 19:33,"344 2nd St, Seattle, WA 98101" +209681,Bose SoundSport Headphones,1,99.99,06/12/19 19:33,"344 2nd St, Seattle, WA 98101" +209682,USB-C Charging Cable,1,11.95,06/27/19 16:56,"938 Main St, Boston, MA 02215" +209683,Lightning Charging Cable,2,14.95,06/28/19 20:16,"502 Main St, Los Angeles, CA 90001" +209684,Google Phone,1,600,06/29/19 08:45,"953 Meadow St, Dallas, TX 75001" +209684,USB-C Charging Cable,1,11.95,06/29/19 08:45,"953 Meadow St, Dallas, TX 75001" +209685,AAA Batteries (4-pack),1,2.99,06/22/19 22:43,"58 South St, Boston, MA 02215" +209686,USB-C Charging Cable,1,11.95,06/07/19 20:39,"235 Cedar St, Boston, MA 02215" +209687,Lightning Charging Cable,1,14.95,06/02/19 09:14,"643 11th St, Austin, TX 73301" +209688,Flatscreen TV,1,300,06/18/19 21:53,"877 Wilson St, San Francisco, CA 94016" +209689,USB-C Charging Cable,2,11.95,06/18/19 14:44,"734 Main St, Los Angeles, CA 90001" +209690,Apple Airpods Headphones,1,150,06/19/19 22:30,"61 Willow St, San Francisco, CA 94016" +209691,ThinkPad Laptop,1,999.99,06/25/19 09:04,"886 River St, Dallas, TX 75001" +209692,Lightning Charging Cable,1,14.95,06/04/19 08:53,"478 Hickory St, Los Angeles, CA 90001" +209693,Wired Headphones,1,11.99,06/03/19 16:35,"308 14th St, Los Angeles, CA 90001" +209694,Macbook Pro Laptop,1,1700,06/02/19 11:43,"966 Maple St, San Francisco, CA 94016" +209695,20in Monitor,1,109.99,06/27/19 09:46,"18 Wilson St, San Francisco, CA 94016" +209696,AAA Batteries (4-pack),1,2.99,06/11/19 19:06,"927 9th St, Austin, TX 73301" +209697,USB-C Charging Cable,1,11.95,06/12/19 13:20,"79 Johnson St, Portland, OR 97035" +209698,Apple Airpods Headphones,1,150,06/15/19 23:46,"295 Lake St, Dallas, TX 75001" +209699,34in Ultrawide Monitor,1,379.99,06/18/19 10:05,"624 Hill St, Boston, MA 02215" +209700,AAA Batteries (4-pack),3,2.99,06/03/19 14:32,"202 Ridge St, Boston, MA 02215" +209701,AAA Batteries (4-pack),1,2.99,06/13/19 23:32,"314 11th St, Dallas, TX 75001" +209702,27in 4K Gaming Monitor,1,389.99,06/01/19 16:21,"839 Cherry St, San Francisco, CA 94016" +209703,27in FHD Monitor,1,149.99,06/06/19 10:08,"346 Walnut St, Los Angeles, CA 90001" +209704,AA Batteries (4-pack),2,3.84,06/03/19 08:15,"128 Hill St, San Francisco, CA 94016" +209705,Lightning Charging Cable,1,14.95,06/24/19 15:24,"172 Madison St, Boston, MA 02215" +209706,Bose SoundSport Headphones,1,99.99,06/22/19 18:41,"658 South St, Los Angeles, CA 90001" +209707,ThinkPad Laptop,1,999.99,06/01/19 07:01,"747 Ridge St, San Francisco, CA 94016" +209708,27in FHD Monitor,1,149.99,06/30/19 16:16,"390 Center St, Portland, OR 97035" +209709,Bose SoundSport Headphones,1,99.99,06/08/19 00:16,"489 10th St, San Francisco, CA 94016" +209710,USB-C Charging Cable,1,11.95,06/30/19 18:50,"418 Center St, Boston, MA 02215" +209711,AAA Batteries (4-pack),1,2.99,06/13/19 20:11,"474 Adams St, San Francisco, CA 94016" +209712,Apple Airpods Headphones,1,150,06/23/19 13:21,"118 Walnut St, Dallas, TX 75001" +209713,AAA Batteries (4-pack),2,2.99,06/25/19 15:33,"256 6th St, Los Angeles, CA 90001" +209714,Bose SoundSport Headphones,1,99.99,06/19/19 13:00,"588 Jefferson St, Los Angeles, CA 90001" +209715,Google Phone,1,600,06/17/19 14:41,"320 1st St, Seattle, WA 98101" +209716,Apple Airpods Headphones,1,150,06/07/19 19:30,"714 Forest St, San Francisco, CA 94016" +209717,Apple Airpods Headphones,1,150,06/10/19 11:43,"566 Spruce St, San Francisco, CA 94016" +209718,27in FHD Monitor,1,149.99,06/13/19 09:39,"865 Main St, Seattle, WA 98101" +209719,Lightning Charging Cable,1,14.95,06/06/19 14:21,"685 Sunset St, Seattle, WA 98101" +209720,ThinkPad Laptop,1,999.99,06/07/19 21:36,"424 10th St, San Francisco, CA 94016" +209721,27in 4K Gaming Monitor,1,389.99,06/21/19 07:44,"662 Walnut St, Boston, MA 02215" +209722,Wired Headphones,1,11.99,06/16/19 13:20,"715 Lincoln St, Dallas, TX 75001" +209723,Bose SoundSport Headphones,1,99.99,06/06/19 20:47,"415 Cherry St, Los Angeles, CA 90001" +209724,Wired Headphones,1,11.99,06/21/19 16:04,"92 Madison St, San Francisco, CA 94016" +209725,USB-C Charging Cable,1,11.95,06/23/19 22:29,"690 Lincoln St, Atlanta, GA 30301" +209726,AAA Batteries (4-pack),2,2.99,06/23/19 14:20,"337 6th St, San Francisco, CA 94016" +209727,ThinkPad Laptop,1,999.99,06/19/19 11:00,"48 Meadow St, Atlanta, GA 30301" +209728,Google Phone,1,600,06/24/19 17:19,"689 Wilson St, San Francisco, CA 94016" +209729,27in FHD Monitor,1,149.99,06/28/19 13:24,"837 14th St, Atlanta, GA 30301" +209730,Lightning Charging Cable,1,14.95,06/22/19 19:49,"306 Church St, San Francisco, CA 94016" +209731,20in Monitor,1,109.99,06/04/19 23:06,"552 Willow St, San Francisco, CA 94016" +209732,AAA Batteries (4-pack),1,2.99,06/28/19 21:55,"48 Forest St, Dallas, TX 75001" +209733,Bose SoundSport Headphones,1,99.99,06/07/19 09:36,"120 Lake St, Boston, MA 02215" +209734,Bose SoundSport Headphones,1,99.99,06/15/19 14:53,"606 Lake St, Los Angeles, CA 90001" +209735,AAA Batteries (4-pack),2,2.99,06/30/19 14:49,"787 Highland St, Los Angeles, CA 90001" +209736,Bose SoundSport Headphones,1,99.99,06/27/19 17:30,"134 Elm St, Seattle, WA 98101" +209737,AA Batteries (4-pack),1,3.84,06/18/19 16:12,"707 11th St, Boston, MA 02215" +209738,Lightning Charging Cable,1,14.95,06/16/19 14:13,"749 Willow St, Atlanta, GA 30301" +209739,Lightning Charging Cable,1,14.95,06/10/19 16:00,"424 Willow St, Austin, TX 73301" +209740,AA Batteries (4-pack),1,3.84,06/25/19 15:03,"3 Dogwood St, Los Angeles, CA 90001" +209741,20in Monitor,1,109.99,06/05/19 17:47,"730 Forest St, Atlanta, GA 30301" +209742,ThinkPad Laptop,1,999.99,06/04/19 12:05,"834 Jackson St, Portland, OR 97035" +209743,AA Batteries (4-pack),1,3.84,06/24/19 15:28,"407 Park St, Portland, ME 04101" +209744,27in 4K Gaming Monitor,1,389.99,06/01/19 16:07,"135 Willow St, Los Angeles, CA 90001" +209745,AAA Batteries (4-pack),3,2.99,06/14/19 09:25,"392 Elm St, Austin, TX 73301" +209746,Wired Headphones,1,11.99,06/15/19 23:11,"367 Jackson St, Boston, MA 02215" +209747,27in 4K Gaming Monitor,1,389.99,06/26/19 14:11,"608 Madison St, Boston, MA 02215" +209748,Macbook Pro Laptop,1,1700,06/13/19 20:31,"304 Highland St, Dallas, TX 75001" +209749,Bose SoundSport Headphones,1,99.99,06/24/19 20:27,"113 Chestnut St, Seattle, WA 98101" +209750,Bose SoundSport Headphones,1,99.99,06/30/19 07:40,"658 6th St, Los Angeles, CA 90001" +209751,AA Batteries (4-pack),1,3.84,06/07/19 15:37,"588 Pine St, Austin, TX 73301" +209752,Lightning Charging Cable,1,14.95,06/10/19 19:22,"755 Church St, San Francisco, CA 94016" +209753,Macbook Pro Laptop,1,1700,06/18/19 12:34,"863 Dogwood St, San Francisco, CA 94016" +209754,AAA Batteries (4-pack),2,2.99,06/09/19 19:44,"665 7th St, Portland, OR 97035" +209755,Wired Headphones,1,11.99,06/23/19 13:44,"209 Lake St, Los Angeles, CA 90001" +209756,Apple Airpods Headphones,1,150,06/03/19 15:15,"385 Washington St, Atlanta, GA 30301" +209757,USB-C Charging Cable,1,11.95,06/13/19 16:13,"404 Park St, San Francisco, CA 94016" +209758,Lightning Charging Cable,1,14.95,06/06/19 16:33,"28 9th St, New York City, NY 10001" +209759,USB-C Charging Cable,1,11.95,06/03/19 20:26,"422 Cedar St, Atlanta, GA 30301" +209760,AAA Batteries (4-pack),1,2.99,06/24/19 19:22,"693 West St, San Francisco, CA 94016" +209761,Wired Headphones,1,11.99,06/16/19 17:32,"782 Church St, Boston, MA 02215" +209762,Lightning Charging Cable,1,14.95,06/18/19 11:36,"380 Washington St, Portland, OR 97035" +209763,AAA Batteries (4-pack),1,2.99,06/17/19 17:49,"688 6th St, San Francisco, CA 94016" +209764,AAA Batteries (4-pack),2,2.99,06/30/19 10:58,"146 Forest St, New York City, NY 10001" +209765,AA Batteries (4-pack),1,3.84,06/24/19 08:24,"423 Cedar St, New York City, NY 10001" +209766,Bose SoundSport Headphones,1,99.99,06/08/19 09:16,"874 Ridge St, San Francisco, CA 94016" +209767,Google Phone,1,600,06/11/19 19:08,"452 Meadow St, Atlanta, GA 30301" +209767,Bose SoundSport Headphones,1,99.99,06/11/19 19:08,"452 Meadow St, Atlanta, GA 30301" +209768,Apple Airpods Headphones,1,150,06/13/19 17:20,"18 Jefferson St, San Francisco, CA 94016" +209769,Google Phone,1,600,06/09/19 17:12,"559 Pine St, San Francisco, CA 94016" +209770,27in FHD Monitor,1,149.99,06/27/19 17:15,"878 Lincoln St, New York City, NY 10001" +209771,AAA Batteries (4-pack),2,2.99,06/22/19 19:54,"783 6th St, San Francisco, CA 94016" +209772,iPhone,1,700,06/10/19 14:33,"954 Ridge St, Seattle, WA 98101" +209772,Apple Airpods Headphones,1,150,06/10/19 14:33,"954 Ridge St, Seattle, WA 98101" +209773,Wired Headphones,1,11.99,06/03/19 09:52,"713 River St, Boston, MA 02215" +209774,AA Batteries (4-pack),1,3.84,06/30/19 20:39,"290 Johnson St, San Francisco, CA 94016" +209775,AAA Batteries (4-pack),1,2.99,06/27/19 19:33,"735 7th St, Los Angeles, CA 90001" +209776,Macbook Pro Laptop,1,1700,06/04/19 12:28,"276 Dogwood St, Austin, TX 73301" +209777,Wired Headphones,2,11.99,06/21/19 13:57,"296 1st St, Austin, TX 73301" +209778,Wired Headphones,2,11.99,06/12/19 08:31,"659 Center St, Atlanta, GA 30301" +209779,AAA Batteries (4-pack),1,2.99,06/27/19 13:22,"160 Adams St, New York City, NY 10001" +209780,27in 4K Gaming Monitor,1,389.99,06/22/19 00:54,"769 Sunset St, New York City, NY 10001" +209781,Lightning Charging Cable,1,14.95,06/19/19 13:23,"374 10th St, Dallas, TX 75001" +209782,Lightning Charging Cable,1,14.95,06/16/19 23:39,"903 Highland St, Boston, MA 02215" +209783,Google Phone,1,600,06/10/19 20:34,"14 Walnut St, Atlanta, GA 30301" +209784,AA Batteries (4-pack),1,3.84,06/13/19 21:44,"796 Cedar St, Austin, TX 73301" +209785,AA Batteries (4-pack),1,3.84,06/08/19 14:49,"738 Highland St, Seattle, WA 98101" +209786,AAA Batteries (4-pack),2,2.99,06/30/19 18:49,"88 Dogwood St, Los Angeles, CA 90001" +209787,iPhone,1,700,06/08/19 02:14,"50 Wilson St, New York City, NY 10001" +209788,Wired Headphones,2,11.99,06/12/19 13:37,"390 River St, Seattle, WA 98101" +209789,AA Batteries (4-pack),1,3.84,06/27/19 08:09,"283 1st St, San Francisco, CA 94016" +209790,AA Batteries (4-pack),1,3.84,06/11/19 21:08,"730 5th St, Seattle, WA 98101" +209791,34in Ultrawide Monitor,1,379.99,06/05/19 19:21,"853 6th St, New York City, NY 10001" +209792,AA Batteries (4-pack),1,3.84,06/27/19 23:47,"828 5th St, San Francisco, CA 94016" +,,,,, +209793,USB-C Charging Cable,1,11.95,06/04/19 16:51,"758 South St, Portland, OR 97035" +209794,AAA Batteries (4-pack),3,2.99,06/05/19 23:02,"335 North St, Seattle, WA 98101" +209795,ThinkPad Laptop,1,999.99,06/13/19 23:48,"304 Cherry St, San Francisco, CA 94016" +209796,Lightning Charging Cable,1,14.95,06/06/19 11:48,"986 Lakeview St, San Francisco, CA 94016" +209797,AA Batteries (4-pack),2,3.84,06/01/19 20:58,"843 Jackson St, New York City, NY 10001" +209798,Wired Headphones,1,11.99,06/01/19 20:56,"893 Johnson St, Portland, OR 97035" +209799,Google Phone,1,600,06/25/19 15:04,"806 5th St, San Francisco, CA 94016" +209800,Lightning Charging Cable,1,14.95,06/18/19 09:29,"148 Highland St, Los Angeles, CA 90001" +209801,USB-C Charging Cable,2,11.95,06/21/19 12:50,"131 Dogwood St, San Francisco, CA 94016" +209802,27in 4K Gaming Monitor,1,389.99,06/07/19 17:25,"871 Highland St, Boston, MA 02215" +209803,iPhone,1,700,06/17/19 13:26,"246 2nd St, Dallas, TX 75001" +209804,Lightning Charging Cable,1,14.95,06/02/19 15:16,"405 12th St, New York City, NY 10001" +209805,AA Batteries (4-pack),1,3.84,06/29/19 19:29,"70 Meadow St, Los Angeles, CA 90001" +209806,Apple Airpods Headphones,1,150,06/06/19 23:49,"383 Wilson St, San Francisco, CA 94016" +209807,Wired Headphones,1,11.99,06/29/19 19:27,"996 14th St, Atlanta, GA 30301" +209808,34in Ultrawide Monitor,1,379.99,06/18/19 12:37,"546 South St, Los Angeles, CA 90001" +209809,Google Phone,1,600,06/19/19 17:42,"476 Washington St, Los Angeles, CA 90001" +209809,Bose SoundSport Headphones,1,99.99,06/19/19 17:42,"476 Washington St, Los Angeles, CA 90001" +209809,Wired Headphones,1,11.99,06/19/19 17:42,"476 Washington St, Los Angeles, CA 90001" +209810,Macbook Pro Laptop,1,1700,06/12/19 09:49,"834 Wilson St, San Francisco, CA 94016" +209810,Apple Airpods Headphones,1,150,06/12/19 09:49,"834 Wilson St, San Francisco, CA 94016" +209811,AAA Batteries (4-pack),1,2.99,06/03/19 11:14,"957 Hill St, Boston, MA 02215" +209812,Google Phone,1,600,06/12/19 19:16,"973 Spruce St, Dallas, TX 75001" +209813,Wired Headphones,1,11.99,06/26/19 21:55,"78 Jackson St, Los Angeles, CA 90001" +209814,20in Monitor,1,109.99,06/02/19 20:26,"244 5th St, New York City, NY 10001" +209815,AA Batteries (4-pack),1,3.84,06/19/19 13:32,"975 Main St, Dallas, TX 75001" +209815,AAA Batteries (4-pack),1,2.99,06/19/19 13:32,"975 Main St, Dallas, TX 75001" +209816,Lightning Charging Cable,1,14.95,06/20/19 19:29,"430 7th St, Portland, OR 97035" +209817,Wired Headphones,1,11.99,06/20/19 15:17,"566 River St, New York City, NY 10001" +209818,34in Ultrawide Monitor,1,379.99,06/15/19 17:00,"542 South St, Boston, MA 02215" +209819,Bose SoundSport Headphones,1,99.99,06/26/19 18:39,"805 Spruce St, Austin, TX 73301" +209820,Lightning Charging Cable,1,14.95,06/06/19 20:51,"886 7th St, Los Angeles, CA 90001" +209821,AAA Batteries (4-pack),1,2.99,06/09/19 21:42,"342 Maple St, San Francisco, CA 94016" +209822,AAA Batteries (4-pack),1,2.99,06/05/19 13:16,"510 Park St, Los Angeles, CA 90001" +209823,Wired Headphones,1,11.99,06/09/19 11:54,"266 Spruce St, Portland, OR 97035" +209824,USB-C Charging Cable,1,11.95,06/04/19 18:11,"254 7th St, Boston, MA 02215" +209825,USB-C Charging Cable,1,11.95,06/29/19 13:54,"954 Center St, Atlanta, GA 30301" +209826,ThinkPad Laptop,1,999.99,06/20/19 12:47,"833 5th St, San Francisco, CA 94016" +209827,Wired Headphones,1,11.99,06/30/19 10:03,"832 Hickory St, San Francisco, CA 94016" +209828,AAA Batteries (4-pack),2,2.99,06/02/19 21:03,"895 Maple St, San Francisco, CA 94016" +209829,Apple Airpods Headphones,1,150,06/20/19 00:00,"761 1st St, Portland, OR 97035" +209830,Lightning Charging Cable,1,14.95,06/22/19 09:18,"843 2nd St, Atlanta, GA 30301" +209831,Wired Headphones,1,11.99,06/24/19 20:36,"350 Johnson St, Austin, TX 73301" +209832,Wired Headphones,2,11.99,06/23/19 19:54,"606 Hill St, Austin, TX 73301" +209833,Apple Airpods Headphones,1,150,06/17/19 15:30,"786 Center St, Portland, OR 97035" +209834,USB-C Charging Cable,1,11.95,06/09/19 13:44,"720 8th St, Boston, MA 02215" +209835,AAA Batteries (4-pack),1,2.99,06/25/19 13:36,"99 12th St, Boston, MA 02215" +209836,Lightning Charging Cable,1,14.95,06/02/19 10:07,"833 11th St, Atlanta, GA 30301" +209837,Lightning Charging Cable,1,14.95,06/13/19 21:08,"145 Cedar St, Atlanta, GA 30301" +209838,Wired Headphones,1,11.99,06/28/19 12:32,"146 Main St, San Francisco, CA 94016" +209839,LG Dryer,1,600.0,06/25/19 18:38,"828 8th St, Dallas, TX 75001" +209840,AA Batteries (4-pack),1,3.84,06/16/19 16:40,"982 North St, Los Angeles, CA 90001" +209841,USB-C Charging Cable,1,11.95,06/17/19 21:51,"843 Adams St, Boston, MA 02215" +209842,Lightning Charging Cable,1,14.95,06/26/19 17:34,"330 Center St, Boston, MA 02215" +209843,AA Batteries (4-pack),2,3.84,06/22/19 16:37,"294 Highland St, Los Angeles, CA 90001" +209844,Bose SoundSport Headphones,1,99.99,06/21/19 10:42,"286 Dogwood St, Los Angeles, CA 90001" +209845,Bose SoundSport Headphones,1,99.99,06/23/19 16:03,"91 Lake St, Los Angeles, CA 90001" +209845,Apple Airpods Headphones,1,150,06/23/19 16:03,"91 Lake St, Los Angeles, CA 90001" +209846,USB-C Charging Cable,1,11.95,06/03/19 20:07,"152 Pine St, New York City, NY 10001" +209847,Vareebadd Phone,1,400,06/10/19 14:27,"999 Forest St, San Francisco, CA 94016" +209848,Lightning Charging Cable,1,14.95,06/26/19 10:40,"26 Highland St, Boston, MA 02215" +209849,27in FHD Monitor,1,149.99,06/03/19 18:09,"156 Hickory St, San Francisco, CA 94016" +209850,Lightning Charging Cable,2,14.95,06/15/19 11:32,"582 Hill St, Boston, MA 02215" +209851,27in FHD Monitor,1,149.99,06/30/19 12:13,"3 Hill St, Los Angeles, CA 90001" +209852,Lightning Charging Cable,1,14.95,06/09/19 17:38,"496 Center St, San Francisco, CA 94016" +209853,Flatscreen TV,1,300,06/29/19 09:55,"350 Sunset St, Atlanta, GA 30301" +209854,Lightning Charging Cable,1,14.95,06/10/19 13:48,"884 Cedar St, New York City, NY 10001" +209855,AA Batteries (4-pack),4,3.84,06/25/19 09:32,"330 10th St, Los Angeles, CA 90001" +209856,AAA Batteries (4-pack),1,2.99,06/26/19 12:52,"811 Sunset St, San Francisco, CA 94016" +209857,20in Monitor,1,109.99,06/19/19 09:46,"649 Lincoln St, Dallas, TX 75001" +209858,Lightning Charging Cable,1,14.95,06/10/19 17:02,"61 Main St, Los Angeles, CA 90001" +209859,Apple Airpods Headphones,1,150,06/28/19 09:00,"37 Pine St, Atlanta, GA 30301" +209860,Lightning Charging Cable,1,14.95,06/17/19 18:41,"630 5th St, San Francisco, CA 94016" +209861,34in Ultrawide Monitor,1,379.99,06/16/19 14:54,"23 Church St, Dallas, TX 75001" +209862,iPhone,1,700,06/10/19 22:19,"422 Chestnut St, Austin, TX 73301" +209863,AAA Batteries (4-pack),3,2.99,06/07/19 13:49,"865 Park St, Austin, TX 73301" +209864,20in Monitor,1,109.99,06/23/19 22:35,"462 Johnson St, Portland, OR 97035" +209865,Macbook Pro Laptop,1,1700,06/23/19 18:25,"974 Pine St, Boston, MA 02215" +209866,Wired Headphones,1,11.99,06/24/19 19:41,"190 Main St, Portland, OR 97035" +209867,USB-C Charging Cable,1,11.95,06/19/19 17:22,"984 Park St, Austin, TX 73301" +209868,USB-C Charging Cable,1,11.95,06/26/19 23:15,"932 Lake St, Portland, OR 97035" +209869,Wired Headphones,1,11.99,06/09/19 21:15,"356 Center St, Los Angeles, CA 90001" +209870,Google Phone,1,600,06/10/19 18:13,"488 Jefferson St, Seattle, WA 98101" +209870,Wired Headphones,1,11.99,06/10/19 18:13,"488 Jefferson St, Seattle, WA 98101" +209871,USB-C Charging Cable,1,11.95,06/28/19 17:28,"975 10th St, Boston, MA 02215" +209872,AA Batteries (4-pack),1,3.84,06/18/19 18:42,"40 6th St, San Francisco, CA 94016" +209873,20in Monitor,1,109.99,06/18/19 11:39,"45 South St, Portland, ME 04101" +209874,Apple Airpods Headphones,1,150,06/20/19 15:39,"544 2nd St, Boston, MA 02215" +209875,Lightning Charging Cable,1,14.95,06/19/19 17:27,"811 South St, Los Angeles, CA 90001" +209876,Bose SoundSport Headphones,1,99.99,06/28/19 08:49,"744 Maple St, New York City, NY 10001" +209877,Google Phone,1,600,06/10/19 12:17,"742 Park St, Los Angeles, CA 90001" +209878,Vareebadd Phone,1,400,06/15/19 00:23,"955 14th St, Portland, OR 97035" +209879,Google Phone,1,600,06/22/19 11:57,"890 Maple St, Boston, MA 02215" +209880,Google Phone,1,600,06/11/19 23:56,"780 Park St, San Francisco, CA 94016" +209880,USB-C Charging Cable,1,11.95,06/11/19 23:56,"780 Park St, San Francisco, CA 94016" +209880,Wired Headphones,1,11.99,06/11/19 23:56,"780 Park St, San Francisco, CA 94016" +209881,AAA Batteries (4-pack),1,2.99,06/26/19 13:24,"393 Center St, Boston, MA 02215" +209882,USB-C Charging Cable,1,11.95,06/01/19 12:38,"767 14th St, Seattle, WA 98101" +209883,Lightning Charging Cable,1,14.95,06/23/19 20:49,"218 2nd St, New York City, NY 10001" +209884,AAA Batteries (4-pack),1,2.99,06/01/19 19:04,"899 Dogwood St, San Francisco, CA 94016" +209885,USB-C Charging Cable,1,11.95,06/11/19 15:48,"526 Elm St, Austin, TX 73301" +209886,AA Batteries (4-pack),1,3.84,06/30/19 21:53,"283 Hill St, Dallas, TX 75001" +209887,Flatscreen TV,1,300,06/05/19 19:56,"642 Jackson St, Dallas, TX 75001" +209888,Bose SoundSport Headphones,1,99.99,06/05/19 21:48,"616 Adams St, Portland, OR 97035" +209889,AAA Batteries (4-pack),1,2.99,06/22/19 22:57,"363 Lakeview St, New York City, NY 10001" +209890,Lightning Charging Cable,1,14.95,06/23/19 18:22,"525 4th St, New York City, NY 10001" +209891,Google Phone,1,600,06/02/19 16:11,"562 Hickory St, Austin, TX 73301" +209892,Lightning Charging Cable,1,14.95,06/07/19 18:49,"214 Church St, New York City, NY 10001" +209893,USB-C Charging Cable,1,11.95,06/07/19 09:16,"844 11th St, Atlanta, GA 30301" +209894,Macbook Pro Laptop,1,1700,06/24/19 12:37,"594 Highland St, Seattle, WA 98101" +209895,Apple Airpods Headphones,1,150,06/27/19 07:58,"787 Cedar St, Boston, MA 02215" +209896,Lightning Charging Cable,1,14.95,06/13/19 20:46,"999 Jefferson St, Seattle, WA 98101" +209897,34in Ultrawide Monitor,1,379.99,06/28/19 11:47,"102 Chestnut St, Los Angeles, CA 90001" +209898,AAA Batteries (4-pack),1,2.99,06/15/19 19:48,"541 1st St, New York City, NY 10001" +209899,Wired Headphones,1,11.99,06/15/19 18:24,"146 8th St, New York City, NY 10001" +209900,AAA Batteries (4-pack),1,2.99,06/06/19 13:27,"978 6th St, San Francisco, CA 94016" +209901,Lightning Charging Cable,1,14.95,06/15/19 18:44,"128 Jefferson St, Seattle, WA 98101" +209902,Wired Headphones,1,11.99,06/02/19 02:17,"432 10th St, Los Angeles, CA 90001" +209903,Bose SoundSport Headphones,1,99.99,06/01/19 11:31,"628 South St, Boston, MA 02215" +209904,AA Batteries (4-pack),1,3.84,06/08/19 22:46,"349 7th St, New York City, NY 10001" +209905,USB-C Charging Cable,1,11.95,06/01/19 19:28,"702 Cedar St, Atlanta, GA 30301" +209906,Apple Airpods Headphones,1,150,06/23/19 21:10,"890 Park St, Seattle, WA 98101" +209907,AA Batteries (4-pack),2,3.84,06/09/19 15:15,"432 Park St, Boston, MA 02215" +209908,Lightning Charging Cable,1,14.95,06/23/19 19:29,"323 12th St, Boston, MA 02215" +209909,Wired Headphones,1,11.99,06/13/19 11:53,"390 North St, New York City, NY 10001" +209910,USB-C Charging Cable,1,11.95,06/28/19 23:04,"19 Washington St, San Francisco, CA 94016" +209911,AA Batteries (4-pack),3,3.84,06/22/19 12:02,"895 Cherry St, New York City, NY 10001" +209912,AAA Batteries (4-pack),1,2.99,06/22/19 11:49,"176 Forest St, Los Angeles, CA 90001" +209913,iPhone,1,700,06/24/19 07:49,"197 Church St, New York City, NY 10001" +209914,USB-C Charging Cable,1,11.95,06/20/19 00:47,"627 7th St, Seattle, WA 98101" +209915,Lightning Charging Cable,1,14.95,06/21/19 15:14,"676 Spruce St, San Francisco, CA 94016" +209916,AAA Batteries (4-pack),1,2.99,06/18/19 18:46,"622 14th St, San Francisco, CA 94016" +209917,AAA Batteries (4-pack),4,2.99,06/23/19 17:06,"991 Washington St, Portland, ME 04101" +209918,20in Monitor,1,109.99,06/07/19 12:24,"278 6th St, Boston, MA 02215" +209919,AAA Batteries (4-pack),1,2.99,06/30/19 19:38,"988 Walnut St, San Francisco, CA 94016" +209920,AA Batteries (4-pack),2,3.84,06/21/19 09:37,"197 Sunset St, Los Angeles, CA 90001" +209920,Lightning Charging Cable,1,14.95,06/21/19 09:37,"197 Sunset St, Los Angeles, CA 90001" +209921,AA Batteries (4-pack),1,3.84,06/11/19 22:00,"28 4th St, Seattle, WA 98101" +209922,Bose SoundSport Headphones,1,99.99,06/08/19 01:13,"473 7th St, San Francisco, CA 94016" +209923,AAA Batteries (4-pack),1,2.99,06/05/19 06:58,"271 Church St, Atlanta, GA 30301" +209924,AA Batteries (4-pack),1,3.84,06/29/19 10:54,"444 South St, New York City, NY 10001" +209925,Wired Headphones,1,11.99,06/19/19 22:06,"858 Highland St, San Francisco, CA 94016" +209926,AA Batteries (4-pack),1,3.84,06/26/19 20:48,"876 Pine St, Boston, MA 02215" +209927,LG Washing Machine,1,600.0,06/28/19 12:55,"709 4th St, Boston, MA 02215" +209928,27in 4K Gaming Monitor,1,389.99,06/17/19 12:25,"353 Johnson St, Seattle, WA 98101" +209929,USB-C Charging Cable,1,11.95,06/03/19 09:00,"468 Pine St, Portland, OR 97035" +209930,AA Batteries (4-pack),1,3.84,06/11/19 18:34,"485 Washington St, Portland, OR 97035" +209931,Macbook Pro Laptop,1,1700,06/20/19 18:55,"796 Jefferson St, Austin, TX 73301" +209932,Wired Headphones,1,11.99,06/23/19 20:52,"135 Maple St, Dallas, TX 75001" +209933,USB-C Charging Cable,1,11.95,06/08/19 14:16,"756 Jefferson St, Los Angeles, CA 90001" +209934,AAA Batteries (4-pack),1,2.99,06/01/19 20:29,"457 Washington St, San Francisco, CA 94016" +209935,AAA Batteries (4-pack),1,2.99,06/05/19 21:56,"864 Wilson St, New York City, NY 10001" +209936,AA Batteries (4-pack),1,3.84,06/23/19 20:25,"871 North St, Seattle, WA 98101" +209937,20in Monitor,1,109.99,06/02/19 20:00,"686 Park St, Dallas, TX 75001" +209938,Lightning Charging Cable,1,14.95,06/04/19 12:43,"866 Maple St, San Francisco, CA 94016" +209939,USB-C Charging Cable,1,11.95,06/01/19 23:49,"851 Center St, Atlanta, GA 30301" +209940,Apple Airpods Headphones,1,150,06/04/19 17:57,"93 Maple St, Atlanta, GA 30301" +209941,Lightning Charging Cable,1,14.95,06/05/19 00:24,"854 Washington St, Boston, MA 02215" +209942,AA Batteries (4-pack),1,3.84,06/22/19 23:39,"725 Madison St, Boston, MA 02215" +209943,Wired Headphones,1,11.99,06/01/19 12:37,"403 River St, New York City, NY 10001" +209944,Lightning Charging Cable,1,14.95,06/23/19 08:09,"309 North St, New York City, NY 10001" +209945,AAA Batteries (4-pack),1,2.99,06/10/19 20:40,"892 Jackson St, Seattle, WA 98101" +209946,Lightning Charging Cable,2,14.95,06/07/19 20:27,"140 Pine St, Atlanta, GA 30301" +209947,USB-C Charging Cable,1,11.95,06/24/19 09:31,"820 Cedar St, San Francisco, CA 94016" +209948,AA Batteries (4-pack),1,3.84,06/22/19 20:50,"921 6th St, Boston, MA 02215" +209949,27in 4K Gaming Monitor,1,389.99,06/10/19 16:59,"38 Hickory St, Seattle, WA 98101" +209950,Google Phone,1,600,06/14/19 19:45,"685 Main St, San Francisco, CA 94016" +209951,Lightning Charging Cable,2,14.95,06/29/19 12:14,"261 Maple St, Los Angeles, CA 90001" +209952,USB-C Charging Cable,1,11.95,06/27/19 08:54,"450 Willow St, Boston, MA 02215" +209953,Lightning Charging Cable,1,14.95,06/02/19 02:00,"334 Jefferson St, Atlanta, GA 30301" +209954,AA Batteries (4-pack),1,3.84,06/06/19 07:48,"794 Johnson St, Portland, OR 97035" +209955,Bose SoundSport Headphones,1,99.99,06/22/19 13:13,"438 4th St, Atlanta, GA 30301" +209956,USB-C Charging Cable,1,11.95,06/12/19 16:23,"111 Johnson St, San Francisco, CA 94016" +209957,AAA Batteries (4-pack),1,2.99,06/14/19 00:01,"4 4th St, Seattle, WA 98101" +209958,Wired Headphones,1,11.99,06/21/19 17:10,"994 9th St, San Francisco, CA 94016" +209959,AA Batteries (4-pack),1,3.84,06/27/19 16:16,"327 Jefferson St, Los Angeles, CA 90001" +209960,Bose SoundSport Headphones,1,99.99,06/11/19 09:13,"290 4th St, San Francisco, CA 94016" +209961,AA Batteries (4-pack),4,3.84,06/21/19 18:47,"483 Sunset St, San Francisco, CA 94016" +209962,Apple Airpods Headphones,1,150,06/26/19 13:09,"942 Chestnut St, Atlanta, GA 30301" +209963,AAA Batteries (4-pack),1,2.99,06/29/19 09:16,"351 Cedar St, San Francisco, CA 94016" +209964,Bose SoundSport Headphones,1,99.99,06/03/19 09:39,"344 4th St, Los Angeles, CA 90001" +209965,Flatscreen TV,1,300,06/02/19 14:01,"383 Meadow St, Dallas, TX 75001" +209966,AA Batteries (4-pack),1,3.84,06/08/19 11:47,"409 Chestnut St, New York City, NY 10001" +209967,AAA Batteries (4-pack),3,2.99,06/22/19 20:43,"750 Cherry St, New York City, NY 10001" +209968,AA Batteries (4-pack),1,3.84,06/21/19 17:09,"477 Ridge St, Boston, MA 02215" +209969,USB-C Charging Cable,1,11.95,06/12/19 16:45,"999 Ridge St, San Francisco, CA 94016" +209970,USB-C Charging Cable,1,11.95,06/17/19 01:23,"814 Meadow St, Los Angeles, CA 90001" +209971,USB-C Charging Cable,1,11.95,06/05/19 23:15,"136 Spruce St, San Francisco, CA 94016" +209972,Apple Airpods Headphones,1,150,06/03/19 10:33,"947 North St, San Francisco, CA 94016" +209973,Flatscreen TV,1,300,06/20/19 12:10,"115 Adams St, San Francisco, CA 94016" +209974,Lightning Charging Cable,2,14.95,06/14/19 10:29,"553 14th St, San Francisco, CA 94016" +,,,,, +209975,AA Batteries (4-pack),2,3.84,06/06/19 19:39,"481 Jackson St, Seattle, WA 98101" +209976,27in FHD Monitor,1,149.99,06/02/19 16:56,"578 Meadow St, Boston, MA 02215" +209977,ThinkPad Laptop,1,999.99,06/08/19 07:55,"716 9th St, Boston, MA 02215" +209978,iPhone,1,700,06/04/19 06:13,"811 Highland St, Austin, TX 73301" +209979,USB-C Charging Cable,1,11.95,06/01/19 13:37,"976 Jefferson St, Seattle, WA 98101" +209980,Lightning Charging Cable,2,14.95,06/24/19 09:36,"948 11th St, New York City, NY 10001" +209981,Wired Headphones,1,11.99,06/13/19 19:32,"549 14th St, New York City, NY 10001" +209982,USB-C Charging Cable,1,11.95,06/10/19 21:00,"207 Center St, San Francisco, CA 94016" +209983,USB-C Charging Cable,1,11.95,06/15/19 13:45,"166 Cherry St, Austin, TX 73301" +209984,USB-C Charging Cable,1,11.95,06/25/19 11:49,"215 Park St, Portland, OR 97035" +209985,ThinkPad Laptop,1,999.99,06/25/19 19:03,"338 Washington St, Los Angeles, CA 90001" +209986,AAA Batteries (4-pack),1,2.99,06/22/19 18:43,"937 10th St, Portland, ME 04101" +209987,Bose SoundSport Headphones,1,99.99,06/03/19 19:06,"882 Park St, San Francisco, CA 94016" +209988,27in FHD Monitor,1,149.99,06/15/19 17:31,"627 Pine St, Boston, MA 02215" +209989,27in FHD Monitor,1,149.99,06/18/19 09:19,"389 Willow St, Atlanta, GA 30301" +209990,USB-C Charging Cable,1,11.95,06/18/19 09:44,"162 Washington St, Boston, MA 02215" +209991,27in FHD Monitor,1,149.99,06/02/19 14:37,"547 North St, Boston, MA 02215" +209992,Vareebadd Phone,1,400,06/15/19 17:35,"357 Highland St, Portland, OR 97035" +209993,LG Dryer,1,600.0,06/26/19 09:59,"739 Elm St, San Francisco, CA 94016" +209994,Bose SoundSport Headphones,1,99.99,06/06/19 20:26,"234 Highland St, New York City, NY 10001" +209995,Apple Airpods Headphones,1,150,06/15/19 19:13,"568 8th St, Seattle, WA 98101" +209996,Lightning Charging Cable,1,14.95,06/02/19 23:28,"288 Forest St, Portland, OR 97035" +209997,Flatscreen TV,1,300,06/06/19 21:36,"253 6th St, New York City, NY 10001" +209998,Wired Headphones,1,11.99,06/15/19 18:28,"80 2nd St, Los Angeles, CA 90001" +209999,LG Dryer,1,600.0,06/21/19 11:43,"94 11th St, Atlanta, GA 30301" +210000,ThinkPad Laptop,1,999.99,06/21/19 12:21,"872 Wilson St, San Francisco, CA 94016" +210001,Lightning Charging Cable,1,14.95,06/30/19 13:27,"981 14th St, Seattle, WA 98101" +210002,Flatscreen TV,1,300,06/12/19 13:00,"842 13th St, San Francisco, CA 94016" +210003,USB-C Charging Cable,1,11.95,06/07/19 18:33,"270 Park St, Portland, OR 97035" +210004,USB-C Charging Cable,1,11.95,06/04/19 15:54,"690 Walnut St, San Francisco, CA 94016" +210005,Apple Airpods Headphones,1,150,06/02/19 10:50,"150 River St, Dallas, TX 75001" +210006,27in FHD Monitor,1,149.99,06/15/19 20:02,"433 Highland St, New York City, NY 10001" +210007,Bose SoundSport Headphones,2,99.99,06/11/19 12:57,"483 Washington St, Atlanta, GA 30301" +210008,ThinkPad Laptop,1,999.99,06/14/19 14:09,"534 Walnut St, Boston, MA 02215" +210009,Wired Headphones,2,11.99,06/30/19 13:49,"967 7th St, San Francisco, CA 94016" +210010,AAA Batteries (4-pack),1,2.99,06/11/19 21:32,"725 9th St, San Francisco, CA 94016" +210011,Wired Headphones,1,11.99,07/01/19 01:03,"379 Lake St, Dallas, TX 75001" +210012,ThinkPad Laptop,1,999.99,06/12/19 16:53,"991 9th St, San Francisco, CA 94016" +210013,USB-C Charging Cable,1,11.95,06/13/19 23:11,"939 Adams St, New York City, NY 10001" +210014,Apple Airpods Headphones,1,150,06/15/19 08:51,"771 Cherry St, Atlanta, GA 30301" +210015,USB-C Charging Cable,1,11.95,06/13/19 12:14,"410 1st St, Atlanta, GA 30301" +210016,Lightning Charging Cable,1,14.95,06/05/19 10:12,"801 Main St, San Francisco, CA 94016" +210017,USB-C Charging Cable,1,11.95,06/29/19 10:54,"837 7th St, Atlanta, GA 30301" +210018,Bose SoundSport Headphones,1,99.99,06/08/19 21:14,"833 Willow St, San Francisco, CA 94016" +210019,Apple Airpods Headphones,1,150,06/08/19 13:34,"309 11th St, San Francisco, CA 94016" +210020,AAA Batteries (4-pack),1,2.99,06/07/19 15:51,"663 Washington St, San Francisco, CA 94016" +210021,27in 4K Gaming Monitor,1,389.99,06/06/19 22:57,"318 Hickory St, Atlanta, GA 30301" +210022,AAA Batteries (4-pack),1,2.99,06/28/19 22:58,"601 4th St, San Francisco, CA 94016" +210023,27in FHD Monitor,1,149.99,06/02/19 22:31,"224 12th St, Atlanta, GA 30301" +210024,AAA Batteries (4-pack),2,2.99,06/11/19 07:38,"841 Pine St, Los Angeles, CA 90001" +210025,AAA Batteries (4-pack),1,2.99,06/27/19 19:15,"499 Ridge St, Seattle, WA 98101" +210026,Wired Headphones,1,11.99,06/04/19 12:46,"56 8th St, Los Angeles, CA 90001" +210027,AAA Batteries (4-pack),1,2.99,06/13/19 17:59,"340 Wilson St, Atlanta, GA 30301" +210028,Wired Headphones,1,11.99,06/02/19 09:12,"388 Johnson St, Austin, TX 73301" +210029,AAA Batteries (4-pack),1,2.99,06/26/19 18:41,"265 7th St, Portland, OR 97035" +210030,Lightning Charging Cable,1,14.95,06/20/19 12:18,"683 5th St, Atlanta, GA 30301" +210031,Wired Headphones,1,11.99,06/14/19 16:46,"56 14th St, Atlanta, GA 30301" +210032,Lightning Charging Cable,1,14.95,06/22/19 19:21,"80 12th St, San Francisco, CA 94016" +210033,USB-C Charging Cable,1,11.95,06/25/19 07:29,"790 7th St, Boston, MA 02215" +210034,Apple Airpods Headphones,1,150,06/25/19 11:52,"858 West St, New York City, NY 10001" +210035,Wired Headphones,1,11.99,06/28/19 16:28,"343 10th St, Boston, MA 02215" +210036,USB-C Charging Cable,1,11.95,06/09/19 23:03,"593 Lakeview St, Los Angeles, CA 90001" +210037,Google Phone,1,600,06/01/19 05:26,"135 Washington St, Dallas, TX 75001" +210038,AAA Batteries (4-pack),3,2.99,06/22/19 20:37,"569 Adams St, San Francisco, CA 94016" +210039,27in FHD Monitor,1,149.99,06/30/19 12:39,"889 10th St, Los Angeles, CA 90001" +210040,AA Batteries (4-pack),2,3.84,06/23/19 18:54,"520 7th St, Seattle, WA 98101" +210041,Lightning Charging Cable,1,14.95,06/06/19 04:02,"679 Park St, Los Angeles, CA 90001" +210042,20in Monitor,1,109.99,06/12/19 12:33,"694 Lake St, Dallas, TX 75001" +210043,AAA Batteries (4-pack),2,2.99,06/14/19 12:25,"158 Jackson St, Boston, MA 02215" +210044,LG Washing Machine,1,600.0,06/26/19 10:25,"594 Church St, San Francisco, CA 94016" +210045,Wired Headphones,1,11.99,06/03/19 11:52,"501 North St, Atlanta, GA 30301" +210046,ThinkPad Laptop,1,999.99,06/27/19 11:12,"975 9th St, San Francisco, CA 94016" +210047,AAA Batteries (4-pack),1,2.99,06/09/19 18:36,"621 North St, Atlanta, GA 30301" +210048,USB-C Charging Cable,1,11.95,06/16/19 11:49,"849 1st St, Boston, MA 02215" +210049,AAA Batteries (4-pack),2,2.99,06/02/19 12:01,"114 Jefferson St, Los Angeles, CA 90001" +210050,AA Batteries (4-pack),1,3.84,06/30/19 19:23,"329 Cherry St, San Francisco, CA 94016" +210051,AAA Batteries (4-pack),1,2.99,06/15/19 17:47,"818 Church St, New York City, NY 10001" +210052,USB-C Charging Cable,1,11.95,06/24/19 00:42,"189 Ridge St, Boston, MA 02215" +210053,Apple Airpods Headphones,1,150,06/20/19 13:43,"760 Main St, Boston, MA 02215" +210054,Wired Headphones,1,11.99,06/04/19 22:50,"487 North St, San Francisco, CA 94016" +210055,Wired Headphones,1,11.99,06/07/19 07:17,"556 West St, Los Angeles, CA 90001" +210056,USB-C Charging Cable,1,11.95,06/03/19 12:53,"523 Wilson St, San Francisco, CA 94016" +210057,AAA Batteries (4-pack),1,2.99,06/10/19 16:21,"421 Ridge St, Atlanta, GA 30301" +210058,USB-C Charging Cable,1,11.95,06/27/19 19:13,"435 West St, Los Angeles, CA 90001" +210059,USB-C Charging Cable,1,11.95,06/05/19 16:56,"20 Maple St, Boston, MA 02215" +210060,Bose SoundSport Headphones,1,99.99,06/19/19 18:58,"917 Walnut St, New York City, NY 10001" +210061,AA Batteries (4-pack),1,3.84,06/11/19 09:33,"55 Cedar St, Atlanta, GA 30301" +210062,Lightning Charging Cable,1,14.95,06/19/19 17:27,"437 Walnut St, San Francisco, CA 94016" +210063,Apple Airpods Headphones,1,150,07/01/19 01:03,"834 Church St, Boston, MA 02215" +210064,Wired Headphones,1,11.99,06/29/19 23:20,"213 Chestnut St, San Francisco, CA 94016" +210065,27in 4K Gaming Monitor,1,389.99,06/10/19 15:07,"916 Maple St, San Francisco, CA 94016" +210066,Wired Headphones,1,11.99,06/29/19 20:30,"61 Maple St, San Francisco, CA 94016" +210067,Bose SoundSport Headphones,1,99.99,06/05/19 13:46,"396 2nd St, Los Angeles, CA 90001" +210068,Lightning Charging Cable,1,14.95,06/14/19 19:59,"945 Center St, Boston, MA 02215" +210069,AAA Batteries (4-pack),1,2.99,06/20/19 10:24,"408 Johnson St, Dallas, TX 75001" +210070,Google Phone,1,600,06/07/19 15:25,"480 Jefferson St, New York City, NY 10001" +210071,Lightning Charging Cable,1,14.95,06/06/19 19:22,"293 Walnut St, Atlanta, GA 30301" +210072,Lightning Charging Cable,1,14.95,06/30/19 17:09,"726 6th St, Dallas, TX 75001" +210073,Lightning Charging Cable,1,14.95,06/04/19 16:22,"87 7th St, San Francisco, CA 94016" +210074,Lightning Charging Cable,1,14.95,06/17/19 12:04,"933 South St, Austin, TX 73301" +210075,Google Phone,1,600,06/13/19 09:58,"433 Forest St, Boston, MA 02215" +210075,USB-C Charging Cable,1,11.95,06/13/19 09:58,"433 Forest St, Boston, MA 02215" +210076,AA Batteries (4-pack),1,3.84,06/27/19 18:16,"581 Washington St, New York City, NY 10001" +210077,AAA Batteries (4-pack),2,2.99,06/25/19 14:31,"923 South St, New York City, NY 10001" +210078,Lightning Charging Cable,1,14.95,06/18/19 00:12,"238 13th St, Seattle, WA 98101" +210079,AA Batteries (4-pack),1,3.84,06/22/19 19:45,"533 Center St, Portland, OR 97035" +210080,USB-C Charging Cable,1,11.95,06/22/19 03:08,"16 8th St, Boston, MA 02215" +210081,Bose SoundSport Headphones,1,99.99,06/08/19 20:39,"512 Walnut St, Austin, TX 73301" +210082,Apple Airpods Headphones,1,150,06/19/19 17:07,"341 13th St, Los Angeles, CA 90001" +210082,AAA Batteries (4-pack),1,2.99,06/19/19 17:07,"341 13th St, Los Angeles, CA 90001" +210083,Bose SoundSport Headphones,1,99.99,06/04/19 20:14,"529 Dogwood St, New York City, NY 10001" +210084,Lightning Charging Cable,1,14.95,06/13/19 17:54,"259 12th St, New York City, NY 10001" +210085,Apple Airpods Headphones,1,150,06/29/19 17:51,"605 Main St, New York City, NY 10001" +210086,Lightning Charging Cable,1,14.95,06/30/19 05:49,"598 Pine St, New York City, NY 10001" +210087,AA Batteries (4-pack),2,3.84,06/02/19 05:25,"213 Meadow St, Los Angeles, CA 90001" +210088,AA Batteries (4-pack),1,3.84,06/18/19 10:41,"68 Park St, New York City, NY 10001" +210089,AAA Batteries (4-pack),1,2.99,06/04/19 05:10,"185 Forest St, New York City, NY 10001" +210090,Lightning Charging Cable,1,14.95,06/11/19 21:16,"182 West St, San Francisco, CA 94016" +210091,Apple Airpods Headphones,1,150,06/01/19 20:08,"866 Washington St, Boston, MA 02215" +210092,Wired Headphones,1,11.99,06/12/19 07:17,"924 Hill St, New York City, NY 10001" +210092,Google Phone,1,600,06/12/19 07:17,"924 Hill St, New York City, NY 10001" +210093,Apple Airpods Headphones,1,150,06/03/19 08:42,"438 Jefferson St, New York City, NY 10001" +210094,USB-C Charging Cable,1,11.95,06/28/19 19:02,"991 Washington St, New York City, NY 10001" +210095,Bose SoundSport Headphones,1,99.99,06/10/19 17:29,"170 Forest St, Los Angeles, CA 90001" +210096,Wired Headphones,1,11.99,06/27/19 14:11,"221 Chestnut St, New York City, NY 10001" +210097,AA Batteries (4-pack),2,3.84,06/26/19 10:15,"316 Jackson St, Austin, TX 73301" +210098,Google Phone,1,600,06/09/19 09:15,"254 Hill St, Dallas, TX 75001" +210099,Bose SoundSport Headphones,1,99.99,06/28/19 22:01,"129 Church St, Los Angeles, CA 90001" +210099,Vareebadd Phone,1,400,06/28/19 22:01,"129 Church St, Los Angeles, CA 90001" +210100,AA Batteries (4-pack),1,3.84,06/01/19 16:04,"635 6th St, San Francisco, CA 94016" +210101,Google Phone,1,600,06/21/19 00:49,"884 1st St, San Francisco, CA 94016" +210102,20in Monitor,1,109.99,06/05/19 19:04,"602 Church St, San Francisco, CA 94016" +210103,USB-C Charging Cable,1,11.95,06/29/19 01:52,"473 Maple St, San Francisco, CA 94016" +210104,27in 4K Gaming Monitor,1,389.99,06/12/19 22:53,"590 Chestnut St, Boston, MA 02215" +210105,Wired Headphones,1,11.99,06/07/19 14:49,"259 6th St, San Francisco, CA 94016" +210106,iPhone,1,700,06/18/19 13:50,"212 Park St, New York City, NY 10001" +210107,iPhone,1,700,06/24/19 20:28,"335 Willow St, Seattle, WA 98101" +210108,AAA Batteries (4-pack),1,2.99,06/18/19 10:35,"118 Walnut St, New York City, NY 10001" +210109,Bose SoundSport Headphones,1,99.99,06/05/19 15:44,"247 Jefferson St, San Francisco, CA 94016" +210110,Bose SoundSport Headphones,1,99.99,06/11/19 18:10,"638 10th St, Austin, TX 73301" +210111,AAA Batteries (4-pack),2,2.99,06/12/19 13:14,"248 Meadow St, San Francisco, CA 94016" +210112,Wired Headphones,1,11.99,06/23/19 20:08,"380 2nd St, Los Angeles, CA 90001" +210113,AAA Batteries (4-pack),6,2.99,06/29/19 10:51,"553 Spruce St, San Francisco, CA 94016" +210114,Lightning Charging Cable,1,14.95,06/06/19 10:13,"849 Madison St, Dallas, TX 75001" +210115,AA Batteries (4-pack),1,3.84,06/05/19 20:45,"935 Hickory St, Atlanta, GA 30301" +210116,USB-C Charging Cable,1,11.95,06/30/19 10:46,"256 Lakeview St, New York City, NY 10001" +210117,Lightning Charging Cable,1,14.95,06/18/19 22:45,"980 West St, New York City, NY 10001" +210118,AA Batteries (4-pack),1,3.84,06/13/19 13:26,"863 Spruce St, Atlanta, GA 30301" +210119,Bose SoundSport Headphones,1,99.99,06/15/19 12:39,"851 West St, Atlanta, GA 30301" +210120,USB-C Charging Cable,1,11.95,06/11/19 09:50,"322 Park St, Los Angeles, CA 90001" +210121,Wired Headphones,1,11.99,06/21/19 11:04,"521 Johnson St, Portland, OR 97035" +210122,Flatscreen TV,1,300,06/20/19 18:01,"695 Wilson St, New York City, NY 10001" +210123,27in FHD Monitor,1,149.99,06/29/19 17:20,"805 10th St, Seattle, WA 98101" +210124,USB-C Charging Cable,1,11.95,06/11/19 21:43,"315 14th St, Los Angeles, CA 90001" +210125,USB-C Charging Cable,1,11.95,06/30/19 13:47,"642 Lakeview St, Los Angeles, CA 90001" +210126,iPhone,1,700,06/12/19 17:44,"337 River St, Austin, TX 73301" +210126,Lightning Charging Cable,1,14.95,06/12/19 17:44,"337 River St, Austin, TX 73301" +210127,Apple Airpods Headphones,1,150,06/13/19 10:23,"333 9th St, San Francisco, CA 94016" +210128,Apple Airpods Headphones,1,150,06/02/19 21:42,"508 12th St, San Francisco, CA 94016" +210129,Lightning Charging Cable,1,14.95,06/18/19 01:00,"216 2nd St, Los Angeles, CA 90001" +210130,USB-C Charging Cable,1,11.95,06/28/19 12:22,"101 Adams St, Seattle, WA 98101" +210131,34in Ultrawide Monitor,1,379.99,06/11/19 16:45,"408 Highland St, San Francisco, CA 94016" +210132,Wired Headphones,1,11.99,06/27/19 14:40,"198 4th St, Dallas, TX 75001" +210133,Macbook Pro Laptop,1,1700,06/25/19 14:11,"489 Highland St, New York City, NY 10001" +210134,34in Ultrawide Monitor,1,379.99,06/08/19 12:17,"80 Lake St, Portland, ME 04101" +210135,Bose SoundSport Headphones,1,99.99,06/10/19 13:27,"5 Highland St, Los Angeles, CA 90001" +210136,AAA Batteries (4-pack),1,2.99,06/01/19 23:52,"307 Elm St, Los Angeles, CA 90001" +210137,Macbook Pro Laptop,1,1700,06/28/19 12:34,"109 Highland St, Boston, MA 02215" +210138,Lightning Charging Cable,1,14.95,06/21/19 18:40,"155 7th St, San Francisco, CA 94016" +210139,AAA Batteries (4-pack),1,2.99,06/30/19 22:40,"124 Church St, Los Angeles, CA 90001" +210140,Wired Headphones,1,11.99,06/30/19 19:58,"683 Elm St, San Francisco, CA 94016" +210141,Apple Airpods Headphones,1,150,06/24/19 19:32,"159 West St, Portland, OR 97035" +210142,USB-C Charging Cable,1,11.95,06/15/19 18:38,"453 2nd St, Los Angeles, CA 90001" +210143,USB-C Charging Cable,1,11.95,06/26/19 15:21,"506 South St, Atlanta, GA 30301" +210144,AA Batteries (4-pack),1,3.84,06/28/19 11:51,"288 Jackson St, Los Angeles, CA 90001" +210145,AAA Batteries (4-pack),1,2.99,06/15/19 14:46,"626 14th St, Los Angeles, CA 90001" +210146,USB-C Charging Cable,1,11.95,07/01/19 03:43,"275 Meadow St, Portland, OR 97035" +210147,AAA Batteries (4-pack),2,2.99,06/03/19 16:38,"764 Lake St, San Francisco, CA 94016" +210148,AAA Batteries (4-pack),1,2.99,06/15/19 16:58,"112 Hill St, Dallas, TX 75001" +210149,27in 4K Gaming Monitor,1,389.99,06/21/19 17:33,"673 7th St, New York City, NY 10001" +210150,Bose SoundSport Headphones,1,99.99,06/09/19 12:12,"160 Walnut St, San Francisco, CA 94016" +210151,USB-C Charging Cable,1,11.95,06/20/19 11:08,"441 Adams St, Dallas, TX 75001" +210152,Flatscreen TV,1,300,06/03/19 17:24,"275 4th St, Seattle, WA 98101" +210153,LG Dryer,1,600.0,06/18/19 23:21,"517 Center St, Boston, MA 02215" +210154,Wired Headphones,1,11.99,06/26/19 20:38,"652 6th St, Boston, MA 02215" +210155,27in 4K Gaming Monitor,1,389.99,06/14/19 13:55,"214 Walnut St, Boston, MA 02215" +210156,Lightning Charging Cable,1,14.95,06/12/19 13:32,"140 8th St, Austin, TX 73301" +210157,iPhone,1,700,06/12/19 12:58,"50 Lincoln St, Portland, OR 97035" +210158,Wired Headphones,1,11.99,06/25/19 11:01,"576 12th St, Los Angeles, CA 90001" +210159,20in Monitor,1,109.99,06/05/19 07:35,"505 Cherry St, New York City, NY 10001" +210160,AA Batteries (4-pack),1,3.84,06/21/19 01:02,"182 Elm St, Los Angeles, CA 90001" +210161,34in Ultrawide Monitor,1,379.99,06/03/19 12:41,"932 Highland St, Austin, TX 73301" +210162,Lightning Charging Cable,1,14.95,06/06/19 11:15,"720 Jefferson St, San Francisco, CA 94016" +210163,Lightning Charging Cable,1,14.95,06/08/19 11:46,"111 Park St, Dallas, TX 75001" +210164,27in 4K Gaming Monitor,1,389.99,06/15/19 21:19,"65 Chestnut St, San Francisco, CA 94016" +210165,Bose SoundSport Headphones,1,99.99,06/20/19 10:19,"615 Chestnut St, San Francisco, CA 94016" +210166,AA Batteries (4-pack),1,3.84,06/17/19 12:36,"207 Jackson St, New York City, NY 10001" +210167,20in Monitor,1,109.99,06/10/19 15:16,"345 11th St, Seattle, WA 98101" +210168,Lightning Charging Cable,1,14.95,06/26/19 11:45,"604 West St, Portland, ME 04101" +210169,Apple Airpods Headphones,1,150,06/28/19 20:50,"204 Meadow St, Boston, MA 02215" +210170,Lightning Charging Cable,1,14.95,06/19/19 21:28,"335 Cedar St, New York City, NY 10001" +210171,Apple Airpods Headphones,1,150,06/03/19 05:15,"287 Cedar St, Atlanta, GA 30301" +210172,Lightning Charging Cable,1,14.95,06/16/19 06:46,"593 Jefferson St, San Francisco, CA 94016" +210173,Apple Airpods Headphones,1,150,06/25/19 11:44,"622 11th St, Boston, MA 02215" +210174,AAA Batteries (4-pack),1,2.99,06/07/19 02:36,"127 Lake St, Dallas, TX 75001" +210175,Lightning Charging Cable,1,14.95,06/03/19 13:21,"983 Dogwood St, Austin, TX 73301" +210176,Wired Headphones,1,11.99,06/28/19 08:30,"226 Chestnut St, Austin, TX 73301" +210177,Bose SoundSport Headphones,1,99.99,06/23/19 16:54,"192 Center St, Los Angeles, CA 90001" +210178,AAA Batteries (4-pack),3,2.99,06/19/19 11:27,"396 West St, Los Angeles, CA 90001" +210179,AA Batteries (4-pack),2,3.84,06/10/19 13:43,"365 12th St, San Francisco, CA 94016" +210180,AA Batteries (4-pack),1,3.84,06/11/19 20:38,"922 Hickory St, Los Angeles, CA 90001" +210181,Apple Airpods Headphones,1,150,06/04/19 16:53,"713 5th St, New York City, NY 10001" +210182,AA Batteries (4-pack),1,3.84,06/10/19 00:19,"608 Lincoln St, Boston, MA 02215" +210183,ThinkPad Laptop,1,999.99,06/02/19 12:09,"74 5th St, Los Angeles, CA 90001" +210184,Bose SoundSport Headphones,1,99.99,06/06/19 09:35,"56 Maple St, Portland, ME 04101" +210185,Lightning Charging Cable,1,14.95,06/15/19 11:19,"957 Lake St, Dallas, TX 75001" +210186,AA Batteries (4-pack),1,3.84,06/18/19 00:14,"512 2nd St, Los Angeles, CA 90001" +210187,USB-C Charging Cable,1,11.95,06/13/19 10:45,"165 13th St, Boston, MA 02215" +210188,iPhone,1,700,06/19/19 19:36,"374 Hickory St, New York City, NY 10001" +210189,AA Batteries (4-pack),1,3.84,06/06/19 20:55,"572 1st St, Los Angeles, CA 90001" +210190,AA Batteries (4-pack),1,3.84,06/10/19 20:31,"21 Washington St, San Francisco, CA 94016" +210191,Macbook Pro Laptop,1,1700,06/07/19 00:02,"546 Wilson St, Dallas, TX 75001" +210192,USB-C Charging Cable,1,11.95,06/09/19 21:24,"180 Forest St, New York City, NY 10001" +210193,AA Batteries (4-pack),1,3.84,06/29/19 18:50,"835 Lake St, Los Angeles, CA 90001" +210194,AA Batteries (4-pack),1,3.84,06/02/19 19:17,"861 Chestnut St, San Francisco, CA 94016" +210195,AAA Batteries (4-pack),2,2.99,06/01/19 17:15,"594 Madison St, Atlanta, GA 30301" +210196,ThinkPad Laptop,1,999.99,06/02/19 11:24,"501 13th St, Portland, ME 04101" +210197,Lightning Charging Cable,1,14.95,06/09/19 04:12,"465 Willow St, Austin, TX 73301" +210198,27in FHD Monitor,1,149.99,06/08/19 09:49,"658 Lake St, Atlanta, GA 30301" +210199,20in Monitor,1,109.99,06/19/19 11:23,"498 10th St, Portland, ME 04101" +210200,USB-C Charging Cable,1,11.95,06/18/19 18:08,"748 Dogwood St, San Francisco, CA 94016" +210201,USB-C Charging Cable,1,11.95,06/24/19 15:28,"811 Chestnut St, Los Angeles, CA 90001" +210202,34in Ultrawide Monitor,1,379.99,06/28/19 20:36,"321 Spruce St, Boston, MA 02215" +210203,27in 4K Gaming Monitor,1,389.99,06/16/19 17:36,"53 4th St, New York City, NY 10001" +210204,Bose SoundSport Headphones,1,99.99,06/26/19 11:39,"465 Ridge St, Atlanta, GA 30301" +210205,Lightning Charging Cable,1,14.95,06/16/19 21:04,"33 14th St, Portland, OR 97035" +210206,Wired Headphones,1,11.99,06/01/19 09:18,"562 South St, New York City, NY 10001" +210207,Wired Headphones,1,11.99,06/03/19 19:35,"961 Dogwood St, New York City, NY 10001" +210208,AA Batteries (4-pack),1,3.84,06/05/19 01:51,"198 Ridge St, New York City, NY 10001" +210209,AAA Batteries (4-pack),1,2.99,06/09/19 06:20,"817 14th St, Boston, MA 02215" +210210,Flatscreen TV,1,300,06/03/19 19:20,"273 Lakeview St, Atlanta, GA 30301" +210211,AAA Batteries (4-pack),2,2.99,06/26/19 11:17,"310 Church St, Boston, MA 02215" +210212,Apple Airpods Headphones,1,150,06/11/19 22:46,"693 6th St, Atlanta, GA 30301" +210213,AAA Batteries (4-pack),3,2.99,06/23/19 16:34,"562 Cedar St, Los Angeles, CA 90001" +210214,Lightning Charging Cable,1,14.95,06/24/19 14:18,"282 Maple St, San Francisco, CA 94016" +210215,USB-C Charging Cable,1,11.95,06/21/19 03:32,"384 7th St, New York City, NY 10001" +210216,Apple Airpods Headphones,1,150,06/22/19 01:13,"7 4th St, Portland, OR 97035" +210217,AAA Batteries (4-pack),1,2.99,06/19/19 13:23,"463 Highland St, Los Angeles, CA 90001" +210218,AA Batteries (4-pack),1,3.84,06/24/19 13:25,"559 Ridge St, San Francisco, CA 94016" +210219,iPhone,1,700,06/07/19 10:25,"685 Highland St, San Francisco, CA 94016" +210220,ThinkPad Laptop,1,999.99,06/25/19 16:01,"952 11th St, Los Angeles, CA 90001" +210221,27in 4K Gaming Monitor,1,389.99,06/23/19 11:47,"173 4th St, New York City, NY 10001" +210222,USB-C Charging Cable,1,11.95,06/09/19 17:32,"513 Center St, Atlanta, GA 30301" +210223,27in 4K Gaming Monitor,1,389.99,06/14/19 07:08,"637 Hill St, Los Angeles, CA 90001" +210224,27in FHD Monitor,1,149.99,06/26/19 20:50,"441 14th St, New York City, NY 10001" +210225,USB-C Charging Cable,1,11.95,06/24/19 08:46,"458 West St, San Francisco, CA 94016" +210226,Bose SoundSport Headphones,1,99.99,06/06/19 14:36,"575 Lakeview St, Seattle, WA 98101" +210227,iPhone,1,700,06/03/19 12:55,"275 10th St, Portland, OR 97035" +210228,Wired Headphones,1,11.99,06/25/19 15:55,"463 14th St, San Francisco, CA 94016" +210229,Lightning Charging Cable,1,14.95,06/30/19 22:51,"58 Cherry St, Boston, MA 02215" +210230,AA Batteries (4-pack),1,3.84,06/12/19 19:37,"821 1st St, Austin, TX 73301" +210231,Wired Headphones,2,11.99,06/29/19 19:13,"998 Wilson St, San Francisco, CA 94016" +210232,iPhone,1,700,06/30/19 07:05,"232 Center St, Boston, MA 02215" +210233,Bose SoundSport Headphones,1,99.99,06/26/19 22:28,"819 8th St, San Francisco, CA 94016" +210234,Wired Headphones,1,11.99,06/29/19 11:32,"156 Washington St, San Francisco, CA 94016" +210235,USB-C Charging Cable,1,11.95,06/20/19 17:46,"299 Park St, Los Angeles, CA 90001" +210236,Bose SoundSport Headphones,1,99.99,06/16/19 22:21,"869 Highland St, Boston, MA 02215" +210237,USB-C Charging Cable,1,11.95,06/21/19 10:46,"58 Lincoln St, Boston, MA 02215" +210238,Wired Headphones,1,11.99,06/23/19 19:16,"601 West St, San Francisco, CA 94016" +210239,Lightning Charging Cable,1,14.95,06/21/19 14:00,"118 Cherry St, New York City, NY 10001" +210240,AAA Batteries (4-pack),1,2.99,06/10/19 11:41,"523 Jefferson St, San Francisco, CA 94016" +210241,AA Batteries (4-pack),1,3.84,06/12/19 13:59,"853 1st St, New York City, NY 10001" +210242,iPhone,1,700,06/17/19 12:32,"767 Adams St, Austin, TX 73301" +210243,34in Ultrawide Monitor,1,379.99,06/24/19 23:50,"765 Chestnut St, San Francisco, CA 94016" +210244,34in Ultrawide Monitor,1,379.99,06/05/19 21:06,"278 Lincoln St, New York City, NY 10001" +210245,iPhone,1,700,06/28/19 01:17,"239 Center St, Los Angeles, CA 90001" +210246,Bose SoundSport Headphones,1,99.99,06/03/19 16:17,"61 North St, Seattle, WA 98101" +210247,Wired Headphones,1,11.99,06/18/19 07:24,"630 Adams St, Boston, MA 02215" +210248,34in Ultrawide Monitor,1,379.99,06/08/19 17:38,"324 10th St, Los Angeles, CA 90001" +210249,Wired Headphones,1,11.99,06/08/19 09:22,"737 West St, Boston, MA 02215" +210250,USB-C Charging Cable,1,11.95,06/15/19 13:30,"924 5th St, Atlanta, GA 30301" +210251,34in Ultrawide Monitor,1,379.99,06/21/19 18:56,"728 South St, Boston, MA 02215" +210252,AAA Batteries (4-pack),1,2.99,06/30/19 13:43,"719 Ridge St, San Francisco, CA 94016" +210253,Wired Headphones,1,11.99,06/13/19 21:48,"321 Meadow St, Los Angeles, CA 90001" +210254,USB-C Charging Cable,2,11.95,06/28/19 15:08,"13 9th St, San Francisco, CA 94016" +210255,Flatscreen TV,1,300,06/18/19 12:27,"773 8th St, Dallas, TX 75001" +210256,AAA Batteries (4-pack),2,2.99,06/01/19 15:31,"303 Church St, New York City, NY 10001" +210257,AA Batteries (4-pack),1,3.84,06/12/19 22:44,"57 Madison St, Austin, TX 73301" +210258,27in 4K Gaming Monitor,1,389.99,06/08/19 17:31,"965 Madison St, San Francisco, CA 94016" +210259,Google Phone,1,600,06/26/19 19:12,"806 Maple St, Los Angeles, CA 90001" +210260,AA Batteries (4-pack),1,3.84,06/22/19 09:56,"511 14th St, Atlanta, GA 30301" +210261,AA Batteries (4-pack),1,3.84,06/08/19 21:07,"266 Cherry St, Austin, TX 73301" +210262,Bose SoundSport Headphones,1,99.99,06/11/19 23:08,"95 River St, Atlanta, GA 30301" +210263,Bose SoundSport Headphones,1,99.99,06/21/19 14:12,"501 Hickory St, Los Angeles, CA 90001" +210264,USB-C Charging Cable,2,11.95,06/02/19 22:19,"332 Lincoln St, San Francisco, CA 94016" +210265,27in 4K Gaming Monitor,1,389.99,06/25/19 17:21,"523 Maple St, Atlanta, GA 30301" +210266,Google Phone,1,600,06/11/19 11:28,"623 Pine St, Seattle, WA 98101" +210267,USB-C Charging Cable,1,11.95,06/23/19 20:17,"765 Spruce St, San Francisco, CA 94016" +210268,27in 4K Gaming Monitor,1,389.99,06/02/19 14:54,"595 Willow St, Dallas, TX 75001" +210268,Flatscreen TV,1,300,06/02/19 14:54,"595 Willow St, Dallas, TX 75001" +210269,AAA Batteries (4-pack),1,2.99,06/13/19 21:24,"530 Cherry St, Boston, MA 02215" +210270,Wired Headphones,1,11.99,06/21/19 17:15,"920 Park St, Seattle, WA 98101" +210271,Wired Headphones,1,11.99,06/10/19 17:48,"631 Lake St, San Francisco, CA 94016" +210272,Lightning Charging Cable,1,14.95,06/15/19 18:14,"381 Church St, San Francisco, CA 94016" +210273,ThinkPad Laptop,1,999.99,06/20/19 00:57,"275 Cedar St, Austin, TX 73301" +210274,Apple Airpods Headphones,1,150,06/09/19 21:58,"657 Willow St, Portland, OR 97035" +210275,AAA Batteries (4-pack),1,2.99,06/03/19 16:07,"432 Adams St, Dallas, TX 75001" +210276,27in FHD Monitor,1,149.99,06/20/19 23:39,"802 Sunset St, Atlanta, GA 30301" +210277,Macbook Pro Laptop,1,1700,06/18/19 19:45,"820 13th St, New York City, NY 10001" +210278,34in Ultrawide Monitor,1,379.99,06/03/19 22:40,"196 Chestnut St, Portland, OR 97035" +210278,USB-C Charging Cable,1,11.95,06/03/19 22:40,"196 Chestnut St, Portland, OR 97035" +210279,Bose SoundSport Headphones,1,99.99,06/18/19 09:33,"636 Elm St, New York City, NY 10001" +210280,AAA Batteries (4-pack),1,2.99,06/11/19 16:33,"730 Cedar St, Los Angeles, CA 90001" +210281,USB-C Charging Cable,1,11.95,06/29/19 07:54,"678 Adams St, New York City, NY 10001" +210282,Apple Airpods Headphones,1,150,06/14/19 12:19,"633 Sunset St, Portland, OR 97035" +210283,iPhone,1,700,06/03/19 17:40,"775 Spruce St, New York City, NY 10001" +210284,AAA Batteries (4-pack),1,2.99,06/05/19 22:36,"292 Meadow St, New York City, NY 10001" +210285,Wired Headphones,1,11.99,06/25/19 20:05,"283 Madison St, San Francisco, CA 94016" +210286,Google Phone,1,600,06/25/19 01:02,"417 North St, San Francisco, CA 94016" +210287,AA Batteries (4-pack),1,3.84,06/20/19 16:36,"108 Forest St, Los Angeles, CA 90001" +210288,Lightning Charging Cable,1,14.95,06/24/19 20:14,"967 Ridge St, Portland, OR 97035" +210289,AA Batteries (4-pack),1,3.84,06/24/19 20:02,"992 10th St, Portland, ME 04101" +210290,Lightning Charging Cable,1,14.95,06/10/19 10:33,"259 Jefferson St, San Francisco, CA 94016" +210291,AA Batteries (4-pack),1,3.84,06/22/19 08:15,"9 Sunset St, Boston, MA 02215" +210292,iPhone,1,700,06/05/19 21:31,"723 Jefferson St, Los Angeles, CA 90001" +210293,Bose SoundSport Headphones,1,99.99,06/21/19 13:52,"38 Maple St, San Francisco, CA 94016" +210294,Bose SoundSport Headphones,1,99.99,06/03/19 12:32,"458 Willow St, Los Angeles, CA 90001" +210295,Lightning Charging Cable,1,14.95,06/12/19 15:17,"994 West St, Boston, MA 02215" +210296,Apple Airpods Headphones,1,150,06/09/19 00:53,"422 West St, San Francisco, CA 94016" +210297,27in 4K Gaming Monitor,1,389.99,07/01/19 01:46,"625 River St, New York City, NY 10001" +210298,AAA Batteries (4-pack),1,2.99,06/09/19 12:00,"973 North St, Atlanta, GA 30301" +210299,Bose SoundSport Headphones,1,99.99,06/07/19 23:05,"371 South St, Los Angeles, CA 90001" +210300,USB-C Charging Cable,1,11.95,06/01/19 14:51,"500 8th St, Los Angeles, CA 90001" +210301,27in FHD Monitor,1,149.99,06/02/19 14:21,"153 Johnson St, Boston, MA 02215" +210302,USB-C Charging Cable,1,11.95,06/14/19 12:47,"344 9th St, San Francisco, CA 94016" +210303,Lightning Charging Cable,1,14.95,06/14/19 08:20,"589 Willow St, San Francisco, CA 94016" +210304,Lightning Charging Cable,1,14.95,06/08/19 13:49,"400 Center St, San Francisco, CA 94016" +210305,AAA Batteries (4-pack),1,2.99,06/28/19 21:12,"545 1st St, Los Angeles, CA 90001" +210306,Wired Headphones,1,11.99,06/26/19 10:17,"271 Center St, Portland, OR 97035" +210307,ThinkPad Laptop,1,999.99,06/27/19 17:35,"914 14th St, San Francisco, CA 94016" +210308,Apple Airpods Headphones,1,150,06/20/19 12:00,"334 Adams St, San Francisco, CA 94016" +210309,Lightning Charging Cable,1,14.95,06/17/19 19:03,"681 Elm St, Portland, OR 97035" +210310,Wired Headphones,1,11.99,06/26/19 21:18,"305 Johnson St, Portland, OR 97035" +210311,27in 4K Gaming Monitor,1,389.99,06/05/19 21:45,"945 Center St, Seattle, WA 98101" +210312,Apple Airpods Headphones,1,150,06/10/19 18:57,"990 Sunset St, San Francisco, CA 94016" +210313,Macbook Pro Laptop,1,1700,06/01/19 13:23,"6 Center St, Los Angeles, CA 90001" +210314,AA Batteries (4-pack),1,3.84,06/18/19 14:17,"589 Hickory St, Los Angeles, CA 90001" +210315,Flatscreen TV,1,300,06/08/19 10:17,"436 Wilson St, Seattle, WA 98101" +210316,USB-C Charging Cable,1,11.95,06/21/19 19:04,"664 6th St, San Francisco, CA 94016" +210317,Macbook Pro Laptop,1,1700,06/05/19 17:58,"181 1st St, Atlanta, GA 30301" +210318,USB-C Charging Cable,1,11.95,06/15/19 20:56,"891 Maple St, San Francisco, CA 94016" +210319,Wired Headphones,1,11.99,06/24/19 12:14,"513 14th St, San Francisco, CA 94016" +210320,Lightning Charging Cable,1,14.95,06/11/19 15:32,"864 Jackson St, Atlanta, GA 30301" +210321,iPhone,1,700,06/23/19 12:36,"951 Sunset St, Portland, OR 97035" +210322,ThinkPad Laptop,1,999.99,06/26/19 23:37,"632 Hickory St, Los Angeles, CA 90001" +210323,Wired Headphones,1,11.99,06/04/19 08:52,"650 14th St, Seattle, WA 98101" +210324,Apple Airpods Headphones,1,150,06/19/19 11:23,"473 Chestnut St, New York City, NY 10001" +210325,Apple Airpods Headphones,1,150,06/13/19 21:04,"156 Meadow St, New York City, NY 10001" +210326,Lightning Charging Cable,1,14.95,06/01/19 16:47,"184 Lakeview St, Dallas, TX 75001" +210327,Wired Headphones,1,11.99,06/14/19 22:50,"310 Elm St, New York City, NY 10001" +210328,Flatscreen TV,1,300,06/02/19 01:35,"99 Cedar St, San Francisco, CA 94016" +210329,27in 4K Gaming Monitor,1,389.99,06/05/19 03:54,"319 Highland St, Boston, MA 02215" +210330,34in Ultrawide Monitor,1,379.99,06/08/19 12:46,"993 Johnson St, San Francisco, CA 94016" +210331,Apple Airpods Headphones,1,150,06/02/19 19:58,"331 Hickory St, Austin, TX 73301" +210332,27in 4K Gaming Monitor,1,389.99,06/16/19 09:59,"797 Washington St, San Francisco, CA 94016" +210333,Flatscreen TV,1,300,06/06/19 14:08,"793 6th St, New York City, NY 10001" +210334,Bose SoundSport Headphones,1,99.99,06/15/19 19:35,"487 12th St, Portland, ME 04101" +210335,27in FHD Monitor,1,149.99,06/06/19 09:47,"605 North St, Portland, OR 97035" +210336,Wired Headphones,1,11.99,06/24/19 21:19,"864 Chestnut St, San Francisco, CA 94016" +210337,iPhone,1,700,06/15/19 20:49,"550 West St, Atlanta, GA 30301" +210338,Lightning Charging Cable,1,14.95,06/03/19 15:29,"535 Lake St, San Francisco, CA 94016" +210339,Apple Airpods Headphones,1,150,06/27/19 11:13,"180 West St, San Francisco, CA 94016" +210340,AAA Batteries (4-pack),1,2.99,06/03/19 21:20,"710 River St, San Francisco, CA 94016" +210341,Macbook Pro Laptop,1,1700,06/24/19 22:27,"282 River St, Austin, TX 73301" +210342,Apple Airpods Headphones,1,150,06/26/19 21:09,"997 Madison St, Seattle, WA 98101" +210343,ThinkPad Laptop,1,999.99,06/13/19 18:28,"235 9th St, Portland, ME 04101" +210344,Apple Airpods Headphones,1,150,06/12/19 21:51,"508 Highland St, Atlanta, GA 30301" +210345,USB-C Charging Cable,1,11.95,06/25/19 21:04,"275 Ridge St, Atlanta, GA 30301" +210346,iPhone,1,700,06/03/19 11:58,"611 Ridge St, San Francisco, CA 94016" +210347,Apple Airpods Headphones,1,150,06/25/19 14:18,"54 Johnson St, Dallas, TX 75001" +210348,iPhone,1,700,06/09/19 12:33,"246 Pine St, San Francisco, CA 94016" +210348,Wired Headphones,1,11.99,06/09/19 12:33,"246 Pine St, San Francisco, CA 94016" +210348,iPhone,1,700,06/09/19 12:33,"246 Pine St, San Francisco, CA 94016" +210349,USB-C Charging Cable,2,11.95,06/28/19 21:07,"676 Washington St, Boston, MA 02215" +210350,AA Batteries (4-pack),2,3.84,06/05/19 10:34,"16 North St, Los Angeles, CA 90001" +210351,Wired Headphones,1,11.99,06/19/19 17:31,"843 5th St, Seattle, WA 98101" +210352,27in FHD Monitor,1,149.99,06/11/19 18:12,"53 8th St, San Francisco, CA 94016" +210353,27in FHD Monitor,1,149.99,06/17/19 15:18,"407 Lincoln St, Seattle, WA 98101" +210354,AAA Batteries (4-pack),1,2.99,06/30/19 13:12,"641 2nd St, New York City, NY 10001" +210355,USB-C Charging Cable,1,11.95,06/02/19 19:47,"720 9th St, Dallas, TX 75001" +210356,AAA Batteries (4-pack),1,2.99,06/29/19 12:30,"888 Jackson St, Los Angeles, CA 90001" +210357,AA Batteries (4-pack),1,3.84,06/11/19 13:20,"219 Johnson St, New York City, NY 10001" +,,,,, +210358,AAA Batteries (4-pack),1,2.99,06/17/19 09:05,"918 Meadow St, Dallas, TX 75001" +210359,Bose SoundSport Headphones,1,99.99,06/01/19 07:51,"170 Jackson St, Seattle, WA 98101" +210360,Wired Headphones,1,11.99,06/01/19 12:52,"508 2nd St, Seattle, WA 98101" +210361,USB-C Charging Cable,1,11.95,06/19/19 02:04,"614 13th St, San Francisco, CA 94016" +210362,Wired Headphones,1,11.99,06/04/19 12:56,"525 Hickory St, Atlanta, GA 30301" +210363,Lightning Charging Cable,1,14.95,06/28/19 20:57,"808 5th St, San Francisco, CA 94016" +210364,Apple Airpods Headphones,1,150,06/21/19 18:24,"182 Lincoln St, Boston, MA 02215" +210365,Apple Airpods Headphones,1,150,06/15/19 21:04,"22 Forest St, Atlanta, GA 30301" +210366,Bose SoundSport Headphones,1,99.99,06/26/19 19:04,"699 Madison St, Los Angeles, CA 90001" +210367,Lightning Charging Cable,1,14.95,06/16/19 18:12,"332 Adams St, Atlanta, GA 30301" +210368,AAA Batteries (4-pack),2,2.99,06/02/19 19:34,"505 Cherry St, New York City, NY 10001" +210369,Flatscreen TV,1,300,06/21/19 11:41,"780 Meadow St, San Francisco, CA 94016" +210370,AAA Batteries (4-pack),2,2.99,06/19/19 00:00,"238 River St, Atlanta, GA 30301" +210371,Lightning Charging Cable,1,14.95,06/07/19 15:18,"471 9th St, Los Angeles, CA 90001" +210372,20in Monitor,1,109.99,06/20/19 08:19,"184 1st St, New York City, NY 10001" +210373,ThinkPad Laptop,1,999.99,06/27/19 12:10,"212 6th St, Portland, OR 97035" +210374,Vareebadd Phone,1,400,06/03/19 22:54,"981 Meadow St, Atlanta, GA 30301" +210375,AAA Batteries (4-pack),3,2.99,06/07/19 14:56,"500 Chestnut St, New York City, NY 10001" +210375,AAA Batteries (4-pack),1,2.99,06/07/19 14:56,"500 Chestnut St, New York City, NY 10001" +210376,34in Ultrawide Monitor,1,379.99,06/12/19 12:16,"629 11th St, Seattle, WA 98101" +210377,AAA Batteries (4-pack),3,2.99,06/06/19 12:54,"27 5th St, San Francisco, CA 94016" +210378,Google Phone,1,600,06/05/19 21:54,"629 5th St, Boston, MA 02215" +210379,Apple Airpods Headphones,1,150,06/11/19 15:59,"745 1st St, Boston, MA 02215" +210380,Macbook Pro Laptop,1,1700,06/04/19 16:58,"195 Highland St, Dallas, TX 75001" +210381,Lightning Charging Cable,1,14.95,06/13/19 14:06,"736 Chestnut St, San Francisco, CA 94016" +210382,AAA Batteries (4-pack),1,2.99,06/20/19 11:19,"844 14th St, New York City, NY 10001" +210383,Bose SoundSport Headphones,1,99.99,06/14/19 20:38,"70 Chestnut St, Portland, OR 97035" +210384,Lightning Charging Cable,1,14.95,06/11/19 11:59,"11 11th St, Austin, TX 73301" +210385,AAA Batteries (4-pack),3,2.99,06/20/19 00:08,"970 Jackson St, Portland, OR 97035" +210386,AA Batteries (4-pack),1,3.84,06/08/19 20:43,"383 North St, San Francisco, CA 94016" +210387,20in Monitor,1,109.99,06/01/19 19:24,"566 14th St, San Francisco, CA 94016" +210388,USB-C Charging Cable,1,11.95,06/10/19 20:51,"978 Jackson St, Portland, OR 97035" +210389,Macbook Pro Laptop,1,1700,06/28/19 13:35,"90 11th St, New York City, NY 10001" +210390,USB-C Charging Cable,2,11.95,06/15/19 18:25,"208 Highland St, New York City, NY 10001" +210391,LG Washing Machine,1,600.0,06/16/19 18:55,"126 10th St, New York City, NY 10001" +210392,USB-C Charging Cable,1,11.95,06/12/19 01:58,"898 2nd St, Dallas, TX 75001" +210393,Wired Headphones,1,11.99,06/28/19 18:56,"22 Meadow St, San Francisco, CA 94016" +210394,AA Batteries (4-pack),1,3.84,06/28/19 08:08,"95 Washington St, San Francisco, CA 94016" +210395,USB-C Charging Cable,1,11.95,06/18/19 20:36,"826 Willow St, Los Angeles, CA 90001" +210396,AA Batteries (4-pack),1,3.84,06/21/19 22:06,"134 Ridge St, Los Angeles, CA 90001" +210397,Wired Headphones,1,11.99,06/19/19 09:03,"376 Center St, Los Angeles, CA 90001" +210398,Lightning Charging Cable,1,14.95,06/21/19 14:23,"831 Elm St, New York City, NY 10001" +210399,iPhone,1,700,06/28/19 22:31,"980 Spruce St, Boston, MA 02215" +210400,34in Ultrawide Monitor,1,379.99,06/02/19 08:16,"639 Spruce St, Los Angeles, CA 90001" +210401,AA Batteries (4-pack),1,3.84,06/04/19 15:29,"113 Chestnut St, San Francisco, CA 94016" +210402,AAA Batteries (4-pack),4,2.99,06/29/19 17:23,"413 Ridge St, New York City, NY 10001" +210403,AAA Batteries (4-pack),1,2.99,06/15/19 17:10,"941 River St, San Francisco, CA 94016" +210404,27in 4K Gaming Monitor,1,389.99,06/16/19 15:39,"845 Hill St, Portland, OR 97035" +210405,Lightning Charging Cable,1,14.95,06/25/19 07:23,"958 Lincoln St, San Francisco, CA 94016" +210406,Flatscreen TV,1,300,06/22/19 20:57,"969 5th St, New York City, NY 10001" +210407,Bose SoundSport Headphones,1,99.99,06/13/19 19:59,"501 12th St, Portland, OR 97035" +210408,Bose SoundSport Headphones,1,99.99,06/30/19 16:28,"120 Elm St, Los Angeles, CA 90001" +210409,Wired Headphones,1,11.99,06/27/19 16:30,"245 Washington St, Boston, MA 02215" +210410,Google Phone,1,600,06/10/19 08:59,"183 1st St, Los Angeles, CA 90001" +210411,Bose SoundSport Headphones,1,99.99,06/11/19 12:15,"630 2nd St, San Francisco, CA 94016" +210412,USB-C Charging Cable,1,11.95,06/06/19 16:44,"232 11th St, San Francisco, CA 94016" +210413,Macbook Pro Laptop,1,1700,06/14/19 19:48,"916 Cherry St, Los Angeles, CA 90001" +210414,27in FHD Monitor,1,149.99,06/13/19 14:25,"284 5th St, New York City, NY 10001" +210415,AAA Batteries (4-pack),2,2.99,06/11/19 19:10,"415 Lincoln St, Portland, OR 97035" +210416,Lightning Charging Cable,1,14.95,06/04/19 17:28,"671 Main St, San Francisco, CA 94016" +210417,AAA Batteries (4-pack),1,2.99,06/24/19 09:11,"639 Hill St, Boston, MA 02215" +210418,Macbook Pro Laptop,1,1700,06/11/19 14:21,"727 Center St, New York City, NY 10001" +210419,Apple Airpods Headphones,1,150,06/22/19 14:10,"135 2nd St, Boston, MA 02215" +210420,USB-C Charging Cable,1,11.95,06/18/19 21:44,"691 River St, Los Angeles, CA 90001" +210421,Lightning Charging Cable,1,14.95,06/09/19 11:13,"39 River St, San Francisco, CA 94016" +210422,27in FHD Monitor,1,149.99,06/17/19 20:12,"387 Johnson St, Los Angeles, CA 90001" +210423,Lightning Charging Cable,1,14.95,06/30/19 23:59,"784 Hickory St, San Francisco, CA 94016" +210424,Lightning Charging Cable,1,14.95,06/08/19 22:41,"840 11th St, New York City, NY 10001" +210425,ThinkPad Laptop,1,999.99,06/26/19 15:30,"105 Chestnut St, Los Angeles, CA 90001" +210426,Lightning Charging Cable,1,14.95,06/28/19 18:00,"21 Adams St, San Francisco, CA 94016" +210427,USB-C Charging Cable,1,11.95,06/06/19 10:54,"13 Lincoln St, Seattle, WA 98101" +210428,34in Ultrawide Monitor,1,379.99,06/29/19 19:06,"7 South St, New York City, NY 10001" +210429,AAA Batteries (4-pack),1,2.99,06/14/19 12:25,"700 Washington St, San Francisco, CA 94016" +210430,iPhone,1,700,06/24/19 19:20,"588 Meadow St, Austin, TX 73301" +210431,AA Batteries (4-pack),1,3.84,06/03/19 02:17,"138 Adams St, Dallas, TX 75001" +210432,USB-C Charging Cable,1,11.95,06/25/19 19:13,"413 Ridge St, Portland, OR 97035" +210433,LG Washing Machine,1,600.0,06/02/19 15:03,"705 Elm St, Atlanta, GA 30301" +210434,Flatscreen TV,1,300,06/11/19 08:55,"114 South St, Los Angeles, CA 90001" +210435,AAA Batteries (4-pack),2,2.99,06/13/19 11:42,"738 Madison St, Los Angeles, CA 90001" +210436,Apple Airpods Headphones,1,150,06/27/19 18:47,"899 Jackson St, San Francisco, CA 94016" +210437,AAA Batteries (4-pack),1,2.99,06/27/19 17:46,"265 5th St, San Francisco, CA 94016" +210438,USB-C Charging Cable,1,11.95,06/08/19 14:55,"735 Lake St, San Francisco, CA 94016" +210439,27in FHD Monitor,1,149.99,06/25/19 16:41,"370 Adams St, San Francisco, CA 94016" +210440,AAA Batteries (4-pack),3,2.99,06/15/19 21:22,"3 12th St, Boston, MA 02215" +210441,USB-C Charging Cable,1,11.95,06/16/19 00:54,"812 14th St, Dallas, TX 75001" +210442,Apple Airpods Headphones,1,150,06/12/19 17:57,"503 Church St, Seattle, WA 98101" +210443,Wired Headphones,1,11.99,06/07/19 14:40,"975 Wilson St, Los Angeles, CA 90001" +210444,USB-C Charging Cable,1,11.95,06/08/19 21:00,"849 Ridge St, Boston, MA 02215" +210445,Apple Airpods Headphones,1,150,06/08/19 17:59,"240 1st St, Los Angeles, CA 90001" +210446,Lightning Charging Cable,1,14.95,06/10/19 12:30,"631 Walnut St, Austin, TX 73301" +210447,Wired Headphones,1,11.99,06/25/19 11:43,"385 10th St, Dallas, TX 75001" +210448,AAA Batteries (4-pack),3,2.99,06/08/19 03:16,"458 11th St, Seattle, WA 98101" +210449,Wired Headphones,1,11.99,06/16/19 08:52,"426 Pine St, San Francisco, CA 94016" +210450,Apple Airpods Headphones,1,150,06/11/19 15:54,"497 Maple St, Dallas, TX 75001" +210451,27in 4K Gaming Monitor,1,389.99,06/10/19 10:44,"652 6th St, New York City, NY 10001" +210452,AA Batteries (4-pack),1,3.84,06/20/19 10:43,"897 Wilson St, New York City, NY 10001" +210453,Bose SoundSport Headphones,1,99.99,06/01/19 18:30,"971 6th St, San Francisco, CA 94016" +210454,AAA Batteries (4-pack),3,2.99,06/29/19 14:26,"351 Ridge St, Boston, MA 02215" +210455,AA Batteries (4-pack),1,3.84,06/28/19 15:18,"533 Hickory St, Boston, MA 02215" +210456,USB-C Charging Cable,1,11.95,06/30/19 18:43,"192 6th St, Los Angeles, CA 90001" +210457,Apple Airpods Headphones,1,150,06/08/19 09:34,"814 Wilson St, San Francisco, CA 94016" +210458,USB-C Charging Cable,1,11.95,06/12/19 22:50,"216 1st St, Seattle, WA 98101" +210459,AA Batteries (4-pack),1,3.84,06/16/19 21:05,"122 Lake St, Los Angeles, CA 90001" +210460,iPhone,1,700,06/03/19 19:49,"669 12th St, Los Angeles, CA 90001" +210461,Wired Headphones,1,11.99,06/27/19 12:57,"931 Lincoln St, New York City, NY 10001" +210462,AAA Batteries (4-pack),1,2.99,06/19/19 07:16,"589 Lincoln St, Los Angeles, CA 90001" +210463,ThinkPad Laptop,1,999.99,06/17/19 18:06,"653 10th St, San Francisco, CA 94016" +210464,AA Batteries (4-pack),1,3.84,06/22/19 17:47,"310 Walnut St, Atlanta, GA 30301" +210465,34in Ultrawide Monitor,1,379.99,06/12/19 09:49,"794 Lincoln St, Boston, MA 02215" +210466,Macbook Pro Laptop,1,1700,06/14/19 21:10,"525 11th St, San Francisco, CA 94016" +210467,USB-C Charging Cable,1,11.95,06/07/19 22:00,"497 13th St, Austin, TX 73301" +210468,Wired Headphones,1,11.99,06/27/19 15:25,"229 Chestnut St, New York City, NY 10001" +210469,USB-C Charging Cable,1,11.95,06/03/19 10:58,"198 Church St, Portland, OR 97035" +210470,USB-C Charging Cable,1,11.95,06/15/19 13:04,"346 Main St, Atlanta, GA 30301" +210471,AA Batteries (4-pack),1,3.84,06/12/19 22:10,"437 Willow St, Los Angeles, CA 90001" +210472,27in FHD Monitor,1,149.99,06/19/19 23:18,"295 Maple St, Boston, MA 02215" +210473,Macbook Pro Laptop,1,1700,06/01/19 05:32,"475 Wilson St, San Francisco, CA 94016" +210474,Apple Airpods Headphones,1,150,06/20/19 00:50,"965 12th St, New York City, NY 10001" +210475,Apple Airpods Headphones,1,150,06/21/19 18:39,"55 7th St, San Francisco, CA 94016" +210476,AAA Batteries (4-pack),1,2.99,06/19/19 14:07,"281 River St, Los Angeles, CA 90001" +210477,Lightning Charging Cable,1,14.95,06/26/19 12:50,"231 Walnut St, San Francisco, CA 94016" +210478,Bose SoundSport Headphones,1,99.99,06/19/19 21:28,"215 Jefferson St, Boston, MA 02215" +210479,LG Washing Machine,1,600.0,06/08/19 07:44,"4 Hill St, Los Angeles, CA 90001" +210480,AA Batteries (4-pack),1,3.84,06/19/19 08:24,"319 13th St, Atlanta, GA 30301" +210481,Lightning Charging Cable,1,14.95,06/22/19 22:37,"820 5th St, New York City, NY 10001" +210482,Lightning Charging Cable,1,14.95,06/04/19 18:55,"424 Main St, Boston, MA 02215" +210483,34in Ultrawide Monitor,1,379.99,06/09/19 15:10,"417 Lakeview St, Atlanta, GA 30301" +210484,AAA Batteries (4-pack),1,2.99,06/21/19 16:11,"919 12th St, Dallas, TX 75001" +210485,27in 4K Gaming Monitor,1,389.99,06/08/19 01:17,"62 Cedar St, Atlanta, GA 30301" +210486,Wired Headphones,1,11.99,06/02/19 10:57,"473 14th St, San Francisco, CA 94016" +210487,Apple Airpods Headphones,1,150,06/01/19 10:28,"574 Wilson St, San Francisco, CA 94016" +210488,Bose SoundSport Headphones,1,99.99,06/02/19 11:02,"260 Pine St, Boston, MA 02215" +210489,AAA Batteries (4-pack),3,2.99,06/22/19 15:53,"885 Madison St, Boston, MA 02215" +210490,Macbook Pro Laptop,1,1700,06/19/19 20:03,"969 Spruce St, San Francisco, CA 94016" +210491,Lightning Charging Cable,1,14.95,06/24/19 07:35,"690 5th St, Los Angeles, CA 90001" +210492,34in Ultrawide Monitor,1,379.99,06/12/19 07:55,"897 Lincoln St, Los Angeles, CA 90001" +210493,Wired Headphones,1,11.99,07/01/19 01:14,"706 Cedar St, New York City, NY 10001" +210494,USB-C Charging Cable,1,11.95,06/06/19 23:07,"920 Madison St, San Francisco, CA 94016" +210495,Lightning Charging Cable,1,14.95,06/01/19 19:41,"799 Sunset St, Boston, MA 02215" +210496,Lightning Charging Cable,1,14.95,06/09/19 07:57,"96 Hickory St, Boston, MA 02215" +210497,Wired Headphones,1,11.99,06/01/19 21:18,"542 Cedar St, Los Angeles, CA 90001" +210498,27in 4K Gaming Monitor,1,389.99,06/25/19 17:18,"851 6th St, Dallas, TX 75001" +210499,Wired Headphones,1,11.99,06/30/19 18:37,"209 Johnson St, Portland, OR 97035" +210500,Apple Airpods Headphones,1,150,06/23/19 11:19,"695 6th St, San Francisco, CA 94016" +210501,27in 4K Gaming Monitor,1,389.99,06/21/19 18:53,"316 Lakeview St, New York City, NY 10001" +210502,Bose SoundSport Headphones,1,99.99,06/04/19 22:04,"981 Pine St, Atlanta, GA 30301" +210503,USB-C Charging Cable,1,11.95,06/27/19 17:51,"188 Washington St, Boston, MA 02215" +210504,27in FHD Monitor,1,149.99,06/11/19 15:22,"257 Sunset St, San Francisco, CA 94016" +210505,AA Batteries (4-pack),1,3.84,06/02/19 22:34,"718 Cedar St, Los Angeles, CA 90001" +210506,Wired Headphones,1,11.99,06/18/19 11:08,"262 Elm St, Austin, TX 73301" +210507,Bose SoundSport Headphones,1,99.99,06/07/19 10:04,"966 Park St, Seattle, WA 98101" +210508,Wired Headphones,3,11.99,06/09/19 04:32,"99 Highland St, Boston, MA 02215" +210509,Apple Airpods Headphones,1,150,06/13/19 17:00,"139 Cherry St, San Francisco, CA 94016" +210510,27in FHD Monitor,1,149.99,06/15/19 10:44,"918 Cherry St, Los Angeles, CA 90001" +210511,AAA Batteries (4-pack),1,2.99,06/28/19 17:51,"986 North St, Los Angeles, CA 90001" +210512,USB-C Charging Cable,1,11.95,06/14/19 19:10,"496 Pine St, Atlanta, GA 30301" +210513,Apple Airpods Headphones,1,150,06/20/19 11:26,"642 Lincoln St, San Francisco, CA 94016" +210514,Macbook Pro Laptop,1,1700,06/27/19 12:53,"421 9th St, Seattle, WA 98101" +210515,USB-C Charging Cable,2,11.95,06/10/19 08:22,"873 Lincoln St, Los Angeles, CA 90001" +210516,Flatscreen TV,1,300,06/10/19 10:24,"271 9th St, Seattle, WA 98101" +210517,AA Batteries (4-pack),2,3.84,06/20/19 09:25,"501 Jefferson St, Los Angeles, CA 90001" +210518,Apple Airpods Headphones,1,150,06/04/19 13:45,"315 Willow St, Seattle, WA 98101" +210519,Lightning Charging Cable,1,14.95,06/09/19 14:13,"33 12th St, San Francisco, CA 94016" +210520,AAA Batteries (4-pack),2,2.99,06/27/19 10:22,"474 Hickory St, New York City, NY 10001" +210521,Lightning Charging Cable,1,14.95,06/30/19 14:47,"133 Highland St, Los Angeles, CA 90001" +210522,27in 4K Gaming Monitor,1,389.99,06/05/19 12:48,"628 Cedar St, San Francisco, CA 94016" +210523,Lightning Charging Cable,1,14.95,06/16/19 12:04,"337 Main St, New York City, NY 10001" +210524,Bose SoundSport Headphones,1,99.99,06/01/19 22:29,"646 Forest St, Seattle, WA 98101" +210525,27in FHD Monitor,1,149.99,06/21/19 09:39,"5 Maple St, San Francisco, CA 94016" +210526,iPhone,1,700,06/13/19 15:28,"69 5th St, San Francisco, CA 94016" +210527,Lightning Charging Cable,2,14.95,06/05/19 10:03,"676 Walnut St, Los Angeles, CA 90001" +210528,AAA Batteries (4-pack),4,2.99,06/05/19 09:38,"10 11th St, Los Angeles, CA 90001" +210529,Bose SoundSport Headphones,1,99.99,06/08/19 07:35,"395 South St, Boston, MA 02215" +210530,Apple Airpods Headphones,1,150,06/03/19 13:28,"772 Maple St, New York City, NY 10001" +210531,Apple Airpods Headphones,1,150,06/06/19 09:43,"80 Lakeview St, San Francisco, CA 94016" +210532,Wired Headphones,1,11.99,06/21/19 09:49,"468 Lake St, San Francisco, CA 94016" +210533,Wired Headphones,1,11.99,06/12/19 14:24,"623 Maple St, Austin, TX 73301" +210534,USB-C Charging Cable,1,11.95,06/09/19 16:15,"825 8th St, San Francisco, CA 94016" +210535,Apple Airpods Headphones,1,150,06/27/19 09:52,"88 Hickory St, San Francisco, CA 94016" +210536,Wired Headphones,1,11.99,06/30/19 21:43,"287 Wilson St, Atlanta, GA 30301" +210537,USB-C Charging Cable,1,11.95,06/29/19 18:36,"981 Walnut St, Austin, TX 73301" +210538,34in Ultrawide Monitor,1,379.99,06/16/19 19:25,"493 North St, San Francisco, CA 94016" +210539,Macbook Pro Laptop,1,1700,06/17/19 13:12,"614 Jefferson St, Los Angeles, CA 90001" +210540,AA Batteries (4-pack),1,3.84,06/15/19 19:11,"520 Maple St, Atlanta, GA 30301" +210541,AAA Batteries (4-pack),1,2.99,06/28/19 19:02,"672 4th St, Boston, MA 02215" +210542,Bose SoundSport Headphones,1,99.99,06/18/19 10:49,"849 10th St, Austin, TX 73301" +210543,Wired Headphones,1,11.99,06/08/19 12:08,"517 2nd St, San Francisco, CA 94016" +210544,27in 4K Gaming Monitor,1,389.99,06/10/19 11:38,"179 6th St, San Francisco, CA 94016" +210545,AAA Batteries (4-pack),2,2.99,06/15/19 11:10,"688 Hickory St, Los Angeles, CA 90001" +210546,Apple Airpods Headphones,1,150,06/20/19 16:10,"835 Madison St, Boston, MA 02215" +210547,AA Batteries (4-pack),1,3.84,06/07/19 06:31,"388 11th St, Dallas, TX 75001" +210547,Lightning Charging Cable,1,14.95,06/07/19 06:31,"388 11th St, Dallas, TX 75001" +210548,Flatscreen TV,1,300,06/03/19 11:47,"13 Lincoln St, Los Angeles, CA 90001" +210549,Wired Headphones,1,11.99,06/03/19 10:29,"12 Ridge St, Los Angeles, CA 90001" +210550,iPhone,1,700,06/18/19 16:44,"500 14th St, Los Angeles, CA 90001" +210551,USB-C Charging Cable,1,11.95,06/27/19 20:52,"606 14th St, Atlanta, GA 30301" +210552,Wired Headphones,1,11.99,06/21/19 12:16,"818 Willow St, Boston, MA 02215" +210553,Wired Headphones,1,11.99,06/02/19 17:07,"943 13th St, New York City, NY 10001" +210554,Macbook Pro Laptop,1,1700,06/10/19 12:04,"179 7th St, Los Angeles, CA 90001" +210555,Lightning Charging Cable,2,14.95,06/24/19 20:22,"389 West St, Seattle, WA 98101" +210556,ThinkPad Laptop,1,999.99,06/05/19 17:38,"593 South St, New York City, NY 10001" +210557,AAA Batteries (4-pack),1,2.99,06/14/19 08:50,"169 South St, San Francisco, CA 94016" +210558,Apple Airpods Headphones,1,150,06/30/19 14:01,"757 Church St, San Francisco, CA 94016" +210559,USB-C Charging Cable,1,11.95,06/30/19 12:28,"693 Jefferson St, Austin, TX 73301" +210560,Lightning Charging Cable,1,14.95,06/01/19 09:45,"541 Walnut St, San Francisco, CA 94016" +210561,AA Batteries (4-pack),2,3.84,06/12/19 10:28,"157 Lincoln St, San Francisco, CA 94016" +210562,AAA Batteries (4-pack),2,2.99,06/22/19 14:13,"374 Maple St, San Francisco, CA 94016" +210563,LG Dryer,1,600.0,06/05/19 15:15,"759 8th St, Dallas, TX 75001" +210564,USB-C Charging Cable,1,11.95,06/14/19 14:55,"423 7th St, Boston, MA 02215" +210565,AA Batteries (4-pack),1,3.84,06/24/19 15:53,"903 Washington St, San Francisco, CA 94016" +210566,Google Phone,1,600,06/26/19 22:53,"464 Spruce St, Boston, MA 02215" +210567,Macbook Pro Laptop,1,1700,06/01/19 22:03,"360 Chestnut St, San Francisco, CA 94016" +210568,Wired Headphones,1,11.99,06/01/19 15:37,"405 Chestnut St, Los Angeles, CA 90001" +210569,ThinkPad Laptop,1,999.99,06/01/19 14:19,"239 8th St, Boston, MA 02215" +210570,Apple Airpods Headphones,1,150,06/29/19 10:38,"144 West St, Dallas, TX 75001" +210571,AAA Batteries (4-pack),1,2.99,06/03/19 20:23,"886 Madison St, Boston, MA 02215" +210572,AAA Batteries (4-pack),1,2.99,06/15/19 21:20,"634 Washington St, San Francisco, CA 94016" +210573,Wired Headphones,1,11.99,06/13/19 12:28,"408 14th St, San Francisco, CA 94016" +210574,Lightning Charging Cable,1,14.95,06/18/19 18:29,"41 Lake St, New York City, NY 10001" +210575,USB-C Charging Cable,1,11.95,06/30/19 08:49,"252 Walnut St, Atlanta, GA 30301" +210575,USB-C Charging Cable,1,11.95,06/30/19 08:49,"252 Walnut St, Atlanta, GA 30301" +210576,Google Phone,1,600,06/01/19 18:14,"502 Church St, Los Angeles, CA 90001" +210577,iPhone,1,700,06/23/19 18:40,"175 Park St, Atlanta, GA 30301" +210578,Wired Headphones,1,11.99,06/01/19 20:49,"691 Cherry St, Portland, OR 97035" +210579,Wired Headphones,1,11.99,06/18/19 22:31,"447 Meadow St, San Francisco, CA 94016" +210580,Apple Airpods Headphones,1,150,06/21/19 20:12,"603 Washington St, Boston, MA 02215" +,,,,, +210581,iPhone,1,700,06/29/19 21:35,"536 Walnut St, Portland, OR 97035" +210581,Lightning Charging Cable,1,14.95,06/29/19 21:35,"536 Walnut St, Portland, OR 97035" +210582,iPhone,1,700,06/28/19 22:39,"945 2nd St, Portland, OR 97035" +210582,Lightning Charging Cable,1,14.95,06/28/19 22:39,"945 2nd St, Portland, OR 97035" +210583,Google Phone,1,600,06/27/19 21:56,"234 Wilson St, New York City, NY 10001" +210584,Bose SoundSport Headphones,1,99.99,06/30/19 22:08,"369 Sunset St, Boston, MA 02215" +210585,Wired Headphones,1,11.99,06/04/19 17:40,"422 Lincoln St, San Francisco, CA 94016" +210586,USB-C Charging Cable,1,11.95,06/03/19 21:42,"777 10th St, Los Angeles, CA 90001" +210587,AA Batteries (4-pack),1,3.84,06/17/19 14:51,"464 9th St, Boston, MA 02215" +210588,AA Batteries (4-pack),1,3.84,06/17/19 14:26,"943 River St, San Francisco, CA 94016" +210589,Google Phone,1,600,06/29/19 13:55,"706 2nd St, Boston, MA 02215" +210590,AA Batteries (4-pack),2,3.84,06/28/19 10:56,"331 7th St, Boston, MA 02215" +210591,AA Batteries (4-pack),1,3.84,06/24/19 14:29,"688 Sunset St, Los Angeles, CA 90001" +210592,20in Monitor,1,109.99,06/10/19 21:56,"686 Cherry St, New York City, NY 10001" +210593,USB-C Charging Cable,1,11.95,06/13/19 20:17,"182 West St, Los Angeles, CA 90001" +210594,USB-C Charging Cable,1,11.95,06/23/19 21:35,"810 9th St, Dallas, TX 75001" +210595,Macbook Pro Laptop,1,1700,06/23/19 09:04,"9 Jackson St, San Francisco, CA 94016" +210596,AA Batteries (4-pack),1,3.84,06/11/19 18:15,"23 6th St, Los Angeles, CA 90001" +210597,Apple Airpods Headphones,1,150,06/09/19 13:23,"222 4th St, San Francisco, CA 94016" +210598,USB-C Charging Cable,1,11.95,06/16/19 01:32,"205 Ridge St, Seattle, WA 98101" +210599,27in FHD Monitor,1,149.99,06/11/19 23:24,"565 Sunset St, San Francisco, CA 94016" +210600,USB-C Charging Cable,1,11.95,06/02/19 08:14,"399 Sunset St, New York City, NY 10001" +210601,Apple Airpods Headphones,1,150,06/16/19 18:09,"888 Wilson St, New York City, NY 10001" +210602,34in Ultrawide Monitor,1,379.99,06/02/19 13:23,"233 Cedar St, Boston, MA 02215" +210603,USB-C Charging Cable,1,11.95,06/17/19 09:57,"336 10th St, Atlanta, GA 30301" +210604,Wired Headphones,1,11.99,06/05/19 17:57,"2 River St, Atlanta, GA 30301" +210605,34in Ultrawide Monitor,1,379.99,06/01/19 10:22,"97 Jackson St, San Francisco, CA 94016" +210606,Flatscreen TV,1,300,06/21/19 23:40,"194 Spruce St, Atlanta, GA 30301" +210607,ThinkPad Laptop,1,999.99,06/12/19 13:16,"912 Adams St, San Francisco, CA 94016" +210608,Google Phone,1,600,06/14/19 05:49,"46 6th St, Los Angeles, CA 90001" +210608,USB-C Charging Cable,1,11.95,06/14/19 05:49,"46 6th St, Los Angeles, CA 90001" +210609,USB-C Charging Cable,1,11.95,06/14/19 20:47,"386 10th St, New York City, NY 10001" +210610,Wired Headphones,1,11.99,06/27/19 20:23,"934 Church St, San Francisco, CA 94016" +210611,Lightning Charging Cable,1,14.95,06/25/19 13:42,"822 Chestnut St, Boston, MA 02215" +210612,AAA Batteries (4-pack),1,2.99,06/15/19 11:52,"199 Washington St, Austin, TX 73301" +210613,27in 4K Gaming Monitor,1,389.99,06/05/19 17:07,"511 Ridge St, New York City, NY 10001" +210614,Wired Headphones,1,11.99,06/17/19 22:19,"469 Washington St, Austin, TX 73301" +210615,27in FHD Monitor,1,149.99,06/14/19 11:57,"418 Spruce St, Los Angeles, CA 90001" +210616,Lightning Charging Cable,1,14.95,06/18/19 22:58,"540 Park St, Los Angeles, CA 90001" +210617,USB-C Charging Cable,2,11.95,06/04/19 16:40,"197 North St, Portland, OR 97035" +210618,Lightning Charging Cable,1,14.95,06/30/19 13:19,"170 Church St, San Francisco, CA 94016" +210619,Wired Headphones,1,11.99,06/07/19 18:55,"416 8th St, New York City, NY 10001" +210620,27in FHD Monitor,1,149.99,06/09/19 12:18,"480 Hill St, Dallas, TX 75001" +210621,Apple Airpods Headphones,1,150,06/01/19 08:12,"127 Cherry St, Seattle, WA 98101" +210622,Wired Headphones,1,11.99,06/19/19 16:27,"828 Dogwood St, San Francisco, CA 94016" +210623,Google Phone,1,600,06/12/19 12:20,"398 Washington St, Los Angeles, CA 90001" +210624,USB-C Charging Cable,1,11.95,06/03/19 18:13,"307 Jackson St, Boston, MA 02215" +210625,AAA Batteries (4-pack),1,2.99,06/22/19 20:14,"248 Hill St, Austin, TX 73301" +210626,USB-C Charging Cable,1,11.95,06/04/19 20:46,"982 Walnut St, Los Angeles, CA 90001" +210627,Bose SoundSport Headphones,1,99.99,06/16/19 20:18,"513 Ridge St, San Francisco, CA 94016" +210628,USB-C Charging Cable,1,11.95,06/23/19 13:22,"223 Lake St, Los Angeles, CA 90001" +210629,Lightning Charging Cable,1,14.95,06/10/19 18:59,"879 Cherry St, Los Angeles, CA 90001" +210630,Wired Headphones,1,11.99,06/30/19 02:18,"909 Pine St, Boston, MA 02215" +210631,Wired Headphones,1,11.99,06/24/19 15:29,"621 Washington St, San Francisco, CA 94016" +210632,AAA Batteries (4-pack),2,2.99,06/15/19 09:37,"745 7th St, San Francisco, CA 94016" +210633,27in 4K Gaming Monitor,1,389.99,06/22/19 20:20,"936 Hill St, Los Angeles, CA 90001" +210634,Google Phone,1,600,06/21/19 19:43,"890 River St, Seattle, WA 98101" +210635,Wired Headphones,1,11.99,06/09/19 23:43,"9 Adams St, Boston, MA 02215" +210636,USB-C Charging Cable,1,11.95,06/21/19 11:18,"911 Highland St, Los Angeles, CA 90001" +210637,Bose SoundSport Headphones,1,99.99,06/23/19 23:47,"959 Spruce St, Boston, MA 02215" +210638,27in 4K Gaming Monitor,1,389.99,06/25/19 20:22,"721 Dogwood St, Los Angeles, CA 90001" +210639,Wired Headphones,1,11.99,06/22/19 08:54,"8 Church St, New York City, NY 10001" +210640,34in Ultrawide Monitor,1,379.99,06/30/19 14:46,"773 Hill St, Boston, MA 02215" +210641,27in 4K Gaming Monitor,1,389.99,06/07/19 08:45,"27 8th St, Boston, MA 02215" +210642,Wired Headphones,1,11.99,06/28/19 19:50,"148 7th St, Atlanta, GA 30301" +210643,Bose SoundSport Headphones,1,99.99,06/17/19 16:49,"125 South St, Los Angeles, CA 90001" +210644,27in 4K Gaming Monitor,1,389.99,06/09/19 06:02,"873 Dogwood St, Boston, MA 02215" +210645,Flatscreen TV,1,300,06/16/19 10:01,"404 2nd St, Los Angeles, CA 90001" +210646,Wired Headphones,1,11.99,06/19/19 20:36,"230 Ridge St, Boston, MA 02215" +210647,USB-C Charging Cable,1,11.95,06/04/19 10:04,"798 Jackson St, Seattle, WA 98101" +210648,Lightning Charging Cable,1,14.95,06/29/19 07:27,"171 Spruce St, Dallas, TX 75001" +210649,USB-C Charging Cable,1,11.95,06/17/19 08:39,"55 Cherry St, Boston, MA 02215" +210650,AA Batteries (4-pack),1,3.84,06/10/19 23:21,"750 Sunset St, Dallas, TX 75001" +210651,Macbook Pro Laptop,1,1700,06/26/19 18:45,"188 Church St, San Francisco, CA 94016" +210652,27in FHD Monitor,1,149.99,06/04/19 18:08,"339 Walnut St, San Francisco, CA 94016" +210652,Google Phone,1,600,06/04/19 18:08,"339 Walnut St, San Francisco, CA 94016" +210653,Bose SoundSport Headphones,1,99.99,06/02/19 22:15,"860 Church St, Seattle, WA 98101" +210654,USB-C Charging Cable,1,11.95,06/21/19 12:03,"717 South St, Seattle, WA 98101" +210655,Apple Airpods Headphones,1,150,06/10/19 22:28,"193 9th St, San Francisco, CA 94016" +210656,Wired Headphones,1,11.99,06/18/19 18:12,"541 Forest St, Austin, TX 73301" +210657,USB-C Charging Cable,1,11.95,06/26/19 08:06,"725 14th St, New York City, NY 10001" +210658,27in 4K Gaming Monitor,1,389.99,06/30/19 13:39,"909 Ridge St, San Francisco, CA 94016" +210658,Apple Airpods Headphones,1,150,06/30/19 13:39,"909 Ridge St, San Francisco, CA 94016" +210659,AA Batteries (4-pack),1,3.84,06/07/19 20:43,"705 Wilson St, San Francisco, CA 94016" +210660,Bose SoundSport Headphones,1,99.99,06/02/19 18:19,"428 9th St, Portland, OR 97035" +210661,USB-C Charging Cable,1,11.95,06/19/19 11:29,"941 8th St, Los Angeles, CA 90001" +210662,Google Phone,1,600,06/19/19 14:19,"259 Chestnut St, New York City, NY 10001" +210663,Flatscreen TV,1,300,06/11/19 11:30,"126 West St, Dallas, TX 75001" +210664,Bose SoundSport Headphones,1,99.99,06/14/19 08:59,"8 10th St, San Francisco, CA 94016" +210665,USB-C Charging Cable,1,11.95,06/06/19 13:01,"550 Forest St, San Francisco, CA 94016" +210666,Google Phone,1,600,06/16/19 13:09,"217 Hill St, Dallas, TX 75001" +210667,Bose SoundSport Headphones,1,99.99,06/29/19 11:58,"242 Cherry St, Los Angeles, CA 90001" +210668,Bose SoundSport Headphones,1,99.99,06/29/19 15:08,"656 5th St, San Francisco, CA 94016" +210669,USB-C Charging Cable,1,11.95,06/21/19 21:00,"930 Chestnut St, Los Angeles, CA 90001" +210670,USB-C Charging Cable,1,11.95,06/02/19 12:22,"130 Lakeview St, Los Angeles, CA 90001" +210671,AAA Batteries (4-pack),1,2.99,06/07/19 12:08,"554 West St, San Francisco, CA 94016" +210672,Lightning Charging Cable,1,14.95,06/02/19 22:40,"891 Ridge St, San Francisco, CA 94016" +210673,Lightning Charging Cable,1,14.95,06/19/19 00:09,"751 Hickory St, Atlanta, GA 30301" +210674,Apple Airpods Headphones,1,150,06/25/19 00:32,"657 6th St, Dallas, TX 75001" +210675,Apple Airpods Headphones,1,150,06/24/19 17:27,"720 Willow St, New York City, NY 10001" +210676,AA Batteries (4-pack),1,3.84,06/10/19 18:25,"44 2nd St, Dallas, TX 75001" +210677,AAA Batteries (4-pack),2,2.99,06/08/19 16:06,"356 Park St, Seattle, WA 98101" +210678,Lightning Charging Cable,1,14.95,06/15/19 03:48,"574 West St, Atlanta, GA 30301" +210679,AA Batteries (4-pack),2,3.84,06/02/19 18:37,"73 Sunset St, New York City, NY 10001" +210680,USB-C Charging Cable,1,11.95,06/30/19 17:01,"465 Church St, Atlanta, GA 30301" +210681,AAA Batteries (4-pack),1,2.99,06/25/19 23:21,"98 5th St, Los Angeles, CA 90001" +210682,Bose SoundSport Headphones,1,99.99,06/06/19 11:18,"725 South St, Portland, OR 97035" +210683,USB-C Charging Cable,1,11.95,06/05/19 05:16,"322 1st St, Dallas, TX 75001" +210684,Wired Headphones,1,11.99,06/02/19 00:04,"890 2nd St, San Francisco, CA 94016" +210685,Wired Headphones,1,11.99,06/26/19 16:41,"668 2nd St, Portland, OR 97035" +210686,Wired Headphones,1,11.99,06/09/19 19:18,"868 Jefferson St, San Francisco, CA 94016" +210687,iPhone,1,700,06/23/19 13:45,"675 7th St, San Francisco, CA 94016" +210688,27in FHD Monitor,1,149.99,06/01/19 23:48,"766 12th St, Portland, OR 97035" +210689,USB-C Charging Cable,1,11.95,06/22/19 10:22,"484 Meadow St, Austin, TX 73301" +210690,Wired Headphones,1,11.99,06/07/19 18:49,"252 Lake St, Atlanta, GA 30301" +210691,USB-C Charging Cable,1,11.95,06/11/19 18:01,"774 Elm St, Los Angeles, CA 90001" +210692,USB-C Charging Cable,1,11.95,06/05/19 18:36,"122 Adams St, San Francisco, CA 94016" +210693,Bose SoundSport Headphones,1,99.99,06/02/19 21:37,"207 Forest St, San Francisco, CA 94016" +,,,,, +210694,Apple Airpods Headphones,1,150,06/24/19 19:44,"126 Main St, San Francisco, CA 94016" +210694,Lightning Charging Cable,1,14.95,06/24/19 19:44,"126 Main St, San Francisco, CA 94016" +210695,AA Batteries (4-pack),2,3.84,06/30/19 20:00,"347 10th St, Austin, TX 73301" +210696,ThinkPad Laptop,1,999.99,06/06/19 23:11,"808 Forest St, San Francisco, CA 94016" +210697,Wired Headphones,1,11.99,06/20/19 17:32,"510 Elm St, Boston, MA 02215" +210698,Lightning Charging Cable,1,14.95,06/03/19 14:23,"523 Elm St, Dallas, TX 75001" +210699,Wired Headphones,1,11.99,06/06/19 20:21,"613 Willow St, Los Angeles, CA 90001" +210700,AAA Batteries (4-pack),1,2.99,06/24/19 11:19,"557 Lincoln St, San Francisco, CA 94016" +210701,Lightning Charging Cable,1,14.95,06/20/19 23:31,"980 8th St, Austin, TX 73301" +,,,,, +210702,USB-C Charging Cable,1,11.95,06/19/19 13:33,"173 Chestnut St, Seattle, WA 98101" +210703,USB-C Charging Cable,1,11.95,06/18/19 08:10,"233 South St, Austin, TX 73301" +210704,Bose SoundSport Headphones,1,99.99,06/17/19 18:59,"812 Hill St, New York City, NY 10001" +210705,AA Batteries (4-pack),1,3.84,06/04/19 11:49,"373 Walnut St, Los Angeles, CA 90001" +210706,Flatscreen TV,1,300,06/29/19 14:05,"841 Elm St, Seattle, WA 98101" +210707,27in FHD Monitor,1,149.99,06/23/19 14:16,"299 River St, Seattle, WA 98101" +210708,Lightning Charging Cable,1,14.95,06/29/19 08:47,"45 North St, New York City, NY 10001" +210709,Google Phone,1,600,06/16/19 15:35,"501 Sunset St, San Francisco, CA 94016" +210709,USB-C Charging Cable,1,11.95,06/16/19 15:35,"501 Sunset St, San Francisco, CA 94016" +210710,27in FHD Monitor,1,149.99,06/30/19 10:38,"310 Pine St, Los Angeles, CA 90001" +210711,Lightning Charging Cable,1,14.95,06/03/19 13:15,"753 West St, New York City, NY 10001" +210712,Macbook Pro Laptop,1,1700,06/06/19 17:47,"487 Wilson St, Atlanta, GA 30301" +210713,27in FHD Monitor,1,149.99,06/04/19 08:43,"779 Pine St, Boston, MA 02215" +210714,AAA Batteries (4-pack),1,2.99,06/15/19 15:05,"113 Lake St, New York City, NY 10001" +210715,USB-C Charging Cable,1,11.95,06/06/19 09:21,"568 North St, Portland, OR 97035" +210716,ThinkPad Laptop,1,999.99,06/11/19 13:00,"283 2nd St, Dallas, TX 75001" +210717,Lightning Charging Cable,1,14.95,06/18/19 22:55,"339 Ridge St, San Francisco, CA 94016" +210718,Apple Airpods Headphones,1,150,06/19/19 10:41,"625 Dogwood St, Dallas, TX 75001" +210719,USB-C Charging Cable,1,11.95,06/19/19 21:04,"558 Chestnut St, Atlanta, GA 30301" +210720,Lightning Charging Cable,1,14.95,06/23/19 18:23,"794 Wilson St, New York City, NY 10001" +210721,27in FHD Monitor,1,149.99,06/15/19 12:45,"716 Sunset St, Dallas, TX 75001" +210721,34in Ultrawide Monitor,1,379.99,06/15/19 12:45,"716 Sunset St, Dallas, TX 75001" +210722,AAA Batteries (4-pack),1,2.99,06/16/19 10:55,"112 Elm St, San Francisco, CA 94016" +210723,AAA Batteries (4-pack),3,2.99,06/14/19 20:53,"818 2nd St, New York City, NY 10001" +210724,Apple Airpods Headphones,1,150,06/20/19 12:43,"676 4th St, Austin, TX 73301" +210725,34in Ultrawide Monitor,1,379.99,06/06/19 14:10,"330 Hill St, Portland, OR 97035" +210726,AAA Batteries (4-pack),1,2.99,06/04/19 10:50,"400 2nd St, Seattle, WA 98101" +210727,AAA Batteries (4-pack),3,2.99,06/04/19 12:02,"968 Ridge St, New York City, NY 10001" +210728,AA Batteries (4-pack),1,3.84,06/09/19 20:28,"327 Main St, Los Angeles, CA 90001" +210729,34in Ultrawide Monitor,1,379.99,06/22/19 08:33,"667 Hickory St, Dallas, TX 75001" +210730,AAA Batteries (4-pack),1,2.99,06/01/19 19:35,"417 Ridge St, Portland, ME 04101" +210731,Wired Headphones,1,11.99,06/10/19 21:31,"924 Center St, San Francisco, CA 94016" +210732,Wired Headphones,1,11.99,06/12/19 16:20,"414 Cherry St, Seattle, WA 98101" +210733,iPhone,1,700,06/20/19 09:15,"532 Johnson St, Seattle, WA 98101" +210733,Wired Headphones,1,11.99,06/20/19 09:15,"532 Johnson St, Seattle, WA 98101" +210734,AAA Batteries (4-pack),2,2.99,06/17/19 19:46,"353 Pine St, New York City, NY 10001" +210734,Apple Airpods Headphones,1,150,06/17/19 19:46,"353 Pine St, New York City, NY 10001" +210735,AAA Batteries (4-pack),4,2.99,06/07/19 23:43,"109 Meadow St, Los Angeles, CA 90001" +210736,27in FHD Monitor,1,149.99,06/09/19 14:07,"644 5th St, Dallas, TX 75001" +210737,Lightning Charging Cable,1,14.95,06/28/19 20:50,"596 North St, New York City, NY 10001" +210738,Macbook Pro Laptop,1,1700,06/06/19 16:07,"454 Wilson St, Seattle, WA 98101" +210739,20in Monitor,1,109.99,06/24/19 20:27,"610 South St, New York City, NY 10001" +210740,Wired Headphones,1,11.99,06/27/19 15:50,"978 Cedar St, Boston, MA 02215" +210741,Bose SoundSport Headphones,1,99.99,06/20/19 15:28,"895 Chestnut St, Los Angeles, CA 90001" +210742,Apple Airpods Headphones,1,150,06/08/19 21:56,"253 Highland St, New York City, NY 10001" +210743,Bose SoundSport Headphones,1,99.99,06/03/19 14:48,"862 Ridge St, Seattle, WA 98101" +210744,AA Batteries (4-pack),1,3.84,06/01/19 16:30,"631 11th St, San Francisco, CA 94016" +210745,ThinkPad Laptop,1,999.99,06/21/19 19:19,"257 Pine St, Seattle, WA 98101" +210746,USB-C Charging Cable,1,11.95,06/19/19 23:09,"486 Hill St, Seattle, WA 98101" +210747,Apple Airpods Headphones,1,150,06/02/19 10:06,"558 13th St, Los Angeles, CA 90001" +210748,AAA Batteries (4-pack),1,2.99,06/16/19 12:16,"727 Highland St, San Francisco, CA 94016" +210749,Apple Airpods Headphones,1,150,06/24/19 10:25,"603 Walnut St, Boston, MA 02215" +210750,iPhone,1,700,06/06/19 08:56,"270 7th St, San Francisco, CA 94016" +210750,Wired Headphones,1,11.99,06/06/19 08:56,"270 7th St, San Francisco, CA 94016" +210751,Lightning Charging Cable,1,14.95,06/01/19 23:10,"353 Highland St, New York City, NY 10001" +210752,27in 4K Gaming Monitor,1,389.99,06/05/19 12:36,"82 2nd St, Atlanta, GA 30301" +210753,Lightning Charging Cable,1,14.95,06/17/19 10:30,"124 9th St, Los Angeles, CA 90001" +210754,AA Batteries (4-pack),1,3.84,06/25/19 12:24,"746 Pine St, Los Angeles, CA 90001" +210755,27in FHD Monitor,1,149.99,06/27/19 14:30,"597 Park St, Boston, MA 02215" +210756,27in FHD Monitor,1,149.99,06/18/19 15:58,"677 2nd St, Seattle, WA 98101" +210757,Apple Airpods Headphones,1,150,06/14/19 11:45,"71 Meadow St, New York City, NY 10001" +210758,AAA Batteries (4-pack),1,2.99,06/20/19 12:01,"618 Hickory St, New York City, NY 10001" +210759,Apple Airpods Headphones,1,150,06/17/19 17:17,"776 Main St, San Francisco, CA 94016" +210760,Bose SoundSport Headphones,1,99.99,06/03/19 21:12,"825 2nd St, Dallas, TX 75001" +210761,USB-C Charging Cable,1,11.95,06/18/19 22:53,"267 Hill St, Los Angeles, CA 90001" +210762,Macbook Pro Laptop,1,1700,06/18/19 19:24,"182 Wilson St, Los Angeles, CA 90001" +210763,Apple Airpods Headphones,1,150,06/07/19 18:00,"544 7th St, New York City, NY 10001" +210764,AAA Batteries (4-pack),2,2.99,06/11/19 06:39,"755 1st St, Dallas, TX 75001" +210765,20in Monitor,1,109.99,06/23/19 12:37,"447 Jackson St, Austin, TX 73301" +210766,27in FHD Monitor,1,149.99,06/25/19 12:16,"289 Spruce St, New York City, NY 10001" +210767,USB-C Charging Cable,1,11.95,06/26/19 11:43,"450 Lakeview St, Austin, TX 73301" +210768,Wired Headphones,1,11.99,06/12/19 13:37,"459 6th St, Dallas, TX 75001" +210769,Wired Headphones,1,11.99,06/08/19 19:43,"22 Dogwood St, Boston, MA 02215" +210770,Macbook Pro Laptop,1,1700,06/02/19 20:22,"366 Adams St, Dallas, TX 75001" +210771,Apple Airpods Headphones,1,150,06/08/19 10:42,"894 Willow St, Dallas, TX 75001" +210772,AAA Batteries (4-pack),1,2.99,06/05/19 10:32,"838 South St, San Francisco, CA 94016" +210773,AA Batteries (4-pack),2,3.84,06/26/19 17:03,"574 North St, San Francisco, CA 94016" +210774,Lightning Charging Cable,1,14.95,06/08/19 13:05,"582 Highland St, Seattle, WA 98101" +210775,USB-C Charging Cable,1,11.95,06/02/19 21:17,"667 14th St, San Francisco, CA 94016" +210776,AAA Batteries (4-pack),1,2.99,06/24/19 14:55,"274 West St, New York City, NY 10001" +210777,AA Batteries (4-pack),2,3.84,06/07/19 15:22,"423 9th St, Portland, OR 97035" +210778,AAA Batteries (4-pack),1,2.99,06/28/19 19:11,"380 11th St, Seattle, WA 98101" +210779,Lightning Charging Cable,1,14.95,06/16/19 16:50,"651 1st St, Boston, MA 02215" +210780,Bose SoundSport Headphones,1,99.99,06/22/19 12:16,"793 Lincoln St, Boston, MA 02215" +210781,Wired Headphones,1,11.99,06/25/19 19:41,"544 Meadow St, Seattle, WA 98101" +210782,AAA Batteries (4-pack),1,2.99,06/06/19 22:08,"849 Madison St, San Francisco, CA 94016" +210783,Wired Headphones,1,11.99,06/04/19 22:22,"477 6th St, San Francisco, CA 94016" +210784,ThinkPad Laptop,1,999.99,06/15/19 11:37,"39 Sunset St, Los Angeles, CA 90001" +210785,Lightning Charging Cable,1,14.95,06/18/19 15:36,"478 Chestnut St, Atlanta, GA 30301" +210786,USB-C Charging Cable,1,11.95,06/02/19 18:53,"727 Cedar St, Austin, TX 73301" +210787,Flatscreen TV,1,300,06/25/19 08:14,"608 Johnson St, Seattle, WA 98101" +210788,USB-C Charging Cable,1,11.95,06/11/19 12:38,"393 North St, San Francisco, CA 94016" +210789,USB-C Charging Cable,1,11.95,06/08/19 19:27,"813 Wilson St, Los Angeles, CA 90001" +210790,Wired Headphones,1,11.99,06/12/19 17:47,"745 Church St, Seattle, WA 98101" +210791,Lightning Charging Cable,1,14.95,06/03/19 19:10,"855 Madison St, San Francisco, CA 94016" +,,,,, +210792,AAA Batteries (4-pack),1,2.99,06/16/19 21:01,"408 Lincoln St, Dallas, TX 75001" +210793,Lightning Charging Cable,1,14.95,06/07/19 09:19,"881 Adams St, San Francisco, CA 94016" +210794,27in FHD Monitor,1,149.99,06/02/19 19:31,"15 Center St, San Francisco, CA 94016" +210795,iPhone,1,700,06/28/19 09:31,"744 9th St, Los Angeles, CA 90001" +210796,AA Batteries (4-pack),1,3.84,06/21/19 20:42,"302 North St, San Francisco, CA 94016" +210797,Wired Headphones,1,11.99,06/16/19 18:33,"819 6th St, Los Angeles, CA 90001" +210798,Apple Airpods Headphones,1,150,06/16/19 21:38,"414 Hill St, New York City, NY 10001" +210799,USB-C Charging Cable,1,11.95,06/16/19 19:54,"757 Main St, San Francisco, CA 94016" +210800,Wired Headphones,1,11.99,06/19/19 09:24,"720 9th St, Austin, TX 73301" +210801,Wired Headphones,1,11.99,06/02/19 19:33,"960 7th St, Boston, MA 02215" +210802,Wired Headphones,1,11.99,06/14/19 03:08,"163 Main St, Portland, OR 97035" +210803,Apple Airpods Headphones,1,150,06/09/19 22:36,"122 Cedar St, Atlanta, GA 30301" +210804,Wired Headphones,1,11.99,06/06/19 17:47,"650 8th St, San Francisco, CA 94016" +210805,Macbook Pro Laptop,1,1700,06/26/19 17:37,"952 Lakeview St, San Francisco, CA 94016" +210806,AA Batteries (4-pack),1,3.84,06/01/19 17:05,"759 7th St, Boston, MA 02215" +210807,Macbook Pro Laptop,1,1700,06/23/19 13:48,"505 West St, Atlanta, GA 30301" +210808,Bose SoundSport Headphones,1,99.99,06/16/19 19:44,"164 Lincoln St, Seattle, WA 98101" +210809,AAA Batteries (4-pack),2,2.99,06/20/19 14:47,"23 13th St, Los Angeles, CA 90001" +210810,Macbook Pro Laptop,1,1700,06/28/19 17:31,"147 Dogwood St, San Francisco, CA 94016" +210811,Apple Airpods Headphones,1,150,06/20/19 10:25,"338 8th St, San Francisco, CA 94016" +210812,Flatscreen TV,1,300,06/01/19 20:41,"438 Lake St, Portland, OR 97035" +210813,20in Monitor,1,109.99,06/03/19 20:43,"572 West St, Dallas, TX 75001" +210814,Apple Airpods Headphones,1,150,06/14/19 16:43,"67 Wilson St, Atlanta, GA 30301" +210815,Lightning Charging Cable,1,14.95,06/27/19 14:10,"602 Johnson St, San Francisco, CA 94016" +210816,Lightning Charging Cable,1,14.95,06/28/19 14:23,"455 1st St, New York City, NY 10001" +210817,34in Ultrawide Monitor,1,379.99,06/25/19 21:28,"553 Ridge St, New York City, NY 10001" +210818,AAA Batteries (4-pack),1,2.99,06/06/19 19:36,"130 9th St, Seattle, WA 98101" +210819,AA Batteries (4-pack),1,3.84,06/18/19 08:58,"230 Main St, Seattle, WA 98101" +210820,Lightning Charging Cable,1,14.95,06/14/19 14:47,"298 11th St, Los Angeles, CA 90001" +210821,Wired Headphones,2,11.99,06/20/19 19:14,"821 2nd St, Dallas, TX 75001" +210822,AA Batteries (4-pack),1,3.84,06/27/19 09:50,"121 Ridge St, Los Angeles, CA 90001" +210823,Lightning Charging Cable,1,14.95,06/26/19 18:08,"534 10th St, Seattle, WA 98101" +210824,Apple Airpods Headphones,1,150,06/01/19 14:14,"622 Adams St, Atlanta, GA 30301" +210825,Apple Airpods Headphones,1,150,06/10/19 21:24,"878 10th St, Seattle, WA 98101" +210826,Wired Headphones,1,11.99,06/17/19 08:03,"416 Spruce St, Boston, MA 02215" +210827,Vareebadd Phone,1,400,06/10/19 08:48,"124 1st St, New York City, NY 10001" +210828,USB-C Charging Cable,1,11.95,06/25/19 12:19,"526 2nd St, Boston, MA 02215" +210829,27in FHD Monitor,1,149.99,06/10/19 00:35,"52 Johnson St, New York City, NY 10001" +210830,USB-C Charging Cable,1,11.95,06/16/19 17:43,"931 River St, Boston, MA 02215" +210831,Wired Headphones,1,11.99,06/22/19 14:48,"565 Willow St, New York City, NY 10001" +210832,20in Monitor,1,109.99,06/20/19 22:16,"452 Lake St, Los Angeles, CA 90001" +210833,USB-C Charging Cable,1,11.95,06/11/19 17:38,"523 Walnut St, Los Angeles, CA 90001" +210834,Vareebadd Phone,1,400,06/04/19 19:55,"355 7th St, Boston, MA 02215" +210835,AA Batteries (4-pack),3,3.84,06/01/19 17:23,"912 Meadow St, Atlanta, GA 30301" +210836,Wired Headphones,1,11.99,06/29/19 15:55,"425 Johnson St, Los Angeles, CA 90001" +210837,Flatscreen TV,1,300,06/23/19 19:21,"724 4th St, Boston, MA 02215" +210838,Lightning Charging Cable,1,14.95,06/17/19 17:12,"139 Wilson St, New York City, NY 10001" +210839,Bose SoundSport Headphones,1,99.99,06/06/19 13:18,"12 Center St, Portland, ME 04101" +210840,USB-C Charging Cable,1,11.95,06/24/19 21:21,"905 Spruce St, New York City, NY 10001" +210841,27in 4K Gaming Monitor,1,389.99,06/16/19 13:42,"456 Spruce St, New York City, NY 10001" +210842,ThinkPad Laptop,1,999.99,06/03/19 19:09,"653 Chestnut St, San Francisco, CA 94016" +210843,AA Batteries (4-pack),2,3.84,06/23/19 06:01,"264 Jefferson St, Atlanta, GA 30301" +210844,USB-C Charging Cable,1,11.95,06/10/19 11:00,"997 11th St, San Francisco, CA 94016" +210845,AA Batteries (4-pack),1,3.84,06/22/19 20:09,"258 Cherry St, San Francisco, CA 94016" +210846,Apple Airpods Headphones,1,150,06/10/19 13:12,"365 South St, Austin, TX 73301" +210847,Wired Headphones,1,11.99,06/06/19 19:35,"173 10th St, Seattle, WA 98101" +210848,Wired Headphones,2,11.99,06/01/19 21:35,"919 Meadow St, San Francisco, CA 94016" +210849,Lightning Charging Cable,1,14.95,06/08/19 19:25,"666 Spruce St, Portland, ME 04101" +210850,Macbook Pro Laptop,1,1700,06/23/19 09:06,"927 Jefferson St, Boston, MA 02215" +210851,Apple Airpods Headphones,1,150,06/05/19 21:08,"350 Elm St, Los Angeles, CA 90001" +210852,Bose SoundSport Headphones,1,99.99,06/28/19 11:57,"484 4th St, Portland, OR 97035" +210853,Vareebadd Phone,1,400,06/08/19 18:32,"163 South St, Boston, MA 02215" +210854,Lightning Charging Cable,1,14.95,06/26/19 20:22,"482 Highland St, San Francisco, CA 94016" +210855,20in Monitor,1,109.99,06/06/19 13:47,"476 12th St, New York City, NY 10001" +210856,AAA Batteries (4-pack),3,2.99,06/14/19 15:16,"763 Ridge St, San Francisco, CA 94016" +210857,20in Monitor,1,109.99,06/07/19 18:33,"511 Center St, Atlanta, GA 30301" +210858,20in Monitor,1,109.99,06/23/19 15:08,"697 Ridge St, Dallas, TX 75001" +210859,Google Phone,1,600,06/15/19 21:19,"468 River St, Seattle, WA 98101" +210859,Wired Headphones,1,11.99,06/15/19 21:19,"468 River St, Seattle, WA 98101" +210860,Bose SoundSport Headphones,1,99.99,06/22/19 19:10,"496 River St, New York City, NY 10001" +210861,Bose SoundSport Headphones,1,99.99,06/10/19 19:03,"648 Hickory St, Los Angeles, CA 90001" +210862,Lightning Charging Cable,2,14.95,06/29/19 09:43,"251 West St, Portland, ME 04101" +210863,Bose SoundSport Headphones,1,99.99,06/11/19 18:53,"801 Lake St, New York City, NY 10001" +210864,iPhone,1,700,06/18/19 20:44,"559 South St, Seattle, WA 98101" +210865,20in Monitor,1,109.99,06/10/19 19:39,"232 Elm St, New York City, NY 10001" +210866,iPhone,1,700,06/14/19 12:46,"173 Meadow St, Los Angeles, CA 90001" +210867,Apple Airpods Headphones,1,150,06/02/19 19:22,"404 1st St, Los Angeles, CA 90001" +210868,Bose SoundSport Headphones,1,99.99,06/26/19 15:26,"116 4th St, Atlanta, GA 30301" +210869,USB-C Charging Cable,1,11.95,06/29/19 09:10,"527 Chestnut St, Los Angeles, CA 90001" +210870,Macbook Pro Laptop,1,1700,06/22/19 12:17,"330 13th St, Seattle, WA 98101" +210871,AAA Batteries (4-pack),1,2.99,06/25/19 22:11,"480 Hill St, Seattle, WA 98101" +210872,USB-C Charging Cable,1,11.95,06/28/19 09:57,"23 Walnut St, New York City, NY 10001" +210873,USB-C Charging Cable,1,11.95,06/07/19 09:23,"62 Chestnut St, Los Angeles, CA 90001" +210874,AA Batteries (4-pack),1,3.84,06/24/19 16:16,"539 Forest St, Seattle, WA 98101" +210875,Bose SoundSport Headphones,1,99.99,06/18/19 21:12,"60 14th St, San Francisco, CA 94016" +,,,,, +210876,Bose SoundSport Headphones,1,99.99,06/16/19 00:30,"573 Willow St, Austin, TX 73301" +210877,27in FHD Monitor,1,149.99,06/10/19 09:36,"603 Lake St, San Francisco, CA 94016" +210878,27in 4K Gaming Monitor,1,389.99,06/09/19 12:01,"58 14th St, Boston, MA 02215" +210879,USB-C Charging Cable,2,11.95,06/22/19 13:11,"512 Church St, Los Angeles, CA 90001" +210880,Lightning Charging Cable,2,14.95,06/05/19 11:57,"543 River St, Seattle, WA 98101" +210881,Macbook Pro Laptop,1,1700,06/19/19 10:19,"51 Adams St, Seattle, WA 98101" +210882,Google Phone,1,600,06/24/19 16:08,"588 Wilson St, Dallas, TX 75001" +210883,Wired Headphones,1,11.99,06/04/19 15:45,"52 13th St, Boston, MA 02215" +210884,Lightning Charging Cable,1,14.95,06/18/19 07:33,"692 Adams St, Atlanta, GA 30301" +210885,USB-C Charging Cable,1,11.95,06/19/19 21:10,"908 Lakeview St, Seattle, WA 98101" +210886,27in FHD Monitor,1,149.99,06/30/19 23:51,"405 Madison St, Boston, MA 02215" +210887,Apple Airpods Headphones,1,150,06/07/19 12:00,"814 Dogwood St, Los Angeles, CA 90001" +210888,27in FHD Monitor,1,149.99,06/12/19 16:55,"962 West St, Seattle, WA 98101" +210889,Lightning Charging Cable,1,14.95,06/05/19 20:50,"527 10th St, Atlanta, GA 30301" +210890,AAA Batteries (4-pack),1,2.99,06/16/19 22:07,"654 River St, Austin, TX 73301" +210891,34in Ultrawide Monitor,1,379.99,06/21/19 22:20,"503 Ridge St, New York City, NY 10001" +210892,Bose SoundSport Headphones,1,99.99,06/06/19 21:40,"988 Lake St, Los Angeles, CA 90001" +210893,Apple Airpods Headphones,1,150,06/13/19 19:33,"956 Sunset St, Portland, OR 97035" +210894,AA Batteries (4-pack),3,3.84,06/20/19 20:04,"480 Main St, San Francisco, CA 94016" +210895,Flatscreen TV,1,300,06/14/19 15:43,"500 Pine St, Dallas, TX 75001" +210896,Lightning Charging Cable,1,14.95,06/28/19 09:12,"442 Wilson St, Portland, OR 97035" +210897,AAA Batteries (4-pack),1,2.99,06/04/19 11:55,"533 Hill St, San Francisco, CA 94016" +210898,Wired Headphones,1,11.99,06/28/19 22:04,"440 Ridge St, Los Angeles, CA 90001" +210899,Wired Headphones,2,11.99,06/19/19 19:09,"976 Wilson St, Los Angeles, CA 90001" +210900,Lightning Charging Cable,1,14.95,06/10/19 17:21,"71 6th St, Boston, MA 02215" +210901,Macbook Pro Laptop,1,1700,06/18/19 14:07,"512 Meadow St, Portland, OR 97035" +210902,Lightning Charging Cable,1,14.95,06/25/19 22:21,"216 Elm St, Los Angeles, CA 90001" +210903,USB-C Charging Cable,1,11.95,06/16/19 07:01,"866 Highland St, Los Angeles, CA 90001" +210904,27in FHD Monitor,1,149.99,06/02/19 20:25,"975 Park St, San Francisco, CA 94016" +210905,AA Batteries (4-pack),1,3.84,06/03/19 07:22,"154 5th St, San Francisco, CA 94016" +210906,Wired Headphones,1,11.99,06/22/19 21:10,"123 South St, Austin, TX 73301" +210907,LG Washing Machine,1,600.0,06/19/19 17:55,"293 Jackson St, Dallas, TX 75001" +210908,USB-C Charging Cable,1,11.95,06/21/19 15:12,"619 Jackson St, Austin, TX 73301" +210909,AA Batteries (4-pack),1,3.84,06/21/19 12:57,"657 Jackson St, San Francisco, CA 94016" +210910,AA Batteries (4-pack),2,3.84,06/17/19 15:19,"180 2nd St, New York City, NY 10001" +210911,ThinkPad Laptop,1,999.99,06/01/19 13:29,"368 10th St, Austin, TX 73301" +210911,34in Ultrawide Monitor,1,379.99,06/01/19 13:29,"368 10th St, Austin, TX 73301" +210912,AAA Batteries (4-pack),2,2.99,06/03/19 05:19,"916 8th St, San Francisco, CA 94016" +210913,ThinkPad Laptop,1,999.99,06/20/19 19:26,"535 Cherry St, New York City, NY 10001" +210913,Wired Headphones,1,11.99,06/20/19 19:26,"535 Cherry St, New York City, NY 10001" +210914,Apple Airpods Headphones,1,150,06/09/19 11:03,"948 Maple St, Austin, TX 73301" +210915,34in Ultrawide Monitor,1,379.99,06/03/19 23:47,"600 Maple St, Los Angeles, CA 90001" +210916,AAA Batteries (4-pack),2,2.99,06/07/19 13:34,"947 Main St, Atlanta, GA 30301" +210917,AA Batteries (4-pack),1,3.84,06/24/19 19:33,"672 Center St, Boston, MA 02215" +210918,Lightning Charging Cable,1,14.95,06/15/19 12:51,"63 Washington St, San Francisco, CA 94016" +210919,AAA Batteries (4-pack),1,2.99,06/23/19 15:37,"931 Walnut St, Boston, MA 02215" +210920,LG Dryer,1,600.0,06/30/19 18:00,"541 Hickory St, New York City, NY 10001" +210921,34in Ultrawide Monitor,1,379.99,06/13/19 20:09,"497 2nd St, Los Angeles, CA 90001" +210922,34in Ultrawide Monitor,1,379.99,06/07/19 16:36,"532 Maple St, Atlanta, GA 30301" +210923,USB-C Charging Cable,1,11.95,06/25/19 20:34,"89 Forest St, San Francisco, CA 94016" +210924,AAA Batteries (4-pack),1,2.99,06/28/19 00:47,"687 West St, Atlanta, GA 30301" +210925,AAA Batteries (4-pack),1,2.99,06/21/19 18:25,"103 Hill St, Boston, MA 02215" +210926,AA Batteries (4-pack),1,3.84,06/25/19 18:27,"921 Adams St, San Francisco, CA 94016" +210927,Apple Airpods Headphones,1,150,06/03/19 15:20,"101 Meadow St, Atlanta, GA 30301" +210928,Apple Airpods Headphones,1,150,06/20/19 11:02,"484 Elm St, Portland, ME 04101" +210929,34in Ultrawide Monitor,1,379.99,06/09/19 23:16,"573 Willow St, San Francisco, CA 94016" +210930,27in FHD Monitor,1,149.99,06/23/19 23:18,"940 13th St, Atlanta, GA 30301" +210931,27in 4K Gaming Monitor,1,389.99,06/25/19 08:40,"283 Lakeview St, Boston, MA 02215" +210932,Wired Headphones,1,11.99,06/21/19 09:50,"885 Cedar St, Los Angeles, CA 90001" +210933,AAA Batteries (4-pack),2,2.99,06/21/19 21:18,"83 14th St, San Francisco, CA 94016" +210934,Apple Airpods Headphones,1,150,06/12/19 20:50,"902 Jackson St, New York City, NY 10001" +210935,AA Batteries (4-pack),1,3.84,06/13/19 14:23,"514 Cherry St, Seattle, WA 98101" +210936,Bose SoundSport Headphones,1,99.99,06/09/19 18:44,"508 Hill St, Austin, TX 73301" +210937,Lightning Charging Cable,1,14.95,06/14/19 13:21,"598 River St, San Francisco, CA 94016" +210938,Lightning Charging Cable,1,14.95,06/14/19 20:33,"563 Elm St, San Francisco, CA 94016" +210939,AAA Batteries (4-pack),1,2.99,06/28/19 21:06,"722 7th St, Boston, MA 02215" +210940,AAA Batteries (4-pack),1,2.99,06/18/19 08:40,"458 1st St, Portland, OR 97035" +210941,AA Batteries (4-pack),1,3.84,06/27/19 16:04,"522 5th St, San Francisco, CA 94016" +210941,Bose SoundSport Headphones,1,99.99,06/27/19 16:04,"522 5th St, San Francisco, CA 94016" +210942,Apple Airpods Headphones,1,150,06/01/19 11:54,"5 Meadow St, Boston, MA 02215" +210943,Bose SoundSport Headphones,1,99.99,06/19/19 03:51,"709 Elm St, Portland, OR 97035" +210944,27in 4K Gaming Monitor,1,389.99,06/03/19 13:52,"705 Adams St, Atlanta, GA 30301" +210945,Apple Airpods Headphones,1,150,06/16/19 00:41,"221 Lake St, New York City, NY 10001" +210946,Lightning Charging Cable,1,14.95,06/02/19 17:11,"109 Sunset St, Portland, ME 04101" +210947,Bose SoundSport Headphones,1,99.99,06/14/19 13:39,"922 13th St, Austin, TX 73301" +210948,AA Batteries (4-pack),1,3.84,06/12/19 08:52,"535 Main St, Portland, OR 97035" +210949,USB-C Charging Cable,1,11.95,06/18/19 09:05,"107 Main St, Seattle, WA 98101" +210950,Wired Headphones,1,11.99,06/28/19 22:39,"325 Park St, San Francisco, CA 94016" +210951,Wired Headphones,1,11.99,06/15/19 16:09,"117 8th St, New York City, NY 10001" +210952,USB-C Charging Cable,1,11.95,06/05/19 11:57,"164 Main St, Dallas, TX 75001" +210953,AA Batteries (4-pack),1,3.84,06/30/19 20:03,"311 1st St, Boston, MA 02215" +210954,20in Monitor,1,109.99,06/07/19 22:23,"453 North St, Boston, MA 02215" +210955,Apple Airpods Headphones,1,150,06/11/19 15:10,"402 Maple St, San Francisco, CA 94016" +210956,Wired Headphones,1,11.99,06/11/19 18:34,"454 Spruce St, Boston, MA 02215" +210957,Lightning Charging Cable,1,14.95,06/08/19 00:10,"188 Spruce St, New York City, NY 10001" +210958,USB-C Charging Cable,1,11.95,06/16/19 22:12,"692 Willow St, San Francisco, CA 94016" +210959,Apple Airpods Headphones,1,150,06/18/19 12:46,"472 Cherry St, New York City, NY 10001" +210960,AAA Batteries (4-pack),1,2.99,06/29/19 06:56,"496 Chestnut St, Los Angeles, CA 90001" +210961,Macbook Pro Laptop,1,1700,06/04/19 19:32,"626 4th St, Boston, MA 02215" +210962,iPhone,1,700,06/18/19 16:17,"918 Ridge St, Los Angeles, CA 90001" +210962,Wired Headphones,1,11.99,06/18/19 16:17,"918 Ridge St, Los Angeles, CA 90001" +210963,Google Phone,2,600,06/09/19 13:35,"682 12th St, Los Angeles, CA 90001" +210964,Lightning Charging Cable,1,14.95,06/29/19 16:56,"665 South St, Atlanta, GA 30301" +210965,Lightning Charging Cable,1,14.95,06/12/19 21:20,"361 13th St, Boston, MA 02215" +210966,AA Batteries (4-pack),1,3.84,06/15/19 07:33,"390 1st St, Atlanta, GA 30301" +210967,AAA Batteries (4-pack),1,2.99,06/22/19 23:07,"157 1st St, San Francisco, CA 94016" +210968,Bose SoundSport Headphones,1,99.99,06/02/19 18:43,"667 8th St, San Francisco, CA 94016" +210969,AAA Batteries (4-pack),3,2.99,06/11/19 00:09,"572 Church St, Atlanta, GA 30301" +210970,USB-C Charging Cable,1,11.95,06/25/19 19:49,"994 Hickory St, Boston, MA 02215" +210971,Apple Airpods Headphones,1,150,06/30/19 17:22,"825 Hickory St, New York City, NY 10001" +210972,AAA Batteries (4-pack),1,2.99,06/09/19 15:17,"838 Jefferson St, Seattle, WA 98101" +210973,Google Phone,1,600,06/07/19 18:29,"375 Johnson St, Los Angeles, CA 90001" +210974,LG Washing Machine,1,600.0,06/26/19 14:13,"144 Ridge St, Portland, ME 04101" +210975,27in FHD Monitor,1,149.99,06/06/19 00:40,"267 Hickory St, San Francisco, CA 94016" +210976,Google Phone,1,600,06/23/19 08:46,"471 Park St, Seattle, WA 98101" +210977,Apple Airpods Headphones,1,150,06/15/19 07:48,"987 5th St, New York City, NY 10001" +210978,Lightning Charging Cable,2,14.95,06/12/19 13:15,"880 4th St, Boston, MA 02215" +210979,iPhone,1,700,06/20/19 18:24,"563 Sunset St, Los Angeles, CA 90001" +210980,Wired Headphones,1,11.99,06/30/19 04:08,"326 Pine St, Boston, MA 02215" +210981,USB-C Charging Cable,1,11.95,06/14/19 06:35,"458 7th St, Boston, MA 02215" +210982,USB-C Charging Cable,1,11.95,06/25/19 19:18,"161 7th St, Austin, TX 73301" +210983,Flatscreen TV,1,300,06/25/19 19:09,"904 12th St, Atlanta, GA 30301" +210984,Wired Headphones,1,11.99,06/27/19 15:18,"113 Church St, Los Angeles, CA 90001" +210985,AA Batteries (4-pack),1,3.84,06/19/19 15:25,"866 Lake St, Dallas, TX 75001" +210986,20in Monitor,1,109.99,06/03/19 09:50,"47 Maple St, Dallas, TX 75001" +210987,Apple Airpods Headphones,1,150,06/21/19 18:23,"614 Washington St, San Francisco, CA 94016" +210988,USB-C Charging Cable,2,11.95,06/05/19 12:57,"162 14th St, San Francisco, CA 94016" +210989,Vareebadd Phone,1,400,06/25/19 23:04,"162 South St, San Francisco, CA 94016" +210990,Bose SoundSport Headphones,1,99.99,06/20/19 16:19,"773 South St, Seattle, WA 98101" +210991,27in FHD Monitor,1,149.99,06/13/19 13:56,"633 9th St, Austin, TX 73301" +210992,iPhone,1,700,06/30/19 00:27,"343 Washington St, Seattle, WA 98101" +210993,AA Batteries (4-pack),2,3.84,06/15/19 01:35,"451 Hickory St, Dallas, TX 75001" +210994,Lightning Charging Cable,1,14.95,06/01/19 18:31,"225 7th St, Atlanta, GA 30301" +210995,Wired Headphones,1,11.99,06/25/19 10:43,"649 Jefferson St, San Francisco, CA 94016" +210996,AA Batteries (4-pack),1,3.84,06/26/19 09:12,"918 13th St, New York City, NY 10001" +210997,Bose SoundSport Headphones,1,99.99,06/24/19 18:04,"604 Lakeview St, New York City, NY 10001" +210998,AA Batteries (4-pack),1,3.84,06/16/19 09:41,"903 South St, Dallas, TX 75001" +210999,Flatscreen TV,1,300,06/07/19 20:54,"229 Forest St, Dallas, TX 75001" +211000,Apple Airpods Headphones,1,150,06/05/19 23:10,"652 5th St, Seattle, WA 98101" +211001,Wired Headphones,1,11.99,06/12/19 16:31,"786 Cherry St, Seattle, WA 98101" +211002,Apple Airpods Headphones,1,150,06/23/19 09:08,"284 Forest St, New York City, NY 10001" +211003,Bose SoundSport Headphones,1,99.99,06/14/19 19:35,"205 9th St, Los Angeles, CA 90001" +211004,Wired Headphones,1,11.99,06/13/19 03:47,"671 Hickory St, Boston, MA 02215" +211005,Vareebadd Phone,1,400,06/12/19 11:55,"164 Center St, San Francisco, CA 94016" +211005,Wired Headphones,1,11.99,06/12/19 11:55,"164 Center St, San Francisco, CA 94016" +211006,Wired Headphones,1,11.99,06/09/19 14:54,"685 Meadow St, San Francisco, CA 94016" +211007,Google Phone,1,600,06/13/19 23:41,"370 Meadow St, Boston, MA 02215" +211008,Apple Airpods Headphones,1,150,06/22/19 00:20,"74 Willow St, San Francisco, CA 94016" +211009,AAA Batteries (4-pack),1,2.99,06/04/19 23:55,"753 Spruce St, New York City, NY 10001" +211010,Apple Airpods Headphones,1,150,06/08/19 15:20,"100 14th St, Portland, OR 97035" +211011,Bose SoundSport Headphones,1,99.99,06/25/19 13:42,"264 6th St, Atlanta, GA 30301" +211012,USB-C Charging Cable,1,11.95,06/21/19 18:19,"536 Wilson St, New York City, NY 10001" +211013,Wired Headphones,1,11.99,06/27/19 12:39,"174 South St, Los Angeles, CA 90001" +211014,AAA Batteries (4-pack),1,2.99,06/03/19 23:23,"813 13th St, New York City, NY 10001" +211015,Apple Airpods Headphones,1,150,06/07/19 18:14,"883 Forest St, Boston, MA 02215" +211016,Apple Airpods Headphones,1,150,06/07/19 16:04,"192 Highland St, Boston, MA 02215" +211017,Wired Headphones,1,11.99,06/18/19 21:33,"204 13th St, Seattle, WA 98101" +211018,Bose SoundSport Headphones,1,99.99,06/06/19 19:32,"867 South St, Los Angeles, CA 90001" +211019,AAA Batteries (4-pack),1,2.99,06/28/19 20:03,"578 Ridge St, Atlanta, GA 30301" +211020,Lightning Charging Cable,2,14.95,06/20/19 22:36,"880 Spruce St, San Francisco, CA 94016" +211021,Google Phone,1,600,06/13/19 13:44,"334 12th St, San Francisco, CA 94016" +211022,Apple Airpods Headphones,1,150,06/10/19 19:34,"869 Lincoln St, New York City, NY 10001" +211023,Bose SoundSport Headphones,1,99.99,06/25/19 07:12,"83 1st St, San Francisco, CA 94016" +211024,Vareebadd Phone,1,400,06/09/19 20:43,"252 Dogwood St, New York City, NY 10001" +211025,Apple Airpods Headphones,1,150,06/27/19 08:40,"660 Madison St, San Francisco, CA 94016" +211026,Flatscreen TV,1,300,06/19/19 19:13,"709 Center St, Los Angeles, CA 90001" +211027,LG Washing Machine,1,600.0,06/27/19 12:13,"407 5th St, Seattle, WA 98101" +211028,AAA Batteries (4-pack),1,2.99,06/01/19 12:39,"170 North St, Dallas, TX 75001" +211029,Apple Airpods Headphones,1,150,06/16/19 10:56,"333 Walnut St, San Francisco, CA 94016" +211030,AA Batteries (4-pack),1,3.84,06/16/19 10:56,"438 2nd St, San Francisco, CA 94016" +211031,USB-C Charging Cable,1,11.95,06/13/19 13:44,"628 Ridge St, Boston, MA 02215" +211032,27in FHD Monitor,1,149.99,06/20/19 18:26,"401 8th St, New York City, NY 10001" +211033,iPhone,1,700,06/08/19 13:05,"77 Chestnut St, Los Angeles, CA 90001" +211033,Lightning Charging Cable,1,14.95,06/08/19 13:05,"77 Chestnut St, Los Angeles, CA 90001" +211034,Wired Headphones,1,11.99,06/17/19 21:33,"567 Cherry St, New York City, NY 10001" +211035,27in FHD Monitor,1,149.99,06/20/19 11:59,"303 6th St, San Francisco, CA 94016" +211036,AAA Batteries (4-pack),3,2.99,06/20/19 18:38,"113 Lake St, Los Angeles, CA 90001" +211037,AAA Batteries (4-pack),1,2.99,06/01/19 08:39,"101 Hickory St, San Francisco, CA 94016" +211038,USB-C Charging Cable,1,11.95,06/30/19 12:50,"855 2nd St, Austin, TX 73301" +211039,Lightning Charging Cable,1,14.95,06/17/19 08:30,"563 2nd St, Los Angeles, CA 90001" +211040,Wired Headphones,1,11.99,06/16/19 21:38,"558 12th St, Los Angeles, CA 90001" +211041,Wired Headphones,1,11.99,06/13/19 17:24,"125 Madison St, Los Angeles, CA 90001" +211042,Lightning Charging Cable,1,14.95,06/09/19 14:34,"4 Pine St, Boston, MA 02215" +211043,USB-C Charging Cable,1,11.95,06/03/19 11:38,"556 7th St, San Francisco, CA 94016" +211044,USB-C Charging Cable,1,11.95,06/24/19 18:03,"957 6th St, Atlanta, GA 30301" +211045,AAA Batteries (4-pack),2,2.99,06/13/19 18:45,"343 Maple St, Atlanta, GA 30301" +211046,Apple Airpods Headphones,1,150,06/01/19 21:37,"93 Pine St, San Francisco, CA 94016" +211047,Lightning Charging Cable,2,14.95,06/02/19 20:04,"333 Pine St, San Francisco, CA 94016" +211048,Lightning Charging Cable,1,14.95,06/17/19 08:33,"308 4th St, Dallas, TX 75001" +211049,iPhone,1,700,06/10/19 16:56,"879 14th St, Boston, MA 02215" +211050,USB-C Charging Cable,1,11.95,06/08/19 19:22,"541 Park St, Dallas, TX 75001" +211051,AA Batteries (4-pack),1,3.84,06/25/19 21:56,"506 Walnut St, Boston, MA 02215" +211052,Apple Airpods Headphones,1,150,06/04/19 07:25,"709 Sunset St, Dallas, TX 75001" +211053,USB-C Charging Cable,1,11.95,06/09/19 22:26,"326 13th St, San Francisco, CA 94016" +211054,Google Phone,1,600,06/29/19 00:03,"420 11th St, San Francisco, CA 94016" +211055,27in 4K Gaming Monitor,1,389.99,06/14/19 09:34,"615 Cherry St, New York City, NY 10001" +211056,USB-C Charging Cable,1,11.95,06/17/19 11:38,"355 Willow St, Austin, TX 73301" +211057,Apple Airpods Headphones,1,150,06/17/19 16:22,"718 Center St, New York City, NY 10001" +211058,27in 4K Gaming Monitor,1,389.99,06/03/19 19:57,"141 Jackson St, San Francisco, CA 94016" +211059,Lightning Charging Cable,1,14.95,06/03/19 14:51,"681 South St, Los Angeles, CA 90001" +211060,AA Batteries (4-pack),2,3.84,06/29/19 12:54,"878 9th St, Atlanta, GA 30301" +211061,AA Batteries (4-pack),1,3.84,06/23/19 19:48,"422 Main St, Los Angeles, CA 90001" +211062,USB-C Charging Cable,1,11.95,06/28/19 17:19,"612 Hill St, Seattle, WA 98101" +211063,Vareebadd Phone,1,400,06/29/19 22:24,"102 Main St, Dallas, TX 75001" +211064,Bose SoundSport Headphones,1,99.99,06/08/19 12:30,"792 2nd St, New York City, NY 10001" +211065,Lightning Charging Cable,1,14.95,06/27/19 22:26,"13 South St, Los Angeles, CA 90001" +211066,34in Ultrawide Monitor,1,379.99,06/17/19 01:30,"674 South St, New York City, NY 10001" +211067,27in FHD Monitor,1,149.99,06/20/19 14:46,"47 Spruce St, Dallas, TX 75001" +211068,iPhone,1,700,06/08/19 12:49,"590 10th St, New York City, NY 10001" +211068,Lightning Charging Cable,2,14.95,06/08/19 12:49,"590 10th St, New York City, NY 10001" +211069,USB-C Charging Cable,1,11.95,06/30/19 11:07,"488 5th St, Los Angeles, CA 90001" +211070,27in FHD Monitor,1,149.99,06/22/19 19:19,"989 12th St, San Francisco, CA 94016" +211071,20in Monitor,1,109.99,06/11/19 09:39,"884 Maple St, San Francisco, CA 94016" +211071,Wired Headphones,1,11.99,06/11/19 09:39,"884 Maple St, San Francisco, CA 94016" +211072,Flatscreen TV,1,300,06/19/19 17:31,"345 Highland St, San Francisco, CA 94016" +211073,AA Batteries (4-pack),1,3.84,06/29/19 21:20,"574 Wilson St, San Francisco, CA 94016" +211074,Apple Airpods Headphones,1,150,06/16/19 19:35,"642 4th St, San Francisco, CA 94016" +211075,AA Batteries (4-pack),1,3.84,06/15/19 12:22,"71 South St, San Francisco, CA 94016" +211076,ThinkPad Laptop,1,999.99,06/12/19 09:20,"734 8th St, Boston, MA 02215" +211077,34in Ultrawide Monitor,1,379.99,06/03/19 11:36,"455 Forest St, Portland, OR 97035" +211078,Vareebadd Phone,1,400,06/14/19 13:11,"811 Lake St, San Francisco, CA 94016" +211079,Lightning Charging Cable,1,14.95,06/13/19 16:56,"173 Johnson St, Portland, ME 04101" +211080,AAA Batteries (4-pack),2,2.99,06/09/19 12:39,"411 10th St, Portland, OR 97035" +211081,Lightning Charging Cable,1,14.95,06/08/19 12:36,"564 Adams St, San Francisco, CA 94016" +211082,27in FHD Monitor,1,149.99,06/03/19 22:51,"916 10th St, San Francisco, CA 94016" +211083,USB-C Charging Cable,1,11.95,06/23/19 12:49,"691 Jackson St, Dallas, TX 75001" +211084,USB-C Charging Cable,1,11.95,06/07/19 08:30,"778 Main St, Dallas, TX 75001" +211085,Wired Headphones,1,11.99,06/04/19 16:21,"653 Meadow St, Portland, OR 97035" +211086,Wired Headphones,2,11.99,06/15/19 10:39,"88 Forest St, Dallas, TX 75001" +211087,ThinkPad Laptop,1,999.99,06/22/19 11:45,"926 Main St, San Francisco, CA 94016" +211087,Bose SoundSport Headphones,1,99.99,06/22/19 11:45,"926 Main St, San Francisco, CA 94016" +211088,USB-C Charging Cable,2,11.95,06/22/19 12:14,"62 14th St, San Francisco, CA 94016" +211089,Flatscreen TV,1,300,06/07/19 21:36,"397 1st St, Dallas, TX 75001" +211090,AAA Batteries (4-pack),2,2.99,06/14/19 08:39,"776 Church St, San Francisco, CA 94016" +211091,Lightning Charging Cable,1,14.95,06/29/19 07:31,"987 Cedar St, New York City, NY 10001" +211092,AA Batteries (4-pack),3,3.84,06/28/19 13:10,"658 Cedar St, New York City, NY 10001" +211093,Apple Airpods Headphones,1,150,06/27/19 21:30,"528 1st St, Portland, ME 04101" +211094,USB-C Charging Cable,1,11.95,06/18/19 18:28,"927 Main St, Boston, MA 02215" +211095,Macbook Pro Laptop,1,1700,06/04/19 23:05,"843 Lake St, Boston, MA 02215" +211096,Google Phone,1,600,06/30/19 10:55,"289 Spruce St, Atlanta, GA 30301" +211097,AA Batteries (4-pack),1,3.84,06/27/19 18:38,"872 8th St, Los Angeles, CA 90001" +211098,USB-C Charging Cable,1,11.95,06/22/19 10:40,"725 Washington St, Los Angeles, CA 90001" +211099,Apple Airpods Headphones,1,150,06/01/19 15:15,"200 Center St, Los Angeles, CA 90001" +211100,Apple Airpods Headphones,1,150,06/07/19 19:03,"620 Hill St, San Francisco, CA 94016" +211101,27in 4K Gaming Monitor,1,389.99,06/09/19 20:33,"393 Lake St, Seattle, WA 98101" +211102,34in Ultrawide Monitor,1,379.99,06/07/19 18:34,"212 Wilson St, San Francisco, CA 94016" +211103,Lightning Charging Cable,1,14.95,06/24/19 11:26,"832 West St, New York City, NY 10001" +211104,Apple Airpods Headphones,1,150,06/21/19 18:57,"142 North St, New York City, NY 10001" +211105,Bose SoundSport Headphones,1,99.99,06/01/19 05:50,"699 11th St, Austin, TX 73301" +211106,20in Monitor,1,109.99,06/26/19 21:40,"114 Elm St, New York City, NY 10001" +211107,27in FHD Monitor,1,149.99,06/28/19 12:20,"856 Highland St, Boston, MA 02215" +211108,ThinkPad Laptop,1,999.99,06/16/19 00:36,"272 Madison St, Austin, TX 73301" +211109,Bose SoundSport Headphones,1,99.99,06/13/19 23:12,"549 1st St, New York City, NY 10001" +211110,Apple Airpods Headphones,1,150,06/09/19 13:16,"622 Sunset St, Seattle, WA 98101" +211111,Lightning Charging Cable,1,14.95,06/20/19 15:12,"129 Jefferson St, New York City, NY 10001" +211112,27in FHD Monitor,1,149.99,06/29/19 14:12,"657 Meadow St, New York City, NY 10001" +211113,Apple Airpods Headphones,1,150,06/15/19 09:16,"890 Lakeview St, New York City, NY 10001" +211114,AA Batteries (4-pack),1,3.84,06/20/19 09:19,"522 Walnut St, Portland, OR 97035" +211115,Vareebadd Phone,1,400,06/01/19 18:02,"283 Maple St, San Francisco, CA 94016" +211116,Wired Headphones,2,11.99,06/23/19 16:48,"827 Center St, New York City, NY 10001" +211117,Wired Headphones,1,11.99,06/18/19 03:55,"360 South St, Atlanta, GA 30301" +211118,Flatscreen TV,1,300,06/07/19 23:57,"761 7th St, Los Angeles, CA 90001" +211119,Wired Headphones,1,11.99,06/01/19 22:10,"8 South St, Seattle, WA 98101" +211120,iPhone,1,700,06/23/19 17:39,"134 Lakeview St, Boston, MA 02215" +211121,Flatscreen TV,1,300,06/20/19 21:45,"379 Sunset St, Atlanta, GA 30301" +211122,AA Batteries (4-pack),1,3.84,06/14/19 13:49,"804 Adams St, Los Angeles, CA 90001" +211122,Lightning Charging Cable,1,14.95,06/14/19 13:49,"804 Adams St, Los Angeles, CA 90001" +211123,Wired Headphones,1,11.99,06/07/19 19:15,"478 Johnson St, Boston, MA 02215" +211123,27in FHD Monitor,1,149.99,06/07/19 19:15,"478 Johnson St, Boston, MA 02215" +211124,USB-C Charging Cable,1,11.95,06/17/19 09:16,"19 Jefferson St, San Francisco, CA 94016" +211125,Bose SoundSport Headphones,1,99.99,06/26/19 12:01,"523 Lincoln St, San Francisco, CA 94016" +211126,Lightning Charging Cable,1,14.95,06/20/19 01:43,"53 Dogwood St, Dallas, TX 75001" +211127,Lightning Charging Cable,1,14.95,06/19/19 20:43,"663 Johnson St, San Francisco, CA 94016" +211128,Bose SoundSport Headphones,1,99.99,06/07/19 19:52,"824 13th St, Los Angeles, CA 90001" +211129,AA Batteries (4-pack),2,3.84,06/27/19 12:02,"322 Dogwood St, Portland, ME 04101" +211130,AAA Batteries (4-pack),1,2.99,06/20/19 11:12,"249 6th St, San Francisco, CA 94016" +211131,USB-C Charging Cable,1,11.95,06/01/19 18:28,"344 Hill St, Boston, MA 02215" +211132,USB-C Charging Cable,1,11.95,06/10/19 08:47,"533 5th St, Portland, ME 04101" +211133,Apple Airpods Headphones,1,150,06/04/19 13:54,"81 Chestnut St, San Francisco, CA 94016" +211134,Flatscreen TV,1,300,06/20/19 14:41,"22 2nd St, Austin, TX 73301" +211135,USB-C Charging Cable,1,11.95,06/07/19 16:13,"51 5th St, New York City, NY 10001" +211136,27in 4K Gaming Monitor,1,389.99,06/05/19 22:04,"441 Lake St, San Francisco, CA 94016" +211137,Apple Airpods Headphones,1,150,06/14/19 13:24,"576 Church St, Seattle, WA 98101" +211138,USB-C Charging Cable,1,11.95,06/04/19 08:00,"302 Sunset St, Dallas, TX 75001" +211139,20in Monitor,1,109.99,06/13/19 12:00,"159 Pine St, San Francisco, CA 94016" +211140,AAA Batteries (4-pack),2,2.99,06/13/19 08:34,"371 West St, New York City, NY 10001" +211141,AA Batteries (4-pack),1,3.84,06/28/19 11:24,"178 Lakeview St, San Francisco, CA 94016" +211142,27in 4K Gaming Monitor,1,389.99,06/29/19 18:12,"594 Church St, San Francisco, CA 94016" +211143,Bose SoundSport Headphones,1,99.99,06/13/19 16:16,"653 Lakeview St, Austin, TX 73301" +211144,Bose SoundSport Headphones,1,99.99,06/20/19 11:35,"289 Maple St, Dallas, TX 75001" +211145,AAA Batteries (4-pack),1,2.99,06/17/19 13:01,"365 Sunset St, Atlanta, GA 30301" +211146,Apple Airpods Headphones,1,150,06/16/19 13:44,"266 1st St, San Francisco, CA 94016" +211147,20in Monitor,1,109.99,06/07/19 19:35,"3 Maple St, Los Angeles, CA 90001" +211148,Macbook Pro Laptop,1,1700,06/05/19 08:18,"241 Jefferson St, San Francisco, CA 94016" +211149,AAA Batteries (4-pack),2,2.99,06/30/19 17:27,"308 North St, Portland, OR 97035" +211150,27in FHD Monitor,1,149.99,06/01/19 11:19,"113 Walnut St, Austin, TX 73301" +211151,Bose SoundSport Headphones,1,99.99,06/04/19 14:05,"768 West St, New York City, NY 10001" +211152,USB-C Charging Cable,1,11.95,06/04/19 17:54,"112 Adams St, San Francisco, CA 94016" +211153,27in 4K Gaming Monitor,1,389.99,06/01/19 11:48,"26 Lake St, New York City, NY 10001" +211154,AAA Batteries (4-pack),2,2.99,06/11/19 11:57,"627 Jackson St, Boston, MA 02215" +211155,AAA Batteries (4-pack),4,2.99,06/17/19 12:14,"736 Adams St, Atlanta, GA 30301" +211156,Apple Airpods Headphones,1,150,06/30/19 19:18,"215 Adams St, Los Angeles, CA 90001" +211157,AA Batteries (4-pack),2,3.84,06/25/19 20:24,"585 Dogwood St, New York City, NY 10001" +211158,Lightning Charging Cable,1,14.95,06/08/19 10:54,"677 River St, Dallas, TX 75001" +211159,Wired Headphones,1,11.99,06/24/19 11:07,"155 Hill St, New York City, NY 10001" +211160,USB-C Charging Cable,2,11.95,06/12/19 09:44,"563 9th St, Boston, MA 02215" +211161,Lightning Charging Cable,1,14.95,06/29/19 12:43,"911 Forest St, Boston, MA 02215" +211162,AAA Batteries (4-pack),1,2.99,06/23/19 22:02,"812 8th St, San Francisco, CA 94016" +211163,Lightning Charging Cable,1,14.95,06/17/19 09:40,"443 Lakeview St, New York City, NY 10001" +211164,Lightning Charging Cable,1,14.95,06/21/19 18:32,"55 14th St, San Francisco, CA 94016" +211165,Wired Headphones,1,11.99,06/07/19 22:42,"520 10th St, San Francisco, CA 94016" +211166,USB-C Charging Cable,1,11.95,06/27/19 19:04,"102 Center St, Dallas, TX 75001" +211167,Google Phone,1,600,06/20/19 22:49,"643 Cedar St, Boston, MA 02215" +211168,AA Batteries (4-pack),1,3.84,06/22/19 23:49,"86 Cedar St, Portland, OR 97035" +211169,ThinkPad Laptop,1,999.99,06/21/19 15:17,"619 Pine St, San Francisco, CA 94016" +211170,Wired Headphones,1,11.99,06/29/19 10:57,"379 Dogwood St, New York City, NY 10001" +211171,USB-C Charging Cable,1,11.95,06/30/19 23:26,"481 Walnut St, Austin, TX 73301" +211172,USB-C Charging Cable,1,11.95,06/30/19 10:07,"447 Spruce St, Boston, MA 02215" +211173,34in Ultrawide Monitor,1,379.99,06/05/19 12:38,"512 Forest St, San Francisco, CA 94016" +211174,34in Ultrawide Monitor,1,379.99,06/22/19 22:01,"934 2nd St, Atlanta, GA 30301" +211175,USB-C Charging Cable,1,11.95,06/27/19 11:22,"248 Forest St, San Francisco, CA 94016" +211176,Apple Airpods Headphones,1,150,06/21/19 17:50,"683 11th St, New York City, NY 10001" +211177,Apple Airpods Headphones,1,150,06/18/19 12:46,"88 Hickory St, Portland, ME 04101" +211178,Google Phone,1,600,06/28/19 07:24,"231 11th St, Boston, MA 02215" +211179,Macbook Pro Laptop,1,1700,06/20/19 21:34,"723 Madison St, San Francisco, CA 94016" +211180,AA Batteries (4-pack),2,3.84,06/07/19 17:45,"697 Pine St, San Francisco, CA 94016" +211181,Lightning Charging Cable,1,14.95,06/25/19 06:42,"846 Wilson St, Dallas, TX 75001" +211182,AAA Batteries (4-pack),2,2.99,06/07/19 13:10,"431 Lakeview St, San Francisco, CA 94016" +211182,USB-C Charging Cable,1,11.95,06/07/19 13:10,"431 Lakeview St, San Francisco, CA 94016" +211183,Apple Airpods Headphones,1,150,06/30/19 15:43,"772 West St, New York City, NY 10001" +211184,Wired Headphones,1,11.99,06/24/19 20:52,"405 14th St, Dallas, TX 75001" +211185,AAA Batteries (4-pack),3,2.99,06/09/19 18:45,"67 8th St, Boston, MA 02215" +211186,iPhone,1,700,06/27/19 20:55,"98 Jefferson St, San Francisco, CA 94016" +211187,Flatscreen TV,1,300,06/04/19 10:53,"876 Sunset St, New York City, NY 10001" +211188,AA Batteries (4-pack),1,3.84,06/06/19 14:39,"72 Hickory St, Portland, OR 97035" +211189,Wired Headphones,1,11.99,06/08/19 19:14,"66 Cedar St, San Francisco, CA 94016" +211190,USB-C Charging Cable,1,11.95,06/09/19 12:04,"550 Willow St, Dallas, TX 75001" +211191,AAA Batteries (4-pack),1,2.99,06/30/19 10:58,"916 Highland St, Seattle, WA 98101" +211192,27in FHD Monitor,1,149.99,06/05/19 01:35,"711 Lakeview St, Atlanta, GA 30301" +211193,USB-C Charging Cable,1,11.95,06/15/19 17:36,"72 Pine St, Seattle, WA 98101" +211194,AAA Batteries (4-pack),2,2.99,06/11/19 13:04,"831 Johnson St, Los Angeles, CA 90001" +211195,Lightning Charging Cable,1,14.95,06/03/19 18:15,"903 Ridge St, Austin, TX 73301" +211196,iPhone,1,700,06/11/19 09:49,"722 Adams St, San Francisco, CA 94016" +211197,Apple Airpods Headphones,1,150,06/29/19 21:53,"26 Sunset St, Los Angeles, CA 90001" +211198,Vareebadd Phone,1,400,06/22/19 14:39,"819 5th St, Seattle, WA 98101" +211198,USB-C Charging Cable,1,11.95,06/22/19 14:39,"819 5th St, Seattle, WA 98101" +211199,AA Batteries (4-pack),4,3.84,06/16/19 15:49,"19 Sunset St, San Francisco, CA 94016" +211200,USB-C Charging Cable,1,11.95,06/05/19 19:50,"64 6th St, Atlanta, GA 30301" +211201,20in Monitor,1,109.99,06/23/19 12:24,"508 Forest St, Austin, TX 73301" +211202,AA Batteries (4-pack),2,3.84,06/29/19 01:52,"802 Elm St, San Francisco, CA 94016" +211203,AA Batteries (4-pack),1,3.84,06/21/19 16:14,"720 8th St, San Francisco, CA 94016" +211204,Google Phone,1,600,06/16/19 15:49,"939 6th St, Boston, MA 02215" +211205,Macbook Pro Laptop,1,1700,06/17/19 23:45,"47 Willow St, San Francisco, CA 94016" +211206,Apple Airpods Headphones,1,150,06/21/19 08:40,"536 4th St, Portland, ME 04101" +211207,Bose SoundSport Headphones,1,99.99,06/23/19 22:02,"504 Cedar St, San Francisco, CA 94016" +211208,Macbook Pro Laptop,1,1700,06/30/19 12:20,"742 8th St, Los Angeles, CA 90001" +211209,27in 4K Gaming Monitor,1,389.99,06/09/19 11:42,"34 Lakeview St, Dallas, TX 75001" +211210,Wired Headphones,1,11.99,06/05/19 00:03,"990 Pine St, Dallas, TX 75001" +211211,USB-C Charging Cable,1,11.95,06/17/19 08:33,"157 Adams St, San Francisco, CA 94016" +211212,AA Batteries (4-pack),3,3.84,06/16/19 11:47,"737 2nd St, Los Angeles, CA 90001" +211213,27in FHD Monitor,1,149.99,06/01/19 16:21,"723 Chestnut St, Portland, OR 97035" +211214,Wired Headphones,1,11.99,06/18/19 20:08,"585 4th St, San Francisco, CA 94016" +211215,USB-C Charging Cable,1,11.95,06/24/19 19:38,"729 7th St, San Francisco, CA 94016" +211216,ThinkPad Laptop,1,999.99,06/15/19 08:10,"728 Cedar St, Los Angeles, CA 90001" +211217,USB-C Charging Cable,1,11.95,06/01/19 10:38,"523 7th St, Los Angeles, CA 90001" +211218,USB-C Charging Cable,1,11.95,06/17/19 19:01,"319 Sunset St, Los Angeles, CA 90001" +211219,20in Monitor,1,109.99,06/08/19 20:36,"568 8th St, San Francisco, CA 94016" +211220,20in Monitor,1,109.99,06/16/19 17:14,"148 1st St, San Francisco, CA 94016" +211221,Macbook Pro Laptop,1,1700,06/08/19 22:07,"584 West St, Austin, TX 73301" +211222,USB-C Charging Cable,1,11.95,06/08/19 15:01,"680 Sunset St, Portland, OR 97035" +211223,Apple Airpods Headphones,1,150,06/18/19 18:23,"548 Highland St, San Francisco, CA 94016" +211224,Wired Headphones,1,11.99,06/13/19 12:28,"897 Adams St, Dallas, TX 75001" +211224,Lightning Charging Cable,2,14.95,06/13/19 12:28,"897 Adams St, Dallas, TX 75001" +211225,Bose SoundSport Headphones,1,99.99,06/22/19 13:49,"355 Highland St, San Francisco, CA 94016" +211226,AA Batteries (4-pack),1,3.84,06/04/19 12:23,"200 Hickory St, Los Angeles, CA 90001" +211227,27in FHD Monitor,1,149.99,06/16/19 10:44,"599 Willow St, New York City, NY 10001" +211228,AA Batteries (4-pack),1,3.84,06/27/19 07:37,"940 Cherry St, Los Angeles, CA 90001" +211229,Apple Airpods Headphones,1,150,06/23/19 12:27,"804 9th St, San Francisco, CA 94016" +211230,USB-C Charging Cable,1,11.95,06/08/19 07:24,"782 Jackson St, New York City, NY 10001" +211231,Lightning Charging Cable,1,14.95,06/09/19 14:30,"8 5th St, Atlanta, GA 30301" +211232,Wired Headphones,1,11.99,06/16/19 10:05,"435 Park St, Atlanta, GA 30301" +211233,27in 4K Gaming Monitor,1,389.99,06/18/19 20:46,"197 Lake St, Boston, MA 02215" +211234,34in Ultrawide Monitor,1,379.99,06/26/19 10:38,"221 5th St, Seattle, WA 98101" +211235,AAA Batteries (4-pack),1,2.99,06/16/19 19:27,"108 8th St, Dallas, TX 75001" +211236,AA Batteries (4-pack),1,3.84,06/10/19 18:15,"172 Walnut St, Seattle, WA 98101" +211237,Wired Headphones,1,11.99,06/04/19 19:10,"884 River St, Portland, OR 97035" +211238,USB-C Charging Cable,1,11.95,06/29/19 11:29,"259 Park St, Seattle, WA 98101" +211239,AA Batteries (4-pack),1,3.84,06/17/19 17:51,"57 Jackson St, Dallas, TX 75001" +211240,AAA Batteries (4-pack),1,2.99,06/28/19 13:37,"513 Madison St, Los Angeles, CA 90001" +211241,ThinkPad Laptop,1,999.99,06/25/19 16:15,"969 Park St, Boston, MA 02215" +211242,Wired Headphones,1,11.99,06/20/19 12:31,"359 Maple St, Los Angeles, CA 90001" +211243,Bose SoundSport Headphones,1,99.99,06/28/19 00:09,"549 2nd St, Boston, MA 02215" +211244,Wired Headphones,1,11.99,06/11/19 08:17,"751 River St, San Francisco, CA 94016" +211245,AA Batteries (4-pack),1,3.84,06/26/19 10:17,"16 8th St, San Francisco, CA 94016" +211246,USB-C Charging Cable,1,11.95,06/11/19 19:03,"479 Hickory St, Dallas, TX 75001" +211247,27in 4K Gaming Monitor,1,389.99,06/11/19 18:49,"319 Adams St, Boston, MA 02215" +211248,27in 4K Gaming Monitor,1,389.99,06/18/19 19:13,"153 5th St, San Francisco, CA 94016" +211249,AAA Batteries (4-pack),1,2.99,06/16/19 12:54,"992 8th St, San Francisco, CA 94016" +211250,Lightning Charging Cable,1,14.95,06/07/19 19:14,"267 5th St, Portland, OR 97035" +211251,27in FHD Monitor,1,149.99,06/13/19 12:34,"804 Spruce St, San Francisco, CA 94016" +211252,27in FHD Monitor,1,149.99,06/03/19 11:31,"857 Wilson St, Austin, TX 73301" +211253,27in FHD Monitor,1,149.99,06/28/19 17:54,"978 Pine St, Los Angeles, CA 90001" +211254,Wired Headphones,1,11.99,06/25/19 13:07,"672 Wilson St, Seattle, WA 98101" +211255,Wired Headphones,1,11.99,06/17/19 16:12,"223 11th St, New York City, NY 10001" +211255,27in FHD Monitor,1,149.99,06/17/19 16:12,"223 11th St, New York City, NY 10001" +211256,USB-C Charging Cable,1,11.95,06/14/19 13:16,"808 1st St, Portland, OR 97035" +211257,Lightning Charging Cable,1,14.95,06/25/19 00:19,"831 Spruce St, Los Angeles, CA 90001" +211258,Apple Airpods Headphones,1,150,06/02/19 11:32,"191 South St, San Francisco, CA 94016" +211259,AA Batteries (4-pack),1,3.84,06/08/19 17:59,"721 Lake St, Los Angeles, CA 90001" +211260,iPhone,1,700,06/17/19 07:56,"569 Maple St, Atlanta, GA 30301" +211261,Wired Headphones,2,11.99,06/15/19 13:56,"31 Main St, Dallas, TX 75001" +211262,USB-C Charging Cable,1,11.95,06/19/19 15:28,"762 Willow St, Atlanta, GA 30301" +211263,iPhone,1,700,06/12/19 22:53,"435 Adams St, Seattle, WA 98101" +211264,Apple Airpods Headphones,1,150,06/14/19 16:46,"155 Washington St, San Francisco, CA 94016" +211265,ThinkPad Laptop,1,999.99,06/24/19 16:44,"24 Lake St, Boston, MA 02215" +211266,LG Dryer,1,600.0,06/06/19 20:35,"749 Wilson St, Seattle, WA 98101" +211267,USB-C Charging Cable,1,11.95,06/17/19 21:44,"183 Main St, Seattle, WA 98101" +211268,AA Batteries (4-pack),1,3.84,06/12/19 15:35,"603 North St, Boston, MA 02215" +211269,USB-C Charging Cable,1,11.95,06/12/19 18:27,"526 Spruce St, San Francisco, CA 94016" +211270,Google Phone,1,600,06/24/19 17:06,"987 4th St, San Francisco, CA 94016" +211271,Wired Headphones,1,11.99,06/13/19 15:00,"411 13th St, Dallas, TX 75001" +211272,34in Ultrawide Monitor,1,379.99,06/28/19 22:07,"786 5th St, Boston, MA 02215" +211273,Bose SoundSport Headphones,1,99.99,06/14/19 14:13,"81 Hickory St, San Francisco, CA 94016" +211274,ThinkPad Laptop,1,999.99,06/20/19 19:31,"691 Lakeview St, Los Angeles, CA 90001" +211275,Wired Headphones,1,11.99,06/13/19 21:02,"591 11th St, Portland, OR 97035" +211276,Bose SoundSport Headphones,1,99.99,06/19/19 14:11,"978 Madison St, Dallas, TX 75001" +211277,AA Batteries (4-pack),1,3.84,06/06/19 17:35,"999 Washington St, Portland, ME 04101" +211278,AA Batteries (4-pack),1,3.84,06/10/19 22:14,"177 Hill St, New York City, NY 10001" +211279,Bose SoundSport Headphones,1,99.99,06/30/19 20:10,"293 5th St, San Francisco, CA 94016" +211280,20in Monitor,1,109.99,06/15/19 13:55,"888 Hill St, New York City, NY 10001" +211281,Apple Airpods Headphones,1,150,06/01/19 20:44,"472 South St, Los Angeles, CA 90001" +211282,27in 4K Gaming Monitor,1,389.99,06/15/19 16:37,"494 Park St, Boston, MA 02215" +211283,USB-C Charging Cable,1,11.95,06/18/19 23:48,"70 Walnut St, Portland, OR 97035" +211284,AA Batteries (4-pack),1,3.84,06/02/19 16:42,"720 1st St, New York City, NY 10001" +211285,Lightning Charging Cable,2,14.95,06/17/19 14:33,"23 6th St, New York City, NY 10001" +211286,Apple Airpods Headphones,1,150,06/27/19 20:39,"863 Sunset St, New York City, NY 10001" +211287,Bose SoundSport Headphones,1,99.99,06/16/19 11:04,"750 Walnut St, San Francisco, CA 94016" +211288,AA Batteries (4-pack),1,3.84,06/07/19 11:49,"61 9th St, Los Angeles, CA 90001" +211289,Wired Headphones,1,11.99,06/04/19 11:29,"526 Wilson St, San Francisco, CA 94016" +211290,Apple Airpods Headphones,1,150,06/23/19 14:22,"382 Johnson St, Austin, TX 73301" +211291,Wired Headphones,1,11.99,06/22/19 16:13,"937 Elm St, Seattle, WA 98101" +211292,Apple Airpods Headphones,1,150,06/06/19 20:23,"520 1st St, San Francisco, CA 94016" +211293,iPhone,1,700,06/11/19 06:49,"924 South St, San Francisco, CA 94016" +211294,AAA Batteries (4-pack),1,2.99,06/28/19 17:45,"792 Park St, San Francisco, CA 94016" +211295,USB-C Charging Cable,1,11.95,06/13/19 18:53,"3 11th St, Los Angeles, CA 90001" +211296,Apple Airpods Headphones,1,150,06/29/19 16:50,"437 Lakeview St, Dallas, TX 75001" +211297,AAA Batteries (4-pack),1,2.99,06/22/19 18:33,"8 13th St, Seattle, WA 98101" +211298,Wired Headphones,1,11.99,06/26/19 20:25,"197 Lincoln St, Boston, MA 02215" +211299,Google Phone,1,600,06/20/19 13:03,"653 Spruce St, New York City, NY 10001" +211299,USB-C Charging Cable,1,11.95,06/20/19 13:03,"653 Spruce St, New York City, NY 10001" +211300,Flatscreen TV,1,300,06/09/19 10:57,"92 Washington St, Atlanta, GA 30301" +211301,Apple Airpods Headphones,1,150,06/09/19 10:47,"505 Johnson St, Austin, TX 73301" +211302,34in Ultrawide Monitor,1,379.99,06/17/19 17:45,"243 Hill St, New York City, NY 10001" +211303,20in Monitor,1,109.99,06/02/19 11:53,"407 West St, Los Angeles, CA 90001" +211304,Lightning Charging Cable,2,14.95,06/22/19 23:06,"552 Lake St, Atlanta, GA 30301" +211305,Lightning Charging Cable,1,14.95,06/20/19 12:12,"62 11th St, New York City, NY 10001" +211306,27in FHD Monitor,1,149.99,06/26/19 12:21,"774 Cedar St, Los Angeles, CA 90001" +211307,Apple Airpods Headphones,1,150,06/14/19 11:18,"560 Wilson St, Los Angeles, CA 90001" +211308,USB-C Charging Cable,1,11.95,06/26/19 20:32,"49 Lincoln St, Los Angeles, CA 90001" +211309,USB-C Charging Cable,2,11.95,06/04/19 09:00,"771 Lakeview St, Los Angeles, CA 90001" +211310,AAA Batteries (4-pack),2,2.99,06/09/19 12:21,"520 Cedar St, New York City, NY 10001" +211311,USB-C Charging Cable,1,11.95,06/14/19 16:47,"291 Cherry St, San Francisco, CA 94016" +211312,USB-C Charging Cable,1,11.95,06/01/19 18:12,"809 Forest St, New York City, NY 10001" +211313,USB-C Charging Cable,1,11.95,06/01/19 12:19,"764 Elm St, Boston, MA 02215" +211314,Bose SoundSport Headphones,1,99.99,06/23/19 01:11,"160 Lake St, New York City, NY 10001" +211315,AAA Batteries (4-pack),2,2.99,06/26/19 10:07,"372 4th St, Austin, TX 73301" +211316,Apple Airpods Headphones,1,150,06/23/19 22:53,"122 Lakeview St, Los Angeles, CA 90001" +211317,Lightning Charging Cable,1,14.95,06/17/19 07:49,"694 Center St, San Francisco, CA 94016" +211318,AAA Batteries (4-pack),1,2.99,06/11/19 12:24,"126 Park St, New York City, NY 10001" +211319,Bose SoundSport Headphones,1,99.99,06/26/19 10:40,"266 Lakeview St, New York City, NY 10001" +211320,iPhone,1,700,06/29/19 21:14,"793 Hickory St, Los Angeles, CA 90001" +211321,AAA Batteries (4-pack),1,2.99,06/20/19 22:19,"842 River St, San Francisco, CA 94016" +211322,AA Batteries (4-pack),1,3.84,06/01/19 20:36,"911 13th St, San Francisco, CA 94016" +211323,USB-C Charging Cable,1,11.95,06/21/19 23:27,"621 Walnut St, Portland, OR 97035" +211323,27in FHD Monitor,1,149.99,06/21/19 23:27,"621 Walnut St, Portland, OR 97035" +211324,Flatscreen TV,1,300,06/28/19 12:58,"774 Johnson St, Los Angeles, CA 90001" +211325,Bose SoundSport Headphones,1,99.99,06/17/19 22:52,"758 12th St, Austin, TX 73301" +211326,USB-C Charging Cable,1,11.95,06/28/19 22:53,"701 Lincoln St, Los Angeles, CA 90001" +211327,Apple Airpods Headphones,1,150,06/15/19 00:26,"521 Madison St, Boston, MA 02215" +211328,Apple Airpods Headphones,1,150,06/06/19 13:30,"427 8th St, San Francisco, CA 94016" +211329,Wired Headphones,1,11.99,06/17/19 12:51,"887 North St, San Francisco, CA 94016" +211330,27in FHD Monitor,1,149.99,06/05/19 18:27,"445 Madison St, Atlanta, GA 30301" +211331,Wired Headphones,1,11.99,06/19/19 18:57,"59 14th St, Austin, TX 73301" +211332,AAA Batteries (4-pack),1,2.99,06/19/19 01:13,"678 Hickory St, Los Angeles, CA 90001" +211333,34in Ultrawide Monitor,1,379.99,06/17/19 08:04,"943 14th St, San Francisco, CA 94016" +211334,Lightning Charging Cable,1,14.95,06/30/19 09:33,"941 13th St, San Francisco, CA 94016" +211335,USB-C Charging Cable,1,11.95,06/30/19 09:50,"400 Adams St, Boston, MA 02215" +211336,Lightning Charging Cable,1,14.95,06/07/19 00:15,"609 6th St, San Francisco, CA 94016" +211337,34in Ultrawide Monitor,1,379.99,06/06/19 21:36,"567 11th St, San Francisco, CA 94016" +211338,Wired Headphones,1,11.99,06/22/19 16:13,"532 4th St, Portland, OR 97035" +211339,LG Washing Machine,1,600.0,06/23/19 18:43,"53 6th St, Los Angeles, CA 90001" +211340,27in FHD Monitor,1,149.99,06/11/19 23:49,"696 Johnson St, Portland, OR 97035" +211341,AAA Batteries (4-pack),1,2.99,06/12/19 13:41,"185 Meadow St, New York City, NY 10001" +211342,Lightning Charging Cable,1,14.95,06/16/19 14:54,"553 Park St, Boston, MA 02215" +211343,USB-C Charging Cable,1,11.95,06/27/19 16:13,"147 Jefferson St, Boston, MA 02215" +211344,Vareebadd Phone,1,400,06/18/19 10:24,"168 Elm St, San Francisco, CA 94016" +211344,Wired Headphones,1,11.99,06/18/19 10:24,"168 Elm St, San Francisco, CA 94016" +211345,iPhone,1,700,06/21/19 12:49,"458 Cedar St, Austin, TX 73301" +211346,Lightning Charging Cable,1,14.95,06/11/19 21:28,"1 Lake St, San Francisco, CA 94016" +211347,Bose SoundSport Headphones,1,99.99,06/07/19 18:56,"802 11th St, Portland, OR 97035" +211348,AAA Batteries (4-pack),1,2.99,06/08/19 14:23,"575 Washington St, New York City, NY 10001" +211349,Bose SoundSport Headphones,1,99.99,06/06/19 19:39,"191 14th St, Los Angeles, CA 90001" +211350,Lightning Charging Cable,1,14.95,06/20/19 16:11,"47 1st St, San Francisco, CA 94016" +211351,iPhone,1,700,06/24/19 17:34,"529 Hill St, Los Angeles, CA 90001" +211352,Google Phone,1,600,06/06/19 15:44,"864 Hickory St, New York City, NY 10001" +211353,Bose SoundSport Headphones,1,99.99,06/27/19 11:56,"574 Cedar St, San Francisco, CA 94016" +211354,AAA Batteries (4-pack),3,2.99,06/27/19 15:40,"607 Pine St, Boston, MA 02215" +211355,Lightning Charging Cable,1,14.95,06/22/19 09:41,"991 River St, New York City, NY 10001" +211355,AA Batteries (4-pack),1,3.84,06/22/19 09:41,"991 River St, New York City, NY 10001" +211356,AAA Batteries (4-pack),1,2.99,06/23/19 19:14,"507 Hickory St, Seattle, WA 98101" +211357,Flatscreen TV,1,300,06/22/19 20:44,"758 River St, San Francisco, CA 94016" +211358,Lightning Charging Cable,1,14.95,06/26/19 17:16,"46 8th St, Atlanta, GA 30301" +211359,USB-C Charging Cable,2,11.95,06/17/19 00:19,"460 South St, Portland, ME 04101" +211360,Bose SoundSport Headphones,1,99.99,06/07/19 11:07,"317 Lincoln St, San Francisco, CA 94016" +211361,Wired Headphones,1,11.99,06/29/19 15:45,"237 Elm St, San Francisco, CA 94016" +211362,27in 4K Gaming Monitor,1,389.99,06/19/19 09:09,"427 Spruce St, San Francisco, CA 94016" +211363,Flatscreen TV,1,300,06/25/19 14:41,"629 Jefferson St, Austin, TX 73301" +211364,Wired Headphones,1,11.99,06/20/19 17:30,"521 River St, Los Angeles, CA 90001" +211365,AA Batteries (4-pack),2,3.84,06/02/19 14:25,"988 West St, San Francisco, CA 94016" +211366,Wired Headphones,1,11.99,06/20/19 13:45,"114 4th St, Portland, OR 97035" +211367,Vareebadd Phone,1,400,06/06/19 21:15,"971 Ridge St, Portland, ME 04101" +211368,Google Phone,1,600,06/20/19 17:37,"142 Forest St, Boston, MA 02215" +211369,AAA Batteries (4-pack),1,2.99,06/03/19 13:09,"853 4th St, Boston, MA 02215" +211370,AA Batteries (4-pack),1,3.84,06/03/19 08:50,"955 6th St, New York City, NY 10001" +211371,Apple Airpods Headphones,1,150,06/06/19 16:07,"558 14th St, Los Angeles, CA 90001" +211372,AA Batteries (4-pack),1,3.84,06/25/19 22:37,"522 5th St, San Francisco, CA 94016" +211373,AAA Batteries (4-pack),1,2.99,06/21/19 11:05,"811 Spruce St, New York City, NY 10001" +211374,USB-C Charging Cable,1,11.95,06/21/19 09:13,"919 Walnut St, San Francisco, CA 94016" +211375,AA Batteries (4-pack),1,3.84,06/18/19 15:23,"246 6th St, Los Angeles, CA 90001" +211376,AAA Batteries (4-pack),1,2.99,06/01/19 21:27,"143 8th St, Seattle, WA 98101" +211377,Bose SoundSport Headphones,1,99.99,06/20/19 07:53,"912 River St, Boston, MA 02215" +211378,Google Phone,1,600,06/30/19 20:31,"887 Jefferson St, Atlanta, GA 30301" +211379,AA Batteries (4-pack),1,3.84,06/25/19 21:10,"340 Jackson St, New York City, NY 10001" +211380,27in FHD Monitor,1,149.99,06/10/19 18:18,"64 7th St, Dallas, TX 75001" +211381,USB-C Charging Cable,1,11.95,06/23/19 09:24,"506 13th St, Los Angeles, CA 90001" +211382,34in Ultrawide Monitor,1,379.99,06/19/19 18:16,"183 Sunset St, San Francisco, CA 94016" +211383,Lightning Charging Cable,1,14.95,06/04/19 07:10,"559 West St, San Francisco, CA 94016" +211384,20in Monitor,1,109.99,06/01/19 19:18,"576 Jefferson St, New York City, NY 10001" +211385,AAA Batteries (4-pack),2,2.99,06/11/19 06:16,"889 Walnut St, Portland, OR 97035" +211386,Apple Airpods Headphones,1,150,06/05/19 09:10,"771 Main St, San Francisco, CA 94016" +211387,34in Ultrawide Monitor,1,379.99,06/26/19 13:38,"844 2nd St, Los Angeles, CA 90001" +211388,iPhone,1,700,06/15/19 11:14,"45 Main St, Seattle, WA 98101" +211389,AA Batteries (4-pack),1,3.84,06/20/19 16:19,"300 Forest St, San Francisco, CA 94016" +211390,iPhone,1,700,06/22/19 23:11,"899 Spruce St, Boston, MA 02215" +211391,27in 4K Gaming Monitor,1,389.99,06/30/19 18:35,"479 5th St, Los Angeles, CA 90001" +211392,20in Monitor,1,109.99,06/07/19 16:23,"141 Lakeview St, Dallas, TX 75001" +211393,LG Dryer,1,600.0,06/18/19 09:31,"162 11th St, San Francisco, CA 94016" +211394,Bose SoundSport Headphones,1,99.99,06/02/19 09:14,"402 14th St, San Francisco, CA 94016" +211395,27in FHD Monitor,1,149.99,06/12/19 22:23,"544 9th St, Seattle, WA 98101" +211396,AAA Batteries (4-pack),2,2.99,06/26/19 15:55,"493 Center St, Dallas, TX 75001" +211397,AA Batteries (4-pack),1,3.84,06/02/19 11:28,"936 River St, Seattle, WA 98101" +211398,ThinkPad Laptop,1,999.99,06/10/19 13:38,"175 10th St, Los Angeles, CA 90001" +211399,20in Monitor,1,109.99,06/12/19 23:24,"997 Jackson St, San Francisco, CA 94016" +211400,AA Batteries (4-pack),1,3.84,06/02/19 09:48,"892 Park St, Dallas, TX 75001" +211401,Wired Headphones,1,11.99,06/22/19 16:26,"907 Jefferson St, San Francisco, CA 94016" +211402,AAA Batteries (4-pack),1,2.99,06/19/19 20:43,"401 6th St, Los Angeles, CA 90001" +211403,Google Phone,1,600,06/15/19 18:30,"942 Jackson St, Austin, TX 73301" +211404,Lightning Charging Cable,1,14.95,06/28/19 19:55,"332 Lincoln St, San Francisco, CA 94016" +211405,Bose SoundSport Headphones,1,99.99,06/05/19 22:09,"177 Walnut St, San Francisco, CA 94016" +211406,20in Monitor,1,109.99,06/26/19 10:07,"803 River St, Atlanta, GA 30301" +211407,Bose SoundSport Headphones,1,99.99,06/12/19 21:32,"940 1st St, Los Angeles, CA 90001" +211408,Lightning Charging Cable,1,14.95,06/07/19 00:14,"670 Hill St, Portland, OR 97035" +211409,Lightning Charging Cable,1,14.95,06/06/19 17:46,"811 Main St, Portland, OR 97035" +211410,iPhone,1,700,06/29/19 18:18,"201 4th St, Dallas, TX 75001" +211410,Apple Airpods Headphones,1,150,06/29/19 18:18,"201 4th St, Dallas, TX 75001" +211411,Apple Airpods Headphones,1,150,06/22/19 19:06,"810 Elm St, San Francisco, CA 94016" +211412,27in 4K Gaming Monitor,1,389.99,06/26/19 15:19,"350 Highland St, San Francisco, CA 94016" +211413,AAA Batteries (4-pack),1,2.99,06/21/19 11:07,"702 Lake St, Atlanta, GA 30301" +211414,Wired Headphones,1,11.99,06/09/19 22:12,"864 2nd St, Dallas, TX 75001" +211415,Bose SoundSport Headphones,1,99.99,06/02/19 14:41,"210 Main St, Dallas, TX 75001" +211416,20in Monitor,1,109.99,06/19/19 17:37,"81 Lakeview St, Los Angeles, CA 90001" +211417,USB-C Charging Cable,1,11.95,06/12/19 14:37,"469 Washington St, Los Angeles, CA 90001" +211418,AA Batteries (4-pack),1,3.84,06/23/19 12:27,"681 12th St, Seattle, WA 98101" +211419,27in 4K Gaming Monitor,1,389.99,06/24/19 19:23,"476 North St, New York City, NY 10001" +211420,iPhone,1,700,06/19/19 19:54,"79 Hill St, San Francisco, CA 94016" +211420,Wired Headphones,1,11.99,06/19/19 19:54,"79 Hill St, San Francisco, CA 94016" +211421,AA Batteries (4-pack),2,3.84,06/12/19 11:01,"104 Lake St, Los Angeles, CA 90001" +211422,Apple Airpods Headphones,1,150,06/25/19 22:30,"853 Chestnut St, San Francisco, CA 94016" +211423,USB-C Charging Cable,1,11.95,06/07/19 10:43,"171 Park St, Portland, OR 97035" +211424,Apple Airpods Headphones,1,150,06/15/19 21:19,"781 2nd St, New York City, NY 10001" +211425,USB-C Charging Cable,1,11.95,06/24/19 21:03,"561 7th St, New York City, NY 10001" +211426,Lightning Charging Cable,1,14.95,06/23/19 20:48,"73 Washington St, San Francisco, CA 94016" +211427,AA Batteries (4-pack),1,3.84,06/17/19 21:20,"833 Forest St, Seattle, WA 98101" +211428,USB-C Charging Cable,1,11.95,06/09/19 01:34,"62 8th St, Boston, MA 02215" +211429,20in Monitor,1,109.99,06/01/19 22:11,"266 Adams St, Los Angeles, CA 90001" +211430,AAA Batteries (4-pack),1,2.99,06/17/19 11:01,"146 Maple St, San Francisco, CA 94016" +211431,AA Batteries (4-pack),1,3.84,06/21/19 16:50,"488 9th St, Austin, TX 73301" +211432,Bose SoundSport Headphones,1,99.99,06/26/19 12:52,"687 1st St, Portland, OR 97035" +211433,Google Phone,1,600,06/06/19 11:42,"993 Park St, Dallas, TX 75001" +211434,27in FHD Monitor,1,149.99,06/27/19 00:08,"911 Jefferson St, San Francisco, CA 94016" +211435,AAA Batteries (4-pack),1,2.99,06/01/19 11:30,"143 Hickory St, Los Angeles, CA 90001" +211435,iPhone,1,700,06/01/19 11:30,"143 Hickory St, Los Angeles, CA 90001" +211436,USB-C Charging Cable,1,11.95,06/06/19 17:14,"565 Center St, San Francisco, CA 94016" +211437,27in FHD Monitor,1,149.99,06/02/19 00:47,"563 Elm St, Los Angeles, CA 90001" +211438,Wired Headphones,1,11.99,06/07/19 09:42,"961 Lincoln St, New York City, NY 10001" +211439,AA Batteries (4-pack),1,3.84,06/07/19 16:12,"766 Cherry St, New York City, NY 10001" +211440,AA Batteries (4-pack),1,3.84,06/02/19 16:57,"419 Jefferson St, New York City, NY 10001" +211441,Wired Headphones,1,11.99,06/26/19 20:52,"785 Spruce St, San Francisco, CA 94016" +211442,Google Phone,1,600,06/01/19 19:28,"576 Ridge St, Seattle, WA 98101" +211442,Bose SoundSport Headphones,1,99.99,06/01/19 19:28,"576 Ridge St, Seattle, WA 98101" +211443,USB-C Charging Cable,1,11.95,06/02/19 15:41,"299 Lakeview St, San Francisco, CA 94016" +211444,Bose SoundSport Headphones,1,99.99,06/15/19 21:51,"657 Hickory St, Boston, MA 02215" +211445,Apple Airpods Headphones,1,150,06/12/19 05:53,"560 West St, Los Angeles, CA 90001" +211446,Wired Headphones,1,11.99,06/29/19 20:21,"398 Center St, New York City, NY 10001" +211447,34in Ultrawide Monitor,1,379.99,06/08/19 21:50,"724 7th St, San Francisco, CA 94016" +211448,USB-C Charging Cable,1,11.95,06/02/19 08:23,"899 11th St, Atlanta, GA 30301" +211449,Bose SoundSport Headphones,1,99.99,06/06/19 18:13,"226 8th St, San Francisco, CA 94016" +211450,Lightning Charging Cable,1,14.95,06/15/19 16:35,"647 Main St, Los Angeles, CA 90001" +211451,AA Batteries (4-pack),3,3.84,06/01/19 11:10,"987 Forest St, Austin, TX 73301" +211452,Lightning Charging Cable,1,14.95,06/06/19 20:50,"376 Cedar St, New York City, NY 10001" +211453,AA Batteries (4-pack),1,3.84,06/24/19 15:46,"751 10th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +211454,iPhone,1,700,06/18/19 10:20,"66 Center St, San Francisco, CA 94016" +211455,Apple Airpods Headphones,1,150,06/19/19 20:27,"980 Jackson St, San Francisco, CA 94016" +211456,Flatscreen TV,1,300,06/15/19 21:49,"268 South St, Seattle, WA 98101" +211457,Wired Headphones,1,11.99,06/02/19 17:01,"127 North St, Los Angeles, CA 90001" +211458,USB-C Charging Cable,1,11.95,06/02/19 08:30,"482 5th St, Boston, MA 02215" +211459,AAA Batteries (4-pack),1,2.99,06/07/19 20:05,"297 Maple St, Austin, TX 73301" +211460,Apple Airpods Headphones,1,150,06/04/19 12:16,"934 13th St, Boston, MA 02215" +211461,LG Dryer,1,600.0,06/15/19 07:33,"869 8th St, San Francisco, CA 94016" +211461,AAA Batteries (4-pack),4,2.99,06/15/19 07:33,"869 8th St, San Francisco, CA 94016" +211462,Wired Headphones,1,11.99,06/07/19 09:47,"163 5th St, Austin, TX 73301" +211463,Bose SoundSport Headphones,1,99.99,06/26/19 19:10,"867 5th St, Los Angeles, CA 90001" +211464,ThinkPad Laptop,1,999.99,06/15/19 17:30,"658 Elm St, Dallas, TX 75001" +211465,AA Batteries (4-pack),2,3.84,06/13/19 17:05,"301 West St, Los Angeles, CA 90001" +211466,Wired Headphones,1,11.99,06/26/19 14:22,"923 Ridge St, Seattle, WA 98101" +211467,AA Batteries (4-pack),4,3.84,06/25/19 18:22,"338 10th St, Atlanta, GA 30301" +211468,LG Dryer,1,600.0,06/01/19 10:08,"381 Hickory St, Austin, TX 73301" +211469,Flatscreen TV,1,300,06/13/19 12:30,"780 Pine St, New York City, NY 10001" +211470,Apple Airpods Headphones,1,150,06/01/19 22:27,"295 Pine St, Portland, OR 97035" +211471,Apple Airpods Headphones,1,150,06/05/19 13:00,"963 River St, Dallas, TX 75001" +211472,USB-C Charging Cable,1,11.95,06/20/19 11:14,"524 Cherry St, Los Angeles, CA 90001" +211473,Lightning Charging Cable,1,14.95,06/06/19 18:02,"359 West St, Austin, TX 73301" +211474,AA Batteries (4-pack),1,3.84,06/24/19 08:40,"952 Adams St, San Francisco, CA 94016" +211475,USB-C Charging Cable,1,11.95,06/04/19 01:14,"525 Johnson St, Dallas, TX 75001" +211476,Bose SoundSport Headphones,1,99.99,06/07/19 22:24,"578 Willow St, Seattle, WA 98101" +211477,AAA Batteries (4-pack),1,2.99,06/08/19 22:33,"299 14th St, Los Angeles, CA 90001" +211478,20in Monitor,1,109.99,06/13/19 18:02,"36 Chestnut St, Portland, OR 97035" +211479,27in FHD Monitor,1,149.99,06/08/19 18:00,"670 Adams St, Los Angeles, CA 90001" +211480,Apple Airpods Headphones,1,150,06/16/19 17:53,"810 Lake St, San Francisco, CA 94016" +211481,AA Batteries (4-pack),1,3.84,06/12/19 11:06,"458 Cedar St, Boston, MA 02215" +211482,Wired Headphones,1,11.99,06/30/19 11:28,"205 Cherry St, Dallas, TX 75001" +211483,Apple Airpods Headphones,1,150,06/19/19 08:32,"277 South St, San Francisco, CA 94016" +211484,Lightning Charging Cable,1,14.95,06/14/19 19:35,"140 10th St, New York City, NY 10001" +211485,AA Batteries (4-pack),2,3.84,06/03/19 11:36,"459 Walnut St, Los Angeles, CA 90001" +211486,Apple Airpods Headphones,1,150,06/27/19 12:41,"783 Pine St, Portland, OR 97035" +211487,AA Batteries (4-pack),1,3.84,06/13/19 11:39,"565 10th St, Portland, ME 04101" +211488,Bose SoundSport Headphones,2,99.99,06/29/19 19:23,"823 Spruce St, Boston, MA 02215" +211489,USB-C Charging Cable,1,11.95,06/01/19 09:23,"557 Elm St, Atlanta, GA 30301" +211490,Bose SoundSport Headphones,1,99.99,06/19/19 19:40,"201 Lake St, San Francisco, CA 94016" +211491,Flatscreen TV,1,300,06/28/19 23:11,"625 Highland St, Austin, TX 73301" +211492,Macbook Pro Laptop,1,1700,06/24/19 23:01,"296 1st St, Los Angeles, CA 90001" +211493,Lightning Charging Cable,1,14.95,06/23/19 18:10,"881 9th St, Atlanta, GA 30301" +211494,34in Ultrawide Monitor,1,379.99,06/30/19 19:17,"603 Jackson St, San Francisco, CA 94016" +211495,AAA Batteries (4-pack),1,2.99,06/05/19 16:57,"843 Elm St, Seattle, WA 98101" +211496,Bose SoundSport Headphones,1,99.99,06/10/19 02:35,"964 Sunset St, Los Angeles, CA 90001" +211497,ThinkPad Laptop,1,999.99,06/24/19 22:33,"940 10th St, Los Angeles, CA 90001" +211497,AA Batteries (4-pack),1,3.84,06/24/19 22:33,"940 10th St, Los Angeles, CA 90001" +211498,Wired Headphones,1,11.99,06/16/19 13:51,"712 South St, San Francisco, CA 94016" +211499,iPhone,1,700,06/17/19 09:47,"955 Church St, San Francisco, CA 94016" +211500,Apple Airpods Headphones,1,150,06/12/19 12:35,"860 Church St, San Francisco, CA 94016" +211501,AA Batteries (4-pack),1,3.84,06/21/19 01:38,"992 Washington St, Atlanta, GA 30301" +211502,Lightning Charging Cable,1,14.95,06/02/19 09:38,"822 Washington St, New York City, NY 10001" +211503,Apple Airpods Headphones,1,150,06/30/19 14:00,"905 Ridge St, Boston, MA 02215" +211504,Wired Headphones,1,11.99,06/10/19 19:48,"409 Cedar St, Dallas, TX 75001" +211505,AAA Batteries (4-pack),1,2.99,06/19/19 16:08,"346 Forest St, Atlanta, GA 30301" +211506,iPhone,1,700,06/08/19 17:18,"462 Madison St, Los Angeles, CA 90001" +211507,Wired Headphones,2,11.99,06/25/19 23:09,"798 Jackson St, San Francisco, CA 94016" +211508,Lightning Charging Cable,1,14.95,06/28/19 06:37,"228 Walnut St, Dallas, TX 75001" +211509,Vareebadd Phone,1,400,06/14/19 21:20,"575 9th St, Los Angeles, CA 90001" +211510,Bose SoundSport Headphones,1,99.99,06/10/19 19:14,"253 Lake St, Portland, OR 97035" +211511,Google Phone,1,600,06/20/19 22:14,"319 Meadow St, Atlanta, GA 30301" +211512,AAA Batteries (4-pack),1,2.99,06/22/19 10:37,"314 Walnut St, New York City, NY 10001" +211513,USB-C Charging Cable,1,11.95,06/21/19 16:49,"596 Ridge St, San Francisco, CA 94016" +211514,34in Ultrawide Monitor,1,379.99,06/21/19 19:17,"487 11th St, Dallas, TX 75001" +211515,LG Washing Machine,1,600.0,06/27/19 11:50,"51 Jackson St, Los Angeles, CA 90001" +211516,Bose SoundSport Headphones,2,99.99,06/26/19 17:44,"535 Highland St, New York City, NY 10001" +211517,AA Batteries (4-pack),1,3.84,06/17/19 12:45,"880 Willow St, San Francisco, CA 94016" +211518,iPhone,1,700,06/07/19 13:03,"971 9th St, San Francisco, CA 94016" +211519,USB-C Charging Cable,1,11.95,06/02/19 13:49,"421 Park St, Atlanta, GA 30301" +211520,Lightning Charging Cable,1,14.95,06/19/19 12:35,"92 Madison St, New York City, NY 10001" +211521,Macbook Pro Laptop,1,1700,06/27/19 11:17,"22 Ridge St, Boston, MA 02215" +211522,AA Batteries (4-pack),1,3.84,06/02/19 18:37,"277 West St, San Francisco, CA 94016" +211523,Wired Headphones,2,11.99,06/12/19 09:59,"110 Wilson St, New York City, NY 10001" +211524,Wired Headphones,1,11.99,06/25/19 10:27,"793 Meadow St, San Francisco, CA 94016" +211525,20in Monitor,1,109.99,06/13/19 13:55,"301 Spruce St, Atlanta, GA 30301" +211526,Lightning Charging Cable,1,14.95,06/02/19 21:27,"918 Cherry St, New York City, NY 10001" +211527,Macbook Pro Laptop,1,1700,06/11/19 10:12,"802 Highland St, Boston, MA 02215" +211528,Lightning Charging Cable,1,14.95,06/17/19 09:20,"364 Ridge St, San Francisco, CA 94016" +211529,AAA Batteries (4-pack),1,2.99,06/29/19 19:39,"142 Meadow St, Atlanta, GA 30301" +211530,Apple Airpods Headphones,1,150,06/30/19 19:32,"665 Washington St, San Francisco, CA 94016" +211530,34in Ultrawide Monitor,1,379.99,06/30/19 19:32,"665 Washington St, San Francisco, CA 94016" +211531,Apple Airpods Headphones,1,150,06/12/19 07:41,"14 Chestnut St, Boston, MA 02215" +211532,Lightning Charging Cable,1,14.95,06/28/19 11:05,"853 Maple St, Portland, OR 97035" +211533,Lightning Charging Cable,1,14.95,06/18/19 08:07,"863 1st St, Atlanta, GA 30301" +211534,Lightning Charging Cable,1,14.95,06/09/19 12:59,"301 Hickory St, Dallas, TX 75001" +211535,USB-C Charging Cable,1,11.95,06/25/19 22:14,"473 Cherry St, San Francisco, CA 94016" +211536,Lightning Charging Cable,2,14.95,06/26/19 20:22,"920 6th St, Dallas, TX 75001" +211537,34in Ultrawide Monitor,1,379.99,06/08/19 22:35,"622 South St, Portland, OR 97035" +211538,AA Batteries (4-pack),1,3.84,06/18/19 07:15,"479 Sunset St, San Francisco, CA 94016" +211539,Wired Headphones,1,11.99,06/26/19 09:51,"589 Wilson St, New York City, NY 10001" +211540,Wired Headphones,1,11.99,06/20/19 21:52,"616 Cherry St, San Francisco, CA 94016" +211541,Bose SoundSport Headphones,1,99.99,06/23/19 21:48,"981 North St, Los Angeles, CA 90001" +211542,Apple Airpods Headphones,1,150,06/26/19 13:23,"395 Adams St, Atlanta, GA 30301" +211543,Apple Airpods Headphones,1,150,06/26/19 23:35,"616 5th St, San Francisco, CA 94016" +211544,Apple Airpods Headphones,1,150,06/05/19 14:18,"228 1st St, San Francisco, CA 94016" +211545,27in FHD Monitor,1,149.99,06/15/19 09:01,"150 West St, Los Angeles, CA 90001" +211546,20in Monitor,1,109.99,06/02/19 11:02,"156 Pine St, San Francisco, CA 94016" +211547,Lightning Charging Cable,1,14.95,06/28/19 19:30,"291 7th St, San Francisco, CA 94016" +211548,Apple Airpods Headphones,1,150,06/26/19 14:39,"894 Lincoln St, San Francisco, CA 94016" +211549,Apple Airpods Headphones,1,150,06/15/19 14:08,"256 Hill St, New York City, NY 10001" +211550,AAA Batteries (4-pack),2,2.99,06/15/19 15:35,"915 4th St, Austin, TX 73301" +211551,Lightning Charging Cable,2,14.95,06/03/19 18:36,"426 Cherry St, San Francisco, CA 94016" +211552,AA Batteries (4-pack),2,3.84,06/23/19 10:25,"55 7th St, San Francisco, CA 94016" +211553,27in 4K Gaming Monitor,1,389.99,06/08/19 10:51,"758 12th St, Portland, OR 97035" +211554,USB-C Charging Cable,1,11.95,06/28/19 08:39,"893 Johnson St, Dallas, TX 75001" +211555,Bose SoundSport Headphones,1,99.99,06/20/19 22:56,"435 Adams St, Atlanta, GA 30301" +211556,AA Batteries (4-pack),1,3.84,06/21/19 17:12,"230 Johnson St, Boston, MA 02215" +211557,Macbook Pro Laptop,1,1700,06/06/19 10:00,"933 Highland St, Portland, OR 97035" +211558,Lightning Charging Cable,1,14.95,06/28/19 17:04,"247 13th St, Boston, MA 02215" +211558,USB-C Charging Cable,1,11.95,06/28/19 17:04,"247 13th St, Boston, MA 02215" +211559,USB-C Charging Cable,1,11.95,06/27/19 00:52,"958 South St, New York City, NY 10001" +211560,Wired Headphones,1,11.99,06/30/19 14:56,"45 13th St, Boston, MA 02215" +211561,27in FHD Monitor,1,149.99,06/07/19 09:35,"630 Park St, New York City, NY 10001" +211562,ThinkPad Laptop,1,999.99,06/05/19 12:21,"434 Main St, San Francisco, CA 94016" +211563,LG Dryer,1,600.0,06/19/19 14:41,"384 Center St, Dallas, TX 75001" +211564,Lightning Charging Cable,1,14.95,06/06/19 11:54,"883 13th St, Atlanta, GA 30301" +211565,27in FHD Monitor,1,149.99,06/05/19 13:00,"619 Washington St, New York City, NY 10001" +211566,Bose SoundSport Headphones,1,99.99,06/27/19 19:23,"457 13th St, Boston, MA 02215" +211567,Lightning Charging Cable,1,14.95,06/02/19 00:39,"268 Washington St, San Francisco, CA 94016" +211568,USB-C Charging Cable,1,11.95,06/19/19 13:33,"468 11th St, Seattle, WA 98101" +211569,ThinkPad Laptop,1,999.99,06/19/19 21:24,"557 Jackson St, Boston, MA 02215" +211570,Google Phone,1,600,06/09/19 23:59,"233 13th St, San Francisco, CA 94016" +211570,Wired Headphones,1,11.99,06/09/19 23:59,"233 13th St, San Francisco, CA 94016" +211571,20in Monitor,1,109.99,06/22/19 01:02,"243 Lakeview St, San Francisco, CA 94016" +211572,Lightning Charging Cable,1,14.95,06/13/19 10:49,"278 River St, Seattle, WA 98101" +211573,27in FHD Monitor,1,149.99,06/28/19 12:04,"613 Ridge St, Los Angeles, CA 90001" +211574,ThinkPad Laptop,1,999.99,06/09/19 21:45,"683 Dogwood St, New York City, NY 10001" +211575,ThinkPad Laptop,1,999.99,06/09/19 07:09,"349 Willow St, Boston, MA 02215" +211576,USB-C Charging Cable,1,11.95,06/24/19 20:11,"495 8th St, Seattle, WA 98101" +211577,20in Monitor,1,109.99,06/07/19 15:30,"486 Adams St, Los Angeles, CA 90001" +211578,iPhone,1,700,06/11/19 20:05,"383 Forest St, Seattle, WA 98101" +211578,Lightning Charging Cable,1,14.95,06/11/19 20:05,"383 Forest St, Seattle, WA 98101" +211579,Bose SoundSport Headphones,1,99.99,06/26/19 21:47,"475 1st St, Los Angeles, CA 90001" +211580,34in Ultrawide Monitor,1,379.99,06/10/19 13:26,"548 Church St, Dallas, TX 75001" +211581,Flatscreen TV,1,300,06/06/19 23:58,"456 Lakeview St, Los Angeles, CA 90001" +211582,LG Washing Machine,1,600.0,06/27/19 00:42,"955 8th St, Boston, MA 02215" +211583,AAA Batteries (4-pack),1,2.99,06/11/19 23:29,"178 Center St, New York City, NY 10001" +211584,AA Batteries (4-pack),5,3.84,06/24/19 09:32,"737 Elm St, New York City, NY 10001" +211585,Wired Headphones,1,11.99,06/10/19 11:51,"394 Dogwood St, San Francisco, CA 94016" +211586,USB-C Charging Cable,1,11.95,06/18/19 19:52,"161 Johnson St, Austin, TX 73301" +211587,Lightning Charging Cable,1,14.95,06/18/19 17:54,"786 Hickory St, Seattle, WA 98101" +211588,34in Ultrawide Monitor,1,379.99,06/10/19 19:00,"337 6th St, Boston, MA 02215" +211589,AA Batteries (4-pack),1,3.84,06/14/19 22:29,"312 Cedar St, Los Angeles, CA 90001" +211590,USB-C Charging Cable,1,11.95,06/26/19 15:22,"295 6th St, San Francisco, CA 94016" +211591,USB-C Charging Cable,1,11.95,06/08/19 22:55,"226 Spruce St, Dallas, TX 75001" +211592,27in FHD Monitor,1,149.99,06/21/19 19:07,"461 6th St, Austin, TX 73301" +211593,AA Batteries (4-pack),1,3.84,06/17/19 02:31,"475 Walnut St, Austin, TX 73301" +211594,AAA Batteries (4-pack),1,2.99,06/19/19 18:18,"72 West St, Boston, MA 02215" +211595,Wired Headphones,1,11.99,06/24/19 17:42,"509 6th St, San Francisco, CA 94016" +211596,AA Batteries (4-pack),1,3.84,06/10/19 20:35,"981 Main St, San Francisco, CA 94016" +211597,AA Batteries (4-pack),1,3.84,06/04/19 16:11,"143 Church St, Boston, MA 02215" +211598,Lightning Charging Cable,1,14.95,06/12/19 23:03,"762 Main St, San Francisco, CA 94016" +211599,AA Batteries (4-pack),3,3.84,06/09/19 17:12,"455 8th St, New York City, NY 10001" +211600,Lightning Charging Cable,1,14.95,06/15/19 15:08,"397 2nd St, Portland, OR 97035" +211601,AA Batteries (4-pack),1,3.84,06/12/19 04:51,"653 Cherry St, Boston, MA 02215" +211602,Apple Airpods Headphones,1,150,06/18/19 23:55,"963 11th St, Portland, OR 97035" +211603,Wired Headphones,1,11.99,06/27/19 17:45,"958 Dogwood St, New York City, NY 10001" +211604,AAA Batteries (4-pack),1,2.99,06/22/19 14:41,"975 Maple St, Los Angeles, CA 90001" +211605,Wired Headphones,1,11.99,06/16/19 23:53,"188 12th St, Los Angeles, CA 90001" +211606,Wired Headphones,1,11.99,06/28/19 11:47,"827 Walnut St, Dallas, TX 75001" +211607,34in Ultrawide Monitor,1,379.99,06/27/19 12:47,"351 South St, Seattle, WA 98101" +211608,Wired Headphones,2,11.99,06/12/19 12:38,"162 Maple St, San Francisco, CA 94016" +211609,USB-C Charging Cable,1,11.95,06/15/19 09:04,"153 Washington St, New York City, NY 10001" +211610,AAA Batteries (4-pack),2,2.99,06/29/19 21:34,"672 14th St, Seattle, WA 98101" +211611,Apple Airpods Headphones,1,150,06/13/19 21:12,"810 Sunset St, San Francisco, CA 94016" +211612,Google Phone,1,600,06/11/19 14:50,"584 Park St, San Francisco, CA 94016" +211613,Lightning Charging Cable,1,14.95,06/03/19 20:40,"320 4th St, New York City, NY 10001" +211614,Google Phone,1,600,06/29/19 00:36,"170 9th St, Portland, OR 97035" +211615,AA Batteries (4-pack),2,3.84,06/16/19 03:12,"571 8th St, Dallas, TX 75001" +211616,USB-C Charging Cable,1,11.95,06/10/19 12:02,"315 Wilson St, Austin, TX 73301" +211617,Google Phone,1,600,06/09/19 13:13,"362 7th St, Atlanta, GA 30301" +211618,Macbook Pro Laptop,1,1700,06/02/19 14:37,"860 Dogwood St, Los Angeles, CA 90001" +211619,Apple Airpods Headphones,1,150,06/25/19 11:39,"722 Sunset St, Los Angeles, CA 90001" +211620,Bose SoundSport Headphones,1,99.99,06/05/19 12:46,"593 Church St, New York City, NY 10001" +211621,Apple Airpods Headphones,1,150,06/09/19 10:15,"663 Park St, Los Angeles, CA 90001" +211622,Lightning Charging Cable,1,14.95,06/16/19 02:01,"346 South St, Atlanta, GA 30301" +211623,USB-C Charging Cable,1,11.95,06/27/19 12:44,"928 2nd St, Seattle, WA 98101" +211624,ThinkPad Laptop,1,999.99,06/25/19 18:44,"122 Dogwood St, New York City, NY 10001" +211625,Google Phone,1,600,06/23/19 17:33,"656 Adams St, Seattle, WA 98101" +211626,Lightning Charging Cable,1,14.95,06/18/19 17:12,"362 Lake St, New York City, NY 10001" +211627,Bose SoundSport Headphones,1,99.99,06/10/19 11:18,"432 Cherry St, Portland, OR 97035" +211628,USB-C Charging Cable,1,11.95,06/04/19 17:30,"673 Cherry St, Los Angeles, CA 90001" +211629,Apple Airpods Headphones,1,150,06/23/19 21:16,"863 6th St, San Francisco, CA 94016" +211630,AAA Batteries (4-pack),3,2.99,06/20/19 11:01,"274 1st St, Seattle, WA 98101" +211631,27in 4K Gaming Monitor,1,389.99,06/10/19 12:29,"854 1st St, Boston, MA 02215" +211632,Lightning Charging Cable,1,14.95,06/28/19 17:00,"113 Church St, Dallas, TX 75001" +211633,USB-C Charging Cable,1,11.95,06/19/19 21:58,"11 5th St, Atlanta, GA 30301" +211634,Google Phone,1,600,06/18/19 17:18,"12 Johnson St, New York City, NY 10001" +211635,Wired Headphones,1,11.99,06/14/19 16:06,"56 Jackson St, San Francisco, CA 94016" +211636,AA Batteries (4-pack),1,3.84,06/12/19 00:56,"100 Washington St, Boston, MA 02215" +211637,Flatscreen TV,1,300,06/08/19 07:50,"465 Pine St, Los Angeles, CA 90001" +211638,Apple Airpods Headphones,1,150,06/03/19 19:38,"285 Meadow St, Atlanta, GA 30301" +211638,Apple Airpods Headphones,1,150,06/03/19 19:38,"285 Meadow St, Atlanta, GA 30301" +211639,AA Batteries (4-pack),2,3.84,06/14/19 14:00,"135 13th St, San Francisco, CA 94016" +211640,Lightning Charging Cable,1,14.95,06/25/19 16:23,"959 Hickory St, San Francisco, CA 94016" +211641,27in 4K Gaming Monitor,1,389.99,06/19/19 10:21,"269 6th St, Atlanta, GA 30301" +211642,34in Ultrawide Monitor,1,379.99,06/02/19 11:33,"245 Madison St, San Francisco, CA 94016" +211643,AA Batteries (4-pack),1,3.84,06/26/19 21:17,"40 Center St, New York City, NY 10001" +211644,AAA Batteries (4-pack),1,2.99,06/27/19 14:27,"53 Elm St, New York City, NY 10001" +211645,20in Monitor,1,109.99,06/11/19 15:23,"963 2nd St, Seattle, WA 98101" +211646,AA Batteries (4-pack),2,3.84,06/10/19 23:28,"412 Hill St, Atlanta, GA 30301" +211647,LG Washing Machine,1,600.0,06/10/19 00:16,"66 Lincoln St, San Francisco, CA 94016" +211648,USB-C Charging Cable,1,11.95,06/26/19 22:32,"26 Main St, Los Angeles, CA 90001" +211649,27in FHD Monitor,1,149.99,06/27/19 18:44,"584 Main St, Seattle, WA 98101" +211650,Wired Headphones,1,11.99,06/01/19 17:28,"665 Park St, San Francisco, CA 94016" +211651,27in 4K Gaming Monitor,1,389.99,06/05/19 10:22,"948 Washington St, New York City, NY 10001" +211652,34in Ultrawide Monitor,1,379.99,06/14/19 22:15,"457 Cedar St, San Francisco, CA 94016" +211653,Wired Headphones,2,11.99,06/12/19 09:24,"721 4th St, Seattle, WA 98101" +211654,Bose SoundSport Headphones,1,99.99,06/01/19 19:20,"853 Pine St, Boston, MA 02215" +211655,AAA Batteries (4-pack),1,2.99,06/02/19 22:04,"689 9th St, San Francisco, CA 94016" +211656,Apple Airpods Headphones,1,150,06/23/19 08:17,"131 2nd St, San Francisco, CA 94016" +211657,Bose SoundSport Headphones,1,99.99,06/22/19 09:35,"889 7th St, Los Angeles, CA 90001" +211658,AAA Batteries (4-pack),1,2.99,06/26/19 17:29,"523 1st St, Dallas, TX 75001" +211659,34in Ultrawide Monitor,1,379.99,06/08/19 19:21,"157 4th St, Dallas, TX 75001" +211660,AAA Batteries (4-pack),1,2.99,06/30/19 20:01,"761 5th St, New York City, NY 10001" +211661,27in FHD Monitor,1,149.99,06/27/19 16:53,"883 Highland St, Seattle, WA 98101" +211662,AA Batteries (4-pack),3,3.84,06/27/19 16:28,"990 Lakeview St, San Francisco, CA 94016" +211663,34in Ultrawide Monitor,1,379.99,06/11/19 23:09,"19 Cherry St, Portland, ME 04101" +211664,Google Phone,1,600,06/02/19 09:49,"913 Main St, Portland, OR 97035" +211664,USB-C Charging Cable,1,11.95,06/02/19 09:49,"913 Main St, Portland, OR 97035" +211665,AA Batteries (4-pack),2,3.84,06/14/19 09:01,"887 13th St, New York City, NY 10001" +211666,Wired Headphones,1,11.99,06/23/19 21:25,"364 Chestnut St, Los Angeles, CA 90001" +211667,Lightning Charging Cable,1,14.95,06/27/19 16:31,"405 13th St, Los Angeles, CA 90001" +211668,Wired Headphones,1,11.99,06/24/19 08:46,"685 Lakeview St, Dallas, TX 75001" +211669,27in FHD Monitor,1,149.99,06/09/19 19:00,"679 Lakeview St, New York City, NY 10001" +211670,Macbook Pro Laptop,1,1700,06/25/19 12:36,"502 Forest St, Seattle, WA 98101" +211671,USB-C Charging Cable,1,11.95,06/26/19 13:43,"975 Main St, Boston, MA 02215" +211672,27in FHD Monitor,1,149.99,06/04/19 15:50,"128 Chestnut St, Atlanta, GA 30301" +211673,27in 4K Gaming Monitor,1,389.99,06/20/19 23:31,"484 Highland St, New York City, NY 10001" +211674,27in 4K Gaming Monitor,1,389.99,06/15/19 09:42,"106 12th St, Seattle, WA 98101" +211675,USB-C Charging Cable,1,11.95,06/22/19 12:29,"932 12th St, Los Angeles, CA 90001" +211676,USB-C Charging Cable,1,11.95,06/23/19 10:38,"4 Walnut St, Los Angeles, CA 90001" +211677,Flatscreen TV,1,300,06/04/19 12:57,"235 Ridge St, Seattle, WA 98101" +211678,Wired Headphones,1,11.99,06/26/19 00:10,"725 2nd St, Los Angeles, CA 90001" +211679,20in Monitor,1,109.99,06/06/19 18:07,"843 Hickory St, Los Angeles, CA 90001" +211680,Bose SoundSport Headphones,1,99.99,06/06/19 08:23,"453 Dogwood St, Los Angeles, CA 90001" +211681,Vareebadd Phone,1,400,06/02/19 22:36,"273 Cherry St, Los Angeles, CA 90001" +211682,USB-C Charging Cable,1,11.95,06/09/19 10:08,"458 12th St, Portland, OR 97035" +211683,27in FHD Monitor,1,149.99,06/13/19 11:27,"355 13th St, San Francisco, CA 94016" +211684,Lightning Charging Cable,1,14.95,06/02/19 09:45,"122 West St, Portland, OR 97035" +211685,AAA Batteries (4-pack),3,2.99,06/12/19 13:14,"761 Park St, New York City, NY 10001" +211686,AA Batteries (4-pack),2,3.84,06/05/19 07:37,"208 4th St, San Francisco, CA 94016" +211687,Lightning Charging Cable,1,14.95,06/13/19 14:52,"265 West St, Portland, OR 97035" +211688,Google Phone,1,600,06/18/19 08:52,"27 Hill St, Boston, MA 02215" +211689,Lightning Charging Cable,1,14.95,06/10/19 13:32,"478 7th St, Boston, MA 02215" +211690,Wired Headphones,1,11.99,06/16/19 14:36,"871 Jackson St, San Francisco, CA 94016" +211691,USB-C Charging Cable,1,11.95,06/27/19 09:25,"414 North St, San Francisco, CA 94016" +211692,Lightning Charging Cable,1,14.95,06/30/19 22:30,"773 Jefferson St, New York City, NY 10001" +211693,Apple Airpods Headphones,1,150,06/08/19 21:24,"407 Park St, Dallas, TX 75001" +211694,AA Batteries (4-pack),1,3.84,06/06/19 16:53,"17 11th St, San Francisco, CA 94016" +211695,USB-C Charging Cable,1,11.95,06/26/19 12:04,"261 Willow St, Los Angeles, CA 90001" +211696,AAA Batteries (4-pack),1,2.99,06/13/19 10:26,"515 Madison St, San Francisco, CA 94016" +211697,AAA Batteries (4-pack),3,2.99,06/13/19 19:10,"596 1st St, Atlanta, GA 30301" +211698,AAA Batteries (4-pack),4,2.99,06/02/19 18:52,"365 Hickory St, Atlanta, GA 30301" +211699,AAA Batteries (4-pack),1,2.99,06/24/19 09:02,"717 West St, Dallas, TX 75001" +211700,AA Batteries (4-pack),2,3.84,06/25/19 11:06,"470 Center St, Atlanta, GA 30301" +211701,AAA Batteries (4-pack),1,2.99,06/10/19 11:04,"163 Maple St, Boston, MA 02215" +211702,Google Phone,1,600,06/18/19 16:41,"845 South St, Portland, ME 04101" +211702,Bose SoundSport Headphones,1,99.99,06/18/19 16:41,"845 South St, Portland, ME 04101" +211703,AA Batteries (4-pack),1,3.84,06/15/19 11:46,"66 Dogwood St, Portland, OR 97035" +211704,Lightning Charging Cable,1,14.95,06/28/19 12:26,"693 Washington St, Boston, MA 02215" +211705,Macbook Pro Laptop,1,1700,06/10/19 22:30,"864 West St, San Francisco, CA 94016" +211706,USB-C Charging Cable,1,11.95,06/15/19 14:55,"347 Lake St, Dallas, TX 75001" +211707,AAA Batteries (4-pack),1,2.99,06/08/19 14:26,"708 Park St, Dallas, TX 75001" +211708,USB-C Charging Cable,1,11.95,06/23/19 11:22,"759 Madison St, San Francisco, CA 94016" +211709,AA Batteries (4-pack),1,3.84,06/21/19 13:36,"755 Center St, Austin, TX 73301" +211710,USB-C Charging Cable,1,11.95,06/18/19 11:55,"547 Hickory St, Seattle, WA 98101" +211711,Flatscreen TV,1,300,06/09/19 20:04,"860 Spruce St, San Francisco, CA 94016" +211712,Wired Headphones,1,11.99,06/30/19 14:53,"236 Pine St, Los Angeles, CA 90001" +211712,Wired Headphones,2,11.99,06/30/19 14:53,"236 Pine St, Los Angeles, CA 90001" +211713,Bose SoundSport Headphones,1,99.99,06/14/19 12:42,"280 Center St, Los Angeles, CA 90001" +211714,Wired Headphones,1,11.99,06/09/19 15:20,"984 Johnson St, Los Angeles, CA 90001" +211715,USB-C Charging Cable,1,11.95,06/12/19 00:21,"892 Spruce St, San Francisco, CA 94016" +211716,AA Batteries (4-pack),1,3.84,06/23/19 09:28,"683 Dogwood St, Dallas, TX 75001" +211717,Apple Airpods Headphones,1,150,06/18/19 16:14,"13 Highland St, Portland, OR 97035" +211718,AA Batteries (4-pack),1,3.84,06/02/19 18:38,"420 4th St, San Francisco, CA 94016" +211719,Wired Headphones,1,11.99,06/23/19 10:12,"924 Elm St, Los Angeles, CA 90001" +211720,27in FHD Monitor,1,149.99,06/28/19 11:44,"806 Hickory St, Los Angeles, CA 90001" +211721,USB-C Charging Cable,1,11.95,06/29/19 09:53,"30 Willow St, Atlanta, GA 30301" +211722,Wired Headphones,1,11.99,06/11/19 18:33,"396 Lincoln St, San Francisco, CA 94016" +211723,Flatscreen TV,1,300,06/08/19 10:04,"809 Pine St, San Francisco, CA 94016" +211724,AA Batteries (4-pack),1,3.84,06/01/19 08:41,"356 Church St, Los Angeles, CA 90001" +211725,USB-C Charging Cable,1,11.95,06/03/19 10:16,"207 Wilson St, Boston, MA 02215" +211725,USB-C Charging Cable,1,11.95,06/03/19 10:16,"207 Wilson St, Boston, MA 02215" +211726,Bose SoundSport Headphones,1,99.99,06/24/19 12:57,"502 Ridge St, Atlanta, GA 30301" +211727,Lightning Charging Cable,1,14.95,06/10/19 16:34,"634 Elm St, Los Angeles, CA 90001" +211728,Google Phone,1,600,06/26/19 00:27,"796 9th St, New York City, NY 10001" +211729,USB-C Charging Cable,1,11.95,06/22/19 14:52,"642 Lakeview St, Seattle, WA 98101" +211730,Lightning Charging Cable,1,14.95,06/30/19 12:05,"791 South St, Boston, MA 02215" +211731,Google Phone,1,600,06/14/19 13:50,"671 Adams St, Austin, TX 73301" +211732,AA Batteries (4-pack),1,3.84,06/08/19 14:11,"901 Forest St, Boston, MA 02215" +211733,27in FHD Monitor,1,149.99,06/16/19 21:50,"983 Johnson St, Seattle, WA 98101" +211734,Flatscreen TV,1,300,06/15/19 11:59,"133 Johnson St, Seattle, WA 98101" +211735,Apple Airpods Headphones,1,150,06/25/19 02:42,"666 Lakeview St, New York City, NY 10001" +211736,27in 4K Gaming Monitor,1,389.99,06/07/19 22:38,"2 Pine St, Los Angeles, CA 90001" +211737,AA Batteries (4-pack),1,3.84,06/30/19 14:29,"880 Lake St, New York City, NY 10001" +211738,Lightning Charging Cable,1,14.95,06/23/19 20:02,"205 Forest St, San Francisco, CA 94016" +211739,Google Phone,1,600,06/06/19 19:03,"854 Elm St, San Francisco, CA 94016" +211739,USB-C Charging Cable,1,11.95,06/06/19 19:03,"854 Elm St, San Francisco, CA 94016" +211740,USB-C Charging Cable,1,11.95,06/29/19 11:38,"365 Dogwood St, New York City, NY 10001" +211741,AAA Batteries (4-pack),1,2.99,06/28/19 11:23,"742 13th St, Boston, MA 02215" +211742,Lightning Charging Cable,1,14.95,06/19/19 22:47,"487 Elm St, Los Angeles, CA 90001" +211743,Bose SoundSport Headphones,1,99.99,06/15/19 11:25,"168 Hickory St, Seattle, WA 98101" +211744,USB-C Charging Cable,2,11.95,06/01/19 12:25,"418 Lake St, Portland, OR 97035" +211745,USB-C Charging Cable,1,11.95,06/17/19 11:38,"927 1st St, San Francisco, CA 94016" +211746,Lightning Charging Cable,1,14.95,06/30/19 20:54,"309 Johnson St, Los Angeles, CA 90001" +211747,27in FHD Monitor,1,149.99,06/24/19 12:50,"314 4th St, San Francisco, CA 94016" +211748,Lightning Charging Cable,1,14.95,06/02/19 08:13,"866 Washington St, Los Angeles, CA 90001" +211749,USB-C Charging Cable,1,11.95,06/08/19 19:42,"350 9th St, Seattle, WA 98101" +211750,27in FHD Monitor,1,149.99,06/05/19 16:14,"838 Hickory St, New York City, NY 10001" +211751,Bose SoundSport Headphones,1,99.99,06/20/19 07:40,"756 5th St, San Francisco, CA 94016" +211752,Apple Airpods Headphones,1,150,06/06/19 18:04,"908 9th St, Atlanta, GA 30301" +211753,Apple Airpods Headphones,1,150,06/30/19 21:11,"292 Ridge St, Atlanta, GA 30301" +211754,AA Batteries (4-pack),1,3.84,06/15/19 17:35,"234 13th St, Boston, MA 02215" +211755,Wired Headphones,1,11.99,06/02/19 22:48,"759 Washington St, Atlanta, GA 30301" +211756,Bose SoundSport Headphones,1,99.99,06/13/19 17:08,"270 Hickory St, Los Angeles, CA 90001" +211757,34in Ultrawide Monitor,1,379.99,06/17/19 16:15,"241 5th St, Boston, MA 02215" +211758,Wired Headphones,1,11.99,06/17/19 14:08,"805 Maple St, San Francisco, CA 94016" +211759,iPhone,1,700,06/22/19 12:51,"629 10th St, New York City, NY 10001" +211759,Lightning Charging Cable,1,14.95,06/22/19 12:51,"629 10th St, New York City, NY 10001" +211760,AAA Batteries (4-pack),4,2.99,06/25/19 06:50,"541 Wilson St, New York City, NY 10001" +211761,AAA Batteries (4-pack),1,2.99,06/09/19 08:20,"869 6th St, New York City, NY 10001" +211762,Apple Airpods Headphones,1,150,06/03/19 10:03,"195 Jackson St, Austin, TX 73301" +211763,Google Phone,1,600,06/10/19 16:32,"698 Chestnut St, Boston, MA 02215" +211763,USB-C Charging Cable,2,11.95,06/10/19 16:32,"698 Chestnut St, Boston, MA 02215" +211764,Wired Headphones,1,11.99,06/21/19 21:26,"304 14th St, San Francisco, CA 94016" +211765,AAA Batteries (4-pack),2,2.99,06/26/19 06:40,"11 Walnut St, Portland, OR 97035" +211766,AA Batteries (4-pack),2,3.84,06/19/19 22:56,"457 Park St, Los Angeles, CA 90001" +211767,AA Batteries (4-pack),1,3.84,06/06/19 12:56,"139 Jackson St, New York City, NY 10001" +211768,Bose SoundSport Headphones,1,99.99,06/17/19 14:25,"30 Walnut St, San Francisco, CA 94016" +211769,Macbook Pro Laptop,1,1700,06/14/19 17:08,"894 Hill St, New York City, NY 10001" +211770,Flatscreen TV,1,300,06/23/19 18:25,"121 5th St, San Francisco, CA 94016" +211771,AA Batteries (4-pack),1,3.84,06/30/19 02:48,"489 North St, Seattle, WA 98101" +211772,Lightning Charging Cable,1,14.95,06/24/19 10:49,"349 8th St, Seattle, WA 98101" +211773,20in Monitor,1,109.99,06/23/19 11:56,"191 Cherry St, Atlanta, GA 30301" +211774,Wired Headphones,1,11.99,06/26/19 13:21,"555 Sunset St, San Francisco, CA 94016" +211775,Bose SoundSport Headphones,1,99.99,06/18/19 22:44,"219 Cedar St, San Francisco, CA 94016" +211776,USB-C Charging Cable,1,11.95,06/29/19 12:38,"237 Lakeview St, New York City, NY 10001" +211777,Google Phone,1,600,06/27/19 23:35,"439 8th St, New York City, NY 10001" +211778,USB-C Charging Cable,1,11.95,06/06/19 08:45,"570 Jackson St, Atlanta, GA 30301" +211779,27in FHD Monitor,1,149.99,06/05/19 17:45,"289 1st St, San Francisco, CA 94016" +211780,USB-C Charging Cable,2,11.95,06/11/19 22:17,"439 South St, San Francisco, CA 94016" +211781,AAA Batteries (4-pack),4,2.99,06/13/19 12:37,"889 Walnut St, Seattle, WA 98101" +211782,Google Phone,1,600,06/07/19 17:44,"322 11th St, Seattle, WA 98101" +211782,USB-C Charging Cable,1,11.95,06/07/19 17:44,"322 11th St, Seattle, WA 98101" +211783,USB-C Charging Cable,1,11.95,06/15/19 00:42,"682 12th St, Boston, MA 02215" +211784,Vareebadd Phone,1,400,06/11/19 13:25,"676 Lakeview St, Atlanta, GA 30301" +211784,USB-C Charging Cable,1,11.95,06/11/19 13:25,"676 Lakeview St, Atlanta, GA 30301" +211785,Bose SoundSport Headphones,1,99.99,06/12/19 06:40,"722 Sunset St, New York City, NY 10001" +211786,Lightning Charging Cable,1,14.95,06/07/19 14:59,"774 Wilson St, San Francisco, CA 94016" +211787,Bose SoundSport Headphones,1,99.99,06/07/19 17:59,"140 Maple St, Los Angeles, CA 90001" +211788,27in FHD Monitor,1,149.99,06/03/19 07:00,"66 North St, Austin, TX 73301" +211789,20in Monitor,1,109.99,06/23/19 18:07,"197 8th St, San Francisco, CA 94016" +211790,USB-C Charging Cable,1,11.95,06/16/19 19:12,"453 Washington St, Seattle, WA 98101" +211791,Wired Headphones,1,11.99,06/29/19 18:09,"771 1st St, Boston, MA 02215" +211792,Wired Headphones,1,11.99,06/19/19 13:30,"317 Pine St, Boston, MA 02215" +211793,USB-C Charging Cable,1,11.95,06/19/19 23:41,"710 Park St, San Francisco, CA 94016" +211794,USB-C Charging Cable,1,11.95,06/11/19 21:42,"878 Park St, Seattle, WA 98101" +211795,USB-C Charging Cable,1,11.95,06/16/19 20:35,"838 14th St, Boston, MA 02215" +211796,Apple Airpods Headphones,1,150,06/21/19 13:26,"960 Meadow St, Dallas, TX 75001" +211797,AA Batteries (4-pack),1,3.84,06/04/19 10:20,"360 Cedar St, San Francisco, CA 94016" +211798,Bose SoundSport Headphones,1,99.99,06/13/19 13:19,"555 Jefferson St, San Francisco, CA 94016" +211799,Lightning Charging Cable,1,14.95,06/19/19 20:58,"371 9th St, San Francisco, CA 94016" +211800,Bose SoundSport Headphones,1,99.99,06/10/19 09:56,"247 Madison St, Boston, MA 02215" +211801,AAA Batteries (4-pack),1,2.99,06/17/19 13:47,"21 Adams St, Dallas, TX 75001" +211802,AAA Batteries (4-pack),2,2.99,06/19/19 19:17,"352 Willow St, San Francisco, CA 94016" +211803,Lightning Charging Cable,1,14.95,06/09/19 11:40,"785 7th St, Portland, OR 97035" +211804,AA Batteries (4-pack),1,3.84,06/09/19 14:27,"102 Hill St, San Francisco, CA 94016" +211805,AA Batteries (4-pack),1,3.84,06/05/19 22:57,"650 Cedar St, San Francisco, CA 94016" +211806,iPhone,1,700,06/12/19 07:06,"561 Elm St, San Francisco, CA 94016" +211807,ThinkPad Laptop,1,999.99,06/03/19 15:45,"265 Church St, San Francisco, CA 94016" +211808,Vareebadd Phone,1,400,06/24/19 15:39,"696 Chestnut St, Dallas, TX 75001" +211809,34in Ultrawide Monitor,1,379.99,06/29/19 12:11,"199 7th St, Seattle, WA 98101" +211810,Lightning Charging Cable,1,14.95,06/23/19 17:39,"444 8th St, Atlanta, GA 30301" +211811,AA Batteries (4-pack),2,3.84,06/25/19 19:26,"901 Center St, Dallas, TX 75001" +211812,Lightning Charging Cable,1,14.95,06/17/19 14:45,"800 River St, Seattle, WA 98101" +211813,Apple Airpods Headphones,1,150,06/23/19 12:01,"313 North St, Portland, ME 04101" +211814,27in 4K Gaming Monitor,1,389.99,06/24/19 23:18,"622 2nd St, San Francisco, CA 94016" +211815,AAA Batteries (4-pack),4,2.99,06/08/19 18:18,"411 Cedar St, New York City, NY 10001" +211816,AA Batteries (4-pack),1,3.84,06/16/19 20:34,"270 13th St, Dallas, TX 75001" +211817,Wired Headphones,1,11.99,06/09/19 17:56,"341 Elm St, Boston, MA 02215" +211818,USB-C Charging Cable,1,11.95,06/24/19 07:20,"978 Cherry St, Dallas, TX 75001" +211819,Wired Headphones,1,11.99,06/24/19 00:38,"52 Main St, New York City, NY 10001" +211819,AAA Batteries (4-pack),2,2.99,06/24/19 00:38,"52 Main St, New York City, NY 10001" +211820,AAA Batteries (4-pack),1,2.99,06/12/19 13:46,"363 Pine St, Boston, MA 02215" +211821,Wired Headphones,1,11.99,06/30/19 12:07,"374 Wilson St, San Francisco, CA 94016" +211822,USB-C Charging Cable,1,11.95,06/19/19 09:17,"668 Lincoln St, Los Angeles, CA 90001" +211823,iPhone,1,700,06/01/19 23:38,"669 10th St, San Francisco, CA 94016" +211824,USB-C Charging Cable,2,11.95,06/21/19 10:49,"653 River St, Los Angeles, CA 90001" +211825,USB-C Charging Cable,1,11.95,06/12/19 16:17,"810 Lakeview St, New York City, NY 10001" +211826,34in Ultrawide Monitor,1,379.99,06/07/19 22:21,"251 Spruce St, Seattle, WA 98101" +211826,Bose SoundSport Headphones,1,99.99,06/07/19 22:21,"251 Spruce St, Seattle, WA 98101" +211827,AAA Batteries (4-pack),6,2.99,06/14/19 18:38,"745 4th St, Atlanta, GA 30301" +211828,Lightning Charging Cable,1,14.95,06/10/19 16:08,"348 Jackson St, San Francisco, CA 94016" +211829,AAA Batteries (4-pack),1,2.99,06/29/19 09:37,"758 West St, San Francisco, CA 94016" +211830,AA Batteries (4-pack),1,3.84,06/05/19 17:48,"495 8th St, New York City, NY 10001" +211831,Macbook Pro Laptop,1,1700,06/29/19 12:25,"436 9th St, Seattle, WA 98101" +211832,USB-C Charging Cable,1,11.95,06/23/19 21:29,"397 9th St, Seattle, WA 98101" +211833,ThinkPad Laptop,1,999.99,06/02/19 10:49,"386 North St, San Francisco, CA 94016" +211834,Bose SoundSport Headphones,1,99.99,06/21/19 23:24,"252 Main St, New York City, NY 10001" +211835,Wired Headphones,1,11.99,06/28/19 13:06,"602 Spruce St, Boston, MA 02215" +211836,Flatscreen TV,1,300,06/11/19 21:36,"296 Walnut St, Seattle, WA 98101" +211837,Bose SoundSport Headphones,1,99.99,06/23/19 22:38,"553 Pine St, San Francisco, CA 94016" +211838,Wired Headphones,1,11.99,06/19/19 19:52,"495 14th St, San Francisco, CA 94016" +211839,Apple Airpods Headphones,1,150,06/26/19 08:03,"73 Dogwood St, San Francisco, CA 94016" +211840,Bose SoundSport Headphones,1,99.99,06/25/19 14:05,"124 Pine St, San Francisco, CA 94016" +211841,ThinkPad Laptop,1,999.99,06/02/19 19:34,"273 11th St, Boston, MA 02215" +211842,USB-C Charging Cable,1,11.95,06/02/19 10:32,"949 Meadow St, Austin, TX 73301" +211843,Apple Airpods Headphones,1,150,06/25/19 13:54,"787 Washington St, Atlanta, GA 30301" +211844,USB-C Charging Cable,1,11.95,06/01/19 18:12,"177 Lake St, Seattle, WA 98101" +211845,Google Phone,1,600,06/21/19 09:40,"394 14th St, San Francisco, CA 94016" +211846,Google Phone,1,600,06/16/19 21:13,"74 1st St, Seattle, WA 98101" +211847,Wired Headphones,1,11.99,06/28/19 13:57,"324 Lake St, Boston, MA 02215" +211848,AAA Batteries (4-pack),1,2.99,06/25/19 09:26,"719 Pine St, Atlanta, GA 30301" +211849,Macbook Pro Laptop,1,1700,06/30/19 09:50,"442 Center St, Seattle, WA 98101" +211850,Lightning Charging Cable,1,14.95,06/06/19 19:55,"868 Adams St, Portland, OR 97035" +211851,27in FHD Monitor,1,149.99,06/18/19 09:00,"328 Wilson St, Los Angeles, CA 90001" +211852,USB-C Charging Cable,1,11.95,06/28/19 09:27,"403 Center St, Los Angeles, CA 90001" +211853,Bose SoundSport Headphones,1,99.99,06/03/19 19:28,"539 Forest St, Boston, MA 02215" +211854,20in Monitor,1,109.99,06/16/19 11:53,"290 Hill St, Dallas, TX 75001" +211855,AAA Batteries (4-pack),2,2.99,06/11/19 14:23,"189 South St, Portland, ME 04101" +211856,Flatscreen TV,1,300,06/22/19 10:51,"63 6th St, Austin, TX 73301" +211857,Flatscreen TV,1,300,06/05/19 21:25,"98 6th St, Seattle, WA 98101" +211858,Google Phone,1,600,06/11/19 09:25,"256 5th St, Boston, MA 02215" +211859,34in Ultrawide Monitor,1,379.99,06/04/19 16:54,"257 Center St, Los Angeles, CA 90001" +211860,Lightning Charging Cable,1,14.95,06/08/19 10:20,"401 Lincoln St, San Francisco, CA 94016" +211861,USB-C Charging Cable,1,11.95,06/02/19 12:20,"914 7th St, Los Angeles, CA 90001" +211862,Apple Airpods Headphones,1,150,06/04/19 21:40,"994 Hill St, Dallas, TX 75001" +211863,27in FHD Monitor,1,149.99,06/16/19 12:32,"366 Lake St, Los Angeles, CA 90001" +211864,Google Phone,1,600,06/15/19 13:13,"351 River St, New York City, NY 10001" +211865,Wired Headphones,1,11.99,06/19/19 20:27,"643 13th St, Dallas, TX 75001" +211865,USB-C Charging Cable,1,11.95,06/19/19 20:27,"643 13th St, Dallas, TX 75001" +211866,Lightning Charging Cable,1,14.95,06/04/19 16:30,"599 1st St, Portland, OR 97035" +211867,Bose SoundSport Headphones,1,99.99,06/08/19 15:06,"918 North St, San Francisco, CA 94016" +211868,Bose SoundSport Headphones,1,99.99,06/16/19 13:34,"15 Dogwood St, New York City, NY 10001" +211869,Lightning Charging Cable,1,14.95,06/19/19 14:37,"865 Maple St, San Francisco, CA 94016" +211870,USB-C Charging Cable,1,11.95,06/27/19 10:04,"407 Cherry St, San Francisco, CA 94016" +211871,Lightning Charging Cable,1,14.95,06/27/19 16:13,"205 Walnut St, Seattle, WA 98101" +211872,ThinkPad Laptop,1,999.99,06/23/19 20:10,"841 Lake St, Seattle, WA 98101" +211873,Wired Headphones,1,11.99,06/23/19 22:47,"646 2nd St, San Francisco, CA 94016" +211874,iPhone,1,700,06/25/19 16:26,"454 Washington St, New York City, NY 10001" +211875,USB-C Charging Cable,1,11.95,06/21/19 18:08,"228 Adams St, San Francisco, CA 94016" +211876,AAA Batteries (4-pack),5,2.99,06/23/19 17:01,"529 7th St, San Francisco, CA 94016" +211877,Wired Headphones,1,11.99,06/20/19 00:30,"586 Walnut St, San Francisco, CA 94016" +211878,USB-C Charging Cable,1,11.95,06/29/19 17:29,"215 12th St, Austin, TX 73301" +211879,AAA Batteries (4-pack),1,2.99,06/14/19 20:32,"573 8th St, San Francisco, CA 94016" +211880,34in Ultrawide Monitor,1,379.99,06/18/19 16:05,"727 Lake St, San Francisco, CA 94016" +211881,ThinkPad Laptop,1,999.99,06/20/19 18:47,"464 Johnson St, San Francisco, CA 94016" +211882,Wired Headphones,1,11.99,06/12/19 22:04,"680 Maple St, Portland, OR 97035" +211883,Bose SoundSport Headphones,1,99.99,06/08/19 19:08,"820 Hill St, San Francisco, CA 94016" +211884,AA Batteries (4-pack),1,3.84,06/03/19 20:03,"385 Cedar St, Atlanta, GA 30301" +211885,AA Batteries (4-pack),1,3.84,06/03/19 10:38,"415 7th St, Los Angeles, CA 90001" +211886,Wired Headphones,1,11.99,06/15/19 20:35,"492 Willow St, New York City, NY 10001" +211887,Apple Airpods Headphones,1,150,06/02/19 22:02,"977 Wilson St, Boston, MA 02215" +211888,27in 4K Gaming Monitor,1,389.99,06/07/19 10:21,"842 South St, Austin, TX 73301" +211889,iPhone,1,700,06/28/19 17:33,"736 Wilson St, Dallas, TX 75001" +211889,Lightning Charging Cable,1,14.95,06/28/19 17:33,"736 Wilson St, Dallas, TX 75001" +211890,AAA Batteries (4-pack),1,2.99,06/23/19 21:00,"578 Meadow St, Seattle, WA 98101" +211891,Macbook Pro Laptop,2,1700,06/21/19 09:57,"524 Washington St, San Francisco, CA 94016" +211892,AA Batteries (4-pack),1,3.84,06/18/19 13:28,"529 Madison St, Boston, MA 02215" +211893,USB-C Charging Cable,1,11.95,06/12/19 07:05,"962 Dogwood St, Seattle, WA 98101" +211894,Bose SoundSport Headphones,1,99.99,06/13/19 10:50,"266 Pine St, San Francisco, CA 94016" +211895,Apple Airpods Headphones,1,150,06/09/19 11:31,"922 Washington St, San Francisco, CA 94016" +211896,AAA Batteries (4-pack),1,2.99,06/21/19 12:58,"378 1st St, Los Angeles, CA 90001" +211897,AAA Batteries (4-pack),5,2.99,06/19/19 06:24,"796 Church St, Boston, MA 02215" +211898,USB-C Charging Cable,1,11.95,06/01/19 21:59,"370 6th St, San Francisco, CA 94016" +211899,iPhone,1,700,06/26/19 20:47,"401 Forest St, Portland, OR 97035" +211899,Lightning Charging Cable,1,14.95,06/26/19 20:47,"401 Forest St, Portland, OR 97035" +211900,34in Ultrawide Monitor,1,379.99,06/13/19 10:28,"802 Dogwood St, Atlanta, GA 30301" +211901,Apple Airpods Headphones,1,150,06/20/19 20:39,"940 Johnson St, Portland, OR 97035" +211902,27in 4K Gaming Monitor,1,389.99,06/20/19 16:40,"378 Madison St, San Francisco, CA 94016" +211903,Wired Headphones,1,11.99,06/17/19 17:11,"681 Main St, Austin, TX 73301" +211904,AAA Batteries (4-pack),1,2.99,06/11/19 20:46,"9 Sunset St, Los Angeles, CA 90001" +211905,AA Batteries (4-pack),1,3.84,06/07/19 23:51,"239 Washington St, Austin, TX 73301" +211906,USB-C Charging Cable,1,11.95,06/21/19 13:52,"628 Madison St, San Francisco, CA 94016" +211907,Vareebadd Phone,1,400,06/25/19 12:38,"419 11th St, Los Angeles, CA 90001" +211908,USB-C Charging Cable,1,11.95,06/11/19 17:48,"229 Pine St, New York City, NY 10001" +211909,AA Batteries (4-pack),1,3.84,06/13/19 13:54,"994 Washington St, Los Angeles, CA 90001" +211910,iPhone,1,700,06/29/19 16:44,"455 Spruce St, Dallas, TX 75001" +211911,Apple Airpods Headphones,1,150,06/27/19 11:22,"900 Lakeview St, Atlanta, GA 30301" +211912,Wired Headphones,1,11.99,06/19/19 23:31,"724 8th St, Los Angeles, CA 90001" +211913,20in Monitor,1,109.99,06/05/19 12:20,"177 Chestnut St, Dallas, TX 75001" +211914,AAA Batteries (4-pack),2,2.99,06/09/19 09:26,"774 Highland St, Los Angeles, CA 90001" +211915,USB-C Charging Cable,1,11.95,06/20/19 19:22,"898 Pine St, Dallas, TX 75001" +211916,Lightning Charging Cable,1,14.95,06/09/19 20:44,"117 Dogwood St, New York City, NY 10001" +211917,AAA Batteries (4-pack),2,2.99,06/09/19 21:34,"222 Chestnut St, Portland, OR 97035" +211918,Lightning Charging Cable,2,14.95,06/19/19 13:54,"173 14th St, New York City, NY 10001" +211919,AAA Batteries (4-pack),2,2.99,06/24/19 06:58,"765 Sunset St, San Francisco, CA 94016" +211920,27in 4K Gaming Monitor,1,389.99,06/13/19 14:14,"687 1st St, San Francisco, CA 94016" +211921,Apple Airpods Headphones,1,150,06/09/19 22:50,"779 11th St, Los Angeles, CA 90001" +211922,Lightning Charging Cable,1,14.95,06/14/19 18:27,"669 North St, New York City, NY 10001" +211923,AA Batteries (4-pack),1,3.84,06/17/19 19:19,"455 Jackson St, San Francisco, CA 94016" +211924,ThinkPad Laptop,1,999.99,06/15/19 21:22,"597 Meadow St, Atlanta, GA 30301" +211925,AA Batteries (4-pack),1,3.84,06/09/19 22:39,"313 4th St, Portland, OR 97035" +211926,USB-C Charging Cable,1,11.95,06/24/19 14:23,"115 2nd St, Los Angeles, CA 90001" +211927,iPhone,1,700,06/19/19 13:33,"315 9th St, Dallas, TX 75001" +211927,Wired Headphones,1,11.99,06/19/19 13:33,"315 9th St, Dallas, TX 75001" +211928,34in Ultrawide Monitor,1,379.99,06/07/19 17:51,"409 Forest St, San Francisco, CA 94016" +211929,AA Batteries (4-pack),2,3.84,06/17/19 23:23,"305 River St, Seattle, WA 98101" +211930,USB-C Charging Cable,1,11.95,06/02/19 21:49,"654 Meadow St, Atlanta, GA 30301" +211931,Wired Headphones,1,11.99,06/16/19 12:52,"409 Cedar St, Los Angeles, CA 90001" +211932,USB-C Charging Cable,1,11.95,06/16/19 13:37,"257 North St, New York City, NY 10001" +211933,USB-C Charging Cable,1,11.95,06/14/19 22:28,"98 West St, Los Angeles, CA 90001" +211934,Wired Headphones,1,11.99,07/01/19 01:10,"143 Walnut St, Dallas, TX 75001" +211935,Lightning Charging Cable,1,14.95,06/29/19 17:19,"612 12th St, San Francisco, CA 94016" +211936,USB-C Charging Cable,1,11.95,06/10/19 07:51,"803 Church St, Atlanta, GA 30301" +211937,Apple Airpods Headphones,1,150,06/06/19 20:29,"388 Sunset St, Seattle, WA 98101" +211938,LG Dryer,1,600.0,06/18/19 19:19,"468 Meadow St, Dallas, TX 75001" +211939,Apple Airpods Headphones,1,150,06/02/19 15:15,"814 Walnut St, Boston, MA 02215" +211940,Apple Airpods Headphones,1,150,06/19/19 09:35,"783 Johnson St, New York City, NY 10001" +211941,Lightning Charging Cable,2,14.95,06/21/19 08:28,"149 8th St, Los Angeles, CA 90001" +211942,Wired Headphones,1,11.99,06/14/19 10:23,"271 Main St, Portland, ME 04101" +211943,Apple Airpods Headphones,1,150,06/21/19 09:11,"331 14th St, New York City, NY 10001" +211944,27in 4K Gaming Monitor,1,389.99,06/25/19 11:15,"621 Pine St, Boston, MA 02215" +211945,iPhone,1,700,06/25/19 07:34,"704 9th St, Dallas, TX 75001" +211946,USB-C Charging Cable,2,11.95,06/08/19 16:45,"289 Maple St, San Francisco, CA 94016" +211947,Lightning Charging Cable,1,14.95,06/01/19 09:53,"639 Church St, Los Angeles, CA 90001" +211948,USB-C Charging Cable,1,11.95,06/18/19 20:13,"399 1st St, Los Angeles, CA 90001" +211949,Google Phone,1,600,06/26/19 23:52,"676 North St, San Francisco, CA 94016" +211950,iPhone,1,700,06/28/19 11:23,"941 10th St, Dallas, TX 75001" +211950,Lightning Charging Cable,1,14.95,06/28/19 11:23,"941 10th St, Dallas, TX 75001" +211951,Apple Airpods Headphones,1,150,06/12/19 20:21,"486 Lakeview St, Seattle, WA 98101" +211952,AA Batteries (4-pack),1,3.84,06/20/19 21:25,"618 Ridge St, Los Angeles, CA 90001" +211953,iPhone,1,700,06/23/19 23:09,"29 9th St, Dallas, TX 75001" +211953,Wired Headphones,1,11.99,06/23/19 23:09,"29 9th St, Dallas, TX 75001" +211954,Wired Headphones,1,11.99,06/15/19 12:00,"414 Wilson St, San Francisco, CA 94016" +211955,Wired Headphones,1,11.99,06/28/19 17:19,"701 Highland St, San Francisco, CA 94016" +211956,USB-C Charging Cable,1,11.95,06/02/19 18:31,"271 Johnson St, Dallas, TX 75001" +211957,Lightning Charging Cable,1,14.95,06/24/19 15:57,"378 Lakeview St, Dallas, TX 75001" +211958,27in 4K Gaming Monitor,1,389.99,06/16/19 12:17,"147 North St, Seattle, WA 98101" +211959,AA Batteries (4-pack),1,3.84,06/07/19 20:31,"523 Cedar St, San Francisco, CA 94016" +211960,USB-C Charging Cable,1,11.95,06/10/19 04:34,"157 Walnut St, Boston, MA 02215" +211961,USB-C Charging Cable,1,11.95,06/23/19 16:50,"182 Madison St, Portland, ME 04101" +211962,Lightning Charging Cable,1,14.95,06/23/19 04:29,"18 Hill St, Los Angeles, CA 90001" +211963,AAA Batteries (4-pack),1,2.99,06/20/19 21:42,"513 Washington St, New York City, NY 10001" +211964,Flatscreen TV,1,300,06/26/19 18:07,"628 Cherry St, Portland, OR 97035" +211965,Lightning Charging Cable,1,14.95,06/15/19 09:43,"721 8th St, Los Angeles, CA 90001" +211966,LG Washing Machine,1,600.0,06/18/19 20:37,"516 Park St, Los Angeles, CA 90001" +211967,AA Batteries (4-pack),3,3.84,06/11/19 22:10,"753 Park St, Portland, OR 97035" +211968,Apple Airpods Headphones,1,150,06/11/19 15:50,"661 11th St, San Francisco, CA 94016" +211969,Bose SoundSport Headphones,1,99.99,06/05/19 19:27,"90 Lincoln St, San Francisco, CA 94016" +211970,Macbook Pro Laptop,1,1700,06/14/19 00:09,"20 Forest St, San Francisco, CA 94016" +211971,Bose SoundSport Headphones,1,99.99,06/25/19 14:54,"729 North St, Austin, TX 73301" +211972,27in FHD Monitor,1,149.99,06/07/19 15:52,"42 Sunset St, San Francisco, CA 94016" +211973,AA Batteries (4-pack),1,3.84,06/19/19 07:32,"158 West St, Los Angeles, CA 90001" +211974,Wired Headphones,1,11.99,06/20/19 12:04,"905 Highland St, New York City, NY 10001" +211975,Lightning Charging Cable,1,14.95,06/20/19 12:01,"91 Church St, Seattle, WA 98101" +211976,Wired Headphones,1,11.99,06/10/19 00:35,"238 Cedar St, San Francisco, CA 94016" +211977,AAA Batteries (4-pack),2,2.99,06/20/19 18:52,"880 Dogwood St, New York City, NY 10001" +211978,USB-C Charging Cable,2,11.95,06/02/19 19:24,"49 Main St, Atlanta, GA 30301" +211979,Google Phone,1,600,06/16/19 21:58,"865 Lakeview St, Austin, TX 73301" +211980,Flatscreen TV,1,300,06/07/19 07:05,"507 Cherry St, San Francisco, CA 94016" +211981,Flatscreen TV,1,300,06/18/19 21:12,"136 Cedar St, Boston, MA 02215" +211982,AAA Batteries (4-pack),1,2.99,06/19/19 19:28,"156 Lake St, Dallas, TX 75001" +211983,AA Batteries (4-pack),1,3.84,06/02/19 06:59,"272 9th St, San Francisco, CA 94016" +211984,LG Washing Machine,1,600.0,06/20/19 09:25,"606 Meadow St, San Francisco, CA 94016" +211985,AAA Batteries (4-pack),1,2.99,06/30/19 09:21,"671 Lake St, San Francisco, CA 94016" +211986,Apple Airpods Headphones,1,150,06/29/19 06:32,"669 Willow St, Boston, MA 02215" +211987,AAA Batteries (4-pack),3,2.99,06/21/19 18:57,"805 Maple St, San Francisco, CA 94016" +211988,USB-C Charging Cable,1,11.95,06/20/19 11:59,"67 7th St, Los Angeles, CA 90001" +211989,AA Batteries (4-pack),2,3.84,06/15/19 18:48,"726 Walnut St, San Francisco, CA 94016" +211990,AAA Batteries (4-pack),4,2.99,06/04/19 19:39,"696 7th St, Los Angeles, CA 90001" +211991,USB-C Charging Cable,1,11.95,06/15/19 10:10,"986 River St, Boston, MA 02215" +211992,27in FHD Monitor,1,149.99,06/25/19 20:10,"933 Wilson St, Dallas, TX 75001" +211993,Google Phone,1,600,06/04/19 22:59,"993 10th St, San Francisco, CA 94016" +211994,AA Batteries (4-pack),2,3.84,06/06/19 11:47,"43 Chestnut St, Los Angeles, CA 90001" +211995,27in 4K Gaming Monitor,1,389.99,06/27/19 22:21,"938 Center St, Dallas, TX 75001" +211996,20in Monitor,1,109.99,06/06/19 21:52,"328 Ridge St, Seattle, WA 98101" +211997,USB-C Charging Cable,2,11.95,06/30/19 18:25,"743 Walnut St, New York City, NY 10001" +211998,AA Batteries (4-pack),1,3.84,06/10/19 23:23,"446 14th St, San Francisco, CA 94016" +211999,Macbook Pro Laptop,1,1700,06/09/19 11:27,"294 Madison St, Austin, TX 73301" +212000,Lightning Charging Cable,1,14.95,06/26/19 15:02,"160 13th St, Los Angeles, CA 90001" +212001,USB-C Charging Cable,1,11.95,06/05/19 06:27,"125 Church St, San Francisco, CA 94016" +212002,AA Batteries (4-pack),1,3.84,06/16/19 09:14,"587 2nd St, San Francisco, CA 94016" +212003,27in 4K Gaming Monitor,1,389.99,06/01/19 13:09,"86 13th St, San Francisco, CA 94016" +212004,USB-C Charging Cable,1,11.95,06/19/19 20:48,"625 Johnson St, San Francisco, CA 94016" +212005,iPhone,1,700,06/13/19 06:22,"76 Highland St, San Francisco, CA 94016" +212006,34in Ultrawide Monitor,1,379.99,06/04/19 10:36,"375 8th St, San Francisco, CA 94016" +212007,Bose SoundSport Headphones,1,99.99,06/07/19 18:38,"998 8th St, New York City, NY 10001" +212008,AA Batteries (4-pack),1,3.84,06/02/19 13:04,"195 Lincoln St, Boston, MA 02215" +212009,Wired Headphones,1,11.99,06/27/19 12:33,"302 Church St, Portland, ME 04101" +212010,AAA Batteries (4-pack),1,2.99,06/27/19 23:02,"710 Lincoln St, Austin, TX 73301" +212011,Bose SoundSport Headphones,1,99.99,06/03/19 16:32,"692 Jackson St, New York City, NY 10001" +212012,USB-C Charging Cable,1,11.95,06/30/19 21:23,"679 Meadow St, Boston, MA 02215" +212013,AA Batteries (4-pack),1,3.84,06/23/19 20:27,"426 8th St, New York City, NY 10001" +212014,Lightning Charging Cable,1,14.95,06/29/19 14:21,"315 7th St, San Francisco, CA 94016" +212015,Lightning Charging Cable,1,14.95,06/02/19 16:01,"511 Hickory St, Los Angeles, CA 90001" +212016,Lightning Charging Cable,1,14.95,06/25/19 10:58,"876 2nd St, Boston, MA 02215" +212017,AAA Batteries (4-pack),1,2.99,06/13/19 17:19,"215 11th St, Los Angeles, CA 90001" +212018,USB-C Charging Cable,2,11.95,06/01/19 13:24,"680 North St, Portland, ME 04101" +212019,Lightning Charging Cable,1,14.95,06/12/19 08:30,"708 10th St, Dallas, TX 75001" +212020,ThinkPad Laptop,1,999.99,06/06/19 13:26,"746 Lakeview St, Atlanta, GA 30301" +212021,AAA Batteries (4-pack),1,2.99,06/29/19 11:25,"54 Highland St, Austin, TX 73301" +212022,iPhone,1,700,06/26/19 16:55,"793 Park St, Austin, TX 73301" +212022,iPhone,1,700,06/26/19 16:55,"793 Park St, Austin, TX 73301" +212023,USB-C Charging Cable,3,11.95,06/09/19 17:56,"882 Lake St, Atlanta, GA 30301" +212024,Bose SoundSport Headphones,1,99.99,06/08/19 17:08,"561 Highland St, Los Angeles, CA 90001" +212024,27in 4K Gaming Monitor,1,389.99,06/08/19 17:08,"561 Highland St, Los Angeles, CA 90001" +212025,Wired Headphones,1,11.99,06/04/19 20:53,"580 Chestnut St, San Francisco, CA 94016" +212026,LG Washing Machine,1,600.0,06/03/19 11:56,"1 Highland St, San Francisco, CA 94016" +212027,USB-C Charging Cable,2,11.95,06/05/19 14:08,"174 5th St, Los Angeles, CA 90001" +212028,Wired Headphones,1,11.99,06/17/19 18:18,"934 North St, Los Angeles, CA 90001" +212029,AA Batteries (4-pack),1,3.84,06/08/19 13:26,"131 2nd St, Atlanta, GA 30301" +212030,Apple Airpods Headphones,2,150,06/23/19 10:22,"734 Hickory St, San Francisco, CA 94016" +212031,Bose SoundSport Headphones,1,99.99,06/03/19 22:58,"846 Wilson St, Portland, OR 97035" +212032,USB-C Charging Cable,1,11.95,06/04/19 13:55,"448 14th St, Los Angeles, CA 90001" +212033,Lightning Charging Cable,1,14.95,06/08/19 20:54,"487 Elm St, Portland, OR 97035" +212034,Flatscreen TV,1,300,06/26/19 09:31,"388 14th St, Seattle, WA 98101" +212035,27in FHD Monitor,1,149.99,06/20/19 08:23,"601 Adams St, Atlanta, GA 30301" +212036,Wired Headphones,2,11.99,06/07/19 13:13,"152 Washington St, New York City, NY 10001" +212037,AAA Batteries (4-pack),2,2.99,06/03/19 21:34,"855 7th St, San Francisco, CA 94016" +212038,AA Batteries (4-pack),1,3.84,06/14/19 13:45,"654 1st St, Portland, OR 97035" +212039,AA Batteries (4-pack),1,3.84,06/22/19 18:21,"483 Meadow St, New York City, NY 10001" +212040,AAA Batteries (4-pack),1,2.99,06/02/19 13:37,"94 12th St, Los Angeles, CA 90001" +212041,USB-C Charging Cable,1,11.95,06/14/19 03:21,"381 Lake St, Austin, TX 73301" +212042,Bose SoundSport Headphones,1,99.99,06/21/19 23:54,"245 Jackson St, Dallas, TX 75001" +212043,Wired Headphones,1,11.99,06/21/19 23:05,"507 Maple St, Los Angeles, CA 90001" +212044,AAA Batteries (4-pack),1,2.99,06/15/19 21:31,"838 Highland St, Atlanta, GA 30301" +212045,Apple Airpods Headphones,1,150,06/10/19 20:25,"58 6th St, Seattle, WA 98101" +212046,AAA Batteries (4-pack),1,2.99,06/11/19 19:17,"673 West St, San Francisco, CA 94016" +212047,AA Batteries (4-pack),1,3.84,06/26/19 20:33,"334 Jackson St, New York City, NY 10001" +212048,ThinkPad Laptop,1,999.99,06/20/19 18:54,"666 11th St, New York City, NY 10001" +212049,Bose SoundSport Headphones,1,99.99,06/27/19 13:22,"761 Cherry St, San Francisco, CA 94016" +212050,34in Ultrawide Monitor,1,379.99,06/09/19 17:47,"676 Lincoln St, Seattle, WA 98101" +212051,27in FHD Monitor,1,149.99,06/30/19 10:40,"364 South St, New York City, NY 10001" +212052,Lightning Charging Cable,1,14.95,06/17/19 17:01,"777 South St, San Francisco, CA 94016" +212053,Lightning Charging Cable,1,14.95,06/30/19 18:48,"790 Highland St, New York City, NY 10001" +212053,Lightning Charging Cable,1,14.95,06/30/19 18:48,"790 Highland St, New York City, NY 10001" +212054,Flatscreen TV,1,300,06/04/19 00:38,"789 Washington St, Seattle, WA 98101" +212055,USB-C Charging Cable,1,11.95,06/11/19 09:25,"176 Elm St, New York City, NY 10001" +212056,AA Batteries (4-pack),1,3.84,06/09/19 22:44,"653 14th St, San Francisco, CA 94016" +212057,27in 4K Gaming Monitor,1,389.99,06/06/19 10:55,"955 Forest St, Dallas, TX 75001" +212058,LG Washing Machine,1,600.0,06/17/19 13:22,"108 4th St, Atlanta, GA 30301" +212059,LG Dryer,1,600.0,06/14/19 12:07,"906 6th St, Atlanta, GA 30301" +212060,iPhone,1,700,06/06/19 18:54,"706 12th St, New York City, NY 10001" +212060,Apple Airpods Headphones,1,150,06/06/19 18:54,"706 12th St, New York City, NY 10001" +212061,Flatscreen TV,1,300,06/08/19 22:07,"138 Spruce St, Austin, TX 73301" +212062,Lightning Charging Cable,1,14.95,06/11/19 09:41,"300 Cedar St, San Francisco, CA 94016" +212063,Wired Headphones,1,11.99,06/06/19 08:21,"460 7th St, San Francisco, CA 94016" +212064,AAA Batteries (4-pack),4,2.99,06/06/19 13:54,"226 10th St, San Francisco, CA 94016" +212065,USB-C Charging Cable,1,11.95,06/28/19 11:05,"175 Park St, San Francisco, CA 94016" +212066,AA Batteries (4-pack),2,3.84,06/25/19 15:56,"714 Church St, Portland, ME 04101" +212067,Apple Airpods Headphones,1,150,06/02/19 11:21,"931 Dogwood St, San Francisco, CA 94016" +212068,Lightning Charging Cable,1,14.95,06/11/19 14:21,"964 Walnut St, Seattle, WA 98101" +212069,Google Phone,1,600,06/10/19 15:05,"982 7th St, Los Angeles, CA 90001" +212070,iPhone,1,700,06/18/19 15:05,"536 11th St, San Francisco, CA 94016" +212071,Vareebadd Phone,1,400,06/10/19 18:16,"704 8th St, Portland, OR 97035" +212072,AA Batteries (4-pack),1,3.84,06/18/19 15:33,"867 Forest St, San Francisco, CA 94016" +212073,Flatscreen TV,1,300,06/30/19 00:36,"319 Jefferson St, Austin, TX 73301" +212074,Apple Airpods Headphones,1,150,06/26/19 11:54,"28 Lakeview St, Seattle, WA 98101" +212075,AA Batteries (4-pack),1,3.84,06/20/19 19:07,"489 14th St, Boston, MA 02215" +212076,AAA Batteries (4-pack),1,2.99,06/28/19 21:46,"610 West St, New York City, NY 10001" +212077,Apple Airpods Headphones,1,150,06/28/19 21:01,"199 Cherry St, Los Angeles, CA 90001" +212078,AA Batteries (4-pack),1,3.84,06/18/19 15:42,"57 Willow St, San Francisco, CA 94016" +212079,AAA Batteries (4-pack),1,2.99,06/17/19 22:53,"541 Jefferson St, Portland, ME 04101" +212080,Wired Headphones,1,11.99,06/22/19 23:35,"775 Meadow St, Atlanta, GA 30301" +212081,Apple Airpods Headphones,1,150,06/21/19 19:31,"500 Washington St, Boston, MA 02215" +212082,27in 4K Gaming Monitor,1,389.99,06/05/19 12:41,"390 Hickory St, San Francisco, CA 94016" +212083,USB-C Charging Cable,2,11.95,06/03/19 07:15,"962 2nd St, Atlanta, GA 30301" +212084,Google Phone,1,600,06/11/19 22:51,"472 Johnson St, San Francisco, CA 94016" +212085,AA Batteries (4-pack),1,3.84,06/08/19 09:30,"530 Hickory St, San Francisco, CA 94016" +212086,Lightning Charging Cable,1,14.95,06/30/19 06:52,"182 River St, Los Angeles, CA 90001" +212087,27in FHD Monitor,1,149.99,06/06/19 10:41,"817 14th St, Boston, MA 02215" +212088,USB-C Charging Cable,1,11.95,06/11/19 21:03,"867 1st St, Seattle, WA 98101" +212089,Lightning Charging Cable,1,14.95,06/02/19 21:49,"697 Cherry St, Dallas, TX 75001" +212090,iPhone,1,700,06/18/19 15:37,"168 Meadow St, San Francisco, CA 94016" +212091,AA Batteries (4-pack),1,3.84,06/13/19 22:15,"415 Johnson St, Dallas, TX 75001" +212092,Apple Airpods Headphones,1,150,06/20/19 21:51,"710 5th St, Los Angeles, CA 90001" +212093,iPhone,1,700,06/17/19 10:17,"850 12th St, Los Angeles, CA 90001" +212094,Bose SoundSport Headphones,1,99.99,06/16/19 08:29,"837 Willow St, Seattle, WA 98101" +212095,Lightning Charging Cable,1,14.95,06/22/19 11:48,"397 14th St, New York City, NY 10001" +212096,Vareebadd Phone,1,400,06/14/19 18:43,"890 Jackson St, San Francisco, CA 94016" +212097,AAA Batteries (4-pack),1,2.99,06/12/19 12:59,"721 Madison St, Boston, MA 02215" +212098,Bose SoundSport Headphones,1,99.99,06/19/19 17:22,"839 Ridge St, San Francisco, CA 94016" +212099,Lightning Charging Cable,1,14.95,06/01/19 23:04,"444 River St, Los Angeles, CA 90001" +212100,ThinkPad Laptop,1,999.99,06/08/19 13:19,"584 Maple St, New York City, NY 10001" +212101,AA Batteries (4-pack),2,3.84,06/13/19 19:33,"796 Forest St, Austin, TX 73301" +212102,Google Phone,1,600,06/07/19 12:49,"731 Maple St, Boston, MA 02215" +212103,Apple Airpods Headphones,1,150,06/22/19 17:39,"415 Walnut St, Boston, MA 02215" +212104,USB-C Charging Cable,1,11.95,06/20/19 16:21,"459 Ridge St, San Francisco, CA 94016" +212105,Bose SoundSport Headphones,1,99.99,06/30/19 10:53,"494 Spruce St, New York City, NY 10001" +212106,Apple Airpods Headphones,1,150,06/22/19 21:00,"233 8th St, Seattle, WA 98101" +212107,AAA Batteries (4-pack),1,2.99,06/08/19 12:37,"16 9th St, Atlanta, GA 30301" +212108,AAA Batteries (4-pack),2,2.99,06/26/19 17:17,"467 Washington St, Austin, TX 73301" +212109,AA Batteries (4-pack),1,3.84,06/14/19 17:51,"333 Lincoln St, San Francisco, CA 94016" +212110,AA Batteries (4-pack),1,3.84,06/23/19 12:27,"835 Wilson St, Boston, MA 02215" +212111,Lightning Charging Cable,1,14.95,06/17/19 00:41,"374 Elm St, Boston, MA 02215" +212112,USB-C Charging Cable,1,11.95,06/25/19 09:19,"333 Maple St, San Francisco, CA 94016" +212113,Apple Airpods Headphones,1,150,06/21/19 16:19,"972 Wilson St, New York City, NY 10001" +212114,AAA Batteries (4-pack),2,2.99,06/13/19 08:50,"41 Wilson St, New York City, NY 10001" +212115,Wired Headphones,1,11.99,06/28/19 11:59,"312 Highland St, San Francisco, CA 94016" +212116,USB-C Charging Cable,2,11.95,06/11/19 15:59,"914 9th St, San Francisco, CA 94016" +212117,34in Ultrawide Monitor,1,379.99,06/22/19 09:48,"764 Cherry St, Boston, MA 02215" +212118,Bose SoundSport Headphones,1,99.99,06/24/19 20:04,"610 13th St, Los Angeles, CA 90001" +212119,AAA Batteries (4-pack),1,2.99,06/19/19 20:18,"429 Maple St, Atlanta, GA 30301" +212120,Apple Airpods Headphones,1,150,06/24/19 19:43,"312 West St, Atlanta, GA 30301" +212121,Lightning Charging Cable,1,14.95,06/20/19 10:03,"2 5th St, New York City, NY 10001" +212122,Bose SoundSport Headphones,1,99.99,06/09/19 19:07,"617 West St, Atlanta, GA 30301" +212123,Bose SoundSport Headphones,1,99.99,06/18/19 21:00,"137 Cherry St, Portland, OR 97035" +212124,AA Batteries (4-pack),3,3.84,06/29/19 11:39,"164 1st St, Seattle, WA 98101" +212125,Lightning Charging Cable,1,14.95,06/10/19 22:53,"893 7th St, Los Angeles, CA 90001" +212126,AA Batteries (4-pack),1,3.84,06/22/19 09:39,"156 River St, Los Angeles, CA 90001" +212127,ThinkPad Laptop,1,999.99,06/20/19 19:16,"667 Ridge St, Boston, MA 02215" +212128,Google Phone,1,600,06/26/19 06:40,"705 Park St, New York City, NY 10001" +212129,Lightning Charging Cable,1,14.95,06/04/19 18:32,"200 8th St, Los Angeles, CA 90001" +212130,USB-C Charging Cable,1,11.95,06/08/19 10:07,"273 Hill St, Austin, TX 73301" +212131,Lightning Charging Cable,1,14.95,06/03/19 18:06,"76 Maple St, Los Angeles, CA 90001" +212132,34in Ultrawide Monitor,1,379.99,06/27/19 15:53,"249 Adams St, Los Angeles, CA 90001" +212133,iPhone,1,700,06/02/19 20:17,"632 West St, Seattle, WA 98101" +212134,27in FHD Monitor,1,149.99,06/23/19 13:27,"691 Jackson St, San Francisco, CA 94016" +212135,20in Monitor,1,109.99,06/12/19 07:29,"911 Walnut St, Los Angeles, CA 90001" +212136,Bose SoundSport Headphones,1,99.99,06/27/19 22:39,"369 Hill St, Los Angeles, CA 90001" +212137,Vareebadd Phone,1,400,06/06/19 08:28,"648 Chestnut St, Los Angeles, CA 90001" +212138,Lightning Charging Cable,1,14.95,06/18/19 17:28,"228 14th St, Atlanta, GA 30301" +212139,Flatscreen TV,1,300,06/11/19 10:43,"681 Ridge St, Los Angeles, CA 90001" +212140,Lightning Charging Cable,1,14.95,06/11/19 12:25,"830 Cedar St, Los Angeles, CA 90001" +212141,Lightning Charging Cable,1,14.95,06/15/19 12:29,"714 Elm St, Boston, MA 02215" +212142,AAA Batteries (4-pack),1,2.99,06/01/19 14:53,"777 Willow St, Los Angeles, CA 90001" +212142,Apple Airpods Headphones,1,150,06/01/19 14:53,"777 Willow St, Los Angeles, CA 90001" +212143,AAA Batteries (4-pack),1,2.99,06/20/19 13:11,"670 Hill St, Austin, TX 73301" +212144,Wired Headphones,1,11.99,06/10/19 21:34,"95 Chestnut St, Boston, MA 02215" +212145,Lightning Charging Cable,1,14.95,06/02/19 11:09,"938 Cherry St, Atlanta, GA 30301" +212146,AAA Batteries (4-pack),1,2.99,06/02/19 12:11,"220 Walnut St, Seattle, WA 98101" +212147,USB-C Charging Cable,1,11.95,06/01/19 15:37,"521 Hickory St, San Francisco, CA 94016" +212148,27in FHD Monitor,1,149.99,06/05/19 14:47,"584 Lakeview St, Los Angeles, CA 90001" +212149,Apple Airpods Headphones,1,150,06/27/19 19:59,"990 1st St, New York City, NY 10001" +212150,Bose SoundSport Headphones,1,99.99,06/27/19 17:08,"527 7th St, Dallas, TX 75001" +212151,34in Ultrawide Monitor,1,379.99,06/19/19 18:15,"760 Walnut St, Seattle, WA 98101" +212152,Wired Headphones,1,11.99,06/29/19 07:33,"106 Meadow St, San Francisco, CA 94016" +212153,AA Batteries (4-pack),1,3.84,06/24/19 00:05,"658 1st St, New York City, NY 10001" +212154,AA Batteries (4-pack),1,3.84,06/08/19 18:35,"224 2nd St, Los Angeles, CA 90001" +212155,34in Ultrawide Monitor,1,379.99,06/14/19 11:17,"650 Main St, San Francisco, CA 94016" +212156,27in FHD Monitor,1,149.99,06/16/19 12:32,"718 Chestnut St, San Francisco, CA 94016" +212157,Flatscreen TV,1,300,06/09/19 16:27,"411 Walnut St, San Francisco, CA 94016" +212158,USB-C Charging Cable,1,11.95,06/18/19 16:12,"17 Spruce St, Atlanta, GA 30301" +212159,USB-C Charging Cable,1,11.95,06/06/19 08:10,"274 Hickory St, New York City, NY 10001" +212160,Wired Headphones,1,11.99,06/14/19 11:32,"260 Lakeview St, San Francisco, CA 94016" +212161,AAA Batteries (4-pack),1,2.99,06/21/19 09:46,"490 Highland St, Dallas, TX 75001" +212162,Wired Headphones,1,11.99,06/01/19 22:29,"51 Forest St, Los Angeles, CA 90001" +212163,Lightning Charging Cable,1,14.95,06/25/19 08:58,"617 Madison St, San Francisco, CA 94016" +212164,AA Batteries (4-pack),1,3.84,06/11/19 21:30,"755 5th St, Dallas, TX 75001" +212165,Lightning Charging Cable,1,14.95,06/21/19 12:36,"223 Adams St, San Francisco, CA 94016" +212166,iPhone,1,700,06/25/19 16:01,"346 Church St, Los Angeles, CA 90001" +212167,AAA Batteries (4-pack),1,2.99,06/14/19 10:38,"994 Maple St, San Francisco, CA 94016" +212168,AAA Batteries (4-pack),1,2.99,06/19/19 19:32,"915 Adams St, Los Angeles, CA 90001" +212169,Bose SoundSport Headphones,1,99.99,06/14/19 17:50,"863 Washington St, San Francisco, CA 94016" +212170,Lightning Charging Cable,1,14.95,06/10/19 19:52,"343 6th St, New York City, NY 10001" +212171,27in FHD Monitor,1,149.99,06/02/19 21:32,"313 South St, San Francisco, CA 94016" +212172,Bose SoundSport Headphones,1,99.99,06/15/19 15:32,"260 Hickory St, Los Angeles, CA 90001" +212172,AA Batteries (4-pack),2,3.84,06/15/19 15:32,"260 Hickory St, Los Angeles, CA 90001" +212173,AA Batteries (4-pack),5,3.84,06/23/19 12:04,"714 1st St, Austin, TX 73301" +212174,27in FHD Monitor,1,149.99,06/13/19 18:20,"351 Highland St, Atlanta, GA 30301" +212175,Lightning Charging Cable,1,14.95,06/17/19 12:26,"136 11th St, New York City, NY 10001" +212176,Lightning Charging Cable,1,14.95,06/18/19 18:10,"683 Elm St, Austin, TX 73301" +212177,Wired Headphones,1,11.99,06/08/19 17:51,"465 5th St, Portland, OR 97035" +212178,27in FHD Monitor,1,149.99,06/06/19 01:11,"891 Jefferson St, Portland, OR 97035" +212179,Wired Headphones,1,11.99,06/06/19 19:40,"567 Maple St, San Francisco, CA 94016" +212180,AAA Batteries (4-pack),1,2.99,06/16/19 13:42,"344 Washington St, Portland, OR 97035" +212181,27in 4K Gaming Monitor,1,389.99,06/20/19 01:06,"92 Willow St, San Francisco, CA 94016" +212182,Wired Headphones,1,11.99,06/08/19 11:57,"754 Highland St, Atlanta, GA 30301" +212183,34in Ultrawide Monitor,1,379.99,06/13/19 16:36,"705 Hill St, San Francisco, CA 94016" +212184,USB-C Charging Cable,1,11.95,06/29/19 21:07,"56 Meadow St, San Francisco, CA 94016" +212185,Lightning Charging Cable,1,14.95,06/12/19 20:31,"396 Highland St, Portland, OR 97035" +212186,Lightning Charging Cable,1,14.95,06/29/19 19:54,"620 Cherry St, Los Angeles, CA 90001" +212187,AA Batteries (4-pack),1,3.84,06/11/19 09:23,"166 South St, Dallas, TX 75001" +212188,Flatscreen TV,1,300,06/18/19 17:13,"773 Chestnut St, San Francisco, CA 94016" +212189,AA Batteries (4-pack),3,3.84,06/02/19 19:14,"227 2nd St, Los Angeles, CA 90001" +212190,AA Batteries (4-pack),1,3.84,06/12/19 23:30,"339 Lincoln St, Los Angeles, CA 90001" +212191,Lightning Charging Cable,1,14.95,06/21/19 15:29,"784 6th St, Atlanta, GA 30301" +212192,AA Batteries (4-pack),1,3.84,06/03/19 01:37,"883 Madison St, Atlanta, GA 30301" +212193,AA Batteries (4-pack),2,3.84,06/10/19 09:56,"501 West St, San Francisco, CA 94016" +212194,Lightning Charging Cable,1,14.95,06/26/19 10:26,"211 11th St, Austin, TX 73301" +212195,USB-C Charging Cable,1,11.95,06/01/19 21:33,"135 Forest St, Austin, TX 73301" +212196,AA Batteries (4-pack),1,3.84,06/12/19 19:01,"3 1st St, Dallas, TX 75001" +212197,Apple Airpods Headphones,1,150,06/24/19 10:18,"838 Hickory St, Los Angeles, CA 90001" +212198,USB-C Charging Cable,1,11.95,06/22/19 09:25,"282 Jackson St, San Francisco, CA 94016" +212199,20in Monitor,1,109.99,06/10/19 19:35,"460 Chestnut St, San Francisco, CA 94016" +212200,Google Phone,1,600,06/26/19 12:45,"259 Lincoln St, New York City, NY 10001" +212201,Lightning Charging Cable,1,14.95,06/18/19 20:28,"375 Ridge St, New York City, NY 10001" +212202,USB-C Charging Cable,1,11.95,06/28/19 10:34,"708 5th St, San Francisco, CA 94016" +212203,Flatscreen TV,1,300,06/24/19 14:34,"866 Wilson St, New York City, NY 10001" +212204,AA Batteries (4-pack),1,3.84,06/20/19 09:25,"325 2nd St, Boston, MA 02215" +212205,Lightning Charging Cable,1,14.95,06/03/19 03:45,"67 River St, San Francisco, CA 94016" +212206,AAA Batteries (4-pack),1,2.99,06/25/19 14:18,"891 4th St, Austin, TX 73301" +212207,AA Batteries (4-pack),1,3.84,06/19/19 19:38,"336 Main St, Boston, MA 02215" +212208,Lightning Charging Cable,1,14.95,06/30/19 09:06,"399 Sunset St, Los Angeles, CA 90001" +212209,USB-C Charging Cable,1,11.95,06/29/19 12:22,"883 9th St, Portland, OR 97035" +212210,AA Batteries (4-pack),1,3.84,06/02/19 05:15,"523 13th St, San Francisco, CA 94016" +212211,AAA Batteries (4-pack),3,2.99,06/02/19 16:17,"130 West St, Los Angeles, CA 90001" +212212,Wired Headphones,1,11.99,06/24/19 09:08,"996 Hill St, New York City, NY 10001" +212213,20in Monitor,1,109.99,06/24/19 16:02,"718 Meadow St, Dallas, TX 75001" +212214,Google Phone,1,600,06/18/19 08:11,"450 10th St, Dallas, TX 75001" +212215,AAA Batteries (4-pack),1,2.99,06/30/19 19:24,"530 Sunset St, San Francisco, CA 94016" +212216,Wired Headphones,2,11.99,06/05/19 12:40,"943 12th St, New York City, NY 10001" +212217,Google Phone,1,600,06/24/19 10:35,"738 Lakeview St, New York City, NY 10001" +212217,USB-C Charging Cable,1,11.95,06/24/19 10:35,"738 Lakeview St, New York City, NY 10001" +212218,USB-C Charging Cable,1,11.95,06/04/19 22:17,"488 8th St, Los Angeles, CA 90001" +212219,AA Batteries (4-pack),1,3.84,06/16/19 09:39,"680 Center St, New York City, NY 10001" +212220,34in Ultrawide Monitor,1,379.99,06/28/19 00:15,"513 11th St, San Francisco, CA 94016" +212221,Lightning Charging Cable,1,14.95,06/15/19 10:21,"695 Chestnut St, San Francisco, CA 94016" +212222,Bose SoundSport Headphones,1,99.99,06/02/19 14:00,"688 Wilson St, Dallas, TX 75001" +212223,AAA Batteries (4-pack),2,2.99,06/21/19 17:05,"475 Highland St, Atlanta, GA 30301" +212224,Lightning Charging Cable,1,14.95,06/13/19 10:39,"147 Wilson St, San Francisco, CA 94016" +212225,Lightning Charging Cable,1,14.95,06/12/19 19:37,"733 Lakeview St, Los Angeles, CA 90001" +212226,USB-C Charging Cable,1,11.95,06/09/19 21:07,"129 Lincoln St, Boston, MA 02215" +212227,Wired Headphones,1,11.99,06/27/19 17:08,"546 13th St, Austin, TX 73301" +212228,34in Ultrawide Monitor,1,379.99,06/24/19 18:40,"178 Park St, Seattle, WA 98101" +212229,AA Batteries (4-pack),1,3.84,06/12/19 11:09,"550 Highland St, Atlanta, GA 30301" +212230,Lightning Charging Cable,1,14.95,06/24/19 07:10,"468 South St, San Francisco, CA 94016" +212231,AA Batteries (4-pack),2,3.84,06/18/19 21:55,"183 Ridge St, San Francisco, CA 94016" +212232,Apple Airpods Headphones,1,150,06/24/19 23:40,"176 4th St, San Francisco, CA 94016" +212233,Macbook Pro Laptop,1,1700,06/23/19 12:21,"234 Center St, New York City, NY 10001" +212234,Apple Airpods Headphones,1,150,06/20/19 06:39,"169 Lincoln St, New York City, NY 10001" +212235,34in Ultrawide Monitor,1,379.99,06/28/19 16:29,"10 Willow St, Atlanta, GA 30301" +212236,Wired Headphones,1,11.99,06/04/19 09:56,"132 Walnut St, Portland, OR 97035" +212237,Wired Headphones,1,11.99,06/30/19 20:19,"88 4th St, Los Angeles, CA 90001" +212238,Apple Airpods Headphones,1,150,06/03/19 10:53,"1 12th St, Atlanta, GA 30301" +212239,27in 4K Gaming Monitor,1,389.99,06/22/19 20:53,"190 Maple St, San Francisco, CA 94016" +212240,Lightning Charging Cable,1,14.95,06/09/19 20:28,"387 Park St, Seattle, WA 98101" +212241,27in FHD Monitor,1,149.99,06/23/19 16:58,"352 11th St, Boston, MA 02215" +212242,iPhone,1,700,06/03/19 21:15,"913 12th St, San Francisco, CA 94016" +212242,AAA Batteries (4-pack),1,2.99,06/03/19 21:15,"913 12th St, San Francisco, CA 94016" +212243,27in 4K Gaming Monitor,1,389.99,06/04/19 19:37,"751 North St, New York City, NY 10001" +212244,AAA Batteries (4-pack),2,2.99,06/27/19 07:18,"932 2nd St, San Francisco, CA 94016" +212245,Bose SoundSport Headphones,1,99.99,06/13/19 20:21,"156 South St, San Francisco, CA 94016" +212246,AA Batteries (4-pack),1,3.84,06/19/19 10:16,"126 Forest St, Seattle, WA 98101" +212247,Bose SoundSport Headphones,1,99.99,06/12/19 10:16,"239 Chestnut St, San Francisco, CA 94016" +212248,Bose SoundSport Headphones,1,99.99,06/21/19 11:26,"887 Highland St, Los Angeles, CA 90001" +212249,Apple Airpods Headphones,1,150,06/09/19 10:21,"796 9th St, San Francisco, CA 94016" +212250,AAA Batteries (4-pack),1,2.99,06/21/19 09:05,"963 Cedar St, Portland, OR 97035" +212251,Bose SoundSport Headphones,1,99.99,06/10/19 10:44,"516 Highland St, Portland, OR 97035" +212252,Lightning Charging Cable,1,14.95,06/21/19 12:14,"809 1st St, Boston, MA 02215" +212253,AAA Batteries (4-pack),2,2.99,06/20/19 21:59,"367 10th St, Portland, ME 04101" +212254,Apple Airpods Headphones,1,150,06/08/19 10:32,"546 Ridge St, Dallas, TX 75001" +212255,AA Batteries (4-pack),2,3.84,06/30/19 13:43,"792 Park St, New York City, NY 10001" +212256,Macbook Pro Laptop,1,1700,06/18/19 13:39,"470 Johnson St, Dallas, TX 75001" +212257,Bose SoundSport Headphones,1,99.99,06/11/19 17:18,"523 Cedar St, New York City, NY 10001" +212258,AA Batteries (4-pack),2,3.84,06/03/19 17:25,"427 Jefferson St, San Francisco, CA 94016" +212259,Lightning Charging Cable,1,14.95,06/21/19 17:59,"285 Cedar St, New York City, NY 10001" +212260,LG Washing Machine,1,600.0,06/14/19 20:37,"844 Center St, Los Angeles, CA 90001" +212261,AA Batteries (4-pack),1,3.84,06/27/19 14:14,"208 River St, Seattle, WA 98101" +212262,Wired Headphones,1,11.99,06/04/19 12:18,"621 Willow St, Dallas, TX 75001" +212263,34in Ultrawide Monitor,1,379.99,06/17/19 06:32,"813 Lakeview St, Dallas, TX 75001" +212264,AAA Batteries (4-pack),1,2.99,06/18/19 19:35,"39 Main St, Seattle, WA 98101" +212264,AA Batteries (4-pack),1,3.84,06/18/19 19:35,"39 Main St, Seattle, WA 98101" +212265,USB-C Charging Cable,1,11.95,06/10/19 03:12,"664 Johnson St, San Francisco, CA 94016" +212266,Wired Headphones,1,11.99,06/30/19 16:50,"845 7th St, Seattle, WA 98101" +212267,AA Batteries (4-pack),4,3.84,06/08/19 19:30,"367 Meadow St, Dallas, TX 75001" +212268,AAA Batteries (4-pack),1,2.99,06/10/19 16:11,"323 9th St, Seattle, WA 98101" +212269,iPhone,1,700,06/16/19 16:35,"450 Chestnut St, New York City, NY 10001" +212269,Wired Headphones,2,11.99,06/16/19 16:35,"450 Chestnut St, New York City, NY 10001" +212270,Flatscreen TV,1,300,06/21/19 21:58,"990 Wilson St, San Francisco, CA 94016" +212271,Lightning Charging Cable,1,14.95,06/27/19 20:57,"340 Lincoln St, San Francisco, CA 94016" +212272,Wired Headphones,1,11.99,06/26/19 15:55,"353 Meadow St, San Francisco, CA 94016" +212273,USB-C Charging Cable,1,11.95,06/05/19 18:27,"816 Cherry St, San Francisco, CA 94016" +212274,Flatscreen TV,1,300,06/01/19 10:41,"775 11th St, Boston, MA 02215" +212275,Bose SoundSport Headphones,1,99.99,06/28/19 21:43,"78 Chestnut St, Seattle, WA 98101" +212276,Wired Headphones,1,11.99,06/11/19 19:31,"946 Jefferson St, New York City, NY 10001" +212277,AA Batteries (4-pack),1,3.84,06/11/19 14:05,"236 4th St, New York City, NY 10001" +212278,27in 4K Gaming Monitor,1,389.99,06/10/19 02:00,"183 Cedar St, Boston, MA 02215" +212279,USB-C Charging Cable,1,11.95,06/01/19 18:07,"840 7th St, Seattle, WA 98101" +212280,Lightning Charging Cable,2,14.95,06/29/19 19:39,"604 11th St, Boston, MA 02215" +212281,AA Batteries (4-pack),1,3.84,06/29/19 19:58,"771 Hickory St, New York City, NY 10001" +212282,Lightning Charging Cable,1,14.95,06/21/19 13:04,"791 2nd St, New York City, NY 10001" +212283,AA Batteries (4-pack),1,3.84,06/29/19 22:27,"967 13th St, Los Angeles, CA 90001" +212284,Wired Headphones,1,11.99,06/08/19 02:04,"995 North St, Seattle, WA 98101" +212285,Flatscreen TV,1,300,06/07/19 12:04,"100 River St, Austin, TX 73301" +212286,Bose SoundSport Headphones,1,99.99,06/19/19 22:54,"604 Adams St, Boston, MA 02215" +212287,Wired Headphones,1,11.99,06/28/19 09:16,"286 Park St, Boston, MA 02215" +212288,Macbook Pro Laptop,1,1700,06/07/19 08:12,"30 Cedar St, San Francisco, CA 94016" +212289,Apple Airpods Headphones,1,150,06/20/19 19:37,"895 Meadow St, San Francisco, CA 94016" +212290,USB-C Charging Cable,1,11.95,06/24/19 22:37,"391 7th St, San Francisco, CA 94016" +212291,USB-C Charging Cable,1,11.95,06/08/19 18:06,"156 4th St, Los Angeles, CA 90001" +212292,iPhone,1,700,06/10/19 06:22,"772 Spruce St, New York City, NY 10001" +212293,ThinkPad Laptop,1,999.99,06/04/19 12:52,"553 2nd St, San Francisco, CA 94016" +212294,iPhone,1,700,06/29/19 16:01,"652 Maple St, New York City, NY 10001" +212295,Lightning Charging Cable,1,14.95,06/22/19 13:14,"359 Dogwood St, Boston, MA 02215" +212296,AA Batteries (4-pack),2,3.84,06/29/19 15:16,"761 14th St, San Francisco, CA 94016" +212297,Wired Headphones,1,11.99,06/20/19 15:28,"539 South St, Los Angeles, CA 90001" +212298,Wired Headphones,1,11.99,06/19/19 15:34,"157 Main St, Boston, MA 02215" +212299,Apple Airpods Headphones,1,150,06/09/19 02:28,"317 2nd St, Boston, MA 02215" +212300,ThinkPad Laptop,1,999.99,06/17/19 22:27,"388 Center St, New York City, NY 10001" +212301,Apple Airpods Headphones,1,150,06/14/19 06:47,"441 Pine St, Los Angeles, CA 90001" +212302,Wired Headphones,1,11.99,06/28/19 18:56,"220 Washington St, San Francisco, CA 94016" +212303,Lightning Charging Cable,1,14.95,06/11/19 16:11,"691 Forest St, Boston, MA 02215" +212304,34in Ultrawide Monitor,1,379.99,06/25/19 06:54,"161 Lake St, Boston, MA 02215" +212305,Lightning Charging Cable,1,14.95,06/21/19 03:59,"638 11th St, San Francisco, CA 94016" +212306,Wired Headphones,1,11.99,06/10/19 13:47,"775 Johnson St, Los Angeles, CA 90001" +212307,USB-C Charging Cable,1,11.95,06/22/19 16:59,"668 6th St, New York City, NY 10001" +212308,Flatscreen TV,1,300,06/21/19 17:49,"598 Jefferson St, Portland, OR 97035" +212309,Vareebadd Phone,1,400,06/28/19 20:31,"349 Lincoln St, Seattle, WA 98101" +212310,Google Phone,1,600,06/26/19 00:15,"836 8th St, Boston, MA 02215" +212310,USB-C Charging Cable,1,11.95,06/26/19 00:15,"836 8th St, Boston, MA 02215" +212311,ThinkPad Laptop,1,999.99,06/01/19 14:01,"41 Jackson St, Boston, MA 02215" +212312,Apple Airpods Headphones,1,150,06/09/19 08:07,"60 4th St, Atlanta, GA 30301" +212313,USB-C Charging Cable,2,11.95,06/16/19 16:00,"806 North St, Atlanta, GA 30301" +212314,Wired Headphones,1,11.99,06/08/19 13:53,"739 Lincoln St, Boston, MA 02215" +212315,Wired Headphones,1,11.99,06/24/19 13:45,"77 Jackson St, Los Angeles, CA 90001" +212316,AAA Batteries (4-pack),1,2.99,06/21/19 03:19,"838 Washington St, Atlanta, GA 30301" +212317,USB-C Charging Cable,1,11.95,06/13/19 18:01,"153 Maple St, Atlanta, GA 30301" +212318,34in Ultrawide Monitor,1,379.99,06/02/19 21:08,"987 Cherry St, Dallas, TX 75001" +212319,iPhone,1,700,06/13/19 20:00,"429 Lincoln St, San Francisco, CA 94016" +212319,Wired Headphones,1,11.99,06/13/19 20:00,"429 Lincoln St, San Francisco, CA 94016" +212320,Bose SoundSport Headphones,1,99.99,06/15/19 17:46,"658 9th St, New York City, NY 10001" +212321,USB-C Charging Cable,1,11.95,06/03/19 19:58,"839 Highland St, Austin, TX 73301" +212322,ThinkPad Laptop,1,999.99,06/20/19 15:24,"997 River St, Boston, MA 02215" +212323,Wired Headphones,1,11.99,06/28/19 16:24,"672 South St, New York City, NY 10001" +212324,Lightning Charging Cable,1,14.95,06/01/19 15:17,"708 4th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +212325,Vareebadd Phone,1,400,06/11/19 01:41,"351 Forest St, San Francisco, CA 94016" +212326,27in FHD Monitor,1,149.99,06/22/19 07:39,"997 Park St, Atlanta, GA 30301" +212327,Apple Airpods Headphones,1,150,06/08/19 09:24,"740 11th St, Seattle, WA 98101" +212328,Lightning Charging Cable,1,14.95,06/23/19 11:08,"263 Ridge St, San Francisco, CA 94016" +212329,AAA Batteries (4-pack),1,2.99,06/11/19 21:28,"971 Wilson St, Los Angeles, CA 90001" +212330,USB-C Charging Cable,1,11.95,06/22/19 15:52,"977 Pine St, Seattle, WA 98101" +212331,iPhone,1,700,06/28/19 23:32,"593 7th St, Los Angeles, CA 90001" +212332,20in Monitor,1,109.99,06/18/19 16:27,"924 Hill St, Atlanta, GA 30301" +212332,Lightning Charging Cable,1,14.95,06/18/19 16:27,"924 Hill St, Atlanta, GA 30301" +212333,Macbook Pro Laptop,1,1700,06/11/19 22:23,"814 Jefferson St, Los Angeles, CA 90001" +212334,USB-C Charging Cable,1,11.95,06/03/19 13:21,"883 13th St, Seattle, WA 98101" +212335,AA Batteries (4-pack),6,3.84,06/21/19 11:20,"213 Park St, Dallas, TX 75001" +212336,Google Phone,1,600,06/20/19 21:35,"440 Highland St, New York City, NY 10001" +212337,USB-C Charging Cable,1,11.95,06/21/19 11:12,"429 Center St, San Francisco, CA 94016" +212338,27in 4K Gaming Monitor,1,389.99,06/21/19 13:32,"729 Church St, San Francisco, CA 94016" +212339,AAA Batteries (4-pack),1,2.99,06/12/19 13:41,"345 Lakeview St, Los Angeles, CA 90001" +212340,AAA Batteries (4-pack),1,2.99,06/23/19 13:01,"889 Washington St, Los Angeles, CA 90001" +212341,USB-C Charging Cable,1,11.95,06/18/19 19:53,"732 Spruce St, San Francisco, CA 94016" +212342,Bose SoundSport Headphones,1,99.99,06/07/19 12:14,"24 4th St, Boston, MA 02215" +212343,Wired Headphones,1,11.99,06/30/19 19:42,"472 Forest St, New York City, NY 10001" +212344,AA Batteries (4-pack),1,3.84,06/24/19 09:17,"12 4th St, Portland, ME 04101" +212345,iPhone,1,700,06/02/19 12:51,"341 Walnut St, Dallas, TX 75001" +212346,Lightning Charging Cable,1,14.95,06/23/19 15:39,"692 Jackson St, Atlanta, GA 30301" +212347,AA Batteries (4-pack),1,3.84,06/03/19 11:04,"838 Adams St, San Francisco, CA 94016" +212348,Wired Headphones,1,11.99,06/26/19 14:31,"863 Jackson St, New York City, NY 10001" +212349,34in Ultrawide Monitor,1,379.99,06/29/19 19:51,"332 Center St, Los Angeles, CA 90001" +212350,USB-C Charging Cable,2,11.95,06/06/19 09:57,"82 West St, Los Angeles, CA 90001" +212351,AAA Batteries (4-pack),2,2.99,06/18/19 22:53,"963 Church St, Portland, OR 97035" +212352,AAA Batteries (4-pack),1,2.99,06/26/19 17:40,"268 Washington St, San Francisco, CA 94016" +212353,USB-C Charging Cable,1,11.95,06/03/19 13:23,"618 Hickory St, Los Angeles, CA 90001" +212354,Google Phone,1,600,06/26/19 16:57,"897 Forest St, Boston, MA 02215" +212355,Wired Headphones,1,11.99,06/16/19 06:24,"562 Cedar St, Boston, MA 02215" +212356,Lightning Charging Cable,1,14.95,06/21/19 15:34,"426 Center St, Los Angeles, CA 90001" +212357,AA Batteries (4-pack),1,3.84,06/06/19 18:34,"261 Sunset St, Seattle, WA 98101" +212358,AA Batteries (4-pack),1,3.84,06/20/19 16:36,"606 Pine St, Los Angeles, CA 90001" +212359,34in Ultrawide Monitor,1,379.99,06/08/19 16:43,"312 11th St, San Francisco, CA 94016" +212360,Wired Headphones,1,11.99,06/04/19 22:18,"133 Dogwood St, Boston, MA 02215" +212361,Bose SoundSport Headphones,2,99.99,06/09/19 22:56,"713 Adams St, New York City, NY 10001" +212362,iPhone,1,700,06/23/19 14:00,"270 10th St, New York City, NY 10001" +212363,USB-C Charging Cable,1,11.95,06/25/19 09:53,"675 4th St, New York City, NY 10001" +212364,AA Batteries (4-pack),1,3.84,06/20/19 18:26,"292 Chestnut St, Boston, MA 02215" +212365,AA Batteries (4-pack),1,3.84,06/11/19 20:24,"410 Lincoln St, Atlanta, GA 30301" +212366,20in Monitor,1,109.99,06/28/19 15:31,"789 Cherry St, Boston, MA 02215" +212367,20in Monitor,1,109.99,06/16/19 15:37,"412 Lakeview St, Austin, TX 73301" +212368,27in 4K Gaming Monitor,1,389.99,06/15/19 19:03,"64 13th St, Los Angeles, CA 90001" +212369,Lightning Charging Cable,1,14.95,06/24/19 13:50,"125 Chestnut St, Portland, OR 97035" +212370,Lightning Charging Cable,2,14.95,06/14/19 18:10,"700 Ridge St, Los Angeles, CA 90001" +212371,Wired Headphones,1,11.99,06/16/19 12:24,"956 9th St, Boston, MA 02215" +212372,Apple Airpods Headphones,1,150,06/27/19 02:22,"118 Walnut St, San Francisco, CA 94016" +212373,ThinkPad Laptop,1,999.99,06/06/19 21:46,"257 Jackson St, Dallas, TX 75001" +212374,Vareebadd Phone,1,400,06/10/19 00:23,"717 River St, San Francisco, CA 94016" +212375,34in Ultrawide Monitor,1,379.99,06/27/19 07:38,"472 Washington St, San Francisco, CA 94016" +212376,AAA Batteries (4-pack),1,2.99,06/23/19 19:58,"833 Sunset St, Boston, MA 02215" +212377,Wired Headphones,1,11.99,06/19/19 14:04,"604 14th St, Dallas, TX 75001" +212378,20in Monitor,1,109.99,06/02/19 15:18,"504 Willow St, San Francisco, CA 94016" +212379,Lightning Charging Cable,1,14.95,06/23/19 11:15,"551 Dogwood St, Boston, MA 02215" +212380,Apple Airpods Headphones,1,150,06/13/19 18:17,"473 1st St, Boston, MA 02215" +212381,27in 4K Gaming Monitor,1,389.99,06/01/19 20:01,"826 13th St, Seattle, WA 98101" +212382,Wired Headphones,1,11.99,06/18/19 06:51,"992 Lakeview St, Los Angeles, CA 90001" +212383,Wired Headphones,1,11.99,06/21/19 04:20,"187 10th St, New York City, NY 10001" +212384,iPhone,1,700,06/07/19 12:53,"65 14th St, Los Angeles, CA 90001" +212385,AA Batteries (4-pack),2,3.84,06/10/19 18:41,"648 8th St, Los Angeles, CA 90001" +212386,Wired Headphones,1,11.99,06/13/19 23:00,"818 Elm St, Dallas, TX 75001" +212387,Wired Headphones,1,11.99,06/11/19 23:05,"325 Sunset St, Atlanta, GA 30301" +212388,Wired Headphones,1,11.99,06/18/19 21:25,"543 South St, New York City, NY 10001" +212389,Lightning Charging Cable,1,14.95,06/03/19 17:39,"407 Maple St, Portland, OR 97035" +212390,ThinkPad Laptop,1,999.99,06/01/19 12:12,"565 6th St, Seattle, WA 98101" +212391,27in 4K Gaming Monitor,1,389.99,06/16/19 21:39,"911 Spruce St, Atlanta, GA 30301" +212392,27in FHD Monitor,1,149.99,06/08/19 09:04,"871 10th St, New York City, NY 10001" +212393,20in Monitor,1,109.99,06/30/19 12:03,"569 Spruce St, Portland, OR 97035" +212394,Lightning Charging Cable,1,14.95,06/24/19 17:15,"251 Washington St, San Francisco, CA 94016" +212395,Google Phone,1,600,06/26/19 10:17,"736 13th St, Los Angeles, CA 90001" +212396,Bose SoundSport Headphones,1,99.99,06/07/19 13:01,"59 1st St, Seattle, WA 98101" +212397,Google Phone,1,600,06/17/19 15:16,"561 Jefferson St, Seattle, WA 98101" +212398,Google Phone,1,600,06/23/19 20:55,"739 South St, Boston, MA 02215" +212399,USB-C Charging Cable,1,11.95,06/01/19 08:34,"560 South St, Boston, MA 02215" +212400,Wired Headphones,1,11.99,06/16/19 19:19,"217 Center St, Atlanta, GA 30301" +212401,Macbook Pro Laptop,1,1700,06/09/19 14:39,"541 Johnson St, Los Angeles, CA 90001" +212402,27in FHD Monitor,1,149.99,06/08/19 07:05,"581 Johnson St, Dallas, TX 75001" +212403,ThinkPad Laptop,1,999.99,06/17/19 15:58,"670 5th St, San Francisco, CA 94016" +212404,ThinkPad Laptop,1,999.99,06/01/19 16:42,"171 Lake St, Seattle, WA 98101" +212405,USB-C Charging Cable,1,11.95,06/15/19 13:14,"47 North St, Boston, MA 02215" +212406,AAA Batteries (4-pack),2,2.99,06/05/19 19:23,"782 10th St, New York City, NY 10001" +212407,Apple Airpods Headphones,1,150,06/06/19 22:04,"617 7th St, Los Angeles, CA 90001" +212408,Bose SoundSport Headphones,1,99.99,06/26/19 11:51,"896 4th St, Dallas, TX 75001" +212409,AA Batteries (4-pack),1,3.84,06/13/19 14:47,"965 Park St, Boston, MA 02215" +212410,USB-C Charging Cable,1,11.95,06/21/19 13:30,"716 Elm St, Atlanta, GA 30301" +212411,AAA Batteries (4-pack),1,2.99,06/14/19 22:59,"258 Jefferson St, Seattle, WA 98101" +212412,Lightning Charging Cable,1,14.95,06/22/19 16:45,"109 9th St, Austin, TX 73301" +212413,iPhone,1,700,06/03/19 20:17,"442 Jefferson St, Seattle, WA 98101" +212414,iPhone,1,700,06/19/19 20:44,"324 9th St, San Francisco, CA 94016" +212414,Wired Headphones,1,11.99,06/19/19 20:44,"324 9th St, San Francisco, CA 94016" +212415,27in FHD Monitor,1,149.99,06/11/19 16:14,"98 Spruce St, Boston, MA 02215" +212416,Bose SoundSport Headphones,1,99.99,06/28/19 13:48,"534 Wilson St, Portland, OR 97035" +212416,USB-C Charging Cable,1,11.95,06/28/19 13:48,"534 Wilson St, Portland, OR 97035" +212417,27in FHD Monitor,1,149.99,06/20/19 17:34,"440 14th St, Los Angeles, CA 90001" +212418,Google Phone,1,600,06/25/19 23:04,"428 Center St, San Francisco, CA 94016" +212418,Lightning Charging Cable,1,14.95,06/25/19 23:04,"428 Center St, San Francisco, CA 94016" +212419,Wired Headphones,1,11.99,06/03/19 13:17,"903 Hickory St, New York City, NY 10001" +212420,AAA Batteries (4-pack),1,2.99,06/04/19 11:10,"479 11th St, Los Angeles, CA 90001" +212421,20in Monitor,1,109.99,06/18/19 13:52,"81 Maple St, Seattle, WA 98101" +212422,Google Phone,1,600,06/20/19 12:34,"495 Washington St, Seattle, WA 98101" +212423,Wired Headphones,1,11.99,06/29/19 14:38,"709 Adams St, Portland, OR 97035" +212424,27in FHD Monitor,1,149.99,06/20/19 11:31,"97 11th St, Boston, MA 02215" +212425,USB-C Charging Cable,1,11.95,06/22/19 20:33,"487 Walnut St, Dallas, TX 75001" +212426,AA Batteries (4-pack),2,3.84,06/19/19 12:16,"85 1st St, San Francisco, CA 94016" +212427,iPhone,1,700,06/20/19 18:47,"612 4th St, Austin, TX 73301" +212428,AAA Batteries (4-pack),1,2.99,06/23/19 11:27,"320 10th St, Seattle, WA 98101" +212429,Lightning Charging Cable,1,14.95,06/10/19 16:08,"331 Wilson St, New York City, NY 10001" +212430,AAA Batteries (4-pack),1,2.99,06/07/19 20:57,"503 Ridge St, Boston, MA 02215" +212431,AAA Batteries (4-pack),1,2.99,06/21/19 00:10,"964 Cedar St, San Francisco, CA 94016" +212432,Lightning Charging Cable,1,14.95,06/13/19 18:51,"177 Elm St, San Francisco, CA 94016" +212433,AA Batteries (4-pack),1,3.84,06/10/19 06:19,"581 13th St, San Francisco, CA 94016" +212434,Apple Airpods Headphones,1,150,06/07/19 20:58,"361 West St, New York City, NY 10001" +212435,Wired Headphones,1,11.99,06/17/19 18:25,"739 North St, San Francisco, CA 94016" +212436,Wired Headphones,1,11.99,06/19/19 22:06,"223 Madison St, Atlanta, GA 30301" +212437,AAA Batteries (4-pack),2,2.99,06/10/19 09:20,"44 Lakeview St, Atlanta, GA 30301" +212438,AA Batteries (4-pack),1,3.84,06/26/19 15:26,"503 Cherry St, Portland, OR 97035" +212439,Wired Headphones,1,11.99,06/13/19 13:03,"530 12th St, New York City, NY 10001" +212440,Lightning Charging Cable,1,14.95,06/07/19 01:44,"577 Church St, Seattle, WA 98101" +212441,Bose SoundSport Headphones,1,99.99,06/20/19 06:47,"923 Elm St, Los Angeles, CA 90001" +212442,AA Batteries (4-pack),4,3.84,06/19/19 00:00,"159 West St, Los Angeles, CA 90001" +212443,AA Batteries (4-pack),1,3.84,06/18/19 16:41,"738 14th St, Atlanta, GA 30301" +212444,Bose SoundSport Headphones,1,99.99,06/22/19 22:39,"77 Hickory St, Los Angeles, CA 90001" +212445,Apple Airpods Headphones,1,150,06/08/19 18:07,"906 Park St, Dallas, TX 75001" +212446,27in FHD Monitor,1,149.99,06/09/19 22:04,"45 Cherry St, Boston, MA 02215" +212447,iPhone,1,700,06/30/19 19:09,"469 Meadow St, Boston, MA 02215" +212448,AAA Batteries (4-pack),2,2.99,06/17/19 17:37,"62 Main St, Seattle, WA 98101" +212449,Bose SoundSport Headphones,1,99.99,06/27/19 09:06,"848 River St, Seattle, WA 98101" +212450,27in 4K Gaming Monitor,1,389.99,06/18/19 12:47,"826 Cedar St, Seattle, WA 98101" +212451,Flatscreen TV,1,300,06/11/19 16:29,"464 Maple St, San Francisco, CA 94016" +212452,AA Batteries (4-pack),1,3.84,06/21/19 11:55,"114 Jackson St, Los Angeles, CA 90001" +212452,AA Batteries (4-pack),1,3.84,06/21/19 11:55,"114 Jackson St, Los Angeles, CA 90001" +212453,USB-C Charging Cable,2,11.95,06/19/19 15:08,"722 Forest St, Dallas, TX 75001" +212454,34in Ultrawide Monitor,1,379.99,06/17/19 20:52,"98 Chestnut St, San Francisco, CA 94016" +212455,AA Batteries (4-pack),1,3.84,06/11/19 21:14,"687 12th St, Los Angeles, CA 90001" +212456,AAA Batteries (4-pack),3,2.99,06/30/19 20:33,"986 Lake St, New York City, NY 10001" +212457,iPhone,1,700,06/03/19 17:52,"417 Johnson St, San Francisco, CA 94016" +212458,ThinkPad Laptop,1,999.99,06/19/19 02:04,"728 Highland St, Portland, OR 97035" +212459,Apple Airpods Headphones,1,150,06/24/19 09:00,"831 Church St, San Francisco, CA 94016" +212460,LG Washing Machine,1,600.0,06/25/19 22:14,"692 Main St, New York City, NY 10001" +212461,AAA Batteries (4-pack),1,2.99,06/13/19 10:12,"78 Forest St, Los Angeles, CA 90001" +212462,iPhone,1,700,06/03/19 20:30,"130 Hickory St, New York City, NY 10001" +212463,Wired Headphones,1,11.99,06/10/19 17:52,"309 Maple St, New York City, NY 10001" +212464,Lightning Charging Cable,1,14.95,06/05/19 11:26,"254 Lincoln St, Seattle, WA 98101" +212465,Lightning Charging Cable,1,14.95,06/18/19 23:53,"916 11th St, San Francisco, CA 94016" +212466,Wired Headphones,1,11.99,06/10/19 13:37,"202 Jefferson St, Seattle, WA 98101" +212467,Bose SoundSport Headphones,1,99.99,06/04/19 13:03,"980 Highland St, Seattle, WA 98101" +212468,AAA Batteries (4-pack),3,2.99,06/20/19 09:55,"940 Washington St, Boston, MA 02215" +212469,AA Batteries (4-pack),1,3.84,06/03/19 09:18,"545 1st St, New York City, NY 10001" +212470,USB-C Charging Cable,1,11.95,06/21/19 13:09,"837 2nd St, San Francisco, CA 94016" +212471,Bose SoundSport Headphones,1,99.99,06/16/19 05:02,"205 Hickory St, Boston, MA 02215" +212472,Apple Airpods Headphones,1,150,06/28/19 14:54,"485 Willow St, San Francisco, CA 94016" +212473,AA Batteries (4-pack),1,3.84,06/15/19 22:47,"994 Walnut St, New York City, NY 10001" +212474,USB-C Charging Cable,1,11.95,06/19/19 19:13,"878 14th St, Seattle, WA 98101" +212475,Wired Headphones,1,11.99,06/29/19 22:49,"806 South St, Seattle, WA 98101" +212476,AA Batteries (4-pack),1,3.84,06/03/19 18:10,"983 14th St, San Francisco, CA 94016" +212477,Lightning Charging Cable,1,14.95,06/29/19 22:23,"791 Pine St, Los Angeles, CA 90001" +212478,Lightning Charging Cable,1,14.95,06/14/19 12:25,"445 Johnson St, Boston, MA 02215" +212479,AA Batteries (4-pack),1,3.84,06/26/19 19:56,"231 4th St, Los Angeles, CA 90001" +212480,27in FHD Monitor,1,149.99,06/18/19 13:57,"133 Spruce St, Seattle, WA 98101" +212481,AA Batteries (4-pack),1,3.84,06/23/19 12:49,"24 Lincoln St, Los Angeles, CA 90001" +212482,Lightning Charging Cable,1,14.95,06/07/19 12:53,"665 Lakeview St, Portland, OR 97035" +212483,27in FHD Monitor,1,149.99,06/26/19 19:27,"515 Park St, Boston, MA 02215" +212484,Lightning Charging Cable,1,14.95,06/08/19 21:43,"505 Jackson St, Los Angeles, CA 90001" +212485,Macbook Pro Laptop,1,1700,06/25/19 16:35,"714 12th St, San Francisco, CA 94016" +212486,Lightning Charging Cable,1,14.95,06/04/19 15:02,"311 10th St, Boston, MA 02215" +212487,USB-C Charging Cable,1,11.95,06/06/19 10:40,"769 Wilson St, Dallas, TX 75001" +212488,34in Ultrawide Monitor,1,379.99,06/09/19 21:55,"708 Ridge St, Atlanta, GA 30301" +212489,27in 4K Gaming Monitor,1,389.99,06/06/19 14:40,"223 Wilson St, San Francisco, CA 94016" +212490,Bose SoundSport Headphones,1,99.99,06/05/19 12:46,"185 West St, Seattle, WA 98101" +212491,AA Batteries (4-pack),1,3.84,06/26/19 09:15,"619 5th St, Austin, TX 73301" +212492,AA Batteries (4-pack),1,3.84,06/24/19 11:21,"548 Jefferson St, San Francisco, CA 94016" +212493,AA Batteries (4-pack),2,3.84,06/17/19 17:32,"368 Walnut St, San Francisco, CA 94016" +212494,AAA Batteries (4-pack),1,2.99,06/09/19 14:34,"148 Park St, Portland, OR 97035" +212495,LG Washing Machine,1,600.0,06/02/19 12:39,"693 Wilson St, Los Angeles, CA 90001" +212496,27in FHD Monitor,1,149.99,06/25/19 19:37,"75 Pine St, Austin, TX 73301" +212497,AA Batteries (4-pack),1,3.84,06/11/19 01:00,"915 South St, Portland, OR 97035" +212498,34in Ultrawide Monitor,1,379.99,06/22/19 09:27,"559 Center St, Portland, OR 97035" +212499,AA Batteries (4-pack),1,3.84,06/17/19 20:25,"347 5th St, Los Angeles, CA 90001" +212500,Apple Airpods Headphones,1,150,06/24/19 13:29,"998 8th St, San Francisco, CA 94016" +212501,20in Monitor,1,109.99,06/07/19 06:07,"636 Walnut St, San Francisco, CA 94016" +212502,27in 4K Gaming Monitor,1,389.99,06/09/19 11:18,"704 Main St, Los Angeles, CA 90001" +212503,ThinkPad Laptop,1,999.99,06/18/19 19:45,"392 14th St, San Francisco, CA 94016" +212504,Macbook Pro Laptop,1,1700,06/06/19 14:35,"932 North St, New York City, NY 10001" +212505,AAA Batteries (4-pack),1,2.99,06/19/19 08:39,"488 7th St, Atlanta, GA 30301" +212506,Lightning Charging Cable,1,14.95,06/03/19 15:45,"216 13th St, Los Angeles, CA 90001" +212507,Wired Headphones,1,11.99,06/29/19 17:33,"528 Jefferson St, Dallas, TX 75001" +212508,Vareebadd Phone,1,400,06/24/19 13:57,"485 Jackson St, Los Angeles, CA 90001" +212508,USB-C Charging Cable,1,11.95,06/24/19 13:57,"485 Jackson St, Los Angeles, CA 90001" +212508,Wired Headphones,2,11.99,06/24/19 13:57,"485 Jackson St, Los Angeles, CA 90001" +212509,Wired Headphones,1,11.99,06/04/19 10:27,"325 Adams St, Boston, MA 02215" +212510,iPhone,1,700,06/10/19 09:12,"771 River St, Los Angeles, CA 90001" +212511,20in Monitor,1,109.99,06/09/19 12:43,"60 11th St, Boston, MA 02215" +212512,Apple Airpods Headphones,1,150,06/21/19 22:26,"657 Cedar St, Los Angeles, CA 90001" +212513,Wired Headphones,1,11.99,06/17/19 09:04,"740 Madison St, Seattle, WA 98101" +212514,USB-C Charging Cable,1,11.95,06/17/19 22:01,"105 1st St, Boston, MA 02215" +212515,USB-C Charging Cable,1,11.95,06/11/19 12:06,"863 West St, San Francisco, CA 94016" +212516,USB-C Charging Cable,1,11.95,06/04/19 07:10,"502 Hill St, Los Angeles, CA 90001" +212517,Wired Headphones,1,11.99,06/26/19 13:18,"780 Cherry St, Dallas, TX 75001" +212518,Bose SoundSport Headphones,1,99.99,06/11/19 13:08,"185 11th St, San Francisco, CA 94016" +212519,Apple Airpods Headphones,1,150,06/14/19 13:20,"805 Adams St, Los Angeles, CA 90001" +212520,34in Ultrawide Monitor,1,379.99,06/29/19 11:05,"38 Lake St, Los Angeles, CA 90001" +212521,Bose SoundSport Headphones,1,99.99,06/22/19 12:03,"855 South St, Atlanta, GA 30301" +212522,USB-C Charging Cable,3,11.95,06/07/19 08:03,"798 Willow St, Dallas, TX 75001" +212523,iPhone,1,700,06/13/19 11:26,"600 Wilson St, Portland, OR 97035" +212524,AAA Batteries (4-pack),1,2.99,06/14/19 19:16,"108 West St, San Francisco, CA 94016" +212525,Apple Airpods Headphones,1,150,06/03/19 17:27,"765 Cedar St, San Francisco, CA 94016" +212526,iPhone,1,700,06/02/19 18:34,"477 11th St, Boston, MA 02215" +212527,AAA Batteries (4-pack),4,2.99,06/19/19 20:41,"593 Hickory St, San Francisco, CA 94016" +212528,Apple Airpods Headphones,1,150,06/14/19 11:14,"111 10th St, New York City, NY 10001" +212529,Wired Headphones,1,11.99,06/15/19 13:50,"739 Adams St, New York City, NY 10001" +212530,AA Batteries (4-pack),2,3.84,06/07/19 20:39,"278 10th St, Boston, MA 02215" +212531,AAA Batteries (4-pack),1,2.99,06/03/19 11:23,"114 Cherry St, New York City, NY 10001" +212532,Wired Headphones,1,11.99,06/01/19 17:17,"784 Walnut St, Boston, MA 02215" +212533,USB-C Charging Cable,1,11.95,06/29/19 15:09,"894 Cedar St, San Francisco, CA 94016" +212534,AAA Batteries (4-pack),1,2.99,06/23/19 23:57,"391 Cedar St, Seattle, WA 98101" +212535,Lightning Charging Cable,1,14.95,06/04/19 13:24,"688 Madison St, San Francisco, CA 94016" +212536,USB-C Charging Cable,2,11.95,06/03/19 06:40,"907 Meadow St, Seattle, WA 98101" +212537,34in Ultrawide Monitor,1,379.99,06/30/19 14:10,"154 4th St, Los Angeles, CA 90001" +212538,Bose SoundSport Headphones,1,99.99,06/09/19 21:05,"738 Pine St, Atlanta, GA 30301" +212539,Wired Headphones,1,11.99,06/28/19 19:02,"46 Washington St, Boston, MA 02215" +212540,AAA Batteries (4-pack),1,2.99,06/22/19 21:49,"665 14th St, Austin, TX 73301" +212541,USB-C Charging Cable,1,11.95,06/11/19 10:19,"693 Chestnut St, San Francisco, CA 94016" +212542,Bose SoundSport Headphones,1,99.99,06/29/19 14:50,"641 Willow St, Austin, TX 73301" +212543,Google Phone,1,600,06/10/19 12:53,"556 Ridge St, Boston, MA 02215" +212543,Bose SoundSport Headphones,1,99.99,06/10/19 12:53,"556 Ridge St, Boston, MA 02215" +212544,AAA Batteries (4-pack),1,2.99,06/13/19 20:01,"635 Washington St, San Francisco, CA 94016" +212545,iPhone,1,700,06/05/19 20:15,"542 Center St, Dallas, TX 75001" +212545,Wired Headphones,1,11.99,06/05/19 20:15,"542 Center St, Dallas, TX 75001" +212546,Macbook Pro Laptop,1,1700,06/10/19 15:48,"230 North St, San Francisco, CA 94016" +212547,Lightning Charging Cable,3,14.95,06/14/19 11:29,"433 11th St, Atlanta, GA 30301" +212548,20in Monitor,1,109.99,06/19/19 20:01,"70 Washington St, New York City, NY 10001" +212549,AAA Batteries (4-pack),1,2.99,06/18/19 22:31,"229 Lincoln St, San Francisco, CA 94016" +212550,AA Batteries (4-pack),1,3.84,06/29/19 21:20,"535 13th St, San Francisco, CA 94016" +212551,USB-C Charging Cable,1,11.95,06/07/19 10:47,"283 12th St, Portland, OR 97035" +212552,Apple Airpods Headphones,1,150,06/23/19 18:32,"574 West St, Los Angeles, CA 90001" +212553,AAA Batteries (4-pack),1,2.99,06/05/19 19:26,"263 Main St, Los Angeles, CA 90001" +212554,Lightning Charging Cable,1,14.95,06/03/19 12:46,"827 Lake St, New York City, NY 10001" +212555,AAA Batteries (4-pack),1,2.99,06/25/19 14:38,"517 14th St, Los Angeles, CA 90001" +212556,Lightning Charging Cable,1,14.95,06/27/19 05:57,"553 Adams St, San Francisco, CA 94016" +212557,Bose SoundSport Headphones,1,99.99,06/07/19 20:30,"871 6th St, Portland, OR 97035" +212558,AAA Batteries (4-pack),1,2.99,06/27/19 08:30,"633 Jackson St, New York City, NY 10001" +212559,Wired Headphones,1,11.99,06/20/19 06:19,"357 Jefferson St, New York City, NY 10001" +212560,20in Monitor,1,109.99,06/14/19 14:53,"768 Lakeview St, Austin, TX 73301" +212561,27in 4K Gaming Monitor,1,389.99,06/16/19 09:22,"683 8th St, Portland, OR 97035" +212562,USB-C Charging Cable,1,11.95,06/06/19 19:19,"284 Meadow St, Dallas, TX 75001" +212563,Macbook Pro Laptop,1,1700,06/23/19 17:18,"974 7th St, San Francisco, CA 94016" +212564,Lightning Charging Cable,1,14.95,06/27/19 11:09,"422 Highland St, Boston, MA 02215" +212565,AAA Batteries (4-pack),2,2.99,06/17/19 16:47,"31 Center St, New York City, NY 10001" +212566,AAA Batteries (4-pack),1,2.99,06/12/19 12:09,"854 Jefferson St, San Francisco, CA 94016" +212567,Apple Airpods Headphones,1,150,06/19/19 17:34,"120 South St, Boston, MA 02215" +212568,AAA Batteries (4-pack),3,2.99,06/09/19 18:59,"495 1st St, Los Angeles, CA 90001" +212569,Apple Airpods Headphones,1,150,06/07/19 09:22,"47 5th St, San Francisco, CA 94016" +212570,Lightning Charging Cable,1,14.95,06/22/19 14:40,"295 2nd St, New York City, NY 10001" +212571,Lightning Charging Cable,1,14.95,06/03/19 19:04,"979 Cedar St, San Francisco, CA 94016" +212572,34in Ultrawide Monitor,1,379.99,06/10/19 10:07,"365 Adams St, Boston, MA 02215" +212573,Lightning Charging Cable,1,14.95,06/25/19 18:00,"920 Highland St, New York City, NY 10001" +212574,Apple Airpods Headphones,1,150,06/12/19 22:12,"26 Madison St, Seattle, WA 98101" +212575,USB-C Charging Cable,1,11.95,06/05/19 10:48,"27 West St, Los Angeles, CA 90001" +212576,USB-C Charging Cable,1,11.95,06/09/19 10:14,"188 Center St, Los Angeles, CA 90001" +212577,AA Batteries (4-pack),1,3.84,06/07/19 10:46,"164 Pine St, San Francisco, CA 94016" +212578,Bose SoundSport Headphones,1,99.99,06/23/19 16:39,"68 12th St, San Francisco, CA 94016" +212579,AAA Batteries (4-pack),1,2.99,06/17/19 11:41,"888 6th St, Los Angeles, CA 90001" +212580,AA Batteries (4-pack),1,3.84,06/24/19 15:27,"526 Chestnut St, Atlanta, GA 30301" +212581,Lightning Charging Cable,1,14.95,06/06/19 19:03,"341 Chestnut St, New York City, NY 10001" +212582,ThinkPad Laptop,1,999.99,06/16/19 12:00,"305 West St, Austin, TX 73301" +212583,USB-C Charging Cable,1,11.95,06/10/19 19:20,"165 Cherry St, Los Angeles, CA 90001" +212584,Apple Airpods Headphones,1,150,06/06/19 22:43,"952 Adams St, Boston, MA 02215" +212585,USB-C Charging Cable,1,11.95,06/04/19 21:00,"523 7th St, New York City, NY 10001" +212586,AAA Batteries (4-pack),1,2.99,06/21/19 10:57,"692 River St, Portland, OR 97035" +212587,20in Monitor,1,109.99,06/03/19 09:00,"869 Church St, Los Angeles, CA 90001" +212588,AAA Batteries (4-pack),1,2.99,06/09/19 08:30,"700 Forest St, San Francisco, CA 94016" +212589,Flatscreen TV,1,300,06/08/19 19:40,"169 9th St, New York City, NY 10001" +212590,27in 4K Gaming Monitor,1,389.99,06/21/19 19:51,"499 Wilson St, Seattle, WA 98101" +212591,27in FHD Monitor,1,149.99,06/30/19 21:54,"757 7th St, San Francisco, CA 94016" +212592,Lightning Charging Cable,1,14.95,06/01/19 11:29,"725 10th St, Los Angeles, CA 90001" +212593,Bose SoundSport Headphones,1,99.99,06/05/19 19:19,"29 Jackson St, Atlanta, GA 30301" +212594,Wired Headphones,1,11.99,06/02/19 16:38,"873 Adams St, San Francisco, CA 94016" +212595,Lightning Charging Cable,1,14.95,06/14/19 19:37,"941 Jackson St, San Francisco, CA 94016" +212596,iPhone,1,700,06/17/19 17:56,"230 Hickory St, Boston, MA 02215" +212597,Wired Headphones,1,11.99,06/23/19 18:53,"676 Meadow St, Austin, TX 73301" +212598,AA Batteries (4-pack),1,3.84,06/22/19 20:42,"286 Cherry St, New York City, NY 10001" +212599,Lightning Charging Cable,1,14.95,06/07/19 18:01,"914 14th St, San Francisco, CA 94016" +212600,Lightning Charging Cable,1,14.95,06/02/19 17:49,"319 Forest St, Atlanta, GA 30301" +212601,AA Batteries (4-pack),1,3.84,06/26/19 02:56,"415 Willow St, Portland, OR 97035" +212602,AA Batteries (4-pack),1,3.84,06/20/19 08:50,"65 Wilson St, San Francisco, CA 94016" +212603,LG Washing Machine,1,600.0,06/25/19 19:30,"838 River St, Dallas, TX 75001" +212604,iPhone,1,700,06/23/19 21:03,"61 Hill St, San Francisco, CA 94016" +212605,Apple Airpods Headphones,1,150,06/09/19 23:27,"620 Park St, New York City, NY 10001" +212606,Lightning Charging Cable,1,14.95,06/03/19 18:31,"243 5th St, San Francisco, CA 94016" +212607,Apple Airpods Headphones,1,150,06/27/19 09:36,"554 South St, San Francisco, CA 94016" +212608,AAA Batteries (4-pack),1,2.99,06/29/19 15:32,"71 West St, Dallas, TX 75001" +212609,Apple Airpods Headphones,1,150,06/10/19 13:26,"497 9th St, Atlanta, GA 30301" +212610,AA Batteries (4-pack),1,3.84,06/03/19 15:48,"6 Center St, Portland, OR 97035" +212611,AA Batteries (4-pack),1,3.84,06/24/19 09:30,"913 Madison St, Seattle, WA 98101" +212612,Apple Airpods Headphones,1,150,06/08/19 07:39,"926 10th St, Atlanta, GA 30301" +212613,27in 4K Gaming Monitor,1,389.99,06/01/19 22:44,"719 Chestnut St, San Francisco, CA 94016" +212614,AAA Batteries (4-pack),2,2.99,06/24/19 10:11,"828 12th St, Boston, MA 02215" +212615,Wired Headphones,1,11.99,06/23/19 21:02,"413 Highland St, New York City, NY 10001" +212616,Bose SoundSport Headphones,1,99.99,06/06/19 18:54,"523 West St, Seattle, WA 98101" +212617,20in Monitor,1,109.99,06/05/19 10:16,"725 2nd St, Seattle, WA 98101" +212618,iPhone,1,700,06/09/19 19:17,"824 Spruce St, San Francisco, CA 94016" +212619,AA Batteries (4-pack),1,3.84,06/02/19 16:58,"740 14th St, Boston, MA 02215" +212620,27in 4K Gaming Monitor,1,389.99,06/04/19 04:01,"593 Dogwood St, San Francisco, CA 94016" +212621,iPhone,1,700,06/23/19 17:15,"526 Willow St, Portland, OR 97035" +212622,Lightning Charging Cable,1,14.95,06/29/19 08:35,"595 13th St, New York City, NY 10001" +212623,20in Monitor,1,109.99,06/16/19 14:26,"470 11th St, San Francisco, CA 94016" +212624,Vareebadd Phone,1,400,06/21/19 22:13,"817 11th St, New York City, NY 10001" +212625,iPhone,1,700,06/03/19 05:59,"325 12th St, San Francisco, CA 94016" +212626,Wired Headphones,1,11.99,06/20/19 09:58,"996 1st St, Boston, MA 02215" +212627,AAA Batteries (4-pack),1,2.99,06/15/19 22:37,"896 Elm St, Los Angeles, CA 90001" +212628,Wired Headphones,1,11.99,06/18/19 13:01,"25 Forest St, Boston, MA 02215" +212629,34in Ultrawide Monitor,1,379.99,06/25/19 17:13,"917 2nd St, New York City, NY 10001" +212630,AAA Batteries (4-pack),1,2.99,06/20/19 18:30,"466 Hill St, Dallas, TX 75001" +212631,Bose SoundSport Headphones,1,99.99,06/18/19 09:48,"776 Cherry St, Austin, TX 73301" +212632,Lightning Charging Cable,1,14.95,06/28/19 16:12,"694 Cedar St, Austin, TX 73301" +212633,Bose SoundSport Headphones,1,99.99,06/04/19 16:00,"455 Cherry St, Seattle, WA 98101" +212634,AA Batteries (4-pack),1,3.84,06/23/19 12:18,"311 South St, Boston, MA 02215" +212635,USB-C Charging Cable,1,11.95,06/17/19 13:29,"232 Willow St, San Francisco, CA 94016" +212636,Google Phone,1,600,06/05/19 11:41,"709 Jefferson St, Seattle, WA 98101" +212637,Macbook Pro Laptop,1,1700,06/18/19 21:54,"350 10th St, Portland, OR 97035" +212638,Lightning Charging Cable,1,14.95,06/10/19 10:04,"631 Lake St, San Francisco, CA 94016" +212639,ThinkPad Laptop,1,999.99,06/14/19 13:18,"870 Cedar St, New York City, NY 10001" +212640,AAA Batteries (4-pack),2,2.99,06/09/19 11:55,"734 10th St, Portland, OR 97035" +212641,USB-C Charging Cable,1,11.95,06/10/19 19:56,"797 North St, Portland, OR 97035" +212642,Wired Headphones,1,11.99,06/21/19 13:14,"290 Main St, New York City, NY 10001" +212643,Apple Airpods Headphones,1,150,06/11/19 19:33,"600 Jefferson St, New York City, NY 10001" +212644,AA Batteries (4-pack),2,3.84,06/15/19 08:01,"613 14th St, San Francisco, CA 94016" +212645,27in FHD Monitor,1,149.99,06/08/19 14:00,"470 Lakeview St, New York City, NY 10001" +212646,Lightning Charging Cable,1,14.95,06/25/19 16:01,"929 6th St, San Francisco, CA 94016" +212647,Bose SoundSport Headphones,1,99.99,06/21/19 16:18,"252 Madison St, Boston, MA 02215" +212648,AAA Batteries (4-pack),1,2.99,06/29/19 18:28,"328 Jefferson St, San Francisco, CA 94016" +212649,Wired Headphones,2,11.99,06/29/19 01:41,"410 Hill St, San Francisco, CA 94016" +212650,USB-C Charging Cable,1,11.95,06/10/19 12:10,"601 14th St, Boston, MA 02215" +212651,Wired Headphones,1,11.99,06/07/19 19:09,"173 4th St, Los Angeles, CA 90001" +212652,AAA Batteries (4-pack),1,2.99,06/20/19 14:56,"118 Spruce St, San Francisco, CA 94016" +212653,Wired Headphones,1,11.99,06/10/19 15:32,"422 10th St, Portland, ME 04101" +212654,Lightning Charging Cable,1,14.95,06/14/19 21:28,"266 Hickory St, New York City, NY 10001" +212655,Lightning Charging Cable,1,14.95,06/29/19 16:07,"841 Jackson St, Dallas, TX 75001" +212656,Wired Headphones,1,11.99,06/22/19 22:57,"768 Center St, San Francisco, CA 94016" +212657,USB-C Charging Cable,1,11.95,06/02/19 11:18,"625 South St, San Francisco, CA 94016" +212658,Bose SoundSport Headphones,1,99.99,06/30/19 23:59,"773 Pine St, Boston, MA 02215" +212659,AA Batteries (4-pack),1,3.84,06/30/19 12:58,"303 Lincoln St, San Francisco, CA 94016" +212660,Apple Airpods Headphones,1,150,06/19/19 14:17,"912 West St, Los Angeles, CA 90001" +212661,Wired Headphones,1,11.99,06/01/19 08:26,"983 Maple St, Seattle, WA 98101" +212662,USB-C Charging Cable,1,11.95,06/18/19 18:15,"741 Pine St, Los Angeles, CA 90001" +212663,AA Batteries (4-pack),1,3.84,06/20/19 11:56,"970 Main St, San Francisco, CA 94016" +212664,Bose SoundSport Headphones,1,99.99,06/05/19 06:31,"306 5th St, Los Angeles, CA 90001" +212665,Wired Headphones,1,11.99,06/13/19 19:40,"349 Church St, Seattle, WA 98101" +212666,Macbook Pro Laptop,1,1700,06/07/19 06:02,"571 Cherry St, Atlanta, GA 30301" +212667,AA Batteries (4-pack),1,3.84,06/10/19 13:13,"557 South St, Portland, OR 97035" +212668,Apple Airpods Headphones,1,150,06/11/19 10:27,"48 Maple St, San Francisco, CA 94016" +212669,Bose SoundSport Headphones,1,99.99,06/20/19 10:34,"608 Maple St, New York City, NY 10001" +212670,Apple Airpods Headphones,1,150,06/21/19 09:58,"747 4th St, Los Angeles, CA 90001" +212671,Apple Airpods Headphones,1,150,06/03/19 12:09,"493 Hill St, San Francisco, CA 94016" +212672,Google Phone,1,600,06/27/19 00:39,"189 Sunset St, Boston, MA 02215" +212672,USB-C Charging Cable,1,11.95,06/27/19 00:39,"189 Sunset St, Boston, MA 02215" +212673,Apple Airpods Headphones,1,150,06/23/19 07:13,"388 10th St, Portland, ME 04101" +212674,AAA Batteries (4-pack),1,2.99,06/03/19 16:14,"35 Pine St, Dallas, TX 75001" +212675,Bose SoundSport Headphones,1,99.99,06/28/19 15:22,"731 Madison St, New York City, NY 10001" +212676,AA Batteries (4-pack),1,3.84,06/26/19 11:24,"208 River St, San Francisco, CA 94016" +212677,USB-C Charging Cable,1,11.95,06/15/19 19:17,"607 Cedar St, San Francisco, CA 94016" +212678,iPhone,1,700,06/25/19 18:58,"305 Willow St, Boston, MA 02215" +212679,AAA Batteries (4-pack),2,2.99,06/05/19 17:45,"437 11th St, San Francisco, CA 94016" +212680,Apple Airpods Headphones,1,150,06/23/19 18:31,"17 Meadow St, Portland, OR 97035" +212681,27in 4K Gaming Monitor,1,389.99,06/03/19 12:04,"416 North St, Seattle, WA 98101" +212682,Wired Headphones,1,11.99,06/19/19 00:11,"94 Wilson St, Atlanta, GA 30301" +212683,ThinkPad Laptop,1,999.99,06/05/19 11:25,"92 Highland St, Seattle, WA 98101" +212684,iPhone,1,700,06/26/19 23:20,"835 Wilson St, San Francisco, CA 94016" +212685,Bose SoundSport Headphones,1,99.99,06/23/19 10:43,"220 Main St, Seattle, WA 98101" +212686,20in Monitor,1,109.99,06/04/19 15:21,"372 Lake St, Dallas, TX 75001" +212687,Macbook Pro Laptop,1,1700,06/02/19 12:24,"700 Jackson St, New York City, NY 10001" +212688,Lightning Charging Cable,1,14.95,06/24/19 20:26,"27 11th St, Atlanta, GA 30301" +212689,AA Batteries (4-pack),1,3.84,06/12/19 19:16,"340 5th St, New York City, NY 10001" +212690,Lightning Charging Cable,1,14.95,06/12/19 08:09,"4 Main St, Los Angeles, CA 90001" +212691,27in 4K Gaming Monitor,1,389.99,06/23/19 02:37,"911 12th St, Los Angeles, CA 90001" +212692,USB-C Charging Cable,1,11.95,06/11/19 09:09,"327 11th St, San Francisco, CA 94016" +212693,Bose SoundSport Headphones,1,99.99,06/16/19 13:14,"541 7th St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +212694,27in FHD Monitor,1,149.99,06/18/19 13:20,"23 Chestnut St, Atlanta, GA 30301" +212695,USB-C Charging Cable,1,11.95,06/14/19 14:36,"275 South St, Portland, OR 97035" +212696,27in FHD Monitor,1,149.99,06/15/19 13:11,"382 12th St, San Francisco, CA 94016" +212697,Lightning Charging Cable,1,14.95,06/01/19 13:18,"58 Park St, Los Angeles, CA 90001" +212698,AA Batteries (4-pack),3,3.84,06/29/19 16:01,"961 Walnut St, Seattle, WA 98101" +212699,27in 4K Gaming Monitor,1,389.99,06/01/19 20:43,"970 Forest St, San Francisco, CA 94016" +212700,LG Dryer,1,600.0,06/27/19 11:39,"414 11th St, San Francisco, CA 94016" +212701,Lightning Charging Cable,1,14.95,06/11/19 13:25,"999 Highland St, Los Angeles, CA 90001" +212702,USB-C Charging Cable,1,11.95,06/09/19 22:11,"503 North St, San Francisco, CA 94016" +212703,Wired Headphones,1,11.99,06/18/19 23:08,"70 2nd St, San Francisco, CA 94016" +212704,Flatscreen TV,1,300,06/10/19 18:23,"114 Walnut St, New York City, NY 10001" +212705,Wired Headphones,1,11.99,06/05/19 21:08,"149 Hill St, Boston, MA 02215" +212706,Wired Headphones,1,11.99,06/17/19 17:54,"124 Walnut St, San Francisco, CA 94016" +212707,20in Monitor,1,109.99,06/25/19 21:41,"970 Cherry St, Boston, MA 02215" +212708,27in 4K Gaming Monitor,1,389.99,06/20/19 19:58,"224 10th St, Seattle, WA 98101" +212709,Wired Headphones,1,11.99,06/30/19 08:56,"168 Meadow St, New York City, NY 10001" +212710,AA Batteries (4-pack),1,3.84,06/05/19 16:51,"873 Meadow St, Seattle, WA 98101" +212711,ThinkPad Laptop,1,999.99,06/06/19 17:03,"501 Walnut St, New York City, NY 10001" +212712,34in Ultrawide Monitor,1,379.99,06/23/19 12:04,"391 Jackson St, Austin, TX 73301" +212713,iPhone,1,700,06/05/19 07:04,"935 12th St, Boston, MA 02215" +212714,27in FHD Monitor,1,149.99,06/09/19 11:58,"752 Madison St, Boston, MA 02215" +212715,Bose SoundSport Headphones,1,99.99,06/18/19 07:44,"445 9th St, New York City, NY 10001" +212716,AA Batteries (4-pack),1,3.84,06/18/19 11:14,"194 13th St, Austin, TX 73301" +212717,20in Monitor,1,109.99,06/06/19 14:26,"640 Jefferson St, New York City, NY 10001" +212718,AAA Batteries (4-pack),2,2.99,06/27/19 10:03,"376 River St, New York City, NY 10001" +212719,Lightning Charging Cable,1,14.95,06/20/19 12:52,"354 Madison St, San Francisco, CA 94016" +212720,20in Monitor,1,109.99,06/28/19 23:24,"965 Maple St, New York City, NY 10001" +212721,Apple Airpods Headphones,1,150,06/05/19 10:44,"473 Cedar St, San Francisco, CA 94016" +212722,Wired Headphones,1,11.99,06/21/19 07:41,"190 Washington St, Boston, MA 02215" +212723,Apple Airpods Headphones,1,150,06/24/19 12:26,"973 Madison St, Portland, OR 97035" +212724,Google Phone,1,600,06/30/19 17:28,"258 Walnut St, Los Angeles, CA 90001" +212725,Apple Airpods Headphones,1,150,06/08/19 21:26,"205 8th St, San Francisco, CA 94016" +212726,Lightning Charging Cable,1,14.95,06/30/19 19:34,"255 Lakeview St, San Francisco, CA 94016" +212727,Apple Airpods Headphones,1,150,06/04/19 13:17,"752 Madison St, Austin, TX 73301" +212728,Flatscreen TV,1,300,06/28/19 13:22,"995 4th St, Portland, OR 97035" +212729,Lightning Charging Cable,1,14.95,06/20/19 14:17,"444 Church St, San Francisco, CA 94016" +212730,Lightning Charging Cable,1,14.95,06/19/19 13:35,"929 Cherry St, New York City, NY 10001" +212731,AAA Batteries (4-pack),1,2.99,06/18/19 12:39,"194 12th St, Dallas, TX 75001" +212732,Wired Headphones,1,11.99,06/03/19 18:50,"719 Church St, Seattle, WA 98101" +212733,ThinkPad Laptop,1,999.99,06/15/19 21:39,"877 1st St, Boston, MA 02215" +212734,AAA Batteries (4-pack),1,2.99,06/17/19 08:33,"950 13th St, Dallas, TX 75001" +212735,Wired Headphones,1,11.99,06/14/19 18:18,"95 Church St, Los Angeles, CA 90001" +212736,AAA Batteries (4-pack),1,2.99,06/23/19 10:05,"691 Adams St, San Francisco, CA 94016" +212737,Lightning Charging Cable,1,14.95,06/07/19 13:36,"816 Wilson St, Boston, MA 02215" +212738,AA Batteries (4-pack),1,3.84,06/27/19 20:16,"597 Church St, Los Angeles, CA 90001" +212739,Apple Airpods Headphones,1,150,06/15/19 08:57,"99 4th St, New York City, NY 10001" +212740,Wired Headphones,1,11.99,06/16/19 09:07,"942 Center St, San Francisco, CA 94016" +212741,Flatscreen TV,1,300,06/08/19 11:11,"755 14th St, Boston, MA 02215" +212742,Google Phone,1,600,06/28/19 14:58,"740 10th St, Los Angeles, CA 90001" +,,,,, +212743,Apple Airpods Headphones,1,150,06/09/19 20:06,"151 8th St, Los Angeles, CA 90001" +212744,USB-C Charging Cable,1,11.95,06/18/19 20:48,"418 Adams St, Boston, MA 02215" +212745,Macbook Pro Laptop,1,1700,06/22/19 13:46,"151 Chestnut St, Austin, TX 73301" +212746,Bose SoundSport Headphones,1,99.99,06/03/19 09:38,"215 Hill St, Los Angeles, CA 90001" +212747,Lightning Charging Cable,2,14.95,06/02/19 11:26,"677 Meadow St, Seattle, WA 98101" +212748,Flatscreen TV,1,300,06/10/19 08:37,"94 West St, New York City, NY 10001" +212749,Macbook Pro Laptop,1,1700,06/03/19 08:04,"171 Church St, Atlanta, GA 30301" +212750,AAA Batteries (4-pack),1,2.99,06/04/19 22:08,"848 Center St, Dallas, TX 75001" +212751,AA Batteries (4-pack),1,3.84,06/06/19 07:45,"920 7th St, Atlanta, GA 30301" +212752,Lightning Charging Cable,1,14.95,06/21/19 21:59,"967 9th St, Boston, MA 02215" +212753,Apple Airpods Headphones,1,150,06/24/19 10:47,"1 6th St, Boston, MA 02215" +212754,ThinkPad Laptop,1,999.99,06/19/19 16:29,"98 Sunset St, San Francisco, CA 94016" +212755,Bose SoundSport Headphones,1,99.99,06/05/19 00:28,"121 11th St, San Francisco, CA 94016" +212756,Wired Headphones,1,11.99,06/06/19 14:41,"899 Jackson St, New York City, NY 10001" +212757,34in Ultrawide Monitor,1,379.99,06/21/19 07:47,"873 11th St, Boston, MA 02215" +212758,AA Batteries (4-pack),2,3.84,06/05/19 05:03,"28 North St, Austin, TX 73301" +212759,AAA Batteries (4-pack),1,2.99,06/07/19 18:01,"851 Cherry St, Boston, MA 02215" +212760,ThinkPad Laptop,1,999.99,06/12/19 16:08,"349 Ridge St, Atlanta, GA 30301" +212761,20in Monitor,1,109.99,06/22/19 19:29,"255 Church St, Dallas, TX 75001" +212762,AAA Batteries (4-pack),1,2.99,06/24/19 15:50,"12 Jackson St, Los Angeles, CA 90001" +212763,AA Batteries (4-pack),1,3.84,06/27/19 15:15,"413 North St, San Francisco, CA 94016" +212764,Lightning Charging Cable,1,14.95,06/05/19 10:50,"71 Wilson St, Dallas, TX 75001" +212765,Wired Headphones,1,11.99,06/24/19 12:18,"681 Johnson St, Austin, TX 73301" +212766,AA Batteries (4-pack),1,3.84,06/14/19 21:49,"948 Main St, New York City, NY 10001" +212767,Bose SoundSport Headphones,1,99.99,06/22/19 08:47,"961 Chestnut St, New York City, NY 10001" +212768,Bose SoundSport Headphones,1,99.99,06/28/19 14:19,"467 West St, Boston, MA 02215" +212769,Wired Headphones,1,11.99,06/25/19 20:55,"155 South St, San Francisco, CA 94016" +212770,Apple Airpods Headphones,1,150,06/12/19 08:25,"302 Elm St, Austin, TX 73301" +212771,Lightning Charging Cable,1,14.95,06/05/19 14:12,"457 Hill St, Boston, MA 02215" +212772,USB-C Charging Cable,1,11.95,06/26/19 16:40,"726 9th St, San Francisco, CA 94016" +212773,Apple Airpods Headphones,1,150,06/14/19 07:57,"533 Pine St, San Francisco, CA 94016" +212774,Bose SoundSport Headphones,1,99.99,06/24/19 15:48,"812 Highland St, Austin, TX 73301" +212775,Google Phone,1,600,06/01/19 15:04,"689 Center St, Boston, MA 02215" +212776,USB-C Charging Cable,1,11.95,06/30/19 00:03,"990 Pine St, New York City, NY 10001" +212777,AA Batteries (4-pack),2,3.84,06/21/19 14:41,"154 Lakeview St, San Francisco, CA 94016" +212778,iPhone,1,700,06/15/19 04:46,"110 Lincoln St, Los Angeles, CA 90001" +212779,27in 4K Gaming Monitor,1,389.99,06/17/19 10:18,"76 Lincoln St, Atlanta, GA 30301" +212780,ThinkPad Laptop,1,999.99,06/22/19 17:55,"358 Willow St, Atlanta, GA 30301" +212781,AA Batteries (4-pack),3,3.84,06/28/19 21:47,"285 Main St, San Francisco, CA 94016" +212782,20in Monitor,1,109.99,06/10/19 14:24,"245 Jefferson St, Los Angeles, CA 90001" +212783,Bose SoundSport Headphones,1,99.99,06/30/19 17:02,"492 Spruce St, San Francisco, CA 94016" +212784,Wired Headphones,1,11.99,06/30/19 17:28,"597 River St, Boston, MA 02215" +212785,27in 4K Gaming Monitor,1,389.99,06/13/19 01:16,"682 Center St, San Francisco, CA 94016" +212786,AA Batteries (4-pack),1,3.84,06/21/19 01:11,"218 Adams St, San Francisco, CA 94016" +212787,USB-C Charging Cable,1,11.95,06/15/19 08:13,"279 Forest St, San Francisco, CA 94016" +212788,27in 4K Gaming Monitor,1,389.99,06/23/19 10:35,"758 Meadow St, San Francisco, CA 94016" +212789,AA Batteries (4-pack),2,3.84,06/03/19 19:23,"244 Meadow St, Atlanta, GA 30301" +212790,Apple Airpods Headphones,1,150,06/06/19 07:52,"636 2nd St, Dallas, TX 75001" +212791,Apple Airpods Headphones,1,150,06/20/19 09:10,"412 14th St, Dallas, TX 75001" +212792,AAA Batteries (4-pack),1,2.99,06/07/19 19:16,"662 Park St, Seattle, WA 98101" +212793,Wired Headphones,1,11.99,06/17/19 16:51,"214 Washington St, Los Angeles, CA 90001" +212794,Wired Headphones,1,11.99,06/08/19 10:36,"435 Chestnut St, Seattle, WA 98101" +212795,AA Batteries (4-pack),2,3.84,06/17/19 16:44,"672 Park St, San Francisco, CA 94016" +212796,AAA Batteries (4-pack),1,2.99,06/21/19 12:21,"112 Elm St, San Francisco, CA 94016" +212797,Apple Airpods Headphones,1,150,06/25/19 22:04,"771 Meadow St, Boston, MA 02215" +212798,Macbook Pro Laptop,1,1700,06/04/19 22:04,"398 Adams St, Seattle, WA 98101" +212799,Bose SoundSport Headphones,1,99.99,06/10/19 12:49,"204 South St, Atlanta, GA 30301" +212800,Bose SoundSport Headphones,1,99.99,06/07/19 10:01,"18 Walnut St, Portland, OR 97035" +212801,AA Batteries (4-pack),1,3.84,06/04/19 19:42,"377 Walnut St, Austin, TX 73301" +212802,AA Batteries (4-pack),1,3.84,06/26/19 14:18,"426 Cedar St, Dallas, TX 75001" +212803,Wired Headphones,1,11.99,06/06/19 13:38,"590 River St, San Francisco, CA 94016" +212804,27in FHD Monitor,1,149.99,06/13/19 11:26,"684 Jackson St, Portland, OR 97035" +212805,34in Ultrawide Monitor,1,379.99,06/30/19 20:53,"427 9th St, Boston, MA 02215" +212806,AA Batteries (4-pack),1,3.84,06/18/19 17:30,"354 Forest St, Atlanta, GA 30301" +212807,Bose SoundSport Headphones,1,99.99,06/28/19 19:27,"414 10th St, New York City, NY 10001" +212808,AAA Batteries (4-pack),1,2.99,06/17/19 18:14,"646 Walnut St, Los Angeles, CA 90001" +212809,AAA Batteries (4-pack),1,2.99,06/17/19 14:17,"383 Lakeview St, Seattle, WA 98101" +212810,AA Batteries (4-pack),1,3.84,06/13/19 18:18,"648 Chestnut St, Dallas, TX 75001" +212811,27in 4K Gaming Monitor,1,389.99,06/13/19 06:50,"512 Park St, Seattle, WA 98101" +212812,Wired Headphones,1,11.99,06/20/19 11:45,"193 Spruce St, San Francisco, CA 94016" +212813,Vareebadd Phone,1,400,06/21/19 22:23,"669 5th St, Seattle, WA 98101" +212813,Bose SoundSport Headphones,1,99.99,06/21/19 22:23,"669 5th St, Seattle, WA 98101" +212814,Bose SoundSport Headphones,2,99.99,06/05/19 20:46,"979 14th St, Dallas, TX 75001" +212815,27in FHD Monitor,1,149.99,06/27/19 15:44,"69 Jefferson St, Los Angeles, CA 90001" +212816,34in Ultrawide Monitor,1,379.99,06/20/19 19:23,"993 Walnut St, Dallas, TX 75001" +212817,USB-C Charging Cable,1,11.95,06/12/19 12:37,"551 Elm St, Austin, TX 73301" +212818,Lightning Charging Cable,1,14.95,06/27/19 09:24,"288 Church St, Portland, OR 97035" +212819,USB-C Charging Cable,1,11.95,06/28/19 12:14,"730 Meadow St, San Francisco, CA 94016" +212820,AA Batteries (4-pack),2,3.84,06/30/19 00:38,"92 Chestnut St, Seattle, WA 98101" +212821,Google Phone,1,600,06/27/19 14:48,"10 Forest St, Dallas, TX 75001" +212822,USB-C Charging Cable,1,11.95,06/25/19 22:00,"166 Chestnut St, New York City, NY 10001" +212823,Lightning Charging Cable,1,14.95,06/26/19 23:07,"746 Elm St, San Francisco, CA 94016" +212824,Wired Headphones,1,11.99,06/05/19 23:40,"620 6th St, Seattle, WA 98101" +212825,USB-C Charging Cable,1,11.95,06/15/19 14:11,"304 Forest St, Portland, OR 97035" +212826,27in FHD Monitor,1,149.99,06/08/19 11:57,"355 Washington St, Los Angeles, CA 90001" +212827,Wired Headphones,1,11.99,06/25/19 11:19,"400 7th St, Dallas, TX 75001" +212828,Wired Headphones,1,11.99,06/12/19 00:27,"129 Cherry St, New York City, NY 10001" +212829,USB-C Charging Cable,2,11.95,06/12/19 19:52,"857 6th St, Austin, TX 73301" +212830,Wired Headphones,1,11.99,06/27/19 15:27,"554 Jefferson St, San Francisco, CA 94016" +212831,AAA Batteries (4-pack),1,2.99,06/20/19 15:24,"958 Willow St, Los Angeles, CA 90001" +212832,USB-C Charging Cable,1,11.95,06/13/19 08:39,"43 14th St, Seattle, WA 98101" +212833,34in Ultrawide Monitor,1,379.99,06/04/19 20:28,"219 Adams St, San Francisco, CA 94016" +212834,Lightning Charging Cable,1,14.95,06/20/19 11:25,"498 Johnson St, Los Angeles, CA 90001" +212834,USB-C Charging Cable,1,11.95,06/20/19 11:25,"498 Johnson St, Los Angeles, CA 90001" +212835,Bose SoundSport Headphones,1,99.99,06/13/19 09:25,"104 Center St, Seattle, WA 98101" +212836,27in FHD Monitor,1,149.99,06/22/19 14:02,"428 Cherry St, Atlanta, GA 30301" +212837,USB-C Charging Cable,1,11.95,06/24/19 19:10,"907 West St, Dallas, TX 75001" +212837,27in FHD Monitor,1,149.99,06/24/19 19:10,"907 West St, Dallas, TX 75001" +212838,Lightning Charging Cable,1,14.95,06/10/19 18:32,"299 6th St, Los Angeles, CA 90001" +212839,AAA Batteries (4-pack),1,2.99,06/18/19 19:44,"262 Cherry St, Dallas, TX 75001" +212840,20in Monitor,1,109.99,06/27/19 12:49,"159 Johnson St, Austin, TX 73301" +212841,Lightning Charging Cable,1,14.95,06/05/19 09:15,"444 4th St, San Francisco, CA 94016" +212842,Wired Headphones,1,11.99,06/19/19 21:18,"527 Church St, San Francisco, CA 94016" +212843,Vareebadd Phone,1,400,06/07/19 08:10,"919 Cherry St, Los Angeles, CA 90001" +212844,Lightning Charging Cable,2,14.95,06/20/19 12:21,"147 Forest St, San Francisco, CA 94016" +212845,Wired Headphones,1,11.99,06/07/19 16:46,"815 Cedar St, Seattle, WA 98101" +212846,AA Batteries (4-pack),1,3.84,06/21/19 13:53,"315 Elm St, Austin, TX 73301" +212847,AAA Batteries (4-pack),1,2.99,06/15/19 06:25,"918 12th St, Boston, MA 02215" +212848,Apple Airpods Headphones,1,150,06/10/19 12:56,"379 Jackson St, Seattle, WA 98101" +212849,27in FHD Monitor,1,149.99,06/04/19 09:52,"215 Cherry St, Dallas, TX 75001" +212850,Wired Headphones,1,11.99,06/05/19 19:11,"183 11th St, New York City, NY 10001" +212851,iPhone,1,700,06/17/19 20:19,"831 7th St, Los Angeles, CA 90001" +212852,LG Washing Machine,1,600.0,06/27/19 13:01,"343 South St, Boston, MA 02215" +212853,AAA Batteries (4-pack),2,2.99,06/07/19 07:35,"765 11th St, Boston, MA 02215" +212854,AA Batteries (4-pack),1,3.84,06/24/19 21:44,"441 Ridge St, Seattle, WA 98101" +212855,Bose SoundSport Headphones,1,99.99,06/26/19 23:16,"862 10th St, San Francisco, CA 94016" +212856,AAA Batteries (4-pack),2,2.99,06/06/19 18:34,"357 Lake St, San Francisco, CA 94016" +212857,34in Ultrawide Monitor,1,379.99,06/04/19 17:11,"252 Willow St, Atlanta, GA 30301" +212858,Bose SoundSport Headphones,1,99.99,06/02/19 14:34,"570 South St, Boston, MA 02215" +212859,AAA Batteries (4-pack),1,2.99,06/22/19 15:48,"73 11th St, San Francisco, CA 94016" +212860,Flatscreen TV,1,300,06/24/19 16:07,"192 1st St, Austin, TX 73301" +212861,Apple Airpods Headphones,1,150,06/11/19 20:40,"193 7th St, Austin, TX 73301" +212862,USB-C Charging Cable,1,11.95,06/10/19 21:14,"280 Willow St, New York City, NY 10001" +212863,Wired Headphones,1,11.99,06/22/19 16:07,"161 Washington St, Boston, MA 02215" +212864,AAA Batteries (4-pack),3,2.99,06/26/19 10:28,"710 Maple St, Boston, MA 02215" +212865,AAA Batteries (4-pack),1,2.99,06/06/19 20:16,"915 6th St, Austin, TX 73301" +212866,Lightning Charging Cable,1,14.95,06/25/19 23:11,"728 Church St, New York City, NY 10001" +212867,AA Batteries (4-pack),2,3.84,06/02/19 12:08,"998 1st St, Portland, ME 04101" +212868,34in Ultrawide Monitor,1,379.99,06/20/19 12:34,"200 Willow St, San Francisco, CA 94016" +212869,AAA Batteries (4-pack),1,2.99,06/20/19 13:54,"895 2nd St, New York City, NY 10001" +212870,USB-C Charging Cable,1,11.95,06/25/19 07:17,"970 River St, Los Angeles, CA 90001" +212871,USB-C Charging Cable,1,11.95,06/24/19 23:54,"633 Spruce St, Boston, MA 02215" +212872,Bose SoundSport Headphones,1,99.99,06/21/19 17:33,"80 Dogwood St, San Francisco, CA 94016" +212873,Lightning Charging Cable,1,14.95,06/06/19 07:11,"711 Johnson St, Los Angeles, CA 90001" +212874,Wired Headphones,1,11.99,06/05/19 08:33,"718 Dogwood St, Dallas, TX 75001" +212875,Wired Headphones,1,11.99,06/01/19 09:56,"399 River St, San Francisco, CA 94016" +212876,Lightning Charging Cable,1,14.95,06/06/19 16:19,"330 North St, San Francisco, CA 94016" +212877,AA Batteries (4-pack),1,3.84,06/08/19 10:17,"443 North St, Los Angeles, CA 90001" +212878,USB-C Charging Cable,1,11.95,06/10/19 15:19,"580 Dogwood St, Boston, MA 02215" +212879,AA Batteries (4-pack),2,3.84,06/29/19 17:17,"207 Park St, Boston, MA 02215" +212880,AA Batteries (4-pack),3,3.84,06/29/19 17:25,"848 Spruce St, Atlanta, GA 30301" +212881,Apple Airpods Headphones,1,150,06/06/19 21:42,"705 Washington St, San Francisco, CA 94016" +212882,AA Batteries (4-pack),2,3.84,06/10/19 16:13,"616 Hill St, New York City, NY 10001" +212883,USB-C Charging Cable,1,11.95,06/13/19 09:59,"221 West St, New York City, NY 10001" +212884,Bose SoundSport Headphones,1,99.99,06/01/19 12:14,"579 Dogwood St, Boston, MA 02215" +212884,27in 4K Gaming Monitor,1,389.99,06/01/19 12:14,"579 Dogwood St, Boston, MA 02215" +212885,27in FHD Monitor,1,149.99,06/02/19 22:30,"426 Washington St, San Francisco, CA 94016" +212886,AAA Batteries (4-pack),3,2.99,06/28/19 13:38,"992 9th St, Dallas, TX 75001" +212887,AAA Batteries (4-pack),1,2.99,06/28/19 11:21,"589 Adams St, San Francisco, CA 94016" +212888,AAA Batteries (4-pack),1,2.99,06/17/19 19:49,"884 Main St, Seattle, WA 98101" +212889,34in Ultrawide Monitor,1,379.99,06/24/19 00:48,"546 8th St, Los Angeles, CA 90001" +212890,Apple Airpods Headphones,1,150,06/06/19 16:17,"794 1st St, San Francisco, CA 94016" +212891,iPhone,1,700,06/10/19 09:35,"534 Highland St, Los Angeles, CA 90001" +212892,Lightning Charging Cable,1,14.95,06/27/19 22:57,"321 North St, San Francisco, CA 94016" +212893,Lightning Charging Cable,1,14.95,06/08/19 20:10,"842 River St, Boston, MA 02215" +212894,27in 4K Gaming Monitor,1,389.99,06/18/19 05:50,"223 Cherry St, Portland, OR 97035" +212894,Bose SoundSport Headphones,1,99.99,06/18/19 05:50,"223 Cherry St, Portland, OR 97035" +212895,27in FHD Monitor,1,149.99,06/08/19 19:49,"448 Elm St, San Francisco, CA 94016" +212896,AA Batteries (4-pack),2,3.84,06/29/19 13:03,"536 Sunset St, New York City, NY 10001" +212897,27in 4K Gaming Monitor,1,389.99,06/01/19 11:40,"72 14th St, Seattle, WA 98101" +212898,AAA Batteries (4-pack),1,2.99,06/30/19 19:22,"104 Park St, New York City, NY 10001" +212899,USB-C Charging Cable,1,11.95,06/21/19 20:34,"336 Lakeview St, San Francisco, CA 94016" +212900,AA Batteries (4-pack),1,3.84,06/24/19 01:22,"764 Johnson St, New York City, NY 10001" +212901,Wired Headphones,1,11.99,06/30/19 12:41,"290 Pine St, Boston, MA 02215" +212902,Lightning Charging Cable,1,14.95,06/16/19 18:31,"884 Jackson St, San Francisco, CA 94016" +212903,Google Phone,1,600,06/16/19 19:45,"860 Hickory St, Los Angeles, CA 90001" +212904,27in 4K Gaming Monitor,1,389.99,06/23/19 20:35,"624 12th St, Atlanta, GA 30301" +212905,27in 4K Gaming Monitor,1,389.99,06/15/19 13:38,"733 Lake St, Dallas, TX 75001" +212905,iPhone,1,700,06/15/19 13:38,"733 Lake St, Dallas, TX 75001" +212906,Flatscreen TV,1,300,06/01/19 11:47,"651 5th St, Atlanta, GA 30301" +212907,Wired Headphones,1,11.99,06/13/19 17:02,"549 Johnson St, Boston, MA 02215" +212908,Bose SoundSport Headphones,1,99.99,06/16/19 10:29,"622 Hill St, Portland, ME 04101" +212909,AA Batteries (4-pack),1,3.84,06/26/19 07:26,"798 Lakeview St, Boston, MA 02215" +212910,Lightning Charging Cable,1,14.95,06/11/19 13:30,"692 River St, Austin, TX 73301" +212911,AA Batteries (4-pack),1,3.84,06/17/19 10:55,"452 Madison St, San Francisco, CA 94016" +212912,AAA Batteries (4-pack),1,2.99,06/19/19 10:24,"449 2nd St, New York City, NY 10001" +212913,Bose SoundSport Headphones,1,99.99,06/25/19 12:03,"84 Sunset St, Dallas, TX 75001" +212914,Flatscreen TV,1,300,06/14/19 18:28,"733 10th St, San Francisco, CA 94016" +212914,Lightning Charging Cable,1,14.95,06/14/19 18:28,"733 10th St, San Francisco, CA 94016" +212915,20in Monitor,1,109.99,06/09/19 18:58,"742 Lakeview St, San Francisco, CA 94016" +212916,Bose SoundSport Headphones,1,99.99,06/26/19 22:05,"712 Center St, San Francisco, CA 94016" +212917,Bose SoundSport Headphones,1,99.99,06/25/19 18:03,"320 Forest St, Boston, MA 02215" +212918,Wired Headphones,1,11.99,06/01/19 16:15,"293 11th St, Los Angeles, CA 90001" +212919,20in Monitor,1,109.99,06/07/19 18:43,"422 Chestnut St, New York City, NY 10001" +212920,Wired Headphones,1,11.99,06/17/19 12:57,"53 Chestnut St, San Francisco, CA 94016" +212921,Apple Airpods Headphones,1,150,06/22/19 23:54,"590 Johnson St, Los Angeles, CA 90001" +212922,Flatscreen TV,1,300,06/13/19 21:38,"583 9th St, New York City, NY 10001" +212923,Flatscreen TV,1,300,06/25/19 08:34,"142 Sunset St, New York City, NY 10001" +212923,Wired Headphones,1,11.99,06/25/19 08:34,"142 Sunset St, New York City, NY 10001" +212924,34in Ultrawide Monitor,1,379.99,06/22/19 21:23,"305 8th St, Portland, OR 97035" +212925,Wired Headphones,1,11.99,06/03/19 13:30,"883 North St, San Francisco, CA 94016" +212926,Lightning Charging Cable,1,14.95,06/24/19 23:57,"859 Meadow St, Los Angeles, CA 90001" +212927,27in 4K Gaming Monitor,1,389.99,06/12/19 21:56,"784 Spruce St, New York City, NY 10001" +212928,Apple Airpods Headphones,1,150,06/01/19 20:49,"149 Johnson St, Dallas, TX 75001" +212929,34in Ultrawide Monitor,1,379.99,06/03/19 09:46,"747 7th St, San Francisco, CA 94016" +212930,Lightning Charging Cable,1,14.95,06/24/19 12:08,"967 2nd St, Austin, TX 73301" +212931,Bose SoundSport Headphones,1,99.99,06/15/19 22:31,"411 Lake St, Boston, MA 02215" +212932,Bose SoundSport Headphones,1,99.99,06/13/19 10:25,"614 11th St, San Francisco, CA 94016" +212933,AA Batteries (4-pack),2,3.84,06/15/19 01:37,"790 1st St, Austin, TX 73301" +212934,AAA Batteries (4-pack),1,2.99,06/03/19 05:33,"932 River St, San Francisco, CA 94016" +212935,Apple Airpods Headphones,1,150,06/28/19 04:57,"723 Chestnut St, New York City, NY 10001" +212936,Apple Airpods Headphones,1,150,06/12/19 17:49,"440 Dogwood St, San Francisco, CA 94016" +212937,Bose SoundSport Headphones,1,99.99,06/06/19 22:59,"295 8th St, New York City, NY 10001" +212938,USB-C Charging Cable,1,11.95,06/06/19 22:07,"867 Church St, New York City, NY 10001" +212939,Lightning Charging Cable,1,14.95,06/12/19 20:43,"876 Jackson St, Boston, MA 02215" +212940,27in FHD Monitor,1,149.99,06/25/19 20:41,"660 Adams St, San Francisco, CA 94016" +212941,iPhone,1,700,06/08/19 09:07,"289 Walnut St, New York City, NY 10001" +212942,USB-C Charging Cable,1,11.95,06/08/19 11:50,"218 Highland St, Seattle, WA 98101" +212943,AA Batteries (4-pack),1,3.84,06/06/19 15:41,"153 Spruce St, Los Angeles, CA 90001" +212944,AA Batteries (4-pack),2,3.84,06/05/19 20:10,"976 Spruce St, Los Angeles, CA 90001" +212945,34in Ultrawide Monitor,1,379.99,06/13/19 11:28,"758 Hill St, San Francisco, CA 94016" +212946,USB-C Charging Cable,2,11.95,06/11/19 16:06,"541 5th St, San Francisco, CA 94016" +212947,Bose SoundSport Headphones,1,99.99,06/01/19 13:42,"517 Johnson St, Atlanta, GA 30301" +212948,34in Ultrawide Monitor,1,379.99,06/22/19 19:59,"839 4th St, Austin, TX 73301" +212949,Wired Headphones,1,11.99,06/07/19 09:46,"566 Chestnut St, Atlanta, GA 30301" +212950,Apple Airpods Headphones,1,150,06/16/19 20:04,"461 Meadow St, Los Angeles, CA 90001" +212951,27in FHD Monitor,1,149.99,06/05/19 11:37,"246 Meadow St, Los Angeles, CA 90001" +212952,USB-C Charging Cable,1,11.95,06/12/19 15:02,"170 Willow St, Portland, OR 97035" +212953,Apple Airpods Headphones,1,150,06/18/19 13:27,"630 Jefferson St, Atlanta, GA 30301" +212954,AAA Batteries (4-pack),2,2.99,06/25/19 11:17,"229 Wilson St, Los Angeles, CA 90001" +212955,27in FHD Monitor,1,149.99,06/04/19 21:13,"942 South St, San Francisco, CA 94016" +212956,Apple Airpods Headphones,1,150,06/24/19 22:02,"884 Church St, Los Angeles, CA 90001" +212957,Flatscreen TV,1,300,06/22/19 11:04,"398 2nd St, New York City, NY 10001" +212958,Bose SoundSport Headphones,1,99.99,06/10/19 18:00,"793 Madison St, New York City, NY 10001" +212959,LG Dryer,1,600.0,06/30/19 17:28,"110 Hill St, Boston, MA 02215" +212960,AA Batteries (4-pack),1,3.84,06/10/19 13:27,"552 Cherry St, Los Angeles, CA 90001" +212961,27in 4K Gaming Monitor,1,389.99,06/26/19 07:55,"373 Forest St, Atlanta, GA 30301" +212962,Wired Headphones,2,11.99,06/11/19 15:19,"233 Jackson St, San Francisco, CA 94016" +212963,AA Batteries (4-pack),2,3.84,06/04/19 19:58,"278 6th St, Austin, TX 73301" +212964,Wired Headphones,1,11.99,06/26/19 15:00,"829 River St, New York City, NY 10001" +212965,Wired Headphones,1,11.99,06/22/19 09:05,"941 11th St, New York City, NY 10001" +212966,USB-C Charging Cable,1,11.95,06/16/19 13:35,"423 Forest St, Boston, MA 02215" +212967,Google Phone,1,600,06/06/19 15:58,"249 Church St, Dallas, TX 75001" +212968,Wired Headphones,1,11.99,06/06/19 12:20,"279 Adams St, San Francisco, CA 94016" +212969,AA Batteries (4-pack),1,3.84,06/10/19 12:25,"83 11th St, San Francisco, CA 94016" +212970,Bose SoundSport Headphones,1,99.99,06/20/19 23:57,"433 1st St, San Francisco, CA 94016" +212971,Apple Airpods Headphones,1,150,06/17/19 15:19,"170 7th St, San Francisco, CA 94016" +212972,AAA Batteries (4-pack),2,2.99,06/14/19 10:22,"724 Maple St, New York City, NY 10001" +212973,34in Ultrawide Monitor,1,379.99,06/17/19 11:27,"260 4th St, Seattle, WA 98101" +212974,Apple Airpods Headphones,1,150,06/09/19 10:53,"972 Park St, Seattle, WA 98101" +212974,27in FHD Monitor,1,149.99,06/09/19 10:53,"972 Park St, Seattle, WA 98101" +212975,Bose SoundSport Headphones,1,99.99,06/24/19 22:42,"378 Lake St, Atlanta, GA 30301" +212976,USB-C Charging Cable,1,11.95,06/21/19 10:36,"962 Jackson St, Seattle, WA 98101" +212977,Wired Headphones,1,11.99,06/16/19 15:13,"107 Pine St, Atlanta, GA 30301" +212978,34in Ultrawide Monitor,1,379.99,06/08/19 17:37,"26 Johnson St, Boston, MA 02215" +212979,Bose SoundSport Headphones,1,99.99,06/22/19 12:37,"508 10th St, San Francisco, CA 94016" +212980,AAA Batteries (4-pack),2,2.99,06/28/19 13:19,"816 Ridge St, Dallas, TX 75001" +212981,27in FHD Monitor,1,149.99,06/09/19 19:22,"723 Dogwood St, Boston, MA 02215" +212982,ThinkPad Laptop,1,999.99,06/12/19 20:29,"723 Cedar St, Los Angeles, CA 90001" +212983,Flatscreen TV,1,300,06/10/19 20:53,"520 Park St, San Francisco, CA 94016" +212984,AA Batteries (4-pack),1,3.84,06/09/19 11:04,"645 Washington St, Atlanta, GA 30301" +212985,AA Batteries (4-pack),1,3.84,06/27/19 00:28,"667 Elm St, Boston, MA 02215" +212986,Apple Airpods Headphones,1,150,06/18/19 09:45,"347 Wilson St, New York City, NY 10001" +212987,27in 4K Gaming Monitor,1,389.99,06/10/19 11:11,"699 Maple St, Seattle, WA 98101" +212988,USB-C Charging Cable,1,11.95,06/01/19 21:23,"606 Elm St, New York City, NY 10001" +212989,Bose SoundSport Headphones,1,99.99,06/04/19 20:11,"826 9th St, Boston, MA 02215" +212990,AAA Batteries (4-pack),1,2.99,06/26/19 20:19,"738 Jackson St, Seattle, WA 98101" +212991,Vareebadd Phone,1,400,06/05/19 08:48,"104 Hickory St, San Francisco, CA 94016" +212992,Bose SoundSport Headphones,1,99.99,06/24/19 14:56,"161 5th St, Boston, MA 02215" +212993,Lightning Charging Cable,1,14.95,06/03/19 22:00,"344 Wilson St, New York City, NY 10001" +212994,34in Ultrawide Monitor,1,379.99,06/15/19 22:46,"470 6th St, Los Angeles, CA 90001" +212995,Lightning Charging Cable,1,14.95,06/16/19 20:13,"216 Washington St, San Francisco, CA 94016" +212996,Wired Headphones,1,11.99,06/18/19 16:37,"76 Jefferson St, San Francisco, CA 94016" +212997,Google Phone,1,600,06/29/19 22:46,"647 Adams St, Dallas, TX 75001" +212997,USB-C Charging Cable,1,11.95,06/29/19 22:46,"647 Adams St, Dallas, TX 75001" +212998,USB-C Charging Cable,1,11.95,06/17/19 08:15,"959 Madison St, New York City, NY 10001" +212999,27in 4K Gaming Monitor,1,389.99,06/10/19 08:22,"278 Wilson St, Portland, ME 04101" +213000,20in Monitor,1,109.99,06/14/19 22:29,"180 Hill St, Austin, TX 73301" +213001,Lightning Charging Cable,1,14.95,06/07/19 07:50,"501 10th St, Boston, MA 02215" +213002,Lightning Charging Cable,1,14.95,06/29/19 14:40,"32 Lake St, Boston, MA 02215" +213003,Google Phone,1,600,06/20/19 16:10,"491 13th St, Los Angeles, CA 90001" +213004,Lightning Charging Cable,1,14.95,06/27/19 22:07,"96 10th St, Boston, MA 02215" +213005,Apple Airpods Headphones,1,150,06/11/19 22:58,"546 10th St, San Francisco, CA 94016" +213006,20in Monitor,1,109.99,06/03/19 13:15,"606 9th St, San Francisco, CA 94016" +213007,AA Batteries (4-pack),1,3.84,06/24/19 13:59,"715 Pine St, New York City, NY 10001" +213008,Macbook Pro Laptop,1,1700,06/18/19 16:21,"565 Spruce St, Seattle, WA 98101" +213009,Lightning Charging Cable,1,14.95,06/28/19 13:37,"64 9th St, Seattle, WA 98101" +213010,iPhone,1,700,06/30/19 13:20,"600 West St, Dallas, TX 75001" +213011,Bose SoundSport Headphones,1,99.99,06/08/19 05:17,"731 Cedar St, New York City, NY 10001" +213012,Apple Airpods Headphones,1,150,06/05/19 23:34,"672 1st St, Austin, TX 73301" +213013,20in Monitor,1,109.99,06/08/19 19:24,"510 8th St, Atlanta, GA 30301" +213014,Apple Airpods Headphones,1,150,06/08/19 19:28,"928 Wilson St, New York City, NY 10001" +213015,AA Batteries (4-pack),1,3.84,06/15/19 19:51,"747 Pine St, Boston, MA 02215" +213016,Wired Headphones,1,11.99,06/12/19 14:36,"552 1st St, Seattle, WA 98101" +213017,AA Batteries (4-pack),1,3.84,06/11/19 07:25,"882 10th St, San Francisco, CA 94016" +213018,iPhone,1,700,06/25/19 01:25,"671 Main St, Seattle, WA 98101" +213019,AAA Batteries (4-pack),1,2.99,06/05/19 17:54,"127 Madison St, San Francisco, CA 94016" +213020,Lightning Charging Cable,1,14.95,06/26/19 22:24,"228 Cedar St, Atlanta, GA 30301" +213021,USB-C Charging Cable,1,11.95,06/30/19 18:26,"321 Ridge St, San Francisco, CA 94016" +213022,AAA Batteries (4-pack),1,2.99,06/12/19 18:24,"367 Johnson St, Portland, OR 97035" +213023,Apple Airpods Headphones,1,150,06/26/19 11:32,"455 11th St, New York City, NY 10001" +213024,AA Batteries (4-pack),1,3.84,06/12/19 14:09,"800 Spruce St, San Francisco, CA 94016" +213025,Wired Headphones,1,11.99,06/17/19 19:48,"553 11th St, Austin, TX 73301" +213026,Apple Airpods Headphones,1,150,06/18/19 14:23,"297 Jefferson St, Atlanta, GA 30301" +213027,Lightning Charging Cable,1,14.95,06/23/19 11:57,"522 Adams St, San Francisco, CA 94016" +213027,AA Batteries (4-pack),1,3.84,06/23/19 11:57,"522 Adams St, San Francisco, CA 94016" +213028,Wired Headphones,1,11.99,06/24/19 13:26,"25 Elm St, New York City, NY 10001" +213029,Wired Headphones,1,11.99,06/09/19 16:56,"487 Highland St, Portland, OR 97035" +213030,AAA Batteries (4-pack),2,2.99,06/17/19 17:49,"644 Wilson St, New York City, NY 10001" +213031,AAA Batteries (4-pack),1,2.99,06/05/19 19:46,"430 Willow St, Los Angeles, CA 90001" +213032,Lightning Charging Cable,1,14.95,06/14/19 10:55,"612 Jefferson St, New York City, NY 10001" +213033,USB-C Charging Cable,1,11.95,06/02/19 19:13,"802 Willow St, Los Angeles, CA 90001" +213034,AA Batteries (4-pack),1,3.84,06/16/19 18:26,"790 Elm St, New York City, NY 10001" +213035,LG Dryer,1,600.0,06/09/19 12:24,"213 Chestnut St, San Francisco, CA 94016" +213036,AAA Batteries (4-pack),1,2.99,06/06/19 09:49,"654 Pine St, Dallas, TX 75001" +213037,AA Batteries (4-pack),1,3.84,06/12/19 12:55,"801 Hill St, Austin, TX 73301" +213038,USB-C Charging Cable,1,11.95,06/15/19 15:02,"324 Lakeview St, New York City, NY 10001" +213039,USB-C Charging Cable,1,11.95,06/14/19 18:58,"416 14th St, Boston, MA 02215" +213040,Apple Airpods Headphones,1,150,06/12/19 20:34,"963 Wilson St, Los Angeles, CA 90001" +213041,ThinkPad Laptop,1,999.99,06/26/19 15:45,"102 Maple St, Los Angeles, CA 90001" +213042,USB-C Charging Cable,1,11.95,06/20/19 19:11,"492 Lincoln St, New York City, NY 10001" +213043,27in FHD Monitor,1,149.99,06/22/19 08:16,"585 Meadow St, Portland, OR 97035" +213044,USB-C Charging Cable,2,11.95,06/29/19 20:59,"737 Washington St, New York City, NY 10001" +213045,Wired Headphones,1,11.99,06/23/19 13:14,"992 4th St, Boston, MA 02215" +213046,ThinkPad Laptop,1,999.99,06/02/19 11:25,"613 Pine St, Atlanta, GA 30301" +213047,Bose SoundSport Headphones,1,99.99,06/17/19 11:27,"605 Lake St, Dallas, TX 75001" +213048,USB-C Charging Cable,1,11.95,06/27/19 16:01,"518 Park St, Los Angeles, CA 90001" +213049,27in 4K Gaming Monitor,1,389.99,06/10/19 09:57,"929 North St, Dallas, TX 75001" +213050,AA Batteries (4-pack),1,3.84,06/21/19 00:08,"181 Madison St, Dallas, TX 75001" +213051,Macbook Pro Laptop,1,1700,06/21/19 12:35,"692 11th St, Portland, OR 97035" +213052,Apple Airpods Headphones,1,150,06/17/19 18:43,"493 Willow St, Dallas, TX 75001" +213053,Lightning Charging Cable,1,14.95,06/27/19 23:20,"836 Meadow St, Los Angeles, CA 90001" +213054,Lightning Charging Cable,1,14.95,06/04/19 00:53,"636 Chestnut St, San Francisco, CA 94016" +213055,Flatscreen TV,1,300,06/14/19 19:15,"361 4th St, New York City, NY 10001" +213056,20in Monitor,1,109.99,06/20/19 17:12,"264 Main St, San Francisco, CA 94016" +213057,AA Batteries (4-pack),1,3.84,06/01/19 19:49,"758 Madison St, Los Angeles, CA 90001" +213058,AA Batteries (4-pack),2,3.84,06/07/19 23:49,"165 11th St, Boston, MA 02215" +213059,Wired Headphones,1,11.99,06/18/19 22:36,"575 Main St, Austin, TX 73301" +213060,AA Batteries (4-pack),1,3.84,06/26/19 10:32,"1 Jackson St, Dallas, TX 75001" +213061,Lightning Charging Cable,1,14.95,06/08/19 16:03,"484 12th St, Austin, TX 73301" +213062,AA Batteries (4-pack),1,3.84,06/13/19 05:56,"752 Madison St, Portland, OR 97035" +213063,20in Monitor,1,109.99,06/17/19 02:35,"643 14th St, Los Angeles, CA 90001" +213064,Lightning Charging Cable,1,14.95,06/27/19 10:29,"701 Jackson St, New York City, NY 10001" +213065,34in Ultrawide Monitor,1,379.99,06/22/19 17:44,"158 Forest St, Boston, MA 02215" +213066,ThinkPad Laptop,1,999.99,06/06/19 11:08,"333 1st St, San Francisco, CA 94016" +213067,LG Washing Machine,1,600.0,06/22/19 22:05,"872 14th St, Seattle, WA 98101" +213068,USB-C Charging Cable,1,11.95,06/16/19 18:44,"39 Johnson St, Austin, TX 73301" +213069,Wired Headphones,1,11.99,06/01/19 18:23,"375 Washington St, Los Angeles, CA 90001" +213070,27in 4K Gaming Monitor,1,389.99,06/13/19 16:19,"266 Jefferson St, Seattle, WA 98101" +213071,Google Phone,1,600,06/23/19 15:05,"810 Willow St, New York City, NY 10001" +213072,AA Batteries (4-pack),3,3.84,06/02/19 16:10,"865 13th St, Los Angeles, CA 90001" +213073,AA Batteries (4-pack),1,3.84,06/21/19 18:54,"136 Cherry St, Los Angeles, CA 90001" +213074,Wired Headphones,1,11.99,06/16/19 12:18,"569 6th St, Dallas, TX 75001" +213075,AAA Batteries (4-pack),1,2.99,06/08/19 01:04,"431 11th St, San Francisco, CA 94016" +213076,Google Phone,1,600,06/09/19 15:05,"212 Lake St, Boston, MA 02215" +213076,USB-C Charging Cable,1,11.95,06/09/19 15:05,"212 Lake St, Boston, MA 02215" +213077,27in 4K Gaming Monitor,1,389.99,06/17/19 21:25,"715 Lake St, Boston, MA 02215" +213078,AAA Batteries (4-pack),1,2.99,06/24/19 22:21,"375 Willow St, New York City, NY 10001" +213079,Apple Airpods Headphones,1,150,06/05/19 19:44,"703 Elm St, Austin, TX 73301" +213080,AAA Batteries (4-pack),2,2.99,06/28/19 09:01,"551 Ridge St, New York City, NY 10001" +213081,34in Ultrawide Monitor,1,379.99,06/01/19 15:56,"212 11th St, Los Angeles, CA 90001" +213082,Bose SoundSport Headphones,2,99.99,06/06/19 16:10,"116 6th St, Seattle, WA 98101" +213083,AA Batteries (4-pack),1,3.84,06/09/19 11:55,"520 14th St, Boston, MA 02215" +213084,Wired Headphones,2,11.99,06/04/19 08:12,"641 6th St, Portland, OR 97035" +213085,Vareebadd Phone,1,400,06/17/19 19:41,"150 Hickory St, New York City, NY 10001" +213086,Lightning Charging Cable,1,14.95,06/30/19 13:38,"305 4th St, Boston, MA 02215" +213087,27in 4K Gaming Monitor,1,389.99,06/08/19 23:03,"584 Center St, Austin, TX 73301" +213088,Bose SoundSport Headphones,1,99.99,06/03/19 11:47,"240 12th St, San Francisco, CA 94016" +213089,Wired Headphones,1,11.99,06/28/19 18:43,"463 Main St, Boston, MA 02215" +213090,USB-C Charging Cable,1,11.95,06/23/19 02:47,"139 Jefferson St, New York City, NY 10001" +213091,Wired Headphones,1,11.99,06/28/19 17:40,"700 Forest St, Boston, MA 02215" +213092,Macbook Pro Laptop,1,1700,06/27/19 13:21,"226 Highland St, San Francisco, CA 94016" +213093,Lightning Charging Cable,1,14.95,06/20/19 13:30,"645 8th St, San Francisco, CA 94016" +213094,iPhone,1,700,06/22/19 19:29,"27 North St, New York City, NY 10001" +213094,Wired Headphones,1,11.99,06/22/19 19:29,"27 North St, New York City, NY 10001" +213095,Bose SoundSport Headphones,1,99.99,06/30/19 10:22,"19 2nd St, Boston, MA 02215" +213096,Wired Headphones,2,11.99,06/23/19 12:57,"30 12th St, New York City, NY 10001" +213097,Bose SoundSport Headphones,1,99.99,06/26/19 13:50,"850 4th St, Dallas, TX 75001" +213098,Lightning Charging Cable,1,14.95,06/12/19 10:08,"96 Wilson St, New York City, NY 10001" +213099,Bose SoundSport Headphones,1,99.99,06/23/19 14:15,"405 Ridge St, Portland, ME 04101" +213100,20in Monitor,1,109.99,06/21/19 19:40,"698 Main St, Seattle, WA 98101" +213101,AAA Batteries (4-pack),2,2.99,06/10/19 12:03,"176 North St, Atlanta, GA 30301" +213102,20in Monitor,1,109.99,06/12/19 15:17,"196 Sunset St, San Francisco, CA 94016" +213103,Wired Headphones,1,11.99,06/24/19 13:49,"751 10th St, Portland, OR 97035" +213104,Apple Airpods Headphones,1,150,06/05/19 23:25,"72 Lake St, Dallas, TX 75001" +213105,Apple Airpods Headphones,1,150,06/25/19 01:07,"201 Walnut St, San Francisco, CA 94016" +213106,Bose SoundSport Headphones,1,99.99,06/10/19 11:44,"879 2nd St, Atlanta, GA 30301" +213107,Apple Airpods Headphones,1,150,06/14/19 19:58,"895 Maple St, Atlanta, GA 30301" +213108,USB-C Charging Cable,1,11.95,06/05/19 16:18,"366 2nd St, San Francisco, CA 94016" +213109,Apple Airpods Headphones,1,150,06/14/19 00:39,"964 Meadow St, Boston, MA 02215" +213110,Lightning Charging Cable,2,14.95,06/29/19 11:06,"23 Hill St, New York City, NY 10001" +213111,27in FHD Monitor,1,149.99,06/22/19 00:23,"996 Johnson St, Los Angeles, CA 90001" +213112,Bose SoundSport Headphones,1,99.99,06/21/19 17:53,"610 Washington St, Austin, TX 73301" +213113,AAA Batteries (4-pack),1,2.99,06/22/19 14:02,"96 Johnson St, Dallas, TX 75001" +213114,Bose SoundSport Headphones,1,99.99,06/04/19 10:30,"404 Hickory St, Seattle, WA 98101" +213115,Lightning Charging Cable,1,14.95,06/16/19 21:59,"395 Dogwood St, San Francisco, CA 94016" +213116,Wired Headphones,1,11.99,06/29/19 08:20,"963 7th St, Dallas, TX 75001" +213117,LG Washing Machine,1,600.0,06/02/19 10:35,"817 6th St, San Francisco, CA 94016" +213118,ThinkPad Laptop,1,999.99,06/13/19 13:07,"963 13th St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +213119,Apple Airpods Headphones,1,150,06/06/19 22:15,"293 Meadow St, San Francisco, CA 94016" +213119,AA Batteries (4-pack),2,3.84,06/06/19 22:15,"293 Meadow St, San Francisco, CA 94016" +213120,Lightning Charging Cable,1,14.95,06/18/19 13:31,"300 Elm St, Boston, MA 02215" +213121,Bose SoundSport Headphones,1,99.99,06/10/19 17:49,"471 Spruce St, New York City, NY 10001" +213122,Apple Airpods Headphones,1,150,06/04/19 23:39,"150 11th St, San Francisco, CA 94016" +213123,ThinkPad Laptop,1,999.99,06/14/19 14:23,"174 2nd St, Seattle, WA 98101" +213124,AAA Batteries (4-pack),2,2.99,06/09/19 20:35,"826 7th St, Portland, OR 97035" +213125,34in Ultrawide Monitor,1,379.99,06/17/19 17:49,"379 Cedar St, Los Angeles, CA 90001" +213126,Google Phone,1,600,06/20/19 15:26,"807 6th St, San Francisco, CA 94016" +213127,20in Monitor,1,109.99,06/20/19 17:35,"301 Lake St, Los Angeles, CA 90001" +213128,Wired Headphones,1,11.99,06/19/19 02:57,"805 Cherry St, Los Angeles, CA 90001" +213129,AAA Batteries (4-pack),2,2.99,06/26/19 14:19,"951 Spruce St, Atlanta, GA 30301" +213130,Wired Headphones,1,11.99,06/03/19 01:05,"228 Main St, San Francisco, CA 94016" +213131,USB-C Charging Cable,1,11.95,06/26/19 07:00,"213 Cherry St, Boston, MA 02215" +213132,27in FHD Monitor,1,149.99,06/29/19 05:09,"688 Chestnut St, San Francisco, CA 94016" +213133,ThinkPad Laptop,1,999.99,06/12/19 16:50,"947 Lakeview St, Boston, MA 02215" +213134,iPhone,1,700,06/12/19 10:15,"809 10th St, Los Angeles, CA 90001" +213135,USB-C Charging Cable,1,11.95,06/07/19 21:07,"311 South St, Atlanta, GA 30301" +213136,USB-C Charging Cable,1,11.95,06/16/19 09:22,"861 Willow St, Los Angeles, CA 90001" +213137,USB-C Charging Cable,1,11.95,06/19/19 14:18,"209 Willow St, New York City, NY 10001" +213138,Wired Headphones,2,11.99,06/06/19 14:14,"386 Wilson St, New York City, NY 10001" +213139,USB-C Charging Cable,1,11.95,06/08/19 21:25,"657 5th St, Los Angeles, CA 90001" +213140,Apple Airpods Headphones,1,150,06/06/19 14:33,"103 West St, Seattle, WA 98101" +213141,iPhone,1,700,06/10/19 11:33,"607 Dogwood St, New York City, NY 10001" +213141,Lightning Charging Cable,1,14.95,06/10/19 11:33,"607 Dogwood St, New York City, NY 10001" +213142,ThinkPad Laptop,1,999.99,06/05/19 03:12,"988 Jefferson St, Austin, TX 73301" +213143,AAA Batteries (4-pack),1,2.99,06/18/19 19:40,"483 Elm St, Seattle, WA 98101" +213144,34in Ultrawide Monitor,1,379.99,06/30/19 19:51,"362 7th St, Seattle, WA 98101" +213145,AAA Batteries (4-pack),1,2.99,06/21/19 15:39,"925 10th St, New York City, NY 10001" +213146,27in FHD Monitor,1,149.99,06/06/19 10:30,"472 Dogwood St, Dallas, TX 75001" +213147,USB-C Charging Cable,1,11.95,06/17/19 19:05,"872 Willow St, New York City, NY 10001" +213148,Lightning Charging Cable,1,14.95,06/26/19 04:06,"505 4th St, Boston, MA 02215" +213149,34in Ultrawide Monitor,1,379.99,06/08/19 10:28,"107 Jefferson St, Portland, OR 97035" +213150,AA Batteries (4-pack),4,3.84,06/13/19 13:13,"704 9th St, Austin, TX 73301" +213151,27in 4K Gaming Monitor,1,389.99,06/24/19 17:52,"592 Sunset St, Dallas, TX 75001" +213152,USB-C Charging Cable,1,11.95,06/22/19 13:02,"716 Center St, San Francisco, CA 94016" +213153,USB-C Charging Cable,1,11.95,06/19/19 22:19,"37 2nd St, New York City, NY 10001" +213154,USB-C Charging Cable,1,11.95,06/27/19 08:24,"566 Park St, San Francisco, CA 94016" +213155,27in 4K Gaming Monitor,1,389.99,06/20/19 00:56,"717 Walnut St, Los Angeles, CA 90001" +213156,AA Batteries (4-pack),3,3.84,06/17/19 08:07,"217 Adams St, Boston, MA 02215" +213157,AAA Batteries (4-pack),1,2.99,06/14/19 18:38,"778 Forest St, Los Angeles, CA 90001" +213158,27in FHD Monitor,1,149.99,06/14/19 15:20,"778 Elm St, Boston, MA 02215" +213159,34in Ultrawide Monitor,1,379.99,06/06/19 00:02,"499 4th St, Seattle, WA 98101" +213160,AA Batteries (4-pack),1,3.84,06/26/19 09:04,"452 Wilson St, San Francisco, CA 94016" +213161,Wired Headphones,2,11.99,06/02/19 17:28,"789 North St, Portland, ME 04101" +213162,Lightning Charging Cable,2,14.95,06/24/19 17:36,"114 Lakeview St, Los Angeles, CA 90001" +213163,34in Ultrawide Monitor,1,379.99,06/06/19 00:16,"944 Willow St, New York City, NY 10001" +213164,AAA Batteries (4-pack),1,2.99,06/04/19 09:34,"448 Forest St, Austin, TX 73301" +213165,Wired Headphones,1,11.99,06/20/19 12:20,"806 Lake St, Dallas, TX 75001" +213166,Lightning Charging Cable,1,14.95,06/28/19 14:22,"937 Spruce St, New York City, NY 10001" +213167,Wired Headphones,1,11.99,06/17/19 21:44,"840 Hickory St, Los Angeles, CA 90001" +213168,Flatscreen TV,1,300,06/01/19 18:50,"322 12th St, San Francisco, CA 94016" +213169,USB-C Charging Cable,1,11.95,06/27/19 15:59,"739 Jackson St, Seattle, WA 98101" +213170,34in Ultrawide Monitor,1,379.99,06/28/19 12:03,"811 Church St, Seattle, WA 98101" +213171,iPhone,1,700,06/03/19 04:48,"498 Chestnut St, San Francisco, CA 94016" +213171,Wired Headphones,1,11.99,06/03/19 04:48,"498 Chestnut St, San Francisco, CA 94016" +213172,AA Batteries (4-pack),2,3.84,06/25/19 17:30,"927 Forest St, Seattle, WA 98101" +213173,Lightning Charging Cable,1,14.95,06/13/19 12:26,"641 Adams St, Boston, MA 02215" +213174,Google Phone,1,600,06/26/19 18:14,"305 10th St, Los Angeles, CA 90001" +213175,Macbook Pro Laptop,1,1700,06/23/19 10:00,"538 9th St, Dallas, TX 75001" +213176,Lightning Charging Cable,1,14.95,06/19/19 17:40,"780 Hill St, Atlanta, GA 30301" +213177,ThinkPad Laptop,1,999.99,06/03/19 08:29,"461 Lakeview St, San Francisco, CA 94016" +213178,AAA Batteries (4-pack),3,2.99,06/22/19 16:01,"812 North St, Seattle, WA 98101" +213179,AA Batteries (4-pack),1,3.84,06/29/19 15:27,"114 Lake St, Seattle, WA 98101" +213180,Apple Airpods Headphones,1,150,06/15/19 14:29,"637 12th St, Los Angeles, CA 90001" +213181,AAA Batteries (4-pack),4,2.99,06/09/19 01:25,"500 14th St, New York City, NY 10001" +213182,AAA Batteries (4-pack),1,2.99,06/09/19 19:17,"494 Walnut St, Atlanta, GA 30301" +213183,34in Ultrawide Monitor,1,379.99,06/19/19 13:02,"774 Willow St, Dallas, TX 75001" +213184,34in Ultrawide Monitor,1,379.99,06/02/19 23:34,"393 Chestnut St, New York City, NY 10001" +213185,AA Batteries (4-pack),2,3.84,06/12/19 11:49,"316 Walnut St, Boston, MA 02215" +213186,Bose SoundSport Headphones,1,99.99,06/07/19 08:01,"439 8th St, Los Angeles, CA 90001" +213187,AA Batteries (4-pack),1,3.84,06/04/19 13:47,"296 Main St, Austin, TX 73301" +213188,USB-C Charging Cable,1,11.95,06/14/19 09:51,"91 North St, San Francisco, CA 94016" +213189,USB-C Charging Cable,1,11.95,06/21/19 13:55,"470 Lake St, San Francisco, CA 94016" +213190,27in FHD Monitor,1,149.99,06/22/19 14:36,"495 Madison St, Los Angeles, CA 90001" +213191,Wired Headphones,1,11.99,06/10/19 10:56,"179 Walnut St, New York City, NY 10001" +213192,34in Ultrawide Monitor,1,379.99,06/11/19 09:59,"193 1st St, Los Angeles, CA 90001" +213193,AAA Batteries (4-pack),1,2.99,06/09/19 21:33,"832 Church St, Atlanta, GA 30301" +213194,Bose SoundSport Headphones,1,99.99,06/01/19 19:52,"264 Wilson St, Atlanta, GA 30301" +213195,USB-C Charging Cable,1,11.95,06/08/19 23:39,"753 Maple St, New York City, NY 10001" +213196,AAA Batteries (4-pack),3,2.99,06/28/19 11:41,"20 6th St, Portland, OR 97035" +213197,AA Batteries (4-pack),1,3.84,06/17/19 16:30,"720 Lakeview St, San Francisco, CA 94016" +213198,AAA Batteries (4-pack),1,2.99,06/17/19 23:38,"826 Maple St, Dallas, TX 75001" +213199,AA Batteries (4-pack),1,3.84,06/17/19 08:29,"284 9th St, New York City, NY 10001" +213200,USB-C Charging Cable,2,11.95,06/27/19 14:52,"950 Chestnut St, Austin, TX 73301" +213201,Bose SoundSport Headphones,1,99.99,06/10/19 21:55,"479 Hickory St, Los Angeles, CA 90001" +213202,USB-C Charging Cable,1,11.95,06/10/19 10:35,"552 8th St, Atlanta, GA 30301" +213203,iPhone,1,700,06/28/19 23:07,"180 Hickory St, New York City, NY 10001" +213204,AAA Batteries (4-pack),2,2.99,06/25/19 11:15,"192 Sunset St, New York City, NY 10001" +213205,Lightning Charging Cable,1,14.95,06/20/19 22:42,"8 Ridge St, Austin, TX 73301" +213206,27in 4K Gaming Monitor,1,389.99,06/28/19 13:10,"859 Spruce St, Los Angeles, CA 90001" +213207,AAA Batteries (4-pack),1,2.99,06/07/19 13:31,"429 Washington St, Boston, MA 02215" +213208,AAA Batteries (4-pack),2,2.99,06/04/19 13:16,"582 14th St, New York City, NY 10001" +213209,AAA Batteries (4-pack),2,2.99,06/01/19 18:32,"935 14th St, Los Angeles, CA 90001" +213210,27in FHD Monitor,1,149.99,06/16/19 10:12,"584 4th St, Seattle, WA 98101" +213211,AA Batteries (4-pack),2,3.84,06/24/19 17:04,"480 Lakeview St, New York City, NY 10001" +213212,AA Batteries (4-pack),1,3.84,06/06/19 11:17,"880 Spruce St, Seattle, WA 98101" +213213,Google Phone,1,600,06/28/19 13:34,"238 Lake St, Dallas, TX 75001" +213213,USB-C Charging Cable,1,11.95,06/28/19 13:34,"238 Lake St, Dallas, TX 75001" +213214,AA Batteries (4-pack),2,3.84,06/09/19 14:00,"553 Walnut St, Seattle, WA 98101" +213215,Macbook Pro Laptop,1,1700,06/08/19 21:49,"244 Wilson St, Seattle, WA 98101" +213216,Lightning Charging Cable,1,14.95,06/13/19 23:59,"563 Hickory St, San Francisco, CA 94016" +213217,AA Batteries (4-pack),2,3.84,06/01/19 12:38,"504 Dogwood St, Atlanta, GA 30301" +213218,Vareebadd Phone,1,400,06/15/19 17:32,"572 Cedar St, Portland, OR 97035" +213219,Bose SoundSport Headphones,1,99.99,06/22/19 15:37,"664 Maple St, New York City, NY 10001" +213220,iPhone,1,700,06/01/19 12:31,"75 Hickory St, Los Angeles, CA 90001" +213221,Wired Headphones,1,11.99,06/27/19 11:46,"84 Park St, Dallas, TX 75001" +213222,34in Ultrawide Monitor,1,379.99,06/26/19 12:43,"130 12th St, Los Angeles, CA 90001" +213223,27in FHD Monitor,1,149.99,06/21/19 20:48,"387 14th St, New York City, NY 10001" +213224,Wired Headphones,1,11.99,06/09/19 22:30,"787 Lake St, Los Angeles, CA 90001" +213225,Wired Headphones,1,11.99,06/29/19 16:29,"724 Chestnut St, Seattle, WA 98101" +213226,Apple Airpods Headphones,1,150,06/20/19 15:40,"133 Madison St, Portland, OR 97035" +213227,34in Ultrawide Monitor,1,379.99,06/29/19 16:19,"76 Washington St, San Francisco, CA 94016" +213228,Lightning Charging Cable,1,14.95,06/19/19 11:17,"373 Jackson St, Austin, TX 73301" +213229,AAA Batteries (4-pack),1,2.99,06/27/19 10:32,"262 Jefferson St, Portland, OR 97035" +213230,Google Phone,1,600,06/10/19 22:44,"405 5th St, San Francisco, CA 94016" +213230,USB-C Charging Cable,1,11.95,06/10/19 22:44,"405 5th St, San Francisco, CA 94016" +213231,Bose SoundSport Headphones,1,99.99,06/26/19 17:20,"605 Sunset St, Los Angeles, CA 90001" +213231,USB-C Charging Cable,1,11.95,06/26/19 17:20,"605 Sunset St, Los Angeles, CA 90001" +213232,iPhone,1,700,06/08/19 23:18,"757 Hickory St, Austin, TX 73301" +213233,Google Phone,1,600,06/05/19 21:29,"580 4th St, Seattle, WA 98101" +213234,AAA Batteries (4-pack),1,2.99,06/24/19 10:14,"963 Wilson St, San Francisco, CA 94016" +213235,Wired Headphones,1,11.99,06/28/19 16:30,"431 Hill St, San Francisco, CA 94016" +213236,iPhone,1,700,06/10/19 18:57,"818 Spruce St, Boston, MA 02215" +213237,ThinkPad Laptop,1,999.99,06/02/19 21:13,"112 11th St, Seattle, WA 98101" +213238,USB-C Charging Cable,1,11.95,06/20/19 18:56,"165 10th St, San Francisco, CA 94016" +213239,AA Batteries (4-pack),2,3.84,06/26/19 13:04,"233 Cedar St, San Francisco, CA 94016" +213240,AA Batteries (4-pack),1,3.84,06/16/19 10:25,"212 Dogwood St, Boston, MA 02215" +213241,AA Batteries (4-pack),1,3.84,06/16/19 19:18,"163 Johnson St, Dallas, TX 75001" +213242,AA Batteries (4-pack),1,3.84,06/08/19 18:56,"912 8th St, San Francisco, CA 94016" +213243,AAA Batteries (4-pack),2,2.99,06/05/19 08:27,"352 River St, Boston, MA 02215" +213244,20in Monitor,1,109.99,06/16/19 09:38,"793 Adams St, Atlanta, GA 30301" +213245,Macbook Pro Laptop,1,1700,06/27/19 14:11,"820 13th St, Seattle, WA 98101" +213246,Bose SoundSport Headphones,1,99.99,06/06/19 20:34,"41 Dogwood St, San Francisco, CA 94016" +213247,Apple Airpods Headphones,1,150,06/20/19 23:24,"147 10th St, New York City, NY 10001" +213248,Apple Airpods Headphones,1,150,06/11/19 13:50,"44 Lake St, Boston, MA 02215" +213249,27in 4K Gaming Monitor,1,389.99,06/30/19 19:18,"177 South St, Los Angeles, CA 90001" +213250,Lightning Charging Cable,1,14.95,06/15/19 10:12,"975 14th St, Seattle, WA 98101" +213251,AA Batteries (4-pack),1,3.84,06/11/19 09:45,"11 Madison St, Los Angeles, CA 90001" +213252,AAA Batteries (4-pack),3,2.99,06/03/19 11:19,"888 12th St, Atlanta, GA 30301" +213253,AAA Batteries (4-pack),1,2.99,06/08/19 15:26,"943 Meadow St, New York City, NY 10001" +213254,AA Batteries (4-pack),2,3.84,06/26/19 17:15,"3 West St, New York City, NY 10001" +213255,Wired Headphones,1,11.99,06/05/19 15:06,"679 Church St, Dallas, TX 75001" +213256,Wired Headphones,1,11.99,06/16/19 19:53,"345 Sunset St, Los Angeles, CA 90001" +213257,Wired Headphones,1,11.99,06/30/19 13:44,"141 5th St, Atlanta, GA 30301" +213258,27in FHD Monitor,1,149.99,06/26/19 15:15,"326 Madison St, Los Angeles, CA 90001" +213259,27in 4K Gaming Monitor,1,389.99,06/25/19 13:32,"671 10th St, Los Angeles, CA 90001" +213260,Lightning Charging Cable,1,14.95,06/23/19 12:42,"199 Jackson St, Austin, TX 73301" +213261,USB-C Charging Cable,1,11.95,06/06/19 12:20,"257 Pine St, Dallas, TX 75001" +213262,34in Ultrawide Monitor,1,379.99,06/04/19 13:28,"768 Jefferson St, Los Angeles, CA 90001" +213263,Wired Headphones,1,11.99,06/17/19 18:36,"584 Lake St, Seattle, WA 98101" +213264,AA Batteries (4-pack),1,3.84,06/20/19 18:37,"112 Ridge St, Austin, TX 73301" +213265,Bose SoundSport Headphones,1,99.99,06/24/19 12:40,"371 Ridge St, Seattle, WA 98101" +213266,AAA Batteries (4-pack),1,2.99,06/26/19 19:02,"834 Lincoln St, Seattle, WA 98101" +213267,AA Batteries (4-pack),1,3.84,06/16/19 19:40,"619 Church St, Portland, OR 97035" +213268,Google Phone,1,600,06/22/19 00:53,"727 Jefferson St, New York City, NY 10001" +213269,Apple Airpods Headphones,1,150,06/11/19 23:23,"739 4th St, Boston, MA 02215" +213270,Google Phone,1,600,06/11/19 19:08,"707 6th St, San Francisco, CA 94016" +213270,Wired Headphones,1,11.99,06/11/19 19:08,"707 6th St, San Francisco, CA 94016" +213271,AAA Batteries (4-pack),1,2.99,06/11/19 23:31,"628 Maple St, Los Angeles, CA 90001" +213272,USB-C Charging Cable,1,11.95,06/09/19 17:10,"468 Highland St, Los Angeles, CA 90001" +213273,Vareebadd Phone,1,400,06/28/19 10:29,"214 Highland St, Los Angeles, CA 90001" +213273,Wired Headphones,1,11.99,06/28/19 10:29,"214 Highland St, Los Angeles, CA 90001" +213274,Apple Airpods Headphones,1,150,06/03/19 20:54,"458 Lincoln St, San Francisco, CA 94016" +213275,Wired Headphones,1,11.99,06/26/19 12:15,"57 12th St, San Francisco, CA 94016" +213276,Macbook Pro Laptop,1,1700,06/17/19 15:57,"868 Willow St, San Francisco, CA 94016" +213277,Bose SoundSport Headphones,1,99.99,06/25/19 08:10,"787 Maple St, San Francisco, CA 94016" +213278,Lightning Charging Cable,1,14.95,06/05/19 16:00,"988 Cedar St, Austin, TX 73301" +213279,Wired Headphones,1,11.99,06/14/19 11:47,"963 Jefferson St, New York City, NY 10001" +213280,Wired Headphones,1,11.99,06/11/19 12:01,"219 Forest St, Seattle, WA 98101" +213281,Wired Headphones,1,11.99,06/09/19 15:07,"764 Church St, New York City, NY 10001" +213282,AA Batteries (4-pack),1,3.84,06/11/19 14:17,"906 Jackson St, Atlanta, GA 30301" +213283,Vareebadd Phone,1,400,06/30/19 13:17,"305 Hill St, San Francisco, CA 94016" +213284,iPhone,1,700,06/18/19 22:10,"179 Center St, New York City, NY 10001" +213284,Lightning Charging Cable,1,14.95,06/18/19 22:10,"179 Center St, New York City, NY 10001" +213285,Macbook Pro Laptop,1,1700,06/28/19 12:00,"483 Adams St, Los Angeles, CA 90001" +213286,USB-C Charging Cable,1,11.95,06/03/19 19:53,"216 North St, San Francisco, CA 94016" +213287,Lightning Charging Cable,1,14.95,06/10/19 11:56,"3 Forest St, San Francisco, CA 94016" +213288,Macbook Pro Laptop,1,1700,06/28/19 11:03,"496 13th St, Portland, ME 04101" +213289,Wired Headphones,1,11.99,06/08/19 21:45,"124 Pine St, San Francisco, CA 94016" +213290,Lightning Charging Cable,1,14.95,06/14/19 11:33,"666 7th St, Los Angeles, CA 90001" +213291,AAA Batteries (4-pack),1,2.99,06/22/19 21:33,"832 South St, San Francisco, CA 94016" +213292,Lightning Charging Cable,1,14.95,06/24/19 13:16,"8 Chestnut St, San Francisco, CA 94016" +213293,Apple Airpods Headphones,1,150,06/03/19 13:49,"918 Cedar St, Boston, MA 02215" +213294,USB-C Charging Cable,1,11.95,06/09/19 13:44,"219 Jackson St, Portland, OR 97035" +213295,AAA Batteries (4-pack),1,2.99,06/01/19 08:39,"599 Sunset St, Austin, TX 73301" +213296,AA Batteries (4-pack),1,3.84,06/28/19 07:54,"551 Center St, Dallas, TX 75001" +213297,AA Batteries (4-pack),2,3.84,06/08/19 15:37,"584 4th St, Los Angeles, CA 90001" +213298,Bose SoundSport Headphones,1,99.99,06/21/19 06:44,"24 Pine St, Boston, MA 02215" +213299,AA Batteries (4-pack),3,3.84,06/12/19 19:36,"832 Willow St, Atlanta, GA 30301" +213300,27in FHD Monitor,1,149.99,06/16/19 11:19,"157 2nd St, Seattle, WA 98101" +213301,Apple Airpods Headphones,1,150,06/20/19 11:55,"704 Lakeview St, Dallas, TX 75001" +213302,Flatscreen TV,1,300,06/03/19 11:13,"953 12th St, Seattle, WA 98101" +213303,27in FHD Monitor,1,149.99,06/27/19 03:02,"475 13th St, Dallas, TX 75001" +213304,AAA Batteries (4-pack),3,2.99,06/04/19 17:09,"979 Johnson St, Portland, OR 97035" +213305,27in FHD Monitor,1,149.99,06/24/19 07:06,"534 Park St, Boston, MA 02215" +213305,Flatscreen TV,1,300,06/24/19 07:06,"534 Park St, Boston, MA 02215" +213306,AA Batteries (4-pack),1,3.84,06/27/19 00:40,"13 8th St, Los Angeles, CA 90001" +213307,Macbook Pro Laptop,1,1700,06/06/19 22:01,"793 River St, Atlanta, GA 30301" +213308,ThinkPad Laptop,1,999.99,06/05/19 23:28,"527 10th St, San Francisco, CA 94016" +213309,Bose SoundSport Headphones,1,99.99,06/18/19 19:10,"590 6th St, Boston, MA 02215" +213310,Google Phone,1,600,06/10/19 16:12,"735 12th St, New York City, NY 10001" +213311,Macbook Pro Laptop,1,1700,06/21/19 13:33,"109 Hill St, San Francisco, CA 94016" +213312,Bose SoundSport Headphones,1,99.99,06/19/19 18:23,"137 Cedar St, San Francisco, CA 94016" +213312,AA Batteries (4-pack),1,3.84,06/19/19 18:23,"137 Cedar St, San Francisco, CA 94016" +213313,ThinkPad Laptop,1,999.99,06/30/19 02:58,"275 2nd St, Boston, MA 02215" +213314,USB-C Charging Cable,1,11.95,06/24/19 13:54,"876 Cedar St, New York City, NY 10001" +213315,Apple Airpods Headphones,1,150,06/03/19 06:54,"933 Cherry St, Seattle, WA 98101" +213316,Vareebadd Phone,1,400,06/11/19 17:39,"888 8th St, Austin, TX 73301" +213317,AAA Batteries (4-pack),1,2.99,06/13/19 16:09,"500 Jackson St, Boston, MA 02215" +213318,Bose SoundSport Headphones,1,99.99,06/11/19 19:02,"299 Hill St, Atlanta, GA 30301" +213319,Bose SoundSport Headphones,1,99.99,06/23/19 22:05,"221 Church St, Austin, TX 73301" +213320,USB-C Charging Cable,1,11.95,06/07/19 11:41,"921 West St, Portland, OR 97035" +213321,Wired Headphones,1,11.99,06/20/19 22:53,"125 11th St, San Francisco, CA 94016" +213322,Apple Airpods Headphones,1,150,06/25/19 12:28,"24 Johnson St, Portland, ME 04101" +213323,Lightning Charging Cable,1,14.95,06/26/19 03:32,"799 13th St, Seattle, WA 98101" +213324,Lightning Charging Cable,1,14.95,06/01/19 13:09,"601 Walnut St, Dallas, TX 75001" +213325,USB-C Charging Cable,1,11.95,06/06/19 23:47,"596 South St, Atlanta, GA 30301" +213326,Macbook Pro Laptop,1,1700,06/29/19 21:05,"289 Cedar St, San Francisco, CA 94016" +213327,AA Batteries (4-pack),1,3.84,06/18/19 20:07,"290 Forest St, Los Angeles, CA 90001" +213328,27in FHD Monitor,1,149.99,06/10/19 18:10,"280 West St, Boston, MA 02215" +213329,Lightning Charging Cable,1,14.95,06/10/19 21:41,"26 Lincoln St, Seattle, WA 98101" +213330,USB-C Charging Cable,1,11.95,06/08/19 17:18,"482 Willow St, Boston, MA 02215" +213331,Lightning Charging Cable,1,14.95,06/15/19 13:53,"802 Dogwood St, Seattle, WA 98101" +213332,AA Batteries (4-pack),2,3.84,06/29/19 17:40,"881 Madison St, Los Angeles, CA 90001" +213333,27in FHD Monitor,1,149.99,06/09/19 20:04,"772 Park St, Seattle, WA 98101" +213334,Apple Airpods Headphones,1,150,06/24/19 10:11,"624 Chestnut St, Seattle, WA 98101" +213335,Apple Airpods Headphones,1,150,06/02/19 16:12,"147 Wilson St, San Francisco, CA 94016" +213336,ThinkPad Laptop,1,999.99,06/01/19 13:35,"636 9th St, San Francisco, CA 94016" +213337,ThinkPad Laptop,1,999.99,06/15/19 08:37,"570 Cherry St, Atlanta, GA 30301" +213338,27in FHD Monitor,1,149.99,06/10/19 13:45,"401 Lake St, Portland, OR 97035" +213339,AA Batteries (4-pack),2,3.84,06/16/19 16:48,"721 Spruce St, San Francisco, CA 94016" +213340,Lightning Charging Cable,1,14.95,06/28/19 20:15,"287 Chestnut St, San Francisco, CA 94016" +213341,Apple Airpods Headphones,1,150,06/13/19 20:42,"876 North St, San Francisco, CA 94016" +213342,20in Monitor,1,109.99,06/01/19 13:24,"385 8th St, Portland, OR 97035" +213343,27in FHD Monitor,1,149.99,06/11/19 20:09,"151 Cherry St, Portland, OR 97035" +213344,Apple Airpods Headphones,1,150,06/11/19 16:38,"638 South St, Seattle, WA 98101" +213344,27in 4K Gaming Monitor,1,389.99,06/11/19 16:38,"638 South St, Seattle, WA 98101" +213345,Bose SoundSport Headphones,1,99.99,06/18/19 19:13,"55 Chestnut St, Boston, MA 02215" +213346,Wired Headphones,2,11.99,06/28/19 16:07,"846 Wilson St, Dallas, TX 75001" +213347,Lightning Charging Cable,1,14.95,06/15/19 15:07,"608 Sunset St, Seattle, WA 98101" +213348,Wired Headphones,1,11.99,06/02/19 12:43,"91 Meadow St, Seattle, WA 98101" +213349,USB-C Charging Cable,1,11.95,06/06/19 12:43,"847 Jackson St, San Francisco, CA 94016" +213350,Wired Headphones,1,11.99,06/16/19 16:52,"947 7th St, Portland, OR 97035" +213351,Wired Headphones,1,11.99,06/13/19 21:50,"202 11th St, Austin, TX 73301" +213352,Apple Airpods Headphones,1,150,06/14/19 17:32,"927 Forest St, Seattle, WA 98101" +213353,AA Batteries (4-pack),1,3.84,06/07/19 13:05,"398 Adams St, San Francisco, CA 94016" +213354,AA Batteries (4-pack),1,3.84,06/25/19 23:58,"42 10th St, San Francisco, CA 94016" +213355,Lightning Charging Cable,2,14.95,06/17/19 00:01,"175 Main St, Dallas, TX 75001" +213356,USB-C Charging Cable,1,11.95,06/01/19 09:44,"116 Spruce St, New York City, NY 10001" +213357,Google Phone,1,600,06/20/19 12:30,"686 13th St, New York City, NY 10001" +213357,Wired Headphones,2,11.99,06/20/19 12:30,"686 13th St, New York City, NY 10001" +213358,AA Batteries (4-pack),1,3.84,06/18/19 08:38,"508 Forest St, Los Angeles, CA 90001" +213359,USB-C Charging Cable,2,11.95,06/25/19 00:55,"522 Cherry St, Boston, MA 02215" +213360,USB-C Charging Cable,1,11.95,06/11/19 15:51,"865 9th St, San Francisco, CA 94016" +213361,USB-C Charging Cable,1,11.95,06/01/19 19:51,"632 Pine St, New York City, NY 10001" +213362,AAA Batteries (4-pack),2,2.99,06/24/19 10:43,"924 Hill St, Boston, MA 02215" +213363,Flatscreen TV,1,300,06/18/19 21:25,"994 Sunset St, Los Angeles, CA 90001" +213364,Bose SoundSport Headphones,1,99.99,06/12/19 09:04,"67 West St, New York City, NY 10001" +213365,27in 4K Gaming Monitor,1,389.99,06/20/19 10:44,"621 Lakeview St, New York City, NY 10001" +213366,USB-C Charging Cable,1,11.95,06/23/19 16:57,"858 Ridge St, San Francisco, CA 94016" +213367,Lightning Charging Cable,1,14.95,06/27/19 16:58,"827 Madison St, San Francisco, CA 94016" +213368,AA Batteries (4-pack),1,3.84,06/14/19 15:05,"322 West St, San Francisco, CA 94016" +213369,20in Monitor,1,109.99,06/03/19 18:34,"710 13th St, Atlanta, GA 30301" +213370,AAA Batteries (4-pack),1,2.99,06/25/19 11:40,"497 Maple St, Los Angeles, CA 90001" +213371,AAA Batteries (4-pack),2,2.99,06/14/19 11:38,"676 Madison St, Boston, MA 02215" +213372,AA Batteries (4-pack),1,3.84,06/12/19 14:28,"405 14th St, New York City, NY 10001" +213373,34in Ultrawide Monitor,1,379.99,06/14/19 19:51,"293 Center St, San Francisco, CA 94016" +213374,Wired Headphones,1,11.99,06/27/19 19:48,"421 10th St, Boston, MA 02215" +213375,Google Phone,1,600,06/14/19 14:52,"98 Sunset St, New York City, NY 10001" +213376,Wired Headphones,1,11.99,06/05/19 00:04,"340 7th St, San Francisco, CA 94016" +213377,AAA Batteries (4-pack),2,2.99,06/05/19 22:25,"601 Spruce St, Austin, TX 73301" +213377,USB-C Charging Cable,1,11.95,06/05/19 22:25,"601 Spruce St, Austin, TX 73301" +213378,Flatscreen TV,1,300,06/29/19 20:07,"167 Sunset St, New York City, NY 10001" +213379,AA Batteries (4-pack),1,3.84,06/17/19 20:13,"755 Ridge St, Dallas, TX 75001" +213380,Bose SoundSport Headphones,1,99.99,06/21/19 21:57,"620 Wilson St, Dallas, TX 75001" +213381,AA Batteries (4-pack),1,3.84,06/13/19 07:13,"188 Johnson St, San Francisco, CA 94016" +213382,AAA Batteries (4-pack),2,2.99,06/27/19 11:50,"813 Madison St, New York City, NY 10001" +213383,Google Phone,1,600,06/09/19 09:24,"957 Adams St, Dallas, TX 75001" +213384,USB-C Charging Cable,1,11.95,06/22/19 10:38,"277 Park St, Boston, MA 02215" +213385,USB-C Charging Cable,1,11.95,06/05/19 18:13,"238 7th St, Portland, OR 97035" +213386,AAA Batteries (4-pack),1,2.99,06/09/19 11:01,"116 Hill St, Boston, MA 02215" +213387,AAA Batteries (4-pack),1,2.99,06/12/19 15:17,"673 9th St, San Francisco, CA 94016" +213388,Flatscreen TV,1,300,06/14/19 10:46,"323 Lakeview St, Los Angeles, CA 90001" +213389,Lightning Charging Cable,1,14.95,06/30/19 09:06,"390 Highland St, Austin, TX 73301" +213390,Google Phone,1,600,06/30/19 21:26,"16 Cedar St, Seattle, WA 98101" +213391,Wired Headphones,1,11.99,06/09/19 23:38,"15 4th St, Atlanta, GA 30301" +213392,Lightning Charging Cable,1,14.95,06/30/19 11:47,"81 1st St, San Francisco, CA 94016" +213393,27in FHD Monitor,1,149.99,06/16/19 14:40,"654 5th St, New York City, NY 10001" +213394,Apple Airpods Headphones,1,150,06/23/19 20:03,"297 7th St, Boston, MA 02215" +213395,AAA Batteries (4-pack),1,2.99,06/02/19 19:48,"917 Church St, Los Angeles, CA 90001" +213396,Macbook Pro Laptop,1,1700,06/02/19 14:56,"316 Church St, San Francisco, CA 94016" +213397,Lightning Charging Cable,1,14.95,06/16/19 18:45,"297 13th St, Boston, MA 02215" +213398,Lightning Charging Cable,1,14.95,06/27/19 08:35,"330 8th St, Dallas, TX 75001" +213399,Google Phone,1,600,06/15/19 19:34,"891 Cherry St, San Francisco, CA 94016" +213399,Bose SoundSport Headphones,1,99.99,06/15/19 19:34,"891 Cherry St, San Francisco, CA 94016" +213400,34in Ultrawide Monitor,1,379.99,06/06/19 13:17,"96 Spruce St, Dallas, TX 75001" +213401,AAA Batteries (4-pack),1,2.99,06/30/19 14:29,"585 13th St, New York City, NY 10001" +213402,Bose SoundSport Headphones,1,99.99,06/11/19 20:30,"168 Jackson St, Portland, OR 97035" +213403,AA Batteries (4-pack),1,3.84,06/02/19 09:40,"272 Wilson St, Los Angeles, CA 90001" +213404,27in FHD Monitor,1,149.99,06/18/19 13:03,"725 Dogwood St, Los Angeles, CA 90001" +213405,Wired Headphones,1,11.99,06/30/19 23:54,"625 South St, San Francisco, CA 94016" +213406,Lightning Charging Cable,2,14.95,06/23/19 14:59,"317 Chestnut St, Los Angeles, CA 90001" +213407,iPhone,1,700,06/21/19 10:44,"855 Maple St, New York City, NY 10001" +213408,iPhone,1,700,06/18/19 11:49,"751 Adams St, Boston, MA 02215" +213409,Bose SoundSport Headphones,1,99.99,06/14/19 19:08,"873 Highland St, Dallas, TX 75001" +213410,iPhone,1,700,06/19/19 20:13,"636 Chestnut St, San Francisco, CA 94016" +213411,Apple Airpods Headphones,1,150,06/10/19 12:12,"367 Cedar St, San Francisco, CA 94016" +213412,34in Ultrawide Monitor,1,379.99,06/30/19 11:08,"104 Spruce St, Los Angeles, CA 90001" +213413,Macbook Pro Laptop,1,1700,06/12/19 08:29,"811 14th St, Seattle, WA 98101" +213414,Bose SoundSport Headphones,1,99.99,06/12/19 18:34,"212 10th St, San Francisco, CA 94016" +213415,AA Batteries (4-pack),2,3.84,06/24/19 13:00,"693 Madison St, Los Angeles, CA 90001" +213416,Bose SoundSport Headphones,1,99.99,06/29/19 19:49,"582 Hill St, Dallas, TX 75001" +213417,USB-C Charging Cable,1,11.95,06/05/19 17:55,"952 Pine St, San Francisco, CA 94016" +213418,USB-C Charging Cable,1,11.95,06/23/19 11:57,"335 Cherry St, Seattle, WA 98101" +213419,Vareebadd Phone,1,400,06/16/19 13:57,"781 Church St, Seattle, WA 98101" +213420,27in FHD Monitor,1,149.99,06/21/19 20:39,"863 Meadow St, Dallas, TX 75001" +213421,Apple Airpods Headphones,1,150,06/08/19 15:40,"253 Willow St, New York City, NY 10001" +213422,Lightning Charging Cable,2,14.95,06/02/19 17:00,"835 Washington St, San Francisco, CA 94016" +213423,ThinkPad Laptop,1,999.99,06/10/19 12:25,"736 South St, Los Angeles, CA 90001" +213424,20in Monitor,1,109.99,06/03/19 19:46,"845 Ridge St, Austin, TX 73301" +213425,AAA Batteries (4-pack),1,2.99,06/10/19 21:36,"950 7th St, Atlanta, GA 30301" +213426,AA Batteries (4-pack),1,3.84,06/17/19 17:31,"73 1st St, Atlanta, GA 30301" +213427,Lightning Charging Cable,2,14.95,06/23/19 11:33,"309 Jackson St, Boston, MA 02215" +213428,Lightning Charging Cable,1,14.95,06/02/19 21:32,"357 4th St, Los Angeles, CA 90001" +213429,Apple Airpods Headphones,1,150,06/16/19 14:59,"195 4th St, Boston, MA 02215" +213430,27in 4K Gaming Monitor,1,389.99,06/01/19 10:25,"55 Center St, Atlanta, GA 30301" +213431,27in FHD Monitor,1,149.99,06/09/19 12:58,"166 Main St, Los Angeles, CA 90001" +213432,Apple Airpods Headphones,1,150,06/05/19 18:59,"873 9th St, Los Angeles, CA 90001" +213433,20in Monitor,1,109.99,06/10/19 10:49,"651 Highland St, Seattle, WA 98101" +213434,USB-C Charging Cable,2,11.95,06/04/19 18:01,"927 Lincoln St, New York City, NY 10001" +213435,AA Batteries (4-pack),1,3.84,06/12/19 15:14,"542 Forest St, San Francisco, CA 94016" +213436,Bose SoundSport Headphones,1,99.99,06/16/19 20:40,"657 West St, Boston, MA 02215" +213437,Lightning Charging Cable,1,14.95,06/28/19 21:07,"356 10th St, Los Angeles, CA 90001" +213437,iPhone,1,700,06/28/19 21:07,"356 10th St, Los Angeles, CA 90001" +213438,Wired Headphones,2,11.99,06/29/19 20:06,"456 West St, New York City, NY 10001" +213439,Wired Headphones,1,11.99,06/10/19 12:44,"378 6th St, San Francisco, CA 94016" +213440,20in Monitor,1,109.99,06/17/19 10:33,"632 Park St, Seattle, WA 98101" +213441,Lightning Charging Cable,1,14.95,06/21/19 03:24,"491 Dogwood St, New York City, NY 10001" +213442,Google Phone,1,600,06/20/19 22:17,"89 Main St, San Francisco, CA 94016" +213443,USB-C Charging Cable,1,11.95,06/24/19 14:20,"608 Wilson St, New York City, NY 10001" +213444,AAA Batteries (4-pack),1,2.99,06/28/19 22:04,"173 Church St, New York City, NY 10001" +213445,iPhone,1,700,06/07/19 11:59,"424 Spruce St, San Francisco, CA 94016" +213445,Lightning Charging Cable,1,14.95,06/07/19 11:59,"424 Spruce St, San Francisco, CA 94016" +213445,Apple Airpods Headphones,1,150,06/07/19 11:59,"424 Spruce St, San Francisco, CA 94016" +213446,Apple Airpods Headphones,1,150,06/20/19 15:18,"543 7th St, New York City, NY 10001" +213447,AAA Batteries (4-pack),3,2.99,06/04/19 17:06,"989 2nd St, Boston, MA 02215" +213448,iPhone,1,700,06/14/19 09:48,"46 7th St, Austin, TX 73301" +213449,AA Batteries (4-pack),1,3.84,06/26/19 14:14,"252 Park St, New York City, NY 10001" +213450,Vareebadd Phone,1,400,06/22/19 20:23,"402 6th St, Boston, MA 02215" +213451,Apple Airpods Headphones,1,150,06/05/19 07:33,"226 Maple St, Seattle, WA 98101" +213452,Apple Airpods Headphones,1,150,06/25/19 10:33,"581 Adams St, Dallas, TX 75001" +213453,AA Batteries (4-pack),1,3.84,06/17/19 21:30,"991 Cedar St, Seattle, WA 98101" +213453,Wired Headphones,1,11.99,06/17/19 21:30,"991 Cedar St, Seattle, WA 98101" +213454,Wired Headphones,1,11.99,06/16/19 11:20,"720 9th St, Los Angeles, CA 90001" +213455,AA Batteries (4-pack),1,3.84,06/12/19 14:09,"902 South St, San Francisco, CA 94016" +213456,Wired Headphones,1,11.99,06/25/19 14:20,"75 14th St, Seattle, WA 98101" +213457,AA Batteries (4-pack),1,3.84,06/12/19 10:13,"383 Chestnut St, Los Angeles, CA 90001" +213458,USB-C Charging Cable,1,11.95,06/11/19 18:14,"502 Adams St, Los Angeles, CA 90001" +213459,iPhone,1,700,06/22/19 14:11,"240 1st St, Los Angeles, CA 90001" +213460,USB-C Charging Cable,2,11.95,06/10/19 20:00,"767 7th St, Portland, OR 97035" +213461,Lightning Charging Cable,1,14.95,06/20/19 13:34,"122 Wilson St, New York City, NY 10001" +213462,USB-C Charging Cable,1,11.95,06/03/19 14:55,"777 River St, New York City, NY 10001" +213463,Apple Airpods Headphones,1,150,06/18/19 13:13,"523 West St, Atlanta, GA 30301" +213464,Wired Headphones,1,11.99,06/02/19 07:42,"823 Lake St, San Francisco, CA 94016" +213465,Bose SoundSport Headphones,1,99.99,06/21/19 18:44,"56 West St, Atlanta, GA 30301" +213466,ThinkPad Laptop,1,999.99,06/12/19 20:00,"873 14th St, San Francisco, CA 94016" +213467,Lightning Charging Cable,1,14.95,06/22/19 18:30,"833 Johnson St, New York City, NY 10001" +213468,USB-C Charging Cable,1,11.95,06/29/19 17:07,"656 Madison St, New York City, NY 10001" +213469,Wired Headphones,1,11.99,06/13/19 07:47,"696 Maple St, Austin, TX 73301" +213470,USB-C Charging Cable,1,11.95,06/27/19 20:31,"737 Chestnut St, Seattle, WA 98101" +213471,Apple Airpods Headphones,1,150,06/12/19 20:52,"209 6th St, San Francisco, CA 94016" +213472,ThinkPad Laptop,1,999.99,06/13/19 22:10,"599 Cedar St, Boston, MA 02215" +213473,AAA Batteries (4-pack),1,2.99,06/04/19 14:33,"446 Elm St, Los Angeles, CA 90001" +213474,USB-C Charging Cable,1,11.95,06/28/19 14:35,"123 Cedar St, Seattle, WA 98101" +213475,AAA Batteries (4-pack),2,2.99,06/20/19 18:30,"976 Jackson St, San Francisco, CA 94016" +213476,USB-C Charging Cable,1,11.95,06/18/19 23:14,"865 7th St, Dallas, TX 75001" +213477,AAA Batteries (4-pack),1,2.99,06/02/19 10:27,"173 1st St, San Francisco, CA 94016" +213478,Apple Airpods Headphones,1,150,06/05/19 17:58,"918 4th St, Los Angeles, CA 90001" +213479,USB-C Charging Cable,1,11.95,06/02/19 22:42,"547 7th St, Seattle, WA 98101" +213480,USB-C Charging Cable,1,11.95,06/17/19 18:44,"700 Pine St, San Francisco, CA 94016" +213481,Lightning Charging Cable,1,14.95,06/15/19 02:55,"406 Elm St, Austin, TX 73301" +213482,Apple Airpods Headphones,1,150,06/15/19 14:20,"804 Chestnut St, Los Angeles, CA 90001" +213483,Macbook Pro Laptop,1,1700,06/09/19 12:02,"48 Lakeview St, San Francisco, CA 94016" +213484,USB-C Charging Cable,1,11.95,06/29/19 14:34,"173 Adams St, New York City, NY 10001" +213485,AA Batteries (4-pack),2,3.84,06/23/19 20:23,"377 8th St, Los Angeles, CA 90001" +213486,27in FHD Monitor,1,149.99,06/26/19 01:25,"4 5th St, Atlanta, GA 30301" +213487,AAA Batteries (4-pack),2,2.99,06/27/19 00:35,"601 Dogwood St, San Francisco, CA 94016" +213488,ThinkPad Laptop,1,999.99,06/13/19 12:01,"586 Wilson St, Los Angeles, CA 90001" +213489,USB-C Charging Cable,1,11.95,06/14/19 17:56,"96 14th St, Portland, OR 97035" +213490,AAA Batteries (4-pack),1,2.99,06/15/19 18:32,"435 Meadow St, San Francisco, CA 94016" +213491,Lightning Charging Cable,2,14.95,06/19/19 14:17,"828 Highland St, San Francisco, CA 94016" +213492,Wired Headphones,1,11.99,06/16/19 22:30,"901 Highland St, New York City, NY 10001" +213493,Apple Airpods Headphones,1,150,06/10/19 13:59,"39 Dogwood St, New York City, NY 10001" +213494,iPhone,1,700,06/01/19 12:10,"663 Adams St, Portland, OR 97035" +213495,Flatscreen TV,1,300,06/28/19 10:08,"402 West St, Los Angeles, CA 90001" +213496,USB-C Charging Cable,1,11.95,06/08/19 19:30,"183 Hill St, Los Angeles, CA 90001" +213497,ThinkPad Laptop,1,999.99,06/03/19 11:59,"259 Lakeview St, Portland, OR 97035" +213498,AAA Batteries (4-pack),1,2.99,06/20/19 15:37,"558 5th St, New York City, NY 10001" +213499,Google Phone,1,600,06/06/19 21:16,"617 12th St, Portland, OR 97035" +213500,34in Ultrawide Monitor,1,379.99,06/05/19 13:14,"516 Maple St, San Francisco, CA 94016" +213501,Apple Airpods Headphones,1,150,06/14/19 12:24,"101 Lake St, Seattle, WA 98101" +213502,27in 4K Gaming Monitor,1,389.99,06/09/19 23:23,"511 2nd St, Seattle, WA 98101" +213503,Google Phone,1,600,06/20/19 14:55,"418 Main St, San Francisco, CA 94016" +213504,AA Batteries (4-pack),2,3.84,06/08/19 11:49,"444 10th St, New York City, NY 10001" +213505,USB-C Charging Cable,1,11.95,06/17/19 17:53,"830 Wilson St, Atlanta, GA 30301" +213506,iPhone,1,700,06/02/19 16:04,"849 Cherry St, Los Angeles, CA 90001" +213507,27in FHD Monitor,1,149.99,06/23/19 18:13,"478 Washington St, Portland, OR 97035" +213508,Apple Airpods Headphones,1,150,06/01/19 10:42,"346 5th St, Los Angeles, CA 90001" +213509,AAA Batteries (4-pack),1,2.99,06/03/19 18:57,"39 Meadow St, Boston, MA 02215" +213509,Bose SoundSport Headphones,1,99.99,06/03/19 18:57,"39 Meadow St, Boston, MA 02215" +213510,Apple Airpods Headphones,1,150,06/27/19 10:50,"147 Lincoln St, New York City, NY 10001" +213511,20in Monitor,1,109.99,06/25/19 13:44,"460 1st St, San Francisco, CA 94016" +213512,ThinkPad Laptop,1,999.99,06/30/19 18:12,"306 8th St, Dallas, TX 75001" +213513,ThinkPad Laptop,1,999.99,06/28/19 19:11,"826 Wilson St, Austin, TX 73301" +213514,34in Ultrawide Monitor,1,379.99,06/07/19 20:42,"183 Washington St, Boston, MA 02215" +213515,AA Batteries (4-pack),1,3.84,06/20/19 23:22,"762 8th St, San Francisco, CA 94016" +213516,AA Batteries (4-pack),1,3.84,06/22/19 20:32,"483 Madison St, Los Angeles, CA 90001" +213517,Apple Airpods Headphones,1,150,06/09/19 14:05,"360 Main St, Seattle, WA 98101" +213518,USB-C Charging Cable,1,11.95,06/03/19 09:07,"126 River St, New York City, NY 10001" +213519,Apple Airpods Headphones,1,150,06/23/19 16:45,"651 Chestnut St, San Francisco, CA 94016" +213520,Wired Headphones,1,11.99,06/12/19 13:00,"557 Meadow St, Seattle, WA 98101" +213521,Bose SoundSport Headphones,1,99.99,06/12/19 11:51,"115 Cedar St, San Francisco, CA 94016" +213522,Lightning Charging Cable,1,14.95,06/25/19 13:56,"210 Jackson St, San Francisco, CA 94016" +213523,Apple Airpods Headphones,1,150,06/09/19 06:51,"519 Forest St, Boston, MA 02215" +213524,Lightning Charging Cable,1,14.95,06/17/19 23:53,"63 10th St, San Francisco, CA 94016" +213525,Bose SoundSport Headphones,1,99.99,06/29/19 19:38,"269 7th St, Atlanta, GA 30301" +213526,Wired Headphones,1,11.99,06/26/19 23:49,"975 South St, Boston, MA 02215" +213527,Apple Airpods Headphones,1,150,06/26/19 13:04,"420 11th St, Portland, OR 97035" +213528,Apple Airpods Headphones,1,150,06/19/19 09:24,"746 8th St, Atlanta, GA 30301" +213529,Lightning Charging Cable,1,14.95,06/19/19 13:27,"774 Adams St, Los Angeles, CA 90001" +213530,AAA Batteries (4-pack),1,2.99,06/28/19 20:32,"427 Maple St, New York City, NY 10001" +213531,LG Dryer,1,600.0,06/08/19 08:57,"266 12th St, Austin, TX 73301" +213532,ThinkPad Laptop,1,999.99,06/02/19 23:32,"701 Walnut St, Dallas, TX 75001" +213533,Lightning Charging Cable,1,14.95,06/04/19 19:25,"413 Jefferson St, New York City, NY 10001" +213534,27in 4K Gaming Monitor,1,389.99,06/05/19 18:45,"820 Hill St, San Francisco, CA 94016" +213535,USB-C Charging Cable,1,11.95,06/27/19 19:04,"358 6th St, San Francisco, CA 94016" +213536,USB-C Charging Cable,1,11.95,06/29/19 19:15,"146 Jackson St, Atlanta, GA 30301" +213537,Wired Headphones,1,11.99,06/18/19 13:29,"369 5th St, Los Angeles, CA 90001" +213538,USB-C Charging Cable,1,11.95,06/15/19 08:31,"524 Spruce St, Dallas, TX 75001" +213539,Vareebadd Phone,1,400,06/15/19 00:49,"213 Forest St, Los Angeles, CA 90001" +213539,USB-C Charging Cable,1,11.95,06/15/19 00:49,"213 Forest St, Los Angeles, CA 90001" +213540,Wired Headphones,1,11.99,06/20/19 20:00,"40 2nd St, Boston, MA 02215" +213541,AA Batteries (4-pack),1,3.84,06/13/19 20:37,"465 Johnson St, Portland, OR 97035" +213542,Lightning Charging Cable,1,14.95,06/30/19 19:51,"596 River St, Austin, TX 73301" +213543,ThinkPad Laptop,1,999.99,06/30/19 13:31,"813 Jefferson St, San Francisco, CA 94016" +213544,Lightning Charging Cable,1,14.95,06/15/19 08:36,"582 11th St, Dallas, TX 75001" +213545,20in Monitor,1,109.99,06/04/19 00:13,"571 Cherry St, San Francisco, CA 94016" +213546,Bose SoundSport Headphones,1,99.99,06/11/19 10:39,"99 Highland St, Portland, OR 97035" +213547,Wired Headphones,1,11.99,06/20/19 15:22,"318 Lincoln St, Boston, MA 02215" +213548,AAA Batteries (4-pack),3,2.99,06/04/19 18:16,"180 Maple St, Portland, OR 97035" +213549,Vareebadd Phone,1,400,06/05/19 17:32,"841 Jefferson St, Los Angeles, CA 90001" +213550,Apple Airpods Headphones,1,150,06/08/19 16:00,"103 Center St, Dallas, TX 75001" +213551,20in Monitor,1,109.99,06/22/19 21:47,"88 Adams St, San Francisco, CA 94016" +213552,27in 4K Gaming Monitor,1,389.99,06/08/19 20:56,"163 Hill St, New York City, NY 10001" +213553,AA Batteries (4-pack),1,3.84,06/15/19 16:33,"498 Cherry St, Portland, ME 04101" +213554,Lightning Charging Cable,1,14.95,06/03/19 14:51,"236 14th St, Atlanta, GA 30301" +213555,Lightning Charging Cable,1,14.95,06/21/19 17:45,"714 Chestnut St, Los Angeles, CA 90001" +213556,Lightning Charging Cable,1,14.95,06/15/19 13:18,"21 1st St, Los Angeles, CA 90001" +213557,Macbook Pro Laptop,1,1700,06/23/19 19:10,"216 Maple St, Portland, ME 04101" +213558,Flatscreen TV,1,300,06/12/19 18:36,"49 Hickory St, New York City, NY 10001" +213559,USB-C Charging Cable,1,11.95,06/21/19 16:36,"290 Park St, Boston, MA 02215" +213560,34in Ultrawide Monitor,1,379.99,06/21/19 14:02,"567 Wilson St, New York City, NY 10001" +213561,ThinkPad Laptop,1,999.99,06/12/19 22:59,"553 11th St, Los Angeles, CA 90001" +213562,34in Ultrawide Monitor,1,379.99,06/17/19 18:57,"273 Willow St, San Francisco, CA 94016" +213563,Wired Headphones,1,11.99,06/22/19 22:55,"864 13th St, Portland, OR 97035" +213564,Apple Airpods Headphones,1,150,06/20/19 09:15,"312 2nd St, Seattle, WA 98101" +213565,iPhone,1,700,06/17/19 08:46,"741 Walnut St, San Francisco, CA 94016" +213566,USB-C Charging Cable,1,11.95,06/24/19 15:59,"935 South St, New York City, NY 10001" +213567,27in FHD Monitor,1,149.99,06/06/19 14:15,"659 12th St, Austin, TX 73301" +213568,Bose SoundSport Headphones,1,99.99,06/07/19 17:41,"892 Walnut St, Los Angeles, CA 90001" +213569,USB-C Charging Cable,1,11.95,06/07/19 15:22,"857 Main St, New York City, NY 10001" +213570,27in FHD Monitor,1,149.99,06/27/19 18:19,"426 Walnut St, Seattle, WA 98101" +213571,ThinkPad Laptop,1,999.99,06/14/19 21:59,"69 14th St, Austin, TX 73301" +213572,Apple Airpods Headphones,1,150,06/16/19 19:37,"612 Hill St, Austin, TX 73301" +213573,AA Batteries (4-pack),1,3.84,06/18/19 22:36,"629 10th St, San Francisco, CA 94016" +213574,USB-C Charging Cable,1,11.95,06/11/19 19:00,"797 11th St, Dallas, TX 75001" +213575,AAA Batteries (4-pack),1,2.99,06/05/19 14:15,"94 Cherry St, Boston, MA 02215" +213576,Macbook Pro Laptop,1,1700,06/22/19 20:01,"510 11th St, Boston, MA 02215" +213577,34in Ultrawide Monitor,1,379.99,06/02/19 16:23,"226 10th St, New York City, NY 10001" +213578,Bose SoundSport Headphones,1,99.99,06/11/19 13:57,"450 11th St, New York City, NY 10001" +213579,Apple Airpods Headphones,1,150,06/26/19 08:40,"249 Lakeview St, Boston, MA 02215" +213580,USB-C Charging Cable,1,11.95,06/16/19 17:04,"978 Church St, San Francisco, CA 94016" +213581,USB-C Charging Cable,2,11.95,06/17/19 15:13,"623 5th St, San Francisco, CA 94016" +213582,Wired Headphones,1,11.99,06/16/19 20:51,"482 8th St, Atlanta, GA 30301" +213583,20in Monitor,1,109.99,06/05/19 11:04,"995 6th St, San Francisco, CA 94016" +213584,USB-C Charging Cable,1,11.95,06/24/19 08:12,"393 Jefferson St, Los Angeles, CA 90001" +213585,Google Phone,1,600,06/14/19 18:53,"990 North St, Los Angeles, CA 90001" +213586,Wired Headphones,1,11.99,06/16/19 17:37,"489 Hill St, Boston, MA 02215" +213587,USB-C Charging Cable,1,11.95,06/04/19 15:02,"61 Elm St, Portland, OR 97035" +213588,AAA Batteries (4-pack),1,2.99,06/08/19 18:53,"305 Hickory St, Los Angeles, CA 90001" +213589,Google Phone,1,600,06/26/19 19:07,"440 9th St, Seattle, WA 98101" +213589,USB-C Charging Cable,1,11.95,06/26/19 19:07,"440 9th St, Seattle, WA 98101" +213589,Wired Headphones,1,11.99,06/26/19 19:07,"440 9th St, Seattle, WA 98101" +213590,Bose SoundSport Headphones,1,99.99,06/28/19 00:01,"585 Lakeview St, Atlanta, GA 30301" +213591,Apple Airpods Headphones,1,150,06/25/19 12:02,"359 South St, Los Angeles, CA 90001" +213592,iPhone,1,700,06/24/19 19:58,"310 Hickory St, San Francisco, CA 94016" +213593,USB-C Charging Cable,3,11.95,06/04/19 04:35,"14 Church St, Boston, MA 02215" +213594,USB-C Charging Cable,1,11.95,06/24/19 18:18,"110 Highland St, San Francisco, CA 94016" +213595,Lightning Charging Cable,1,14.95,06/28/19 19:12,"2 Johnson St, New York City, NY 10001" +213596,Lightning Charging Cable,1,14.95,06/20/19 22:05,"405 Chestnut St, Atlanta, GA 30301" +213597,Bose SoundSport Headphones,1,99.99,06/03/19 16:03,"661 14th St, Dallas, TX 75001" +213598,Wired Headphones,1,11.99,06/19/19 19:48,"83 Cherry St, Dallas, TX 75001" +213599,Wired Headphones,1,11.99,06/03/19 23:21,"639 Madison St, Austin, TX 73301" +213600,AAA Batteries (4-pack),1,2.99,06/23/19 20:45,"586 Wilson St, Los Angeles, CA 90001" +213601,Lightning Charging Cable,1,14.95,06/21/19 19:12,"36 Wilson St, Seattle, WA 98101" +213602,Lightning Charging Cable,1,14.95,06/22/19 09:18,"824 2nd St, Los Angeles, CA 90001" +213603,iPhone,1,700,06/25/19 23:03,"816 Sunset St, Los Angeles, CA 90001" +213604,iPhone,1,700,06/01/19 10:37,"213 Walnut St, Portland, OR 97035" +213605,Apple Airpods Headphones,1,150,06/23/19 22:59,"648 9th St, Austin, TX 73301" +213606,USB-C Charging Cable,1,11.95,06/25/19 09:47,"280 7th St, Atlanta, GA 30301" +213607,34in Ultrawide Monitor,1,379.99,06/11/19 12:04,"188 Cedar St, Dallas, TX 75001" +213608,Lightning Charging Cable,1,14.95,06/22/19 19:35,"126 Chestnut St, Portland, OR 97035" +213609,Bose SoundSport Headphones,1,99.99,06/10/19 21:40,"319 4th St, New York City, NY 10001" +213610,AAA Batteries (4-pack),1,2.99,06/10/19 23:28,"931 5th St, Portland, OR 97035" +213611,USB-C Charging Cable,1,11.95,06/06/19 09:34,"77 Adams St, Dallas, TX 75001" +213612,USB-C Charging Cable,1,11.95,06/07/19 18:36,"676 4th St, Dallas, TX 75001" +213613,ThinkPad Laptop,1,999.99,06/15/19 20:13,"989 Highland St, Los Angeles, CA 90001" +213614,Lightning Charging Cable,1,14.95,06/14/19 09:09,"590 7th St, Portland, OR 97035" +213615,Bose SoundSport Headphones,1,99.99,06/30/19 20:13,"41 Forest St, Boston, MA 02215" +213616,Apple Airpods Headphones,1,150,06/16/19 12:35,"597 North St, San Francisco, CA 94016" +213617,USB-C Charging Cable,1,11.95,06/21/19 09:43,"698 Cedar St, Boston, MA 02215" +213618,27in 4K Gaming Monitor,1,389.99,06/16/19 11:34,"317 Willow St, New York City, NY 10001" +213619,AA Batteries (4-pack),1,3.84,06/25/19 18:39,"137 Chestnut St, Atlanta, GA 30301" +213620,AA Batteries (4-pack),3,3.84,06/21/19 19:05,"702 Jackson St, New York City, NY 10001" +213621,Google Phone,1,600,06/21/19 08:49,"265 Park St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +213622,Lightning Charging Cable,1,14.95,06/12/19 18:27,"255 Adams St, Dallas, TX 75001" +213623,USB-C Charging Cable,1,11.95,06/16/19 12:54,"827 Church St, Portland, OR 97035" +213624,Wired Headphones,1,11.99,06/29/19 13:18,"270 Hickory St, Los Angeles, CA 90001" +213625,Lightning Charging Cable,1,14.95,06/02/19 19:14,"194 Hickory St, Dallas, TX 75001" +213626,Wired Headphones,1,11.99,06/17/19 19:44,"825 Johnson St, Atlanta, GA 30301" +213627,Bose SoundSport Headphones,1,99.99,06/02/19 11:28,"982 Park St, Seattle, WA 98101" +213628,AA Batteries (4-pack),1,3.84,06/13/19 04:41,"423 Wilson St, Boston, MA 02215" +213629,AA Batteries (4-pack),1,3.84,06/30/19 10:48,"867 Spruce St, Boston, MA 02215" +213630,USB-C Charging Cable,1,11.95,06/22/19 11:40,"208 Meadow St, Portland, OR 97035" +213631,AA Batteries (4-pack),1,3.84,06/30/19 21:00,"843 5th St, Boston, MA 02215" +213632,Bose SoundSport Headphones,1,99.99,06/17/19 17:52,"659 Chestnut St, Seattle, WA 98101" +213633,Lightning Charging Cable,1,14.95,06/06/19 16:35,"721 2nd St, San Francisco, CA 94016" +213634,Flatscreen TV,1,300,06/13/19 09:29,"902 West St, San Francisco, CA 94016" +213635,AA Batteries (4-pack),1,3.84,06/10/19 17:56,"768 River St, New York City, NY 10001" +213636,27in 4K Gaming Monitor,1,389.99,06/19/19 17:53,"24 Cherry St, Los Angeles, CA 90001" +213637,AA Batteries (4-pack),1,3.84,06/01/19 23:56,"369 Lakeview St, San Francisco, CA 94016" +213638,27in 4K Gaming Monitor,1,389.99,06/09/19 18:38,"332 Maple St, Los Angeles, CA 90001" +213639,Lightning Charging Cable,1,14.95,06/17/19 18:03,"591 Chestnut St, San Francisco, CA 94016" +213640,Apple Airpods Headphones,1,150,06/09/19 09:10,"312 Jefferson St, New York City, NY 10001" +213641,AAA Batteries (4-pack),1,2.99,06/08/19 22:55,"649 8th St, Austin, TX 73301" +213642,ThinkPad Laptop,1,999.99,06/09/19 10:12,"816 Maple St, Seattle, WA 98101" +213643,27in 4K Gaming Monitor,1,389.99,06/01/19 12:24,"977 Dogwood St, Los Angeles, CA 90001" +213644,Lightning Charging Cable,1,14.95,06/30/19 09:58,"767 2nd St, Dallas, TX 75001" +213645,USB-C Charging Cable,1,11.95,06/15/19 18:36,"103 Cedar St, Seattle, WA 98101" +213646,AAA Batteries (4-pack),1,2.99,06/24/19 22:59,"571 11th St, San Francisco, CA 94016" +213647,Wired Headphones,1,11.99,06/15/19 21:44,"947 Park St, Los Angeles, CA 90001" +213648,ThinkPad Laptop,1,999.99,06/20/19 10:00,"606 Lincoln St, San Francisco, CA 94016" +213649,AA Batteries (4-pack),1,3.84,06/18/19 18:44,"489 Sunset St, New York City, NY 10001" +213650,iPhone,1,700,06/05/19 10:14,"459 South St, Los Angeles, CA 90001" +213651,20in Monitor,1,109.99,06/01/19 16:07,"208 8th St, San Francisco, CA 94016" +213652,Bose SoundSport Headphones,1,99.99,06/19/19 00:43,"168 9th St, Portland, OR 97035" +213653,AAA Batteries (4-pack),1,2.99,06/03/19 22:11,"103 Main St, Seattle, WA 98101" +213654,ThinkPad Laptop,1,999.99,06/19/19 19:20,"395 Wilson St, New York City, NY 10001" +213655,Apple Airpods Headphones,1,150,06/12/19 12:20,"609 13th St, Seattle, WA 98101" +213656,27in FHD Monitor,1,149.99,06/10/19 10:08,"211 North St, Seattle, WA 98101" +213657,Google Phone,1,600,06/04/19 10:28,"918 Willow St, Los Angeles, CA 90001" +213658,Lightning Charging Cable,1,14.95,06/08/19 17:50,"769 Ridge St, Los Angeles, CA 90001" +213659,AAA Batteries (4-pack),1,2.99,06/19/19 18:22,"882 North St, Dallas, TX 75001" +213660,ThinkPad Laptop,1,999.99,06/12/19 08:17,"404 6th St, San Francisco, CA 94016" +213661,AA Batteries (4-pack),1,3.84,06/20/19 15:47,"560 Main St, Portland, OR 97035" +213662,Google Phone,1,600,06/28/19 19:38,"925 Meadow St, San Francisco, CA 94016" +213663,USB-C Charging Cable,1,11.95,06/04/19 12:35,"541 Park St, Los Angeles, CA 90001" +213664,Wired Headphones,1,11.99,06/05/19 06:01,"785 West St, Atlanta, GA 30301" +213665,USB-C Charging Cable,1,11.95,06/10/19 13:59,"360 Main St, Los Angeles, CA 90001" +213666,iPhone,1,700,06/05/19 19:14,"61 14th St, Seattle, WA 98101" +213666,Lightning Charging Cable,1,14.95,06/05/19 19:14,"61 14th St, Seattle, WA 98101" +213667,Lightning Charging Cable,1,14.95,06/23/19 09:35,"894 13th St, Dallas, TX 75001" +213668,Apple Airpods Headphones,1,150,06/20/19 11:56,"347 Johnson St, Austin, TX 73301" +213669,Apple Airpods Headphones,1,150,06/17/19 19:56,"108 Dogwood St, Atlanta, GA 30301" +213670,27in 4K Gaming Monitor,1,389.99,06/07/19 08:32,"301 Johnson St, San Francisco, CA 94016" +213671,ThinkPad Laptop,1,999.99,06/26/19 10:23,"193 North St, Boston, MA 02215" +213672,27in FHD Monitor,1,149.99,06/17/19 14:16,"118 14th St, San Francisco, CA 94016" +213673,Wired Headphones,1,11.99,06/08/19 19:31,"474 1st St, San Francisco, CA 94016" +213674,AA Batteries (4-pack),1,3.84,06/07/19 07:22,"403 6th St, Los Angeles, CA 90001" +213675,Wired Headphones,1,11.99,06/12/19 13:12,"427 River St, Atlanta, GA 30301" +213676,USB-C Charging Cable,1,11.95,06/28/19 17:43,"212 10th St, New York City, NY 10001" +213677,AAA Batteries (4-pack),4,2.99,06/17/19 08:27,"180 4th St, New York City, NY 10001" +213678,USB-C Charging Cable,1,11.95,06/08/19 21:29,"47 1st St, Seattle, WA 98101" +213679,Wired Headphones,1,11.99,06/11/19 09:01,"477 Pine St, Dallas, TX 75001" +213679,AA Batteries (4-pack),1,3.84,06/11/19 09:01,"477 Pine St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +213680,27in FHD Monitor,1,149.99,06/18/19 23:29,"811 Forest St, New York City, NY 10001" +213681,Wired Headphones,1,11.99,06/27/19 18:33,"73 Highland St, Seattle, WA 98101" +213682,USB-C Charging Cable,1,11.95,06/22/19 19:34,"801 2nd St, Los Angeles, CA 90001" +213683,Macbook Pro Laptop,1,1700,06/16/19 20:21,"183 2nd St, Dallas, TX 75001" +213684,USB-C Charging Cable,1,11.95,06/02/19 19:25,"769 Forest St, Los Angeles, CA 90001" +213685,iPhone,1,700,06/14/19 10:53,"127 Center St, San Francisco, CA 94016" +213686,34in Ultrawide Monitor,1,379.99,06/15/19 14:47,"297 South St, Austin, TX 73301" +213687,AA Batteries (4-pack),1,3.84,06/06/19 22:52,"18 Madison St, Boston, MA 02215" +213688,AAA Batteries (4-pack),1,2.99,06/25/19 16:50,"347 Lakeview St, San Francisco, CA 94016" +213689,Wired Headphones,1,11.99,06/16/19 13:13,"646 7th St, Seattle, WA 98101" +213690,34in Ultrawide Monitor,1,379.99,06/18/19 00:55,"144 Jackson St, Seattle, WA 98101" +213690,Apple Airpods Headphones,1,150,06/18/19 00:55,"144 Jackson St, Seattle, WA 98101" +213691,Lightning Charging Cable,1,14.95,06/11/19 10:33,"36 Lincoln St, Dallas, TX 75001" +213692,Bose SoundSport Headphones,1,99.99,06/19/19 09:42,"836 Spruce St, Seattle, WA 98101" +213693,Lightning Charging Cable,1,14.95,06/19/19 17:24,"115 Center St, Dallas, TX 75001" +213694,Flatscreen TV,1,300,06/27/19 20:11,"872 Jefferson St, Atlanta, GA 30301" +213695,AAA Batteries (4-pack),2,2.99,06/14/19 03:17,"202 9th St, Boston, MA 02215" +213696,Lightning Charging Cable,2,14.95,06/01/19 13:29,"626 Chestnut St, San Francisco, CA 94016" +213697,Flatscreen TV,1,300,06/19/19 12:27,"992 Lake St, Portland, OR 97035" +213698,AA Batteries (4-pack),1,3.84,06/13/19 14:35,"148 6th St, Los Angeles, CA 90001" +213699,Lightning Charging Cable,1,14.95,06/21/19 16:15,"19 Ridge St, San Francisco, CA 94016" +213699,34in Ultrawide Monitor,1,379.99,06/21/19 16:15,"19 Ridge St, San Francisco, CA 94016" +213700,AAA Batteries (4-pack),1,2.99,06/24/19 21:53,"547 West St, New York City, NY 10001" +213701,Bose SoundSport Headphones,1,99.99,06/04/19 17:02,"174 West St, Austin, TX 73301" +213702,Bose SoundSport Headphones,1,99.99,06/03/19 19:38,"72 Willow St, Boston, MA 02215" +213703,Wired Headphones,1,11.99,06/13/19 18:21,"925 7th St, Austin, TX 73301" +213704,AAA Batteries (4-pack),2,2.99,06/23/19 14:45,"167 Dogwood St, New York City, NY 10001" +213705,Apple Airpods Headphones,1,150,06/05/19 21:48,"908 Chestnut St, Seattle, WA 98101" +213706,Google Phone,1,600,06/11/19 11:58,"30 Forest St, Boston, MA 02215" +213707,Google Phone,1,600,06/30/19 01:59,"987 Ridge St, San Francisco, CA 94016" +213708,AA Batteries (4-pack),1,3.84,06/08/19 21:28,"210 Forest St, Los Angeles, CA 90001" +213709,AAA Batteries (4-pack),1,2.99,06/30/19 18:21,"842 Main St, Portland, OR 97035" +213710,Lightning Charging Cable,1,14.95,06/01/19 23:02,"992 North St, Dallas, TX 75001" +213711,Lightning Charging Cable,1,14.95,06/19/19 16:51,"721 Lake St, Los Angeles, CA 90001" +213712,AA Batteries (4-pack),1,3.84,06/12/19 13:47,"590 8th St, Atlanta, GA 30301" +213713,USB-C Charging Cable,1,11.95,06/26/19 12:41,"113 Lakeview St, Portland, OR 97035" +213714,ThinkPad Laptop,1,999.99,06/22/19 13:27,"106 West St, Los Angeles, CA 90001" +213715,USB-C Charging Cable,1,11.95,06/22/19 11:54,"210 14th St, Los Angeles, CA 90001" +213716,iPhone,1,700,06/28/19 06:32,"861 Ridge St, Dallas, TX 75001" +213717,USB-C Charging Cable,1,11.95,06/23/19 16:26,"158 Lakeview St, Atlanta, GA 30301" +213718,USB-C Charging Cable,1,11.95,06/26/19 17:34,"619 12th St, San Francisco, CA 94016" +213719,USB-C Charging Cable,1,11.95,06/04/19 15:50,"549 Park St, Atlanta, GA 30301" +213720,AA Batteries (4-pack),1,3.84,06/02/19 16:24,"392 Hill St, New York City, NY 10001" +213721,20in Monitor,1,109.99,06/04/19 14:38,"223 Main St, Seattle, WA 98101" +213722,Wired Headphones,1,11.99,06/01/19 15:44,"949 1st St, Austin, TX 73301" +213723,AAA Batteries (4-pack),1,2.99,06/16/19 15:58,"517 Jefferson St, San Francisco, CA 94016" +213724,Lightning Charging Cable,1,14.95,06/04/19 10:28,"324 Johnson St, San Francisco, CA 94016" +213725,27in 4K Gaming Monitor,1,389.99,06/16/19 00:16,"518 Ridge St, Austin, TX 73301" +213726,Apple Airpods Headphones,1,150,06/30/19 17:00,"783 Jefferson St, San Francisco, CA 94016" +213727,Apple Airpods Headphones,1,150,06/04/19 17:04,"796 1st St, San Francisco, CA 94016" +213728,USB-C Charging Cable,1,11.95,06/26/19 18:36,"840 Wilson St, Los Angeles, CA 90001" +213729,USB-C Charging Cable,1,11.95,06/13/19 21:03,"194 Johnson St, San Francisco, CA 94016" +213730,Apple Airpods Headphones,1,150,06/15/19 19:33,"196 Adams St, San Francisco, CA 94016" +213731,USB-C Charging Cable,2,11.95,06/02/19 16:22,"24 Lake St, Atlanta, GA 30301" +213732,27in 4K Gaming Monitor,1,389.99,06/08/19 15:11,"476 2nd St, Los Angeles, CA 90001" +213733,Google Phone,1,600,06/15/19 20:30,"923 Forest St, Dallas, TX 75001" +213734,Macbook Pro Laptop,1,1700,06/01/19 20:51,"810 Forest St, San Francisco, CA 94016" +213735,Wired Headphones,1,11.99,06/11/19 20:38,"318 7th St, Boston, MA 02215" +213736,Wired Headphones,2,11.99,06/19/19 12:59,"275 Adams St, San Francisco, CA 94016" +213737,AA Batteries (4-pack),1,3.84,06/01/19 08:05,"344 Hickory St, Los Angeles, CA 90001" +213738,Apple Airpods Headphones,1,150,06/17/19 15:32,"180 Church St, San Francisco, CA 94016" +213739,Bose SoundSport Headphones,1,99.99,06/21/19 18:21,"811 Washington St, Atlanta, GA 30301" +213740,USB-C Charging Cable,2,11.95,06/27/19 07:46,"39 8th St, Portland, OR 97035" +213741,Lightning Charging Cable,1,14.95,06/17/19 17:34,"777 Hill St, Atlanta, GA 30301" +213742,USB-C Charging Cable,1,11.95,06/03/19 20:02,"321 North St, Boston, MA 02215" +213743,27in FHD Monitor,1,149.99,06/09/19 00:30,"42 Hill St, Seattle, WA 98101" +213744,Lightning Charging Cable,2,14.95,06/22/19 09:19,"755 Pine St, Boston, MA 02215" +213745,Bose SoundSport Headphones,1,99.99,06/01/19 17:59,"419 Elm St, New York City, NY 10001" +213746,USB-C Charging Cable,1,11.95,06/15/19 13:15,"263 Hickory St, Seattle, WA 98101" +213747,USB-C Charging Cable,1,11.95,06/28/19 19:19,"471 Meadow St, Boston, MA 02215" +213748,Bose SoundSport Headphones,1,99.99,06/09/19 18:44,"141 Park St, San Francisco, CA 94016" +213749,Apple Airpods Headphones,1,150,06/03/19 19:38,"900 Jefferson St, San Francisco, CA 94016" +213750,Bose SoundSport Headphones,1,99.99,06/01/19 08:30,"333 9th St, San Francisco, CA 94016" +213751,USB-C Charging Cable,1,11.95,06/02/19 13:10,"695 Meadow St, Dallas, TX 75001" +213752,Macbook Pro Laptop,1,1700,06/08/19 21:46,"6 North St, San Francisco, CA 94016" +213753,iPhone,1,700,06/12/19 22:11,"138 Willow St, Portland, OR 97035" +213754,20in Monitor,1,109.99,06/28/19 15:39,"365 6th St, New York City, NY 10001" +213755,20in Monitor,1,109.99,06/23/19 22:39,"565 7th St, Los Angeles, CA 90001" +213756,27in 4K Gaming Monitor,1,389.99,06/21/19 18:09,"860 1st St, Austin, TX 73301" +213757,Apple Airpods Headphones,1,150,06/04/19 02:03,"762 Lakeview St, Seattle, WA 98101" +213758,Lightning Charging Cable,1,14.95,06/08/19 15:26,"935 Adams St, Atlanta, GA 30301" +213758,AAA Batteries (4-pack),1,2.99,06/08/19 15:26,"935 Adams St, Atlanta, GA 30301" +213759,AAA Batteries (4-pack),4,2.99,06/16/19 20:23,"493 Jefferson St, Austin, TX 73301" +213760,Apple Airpods Headphones,1,150,06/24/19 12:08,"14 Lakeview St, New York City, NY 10001" +213761,Wired Headphones,1,11.99,06/18/19 10:55,"517 West St, New York City, NY 10001" +213762,AAA Batteries (4-pack),1,2.99,06/04/19 22:12,"222 11th St, Los Angeles, CA 90001" +213763,USB-C Charging Cable,1,11.95,06/12/19 11:36,"246 8th St, Los Angeles, CA 90001" +213764,AAA Batteries (4-pack),4,2.99,06/27/19 19:32,"633 River St, New York City, NY 10001" +213765,20in Monitor,1,109.99,06/25/19 08:20,"84 Pine St, New York City, NY 10001" +213766,AAA Batteries (4-pack),1,2.99,06/26/19 12:14,"659 North St, San Francisco, CA 94016" +213767,AAA Batteries (4-pack),3,2.99,06/23/19 16:01,"954 13th St, New York City, NY 10001" +213768,34in Ultrawide Monitor,1,379.99,06/06/19 18:36,"658 8th St, Los Angeles, CA 90001" +213769,Wired Headphones,1,11.99,06/06/19 15:34,"12 Highland St, Boston, MA 02215" +213770,USB-C Charging Cable,1,11.95,06/22/19 07:09,"566 Main St, Seattle, WA 98101" +213771,Google Phone,1,600,06/25/19 19:06,"703 9th St, Portland, OR 97035" +213772,27in FHD Monitor,1,149.99,06/22/19 18:20,"293 Jefferson St, San Francisco, CA 94016" +213773,Apple Airpods Headphones,1,150,06/08/19 03:12,"586 Spruce St, San Francisco, CA 94016" +213774,USB-C Charging Cable,2,11.95,06/28/19 17:37,"261 Lake St, New York City, NY 10001" +213775,Wired Headphones,1,11.99,06/18/19 13:40,"161 North St, New York City, NY 10001" +213776,27in 4K Gaming Monitor,1,389.99,06/29/19 22:53,"581 River St, Austin, TX 73301" +213777,27in 4K Gaming Monitor,1,389.99,06/16/19 20:59,"151 Meadow St, Boston, MA 02215" +213778,USB-C Charging Cable,1,11.95,06/04/19 19:36,"287 Center St, Boston, MA 02215" +213779,AAA Batteries (4-pack),1,2.99,06/18/19 20:04,"310 2nd St, Seattle, WA 98101" +213780,Vareebadd Phone,1,400,06/16/19 14:40,"154 10th St, Boston, MA 02215" +213781,AA Batteries (4-pack),1,3.84,06/06/19 11:06,"612 Ridge St, Boston, MA 02215" +213782,USB-C Charging Cable,1,11.95,06/20/19 10:01,"186 Jefferson St, Portland, OR 97035" +213783,Lightning Charging Cable,1,14.95,06/15/19 08:00,"369 Church St, Dallas, TX 75001" +213784,34in Ultrawide Monitor,1,379.99,06/07/19 10:23,"638 Center St, San Francisco, CA 94016" +213785,27in 4K Gaming Monitor,1,389.99,06/09/19 22:40,"210 Highland St, Boston, MA 02215" +213786,Wired Headphones,2,11.99,06/04/19 00:25,"178 Spruce St, Atlanta, GA 30301" +213787,Flatscreen TV,1,300,06/22/19 18:05,"948 Pine St, Dallas, TX 75001" +213788,AA Batteries (4-pack),1,3.84,06/03/19 11:38,"380 Pine St, Boston, MA 02215" +213789,AA Batteries (4-pack),1,3.84,06/12/19 18:50,"584 Sunset St, Seattle, WA 98101" +213790,34in Ultrawide Monitor,1,379.99,06/06/19 00:10,"600 6th St, Los Angeles, CA 90001" +213791,Bose SoundSport Headphones,1,99.99,06/27/19 20:24,"145 12th St, Dallas, TX 75001" +213792,AA Batteries (4-pack),1,3.84,06/10/19 15:17,"681 13th St, Portland, OR 97035" +213793,USB-C Charging Cable,2,11.95,06/16/19 10:23,"434 Main St, New York City, NY 10001" +213794,ThinkPad Laptop,1,999.99,06/12/19 19:12,"997 Spruce St, San Francisco, CA 94016" +213795,Bose SoundSport Headphones,1,99.99,06/06/19 00:00,"815 Lakeview St, San Francisco, CA 94016" +213796,Apple Airpods Headphones,1,150,06/21/19 20:29,"132 South St, New York City, NY 10001" +213797,USB-C Charging Cable,1,11.95,06/21/19 14:15,"183 10th St, Portland, OR 97035" +213798,Bose SoundSport Headphones,1,99.99,06/27/19 16:41,"11 Walnut St, Los Angeles, CA 90001" +213799,Bose SoundSport Headphones,1,99.99,06/09/19 16:57,"257 Center St, Austin, TX 73301" +213800,USB-C Charging Cable,1,11.95,06/25/19 20:54,"458 Pine St, New York City, NY 10001" +213801,Google Phone,1,600,06/11/19 09:29,"189 Hill St, San Francisco, CA 94016" +213802,AAA Batteries (4-pack),1,2.99,06/27/19 09:56,"571 10th St, New York City, NY 10001" +213803,Lightning Charging Cable,1,14.95,06/23/19 12:08,"853 Church St, Los Angeles, CA 90001" +213804,Bose SoundSport Headphones,1,99.99,06/29/19 11:17,"752 Pine St, San Francisco, CA 94016" +213805,Wired Headphones,1,11.99,06/02/19 10:49,"530 5th St, San Francisco, CA 94016" +213806,Apple Airpods Headphones,1,150,06/26/19 19:25,"156 Hickory St, New York City, NY 10001" +213807,Lightning Charging Cable,2,14.95,06/13/19 21:08,"883 Highland St, Portland, OR 97035" +213808,27in FHD Monitor,1,149.99,06/06/19 19:18,"352 Cherry St, Los Angeles, CA 90001" +213809,Wired Headphones,1,11.99,06/23/19 06:59,"577 Elm St, Atlanta, GA 30301" +213810,AAA Batteries (4-pack),1,2.99,06/16/19 13:04,"687 Lake St, Portland, OR 97035" +213811,Apple Airpods Headphones,1,150,06/27/19 19:55,"436 11th St, San Francisco, CA 94016" +213812,Lightning Charging Cable,1,14.95,06/09/19 07:40,"584 13th St, San Francisco, CA 94016" +213813,USB-C Charging Cable,1,11.95,06/22/19 17:14,"62 Main St, Austin, TX 73301" +213814,AA Batteries (4-pack),2,3.84,06/07/19 07:49,"71 7th St, Los Angeles, CA 90001" +213815,AA Batteries (4-pack),1,3.84,06/04/19 12:00,"897 Sunset St, Seattle, WA 98101" +213816,USB-C Charging Cable,1,11.95,06/07/19 23:27,"812 Madison St, Austin, TX 73301" +213817,27in FHD Monitor,1,149.99,06/11/19 21:14,"706 8th St, Seattle, WA 98101" +213818,Lightning Charging Cable,1,14.95,06/11/19 09:38,"539 Maple St, New York City, NY 10001" +213819,Flatscreen TV,1,300,06/08/19 08:22,"269 Forest St, Seattle, WA 98101" +213820,Apple Airpods Headphones,1,150,06/28/19 09:21,"917 14th St, Dallas, TX 75001" +213821,Wired Headphones,1,11.99,06/24/19 14:55,"359 7th St, San Francisco, CA 94016" +213822,AA Batteries (4-pack),3,3.84,06/04/19 08:52,"739 South St, Seattle, WA 98101" +213823,Apple Airpods Headphones,1,150,06/09/19 19:43,"629 Elm St, San Francisco, CA 94016" +213824,Apple Airpods Headphones,1,150,06/27/19 10:19,"567 Lincoln St, San Francisco, CA 94016" +213825,USB-C Charging Cable,1,11.95,06/01/19 12:54,"345 11th St, Dallas, TX 75001" +213826,AA Batteries (4-pack),1,3.84,06/15/19 15:12,"250 River St, San Francisco, CA 94016" +213827,Lightning Charging Cable,1,14.95,06/07/19 16:47,"484 Lincoln St, New York City, NY 10001" +213828,AA Batteries (4-pack),1,3.84,06/24/19 18:26,"890 Wilson St, San Francisco, CA 94016" +213829,Lightning Charging Cable,2,14.95,06/16/19 09:54,"645 North St, Los Angeles, CA 90001" +213830,USB-C Charging Cable,1,11.95,06/06/19 09:44,"65 2nd St, Los Angeles, CA 90001" +213831,Wired Headphones,1,11.99,06/17/19 16:47,"754 13th St, San Francisco, CA 94016" +213831,Lightning Charging Cable,1,14.95,06/17/19 16:47,"754 13th St, San Francisco, CA 94016" +213832,USB-C Charging Cable,1,11.95,06/18/19 11:32,"632 Hickory St, San Francisco, CA 94016" +213833,USB-C Charging Cable,4,11.95,06/20/19 19:37,"6 8th St, Los Angeles, CA 90001" +213834,Flatscreen TV,1,300,06/26/19 18:34,"966 Center St, Atlanta, GA 30301" +213835,USB-C Charging Cable,1,11.95,06/28/19 19:20,"581 12th St, San Francisco, CA 94016" +213836,Apple Airpods Headphones,1,150,06/22/19 01:53,"152 Forest St, Portland, ME 04101" +213837,AAA Batteries (4-pack),1,2.99,06/24/19 20:33,"981 Meadow St, San Francisco, CA 94016" +213838,27in 4K Gaming Monitor,1,389.99,06/21/19 13:00,"765 Cherry St, New York City, NY 10001" +213839,Bose SoundSport Headphones,1,99.99,06/05/19 19:59,"468 Dogwood St, New York City, NY 10001" +213840,Wired Headphones,1,11.99,06/11/19 16:53,"585 Park St, San Francisco, CA 94016" +213841,Wired Headphones,1,11.99,06/06/19 10:18,"712 8th St, San Francisco, CA 94016" +213842,Apple Airpods Headphones,1,150,06/12/19 14:32,"182 6th St, Portland, ME 04101" +213843,Bose SoundSport Headphones,1,99.99,06/07/19 01:12,"359 Jefferson St, New York City, NY 10001" +213844,AAA Batteries (4-pack),2,2.99,06/03/19 15:58,"882 7th St, Boston, MA 02215" +213845,27in FHD Monitor,1,149.99,06/23/19 06:11,"875 1st St, New York City, NY 10001" +213846,Flatscreen TV,1,300,06/15/19 12:08,"400 Lincoln St, Seattle, WA 98101" +213847,Lightning Charging Cable,1,14.95,06/19/19 11:10,"807 Highland St, New York City, NY 10001" +213848,ThinkPad Laptop,1,999.99,06/18/19 16:41,"687 Elm St, San Francisco, CA 94016" +213849,LG Dryer,1,600.0,06/05/19 05:25,"653 8th St, Los Angeles, CA 90001" +213850,34in Ultrawide Monitor,1,379.99,06/13/19 16:07,"857 Willow St, New York City, NY 10001" +213851,Apple Airpods Headphones,1,150,06/06/19 23:34,"945 Cherry St, Los Angeles, CA 90001" +213852,Wired Headphones,1,11.99,06/18/19 00:18,"741 North St, Los Angeles, CA 90001" +213853,Lightning Charging Cable,1,14.95,06/14/19 10:51,"543 West St, Seattle, WA 98101" +213854,USB-C Charging Cable,1,11.95,06/19/19 18:47,"17 14th St, Seattle, WA 98101" +213854,27in 4K Gaming Monitor,1,389.99,06/19/19 18:47,"17 14th St, Seattle, WA 98101" +213855,USB-C Charging Cable,1,11.95,06/15/19 15:57,"341 Sunset St, Boston, MA 02215" +213856,ThinkPad Laptop,1,999.99,06/03/19 13:48,"119 Lincoln St, Portland, OR 97035" +213857,34in Ultrawide Monitor,1,379.99,06/20/19 00:47,"732 Hill St, Portland, OR 97035" +213858,Wired Headphones,1,11.99,06/05/19 19:14,"386 Dogwood St, Boston, MA 02215" +213859,USB-C Charging Cable,1,11.95,06/05/19 18:50,"251 Lakeview St, Atlanta, GA 30301" +213860,27in FHD Monitor,1,149.99,06/01/19 12:58,"932 Lincoln St, Dallas, TX 75001" +213861,AA Batteries (4-pack),1,3.84,06/19/19 08:58,"135 Cedar St, Portland, ME 04101" +213862,Wired Headphones,1,11.99,06/26/19 02:40,"497 Elm St, San Francisco, CA 94016" +213863,Wired Headphones,1,11.99,06/07/19 07:45,"460 Willow St, Portland, ME 04101" +213864,Apple Airpods Headphones,1,150,06/11/19 19:41,"421 Jackson St, Boston, MA 02215" +213865,AAA Batteries (4-pack),2,2.99,06/07/19 22:40,"508 Elm St, Boston, MA 02215" +213866,Vareebadd Phone,1,400,06/08/19 20:18,"755 Lake St, Atlanta, GA 30301" +213867,Lightning Charging Cable,1,14.95,06/05/19 11:00,"424 11th St, Portland, OR 97035" +213868,34in Ultrawide Monitor,1,379.99,06/22/19 13:54,"182 Jackson St, Los Angeles, CA 90001" +213869,USB-C Charging Cable,1,11.95,06/13/19 20:31,"976 Jefferson St, San Francisco, CA 94016" +213870,27in 4K Gaming Monitor,1,389.99,06/04/19 16:23,"689 Cherry St, Boston, MA 02215" +213871,Vareebadd Phone,1,400,06/04/19 20:18,"942 14th St, San Francisco, CA 94016" +213872,Bose SoundSport Headphones,1,99.99,06/07/19 15:45,"625 Willow St, Los Angeles, CA 90001" +213873,Wired Headphones,1,11.99,06/16/19 00:14,"490 River St, Dallas, TX 75001" +213874,Wired Headphones,1,11.99,06/16/19 17:36,"241 4th St, Los Angeles, CA 90001" +213875,27in FHD Monitor,1,149.99,06/18/19 13:42,"573 South St, San Francisco, CA 94016" +213876,Google Phone,1,600,06/26/19 11:53,"941 11th St, San Francisco, CA 94016" +213877,Wired Headphones,1,11.99,06/27/19 09:34,"866 River St, Boston, MA 02215" +213878,AAA Batteries (4-pack),1,2.99,06/12/19 21:07,"78 Lake St, Atlanta, GA 30301" +213879,Flatscreen TV,1,300,06/21/19 01:38,"944 West St, San Francisco, CA 94016" +213880,Bose SoundSport Headphones,1,99.99,06/29/19 10:40,"895 Hickory St, New York City, NY 10001" +213881,AA Batteries (4-pack),1,3.84,06/23/19 21:27,"434 South St, New York City, NY 10001" +213882,Bose SoundSport Headphones,1,99.99,06/18/19 10:01,"797 12th St, Los Angeles, CA 90001" +213883,34in Ultrawide Monitor,1,379.99,06/14/19 09:16,"553 Lakeview St, Los Angeles, CA 90001" +213884,Lightning Charging Cable,1,14.95,06/30/19 01:02,"617 Lakeview St, Boston, MA 02215" +213885,27in FHD Monitor,1,149.99,06/22/19 15:48,"894 Maple St, Boston, MA 02215" +213886,Bose SoundSport Headphones,1,99.99,06/05/19 18:10,"790 2nd St, Boston, MA 02215" +213887,AA Batteries (4-pack),1,3.84,06/23/19 19:55,"142 5th St, New York City, NY 10001" +213888,Apple Airpods Headphones,1,150,06/14/19 17:55,"479 North St, New York City, NY 10001" +213889,AA Batteries (4-pack),1,3.84,06/25/19 12:24,"214 8th St, Seattle, WA 98101" +213890,USB-C Charging Cable,1,11.95,06/01/19 14:30,"439 Ridge St, Austin, TX 73301" +213891,34in Ultrawide Monitor,1,379.99,06/12/19 16:21,"44 1st St, San Francisco, CA 94016" +213892,27in FHD Monitor,1,149.99,06/08/19 08:32,"940 West St, New York City, NY 10001" +213893,AAA Batteries (4-pack),1,2.99,06/06/19 23:13,"615 Pine St, San Francisco, CA 94016" +213894,USB-C Charging Cable,1,11.95,06/23/19 17:10,"480 North St, San Francisco, CA 94016" +213895,Apple Airpods Headphones,1,150,06/15/19 21:01,"298 Lake St, New York City, NY 10001" +213896,AAA Batteries (4-pack),1,2.99,06/09/19 11:47,"657 Hickory St, Los Angeles, CA 90001" +213897,Flatscreen TV,1,300,06/09/19 13:06,"462 Ridge St, Boston, MA 02215" +213897,Bose SoundSport Headphones,1,99.99,06/09/19 13:06,"462 Ridge St, Boston, MA 02215" +213898,27in 4K Gaming Monitor,1,389.99,06/18/19 18:11,"471 Hickory St, San Francisco, CA 94016" +213899,27in 4K Gaming Monitor,1,389.99,06/26/19 09:07,"295 Main St, Atlanta, GA 30301" +213900,34in Ultrawide Monitor,1,379.99,06/08/19 10:24,"395 North St, New York City, NY 10001" +213901,Bose SoundSport Headphones,1,99.99,06/07/19 07:12,"786 Jefferson St, New York City, NY 10001" +213902,Wired Headphones,1,11.99,06/25/19 02:15,"849 Washington St, San Francisco, CA 94016" +213903,Bose SoundSport Headphones,1,99.99,06/16/19 11:50,"963 Cedar St, Seattle, WA 98101" +213904,AAA Batteries (4-pack),1,2.99,06/25/19 17:33,"139 Cedar St, San Francisco, CA 94016" +213905,AAA Batteries (4-pack),1,2.99,06/13/19 13:40,"968 Spruce St, San Francisco, CA 94016" +213906,27in 4K Gaming Monitor,1,389.99,06/09/19 20:32,"633 Walnut St, San Francisco, CA 94016" +213907,Bose SoundSport Headphones,1,99.99,06/15/19 19:25,"14 12th St, San Francisco, CA 94016" +213908,34in Ultrawide Monitor,1,379.99,06/22/19 09:49,"121 Meadow St, Los Angeles, CA 90001" +213909,Wired Headphones,1,11.99,06/24/19 15:58,"586 Forest St, New York City, NY 10001" +213910,AAA Batteries (4-pack),3,2.99,06/05/19 16:31,"638 Forest St, Dallas, TX 75001" +213911,Macbook Pro Laptop,1,1700,06/09/19 22:21,"263 Lincoln St, Portland, OR 97035" +213912,AAA Batteries (4-pack),2,2.99,06/11/19 12:55,"937 2nd St, San Francisco, CA 94016" +213913,Bose SoundSport Headphones,1,99.99,06/04/19 10:49,"881 Maple St, Dallas, TX 75001" +213914,Apple Airpods Headphones,1,150,06/10/19 17:57,"422 Church St, Dallas, TX 75001" +213915,Vareebadd Phone,1,400,06/04/19 17:07,"184 Church St, Austin, TX 73301" +213916,iPhone,1,700,06/17/19 18:54,"814 Hickory St, Portland, OR 97035" +213917,Flatscreen TV,1,300,06/22/19 11:06,"518 10th St, Austin, TX 73301" +213918,Lightning Charging Cable,1,14.95,06/25/19 13:57,"688 Maple St, Atlanta, GA 30301" +213919,Bose SoundSport Headphones,1,99.99,06/13/19 17:44,"315 6th St, Atlanta, GA 30301" +213920,Lightning Charging Cable,1,14.95,06/12/19 14:46,"982 6th St, San Francisco, CA 94016" +213921,AAA Batteries (4-pack),2,2.99,06/26/19 13:40,"174 Jefferson St, Dallas, TX 75001" +213922,AA Batteries (4-pack),1,3.84,06/09/19 08:26,"876 Adams St, Boston, MA 02215" +213923,AAA Batteries (4-pack),2,2.99,06/22/19 19:07,"371 Lakeview St, Los Angeles, CA 90001" +213924,AAA Batteries (4-pack),2,2.99,06/14/19 16:12,"517 12th St, San Francisco, CA 94016" +213925,Bose SoundSport Headphones,1,99.99,06/27/19 17:26,"842 Cherry St, New York City, NY 10001" +213926,Lightning Charging Cable,1,14.95,06/12/19 10:58,"142 River St, San Francisco, CA 94016" +213927,AAA Batteries (4-pack),1,2.99,06/09/19 19:46,"169 5th St, San Francisco, CA 94016" +213928,iPhone,1,700,06/18/19 22:04,"889 4th St, New York City, NY 10001" +213929,27in FHD Monitor,1,149.99,06/15/19 16:47,"132 Washington St, San Francisco, CA 94016" +213930,USB-C Charging Cable,1,11.95,06/26/19 16:22,"861 Meadow St, Portland, OR 97035" +213931,Macbook Pro Laptop,1,1700,06/13/19 12:58,"246 Ridge St, Los Angeles, CA 90001" +213932,Flatscreen TV,1,300,06/20/19 13:57,"162 11th St, San Francisco, CA 94016" +213933,Bose SoundSport Headphones,1,99.99,06/26/19 18:26,"521 Jackson St, Dallas, TX 75001" +213934,iPhone,1,700,06/24/19 13:00,"579 Adams St, Boston, MA 02215" +213935,27in 4K Gaming Monitor,1,389.99,06/16/19 15:50,"647 Jefferson St, Portland, OR 97035" +213936,Wired Headphones,1,11.99,06/13/19 12:46,"982 Church St, Seattle, WA 98101" +213937,Google Phone,1,600,06/16/19 18:39,"800 Elm St, New York City, NY 10001" +213938,27in FHD Monitor,1,149.99,06/26/19 15:49,"29 11th St, San Francisco, CA 94016" +213939,Wired Headphones,1,11.99,06/24/19 13:06,"482 Church St, San Francisco, CA 94016" +213940,Wired Headphones,1,11.99,06/12/19 05:58,"798 14th St, Seattle, WA 98101" +213941,Bose SoundSport Headphones,1,99.99,06/29/19 19:51,"964 12th St, Boston, MA 02215" +213942,Wired Headphones,1,11.99,06/17/19 21:34,"267 1st St, Seattle, WA 98101" +213943,LG Washing Machine,1,600.0,06/22/19 17:16,"519 Walnut St, Dallas, TX 75001" +213944,20in Monitor,1,109.99,06/23/19 06:52,"819 Chestnut St, San Francisco, CA 94016" +213945,Lightning Charging Cable,1,14.95,06/05/19 20:12,"685 Wilson St, Portland, OR 97035" +213946,USB-C Charging Cable,1,11.95,06/22/19 15:29,"379 Cherry St, San Francisco, CA 94016" +213947,Lightning Charging Cable,1,14.95,06/06/19 17:03,"703 Lakeview St, Atlanta, GA 30301" +213948,AAA Batteries (4-pack),1,2.99,06/02/19 18:00,"639 Cedar St, Los Angeles, CA 90001" +213949,Flatscreen TV,1,300,06/29/19 12:38,"382 Highland St, Boston, MA 02215" +213950,Wired Headphones,1,11.99,06/11/19 13:36,"128 1st St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +213951,AA Batteries (4-pack),1,3.84,06/12/19 15:18,"258 Maple St, Los Angeles, CA 90001" +213952,AA Batteries (4-pack),1,3.84,06/17/19 16:54,"671 River St, San Francisco, CA 94016" +213953,Macbook Pro Laptop,1,1700,06/16/19 16:43,"300 Dogwood St, Austin, TX 73301" +213954,USB-C Charging Cable,1,11.95,06/19/19 10:33,"759 Church St, Los Angeles, CA 90001" +213955,Google Phone,1,600,06/05/19 14:56,"37 Wilson St, San Francisco, CA 94016" +213955,USB-C Charging Cable,1,11.95,06/05/19 14:56,"37 Wilson St, San Francisco, CA 94016" +213956,AA Batteries (4-pack),1,3.84,06/10/19 11:21,"762 14th St, San Francisco, CA 94016" +213957,Apple Airpods Headphones,1,150,06/03/19 12:46,"463 11th St, Portland, ME 04101" +213958,USB-C Charging Cable,1,11.95,06/14/19 17:08,"431 Dogwood St, New York City, NY 10001" +213959,Apple Airpods Headphones,1,150,06/14/19 11:53,"671 Cherry St, Los Angeles, CA 90001" +213960,AA Batteries (4-pack),1,3.84,06/02/19 16:12,"387 Madison St, Austin, TX 73301" +213961,Bose SoundSport Headphones,1,99.99,06/27/19 14:09,"872 Jackson St, Boston, MA 02215" +213962,AAA Batteries (4-pack),1,2.99,06/15/19 21:21,"503 Chestnut St, Boston, MA 02215" +213963,AA Batteries (4-pack),1,3.84,06/09/19 21:25,"725 2nd St, Los Angeles, CA 90001" +213964,USB-C Charging Cable,1,11.95,06/16/19 19:42,"651 Johnson St, Boston, MA 02215" +213965,Bose SoundSport Headphones,1,99.99,06/27/19 18:00,"72 Washington St, Los Angeles, CA 90001" +213966,Wired Headphones,1,11.99,06/10/19 20:29,"812 Adams St, Los Angeles, CA 90001" +213967,iPhone,1,700,06/26/19 07:12,"772 Main St, San Francisco, CA 94016" +213968,AA Batteries (4-pack),1,3.84,06/11/19 16:01,"39 Johnson St, Los Angeles, CA 90001" +213969,Wired Headphones,1,11.99,06/28/19 19:19,"305 Washington St, San Francisco, CA 94016" +213970,27in FHD Monitor,1,149.99,06/23/19 09:02,"771 Hill St, Austin, TX 73301" +213971,Apple Airpods Headphones,1,150,06/06/19 23:21,"964 Pine St, San Francisco, CA 94016" +213972,Lightning Charging Cable,1,14.95,06/26/19 07:31,"278 Walnut St, Atlanta, GA 30301" +213973,27in 4K Gaming Monitor,1,389.99,06/22/19 15:46,"265 Highland St, New York City, NY 10001" +213974,Lightning Charging Cable,1,14.95,06/30/19 19:25,"315 13th St, San Francisco, CA 94016" +213975,Wired Headphones,1,11.99,06/20/19 12:05,"860 Lake St, Austin, TX 73301" +213976,Lightning Charging Cable,1,14.95,06/21/19 22:00,"967 Lakeview St, San Francisco, CA 94016" +213977,27in FHD Monitor,1,149.99,06/11/19 01:18,"348 River St, Boston, MA 02215" +213978,Wired Headphones,1,11.99,06/18/19 16:52,"585 Jackson St, San Francisco, CA 94016" +213979,Flatscreen TV,1,300,06/03/19 08:27,"71 Hickory St, Atlanta, GA 30301" +213980,AA Batteries (4-pack),1,3.84,06/25/19 07:19,"940 9th St, Seattle, WA 98101" +213980,AA Batteries (4-pack),1,3.84,06/25/19 07:19,"940 9th St, Seattle, WA 98101" +213981,27in FHD Monitor,1,149.99,06/25/19 20:57,"571 Cherry St, Atlanta, GA 30301" +213982,34in Ultrawide Monitor,1,379.99,06/02/19 11:18,"488 14th St, San Francisco, CA 94016" +213983,Google Phone,1,600,06/21/19 05:54,"950 8th St, Los Angeles, CA 90001" +213984,Wired Headphones,1,11.99,06/02/19 13:47,"271 Spruce St, San Francisco, CA 94016" +213985,Apple Airpods Headphones,1,150,06/18/19 23:45,"597 West St, New York City, NY 10001" +213986,iPhone,1,700,06/18/19 17:50,"411 11th St, Boston, MA 02215" +213986,Lightning Charging Cable,1,14.95,06/18/19 17:50,"411 11th St, Boston, MA 02215" +213987,Lightning Charging Cable,1,14.95,06/10/19 11:16,"543 Pine St, Boston, MA 02215" +213988,Google Phone,1,600,06/11/19 00:02,"210 5th St, San Francisco, CA 94016" +213989,Wired Headphones,1,11.99,06/09/19 12:43,"323 Elm St, Dallas, TX 75001" +213990,Wired Headphones,1,11.99,06/03/19 18:03,"841 Madison St, Seattle, WA 98101" +213991,AAA Batteries (4-pack),1,2.99,06/25/19 20:12,"305 Jefferson St, Los Angeles, CA 90001" +213992,Apple Airpods Headphones,1,150,06/10/19 10:45,"527 Cedar St, San Francisco, CA 94016" +213993,USB-C Charging Cable,1,11.95,06/02/19 20:05,"61 South St, Los Angeles, CA 90001" +213994,Lightning Charging Cable,1,14.95,06/03/19 13:59,"251 13th St, Los Angeles, CA 90001" +213994,27in 4K Gaming Monitor,1,389.99,06/03/19 13:59,"251 13th St, Los Angeles, CA 90001" +213995,27in 4K Gaming Monitor,1,389.99,06/11/19 15:00,"489 7th St, Austin, TX 73301" +213996,ThinkPad Laptop,1,999.99,06/28/19 13:11,"555 7th St, Austin, TX 73301" +213997,Wired Headphones,1,11.99,06/16/19 13:20,"533 Maple St, Dallas, TX 75001" +213998,AA Batteries (4-pack),1,3.84,06/17/19 21:45,"524 Johnson St, Boston, MA 02215" +213999,AAA Batteries (4-pack),2,2.99,06/10/19 08:23,"124 Hickory St, Los Angeles, CA 90001" +214000,USB-C Charging Cable,1,11.95,06/09/19 19:11,"80 North St, San Francisco, CA 94016" +214001,Lightning Charging Cable,1,14.95,06/09/19 22:31,"930 Ridge St, Boston, MA 02215" +214002,Bose SoundSport Headphones,1,99.99,06/02/19 07:26,"597 Washington St, New York City, NY 10001" +214003,Apple Airpods Headphones,1,150,06/11/19 16:17,"413 South St, Boston, MA 02215" +214004,Vareebadd Phone,1,400,06/12/19 11:52,"415 Cedar St, San Francisco, CA 94016" +214004,USB-C Charging Cable,1,11.95,06/12/19 11:52,"415 Cedar St, San Francisco, CA 94016" +214004,Bose SoundSport Headphones,1,99.99,06/12/19 11:52,"415 Cedar St, San Francisco, CA 94016" +214005,AA Batteries (4-pack),1,3.84,06/25/19 21:34,"910 West St, Boston, MA 02215" +214006,USB-C Charging Cable,2,11.95,06/10/19 12:54,"892 7th St, Los Angeles, CA 90001" +214007,iPhone,1,700,06/06/19 20:50,"359 12th St, New York City, NY 10001" +214008,AAA Batteries (4-pack),1,2.99,06/06/19 21:17,"232 Hickory St, San Francisco, CA 94016" +214009,27in FHD Monitor,1,149.99,06/11/19 17:01,"108 Elm St, New York City, NY 10001" +214010,Lightning Charging Cable,1,14.95,06/08/19 18:39,"512 Dogwood St, Boston, MA 02215" +214011,Macbook Pro Laptop,1,1700,06/05/19 10:38,"829 Lincoln St, San Francisco, CA 94016" +214012,Wired Headphones,1,11.99,06/06/19 13:27,"44 Lake St, Boston, MA 02215" +214013,ThinkPad Laptop,1,999.99,06/27/19 14:52,"433 Dogwood St, Portland, OR 97035" +214014,USB-C Charging Cable,1,11.95,06/11/19 10:00,"61 Meadow St, Los Angeles, CA 90001" +214015,AA Batteries (4-pack),2,3.84,06/16/19 19:42,"341 Dogwood St, San Francisco, CA 94016" +214016,USB-C Charging Cable,1,11.95,06/05/19 17:45,"302 River St, San Francisco, CA 94016" +214017,Bose SoundSport Headphones,1,99.99,06/11/19 13:05,"883 Forest St, Atlanta, GA 30301" +214018,20in Monitor,1,109.99,06/06/19 10:53,"636 Ridge St, San Francisco, CA 94016" +214019,27in 4K Gaming Monitor,1,389.99,06/03/19 22:26,"354 Chestnut St, San Francisco, CA 94016" +214020,USB-C Charging Cable,3,11.95,06/01/19 14:41,"933 Elm St, Los Angeles, CA 90001" +214021,ThinkPad Laptop,1,999.99,06/28/19 21:33,"868 Maple St, Atlanta, GA 30301" +214022,AA Batteries (4-pack),1,3.84,06/18/19 13:17,"294 9th St, New York City, NY 10001" +214022,Bose SoundSport Headphones,1,99.99,06/18/19 13:17,"294 9th St, New York City, NY 10001" +214023,27in FHD Monitor,1,149.99,06/25/19 04:32,"622 9th St, San Francisco, CA 94016" +214024,Lightning Charging Cable,1,14.95,06/30/19 19:49,"979 Johnson St, Los Angeles, CA 90001" +214025,AA Batteries (4-pack),2,3.84,06/12/19 18:44,"107 4th St, Los Angeles, CA 90001" +214026,USB-C Charging Cable,1,11.95,06/16/19 17:50,"636 Spruce St, San Francisco, CA 94016" +214027,AA Batteries (4-pack),1,3.84,06/07/19 13:25,"999 Jackson St, Portland, OR 97035" +214028,Apple Airpods Headphones,1,150,06/08/19 13:37,"61 Elm St, San Francisco, CA 94016" +214029,Bose SoundSport Headphones,1,99.99,06/11/19 10:05,"698 River St, New York City, NY 10001" +214030,Apple Airpods Headphones,1,150,06/25/19 19:42,"525 Ridge St, Portland, OR 97035" +214031,iPhone,1,700,06/30/19 15:35,"938 6th St, Dallas, TX 75001" +214031,Lightning Charging Cable,1,14.95,06/30/19 15:35,"938 6th St, Dallas, TX 75001" +214032,Wired Headphones,1,11.99,06/24/19 14:10,"140 Cedar St, Portland, OR 97035" +214033,Wired Headphones,1,11.99,06/24/19 19:18,"63 Lake St, Portland, OR 97035" +214034,USB-C Charging Cable,1,11.95,06/16/19 18:05,"237 Jackson St, San Francisco, CA 94016" +214035,Lightning Charging Cable,1,14.95,06/24/19 09:24,"244 Johnson St, Portland, ME 04101" +214036,USB-C Charging Cable,1,11.95,06/07/19 22:44,"762 Washington St, Seattle, WA 98101" +214037,Lightning Charging Cable,1,14.95,06/20/19 00:07,"829 Forest St, New York City, NY 10001" +214038,ThinkPad Laptop,1,999.99,06/02/19 12:25,"464 Hickory St, Seattle, WA 98101" +214039,Apple Airpods Headphones,1,150,06/15/19 22:40,"520 Willow St, Dallas, TX 75001" +214040,Lightning Charging Cable,1,14.95,06/24/19 13:24,"79 1st St, San Francisco, CA 94016" +214041,Wired Headphones,1,11.99,06/14/19 12:34,"511 River St, Atlanta, GA 30301" +214042,20in Monitor,1,109.99,06/23/19 15:55,"95 Meadow St, San Francisco, CA 94016" +214043,Wired Headphones,1,11.99,06/27/19 18:06,"497 Highland St, Portland, OR 97035" +214044,Flatscreen TV,1,300,06/10/19 18:19,"545 4th St, Boston, MA 02215" +214045,USB-C Charging Cable,1,11.95,06/14/19 14:46,"345 Dogwood St, Boston, MA 02215" +214046,Apple Airpods Headphones,1,150,06/10/19 14:19,"835 Sunset St, San Francisco, CA 94016" +214047,Lightning Charging Cable,1,14.95,06/08/19 13:58,"228 Jackson St, New York City, NY 10001" +214048,LG Dryer,1,600.0,06/25/19 10:59,"432 Lincoln St, Atlanta, GA 30301" +214049,Lightning Charging Cable,2,14.95,06/20/19 16:30,"521 14th St, Atlanta, GA 30301" +214050,Apple Airpods Headphones,1,150,06/19/19 18:48,"401 7th St, San Francisco, CA 94016" +214051,Lightning Charging Cable,1,14.95,06/04/19 20:40,"975 Elm St, Portland, OR 97035" +214052,AAA Batteries (4-pack),1,2.99,06/16/19 17:46,"847 Lakeview St, Atlanta, GA 30301" +214053,ThinkPad Laptop,1,999.99,06/27/19 10:42,"745 North St, San Francisco, CA 94016" +214054,iPhone,1,700,06/29/19 13:30,"380 Johnson St, Boston, MA 02215" +214055,Wired Headphones,1,11.99,06/26/19 11:52,"608 Lakeview St, Dallas, TX 75001" +214056,AA Batteries (4-pack),2,3.84,06/19/19 10:21,"208 10th St, New York City, NY 10001" +214057,iPhone,1,700,06/12/19 06:17,"857 12th St, New York City, NY 10001" +214058,AA Batteries (4-pack),2,3.84,06/16/19 20:02,"921 Main St, New York City, NY 10001" +214059,Lightning Charging Cable,1,14.95,06/07/19 15:52,"948 South St, Dallas, TX 75001" +214060,27in FHD Monitor,1,149.99,06/01/19 17:41,"514 Cherry St, Atlanta, GA 30301" +214061,27in FHD Monitor,1,149.99,06/16/19 07:44,"427 Dogwood St, San Francisco, CA 94016" +214062,Apple Airpods Headphones,1,150,06/11/19 22:13,"359 Wilson St, San Francisco, CA 94016" +214063,Wired Headphones,1,11.99,06/30/19 13:18,"655 1st St, Boston, MA 02215" +214064,27in FHD Monitor,1,149.99,06/13/19 06:14,"484 Main St, San Francisco, CA 94016" +214065,AA Batteries (4-pack),1,3.84,06/09/19 16:45,"988 Lakeview St, New York City, NY 10001" +214066,Macbook Pro Laptop,1,1700,06/15/19 07:10,"780 9th St, Austin, TX 73301" +214067,AAA Batteries (4-pack),1,2.99,06/27/19 14:22,"124 North St, San Francisco, CA 94016" +214068,Lightning Charging Cable,3,14.95,06/17/19 11:26,"446 Wilson St, San Francisco, CA 94016" +214069,USB-C Charging Cable,1,11.95,06/19/19 14:58,"895 Highland St, New York City, NY 10001" +214070,iPhone,1,700,06/22/19 19:40,"558 Lake St, Portland, ME 04101" +214070,Wired Headphones,1,11.99,06/22/19 19:40,"558 Lake St, Portland, ME 04101" +214071,Macbook Pro Laptop,1,1700,06/02/19 16:12,"399 Dogwood St, San Francisco, CA 94016" +214072,AA Batteries (4-pack),1,3.84,06/29/19 18:21,"82 12th St, San Francisco, CA 94016" +214073,Wired Headphones,1,11.99,06/08/19 23:59,"909 5th St, Atlanta, GA 30301" +214074,Flatscreen TV,1,300,06/28/19 13:56,"329 Jefferson St, Seattle, WA 98101" +214075,Lightning Charging Cable,1,14.95,06/10/19 11:38,"568 Jefferson St, New York City, NY 10001" +214076,AA Batteries (4-pack),1,3.84,06/16/19 21:37,"505 Jefferson St, New York City, NY 10001" +214077,AA Batteries (4-pack),2,3.84,06/17/19 19:51,"949 Pine St, Los Angeles, CA 90001" +214078,Lightning Charging Cable,1,14.95,06/06/19 16:44,"268 10th St, Dallas, TX 75001" +214079,Wired Headphones,1,11.99,06/28/19 07:40,"29 10th St, Atlanta, GA 30301" +214080,AAA Batteries (4-pack),3,2.99,06/04/19 16:18,"283 Chestnut St, New York City, NY 10001" +214081,27in FHD Monitor,1,149.99,06/29/19 22:03,"363 14th St, Los Angeles, CA 90001" +214082,Bose SoundSport Headphones,1,99.99,06/28/19 08:33,"696 Spruce St, San Francisco, CA 94016" +214083,ThinkPad Laptop,1,999.99,06/25/19 15:51,"544 5th St, Los Angeles, CA 90001" +214084,Lightning Charging Cable,1,14.95,06/20/19 11:18,"896 11th St, Atlanta, GA 30301" +214085,Wired Headphones,1,11.99,06/26/19 19:19,"170 South St, Dallas, TX 75001" +214086,Macbook Pro Laptop,1,1700,06/08/19 22:48,"797 2nd St, Los Angeles, CA 90001" +214087,34in Ultrawide Monitor,1,379.99,06/21/19 17:07,"899 7th St, Dallas, TX 75001" +214088,Flatscreen TV,1,300,06/20/19 23:10,"313 Park St, Los Angeles, CA 90001" +214089,AAA Batteries (4-pack),1,2.99,06/12/19 10:08,"462 Cherry St, Los Angeles, CA 90001" +214090,USB-C Charging Cable,1,11.95,06/28/19 21:33,"991 Pine St, San Francisco, CA 94016" +214091,27in FHD Monitor,1,149.99,06/09/19 18:22,"86 11th St, Austin, TX 73301" +214092,Bose SoundSport Headphones,1,99.99,06/10/19 20:24,"151 Chestnut St, Boston, MA 02215" +214093,AAA Batteries (4-pack),4,2.99,06/25/19 01:21,"915 Elm St, Seattle, WA 98101" +214094,Bose SoundSport Headphones,1,99.99,06/05/19 13:30,"138 13th St, Dallas, TX 75001" +214095,USB-C Charging Cable,1,11.95,06/24/19 13:42,"124 Chestnut St, Dallas, TX 75001" +214096,Macbook Pro Laptop,1,1700,06/02/19 22:50,"783 13th St, Seattle, WA 98101" +214097,AAA Batteries (4-pack),1,2.99,06/08/19 11:52,"970 Walnut St, San Francisco, CA 94016" +214098,Wired Headphones,1,11.99,06/29/19 15:07,"518 Center St, Portland, ME 04101" +214099,20in Monitor,1,109.99,06/01/19 09:08,"90 Maple St, Portland, ME 04101" +214100,AA Batteries (4-pack),1,3.84,06/18/19 11:27,"354 Hill St, Austin, TX 73301" +,,,,, +214101,Bose SoundSport Headphones,1,99.99,06/21/19 20:37,"722 Lake St, San Francisco, CA 94016" +214102,AA Batteries (4-pack),1,3.84,06/06/19 12:23,"995 Center St, New York City, NY 10001" +214103,AAA Batteries (4-pack),1,2.99,06/03/19 20:08,"38 6th St, Dallas, TX 75001" +214104,Flatscreen TV,1,300,06/08/19 18:11,"327 7th St, San Francisco, CA 94016" +214105,Lightning Charging Cable,1,14.95,06/27/19 15:41,"561 5th St, San Francisco, CA 94016" +214106,Flatscreen TV,1,300,06/09/19 15:16,"361 Dogwood St, San Francisco, CA 94016" +214107,Lightning Charging Cable,2,14.95,06/25/19 16:49,"256 13th St, Boston, MA 02215" +214108,Lightning Charging Cable,1,14.95,06/15/19 07:46,"755 Madison St, Seattle, WA 98101" +214109,27in FHD Monitor,1,149.99,06/04/19 10:57,"289 14th St, Atlanta, GA 30301" +214110,Apple Airpods Headphones,1,150,06/22/19 13:44,"688 10th St, Los Angeles, CA 90001" +214111,Apple Airpods Headphones,1,150,06/17/19 18:46,"16 Walnut St, Atlanta, GA 30301" +214112,AAA Batteries (4-pack),1,2.99,06/27/19 17:03,"975 Sunset St, San Francisco, CA 94016" +214113,USB-C Charging Cable,1,11.95,06/16/19 12:25,"676 Hickory St, Boston, MA 02215" +214114,27in FHD Monitor,1,149.99,06/23/19 01:17,"547 Spruce St, Los Angeles, CA 90001" +214115,27in FHD Monitor,1,149.99,06/17/19 10:52,"96 Ridge St, Atlanta, GA 30301" +214116,AA Batteries (4-pack),2,3.84,06/11/19 10:08,"245 North St, New York City, NY 10001" +214117,AAA Batteries (4-pack),2,2.99,06/10/19 09:32,"706 Maple St, Atlanta, GA 30301" +214118,Lightning Charging Cable,1,14.95,06/27/19 10:18,"447 Meadow St, Los Angeles, CA 90001" +214119,iPhone,1,700,06/05/19 11:23,"198 Johnson St, Dallas, TX 75001" +214120,USB-C Charging Cable,1,11.95,06/11/19 22:04,"231 Johnson St, San Francisco, CA 94016" +214121,Macbook Pro Laptop,1,1700,06/19/19 21:15,"76 Hickory St, San Francisco, CA 94016" +214122,AAA Batteries (4-pack),3,2.99,06/29/19 18:46,"258 5th St, Portland, OR 97035" +214123,USB-C Charging Cable,1,11.95,06/07/19 21:29,"949 Ridge St, Austin, TX 73301" +214124,AAA Batteries (4-pack),1,2.99,06/14/19 21:07,"498 West St, Boston, MA 02215" +214125,Flatscreen TV,1,300,06/01/19 11:43,"324 9th St, New York City, NY 10001" +214126,AAA Batteries (4-pack),1,2.99,06/06/19 15:56,"920 8th St, New York City, NY 10001" +214127,Vareebadd Phone,1,400,06/04/19 12:10,"586 5th St, Boston, MA 02215" +214128,Wired Headphones,1,11.99,06/26/19 08:25,"497 11th St, Portland, OR 97035" +214129,34in Ultrawide Monitor,1,379.99,06/08/19 10:33,"270 12th St, New York City, NY 10001" +214130,Lightning Charging Cable,1,14.95,06/24/19 16:28,"270 13th St, Dallas, TX 75001" +214131,Lightning Charging Cable,1,14.95,06/25/19 16:47,"231 Cedar St, Seattle, WA 98101" +214132,27in 4K Gaming Monitor,1,389.99,06/25/19 21:01,"483 West St, New York City, NY 10001" +214133,AAA Batteries (4-pack),1,2.99,06/13/19 23:30,"91 Lake St, New York City, NY 10001" +214134,27in 4K Gaming Monitor,1,389.99,06/11/19 14:59,"329 Sunset St, New York City, NY 10001" +214135,Wired Headphones,1,11.99,06/01/19 21:02,"869 Chestnut St, Dallas, TX 75001" +214136,Vareebadd Phone,1,400,06/21/19 18:22,"809 Wilson St, Dallas, TX 75001" +214136,USB-C Charging Cable,2,11.95,06/21/19 18:22,"809 Wilson St, Dallas, TX 75001" +214137,AA Batteries (4-pack),1,3.84,06/04/19 15:58,"781 North St, New York City, NY 10001" +214138,Flatscreen TV,1,300,06/21/19 00:25,"278 11th St, Seattle, WA 98101" +214139,AAA Batteries (4-pack),1,2.99,06/21/19 09:56,"15 Elm St, Dallas, TX 75001" +214140,Wired Headphones,1,11.99,06/11/19 07:09,"13 Lakeview St, Atlanta, GA 30301" +214141,AA Batteries (4-pack),2,3.84,06/12/19 16:39,"247 Cedar St, Los Angeles, CA 90001" +214142,Apple Airpods Headphones,1,150,06/03/19 08:22,"249 Church St, San Francisco, CA 94016" +214143,AA Batteries (4-pack),1,3.84,06/16/19 09:34,"474 Lake St, San Francisco, CA 94016" +214144,AA Batteries (4-pack),1,3.84,06/18/19 22:59,"834 Hickory St, Los Angeles, CA 90001" +214145,Lightning Charging Cable,1,14.95,06/27/19 16:11,"502 Chestnut St, New York City, NY 10001" +214146,AAA Batteries (4-pack),3,2.99,06/14/19 11:00,"586 Hickory St, New York City, NY 10001" +214147,AAA Batteries (4-pack),1,2.99,06/04/19 14:26,"92 6th St, Seattle, WA 98101" +214148,AA Batteries (4-pack),1,3.84,06/28/19 17:51,"428 Spruce St, San Francisco, CA 94016" +214149,Flatscreen TV,1,300,06/17/19 13:05,"518 Pine St, New York City, NY 10001" +214150,Lightning Charging Cable,1,14.95,06/24/19 16:21,"442 Jackson St, San Francisco, CA 94016" +214151,Wired Headphones,1,11.99,06/25/19 08:38,"770 Park St, San Francisco, CA 94016" +214152,Bose SoundSport Headphones,1,99.99,06/15/19 17:32,"29 6th St, New York City, NY 10001" +214153,27in FHD Monitor,1,149.99,06/11/19 14:20,"427 9th St, Boston, MA 02215" +214154,Apple Airpods Headphones,1,150,06/15/19 17:28,"947 Main St, Boston, MA 02215" +214155,AAA Batteries (4-pack),1,2.99,06/06/19 10:26,"647 Lakeview St, Seattle, WA 98101" +214156,Bose SoundSport Headphones,1,99.99,06/08/19 11:58,"770 Ridge St, Boston, MA 02215" +214157,AA Batteries (4-pack),2,3.84,06/26/19 12:32,"950 13th St, Los Angeles, CA 90001" +214158,Apple Airpods Headphones,1,150,06/11/19 12:40,"233 Madison St, San Francisco, CA 94016" +214159,USB-C Charging Cable,1,11.95,06/04/19 09:58,"845 Elm St, Dallas, TX 75001" +214160,Wired Headphones,1,11.99,06/25/19 20:22,"992 Main St, Dallas, TX 75001" +214161,Wired Headphones,1,11.99,06/03/19 01:26,"840 Ridge St, Portland, OR 97035" +214162,AA Batteries (4-pack),1,3.84,06/26/19 16:37,"286 Lincoln St, New York City, NY 10001" +214163,AAA Batteries (4-pack),1,2.99,06/26/19 08:36,"52 Pine St, San Francisco, CA 94016" +214164,USB-C Charging Cable,1,11.95,06/07/19 15:00,"514 5th St, Dallas, TX 75001" +214165,Lightning Charging Cable,2,14.95,06/19/19 00:56,"538 Hill St, Boston, MA 02215" +214166,USB-C Charging Cable,1,11.95,06/23/19 10:00,"337 Spruce St, Portland, OR 97035" +214167,20in Monitor,1,109.99,06/06/19 11:36,"629 Hill St, Los Angeles, CA 90001" +214168,Wired Headphones,1,11.99,06/07/19 14:15,"748 Ridge St, San Francisco, CA 94016" +214169,Wired Headphones,1,11.99,06/28/19 15:34,"493 Madison St, Portland, OR 97035" +214170,Bose SoundSport Headphones,1,99.99,06/07/19 13:10,"874 Main St, Los Angeles, CA 90001" +214171,34in Ultrawide Monitor,1,379.99,06/30/19 13:33,"27 Church St, Boston, MA 02215" +214172,Google Phone,1,600,06/28/19 10:15,"167 2nd St, Atlanta, GA 30301" +214173,Lightning Charging Cable,1,14.95,06/15/19 01:43,"620 Ridge St, Los Angeles, CA 90001" +214174,Wired Headphones,1,11.99,06/05/19 14:23,"109 9th St, Atlanta, GA 30301" +214175,AAA Batteries (4-pack),1,2.99,06/02/19 22:39,"139 Jackson St, Seattle, WA 98101" +214176,AAA Batteries (4-pack),1,2.99,06/01/19 09:29,"439 Washington St, Atlanta, GA 30301" +214177,Bose SoundSport Headphones,1,99.99,06/30/19 20:08,"449 1st St, Boston, MA 02215" +214178,27in 4K Gaming Monitor,1,389.99,06/10/19 01:43,"545 Elm St, Austin, TX 73301" +214179,27in FHD Monitor,1,149.99,06/13/19 15:18,"977 Sunset St, Atlanta, GA 30301" +214180,AAA Batteries (4-pack),2,2.99,06/20/19 11:33,"597 6th St, Portland, OR 97035" +214181,AAA Batteries (4-pack),3,2.99,06/02/19 15:52,"59 12th St, San Francisco, CA 94016" +214182,AA Batteries (4-pack),2,3.84,06/09/19 15:41,"293 Maple St, Boston, MA 02215" +214183,Wired Headphones,1,11.99,06/11/19 22:05,"652 Hickory St, San Francisco, CA 94016" +214184,Wired Headphones,1,11.99,06/29/19 10:52,"548 North St, Los Angeles, CA 90001" +214185,27in FHD Monitor,1,149.99,06/27/19 20:02,"275 Johnson St, San Francisco, CA 94016" +214186,Bose SoundSport Headphones,1,99.99,06/09/19 15:26,"211 North St, Seattle, WA 98101" +214187,AAA Batteries (4-pack),2,2.99,06/21/19 12:51,"184 Adams St, New York City, NY 10001" +214188,Bose SoundSport Headphones,1,99.99,06/07/19 21:09,"554 Lakeview St, San Francisco, CA 94016" +214189,20in Monitor,1,109.99,06/16/19 00:58,"898 1st St, Atlanta, GA 30301" +214190,Lightning Charging Cable,1,14.95,06/22/19 16:03,"713 8th St, Portland, OR 97035" +214191,AA Batteries (4-pack),1,3.84,06/16/19 09:37,"547 Lake St, San Francisco, CA 94016" +214192,Bose SoundSport Headphones,1,99.99,06/18/19 11:38,"832 Cherry St, Austin, TX 73301" +214193,AAA Batteries (4-pack),1,2.99,06/21/19 11:32,"221 Washington St, Austin, TX 73301" +214194,Macbook Pro Laptop,1,1700,06/06/19 09:48,"439 9th St, Austin, TX 73301" +214195,AAA Batteries (4-pack),1,2.99,06/30/19 14:05,"315 6th St, Boston, MA 02215" +214196,USB-C Charging Cable,1,11.95,06/19/19 15:01,"441 Church St, San Francisco, CA 94016" +214197,LG Dryer,1,600.0,06/09/19 18:24,"230 Washington St, Los Angeles, CA 90001" +214198,Wired Headphones,1,11.99,06/29/19 11:02,"23 13th St, San Francisco, CA 94016" +214199,Apple Airpods Headphones,1,150,06/05/19 17:40,"707 Park St, Atlanta, GA 30301" +214200,AAA Batteries (4-pack),2,2.99,06/08/19 16:42,"372 Jefferson St, Dallas, TX 75001" +214201,AA Batteries (4-pack),1,3.84,06/26/19 13:52,"616 13th St, New York City, NY 10001" +214202,Lightning Charging Cable,1,14.95,06/03/19 23:28,"868 9th St, Los Angeles, CA 90001" +214203,iPhone,1,700,06/14/19 15:09,"222 Sunset St, Los Angeles, CA 90001" +214204,AA Batteries (4-pack),1,3.84,06/26/19 14:35,"425 Cedar St, Boston, MA 02215" +214205,LG Dryer,1,600.0,06/12/19 19:38,"80 River St, Seattle, WA 98101" +214206,USB-C Charging Cable,1,11.95,06/04/19 18:55,"679 14th St, San Francisco, CA 94016" +214207,20in Monitor,1,109.99,06/04/19 07:05,"697 Highland St, San Francisco, CA 94016" +214208,Lightning Charging Cable,1,14.95,06/10/19 21:00,"121 West St, Atlanta, GA 30301" +214209,34in Ultrawide Monitor,1,379.99,06/26/19 14:26,"294 4th St, New York City, NY 10001" +214210,USB-C Charging Cable,1,11.95,06/08/19 20:29,"458 Lincoln St, Portland, OR 97035" +214211,Vareebadd Phone,1,400,06/02/19 04:56,"191 Ridge St, Boston, MA 02215" +214212,Flatscreen TV,1,300,06/29/19 08:05,"924 Ridge St, Los Angeles, CA 90001" +214213,AAA Batteries (4-pack),1,2.99,06/28/19 21:06,"241 South St, Dallas, TX 75001" +214214,Google Phone,1,600,06/01/19 16:38,"525 Adams St, Boston, MA 02215" +214214,Bose SoundSport Headphones,1,99.99,06/01/19 16:38,"525 Adams St, Boston, MA 02215" +214215,AA Batteries (4-pack),1,3.84,06/29/19 15:05,"135 11th St, San Francisco, CA 94016" +214216,USB-C Charging Cable,1,11.95,06/23/19 21:15,"31 7th St, Boston, MA 02215" +214217,Lightning Charging Cable,1,14.95,06/25/19 20:04,"830 Adams St, New York City, NY 10001" +214218,AAA Batteries (4-pack),2,2.99,06/19/19 11:49,"321 Meadow St, Los Angeles, CA 90001" +214219,iPhone,1,700,06/12/19 11:18,"255 Sunset St, San Francisco, CA 94016" +214220,20in Monitor,1,109.99,06/13/19 20:47,"577 Meadow St, Seattle, WA 98101" +214221,27in FHD Monitor,1,149.99,06/27/19 01:17,"570 Park St, Portland, OR 97035" +214222,Macbook Pro Laptop,1,1700,06/13/19 07:41,"341 Chestnut St, Austin, TX 73301" +214223,Wired Headphones,1,11.99,06/07/19 15:00,"648 Pine St, San Francisco, CA 94016" +214224,Apple Airpods Headphones,1,150,06/10/19 19:18,"588 Jackson St, Atlanta, GA 30301" +214225,Wired Headphones,1,11.99,06/29/19 15:14,"338 4th St, Dallas, TX 75001" +214226,USB-C Charging Cable,1,11.95,06/12/19 18:58,"516 Maple St, Boston, MA 02215" +214227,Macbook Pro Laptop,1,1700,06/18/19 20:41,"684 4th St, New York City, NY 10001" +214228,Lightning Charging Cable,1,14.95,06/13/19 01:32,"977 Chestnut St, San Francisco, CA 94016" +214229,AA Batteries (4-pack),1,3.84,06/13/19 07:34,"937 Chestnut St, Los Angeles, CA 90001" +214230,Bose SoundSport Headphones,1,99.99,06/18/19 11:14,"518 Park St, Portland, OR 97035" +214231,27in 4K Gaming Monitor,1,389.99,06/27/19 08:04,"913 Hill St, Seattle, WA 98101" +214232,iPhone,1,700,06/07/19 10:25,"256 6th St, Dallas, TX 75001" +214233,Lightning Charging Cable,1,14.95,06/09/19 12:02,"428 13th St, San Francisco, CA 94016" +214234,Apple Airpods Headphones,1,150,06/20/19 17:10,"655 Johnson St, Atlanta, GA 30301" +214235,USB-C Charging Cable,1,11.95,06/22/19 10:08,"353 Park St, New York City, NY 10001" +214236,Flatscreen TV,1,300,06/10/19 13:05,"809 Hill St, Los Angeles, CA 90001" +214237,Wired Headphones,1,11.99,06/26/19 22:31,"310 Highland St, Dallas, TX 75001" +214238,AA Batteries (4-pack),1,3.84,06/06/19 11:47,"776 Maple St, Los Angeles, CA 90001" +214239,Lightning Charging Cable,1,14.95,06/18/19 12:45,"859 South St, Atlanta, GA 30301" +214240,Macbook Pro Laptop,1,1700,06/11/19 09:32,"407 14th St, Portland, OR 97035" +214241,AA Batteries (4-pack),1,3.84,06/10/19 10:02,"711 Park St, Seattle, WA 98101" +214242,Lightning Charging Cable,1,14.95,06/28/19 23:40,"577 Hill St, San Francisco, CA 94016" +214243,Wired Headphones,1,11.99,06/25/19 20:23,"200 Pine St, San Francisco, CA 94016" +214244,AA Batteries (4-pack),2,3.84,06/09/19 19:39,"753 Main St, San Francisco, CA 94016" +214245,AAA Batteries (4-pack),1,2.99,06/11/19 21:34,"424 12th St, Boston, MA 02215" +214246,AA Batteries (4-pack),1,3.84,06/04/19 18:47,"226 2nd St, New York City, NY 10001" +214247,AA Batteries (4-pack),1,3.84,06/04/19 17:24,"134 North St, New York City, NY 10001" +214248,Wired Headphones,1,11.99,06/07/19 09:57,"96 Main St, Boston, MA 02215" +214249,AAA Batteries (4-pack),1,2.99,06/17/19 11:17,"365 Jackson St, San Francisco, CA 94016" +214250,USB-C Charging Cable,1,11.95,06/30/19 14:32,"666 Cherry St, Seattle, WA 98101" +214251,Apple Airpods Headphones,1,150,06/25/19 12:04,"705 Johnson St, Austin, TX 73301" +214252,27in 4K Gaming Monitor,1,389.99,06/09/19 15:48,"687 2nd St, Atlanta, GA 30301" +214253,Apple Airpods Headphones,1,150,06/19/19 20:01,"946 Forest St, Los Angeles, CA 90001" +214254,AAA Batteries (4-pack),1,2.99,06/26/19 19:48,"744 Johnson St, Boston, MA 02215" +214255,20in Monitor,1,109.99,06/26/19 08:20,"72 Maple St, Seattle, WA 98101" +214256,Lightning Charging Cable,1,14.95,06/15/19 17:23,"222 Johnson St, Boston, MA 02215" +214257,USB-C Charging Cable,1,11.95,06/12/19 19:59,"560 Willow St, Seattle, WA 98101" +214258,Wired Headphones,1,11.99,06/29/19 20:55,"9 Jefferson St, Seattle, WA 98101" +214259,iPhone,1,700,06/10/19 10:09,"134 Jackson St, Seattle, WA 98101" +214260,Wired Headphones,1,11.99,06/28/19 11:31,"902 Meadow St, Portland, OR 97035" +214261,AAA Batteries (4-pack),1,2.99,06/10/19 09:24,"307 12th St, San Francisco, CA 94016" +214262,27in FHD Monitor,1,149.99,06/07/19 19:25,"107 Lake St, Los Angeles, CA 90001" +214263,Bose SoundSport Headphones,1,99.99,06/15/19 11:31,"228 1st St, Boston, MA 02215" +214264,Apple Airpods Headphones,1,150,06/01/19 18:51,"71 14th St, Los Angeles, CA 90001" +214265,Bose SoundSport Headphones,1,99.99,06/16/19 19:43,"986 Lakeview St, Los Angeles, CA 90001" +214266,Wired Headphones,1,11.99,06/03/19 16:29,"140 Adams St, San Francisco, CA 94016" +214267,Lightning Charging Cable,1,14.95,06/17/19 07:57,"426 Spruce St, New York City, NY 10001" +,,,,, +214268,AA Batteries (4-pack),1,3.84,06/12/19 19:08,"189 Willow St, Los Angeles, CA 90001" +214269,USB-C Charging Cable,1,11.95,06/08/19 12:45,"962 Cedar St, Boston, MA 02215" +214270,Apple Airpods Headphones,1,150,06/27/19 20:17,"98 8th St, Dallas, TX 75001" +214270,34in Ultrawide Monitor,1,379.99,06/27/19 20:17,"98 8th St, Dallas, TX 75001" +214271,Lightning Charging Cable,2,14.95,06/04/19 11:25,"893 Highland St, Los Angeles, CA 90001" +214272,Vareebadd Phone,1,400,06/26/19 08:01,"73 5th St, San Francisco, CA 94016" +214273,Bose SoundSport Headphones,1,99.99,06/08/19 18:30,"97 Meadow St, Seattle, WA 98101" +214274,Apple Airpods Headphones,1,150,06/13/19 13:37,"764 Cherry St, Los Angeles, CA 90001" +214275,Lightning Charging Cable,2,14.95,06/12/19 21:17,"325 West St, San Francisco, CA 94016" +214276,27in 4K Gaming Monitor,1,389.99,06/29/19 10:49,"450 6th St, San Francisco, CA 94016" +214277,Google Phone,1,600,06/04/19 18:03,"292 Pine St, Atlanta, GA 30301" +214278,Apple Airpods Headphones,1,150,06/22/19 12:26,"68 Wilson St, Portland, OR 97035" +214279,USB-C Charging Cable,1,11.95,06/25/19 19:50,"181 9th St, Seattle, WA 98101" +214280,Apple Airpods Headphones,2,150,06/04/19 14:25,"417 2nd St, Atlanta, GA 30301" +214281,AA Batteries (4-pack),2,3.84,06/21/19 21:35,"185 North St, New York City, NY 10001" +214282,Lightning Charging Cable,1,14.95,06/20/19 03:32,"19 9th St, Atlanta, GA 30301" +214283,Lightning Charging Cable,1,14.95,06/21/19 14:56,"891 6th St, New York City, NY 10001" +214284,Macbook Pro Laptop,1,1700,06/15/19 18:58,"61 Johnson St, San Francisco, CA 94016" +214285,Wired Headphones,2,11.99,06/09/19 06:24,"321 Maple St, Dallas, TX 75001" +214286,Apple Airpods Headphones,1,150,06/15/19 15:15,"21 Hickory St, Seattle, WA 98101" +214287,Wired Headphones,1,11.99,06/21/19 16:29,"393 10th St, Boston, MA 02215" +214288,USB-C Charging Cable,1,11.95,06/13/19 09:45,"478 14th St, Portland, OR 97035" +214289,AAA Batteries (4-pack),2,2.99,06/27/19 10:55,"724 Chestnut St, Atlanta, GA 30301" +214290,Apple Airpods Headphones,1,150,06/21/19 12:08,"423 Lake St, Boston, MA 02215" +214291,AA Batteries (4-pack),2,3.84,06/08/19 21:32,"203 6th St, Boston, MA 02215" +214292,Google Phone,1,600,06/25/19 15:08,"507 9th St, New York City, NY 10001" +214292,Wired Headphones,1,11.99,06/25/19 15:08,"507 9th St, New York City, NY 10001" +214293,AA Batteries (4-pack),1,3.84,06/20/19 20:44,"724 Walnut St, San Francisco, CA 94016" +214294,iPhone,1,700,06/02/19 20:01,"516 Highland St, Atlanta, GA 30301" +214295,ThinkPad Laptop,1,999.99,06/18/19 00:05,"372 Dogwood St, Los Angeles, CA 90001" +214296,Wired Headphones,1,11.99,06/19/19 13:02,"138 Washington St, San Francisco, CA 94016" +214297,ThinkPad Laptop,1,999.99,06/15/19 23:09,"760 Main St, Seattle, WA 98101" +214298,AAA Batteries (4-pack),1,2.99,06/18/19 10:28,"176 South St, New York City, NY 10001" +214299,Apple Airpods Headphones,1,150,06/21/19 02:29,"47 1st St, Los Angeles, CA 90001" +214300,34in Ultrawide Monitor,1,379.99,06/09/19 19:33,"915 Highland St, San Francisco, CA 94016" +214301,USB-C Charging Cable,1,11.95,06/02/19 06:36,"120 Hill St, San Francisco, CA 94016" +214302,Macbook Pro Laptop,1,1700,06/23/19 18:07,"174 Hill St, San Francisco, CA 94016" +214303,Wired Headphones,1,11.99,06/16/19 13:19,"837 4th St, Atlanta, GA 30301" +214304,AAA Batteries (4-pack),1,2.99,06/21/19 09:56,"826 10th St, Seattle, WA 98101" +214305,Bose SoundSport Headphones,1,99.99,06/19/19 22:32,"377 West St, San Francisco, CA 94016" +214306,AA Batteries (4-pack),2,3.84,06/25/19 21:06,"150 Pine St, San Francisco, CA 94016" +214307,Lightning Charging Cable,1,14.95,06/25/19 17:43,"87 Walnut St, Portland, OR 97035" +214308,AAA Batteries (4-pack),1,2.99,06/25/19 16:44,"275 2nd St, Boston, MA 02215" +214309,27in FHD Monitor,1,149.99,06/09/19 13:19,"504 South St, Los Angeles, CA 90001" +214310,iPhone,1,700,06/30/19 22:21,"568 2nd St, San Francisco, CA 94016" +214311,20in Monitor,1,109.99,06/14/19 23:16,"156 South St, Los Angeles, CA 90001" +214312,USB-C Charging Cable,1,11.95,06/09/19 12:30,"358 Meadow St, San Francisco, CA 94016" +214313,Wired Headphones,1,11.99,06/12/19 08:54,"653 Adams St, Seattle, WA 98101" +214314,Flatscreen TV,1,300,06/05/19 06:47,"207 Wilson St, San Francisco, CA 94016" +214315,AAA Batteries (4-pack),1,2.99,06/03/19 07:43,"750 Church St, New York City, NY 10001" +214316,USB-C Charging Cable,2,11.95,06/14/19 21:10,"750 North St, Los Angeles, CA 90001" +214317,USB-C Charging Cable,1,11.95,06/18/19 19:53,"895 River St, Dallas, TX 75001" +214318,Apple Airpods Headphones,1,150,06/04/19 13:51,"105 Lakeview St, Boston, MA 02215" +214319,27in 4K Gaming Monitor,1,389.99,06/01/19 12:13,"76 Wilson St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +214320,iPhone,1,700,06/10/19 20:07,"538 Jefferson St, Seattle, WA 98101" +214321,Bose SoundSport Headphones,1,99.99,06/11/19 11:05,"383 Main St, Atlanta, GA 30301" +214322,Lightning Charging Cable,1,14.95,06/29/19 12:02,"395 West St, Portland, OR 97035" +214323,USB-C Charging Cable,1,11.95,06/25/19 19:16,"875 Main St, Seattle, WA 98101" +214324,AA Batteries (4-pack),3,3.84,06/18/19 14:51,"234 Ridge St, New York City, NY 10001" +214325,Bose SoundSport Headphones,1,99.99,06/24/19 21:53,"372 Hickory St, Los Angeles, CA 90001" +214326,Apple Airpods Headphones,1,150,06/03/19 14:54,"44 6th St, San Francisco, CA 94016" +214327,Macbook Pro Laptop,1,1700,06/17/19 15:48,"487 Wilson St, Atlanta, GA 30301" +214328,Bose SoundSport Headphones,1,99.99,06/08/19 20:24,"223 West St, Los Angeles, CA 90001" +214329,Apple Airpods Headphones,1,150,06/01/19 13:01,"345 Johnson St, Austin, TX 73301" +214330,Lightning Charging Cable,1,14.95,06/14/19 21:00,"813 Hill St, Dallas, TX 75001" +214331,Lightning Charging Cable,1,14.95,06/13/19 19:32,"786 9th St, Los Angeles, CA 90001" +214332,Google Phone,1,600,06/29/19 14:51,"644 Hill St, San Francisco, CA 94016" +214333,AA Batteries (4-pack),3,3.84,06/10/19 18:27,"587 Dogwood St, Los Angeles, CA 90001" +214334,27in FHD Monitor,1,149.99,06/07/19 01:09,"149 Jackson St, Austin, TX 73301" +214335,Wired Headphones,1,11.99,06/12/19 20:08,"729 Cedar St, Boston, MA 02215" +214336,34in Ultrawide Monitor,1,379.99,06/24/19 09:24,"269 South St, New York City, NY 10001" +214337,AA Batteries (4-pack),1,3.84,06/30/19 20:18,"756 Maple St, San Francisco, CA 94016" +214338,AA Batteries (4-pack),1,3.84,06/09/19 14:39,"445 Sunset St, Los Angeles, CA 90001" +214339,Macbook Pro Laptop,1,1700,06/22/19 14:33,"818 Washington St, New York City, NY 10001" +214340,USB-C Charging Cable,1,11.95,06/02/19 19:08,"454 6th St, New York City, NY 10001" +214341,20in Monitor,1,109.99,06/11/19 07:15,"754 13th St, New York City, NY 10001" +214342,Apple Airpods Headphones,1,150,06/12/19 00:31,"960 Sunset St, Los Angeles, CA 90001" +214343,27in FHD Monitor,1,149.99,06/22/19 12:15,"459 North St, San Francisco, CA 94016" +214344,ThinkPad Laptop,1,999.99,06/17/19 19:33,"106 Ridge St, New York City, NY 10001" +214345,iPhone,1,700,06/19/19 18:43,"100 Dogwood St, San Francisco, CA 94016" +214346,Lightning Charging Cable,1,14.95,06/30/19 13:53,"506 Church St, Dallas, TX 75001" +214347,AA Batteries (4-pack),1,3.84,06/17/19 16:59,"313 Lake St, Seattle, WA 98101" +214347,34in Ultrawide Monitor,1,379.99,06/17/19 16:59,"313 Lake St, Seattle, WA 98101" +,,,,, +214348,27in FHD Monitor,1,149.99,06/04/19 14:34,"190 Lake St, Boston, MA 02215" +214349,USB-C Charging Cable,1,11.95,06/16/19 12:14,"218 13th St, Dallas, TX 75001" +214350,ThinkPad Laptop,1,999.99,06/01/19 19:41,"711 Meadow St, San Francisco, CA 94016" +214351,AA Batteries (4-pack),1,3.84,06/29/19 20:57,"259 2nd St, Portland, OR 97035" +214352,Wired Headphones,1,11.99,06/28/19 20:02,"429 Spruce St, Boston, MA 02215" +214353,Vareebadd Phone,1,400,06/19/19 17:41,"360 4th St, San Francisco, CA 94016" +214354,Google Phone,1,600,06/05/19 17:33,"173 Forest St, Atlanta, GA 30301" +214354,USB-C Charging Cable,1,11.95,06/05/19 17:33,"173 Forest St, Atlanta, GA 30301" +214355,Bose SoundSport Headphones,1,99.99,06/10/19 14:39,"521 Johnson St, Seattle, WA 98101" +214356,AA Batteries (4-pack),4,3.84,06/05/19 11:42,"775 Pine St, New York City, NY 10001" +214357,Google Phone,1,600,06/01/19 11:57,"971 Willow St, Los Angeles, CA 90001" +214358,AA Batteries (4-pack),2,3.84,06/04/19 07:20,"69 4th St, San Francisco, CA 94016" +214359,20in Monitor,1,109.99,06/01/19 14:42,"463 12th St, Dallas, TX 75001" +214360,Google Phone,1,600,06/07/19 21:19,"729 Meadow St, San Francisco, CA 94016" +214361,Macbook Pro Laptop,1,1700,06/29/19 20:46,"274 West St, Atlanta, GA 30301" +214362,Bose SoundSport Headphones,1,99.99,06/18/19 19:41,"907 Madison St, Los Angeles, CA 90001" +214363,Wired Headphones,1,11.99,06/22/19 11:29,"918 West St, Los Angeles, CA 90001" +214364,Vareebadd Phone,1,400,06/25/19 13:30,"950 Cedar St, New York City, NY 10001" +214365,Vareebadd Phone,1,400,06/27/19 10:50,"253 Center St, Dallas, TX 75001" +214366,USB-C Charging Cable,1,11.95,06/05/19 10:51,"752 Meadow St, San Francisco, CA 94016" +214367,Wired Headphones,1,11.99,06/19/19 08:54,"546 10th St, Boston, MA 02215" +214368,iPhone,1,700,06/24/19 23:09,"445 5th St, San Francisco, CA 94016" +214369,ThinkPad Laptop,1,999.99,06/28/19 10:11,"676 Park St, Los Angeles, CA 90001" +214370,USB-C Charging Cable,1,11.95,06/10/19 09:03,"796 Church St, Seattle, WA 98101" +214371,USB-C Charging Cable,1,11.95,06/20/19 12:27,"846 Forest St, San Francisco, CA 94016" +214372,USB-C Charging Cable,1,11.95,06/29/19 23:13,"971 Chestnut St, Seattle, WA 98101" +214373,34in Ultrawide Monitor,1,379.99,06/21/19 22:55,"813 4th St, Seattle, WA 98101" +214374,Apple Airpods Headphones,1,150,06/04/19 13:59,"894 Maple St, Seattle, WA 98101" +214375,27in FHD Monitor,1,149.99,06/04/19 14:04,"67 2nd St, Dallas, TX 75001" +214376,Apple Airpods Headphones,1,150,06/05/19 19:43,"518 Church St, New York City, NY 10001" +214377,AA Batteries (4-pack),1,3.84,06/27/19 08:52,"875 Highland St, Los Angeles, CA 90001" +214378,AAA Batteries (4-pack),1,2.99,06/10/19 20:53,"893 12th St, San Francisco, CA 94016" +214379,Apple Airpods Headphones,1,150,06/15/19 15:17,"653 5th St, Dallas, TX 75001" +214380,AA Batteries (4-pack),1,3.84,06/03/19 11:50,"814 Adams St, Los Angeles, CA 90001" +214381,AA Batteries (4-pack),2,3.84,06/15/19 11:55,"789 West St, Los Angeles, CA 90001" +214382,Lightning Charging Cable,1,14.95,07/01/19 00:50,"369 2nd St, San Francisco, CA 94016" +214383,AAA Batteries (4-pack),2,2.99,06/30/19 12:36,"390 Cherry St, San Francisco, CA 94016" +214384,USB-C Charging Cable,1,11.95,06/08/19 19:03,"937 North St, San Francisco, CA 94016" +214385,iPhone,1,700,06/04/19 17:33,"932 Chestnut St, San Francisco, CA 94016" +214386,AAA Batteries (4-pack),1,2.99,06/03/19 16:46,"962 Spruce St, Austin, TX 73301" +214387,27in FHD Monitor,1,149.99,06/21/19 20:22,"24 Hill St, San Francisco, CA 94016" +214388,AA Batteries (4-pack),1,3.84,06/10/19 21:39,"436 2nd St, San Francisco, CA 94016" +214389,Bose SoundSport Headphones,1,99.99,06/21/19 10:13,"73 1st St, Los Angeles, CA 90001" +214390,Bose SoundSport Headphones,1,99.99,06/08/19 19:17,"758 Ridge St, Atlanta, GA 30301" +214391,Bose SoundSport Headphones,1,99.99,06/17/19 17:58,"629 Center St, New York City, NY 10001" +214392,Wired Headphones,1,11.99,06/15/19 12:36,"19 Center St, Los Angeles, CA 90001" +214393,Google Phone,1,600,06/20/19 11:54,"363 Hill St, San Francisco, CA 94016" +214394,AA Batteries (4-pack),1,3.84,06/20/19 14:29,"495 Chestnut St, San Francisco, CA 94016" +214395,34in Ultrawide Monitor,1,379.99,06/23/19 11:38,"967 Wilson St, Austin, TX 73301" +214396,Macbook Pro Laptop,1,1700,06/23/19 12:35,"318 Park St, Los Angeles, CA 90001" +214397,AAA Batteries (4-pack),1,2.99,06/24/19 22:28,"783 1st St, Boston, MA 02215" +214398,Bose SoundSport Headphones,1,99.99,06/07/19 12:16,"986 Lincoln St, Portland, ME 04101" +214399,AAA Batteries (4-pack),1,2.99,06/10/19 20:19,"699 13th St, Dallas, TX 75001" +214400,Flatscreen TV,1,300,06/24/19 22:03,"423 4th St, New York City, NY 10001" +214401,USB-C Charging Cable,1,11.95,06/10/19 21:45,"709 Chestnut St, Boston, MA 02215" +214402,27in FHD Monitor,1,149.99,06/27/19 08:47,"975 Highland St, Austin, TX 73301" +214403,Flatscreen TV,1,300,06/12/19 01:22,"213 Highland St, San Francisco, CA 94016" +214404,Lightning Charging Cable,1,14.95,06/01/19 17:56,"673 Jefferson St, New York City, NY 10001" +214405,Lightning Charging Cable,1,14.95,06/16/19 20:09,"392 Elm St, Portland, OR 97035" +214406,iPhone,1,700,06/04/19 10:39,"491 Chestnut St, Los Angeles, CA 90001" +214407,USB-C Charging Cable,1,11.95,06/18/19 22:12,"636 6th St, Los Angeles, CA 90001" +214408,AAA Batteries (4-pack),1,2.99,06/11/19 15:25,"504 Main St, Dallas, TX 75001" +214409,Apple Airpods Headphones,1,150,06/14/19 13:08,"668 8th St, San Francisco, CA 94016" +214410,Wired Headphones,1,11.99,06/12/19 11:03,"54 10th St, Dallas, TX 75001" +214411,AAA Batteries (4-pack),1,2.99,06/24/19 19:43,"228 Lake St, Portland, ME 04101" +214412,Apple Airpods Headphones,1,150,06/07/19 21:02,"371 River St, Atlanta, GA 30301" +214413,Lightning Charging Cable,1,14.95,06/01/19 18:26,"925 Sunset St, Boston, MA 02215" +214414,AA Batteries (4-pack),1,3.84,06/02/19 17:13,"122 Park St, San Francisco, CA 94016" +214414,AAA Batteries (4-pack),3,2.99,06/02/19 17:13,"122 Park St, San Francisco, CA 94016" +214415,Apple Airpods Headphones,1,150,06/23/19 15:57,"518 12th St, Los Angeles, CA 90001" +214416,Wired Headphones,1,11.99,06/12/19 17:15,"762 Washington St, Atlanta, GA 30301" +214417,Apple Airpods Headphones,1,150,06/05/19 17:34,"586 Dogwood St, Los Angeles, CA 90001" +214418,AA Batteries (4-pack),1,3.84,06/24/19 16:37,"117 Washington St, Austin, TX 73301" +214419,AAA Batteries (4-pack),2,2.99,06/10/19 05:54,"740 Forest St, San Francisco, CA 94016" +214420,Google Phone,1,600,06/07/19 16:44,"166 Meadow St, Seattle, WA 98101" +214421,Apple Airpods Headphones,1,150,06/14/19 22:50,"957 Willow St, San Francisco, CA 94016" +214422,USB-C Charging Cable,1,11.95,06/11/19 01:40,"778 Adams St, Seattle, WA 98101" +214423,Lightning Charging Cable,1,14.95,06/11/19 16:17,"215 Johnson St, Seattle, WA 98101" +214424,AAA Batteries (4-pack),2,2.99,06/29/19 08:54,"311 Lake St, San Francisco, CA 94016" +214425,Flatscreen TV,1,300,06/22/19 21:28,"822 Highland St, Boston, MA 02215" +214426,Lightning Charging Cable,1,14.95,06/18/19 14:14,"388 Adams St, Austin, TX 73301" +214427,AA Batteries (4-pack),1,3.84,06/21/19 20:34,"478 Meadow St, Atlanta, GA 30301" +214428,USB-C Charging Cable,2,11.95,06/22/19 22:01,"182 Johnson St, Atlanta, GA 30301" +214429,iPhone,1,700,06/25/19 18:46,"691 South St, Los Angeles, CA 90001" +214429,Lightning Charging Cable,1,14.95,06/25/19 18:46,"691 South St, Los Angeles, CA 90001" +214430,USB-C Charging Cable,1,11.95,06/01/19 03:30,"485 8th St, Atlanta, GA 30301" +214431,USB-C Charging Cable,1,11.95,06/15/19 11:58,"896 Adams St, Boston, MA 02215" +214432,LG Washing Machine,1,600.0,06/12/19 11:44,"880 Willow St, San Francisco, CA 94016" +214433,USB-C Charging Cable,1,11.95,06/26/19 11:47,"915 Lake St, Dallas, TX 75001" +214434,Wired Headphones,1,11.99,06/22/19 07:54,"715 Elm St, Dallas, TX 75001" +214435,Lightning Charging Cable,1,14.95,06/01/19 08:05,"162 4th St, Atlanta, GA 30301" +214436,Bose SoundSport Headphones,1,99.99,06/02/19 12:21,"35 Spruce St, Seattle, WA 98101" +214437,20in Monitor,1,109.99,06/16/19 20:57,"488 9th St, Atlanta, GA 30301" +214438,USB-C Charging Cable,1,11.95,06/17/19 18:18,"577 Jackson St, Boston, MA 02215" +214439,20in Monitor,1,109.99,06/02/19 21:26,"470 Wilson St, Dallas, TX 75001" +214440,Lightning Charging Cable,2,14.95,06/15/19 20:36,"382 1st St, San Francisco, CA 94016" +214441,Macbook Pro Laptop,1,1700,06/25/19 18:25,"238 Washington St, New York City, NY 10001" +214442,AA Batteries (4-pack),1,3.84,07/01/19 00:22,"796 Willow St, Portland, ME 04101" +214443,AA Batteries (4-pack),1,3.84,06/14/19 07:15,"677 Walnut St, New York City, NY 10001" +214444,Lightning Charging Cable,1,14.95,06/13/19 12:56,"798 Main St, San Francisco, CA 94016" +214445,Google Phone,1,600,06/20/19 13:07,"708 West St, New York City, NY 10001" +214446,27in 4K Gaming Monitor,1,389.99,06/29/19 16:57,"586 11th St, Seattle, WA 98101" +214447,Apple Airpods Headphones,1,150,06/18/19 12:24,"424 Spruce St, Dallas, TX 75001" +214448,Lightning Charging Cable,2,14.95,06/29/19 10:57,"51 Meadow St, San Francisco, CA 94016" +214449,27in FHD Monitor,1,149.99,06/28/19 10:48,"736 Johnson St, Portland, OR 97035" +214450,AAA Batteries (4-pack),1,2.99,06/14/19 20:28,"380 1st St, San Francisco, CA 94016" +214451,Wired Headphones,1,11.99,06/12/19 10:12,"760 Hill St, San Francisco, CA 94016" +214452,Wired Headphones,1,11.99,06/22/19 01:01,"978 Lake St, Los Angeles, CA 90001" +214453,AA Batteries (4-pack),1,3.84,06/11/19 12:38,"447 10th St, New York City, NY 10001" +214454,AAA Batteries (4-pack),2,2.99,06/06/19 17:39,"835 14th St, Portland, ME 04101" +214455,AAA Batteries (4-pack),3,2.99,06/12/19 13:51,"755 Johnson St, Los Angeles, CA 90001" +214456,27in FHD Monitor,1,149.99,06/03/19 20:02,"80 Cedar St, Boston, MA 02215" +214457,20in Monitor,1,109.99,06/26/19 21:45,"675 9th St, San Francisco, CA 94016" +214458,AAA Batteries (4-pack),2,2.99,06/09/19 19:28,"381 North St, New York City, NY 10001" +214459,AAA Batteries (4-pack),1,2.99,06/21/19 07:28,"957 Church St, Los Angeles, CA 90001" +214460,20in Monitor,1,109.99,06/24/19 14:02,"978 10th St, San Francisco, CA 94016" +214461,Vareebadd Phone,1,400,06/14/19 18:05,"433 Elm St, San Francisco, CA 94016" +214462,34in Ultrawide Monitor,1,379.99,06/26/19 13:19,"912 Elm St, Dallas, TX 75001" +214463,34in Ultrawide Monitor,1,379.99,06/02/19 20:24,"233 Jefferson St, Boston, MA 02215" +214464,iPhone,1,700,06/30/19 12:14,"848 Pine St, San Francisco, CA 94016" +214465,27in FHD Monitor,1,149.99,06/09/19 16:33,"292 Park St, San Francisco, CA 94016" +214466,Apple Airpods Headphones,1,150,06/01/19 10:49,"728 Johnson St, New York City, NY 10001" +214467,20in Monitor,1,109.99,06/08/19 20:39,"998 Johnson St, Dallas, TX 75001" +214468,USB-C Charging Cable,1,11.95,06/24/19 01:21,"788 West St, Los Angeles, CA 90001" +214469,ThinkPad Laptop,1,999.99,06/09/19 22:28,"232 Cedar St, Boston, MA 02215" +214470,AA Batteries (4-pack),1,3.84,06/11/19 23:49,"67 Wilson St, Austin, TX 73301" +214471,AAA Batteries (4-pack),3,2.99,06/01/19 21:59,"324 Dogwood St, Los Angeles, CA 90001" +214472,AAA Batteries (4-pack),2,2.99,06/12/19 00:12,"105 West St, Boston, MA 02215" +214473,Google Phone,1,600,06/08/19 06:59,"327 Lake St, Seattle, WA 98101" +214474,AAA Batteries (4-pack),1,2.99,06/10/19 10:49,"723 4th St, San Francisco, CA 94016" +214475,Wired Headphones,1,11.99,06/04/19 08:04,"268 Lake St, Austin, TX 73301" +214476,AAA Batteries (4-pack),1,2.99,06/15/19 15:45,"27 Cedar St, Los Angeles, CA 90001" +214477,Macbook Pro Laptop,1,1700,06/03/19 11:43,"659 Pine St, Austin, TX 73301" +214477,AA Batteries (4-pack),1,3.84,06/03/19 11:43,"659 Pine St, Austin, TX 73301" +214478,34in Ultrawide Monitor,1,379.99,06/05/19 10:32,"743 Sunset St, New York City, NY 10001" +214479,AAA Batteries (4-pack),1,2.99,06/02/19 21:59,"308 14th St, Austin, TX 73301" +214480,AAA Batteries (4-pack),2,2.99,06/17/19 14:41,"200 2nd St, Los Angeles, CA 90001" +214481,Bose SoundSport Headphones,1,99.99,06/28/19 14:04,"15 Lake St, Los Angeles, CA 90001" +214481,AAA Batteries (4-pack),1,2.99,06/28/19 14:04,"15 Lake St, Los Angeles, CA 90001" +214482,Lightning Charging Cable,1,14.95,06/16/19 22:50,"233 6th St, Austin, TX 73301" +214483,AA Batteries (4-pack),1,3.84,06/01/19 23:24,"366 Johnson St, San Francisco, CA 94016" +214484,Wired Headphones,1,11.99,06/11/19 22:50,"16 Dogwood St, San Francisco, CA 94016" +214485,USB-C Charging Cable,1,11.95,06/02/19 14:31,"992 Center St, Boston, MA 02215" +214486,USB-C Charging Cable,1,11.95,06/05/19 12:26,"202 Spruce St, Boston, MA 02215" +214487,34in Ultrawide Monitor,1,379.99,06/29/19 07:25,"204 Sunset St, San Francisco, CA 94016" +214488,Apple Airpods Headphones,1,150,06/19/19 22:24,"728 Johnson St, San Francisco, CA 94016" +214489,iPhone,1,700,06/28/19 06:56,"919 10th St, Dallas, TX 75001" +214490,AAA Batteries (4-pack),1,2.99,06/06/19 22:38,"817 Park St, Los Angeles, CA 90001" +214491,34in Ultrawide Monitor,1,379.99,06/22/19 11:52,"260 West St, Los Angeles, CA 90001" +214492,AA Batteries (4-pack),1,3.84,06/25/19 16:21,"739 Madison St, New York City, NY 10001" +214493,Bose SoundSport Headphones,1,99.99,06/25/19 02:09,"968 Willow St, Atlanta, GA 30301" +214494,Bose SoundSport Headphones,1,99.99,06/10/19 09:43,"616 Meadow St, Seattle, WA 98101" +214495,Flatscreen TV,1,300,06/19/19 15:45,"649 6th St, New York City, NY 10001" +214496,USB-C Charging Cable,1,11.95,06/20/19 11:30,"363 Lincoln St, Boston, MA 02215" +214497,Wired Headphones,1,11.99,06/26/19 21:42,"711 8th St, San Francisco, CA 94016" +214498,iPhone,1,700,06/18/19 18:28,"79 7th St, San Francisco, CA 94016" +214499,AA Batteries (4-pack),1,3.84,06/07/19 06:26,"715 Jefferson St, San Francisco, CA 94016" +214500,Bose SoundSport Headphones,1,99.99,06/08/19 12:21,"315 West St, Atlanta, GA 30301" +214501,Wired Headphones,1,11.99,06/27/19 18:47,"420 Elm St, New York City, NY 10001" +214502,27in FHD Monitor,1,149.99,06/10/19 09:32,"519 6th St, San Francisco, CA 94016" +214503,Bose SoundSport Headphones,1,99.99,06/12/19 22:36,"970 5th St, San Francisco, CA 94016" +214504,AA Batteries (4-pack),1,3.84,06/05/19 15:32,"700 Sunset St, Seattle, WA 98101" +214505,Apple Airpods Headphones,1,150,06/02/19 18:13,"505 Madison St, Portland, OR 97035" +214506,Wired Headphones,1,11.99,06/19/19 17:32,"528 North St, Los Angeles, CA 90001" +214507,27in 4K Gaming Monitor,1,389.99,06/23/19 13:07,"75 Ridge St, Boston, MA 02215" +214508,34in Ultrawide Monitor,1,379.99,06/15/19 20:22,"833 8th St, New York City, NY 10001" +214509,USB-C Charging Cable,1,11.95,06/02/19 10:48,"877 7th St, Dallas, TX 75001" +214510,ThinkPad Laptop,1,999.99,06/28/19 19:28,"889 Walnut St, San Francisco, CA 94016" +214511,Apple Airpods Headphones,1,150,06/22/19 09:01,"976 Lakeview St, Boston, MA 02215" +214512,AA Batteries (4-pack),1,3.84,06/20/19 12:50,"870 10th St, Los Angeles, CA 90001" +214513,Lightning Charging Cable,1,14.95,06/15/19 07:48,"835 Walnut St, Seattle, WA 98101" +214514,Wired Headphones,1,11.99,06/25/19 18:49,"138 Jackson St, Dallas, TX 75001" +214515,27in 4K Gaming Monitor,1,389.99,06/04/19 12:12,"216 4th St, Los Angeles, CA 90001" +214516,AAA Batteries (4-pack),1,2.99,06/18/19 23:11,"777 9th St, San Francisco, CA 94016" +214517,Wired Headphones,1,11.99,06/11/19 20:43,"685 12th St, San Francisco, CA 94016" +214518,USB-C Charging Cable,1,11.95,06/11/19 12:23,"939 Lakeview St, Portland, OR 97035" +214519,AAA Batteries (4-pack),2,2.99,06/21/19 10:26,"109 Main St, Austin, TX 73301" +214520,Wired Headphones,1,11.99,06/10/19 17:15,"807 Main St, New York City, NY 10001" +214521,Apple Airpods Headphones,1,150,06/09/19 10:10,"146 Washington St, Boston, MA 02215" +214522,Apple Airpods Headphones,1,150,06/15/19 19:27,"418 1st St, San Francisco, CA 94016" +214523,iPhone,1,700,06/16/19 16:25,"240 Hill St, Dallas, TX 75001" +214524,USB-C Charging Cable,1,11.95,06/10/19 11:36,"10 River St, San Francisco, CA 94016" +214525,Apple Airpods Headphones,1,150,06/24/19 19:57,"582 Lake St, Dallas, TX 75001" +,,,,, +214526,AA Batteries (4-pack),1,3.84,06/27/19 12:29,"246 Sunset St, Boston, MA 02215" +214527,USB-C Charging Cable,1,11.95,06/02/19 17:10,"176 12th St, Los Angeles, CA 90001" +214528,Wired Headphones,1,11.99,06/28/19 11:28,"773 Main St, Boston, MA 02215" +214529,AAA Batteries (4-pack),2,2.99,06/27/19 12:49,"901 8th St, Atlanta, GA 30301" +214530,AA Batteries (4-pack),2,3.84,06/29/19 12:35,"587 Park St, Los Angeles, CA 90001" +214531,Lightning Charging Cable,1,14.95,06/05/19 12:53,"430 Hill St, San Francisco, CA 94016" +214532,Bose SoundSport Headphones,1,99.99,06/03/19 14:39,"969 14th St, Austin, TX 73301" +214533,USB-C Charging Cable,1,11.95,06/26/19 10:03,"951 Jefferson St, Atlanta, GA 30301" +214534,Flatscreen TV,1,300,06/07/19 23:17,"401 Madison St, Dallas, TX 75001" +214535,USB-C Charging Cable,1,11.95,06/25/19 10:13,"296 Hickory St, Atlanta, GA 30301" +214536,Apple Airpods Headphones,1,150,06/27/19 17:29,"115 Jefferson St, Atlanta, GA 30301" +214537,ThinkPad Laptop,1,999.99,06/13/19 18:39,"344 Center St, San Francisco, CA 94016" +214538,AAA Batteries (4-pack),2,2.99,06/08/19 10:22,"431 6th St, Atlanta, GA 30301" +214539,AAA Batteries (4-pack),3,2.99,06/16/19 20:32,"320 Washington St, Austin, TX 73301" +214540,AA Batteries (4-pack),2,3.84,06/12/19 00:05,"300 14th St, New York City, NY 10001" +214541,Apple Airpods Headphones,1,150,06/26/19 06:39,"720 Washington St, New York City, NY 10001" +214542,AA Batteries (4-pack),1,3.84,06/21/19 02:33,"604 North St, Los Angeles, CA 90001" +214543,Vareebadd Phone,1,400,06/18/19 20:16,"622 1st St, Los Angeles, CA 90001" +214544,27in FHD Monitor,1,149.99,06/25/19 17:29,"160 Jackson St, Portland, OR 97035" +214545,LG Dryer,1,600.0,06/04/19 23:12,"983 7th St, San Francisco, CA 94016" +214546,iPhone,1,700,06/13/19 13:28,"60 Sunset St, Dallas, TX 75001" +214547,Flatscreen TV,1,300,06/18/19 21:32,"196 Washington St, New York City, NY 10001" +214548,Macbook Pro Laptop,1,1700,06/19/19 21:32,"299 Adams St, Los Angeles, CA 90001" +214549,AAA Batteries (4-pack),2,2.99,06/02/19 14:07,"155 Hill St, San Francisco, CA 94016" +214550,AA Batteries (4-pack),2,3.84,06/16/19 14:20,"677 Hill St, Los Angeles, CA 90001" +214551,AAA Batteries (4-pack),2,2.99,06/16/19 09:05,"877 Madison St, San Francisco, CA 94016" +214552,Lightning Charging Cable,1,14.95,06/10/19 14:15,"576 5th St, New York City, NY 10001" +214553,USB-C Charging Cable,1,11.95,06/21/19 19:21,"541 Madison St, New York City, NY 10001" +214554,Bose SoundSport Headphones,1,99.99,06/12/19 15:43,"262 South St, Dallas, TX 75001" +214555,Wired Headphones,1,11.99,06/26/19 08:03,"555 11th St, San Francisco, CA 94016" +214556,AAA Batteries (4-pack),2,2.99,06/05/19 06:06,"309 Maple St, San Francisco, CA 94016" +214557,Wired Headphones,2,11.99,06/12/19 12:29,"712 Lake St, San Francisco, CA 94016" +214558,Lightning Charging Cable,1,14.95,06/25/19 18:01,"772 4th St, Atlanta, GA 30301" +214559,AAA Batteries (4-pack),1,2.99,06/16/19 19:01,"810 Center St, San Francisco, CA 94016" +214560,AAA Batteries (4-pack),2,2.99,06/22/19 20:19,"533 Chestnut St, San Francisco, CA 94016" +214561,Wired Headphones,1,11.99,06/28/19 13:35,"171 Madison St, Seattle, WA 98101" +214562,AAA Batteries (4-pack),2,2.99,06/13/19 12:15,"680 5th St, New York City, NY 10001" +214563,Wired Headphones,1,11.99,06/01/19 14:03,"862 9th St, Atlanta, GA 30301" +214564,AA Batteries (4-pack),2,3.84,06/12/19 21:57,"257 Wilson St, San Francisco, CA 94016" +214565,Bose SoundSport Headphones,1,99.99,06/16/19 18:26,"54 Elm St, Austin, TX 73301" +214566,Vareebadd Phone,2,400,06/22/19 15:52,"554 9th St, Los Angeles, CA 90001" +214567,Lightning Charging Cable,1,14.95,06/14/19 23:16,"129 5th St, New York City, NY 10001" +214568,27in FHD Monitor,1,149.99,06/09/19 20:25,"733 2nd St, Boston, MA 02215" +214569,AA Batteries (4-pack),1,3.84,06/13/19 13:13,"15 1st St, San Francisco, CA 94016" +214570,USB-C Charging Cable,1,11.95,06/10/19 14:07,"881 Pine St, Seattle, WA 98101" +214571,AAA Batteries (4-pack),1,2.99,06/30/19 10:46,"522 River St, Seattle, WA 98101" +214572,Lightning Charging Cable,1,14.95,06/21/19 20:15,"532 Main St, Boston, MA 02215" +214573,Lightning Charging Cable,1,14.95,06/03/19 19:51,"285 Cedar St, San Francisco, CA 94016" +214574,USB-C Charging Cable,2,11.95,06/30/19 15:34,"533 8th St, San Francisco, CA 94016" +214575,AAA Batteries (4-pack),3,2.99,06/07/19 13:58,"770 Lincoln St, Boston, MA 02215" +214576,Google Phone,1,600,06/05/19 00:56,"444 Park St, San Francisco, CA 94016" +214576,USB-C Charging Cable,1,11.95,06/05/19 00:56,"444 Park St, San Francisco, CA 94016" +214577,Wired Headphones,1,11.99,06/29/19 20:03,"608 Main St, Boston, MA 02215" +214578,AAA Batteries (4-pack),1,2.99,06/18/19 23:03,"780 9th St, San Francisco, CA 94016" +214579,USB-C Charging Cable,1,11.95,06/27/19 09:18,"896 River St, New York City, NY 10001" +214580,27in FHD Monitor,1,149.99,06/25/19 21:11,"860 7th St, San Francisco, CA 94016" +214581,AA Batteries (4-pack),1,3.84,06/07/19 23:04,"92 Jefferson St, Atlanta, GA 30301" +214582,AA Batteries (4-pack),3,3.84,06/30/19 15:24,"241 14th St, Dallas, TX 75001" +214583,USB-C Charging Cable,1,11.95,06/30/19 18:51,"309 Dogwood St, Los Angeles, CA 90001" +214584,Bose SoundSport Headphones,1,99.99,06/08/19 02:12,"676 Johnson St, Atlanta, GA 30301" +214585,USB-C Charging Cable,1,11.95,06/11/19 18:07,"160 Adams St, San Francisco, CA 94016" +214586,USB-C Charging Cable,1,11.95,06/25/19 19:42,"321 Hill St, Dallas, TX 75001" +214587,Wired Headphones,1,11.99,06/09/19 18:34,"130 11th St, Los Angeles, CA 90001" +214588,AA Batteries (4-pack),1,3.84,06/05/19 12:38,"495 Jefferson St, Los Angeles, CA 90001" +214589,Wired Headphones,1,11.99,06/24/19 07:10,"2 Adams St, San Francisco, CA 94016" +214590,USB-C Charging Cable,2,11.95,06/09/19 18:22,"167 Lincoln St, Boston, MA 02215" +214591,Lightning Charging Cable,1,14.95,06/17/19 10:31,"944 Cherry St, Atlanta, GA 30301" +214592,AAA Batteries (4-pack),1,2.99,06/28/19 18:34,"840 2nd St, Seattle, WA 98101" +214593,AA Batteries (4-pack),2,3.84,06/15/19 22:20,"240 Pine St, Atlanta, GA 30301" +214594,ThinkPad Laptop,1,999.99,06/16/19 13:58,"246 Elm St, Dallas, TX 75001" +214595,ThinkPad Laptop,1,999.99,06/14/19 11:44,"745 Church St, Los Angeles, CA 90001" +214596,Macbook Pro Laptop,1,1700,06/18/19 13:27,"715 Cedar St, Seattle, WA 98101" +214597,USB-C Charging Cable,1,11.95,06/03/19 09:38,"744 Washington St, San Francisco, CA 94016" +214598,Apple Airpods Headphones,1,150,06/02/19 19:02,"292 Johnson St, Dallas, TX 75001" +214598,Google Phone,1,600,06/02/19 19:02,"292 Johnson St, Dallas, TX 75001" +214599,ThinkPad Laptop,1,999.99,06/26/19 13:21,"993 Elm St, Los Angeles, CA 90001" +214600,Apple Airpods Headphones,1,150,06/11/19 12:58,"939 2nd St, Austin, TX 73301" +214601,AA Batteries (4-pack),1,3.84,06/11/19 09:12,"60 12th St, San Francisco, CA 94016" +214602,Apple Airpods Headphones,1,150,06/14/19 14:01,"603 Hickory St, Dallas, TX 75001" +214603,27in 4K Gaming Monitor,1,389.99,06/24/19 07:08,"112 Dogwood St, San Francisco, CA 94016" +214603,Bose SoundSport Headphones,1,99.99,06/24/19 07:08,"112 Dogwood St, San Francisco, CA 94016" +214604,Apple Airpods Headphones,1,150,06/27/19 13:57,"430 10th St, Atlanta, GA 30301" +214605,Lightning Charging Cable,1,14.95,06/18/19 20:30,"398 8th St, Seattle, WA 98101" +214606,USB-C Charging Cable,1,11.95,06/05/19 09:55,"160 Forest St, Los Angeles, CA 90001" +214607,34in Ultrawide Monitor,1,379.99,06/30/19 21:03,"983 Hickory St, Los Angeles, CA 90001" +214608,Lightning Charging Cable,1,14.95,06/24/19 18:46,"643 Forest St, Boston, MA 02215" +214609,Macbook Pro Laptop,1,1700,06/23/19 08:29,"383 Church St, New York City, NY 10001" +214610,USB-C Charging Cable,1,11.95,06/14/19 11:34,"529 8th St, New York City, NY 10001" +214611,AA Batteries (4-pack),1,3.84,06/15/19 10:43,"57 Park St, Los Angeles, CA 90001" +214612,Wired Headphones,1,11.99,06/10/19 16:17,"470 Washington St, Los Angeles, CA 90001" +214613,Bose SoundSport Headphones,1,99.99,06/08/19 08:22,"385 1st St, Dallas, TX 75001" +214614,Lightning Charging Cable,2,14.95,06/28/19 22:19,"553 Lake St, Los Angeles, CA 90001" +214615,27in 4K Gaming Monitor,1,389.99,06/28/19 12:33,"807 1st St, San Francisco, CA 94016" +214616,AA Batteries (4-pack),1,3.84,06/12/19 19:19,"782 Chestnut St, Boston, MA 02215" +214617,Macbook Pro Laptop,1,1700,06/24/19 19:25,"315 West St, Seattle, WA 98101" +214618,Macbook Pro Laptop,1,1700,06/02/19 00:30,"988 Center St, San Francisco, CA 94016" +214619,Bose SoundSport Headphones,1,99.99,06/24/19 12:55,"269 2nd St, San Francisco, CA 94016" +214620,Lightning Charging Cable,1,14.95,06/27/19 14:36,"502 South St, San Francisco, CA 94016" +214621,Apple Airpods Headphones,1,150,06/07/19 08:31,"691 Sunset St, Boston, MA 02215" +214622,AA Batteries (4-pack),1,3.84,06/19/19 08:25,"520 8th St, Atlanta, GA 30301" +214623,Lightning Charging Cable,1,14.95,06/15/19 22:08,"890 Maple St, Atlanta, GA 30301" +214624,20in Monitor,1,109.99,06/04/19 19:58,"989 12th St, San Francisco, CA 94016" +214625,AA Batteries (4-pack),2,3.84,06/20/19 17:56,"226 Main St, San Francisco, CA 94016" +214626,Apple Airpods Headphones,1,150,06/22/19 14:47,"329 River St, Dallas, TX 75001" +214627,AAA Batteries (4-pack),2,2.99,06/10/19 11:23,"751 Chestnut St, Los Angeles, CA 90001" +214628,Google Phone,1,600,06/29/19 19:24,"65 Cherry St, Los Angeles, CA 90001" +214629,27in FHD Monitor,1,149.99,06/13/19 18:51,"298 5th St, New York City, NY 10001" +214630,USB-C Charging Cable,1,11.95,06/13/19 07:59,"579 Forest St, Boston, MA 02215" +214631,27in FHD Monitor,1,149.99,06/01/19 11:11,"671 8th St, New York City, NY 10001" +214632,AA Batteries (4-pack),2,3.84,06/06/19 19:48,"405 Jefferson St, Los Angeles, CA 90001" +214633,AA Batteries (4-pack),1,3.84,06/16/19 08:41,"604 West St, New York City, NY 10001" +214634,Apple Airpods Headphones,1,150,06/06/19 08:59,"116 Hill St, New York City, NY 10001" +214635,Flatscreen TV,1,300,06/19/19 13:19,"665 Lakeview St, Austin, TX 73301" +214636,Lightning Charging Cable,1,14.95,06/28/19 20:50,"674 2nd St, San Francisco, CA 94016" +214637,Apple Airpods Headphones,1,150,06/07/19 16:36,"617 Ridge St, New York City, NY 10001" +214638,34in Ultrawide Monitor,1,379.99,06/10/19 20:50,"242 Hickory St, San Francisco, CA 94016" +214639,20in Monitor,1,109.99,06/30/19 22:07,"374 Dogwood St, Seattle, WA 98101" +214640,USB-C Charging Cable,1,11.95,06/04/19 14:10,"576 7th St, Seattle, WA 98101" +214641,AA Batteries (4-pack),1,3.84,06/12/19 12:08,"738 Cherry St, Los Angeles, CA 90001" +214642,USB-C Charging Cable,1,11.95,06/21/19 11:52,"74 Willow St, San Francisco, CA 94016" +214643,AAA Batteries (4-pack),1,2.99,06/28/19 17:44,"912 5th St, New York City, NY 10001" +214644,USB-C Charging Cable,2,11.95,06/18/19 01:12,"56 Sunset St, Los Angeles, CA 90001" +214645,USB-C Charging Cable,1,11.95,06/06/19 11:22,"787 Hill St, Boston, MA 02215" +214646,AA Batteries (4-pack),1,3.84,06/02/19 20:59,"514 Hill St, Portland, OR 97035" +214647,Lightning Charging Cable,1,14.95,06/08/19 20:51,"445 Cherry St, Los Angeles, CA 90001" +214648,AAA Batteries (4-pack),1,2.99,06/08/19 12:10,"438 Lincoln St, Dallas, TX 75001" +214649,USB-C Charging Cable,1,11.95,06/22/19 18:50,"303 Main St, Seattle, WA 98101" +214650,Apple Airpods Headphones,1,150,06/07/19 22:21,"746 Maple St, New York City, NY 10001" +214651,Bose SoundSport Headphones,1,99.99,06/13/19 16:19,"958 West St, Atlanta, GA 30301" +214652,Lightning Charging Cable,1,14.95,06/17/19 17:09,"761 Hickory St, Dallas, TX 75001" +214653,Apple Airpods Headphones,1,150,06/06/19 05:31,"774 Hill St, San Francisco, CA 94016" +214654,AA Batteries (4-pack),1,3.84,06/26/19 09:13,"989 13th St, Portland, OR 97035" +214655,Wired Headphones,1,11.99,06/25/19 11:50,"441 1st St, Atlanta, GA 30301" +214656,AAA Batteries (4-pack),1,2.99,06/26/19 12:25,"959 Jefferson St, Dallas, TX 75001" +214657,Apple Airpods Headphones,1,150,06/16/19 13:32,"5 Cherry St, Seattle, WA 98101" +214658,AAA Batteries (4-pack),1,2.99,06/07/19 10:37,"93 Main St, San Francisco, CA 94016" +214659,AA Batteries (4-pack),1,3.84,06/18/19 23:12,"694 4th St, Los Angeles, CA 90001" +214660,Wired Headphones,1,11.99,06/16/19 20:52,"72 8th St, Portland, ME 04101" +214661,ThinkPad Laptop,1,999.99,06/26/19 10:31,"55 Adams St, Los Angeles, CA 90001" +214662,AAA Batteries (4-pack),3,2.99,06/17/19 10:10,"156 5th St, Boston, MA 02215" +214663,USB-C Charging Cable,1,11.95,06/08/19 12:54,"407 Jackson St, San Francisco, CA 94016" +214664,USB-C Charging Cable,1,11.95,06/22/19 05:05,"184 Elm St, San Francisco, CA 94016" +214665,Wired Headphones,1,11.99,06/23/19 13:31,"803 Elm St, Los Angeles, CA 90001" +214666,Macbook Pro Laptop,1,1700,06/08/19 11:05,"579 Pine St, New York City, NY 10001" +214667,USB-C Charging Cable,1,11.95,06/13/19 19:16,"579 12th St, Boston, MA 02215" +214668,Bose SoundSport Headphones,1,99.99,06/22/19 19:26,"93 Willow St, San Francisco, CA 94016" +214669,Lightning Charging Cable,1,14.95,06/09/19 08:52,"228 14th St, Boston, MA 02215" +214670,Lightning Charging Cable,1,14.95,06/15/19 09:05,"164 5th St, Dallas, TX 75001" +214671,Macbook Pro Laptop,1,1700,06/22/19 11:48,"435 Washington St, Portland, ME 04101" +214672,Wired Headphones,1,11.99,06/14/19 18:18,"574 4th St, San Francisco, CA 94016" +214673,Bose SoundSport Headphones,1,99.99,06/07/19 02:33,"335 Lincoln St, Los Angeles, CA 90001" +214674,Lightning Charging Cable,1,14.95,06/25/19 10:42,"792 Lincoln St, San Francisco, CA 94016" +214675,Bose SoundSport Headphones,1,99.99,06/14/19 18:14,"348 Cedar St, Los Angeles, CA 90001" +214676,Bose SoundSport Headphones,1,99.99,06/15/19 17:36,"981 West St, Boston, MA 02215" +214677,AA Batteries (4-pack),1,3.84,06/22/19 08:54,"833 Wilson St, San Francisco, CA 94016" +214678,Lightning Charging Cable,1,14.95,06/01/19 15:08,"463 10th St, Seattle, WA 98101" +214679,34in Ultrawide Monitor,1,379.99,06/19/19 22:26,"199 8th St, San Francisco, CA 94016" +214680,Bose SoundSport Headphones,1,99.99,06/26/19 20:46,"132 South St, San Francisco, CA 94016" +214681,AA Batteries (4-pack),1,3.84,06/18/19 13:20,"939 Hickory St, Boston, MA 02215" +214682,AAA Batteries (4-pack),1,2.99,06/04/19 03:42,"848 Hill St, Seattle, WA 98101" +214683,iPhone,1,700,06/14/19 07:55,"471 Chestnut St, New York City, NY 10001" +214684,Bose SoundSport Headphones,1,99.99,06/09/19 13:48,"772 Wilson St, Los Angeles, CA 90001" +214685,Wired Headphones,1,11.99,06/03/19 10:08,"282 Ridge St, Atlanta, GA 30301" +214686,Flatscreen TV,1,300,06/23/19 22:30,"42 Maple St, Los Angeles, CA 90001" +214687,Macbook Pro Laptop,1,1700,06/24/19 11:49,"320 West St, Portland, OR 97035" +214688,Bose SoundSport Headphones,1,99.99,06/11/19 14:47,"203 Meadow St, San Francisco, CA 94016" +214689,AAA Batteries (4-pack),1,2.99,06/10/19 17:12,"884 14th St, San Francisco, CA 94016" +214690,Apple Airpods Headphones,1,150,06/22/19 09:41,"347 2nd St, San Francisco, CA 94016" +214691,Wired Headphones,1,11.99,06/13/19 09:01,"460 8th St, San Francisco, CA 94016" +214692,Vareebadd Phone,1,400,06/01/19 17:28,"564 Cherry St, Los Angeles, CA 90001" +214692,Bose SoundSport Headphones,1,99.99,06/01/19 17:28,"564 Cherry St, Los Angeles, CA 90001" +214693,AAA Batteries (4-pack),3,2.99,06/20/19 15:37,"748 5th St, Atlanta, GA 30301" +214694,Google Phone,1,600,06/27/19 12:15,"41 6th St, San Francisco, CA 94016" +214695,Lightning Charging Cable,1,14.95,06/27/19 09:46,"811 Elm St, New York City, NY 10001" +214696,Bose SoundSport Headphones,1,99.99,06/24/19 16:46,"446 8th St, San Francisco, CA 94016" +214697,AAA Batteries (4-pack),1,2.99,06/29/19 11:45,"831 Main St, Boston, MA 02215" +214698,Lightning Charging Cable,1,14.95,06/23/19 02:28,"384 Dogwood St, Los Angeles, CA 90001" +214699,AAA Batteries (4-pack),1,2.99,06/06/19 19:51,"771 Center St, Seattle, WA 98101" +214700,Bose SoundSport Headphones,1,99.99,06/19/19 17:05,"605 2nd St, New York City, NY 10001" +214701,USB-C Charging Cable,1,11.95,06/07/19 19:46,"494 4th St, San Francisco, CA 94016" +214702,Wired Headphones,1,11.99,06/09/19 01:56,"210 Cherry St, Boston, MA 02215" +214703,Lightning Charging Cable,1,14.95,06/23/19 17:30,"521 Jackson St, New York City, NY 10001" +214704,Wired Headphones,1,11.99,06/26/19 17:49,"845 4th St, Atlanta, GA 30301" +214705,Bose SoundSport Headphones,1,99.99,06/08/19 07:09,"487 South St, Los Angeles, CA 90001" +214706,AAA Batteries (4-pack),1,2.99,06/22/19 22:40,"162 Highland St, Seattle, WA 98101" +214707,AAA Batteries (4-pack),1,2.99,06/25/19 17:44,"58 Cedar St, Atlanta, GA 30301" +214708,Apple Airpods Headphones,1,150,06/20/19 23:32,"402 Elm St, San Francisco, CA 94016" +214709,USB-C Charging Cable,1,11.95,06/02/19 09:04,"812 14th St, Portland, OR 97035" +214710,USB-C Charging Cable,1,11.95,06/10/19 12:27,"75 1st St, Boston, MA 02215" +214711,AAA Batteries (4-pack),1,2.99,06/29/19 09:16,"993 14th St, San Francisco, CA 94016" +214712,Google Phone,1,600,06/23/19 11:56,"436 Forest St, San Francisco, CA 94016" +214712,USB-C Charging Cable,1,11.95,06/23/19 11:56,"436 Forest St, San Francisco, CA 94016" +214712,Wired Headphones,1,11.99,06/23/19 11:56,"436 Forest St, San Francisco, CA 94016" +214713,Wired Headphones,1,11.99,06/12/19 20:57,"957 Meadow St, Los Angeles, CA 90001" +214714,27in FHD Monitor,1,149.99,06/06/19 20:18,"643 Cedar St, New York City, NY 10001" +214715,USB-C Charging Cable,1,11.95,06/17/19 17:44,"663 Highland St, Boston, MA 02215" +214716,Wired Headphones,2,11.99,06/25/19 11:17,"535 Washington St, Boston, MA 02215" +214717,AAA Batteries (4-pack),1,2.99,06/05/19 14:21,"362 Washington St, Los Angeles, CA 90001" +214718,Wired Headphones,1,11.99,06/06/19 10:48,"215 Highland St, Dallas, TX 75001" +214719,Wired Headphones,1,11.99,06/18/19 21:01,"46 1st St, Los Angeles, CA 90001" +214720,AA Batteries (4-pack),1,3.84,06/27/19 12:15,"98 14th St, Dallas, TX 75001" +214721,ThinkPad Laptop,1,999.99,06/06/19 18:05,"479 Lakeview St, Los Angeles, CA 90001" +214721,Google Phone,1,600,06/06/19 18:05,"479 Lakeview St, Los Angeles, CA 90001" +214722,AA Batteries (4-pack),1,3.84,06/03/19 12:54,"845 Jefferson St, New York City, NY 10001" +214723,Wired Headphones,1,11.99,06/19/19 12:03,"174 9th St, Seattle, WA 98101" +214724,Bose SoundSport Headphones,1,99.99,06/17/19 19:01,"43 Pine St, Boston, MA 02215" +214725,Bose SoundSport Headphones,1,99.99,06/15/19 11:19,"981 Hill St, Los Angeles, CA 90001" +214726,AA Batteries (4-pack),1,3.84,06/10/19 17:45,"375 Madison St, Boston, MA 02215" +214727,Wired Headphones,1,11.99,06/24/19 18:35,"989 8th St, Austin, TX 73301" +214728,Macbook Pro Laptop,1,1700,06/28/19 11:07,"151 Meadow St, Los Angeles, CA 90001" +214729,ThinkPad Laptop,1,999.99,06/25/19 14:26,"17 1st St, Austin, TX 73301" +214730,Wired Headphones,1,11.99,06/12/19 20:00,"202 11th St, San Francisco, CA 94016" +214731,Wired Headphones,1,11.99,06/04/19 19:10,"80 Church St, Portland, OR 97035" +214732,USB-C Charging Cable,1,11.95,06/27/19 11:53,"846 1st St, San Francisco, CA 94016" +214733,AAA Batteries (4-pack),1,2.99,06/11/19 11:56,"663 7th St, Los Angeles, CA 90001" +214734,Bose SoundSport Headphones,1,99.99,06/19/19 10:51,"647 Center St, Seattle, WA 98101" +214735,AAA Batteries (4-pack),1,2.99,06/06/19 10:02,"226 10th St, San Francisco, CA 94016" +214736,Apple Airpods Headphones,1,150,06/19/19 16:25,"545 North St, Los Angeles, CA 90001" +214737,iPhone,1,700,06/01/19 23:31,"988 Willow St, Austin, TX 73301" +214738,Macbook Pro Laptop,1,1700,06/07/19 10:50,"594 6th St, San Francisco, CA 94016" +214739,34in Ultrawide Monitor,1,379.99,06/17/19 08:56,"136 Cherry St, New York City, NY 10001" +214740,AA Batteries (4-pack),1,3.84,06/19/19 17:04,"875 Walnut St, Los Angeles, CA 90001" +214741,Google Phone,1,600,06/09/19 17:31,"837 Center St, Austin, TX 73301" +214741,USB-C Charging Cable,1,11.95,06/09/19 17:31,"837 Center St, Austin, TX 73301" +214742,AAA Batteries (4-pack),2,2.99,06/19/19 12:05,"836 Main St, Los Angeles, CA 90001" +214743,27in 4K Gaming Monitor,1,389.99,06/19/19 18:54,"788 Center St, Los Angeles, CA 90001" +214744,Wired Headphones,1,11.99,06/02/19 17:46,"520 Sunset St, Seattle, WA 98101" +214745,USB-C Charging Cable,1,11.95,06/02/19 13:50,"371 6th St, Atlanta, GA 30301" +214746,Apple Airpods Headphones,1,150,06/06/19 17:17,"124 Wilson St, San Francisco, CA 94016" +214747,Wired Headphones,1,11.99,06/05/19 23:18,"436 7th St, Boston, MA 02215" +214748,AA Batteries (4-pack),1,3.84,06/10/19 14:22,"119 West St, San Francisco, CA 94016" +214749,Lightning Charging Cable,1,14.95,06/01/19 16:29,"471 Cedar St, Dallas, TX 75001" +214750,ThinkPad Laptop,1,999.99,06/17/19 20:10,"249 Walnut St, Los Angeles, CA 90001" +214751,AAA Batteries (4-pack),1,2.99,06/21/19 18:01,"418 8th St, Boston, MA 02215" +214752,Google Phone,1,600,06/04/19 20:31,"416 1st St, Boston, MA 02215" +214753,Google Phone,1,600,06/30/19 22:08,"781 North St, Los Angeles, CA 90001" +214754,AAA Batteries (4-pack),1,2.99,06/27/19 00:10,"225 13th St, Atlanta, GA 30301" +214755,AA Batteries (4-pack),2,3.84,06/12/19 18:35,"61 Johnson St, Dallas, TX 75001" +214756,Macbook Pro Laptop,1,1700,06/14/19 18:26,"134 7th St, Seattle, WA 98101" +214757,20in Monitor,1,109.99,06/22/19 15:56,"120 13th St, Dallas, TX 75001" +214758,Apple Airpods Headphones,1,150,06/29/19 19:17,"764 Church St, New York City, NY 10001" +214759,AAA Batteries (4-pack),1,2.99,06/07/19 12:34,"586 1st St, San Francisco, CA 94016" +214760,Lightning Charging Cable,1,14.95,06/28/19 21:24,"412 1st St, Boston, MA 02215" +214761,Bose SoundSport Headphones,1,99.99,06/25/19 14:59,"465 Lincoln St, Los Angeles, CA 90001" +214762,AAA Batteries (4-pack),1,2.99,06/21/19 23:38,"383 Church St, Boston, MA 02215" +214763,Wired Headphones,1,11.99,06/24/19 14:08,"597 Adams St, Austin, TX 73301" +214764,Lightning Charging Cable,1,14.95,06/29/19 15:18,"51 West St, San Francisco, CA 94016" +214765,AA Batteries (4-pack),1,3.84,06/09/19 01:04,"889 Spruce St, San Francisco, CA 94016" +214766,Bose SoundSport Headphones,1,99.99,06/24/19 20:09,"769 6th St, Atlanta, GA 30301" +214767,AAA Batteries (4-pack),3,2.99,06/21/19 21:29,"312 11th St, Dallas, TX 75001" +214768,Wired Headphones,1,11.99,06/25/19 19:33,"966 Church St, Austin, TX 73301" +214769,ThinkPad Laptop,1,999.99,06/14/19 18:18,"879 Ridge St, Portland, ME 04101" +214770,AAA Batteries (4-pack),1,2.99,06/14/19 21:27,"205 Forest St, Los Angeles, CA 90001" +214770,Macbook Pro Laptop,1,1700,06/14/19 21:27,"205 Forest St, Los Angeles, CA 90001" +214771,Apple Airpods Headphones,1,150,06/05/19 14:48,"53 Adams St, San Francisco, CA 94016" +214772,Lightning Charging Cable,1,14.95,06/23/19 09:01,"527 14th St, Atlanta, GA 30301" +214773,AAA Batteries (4-pack),1,2.99,06/15/19 10:17,"633 8th St, Seattle, WA 98101" +214774,USB-C Charging Cable,2,11.95,06/18/19 06:09,"308 Wilson St, Seattle, WA 98101" +214775,27in 4K Gaming Monitor,1,389.99,06/19/19 13:24,"918 Hill St, Dallas, TX 75001" +214776,Bose SoundSport Headphones,1,99.99,06/03/19 19:10,"41 8th St, San Francisco, CA 94016" +214777,Google Phone,1,600,06/13/19 13:20,"139 14th St, Boston, MA 02215" +214777,USB-C Charging Cable,1,11.95,06/13/19 13:20,"139 14th St, Boston, MA 02215" +214778,AAA Batteries (4-pack),2,2.99,06/22/19 19:31,"521 Jefferson St, New York City, NY 10001" +214779,Macbook Pro Laptop,1,1700,06/20/19 12:19,"320 9th St, Austin, TX 73301" +214780,Wired Headphones,1,11.99,06/28/19 20:29,"580 North St, San Francisco, CA 94016" +214781,27in FHD Monitor,1,149.99,06/17/19 16:08,"774 Highland St, Boston, MA 02215" +214782,iPhone,1,700,06/20/19 20:36,"734 Forest St, Atlanta, GA 30301" +214782,Lightning Charging Cable,1,14.95,06/20/19 20:36,"734 Forest St, Atlanta, GA 30301" +214783,iPhone,1,700,06/30/19 14:46,"430 7th St, San Francisco, CA 94016" +214784,USB-C Charging Cable,1,11.95,06/10/19 20:00,"720 South St, Los Angeles, CA 90001" +214785,AA Batteries (4-pack),2,3.84,06/14/19 02:50,"598 Forest St, Boston, MA 02215" +214786,AAA Batteries (4-pack),1,2.99,06/10/19 10:14,"206 8th St, Atlanta, GA 30301" +214787,USB-C Charging Cable,1,11.95,06/07/19 08:02,"801 10th St, Dallas, TX 75001" +214788,34in Ultrawide Monitor,1,379.99,06/22/19 11:52,"688 Jackson St, San Francisco, CA 94016" +214789,Bose SoundSport Headphones,1,99.99,06/26/19 00:37,"42 Pine St, Austin, TX 73301" +214790,Bose SoundSport Headphones,1,99.99,06/30/19 11:19,"53 Spruce St, New York City, NY 10001" +214791,20in Monitor,1,109.99,06/21/19 15:23,"431 Elm St, San Francisco, CA 94016" +214792,Google Phone,1,600,06/29/19 15:57,"843 5th St, Los Angeles, CA 90001" +214793,USB-C Charging Cable,1,11.95,06/04/19 19:23,"752 1st St, Boston, MA 02215" +214794,AAA Batteries (4-pack),1,2.99,06/22/19 19:46,"652 1st St, Seattle, WA 98101" +214795,Macbook Pro Laptop,1,1700,06/14/19 16:36,"250 Meadow St, Boston, MA 02215" +214796,AA Batteries (4-pack),1,3.84,06/06/19 14:54,"563 Center St, San Francisco, CA 94016" +214797,Lightning Charging Cable,2,14.95,06/22/19 15:39,"898 Center St, Atlanta, GA 30301" +214798,USB-C Charging Cable,2,11.95,06/10/19 15:22,"557 Lakeview St, Boston, MA 02215" +214799,27in 4K Gaming Monitor,1,389.99,06/10/19 10:20,"998 Wilson St, Boston, MA 02215" +214800,Flatscreen TV,1,300,06/16/19 18:04,"368 Willow St, Dallas, TX 75001" +214801,27in FHD Monitor,1,149.99,06/16/19 21:08,"862 Washington St, Los Angeles, CA 90001" +214802,Flatscreen TV,1,300,06/21/19 07:56,"432 Sunset St, Los Angeles, CA 90001" +214803,USB-C Charging Cable,1,11.95,06/29/19 04:40,"711 Lake St, New York City, NY 10001" +214804,AA Batteries (4-pack),1,3.84,06/19/19 19:40,"667 Wilson St, San Francisco, CA 94016" +214805,Bose SoundSport Headphones,1,99.99,06/01/19 19:28,"892 Church St, New York City, NY 10001" +214806,AA Batteries (4-pack),1,3.84,06/27/19 22:57,"263 12th St, San Francisco, CA 94016" +214807,Bose SoundSport Headphones,1,99.99,06/17/19 21:09,"196 North St, Dallas, TX 75001" +214808,Bose SoundSport Headphones,1,99.99,06/22/19 19:40,"324 Lincoln St, Los Angeles, CA 90001" +214809,Lightning Charging Cable,1,14.95,06/24/19 11:09,"324 Adams St, New York City, NY 10001" +214810,Lightning Charging Cable,1,14.95,06/04/19 19:21,"396 Center St, San Francisco, CA 94016" +214811,USB-C Charging Cable,1,11.95,06/12/19 14:36,"835 6th St, San Francisco, CA 94016" +214812,Flatscreen TV,1,300,06/14/19 15:37,"312 13th St, Los Angeles, CA 90001" +214813,AAA Batteries (4-pack),1,2.99,06/16/19 09:31,"824 11th St, Los Angeles, CA 90001" +214814,AA Batteries (4-pack),1,3.84,06/01/19 19:13,"784 Lake St, Los Angeles, CA 90001" +214815,Apple Airpods Headphones,1,150,06/24/19 11:00,"968 9th St, Boston, MA 02215" +214816,iPhone,1,700,06/09/19 17:58,"433 1st St, Los Angeles, CA 90001" +214816,Wired Headphones,1,11.99,06/09/19 17:58,"433 1st St, Los Angeles, CA 90001" +214817,USB-C Charging Cable,1,11.95,06/12/19 08:06,"53 Park St, New York City, NY 10001" +214818,34in Ultrawide Monitor,1,379.99,06/12/19 15:51,"222 Jackson St, San Francisco, CA 94016" +214819,AAA Batteries (4-pack),1,2.99,06/05/19 12:58,"617 Washington St, Los Angeles, CA 90001" +214820,Lightning Charging Cable,1,14.95,06/08/19 06:34,"397 Cherry St, New York City, NY 10001" +214821,USB-C Charging Cable,2,11.95,06/11/19 13:34,"285 7th St, Atlanta, GA 30301" +214821,Flatscreen TV,1,300,06/11/19 13:34,"285 7th St, Atlanta, GA 30301" +214822,Lightning Charging Cable,1,14.95,06/30/19 16:51,"301 Elm St, New York City, NY 10001" +214823,ThinkPad Laptop,1,999.99,06/01/19 17:44,"957 Hill St, San Francisco, CA 94016" +214824,27in FHD Monitor,1,149.99,06/11/19 14:55,"789 Highland St, Los Angeles, CA 90001" +214825,Wired Headphones,1,11.99,06/25/19 02:17,"254 South St, San Francisco, CA 94016" +214826,AA Batteries (4-pack),1,3.84,06/01/19 22:50,"32 10th St, San Francisco, CA 94016" +214827,AA Batteries (4-pack),1,3.84,06/10/19 13:42,"5 Meadow St, Boston, MA 02215" +214828,AA Batteries (4-pack),2,3.84,06/15/19 17:40,"811 Pine St, New York City, NY 10001" +214829,USB-C Charging Cable,1,11.95,06/25/19 13:35,"522 12th St, Dallas, TX 75001" +214830,AA Batteries (4-pack),1,3.84,06/30/19 21:18,"679 Cedar St, San Francisco, CA 94016" +214831,Google Phone,1,600,06/14/19 18:17,"677 Wilson St, San Francisco, CA 94016" +214831,Bose SoundSport Headphones,1,99.99,06/14/19 18:17,"677 Wilson St, San Francisco, CA 94016" +214832,Apple Airpods Headphones,1,150,06/04/19 11:46,"780 11th St, Boston, MA 02215" +214833,Lightning Charging Cable,1,14.95,06/04/19 22:09,"746 8th St, New York City, NY 10001" +214834,USB-C Charging Cable,1,11.95,06/22/19 14:09,"721 Pine St, Los Angeles, CA 90001" +214835,Apple Airpods Headphones,1,150,06/14/19 12:17,"131 Washington St, New York City, NY 10001" +214836,USB-C Charging Cable,1,11.95,06/26/19 04:51,"612 1st St, San Francisco, CA 94016" +214837,AA Batteries (4-pack),2,3.84,06/16/19 14:39,"16 Cherry St, San Francisco, CA 94016" +214838,AAA Batteries (4-pack),1,2.99,06/05/19 12:05,"701 Hill St, San Francisco, CA 94016" +214839,AAA Batteries (4-pack),1,2.99,06/30/19 10:10,"914 10th St, Dallas, TX 75001" +214840,iPhone,1,700,06/07/19 09:02,"896 River St, San Francisco, CA 94016" +214840,Lightning Charging Cable,1,14.95,06/07/19 09:02,"896 River St, San Francisco, CA 94016" +214840,Wired Headphones,1,11.99,06/07/19 09:02,"896 River St, San Francisco, CA 94016" +214841,Apple Airpods Headphones,1,150,06/26/19 13:35,"551 Chestnut St, Seattle, WA 98101" +214842,USB-C Charging Cable,2,11.95,06/24/19 09:20,"89 Walnut St, San Francisco, CA 94016" +214843,Wired Headphones,1,11.99,06/25/19 11:31,"608 River St, Portland, OR 97035" +214844,Lightning Charging Cable,1,14.95,06/17/19 19:55,"516 Elm St, New York City, NY 10001" +214845,20in Monitor,1,109.99,06/26/19 10:42,"220 Lake St, Austin, TX 73301" +214846,AAA Batteries (4-pack),1,2.99,06/07/19 11:20,"434 Main St, San Francisco, CA 94016" +214847,27in 4K Gaming Monitor,1,389.99,06/22/19 09:02,"784 Spruce St, Los Angeles, CA 90001" +214848,Macbook Pro Laptop,1,1700,06/09/19 21:38,"244 Jefferson St, Boston, MA 02215" +214849,20in Monitor,1,109.99,06/10/19 09:54,"801 Washington St, Los Angeles, CA 90001" +214850,27in 4K Gaming Monitor,1,389.99,06/06/19 16:42,"516 Meadow St, San Francisco, CA 94016" +214851,Wired Headphones,1,11.99,06/14/19 09:37,"79 Chestnut St, Portland, ME 04101" +214851,USB-C Charging Cable,1,11.95,06/14/19 09:37,"79 Chestnut St, Portland, ME 04101" +214852,iPhone,1,700,06/12/19 13:35,"163 Walnut St, Atlanta, GA 30301" +214853,AA Batteries (4-pack),1,3.84,06/13/19 18:40,"497 Ridge St, Seattle, WA 98101" +214854,Wired Headphones,1,11.99,06/17/19 14:41,"366 Park St, Los Angeles, CA 90001" +214855,USB-C Charging Cable,1,11.95,06/13/19 10:11,"164 13th St, Seattle, WA 98101" +214856,USB-C Charging Cable,1,11.95,06/28/19 21:33,"750 Adams St, Los Angeles, CA 90001" +214857,AAA Batteries (4-pack),2,2.99,06/13/19 13:32,"867 Highland St, San Francisco, CA 94016" +214858,AAA Batteries (4-pack),1,2.99,06/08/19 16:37,"524 Walnut St, Dallas, TX 75001" +214859,USB-C Charging Cable,1,11.95,06/16/19 10:13,"100 Park St, Dallas, TX 75001" +214860,AAA Batteries (4-pack),1,2.99,06/29/19 18:29,"598 13th St, Boston, MA 02215" +214861,20in Monitor,1,109.99,06/26/19 16:13,"55 Church St, Los Angeles, CA 90001" +214862,USB-C Charging Cable,1,11.95,06/28/19 13:32,"795 Pine St, Dallas, TX 75001" +214863,Macbook Pro Laptop,1,1700,06/22/19 21:26,"591 Hickory St, San Francisco, CA 94016" +214864,AAA Batteries (4-pack),2,2.99,06/30/19 09:26,"347 Wilson St, New York City, NY 10001" +214865,AA Batteries (4-pack),1,3.84,06/16/19 18:30,"444 Forest St, Dallas, TX 75001" +214866,USB-C Charging Cable,1,11.95,06/21/19 10:15,"377 Walnut St, San Francisco, CA 94016" +214867,AAA Batteries (4-pack),1,2.99,06/27/19 09:33,"376 Sunset St, San Francisco, CA 94016" +214868,34in Ultrawide Monitor,1,379.99,06/18/19 04:38,"683 Chestnut St, Los Angeles, CA 90001" +214869,AA Batteries (4-pack),1,3.84,06/11/19 15:17,"615 Wilson St, Atlanta, GA 30301" +214870,Google Phone,1,600,06/06/19 11:27,"747 6th St, New York City, NY 10001" +214870,USB-C Charging Cable,1,11.95,06/06/19 11:27,"747 6th St, New York City, NY 10001" +214871,Lightning Charging Cable,1,14.95,06/22/19 19:42,"78 Meadow St, Boston, MA 02215" +214872,AAA Batteries (4-pack),3,2.99,06/09/19 20:09,"586 Church St, Boston, MA 02215" +214873,Bose SoundSport Headphones,1,99.99,06/21/19 20:30,"296 Cedar St, New York City, NY 10001" +214874,AA Batteries (4-pack),1,3.84,06/24/19 21:15,"134 8th St, San Francisco, CA 94016" +214875,USB-C Charging Cable,1,11.95,06/20/19 08:32,"949 14th St, San Francisco, CA 94016" +214876,USB-C Charging Cable,1,11.95,06/26/19 14:46,"927 Johnson St, New York City, NY 10001" +214877,USB-C Charging Cable,1,11.95,06/23/19 19:37,"692 Wilson St, Portland, OR 97035" +214878,AAA Batteries (4-pack),2,2.99,06/08/19 08:08,"846 12th St, New York City, NY 10001" +214879,34in Ultrawide Monitor,1,379.99,06/06/19 08:34,"806 Elm St, Austin, TX 73301" +214880,iPhone,1,700,06/22/19 22:28,"608 2nd St, Atlanta, GA 30301" +214880,Lightning Charging Cable,1,14.95,06/22/19 22:28,"608 2nd St, Atlanta, GA 30301" +214881,Lightning Charging Cable,1,14.95,06/30/19 19:10,"601 West St, Seattle, WA 98101" +214882,Apple Airpods Headphones,1,150,06/09/19 19:44,"409 Lake St, New York City, NY 10001" +214883,USB-C Charging Cable,1,11.95,06/14/19 11:49,"442 8th St, Atlanta, GA 30301" +214884,27in FHD Monitor,1,149.99,06/30/19 19:34,"743 Chestnut St, Portland, OR 97035" +214885,USB-C Charging Cable,1,11.95,07/01/19 01:49,"732 Pine St, San Francisco, CA 94016" +214886,USB-C Charging Cable,1,11.95,06/25/19 16:40,"929 1st St, Boston, MA 02215" +214887,Bose SoundSport Headphones,1,99.99,06/04/19 15:36,"96 Sunset St, Dallas, TX 75001" +214888,iPhone,1,700,06/07/19 10:06,"869 7th St, Boston, MA 02215" +214888,Wired Headphones,1,11.99,06/07/19 10:06,"869 7th St, Boston, MA 02215" +214889,Lightning Charging Cable,1,14.95,06/03/19 10:55,"115 Wilson St, New York City, NY 10001" +214890,AAA Batteries (4-pack),1,2.99,06/28/19 00:15,"535 Forest St, Seattle, WA 98101" +214891,AAA Batteries (4-pack),3,2.99,06/12/19 00:06,"864 Willow St, New York City, NY 10001" +214892,USB-C Charging Cable,1,11.95,06/27/19 14:38,"188 5th St, Los Angeles, CA 90001" +214893,AAA Batteries (4-pack),4,2.99,06/09/19 17:56,"932 Lakeview St, Los Angeles, CA 90001" +214894,Bose SoundSport Headphones,1,99.99,06/30/19 10:08,"448 Forest St, Atlanta, GA 30301" +214895,iPhone,1,700,06/01/19 20:11,"51 Hill St, Atlanta, GA 30301" +214896,Wired Headphones,1,11.99,06/14/19 16:49,"666 5th St, Boston, MA 02215" +214897,AA Batteries (4-pack),1,3.84,06/14/19 17:50,"544 Lakeview St, Los Angeles, CA 90001" +214898,AAA Batteries (4-pack),4,2.99,06/27/19 13:04,"737 Cedar St, Atlanta, GA 30301" +214899,AAA Batteries (4-pack),1,2.99,06/15/19 02:15,"438 Park St, Atlanta, GA 30301" +214900,Bose SoundSport Headphones,1,99.99,06/01/19 21:11,"632 Sunset St, Atlanta, GA 30301" +214901,Vareebadd Phone,1,400,06/23/19 08:28,"842 West St, Portland, ME 04101" +214902,AA Batteries (4-pack),2,3.84,06/02/19 18:15,"464 Park St, Seattle, WA 98101" +214903,AAA Batteries (4-pack),1,2.99,06/16/19 18:15,"396 Elm St, San Francisco, CA 94016" +214904,USB-C Charging Cable,1,11.95,06/03/19 19:55,"207 South St, San Francisco, CA 94016" +214905,USB-C Charging Cable,1,11.95,06/21/19 18:21,"777 9th St, San Francisco, CA 94016" +214906,Google Phone,1,600,06/01/19 22:32,"1 Lakeview St, Dallas, TX 75001" +214907,AA Batteries (4-pack),1,3.84,06/27/19 16:31,"645 Adams St, Portland, OR 97035" +214908,Lightning Charging Cable,1,14.95,06/26/19 20:27,"39 Lake St, Austin, TX 73301" +214909,AAA Batteries (4-pack),1,2.99,06/23/19 07:21,"992 Lincoln St, Boston, MA 02215" +214910,Wired Headphones,1,11.99,06/20/19 10:48,"134 North St, San Francisco, CA 94016" +214911,34in Ultrawide Monitor,1,379.99,06/13/19 21:46,"588 Cherry St, Boston, MA 02215" +214912,AA Batteries (4-pack),1,3.84,06/28/19 12:31,"785 11th St, Dallas, TX 75001" +214913,iPhone,1,700,06/10/19 12:19,"791 Willow St, San Francisco, CA 94016" +214914,AA Batteries (4-pack),1,3.84,06/13/19 20:58,"461 Dogwood St, New York City, NY 10001" +214915,Lightning Charging Cable,1,14.95,06/07/19 19:45,"709 11th St, San Francisco, CA 94016" +214916,Wired Headphones,1,11.99,06/02/19 15:24,"490 1st St, San Francisco, CA 94016" +214917,27in FHD Monitor,1,149.99,06/07/19 17:22,"304 Madison St, Boston, MA 02215" +214918,Lightning Charging Cable,1,14.95,06/24/19 14:55,"929 Lake St, Los Angeles, CA 90001" +214919,AA Batteries (4-pack),2,3.84,06/17/19 15:07,"561 Walnut St, Seattle, WA 98101" +214920,iPhone,1,700,06/09/19 18:24,"158 Meadow St, Seattle, WA 98101" +214921,USB-C Charging Cable,1,11.95,06/23/19 12:52,"735 Maple St, Seattle, WA 98101" +214922,AAA Batteries (4-pack),1,2.99,06/30/19 13:42,"317 Cherry St, Los Angeles, CA 90001" +214923,Apple Airpods Headphones,1,150,06/13/19 16:49,"752 6th St, San Francisco, CA 94016" +214924,Macbook Pro Laptop,1,1700,06/14/19 12:18,"778 Meadow St, Dallas, TX 75001" +214925,34in Ultrawide Monitor,1,379.99,06/27/19 07:54,"769 Dogwood St, New York City, NY 10001" +214926,Flatscreen TV,1,300,06/11/19 12:30,"733 Dogwood St, Seattle, WA 98101" +214927,AA Batteries (4-pack),1,3.84,06/25/19 14:24,"923 Dogwood St, New York City, NY 10001" +214928,USB-C Charging Cable,1,11.95,06/11/19 21:12,"337 River St, New York City, NY 10001" +214929,Wired Headphones,1,11.99,06/07/19 10:52,"518 Elm St, San Francisco, CA 94016" +214930,USB-C Charging Cable,1,11.95,06/03/19 23:48,"548 Adams St, Dallas, TX 75001" +214931,iPhone,1,700,06/15/19 16:37,"562 River St, San Francisco, CA 94016" +214932,Apple Airpods Headphones,1,150,06/16/19 20:57,"350 Pine St, San Francisco, CA 94016" +214933,34in Ultrawide Monitor,1,379.99,06/06/19 06:44,"111 Chestnut St, New York City, NY 10001" +214934,iPhone,1,700,06/07/19 02:42,"656 5th St, New York City, NY 10001" +214934,Lightning Charging Cable,1,14.95,06/07/19 02:42,"656 5th St, New York City, NY 10001" +214935,Bose SoundSport Headphones,1,99.99,06/11/19 19:13,"951 2nd St, San Francisco, CA 94016" +214936,Lightning Charging Cable,1,14.95,06/03/19 21:27,"767 12th St, San Francisco, CA 94016" +214937,Google Phone,1,600,06/01/19 12:33,"771 Lake St, Dallas, TX 75001" +214938,Flatscreen TV,1,300,06/14/19 19:43,"370 Ridge St, Seattle, WA 98101" +214939,AA Batteries (4-pack),1,3.84,06/18/19 11:06,"854 Forest St, San Francisco, CA 94016" +214939,Lightning Charging Cable,1,14.95,06/18/19 11:06,"854 Forest St, San Francisco, CA 94016" +214940,USB-C Charging Cable,2,11.95,06/13/19 17:24,"707 Dogwood St, Dallas, TX 75001" +214941,USB-C Charging Cable,1,11.95,06/13/19 22:15,"538 4th St, Austin, TX 73301" +214942,34in Ultrawide Monitor,1,379.99,06/25/19 08:53,"445 Cedar St, Dallas, TX 75001" +214943,AA Batteries (4-pack),2,3.84,06/05/19 20:48,"878 Forest St, Atlanta, GA 30301" +214944,Vareebadd Phone,1,400,06/25/19 18:47,"772 Cedar St, Los Angeles, CA 90001" +214945,AA Batteries (4-pack),2,3.84,06/02/19 10:17,"975 Adams St, New York City, NY 10001" +214946,AAA Batteries (4-pack),2,2.99,06/04/19 10:21,"328 9th St, New York City, NY 10001" +214947,Bose SoundSport Headphones,1,99.99,06/08/19 09:41,"909 South St, Dallas, TX 75001" +214948,Lightning Charging Cable,1,14.95,06/26/19 22:23,"154 Forest St, San Francisco, CA 94016" +214949,Lightning Charging Cable,1,14.95,06/10/19 20:01,"150 Elm St, Dallas, TX 75001" +214950,34in Ultrawide Monitor,1,379.99,06/07/19 19:52,"304 Ridge St, Los Angeles, CA 90001" +214951,34in Ultrawide Monitor,1,379.99,06/29/19 08:53,"684 Willow St, San Francisco, CA 94016" +214952,AA Batteries (4-pack),1,3.84,06/17/19 22:07,"410 1st St, New York City, NY 10001" +214953,27in 4K Gaming Monitor,1,389.99,06/21/19 13:08,"205 13th St, Seattle, WA 98101" +214954,Wired Headphones,1,11.99,06/01/19 15:35,"75 Spruce St, New York City, NY 10001" +214954,Flatscreen TV,1,300,06/01/19 15:35,"75 Spruce St, New York City, NY 10001" +214955,Apple Airpods Headphones,1,150,06/18/19 17:56,"316 South St, Los Angeles, CA 90001" +214956,20in Monitor,1,109.99,06/02/19 23:41,"381 Maple St, Atlanta, GA 30301" +214957,Apple Airpods Headphones,1,150,06/07/19 08:03,"549 Maple St, Seattle, WA 98101" +214958,Bose SoundSport Headphones,1,99.99,06/13/19 21:32,"250 Meadow St, San Francisco, CA 94016" +214959,AA Batteries (4-pack),2,3.84,06/22/19 14:50,"88 Hill St, Los Angeles, CA 90001" +214960,Apple Airpods Headphones,1,150,06/10/19 07:42,"148 Willow St, Seattle, WA 98101" +214961,Lightning Charging Cable,1,14.95,06/29/19 23:28,"502 Adams St, Portland, OR 97035" +214962,ThinkPad Laptop,1,999.99,06/11/19 09:14,"189 Main St, Seattle, WA 98101" +214963,iPhone,1,700,06/26/19 06:47,"10 Chestnut St, San Francisco, CA 94016" +214963,Lightning Charging Cable,1,14.95,06/26/19 06:47,"10 Chestnut St, San Francisco, CA 94016" +214964,Lightning Charging Cable,1,14.95,06/29/19 23:15,"138 Jefferson St, Los Angeles, CA 90001" +214965,27in FHD Monitor,1,149.99,06/05/19 10:15,"90 7th St, San Francisco, CA 94016" +214966,34in Ultrawide Monitor,1,379.99,06/29/19 13:20,"105 2nd St, Austin, TX 73301" +214967,USB-C Charging Cable,1,11.95,06/19/19 22:37,"69 Wilson St, Dallas, TX 75001" +214968,AAA Batteries (4-pack),1,2.99,06/09/19 13:09,"752 6th St, Dallas, TX 75001" +214969,USB-C Charging Cable,1,11.95,06/15/19 16:28,"79 8th St, Boston, MA 02215" +214970,Macbook Pro Laptop,1,1700,06/07/19 16:48,"441 Sunset St, Portland, OR 97035" +214971,Apple Airpods Headphones,1,150,06/06/19 17:26,"765 Hill St, San Francisco, CA 94016" +214972,Apple Airpods Headphones,1,150,06/17/19 22:17,"874 Lincoln St, Dallas, TX 75001" +214973,Flatscreen TV,1,300,06/16/19 15:46,"909 Lakeview St, San Francisco, CA 94016" +214974,Apple Airpods Headphones,1,150,06/02/19 22:04,"133 Lincoln St, San Francisco, CA 94016" +214975,Flatscreen TV,1,300,06/13/19 18:46,"705 Ridge St, New York City, NY 10001" +214976,Bose SoundSport Headphones,1,99.99,06/07/19 00:27,"961 Center St, Boston, MA 02215" +214977,Wired Headphones,1,11.99,06/19/19 22:57,"207 Forest St, San Francisco, CA 94016" +214978,iPhone,1,700,06/06/19 08:01,"701 Center St, Seattle, WA 98101" +214979,AAA Batteries (4-pack),3,2.99,06/03/19 18:52,"463 14th St, San Francisco, CA 94016" +214980,USB-C Charging Cable,1,11.95,06/15/19 16:34,"535 Pine St, Seattle, WA 98101" +214981,USB-C Charging Cable,1,11.95,06/08/19 19:48,"930 Lincoln St, San Francisco, CA 94016" +214982,USB-C Charging Cable,1,11.95,06/29/19 19:32,"52 Willow St, Portland, OR 97035" +214983,Bose SoundSport Headphones,1,99.99,06/17/19 02:12,"646 Cedar St, Los Angeles, CA 90001" +214984,USB-C Charging Cable,1,11.95,06/23/19 17:24,"533 Lincoln St, New York City, NY 10001" +214985,Apple Airpods Headphones,1,150,06/02/19 19:10,"207 10th St, Austin, TX 73301" +214986,Lightning Charging Cable,1,14.95,06/25/19 06:02,"422 Washington St, Seattle, WA 98101" +214987,Bose SoundSport Headphones,1,99.99,06/23/19 07:42,"517 11th St, New York City, NY 10001" +214988,Apple Airpods Headphones,1,150,06/02/19 07:37,"543 Sunset St, Los Angeles, CA 90001" +214989,Wired Headphones,1,11.99,06/28/19 22:04,"52 4th St, Austin, TX 73301" +214990,Wired Headphones,1,11.99,06/16/19 23:44,"393 Forest St, Los Angeles, CA 90001" +214991,27in FHD Monitor,1,149.99,06/20/19 11:56,"851 Hill St, Los Angeles, CA 90001" +214992,iPhone,1,700,06/26/19 20:00,"704 Madison St, San Francisco, CA 94016" +214993,27in FHD Monitor,1,149.99,06/06/19 14:22,"449 Madison St, Los Angeles, CA 90001" +214994,Wired Headphones,1,11.99,06/25/19 17:27,"900 Forest St, San Francisco, CA 94016" +214995,AAA Batteries (4-pack),2,2.99,06/26/19 20:09,"164 6th St, San Francisco, CA 94016" +214996,34in Ultrawide Monitor,1,379.99,06/02/19 08:53,"124 6th St, San Francisco, CA 94016" +214996,Wired Headphones,2,11.99,06/02/19 08:53,"124 6th St, San Francisco, CA 94016" +214997,AA Batteries (4-pack),1,3.84,06/07/19 04:27,"38 Maple St, Seattle, WA 98101" +214998,27in FHD Monitor,1,149.99,06/23/19 11:46,"552 Highland St, Portland, OR 97035" +214999,Lightning Charging Cable,1,14.95,06/09/19 07:01,"491 Elm St, San Francisco, CA 94016" +215000,27in FHD Monitor,1,149.99,06/24/19 01:47,"181 Highland St, Austin, TX 73301" +215001,USB-C Charging Cable,1,11.95,06/15/19 19:45,"124 11th St, San Francisco, CA 94016" +215002,AA Batteries (4-pack),2,3.84,06/22/19 18:34,"329 Forest St, San Francisco, CA 94016" +215003,Flatscreen TV,1,300,06/08/19 18:15,"384 Meadow St, Atlanta, GA 30301" +215004,USB-C Charging Cable,1,11.95,06/09/19 13:05,"996 1st St, New York City, NY 10001" +215005,AAA Batteries (4-pack),2,2.99,06/04/19 19:21,"998 Hill St, San Francisco, CA 94016" +215006,iPhone,1,700,06/20/19 18:34,"60 8th St, Dallas, TX 75001" +215007,AAA Batteries (4-pack),3,2.99,06/11/19 08:31,"706 Pine St, Atlanta, GA 30301" +215008,ThinkPad Laptop,1,999.99,06/19/19 12:41,"356 Jackson St, Austin, TX 73301" +215009,USB-C Charging Cable,1,11.95,06/15/19 13:57,"562 Wilson St, San Francisco, CA 94016" +215009,Bose SoundSport Headphones,1,99.99,06/15/19 13:57,"562 Wilson St, San Francisco, CA 94016" +215010,Google Phone,1,600,06/22/19 17:43,"179 Washington St, Los Angeles, CA 90001" +215010,Bose SoundSport Headphones,1,99.99,06/22/19 17:43,"179 Washington St, Los Angeles, CA 90001" +215011,Wired Headphones,1,11.99,06/22/19 11:41,"735 Johnson St, Atlanta, GA 30301" +215012,Lightning Charging Cable,1,14.95,06/06/19 15:01,"308 Main St, New York City, NY 10001" +215013,AA Batteries (4-pack),1,3.84,06/07/19 11:50,"997 9th St, San Francisco, CA 94016" +215014,Wired Headphones,1,11.99,06/16/19 14:25,"293 South St, San Francisco, CA 94016" +215015,27in 4K Gaming Monitor,1,389.99,06/07/19 01:48,"527 Lincoln St, New York City, NY 10001" +215016,Apple Airpods Headphones,1,150,06/02/19 12:32,"180 Hickory St, San Francisco, CA 94016" +215017,27in FHD Monitor,1,149.99,06/13/19 12:54,"408 8th St, Atlanta, GA 30301" +215018,AA Batteries (4-pack),1,3.84,06/02/19 18:16,"256 Walnut St, New York City, NY 10001" +215019,AA Batteries (4-pack),2,3.84,06/13/19 21:19,"285 Spruce St, Los Angeles, CA 90001" +215020,Wired Headphones,1,11.99,06/26/19 12:58,"504 Highland St, Dallas, TX 75001" +215021,AA Batteries (4-pack),1,3.84,06/30/19 21:50,"174 Wilson St, Boston, MA 02215" +215022,Apple Airpods Headphones,1,150,06/19/19 23:20,"208 Jackson St, Dallas, TX 75001" +215023,Bose SoundSport Headphones,1,99.99,06/14/19 23:44,"888 5th St, Los Angeles, CA 90001" +215024,27in FHD Monitor,1,149.99,06/27/19 20:50,"36 Maple St, San Francisco, CA 94016" +215025,Lightning Charging Cable,1,14.95,06/29/19 14:05,"352 Cedar St, Portland, ME 04101" +215026,27in FHD Monitor,1,149.99,06/17/19 09:21,"140 Main St, Boston, MA 02215" +215027,Macbook Pro Laptop,1,1700,06/11/19 17:18,"154 South St, San Francisco, CA 94016" +215028,Apple Airpods Headphones,1,150,06/16/19 18:50,"380 11th St, Los Angeles, CA 90001" +215029,Bose SoundSport Headphones,1,99.99,06/25/19 15:32,"254 Center St, Atlanta, GA 30301" +215030,27in 4K Gaming Monitor,1,389.99,06/28/19 13:00,"597 Lakeview St, Boston, MA 02215" +215031,iPhone,1,700,06/22/19 06:36,"854 13th St, Los Angeles, CA 90001" +215032,AAA Batteries (4-pack),1,2.99,06/15/19 14:41,"420 Spruce St, San Francisco, CA 94016" +215033,AA Batteries (4-pack),1,3.84,06/11/19 21:45,"568 Spruce St, Austin, TX 73301" +215034,Wired Headphones,1,11.99,06/08/19 18:29,"266 10th St, San Francisco, CA 94016" +215035,AAA Batteries (4-pack),1,2.99,06/05/19 18:44,"122 Sunset St, New York City, NY 10001" +215036,AA Batteries (4-pack),1,3.84,06/16/19 12:35,"606 Adams St, Dallas, TX 75001" +215037,Lightning Charging Cable,1,14.95,06/17/19 11:46,"931 1st St, San Francisco, CA 94016" +215038,Google Phone,1,600,06/17/19 11:34,"841 6th St, New York City, NY 10001" +215039,AAA Batteries (4-pack),1,2.99,06/06/19 16:24,"469 River St, Atlanta, GA 30301" +215040,34in Ultrawide Monitor,1,379.99,06/21/19 16:30,"703 Maple St, San Francisco, CA 94016" +215041,Apple Airpods Headphones,1,150,06/29/19 16:35,"877 Ridge St, San Francisco, CA 94016" +215042,Macbook Pro Laptop,1,1700,06/12/19 13:07,"744 Forest St, Los Angeles, CA 90001" +215043,Google Phone,1,600,06/26/19 15:52,"727 Maple St, Portland, OR 97035" +215044,iPhone,1,700,06/01/19 11:27,"972 South St, Dallas, TX 75001" +215044,Apple Airpods Headphones,1,150,06/01/19 11:27,"972 South St, Dallas, TX 75001" +215045,Lightning Charging Cable,1,14.95,06/16/19 22:05,"757 Hickory St, San Francisco, CA 94016" +215046,Apple Airpods Headphones,1,150,06/17/19 07:21,"895 River St, New York City, NY 10001" +215047,Google Phone,1,600,06/27/19 10:33,"235 Johnson St, New York City, NY 10001" +215048,Lightning Charging Cable,1,14.95,06/18/19 16:45,"924 Spruce St, Atlanta, GA 30301" +215049,27in 4K Gaming Monitor,1,389.99,06/30/19 18:22,"701 1st St, San Francisco, CA 94016" +215050,AA Batteries (4-pack),3,3.84,06/04/19 20:06,"774 13th St, Boston, MA 02215" +215051,AAA Batteries (4-pack),1,2.99,06/14/19 09:14,"885 Hickory St, San Francisco, CA 94016" +215052,Macbook Pro Laptop,1,1700,06/29/19 15:42,"982 10th St, Portland, OR 97035" +215053,27in FHD Monitor,1,149.99,06/10/19 13:16,"719 Forest St, San Francisco, CA 94016" +215054,Wired Headphones,1,11.99,06/26/19 12:51,"633 Lakeview St, Boston, MA 02215" +215055,Wired Headphones,2,11.99,06/10/19 12:42,"290 4th St, San Francisco, CA 94016" +215056,Apple Airpods Headphones,1,150,06/20/19 23:45,"133 Willow St, Boston, MA 02215" +215057,Apple Airpods Headphones,1,150,06/18/19 16:41,"410 River St, San Francisco, CA 94016" +215058,AA Batteries (4-pack),4,3.84,06/12/19 12:51,"518 Cedar St, Seattle, WA 98101" +215059,Wired Headphones,1,11.99,06/04/19 11:24,"576 Park St, Dallas, TX 75001" +215060,Wired Headphones,1,11.99,06/09/19 17:50,"227 12th St, San Francisco, CA 94016" +215061,AA Batteries (4-pack),1,3.84,06/06/19 10:58,"359 Washington St, Los Angeles, CA 90001" +215062,Bose SoundSport Headphones,1,99.99,06/22/19 19:24,"210 Willow St, San Francisco, CA 94016" +215063,20in Monitor,1,109.99,06/27/19 10:39,"76 South St, San Francisco, CA 94016" +215064,Bose SoundSport Headphones,1,99.99,06/26/19 13:41,"964 9th St, San Francisco, CA 94016" +215065,AA Batteries (4-pack),1,3.84,06/11/19 11:52,"586 Wilson St, Dallas, TX 75001" +215066,Bose SoundSport Headphones,1,99.99,06/25/19 11:00,"774 River St, Boston, MA 02215" +215067,Wired Headphones,1,11.99,06/20/19 17:38,"768 11th St, Los Angeles, CA 90001" +215068,USB-C Charging Cable,1,11.95,06/25/19 12:27,"14 5th St, Los Angeles, CA 90001" +215069,34in Ultrawide Monitor,1,379.99,06/29/19 00:09,"914 Pine St, Portland, ME 04101" +215070,USB-C Charging Cable,2,11.95,06/28/19 09:20,"68 Wilson St, Austin, TX 73301" +215070,Wired Headphones,1,11.99,06/28/19 09:20,"68 Wilson St, Austin, TX 73301" +215071,LG Dryer,1,600.0,06/23/19 13:17,"116 Forest St, Seattle, WA 98101" +215072,Lightning Charging Cable,2,14.95,06/11/19 07:36,"911 9th St, San Francisco, CA 94016" +215073,iPhone,1,700,06/18/19 13:23,"462 Madison St, San Francisco, CA 94016" +215074,Lightning Charging Cable,1,14.95,06/02/19 23:43,"567 6th St, San Francisco, CA 94016" +215074,Apple Airpods Headphones,1,150,06/02/19 23:43,"567 6th St, San Francisco, CA 94016" +215075,AA Batteries (4-pack),1,3.84,06/28/19 12:17,"322 Sunset St, Boston, MA 02215" +215076,Wired Headphones,1,11.99,06/10/19 13:51,"94 11th St, Boston, MA 02215" +215077,AA Batteries (4-pack),1,3.84,06/29/19 23:11,"731 6th St, Los Angeles, CA 90001" +215078,Apple Airpods Headphones,1,150,06/13/19 19:07,"934 Pine St, Seattle, WA 98101" +215079,Wired Headphones,1,11.99,06/05/19 20:56,"831 Highland St, Los Angeles, CA 90001" +215080,iPhone,1,700,06/26/19 07:43,"877 Jackson St, Los Angeles, CA 90001" +215081,27in 4K Gaming Monitor,1,389.99,06/13/19 13:47,"669 8th St, Seattle, WA 98101" +215082,iPhone,1,700,06/11/19 17:37,"839 Lakeview St, Boston, MA 02215" +215082,Wired Headphones,1,11.99,06/11/19 17:37,"839 Lakeview St, Boston, MA 02215" +215083,Lightning Charging Cable,1,14.95,06/11/19 22:31,"915 River St, Los Angeles, CA 90001" +215084,Apple Airpods Headphones,1,150,06/16/19 20:31,"926 Adams St, Los Angeles, CA 90001" +215085,AAA Batteries (4-pack),2,2.99,06/07/19 13:03,"68 Center St, San Francisco, CA 94016" +215086,AA Batteries (4-pack),1,3.84,06/25/19 21:36,"979 Sunset St, San Francisco, CA 94016" +215087,LG Washing Machine,1,600.0,06/20/19 11:36,"855 Wilson St, Los Angeles, CA 90001" +215088,34in Ultrawide Monitor,1,379.99,06/27/19 10:20,"590 Dogwood St, Austin, TX 73301" +215089,34in Ultrawide Monitor,1,379.99,06/16/19 14:48,"931 Meadow St, Dallas, TX 75001" +215090,AAA Batteries (4-pack),2,2.99,06/14/19 23:58,"119 Hickory St, San Francisco, CA 94016" +215090,Apple Airpods Headphones,1,150,06/14/19 23:58,"119 Hickory St, San Francisco, CA 94016" +215091,AA Batteries (4-pack),2,3.84,06/02/19 19:59,"236 Maple St, Boston, MA 02215" +215092,AAA Batteries (4-pack),1,2.99,06/16/19 21:34,"151 Cedar St, Dallas, TX 75001" +215093,Google Phone,1,600,06/18/19 11:31,"704 Washington St, New York City, NY 10001" +215094,27in FHD Monitor,1,149.99,06/09/19 18:29,"486 Madison St, Seattle, WA 98101" +215095,ThinkPad Laptop,1,999.99,06/03/19 01:30,"335 Chestnut St, New York City, NY 10001" +215096,USB-C Charging Cable,2,11.95,06/09/19 09:20,"538 Washington St, Atlanta, GA 30301" +215097,USB-C Charging Cable,1,11.95,06/25/19 13:18,"570 9th St, San Francisco, CA 94016" +215098,Lightning Charging Cable,1,14.95,06/21/19 15:03,"545 11th St, San Francisco, CA 94016" +215099,Macbook Pro Laptop,1,1700,06/15/19 10:57,"660 12th St, New York City, NY 10001" +215100,USB-C Charging Cable,1,11.95,06/28/19 13:21,"261 Jefferson St, New York City, NY 10001" +215101,Wired Headphones,1,11.99,06/19/19 11:00,"823 Lake St, Los Angeles, CA 90001" +215102,Bose SoundSport Headphones,1,99.99,06/28/19 17:53,"330 2nd St, New York City, NY 10001" +215103,USB-C Charging Cable,1,11.95,06/07/19 10:13,"179 Chestnut St, New York City, NY 10001" +215104,Wired Headphones,2,11.99,06/08/19 07:57,"605 Walnut St, New York City, NY 10001" +215105,Macbook Pro Laptop,1,1700,06/10/19 21:40,"448 Pine St, San Francisco, CA 94016" +215106,USB-C Charging Cable,1,11.95,06/28/19 17:21,"699 Walnut St, Seattle, WA 98101" +215107,Apple Airpods Headphones,1,150,06/08/19 20:35,"784 Elm St, San Francisco, CA 94016" +215108,Apple Airpods Headphones,1,150,06/25/19 01:45,"53 Dogwood St, Seattle, WA 98101" +215109,USB-C Charging Cable,1,11.95,06/24/19 21:18,"210 Ridge St, Austin, TX 73301" +215110,Apple Airpods Headphones,1,150,06/05/19 21:14,"767 7th St, Dallas, TX 75001" +215111,AAA Batteries (4-pack),1,2.99,06/23/19 21:48,"57 River St, Boston, MA 02215" +215112,USB-C Charging Cable,1,11.95,06/04/19 20:03,"731 Forest St, Atlanta, GA 30301" +215113,USB-C Charging Cable,1,11.95,06/06/19 11:39,"980 Willow St, Seattle, WA 98101" +215114,Apple Airpods Headphones,1,150,06/09/19 19:06,"763 Jefferson St, Los Angeles, CA 90001" +215115,20in Monitor,1,109.99,06/30/19 18:37,"849 Main St, New York City, NY 10001" +215116,Lightning Charging Cable,1,14.95,06/20/19 10:49,"463 Johnson St, New York City, NY 10001" +215117,AAA Batteries (4-pack),1,2.99,06/03/19 09:33,"739 Wilson St, Dallas, TX 75001" +215118,Google Phone,1,600,06/13/19 18:11,"587 2nd St, San Francisco, CA 94016" +215119,Google Phone,1,600,06/30/19 18:10,"745 Cherry St, Atlanta, GA 30301" +215119,Wired Headphones,1,11.99,06/30/19 18:10,"745 Cherry St, Atlanta, GA 30301" +215120,AA Batteries (4-pack),1,3.84,06/01/19 15:46,"160 Main St, San Francisco, CA 94016" +215121,LG Dryer,1,600.0,06/20/19 10:33,"323 13th St, Seattle, WA 98101" +215122,Lightning Charging Cable,1,14.95,06/12/19 13:15,"366 Adams St, San Francisco, CA 94016" +215123,AAA Batteries (4-pack),1,2.99,06/25/19 23:55,"780 River St, Los Angeles, CA 90001" +215124,AA Batteries (4-pack),1,3.84,06/06/19 01:04,"601 12th St, San Francisco, CA 94016" +215125,AAA Batteries (4-pack),2,2.99,06/06/19 17:46,"608 Lincoln St, Dallas, TX 75001" +215126,Google Phone,1,600,06/11/19 06:32,"311 Maple St, Atlanta, GA 30301" +215126,Macbook Pro Laptop,1,1700,06/11/19 06:32,"311 Maple St, Atlanta, GA 30301" +215127,34in Ultrawide Monitor,1,379.99,06/03/19 08:59,"866 South St, Dallas, TX 75001" +215128,27in 4K Gaming Monitor,1,389.99,06/22/19 09:53,"173 Dogwood St, Los Angeles, CA 90001" +215129,USB-C Charging Cable,1,11.95,06/10/19 10:52,"937 Madison St, Austin, TX 73301" +215130,AAA Batteries (4-pack),1,2.99,06/09/19 16:30,"658 Highland St, Los Angeles, CA 90001" +215131,iPhone,1,700,06/13/19 06:36,"297 Madison St, Atlanta, GA 30301" +215132,Wired Headphones,1,11.99,06/13/19 12:01,"174 Elm St, Atlanta, GA 30301" +215133,Apple Airpods Headphones,1,150,06/14/19 13:13,"606 West St, Dallas, TX 75001" +215134,Lightning Charging Cable,1,14.95,06/26/19 17:24,"336 Meadow St, Dallas, TX 75001" +215135,USB-C Charging Cable,1,11.95,06/16/19 14:21,"184 Cherry St, Atlanta, GA 30301" +215136,Apple Airpods Headphones,1,150,06/20/19 18:27,"64 Church St, Dallas, TX 75001" +215137,AAA Batteries (4-pack),1,2.99,06/23/19 07:05,"287 North St, Boston, MA 02215" +215138,Wired Headphones,2,11.99,06/23/19 18:54,"849 South St, Los Angeles, CA 90001" +215139,AAA Batteries (4-pack),1,2.99,06/06/19 17:50,"991 North St, Los Angeles, CA 90001" +215140,20in Monitor,1,109.99,06/12/19 16:31,"435 12th St, San Francisco, CA 94016" +215141,Apple Airpods Headphones,1,150,06/28/19 08:16,"146 Park St, New York City, NY 10001" +215142,34in Ultrawide Monitor,1,379.99,06/19/19 11:13,"633 Main St, Los Angeles, CA 90001" +215143,Wired Headphones,1,11.99,06/29/19 22:31,"18 1st St, San Francisco, CA 94016" +215144,Lightning Charging Cable,1,14.95,06/05/19 09:05,"441 North St, San Francisco, CA 94016" +215145,Apple Airpods Headphones,1,150,06/11/19 11:35,"396 2nd St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +215146,20in Monitor,1,109.99,06/25/19 06:22,"531 Cedar St, Seattle, WA 98101" +215147,Lightning Charging Cable,1,14.95,06/04/19 12:23,"559 Forest St, San Francisco, CA 94016" +215148,USB-C Charging Cable,1,11.95,06/02/19 13:13,"204 Park St, San Francisco, CA 94016" +215149,Wired Headphones,1,11.99,06/09/19 08:57,"532 Church St, Boston, MA 02215" +215150,Bose SoundSport Headphones,1,99.99,06/16/19 20:05,"458 Jackson St, Seattle, WA 98101" +215151,27in 4K Gaming Monitor,1,389.99,06/20/19 08:03,"804 South St, Austin, TX 73301" +215152,USB-C Charging Cable,1,11.95,06/01/19 11:59,"56 13th St, San Francisco, CA 94016" +215153,Apple Airpods Headphones,1,150,06/29/19 11:53,"500 Walnut St, Los Angeles, CA 90001" +215154,AA Batteries (4-pack),1,3.84,06/28/19 14:10,"564 River St, Austin, TX 73301" +215155,Apple Airpods Headphones,1,150,06/12/19 11:58,"48 Highland St, Los Angeles, CA 90001" +215156,Bose SoundSport Headphones,1,99.99,06/02/19 14:24,"657 West St, Dallas, TX 75001" +215157,AA Batteries (4-pack),2,3.84,06/20/19 07:53,"564 8th St, Boston, MA 02215" +215158,AAA Batteries (4-pack),3,2.99,06/03/19 17:49,"128 River St, Seattle, WA 98101" +215159,AA Batteries (4-pack),1,3.84,06/29/19 21:03,"825 Hickory St, New York City, NY 10001" +215160,Lightning Charging Cable,1,14.95,06/10/19 22:49,"148 Cherry St, New York City, NY 10001" +215161,Google Phone,1,600,06/14/19 12:39,"801 River St, San Francisco, CA 94016" +215162,AAA Batteries (4-pack),1,2.99,06/28/19 12:45,"535 South St, New York City, NY 10001" +215163,Google Phone,1,600,06/09/19 09:57,"948 5th St, New York City, NY 10001" +215164,34in Ultrawide Monitor,1,379.99,06/26/19 21:12,"738 Spruce St, Dallas, TX 75001" +215165,27in FHD Monitor,1,149.99,06/14/19 12:42,"605 North St, New York City, NY 10001" +215166,Bose SoundSport Headphones,1,99.99,06/24/19 23:26,"160 Adams St, Seattle, WA 98101" +215167,34in Ultrawide Monitor,1,379.99,06/21/19 16:27,"306 Forest St, New York City, NY 10001" +215168,Bose SoundSport Headphones,1,99.99,06/27/19 12:45,"36 Hickory St, Atlanta, GA 30301" +215169,USB-C Charging Cable,1,11.95,06/15/19 10:38,"589 2nd St, Boston, MA 02215" +215170,Flatscreen TV,1,300,06/22/19 14:58,"144 Johnson St, Boston, MA 02215" +215171,AA Batteries (4-pack),1,3.84,06/06/19 20:39,"406 South St, Dallas, TX 75001" +215172,iPhone,1,700,06/25/19 04:45,"775 Johnson St, Los Angeles, CA 90001" +215172,Lightning Charging Cable,1,14.95,06/25/19 04:45,"775 Johnson St, Los Angeles, CA 90001" +215173,USB-C Charging Cable,1,11.95,06/14/19 15:39,"254 14th St, Los Angeles, CA 90001" +215174,Macbook Pro Laptop,1,1700,06/06/19 13:09,"699 Church St, Portland, OR 97035" +215175,27in FHD Monitor,1,149.99,06/21/19 18:57,"330 12th St, San Francisco, CA 94016" +215176,27in FHD Monitor,1,149.99,06/15/19 18:37,"307 Hill St, Boston, MA 02215" +215177,USB-C Charging Cable,1,11.95,06/15/19 09:07,"288 Dogwood St, San Francisco, CA 94016" +215178,Apple Airpods Headphones,1,150,06/03/19 17:44,"376 Main St, Portland, OR 97035" +215179,Wired Headphones,1,11.99,06/11/19 08:54,"612 14th St, Portland, OR 97035" +215180,27in FHD Monitor,1,149.99,06/29/19 22:41,"102 14th St, San Francisco, CA 94016" +215181,Flatscreen TV,1,300,06/27/19 12:51,"288 Chestnut St, Boston, MA 02215" +215182,AA Batteries (4-pack),1,3.84,06/12/19 14:49,"361 Ridge St, Portland, OR 97035" +215183,AA Batteries (4-pack),1,3.84,06/27/19 00:39,"740 6th St, Portland, OR 97035" +215184,LG Washing Machine,1,600.0,06/05/19 09:16,"700 14th St, San Francisco, CA 94016" +215185,27in 4K Gaming Monitor,1,389.99,06/11/19 15:18,"621 North St, Seattle, WA 98101" +215186,AAA Batteries (4-pack),3,2.99,06/26/19 13:09,"761 Wilson St, Boston, MA 02215" +215187,Google Phone,1,600,06/05/19 18:02,"654 South St, Boston, MA 02215" +215187,USB-C Charging Cable,1,11.95,06/05/19 18:02,"654 South St, Boston, MA 02215" +215188,USB-C Charging Cable,1,11.95,06/25/19 14:53,"612 North St, San Francisco, CA 94016" +215189,USB-C Charging Cable,1,11.95,06/27/19 17:24,"998 Elm St, Portland, OR 97035" +215190,34in Ultrawide Monitor,1,379.99,06/05/19 16:15,"425 Maple St, San Francisco, CA 94016" +215191,Bose SoundSport Headphones,1,99.99,06/14/19 11:40,"491 12th St, Atlanta, GA 30301" +215192,AA Batteries (4-pack),3,3.84,06/10/19 13:56,"76 Lakeview St, Atlanta, GA 30301" +215193,USB-C Charging Cable,1,11.95,06/05/19 21:15,"818 9th St, Boston, MA 02215" +215194,Wired Headphones,1,11.99,06/19/19 23:00,"670 Willow St, New York City, NY 10001" +215195,Bose SoundSport Headphones,1,99.99,06/28/19 15:11,"32 Cedar St, San Francisco, CA 94016" +215196,USB-C Charging Cable,2,11.95,06/23/19 15:23,"250 Lincoln St, Seattle, WA 98101" +215197,27in FHD Monitor,1,149.99,06/28/19 16:18,"984 Dogwood St, San Francisco, CA 94016" +215198,ThinkPad Laptop,1,999.99,06/29/19 20:08,"427 Forest St, San Francisco, CA 94016" +215199,34in Ultrawide Monitor,1,379.99,06/07/19 23:18,"82 Jackson St, San Francisco, CA 94016" +215200,Wired Headphones,1,11.99,06/24/19 13:27,"658 Church St, San Francisco, CA 94016" +215201,AA Batteries (4-pack),1,3.84,06/15/19 11:42,"118 Chestnut St, San Francisco, CA 94016" +215202,AA Batteries (4-pack),1,3.84,06/21/19 16:25,"205 South St, Los Angeles, CA 90001" +215203,20in Monitor,1,109.99,06/23/19 20:06,"169 12th St, Los Angeles, CA 90001" +215204,AAA Batteries (4-pack),1,2.99,06/06/19 15:26,"172 9th St, Boston, MA 02215" +215205,Macbook Pro Laptop,1,1700,06/18/19 10:56,"101 Washington St, Boston, MA 02215" +215206,Bose SoundSport Headphones,1,99.99,06/09/19 10:50,"438 Adams St, San Francisco, CA 94016" +215207,LG Dryer,1,600.0,06/06/19 20:41,"303 Cherry St, Los Angeles, CA 90001" +215208,Lightning Charging Cable,1,14.95,06/22/19 16:48,"421 9th St, Boston, MA 02215" +215209,AAA Batteries (4-pack),1,2.99,06/15/19 18:48,"255 12th St, San Francisco, CA 94016" +215210,34in Ultrawide Monitor,1,379.99,06/23/19 20:23,"457 Hickory St, Portland, OR 97035" +215211,AA Batteries (4-pack),1,3.84,06/03/19 17:42,"895 5th St, Boston, MA 02215" +215212,Apple Airpods Headphones,1,150,06/10/19 14:02,"419 Jefferson St, Los Angeles, CA 90001" +215213,27in 4K Gaming Monitor,1,389.99,06/21/19 18:27,"26 Washington St, Seattle, WA 98101" +215214,AA Batteries (4-pack),1,3.84,06/13/19 13:54,"226 Hickory St, Atlanta, GA 30301" +215215,Lightning Charging Cable,1,14.95,06/02/19 08:06,"441 West St, Los Angeles, CA 90001" +215216,AA Batteries (4-pack),1,3.84,06/28/19 00:22,"135 Lakeview St, Boston, MA 02215" +215217,AAA Batteries (4-pack),1,2.99,06/20/19 14:31,"708 13th St, Atlanta, GA 30301" +215218,AAA Batteries (4-pack),1,2.99,06/17/19 16:12,"962 Lincoln St, San Francisco, CA 94016" +215219,Wired Headphones,1,11.99,06/23/19 23:50,"146 Meadow St, Atlanta, GA 30301" +215220,AAA Batteries (4-pack),1,2.99,06/23/19 15:35,"421 Forest St, Dallas, TX 75001" +215221,Wired Headphones,1,11.99,06/01/19 20:16,"468 Lakeview St, Seattle, WA 98101" +215222,USB-C Charging Cable,1,11.95,06/21/19 11:10,"936 Hickory St, San Francisco, CA 94016" +215223,AA Batteries (4-pack),1,3.84,06/14/19 14:48,"865 11th St, Boston, MA 02215" +215224,Lightning Charging Cable,1,14.95,06/19/19 09:36,"304 Hickory St, Los Angeles, CA 90001" +215225,AA Batteries (4-pack),1,3.84,06/27/19 10:46,"373 Hill St, Atlanta, GA 30301" +215226,Wired Headphones,1,11.99,06/28/19 20:10,"178 7th St, Atlanta, GA 30301" +215227,AAA Batteries (4-pack),1,2.99,06/14/19 21:02,"198 5th St, Atlanta, GA 30301" +215228,AA Batteries (4-pack),1,3.84,06/06/19 08:55,"38 Washington St, Los Angeles, CA 90001" +215229,Lightning Charging Cable,1,14.95,06/12/19 19:45,"633 9th St, Portland, OR 97035" +215230,AA Batteries (4-pack),1,3.84,06/24/19 18:50,"537 Madison St, Boston, MA 02215" +215231,AA Batteries (4-pack),1,3.84,06/21/19 20:57,"321 Sunset St, Los Angeles, CA 90001" +215232,Wired Headphones,1,11.99,06/28/19 01:30,"821 Lake St, Austin, TX 73301" +215233,Bose SoundSport Headphones,1,99.99,06/09/19 14:12,"908 Lakeview St, Austin, TX 73301" +215234,AA Batteries (4-pack),1,3.84,06/25/19 09:43,"776 Lakeview St, San Francisco, CA 94016" +215235,20in Monitor,1,109.99,06/24/19 16:55,"811 Lake St, San Francisco, CA 94016" +215236,USB-C Charging Cable,1,11.95,06/03/19 12:04,"417 2nd St, Boston, MA 02215" +215237,Apple Airpods Headphones,1,150,06/25/19 20:38,"223 Pine St, Atlanta, GA 30301" +215238,AA Batteries (4-pack),1,3.84,06/27/19 12:38,"272 Jackson St, San Francisco, CA 94016" +215239,Apple Airpods Headphones,1,150,06/27/19 10:59,"695 Ridge St, Portland, ME 04101" +215240,Wired Headphones,1,11.99,06/05/19 20:39,"359 Lake St, Los Angeles, CA 90001" +215241,Bose SoundSport Headphones,1,99.99,06/26/19 12:16,"33 12th St, New York City, NY 10001" +215242,Flatscreen TV,1,300,06/29/19 19:31,"335 Jackson St, San Francisco, CA 94016" +215243,Wired Headphones,1,11.99,06/14/19 07:49,"690 Hill St, San Francisco, CA 94016" +215244,Apple Airpods Headphones,1,150,06/28/19 11:28,"310 Walnut St, Portland, OR 97035" +215245,Macbook Pro Laptop,1,1700,06/27/19 21:10,"121 River St, San Francisco, CA 94016" +215246,Macbook Pro Laptop,1,1700,06/28/19 22:20,"332 Willow St, Los Angeles, CA 90001" +215247,Lightning Charging Cable,1,14.95,06/25/19 12:50,"52 6th St, Portland, ME 04101" +215248,Macbook Pro Laptop,1,1700,06/09/19 21:13,"833 8th St, Los Angeles, CA 90001" +215249,AAA Batteries (4-pack),1,2.99,06/14/19 21:18,"597 Maple St, San Francisco, CA 94016" +215250,AA Batteries (4-pack),2,3.84,06/06/19 20:13,"236 Pine St, Seattle, WA 98101" +215251,Bose SoundSport Headphones,1,99.99,06/13/19 10:54,"819 Jefferson St, Boston, MA 02215" +215252,Lightning Charging Cable,1,14.95,06/29/19 11:55,"182 Hickory St, San Francisco, CA 94016" +215253,Wired Headphones,1,11.99,06/05/19 14:46,"556 8th St, San Francisco, CA 94016" +215254,AAA Batteries (4-pack),2,2.99,06/26/19 16:38,"43 6th St, Los Angeles, CA 90001" +215255,AAA Batteries (4-pack),1,2.99,06/07/19 21:26,"809 12th St, San Francisco, CA 94016" +215256,Lightning Charging Cable,2,14.95,06/24/19 22:41,"682 6th St, Atlanta, GA 30301" +215257,AAA Batteries (4-pack),2,2.99,06/01/19 22:33,"107 Church St, New York City, NY 10001" +215258,Lightning Charging Cable,1,14.95,06/23/19 15:31,"344 Maple St, Los Angeles, CA 90001" +215259,34in Ultrawide Monitor,1,379.99,06/27/19 19:17,"743 14th St, Portland, OR 97035" +215260,Vareebadd Phone,1,400,06/16/19 14:06,"351 Walnut St, Atlanta, GA 30301" +215261,AA Batteries (4-pack),2,3.84,06/11/19 09:22,"519 Forest St, San Francisco, CA 94016" +215262,USB-C Charging Cable,1,11.95,06/07/19 12:21,"664 Washington St, Portland, OR 97035" +215263,AA Batteries (4-pack),3,3.84,06/11/19 15:24,"592 Forest St, Los Angeles, CA 90001" +215264,Apple Airpods Headphones,1,150,06/14/19 19:31,"780 North St, Los Angeles, CA 90001" +215265,iPhone,1,700,06/04/19 18:30,"696 Ridge St, Seattle, WA 98101" +215266,34in Ultrawide Monitor,1,379.99,06/18/19 20:06,"690 5th St, Atlanta, GA 30301" +215267,Lightning Charging Cable,1,14.95,06/01/19 16:13,"820 South St, Dallas, TX 75001" +215268,Wired Headphones,1,11.99,06/26/19 23:35,"344 2nd St, Los Angeles, CA 90001" +215269,Apple Airpods Headphones,1,150,06/21/19 12:27,"892 14th St, Dallas, TX 75001" +215269,USB-C Charging Cable,1,11.95,06/21/19 12:27,"892 14th St, Dallas, TX 75001" +215270,Wired Headphones,1,11.99,06/23/19 13:41,"410 8th St, Boston, MA 02215" +215271,AA Batteries (4-pack),1,3.84,06/01/19 20:42,"358 13th St, Boston, MA 02215" +215272,Lightning Charging Cable,1,14.95,06/18/19 09:45,"303 Highland St, San Francisco, CA 94016" +215273,AAA Batteries (4-pack),5,2.99,06/08/19 13:22,"918 14th St, San Francisco, CA 94016" +215274,USB-C Charging Cable,1,11.95,06/14/19 19:55,"63 8th St, San Francisco, CA 94016" +215275,AAA Batteries (4-pack),1,2.99,06/25/19 12:05,"789 Ridge St, Dallas, TX 75001" +215276,Flatscreen TV,1,300,06/29/19 11:49,"851 West St, Portland, OR 97035" +215277,AA Batteries (4-pack),1,3.84,06/24/19 19:23,"407 West St, Boston, MA 02215" +215278,AA Batteries (4-pack),1,3.84,06/12/19 11:47,"133 Madison St, Boston, MA 02215" +215279,AA Batteries (4-pack),1,3.84,06/19/19 11:37,"261 Ridge St, New York City, NY 10001" +215280,Macbook Pro Laptop,1,1700,06/23/19 18:37,"895 Jefferson St, Portland, OR 97035" +215281,AAA Batteries (4-pack),1,2.99,06/22/19 22:35,"297 North St, Boston, MA 02215" +215282,Wired Headphones,1,11.99,06/15/19 20:09,"846 11th St, Seattle, WA 98101" +215283,AA Batteries (4-pack),1,3.84,06/23/19 13:34,"201 Wilson St, New York City, NY 10001" +215284,Lightning Charging Cable,1,14.95,06/29/19 18:56,"596 6th St, Dallas, TX 75001" +215285,Wired Headphones,1,11.99,06/27/19 13:13,"833 9th St, San Francisco, CA 94016" +215286,Wired Headphones,1,11.99,06/03/19 16:41,"86 11th St, Boston, MA 02215" +215287,Flatscreen TV,1,300,06/14/19 18:38,"342 Park St, Atlanta, GA 30301" +215288,AAA Batteries (4-pack),1,2.99,06/05/19 20:15,"647 Adams St, Los Angeles, CA 90001" +215289,34in Ultrawide Monitor,1,379.99,06/20/19 16:30,"482 Center St, San Francisco, CA 94016" +215290,Wired Headphones,1,11.99,06/16/19 07:25,"717 Wilson St, Dallas, TX 75001" +215291,Lightning Charging Cable,1,14.95,06/26/19 23:51,"796 Lake St, Los Angeles, CA 90001" +215292,USB-C Charging Cable,1,11.95,06/19/19 17:16,"843 Washington St, New York City, NY 10001" +215293,Bose SoundSport Headphones,1,99.99,06/04/19 09:24,"87 Main St, San Francisco, CA 94016" +215294,27in FHD Monitor,1,149.99,06/29/19 21:37,"552 Jackson St, Los Angeles, CA 90001" +215295,Wired Headphones,1,11.99,06/04/19 14:05,"184 Lincoln St, Los Angeles, CA 90001" +215296,AAA Batteries (4-pack),1,2.99,06/20/19 19:12,"31 1st St, Dallas, TX 75001" +215297,Bose SoundSport Headphones,1,99.99,06/20/19 22:43,"393 Washington St, San Francisco, CA 94016" +215298,USB-C Charging Cable,2,11.95,06/06/19 20:00,"717 Center St, New York City, NY 10001" +215299,Wired Headphones,1,11.99,06/25/19 21:40,"37 12th St, San Francisco, CA 94016" +215300,Wired Headphones,1,11.99,06/17/19 17:58,"332 Dogwood St, Seattle, WA 98101" +215301,Wired Headphones,1,11.99,06/23/19 12:58,"786 Lincoln St, Atlanta, GA 30301" +215302,iPhone,1,700,06/27/19 17:43,"441 Lakeview St, Los Angeles, CA 90001" +215303,AAA Batteries (4-pack),1,2.99,06/26/19 10:48,"826 Highland St, New York City, NY 10001" +215304,AA Batteries (4-pack),3,3.84,06/19/19 21:13,"409 Spruce St, San Francisco, CA 94016" +215305,Bose SoundSport Headphones,1,99.99,06/28/19 18:25,"610 Cedar St, Boston, MA 02215" +215306,USB-C Charging Cable,1,11.95,06/20/19 15:27,"56 Forest St, San Francisco, CA 94016" +215307,Apple Airpods Headphones,1,150,06/16/19 19:14,"27 Cedar St, Boston, MA 02215" +215308,Wired Headphones,1,11.99,06/18/19 12:01,"347 Elm St, Boston, MA 02215" +215309,Apple Airpods Headphones,1,150,06/15/19 02:19,"329 Main St, Los Angeles, CA 90001" +215310,Google Phone,1,600,06/11/19 14:31,"831 Sunset St, New York City, NY 10001" +215311,AA Batteries (4-pack),1,3.84,06/27/19 19:27,"549 Lakeview St, San Francisco, CA 94016" +215312,AA Batteries (4-pack),2,3.84,06/28/19 08:43,"703 Hickory St, Dallas, TX 75001" +215313,USB-C Charging Cable,1,11.95,06/17/19 11:00,"333 Hickory St, New York City, NY 10001" +215314,27in 4K Gaming Monitor,1,389.99,06/06/19 12:20,"370 Cherry St, Atlanta, GA 30301" +215315,Wired Headphones,1,11.99,06/12/19 19:38,"304 Forest St, Dallas, TX 75001" +215316,AAA Batteries (4-pack),1,2.99,06/28/19 21:51,"911 8th St, San Francisco, CA 94016" +215317,AAA Batteries (4-pack),1,2.99,06/14/19 13:56,"430 Cedar St, New York City, NY 10001" +215318,Bose SoundSport Headphones,1,99.99,06/17/19 17:24,"155 Madison St, Atlanta, GA 30301" +215319,ThinkPad Laptop,1,999.99,06/12/19 19:56,"689 Cedar St, Boston, MA 02215" +215320,AA Batteries (4-pack),1,3.84,06/14/19 00:10,"266 Adams St, San Francisco, CA 94016" +215321,AA Batteries (4-pack),1,3.84,06/29/19 19:29,"521 Chestnut St, San Francisco, CA 94016" +215322,LG Dryer,1,600.0,06/21/19 12:02,"704 Sunset St, Boston, MA 02215" +215323,AAA Batteries (4-pack),2,2.99,06/12/19 17:39,"530 Park St, Atlanta, GA 30301" +215324,Flatscreen TV,1,300,06/24/19 15:38,"542 Chestnut St, San Francisco, CA 94016" +215325,AAA Batteries (4-pack),1,2.99,06/12/19 13:53,"806 Park St, Portland, OR 97035" +215326,AA Batteries (4-pack),2,3.84,06/05/19 23:41,"654 Elm St, San Francisco, CA 94016" +215327,AAA Batteries (4-pack),1,2.99,06/08/19 22:32,"197 Highland St, New York City, NY 10001" +215328,Apple Airpods Headphones,1,150,06/03/19 14:01,"733 Elm St, Boston, MA 02215" +215329,Wired Headphones,1,11.99,06/22/19 14:24,"119 Cherry St, San Francisco, CA 94016" +215330,AAA Batteries (4-pack),1,2.99,06/01/19 18:11,"690 Church St, San Francisco, CA 94016" +215331,Google Phone,1,600,06/20/19 17:11,"56 Spruce St, Dallas, TX 75001" +215331,Wired Headphones,1,11.99,06/20/19 17:11,"56 Spruce St, Dallas, TX 75001" +215332,AA Batteries (4-pack),1,3.84,06/15/19 20:48,"8 North St, New York City, NY 10001" +215333,Wired Headphones,2,11.99,06/01/19 14:49,"118 13th St, Seattle, WA 98101" +215334,iPhone,1,700,06/11/19 17:41,"163 4th St, Dallas, TX 75001" +215335,iPhone,1,700,06/16/19 22:01,"147 Washington St, San Francisco, CA 94016" +215336,USB-C Charging Cable,1,11.95,06/19/19 18:35,"3 Madison St, Los Angeles, CA 90001" +215337,USB-C Charging Cable,2,11.95,06/02/19 20:03,"479 6th St, Seattle, WA 98101" +215338,Apple Airpods Headphones,1,150,06/23/19 14:25,"205 10th St, Los Angeles, CA 90001" +215339,Lightning Charging Cable,1,14.95,06/03/19 10:28,"831 Willow St, Los Angeles, CA 90001" +215340,Apple Airpods Headphones,1,150,06/24/19 20:18,"525 9th St, Atlanta, GA 30301" +215341,27in 4K Gaming Monitor,1,389.99,06/26/19 18:13,"364 Wilson St, Seattle, WA 98101" +215342,27in FHD Monitor,2,149.99,06/22/19 19:12,"476 5th St, Austin, TX 73301" +215343,AA Batteries (4-pack),3,3.84,06/13/19 23:28,"614 Hill St, Boston, MA 02215" +215344,Bose SoundSport Headphones,1,99.99,06/01/19 23:50,"298 Church St, San Francisco, CA 94016" +215345,Bose SoundSport Headphones,1,99.99,06/24/19 19:59,"16 2nd St, Los Angeles, CA 90001" +215346,20in Monitor,1,109.99,06/20/19 13:03,"674 Highland St, Los Angeles, CA 90001" +215347,AAA Batteries (4-pack),1,2.99,06/15/19 23:52,"599 Lakeview St, San Francisco, CA 94016" +215348,Apple Airpods Headphones,1,150,06/13/19 13:00,"598 10th St, Seattle, WA 98101" +215349,Bose SoundSport Headphones,1,99.99,06/21/19 22:08,"931 Jefferson St, San Francisco, CA 94016" +215350,Google Phone,1,600,06/29/19 23:14,"95 North St, San Francisco, CA 94016" +215351,Lightning Charging Cable,1,14.95,06/06/19 12:58,"850 7th St, Atlanta, GA 30301" +,,,,, +215352,AA Batteries (4-pack),2,3.84,06/01/19 19:15,"229 11th St, Los Angeles, CA 90001" +215353,Macbook Pro Laptop,1,1700,06/10/19 21:57,"775 Dogwood St, Los Angeles, CA 90001" +215354,USB-C Charging Cable,1,11.95,06/28/19 01:05,"343 Lakeview St, Boston, MA 02215" +215355,Wired Headphones,1,11.99,06/19/19 11:57,"153 West St, San Francisco, CA 94016" +215355,AAA Batteries (4-pack),1,2.99,06/19/19 11:57,"153 West St, San Francisco, CA 94016" +215356,AA Batteries (4-pack),1,3.84,06/17/19 12:08,"984 Meadow St, Portland, OR 97035" +215357,AAA Batteries (4-pack),1,2.99,06/23/19 10:35,"42 Church St, San Francisco, CA 94016" +215358,Wired Headphones,1,11.99,06/21/19 18:28,"665 North St, New York City, NY 10001" +215359,Bose SoundSport Headphones,1,99.99,06/24/19 12:46,"20 Jackson St, Los Angeles, CA 90001" +215360,AA Batteries (4-pack),3,3.84,06/18/19 02:52,"981 Park St, Boston, MA 02215" +215361,Lightning Charging Cable,1,14.95,06/11/19 19:51,"870 Main St, San Francisco, CA 94016" +215362,AAA Batteries (4-pack),4,2.99,06/05/19 23:25,"585 5th St, Portland, OR 97035" +215363,Wired Headphones,2,11.99,06/10/19 15:01,"685 1st St, Dallas, TX 75001" +215364,Wired Headphones,1,11.99,06/22/19 18:47,"708 Ridge St, Los Angeles, CA 90001" +215365,AAA Batteries (4-pack),3,2.99,06/14/19 19:37,"989 1st St, San Francisco, CA 94016" +215366,AAA Batteries (4-pack),1,2.99,06/30/19 21:57,"186 1st St, San Francisco, CA 94016" +215367,USB-C Charging Cable,2,11.95,06/28/19 14:49,"572 West St, San Francisco, CA 94016" +215368,USB-C Charging Cable,1,11.95,06/27/19 15:52,"427 12th St, Atlanta, GA 30301" +215369,27in FHD Monitor,1,149.99,06/06/19 18:30,"556 Dogwood St, New York City, NY 10001" +215370,AAA Batteries (4-pack),1,2.99,06/26/19 17:44,"5 8th St, Austin, TX 73301" +215371,Flatscreen TV,1,300,06/13/19 13:49,"555 Chestnut St, New York City, NY 10001" +215372,AA Batteries (4-pack),1,3.84,06/16/19 11:25,"567 Forest St, San Francisco, CA 94016" +215373,Apple Airpods Headphones,1,150,06/18/19 21:09,"417 Spruce St, Austin, TX 73301" +215374,Macbook Pro Laptop,1,1700,06/20/19 22:50,"747 Johnson St, Seattle, WA 98101" +215375,Flatscreen TV,1,300,06/04/19 21:35,"572 Church St, Boston, MA 02215" +215376,AAA Batteries (4-pack),1,2.99,06/22/19 15:44,"488 12th St, San Francisco, CA 94016" +215377,AAA Batteries (4-pack),1,2.99,06/14/19 07:08,"646 Elm St, Austin, TX 73301" +215378,iPhone,1,700,06/27/19 09:37,"887 Walnut St, New York City, NY 10001" +215379,USB-C Charging Cable,1,11.95,06/30/19 22:08,"663 Forest St, Austin, TX 73301" +215380,Lightning Charging Cable,1,14.95,06/02/19 11:15,"323 Hickory St, Seattle, WA 98101" +215381,AA Batteries (4-pack),1,3.84,06/13/19 12:37,"967 Dogwood St, San Francisco, CA 94016" +215382,AA Batteries (4-pack),1,3.84,06/30/19 11:10,"584 2nd St, San Francisco, CA 94016" +215383,AAA Batteries (4-pack),2,2.99,06/25/19 23:44,"779 Dogwood St, Boston, MA 02215" +215384,USB-C Charging Cable,1,11.95,06/08/19 09:56,"840 9th St, New York City, NY 10001" +215385,USB-C Charging Cable,1,11.95,06/25/19 14:22,"298 Sunset St, Portland, OR 97035" +215386,27in FHD Monitor,1,149.99,06/07/19 01:53,"706 10th St, Dallas, TX 75001" +215387,27in FHD Monitor,1,149.99,06/01/19 19:45,"919 Lakeview St, Portland, OR 97035" +215388,Bose SoundSport Headphones,1,99.99,06/27/19 00:22,"707 10th St, New York City, NY 10001" +215389,USB-C Charging Cable,1,11.95,06/30/19 14:38,"769 Lincoln St, San Francisco, CA 94016" +215390,AA Batteries (4-pack),2,3.84,06/10/19 16:21,"184 13th St, New York City, NY 10001" +215391,AA Batteries (4-pack),1,3.84,06/07/19 18:09,"274 Center St, Los Angeles, CA 90001" +215392,AAA Batteries (4-pack),3,2.99,06/03/19 20:47,"335 Highland St, Portland, OR 97035" +215393,27in 4K Gaming Monitor,1,389.99,06/15/19 21:21,"263 West St, New York City, NY 10001" +215394,Bose SoundSport Headphones,1,99.99,06/13/19 10:30,"917 13th St, New York City, NY 10001" +215395,Lightning Charging Cable,1,14.95,06/27/19 00:33,"670 North St, Atlanta, GA 30301" +215396,USB-C Charging Cable,1,11.95,06/09/19 19:47,"4 Meadow St, Atlanta, GA 30301" +215397,Lightning Charging Cable,1,14.95,06/05/19 17:46,"472 Madison St, San Francisco, CA 94016" +215398,USB-C Charging Cable,2,11.95,06/28/19 08:00,"969 River St, Boston, MA 02215" +215399,AA Batteries (4-pack),1,3.84,06/10/19 10:44,"418 1st St, New York City, NY 10001" +215400,ThinkPad Laptop,1,999.99,06/04/19 13:18,"927 Forest St, Dallas, TX 75001" +215401,Google Phone,1,600,06/17/19 14:48,"182 West St, Seattle, WA 98101" +215402,27in 4K Gaming Monitor,1,389.99,06/20/19 16:09,"994 14th St, Atlanta, GA 30301" +215403,iPhone,1,700,06/10/19 13:07,"386 Washington St, Atlanta, GA 30301" +215404,Flatscreen TV,1,300,06/05/19 21:41,"537 Hickory St, Seattle, WA 98101" +215405,34in Ultrawide Monitor,1,379.99,06/08/19 21:28,"867 Park St, Portland, ME 04101" +215406,Apple Airpods Headphones,1,150,06/22/19 18:49,"207 Lincoln St, New York City, NY 10001" +215407,USB-C Charging Cable,1,11.95,06/13/19 18:45,"780 Maple St, San Francisco, CA 94016" +215408,USB-C Charging Cable,1,11.95,06/30/19 20:51,"932 Ridge St, San Francisco, CA 94016" +215409,27in 4K Gaming Monitor,1,389.99,06/27/19 21:30,"585 Hill St, Austin, TX 73301" +215410,Wired Headphones,1,11.99,06/12/19 18:37,"826 9th St, Dallas, TX 75001" +215411,Lightning Charging Cable,1,14.95,06/30/19 08:41,"405 Spruce St, Seattle, WA 98101" +215412,iPhone,1,700,06/22/19 07:45,"320 8th St, Seattle, WA 98101" +215413,USB-C Charging Cable,2,11.95,06/16/19 21:01,"115 Jackson St, New York City, NY 10001" +215414,Wired Headphones,1,11.99,06/15/19 10:05,"440 14th St, New York City, NY 10001" +215415,Apple Airpods Headphones,1,150,06/08/19 23:10,"391 Forest St, Atlanta, GA 30301" +215416,Apple Airpods Headphones,1,150,06/03/19 01:15,"332 Willow St, San Francisco, CA 94016" +215417,Macbook Pro Laptop,1,1700,06/08/19 11:27,"118 Center St, New York City, NY 10001" +215418,AA Batteries (4-pack),1,3.84,06/24/19 11:14,"888 Elm St, San Francisco, CA 94016" +215419,AAA Batteries (4-pack),2,2.99,06/06/19 12:42,"288 North St, San Francisco, CA 94016" +215420,AA Batteries (4-pack),1,3.84,06/17/19 22:59,"112 5th St, Los Angeles, CA 90001" +215421,USB-C Charging Cable,1,11.95,06/23/19 20:22,"890 Maple St, Boston, MA 02215" +215422,Lightning Charging Cable,1,14.95,06/05/19 14:07,"835 Washington St, New York City, NY 10001" +215423,Lightning Charging Cable,1,14.95,06/12/19 16:45,"263 West St, San Francisco, CA 94016" +215424,iPhone,1,700,06/15/19 17:24,"879 Washington St, Los Angeles, CA 90001" +215424,Apple Airpods Headphones,1,150,06/15/19 17:24,"879 Washington St, Los Angeles, CA 90001" +215425,AAA Batteries (4-pack),1,2.99,06/19/19 12:28,"465 4th St, New York City, NY 10001" +215426,27in FHD Monitor,2,149.99,06/05/19 19:36,"345 Walnut St, Atlanta, GA 30301" +215427,iPhone,1,700,06/04/19 17:29,"195 Ridge St, Los Angeles, CA 90001" +215428,AAA Batteries (4-pack),3,2.99,06/18/19 18:37,"584 Cedar St, Boston, MA 02215" +215429,AA Batteries (4-pack),2,3.84,06/29/19 01:18,"897 Church St, Seattle, WA 98101" +215430,AA Batteries (4-pack),1,3.84,06/08/19 09:48,"363 9th St, San Francisco, CA 94016" +215431,Apple Airpods Headphones,1,150,06/08/19 14:17,"635 West St, San Francisco, CA 94016" +215432,iPhone,1,700,06/16/19 13:32,"195 8th St, Dallas, TX 75001" +215432,Apple Airpods Headphones,1,150,06/16/19 13:32,"195 8th St, Dallas, TX 75001" +215433,27in 4K Gaming Monitor,1,389.99,06/04/19 10:43,"66 Pine St, New York City, NY 10001" +215434,AA Batteries (4-pack),2,3.84,06/24/19 20:47,"224 13th St, San Francisco, CA 94016" +215435,Wired Headphones,1,11.99,06/29/19 22:19,"844 Pine St, Seattle, WA 98101" +215436,Lightning Charging Cable,1,14.95,06/21/19 14:04,"73 Meadow St, Dallas, TX 75001" +215437,Wired Headphones,1,11.99,06/15/19 15:35,"440 Jackson St, Los Angeles, CA 90001" +215438,Google Phone,1,600,06/06/19 07:57,"17 Wilson St, Portland, OR 97035" +215439,Macbook Pro Laptop,1,1700,06/23/19 12:22,"360 13th St, San Francisco, CA 94016" +215440,Wired Headphones,1,11.99,06/07/19 17:35,"278 11th St, Atlanta, GA 30301" +215441,USB-C Charging Cable,1,11.95,06/25/19 07:53,"2 Pine St, San Francisco, CA 94016" +215442,USB-C Charging Cable,1,11.95,06/15/19 20:43,"138 Lakeview St, Dallas, TX 75001" +215443,Apple Airpods Headphones,1,150,06/08/19 11:20,"220 11th St, Atlanta, GA 30301" +215444,AA Batteries (4-pack),1,3.84,06/18/19 11:24,"284 Main St, Seattle, WA 98101" +215445,AA Batteries (4-pack),1,3.84,06/26/19 20:49,"204 Madison St, Dallas, TX 75001" +215446,27in FHD Monitor,1,149.99,06/23/19 10:26,"396 Lincoln St, New York City, NY 10001" +215447,AAA Batteries (4-pack),1,2.99,06/10/19 15:38,"483 Church St, Los Angeles, CA 90001" +215448,Apple Airpods Headphones,1,150,06/01/19 16:17,"652 13th St, New York City, NY 10001" +215449,AA Batteries (4-pack),1,3.84,06/20/19 16:24,"746 South St, Atlanta, GA 30301" +215450,Apple Airpods Headphones,1,150,07/01/19 01:23,"663 1st St, Los Angeles, CA 90001" +215451,Macbook Pro Laptop,1,1700,06/01/19 11:55,"563 Pine St, Los Angeles, CA 90001" +215452,AAA Batteries (4-pack),1,2.99,06/01/19 13:15,"627 Park St, Portland, OR 97035" +215453,Apple Airpods Headphones,1,150,06/21/19 13:44,"987 13th St, Seattle, WA 98101" +215454,Apple Airpods Headphones,1,150,06/10/19 12:55,"570 Cherry St, San Francisco, CA 94016" +215455,Flatscreen TV,1,300,06/07/19 17:38,"78 8th St, Los Angeles, CA 90001" +215456,Lightning Charging Cable,1,14.95,06/05/19 12:09,"218 Chestnut St, New York City, NY 10001" +215457,USB-C Charging Cable,1,11.95,06/27/19 16:57,"51 Hickory St, San Francisco, CA 94016" +215458,Bose SoundSport Headphones,1,99.99,06/26/19 19:39,"145 Park St, Dallas, TX 75001" +215459,AAA Batteries (4-pack),1,2.99,06/30/19 17:53,"805 Sunset St, Portland, OR 97035" +215460,Macbook Pro Laptop,1,1700,06/14/19 11:55,"620 12th St, New York City, NY 10001" +215461,Wired Headphones,2,11.99,06/16/19 19:53,"381 Madison St, San Francisco, CA 94016" +215462,Flatscreen TV,1,300,06/24/19 16:58,"113 Main St, New York City, NY 10001" +215463,34in Ultrawide Monitor,1,379.99,06/22/19 16:57,"967 Johnson St, San Francisco, CA 94016" +215464,AAA Batteries (4-pack),3,2.99,06/25/19 09:47,"167 13th St, Portland, OR 97035" +215465,USB-C Charging Cable,1,11.95,06/12/19 15:08,"783 Park St, New York City, NY 10001" +215466,Wired Headphones,1,11.99,06/26/19 21:38,"161 Willow St, Atlanta, GA 30301" +215467,AA Batteries (4-pack),1,3.84,06/24/19 16:32,"261 11th St, Boston, MA 02215" +215468,Apple Airpods Headphones,1,150,06/14/19 23:54,"159 North St, San Francisco, CA 94016" +215469,AA Batteries (4-pack),1,3.84,06/01/19 17:14,"454 Dogwood St, San Francisco, CA 94016" +215470,Bose SoundSport Headphones,1,99.99,06/23/19 21:58,"687 7th St, Seattle, WA 98101" +215471,AA Batteries (4-pack),1,3.84,06/18/19 00:14,"931 Walnut St, Austin, TX 73301" +215472,Wired Headphones,1,11.99,06/05/19 19:23,"324 Hill St, San Francisco, CA 94016" +215473,Vareebadd Phone,1,400,06/01/19 19:51,"281 Johnson St, New York City, NY 10001" +215474,34in Ultrawide Monitor,1,379.99,06/10/19 14:45,"742 6th St, Seattle, WA 98101" +215475,Wired Headphones,1,11.99,06/16/19 15:40,"367 Church St, San Francisco, CA 94016" +215476,ThinkPad Laptop,1,999.99,06/16/19 11:15,"708 Main St, New York City, NY 10001" +215477,Wired Headphones,1,11.99,06/19/19 18:26,"354 Washington St, Atlanta, GA 30301" +215478,20in Monitor,1,109.99,06/27/19 21:18,"427 4th St, Boston, MA 02215" +215479,AAA Batteries (4-pack),1,2.99,06/02/19 13:41,"261 Ridge St, Portland, OR 97035" +215480,AA Batteries (4-pack),3,3.84,06/26/19 17:37,"840 6th St, San Francisco, CA 94016" +215481,Wired Headphones,1,11.99,06/11/19 15:48,"317 Elm St, Austin, TX 73301" +215482,Wired Headphones,1,11.99,06/02/19 20:25,"247 2nd St, San Francisco, CA 94016" +215483,Wired Headphones,2,11.99,06/29/19 19:14,"800 Chestnut St, New York City, NY 10001" +215484,Apple Airpods Headphones,1,150,06/18/19 23:49,"497 Willow St, New York City, NY 10001" +215485,Lightning Charging Cable,1,14.95,06/27/19 10:14,"384 Hill St, San Francisco, CA 94016" +215486,Wired Headphones,1,11.99,06/10/19 13:07,"918 Johnson St, Dallas, TX 75001" +215487,AAA Batteries (4-pack),1,2.99,06/16/19 13:09,"705 Lake St, Dallas, TX 75001" +215488,Lightning Charging Cable,1,14.95,06/03/19 07:47,"868 4th St, San Francisco, CA 94016" +215489,Wired Headphones,1,11.99,06/27/19 19:01,"874 Jefferson St, Atlanta, GA 30301" +215490,Google Phone,1,600,06/14/19 00:08,"596 Cherry St, Dallas, TX 75001" +215491,Wired Headphones,1,11.99,06/19/19 10:58,"901 11th St, San Francisco, CA 94016" +215492,USB-C Charging Cable,1,11.95,06/17/19 14:08,"724 Maple St, Los Angeles, CA 90001" +215493,iPhone,1,700,06/11/19 21:35,"297 Wilson St, San Francisco, CA 94016" +215494,Bose SoundSport Headphones,1,99.99,06/12/19 11:45,"71 Maple St, San Francisco, CA 94016" +215495,Lightning Charging Cable,1,14.95,06/14/19 20:12,"380 South St, Portland, ME 04101" +215496,Apple Airpods Headphones,1,150,06/13/19 20:29,"514 Dogwood St, San Francisco, CA 94016" +215497,USB-C Charging Cable,1,11.95,06/15/19 07:21,"970 Spruce St, San Francisco, CA 94016" +215498,AA Batteries (4-pack),2,3.84,06/09/19 16:41,"183 Cedar St, New York City, NY 10001" +215499,27in FHD Monitor,1,149.99,06/05/19 11:29,"104 4th St, Austin, TX 73301" +215500,Bose SoundSport Headphones,1,99.99,06/26/19 18:12,"222 Sunset St, San Francisco, CA 94016" +,,,,, +215501,USB-C Charging Cable,1,11.95,06/07/19 14:30,"479 Dogwood St, Seattle, WA 98101" +215502,Apple Airpods Headphones,1,150,06/02/19 19:25,"565 Highland St, Boston, MA 02215" +215503,Apple Airpods Headphones,1,150,06/12/19 19:58,"825 12th St, Boston, MA 02215" +215504,Lightning Charging Cable,1,14.95,06/16/19 20:48,"246 Walnut St, Los Angeles, CA 90001" +215505,Flatscreen TV,1,300,06/17/19 00:44,"631 Wilson St, New York City, NY 10001" +215506,Bose SoundSport Headphones,1,99.99,06/06/19 19:15,"475 Washington St, Los Angeles, CA 90001" +215507,Apple Airpods Headphones,2,150,06/13/19 11:42,"444 2nd St, Seattle, WA 98101" +215508,Lightning Charging Cable,1,14.95,06/08/19 10:39,"668 Walnut St, San Francisco, CA 94016" +215509,AAA Batteries (4-pack),2,2.99,06/25/19 12:49,"898 West St, New York City, NY 10001" +215510,Apple Airpods Headphones,1,150,06/07/19 19:25,"361 West St, Boston, MA 02215" +215511,Bose SoundSport Headphones,1,99.99,06/21/19 07:24,"482 10th St, Seattle, WA 98101" +215512,AAA Batteries (4-pack),1,2.99,06/27/19 09:24,"868 2nd St, Los Angeles, CA 90001" +215513,USB-C Charging Cable,1,11.95,06/18/19 22:56,"570 Park St, Dallas, TX 75001" +215514,Lightning Charging Cable,1,14.95,06/05/19 12:22,"234 Center St, Seattle, WA 98101" +215515,Wired Headphones,1,11.99,06/25/19 12:20,"428 Cherry St, Seattle, WA 98101" +215516,USB-C Charging Cable,2,11.95,06/04/19 13:42,"352 Cedar St, Dallas, TX 75001" +215517,Google Phone,1,600,06/04/19 11:50,"216 Adams St, San Francisco, CA 94016" +215518,AAA Batteries (4-pack),2,2.99,06/17/19 14:55,"986 4th St, Los Angeles, CA 90001" +215519,iPhone,1,700,06/07/19 09:14,"338 Walnut St, Atlanta, GA 30301" +215520,Bose SoundSport Headphones,1,99.99,06/04/19 15:21,"455 Ridge St, Dallas, TX 75001" +215521,Wired Headphones,1,11.99,06/29/19 23:59,"573 Park St, Portland, OR 97035" +215522,AAA Batteries (4-pack),1,2.99,06/17/19 22:50,"685 Adams St, San Francisco, CA 94016" +215523,AAA Batteries (4-pack),1,2.99,06/10/19 21:08,"411 Park St, San Francisco, CA 94016" +215524,AAA Batteries (4-pack),1,2.99,06/28/19 10:42,"671 South St, Dallas, TX 75001" +215525,Wired Headphones,1,11.99,06/23/19 12:33,"624 2nd St, New York City, NY 10001" +215526,USB-C Charging Cable,1,11.95,06/30/19 15:03,"625 6th St, San Francisco, CA 94016" +215527,27in 4K Gaming Monitor,1,389.99,06/08/19 22:13,"315 Park St, Boston, MA 02215" +215528,AA Batteries (4-pack),1,3.84,06/11/19 17:28,"336 West St, New York City, NY 10001" +215529,AAA Batteries (4-pack),1,2.99,06/06/19 17:51,"754 North St, Seattle, WA 98101" +215530,Wired Headphones,1,11.99,06/03/19 14:13,"393 Elm St, San Francisco, CA 94016" +215531,iPhone,1,700,06/18/19 14:43,"323 8th St, Atlanta, GA 30301" +215532,34in Ultrawide Monitor,1,379.99,06/10/19 20:57,"498 Willow St, New York City, NY 10001" +215533,AA Batteries (4-pack),1,3.84,06/18/19 12:42,"840 Ridge St, New York City, NY 10001" +215534,Wired Headphones,1,11.99,06/07/19 11:08,"752 Spruce St, Los Angeles, CA 90001" +215535,AA Batteries (4-pack),1,3.84,06/27/19 18:21,"196 Maple St, New York City, NY 10001" +215536,Apple Airpods Headphones,1,150,06/07/19 12:36,"938 Spruce St, Seattle, WA 98101" +215537,34in Ultrawide Monitor,1,379.99,06/25/19 14:48,"267 Ridge St, Dallas, TX 75001" +215538,27in 4K Gaming Monitor,1,389.99,06/21/19 15:25,"588 River St, Los Angeles, CA 90001" +215539,Wired Headphones,3,11.99,06/21/19 12:13,"140 Chestnut St, New York City, NY 10001" +215540,USB-C Charging Cable,1,11.95,06/27/19 16:52,"415 12th St, Portland, OR 97035" +215541,Lightning Charging Cable,1,14.95,06/20/19 15:32,"824 Spruce St, Atlanta, GA 30301" +215542,Apple Airpods Headphones,1,150,06/07/19 14:02,"466 Elm St, Boston, MA 02215" +215543,Wired Headphones,1,11.99,06/20/19 12:19,"541 Lincoln St, New York City, NY 10001" +215544,Bose SoundSport Headphones,1,99.99,06/15/19 20:18,"913 14th St, San Francisco, CA 94016" +215545,27in FHD Monitor,1,149.99,06/12/19 07:51,"936 Meadow St, Portland, OR 97035" +215546,Bose SoundSport Headphones,1,99.99,06/08/19 18:13,"917 River St, Portland, OR 97035" +215547,Apple Airpods Headphones,1,150,06/26/19 14:47,"373 Jackson St, New York City, NY 10001" +215547,AAA Batteries (4-pack),2,2.99,06/26/19 14:47,"373 Jackson St, New York City, NY 10001" +215548,Google Phone,1,600,06/24/19 11:32,"882 4th St, Los Angeles, CA 90001" +215549,Apple Airpods Headphones,1,150,06/27/19 22:40,"747 Hickory St, New York City, NY 10001" +215550,AA Batteries (4-pack),1,3.84,06/01/19 20:53,"801 Washington St, San Francisco, CA 94016" +215551,Flatscreen TV,1,300,06/29/19 16:03,"326 Chestnut St, Austin, TX 73301" +215552,iPhone,1,700,06/19/19 12:21,"952 5th St, Portland, ME 04101" +215553,USB-C Charging Cable,1,11.95,06/26/19 17:55,"429 7th St, San Francisco, CA 94016" +215553,Macbook Pro Laptop,1,1700,06/26/19 17:55,"429 7th St, San Francisco, CA 94016" +215554,20in Monitor,1,109.99,06/06/19 22:04,"164 Highland St, Dallas, TX 75001" +215554,Apple Airpods Headphones,1,150,06/06/19 22:04,"164 Highland St, Dallas, TX 75001" +215555,AAA Batteries (4-pack),1,2.99,06/16/19 22:45,"972 Madison St, San Francisco, CA 94016" +215556,27in 4K Gaming Monitor,1,389.99,06/17/19 19:39,"123 Meadow St, Boston, MA 02215" +215557,Apple Airpods Headphones,1,150,06/25/19 17:56,"246 Washington St, Austin, TX 73301" +215558,27in FHD Monitor,1,149.99,06/08/19 18:17,"48 Meadow St, Dallas, TX 75001" +215559,Apple Airpods Headphones,1,150,06/09/19 06:24,"102 Church St, New York City, NY 10001" +215560,Bose SoundSport Headphones,1,99.99,06/15/19 19:19,"731 5th St, New York City, NY 10001" +215561,Apple Airpods Headphones,1,150,06/02/19 22:48,"865 Jefferson St, Austin, TX 73301" +215562,Lightning Charging Cable,1,14.95,06/13/19 12:50,"981 13th St, Los Angeles, CA 90001" +215563,Lightning Charging Cable,1,14.95,06/25/19 09:45,"942 Forest St, San Francisco, CA 94016" +215564,AA Batteries (4-pack),2,3.84,06/05/19 17:05,"829 West St, San Francisco, CA 94016" +215565,27in FHD Monitor,1,149.99,06/06/19 10:04,"125 Church St, San Francisco, CA 94016" +215566,Wired Headphones,1,11.99,06/07/19 18:16,"633 9th St, San Francisco, CA 94016" +215567,Lightning Charging Cable,1,14.95,06/26/19 19:04,"356 Highland St, Dallas, TX 75001" +215568,Apple Airpods Headphones,1,150,06/27/19 14:36,"505 Highland St, San Francisco, CA 94016" +215569,Vareebadd Phone,1,400,06/24/19 10:24,"116 Adams St, Portland, OR 97035" +215570,Apple Airpods Headphones,1,150,06/02/19 14:50,"99 Johnson St, Boston, MA 02215" +215571,Macbook Pro Laptop,1,1700,06/02/19 19:18,"119 Madison St, New York City, NY 10001" +215572,AAA Batteries (4-pack),1,2.99,06/24/19 12:00,"212 Park St, Boston, MA 02215" +215573,Wired Headphones,1,11.99,06/26/19 21:09,"809 6th St, New York City, NY 10001" +215574,Flatscreen TV,1,300,06/20/19 13:44,"317 Sunset St, Los Angeles, CA 90001" +215575,34in Ultrawide Monitor,1,379.99,06/28/19 12:34,"428 Hill St, Portland, OR 97035" +215576,Macbook Pro Laptop,1,1700,06/02/19 09:29,"939 Jefferson St, Austin, TX 73301" +215577,AAA Batteries (4-pack),1,2.99,06/15/19 21:40,"814 Elm St, San Francisco, CA 94016" +215578,Bose SoundSport Headphones,1,99.99,06/14/19 10:15,"603 Jefferson St, San Francisco, CA 94016" +215579,AA Batteries (4-pack),1,3.84,06/26/19 23:39,"67 14th St, San Francisco, CA 94016" +215580,AAA Batteries (4-pack),1,2.99,06/28/19 20:47,"927 11th St, San Francisco, CA 94016" +215581,20in Monitor,1,109.99,06/16/19 22:15,"114 13th St, Boston, MA 02215" +215582,Google Phone,1,600,06/19/19 10:11,"415 River St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +215583,Flatscreen TV,1,300,06/20/19 08:40,"66 Sunset St, New York City, NY 10001" +215584,AA Batteries (4-pack),2,3.84,06/23/19 11:11,"50 River St, Los Angeles, CA 90001" +215585,AAA Batteries (4-pack),1,2.99,06/23/19 15:56,"276 Elm St, New York City, NY 10001" +215586,27in FHD Monitor,1,149.99,06/07/19 22:52,"332 8th St, Dallas, TX 75001" +215587,Macbook Pro Laptop,1,1700,06/05/19 18:45,"974 Highland St, Dallas, TX 75001" +215588,Macbook Pro Laptop,1,1700,06/11/19 16:19,"66 North St, Portland, OR 97035" +215589,USB-C Charging Cable,1,11.95,06/17/19 16:12,"221 5th St, San Francisco, CA 94016" +215590,Apple Airpods Headphones,1,150,06/08/19 22:04,"12 Church St, San Francisco, CA 94016" +215591,USB-C Charging Cable,1,11.95,06/05/19 19:11,"28 14th St, Dallas, TX 75001" +215592,34in Ultrawide Monitor,1,379.99,06/30/19 18:42,"840 11th St, New York City, NY 10001" +215593,34in Ultrawide Monitor,1,379.99,06/03/19 15:54,"867 South St, San Francisco, CA 94016" +215594,34in Ultrawide Monitor,2,379.99,06/26/19 19:41,"36 Meadow St, Los Angeles, CA 90001" +215595,USB-C Charging Cable,1,11.95,06/25/19 22:38,"871 9th St, Los Angeles, CA 90001" +215596,AA Batteries (4-pack),2,3.84,06/25/19 22:26,"277 Madison St, New York City, NY 10001" +215597,Lightning Charging Cable,1,14.95,06/30/19 21:03,"500 Ridge St, Atlanta, GA 30301" +215598,USB-C Charging Cable,1,11.95,06/09/19 20:09,"487 4th St, Dallas, TX 75001" +215599,AA Batteries (4-pack),1,3.84,06/14/19 21:27,"723 Spruce St, New York City, NY 10001" +215600,Apple Airpods Headphones,1,150,06/19/19 10:27,"415 6th St, Atlanta, GA 30301" +215601,USB-C Charging Cable,1,11.95,06/03/19 19:37,"20 6th St, Boston, MA 02215" +215602,20in Monitor,1,109.99,06/04/19 19:34,"816 Center St, New York City, NY 10001" +215603,27in FHD Monitor,1,149.99,06/01/19 22:24,"463 Lake St, San Francisco, CA 94016" +215604,Wired Headphones,1,11.99,06/11/19 19:18,"718 9th St, Seattle, WA 98101" +215605,Lightning Charging Cable,1,14.95,06/08/19 00:07,"596 4th St, Boston, MA 02215" +215606,Wired Headphones,1,11.99,06/12/19 19:55,"673 Elm St, San Francisco, CA 94016" +215607,AA Batteries (4-pack),1,3.84,06/08/19 15:48,"765 14th St, Boston, MA 02215" +215608,AA Batteries (4-pack),1,3.84,06/20/19 19:31,"104 Forest St, New York City, NY 10001" +215609,AA Batteries (4-pack),2,3.84,06/14/19 18:34,"257 13th St, Atlanta, GA 30301" +215610,27in 4K Gaming Monitor,1,389.99,06/10/19 00:46,"526 Cherry St, Los Angeles, CA 90001" +215611,Bose SoundSport Headphones,1,99.99,06/07/19 15:59,"528 10th St, New York City, NY 10001" +215612,AA Batteries (4-pack),1,3.84,06/28/19 10:56,"980 Lincoln St, Los Angeles, CA 90001" +215613,Apple Airpods Headphones,1,150,06/24/19 19:45,"880 Jefferson St, New York City, NY 10001" +215614,USB-C Charging Cable,1,11.95,06/30/19 19:45,"737 Ridge St, San Francisco, CA 94016" +215615,AAA Batteries (4-pack),1,2.99,06/05/19 18:12,"180 2nd St, San Francisco, CA 94016" +215616,AAA Batteries (4-pack),1,2.99,06/28/19 17:40,"619 9th St, Boston, MA 02215" +215617,iPhone,1,700,06/24/19 07:51,"580 Sunset St, Austin, TX 73301" +215618,Lightning Charging Cable,1,14.95,06/14/19 09:23,"777 Highland St, San Francisco, CA 94016" +215619,Flatscreen TV,1,300,06/30/19 07:57,"788 Sunset St, Dallas, TX 75001" +215620,USB-C Charging Cable,1,11.95,06/21/19 07:47,"545 Lakeview St, San Francisco, CA 94016" +215621,AAA Batteries (4-pack),1,2.99,06/04/19 08:08,"46 Lakeview St, San Francisco, CA 94016" +215622,Wired Headphones,1,11.99,06/09/19 08:54,"453 9th St, Seattle, WA 98101" +215623,Google Phone,1,600,06/18/19 14:07,"750 North St, Seattle, WA 98101" +215623,Wired Headphones,1,11.99,06/18/19 14:07,"750 North St, Seattle, WA 98101" +215624,Apple Airpods Headphones,1,150,06/01/19 18:05,"818 4th St, Boston, MA 02215" +215625,iPhone,1,700,06/10/19 10:20,"216 Spruce St, Los Angeles, CA 90001" +215626,USB-C Charging Cable,2,11.95,06/26/19 12:54,"619 Walnut St, Dallas, TX 75001" +215627,Lightning Charging Cable,1,14.95,06/15/19 18:59,"309 Center St, New York City, NY 10001" +215628,USB-C Charging Cable,1,11.95,06/08/19 20:33,"591 7th St, New York City, NY 10001" +215629,Lightning Charging Cable,1,14.95,06/20/19 17:49,"80 Lincoln St, New York City, NY 10001" +215630,LG Washing Machine,1,600.0,06/17/19 08:44,"241 Main St, New York City, NY 10001" +215631,USB-C Charging Cable,1,11.95,06/25/19 20:02,"591 Dogwood St, Portland, OR 97035" +215632,Google Phone,1,600,06/06/19 18:03,"896 Willow St, Boston, MA 02215" +215632,USB-C Charging Cable,1,11.95,06/06/19 18:03,"896 Willow St, Boston, MA 02215" +215633,iPhone,1,700,06/02/19 17:32,"143 Adams St, Atlanta, GA 30301" +215633,Lightning Charging Cable,1,14.95,06/02/19 17:32,"143 Adams St, Atlanta, GA 30301" +215633,Wired Headphones,1,11.99,06/02/19 17:32,"143 Adams St, Atlanta, GA 30301" +215634,AAA Batteries (4-pack),1,2.99,06/19/19 23:57,"961 11th St, San Francisco, CA 94016" +215635,34in Ultrawide Monitor,1,379.99,06/12/19 12:12,"115 2nd St, New York City, NY 10001" +215636,AA Batteries (4-pack),1,3.84,06/17/19 22:56,"571 Madison St, Los Angeles, CA 90001" +215637,AAA Batteries (4-pack),1,2.99,06/25/19 09:20,"442 1st St, New York City, NY 10001" +215638,Flatscreen TV,1,300,06/16/19 18:23,"682 Cherry St, San Francisco, CA 94016" +215639,Wired Headphones,1,11.99,06/04/19 14:36,"878 Washington St, San Francisco, CA 94016" +215640,iPhone,1,700,06/07/19 15:41,"441 Adams St, San Francisco, CA 94016" +215641,27in FHD Monitor,1,149.99,06/14/19 17:37,"156 10th St, New York City, NY 10001" +215642,AAA Batteries (4-pack),2,2.99,06/07/19 07:06,"851 West St, New York City, NY 10001" +215643,AA Batteries (4-pack),2,3.84,06/12/19 15:23,"933 Madison St, Boston, MA 02215" +215644,Bose SoundSport Headphones,1,99.99,06/16/19 13:24,"805 2nd St, New York City, NY 10001" +215645,AA Batteries (4-pack),1,3.84,06/11/19 06:40,"558 Jackson St, Seattle, WA 98101" +215646,USB-C Charging Cable,1,11.95,06/10/19 23:10,"160 Walnut St, Austin, TX 73301" +215647,27in 4K Gaming Monitor,1,389.99,06/08/19 13:15,"334 Cherry St, New York City, NY 10001" +215648,34in Ultrawide Monitor,1,379.99,06/28/19 21:21,"608 Jackson St, Seattle, WA 98101" +215649,Bose SoundSport Headphones,1,99.99,06/10/19 22:02,"742 Meadow St, Seattle, WA 98101" +215650,AA Batteries (4-pack),1,3.84,06/21/19 16:59,"877 Ridge St, Boston, MA 02215" +215651,Lightning Charging Cable,1,14.95,06/25/19 22:23,"475 Madison St, Boston, MA 02215" +215652,AA Batteries (4-pack),1,3.84,06/23/19 15:13,"181 West St, Los Angeles, CA 90001" +215653,Bose SoundSport Headphones,1,99.99,06/29/19 16:10,"383 Washington St, Seattle, WA 98101" +215654,Wired Headphones,1,11.99,06/12/19 18:37,"638 11th St, Seattle, WA 98101" +215655,27in 4K Gaming Monitor,1,389.99,06/03/19 19:20,"645 Meadow St, Los Angeles, CA 90001" +215656,Apple Airpods Headphones,1,150,06/11/19 12:20,"531 Hickory St, Los Angeles, CA 90001" +215657,Google Phone,1,600,06/08/19 11:41,"127 9th St, San Francisco, CA 94016" +215657,USB-C Charging Cable,1,11.95,06/08/19 11:41,"127 9th St, San Francisco, CA 94016" +215658,Flatscreen TV,1,300,06/01/19 13:02,"992 Willow St, Seattle, WA 98101" +215659,34in Ultrawide Monitor,1,379.99,06/24/19 09:47,"118 Lakeview St, San Francisco, CA 94016" +215660,iPhone,1,700,06/09/19 22:20,"79 8th St, San Francisco, CA 94016" +215661,USB-C Charging Cable,2,11.95,06/20/19 14:11,"839 Washington St, Los Angeles, CA 90001" +215662,AA Batteries (4-pack),1,3.84,06/10/19 01:42,"53 South St, Seattle, WA 98101" +215663,iPhone,1,700,06/13/19 18:58,"630 Walnut St, New York City, NY 10001" +215664,ThinkPad Laptop,1,999.99,06/04/19 10:08,"392 Jackson St, Los Angeles, CA 90001" +215665,Lightning Charging Cable,2,14.95,06/29/19 23:37,"730 Park St, Portland, OR 97035" +215666,Apple Airpods Headphones,1,150,06/08/19 06:10,"614 Lincoln St, Atlanta, GA 30301" +215667,iPhone,1,700,06/11/19 09:20,"508 10th St, Los Angeles, CA 90001" +215668,Bose SoundSport Headphones,1,99.99,06/05/19 10:43,"35 Lincoln St, Portland, OR 97035" +215669,Wired Headphones,1,11.99,06/28/19 20:11,"994 7th St, San Francisco, CA 94016" +215670,AAA Batteries (4-pack),1,2.99,06/04/19 16:19,"307 9th St, San Francisco, CA 94016" +215671,AA Batteries (4-pack),1,3.84,06/07/19 08:20,"324 12th St, Atlanta, GA 30301" +215672,Apple Airpods Headphones,1,150,06/01/19 16:30,"577 Meadow St, San Francisco, CA 94016" +215673,USB-C Charging Cable,2,11.95,06/06/19 11:12,"262 Elm St, Los Angeles, CA 90001" +215674,27in FHD Monitor,1,149.99,06/21/19 13:49,"402 5th St, Atlanta, GA 30301" +215675,Lightning Charging Cable,1,14.95,06/06/19 18:19,"83 Spruce St, Atlanta, GA 30301" +215676,Lightning Charging Cable,1,14.95,06/30/19 19:21,"216 Johnson St, Seattle, WA 98101" +215677,34in Ultrawide Monitor,1,379.99,06/30/19 20:41,"89 Highland St, Dallas, TX 75001" +215678,Bose SoundSport Headphones,1,99.99,06/28/19 18:28,"699 Pine St, Austin, TX 73301" +215679,AA Batteries (4-pack),1,3.84,06/12/19 10:08,"701 Johnson St, Portland, OR 97035" +215680,Lightning Charging Cable,1,14.95,06/13/19 21:36,"680 1st St, Boston, MA 02215" +215681,27in FHD Monitor,1,149.99,06/25/19 18:39,"618 Chestnut St, Dallas, TX 75001" +215682,Apple Airpods Headphones,1,150,06/09/19 17:45,"330 10th St, Portland, OR 97035" +215683,USB-C Charging Cable,1,11.95,06/25/19 22:00,"552 10th St, Los Angeles, CA 90001" +215684,Lightning Charging Cable,1,14.95,06/23/19 11:39,"276 Meadow St, Dallas, TX 75001" +215685,Vareebadd Phone,1,400,06/29/19 20:37,"444 Meadow St, Austin, TX 73301" +215685,USB-C Charging Cable,1,11.95,06/29/19 20:37,"444 Meadow St, Austin, TX 73301" +215686,AAA Batteries (4-pack),1,2.99,06/29/19 18:54,"507 Cherry St, Portland, OR 97035" +215687,AA Batteries (4-pack),2,3.84,06/01/19 10:51,"441 Highland St, Boston, MA 02215" +215688,Apple Airpods Headphones,1,150,06/12/19 22:03,"917 Johnson St, Los Angeles, CA 90001" +215689,AAA Batteries (4-pack),1,2.99,06/19/19 18:33,"841 Lake St, San Francisco, CA 94016" +215690,USB-C Charging Cable,1,11.95,06/20/19 20:52,"444 Wilson St, Boston, MA 02215" +215691,Wired Headphones,1,11.99,06/15/19 08:06,"599 10th St, Boston, MA 02215" +215692,27in 4K Gaming Monitor,1,389.99,06/26/19 07:34,"505 Jackson St, Seattle, WA 98101" +215693,Apple Airpods Headphones,1,150,06/14/19 20:56,"234 12th St, Seattle, WA 98101" +215694,iPhone,1,700,06/15/19 13:10,"197 Park St, Austin, TX 73301" +215695,Apple Airpods Headphones,1,150,06/26/19 00:15,"692 7th St, San Francisco, CA 94016" +215696,34in Ultrawide Monitor,1,379.99,06/08/19 20:36,"792 Pine St, San Francisco, CA 94016" +215697,Bose SoundSport Headphones,1,99.99,06/10/19 10:08,"90 Jefferson St, Seattle, WA 98101" +215698,USB-C Charging Cable,1,11.95,06/27/19 23:49,"599 Washington St, Los Angeles, CA 90001" +215699,Lightning Charging Cable,1,14.95,06/09/19 15:00,"357 Wilson St, Los Angeles, CA 90001" +215700,Lightning Charging Cable,1,14.95,06/18/19 06:00,"898 West St, Dallas, TX 75001" +215701,27in 4K Gaming Monitor,1,389.99,06/22/19 20:35,"29 Johnson St, Los Angeles, CA 90001" +215702,Wired Headphones,3,11.99,06/24/19 13:18,"231 Jackson St, New York City, NY 10001" +215703,AAA Batteries (4-pack),1,2.99,06/23/19 11:16,"557 8th St, Seattle, WA 98101" +215704,AAA Batteries (4-pack),1,2.99,06/13/19 14:12,"227 8th St, Los Angeles, CA 90001" +215705,Wired Headphones,1,11.99,06/09/19 23:41,"640 Wilson St, San Francisco, CA 94016" +215706,Google Phone,1,600,06/29/19 23:21,"805 Adams St, San Francisco, CA 94016" +215707,AAA Batteries (4-pack),1,2.99,06/08/19 12:53,"668 Dogwood St, Boston, MA 02215" +215708,Bose SoundSport Headphones,1,99.99,06/28/19 10:11,"414 Willow St, San Francisco, CA 94016" +215709,ThinkPad Laptop,1,999.99,06/18/19 15:03,"587 Lakeview St, Los Angeles, CA 90001" +215710,Google Phone,1,600,06/21/19 21:48,"544 Cherry St, Portland, ME 04101" +215711,AAA Batteries (4-pack),1,2.99,06/10/19 20:14,"197 Lakeview St, Atlanta, GA 30301" +215712,Wired Headphones,1,11.99,06/06/19 20:00,"716 Maple St, Seattle, WA 98101" +215713,27in FHD Monitor,1,149.99,06/29/19 13:07,"413 Spruce St, New York City, NY 10001" +215714,ThinkPad Laptop,1,999.99,06/18/19 18:25,"5 Washington St, Austin, TX 73301" +215715,USB-C Charging Cable,1,11.95,06/29/19 16:45,"483 Willow St, San Francisco, CA 94016" +215716,AAA Batteries (4-pack),1,2.99,06/13/19 14:30,"738 8th St, Austin, TX 73301" +215717,USB-C Charging Cable,1,11.95,06/14/19 13:49,"447 Spruce St, Los Angeles, CA 90001" +215718,27in 4K Gaming Monitor,1,389.99,06/09/19 19:21,"662 River St, San Francisco, CA 94016" +215719,Apple Airpods Headphones,1,150,06/09/19 09:30,"71 Sunset St, San Francisco, CA 94016" +215720,Lightning Charging Cable,1,14.95,06/30/19 09:15,"110 Adams St, San Francisco, CA 94016" +215721,iPhone,1,700,06/10/19 14:37,"740 Dogwood St, Los Angeles, CA 90001" +215722,Lightning Charging Cable,1,14.95,06/13/19 08:05,"848 1st St, Los Angeles, CA 90001" +215723,Bose SoundSport Headphones,1,99.99,06/21/19 23:49,"754 West St, Dallas, TX 75001" +215724,AA Batteries (4-pack),1,3.84,06/05/19 00:08,"535 5th St, San Francisco, CA 94016" +215725,27in 4K Gaming Monitor,1,389.99,06/12/19 08:55,"979 Madison St, Boston, MA 02215" +215726,Macbook Pro Laptop,1,1700,06/03/19 20:30,"813 13th St, Boston, MA 02215" +215727,Flatscreen TV,1,300,06/15/19 09:33,"386 Ridge St, Portland, OR 97035" +215728,AAA Batteries (4-pack),1,2.99,06/05/19 12:15,"15 Sunset St, San Francisco, CA 94016" +215729,Apple Airpods Headphones,1,150,06/18/19 16:49,"63 13th St, Dallas, TX 75001" +215730,Flatscreen TV,1,300,06/23/19 18:41,"24 Jefferson St, Boston, MA 02215" +215731,27in 4K Gaming Monitor,1,389.99,06/29/19 19:44,"755 Walnut St, Boston, MA 02215" +215732,AA Batteries (4-pack),1,3.84,06/09/19 12:25,"92 Willow St, Los Angeles, CA 90001" +215733,Lightning Charging Cable,1,14.95,06/04/19 12:55,"646 12th St, San Francisco, CA 94016" +215734,Flatscreen TV,1,300,06/04/19 18:21,"128 Pine St, New York City, NY 10001" +215735,27in FHD Monitor,1,149.99,06/19/19 09:04,"376 Jackson St, San Francisco, CA 94016" +215736,Wired Headphones,1,11.99,06/26/19 10:00,"942 11th St, San Francisco, CA 94016" +215737,34in Ultrawide Monitor,1,379.99,06/08/19 12:16,"604 Lake St, Atlanta, GA 30301" +215738,Wired Headphones,1,11.99,06/17/19 18:36,"729 Lakeview St, New York City, NY 10001" +215739,AA Batteries (4-pack),2,3.84,06/12/19 15:23,"472 Dogwood St, Boston, MA 02215" +215740,AA Batteries (4-pack),1,3.84,06/08/19 15:11,"562 Johnson St, Atlanta, GA 30301" +215741,Wired Headphones,1,11.99,06/30/19 15:49,"393 Jackson St, Atlanta, GA 30301" +215742,AA Batteries (4-pack),1,3.84,06/17/19 15:22,"562 Highland St, Atlanta, GA 30301" +215743,Lightning Charging Cable,1,14.95,06/17/19 06:31,"607 Spruce St, New York City, NY 10001" +215744,34in Ultrawide Monitor,1,379.99,06/06/19 00:33,"101 8th St, San Francisco, CA 94016" +215745,ThinkPad Laptop,1,999.99,06/23/19 14:29,"189 Ridge St, Portland, ME 04101" +215746,Lightning Charging Cable,1,14.95,06/05/19 01:15,"861 Hill St, Boston, MA 02215" +215747,Apple Airpods Headphones,1,150,06/27/19 17:33,"275 Meadow St, Los Angeles, CA 90001" +215748,AAA Batteries (4-pack),3,2.99,06/04/19 18:12,"789 Lakeview St, San Francisco, CA 94016" +215749,Wired Headphones,1,11.99,06/20/19 22:08,"167 Elm St, Portland, OR 97035" +215750,Wired Headphones,1,11.99,06/19/19 19:00,"18 Highland St, San Francisco, CA 94016" +215751,Lightning Charging Cable,1,14.95,06/12/19 23:03,"715 1st St, New York City, NY 10001" +215752,Bose SoundSport Headphones,1,99.99,06/28/19 12:54,"395 8th St, Austin, TX 73301" +215753,Lightning Charging Cable,1,14.95,06/14/19 22:23,"796 Wilson St, New York City, NY 10001" +215754,ThinkPad Laptop,1,999.99,06/25/19 13:47,"987 Adams St, Portland, OR 97035" +215755,AAA Batteries (4-pack),1,2.99,06/30/19 20:13,"468 Chestnut St, San Francisco, CA 94016" +215756,Lightning Charging Cable,1,14.95,06/27/19 22:14,"425 Meadow St, Los Angeles, CA 90001" +215757,Google Phone,1,600,06/11/19 19:20,"492 Spruce St, Atlanta, GA 30301" +215757,USB-C Charging Cable,1,11.95,06/11/19 19:20,"492 Spruce St, Atlanta, GA 30301" +215758,USB-C Charging Cable,1,11.95,06/25/19 13:05,"929 9th St, Portland, ME 04101" +215759,Google Phone,1,600,06/05/19 00:37,"477 Pine St, San Francisco, CA 94016" +215759,USB-C Charging Cable,1,11.95,06/05/19 00:37,"477 Pine St, San Francisco, CA 94016" +215760,AAA Batteries (4-pack),2,2.99,06/07/19 07:31,"742 Maple St, Atlanta, GA 30301" +215761,27in FHD Monitor,1,149.99,06/05/19 02:59,"911 1st St, Boston, MA 02215" +215762,Wired Headphones,2,11.99,06/07/19 06:32,"73 South St, San Francisco, CA 94016" +215763,LG Washing Machine,1,600.0,06/26/19 03:41,"390 Pine St, Los Angeles, CA 90001" +215764,ThinkPad Laptop,1,999.99,06/13/19 11:05,"204 Park St, Atlanta, GA 30301" +215765,Lightning Charging Cable,1,14.95,06/17/19 11:30,"949 Lake St, New York City, NY 10001" +215766,Apple Airpods Headphones,1,150,06/30/19 19:55,"119 Sunset St, Portland, OR 97035" +215767,34in Ultrawide Monitor,1,379.99,06/23/19 14:55,"212 4th St, San Francisco, CA 94016" +215768,Wired Headphones,1,11.99,06/16/19 13:45,"21 5th St, Boston, MA 02215" +215769,27in 4K Gaming Monitor,1,389.99,06/29/19 19:02,"415 Wilson St, New York City, NY 10001" +215770,Lightning Charging Cable,1,14.95,06/13/19 15:35,"621 12th St, Seattle, WA 98101" +215771,AAA Batteries (4-pack),1,2.99,06/14/19 02:03,"997 Church St, Atlanta, GA 30301" +215772,AA Batteries (4-pack),4,3.84,06/25/19 01:14,"854 Willow St, San Francisco, CA 94016" +215773,AAA Batteries (4-pack),2,2.99,06/26/19 00:40,"831 Johnson St, New York City, NY 10001" +215774,Apple Airpods Headphones,1,150,06/09/19 22:15,"473 Hickory St, San Francisco, CA 94016" +215775,AA Batteries (4-pack),1,3.84,06/06/19 21:14,"835 Center St, Seattle, WA 98101" +215776,AA Batteries (4-pack),1,3.84,06/22/19 17:16,"710 Forest St, San Francisco, CA 94016" +215777,USB-C Charging Cable,1,11.95,06/23/19 19:26,"822 Walnut St, Los Angeles, CA 90001" +215778,AAA Batteries (4-pack),2,2.99,06/16/19 20:51,"689 Lake St, New York City, NY 10001" +215779,34in Ultrawide Monitor,1,379.99,06/28/19 18:55,"882 7th St, Los Angeles, CA 90001" +215780,27in FHD Monitor,1,149.99,06/01/19 10:12,"969 Lincoln St, San Francisco, CA 94016" +215781,ThinkPad Laptop,1,999.99,06/16/19 14:30,"46 West St, Dallas, TX 75001" +215782,AA Batteries (4-pack),1,3.84,06/12/19 17:40,"394 Center St, New York City, NY 10001" +215783,Lightning Charging Cable,1,14.95,06/24/19 20:50,"959 Hickory St, Portland, ME 04101" +215784,Bose SoundSport Headphones,1,99.99,06/26/19 12:14,"806 14th St, Seattle, WA 98101" +215785,Lightning Charging Cable,1,14.95,06/04/19 17:18,"504 13th St, Los Angeles, CA 90001" +215786,AAA Batteries (4-pack),1,2.99,06/15/19 15:04,"467 Jackson St, San Francisco, CA 94016" +215787,Apple Airpods Headphones,1,150,06/25/19 21:12,"744 Ridge St, Atlanta, GA 30301" +215788,34in Ultrawide Monitor,1,379.99,06/08/19 02:11,"988 Madison St, New York City, NY 10001" +215789,AAA Batteries (4-pack),2,2.99,06/18/19 11:07,"228 Highland St, Los Angeles, CA 90001" +215790,AA Batteries (4-pack),1,3.84,06/30/19 21:48,"949 Madison St, Los Angeles, CA 90001" +215791,20in Monitor,1,109.99,06/13/19 20:12,"526 Cedar St, Boston, MA 02215" +215792,Lightning Charging Cable,1,14.95,06/17/19 08:38,"778 7th St, Seattle, WA 98101" +215793,Apple Airpods Headphones,1,150,06/16/19 08:03,"968 Sunset St, Dallas, TX 75001" +215794,Lightning Charging Cable,1,14.95,06/23/19 19:14,"397 Main St, San Francisco, CA 94016" +215795,AAA Batteries (4-pack),1,2.99,06/25/19 20:16,"152 Chestnut St, Los Angeles, CA 90001" +215796,USB-C Charging Cable,1,11.95,06/27/19 13:08,"563 Walnut St, Los Angeles, CA 90001" +215797,AA Batteries (4-pack),1,3.84,06/06/19 16:28,"138 Elm St, Boston, MA 02215" +215798,Apple Airpods Headphones,1,150,06/11/19 18:05,"770 Meadow St, Boston, MA 02215" +215799,ThinkPad Laptop,1,999.99,06/17/19 12:08,"558 Lincoln St, Los Angeles, CA 90001" +215800,27in 4K Gaming Monitor,1,389.99,06/02/19 14:46,"924 5th St, Seattle, WA 98101" +215801,AA Batteries (4-pack),2,3.84,06/23/19 11:24,"639 River St, New York City, NY 10001" +215802,Bose SoundSport Headphones,1,99.99,06/04/19 19:29,"671 Meadow St, Austin, TX 73301" +215803,34in Ultrawide Monitor,1,379.99,06/29/19 12:26,"200 Lakeview St, Seattle, WA 98101" +215804,20in Monitor,1,109.99,06/17/19 10:14,"48 Pine St, Austin, TX 73301" +215805,Google Phone,1,600,06/08/19 21:36,"251 Forest St, Portland, OR 97035" +215806,AAA Batteries (4-pack),2,2.99,06/18/19 08:43,"728 Jackson St, San Francisco, CA 94016" +215807,27in 4K Gaming Monitor,1,389.99,06/26/19 09:09,"762 Forest St, Seattle, WA 98101" +215808,Bose SoundSport Headphones,1,99.99,06/09/19 12:41,"850 Ridge St, San Francisco, CA 94016" +215809,34in Ultrawide Monitor,1,379.99,06/16/19 15:58,"494 Hill St, San Francisco, CA 94016" +215810,USB-C Charging Cable,1,11.95,06/02/19 17:06,"148 13th St, San Francisco, CA 94016" +215811,AA Batteries (4-pack),1,3.84,06/17/19 13:04,"990 Hickory St, New York City, NY 10001" +215812,Lightning Charging Cable,1,14.95,06/04/19 17:57,"619 Meadow St, Los Angeles, CA 90001" +215813,AAA Batteries (4-pack),2,2.99,06/30/19 23:05,"930 Cedar St, Seattle, WA 98101" +215814,ThinkPad Laptop,1,999.99,06/02/19 21:56,"360 Park St, Dallas, TX 75001" +215815,Apple Airpods Headphones,1,150,06/25/19 13:18,"981 Church St, Boston, MA 02215" +215816,AA Batteries (4-pack),1,3.84,06/11/19 23:01,"107 Wilson St, San Francisco, CA 94016" +215817,LG Washing Machine,1,600.0,06/20/19 21:03,"364 12th St, New York City, NY 10001" +215818,AAA Batteries (4-pack),3,2.99,06/24/19 07:14,"261 Madison St, Seattle, WA 98101" +215819,iPhone,1,700,06/20/19 19:02,"726 Willow St, Boston, MA 02215" +215820,AAA Batteries (4-pack),1,2.99,06/26/19 17:30,"182 Wilson St, San Francisco, CA 94016" +215821,Wired Headphones,1,11.99,06/02/19 21:02,"514 West St, Boston, MA 02215" +215822,Macbook Pro Laptop,1,1700,06/03/19 16:28,"778 Dogwood St, San Francisco, CA 94016" +215823,Bose SoundSport Headphones,1,99.99,06/14/19 07:07,"574 Jefferson St, San Francisco, CA 94016" +215824,AA Batteries (4-pack),1,3.84,06/30/19 21:29,"373 Lincoln St, Los Angeles, CA 90001" +215825,Lightning Charging Cable,1,14.95,06/14/19 07:58,"217 Hill St, San Francisco, CA 94016" +215826,Bose SoundSport Headphones,1,99.99,06/26/19 14:26,"863 Madison St, New York City, NY 10001" +215827,27in FHD Monitor,1,149.99,06/16/19 19:41,"430 Johnson St, New York City, NY 10001" +215828,27in FHD Monitor,1,149.99,06/20/19 14:28,"99 7th St, Los Angeles, CA 90001" +215829,Lightning Charging Cable,1,14.95,06/12/19 11:35,"666 13th St, Boston, MA 02215" +215830,Apple Airpods Headphones,1,150,06/26/19 13:49,"177 4th St, San Francisco, CA 94016" +215831,34in Ultrawide Monitor,1,379.99,06/04/19 01:44,"52 North St, San Francisco, CA 94016" +215832,Bose SoundSport Headphones,1,99.99,06/22/19 18:20,"605 River St, Los Angeles, CA 90001" +215833,Lightning Charging Cable,1,14.95,06/19/19 22:37,"491 Park St, Boston, MA 02215" +215834,Flatscreen TV,1,300,06/09/19 10:35,"973 Spruce St, San Francisco, CA 94016" +215835,USB-C Charging Cable,1,11.95,06/28/19 21:10,"61 Madison St, Seattle, WA 98101" +215836,Wired Headphones,1,11.99,06/20/19 21:07,"441 6th St, Los Angeles, CA 90001" +215837,Macbook Pro Laptop,1,1700,06/03/19 21:57,"92 Spruce St, Dallas, TX 75001" +215838,Wired Headphones,1,11.99,06/21/19 10:00,"25 Church St, San Francisco, CA 94016" +215839,AA Batteries (4-pack),1,3.84,06/26/19 17:59,"936 11th St, Boston, MA 02215" +215840,AAA Batteries (4-pack),2,2.99,06/23/19 12:15,"305 Hill St, Los Angeles, CA 90001" +215841,Apple Airpods Headphones,1,150,06/27/19 13:35,"352 Elm St, San Francisco, CA 94016" +215842,Bose SoundSport Headphones,1,99.99,06/16/19 18:12,"100 Adams St, Portland, OR 97035" +215843,Lightning Charging Cable,1,14.95,06/10/19 10:20,"518 1st St, New York City, NY 10001" +215844,Apple Airpods Headphones,1,150,06/27/19 04:39,"126 Maple St, Los Angeles, CA 90001" +215845,AAA Batteries (4-pack),3,2.99,06/16/19 12:01,"950 Jefferson St, New York City, NY 10001" +215846,Lightning Charging Cable,1,14.95,06/25/19 19:38,"105 Elm St, San Francisco, CA 94016" +215847,Bose SoundSport Headphones,1,99.99,06/30/19 10:34,"901 6th St, New York City, NY 10001" +215848,AA Batteries (4-pack),2,3.84,06/22/19 23:45,"185 North St, Dallas, TX 75001" +215849,34in Ultrawide Monitor,1,379.99,06/14/19 16:43,"371 Park St, Boston, MA 02215" +215850,AAA Batteries (4-pack),1,2.99,06/26/19 20:59,"342 Washington St, Seattle, WA 98101" +215851,AAA Batteries (4-pack),1,2.99,06/16/19 12:16,"464 13th St, San Francisco, CA 94016" +215852,AA Batteries (4-pack),2,3.84,06/12/19 12:23,"581 Madison St, Boston, MA 02215" +215853,27in 4K Gaming Monitor,1,389.99,06/23/19 18:54,"562 8th St, Los Angeles, CA 90001" +215854,USB-C Charging Cable,1,11.95,06/15/19 19:18,"804 Park St, Atlanta, GA 30301" +215854,27in 4K Gaming Monitor,1,389.99,06/15/19 19:18,"804 Park St, Atlanta, GA 30301" +215855,Apple Airpods Headphones,1,150,06/07/19 18:18,"231 1st St, San Francisco, CA 94016" +215856,Wired Headphones,1,11.99,06/27/19 22:35,"598 11th St, New York City, NY 10001" +215857,Lightning Charging Cable,1,14.95,06/26/19 18:17,"253 North St, Portland, ME 04101" +215858,AAA Batteries (4-pack),3,2.99,06/23/19 21:12,"855 11th St, Boston, MA 02215" +215859,AA Batteries (4-pack),3,3.84,06/04/19 11:41,"302 Park St, Los Angeles, CA 90001" +215860,Flatscreen TV,1,300,06/07/19 12:45,"188 Adams St, Atlanta, GA 30301" +215861,Bose SoundSport Headphones,1,99.99,06/28/19 15:06,"392 Spruce St, Portland, OR 97035" +215862,27in FHD Monitor,1,149.99,06/13/19 13:19,"563 Washington St, San Francisco, CA 94016" +215863,20in Monitor,1,109.99,06/02/19 16:04,"939 Willow St, New York City, NY 10001" +215864,USB-C Charging Cable,1,11.95,06/21/19 19:49,"809 North St, New York City, NY 10001" +215865,Macbook Pro Laptop,1,1700,06/26/19 23:45,"775 11th St, San Francisco, CA 94016" +215866,AA Batteries (4-pack),2,3.84,06/07/19 17:35,"398 River St, Boston, MA 02215" +215867,Wired Headphones,1,11.99,06/15/19 21:18,"774 Park St, Portland, OR 97035" +215868,Bose SoundSport Headphones,1,99.99,06/25/19 18:43,"630 1st St, San Francisco, CA 94016" +215869,Apple Airpods Headphones,1,150,06/20/19 17:05,"85 Dogwood St, San Francisco, CA 94016" +215870,Lightning Charging Cable,1,14.95,06/20/19 19:13,"439 West St, Seattle, WA 98101" +215871,Apple Airpods Headphones,1,150,06/22/19 07:35,"485 Johnson St, Boston, MA 02215" +215872,AAA Batteries (4-pack),1,2.99,06/08/19 00:06,"985 11th St, New York City, NY 10001" +215873,27in FHD Monitor,1,149.99,06/29/19 13:23,"362 Main St, Austin, TX 73301" +215874,USB-C Charging Cable,1,11.95,06/02/19 17:07,"548 Jackson St, Portland, OR 97035" +215875,Apple Airpods Headphones,1,150,06/07/19 10:47,"802 Lakeview St, New York City, NY 10001" +215876,USB-C Charging Cable,1,11.95,06/03/19 18:17,"683 Adams St, San Francisco, CA 94016" +215877,Lightning Charging Cable,1,14.95,06/29/19 16:17,"590 Park St, Portland, OR 97035" +215878,iPhone,1,700,06/08/19 14:38,"487 1st St, Portland, OR 97035" +215878,Lightning Charging Cable,2,14.95,06/08/19 14:38,"487 1st St, Portland, OR 97035" +215879,Vareebadd Phone,1,400,06/02/19 20:01,"598 Willow St, Los Angeles, CA 90001" +215880,20in Monitor,1,109.99,06/17/19 16:30,"863 4th St, Austin, TX 73301" +215881,AA Batteries (4-pack),1,3.84,06/20/19 22:36,"576 River St, San Francisco, CA 94016" +215882,USB-C Charging Cable,1,11.95,06/08/19 04:47,"396 Washington St, San Francisco, CA 94016" +215883,Bose SoundSport Headphones,1,99.99,06/11/19 10:05,"667 Meadow St, Seattle, WA 98101" +215884,LG Dryer,1,600.0,06/05/19 19:43,"535 Willow St, Dallas, TX 75001" +215885,Vareebadd Phone,1,400,06/23/19 09:14,"144 Hill St, Seattle, WA 98101" +215886,Vareebadd Phone,1,400,06/09/19 02:13,"101 Cedar St, San Francisco, CA 94016" +215887,Wired Headphones,1,11.99,06/25/19 10:42,"922 Wilson St, San Francisco, CA 94016" +215888,27in FHD Monitor,1,149.99,06/08/19 22:51,"449 7th St, Dallas, TX 75001" +215889,Apple Airpods Headphones,1,150,06/18/19 18:14,"188 5th St, San Francisco, CA 94016" +215890,20in Monitor,1,109.99,06/21/19 09:20,"688 Ridge St, Boston, MA 02215" +215891,AA Batteries (4-pack),1,3.84,06/28/19 18:09,"721 Sunset St, Portland, OR 97035" +215892,AA Batteries (4-pack),2,3.84,06/09/19 15:06,"633 8th St, San Francisco, CA 94016" +215893,Wired Headphones,1,11.99,06/06/19 13:23,"561 4th St, Boston, MA 02215" +215894,Bose SoundSport Headphones,1,99.99,06/15/19 12:45,"453 6th St, San Francisco, CA 94016" +215895,Apple Airpods Headphones,1,150,06/14/19 06:22,"74 Jackson St, San Francisco, CA 94016" +215896,Macbook Pro Laptop,1,1700,06/09/19 17:07,"638 Willow St, Atlanta, GA 30301" +215897,AAA Batteries (4-pack),1,2.99,06/13/19 08:51,"853 10th St, San Francisco, CA 94016" +215898,27in FHD Monitor,1,149.99,06/23/19 19:58,"752 Forest St, New York City, NY 10001" +215899,AAA Batteries (4-pack),1,2.99,06/27/19 18:13,"777 Park St, San Francisco, CA 94016" +215900,AA Batteries (4-pack),1,3.84,06/10/19 09:41,"817 Hickory St, San Francisco, CA 94016" +215901,Wired Headphones,1,11.99,06/19/19 22:02,"821 Church St, San Francisco, CA 94016" +215902,Apple Airpods Headphones,1,150,06/23/19 19:10,"967 14th St, New York City, NY 10001" +215903,Google Phone,1,600,06/06/19 09:12,"886 Washington St, Seattle, WA 98101" +215904,Wired Headphones,1,11.99,06/05/19 23:25,"241 Chestnut St, Austin, TX 73301" +215905,Wired Headphones,1,11.99,06/21/19 08:35,"959 West St, San Francisco, CA 94016" +215906,34in Ultrawide Monitor,1,379.99,06/12/19 00:23,"475 Pine St, San Francisco, CA 94016" +215907,27in FHD Monitor,1,149.99,06/26/19 21:48,"109 14th St, Boston, MA 02215" +215908,Google Phone,1,600,06/14/19 18:44,"694 8th St, San Francisco, CA 94016" +215909,Lightning Charging Cable,1,14.95,06/29/19 17:29,"525 Willow St, Boston, MA 02215" +215910,27in 4K Gaming Monitor,1,389.99,06/18/19 11:13,"793 Walnut St, San Francisco, CA 94016" +215911,USB-C Charging Cable,1,11.95,06/05/19 17:19,"38 Jackson St, San Francisco, CA 94016" +215912,Lightning Charging Cable,1,14.95,06/29/19 11:34,"940 2nd St, New York City, NY 10001" +215913,USB-C Charging Cable,1,11.95,06/12/19 13:37,"855 6th St, Austin, TX 73301" +215914,Lightning Charging Cable,2,14.95,06/29/19 23:30,"952 2nd St, San Francisco, CA 94016" +215915,Apple Airpods Headphones,1,150,06/28/19 10:56,"571 Park St, Portland, OR 97035" +215916,Bose SoundSport Headphones,1,99.99,06/21/19 20:04,"913 Lakeview St, Los Angeles, CA 90001" +215917,Wired Headphones,2,11.99,06/01/19 12:50,"384 Madison St, New York City, NY 10001" +215918,Wired Headphones,1,11.99,06/12/19 22:37,"898 Adams St, Portland, ME 04101" +215918,Wired Headphones,1,11.99,06/12/19 22:37,"898 Adams St, Portland, ME 04101" +215919,Wired Headphones,1,11.99,06/09/19 10:56,"276 Walnut St, New York City, NY 10001" +215920,20in Monitor,1,109.99,06/24/19 17:04,"754 Hickory St, New York City, NY 10001" +215921,34in Ultrawide Monitor,1,379.99,06/07/19 09:16,"888 10th St, Boston, MA 02215" +215922,Lightning Charging Cable,1,14.95,06/30/19 10:50,"679 Johnson St, Boston, MA 02215" +215923,USB-C Charging Cable,1,11.95,06/06/19 12:41,"569 Sunset St, Dallas, TX 75001" +215924,USB-C Charging Cable,1,11.95,06/19/19 16:15,"447 Dogwood St, Los Angeles, CA 90001" +215925,Lightning Charging Cable,1,14.95,06/07/19 23:45,"118 11th St, Los Angeles, CA 90001" +215926,AA Batteries (4-pack),2,3.84,06/11/19 19:56,"869 1st St, San Francisco, CA 94016" +215927,Apple Airpods Headphones,1,150,06/12/19 20:41,"986 River St, Seattle, WA 98101" +215928,Bose SoundSport Headphones,1,99.99,06/13/19 09:37,"671 Dogwood St, Los Angeles, CA 90001" +215929,AAA Batteries (4-pack),1,2.99,06/11/19 12:27,"564 West St, Atlanta, GA 30301" +215930,27in 4K Gaming Monitor,1,389.99,06/30/19 17:28,"744 Sunset St, New York City, NY 10001" +215931,USB-C Charging Cable,1,11.95,06/15/19 00:10,"546 10th St, Dallas, TX 75001" +215932,USB-C Charging Cable,1,11.95,06/05/19 11:50,"924 Pine St, Seattle, WA 98101" +215933,Lightning Charging Cable,1,14.95,06/16/19 17:39,"127 Elm St, Boston, MA 02215" +215934,iPhone,1,700,06/22/19 12:04,"692 12th St, Los Angeles, CA 90001" +215935,Google Phone,1,600,06/25/19 11:15,"963 10th St, Los Angeles, CA 90001" +215936,Wired Headphones,1,11.99,06/06/19 14:09,"474 Jefferson St, Boston, MA 02215" +215937,Wired Headphones,1,11.99,06/30/19 14:44,"304 Center St, Los Angeles, CA 90001" +215938,AAA Batteries (4-pack),1,2.99,06/27/19 16:12,"822 Sunset St, Austin, TX 73301" +215938,27in FHD Monitor,1,149.99,06/27/19 16:12,"822 Sunset St, Austin, TX 73301" +215939,USB-C Charging Cable,1,11.95,06/13/19 06:49,"782 Forest St, Dallas, TX 75001" +215940,USB-C Charging Cable,1,11.95,06/19/19 22:09,"335 Park St, Los Angeles, CA 90001" +215941,ThinkPad Laptop,1,999.99,06/21/19 17:49,"901 13th St, Los Angeles, CA 90001" +215942,Apple Airpods Headphones,1,150,06/18/19 16:45,"720 Lake St, San Francisco, CA 94016" +215943,Vareebadd Phone,1,400,06/08/19 12:16,"766 Pine St, Austin, TX 73301" +215944,AA Batteries (4-pack),1,3.84,06/20/19 20:59,"892 Cherry St, Los Angeles, CA 90001" +215945,Bose SoundSport Headphones,1,99.99,06/18/19 13:50,"919 Highland St, Dallas, TX 75001" +215946,AAA Batteries (4-pack),1,2.99,06/26/19 16:55,"938 Chestnut St, San Francisco, CA 94016" +215947,AAA Batteries (4-pack),2,2.99,06/25/19 13:03,"353 8th St, Dallas, TX 75001" +215948,27in 4K Gaming Monitor,1,389.99,06/29/19 05:35,"980 Main St, New York City, NY 10001" +215949,Bose SoundSport Headphones,1,99.99,06/13/19 11:34,"513 12th St, Boston, MA 02215" +215950,Lightning Charging Cable,1,14.95,06/06/19 21:06,"372 7th St, Seattle, WA 98101" +215951,USB-C Charging Cable,1,11.95,06/06/19 14:06,"686 Pine St, San Francisco, CA 94016" +215952,iPhone,1,700,06/21/19 01:12,"496 Walnut St, Austin, TX 73301" +215953,USB-C Charging Cable,1,11.95,06/04/19 13:29,"621 Hill St, Atlanta, GA 30301" +215954,AA Batteries (4-pack),1,3.84,06/13/19 00:16,"762 4th St, Los Angeles, CA 90001" +215955,ThinkPad Laptop,1,999.99,06/21/19 08:06,"484 Center St, Boston, MA 02215" +215956,Wired Headphones,1,11.99,06/27/19 10:22,"640 Church St, Atlanta, GA 30301" +215957,27in 4K Gaming Monitor,1,389.99,06/22/19 13:17,"712 North St, Portland, OR 97035" +215958,27in 4K Gaming Monitor,1,389.99,06/12/19 13:32,"550 Highland St, Los Angeles, CA 90001" +215959,AA Batteries (4-pack),1,3.84,06/07/19 21:27,"596 North St, San Francisco, CA 94016" +215960,Bose SoundSport Headphones,1,99.99,06/15/19 22:23,"760 Washington St, Seattle, WA 98101" +215961,27in FHD Monitor,1,149.99,06/12/19 17:19,"699 Forest St, Austin, TX 73301" +215962,USB-C Charging Cable,1,11.95,06/08/19 13:57,"797 Highland St, Los Angeles, CA 90001" +215963,USB-C Charging Cable,1,11.95,06/18/19 19:45,"918 Elm St, San Francisco, CA 94016" +215964,USB-C Charging Cable,1,11.95,06/01/19 13:20,"985 North St, San Francisco, CA 94016" +215965,AA Batteries (4-pack),1,3.84,06/13/19 14:07,"542 West St, Seattle, WA 98101" +215966,Vareebadd Phone,1,400,06/19/19 09:53,"569 1st St, Los Angeles, CA 90001" +215967,Wired Headphones,1,11.99,06/13/19 10:48,"239 1st St, Los Angeles, CA 90001" +215968,Wired Headphones,2,11.99,06/25/19 22:33,"666 Madison St, Boston, MA 02215" +215969,Wired Headphones,1,11.99,06/26/19 14:58,"915 Lincoln St, New York City, NY 10001" +215970,Lightning Charging Cable,1,14.95,06/17/19 16:25,"184 Lake St, Los Angeles, CA 90001" +215971,USB-C Charging Cable,1,11.95,06/17/19 11:16,"5 Meadow St, Los Angeles, CA 90001" +215972,iPhone,1,700,06/23/19 18:49,"548 Madison St, San Francisco, CA 94016" +215973,iPhone,1,700,06/13/19 14:07,"718 1st St, New York City, NY 10001" +215974,AA Batteries (4-pack),1,3.84,06/02/19 22:15,"276 Jefferson St, San Francisco, CA 94016" +215975,AA Batteries (4-pack),1,3.84,06/22/19 10:16,"923 Center St, Boston, MA 02215" +215976,USB-C Charging Cable,1,11.95,06/23/19 17:26,"60 Church St, San Francisco, CA 94016" +215977,USB-C Charging Cable,1,11.95,06/07/19 17:32,"74 Hickory St, Atlanta, GA 30301" +215978,ThinkPad Laptop,1,999.99,06/29/19 13:40,"598 Wilson St, Boston, MA 02215" +215979,Flatscreen TV,1,300,06/10/19 09:34,"379 9th St, Atlanta, GA 30301" +215980,Flatscreen TV,1,300,06/17/19 22:55,"785 8th St, Los Angeles, CA 90001" +215981,Lightning Charging Cable,1,14.95,06/23/19 22:05,"343 5th St, Atlanta, GA 30301" +215982,AA Batteries (4-pack),2,3.84,06/04/19 21:00,"380 Maple St, Los Angeles, CA 90001" +215983,AAA Batteries (4-pack),1,2.99,06/01/19 18:27,"593 13th St, San Francisco, CA 94016" +215984,Bose SoundSport Headphones,1,99.99,06/04/19 15:16,"921 Wilson St, Atlanta, GA 30301" +215985,AA Batteries (4-pack),1,3.84,06/08/19 15:25,"434 Adams St, Boston, MA 02215" +215986,USB-C Charging Cable,1,11.95,06/08/19 18:18,"435 West St, New York City, NY 10001" +215987,Bose SoundSport Headphones,1,99.99,06/06/19 17:00,"79 Church St, Dallas, TX 75001" +215988,AAA Batteries (4-pack),2,2.99,06/04/19 20:42,"975 11th St, Portland, OR 97035" +215989,Lightning Charging Cable,1,14.95,06/25/19 10:20,"653 Walnut St, New York City, NY 10001" +215990,Wired Headphones,1,11.99,06/11/19 21:49,"558 11th St, Boston, MA 02215" +215991,27in FHD Monitor,1,149.99,06/26/19 18:31,"791 Jackson St, Dallas, TX 75001" +215992,Bose SoundSport Headphones,1,99.99,06/05/19 13:46,"87 Elm St, Portland, OR 97035" +215993,20in Monitor,1,109.99,06/09/19 13:31,"141 Lake St, New York City, NY 10001" +215994,iPhone,1,700,06/12/19 16:42,"270 Pine St, Austin, TX 73301" +215994,Apple Airpods Headphones,1,150,06/12/19 16:42,"270 Pine St, Austin, TX 73301" +215995,34in Ultrawide Monitor,1,379.99,06/29/19 11:43,"120 Walnut St, Los Angeles, CA 90001" +215996,Apple Airpods Headphones,1,150,06/03/19 09:40,"688 Center St, Boston, MA 02215" +215997,AA Batteries (4-pack),1,3.84,06/13/19 13:49,"109 Maple St, Atlanta, GA 30301" +215998,Lightning Charging Cable,1,14.95,06/25/19 23:08,"64 Jefferson St, New York City, NY 10001" +215999,Bose SoundSport Headphones,1,99.99,06/12/19 19:45,"861 Lake St, Atlanta, GA 30301" +216000,LG Washing Machine,1,600.0,06/22/19 11:56,"719 Hill St, Dallas, TX 75001" +216001,Wired Headphones,1,11.99,06/25/19 23:47,"121 4th St, New York City, NY 10001" +216002,Lightning Charging Cable,1,14.95,06/23/19 18:40,"38 West St, San Francisco, CA 94016" +216003,27in FHD Monitor,1,149.99,06/29/19 14:31,"876 Johnson St, San Francisco, CA 94016" +216004,Lightning Charging Cable,1,14.95,06/30/19 21:53,"934 River St, Seattle, WA 98101" +216005,USB-C Charging Cable,2,11.95,06/17/19 16:54,"533 Hill St, Dallas, TX 75001" +216006,20in Monitor,1,109.99,06/10/19 16:13,"637 Pine St, Dallas, TX 75001" +216007,Wired Headphones,1,11.99,06/11/19 21:12,"584 2nd St, Atlanta, GA 30301" +216008,Lightning Charging Cable,1,14.95,06/07/19 17:44,"44 Dogwood St, Los Angeles, CA 90001" +216009,Apple Airpods Headphones,1,150,06/29/19 18:23,"573 12th St, Portland, OR 97035" +216010,AA Batteries (4-pack),2,3.84,06/25/19 08:27,"622 4th St, Boston, MA 02215" +216011,Bose SoundSport Headphones,1,99.99,06/10/19 21:58,"451 Lake St, Austin, TX 73301" +216012,Apple Airpods Headphones,1,150,06/03/19 11:41,"895 Walnut St, New York City, NY 10001" +216013,AA Batteries (4-pack),1,3.84,06/11/19 08:57,"448 Main St, Los Angeles, CA 90001" +216014,AAA Batteries (4-pack),1,2.99,06/13/19 23:31,"262 1st St, Boston, MA 02215" +216015,USB-C Charging Cable,1,11.95,06/25/19 22:24,"161 Lincoln St, Los Angeles, CA 90001" +216016,Wired Headphones,1,11.99,06/06/19 13:16,"186 Sunset St, New York City, NY 10001" +216017,USB-C Charging Cable,1,11.95,06/03/19 12:04,"300 Washington St, Dallas, TX 75001" +216018,USB-C Charging Cable,2,11.95,06/28/19 21:09,"686 Sunset St, San Francisco, CA 94016" +216019,USB-C Charging Cable,1,11.95,06/15/19 17:03,"711 13th St, Seattle, WA 98101" +216020,Lightning Charging Cable,1,14.95,06/18/19 20:32,"544 Hill St, San Francisco, CA 94016" +216021,Flatscreen TV,1,300,06/29/19 14:08,"612 Park St, New York City, NY 10001" +216022,ThinkPad Laptop,1,999.99,06/14/19 17:33,"412 Pine St, San Francisco, CA 94016" +216023,Flatscreen TV,1,300,06/15/19 16:01,"807 Church St, Los Angeles, CA 90001" +216024,27in FHD Monitor,1,149.99,06/26/19 23:01,"62 12th St, San Francisco, CA 94016" +216025,AA Batteries (4-pack),1,3.84,06/12/19 14:44,"107 Wilson St, San Francisco, CA 94016" +216026,Lightning Charging Cable,1,14.95,06/03/19 20:15,"350 Center St, Seattle, WA 98101" +216027,AA Batteries (4-pack),1,3.84,06/26/19 15:03,"749 Maple St, Boston, MA 02215" +216028,Lightning Charging Cable,1,14.95,06/27/19 21:40,"725 Ridge St, Austin, TX 73301" +216029,Lightning Charging Cable,1,14.95,06/01/19 09:47,"194 Lake St, New York City, NY 10001" +216030,Lightning Charging Cable,1,14.95,06/25/19 16:05,"904 Elm St, Austin, TX 73301" +216031,27in 4K Gaming Monitor,1,389.99,06/09/19 21:08,"7 4th St, Austin, TX 73301" +216032,Bose SoundSport Headphones,1,99.99,06/27/19 13:54,"199 River St, Boston, MA 02215" +216033,AA Batteries (4-pack),1,3.84,06/29/19 11:53,"720 Maple St, New York City, NY 10001" +216034,27in FHD Monitor,1,149.99,06/05/19 00:03,"435 Lakeview St, San Francisco, CA 94016" +216035,USB-C Charging Cable,1,11.95,06/06/19 19:23,"674 11th St, Dallas, TX 75001" +216036,Wired Headphones,1,11.99,06/18/19 08:27,"285 Center St, Austin, TX 73301" +216037,ThinkPad Laptop,1,999.99,06/17/19 19:55,"614 North St, Austin, TX 73301" +216038,Wired Headphones,1,11.99,06/01/19 16:04,"170 9th St, New York City, NY 10001" +216039,Lightning Charging Cable,1,14.95,06/04/19 15:03,"248 11th St, Boston, MA 02215" +216040,Lightning Charging Cable,1,14.95,06/07/19 02:00,"331 Madison St, San Francisco, CA 94016" +216041,USB-C Charging Cable,2,11.95,06/12/19 13:59,"567 West St, Boston, MA 02215" +216042,Apple Airpods Headphones,1,150,06/04/19 10:41,"628 Pine St, Seattle, WA 98101" +216043,AA Batteries (4-pack),3,3.84,06/26/19 14:01,"754 Madison St, Atlanta, GA 30301" +216044,Bose SoundSport Headphones,1,99.99,06/10/19 09:16,"417 Hickory St, New York City, NY 10001" +216045,Wired Headphones,2,11.99,06/12/19 00:28,"560 South St, Austin, TX 73301" +216046,Apple Airpods Headphones,1,150,06/10/19 09:37,"305 Ridge St, San Francisco, CA 94016" +216047,Wired Headphones,1,11.99,06/13/19 17:11,"588 5th St, Portland, OR 97035" +216048,Lightning Charging Cable,1,14.95,06/27/19 21:27,"493 Elm St, Los Angeles, CA 90001" +216049,Lightning Charging Cable,1,14.95,06/28/19 16:16,"79 9th St, San Francisco, CA 94016" +216050,Wired Headphones,1,11.99,06/12/19 11:56,"324 Pine St, Los Angeles, CA 90001" +216051,27in FHD Monitor,1,149.99,06/03/19 12:58,"446 Madison St, Atlanta, GA 30301" +216052,Vareebadd Phone,1,400,06/02/19 18:07,"563 Pine St, Los Angeles, CA 90001" +216053,AA Batteries (4-pack),1,3.84,06/26/19 19:38,"430 Wilson St, Los Angeles, CA 90001" +216054,AA Batteries (4-pack),1,3.84,06/22/19 17:10,"42 1st St, San Francisco, CA 94016" +216055,iPhone,1,700,06/13/19 11:31,"556 Jackson St, San Francisco, CA 94016" +216056,Wired Headphones,1,11.99,06/11/19 18:28,"606 Elm St, Atlanta, GA 30301" +216057,Bose SoundSport Headphones,1,99.99,06/05/19 13:54,"716 12th St, Atlanta, GA 30301" +216058,Wired Headphones,1,11.99,06/07/19 19:24,"441 Walnut St, New York City, NY 10001" +216059,AAA Batteries (4-pack),2,2.99,06/17/19 08:42,"977 Pine St, Los Angeles, CA 90001" +216060,USB-C Charging Cable,2,11.95,06/05/19 17:26,"41 Dogwood St, Boston, MA 02215" +216061,34in Ultrawide Monitor,1,379.99,06/08/19 21:12,"820 Maple St, San Francisco, CA 94016" +216062,iPhone,1,700,06/06/19 14:08,"393 Church St, Boston, MA 02215" +216063,Lightning Charging Cable,1,14.95,06/29/19 13:48,"85 Hickory St, Portland, OR 97035" +216063,27in 4K Gaming Monitor,1,389.99,06/29/19 13:48,"85 Hickory St, Portland, OR 97035" +216064,Apple Airpods Headphones,1,150,06/28/19 01:44,"632 Main St, Austin, TX 73301" +216065,AAA Batteries (4-pack),1,2.99,06/27/19 18:28,"279 West St, San Francisco, CA 94016" +216066,USB-C Charging Cable,1,11.95,06/22/19 17:35,"606 Adams St, Dallas, TX 75001" +216067,iPhone,1,700,06/14/19 12:21,"133 Lincoln St, Austin, TX 73301" +216068,iPhone,1,700,06/07/19 22:31,"435 14th St, Portland, OR 97035" +216068,Apple Airpods Headphones,1,150,06/07/19 22:31,"435 14th St, Portland, OR 97035" +216069,Wired Headphones,1,11.99,06/30/19 06:56,"280 Center St, Boston, MA 02215" +216070,USB-C Charging Cable,2,11.95,06/03/19 01:25,"198 11th St, Portland, OR 97035" +216071,USB-C Charging Cable,1,11.95,06/30/19 16:59,"407 Center St, Seattle, WA 98101" +216072,AA Batteries (4-pack),1,3.84,06/14/19 17:59,"174 9th St, Austin, TX 73301" +216073,AA Batteries (4-pack),1,3.84,06/12/19 09:52,"347 5th St, San Francisco, CA 94016" +216074,Apple Airpods Headphones,1,150,06/19/19 21:16,"161 Forest St, San Francisco, CA 94016" +216075,34in Ultrawide Monitor,1,379.99,06/11/19 19:11,"768 Cherry St, San Francisco, CA 94016" +216076,USB-C Charging Cable,1,11.95,06/24/19 20:39,"463 2nd St, Los Angeles, CA 90001" +216077,USB-C Charging Cable,1,11.95,06/10/19 20:17,"417 Jefferson St, Los Angeles, CA 90001" +216078,34in Ultrawide Monitor,1,379.99,06/23/19 19:02,"74 River St, San Francisco, CA 94016" +216079,27in 4K Gaming Monitor,1,389.99,06/24/19 19:11,"983 4th St, Dallas, TX 75001" +216080,Wired Headphones,1,11.99,06/06/19 19:41,"459 Main St, Los Angeles, CA 90001" +216081,Wired Headphones,1,11.99,06/06/19 09:16,"683 Johnson St, New York City, NY 10001" +216082,USB-C Charging Cable,2,11.95,06/29/19 10:19,"334 North St, Los Angeles, CA 90001" +216083,AA Batteries (4-pack),1,3.84,06/15/19 20:31,"458 Pine St, Atlanta, GA 30301" +216084,USB-C Charging Cable,1,11.95,06/11/19 11:07,"478 Spruce St, San Francisco, CA 94016" +216085,Google Phone,1,600,06/24/19 20:50,"110 Johnson St, San Francisco, CA 94016" +216085,USB-C Charging Cable,1,11.95,06/24/19 20:50,"110 Johnson St, San Francisco, CA 94016" +216086,Wired Headphones,1,11.99,06/10/19 07:50,"328 Forest St, New York City, NY 10001" +216087,Apple Airpods Headphones,1,150,06/22/19 09:52,"918 Church St, Los Angeles, CA 90001" +216088,Wired Headphones,1,11.99,06/28/19 14:08,"245 Hill St, Dallas, TX 75001" +216089,Flatscreen TV,1,300,06/04/19 06:59,"622 Park St, San Francisco, CA 94016" +216090,Wired Headphones,1,11.99,06/27/19 19:45,"712 11th St, Atlanta, GA 30301" +216090,AAA Batteries (4-pack),2,2.99,06/27/19 19:45,"712 11th St, Atlanta, GA 30301" +216091,AAA Batteries (4-pack),1,2.99,06/22/19 17:11,"246 Forest St, Seattle, WA 98101" +216092,Lightning Charging Cable,1,14.95,06/04/19 17:57,"838 Lake St, San Francisco, CA 94016" +216093,Wired Headphones,1,11.99,06/20/19 22:15,"65 Jefferson St, Atlanta, GA 30301" +216094,USB-C Charging Cable,1,11.95,06/20/19 14:11,"105 South St, Dallas, TX 75001" +,,,,, +216095,Lightning Charging Cable,1,14.95,06/26/19 22:25,"213 14th St, San Francisco, CA 94016" +216096,Lightning Charging Cable,1,14.95,06/16/19 13:21,"125 13th St, San Francisco, CA 94016" +216097,Apple Airpods Headphones,1,150,06/24/19 10:53,"683 Main St, Dallas, TX 75001" +216098,AA Batteries (4-pack),2,3.84,06/29/19 12:34,"117 Forest St, Los Angeles, CA 90001" +216099,iPhone,1,700,06/06/19 20:26,"118 9th St, Austin, TX 73301" +216100,Apple Airpods Headphones,1,150,06/09/19 12:46,"531 2nd St, San Francisco, CA 94016" +216101,34in Ultrawide Monitor,1,379.99,06/22/19 19:46,"154 Lakeview St, Portland, OR 97035" +216102,AA Batteries (4-pack),1,3.84,06/23/19 18:13,"596 Willow St, San Francisco, CA 94016" +216103,AAA Batteries (4-pack),1,2.99,06/02/19 12:22,"969 11th St, Boston, MA 02215" +216104,27in FHD Monitor,1,149.99,06/15/19 16:44,"44 Highland St, Dallas, TX 75001" +216105,Lightning Charging Cable,1,14.95,06/08/19 18:27,"757 West St, San Francisco, CA 94016" +216106,AAA Batteries (4-pack),1,2.99,06/19/19 20:49,"258 Dogwood St, New York City, NY 10001" +216107,USB-C Charging Cable,1,11.95,06/26/19 09:37,"557 8th St, Los Angeles, CA 90001" +216108,AAA Batteries (4-pack),3,2.99,06/28/19 13:36,"988 Washington St, New York City, NY 10001" +216109,27in FHD Monitor,1,149.99,06/03/19 13:35,"784 Hill St, San Francisco, CA 94016" +216110,Flatscreen TV,1,300,06/23/19 12:38,"825 Lakeview St, Boston, MA 02215" +216111,Bose SoundSport Headphones,1,99.99,06/07/19 12:28,"775 Church St, San Francisco, CA 94016" +216112,USB-C Charging Cable,1,11.95,06/06/19 16:08,"217 Willow St, Los Angeles, CA 90001" +216113,AA Batteries (4-pack),1,3.84,06/23/19 23:53,"108 Hill St, San Francisco, CA 94016" +216113,USB-C Charging Cable,2,11.95,06/23/19 23:53,"108 Hill St, San Francisco, CA 94016" +216114,AAA Batteries (4-pack),1,2.99,06/06/19 16:38,"533 Washington St, New York City, NY 10001" +216115,Bose SoundSport Headphones,1,99.99,06/07/19 09:17,"358 2nd St, Seattle, WA 98101" +,,,,, +216116,AAA Batteries (4-pack),1,2.99,06/02/19 10:37,"798 Walnut St, New York City, NY 10001" +216117,AA Batteries (4-pack),3,3.84,06/06/19 09:23,"857 Maple St, Boston, MA 02215" +216118,USB-C Charging Cable,2,11.95,06/27/19 09:04,"773 Park St, Portland, OR 97035" +216119,ThinkPad Laptop,1,999.99,06/08/19 23:13,"339 Ridge St, Atlanta, GA 30301" +216120,ThinkPad Laptop,1,999.99,06/04/19 22:49,"784 Jefferson St, San Francisco, CA 94016" +216121,Bose SoundSport Headphones,1,99.99,06/24/19 22:37,"2 Spruce St, Los Angeles, CA 90001" +216122,iPhone,1,700,06/26/19 08:15,"745 Chestnut St, New York City, NY 10001" +216123,Lightning Charging Cable,1,14.95,06/05/19 22:15,"125 Meadow St, San Francisco, CA 94016" +216124,USB-C Charging Cable,1,11.95,06/23/19 13:09,"293 Dogwood St, San Francisco, CA 94016" +216125,Macbook Pro Laptop,1,1700,06/20/19 07:59,"37 Maple St, San Francisco, CA 94016" +216126,Lightning Charging Cable,1,14.95,06/03/19 01:02,"237 Park St, Los Angeles, CA 90001" +216127,iPhone,1,700,06/05/19 16:01,"340 11th St, New York City, NY 10001" +216128,27in FHD Monitor,1,149.99,06/12/19 06:32,"850 North St, Los Angeles, CA 90001" +216129,27in 4K Gaming Monitor,1,389.99,06/09/19 14:02,"797 Highland St, Los Angeles, CA 90001" +216130,USB-C Charging Cable,1,11.95,06/09/19 11:19,"354 Elm St, Boston, MA 02215" +216131,Macbook Pro Laptop,1,1700,06/24/19 09:31,"3 14th St, San Francisco, CA 94016" +216132,Flatscreen TV,1,300,06/22/19 18:36,"609 11th St, Seattle, WA 98101" +216133,Apple Airpods Headphones,1,150,06/18/19 15:40,"291 Maple St, Austin, TX 73301" +216134,USB-C Charging Cable,1,11.95,06/21/19 00:48,"527 North St, Los Angeles, CA 90001" +216135,AA Batteries (4-pack),1,3.84,06/30/19 15:30,"294 Lincoln St, Portland, OR 97035" +216136,Lightning Charging Cable,1,14.95,06/23/19 10:30,"850 Park St, San Francisco, CA 94016" +216137,AA Batteries (4-pack),1,3.84,06/02/19 15:22,"457 Johnson St, Boston, MA 02215" +216138,AAA Batteries (4-pack),1,2.99,06/20/19 11:41,"488 Johnson St, San Francisco, CA 94016" +216139,AA Batteries (4-pack),2,3.84,06/30/19 20:03,"940 Maple St, Austin, TX 73301" +216140,20in Monitor,1,109.99,06/14/19 16:58,"234 Jackson St, Portland, ME 04101" +216141,AAA Batteries (4-pack),1,2.99,06/06/19 23:07,"831 Lincoln St, Dallas, TX 75001" +216142,34in Ultrawide Monitor,1,379.99,06/04/19 17:30,"546 Maple St, Los Angeles, CA 90001" +216143,Flatscreen TV,1,300,06/04/19 09:00,"870 Lincoln St, New York City, NY 10001" +216144,Lightning Charging Cable,1,14.95,06/13/19 21:04,"542 Highland St, San Francisco, CA 94016" +216145,AA Batteries (4-pack),1,3.84,06/04/19 20:44,"967 South St, Los Angeles, CA 90001" +216146,AA Batteries (4-pack),2,3.84,06/15/19 07:46,"600 8th St, San Francisco, CA 94016" +216147,USB-C Charging Cable,1,11.95,06/10/19 10:23,"825 West St, Atlanta, GA 30301" +216148,AAA Batteries (4-pack),1,2.99,06/19/19 17:48,"315 Willow St, New York City, NY 10001" +216149,Macbook Pro Laptop,1,1700,06/13/19 09:11,"736 Highland St, Los Angeles, CA 90001" +216150,Macbook Pro Laptop,1,1700,06/22/19 23:09,"987 8th St, Boston, MA 02215" +216151,27in 4K Gaming Monitor,1,389.99,06/21/19 17:14,"901 4th St, Los Angeles, CA 90001" +216152,Apple Airpods Headphones,1,150,06/11/19 22:19,"581 8th St, New York City, NY 10001" +216153,USB-C Charging Cable,1,11.95,06/24/19 11:14,"73 Washington St, Atlanta, GA 30301" +216154,27in FHD Monitor,1,149.99,06/04/19 16:23,"211 6th St, San Francisco, CA 94016" +216155,Bose SoundSport Headphones,1,99.99,06/23/19 20:47,"858 10th St, Seattle, WA 98101" +216156,Bose SoundSport Headphones,1,99.99,06/04/19 11:27,"118 Pine St, Los Angeles, CA 90001" +216157,27in FHD Monitor,1,149.99,06/14/19 19:15,"273 Ridge St, Austin, TX 73301" +216158,USB-C Charging Cable,1,11.95,06/02/19 09:55,"226 Jackson St, Seattle, WA 98101" +216159,Bose SoundSport Headphones,1,99.99,06/20/19 18:17,"392 7th St, San Francisco, CA 94016" +216160,USB-C Charging Cable,1,11.95,06/26/19 23:24,"19 River St, Dallas, TX 75001" +216161,AA Batteries (4-pack),1,3.84,06/11/19 13:26,"869 Johnson St, New York City, NY 10001" +216162,USB-C Charging Cable,1,11.95,06/28/19 20:04,"421 Lakeview St, New York City, NY 10001" +216163,27in FHD Monitor,1,149.99,06/06/19 06:02,"128 Lincoln St, Dallas, TX 75001" +216164,27in 4K Gaming Monitor,1,389.99,06/14/19 13:59,"230 11th St, Los Angeles, CA 90001" +216165,AA Batteries (4-pack),1,3.84,06/02/19 00:28,"83 Sunset St, Atlanta, GA 30301" +216166,Apple Airpods Headphones,1,150,06/12/19 18:58,"676 Sunset St, Austin, TX 73301" +216167,AA Batteries (4-pack),1,3.84,06/26/19 07:33,"691 Washington St, Dallas, TX 75001" +216168,Apple Airpods Headphones,1,150,06/07/19 17:15,"21 8th St, Los Angeles, CA 90001" +216169,AA Batteries (4-pack),1,3.84,06/17/19 12:47,"527 Center St, San Francisco, CA 94016" +216170,iPhone,1,700,06/27/19 14:56,"688 Sunset St, San Francisco, CA 94016" +216171,AA Batteries (4-pack),1,3.84,06/11/19 13:29,"388 14th St, New York City, NY 10001" +216172,20in Monitor,1,109.99,06/11/19 22:00,"992 Church St, New York City, NY 10001" +216173,34in Ultrawide Monitor,1,379.99,06/05/19 17:32,"330 Maple St, Dallas, TX 75001" +216174,Apple Airpods Headphones,1,150,06/09/19 12:52,"264 Meadow St, San Francisco, CA 94016" +216175,iPhone,1,700,06/26/19 15:24,"589 West St, San Francisco, CA 94016" +216176,Lightning Charging Cable,1,14.95,06/06/19 20:44,"908 Dogwood St, Boston, MA 02215" +,,,,, +216177,ThinkPad Laptop,1,999.99,06/26/19 20:41,"764 1st St, Seattle, WA 98101" +216178,Bose SoundSport Headphones,1,99.99,06/04/19 20:40,"575 Jefferson St, Los Angeles, CA 90001" +216179,ThinkPad Laptop,1,999.99,06/26/19 12:56,"638 Madison St, Los Angeles, CA 90001" +216180,Apple Airpods Headphones,1,150,06/04/19 13:18,"222 Forest St, San Francisco, CA 94016" +216181,AA Batteries (4-pack),3,3.84,06/22/19 19:58,"898 Cherry St, San Francisco, CA 94016" +216182,Lightning Charging Cable,1,14.95,06/16/19 20:21,"845 Sunset St, Boston, MA 02215" +216183,AAA Batteries (4-pack),1,2.99,06/20/19 09:58,"457 2nd St, Seattle, WA 98101" +216184,iPhone,1,700,07/01/19 01:30,"372 Lincoln St, Portland, ME 04101" +216185,Lightning Charging Cable,1,14.95,06/28/19 17:45,"213 Washington St, New York City, NY 10001" +216186,Bose SoundSport Headphones,1,99.99,06/04/19 09:01,"428 Spruce St, Boston, MA 02215" +216187,Google Phone,1,600,06/22/19 15:11,"41 Jefferson St, San Francisco, CA 94016" +216188,AAA Batteries (4-pack),2,2.99,06/16/19 12:27,"624 7th St, San Francisco, CA 94016" +216189,Macbook Pro Laptop,1,1700,06/05/19 16:37,"661 10th St, Austin, TX 73301" +216190,USB-C Charging Cable,1,11.95,06/19/19 09:47,"228 Chestnut St, New York City, NY 10001" +216191,AAA Batteries (4-pack),1,2.99,06/14/19 09:42,"437 Elm St, Atlanta, GA 30301" +216192,iPhone,1,700,06/05/19 07:57,"307 Hickory St, Austin, TX 73301" +216193,AAA Batteries (4-pack),2,2.99,06/21/19 22:41,"150 Jackson St, Dallas, TX 75001" +216194,Apple Airpods Headphones,1,150,06/05/19 17:59,"408 South St, Los Angeles, CA 90001" +216195,iPhone,1,700,06/07/19 08:47,"775 Dogwood St, New York City, NY 10001" +216196,AAA Batteries (4-pack),2,2.99,06/22/19 10:27,"911 Park St, Los Angeles, CA 90001" +216197,Bose SoundSport Headphones,1,99.99,06/12/19 13:33,"115 Dogwood St, New York City, NY 10001" +216198,AAA Batteries (4-pack),1,2.99,06/19/19 11:12,"18 Hickory St, San Francisco, CA 94016" +216199,USB-C Charging Cable,1,11.95,06/14/19 23:21,"648 Washington St, San Francisco, CA 94016" +216200,Lightning Charging Cable,1,14.95,06/28/19 13:40,"659 Cherry St, Los Angeles, CA 90001" +216201,34in Ultrawide Monitor,1,379.99,06/19/19 19:27,"202 Cedar St, San Francisco, CA 94016" +216202,LG Washing Machine,1,600.0,06/14/19 18:19,"889 Pine St, San Francisco, CA 94016" +216203,Apple Airpods Headphones,1,150,06/26/19 18:34,"743 Dogwood St, Boston, MA 02215" +216204,Lightning Charging Cable,1,14.95,06/03/19 06:10,"733 12th St, Dallas, TX 75001" +216205,Lightning Charging Cable,1,14.95,06/02/19 12:12,"76 8th St, New York City, NY 10001" +216206,Apple Airpods Headphones,1,150,06/05/19 19:49,"3 8th St, New York City, NY 10001" +216207,iPhone,1,700,06/09/19 12:00,"38 Chestnut St, Atlanta, GA 30301" +216208,Apple Airpods Headphones,1,150,06/06/19 08:14,"11 Jefferson St, Portland, OR 97035" +216209,AAA Batteries (4-pack),2,2.99,06/21/19 10:50,"524 11th St, New York City, NY 10001" +216210,AAA Batteries (4-pack),1,2.99,06/25/19 14:09,"421 Lake St, Seattle, WA 98101" +216211,AA Batteries (4-pack),1,3.84,06/13/19 18:57,"443 Meadow St, Portland, OR 97035" +216212,Apple Airpods Headphones,1,150,06/18/19 11:55,"158 Lake St, New York City, NY 10001" +216213,ThinkPad Laptop,1,999.99,06/14/19 20:20,"376 7th St, New York City, NY 10001" +216214,34in Ultrawide Monitor,1,379.99,06/26/19 23:55,"79 Jackson St, New York City, NY 10001" +216215,27in 4K Gaming Monitor,1,389.99,06/08/19 21:48,"456 14th St, New York City, NY 10001" +216216,Lightning Charging Cable,3,14.95,06/10/19 22:00,"896 Walnut St, New York City, NY 10001" +216217,AAA Batteries (4-pack),4,2.99,06/01/19 17:19,"35 Willow St, San Francisco, CA 94016" +216218,USB-C Charging Cable,1,11.95,06/23/19 23:10,"977 10th St, Seattle, WA 98101" +216219,AAA Batteries (4-pack),1,2.99,06/07/19 08:14,"262 Church St, San Francisco, CA 94016" +216220,Macbook Pro Laptop,1,1700,06/16/19 09:57,"936 Lakeview St, San Francisco, CA 94016" +216221,Lightning Charging Cable,1,14.95,06/23/19 13:25,"297 2nd St, Boston, MA 02215" +216222,Apple Airpods Headphones,1,150,06/07/19 21:36,"841 West St, Seattle, WA 98101" +216223,Apple Airpods Headphones,1,150,06/23/19 20:19,"720 Hickory St, Atlanta, GA 30301" +216224,27in 4K Gaming Monitor,1,389.99,06/23/19 08:01,"662 Hickory St, San Francisco, CA 94016" +216225,USB-C Charging Cable,1,11.95,06/06/19 13:36,"820 8th St, San Francisco, CA 94016" +216226,Lightning Charging Cable,1,14.95,06/10/19 12:07,"428 Walnut St, San Francisco, CA 94016" +216227,Google Phone,1,600,06/28/19 04:04,"980 7th St, Atlanta, GA 30301" +216228,27in FHD Monitor,1,149.99,06/27/19 19:56,"237 1st St, Portland, OR 97035" +216229,AA Batteries (4-pack),3,3.84,06/06/19 14:30,"925 West St, Los Angeles, CA 90001" +216230,Lightning Charging Cable,1,14.95,06/22/19 11:17,"865 4th St, Atlanta, GA 30301" +216231,Lightning Charging Cable,1,14.95,06/27/19 19:48,"678 Sunset St, Portland, ME 04101" +216232,Bose SoundSport Headphones,1,99.99,06/24/19 18:32,"912 Adams St, Los Angeles, CA 90001" +216233,Lightning Charging Cable,1,14.95,06/08/19 17:19,"415 North St, San Francisco, CA 94016" +216234,Apple Airpods Headphones,1,150,06/07/19 12:21,"658 North St, Portland, OR 97035" +216235,ThinkPad Laptop,1,999.99,06/16/19 13:41,"96 Hill St, Portland, OR 97035" +216236,Google Phone,1,600,06/11/19 16:14,"190 2nd St, Los Angeles, CA 90001" +216237,Bose SoundSport Headphones,1,99.99,06/15/19 02:50,"15 Madison St, San Francisco, CA 94016" +216238,USB-C Charging Cable,1,11.95,06/11/19 14:32,"155 8th St, San Francisco, CA 94016" +216239,Flatscreen TV,1,300,06/10/19 19:17,"725 Highland St, Atlanta, GA 30301" +216240,Lightning Charging Cable,1,14.95,06/18/19 08:58,"911 Jackson St, New York City, NY 10001" +216241,AA Batteries (4-pack),1,3.84,06/18/19 11:55,"157 2nd St, Boston, MA 02215" +216242,AA Batteries (4-pack),1,3.84,06/19/19 04:26,"501 Hickory St, Portland, OR 97035" +216243,USB-C Charging Cable,1,11.95,06/03/19 20:38,"958 Main St, New York City, NY 10001" +216244,AAA Batteries (4-pack),1,2.99,06/29/19 09:59,"936 Ridge St, Los Angeles, CA 90001" +216245,Bose SoundSport Headphones,1,99.99,06/04/19 00:42,"220 Lincoln St, San Francisco, CA 94016" +216246,iPhone,1,700,06/13/19 11:58,"943 13th St, Los Angeles, CA 90001" +216246,Apple Airpods Headphones,1,150,06/13/19 11:58,"943 13th St, Los Angeles, CA 90001" +216247,AAA Batteries (4-pack),2,2.99,06/30/19 17:46,"153 Adams St, Los Angeles, CA 90001" +216248,Apple Airpods Headphones,1,150,06/22/19 06:26,"215 Chestnut St, Seattle, WA 98101" +216249,Bose SoundSport Headphones,1,99.99,06/22/19 14:18,"625 North St, San Francisco, CA 94016" +216250,Bose SoundSport Headphones,1,99.99,06/30/19 08:41,"889 4th St, Austin, TX 73301" +216251,27in 4K Gaming Monitor,1,389.99,06/17/19 18:12,"165 Center St, Austin, TX 73301" +216252,34in Ultrawide Monitor,1,379.99,06/23/19 19:05,"39 8th St, San Francisco, CA 94016" +216253,Bose SoundSport Headphones,1,99.99,06/14/19 22:30,"112 Lincoln St, San Francisco, CA 94016" +216254,Wired Headphones,1,11.99,06/17/19 20:23,"634 Madison St, Portland, OR 97035" +216255,Wired Headphones,1,11.99,06/02/19 20:30,"101 Washington St, Los Angeles, CA 90001" +216256,Lightning Charging Cable,1,14.95,06/17/19 10:56,"902 12th St, New York City, NY 10001" +216257,USB-C Charging Cable,1,11.95,06/11/19 19:54,"81 Hickory St, New York City, NY 10001" +216258,USB-C Charging Cable,1,11.95,06/05/19 23:21,"603 2nd St, Los Angeles, CA 90001" +216259,Lightning Charging Cable,1,14.95,06/04/19 11:53,"342 4th St, San Francisco, CA 94016" +216260,Flatscreen TV,1,300,06/02/19 15:51,"360 Meadow St, Los Angeles, CA 90001" +216261,USB-C Charging Cable,1,11.95,06/18/19 13:19,"747 North St, Atlanta, GA 30301" +216262,Google Phone,1,600,06/27/19 11:10,"930 13th St, Austin, TX 73301" +216263,AA Batteries (4-pack),3,3.84,06/06/19 18:02,"610 Maple St, Portland, OR 97035" +216264,Wired Headphones,1,11.99,06/09/19 10:23,"659 8th St, Los Angeles, CA 90001" +216265,AA Batteries (4-pack),2,3.84,06/02/19 01:13,"790 13th St, San Francisco, CA 94016" +216266,USB-C Charging Cable,1,11.95,06/16/19 16:06,"262 Meadow St, San Francisco, CA 94016" +216267,27in FHD Monitor,1,149.99,06/12/19 20:06,"338 Maple St, Los Angeles, CA 90001" +216268,AAA Batteries (4-pack),1,2.99,06/07/19 05:30,"116 Hickory St, Boston, MA 02215" +216269,Lightning Charging Cable,2,14.95,06/01/19 13:05,"238 Park St, New York City, NY 10001" +216270,iPhone,1,700,06/17/19 12:47,"421 Highland St, Los Angeles, CA 90001" +216271,USB-C Charging Cable,2,11.95,06/27/19 12:57,"870 10th St, Boston, MA 02215" +216272,Flatscreen TV,1,300,06/14/19 22:40,"273 Highland St, Boston, MA 02215" +216273,Apple Airpods Headphones,1,150,06/19/19 21:19,"481 Maple St, Austin, TX 73301" +216274,AA Batteries (4-pack),1,3.84,06/25/19 19:14,"330 Hickory St, San Francisco, CA 94016" +216275,Macbook Pro Laptop,1,1700,06/28/19 03:29,"838 West St, Seattle, WA 98101" +216276,AAA Batteries (4-pack),2,2.99,06/20/19 12:26,"245 11th St, Portland, OR 97035" +216277,AAA Batteries (4-pack),2,2.99,06/21/19 10:49,"599 Cherry St, Atlanta, GA 30301" +216278,AAA Batteries (4-pack),2,2.99,06/01/19 21:46,"328 13th St, San Francisco, CA 94016" +216279,Lightning Charging Cable,1,14.95,06/11/19 18:53,"434 South St, San Francisco, CA 94016" +216279,AA Batteries (4-pack),2,3.84,06/11/19 18:53,"434 South St, San Francisco, CA 94016" +216280,Wired Headphones,1,11.99,06/23/19 17:31,"341 Sunset St, New York City, NY 10001" +216281,Flatscreen TV,1,300,06/24/19 19:53,"959 Lincoln St, Boston, MA 02215" +216282,Macbook Pro Laptop,1,1700,06/27/19 21:33,"268 Walnut St, New York City, NY 10001" +216283,34in Ultrawide Monitor,1,379.99,06/15/19 22:01,"155 Chestnut St, Portland, OR 97035" +216284,ThinkPad Laptop,1,999.99,06/22/19 15:12,"426 River St, New York City, NY 10001" +216285,Bose SoundSport Headphones,1,99.99,06/30/19 08:05,"622 West St, New York City, NY 10001" +216286,USB-C Charging Cable,1,11.95,06/22/19 08:57,"138 Hickory St, Los Angeles, CA 90001" +216287,Bose SoundSport Headphones,1,99.99,06/22/19 16:24,"22 Cedar St, Atlanta, GA 30301" +216288,AA Batteries (4-pack),1,3.84,06/19/19 09:29,"77 Dogwood St, San Francisco, CA 94016" +216289,AAA Batteries (4-pack),3,2.99,06/25/19 11:37,"606 14th St, Atlanta, GA 30301" +216290,AA Batteries (4-pack),1,3.84,06/29/19 14:21,"130 River St, Atlanta, GA 30301" +216291,27in FHD Monitor,1,149.99,06/28/19 16:11,"207 Lakeview St, Los Angeles, CA 90001" +216292,USB-C Charging Cable,1,11.95,06/26/19 18:22,"639 Elm St, New York City, NY 10001" +216293,27in FHD Monitor,1,149.99,06/03/19 14:10,"924 Highland St, New York City, NY 10001" +216294,Flatscreen TV,1,300,06/02/19 16:48,"22 12th St, San Francisco, CA 94016" +216295,USB-C Charging Cable,1,11.95,06/23/19 08:35,"922 West St, Seattle, WA 98101" +216296,Bose SoundSport Headphones,1,99.99,06/11/19 21:58,"494 Chestnut St, Seattle, WA 98101" +216297,Apple Airpods Headphones,1,150,06/20/19 21:56,"403 Maple St, Boston, MA 02215" +216298,34in Ultrawide Monitor,1,379.99,06/09/19 11:09,"455 Church St, Los Angeles, CA 90001" +216299,Wired Headphones,1,11.99,06/23/19 14:06,"506 Park St, New York City, NY 10001" +216300,ThinkPad Laptop,1,999.99,06/20/19 15:04,"777 Hickory St, San Francisco, CA 94016" +216301,ThinkPad Laptop,1,999.99,06/12/19 08:03,"734 1st St, Dallas, TX 75001" +216302,AAA Batteries (4-pack),1,2.99,06/30/19 08:47,"27 Wilson St, Atlanta, GA 30301" +216303,USB-C Charging Cable,1,11.95,06/25/19 11:43,"811 Adams St, San Francisco, CA 94016" +216304,Lightning Charging Cable,1,14.95,06/14/19 23:10,"518 13th St, Los Angeles, CA 90001" +216305,Lightning Charging Cable,1,14.95,06/03/19 07:21,"205 Jackson St, Boston, MA 02215" +216306,Lightning Charging Cable,1,14.95,06/06/19 22:34,"20 Meadow St, New York City, NY 10001" +216307,Flatscreen TV,1,300,06/02/19 18:26,"836 Adams St, Atlanta, GA 30301" +216308,AA Batteries (4-pack),2,3.84,06/13/19 13:26,"975 River St, San Francisco, CA 94016" +216309,Apple Airpods Headphones,1,150,06/30/19 14:29,"107 Spruce St, San Francisco, CA 94016" +216310,Macbook Pro Laptop,1,1700,06/13/19 19:44,"342 8th St, San Francisco, CA 94016" +216311,USB-C Charging Cable,1,11.95,06/08/19 07:36,"542 Elm St, Boston, MA 02215" +216312,Google Phone,1,600,06/09/19 12:35,"889 Lake St, Dallas, TX 75001" +216312,Wired Headphones,1,11.99,06/09/19 12:35,"889 Lake St, Dallas, TX 75001" +216313,AAA Batteries (4-pack),2,2.99,06/27/19 10:08,"288 Adams St, Atlanta, GA 30301" +216314,Google Phone,1,600,06/26/19 20:14,"382 Madison St, Boston, MA 02215" +216315,Apple Airpods Headphones,1,150,06/12/19 12:48,"48 Spruce St, Los Angeles, CA 90001" +216316,Lightning Charging Cable,1,14.95,06/28/19 11:43,"518 Park St, San Francisco, CA 94016" +216317,Flatscreen TV,1,300,06/02/19 20:00,"265 Highland St, San Francisco, CA 94016" +216318,Lightning Charging Cable,1,14.95,06/01/19 15:07,"864 Lakeview St, San Francisco, CA 94016" +216319,AAA Batteries (4-pack),1,2.99,06/12/19 19:40,"209 Park St, Los Angeles, CA 90001" +216320,Google Phone,1,600,06/06/19 11:07,"88 Jackson St, Dallas, TX 75001" +216321,Wired Headphones,1,11.99,06/13/19 15:18,"662 Hill St, Atlanta, GA 30301" +216322,Lightning Charging Cable,1,14.95,06/03/19 14:31,"688 Walnut St, San Francisco, CA 94016" +216323,iPhone,1,700,06/22/19 20:38,"717 9th St, San Francisco, CA 94016" +216324,AAA Batteries (4-pack),1,2.99,06/05/19 13:34,"916 4th St, San Francisco, CA 94016" +216325,AAA Batteries (4-pack),1,2.99,06/25/19 19:34,"322 Center St, Seattle, WA 98101" +216326,27in FHD Monitor,1,149.99,06/13/19 01:59,"762 Hickory St, San Francisco, CA 94016" +216326,Wired Headphones,2,11.99,06/13/19 01:59,"762 Hickory St, San Francisco, CA 94016" +216327,Wired Headphones,1,11.99,06/26/19 14:25,"379 Pine St, Boston, MA 02215" +216328,34in Ultrawide Monitor,1,379.99,06/21/19 17:33,"646 Lakeview St, New York City, NY 10001" +216329,Macbook Pro Laptop,1,1700,06/15/19 15:40,"274 5th St, San Francisco, CA 94016" +216330,AAA Batteries (4-pack),1,2.99,06/13/19 18:12,"472 6th St, Austin, TX 73301" +216331,Google Phone,1,600,06/19/19 11:56,"108 Pine St, New York City, NY 10001" +216331,USB-C Charging Cable,1,11.95,06/19/19 11:56,"108 Pine St, New York City, NY 10001" +216332,Wired Headphones,1,11.99,06/14/19 11:38,"549 Hickory St, New York City, NY 10001" +216333,Apple Airpods Headphones,1,150,06/06/19 14:39,"918 Ridge St, Portland, OR 97035" +216334,USB-C Charging Cable,1,11.95,06/22/19 16:44,"267 7th St, San Francisco, CA 94016" +216335,USB-C Charging Cable,2,11.95,06/21/19 22:14,"932 Washington St, Seattle, WA 98101" +216336,Google Phone,1,600,06/23/19 21:07,"989 Meadow St, San Francisco, CA 94016" +216337,27in FHD Monitor,1,149.99,06/04/19 15:14,"179 Church St, Los Angeles, CA 90001" +216338,Lightning Charging Cable,1,14.95,06/03/19 09:15,"331 West St, Boston, MA 02215" +216339,Apple Airpods Headphones,1,150,06/08/19 16:31,"698 Spruce St, San Francisco, CA 94016" +216340,USB-C Charging Cable,1,11.95,06/05/19 16:24,"188 Cherry St, San Francisco, CA 94016" +216341,20in Monitor,1,109.99,06/12/19 18:05,"611 Ridge St, Portland, OR 97035" +216342,27in FHD Monitor,1,149.99,06/09/19 06:57,"342 Spruce St, Los Angeles, CA 90001" +216343,Apple Airpods Headphones,1,150,06/29/19 13:45,"234 Washington St, New York City, NY 10001" +216344,USB-C Charging Cable,1,11.95,06/03/19 03:59,"124 11th St, Atlanta, GA 30301" +216345,27in FHD Monitor,1,149.99,06/07/19 16:37,"608 Madison St, New York City, NY 10001" +216346,Wired Headphones,1,11.99,06/24/19 09:49,"472 South St, Los Angeles, CA 90001" +216347,Lightning Charging Cable,1,14.95,06/27/19 12:05,"453 10th St, Portland, OR 97035" +216348,ThinkPad Laptop,1,999.99,06/10/19 09:02,"992 Dogwood St, Los Angeles, CA 90001" +216349,AAA Batteries (4-pack),1,2.99,06/06/19 18:32,"224 Highland St, San Francisco, CA 94016" +216350,AAA Batteries (4-pack),1,2.99,06/26/19 10:17,"348 North St, Seattle, WA 98101" +216351,Bose SoundSport Headphones,1,99.99,06/20/19 14:30,"232 4th St, San Francisco, CA 94016" +216352,Lightning Charging Cable,1,14.95,06/14/19 00:22,"797 14th St, Seattle, WA 98101" +216353,Lightning Charging Cable,1,14.95,06/08/19 08:30,"132 Cherry St, Seattle, WA 98101" +216354,iPhone,1,700,06/02/19 12:32,"979 North St, San Francisco, CA 94016" +216355,Wired Headphones,1,11.99,06/29/19 15:22,"835 Wilson St, Boston, MA 02215" +216356,Lightning Charging Cable,1,14.95,06/19/19 09:40,"823 Pine St, Seattle, WA 98101" +216357,AA Batteries (4-pack),2,3.84,06/15/19 12:00,"994 Main St, Austin, TX 73301" +216358,AAA Batteries (4-pack),1,2.99,06/25/19 21:20,"500 Johnson St, San Francisco, CA 94016" +216359,Bose SoundSport Headphones,1,99.99,06/10/19 10:24,"649 Main St, Los Angeles, CA 90001" +216360,AA Batteries (4-pack),1,3.84,06/25/19 07:06,"132 West St, Los Angeles, CA 90001" +216361,ThinkPad Laptop,1,999.99,06/30/19 15:17,"629 10th St, Los Angeles, CA 90001" +216362,Google Phone,1,600,06/02/19 14:19,"807 11th St, Boston, MA 02215" +216363,AAA Batteries (4-pack),1,2.99,06/16/19 11:48,"462 7th St, New York City, NY 10001" +216364,Macbook Pro Laptop,1,1700,06/04/19 14:20,"48 11th St, Los Angeles, CA 90001" +216365,AA Batteries (4-pack),2,3.84,06/12/19 13:14,"710 Center St, Los Angeles, CA 90001" +216366,Apple Airpods Headphones,1,150,06/01/19 18:09,"676 2nd St, Portland, OR 97035" +216367,27in FHD Monitor,1,149.99,06/01/19 15:24,"277 Hill St, Dallas, TX 75001" +216368,iPhone,1,700,06/11/19 22:24,"322 Lincoln St, Austin, TX 73301" +216369,Google Phone,1,600,06/09/19 11:46,"618 Jefferson St, Atlanta, GA 30301" +216369,USB-C Charging Cable,1,11.95,06/09/19 11:46,"618 Jefferson St, Atlanta, GA 30301" +216370,AA Batteries (4-pack),2,3.84,06/27/19 09:17,"927 Adams St, Los Angeles, CA 90001" +216371,34in Ultrawide Monitor,1,379.99,06/21/19 10:09,"144 River St, Boston, MA 02215" +216372,LG Dryer,1,600.0,06/08/19 00:10,"74 Forest St, San Francisco, CA 94016" +216373,AAA Batteries (4-pack),1,2.99,06/20/19 21:30,"953 Johnson St, Boston, MA 02215" +216374,20in Monitor,1,109.99,06/20/19 11:59,"942 Pine St, Boston, MA 02215" +216375,Apple Airpods Headphones,1,150,06/02/19 18:35,"913 9th St, San Francisco, CA 94016" +216376,27in FHD Monitor,1,149.99,06/12/19 23:33,"683 Chestnut St, Los Angeles, CA 90001" +216377,Wired Headphones,1,11.99,06/07/19 18:23,"289 Hickory St, San Francisco, CA 94016" +216378,USB-C Charging Cable,2,11.95,06/27/19 12:22,"773 Lakeview St, Seattle, WA 98101" +216379,AA Batteries (4-pack),2,3.84,06/19/19 08:16,"428 5th St, Boston, MA 02215" +216380,34in Ultrawide Monitor,1,379.99,06/25/19 23:53,"383 Spruce St, Seattle, WA 98101" +216381,Apple Airpods Headphones,1,150,06/13/19 07:19,"744 Johnson St, Los Angeles, CA 90001" +216382,USB-C Charging Cable,1,11.95,06/09/19 22:43,"498 Ridge St, Los Angeles, CA 90001" +216383,AAA Batteries (4-pack),6,2.99,06/03/19 20:43,"877 Adams St, Portland, OR 97035" +216384,USB-C Charging Cable,1,11.95,06/30/19 14:22,"443 Lincoln St, New York City, NY 10001" +216385,Vareebadd Phone,1,400,06/09/19 14:16,"977 Forest St, San Francisco, CA 94016" +216386,Wired Headphones,1,11.99,06/30/19 13:25,"495 Forest St, San Francisco, CA 94016" +216387,Wired Headphones,1,11.99,06/13/19 21:40,"91 Washington St, San Francisco, CA 94016" +216388,Lightning Charging Cable,2,14.95,06/11/19 16:07,"621 Washington St, San Francisco, CA 94016" +216389,USB-C Charging Cable,2,11.95,06/21/19 11:17,"241 13th St, San Francisco, CA 94016" +216390,iPhone,1,700,06/30/19 15:57,"682 Forest St, New York City, NY 10001" +216390,Lightning Charging Cable,1,14.95,06/30/19 15:57,"682 Forest St, New York City, NY 10001" +216391,AA Batteries (4-pack),1,3.84,06/20/19 17:30,"422 North St, Atlanta, GA 30301" +216392,Wired Headphones,1,11.99,06/23/19 18:16,"246 2nd St, San Francisco, CA 94016" +216393,Apple Airpods Headphones,1,150,06/12/19 21:00,"649 Chestnut St, San Francisco, CA 94016" +216394,Apple Airpods Headphones,1,150,06/18/19 10:46,"205 5th St, Los Angeles, CA 90001" +216395,Wired Headphones,2,11.99,06/09/19 00:01,"588 Walnut St, San Francisco, CA 94016" +216396,Wired Headphones,1,11.99,06/27/19 09:13,"411 12th St, Portland, OR 97035" +216397,ThinkPad Laptop,1,999.99,06/10/19 17:11,"225 Church St, Austin, TX 73301" +216398,AA Batteries (4-pack),1,3.84,06/16/19 23:00,"783 Hickory St, Los Angeles, CA 90001" +216399,Wired Headphones,1,11.99,06/20/19 17:08,"519 4th St, New York City, NY 10001" +216399,Wired Headphones,1,11.99,06/20/19 17:08,"519 4th St, New York City, NY 10001" +216400,AA Batteries (4-pack),1,3.84,06/22/19 16:18,"101 Spruce St, Austin, TX 73301" +216401,Lightning Charging Cable,1,14.95,06/17/19 14:39,"464 Main St, San Francisco, CA 94016" +216402,LG Washing Machine,1,600.0,06/28/19 18:45,"942 Johnson St, Atlanta, GA 30301" +216403,iPhone,1,700,06/24/19 20:27,"238 Dogwood St, San Francisco, CA 94016" +216404,AA Batteries (4-pack),3,3.84,06/30/19 04:23,"681 Wilson St, Atlanta, GA 30301" +216404,Apple Airpods Headphones,1,150,06/30/19 04:23,"681 Wilson St, Atlanta, GA 30301" +216405,Lightning Charging Cable,1,14.95,06/13/19 13:32,"433 4th St, Portland, OR 97035" +216406,Bose SoundSport Headphones,1,99.99,06/21/19 08:53,"6 Hill St, Seattle, WA 98101" +216407,AAA Batteries (4-pack),1,2.99,06/28/19 01:57,"348 South St, Atlanta, GA 30301" +216408,27in 4K Gaming Monitor,1,389.99,06/16/19 09:04,"412 Adams St, Austin, TX 73301" +216409,Apple Airpods Headphones,1,150,06/19/19 13:58,"684 Main St, Seattle, WA 98101" +216410,AAA Batteries (4-pack),1,2.99,06/27/19 22:35,"321 Jefferson St, New York City, NY 10001" +216411,Apple Airpods Headphones,1,150,06/03/19 19:32,"251 12th St, Seattle, WA 98101" +216412,Wired Headphones,1,11.99,06/24/19 11:15,"838 7th St, New York City, NY 10001" +216413,USB-C Charging Cable,1,11.95,06/12/19 18:01,"6 Chestnut St, Portland, OR 97035" +216414,Flatscreen TV,1,300,06/04/19 15:26,"761 North St, Los Angeles, CA 90001" +216415,USB-C Charging Cable,1,11.95,06/03/19 21:43,"463 Center St, Dallas, TX 75001" +216416,20in Monitor,1,109.99,06/28/19 20:30,"139 Washington St, San Francisco, CA 94016" +216417,Lightning Charging Cable,1,14.95,06/01/19 17:48,"380 Hickory St, Dallas, TX 75001" +216418,20in Monitor,1,109.99,06/28/19 10:49,"266 Elm St, San Francisco, CA 94016" +216419,USB-C Charging Cable,2,11.95,06/06/19 16:05,"823 Park St, Dallas, TX 75001" +216420,Wired Headphones,1,11.99,06/19/19 19:37,"492 Pine St, San Francisco, CA 94016" +216421,Wired Headphones,1,11.99,06/15/19 17:50,"813 Church St, Portland, ME 04101" +216422,Lightning Charging Cable,1,14.95,06/25/19 13:41,"741 Highland St, Atlanta, GA 30301" +216423,Lightning Charging Cable,1,14.95,06/22/19 08:00,"150 11th St, San Francisco, CA 94016" +216424,Google Phone,1,600,06/28/19 20:19,"914 7th St, Los Angeles, CA 90001" +216425,AAA Batteries (4-pack),1,2.99,06/23/19 10:55,"67 14th St, Seattle, WA 98101" +216426,AAA Batteries (4-pack),3,2.99,06/03/19 12:17,"183 Willow St, San Francisco, CA 94016" +216427,AA Batteries (4-pack),2,3.84,06/29/19 22:02,"871 Maple St, Dallas, TX 75001" +216428,iPhone,1,700,06/21/19 19:20,"984 Park St, Seattle, WA 98101" +216429,Lightning Charging Cable,1,14.95,06/11/19 10:45,"15 Forest St, San Francisco, CA 94016" +216430,iPhone,1,700,06/12/19 13:57,"796 8th St, San Francisco, CA 94016" +216431,ThinkPad Laptop,1,999.99,06/23/19 15:51,"758 Jackson St, Seattle, WA 98101" +216432,34in Ultrawide Monitor,1,379.99,06/06/19 18:34,"466 4th St, Austin, TX 73301" +216433,USB-C Charging Cable,1,11.95,06/28/19 13:51,"93 14th St, Dallas, TX 75001" +216434,27in 4K Gaming Monitor,1,389.99,06/19/19 21:01,"573 5th St, San Francisco, CA 94016" +216435,AAA Batteries (4-pack),1,2.99,06/08/19 21:25,"909 13th St, Los Angeles, CA 90001" +216436,AA Batteries (4-pack),1,3.84,06/19/19 16:04,"373 14th St, Portland, ME 04101" +216437,USB-C Charging Cable,1,11.95,06/20/19 20:58,"705 Lakeview St, Austin, TX 73301" +216438,Lightning Charging Cable,1,14.95,06/22/19 10:51,"311 Park St, San Francisco, CA 94016" +216439,AA Batteries (4-pack),2,3.84,06/22/19 13:17,"669 Center St, San Francisco, CA 94016" +216440,Apple Airpods Headphones,1,150,06/15/19 11:44,"637 8th St, New York City, NY 10001" +216441,USB-C Charging Cable,1,11.95,06/15/19 09:43,"64 Elm St, Seattle, WA 98101" +216442,Wired Headphones,1,11.99,06/12/19 12:43,"335 Lincoln St, Los Angeles, CA 90001" +216443,Lightning Charging Cable,1,14.95,06/30/19 17:27,"668 Johnson St, Los Angeles, CA 90001" +216444,iPhone,1,700,06/13/19 15:03,"329 West St, Austin, TX 73301" +216445,AA Batteries (4-pack),1,3.84,06/03/19 07:26,"404 Spruce St, Los Angeles, CA 90001" +216446,27in FHD Monitor,1,149.99,06/23/19 16:48,"855 Sunset St, Atlanta, GA 30301" +216447,27in FHD Monitor,1,149.99,06/11/19 02:22,"904 11th St, San Francisco, CA 94016" +216448,USB-C Charging Cable,1,11.95,06/16/19 06:02,"344 Sunset St, Boston, MA 02215" +216449,Lightning Charging Cable,1,14.95,06/17/19 11:54,"93 Adams St, San Francisco, CA 94016" +216450,27in 4K Gaming Monitor,1,389.99,06/28/19 08:29,"897 Jefferson St, Boston, MA 02215" +216451,LG Washing Machine,1,600.0,06/22/19 18:43,"196 Spruce St, Boston, MA 02215" +216452,USB-C Charging Cable,1,11.95,06/03/19 22:13,"470 Church St, Austin, TX 73301" +216453,USB-C Charging Cable,1,11.95,06/15/19 14:21,"894 Dogwood St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +216454,AA Batteries (4-pack),3,3.84,06/13/19 11:09,"124 Hill St, New York City, NY 10001" +216455,USB-C Charging Cable,1,11.95,06/17/19 20:35,"371 5th St, Los Angeles, CA 90001" +216456,LG Washing Machine,1,600.0,06/30/19 09:15,"737 North St, Portland, OR 97035" +216457,Lightning Charging Cable,1,14.95,06/16/19 12:11,"545 8th St, Austin, TX 73301" +216458,AAA Batteries (4-pack),1,2.99,06/22/19 16:33,"952 4th St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +216459,Lightning Charging Cable,1,14.95,06/02/19 04:03,"49 Dogwood St, San Francisco, CA 94016" +216460,Bose SoundSport Headphones,1,99.99,06/17/19 10:26,"393 Pine St, Los Angeles, CA 90001" +216461,Apple Airpods Headphones,1,150,06/27/19 18:07,"229 Madison St, Los Angeles, CA 90001" +216462,34in Ultrawide Monitor,1,379.99,06/04/19 10:22,"893 2nd St, Portland, ME 04101" +216463,LG Dryer,1,600.0,06/02/19 14:39,"996 Madison St, San Francisco, CA 94016" +216464,Wired Headphones,1,11.99,06/24/19 20:26,"933 Maple St, Atlanta, GA 30301" +216465,USB-C Charging Cable,2,11.95,06/30/19 15:35,"847 11th St, Seattle, WA 98101" +216466,USB-C Charging Cable,1,11.95,06/15/19 03:07,"360 Jackson St, San Francisco, CA 94016" +216467,Bose SoundSport Headphones,1,99.99,06/07/19 19:28,"614 Lake St, Los Angeles, CA 90001" +216468,Flatscreen TV,1,300,06/10/19 11:14,"939 8th St, Atlanta, GA 30301" +216469,Wired Headphones,1,11.99,06/14/19 09:30,"219 Johnson St, Atlanta, GA 30301" +216470,iPhone,1,700,06/18/19 11:50,"468 Johnson St, Boston, MA 02215" +216471,34in Ultrawide Monitor,1,379.99,06/22/19 18:29,"958 Walnut St, Seattle, WA 98101" +216472,Lightning Charging Cable,1,14.95,06/10/19 08:49,"115 9th St, Seattle, WA 98101" +216473,AA Batteries (4-pack),1,3.84,06/18/19 20:21,"394 Adams St, Seattle, WA 98101" +216474,iPhone,1,700,06/19/19 21:42,"521 North St, New York City, NY 10001" +216475,AAA Batteries (4-pack),1,2.99,06/06/19 22:26,"640 Johnson St, Portland, OR 97035" +216476,iPhone,1,700,06/21/19 20:34,"466 5th St, Dallas, TX 75001" +216477,27in FHD Monitor,1,149.99,06/28/19 07:44,"546 Wilson St, New York City, NY 10001" +216478,27in 4K Gaming Monitor,1,389.99,06/23/19 08:36,"289 River St, Los Angeles, CA 90001" +216479,Apple Airpods Headphones,1,150,06/02/19 10:34,"264 6th St, Los Angeles, CA 90001" +216480,USB-C Charging Cable,1,11.95,06/21/19 23:37,"947 Cherry St, Dallas, TX 75001" +216481,27in 4K Gaming Monitor,1,389.99,06/16/19 22:53,"494 10th St, San Francisco, CA 94016" +216482,Bose SoundSport Headphones,1,99.99,06/26/19 00:40,"673 South St, Dallas, TX 75001" +216483,AAA Batteries (4-pack),2,2.99,06/05/19 14:51,"861 13th St, Boston, MA 02215" +216484,Bose SoundSport Headphones,1,99.99,06/09/19 18:39,"763 Lincoln St, San Francisco, CA 94016" +216485,Apple Airpods Headphones,1,150,06/23/19 13:26,"689 North St, Austin, TX 73301" +216486,27in FHD Monitor,1,149.99,06/11/19 20:07,"207 Spruce St, Atlanta, GA 30301" +216487,Wired Headphones,1,11.99,06/25/19 20:05,"21 Cherry St, San Francisco, CA 94016" +216488,20in Monitor,1,109.99,06/06/19 00:08,"677 Forest St, Atlanta, GA 30301" +216489,20in Monitor,1,109.99,06/27/19 20:14,"960 Spruce St, Los Angeles, CA 90001" +216490,AAA Batteries (4-pack),4,2.99,06/10/19 22:03,"756 Walnut St, Seattle, WA 98101" +216491,Lightning Charging Cable,1,14.95,06/19/19 20:48,"267 Jackson St, Los Angeles, CA 90001" +216492,Bose SoundSport Headphones,1,99.99,06/12/19 16:11,"195 Highland St, Atlanta, GA 30301" +216493,Flatscreen TV,1,300,06/24/19 18:31,"346 Meadow St, San Francisco, CA 94016" +216494,Vareebadd Phone,1,400,06/25/19 10:59,"86 2nd St, Seattle, WA 98101" +216494,USB-C Charging Cable,1,11.95,06/25/19 10:59,"86 2nd St, Seattle, WA 98101" +216494,AA Batteries (4-pack),1,3.84,06/25/19 10:59,"86 2nd St, Seattle, WA 98101" +216495,AAA Batteries (4-pack),1,2.99,06/30/19 20:02,"482 Cedar St, New York City, NY 10001" +216496,AAA Batteries (4-pack),2,2.99,06/03/19 21:41,"27 Jackson St, San Francisco, CA 94016" +216497,AA Batteries (4-pack),1,3.84,06/23/19 10:42,"582 7th St, Austin, TX 73301" +216498,AA Batteries (4-pack),2,3.84,06/30/19 08:14,"565 Johnson St, Dallas, TX 75001" +216499,Wired Headphones,1,11.99,06/06/19 10:35,"459 1st St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +216500,AAA Batteries (4-pack),1,2.99,06/07/19 23:00,"629 6th St, San Francisco, CA 94016" +216501,Flatscreen TV,1,300,06/05/19 19:53,"656 River St, Atlanta, GA 30301" +216502,AAA Batteries (4-pack),1,2.99,06/06/19 15:30,"515 Jackson St, San Francisco, CA 94016" +216503,Lightning Charging Cable,1,14.95,06/22/19 10:19,"374 Sunset St, Atlanta, GA 30301" +216504,Wired Headphones,1,11.99,06/02/19 14:02,"34 Madison St, San Francisco, CA 94016" +216505,ThinkPad Laptop,1,999.99,06/18/19 19:52,"778 Center St, New York City, NY 10001" +216506,34in Ultrawide Monitor,1,379.99,06/02/19 07:09,"695 14th St, Dallas, TX 75001" +216507,USB-C Charging Cable,1,11.95,06/03/19 08:39,"896 Hill St, Los Angeles, CA 90001" +216508,Wired Headphones,1,11.99,06/21/19 22:39,"536 Madison St, New York City, NY 10001" +216509,Bose SoundSport Headphones,1,99.99,06/18/19 19:00,"334 Lincoln St, Dallas, TX 75001" +216510,34in Ultrawide Monitor,1,379.99,06/18/19 01:08,"42 Spruce St, Dallas, TX 75001" +216511,AA Batteries (4-pack),1,3.84,06/05/19 20:24,"827 Center St, San Francisco, CA 94016" +216512,Wired Headphones,1,11.99,06/27/19 16:45,"525 5th St, Dallas, TX 75001" +216513,Google Phone,1,600,06/15/19 23:03,"196 Washington St, New York City, NY 10001" +216514,Lightning Charging Cable,1,14.95,06/02/19 13:51,"215 Spruce St, New York City, NY 10001" +216515,AAA Batteries (4-pack),1,2.99,06/16/19 00:05,"518 Washington St, San Francisco, CA 94016" +216515,Apple Airpods Headphones,1,150,06/16/19 00:05,"518 Washington St, San Francisco, CA 94016" +216516,AAA Batteries (4-pack),2,2.99,06/23/19 20:14,"264 Walnut St, Boston, MA 02215" +216517,27in 4K Gaming Monitor,1,389.99,06/19/19 20:39,"333 Hickory St, Seattle, WA 98101" +216518,Macbook Pro Laptop,1,1700,07/01/19 05:16,"360 Ridge St, San Francisco, CA 94016" +216519,AAA Batteries (4-pack),2,2.99,06/11/19 18:03,"22 Wilson St, San Francisco, CA 94016" +216520,Lightning Charging Cable,1,14.95,06/07/19 00:54,"260 8th St, Los Angeles, CA 90001" +216521,iPhone,1,700,06/01/19 08:41,"450 7th St, Los Angeles, CA 90001" +216522,Lightning Charging Cable,1,14.95,06/15/19 19:11,"612 Elm St, San Francisco, CA 94016" +216523,Wired Headphones,1,11.99,06/29/19 14:17,"802 Cherry St, Boston, MA 02215" +216524,AAA Batteries (4-pack),1,2.99,06/24/19 11:57,"45 Lake St, Atlanta, GA 30301" +216525,Apple Airpods Headphones,1,150,06/05/19 22:20,"782 Center St, New York City, NY 10001" +216526,AAA Batteries (4-pack),1,2.99,06/13/19 02:08,"42 Hickory St, Seattle, WA 98101" +216527,AA Batteries (4-pack),1,3.84,06/11/19 17:04,"568 Hill St, San Francisco, CA 94016" +216528,AAA Batteries (4-pack),1,2.99,06/03/19 12:34,"689 Cedar St, Seattle, WA 98101" +216529,Bose SoundSport Headphones,1,99.99,06/12/19 08:55,"968 Hickory St, Los Angeles, CA 90001" +216530,iPhone,1,700,06/28/19 18:51,"917 Cedar St, Los Angeles, CA 90001" +216531,USB-C Charging Cable,1,11.95,06/27/19 21:41,"819 North St, Atlanta, GA 30301" +216532,Apple Airpods Headphones,1,150,06/04/19 16:05,"547 Center St, San Francisco, CA 94016" +216533,34in Ultrawide Monitor,1,379.99,06/05/19 14:07,"171 Hickory St, New York City, NY 10001" +216534,AA Batteries (4-pack),1,3.84,06/21/19 19:11,"853 13th St, Dallas, TX 75001" +216535,20in Monitor,1,109.99,06/10/19 15:50,"269 Wilson St, Los Angeles, CA 90001" +216536,AAA Batteries (4-pack),1,2.99,06/13/19 11:24,"556 Johnson St, San Francisco, CA 94016" +216537,AA Batteries (4-pack),1,3.84,06/17/19 18:47,"876 10th St, Boston, MA 02215" +216538,Bose SoundSport Headphones,1,99.99,06/12/19 09:23,"74 Forest St, Seattle, WA 98101" +216539,USB-C Charging Cable,1,11.95,06/28/19 02:09,"1 7th St, San Francisco, CA 94016" +216540,34in Ultrawide Monitor,1,379.99,06/11/19 12:14,"1 Main St, San Francisco, CA 94016" +216541,Wired Headphones,1,11.99,06/10/19 21:29,"103 Park St, Seattle, WA 98101" +216542,27in 4K Gaming Monitor,1,389.99,06/07/19 07:29,"451 Jefferson St, Los Angeles, CA 90001" +216543,USB-C Charging Cable,2,11.95,06/27/19 08:58,"916 Hickory St, Seattle, WA 98101" +216544,AAA Batteries (4-pack),3,2.99,06/02/19 06:13,"941 Wilson St, Boston, MA 02215" +216545,Bose SoundSport Headphones,1,99.99,06/25/19 16:05,"970 Lake St, New York City, NY 10001" +216546,AAA Batteries (4-pack),2,2.99,06/17/19 18:16,"33 2nd St, New York City, NY 10001" +216547,Apple Airpods Headphones,1,150,06/18/19 19:55,"981 Johnson St, Atlanta, GA 30301" +216548,USB-C Charging Cable,1,11.95,06/25/19 09:35,"66 4th St, New York City, NY 10001" +216549,USB-C Charging Cable,1,11.95,06/05/19 21:00,"702 Meadow St, New York City, NY 10001" +216550,Wired Headphones,1,11.99,06/16/19 21:26,"282 Chestnut St, Los Angeles, CA 90001" +216551,ThinkPad Laptop,1,999.99,06/07/19 19:44,"712 7th St, San Francisco, CA 94016" +216552,Wired Headphones,1,11.99,06/10/19 20:31,"229 Johnson St, New York City, NY 10001" +216553,USB-C Charging Cable,1,11.95,06/18/19 19:31,"997 Johnson St, San Francisco, CA 94016" +216554,AA Batteries (4-pack),1,3.84,06/25/19 16:42,"419 Lakeview St, New York City, NY 10001" +216555,Bose SoundSport Headphones,1,99.99,06/07/19 23:14,"822 Cherry St, Atlanta, GA 30301" +216556,27in FHD Monitor,1,149.99,06/28/19 14:55,"848 South St, Los Angeles, CA 90001" +216557,AA Batteries (4-pack),1,3.84,06/23/19 13:28,"914 Highland St, Los Angeles, CA 90001" +216558,AA Batteries (4-pack),1,3.84,06/03/19 17:01,"846 South St, Boston, MA 02215" +216559,27in FHD Monitor,1,149.99,06/23/19 20:41,"836 Hill St, Boston, MA 02215" +216560,Apple Airpods Headphones,1,150,06/28/19 19:02,"933 Lakeview St, Boston, MA 02215" +216561,Wired Headphones,1,11.99,06/06/19 06:05,"213 Dogwood St, San Francisco, CA 94016" +216562,Apple Airpods Headphones,1,150,06/10/19 00:01,"794 14th St, Dallas, TX 75001" +216563,Macbook Pro Laptop,1,1700,06/23/19 17:02,"772 Main St, New York City, NY 10001" +216564,AA Batteries (4-pack),1,3.84,06/22/19 21:27,"451 Johnson St, Los Angeles, CA 90001" +216565,Bose SoundSport Headphones,1,99.99,06/01/19 08:23,"370 Lincoln St, New York City, NY 10001" +216566,Lightning Charging Cable,1,14.95,06/28/19 22:20,"130 Adams St, San Francisco, CA 94016" +216567,AA Batteries (4-pack),1,3.84,06/29/19 19:55,"555 9th St, Dallas, TX 75001" +216568,27in 4K Gaming Monitor,1,389.99,06/20/19 20:45,"249 Hill St, Atlanta, GA 30301" +216569,AA Batteries (4-pack),2,3.84,06/19/19 15:08,"490 Wilson St, Atlanta, GA 30301" +216570,Bose SoundSport Headphones,1,99.99,06/08/19 07:41,"396 2nd St, Los Angeles, CA 90001" +216571,AAA Batteries (4-pack),1,2.99,06/17/19 05:45,"176 Madison St, Seattle, WA 98101" +216572,Wired Headphones,1,11.99,06/16/19 12:22,"718 Maple St, San Francisco, CA 94016" +216573,AAA Batteries (4-pack),1,2.99,06/02/19 08:50,"132 Center St, New York City, NY 10001" +216574,Lightning Charging Cable,1,14.95,06/17/19 18:09,"603 Elm St, Dallas, TX 75001" +216575,AA Batteries (4-pack),2,3.84,06/18/19 19:35,"163 12th St, New York City, NY 10001" +216576,AA Batteries (4-pack),2,3.84,06/07/19 20:39,"592 Jefferson St, San Francisco, CA 94016" +216577,Wired Headphones,2,11.99,06/03/19 18:22,"724 Lincoln St, Atlanta, GA 30301" +216578,AAA Batteries (4-pack),2,2.99,06/06/19 14:47,"221 Jackson St, Seattle, WA 98101" +,,,,, +216579,Apple Airpods Headphones,1,150,06/06/19 23:10,"286 12th St, Portland, OR 97035" +216580,USB-C Charging Cable,1,11.95,06/19/19 11:19,"293 Hickory St, New York City, NY 10001" +216581,Lightning Charging Cable,1,14.95,06/26/19 18:11,"386 Highland St, Dallas, TX 75001" +216582,USB-C Charging Cable,1,11.95,06/01/19 05:48,"963 2nd St, Portland, ME 04101" +216583,Google Phone,1,600,06/03/19 20:55,"808 Chestnut St, San Francisco, CA 94016" +216583,USB-C Charging Cable,1,11.95,06/03/19 20:55,"808 Chestnut St, San Francisco, CA 94016" +216584,Apple Airpods Headphones,1,150,06/16/19 01:17,"780 8th St, Los Angeles, CA 90001" +216585,USB-C Charging Cable,1,11.95,06/20/19 22:07,"357 9th St, San Francisco, CA 94016" +216586,27in FHD Monitor,1,149.99,06/16/19 15:23,"541 Sunset St, New York City, NY 10001" +216587,Bose SoundSport Headphones,1,99.99,06/02/19 21:10,"397 4th St, Boston, MA 02215" +216588,Bose SoundSport Headphones,1,99.99,06/11/19 08:40,"123 Cedar St, New York City, NY 10001" +216589,Macbook Pro Laptop,1,1700,06/27/19 21:58,"907 Center St, Austin, TX 73301" +216590,27in FHD Monitor,1,149.99,06/09/19 22:43,"811 12th St, New York City, NY 10001" +216591,Apple Airpods Headphones,1,150,06/06/19 00:06,"997 Elm St, Atlanta, GA 30301" +216592,27in FHD Monitor,1,149.99,06/01/19 13:39,"835 13th St, Los Angeles, CA 90001" +216593,Bose SoundSport Headphones,1,99.99,06/12/19 11:56,"716 Pine St, Portland, OR 97035" +216594,Wired Headphones,1,11.99,06/25/19 13:38,"365 South St, Dallas, TX 75001" +216595,ThinkPad Laptop,1,999.99,06/18/19 12:11,"940 6th St, Los Angeles, CA 90001" +216596,AAA Batteries (4-pack),1,2.99,06/07/19 19:34,"593 11th St, San Francisco, CA 94016" +216597,Lightning Charging Cable,1,14.95,06/13/19 16:42,"231 11th St, Los Angeles, CA 90001" +216598,Lightning Charging Cable,1,14.95,06/18/19 11:31,"935 Church St, New York City, NY 10001" +216599,AA Batteries (4-pack),1,3.84,06/15/19 14:16,"976 Maple St, Boston, MA 02215" +216600,AAA Batteries (4-pack),2,2.99,06/14/19 19:17,"882 Chestnut St, Portland, OR 97035" +216601,iPhone,1,700,06/28/19 18:27,"897 8th St, Los Angeles, CA 90001" +216602,27in FHD Monitor,1,149.99,06/18/19 13:01,"645 Sunset St, Boston, MA 02215" +216603,AA Batteries (4-pack),1,3.84,06/03/19 21:46,"884 North St, Austin, TX 73301" +216604,Lightning Charging Cable,1,14.95,06/25/19 17:10,"41 10th St, San Francisco, CA 94016" +216605,Bose SoundSport Headphones,1,99.99,06/22/19 23:25,"309 Walnut St, San Francisco, CA 94016" +216606,Wired Headphones,1,11.99,06/05/19 08:51,"290 North St, Seattle, WA 98101" +216607,20in Monitor,1,109.99,06/18/19 12:37,"250 Park St, San Francisco, CA 94016" +216608,iPhone,1,700,06/13/19 11:11,"400 7th St, Dallas, TX 75001" +216609,Wired Headphones,1,11.99,06/01/19 19:19,"353 Washington St, Austin, TX 73301" +216610,27in FHD Monitor,1,149.99,06/08/19 11:17,"15 Lakeview St, San Francisco, CA 94016" +216611,USB-C Charging Cable,1,11.95,06/30/19 07:48,"149 9th St, Boston, MA 02215" +216612,27in FHD Monitor,1,149.99,06/21/19 18:15,"688 2nd St, Austin, TX 73301" +216613,Wired Headphones,1,11.99,06/02/19 10:05,"419 11th St, Dallas, TX 75001" +216614,Lightning Charging Cable,1,14.95,06/19/19 00:05,"437 Lincoln St, Los Angeles, CA 90001" +216615,Bose SoundSport Headphones,1,99.99,06/23/19 14:59,"67 Park St, Seattle, WA 98101" +216616,AA Batteries (4-pack),1,3.84,06/27/19 20:18,"718 Cherry St, San Francisco, CA 94016" +216617,AA Batteries (4-pack),2,3.84,06/27/19 13:21,"265 Jackson St, Seattle, WA 98101" +216618,Vareebadd Phone,1,400,06/11/19 23:42,"676 8th St, San Francisco, CA 94016" +216618,USB-C Charging Cable,1,11.95,06/11/19 23:42,"676 8th St, San Francisco, CA 94016" +216619,Flatscreen TV,1,300,06/14/19 15:59,"146 Highland St, Austin, TX 73301" +216620,Apple Airpods Headphones,1,150,06/24/19 11:11,"749 12th St, Los Angeles, CA 90001" +216621,Bose SoundSport Headphones,1,99.99,06/27/19 18:39,"217 Hickory St, New York City, NY 10001" +216622,27in FHD Monitor,1,149.99,06/24/19 09:03,"291 River St, Dallas, TX 75001" +216623,AA Batteries (4-pack),1,3.84,06/10/19 21:35,"615 12th St, San Francisco, CA 94016" +216624,34in Ultrawide Monitor,1,379.99,06/16/19 21:07,"584 Meadow St, Los Angeles, CA 90001" +216625,Bose SoundSport Headphones,1,99.99,06/05/19 10:06,"243 South St, Dallas, TX 75001" +216626,AAA Batteries (4-pack),2,2.99,06/17/19 16:51,"635 Maple St, San Francisco, CA 94016" +216627,Apple Airpods Headphones,1,150,06/21/19 19:56,"88 Pine St, Boston, MA 02215" +216628,34in Ultrawide Monitor,1,379.99,06/09/19 11:38,"514 West St, New York City, NY 10001" +216629,27in 4K Gaming Monitor,1,389.99,06/05/19 17:02,"910 Maple St, San Francisco, CA 94016" +216630,Bose SoundSport Headphones,1,99.99,06/20/19 13:42,"76 5th St, Austin, TX 73301" +216631,AA Batteries (4-pack),3,3.84,06/03/19 16:59,"785 Maple St, Seattle, WA 98101" +216632,Wired Headphones,1,11.99,06/29/19 07:56,"393 1st St, San Francisco, CA 94016" +216633,27in FHD Monitor,1,149.99,06/28/19 08:56,"440 Willow St, Los Angeles, CA 90001" +216634,Bose SoundSport Headphones,1,99.99,06/06/19 14:57,"422 Main St, Los Angeles, CA 90001" +216635,AA Batteries (4-pack),1,3.84,06/03/19 20:11,"427 8th St, San Francisco, CA 94016" +216636,Bose SoundSport Headphones,1,99.99,06/07/19 19:21,"971 Adams St, Los Angeles, CA 90001" +216637,Wired Headphones,1,11.99,06/28/19 12:07,"966 Highland St, Portland, OR 97035" +216638,AA Batteries (4-pack),1,3.84,06/10/19 11:29,"831 6th St, Austin, TX 73301" +216639,Wired Headphones,1,11.99,06/21/19 12:31,"177 River St, New York City, NY 10001" +216640,Google Phone,1,600,06/24/19 21:35,"53 Park St, San Francisco, CA 94016" +216641,Flatscreen TV,1,300,06/03/19 11:59,"631 Willow St, Los Angeles, CA 90001" +216642,27in FHD Monitor,1,149.99,06/18/19 10:33,"79 Madison St, Atlanta, GA 30301" +216643,Apple Airpods Headphones,1,150,06/23/19 11:33,"919 11th St, Boston, MA 02215" +216644,Lightning Charging Cable,1,14.95,06/06/19 17:15,"854 Hickory St, San Francisco, CA 94016" +216645,LG Washing Machine,1,600.0,06/25/19 13:29,"198 Maple St, Boston, MA 02215" +216646,Apple Airpods Headphones,1,150,06/26/19 14:22,"987 13th St, Seattle, WA 98101" +216647,Wired Headphones,1,11.99,06/16/19 22:21,"639 South St, Austin, TX 73301" +216648,AA Batteries (4-pack),2,3.84,06/22/19 16:34,"686 13th St, San Francisco, CA 94016" +216649,Flatscreen TV,1,300,06/09/19 19:43,"941 Center St, San Francisco, CA 94016" +216650,iPhone,1,700,06/20/19 20:55,"245 Sunset St, San Francisco, CA 94016" +216651,27in 4K Gaming Monitor,1,389.99,06/25/19 17:49,"559 North St, Dallas, TX 75001" +216651,AAA Batteries (4-pack),1,2.99,06/25/19 17:49,"559 North St, Dallas, TX 75001" +216652,Apple Airpods Headphones,1,150,06/14/19 12:39,"597 Hickory St, Atlanta, GA 30301" +216653,AAA Batteries (4-pack),5,2.99,06/05/19 05:45,"372 Cedar St, Austin, TX 73301" +216654,AAA Batteries (4-pack),2,2.99,06/03/19 09:39,"107 1st St, Los Angeles, CA 90001" +216655,USB-C Charging Cable,1,11.95,06/22/19 20:58,"807 13th St, Portland, OR 97035" +216656,Wired Headphones,1,11.99,06/08/19 14:32,"45 6th St, San Francisco, CA 94016" +216657,AA Batteries (4-pack),1,3.84,06/11/19 22:22,"516 1st St, Dallas, TX 75001" +216658,Google Phone,1,600,06/14/19 03:28,"351 Willow St, San Francisco, CA 94016" +216659,Lightning Charging Cable,1,14.95,06/08/19 20:13,"816 Hill St, Austin, TX 73301" +216660,34in Ultrawide Monitor,1,379.99,06/05/19 06:56,"520 9th St, Portland, OR 97035" +216661,27in FHD Monitor,1,149.99,06/14/19 21:11,"594 Sunset St, Los Angeles, CA 90001" +216662,AAA Batteries (4-pack),1,2.99,06/27/19 11:56,"691 14th St, San Francisco, CA 94016" +216663,Google Phone,1,600,06/16/19 19:34,"873 Highland St, New York City, NY 10001" +216664,Lightning Charging Cable,1,14.95,06/21/19 22:26,"851 Cedar St, New York City, NY 10001" +216665,USB-C Charging Cable,2,11.95,06/21/19 16:44,"568 West St, New York City, NY 10001" +216666,USB-C Charging Cable,2,11.95,06/21/19 16:04,"435 Center St, Los Angeles, CA 90001" +216667,Apple Airpods Headphones,1,150,06/01/19 09:35,"342 5th St, Boston, MA 02215" +216668,ThinkPad Laptop,1,999.99,06/24/19 15:15,"976 8th St, Seattle, WA 98101" +216669,USB-C Charging Cable,1,11.95,06/23/19 10:54,"160 Jefferson St, Seattle, WA 98101" +216670,Lightning Charging Cable,1,14.95,06/01/19 14:43,"62 Lake St, San Francisco, CA 94016" +216671,27in 4K Gaming Monitor,1,389.99,06/15/19 09:11,"876 9th St, Seattle, WA 98101" +216672,Wired Headphones,1,11.99,06/13/19 06:18,"435 11th St, San Francisco, CA 94016" +216673,Google Phone,1,600,06/11/19 01:08,"765 Madison St, San Francisco, CA 94016" +216674,iPhone,1,700,06/03/19 17:14,"322 Adams St, Los Angeles, CA 90001" +216675,Lightning Charging Cable,1,14.95,06/25/19 11:39,"387 Hickory St, Los Angeles, CA 90001" +216676,Apple Airpods Headphones,1,150,06/11/19 20:25,"799 Pine St, San Francisco, CA 94016" +216677,AAA Batteries (4-pack),1,2.99,06/03/19 12:19,"982 Lake St, Portland, OR 97035" +216678,AAA Batteries (4-pack),2,2.99,06/23/19 20:29,"624 Madison St, Seattle, WA 98101" +216679,Google Phone,1,600,06/29/19 09:51,"27 Center St, Seattle, WA 98101" +216680,USB-C Charging Cable,1,11.95,06/30/19 18:58,"428 Chestnut St, Los Angeles, CA 90001" +216681,USB-C Charging Cable,1,11.95,06/25/19 12:03,"604 12th St, Los Angeles, CA 90001" +216682,20in Monitor,1,109.99,06/28/19 10:27,"720 Lincoln St, New York City, NY 10001" +216683,Lightning Charging Cable,1,14.95,06/22/19 17:19,"907 Hill St, Los Angeles, CA 90001" +216684,USB-C Charging Cable,1,11.95,06/26/19 13:03,"398 West St, Los Angeles, CA 90001" +216685,USB-C Charging Cable,1,11.95,06/07/19 20:49,"775 Jackson St, Los Angeles, CA 90001" +216686,Wired Headphones,1,11.99,06/18/19 19:26,"91 1st St, Dallas, TX 75001" +216687,Bose SoundSport Headphones,1,99.99,06/03/19 01:41,"227 10th St, Atlanta, GA 30301" +216688,AAA Batteries (4-pack),2,2.99,06/23/19 05:46,"903 Hill St, San Francisco, CA 94016" +216689,Wired Headphones,1,11.99,06/04/19 20:28,"53 Spruce St, Los Angeles, CA 90001" +216690,Bose SoundSport Headphones,1,99.99,06/13/19 12:35,"888 Hickory St, Dallas, TX 75001" +216691,USB-C Charging Cable,1,11.95,06/05/19 13:14,"127 8th St, New York City, NY 10001" +216692,LG Dryer,1,600.0,06/13/19 11:58,"979 7th St, Dallas, TX 75001" +216693,Wired Headphones,1,11.99,06/16/19 11:12,"758 West St, San Francisco, CA 94016" +216694,Wired Headphones,1,11.99,06/11/19 12:57,"988 Meadow St, Portland, OR 97035" +216695,Wired Headphones,1,11.99,06/17/19 07:52,"20 10th St, Dallas, TX 75001" +216696,Lightning Charging Cable,1,14.95,06/16/19 20:47,"638 7th St, New York City, NY 10001" +216697,AA Batteries (4-pack),1,3.84,06/16/19 06:38,"652 14th St, Boston, MA 02215" +216698,Apple Airpods Headphones,1,150,06/19/19 16:29,"671 12th St, New York City, NY 10001" +216699,iPhone,1,700,06/29/19 13:24,"272 Main St, Los Angeles, CA 90001" +216700,Lightning Charging Cable,1,14.95,06/08/19 19:34,"137 Maple St, San Francisco, CA 94016" +216701,AAA Batteries (4-pack),2,2.99,06/08/19 12:39,"495 Lake St, San Francisco, CA 94016" +216701,Wired Headphones,1,11.99,06/08/19 12:39,"495 Lake St, San Francisco, CA 94016" +216702,Apple Airpods Headphones,1,150,06/06/19 17:46,"498 Park St, Austin, TX 73301" +216703,Lightning Charging Cable,1,14.95,06/13/19 13:41,"854 1st St, San Francisco, CA 94016" +216704,ThinkPad Laptop,1,999.99,06/23/19 23:05,"20 Hickory St, New York City, NY 10001" +216705,Bose SoundSport Headphones,1,99.99,06/04/19 19:08,"352 Church St, Dallas, TX 75001" +216706,iPhone,1,700,06/29/19 13:31,"613 11th St, Austin, TX 73301" +216707,34in Ultrawide Monitor,1,379.99,06/18/19 11:09,"482 Jackson St, Los Angeles, CA 90001" +216708,20in Monitor,1,109.99,06/15/19 16:08,"344 Ridge St, Seattle, WA 98101" +216709,Apple Airpods Headphones,1,150,06/06/19 23:38,"376 Center St, New York City, NY 10001" +216710,iPhone,1,700,06/26/19 19:56,"759 Hill St, New York City, NY 10001" +216711,Wired Headphones,1,11.99,06/07/19 08:56,"94 Ridge St, Boston, MA 02215" +216712,USB-C Charging Cable,1,11.95,06/04/19 00:47,"65 Maple St, Seattle, WA 98101" +216713,USB-C Charging Cable,1,11.95,06/02/19 11:11,"257 Ridge St, Austin, TX 73301" +216714,27in 4K Gaming Monitor,1,389.99,06/14/19 18:49,"132 Ridge St, Austin, TX 73301" +216715,Lightning Charging Cable,1,14.95,06/10/19 22:14,"1 Lakeview St, Atlanta, GA 30301" +216716,AA Batteries (4-pack),1,3.84,06/21/19 19:36,"56 6th St, Atlanta, GA 30301" +216717,27in 4K Gaming Monitor,1,389.99,06/25/19 12:16,"985 Park St, San Francisco, CA 94016" +216718,iPhone,1,700,06/06/19 09:29,"636 River St, Atlanta, GA 30301" +216719,USB-C Charging Cable,1,11.95,06/16/19 12:26,"189 Jackson St, Dallas, TX 75001" +216720,20in Monitor,1,109.99,06/04/19 12:45,"142 Chestnut St, Dallas, TX 75001" +216721,27in 4K Gaming Monitor,1,389.99,06/12/19 15:07,"684 Johnson St, Dallas, TX 75001" +216722,AAA Batteries (4-pack),2,2.99,06/19/19 10:25,"833 Jackson St, Atlanta, GA 30301" +216723,Apple Airpods Headphones,1,150,06/04/19 21:14,"811 Meadow St, New York City, NY 10001" +216724,USB-C Charging Cable,1,11.95,06/22/19 16:41,"214 Forest St, New York City, NY 10001" +216725,AA Batteries (4-pack),1,3.84,06/16/19 05:18,"232 Park St, San Francisco, CA 94016" +216726,Google Phone,1,600,06/25/19 19:53,"176 Cedar St, New York City, NY 10001" +216726,USB-C Charging Cable,1,11.95,06/25/19 19:53,"176 Cedar St, New York City, NY 10001" +216727,AA Batteries (4-pack),1,3.84,06/08/19 20:17,"346 9th St, Boston, MA 02215" +216728,Flatscreen TV,1,300,06/16/19 10:07,"524 Meadow St, Boston, MA 02215" +216729,Lightning Charging Cable,1,14.95,06/22/19 08:42,"389 Willow St, Atlanta, GA 30301" +216730,20in Monitor,1,109.99,06/02/19 08:01,"529 Lincoln St, New York City, NY 10001" +216731,Apple Airpods Headphones,1,150,06/12/19 09:56,"252 Hill St, Boston, MA 02215" +216732,Lightning Charging Cable,1,14.95,06/19/19 21:25,"442 12th St, Atlanta, GA 30301" +216733,AAA Batteries (4-pack),1,2.99,06/10/19 09:21,"249 Lake St, Portland, OR 97035" +216734,AA Batteries (4-pack),3,3.84,06/05/19 17:41,"175 Jackson St, Boston, MA 02215" +216735,iPhone,1,700,06/30/19 13:08,"759 Meadow St, Los Angeles, CA 90001" +216736,USB-C Charging Cable,1,11.95,06/07/19 10:06,"314 Madison St, Dallas, TX 75001" +216737,Apple Airpods Headphones,1,150,06/06/19 15:32,"125 Jackson St, San Francisco, CA 94016" +216738,Lightning Charging Cable,1,14.95,06/19/19 17:53,"179 Walnut St, Boston, MA 02215" +216739,Bose SoundSport Headphones,1,99.99,06/14/19 18:14,"120 Cedar St, Boston, MA 02215" +216740,Google Phone,1,600,06/19/19 10:53,"582 West St, Seattle, WA 98101" +216741,AA Batteries (4-pack),1,3.84,06/24/19 17:25,"555 Spruce St, Los Angeles, CA 90001" +216742,34in Ultrawide Monitor,1,379.99,06/02/19 22:44,"546 West St, Portland, OR 97035" +216743,USB-C Charging Cable,1,11.95,06/16/19 18:36,"773 Hickory St, Austin, TX 73301" +216744,Wired Headphones,1,11.99,06/04/19 12:26,"988 13th St, San Francisco, CA 94016" +216745,AAA Batteries (4-pack),1,2.99,06/14/19 20:07,"805 5th St, Los Angeles, CA 90001" +216746,AAA Batteries (4-pack),1,2.99,06/08/19 13:42,"470 Jefferson St, Atlanta, GA 30301" +216747,AA Batteries (4-pack),1,3.84,06/27/19 14:43,"907 Pine St, Austin, TX 73301" +216748,Lightning Charging Cable,2,14.95,06/01/19 11:54,"278 Adams St, Los Angeles, CA 90001" +216749,27in FHD Monitor,1,149.99,06/02/19 16:49,"160 Madison St, New York City, NY 10001" +216750,34in Ultrawide Monitor,1,379.99,06/26/19 21:25,"260 7th St, Dallas, TX 75001" +216751,AA Batteries (4-pack),1,3.84,06/22/19 14:46,"692 5th St, San Francisco, CA 94016" +216752,Lightning Charging Cable,1,14.95,06/22/19 17:51,"770 North St, San Francisco, CA 94016" +216753,Google Phone,1,600,06/22/19 11:42,"370 Pine St, Los Angeles, CA 90001" +216754,Bose SoundSport Headphones,1,99.99,06/17/19 13:02,"596 13th St, Dallas, TX 75001" +216755,iPhone,1,700,06/25/19 17:11,"955 6th St, Boston, MA 02215" +216755,Lightning Charging Cable,1,14.95,06/25/19 17:11,"955 6th St, Boston, MA 02215" +216756,27in 4K Gaming Monitor,1,389.99,06/15/19 17:45,"165 Ridge St, New York City, NY 10001" +216757,AA Batteries (4-pack),3,3.84,06/17/19 20:47,"809 Park St, San Francisco, CA 94016" +216758,AAA Batteries (4-pack),1,2.99,06/13/19 13:32,"493 North St, Seattle, WA 98101" +216759,Apple Airpods Headphones,1,150,06/12/19 07:41,"116 Elm St, Boston, MA 02215" +216760,USB-C Charging Cable,1,11.95,06/02/19 18:08,"190 South St, San Francisco, CA 94016" +216761,USB-C Charging Cable,1,11.95,06/04/19 17:13,"221 Lincoln St, Dallas, TX 75001" +216762,AAA Batteries (4-pack),1,2.99,06/04/19 16:07,"229 Walnut St, Boston, MA 02215" +216763,Lightning Charging Cable,2,14.95,06/21/19 10:15,"504 Hill St, San Francisco, CA 94016" +216764,Apple Airpods Headphones,1,150,06/01/19 12:14,"694 Adams St, San Francisco, CA 94016" +216765,AAA Batteries (4-pack),2,2.99,06/28/19 08:03,"736 2nd St, New York City, NY 10001" +216766,USB-C Charging Cable,1,11.95,06/05/19 12:39,"18 Chestnut St, Los Angeles, CA 90001" +216767,Wired Headphones,1,11.99,06/08/19 13:08,"760 Highland St, New York City, NY 10001" +216768,27in FHD Monitor,1,149.99,06/16/19 19:20,"643 Madison St, Boston, MA 02215" +216769,27in FHD Monitor,1,149.99,06/30/19 08:14,"747 Forest St, Seattle, WA 98101" +216770,AAA Batteries (4-pack),1,2.99,06/15/19 14:10,"550 Jefferson St, San Francisco, CA 94016" +216771,ThinkPad Laptop,1,999.99,06/15/19 20:07,"593 Sunset St, San Francisco, CA 94016" +216772,27in FHD Monitor,1,149.99,06/12/19 18:01,"758 Cherry St, Atlanta, GA 30301" +216773,USB-C Charging Cable,1,11.95,06/14/19 13:09,"787 10th St, Los Angeles, CA 90001" +216774,AA Batteries (4-pack),1,3.84,06/26/19 18:46,"349 Main St, Boston, MA 02215" +216775,AAA Batteries (4-pack),1,2.99,06/30/19 15:23,"798 1st St, Los Angeles, CA 90001" +216776,Wired Headphones,1,11.99,06/20/19 13:28,"346 12th St, Los Angeles, CA 90001" +216777,USB-C Charging Cable,1,11.95,06/26/19 11:09,"924 1st St, San Francisco, CA 94016" +216778,Lightning Charging Cable,1,14.95,06/26/19 08:01,"382 14th St, Seattle, WA 98101" +216779,34in Ultrawide Monitor,1,379.99,06/19/19 10:04,"734 10th St, San Francisco, CA 94016" +216780,Bose SoundSport Headphones,1,99.99,06/10/19 19:36,"51 Washington St, New York City, NY 10001" +216781,USB-C Charging Cable,1,11.95,06/23/19 21:51,"821 Lakeview St, San Francisco, CA 94016" +216782,AAA Batteries (4-pack),1,2.99,06/11/19 13:39,"82 West St, Seattle, WA 98101" +216783,Lightning Charging Cable,1,14.95,06/21/19 14:43,"607 Chestnut St, Dallas, TX 75001" +216784,Wired Headphones,1,11.99,06/09/19 09:26,"196 Hickory St, Los Angeles, CA 90001" +216785,USB-C Charging Cable,1,11.95,06/08/19 09:49,"387 Sunset St, Portland, ME 04101" +216786,Wired Headphones,1,11.99,06/05/19 04:10,"476 Pine St, Los Angeles, CA 90001" +216787,Vareebadd Phone,1,400,06/15/19 22:00,"466 Church St, San Francisco, CA 94016" +216788,iPhone,1,700,06/23/19 20:55,"510 Dogwood St, San Francisco, CA 94016" +216789,27in FHD Monitor,1,149.99,06/29/19 19:50,"223 Main St, Boston, MA 02215" +216790,USB-C Charging Cable,1,11.95,06/28/19 18:44,"856 Forest St, Dallas, TX 75001" +216791,Lightning Charging Cable,1,14.95,06/04/19 09:27,"598 Jackson St, San Francisco, CA 94016" +216792,Wired Headphones,1,11.99,06/27/19 14:30,"47 Jackson St, Atlanta, GA 30301" +216793,27in FHD Monitor,1,149.99,06/09/19 14:30,"83 Maple St, New York City, NY 10001" +216794,USB-C Charging Cable,2,11.95,06/03/19 20:02,"619 Forest St, San Francisco, CA 94016" +216795,Bose SoundSport Headphones,1,99.99,06/12/19 12:17,"582 10th St, San Francisco, CA 94016" +216796,Lightning Charging Cable,1,14.95,06/23/19 13:06,"332 11th St, San Francisco, CA 94016" +216797,Macbook Pro Laptop,1,1700,06/15/19 09:21,"191 West St, Seattle, WA 98101" +216798,USB-C Charging Cable,1,11.95,06/13/19 19:01,"260 Center St, Atlanta, GA 30301" +216799,Google Phone,1,600,06/23/19 10:41,"278 Park St, San Francisco, CA 94016" +216800,34in Ultrawide Monitor,1,379.99,06/02/19 17:17,"63 Pine St, San Francisco, CA 94016" +216801,AAA Batteries (4-pack),1,2.99,06/18/19 20:39,"783 Highland St, Seattle, WA 98101" +216802,Lightning Charging Cable,1,14.95,06/27/19 21:34,"706 Hickory St, Seattle, WA 98101" +216803,Bose SoundSport Headphones,1,99.99,06/06/19 19:24,"831 12th St, Atlanta, GA 30301" +216804,AA Batteries (4-pack),1,3.84,06/20/19 17:41,"500 Walnut St, San Francisco, CA 94016" +216805,34in Ultrawide Monitor,1,379.99,06/04/19 08:49,"273 Willow St, Dallas, TX 75001" +216806,AAA Batteries (4-pack),1,2.99,06/24/19 00:12,"554 Park St, Los Angeles, CA 90001" +216807,Apple Airpods Headphones,1,150,06/03/19 13:10,"130 6th St, Seattle, WA 98101" +216808,LG Washing Machine,1,600.0,06/18/19 13:24,"210 Forest St, Dallas, TX 75001" +216809,AA Batteries (4-pack),1,3.84,06/04/19 11:17,"647 1st St, Los Angeles, CA 90001" +216810,Lightning Charging Cable,1,14.95,06/18/19 21:21,"888 Elm St, Portland, OR 97035" +216811,ThinkPad Laptop,1,999.99,06/09/19 15:20,"138 7th St, New York City, NY 10001" +216812,Bose SoundSport Headphones,1,99.99,06/24/19 10:43,"83 Meadow St, Seattle, WA 98101" +216813,Lightning Charging Cable,1,14.95,06/07/19 09:37,"145 South St, Los Angeles, CA 90001" +216814,Apple Airpods Headphones,1,150,06/28/19 19:36,"829 Hill St, Los Angeles, CA 90001" +216815,27in FHD Monitor,1,149.99,06/04/19 22:03,"917 Wilson St, San Francisco, CA 94016" +216816,Lightning Charging Cable,1,14.95,06/25/19 09:33,"427 Lake St, Portland, OR 97035" +216817,Wired Headphones,1,11.99,06/27/19 07:26,"405 Chestnut St, Boston, MA 02215" +216818,Apple Airpods Headphones,1,150,06/21/19 19:46,"316 Church St, Los Angeles, CA 90001" +216819,Macbook Pro Laptop,1,1700,06/05/19 19:25,"390 Spruce St, New York City, NY 10001" +216820,Lightning Charging Cable,1,14.95,06/04/19 00:36,"141 Highland St, Atlanta, GA 30301" +216821,Wired Headphones,1,11.99,06/02/19 16:33,"256 5th St, Seattle, WA 98101" +216822,Lightning Charging Cable,1,14.95,06/11/19 22:42,"761 Meadow St, Boston, MA 02215" +216823,Apple Airpods Headphones,1,150,06/08/19 11:14,"272 Cedar St, New York City, NY 10001" +216824,USB-C Charging Cable,1,11.95,06/02/19 22:13,"415 6th St, Boston, MA 02215" +216825,iPhone,1,700,06/15/19 10:06,"154 12th St, New York City, NY 10001" +216826,Flatscreen TV,1,300,06/11/19 14:27,"924 Willow St, New York City, NY 10001" +216827,USB-C Charging Cable,1,11.95,06/25/19 11:47,"970 6th St, New York City, NY 10001" +216828,34in Ultrawide Monitor,1,379.99,06/03/19 13:55,"348 Sunset St, Portland, OR 97035" +216829,Bose SoundSport Headphones,1,99.99,06/17/19 20:09,"214 12th St, Boston, MA 02215" +216830,Apple Airpods Headphones,1,150,06/27/19 16:40,"643 Cedar St, Los Angeles, CA 90001" +216831,27in FHD Monitor,1,149.99,06/19/19 13:55,"348 Main St, New York City, NY 10001" +216832,Lightning Charging Cable,1,14.95,06/09/19 00:54,"454 Jefferson St, Los Angeles, CA 90001" +216833,LG Washing Machine,1,600.0,06/22/19 18:12,"461 Sunset St, Seattle, WA 98101" +216834,Apple Airpods Headphones,1,150,06/12/19 12:09,"876 Johnson St, New York City, NY 10001" +216835,Google Phone,1,600,06/22/19 13:08,"111 5th St, San Francisco, CA 94016" +216835,USB-C Charging Cable,1,11.95,06/22/19 13:08,"111 5th St, San Francisco, CA 94016" +216835,Wired Headphones,1,11.99,06/22/19 13:08,"111 5th St, San Francisco, CA 94016" +216836,AAA Batteries (4-pack),1,2.99,06/08/19 09:43,"673 River St, New York City, NY 10001" +216837,Wired Headphones,1,11.99,06/19/19 15:50,"515 Spruce St, Boston, MA 02215" +216838,AA Batteries (4-pack),1,3.84,06/06/19 10:50,"268 Spruce St, Boston, MA 02215" +216839,AA Batteries (4-pack),1,3.84,06/10/19 10:16,"665 Madison St, Seattle, WA 98101" +216840,AAA Batteries (4-pack),2,2.99,06/22/19 11:25,"229 10th St, San Francisco, CA 94016" +216841,AA Batteries (4-pack),1,3.84,06/26/19 19:16,"697 Cedar St, Los Angeles, CA 90001" +216842,Apple Airpods Headphones,1,150,06/17/19 19:39,"941 10th St, Los Angeles, CA 90001" +216843,ThinkPad Laptop,1,999.99,06/07/19 18:16,"616 Wilson St, Boston, MA 02215" +216844,iPhone,1,700,06/24/19 19:36,"925 Ridge St, Los Angeles, CA 90001" +216844,Lightning Charging Cable,1,14.95,06/24/19 19:36,"925 Ridge St, Los Angeles, CA 90001" +216845,Wired Headphones,1,11.99,06/30/19 23:30,"143 Madison St, Dallas, TX 75001" +216846,Lightning Charging Cable,1,14.95,06/03/19 18:27,"909 Chestnut St, New York City, NY 10001" +216847,Lightning Charging Cable,1,14.95,07/01/19 01:12,"819 Johnson St, Atlanta, GA 30301" +216848,AA Batteries (4-pack),1,3.84,06/08/19 20:40,"497 Hill St, Los Angeles, CA 90001" +216849,AAA Batteries (4-pack),2,2.99,06/30/19 09:28,"785 Hickory St, Los Angeles, CA 90001" +216850,20in Monitor,1,109.99,06/29/19 21:02,"521 Church St, Portland, OR 97035" +216851,ThinkPad Laptop,1,999.99,06/25/19 11:14,"144 Pine St, San Francisco, CA 94016" +216852,Lightning Charging Cable,1,14.95,06/17/19 16:22,"980 Cedar St, Seattle, WA 98101" +216853,AA Batteries (4-pack),1,3.84,06/09/19 13:48,"608 7th St, Portland, ME 04101" +216854,Bose SoundSport Headphones,1,99.99,06/09/19 09:18,"580 10th St, San Francisco, CA 94016" +216855,AA Batteries (4-pack),1,3.84,06/22/19 16:50,"158 Lincoln St, San Francisco, CA 94016" +216856,20in Monitor,1,109.99,06/27/19 20:22,"926 Madison St, San Francisco, CA 94016" +216857,USB-C Charging Cable,1,11.95,06/11/19 20:05,"356 Lake St, San Francisco, CA 94016" +216858,AA Batteries (4-pack),1,3.84,06/20/19 18:51,"135 Lakeview St, San Francisco, CA 94016" +216859,USB-C Charging Cable,1,11.95,06/17/19 12:38,"159 Wilson St, Portland, OR 97035" +216860,iPhone,1,700,06/19/19 13:58,"162 North St, Atlanta, GA 30301" +216861,Flatscreen TV,1,300,06/13/19 21:53,"105 Maple St, San Francisco, CA 94016" +216862,Lightning Charging Cable,1,14.95,06/01/19 13:00,"87 Sunset St, Los Angeles, CA 90001" +216863,AA Batteries (4-pack),1,3.84,06/03/19 06:36,"763 Cherry St, New York City, NY 10001" +216864,Apple Airpods Headphones,1,150,06/25/19 14:11,"202 Cedar St, Seattle, WA 98101" +216865,Bose SoundSport Headphones,1,99.99,06/11/19 06:56,"912 14th St, Dallas, TX 75001" +216866,USB-C Charging Cable,1,11.95,06/10/19 12:12,"386 Dogwood St, Boston, MA 02215" +216867,AAA Batteries (4-pack),3,2.99,06/16/19 21:12,"635 Dogwood St, San Francisco, CA 94016" +216868,Bose SoundSport Headphones,1,99.99,06/26/19 18:27,"651 13th St, San Francisco, CA 94016" +216869,27in FHD Monitor,1,149.99,06/04/19 22:44,"690 Hickory St, Seattle, WA 98101" +216870,Wired Headphones,1,11.99,06/11/19 18:04,"483 9th St, San Francisco, CA 94016" +216871,Flatscreen TV,1,300,06/22/19 10:44,"703 Washington St, New York City, NY 10001" +216872,AA Batteries (4-pack),1,3.84,06/08/19 16:17,"4 Main St, Seattle, WA 98101" +216873,AA Batteries (4-pack),1,3.84,06/09/19 20:15,"330 Washington St, Portland, OR 97035" +216874,Lightning Charging Cable,1,14.95,06/22/19 11:50,"367 11th St, New York City, NY 10001" +216875,iPhone,1,700,06/13/19 12:01,"980 9th St, San Francisco, CA 94016" +216876,USB-C Charging Cable,1,11.95,06/10/19 20:19,"800 Chestnut St, Seattle, WA 98101" +216877,34in Ultrawide Monitor,1,379.99,06/30/19 19:42,"48 9th St, Dallas, TX 75001" +216878,iPhone,1,700,06/04/19 17:56,"5 14th St, New York City, NY 10001" +216878,Apple Airpods Headphones,1,150,06/04/19 17:56,"5 14th St, New York City, NY 10001" +216879,Macbook Pro Laptop,1,1700,06/03/19 11:55,"547 1st St, Austin, TX 73301" +216880,Apple Airpods Headphones,1,150,06/30/19 10:36,"542 North St, Seattle, WA 98101" +216881,Apple Airpods Headphones,1,150,06/26/19 11:57,"616 River St, Portland, OR 97035" +216882,20in Monitor,1,109.99,06/19/19 16:01,"661 9th St, Boston, MA 02215" +216883,34in Ultrawide Monitor,1,379.99,06/01/19 11:14,"542 Washington St, New York City, NY 10001" +216884,AA Batteries (4-pack),1,3.84,06/13/19 09:51,"801 Pine St, San Francisco, CA 94016" +216885,Bose SoundSport Headphones,1,99.99,06/05/19 08:31,"312 Main St, Boston, MA 02215" +216886,Apple Airpods Headphones,1,150,06/10/19 19:21,"255 Washington St, Boston, MA 02215" +216887,USB-C Charging Cable,1,11.95,06/10/19 21:05,"290 Chestnut St, Portland, OR 97035" +216888,AAA Batteries (4-pack),1,2.99,06/22/19 10:52,"315 Main St, New York City, NY 10001" +216889,Lightning Charging Cable,1,14.95,06/23/19 23:55,"283 Adams St, Boston, MA 02215" +216890,Google Phone,1,600,06/07/19 00:32,"499 6th St, Atlanta, GA 30301" +216891,AAA Batteries (4-pack),1,2.99,06/27/19 00:56,"747 7th St, New York City, NY 10001" +216892,USB-C Charging Cable,1,11.95,06/07/19 19:41,"24 Forest St, Atlanta, GA 30301" +216893,AAA Batteries (4-pack),1,2.99,06/23/19 10:52,"146 Pine St, Seattle, WA 98101" +216894,AA Batteries (4-pack),4,3.84,06/25/19 09:16,"847 Ridge St, San Francisco, CA 94016" +216895,Google Phone,1,600,06/20/19 17:16,"267 10th St, San Francisco, CA 94016" +216895,USB-C Charging Cable,1,11.95,06/20/19 17:16,"267 10th St, San Francisco, CA 94016" +216896,AAA Batteries (4-pack),1,2.99,06/11/19 22:19,"979 1st St, San Francisco, CA 94016" +216897,27in 4K Gaming Monitor,1,389.99,06/19/19 18:29,"278 Lakeview St, San Francisco, CA 94016" +216898,Macbook Pro Laptop,1,1700,06/15/19 11:21,"517 Center St, Boston, MA 02215" +216899,USB-C Charging Cable,1,11.95,06/09/19 12:48,"452 Dogwood St, New York City, NY 10001" +216900,iPhone,1,700,06/27/19 11:47,"952 5th St, Portland, OR 97035" +216901,Macbook Pro Laptop,1,1700,06/21/19 12:11,"214 Forest St, Los Angeles, CA 90001" +216902,AAA Batteries (4-pack),2,2.99,06/03/19 18:07,"987 Hickory St, Boston, MA 02215" +216903,AA Batteries (4-pack),2,3.84,06/28/19 21:20,"660 Pine St, Dallas, TX 75001" +216904,Apple Airpods Headphones,1,150,06/24/19 15:19,"104 Chestnut St, Atlanta, GA 30301" +216905,USB-C Charging Cable,1,11.95,06/20/19 06:32,"969 7th St, Atlanta, GA 30301" +216906,AA Batteries (4-pack),1,3.84,06/08/19 08:51,"416 9th St, New York City, NY 10001" +216907,Lightning Charging Cable,1,14.95,06/27/19 13:44,"642 Forest St, Atlanta, GA 30301" +216908,Lightning Charging Cable,1,14.95,06/13/19 11:32,"36 Main St, Los Angeles, CA 90001" +216909,Bose SoundSport Headphones,1,99.99,06/18/19 08:02,"526 Meadow St, Los Angeles, CA 90001" +216910,Bose SoundSport Headphones,1,99.99,06/10/19 11:05,"82 Forest St, San Francisco, CA 94016" +216911,27in 4K Gaming Monitor,1,389.99,06/14/19 15:33,"485 6th St, San Francisco, CA 94016" +216912,AAA Batteries (4-pack),1,2.99,06/13/19 11:41,"967 12th St, Los Angeles, CA 90001" +216913,Lightning Charging Cable,1,14.95,06/14/19 15:42,"36 Cedar St, Seattle, WA 98101" +216914,Apple Airpods Headphones,1,150,06/25/19 06:20,"721 South St, Los Angeles, CA 90001" +216915,20in Monitor,1,109.99,06/03/19 14:08,"20 Elm St, New York City, NY 10001" +216916,Flatscreen TV,1,300,06/28/19 17:27,"931 Wilson St, New York City, NY 10001" +216917,AAA Batteries (4-pack),1,2.99,06/01/19 17:45,"732 Pine St, Los Angeles, CA 90001" +216918,AAA Batteries (4-pack),1,2.99,06/03/19 10:57,"375 Chestnut St, Los Angeles, CA 90001" +216919,Lightning Charging Cable,1,14.95,06/15/19 16:12,"943 7th St, Los Angeles, CA 90001" +216920,Lightning Charging Cable,1,14.95,06/07/19 16:40,"677 Ridge St, Boston, MA 02215" +216921,34in Ultrawide Monitor,1,379.99,06/21/19 16:52,"567 4th St, San Francisco, CA 94016" +216922,LG Dryer,1,600.0,06/10/19 04:59,"416 Wilson St, Los Angeles, CA 90001" +216923,Macbook Pro Laptop,1,1700,06/17/19 06:20,"31 Spruce St, San Francisco, CA 94016" +216924,27in FHD Monitor,1,149.99,06/11/19 21:35,"788 Forest St, San Francisco, CA 94016" +216925,Bose SoundSport Headphones,1,99.99,06/10/19 21:38,"377 Cedar St, Seattle, WA 98101" +216926,AA Batteries (4-pack),1,3.84,06/03/19 17:58,"956 River St, San Francisco, CA 94016" +216927,USB-C Charging Cable,1,11.95,06/17/19 07:57,"904 Center St, San Francisco, CA 94016" +216928,AA Batteries (4-pack),1,3.84,06/21/19 15:45,"509 Church St, San Francisco, CA 94016" +216929,Lightning Charging Cable,1,14.95,06/29/19 14:49,"125 2nd St, Atlanta, GA 30301" +216930,AA Batteries (4-pack),1,3.84,06/21/19 10:54,"383 North St, Los Angeles, CA 90001" +216931,Wired Headphones,1,11.99,06/20/19 02:19,"580 West St, New York City, NY 10001" +216932,Apple Airpods Headphones,1,150,06/16/19 08:31,"183 Lincoln St, San Francisco, CA 94016" +216933,iPhone,1,700,06/05/19 09:38,"997 West St, Boston, MA 02215" +216934,AA Batteries (4-pack),1,3.84,06/25/19 12:45,"894 Main St, Atlanta, GA 30301" +216935,20in Monitor,1,109.99,06/25/19 17:08,"854 9th St, San Francisco, CA 94016" +216936,34in Ultrawide Monitor,1,379.99,06/06/19 21:59,"454 Main St, Dallas, TX 75001" +216937,Google Phone,1,600,06/15/19 20:28,"658 Hill St, Seattle, WA 98101" +216938,Lightning Charging Cable,1,14.95,06/14/19 12:28,"101 13th St, San Francisco, CA 94016" +216939,AAA Batteries (4-pack),3,2.99,06/16/19 17:55,"44 7th St, New York City, NY 10001" +216940,USB-C Charging Cable,2,11.95,06/14/19 21:42,"664 Main St, Atlanta, GA 30301" +216941,AA Batteries (4-pack),1,3.84,06/25/19 17:18,"388 Cedar St, New York City, NY 10001" +216942,iPhone,1,700,06/29/19 14:02,"217 South St, San Francisco, CA 94016" +216943,AA Batteries (4-pack),1,3.84,06/22/19 19:32,"341 12th St, Dallas, TX 75001" +216944,AA Batteries (4-pack),1,3.84,06/14/19 19:42,"185 South St, Boston, MA 02215" +216945,Lightning Charging Cable,1,14.95,06/12/19 16:50,"380 South St, Atlanta, GA 30301" +216946,AA Batteries (4-pack),2,3.84,06/28/19 21:43,"889 6th St, San Francisco, CA 94016" +216947,Apple Airpods Headphones,1,150,06/15/19 12:53,"228 Walnut St, Los Angeles, CA 90001" +216947,Apple Airpods Headphones,1,150,06/15/19 12:53,"228 Walnut St, Los Angeles, CA 90001" +216948,Lightning Charging Cable,1,14.95,06/20/19 17:00,"629 Lakeview St, San Francisco, CA 94016" +216949,AAA Batteries (4-pack),1,2.99,06/29/19 08:55,"629 Forest St, New York City, NY 10001" +216950,AA Batteries (4-pack),1,3.84,06/17/19 12:41,"953 2nd St, Atlanta, GA 30301" +216951,27in FHD Monitor,1,149.99,06/25/19 17:13,"230 Dogwood St, San Francisco, CA 94016" +216952,Vareebadd Phone,1,400,06/06/19 12:30,"5 Johnson St, Seattle, WA 98101" +216953,USB-C Charging Cable,1,11.95,06/14/19 20:48,"383 Dogwood St, Boston, MA 02215" +216954,Bose SoundSport Headphones,1,99.99,06/24/19 15:21,"835 12th St, New York City, NY 10001" +216955,Apple Airpods Headphones,1,150,06/18/19 07:38,"881 Spruce St, Los Angeles, CA 90001" +216956,Google Phone,1,600,06/17/19 13:28,"501 13th St, Dallas, TX 75001" +216957,27in FHD Monitor,1,149.99,06/27/19 11:21,"605 River St, Seattle, WA 98101" +216958,Apple Airpods Headphones,1,150,06/06/19 17:45,"755 4th St, San Francisco, CA 94016" +216959,AAA Batteries (4-pack),1,2.99,06/20/19 16:16,"288 12th St, Dallas, TX 75001" +216960,Lightning Charging Cable,1,14.95,06/08/19 17:34,"915 4th St, Portland, OR 97035" +216961,Apple Airpods Headphones,1,150,06/15/19 19:09,"963 Chestnut St, Boston, MA 02215" +216962,USB-C Charging Cable,1,11.95,06/10/19 11:56,"232 Chestnut St, Austin, TX 73301" +216963,Bose SoundSport Headphones,1,99.99,06/22/19 12:32,"671 Church St, Boston, MA 02215" +216964,AAA Batteries (4-pack),1,2.99,06/16/19 16:35,"275 Meadow St, San Francisco, CA 94016" +216965,AAA Batteries (4-pack),1,2.99,06/14/19 10:52,"538 Meadow St, New York City, NY 10001" +216966,27in FHD Monitor,1,149.99,06/13/19 19:39,"879 Spruce St, New York City, NY 10001" +216967,AAA Batteries (4-pack),1,2.99,06/04/19 19:08,"729 Center St, Dallas, TX 75001" +216968,Flatscreen TV,1,300,06/22/19 07:56,"719 Chestnut St, Boston, MA 02215" +216969,Lightning Charging Cable,1,14.95,06/01/19 10:30,"434 River St, Portland, OR 97035" +216970,27in FHD Monitor,1,149.99,06/18/19 23:07,"184 Jackson St, New York City, NY 10001" +216971,AA Batteries (4-pack),1,3.84,06/18/19 23:29,"688 Forest St, Seattle, WA 98101" +216972,AAA Batteries (4-pack),2,2.99,06/28/19 08:27,"610 River St, New York City, NY 10001" +216973,Google Phone,1,600,06/10/19 21:36,"741 Spruce St, San Francisco, CA 94016" +216973,USB-C Charging Cable,1,11.95,06/10/19 21:36,"741 Spruce St, San Francisco, CA 94016" +,,,,, +216974,Wired Headphones,1,11.99,06/29/19 15:47,"211 Madison St, Boston, MA 02215" +216975,AAA Batteries (4-pack),5,2.99,06/10/19 09:03,"458 Cedar St, Boston, MA 02215" +216976,Vareebadd Phone,1,400,06/10/19 16:48,"237 Adams St, San Francisco, CA 94016" +216976,Wired Headphones,1,11.99,06/10/19 16:48,"237 Adams St, San Francisco, CA 94016" +216977,AA Batteries (4-pack),1,3.84,06/14/19 23:01,"723 12th St, San Francisco, CA 94016" +216978,ThinkPad Laptop,1,999.99,06/10/19 08:27,"984 12th St, San Francisco, CA 94016" +216979,Wired Headphones,1,11.99,06/23/19 14:12,"423 7th St, Los Angeles, CA 90001" +216980,Lightning Charging Cable,1,14.95,06/23/19 05:24,"606 West St, New York City, NY 10001" +216981,USB-C Charging Cable,1,11.95,06/08/19 19:53,"363 South St, Seattle, WA 98101" +216982,Apple Airpods Headphones,1,150,06/09/19 14:48,"614 9th St, Los Angeles, CA 90001" +216983,34in Ultrawide Monitor,1,379.99,06/26/19 07:12,"91 Hickory St, New York City, NY 10001" +216984,USB-C Charging Cable,1,11.95,06/04/19 14:30,"449 Madison St, New York City, NY 10001" +216985,20in Monitor,1,109.99,06/27/19 13:20,"138 7th St, New York City, NY 10001" +216986,AA Batteries (4-pack),2,3.84,06/06/19 10:19,"627 Maple St, Atlanta, GA 30301" +216987,Apple Airpods Headphones,1,150,06/14/19 15:50,"737 Johnson St, Austin, TX 73301" +216988,Bose SoundSport Headphones,1,99.99,06/17/19 04:45,"38 Center St, San Francisco, CA 94016" +216989,USB-C Charging Cable,1,11.95,06/08/19 15:18,"809 Cherry St, New York City, NY 10001" +216990,Apple Airpods Headphones,1,150,06/25/19 20:32,"22 North St, Atlanta, GA 30301" +216991,Bose SoundSport Headphones,1,99.99,06/06/19 14:23,"358 Wilson St, Los Angeles, CA 90001" +216992,AAA Batteries (4-pack),1,2.99,06/08/19 09:47,"333 Spruce St, Portland, ME 04101" +216993,USB-C Charging Cable,1,11.95,06/15/19 09:50,"671 River St, Seattle, WA 98101" +216994,Wired Headphones,2,11.99,06/21/19 16:52,"266 Jackson St, Seattle, WA 98101" +216995,Bose SoundSport Headphones,1,99.99,06/15/19 18:11,"329 2nd St, San Francisco, CA 94016" +216996,USB-C Charging Cable,1,11.95,06/14/19 16:38,"766 13th St, Los Angeles, CA 90001" +216997,Lightning Charging Cable,1,14.95,06/14/19 11:44,"79 Dogwood St, Portland, ME 04101" +216998,Flatscreen TV,1,300,06/25/19 15:09,"766 10th St, San Francisco, CA 94016" +216999,27in 4K Gaming Monitor,1,389.99,06/27/19 11:39,"497 Willow St, New York City, NY 10001" +217000,Lightning Charging Cable,1,14.95,06/10/19 17:42,"548 1st St, New York City, NY 10001" +217001,Lightning Charging Cable,1,14.95,06/03/19 12:51,"39 Johnson St, New York City, NY 10001" +217002,Wired Headphones,1,11.99,06/12/19 16:43,"206 North St, Los Angeles, CA 90001" +217003,AAA Batteries (4-pack),1,2.99,06/16/19 10:32,"56 11th St, New York City, NY 10001" +217004,Apple Airpods Headphones,1,150,06/03/19 09:41,"939 Chestnut St, Dallas, TX 75001" +217005,Lightning Charging Cable,1,14.95,06/27/19 08:12,"920 12th St, San Francisco, CA 94016" +217006,34in Ultrawide Monitor,1,379.99,06/06/19 07:58,"984 Jefferson St, Seattle, WA 98101" +217007,ThinkPad Laptop,1,999.99,06/11/19 17:10,"689 West St, Boston, MA 02215" +217008,USB-C Charging Cable,1,11.95,06/01/19 14:35,"628 Lake St, New York City, NY 10001" +217009,Lightning Charging Cable,1,14.95,06/25/19 17:42,"967 Lake St, San Francisco, CA 94016" +217010,AAA Batteries (4-pack),6,2.99,06/10/19 18:10,"161 Washington St, San Francisco, CA 94016" +217011,AA Batteries (4-pack),1,3.84,06/14/19 16:37,"297 9th St, San Francisco, CA 94016" +217011,20in Monitor,1,109.99,06/14/19 16:37,"297 9th St, San Francisco, CA 94016" +217012,AA Batteries (4-pack),1,3.84,06/25/19 12:04,"508 Elm St, San Francisco, CA 94016" +217013,USB-C Charging Cable,1,11.95,06/26/19 14:09,"588 Walnut St, Atlanta, GA 30301" +217013,AA Batteries (4-pack),1,3.84,06/26/19 14:09,"588 Walnut St, Atlanta, GA 30301" +217014,Lightning Charging Cable,2,14.95,06/17/19 14:42,"367 Adams St, Dallas, TX 75001" +217015,Bose SoundSport Headphones,1,99.99,06/21/19 11:59,"98 Cherry St, Los Angeles, CA 90001" +217016,AAA Batteries (4-pack),2,2.99,06/23/19 13:05,"807 9th St, Seattle, WA 98101" +217017,Apple Airpods Headphones,1,150,06/09/19 07:01,"125 7th St, Atlanta, GA 30301" +217018,iPhone,1,700,06/09/19 13:51,"652 Elm St, San Francisco, CA 94016" +217019,Lightning Charging Cable,1,14.95,06/02/19 16:15,"607 9th St, San Francisco, CA 94016" +217020,LG Dryer,1,600.0,06/20/19 15:13,"941 5th St, New York City, NY 10001" +217021,Apple Airpods Headphones,1,150,06/01/19 18:45,"668 Cedar St, Atlanta, GA 30301" +217022,AA Batteries (4-pack),1,3.84,06/23/19 16:09,"92 Johnson St, New York City, NY 10001" +217023,Wired Headphones,1,11.99,06/17/19 21:54,"899 Lincoln St, Los Angeles, CA 90001" +217024,ThinkPad Laptop,1,999.99,06/08/19 09:49,"424 Lakeview St, Atlanta, GA 30301" +217025,Macbook Pro Laptop,1,1700,06/02/19 12:53,"866 12th St, Atlanta, GA 30301" +217026,AA Batteries (4-pack),1,3.84,06/19/19 14:16,"343 Hill St, Boston, MA 02215" +217027,Wired Headphones,1,11.99,06/30/19 03:55,"560 Lakeview St, San Francisco, CA 94016" +217028,AA Batteries (4-pack),1,3.84,06/09/19 20:42,"756 Washington St, San Francisco, CA 94016" +217029,iPhone,1,700,06/11/19 12:30,"6 Hickory St, San Francisco, CA 94016" +217029,Lightning Charging Cable,1,14.95,06/11/19 12:30,"6 Hickory St, San Francisco, CA 94016" +217030,ThinkPad Laptop,1,999.99,06/18/19 08:07,"957 West St, San Francisco, CA 94016" +217031,USB-C Charging Cable,1,11.95,06/30/19 00:35,"136 West St, New York City, NY 10001" +217032,Google Phone,1,600,06/25/19 00:48,"885 Lakeview St, Los Angeles, CA 90001" +217033,Bose SoundSport Headphones,1,99.99,06/17/19 15:11,"339 Pine St, Los Angeles, CA 90001" +217034,AAA Batteries (4-pack),1,2.99,06/02/19 09:51,"575 Jackson St, Boston, MA 02215" +217035,Lightning Charging Cable,1,14.95,06/16/19 09:57,"991 6th St, San Francisco, CA 94016" +217036,Lightning Charging Cable,1,14.95,06/12/19 11:51,"908 9th St, San Francisco, CA 94016" +217037,Bose SoundSport Headphones,1,99.99,06/06/19 19:17,"594 Chestnut St, Boston, MA 02215" +217038,Lightning Charging Cable,1,14.95,06/04/19 11:40,"799 Main St, Atlanta, GA 30301" +217039,AA Batteries (4-pack),1,3.84,06/28/19 16:44,"395 9th St, San Francisco, CA 94016" +217040,Bose SoundSport Headphones,1,99.99,06/20/19 09:51,"746 West St, Portland, ME 04101" +217041,AA Batteries (4-pack),1,3.84,06/11/19 22:27,"55 Ridge St, New York City, NY 10001" +217042,AAA Batteries (4-pack),1,2.99,06/13/19 20:29,"640 Forest St, San Francisco, CA 94016" +217043,20in Monitor,1,109.99,06/22/19 23:43,"850 Lincoln St, Los Angeles, CA 90001" +217044,USB-C Charging Cable,1,11.95,06/24/19 14:34,"154 Ridge St, Dallas, TX 75001" +217045,AAA Batteries (4-pack),4,2.99,06/15/19 13:13,"943 10th St, San Francisco, CA 94016" +217046,AAA Batteries (4-pack),2,2.99,06/30/19 19:11,"655 2nd St, San Francisco, CA 94016" +217047,Bose SoundSport Headphones,1,99.99,06/24/19 17:27,"630 11th St, Dallas, TX 75001" +217048,Bose SoundSport Headphones,1,99.99,06/16/19 15:37,"296 13th St, Los Angeles, CA 90001" +217049,34in Ultrawide Monitor,1,379.99,06/14/19 11:10,"462 Adams St, Los Angeles, CA 90001" +217050,AA Batteries (4-pack),1,3.84,06/12/19 18:25,"498 Willow St, Los Angeles, CA 90001" +217051,ThinkPad Laptop,1,999.99,06/01/19 17:11,"386 12th St, Dallas, TX 75001" +217052,USB-C Charging Cable,1,11.95,06/19/19 19:15,"123 Cedar St, Portland, ME 04101" +217053,Bose SoundSport Headphones,1,99.99,06/23/19 15:43,"879 South St, Portland, OR 97035" +217054,Apple Airpods Headphones,1,150,06/26/19 11:56,"918 5th St, Los Angeles, CA 90001" +217055,Flatscreen TV,1,300,06/15/19 08:10,"111 South St, New York City, NY 10001" +217056,Lightning Charging Cable,1,14.95,06/25/19 15:14,"124 2nd St, Dallas, TX 75001" +217057,USB-C Charging Cable,1,11.95,06/10/19 09:25,"308 Lake St, San Francisco, CA 94016" +217058,AAA Batteries (4-pack),1,2.99,06/17/19 13:11,"691 7th St, San Francisco, CA 94016" +217059,AA Batteries (4-pack),1,3.84,06/02/19 16:00,"302 Lakeview St, Los Angeles, CA 90001" +217060,AA Batteries (4-pack),1,3.84,06/06/19 12:22,"187 5th St, San Francisco, CA 94016" +217061,AAA Batteries (4-pack),1,2.99,06/15/19 16:42,"165 5th St, Austin, TX 73301" +217062,Apple Airpods Headphones,1,150,06/03/19 22:35,"657 Lincoln St, Austin, TX 73301" +217063,Flatscreen TV,1,300,06/19/19 13:14,"137 Adams St, Boston, MA 02215" +217064,Lightning Charging Cable,1,14.95,06/05/19 18:22,"995 11th St, Boston, MA 02215" +217065,iPhone,1,700,06/16/19 19:03,"901 7th St, Los Angeles, CA 90001" +217066,Bose SoundSport Headphones,1,99.99,06/22/19 00:20,"499 Wilson St, Los Angeles, CA 90001" +217067,34in Ultrawide Monitor,1,379.99,06/27/19 21:36,"120 River St, Boston, MA 02215" +217068,Bose SoundSport Headphones,1,99.99,06/02/19 13:33,"140 Madison St, New York City, NY 10001" +217069,iPhone,1,700,06/09/19 10:45,"27 Spruce St, San Francisco, CA 94016" +217070,Lightning Charging Cable,1,14.95,06/02/19 23:34,"110 Maple St, San Francisco, CA 94016" +217071,AAA Batteries (4-pack),2,2.99,06/02/19 09:12,"32 12th St, Los Angeles, CA 90001" +217072,Bose SoundSport Headphones,1,99.99,06/25/19 13:45,"459 Cedar St, Boston, MA 02215" +217073,Lightning Charging Cable,1,14.95,06/06/19 14:25,"454 9th St, Portland, OR 97035" +217074,Lightning Charging Cable,1,14.95,06/09/19 12:22,"8 14th St, San Francisco, CA 94016" +217075,Lightning Charging Cable,1,14.95,06/02/19 00:12,"896 12th St, San Francisco, CA 94016" +217076,AA Batteries (4-pack),1,3.84,06/11/19 21:34,"346 13th St, Austin, TX 73301" +217077,USB-C Charging Cable,1,11.95,06/02/19 12:13,"370 Walnut St, San Francisco, CA 94016" +217078,Bose SoundSport Headphones,1,99.99,06/23/19 10:28,"946 Main St, Los Angeles, CA 90001" +217079,USB-C Charging Cable,1,11.95,06/26/19 15:10,"293 13th St, Austin, TX 73301" +217080,Macbook Pro Laptop,1,1700,06/24/19 02:34,"574 West St, Boston, MA 02215" +217081,Google Phone,1,600,06/28/19 13:37,"107 Maple St, New York City, NY 10001" +217082,AAA Batteries (4-pack),1,2.99,06/06/19 07:06,"778 Madison St, Los Angeles, CA 90001" +217083,iPhone,1,700,06/17/19 12:45,"616 9th St, New York City, NY 10001" +217084,Wired Headphones,1,11.99,06/07/19 08:34,"868 North St, Los Angeles, CA 90001" +217085,AA Batteries (4-pack),1,3.84,06/01/19 14:09,"289 6th St, Seattle, WA 98101" +217086,Apple Airpods Headphones,1,150,06/01/19 14:31,"106 River St, San Francisco, CA 94016" +217087,Wired Headphones,1,11.99,06/02/19 12:05,"309 Pine St, Dallas, TX 75001" +217088,Google Phone,1,600,06/03/19 16:14,"695 North St, San Francisco, CA 94016" +217088,Bose SoundSport Headphones,1,99.99,06/03/19 16:14,"695 North St, San Francisco, CA 94016" +217089,AA Batteries (4-pack),1,3.84,06/16/19 10:19,"155 Jefferson St, Atlanta, GA 30301" +217090,AA Batteries (4-pack),1,3.84,06/17/19 10:05,"976 North St, Portland, ME 04101" +217091,Lightning Charging Cable,1,14.95,06/21/19 15:11,"257 Park St, Atlanta, GA 30301" +217092,Wired Headphones,1,11.99,06/27/19 09:41,"212 Hill St, Seattle, WA 98101" +217093,Wired Headphones,1,11.99,06/08/19 00:26,"631 10th St, San Francisco, CA 94016" +217094,ThinkPad Laptop,1,999.99,06/16/19 19:24,"231 Dogwood St, Los Angeles, CA 90001" +217095,USB-C Charging Cable,1,11.95,06/27/19 01:10,"1 Dogwood St, Austin, TX 73301" +217096,Lightning Charging Cable,1,14.95,06/01/19 19:52,"316 11th St, New York City, NY 10001" +217097,20in Monitor,1,109.99,06/21/19 00:30,"74 8th St, Los Angeles, CA 90001" +217098,27in 4K Gaming Monitor,1,389.99,06/06/19 17:23,"218 4th St, San Francisco, CA 94016" +217099,Apple Airpods Headphones,1,150,06/14/19 13:10,"108 5th St, San Francisco, CA 94016" +217100,Bose SoundSport Headphones,1,99.99,06/19/19 23:35,"210 6th St, San Francisco, CA 94016" +217101,iPhone,1,700,06/07/19 13:08,"459 13th St, New York City, NY 10001" +217102,Lightning Charging Cable,1,14.95,06/08/19 13:38,"281 Center St, San Francisco, CA 94016" +217103,27in FHD Monitor,1,149.99,06/07/19 07:02,"844 1st St, Portland, OR 97035" +217104,Wired Headphones,1,11.99,06/24/19 00:45,"934 Washington St, Dallas, TX 75001" +217105,AAA Batteries (4-pack),2,2.99,06/30/19 20:25,"399 Jackson St, New York City, NY 10001" +217106,USB-C Charging Cable,1,11.95,06/06/19 13:26,"533 Pine St, Los Angeles, CA 90001" +217107,Lightning Charging Cable,1,14.95,06/13/19 22:19,"291 11th St, Seattle, WA 98101" +217108,AAA Batteries (4-pack),2,2.99,06/27/19 18:44,"535 Cedar St, New York City, NY 10001" +217109,34in Ultrawide Monitor,1,379.99,06/05/19 05:58,"209 5th St, Dallas, TX 75001" +217110,AAA Batteries (4-pack),2,2.99,06/24/19 09:43,"11 6th St, San Francisco, CA 94016" +217111,AA Batteries (4-pack),1,3.84,06/02/19 18:02,"437 Forest St, Boston, MA 02215" +217112,AA Batteries (4-pack),1,3.84,06/17/19 13:46,"856 Chestnut St, San Francisco, CA 94016" +217113,USB-C Charging Cable,1,11.95,06/09/19 14:57,"189 Elm St, New York City, NY 10001" +217114,Lightning Charging Cable,2,14.95,06/19/19 17:15,"248 Adams St, Los Angeles, CA 90001" +217115,Apple Airpods Headphones,1,150,06/16/19 18:22,"516 Park St, New York City, NY 10001" +217116,Wired Headphones,1,11.99,06/25/19 09:32,"121 South St, San Francisco, CA 94016" +217117,20in Monitor,1,109.99,06/08/19 18:24,"394 Lakeview St, San Francisco, CA 94016" +217118,Macbook Pro Laptop,1,1700,06/12/19 12:26,"817 Main St, San Francisco, CA 94016" +217119,Bose SoundSport Headphones,1,99.99,06/21/19 13:08,"1 Ridge St, Los Angeles, CA 90001" +217120,Lightning Charging Cable,1,14.95,06/30/19 19:16,"901 South St, San Francisco, CA 94016" +217121,AA Batteries (4-pack),1,3.84,06/29/19 12:39,"162 Lake St, Austin, TX 73301" +217122,Lightning Charging Cable,1,14.95,06/15/19 06:32,"600 10th St, Los Angeles, CA 90001" +217123,Apple Airpods Headphones,1,150,06/02/19 16:53,"967 Park St, Boston, MA 02215" +217124,AAA Batteries (4-pack),1,2.99,06/09/19 16:44,"305 8th St, New York City, NY 10001" +217125,iPhone,1,700,06/09/19 15:14,"436 Cherry St, Atlanta, GA 30301" +217126,27in 4K Gaming Monitor,1,389.99,06/09/19 16:36,"841 Adams St, Boston, MA 02215" +217127,Wired Headphones,1,11.99,06/22/19 16:06,"821 Hickory St, Atlanta, GA 30301" +217128,AA Batteries (4-pack),1,3.84,06/03/19 11:00,"765 Meadow St, New York City, NY 10001" +217129,AA Batteries (4-pack),1,3.84,06/13/19 00:40,"82 River St, San Francisco, CA 94016" +217130,Wired Headphones,1,11.99,06/07/19 16:11,"442 11th St, Seattle, WA 98101" +217131,Apple Airpods Headphones,1,150,06/13/19 12:10,"192 7th St, Seattle, WA 98101" +217132,iPhone,1,700,06/09/19 19:57,"431 West St, Boston, MA 02215" +217133,20in Monitor,1,109.99,06/25/19 14:13,"41 Lakeview St, New York City, NY 10001" +217134,iPhone,1,700,06/04/19 19:20,"345 Willow St, Seattle, WA 98101" +217134,Lightning Charging Cable,1,14.95,06/04/19 19:20,"345 Willow St, Seattle, WA 98101" +217135,AA Batteries (4-pack),1,3.84,06/14/19 19:36,"623 Elm St, Austin, TX 73301" +217136,Lightning Charging Cable,1,14.95,06/20/19 09:49,"67 Cedar St, Atlanta, GA 30301" +217137,AAA Batteries (4-pack),1,2.99,06/22/19 10:07,"689 4th St, New York City, NY 10001" +217138,Flatscreen TV,1,300,06/13/19 15:51,"382 Jefferson St, San Francisco, CA 94016" +217139,34in Ultrawide Monitor,1,379.99,06/30/19 11:23,"458 2nd St, Seattle, WA 98101" +217140,USB-C Charging Cable,1,11.95,06/30/19 19:22,"118 Highland St, Atlanta, GA 30301" +217141,Vareebadd Phone,1,400,06/09/19 13:02,"468 Cedar St, San Francisco, CA 94016" +217142,Wired Headphones,1,11.99,06/27/19 15:07,"559 Willow St, Boston, MA 02215" +217143,AAA Batteries (4-pack),1,2.99,06/30/19 20:39,"608 South St, Austin, TX 73301" +217144,Wired Headphones,1,11.99,06/08/19 11:09,"835 Cherry St, San Francisco, CA 94016" +217145,Lightning Charging Cable,1,14.95,06/07/19 17:09,"859 Lake St, Dallas, TX 75001" +217146,20in Monitor,1,109.99,06/03/19 21:10,"149 Adams St, Boston, MA 02215" +217147,27in FHD Monitor,1,149.99,06/24/19 10:54,"858 Maple St, New York City, NY 10001" +217148,Apple Airpods Headphones,1,150,06/24/19 07:22,"963 2nd St, New York City, NY 10001" +217149,Lightning Charging Cable,1,14.95,06/02/19 16:48,"927 11th St, Seattle, WA 98101" +217150,AA Batteries (4-pack),1,3.84,06/24/19 10:55,"812 Wilson St, San Francisco, CA 94016" +217151,20in Monitor,1,109.99,06/06/19 18:20,"280 12th St, San Francisco, CA 94016" +217152,27in FHD Monitor,1,149.99,06/08/19 15:53,"767 Washington St, San Francisco, CA 94016" +217153,AA Batteries (4-pack),1,3.84,06/23/19 16:55,"687 Madison St, San Francisco, CA 94016" +217154,USB-C Charging Cable,1,11.95,06/10/19 02:29,"298 Dogwood St, Dallas, TX 75001" +217155,27in FHD Monitor,1,149.99,06/06/19 23:04,"162 Forest St, New York City, NY 10001" +217156,27in FHD Monitor,1,149.99,06/11/19 18:12,"269 Sunset St, San Francisco, CA 94016" +217157,Lightning Charging Cable,1,14.95,06/25/19 15:09,"565 Cherry St, Los Angeles, CA 90001" +217158,Google Phone,1,600,06/27/19 16:13,"832 11th St, Boston, MA 02215" +217159,Apple Airpods Headphones,1,150,06/11/19 15:52,"603 Ridge St, Austin, TX 73301" +217160,Google Phone,1,600,06/04/19 22:18,"785 Spruce St, Austin, TX 73301" +217161,34in Ultrawide Monitor,1,379.99,06/21/19 17:23,"176 14th St, Los Angeles, CA 90001" +217162,USB-C Charging Cable,1,11.95,06/01/19 11:32,"629 Madison St, New York City, NY 10001" +217163,Bose SoundSport Headphones,1,99.99,06/24/19 18:27,"4 7th St, New York City, NY 10001" +217164,iPhone,1,700,06/21/19 09:54,"737 Willow St, Austin, TX 73301" +217165,Bose SoundSport Headphones,1,99.99,06/24/19 10:24,"571 14th St, Dallas, TX 75001" +217166,Wired Headphones,1,11.99,06/04/19 20:15,"538 Johnson St, Austin, TX 73301" +217167,AA Batteries (4-pack),1,3.84,06/07/19 10:18,"776 7th St, Boston, MA 02215" +217168,AA Batteries (4-pack),1,3.84,06/15/19 03:50,"717 14th St, Atlanta, GA 30301" +217169,USB-C Charging Cable,1,11.95,06/15/19 22:59,"759 Sunset St, New York City, NY 10001" +217170,AA Batteries (4-pack),1,3.84,06/02/19 06:11,"497 Cherry St, Los Angeles, CA 90001" +217171,Lightning Charging Cable,1,14.95,06/08/19 14:13,"418 Cherry St, Portland, OR 97035" +217172,Wired Headphones,1,11.99,06/30/19 16:08,"370 Lincoln St, San Francisco, CA 94016" +217173,AA Batteries (4-pack),1,3.84,06/25/19 12:07,"101 Cherry St, Portland, OR 97035" +217174,ThinkPad Laptop,1,999.99,06/07/19 13:24,"478 Church St, Los Angeles, CA 90001" +217175,Wired Headphones,1,11.99,06/19/19 07:12,"12 14th St, Los Angeles, CA 90001" +217176,AA Batteries (4-pack),2,3.84,06/03/19 08:49,"425 Ridge St, Atlanta, GA 30301" +217177,Lightning Charging Cable,1,14.95,06/13/19 17:51,"292 Washington St, Portland, OR 97035" +217178,AA Batteries (4-pack),1,3.84,06/10/19 20:45,"389 Johnson St, San Francisco, CA 94016" +217179,Google Phone,1,600,06/03/19 16:05,"607 Washington St, Boston, MA 02215" +217180,Apple Airpods Headphones,1,150,06/12/19 19:10,"148 Wilson St, Seattle, WA 98101" +217181,Google Phone,1,600,06/10/19 21:03,"407 South St, Boston, MA 02215" +217182,AAA Batteries (4-pack),1,2.99,06/01/19 10:54,"432 10th St, Boston, MA 02215" +217183,ThinkPad Laptop,1,999.99,06/27/19 23:19,"635 Church St, Portland, OR 97035" +217184,AAA Batteries (4-pack),2,2.99,06/04/19 16:37,"841 9th St, San Francisco, CA 94016" +217185,AAA Batteries (4-pack),1,2.99,06/17/19 07:47,"413 Jackson St, Los Angeles, CA 90001" +217186,20in Monitor,1,109.99,06/18/19 09:45,"72 Highland St, Austin, TX 73301" +217187,Lightning Charging Cable,1,14.95,06/20/19 19:05,"200 Meadow St, Dallas, TX 75001" +217188,Bose SoundSport Headphones,1,99.99,06/04/19 13:54,"742 Washington St, New York City, NY 10001" +217189,Wired Headphones,1,11.99,06/19/19 21:17,"266 Hickory St, San Francisco, CA 94016" +217190,AAA Batteries (4-pack),1,2.99,06/10/19 15:56,"654 Washington St, Seattle, WA 98101" +217191,34in Ultrawide Monitor,1,379.99,06/04/19 16:23,"937 Lakeview St, New York City, NY 10001" +217192,USB-C Charging Cable,1,11.95,06/21/19 20:59,"93 Elm St, New York City, NY 10001" +217193,Apple Airpods Headphones,1,150,06/11/19 11:06,"609 Lake St, Los Angeles, CA 90001" +217194,Apple Airpods Headphones,1,150,06/13/19 10:58,"472 North St, Atlanta, GA 30301" +217194,AA Batteries (4-pack),1,3.84,06/13/19 10:58,"472 North St, Atlanta, GA 30301" +217195,Apple Airpods Headphones,1,150,06/23/19 20:00,"180 Lake St, San Francisco, CA 94016" +217196,Google Phone,1,600,06/28/19 22:25,"663 5th St, Los Angeles, CA 90001" +217197,AA Batteries (4-pack),1,3.84,06/04/19 10:58,"222 Johnson St, Los Angeles, CA 90001" +217198,Lightning Charging Cable,1,14.95,06/23/19 07:39,"883 13th St, Portland, OR 97035" +217199,Apple Airpods Headphones,1,150,06/10/19 15:47,"654 Hill St, New York City, NY 10001" +217200,Lightning Charging Cable,1,14.95,06/24/19 05:16,"921 Forest St, Dallas, TX 75001" +217201,USB-C Charging Cable,1,11.95,06/20/19 09:50,"131 Highland St, San Francisco, CA 94016" +217202,USB-C Charging Cable,1,11.95,06/18/19 19:20,"680 7th St, Boston, MA 02215" +217203,Apple Airpods Headphones,1,150,06/14/19 19:38,"960 11th St, New York City, NY 10001" +217204,USB-C Charging Cable,1,11.95,06/14/19 08:45,"837 Cherry St, New York City, NY 10001" +217205,AA Batteries (4-pack),1,3.84,06/09/19 09:25,"793 Sunset St, San Francisco, CA 94016" +217206,Bose SoundSport Headphones,1,99.99,06/19/19 16:13,"780 Lakeview St, New York City, NY 10001" +217207,27in FHD Monitor,1,149.99,06/11/19 19:49,"869 Jefferson St, San Francisco, CA 94016" +217208,AAA Batteries (4-pack),4,2.99,06/20/19 06:56,"907 Pine St, Seattle, WA 98101" +217209,AAA Batteries (4-pack),1,2.99,06/11/19 10:45,"633 Washington St, Dallas, TX 75001" +217210,Lightning Charging Cable,1,14.95,06/14/19 20:30,"723 Center St, Atlanta, GA 30301" +217211,Bose SoundSport Headphones,1,99.99,06/26/19 11:16,"991 Washington St, Seattle, WA 98101" +217212,Google Phone,1,600,06/12/19 11:55,"250 Madison St, Los Angeles, CA 90001" +217213,Lightning Charging Cable,1,14.95,06/17/19 17:22,"784 Wilson St, New York City, NY 10001" +217214,AA Batteries (4-pack),1,3.84,06/14/19 10:07,"616 Hickory St, San Francisco, CA 94016" +217215,USB-C Charging Cable,2,11.95,06/24/19 10:28,"898 Church St, Portland, OR 97035" +217216,USB-C Charging Cable,1,11.95,06/01/19 20:58,"93 Park St, Boston, MA 02215" +217217,Apple Airpods Headphones,1,150,06/30/19 02:25,"567 6th St, Seattle, WA 98101" +217218,27in FHD Monitor,1,149.99,06/05/19 17:18,"892 North St, Los Angeles, CA 90001" +217219,Wired Headphones,1,11.99,06/17/19 23:54,"684 Highland St, Atlanta, GA 30301" +217220,Flatscreen TV,1,300,06/11/19 01:27,"60 14th St, Seattle, WA 98101" +217220,AAA Batteries (4-pack),1,2.99,06/11/19 01:27,"60 14th St, Seattle, WA 98101" +217221,Wired Headphones,1,11.99,06/05/19 08:56,"667 Center St, New York City, NY 10001" +217222,AA Batteries (4-pack),1,3.84,06/11/19 12:49,"535 Lincoln St, Portland, ME 04101" +217223,Wired Headphones,1,11.99,06/21/19 17:03,"927 Lake St, Austin, TX 73301" +217224,AA Batteries (4-pack),1,3.84,06/05/19 21:21,"844 Madison St, Atlanta, GA 30301" +217225,USB-C Charging Cable,1,11.95,06/21/19 08:14,"603 6th St, Dallas, TX 75001" +217226,iPhone,1,700,06/07/19 16:26,"513 Hill St, Austin, TX 73301" +217227,AAA Batteries (4-pack),1,2.99,06/09/19 23:41,"115 6th St, Portland, OR 97035" +217228,LG Washing Machine,1,600.0,06/21/19 16:47,"97 Willow St, Boston, MA 02215" +217229,Wired Headphones,1,11.99,06/12/19 18:34,"427 Hickory St, San Francisco, CA 94016" +217230,20in Monitor,1,109.99,06/17/19 20:29,"615 Lakeview St, Atlanta, GA 30301" +217231,Google Phone,1,600,06/03/19 21:16,"722 West St, Dallas, TX 75001" +217232,Apple Airpods Headphones,1,150,06/29/19 00:41,"465 Meadow St, New York City, NY 10001" +217233,AA Batteries (4-pack),1,3.84,06/16/19 12:09,"623 Jefferson St, Atlanta, GA 30301" +217234,Apple Airpods Headphones,1,150,06/11/19 09:39,"127 12th St, San Francisco, CA 94016" +217235,AA Batteries (4-pack),1,3.84,06/28/19 18:27,"417 Church St, San Francisco, CA 94016" +217236,34in Ultrawide Monitor,1,379.99,06/30/19 16:52,"431 River St, San Francisco, CA 94016" +217237,iPhone,1,700,06/28/19 18:37,"567 Cherry St, San Francisco, CA 94016" +217238,AAA Batteries (4-pack),2,2.99,06/11/19 20:25,"299 Elm St, Portland, OR 97035" +217239,Lightning Charging Cable,1,14.95,06/06/19 15:02,"230 Park St, Los Angeles, CA 90001" +217240,Bose SoundSport Headphones,1,99.99,06/04/19 05:26,"286 1st St, New York City, NY 10001" +217241,AA Batteries (4-pack),1,3.84,06/26/19 11:44,"50 North St, Atlanta, GA 30301" +217242,Lightning Charging Cable,1,14.95,06/29/19 19:14,"675 West St, Los Angeles, CA 90001" +217243,Wired Headphones,1,11.99,06/19/19 09:03,"18 Lakeview St, Portland, OR 97035" +217244,USB-C Charging Cable,1,11.95,06/10/19 12:15,"609 13th St, Boston, MA 02215" +217245,Wired Headphones,1,11.99,06/15/19 21:58,"558 Sunset St, Seattle, WA 98101" +217246,27in FHD Monitor,1,149.99,06/19/19 22:12,"8 Ridge St, Austin, TX 73301" +217247,27in FHD Monitor,1,149.99,06/02/19 07:35,"414 Lakeview St, Portland, OR 97035" +217248,Bose SoundSport Headphones,1,99.99,06/21/19 12:40,"292 North St, San Francisco, CA 94016" +217248,USB-C Charging Cable,1,11.95,06/21/19 12:40,"292 North St, San Francisco, CA 94016" +217249,iPhone,1,700,06/11/19 07:44,"742 Main St, Los Angeles, CA 90001" +217250,AA Batteries (4-pack),1,3.84,06/15/19 09:59,"435 9th St, San Francisco, CA 94016" +217250,Vareebadd Phone,1,400,06/15/19 09:59,"435 9th St, San Francisco, CA 94016" +217251,USB-C Charging Cable,1,11.95,06/04/19 20:12,"437 Cedar St, Atlanta, GA 30301" +217252,Google Phone,1,600,06/19/19 22:14,"295 7th St, New York City, NY 10001" +217253,ThinkPad Laptop,1,999.99,06/24/19 15:24,"574 9th St, San Francisco, CA 94016" +217254,ThinkPad Laptop,1,999.99,06/02/19 21:45,"286 Pine St, Atlanta, GA 30301" +217255,AA Batteries (4-pack),1,3.84,06/23/19 15:55,"558 Lincoln St, Boston, MA 02215" +217256,USB-C Charging Cable,1,11.95,06/13/19 17:45,"484 North St, Boston, MA 02215" +217257,AAA Batteries (4-pack),2,2.99,06/25/19 14:26,"506 Main St, Los Angeles, CA 90001" +217258,27in 4K Gaming Monitor,1,389.99,06/13/19 11:00,"723 Lincoln St, Los Angeles, CA 90001" +217259,Wired Headphones,1,11.99,06/17/19 21:03,"956 4th St, Austin, TX 73301" +217260,20in Monitor,1,109.99,06/22/19 11:49,"430 Pine St, San Francisco, CA 94016" +217261,34in Ultrawide Monitor,1,379.99,06/01/19 21:53,"852 6th St, Dallas, TX 75001" +217262,34in Ultrawide Monitor,1,379.99,06/04/19 14:52,"319 Chestnut St, Boston, MA 02215" +217263,Flatscreen TV,1,300,06/25/19 19:35,"131 North St, Portland, ME 04101" +217264,AAA Batteries (4-pack),2,2.99,06/29/19 11:28,"1 Hickory St, New York City, NY 10001" +217265,LG Washing Machine,1,600.0,06/28/19 07:30,"562 Willow St, San Francisco, CA 94016" +217266,AAA Batteries (4-pack),1,2.99,06/29/19 20:29,"363 Washington St, New York City, NY 10001" +217267,Apple Airpods Headphones,1,150,06/13/19 16:24,"997 7th St, San Francisco, CA 94016" +217268,USB-C Charging Cable,1,11.95,06/13/19 09:43,"728 10th St, San Francisco, CA 94016" +217269,USB-C Charging Cable,1,11.95,06/19/19 23:49,"908 Lincoln St, San Francisco, CA 94016" +217270,Bose SoundSport Headphones,1,99.99,06/08/19 09:22,"794 Adams St, Los Angeles, CA 90001" +217271,Bose SoundSport Headphones,1,99.99,06/25/19 19:00,"526 Chestnut St, San Francisco, CA 94016" +217272,27in FHD Monitor,1,149.99,06/06/19 22:18,"545 Spruce St, New York City, NY 10001" +217273,AAA Batteries (4-pack),2,2.99,06/01/19 21:29,"325 14th St, Los Angeles, CA 90001" +217274,Lightning Charging Cable,1,14.95,06/22/19 10:43,"134 South St, New York City, NY 10001" +217275,27in 4K Gaming Monitor,1,389.99,06/22/19 08:39,"765 12th St, Austin, TX 73301" +217276,iPhone,1,700,06/07/19 18:21,"935 Maple St, Seattle, WA 98101" +217276,Lightning Charging Cable,1,14.95,06/07/19 18:21,"935 Maple St, Seattle, WA 98101" +217277,AAA Batteries (4-pack),1,2.99,06/25/19 15:33,"567 Spruce St, Seattle, WA 98101" +217278,AA Batteries (4-pack),1,3.84,06/13/19 10:14,"135 2nd St, San Francisco, CA 94016" +217279,Wired Headphones,1,11.99,06/09/19 16:27,"79 Johnson St, Dallas, TX 75001" +217280,USB-C Charging Cable,1,11.95,06/24/19 20:40,"741 Lakeview St, San Francisco, CA 94016" +217281,Lightning Charging Cable,1,14.95,06/19/19 15:08,"364 Sunset St, Los Angeles, CA 90001" +217282,Bose SoundSport Headphones,1,99.99,06/03/19 19:03,"879 Elm St, Portland, ME 04101" +217283,34in Ultrawide Monitor,1,379.99,06/10/19 12:57,"710 Cherry St, Los Angeles, CA 90001" +217284,Lightning Charging Cable,1,14.95,06/13/19 21:17,"939 Walnut St, Los Angeles, CA 90001" +217285,Apple Airpods Headphones,1,150,06/08/19 19:51,"600 Lincoln St, San Francisco, CA 94016" +217286,Wired Headphones,1,11.99,06/09/19 09:47,"947 7th St, New York City, NY 10001" +217287,AA Batteries (4-pack),1,3.84,06/21/19 13:55,"120 Hickory St, Portland, OR 97035" +217288,Wired Headphones,1,11.99,06/24/19 17:29,"972 6th St, Los Angeles, CA 90001" +217289,27in 4K Gaming Monitor,1,389.99,06/16/19 04:01,"30 14th St, Los Angeles, CA 90001" +217290,Wired Headphones,1,11.99,06/15/19 20:01,"718 1st St, Dallas, TX 75001" +217291,AAA Batteries (4-pack),1,2.99,06/22/19 14:44,"308 Meadow St, Austin, TX 73301" +217292,Lightning Charging Cable,1,14.95,06/20/19 21:18,"578 Lake St, New York City, NY 10001" +217293,Lightning Charging Cable,1,14.95,06/10/19 08:08,"632 Church St, New York City, NY 10001" +217294,Wired Headphones,2,11.99,06/11/19 17:49,"519 Main St, New York City, NY 10001" +217295,Bose SoundSport Headphones,1,99.99,06/19/19 21:34,"188 West St, San Francisco, CA 94016" +217296,34in Ultrawide Monitor,1,379.99,06/24/19 16:17,"989 West St, San Francisco, CA 94016" +217297,Wired Headphones,1,11.99,06/09/19 17:38,"809 Jefferson St, Boston, MA 02215" +217298,20in Monitor,1,109.99,06/18/19 07:33,"14 14th St, Portland, OR 97035" +217299,27in 4K Gaming Monitor,1,389.99,06/22/19 08:13,"390 Highland St, Los Angeles, CA 90001" +217300,AAA Batteries (4-pack),2,2.99,06/29/19 11:19,"668 Hill St, Boston, MA 02215" +217301,Apple Airpods Headphones,1,150,06/19/19 20:13,"998 Pine St, New York City, NY 10001" +217302,AA Batteries (4-pack),1,3.84,06/02/19 20:47,"23 Spruce St, New York City, NY 10001" +217303,Google Phone,1,600,06/27/19 13:23,"636 West St, Atlanta, GA 30301" +217303,USB-C Charging Cable,1,11.95,06/27/19 13:23,"636 West St, Atlanta, GA 30301" +217304,Lightning Charging Cable,1,14.95,06/13/19 19:01,"474 13th St, San Francisco, CA 94016" +217305,AAA Batteries (4-pack),1,2.99,06/16/19 20:44,"544 Willow St, Los Angeles, CA 90001" +217306,Lightning Charging Cable,1,14.95,06/23/19 20:03,"548 13th St, Portland, OR 97035" +217307,Google Phone,1,600,06/04/19 17:34,"146 Meadow St, Atlanta, GA 30301" +217308,Lightning Charging Cable,1,14.95,06/30/19 10:09,"600 Washington St, Los Angeles, CA 90001" +217309,Macbook Pro Laptop,1,1700,06/12/19 15:37,"298 5th St, Los Angeles, CA 90001" +217310,ThinkPad Laptop,1,999.99,06/20/19 10:16,"248 Hickory St, Boston, MA 02215" +217311,Apple Airpods Headphones,1,150,06/01/19 15:17,"771 Willow St, New York City, NY 10001" +217312,ThinkPad Laptop,1,999.99,06/17/19 09:22,"967 Church St, Los Angeles, CA 90001" +217313,AA Batteries (4-pack),2,3.84,06/14/19 19:56,"871 Highland St, Portland, OR 97035" +217314,AAA Batteries (4-pack),1,2.99,06/21/19 09:46,"200 Walnut St, San Francisco, CA 94016" +217315,USB-C Charging Cable,1,11.95,06/05/19 16:14,"552 Sunset St, Dallas, TX 75001" +217316,AA Batteries (4-pack),1,3.84,06/18/19 12:34,"138 12th St, Los Angeles, CA 90001" +217317,Wired Headphones,1,11.99,06/24/19 23:32,"160 Main St, Seattle, WA 98101" +217318,AA Batteries (4-pack),1,3.84,06/23/19 14:37,"401 11th St, New York City, NY 10001" +217319,AAA Batteries (4-pack),1,2.99,06/02/19 17:15,"183 Spruce St, New York City, NY 10001" +217320,USB-C Charging Cable,1,11.95,06/02/19 20:27,"137 Johnson St, New York City, NY 10001" +217321,AA Batteries (4-pack),1,3.84,06/06/19 13:16,"522 Willow St, San Francisco, CA 94016" +217322,Apple Airpods Headphones,1,150,06/17/19 18:45,"783 Chestnut St, Portland, OR 97035" +217323,Apple Airpods Headphones,1,150,06/24/19 10:16,"634 Willow St, San Francisco, CA 94016" +217324,Google Phone,1,600,06/29/19 07:06,"349 Johnson St, Atlanta, GA 30301" +217325,Lightning Charging Cable,1,14.95,06/03/19 16:29,"659 West St, New York City, NY 10001" +217326,Google Phone,1,600,06/11/19 11:11,"744 North St, Dallas, TX 75001" +217327,AA Batteries (4-pack),1,3.84,06/01/19 18:37,"982 River St, Seattle, WA 98101" +217328,34in Ultrawide Monitor,1,379.99,06/17/19 19:33,"271 South St, Dallas, TX 75001" +217329,AA Batteries (4-pack),1,3.84,06/17/19 17:56,"977 Spruce St, San Francisco, CA 94016" +217330,USB-C Charging Cable,1,11.95,06/10/19 14:42,"514 Walnut St, New York City, NY 10001" +217331,AAA Batteries (4-pack),4,2.99,06/21/19 03:28,"776 Sunset St, Dallas, TX 75001" +217332,AA Batteries (4-pack),1,3.84,06/11/19 17:06,"910 6th St, Los Angeles, CA 90001" +217333,Vareebadd Phone,1,400,06/29/19 16:06,"533 River St, New York City, NY 10001" +217334,34in Ultrawide Monitor,1,379.99,06/25/19 21:38,"282 Pine St, San Francisco, CA 94016" +217335,Apple Airpods Headphones,1,150,06/19/19 21:43,"133 Main St, New York City, NY 10001" +217336,AAA Batteries (4-pack),1,2.99,06/04/19 16:33,"685 Dogwood St, Atlanta, GA 30301" +217337,Lightning Charging Cable,1,14.95,06/24/19 01:46,"430 Johnson St, Austin, TX 73301" +217338,AA Batteries (4-pack),1,3.84,06/10/19 23:54,"563 Spruce St, Austin, TX 73301" +217339,Apple Airpods Headphones,1,150,06/18/19 09:13,"633 Jefferson St, Portland, OR 97035" +217340,AAA Batteries (4-pack),1,2.99,06/03/19 11:32,"535 Elm St, Los Angeles, CA 90001" +217341,Apple Airpods Headphones,1,150,06/01/19 22:08,"509 Willow St, Los Angeles, CA 90001" +217342,AA Batteries (4-pack),2,3.84,06/29/19 07:10,"744 9th St, Dallas, TX 75001" +217343,27in 4K Gaming Monitor,1,389.99,06/23/19 15:14,"669 11th St, New York City, NY 10001" +217344,LG Dryer,1,600.0,06/08/19 15:28,"571 4th St, Los Angeles, CA 90001" +217345,AA Batteries (4-pack),1,3.84,06/22/19 22:32,"685 River St, Atlanta, GA 30301" +217346,Apple Airpods Headphones,1,150,06/15/19 11:06,"558 South St, San Francisco, CA 94016" +217347,AAA Batteries (4-pack),2,2.99,06/07/19 11:34,"58 Ridge St, San Francisco, CA 94016" +217348,Lightning Charging Cable,1,14.95,06/06/19 16:39,"733 Main St, Los Angeles, CA 90001" +217349,AA Batteries (4-pack),1,3.84,06/01/19 08:19,"789 North St, San Francisco, CA 94016" +217350,Wired Headphones,1,11.99,06/17/19 18:30,"746 Park St, Boston, MA 02215" +217351,AA Batteries (4-pack),1,3.84,06/23/19 18:16,"696 Washington St, New York City, NY 10001" +217352,Macbook Pro Laptop,1,1700,06/28/19 19:11,"934 Elm St, Seattle, WA 98101" +217353,AAA Batteries (4-pack),2,2.99,06/23/19 15:06,"855 Johnson St, San Francisco, CA 94016" +217354,27in 4K Gaming Monitor,1,389.99,06/09/19 12:24,"50 River St, Seattle, WA 98101" +217355,Bose SoundSport Headphones,1,99.99,06/25/19 16:48,"480 Hill St, Seattle, WA 98101" +217356,Lightning Charging Cable,1,14.95,06/30/19 21:34,"708 Chestnut St, Austin, TX 73301" +217357,Lightning Charging Cable,1,14.95,06/08/19 19:06,"315 10th St, San Francisco, CA 94016" +217358,USB-C Charging Cable,1,11.95,06/24/19 13:09,"376 Maple St, New York City, NY 10001" +217359,USB-C Charging Cable,1,11.95,06/09/19 13:21,"999 12th St, Portland, OR 97035" +217360,Apple Airpods Headphones,1,150,06/06/19 17:18,"65 5th St, Los Angeles, CA 90001" +217361,USB-C Charging Cable,1,11.95,06/18/19 18:20,"498 Washington St, Atlanta, GA 30301" +217361,27in FHD Monitor,1,149.99,06/18/19 18:20,"498 Washington St, Atlanta, GA 30301" +217362,AAA Batteries (4-pack),2,2.99,06/30/19 22:03,"689 North St, Atlanta, GA 30301" +217363,Wired Headphones,1,11.99,06/16/19 16:12,"57 10th St, San Francisco, CA 94016" +217364,Wired Headphones,1,11.99,06/09/19 13:02,"754 Sunset St, San Francisco, CA 94016" +217365,USB-C Charging Cable,1,11.95,06/15/19 11:20,"779 Lincoln St, San Francisco, CA 94016" +217366,USB-C Charging Cable,1,11.95,06/24/19 14:07,"515 Adams St, Seattle, WA 98101" +217367,Macbook Pro Laptop,1,1700,06/10/19 22:22,"523 West St, Dallas, TX 75001" +217368,Lightning Charging Cable,1,14.95,06/29/19 08:45,"718 Lincoln St, Austin, TX 73301" +217369,Lightning Charging Cable,1,14.95,06/19/19 20:12,"383 Chestnut St, Dallas, TX 75001" +217370,Wired Headphones,1,11.99,06/03/19 20:44,"565 Highland St, Los Angeles, CA 90001" +217371,Lightning Charging Cable,1,14.95,06/23/19 13:45,"410 Lake St, San Francisco, CA 94016" +217372,Wired Headphones,1,11.99,06/24/19 08:48,"675 South St, New York City, NY 10001" +217373,USB-C Charging Cable,1,11.95,06/10/19 01:13,"223 Hickory St, Portland, OR 97035" +217374,Vareebadd Phone,1,400,06/02/19 21:33,"530 West St, San Francisco, CA 94016" +217375,AAA Batteries (4-pack),4,2.99,06/17/19 19:50,"186 Main St, Los Angeles, CA 90001" +217376,Apple Airpods Headphones,1,150,06/05/19 15:11,"924 2nd St, Seattle, WA 98101" +217377,Macbook Pro Laptop,1,1700,06/23/19 08:05,"790 Sunset St, Boston, MA 02215" +217378,AAA Batteries (4-pack),1,2.99,06/04/19 23:33,"934 Lincoln St, San Francisco, CA 94016" +217379,Vareebadd Phone,1,400,06/25/19 19:54,"780 Cedar St, Los Angeles, CA 90001" +217379,USB-C Charging Cable,1,11.95,06/25/19 19:54,"780 Cedar St, Los Angeles, CA 90001" +217380,Apple Airpods Headphones,1,150,06/13/19 18:30,"385 Pine St, Boston, MA 02215" +217381,34in Ultrawide Monitor,1,379.99,06/16/19 19:07,"552 Wilson St, New York City, NY 10001" +217382,AAA Batteries (4-pack),1,2.99,06/27/19 11:23,"552 5th St, San Francisco, CA 94016" +217383,27in 4K Gaming Monitor,1,389.99,06/14/19 19:24,"605 Johnson St, San Francisco, CA 94016" +217384,AA Batteries (4-pack),2,3.84,06/24/19 10:42,"683 Forest St, Los Angeles, CA 90001" +217385,iPhone,1,700,06/18/19 07:50,"736 11th St, Portland, ME 04101" +217386,AA Batteries (4-pack),1,3.84,06/14/19 11:54,"713 Hickory St, Los Angeles, CA 90001" +217387,USB-C Charging Cable,1,11.95,06/19/19 09:45,"84 Hickory St, San Francisco, CA 94016" +217388,Apple Airpods Headphones,1,150,06/24/19 09:58,"994 West St, Boston, MA 02215" +217389,AA Batteries (4-pack),1,3.84,06/14/19 13:41,"448 Cedar St, New York City, NY 10001" +217390,20in Monitor,1,109.99,06/28/19 11:27,"727 Church St, Atlanta, GA 30301" +217391,27in FHD Monitor,1,149.99,06/28/19 10:41,"794 Cherry St, Los Angeles, CA 90001" +217392,27in FHD Monitor,1,149.99,06/06/19 22:40,"667 Church St, New York City, NY 10001" +217392,iPhone,1,700,06/06/19 22:40,"667 Church St, New York City, NY 10001" +217393,Lightning Charging Cable,1,14.95,06/02/19 08:23,"911 4th St, New York City, NY 10001" +217394,Lightning Charging Cable,1,14.95,06/06/19 18:52,"374 Madison St, New York City, NY 10001" +217395,Bose SoundSport Headphones,1,99.99,06/30/19 01:39,"104 Walnut St, Austin, TX 73301" +217396,USB-C Charging Cable,1,11.95,06/26/19 18:27,"409 13th St, San Francisco, CA 94016" +217397,Flatscreen TV,1,300,06/05/19 18:33,"121 7th St, New York City, NY 10001" +217398,USB-C Charging Cable,1,11.95,06/26/19 14:30,"279 Wilson St, Boston, MA 02215" +217399,Lightning Charging Cable,1,14.95,06/07/19 19:23,"345 South St, Dallas, TX 75001" +217400,AA Batteries (4-pack),1,3.84,06/29/19 08:25,"970 Lake St, Atlanta, GA 30301" +217401,AAA Batteries (4-pack),3,2.99,06/28/19 14:05,"164 Hill St, New York City, NY 10001" +217402,USB-C Charging Cable,1,11.95,06/21/19 19:32,"815 Spruce St, San Francisco, CA 94016" +217403,AA Batteries (4-pack),1,3.84,06/28/19 10:00,"853 4th St, Los Angeles, CA 90001" +217404,USB-C Charging Cable,1,11.95,06/23/19 11:17,"576 7th St, Portland, OR 97035" +217405,AAA Batteries (4-pack),1,2.99,06/20/19 04:57,"815 10th St, Los Angeles, CA 90001" +217406,USB-C Charging Cable,1,11.95,06/22/19 01:21,"568 2nd St, Los Angeles, CA 90001" +217407,LG Dryer,1,600.0,06/09/19 14:27,"508 South St, Portland, OR 97035" +217408,AA Batteries (4-pack),2,3.84,06/12/19 12:45,"246 7th St, Boston, MA 02215" +217409,Apple Airpods Headphones,1,150,06/05/19 10:56,"244 Meadow St, Dallas, TX 75001" +217410,Lightning Charging Cable,1,14.95,06/19/19 19:28,"46 Lakeview St, San Francisco, CA 94016" +217411,Macbook Pro Laptop,1,1700,06/08/19 14:22,"275 10th St, Los Angeles, CA 90001" +217412,AAA Batteries (4-pack),1,2.99,06/26/19 11:00,"925 10th St, San Francisco, CA 94016" +217413,Wired Headphones,1,11.99,06/08/19 19:09,"148 Jackson St, San Francisco, CA 94016" +217414,USB-C Charging Cable,2,11.95,06/12/19 20:38,"600 Highland St, Austin, TX 73301" +217415,Bose SoundSport Headphones,1,99.99,06/19/19 18:21,"230 River St, Atlanta, GA 30301" +217416,AAA Batteries (4-pack),3,2.99,06/28/19 12:05,"219 Spruce St, Atlanta, GA 30301" +217417,AAA Batteries (4-pack),3,2.99,06/05/19 17:30,"737 11th St, Dallas, TX 75001" +217418,Apple Airpods Headphones,1,150,06/09/19 10:17,"640 River St, Austin, TX 73301" +217419,Bose SoundSport Headphones,1,99.99,06/08/19 12:44,"877 Cedar St, San Francisco, CA 94016" +217420,Vareebadd Phone,1,400,06/20/19 15:46,"405 12th St, Los Angeles, CA 90001" +217421,Lightning Charging Cable,2,14.95,06/18/19 14:27,"252 Ridge St, Dallas, TX 75001" +217422,Apple Airpods Headphones,1,150,06/21/19 10:55,"923 Wilson St, Portland, OR 97035" +217423,AAA Batteries (4-pack),1,2.99,06/22/19 21:56,"269 2nd St, Los Angeles, CA 90001" +217424,Wired Headphones,2,11.99,06/14/19 12:19,"339 Dogwood St, New York City, NY 10001" +217425,Lightning Charging Cable,1,14.95,06/13/19 21:14,"625 Center St, Dallas, TX 75001" +217426,Lightning Charging Cable,1,14.95,06/10/19 12:48,"973 Church St, Atlanta, GA 30301" +217427,AA Batteries (4-pack),1,3.84,06/29/19 17:44,"193 Johnson St, New York City, NY 10001" +217428,AAA Batteries (4-pack),1,2.99,06/06/19 14:05,"663 Ridge St, Los Angeles, CA 90001" +217429,Apple Airpods Headphones,1,150,06/18/19 19:58,"898 Hickory St, New York City, NY 10001" +217430,27in 4K Gaming Monitor,1,389.99,06/28/19 04:15,"769 Sunset St, San Francisco, CA 94016" +217431,USB-C Charging Cable,1,11.95,06/08/19 13:15,"446 Jefferson St, San Francisco, CA 94016" +217432,Apple Airpods Headphones,1,150,06/02/19 13:50,"603 Lake St, Portland, OR 97035" +217433,Apple Airpods Headphones,1,150,06/26/19 12:17,"864 Adams St, New York City, NY 10001" +217434,Google Phone,1,600,06/05/19 22:56,"616 Lincoln St, Seattle, WA 98101" +217435,Lightning Charging Cable,1,14.95,06/17/19 17:41,"286 Spruce St, San Francisco, CA 94016" +217436,Lightning Charging Cable,1,14.95,06/01/19 15:53,"326 Madison St, Atlanta, GA 30301" +217437,Wired Headphones,1,11.99,06/25/19 18:06,"340 North St, New York City, NY 10001" +217438,27in 4K Gaming Monitor,1,389.99,06/24/19 00:05,"616 6th St, New York City, NY 10001" +217439,Apple Airpods Headphones,1,150,06/10/19 13:28,"217 Jefferson St, San Francisco, CA 94016" +217440,Bose SoundSport Headphones,1,99.99,06/23/19 16:16,"28 Cedar St, Los Angeles, CA 90001" +217441,USB-C Charging Cable,1,11.95,06/19/19 03:15,"977 Center St, Atlanta, GA 30301" +217442,AAA Batteries (4-pack),1,2.99,06/18/19 07:43,"341 Forest St, San Francisco, CA 94016" +217443,Apple Airpods Headphones,1,150,06/13/19 20:09,"229 Ridge St, San Francisco, CA 94016" +217444,Lightning Charging Cable,1,14.95,06/17/19 15:20,"337 4th St, Boston, MA 02215" +217445,34in Ultrawide Monitor,1,379.99,06/09/19 22:14,"720 Cherry St, New York City, NY 10001" +217446,USB-C Charging Cable,1,11.95,06/06/19 08:58,"22 Spruce St, San Francisco, CA 94016" +217447,Bose SoundSport Headphones,1,99.99,06/17/19 20:59,"750 Forest St, Atlanta, GA 30301" +217448,USB-C Charging Cable,1,11.95,06/14/19 08:05,"543 Dogwood St, Dallas, TX 75001" +217449,Bose SoundSport Headphones,1,99.99,06/18/19 20:23,"50 Highland St, San Francisco, CA 94016" +217450,AA Batteries (4-pack),1,3.84,06/08/19 09:34,"154 Spruce St, San Francisco, CA 94016" +217451,AA Batteries (4-pack),1,3.84,06/05/19 23:06,"158 Park St, Atlanta, GA 30301" +217452,AAA Batteries (4-pack),1,2.99,06/04/19 09:58,"173 North St, Los Angeles, CA 90001" +217453,Lightning Charging Cable,1,14.95,06/13/19 15:19,"194 Lake St, San Francisco, CA 94016" +217454,Wired Headphones,1,11.99,06/10/19 20:10,"974 Maple St, New York City, NY 10001" +217455,27in FHD Monitor,1,149.99,06/12/19 10:12,"213 Hill St, San Francisco, CA 94016" +217456,Lightning Charging Cable,1,14.95,06/09/19 16:24,"87 11th St, Los Angeles, CA 90001" +217457,Wired Headphones,1,11.99,06/23/19 20:42,"606 Willow St, New York City, NY 10001" +217458,AA Batteries (4-pack),2,3.84,06/15/19 02:52,"637 Willow St, Los Angeles, CA 90001" +217459,Apple Airpods Headphones,1,150,06/07/19 11:21,"635 Dogwood St, Atlanta, GA 30301" +217460,Bose SoundSport Headphones,1,99.99,06/24/19 12:11,"513 North St, Dallas, TX 75001" +217461,USB-C Charging Cable,1,11.95,06/19/19 00:44,"101 Main St, San Francisco, CA 94016" +217462,Google Phone,1,600,06/19/19 13:35,"288 Cedar St, San Francisco, CA 94016" +217463,AAA Batteries (4-pack),1,2.99,06/16/19 14:17,"928 Adams St, San Francisco, CA 94016" +217464,Macbook Pro Laptop,1,1700,06/19/19 16:55,"197 6th St, Austin, TX 73301" +217465,USB-C Charging Cable,1,11.95,06/22/19 18:48,"161 1st St, Boston, MA 02215" +217466,USB-C Charging Cable,1,11.95,06/20/19 20:14,"481 Hickory St, Portland, OR 97035" +217467,USB-C Charging Cable,1,11.95,06/10/19 01:23,"229 4th St, Seattle, WA 98101" +217468,Macbook Pro Laptop,1,1700,06/07/19 09:42,"372 Lake St, Seattle, WA 98101" +217469,AA Batteries (4-pack),1,3.84,06/20/19 12:36,"234 14th St, San Francisco, CA 94016" +217470,34in Ultrawide Monitor,1,379.99,06/06/19 11:22,"446 North St, Boston, MA 02215" +217471,Google Phone,1,600,06/07/19 21:27,"694 Forest St, Austin, TX 73301" +217472,34in Ultrawide Monitor,1,379.99,06/12/19 19:53,"879 Maple St, Boston, MA 02215" +217473,Apple Airpods Headphones,1,150,06/24/19 12:01,"358 8th St, Seattle, WA 98101" +217474,AA Batteries (4-pack),1,3.84,06/14/19 16:33,"225 Willow St, Los Angeles, CA 90001" +217475,Lightning Charging Cable,1,14.95,06/27/19 14:56,"197 1st St, New York City, NY 10001" +217476,Wired Headphones,1,11.99,06/24/19 18:38,"190 Park St, Los Angeles, CA 90001" +217477,Lightning Charging Cable,1,14.95,06/01/19 16:46,"932 Forest St, Portland, OR 97035" +217478,AAA Batteries (4-pack),2,2.99,06/11/19 22:35,"680 North St, Austin, TX 73301" +217479,Lightning Charging Cable,1,14.95,06/19/19 22:50,"452 Washington St, New York City, NY 10001" +217480,Vareebadd Phone,1,400,06/27/19 08:18,"582 West St, Los Angeles, CA 90001" +217481,Lightning Charging Cable,1,14.95,06/12/19 20:07,"257 Cedar St, New York City, NY 10001" +217482,Apple Airpods Headphones,1,150,06/18/19 21:07,"722 4th St, San Francisco, CA 94016" +217483,Wired Headphones,1,11.99,06/14/19 10:56,"634 11th St, New York City, NY 10001" +217484,Lightning Charging Cable,1,14.95,06/16/19 22:18,"849 10th St, San Francisco, CA 94016" +217485,Lightning Charging Cable,1,14.95,06/18/19 03:27,"422 5th St, Los Angeles, CA 90001" +217486,USB-C Charging Cable,1,11.95,06/07/19 16:22,"89 Church St, Los Angeles, CA 90001" +217487,ThinkPad Laptop,1,999.99,06/17/19 13:48,"149 14th St, San Francisco, CA 94016" +217488,34in Ultrawide Monitor,1,379.99,06/10/19 17:50,"417 Ridge St, San Francisco, CA 94016" +217489,Apple Airpods Headphones,1,150,06/03/19 11:36,"228 Dogwood St, Atlanta, GA 30301" +217490,Google Phone,1,600,06/04/19 09:41,"749 Walnut St, Los Angeles, CA 90001" +217491,USB-C Charging Cable,1,11.95,06/26/19 13:28,"911 Spruce St, Los Angeles, CA 90001" +217492,Wired Headphones,1,11.99,06/02/19 10:32,"514 South St, Seattle, WA 98101" +217493,Wired Headphones,1,11.99,06/05/19 01:00,"5 14th St, Portland, OR 97035" +217494,27in FHD Monitor,1,149.99,06/03/19 15:29,"554 Hickory St, Atlanta, GA 30301" +217495,34in Ultrawide Monitor,1,379.99,06/24/19 13:27,"680 Main St, Boston, MA 02215" +217496,AA Batteries (4-pack),1,3.84,06/21/19 14:49,"124 8th St, Boston, MA 02215" +217497,Bose SoundSport Headphones,1,99.99,06/18/19 18:16,"854 6th St, New York City, NY 10001" +217498,20in Monitor,1,109.99,06/01/19 22:15,"582 Jefferson St, Dallas, TX 75001" +217499,iPhone,1,700,06/30/19 14:35,"36 Meadow St, New York City, NY 10001" +217500,iPhone,1,700,06/17/19 14:58,"670 Walnut St, San Francisco, CA 94016" +217501,34in Ultrawide Monitor,1,379.99,06/14/19 15:10,"128 Chestnut St, Seattle, WA 98101" +217502,USB-C Charging Cable,1,11.95,06/13/19 08:16,"389 Park St, Los Angeles, CA 90001" +217503,AAA Batteries (4-pack),1,2.99,06/30/19 15:53,"233 12th St, Boston, MA 02215" +217504,27in FHD Monitor,1,149.99,06/27/19 18:57,"149 1st St, San Francisco, CA 94016" +217505,Apple Airpods Headphones,1,150,06/03/19 21:26,"687 Wilson St, New York City, NY 10001" +217506,Lightning Charging Cable,1,14.95,06/19/19 20:24,"863 Elm St, Atlanta, GA 30301" +217507,Wired Headphones,1,11.99,06/19/19 20:05,"959 Wilson St, San Francisco, CA 94016" +217508,AA Batteries (4-pack),1,3.84,06/13/19 06:13,"200 South St, San Francisco, CA 94016" +217509,Apple Airpods Headphones,1,150,06/27/19 18:35,"562 1st St, Boston, MA 02215" +217510,27in 4K Gaming Monitor,1,389.99,06/10/19 13:44,"752 Elm St, San Francisco, CA 94016" +217511,Bose SoundSport Headphones,1,99.99,06/22/19 19:02,"781 Church St, Seattle, WA 98101" +217512,Lightning Charging Cable,1,14.95,06/02/19 13:07,"802 Hill St, Boston, MA 02215" +217513,AAA Batteries (4-pack),1,2.99,06/05/19 15:17,"593 Cedar St, Boston, MA 02215" +217514,Vareebadd Phone,1,400,06/02/19 07:49,"645 12th St, Seattle, WA 98101" +217515,Flatscreen TV,1,300,06/24/19 11:49,"922 Hickory St, New York City, NY 10001" +217516,Bose SoundSport Headphones,1,99.99,06/30/19 11:17,"477 Lake St, Austin, TX 73301" +217517,Lightning Charging Cable,1,14.95,06/03/19 00:20,"403 5th St, Portland, OR 97035" +217518,Bose SoundSport Headphones,1,99.99,06/15/19 13:17,"71 9th St, Austin, TX 73301" +217519,34in Ultrawide Monitor,1,379.99,06/20/19 12:30,"483 Elm St, Los Angeles, CA 90001" +217520,Google Phone,1,600,06/26/19 10:38,"22 1st St, Los Angeles, CA 90001" +217521,20in Monitor,1,109.99,06/24/19 22:21,"596 West St, Atlanta, GA 30301" +217522,Flatscreen TV,1,300,06/06/19 23:13,"684 Main St, Los Angeles, CA 90001" +217523,Bose SoundSport Headphones,1,99.99,06/08/19 14:43,"539 11th St, San Francisco, CA 94016" +217524,iPhone,1,700,06/28/19 14:58,"559 Washington St, Dallas, TX 75001" +217525,USB-C Charging Cable,1,11.95,06/05/19 08:50,"543 Lake St, Portland, ME 04101" +217526,Lightning Charging Cable,1,14.95,06/27/19 18:45,"78 Johnson St, New York City, NY 10001" +217527,USB-C Charging Cable,1,11.95,06/10/19 17:16,"949 River St, Los Angeles, CA 90001" +217528,Google Phone,1,600,06/27/19 20:38,"951 14th St, San Francisco, CA 94016" +217529,AAA Batteries (4-pack),5,2.99,06/08/19 11:37,"803 4th St, San Francisco, CA 94016" +217530,Bose SoundSport Headphones,1,99.99,06/30/19 11:39,"473 8th St, Los Angeles, CA 90001" +217531,ThinkPad Laptop,1,999.99,06/22/19 00:47,"735 2nd St, New York City, NY 10001" +217532,Lightning Charging Cable,1,14.95,06/05/19 22:52,"989 Hickory St, San Francisco, CA 94016" +217532,20in Monitor,1,109.99,06/05/19 22:52,"989 Hickory St, San Francisco, CA 94016" +217533,USB-C Charging Cable,1,11.95,06/04/19 18:04,"325 6th St, New York City, NY 10001" +217534,AA Batteries (4-pack),2,3.84,06/30/19 05:49,"222 Washington St, Boston, MA 02215" +217535,Macbook Pro Laptop,1,1700,06/28/19 12:39,"614 Elm St, New York City, NY 10001" +217536,AA Batteries (4-pack),1,3.84,06/14/19 20:26,"62 12th St, Portland, OR 97035" +217537,LG Dryer,1,600.0,06/04/19 10:44,"192 West St, Seattle, WA 98101" +217538,Wired Headphones,1,11.99,06/24/19 16:08,"808 River St, New York City, NY 10001" +217539,AAA Batteries (4-pack),3,2.99,06/03/19 20:33,"565 South St, San Francisco, CA 94016" +217540,Bose SoundSport Headphones,1,99.99,06/06/19 16:49,"26 Chestnut St, Seattle, WA 98101" +217541,Bose SoundSport Headphones,1,99.99,06/13/19 20:14,"759 Dogwood St, San Francisco, CA 94016" +217542,USB-C Charging Cable,1,11.95,06/13/19 17:12,"140 Hickory St, San Francisco, CA 94016" +217543,AAA Batteries (4-pack),1,2.99,06/04/19 13:49,"146 Sunset St, San Francisco, CA 94016" +217544,Google Phone,1,600,06/27/19 14:18,"744 Washington St, Los Angeles, CA 90001" +217544,Wired Headphones,1,11.99,06/27/19 14:18,"744 Washington St, Los Angeles, CA 90001" +217545,AAA Batteries (4-pack),2,2.99,06/25/19 13:57,"501 Jefferson St, Boston, MA 02215" +217546,27in FHD Monitor,1,149.99,06/15/19 19:44,"783 Maple St, Boston, MA 02215" +217547,Wired Headphones,1,11.99,06/21/19 21:04,"929 Madison St, New York City, NY 10001" +217548,Lightning Charging Cable,1,14.95,06/05/19 17:05,"821 Hickory St, Portland, ME 04101" +217549,Bose SoundSport Headphones,1,99.99,06/22/19 16:24,"487 14th St, New York City, NY 10001" +217550,Lightning Charging Cable,1,14.95,06/08/19 01:44,"921 Dogwood St, Los Angeles, CA 90001" +217551,AAA Batteries (4-pack),1,2.99,06/08/19 19:53,"514 12th St, Los Angeles, CA 90001" +217552,Lightning Charging Cable,1,14.95,06/10/19 13:31,"215 River St, New York City, NY 10001" +217553,34in Ultrawide Monitor,2,379.99,06/15/19 22:57,"503 Elm St, San Francisco, CA 94016" +217553,USB-C Charging Cable,1,11.95,06/15/19 22:57,"503 Elm St, San Francisco, CA 94016" +217554,Apple Airpods Headphones,1,150,06/10/19 12:19,"924 Jefferson St, New York City, NY 10001" +217555,AAA Batteries (4-pack),1,2.99,06/06/19 16:13,"227 Jefferson St, San Francisco, CA 94016" +217556,USB-C Charging Cable,1,11.95,06/24/19 19:12,"377 Adams St, Atlanta, GA 30301" +217557,iPhone,1,700,06/10/19 17:55,"935 Hill St, Portland, ME 04101" +217558,Bose SoundSport Headphones,1,99.99,06/15/19 15:30,"888 Pine St, Portland, OR 97035" +217559,Wired Headphones,1,11.99,06/19/19 20:56,"86 1st St, San Francisco, CA 94016" +217560,AAA Batteries (4-pack),1,2.99,06/30/19 12:01,"915 Cherry St, Portland, OR 97035" +217561,LG Dryer,1,600.0,06/18/19 08:18,"943 Cherry St, Los Angeles, CA 90001" +217562,Apple Airpods Headphones,1,150,06/09/19 19:25,"357 9th St, San Francisco, CA 94016" +217563,Apple Airpods Headphones,1,150,06/21/19 09:19,"921 South St, San Francisco, CA 94016" +217564,Lightning Charging Cable,1,14.95,06/24/19 13:28,"452 Hill St, Seattle, WA 98101" +217564,27in FHD Monitor,1,149.99,06/24/19 13:28,"452 Hill St, Seattle, WA 98101" +217565,27in FHD Monitor,1,149.99,06/24/19 14:43,"63 Elm St, Seattle, WA 98101" +217566,USB-C Charging Cable,1,11.95,06/16/19 18:30,"723 Center St, Portland, OR 97035" +217567,Wired Headphones,3,11.99,06/16/19 15:18,"262 Madison St, Atlanta, GA 30301" +217568,27in FHD Monitor,1,149.99,06/16/19 17:24,"193 Washington St, Los Angeles, CA 90001" +217568,iPhone,1,700,06/16/19 17:24,"193 Washington St, Los Angeles, CA 90001" +217569,USB-C Charging Cable,1,11.95,06/12/19 15:38,"575 Jefferson St, Dallas, TX 75001" +217570,USB-C Charging Cable,1,11.95,06/13/19 21:29,"709 2nd St, Austin, TX 73301" +217571,Google Phone,1,600,06/13/19 03:34,"810 Ridge St, San Francisco, CA 94016" +217572,USB-C Charging Cable,1,11.95,06/20/19 19:59,"619 North St, San Francisco, CA 94016" +217573,Macbook Pro Laptop,1,1700,06/14/19 14:07,"751 9th St, Los Angeles, CA 90001" +217574,Apple Airpods Headphones,1,150,06/30/19 08:35,"824 10th St, San Francisco, CA 94016" +217575,Bose SoundSport Headphones,1,99.99,06/19/19 23:03,"389 Main St, Boston, MA 02215" +217576,ThinkPad Laptop,1,999.99,06/29/19 20:01,"902 Maple St, New York City, NY 10001" +217577,AA Batteries (4-pack),1,3.84,06/20/19 21:24,"171 Dogwood St, Austin, TX 73301" +217578,Bose SoundSport Headphones,1,99.99,06/30/19 00:13,"132 Spruce St, San Francisco, CA 94016" +217579,34in Ultrawide Monitor,1,379.99,06/12/19 14:05,"395 Meadow St, Boston, MA 02215" +217580,Flatscreen TV,1,300,06/28/19 13:23,"303 Cherry St, Boston, MA 02215" +217581,34in Ultrawide Monitor,1,379.99,06/17/19 20:37,"632 Dogwood St, Boston, MA 02215" +217582,Lightning Charging Cable,1,14.95,06/23/19 23:39,"877 Dogwood St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +217583,Flatscreen TV,1,300,06/09/19 05:39,"848 Hickory St, Atlanta, GA 30301" +217584,Lightning Charging Cable,1,14.95,06/05/19 15:17,"873 Chestnut St, Los Angeles, CA 90001" +217585,Apple Airpods Headphones,1,150,06/05/19 11:42,"874 Lakeview St, San Francisco, CA 94016" +217586,34in Ultrawide Monitor,1,379.99,06/08/19 08:57,"972 Hickory St, Dallas, TX 75001" +217587,Apple Airpods Headphones,1,150,06/14/19 13:52,"957 Center St, San Francisco, CA 94016" +217588,Lightning Charging Cable,1,14.95,06/23/19 17:33,"238 Lincoln St, Boston, MA 02215" +217589,Flatscreen TV,1,300,06/30/19 08:04,"827 Park St, Seattle, WA 98101" +217590,27in FHD Monitor,1,149.99,06/25/19 13:12,"779 Sunset St, New York City, NY 10001" +217591,Wired Headphones,1,11.99,06/17/19 21:44,"259 9th St, New York City, NY 10001" +217592,Apple Airpods Headphones,1,150,06/09/19 10:11,"384 Lake St, San Francisco, CA 94016" +217593,Apple Airpods Headphones,1,150,06/20/19 19:58,"732 Pine St, New York City, NY 10001" +217594,Lightning Charging Cable,1,14.95,06/18/19 09:06,"403 North St, Atlanta, GA 30301" +217595,27in 4K Gaming Monitor,1,389.99,06/08/19 11:03,"788 Elm St, Seattle, WA 98101" +217596,Flatscreen TV,1,300,06/05/19 15:33,"414 Jefferson St, Atlanta, GA 30301" +217597,Lightning Charging Cable,1,14.95,06/16/19 13:28,"390 Park St, Los Angeles, CA 90001" +217598,USB-C Charging Cable,2,11.95,06/08/19 14:16,"910 5th St, Austin, TX 73301" +217599,Bose SoundSport Headphones,1,99.99,06/23/19 00:08,"604 Hickory St, Austin, TX 73301" +217600,iPhone,1,700,06/29/19 15:19,"209 Jackson St, Los Angeles, CA 90001" +217600,Wired Headphones,1,11.99,06/29/19 15:19,"209 Jackson St, Los Angeles, CA 90001" +217601,20in Monitor,1,109.99,06/24/19 10:17,"487 Elm St, Atlanta, GA 30301" +217602,AAA Batteries (4-pack),3,2.99,06/25/19 10:06,"943 Maple St, Portland, OR 97035" +217603,USB-C Charging Cable,1,11.95,06/09/19 19:58,"267 10th St, Boston, MA 02215" +217604,Apple Airpods Headphones,1,150,06/07/19 13:55,"270 Madison St, Los Angeles, CA 90001" +217605,USB-C Charging Cable,1,11.95,06/12/19 07:11,"361 Walnut St, San Francisco, CA 94016" +217606,AA Batteries (4-pack),1,3.84,06/29/19 14:02,"140 Jefferson St, Boston, MA 02215" +217607,USB-C Charging Cable,1,11.95,06/18/19 21:09,"285 Johnson St, Los Angeles, CA 90001" +217608,Apple Airpods Headphones,1,150,06/28/19 18:10,"48 Adams St, Seattle, WA 98101" +217609,Wired Headphones,1,11.99,06/21/19 15:05,"694 7th St, Dallas, TX 75001" +217610,AA Batteries (4-pack),1,3.84,06/19/19 12:23,"264 4th St, San Francisco, CA 94016" +217611,Macbook Pro Laptop,1,1700,06/17/19 11:23,"556 Lakeview St, Seattle, WA 98101" +217612,Lightning Charging Cable,1,14.95,06/29/19 01:08,"249 12th St, Seattle, WA 98101" +217613,AA Batteries (4-pack),2,3.84,06/26/19 12:58,"361 9th St, Los Angeles, CA 90001" +217614,20in Monitor,1,109.99,06/05/19 00:07,"333 8th St, Los Angeles, CA 90001" +217615,Bose SoundSport Headphones,1,99.99,06/24/19 15:12,"72 Lakeview St, Los Angeles, CA 90001" +217616,USB-C Charging Cable,1,11.95,06/20/19 23:26,"871 Elm St, Dallas, TX 75001" +217617,AAA Batteries (4-pack),1,2.99,06/19/19 16:30,"940 Church St, Boston, MA 02215" +217618,AA Batteries (4-pack),3,3.84,06/29/19 10:39,"390 Ridge St, Boston, MA 02215" +217619,Flatscreen TV,1,300,06/30/19 21:28,"118 8th St, San Francisco, CA 94016" +217620,AA Batteries (4-pack),2,3.84,06/26/19 11:32,"668 Lincoln St, Boston, MA 02215" +217621,AA Batteries (4-pack),1,3.84,06/20/19 23:58,"388 Church St, Dallas, TX 75001" +217622,Apple Airpods Headphones,1,150,06/22/19 15:05,"601 Maple St, New York City, NY 10001" +217623,27in 4K Gaming Monitor,1,389.99,06/19/19 23:11,"430 Chestnut St, Austin, TX 73301" +217624,USB-C Charging Cable,1,11.95,06/04/19 19:46,"373 Hill St, New York City, NY 10001" +217625,27in 4K Gaming Monitor,1,389.99,06/09/19 06:33,"706 Madison St, Los Angeles, CA 90001" +217626,AAA Batteries (4-pack),1,2.99,06/22/19 14:47,"342 7th St, New York City, NY 10001" +217627,iPhone,1,700,06/03/19 09:10,"136 Highland St, Boston, MA 02215" +217628,AA Batteries (4-pack),1,3.84,06/16/19 14:30,"158 Chestnut St, Austin, TX 73301" +217629,AA Batteries (4-pack),1,3.84,06/21/19 07:40,"282 Madison St, San Francisco, CA 94016" +217630,34in Ultrawide Monitor,1,379.99,06/11/19 16:37,"937 Johnson St, Boston, MA 02215" +217631,20in Monitor,1,109.99,06/30/19 06:54,"863 North St, Atlanta, GA 30301" +217632,USB-C Charging Cable,1,11.95,06/28/19 12:46,"63 Cedar St, Los Angeles, CA 90001" +217633,USB-C Charging Cable,2,11.95,06/27/19 16:05,"700 10th St, Los Angeles, CA 90001" +217634,Lightning Charging Cable,1,14.95,06/08/19 08:43,"163 5th St, Dallas, TX 75001" +217635,AA Batteries (4-pack),1,3.84,06/25/19 09:37,"827 Madison St, Los Angeles, CA 90001" +217636,Apple Airpods Headphones,1,150,06/20/19 11:36,"351 Chestnut St, Seattle, WA 98101" +217637,AAA Batteries (4-pack),2,2.99,06/08/19 17:02,"110 Dogwood St, Dallas, TX 75001" +217638,Bose SoundSport Headphones,1,99.99,06/06/19 04:45,"811 Washington St, New York City, NY 10001" +217639,Wired Headphones,1,11.99,06/13/19 11:44,"284 Wilson St, Los Angeles, CA 90001" +217640,Apple Airpods Headphones,1,150,06/18/19 17:39,"670 Ridge St, Portland, ME 04101" +217641,20in Monitor,1,109.99,06/11/19 12:42,"361 Hill St, San Francisco, CA 94016" +217642,Bose SoundSport Headphones,1,99.99,06/02/19 23:09,"883 Pine St, Atlanta, GA 30301" +217643,Bose SoundSport Headphones,1,99.99,06/21/19 22:39,"517 Madison St, Dallas, TX 75001" +217644,AA Batteries (4-pack),1,3.84,06/11/19 15:05,"210 13th St, New York City, NY 10001" +217645,Lightning Charging Cable,1,14.95,06/06/19 08:49,"570 Spruce St, Atlanta, GA 30301" +217646,Lightning Charging Cable,1,14.95,06/12/19 13:06,"658 13th St, Seattle, WA 98101" +217647,AAA Batteries (4-pack),1,2.99,06/30/19 07:42,"334 Highland St, Boston, MA 02215" +217648,AA Batteries (4-pack),6,3.84,06/07/19 15:17,"812 Forest St, San Francisco, CA 94016" +,,,,, +217649,AA Batteries (4-pack),1,3.84,06/12/19 21:40,"859 Elm St, Atlanta, GA 30301" +217650,AAA Batteries (4-pack),1,2.99,06/21/19 13:54,"902 Madison St, Dallas, TX 75001" +217651,Macbook Pro Laptop,1,1700,06/07/19 17:24,"803 Jefferson St, Atlanta, GA 30301" +217652,Lightning Charging Cable,1,14.95,06/22/19 17:57,"205 10th St, San Francisco, CA 94016" +217653,USB-C Charging Cable,1,11.95,06/22/19 17:49,"148 6th St, San Francisco, CA 94016" +217654,Lightning Charging Cable,1,14.95,06/23/19 11:17,"80 Cedar St, Portland, OR 97035" +217655,iPhone,1,700,06/01/19 19:11,"193 Meadow St, San Francisco, CA 94016" +217656,20in Monitor,1,109.99,06/20/19 18:12,"560 Hill St, Portland, OR 97035" +217656,Vareebadd Phone,1,400,06/20/19 18:12,"560 Hill St, Portland, OR 97035" +217657,Flatscreen TV,1,300,06/27/19 15:00,"857 Adams St, Los Angeles, CA 90001" +217658,Bose SoundSport Headphones,1,99.99,06/17/19 22:58,"812 13th St, San Francisco, CA 94016" +217659,Wired Headphones,1,11.99,06/21/19 21:22,"748 Chestnut St, Los Angeles, CA 90001" +217660,AA Batteries (4-pack),1,3.84,06/30/19 16:01,"679 West St, Dallas, TX 75001" +217661,27in FHD Monitor,1,149.99,06/27/19 19:25,"593 Dogwood St, Austin, TX 73301" +217662,Lightning Charging Cable,1,14.95,06/21/19 13:38,"175 Washington St, San Francisco, CA 94016" +217663,AA Batteries (4-pack),1,3.84,06/07/19 20:26,"240 13th St, Seattle, WA 98101" +217664,USB-C Charging Cable,1,11.95,06/15/19 20:19,"316 Forest St, Austin, TX 73301" +217665,USB-C Charging Cable,1,11.95,06/29/19 07:16,"174 5th St, Dallas, TX 75001" +217666,AAA Batteries (4-pack),1,2.99,06/23/19 08:23,"890 Sunset St, Austin, TX 73301" +217667,AA Batteries (4-pack),2,3.84,06/14/19 11:52,"631 Center St, San Francisco, CA 94016" +217668,20in Monitor,1,109.99,06/24/19 19:42,"833 Main St, Los Angeles, CA 90001" +217669,AA Batteries (4-pack),1,3.84,06/22/19 10:52,"862 Wilson St, Portland, OR 97035" +217670,AAA Batteries (4-pack),1,2.99,06/15/19 10:45,"51 Chestnut St, Los Angeles, CA 90001" +217671,Lightning Charging Cable,1,14.95,06/20/19 09:51,"429 Cherry St, New York City, NY 10001" +217672,USB-C Charging Cable,1,11.95,06/23/19 13:20,"528 Sunset St, San Francisco, CA 94016" +217673,34in Ultrawide Monitor,1,379.99,06/05/19 11:04,"451 Cherry St, Atlanta, GA 30301" +217674,USB-C Charging Cable,1,11.95,06/03/19 12:59,"379 Wilson St, New York City, NY 10001" +217675,Apple Airpods Headphones,1,150,06/29/19 09:42,"728 Meadow St, Boston, MA 02215" +217676,Lightning Charging Cable,1,14.95,06/29/19 11:37,"294 Jackson St, Portland, OR 97035" +217677,34in Ultrawide Monitor,1,379.99,06/16/19 19:42,"311 Lake St, New York City, NY 10001" +217678,Bose SoundSport Headphones,1,99.99,06/24/19 19:07,"844 Wilson St, New York City, NY 10001" +217679,Flatscreen TV,1,300,06/20/19 16:44,"69 4th St, New York City, NY 10001" +217680,Lightning Charging Cable,1,14.95,06/10/19 22:15,"774 River St, Portland, ME 04101" +217681,Wired Headphones,1,11.99,06/15/19 13:31,"893 Spruce St, Austin, TX 73301" +217682,27in FHD Monitor,1,149.99,06/05/19 08:16,"323 Elm St, Atlanta, GA 30301" +217683,Wired Headphones,1,11.99,06/10/19 11:29,"842 Lincoln St, Atlanta, GA 30301" +217684,ThinkPad Laptop,1,999.99,06/23/19 00:26,"412 Madison St, San Francisco, CA 94016" +217685,Apple Airpods Headphones,1,150,06/28/19 15:03,"481 9th St, Atlanta, GA 30301" +217686,27in FHD Monitor,1,149.99,06/21/19 16:15,"162 Church St, New York City, NY 10001" +217687,Wired Headphones,1,11.99,06/07/19 21:59,"790 Jackson St, San Francisco, CA 94016" +217688,AAA Batteries (4-pack),1,2.99,06/03/19 08:49,"926 Lake St, Dallas, TX 75001" +217689,USB-C Charging Cable,1,11.95,06/08/19 00:14,"740 11th St, San Francisco, CA 94016" +217690,USB-C Charging Cable,1,11.95,06/14/19 20:07,"135 10th St, New York City, NY 10001" +217691,iPhone,1,700,06/10/19 11:21,"812 Elm St, New York City, NY 10001" +217692,Bose SoundSport Headphones,1,99.99,06/05/19 00:31,"342 Jackson St, San Francisco, CA 94016" +217693,iPhone,1,700,06/30/19 20:16,"22 Lincoln St, New York City, NY 10001" +217694,AAA Batteries (4-pack),1,2.99,06/24/19 11:00,"848 Cherry St, Los Angeles, CA 90001" +217695,AA Batteries (4-pack),1,3.84,06/05/19 16:03,"405 North St, Boston, MA 02215" +217696,AA Batteries (4-pack),1,3.84,06/22/19 21:53,"868 Pine St, Boston, MA 02215" +217697,Apple Airpods Headphones,1,150,06/10/19 16:06,"324 13th St, Dallas, TX 75001" +217698,AA Batteries (4-pack),1,3.84,06/29/19 22:46,"624 Highland St, Los Angeles, CA 90001" +217699,iPhone,1,700,06/16/19 06:46,"729 Cedar St, Seattle, WA 98101" +217700,ThinkPad Laptop,1,999.99,06/17/19 18:10,"385 Johnson St, Los Angeles, CA 90001" +217701,Wired Headphones,1,11.99,06/24/19 13:54,"268 Highland St, San Francisco, CA 94016" +217702,AA Batteries (4-pack),1,3.84,06/09/19 19:14,"491 Elm St, Boston, MA 02215" +217703,Wired Headphones,1,11.99,06/18/19 20:22,"882 South St, Seattle, WA 98101" +217704,Apple Airpods Headphones,1,150,06/11/19 22:21,"255 1st St, Los Angeles, CA 90001" +217705,AA Batteries (4-pack),2,3.84,06/29/19 21:35,"629 Spruce St, Los Angeles, CA 90001" +217706,27in 4K Gaming Monitor,1,389.99,06/28/19 20:07,"315 Elm St, Seattle, WA 98101" +217707,USB-C Charging Cable,1,11.95,06/13/19 12:17,"176 8th St, Seattle, WA 98101" +217708,AA Batteries (4-pack),1,3.84,06/20/19 16:54,"139 Wilson St, Boston, MA 02215" +217709,Apple Airpods Headphones,1,150,06/19/19 12:02,"384 Johnson St, Los Angeles, CA 90001" +217710,USB-C Charging Cable,1,11.95,06/07/19 19:09,"963 Park St, Seattle, WA 98101" +217711,34in Ultrawide Monitor,1,379.99,06/17/19 19:19,"591 13th St, Portland, OR 97035" +217712,AA Batteries (4-pack),2,3.84,06/28/19 17:18,"747 Church St, San Francisco, CA 94016" +217712,USB-C Charging Cable,1,11.95,06/28/19 17:18,"747 Church St, San Francisco, CA 94016" +217713,Bose SoundSport Headphones,1,99.99,06/02/19 15:13,"871 Jefferson St, New York City, NY 10001" +217714,Wired Headphones,1,11.99,06/30/19 13:16,"324 4th St, Los Angeles, CA 90001" +217714,Bose SoundSport Headphones,1,99.99,06/30/19 13:16,"324 4th St, Los Angeles, CA 90001" +217715,AAA Batteries (4-pack),2,2.99,06/01/19 12:05,"193 5th St, Portland, OR 97035" +217716,Lightning Charging Cable,1,14.95,06/26/19 15:31,"491 Cherry St, Dallas, TX 75001" +217717,27in FHD Monitor,1,149.99,06/27/19 20:18,"173 Spruce St, San Francisco, CA 94016" +217718,Bose SoundSport Headphones,1,99.99,06/23/19 16:26,"927 6th St, Boston, MA 02215" +217719,Wired Headphones,1,11.99,06/11/19 10:38,"538 2nd St, Los Angeles, CA 90001" +217720,AAA Batteries (4-pack),1,2.99,06/30/19 09:09,"325 Elm St, San Francisco, CA 94016" +217721,AAA Batteries (4-pack),2,2.99,06/25/19 06:11,"193 Center St, Seattle, WA 98101" +217722,Macbook Pro Laptop,1,1700,06/29/19 16:45,"955 14th St, Los Angeles, CA 90001" +217723,Apple Airpods Headphones,1,150,06/21/19 08:27,"215 Maple St, San Francisco, CA 94016" +217724,USB-C Charging Cable,2,11.95,06/21/19 08:46,"843 7th St, Boston, MA 02215" +217725,LG Washing Machine,1,600.0,06/20/19 11:52,"275 Spruce St, Boston, MA 02215" +217726,Bose SoundSport Headphones,1,99.99,06/23/19 00:50,"256 4th St, Atlanta, GA 30301" +217727,AA Batteries (4-pack),1,3.84,06/04/19 18:51,"110 5th St, Los Angeles, CA 90001" +217728,Wired Headphones,1,11.99,06/21/19 16:46,"318 Jackson St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +217729,USB-C Charging Cable,1,11.95,06/18/19 15:01,"656 8th St, Seattle, WA 98101" +217730,Wired Headphones,1,11.99,06/21/19 13:41,"755 Hickory St, Portland, OR 97035" +217731,Google Phone,1,600,06/19/19 10:57,"245 Washington St, San Francisco, CA 94016" +217732,ThinkPad Laptop,1,999.99,06/26/19 11:55,"40 Washington St, Seattle, WA 98101" +217733,AA Batteries (4-pack),1,3.84,06/08/19 13:21,"56 Cedar St, Austin, TX 73301" +217734,Lightning Charging Cable,1,14.95,06/02/19 21:53,"707 13th St, Seattle, WA 98101" +217735,AAA Batteries (4-pack),1,2.99,06/23/19 19:41,"669 12th St, New York City, NY 10001" +217736,AA Batteries (4-pack),2,3.84,06/12/19 16:15,"817 Forest St, Atlanta, GA 30301" +217737,AA Batteries (4-pack),1,3.84,06/22/19 06:17,"758 Sunset St, Boston, MA 02215" +217738,Google Phone,1,600,06/08/19 18:23,"993 Johnson St, Atlanta, GA 30301" +217738,Bose SoundSport Headphones,1,99.99,06/08/19 18:23,"993 Johnson St, Atlanta, GA 30301" +217739,Lightning Charging Cable,2,14.95,06/06/19 23:41,"728 2nd St, New York City, NY 10001" +217740,AA Batteries (4-pack),1,3.84,06/22/19 13:44,"452 Adams St, San Francisco, CA 94016" +217741,AAA Batteries (4-pack),1,2.99,06/26/19 14:53,"643 Chestnut St, Los Angeles, CA 90001" +217742,AAA Batteries (4-pack),2,2.99,06/25/19 14:06,"460 Lake St, Dallas, TX 75001" +217743,ThinkPad Laptop,1,999.99,06/19/19 10:33,"453 Madison St, Dallas, TX 75001" +217744,Lightning Charging Cable,1,14.95,06/27/19 17:49,"584 Lakeview St, Seattle, WA 98101" +217745,AAA Batteries (4-pack),1,2.99,06/10/19 19:33,"406 Wilson St, Portland, ME 04101" +217746,Bose SoundSport Headphones,1,99.99,06/19/19 09:51,"874 12th St, San Francisco, CA 94016" +217747,AAA Batteries (4-pack),1,2.99,06/13/19 09:51,"121 Cherry St, Boston, MA 02215" +217748,Apple Airpods Headphones,1,150,06/30/19 16:58,"356 Ridge St, Los Angeles, CA 90001" +217749,Lightning Charging Cable,1,14.95,06/05/19 18:44,"118 Center St, Los Angeles, CA 90001" +217750,Lightning Charging Cable,1,14.95,06/25/19 13:04,"424 8th St, Austin, TX 73301" +217751,34in Ultrawide Monitor,1,379.99,06/08/19 22:36,"530 Forest St, San Francisco, CA 94016" +217752,Lightning Charging Cable,2,14.95,06/22/19 09:27,"837 Wilson St, San Francisco, CA 94016" +217753,USB-C Charging Cable,1,11.95,06/02/19 22:28,"632 Main St, New York City, NY 10001" +217754,Apple Airpods Headphones,1,150,06/04/19 11:58,"574 Lakeview St, Seattle, WA 98101" +217755,Macbook Pro Laptop,1,1700,06/29/19 12:45,"154 4th St, Los Angeles, CA 90001" +217756,Google Phone,1,600,06/22/19 19:18,"871 Madison St, Austin, TX 73301" +217757,Apple Airpods Headphones,1,150,06/02/19 20:12,"125 Hickory St, Seattle, WA 98101" +217758,Wired Headphones,1,11.99,06/24/19 08:58,"771 Madison St, Los Angeles, CA 90001" +217759,Bose SoundSport Headphones,1,99.99,06/09/19 20:45,"799 Park St, Boston, MA 02215" +217760,20in Monitor,1,109.99,06/01/19 18:02,"188 2nd St, Atlanta, GA 30301" +217761,Wired Headphones,1,11.99,06/15/19 12:14,"999 13th St, San Francisco, CA 94016" +217762,AA Batteries (4-pack),3,3.84,06/07/19 11:18,"453 Center St, Atlanta, GA 30301" +217763,Lightning Charging Cable,1,14.95,06/07/19 21:54,"806 Hickory St, San Francisco, CA 94016" +217764,34in Ultrawide Monitor,1,379.99,06/15/19 14:17,"363 Chestnut St, Portland, OR 97035" +217765,AAA Batteries (4-pack),1,2.99,06/20/19 21:18,"168 Highland St, Boston, MA 02215" +217766,Bose SoundSport Headphones,1,99.99,06/12/19 15:24,"832 1st St, New York City, NY 10001" +217767,AAA Batteries (4-pack),2,2.99,06/09/19 13:22,"447 North St, Los Angeles, CA 90001" +217768,iPhone,1,700,06/13/19 15:44,"544 Ridge St, San Francisco, CA 94016" +217769,Lightning Charging Cable,1,14.95,06/06/19 00:23,"255 Cedar St, San Francisco, CA 94016" +217770,20in Monitor,1,109.99,06/27/19 16:27,"829 Church St, New York City, NY 10001" +217771,Google Phone,1,600,06/03/19 12:59,"921 Lincoln St, San Francisco, CA 94016" +217772,AA Batteries (4-pack),1,3.84,06/29/19 16:05,"164 1st St, Austin, TX 73301" +217773,Apple Airpods Headphones,1,150,06/27/19 21:01,"147 5th St, San Francisco, CA 94016" +217774,Wired Headphones,1,11.99,06/14/19 14:03,"886 Dogwood St, Los Angeles, CA 90001" +217775,Lightning Charging Cable,1,14.95,06/18/19 14:57,"329 Lincoln St, Los Angeles, CA 90001" +217776,34in Ultrawide Monitor,1,379.99,06/25/19 22:33,"367 5th St, Atlanta, GA 30301" +217777,Lightning Charging Cable,1,14.95,06/01/19 11:50,"551 Sunset St, Los Angeles, CA 90001" +217778,Lightning Charging Cable,1,14.95,06/03/19 03:50,"979 Maple St, Atlanta, GA 30301" +217779,Bose SoundSport Headphones,1,99.99,06/09/19 14:47,"635 2nd St, Portland, OR 97035" +217780,AAA Batteries (4-pack),1,2.99,06/02/19 06:39,"752 Lincoln St, Los Angeles, CA 90001" +217781,USB-C Charging Cable,1,11.95,06/06/19 15:31,"108 1st St, Seattle, WA 98101" +217782,ThinkPad Laptop,1,999.99,06/15/19 21:04,"649 7th St, Dallas, TX 75001" +217783,27in 4K Gaming Monitor,1,389.99,06/08/19 13:42,"987 Spruce St, New York City, NY 10001" +217784,34in Ultrawide Monitor,1,379.99,06/27/19 08:27,"593 10th St, San Francisco, CA 94016" +217785,Lightning Charging Cable,1,14.95,06/04/19 18:18,"582 Cherry St, Portland, ME 04101" +217786,Macbook Pro Laptop,1,1700,06/20/19 20:18,"641 Jefferson St, Seattle, WA 98101" +217787,Google Phone,1,600,06/12/19 12:00,"816 Church St, San Francisco, CA 94016" +217788,Macbook Pro Laptop,1,1700,06/13/19 10:28,"878 Spruce St, Dallas, TX 75001" +217789,AAA Batteries (4-pack),2,2.99,06/04/19 19:53,"997 14th St, Atlanta, GA 30301" +217790,USB-C Charging Cable,1,11.95,06/10/19 16:37,"784 Cherry St, Austin, TX 73301" +217791,AA Batteries (4-pack),1,3.84,06/22/19 20:28,"969 West St, Los Angeles, CA 90001" +217792,Wired Headphones,1,11.99,06/26/19 20:10,"751 North St, Portland, OR 97035" +217793,AA Batteries (4-pack),1,3.84,06/05/19 05:16,"288 Adams St, Seattle, WA 98101" +217794,Bose SoundSport Headphones,1,99.99,06/28/19 11:03,"334 Walnut St, New York City, NY 10001" +217795,Lightning Charging Cable,1,14.95,06/24/19 16:40,"31 Hill St, Portland, OR 97035" +217796,27in FHD Monitor,1,149.99,06/26/19 14:56,"125 Ridge St, Atlanta, GA 30301" +217797,USB-C Charging Cable,2,11.95,06/10/19 13:26,"432 6th St, New York City, NY 10001" +217798,Lightning Charging Cable,1,14.95,06/07/19 22:18,"383 7th St, San Francisco, CA 94016" +217799,AAA Batteries (4-pack),2,2.99,06/21/19 10:02,"751 Cedar St, Los Angeles, CA 90001" +217800,Wired Headphones,1,11.99,06/26/19 00:13,"278 14th St, San Francisco, CA 94016" +217801,20in Monitor,1,109.99,06/16/19 12:21,"113 Wilson St, Los Angeles, CA 90001" +217802,AA Batteries (4-pack),1,3.84,06/21/19 19:20,"970 Cedar St, Los Angeles, CA 90001" +217803,AAA Batteries (4-pack),4,2.99,06/20/19 21:00,"518 Lake St, Los Angeles, CA 90001" +217804,AA Batteries (4-pack),1,3.84,06/14/19 20:10,"575 Lincoln St, Los Angeles, CA 90001" +217805,AA Batteries (4-pack),1,3.84,06/14/19 09:21,"51 Pine St, Seattle, WA 98101" +217806,Lightning Charging Cable,1,14.95,06/19/19 19:31,"58 Forest St, San Francisco, CA 94016" +217807,USB-C Charging Cable,2,11.95,06/07/19 21:21,"540 Jackson St, Seattle, WA 98101" +217808,AAA Batteries (4-pack),3,2.99,06/18/19 20:36,"901 Center St, San Francisco, CA 94016" +217809,AAA Batteries (4-pack),1,2.99,06/29/19 10:30,"98 Sunset St, San Francisco, CA 94016" +217810,AA Batteries (4-pack),1,3.84,06/23/19 09:52,"208 Dogwood St, Seattle, WA 98101" +217811,Flatscreen TV,1,300,06/28/19 10:20,"993 Madison St, Portland, OR 97035" +217812,LG Washing Machine,1,600.0,06/08/19 08:47,"465 Meadow St, San Francisco, CA 94016" +217813,20in Monitor,1,109.99,06/28/19 16:11,"388 Meadow St, Boston, MA 02215" +217814,LG Washing Machine,1,600.0,06/03/19 18:40,"391 11th St, Dallas, TX 75001" +217815,AAA Batteries (4-pack),2,2.99,06/10/19 12:24,"456 6th St, Los Angeles, CA 90001" +217816,USB-C Charging Cable,1,11.95,06/17/19 15:45,"892 12th St, Atlanta, GA 30301" +217817,iPhone,1,700,06/28/19 01:10,"215 9th St, Los Angeles, CA 90001" +217817,Lightning Charging Cable,1,14.95,06/28/19 01:10,"215 9th St, Los Angeles, CA 90001" +217818,iPhone,1,700,06/08/19 20:39,"300 14th St, San Francisco, CA 94016" +217818,Lightning Charging Cable,2,14.95,06/08/19 20:39,"300 14th St, San Francisco, CA 94016" +217819,AA Batteries (4-pack),1,3.84,06/14/19 11:52,"710 Maple St, San Francisco, CA 94016" +217820,Flatscreen TV,1,300,06/08/19 21:39,"724 6th St, New York City, NY 10001" +217821,Lightning Charging Cable,1,14.95,06/15/19 07:11,"21 Pine St, Los Angeles, CA 90001" +217822,Google Phone,1,600,06/15/19 22:34,"524 Hickory St, New York City, NY 10001" +217823,Wired Headphones,1,11.99,06/01/19 13:50,"657 Cedar St, Seattle, WA 98101" +217824,USB-C Charging Cable,1,11.95,06/01/19 23:40,"776 Jefferson St, San Francisco, CA 94016" +217825,AAA Batteries (4-pack),1,2.99,06/06/19 11:17,"134 Highland St, New York City, NY 10001" +217826,AA Batteries (4-pack),1,3.84,06/08/19 16:20,"359 Willow St, San Francisco, CA 94016" +217827,USB-C Charging Cable,1,11.95,06/27/19 22:01,"60 Park St, New York City, NY 10001" +217828,Vareebadd Phone,1,400,06/09/19 10:13,"624 9th St, Dallas, TX 75001" +217829,Lightning Charging Cable,1,14.95,06/04/19 17:51,"76 Elm St, Boston, MA 02215" +217830,Lightning Charging Cable,1,14.95,06/18/19 09:10,"354 14th St, New York City, NY 10001" +217831,USB-C Charging Cable,1,11.95,06/14/19 15:49,"87 Maple St, Dallas, TX 75001" +217832,AA Batteries (4-pack),1,3.84,06/02/19 14:56,"405 Lakeview St, San Francisco, CA 94016" +217833,iPhone,1,700,06/20/19 08:33,"789 Center St, Los Angeles, CA 90001" +217833,Apple Airpods Headphones,1,150,06/20/19 08:33,"789 Center St, Los Angeles, CA 90001" +217834,34in Ultrawide Monitor,1,379.99,06/13/19 14:28,"83 Johnson St, Austin, TX 73301" +217835,ThinkPad Laptop,1,999.99,06/24/19 12:18,"274 Washington St, Boston, MA 02215" +217836,Bose SoundSport Headphones,1,99.99,06/03/19 03:56,"825 Pine St, New York City, NY 10001" +217837,Wired Headphones,1,11.99,06/15/19 20:33,"397 Jefferson St, Dallas, TX 75001" +217838,AAA Batteries (4-pack),1,2.99,06/16/19 11:17,"653 Church St, Boston, MA 02215" +217839,Lightning Charging Cable,1,14.95,06/27/19 16:05,"60 South St, Atlanta, GA 30301" +217840,Vareebadd Phone,1,400,06/24/19 10:27,"61 Lincoln St, Los Angeles, CA 90001" +217841,AAA Batteries (4-pack),2,2.99,06/02/19 22:51,"711 11th St, New York City, NY 10001" +217842,Lightning Charging Cable,1,14.95,06/10/19 00:53,"504 Wilson St, Dallas, TX 75001" +217843,Google Phone,1,600,06/20/19 21:40,"3 12th St, New York City, NY 10001" +217844,Lightning Charging Cable,1,14.95,06/10/19 10:03,"680 Ridge St, New York City, NY 10001" +217845,Bose SoundSport Headphones,1,99.99,06/20/19 09:56,"588 Spruce St, Dallas, TX 75001" +217846,Apple Airpods Headphones,1,150,06/04/19 14:27,"207 Hill St, New York City, NY 10001" +217847,Google Phone,1,600,06/12/19 06:58,"661 8th St, Dallas, TX 75001" +217848,Wired Headphones,1,11.99,06/07/19 15:06,"4 Dogwood St, San Francisco, CA 94016" +217849,Lightning Charging Cable,1,14.95,06/28/19 10:19,"152 Hickory St, San Francisco, CA 94016" +217850,ThinkPad Laptop,1,999.99,06/01/19 10:42,"937 Meadow St, Dallas, TX 75001" +217851,ThinkPad Laptop,1,999.99,06/27/19 17:49,"640 Lake St, New York City, NY 10001" +217852,Bose SoundSport Headphones,1,99.99,06/13/19 13:33,"986 Cherry St, Dallas, TX 75001" +217853,27in FHD Monitor,1,149.99,06/18/19 14:07,"743 Cedar St, San Francisco, CA 94016" +217854,iPhone,1,700,06/03/19 05:36,"472 Adams St, San Francisco, CA 94016" +217854,Apple Airpods Headphones,1,150,06/03/19 05:36,"472 Adams St, San Francisco, CA 94016" +217855,Bose SoundSport Headphones,1,99.99,06/14/19 14:25,"969 Pine St, San Francisco, CA 94016" +217856,Wired Headphones,3,11.99,06/28/19 12:35,"960 2nd St, Dallas, TX 75001" +217857,AA Batteries (4-pack),1,3.84,06/14/19 11:22,"337 Lake St, Atlanta, GA 30301" +217858,Bose SoundSport Headphones,1,99.99,06/26/19 06:57,"49 West St, Portland, ME 04101" +217859,AAA Batteries (4-pack),1,2.99,06/20/19 16:08,"346 Lake St, San Francisco, CA 94016" +217860,27in FHD Monitor,1,149.99,06/07/19 18:09,"236 Forest St, New York City, NY 10001" +217861,AAA Batteries (4-pack),1,2.99,06/18/19 14:04,"719 10th St, San Francisco, CA 94016" +217862,Lightning Charging Cable,1,14.95,06/05/19 19:00,"230 Elm St, Dallas, TX 75001" +217863,Wired Headphones,1,11.99,06/29/19 08:03,"811 9th St, Seattle, WA 98101" +217864,Lightning Charging Cable,1,14.95,06/03/19 22:57,"569 4th St, Boston, MA 02215" +217865,USB-C Charging Cable,1,11.95,06/22/19 13:49,"597 14th St, New York City, NY 10001" +217866,34in Ultrawide Monitor,1,379.99,06/26/19 11:17,"923 Wilson St, Los Angeles, CA 90001" +217867,Flatscreen TV,1,300,06/09/19 23:13,"623 Church St, Boston, MA 02215" +217868,Apple Airpods Headphones,1,150,06/19/19 17:20,"13 11th St, Austin, TX 73301" +217869,AAA Batteries (4-pack),1,2.99,06/29/19 12:29,"139 14th St, Seattle, WA 98101" +217870,USB-C Charging Cable,1,11.95,06/02/19 12:51,"825 Lake St, Seattle, WA 98101" +217871,AA Batteries (4-pack),1,3.84,06/23/19 17:10,"138 Dogwood St, Boston, MA 02215" +217872,Lightning Charging Cable,1,14.95,06/02/19 15:17,"468 12th St, Dallas, TX 75001" +217873,27in 4K Gaming Monitor,1,389.99,06/07/19 19:56,"625 2nd St, San Francisco, CA 94016" +217874,Lightning Charging Cable,1,14.95,06/11/19 19:56,"968 13th St, Atlanta, GA 30301" +217875,Apple Airpods Headphones,1,150,06/10/19 22:28,"373 Highland St, San Francisco, CA 94016" +217876,34in Ultrawide Monitor,1,379.99,06/21/19 17:30,"807 12th St, New York City, NY 10001" +217877,Lightning Charging Cable,1,14.95,06/04/19 17:54,"304 9th St, Boston, MA 02215" +217878,Bose SoundSport Headphones,1,99.99,06/03/19 20:03,"784 Main St, Seattle, WA 98101" +217878,AAA Batteries (4-pack),1,2.99,06/03/19 20:03,"784 Main St, Seattle, WA 98101" +217879,USB-C Charging Cable,1,11.95,06/05/19 20:13,"450 8th St, Austin, TX 73301" +217880,Lightning Charging Cable,1,14.95,06/02/19 11:11,"696 4th St, Seattle, WA 98101" +217881,AAA Batteries (4-pack),1,2.99,06/12/19 15:43,"965 Chestnut St, New York City, NY 10001" +217882,AAA Batteries (4-pack),2,2.99,06/03/19 20:10,"670 Maple St, New York City, NY 10001" +217883,27in FHD Monitor,1,149.99,06/27/19 16:09,"337 Center St, Boston, MA 02215" +217884,USB-C Charging Cable,1,11.95,06/25/19 21:02,"400 Cherry St, Boston, MA 02215" +217885,AAA Batteries (4-pack),1,2.99,06/27/19 11:54,"427 10th St, San Francisco, CA 94016" +217886,Lightning Charging Cable,1,14.95,06/10/19 22:04,"537 Cherry St, Atlanta, GA 30301" +217887,Apple Airpods Headphones,1,150,06/12/19 15:30,"581 11th St, Los Angeles, CA 90001" +217888,Wired Headphones,1,11.99,06/18/19 14:04,"450 Hill St, San Francisco, CA 94016" +217889,AA Batteries (4-pack),1,3.84,06/07/19 17:02,"842 Cedar St, Los Angeles, CA 90001" +217890,Apple Airpods Headphones,1,150,06/23/19 08:29,"946 Chestnut St, Seattle, WA 98101" +217891,USB-C Charging Cable,1,11.95,06/21/19 17:04,"173 Walnut St, Dallas, TX 75001" +217892,ThinkPad Laptop,1,999.99,06/10/19 10:59,"665 Pine St, New York City, NY 10001" +217893,AA Batteries (4-pack),1,3.84,06/26/19 13:41,"391 Maple St, Portland, OR 97035" +217894,AA Batteries (4-pack),1,3.84,06/17/19 16:39,"809 Cedar St, San Francisco, CA 94016" +217895,Wired Headphones,1,11.99,06/06/19 12:15,"240 River St, San Francisco, CA 94016" +217896,iPhone,1,700,06/01/19 13:17,"202 Cherry St, Seattle, WA 98101" +217896,Lightning Charging Cable,1,14.95,06/01/19 13:17,"202 Cherry St, Seattle, WA 98101" +217897,27in FHD Monitor,1,149.99,06/25/19 22:04,"429 Willow St, Dallas, TX 75001" +217898,Wired Headphones,1,11.99,06/07/19 22:53,"868 7th St, Austin, TX 73301" +217899,Apple Airpods Headphones,1,150,06/01/19 22:50,"644 Washington St, Atlanta, GA 30301" +217900,AAA Batteries (4-pack),1,2.99,06/12/19 21:09,"168 4th St, Los Angeles, CA 90001" +217901,USB-C Charging Cable,1,11.95,06/20/19 13:32,"904 Cedar St, Seattle, WA 98101" +217902,34in Ultrawide Monitor,1,379.99,06/14/19 16:14,"357 Ridge St, Los Angeles, CA 90001" +217903,iPhone,1,700,06/19/19 12:07,"931 Meadow St, Los Angeles, CA 90001" +217904,27in 4K Gaming Monitor,1,389.99,06/12/19 10:08,"612 5th St, Los Angeles, CA 90001" +217905,Apple Airpods Headphones,1,150,06/19/19 16:30,"539 1st St, Los Angeles, CA 90001" +217906,iPhone,1,700,06/28/19 16:51,"959 Wilson St, Seattle, WA 98101" +217907,iPhone,1,700,06/18/19 19:50,"11 Main St, Dallas, TX 75001" +217908,USB-C Charging Cable,1,11.95,06/14/19 14:27,"760 West St, New York City, NY 10001" +217909,Bose SoundSport Headphones,1,99.99,06/07/19 23:47,"779 Madison St, Atlanta, GA 30301" +217910,Apple Airpods Headphones,1,150,06/16/19 10:40,"351 8th St, San Francisco, CA 94016" +217911,USB-C Charging Cable,1,11.95,06/14/19 00:22,"944 Jefferson St, San Francisco, CA 94016" +217912,AAA Batteries (4-pack),4,2.99,06/03/19 15:50,"631 Wilson St, Dallas, TX 75001" +217913,Lightning Charging Cable,1,14.95,06/13/19 17:24,"400 1st St, Dallas, TX 75001" +217914,Apple Airpods Headphones,1,150,06/11/19 16:30,"451 North St, Boston, MA 02215" +217915,AA Batteries (4-pack),1,3.84,06/15/19 08:53,"998 Maple St, Los Angeles, CA 90001" +217916,20in Monitor,1,109.99,06/28/19 17:00,"533 Meadow St, San Francisco, CA 94016" +217917,AA Batteries (4-pack),2,3.84,06/08/19 23:45,"728 Cherry St, Los Angeles, CA 90001" +217918,ThinkPad Laptop,1,999.99,06/18/19 16:44,"952 10th St, San Francisco, CA 94016" +217919,Lightning Charging Cable,1,14.95,06/06/19 20:58,"344 Pine St, Los Angeles, CA 90001" +217920,AA Batteries (4-pack),2,3.84,06/14/19 12:21,"180 Jefferson St, San Francisco, CA 94016" +217921,USB-C Charging Cable,1,11.95,06/30/19 15:12,"284 Jackson St, New York City, NY 10001" +217922,AAA Batteries (4-pack),3,2.99,06/06/19 11:18,"747 Hickory St, Dallas, TX 75001" +217923,Lightning Charging Cable,1,14.95,06/29/19 11:07,"828 South St, Seattle, WA 98101" +217924,Wired Headphones,1,11.99,06/17/19 23:08,"376 Church St, Atlanta, GA 30301" +217925,27in 4K Gaming Monitor,1,389.99,06/01/19 22:34,"667 2nd St, Atlanta, GA 30301" +217926,27in FHD Monitor,1,149.99,06/25/19 11:31,"755 14th St, San Francisco, CA 94016" +217926,Google Phone,1,600,06/25/19 11:31,"755 14th St, San Francisco, CA 94016" +217927,AA Batteries (4-pack),2,3.84,06/17/19 12:37,"9 North St, San Francisco, CA 94016" +217928,LG Dryer,1,600.0,06/10/19 16:10,"358 Ridge St, Portland, OR 97035" +217929,USB-C Charging Cable,1,11.95,06/30/19 18:49,"567 Lincoln St, San Francisco, CA 94016" +217930,27in FHD Monitor,1,149.99,06/03/19 00:26,"810 8th St, San Francisco, CA 94016" +217931,Apple Airpods Headphones,1,150,06/16/19 12:19,"938 Center St, Portland, OR 97035" +217932,Bose SoundSport Headphones,1,99.99,06/09/19 19:48,"574 2nd St, Los Angeles, CA 90001" +217933,LG Dryer,1,600.0,06/30/19 20:31,"581 Meadow St, Dallas, TX 75001" +217934,Bose SoundSport Headphones,1,99.99,06/11/19 11:24,"126 Adams St, Portland, OR 97035" +217935,34in Ultrawide Monitor,1,379.99,06/04/19 21:06,"313 Cedar St, Los Angeles, CA 90001" +217936,AA Batteries (4-pack),2,3.84,06/16/19 19:07,"849 Washington St, San Francisco, CA 94016" +217937,Flatscreen TV,1,300,06/21/19 13:07,"190 6th St, New York City, NY 10001" +217938,Wired Headphones,1,11.99,06/25/19 15:29,"700 Hill St, Boston, MA 02215" +217939,34in Ultrawide Monitor,1,379.99,06/26/19 11:34,"724 10th St, Los Angeles, CA 90001" +217940,USB-C Charging Cable,1,11.95,06/18/19 21:41,"831 Cedar St, San Francisco, CA 94016" +217941,Wired Headphones,1,11.99,06/17/19 05:34,"898 7th St, Dallas, TX 75001" +217942,Lightning Charging Cable,1,14.95,06/21/19 15:24,"672 Forest St, Portland, OR 97035" +217943,Lightning Charging Cable,1,14.95,06/06/19 17:56,"547 Forest St, Los Angeles, CA 90001" +217944,Lightning Charging Cable,1,14.95,06/05/19 22:38,"406 Hill St, Boston, MA 02215" +217945,Lightning Charging Cable,1,14.95,06/18/19 13:25,"964 Washington St, Atlanta, GA 30301" +217946,USB-C Charging Cable,2,11.95,06/14/19 17:23,"863 Cedar St, New York City, NY 10001" +217947,Bose SoundSport Headphones,1,99.99,06/17/19 13:02,"998 Dogwood St, New York City, NY 10001" +217948,Lightning Charging Cable,1,14.95,06/16/19 20:46,"628 Jackson St, San Francisco, CA 94016" +217949,Wired Headphones,1,11.99,06/18/19 17:46,"950 13th St, Atlanta, GA 30301" +217950,Lightning Charging Cable,1,14.95,06/07/19 16:36,"33 Lakeview St, Portland, OR 97035" +217951,Vareebadd Phone,1,400,06/07/19 21:21,"631 5th St, Los Angeles, CA 90001" +217951,USB-C Charging Cable,2,11.95,06/07/19 21:21,"631 5th St, Los Angeles, CA 90001" +217952,Wired Headphones,1,11.99,06/22/19 09:53,"589 11th St, Atlanta, GA 30301" +217953,ThinkPad Laptop,1,999.99,06/03/19 01:22,"379 12th St, Los Angeles, CA 90001" +217954,Lightning Charging Cable,1,14.95,06/25/19 21:59,"445 Washington St, Austin, TX 73301" +217955,Lightning Charging Cable,1,14.95,06/06/19 15:33,"34 Ridge St, San Francisco, CA 94016" +217956,Bose SoundSport Headphones,1,99.99,06/01/19 14:49,"477 Johnson St, New York City, NY 10001" +217957,AAA Batteries (4-pack),1,2.99,06/19/19 13:36,"131 Lake St, San Francisco, CA 94016" +217958,Apple Airpods Headphones,1,150,06/29/19 19:45,"672 Madison St, New York City, NY 10001" +217959,Lightning Charging Cable,1,14.95,06/17/19 19:04,"52 Wilson St, Los Angeles, CA 90001" +217960,AAA Batteries (4-pack),2,2.99,06/29/19 17:28,"815 Cedar St, Boston, MA 02215" +217961,27in FHD Monitor,1,149.99,06/28/19 13:04,"76 Lake St, New York City, NY 10001" +217962,USB-C Charging Cable,1,11.95,06/17/19 12:50,"341 Main St, Seattle, WA 98101" +217963,AAA Batteries (4-pack),2,2.99,06/09/19 13:04,"878 Elm St, Austin, TX 73301" +217964,Bose SoundSport Headphones,1,99.99,06/22/19 13:27,"733 Wilson St, Boston, MA 02215" +217965,AA Batteries (4-pack),1,3.84,06/07/19 12:18,"295 Forest St, Dallas, TX 75001" +217966,AAA Batteries (4-pack),1,2.99,06/11/19 15:02,"677 Jackson St, Los Angeles, CA 90001" +217967,Wired Headphones,1,11.99,06/17/19 11:30,"270 1st St, Seattle, WA 98101" +217968,iPhone,1,700,06/02/19 10:30,"903 Chestnut St, Austin, TX 73301" +217968,Lightning Charging Cable,1,14.95,06/02/19 10:30,"903 Chestnut St, Austin, TX 73301" +217968,Apple Airpods Headphones,1,150,06/02/19 10:30,"903 Chestnut St, Austin, TX 73301" +217969,27in 4K Gaming Monitor,1,389.99,06/23/19 10:59,"872 River St, Boston, MA 02215" +217970,Wired Headphones,1,11.99,06/12/19 14:39,"163 2nd St, San Francisco, CA 94016" +217971,Apple Airpods Headphones,1,150,06/08/19 10:23,"781 Sunset St, Austin, TX 73301" +217972,Bose SoundSport Headphones,1,99.99,06/01/19 18:47,"302 Hickory St, San Francisco, CA 94016" +217973,27in FHD Monitor,1,149.99,06/04/19 22:02,"297 Hill St, San Francisco, CA 94016" +217974,AA Batteries (4-pack),1,3.84,06/30/19 16:19,"259 Elm St, Atlanta, GA 30301" +217975,Apple Airpods Headphones,1,150,06/22/19 19:43,"766 Lincoln St, Austin, TX 73301" +217976,Lightning Charging Cable,1,14.95,06/03/19 19:33,"33 Maple St, San Francisco, CA 94016" +217977,27in 4K Gaming Monitor,1,389.99,06/03/19 17:48,"715 Lake St, New York City, NY 10001" +217978,AA Batteries (4-pack),2,3.84,06/22/19 20:11,"314 Park St, San Francisco, CA 94016" +217979,iPhone,1,700,06/01/19 20:45,"327 Park St, Austin, TX 73301" +217980,Bose SoundSport Headphones,1,99.99,06/01/19 23:48,"273 Cedar St, Dallas, TX 75001" +217981,Bose SoundSport Headphones,1,99.99,06/11/19 09:09,"68 Madison St, Atlanta, GA 30301" +217982,AA Batteries (4-pack),2,3.84,06/27/19 09:52,"928 Cedar St, Seattle, WA 98101" +217983,Apple Airpods Headphones,1,150,06/16/19 17:05,"542 Madison St, San Francisco, CA 94016" +217984,USB-C Charging Cable,1,11.95,06/13/19 11:08,"740 Main St, New York City, NY 10001" +217985,AA Batteries (4-pack),3,3.84,06/15/19 16:35,"168 Washington St, San Francisco, CA 94016" +217986,AA Batteries (4-pack),4,3.84,06/24/19 09:08,"824 Pine St, San Francisco, CA 94016" +217987,Macbook Pro Laptop,1,1700,06/11/19 07:36,"211 Dogwood St, Boston, MA 02215" +217988,AAA Batteries (4-pack),1,2.99,06/13/19 07:24,"745 Lake St, Boston, MA 02215" +217989,USB-C Charging Cable,1,11.95,06/19/19 18:00,"697 Cherry St, Dallas, TX 75001" +217990,Wired Headphones,1,11.99,06/16/19 15:45,"878 12th St, Atlanta, GA 30301" +217991,Wired Headphones,1,11.99,06/19/19 14:47,"855 Main St, Dallas, TX 75001" +217992,AA Batteries (4-pack),1,3.84,06/01/19 20:31,"26 South St, Austin, TX 73301" +217993,AA Batteries (4-pack),1,3.84,06/09/19 22:16,"318 4th St, Seattle, WA 98101" +217994,LG Washing Machine,1,600.0,06/27/19 15:34,"438 Lake St, San Francisco, CA 94016" +217995,Apple Airpods Headphones,1,150,06/06/19 21:36,"883 South St, New York City, NY 10001" +217996,AAA Batteries (4-pack),1,2.99,06/25/19 18:20,"418 2nd St, New York City, NY 10001" +217997,AAA Batteries (4-pack),1,2.99,06/12/19 15:14,"963 River St, San Francisco, CA 94016" +217998,20in Monitor,1,109.99,06/01/19 11:07,"103 South St, San Francisco, CA 94016" +217999,AA Batteries (4-pack),1,3.84,06/23/19 17:03,"126 Willow St, Portland, OR 97035" +218000,27in FHD Monitor,1,149.99,06/19/19 18:12,"668 Elm St, Los Angeles, CA 90001" +218001,Bose SoundSport Headphones,1,99.99,06/06/19 10:29,"992 South St, Los Angeles, CA 90001" +218002,Bose SoundSport Headphones,1,99.99,06/27/19 00:47,"475 Jackson St, San Francisco, CA 94016" +218003,27in FHD Monitor,1,149.99,06/15/19 11:35,"844 Dogwood St, San Francisco, CA 94016" +218004,34in Ultrawide Monitor,1,379.99,06/26/19 14:25,"398 Ridge St, Austin, TX 73301" +218005,AAA Batteries (4-pack),1,2.99,06/12/19 23:41,"401 Cherry St, Los Angeles, CA 90001" +218006,Apple Airpods Headphones,1,150,06/03/19 21:28,"10 Jackson St, Boston, MA 02215" +218007,Apple Airpods Headphones,1,150,06/24/19 18:15,"170 Walnut St, New York City, NY 10001" +218008,AA Batteries (4-pack),1,3.84,06/14/19 16:51,"776 Cedar St, Los Angeles, CA 90001" +218009,AAA Batteries (4-pack),2,2.99,06/13/19 13:50,"832 Jefferson St, New York City, NY 10001" +218010,Apple Airpods Headphones,1,150,06/05/19 18:43,"943 River St, Los Angeles, CA 90001" +218011,Bose SoundSport Headphones,1,99.99,06/01/19 22:10,"338 10th St, New York City, NY 10001" +218012,Apple Airpods Headphones,1,150,06/17/19 21:02,"669 Spruce St, San Francisco, CA 94016" +218013,27in 4K Gaming Monitor,1,389.99,06/06/19 03:39,"870 11th St, Portland, ME 04101" +218014,AA Batteries (4-pack),1,3.84,06/26/19 16:42,"122 Jackson St, New York City, NY 10001" +218015,Wired Headphones,1,11.99,06/29/19 07:03,"953 Wilson St, Los Angeles, CA 90001" +218016,AA Batteries (4-pack),1,3.84,06/23/19 22:30,"741 South St, New York City, NY 10001" +218017,AA Batteries (4-pack),1,3.84,06/08/19 20:37,"703 8th St, Boston, MA 02215" +218018,Lightning Charging Cable,2,14.95,06/29/19 12:33,"115 Lakeview St, Seattle, WA 98101" +218019,Macbook Pro Laptop,1,1700,06/21/19 15:22,"522 Spruce St, San Francisco, CA 94016" +218020,Apple Airpods Headphones,1,150,06/30/19 17:25,"761 Hickory St, San Francisco, CA 94016" +218021,Macbook Pro Laptop,1,1700,06/30/19 12:09,"697 14th St, Boston, MA 02215" +218022,AA Batteries (4-pack),2,3.84,06/05/19 23:55,"154 2nd St, Los Angeles, CA 90001" +218023,Vareebadd Phone,1,400,06/11/19 20:13,"573 Johnson St, Boston, MA 02215" +218024,Bose SoundSport Headphones,1,99.99,06/17/19 09:11,"309 Wilson St, Dallas, TX 75001" +218025,iPhone,1,700,06/12/19 11:40,"284 Johnson St, New York City, NY 10001" +218026,AAA Batteries (4-pack),1,2.99,06/14/19 21:43,"934 Dogwood St, San Francisco, CA 94016" +218027,27in 4K Gaming Monitor,1,389.99,06/20/19 21:17,"475 Meadow St, New York City, NY 10001" +218028,Apple Airpods Headphones,1,150,06/05/19 17:53,"609 7th St, New York City, NY 10001" +218029,Flatscreen TV,1,300,06/07/19 13:01,"951 13th St, Los Angeles, CA 90001" +218030,Wired Headphones,1,11.99,06/06/19 20:41,"701 Willow St, Seattle, WA 98101" +218031,AAA Batteries (4-pack),2,2.99,06/04/19 09:32,"297 Lakeview St, Seattle, WA 98101" +218032,USB-C Charging Cable,1,11.95,06/06/19 16:07,"173 Meadow St, San Francisco, CA 94016" +218033,AAA Batteries (4-pack),1,2.99,06/01/19 11:17,"304 4th St, San Francisco, CA 94016" +218034,iPhone,1,700,06/11/19 18:23,"377 7th St, New York City, NY 10001" +218035,USB-C Charging Cable,1,11.95,06/12/19 18:46,"912 West St, Atlanta, GA 30301" +218036,AAA Batteries (4-pack),1,2.99,06/04/19 17:37,"968 West St, Los Angeles, CA 90001" +218037,Bose SoundSport Headphones,1,99.99,06/29/19 16:07,"794 Spruce St, Portland, ME 04101" +218038,Wired Headphones,1,11.99,06/14/19 20:21,"856 Lincoln St, Los Angeles, CA 90001" +218039,USB-C Charging Cable,1,11.95,06/25/19 21:22,"608 9th St, Seattle, WA 98101" +218040,27in FHD Monitor,1,149.99,06/05/19 22:19,"455 12th St, San Francisco, CA 94016" +218041,AA Batteries (4-pack),3,3.84,06/14/19 15:58,"232 Highland St, San Francisco, CA 94016" +218042,Lightning Charging Cable,1,14.95,06/21/19 07:29,"684 Dogwood St, Austin, TX 73301" +218043,AAA Batteries (4-pack),2,2.99,06/24/19 13:31,"937 Spruce St, Atlanta, GA 30301" +218044,Lightning Charging Cable,1,14.95,06/28/19 23:58,"622 5th St, New York City, NY 10001" +218045,Lightning Charging Cable,1,14.95,06/04/19 13:12,"534 Elm St, Los Angeles, CA 90001" +218046,Macbook Pro Laptop,1,1700,06/19/19 16:13,"152 South St, Boston, MA 02215" +218047,Lightning Charging Cable,1,14.95,06/23/19 09:47,"305 Jefferson St, Los Angeles, CA 90001" +218048,Apple Airpods Headphones,1,150,06/29/19 22:54,"197 6th St, New York City, NY 10001" +218049,Bose SoundSport Headphones,1,99.99,06/30/19 15:48,"571 Elm St, New York City, NY 10001" +218050,Flatscreen TV,1,300,06/20/19 00:09,"233 Church St, San Francisco, CA 94016" +218051,USB-C Charging Cable,1,11.95,06/20/19 15:49,"215 13th St, Austin, TX 73301" +218052,Google Phone,1,600,06/07/19 14:17,"881 Adams St, Seattle, WA 98101" +218053,20in Monitor,1,109.99,06/07/19 10:16,"330 Walnut St, San Francisco, CA 94016" +218054,AA Batteries (4-pack),1,3.84,06/05/19 17:59,"472 10th St, Portland, OR 97035" +218055,Lightning Charging Cable,1,14.95,06/15/19 19:33,"809 Main St, San Francisco, CA 94016" +218056,AAA Batteries (4-pack),2,2.99,06/08/19 20:28,"615 South St, San Francisco, CA 94016" +218057,Wired Headphones,1,11.99,06/23/19 00:17,"357 Wilson St, New York City, NY 10001" +218058,USB-C Charging Cable,2,11.95,06/23/19 17:48,"170 Elm St, Los Angeles, CA 90001" +218059,AAA Batteries (4-pack),1,2.99,06/30/19 12:20,"260 Lake St, San Francisco, CA 94016" +218060,USB-C Charging Cable,1,11.95,06/20/19 07:59,"308 5th St, Los Angeles, CA 90001" +218061,20in Monitor,1,109.99,06/23/19 08:59,"966 North St, San Francisco, CA 94016" +218062,20in Monitor,1,109.99,06/07/19 16:17,"188 North St, San Francisco, CA 94016" +218063,AAA Batteries (4-pack),3,2.99,06/04/19 15:17,"653 Willow St, New York City, NY 10001" +218064,Lightning Charging Cable,1,14.95,06/17/19 09:42,"503 North St, Atlanta, GA 30301" +218065,Apple Airpods Headphones,1,150,06/18/19 11:27,"687 West St, San Francisco, CA 94016" +218066,AA Batteries (4-pack),1,3.84,06/21/19 23:38,"537 12th St, New York City, NY 10001" +218067,Google Phone,1,600,06/05/19 11:14,"739 Chestnut St, Boston, MA 02215" +218067,Bose SoundSport Headphones,1,99.99,06/05/19 11:14,"739 Chestnut St, Boston, MA 02215" +218068,AAA Batteries (4-pack),3,2.99,06/25/19 17:29,"315 2nd St, Atlanta, GA 30301" +218069,Apple Airpods Headphones,1,150,06/15/19 11:41,"186 Walnut St, Boston, MA 02215" +218070,Wired Headphones,1,11.99,06/08/19 15:34,"319 7th St, Seattle, WA 98101" +218071,USB-C Charging Cable,1,11.95,06/18/19 17:45,"381 2nd St, New York City, NY 10001" +218072,ThinkPad Laptop,1,999.99,06/07/19 11:24,"831 Lake St, Boston, MA 02215" +218073,34in Ultrawide Monitor,1,379.99,06/13/19 22:24,"320 Highland St, Los Angeles, CA 90001" +218074,Lightning Charging Cable,1,14.95,06/03/19 20:21,"907 Walnut St, Portland, OR 97035" +218075,Lightning Charging Cable,1,14.95,06/05/19 08:39,"642 1st St, Los Angeles, CA 90001" +218076,Apple Airpods Headphones,1,150,06/07/19 21:16,"721 6th St, Portland, OR 97035" +218077,27in FHD Monitor,1,149.99,06/07/19 18:10,"662 10th St, Atlanta, GA 30301" +218078,USB-C Charging Cable,1,11.95,06/09/19 06:56,"669 Sunset St, Los Angeles, CA 90001" +218079,AAA Batteries (4-pack),3,2.99,06/04/19 09:25,"601 Main St, San Francisco, CA 94016" +218080,Apple Airpods Headphones,1,150,06/30/19 23:50,"780 12th St, Atlanta, GA 30301" +218081,Apple Airpods Headphones,1,150,06/07/19 18:08,"613 12th St, Portland, ME 04101" +218082,AA Batteries (4-pack),1,3.84,06/08/19 08:40,"376 Pine St, Los Angeles, CA 90001" +218083,Bose SoundSport Headphones,1,99.99,06/22/19 14:24,"542 5th St, Dallas, TX 75001" +218084,Apple Airpods Headphones,1,150,06/30/19 10:37,"2 West St, Dallas, TX 75001" +218085,Google Phone,1,600,06/19/19 17:07,"919 Park St, New York City, NY 10001" +218086,ThinkPad Laptop,1,999.99,06/02/19 18:56,"767 Lake St, Seattle, WA 98101" +218087,Lightning Charging Cable,1,14.95,06/09/19 14:35,"77 Lake St, Seattle, WA 98101" +218088,Apple Airpods Headphones,1,150,06/27/19 21:57,"881 Meadow St, Dallas, TX 75001" +218089,AAA Batteries (4-pack),1,2.99,06/04/19 05:20,"350 Johnson St, New York City, NY 10001" +218090,AA Batteries (4-pack),2,3.84,06/13/19 07:50,"340 Hickory St, Los Angeles, CA 90001" +218091,Lightning Charging Cable,1,14.95,06/10/19 20:52,"580 Hickory St, New York City, NY 10001" +218092,Bose SoundSport Headphones,1,99.99,06/10/19 21:48,"313 9th St, Atlanta, GA 30301" +218093,Apple Airpods Headphones,1,150,06/12/19 22:13,"853 Madison St, New York City, NY 10001" +218094,Macbook Pro Laptop,1,1700,06/17/19 13:30,"319 Ridge St, Portland, OR 97035" +218095,Apple Airpods Headphones,1,150,06/29/19 19:33,"653 6th St, Atlanta, GA 30301" +218096,Lightning Charging Cable,1,14.95,06/11/19 22:50,"317 Cedar St, New York City, NY 10001" +218097,Lightning Charging Cable,1,14.95,06/07/19 17:54,"142 Ridge St, Atlanta, GA 30301" +218098,Macbook Pro Laptop,1,1700,06/14/19 16:51,"994 Jackson St, Dallas, TX 75001" +218099,iPhone,1,700,06/27/19 17:59,"605 Willow St, San Francisco, CA 94016" +218100,Wired Headphones,1,11.99,06/09/19 07:43,"61 Madison St, San Francisco, CA 94016" +218101,Wired Headphones,1,11.99,06/20/19 11:55,"262 Hill St, Boston, MA 02215" +218102,Bose SoundSport Headphones,1,99.99,06/29/19 06:09,"543 River St, Portland, OR 97035" +218103,iPhone,1,700,06/19/19 11:52,"951 Walnut St, Los Angeles, CA 90001" +218104,Bose SoundSport Headphones,1,99.99,06/12/19 23:11,"425 Walnut St, Los Angeles, CA 90001" +218105,AAA Batteries (4-pack),1,2.99,06/07/19 11:41,"615 8th St, Portland, OR 97035" +218106,Flatscreen TV,1,300,06/10/19 18:10,"502 Johnson St, New York City, NY 10001" +218107,Wired Headphones,1,11.99,06/27/19 09:37,"172 1st St, New York City, NY 10001" +218108,Apple Airpods Headphones,1,150,06/05/19 13:53,"145 Forest St, New York City, NY 10001" +218109,20in Monitor,1,109.99,06/27/19 09:58,"620 Lake St, San Francisco, CA 94016" +218110,AAA Batteries (4-pack),2,2.99,06/16/19 09:36,"943 Chestnut St, Dallas, TX 75001" +218111,Vareebadd Phone,1,400,06/02/19 16:26,"961 Maple St, New York City, NY 10001" +218112,27in FHD Monitor,1,149.99,06/17/19 02:18,"159 Lakeview St, Seattle, WA 98101" +218113,Wired Headphones,1,11.99,06/30/19 12:36,"749 Pine St, San Francisco, CA 94016" +218114,AA Batteries (4-pack),1,3.84,06/01/19 20:09,"645 Chestnut St, Dallas, TX 75001" +218115,Apple Airpods Headphones,1,150,06/22/19 17:18,"206 Main St, Los Angeles, CA 90001" +218116,Lightning Charging Cable,1,14.95,06/07/19 02:06,"886 Ridge St, New York City, NY 10001" +218117,Wired Headphones,1,11.99,06/21/19 10:49,"964 12th St, Atlanta, GA 30301" +218118,AAA Batteries (4-pack),2,2.99,06/19/19 20:47,"643 8th St, Portland, ME 04101" +218119,USB-C Charging Cable,1,11.95,06/24/19 17:08,"62 Hickory St, Los Angeles, CA 90001" +218120,USB-C Charging Cable,1,11.95,06/29/19 12:07,"738 Jackson St, Boston, MA 02215" +218121,Google Phone,1,600,06/14/19 14:38,"640 Dogwood St, Seattle, WA 98101" +218122,USB-C Charging Cable,1,11.95,06/10/19 11:14,"522 Johnson St, Boston, MA 02215" +218123,34in Ultrawide Monitor,1,379.99,06/05/19 09:35,"475 Jefferson St, Portland, OR 97035" +218124,Bose SoundSport Headphones,1,99.99,06/20/19 17:04,"455 6th St, San Francisco, CA 94016" +218125,Bose SoundSport Headphones,1,99.99,06/23/19 14:18,"822 8th St, New York City, NY 10001" +218126,iPhone,1,700,06/24/19 22:01,"749 River St, Los Angeles, CA 90001" +218127,AA Batteries (4-pack),1,3.84,06/20/19 10:14,"640 Sunset St, San Francisco, CA 94016" +218128,Bose SoundSport Headphones,1,99.99,06/26/19 18:18,"409 Adams St, San Francisco, CA 94016" +218129,AAA Batteries (4-pack),3,2.99,06/28/19 11:10,"783 Center St, Atlanta, GA 30301" +218130,34in Ultrawide Monitor,1,379.99,06/18/19 12:40,"427 North St, San Francisco, CA 94016" +218131,USB-C Charging Cable,1,11.95,06/18/19 09:11,"839 Park St, Boston, MA 02215" +218132,USB-C Charging Cable,2,11.95,06/26/19 22:15,"327 Elm St, Seattle, WA 98101" +218133,Macbook Pro Laptop,1,1700,06/06/19 17:05,"654 7th St, San Francisco, CA 94016" +218134,Wired Headphones,1,11.99,06/17/19 13:53,"462 Highland St, Dallas, TX 75001" +218135,Macbook Pro Laptop,1,1700,06/21/19 14:54,"66 Jefferson St, Seattle, WA 98101" +218136,Flatscreen TV,1,300,06/14/19 09:14,"396 Cherry St, Atlanta, GA 30301" +218137,AAA Batteries (4-pack),1,2.99,06/27/19 23:34,"904 5th St, Portland, OR 97035" +218138,Bose SoundSport Headphones,1,99.99,06/18/19 12:38,"388 9th St, Austin, TX 73301" +218139,AA Batteries (4-pack),8,3.84,06/08/19 14:27,"410 Highland St, Los Angeles, CA 90001" +218140,AAA Batteries (4-pack),1,2.99,06/20/19 17:05,"278 Madison St, Austin, TX 73301" +218141,Lightning Charging Cable,1,14.95,06/09/19 18:47,"510 5th St, San Francisco, CA 94016" +218142,Wired Headphones,1,11.99,06/20/19 12:28,"805 Hickory St, Seattle, WA 98101" +218143,AAA Batteries (4-pack),2,2.99,06/19/19 21:20,"452 Jackson St, Los Angeles, CA 90001" +218144,Bose SoundSport Headphones,1,99.99,06/25/19 17:03,"801 7th St, Boston, MA 02215" +218145,Bose SoundSport Headphones,1,99.99,06/15/19 14:00,"853 9th St, Los Angeles, CA 90001" +218146,27in 4K Gaming Monitor,1,389.99,06/14/19 15:39,"778 Chestnut St, Boston, MA 02215" +218147,Lightning Charging Cable,1,14.95,06/12/19 16:50,"567 Highland St, Los Angeles, CA 90001" +218148,USB-C Charging Cable,1,11.95,06/06/19 20:33,"403 2nd St, Dallas, TX 75001" +218149,Flatscreen TV,1,300,06/30/19 23:37,"866 River St, Austin, TX 73301" +218150,AA Batteries (4-pack),1,3.84,06/26/19 14:11,"926 11th St, Austin, TX 73301" +218151,Lightning Charging Cable,1,14.95,06/07/19 13:36,"964 Ridge St, San Francisco, CA 94016" +218152,Apple Airpods Headphones,1,150,06/09/19 07:45,"234 12th St, Los Angeles, CA 90001" +218153,Lightning Charging Cable,1,14.95,06/20/19 08:24,"987 Jefferson St, Portland, OR 97035" +218154,Wired Headphones,2,11.99,06/04/19 12:12,"426 Willow St, Boston, MA 02215" +218155,Bose SoundSport Headphones,1,99.99,06/12/19 22:07,"650 2nd St, San Francisco, CA 94016" +218156,AA Batteries (4-pack),1,3.84,06/01/19 13:38,"856 Lake St, Seattle, WA 98101" +218157,27in 4K Gaming Monitor,1,389.99,06/19/19 15:11,"4 South St, San Francisco, CA 94016" +218158,USB-C Charging Cable,2,11.95,06/02/19 23:14,"53 Washington St, Boston, MA 02215" +218159,AA Batteries (4-pack),2,3.84,06/01/19 19:47,"8 Spruce St, Boston, MA 02215" +218160,Wired Headphones,1,11.99,06/12/19 09:44,"926 13th St, Portland, OR 97035" +218161,Lightning Charging Cable,1,14.95,06/09/19 21:30,"779 Adams St, San Francisco, CA 94016" +218162,27in 4K Gaming Monitor,1,389.99,06/20/19 03:25,"105 Maple St, San Francisco, CA 94016" +218163,iPhone,1,700,06/09/19 01:00,"588 Center St, Los Angeles, CA 90001" +218163,Wired Headphones,2,11.99,06/09/19 01:00,"588 Center St, Los Angeles, CA 90001" +218164,Macbook Pro Laptop,1,1700,06/26/19 17:19,"942 Jackson St, Atlanta, GA 30301" +218165,AAA Batteries (4-pack),1,2.99,06/16/19 17:39,"9 5th St, Boston, MA 02215" +218166,AA Batteries (4-pack),2,3.84,06/16/19 08:49,"202 Lakeview St, New York City, NY 10001" +218167,27in 4K Gaming Monitor,1,389.99,06/13/19 10:41,"378 11th St, Los Angeles, CA 90001" +218168,27in FHD Monitor,1,149.99,06/27/19 10:25,"778 Elm St, Dallas, TX 75001" +218169,AAA Batteries (4-pack),1,2.99,06/05/19 22:29,"982 Jefferson St, Portland, OR 97035" +218170,Lightning Charging Cable,1,14.95,06/23/19 11:42,"905 5th St, San Francisco, CA 94016" +218171,Lightning Charging Cable,1,14.95,06/26/19 08:21,"209 Main St, Atlanta, GA 30301" +218172,USB-C Charging Cable,1,11.95,06/14/19 18:57,"379 Elm St, New York City, NY 10001" +218173,Lightning Charging Cable,1,14.95,06/11/19 16:28,"497 South St, Atlanta, GA 30301" +218174,USB-C Charging Cable,1,11.95,06/01/19 08:00,"318 Park St, Los Angeles, CA 90001" +218175,AA Batteries (4-pack),1,3.84,06/07/19 15:09,"780 Ridge St, San Francisco, CA 94016" +218176,Lightning Charging Cable,1,14.95,06/11/19 14:36,"84 Walnut St, Los Angeles, CA 90001" +218177,Lightning Charging Cable,1,14.95,06/01/19 15:30,"784 West St, Portland, OR 97035" +218178,LG Dryer,1,600.0,06/27/19 21:40,"69 Highland St, Los Angeles, CA 90001" +218179,Lightning Charging Cable,1,14.95,06/28/19 07:57,"967 Park St, New York City, NY 10001" +218180,Lightning Charging Cable,1,14.95,06/19/19 11:44,"382 Cedar St, Los Angeles, CA 90001" +218181,Bose SoundSport Headphones,1,99.99,06/10/19 22:36,"309 Lake St, San Francisco, CA 94016" +218182,Google Phone,1,600,06/07/19 22:10,"316 Spruce St, Portland, OR 97035" +218183,iPhone,1,700,06/03/19 14:43,"375 Wilson St, San Francisco, CA 94016" +218184,USB-C Charging Cable,2,11.95,06/19/19 08:56,"760 Center St, Portland, OR 97035" +218185,AAA Batteries (4-pack),1,2.99,06/19/19 12:26,"465 6th St, New York City, NY 10001" +218186,AAA Batteries (4-pack),1,2.99,06/16/19 23:15,"953 Center St, Seattle, WA 98101" +218187,USB-C Charging Cable,1,11.95,06/25/19 12:17,"417 14th St, Boston, MA 02215" +218188,Lightning Charging Cable,1,14.95,06/26/19 10:20,"912 Park St, Los Angeles, CA 90001" +218189,iPhone,1,700,06/18/19 18:19,"557 West St, Atlanta, GA 30301" +218190,Lightning Charging Cable,1,14.95,06/20/19 08:35,"410 2nd St, Los Angeles, CA 90001" +218191,27in FHD Monitor,1,149.99,06/18/19 22:04,"234 Johnson St, San Francisco, CA 94016" +218192,Apple Airpods Headphones,1,150,06/19/19 15:14,"698 7th St, Boston, MA 02215" +218193,AA Batteries (4-pack),1,3.84,06/20/19 18:41,"214 Church St, New York City, NY 10001" +218194,Lightning Charging Cable,1,14.95,06/07/19 21:05,"181 River St, New York City, NY 10001" +218195,AAA Batteries (4-pack),1,2.99,06/30/19 14:24,"430 Main St, San Francisco, CA 94016" +218196,USB-C Charging Cable,1,11.95,06/19/19 21:22,"494 Elm St, Portland, OR 97035" +218197,USB-C Charging Cable,1,11.95,06/22/19 16:46,"960 2nd St, Dallas, TX 75001" +218198,Wired Headphones,1,11.99,06/03/19 20:18,"316 Pine St, San Francisco, CA 94016" +218199,AAA Batteries (4-pack),1,2.99,06/12/19 20:08,"137 Center St, Atlanta, GA 30301" +218200,USB-C Charging Cable,1,11.95,06/30/19 02:03,"529 Ridge St, San Francisco, CA 94016" +218201,27in FHD Monitor,1,149.99,06/23/19 12:50,"514 5th St, Boston, MA 02215" +218202,Bose SoundSport Headphones,1,99.99,06/29/19 14:39,"570 Chestnut St, Dallas, TX 75001" +218203,USB-C Charging Cable,1,11.95,06/18/19 14:28,"974 Highland St, San Francisco, CA 94016" +218204,Bose SoundSport Headphones,1,99.99,06/28/19 08:48,"803 Jackson St, Los Angeles, CA 90001" +218205,AA Batteries (4-pack),1,3.84,06/03/19 13:17,"390 Main St, New York City, NY 10001" +218206,USB-C Charging Cable,1,11.95,06/11/19 22:00,"558 Dogwood St, Los Angeles, CA 90001" +218207,AAA Batteries (4-pack),1,2.99,06/17/19 13:34,"115 Jefferson St, Portland, OR 97035" +218208,AA Batteries (4-pack),1,3.84,06/18/19 03:17,"35 Meadow St, San Francisco, CA 94016" +218208,AA Batteries (4-pack),1,3.84,06/18/19 03:17,"35 Meadow St, San Francisco, CA 94016" +218209,AA Batteries (4-pack),1,3.84,06/22/19 19:08,"323 North St, San Francisco, CA 94016" +218209,20in Monitor,1,109.99,06/22/19 19:08,"323 North St, San Francisco, CA 94016" +218210,Lightning Charging Cable,1,14.95,06/24/19 13:57,"764 13th St, Boston, MA 02215" +218211,AA Batteries (4-pack),2,3.84,06/08/19 17:43,"611 8th St, San Francisco, CA 94016" +218212,USB-C Charging Cable,1,11.95,06/18/19 12:58,"79 Meadow St, Seattle, WA 98101" +218213,USB-C Charging Cable,1,11.95,06/16/19 13:01,"144 Washington St, Boston, MA 02215" +218214,ThinkPad Laptop,1,999.99,06/23/19 16:57,"982 Lake St, Seattle, WA 98101" +218215,20in Monitor,1,109.99,06/02/19 22:22,"662 Sunset St, Los Angeles, CA 90001" +218215,34in Ultrawide Monitor,1,379.99,06/02/19 22:22,"662 Sunset St, Los Angeles, CA 90001" +218216,34in Ultrawide Monitor,1,379.99,06/22/19 11:22,"45 Cherry St, Los Angeles, CA 90001" +218217,USB-C Charging Cable,1,11.95,06/05/19 14:46,"28 Walnut St, San Francisco, CA 94016" +218218,Lightning Charging Cable,1,14.95,06/24/19 13:31,"940 Spruce St, Boston, MA 02215" +218219,Apple Airpods Headphones,1,150,06/01/19 18:58,"360 River St, Dallas, TX 75001" +218220,Apple Airpods Headphones,1,150,06/06/19 20:35,"410 Lincoln St, San Francisco, CA 94016" +218221,Lightning Charging Cable,1,14.95,06/15/19 10:09,"407 Washington St, San Francisco, CA 94016" +218222,Lightning Charging Cable,1,14.95,06/05/19 22:36,"696 South St, Boston, MA 02215" +218223,Google Phone,1,600,06/05/19 22:04,"764 Maple St, Boston, MA 02215" +218224,AA Batteries (4-pack),1,3.84,06/25/19 10:44,"242 Sunset St, Seattle, WA 98101" +218225,iPhone,1,700,06/10/19 21:42,"78 8th St, New York City, NY 10001" +218226,USB-C Charging Cable,1,11.95,06/02/19 12:18,"378 Johnson St, Dallas, TX 75001" +218227,Google Phone,1,600,06/15/19 11:15,"140 Lincoln St, San Francisco, CA 94016" +218228,Lightning Charging Cable,1,14.95,06/02/19 12:05,"540 13th St, Atlanta, GA 30301" +218229,AAA Batteries (4-pack),1,2.99,06/01/19 09:37,"794 Center St, Los Angeles, CA 90001" +218230,USB-C Charging Cable,1,11.95,06/19/19 21:39,"595 Center St, Boston, MA 02215" +218231,AA Batteries (4-pack),1,3.84,06/30/19 15:18,"752 Wilson St, Austin, TX 73301" +218232,AA Batteries (4-pack),1,3.84,06/10/19 17:57,"26 Pine St, Austin, TX 73301" +218233,ThinkPad Laptop,1,999.99,06/04/19 08:49,"645 4th St, San Francisco, CA 94016" +218234,Lightning Charging Cable,1,14.95,06/28/19 21:11,"196 Highland St, Atlanta, GA 30301" +218235,AAA Batteries (4-pack),1,2.99,06/03/19 21:36,"38 Center St, Boston, MA 02215" +218236,Bose SoundSport Headphones,1,99.99,06/19/19 19:21,"203 5th St, San Francisco, CA 94016" +218237,27in 4K Gaming Monitor,1,389.99,06/09/19 16:13,"838 Forest St, San Francisco, CA 94016" +218238,AA Batteries (4-pack),1,3.84,06/03/19 07:25,"366 Center St, Atlanta, GA 30301" +218239,AAA Batteries (4-pack),2,2.99,06/28/19 20:23,"711 5th St, New York City, NY 10001" +218240,Apple Airpods Headphones,1,150,06/25/19 21:07,"761 Washington St, San Francisco, CA 94016" +218241,34in Ultrawide Monitor,1,379.99,06/10/19 15:35,"847 Hickory St, San Francisco, CA 94016" +218242,USB-C Charging Cable,1,11.95,06/17/19 10:10,"905 11th St, Los Angeles, CA 90001" +218243,27in 4K Gaming Monitor,1,389.99,06/04/19 23:18,"512 Willow St, Seattle, WA 98101" +218244,Bose SoundSport Headphones,1,99.99,06/14/19 09:05,"900 6th St, New York City, NY 10001" +218245,iPhone,1,700,06/10/19 13:53,"894 Adams St, Austin, TX 73301" +218246,Google Phone,1,600,06/24/19 11:31,"303 Pine St, San Francisco, CA 94016" +218247,Wired Headphones,1,11.99,06/15/19 21:29,"828 4th St, New York City, NY 10001" +218248,AAA Batteries (4-pack),1,2.99,06/18/19 12:25,"489 Johnson St, San Francisco, CA 94016" +218249,ThinkPad Laptop,1,999.99,06/29/19 15:37,"11 Main St, Seattle, WA 98101" +218250,iPhone,1,700,06/27/19 11:21,"644 9th St, New York City, NY 10001" +218251,Wired Headphones,1,11.99,06/18/19 18:37,"491 Adams St, Portland, OR 97035" +218252,Lightning Charging Cable,1,14.95,06/07/19 11:48,"841 Spruce St, Atlanta, GA 30301" +218253,Lightning Charging Cable,1,14.95,06/27/19 16:51,"227 Ridge St, San Francisco, CA 94016" +218254,AAA Batteries (4-pack),2,2.99,06/25/19 16:40,"943 Madison St, San Francisco, CA 94016" +218255,Bose SoundSport Headphones,1,99.99,06/19/19 23:51,"861 Walnut St, Boston, MA 02215" +218256,iPhone,1,700,06/23/19 11:46,"914 Washington St, San Francisco, CA 94016" +218257,Wired Headphones,1,11.99,06/25/19 21:26,"768 Lakeview St, San Francisco, CA 94016" +218258,20in Monitor,1,109.99,06/28/19 12:28,"514 Jackson St, Boston, MA 02215" +218259,USB-C Charging Cable,1,11.95,06/14/19 14:33,"934 Madison St, San Francisco, CA 94016" +218260,Lightning Charging Cable,1,14.95,06/17/19 13:23,"17 1st St, Los Angeles, CA 90001" +218261,AA Batteries (4-pack),1,3.84,06/09/19 12:43,"617 Wilson St, San Francisco, CA 94016" +218262,AA Batteries (4-pack),1,3.84,06/03/19 18:43,"785 Maple St, Boston, MA 02215" +218263,Lightning Charging Cable,1,14.95,06/14/19 19:54,"472 Church St, San Francisco, CA 94016" +218264,27in FHD Monitor,2,149.99,06/04/19 11:51,"193 Jackson St, San Francisco, CA 94016" +218265,Lightning Charging Cable,1,14.95,06/23/19 06:44,"585 Center St, Dallas, TX 75001" +218266,Lightning Charging Cable,1,14.95,06/07/19 13:23,"156 South St, Los Angeles, CA 90001" +218267,Apple Airpods Headphones,1,150,06/13/19 21:00,"642 Lake St, Los Angeles, CA 90001" +218268,27in 4K Gaming Monitor,1,389.99,06/09/19 22:26,"389 Jefferson St, San Francisco, CA 94016" +218269,USB-C Charging Cable,1,11.95,06/24/19 10:25,"320 Hickory St, San Francisco, CA 94016" +218270,Lightning Charging Cable,1,14.95,06/09/19 05:40,"333 2nd St, Los Angeles, CA 90001" +218271,Apple Airpods Headphones,1,150,06/20/19 21:13,"369 2nd St, Seattle, WA 98101" +218272,AA Batteries (4-pack),1,3.84,06/06/19 16:23,"533 5th St, San Francisco, CA 94016" +218273,iPhone,1,700,06/22/19 14:41,"944 13th St, Boston, MA 02215" +218274,AAA Batteries (4-pack),1,2.99,06/18/19 20:35,"98 Main St, Atlanta, GA 30301" +218275,27in FHD Monitor,1,149.99,06/14/19 23:03,"16 Meadow St, Los Angeles, CA 90001" +218276,Lightning Charging Cable,1,14.95,06/16/19 14:39,"834 Lakeview St, Atlanta, GA 30301" +218277,Lightning Charging Cable,1,14.95,06/17/19 15:35,"826 Jefferson St, Seattle, WA 98101" +218278,Bose SoundSport Headphones,1,99.99,06/05/19 20:35,"748 Jackson St, Los Angeles, CA 90001" +218279,ThinkPad Laptop,1,999.99,06/20/19 14:02,"128 Highland St, Boston, MA 02215" +218280,27in FHD Monitor,1,149.99,06/30/19 12:15,"720 Center St, Boston, MA 02215" +218281,Apple Airpods Headphones,1,150,06/24/19 21:19,"585 Main St, Portland, OR 97035" +218282,USB-C Charging Cable,1,11.95,06/17/19 15:22,"523 8th St, Seattle, WA 98101" +218283,Bose SoundSport Headphones,1,99.99,06/29/19 23:25,"294 Adams St, Los Angeles, CA 90001" +218284,Lightning Charging Cable,1,14.95,06/25/19 12:05,"425 2nd St, San Francisco, CA 94016" +218285,USB-C Charging Cable,1,11.95,06/25/19 10:05,"92 Center St, San Francisco, CA 94016" +218286,Vareebadd Phone,1,400,06/14/19 01:35,"822 Center St, Boston, MA 02215" +218287,Bose SoundSport Headphones,1,99.99,06/28/19 21:21,"543 Park St, San Francisco, CA 94016" +218288,iPhone,1,700,06/16/19 15:17,"380 Willow St, Portland, OR 97035" +218288,Apple Airpods Headphones,1,150,06/16/19 15:17,"380 Willow St, Portland, OR 97035" +218289,20in Monitor,1,109.99,06/16/19 15:22,"371 North St, Seattle, WA 98101" +218290,Apple Airpods Headphones,1,150,06/20/19 17:27,"292 7th St, Seattle, WA 98101" +218291,iPhone,1,700,06/14/19 17:45,"176 Cherry St, Boston, MA 02215" +218291,Apple Airpods Headphones,1,150,06/14/19 17:45,"176 Cherry St, Boston, MA 02215" +218292,34in Ultrawide Monitor,1,379.99,06/12/19 19:08,"137 Hill St, New York City, NY 10001" +218293,Google Phone,1,600,06/21/19 18:02,"678 Wilson St, San Francisco, CA 94016" +218293,USB-C Charging Cable,1,11.95,06/21/19 18:02,"678 Wilson St, San Francisco, CA 94016" +218294,Apple Airpods Headphones,1,150,06/24/19 13:26,"811 Elm St, San Francisco, CA 94016" +218295,AA Batteries (4-pack),1,3.84,06/16/19 08:41,"907 1st St, Boston, MA 02215" +218296,iPhone,1,700,06/17/19 09:52,"731 Willow St, New York City, NY 10001" +218297,Lightning Charging Cable,1,14.95,06/01/19 16:45,"971 10th St, Los Angeles, CA 90001" +218298,USB-C Charging Cable,1,11.95,06/28/19 12:51,"94 Chestnut St, San Francisco, CA 94016" +218299,AA Batteries (4-pack),1,3.84,06/13/19 12:45,"263 Ridge St, Boston, MA 02215" +218300,Macbook Pro Laptop,1,1700,06/23/19 13:39,"493 West St, San Francisco, CA 94016" +218301,USB-C Charging Cable,1,11.95,06/30/19 07:03,"895 2nd St, New York City, NY 10001" +218302,AAA Batteries (4-pack),1,2.99,06/28/19 12:44,"214 Willow St, Los Angeles, CA 90001" +218303,Wired Headphones,1,11.99,06/24/19 10:05,"143 South St, Boston, MA 02215" +218304,USB-C Charging Cable,2,11.95,06/20/19 11:31,"583 Willow St, Seattle, WA 98101" +218305,Bose SoundSport Headphones,1,99.99,06/17/19 18:04,"594 11th St, Atlanta, GA 30301" +218306,Lightning Charging Cable,1,14.95,06/15/19 10:50,"482 Cherry St, Los Angeles, CA 90001" +218307,Apple Airpods Headphones,1,150,06/03/19 15:10,"698 North St, San Francisco, CA 94016" +218308,Apple Airpods Headphones,1,150,06/27/19 22:40,"869 Wilson St, Boston, MA 02215" +218309,Bose SoundSport Headphones,1,99.99,06/26/19 10:47,"697 Ridge St, Los Angeles, CA 90001" +218310,Lightning Charging Cable,1,14.95,06/17/19 19:59,"500 Lakeview St, San Francisco, CA 94016" +218311,Lightning Charging Cable,1,14.95,06/10/19 17:16,"184 Dogwood St, New York City, NY 10001" +218312,USB-C Charging Cable,1,11.95,06/19/19 14:29,"721 Lake St, Portland, ME 04101" +218313,USB-C Charging Cable,1,11.95,06/18/19 17:04,"794 Highland St, San Francisco, CA 94016" +218314,AAA Batteries (4-pack),1,2.99,06/18/19 08:23,"669 Jefferson St, Seattle, WA 98101" +218315,USB-C Charging Cable,1,11.95,06/08/19 17:13,"407 Dogwood St, Atlanta, GA 30301" +218316,Wired Headphones,1,11.99,06/11/19 14:26,"566 Dogwood St, New York City, NY 10001" +218317,Lightning Charging Cable,1,14.95,06/13/19 10:38,"642 Sunset St, New York City, NY 10001" +218318,AA Batteries (4-pack),1,3.84,06/19/19 21:19,"777 Meadow St, Los Angeles, CA 90001" +218319,iPhone,1,700,06/10/19 23:43,"735 Meadow St, New York City, NY 10001" +218320,Macbook Pro Laptop,1,1700,06/25/19 21:11,"199 11th St, San Francisco, CA 94016" +218321,27in FHD Monitor,1,149.99,06/18/19 13:54,"282 Walnut St, San Francisco, CA 94016" +218322,ThinkPad Laptop,1,999.99,06/11/19 23:47,"795 Hill St, Dallas, TX 75001" +218323,Lightning Charging Cable,1,14.95,06/10/19 23:07,"852 Madison St, New York City, NY 10001" +218324,Bose SoundSport Headphones,1,99.99,06/27/19 00:13,"583 South St, Los Angeles, CA 90001" +218325,ThinkPad Laptop,1,999.99,06/09/19 11:29,"921 Pine St, Portland, OR 97035" +218326,Apple Airpods Headphones,1,150,06/17/19 13:27,"128 Maple St, Atlanta, GA 30301" +218327,Apple Airpods Headphones,1,150,06/02/19 21:26,"823 Forest St, Portland, OR 97035" +218328,27in 4K Gaming Monitor,1,389.99,06/19/19 07:03,"771 4th St, Atlanta, GA 30301" +218329,AAA Batteries (4-pack),1,2.99,06/06/19 21:48,"963 Willow St, San Francisco, CA 94016" +218330,27in FHD Monitor,1,149.99,06/23/19 23:02,"144 Park St, Portland, OR 97035" +218331,Apple Airpods Headphones,1,150,06/02/19 07:41,"693 Highland St, Atlanta, GA 30301" +218332,27in 4K Gaming Monitor,1,389.99,06/28/19 09:36,"400 Johnson St, Austin, TX 73301" +218333,Lightning Charging Cable,1,14.95,06/26/19 19:26,"889 4th St, Portland, OR 97035" +218334,AAA Batteries (4-pack),1,2.99,06/19/19 10:38,"908 9th St, San Francisco, CA 94016" +218335,AA Batteries (4-pack),1,3.84,06/01/19 10:12,"762 7th St, Seattle, WA 98101" +218336,USB-C Charging Cable,1,11.95,06/14/19 18:56,"228 Cherry St, San Francisco, CA 94016" +218337,AA Batteries (4-pack),1,3.84,06/25/19 22:30,"547 2nd St, Seattle, WA 98101" +218338,AA Batteries (4-pack),1,3.84,06/08/19 13:02,"912 Maple St, Seattle, WA 98101" +218339,Apple Airpods Headphones,1,150,06/14/19 18:57,"885 Wilson St, San Francisco, CA 94016" +218340,Bose SoundSport Headphones,1,99.99,06/21/19 00:21,"312 12th St, San Francisco, CA 94016" +218341,Wired Headphones,1,11.99,06/19/19 14:50,"596 Lakeview St, San Francisco, CA 94016" +218342,USB-C Charging Cable,1,11.95,06/07/19 22:31,"436 Lincoln St, Boston, MA 02215" +218343,Bose SoundSport Headphones,1,99.99,06/18/19 15:31,"854 Maple St, Portland, OR 97035" +218344,USB-C Charging Cable,1,11.95,06/30/19 12:11,"97 Jackson St, Austin, TX 73301" +218345,Flatscreen TV,1,300,06/15/19 21:31,"329 Pine St, Seattle, WA 98101" +218346,USB-C Charging Cable,2,11.95,06/22/19 12:04,"928 6th St, Atlanta, GA 30301" +218347,AAA Batteries (4-pack),1,2.99,06/14/19 17:09,"489 Adams St, Los Angeles, CA 90001" +218348,USB-C Charging Cable,1,11.95,06/30/19 20:16,"846 10th St, San Francisco, CA 94016" +218349,Apple Airpods Headphones,1,150,06/09/19 09:39,"84 Center St, Seattle, WA 98101" +218350,AAA Batteries (4-pack),1,2.99,06/12/19 16:29,"3 9th St, Los Angeles, CA 90001" +218351,Wired Headphones,1,11.99,06/09/19 19:41,"471 Main St, Boston, MA 02215" +218352,ThinkPad Laptop,1,999.99,06/17/19 16:34,"516 North St, Los Angeles, CA 90001" +218353,AA Batteries (4-pack),1,3.84,06/01/19 18:59,"492 Jackson St, Boston, MA 02215" +218353,27in 4K Gaming Monitor,1,389.99,06/01/19 18:59,"492 Jackson St, Boston, MA 02215" +218354,Google Phone,1,600,06/24/19 14:53,"251 10th St, Boston, MA 02215" +218355,34in Ultrawide Monitor,1,379.99,06/22/19 23:57,"897 Willow St, New York City, NY 10001" +218356,Bose SoundSport Headphones,1,99.99,06/25/19 11:29,"171 Washington St, Austin, TX 73301" +218357,Lightning Charging Cable,1,14.95,06/03/19 10:47,"302 North St, New York City, NY 10001" +218358,USB-C Charging Cable,1,11.95,06/10/19 10:09,"216 Walnut St, Austin, TX 73301" +218359,Google Phone,1,600,06/28/19 08:59,"548 8th St, Portland, OR 97035" +218360,Lightning Charging Cable,1,14.95,06/22/19 09:53,"397 Maple St, Los Angeles, CA 90001" +218361,Wired Headphones,1,11.99,06/12/19 23:26,"47 Church St, New York City, NY 10001" +218362,27in FHD Monitor,1,149.99,06/06/19 10:20,"963 Hill St, Atlanta, GA 30301" +218363,27in 4K Gaming Monitor,1,389.99,06/16/19 15:25,"827 Meadow St, San Francisco, CA 94016" +218364,27in FHD Monitor,1,149.99,06/06/19 12:36,"50 Lakeview St, Seattle, WA 98101" +218365,USB-C Charging Cable,1,11.95,06/13/19 11:21,"172 Jefferson St, San Francisco, CA 94016" +218366,Google Phone,1,600,06/26/19 21:04,"892 Spruce St, Dallas, TX 75001" +218366,USB-C Charging Cable,2,11.95,06/26/19 21:04,"892 Spruce St, Dallas, TX 75001" +218367,Lightning Charging Cable,1,14.95,06/10/19 11:07,"626 13th St, Seattle, WA 98101" +218368,Flatscreen TV,1,300,06/06/19 19:05,"637 Willow St, Portland, OR 97035" +218369,Apple Airpods Headphones,1,150,06/05/19 11:38,"237 10th St, Austin, TX 73301" +218370,AAA Batteries (4-pack),3,2.99,06/16/19 12:53,"806 Spruce St, Boston, MA 02215" +218371,iPhone,1,700,06/08/19 15:18,"969 Chestnut St, Seattle, WA 98101" +218371,Lightning Charging Cable,1,14.95,06/08/19 15:18,"969 Chestnut St, Seattle, WA 98101" +218372,27in FHD Monitor,1,149.99,06/29/19 18:46,"132 Washington St, Los Angeles, CA 90001" +218373,Lightning Charging Cable,1,14.95,06/17/19 23:10,"882 Madison St, New York City, NY 10001" +218374,34in Ultrawide Monitor,1,379.99,06/30/19 17:17,"266 Church St, Boston, MA 02215" +218375,AA Batteries (4-pack),1,3.84,06/07/19 14:45,"501 Park St, Seattle, WA 98101" +218376,Lightning Charging Cable,1,14.95,06/07/19 14:40,"221 Hickory St, Austin, TX 73301" +218377,iPhone,1,700,06/02/19 09:50,"189 Cherry St, Portland, OR 97035" +218378,AA Batteries (4-pack),1,3.84,06/20/19 20:00,"765 4th St, Los Angeles, CA 90001" +218379,AA Batteries (4-pack),1,3.84,06/04/19 22:17,"316 Park St, San Francisco, CA 94016" +218380,27in FHD Monitor,1,149.99,06/25/19 07:02,"514 Lakeview St, Atlanta, GA 30301" +218381,Wired Headphones,1,11.99,06/30/19 08:49,"231 6th St, Boston, MA 02215" +218382,AA Batteries (4-pack),1,3.84,06/26/19 12:40,"92 2nd St, San Francisco, CA 94016" +218383,USB-C Charging Cable,1,11.95,06/20/19 23:05,"360 Willow St, San Francisco, CA 94016" +218384,20in Monitor,1,109.99,06/14/19 17:43,"897 Johnson St, Seattle, WA 98101" +218385,LG Washing Machine,1,600.0,06/09/19 13:47,"253 14th St, Portland, OR 97035" +218386,AA Batteries (4-pack),1,3.84,06/27/19 20:37,"335 Center St, Seattle, WA 98101" +218387,AAA Batteries (4-pack),6,2.99,06/01/19 16:11,"568 North St, Los Angeles, CA 90001" +218388,Wired Headphones,1,11.99,06/16/19 00:25,"246 South St, Boston, MA 02215" +218389,Bose SoundSport Headphones,1,99.99,06/27/19 14:52,"2 6th St, San Francisco, CA 94016" +218390,Apple Airpods Headphones,1,150,06/14/19 13:17,"352 Church St, Los Angeles, CA 90001" +218391,iPhone,1,700,06/13/19 20:02,"54 Madison St, Los Angeles, CA 90001" +218392,AA Batteries (4-pack),2,3.84,06/21/19 19:03,"197 Madison St, Seattle, WA 98101" +218393,AAA Batteries (4-pack),1,2.99,06/07/19 18:06,"836 Adams St, Portland, OR 97035" +218394,Apple Airpods Headphones,1,150,06/02/19 21:03,"262 6th St, San Francisco, CA 94016" +218395,Wired Headphones,1,11.99,06/01/19 17:29,"180 Willow St, San Francisco, CA 94016" +218396,27in FHD Monitor,1,149.99,06/05/19 17:52,"42 Walnut St, San Francisco, CA 94016" +218397,AA Batteries (4-pack),1,3.84,06/27/19 17:09,"767 Pine St, New York City, NY 10001" +218398,AA Batteries (4-pack),1,3.84,06/23/19 14:08,"312 Meadow St, Los Angeles, CA 90001" +218399,Wired Headphones,2,11.99,06/22/19 18:40,"757 13th St, San Francisco, CA 94016" +218400,27in 4K Gaming Monitor,1,389.99,06/20/19 20:59,"223 5th St, Dallas, TX 75001" +218401,AAA Batteries (4-pack),1,2.99,06/01/19 09:37,"849 Lake St, Seattle, WA 98101" +218402,Apple Airpods Headphones,1,150,06/27/19 15:31,"117 Park St, Atlanta, GA 30301" +218403,Lightning Charging Cable,1,14.95,06/06/19 22:01,"573 8th St, New York City, NY 10001" +218404,AA Batteries (4-pack),1,3.84,06/09/19 18:38,"138 Pine St, San Francisco, CA 94016" +218405,Apple Airpods Headphones,1,150,06/21/19 00:52,"692 Elm St, Dallas, TX 75001" +218406,Apple Airpods Headphones,1,150,06/14/19 13:42,"638 West St, New York City, NY 10001" +218407,27in FHD Monitor,1,149.99,06/14/19 18:27,"18 6th St, Austin, TX 73301" +218408,Lightning Charging Cable,1,14.95,06/25/19 21:40,"334 Wilson St, San Francisco, CA 94016" +218409,Wired Headphones,1,11.99,06/04/19 00:39,"144 Park St, Portland, ME 04101" +218410,Apple Airpods Headphones,1,150,06/26/19 22:59,"5 Lakeview St, San Francisco, CA 94016" +218411,Wired Headphones,1,11.99,06/17/19 21:11,"696 Dogwood St, Atlanta, GA 30301" +218412,Lightning Charging Cable,1,14.95,06/28/19 19:16,"785 Madison St, Seattle, WA 98101" +218413,Wired Headphones,1,11.99,06/24/19 11:23,"80 Hill St, Dallas, TX 75001" +218414,Google Phone,1,600,06/30/19 15:43,"68 1st St, Atlanta, GA 30301" +218415,Google Phone,1,600,06/18/19 23:36,"344 Dogwood St, New York City, NY 10001" +218416,AA Batteries (4-pack),1,3.84,06/06/19 18:37,"573 Cherry St, Boston, MA 02215" +218417,27in FHD Monitor,1,149.99,06/08/19 13:41,"945 14th St, Los Angeles, CA 90001" +218418,AA Batteries (4-pack),1,3.84,06/08/19 17:37,"675 Jackson St, Austin, TX 73301" +218419,iPhone,1,700,06/05/19 15:22,"525 Lake St, New York City, NY 10001" +218420,AAA Batteries (4-pack),3,2.99,06/25/19 12:04,"288 7th St, Boston, MA 02215" +218421,Lightning Charging Cable,1,14.95,06/10/19 22:22,"262 4th St, San Francisco, CA 94016" +218422,Lightning Charging Cable,1,14.95,06/28/19 15:31,"152 2nd St, Atlanta, GA 30301" +218423,Flatscreen TV,1,300,06/20/19 17:48,"533 1st St, New York City, NY 10001" +218424,Wired Headphones,1,11.99,06/01/19 12:06,"57 Lakeview St, New York City, NY 10001" +218425,Lightning Charging Cable,1,14.95,06/15/19 18:38,"185 Ridge St, Boston, MA 02215" +218426,Lightning Charging Cable,1,14.95,06/10/19 17:39,"966 Chestnut St, Atlanta, GA 30301" +218427,USB-C Charging Cable,1,11.95,06/13/19 20:46,"180 Elm St, San Francisco, CA 94016" +218428,Google Phone,1,600,06/07/19 11:56,"814 Spruce St, Dallas, TX 75001" +218429,AAA Batteries (4-pack),1,2.99,06/09/19 14:23,"167 River St, Los Angeles, CA 90001" +218430,Wired Headphones,2,11.99,06/01/19 11:16,"229 Dogwood St, Portland, OR 97035" +218431,20in Monitor,1,109.99,06/08/19 17:59,"136 Elm St, New York City, NY 10001" +218432,AA Batteries (4-pack),1,3.84,06/18/19 11:15,"5 Highland St, New York City, NY 10001" +218433,34in Ultrawide Monitor,1,379.99,06/22/19 14:39,"538 Forest St, Dallas, TX 75001" +218434,34in Ultrawide Monitor,1,379.99,06/04/19 18:15,"309 Main St, Portland, OR 97035" +218435,Google Phone,1,600,06/08/19 15:16,"780 Cherry St, New York City, NY 10001" +218435,USB-C Charging Cable,1,11.95,06/08/19 15:16,"780 Cherry St, New York City, NY 10001" +218436,Lightning Charging Cable,1,14.95,06/15/19 20:48,"89 11th St, Atlanta, GA 30301" +218437,AAA Batteries (4-pack),1,2.99,06/04/19 19:49,"487 Sunset St, San Francisco, CA 94016" +218438,20in Monitor,1,109.99,06/05/19 21:04,"465 Ridge St, Los Angeles, CA 90001" +218439,34in Ultrawide Monitor,1,379.99,06/07/19 00:31,"722 Highland St, Los Angeles, CA 90001" +218440,27in FHD Monitor,1,149.99,06/18/19 19:42,"564 Spruce St, Los Angeles, CA 90001" +218441,USB-C Charging Cable,1,11.95,06/28/19 19:05,"459 Maple St, New York City, NY 10001" +218442,USB-C Charging Cable,1,11.95,06/16/19 15:31,"207 Walnut St, Los Angeles, CA 90001" +218443,27in FHD Monitor,1,149.99,06/19/19 13:45,"310 Meadow St, New York City, NY 10001" +218444,AAA Batteries (4-pack),2,2.99,06/13/19 10:54,"542 Forest St, Los Angeles, CA 90001" +218445,iPhone,1,700,06/09/19 16:30,"47 Highland St, Los Angeles, CA 90001" +218446,AA Batteries (4-pack),1,3.84,06/23/19 15:56,"901 Walnut St, Los Angeles, CA 90001" +218447,Lightning Charging Cable,1,14.95,06/04/19 09:29,"175 11th St, San Francisco, CA 94016" +218448,USB-C Charging Cable,1,11.95,06/28/19 18:29,"967 Madison St, Los Angeles, CA 90001" +218449,Apple Airpods Headphones,1,150,06/12/19 14:37,"436 12th St, Los Angeles, CA 90001" +218450,AA Batteries (4-pack),1,3.84,06/17/19 19:22,"929 Pine St, Los Angeles, CA 90001" +218451,Lightning Charging Cable,1,14.95,06/18/19 22:28,"573 Adams St, New York City, NY 10001" +218452,AA Batteries (4-pack),1,3.84,06/25/19 11:24,"174 Cedar St, Atlanta, GA 30301" +218453,Macbook Pro Laptop,1,1700,06/03/19 20:29,"798 Sunset St, Los Angeles, CA 90001" +218454,Apple Airpods Headphones,1,150,06/27/19 08:22,"64 Hill St, San Francisco, CA 94016" +218455,iPhone,1,700,06/03/19 23:48,"463 12th St, Los Angeles, CA 90001" +218456,AA Batteries (4-pack),1,3.84,06/11/19 17:57,"393 Washington St, New York City, NY 10001" +218457,AA Batteries (4-pack),2,3.84,06/13/19 11:03,"675 Cherry St, New York City, NY 10001" +218458,AA Batteries (4-pack),1,3.84,06/14/19 15:14,"187 Chestnut St, San Francisco, CA 94016" +218459,AA Batteries (4-pack),2,3.84,06/24/19 19:00,"78 14th St, New York City, NY 10001" +218460,27in 4K Gaming Monitor,1,389.99,06/10/19 10:59,"694 Lakeview St, Portland, OR 97035" +218461,Lightning Charging Cable,1,14.95,06/04/19 19:24,"255 Jefferson St, Austin, TX 73301" +218462,Bose SoundSport Headphones,1,99.99,06/17/19 18:29,"476 Main St, Dallas, TX 75001" +218463,Lightning Charging Cable,1,14.95,06/22/19 19:49,"563 Dogwood St, Dallas, TX 75001" +218464,Lightning Charging Cable,1,14.95,06/25/19 16:48,"901 Sunset St, Dallas, TX 75001" +218465,Wired Headphones,1,11.99,06/14/19 11:45,"153 9th St, Seattle, WA 98101" +218466,AA Batteries (4-pack),2,3.84,06/01/19 22:19,"124 7th St, Portland, OR 97035" +218467,Bose SoundSport Headphones,1,99.99,06/16/19 16:02,"549 Forest St, Boston, MA 02215" +218468,USB-C Charging Cable,1,11.95,06/22/19 14:38,"934 13th St, Boston, MA 02215" +218469,20in Monitor,1,109.99,06/27/19 11:33,"579 North St, Los Angeles, CA 90001" +218470,Wired Headphones,1,11.99,06/25/19 12:43,"368 13th St, Austin, TX 73301" +,,,,, +218471,USB-C Charging Cable,1,11.95,06/17/19 15:58,"341 2nd St, Boston, MA 02215" +218472,Apple Airpods Headphones,1,150,06/22/19 15:45,"547 Cedar St, Los Angeles, CA 90001" +218473,AAA Batteries (4-pack),1,2.99,06/04/19 16:17,"778 10th St, San Francisco, CA 94016" +218474,iPhone,1,700,06/29/19 10:18,"694 1st St, Boston, MA 02215" +218475,Apple Airpods Headphones,1,150,06/22/19 15:28,"999 Jackson St, Dallas, TX 75001" +218476,Wired Headphones,1,11.99,06/05/19 13:44,"359 Forest St, Austin, TX 73301" +218477,AAA Batteries (4-pack),1,2.99,06/14/19 12:19,"252 Main St, New York City, NY 10001" +218478,AA Batteries (4-pack),2,3.84,06/03/19 14:43,"43 Lincoln St, Portland, ME 04101" +218479,AAA Batteries (4-pack),1,2.99,06/23/19 14:03,"770 Lakeview St, Boston, MA 02215" +218480,Lightning Charging Cable,1,14.95,06/05/19 12:19,"156 Jackson St, Boston, MA 02215" +218481,AA Batteries (4-pack),1,3.84,06/08/19 10:51,"185 Wilson St, San Francisco, CA 94016" +218482,Lightning Charging Cable,3,14.95,06/09/19 09:36,"845 Maple St, San Francisco, CA 94016" +218483,Wired Headphones,1,11.99,06/08/19 23:48,"924 River St, New York City, NY 10001" +218484,AA Batteries (4-pack),1,3.84,06/22/19 08:30,"962 Wilson St, Austin, TX 73301" +218485,AAA Batteries (4-pack),1,2.99,06/24/19 06:08,"126 Spruce St, Seattle, WA 98101" +218486,USB-C Charging Cable,1,11.95,06/29/19 21:07,"724 Ridge St, San Francisco, CA 94016" +218487,iPhone,1,700,06/28/19 00:07,"232 Spruce St, New York City, NY 10001" +218488,Macbook Pro Laptop,1,1700,06/09/19 04:33,"886 Lakeview St, San Francisco, CA 94016" +218489,Wired Headphones,1,11.99,06/09/19 18:52,"372 Lakeview St, Austin, TX 73301" +218490,AA Batteries (4-pack),1,3.84,06/25/19 09:22,"703 12th St, Boston, MA 02215" +218491,Wired Headphones,1,11.99,06/30/19 21:32,"883 Walnut St, Los Angeles, CA 90001" +218492,Lightning Charging Cable,1,14.95,06/07/19 12:42,"267 Church St, Dallas, TX 75001" +218493,Macbook Pro Laptop,1,1700,06/15/19 17:22,"133 5th St, New York City, NY 10001" +218494,Wired Headphones,1,11.99,06/05/19 18:13,"537 River St, Austin, TX 73301" +218495,Apple Airpods Headphones,1,150,06/09/19 21:02,"512 12th St, Dallas, TX 75001" +218496,Wired Headphones,1,11.99,06/06/19 22:26,"338 8th St, Dallas, TX 75001" +218497,AA Batteries (4-pack),2,3.84,06/08/19 10:13,"201 Hill St, Seattle, WA 98101" +218498,Wired Headphones,2,11.99,06/04/19 23:15,"448 14th St, Seattle, WA 98101" +218499,Wired Headphones,1,11.99,06/12/19 09:51,"552 Maple St, San Francisco, CA 94016" +218500,Apple Airpods Headphones,1,150,06/10/19 12:49,"347 Center St, San Francisco, CA 94016" +218501,27in FHD Monitor,1,149.99,06/20/19 15:49,"513 Adams St, Seattle, WA 98101" +218502,27in 4K Gaming Monitor,1,389.99,06/10/19 22:20,"888 10th St, San Francisco, CA 94016" +218503,20in Monitor,1,109.99,06/20/19 23:06,"117 Cedar St, New York City, NY 10001" +,,,,, +218504,USB-C Charging Cable,2,11.95,06/20/19 08:57,"122 Ridge St, Los Angeles, CA 90001" +218505,Lightning Charging Cable,1,14.95,06/13/19 15:39,"338 Elm St, San Francisco, CA 94016" +218506,Lightning Charging Cable,1,14.95,06/03/19 14:35,"547 Walnut St, Seattle, WA 98101" +218507,Lightning Charging Cable,1,14.95,06/13/19 21:17,"775 5th St, San Francisco, CA 94016" +218508,AAA Batteries (4-pack),5,2.99,06/19/19 09:04,"738 Main St, San Francisco, CA 94016" +218509,USB-C Charging Cable,1,11.95,06/19/19 14:20,"939 Sunset St, Los Angeles, CA 90001" +218510,AA Batteries (4-pack),1,3.84,06/23/19 22:49,"13 6th St, Atlanta, GA 30301" +218511,27in 4K Gaming Monitor,1,389.99,06/25/19 12:53,"697 North St, Boston, MA 02215" +218512,Google Phone,1,600,06/06/19 12:03,"138 Johnson St, Los Angeles, CA 90001" +218513,Lightning Charging Cable,2,14.95,06/27/19 17:22,"560 11th St, Austin, TX 73301" +218514,Lightning Charging Cable,1,14.95,06/07/19 22:31,"392 Lincoln St, New York City, NY 10001" +218515,Wired Headphones,1,11.99,06/19/19 20:41,"24 Spruce St, Dallas, TX 75001" +218516,Lightning Charging Cable,1,14.95,06/19/19 20:37,"219 Forest St, San Francisco, CA 94016" +218517,Flatscreen TV,1,300,06/22/19 19:21,"161 Walnut St, San Francisco, CA 94016" +218518,Apple Airpods Headphones,1,150,06/09/19 21:31,"483 Willow St, Boston, MA 02215" +218519,Bose SoundSport Headphones,1,99.99,06/16/19 11:40,"653 Elm St, San Francisco, CA 94016" +218520,AA Batteries (4-pack),1,3.84,06/28/19 16:04,"56 Elm St, Austin, TX 73301" +218521,Bose SoundSport Headphones,1,99.99,06/23/19 14:54,"411 Cherry St, Seattle, WA 98101" +218522,AAA Batteries (4-pack),2,2.99,06/02/19 05:06,"243 Dogwood St, New York City, NY 10001" +218523,AAA Batteries (4-pack),1,2.99,06/24/19 16:25,"409 Meadow St, San Francisco, CA 94016" +218524,27in FHD Monitor,1,149.99,06/20/19 19:40,"197 Elm St, San Francisco, CA 94016" +218525,34in Ultrawide Monitor,1,379.99,06/05/19 17:42,"291 West St, Los Angeles, CA 90001" +218526,Apple Airpods Headphones,1,150,06/02/19 20:31,"753 Pine St, Dallas, TX 75001" +218527,34in Ultrawide Monitor,1,379.99,06/08/19 03:02,"411 Walnut St, San Francisco, CA 94016" +218528,Wired Headphones,1,11.99,06/28/19 14:42,"52 Adams St, San Francisco, CA 94016" +218529,Google Phone,1,600,06/07/19 08:09,"126 Highland St, San Francisco, CA 94016" +218530,USB-C Charging Cable,1,11.95,06/02/19 14:54,"158 Spruce St, San Francisco, CA 94016" +218531,ThinkPad Laptop,1,999.99,06/13/19 09:12,"687 Spruce St, Atlanta, GA 30301" +218532,Wired Headphones,1,11.99,06/26/19 11:23,"204 10th St, Boston, MA 02215" +218533,Bose SoundSport Headphones,1,99.99,06/21/19 09:15,"190 Meadow St, Seattle, WA 98101" +218534,AAA Batteries (4-pack),1,2.99,06/07/19 14:27,"590 West St, Portland, OR 97035" +218535,AAA Batteries (4-pack),1,2.99,06/09/19 20:03,"646 Highland St, Dallas, TX 75001" +218536,34in Ultrawide Monitor,1,379.99,06/28/19 11:24,"582 Willow St, New York City, NY 10001" +218537,Lightning Charging Cable,1,14.95,06/21/19 22:30,"219 Hickory St, Boston, MA 02215" +218538,iPhone,1,700,06/16/19 15:21,"550 Meadow St, San Francisco, CA 94016" +218538,Lightning Charging Cable,1,14.95,06/16/19 15:21,"550 Meadow St, San Francisco, CA 94016" +218539,Macbook Pro Laptop,1,1700,06/11/19 21:46,"708 Lincoln St, New York City, NY 10001" +218540,27in FHD Monitor,1,149.99,06/27/19 20:28,"510 10th St, Los Angeles, CA 90001" +218541,Apple Airpods Headphones,1,150,06/29/19 16:50,"315 Willow St, New York City, NY 10001" +218542,Macbook Pro Laptop,1,1700,06/13/19 10:19,"253 11th St, New York City, NY 10001" +218543,Flatscreen TV,1,300,06/07/19 13:22,"887 5th St, San Francisco, CA 94016" +218544,USB-C Charging Cable,1,11.95,06/04/19 18:44,"458 Washington St, New York City, NY 10001" +218545,Wired Headphones,1,11.99,06/03/19 16:31,"987 Pine St, Atlanta, GA 30301" +218546,Macbook Pro Laptop,1,1700,06/07/19 17:39,"78 Meadow St, Dallas, TX 75001" +218547,USB-C Charging Cable,1,11.95,06/07/19 09:18,"286 12th St, New York City, NY 10001" +218548,USB-C Charging Cable,1,11.95,06/05/19 18:10,"573 Highland St, Dallas, TX 75001" +218549,ThinkPad Laptop,1,999.99,06/09/19 08:22,"747 South St, Seattle, WA 98101" +218550,AA Batteries (4-pack),1,3.84,06/19/19 09:11,"885 Meadow St, New York City, NY 10001" +218551,Flatscreen TV,1,300,06/18/19 20:11,"646 Jackson St, Boston, MA 02215" +218552,34in Ultrawide Monitor,1,379.99,06/30/19 11:00,"136 6th St, San Francisco, CA 94016" +218553,AAA Batteries (4-pack),1,2.99,06/04/19 09:10,"926 Adams St, San Francisco, CA 94016" +218554,USB-C Charging Cable,1,11.95,06/06/19 17:29,"312 7th St, Atlanta, GA 30301" +218555,Lightning Charging Cable,1,14.95,06/09/19 10:01,"977 Lakeview St, New York City, NY 10001" +218556,34in Ultrawide Monitor,1,379.99,06/07/19 13:35,"356 Meadow St, San Francisco, CA 94016" +218557,AAA Batteries (4-pack),1,2.99,06/07/19 19:35,"431 7th St, Atlanta, GA 30301" +218558,Apple Airpods Headphones,1,150,06/07/19 17:45,"726 Hickory St, Dallas, TX 75001" +218559,Apple Airpods Headphones,1,150,06/14/19 15:04,"950 Adams St, Boston, MA 02215" +218560,Apple Airpods Headphones,1,150,06/26/19 17:17,"172 Walnut St, Los Angeles, CA 90001" +218561,Lightning Charging Cable,1,14.95,06/04/19 15:34,"405 West St, Seattle, WA 98101" +218562,Google Phone,1,600,06/28/19 23:45,"972 Jefferson St, Austin, TX 73301" +218563,AA Batteries (4-pack),1,3.84,06/30/19 08:27,"495 Johnson St, San Francisco, CA 94016" +218564,Bose SoundSport Headphones,1,99.99,06/07/19 10:16,"563 Jefferson St, New York City, NY 10001" +218565,Wired Headphones,1,11.99,06/13/19 15:06,"783 9th St, Los Angeles, CA 90001" +218566,Macbook Pro Laptop,1,1700,06/29/19 17:30,"864 Ridge St, Boston, MA 02215" +218567,27in 4K Gaming Monitor,1,389.99,06/26/19 17:45,"326 Center St, Dallas, TX 75001" +218568,AA Batteries (4-pack),2,3.84,06/10/19 21:30,"407 Dogwood St, Austin, TX 73301" +218569,AA Batteries (4-pack),1,3.84,06/26/19 21:08,"415 10th St, San Francisco, CA 94016" +218570,AAA Batteries (4-pack),1,2.99,06/22/19 22:25,"405 Lake St, Los Angeles, CA 90001" +218571,AAA Batteries (4-pack),1,2.99,06/27/19 10:35,"953 Wilson St, Boston, MA 02215" +218572,Wired Headphones,1,11.99,06/21/19 08:54,"970 Cherry St, New York City, NY 10001" +218573,Vareebadd Phone,1,400,06/24/19 20:20,"162 Madison St, San Francisco, CA 94016" +218573,USB-C Charging Cable,1,11.95,06/24/19 20:20,"162 Madison St, San Francisco, CA 94016" +218574,USB-C Charging Cable,1,11.95,06/04/19 15:42,"786 2nd St, Boston, MA 02215" +218575,USB-C Charging Cable,1,11.95,06/09/19 12:20,"594 1st St, Seattle, WA 98101" +218576,Apple Airpods Headphones,1,150,06/28/19 12:52,"919 Adams St, New York City, NY 10001" +218577,USB-C Charging Cable,1,11.95,06/08/19 20:42,"859 Hill St, San Francisco, CA 94016" +218578,Wired Headphones,1,11.99,06/17/19 13:58,"599 Meadow St, San Francisco, CA 94016" +218579,Macbook Pro Laptop,1,1700,06/29/19 20:57,"508 Church St, New York City, NY 10001" +218580,Wired Headphones,2,11.99,06/01/19 12:51,"737 Highland St, Boston, MA 02215" +218581,AAA Batteries (4-pack),1,2.99,06/29/19 23:25,"162 5th St, Portland, OR 97035" +218582,Vareebadd Phone,1,400,06/26/19 17:59,"346 11th St, San Francisco, CA 94016" +218583,Apple Airpods Headphones,1,150,06/07/19 21:56,"474 Main St, Dallas, TX 75001" +218584,ThinkPad Laptop,1,999.99,06/25/19 00:30,"771 Cherry St, New York City, NY 10001" +218585,USB-C Charging Cable,1,11.95,06/25/19 16:06,"137 Maple St, San Francisco, CA 94016" +218586,AA Batteries (4-pack),1,3.84,06/12/19 19:40,"287 Forest St, Boston, MA 02215" +218587,AAA Batteries (4-pack),3,2.99,06/25/19 12:09,"69 Forest St, New York City, NY 10001" +218588,AAA Batteries (4-pack),1,2.99,06/26/19 18:57,"764 9th St, Los Angeles, CA 90001" +218589,27in FHD Monitor,1,149.99,06/06/19 13:35,"687 Hill St, Atlanta, GA 30301" +218590,27in 4K Gaming Monitor,1,389.99,06/14/19 10:04,"993 Main St, Seattle, WA 98101" +218591,Flatscreen TV,1,300,06/03/19 09:06,"803 North St, Dallas, TX 75001" +218592,Bose SoundSport Headphones,1,99.99,06/04/19 14:36,"460 Sunset St, Atlanta, GA 30301" +218593,27in FHD Monitor,1,149.99,06/17/19 23:58,"436 Jackson St, New York City, NY 10001" +218594,Wired Headphones,1,11.99,06/02/19 21:02,"580 Washington St, Dallas, TX 75001" +218595,USB-C Charging Cable,2,11.95,06/01/19 08:06,"254 Park St, Dallas, TX 75001" +218596,USB-C Charging Cable,1,11.95,06/29/19 23:19,"462 2nd St, Dallas, TX 75001" +218597,Macbook Pro Laptop,1,1700,06/10/19 10:00,"106 West St, New York City, NY 10001" +218598,Bose SoundSport Headphones,1,99.99,06/13/19 12:34,"780 10th St, New York City, NY 10001" +218599,Google Phone,1,600,06/15/19 19:30,"841 4th St, San Francisco, CA 94016" +218600,USB-C Charging Cable,1,11.95,06/23/19 22:59,"53 14th St, San Francisco, CA 94016" +218601,AA Batteries (4-pack),1,3.84,06/21/19 14:55,"317 Maple St, Seattle, WA 98101" +218602,AA Batteries (4-pack),1,3.84,06/18/19 12:05,"651 Center St, Boston, MA 02215" +,,,,, +218603,27in FHD Monitor,1,149.99,06/03/19 14:35,"605 Pine St, San Francisco, CA 94016" +218604,Lightning Charging Cable,1,14.95,06/19/19 11:52,"722 13th St, Boston, MA 02215" +218605,Bose SoundSport Headphones,1,99.99,06/08/19 17:36,"269 Dogwood St, New York City, NY 10001" +218606,AA Batteries (4-pack),2,3.84,06/20/19 01:10,"846 10th St, Los Angeles, CA 90001" +218607,USB-C Charging Cable,1,11.95,06/13/19 07:19,"293 Lakeview St, Boston, MA 02215" +218608,AAA Batteries (4-pack),1,2.99,06/29/19 20:30,"522 Lakeview St, Atlanta, GA 30301" +218609,Wired Headphones,1,11.99,06/12/19 14:40,"882 7th St, New York City, NY 10001" +218610,AA Batteries (4-pack),1,3.84,06/03/19 11:11,"371 Hill St, Dallas, TX 75001" +218611,AA Batteries (4-pack),1,3.84,06/18/19 07:57,"328 8th St, San Francisco, CA 94016" +218612,Bose SoundSport Headphones,1,99.99,06/21/19 16:12,"69 11th St, Boston, MA 02215" +218613,Wired Headphones,1,11.99,06/29/19 11:14,"440 West St, San Francisco, CA 94016" +218614,Bose SoundSport Headphones,1,99.99,06/19/19 12:36,"811 6th St, Los Angeles, CA 90001" +218615,Flatscreen TV,1,300,06/05/19 19:01,"521 West St, San Francisco, CA 94016" +218616,Bose SoundSport Headphones,1,99.99,06/13/19 14:23,"200 Dogwood St, Portland, OR 97035" +218617,AAA Batteries (4-pack),1,2.99,06/27/19 09:27,"293 South St, Atlanta, GA 30301" +218618,AAA Batteries (4-pack),2,2.99,06/25/19 14:17,"588 11th St, New York City, NY 10001" +218619,USB-C Charging Cable,1,11.95,06/08/19 18:31,"26 9th St, Boston, MA 02215" +218620,27in FHD Monitor,1,149.99,06/23/19 09:19,"499 7th St, San Francisco, CA 94016" +218621,Lightning Charging Cable,1,14.95,06/15/19 18:47,"644 Lincoln St, New York City, NY 10001" +218622,27in 4K Gaming Monitor,1,389.99,06/05/19 00:31,"846 Spruce St, San Francisco, CA 94016" +218623,Wired Headphones,1,11.99,06/04/19 19:03,"192 Madison St, Seattle, WA 98101" +218624,Bose SoundSport Headphones,1,99.99,06/27/19 23:17,"993 Lincoln St, Los Angeles, CA 90001" +218625,Lightning Charging Cable,1,14.95,06/08/19 16:32,"342 Church St, Boston, MA 02215" +218626,27in 4K Gaming Monitor,1,389.99,06/20/19 15:02,"808 Jefferson St, Seattle, WA 98101" +218627,USB-C Charging Cable,1,11.95,06/22/19 19:39,"843 14th St, New York City, NY 10001" +218628,Flatscreen TV,1,300,06/06/19 19:13,"600 1st St, San Francisco, CA 94016" +218629,Lightning Charging Cable,1,14.95,06/10/19 14:27,"921 Center St, Los Angeles, CA 90001" +218630,Apple Airpods Headphones,1,150,06/17/19 16:15,"990 Johnson St, Seattle, WA 98101" +218631,AAA Batteries (4-pack),1,2.99,06/16/19 13:22,"689 Highland St, Los Angeles, CA 90001" +218632,iPhone,1,700,06/26/19 06:25,"524 Dogwood St, San Francisco, CA 94016" +218633,Lightning Charging Cable,1,14.95,06/13/19 21:46,"135 5th St, San Francisco, CA 94016" +218634,Lightning Charging Cable,1,14.95,06/04/19 17:32,"356 12th St, New York City, NY 10001" +218634,Apple Airpods Headphones,1,150,06/04/19 17:32,"356 12th St, New York City, NY 10001" +218635,USB-C Charging Cable,1,11.95,06/01/19 23:03,"715 Adams St, New York City, NY 10001" +218636,Bose SoundSport Headphones,1,99.99,06/22/19 19:32,"348 Forest St, Dallas, TX 75001" +218637,AA Batteries (4-pack),1,3.84,06/05/19 15:35,"861 Pine St, Portland, OR 97035" +218638,Wired Headphones,1,11.99,06/20/19 13:13,"581 Maple St, San Francisco, CA 94016" +218639,Vareebadd Phone,1,400,06/02/19 18:05,"324 8th St, Seattle, WA 98101" +218640,AA Batteries (4-pack),1,3.84,06/28/19 17:25,"160 Wilson St, New York City, NY 10001" +218641,USB-C Charging Cable,1,11.95,06/28/19 14:38,"817 Walnut St, New York City, NY 10001" +218642,AAA Batteries (4-pack),1,2.99,06/20/19 14:15,"537 Cherry St, New York City, NY 10001" +218643,AA Batteries (4-pack),1,3.84,06/24/19 20:19,"134 Johnson St, Dallas, TX 75001" +218644,ThinkPad Laptop,1,999.99,06/26/19 02:36,"942 Cherry St, Dallas, TX 75001" +218645,AA Batteries (4-pack),1,3.84,06/23/19 10:25,"762 Cedar St, San Francisco, CA 94016" +218646,iPhone,1,700,06/12/19 13:39,"352 Forest St, Los Angeles, CA 90001" +218647,AAA Batteries (4-pack),6,2.99,06/01/19 17:13,"590 Dogwood St, San Francisco, CA 94016" +218648,27in FHD Monitor,1,149.99,06/14/19 21:47,"383 Adams St, San Francisco, CA 94016" +218649,Flatscreen TV,1,300,06/19/19 12:45,"648 12th St, Austin, TX 73301" +218650,Macbook Pro Laptop,1,1700,06/20/19 23:41,"188 7th St, New York City, NY 10001" +218651,Vareebadd Phone,1,400,06/26/19 10:30,"358 Dogwood St, New York City, NY 10001" +218652,AA Batteries (4-pack),1,3.84,06/30/19 21:32,"576 Church St, Los Angeles, CA 90001" +218653,AA Batteries (4-pack),1,3.84,06/06/19 16:52,"765 8th St, Los Angeles, CA 90001" +218654,Apple Airpods Headphones,1,150,06/22/19 20:57,"228 Johnson St, Dallas, TX 75001" +218655,Wired Headphones,1,11.99,06/28/19 16:21,"932 Center St, Dallas, TX 75001" +218656,Lightning Charging Cable,1,14.95,06/22/19 19:56,"610 Maple St, San Francisco, CA 94016" +218657,USB-C Charging Cable,1,11.95,06/03/19 12:04,"870 Johnson St, San Francisco, CA 94016" +218658,AA Batteries (4-pack),1,3.84,06/16/19 23:24,"434 Maple St, Austin, TX 73301" +218659,Wired Headphones,1,11.99,06/28/19 20:50,"827 Adams St, Dallas, TX 75001" +218660,USB-C Charging Cable,1,11.95,06/01/19 21:31,"374 Hickory St, Atlanta, GA 30301" +218661,AAA Batteries (4-pack),2,2.99,06/26/19 20:48,"469 Lake St, Los Angeles, CA 90001" +218662,Lightning Charging Cable,1,14.95,06/05/19 05:59,"320 Cherry St, Dallas, TX 75001" +218663,Wired Headphones,1,11.99,06/05/19 12:03,"627 11th St, Portland, OR 97035" +218664,Bose SoundSport Headphones,1,99.99,06/19/19 17:33,"730 Lakeview St, New York City, NY 10001" +218665,AAA Batteries (4-pack),3,2.99,06/18/19 11:33,"479 Madison St, Atlanta, GA 30301" +218666,AA Batteries (4-pack),1,3.84,06/11/19 08:13,"758 4th St, New York City, NY 10001" +218667,Apple Airpods Headphones,1,150,06/06/19 12:58,"87 Meadow St, New York City, NY 10001" +218668,Google Phone,1,600,06/08/19 10:23,"250 River St, Los Angeles, CA 90001" +218669,Wired Headphones,1,11.99,06/03/19 11:37,"380 2nd St, San Francisco, CA 94016" +218670,20in Monitor,1,109.99,06/16/19 14:57,"892 Ridge St, Boston, MA 02215" +218671,AA Batteries (4-pack),1,3.84,06/07/19 20:54,"225 6th St, Los Angeles, CA 90001" +218672,Flatscreen TV,1,300,06/20/19 18:06,"461 Church St, Los Angeles, CA 90001" +218673,Google Phone,1,600,06/29/19 00:02,"546 Park St, Los Angeles, CA 90001" +218673,Wired Headphones,1,11.99,06/29/19 00:02,"546 Park St, Los Angeles, CA 90001" +218674,Bose SoundSport Headphones,1,99.99,06/12/19 23:46,"814 Lakeview St, Atlanta, GA 30301" +218675,Lightning Charging Cable,1,14.95,06/12/19 17:29,"396 Madison St, Atlanta, GA 30301" +218676,USB-C Charging Cable,1,11.95,06/25/19 19:23,"768 Hill St, Atlanta, GA 30301" +218677,Lightning Charging Cable,1,14.95,06/01/19 17:32,"18 Main St, San Francisco, CA 94016" +218678,USB-C Charging Cable,1,11.95,06/28/19 10:46,"353 Hickory St, New York City, NY 10001" +218679,Vareebadd Phone,1,400,06/01/19 21:40,"494 11th St, New York City, NY 10001" +218679,USB-C Charging Cable,1,11.95,06/01/19 21:40,"494 11th St, New York City, NY 10001" +218680,AA Batteries (4-pack),1,3.84,06/21/19 20:51,"968 West St, Austin, TX 73301" +218681,AA Batteries (4-pack),2,3.84,06/06/19 19:43,"271 Madison St, Atlanta, GA 30301" +218682,20in Monitor,1,109.99,06/13/19 14:18,"243 Walnut St, San Francisco, CA 94016" +218683,Wired Headphones,1,11.99,06/27/19 22:07,"206 Meadow St, San Francisco, CA 94016" +218684,34in Ultrawide Monitor,1,379.99,06/10/19 11:48,"272 Walnut St, San Francisco, CA 94016" +218685,AAA Batteries (4-pack),2,2.99,06/19/19 17:17,"217 12th St, San Francisco, CA 94016" +218685,ThinkPad Laptop,1,999.99,06/19/19 17:17,"217 12th St, San Francisco, CA 94016" +218686,USB-C Charging Cable,1,11.95,06/11/19 16:09,"22 Lincoln St, Los Angeles, CA 90001" +218687,AAA Batteries (4-pack),1,2.99,06/04/19 11:53,"979 Cherry St, Los Angeles, CA 90001" +218688,AA Batteries (4-pack),1,3.84,06/23/19 22:52,"367 Main St, Los Angeles, CA 90001" +218689,ThinkPad Laptop,1,999.99,06/27/19 13:08,"77 Pine St, Atlanta, GA 30301" +218690,Wired Headphones,1,11.99,06/06/19 22:15,"484 Cedar St, New York City, NY 10001" +218691,Macbook Pro Laptop,1,1700,06/25/19 14:43,"886 Dogwood St, Atlanta, GA 30301" +218692,AA Batteries (4-pack),1,3.84,06/26/19 16:06,"200 4th St, Boston, MA 02215" +218693,ThinkPad Laptop,1,999.99,06/23/19 21:57,"937 Maple St, Austin, TX 73301" +218694,Lightning Charging Cable,1,14.95,06/08/19 16:16,"114 12th St, New York City, NY 10001" +218695,AAA Batteries (4-pack),2,2.99,06/06/19 12:49,"32 9th St, New York City, NY 10001" +218696,AA Batteries (4-pack),1,3.84,06/07/19 19:55,"125 12th St, Atlanta, GA 30301" +218697,20in Monitor,1,109.99,06/12/19 20:28,"657 7th St, Boston, MA 02215" +218698,USB-C Charging Cable,1,11.95,06/29/19 14:26,"760 10th St, New York City, NY 10001" +218699,27in 4K Gaming Monitor,1,389.99,06/21/19 14:35,"333 Elm St, Los Angeles, CA 90001" +218700,Wired Headphones,1,11.99,06/12/19 11:58,"871 Ridge St, Los Angeles, CA 90001" +218701,Lightning Charging Cable,1,14.95,06/09/19 05:59,"4 Spruce St, Boston, MA 02215" +218702,Lightning Charging Cable,1,14.95,06/13/19 12:10,"520 Center St, Dallas, TX 75001" +218703,USB-C Charging Cable,1,11.95,06/08/19 17:05,"824 Church St, Seattle, WA 98101" +218704,AA Batteries (4-pack),2,3.84,06/21/19 18:52,"384 North St, New York City, NY 10001" +218705,20in Monitor,1,109.99,06/26/19 22:53,"568 Cedar St, San Francisco, CA 94016" +218706,Bose SoundSport Headphones,1,99.99,06/22/19 12:37,"668 5th St, Boston, MA 02215" +218707,Bose SoundSport Headphones,1,99.99,06/13/19 22:26,"1 13th St, Los Angeles, CA 90001" +218708,Vareebadd Phone,1,400,06/14/19 13:38,"272 10th St, Los Angeles, CA 90001" +218708,USB-C Charging Cable,1,11.95,06/14/19 13:38,"272 10th St, Los Angeles, CA 90001" +218709,Apple Airpods Headphones,1,150,06/16/19 20:12,"835 Lake St, Dallas, TX 75001" +218710,AAA Batteries (4-pack),3,2.99,06/02/19 17:09,"541 7th St, Atlanta, GA 30301" +218711,Wired Headphones,1,11.99,06/09/19 09:56,"19 Sunset St, Dallas, TX 75001" +218712,LG Washing Machine,1,600.0,06/30/19 10:54,"833 Cedar St, Seattle, WA 98101" +218713,Apple Airpods Headphones,1,150,06/13/19 07:39,"670 Pine St, Seattle, WA 98101" +218714,Lightning Charging Cable,2,14.95,06/08/19 08:42,"965 Jackson St, San Francisco, CA 94016" +218715,iPhone,1,700,06/25/19 16:35,"312 Jefferson St, Los Angeles, CA 90001" +218715,Lightning Charging Cable,1,14.95,06/25/19 16:35,"312 Jefferson St, Los Angeles, CA 90001" +218716,Lightning Charging Cable,1,14.95,06/18/19 10:31,"327 9th St, Portland, ME 04101" +218717,iPhone,1,700,06/13/19 19:17,"92 13th St, San Francisco, CA 94016" +218717,Lightning Charging Cable,1,14.95,06/13/19 19:17,"92 13th St, San Francisco, CA 94016" +218718,AAA Batteries (4-pack),1,2.99,06/17/19 09:10,"181 11th St, San Francisco, CA 94016" +218719,AAA Batteries (4-pack),1,2.99,06/26/19 18:32,"890 Sunset St, New York City, NY 10001" +218720,AAA Batteries (4-pack),2,2.99,06/29/19 23:10,"883 Lincoln St, New York City, NY 10001" +218721,USB-C Charging Cable,1,11.95,06/27/19 16:43,"908 5th St, Dallas, TX 75001" +218721,Wired Headphones,1,11.99,06/27/19 16:43,"908 5th St, Dallas, TX 75001" +218722,Lightning Charging Cable,1,14.95,06/09/19 07:29,"317 Meadow St, Boston, MA 02215" +218723,Lightning Charging Cable,1,14.95,06/08/19 22:20,"519 Cedar St, Boston, MA 02215" +218724,Bose SoundSport Headphones,1,99.99,06/05/19 15:23,"384 Meadow St, Portland, OR 97035" +218725,AAA Batteries (4-pack),1,2.99,06/07/19 15:54,"691 Hill St, New York City, NY 10001" +218726,USB-C Charging Cable,1,11.95,06/05/19 12:25,"121 Forest St, Portland, OR 97035" +218727,Bose SoundSport Headphones,1,99.99,06/15/19 18:09,"389 North St, Los Angeles, CA 90001" +218728,Lightning Charging Cable,1,14.95,06/11/19 14:21,"842 Spruce St, New York City, NY 10001" +218729,27in 4K Gaming Monitor,1,389.99,06/27/19 20:24,"148 Jackson St, San Francisco, CA 94016" +218730,27in 4K Gaming Monitor,1,389.99,06/07/19 23:06,"17 Hickory St, Atlanta, GA 30301" +218731,USB-C Charging Cable,1,11.95,06/08/19 14:36,"936 Forest St, Atlanta, GA 30301" +218732,AAA Batteries (4-pack),2,2.99,06/20/19 10:36,"945 Hill St, Seattle, WA 98101" +218733,USB-C Charging Cable,1,11.95,06/21/19 01:18,"835 Forest St, Los Angeles, CA 90001" +218734,AA Batteries (4-pack),1,3.84,06/19/19 01:19,"944 Walnut St, San Francisco, CA 94016" +218735,Lightning Charging Cable,1,14.95,06/03/19 09:27,"592 Dogwood St, Atlanta, GA 30301" +218736,AAA Batteries (4-pack),1,2.99,06/01/19 15:23,"588 6th St, New York City, NY 10001" +218737,AAA Batteries (4-pack),1,2.99,06/27/19 15:52,"669 Highland St, Atlanta, GA 30301" +,,,,, +218738,27in FHD Monitor,1,149.99,06/23/19 00:49,"966 6th St, San Francisco, CA 94016" +218739,Bose SoundSport Headphones,1,99.99,06/12/19 15:43,"934 Maple St, New York City, NY 10001" +218740,27in FHD Monitor,1,149.99,06/29/19 20:12,"452 12th St, Atlanta, GA 30301" +218741,Macbook Pro Laptop,1,1700,06/07/19 19:28,"361 Church St, Atlanta, GA 30301" +218742,ThinkPad Laptop,1,999.99,06/19/19 21:48,"328 11th St, San Francisco, CA 94016" +218743,Macbook Pro Laptop,1,1700,06/04/19 14:25,"370 14th St, New York City, NY 10001" +218744,ThinkPad Laptop,1,999.99,06/27/19 18:25,"54 Highland St, San Francisco, CA 94016" +218745,AAA Batteries (4-pack),1,2.99,06/05/19 09:09,"950 5th St, Austin, TX 73301" +218746,USB-C Charging Cable,1,11.95,06/27/19 18:16,"801 Forest St, Austin, TX 73301" +218747,Bose SoundSport Headphones,1,99.99,06/03/19 12:54,"218 Dogwood St, Atlanta, GA 30301" +218748,Apple Airpods Headphones,1,150,06/05/19 11:07,"573 Maple St, Boston, MA 02215" +218749,AAA Batteries (4-pack),1,2.99,06/18/19 08:50,"118 Park St, Los Angeles, CA 90001" +218750,USB-C Charging Cable,1,11.95,06/12/19 11:36,"191 Church St, Atlanta, GA 30301" +218751,Google Phone,1,600,06/13/19 14:21,"727 Johnson St, Seattle, WA 98101" +218752,AAA Batteries (4-pack),1,2.99,06/12/19 14:35,"852 Center St, Portland, OR 97035" +218753,USB-C Charging Cable,1,11.95,06/07/19 11:18,"291 Main St, San Francisco, CA 94016" +218754,Apple Airpods Headphones,1,150,06/12/19 18:35,"494 Spruce St, Boston, MA 02215" +218755,AAA Batteries (4-pack),1,2.99,06/23/19 12:40,"755 6th St, Los Angeles, CA 90001" +218756,Apple Airpods Headphones,1,150,06/18/19 16:30,"490 4th St, Austin, TX 73301" +218757,20in Monitor,1,109.99,06/11/19 12:09,"840 Spruce St, New York City, NY 10001" +218758,Lightning Charging Cable,1,14.95,06/06/19 20:01,"158 13th St, Los Angeles, CA 90001" +218759,AAA Batteries (4-pack),1,2.99,06/10/19 20:38,"568 Walnut St, Atlanta, GA 30301" +218760,iPhone,1,700,06/10/19 21:58,"93 Cedar St, Boston, MA 02215" +218760,Apple Airpods Headphones,1,150,06/10/19 21:58,"93 Cedar St, Boston, MA 02215" +218761,Bose SoundSport Headphones,1,99.99,06/26/19 22:34,"350 Chestnut St, Austin, TX 73301" +218762,Wired Headphones,2,11.99,06/18/19 18:35,"73 Lake St, Dallas, TX 75001" +218763,Lightning Charging Cable,1,14.95,06/11/19 12:36,"839 11th St, New York City, NY 10001" +218764,AAA Batteries (4-pack),1,2.99,06/19/19 15:23,"332 Church St, New York City, NY 10001" +218765,iPhone,1,700,06/15/19 11:14,"96 Walnut St, New York City, NY 10001" +218766,34in Ultrawide Monitor,1,379.99,06/20/19 10:13,"284 Lincoln St, Los Angeles, CA 90001" +218767,Wired Headphones,1,11.99,06/22/19 10:21,"769 7th St, New York City, NY 10001" +218768,34in Ultrawide Monitor,1,379.99,06/26/19 12:11,"21 Highland St, New York City, NY 10001" +218769,Bose SoundSport Headphones,1,99.99,06/11/19 15:12,"500 1st St, Portland, OR 97035" +218770,Apple Airpods Headphones,1,150,06/14/19 22:25,"392 Wilson St, Austin, TX 73301" +218771,34in Ultrawide Monitor,1,379.99,06/12/19 20:36,"360 12th St, San Francisco, CA 94016" +218772,Lightning Charging Cable,1,14.95,06/18/19 06:14,"877 1st St, Boston, MA 02215" +218773,Bose SoundSport Headphones,1,99.99,06/08/19 12:26,"316 Sunset St, San Francisco, CA 94016" +218774,AA Batteries (4-pack),1,3.84,06/05/19 08:41,"858 Hill St, Boston, MA 02215" +218775,Wired Headphones,1,11.99,06/07/19 17:24,"40 Chestnut St, Portland, OR 97035" +218776,Apple Airpods Headphones,1,150,06/02/19 20:25,"100 Spruce St, Dallas, TX 75001" +218777,AA Batteries (4-pack),1,3.84,06/03/19 10:04,"467 Center St, San Francisco, CA 94016" +218778,AAA Batteries (4-pack),1,2.99,06/02/19 20:47,"174 Madison St, Los Angeles, CA 90001" +218779,27in FHD Monitor,1,149.99,06/09/19 16:37,"847 Center St, Portland, ME 04101" +218780,20in Monitor,1,109.99,06/11/19 15:49,"178 Lakeview St, Seattle, WA 98101" +218781,iPhone,1,700,06/18/19 19:02,"176 Jackson St, San Francisco, CA 94016" +218781,Lightning Charging Cable,1,14.95,06/18/19 19:02,"176 Jackson St, San Francisco, CA 94016" +218782,Lightning Charging Cable,1,14.95,06/24/19 19:52,"696 9th St, Boston, MA 02215" +218783,Flatscreen TV,1,300,06/01/19 11:57,"62 Dogwood St, San Francisco, CA 94016" +218784,ThinkPad Laptop,1,999.99,06/24/19 20:26,"305 2nd St, Los Angeles, CA 90001" +218785,AAA Batteries (4-pack),1,2.99,06/28/19 11:41,"388 Wilson St, New York City, NY 10001" +218786,Wired Headphones,1,11.99,06/09/19 18:37,"877 Main St, New York City, NY 10001" +218787,AA Batteries (4-pack),3,3.84,06/07/19 22:50,"164 Madison St, Seattle, WA 98101" +218788,20in Monitor,1,109.99,06/06/19 18:33,"437 Willow St, Atlanta, GA 30301" +218789,27in FHD Monitor,1,149.99,06/16/19 17:38,"549 9th St, Los Angeles, CA 90001" +218790,AA Batteries (4-pack),1,3.84,06/08/19 03:59,"711 Park St, Atlanta, GA 30301" +218791,Lightning Charging Cable,1,14.95,06/10/19 18:43,"304 Lakeview St, San Francisco, CA 94016" +218792,Flatscreen TV,1,300,06/16/19 21:33,"858 4th St, Los Angeles, CA 90001" +218793,USB-C Charging Cable,1,11.95,06/16/19 15:03,"14 Johnson St, New York City, NY 10001" +218794,Apple Airpods Headphones,1,150,06/24/19 19:17,"306 Johnson St, Atlanta, GA 30301" +218795,Google Phone,1,600,06/09/19 11:36,"173 1st St, Portland, OR 97035" +218796,AAA Batteries (4-pack),1,2.99,06/24/19 18:15,"998 Ridge St, San Francisco, CA 94016" +218797,AAA Batteries (4-pack),1,2.99,06/09/19 19:52,"742 Main St, Boston, MA 02215" +218798,iPhone,1,700,06/13/19 08:18,"440 Cherry St, Seattle, WA 98101" +218798,Wired Headphones,1,11.99,06/13/19 08:18,"440 Cherry St, Seattle, WA 98101" +218799,Bose SoundSport Headphones,1,99.99,06/20/19 20:14,"603 Cherry St, San Francisco, CA 94016" +218800,Lightning Charging Cable,1,14.95,06/25/19 09:58,"445 Johnson St, Atlanta, GA 30301" +218801,AA Batteries (4-pack),1,3.84,06/06/19 05:37,"828 7th St, Los Angeles, CA 90001" +218802,Apple Airpods Headphones,1,150,06/01/19 17:44,"208 Lincoln St, Atlanta, GA 30301" +218803,Wired Headphones,1,11.99,06/12/19 16:23,"586 Lincoln St, Atlanta, GA 30301" +218804,AA Batteries (4-pack),1,3.84,06/01/19 12:23,"229 Center St, Austin, TX 73301" +218805,Lightning Charging Cable,1,14.95,06/30/19 12:12,"621 4th St, San Francisco, CA 94016" +218806,AAA Batteries (4-pack),1,2.99,06/20/19 08:16,"476 Meadow St, Dallas, TX 75001" +218807,Bose SoundSport Headphones,1,99.99,06/14/19 14:25,"854 Wilson St, San Francisco, CA 94016" +218808,Google Phone,1,600,06/12/19 18:11,"710 Lincoln St, San Francisco, CA 94016" +218809,Wired Headphones,2,11.99,06/30/19 16:57,"755 West St, New York City, NY 10001" +218810,AA Batteries (4-pack),1,3.84,06/21/19 20:01,"653 Park St, San Francisco, CA 94016" +218811,USB-C Charging Cable,1,11.95,06/03/19 20:59,"955 Elm St, Los Angeles, CA 90001" +218812,20in Monitor,1,109.99,06/15/19 06:29,"362 River St, Seattle, WA 98101" +218813,20in Monitor,1,109.99,06/07/19 19:56,"13 Ridge St, San Francisco, CA 94016" +218814,Bose SoundSport Headphones,1,99.99,06/01/19 17:11,"71 Hickory St, Dallas, TX 75001" +218815,AA Batteries (4-pack),1,3.84,06/30/19 17:38,"721 Main St, San Francisco, CA 94016" +218816,AAA Batteries (4-pack),1,2.99,06/28/19 12:54,"603 River St, Dallas, TX 75001" +218817,AAA Batteries (4-pack),1,2.99,06/27/19 22:29,"886 Cedar St, San Francisco, CA 94016" +218818,Bose SoundSport Headphones,1,99.99,06/25/19 22:29,"865 9th St, San Francisco, CA 94016" +218819,Wired Headphones,1,11.99,06/21/19 13:37,"435 Dogwood St, Los Angeles, CA 90001" +218820,AA Batteries (4-pack),2,3.84,06/15/19 13:14,"667 Elm St, San Francisco, CA 94016" +218821,27in FHD Monitor,1,149.99,06/21/19 22:51,"846 Walnut St, San Francisco, CA 94016" +218822,AA Batteries (4-pack),3,3.84,06/28/19 18:41,"891 Highland St, Atlanta, GA 30301" +218823,Vareebadd Phone,1,400,06/23/19 05:14,"182 Willow St, Atlanta, GA 30301" +218824,Lightning Charging Cable,1,14.95,06/24/19 20:15,"999 13th St, New York City, NY 10001" +218825,Bose SoundSport Headphones,1,99.99,06/09/19 10:16,"529 Pine St, San Francisco, CA 94016" +218826,27in 4K Gaming Monitor,1,389.99,06/26/19 21:06,"336 Meadow St, Portland, OR 97035" +218827,Wired Headphones,1,11.99,06/08/19 21:49,"141 Johnson St, Dallas, TX 75001" +218828,Bose SoundSport Headphones,1,99.99,06/02/19 15:20,"13 Park St, Los Angeles, CA 90001" +218829,AA Batteries (4-pack),1,3.84,06/29/19 17:54,"147 Center St, Austin, TX 73301" +218830,Bose SoundSport Headphones,1,99.99,06/28/19 14:23,"555 Forest St, New York City, NY 10001" +218831,27in FHD Monitor,1,149.99,06/12/19 11:25,"321 6th St, Atlanta, GA 30301" +218832,Vareebadd Phone,1,400,06/06/19 10:23,"69 12th St, New York City, NY 10001" +218833,AA Batteries (4-pack),1,3.84,06/30/19 21:06,"439 River St, Dallas, TX 75001" +218834,USB-C Charging Cable,2,11.95,06/21/19 11:03,"575 Spruce St, Dallas, TX 75001" +218835,Bose SoundSport Headphones,1,99.99,06/07/19 10:10,"40 Cherry St, Seattle, WA 98101" +218836,USB-C Charging Cable,1,11.95,06/17/19 14:08,"605 Dogwood St, San Francisco, CA 94016" +218837,AAA Batteries (4-pack),1,2.99,06/02/19 19:32,"260 Cherry St, Atlanta, GA 30301" +218838,AA Batteries (4-pack),1,3.84,06/05/19 08:25,"369 Adams St, Atlanta, GA 30301" +218839,Lightning Charging Cable,2,14.95,06/10/19 10:10,"543 Hickory St, Los Angeles, CA 90001" +218840,USB-C Charging Cable,1,11.95,06/19/19 15:15,"825 9th St, San Francisco, CA 94016" +218841,AA Batteries (4-pack),1,3.84,06/15/19 03:01,"307 Jefferson St, Seattle, WA 98101" +218842,Google Phone,1,600,06/09/19 07:50,"561 7th St, San Francisco, CA 94016" +218843,Macbook Pro Laptop,1,1700,06/14/19 09:47,"692 Church St, San Francisco, CA 94016" +218844,AAA Batteries (4-pack),1,2.99,06/10/19 19:53,"295 Lakeview St, Atlanta, GA 30301" +218845,AA Batteries (4-pack),2,3.84,06/27/19 12:20,"322 Jefferson St, New York City, NY 10001" +218846,Google Phone,1,600,06/10/19 18:26,"775 Madison St, San Francisco, CA 94016" +218847,Lightning Charging Cable,1,14.95,06/10/19 17:51,"811 Spruce St, Portland, OR 97035" +218848,Apple Airpods Headphones,1,150,06/17/19 11:39,"583 Center St, Los Angeles, CA 90001" +218849,USB-C Charging Cable,1,11.95,06/01/19 21:37,"352 Lakeview St, Los Angeles, CA 90001" +218850,27in 4K Gaming Monitor,1,389.99,06/28/19 21:43,"621 Lakeview St, Seattle, WA 98101" +218851,Lightning Charging Cable,1,14.95,06/07/19 06:40,"390 Wilson St, Atlanta, GA 30301" +218852,Bose SoundSport Headphones,1,99.99,06/10/19 18:46,"74 Meadow St, Dallas, TX 75001" +218853,27in FHD Monitor,1,149.99,06/12/19 09:18,"816 14th St, Seattle, WA 98101" +218854,AA Batteries (4-pack),1,3.84,06/05/19 10:40,"532 South St, San Francisco, CA 94016" +218855,Bose SoundSport Headphones,1,99.99,06/20/19 12:41,"941 Walnut St, Los Angeles, CA 90001" +218856,Lightning Charging Cable,1,14.95,06/21/19 12:20,"114 Hill St, San Francisco, CA 94016" +218857,Bose SoundSport Headphones,1,99.99,06/13/19 08:36,"338 Jefferson St, Dallas, TX 75001" +218858,Lightning Charging Cable,1,14.95,06/18/19 21:26,"803 10th St, New York City, NY 10001" +218859,USB-C Charging Cable,1,11.95,06/14/19 01:18,"814 Pine St, Los Angeles, CA 90001" +218860,27in 4K Gaming Monitor,1,389.99,06/10/19 20:25,"707 Jackson St, Boston, MA 02215" +218861,34in Ultrawide Monitor,1,379.99,06/11/19 15:44,"973 Willow St, San Francisco, CA 94016" +218862,Apple Airpods Headphones,1,150,06/16/19 15:24,"656 Maple St, New York City, NY 10001" +218863,Lightning Charging Cable,1,14.95,06/23/19 07:18,"421 Madison St, San Francisco, CA 94016" +218864,Wired Headphones,1,11.99,06/05/19 19:15,"680 Sunset St, San Francisco, CA 94016" +218865,34in Ultrawide Monitor,1,379.99,06/05/19 22:26,"368 Lincoln St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +218866,Bose SoundSport Headphones,1,99.99,06/02/19 21:18,"21 Cedar St, Los Angeles, CA 90001" +218867,Lightning Charging Cable,1,14.95,06/24/19 15:14,"423 Center St, Dallas, TX 75001" +218868,27in 4K Gaming Monitor,1,389.99,06/23/19 11:10,"654 5th St, San Francisco, CA 94016" +218869,Wired Headphones,2,11.99,06/19/19 15:32,"996 Hill St, San Francisco, CA 94016" +218870,Lightning Charging Cable,1,14.95,06/25/19 13:34,"49 5th St, Atlanta, GA 30301" +218871,34in Ultrawide Monitor,1,379.99,06/10/19 21:24,"186 4th St, Boston, MA 02215" +218872,Bose SoundSport Headphones,1,99.99,06/17/19 19:08,"266 Wilson St, Boston, MA 02215" +218873,USB-C Charging Cable,1,11.95,06/07/19 17:03,"497 9th St, Portland, OR 97035" +218874,Lightning Charging Cable,1,14.95,06/07/19 17:16,"955 12th St, New York City, NY 10001" +218874,ThinkPad Laptop,1,999.99,06/07/19 17:16,"955 12th St, New York City, NY 10001" +218875,USB-C Charging Cable,2,11.95,06/06/19 09:42,"467 Ridge St, New York City, NY 10001" +218876,Apple Airpods Headphones,1,150,06/23/19 11:26,"823 7th St, San Francisco, CA 94016" +218877,Macbook Pro Laptop,1,1700,06/07/19 16:02,"75 Hickory St, Boston, MA 02215" +218878,Wired Headphones,1,11.99,06/19/19 09:53,"412 Park St, Atlanta, GA 30301" +218879,Wired Headphones,2,11.99,06/13/19 13:09,"101 Pine St, Los Angeles, CA 90001" +218880,AA Batteries (4-pack),1,3.84,06/06/19 12:07,"528 8th St, New York City, NY 10001" +218881,ThinkPad Laptop,1,999.99,06/08/19 22:55,"479 Johnson St, San Francisco, CA 94016" +218882,AAA Batteries (4-pack),1,2.99,06/25/19 22:44,"951 North St, Los Angeles, CA 90001" +218882,AA Batteries (4-pack),2,3.84,06/25/19 22:44,"951 North St, Los Angeles, CA 90001" +218883,Lightning Charging Cable,1,14.95,06/22/19 13:44,"560 Dogwood St, San Francisco, CA 94016" +218884,AA Batteries (4-pack),2,3.84,06/11/19 09:28,"311 Meadow St, Atlanta, GA 30301" +218885,Wired Headphones,1,11.99,06/10/19 20:07,"884 Main St, New York City, NY 10001" +218886,Lightning Charging Cable,1,14.95,06/22/19 18:09,"717 Forest St, Los Angeles, CA 90001" +218887,34in Ultrawide Monitor,1,379.99,06/01/19 22:06,"426 Lakeview St, San Francisco, CA 94016" +218888,AA Batteries (4-pack),1,3.84,06/17/19 13:14,"216 River St, Seattle, WA 98101" +218889,Flatscreen TV,1,300,06/13/19 14:20,"479 13th St, Boston, MA 02215" +218890,LG Washing Machine,1,600.0,06/11/19 21:07,"543 South St, Portland, OR 97035" +218891,27in FHD Monitor,1,149.99,06/29/19 12:36,"28 7th St, Seattle, WA 98101" +218892,Bose SoundSport Headphones,1,99.99,06/29/19 00:56,"575 Hill St, San Francisco, CA 94016" +218893,Apple Airpods Headphones,1,150,06/08/19 10:57,"103 Forest St, New York City, NY 10001" +218894,Apple Airpods Headphones,1,150,06/17/19 20:46,"415 Hill St, Los Angeles, CA 90001" +218895,ThinkPad Laptop,1,999.99,06/25/19 13:23,"722 North St, Seattle, WA 98101" +218896,Lightning Charging Cable,1,14.95,06/25/19 23:55,"54 2nd St, Los Angeles, CA 90001" +218897,USB-C Charging Cable,1,11.95,06/08/19 15:27,"741 14th St, Portland, ME 04101" +218898,AAA Batteries (4-pack),2,2.99,06/20/19 01:49,"677 Johnson St, Atlanta, GA 30301" +218899,Bose SoundSport Headphones,1,99.99,06/29/19 10:50,"263 7th St, Seattle, WA 98101" +218900,AAA Batteries (4-pack),1,2.99,06/14/19 07:20,"409 11th St, Los Angeles, CA 90001" +218901,Macbook Pro Laptop,1,1700,06/17/19 15:02,"785 Lake St, Boston, MA 02215" +218902,27in FHD Monitor,1,149.99,06/13/19 06:57,"890 11th St, San Francisco, CA 94016" +218903,Lightning Charging Cable,1,14.95,06/02/19 12:58,"643 River St, San Francisco, CA 94016" +218904,Macbook Pro Laptop,1,1700,06/02/19 21:13,"393 Center St, Boston, MA 02215" +218905,Bose SoundSport Headphones,1,99.99,06/25/19 18:26,"527 7th St, Seattle, WA 98101" +218906,Lightning Charging Cable,1,14.95,06/02/19 12:54,"660 7th St, Los Angeles, CA 90001" +218907,Lightning Charging Cable,1,14.95,06/17/19 11:10,"291 North St, San Francisco, CA 94016" +218908,Wired Headphones,1,11.99,06/04/19 12:36,"505 Center St, San Francisco, CA 94016" +218909,AA Batteries (4-pack),2,3.84,06/15/19 12:47,"400 North St, Los Angeles, CA 90001" +218910,AA Batteries (4-pack),1,3.84,06/23/19 07:03,"791 Johnson St, San Francisco, CA 94016" +218911,AAA Batteries (4-pack),2,2.99,06/10/19 13:58,"163 West St, Austin, TX 73301" +218912,AAA Batteries (4-pack),1,2.99,06/03/19 11:52,"160 Hickory St, New York City, NY 10001" +218913,AA Batteries (4-pack),1,3.84,06/20/19 12:57,"240 Willow St, Los Angeles, CA 90001" +218914,AA Batteries (4-pack),3,3.84,06/26/19 13:57,"665 Hill St, Seattle, WA 98101" +218915,iPhone,1,700,06/05/19 13:39,"885 Center St, Dallas, TX 75001" +218916,Apple Airpods Headphones,1,150,06/22/19 12:10,"327 4th St, San Francisco, CA 94016" +218916,AAA Batteries (4-pack),1,2.99,06/22/19 12:10,"327 4th St, San Francisco, CA 94016" +218917,Macbook Pro Laptop,1,1700,06/18/19 16:19,"406 5th St, San Francisco, CA 94016" +218918,Lightning Charging Cable,1,14.95,06/11/19 14:20,"783 Main St, San Francisco, CA 94016" +218919,AAA Batteries (4-pack),2,2.99,06/15/19 09:14,"491 Washington St, Atlanta, GA 30301" +218920,USB-C Charging Cable,1,11.95,06/30/19 14:05,"283 Center St, Atlanta, GA 30301" +218921,Bose SoundSport Headphones,1,99.99,06/03/19 17:23,"723 Sunset St, New York City, NY 10001" +218922,Wired Headphones,1,11.99,06/01/19 17:09,"830 10th St, San Francisco, CA 94016" +218923,Macbook Pro Laptop,1,1700,06/21/19 22:08,"234 Church St, Atlanta, GA 30301" +218924,AAA Batteries (4-pack),1,2.99,06/27/19 19:35,"178 West St, San Francisco, CA 94016" +218925,AAA Batteries (4-pack),1,2.99,06/03/19 15:06,"223 Washington St, Los Angeles, CA 90001" +218926,Apple Airpods Headphones,1,150,06/30/19 08:14,"884 West St, Portland, ME 04101" +218927,Lightning Charging Cable,1,14.95,06/01/19 12:38,"492 5th St, San Francisco, CA 94016" +218928,Bose SoundSport Headphones,1,99.99,06/28/19 11:02,"443 Jackson St, Dallas, TX 75001" +218929,LG Dryer,1,600.0,06/21/19 18:53,"372 Washington St, Portland, OR 97035" +218929,Wired Headphones,1,11.99,06/21/19 18:53,"372 Washington St, Portland, OR 97035" +218930,34in Ultrawide Monitor,1,379.99,06/13/19 02:07,"90 West St, San Francisco, CA 94016" +218931,USB-C Charging Cable,1,11.95,06/16/19 00:23,"976 Adams St, San Francisco, CA 94016" +218932,20in Monitor,1,109.99,06/19/19 20:41,"302 Washington St, Los Angeles, CA 90001" +218933,27in 4K Gaming Monitor,1,389.99,06/22/19 19:51,"322 6th St, Los Angeles, CA 90001" +218934,Wired Headphones,1,11.99,06/26/19 22:15,"543 8th St, San Francisco, CA 94016" +218935,Flatscreen TV,1,300,06/15/19 00:11,"333 1st St, Boston, MA 02215" +218936,Lightning Charging Cable,1,14.95,06/26/19 15:37,"816 River St, San Francisco, CA 94016" +218937,20in Monitor,1,109.99,06/10/19 00:09,"412 Meadow St, Atlanta, GA 30301" +218938,Wired Headphones,1,11.99,06/02/19 10:49,"337 Hill St, San Francisco, CA 94016" +218939,20in Monitor,1,109.99,06/28/19 17:56,"284 Park St, Portland, OR 97035" +218940,Lightning Charging Cable,1,14.95,06/30/19 09:59,"187 Meadow St, New York City, NY 10001" +218941,Macbook Pro Laptop,1,1700,06/05/19 23:23,"477 South St, Austin, TX 73301" +218942,Vareebadd Phone,1,400,06/30/19 21:46,"439 Chestnut St, New York City, NY 10001" +218943,USB-C Charging Cable,1,11.95,06/22/19 11:48,"173 13th St, San Francisco, CA 94016" +218944,AAA Batteries (4-pack),1,2.99,06/02/19 21:10,"366 Willow St, San Francisco, CA 94016" +218945,27in FHD Monitor,1,149.99,06/03/19 15:36,"229 Madison St, San Francisco, CA 94016" +218946,Bose SoundSport Headphones,1,99.99,06/09/19 19:46,"905 Forest St, Portland, OR 97035" +218947,Lightning Charging Cable,1,14.95,06/29/19 13:30,"234 Meadow St, Seattle, WA 98101" +218948,Bose SoundSport Headphones,1,99.99,06/01/19 16:02,"561 6th St, Boston, MA 02215" +218949,USB-C Charging Cable,1,11.95,06/15/19 00:25,"88 1st St, New York City, NY 10001" +218950,AA Batteries (4-pack),1,3.84,06/19/19 22:19,"101 North St, Los Angeles, CA 90001" +218951,Bose SoundSport Headphones,1,99.99,06/16/19 19:34,"570 Center St, Austin, TX 73301" +218952,Lightning Charging Cable,1,14.95,06/23/19 00:27,"378 Johnson St, Atlanta, GA 30301" +218953,Lightning Charging Cable,1,14.95,06/09/19 13:38,"767 Park St, Boston, MA 02215" +218954,USB-C Charging Cable,1,11.95,06/10/19 23:50,"756 South St, San Francisco, CA 94016" +218955,Lightning Charging Cable,1,14.95,06/17/19 12:46,"303 River St, San Francisco, CA 94016" +218956,Lightning Charging Cable,1,14.95,06/18/19 14:14,"212 River St, San Francisco, CA 94016" +218957,Bose SoundSport Headphones,1,99.99,06/29/19 12:12,"666 Wilson St, Atlanta, GA 30301" +218958,Wired Headphones,1,11.99,06/27/19 23:15,"435 11th St, Portland, OR 97035" +218959,34in Ultrawide Monitor,1,379.99,06/04/19 19:21,"745 Maple St, Boston, MA 02215" +218960,Bose SoundSport Headphones,1,99.99,06/07/19 00:18,"258 Pine St, New York City, NY 10001" +218961,ThinkPad Laptop,1,999.99,06/26/19 23:07,"660 Washington St, San Francisco, CA 94016" +218962,Apple Airpods Headphones,1,150,06/19/19 15:00,"618 Hill St, Portland, OR 97035" +218963,LG Dryer,1,600.0,06/13/19 14:07,"166 Jackson St, San Francisco, CA 94016" +218964,AA Batteries (4-pack),2,3.84,06/21/19 10:03,"820 8th St, Seattle, WA 98101" +218965,Wired Headphones,1,11.99,06/05/19 16:14,"179 Cherry St, Austin, TX 73301" +218966,USB-C Charging Cable,1,11.95,06/03/19 10:13,"85 Lake St, Atlanta, GA 30301" +218967,Apple Airpods Headphones,1,150,06/04/19 09:24,"280 South St, Boston, MA 02215" +218968,AAA Batteries (4-pack),3,2.99,06/10/19 19:23,"572 River St, Los Angeles, CA 90001" +218969,USB-C Charging Cable,1,11.95,06/02/19 11:00,"691 Forest St, New York City, NY 10001" +218970,AA Batteries (4-pack),1,3.84,06/13/19 13:06,"200 Hickory St, Seattle, WA 98101" +218971,20in Monitor,1,109.99,06/30/19 10:13,"168 Walnut St, New York City, NY 10001" +218972,AAA Batteries (4-pack),1,2.99,06/27/19 11:57,"598 Hickory St, Portland, OR 97035" +218973,USB-C Charging Cable,1,11.95,06/26/19 21:49,"794 2nd St, New York City, NY 10001" +218974,Macbook Pro Laptop,1,1700,06/25/19 11:15,"465 11th St, Los Angeles, CA 90001" +218975,27in FHD Monitor,1,149.99,06/17/19 21:55,"205 Park St, San Francisco, CA 94016" +218976,AAA Batteries (4-pack),1,2.99,06/25/19 16:18,"379 Ridge St, New York City, NY 10001" +218977,AAA Batteries (4-pack),1,2.99,06/24/19 07:49,"21 Pine St, Boston, MA 02215" +218978,Wired Headphones,1,11.99,06/03/19 17:56,"777 Church St, Atlanta, GA 30301" +218979,Bose SoundSport Headphones,1,99.99,06/01/19 18:09,"941 North St, San Francisco, CA 94016" +218980,AA Batteries (4-pack),1,3.84,06/18/19 20:51,"975 14th St, Portland, OR 97035" +218981,AAA Batteries (4-pack),1,2.99,06/30/19 20:05,"676 Willow St, San Francisco, CA 94016" +218982,27in 4K Gaming Monitor,1,389.99,06/10/19 16:09,"600 Lakeview St, Atlanta, GA 30301" +218983,Apple Airpods Headphones,1,150,06/14/19 23:12,"957 Madison St, Austin, TX 73301" +218984,Wired Headphones,1,11.99,06/06/19 16:50,"977 14th St, Atlanta, GA 30301" +218985,USB-C Charging Cable,1,11.95,06/12/19 17:55,"789 10th St, Boston, MA 02215" +218986,Lightning Charging Cable,1,14.95,06/23/19 13:36,"642 13th St, Boston, MA 02215" +218987,Wired Headphones,1,11.99,06/16/19 14:50,"706 2nd St, San Francisco, CA 94016" +218988,Lightning Charging Cable,1,14.95,06/13/19 23:52,"991 Cherry St, Los Angeles, CA 90001" +218989,20in Monitor,1,109.99,06/22/19 14:31,"730 Cherry St, San Francisco, CA 94016" +218990,iPhone,1,700,06/03/19 03:46,"18 Sunset St, San Francisco, CA 94016" +218991,34in Ultrawide Monitor,1,379.99,06/18/19 00:09,"829 Walnut St, New York City, NY 10001" +218991,Apple Airpods Headphones,1,150,06/18/19 00:09,"829 Walnut St, New York City, NY 10001" +218992,27in 4K Gaming Monitor,1,389.99,06/19/19 11:36,"614 Forest St, New York City, NY 10001" +218993,Bose SoundSport Headphones,1,99.99,06/27/19 16:52,"975 Wilson St, Atlanta, GA 30301" +218994,Google Phone,1,600,06/05/19 14:34,"932 Hill St, New York City, NY 10001" +218995,Flatscreen TV,1,300,06/16/19 19:06,"981 West St, Seattle, WA 98101" +218996,Wired Headphones,1,11.99,06/21/19 14:12,"450 11th St, Boston, MA 02215" +218997,Macbook Pro Laptop,1,1700,06/14/19 13:33,"612 Madison St, Los Angeles, CA 90001" +218998,Wired Headphones,1,11.99,06/27/19 20:46,"303 Wilson St, San Francisco, CA 94016" +218999,Bose SoundSport Headphones,1,99.99,06/12/19 14:24,"848 South St, New York City, NY 10001" +219000,Google Phone,1,600,06/06/19 19:17,"750 6th St, Seattle, WA 98101" +219001,iPhone,1,700,06/24/19 20:19,"337 Lincoln St, San Francisco, CA 94016" +219002,LG Dryer,1,600.0,06/01/19 14:19,"745 Jefferson St, Portland, ME 04101" +219003,Lightning Charging Cable,1,14.95,06/30/19 20:48,"612 10th St, Dallas, TX 75001" +219004,AA Batteries (4-pack),1,3.84,06/05/19 21:28,"670 Sunset St, Dallas, TX 75001" +219005,34in Ultrawide Monitor,1,379.99,06/21/19 11:33,"618 Cherry St, Los Angeles, CA 90001" +219006,AA Batteries (4-pack),1,3.84,06/24/19 04:57,"178 Lake St, San Francisco, CA 94016" +219007,AAA Batteries (4-pack),1,2.99,06/03/19 14:39,"281 1st St, Atlanta, GA 30301" +219008,Apple Airpods Headphones,1,150,06/22/19 11:36,"335 Wilson St, Portland, ME 04101" +219009,27in FHD Monitor,1,149.99,06/26/19 18:08,"808 River St, Dallas, TX 75001" +219010,AA Batteries (4-pack),1,3.84,06/25/19 23:37,"584 Jefferson St, Los Angeles, CA 90001" +219011,Bose SoundSport Headphones,1,99.99,06/20/19 22:53,"746 Wilson St, Los Angeles, CA 90001" +219012,27in FHD Monitor,1,149.99,06/03/19 14:38,"603 Madison St, San Francisco, CA 94016" +219013,USB-C Charging Cable,1,11.95,06/06/19 16:13,"884 8th St, Los Angeles, CA 90001" +219014,Lightning Charging Cable,1,14.95,06/07/19 20:11,"757 8th St, Seattle, WA 98101" +219015,Wired Headphones,1,11.99,06/29/19 12:07,"460 Lake St, Los Angeles, CA 90001" +219016,USB-C Charging Cable,1,11.95,06/20/19 22:59,"655 Sunset St, San Francisco, CA 94016" +219017,Apple Airpods Headphones,1,150,06/06/19 17:16,"766 Highland St, Los Angeles, CA 90001" +219018,AAA Batteries (4-pack),1,2.99,06/18/19 21:46,"489 8th St, Austin, TX 73301" +219019,AA Batteries (4-pack),1,3.84,06/24/19 08:33,"2 Lakeview St, Boston, MA 02215" +219020,USB-C Charging Cable,1,11.95,06/22/19 16:32,"568 Chestnut St, Los Angeles, CA 90001" +219021,USB-C Charging Cable,1,11.95,06/09/19 11:08,"325 9th St, Los Angeles, CA 90001" +219022,USB-C Charging Cable,1,11.95,06/26/19 13:17,"620 10th St, Los Angeles, CA 90001" +219023,iPhone,1,700,06/28/19 20:25,"237 Cherry St, Austin, TX 73301" +219024,AAA Batteries (4-pack),1,2.99,06/04/19 16:43,"774 12th St, San Francisco, CA 94016" +219025,USB-C Charging Cable,1,11.95,06/03/19 16:48,"309 Walnut St, Portland, OR 97035" +219026,AAA Batteries (4-pack),3,2.99,06/15/19 12:40,"75 5th St, Dallas, TX 75001" +219027,Apple Airpods Headphones,1,150,06/22/19 19:46,"285 Forest St, San Francisco, CA 94016" +219028,AAA Batteries (4-pack),2,2.99,06/17/19 09:29,"132 Spruce St, Seattle, WA 98101" +219029,AAA Batteries (4-pack),1,2.99,06/24/19 20:08,"476 13th St, Austin, TX 73301" +219030,Apple Airpods Headphones,1,150,06/30/19 11:26,"728 Lakeview St, San Francisco, CA 94016" +219031,Wired Headphones,1,11.99,06/28/19 13:05,"991 Johnson St, San Francisco, CA 94016" +219032,AA Batteries (4-pack),2,3.84,06/09/19 16:26,"755 Church St, New York City, NY 10001" +219033,34in Ultrawide Monitor,1,379.99,06/22/19 10:08,"827 14th St, Austin, TX 73301" +219034,27in FHD Monitor,1,149.99,06/30/19 19:56,"123 7th St, Los Angeles, CA 90001" +219035,USB-C Charging Cable,1,11.95,06/29/19 13:43,"675 10th St, Los Angeles, CA 90001" +219036,34in Ultrawide Monitor,1,379.99,06/13/19 23:20,"535 Hickory St, Los Angeles, CA 90001" +219037,AA Batteries (4-pack),1,3.84,06/30/19 16:15,"622 Lincoln St, Seattle, WA 98101" +219038,USB-C Charging Cable,1,11.95,06/18/19 22:11,"150 Spruce St, Dallas, TX 75001" +219039,AAA Batteries (4-pack),1,2.99,06/09/19 20:56,"77 Johnson St, San Francisco, CA 94016" +219040,27in FHD Monitor,1,149.99,06/14/19 11:25,"482 11th St, New York City, NY 10001" +219041,AA Batteries (4-pack),1,3.84,06/08/19 22:31,"824 Adams St, Dallas, TX 75001" +219042,Bose SoundSport Headphones,1,99.99,06/25/19 14:10,"916 Center St, Austin, TX 73301" +219043,Lightning Charging Cable,1,14.95,06/28/19 02:00,"272 Pine St, Dallas, TX 75001" +219044,Apple Airpods Headphones,1,150,06/07/19 11:27,"711 River St, Seattle, WA 98101" +219045,Wired Headphones,1,11.99,06/01/19 11:45,"559 Meadow St, Boston, MA 02215" +219046,AA Batteries (4-pack),1,3.84,06/18/19 12:24,"24 Madison St, Dallas, TX 75001" +219047,AAA Batteries (4-pack),1,2.99,06/15/19 07:13,"729 South St, Dallas, TX 75001" +219048,Apple Airpods Headphones,1,150,06/11/19 09:58,"793 Washington St, Seattle, WA 98101" +219049,Wired Headphones,1,11.99,06/25/19 18:16,"263 Cedar St, Los Angeles, CA 90001" +219050,Vareebadd Phone,1,400,06/30/19 23:54,"364 6th St, Los Angeles, CA 90001" +219051,USB-C Charging Cable,1,11.95,06/12/19 11:49,"839 Hickory St, San Francisco, CA 94016" +219052,AAA Batteries (4-pack),1,2.99,06/29/19 19:55,"35 Chestnut St, Los Angeles, CA 90001" +219053,27in 4K Gaming Monitor,1,389.99,06/04/19 23:36,"440 Jefferson St, Dallas, TX 75001" +219054,27in 4K Gaming Monitor,1,389.99,06/02/19 17:19,"485 Elm St, San Francisco, CA 94016" +219055,Apple Airpods Headphones,1,150,06/12/19 18:04,"692 Cherry St, San Francisco, CA 94016" +219056,AAA Batteries (4-pack),1,2.99,06/26/19 00:10,"608 4th St, Portland, ME 04101" +219056,Lightning Charging Cable,1,14.95,06/26/19 00:10,"608 4th St, Portland, ME 04101" +219057,AA Batteries (4-pack),2,3.84,06/25/19 19:30,"964 14th St, Los Angeles, CA 90001" +219058,iPhone,1,700,06/24/19 21:27,"883 Pine St, Atlanta, GA 30301" +219058,Apple Airpods Headphones,1,150,06/24/19 21:27,"883 Pine St, Atlanta, GA 30301" +219059,Apple Airpods Headphones,1,150,06/07/19 10:51,"391 Lakeview St, Seattle, WA 98101" +219060,Bose SoundSport Headphones,1,99.99,06/29/19 16:49,"527 6th St, San Francisco, CA 94016" +219061,Bose SoundSport Headphones,1,99.99,06/09/19 12:11,"553 Hill St, New York City, NY 10001" +219062,USB-C Charging Cable,1,11.95,06/07/19 10:48,"666 Center St, San Francisco, CA 94016" +219063,AA Batteries (4-pack),1,3.84,06/14/19 21:12,"6 Cedar St, Los Angeles, CA 90001" +219064,Lightning Charging Cable,1,14.95,06/09/19 07:39,"25 12th St, Portland, OR 97035" +219065,iPhone,1,700,06/27/19 17:57,"995 Chestnut St, Dallas, TX 75001" +219066,USB-C Charging Cable,1,11.95,06/20/19 14:49,"89 Willow St, San Francisco, CA 94016" +219067,LG Dryer,1,600.0,06/13/19 05:27,"813 Main St, Boston, MA 02215" +219068,Lightning Charging Cable,1,14.95,06/29/19 12:27,"314 12th St, San Francisco, CA 94016" +219069,Lightning Charging Cable,1,14.95,06/22/19 21:18,"799 Lakeview St, Los Angeles, CA 90001" +219070,AA Batteries (4-pack),1,3.84,06/06/19 17:57,"231 8th St, New York City, NY 10001" +219071,Lightning Charging Cable,1,14.95,06/18/19 07:53,"557 Forest St, Los Angeles, CA 90001" +219072,AAA Batteries (4-pack),2,2.99,06/18/19 08:31,"562 Washington St, New York City, NY 10001" +219073,Lightning Charging Cable,2,14.95,06/30/19 14:50,"181 Lake St, Atlanta, GA 30301" +219074,Apple Airpods Headphones,1,150,06/17/19 22:13,"370 Pine St, Boston, MA 02215" +219075,Lightning Charging Cable,1,14.95,06/18/19 09:22,"14 Hickory St, San Francisco, CA 94016" +219076,Vareebadd Phone,1,400,06/16/19 14:31,"329 6th St, Seattle, WA 98101" +219077,USB-C Charging Cable,1,11.95,06/22/19 16:38,"905 2nd St, New York City, NY 10001" +219078,USB-C Charging Cable,1,11.95,06/28/19 23:43,"469 Hill St, Boston, MA 02215" +219079,AA Batteries (4-pack),1,3.84,06/22/19 09:48,"586 Chestnut St, Seattle, WA 98101" +219080,AAA Batteries (4-pack),1,2.99,06/02/19 06:27,"663 Elm St, San Francisco, CA 94016" +219081,Macbook Pro Laptop,1,1700,06/23/19 06:14,"429 Madison St, Portland, OR 97035" +219081,ThinkPad Laptop,1,999.99,06/23/19 06:14,"429 Madison St, Portland, OR 97035" +219082,Lightning Charging Cable,1,14.95,06/08/19 10:10,"809 Hill St, New York City, NY 10001" +219083,Lightning Charging Cable,2,14.95,06/12/19 16:18,"82 11th St, Austin, TX 73301" +219084,Flatscreen TV,1,300,06/21/19 17:16,"689 West St, Dallas, TX 75001" +219085,AAA Batteries (4-pack),1,2.99,06/03/19 22:28,"756 Wilson St, Seattle, WA 98101" +219086,34in Ultrawide Monitor,1,379.99,06/26/19 18:21,"251 Sunset St, San Francisco, CA 94016" +219087,Apple Airpods Headphones,1,150,06/24/19 14:03,"460 Pine St, Dallas, TX 75001" +219088,AAA Batteries (4-pack),2,2.99,06/29/19 11:24,"968 Lake St, San Francisco, CA 94016" +219089,USB-C Charging Cable,1,11.95,06/29/19 17:34,"668 Pine St, New York City, NY 10001" +219090,Wired Headphones,1,11.99,06/20/19 09:37,"304 Cedar St, San Francisco, CA 94016" +219091,Wired Headphones,1,11.99,06/12/19 18:48,"11 5th St, New York City, NY 10001" +219092,USB-C Charging Cable,1,11.95,06/06/19 02:00,"18 4th St, Los Angeles, CA 90001" +219093,AA Batteries (4-pack),1,3.84,06/29/19 22:38,"220 Chestnut St, San Francisco, CA 94016" +219094,Bose SoundSport Headphones,1,99.99,06/29/19 00:57,"242 Washington St, Seattle, WA 98101" +219095,Apple Airpods Headphones,1,150,06/30/19 18:22,"519 4th St, Seattle, WA 98101" +219096,27in FHD Monitor,1,149.99,06/14/19 13:02,"605 West St, San Francisco, CA 94016" +219097,Vareebadd Phone,1,400,06/27/19 09:05,"923 Adams St, New York City, NY 10001" +219098,AAA Batteries (4-pack),1,2.99,06/14/19 17:34,"69 Elm St, New York City, NY 10001" +219099,iPhone,1,700,06/09/19 15:44,"979 Lake St, Dallas, TX 75001" +219100,Vareebadd Phone,1,400,06/02/19 22:31,"666 Cedar St, Portland, ME 04101" +219101,27in FHD Monitor,1,149.99,06/11/19 19:20,"725 Ridge St, Los Angeles, CA 90001" +219102,Bose SoundSport Headphones,1,99.99,06/10/19 08:47,"887 1st St, New York City, NY 10001" +219103,Lightning Charging Cable,1,14.95,06/06/19 08:37,"216 Pine St, Los Angeles, CA 90001" +219104,Wired Headphones,1,11.99,06/23/19 17:32,"573 Willow St, San Francisco, CA 94016" +219105,AA Batteries (4-pack),1,3.84,06/29/19 11:05,"981 Church St, San Francisco, CA 94016" +219106,Google Phone,1,600,06/20/19 02:23,"391 Hill St, New York City, NY 10001" +219106,Wired Headphones,1,11.99,06/20/19 02:23,"391 Hill St, New York City, NY 10001" +219107,AA Batteries (4-pack),1,3.84,06/09/19 15:04,"558 Center St, Los Angeles, CA 90001" +219108,Lightning Charging Cable,1,14.95,06/17/19 09:57,"545 6th St, Dallas, TX 75001" +219109,20in Monitor,1,109.99,06/02/19 02:29,"455 6th St, Austin, TX 73301" +219110,AAA Batteries (4-pack),2,2.99,06/28/19 17:14,"54 Church St, Los Angeles, CA 90001" +219111,AA Batteries (4-pack),1,3.84,06/19/19 09:20,"301 Madison St, Los Angeles, CA 90001" +219112,Apple Airpods Headphones,1,150,06/21/19 19:14,"248 Church St, Dallas, TX 75001" +219113,AAA Batteries (4-pack),1,2.99,06/24/19 23:23,"749 10th St, New York City, NY 10001" +219114,Wired Headphones,1,11.99,06/18/19 07:51,"560 Lakeview St, Boston, MA 02215" +219115,Lightning Charging Cable,1,14.95,06/13/19 22:20,"924 Walnut St, San Francisco, CA 94016" +219116,Lightning Charging Cable,1,14.95,06/22/19 15:11,"860 Washington St, Austin, TX 73301" +219117,Wired Headphones,1,11.99,06/01/19 17:08,"798 Lincoln St, New York City, NY 10001" +219118,USB-C Charging Cable,1,11.95,06/20/19 22:33,"140 1st St, Portland, OR 97035" +219119,Flatscreen TV,1,300,06/02/19 15:54,"195 Madison St, Dallas, TX 75001" +219120,20in Monitor,1,109.99,06/22/19 16:47,"610 Sunset St, Seattle, WA 98101" +219121,Lightning Charging Cable,1,14.95,06/27/19 14:53,"532 Meadow St, New York City, NY 10001" +219122,Apple Airpods Headphones,1,150,06/25/19 11:27,"773 West St, New York City, NY 10001" +219123,Lightning Charging Cable,2,14.95,06/18/19 21:23,"774 Dogwood St, Seattle, WA 98101" +219124,AAA Batteries (4-pack),2,2.99,06/08/19 13:37,"407 Pine St, Los Angeles, CA 90001" +219125,Bose SoundSport Headphones,1,99.99,06/05/19 19:50,"269 Forest St, San Francisco, CA 94016" +219126,Wired Headphones,1,11.99,06/05/19 14:15,"9 Chestnut St, Seattle, WA 98101" +219127,27in 4K Gaming Monitor,1,389.99,06/20/19 11:05,"55 6th St, Austin, TX 73301" +219128,AA Batteries (4-pack),1,3.84,06/16/19 18:25,"92 2nd St, Atlanta, GA 30301" +219128,27in FHD Monitor,1,149.99,06/16/19 18:25,"92 2nd St, Atlanta, GA 30301" +219129,AA Batteries (4-pack),2,3.84,06/01/19 11:28,"370 Willow St, Atlanta, GA 30301" +219130,AA Batteries (4-pack),1,3.84,06/05/19 12:45,"504 Chestnut St, San Francisco, CA 94016" +219131,Lightning Charging Cable,1,14.95,06/04/19 07:49,"326 Spruce St, Seattle, WA 98101" +219132,20in Monitor,1,109.99,06/29/19 18:21,"85 2nd St, Boston, MA 02215" +219133,Google Phone,1,600,06/15/19 06:46,"271 Elm St, Seattle, WA 98101" +219134,20in Monitor,1,109.99,06/24/19 09:32,"738 Walnut St, Los Angeles, CA 90001" +219135,USB-C Charging Cable,1,11.95,06/11/19 22:58,"486 Forest St, Dallas, TX 75001" +219136,Flatscreen TV,1,300,06/09/19 10:06,"29 Cedar St, Atlanta, GA 30301" +219137,Wired Headphones,1,11.99,06/17/19 23:32,"214 Wilson St, Los Angeles, CA 90001" +219138,Bose SoundSport Headphones,1,99.99,06/07/19 08:31,"601 1st St, San Francisco, CA 94016" +219139,Apple Airpods Headphones,1,150,06/10/19 12:44,"695 4th St, Seattle, WA 98101" +219140,27in FHD Monitor,1,149.99,06/12/19 18:31,"340 Willow St, San Francisco, CA 94016" +219141,Wired Headphones,1,11.99,06/27/19 13:53,"153 West St, Atlanta, GA 30301" +219142,Flatscreen TV,1,300,06/22/19 21:09,"650 6th St, New York City, NY 10001" +219143,Google Phone,1,600,06/09/19 08:09,"932 12th St, New York City, NY 10001" +219144,AAA Batteries (4-pack),2,2.99,06/01/19 18:33,"80 5th St, San Francisco, CA 94016" +219145,Google Phone,1,600,06/22/19 19:12,"329 Sunset St, New York City, NY 10001" +219146,Apple Airpods Headphones,1,150,06/25/19 15:17,"59 Park St, Seattle, WA 98101" +219147,AA Batteries (4-pack),1,3.84,06/03/19 09:09,"443 4th St, Portland, OR 97035" +219148,Bose SoundSport Headphones,1,99.99,06/07/19 21:25,"740 Lakeview St, Los Angeles, CA 90001" +219149,Lightning Charging Cable,1,14.95,06/23/19 17:05,"870 4th St, Los Angeles, CA 90001" +219150,Wired Headphones,1,11.99,06/23/19 09:36,"683 Church St, Boston, MA 02215" +219151,Google Phone,1,600,06/27/19 18:18,"70 River St, San Francisco, CA 94016" +219152,34in Ultrawide Monitor,1,379.99,06/03/19 12:03,"383 Cherry St, Dallas, TX 75001" +219153,AA Batteries (4-pack),2,3.84,06/01/19 18:54,"593 Hickory St, San Francisco, CA 94016" +219154,iPhone,1,700,06/29/19 20:29,"382 Elm St, Atlanta, GA 30301" +219155,AA Batteries (4-pack),2,3.84,06/02/19 08:48,"674 Jackson St, New York City, NY 10001" +219156,Flatscreen TV,1,300,06/16/19 17:16,"332 10th St, Austin, TX 73301" +219157,Lightning Charging Cable,1,14.95,06/12/19 23:46,"465 2nd St, Boston, MA 02215" +219158,USB-C Charging Cable,1,11.95,06/12/19 19:45,"337 West St, Los Angeles, CA 90001" +219159,AAA Batteries (4-pack),1,2.99,06/20/19 12:47,"864 5th St, San Francisco, CA 94016" +219159,27in 4K Gaming Monitor,1,389.99,06/20/19 12:47,"864 5th St, San Francisco, CA 94016" +219160,AA Batteries (4-pack),1,3.84,06/24/19 18:08,"326 Washington St, Austin, TX 73301" +219161,Lightning Charging Cable,1,14.95,06/13/19 12:32,"416 14th St, San Francisco, CA 94016" +219162,USB-C Charging Cable,1,11.95,06/26/19 00:31,"778 Pine St, San Francisco, CA 94016" +219163,Lightning Charging Cable,2,14.95,06/25/19 22:56,"457 Sunset St, Boston, MA 02215" +219164,AA Batteries (4-pack),1,3.84,06/05/19 10:34,"404 1st St, Dallas, TX 75001" +219165,Lightning Charging Cable,1,14.95,06/18/19 07:44,"262 Lake St, Austin, TX 73301" +219166,AA Batteries (4-pack),2,3.84,06/13/19 21:52,"381 Dogwood St, San Francisco, CA 94016" +219167,20in Monitor,1,109.99,06/27/19 07:00,"225 2nd St, San Francisco, CA 94016" +219168,Lightning Charging Cable,1,14.95,06/02/19 10:56,"418 4th St, San Francisco, CA 94016" +219169,iPhone,1,700,06/13/19 13:10,"87 13th St, Los Angeles, CA 90001" +219170,ThinkPad Laptop,1,999.99,06/10/19 17:17,"53 Lake St, Austin, TX 73301" +219171,34in Ultrawide Monitor,1,379.99,06/28/19 22:24,"530 Park St, San Francisco, CA 94016" +219172,AAA Batteries (4-pack),1,2.99,06/11/19 05:09,"653 5th St, Boston, MA 02215" +219173,Apple Airpods Headphones,1,150,06/15/19 00:38,"514 7th St, Portland, OR 97035" +219174,AAA Batteries (4-pack),2,2.99,06/21/19 16:49,"764 Hill St, Boston, MA 02215" +219175,Apple Airpods Headphones,1,150,06/09/19 11:07,"649 9th St, San Francisco, CA 94016" +219176,Wired Headphones,1,11.99,06/28/19 18:05,"116 Elm St, Portland, OR 97035" +219177,Lightning Charging Cable,1,14.95,06/13/19 13:44,"89 Madison St, New York City, NY 10001" +219178,AA Batteries (4-pack),1,3.84,06/25/19 22:28,"424 14th St, Los Angeles, CA 90001" +219179,20in Monitor,1,109.99,06/13/19 16:18,"766 Cedar St, San Francisco, CA 94016" +219180,ThinkPad Laptop,1,999.99,06/23/19 07:40,"68 Elm St, Boston, MA 02215" +219181,Lightning Charging Cable,1,14.95,06/09/19 11:55,"310 10th St, Boston, MA 02215" +219182,27in FHD Monitor,1,149.99,06/09/19 11:49,"915 Maple St, New York City, NY 10001" +219183,Apple Airpods Headphones,1,150,06/06/19 19:14,"23 South St, Portland, OR 97035" +219184,Lightning Charging Cable,2,14.95,06/11/19 21:55,"386 11th St, Dallas, TX 75001" +219185,20in Monitor,1,109.99,06/26/19 13:16,"635 2nd St, Boston, MA 02215" +219186,Lightning Charging Cable,1,14.95,06/05/19 20:29,"365 Elm St, Dallas, TX 75001" +219187,AA Batteries (4-pack),1,3.84,06/11/19 02:05,"129 5th St, Dallas, TX 75001" +219188,20in Monitor,1,109.99,06/10/19 10:01,"604 Maple St, Boston, MA 02215" +219189,USB-C Charging Cable,1,11.95,06/10/19 13:52,"323 West St, New York City, NY 10001" +219190,AAA Batteries (4-pack),1,2.99,06/19/19 19:37,"44 Spruce St, New York City, NY 10001" +219191,Apple Airpods Headphones,1,150,06/09/19 16:05,"804 Spruce St, Boston, MA 02215" +219192,USB-C Charging Cable,2,11.95,06/08/19 15:01,"34 Wilson St, San Francisco, CA 94016" +219193,iPhone,1,700,06/01/19 14:27,"32 Spruce St, Portland, OR 97035" +219194,Macbook Pro Laptop,1,1700,06/22/19 00:37,"800 Forest St, Portland, OR 97035" +219195,Lightning Charging Cable,1,14.95,06/17/19 06:10,"553 Lakeview St, San Francisco, CA 94016" +219196,ThinkPad Laptop,1,999.99,06/20/19 13:20,"533 7th St, Dallas, TX 75001" +219197,Vareebadd Phone,1,400,06/30/19 18:27,"851 Adams St, New York City, NY 10001" +219198,Wired Headphones,1,11.99,06/11/19 11:02,"783 8th St, New York City, NY 10001" +219199,Bose SoundSport Headphones,1,99.99,06/07/19 10:41,"789 12th St, New York City, NY 10001" +219200,Macbook Pro Laptop,1,1700,06/21/19 12:41,"516 7th St, Boston, MA 02215" +219201,AA Batteries (4-pack),1,3.84,06/02/19 23:19,"637 Meadow St, Seattle, WA 98101" +219202,27in 4K Gaming Monitor,1,389.99,06/14/19 16:39,"530 West St, San Francisco, CA 94016" +219203,Lightning Charging Cable,1,14.95,06/26/19 14:27,"218 Spruce St, Los Angeles, CA 90001" +219204,Apple Airpods Headphones,1,150,06/17/19 19:00,"730 North St, Boston, MA 02215" +219205,Google Phone,1,600,06/02/19 16:10,"814 8th St, San Francisco, CA 94016" +219206,34in Ultrawide Monitor,1,379.99,06/16/19 19:21,"123 Lincoln St, Boston, MA 02215" +219207,USB-C Charging Cable,1,11.95,06/27/19 12:21,"377 8th St, San Francisco, CA 94016" +219208,USB-C Charging Cable,1,11.95,06/29/19 14:48,"279 Jackson St, Los Angeles, CA 90001" +219209,34in Ultrawide Monitor,1,379.99,06/05/19 20:44,"170 Maple St, San Francisco, CA 94016" +219210,ThinkPad Laptop,1,999.99,06/10/19 13:33,"930 Lakeview St, San Francisco, CA 94016" +219211,AAA Batteries (4-pack),2,2.99,06/14/19 22:17,"131 Jefferson St, Atlanta, GA 30301" +219212,ThinkPad Laptop,1,999.99,06/23/19 16:17,"477 Pine St, San Francisco, CA 94016" +219213,Wired Headphones,1,11.99,06/01/19 12:08,"908 2nd St, Portland, OR 97035" +219214,Apple Airpods Headphones,1,150,06/16/19 14:10,"438 10th St, Boston, MA 02215" +219214,ThinkPad Laptop,1,999.99,06/16/19 14:10,"438 10th St, Boston, MA 02215" +219215,Vareebadd Phone,1,400,06/06/19 18:53,"542 South St, Boston, MA 02215" +219215,USB-C Charging Cable,1,11.95,06/06/19 18:53,"542 South St, Boston, MA 02215" +219216,AA Batteries (4-pack),2,3.84,06/27/19 19:19,"538 Center St, San Francisco, CA 94016" +219217,Flatscreen TV,1,300,06/02/19 20:37,"181 14th St, Boston, MA 02215" +219218,AA Batteries (4-pack),1,3.84,06/09/19 09:01,"257 Adams St, Seattle, WA 98101" +219219,AAA Batteries (4-pack),1,2.99,06/21/19 09:29,"148 Jefferson St, Los Angeles, CA 90001" +219220,iPhone,1,700,06/16/19 11:22,"959 Ridge St, Atlanta, GA 30301" +219220,Lightning Charging Cable,2,14.95,06/16/19 11:22,"959 Ridge St, Atlanta, GA 30301" +219221,AAA Batteries (4-pack),2,2.99,06/03/19 13:06,"164 12th St, Portland, OR 97035" +219222,Apple Airpods Headphones,1,150,06/19/19 06:44,"181 Hickory St, Atlanta, GA 30301" +219223,USB-C Charging Cable,1,11.95,06/02/19 17:06,"919 Wilson St, Austin, TX 73301" +219224,27in FHD Monitor,1,149.99,06/09/19 23:26,"797 Wilson St, New York City, NY 10001" +219225,27in 4K Gaming Monitor,1,389.99,06/18/19 13:02,"750 2nd St, Los Angeles, CA 90001" +219226,Macbook Pro Laptop,1,1700,06/06/19 21:44,"684 8th St, San Francisco, CA 94016" +219227,USB-C Charging Cable,2,11.95,06/22/19 11:06,"480 Wilson St, Los Angeles, CA 90001" +219228,AAA Batteries (4-pack),3,2.99,06/23/19 11:41,"619 Maple St, Atlanta, GA 30301" +219229,Bose SoundSport Headphones,1,99.99,06/10/19 16:01,"907 Lake St, Seattle, WA 98101" +219230,Lightning Charging Cable,1,14.95,06/22/19 09:27,"435 Forest St, Los Angeles, CA 90001" +219231,27in 4K Gaming Monitor,1,389.99,06/23/19 17:24,"591 Church St, Los Angeles, CA 90001" +219232,AAA Batteries (4-pack),2,2.99,06/21/19 14:48,"648 Chestnut St, Dallas, TX 75001" +219233,Lightning Charging Cable,1,14.95,06/30/19 19:30,"883 Jefferson St, Los Angeles, CA 90001" +219234,Google Phone,1,600,06/07/19 01:43,"488 Chestnut St, Los Angeles, CA 90001" +219235,Wired Headphones,1,11.99,06/14/19 09:36,"206 Meadow St, New York City, NY 10001" +219236,Vareebadd Phone,1,400,06/03/19 16:23,"432 Lincoln St, Boston, MA 02215" +219236,USB-C Charging Cable,1,11.95,06/03/19 16:23,"432 Lincoln St, Boston, MA 02215" +219237,AAA Batteries (4-pack),1,2.99,06/24/19 19:10,"242 Cedar St, San Francisco, CA 94016" +219238,Apple Airpods Headphones,1,150,06/27/19 12:05,"787 7th St, Dallas, TX 75001" +219239,27in FHD Monitor,1,149.99,06/02/19 23:06,"674 Adams St, San Francisco, CA 94016" +219240,Apple Airpods Headphones,1,150,06/01/19 06:34,"579 Lincoln St, San Francisco, CA 94016" +219241,AA Batteries (4-pack),1,3.84,06/29/19 18:17,"842 11th St, Atlanta, GA 30301" +219242,34in Ultrawide Monitor,1,379.99,06/06/19 09:49,"919 12th St, Atlanta, GA 30301" +219243,20in Monitor,1,109.99,06/13/19 20:45,"313 Lakeview St, New York City, NY 10001" +219244,ThinkPad Laptop,1,999.99,06/25/19 15:49,"25 Adams St, Boston, MA 02215" +219245,iPhone,1,700,06/23/19 10:45,"198 Lake St, Portland, OR 97035" +219245,Lightning Charging Cable,1,14.95,06/23/19 10:45,"198 Lake St, Portland, OR 97035" +219246,Apple Airpods Headphones,1,150,06/14/19 08:15,"718 Park St, San Francisco, CA 94016" +219247,AAA Batteries (4-pack),1,2.99,06/12/19 14:27,"270 Highland St, Boston, MA 02215" +219248,Bose SoundSport Headphones,1,99.99,06/20/19 02:10,"734 Jefferson St, San Francisco, CA 94016" +219249,27in FHD Monitor,1,149.99,06/04/19 00:15,"425 Hill St, Los Angeles, CA 90001" +219250,Bose SoundSport Headphones,1,99.99,06/06/19 20:45,"160 North St, Portland, OR 97035" +219251,AA Batteries (4-pack),1,3.84,06/22/19 11:30,"308 7th St, San Francisco, CA 94016" +219252,Bose SoundSport Headphones,1,99.99,06/22/19 14:58,"872 West St, Los Angeles, CA 90001" +219253,27in FHD Monitor,1,149.99,06/10/19 18:20,"503 Main St, Boston, MA 02215" +219254,Lightning Charging Cable,1,14.95,06/13/19 19:26,"50 Jefferson St, San Francisco, CA 94016" +219255,Flatscreen TV,1,300,06/08/19 22:26,"902 12th St, Los Angeles, CA 90001" +219256,USB-C Charging Cable,1,11.95,06/17/19 18:37,"418 River St, San Francisco, CA 94016" +219257,Apple Airpods Headphones,1,150,06/04/19 14:03,"558 Church St, Seattle, WA 98101" +219258,AAA Batteries (4-pack),3,2.99,06/13/19 16:42,"229 14th St, San Francisco, CA 94016" +219259,Wired Headphones,2,11.99,06/10/19 07:40,"477 Washington St, Portland, OR 97035" +219260,Lightning Charging Cable,1,14.95,06/22/19 22:47,"895 Washington St, Boston, MA 02215" +219261,AAA Batteries (4-pack),1,2.99,06/15/19 16:30,"970 5th St, Seattle, WA 98101" +219262,AA Batteries (4-pack),1,3.84,06/24/19 08:48,"878 Chestnut St, New York City, NY 10001" +219263,34in Ultrawide Monitor,1,379.99,06/13/19 09:11,"912 Madison St, New York City, NY 10001" +219264,AA Batteries (4-pack),1,3.84,06/19/19 18:32,"810 Jackson St, San Francisco, CA 94016" +219265,Wired Headphones,1,11.99,06/25/19 20:17,"181 Wilson St, New York City, NY 10001" +219266,34in Ultrawide Monitor,1,379.99,06/22/19 21:08,"263 Lakeview St, Atlanta, GA 30301" +219267,iPhone,1,700,06/19/19 17:00,"345 8th St, New York City, NY 10001" +219267,Apple Airpods Headphones,1,150,06/19/19 17:00,"345 8th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +219268,34in Ultrawide Monitor,1,379.99,06/22/19 22:14,"981 North St, Boston, MA 02215" +219269,Apple Airpods Headphones,1,150,06/18/19 11:48,"694 Jackson St, Boston, MA 02215" +219270,iPhone,1,700,06/29/19 09:29,"140 Center St, Portland, OR 97035" +219271,Wired Headphones,1,11.99,06/16/19 08:45,"414 13th St, Boston, MA 02215" +219272,USB-C Charging Cable,1,11.95,06/01/19 13:13,"367 Lincoln St, Portland, OR 97035" +219273,Lightning Charging Cable,1,14.95,06/22/19 08:38,"385 Spruce St, Los Angeles, CA 90001" +219274,USB-C Charging Cable,1,11.95,06/16/19 18:17,"981 Willow St, Atlanta, GA 30301" +219275,AA Batteries (4-pack),1,3.84,06/29/19 14:52,"938 Wilson St, Austin, TX 73301" +219276,Wired Headphones,1,11.99,06/16/19 18:59,"50 South St, Atlanta, GA 30301" +219277,USB-C Charging Cable,1,11.95,06/10/19 23:36,"560 Elm St, New York City, NY 10001" +219278,Wired Headphones,1,11.99,06/21/19 18:43,"50 Willow St, Seattle, WA 98101" +219279,20in Monitor,1,109.99,06/06/19 07:55,"197 Lincoln St, San Francisco, CA 94016" +219280,Lightning Charging Cable,1,14.95,06/07/19 13:59,"156 Jefferson St, San Francisco, CA 94016" +219280,AAA Batteries (4-pack),1,2.99,06/07/19 13:59,"156 Jefferson St, San Francisco, CA 94016" +219281,AA Batteries (4-pack),1,3.84,06/12/19 14:37,"566 West St, Seattle, WA 98101" +219282,Lightning Charging Cable,1,14.95,06/17/19 12:56,"178 Meadow St, Los Angeles, CA 90001" +219283,iPhone,1,700,06/03/19 17:49,"160 Cedar St, Boston, MA 02215" +219284,Bose SoundSport Headphones,1,99.99,06/19/19 08:37,"714 Hill St, New York City, NY 10001" +219285,AA Batteries (4-pack),1,3.84,06/14/19 17:23,"796 12th St, Portland, OR 97035" +219286,LG Washing Machine,1,600.0,06/09/19 20:23,"815 6th St, San Francisco, CA 94016" +219287,AAA Batteries (4-pack),1,2.99,06/16/19 12:55,"494 South St, San Francisco, CA 94016" +219288,Wired Headphones,1,11.99,06/04/19 14:22,"860 Forest St, Boston, MA 02215" +219289,Wired Headphones,1,11.99,06/11/19 19:20,"100 South St, New York City, NY 10001" +219290,Lightning Charging Cable,1,14.95,06/02/19 02:37,"860 Walnut St, Seattle, WA 98101" +219291,Apple Airpods Headphones,1,150,06/09/19 17:10,"704 Sunset St, Dallas, TX 75001" +219292,Lightning Charging Cable,1,14.95,06/01/19 21:16,"634 Hill St, Seattle, WA 98101" +219293,Apple Airpods Headphones,1,150,06/02/19 13:17,"100 Lakeview St, San Francisco, CA 94016" +219294,iPhone,1,700,06/21/19 22:18,"530 8th St, Boston, MA 02215" +219294,Wired Headphones,1,11.99,06/21/19 22:18,"530 8th St, Boston, MA 02215" +219295,AAA Batteries (4-pack),1,2.99,06/28/19 12:25,"616 Lakeview St, New York City, NY 10001" +219296,Lightning Charging Cable,1,14.95,06/30/19 22:34,"447 Elm St, Los Angeles, CA 90001" +219297,27in FHD Monitor,1,149.99,06/09/19 17:50,"502 Park St, Los Angeles, CA 90001" +219298,Apple Airpods Headphones,1,150,06/25/19 20:32,"408 Willow St, San Francisco, CA 94016" +219299,Wired Headphones,1,11.99,06/01/19 12:58,"857 9th St, Los Angeles, CA 90001" +219300,Macbook Pro Laptop,1,1700,06/16/19 20:14,"178 Sunset St, Seattle, WA 98101" +219301,Lightning Charging Cable,1,14.95,06/27/19 19:05,"956 Cedar St, New York City, NY 10001" +219302,USB-C Charging Cable,1,11.95,06/14/19 10:19,"259 1st St, Boston, MA 02215" +219303,Wired Headphones,1,11.99,06/02/19 21:03,"113 Elm St, Los Angeles, CA 90001" +219304,34in Ultrawide Monitor,1,379.99,06/09/19 17:19,"748 Ridge St, Boston, MA 02215" +219305,AAA Batteries (4-pack),2,2.99,06/26/19 22:24,"180 Lakeview St, Boston, MA 02215" +219306,iPhone,1,700,06/22/19 18:23,"284 Maple St, Boston, MA 02215" +219307,USB-C Charging Cable,1,11.95,06/12/19 17:19,"993 Highland St, San Francisco, CA 94016" +219308,AAA Batteries (4-pack),2,2.99,06/11/19 19:56,"20 Johnson St, Portland, ME 04101" +219309,Bose SoundSport Headphones,1,99.99,06/20/19 13:16,"875 Forest St, San Francisco, CA 94016" +219310,20in Monitor,1,109.99,06/14/19 13:45,"938 Madison St, San Francisco, CA 94016" +219311,ThinkPad Laptop,1,999.99,06/30/19 11:15,"257 2nd St, San Francisco, CA 94016" +219312,27in FHD Monitor,1,149.99,06/20/19 18:30,"523 7th St, Portland, OR 97035" +219313,USB-C Charging Cable,1,11.95,06/18/19 12:27,"1 River St, Boston, MA 02215" +219314,27in FHD Monitor,1,149.99,06/09/19 11:01,"960 Adams St, Boston, MA 02215" +219314,Lightning Charging Cable,1,14.95,06/09/19 11:01,"960 Adams St, Boston, MA 02215" +219315,Wired Headphones,1,11.99,06/26/19 13:01,"74 1st St, New York City, NY 10001" +219316,27in FHD Monitor,1,149.99,06/02/19 09:42,"113 Madison St, Portland, OR 97035" +219317,USB-C Charging Cable,1,11.95,06/30/19 13:44,"437 13th St, Austin, TX 73301" +219318,Wired Headphones,1,11.99,06/04/19 08:16,"627 8th St, Boston, MA 02215" +219319,Bose SoundSport Headphones,1,99.99,06/16/19 14:42,"611 Cherry St, Portland, OR 97035" +219320,Wired Headphones,1,11.99,06/19/19 09:18,"294 10th St, San Francisco, CA 94016" +219321,AAA Batteries (4-pack),1,2.99,06/26/19 23:39,"643 Pine St, Los Angeles, CA 90001" +219322,Lightning Charging Cable,1,14.95,06/20/19 19:29,"219 Johnson St, San Francisco, CA 94016" +219323,Bose SoundSport Headphones,1,99.99,06/05/19 02:11,"713 12th St, Atlanta, GA 30301" +219324,Wired Headphones,1,11.99,06/09/19 21:50,"335 9th St, New York City, NY 10001" +219325,AAA Batteries (4-pack),1,2.99,06/22/19 20:10,"536 13th St, San Francisco, CA 94016" +219326,AAA Batteries (4-pack),2,2.99,06/10/19 23:48,"859 12th St, Seattle, WA 98101" +219327,USB-C Charging Cable,1,11.95,06/30/19 14:33,"272 Cedar St, Boston, MA 02215" +219328,Apple Airpods Headphones,1,150,06/27/19 18:29,"838 11th St, Boston, MA 02215" +219329,USB-C Charging Cable,1,11.95,06/06/19 16:02,"986 Walnut St, San Francisco, CA 94016" +219330,USB-C Charging Cable,1,11.95,06/02/19 08:59,"367 Washington St, Seattle, WA 98101" +219331,Macbook Pro Laptop,1,1700,06/17/19 18:02,"656 Church St, Boston, MA 02215" +219332,AAA Batteries (4-pack),1,2.99,06/23/19 12:46,"786 Washington St, San Francisco, CA 94016" +219333,Bose SoundSport Headphones,1,99.99,06/28/19 22:10,"998 Washington St, Seattle, WA 98101" +219334,AA Batteries (4-pack),1,3.84,06/12/19 11:07,"487 9th St, Los Angeles, CA 90001" +219335,27in FHD Monitor,1,149.99,06/25/19 11:24,"874 Lincoln St, San Francisco, CA 94016" +219336,USB-C Charging Cable,1,11.95,06/16/19 22:54,"419 Dogwood St, New York City, NY 10001" +219337,AAA Batteries (4-pack),2,2.99,06/06/19 19:35,"534 Center St, Austin, TX 73301" +219338,AAA Batteries (4-pack),1,2.99,06/13/19 16:51,"174 Cherry St, Los Angeles, CA 90001" +219338,AAA Batteries (4-pack),1,2.99,06/13/19 16:51,"174 Cherry St, Los Angeles, CA 90001" +219339,USB-C Charging Cable,1,11.95,06/22/19 18:19,"631 Wilson St, Los Angeles, CA 90001" +219340,Wired Headphones,1,11.99,06/20/19 18:53,"72 Church St, Seattle, WA 98101" +219341,Lightning Charging Cable,1,14.95,06/27/19 20:52,"463 Jackson St, Dallas, TX 75001" +219342,Flatscreen TV,1,300,06/23/19 12:50,"703 4th St, Seattle, WA 98101" +219343,Lightning Charging Cable,1,14.95,06/27/19 16:11,"789 Cherry St, Dallas, TX 75001" +219344,Wired Headphones,1,11.99,06/30/19 14:04,"958 Sunset St, Atlanta, GA 30301" +219345,Wired Headphones,1,11.99,06/06/19 22:55,"261 Washington St, Austin, TX 73301" +219346,27in FHD Monitor,1,149.99,06/13/19 22:31,"603 Chestnut St, New York City, NY 10001" +219347,AAA Batteries (4-pack),2,2.99,06/28/19 15:36,"860 Spruce St, Atlanta, GA 30301" +219348,USB-C Charging Cable,1,11.95,06/17/19 18:28,"342 Forest St, Atlanta, GA 30301" +219349,Lightning Charging Cable,1,14.95,06/20/19 12:13,"440 Sunset St, Austin, TX 73301" +219350,27in 4K Gaming Monitor,1,389.99,06/14/19 15:43,"888 Cherry St, Boston, MA 02215" +219351,Lightning Charging Cable,1,14.95,06/22/19 17:47,"428 Forest St, San Francisco, CA 94016" +219352,AAA Batteries (4-pack),1,2.99,06/10/19 21:39,"174 14th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +219353,AAA Batteries (4-pack),1,2.99,06/16/19 19:53,"130 Forest St, San Francisco, CA 94016" +219354,Flatscreen TV,1,300,06/30/19 19:19,"26 Washington St, Seattle, WA 98101" +219355,Apple Airpods Headphones,1,150,06/10/19 10:14,"500 Lakeview St, Dallas, TX 75001" +219356,Bose SoundSport Headphones,1,99.99,06/23/19 13:09,"624 Madison St, Portland, OR 97035" +219357,LG Washing Machine,1,600.0,06/22/19 10:42,"35 13th St, San Francisco, CA 94016" +219358,Lightning Charging Cable,1,14.95,06/12/19 20:42,"69 Elm St, New York City, NY 10001" +219359,AAA Batteries (4-pack),1,2.99,06/09/19 21:20,"611 2nd St, San Francisco, CA 94016" +219360,ThinkPad Laptop,1,999.99,06/03/19 19:43,"116 Maple St, Portland, OR 97035" +219361,AA Batteries (4-pack),1,3.84,06/01/19 22:44,"626 5th St, San Francisco, CA 94016" +219362,27in FHD Monitor,1,149.99,06/19/19 10:16,"591 Johnson St, New York City, NY 10001" +219363,Lightning Charging Cable,1,14.95,06/13/19 10:12,"962 Madison St, Austin, TX 73301" +219364,Flatscreen TV,1,300,06/08/19 13:39,"861 Cedar St, New York City, NY 10001" +219365,AAA Batteries (4-pack),2,2.99,06/17/19 19:36,"139 Maple St, Boston, MA 02215" +219366,AA Batteries (4-pack),1,3.84,06/25/19 19:45,"44 10th St, Los Angeles, CA 90001" +219367,Bose SoundSport Headphones,1,99.99,06/06/19 09:39,"714 West St, Seattle, WA 98101" +219368,Lightning Charging Cable,1,14.95,06/19/19 00:13,"154 Main St, Dallas, TX 75001" +219369,USB-C Charging Cable,1,11.95,06/21/19 09:38,"722 Main St, Atlanta, GA 30301" +219370,Macbook Pro Laptop,1,1700,06/21/19 22:44,"583 Willow St, Portland, ME 04101" +219371,27in 4K Gaming Monitor,1,389.99,06/02/19 15:47,"322 Spruce St, New York City, NY 10001" +219372,iPhone,1,700,06/04/19 11:58,"179 West St, San Francisco, CA 94016" +219373,AA Batteries (4-pack),1,3.84,06/21/19 14:08,"337 West St, New York City, NY 10001" +219374,27in 4K Gaming Monitor,1,389.99,06/13/19 15:09,"736 North St, Boston, MA 02215" +219375,Google Phone,1,600,06/11/19 12:59,"243 Walnut St, New York City, NY 10001" +219376,AAA Batteries (4-pack),1,2.99,06/10/19 15:18,"854 Pine St, New York City, NY 10001" +219377,USB-C Charging Cable,1,11.95,06/01/19 13:46,"356 Johnson St, Austin, TX 73301" +219378,AA Batteries (4-pack),1,3.84,06/04/19 06:10,"799 8th St, Dallas, TX 75001" +219379,AA Batteries (4-pack),1,3.84,06/09/19 21:02,"7 4th St, Atlanta, GA 30301" +219380,ThinkPad Laptop,1,999.99,06/08/19 15:22,"189 Elm St, Boston, MA 02215" +219381,USB-C Charging Cable,1,11.95,06/02/19 12:44,"400 Forest St, Dallas, TX 75001" +219382,Lightning Charging Cable,1,14.95,06/19/19 15:00,"204 Elm St, Los Angeles, CA 90001" +219383,34in Ultrawide Monitor,1,379.99,06/17/19 14:17,"476 Sunset St, Dallas, TX 75001" +219384,Lightning Charging Cable,1,14.95,06/15/19 13:26,"151 Madison St, San Francisco, CA 94016" +219385,Flatscreen TV,1,300,06/27/19 14:55,"691 9th St, Atlanta, GA 30301" +219386,USB-C Charging Cable,1,11.95,06/10/19 16:52,"211 Lake St, San Francisco, CA 94016" +219387,34in Ultrawide Monitor,1,379.99,06/27/19 23:50,"617 Pine St, Atlanta, GA 30301" +219388,27in 4K Gaming Monitor,1,389.99,06/20/19 09:48,"295 13th St, New York City, NY 10001" +219389,Flatscreen TV,1,300,06/01/19 11:40,"73 5th St, Los Angeles, CA 90001" +219390,AAA Batteries (4-pack),2,2.99,06/29/19 04:46,"300 Walnut St, New York City, NY 10001" +219391,Apple Airpods Headphones,1,150,06/14/19 12:55,"484 Chestnut St, San Francisco, CA 94016" +219392,Apple Airpods Headphones,1,150,06/12/19 04:00,"429 River St, Portland, OR 97035" +219393,Wired Headphones,1,11.99,06/24/19 10:59,"481 Spruce St, New York City, NY 10001" +219394,iPhone,1,700,06/16/19 12:03,"336 8th St, San Francisco, CA 94016" +219394,Wired Headphones,1,11.99,06/16/19 12:03,"336 8th St, San Francisco, CA 94016" +219395,AAA Batteries (4-pack),1,2.99,06/06/19 13:23,"558 Willow St, San Francisco, CA 94016" +219396,Apple Airpods Headphones,1,150,06/09/19 17:36,"823 Johnson St, Dallas, TX 75001" +219397,Macbook Pro Laptop,1,1700,06/15/19 09:53,"471 11th St, Dallas, TX 75001" +219398,20in Monitor,1,109.99,06/04/19 00:23,"215 11th St, Seattle, WA 98101" +219399,Lightning Charging Cable,2,14.95,06/15/19 02:01,"454 7th St, Boston, MA 02215" +219400,iPhone,1,700,06/18/19 19:56,"452 Hickory St, Boston, MA 02215" +219401,Google Phone,1,600,06/07/19 06:02,"296 North St, Austin, TX 73301" +219401,Bose SoundSport Headphones,1,99.99,06/07/19 06:02,"296 North St, Austin, TX 73301" +219402,Vareebadd Phone,1,400,06/05/19 18:40,"730 Center St, Boston, MA 02215" +219403,Wired Headphones,1,11.99,06/13/19 00:04,"82 7th St, Los Angeles, CA 90001" +219404,Wired Headphones,1,11.99,06/04/19 21:09,"859 Sunset St, Austin, TX 73301" +219404,27in 4K Gaming Monitor,1,389.99,06/04/19 21:09,"859 Sunset St, Austin, TX 73301" +219405,AAA Batteries (4-pack),1,2.99,06/19/19 10:18,"554 South St, Los Angeles, CA 90001" +219406,AA Batteries (4-pack),1,3.84,06/25/19 11:45,"179 8th St, Los Angeles, CA 90001" +219407,Lightning Charging Cable,1,14.95,06/01/19 14:02,"812 Highland St, Seattle, WA 98101" +219408,USB-C Charging Cable,1,11.95,06/21/19 11:40,"375 10th St, Portland, OR 97035" +219409,AA Batteries (4-pack),1,3.84,06/14/19 14:33,"480 Main St, Los Angeles, CA 90001" +219410,Wired Headphones,1,11.99,06/05/19 00:04,"239 6th St, Los Angeles, CA 90001" +219411,Wired Headphones,1,11.99,06/12/19 11:17,"392 Wilson St, Los Angeles, CA 90001" +219412,LG Washing Machine,1,600.0,06/14/19 15:20,"102 13th St, San Francisco, CA 94016" +219413,27in 4K Gaming Monitor,1,389.99,06/30/19 14:07,"99 13th St, Boston, MA 02215" +219414,Wired Headphones,1,11.99,06/07/19 13:07,"941 7th St, Boston, MA 02215" +219415,20in Monitor,1,109.99,06/12/19 10:56,"763 Maple St, San Francisco, CA 94016" +219416,34in Ultrawide Monitor,1,379.99,06/07/19 14:15,"269 Forest St, New York City, NY 10001" +219417,Bose SoundSport Headphones,1,99.99,06/23/19 09:43,"843 Jackson St, Boston, MA 02215" +219418,Flatscreen TV,1,300,06/02/19 17:33,"995 Madison St, Boston, MA 02215" +219419,AA Batteries (4-pack),1,3.84,06/25/19 16:39,"184 13th St, Boston, MA 02215" +219420,Bose SoundSport Headphones,1,99.99,06/30/19 15:18,"57 Chestnut St, Austin, TX 73301" +219421,ThinkPad Laptop,1,999.99,06/15/19 14:06,"710 Sunset St, Dallas, TX 75001" +219422,USB-C Charging Cable,1,11.95,06/26/19 22:29,"278 Park St, Atlanta, GA 30301" +219423,Wired Headphones,1,11.99,06/28/19 21:07,"219 Park St, Atlanta, GA 30301" +219424,Lightning Charging Cable,1,14.95,06/21/19 21:35,"871 Cherry St, San Francisco, CA 94016" +219425,Bose SoundSport Headphones,1,99.99,06/29/19 03:52,"904 11th St, Boston, MA 02215" +219426,AA Batteries (4-pack),2,3.84,06/26/19 18:50,"118 Johnson St, Los Angeles, CA 90001" +219427,27in 4K Gaming Monitor,1,389.99,06/22/19 04:07,"444 6th St, New York City, NY 10001" +219428,USB-C Charging Cable,1,11.95,06/19/19 07:18,"553 2nd St, Atlanta, GA 30301" +219429,Lightning Charging Cable,1,14.95,06/01/19 23:49,"824 Washington St, Boston, MA 02215" +219430,20in Monitor,1,109.99,06/08/19 16:12,"897 Elm St, San Francisco, CA 94016" +219431,USB-C Charging Cable,1,11.95,06/02/19 16:52,"976 Lakeview St, New York City, NY 10001" +219432,Wired Headphones,1,11.99,06/26/19 16:02,"641 North St, San Francisco, CA 94016" +219433,AA Batteries (4-pack),1,3.84,06/15/19 10:28,"621 Chestnut St, Dallas, TX 75001" +219434,Apple Airpods Headphones,1,150,06/10/19 23:24,"856 Lincoln St, Atlanta, GA 30301" +219435,Bose SoundSport Headphones,1,99.99,06/22/19 18:57,"333 Wilson St, Seattle, WA 98101" +219436,AA Batteries (4-pack),1,3.84,06/20/19 11:31,"175 Walnut St, Los Angeles, CA 90001" +219437,27in FHD Monitor,1,149.99,06/24/19 14:51,"264 Hill St, Los Angeles, CA 90001" +219438,Bose SoundSport Headphones,1,99.99,06/16/19 18:45,"282 Jefferson St, Los Angeles, CA 90001" +219439,Wired Headphones,1,11.99,06/23/19 21:33,"593 Ridge St, Los Angeles, CA 90001" +219440,Lightning Charging Cable,1,14.95,06/01/19 13:43,"411 Washington St, New York City, NY 10001" +219441,USB-C Charging Cable,3,11.95,06/20/19 23:11,"535 Jackson St, Atlanta, GA 30301" +219442,Bose SoundSport Headphones,1,99.99,06/26/19 19:48,"111 2nd St, Seattle, WA 98101" +219443,AA Batteries (4-pack),1,3.84,06/12/19 18:55,"245 Main St, San Francisco, CA 94016" +219444,Apple Airpods Headphones,1,150,06/14/19 17:18,"390 Center St, Seattle, WA 98101" +219445,iPhone,1,700,06/11/19 15:26,"246 Maple St, Los Angeles, CA 90001" +219446,Bose SoundSport Headphones,1,99.99,06/15/19 14:07,"308 9th St, Atlanta, GA 30301" +219447,Apple Airpods Headphones,1,150,06/19/19 00:23,"752 Wilson St, Portland, OR 97035" +219448,AA Batteries (4-pack),1,3.84,06/05/19 15:31,"884 13th St, Atlanta, GA 30301" +219449,Lightning Charging Cable,1,14.95,06/11/19 12:02,"498 Walnut St, Atlanta, GA 30301" +219450,Google Phone,1,600,06/04/19 17:12,"839 Cherry St, Portland, OR 97035" +219451,AAA Batteries (4-pack),2,2.99,06/22/19 12:07,"735 West St, Portland, OR 97035" +219452,27in FHD Monitor,1,149.99,06/14/19 21:25,"316 Cherry St, New York City, NY 10001" +219453,Flatscreen TV,2,300,06/16/19 16:57,"819 8th St, New York City, NY 10001" +219454,Lightning Charging Cable,1,14.95,06/09/19 14:48,"243 Chestnut St, Seattle, WA 98101" +219455,27in FHD Monitor,1,149.99,06/12/19 19:59,"312 Dogwood St, Dallas, TX 75001" +219456,Wired Headphones,1,11.99,06/28/19 13:53,"652 Sunset St, Los Angeles, CA 90001" +219457,Google Phone,1,600,06/10/19 19:07,"329 Highland St, Seattle, WA 98101" +219457,Bose SoundSport Headphones,1,99.99,06/10/19 19:07,"329 Highland St, Seattle, WA 98101" +219458,34in Ultrawide Monitor,1,379.99,06/02/19 16:39,"874 Center St, New York City, NY 10001" +219459,AAA Batteries (4-pack),5,2.99,06/11/19 14:03,"797 6th St, San Francisco, CA 94016" +219460,Vareebadd Phone,1,400,06/22/19 15:11,"23 Spruce St, Los Angeles, CA 90001" +219461,Lightning Charging Cable,1,14.95,06/21/19 21:19,"783 Main St, Dallas, TX 75001" +219462,Lightning Charging Cable,1,14.95,06/14/19 23:02,"610 Dogwood St, Boston, MA 02215" +219463,USB-C Charging Cable,1,11.95,06/21/19 16:36,"211 Maple St, Seattle, WA 98101" +219464,USB-C Charging Cable,1,11.95,06/20/19 13:41,"233 2nd St, Seattle, WA 98101" +219465,Apple Airpods Headphones,1,150,06/13/19 10:13,"857 Hickory St, San Francisco, CA 94016" +219466,AA Batteries (4-pack),1,3.84,06/25/19 13:41,"89 Park St, Boston, MA 02215" +219467,Lightning Charging Cable,1,14.95,06/26/19 08:21,"750 11th St, Austin, TX 73301" +219468,27in 4K Gaming Monitor,1,389.99,06/04/19 07:22,"800 Cedar St, Dallas, TX 75001" +219469,Apple Airpods Headphones,1,150,06/08/19 09:44,"144 Highland St, Dallas, TX 75001" +219470,iPhone,1,700,06/26/19 14:21,"823 7th St, San Francisco, CA 94016" +219471,34in Ultrawide Monitor,1,379.99,06/27/19 22:00,"923 Willow St, Portland, OR 97035" +219472,Google Phone,1,600,06/21/19 10:38,"102 Hickory St, Boston, MA 02215" +219473,USB-C Charging Cable,1,11.95,06/04/19 20:33,"289 Meadow St, Los Angeles, CA 90001" +219474,Flatscreen TV,1,300,06/12/19 23:22,"326 Main St, Boston, MA 02215" +219475,iPhone,1,700,06/18/19 21:04,"653 Hill St, Los Angeles, CA 90001" +219476,Lightning Charging Cable,1,14.95,06/25/19 19:16,"693 Sunset St, San Francisco, CA 94016" +219477,Lightning Charging Cable,1,14.95,06/24/19 14:47,"642 12th St, Seattle, WA 98101" +219478,AAA Batteries (4-pack),1,2.99,06/19/19 07:07,"281 7th St, San Francisco, CA 94016" +219479,ThinkPad Laptop,1,999.99,06/23/19 06:20,"438 Willow St, San Francisco, CA 94016" +219480,USB-C Charging Cable,1,11.95,06/27/19 18:02,"22 9th St, New York City, NY 10001" +219481,Wired Headphones,1,11.99,06/30/19 22:54,"164 Jefferson St, Atlanta, GA 30301" +219482,Lightning Charging Cable,1,14.95,06/27/19 22:01,"989 North St, Seattle, WA 98101" +219483,AA Batteries (4-pack),1,3.84,06/07/19 22:21,"741 Hill St, New York City, NY 10001" +219484,Macbook Pro Laptop,1,1700,06/15/19 21:19,"312 9th St, Atlanta, GA 30301" +219485,USB-C Charging Cable,1,11.95,06/25/19 17:47,"505 South St, New York City, NY 10001" +219486,27in FHD Monitor,1,149.99,06/05/19 09:12,"330 Washington St, Dallas, TX 75001" +219487,Lightning Charging Cable,1,14.95,06/15/19 19:06,"163 Ridge St, Boston, MA 02215" +219488,Bose SoundSport Headphones,1,99.99,06/02/19 19:23,"369 Madison St, Seattle, WA 98101" +219489,20in Monitor,1,109.99,06/02/19 17:24,"556 Elm St, New York City, NY 10001" +219490,Wired Headphones,1,11.99,06/07/19 23:16,"563 Jackson St, Seattle, WA 98101" +219491,AA Batteries (4-pack),1,3.84,06/03/19 20:16,"535 6th St, San Francisco, CA 94016" +219492,Wired Headphones,1,11.99,06/03/19 10:11,"558 Highland St, San Francisco, CA 94016" +219493,Bose SoundSport Headphones,1,99.99,06/09/19 21:38,"308 Cherry St, Portland, OR 97035" +219494,Google Phone,1,600,06/11/19 20:25,"379 7th St, Seattle, WA 98101" +219495,USB-C Charging Cable,2,11.95,06/21/19 10:06,"744 Lake St, New York City, NY 10001" +219496,27in 4K Gaming Monitor,1,389.99,06/13/19 20:51,"853 Highland St, San Francisco, CA 94016" +219497,Apple Airpods Headphones,1,150,06/05/19 18:03,"967 11th St, New York City, NY 10001" +219498,Lightning Charging Cable,1,14.95,06/02/19 12:28,"876 Main St, Portland, OR 97035" +219499,AA Batteries (4-pack),2,3.84,06/01/19 20:55,"744 Maple St, Seattle, WA 98101" +219500,Bose SoundSport Headphones,1,99.99,06/24/19 20:57,"373 8th St, Portland, OR 97035" +219501,AAA Batteries (4-pack),1,2.99,06/28/19 19:18,"468 11th St, San Francisco, CA 94016" +219502,Lightning Charging Cable,1,14.95,06/22/19 10:40,"867 1st St, Austin, TX 73301" +219503,AAA Batteries (4-pack),2,2.99,06/01/19 16:46,"647 Main St, New York City, NY 10001" +219504,Wired Headphones,1,11.99,06/06/19 21:27,"65 Maple St, Los Angeles, CA 90001" +219505,27in 4K Gaming Monitor,1,389.99,06/26/19 13:16,"272 1st St, Los Angeles, CA 90001" +219506,AA Batteries (4-pack),1,3.84,06/07/19 20:21,"261 13th St, Los Angeles, CA 90001" +219507,Wired Headphones,1,11.99,06/18/19 12:30,"43 South St, New York City, NY 10001" +219508,AA Batteries (4-pack),2,3.84,06/02/19 22:26,"803 4th St, Atlanta, GA 30301" +219508,Wired Headphones,1,11.99,06/02/19 22:26,"803 4th St, Atlanta, GA 30301" +219509,Apple Airpods Headphones,1,150,06/04/19 10:01,"406 Willow St, Los Angeles, CA 90001" +219510,USB-C Charging Cable,1,11.95,06/10/19 00:20,"682 Dogwood St, San Francisco, CA 94016" +219511,iPhone,1,700,06/22/19 14:56,"807 Johnson St, San Francisco, CA 94016" +219511,Apple Airpods Headphones,1,150,06/22/19 14:56,"807 Johnson St, San Francisco, CA 94016" +219512,LG Washing Machine,1,600.0,06/04/19 18:38,"680 Cherry St, San Francisco, CA 94016" +219513,Wired Headphones,1,11.99,06/10/19 17:25,"350 South St, New York City, NY 10001" +219514,Apple Airpods Headphones,1,150,06/06/19 07:14,"249 2nd St, Atlanta, GA 30301" +219515,Lightning Charging Cable,1,14.95,06/19/19 15:32,"545 Johnson St, Los Angeles, CA 90001" +219516,Wired Headphones,1,11.99,06/15/19 13:39,"352 Ridge St, Boston, MA 02215" +219517,AAA Batteries (4-pack),1,2.99,06/26/19 15:05,"202 Main St, Dallas, TX 75001" +219518,Flatscreen TV,1,300,06/23/19 21:36,"323 Elm St, New York City, NY 10001" +219519,Apple Airpods Headphones,1,150,06/18/19 21:31,"523 Madison St, Los Angeles, CA 90001" +219520,Lightning Charging Cable,1,14.95,06/18/19 21:11,"936 Adams St, San Francisco, CA 94016" +219521,Wired Headphones,1,11.99,06/03/19 11:19,"978 6th St, Boston, MA 02215" +219522,Lightning Charging Cable,1,14.95,06/13/19 22:45,"748 2nd St, San Francisco, CA 94016" +219523,AAA Batteries (4-pack),1,2.99,06/06/19 10:14,"336 Cedar St, Austin, TX 73301" +219524,Wired Headphones,1,11.99,06/27/19 10:51,"429 Cherry St, Austin, TX 73301" +219525,Wired Headphones,1,11.99,06/23/19 20:34,"614 14th St, San Francisco, CA 94016" +219526,AA Batteries (4-pack),2,3.84,06/25/19 13:27,"136 Lincoln St, New York City, NY 10001" +219527,ThinkPad Laptop,1,999.99,06/09/19 07:56,"268 North St, New York City, NY 10001" +219528,20in Monitor,1,109.99,06/22/19 11:08,"995 West St, Los Angeles, CA 90001" +219529,Bose SoundSport Headphones,1,99.99,06/07/19 22:19,"519 Dogwood St, San Francisco, CA 94016" +219530,27in FHD Monitor,1,149.99,06/02/19 09:34,"225 Lakeview St, Los Angeles, CA 90001" +219531,AA Batteries (4-pack),2,3.84,06/13/19 20:48,"593 Elm St, Los Angeles, CA 90001" +219532,Vareebadd Phone,1,400,06/24/19 17:22,"639 Madison St, San Francisco, CA 94016" +219533,AAA Batteries (4-pack),1,2.99,06/25/19 02:36,"80 Meadow St, Los Angeles, CA 90001" +219534,AA Batteries (4-pack),1,3.84,06/11/19 22:53,"405 Church St, San Francisco, CA 94016" +219535,Apple Airpods Headphones,1,150,06/12/19 13:46,"153 Park St, Dallas, TX 75001" +219536,Apple Airpods Headphones,1,150,06/07/19 14:50,"880 Willow St, Portland, OR 97035" +219537,Bose SoundSport Headphones,1,99.99,06/20/19 13:48,"728 12th St, Atlanta, GA 30301" +219538,AAA Batteries (4-pack),2,2.99,06/09/19 18:28,"482 10th St, Atlanta, GA 30301" +219539,Wired Headphones,1,11.99,06/07/19 18:17,"233 Maple St, Seattle, WA 98101" +219540,AAA Batteries (4-pack),1,2.99,06/05/19 21:18,"43 Wilson St, New York City, NY 10001" +219541,iPhone,1,700,06/06/19 11:02,"390 North St, Los Angeles, CA 90001" +219542,34in Ultrawide Monitor,1,379.99,06/22/19 12:51,"348 Cedar St, Los Angeles, CA 90001" +219543,27in 4K Gaming Monitor,1,389.99,06/09/19 23:23,"513 1st St, Boston, MA 02215" +219544,Lightning Charging Cable,1,14.95,06/19/19 17:22,"470 7th St, Seattle, WA 98101" +219545,AAA Batteries (4-pack),1,2.99,06/17/19 15:12,"94 Lake St, Dallas, TX 75001" +219545,iPhone,1,700,06/17/19 15:12,"94 Lake St, Dallas, TX 75001" +219546,Macbook Pro Laptop,1,1700,06/10/19 13:32,"273 Washington St, Portland, OR 97035" +219547,Lightning Charging Cable,1,14.95,06/15/19 20:10,"140 Hill St, Los Angeles, CA 90001" +219548,AA Batteries (4-pack),1,3.84,06/04/19 21:16,"913 12th St, Los Angeles, CA 90001" +219549,AAA Batteries (4-pack),1,2.99,06/19/19 09:01,"134 South St, Los Angeles, CA 90001" +219550,USB-C Charging Cable,1,11.95,06/19/19 13:19,"747 4th St, Boston, MA 02215" +219551,AA Batteries (4-pack),1,3.84,06/02/19 14:52,"585 4th St, Portland, ME 04101" +219552,Lightning Charging Cable,1,14.95,06/18/19 13:08,"585 Madison St, New York City, NY 10001" +219553,Flatscreen TV,1,300,06/22/19 18:35,"911 Lakeview St, Atlanta, GA 30301" +219554,Wired Headphones,2,11.99,06/11/19 17:00,"31 Walnut St, Los Angeles, CA 90001" +219555,Wired Headphones,1,11.99,06/05/19 13:48,"513 Cherry St, Dallas, TX 75001" +219556,Apple Airpods Headphones,1,150,06/13/19 18:51,"193 Jefferson St, San Francisco, CA 94016" +219557,Apple Airpods Headphones,1,150,06/02/19 19:52,"242 Ridge St, Seattle, WA 98101" +219558,27in 4K Gaming Monitor,1,389.99,06/06/19 15:51,"102 Johnson St, Boston, MA 02215" +219559,ThinkPad Laptop,1,999.99,06/16/19 08:53,"182 Cherry St, Dallas, TX 75001" +219560,AA Batteries (4-pack),3,3.84,06/24/19 19:12,"535 7th St, Los Angeles, CA 90001" +219561,ThinkPad Laptop,1,999.99,06/27/19 15:28,"668 5th St, Portland, ME 04101" +219562,USB-C Charging Cable,1,11.95,06/23/19 20:52,"253 Walnut St, Boston, MA 02215" +219563,USB-C Charging Cable,1,11.95,06/07/19 17:34,"627 6th St, San Francisco, CA 94016" +219564,Apple Airpods Headphones,1,150,06/07/19 16:26,"623 Church St, New York City, NY 10001" +219565,Wired Headphones,1,11.99,06/04/19 23:31,"520 12th St, San Francisco, CA 94016" +219566,20in Monitor,1,109.99,06/20/19 19:54,"930 Church St, San Francisco, CA 94016" +219567,AA Batteries (4-pack),1,3.84,06/20/19 07:52,"194 Madison St, San Francisco, CA 94016" +219568,Lightning Charging Cable,2,14.95,06/01/19 13:23,"694 South St, Portland, OR 97035" +219569,Apple Airpods Headphones,1,150,06/02/19 12:45,"265 South St, San Francisco, CA 94016" +219570,Apple Airpods Headphones,1,150,06/06/19 07:37,"991 Jefferson St, San Francisco, CA 94016" +219571,20in Monitor,1,109.99,06/19/19 21:55,"345 Jackson St, New York City, NY 10001" +219572,ThinkPad Laptop,1,999.99,06/22/19 10:58,"503 Meadow St, Los Angeles, CA 90001" +219573,AA Batteries (4-pack),1,3.84,06/11/19 01:09,"444 1st St, New York City, NY 10001" +219574,Apple Airpods Headphones,1,150,06/30/19 19:40,"45 Dogwood St, Portland, OR 97035" +219575,iPhone,1,700,06/06/19 20:34,"144 Cherry St, Atlanta, GA 30301" +219576,34in Ultrawide Monitor,1,379.99,06/12/19 21:40,"168 8th St, San Francisco, CA 94016" +219577,USB-C Charging Cable,1,11.95,06/21/19 10:20,"24 10th St, San Francisco, CA 94016" +219578,AA Batteries (4-pack),1,3.84,06/11/19 08:45,"197 Wilson St, New York City, NY 10001" +219579,27in FHD Monitor,1,149.99,06/16/19 20:43,"168 5th St, San Francisco, CA 94016" +219580,Lightning Charging Cable,1,14.95,06/25/19 09:15,"594 5th St, Los Angeles, CA 90001" +219581,Lightning Charging Cable,1,14.95,06/04/19 05:38,"182 Sunset St, Boston, MA 02215" +219582,Lightning Charging Cable,1,14.95,06/14/19 01:00,"23 Hickory St, New York City, NY 10001" +219583,AA Batteries (4-pack),2,3.84,06/30/19 12:20,"108 Madison St, Dallas, TX 75001" +219584,Bose SoundSport Headphones,1,99.99,06/09/19 16:03,"266 Cherry St, Los Angeles, CA 90001" +219585,27in FHD Monitor,1,149.99,06/30/19 17:32,"926 Spruce St, Los Angeles, CA 90001" +219586,Apple Airpods Headphones,1,150,06/28/19 13:34,"252 Highland St, Atlanta, GA 30301" +219587,AAA Batteries (4-pack),1,2.99,06/11/19 09:39,"696 Hickory St, New York City, NY 10001" +219588,Bose SoundSport Headphones,1,99.99,06/07/19 19:12,"38 Chestnut St, Portland, ME 04101" +219589,Wired Headphones,1,11.99,06/10/19 17:19,"646 5th St, Boston, MA 02215" +219590,27in FHD Monitor,1,149.99,06/29/19 09:45,"863 Walnut St, Los Angeles, CA 90001" +219591,Lightning Charging Cable,1,14.95,06/19/19 23:06,"452 8th St, Seattle, WA 98101" +219592,Wired Headphones,1,11.99,06/11/19 12:17,"681 7th St, San Francisco, CA 94016" +219593,AAA Batteries (4-pack),2,2.99,06/29/19 11:36,"845 River St, Atlanta, GA 30301" +219594,AAA Batteries (4-pack),2,2.99,06/20/19 17:53,"451 Madison St, Los Angeles, CA 90001" +219595,AA Batteries (4-pack),1,3.84,06/01/19 15:37,"243 Walnut St, Boston, MA 02215" +219596,27in 4K Gaming Monitor,1,389.99,06/08/19 12:25,"82 1st St, Los Angeles, CA 90001" +219597,AAA Batteries (4-pack),2,2.99,06/01/19 20:19,"628 Hill St, New York City, NY 10001" +219598,27in FHD Monitor,1,149.99,06/15/19 09:43,"379 Chestnut St, San Francisco, CA 94016" +219599,Bose SoundSport Headphones,1,99.99,06/09/19 21:13,"753 Madison St, Boston, MA 02215" +219600,AAA Batteries (4-pack),1,2.99,06/05/19 11:02,"877 1st St, Dallas, TX 75001" +219601,Lightning Charging Cable,1,14.95,06/19/19 19:14,"909 Spruce St, Boston, MA 02215" +219602,Flatscreen TV,1,300,06/03/19 00:22,"681 Ridge St, San Francisco, CA 94016" +219603,ThinkPad Laptop,1,999.99,06/30/19 01:47,"457 North St, Seattle, WA 98101" +219604,AAA Batteries (4-pack),2,2.99,06/01/19 18:45,"227 14th St, Seattle, WA 98101" +219605,Bose SoundSport Headphones,1,99.99,06/21/19 16:02,"357 6th St, Boston, MA 02215" +219606,AAA Batteries (4-pack),1,2.99,06/02/19 18:54,"478 Lake St, New York City, NY 10001" +219607,iPhone,1,700,06/21/19 23:02,"107 Main St, Los Angeles, CA 90001" +219607,Lightning Charging Cable,2,14.95,06/21/19 23:02,"107 Main St, Los Angeles, CA 90001" +219608,iPhone,1,700,06/28/19 07:29,"997 Johnson St, Atlanta, GA 30301" +219609,Apple Airpods Headphones,1,150,06/26/19 09:27,"671 Lake St, Atlanta, GA 30301" +219610,AA Batteries (4-pack),1,3.84,06/01/19 08:06,"76 Elm St, Portland, OR 97035" +219611,Bose SoundSport Headphones,1,99.99,06/27/19 22:37,"834 Center St, Seattle, WA 98101" +219612,Apple Airpods Headphones,1,150,06/12/19 17:46,"209 Hill St, Austin, TX 73301" +219613,AAA Batteries (4-pack),1,2.99,06/26/19 17:01,"787 5th St, Boston, MA 02215" +219614,Wired Headphones,1,11.99,06/12/19 23:11,"110 South St, Los Angeles, CA 90001" +219615,Google Phone,1,600,06/02/19 17:36,"795 Meadow St, Atlanta, GA 30301" +219616,Wired Headphones,1,11.99,06/16/19 07:47,"76 12th St, Portland, OR 97035" +219617,Bose SoundSport Headphones,1,99.99,06/19/19 19:15,"205 Wilson St, New York City, NY 10001" +,,,,, +219618,AAA Batteries (4-pack),1,2.99,06/04/19 14:51,"730 6th St, Los Angeles, CA 90001" +219619,Google Phone,1,600,06/16/19 21:36,"735 West St, Seattle, WA 98101" +219620,Lightning Charging Cable,1,14.95,06/06/19 11:46,"525 2nd St, San Francisco, CA 94016" +219621,USB-C Charging Cable,1,11.95,07/01/19 00:04,"78 Willow St, Seattle, WA 98101" +219622,27in FHD Monitor,1,149.99,06/04/19 12:49,"884 7th St, San Francisco, CA 94016" +219623,ThinkPad Laptop,1,999.99,06/07/19 08:41,"868 River St, San Francisco, CA 94016" +219624,Wired Headphones,1,11.99,06/30/19 13:06,"84 North St, New York City, NY 10001" +219625,Lightning Charging Cable,1,14.95,06/29/19 15:05,"463 Johnson St, San Francisco, CA 94016" +219626,Bose SoundSport Headphones,1,99.99,06/23/19 03:28,"163 Cherry St, San Francisco, CA 94016" +219627,Google Phone,1,600,06/05/19 13:17,"929 River St, Atlanta, GA 30301" +219628,Wired Headphones,2,11.99,06/23/19 15:43,"954 Forest St, Los Angeles, CA 90001" +219629,AA Batteries (4-pack),1,3.84,06/19/19 22:05,"787 Adams St, Boston, MA 02215" +219630,Wired Headphones,1,11.99,06/11/19 21:24,"268 Jefferson St, Seattle, WA 98101" +219631,Lightning Charging Cable,2,14.95,06/20/19 06:45,"331 Jackson St, Austin, TX 73301" +219632,Google Phone,1,600,06/14/19 11:52,"510 8th St, Boston, MA 02215" +219632,Wired Headphones,1,11.99,06/14/19 11:52,"510 8th St, Boston, MA 02215" +219633,Lightning Charging Cable,1,14.95,06/16/19 12:29,"736 9th St, San Francisco, CA 94016" +219634,AAA Batteries (4-pack),1,2.99,06/27/19 11:44,"518 8th St, San Francisco, CA 94016" +219635,27in 4K Gaming Monitor,1,389.99,06/28/19 14:12,"70 Park St, Boston, MA 02215" +219636,USB-C Charging Cable,1,11.95,06/03/19 06:41,"762 Park St, Seattle, WA 98101" +219637,Wired Headphones,1,11.99,06/14/19 20:27,"804 10th St, Austin, TX 73301" +219638,Flatscreen TV,1,300,06/28/19 09:46,"738 South St, New York City, NY 10001" +219639,AA Batteries (4-pack),1,3.84,06/09/19 05:49,"225 Center St, Los Angeles, CA 90001" +219640,AAA Batteries (4-pack),1,2.99,06/24/19 10:17,"57 Forest St, Austin, TX 73301" +219641,AA Batteries (4-pack),1,3.84,06/21/19 10:53,"246 Hill St, Seattle, WA 98101" +219642,34in Ultrawide Monitor,1,379.99,06/11/19 13:29,"413 9th St, Los Angeles, CA 90001" +219643,AAA Batteries (4-pack),1,2.99,06/17/19 15:07,"699 River St, Los Angeles, CA 90001" +219644,Macbook Pro Laptop,1,1700,06/22/19 00:25,"625 West St, Boston, MA 02215" +219645,USB-C Charging Cable,1,11.95,06/10/19 22:16,"978 Maple St, San Francisco, CA 94016" +219646,AA Batteries (4-pack),1,3.84,06/10/19 21:00,"667 11th St, San Francisco, CA 94016" +219647,ThinkPad Laptop,1,999.99,06/03/19 16:10,"49 10th St, Los Angeles, CA 90001" +219648,Wired Headphones,1,11.99,06/17/19 21:26,"486 Cedar St, New York City, NY 10001" +219649,AAA Batteries (4-pack),1,2.99,06/24/19 08:45,"206 Meadow St, New York City, NY 10001" +219650,34in Ultrawide Monitor,1,379.99,06/27/19 17:50,"79 8th St, Seattle, WA 98101" +219651,AA Batteries (4-pack),1,3.84,06/14/19 20:20,"828 5th St, Atlanta, GA 30301" +219652,Apple Airpods Headphones,1,150,06/25/19 19:19,"775 Hill St, Dallas, TX 75001" +219653,Apple Airpods Headphones,1,150,06/07/19 14:34,"20 West St, Austin, TX 73301" +219654,Bose SoundSport Headphones,1,99.99,06/29/19 16:42,"457 1st St, San Francisco, CA 94016" +219655,AA Batteries (4-pack),1,3.84,06/29/19 09:25,"332 Johnson St, Atlanta, GA 30301" +219656,AAA Batteries (4-pack),1,2.99,06/13/19 14:39,"930 Lincoln St, San Francisco, CA 94016" +219657,Apple Airpods Headphones,1,150,06/04/19 18:35,"817 11th St, Boston, MA 02215" +219658,USB-C Charging Cable,1,11.95,06/02/19 19:51,"481 Forest St, Los Angeles, CA 90001" +219659,Bose SoundSport Headphones,1,99.99,06/17/19 08:34,"783 Forest St, Los Angeles, CA 90001" +219660,AAA Batteries (4-pack),1,2.99,06/01/19 13:14,"420 4th St, Los Angeles, CA 90001" +219661,27in FHD Monitor,1,149.99,06/03/19 13:46,"461 Wilson St, San Francisco, CA 94016" +219662,USB-C Charging Cable,1,11.95,06/07/19 15:40,"155 Center St, San Francisco, CA 94016" +219663,AA Batteries (4-pack),1,3.84,06/23/19 11:15,"585 Walnut St, Boston, MA 02215" +219664,AA Batteries (4-pack),1,3.84,06/04/19 12:24,"906 Main St, San Francisco, CA 94016" +219665,Macbook Pro Laptop,1,1700,06/11/19 13:26,"843 Main St, San Francisco, CA 94016" +219666,AAA Batteries (4-pack),1,2.99,06/18/19 16:25,"996 7th St, Dallas, TX 75001" +219667,USB-C Charging Cable,1,11.95,06/29/19 19:44,"620 Lincoln St, New York City, NY 10001" +219668,AAA Batteries (4-pack),1,2.99,06/12/19 23:50,"309 West St, New York City, NY 10001" +219669,AAA Batteries (4-pack),1,2.99,06/14/19 07:00,"704 Center St, Los Angeles, CA 90001" +219670,27in 4K Gaming Monitor,1,389.99,06/03/19 17:25,"387 River St, Seattle, WA 98101" +219671,20in Monitor,1,109.99,06/27/19 18:06,"143 Hill St, Austin, TX 73301" +219672,USB-C Charging Cable,1,11.95,06/08/19 19:07,"663 Hickory St, San Francisco, CA 94016" +219673,Flatscreen TV,1,300,06/22/19 13:01,"603 Hill St, San Francisco, CA 94016" +219674,iPhone,1,700,06/29/19 17:53,"657 Pine St, Seattle, WA 98101" +219675,Bose SoundSport Headphones,1,99.99,06/17/19 20:13,"533 Jefferson St, New York City, NY 10001" +219676,Lightning Charging Cable,1,14.95,06/19/19 07:05,"902 Adams St, Dallas, TX 75001" +219677,Google Phone,1,600,06/22/19 10:27,"54 Ridge St, Dallas, TX 75001" +219678,Google Phone,1,600,06/11/19 18:32,"915 Sunset St, San Francisco, CA 94016" +219679,AAA Batteries (4-pack),2,2.99,06/14/19 21:05,"824 Maple St, Austin, TX 73301" +219680,Bose SoundSport Headphones,1,99.99,06/25/19 12:51,"383 Maple St, New York City, NY 10001" +219681,Lightning Charging Cable,1,14.95,06/08/19 18:33,"448 13th St, Los Angeles, CA 90001" +219682,AA Batteries (4-pack),1,3.84,06/16/19 00:57,"242 Lake St, New York City, NY 10001" +219683,Lightning Charging Cable,1,14.95,06/05/19 21:20,"638 Walnut St, Boston, MA 02215" +219684,AAA Batteries (4-pack),1,2.99,06/30/19 14:09,"538 Dogwood St, Los Angeles, CA 90001" +219685,AAA Batteries (4-pack),2,2.99,06/29/19 09:28,"135 Cherry St, San Francisco, CA 94016" +219686,iPhone,1,700,06/03/19 13:46,"521 Cedar St, Seattle, WA 98101" +219686,Wired Headphones,1,11.99,06/03/19 13:46,"521 Cedar St, Seattle, WA 98101" +219686,Apple Airpods Headphones,1,150,06/03/19 13:46,"521 Cedar St, Seattle, WA 98101" +219687,20in Monitor,1,109.99,06/04/19 12:51,"63 12th St, Austin, TX 73301" +219688,Bose SoundSport Headphones,1,99.99,06/29/19 15:29,"588 Forest St, Austin, TX 73301" +219689,USB-C Charging Cable,1,11.95,06/15/19 20:01,"910 West St, Boston, MA 02215" +219690,USB-C Charging Cable,1,11.95,06/11/19 17:14,"956 10th St, Seattle, WA 98101" +219691,Lightning Charging Cable,1,14.95,06/15/19 17:56,"111 5th St, San Francisco, CA 94016" +219692,34in Ultrawide Monitor,1,379.99,06/16/19 14:20,"299 2nd St, Austin, TX 73301" +219693,iPhone,1,700,06/02/19 23:36,"707 Lincoln St, Boston, MA 02215" +219693,Wired Headphones,1,11.99,06/02/19 23:36,"707 Lincoln St, Boston, MA 02215" +219694,Wired Headphones,1,11.99,06/04/19 19:46,"312 North St, Portland, ME 04101" +219695,Apple Airpods Headphones,1,150,06/22/19 19:51,"252 Dogwood St, Atlanta, GA 30301" +219696,27in FHD Monitor,1,149.99,06/10/19 11:14,"93 5th St, San Francisco, CA 94016" +219697,Bose SoundSport Headphones,1,99.99,06/04/19 20:39,"345 12th St, Boston, MA 02215" +219698,20in Monitor,1,109.99,06/09/19 11:48,"822 South St, Dallas, TX 75001" +219699,27in 4K Gaming Monitor,1,389.99,06/18/19 08:09,"785 West St, Seattle, WA 98101" +219700,Bose SoundSport Headphones,1,99.99,06/05/19 22:33,"882 Jefferson St, Seattle, WA 98101" +219701,34in Ultrawide Monitor,1,379.99,06/13/19 19:51,"680 7th St, Boston, MA 02215" +219702,AAA Batteries (4-pack),2,2.99,06/06/19 17:21,"754 Elm St, Austin, TX 73301" +219703,Macbook Pro Laptop,1,1700,06/17/19 11:41,"558 Lake St, San Francisco, CA 94016" +219704,AAA Batteries (4-pack),1,2.99,06/17/19 14:30,"264 5th St, Portland, ME 04101" +219705,ThinkPad Laptop,1,999.99,06/10/19 08:05,"874 5th St, Austin, TX 73301" +219706,Lightning Charging Cable,1,14.95,06/02/19 19:37,"148 Hill St, Portland, OR 97035" +219707,Macbook Pro Laptop,1,1700,06/25/19 22:08,"910 North St, San Francisco, CA 94016" +219708,AAA Batteries (4-pack),1,2.99,06/17/19 23:08,"571 Madison St, Los Angeles, CA 90001" +219709,iPhone,1,700,06/28/19 05:31,"200 Madison St, San Francisco, CA 94016" +219710,iPhone,1,700,06/13/19 00:33,"616 Walnut St, Portland, OR 97035" +219711,27in FHD Monitor,1,149.99,06/15/19 15:02,"663 Johnson St, Atlanta, GA 30301" +219712,34in Ultrawide Monitor,1,379.99,06/21/19 20:41,"493 8th St, Dallas, TX 75001" +219713,USB-C Charging Cable,2,11.95,06/14/19 12:02,"20 Jackson St, Boston, MA 02215" +219714,AA Batteries (4-pack),1,3.84,06/22/19 17:17,"419 Center St, Los Angeles, CA 90001" +219715,Wired Headphones,1,11.99,06/29/19 21:46,"373 Lake St, Boston, MA 02215" +219716,AAA Batteries (4-pack),1,2.99,06/16/19 15:45,"318 Willow St, Atlanta, GA 30301" +219717,Vareebadd Phone,1,400,06/27/19 10:11,"482 Johnson St, Boston, MA 02215" +219718,Macbook Pro Laptop,1,1700,06/14/19 07:53,"308 10th St, Los Angeles, CA 90001" +219719,27in 4K Gaming Monitor,1,389.99,06/21/19 19:11,"70 13th St, New York City, NY 10001" +219720,Macbook Pro Laptop,1,1700,06/24/19 09:23,"81 Johnson St, Portland, OR 97035" +219721,Lightning Charging Cable,1,14.95,06/14/19 21:35,"43 Cherry St, Boston, MA 02215" +219722,USB-C Charging Cable,1,11.95,06/27/19 23:02,"293 Highland St, Los Angeles, CA 90001" +219723,27in FHD Monitor,1,149.99,06/07/19 19:05,"194 1st St, New York City, NY 10001" +219724,AA Batteries (4-pack),1,3.84,06/04/19 20:00,"928 13th St, San Francisco, CA 94016" +219725,USB-C Charging Cable,1,11.95,06/06/19 12:33,"740 Johnson St, Los Angeles, CA 90001" +219726,Wired Headphones,1,11.99,06/13/19 12:00,"358 Walnut St, San Francisco, CA 94016" +219727,Wired Headphones,1,11.99,06/25/19 08:59,"845 Hill St, San Francisco, CA 94016" +219728,AA Batteries (4-pack),1,3.84,06/30/19 07:34,"229 4th St, Los Angeles, CA 90001" +219729,AAA Batteries (4-pack),1,2.99,06/13/19 22:31,"508 11th St, San Francisco, CA 94016" +219730,27in FHD Monitor,1,149.99,06/11/19 20:36,"652 Lake St, San Francisco, CA 94016" +219731,20in Monitor,1,109.99,06/11/19 19:29,"467 Hill St, Seattle, WA 98101" +219732,Flatscreen TV,1,300,06/17/19 07:30,"59 Washington St, Los Angeles, CA 90001" +219733,Wired Headphones,1,11.99,06/22/19 13:12,"532 Hickory St, New York City, NY 10001" +219734,Lightning Charging Cable,1,14.95,06/24/19 19:38,"581 Cedar St, Seattle, WA 98101" +219735,AAA Batteries (4-pack),1,2.99,06/02/19 08:43,"529 Main St, Atlanta, GA 30301" +219736,Bose SoundSport Headphones,1,99.99,06/11/19 20:32,"82 Meadow St, Atlanta, GA 30301" +219737,Lightning Charging Cable,1,14.95,06/14/19 22:41,"780 Cherry St, San Francisco, CA 94016" +219738,Apple Airpods Headphones,1,150,06/17/19 23:17,"245 Forest St, Los Angeles, CA 90001" +219738,AAA Batteries (4-pack),1,2.99,06/17/19 23:17,"245 Forest St, Los Angeles, CA 90001" +219739,Lightning Charging Cable,1,14.95,06/21/19 19:33,"917 Pine St, Dallas, TX 75001" +219740,Apple Airpods Headphones,1,150,06/28/19 23:28,"312 Forest St, San Francisco, CA 94016" +219741,ThinkPad Laptop,1,999.99,06/25/19 16:06,"76 Maple St, Los Angeles, CA 90001" +219742,Wired Headphones,1,11.99,06/11/19 18:18,"660 South St, Seattle, WA 98101" +219743,AAA Batteries (4-pack),1,2.99,06/06/19 07:58,"977 9th St, Atlanta, GA 30301" +219744,Lightning Charging Cable,1,14.95,06/29/19 15:00,"365 Johnson St, Los Angeles, CA 90001" +219745,34in Ultrawide Monitor,1,379.99,06/01/19 18:39,"505 Willow St, New York City, NY 10001" +219746,USB-C Charging Cable,1,11.95,06/19/19 13:17,"963 6th St, Portland, OR 97035" +219747,Wired Headphones,1,11.99,06/30/19 13:57,"980 14th St, Portland, OR 97035" +219748,iPhone,1,700,06/13/19 16:50,"224 14th St, Los Angeles, CA 90001" +219749,Macbook Pro Laptop,1,1700,06/06/19 04:45,"795 Jackson St, Portland, OR 97035" +219750,Apple Airpods Headphones,1,150,06/09/19 11:25,"15 Hickory St, San Francisco, CA 94016" +219751,27in FHD Monitor,1,149.99,06/26/19 22:54,"761 13th St, Seattle, WA 98101" +219752,AAA Batteries (4-pack),1,2.99,06/15/19 10:10,"28 11th St, San Francisco, CA 94016" +219753,USB-C Charging Cable,1,11.95,06/11/19 20:18,"522 Johnson St, Dallas, TX 75001" +219754,USB-C Charging Cable,1,11.95,06/10/19 09:45,"673 14th St, San Francisco, CA 94016" +219755,Lightning Charging Cable,1,14.95,06/19/19 21:35,"29 Park St, Seattle, WA 98101" +219756,Bose SoundSport Headphones,1,99.99,06/04/19 04:39,"692 Maple St, Boston, MA 02215" +219757,Lightning Charging Cable,1,14.95,06/01/19 11:02,"938 North St, San Francisco, CA 94016" +219758,34in Ultrawide Monitor,1,379.99,06/27/19 12:49,"894 Adams St, Dallas, TX 75001" +219759,iPhone,1,700,06/09/19 13:17,"35 13th St, Dallas, TX 75001" +219759,Lightning Charging Cable,1,14.95,06/09/19 13:17,"35 13th St, Dallas, TX 75001" +219760,Apple Airpods Headphones,1,150,06/11/19 15:45,"186 Forest St, San Francisco, CA 94016" +219761,Bose SoundSport Headphones,1,99.99,06/07/19 13:49,"917 Ridge St, Portland, ME 04101" +219762,USB-C Charging Cable,1,11.95,06/12/19 20:08,"696 Center St, Atlanta, GA 30301" +219763,Wired Headphones,1,11.99,06/24/19 11:09,"442 8th St, Portland, ME 04101" +219764,Bose SoundSport Headphones,1,99.99,06/28/19 18:45,"349 Willow St, Seattle, WA 98101" +219765,Apple Airpods Headphones,1,150,06/24/19 09:16,"117 Main St, New York City, NY 10001" +219766,AA Batteries (4-pack),1,3.84,06/04/19 14:23,"194 Lincoln St, Austin, TX 73301" +219767,27in 4K Gaming Monitor,1,389.99,06/19/19 09:41,"599 Chestnut St, New York City, NY 10001" +219768,Bose SoundSport Headphones,1,99.99,06/10/19 18:40,"455 Johnson St, Seattle, WA 98101" +219769,USB-C Charging Cable,1,11.95,06/23/19 13:13,"93 Park St, San Francisco, CA 94016" +219770,iPhone,1,700,06/18/19 23:17,"179 11th St, San Francisco, CA 94016" +219771,Apple Airpods Headphones,1,150,06/17/19 18:17,"710 11th St, Portland, OR 97035" +219772,AA Batteries (4-pack),1,3.84,06/18/19 02:17,"859 River St, New York City, NY 10001" +219773,AAA Batteries (4-pack),1,2.99,06/29/19 12:29,"492 6th St, Dallas, TX 75001" +219774,AAA Batteries (4-pack),2,2.99,06/26/19 15:00,"517 Hickory St, Los Angeles, CA 90001" +219775,27in FHD Monitor,1,149.99,06/29/19 19:52,"234 11th St, Boston, MA 02215" +219776,Bose SoundSport Headphones,1,99.99,06/25/19 10:27,"276 13th St, Seattle, WA 98101" +219777,AAA Batteries (4-pack),1,2.99,06/08/19 12:31,"272 Walnut St, San Francisco, CA 94016" +219778,Lightning Charging Cable,2,14.95,06/21/19 08:15,"974 Wilson St, New York City, NY 10001" +219779,AAA Batteries (4-pack),1,2.99,06/03/19 03:16,"840 4th St, San Francisco, CA 94016" +219780,Apple Airpods Headphones,1,150,06/26/19 12:32,"290 Johnson St, Los Angeles, CA 90001" +219780,USB-C Charging Cable,2,11.95,06/26/19 12:32,"290 Johnson St, Los Angeles, CA 90001" +219781,20in Monitor,1,109.99,06/29/19 18:40,"273 Maple St, Boston, MA 02215" +219782,AA Batteries (4-pack),1,3.84,06/04/19 16:43,"272 14th St, Seattle, WA 98101" +219783,AAA Batteries (4-pack),1,2.99,06/16/19 19:32,"359 South St, San Francisco, CA 94016" +219784,Macbook Pro Laptop,1,1700,06/02/19 10:32,"85 Johnson St, San Francisco, CA 94016" +219785,Bose SoundSport Headphones,1,99.99,06/10/19 15:14,"221 Center St, Dallas, TX 75001" +219786,AA Batteries (4-pack),1,3.84,06/03/19 12:39,"642 5th St, San Francisco, CA 94016" +219787,20in Monitor,1,109.99,06/01/19 10:50,"827 13th St, San Francisco, CA 94016" +219788,AA Batteries (4-pack),2,3.84,06/29/19 16:55,"504 13th St, Los Angeles, CA 90001" +219789,Lightning Charging Cable,1,14.95,06/10/19 15:12,"671 Spruce St, Los Angeles, CA 90001" +219790,AAA Batteries (4-pack),1,2.99,06/27/19 18:54,"149 5th St, Dallas, TX 75001" +219791,AA Batteries (4-pack),2,3.84,06/08/19 12:11,"12 Adams St, Los Angeles, CA 90001" +219792,Wired Headphones,1,11.99,06/20/19 15:28,"695 Cherry St, New York City, NY 10001" +219793,20in Monitor,1,109.99,06/25/19 21:40,"809 Hill St, Los Angeles, CA 90001" +219794,Wired Headphones,1,11.99,06/14/19 13:36,"970 9th St, Atlanta, GA 30301" +219795,iPhone,1,700,06/05/19 14:15,"465 Church St, Los Angeles, CA 90001" +219795,Lightning Charging Cable,1,14.95,06/05/19 14:15,"465 Church St, Los Angeles, CA 90001" +219796,Bose SoundSport Headphones,1,99.99,06/12/19 01:33,"563 5th St, Boston, MA 02215" +219797,Bose SoundSport Headphones,1,99.99,06/02/19 16:55,"643 Maple St, San Francisco, CA 94016" +219798,ThinkPad Laptop,1,999.99,06/20/19 21:45,"460 Church St, Boston, MA 02215" +219799,AA Batteries (4-pack),1,3.84,06/27/19 19:18,"356 River St, New York City, NY 10001" +219800,Apple Airpods Headphones,1,150,06/06/19 21:29,"336 11th St, Los Angeles, CA 90001" +219801,Bose SoundSport Headphones,1,99.99,06/17/19 11:56,"957 Dogwood St, San Francisco, CA 94016" +219802,AAA Batteries (4-pack),3,2.99,06/30/19 01:48,"474 Adams St, Portland, ME 04101" +219803,Wired Headphones,1,11.99,06/30/19 19:07,"52 Johnson St, San Francisco, CA 94016" +219804,Lightning Charging Cable,2,14.95,06/11/19 22:02,"868 Center St, San Francisco, CA 94016" +219805,Apple Airpods Headphones,1,150,06/03/19 11:21,"181 Meadow St, San Francisco, CA 94016" +219806,AAA Batteries (4-pack),1,2.99,06/30/19 01:43,"307 Park St, San Francisco, CA 94016" +219807,USB-C Charging Cable,1,11.95,06/17/19 22:11,"966 Jackson St, Atlanta, GA 30301" +219808,USB-C Charging Cable,1,11.95,06/28/19 20:14,"963 Spruce St, New York City, NY 10001" +219809,Wired Headphones,1,11.99,06/29/19 16:10,"136 11th St, Los Angeles, CA 90001" +219810,Bose SoundSport Headphones,1,99.99,06/19/19 13:59,"603 River St, New York City, NY 10001" +219811,27in FHD Monitor,1,149.99,06/16/19 21:05,"885 10th St, New York City, NY 10001" +219812,Wired Headphones,1,11.99,06/15/19 09:50,"434 Jackson St, Boston, MA 02215" +219813,34in Ultrawide Monitor,1,379.99,06/26/19 22:12,"400 Spruce St, Boston, MA 02215" +219814,USB-C Charging Cable,1,11.95,06/22/19 23:29,"538 6th St, New York City, NY 10001" +219815,AAA Batteries (4-pack),1,2.99,06/28/19 01:53,"599 Maple St, New York City, NY 10001" +219816,ThinkPad Laptop,1,999.99,06/24/19 16:47,"852 Park St, Portland, OR 97035" +219817,27in 4K Gaming Monitor,1,389.99,06/06/19 00:27,"979 Johnson St, Atlanta, GA 30301" +219818,USB-C Charging Cable,2,11.95,06/14/19 11:34,"845 7th St, Austin, TX 73301" +219819,Bose SoundSport Headphones,1,99.99,06/15/19 16:38,"928 1st St, Dallas, TX 75001" +219820,Apple Airpods Headphones,1,150,06/02/19 22:36,"350 Meadow St, New York City, NY 10001" +219821,Wired Headphones,1,11.99,06/25/19 08:24,"572 Cherry St, New York City, NY 10001" +219822,Lightning Charging Cable,1,14.95,06/06/19 17:58,"715 2nd St, Dallas, TX 75001" +219823,AAA Batteries (4-pack),2,2.99,06/22/19 16:46,"972 Lincoln St, New York City, NY 10001" +219824,AA Batteries (4-pack),2,3.84,06/04/19 10:28,"403 12th St, Atlanta, GA 30301" +219825,Wired Headphones,1,11.99,06/05/19 20:06,"720 1st St, Atlanta, GA 30301" +219826,Lightning Charging Cable,1,14.95,06/19/19 06:38,"45 Park St, Dallas, TX 75001" +219827,27in FHD Monitor,1,149.99,06/30/19 16:23,"613 Hill St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +219828,Lightning Charging Cable,1,14.95,06/08/19 18:19,"232 6th St, Seattle, WA 98101" +219829,AAA Batteries (4-pack),1,2.99,06/29/19 11:12,"479 6th St, San Francisco, CA 94016" +219830,Google Phone,1,600,06/04/19 18:53,"911 8th St, Seattle, WA 98101" +219831,27in 4K Gaming Monitor,1,389.99,06/01/19 12:30,"858 9th St, San Francisco, CA 94016" +219832,Google Phone,1,600,06/22/19 07:16,"120 Meadow St, San Francisco, CA 94016" +219833,AA Batteries (4-pack),2,3.84,06/27/19 17:47,"835 Center St, San Francisco, CA 94016" +219834,AAA Batteries (4-pack),1,2.99,06/17/19 18:20,"967 Lakeview St, San Francisco, CA 94016" +219835,iPhone,1,700,06/03/19 11:07,"650 Sunset St, Los Angeles, CA 90001" +219836,AAA Batteries (4-pack),1,2.99,06/08/19 22:03,"103 Jefferson St, Los Angeles, CA 90001" +219837,Lightning Charging Cable,1,14.95,06/02/19 15:44,"328 North St, Los Angeles, CA 90001" +219838,AA Batteries (4-pack),1,3.84,06/18/19 12:22,"579 Spruce St, Seattle, WA 98101" +219838,27in FHD Monitor,1,149.99,06/18/19 12:22,"579 Spruce St, Seattle, WA 98101" +219839,AAA Batteries (4-pack),2,2.99,06/05/19 02:35,"158 9th St, Portland, ME 04101" +219840,27in 4K Gaming Monitor,1,389.99,06/26/19 10:09,"289 Center St, Boston, MA 02215" +219841,Google Phone,1,600,06/02/19 18:36,"761 11th St, Seattle, WA 98101" +219842,AA Batteries (4-pack),1,3.84,06/25/19 00:23,"683 12th St, New York City, NY 10001" +219843,Bose SoundSport Headphones,1,99.99,06/11/19 21:22,"111 Cedar St, Boston, MA 02215" +219844,Wired Headphones,1,11.99,06/04/19 17:08,"912 1st St, Boston, MA 02215" +219845,20in Monitor,1,109.99,06/11/19 19:43,"527 Willow St, Seattle, WA 98101" +219846,iPhone,1,700,06/11/19 18:14,"807 14th St, San Francisco, CA 94016" +219846,Apple Airpods Headphones,1,150,06/11/19 18:14,"807 14th St, San Francisco, CA 94016" +219847,AA Batteries (4-pack),1,3.84,06/20/19 14:56,"430 9th St, Atlanta, GA 30301" +219848,USB-C Charging Cable,1,11.95,06/10/19 20:43,"717 Maple St, Portland, OR 97035" +219849,USB-C Charging Cable,1,11.95,06/19/19 22:34,"692 9th St, Portland, OR 97035" +219850,iPhone,1,700,06/12/19 21:07,"946 Lincoln St, Dallas, TX 75001" +219851,Wired Headphones,1,11.99,06/07/19 14:17,"202 10th St, New York City, NY 10001" +219852,USB-C Charging Cable,1,11.95,06/22/19 20:58,"677 8th St, Boston, MA 02215" +219853,AAA Batteries (4-pack),2,2.99,06/13/19 18:21,"779 Cedar St, Boston, MA 02215" +219854,Bose SoundSport Headphones,1,99.99,06/01/19 11:35,"669 Lakeview St, Austin, TX 73301" +219855,34in Ultrawide Monitor,1,379.99,06/06/19 08:40,"459 Wilson St, Dallas, TX 75001" +219856,AAA Batteries (4-pack),4,2.99,06/04/19 09:30,"279 Center St, Atlanta, GA 30301" +219857,Apple Airpods Headphones,1,150,06/26/19 13:07,"133 Main St, Seattle, WA 98101" +219858,Lightning Charging Cable,1,14.95,06/26/19 10:55,"738 Maple St, Los Angeles, CA 90001" +219859,Apple Airpods Headphones,1,150,06/10/19 20:43,"767 Pine St, Austin, TX 73301" +219860,Lightning Charging Cable,1,14.95,06/07/19 11:54,"708 6th St, Dallas, TX 75001" +219861,Lightning Charging Cable,1,14.95,06/12/19 10:52,"330 9th St, Los Angeles, CA 90001" +219862,USB-C Charging Cable,1,11.95,06/23/19 13:24,"131 North St, Los Angeles, CA 90001" +219863,ThinkPad Laptop,1,999.99,06/07/19 21:29,"119 Johnson St, Atlanta, GA 30301" +219864,Wired Headphones,1,11.99,06/12/19 15:35,"734 Willow St, Los Angeles, CA 90001" +219865,Wired Headphones,1,11.99,06/25/19 18:09,"108 Chestnut St, San Francisco, CA 94016" +219866,USB-C Charging Cable,1,11.95,06/10/19 15:22,"513 Church St, New York City, NY 10001" +219867,Lightning Charging Cable,1,14.95,06/12/19 12:58,"46 Park St, San Francisco, CA 94016" +219868,Wired Headphones,1,11.99,06/18/19 17:26,"83 Park St, Portland, OR 97035" +219869,USB-C Charging Cable,1,11.95,06/01/19 19:37,"182 Park St, Boston, MA 02215" +219870,Flatscreen TV,1,300,06/11/19 22:59,"597 Washington St, San Francisco, CA 94016" +219870,iPhone,1,700,06/11/19 22:59,"597 Washington St, San Francisco, CA 94016" +219871,Wired Headphones,1,11.99,06/29/19 18:20,"442 Spruce St, New York City, NY 10001" +219872,iPhone,1,700,06/18/19 13:45,"49 Sunset St, San Francisco, CA 94016" +219873,Lightning Charging Cable,1,14.95,06/01/19 21:01,"613 2nd St, Dallas, TX 75001" +219874,AAA Batteries (4-pack),1,2.99,06/24/19 17:37,"568 North St, Dallas, TX 75001" +219875,Wired Headphones,1,11.99,06/06/19 17:49,"784 Meadow St, Los Angeles, CA 90001" +,,,,, +219876,27in FHD Monitor,1,149.99,06/18/19 02:51,"257 Chestnut St, Dallas, TX 75001" +219877,AA Batteries (4-pack),1,3.84,06/28/19 17:27,"436 7th St, Seattle, WA 98101" +219878,AAA Batteries (4-pack),2,2.99,06/11/19 07:05,"757 Chestnut St, Portland, OR 97035" +219879,20in Monitor,1,109.99,06/24/19 10:50,"798 Hickory St, Seattle, WA 98101" +219880,Bose SoundSport Headphones,1,99.99,06/16/19 16:05,"239 Jackson St, San Francisco, CA 94016" +219881,Lightning Charging Cable,1,14.95,06/20/19 09:29,"371 8th St, Portland, ME 04101" +219881,Wired Headphones,1,11.99,06/20/19 09:29,"371 8th St, Portland, ME 04101" +219882,Bose SoundSport Headphones,1,99.99,06/28/19 21:42,"921 Spruce St, San Francisco, CA 94016" +219883,Wired Headphones,1,11.99,06/04/19 17:20,"181 Chestnut St, Boston, MA 02215" +219884,Bose SoundSport Headphones,1,99.99,06/27/19 09:55,"365 Jackson St, Boston, MA 02215" +219885,Wired Headphones,1,11.99,06/14/19 11:27,"722 Madison St, San Francisco, CA 94016" +219886,Flatscreen TV,1,300,06/24/19 21:02,"123 South St, Boston, MA 02215" +219887,Flatscreen TV,1,300,06/30/19 21:58,"939 Walnut St, San Francisco, CA 94016" +219888,Lightning Charging Cable,1,14.95,06/13/19 19:44,"864 5th St, San Francisco, CA 94016" +219889,AAA Batteries (4-pack),1,2.99,06/02/19 07:25,"257 7th St, New York City, NY 10001" +219890,Lightning Charging Cable,1,14.95,06/04/19 12:26,"533 Ridge St, Los Angeles, CA 90001" +219891,Wired Headphones,1,11.99,06/20/19 23:36,"232 Highland St, Los Angeles, CA 90001" +219892,Bose SoundSport Headphones,1,99.99,06/10/19 21:17,"872 6th St, Boston, MA 02215" +219893,Wired Headphones,1,11.99,06/09/19 16:18,"134 Jackson St, Atlanta, GA 30301" +219894,Apple Airpods Headphones,1,150,06/28/19 13:02,"548 Elm St, Los Angeles, CA 90001" +219895,Apple Airpods Headphones,1,150,06/02/19 15:45,"578 13th St, Los Angeles, CA 90001" +219896,27in FHD Monitor,1,149.99,06/07/19 21:44,"215 Sunset St, Dallas, TX 75001" +219897,20in Monitor,1,109.99,06/02/19 22:04,"59 1st St, Atlanta, GA 30301" +219898,Apple Airpods Headphones,1,150,06/29/19 16:41,"779 Sunset St, San Francisco, CA 94016" +219899,AA Batteries (4-pack),1,3.84,06/21/19 03:55,"95 North St, New York City, NY 10001" +219900,USB-C Charging Cable,1,11.95,06/14/19 18:27,"626 Johnson St, Boston, MA 02215" +219901,Bose SoundSport Headphones,1,99.99,06/28/19 03:07,"546 North St, Seattle, WA 98101" +219902,20in Monitor,1,109.99,06/02/19 14:04,"100 4th St, Los Angeles, CA 90001" +219903,Google Phone,1,600,06/18/19 13:31,"83 Sunset St, Dallas, TX 75001" +219903,USB-C Charging Cable,1,11.95,06/18/19 13:31,"83 Sunset St, Dallas, TX 75001" +219903,Bose SoundSport Headphones,1,99.99,06/18/19 13:31,"83 Sunset St, Dallas, TX 75001" +219904,Wired Headphones,1,11.99,06/12/19 17:46,"626 Ridge St, Seattle, WA 98101" +219905,Lightning Charging Cable,2,14.95,06/07/19 12:49,"2 4th St, New York City, NY 10001" +219906,USB-C Charging Cable,1,11.95,06/04/19 12:20,"31 5th St, San Francisco, CA 94016" +219907,Flatscreen TV,1,300,06/10/19 07:07,"789 2nd St, Los Angeles, CA 90001" +219908,USB-C Charging Cable,1,11.95,06/13/19 18:44,"272 5th St, Dallas, TX 75001" +219909,AAA Batteries (4-pack),4,2.99,06/02/19 13:23,"723 West St, Portland, ME 04101" +219910,Macbook Pro Laptop,1,1700,06/05/19 22:33,"854 Adams St, Boston, MA 02215" +219911,Wired Headphones,1,11.99,06/29/19 10:59,"462 10th St, Seattle, WA 98101" +219912,Apple Airpods Headphones,1,150,06/21/19 06:11,"185 Highland St, Boston, MA 02215" +219913,Apple Airpods Headphones,1,150,06/08/19 21:02,"115 Cedar St, Austin, TX 73301" +219914,AAA Batteries (4-pack),1,2.99,06/15/19 10:38,"761 River St, Dallas, TX 75001" +219915,Wired Headphones,1,11.99,06/20/19 00:53,"455 Highland St, Los Angeles, CA 90001" +219916,Wired Headphones,1,11.99,06/08/19 10:27,"490 Forest St, Dallas, TX 75001" +219917,AA Batteries (4-pack),1,3.84,06/30/19 22:42,"701 Cherry St, San Francisco, CA 94016" +219918,Flatscreen TV,1,300,06/05/19 13:42,"310 Sunset St, San Francisco, CA 94016" +219919,USB-C Charging Cable,1,11.95,06/26/19 23:10,"676 Ridge St, San Francisco, CA 94016" +219920,Apple Airpods Headphones,1,150,06/14/19 23:03,"985 River St, Austin, TX 73301" +219921,34in Ultrawide Monitor,1,379.99,06/27/19 07:10,"457 6th St, Atlanta, GA 30301" +219922,Lightning Charging Cable,1,14.95,06/18/19 12:50,"137 7th St, New York City, NY 10001" +219923,Apple Airpods Headphones,1,150,06/15/19 18:33,"179 Maple St, Boston, MA 02215" +219924,Macbook Pro Laptop,1,1700,06/20/19 13:05,"523 Elm St, Boston, MA 02215" +219925,USB-C Charging Cable,1,11.95,06/21/19 10:57,"363 Ridge St, Boston, MA 02215" +219926,Apple Airpods Headphones,1,150,06/23/19 12:22,"154 11th St, New York City, NY 10001" +219927,Lightning Charging Cable,1,14.95,06/21/19 02:47,"454 2nd St, Los Angeles, CA 90001" +219928,AAA Batteries (4-pack),1,2.99,06/04/19 09:41,"162 Cherry St, Dallas, TX 75001" +219929,Bose SoundSport Headphones,1,99.99,06/05/19 20:29,"65 Forest St, Los Angeles, CA 90001" +219930,27in 4K Gaming Monitor,1,389.99,06/14/19 13:50,"940 Cherry St, New York City, NY 10001" +219931,Flatscreen TV,1,300,06/28/19 13:43,"254 Cedar St, Atlanta, GA 30301" +219932,Apple Airpods Headphones,1,150,06/10/19 11:38,"249 Walnut St, Boston, MA 02215" +219933,USB-C Charging Cable,2,11.95,06/16/19 18:01,"275 Church St, New York City, NY 10001" +219934,27in FHD Monitor,1,149.99,06/25/19 15:57,"672 Jefferson St, Portland, OR 97035" +219935,USB-C Charging Cable,1,11.95,06/21/19 21:20,"777 Highland St, Los Angeles, CA 90001" +219936,Wired Headphones,1,11.99,06/17/19 06:29,"227 9th St, San Francisco, CA 94016" +219937,Wired Headphones,1,11.99,06/06/19 13:28,"246 Forest St, Los Angeles, CA 90001" +219938,Bose SoundSport Headphones,1,99.99,06/25/19 14:18,"197 Lake St, Los Angeles, CA 90001" +219939,AA Batteries (4-pack),1,3.84,06/18/19 15:13,"705 Sunset St, Atlanta, GA 30301" +219940,USB-C Charging Cable,1,11.95,06/22/19 09:48,"85 2nd St, San Francisco, CA 94016" +219941,Apple Airpods Headphones,1,150,06/19/19 18:27,"546 West St, New York City, NY 10001" +219942,Lightning Charging Cable,1,14.95,06/16/19 14:36,"748 Elm St, Dallas, TX 75001" +219943,iPhone,1,700,06/17/19 13:26,"514 2nd St, New York City, NY 10001" +219943,Apple Airpods Headphones,1,150,06/17/19 13:26,"514 2nd St, New York City, NY 10001" +219944,Lightning Charging Cable,1,14.95,06/03/19 10:50,"543 11th St, Atlanta, GA 30301" +219945,Wired Headphones,1,11.99,06/12/19 15:04,"396 Sunset St, New York City, NY 10001" +219946,Lightning Charging Cable,1,14.95,06/29/19 20:15,"33 14th St, San Francisco, CA 94016" +219947,Flatscreen TV,1,300,06/24/19 13:28,"886 Adams St, San Francisco, CA 94016" +219948,AAA Batteries (4-pack),1,2.99,06/20/19 02:17,"177 Madison St, Los Angeles, CA 90001" +219949,AAA Batteries (4-pack),1,2.99,06/10/19 01:37,"752 Hill St, Austin, TX 73301" +219950,iPhone,1,700,06/27/19 13:21,"443 1st St, New York City, NY 10001" +219951,Google Phone,1,600,06/21/19 15:45,"648 Hill St, Los Angeles, CA 90001" +219951,USB-C Charging Cable,1,11.95,06/21/19 15:45,"648 Hill St, Los Angeles, CA 90001" +219952,Bose SoundSport Headphones,1,99.99,06/11/19 10:17,"997 12th St, San Francisco, CA 94016" +219953,Wired Headphones,2,11.99,06/27/19 21:42,"274 12th St, Boston, MA 02215" +219954,27in 4K Gaming Monitor,1,389.99,06/10/19 18:32,"657 Dogwood St, Atlanta, GA 30301" +219955,AAA Batteries (4-pack),1,2.99,06/23/19 09:26,"939 Johnson St, Los Angeles, CA 90001" +219956,Wired Headphones,1,11.99,06/08/19 13:01,"600 6th St, Los Angeles, CA 90001" +219957,ThinkPad Laptop,1,999.99,06/13/19 21:18,"745 Sunset St, Los Angeles, CA 90001" +219958,USB-C Charging Cable,2,11.95,06/26/19 22:01,"752 South St, Atlanta, GA 30301" +219959,AA Batteries (4-pack),2,3.84,06/13/19 08:07,"969 Chestnut St, Dallas, TX 75001" +219960,AA Batteries (4-pack),1,3.84,06/21/19 19:18,"321 Park St, San Francisco, CA 94016" +219961,27in FHD Monitor,1,149.99,06/21/19 17:36,"838 Walnut St, Atlanta, GA 30301" +219962,USB-C Charging Cable,1,11.95,06/13/19 22:23,"903 2nd St, Boston, MA 02215" +219963,27in FHD Monitor,1,149.99,06/16/19 23:16,"453 Madison St, San Francisco, CA 94016" +219964,Wired Headphones,1,11.99,06/21/19 15:25,"144 Spruce St, Los Angeles, CA 90001" +219965,ThinkPad Laptop,1,999.99,06/15/19 15:12,"182 Johnson St, Atlanta, GA 30301" +219966,Apple Airpods Headphones,1,150,06/25/19 03:23,"637 2nd St, New York City, NY 10001" +219967,USB-C Charging Cable,1,11.95,06/09/19 13:24,"952 14th St, Atlanta, GA 30301" +219968,AA Batteries (4-pack),1,3.84,06/18/19 14:27,"411 Willow St, New York City, NY 10001" +219969,Macbook Pro Laptop,1,1700,06/04/19 12:13,"53 12th St, Los Angeles, CA 90001" +219970,iPhone,1,700,06/09/19 22:35,"941 13th St, Los Angeles, CA 90001" +219970,Apple Airpods Headphones,1,150,06/09/19 22:35,"941 13th St, Los Angeles, CA 90001" +219971,Wired Headphones,1,11.99,06/23/19 17:18,"381 Lakeview St, Boston, MA 02215" +219972,Wired Headphones,1,11.99,06/16/19 08:45,"640 Johnson St, Boston, MA 02215" +219973,Lightning Charging Cable,1,14.95,06/09/19 07:48,"276 Meadow St, San Francisco, CA 94016" +219974,Lightning Charging Cable,1,14.95,06/26/19 11:28,"528 Spruce St, New York City, NY 10001" +219975,AAA Batteries (4-pack),1,2.99,06/19/19 15:43,"357 Maple St, New York City, NY 10001" +219976,AA Batteries (4-pack),4,3.84,06/17/19 23:51,"325 Elm St, Los Angeles, CA 90001" +219977,USB-C Charging Cable,1,11.95,06/22/19 18:59,"689 Forest St, Los Angeles, CA 90001" +219978,Bose SoundSport Headphones,1,99.99,06/18/19 14:53,"474 Pine St, Dallas, TX 75001" +219979,AA Batteries (4-pack),2,3.84,06/02/19 13:56,"461 1st St, New York City, NY 10001" +219980,Bose SoundSport Headphones,1,99.99,06/24/19 11:10,"385 9th St, Dallas, TX 75001" +,,,,, +219981,Bose SoundSport Headphones,1,99.99,06/28/19 10:14,"33 West St, San Francisco, CA 94016" +219982,Wired Headphones,1,11.99,06/02/19 17:40,"283 Jackson St, Seattle, WA 98101" +219983,Google Phone,1,600,06/01/19 19:01,"546 Lincoln St, New York City, NY 10001" +219984,Wired Headphones,1,11.99,06/13/19 12:10,"273 Main St, Seattle, WA 98101" +219985,USB-C Charging Cable,2,11.95,06/07/19 10:05,"333 Wilson St, Dallas, TX 75001" +219986,AAA Batteries (4-pack),1,2.99,06/22/19 23:15,"966 Johnson St, Atlanta, GA 30301" +219987,AAA Batteries (4-pack),1,2.99,06/16/19 17:48,"659 Elm St, Los Angeles, CA 90001" +219988,Flatscreen TV,1,300,06/30/19 14:11,"948 Walnut St, Austin, TX 73301" +219989,Lightning Charging Cable,1,14.95,06/10/19 18:57,"318 Hill St, San Francisco, CA 94016" +219990,Wired Headphones,1,11.99,06/01/19 09:18,"13 Pine St, San Francisco, CA 94016" +219991,AAA Batteries (4-pack),1,2.99,06/30/19 12:48,"704 7th St, Portland, OR 97035" +219992,27in 4K Gaming Monitor,1,389.99,06/17/19 21:45,"457 12th St, Austin, TX 73301" +219993,iPhone,1,700,06/02/19 13:36,"58 Pine St, New York City, NY 10001" +219994,Apple Airpods Headphones,1,150,06/10/19 09:54,"454 Washington St, Boston, MA 02215" +219995,Apple Airpods Headphones,1,150,06/26/19 03:52,"440 10th St, San Francisco, CA 94016" +219996,27in 4K Gaming Monitor,1,389.99,06/29/19 12:17,"996 South St, San Francisco, CA 94016" +219997,USB-C Charging Cable,1,11.95,06/22/19 13:04,"181 14th St, Boston, MA 02215" +219998,Wired Headphones,1,11.99,06/04/19 08:21,"975 1st St, San Francisco, CA 94016" +219998,USB-C Charging Cable,1,11.95,06/04/19 08:21,"975 1st St, San Francisco, CA 94016" +219999,27in FHD Monitor,1,149.99,06/21/19 09:13,"381 Wilson St, Boston, MA 02215" +220000,27in 4K Gaming Monitor,1,389.99,06/12/19 12:25,"752 Lincoln St, San Francisco, CA 94016" +220001,20in Monitor,1,109.99,06/29/19 19:04,"909 Lakeview St, Portland, ME 04101" +220002,Wired Headphones,1,11.99,06/29/19 18:27,"523 4th St, Atlanta, GA 30301" +220003,AAA Batteries (4-pack),1,2.99,06/04/19 22:51,"411 Maple St, Los Angeles, CA 90001" +220004,Apple Airpods Headphones,1,150,06/28/19 06:17,"312 West St, Austin, TX 73301" +220005,Wired Headphones,1,11.99,06/30/19 12:28,"461 West St, San Francisco, CA 94016" +220006,Bose SoundSport Headphones,1,99.99,06/04/19 19:01,"763 Wilson St, Boston, MA 02215" +220007,Bose SoundSport Headphones,1,99.99,06/07/19 08:09,"486 Lake St, San Francisco, CA 94016" +220008,AA Batteries (4-pack),1,3.84,06/23/19 08:55,"593 Jackson St, New York City, NY 10001" +220009,USB-C Charging Cable,1,11.95,06/09/19 21:06,"999 Cedar St, Boston, MA 02215" +220010,USB-C Charging Cable,1,11.95,06/22/19 01:48,"100 Lake St, Seattle, WA 98101" +220011,Wired Headphones,1,11.99,06/04/19 21:24,"369 West St, Boston, MA 02215" +220012,AAA Batteries (4-pack),2,2.99,06/25/19 08:54,"214 Sunset St, Austin, TX 73301" +220013,34in Ultrawide Monitor,1,379.99,06/22/19 15:42,"321 1st St, Los Angeles, CA 90001" +220014,34in Ultrawide Monitor,1,379.99,06/06/19 00:49,"454 4th St, Atlanta, GA 30301" +220015,ThinkPad Laptop,1,999.99,06/20/19 13:52,"388 Lake St, San Francisco, CA 94016" +220016,Macbook Pro Laptop,1,1700,06/20/19 15:37,"675 1st St, Los Angeles, CA 90001" +220016,AAA Batteries (4-pack),1,2.99,06/20/19 15:37,"675 1st St, Los Angeles, CA 90001" +220017,Bose SoundSport Headphones,1,99.99,06/26/19 02:29,"73 Center St, New York City, NY 10001" +220018,AA Batteries (4-pack),1,3.84,06/11/19 23:56,"803 Madison St, Los Angeles, CA 90001" +220019,USB-C Charging Cable,1,11.95,06/06/19 15:41,"632 Washington St, Portland, OR 97035" +220020,AAA Batteries (4-pack),6,2.99,06/14/19 11:54,"244 West St, Austin, TX 73301" +220021,Apple Airpods Headphones,1,150,06/11/19 05:04,"188 Chestnut St, Boston, MA 02215" +220022,AAA Batteries (4-pack),1,2.99,06/25/19 06:53,"699 Ridge St, New York City, NY 10001" +220023,iPhone,1,700,06/23/19 10:15,"334 Sunset St, New York City, NY 10001" +220023,Lightning Charging Cable,1,14.95,06/23/19 10:15,"334 Sunset St, New York City, NY 10001" +220023,Wired Headphones,1,11.99,06/23/19 10:15,"334 Sunset St, New York City, NY 10001" +220024,Google Phone,1,600,06/20/19 16:24,"37 Main St, San Francisco, CA 94016" +220024,USB-C Charging Cable,1,11.95,06/20/19 16:24,"37 Main St, San Francisco, CA 94016" +220025,34in Ultrawide Monitor,1,379.99,06/22/19 18:16,"926 Cedar St, Portland, OR 97035" +220026,Vareebadd Phone,1,400,06/04/19 13:32,"834 River St, San Francisco, CA 94016" +220027,Lightning Charging Cable,1,14.95,06/12/19 17:51,"908 1st St, Seattle, WA 98101" +220028,Google Phone,1,600,06/17/19 16:00,"35 Cherry St, New York City, NY 10001" +220029,20in Monitor,1,109.99,06/26/19 12:23,"981 Center St, San Francisco, CA 94016" +220030,USB-C Charging Cable,1,11.95,06/07/19 18:38,"579 Main St, Los Angeles, CA 90001" +220031,Apple Airpods Headphones,1,150,06/16/19 10:42,"952 Meadow St, Los Angeles, CA 90001" +220032,Apple Airpods Headphones,1,150,06/25/19 22:08,"471 Pine St, Portland, ME 04101" +220033,AAA Batteries (4-pack),1,2.99,06/25/19 19:21,"166 Highland St, Austin, TX 73301" +220034,Apple Airpods Headphones,1,150,06/26/19 15:53,"372 Wilson St, San Francisco, CA 94016" +220035,Flatscreen TV,1,300,06/12/19 19:33,"843 Walnut St, Seattle, WA 98101" +220036,Lightning Charging Cable,1,14.95,06/29/19 12:26,"420 6th St, Los Angeles, CA 90001" +220037,27in FHD Monitor,1,149.99,06/02/19 20:56,"411 Hickory St, Austin, TX 73301" +220038,AAA Batteries (4-pack),3,2.99,06/03/19 14:22,"313 Maple St, Boston, MA 02215" +220039,Bose SoundSport Headphones,1,99.99,06/21/19 00:06,"212 14th St, Los Angeles, CA 90001" +220040,34in Ultrawide Monitor,1,379.99,06/28/19 20:44,"308 Lakeview St, San Francisco, CA 94016" +220041,Wired Headphones,1,11.99,06/11/19 18:22,"952 Sunset St, Los Angeles, CA 90001" +220042,AAA Batteries (4-pack),2,2.99,06/18/19 22:16,"261 Dogwood St, Austin, TX 73301" +220043,Lightning Charging Cable,1,14.95,06/03/19 14:59,"860 Adams St, Austin, TX 73301" +220044,34in Ultrawide Monitor,1,379.99,06/16/19 12:57,"726 Park St, Portland, ME 04101" +220045,Wired Headphones,1,11.99,06/07/19 22:27,"884 Sunset St, Los Angeles, CA 90001" +220046,Lightning Charging Cable,1,14.95,06/18/19 21:02,"895 South St, San Francisco, CA 94016" +220047,Apple Airpods Headphones,1,150,06/12/19 20:07,"528 Jackson St, Austin, TX 73301" +220048,Apple Airpods Headphones,1,150,06/11/19 14:19,"26 Forest St, New York City, NY 10001" +220049,AA Batteries (4-pack),1,3.84,06/22/19 18:37,"405 Lakeview St, Seattle, WA 98101" +220050,Wired Headphones,1,11.99,06/15/19 22:20,"824 Lincoln St, Portland, OR 97035" +220051,Wired Headphones,1,11.99,06/08/19 09:30,"677 Forest St, Atlanta, GA 30301" +220052,ThinkPad Laptop,1,999.99,06/13/19 11:47,"832 Willow St, Boston, MA 02215" +220053,USB-C Charging Cable,1,11.95,06/10/19 22:44,"266 Wilson St, New York City, NY 10001" +220054,AA Batteries (4-pack),1,3.84,06/23/19 22:36,"263 Main St, Boston, MA 02215" +220055,AAA Batteries (4-pack),1,2.99,06/30/19 11:14,"739 Lincoln St, San Francisco, CA 94016" +220056,AAA Batteries (4-pack),1,2.99,06/20/19 17:35,"145 2nd St, Austin, TX 73301" +220057,USB-C Charging Cable,1,11.95,06/01/19 11:27,"969 Meadow St, New York City, NY 10001" +220058,AA Batteries (4-pack),1,3.84,06/02/19 15:39,"183 Hickory St, Los Angeles, CA 90001" +220059,ThinkPad Laptop,1,999.99,06/20/19 17:29,"82 Lincoln St, Los Angeles, CA 90001" +220060,Wired Headphones,2,11.99,06/13/19 22:31,"16 4th St, Atlanta, GA 30301" +220061,27in 4K Gaming Monitor,1,389.99,06/27/19 11:00,"344 5th St, New York City, NY 10001" +220062,USB-C Charging Cable,1,11.95,06/23/19 10:17,"835 Ridge St, New York City, NY 10001" +220063,Lightning Charging Cable,1,14.95,06/12/19 21:07,"726 Highland St, Seattle, WA 98101" +220064,Apple Airpods Headphones,1,150,06/26/19 16:32,"666 5th St, Boston, MA 02215" +220065,Google Phone,1,600,06/20/19 20:19,"835 Madison St, San Francisco, CA 94016" +220066,AAA Batteries (4-pack),1,2.99,06/08/19 20:02,"912 Main St, Dallas, TX 75001" +220067,USB-C Charging Cable,1,11.95,06/27/19 08:43,"989 10th St, Austin, TX 73301" +220068,AA Batteries (4-pack),1,3.84,06/30/19 12:58,"958 Lakeview St, Austin, TX 73301" +220069,ThinkPad Laptop,1,999.99,06/24/19 18:32,"588 14th St, San Francisco, CA 94016" +220070,34in Ultrawide Monitor,1,379.99,06/09/19 17:30,"950 Johnson St, Los Angeles, CA 90001" +220071,Bose SoundSport Headphones,1,99.99,06/09/19 11:26,"341 Highland St, Los Angeles, CA 90001" +220072,Bose SoundSport Headphones,1,99.99,06/25/19 19:41,"440 Jackson St, Boston, MA 02215" +220073,USB-C Charging Cable,1,11.95,06/22/19 16:43,"922 13th St, New York City, NY 10001" +220074,34in Ultrawide Monitor,1,379.99,06/04/19 07:50,"147 Main St, Seattle, WA 98101" +220075,Vareebadd Phone,1,400,06/03/19 13:48,"795 9th St, San Francisco, CA 94016" +220075,Bose SoundSport Headphones,1,99.99,06/03/19 13:48,"795 9th St, San Francisco, CA 94016" +220076,AA Batteries (4-pack),1,3.84,06/11/19 20:24,"939 9th St, San Francisco, CA 94016" +220077,Lightning Charging Cable,1,14.95,06/21/19 16:42,"239 Maple St, San Francisco, CA 94016" +220078,Vareebadd Phone,1,400,06/08/19 21:41,"619 Chestnut St, Boston, MA 02215" +220078,Wired Headphones,1,11.99,06/08/19 21:41,"619 Chestnut St, Boston, MA 02215" +220079,Apple Airpods Headphones,1,150,06/08/19 16:20,"850 Meadow St, San Francisco, CA 94016" +220080,Wired Headphones,1,11.99,06/05/19 13:00,"482 12th St, Boston, MA 02215" +220081,iPhone,1,700,06/26/19 22:36,"724 Hickory St, New York City, NY 10001" +220082,Google Phone,1,600,06/25/19 15:46,"546 Lake St, New York City, NY 10001" +220082,USB-C Charging Cable,1,11.95,06/25/19 15:46,"546 Lake St, New York City, NY 10001" +220083,27in FHD Monitor,1,149.99,06/07/19 19:26,"751 12th St, New York City, NY 10001" +220083,Bose SoundSport Headphones,1,99.99,06/07/19 19:26,"751 12th St, New York City, NY 10001" +220084,ThinkPad Laptop,1,999.99,06/14/19 18:58,"519 Cherry St, New York City, NY 10001" +220085,AAA Batteries (4-pack),1,2.99,06/19/19 15:05,"820 Sunset St, Austin, TX 73301" +220086,AA Batteries (4-pack),1,3.84,06/09/19 22:26,"925 Center St, Los Angeles, CA 90001" +220087,Wired Headphones,1,11.99,06/24/19 15:12,"708 10th St, San Francisco, CA 94016" +220088,Wired Headphones,1,11.99,06/04/19 19:48,"276 Meadow St, New York City, NY 10001" +220089,ThinkPad Laptop,1,999.99,06/19/19 07:26,"158 Ridge St, New York City, NY 10001" +220090,AAA Batteries (4-pack),1,2.99,06/22/19 14:05,"566 7th St, New York City, NY 10001" +220091,27in FHD Monitor,1,149.99,06/25/19 18:26,"555 Park St, Los Angeles, CA 90001" +220092,AA Batteries (4-pack),1,3.84,06/01/19 15:18,"251 12th St, Dallas, TX 75001" +220093,34in Ultrawide Monitor,1,379.99,06/02/19 10:29,"563 Maple St, Boston, MA 02215" +220094,Lightning Charging Cable,1,14.95,06/07/19 17:44,"572 12th St, New York City, NY 10001" +220095,USB-C Charging Cable,1,11.95,06/11/19 16:42,"193 2nd St, New York City, NY 10001" +220096,34in Ultrawide Monitor,1,379.99,06/16/19 14:57,"302 8th St, San Francisco, CA 94016" +220097,AAA Batteries (4-pack),2,2.99,06/06/19 08:04,"996 6th St, Portland, OR 97035" +220098,Flatscreen TV,1,300,06/19/19 14:38,"243 Chestnut St, Los Angeles, CA 90001" +220099,USB-C Charging Cable,1,11.95,06/05/19 11:47,"248 Hickory St, Boston, MA 02215" +220100,Bose SoundSport Headphones,1,99.99,06/09/19 10:26,"857 11th St, Boston, MA 02215" +220101,AA Batteries (4-pack),1,3.84,06/15/19 21:43,"23 Main St, Portland, OR 97035" +220102,Apple Airpods Headphones,1,150,06/29/19 16:55,"361 River St, Los Angeles, CA 90001" +220103,USB-C Charging Cable,1,11.95,06/12/19 17:17,"308 Hill St, Seattle, WA 98101" +220104,Bose SoundSport Headphones,1,99.99,06/01/19 19:44,"130 Park St, Los Angeles, CA 90001" +220105,20in Monitor,1,109.99,06/21/19 07:01,"526 Park St, Atlanta, GA 30301" +220106,Vareebadd Phone,1,400,06/19/19 04:01,"85 1st St, Atlanta, GA 30301" +220107,Lightning Charging Cable,1,14.95,06/10/19 12:58,"903 Walnut St, Dallas, TX 75001" +220108,Wired Headphones,1,11.99,06/27/19 08:29,"842 10th St, Portland, OR 97035" +220109,USB-C Charging Cable,1,11.95,06/23/19 11:53,"888 13th St, Los Angeles, CA 90001" +220110,Bose SoundSport Headphones,1,99.99,06/18/19 19:08,"355 North St, Seattle, WA 98101" +220111,Lightning Charging Cable,2,14.95,06/03/19 19:32,"283 Hill St, New York City, NY 10001" +220112,Wired Headphones,1,11.99,06/26/19 15:28,"389 Willow St, Boston, MA 02215" +220113,Vareebadd Phone,1,400,06/01/19 14:59,"133 Meadow St, San Francisco, CA 94016" +220114,Bose SoundSport Headphones,1,99.99,06/11/19 19:58,"362 Meadow St, Seattle, WA 98101" +220115,Apple Airpods Headphones,1,150,06/01/19 13:22,"275 Spruce St, New York City, NY 10001" +220116,Lightning Charging Cable,1,14.95,06/02/19 00:02,"872 Park St, San Francisco, CA 94016" +220117,AAA Batteries (4-pack),4,2.99,06/11/19 11:11,"354 Willow St, Los Angeles, CA 90001" +220118,AAA Batteries (4-pack),1,2.99,06/17/19 10:03,"981 Hill St, Seattle, WA 98101" +220119,USB-C Charging Cable,1,11.95,06/28/19 07:02,"889 1st St, Portland, OR 97035" +220120,AAA Batteries (4-pack),1,2.99,06/19/19 18:06,"616 Forest St, San Francisco, CA 94016" +220121,AAA Batteries (4-pack),1,2.99,06/23/19 20:52,"997 Lakeview St, New York City, NY 10001" +220122,Bose SoundSport Headphones,1,99.99,06/05/19 13:13,"621 Washington St, San Francisco, CA 94016" +220123,34in Ultrawide Monitor,1,379.99,06/02/19 12:30,"511 12th St, Seattle, WA 98101" +220124,AA Batteries (4-pack),1,3.84,06/26/19 09:47,"585 Spruce St, Los Angeles, CA 90001" +220125,AAA Batteries (4-pack),2,2.99,06/19/19 09:18,"419 Wilson St, New York City, NY 10001" +220126,AA Batteries (4-pack),3,3.84,06/29/19 17:25,"895 Spruce St, San Francisco, CA 94016" +220127,Apple Airpods Headphones,1,150,06/15/19 19:46,"984 Meadow St, San Francisco, CA 94016" +220128,Lightning Charging Cable,1,14.95,06/27/19 23:04,"449 Pine St, Seattle, WA 98101" +220129,Wired Headphones,1,11.99,06/09/19 19:12,"961 Jackson St, San Francisco, CA 94016" +220130,27in FHD Monitor,1,149.99,06/28/19 21:55,"216 Dogwood St, New York City, NY 10001" +220131,Wired Headphones,1,11.99,06/12/19 08:29,"928 Meadow St, Los Angeles, CA 90001" +220132,Wired Headphones,1,11.99,06/12/19 10:15,"785 13th St, San Francisco, CA 94016" +220133,Wired Headphones,1,11.99,06/28/19 15:23,"569 Church St, San Francisco, CA 94016" +220134,Apple Airpods Headphones,2,150,06/06/19 12:44,"249 Church St, San Francisco, CA 94016" +220135,AAA Batteries (4-pack),1,2.99,06/18/19 15:40,"835 Lake St, Seattle, WA 98101" +220136,Lightning Charging Cable,1,14.95,06/07/19 18:56,"504 Hill St, San Francisco, CA 94016" +220137,USB-C Charging Cable,1,11.95,06/29/19 20:24,"566 14th St, San Francisco, CA 94016" +220138,AAA Batteries (4-pack),1,2.99,06/15/19 08:46,"179 Ridge St, New York City, NY 10001" +220139,Lightning Charging Cable,1,14.95,06/17/19 21:37,"543 Dogwood St, San Francisco, CA 94016" +220140,AA Batteries (4-pack),1,3.84,06/10/19 15:48,"615 Center St, Boston, MA 02215" +220141,USB-C Charging Cable,1,11.95,06/19/19 20:18,"837 Ridge St, San Francisco, CA 94016" +220142,Wired Headphones,1,11.99,06/20/19 18:37,"970 River St, New York City, NY 10001" +220143,LG Dryer,1,600.0,06/06/19 20:38,"884 South St, San Francisco, CA 94016" +220144,27in FHD Monitor,1,149.99,06/25/19 01:55,"769 Center St, Dallas, TX 75001" +220145,AAA Batteries (4-pack),1,2.99,06/08/19 20:24,"668 Cherry St, New York City, NY 10001" +220146,Lightning Charging Cable,1,14.95,06/28/19 08:41,"900 12th St, Seattle, WA 98101" +220147,Vareebadd Phone,1,400,06/24/19 22:12,"385 West St, Boston, MA 02215" +220148,AAA Batteries (4-pack),2,2.99,06/23/19 15:14,"166 Hickory St, Portland, OR 97035" +220149,Bose SoundSport Headphones,1,99.99,06/12/19 14:01,"950 West St, Los Angeles, CA 90001" +220150,Apple Airpods Headphones,1,150,06/06/19 15:11,"177 Main St, Austin, TX 73301" +220151,Google Phone,1,600,06/28/19 15:57,"232 West St, San Francisco, CA 94016" +220152,USB-C Charging Cable,1,11.95,06/03/19 19:13,"795 9th St, Dallas, TX 75001" +220153,AAA Batteries (4-pack),2,2.99,06/18/19 16:42,"476 Jackson St, Dallas, TX 75001" +220154,AA Batteries (4-pack),1,3.84,06/03/19 18:30,"107 6th St, San Francisco, CA 94016" +220155,ThinkPad Laptop,1,999.99,06/18/19 13:29,"386 Johnson St, New York City, NY 10001" +220155,27in 4K Gaming Monitor,1,389.99,06/18/19 13:29,"386 Johnson St, New York City, NY 10001" +220156,20in Monitor,1,109.99,06/29/19 13:04,"897 Church St, Boston, MA 02215" +220157,27in 4K Gaming Monitor,1,389.99,06/27/19 10:43,"661 Maple St, Portland, OR 97035" +220158,AAA Batteries (4-pack),1,2.99,06/24/19 20:03,"540 Johnson St, Atlanta, GA 30301" +220159,AAA Batteries (4-pack),1,2.99,06/02/19 02:36,"134 Hill St, New York City, NY 10001" +220160,Lightning Charging Cable,1,14.95,06/08/19 11:57,"907 4th St, Atlanta, GA 30301" +220160,20in Monitor,1,109.99,06/08/19 11:57,"907 4th St, Atlanta, GA 30301" +220161,LG Dryer,1,600.0,06/29/19 00:53,"894 2nd St, New York City, NY 10001" +220162,Lightning Charging Cable,1,14.95,06/05/19 08:03,"384 Center St, Portland, OR 97035" +220163,34in Ultrawide Monitor,1,379.99,06/17/19 22:04,"662 7th St, Boston, MA 02215" +220164,AA Batteries (4-pack),1,3.84,06/28/19 10:36,"169 Johnson St, Portland, OR 97035" +220165,AAA Batteries (4-pack),1,2.99,06/02/19 22:33,"931 Cedar St, Boston, MA 02215" +220166,Apple Airpods Headphones,1,150,06/29/19 19:26,"513 Ridge St, Portland, OR 97035" +220167,AA Batteries (4-pack),2,3.84,06/22/19 20:02,"786 Maple St, Los Angeles, CA 90001" +220168,USB-C Charging Cable,1,11.95,06/29/19 11:13,"737 Maple St, Los Angeles, CA 90001" +220169,20in Monitor,1,109.99,06/05/19 18:00,"787 Ridge St, New York City, NY 10001" +220170,27in FHD Monitor,1,149.99,06/19/19 12:05,"841 Hill St, Los Angeles, CA 90001" +220171,Lightning Charging Cable,1,14.95,06/14/19 15:08,"82 4th St, Dallas, TX 75001" +220172,iPhone,1,700,06/22/19 05:31,"265 Hickory St, New York City, NY 10001" +220173,AA Batteries (4-pack),1,3.84,06/19/19 12:17,"671 Dogwood St, Seattle, WA 98101" +220174,AA Batteries (4-pack),1,3.84,06/06/19 01:36,"871 Highland St, Seattle, WA 98101" +220175,AA Batteries (4-pack),1,3.84,06/05/19 17:31,"891 Willow St, New York City, NY 10001" +220176,Apple Airpods Headphones,1,150,06/03/19 12:54,"351 Madison St, Los Angeles, CA 90001" +220177,Apple Airpods Headphones,1,150,06/17/19 20:25,"315 Main St, Los Angeles, CA 90001" +220178,AA Batteries (4-pack),1,3.84,06/13/19 18:05,"956 Forest St, Los Angeles, CA 90001" +220179,Macbook Pro Laptop,1,1700,06/20/19 13:36,"647 Center St, Boston, MA 02215" +220180,USB-C Charging Cable,1,11.95,06/18/19 12:57,"460 5th St, San Francisco, CA 94016" +220181,27in FHD Monitor,1,149.99,06/18/19 03:05,"414 Cherry St, Seattle, WA 98101" +220182,AA Batteries (4-pack),3,3.84,06/24/19 11:00,"257 6th St, San Francisco, CA 94016" +220183,AA Batteries (4-pack),1,3.84,06/08/19 09:06,"740 7th St, San Francisco, CA 94016" +220184,AAA Batteries (4-pack),1,2.99,06/04/19 23:27,"725 8th St, San Francisco, CA 94016" +220185,iPhone,1,700,06/06/19 17:00,"491 4th St, Seattle, WA 98101" +220186,Wired Headphones,1,11.99,06/18/19 11:06,"898 West St, San Francisco, CA 94016" +220187,Wired Headphones,1,11.99,06/15/19 16:09,"798 12th St, New York City, NY 10001" +220188,AAA Batteries (4-pack),1,2.99,06/08/19 15:50,"229 1st St, Portland, OR 97035" +220189,USB-C Charging Cable,1,11.95,06/06/19 12:31,"12 7th St, Atlanta, GA 30301" +220190,Wired Headphones,1,11.99,06/06/19 21:10,"173 Lakeview St, New York City, NY 10001" +220191,Bose SoundSport Headphones,1,99.99,06/22/19 17:17,"439 Washington St, Seattle, WA 98101" +220192,34in Ultrawide Monitor,1,379.99,06/10/19 17:06,"947 Maple St, New York City, NY 10001" +220193,Apple Airpods Headphones,1,150,06/10/19 16:57,"600 Cedar St, New York City, NY 10001" +220194,AA Batteries (4-pack),2,3.84,06/03/19 14:19,"152 Jefferson St, Los Angeles, CA 90001" +220195,AAA Batteries (4-pack),4,2.99,06/03/19 20:31,"264 5th St, Atlanta, GA 30301" +220196,AAA Batteries (4-pack),1,2.99,06/27/19 16:00,"457 10th St, San Francisco, CA 94016" +220197,Apple Airpods Headphones,1,150,06/01/19 10:56,"103 Madison St, San Francisco, CA 94016" +220198,USB-C Charging Cable,1,11.95,06/17/19 12:06,"556 Forest St, Atlanta, GA 30301" +220199,AAA Batteries (4-pack),2,2.99,07/01/19 00:32,"787 Forest St, San Francisco, CA 94016" +220200,USB-C Charging Cable,1,11.95,06/28/19 00:07,"913 Lakeview St, New York City, NY 10001" +220201,USB-C Charging Cable,1,11.95,06/21/19 12:10,"436 Ridge St, Los Angeles, CA 90001" +220202,USB-C Charging Cable,1,11.95,06/14/19 10:44,"759 Lakeview St, Los Angeles, CA 90001" +220203,iPhone,1,700,06/27/19 23:49,"589 Lincoln St, New York City, NY 10001" +220203,Lightning Charging Cable,1,14.95,06/27/19 23:49,"589 Lincoln St, New York City, NY 10001" +220204,AA Batteries (4-pack),3,3.84,06/10/19 13:31,"759 Hickory St, Portland, OR 97035" +220205,Lightning Charging Cable,1,14.95,06/03/19 19:02,"972 West St, New York City, NY 10001" +220206,USB-C Charging Cable,1,11.95,06/07/19 21:03,"43 10th St, Los Angeles, CA 90001" +220206,Flatscreen TV,1,300,06/07/19 21:03,"43 10th St, Los Angeles, CA 90001" +220207,USB-C Charging Cable,1,11.95,06/13/19 19:15,"766 13th St, Portland, OR 97035" +220208,Apple Airpods Headphones,1,150,06/04/19 11:33,"926 Main St, Los Angeles, CA 90001" +220209,ThinkPad Laptop,1,999.99,06/22/19 13:04,"419 Center St, Los Angeles, CA 90001" +220210,Lightning Charging Cable,1,14.95,06/06/19 12:25,"796 River St, New York City, NY 10001" +220211,Google Phone,1,600,06/15/19 22:38,"590 North St, Los Angeles, CA 90001" +220212,27in FHD Monitor,1,149.99,06/19/19 02:12,"638 4th St, Boston, MA 02215" +220213,AA Batteries (4-pack),1,3.84,06/12/19 22:08,"857 Jefferson St, Seattle, WA 98101" +220214,Lightning Charging Cable,1,14.95,06/16/19 20:26,"590 Center St, Los Angeles, CA 90001" +220215,27in FHD Monitor,1,149.99,06/02/19 17:39,"833 7th St, Dallas, TX 75001" +220216,AA Batteries (4-pack),1,3.84,06/09/19 19:07,"159 Forest St, Atlanta, GA 30301" +220217,AAA Batteries (4-pack),1,2.99,06/07/19 20:51,"974 2nd St, Seattle, WA 98101" +220218,USB-C Charging Cable,2,11.95,06/29/19 20:06,"293 Chestnut St, Boston, MA 02215" +220219,Macbook Pro Laptop,1,1700,06/24/19 16:38,"852 Lake St, Los Angeles, CA 90001" +220220,27in FHD Monitor,1,149.99,06/25/19 09:58,"40 12th St, New York City, NY 10001" +220221,Lightning Charging Cable,1,14.95,06/17/19 17:34,"767 Church St, Boston, MA 02215" +220222,Apple Airpods Headphones,1,150,06/18/19 14:05,"22 6th St, San Francisco, CA 94016" +220223,Lightning Charging Cable,1,14.95,06/26/19 22:34,"520 Chestnut St, San Francisco, CA 94016" +220224,Lightning Charging Cable,1,14.95,06/01/19 11:45,"357 Maple St, Los Angeles, CA 90001" +220225,Lightning Charging Cable,1,14.95,06/09/19 17:50,"838 Lincoln St, San Francisco, CA 94016" +220226,AAA Batteries (4-pack),1,2.99,06/15/19 04:09,"670 Adams St, San Francisco, CA 94016" +220227,AA Batteries (4-pack),1,3.84,06/06/19 08:48,"486 Church St, Seattle, WA 98101" +220228,27in FHD Monitor,1,149.99,06/26/19 19:58,"658 Main St, San Francisco, CA 94016" +220229,AA Batteries (4-pack),1,3.84,06/26/19 09:35,"568 Park St, Atlanta, GA 30301" +220230,AA Batteries (4-pack),3,3.84,06/23/19 08:52,"893 13th St, Dallas, TX 75001" +220231,AA Batteries (4-pack),3,3.84,06/24/19 16:03,"749 Willow St, Atlanta, GA 30301" +220232,AA Batteries (4-pack),1,3.84,06/15/19 19:02,"155 Dogwood St, San Francisco, CA 94016" +220233,AA Batteries (4-pack),1,3.84,06/25/19 12:22,"980 Johnson St, Los Angeles, CA 90001" +220234,Wired Headphones,1,11.99,06/29/19 15:56,"150 4th St, New York City, NY 10001" +220235,AA Batteries (4-pack),1,3.84,06/24/19 17:06,"840 Dogwood St, Dallas, TX 75001" +220236,Wired Headphones,1,11.99,06/11/19 00:03,"569 1st St, San Francisco, CA 94016" +220236,AAA Batteries (4-pack),1,2.99,06/11/19 00:03,"569 1st St, San Francisco, CA 94016" +220237,AAA Batteries (4-pack),2,2.99,06/24/19 15:10,"684 Forest St, Portland, OR 97035" +220238,Bose SoundSport Headphones,1,99.99,06/16/19 14:39,"249 Dogwood St, Los Angeles, CA 90001" +220239,AAA Batteries (4-pack),2,2.99,06/23/19 08:50,"301 Johnson St, Austin, TX 73301" +220240,iPhone,1,700,06/14/19 15:53,"295 North St, Boston, MA 02215" +220241,USB-C Charging Cable,1,11.95,06/01/19 17:16,"715 4th St, New York City, NY 10001" +220242,AAA Batteries (4-pack),1,2.99,06/27/19 13:05,"646 Ridge St, San Francisco, CA 94016" +220243,AAA Batteries (4-pack),1,2.99,06/27/19 17:38,"558 Park St, Atlanta, GA 30301" +220244,34in Ultrawide Monitor,2,379.99,06/25/19 11:10,"768 7th St, Dallas, TX 75001" +220245,ThinkPad Laptop,1,999.99,06/11/19 21:02,"113 Jefferson St, Portland, OR 97035" +220246,ThinkPad Laptop,1,999.99,06/10/19 13:50,"156 Adams St, Dallas, TX 75001" +220247,USB-C Charging Cable,1,11.95,06/15/19 20:32,"964 Sunset St, Los Angeles, CA 90001" +220248,AA Batteries (4-pack),1,3.84,06/11/19 13:24,"481 Chestnut St, Boston, MA 02215" +220249,AA Batteries (4-pack),1,3.84,06/09/19 23:20,"819 Walnut St, Seattle, WA 98101" +220250,Lightning Charging Cable,1,14.95,06/26/19 10:14,"924 Sunset St, Seattle, WA 98101" +220251,Wired Headphones,1,11.99,06/03/19 10:04,"149 7th St, Los Angeles, CA 90001" +220252,27in FHD Monitor,1,149.99,06/29/19 07:18,"360 North St, Boston, MA 02215" +220253,AAA Batteries (4-pack),1,2.99,06/24/19 13:49,"756 2nd St, New York City, NY 10001" +220254,Apple Airpods Headphones,1,150,06/21/19 11:07,"253 7th St, San Francisco, CA 94016" +220255,AAA Batteries (4-pack),1,2.99,06/07/19 06:18,"302 10th St, Dallas, TX 75001" +220256,AA Batteries (4-pack),1,3.84,06/10/19 13:34,"658 Lincoln St, Seattle, WA 98101" +220257,Lightning Charging Cable,1,14.95,06/12/19 20:41,"557 10th St, San Francisco, CA 94016" +220258,AA Batteries (4-pack),1,3.84,06/13/19 09:28,"994 8th St, New York City, NY 10001" +220259,AAA Batteries (4-pack),1,2.99,06/26/19 00:41,"374 Hill St, Portland, OR 97035" +220260,AAA Batteries (4-pack),1,2.99,06/15/19 12:29,"917 Wilson St, Seattle, WA 98101" +220261,27in FHD Monitor,1,149.99,06/02/19 03:33,"372 13th St, Portland, OR 97035" +220262,iPhone,1,700,06/14/19 13:19,"171 Madison St, San Francisco, CA 94016" +220263,USB-C Charging Cable,1,11.95,06/09/19 08:17,"417 Jefferson St, Seattle, WA 98101" +220264,20in Monitor,1,109.99,06/22/19 19:01,"734 Church St, San Francisco, CA 94016" +220265,Wired Headphones,1,11.99,06/28/19 19:16,"7 Sunset St, New York City, NY 10001" +220266,27in 4K Gaming Monitor,1,389.99,06/12/19 12:59,"308 Meadow St, Boston, MA 02215" +220267,Wired Headphones,1,11.99,06/24/19 11:03,"722 Walnut St, Portland, OR 97035" +220268,27in FHD Monitor,1,149.99,06/28/19 12:58,"548 Spruce St, San Francisco, CA 94016" +220269,Macbook Pro Laptop,1,1700,06/04/19 22:01,"700 Hickory St, Atlanta, GA 30301" +220270,20in Monitor,1,109.99,06/21/19 19:48,"409 Lincoln St, New York City, NY 10001" +220271,Wired Headphones,1,11.99,06/29/19 21:25,"822 13th St, Boston, MA 02215" +220272,34in Ultrawide Monitor,1,379.99,06/03/19 19:29,"503 Wilson St, Boston, MA 02215" +220273,Apple Airpods Headphones,1,150,06/27/19 20:44,"387 Washington St, Austin, TX 73301" +220274,iPhone,1,700,06/10/19 16:52,"630 1st St, San Francisco, CA 94016" +220275,Flatscreen TV,1,300,06/22/19 16:30,"595 Walnut St, Austin, TX 73301" +220276,USB-C Charging Cable,1,11.95,06/05/19 12:59,"963 West St, Dallas, TX 75001" +220277,Vareebadd Phone,1,400,06/16/19 19:51,"778 Highland St, Dallas, TX 75001" +220277,USB-C Charging Cable,1,11.95,06/16/19 19:51,"778 Highland St, Dallas, TX 75001" +220277,Bose SoundSport Headphones,1,99.99,06/16/19 19:51,"778 Highland St, Dallas, TX 75001" +220278,Apple Airpods Headphones,1,150,06/29/19 18:02,"807 Jefferson St, New York City, NY 10001" +220279,Wired Headphones,1,11.99,06/03/19 20:15,"59 Hill St, New York City, NY 10001" +220279,Apple Airpods Headphones,1,150,06/03/19 20:15,"59 Hill St, New York City, NY 10001" +220280,AAA Batteries (4-pack),1,2.99,06/11/19 09:25,"498 13th St, Atlanta, GA 30301" +220281,USB-C Charging Cable,1,11.95,06/03/19 18:32,"69 Main St, Boston, MA 02215" +220282,USB-C Charging Cable,1,11.95,06/04/19 18:48,"241 Dogwood St, Seattle, WA 98101" +220283,34in Ultrawide Monitor,1,379.99,06/08/19 20:42,"806 6th St, Seattle, WA 98101" +220284,Apple Airpods Headphones,1,150,06/28/19 20:18,"257 Johnson St, Boston, MA 02215" +220285,Bose SoundSport Headphones,1,99.99,06/06/19 16:31,"455 Cherry St, Seattle, WA 98101" +220286,Google Phone,1,600,06/22/19 13:04,"664 Meadow St, San Francisco, CA 94016" +220287,AAA Batteries (4-pack),1,2.99,06/27/19 20:23,"588 Johnson St, Seattle, WA 98101" +220288,USB-C Charging Cable,2,11.95,06/15/19 23:25,"443 8th St, Atlanta, GA 30301" +220289,Google Phone,1,600,06/09/19 13:11,"759 Chestnut St, Boston, MA 02215" +220290,Lightning Charging Cable,1,14.95,06/25/19 22:08,"177 Ridge St, Boston, MA 02215" +220291,Wired Headphones,1,11.99,06/02/19 18:27,"983 Willow St, New York City, NY 10001" +220292,USB-C Charging Cable,1,11.95,06/28/19 00:25,"123 River St, San Francisco, CA 94016" +220293,Wired Headphones,1,11.99,06/21/19 16:38,"479 4th St, Portland, OR 97035" +220294,Apple Airpods Headphones,1,150,06/03/19 07:43,"214 11th St, Los Angeles, CA 90001" +220295,AA Batteries (4-pack),1,3.84,06/08/19 09:32,"967 Pine St, Portland, OR 97035" +220296,Wired Headphones,1,11.99,06/06/19 14:00,"620 12th St, Seattle, WA 98101" +220297,27in 4K Gaming Monitor,1,389.99,06/05/19 17:18,"690 Lakeview St, San Francisco, CA 94016" +220298,AA Batteries (4-pack),1,3.84,06/13/19 17:20,"666 5th St, Portland, OR 97035" +220299,Apple Airpods Headphones,1,150,06/29/19 10:16,"448 Highland St, Atlanta, GA 30301" +220300,AA Batteries (4-pack),1,3.84,06/25/19 11:05,"384 Wilson St, Los Angeles, CA 90001" +220301,Bose SoundSport Headphones,1,99.99,06/01/19 07:51,"20 Walnut St, Dallas, TX 75001" +220302,Lightning Charging Cable,1,14.95,06/16/19 22:50,"67 Lake St, Los Angeles, CA 90001" +220303,Apple Airpods Headphones,1,150,06/27/19 06:23,"979 10th St, Los Angeles, CA 90001" +220304,AA Batteries (4-pack),1,3.84,06/14/19 18:58,"618 Lincoln St, San Francisco, CA 94016" +220305,iPhone,1,700,06/21/19 20:46,"512 West St, San Francisco, CA 94016" +220306,Lightning Charging Cable,1,14.95,06/23/19 06:29,"162 8th St, Los Angeles, CA 90001" +220307,AAA Batteries (4-pack),1,2.99,06/24/19 23:49,"516 10th St, San Francisco, CA 94016" +220308,LG Dryer,1,600.0,06/24/19 18:58,"327 10th St, Austin, TX 73301" +220309,AAA Batteries (4-pack),3,2.99,06/05/19 10:53,"574 Cherry St, New York City, NY 10001" +220310,Lightning Charging Cable,1,14.95,06/11/19 12:37,"768 Walnut St, San Francisco, CA 94016" +220311,Macbook Pro Laptop,1,1700,06/20/19 20:35,"950 9th St, San Francisco, CA 94016" +220312,AA Batteries (4-pack),1,3.84,06/26/19 00:47,"288 Chestnut St, San Francisco, CA 94016" +220313,Apple Airpods Headphones,1,150,06/13/19 13:33,"51 5th St, Austin, TX 73301" +220314,27in 4K Gaming Monitor,1,389.99,06/03/19 12:03,"566 4th St, New York City, NY 10001" +220315,AA Batteries (4-pack),1,3.84,06/13/19 20:57,"291 Dogwood St, Boston, MA 02215" +220316,AA Batteries (4-pack),1,3.84,06/27/19 19:56,"342 Madison St, San Francisco, CA 94016" +220317,Lightning Charging Cable,2,14.95,06/13/19 20:13,"175 Meadow St, San Francisco, CA 94016" +220318,Bose SoundSport Headphones,1,99.99,06/17/19 17:08,"432 Sunset St, Portland, ME 04101" +220319,USB-C Charging Cable,1,11.95,06/19/19 02:49,"938 Lincoln St, Boston, MA 02215" +220320,Wired Headphones,1,11.99,06/20/19 18:58,"977 10th St, Dallas, TX 75001" +220321,AAA Batteries (4-pack),2,2.99,06/25/19 22:00,"962 Church St, New York City, NY 10001" +220322,27in FHD Monitor,1,149.99,06/15/19 12:05,"421 Chestnut St, San Francisco, CA 94016" +220323,Bose SoundSport Headphones,1,99.99,06/01/19 10:17,"588 Ridge St, Los Angeles, CA 90001" +220324,AAA Batteries (4-pack),1,2.99,06/15/19 11:14,"361 West St, New York City, NY 10001" +220325,Wired Headphones,1,11.99,06/29/19 22:27,"263 Meadow St, Seattle, WA 98101" +220326,AA Batteries (4-pack),1,3.84,06/20/19 20:08,"923 Cherry St, Seattle, WA 98101" +220327,34in Ultrawide Monitor,1,379.99,06/17/19 13:46,"32 2nd St, Dallas, TX 75001" +220328,Lightning Charging Cable,1,14.95,06/03/19 02:43,"193 Walnut St, New York City, NY 10001" +220329,AA Batteries (4-pack),1,3.84,06/07/19 22:46,"962 9th St, Boston, MA 02215" +220330,ThinkPad Laptop,1,999.99,06/01/19 10:18,"670 Walnut St, New York City, NY 10001" +220331,Flatscreen TV,1,300,06/08/19 21:47,"95 Maple St, New York City, NY 10001" +220332,USB-C Charging Cable,1,11.95,06/12/19 19:33,"669 Center St, San Francisco, CA 94016" +220333,AAA Batteries (4-pack),1,2.99,06/25/19 15:13,"524 Walnut St, New York City, NY 10001" +220334,USB-C Charging Cable,1,11.95,06/26/19 18:07,"221 4th St, Atlanta, GA 30301" +220335,AAA Batteries (4-pack),1,2.99,06/10/19 22:32,"605 Adams St, Dallas, TX 75001" +220336,Wired Headphones,1,11.99,06/05/19 07:05,"93 Dogwood St, New York City, NY 10001" +220337,AAA Batteries (4-pack),2,2.99,06/15/19 16:15,"764 Johnson St, New York City, NY 10001" +220338,AA Batteries (4-pack),1,3.84,06/17/19 15:57,"963 West St, Boston, MA 02215" +220339,Macbook Pro Laptop,1,1700,06/02/19 09:10,"188 Highland St, San Francisco, CA 94016" +220340,iPhone,1,700,06/13/19 19:18,"708 7th St, Austin, TX 73301" +220341,AA Batteries (4-pack),1,3.84,06/06/19 08:56,"326 13th St, Portland, OR 97035" +220342,Lightning Charging Cable,2,14.95,06/08/19 12:35,"533 5th St, Atlanta, GA 30301" +220343,Bose SoundSport Headphones,1,99.99,06/25/19 20:00,"137 2nd St, Dallas, TX 75001" +220344,Flatscreen TV,1,300,06/16/19 06:35,"377 Spruce St, San Francisco, CA 94016" +220345,USB-C Charging Cable,1,11.95,06/24/19 15:44,"879 Lakeview St, Seattle, WA 98101" +220346,Apple Airpods Headphones,1,150,06/18/19 07:27,"451 6th St, San Francisco, CA 94016" +220347,Bose SoundSport Headphones,1,99.99,06/06/19 17:56,"573 Hickory St, New York City, NY 10001" +220348,34in Ultrawide Monitor,1,379.99,06/13/19 07:29,"174 Willow St, Portland, OR 97035" +220349,AAA Batteries (4-pack),1,2.99,06/24/19 11:39,"581 Park St, New York City, NY 10001" +220350,Apple Airpods Headphones,1,150,06/19/19 18:53,"146 Meadow St, Boston, MA 02215" +220351,Vareebadd Phone,1,400,06/12/19 00:30,"163 6th St, Seattle, WA 98101" +220352,Bose SoundSport Headphones,1,99.99,06/02/19 13:30,"493 Washington St, San Francisco, CA 94016" +220353,Macbook Pro Laptop,1,1700,06/04/19 12:27,"216 5th St, Los Angeles, CA 90001" +220354,iPhone,1,700,06/28/19 13:20,"572 River St, Seattle, WA 98101" +220355,Bose SoundSport Headphones,1,99.99,06/09/19 08:58,"54 Lakeview St, Dallas, TX 75001" +220356,Lightning Charging Cable,2,14.95,06/08/19 12:26,"181 11th St, Portland, ME 04101" +220357,Apple Airpods Headphones,1,150,06/25/19 15:48,"148 Pine St, Atlanta, GA 30301" +220358,AAA Batteries (4-pack),1,2.99,06/29/19 14:41,"88 Hickory St, San Francisco, CA 94016" +220359,USB-C Charging Cable,1,11.95,06/16/19 15:33,"211 Lakeview St, New York City, NY 10001" +220360,ThinkPad Laptop,1,999.99,06/14/19 09:25,"241 Sunset St, New York City, NY 10001" +220361,Wired Headphones,1,11.99,06/07/19 15:26,"282 13th St, Boston, MA 02215" +220362,USB-C Charging Cable,1,11.95,06/21/19 12:10,"234 Forest St, Seattle, WA 98101" +220363,Lightning Charging Cable,1,14.95,06/07/19 22:59,"858 Washington St, Seattle, WA 98101" +220364,Wired Headphones,1,11.99,06/14/19 16:51,"264 Hickory St, Boston, MA 02215" +220365,AAA Batteries (4-pack),1,2.99,06/12/19 14:00,"953 Cherry St, New York City, NY 10001" +220366,Flatscreen TV,1,300,06/25/19 16:41,"347 Adams St, Austin, TX 73301" +220367,Wired Headphones,1,11.99,06/07/19 09:24,"230 4th St, Atlanta, GA 30301" +220368,ThinkPad Laptop,1,999.99,06/05/19 13:14,"377 North St, San Francisco, CA 94016" +220369,AA Batteries (4-pack),1,3.84,06/17/19 14:23,"573 2nd St, San Francisco, CA 94016" +220370,Vareebadd Phone,1,400,06/18/19 00:07,"511 Maple St, Portland, OR 97035" +220370,USB-C Charging Cable,1,11.95,06/18/19 00:07,"511 Maple St, Portland, OR 97035" +220371,AAA Batteries (4-pack),3,2.99,06/12/19 13:53,"756 South St, Boston, MA 02215" +220372,AAA Batteries (4-pack),3,2.99,06/13/19 08:19,"371 Maple St, San Francisco, CA 94016" +220373,34in Ultrawide Monitor,1,379.99,06/24/19 04:43,"319 North St, San Francisco, CA 94016" +220374,34in Ultrawide Monitor,1,379.99,06/18/19 12:51,"1 Maple St, Los Angeles, CA 90001" +220375,AAA Batteries (4-pack),1,2.99,06/08/19 00:36,"570 Wilson St, New York City, NY 10001" +220376,Macbook Pro Laptop,1,1700,06/21/19 09:26,"829 River St, San Francisco, CA 94016" +220377,ThinkPad Laptop,1,999.99,06/24/19 12:58,"778 Lakeview St, Portland, OR 97035" +220378,27in 4K Gaming Monitor,1,389.99,06/28/19 17:10,"114 5th St, Dallas, TX 75001" +220379,Lightning Charging Cable,1,14.95,06/11/19 00:59,"830 Cherry St, San Francisco, CA 94016" +220380,Lightning Charging Cable,1,14.95,06/10/19 00:51,"315 2nd St, Atlanta, GA 30301" +220381,Google Phone,1,600,06/22/19 20:55,"687 Wilson St, Boston, MA 02215" +220382,Wired Headphones,1,11.99,06/30/19 10:33,"725 Sunset St, New York City, NY 10001" +220383,AA Batteries (4-pack),1,3.84,06/26/19 08:56,"395 Jackson St, Dallas, TX 75001" +220384,Bose SoundSport Headphones,1,99.99,06/21/19 18:45,"454 4th St, Seattle, WA 98101" +220385,Lightning Charging Cable,1,14.95,06/20/19 16:45,"965 6th St, Los Angeles, CA 90001" +220386,Bose SoundSport Headphones,1,99.99,06/07/19 21:07,"77 11th St, Austin, TX 73301" +220387,AAA Batteries (4-pack),1,2.99,06/29/19 12:07,"907 Elm St, New York City, NY 10001" +220388,Apple Airpods Headphones,1,150,06/01/19 21:09,"778 Lake St, Los Angeles, CA 90001" +220389,Apple Airpods Headphones,1,150,06/07/19 20:51,"613 Pine St, Los Angeles, CA 90001" +220390,USB-C Charging Cable,1,11.95,06/13/19 08:34,"930 Sunset St, Dallas, TX 75001" +220391,LG Dryer,1,600.0,06/25/19 20:46,"617 9th St, Seattle, WA 98101" +220392,Google Phone,1,600,06/09/19 11:53,"652 11th St, Portland, OR 97035" +220393,ThinkPad Laptop,1,999.99,06/08/19 21:56,"770 11th St, Boston, MA 02215" +220394,27in FHD Monitor,1,149.99,06/20/19 11:18,"332 13th St, Boston, MA 02215" +220395,ThinkPad Laptop,1,999.99,06/08/19 18:47,"128 4th St, Dallas, TX 75001" +220396,Google Phone,1,600,06/10/19 21:49,"433 Park St, Los Angeles, CA 90001" +220397,Apple Airpods Headphones,1,150,06/01/19 17:58,"919 7th St, Atlanta, GA 30301" +220398,AAA Batteries (4-pack),1,2.99,06/11/19 14:15,"187 Cedar St, Austin, TX 73301" +220399,Lightning Charging Cable,1,14.95,06/16/19 20:29,"333 4th St, Portland, OR 97035" +220400,27in FHD Monitor,1,149.99,06/17/19 13:30,"200 Cedar St, New York City, NY 10001" +220401,AA Batteries (4-pack),1,3.84,06/11/19 18:11,"764 4th St, Atlanta, GA 30301" +220402,Bose SoundSport Headphones,1,99.99,06/28/19 08:33,"893 Johnson St, Seattle, WA 98101" +220403,AA Batteries (4-pack),1,3.84,06/04/19 12:31,"839 11th St, San Francisco, CA 94016" +220404,AAA Batteries (4-pack),1,2.99,06/08/19 11:08,"211 2nd St, Boston, MA 02215" +220405,Flatscreen TV,1,300,06/16/19 12:28,"382 Willow St, San Francisco, CA 94016" +220406,27in 4K Gaming Monitor,1,389.99,06/30/19 20:26,"325 River St, Atlanta, GA 30301" +220407,27in FHD Monitor,1,149.99,06/13/19 22:45,"651 Madison St, New York City, NY 10001" +220408,27in 4K Gaming Monitor,1,389.99,06/28/19 07:27,"350 Willow St, Atlanta, GA 30301" +220409,AAA Batteries (4-pack),1,2.99,06/20/19 13:27,"451 South St, Boston, MA 02215" +220410,AAA Batteries (4-pack),1,2.99,06/28/19 12:53,"478 14th St, Dallas, TX 75001" +220411,AA Batteries (4-pack),1,3.84,06/18/19 18:07,"24 2nd St, Los Angeles, CA 90001" +220411,Apple Airpods Headphones,1,150,06/18/19 18:07,"24 2nd St, Los Angeles, CA 90001" +220412,Vareebadd Phone,2,400,06/13/19 09:21,"471 10th St, Boston, MA 02215" +220413,Bose SoundSport Headphones,1,99.99,06/09/19 20:24,"18 8th St, Atlanta, GA 30301" +220414,Wired Headphones,1,11.99,06/30/19 16:55,"834 Center St, San Francisco, CA 94016" +220415,Bose SoundSport Headphones,1,99.99,06/29/19 20:05,"445 Hickory St, New York City, NY 10001" +220416,iPhone,1,700,06/30/19 20:33,"873 12th St, Atlanta, GA 30301" +220416,Lightning Charging Cable,1,14.95,06/30/19 20:33,"873 12th St, Atlanta, GA 30301" +220417,Wired Headphones,2,11.99,06/25/19 15:20,"481 Lake St, San Francisco, CA 94016" +220418,34in Ultrawide Monitor,1,379.99,06/25/19 14:21,"797 6th St, San Francisco, CA 94016" +220419,Apple Airpods Headphones,1,150,06/11/19 15:00,"691 Johnson St, San Francisco, CA 94016" +220420,USB-C Charging Cable,1,11.95,06/09/19 21:04,"709 River St, San Francisco, CA 94016" +220421,Lightning Charging Cable,1,14.95,06/17/19 17:24,"335 10th St, New York City, NY 10001" +220422,34in Ultrawide Monitor,1,379.99,06/05/19 11:29,"668 9th St, Los Angeles, CA 90001" +220423,Google Phone,1,600,06/01/19 18:22,"11 5th St, San Francisco, CA 94016" +220423,USB-C Charging Cable,1,11.95,06/01/19 18:22,"11 5th St, San Francisco, CA 94016" +220424,Apple Airpods Headphones,1,150,06/21/19 18:32,"772 Willow St, Portland, OR 97035" +220425,Wired Headphones,1,11.99,06/08/19 23:03,"672 4th St, New York City, NY 10001" +220425,AA Batteries (4-pack),1,3.84,06/08/19 23:03,"672 4th St, New York City, NY 10001" +220426,AA Batteries (4-pack),3,3.84,06/10/19 18:05,"970 Center St, New York City, NY 10001" +220427,iPhone,1,700,06/06/19 12:51,"101 Willow St, Los Angeles, CA 90001" +220428,AAA Batteries (4-pack),1,2.99,06/01/19 11:05,"437 Lincoln St, Boston, MA 02215" +220429,Wired Headphones,1,11.99,06/20/19 18:12,"574 West St, Los Angeles, CA 90001" +220430,Lightning Charging Cable,1,14.95,06/15/19 19:47,"515 Lincoln St, New York City, NY 10001" +220431,iPhone,1,700,06/10/19 21:25,"931 Dogwood St, San Francisco, CA 94016" +220432,27in FHD Monitor,1,149.99,06/16/19 09:21,"656 Cedar St, Los Angeles, CA 90001" +220432,AA Batteries (4-pack),2,3.84,06/16/19 09:21,"656 Cedar St, Los Angeles, CA 90001" +220433,USB-C Charging Cable,1,11.95,06/17/19 07:49,"614 Jefferson St, Dallas, TX 75001" +220434,iPhone,1,700,06/05/19 17:59,"997 Park St, New York City, NY 10001" +220435,Macbook Pro Laptop,1,1700,06/17/19 17:35,"692 Maple St, Portland, OR 97035" +220436,Apple Airpods Headphones,1,150,06/23/19 14:39,"152 Willow St, New York City, NY 10001" +220437,USB-C Charging Cable,1,11.95,06/19/19 13:57,"225 Maple St, New York City, NY 10001" +220438,Lightning Charging Cable,1,14.95,06/02/19 13:49,"673 Lincoln St, Atlanta, GA 30301" +220438,ThinkPad Laptop,1,999.99,06/02/19 13:49,"673 Lincoln St, Atlanta, GA 30301" +220439,Flatscreen TV,1,300,06/15/19 10:49,"206 Main St, Seattle, WA 98101" +220440,34in Ultrawide Monitor,1,379.99,06/10/19 15:14,"785 Pine St, New York City, NY 10001" +220441,USB-C Charging Cable,1,11.95,06/11/19 17:03,"732 1st St, San Francisco, CA 94016" +220442,Wired Headphones,1,11.99,06/27/19 19:19,"904 Hill St, Dallas, TX 75001" +220443,AA Batteries (4-pack),1,3.84,06/26/19 19:21,"626 Maple St, Seattle, WA 98101" +220444,27in 4K Gaming Monitor,1,389.99,06/21/19 21:00,"38 Park St, Boston, MA 02215" +220445,AA Batteries (4-pack),1,3.84,06/15/19 10:47,"372 Dogwood St, Los Angeles, CA 90001" +220446,Lightning Charging Cable,1,14.95,06/26/19 21:20,"354 2nd St, Seattle, WA 98101" +220447,Macbook Pro Laptop,1,1700,06/07/19 17:27,"759 9th St, Boston, MA 02215" +220447,AA Batteries (4-pack),1,3.84,06/07/19 17:27,"759 9th St, Boston, MA 02215" +220448,Lightning Charging Cable,1,14.95,06/19/19 14:21,"655 9th St, San Francisco, CA 94016" +220449,Lightning Charging Cable,2,14.95,06/21/19 22:14,"680 Jefferson St, New York City, NY 10001" +220450,LG Dryer,1,600.0,06/06/19 17:38,"942 Highland St, Los Angeles, CA 90001" +220451,34in Ultrawide Monitor,1,379.99,06/11/19 21:05,"276 Meadow St, Austin, TX 73301" +220452,Macbook Pro Laptop,1,1700,06/06/19 11:52,"478 Jefferson St, San Francisco, CA 94016" +220453,Lightning Charging Cable,1,14.95,06/08/19 13:32,"25 9th St, San Francisco, CA 94016" +220454,Flatscreen TV,1,300,06/27/19 14:06,"444 Forest St, Austin, TX 73301" +220455,AA Batteries (4-pack),2,3.84,06/10/19 01:15,"331 Adams St, Los Angeles, CA 90001" +220456,USB-C Charging Cable,1,11.95,06/30/19 17:26,"174 10th St, San Francisco, CA 94016" +220457,20in Monitor,1,109.99,06/24/19 09:26,"498 Dogwood St, Atlanta, GA 30301" +220458,Lightning Charging Cable,1,14.95,06/25/19 12:27,"360 Ridge St, Atlanta, GA 30301" +220458,USB-C Charging Cable,1,11.95,06/25/19 12:27,"360 Ridge St, Atlanta, GA 30301" +220459,AA Batteries (4-pack),2,3.84,06/08/19 22:38,"2 Lincoln St, Dallas, TX 75001" +220460,Apple Airpods Headphones,1,150,06/11/19 22:20,"16 Sunset St, Atlanta, GA 30301" +220461,Wired Headphones,1,11.99,06/20/19 14:27,"250 Spruce St, San Francisco, CA 94016" +220462,Wired Headphones,1,11.99,06/14/19 10:39,"523 Maple St, Los Angeles, CA 90001" +220463,Apple Airpods Headphones,1,150,06/13/19 13:14,"188 13th St, San Francisco, CA 94016" +220464,Wired Headphones,1,11.99,06/23/19 10:45,"880 North St, Los Angeles, CA 90001" +220465,27in 4K Gaming Monitor,1,389.99,06/23/19 11:19,"12 Park St, Seattle, WA 98101" +220466,USB-C Charging Cable,1,11.95,06/04/19 13:46,"678 Lakeview St, Boston, MA 02215" +220467,Apple Airpods Headphones,1,150,06/15/19 20:49,"140 Hill St, San Francisco, CA 94016" +220468,Apple Airpods Headphones,1,150,06/28/19 17:59,"534 Lake St, Boston, MA 02215" +220469,Lightning Charging Cable,1,14.95,06/23/19 18:58,"901 West St, Atlanta, GA 30301" +220470,AA Batteries (4-pack),1,3.84,06/16/19 18:56,"947 Ridge St, New York City, NY 10001" +220471,Apple Airpods Headphones,1,150,06/11/19 15:30,"942 River St, San Francisco, CA 94016" +220472,USB-C Charging Cable,1,11.95,06/09/19 15:01,"845 Wilson St, Los Angeles, CA 90001" +220473,AA Batteries (4-pack),1,3.84,06/30/19 15:38,"562 Maple St, Dallas, TX 75001" +220474,USB-C Charging Cable,1,11.95,06/18/19 17:02,"451 West St, Boston, MA 02215" +220475,20in Monitor,1,109.99,06/21/19 11:17,"827 Ridge St, San Francisco, CA 94016" +220476,AAA Batteries (4-pack),2,2.99,06/20/19 07:46,"952 13th St, Boston, MA 02215" +220477,Google Phone,1,600,06/06/19 12:18,"493 North St, San Francisco, CA 94016" +220478,AAA Batteries (4-pack),2,2.99,06/05/19 17:46,"726 Church St, Seattle, WA 98101" +220479,ThinkPad Laptop,1,999.99,06/04/19 17:34,"224 Walnut St, New York City, NY 10001" +220480,iPhone,1,700,06/18/19 18:33,"187 6th St, Austin, TX 73301" +220480,Lightning Charging Cable,1,14.95,06/18/19 18:33,"187 6th St, Austin, TX 73301" +220481,iPhone,1,700,06/03/19 12:40,"584 5th St, Austin, TX 73301" +220482,Macbook Pro Laptop,1,1700,06/03/19 18:23,"659 Lincoln St, Seattle, WA 98101" +220482,AAA Batteries (4-pack),1,2.99,06/03/19 18:23,"659 Lincoln St, Seattle, WA 98101" +220483,Google Phone,1,600,06/22/19 10:50,"43 2nd St, New York City, NY 10001" +220484,Apple Airpods Headphones,1,150,06/29/19 08:36,"205 Cedar St, Austin, TX 73301" +220485,Wired Headphones,1,11.99,06/17/19 08:41,"21 Meadow St, Boston, MA 02215" +220486,Lightning Charging Cable,1,14.95,06/07/19 12:25,"116 Main St, Austin, TX 73301" +220487,Lightning Charging Cable,1,14.95,06/25/19 22:27,"706 Pine St, Los Angeles, CA 90001" +220488,USB-C Charging Cable,1,11.95,06/10/19 11:04,"569 Wilson St, Seattle, WA 98101" +220488,Bose SoundSport Headphones,1,99.99,06/10/19 11:04,"569 Wilson St, Seattle, WA 98101" +220489,Bose SoundSport Headphones,1,99.99,06/23/19 15:26,"9 Lake St, San Francisco, CA 94016" +220490,Google Phone,1,600,06/25/19 19:42,"868 6th St, San Francisco, CA 94016" +220491,27in 4K Gaming Monitor,1,389.99,06/11/19 10:11,"798 Johnson St, Seattle, WA 98101" +220492,AAA Batteries (4-pack),1,2.99,06/21/19 21:17,"908 Park St, San Francisco, CA 94016" +220493,AAA Batteries (4-pack),1,2.99,06/27/19 13:17,"717 Elm St, Atlanta, GA 30301" +220494,AAA Batteries (4-pack),4,2.99,06/17/19 10:15,"726 7th St, Los Angeles, CA 90001" +220495,AA Batteries (4-pack),2,3.84,06/26/19 07:03,"604 Hickory St, Los Angeles, CA 90001" +220496,USB-C Charging Cable,1,11.95,06/28/19 13:50,"812 Willow St, Austin, TX 73301" +220497,AAA Batteries (4-pack),1,2.99,06/19/19 17:28,"841 Cedar St, Atlanta, GA 30301" +220498,34in Ultrawide Monitor,1,379.99,06/24/19 17:25,"82 Pine St, Los Angeles, CA 90001" +220499,AAA Batteries (4-pack),1,2.99,06/12/19 16:52,"392 12th St, Austin, TX 73301" +220500,Wired Headphones,1,11.99,06/13/19 20:03,"957 Cherry St, San Francisco, CA 94016" +220501,AAA Batteries (4-pack),1,2.99,06/21/19 16:07,"324 Highland St, San Francisco, CA 94016" +220502,27in FHD Monitor,1,149.99,06/22/19 18:32,"226 Dogwood St, Los Angeles, CA 90001" +220503,Google Phone,1,600,06/08/19 15:44,"367 Adams St, Los Angeles, CA 90001" +220504,ThinkPad Laptop,1,999.99,06/13/19 18:51,"853 Highland St, Portland, ME 04101" +220505,Apple Airpods Headphones,1,150,06/15/19 18:37,"340 Chestnut St, Dallas, TX 75001" +220506,Bose SoundSport Headphones,1,99.99,06/28/19 21:21,"74 River St, Atlanta, GA 30301" +220507,Macbook Pro Laptop,1,1700,06/29/19 11:24,"533 8th St, Portland, ME 04101" +220508,AAA Batteries (4-pack),2,2.99,06/22/19 11:22,"112 Maple St, San Francisco, CA 94016" +220509,USB-C Charging Cable,1,11.95,06/03/19 15:13,"411 Cherry St, San Francisco, CA 94016" +220510,Wired Headphones,1,11.99,06/30/19 17:40,"521 Adams St, San Francisco, CA 94016" +220511,AA Batteries (4-pack),1,3.84,06/19/19 16:03,"98 9th St, Portland, OR 97035" +220512,Wired Headphones,1,11.99,06/29/19 12:12,"70 Dogwood St, Seattle, WA 98101" +220513,USB-C Charging Cable,2,11.95,06/02/19 15:18,"179 Chestnut St, San Francisco, CA 94016" +220514,Lightning Charging Cable,1,14.95,06/15/19 05:49,"774 9th St, Seattle, WA 98101" +220515,USB-C Charging Cable,1,11.95,06/28/19 11:34,"709 Adams St, New York City, NY 10001" +220516,Bose SoundSport Headphones,1,99.99,06/27/19 20:46,"199 13th St, Boston, MA 02215" +220517,20in Monitor,1,109.99,06/11/19 08:38,"711 12th St, San Francisco, CA 94016" +220518,Bose SoundSport Headphones,1,99.99,06/08/19 19:11,"129 Ridge St, Dallas, TX 75001" +220519,Google Phone,1,600,06/11/19 20:24,"617 Main St, Boston, MA 02215" +220519,USB-C Charging Cable,1,11.95,06/11/19 20:24,"617 Main St, Boston, MA 02215" +220520,20in Monitor,1,109.99,06/11/19 16:12,"840 Main St, San Francisco, CA 94016" +220521,USB-C Charging Cable,1,11.95,06/25/19 15:07,"590 10th St, New York City, NY 10001" +220521,AAA Batteries (4-pack),1,2.99,06/25/19 15:07,"590 10th St, New York City, NY 10001" +220522,27in FHD Monitor,1,149.99,06/01/19 21:21,"539 West St, New York City, NY 10001" +220523,Wired Headphones,1,11.99,06/10/19 21:06,"562 Jefferson St, Boston, MA 02215" +220524,Lightning Charging Cable,1,14.95,06/11/19 00:39,"929 Church St, San Francisco, CA 94016" +220525,AAA Batteries (4-pack),1,2.99,06/30/19 22:56,"250 Lake St, Dallas, TX 75001" +220526,iPhone,1,700,06/22/19 22:16,"262 Park St, Los Angeles, CA 90001" +220527,AAA Batteries (4-pack),1,2.99,06/17/19 16:37,"900 Johnson St, Atlanta, GA 30301" +220528,Apple Airpods Headphones,1,150,06/02/19 14:31,"977 11th St, Los Angeles, CA 90001" +220529,AAA Batteries (4-pack),1,2.99,06/04/19 12:04,"745 Lake St, San Francisco, CA 94016" +220530,AA Batteries (4-pack),1,3.84,06/04/19 21:45,"290 Church St, San Francisco, CA 94016" +220531,Lightning Charging Cable,1,14.95,06/03/19 11:51,"510 Hill St, San Francisco, CA 94016" +220532,AAA Batteries (4-pack),1,2.99,06/08/19 10:43,"407 Jackson St, Portland, ME 04101" +220533,USB-C Charging Cable,1,11.95,06/04/19 12:33,"23 Madison St, New York City, NY 10001" +220534,Wired Headphones,1,11.99,06/21/19 09:24,"611 Center St, Boston, MA 02215" +220535,Apple Airpods Headphones,1,150,06/09/19 17:59,"497 Dogwood St, Boston, MA 02215" +220536,Lightning Charging Cable,2,14.95,06/29/19 02:25,"365 Willow St, Atlanta, GA 30301" +220537,Lightning Charging Cable,1,14.95,06/08/19 07:57,"504 River St, Los Angeles, CA 90001" +220538,AA Batteries (4-pack),1,3.84,06/20/19 20:38,"503 4th St, Boston, MA 02215" +220539,USB-C Charging Cable,1,11.95,06/17/19 22:27,"98 Park St, Boston, MA 02215" +220540,AA Batteries (4-pack),1,3.84,06/22/19 13:41,"198 Elm St, Dallas, TX 75001" +220541,Bose SoundSport Headphones,1,99.99,06/10/19 18:57,"19 10th St, Austin, TX 73301" +220542,AA Batteries (4-pack),2,3.84,06/27/19 15:34,"240 Pine St, Dallas, TX 75001" +220543,Wired Headphones,1,11.99,06/29/19 15:40,"186 Pine St, Los Angeles, CA 90001" +220544,Lightning Charging Cable,1,14.95,06/29/19 07:41,"894 Hickory St, Boston, MA 02215" +220545,AAA Batteries (4-pack),1,2.99,06/08/19 19:15,"124 Forest St, New York City, NY 10001" +220546,34in Ultrawide Monitor,1,379.99,06/21/19 13:46,"407 Madison St, San Francisco, CA 94016" +220547,AA Batteries (4-pack),1,3.84,06/12/19 10:48,"142 6th St, Seattle, WA 98101" +220548,27in FHD Monitor,1,149.99,06/16/19 08:12,"494 8th St, Dallas, TX 75001" +220549,USB-C Charging Cable,1,11.95,06/03/19 17:54,"182 Adams St, Los Angeles, CA 90001" +220550,27in 4K Gaming Monitor,1,389.99,06/01/19 21:07,"289 Chestnut St, Boston, MA 02215" +220551,34in Ultrawide Monitor,1,379.99,06/17/19 07:54,"168 Lincoln St, San Francisco, CA 94016" +220552,AA Batteries (4-pack),1,3.84,06/22/19 09:53,"104 Walnut St, San Francisco, CA 94016" +220553,Macbook Pro Laptop,1,1700,06/25/19 15:06,"325 5th St, New York City, NY 10001" +220554,Bose SoundSport Headphones,1,99.99,06/01/19 06:25,"212 Sunset St, New York City, NY 10001" +220554,USB-C Charging Cable,1,11.95,06/01/19 06:25,"212 Sunset St, New York City, NY 10001" +220555,Lightning Charging Cable,1,14.95,06/03/19 10:47,"3 Church St, Boston, MA 02215" +220556,20in Monitor,1,109.99,06/22/19 01:35,"46 Dogwood St, San Francisco, CA 94016" +220557,Apple Airpods Headphones,1,150,06/25/19 22:40,"829 West St, Seattle, WA 98101" +220558,Wired Headphones,1,11.99,06/27/19 18:52,"272 Ridge St, Austin, TX 73301" +220559,20in Monitor,1,109.99,06/10/19 09:24,"378 Cherry St, Atlanta, GA 30301" +220560,Bose SoundSport Headphones,1,99.99,06/09/19 11:32,"242 Hickory St, San Francisco, CA 94016" +220561,Wired Headphones,2,11.99,06/26/19 17:20,"647 River St, Los Angeles, CA 90001" +220562,AA Batteries (4-pack),4,3.84,06/24/19 19:40,"935 Meadow St, Boston, MA 02215" +220563,27in FHD Monitor,1,149.99,06/22/19 15:46,"194 Park St, New York City, NY 10001" +220564,Apple Airpods Headphones,1,150,06/21/19 09:38,"641 Meadow St, San Francisco, CA 94016" +220565,27in FHD Monitor,1,149.99,06/30/19 11:14,"341 9th St, San Francisco, CA 94016" +220566,AAA Batteries (4-pack),1,2.99,06/22/19 08:47,"536 9th St, Los Angeles, CA 90001" +220567,Apple Airpods Headphones,1,150,06/30/19 23:41,"247 8th St, Los Angeles, CA 90001" +220568,Wired Headphones,1,11.99,06/27/19 00:50,"712 11th St, Los Angeles, CA 90001" +220569,Wired Headphones,1,11.99,06/17/19 18:20,"554 10th St, New York City, NY 10001" +220570,USB-C Charging Cable,1,11.95,06/03/19 12:58,"391 2nd St, Boston, MA 02215" +220571,Wired Headphones,1,11.99,06/26/19 18:03,"293 13th St, Seattle, WA 98101" +220572,Apple Airpods Headphones,1,150,06/18/19 17:25,"782 Wilson St, Dallas, TX 75001" +220573,USB-C Charging Cable,1,11.95,06/25/19 18:48,"734 South St, San Francisco, CA 94016" +220574,USB-C Charging Cable,1,11.95,06/24/19 19:41,"652 River St, Boston, MA 02215" +220575,AAA Batteries (4-pack),5,2.99,06/07/19 08:56,"833 13th St, Boston, MA 02215" +220576,AAA Batteries (4-pack),1,2.99,06/17/19 04:00,"381 Washington St, Boston, MA 02215" +220577,AA Batteries (4-pack),1,3.84,06/25/19 17:27,"354 Adams St, San Francisco, CA 94016" +220578,Bose SoundSport Headphones,1,99.99,06/17/19 09:03,"102 Adams St, Boston, MA 02215" +220579,Wired Headphones,1,11.99,06/01/19 12:44,"993 South St, Dallas, TX 75001" +220580,Wired Headphones,1,11.99,06/08/19 17:29,"362 Center St, Los Angeles, CA 90001" +220581,AAA Batteries (4-pack),4,2.99,06/28/19 07:04,"729 Lakeview St, San Francisco, CA 94016" +220582,27in FHD Monitor,1,149.99,06/24/19 22:31,"936 Maple St, Atlanta, GA 30301" +220583,Lightning Charging Cable,1,14.95,06/05/19 12:11,"819 2nd St, Los Angeles, CA 90001" +220584,AA Batteries (4-pack),1,3.84,06/22/19 18:38,"118 Sunset St, New York City, NY 10001" +220585,Lightning Charging Cable,1,14.95,06/07/19 07:29,"717 4th St, Los Angeles, CA 90001" +220586,Apple Airpods Headphones,1,150,06/17/19 13:15,"230 Willow St, San Francisco, CA 94016" +220587,AAA Batteries (4-pack),2,2.99,06/26/19 17:15,"157 6th St, Los Angeles, CA 90001" +220588,AA Batteries (4-pack),1,3.84,06/01/19 12:28,"654 Walnut St, San Francisco, CA 94016" +220589,AAA Batteries (4-pack),3,2.99,06/01/19 16:40,"364 West St, Dallas, TX 75001" +220590,Wired Headphones,1,11.99,06/27/19 19:30,"818 2nd St, Boston, MA 02215" +220591,Google Phone,1,600,06/02/19 18:17,"966 Church St, Los Angeles, CA 90001" +220592,Apple Airpods Headphones,1,150,06/07/19 17:11,"34 Lake St, San Francisco, CA 94016" +220593,20in Monitor,1,109.99,06/29/19 20:46,"747 5th St, Seattle, WA 98101" +220594,Wired Headphones,1,11.99,06/29/19 20:20,"485 River St, San Francisco, CA 94016" +220595,USB-C Charging Cable,1,11.95,06/07/19 14:00,"308 Hill St, Dallas, TX 75001" +220596,Apple Airpods Headphones,1,150,06/20/19 09:30,"11 River St, San Francisco, CA 94016" +220597,USB-C Charging Cable,1,11.95,06/16/19 23:29,"956 Hickory St, San Francisco, CA 94016" +220598,Wired Headphones,1,11.99,06/15/19 14:14,"993 Center St, Atlanta, GA 30301" +220599,Lightning Charging Cable,1,14.95,06/13/19 15:10,"875 Madison St, New York City, NY 10001" +220600,AAA Batteries (4-pack),1,2.99,06/17/19 09:37,"968 Wilson St, Boston, MA 02215" +220601,Wired Headphones,1,11.99,06/09/19 21:37,"257 Spruce St, San Francisco, CA 94016" +220602,34in Ultrawide Monitor,1,379.99,06/27/19 14:33,"903 10th St, Atlanta, GA 30301" +220603,AAA Batteries (4-pack),1,2.99,06/11/19 13:32,"354 West St, New York City, NY 10001" +220604,iPhone,1,700,06/10/19 15:38,"828 Forest St, San Francisco, CA 94016" +220605,AAA Batteries (4-pack),1,2.99,06/05/19 21:20,"854 6th St, New York City, NY 10001" +220606,AAA Batteries (4-pack),1,2.99,06/10/19 14:49,"603 Highland St, Los Angeles, CA 90001" +220607,AAA Batteries (4-pack),1,2.99,06/15/19 10:39,"686 Adams St, Portland, ME 04101" +220608,USB-C Charging Cable,1,11.95,06/07/19 11:59,"771 Adams St, New York City, NY 10001" +220609,USB-C Charging Cable,1,11.95,06/14/19 01:21,"21 Johnson St, Portland, ME 04101" +220610,Flatscreen TV,1,300,06/30/19 17:44,"661 Lakeview St, San Francisco, CA 94016" +220611,AA Batteries (4-pack),2,3.84,06/13/19 12:22,"435 Sunset St, Seattle, WA 98101" +220612,AA Batteries (4-pack),1,3.84,06/19/19 19:13,"23 10th St, Dallas, TX 75001" +220613,Wired Headphones,1,11.99,06/18/19 07:05,"352 1st St, San Francisco, CA 94016" +220614,Lightning Charging Cable,1,14.95,06/28/19 20:01,"920 Johnson St, Austin, TX 73301" +220615,AAA Batteries (4-pack),1,2.99,06/21/19 12:38,"502 Sunset St, Los Angeles, CA 90001" +220616,Wired Headphones,1,11.99,06/05/19 16:34,"836 Elm St, San Francisco, CA 94016" +220617,AA Batteries (4-pack),3,3.84,06/18/19 11:50,"975 6th St, Los Angeles, CA 90001" +220618,iPhone,1,700,06/09/19 05:25,"604 Main St, Los Angeles, CA 90001" +220619,AAA Batteries (4-pack),2,2.99,06/20/19 18:21,"900 Meadow St, Dallas, TX 75001" +220620,Bose SoundSport Headphones,1,99.99,06/11/19 12:20,"619 Sunset St, San Francisco, CA 94016" +220621,Flatscreen TV,1,300,06/20/19 20:42,"923 Sunset St, Austin, TX 73301" +220622,Apple Airpods Headphones,1,150,06/28/19 14:20,"150 Cedar St, Seattle, WA 98101" +220623,27in FHD Monitor,1,149.99,06/05/19 19:34,"979 South St, New York City, NY 10001" +220624,Lightning Charging Cable,1,14.95,06/09/19 20:16,"35 Sunset St, Los Angeles, CA 90001" +220625,Bose SoundSport Headphones,1,99.99,06/30/19 19:08,"973 Lakeview St, Atlanta, GA 30301" +220626,AA Batteries (4-pack),4,3.84,06/18/19 19:44,"165 1st St, San Francisco, CA 94016" +220627,Bose SoundSport Headphones,1,99.99,06/03/19 23:03,"550 Dogwood St, San Francisco, CA 94016" +220628,Macbook Pro Laptop,1,1700,06/26/19 09:37,"609 River St, Atlanta, GA 30301" +220629,USB-C Charging Cable,1,11.95,06/05/19 17:55,"322 Cherry St, Dallas, TX 75001" +220630,iPhone,1,700,06/18/19 15:52,"49 6th St, San Francisco, CA 94016" +220631,20in Monitor,1,109.99,06/20/19 20:20,"461 6th St, San Francisco, CA 94016" +220632,Google Phone,1,600,06/09/19 14:58,"756 Spruce St, San Francisco, CA 94016" +220633,USB-C Charging Cable,1,11.95,06/30/19 19:41,"506 Lincoln St, San Francisco, CA 94016" +220634,AA Batteries (4-pack),2,3.84,06/20/19 23:42,"391 4th St, Atlanta, GA 30301" +220635,AAA Batteries (4-pack),1,2.99,06/14/19 12:44,"557 Madison St, Boston, MA 02215" +220636,AA Batteries (4-pack),1,3.84,06/29/19 22:18,"729 Maple St, Dallas, TX 75001" +220637,Apple Airpods Headphones,1,150,06/22/19 13:24,"268 Wilson St, Dallas, TX 75001" +220638,34in Ultrawide Monitor,1,379.99,06/14/19 18:49,"156 Dogwood St, San Francisco, CA 94016" +220639,AA Batteries (4-pack),1,3.84,06/25/19 17:20,"919 Dogwood St, San Francisco, CA 94016" +220640,Lightning Charging Cable,1,14.95,06/15/19 17:26,"610 Highland St, Los Angeles, CA 90001" +220641,27in 4K Gaming Monitor,1,389.99,06/01/19 20:17,"124 Chestnut St, Portland, OR 97035" +220642,27in FHD Monitor,1,149.99,06/22/19 08:19,"146 11th St, San Francisco, CA 94016" +220643,Lightning Charging Cable,1,14.95,06/03/19 10:13,"567 14th St, Boston, MA 02215" +220644,20in Monitor,1,109.99,06/17/19 19:56,"343 5th St, San Francisco, CA 94016" +220645,Lightning Charging Cable,1,14.95,06/10/19 11:38,"97 6th St, San Francisco, CA 94016" +220646,AAA Batteries (4-pack),3,2.99,06/30/19 23:24,"148 Willow St, Atlanta, GA 30301" +220647,Bose SoundSport Headphones,1,99.99,06/26/19 18:35,"156 9th St, Boston, MA 02215" +220648,34in Ultrawide Monitor,1,379.99,06/28/19 11:25,"291 Lake St, San Francisco, CA 94016" +220649,Bose SoundSport Headphones,1,99.99,06/02/19 15:50,"613 Ridge St, Austin, TX 73301" +220650,USB-C Charging Cable,1,11.95,06/21/19 23:11,"81 Cedar St, Portland, ME 04101" +220651,ThinkPad Laptop,1,999.99,06/26/19 08:52,"609 Jefferson St, Atlanta, GA 30301" +220652,Lightning Charging Cable,1,14.95,06/17/19 16:30,"161 Park St, San Francisco, CA 94016" +220653,Lightning Charging Cable,1,14.95,06/13/19 02:29,"526 Johnson St, San Francisco, CA 94016" +220654,Apple Airpods Headphones,1,150,06/11/19 13:07,"671 Park St, Los Angeles, CA 90001" +220655,27in 4K Gaming Monitor,1,389.99,06/14/19 21:04,"348 4th St, Los Angeles, CA 90001" +220656,Flatscreen TV,1,300,06/17/19 14:34,"628 Madison St, Los Angeles, CA 90001" +220657,Bose SoundSport Headphones,1,99.99,06/19/19 16:04,"527 4th St, Los Angeles, CA 90001" +220658,27in FHD Monitor,1,149.99,06/20/19 22:36,"299 Maple St, Los Angeles, CA 90001" +220659,Wired Headphones,3,11.99,06/25/19 12:18,"839 4th St, San Francisco, CA 94016" +220660,Wired Headphones,1,11.99,06/05/19 15:51,"482 7th St, New York City, NY 10001" +220661,Macbook Pro Laptop,1,1700,06/14/19 21:20,"815 Johnson St, New York City, NY 10001" +220662,AAA Batteries (4-pack),1,2.99,06/11/19 13:22,"122 Hickory St, New York City, NY 10001" +220663,Apple Airpods Headphones,1,150,06/01/19 18:12,"590 Jefferson St, Portland, OR 97035" +220664,Bose SoundSport Headphones,1,99.99,06/22/19 02:04,"545 Madison St, Dallas, TX 75001" +220665,ThinkPad Laptop,1,999.99,06/11/19 19:59,"636 Highland St, San Francisco, CA 94016" +220666,Lightning Charging Cable,1,14.95,06/01/19 14:09,"698 Spruce St, Seattle, WA 98101" +220667,AA Batteries (4-pack),1,3.84,06/19/19 20:13,"666 Madison St, Austin, TX 73301" +220668,27in FHD Monitor,1,149.99,06/21/19 12:59,"580 South St, Seattle, WA 98101" +220669,Apple Airpods Headphones,1,150,06/07/19 19:26,"174 9th St, Atlanta, GA 30301" +220670,ThinkPad Laptop,1,999.99,06/15/19 20:01,"596 Johnson St, Portland, ME 04101" +220671,AAA Batteries (4-pack),1,2.99,06/21/19 10:19,"276 Johnson St, Dallas, TX 75001" +220672,AAA Batteries (4-pack),1,2.99,06/19/19 18:52,"968 Park St, Portland, OR 97035" +220673,AAA Batteries (4-pack),1,2.99,06/09/19 22:27,"166 8th St, San Francisco, CA 94016" +220674,AA Batteries (4-pack),2,3.84,06/11/19 14:34,"427 Park St, New York City, NY 10001" +220675,iPhone,1,700,06/11/19 09:12,"821 Wilson St, San Francisco, CA 94016" +220676,27in FHD Monitor,1,149.99,06/19/19 11:08,"314 Willow St, Los Angeles, CA 90001" +220677,ThinkPad Laptop,1,999.99,06/11/19 09:41,"886 13th St, Atlanta, GA 30301" +220678,34in Ultrawide Monitor,1,379.99,06/20/19 10:35,"12 12th St, San Francisco, CA 94016" +220679,27in 4K Gaming Monitor,1,389.99,06/10/19 09:28,"270 8th St, Seattle, WA 98101" +220680,Wired Headphones,1,11.99,06/27/19 21:17,"653 Cedar St, Boston, MA 02215" +220681,Bose SoundSport Headphones,1,99.99,06/21/19 13:26,"220 Elm St, Los Angeles, CA 90001" +220682,Wired Headphones,1,11.99,06/21/19 19:22,"11 Jackson St, Atlanta, GA 30301" +220683,Vareebadd Phone,1,400,06/22/19 21:46,"469 Highland St, Seattle, WA 98101" +220684,Vareebadd Phone,1,400,06/16/19 19:48,"875 Park St, San Francisco, CA 94016" +220684,USB-C Charging Cable,4,11.95,06/16/19 19:48,"875 Park St, San Francisco, CA 94016" +220685,USB-C Charging Cable,1,11.95,06/26/19 22:00,"887 8th St, Seattle, WA 98101" +220686,Apple Airpods Headphones,1,150,06/20/19 11:48,"786 Pine St, Dallas, TX 75001" +220687,AA Batteries (4-pack),1,3.84,06/06/19 12:20,"103 South St, San Francisco, CA 94016" +220688,Bose SoundSport Headphones,1,99.99,06/18/19 21:23,"559 Spruce St, Austin, TX 73301" +220689,Lightning Charging Cable,1,14.95,06/21/19 13:50,"999 Elm St, San Francisco, CA 94016" +220690,Google Phone,1,600,06/14/19 20:58,"753 6th St, San Francisco, CA 94016" +220690,USB-C Charging Cable,1,11.95,06/14/19 20:58,"753 6th St, San Francisco, CA 94016" +220691,AAA Batteries (4-pack),1,2.99,06/22/19 03:04,"870 2nd St, Austin, TX 73301" +220692,Wired Headphones,1,11.99,06/11/19 18:18,"445 Lakeview St, San Francisco, CA 94016" +220693,Lightning Charging Cable,1,14.95,06/23/19 20:56,"125 Forest St, Austin, TX 73301" +220694,USB-C Charging Cable,1,11.95,06/02/19 19:32,"209 Lake St, San Francisco, CA 94016" +220695,USB-C Charging Cable,1,11.95,06/04/19 15:08,"960 Hickory St, New York City, NY 10001" +220696,Google Phone,1,600,06/06/19 21:03,"894 Forest St, Seattle, WA 98101" +220696,USB-C Charging Cable,1,11.95,06/06/19 21:03,"894 Forest St, Seattle, WA 98101" +220696,Wired Headphones,2,11.99,06/06/19 21:03,"894 Forest St, Seattle, WA 98101" +220697,27in 4K Gaming Monitor,1,389.99,06/17/19 10:55,"740 Adams St, Boston, MA 02215" +220698,Lightning Charging Cable,1,14.95,06/16/19 18:57,"896 Cedar St, San Francisco, CA 94016" +220699,Apple Airpods Headphones,1,150,06/21/19 17:17,"823 Highland St, Dallas, TX 75001" +220700,Macbook Pro Laptop,1,1700,06/26/19 22:06,"763 Center St, San Francisco, CA 94016" +220701,Bose SoundSport Headphones,1,99.99,06/26/19 12:57,"227 6th St, Boston, MA 02215" +220702,iPhone,1,700,06/02/19 13:12,"838 6th St, Los Angeles, CA 90001" +220703,27in 4K Gaming Monitor,1,389.99,06/20/19 20:00,"682 11th St, Los Angeles, CA 90001" +220704,Lightning Charging Cable,1,14.95,06/12/19 18:41,"213 Spruce St, Boston, MA 02215" +220705,USB-C Charging Cable,1,11.95,06/14/19 11:20,"443 6th St, San Francisco, CA 94016" +220706,34in Ultrawide Monitor,1,379.99,06/04/19 10:05,"513 Hill St, Seattle, WA 98101" +220707,Apple Airpods Headphones,1,150,06/25/19 12:45,"497 1st St, Dallas, TX 75001" +220708,Google Phone,1,600,06/14/19 16:03,"938 Ridge St, Boston, MA 02215" +220709,ThinkPad Laptop,1,999.99,06/25/19 18:49,"828 Elm St, San Francisco, CA 94016" +220710,Wired Headphones,1,11.99,06/28/19 17:07,"57 Cedar St, San Francisco, CA 94016" +220711,27in FHD Monitor,1,149.99,06/25/19 01:16,"388 7th St, San Francisco, CA 94016" +220712,Lightning Charging Cable,1,14.95,06/01/19 13:23,"373 South St, Seattle, WA 98101" +220713,ThinkPad Laptop,1,999.99,06/20/19 10:46,"193 Highland St, Dallas, TX 75001" +220714,Wired Headphones,1,11.99,06/05/19 16:48,"129 2nd St, San Francisco, CA 94016" +220715,Wired Headphones,1,11.99,06/23/19 08:32,"387 Adams St, Boston, MA 02215" +,,,,, +220716,20in Monitor,1,109.99,06/24/19 17:21,"908 10th St, Dallas, TX 75001" +220717,20in Monitor,1,109.99,06/12/19 23:47,"25 Ridge St, New York City, NY 10001" +220718,20in Monitor,1,109.99,06/30/19 17:07,"569 Maple St, Boston, MA 02215" +220719,LG Dryer,1,600.0,06/11/19 19:38,"178 Johnson St, Boston, MA 02215" +220720,AAA Batteries (4-pack),2,2.99,06/26/19 17:26,"30 Wilson St, New York City, NY 10001" +220721,Google Phone,1,600,06/19/19 14:15,"58 Park St, Los Angeles, CA 90001" +220721,USB-C Charging Cable,1,11.95,06/19/19 14:15,"58 Park St, Los Angeles, CA 90001" +220722,Wired Headphones,1,11.99,06/06/19 17:22,"922 Church St, Dallas, TX 75001" +220723,Lightning Charging Cable,1,14.95,06/11/19 12:21,"375 Madison St, San Francisco, CA 94016" +220724,Wired Headphones,1,11.99,06/07/19 13:05,"3 5th St, Los Angeles, CA 90001" +220725,Lightning Charging Cable,1,14.95,06/23/19 13:29,"887 Cedar St, New York City, NY 10001" +220726,USB-C Charging Cable,1,11.95,06/21/19 14:26,"438 5th St, Portland, OR 97035" +220727,34in Ultrawide Monitor,1,379.99,06/17/19 15:53,"699 Cedar St, Los Angeles, CA 90001" +220728,AAA Batteries (4-pack),1,2.99,06/01/19 12:33,"336 14th St, Dallas, TX 75001" +220729,Google Phone,1,600,06/23/19 11:41,"795 Elm St, San Francisco, CA 94016" +220729,USB-C Charging Cable,2,11.95,06/23/19 11:41,"795 Elm St, San Francisco, CA 94016" +220730,Bose SoundSport Headphones,1,99.99,06/30/19 20:56,"752 Johnson St, San Francisco, CA 94016" +220731,Flatscreen TV,1,300,06/07/19 18:05,"814 5th St, Boston, MA 02215" +220732,Flatscreen TV,1,300,06/05/19 10:02,"433 North St, Portland, ME 04101" +220733,20in Monitor,1,109.99,06/12/19 14:51,"398 12th St, Dallas, TX 75001" +220734,USB-C Charging Cable,1,11.95,06/10/19 07:09,"154 14th St, Los Angeles, CA 90001" +220735,27in FHD Monitor,1,149.99,06/02/19 13:32,"833 Spruce St, Portland, OR 97035" +220736,Wired Headphones,2,11.99,06/09/19 10:19,"56 2nd St, San Francisco, CA 94016" +220737,27in 4K Gaming Monitor,1,389.99,06/12/19 13:27,"705 4th St, New York City, NY 10001" +220738,Lightning Charging Cable,1,14.95,06/09/19 08:09,"629 River St, Los Angeles, CA 90001" +220739,USB-C Charging Cable,2,11.95,06/18/19 08:24,"201 Spruce St, New York City, NY 10001" +220740,AAA Batteries (4-pack),1,2.99,06/23/19 19:11,"824 Pine St, Seattle, WA 98101" +220741,34in Ultrawide Monitor,1,379.99,06/02/19 22:59,"571 Forest St, Los Angeles, CA 90001" +220742,Wired Headphones,1,11.99,06/18/19 15:59,"911 Pine St, Los Angeles, CA 90001" +220743,ThinkPad Laptop,1,999.99,06/10/19 04:48,"126 Ridge St, Los Angeles, CA 90001" +220744,AAA Batteries (4-pack),1,2.99,06/22/19 18:17,"267 8th St, San Francisco, CA 94016" +220745,AA Batteries (4-pack),1,3.84,06/11/19 22:16,"413 Washington St, Los Angeles, CA 90001" +220746,AA Batteries (4-pack),1,3.84,06/14/19 08:39,"537 Walnut St, New York City, NY 10001" +220747,Lightning Charging Cable,1,14.95,06/17/19 22:49,"116 Pine St, Portland, OR 97035" +220748,iPhone,1,700,06/14/19 17:41,"362 Sunset St, San Francisco, CA 94016" +220748,Lightning Charging Cable,1,14.95,06/14/19 17:41,"362 Sunset St, San Francisco, CA 94016" +220748,Wired Headphones,1,11.99,06/14/19 17:41,"362 Sunset St, San Francisco, CA 94016" +220749,Lightning Charging Cable,1,14.95,06/16/19 23:50,"711 Center St, Boston, MA 02215" +220750,27in 4K Gaming Monitor,1,389.99,06/10/19 09:46,"54 Lincoln St, San Francisco, CA 94016" +220751,Macbook Pro Laptop,1,1700,06/11/19 14:24,"232 Maple St, Seattle, WA 98101" +220752,USB-C Charging Cable,1,11.95,06/28/19 19:48,"262 4th St, San Francisco, CA 94016" +220753,27in FHD Monitor,1,149.99,06/13/19 14:09,"468 Lincoln St, Los Angeles, CA 90001" +220754,AA Batteries (4-pack),2,3.84,06/06/19 12:43,"103 Adams St, San Francisco, CA 94016" +220755,AAA Batteries (4-pack),1,2.99,06/25/19 16:58,"758 5th St, Portland, OR 97035" +220756,Flatscreen TV,1,300,06/15/19 13:28,"323 Chestnut St, Boston, MA 02215" +220757,Wired Headphones,1,11.99,06/21/19 17:50,"967 5th St, New York City, NY 10001" +220758,Lightning Charging Cable,1,14.95,06/19/19 22:09,"373 Highland St, Boston, MA 02215" +220759,Wired Headphones,1,11.99,06/05/19 12:56,"95 Lincoln St, Atlanta, GA 30301" +220760,Apple Airpods Headphones,1,150,06/26/19 09:31,"51 Washington St, San Francisco, CA 94016" +220761,AA Batteries (4-pack),1,3.84,06/08/19 22:57,"97 Lake St, Los Angeles, CA 90001" +220762,AA Batteries (4-pack),1,3.84,06/22/19 13:07,"7 North St, Dallas, TX 75001" +220763,ThinkPad Laptop,1,999.99,06/23/19 18:40,"202 Jackson St, Los Angeles, CA 90001" +220764,27in FHD Monitor,1,149.99,06/29/19 09:27,"843 6th St, San Francisco, CA 94016" +220765,Bose SoundSport Headphones,1,99.99,06/11/19 11:59,"126 Lincoln St, New York City, NY 10001" +220766,Bose SoundSport Headphones,1,99.99,06/12/19 15:21,"737 4th St, Portland, OR 97035" +220767,Apple Airpods Headphones,1,150,06/01/19 13:13,"249 Cedar St, San Francisco, CA 94016" +220768,Flatscreen TV,1,300,06/14/19 17:59,"583 Chestnut St, Dallas, TX 75001" +220769,Flatscreen TV,1,300,06/24/19 20:18,"724 Main St, San Francisco, CA 94016" +220770,20in Monitor,1,109.99,06/19/19 22:20,"94 Hickory St, New York City, NY 10001" +220771,AAA Batteries (4-pack),2,2.99,06/03/19 08:57,"737 Park St, Atlanta, GA 30301" +220771,Bose SoundSport Headphones,1,99.99,06/03/19 08:57,"737 Park St, Atlanta, GA 30301" +220772,USB-C Charging Cable,1,11.95,06/06/19 17:16,"888 Hill St, Seattle, WA 98101" +220773,Bose SoundSport Headphones,1,99.99,06/03/19 00:21,"108 4th St, San Francisco, CA 94016" +220774,AA Batteries (4-pack),1,3.84,06/26/19 20:28,"617 Cherry St, New York City, NY 10001" +220775,AAA Batteries (4-pack),2,2.99,06/03/19 20:28,"485 North St, Los Angeles, CA 90001" +220776,Apple Airpods Headphones,1,150,06/26/19 11:40,"764 4th St, Los Angeles, CA 90001" +220777,AAA Batteries (4-pack),2,2.99,06/18/19 11:43,"201 2nd St, Atlanta, GA 30301" +220778,Lightning Charging Cable,1,14.95,06/18/19 00:53,"56 Cedar St, San Francisco, CA 94016" +220779,Flatscreen TV,1,300,06/23/19 12:02,"213 Adams St, Los Angeles, CA 90001" +220780,USB-C Charging Cable,1,11.95,06/02/19 11:02,"996 Maple St, Los Angeles, CA 90001" +220781,20in Monitor,1,109.99,06/10/19 13:12,"315 Church St, San Francisco, CA 94016" +220782,USB-C Charging Cable,2,11.95,06/11/19 18:37,"543 Washington St, Austin, TX 73301" +220783,27in FHD Monitor,1,149.99,06/01/19 10:33,"554 Walnut St, Boston, MA 02215" +220784,iPhone,1,700,06/16/19 19:18,"42 Lincoln St, Atlanta, GA 30301" +220785,Apple Airpods Headphones,1,150,06/12/19 08:57,"326 Main St, Dallas, TX 75001" +220786,Apple Airpods Headphones,1,150,06/28/19 20:58,"728 11th St, Seattle, WA 98101" +220787,ThinkPad Laptop,1,999.99,06/23/19 15:32,"747 Washington St, Seattle, WA 98101" +220787,AA Batteries (4-pack),2,3.84,06/23/19 15:32,"747 Washington St, Seattle, WA 98101" +220788,ThinkPad Laptop,1,999.99,06/27/19 11:02,"290 Pine St, Seattle, WA 98101" +220789,AA Batteries (4-pack),1,3.84,06/01/19 12:31,"468 2nd St, San Francisco, CA 94016" +220790,AAA Batteries (4-pack),2,2.99,06/24/19 11:35,"19 Lincoln St, San Francisco, CA 94016" +220791,iPhone,1,700,06/11/19 20:45,"997 1st St, Portland, OR 97035" +220792,Macbook Pro Laptop,1,1700,06/29/19 04:56,"268 14th St, Boston, MA 02215" +220793,USB-C Charging Cable,1,11.95,06/16/19 02:28,"531 Chestnut St, Los Angeles, CA 90001" +220794,27in FHD Monitor,1,149.99,06/20/19 14:28,"133 Sunset St, Los Angeles, CA 90001" +220795,AAA Batteries (4-pack),1,2.99,06/01/19 18:32,"404 Church St, New York City, NY 10001" +220796,Google Phone,1,600,06/25/19 21:15,"250 2nd St, New York City, NY 10001" +220797,Lightning Charging Cable,1,14.95,06/09/19 14:03,"717 Madison St, Los Angeles, CA 90001" +220798,iPhone,1,700,06/03/19 16:41,"390 12th St, New York City, NY 10001" +220799,Apple Airpods Headphones,1,150,06/16/19 18:44,"528 West St, Dallas, TX 75001" +220800,Macbook Pro Laptop,1,1700,06/28/19 14:09,"340 14th St, Boston, MA 02215" +220801,27in 4K Gaming Monitor,1,389.99,06/14/19 12:08,"785 12th St, New York City, NY 10001" +220802,Bose SoundSport Headphones,1,99.99,06/27/19 21:00,"660 10th St, Austin, TX 73301" +220802,34in Ultrawide Monitor,1,379.99,06/27/19 21:00,"660 10th St, Austin, TX 73301" +220803,AA Batteries (4-pack),1,3.84,06/22/19 11:24,"985 6th St, Seattle, WA 98101" +220804,20in Monitor,1,109.99,06/16/19 08:55,"199 Dogwood St, Boston, MA 02215" +220805,iPhone,1,700,06/14/19 22:39,"502 Park St, Boston, MA 02215" +220805,Lightning Charging Cable,1,14.95,06/14/19 22:39,"502 Park St, Boston, MA 02215" +220806,34in Ultrawide Monitor,1,379.99,06/12/19 14:04,"677 River St, San Francisco, CA 94016" +220807,Lightning Charging Cable,2,14.95,06/10/19 12:38,"918 Jackson St, Atlanta, GA 30301" +220808,AAA Batteries (4-pack),1,2.99,06/25/19 22:10,"435 Wilson St, San Francisco, CA 94016" +220809,27in 4K Gaming Monitor,1,389.99,06/17/19 20:15,"508 5th St, Seattle, WA 98101" +220810,Lightning Charging Cable,1,14.95,06/01/19 20:01,"124 Lakeview St, San Francisco, CA 94016" +220811,Lightning Charging Cable,1,14.95,06/09/19 13:08,"542 7th St, New York City, NY 10001" +220812,AA Batteries (4-pack),1,3.84,06/23/19 11:29,"879 8th St, San Francisco, CA 94016" +220813,USB-C Charging Cable,2,11.95,06/25/19 13:23,"771 West St, San Francisco, CA 94016" +220814,AAA Batteries (4-pack),1,2.99,06/23/19 12:59,"951 Park St, Los Angeles, CA 90001" +220815,AA Batteries (4-pack),1,3.84,06/21/19 18:47,"657 Madison St, Portland, OR 97035" +220816,27in 4K Gaming Monitor,1,389.99,06/29/19 15:12,"311 Cherry St, Boston, MA 02215" +220817,AA Batteries (4-pack),1,3.84,06/24/19 11:00,"207 Dogwood St, Dallas, TX 75001" +220818,Vareebadd Phone,1,400,06/12/19 22:22,"672 River St, San Francisco, CA 94016" +220819,Wired Headphones,1,11.99,06/22/19 19:59,"155 River St, Boston, MA 02215" +220820,AA Batteries (4-pack),1,3.84,06/14/19 14:19,"494 Main St, Austin, TX 73301" +220821,AAA Batteries (4-pack),1,2.99,06/28/19 08:06,"905 Johnson St, Atlanta, GA 30301" +220822,Apple Airpods Headphones,1,150,06/06/19 11:13,"925 9th St, Los Angeles, CA 90001" +220823,AA Batteries (4-pack),1,3.84,06/20/19 14:23,"509 Elm St, New York City, NY 10001" +220824,AAA Batteries (4-pack),2,2.99,06/14/19 16:33,"721 Meadow St, New York City, NY 10001" +220825,USB-C Charging Cable,1,11.95,06/08/19 14:23,"718 West St, San Francisco, CA 94016" +220826,Bose SoundSport Headphones,1,99.99,06/03/19 15:10,"288 Forest St, Los Angeles, CA 90001" +220827,20in Monitor,1,109.99,06/15/19 16:18,"207 Chestnut St, Boston, MA 02215" +220828,20in Monitor,1,109.99,06/16/19 16:51,"99 9th St, San Francisco, CA 94016" +220829,Google Phone,1,600,06/30/19 09:02,"537 Spruce St, Los Angeles, CA 90001" +220830,AA Batteries (4-pack),1,3.84,06/08/19 19:30,"545 Spruce St, Los Angeles, CA 90001" +220831,Lightning Charging Cable,3,14.95,06/20/19 10:31,"347 Madison St, Los Angeles, CA 90001" +220832,34in Ultrawide Monitor,1,379.99,06/17/19 00:13,"86 Center St, Los Angeles, CA 90001" +220833,ThinkPad Laptop,1,999.99,06/24/19 07:54,"645 11th St, Boston, MA 02215" +220833,Wired Headphones,1,11.99,06/24/19 07:54,"645 11th St, Boston, MA 02215" +220834,USB-C Charging Cable,1,11.95,06/14/19 18:31,"310 Spruce St, Los Angeles, CA 90001" +220835,Lightning Charging Cable,1,14.95,06/08/19 15:44,"758 Lakeview St, Los Angeles, CA 90001" +220836,Vareebadd Phone,1,400,06/29/19 12:06,"79 Adams St, Los Angeles, CA 90001" +220837,AAA Batteries (4-pack),1,2.99,06/04/19 12:45,"525 Maple St, San Francisco, CA 94016" +220838,AAA Batteries (4-pack),1,2.99,06/04/19 12:43,"906 Cedar St, Los Angeles, CA 90001" +220839,Apple Airpods Headphones,1,150,06/12/19 20:10,"237 9th St, Seattle, WA 98101" +220840,Apple Airpods Headphones,1,150,06/08/19 09:38,"480 6th St, San Francisco, CA 94016" +220841,AAA Batteries (4-pack),1,2.99,06/26/19 09:18,"472 Hill St, New York City, NY 10001" +220842,AA Batteries (4-pack),1,3.84,06/13/19 15:42,"750 6th St, Portland, OR 97035" +220843,USB-C Charging Cable,1,11.95,06/18/19 15:59,"31 10th St, Los Angeles, CA 90001" +220844,AAA Batteries (4-pack),1,2.99,06/21/19 19:43,"88 Adams St, San Francisco, CA 94016" +220845,AA Batteries (4-pack),1,3.84,06/01/19 21:00,"129 13th St, Portland, OR 97035" +220846,27in FHD Monitor,1,149.99,06/19/19 23:54,"715 4th St, Portland, OR 97035" +220847,Apple Airpods Headphones,1,150,06/11/19 13:07,"771 Sunset St, Portland, ME 04101" +220848,AA Batteries (4-pack),2,3.84,06/10/19 14:53,"871 North St, New York City, NY 10001" +220849,Lightning Charging Cable,1,14.95,06/28/19 10:07,"149 Washington St, Dallas, TX 75001" +220850,AA Batteries (4-pack),3,3.84,06/23/19 13:37,"130 2nd St, San Francisco, CA 94016" +220851,Bose SoundSport Headphones,1,99.99,06/18/19 09:24,"998 Center St, Boston, MA 02215" +220852,ThinkPad Laptop,1,999.99,06/19/19 23:29,"234 12th St, Atlanta, GA 30301" +220853,34in Ultrawide Monitor,1,379.99,06/25/19 20:45,"250 West St, Los Angeles, CA 90001" +220854,Apple Airpods Headphones,1,150,06/05/19 18:14,"53 Walnut St, Portland, OR 97035" +220855,USB-C Charging Cable,1,11.95,06/25/19 11:19,"513 4th St, Dallas, TX 75001" +220856,Bose SoundSport Headphones,1,99.99,06/03/19 03:01,"490 Lincoln St, Boston, MA 02215" +220857,AA Batteries (4-pack),1,3.84,06/30/19 13:07,"877 13th St, Boston, MA 02215" +220858,AAA Batteries (4-pack),1,2.99,06/15/19 21:52,"215 Hill St, Atlanta, GA 30301" +220859,AA Batteries (4-pack),1,3.84,06/30/19 19:27,"760 River St, Boston, MA 02215" +220860,USB-C Charging Cable,1,11.95,06/03/19 15:29,"575 6th St, New York City, NY 10001" +220861,USB-C Charging Cable,1,11.95,06/03/19 00:29,"963 Church St, New York City, NY 10001" +220862,iPhone,1,700,06/11/19 13:43,"486 Park St, Seattle, WA 98101" +220863,Apple Airpods Headphones,1,150,06/04/19 20:15,"495 Meadow St, New York City, NY 10001" +220864,ThinkPad Laptop,1,999.99,06/23/19 21:04,"42 Johnson St, Los Angeles, CA 90001" +220865,Google Phone,1,600,06/02/19 18:54,"610 Walnut St, Atlanta, GA 30301" +220866,AA Batteries (4-pack),2,3.84,06/28/19 01:43,"476 12th St, Los Angeles, CA 90001" +220867,Apple Airpods Headphones,1,150,06/26/19 01:15,"888 Chestnut St, Seattle, WA 98101" +220868,Lightning Charging Cable,1,14.95,06/13/19 20:28,"199 7th St, San Francisco, CA 94016" +220869,34in Ultrawide Monitor,1,379.99,06/08/19 23:16,"959 North St, Dallas, TX 75001" +220870,34in Ultrawide Monitor,1,379.99,06/22/19 12:25,"508 Center St, Los Angeles, CA 90001" +220871,Lightning Charging Cable,1,14.95,06/25/19 07:26,"405 Adams St, Los Angeles, CA 90001" +220872,Bose SoundSport Headphones,1,99.99,06/15/19 18:41,"89 Madison St, Boston, MA 02215" +220873,ThinkPad Laptop,1,999.99,06/10/19 08:20,"753 Meadow St, San Francisco, CA 94016" +220874,AAA Batteries (4-pack),1,2.99,06/16/19 18:07,"298 Lincoln St, Los Angeles, CA 90001" +220875,Apple Airpods Headphones,1,150,06/09/19 20:04,"682 Cherry St, Los Angeles, CA 90001" +220876,27in 4K Gaming Monitor,1,389.99,06/22/19 18:24,"378 Wilson St, Dallas, TX 75001" +220877,Apple Airpods Headphones,1,150,06/01/19 11:46,"137 Walnut St, Los Angeles, CA 90001" +220878,USB-C Charging Cable,1,11.95,06/07/19 20:52,"499 Forest St, Portland, OR 97035" +220879,iPhone,1,700,06/06/19 19:02,"691 10th St, Boston, MA 02215" +220879,Lightning Charging Cable,1,14.95,06/06/19 19:02,"691 10th St, Boston, MA 02215" +220880,AAA Batteries (4-pack),2,2.99,06/24/19 22:08,"182 Spruce St, San Francisco, CA 94016" +220881,Apple Airpods Headphones,1,150,06/16/19 11:39,"185 Pine St, San Francisco, CA 94016" +220882,AA Batteries (4-pack),3,3.84,06/18/19 11:02,"515 12th St, Boston, MA 02215" +220883,Bose SoundSport Headphones,1,99.99,06/29/19 18:05,"563 4th St, Atlanta, GA 30301" +220884,USB-C Charging Cable,1,11.95,06/25/19 21:31,"220 8th St, New York City, NY 10001" +220885,Lightning Charging Cable,1,14.95,06/22/19 13:59,"465 Washington St, Boston, MA 02215" +220886,Wired Headphones,2,11.99,06/17/19 23:20,"613 Sunset St, San Francisco, CA 94016" +220887,27in FHD Monitor,1,149.99,06/14/19 10:42,"366 Cedar St, San Francisco, CA 94016" +220888,Lightning Charging Cable,1,14.95,06/11/19 11:55,"810 Walnut St, Portland, ME 04101" +220889,34in Ultrawide Monitor,1,379.99,06/03/19 22:05,"264 12th St, Atlanta, GA 30301" +220890,AA Batteries (4-pack),2,3.84,06/16/19 13:07,"1 River St, Los Angeles, CA 90001" +220891,20in Monitor,1,109.99,06/27/19 12:10,"256 14th St, Boston, MA 02215" +220892,Lightning Charging Cable,1,14.95,06/07/19 14:20,"257 Church St, Boston, MA 02215" +220893,Bose SoundSport Headphones,1,99.99,06/03/19 18:39,"30 Pine St, Los Angeles, CA 90001" +220894,27in 4K Gaming Monitor,1,389.99,06/13/19 11:27,"544 North St, Dallas, TX 75001" +220894,ThinkPad Laptop,1,999.99,06/13/19 11:27,"544 North St, Dallas, TX 75001" +220895,Wired Headphones,1,11.99,06/25/19 12:04,"523 Spruce St, Los Angeles, CA 90001" +220896,USB-C Charging Cable,1,11.95,06/01/19 23:31,"372 Lake St, San Francisco, CA 94016" +220897,Lightning Charging Cable,1,14.95,06/29/19 08:54,"900 Spruce St, San Francisco, CA 94016" +220898,Wired Headphones,1,11.99,06/02/19 17:01,"638 Meadow St, Boston, MA 02215" +220899,USB-C Charging Cable,1,11.95,06/17/19 06:39,"637 14th St, Austin, TX 73301" +220900,AA Batteries (4-pack),2,3.84,06/14/19 19:19,"407 Meadow St, San Francisco, CA 94016" +220901,USB-C Charging Cable,1,11.95,06/12/19 08:04,"490 2nd St, San Francisco, CA 94016" +220902,27in 4K Gaming Monitor,1,389.99,06/24/19 15:20,"83 5th St, Portland, OR 97035" +220903,34in Ultrawide Monitor,1,379.99,06/10/19 23:35,"703 North St, Los Angeles, CA 90001" +220904,27in 4K Gaming Monitor,1,389.99,06/27/19 18:59,"463 12th St, San Francisco, CA 94016" +220905,Bose SoundSport Headphones,1,99.99,06/13/19 17:03,"82 South St, Los Angeles, CA 90001" +220906,ThinkPad Laptop,1,999.99,06/25/19 21:55,"310 Cedar St, Atlanta, GA 30301" +220907,Wired Headphones,1,11.99,06/15/19 10:13,"829 5th St, Los Angeles, CA 90001" +220908,Bose SoundSport Headphones,1,99.99,06/07/19 16:34,"747 Dogwood St, San Francisco, CA 94016" +220909,Lightning Charging Cable,1,14.95,06/28/19 19:53,"596 Maple St, Boston, MA 02215" +220910,Bose SoundSport Headphones,1,99.99,06/30/19 02:16,"22 Cedar St, San Francisco, CA 94016" +220911,Wired Headphones,1,11.99,06/01/19 17:13,"82 Maple St, Los Angeles, CA 90001" +220912,iPhone,1,700,06/19/19 04:18,"998 Church St, Dallas, TX 75001" +220913,Lightning Charging Cable,1,14.95,06/20/19 13:26,"304 14th St, Seattle, WA 98101" +220914,AA Batteries (4-pack),2,3.84,06/02/19 20:39,"381 Highland St, Portland, OR 97035" +220915,Apple Airpods Headphones,1,150,06/29/19 11:12,"59 Wilson St, San Francisco, CA 94016" +220916,Bose SoundSport Headphones,1,99.99,06/09/19 16:25,"181 Elm St, Portland, OR 97035" +220917,Wired Headphones,1,11.99,06/06/19 14:50,"745 9th St, San Francisco, CA 94016" +220918,Apple Airpods Headphones,1,150,06/07/19 20:53,"727 Hickory St, Los Angeles, CA 90001" +220919,Lightning Charging Cable,1,14.95,06/19/19 18:06,"930 Pine St, Portland, OR 97035" +220920,Google Phone,1,600,06/28/19 08:39,"784 5th St, San Francisco, CA 94016" +220921,AAA Batteries (4-pack),5,2.99,06/27/19 15:02,"7 Hickory St, New York City, NY 10001" +220922,AA Batteries (4-pack),1,3.84,06/18/19 02:18,"153 1st St, San Francisco, CA 94016" +220923,AA Batteries (4-pack),1,3.84,06/30/19 22:35,"146 North St, Seattle, WA 98101" +220924,USB-C Charging Cable,1,11.95,06/22/19 23:35,"917 Dogwood St, San Francisco, CA 94016" +220925,Wired Headphones,1,11.99,06/22/19 19:41,"188 Chestnut St, Austin, TX 73301" +220926,Bose SoundSport Headphones,1,99.99,06/16/19 13:33,"415 Sunset St, San Francisco, CA 94016" +220927,Wired Headphones,1,11.99,06/30/19 15:46,"875 Jefferson St, New York City, NY 10001" +220928,34in Ultrawide Monitor,1,379.99,06/26/19 19:53,"621 Lake St, San Francisco, CA 94016" +220929,iPhone,1,700,06/23/19 10:40,"841 Chestnut St, Boston, MA 02215" +220929,AA Batteries (4-pack),1,3.84,06/23/19 10:40,"841 Chestnut St, Boston, MA 02215" +220930,34in Ultrawide Monitor,1,379.99,06/22/19 20:45,"322 Willow St, San Francisco, CA 94016" +220931,AAA Batteries (4-pack),3,2.99,06/05/19 22:45,"720 Forest St, Seattle, WA 98101" +220932,AA Batteries (4-pack),3,3.84,06/15/19 17:49,"159 Forest St, Seattle, WA 98101" +220933,34in Ultrawide Monitor,1,379.99,06/15/19 20:01,"799 Lake St, New York City, NY 10001" +220934,27in 4K Gaming Monitor,1,389.99,06/03/19 21:37,"976 Sunset St, Los Angeles, CA 90001" +220935,USB-C Charging Cable,1,11.95,06/14/19 23:19,"698 2nd St, Dallas, TX 75001" +220936,AAA Batteries (4-pack),1,2.99,06/26/19 15:25,"973 Ridge St, Atlanta, GA 30301" +220937,USB-C Charging Cable,1,11.95,06/25/19 23:41,"880 Lakeview St, San Francisco, CA 94016" +220938,iPhone,1,700,06/08/19 12:57,"653 6th St, New York City, NY 10001" +220938,Lightning Charging Cable,1,14.95,06/08/19 12:57,"653 6th St, New York City, NY 10001" +220939,20in Monitor,1,109.99,06/16/19 00:50,"380 Cherry St, San Francisco, CA 94016" +220940,27in FHD Monitor,1,149.99,06/19/19 15:41,"866 River St, Boston, MA 02215" +220941,34in Ultrawide Monitor,1,379.99,06/14/19 11:16,"630 Chestnut St, Los Angeles, CA 90001" +220942,AAA Batteries (4-pack),1,2.99,06/20/19 12:18,"146 6th St, Los Angeles, CA 90001" +220943,Lightning Charging Cable,1,14.95,06/06/19 13:04,"268 Cherry St, Los Angeles, CA 90001" +220944,AAA Batteries (4-pack),1,2.99,06/11/19 17:35,"625 Hickory St, San Francisco, CA 94016" +220945,AA Batteries (4-pack),1,3.84,06/17/19 23:50,"544 Walnut St, San Francisco, CA 94016" +220946,Lightning Charging Cable,1,14.95,06/24/19 19:35,"123 Chestnut St, San Francisco, CA 94016" +220947,USB-C Charging Cable,1,11.95,06/10/19 18:13,"624 10th St, Seattle, WA 98101" +220948,AA Batteries (4-pack),2,3.84,06/21/19 21:30,"109 Hickory St, Dallas, TX 75001" +220949,AA Batteries (4-pack),1,3.84,06/19/19 18:26,"404 Wilson St, Austin, TX 73301" +220950,34in Ultrawide Monitor,1,379.99,06/12/19 15:31,"680 Ridge St, Seattle, WA 98101" +220951,Bose SoundSport Headphones,1,99.99,06/23/19 10:24,"722 9th St, New York City, NY 10001" +220952,Google Phone,1,600,06/25/19 21:18,"140 10th St, San Francisco, CA 94016" +220953,Macbook Pro Laptop,1,1700,06/19/19 11:26,"841 Walnut St, New York City, NY 10001" +220954,AAA Batteries (4-pack),2,2.99,06/15/19 13:09,"99 Pine St, San Francisco, CA 94016" +220955,AAA Batteries (4-pack),6,2.99,06/17/19 05:06,"224 Lake St, San Francisco, CA 94016" +220956,Bose SoundSport Headphones,1,99.99,06/01/19 22:07,"392 12th St, New York City, NY 10001" +220957,AA Batteries (4-pack),1,3.84,06/03/19 22:58,"806 13th St, Los Angeles, CA 90001" +220958,USB-C Charging Cable,1,11.95,06/06/19 16:45,"535 Church St, Atlanta, GA 30301" +220959,Lightning Charging Cable,1,14.95,06/08/19 12:17,"97 Lake St, Dallas, TX 75001" +220960,Flatscreen TV,1,300,06/08/19 20:33,"61 Church St, Los Angeles, CA 90001" +220961,ThinkPad Laptop,1,999.99,06/06/19 19:49,"341 Chestnut St, Dallas, TX 75001" +220962,27in FHD Monitor,1,149.99,06/27/19 13:18,"678 Forest St, Atlanta, GA 30301" +220963,AAA Batteries (4-pack),1,2.99,06/04/19 11:26,"270 Spruce St, San Francisco, CA 94016" +220964,AA Batteries (4-pack),1,3.84,06/09/19 09:05,"622 Meadow St, Boston, MA 02215" +220965,LG Dryer,1,600.0,06/02/19 20:56,"135 Washington St, Boston, MA 02215" +220966,34in Ultrawide Monitor,1,379.99,06/24/19 14:37,"207 7th St, Austin, TX 73301" +220967,iPhone,1,700,06/06/19 10:09,"743 6th St, San Francisco, CA 94016" +220968,Lightning Charging Cable,1,14.95,06/16/19 22:53,"886 Sunset St, Los Angeles, CA 90001" +220969,27in FHD Monitor,1,149.99,06/08/19 12:45,"418 Forest St, Boston, MA 02215" +220970,27in FHD Monitor,1,149.99,06/18/19 18:44,"689 Madison St, San Francisco, CA 94016" +220971,27in 4K Gaming Monitor,1,389.99,06/05/19 23:36,"974 Forest St, Boston, MA 02215" +220972,USB-C Charging Cable,1,11.95,06/18/19 19:11,"952 Madison St, Seattle, WA 98101" +220973,Macbook Pro Laptop,1,1700,06/13/19 16:05,"775 10th St, Austin, TX 73301" +220974,34in Ultrawide Monitor,1,379.99,06/11/19 23:19,"815 2nd St, Los Angeles, CA 90001" +220975,Wired Headphones,1,11.99,06/13/19 21:16,"386 2nd St, Atlanta, GA 30301" +220976,27in FHD Monitor,1,149.99,06/06/19 08:04,"997 Main St, Austin, TX 73301" +220977,AAA Batteries (4-pack),1,2.99,06/01/19 09:39,"210 Maple St, Seattle, WA 98101" +220978,Flatscreen TV,1,300,06/19/19 09:25,"983 6th St, Seattle, WA 98101" +220979,Apple Airpods Headphones,1,150,06/08/19 22:24,"731 6th St, San Francisco, CA 94016" +220980,Apple Airpods Headphones,1,150,06/19/19 21:34,"205 Hickory St, Austin, TX 73301" +220981,AA Batteries (4-pack),3,3.84,06/25/19 12:35,"152 Highland St, San Francisco, CA 94016" +220982,AAA Batteries (4-pack),1,2.99,06/23/19 13:23,"362 2nd St, Los Angeles, CA 90001" +220983,AA Batteries (4-pack),3,3.84,06/21/19 17:20,"21 River St, New York City, NY 10001" +220984,Lightning Charging Cable,1,14.95,06/19/19 16:42,"731 Wilson St, San Francisco, CA 94016" +220985,Bose SoundSport Headphones,1,99.99,06/13/19 12:47,"188 4th St, Los Angeles, CA 90001" +220986,AA Batteries (4-pack),1,3.84,06/03/19 19:44,"354 Walnut St, San Francisco, CA 94016" +220987,34in Ultrawide Monitor,1,379.99,06/25/19 12:57,"242 11th St, Los Angeles, CA 90001" +220988,Lightning Charging Cable,1,14.95,06/27/19 19:57,"850 Lincoln St, San Francisco, CA 94016" +220989,34in Ultrawide Monitor,1,379.99,06/09/19 21:07,"814 North St, Los Angeles, CA 90001" +220990,USB-C Charging Cable,1,11.95,06/09/19 14:26,"69 Church St, Los Angeles, CA 90001" +220991,USB-C Charging Cable,1,11.95,06/29/19 14:35,"6 River St, Atlanta, GA 30301" +220991,USB-C Charging Cable,1,11.95,06/29/19 14:35,"6 River St, Atlanta, GA 30301" +220992,20in Monitor,1,109.99,06/28/19 19:18,"233 South St, Portland, OR 97035" +220993,Bose SoundSport Headphones,1,99.99,06/02/19 19:29,"973 Hickory St, San Francisco, CA 94016" +220994,AAA Batteries (4-pack),1,2.99,06/20/19 13:17,"386 Hickory St, Seattle, WA 98101" +220995,Bose SoundSport Headphones,1,99.99,06/26/19 22:01,"949 Maple St, Dallas, TX 75001" +220996,20in Monitor,1,109.99,06/10/19 20:03,"23 Chestnut St, Austin, TX 73301" +220997,AA Batteries (4-pack),1,3.84,06/25/19 18:02,"660 Adams St, Boston, MA 02215" +220998,USB-C Charging Cable,1,11.95,06/24/19 07:27,"548 14th St, Los Angeles, CA 90001" +220999,Lightning Charging Cable,1,14.95,06/05/19 17:48,"364 Cherry St, Los Angeles, CA 90001" +221000,iPhone,1,700,06/29/19 23:30,"846 Madison St, Portland, OR 97035" +221001,Lightning Charging Cable,1,14.95,06/15/19 21:23,"297 Main St, Dallas, TX 75001" +221002,Wired Headphones,1,11.99,06/17/19 16:25,"694 Elm St, San Francisco, CA 94016" +221003,USB-C Charging Cable,1,11.95,06/20/19 03:55,"66 Church St, Boston, MA 02215" +221004,Lightning Charging Cable,1,14.95,06/24/19 14:55,"560 Park St, Dallas, TX 75001" +221005,Lightning Charging Cable,1,14.95,06/07/19 16:34,"25 Adams St, New York City, NY 10001" +221006,AAA Batteries (4-pack),1,2.99,06/03/19 18:09,"205 2nd St, New York City, NY 10001" +221007,USB-C Charging Cable,2,11.95,06/07/19 16:18,"788 6th St, Los Angeles, CA 90001" +221008,Lightning Charging Cable,1,14.95,06/19/19 17:37,"865 7th St, Portland, OR 97035" +221009,USB-C Charging Cable,1,11.95,06/12/19 14:03,"492 Main St, New York City, NY 10001" +221010,Bose SoundSport Headphones,1,99.99,06/06/19 17:08,"218 Jackson St, San Francisco, CA 94016" +221011,Apple Airpods Headphones,1,150,06/04/19 22:35,"408 Church St, Los Angeles, CA 90001" +221012,Wired Headphones,1,11.99,06/16/19 17:15,"961 Hill St, Boston, MA 02215" +221013,Google Phone,1,600,06/19/19 21:55,"749 Madison St, New York City, NY 10001" +221013,USB-C Charging Cable,2,11.95,06/19/19 21:55,"749 Madison St, New York City, NY 10001" +221014,AA Batteries (4-pack),1,3.84,06/21/19 11:20,"798 Johnson St, Dallas, TX 75001" +221015,iPhone,1,700,06/24/19 19:09,"531 Jackson St, New York City, NY 10001" +221016,USB-C Charging Cable,1,11.95,06/11/19 00:43,"236 Wilson St, Los Angeles, CA 90001" +221017,USB-C Charging Cable,1,11.95,06/19/19 03:54,"320 11th St, New York City, NY 10001" +221018,Bose SoundSport Headphones,1,99.99,06/03/19 09:52,"471 5th St, Los Angeles, CA 90001" +221019,Wired Headphones,3,11.99,06/26/19 05:05,"124 Church St, Seattle, WA 98101" +221020,AA Batteries (4-pack),2,3.84,06/17/19 22:45,"233 2nd St, Atlanta, GA 30301" +221021,Bose SoundSport Headphones,1,99.99,06/04/19 10:27,"181 Chestnut St, New York City, NY 10001" +221022,AA Batteries (4-pack),1,3.84,06/10/19 09:05,"140 North St, San Francisco, CA 94016" +221023,USB-C Charging Cable,2,11.95,06/25/19 21:14,"544 Dogwood St, San Francisco, CA 94016" +221024,AAA Batteries (4-pack),1,2.99,06/26/19 17:00,"445 Church St, Boston, MA 02215" +221025,27in FHD Monitor,1,149.99,06/11/19 18:38,"733 Madison St, Los Angeles, CA 90001" +221026,27in FHD Monitor,1,149.99,06/08/19 22:09,"970 1st St, Atlanta, GA 30301" +221027,Wired Headphones,1,11.99,06/21/19 13:18,"161 Jefferson St, Los Angeles, CA 90001" +221028,Apple Airpods Headphones,1,150,06/26/19 13:17,"946 Madison St, San Francisco, CA 94016" +221029,27in FHD Monitor,1,149.99,06/08/19 21:42,"349 1st St, San Francisco, CA 94016" +221030,Lightning Charging Cable,2,14.95,06/06/19 15:28,"351 Forest St, Portland, ME 04101" +221031,Bose SoundSport Headphones,1,99.99,06/13/19 18:52,"255 4th St, Seattle, WA 98101" +221032,Wired Headphones,1,11.99,06/21/19 18:00,"299 13th St, Los Angeles, CA 90001" +221033,Wired Headphones,1,11.99,06/02/19 22:42,"953 Johnson St, Los Angeles, CA 90001" +221034,USB-C Charging Cable,1,11.95,06/28/19 16:02,"835 South St, New York City, NY 10001" +221035,AA Batteries (4-pack),1,3.84,06/16/19 13:13,"472 12th St, Los Angeles, CA 90001" +221036,27in FHD Monitor,1,149.99,06/13/19 13:08,"235 Jackson St, Atlanta, GA 30301" +221037,Lightning Charging Cable,1,14.95,06/11/19 13:21,"185 Spruce St, Austin, TX 73301" +221038,Flatscreen TV,1,300,06/09/19 01:12,"704 Lake St, Los Angeles, CA 90001" +221039,Flatscreen TV,1,300,06/20/19 21:39,"509 4th St, Los Angeles, CA 90001" +221040,Flatscreen TV,1,300,06/09/19 11:13,"568 Chestnut St, Atlanta, GA 30301" +221041,AAA Batteries (4-pack),2,2.99,06/06/19 18:02,"659 Ridge St, New York City, NY 10001" +221042,Lightning Charging Cable,1,14.95,06/20/19 00:50,"750 13th St, Los Angeles, CA 90001" +221043,27in 4K Gaming Monitor,1,389.99,06/08/19 17:40,"268 5th St, New York City, NY 10001" +221044,34in Ultrawide Monitor,1,379.99,06/25/19 00:23,"528 6th St, San Francisco, CA 94016" +221045,Wired Headphones,1,11.99,06/19/19 18:22,"996 Sunset St, San Francisco, CA 94016" +221046,AAA Batteries (4-pack),2,2.99,06/27/19 20:31,"18 Hickory St, San Francisco, CA 94016" +221047,Apple Airpods Headphones,1,150,06/04/19 19:09,"819 Madison St, Los Angeles, CA 90001" +221048,Bose SoundSport Headphones,1,99.99,06/08/19 15:00,"110 Pine St, New York City, NY 10001" +221049,AA Batteries (4-pack),1,3.84,06/17/19 11:02,"626 Park St, Portland, OR 97035" +221050,Lightning Charging Cable,2,14.95,06/03/19 01:29,"952 Highland St, Seattle, WA 98101" +221051,Apple Airpods Headphones,1,150,06/10/19 18:03,"407 Cedar St, San Francisco, CA 94016" +221052,Wired Headphones,1,11.99,06/09/19 10:48,"228 4th St, Austin, TX 73301" +221053,Bose SoundSport Headphones,1,99.99,06/12/19 21:15,"873 13th St, San Francisco, CA 94016" +221054,Google Phone,1,600,06/30/19 03:50,"404 Jackson St, San Francisco, CA 94016" +221054,USB-C Charging Cable,1,11.95,06/30/19 03:50,"404 Jackson St, San Francisco, CA 94016" +221055,Google Phone,1,600,06/01/19 16:08,"148 Park St, New York City, NY 10001" +221055,USB-C Charging Cable,1,11.95,06/01/19 16:08,"148 Park St, New York City, NY 10001" +221055,Bose SoundSport Headphones,1,99.99,06/01/19 16:08,"148 Park St, New York City, NY 10001" +221056,Apple Airpods Headphones,1,150,06/20/19 11:39,"272 8th St, New York City, NY 10001" +221057,Lightning Charging Cable,1,14.95,06/14/19 12:40,"17 Highland St, Boston, MA 02215" +221058,AA Batteries (4-pack),1,3.84,06/24/19 20:47,"58 Wilson St, Seattle, WA 98101" +221059,AA Batteries (4-pack),1,3.84,06/16/19 15:39,"815 Lincoln St, Portland, OR 97035" +221060,Wired Headphones,1,11.99,06/09/19 20:42,"806 Church St, Portland, OR 97035" +221061,Bose SoundSport Headphones,1,99.99,06/22/19 09:35,"845 Johnson St, Los Angeles, CA 90001" +221062,USB-C Charging Cable,1,11.95,06/17/19 20:04,"578 14th St, Boston, MA 02215" +221063,AAA Batteries (4-pack),2,2.99,06/30/19 22:02,"549 1st St, Portland, OR 97035" +221064,Flatscreen TV,1,300,06/07/19 09:03,"499 Maple St, San Francisco, CA 94016" +221065,USB-C Charging Cable,1,11.95,06/30/19 02:40,"879 Church St, New York City, NY 10001" +221066,34in Ultrawide Monitor,1,379.99,06/22/19 16:57,"689 Walnut St, New York City, NY 10001" +221067,Bose SoundSport Headphones,1,99.99,06/24/19 08:50,"172 14th St, Dallas, TX 75001" +221068,Lightning Charging Cable,1,14.95,06/16/19 22:02,"381 West St, Los Angeles, CA 90001" +221069,34in Ultrawide Monitor,1,379.99,06/26/19 17:13,"355 12th St, Austin, TX 73301" +221070,Macbook Pro Laptop,1,1700,06/17/19 10:40,"803 West St, Atlanta, GA 30301" +221071,USB-C Charging Cable,1,11.95,06/26/19 09:43,"293 River St, San Francisco, CA 94016" +221072,AAA Batteries (4-pack),2,2.99,06/23/19 23:36,"457 Church St, San Francisco, CA 94016" +221073,AAA Batteries (4-pack),1,2.99,06/14/19 18:18,"176 Adams St, San Francisco, CA 94016" +221074,20in Monitor,1,109.99,06/02/19 20:51,"690 Adams St, Seattle, WA 98101" +221075,AA Batteries (4-pack),1,3.84,06/24/19 20:44,"438 Cherry St, Dallas, TX 75001" +221076,Lightning Charging Cable,1,14.95,06/23/19 10:33,"507 7th St, Boston, MA 02215" +221077,27in 4K Gaming Monitor,1,389.99,06/07/19 10:37,"805 North St, San Francisco, CA 94016" +221077,Wired Headphones,2,11.99,06/07/19 10:37,"805 North St, San Francisco, CA 94016" +221078,AA Batteries (4-pack),1,3.84,06/14/19 13:25,"354 10th St, Atlanta, GA 30301" +221079,Wired Headphones,1,11.99,06/21/19 10:18,"174 11th St, New York City, NY 10001" +221080,27in FHD Monitor,1,149.99,06/13/19 10:08,"103 2nd St, San Francisco, CA 94016" +221081,27in FHD Monitor,1,149.99,06/17/19 07:36,"84 North St, San Francisco, CA 94016" +221082,Lightning Charging Cable,1,14.95,06/15/19 21:05,"800 Cherry St, Atlanta, GA 30301" +221083,AA Batteries (4-pack),1,3.84,06/26/19 10:39,"373 Willow St, San Francisco, CA 94016" +221084,ThinkPad Laptop,1,999.99,06/06/19 12:30,"214 13th St, San Francisco, CA 94016" +221085,USB-C Charging Cable,1,11.95,06/06/19 18:45,"423 Lincoln St, New York City, NY 10001" +221086,Google Phone,1,600,06/21/19 23:20,"858 1st St, San Francisco, CA 94016" +221087,Lightning Charging Cable,1,14.95,06/25/19 16:17,"15 Madison St, New York City, NY 10001" +221088,Apple Airpods Headphones,1,150,06/17/19 00:53,"939 Jefferson St, Atlanta, GA 30301" +221089,Wired Headphones,1,11.99,06/14/19 10:18,"931 Hickory St, New York City, NY 10001" +221090,AA Batteries (4-pack),1,3.84,06/04/19 17:07,"696 Center St, Atlanta, GA 30301" +221091,Wired Headphones,1,11.99,06/13/19 10:49,"21 Walnut St, Austin, TX 73301" +221092,Apple Airpods Headphones,1,150,06/07/19 11:46,"451 Cherry St, Atlanta, GA 30301" +221093,AAA Batteries (4-pack),2,2.99,06/13/19 10:10,"640 Main St, San Francisco, CA 94016" +221094,Wired Headphones,1,11.99,06/19/19 18:27,"729 7th St, Boston, MA 02215" +221095,USB-C Charging Cable,1,11.95,06/05/19 14:39,"496 Wilson St, Portland, OR 97035" +221096,USB-C Charging Cable,1,11.95,06/03/19 15:09,"84 Ridge St, Atlanta, GA 30301" +221097,USB-C Charging Cable,1,11.95,06/04/19 11:43,"300 Forest St, Boston, MA 02215" +221098,AAA Batteries (4-pack),1,2.99,06/20/19 18:42,"253 Church St, Seattle, WA 98101" +221099,iPhone,1,700,06/26/19 09:50,"119 11th St, Austin, TX 73301" +221100,Flatscreen TV,1,300,06/06/19 21:53,"23 Maple St, Seattle, WA 98101" +221101,Wired Headphones,1,11.99,06/19/19 19:31,"908 Meadow St, Seattle, WA 98101" +221102,AAA Batteries (4-pack),1,2.99,06/18/19 15:32,"944 7th St, San Francisco, CA 94016" +221103,AA Batteries (4-pack),2,3.84,06/30/19 09:20,"827 Sunset St, Austin, TX 73301" +221104,Wired Headphones,2,11.99,06/04/19 23:45,"449 Hill St, Portland, OR 97035" +221105,AAA Batteries (4-pack),1,2.99,06/15/19 10:31,"122 Dogwood St, Dallas, TX 75001" +221106,Bose SoundSport Headphones,1,99.99,06/03/19 20:17,"635 11th St, Los Angeles, CA 90001" +221107,34in Ultrawide Monitor,1,379.99,06/24/19 11:51,"167 Church St, Portland, OR 97035" +221108,Bose SoundSport Headphones,1,99.99,06/12/19 12:59,"354 North St, Austin, TX 73301" +221109,AA Batteries (4-pack),1,3.84,06/10/19 22:17,"588 Dogwood St, Los Angeles, CA 90001" +221110,Google Phone,1,600,06/18/19 08:38,"669 12th St, Austin, TX 73301" +221110,USB-C Charging Cable,1,11.95,06/18/19 08:38,"669 12th St, Austin, TX 73301" +221110,Wired Headphones,2,11.99,06/18/19 08:38,"669 12th St, Austin, TX 73301" +221111,Lightning Charging Cable,1,14.95,06/16/19 08:55,"180 13th St, Los Angeles, CA 90001" +221112,Google Phone,1,600,06/09/19 13:35,"664 14th St, Boston, MA 02215" +221113,Apple Airpods Headphones,1,150,06/04/19 22:23,"291 9th St, San Francisco, CA 94016" +221114,Bose SoundSport Headphones,1,99.99,06/19/19 15:55,"598 11th St, Los Angeles, CA 90001" +221115,Lightning Charging Cable,1,14.95,06/14/19 12:56,"621 Johnson St, Atlanta, GA 30301" +221116,27in 4K Gaming Monitor,1,389.99,06/07/19 11:38,"723 Cherry St, Los Angeles, CA 90001" +221117,27in FHD Monitor,1,149.99,06/12/19 20:54,"814 Jefferson St, San Francisco, CA 94016" +221118,27in 4K Gaming Monitor,1,389.99,06/26/19 12:57,"972 Wilson St, San Francisco, CA 94016" +221119,Lightning Charging Cable,1,14.95,06/29/19 11:36,"341 Pine St, Portland, OR 97035" +221120,Wired Headphones,1,11.99,06/23/19 20:27,"125 2nd St, New York City, NY 10001" +221121,iPhone,1,700,06/14/19 09:55,"543 Chestnut St, Los Angeles, CA 90001" +221122,AA Batteries (4-pack),2,3.84,06/11/19 13:09,"241 Adams St, Los Angeles, CA 90001" +221123,Bose SoundSport Headphones,1,99.99,06/15/19 12:14,"1 1st St, San Francisco, CA 94016" +221124,USB-C Charging Cable,1,11.95,06/27/19 10:46,"794 1st St, Atlanta, GA 30301" +221125,Wired Headphones,1,11.99,06/23/19 12:50,"75 Hickory St, New York City, NY 10001" +221126,USB-C Charging Cable,1,11.95,06/11/19 15:01,"540 Hickory St, Los Angeles, CA 90001" +221127,Google Phone,1,600,06/17/19 19:59,"849 Dogwood St, Los Angeles, CA 90001" +221128,Flatscreen TV,1,300,06/25/19 14:08,"383 Park St, Portland, OR 97035" +221129,AA Batteries (4-pack),1,3.84,06/19/19 22:53,"959 Spruce St, Austin, TX 73301" +221130,Google Phone,1,600,06/13/19 20:11,"633 Hill St, Dallas, TX 75001" +221130,USB-C Charging Cable,1,11.95,06/13/19 20:11,"633 Hill St, Dallas, TX 75001" +221131,Apple Airpods Headphones,1,150,06/04/19 12:16,"746 6th St, Seattle, WA 98101" +221132,Lightning Charging Cable,1,14.95,06/21/19 10:13,"722 North St, Boston, MA 02215" +221133,AA Batteries (4-pack),3,3.84,06/12/19 18:20,"308 Sunset St, Dallas, TX 75001" +221134,27in FHD Monitor,2,149.99,06/18/19 08:47,"721 Sunset St, San Francisco, CA 94016" +221135,27in 4K Gaming Monitor,1,389.99,06/12/19 07:53,"78 Johnson St, San Francisco, CA 94016" +221136,Bose SoundSport Headphones,1,99.99,06/21/19 18:34,"24 River St, San Francisco, CA 94016" +221137,Lightning Charging Cable,1,14.95,06/15/19 18:18,"107 13th St, New York City, NY 10001" +221138,27in 4K Gaming Monitor,1,389.99,06/26/19 17:18,"161 7th St, Los Angeles, CA 90001" +221139,Lightning Charging Cable,1,14.95,06/17/19 21:35,"250 Hickory St, Seattle, WA 98101" +221140,Lightning Charging Cable,1,14.95,06/17/19 18:37,"250 13th St, San Francisco, CA 94016" +221141,AA Batteries (4-pack),1,3.84,06/07/19 07:21,"562 Jefferson St, Los Angeles, CA 90001" +221142,iPhone,1,700,06/17/19 17:39,"253 Madison St, Atlanta, GA 30301" +221143,Apple Airpods Headphones,1,150,06/16/19 14:30,"785 Lake St, Boston, MA 02215" +221144,iPhone,1,700,06/10/19 22:41,"643 Spruce St, San Francisco, CA 94016" +221145,Apple Airpods Headphones,1,150,06/17/19 12:42,"668 South St, Boston, MA 02215" +221146,USB-C Charging Cable,1,11.95,06/25/19 18:07,"111 West St, Austin, TX 73301" +221147,Lightning Charging Cable,1,14.95,06/13/19 00:57,"861 Center St, Boston, MA 02215" +221148,AA Batteries (4-pack),1,3.84,06/03/19 13:28,"49 12th St, Dallas, TX 75001" +221149,Apple Airpods Headphones,1,150,06/29/19 18:16,"146 7th St, Los Angeles, CA 90001" +221150,AA Batteries (4-pack),1,3.84,06/04/19 12:55,"460 Highland St, Los Angeles, CA 90001" +221151,Flatscreen TV,1,300,06/04/19 15:45,"953 Church St, Boston, MA 02215" +221152,AA Batteries (4-pack),1,3.84,06/27/19 20:42,"710 Dogwood St, San Francisco, CA 94016" +221153,Wired Headphones,1,11.99,06/24/19 07:40,"488 Pine St, Boston, MA 02215" +221154,Macbook Pro Laptop,1,1700,06/12/19 08:24,"384 Main St, San Francisco, CA 94016" +221155,Google Phone,1,600,06/19/19 19:40,"903 Center St, Austin, TX 73301" +221156,Lightning Charging Cable,1,14.95,06/04/19 22:05,"772 Lincoln St, San Francisco, CA 94016" +221157,AAA Batteries (4-pack),1,2.99,06/10/19 20:12,"776 Ridge St, Los Angeles, CA 90001" +221158,Bose SoundSport Headphones,1,99.99,06/14/19 17:01,"708 8th St, Boston, MA 02215" +221159,27in FHD Monitor,1,149.99,06/28/19 22:14,"822 9th St, Seattle, WA 98101" +221160,Apple Airpods Headphones,1,150,06/18/19 10:44,"2 River St, Portland, ME 04101" +221161,Bose SoundSport Headphones,1,99.99,06/09/19 13:10,"312 West St, New York City, NY 10001" +221162,Lightning Charging Cable,1,14.95,06/24/19 08:50,"555 Forest St, Dallas, TX 75001" +221163,34in Ultrawide Monitor,1,379.99,06/26/19 16:15,"400 Hickory St, New York City, NY 10001" +221164,AAA Batteries (4-pack),1,2.99,06/15/19 17:12,"518 Church St, New York City, NY 10001" +221165,USB-C Charging Cable,1,11.95,06/10/19 10:55,"220 Church St, Atlanta, GA 30301" +221166,Lightning Charging Cable,2,14.95,06/10/19 21:22,"298 5th St, Austin, TX 73301" +221167,27in FHD Monitor,1,149.99,06/18/19 09:26,"141 Jefferson St, Atlanta, GA 30301" +221168,27in FHD Monitor,1,149.99,06/30/19 13:21,"41 Cedar St, San Francisco, CA 94016" +221169,AAA Batteries (4-pack),1,2.99,06/01/19 21:47,"395 River St, San Francisco, CA 94016" +221170,Flatscreen TV,1,300,06/20/19 17:48,"695 2nd St, Austin, TX 73301" +221171,Flatscreen TV,1,300,06/06/19 14:15,"905 Highland St, Boston, MA 02215" +221172,27in 4K Gaming Monitor,1,389.99,06/13/19 15:00,"949 Jackson St, New York City, NY 10001" +221173,Google Phone,1,600,06/23/19 17:47,"119 4th St, New York City, NY 10001" +221174,34in Ultrawide Monitor,1,379.99,06/19/19 22:12,"265 Spruce St, San Francisco, CA 94016" +221175,USB-C Charging Cable,1,11.95,06/01/19 18:56,"92 Center St, San Francisco, CA 94016" +221176,Wired Headphones,1,11.99,06/10/19 17:02,"362 Washington St, San Francisco, CA 94016" +221177,AA Batteries (4-pack),2,3.84,06/17/19 13:00,"416 Jackson St, Seattle, WA 98101" +221178,USB-C Charging Cable,1,11.95,06/14/19 20:50,"60 North St, Atlanta, GA 30301" +221179,iPhone,1,700,06/15/19 12:13,"634 Dogwood St, Los Angeles, CA 90001" +221180,Wired Headphones,1,11.99,06/16/19 06:28,"284 North St, San Francisco, CA 94016" +221181,Wired Headphones,1,11.99,06/11/19 16:22,"575 Hill St, San Francisco, CA 94016" +221182,AAA Batteries (4-pack),1,2.99,06/22/19 14:40,"912 6th St, San Francisco, CA 94016" +221183,iPhone,1,700,06/08/19 09:25,"712 7th St, Boston, MA 02215" +221184,Lightning Charging Cable,1,14.95,06/12/19 10:08,"404 1st St, Boston, MA 02215" +221185,34in Ultrawide Monitor,1,379.99,06/01/19 15:39,"694 Maple St, Dallas, TX 75001" +221186,AAA Batteries (4-pack),2,2.99,06/09/19 08:11,"695 West St, Los Angeles, CA 90001" +221187,AAA Batteries (4-pack),6,2.99,06/04/19 16:41,"630 Elm St, Boston, MA 02215" +221188,Vareebadd Phone,1,400,06/13/19 14:11,"388 13th St, New York City, NY 10001" +221188,Wired Headphones,1,11.99,06/13/19 14:11,"388 13th St, New York City, NY 10001" +221189,Lightning Charging Cable,1,14.95,06/19/19 13:12,"470 1st St, San Francisco, CA 94016" +221190,Apple Airpods Headphones,1,150,06/25/19 09:15,"565 Church St, Seattle, WA 98101" +221191,Apple Airpods Headphones,1,150,06/13/19 00:52,"286 4th St, Los Angeles, CA 90001" +221192,34in Ultrawide Monitor,1,379.99,06/27/19 18:44,"109 Lakeview St, Seattle, WA 98101" +221193,iPhone,1,700,06/17/19 15:37,"937 Lakeview St, Dallas, TX 75001" +221194,iPhone,1,700,06/17/19 08:09,"434 Hickory St, Seattle, WA 98101" +221195,27in 4K Gaming Monitor,1,389.99,06/28/19 12:00,"430 Pine St, Dallas, TX 75001" +221196,Wired Headphones,1,11.99,06/12/19 12:03,"643 Meadow St, Boston, MA 02215" +221197,27in FHD Monitor,1,149.99,06/25/19 10:06,"472 10th St, New York City, NY 10001" +221198,Lightning Charging Cable,1,14.95,07/01/19 02:23,"547 4th St, San Francisco, CA 94016" +221199,AAA Batteries (4-pack),1,2.99,06/06/19 21:29,"934 Highland St, Dallas, TX 75001" +221200,USB-C Charging Cable,1,11.95,06/15/19 14:16,"15 7th St, Seattle, WA 98101" +221201,Google Phone,1,600,06/26/19 02:44,"326 Chestnut St, San Francisco, CA 94016" +221201,USB-C Charging Cable,1,11.95,06/26/19 02:44,"326 Chestnut St, San Francisco, CA 94016" +221201,Wired Headphones,1,11.99,06/26/19 02:44,"326 Chestnut St, San Francisco, CA 94016" +221202,Lightning Charging Cable,1,14.95,06/18/19 12:51,"34 Elm St, San Francisco, CA 94016" +221203,Wired Headphones,1,11.99,06/27/19 11:24,"294 Church St, Dallas, TX 75001" +221204,27in FHD Monitor,1,149.99,06/25/19 15:24,"823 Ridge St, Los Angeles, CA 90001" +221205,Lightning Charging Cable,1,14.95,06/05/19 18:50,"225 Hill St, Atlanta, GA 30301" +221206,Wired Headphones,1,11.99,06/18/19 16:53,"328 14th St, San Francisco, CA 94016" +221207,27in FHD Monitor,1,149.99,06/25/19 17:26,"953 Hickory St, San Francisco, CA 94016" +221208,Apple Airpods Headphones,1,150,06/03/19 09:34,"747 Washington St, Austin, TX 73301" +221209,Bose SoundSport Headphones,1,99.99,06/10/19 14:34,"683 1st St, New York City, NY 10001" +221210,27in FHD Monitor,1,149.99,06/06/19 09:42,"229 Pine St, New York City, NY 10001" +221211,Macbook Pro Laptop,1,1700,06/26/19 15:26,"516 10th St, Boston, MA 02215" +221212,Apple Airpods Headphones,1,150,06/06/19 21:53,"138 Spruce St, San Francisco, CA 94016" +221213,Macbook Pro Laptop,1,1700,06/01/19 08:13,"38 Cedar St, Boston, MA 02215" +221214,Bose SoundSport Headphones,1,99.99,06/11/19 01:49,"627 Pine St, Los Angeles, CA 90001" +221215,AAA Batteries (4-pack),1,2.99,06/27/19 11:28,"214 Lincoln St, Dallas, TX 75001" +221216,AAA Batteries (4-pack),1,2.99,06/19/19 12:51,"998 South St, Austin, TX 73301" +221217,Macbook Pro Laptop,1,1700,06/03/19 18:58,"227 Sunset St, Boston, MA 02215" +221218,LG Dryer,1,600.0,06/20/19 12:11,"287 Maple St, Seattle, WA 98101" +221219,AA Batteries (4-pack),1,3.84,06/18/19 22:01,"702 Highland St, Boston, MA 02215" +221220,Wired Headphones,1,11.99,06/26/19 07:45,"446 Lincoln St, Austin, TX 73301" +221221,USB-C Charging Cable,1,11.95,06/13/19 18:10,"203 South St, Portland, OR 97035" +221222,Lightning Charging Cable,1,14.95,06/10/19 13:11,"825 Chestnut St, Los Angeles, CA 90001" +221223,Apple Airpods Headphones,1,150,06/18/19 08:35,"596 2nd St, Los Angeles, CA 90001" +221224,iPhone,1,700,06/11/19 23:52,"586 Highland St, Atlanta, GA 30301" +221225,Bose SoundSport Headphones,1,99.99,06/27/19 00:36,"46 5th St, San Francisco, CA 94016" +221226,USB-C Charging Cable,1,11.95,06/14/19 15:15,"941 Jackson St, Seattle, WA 98101" +221227,ThinkPad Laptop,1,999.99,06/16/19 09:06,"500 Lake St, New York City, NY 10001" +221228,34in Ultrawide Monitor,1,379.99,06/08/19 19:12,"624 Spruce St, Los Angeles, CA 90001" +221229,Lightning Charging Cable,1,14.95,06/01/19 23:51,"455 Washington St, Austin, TX 73301" +221230,Lightning Charging Cable,1,14.95,06/27/19 10:46,"198 Hickory St, San Francisco, CA 94016" +221231,USB-C Charging Cable,1,11.95,06/19/19 01:07,"275 Walnut St, San Francisco, CA 94016" +221232,Wired Headphones,1,11.99,06/24/19 14:02,"740 Hickory St, Atlanta, GA 30301" +221233,Bose SoundSport Headphones,1,99.99,06/24/19 14:30,"203 Lake St, San Francisco, CA 94016" +221234,27in 4K Gaming Monitor,1,389.99,06/26/19 09:01,"762 North St, Atlanta, GA 30301" +221235,Lightning Charging Cable,1,14.95,06/29/19 20:55,"567 5th St, Los Angeles, CA 90001" +221236,Lightning Charging Cable,1,14.95,06/19/19 09:29,"625 12th St, Seattle, WA 98101" +221237,USB-C Charging Cable,1,11.95,06/22/19 14:49,"849 2nd St, Dallas, TX 75001" +221238,AA Batteries (4-pack),1,3.84,06/13/19 12:27,"444 14th St, Atlanta, GA 30301" +221239,AA Batteries (4-pack),3,3.84,06/01/19 06:50,"337 Main St, Boston, MA 02215" +221240,Lightning Charging Cable,1,14.95,06/20/19 08:28,"231 Walnut St, San Francisco, CA 94016" +221241,AAA Batteries (4-pack),1,2.99,06/10/19 17:03,"931 11th St, Boston, MA 02215" +221242,Bose SoundSport Headphones,1,99.99,06/05/19 06:36,"958 7th St, Seattle, WA 98101" +221243,Wired Headphones,1,11.99,06/10/19 16:42,"693 Sunset St, San Francisco, CA 94016" +221244,iPhone,1,700,06/01/19 16:52,"228 Walnut St, Dallas, TX 75001" +221245,20in Monitor,1,109.99,06/22/19 12:22,"855 Pine St, Seattle, WA 98101" +221246,Lightning Charging Cable,1,14.95,06/08/19 18:21,"189 Forest St, Boston, MA 02215" +221247,USB-C Charging Cable,2,11.95,06/15/19 19:48,"253 Cherry St, Seattle, WA 98101" +221248,Wired Headphones,1,11.99,06/03/19 18:52,"170 Sunset St, New York City, NY 10001" +221249,Lightning Charging Cable,1,14.95,06/29/19 09:23,"446 River St, New York City, NY 10001" +221250,AA Batteries (4-pack),1,3.84,06/12/19 19:04,"446 Lake St, San Francisco, CA 94016" +221251,AAA Batteries (4-pack),1,2.99,06/08/19 06:29,"684 5th St, Portland, OR 97035" +221251,AAA Batteries (4-pack),2,2.99,06/08/19 06:29,"684 5th St, Portland, OR 97035" +221252,Apple Airpods Headphones,1,150,06/22/19 09:46,"210 West St, Los Angeles, CA 90001" +221253,Wired Headphones,1,11.99,06/13/19 06:41,"274 Johnson St, New York City, NY 10001" +221254,Lightning Charging Cable,1,14.95,06/15/19 00:01,"631 Main St, Austin, TX 73301" +221255,Apple Airpods Headphones,1,150,06/02/19 21:32,"635 1st St, Portland, OR 97035" +221256,Apple Airpods Headphones,1,150,06/17/19 22:24,"522 Pine St, Austin, TX 73301" +221257,Lightning Charging Cable,1,14.95,06/03/19 15:31,"387 Park St, Atlanta, GA 30301" +221258,Macbook Pro Laptop,1,1700,06/19/19 08:45,"43 River St, Boston, MA 02215" +221259,Wired Headphones,1,11.99,06/13/19 22:34,"946 Sunset St, San Francisco, CA 94016" +221260,Bose SoundSport Headphones,1,99.99,06/23/19 22:17,"962 9th St, Portland, OR 97035" +221261,Lightning Charging Cable,3,14.95,06/20/19 21:46,"86 North St, Los Angeles, CA 90001" +221262,Lightning Charging Cable,1,14.95,06/12/19 21:31,"955 Jefferson St, Atlanta, GA 30301" +221263,Apple Airpods Headphones,1,150,06/01/19 07:57,"401 Dogwood St, Atlanta, GA 30301" +221263,Lightning Charging Cable,1,14.95,06/01/19 07:57,"401 Dogwood St, Atlanta, GA 30301" +221264,Flatscreen TV,1,300,06/22/19 10:04,"843 Cedar St, New York City, NY 10001" +221265,USB-C Charging Cable,1,11.95,06/13/19 12:09,"911 12th St, Dallas, TX 75001" +221266,AA Batteries (4-pack),1,3.84,06/20/19 12:20,"554 Wilson St, Boston, MA 02215" +221267,Bose SoundSport Headphones,1,99.99,06/13/19 11:23,"512 Meadow St, San Francisco, CA 94016" +221268,USB-C Charging Cable,1,11.95,06/15/19 17:36,"329 7th St, Los Angeles, CA 90001" +221269,27in 4K Gaming Monitor,1,389.99,06/21/19 10:19,"105 Meadow St, San Francisco, CA 94016" +221270,Flatscreen TV,1,300,06/13/19 07:54,"220 2nd St, Austin, TX 73301" +221271,Wired Headphones,1,11.99,06/10/19 10:04,"411 Center St, Seattle, WA 98101" +221272,Google Phone,1,600,06/10/19 22:19,"150 Ridge St, Boston, MA 02215" +221272,USB-C Charging Cable,1,11.95,06/10/19 22:19,"150 Ridge St, Boston, MA 02215" +,,,,, +221273,AA Batteries (4-pack),1,3.84,06/10/19 10:00,"282 Meadow St, New York City, NY 10001" +221274,iPhone,1,700,06/03/19 07:03,"984 River St, New York City, NY 10001" +221275,Google Phone,1,600,06/18/19 18:51,"266 Elm St, New York City, NY 10001" +221276,Apple Airpods Headphones,1,150,06/22/19 14:00,"670 Walnut St, Los Angeles, CA 90001" +221277,iPhone,1,700,06/25/19 13:46,"443 Spruce St, San Francisco, CA 94016" +221278,Apple Airpods Headphones,1,150,06/12/19 14:38,"999 1st St, Seattle, WA 98101" +221279,Wired Headphones,1,11.99,06/06/19 12:02,"654 Jackson St, Austin, TX 73301" +221280,AAA Batteries (4-pack),1,2.99,06/20/19 13:08,"865 Sunset St, Boston, MA 02215" +221281,Wired Headphones,1,11.99,06/25/19 21:13,"360 Washington St, Austin, TX 73301" +221282,Lightning Charging Cable,1,14.95,06/27/19 20:32,"279 Cedar St, Dallas, TX 75001" +221283,Wired Headphones,1,11.99,06/04/19 16:57,"458 Main St, Portland, ME 04101" +221284,Wired Headphones,1,11.99,06/04/19 19:31,"659 11th St, New York City, NY 10001" +221285,Lightning Charging Cable,1,14.95,06/14/19 17:46,"551 7th St, Seattle, WA 98101" +221286,AA Batteries (4-pack),1,3.84,06/21/19 20:55,"238 Main St, Portland, OR 97035" +221287,Bose SoundSport Headphones,1,99.99,06/10/19 07:53,"672 Ridge St, San Francisco, CA 94016" +221288,20in Monitor,1,109.99,06/03/19 07:08,"635 Lakeview St, Dallas, TX 75001" +221289,AA Batteries (4-pack),1,3.84,06/29/19 16:19,"96 12th St, Los Angeles, CA 90001" +221290,Lightning Charging Cable,1,14.95,06/29/19 22:47,"178 Hill St, Seattle, WA 98101" +221290,AA Batteries (4-pack),1,3.84,06/29/19 22:47,"178 Hill St, Seattle, WA 98101" +221291,Apple Airpods Headphones,1,150,06/17/19 12:16,"908 14th St, New York City, NY 10001" +221292,USB-C Charging Cable,1,11.95,06/29/19 05:43,"519 4th St, San Francisco, CA 94016" +221293,20in Monitor,1,109.99,06/17/19 15:22,"657 8th St, Atlanta, GA 30301" +221294,Wired Headphones,2,11.99,06/28/19 10:50,"651 5th St, San Francisco, CA 94016" +221295,AA Batteries (4-pack),1,3.84,06/28/19 08:55,"974 River St, New York City, NY 10001" +221296,Wired Headphones,1,11.99,06/20/19 03:28,"520 Ridge St, Boston, MA 02215" +221297,Google Phone,1,600,06/02/19 09:18,"249 7th St, Los Angeles, CA 90001" +221298,34in Ultrawide Monitor,1,379.99,06/12/19 13:26,"10 Pine St, Seattle, WA 98101" +221298,USB-C Charging Cable,1,11.95,06/12/19 13:26,"10 Pine St, Seattle, WA 98101" +221299,Apple Airpods Headphones,1,150,06/26/19 18:19,"639 6th St, New York City, NY 10001" +221300,AAA Batteries (4-pack),1,2.99,06/15/19 19:18,"346 Jackson St, Dallas, TX 75001" +221301,Bose SoundSport Headphones,1,99.99,06/30/19 17:51,"224 1st St, Portland, OR 97035" +221302,27in FHD Monitor,1,149.99,06/14/19 18:53,"26 River St, Los Angeles, CA 90001" +221303,27in 4K Gaming Monitor,1,389.99,06/16/19 21:36,"616 Walnut St, Los Angeles, CA 90001" +221304,27in 4K Gaming Monitor,1,389.99,06/29/19 13:00,"336 Chestnut St, New York City, NY 10001" +221305,Wired Headphones,1,11.99,06/29/19 18:24,"181 Jefferson St, Seattle, WA 98101" +221306,AA Batteries (4-pack),1,3.84,06/01/19 07:30,"901 Jackson St, Los Angeles, CA 90001" +221307,Macbook Pro Laptop,1,1700,06/15/19 13:50,"313 2nd St, Los Angeles, CA 90001" +221308,Lightning Charging Cable,1,14.95,06/30/19 14:19,"79 Ridge St, Portland, OR 97035" +221309,AA Batteries (4-pack),1,3.84,06/01/19 18:40,"45 Cedar St, San Francisco, CA 94016" +221310,Wired Headphones,1,11.99,06/06/19 08:36,"870 12th St, Atlanta, GA 30301" +221311,Bose SoundSport Headphones,1,99.99,06/25/19 19:41,"219 Church St, Dallas, TX 75001" +221312,Lightning Charging Cable,1,14.95,06/10/19 05:41,"994 Madison St, Seattle, WA 98101" +221313,AAA Batteries (4-pack),2,2.99,06/10/19 17:07,"67 Meadow St, New York City, NY 10001" +221314,Apple Airpods Headphones,1,150,06/18/19 16:12,"320 Willow St, Los Angeles, CA 90001" +221315,Lightning Charging Cable,1,14.95,06/09/19 06:21,"78 Pine St, Los Angeles, CA 90001" +221316,27in 4K Gaming Monitor,1,389.99,06/23/19 00:29,"43 Jackson St, Dallas, TX 75001" +221317,Lightning Charging Cable,1,14.95,06/22/19 18:45,"695 Chestnut St, Boston, MA 02215" +221318,Bose SoundSport Headphones,1,99.99,06/04/19 12:31,"604 13th St, New York City, NY 10001" +221319,AA Batteries (4-pack),1,3.84,06/18/19 16:17,"643 Sunset St, Austin, TX 73301" +221320,27in 4K Gaming Monitor,1,389.99,06/23/19 14:45,"651 Jackson St, New York City, NY 10001" +221321,20in Monitor,1,109.99,06/01/19 10:02,"294 Lake St, New York City, NY 10001" +221322,Wired Headphones,1,11.99,06/05/19 11:13,"472 Maple St, New York City, NY 10001" +221323,Bose SoundSport Headphones,1,99.99,06/07/19 07:32,"703 7th St, New York City, NY 10001" +221324,34in Ultrawide Monitor,1,379.99,06/18/19 13:50,"587 Dogwood St, New York City, NY 10001" +221325,Lightning Charging Cable,1,14.95,06/10/19 16:34,"532 Sunset St, New York City, NY 10001" +221326,AAA Batteries (4-pack),3,2.99,06/29/19 11:35,"382 Main St, New York City, NY 10001" +221327,USB-C Charging Cable,1,11.95,06/28/19 19:26,"643 Spruce St, San Francisco, CA 94016" +221328,Wired Headphones,1,11.99,06/09/19 16:17,"617 Maple St, Atlanta, GA 30301" +221329,Bose SoundSport Headphones,1,99.99,06/14/19 10:32,"757 Ridge St, Boston, MA 02215" +221330,Apple Airpods Headphones,1,150,06/11/19 10:12,"492 Madison St, New York City, NY 10001" +221331,Lightning Charging Cable,1,14.95,06/01/19 11:07,"883 Washington St, New York City, NY 10001" +221332,USB-C Charging Cable,1,11.95,06/19/19 20:23,"808 11th St, Atlanta, GA 30301" +221333,Apple Airpods Headphones,1,150,06/10/19 08:14,"2 Elm St, Portland, OR 97035" +221334,Lightning Charging Cable,1,14.95,06/24/19 15:53,"374 Main St, Seattle, WA 98101" +221335,iPhone,1,700,06/13/19 18:53,"523 1st St, Los Angeles, CA 90001" +221336,27in 4K Gaming Monitor,1,389.99,06/29/19 19:08,"105 Madison St, New York City, NY 10001" +221337,27in 4K Gaming Monitor,1,389.99,06/07/19 19:23,"789 Forest St, San Francisco, CA 94016" +221338,Wired Headphones,1,11.99,06/01/19 10:50,"152 Park St, New York City, NY 10001" +221339,AAA Batteries (4-pack),1,2.99,06/15/19 11:23,"639 Pine St, Los Angeles, CA 90001" +221340,27in FHD Monitor,1,149.99,06/03/19 18:41,"182 Park St, San Francisco, CA 94016" +221341,Google Phone,1,600,06/25/19 18:54,"588 Hill St, Boston, MA 02215" +221342,USB-C Charging Cable,1,11.95,06/12/19 09:24,"903 2nd St, Dallas, TX 75001" +221343,Wired Headphones,1,11.99,06/09/19 08:52,"661 Hickory St, San Francisco, CA 94016" +221344,Lightning Charging Cable,1,14.95,06/30/19 19:24,"483 Ridge St, San Francisco, CA 94016" +221345,AAA Batteries (4-pack),1,2.99,06/29/19 17:39,"586 Cherry St, Boston, MA 02215" +221346,Google Phone,1,600,06/05/19 19:18,"907 Center St, Portland, OR 97035" +221347,USB-C Charging Cable,1,11.95,06/08/19 17:19,"154 1st St, Atlanta, GA 30301" +221348,USB-C Charging Cable,2,11.95,06/24/19 18:52,"827 Pine St, Boston, MA 02215" +221349,Lightning Charging Cable,2,14.95,06/05/19 20:01,"254 Johnson St, Los Angeles, CA 90001" +221350,Apple Airpods Headphones,1,150,06/27/19 11:23,"264 Elm St, San Francisco, CA 94016" +221351,iPhone,1,700,06/23/19 23:22,"768 West St, Atlanta, GA 30301" +221352,Wired Headphones,1,11.99,06/17/19 17:03,"196 Wilson St, Austin, TX 73301" +221353,AAA Batteries (4-pack),3,2.99,06/25/19 00:28,"661 Johnson St, Boston, MA 02215" +221354,Bose SoundSport Headphones,1,99.99,06/06/19 10:31,"504 Adams St, San Francisco, CA 94016" +221355,Macbook Pro Laptop,1,1700,06/30/19 07:52,"657 10th St, Los Angeles, CA 90001" +221356,Lightning Charging Cable,1,14.95,06/28/19 14:14,"303 Main St, Boston, MA 02215" +221357,Lightning Charging Cable,1,14.95,06/16/19 14:37,"136 River St, Dallas, TX 75001" +221358,Macbook Pro Laptop,1,1700,06/02/19 12:50,"804 9th St, Los Angeles, CA 90001" +221359,Lightning Charging Cable,1,14.95,06/05/19 12:30,"515 Maple St, Dallas, TX 75001" +221360,Lightning Charging Cable,1,14.95,06/06/19 20:26,"396 Maple St, Atlanta, GA 30301" +221361,Wired Headphones,1,11.99,06/04/19 20:24,"695 Cherry St, Austin, TX 73301" +221362,34in Ultrawide Monitor,1,379.99,06/23/19 16:52,"645 Main St, San Francisco, CA 94016" +221363,Apple Airpods Headphones,1,150,06/11/19 18:48,"131 Johnson St, San Francisco, CA 94016" +221364,20in Monitor,1,109.99,06/27/19 23:37,"848 Park St, Seattle, WA 98101" +221365,AAA Batteries (4-pack),1,2.99,06/01/19 21:14,"144 2nd St, San Francisco, CA 94016" +221366,Flatscreen TV,1,300,06/11/19 14:24,"640 Jefferson St, Portland, OR 97035" +221367,USB-C Charging Cable,1,11.95,06/20/19 18:08,"905 Chestnut St, New York City, NY 10001" +221367,Wired Headphones,1,11.99,06/20/19 18:08,"905 Chestnut St, New York City, NY 10001" +221368,Lightning Charging Cable,1,14.95,06/26/19 15:33,"125 1st St, Boston, MA 02215" +221369,Lightning Charging Cable,1,14.95,06/09/19 09:58,"327 Pine St, Dallas, TX 75001" +221370,AAA Batteries (4-pack),3,2.99,06/12/19 13:18,"282 Washington St, New York City, NY 10001" +221371,Lightning Charging Cable,1,14.95,06/21/19 23:57,"409 Church St, San Francisco, CA 94016" +221372,Macbook Pro Laptop,1,1700,06/06/19 16:59,"694 North St, Atlanta, GA 30301" +221373,Apple Airpods Headphones,1,150,06/11/19 00:00,"958 Willow St, Boston, MA 02215" +221374,AAA Batteries (4-pack),2,2.99,06/12/19 21:28,"15 Lincoln St, San Francisco, CA 94016" +221375,20in Monitor,1,109.99,06/18/19 12:14,"556 Spruce St, Seattle, WA 98101" +221376,27in 4K Gaming Monitor,1,389.99,06/24/19 21:23,"525 Park St, Boston, MA 02215" +221377,USB-C Charging Cable,1,11.95,06/01/19 20:34,"465 Dogwood St, Portland, OR 97035" +221378,AAA Batteries (4-pack),1,2.99,06/16/19 18:39,"803 Adams St, Dallas, TX 75001" +221379,AA Batteries (4-pack),2,3.84,06/14/19 10:06,"538 Park St, Los Angeles, CA 90001" +221380,Macbook Pro Laptop,1,1700,06/03/19 22:05,"208 Cherry St, Boston, MA 02215" +221381,LG Dryer,1,600.0,06/28/19 15:53,"699 Spruce St, Los Angeles, CA 90001" +221382,34in Ultrawide Monitor,1,379.99,06/27/19 22:34,"87 Cherry St, Seattle, WA 98101" +221383,AA Batteries (4-pack),1,3.84,06/11/19 19:43,"388 Chestnut St, Portland, ME 04101" +221384,Google Phone,1,600,06/19/19 01:20,"28 11th St, New York City, NY 10001" +221384,USB-C Charging Cable,1,11.95,06/19/19 01:20,"28 11th St, New York City, NY 10001" +221385,Apple Airpods Headphones,1,150,06/08/19 13:13,"578 4th St, Boston, MA 02215" +221386,Bose SoundSport Headphones,1,99.99,06/19/19 18:56,"810 Hill St, San Francisco, CA 94016" +221387,Macbook Pro Laptop,1,1700,06/08/19 21:19,"508 1st St, New York City, NY 10001" +221388,USB-C Charging Cable,1,11.95,06/04/19 16:46,"835 6th St, San Francisco, CA 94016" +221389,Bose SoundSport Headphones,1,99.99,06/17/19 09:55,"688 Lake St, San Francisco, CA 94016" +221390,AA Batteries (4-pack),1,3.84,06/18/19 21:38,"550 Highland St, Boston, MA 02215" +221391,Lightning Charging Cable,1,14.95,06/29/19 23:33,"508 Lake St, New York City, NY 10001" +221392,Wired Headphones,1,11.99,06/02/19 18:39,"667 Meadow St, Boston, MA 02215" +221393,ThinkPad Laptop,1,999.99,06/23/19 08:52,"448 5th St, Atlanta, GA 30301" +221394,AA Batteries (4-pack),3,3.84,06/12/19 20:15,"515 Ridge St, Atlanta, GA 30301" +221395,AAA Batteries (4-pack),8,2.99,06/25/19 20:47,"670 River St, New York City, NY 10001" +221396,Lightning Charging Cable,1,14.95,06/21/19 20:25,"285 Spruce St, New York City, NY 10001" +221397,Lightning Charging Cable,1,14.95,06/17/19 17:18,"845 Sunset St, Dallas, TX 75001" +221398,Lightning Charging Cable,1,14.95,06/27/19 21:15,"1 Madison St, Los Angeles, CA 90001" +221399,Lightning Charging Cable,1,14.95,06/04/19 15:30,"11 West St, Dallas, TX 75001" +221400,Lightning Charging Cable,1,14.95,06/15/19 22:53,"643 Madison St, Los Angeles, CA 90001" +221401,AAA Batteries (4-pack),3,2.99,06/06/19 14:14,"569 Lake St, Austin, TX 73301" +221402,Bose SoundSport Headphones,1,99.99,06/09/19 22:31,"509 Main St, Boston, MA 02215" +221403,Wired Headphones,1,11.99,06/24/19 18:18,"252 11th St, Atlanta, GA 30301" +221404,Apple Airpods Headphones,1,150,06/26/19 09:40,"677 Lincoln St, San Francisco, CA 94016" +221405,ThinkPad Laptop,1,999.99,06/18/19 07:28,"740 13th St, Los Angeles, CA 90001" +221406,Wired Headphones,2,11.99,06/26/19 08:36,"934 Elm St, Boston, MA 02215" +221407,AA Batteries (4-pack),1,3.84,06/02/19 11:12,"638 Cedar St, Los Angeles, CA 90001" +221408,Lightning Charging Cable,1,14.95,06/29/19 15:37,"804 Lake St, Atlanta, GA 30301" +221409,Lightning Charging Cable,1,14.95,06/15/19 01:58,"836 1st St, San Francisco, CA 94016" +221410,Apple Airpods Headphones,1,150,06/05/19 22:59,"797 Chestnut St, Dallas, TX 75001" +221411,LG Washing Machine,1,600.0,06/17/19 19:32,"587 Pine St, Portland, ME 04101" +221412,Macbook Pro Laptop,1,1700,06/16/19 16:33,"559 Jackson St, San Francisco, CA 94016" +221413,AA Batteries (4-pack),1,3.84,06/20/19 21:20,"746 Madison St, San Francisco, CA 94016" +221414,Bose SoundSport Headphones,1,99.99,06/12/19 14:48,"843 Madison St, Seattle, WA 98101" +221415,USB-C Charging Cable,1,11.95,06/29/19 15:57,"760 Pine St, Austin, TX 73301" +221416,AA Batteries (4-pack),1,3.84,06/28/19 11:42,"404 Lakeview St, Dallas, TX 75001" +221417,27in FHD Monitor,1,149.99,06/26/19 22:51,"343 Cherry St, Boston, MA 02215" +221418,Wired Headphones,1,11.99,06/10/19 21:19,"241 12th St, San Francisco, CA 94016" +221419,Lightning Charging Cable,2,14.95,06/24/19 13:03,"997 Jefferson St, Dallas, TX 75001" +221420,Google Phone,1,600,06/19/19 18:21,"302 4th St, Dallas, TX 75001" +221421,Flatscreen TV,1,300,06/10/19 21:27,"186 Sunset St, Boston, MA 02215" +221422,LG Washing Machine,1,600.0,06/08/19 22:17,"173 West St, San Francisco, CA 94016" +221423,USB-C Charging Cable,1,11.95,06/05/19 04:34,"9 Forest St, Los Angeles, CA 90001" +221424,LG Dryer,1,600.0,06/23/19 14:04,"372 Jefferson St, Los Angeles, CA 90001" +221425,Lightning Charging Cable,1,14.95,06/24/19 19:28,"486 Chestnut St, Seattle, WA 98101" +221426,AA Batteries (4-pack),2,3.84,06/10/19 15:33,"658 12th St, San Francisco, CA 94016" +221427,AA Batteries (4-pack),2,3.84,06/23/19 09:54,"433 Highland St, New York City, NY 10001" +221428,iPhone,1,700,06/23/19 18:12,"398 9th St, Los Angeles, CA 90001" +221429,20in Monitor,1,109.99,06/20/19 20:26,"860 Park St, Dallas, TX 75001" +221430,AAA Batteries (4-pack),1,2.99,06/09/19 23:35,"557 Dogwood St, New York City, NY 10001" +221431,Apple Airpods Headphones,1,150,06/01/19 18:41,"668 Park St, San Francisco, CA 94016" +221432,Lightning Charging Cable,1,14.95,06/07/19 19:55,"599 Pine St, Seattle, WA 98101" +221433,USB-C Charging Cable,1,11.95,06/20/19 22:46,"66 1st St, San Francisco, CA 94016" +221434,Macbook Pro Laptop,1,1700,06/23/19 01:21,"959 Chestnut St, Boston, MA 02215" +221435,iPhone,1,700,06/15/19 22:20,"3 Hickory St, Seattle, WA 98101" +221436,AAA Batteries (4-pack),1,2.99,06/03/19 12:34,"700 Adams St, Dallas, TX 75001" +221437,AA Batteries (4-pack),2,3.84,06/08/19 14:52,"100 Chestnut St, San Francisco, CA 94016" +221438,USB-C Charging Cable,1,11.95,06/17/19 22:00,"800 Forest St, Seattle, WA 98101" +221439,Wired Headphones,1,11.99,06/13/19 16:06,"665 5th St, Atlanta, GA 30301" +221440,Apple Airpods Headphones,1,150,06/04/19 10:25,"738 Lake St, New York City, NY 10001" +221441,Apple Airpods Headphones,1,150,06/09/19 01:22,"330 North St, New York City, NY 10001" +221442,AA Batteries (4-pack),2,3.84,06/07/19 17:08,"73 Spruce St, Los Angeles, CA 90001" +221443,27in FHD Monitor,1,149.99,06/24/19 12:35,"327 Hill St, San Francisco, CA 94016" +221444,27in FHD Monitor,1,149.99,06/20/19 11:54,"944 Sunset St, Los Angeles, CA 90001" +221445,AA Batteries (4-pack),1,3.84,06/06/19 13:03,"397 7th St, Los Angeles, CA 90001" +221446,Macbook Pro Laptop,1,1700,06/03/19 19:25,"238 Lake St, Seattle, WA 98101" +221447,Lightning Charging Cable,1,14.95,06/12/19 19:16,"355 Madison St, San Francisco, CA 94016" +221448,Bose SoundSport Headphones,1,99.99,06/11/19 07:41,"587 Forest St, San Francisco, CA 94016" +221449,27in 4K Gaming Monitor,1,389.99,06/12/19 22:08,"656 River St, Seattle, WA 98101" +221450,USB-C Charging Cable,1,11.95,06/21/19 00:10,"650 Lake St, San Francisco, CA 94016" +221451,AA Batteries (4-pack),3,3.84,06/27/19 13:41,"530 North St, New York City, NY 10001" +221452,AAA Batteries (4-pack),1,2.99,06/16/19 19:34,"530 Lake St, San Francisco, CA 94016" +221453,USB-C Charging Cable,2,11.95,06/19/19 03:11,"762 1st St, Seattle, WA 98101" +221454,USB-C Charging Cable,1,11.95,06/21/19 11:46,"553 5th St, Los Angeles, CA 90001" +221455,Google Phone,1,600,06/07/19 13:20,"496 Dogwood St, Los Angeles, CA 90001" +221456,USB-C Charging Cable,1,11.95,06/14/19 11:46,"40 Forest St, New York City, NY 10001" +221457,34in Ultrawide Monitor,1,379.99,06/09/19 14:28,"525 Hill St, Atlanta, GA 30301" +221458,AAA Batteries (4-pack),3,2.99,06/30/19 23:33,"191 2nd St, Portland, OR 97035" +221459,Lightning Charging Cable,1,14.95,06/05/19 11:15,"785 Wilson St, Seattle, WA 98101" +221460,USB-C Charging Cable,1,11.95,06/08/19 12:23,"960 River St, New York City, NY 10001" +221461,Bose SoundSport Headphones,1,99.99,06/24/19 09:46,"40 13th St, Boston, MA 02215" +221462,Bose SoundSport Headphones,1,99.99,06/03/19 14:59,"218 North St, Dallas, TX 75001" +221463,Flatscreen TV,1,300,06/24/19 10:20,"45 Cherry St, Los Angeles, CA 90001" +221464,USB-C Charging Cable,1,11.95,06/30/19 23:20,"796 14th St, Portland, OR 97035" +221465,USB-C Charging Cable,1,11.95,06/03/19 23:01,"297 Spruce St, Los Angeles, CA 90001" +221466,Wired Headphones,1,11.99,06/02/19 19:43,"83 Sunset St, Austin, TX 73301" +221467,LG Dryer,1,600.0,06/04/19 17:53,"796 8th St, Portland, OR 97035" +221468,AAA Batteries (4-pack),1,2.99,06/16/19 13:35,"21 Hickory St, San Francisco, CA 94016" +221469,AAA Batteries (4-pack),1,2.99,06/25/19 14:22,"843 4th St, Seattle, WA 98101" +221470,Apple Airpods Headphones,1,150,06/30/19 00:55,"811 Forest St, Los Angeles, CA 90001" +221471,Wired Headphones,1,11.99,06/27/19 07:56,"430 Cedar St, San Francisco, CA 94016" +221472,AA Batteries (4-pack),2,3.84,06/24/19 17:03,"637 Walnut St, San Francisco, CA 94016" +221473,Bose SoundSport Headphones,1,99.99,06/28/19 17:47,"780 6th St, Portland, OR 97035" +221474,Google Phone,1,600,06/20/19 19:48,"206 Dogwood St, San Francisco, CA 94016" +221475,USB-C Charging Cable,1,11.95,06/21/19 18:06,"522 Lakeview St, San Francisco, CA 94016" +221476,Bose SoundSport Headphones,1,99.99,06/24/19 11:42,"957 Lakeview St, New York City, NY 10001" +221477,AA Batteries (4-pack),2,3.84,06/01/19 13:52,"528 Jefferson St, Austin, TX 73301" +221478,Wired Headphones,1,11.99,06/24/19 14:22,"958 Walnut St, Seattle, WA 98101" +221479,Macbook Pro Laptop,1,1700,06/17/19 10:58,"647 Cedar St, Los Angeles, CA 90001" +221480,34in Ultrawide Monitor,1,379.99,06/15/19 12:29,"471 North St, Seattle, WA 98101" +221481,Bose SoundSport Headphones,1,99.99,06/15/19 11:35,"545 Elm St, Boston, MA 02215" +221482,AAA Batteries (4-pack),3,2.99,06/20/19 15:55,"470 North St, Portland, OR 97035" +221483,Lightning Charging Cable,1,14.95,06/07/19 12:43,"224 Hill St, Portland, OR 97035" +221484,Lightning Charging Cable,1,14.95,06/14/19 17:37,"569 12th St, Dallas, TX 75001" +221485,AA Batteries (4-pack),1,3.84,06/06/19 10:47,"991 Forest St, Seattle, WA 98101" +221486,AA Batteries (4-pack),2,3.84,06/22/19 11:40,"615 Ridge St, Boston, MA 02215" +221487,27in FHD Monitor,1,149.99,06/27/19 13:33,"385 Elm St, Boston, MA 02215" +221488,USB-C Charging Cable,1,11.95,06/30/19 20:26,"742 7th St, Seattle, WA 98101" +221489,Google Phone,1,600,06/28/19 20:52,"863 Spruce St, Los Angeles, CA 90001" +221490,USB-C Charging Cable,1,11.95,06/27/19 18:59,"72 4th St, New York City, NY 10001" +221491,AA Batteries (4-pack),2,3.84,06/29/19 06:56,"763 Maple St, Atlanta, GA 30301" +221492,AA Batteries (4-pack),1,3.84,06/24/19 20:36,"888 4th St, New York City, NY 10001" +221493,iPhone,1,700,06/23/19 16:11,"379 Cherry St, Dallas, TX 75001" +221494,Lightning Charging Cable,2,14.95,06/24/19 23:54,"741 5th St, San Francisco, CA 94016" +221495,34in Ultrawide Monitor,1,379.99,06/10/19 19:54,"371 South St, Los Angeles, CA 90001" +221496,AAA Batteries (4-pack),3,2.99,06/24/19 16:33,"728 9th St, Seattle, WA 98101" +221497,AA Batteries (4-pack),1,3.84,06/14/19 08:32,"539 Highland St, Dallas, TX 75001" +221498,iPhone,1,700,06/19/19 19:09,"432 Ridge St, San Francisco, CA 94016" +221499,34in Ultrawide Monitor,1,379.99,06/24/19 10:46,"421 10th St, New York City, NY 10001" +221500,AA Batteries (4-pack),1,3.84,06/29/19 15:17,"218 Adams St, Dallas, TX 75001" +221500,AA Batteries (4-pack),1,3.84,06/29/19 15:17,"218 Adams St, Dallas, TX 75001" +221501,Google Phone,1,600,06/16/19 21:16,"717 Madison St, Seattle, WA 98101" +221502,Apple Airpods Headphones,1,150,06/30/19 14:44,"906 Sunset St, Austin, TX 73301" +221503,AAA Batteries (4-pack),1,2.99,06/01/19 07:59,"151 Highland St, San Francisco, CA 94016" +221504,iPhone,1,700,06/10/19 15:15,"992 Adams St, Los Angeles, CA 90001" +221505,Lightning Charging Cable,1,14.95,06/07/19 21:33,"323 Elm St, Boston, MA 02215" +221506,Apple Airpods Headphones,1,150,06/17/19 19:45,"714 Jackson St, Seattle, WA 98101" +221507,Wired Headphones,1,11.99,06/19/19 11:50,"745 Willow St, Atlanta, GA 30301" +221508,AAA Batteries (4-pack),1,2.99,06/05/19 17:56,"294 Dogwood St, Dallas, TX 75001" +221509,ThinkPad Laptop,1,999.99,06/02/19 11:00,"22 Willow St, San Francisco, CA 94016" +221510,Bose SoundSport Headphones,1,99.99,06/19/19 16:51,"144 Pine St, Seattle, WA 98101" +221511,AAA Batteries (4-pack),2,2.99,06/16/19 12:26,"868 5th St, San Francisco, CA 94016" +221512,Apple Airpods Headphones,1,150,06/06/19 22:57,"395 Maple St, Portland, OR 97035" +221513,AAA Batteries (4-pack),1,2.99,06/27/19 10:04,"83 1st St, San Francisco, CA 94016" +221514,Macbook Pro Laptop,1,1700,06/17/19 01:21,"626 Lake St, New York City, NY 10001" +221515,Vareebadd Phone,1,400,06/25/19 19:13,"615 Sunset St, Boston, MA 02215" +221515,USB-C Charging Cable,1,11.95,06/25/19 19:13,"615 Sunset St, Boston, MA 02215" +221516,Wired Headphones,1,11.99,06/12/19 06:44,"292 Hill St, Los Angeles, CA 90001" +221517,Lightning Charging Cable,1,14.95,06/06/19 22:28,"421 12th St, Atlanta, GA 30301" +221518,Wired Headphones,1,11.99,06/19/19 23:07,"951 Church St, Los Angeles, CA 90001" +221519,ThinkPad Laptop,1,999.99,06/30/19 16:53,"11 Jackson St, Los Angeles, CA 90001" +221520,USB-C Charging Cable,1,11.95,06/21/19 11:53,"311 Highland St, San Francisco, CA 94016" +221521,Apple Airpods Headphones,1,150,06/24/19 13:26,"886 Forest St, Boston, MA 02215" +221522,27in 4K Gaming Monitor,1,389.99,06/09/19 18:51,"568 Lakeview St, New York City, NY 10001" +221523,iPhone,1,700,06/21/19 12:25,"1 Madison St, Dallas, TX 75001" +221523,Lightning Charging Cable,1,14.95,06/21/19 12:25,"1 Madison St, Dallas, TX 75001" +221524,iPhone,1,700,06/28/19 06:59,"468 Jackson St, New York City, NY 10001" +221525,AAA Batteries (4-pack),2,2.99,06/22/19 04:47,"245 Chestnut St, Los Angeles, CA 90001" +221526,AA Batteries (4-pack),1,3.84,06/22/19 18:37,"395 5th St, Seattle, WA 98101" +221527,27in FHD Monitor,1,149.99,06/16/19 10:22,"35 Hill St, San Francisco, CA 94016" +221528,AAA Batteries (4-pack),1,2.99,06/11/19 14:02,"667 5th St, San Francisco, CA 94016" +221529,AA Batteries (4-pack),1,3.84,06/25/19 14:45,"339 Elm St, Dallas, TX 75001" +221530,Lightning Charging Cable,1,14.95,06/02/19 21:36,"243 Wilson St, Dallas, TX 75001" +221531,AA Batteries (4-pack),1,3.84,06/18/19 19:53,"736 Cherry St, Austin, TX 73301" +221532,34in Ultrawide Monitor,1,379.99,06/20/19 08:12,"224 Lincoln St, Boston, MA 02215" +221533,Google Phone,1,600,06/01/19 18:14,"881 10th St, Atlanta, GA 30301" +221534,20in Monitor,1,109.99,06/06/19 20:42,"835 Main St, Atlanta, GA 30301" +221535,Apple Airpods Headphones,1,150,06/18/19 13:34,"274 11th St, Los Angeles, CA 90001" +221536,iPhone,1,700,06/06/19 18:17,"109 Wilson St, Los Angeles, CA 90001" +221537,USB-C Charging Cable,1,11.95,06/01/19 21:49,"716 Jefferson St, San Francisco, CA 94016" +221538,Macbook Pro Laptop,1,1700,06/17/19 22:27,"946 Chestnut St, Seattle, WA 98101" +221539,Google Phone,1,600,06/16/19 12:16,"819 Johnson St, Atlanta, GA 30301" +221540,Bose SoundSport Headphones,1,99.99,06/15/19 10:26,"785 Willow St, Dallas, TX 75001" +221541,AA Batteries (4-pack),1,3.84,06/19/19 08:01,"811 7th St, Los Angeles, CA 90001" +221542,Macbook Pro Laptop,1,1700,06/17/19 20:02,"763 Walnut St, San Francisco, CA 94016" +221543,34in Ultrawide Monitor,1,379.99,06/29/19 22:26,"253 Lakeview St, Seattle, WA 98101" +221544,AAA Batteries (4-pack),3,2.99,06/10/19 12:09,"506 Forest St, Seattle, WA 98101" +221545,Apple Airpods Headphones,1,150,06/02/19 17:18,"636 North St, San Francisco, CA 94016" +221546,Lightning Charging Cable,1,14.95,06/14/19 13:09,"187 Washington St, Los Angeles, CA 90001" +221547,AA Batteries (4-pack),1,3.84,06/04/19 13:00,"906 Pine St, Los Angeles, CA 90001" +221548,AAA Batteries (4-pack),1,2.99,06/19/19 15:56,"944 Cherry St, Portland, OR 97035" +221549,AAA Batteries (4-pack),2,2.99,06/09/19 09:14,"46 7th St, Atlanta, GA 30301" +221550,Lightning Charging Cable,2,14.95,06/23/19 18:38,"192 Meadow St, New York City, NY 10001" +221551,USB-C Charging Cable,1,11.95,06/28/19 00:57,"459 Dogwood St, Seattle, WA 98101" +221552,AA Batteries (4-pack),1,3.84,06/25/19 05:15,"772 Johnson St, San Francisco, CA 94016" +221553,27in 4K Gaming Monitor,1,389.99,06/09/19 15:30,"896 2nd St, Atlanta, GA 30301" +221554,Google Phone,1,600,06/14/19 16:59,"238 North St, San Francisco, CA 94016" +221554,USB-C Charging Cable,1,11.95,06/14/19 16:59,"238 North St, San Francisco, CA 94016" +221555,27in FHD Monitor,1,149.99,06/21/19 11:33,"311 Park St, Portland, OR 97035" +221556,Lightning Charging Cable,1,14.95,06/27/19 13:04,"917 Main St, Portland, ME 04101" +221557,Apple Airpods Headphones,1,150,06/06/19 07:06,"852 Lakeview St, New York City, NY 10001" +221558,Google Phone,1,600,06/13/19 19:05,"865 Hill St, Los Angeles, CA 90001" +221559,AAA Batteries (4-pack),1,2.99,06/04/19 16:56,"229 5th St, Los Angeles, CA 90001" +221560,Macbook Pro Laptop,1,1700,06/25/19 23:42,"797 Spruce St, San Francisco, CA 94016" +221561,USB-C Charging Cable,1,11.95,06/02/19 19:23,"429 Park St, Boston, MA 02215" +221562,AAA Batteries (4-pack),2,2.99,06/21/19 12:55,"816 Maple St, San Francisco, CA 94016" +221563,Wired Headphones,1,11.99,06/13/19 21:28,"141 5th St, Boston, MA 02215" +221564,27in FHD Monitor,1,149.99,06/17/19 14:25,"641 13th St, Los Angeles, CA 90001" +221565,iPhone,1,700,06/08/19 00:04,"808 9th St, Seattle, WA 98101" +221566,iPhone,1,700,06/15/19 21:23,"82 Lincoln St, San Francisco, CA 94016" +221567,iPhone,1,700,06/17/19 17:20,"125 West St, Portland, OR 97035" +221568,Lightning Charging Cable,1,14.95,06/22/19 18:28,"693 River St, New York City, NY 10001" +221569,USB-C Charging Cable,1,11.95,06/25/19 16:38,"793 7th St, Los Angeles, CA 90001" +221570,Flatscreen TV,1,300,06/12/19 19:47,"278 11th St, Boston, MA 02215" +221571,Google Phone,1,600,06/12/19 11:18,"943 Center St, San Francisco, CA 94016" +221572,AA Batteries (4-pack),2,3.84,06/24/19 10:13,"975 9th St, Seattle, WA 98101" +221573,AA Batteries (4-pack),2,3.84,06/06/19 19:12,"17 Willow St, Los Angeles, CA 90001" +221574,AA Batteries (4-pack),1,3.84,06/11/19 22:30,"447 14th St, Boston, MA 02215" +221575,iPhone,1,700,06/10/19 08:49,"836 Jefferson St, Seattle, WA 98101" +221576,Lightning Charging Cable,1,14.95,06/14/19 20:03,"888 Forest St, Atlanta, GA 30301" +221577,Lightning Charging Cable,1,14.95,06/07/19 19:39,"217 1st St, San Francisco, CA 94016" +221578,Macbook Pro Laptop,1,1700,06/20/19 11:42,"197 4th St, New York City, NY 10001" +221579,Lightning Charging Cable,1,14.95,06/11/19 14:59,"432 11th St, San Francisco, CA 94016" +221580,AA Batteries (4-pack),1,3.84,06/15/19 20:08,"712 6th St, Boston, MA 02215" +221581,AAA Batteries (4-pack),1,2.99,06/07/19 10:16,"658 Adams St, Portland, ME 04101" +221582,Macbook Pro Laptop,1,1700,06/28/19 15:27,"346 1st St, Seattle, WA 98101" +221583,Flatscreen TV,1,300,06/04/19 19:42,"608 Main St, Los Angeles, CA 90001" +221584,Google Phone,1,600,06/24/19 18:59,"146 4th St, Dallas, TX 75001" +221584,USB-C Charging Cable,1,11.95,06/24/19 18:59,"146 4th St, Dallas, TX 75001" +221585,AA Batteries (4-pack),1,3.84,06/22/19 13:19,"234 West St, Austin, TX 73301" +221586,Google Phone,1,600,06/22/19 19:44,"28 Lincoln St, Austin, TX 73301" +221586,USB-C Charging Cable,1,11.95,06/22/19 19:44,"28 Lincoln St, Austin, TX 73301" +221587,Bose SoundSport Headphones,1,99.99,06/17/19 16:00,"330 Lakeview St, Atlanta, GA 30301" +221588,iPhone,1,700,06/04/19 17:57,"950 7th St, San Francisco, CA 94016" +221589,Bose SoundSport Headphones,1,99.99,06/23/19 18:07,"698 1st St, Austin, TX 73301" +221590,Wired Headphones,1,11.99,06/20/19 12:42,"644 9th St, Atlanta, GA 30301" +221591,USB-C Charging Cable,1,11.95,06/14/19 11:13,"124 12th St, Dallas, TX 75001" +221592,Wired Headphones,1,11.99,06/30/19 14:05,"940 Lakeview St, Portland, OR 97035" +221593,Wired Headphones,1,11.99,06/01/19 16:51,"47 8th St, Boston, MA 02215" +,,,,, +221594,34in Ultrawide Monitor,1,379.99,06/26/19 13:24,"653 Park St, San Francisco, CA 94016" +221595,Wired Headphones,1,11.99,06/25/19 10:11,"880 Walnut St, Los Angeles, CA 90001" +221596,Flatscreen TV,1,300,06/04/19 11:29,"811 13th St, New York City, NY 10001" +221597,Macbook Pro Laptop,1,1700,06/10/19 17:04,"807 Dogwood St, New York City, NY 10001" +221597,Bose SoundSport Headphones,1,99.99,06/10/19 17:04,"807 Dogwood St, New York City, NY 10001" +221598,Apple Airpods Headphones,1,150,06/07/19 18:26,"621 2nd St, Portland, OR 97035" +221599,AAA Batteries (4-pack),1,2.99,06/14/19 11:41,"518 River St, San Francisco, CA 94016" +221600,iPhone,1,700,06/29/19 10:45,"744 Forest St, New York City, NY 10001" +221600,Apple Airpods Headphones,1,150,06/29/19 10:45,"744 Forest St, New York City, NY 10001" +221601,USB-C Charging Cable,1,11.95,06/22/19 12:59,"851 Hickory St, San Francisco, CA 94016" +221602,27in FHD Monitor,1,149.99,06/27/19 06:17,"235 Madison St, Dallas, TX 75001" +221603,AAA Batteries (4-pack),1,2.99,06/24/19 16:41,"234 Chestnut St, San Francisco, CA 94016" +221604,Vareebadd Phone,1,400,06/28/19 12:22,"337 12th St, New York City, NY 10001" +221605,Apple Airpods Headphones,1,150,06/10/19 10:22,"461 Forest St, Boston, MA 02215" +221606,iPhone,1,700,06/21/19 13:59,"121 Washington St, San Francisco, CA 94016" +221607,Lightning Charging Cable,1,14.95,06/29/19 11:02,"161 Elm St, San Francisco, CA 94016" +221608,Wired Headphones,1,11.99,06/23/19 13:21,"978 Walnut St, Los Angeles, CA 90001" +221609,Bose SoundSport Headphones,1,99.99,06/26/19 10:35,"669 Hickory St, Boston, MA 02215" +221610,27in FHD Monitor,2,149.99,06/21/19 00:34,"322 Washington St, Austin, TX 73301" +221611,Wired Headphones,1,11.99,06/03/19 13:08,"450 Madison St, Dallas, TX 75001" +221612,27in 4K Gaming Monitor,1,389.99,06/17/19 09:11,"143 West St, Los Angeles, CA 90001" +221613,AAA Batteries (4-pack),1,2.99,06/21/19 09:37,"515 Church St, San Francisco, CA 94016" diff --git a/sales_data/Sales_March_2019.csv b/sales_data/Sales_March_2019.csv new file mode 100644 index 0000000..8d37540 --- /dev/null +++ b/sales_data/Sales_March_2019.csv @@ -0,0 +1,15390 @@ +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +172149,AA Batteries (4-pack),1,3.84,03/15/19 08:19,"127 Lake St, Seattle, WA 98101" +172150,Wired Headphones,1,11.99,03/05/19 13:49,"81 14th St, Boston, MA 02215" +172151,34in Ultrawide Monitor,1,379.99,03/01/19 23:56,"839 Sunset St, Portland, OR 97035" +172152,AAA Batteries (4-pack),1,2.99,03/09/19 08:27,"563 1st St, Los Angeles, CA 90001" +172153,Wired Headphones,1,11.99,03/20/19 06:27,"759 Cherry St, Los Angeles, CA 90001" +172154,27in 4K Gaming Monitor,1,389.99,03/15/19 14:23,"256 Hickory St, Austin, TX 73301" +172155,Vareebadd Phone,1,400.0,03/05/19 11:47,"81 Park St, New York City, NY 10001" +172156,Bose SoundSport Headphones,1,99.99,03/20/19 13:43,"240 Meadow St, San Francisco, CA 94016" +172157,USB-C Charging Cable,1,11.95,03/10/19 15:37,"826 Dogwood St, San Francisco, CA 94016" +172158,Flatscreen TV,1,300.0,03/26/19 22:34,"367 Center St, San Francisco, CA 94016" +172159,Google Phone,1,600.0,03/14/19 13:59,"250 Lincoln St, Atlanta, GA 30301" +172160,Lightning Charging Cable,1,14.95,03/27/19 00:10,"670 Lakeview St, San Francisco, CA 94016" +172161,34in Ultrawide Monitor,1,379.99,03/19/19 10:51,"946 West St, San Francisco, CA 94016" +172162,Lightning Charging Cable,1,14.95,03/21/19 22:44,"992 Park St, Dallas, TX 75001" +172163,AA Batteries (4-pack),1,3.84,03/24/19 10:24,"324 Ridge St, Austin, TX 73301" +172164,Wired Headphones,1,11.99,03/08/19 19:47,"557 4th St, Los Angeles, CA 90001" +172165,USB-C Charging Cable,1,11.95,03/16/19 11:09,"512 13th St, Los Angeles, CA 90001" +172165,iPhone,1,700.0,03/16/19 11:09,"512 13th St, Los Angeles, CA 90001" +172166,27in FHD Monitor,1,149.99,03/17/19 21:10,"361 Cherry St, New York City, NY 10001" +172167,ThinkPad Laptop,1,999.99,03/03/19 13:12,"4 Center St, New York City, NY 10001" +172168,Google Phone,1,600.0,03/31/19 19:58,"357 Ridge St, Atlanta, GA 30301" +172168,USB-C Charging Cable,2,11.95,03/31/19 19:58,"357 Ridge St, Atlanta, GA 30301" +172169,Vareebadd Phone,1,400.0,03/31/19 11:21,"99 West St, New York City, NY 10001" +172169,Wired Headphones,1,11.99,03/31/19 11:21,"99 West St, New York City, NY 10001" +172170,USB-C Charging Cable,1,11.95,03/02/19 15:23,"914 Church St, New York City, NY 10001" +172171,Wired Headphones,1,11.99,03/10/19 15:21,"721 Pine St, Los Angeles, CA 90001" +172172,USB-C Charging Cable,1,11.95,03/06/19 16:19,"423 Washington St, San Francisco, CA 94016" +172173,USB-C Charging Cable,1,11.95,03/24/19 21:44,"559 North St, Los Angeles, CA 90001" +172174,Apple Airpods Headphones,1,150.0,03/16/19 14:57,"176 River St, New York City, NY 10001" +172175,Bose SoundSport Headphones,1,99.99,03/10/19 05:44,"995 Madison St, San Francisco, CA 94016" +172176,34in Ultrawide Monitor,1,379.99,03/25/19 22:17,"588 Main St, New York City, NY 10001" +172177,USB-C Charging Cable,1,11.95,03/22/19 19:34,"926 Dogwood St, San Francisco, CA 94016" +172178,AAA Batteries (4-pack),1,2.99,03/19/19 17:16,"381 Spruce St, Dallas, TX 75001" +172179,Bose SoundSport Headphones,1,99.99,03/13/19 20:52,"608 9th St, New York City, NY 10001" +172180,AA Batteries (4-pack),1,3.84,03/20/19 08:57,"37 Lakeview St, San Francisco, CA 94016" +172181,AAA Batteries (4-pack),1,2.99,03/15/19 17:16,"433 Lincoln St, San Francisco, CA 94016" +172182,Google Phone,1,600.0,03/03/19 09:26,"614 9th St, Dallas, TX 75001" +172183,AA Batteries (4-pack),1,3.84,03/04/19 18:34,"795 Lakeview St, San Francisco, CA 94016" +172184,Wired Headphones,1,11.99,03/29/19 15:56,"859 West St, Boston, MA 02215" +172185,Wired Headphones,1,11.99,03/21/19 17:55,"985 Johnson St, Los Angeles, CA 90001" +172186,34in Ultrawide Monitor,1,379.99,03/09/19 17:26,"559 Lake St, San Francisco, CA 94016" +172187,27in FHD Monitor,1,149.99,03/31/19 19:16,"277 Sunset St, San Francisco, CA 94016" +172188,Wired Headphones,1,11.99,03/01/19 11:03,"974 2nd St, Los Angeles, CA 90001" +172189,AA Batteries (4-pack),1,3.84,03/31/19 12:27,"409 Washington St, New York City, NY 10001" +172190,AAA Batteries (4-pack),1,2.99,03/13/19 00:55,"93 13th St, New York City, NY 10001" +172191,USB-C Charging Cable,1,11.95,03/13/19 12:27,"232 11th St, San Francisco, CA 94016" +172192,Wired Headphones,1,11.99,03/03/19 15:26,"592 11th St, Los Angeles, CA 90001" +172193,AA Batteries (4-pack),1,3.84,03/22/19 09:34,"566 Dogwood St, San Francisco, CA 94016" +172194,AA Batteries (4-pack),1,3.84,03/23/19 15:53,"550 Park St, Austin, TX 73301" +172195,Vareebadd Phone,1,400.0,03/24/19 10:53,"396 5th St, Los Angeles, CA 90001" +172196,USB-C Charging Cable,1,11.95,03/17/19 12:24,"970 West St, Dallas, TX 75001" +172197,Lightning Charging Cable,1,14.95,03/09/19 14:56,"961 1st St, Boston, MA 02215" +172198,27in 4K Gaming Monitor,1,389.99,03/07/19 13:38,"257 8th St, San Francisco, CA 94016" +172199,27in FHD Monitor,1,149.99,03/16/19 21:34,"494 Jefferson St, Austin, TX 73301" +172200,Flatscreen TV,1,300.0,03/05/19 12:15,"771 West St, Atlanta, GA 30301" +172201,Apple Airpods Headphones,1,150.0,03/10/19 13:15,"186 9th St, Atlanta, GA 30301" +172202,Vareebadd Phone,1,400.0,03/19/19 13:11,"246 1st St, San Francisco, CA 94016" +172202,USB-C Charging Cable,1,11.95,03/19/19 13:11,"246 1st St, San Francisco, CA 94016" +172203,AAA Batteries (4-pack),1,2.99,03/06/19 20:07,"848 North St, New York City, NY 10001" +172204,Apple Airpods Headphones,1,150.0,03/21/19 12:10,"952 Walnut St, Dallas, TX 75001" +172205,USB-C Charging Cable,1,11.95,03/30/19 16:27,"584 Elm St, Seattle, WA 98101" +172205,Apple Airpods Headphones,1,150.0,03/30/19 16:27,"584 Elm St, Seattle, WA 98101" +172206,AA Batteries (4-pack),2,3.84,03/30/19 19:46,"641 Elm St, San Francisco, CA 94016" +172207,Wired Headphones,1,11.99,03/20/19 09:26,"584 Walnut St, San Francisco, CA 94016" +172208,34in Ultrawide Monitor,1,379.99,03/05/19 16:31,"781 Johnson St, Los Angeles, CA 90001" +172209,AA Batteries (4-pack),1,3.84,03/10/19 17:27,"288 Chestnut St, Los Angeles, CA 90001" +172210,AA Batteries (4-pack),1,3.84,03/20/19 19:45,"301 Hill St, Boston, MA 02215" +172211,Lightning Charging Cable,1,14.95,03/30/19 13:31,"880 Lakeview St, Boston, MA 02215" +172211,Wired Headphones,1,11.99,03/30/19 13:31,"880 Lakeview St, Boston, MA 02215" +172212,Lightning Charging Cable,1,14.95,03/09/19 16:24,"247 13th St, Los Angeles, CA 90001" +172213,Apple Airpods Headphones,1,150.0,03/09/19 21:30,"269 Main St, Seattle, WA 98101" +172214,Apple Airpods Headphones,1,150.0,03/26/19 09:40,"951 9th St, Austin, TX 73301" +172215,AA Batteries (4-pack),1,3.84,03/19/19 12:22,"210 Chestnut St, Los Angeles, CA 90001" +172216,AA Batteries (4-pack),1,3.84,03/13/19 08:59,"555 Elm St, Boston, MA 02215" +172217,USB-C Charging Cable,1,11.95,03/31/19 19:03,"670 Spruce St, Los Angeles, CA 90001" +172218,Wired Headphones,1,11.99,03/05/19 19:21,"712 7th St, Los Angeles, CA 90001" +172219,27in 4K Gaming Monitor,1,389.99,03/22/19 15:02,"395 Park St, Los Angeles, CA 90001" +172220,20in Monitor,1,109.99,03/19/19 08:49,"331 Lincoln St, New York City, NY 10001" +172221,27in FHD Monitor,1,149.99,03/07/19 17:47,"648 5th St, Los Angeles, CA 90001" +172222,Apple Airpods Headphones,1,150.0,03/27/19 18:25,"343 Jackson St, New York City, NY 10001" +172223,34in Ultrawide Monitor,1,379.99,03/02/19 12:41,"635 12th St, Austin, TX 73301" +172224,Wired Headphones,1,11.99,03/14/19 16:21,"85 4th St, Portland, OR 97035" +172225,AA Batteries (4-pack),1,3.84,03/24/19 02:14,"11 Cedar St, Seattle, WA 98101" +172225,Bose SoundSport Headphones,1,99.99,03/24/19 02:14,"11 Cedar St, Seattle, WA 98101" +172226,AA Batteries (4-pack),1,3.84,03/28/19 17:15,"208 Willow St, New York City, NY 10001" +172227,AAA Batteries (4-pack),2,2.99,03/06/19 16:31,"979 Willow St, Boston, MA 02215" +172228,ThinkPad Laptop,1,999.99,03/01/19 15:28,"572 Washington St, Dallas, TX 75001" +172229,USB-C Charging Cable,1,11.95,03/05/19 11:27,"913 12th St, Austin, TX 73301" +172230,20in Monitor,1,109.99,03/29/19 21:35,"312 Elm St, Portland, ME 04101" +172231,Lightning Charging Cable,1,14.95,03/02/19 14:44,"425 4th St, Portland, ME 04101" +172232,AAA Batteries (4-pack),1,2.99,03/18/19 16:03,"928 Jackson St, Dallas, TX 75001" +172233,USB-C Charging Cable,1,11.95,03/15/19 15:57,"74 Meadow St, Portland, OR 97035" +172234,AA Batteries (4-pack),4,3.84,03/23/19 18:28,"187 Ridge St, San Francisco, CA 94016" +172235,Wired Headphones,2,11.99,03/29/19 16:26,"560 Hickory St, San Francisco, CA 94016" +172236,iPhone,1,700.0,03/24/19 12:18,"282 Cedar St, Atlanta, GA 30301" +172236,Wired Headphones,1,11.99,03/24/19 12:18,"282 Cedar St, Atlanta, GA 30301" +172237,iPhone,1,700.0,03/21/19 21:07,"375 Cherry St, San Francisco, CA 94016" +172237,Lightning Charging Cable,1,14.95,03/21/19 21:07,"375 Cherry St, San Francisco, CA 94016" +172238,LG Dryer,1,600.0,03/31/19 09:22,"310 Main St, San Francisco, CA 94016" +172239,USB-C Charging Cable,1,11.95,03/04/19 19:20,"899 Elm St, Boston, MA 02215" +172240,AA Batteries (4-pack),3,3.84,03/04/19 11:49,"877 Madison St, Austin, TX 73301" +172241,AAA Batteries (4-pack),1,2.99,03/05/19 21:19,"309 12th St, San Francisco, CA 94016" +172242,USB-C Charging Cable,1,11.95,03/14/19 23:06,"295 River St, Portland, ME 04101" +172243,USB-C Charging Cable,1,11.95,03/20/19 09:50,"352 1st St, Portland, OR 97035" +172244,Macbook Pro Laptop,1,1700.0,03/13/19 11:32,"618 12th St, Los Angeles, CA 90001" +172245,USB-C Charging Cable,1,11.95,03/19/19 08:59,"649 14th St, New York City, NY 10001" +172246,34in Ultrawide Monitor,1,379.99,03/03/19 14:12,"408 Wilson St, Austin, TX 73301" +172247,Apple Airpods Headphones,1,150.0,03/22/19 09:27,"232 1st St, Austin, TX 73301" +172248,Lightning Charging Cable,1,14.95,03/16/19 00:29,"91 North St, New York City, NY 10001" +172249,Flatscreen TV,1,300.0,03/25/19 18:51,"319 Madison St, Atlanta, GA 30301" +172250,Apple Airpods Headphones,1,150.0,03/08/19 18:48,"670 Church St, San Francisco, CA 94016" +172251,27in 4K Gaming Monitor,1,389.99,03/08/19 04:44,"350 Forest St, San Francisco, CA 94016" +172252,USB-C Charging Cable,1,11.95,03/30/19 17:39,"317 North St, Seattle, WA 98101" +172253,AAA Batteries (4-pack),2,2.99,03/09/19 10:40,"921 Madison St, San Francisco, CA 94016" +172254,Lightning Charging Cable,1,14.95,03/09/19 19:45,"830 Hill St, Atlanta, GA 30301" +172255,iPhone,1,700.0,03/04/19 16:52,"10 North St, Los Angeles, CA 90001" +172256,Google Phone,1,600.0,03/08/19 20:06,"381 Center St, Atlanta, GA 30301" +172257,Apple Airpods Headphones,1,150.0,03/07/19 15:53,"578 14th St, Boston, MA 02215" +172258,Google Phone,1,600.0,03/14/19 11:04,"382 Cedar St, Seattle, WA 98101" +172259,Bose SoundSport Headphones,1,99.99,03/06/19 15:54,"891 Cedar St, San Francisco, CA 94016" +172260,USB-C Charging Cable,1,11.95,03/22/19 07:19,"126 Park St, Boston, MA 02215" +172261,AAA Batteries (4-pack),2,2.99,03/03/19 17:37,"825 6th St, Boston, MA 02215" +172262,Lightning Charging Cable,1,14.95,03/05/19 08:32,"789 Cherry St, Dallas, TX 75001" +172263,Apple Airpods Headphones,1,150.0,03/06/19 10:59,"226 Ridge St, Boston, MA 02215" +172264,USB-C Charging Cable,1,11.95,03/04/19 16:04,"821 Spruce St, San Francisco, CA 94016" +172265,USB-C Charging Cable,1,11.95,03/17/19 16:54,"917 Forest St, Los Angeles, CA 90001" +172266,AA Batteries (4-pack),1,3.84,03/24/19 13:46,"723 Church St, San Francisco, CA 94016" +172267,AA Batteries (4-pack),4,3.84,03/19/19 17:08,"635 4th St, Los Angeles, CA 90001" +172268,Apple Airpods Headphones,1,150.0,03/21/19 16:37,"964 Spruce St, Dallas, TX 75001" +172269,iPhone,1,700.0,03/11/19 12:36,"196 4th St, Boston, MA 02215" +172269,Lightning Charging Cable,1,14.95,03/11/19 12:36,"196 4th St, Boston, MA 02215" +172270,34in Ultrawide Monitor,1,379.99,03/18/19 22:52,"251 Jefferson St, Austin, TX 73301" +172271,Macbook Pro Laptop,1,1700.0,03/13/19 21:51,"763 Adams St, Portland, OR 97035" +172272,Wired Headphones,1,11.99,03/04/19 13:38,"751 Lincoln St, Los Angeles, CA 90001" +172273,Macbook Pro Laptop,1,1700.0,03/30/19 11:25,"335 1st St, San Francisco, CA 94016" +172274,Wired Headphones,1,11.99,03/17/19 15:08,"390 1st St, Seattle, WA 98101" +172275,USB-C Charging Cable,1,11.95,03/04/19 12:17,"915 Park St, Seattle, WA 98101" +172276,Google Phone,1,600.0,03/14/19 21:54,"962 Adams St, San Francisco, CA 94016" +172276,USB-C Charging Cable,1,11.95,03/14/19 21:54,"962 Adams St, San Francisco, CA 94016" +172277,LG Dryer,1,600.0,03/20/19 11:36,"295 14th St, Los Angeles, CA 90001" +172278,AAA Batteries (4-pack),1,2.99,03/06/19 17:34,"145 West St, Los Angeles, CA 90001" +172279,Apple Airpods Headphones,1,150.0,03/16/19 19:19,"840 Lake St, Atlanta, GA 30301" +172280,AAA Batteries (4-pack),1,2.99,03/06/19 17:38,"143 Lakeview St, Boston, MA 02215" +172281,iPhone,1,700.0,03/17/19 11:43,"543 9th St, Atlanta, GA 30301" +172282,Lightning Charging Cable,1,14.95,03/10/19 10:46,"987 5th St, San Francisco, CA 94016" +172283,ThinkPad Laptop,1,999.99,03/18/19 03:05,"580 Cherry St, Boston, MA 02215" +172284,20in Monitor,1,109.99,03/10/19 09:35,"28 6th St, Los Angeles, CA 90001" +172285,AA Batteries (4-pack),1,3.84,03/21/19 13:12,"388 Meadow St, Los Angeles, CA 90001" +172286,Wired Headphones,1,11.99,03/02/19 15:28,"860 Jackson St, Austin, TX 73301" +172287,LG Washing Machine,1,600.0,03/28/19 10:11,"653 11th St, Seattle, WA 98101" +172288,AA Batteries (4-pack),1,3.84,03/13/19 22:17,"774 Maple St, New York City, NY 10001" +172289,Bose SoundSport Headphones,1,99.99,03/21/19 19:28,"345 Lake St, San Francisco, CA 94016" +172290,AA Batteries (4-pack),2,3.84,03/14/19 21:54,"117 Jefferson St, Dallas, TX 75001" +172290,27in 4K Gaming Monitor,1,389.99,03/14/19 21:54,"117 Jefferson St, Dallas, TX 75001" +172291,AAA Batteries (4-pack),1,2.99,03/06/19 12:36,"440 Meadow St, Austin, TX 73301" +172292,Bose SoundSport Headphones,1,99.99,03/14/19 09:44,"602 11th St, San Francisco, CA 94016" +172293,Wired Headphones,1,11.99,03/24/19 08:17,"114 1st St, Atlanta, GA 30301" +172294,AAA Batteries (4-pack),1,2.99,03/24/19 17:10,"465 Ridge St, San Francisco, CA 94016" +172295,Wired Headphones,1,11.99,03/31/19 09:14,"624 2nd St, Los Angeles, CA 90001" +172296,Apple Airpods Headphones,1,150.0,03/09/19 20:02,"349 Washington St, New York City, NY 10001" +172297,USB-C Charging Cable,1,11.95,03/11/19 16:56,"459 10th St, San Francisco, CA 94016" +172298,AA Batteries (4-pack),1,3.84,03/24/19 14:05,"962 Washington St, Los Angeles, CA 90001" +172299,AA Batteries (4-pack),2,3.84,03/30/19 21:56,"80 Dogwood St, New York City, NY 10001" +172300,Apple Airpods Headphones,1,150.0,03/15/19 13:46,"295 12th St, Boston, MA 02215" +172301,AAA Batteries (4-pack),1,2.99,03/19/19 12:09,"49 Main St, Los Angeles, CA 90001" +172302,Lightning Charging Cable,1,14.95,03/18/19 13:18,"857 Madison St, Boston, MA 02215" +172303,Lightning Charging Cable,1,14.95,03/26/19 19:44,"568 7th St, Seattle, WA 98101" +172304,Wired Headphones,1,11.99,03/10/19 16:10,"955 Wilson St, Dallas, TX 75001" +172305,iPhone,1,700.0,03/22/19 11:58,"667 Jackson St, Austin, TX 73301" +172306,Bose SoundSport Headphones,1,99.99,03/01/19 08:34,"6 Park St, Portland, OR 97035" +172307,Lightning Charging Cable,1,14.95,03/20/19 00:50,"976 4th St, New York City, NY 10001" +172308,AAA Batteries (4-pack),1,2.99,03/01/19 16:53,"456 Washington St, Dallas, TX 75001" +172309,Wired Headphones,1,11.99,03/30/19 10:36,"736 Wilson St, Los Angeles, CA 90001" +172310,Google Phone,1,600.0,03/11/19 16:15,"550 Pine St, Los Angeles, CA 90001" +172311,USB-C Charging Cable,1,11.95,03/12/19 10:00,"872 Lake St, Seattle, WA 98101" +172312,AA Batteries (4-pack),1,3.84,03/27/19 13:50,"935 River St, San Francisco, CA 94016" +172313,Wired Headphones,1,11.99,03/25/19 22:10,"973 Main St, Austin, TX 73301" +172313,Wired Headphones,1,11.99,03/25/19 22:10,"973 Main St, Austin, TX 73301" +172314,USB-C Charging Cable,1,11.95,03/20/19 10:26,"670 10th St, New York City, NY 10001" +172315,Macbook Pro Laptop,1,1700.0,03/04/19 19:50,"732 West St, Seattle, WA 98101" +172316,ThinkPad Laptop,1,999.99,03/17/19 10:24,"162 Park St, Seattle, WA 98101" +172317,Bose SoundSport Headphones,1,99.99,03/10/19 23:24,"684 Jackson St, Los Angeles, CA 90001" +172318,27in FHD Monitor,1,149.99,03/18/19 11:08,"108 Main St, Seattle, WA 98101" +172319,iPhone,1,700.0,03/05/19 00:26,"318 10th St, San Francisco, CA 94016" +172319,Lightning Charging Cable,1,14.95,03/05/19 00:26,"318 10th St, San Francisco, CA 94016" +172320,Lightning Charging Cable,1,14.95,03/01/19 18:30,"293 Cherry St, Austin, TX 73301" +172321,AA Batteries (4-pack),3,3.84,03/12/19 11:48,"32 Pine St, San Francisco, CA 94016" +172322,Bose SoundSport Headphones,1,99.99,03/19/19 14:41,"357 Wilson St, New York City, NY 10001" +172323,AA Batteries (4-pack),1,3.84,03/24/19 11:52,"969 13th St, New York City, NY 10001" +172324,LG Washing Machine,1,600.0,03/22/19 19:07,"917 9th St, Los Angeles, CA 90001" +172325,AA Batteries (4-pack),1,3.84,03/10/19 08:43,"236 Washington St, New York City, NY 10001" +172326,Apple Airpods Headphones,1,150.0,03/17/19 15:33,"822 Washington St, San Francisco, CA 94016" +172327,Apple Airpods Headphones,1,150.0,03/25/19 18:14,"498 5th St, Los Angeles, CA 90001" +172328,Macbook Pro Laptop,1,1700.0,03/29/19 17:12,"601 Willow St, Dallas, TX 75001" +172329,Bose SoundSport Headphones,1,99.99,03/15/19 13:47,"958 Center St, Portland, OR 97035" +172330,Lightning Charging Cable,2,14.95,03/25/19 09:58,"575 13th St, San Francisco, CA 94016" +172331,USB-C Charging Cable,1,11.95,03/18/19 19:13,"950 Cherry St, Boston, MA 02215" +172332,Flatscreen TV,1,300.0,03/17/19 12:02,"572 13th St, Seattle, WA 98101" +172333,27in FHD Monitor,1,149.99,03/02/19 20:57,"243 Elm St, Boston, MA 02215" +172334,USB-C Charging Cable,1,11.95,03/13/19 14:25,"710 Walnut St, San Francisco, CA 94016" +172335,27in 4K Gaming Monitor,1,389.99,03/25/19 23:15,"878 2nd St, San Francisco, CA 94016" +172336,AA Batteries (4-pack),1,3.84,03/01/19 23:00,"229 North St, San Francisco, CA 94016" +172337,Wired Headphones,1,11.99,03/21/19 21:11,"921 Spruce St, San Francisco, CA 94016" +172338,Vareebadd Phone,1,400.0,03/31/19 12:24,"591 Elm St, Atlanta, GA 30301" +172339,Wired Headphones,1,11.99,03/11/19 09:07,"751 South St, Boston, MA 02215" +172339,AA Batteries (4-pack),1,3.84,03/11/19 09:07,"751 South St, Boston, MA 02215" +172340,AAA Batteries (4-pack),2,2.99,03/23/19 06:57,"506 Center St, Seattle, WA 98101" +172341,Flatscreen TV,1,300.0,03/07/19 18:36,"601 Willow St, Seattle, WA 98101" +172342,AA Batteries (4-pack),2,3.84,03/11/19 11:40,"543 Jefferson St, New York City, NY 10001" +172343,34in Ultrawide Monitor,1,379.99,03/23/19 11:15,"990 5th St, New York City, NY 10001" +172344,AAA Batteries (4-pack),1,2.99,03/31/19 13:55,"660 10th St, Seattle, WA 98101" +172345,AAA Batteries (4-pack),2,2.99,03/09/19 04:14,"621 River St, Los Angeles, CA 90001" +172346,USB-C Charging Cable,1,11.95,03/11/19 20:36,"406 Ridge St, Portland, OR 97035" +172347,Macbook Pro Laptop,1,1700.0,03/27/19 21:47,"334 10th St, San Francisco, CA 94016" +172348,AA Batteries (4-pack),2,3.84,03/16/19 11:34,"204 South St, Austin, TX 73301" +172349,AA Batteries (4-pack),1,3.84,03/24/19 19:13,"338 North St, San Francisco, CA 94016" +172350,AAA Batteries (4-pack),1,2.99,03/25/19 22:56,"655 Main St, Boston, MA 02215" +172351,Bose SoundSport Headphones,1,99.99,03/11/19 19:37,"172 14th St, Boston, MA 02215" +172352,Flatscreen TV,1,300.0,03/04/19 19:52,"880 Lake St, New York City, NY 10001" +172353,27in FHD Monitor,1,149.99,03/03/19 08:06,"239 Forest St, Portland, OR 97035" +172354,USB-C Charging Cable,1,11.95,03/17/19 12:13,"862 12th St, Los Angeles, CA 90001" +172355,Google Phone,1,600.0,03/11/19 09:50,"716 11th St, New York City, NY 10001" +172356,Lightning Charging Cable,1,14.95,03/08/19 10:21,"639 4th St, Atlanta, GA 30301" +172357,USB-C Charging Cable,1,11.95,03/27/19 20:26,"928 Wilson St, San Francisco, CA 94016" +172358,USB-C Charging Cable,1,11.95,03/04/19 09:04,"903 Main St, Dallas, TX 75001" +172359,Bose SoundSport Headphones,1,99.99,03/08/19 21:21,"510 Maple St, Seattle, WA 98101" +172360,27in FHD Monitor,1,149.99,03/02/19 11:17,"33 1st St, San Francisco, CA 94016" +172361,34in Ultrawide Monitor,1,379.99,03/12/19 11:46,"166 7th St, New York City, NY 10001" +172362,Apple Airpods Headphones,1,150.0,03/23/19 18:45,"565 Ridge St, Austin, TX 73301" +172363,USB-C Charging Cable,1,11.95,03/11/19 18:36,"772 Lake St, New York City, NY 10001" +172364,AAA Batteries (4-pack),1,2.99,03/30/19 18:36,"708 Highland St, San Francisco, CA 94016" +172365,AA Batteries (4-pack),1,3.84,03/02/19 18:51,"580 1st St, Portland, OR 97035" +172366,USB-C Charging Cable,1,11.95,03/31/19 21:56,"703 Adams St, Boston, MA 02215" +172367,Wired Headphones,1,11.99,03/14/19 23:38,"482 River St, Austin, TX 73301" +172368,iPhone,1,700.0,03/27/19 13:23,"561 Hill St, Dallas, TX 75001" +172369,AA Batteries (4-pack),1,3.84,03/23/19 13:15,"152 8th St, San Francisco, CA 94016" +172370,Apple Airpods Headphones,1,150.0,03/14/19 00:49,"69 Maple St, New York City, NY 10001" +172371,Bose SoundSport Headphones,1,99.99,03/15/19 15:55,"428 9th St, Los Angeles, CA 90001" +172372,Apple Airpods Headphones,1,150.0,03/02/19 13:22,"362 Jefferson St, San Francisco, CA 94016" +172373,AAA Batteries (4-pack),2,2.99,03/29/19 20:33,"242 Washington St, New York City, NY 10001" +172374,AA Batteries (4-pack),1,3.84,03/16/19 10:53,"265 Lincoln St, Atlanta, GA 30301" +172375,AA Batteries (4-pack),3,3.84,03/08/19 15:32,"641 Church St, Austin, TX 73301" +172376,AAA Batteries (4-pack),1,2.99,03/27/19 14:58,"56 Adams St, New York City, NY 10001" +172377,27in 4K Gaming Monitor,1,389.99,03/12/19 21:19,"88 Pine St, Los Angeles, CA 90001" +172378,Macbook Pro Laptop,1,1700.0,03/21/19 10:48,"143 Lakeview St, San Francisco, CA 94016" +172379,Lightning Charging Cable,1,14.95,03/17/19 01:22,"507 Lincoln St, Los Angeles, CA 90001" +172380,USB-C Charging Cable,1,11.95,03/22/19 11:21,"132 6th St, Los Angeles, CA 90001" +172381,Lightning Charging Cable,1,14.95,03/05/19 20:46,"862 Adams St, Seattle, WA 98101" +172382,iPhone,1,700.0,03/24/19 13:36,"29 6th St, Seattle, WA 98101" +172383,AAA Batteries (4-pack),1,2.99,03/28/19 21:15,"286 Meadow St, Atlanta, GA 30301" +172384,27in FHD Monitor,1,149.99,03/02/19 19:15,"571 2nd St, Atlanta, GA 30301" +172385,20in Monitor,1,109.99,03/19/19 21:44,"707 Adams St, Atlanta, GA 30301" +172386,Macbook Pro Laptop,1,1700.0,03/19/19 20:42,"807 Elm St, San Francisco, CA 94016" +172387,USB-C Charging Cable,1,11.95,03/25/19 12:41,"9 West St, Portland, OR 97035" +172388,USB-C Charging Cable,2,11.95,03/10/19 08:48,"789 Lincoln St, San Francisco, CA 94016" +172389,27in FHD Monitor,1,149.99,03/18/19 10:37,"504 9th St, Los Angeles, CA 90001" +172390,AAA Batteries (4-pack),2,2.99,03/29/19 21:11,"660 Pine St, New York City, NY 10001" +172391,Lightning Charging Cable,1,14.95,03/26/19 22:44,"200 Dogwood St, San Francisco, CA 94016" +172392,Lightning Charging Cable,1,14.95,03/26/19 21:52,"321 Walnut St, San Francisco, CA 94016" +172393,27in 4K Gaming Monitor,1,389.99,03/02/19 22:47,"716 Cherry St, Austin, TX 73301" +172394,ThinkPad Laptop,1,999.99,03/25/19 13:06,"765 Forest St, Boston, MA 02215" +172395,Google Phone,1,600.0,03/22/19 22:25,"42 Highland St, New York City, NY 10001" +172395,USB-C Charging Cable,1,11.95,03/22/19 22:25,"42 Highland St, New York City, NY 10001" +172396,Lightning Charging Cable,1,14.95,03/16/19 14:30,"165 South St, Seattle, WA 98101" +172397,USB-C Charging Cable,1,11.95,03/03/19 10:20,"506 Cedar St, Boston, MA 02215" +172398,Wired Headphones,1,11.99,03/30/19 12:48,"729 2nd St, Austin, TX 73301" +172399,Wired Headphones,1,11.99,03/29/19 12:50,"652 Hill St, Boston, MA 02215" +172400,Wired Headphones,1,11.99,03/28/19 18:01,"786 Lake St, New York City, NY 10001" +172401,USB-C Charging Cable,1,11.95,03/01/19 10:54,"339 Ridge St, Atlanta, GA 30301" +172402,AAA Batteries (4-pack),1,2.99,03/14/19 09:37,"953 River St, New York City, NY 10001" +172403,Lightning Charging Cable,2,14.95,03/21/19 09:30,"421 River St, San Francisco, CA 94016" +172404,34in Ultrawide Monitor,1,379.99,03/18/19 18:10,"726 River St, Boston, MA 02215" +172405,Google Phone,1,600.0,03/22/19 10:41,"778 Hickory St, Atlanta, GA 30301" +172406,Lightning Charging Cable,2,14.95,03/10/19 15:48,"807 Forest St, Los Angeles, CA 90001" +172407,27in FHD Monitor,1,149.99,03/04/19 21:28,"564 10th St, Los Angeles, CA 90001" +172408,Flatscreen TV,1,300.0,03/05/19 08:14,"638 Main St, San Francisco, CA 94016" +172409,Apple Airpods Headphones,1,150.0,03/07/19 13:31,"733 4th St, Portland, OR 97035" +172410,34in Ultrawide Monitor,1,379.99,03/10/19 21:28,"449 2nd St, Atlanta, GA 30301" +172411,AA Batteries (4-pack),1,3.84,03/07/19 19:55,"619 North St, San Francisco, CA 94016" +172412,Apple Airpods Headphones,1,150.0,03/03/19 14:49,"890 Spruce St, San Francisco, CA 94016" +172413,Lightning Charging Cable,1,14.95,03/03/19 08:50,"900 Main St, Atlanta, GA 30301" +172414,AA Batteries (4-pack),1,3.84,03/16/19 06:22,"304 9th St, Portland, OR 97035" +172415,AA Batteries (4-pack),1,3.84,03/24/19 23:35,"118 Cherry St, Seattle, WA 98101" +172416,Lightning Charging Cable,1,14.95,03/09/19 22:45,"779 Ridge St, New York City, NY 10001" +172417,Bose SoundSport Headphones,1,99.99,03/17/19 15:50,"187 4th St, Dallas, TX 75001" +172418,AAA Batteries (4-pack),2,2.99,03/06/19 19:09,"267 12th St, Los Angeles, CA 90001" +172418,USB-C Charging Cable,2,11.95,03/06/19 19:09,"267 12th St, Los Angeles, CA 90001" +172419,Lightning Charging Cable,1,14.95,03/05/19 00:04,"244 Hill St, Los Angeles, CA 90001" +172420,Google Phone,1,600.0,03/17/19 08:00,"305 Dogwood St, San Francisco, CA 94016" +172421,ThinkPad Laptop,1,999.99,03/13/19 22:27,"47 14th St, Boston, MA 02215" +172422,Wired Headphones,1,11.99,03/20/19 13:12,"877 Spruce St, San Francisco, CA 94016" +172422,AAA Batteries (4-pack),2,2.99,03/20/19 13:12,"877 Spruce St, San Francisco, CA 94016" +172423,20in Monitor,1,109.99,03/03/19 20:32,"677 Ridge St, Austin, TX 73301" +172424,AA Batteries (4-pack),1,3.84,03/04/19 11:13,"140 River St, Boston, MA 02215" +172425,Apple Airpods Headphones,1,150.0,03/11/19 19:40,"88 Sunset St, Dallas, TX 75001" +172426,iPhone,1,700.0,03/26/19 19:54,"122 Ridge St, Austin, TX 73301" +172427,27in 4K Gaming Monitor,1,389.99,03/19/19 18:13,"938 Adams St, Portland, ME 04101" +172428,AAA Batteries (4-pack),4,2.99,03/24/19 10:55,"37 Forest St, Boston, MA 02215" +172429,27in 4K Gaming Monitor,1,389.99,03/31/19 12:33,"208 Lincoln St, Atlanta, GA 30301" +172430,AA Batteries (4-pack),2,3.84,03/11/19 07:50,"90 Meadow St, Los Angeles, CA 90001" +172431,AA Batteries (4-pack),1,3.84,03/19/19 18:34,"391 8th St, Atlanta, GA 30301" +172432,34in Ultrawide Monitor,1,379.99,03/02/19 22:45,"103 Lakeview St, Boston, MA 02215" +172433,34in Ultrawide Monitor,1,379.99,03/28/19 09:23,"606 West St, Portland, OR 97035" +172434,Apple Airpods Headphones,1,150.0,03/12/19 13:16,"718 Lincoln St, Seattle, WA 98101" +172435,AA Batteries (4-pack),1,3.84,03/20/19 18:00,"690 13th St, Boston, MA 02215" +172436,Apple Airpods Headphones,1,150.0,03/15/19 19:20,"170 Hill St, Dallas, TX 75001" +172437,Google Phone,1,600.0,03/16/19 13:18,"282 Lincoln St, Dallas, TX 75001" +172438,27in 4K Gaming Monitor,1,389.99,03/15/19 16:33,"541 Church St, Portland, OR 97035" +172439,Google Phone,1,600.0,03/07/19 16:40,"134 14th St, New York City, NY 10001" +172440,Google Phone,1,600.0,03/02/19 10:56,"828 Walnut St, Boston, MA 02215" +172441,Lightning Charging Cable,1,14.95,03/15/19 19:05,"204 Willow St, Atlanta, GA 30301" +172442,Lightning Charging Cable,1,14.95,03/01/19 22:24,"922 Cherry St, Atlanta, GA 30301" +172443,AA Batteries (4-pack),1,3.84,03/16/19 22:24,"898 Elm St, Los Angeles, CA 90001" +172443,27in 4K Gaming Monitor,1,389.99,03/16/19 22:24,"898 Elm St, Los Angeles, CA 90001" +172444,Wired Headphones,1,11.99,03/30/19 15:52,"182 Spruce St, Los Angeles, CA 90001" +172445,Wired Headphones,1,11.99,03/08/19 21:50,"717 7th St, Seattle, WA 98101" +172446,AA Batteries (4-pack),2,3.84,03/29/19 09:11,"179 6th St, San Francisco, CA 94016" +172447,USB-C Charging Cable,1,11.95,03/18/19 13:43,"668 Adams St, Portland, ME 04101" +172448,Lightning Charging Cable,1,14.95,03/12/19 14:33,"759 Lake St, New York City, NY 10001" +172449,AA Batteries (4-pack),1,3.84,03/16/19 11:32,"122 Center St, Atlanta, GA 30301" +172450,Flatscreen TV,1,300.0,03/18/19 15:31,"16 Hill St, Los Angeles, CA 90001" +172451,Bose SoundSport Headphones,1,99.99,03/13/19 00:50,"156 Maple St, Boston, MA 02215" +172452,AA Batteries (4-pack),1,3.84,03/07/19 18:20,"963 Lincoln St, Atlanta, GA 30301" +172453,Bose SoundSport Headphones,1,99.99,03/28/19 16:35,"571 Pine St, San Francisco, CA 94016" +172454,AA Batteries (4-pack),1,3.84,03/16/19 00:31,"523 Hickory St, San Francisco, CA 94016" +172455,USB-C Charging Cable,1,11.95,03/11/19 11:50,"839 Washington St, San Francisco, CA 94016" +172456,AAA Batteries (4-pack),2,2.99,03/11/19 11:35,"204 10th St, San Francisco, CA 94016" +172457,AAA Batteries (4-pack),1,2.99,03/17/19 04:57,"408 Lake St, New York City, NY 10001" +172458,AA Batteries (4-pack),3,3.84,03/27/19 19:32,"247 South St, Seattle, WA 98101" +172459,Apple Airpods Headphones,1,150.0,03/07/19 13:12,"149 Center St, San Francisco, CA 94016" +172460,Lightning Charging Cable,1,14.95,03/07/19 16:29,"963 Washington St, Boston, MA 02215" +172461,Lightning Charging Cable,1,14.95,03/09/19 15:58,"436 Main St, Atlanta, GA 30301" +172462,AA Batteries (4-pack),2,3.84,03/29/19 22:10,"226 Hill St, New York City, NY 10001" +172463,USB-C Charging Cable,1,11.95,03/25/19 07:38,"291 Sunset St, Los Angeles, CA 90001" +172464,27in 4K Gaming Monitor,1,389.99,03/06/19 00:31,"937 Meadow St, San Francisco, CA 94016" +172465,34in Ultrawide Monitor,1,379.99,03/18/19 00:20,"677 Church St, Boston, MA 02215" +172466,USB-C Charging Cable,1,11.95,03/13/19 20:39,"7 Maple St, San Francisco, CA 94016" +172467,Lightning Charging Cable,1,14.95,03/21/19 23:43,"847 Main St, Boston, MA 02215" +172468,Lightning Charging Cable,1,14.95,03/27/19 15:47,"44 Hill St, Portland, ME 04101" +172469,AA Batteries (4-pack),3,3.84,03/18/19 11:55,"506 Maple St, San Francisco, CA 94016" +172470,Lightning Charging Cable,1,14.95,03/09/19 13:01,"858 Park St, San Francisco, CA 94016" +172471,27in 4K Gaming Monitor,1,389.99,03/14/19 23:56,"837 River St, San Francisco, CA 94016" +172472,USB-C Charging Cable,2,11.95,03/07/19 22:56,"772 Center St, Portland, ME 04101" +172473,27in FHD Monitor,1,149.99,03/20/19 15:46,"422 Church St, Atlanta, GA 30301" +172474,AAA Batteries (4-pack),1,2.99,03/29/19 13:20,"532 Center St, Austin, TX 73301" +172474,Apple Airpods Headphones,1,150.0,03/29/19 13:20,"532 Center St, Austin, TX 73301" +172475,AAA Batteries (4-pack),2,2.99,03/02/19 01:55,"241 Willow St, San Francisco, CA 94016" +172476,AAA Batteries (4-pack),2,2.99,03/11/19 11:31,"693 Jefferson St, New York City, NY 10001" +172477,iPhone,1,700.0,03/08/19 11:53,"778 12th St, San Francisco, CA 94016" +172478,iPhone,1,700.0,03/19/19 19:16,"528 Forest St, New York City, NY 10001" +172478,Lightning Charging Cable,1,14.95,03/19/19 19:16,"528 Forest St, New York City, NY 10001" +172479,Apple Airpods Headphones,1,150.0,03/06/19 14:07,"137 Pine St, Los Angeles, CA 90001" +172480,iPhone,1,700.0,03/05/19 14:01,"807 Wilson St, Boston, MA 02215" +172481,34in Ultrawide Monitor,1,379.99,03/15/19 18:34,"568 Adams St, San Francisco, CA 94016" +172482,27in FHD Monitor,1,149.99,03/22/19 07:12,"154 13th St, San Francisco, CA 94016" +172483,Lightning Charging Cable,1,14.95,03/09/19 22:10,"293 Center St, Boston, MA 02215" +172484,USB-C Charging Cable,1,11.95,03/03/19 22:23,"850 Cherry St, New York City, NY 10001" +172485,27in 4K Gaming Monitor,1,389.99,03/27/19 14:15,"375 Willow St, San Francisco, CA 94016" +172486,Google Phone,1,600.0,03/08/19 13:41,"458 Chestnut St, Boston, MA 02215" +172486,USB-C Charging Cable,1,11.95,03/08/19 13:41,"458 Chestnut St, Boston, MA 02215" +172487,Macbook Pro Laptop,1,1700.0,03/02/19 16:45,"773 Park St, Austin, TX 73301" +172488,AA Batteries (4-pack),1,3.84,03/26/19 16:31,"199 Washington St, Seattle, WA 98101" +172489,Apple Airpods Headphones,1,150.0,03/18/19 15:05,"307 Meadow St, Atlanta, GA 30301" +172490,AA Batteries (4-pack),1,3.84,03/09/19 18:33,"740 1st St, Atlanta, GA 30301" +172491,AAA Batteries (4-pack),1,2.99,03/30/19 10:48,"240 10th St, New York City, NY 10001" +172492,Lightning Charging Cable,1,14.95,03/27/19 22:05,"164 11th St, New York City, NY 10001" +172493,AA Batteries (4-pack),1,3.84,03/15/19 20:27,"544 South St, Atlanta, GA 30301" +172494,Wired Headphones,2,11.99,03/22/19 10:13,"987 4th St, Seattle, WA 98101" +172495,Lightning Charging Cable,1,14.95,03/07/19 00:06,"805 1st St, San Francisco, CA 94016" +172496,USB-C Charging Cable,1,11.95,03/27/19 08:53,"7 Washington St, San Francisco, CA 94016" +172497,AAA Batteries (4-pack),1,2.99,03/26/19 13:45,"603 West St, Atlanta, GA 30301" +172498,27in 4K Gaming Monitor,1,389.99,03/14/19 21:41,"400 Center St, San Francisco, CA 94016" +172499,iPhone,1,700.0,03/08/19 18:59,"878 Madison St, Boston, MA 02215" +172500,34in Ultrawide Monitor,1,379.99,03/09/19 01:08,"923 7th St, San Francisco, CA 94016" +172501,Wired Headphones,1,11.99,03/21/19 15:35,"100 Dogwood St, New York City, NY 10001" +172502,AA Batteries (4-pack),1,3.84,03/06/19 12:32,"635 10th St, Seattle, WA 98101" +172503,AAA Batteries (4-pack),2,2.99,03/24/19 12:09,"472 River St, Seattle, WA 98101" +172504,AAA Batteries (4-pack),3,2.99,03/23/19 21:03,"2 Washington St, Los Angeles, CA 90001" +172505,34in Ultrawide Monitor,1,379.99,03/04/19 22:44,"847 12th St, San Francisco, CA 94016" +172506,Apple Airpods Headphones,1,150.0,03/22/19 16:24,"347 Main St, San Francisco, CA 94016" +172507,Bose SoundSport Headphones,1,99.99,03/20/19 20:28,"101 Adams St, Dallas, TX 75001" +172508,Wired Headphones,1,11.99,03/09/19 14:49,"717 Dogwood St, San Francisco, CA 94016" +172509,USB-C Charging Cable,1,11.95,03/11/19 17:48,"716 Lake St, Los Angeles, CA 90001" +172510,Apple Airpods Headphones,1,150.0,03/12/19 20:34,"38 12th St, Los Angeles, CA 90001" +172511,34in Ultrawide Monitor,1,379.99,03/25/19 23:38,"893 Meadow St, San Francisco, CA 94016" +172512,Apple Airpods Headphones,1,150.0,03/14/19 20:18,"626 Park St, Portland, OR 97035" +172513,Apple Airpods Headphones,1,150.0,03/01/19 09:33,"120 Elm St, Los Angeles, CA 90001" +172514,Lightning Charging Cable,1,14.95,03/10/19 09:05,"362 1st St, Seattle, WA 98101" +172515,Bose SoundSport Headphones,1,99.99,03/08/19 22:11,"499 Washington St, San Francisco, CA 94016" +172516,AAA Batteries (4-pack),1,2.99,03/28/19 10:37,"176 Dogwood St, San Francisco, CA 94016" +172517,AA Batteries (4-pack),2,3.84,03/01/19 17:51,"83 River St, Boston, MA 02215" +172518,Wired Headphones,1,11.99,03/27/19 22:46,"909 Pine St, San Francisco, CA 94016" +172519,USB-C Charging Cable,1,11.95,03/06/19 17:06,"542 Lincoln St, Los Angeles, CA 90001" +172520,Wired Headphones,1,11.99,03/03/19 12:31,"77 Church St, Seattle, WA 98101" +172521,USB-C Charging Cable,1,11.95,03/20/19 06:49,"720 Lincoln St, Seattle, WA 98101" +172522,Lightning Charging Cable,1,14.95,03/13/19 19:26,"300 6th St, San Francisco, CA 94016" +172523,Apple Airpods Headphones,1,150.0,03/26/19 18:27,"52 9th St, Austin, TX 73301" +172524,Apple Airpods Headphones,1,150.0,03/08/19 19:14,"4 13th St, Atlanta, GA 30301" +172525,Lightning Charging Cable,1,14.95,03/30/19 20:19,"374 Cherry St, San Francisco, CA 94016" +172526,Apple Airpods Headphones,1,150.0,03/26/19 17:02,"557 Forest St, New York City, NY 10001" +172527,Lightning Charging Cable,1,14.95,03/03/19 21:14,"372 5th St, San Francisco, CA 94016" +172528,Wired Headphones,1,11.99,03/01/19 13:17,"183 Hickory St, Dallas, TX 75001" +172529,AA Batteries (4-pack),2,3.84,03/29/19 07:53,"720 Chestnut St, Dallas, TX 75001" +172530,Wired Headphones,1,11.99,03/05/19 21:56,"319 Lake St, New York City, NY 10001" +172531,34in Ultrawide Monitor,1,379.99,03/08/19 20:26,"871 Cherry St, Boston, MA 02215" +172532,Lightning Charging Cable,1,14.95,03/11/19 10:49,"465 North St, San Francisco, CA 94016" +172533,Flatscreen TV,1,300.0,03/10/19 14:12,"143 9th St, San Francisco, CA 94016" +172534,Wired Headphones,1,11.99,03/06/19 16:46,"264 Sunset St, Atlanta, GA 30301" +172534,20in Monitor,1,109.99,03/06/19 16:46,"264 Sunset St, Atlanta, GA 30301" +172535,USB-C Charging Cable,1,11.95,03/24/19 17:02,"733 Center St, San Francisco, CA 94016" +172536,AA Batteries (4-pack),1,3.84,03/24/19 18:17,"599 South St, San Francisco, CA 94016" +172537,Google Phone,1,600.0,03/04/19 01:13,"311 2nd St, Boston, MA 02215" +172538,Macbook Pro Laptop,1,1700.0,03/17/19 16:42,"894 Hickory St, Atlanta, GA 30301" +172539,Bose SoundSport Headphones,1,99.99,03/05/19 12:30,"565 Highland St, Portland, OR 97035" +172540,Bose SoundSport Headphones,1,99.99,03/08/19 01:31,"564 Walnut St, New York City, NY 10001" +172541,AAA Batteries (4-pack),1,2.99,03/28/19 15:33,"848 1st St, San Francisco, CA 94016" +172542,AAA Batteries (4-pack),1,2.99,03/10/19 19:58,"186 5th St, Los Angeles, CA 90001" +172543,Lightning Charging Cable,1,14.95,03/14/19 17:14,"834 River St, Austin, TX 73301" +172544,AAA Batteries (4-pack),1,2.99,03/16/19 19:27,"81 Dogwood St, Los Angeles, CA 90001" +172545,27in 4K Gaming Monitor,1,389.99,03/13/19 18:55,"559 2nd St, San Francisco, CA 94016" +172546,27in FHD Monitor,1,149.99,03/28/19 18:37,"265 Lake St, San Francisco, CA 94016" +172547,USB-C Charging Cable,1,11.95,03/02/19 12:22,"12 2nd St, New York City, NY 10001" +172548,USB-C Charging Cable,1,11.95,03/07/19 20:28,"618 Jefferson St, Austin, TX 73301" +172549,AA Batteries (4-pack),1,3.84,03/21/19 22:25,"191 Park St, Seattle, WA 98101" +172550,Wired Headphones,1,11.99,03/24/19 17:31,"557 North St, New York City, NY 10001" +172551,USB-C Charging Cable,1,11.95,03/30/19 08:40,"229 Jefferson St, Boston, MA 02215" +172552,27in FHD Monitor,1,149.99,03/09/19 18:14,"854 South St, Atlanta, GA 30301" +172552,Wired Headphones,1,11.99,03/09/19 18:14,"854 South St, Atlanta, GA 30301" +172553,Wired Headphones,1,11.99,03/30/19 11:27,"775 Cedar St, Dallas, TX 75001" +172554,iPhone,1,700.0,03/06/19 01:49,"416 Madison St, New York City, NY 10001" +172555,Wired Headphones,1,11.99,03/18/19 09:05,"773 Lakeview St, Atlanta, GA 30301" +172556,AA Batteries (4-pack),1,3.84,03/11/19 23:18,"151 10th St, San Francisco, CA 94016" +172557,Bose SoundSport Headphones,1,99.99,03/29/19 20:59,"344 Jefferson St, San Francisco, CA 94016" +172558,Google Phone,1,600.0,03/22/19 16:37,"101 Lincoln St, Boston, MA 02215" +172559,27in FHD Monitor,1,149.99,03/24/19 10:27,"223 9th St, Los Angeles, CA 90001" +172560,27in FHD Monitor,1,149.99,03/01/19 13:44,"257 North St, Boston, MA 02215" +172561,Bose SoundSport Headphones,1,99.99,03/07/19 21:58,"392 Wilson St, San Francisco, CA 94016" +172562,AAA Batteries (4-pack),2,2.99,03/01/19 14:40,"767 Elm St, New York City, NY 10001" +172563,27in FHD Monitor,1,149.99,03/01/19 12:05,"812 Park St, Los Angeles, CA 90001" +172564,AAA Batteries (4-pack),1,2.99,03/14/19 20:44,"997 Forest St, Boston, MA 02215" +172565,Macbook Pro Laptop,1,1700.0,03/22/19 19:44,"510 5th St, Seattle, WA 98101" +172566,AA Batteries (4-pack),1,3.84,03/14/19 12:59,"991 Highland St, San Francisco, CA 94016" +172567,Bose SoundSport Headphones,1,99.99,03/24/19 16:30,"1 4th St, Portland, ME 04101" +172568,34in Ultrawide Monitor,1,379.99,03/20/19 14:07,"734 6th St, San Francisco, CA 94016" +172569,Wired Headphones,1,11.99,03/30/19 18:34,"182 Spruce St, New York City, NY 10001" +172570,USB-C Charging Cable,1,11.95,03/15/19 18:20,"239 Cherry St, San Francisco, CA 94016" +172571,Lightning Charging Cable,1,14.95,03/10/19 20:50,"55 North St, Atlanta, GA 30301" +172572,AAA Batteries (4-pack),1,2.99,03/22/19 20:52,"53 Jackson St, Los Angeles, CA 90001" +172573,USB-C Charging Cable,1,11.95,03/27/19 16:29,"244 Ridge St, Austin, TX 73301" +172574,Lightning Charging Cable,1,14.95,03/10/19 17:22,"971 Madison St, Los Angeles, CA 90001" +172575,USB-C Charging Cable,1,11.95,03/17/19 11:12,"439 Hill St, Los Angeles, CA 90001" +172576,Bose SoundSport Headphones,1,99.99,03/29/19 13:33,"981 Ridge St, New York City, NY 10001" +172577,Macbook Pro Laptop,1,1700.0,03/03/19 00:23,"375 2nd St, Los Angeles, CA 90001" +172578,AA Batteries (4-pack),1,3.84,03/17/19 12:19,"497 7th St, Los Angeles, CA 90001" +172579,AA Batteries (4-pack),2,3.84,03/15/19 18:25,"171 Elm St, Boston, MA 02215" +172580,Apple Airpods Headphones,1,150.0,03/05/19 14:44,"856 Hill St, San Francisco, CA 94016" +172581,USB-C Charging Cable,1,11.95,03/27/19 11:38,"915 14th St, New York City, NY 10001" +172582,USB-C Charging Cable,1,11.95,03/06/19 10:34,"854 South St, Los Angeles, CA 90001" +172583,Lightning Charging Cable,1,14.95,03/15/19 13:17,"17 Lake St, Boston, MA 02215" +172584,20in Monitor,1,109.99,03/09/19 05:51,"177 6th St, New York City, NY 10001" +172585,Bose SoundSport Headphones,1,99.99,03/11/19 14:54,"595 Sunset St, Seattle, WA 98101" +172586,Wired Headphones,1,11.99,03/31/19 14:32,"373 11th St, Portland, OR 97035" +172587,Wired Headphones,1,11.99,03/01/19 10:12,"962 Elm St, San Francisco, CA 94016" +172588,AA Batteries (4-pack),3,3.84,03/15/19 21:56,"849 Walnut St, Dallas, TX 75001" +172589,USB-C Charging Cable,1,11.95,03/03/19 19:42,"194 Church St, San Francisco, CA 94016" +172590,USB-C Charging Cable,1,11.95,03/07/19 12:11,"290 Wilson St, San Francisco, CA 94016" +172591,27in FHD Monitor,1,149.99,03/30/19 00:17,"978 5th St, New York City, NY 10001" +172592,AA Batteries (4-pack),2,3.84,03/06/19 18:05,"613 Johnson St, Seattle, WA 98101" +172593,AA Batteries (4-pack),2,3.84,03/04/19 13:17,"197 Hill St, San Francisco, CA 94016" +172594,20in Monitor,1,109.99,03/30/19 19:02,"738 4th St, Boston, MA 02215" +172595,Lightning Charging Cable,1,14.95,03/29/19 15:01,"83 9th St, Atlanta, GA 30301" +172596,USB-C Charging Cable,1,11.95,03/08/19 12:32,"963 Spruce St, Los Angeles, CA 90001" +172597,Flatscreen TV,1,300.0,03/28/19 23:55,"450 Elm St, New York City, NY 10001" +172598,USB-C Charging Cable,1,11.95,03/23/19 23:33,"838 Meadow St, New York City, NY 10001" +172599,Wired Headphones,1,11.99,03/25/19 20:39,"545 Spruce St, Los Angeles, CA 90001" +172600,USB-C Charging Cable,1,11.95,03/03/19 11:14,"704 10th St, Seattle, WA 98101" +172601,AAA Batteries (4-pack),1,2.99,03/17/19 17:20,"615 Park St, Boston, MA 02215" +172601,27in FHD Monitor,1,149.99,03/17/19 17:20,"615 Park St, Boston, MA 02215" +172602,AAA Batteries (4-pack),1,2.99,03/17/19 22:03,"297 West St, New York City, NY 10001" +172603,ThinkPad Laptop,1,999.99,03/17/19 07:00,"373 Lake St, Los Angeles, CA 90001" +172604,USB-C Charging Cable,1,11.95,03/24/19 05:32,"93 Chestnut St, Los Angeles, CA 90001" +172605,AA Batteries (4-pack),1,3.84,03/04/19 07:59,"694 7th St, Boston, MA 02215" +172606,Apple Airpods Headphones,1,150.0,03/14/19 07:07,"712 10th St, Dallas, TX 75001" +172607,Lightning Charging Cable,1,14.95,03/11/19 08:20,"462 10th St, Los Angeles, CA 90001" +172608,Bose SoundSport Headphones,1,99.99,03/02/19 13:48,"581 10th St, Los Angeles, CA 90001" +172609,Apple Airpods Headphones,1,150.0,03/16/19 15:04,"432 11th St, San Francisco, CA 94016" +172610,Flatscreen TV,1,300.0,03/27/19 23:22,"436 Madison St, Atlanta, GA 30301" +172611,Apple Airpods Headphones,1,150.0,03/31/19 19:10,"77 Hill St, San Francisco, CA 94016" +172612,20in Monitor,1,109.99,03/29/19 05:07,"100 Main St, Dallas, TX 75001" +172613,iPhone,1,700.0,03/16/19 18:29,"982 Dogwood St, Portland, OR 97035" +172613,Lightning Charging Cable,1,14.95,03/16/19 18:29,"982 Dogwood St, Portland, OR 97035" +172614,AA Batteries (4-pack),1,3.84,03/08/19 09:57,"136 Cherry St, San Francisco, CA 94016" +172615,USB-C Charging Cable,1,11.95,03/26/19 11:34,"593 10th St, Boston, MA 02215" +172616,Wired Headphones,1,11.99,03/02/19 12:12,"367 Meadow St, San Francisco, CA 94016" +172617,AA Batteries (4-pack),1,3.84,03/04/19 15:33,"922 Center St, Los Angeles, CA 90001" +172618,Lightning Charging Cable,1,14.95,03/02/19 17:33,"217 1st St, Los Angeles, CA 90001" +172619,iPhone,1,700.0,03/03/19 14:41,"91 13th St, Boston, MA 02215" +172620,iPhone,1,700.0,03/01/19 18:55,"505 Center St, Seattle, WA 98101" +172621,AAA Batteries (4-pack),2,2.99,03/17/19 17:34,"556 Center St, Austin, TX 73301" +172622,USB-C Charging Cable,1,11.95,03/13/19 16:34,"284 Cedar St, San Francisco, CA 94016" +172623,27in 4K Gaming Monitor,1,389.99,03/31/19 18:41,"748 Walnut St, Portland, OR 97035" +172624,Lightning Charging Cable,1,14.95,03/02/19 07:58,"733 South St, Los Angeles, CA 90001" +172625,34in Ultrawide Monitor,1,379.99,03/22/19 13:02,"212 Hill St, Dallas, TX 75001" +172626,Apple Airpods Headphones,1,150.0,03/23/19 15:54,"284 Walnut St, Los Angeles, CA 90001" +172627,AA Batteries (4-pack),1,3.84,03/12/19 10:29,"271 Willow St, Los Angeles, CA 90001" +172628,AA Batteries (4-pack),1,3.84,03/23/19 14:39,"244 Chestnut St, San Francisco, CA 94016" +172629,Bose SoundSport Headphones,1,99.99,03/21/19 06:47,"613 Lake St, Los Angeles, CA 90001" +172630,USB-C Charging Cable,1,11.95,03/30/19 22:11,"117 Walnut St, Los Angeles, CA 90001" +172631,AAA Batteries (4-pack),4,2.99,03/18/19 13:48,"503 Hill St, San Francisco, CA 94016" +172632,AA Batteries (4-pack),1,3.84,03/11/19 06:41,"551 Center St, Atlanta, GA 30301" +172632,ThinkPad Laptop,1,999.99,03/11/19 06:41,"551 Center St, Atlanta, GA 30301" +172633,Lightning Charging Cable,1,14.95,03/11/19 10:27,"732 14th St, Dallas, TX 75001" +172634,AA Batteries (4-pack),1,3.84,03/27/19 20:58,"95 Lake St, New York City, NY 10001" +172635,USB-C Charging Cable,1,11.95,03/16/19 13:15,"327 Jefferson St, San Francisco, CA 94016" +172636,Wired Headphones,1,11.99,03/03/19 16:43,"912 Sunset St, New York City, NY 10001" +172637,AAA Batteries (4-pack),1,2.99,03/30/19 19:29,"390 7th St, New York City, NY 10001" +172638,Bose SoundSport Headphones,1,99.99,03/09/19 20:15,"129 Maple St, Dallas, TX 75001" +172639,Bose SoundSport Headphones,1,99.99,03/09/19 11:49,"779 Johnson St, Portland, ME 04101" +172640,AAA Batteries (4-pack),1,2.99,03/25/19 14:46,"755 12th St, New York City, NY 10001" +172641,Wired Headphones,1,11.99,03/13/19 12:49,"223 Spruce St, Dallas, TX 75001" +172642,Apple Airpods Headphones,1,150.0,03/31/19 01:12,"384 Johnson St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +172643,34in Ultrawide Monitor,1,379.99,03/24/19 11:55,"512 Meadow St, Atlanta, GA 30301" +172644,27in FHD Monitor,1,149.99,03/21/19 08:47,"690 West St, Seattle, WA 98101" +172645,Lightning Charging Cable,2,14.95,03/16/19 19:11,"52 Willow St, San Francisco, CA 94016" +172646,Wired Headphones,1,11.99,03/02/19 20:27,"836 South St, Seattle, WA 98101" +172647,20in Monitor,1,109.99,03/20/19 17:18,"350 9th St, San Francisco, CA 94016" +172648,Wired Headphones,1,11.99,03/31/19 09:26,"830 5th St, San Francisco, CA 94016" +172649,Apple Airpods Headphones,1,150,03/10/19 09:14,"51 Adams St, Los Angeles, CA 90001" +172650,AA Batteries (4-pack),1,3.84,03/26/19 22:32,"363 6th St, Austin, TX 73301" +172651,AAA Batteries (4-pack),2,2.99,03/14/19 00:34,"417 6th St, Boston, MA 02215" +172652,Bose SoundSport Headphones,1,99.99,03/13/19 09:49,"96 Sunset St, Los Angeles, CA 90001" +172653,Lightning Charging Cable,1,14.95,03/26/19 06:20,"345 1st St, San Francisco, CA 94016" +172654,Wired Headphones,1,11.99,03/25/19 16:45,"760 Hickory St, San Francisco, CA 94016" +172655,Macbook Pro Laptop,1,1700,03/29/19 19:36,"649 Sunset St, San Francisco, CA 94016" +172656,AAA Batteries (4-pack),1,2.99,03/30/19 16:22,"751 Sunset St, Austin, TX 73301" +172657,AA Batteries (4-pack),1,3.84,03/19/19 20:35,"858 Johnson St, Boston, MA 02215" +172657,Lightning Charging Cable,1,14.95,03/19/19 20:35,"858 Johnson St, Boston, MA 02215" +172658,AA Batteries (4-pack),1,3.84,03/05/19 23:20,"372 Madison St, San Francisco, CA 94016" +172659,USB-C Charging Cable,1,11.95,03/01/19 10:17,"639 6th St, Portland, OR 97035" +172660,iPhone,1,700,03/03/19 23:10,"172 Wilson St, San Francisco, CA 94016" +172661,27in FHD Monitor,1,149.99,03/15/19 04:59,"666 Dogwood St, Seattle, WA 98101" +172662,AAA Batteries (4-pack),1,2.99,03/01/19 07:34,"893 Ridge St, Boston, MA 02215" +172663,27in FHD Monitor,1,149.99,03/14/19 19:10,"845 Forest St, San Francisco, CA 94016" +172664,Apple Airpods Headphones,1,150,03/20/19 19:53,"549 Lakeview St, Boston, MA 02215" +172665,20in Monitor,1,109.99,03/01/19 14:26,"754 Church St, Atlanta, GA 30301" +172666,USB-C Charging Cable,1,11.95,03/17/19 13:14,"328 1st St, San Francisco, CA 94016" +172667,Google Phone,1,600,03/27/19 12:03,"357 Elm St, Portland, ME 04101" +172668,USB-C Charging Cable,1,11.95,03/03/19 20:11,"368 Jefferson St, Los Angeles, CA 90001" +172669,Macbook Pro Laptop,1,1700,03/07/19 13:06,"581 Park St, New York City, NY 10001" +172670,AAA Batteries (4-pack),1,2.99,03/19/19 20:48,"256 2nd St, Portland, OR 97035" +172671,Bose SoundSport Headphones,1,99.99,03/18/19 23:42,"395 Pine St, Atlanta, GA 30301" +172672,ThinkPad Laptop,1,999.99,03/06/19 10:30,"315 Maple St, Atlanta, GA 30301" +172673,Wired Headphones,1,11.99,03/14/19 10:25,"569 Madison St, Portland, OR 97035" +172673,AA Batteries (4-pack),2,3.84,03/14/19 10:25,"569 Madison St, Portland, OR 97035" +172674,AAA Batteries (4-pack),5,2.99,03/29/19 10:12,"799 Chestnut St, Los Angeles, CA 90001" +172675,Lightning Charging Cable,1,14.95,03/09/19 20:31,"478 13th St, Austin, TX 73301" +172676,Lightning Charging Cable,1,14.95,03/23/19 17:58,"835 14th St, Los Angeles, CA 90001" +172677,USB-C Charging Cable,1,11.95,03/18/19 13:20,"490 11th St, Los Angeles, CA 90001" +172678,iPhone,1,700,03/18/19 13:36,"390 11th St, New York City, NY 10001" +172678,Lightning Charging Cable,1,14.95,03/18/19 13:36,"390 11th St, New York City, NY 10001" +172679,Bose SoundSport Headphones,1,99.99,03/28/19 09:36,"102 10th St, New York City, NY 10001" +172680,27in 4K Gaming Monitor,1,389.99,03/13/19 14:40,"719 Wilson St, San Francisco, CA 94016" +172681,Wired Headphones,1,11.99,03/11/19 16:56,"363 Cherry St, Dallas, TX 75001" +172682,Apple Airpods Headphones,1,150,03/16/19 17:22,"903 Lincoln St, San Francisco, CA 94016" +172683,Lightning Charging Cable,1,14.95,03/20/19 11:19,"584 Hill St, Austin, TX 73301" +172684,AA Batteries (4-pack),2,3.84,03/28/19 17:27,"261 Forest St, Dallas, TX 75001" +172685,Wired Headphones,1,11.99,03/28/19 18:51,"807 9th St, San Francisco, CA 94016" +172686,USB-C Charging Cable,1,11.95,03/27/19 11:18,"553 Chestnut St, Dallas, TX 75001" +172687,Flatscreen TV,1,300,03/17/19 21:18,"75 Highland St, New York City, NY 10001" +172688,27in FHD Monitor,1,149.99,03/25/19 09:28,"861 Pine St, Dallas, TX 75001" +172689,Apple Airpods Headphones,1,150,03/01/19 10:12,"527 Wilson St, Los Angeles, CA 90001" +172690,Lightning Charging Cable,1,14.95,03/18/19 09:44,"36 9th St, San Francisco, CA 94016" +172691,AA Batteries (4-pack),1,3.84,03/23/19 18:39,"964 Church St, Portland, OR 97035" +172692,Flatscreen TV,1,300,03/08/19 17:03,"406 Cherry St, Los Angeles, CA 90001" +172693,Lightning Charging Cable,2,14.95,03/29/19 11:42,"606 Cherry St, Portland, OR 97035" +172694,Flatscreen TV,1,300,03/10/19 16:58,"294 Hill St, New York City, NY 10001" +172695,Wired Headphones,1,11.99,03/18/19 20:36,"946 Lakeview St, San Francisco, CA 94016" +172696,Flatscreen TV,1,300,03/26/19 13:45,"204 12th St, San Francisco, CA 94016" +172697,Flatscreen TV,1,300,03/20/19 14:18,"51 5th St, Atlanta, GA 30301" +172698,AAA Batteries (4-pack),1,2.99,03/22/19 19:21,"184 Chestnut St, Los Angeles, CA 90001" +172699,iPhone,1,700,03/12/19 19:04,"562 Dogwood St, Los Angeles, CA 90001" +172700,AAA Batteries (4-pack),1,2.99,03/20/19 16:19,"435 14th St, San Francisco, CA 94016" +172701,Wired Headphones,1,11.99,03/02/19 22:42,"865 Jackson St, San Francisco, CA 94016" +172702,USB-C Charging Cable,1,11.95,03/23/19 12:25,"713 1st St, New York City, NY 10001" +172703,Wired Headphones,1,11.99,03/27/19 17:18,"554 5th St, Dallas, TX 75001" +172704,Bose SoundSport Headphones,1,99.99,03/08/19 19:53,"608 10th St, Dallas, TX 75001" +172705,34in Ultrawide Monitor,1,379.99,03/18/19 20:39,"386 Wilson St, San Francisco, CA 94016" +172706,Bose SoundSport Headphones,1,99.99,03/03/19 19:29,"893 4th St, Atlanta, GA 30301" +172707,Wired Headphones,1,11.99,03/22/19 13:44,"994 13th St, Dallas, TX 75001" +172708,AAA Batteries (4-pack),2,2.99,03/22/19 23:33,"292 Adams St, New York City, NY 10001" +172709,AAA Batteries (4-pack),2,2.99,03/10/19 17:05,"793 6th St, San Francisco, CA 94016" +172710,iPhone,1,700,03/12/19 16:38,"283 Dogwood St, Atlanta, GA 30301" +172710,Lightning Charging Cable,1,14.95,03/12/19 16:38,"283 Dogwood St, Atlanta, GA 30301" +172711,34in Ultrawide Monitor,1,379.99,03/22/19 22:35,"239 Center St, San Francisco, CA 94016" +172712,Lightning Charging Cable,1,14.95,03/24/19 13:03,"263 Washington St, San Francisco, CA 94016" +172713,Lightning Charging Cable,1,14.95,03/21/19 18:56,"107 North St, San Francisco, CA 94016" +172714,27in 4K Gaming Monitor,1,389.99,03/19/19 14:36,"823 Lake St, Los Angeles, CA 90001" +172715,AA Batteries (4-pack),1,3.84,03/13/19 19:49,"477 5th St, Dallas, TX 75001" +172716,USB-C Charging Cable,1,11.95,03/22/19 08:27,"801 North St, New York City, NY 10001" +172717,AA Batteries (4-pack),1,3.84,03/14/19 11:34,"769 Jackson St, Seattle, WA 98101" +172718,AA Batteries (4-pack),1,3.84,03/03/19 15:39,"876 4th St, Seattle, WA 98101" +172719,AAA Batteries (4-pack),1,2.99,03/23/19 13:01,"268 9th St, Atlanta, GA 30301" +172720,Wired Headphones,1,11.99,03/16/19 19:37,"711 Forest St, Atlanta, GA 30301" +,,,,, +172721,20in Monitor,1,109.99,03/08/19 13:53,"800 2nd St, New York City, NY 10001" +172722,Apple Airpods Headphones,1,150,03/13/19 10:27,"498 Adams St, Dallas, TX 75001" +172723,Bose SoundSport Headphones,1,99.99,03/25/19 12:38,"968 Sunset St, Los Angeles, CA 90001" +172724,27in FHD Monitor,1,149.99,03/18/19 21:33,"563 Hill St, Boston, MA 02215" +172725,Flatscreen TV,1,300,03/14/19 20:45,"328 Forest St, San Francisco, CA 94016" +172726,Apple Airpods Headphones,1,150,03/06/19 13:08,"141 Jefferson St, Atlanta, GA 30301" +172727,AA Batteries (4-pack),2,3.84,03/21/19 12:03,"519 Spruce St, San Francisco, CA 94016" +172728,USB-C Charging Cable,1,11.95,03/24/19 16:24,"388 Hickory St, Portland, OR 97035" +172729,USB-C Charging Cable,1,11.95,03/27/19 22:41,"81 Lincoln St, Austin, TX 73301" +172730,Flatscreen TV,1,300,03/03/19 12:22,"513 Dogwood St, Atlanta, GA 30301" +172731,USB-C Charging Cable,1,11.95,03/12/19 10:50,"328 Lakeview St, San Francisco, CA 94016" +172732,USB-C Charging Cable,1,11.95,03/19/19 08:57,"450 5th St, San Francisco, CA 94016" +172733,Bose SoundSport Headphones,1,99.99,03/14/19 19:41,"336 7th St, Atlanta, GA 30301" +172734,Lightning Charging Cable,1,14.95,03/16/19 19:29,"284 Lake St, Atlanta, GA 30301" +172735,Apple Airpods Headphones,1,150,03/11/19 13:43,"671 Walnut St, New York City, NY 10001" +172736,27in FHD Monitor,1,149.99,03/13/19 21:33,"575 Hill St, New York City, NY 10001" +172737,27in 4K Gaming Monitor,1,389.99,03/22/19 21:19,"133 Willow St, New York City, NY 10001" +172738,Wired Headphones,1,11.99,03/20/19 07:58,"36 Park St, Los Angeles, CA 90001" +172739,Lightning Charging Cable,1,14.95,03/10/19 11:25,"757 Wilson St, San Francisco, CA 94016" +172740,AAA Batteries (4-pack),2,2.99,03/08/19 15:31,"77 Cedar St, New York City, NY 10001" +172741,Apple Airpods Headphones,1,150,03/10/19 21:24,"10 12th St, San Francisco, CA 94016" +172742,Bose SoundSport Headphones,1,99.99,03/19/19 09:04,"726 Cherry St, Boston, MA 02215" +172743,20in Monitor,1,109.99,03/24/19 11:27,"610 Washington St, Seattle, WA 98101" +172744,USB-C Charging Cable,2,11.95,03/25/19 18:33,"313 Chestnut St, San Francisco, CA 94016" +172745,Bose SoundSport Headphones,1,99.99,03/23/19 14:53,"163 6th St, Seattle, WA 98101" +172746,AAA Batteries (4-pack),2,2.99,03/31/19 22:17,"101 7th St, Dallas, TX 75001" +172747,USB-C Charging Cable,1,11.95,03/05/19 19:23,"881 Lake St, New York City, NY 10001" +172748,Bose SoundSport Headphones,1,99.99,03/13/19 09:00,"867 Walnut St, Boston, MA 02215" +172749,Wired Headphones,1,11.99,03/13/19 16:50,"516 River St, San Francisco, CA 94016" +172750,AAA Batteries (4-pack),1,2.99,03/03/19 12:24,"223 River St, New York City, NY 10001" +172751,USB-C Charging Cable,1,11.95,03/01/19 09:19,"682 Wilson St, San Francisco, CA 94016" +172752,27in FHD Monitor,1,149.99,03/02/19 21:58,"34 5th St, New York City, NY 10001" +172753,iPhone,1,700,03/05/19 11:05,"397 Hill St, San Francisco, CA 94016" +172754,Google Phone,1,600,03/08/19 19:58,"149 9th St, Boston, MA 02215" +172755,AAA Batteries (4-pack),1,2.99,03/25/19 09:33,"918 1st St, Los Angeles, CA 90001" +172756,20in Monitor,1,109.99,03/19/19 10:34,"730 Main St, Boston, MA 02215" +172757,USB-C Charging Cable,1,11.95,03/27/19 19:40,"112 Main St, New York City, NY 10001" +172758,USB-C Charging Cable,1,11.95,03/07/19 09:50,"390 Cherry St, Seattle, WA 98101" +172759,AAA Batteries (4-pack),1,2.99,03/07/19 18:09,"204 Church St, Los Angeles, CA 90001" +172760,Apple Airpods Headphones,1,150,03/11/19 11:39,"196 South St, New York City, NY 10001" +172761,AAA Batteries (4-pack),1,2.99,03/23/19 10:16,"632 Willow St, San Francisco, CA 94016" +172762,AAA Batteries (4-pack),1,2.99,03/05/19 23:32,"3 River St, New York City, NY 10001" +172763,AA Batteries (4-pack),2,3.84,03/14/19 11:19,"449 Center St, Dallas, TX 75001" +172764,AA Batteries (4-pack),3,3.84,03/19/19 17:23,"707 Pine St, Boston, MA 02215" +172765,Bose SoundSport Headphones,1,99.99,03/09/19 00:39,"792 South St, Boston, MA 02215" +172766,Bose SoundSport Headphones,1,99.99,03/08/19 10:37,"658 12th St, Seattle, WA 98101" +172767,Apple Airpods Headphones,1,150,03/02/19 06:38,"43 North St, San Francisco, CA 94016" +172768,Bose SoundSport Headphones,1,99.99,03/12/19 18:38,"770 Adams St, Los Angeles, CA 90001" +172769,Lightning Charging Cable,2,14.95,03/24/19 07:20,"408 Park St, Seattle, WA 98101" +172770,Apple Airpods Headphones,1,150,03/28/19 15:07,"421 Wilson St, Atlanta, GA 30301" +172771,Wired Headphones,2,11.99,03/14/19 17:34,"992 Church St, Boston, MA 02215" +172772,Lightning Charging Cable,1,14.95,03/15/19 22:59,"513 7th St, Los Angeles, CA 90001" +172773,AAA Batteries (4-pack),1,2.99,03/21/19 16:18,"360 Hill St, Boston, MA 02215" +172774,Apple Airpods Headphones,1,150,03/03/19 12:29,"783 North St, Boston, MA 02215" +172775,Wired Headphones,1,11.99,03/06/19 15:09,"591 Washington St, San Francisco, CA 94016" +172776,AAA Batteries (4-pack),1,2.99,03/25/19 17:01,"670 8th St, San Francisco, CA 94016" +172777,Macbook Pro Laptop,1,1700,03/29/19 12:12,"197 Sunset St, Atlanta, GA 30301" +172778,AA Batteries (4-pack),1,3.84,03/29/19 05:28,"132 Elm St, San Francisco, CA 94016" +172779,Wired Headphones,1,11.99,03/02/19 09:12,"799 Jackson St, San Francisco, CA 94016" +172780,Lightning Charging Cable,1,14.95,03/02/19 17:13,"807 14th St, Los Angeles, CA 90001" +172781,iPhone,1,700,03/11/19 09:28,"10 Lakeview St, San Francisco, CA 94016" +172782,AA Batteries (4-pack),1,3.84,03/10/19 22:53,"223 9th St, New York City, NY 10001" +172783,Lightning Charging Cable,1,14.95,03/10/19 12:04,"600 Willow St, Los Angeles, CA 90001" +172784,AA Batteries (4-pack),1,3.84,03/30/19 09:08,"704 Meadow St, San Francisco, CA 94016" +172785,USB-C Charging Cable,1,11.95,03/04/19 12:58,"244 Chestnut St, New York City, NY 10001" +172786,27in 4K Gaming Monitor,1,389.99,03/08/19 22:55,"957 Hickory St, Atlanta, GA 30301" +172787,AAA Batteries (4-pack),1,2.99,03/04/19 15:52,"314 Adams St, Dallas, TX 75001" +172788,20in Monitor,1,109.99,03/03/19 12:16,"410 12th St, San Francisco, CA 94016" +172789,Bose SoundSport Headphones,1,99.99,03/21/19 19:31,"290 14th St, New York City, NY 10001" +172790,AA Batteries (4-pack),1,3.84,03/30/19 19:19,"842 Meadow St, Seattle, WA 98101" +172791,AA Batteries (4-pack),4,3.84,03/22/19 15:22,"478 Madison St, Atlanta, GA 30301" +172792,AAA Batteries (4-pack),1,2.99,03/03/19 12:43,"518 Highland St, Dallas, TX 75001" +172793,Wired Headphones,1,11.99,03/21/19 09:28,"852 12th St, San Francisco, CA 94016" +172794,Bose SoundSport Headphones,1,99.99,03/16/19 20:25,"218 Spruce St, Seattle, WA 98101" +172795,Apple Airpods Headphones,1,150,03/30/19 12:28,"775 Center St, Portland, OR 97035" +172796,Wired Headphones,1,11.99,03/04/19 18:26,"531 1st St, Boston, MA 02215" +172797,Lightning Charging Cable,1,14.95,03/11/19 14:34,"414 2nd St, Los Angeles, CA 90001" +172798,34in Ultrawide Monitor,1,379.99,03/27/19 19:42,"270 Jackson St, Atlanta, GA 30301" +172799,Lightning Charging Cable,1,14.95,03/22/19 12:04,"603 Hill St, Boston, MA 02215" +172800,AAA Batteries (4-pack),1,2.99,03/17/19 08:02,"759 Lakeview St, San Francisco, CA 94016" +172801,27in FHD Monitor,1,149.99,03/03/19 10:27,"380 13th St, Boston, MA 02215" +172802,USB-C Charging Cable,1,11.95,03/24/19 20:18,"297 Adams St, Austin, TX 73301" +172803,AA Batteries (4-pack),1,3.84,03/05/19 05:43,"100 Park St, San Francisco, CA 94016" +172804,iPhone,1,700,03/20/19 14:36,"981 Jefferson St, Boston, MA 02215" +172805,Bose SoundSport Headphones,1,99.99,03/11/19 16:57,"320 2nd St, Austin, TX 73301" +172806,AAA Batteries (4-pack),1,2.99,03/08/19 15:07,"846 Cedar St, Seattle, WA 98101" +172807,AA Batteries (4-pack),2,3.84,03/23/19 11:49,"421 12th St, San Francisco, CA 94016" +172808,Bose SoundSport Headphones,1,99.99,03/29/19 06:13,"703 Elm St, Seattle, WA 98101" +172808,Apple Airpods Headphones,1,150,03/29/19 06:13,"703 Elm St, Seattle, WA 98101" +172809,USB-C Charging Cable,2,11.95,03/13/19 01:21,"799 Adams St, Los Angeles, CA 90001" +172810,Bose SoundSport Headphones,1,99.99,03/05/19 08:04,"127 Meadow St, New York City, NY 10001" +172811,AA Batteries (4-pack),2,3.84,03/29/19 09:28,"590 Maple St, San Francisco, CA 94016" +172812,Wired Headphones,1,11.99,03/01/19 14:27,"578 4th St, San Francisco, CA 94016" +172812,Apple Airpods Headphones,1,150,03/01/19 14:27,"578 4th St, San Francisco, CA 94016" +172813,iPhone,1,700,03/07/19 17:08,"236 8th St, Atlanta, GA 30301" +172814,USB-C Charging Cable,1,11.95,03/27/19 14:10,"821 12th St, New York City, NY 10001" +172815,Apple Airpods Headphones,1,150,03/24/19 22:19,"967 12th St, Boston, MA 02215" +172816,Apple Airpods Headphones,1,150,03/13/19 13:43,"568 Ridge St, San Francisco, CA 94016" +172817,27in 4K Gaming Monitor,1,389.99,03/19/19 17:33,"767 4th St, Seattle, WA 98101" +172818,ThinkPad Laptop,1,999.99,03/01/19 17:55,"224 4th St, San Francisco, CA 94016" +172819,Bose SoundSport Headphones,1,99.99,03/07/19 04:59,"34 Park St, Atlanta, GA 30301" +172820,Wired Headphones,1,11.99,03/30/19 11:26,"556 Main St, Atlanta, GA 30301" +172821,Apple Airpods Headphones,1,150,03/05/19 13:56,"957 5th St, Los Angeles, CA 90001" +172822,34in Ultrawide Monitor,1,379.99,03/21/19 07:32,"547 7th St, Dallas, TX 75001" +172823,20in Monitor,1,109.99,03/23/19 16:03,"858 Washington St, San Francisco, CA 94016" +172824,20in Monitor,1,109.99,03/03/19 15:04,"253 Sunset St, Portland, OR 97035" +172825,Apple Airpods Headphones,1,150,03/12/19 19:03,"570 Jackson St, San Francisco, CA 94016" +172826,Lightning Charging Cable,1,14.95,03/02/19 10:21,"427 Meadow St, Los Angeles, CA 90001" +172827,USB-C Charging Cable,1,11.95,03/05/19 05:48,"78 5th St, San Francisco, CA 94016" +172828,USB-C Charging Cable,1,11.95,03/06/19 11:07,"716 Dogwood St, Portland, ME 04101" +172829,Lightning Charging Cable,2,14.95,03/01/19 12:47,"475 Hill St, San Francisco, CA 94016" +172830,Lightning Charging Cable,1,14.95,03/25/19 08:36,"719 13th St, Dallas, TX 75001" +172831,Lightning Charging Cable,1,14.95,03/13/19 12:32,"259 North St, Los Angeles, CA 90001" +172832,Apple Airpods Headphones,1,150,03/28/19 09:25,"530 North St, Los Angeles, CA 90001" +172833,Lightning Charging Cable,1,14.95,03/22/19 08:11,"728 Johnson St, Seattle, WA 98101" +172834,34in Ultrawide Monitor,1,379.99,03/24/19 17:21,"143 14th St, Atlanta, GA 30301" +172835,USB-C Charging Cable,1,11.95,03/19/19 11:02,"5 Chestnut St, Dallas, TX 75001" +172836,USB-C Charging Cable,1,11.95,03/08/19 19:32,"273 7th St, Boston, MA 02215" +172837,27in FHD Monitor,1,149.99,03/10/19 00:03,"680 Hickory St, Dallas, TX 75001" +172838,Google Phone,1,600,03/11/19 22:04,"399 9th St, Dallas, TX 75001" +172839,Lightning Charging Cable,1,14.95,03/11/19 15:19,"341 South St, Austin, TX 73301" +172840,USB-C Charging Cable,1,11.95,03/22/19 14:11,"114 2nd St, Dallas, TX 75001" +172841,USB-C Charging Cable,1,11.95,03/18/19 13:20,"693 Jefferson St, San Francisco, CA 94016" +172842,AA Batteries (4-pack),1,3.84,03/17/19 09:38,"516 Elm St, New York City, NY 10001" +172843,Macbook Pro Laptop,1,1700,03/26/19 07:39,"251 Walnut St, Portland, OR 97035" +172844,USB-C Charging Cable,1,11.95,03/18/19 13:37,"280 Highland St, Austin, TX 73301" +172845,Bose SoundSport Headphones,1,99.99,03/08/19 18:22,"701 South St, New York City, NY 10001" +172846,AA Batteries (4-pack),1,3.84,03/24/19 17:02,"757 Jefferson St, Portland, OR 97035" +172847,Lightning Charging Cable,1,14.95,03/05/19 11:06,"599 Walnut St, Los Angeles, CA 90001" +172848,27in FHD Monitor,1,149.99,03/05/19 11:10,"332 7th St, San Francisco, CA 94016" +172849,Bose SoundSport Headphones,1,99.99,03/29/19 21:37,"822 8th St, Los Angeles, CA 90001" +172850,Google Phone,1,600,03/05/19 11:28,"167 North St, Atlanta, GA 30301" +172851,AAA Batteries (4-pack),2,2.99,03/26/19 19:51,"968 Lake St, Boston, MA 02215" +172852,USB-C Charging Cable,1,11.95,03/31/19 13:47,"635 Hickory St, San Francisco, CA 94016" +172853,AAA Batteries (4-pack),1,2.99,03/26/19 15:30,"327 Jefferson St, New York City, NY 10001" +172853,AAA Batteries (4-pack),2,2.99,03/26/19 15:30,"327 Jefferson St, New York City, NY 10001" +172854,AA Batteries (4-pack),1,3.84,03/21/19 06:58,"811 Hill St, Atlanta, GA 30301" +172855,Lightning Charging Cable,1,14.95,03/29/19 15:03,"424 Hickory St, Boston, MA 02215" +172856,Wired Headphones,1,11.99,03/10/19 22:40,"459 5th St, Boston, MA 02215" +172857,Wired Headphones,1,11.99,03/31/19 12:38,"576 Pine St, Los Angeles, CA 90001" +172858,Flatscreen TV,1,300,03/08/19 10:50,"238 Lake St, San Francisco, CA 94016" +172859,AAA Batteries (4-pack),1,2.99,03/19/19 10:53,"174 South St, Portland, OR 97035" +172860,Macbook Pro Laptop,1,1700,03/10/19 17:26,"785 13th St, Los Angeles, CA 90001" +172861,AA Batteries (4-pack),1,3.84,03/24/19 06:52,"249 Cedar St, San Francisco, CA 94016" +172862,27in 4K Gaming Monitor,1,389.99,03/12/19 19:42,"250 River St, San Francisco, CA 94016" +172862,Wired Headphones,1,11.99,03/12/19 19:42,"250 River St, San Francisco, CA 94016" +172863,AAA Batteries (4-pack),1,2.99,03/29/19 10:51,"639 Hickory St, Seattle, WA 98101" +172864,34in Ultrawide Monitor,1,379.99,03/23/19 18:18,"142 Washington St, Dallas, TX 75001" +172865,Wired Headphones,1,11.99,03/13/19 14:52,"510 Church St, New York City, NY 10001" +172866,Bose SoundSport Headphones,2,99.99,03/11/19 20:24,"609 Spruce St, Los Angeles, CA 90001" +172867,USB-C Charging Cable,1,11.95,03/13/19 03:08,"610 13th St, New York City, NY 10001" +172868,Lightning Charging Cable,1,14.95,03/11/19 23:21,"881 North St, Seattle, WA 98101" +172869,Apple Airpods Headphones,1,150,03/04/19 19:54,"80 1st St, Los Angeles, CA 90001" +172870,27in FHD Monitor,1,149.99,03/06/19 20:20,"917 Walnut St, Austin, TX 73301" +172870,AA Batteries (4-pack),1,3.84,03/06/19 20:20,"917 Walnut St, Austin, TX 73301" +172871,AAA Batteries (4-pack),1,2.99,03/26/19 00:39,"210 13th St, Boston, MA 02215" +172872,AAA Batteries (4-pack),1,2.99,03/23/19 23:15,"549 Ridge St, San Francisco, CA 94016" +172873,Lightning Charging Cable,2,14.95,03/12/19 07:15,"265 Highland St, Austin, TX 73301" +172874,27in 4K Gaming Monitor,1,389.99,03/02/19 10:53,"961 Washington St, San Francisco, CA 94016" +172875,Wired Headphones,1,11.99,03/07/19 17:53,"135 Cherry St, San Francisco, CA 94016" +172876,Bose SoundSport Headphones,1,99.99,03/21/19 15:40,"921 14th St, Portland, OR 97035" +172877,iPhone,1,700,03/22/19 12:13,"441 12th St, Boston, MA 02215" +172878,USB-C Charging Cable,1,11.95,03/10/19 14:25,"817 9th St, Austin, TX 73301" +172879,Apple Airpods Headphones,1,150,03/17/19 10:14,"898 7th St, Dallas, TX 75001" +172880,iPhone,1,700,03/15/19 20:56,"900 Center St, San Francisco, CA 94016" +172881,Lightning Charging Cable,2,14.95,03/20/19 11:09,"935 11th St, Los Angeles, CA 90001" +172882,Lightning Charging Cable,1,14.95,03/06/19 18:58,"210 Lake St, Los Angeles, CA 90001" +172882,Apple Airpods Headphones,1,150,03/06/19 18:58,"210 Lake St, Los Angeles, CA 90001" +172883,AA Batteries (4-pack),2,3.84,03/21/19 09:30,"715 Hill St, Seattle, WA 98101" +172884,Flatscreen TV,1,300,03/19/19 17:34,"496 Jackson St, San Francisco, CA 94016" +172885,Bose SoundSport Headphones,1,99.99,03/28/19 21:51,"127 Hickory St, San Francisco, CA 94016" +172886,34in Ultrawide Monitor,1,379.99,03/30/19 18:33,"436 Church St, New York City, NY 10001" +172887,AAA Batteries (4-pack),1,2.99,03/13/19 06:48,"356 South St, San Francisco, CA 94016" +172888,Apple Airpods Headphones,1,150,03/24/19 12:43,"350 Walnut St, Los Angeles, CA 90001" +172889,Wired Headphones,1,11.99,03/09/19 12:23,"4 1st St, Los Angeles, CA 90001" +172890,27in 4K Gaming Monitor,1,389.99,03/08/19 20:16,"283 Ridge St, San Francisco, CA 94016" +172891,AAA Batteries (4-pack),2,2.99,03/28/19 12:24,"93 Spruce St, Boston, MA 02215" +172892,USB-C Charging Cable,1,11.95,03/22/19 14:02,"136 Jefferson St, Boston, MA 02215" +172893,20in Monitor,1,109.99,03/13/19 20:37,"511 Chestnut St, Atlanta, GA 30301" +172894,AA Batteries (4-pack),2,3.84,03/26/19 09:14,"585 11th St, Portland, OR 97035" +172895,Macbook Pro Laptop,1,1700,03/16/19 23:13,"692 Meadow St, Los Angeles, CA 90001" +172896,27in 4K Gaming Monitor,1,389.99,03/08/19 18:42,"37 Spruce St, Boston, MA 02215" +172897,iPhone,1,700,03/17/19 23:02,"616 North St, San Francisco, CA 94016" +172898,Bose SoundSport Headphones,1,99.99,03/30/19 20:55,"817 Cedar St, Los Angeles, CA 90001" +172899,AAA Batteries (4-pack),3,2.99,03/07/19 22:28,"865 Cedar St, Dallas, TX 75001" +172900,ThinkPad Laptop,1,999.99,03/26/19 21:03,"554 12th St, Los Angeles, CA 90001" +172901,Bose SoundSport Headphones,1,99.99,03/13/19 21:18,"903 Washington St, Atlanta, GA 30301" +172902,USB-C Charging Cable,1,11.95,03/30/19 17:06,"152 Walnut St, Boston, MA 02215" +172903,USB-C Charging Cable,1,11.95,03/10/19 17:51,"805 5th St, San Francisco, CA 94016" +172904,ThinkPad Laptop,1,999.99,03/15/19 14:56,"698 Pine St, San Francisco, CA 94016" +172905,Wired Headphones,1,11.99,03/11/19 12:05,"135 14th St, New York City, NY 10001" +172906,AA Batteries (4-pack),1,3.84,03/26/19 13:09,"848 6th St, San Francisco, CA 94016" +172907,Lightning Charging Cable,1,14.95,03/17/19 07:52,"772 River St, Dallas, TX 75001" +172908,ThinkPad Laptop,1,999.99,03/01/19 12:06,"609 South St, Boston, MA 02215" +172909,USB-C Charging Cable,1,11.95,03/13/19 19:14,"774 11th St, Austin, TX 73301" +172910,Lightning Charging Cable,1,14.95,03/12/19 22:13,"668 Ridge St, Portland, OR 97035" +172911,Bose SoundSport Headphones,1,99.99,03/21/19 19:27,"971 9th St, New York City, NY 10001" +172912,USB-C Charging Cable,1,11.95,03/26/19 10:25,"626 Cherry St, Atlanta, GA 30301" +172913,Lightning Charging Cable,1,14.95,03/01/19 15:55,"94 West St, San Francisco, CA 94016" +172914,USB-C Charging Cable,1,11.95,03/15/19 15:31,"910 6th St, San Francisco, CA 94016" +172915,Lightning Charging Cable,1,14.95,03/11/19 12:46,"453 14th St, Boston, MA 02215" +172916,Bose SoundSport Headphones,1,99.99,03/25/19 22:53,"979 8th St, Boston, MA 02215" +172917,Lightning Charging Cable,1,14.95,03/22/19 22:31,"854 Lakeview St, Seattle, WA 98101" +172918,Google Phone,1,600,03/11/19 19:59,"937 Lake St, Seattle, WA 98101" +172918,USB-C Charging Cable,2,11.95,03/11/19 19:59,"937 Lake St, Seattle, WA 98101" +172919,AA Batteries (4-pack),1,3.84,03/11/19 14:25,"671 2nd St, Atlanta, GA 30301" +172920,AA Batteries (4-pack),2,3.84,03/14/19 06:30,"310 Lakeview St, Boston, MA 02215" +172921,Wired Headphones,1,11.99,03/19/19 18:59,"167 Lake St, Atlanta, GA 30301" +172922,Flatscreen TV,1,300,03/18/19 21:49,"281 Highland St, San Francisco, CA 94016" +172923,Wired Headphones,1,11.99,03/09/19 10:19,"419 Wilson St, Dallas, TX 75001" +172924,Apple Airpods Headphones,1,150,03/29/19 15:55,"233 Hickory St, Dallas, TX 75001" +172925,AA Batteries (4-pack),5,3.84,03/19/19 13:28,"876 West St, Austin, TX 73301" +172926,27in FHD Monitor,1,149.99,03/21/19 14:28,"405 Main St, San Francisco, CA 94016" +172927,AAA Batteries (4-pack),2,2.99,03/07/19 17:09,"307 Cedar St, Austin, TX 73301" +172928,27in FHD Monitor,1,149.99,03/23/19 13:42,"705 Dogwood St, Boston, MA 02215" +172929,AAA Batteries (4-pack),1,2.99,03/05/19 21:19,"455 South St, Seattle, WA 98101" +172930,27in 4K Gaming Monitor,1,389.99,03/15/19 15:33,"700 Willow St, Seattle, WA 98101" +172931,27in 4K Gaming Monitor,1,389.99,03/26/19 15:56,"40 7th St, Seattle, WA 98101" +172932,27in FHD Monitor,1,149.99,03/03/19 23:03,"642 Jackson St, Atlanta, GA 30301" +172933,iPhone,1,700,03/12/19 19:48,"740 Adams St, Boston, MA 02215" +172934,USB-C Charging Cable,1,11.95,03/08/19 09:53,"229 West St, San Francisco, CA 94016" +172935,27in FHD Monitor,1,149.99,03/22/19 00:03,"447 8th St, Atlanta, GA 30301" +172936,LG Dryer,1,600.0,03/14/19 13:40,"631 6th St, San Francisco, CA 94016" +172937,34in Ultrawide Monitor,1,379.99,03/05/19 11:20,"157 River St, Los Angeles, CA 90001" +172938,AA Batteries (4-pack),1,3.84,03/16/19 19:28,"404 Pine St, Los Angeles, CA 90001" +172939,USB-C Charging Cable,1,11.95,03/08/19 11:25,"402 South St, New York City, NY 10001" +172940,USB-C Charging Cable,1,11.95,03/24/19 09:28,"120 Hill St, San Francisco, CA 94016" +172941,Lightning Charging Cable,1,14.95,03/04/19 18:40,"47 6th St, Los Angeles, CA 90001" +172942,Lightning Charging Cable,1,14.95,03/05/19 09:26,"442 Sunset St, Boston, MA 02215" +172943,iPhone,1,700,03/22/19 14:53,"200 9th St, Boston, MA 02215" +172944,USB-C Charging Cable,1,11.95,03/18/19 09:28,"204 Center St, San Francisco, CA 94016" +172945,AAA Batteries (4-pack),1,2.99,03/11/19 01:27,"230 6th St, San Francisco, CA 94016" +172946,AAA Batteries (4-pack),1,2.99,03/11/19 16:40,"742 Highland St, San Francisco, CA 94016" +172947,Lightning Charging Cable,1,14.95,03/15/19 14:05,"466 6th St, Seattle, WA 98101" +172948,Lightning Charging Cable,1,14.95,03/02/19 17:10,"990 4th St, San Francisco, CA 94016" +172949,Lightning Charging Cable,1,14.95,03/22/19 16:45,"685 Wilson St, San Francisco, CA 94016" +172950,27in 4K Gaming Monitor,1,389.99,03/08/19 20:04,"863 Madison St, San Francisco, CA 94016" +172951,Wired Headphones,2,11.99,03/03/19 19:46,"18 4th St, New York City, NY 10001" +172952,Lightning Charging Cable,1,14.95,03/03/19 16:32,"138 Adams St, Los Angeles, CA 90001" +172953,20in Monitor,1,109.99,03/15/19 14:36,"168 Cedar St, Dallas, TX 75001" +172954,Wired Headphones,1,11.99,03/01/19 19:58,"43 North St, San Francisco, CA 94016" +172955,AA Batteries (4-pack),1,3.84,03/20/19 16:36,"758 13th St, Los Angeles, CA 90001" +172956,AAA Batteries (4-pack),1,2.99,03/04/19 22:25,"435 South St, Portland, OR 97035" +172957,Lightning Charging Cable,1,14.95,03/13/19 10:23,"543 Church St, Los Angeles, CA 90001" +172958,Lightning Charging Cable,1,14.95,03/26/19 09:08,"306 Willow St, Portland, OR 97035" +172959,Google Phone,1,600,03/06/19 09:00,"142 Forest St, San Francisco, CA 94016" +172960,USB-C Charging Cable,1,11.95,03/03/19 12:12,"78 Main St, Portland, OR 97035" +172961,USB-C Charging Cable,1,11.95,03/23/19 19:45,"82 Main St, San Francisco, CA 94016" +172962,AAA Batteries (4-pack),1,2.99,03/15/19 20:46,"283 Main St, Dallas, TX 75001" +172963,AAA Batteries (4-pack),1,2.99,03/28/19 11:41,"432 8th St, San Francisco, CA 94016" +172964,Macbook Pro Laptop,1,1700,03/11/19 09:34,"336 River St, Atlanta, GA 30301" +172965,Wired Headphones,1,11.99,03/14/19 19:53,"864 7th St, San Francisco, CA 94016" +172966,USB-C Charging Cable,1,11.95,03/02/19 12:07,"353 Hill St, Los Angeles, CA 90001" +172967,iPhone,1,700,03/25/19 21:55,"197 Main St, New York City, NY 10001" +172967,Lightning Charging Cable,1,14.95,03/25/19 21:55,"197 Main St, New York City, NY 10001" +172968,Lightning Charging Cable,1,14.95,03/24/19 19:17,"295 Pine St, Los Angeles, CA 90001" +172969,20in Monitor,1,109.99,03/15/19 16:57,"764 Jackson St, Boston, MA 02215" +172970,Apple Airpods Headphones,1,150,03/19/19 03:55,"241 4th St, Austin, TX 73301" +172971,AAA Batteries (4-pack),1,2.99,03/13/19 18:38,"167 8th St, Los Angeles, CA 90001" +172972,USB-C Charging Cable,1,11.95,03/08/19 19:01,"705 Washington St, Boston, MA 02215" +172973,27in 4K Gaming Monitor,1,389.99,03/31/19 14:10,"51 12th St, Los Angeles, CA 90001" +172974,Apple Airpods Headphones,1,150,03/20/19 17:44,"593 Lakeview St, San Francisco, CA 94016" +172975,20in Monitor,1,109.99,03/12/19 10:50,"724 North St, San Francisco, CA 94016" +172976,Google Phone,1,600,03/21/19 19:21,"981 13th St, San Francisco, CA 94016" +172977,27in FHD Monitor,1,149.99,03/18/19 11:45,"115 Ridge St, San Francisco, CA 94016" +172978,Lightning Charging Cable,1,14.95,03/15/19 18:58,"662 Chestnut St, Los Angeles, CA 90001" +172979,iPhone,1,700,03/26/19 11:55,"710 Park St, Atlanta, GA 30301" +172980,Lightning Charging Cable,1,14.95,03/10/19 12:02,"457 Meadow St, Los Angeles, CA 90001" +172981,USB-C Charging Cable,1,11.95,03/08/19 18:03,"118 Jackson St, Boston, MA 02215" +172982,AA Batteries (4-pack),1,3.84,03/22/19 11:37,"765 Lincoln St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +172983,AAA Batteries (4-pack),1,2.99,03/05/19 20:50,"351 Jefferson St, New York City, NY 10001" +172984,Lightning Charging Cable,1,14.95,03/09/19 13:27,"82 6th St, Atlanta, GA 30301" +172985,Wired Headphones,1,11.99,03/11/19 20:24,"691 5th St, Seattle, WA 98101" +172986,34in Ultrawide Monitor,1,379.99,03/10/19 21:54,"301 Lakeview St, Portland, OR 97035" +172987,USB-C Charging Cable,1,11.95,03/14/19 00:30,"771 Maple St, Seattle, WA 98101" +172988,Bose SoundSport Headphones,1,99.99,03/27/19 12:16,"213 Cedar St, San Francisco, CA 94016" +172989,34in Ultrawide Monitor,1,379.99,03/04/19 20:01,"29 Elm St, Portland, OR 97035" +172990,Wired Headphones,2,11.99,03/22/19 20:47,"415 2nd St, Boston, MA 02215" +172991,AA Batteries (4-pack),1,3.84,03/10/19 18:58,"67 Meadow St, Dallas, TX 75001" +172992,27in FHD Monitor,1,149.99,03/18/19 16:48,"956 Church St, Seattle, WA 98101" +172993,27in FHD Monitor,1,149.99,03/14/19 19:00,"931 Lincoln St, Portland, ME 04101" +172994,Apple Airpods Headphones,1,150,03/15/19 19:19,"242 Pine St, Los Angeles, CA 90001" +172995,AA Batteries (4-pack),1,3.84,03/02/19 01:50,"444 2nd St, Seattle, WA 98101" +172996,Apple Airpods Headphones,1,150,03/24/19 11:36,"785 11th St, Portland, ME 04101" +172997,AA Batteries (4-pack),2,3.84,03/10/19 17:20,"3 Hickory St, Portland, OR 97035" +172998,iPhone,1,700,03/30/19 18:22,"717 11th St, San Francisco, CA 94016" +172998,Lightning Charging Cable,1,14.95,03/30/19 18:22,"717 11th St, San Francisco, CA 94016" +172999,Apple Airpods Headphones,1,150,03/01/19 10:58,"918 Chestnut St, Los Angeles, CA 90001" +173000,27in 4K Gaming Monitor,1,389.99,03/02/19 19:03,"603 Madison St, Los Angeles, CA 90001" +173001,Flatscreen TV,1,300,03/19/19 16:14,"276 7th St, San Francisco, CA 94016" +173002,Bose SoundSport Headphones,1,99.99,03/16/19 22:44,"737 Wilson St, San Francisco, CA 94016" +173003,Flatscreen TV,1,300,03/23/19 06:57,"724 Pine St, Austin, TX 73301" +173004,Flatscreen TV,1,300,03/12/19 17:59,"542 9th St, Los Angeles, CA 90001" +173005,Lightning Charging Cable,1,14.95,03/19/19 18:48,"242 Walnut St, Dallas, TX 75001" +173006,Wired Headphones,1,11.99,03/17/19 15:04,"978 Center St, Los Angeles, CA 90001" +173007,Wired Headphones,1,11.99,03/12/19 12:39,"100 Jefferson St, Portland, ME 04101" +173008,USB-C Charging Cable,1,11.95,03/24/19 22:34,"723 Madison St, San Francisco, CA 94016" +173009,Bose SoundSport Headphones,1,99.99,03/15/19 14:00,"448 Lake St, Boston, MA 02215" +173010,AA Batteries (4-pack),1,3.84,03/24/19 14:22,"724 Madison St, Dallas, TX 75001" +173011,34in Ultrawide Monitor,1,379.99,03/02/19 13:26,"242 Pine St, Boston, MA 02215" +173012,Wired Headphones,1,11.99,03/15/19 19:56,"99 1st St, New York City, NY 10001" +173013,USB-C Charging Cable,1,11.95,03/21/19 11:22,"397 Meadow St, Dallas, TX 75001" +173014,Wired Headphones,1,11.99,03/10/19 09:56,"50 Cherry St, Dallas, TX 75001" +173015,Apple Airpods Headphones,1,150,03/05/19 12:55,"955 Ridge St, Dallas, TX 75001" +173016,AA Batteries (4-pack),3,3.84,03/09/19 10:50,"98 Johnson St, Los Angeles, CA 90001" +173017,USB-C Charging Cable,1,11.95,03/06/19 09:52,"788 1st St, Boston, MA 02215" +173018,Apple Airpods Headphones,1,150,03/10/19 21:16,"971 14th St, San Francisco, CA 94016" +173019,Apple Airpods Headphones,1,150,03/17/19 23:22,"958 Madison St, San Francisco, CA 94016" +173020,34in Ultrawide Monitor,1,379.99,03/04/19 18:56,"32 Walnut St, Austin, TX 73301" +173021,AAA Batteries (4-pack),1,2.99,03/11/19 13:42,"512 Hickory St, Seattle, WA 98101" +173022,iPhone,1,700,03/04/19 19:02,"877 Forest St, Austin, TX 73301" +173022,Wired Headphones,1,11.99,03/04/19 19:02,"877 Forest St, Austin, TX 73301" +173023,27in FHD Monitor,1,149.99,03/04/19 15:28,"55 Park St, Los Angeles, CA 90001" +173024,Bose SoundSport Headphones,1,99.99,03/07/19 08:49,"236 Johnson St, Boston, MA 02215" +173025,27in FHD Monitor,1,149.99,03/04/19 12:03,"488 Maple St, Dallas, TX 75001" +173026,27in 4K Gaming Monitor,1,389.99,03/13/19 06:41,"387 Madison St, Portland, OR 97035" +173027,Wired Headphones,1,11.99,03/22/19 09:42,"50 Center St, Atlanta, GA 30301" +173028,Wired Headphones,1,11.99,03/07/19 10:09,"466 10th St, San Francisco, CA 94016" +173028,Bose SoundSport Headphones,1,99.99,03/07/19 10:09,"466 10th St, San Francisco, CA 94016" +173029,USB-C Charging Cable,1,11.95,03/10/19 01:28,"909 North St, New York City, NY 10001" +173030,AA Batteries (4-pack),1,3.84,03/21/19 18:16,"419 River St, Portland, OR 97035" +173031,Flatscreen TV,1,300,03/10/19 21:45,"596 Lincoln St, San Francisco, CA 94016" +173032,Wired Headphones,1,11.99,03/13/19 11:09,"909 Church St, Boston, MA 02215" +173033,Wired Headphones,1,11.99,03/02/19 14:12,"343 Ridge St, San Francisco, CA 94016" +173034,Apple Airpods Headphones,1,150,03/12/19 00:42,"309 Ridge St, Atlanta, GA 30301" +173035,AAA Batteries (4-pack),1,2.99,03/10/19 15:15,"930 Pine St, Dallas, TX 75001" +173036,Lightning Charging Cable,1,14.95,03/28/19 13:11,"903 2nd St, Atlanta, GA 30301" +173037,AA Batteries (4-pack),2,3.84,03/13/19 18:32,"109 North St, San Francisco, CA 94016" +173038,AAA Batteries (4-pack),1,2.99,03/17/19 20:44,"392 Pine St, Boston, MA 02215" +173039,Apple Airpods Headphones,1,150,03/20/19 17:34,"333 7th St, Los Angeles, CA 90001" +173040,Bose SoundSport Headphones,1,99.99,03/17/19 18:50,"171 Pine St, San Francisco, CA 94016" +173041,Lightning Charging Cable,1,14.95,03/01/19 21:01,"861 4th St, New York City, NY 10001" +173042,USB-C Charging Cable,1,11.95,03/15/19 19:50,"662 7th St, Dallas, TX 75001" +173043,Apple Airpods Headphones,1,150,03/23/19 22:25,"772 Madison St, Los Angeles, CA 90001" +173044,USB-C Charging Cable,1,11.95,03/04/19 20:01,"192 Meadow St, New York City, NY 10001" +173045,Wired Headphones,1,11.99,03/23/19 11:02,"463 Dogwood St, San Francisco, CA 94016" +173046,Wired Headphones,1,11.99,03/27/19 22:15,"152 Maple St, Boston, MA 02215" +173047,27in 4K Gaming Monitor,1,389.99,03/22/19 17:20,"143 Cherry St, Los Angeles, CA 90001" +173048,Vareebadd Phone,1,400,03/28/19 14:38,"43 Highland St, Los Angeles, CA 90001" +173049,27in 4K Gaming Monitor,1,389.99,03/06/19 09:11,"843 West St, Los Angeles, CA 90001" +173050,USB-C Charging Cable,1,11.95,03/30/19 12:22,"939 Meadow St, San Francisco, CA 94016" +173051,Lightning Charging Cable,1,14.95,03/30/19 14:48,"755 Sunset St, Seattle, WA 98101" +173052,Lightning Charging Cable,1,14.95,03/06/19 12:08,"80 Sunset St, San Francisco, CA 94016" +173053,Bose SoundSport Headphones,1,99.99,03/13/19 12:09,"408 Lincoln St, Atlanta, GA 30301" +173054,Lightning Charging Cable,1,14.95,03/09/19 17:22,"885 Adams St, San Francisco, CA 94016" +173055,Wired Headphones,1,11.99,03/18/19 15:36,"644 Church St, Atlanta, GA 30301" +173056,34in Ultrawide Monitor,1,379.99,03/19/19 00:19,"862 Pine St, San Francisco, CA 94016" +173057,Wired Headphones,1,11.99,03/06/19 20:32,"420 Wilson St, Los Angeles, CA 90001" +173058,iPhone,1,700,03/26/19 17:57,"201 Spruce St, San Francisco, CA 94016" +173058,Apple Airpods Headphones,1,150,03/26/19 17:57,"201 Spruce St, San Francisco, CA 94016" +173059,USB-C Charging Cable,1,11.95,03/03/19 12:17,"914 Sunset St, Portland, OR 97035" +173060,27in 4K Gaming Monitor,1,389.99,03/13/19 11:49,"588 Chestnut St, Los Angeles, CA 90001" +173061,AAA Batteries (4-pack),1,2.99,03/07/19 05:58,"758 Spruce St, Portland, OR 97035" +173062,USB-C Charging Cable,1,11.95,03/10/19 10:12,"967 Lincoln St, San Francisco, CA 94016" +173063,iPhone,1,700,03/08/19 14:09,"501 Johnson St, Atlanta, GA 30301" +173064,27in FHD Monitor,1,149.99,03/23/19 11:14,"262 Adams St, Portland, OR 97035" +173065,34in Ultrawide Monitor,1,379.99,03/15/19 20:02,"378 Church St, New York City, NY 10001" +173066,Lightning Charging Cable,1,14.95,03/05/19 12:53,"992 Highland St, New York City, NY 10001" +173067,34in Ultrawide Monitor,1,379.99,03/05/19 11:15,"713 South St, Dallas, TX 75001" +173068,Lightning Charging Cable,1,14.95,03/20/19 13:47,"212 Elm St, Atlanta, GA 30301" +173069,Lightning Charging Cable,1,14.95,03/25/19 13:31,"242 Lake St, Atlanta, GA 30301" +173070,Bose SoundSport Headphones,1,99.99,03/11/19 01:31,"425 Cedar St, Boston, MA 02215" +173071,Wired Headphones,1,11.99,03/23/19 10:27,"583 6th St, Boston, MA 02215" +173072,Lightning Charging Cable,1,14.95,03/26/19 19:40,"4 12th St, Los Angeles, CA 90001" +173073,AA Batteries (4-pack),1,3.84,03/14/19 06:30,"947 Hill St, Seattle, WA 98101" +173074,27in 4K Gaming Monitor,1,389.99,03/18/19 17:06,"957 Ridge St, Los Angeles, CA 90001" +173075,20in Monitor,1,109.99,03/21/19 15:46,"269 Sunset St, San Francisco, CA 94016" +173076,34in Ultrawide Monitor,1,379.99,03/25/19 14:46,"470 Forest St, San Francisco, CA 94016" +173077,34in Ultrawide Monitor,1,379.99,03/18/19 15:58,"365 Forest St, San Francisco, CA 94016" +173078,Lightning Charging Cable,1,14.95,03/02/19 19:53,"573 Jackson St, New York City, NY 10001" +173079,Lightning Charging Cable,1,14.95,03/11/19 19:03,"871 5th St, Seattle, WA 98101" +173080,Vareebadd Phone,1,400,03/18/19 18:41,"211 West St, Los Angeles, CA 90001" +173081,AA Batteries (4-pack),1,3.84,03/29/19 21:52,"469 13th St, Los Angeles, CA 90001" +173082,USB-C Charging Cable,1,11.95,03/29/19 00:16,"798 Elm St, Los Angeles, CA 90001" +173083,Apple Airpods Headphones,1,150,03/29/19 17:28,"461 8th St, Portland, OR 97035" +173084,USB-C Charging Cable,1,11.95,03/22/19 09:09,"896 12th St, San Francisco, CA 94016" +173085,Apple Airpods Headphones,1,150,03/21/19 10:38,"443 Lincoln St, Seattle, WA 98101" +173086,Lightning Charging Cable,1,14.95,03/28/19 12:00,"969 Walnut St, Atlanta, GA 30301" +173087,Apple Airpods Headphones,1,150,03/04/19 19:29,"558 9th St, Los Angeles, CA 90001" +173088,Wired Headphones,1,11.99,03/02/19 11:16,"508 Jackson St, Los Angeles, CA 90001" +173089,Macbook Pro Laptop,1,1700,03/27/19 12:30,"222 Main St, San Francisco, CA 94016" +173090,Lightning Charging Cable,1,14.95,03/14/19 22:56,"194 Ridge St, Seattle, WA 98101" +173091,Lightning Charging Cable,1,14.95,03/26/19 16:13,"582 5th St, San Francisco, CA 94016" +173092,USB-C Charging Cable,1,11.95,03/12/19 17:19,"105 Willow St, New York City, NY 10001" +173093,27in 4K Gaming Monitor,1,389.99,03/09/19 18:50,"295 Ridge St, Portland, OR 97035" +173094,AA Batteries (4-pack),1,3.84,03/21/19 12:31,"526 2nd St, Seattle, WA 98101" +173095,27in FHD Monitor,1,149.99,03/23/19 10:50,"508 Adams St, Los Angeles, CA 90001" +173096,AAA Batteries (4-pack),2,2.99,03/25/19 14:41,"199 2nd St, Dallas, TX 75001" +173097,Bose SoundSport Headphones,1,99.99,03/18/19 03:28,"228 Cherry St, New York City, NY 10001" +173098,Wired Headphones,2,11.99,03/01/19 07:53,"190 Ridge St, Atlanta, GA 30301" +173099,AA Batteries (4-pack),1,3.84,03/28/19 17:50,"559 Spruce St, New York City, NY 10001" +173100,Bose SoundSport Headphones,1,99.99,03/15/19 08:52,"243 Ridge St, New York City, NY 10001" +173101,Google Phone,1,600,03/12/19 21:52,"614 Walnut St, Seattle, WA 98101" +173101,USB-C Charging Cable,1,11.95,03/12/19 21:52,"614 Walnut St, Seattle, WA 98101" +173102,AA Batteries (4-pack),1,3.84,03/12/19 15:00,"582 Cherry St, San Francisco, CA 94016" +173103,AAA Batteries (4-pack),1,2.99,03/02/19 18:45,"856 Walnut St, Los Angeles, CA 90001" +173104,20in Monitor,1,109.99,03/19/19 06:26,"941 Cedar St, Dallas, TX 75001" +173105,AAA Batteries (4-pack),2,2.99,03/27/19 17:40,"999 Highland St, Boston, MA 02215" +173106,USB-C Charging Cable,1,11.95,03/30/19 17:48,"946 Ridge St, San Francisco, CA 94016" +173107,27in FHD Monitor,1,149.99,03/22/19 10:41,"128 2nd St, New York City, NY 10001" +173108,iPhone,1,700,03/13/19 22:42,"611 1st St, Los Angeles, CA 90001" +173109,Google Phone,1,600,03/12/19 14:11,"860 Cedar St, Boston, MA 02215" +173110,Wired Headphones,1,11.99,03/05/19 19:50,"702 2nd St, San Francisco, CA 94016" +173111,AA Batteries (4-pack),1,3.84,03/24/19 21:05,"313 Forest St, Los Angeles, CA 90001" +173112,Lightning Charging Cable,1,14.95,03/19/19 14:48,"168 Meadow St, Los Angeles, CA 90001" +173113,USB-C Charging Cable,1,11.95,03/23/19 18:06,"76 8th St, San Francisco, CA 94016" +173114,USB-C Charging Cable,1,11.95,03/14/19 19:01,"816 Lakeview St, Dallas, TX 75001" +173115,Lightning Charging Cable,2,14.95,03/09/19 11:43,"905 9th St, Atlanta, GA 30301" +173116,Bose SoundSport Headphones,1,99.99,03/29/19 21:08,"4 Walnut St, Atlanta, GA 30301" +173117,iPhone,1,700,03/19/19 11:44,"33 Lake St, Dallas, TX 75001" +173117,Wired Headphones,1,11.99,03/19/19 11:44,"33 Lake St, Dallas, TX 75001" +173118,USB-C Charging Cable,1,11.95,03/30/19 23:15,"391 Wilson St, New York City, NY 10001" +173119,34in Ultrawide Monitor,1,379.99,03/07/19 20:45,"2 River St, San Francisco, CA 94016" +173120,27in 4K Gaming Monitor,1,389.99,03/10/19 00:08,"494 5th St, Seattle, WA 98101" +173121,AA Batteries (4-pack),1,3.84,03/13/19 06:46,"289 14th St, New York City, NY 10001" +173122,AAA Batteries (4-pack),1,2.99,03/16/19 15:04,"632 1st St, San Francisco, CA 94016" +173123,Bose SoundSport Headphones,1,99.99,03/02/19 08:47,"756 Ridge St, New York City, NY 10001" +173124,USB-C Charging Cable,1,11.95,03/13/19 09:15,"925 Maple St, Portland, OR 97035" +173125,AAA Batteries (4-pack),5,2.99,03/11/19 13:49,"675 Madison St, San Francisco, CA 94016" +173126,Wired Headphones,1,11.99,03/13/19 01:31,"759 9th St, New York City, NY 10001" +173127,AA Batteries (4-pack),1,3.84,03/11/19 19:44,"22 14th St, San Francisco, CA 94016" +173128,USB-C Charging Cable,1,11.95,03/02/19 14:10,"916 Park St, San Francisco, CA 94016" +173129,Lightning Charging Cable,1,14.95,03/20/19 21:03,"233 Madison St, San Francisco, CA 94016" +173130,Lightning Charging Cable,1,14.95,03/14/19 13:33,"721 13th St, Austin, TX 73301" +173131,AAA Batteries (4-pack),4,2.99,03/01/19 09:34,"17 Adams St, Los Angeles, CA 90001" +173132,USB-C Charging Cable,2,11.95,03/04/19 15:26,"969 4th St, San Francisco, CA 94016" +173133,AA Batteries (4-pack),1,3.84,03/07/19 07:06,"428 South St, San Francisco, CA 94016" +173134,Bose SoundSport Headphones,1,99.99,03/09/19 17:51,"412 Jackson St, New York City, NY 10001" +173135,AAA Batteries (4-pack),2,2.99,03/21/19 16:21,"114 North St, Boston, MA 02215" +173136,AA Batteries (4-pack),1,3.84,03/10/19 22:52,"494 Wilson St, Dallas, TX 75001" +173137,Macbook Pro Laptop,1,1700,03/21/19 18:43,"565 Chestnut St, Seattle, WA 98101" +173138,AAA Batteries (4-pack),3,2.99,03/20/19 14:44,"783 Center St, Seattle, WA 98101" +173139,AAA Batteries (4-pack),1,2.99,03/30/19 14:12,"510 2nd St, Austin, TX 73301" +173140,34in Ultrawide Monitor,1,379.99,03/15/19 14:32,"912 Dogwood St, Boston, MA 02215" +173141,20in Monitor,1,109.99,03/21/19 12:42,"236 Chestnut St, Boston, MA 02215" +173142,Bose SoundSport Headphones,1,99.99,03/26/19 10:45,"574 10th St, San Francisco, CA 94016" +173143,Bose SoundSport Headphones,1,99.99,03/22/19 15:07,"108 Jackson St, San Francisco, CA 94016" +173144,Wired Headphones,1,11.99,03/14/19 15:39,"891 9th St, Los Angeles, CA 90001" +173145,AAA Batteries (4-pack),1,2.99,03/30/19 10:06,"124 Lincoln St, San Francisco, CA 94016" +173146,Lightning Charging Cable,1,14.95,03/14/19 07:08,"440 River St, San Francisco, CA 94016" +173147,Google Phone,1,600,03/13/19 12:36,"788 Forest St, New York City, NY 10001" +173148,Bose SoundSport Headphones,1,99.99,03/08/19 12:27,"678 10th St, San Francisco, CA 94016" +173149,Google Phone,1,600,03/29/19 16:27,"406 Park St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +173150,27in FHD Monitor,1,149.99,03/10/19 21:11,"98 7th St, Dallas, TX 75001" +173151,Apple Airpods Headphones,1,150,03/23/19 12:31,"289 Madison St, Boston, MA 02215" +173152,USB-C Charging Cable,1,11.95,03/26/19 11:57,"867 Cherry St, Boston, MA 02215" +173153,AA Batteries (4-pack),1,3.84,03/07/19 15:23,"994 Willow St, San Francisco, CA 94016" +173154,USB-C Charging Cable,1,11.95,03/13/19 11:56,"857 Jefferson St, Boston, MA 02215" +173155,USB-C Charging Cable,1,11.95,03/23/19 19:42,"92 10th St, Dallas, TX 75001" +173156,iPhone,1,700,03/25/19 08:55,"394 Pine St, San Francisco, CA 94016" +173157,ThinkPad Laptop,1,999.99,03/18/19 18:33,"808 Cedar St, Dallas, TX 75001" +173158,AAA Batteries (4-pack),1,2.99,03/16/19 19:22,"619 Center St, Los Angeles, CA 90001" +173159,Bose SoundSport Headphones,1,99.99,03/07/19 21:27,"546 Forest St, Boston, MA 02215" +173160,Apple Airpods Headphones,1,150,03/21/19 11:55,"733 Spruce St, Boston, MA 02215" +173161,AA Batteries (4-pack),1,3.84,03/11/19 19:00,"954 Lakeview St, San Francisco, CA 94016" +173162,27in 4K Gaming Monitor,1,389.99,03/23/19 20:44,"350 Cherry St, Portland, OR 97035" +173163,Wired Headphones,1,11.99,03/18/19 18:24,"583 Hickory St, Seattle, WA 98101" +173164,Apple Airpods Headphones,1,150,03/25/19 22:20,"556 Lakeview St, Portland, OR 97035" +173165,USB-C Charging Cable,1,11.95,03/11/19 16:15,"453 Cedar St, New York City, NY 10001" +173166,20in Monitor,1,109.99,03/06/19 10:33,"649 Jefferson St, Boston, MA 02215" +173167,USB-C Charging Cable,1,11.95,03/01/19 09:50,"739 9th St, New York City, NY 10001" +173168,Lightning Charging Cable,1,14.95,03/17/19 15:12,"969 6th St, San Francisco, CA 94016" +173169,AA Batteries (4-pack),2,3.84,03/03/19 13:19,"289 Highland St, Seattle, WA 98101" +173170,AA Batteries (4-pack),1,3.84,03/06/19 05:11,"401 8th St, Seattle, WA 98101" +173171,Wired Headphones,1,11.99,03/20/19 17:57,"522 Sunset St, Boston, MA 02215" +173172,27in FHD Monitor,1,149.99,03/26/19 16:25,"337 Park St, Portland, ME 04101" +173173,Bose SoundSport Headphones,1,99.99,03/28/19 11:27,"638 1st St, San Francisco, CA 94016" +173174,AAA Batteries (4-pack),3,2.99,03/11/19 12:53,"591 9th St, New York City, NY 10001" +173175,Wired Headphones,1,11.99,03/27/19 17:45,"990 Adams St, San Francisco, CA 94016" +173176,USB-C Charging Cable,1,11.95,03/17/19 13:25,"758 Dogwood St, Seattle, WA 98101" +173177,Wired Headphones,1,11.99,03/02/19 19:27,"428 Main St, New York City, NY 10001" +173178,USB-C Charging Cable,1,11.95,03/12/19 19:27,"591 12th St, Los Angeles, CA 90001" +173179,Lightning Charging Cable,1,14.95,03/12/19 21:30,"292 Jackson St, San Francisco, CA 94016" +173180,AAA Batteries (4-pack),1,2.99,03/29/19 08:51,"21 River St, San Francisco, CA 94016" +173181,Bose SoundSport Headphones,1,99.99,03/18/19 07:24,"406 Cherry St, Los Angeles, CA 90001" +173182,AAA Batteries (4-pack),2,2.99,03/01/19 22:51,"986 5th St, New York City, NY 10001" +173183,20in Monitor,1,109.99,03/12/19 14:06,"345 5th St, San Francisco, CA 94016" +173184,USB-C Charging Cable,1,11.95,03/08/19 16:43,"269 Lincoln St, San Francisco, CA 94016" +173185,Flatscreen TV,1,300,03/20/19 20:39,"39 Willow St, Los Angeles, CA 90001" +173186,Lightning Charging Cable,1,14.95,03/04/19 22:22,"191 4th St, Los Angeles, CA 90001" +173187,AA Batteries (4-pack),1,3.84,03/11/19 12:05,"19 8th St, San Francisco, CA 94016" +173188,Lightning Charging Cable,1,14.95,03/22/19 20:17,"51 Lincoln St, Boston, MA 02215" +173189,34in Ultrawide Monitor,1,379.99,03/27/19 13:32,"73 4th St, Los Angeles, CA 90001" +173190,Macbook Pro Laptop,1,1700,03/22/19 17:18,"161 Hill St, Austin, TX 73301" +173191,Apple Airpods Headphones,1,150,03/09/19 10:50,"290 Walnut St, Dallas, TX 75001" +173192,AA Batteries (4-pack),1,3.84,03/21/19 00:52,"873 Ridge St, San Francisco, CA 94016" +173193,Apple Airpods Headphones,1,150,03/04/19 10:23,"182 Wilson St, Los Angeles, CA 90001" +173194,Wired Headphones,1,11.99,03/04/19 20:12,"765 Elm St, San Francisco, CA 94016" +173195,USB-C Charging Cable,5,11.95,03/26/19 14:18,"670 12th St, San Francisco, CA 94016" +173196,Bose SoundSport Headphones,1,99.99,03/05/19 11:45,"643 South St, Portland, ME 04101" +173197,USB-C Charging Cable,1,11.95,03/27/19 12:23,"524 14th St, Los Angeles, CA 90001" +173198,27in FHD Monitor,1,149.99,03/15/19 20:39,"339 Elm St, Atlanta, GA 30301" +173199,AAA Batteries (4-pack),2,2.99,03/21/19 22:28,"548 Walnut St, San Francisco, CA 94016" +173200,Wired Headphones,1,11.99,03/19/19 13:27,"949 2nd St, San Francisco, CA 94016" +173201,27in FHD Monitor,1,149.99,03/13/19 11:34,"438 Ridge St, San Francisco, CA 94016" +173202,Bose SoundSport Headphones,1,99.99,03/11/19 08:53,"135 7th St, New York City, NY 10001" +173203,AA Batteries (4-pack),1,3.84,03/03/19 12:27,"573 Center St, San Francisco, CA 94016" +173204,Google Phone,1,600,03/02/19 19:30,"983 12th St, Austin, TX 73301" +173205,AA Batteries (4-pack),1,3.84,03/22/19 22:33,"3 5th St, San Francisco, CA 94016" +173206,Apple Airpods Headphones,1,150,03/22/19 19:09,"921 Wilson St, New York City, NY 10001" +173207,Lightning Charging Cable,1,14.95,03/10/19 19:30,"145 Main St, New York City, NY 10001" +173208,Lightning Charging Cable,2,14.95,03/31/19 20:57,"288 4th St, San Francisco, CA 94016" +173209,AA Batteries (4-pack),1,3.84,03/17/19 19:50,"199 Wilson St, Atlanta, GA 30301" +173210,USB-C Charging Cable,1,11.95,03/22/19 16:12,"908 14th St, Dallas, TX 75001" +173211,USB-C Charging Cable,1,11.95,03/30/19 12:28,"915 Forest St, Seattle, WA 98101" +173212,USB-C Charging Cable,1,11.95,03/31/19 12:33,"107 Dogwood St, Los Angeles, CA 90001" +173213,AA Batteries (4-pack),1,3.84,03/13/19 15:33,"458 5th St, Dallas, TX 75001" +173214,Lightning Charging Cable,1,14.95,03/18/19 11:06,"869 10th St, Portland, OR 97035" +173215,Bose SoundSport Headphones,1,99.99,03/18/19 20:07,"620 10th St, Portland, OR 97035" +173216,Apple Airpods Headphones,1,150,03/07/19 21:22,"624 Pine St, New York City, NY 10001" +173217,AA Batteries (4-pack),1,3.84,03/17/19 19:31,"566 2nd St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +173218,Wired Headphones,1,11.99,03/28/19 09:46,"650 13th St, Atlanta, GA 30301" +173219,USB-C Charging Cable,1,11.95,03/20/19 16:29,"463 Lake St, Portland, OR 97035" +173220,34in Ultrawide Monitor,1,379.99,03/14/19 13:13,"346 North St, Los Angeles, CA 90001" +173221,AA Batteries (4-pack),1,3.84,03/11/19 22:58,"344 Hill St, Boston, MA 02215" +173222,iPhone,1,700,03/22/19 17:50,"932 Highland St, San Francisco, CA 94016" +173223,Apple Airpods Headphones,1,150,03/19/19 21:46,"976 Wilson St, San Francisco, CA 94016" +173224,AA Batteries (4-pack),1,3.84,03/21/19 19:05,"54 Spruce St, Atlanta, GA 30301" +173225,Macbook Pro Laptop,1,1700,03/01/19 09:11,"131 12th St, Dallas, TX 75001" +173226,Lightning Charging Cable,1,14.95,03/11/19 15:21,"722 Main St, Los Angeles, CA 90001" +173226,Lightning Charging Cable,1,14.95,03/11/19 15:21,"722 Main St, Los Angeles, CA 90001" +173227,Bose SoundSport Headphones,1,99.99,03/11/19 05:14,"864 Lake St, San Francisco, CA 94016" +173228,Lightning Charging Cable,1,14.95,03/13/19 15:16,"30 6th St, San Francisco, CA 94016" +173229,AA Batteries (4-pack),2,3.84,03/03/19 18:13,"120 Church St, San Francisco, CA 94016" +173230,AAA Batteries (4-pack),1,2.99,03/11/19 11:02,"253 Cherry St, Los Angeles, CA 90001" +173231,AAA Batteries (4-pack),2,2.99,03/30/19 09:51,"507 South St, Boston, MA 02215" +173232,27in FHD Monitor,1,149.99,03/16/19 14:41,"638 Sunset St, San Francisco, CA 94016" +173233,USB-C Charging Cable,1,11.95,03/28/19 12:59,"363 8th St, Seattle, WA 98101" +173234,USB-C Charging Cable,1,11.95,03/09/19 13:10,"946 13th St, Los Angeles, CA 90001" +173235,AA Batteries (4-pack),1,3.84,03/07/19 19:57,"537 9th St, Los Angeles, CA 90001" +173236,AA Batteries (4-pack),1,3.84,03/19/19 09:53,"102 Chestnut St, Boston, MA 02215" +173237,34in Ultrawide Monitor,1,379.99,03/01/19 23:07,"814 Hickory St, Boston, MA 02215" +173238,AA Batteries (4-pack),2,3.84,03/04/19 04:34,"170 Lincoln St, San Francisco, CA 94016" +173239,AAA Batteries (4-pack),1,2.99,03/19/19 16:36,"719 Washington St, Seattle, WA 98101" +173240,Lightning Charging Cable,1,14.95,03/09/19 19:18,"446 Spruce St, San Francisco, CA 94016" +173241,USB-C Charging Cable,1,11.95,03/28/19 20:37,"673 Adams St, Los Angeles, CA 90001" +173242,20in Monitor,1,109.99,03/05/19 18:02,"254 Sunset St, Portland, ME 04101" +173243,Apple Airpods Headphones,1,150,03/19/19 15:56,"918 Spruce St, Boston, MA 02215" +173244,AA Batteries (4-pack),1,3.84,03/10/19 11:17,"319 Maple St, Boston, MA 02215" +173245,Apple Airpods Headphones,1,150,03/21/19 11:05,"99 14th St, San Francisco, CA 94016" +173246,AA Batteries (4-pack),1,3.84,03/12/19 00:45,"811 Main St, Seattle, WA 98101" +173247,iPhone,1,700,03/04/19 19:20,"425 9th St, Los Angeles, CA 90001" +173248,AAA Batteries (4-pack),1,2.99,03/12/19 02:39,"385 River St, Boston, MA 02215" +173249,USB-C Charging Cable,1,11.95,03/06/19 19:40,"398 West St, Dallas, TX 75001" +173250,AA Batteries (4-pack),1,3.84,03/02/19 13:05,"262 Elm St, San Francisco, CA 94016" +173251,Apple Airpods Headphones,1,150,03/12/19 15:52,"104 9th St, Austin, TX 73301" +173252,27in 4K Gaming Monitor,1,389.99,03/12/19 11:18,"890 Jackson St, Boston, MA 02215" +173253,Wired Headphones,1,11.99,03/15/19 09:27,"950 Highland St, Boston, MA 02215" +173254,Google Phone,1,600,03/24/19 07:13,"871 Center St, New York City, NY 10001" +173254,Wired Headphones,1,11.99,03/24/19 07:13,"871 Center St, New York City, NY 10001" +173255,27in FHD Monitor,1,149.99,03/12/19 19:59,"318 2nd St, Seattle, WA 98101" +173256,Lightning Charging Cable,1,14.95,03/25/19 18:54,"87 8th St, New York City, NY 10001" +173257,AAA Batteries (4-pack),2,2.99,03/15/19 13:55,"956 Main St, Dallas, TX 75001" +173258,Wired Headphones,1,11.99,03/26/19 10:55,"823 Hill St, San Francisco, CA 94016" +173259,Lightning Charging Cable,1,14.95,03/28/19 18:45,"461 Walnut St, Boston, MA 02215" +173260,USB-C Charging Cable,1,11.95,03/30/19 20:22,"237 10th St, Atlanta, GA 30301" +173261,AA Batteries (4-pack),1,3.84,03/25/19 14:17,"244 12th St, Seattle, WA 98101" +173262,27in 4K Gaming Monitor,1,389.99,03/29/19 15:49,"606 7th St, San Francisco, CA 94016" +173263,Apple Airpods Headphones,1,150,03/08/19 17:36,"149 Elm St, Los Angeles, CA 90001" +173264,AA Batteries (4-pack),1,3.84,03/03/19 10:15,"406 Cherry St, New York City, NY 10001" +173265,USB-C Charging Cable,1,11.95,03/04/19 11:32,"706 Cherry St, Seattle, WA 98101" +173266,ThinkPad Laptop,1,999.99,03/08/19 10:37,"682 4th St, Dallas, TX 75001" +173267,Bose SoundSport Headphones,1,99.99,03/31/19 18:42,"664 6th St, San Francisco, CA 94016" +173268,Bose SoundSport Headphones,1,99.99,03/15/19 20:07,"822 6th St, San Francisco, CA 94016" +173269,27in FHD Monitor,1,149.99,03/12/19 21:27,"620 Pine St, Los Angeles, CA 90001" +173270,AAA Batteries (4-pack),3,2.99,03/22/19 23:49,"822 Main St, New York City, NY 10001" +173271,AAA Batteries (4-pack),1,2.99,03/06/19 05:25,"592 Washington St, Boston, MA 02215" +,,,,, +173272,AA Batteries (4-pack),1,3.84,03/05/19 10:27,"104 6th St, New York City, NY 10001" +173273,USB-C Charging Cable,1,11.95,03/17/19 22:54,"452 Center St, Seattle, WA 98101" +173274,AA Batteries (4-pack),1,3.84,03/03/19 12:36,"621 Highland St, Austin, TX 73301" +173275,20in Monitor,1,109.99,03/25/19 18:13,"401 4th St, New York City, NY 10001" +173276,USB-C Charging Cable,1,11.95,03/28/19 22:10,"514 2nd St, Boston, MA 02215" +173277,AA Batteries (4-pack),1,3.84,03/09/19 00:10,"990 7th St, Dallas, TX 75001" +173278,AAA Batteries (4-pack),1,2.99,03/20/19 21:13,"568 Spruce St, San Francisco, CA 94016" +173279,AA Batteries (4-pack),1,3.84,03/27/19 00:29,"773 Lincoln St, Dallas, TX 75001" +173280,AA Batteries (4-pack),3,3.84,03/03/19 21:46,"111 Lincoln St, Atlanta, GA 30301" +173281,AAA Batteries (4-pack),2,2.99,03/22/19 13:41,"896 Meadow St, San Francisco, CA 94016" +173282,Wired Headphones,1,11.99,03/24/19 13:59,"156 Chestnut St, Boston, MA 02215" +173283,27in FHD Monitor,1,149.99,03/25/19 08:52,"393 14th St, Los Angeles, CA 90001" +173284,Wired Headphones,1,11.99,03/07/19 01:23,"2 Forest St, Los Angeles, CA 90001" +173285,iPhone,1,700,03/01/19 17:41,"524 Lincoln St, Atlanta, GA 30301" +173286,27in 4K Gaming Monitor,1,389.99,03/21/19 10:27,"879 12th St, Portland, OR 97035" +173287,AAA Batteries (4-pack),1,2.99,03/25/19 17:20,"649 Jefferson St, San Francisco, CA 94016" +173288,Google Phone,1,600,03/19/19 11:49,"287 13th St, San Francisco, CA 94016" +173289,USB-C Charging Cable,1,11.95,03/29/19 13:28,"240 Lincoln St, Austin, TX 73301" +173289,27in 4K Gaming Monitor,1,389.99,03/29/19 13:28,"240 Lincoln St, Austin, TX 73301" +173290,Lightning Charging Cable,1,14.95,03/17/19 18:18,"245 Spruce St, San Francisco, CA 94016" +173291,Lightning Charging Cable,1,14.95,03/11/19 12:38,"433 4th St, Boston, MA 02215" +173292,Bose SoundSport Headphones,1,99.99,03/22/19 18:09,"398 Willow St, Seattle, WA 98101" +173293,iPhone,1,700,03/08/19 00:15,"747 Maple St, San Francisco, CA 94016" +173293,Apple Airpods Headphones,1,150,03/08/19 00:15,"747 Maple St, San Francisco, CA 94016" +,,,,, +173294,AA Batteries (4-pack),1,3.84,03/29/19 14:27,"951 Lakeview St, Portland, OR 97035" +173295,AA Batteries (4-pack),1,3.84,03/30/19 18:09,"203 Church St, Austin, TX 73301" +173296,AAA Batteries (4-pack),2,2.99,03/30/19 17:14,"575 1st St, New York City, NY 10001" +173297,Macbook Pro Laptop,1,1700,03/05/19 15:18,"614 Pine St, New York City, NY 10001" +173298,AA Batteries (4-pack),1,3.84,03/28/19 14:18,"249 Main St, New York City, NY 10001" +173299,AA Batteries (4-pack),2,3.84,03/26/19 20:45,"685 7th St, Boston, MA 02215" +173300,Lightning Charging Cable,1,14.95,03/13/19 19:18,"847 6th St, Seattle, WA 98101" +173301,27in 4K Gaming Monitor,1,389.99,03/15/19 10:27,"434 Meadow St, San Francisco, CA 94016" +173302,Wired Headphones,1,11.99,03/13/19 16:07,"158 Highland St, Dallas, TX 75001" +173303,iPhone,1,700,03/13/19 12:32,"967 6th St, San Francisco, CA 94016" +173303,Lightning Charging Cable,1,14.95,03/13/19 12:32,"967 6th St, San Francisco, CA 94016" +173303,Apple Airpods Headphones,1,150,03/13/19 12:32,"967 6th St, San Francisco, CA 94016" +173304,ThinkPad Laptop,1,999.99,03/29/19 17:46,"206 1st St, San Francisco, CA 94016" +173305,27in FHD Monitor,1,149.99,03/12/19 10:57,"670 Lake St, Seattle, WA 98101" +173306,ThinkPad Laptop,1,999.99,03/18/19 10:37,"284 8th St, Atlanta, GA 30301" +173306,Apple Airpods Headphones,1,150,03/18/19 10:37,"284 8th St, Atlanta, GA 30301" +173307,27in FHD Monitor,1,149.99,03/31/19 15:51,"951 Spruce St, San Francisco, CA 94016" +173308,AA Batteries (4-pack),1,3.84,03/18/19 06:25,"451 6th St, Portland, ME 04101" +173309,AA Batteries (4-pack),1,3.84,03/30/19 11:00,"293 Elm St, New York City, NY 10001" +173310,Google Phone,1,600,03/09/19 13:01,"490 Main St, Portland, OR 97035" +173310,USB-C Charging Cable,1,11.95,03/09/19 13:01,"490 Main St, Portland, OR 97035" +173311,Lightning Charging Cable,1,14.95,03/06/19 14:29,"729 Church St, Portland, OR 97035" +173312,34in Ultrawide Monitor,1,379.99,03/14/19 22:34,"911 13th St, San Francisco, CA 94016" +173313,iPhone,1,700,03/28/19 08:26,"408 Main St, San Francisco, CA 94016" +173314,USB-C Charging Cable,1,11.95,03/14/19 22:04,"942 River St, Seattle, WA 98101" +173315,AA Batteries (4-pack),1,3.84,03/23/19 21:31,"935 North St, San Francisco, CA 94016" +173316,Lightning Charging Cable,1,14.95,03/07/19 20:18,"910 West St, San Francisco, CA 94016" +173317,34in Ultrawide Monitor,1,379.99,03/15/19 18:10,"693 11th St, Austin, TX 73301" +173318,Bose SoundSport Headphones,1,99.99,03/21/19 20:46,"947 Lakeview St, San Francisco, CA 94016" +173319,Wired Headphones,1,11.99,03/16/19 20:04,"699 Sunset St, Portland, OR 97035" +173320,Wired Headphones,1,11.99,03/30/19 11:48,"354 Hickory St, Dallas, TX 75001" +173321,Lightning Charging Cable,1,14.95,03/08/19 14:58,"632 Maple St, Austin, TX 73301" +173322,Flatscreen TV,1,300,03/04/19 18:50,"232 2nd St, San Francisco, CA 94016" +173323,USB-C Charging Cable,1,11.95,03/01/19 17:08,"623 Church St, San Francisco, CA 94016" +173324,Macbook Pro Laptop,1,1700,03/29/19 23:58,"393 Johnson St, Atlanta, GA 30301" +173325,AA Batteries (4-pack),1,3.84,03/06/19 10:37,"221 Adams St, Los Angeles, CA 90001" +173326,AA Batteries (4-pack),1,3.84,03/09/19 13:12,"295 Lake St, San Francisco, CA 94016" +173327,Apple Airpods Headphones,1,150,03/27/19 11:00,"354 Main St, Portland, OR 97035" +173328,Apple Airpods Headphones,1,150,03/14/19 06:28,"283 Willow St, Dallas, TX 75001" +173329,Wired Headphones,1,11.99,03/24/19 22:57,"976 13th St, Seattle, WA 98101" +173330,USB-C Charging Cable,1,11.95,03/13/19 08:55,"749 Church St, Dallas, TX 75001" +173331,Flatscreen TV,1,300,03/14/19 18:14,"391 Meadow St, Dallas, TX 75001" +173332,27in FHD Monitor,1,149.99,03/06/19 00:43,"489 Jefferson St, San Francisco, CA 94016" +173333,Wired Headphones,1,11.99,03/11/19 13:16,"49 Meadow St, New York City, NY 10001" +173334,Flatscreen TV,1,300,03/10/19 22:29,"244 West St, Atlanta, GA 30301" +173335,27in FHD Monitor,1,149.99,03/24/19 11:48,"94 Park St, Seattle, WA 98101" +173336,Lightning Charging Cable,1,14.95,03/24/19 16:01,"849 1st St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +173337,Macbook Pro Laptop,1,1700,03/16/19 22:44,"30 River St, San Francisco, CA 94016" +173338,Bose SoundSport Headphones,1,99.99,03/06/19 11:08,"599 Highland St, Los Angeles, CA 90001" +173339,USB-C Charging Cable,1,11.95,03/09/19 15:34,"688 Lakeview St, Atlanta, GA 30301" +173340,AA Batteries (4-pack),1,3.84,03/22/19 09:41,"825 Sunset St, Los Angeles, CA 90001" +173341,iPhone,1,700,03/07/19 20:00,"857 River St, Atlanta, GA 30301" +173342,Apple Airpods Headphones,1,150,03/04/19 20:19,"798 Willow St, Seattle, WA 98101" +173343,AA Batteries (4-pack),1,3.84,03/13/19 07:12,"212 North St, San Francisco, CA 94016" +173344,Bose SoundSport Headphones,1,99.99,03/14/19 14:46,"660 10th St, San Francisco, CA 94016" +173345,27in 4K Gaming Monitor,1,389.99,03/20/19 14:31,"991 Cherry St, Dallas, TX 75001" +173346,AA Batteries (4-pack),1,3.84,03/04/19 20:45,"791 1st St, San Francisco, CA 94016" +173347,Macbook Pro Laptop,1,1700,03/11/19 21:52,"403 11th St, San Francisco, CA 94016" +173348,AA Batteries (4-pack),1,3.84,03/14/19 00:33,"975 2nd St, Boston, MA 02215" +173349,Lightning Charging Cable,1,14.95,03/15/19 22:01,"285 5th St, Boston, MA 02215" +173350,AA Batteries (4-pack),2,3.84,03/02/19 19:56,"901 Adams St, Boston, MA 02215" +173351,20in Monitor,1,109.99,03/22/19 00:29,"728 Madison St, Portland, OR 97035" +173352,Lightning Charging Cable,1,14.95,03/05/19 18:55,"358 South St, Seattle, WA 98101" +173352,Bose SoundSport Headphones,1,99.99,03/05/19 18:55,"358 South St, Seattle, WA 98101" +173353,27in 4K Gaming Monitor,1,389.99,03/12/19 20:02,"737 5th St, Portland, OR 97035" +173354,AA Batteries (4-pack),1,3.84,03/21/19 17:42,"725 Washington St, New York City, NY 10001" +173355,AAA Batteries (4-pack),1,2.99,03/24/19 10:18,"875 Madison St, San Francisco, CA 94016" +173356,AAA Batteries (4-pack),1,2.99,03/31/19 10:18,"97 Jackson St, New York City, NY 10001" +173357,Lightning Charging Cable,1,14.95,03/30/19 08:38,"603 10th St, New York City, NY 10001" +173358,Lightning Charging Cable,1,14.95,03/02/19 17:15,"987 Church St, Los Angeles, CA 90001" +173359,USB-C Charging Cable,1,11.95,03/29/19 19:36,"640 9th St, Seattle, WA 98101" +173360,AAA Batteries (4-pack),1,2.99,03/21/19 20:24,"436 4th St, Los Angeles, CA 90001" +173361,20in Monitor,1,109.99,03/15/19 16:52,"513 Dogwood St, Boston, MA 02215" +173362,34in Ultrawide Monitor,1,379.99,03/02/19 20:56,"486 Park St, Boston, MA 02215" +173363,Apple Airpods Headphones,1,150,03/02/19 23:15,"970 Ridge St, Boston, MA 02215" +173364,Wired Headphones,1,11.99,03/24/19 12:22,"217 Wilson St, Los Angeles, CA 90001" +173365,Flatscreen TV,1,300,03/18/19 09:24,"277 Willow St, Austin, TX 73301" +173366,Wired Headphones,1,11.99,03/03/19 14:30,"541 4th St, San Francisco, CA 94016" +173367,Apple Airpods Headphones,1,150,03/14/19 17:35,"285 6th St, San Francisco, CA 94016" +173368,27in FHD Monitor,1,149.99,03/31/19 04:24,"558 River St, Los Angeles, CA 90001" +173369,27in FHD Monitor,1,149.99,03/01/19 14:39,"531 Willow St, Dallas, TX 75001" +173370,Wired Headphones,1,11.99,03/21/19 16:54,"529 Park St, Dallas, TX 75001" +173371,USB-C Charging Cable,1,11.95,03/27/19 17:04,"592 Cedar St, Boston, MA 02215" +173372,Wired Headphones,1,11.99,03/09/19 16:25,"296 North St, Portland, ME 04101" +173373,Lightning Charging Cable,2,14.95,03/15/19 00:41,"853 Lakeview St, Los Angeles, CA 90001" +173374,34in Ultrawide Monitor,1,379.99,03/20/19 06:42,"247 Hickory St, San Francisco, CA 94016" +173375,Flatscreen TV,1,300,03/09/19 17:58,"284 Willow St, Portland, OR 97035" +173376,Wired Headphones,2,11.99,03/23/19 09:08,"551 Johnson St, Los Angeles, CA 90001" +173377,AA Batteries (4-pack),2,3.84,03/05/19 23:19,"89 Wilson St, Portland, OR 97035" +173378,AA Batteries (4-pack),4,3.84,03/12/19 21:51,"241 7th St, Dallas, TX 75001" +173379,Lightning Charging Cable,1,14.95,03/16/19 13:51,"505 Wilson St, San Francisco, CA 94016" +173380,Wired Headphones,1,11.99,03/24/19 19:32,"66 Forest St, Austin, TX 73301" +173381,AA Batteries (4-pack),1,3.84,03/28/19 11:43,"737 7th St, Portland, OR 97035" +173382,Bose SoundSport Headphones,1,99.99,03/28/19 14:04,"618 11th St, Dallas, TX 75001" +173383,AA Batteries (4-pack),1,3.84,03/13/19 22:54,"787 Jefferson St, Boston, MA 02215" +173384,ThinkPad Laptop,1,999.99,03/03/19 07:42,"432 Center St, New York City, NY 10001" +173385,20in Monitor,1,109.99,03/18/19 11:28,"981 Pine St, Atlanta, GA 30301" +173386,Wired Headphones,1,11.99,03/30/19 11:38,"926 Chestnut St, San Francisco, CA 94016" +173387,USB-C Charging Cable,1,11.95,03/28/19 09:31,"456 Forest St, San Francisco, CA 94016" +173388,Lightning Charging Cable,1,14.95,03/23/19 20:03,"847 Church St, Seattle, WA 98101" +173389,AA Batteries (4-pack),1,3.84,03/01/19 14:18,"529 Park St, Dallas, TX 75001" +173390,Bose SoundSport Headphones,1,99.99,03/10/19 17:45,"456 1st St, Seattle, WA 98101" +173391,Bose SoundSport Headphones,1,99.99,03/11/19 10:47,"216 Cherry St, San Francisco, CA 94016" +173392,USB-C Charging Cable,1,11.95,03/08/19 11:22,"316 South St, Atlanta, GA 30301" +173393,Lightning Charging Cable,1,14.95,03/19/19 13:13,"295 Cedar St, Los Angeles, CA 90001" +173394,Lightning Charging Cable,1,14.95,03/18/19 15:59,"932 River St, Austin, TX 73301" +173395,27in FHD Monitor,1,149.99,03/28/19 17:01,"128 River St, Atlanta, GA 30301" +173396,iPhone,1,700,03/12/19 00:54,"597 Highland St, Dallas, TX 75001" +173396,Lightning Charging Cable,1,14.95,03/12/19 00:54,"597 Highland St, Dallas, TX 75001" +173397,Wired Headphones,1,11.99,03/11/19 15:04,"786 Maple St, Boston, MA 02215" +173398,USB-C Charging Cable,1,11.95,03/11/19 12:11,"69 Cherry St, Los Angeles, CA 90001" +173399,AAA Batteries (4-pack),5,2.99,03/31/19 19:19,"377 14th St, Austin, TX 73301" +173400,AAA Batteries (4-pack),1,2.99,03/16/19 16:16,"483 Chestnut St, Los Angeles, CA 90001" +173401,USB-C Charging Cable,1,11.95,03/13/19 11:18,"17 13th St, Atlanta, GA 30301" +173402,USB-C Charging Cable,1,11.95,03/30/19 15:48,"752 Forest St, Atlanta, GA 30301" +173403,ThinkPad Laptop,1,999.99,03/24/19 09:02,"597 Chestnut St, San Francisco, CA 94016" +173404,Lightning Charging Cable,2,14.95,03/05/19 17:14,"174 Chestnut St, Dallas, TX 75001" +173405,ThinkPad Laptop,1,999.99,03/10/19 15:16,"684 Pine St, San Francisco, CA 94016" +173406,Lightning Charging Cable,1,14.95,03/20/19 11:35,"109 8th St, Portland, OR 97035" +173407,iPhone,1,700,03/14/19 21:45,"694 Chestnut St, Los Angeles, CA 90001" +173408,USB-C Charging Cable,1,11.95,03/18/19 12:32,"228 Dogwood St, New York City, NY 10001" +173409,27in 4K Gaming Monitor,1,389.99,03/13/19 11:31,"925 Lincoln St, Los Angeles, CA 90001" +173410,Wired Headphones,1,11.99,03/28/19 20:37,"842 Main St, Los Angeles, CA 90001" +173411,Lightning Charging Cable,1,14.95,03/17/19 11:56,"501 Madison St, Atlanta, GA 30301" +173412,34in Ultrawide Monitor,1,379.99,03/28/19 20:00,"238 1st St, Seattle, WA 98101" +173413,Google Phone,1,600,03/08/19 21:35,"243 7th St, Boston, MA 02215" +173414,Apple Airpods Headphones,1,150,03/26/19 20:57,"787 South St, Atlanta, GA 30301" +173415,34in Ultrawide Monitor,1,379.99,03/11/19 22:06,"335 Johnson St, San Francisco, CA 94016" +173416,Bose SoundSport Headphones,1,99.99,03/08/19 17:36,"865 5th St, Boston, MA 02215" +173417,Apple Airpods Headphones,1,150,03/21/19 05:02,"440 Walnut St, Los Angeles, CA 90001" +173418,Lightning Charging Cable,1,14.95,03/18/19 09:21,"514 2nd St, Los Angeles, CA 90001" +173419,27in FHD Monitor,1,149.99,03/07/19 10:48,"238 6th St, Boston, MA 02215" +173420,AA Batteries (4-pack),1,3.84,03/10/19 22:14,"215 Meadow St, Atlanta, GA 30301" +173421,Google Phone,1,600,03/30/19 12:58,"819 Spruce St, Boston, MA 02215" +173421,USB-C Charging Cable,1,11.95,03/30/19 12:58,"819 Spruce St, Boston, MA 02215" +173422,Bose SoundSport Headphones,1,99.99,03/12/19 10:55,"245 Wilson St, Portland, OR 97035" +173423,Wired Headphones,1,11.99,03/08/19 12:42,"976 Willow St, New York City, NY 10001" +173424,AA Batteries (4-pack),2,3.84,03/08/19 06:43,"33 West St, Dallas, TX 75001" +173425,Bose SoundSport Headphones,1,99.99,03/30/19 13:19,"862 Forest St, San Francisco, CA 94016" +173426,27in 4K Gaming Monitor,1,389.99,03/03/19 14:21,"625 Pine St, San Francisco, CA 94016" +173427,Apple Airpods Headphones,1,150,03/31/19 14:08,"469 Hill St, Seattle, WA 98101" +173428,34in Ultrawide Monitor,1,379.99,03/02/19 08:52,"397 9th St, New York City, NY 10001" +173429,Bose SoundSport Headphones,1,99.99,03/11/19 23:29,"510 Park St, Atlanta, GA 30301" +173430,Apple Airpods Headphones,1,150,03/14/19 13:35,"659 North St, New York City, NY 10001" +173431,ThinkPad Laptop,1,999.99,03/28/19 12:22,"468 Lake St, San Francisco, CA 94016" +173432,Bose SoundSport Headphones,1,99.99,03/21/19 12:28,"417 Lake St, Atlanta, GA 30301" +173433,AAA Batteries (4-pack),2,2.99,03/18/19 20:38,"825 Cedar St, Boston, MA 02215" +173433,Wired Headphones,1,11.99,03/18/19 20:38,"825 Cedar St, Boston, MA 02215" +173434,USB-C Charging Cable,1,11.95,03/22/19 17:28,"226 Adams St, Los Angeles, CA 90001" +173435,AA Batteries (4-pack),1,3.84,03/21/19 13:33,"688 Hickory St, San Francisco, CA 94016" +173436,Macbook Pro Laptop,1,1700,03/04/19 16:31,"626 Dogwood St, Los Angeles, CA 90001" +173437,AAA Batteries (4-pack),1,2.99,03/26/19 16:41,"966 Hill St, Dallas, TX 75001" +173438,Apple Airpods Headphones,1,150,03/08/19 13:21,"50 Main St, San Francisco, CA 94016" +173439,Wired Headphones,1,11.99,03/09/19 17:11,"492 14th St, Austin, TX 73301" +173440,27in FHD Monitor,1,149.99,03/18/19 19:32,"909 Center St, San Francisco, CA 94016" +173441,Lightning Charging Cable,1,14.95,03/23/19 14:29,"217 Walnut St, Boston, MA 02215" +173442,27in 4K Gaming Monitor,1,389.99,03/08/19 13:31,"423 Meadow St, San Francisco, CA 94016" +173443,AAA Batteries (4-pack),1,2.99,03/05/19 18:59,"410 Willow St, San Francisco, CA 94016" +173444,Apple Airpods Headphones,1,150,03/29/19 09:37,"513 Cedar St, New York City, NY 10001" +173445,AA Batteries (4-pack),2,3.84,03/18/19 05:20,"150 Cedar St, Portland, OR 97035" +173446,Apple Airpods Headphones,1,150,03/15/19 18:59,"895 9th St, Portland, OR 97035" +173447,Bose SoundSport Headphones,1,99.99,03/10/19 09:41,"391 Washington St, Seattle, WA 98101" +173447,ThinkPad Laptop,1,999.99,03/10/19 09:41,"391 Washington St, Seattle, WA 98101" +173448,AA Batteries (4-pack),1,3.84,03/07/19 05:40,"14 14th St, Dallas, TX 75001" +173449,iPhone,1,700,03/12/19 17:19,"385 14th St, San Francisco, CA 94016" +173450,34in Ultrawide Monitor,1,379.99,03/28/19 20:13,"7 Walnut St, Boston, MA 02215" +173451,AA Batteries (4-pack),1,3.84,03/28/19 20:41,"778 1st St, Atlanta, GA 30301" +173452,AAA Batteries (4-pack),2,2.99,03/16/19 13:33,"749 West St, San Francisco, CA 94016" +173453,USB-C Charging Cable,1,11.95,03/29/19 19:01,"744 5th St, Dallas, TX 75001" +173454,AAA Batteries (4-pack),1,2.99,03/20/19 13:02,"44 Washington St, San Francisco, CA 94016" +173455,USB-C Charging Cable,1,11.95,03/12/19 11:36,"301 1st St, San Francisco, CA 94016" +173456,Wired Headphones,2,11.99,03/02/19 12:49,"618 Meadow St, New York City, NY 10001" +173457,Lightning Charging Cable,1,14.95,03/08/19 15:01,"560 Meadow St, Los Angeles, CA 90001" +173458,AA Batteries (4-pack),1,3.84,03/28/19 06:40,"788 2nd St, Portland, OR 97035" +173459,Google Phone,1,600,03/29/19 22:12,"318 Jefferson St, Atlanta, GA 30301" +173460,Wired Headphones,1,11.99,03/15/19 16:04,"675 River St, New York City, NY 10001" +173461,Apple Airpods Headphones,1,150,03/26/19 12:46,"886 5th St, Dallas, TX 75001" +173462,Lightning Charging Cable,1,14.95,03/10/19 20:56,"167 Madison St, Portland, OR 97035" +173463,USB-C Charging Cable,1,11.95,03/26/19 14:35,"741 Jackson St, San Francisco, CA 94016" +173464,Wired Headphones,1,11.99,03/17/19 16:04,"18 10th St, New York City, NY 10001" +173465,Lightning Charging Cable,1,14.95,03/10/19 10:33,"317 Chestnut St, Boston, MA 02215" +173466,iPhone,1,700,03/17/19 20:55,"6 Jackson St, Austin, TX 73301" +173466,Lightning Charging Cable,1,14.95,03/17/19 20:55,"6 Jackson St, Austin, TX 73301" +173467,Bose SoundSport Headphones,1,99.99,03/28/19 10:01,"289 Willow St, San Francisco, CA 94016" +173468,LG Washing Machine,1,600.0,03/22/19 19:44,"901 Park St, San Francisco, CA 94016" +173469,Apple Airpods Headphones,1,150,03/29/19 22:46,"835 Wilson St, Dallas, TX 75001" +173470,Lightning Charging Cable,1,14.95,03/11/19 20:31,"684 Madison St, San Francisco, CA 94016" +173471,Bose SoundSport Headphones,1,99.99,03/05/19 15:04,"536 13th St, New York City, NY 10001" +173472,Wired Headphones,1,11.99,03/07/19 18:42,"592 Meadow St, Los Angeles, CA 90001" +173473,USB-C Charging Cable,1,11.95,03/07/19 09:38,"578 Maple St, Austin, TX 73301" +173474,AAA Batteries (4-pack),1,2.99,03/25/19 09:18,"720 West St, Boston, MA 02215" +173475,34in Ultrawide Monitor,1,379.99,03/26/19 15:10,"511 Cherry St, Los Angeles, CA 90001" +173476,Flatscreen TV,1,300,03/26/19 18:47,"194 Jackson St, San Francisco, CA 94016" +173477,27in FHD Monitor,2,149.99,03/01/19 23:13,"88 South St, San Francisco, CA 94016" +173478,ThinkPad Laptop,1,999.99,03/27/19 18:49,"278 Cherry St, Los Angeles, CA 90001" +173479,USB-C Charging Cable,1,11.95,03/05/19 11:20,"92 Lake St, San Francisco, CA 94016" +173480,Bose SoundSport Headphones,1,99.99,03/22/19 10:09,"333 2nd St, San Francisco, CA 94016" +173480,Wired Headphones,1,11.99,03/22/19 10:09,"333 2nd St, San Francisco, CA 94016" +173481,Flatscreen TV,1,300,03/16/19 19:00,"863 14th St, Seattle, WA 98101" +173482,Flatscreen TV,1,300,03/21/19 17:00,"700 Wilson St, Los Angeles, CA 90001" +173483,USB-C Charging Cable,1,11.95,03/03/19 02:12,"562 Cedar St, San Francisco, CA 94016" +173484,Lightning Charging Cable,1,14.95,03/12/19 09:37,"471 14th St, Los Angeles, CA 90001" +173485,AA Batteries (4-pack),1,3.84,03/19/19 13:53,"177 River St, San Francisco, CA 94016" +173486,34in Ultrawide Monitor,1,379.99,03/05/19 22:00,"297 River St, Los Angeles, CA 90001" +173487,Wired Headphones,1,11.99,03/05/19 09:33,"121 Church St, Los Angeles, CA 90001" +173488,Wired Headphones,1,11.99,03/22/19 13:48,"381 Cherry St, Atlanta, GA 30301" +173489,Apple Airpods Headphones,1,150,03/21/19 13:07,"357 West St, Los Angeles, CA 90001" +173490,AAA Batteries (4-pack),3,2.99,03/17/19 15:21,"547 Washington St, San Francisco, CA 94016" +173491,Macbook Pro Laptop,1,1700,03/16/19 14:38,"522 Hill St, Seattle, WA 98101" +173492,AA Batteries (4-pack),1,3.84,03/06/19 16:38,"289 Jackson St, Atlanta, GA 30301" +173493,Lightning Charging Cable,1,14.95,03/25/19 15:12,"707 Lincoln St, Boston, MA 02215" +173494,AA Batteries (4-pack),1,3.84,03/09/19 09:15,"576 1st St, New York City, NY 10001" +173495,AAA Batteries (4-pack),2,2.99,03/14/19 18:45,"996 Sunset St, New York City, NY 10001" +173496,20in Monitor,1,109.99,03/29/19 18:54,"386 12th St, Atlanta, GA 30301" +173497,Lightning Charging Cable,1,14.95,03/27/19 10:42,"191 Forest St, Seattle, WA 98101" +173498,27in 4K Gaming Monitor,1,389.99,03/09/19 13:04,"346 Hickory St, Boston, MA 02215" +173499,AA Batteries (4-pack),2,3.84,03/06/19 22:19,"902 Pine St, Austin, TX 73301" +173500,Flatscreen TV,1,300,03/05/19 19:13,"598 Forest St, San Francisco, CA 94016" +173501,27in 4K Gaming Monitor,1,389.99,03/11/19 00:39,"261 Cedar St, Los Angeles, CA 90001" +173502,27in FHD Monitor,1,149.99,03/10/19 07:17,"411 Adams St, San Francisco, CA 94016" +173503,27in FHD Monitor,1,149.99,03/30/19 12:40,"614 Forest St, Los Angeles, CA 90001" +173504,Bose SoundSport Headphones,1,99.99,03/26/19 22:04,"532 Spruce St, San Francisco, CA 94016" +173505,Apple Airpods Headphones,1,150,03/16/19 16:01,"779 Meadow St, San Francisco, CA 94016" +173506,USB-C Charging Cable,1,11.95,03/05/19 10:58,"185 South St, San Francisco, CA 94016" +173507,Flatscreen TV,1,300,03/01/19 05:04,"429 Spruce St, Los Angeles, CA 90001" +173508,Lightning Charging Cable,1,14.95,03/31/19 10:46,"123 7th St, New York City, NY 10001" +173509,Apple Airpods Headphones,1,150,03/28/19 22:08,"571 Cherry St, Atlanta, GA 30301" +173510,iPhone,1,700,03/23/19 18:50,"420 Johnson St, San Francisco, CA 94016" +173511,AA Batteries (4-pack),1,3.84,03/09/19 11:13,"884 Madison St, San Francisco, CA 94016" +173512,AAA Batteries (4-pack),4,2.99,03/05/19 19:20,"920 Ridge St, Boston, MA 02215" +173513,Lightning Charging Cable,1,14.95,03/05/19 18:58,"419 4th St, Los Angeles, CA 90001" +173514,20in Monitor,1,109.99,03/21/19 06:38,"199 Meadow St, San Francisco, CA 94016" +173515,Flatscreen TV,1,300,03/16/19 19:06,"610 Lake St, Los Angeles, CA 90001" +173516,27in FHD Monitor,1,149.99,03/14/19 19:49,"220 West St, Austin, TX 73301" +173517,Flatscreen TV,1,300,03/03/19 09:32,"260 Dogwood St, Austin, TX 73301" +173518,Wired Headphones,1,11.99,03/02/19 19:44,"692 South St, Los Angeles, CA 90001" +173519,Macbook Pro Laptop,1,1700,03/11/19 14:00,"880 Lincoln St, Boston, MA 02215" +173520,Lightning Charging Cable,1,14.95,03/18/19 17:47,"452 Maple St, San Francisco, CA 94016" +173521,Vareebadd Phone,1,400,03/05/19 12:18,"975 Lincoln St, Boston, MA 02215" +173522,Apple Airpods Headphones,1,150,03/04/19 16:06,"355 Cedar St, San Francisco, CA 94016" +173523,AA Batteries (4-pack),1,3.84,03/15/19 01:55,"920 1st St, Austin, TX 73301" +173524,Apple Airpods Headphones,1,150,03/19/19 12:25,"608 Lincoln St, New York City, NY 10001" +173525,AA Batteries (4-pack),1,3.84,03/14/19 12:14,"165 13th St, New York City, NY 10001" +173526,Google Phone,1,600,03/06/19 17:01,"444 Main St, Los Angeles, CA 90001" +173527,34in Ultrawide Monitor,1,379.99,03/20/19 10:34,"960 Jefferson St, San Francisco, CA 94016" +173528,Apple Airpods Headphones,1,150,03/15/19 14:36,"104 Elm St, Boston, MA 02215" +173529,AAA Batteries (4-pack),1,2.99,03/03/19 20:50,"368 Chestnut St, Dallas, TX 75001" +173530,Bose SoundSport Headphones,1,99.99,03/31/19 11:38,"582 Church St, Seattle, WA 98101" +173531,Wired Headphones,1,11.99,03/20/19 07:27,"591 14th St, Seattle, WA 98101" +173532,USB-C Charging Cable,1,11.95,03/14/19 16:22,"371 Meadow St, Atlanta, GA 30301" +173533,AA Batteries (4-pack),1,3.84,03/31/19 00:40,"696 Lakeview St, Austin, TX 73301" +173534,AAA Batteries (4-pack),1,2.99,03/17/19 00:12,"280 2nd St, Los Angeles, CA 90001" +173535,Wired Headphones,2,11.99,03/22/19 09:31,"718 South St, Boston, MA 02215" +173536,AA Batteries (4-pack),1,3.84,03/24/19 22:00,"494 Washington St, Los Angeles, CA 90001" +173537,Bose SoundSport Headphones,1,99.99,03/04/19 22:46,"893 Center St, Portland, OR 97035" +173538,27in FHD Monitor,1,149.99,03/27/19 11:28,"366 10th St, Dallas, TX 75001" +173539,20in Monitor,1,109.99,03/09/19 14:44,"540 North St, Dallas, TX 75001" +173540,Bose SoundSport Headphones,1,99.99,03/30/19 14:23,"288 River St, Seattle, WA 98101" +173541,USB-C Charging Cable,1,11.95,03/12/19 03:50,"860 5th St, Los Angeles, CA 90001" +173542,AA Batteries (4-pack),1,3.84,03/07/19 14:40,"163 Willow St, New York City, NY 10001" +173543,Bose SoundSport Headphones,1,99.99,03/30/19 11:27,"537 Willow St, San Francisco, CA 94016" +173544,27in 4K Gaming Monitor,1,389.99,03/24/19 18:30,"239 14th St, San Francisco, CA 94016" +173545,AA Batteries (4-pack),1,3.84,03/12/19 19:15,"268 11th St, Dallas, TX 75001" +173546,Wired Headphones,2,11.99,03/20/19 16:11,"726 9th St, New York City, NY 10001" +173547,Google Phone,1,600,03/29/19 10:06,"4 Dogwood St, New York City, NY 10001" +173547,USB-C Charging Cable,1,11.95,03/29/19 10:06,"4 Dogwood St, New York City, NY 10001" +173548,Vareebadd Phone,1,400,03/15/19 16:54,"373 Lake St, New York City, NY 10001" +173549,Apple Airpods Headphones,1,150,03/27/19 15:10,"707 Main St, Boston, MA 02215" +173550,AA Batteries (4-pack),1,3.84,03/02/19 10:56,"825 Elm St, Boston, MA 02215" +173551,Macbook Pro Laptop,1,1700,03/25/19 17:31,"590 Lake St, Atlanta, GA 30301" +173552,27in FHD Monitor,1,149.99,03/03/19 15:40,"938 Church St, San Francisco, CA 94016" +173553,Wired Headphones,2,11.99,03/24/19 19:46,"660 Washington St, New York City, NY 10001" +173554,USB-C Charging Cable,1,11.95,03/17/19 18:00,"836 Washington St, New York City, NY 10001" +173555,AAA Batteries (4-pack),1,2.99,03/25/19 10:35,"275 Johnson St, Seattle, WA 98101" +173556,AA Batteries (4-pack),1,3.84,03/24/19 22:57,"411 Highland St, San Francisco, CA 94016" +173557,34in Ultrawide Monitor,1,379.99,03/11/19 12:00,"717 Park St, San Francisco, CA 94016" +173558,Macbook Pro Laptop,1,1700,03/03/19 14:15,"487 Lincoln St, Boston, MA 02215" +173559,Vareebadd Phone,1,400,03/22/19 10:35,"336 Jackson St, San Francisco, CA 94016" +173560,Google Phone,1,600,03/27/19 11:46,"260 Lake St, Los Angeles, CA 90001" +173561,Bose SoundSport Headphones,1,99.99,03/05/19 13:36,"853 Main St, Atlanta, GA 30301" +173562,Bose SoundSport Headphones,1,99.99,03/10/19 22:49,"356 Ridge St, New York City, NY 10001" +173563,27in 4K Gaming Monitor,1,389.99,03/31/19 19:34,"264 2nd St, Los Angeles, CA 90001" +173564,iPhone,1,700,03/25/19 20:17,"549 Pine St, Portland, OR 97035" +173565,Macbook Pro Laptop,1,1700,03/30/19 13:01,"871 Cedar St, Los Angeles, CA 90001" +173566,AA Batteries (4-pack),3,3.84,03/17/19 15:25,"424 Madison St, Atlanta, GA 30301" +173567,Bose SoundSport Headphones,1,99.99,03/10/19 11:46,"35 Center St, San Francisco, CA 94016" +173568,Lightning Charging Cable,1,14.95,03/25/19 09:34,"701 Lake St, Boston, MA 02215" +173569,Google Phone,1,600,03/16/19 12:06,"296 Lake St, Boston, MA 02215" +173570,Apple Airpods Headphones,1,150,03/02/19 14:25,"276 Center St, Portland, ME 04101" +173571,AAA Batteries (4-pack),1,2.99,03/14/19 19:07,"674 4th St, New York City, NY 10001" +173572,AAA Batteries (4-pack),2,2.99,03/29/19 07:06,"367 1st St, Seattle, WA 98101" +173573,AAA Batteries (4-pack),2,2.99,03/18/19 13:57,"623 Madison St, Dallas, TX 75001" +173574,USB-C Charging Cable,1,11.95,03/30/19 12:34,"333 2nd St, New York City, NY 10001" +173575,USB-C Charging Cable,1,11.95,03/06/19 10:22,"438 Center St, Portland, OR 97035" +173576,ThinkPad Laptop,1,999.99,03/22/19 12:43,"514 Cherry St, Los Angeles, CA 90001" +173577,AAA Batteries (4-pack),1,2.99,03/15/19 20:29,"706 Highland St, San Francisco, CA 94016" +173578,Apple Airpods Headphones,1,150,03/24/19 18:23,"895 South St, Los Angeles, CA 90001" +173579,Apple Airpods Headphones,1,150,03/19/19 13:50,"183 9th St, Portland, OR 97035" +173580,Wired Headphones,1,11.99,03/13/19 11:24,"662 Church St, San Francisco, CA 94016" +173581,AAA Batteries (4-pack),1,2.99,03/08/19 10:17,"770 Cherry St, New York City, NY 10001" +173582,AA Batteries (4-pack),1,3.84,03/28/19 10:28,"914 Dogwood St, Seattle, WA 98101" +173583,Flatscreen TV,1,300,03/31/19 07:38,"620 Lincoln St, San Francisco, CA 94016" +173584,USB-C Charging Cable,1,11.95,03/04/19 07:55,"225 Main St, Boston, MA 02215" +173585,Macbook Pro Laptop,1,1700,03/26/19 09:39,"234 Wilson St, Seattle, WA 98101" +173586,Apple Airpods Headphones,1,150,03/09/19 10:34,"983 Pine St, Seattle, WA 98101" +173587,Bose SoundSport Headphones,1,99.99,03/14/19 21:52,"974 8th St, Portland, OR 97035" +173588,Bose SoundSport Headphones,1,99.99,03/08/19 12:01,"350 Wilson St, San Francisco, CA 94016" +173589,AAA Batteries (4-pack),1,2.99,03/27/19 20:41,"196 Highland St, San Francisco, CA 94016" +173590,USB-C Charging Cable,1,11.95,03/24/19 17:46,"501 Hill St, Los Angeles, CA 90001" +173591,AAA Batteries (4-pack),2,2.99,03/31/19 09:18,"435 10th St, Austin, TX 73301" +173592,iPhone,1,700,03/17/19 14:15,"15 Adams St, San Francisco, CA 94016" +173593,20in Monitor,1,109.99,03/06/19 13:29,"293 Meadow St, San Francisco, CA 94016" +173594,Lightning Charging Cable,1,14.95,03/11/19 07:39,"625 Chestnut St, San Francisco, CA 94016" +173595,USB-C Charging Cable,1,11.95,03/28/19 19:30,"634 River St, New York City, NY 10001" +173596,iPhone,1,700,03/10/19 19:54,"942 10th St, Atlanta, GA 30301" +173596,Lightning Charging Cable,1,14.95,03/10/19 19:54,"942 10th St, Atlanta, GA 30301" +173597,27in 4K Gaming Monitor,1,389.99,03/23/19 10:00,"492 Hill St, Dallas, TX 75001" +173598,AAA Batteries (4-pack),1,2.99,03/01/19 12:03,"386 Lincoln St, Atlanta, GA 30301" +173599,27in 4K Gaming Monitor,1,389.99,03/11/19 19:53,"392 13th St, San Francisco, CA 94016" +173600,Wired Headphones,1,11.99,03/30/19 09:05,"597 Cedar St, Boston, MA 02215" +173601,Google Phone,1,600,03/26/19 20:20,"488 Highland St, San Francisco, CA 94016" +173601,Wired Headphones,1,11.99,03/26/19 20:20,"488 Highland St, San Francisco, CA 94016" +173602,20in Monitor,1,109.99,03/14/19 18:00,"231 Center St, Seattle, WA 98101" +173603,AA Batteries (4-pack),1,3.84,03/29/19 15:09,"388 Washington St, Portland, OR 97035" +173604,Apple Airpods Headphones,1,150,03/22/19 13:44,"877 4th St, New York City, NY 10001" +173605,27in 4K Gaming Monitor,1,389.99,03/23/19 16:53,"650 8th St, San Francisco, CA 94016" +173606,34in Ultrawide Monitor,1,379.99,03/19/19 09:22,"697 Spruce St, Boston, MA 02215" +173607,Lightning Charging Cable,1,14.95,03/17/19 10:40,"241 Madison St, Boston, MA 02215" +173608,Wired Headphones,1,11.99,03/08/19 21:25,"597 Jackson St, New York City, NY 10001" +173609,Apple Airpods Headphones,1,150,03/21/19 17:31,"637 10th St, New York City, NY 10001" +173610,27in 4K Gaming Monitor,1,389.99,03/19/19 19:18,"746 Jefferson St, Atlanta, GA 30301" +173611,Bose SoundSport Headphones,1,99.99,03/04/19 18:52,"290 Walnut St, New York City, NY 10001" +173612,Macbook Pro Laptop,1,1700,03/16/19 07:10,"881 Hill St, Los Angeles, CA 90001" +173613,AAA Batteries (4-pack),1,2.99,03/04/19 15:30,"914 Spruce St, Los Angeles, CA 90001" +173614,20in Monitor,1,109.99,03/06/19 10:50,"412 Chestnut St, Seattle, WA 98101" +173615,USB-C Charging Cable,1,11.95,03/25/19 22:07,"650 Maple St, Portland, OR 97035" +173616,Wired Headphones,1,11.99,03/03/19 06:29,"433 Adams St, San Francisco, CA 94016" +173617,USB-C Charging Cable,1,11.95,03/22/19 12:41,"323 Ridge St, San Francisco, CA 94016" +173618,AA Batteries (4-pack),1,3.84,03/17/19 13:42,"315 8th St, San Francisco, CA 94016" +173619,AA Batteries (4-pack),2,3.84,03/24/19 10:17,"754 11th St, San Francisco, CA 94016" +173620,Bose SoundSport Headphones,1,99.99,03/12/19 18:34,"499 Lakeview St, San Francisco, CA 94016" +173621,USB-C Charging Cable,1,11.95,03/27/19 09:37,"300 Madison St, New York City, NY 10001" +173622,AAA Batteries (4-pack),1,2.99,03/01/19 14:46,"976 Park St, Portland, OR 97035" +173623,34in Ultrawide Monitor,1,379.99,03/12/19 20:24,"95 11th St, San Francisco, CA 94016" +173624,Macbook Pro Laptop,1,1700,03/29/19 11:33,"461 Walnut St, San Francisco, CA 94016" +173625,Bose SoundSport Headphones,1,99.99,03/05/19 16:55,"574 Chestnut St, Seattle, WA 98101" +173626,Lightning Charging Cable,1,14.95,03/07/19 20:46,"925 Dogwood St, San Francisco, CA 94016" +173627,34in Ultrawide Monitor,1,379.99,03/13/19 22:57,"957 West St, San Francisco, CA 94016" +173628,Lightning Charging Cable,1,14.95,03/30/19 10:27,"604 Pine St, Portland, OR 97035" +173629,Apple Airpods Headphones,1,150,03/02/19 13:40,"627 Cherry St, Boston, MA 02215" +173630,Wired Headphones,1,11.99,03/22/19 04:38,"301 Meadow St, Boston, MA 02215" +173631,USB-C Charging Cable,1,11.95,03/08/19 18:11,"303 Cedar St, Seattle, WA 98101" +173632,Wired Headphones,1,11.99,03/18/19 07:42,"333 8th St, Boston, MA 02215" +173633,USB-C Charging Cable,1,11.95,03/18/19 00:10,"714 6th St, San Francisco, CA 94016" +173634,iPhone,1,700,03/28/19 11:57,"712 Washington St, Dallas, TX 75001" +173635,Bose SoundSport Headphones,1,99.99,03/17/19 09:28,"252 North St, San Francisco, CA 94016" +173636,AAA Batteries (4-pack),2,2.99,03/05/19 16:47,"250 Johnson St, San Francisco, CA 94016" +173637,AA Batteries (4-pack),2,3.84,03/29/19 23:50,"767 Jefferson St, Dallas, TX 75001" +173638,AAA Batteries (4-pack),1,2.99,03/11/19 11:02,"343 Lincoln St, Seattle, WA 98101" +173639,AAA Batteries (4-pack),1,2.99,03/01/19 22:54,"939 Hill St, Los Angeles, CA 90001" +173640,AA Batteries (4-pack),1,3.84,03/19/19 20:20,"467 Cherry St, Dallas, TX 75001" +173641,Lightning Charging Cable,1,14.95,03/30/19 11:54,"359 Sunset St, Boston, MA 02215" +173642,Wired Headphones,1,11.99,03/24/19 14:44,"105 Forest St, San Francisco, CA 94016" +173643,Wired Headphones,1,11.99,03/20/19 13:20,"487 Lakeview St, New York City, NY 10001" +173644,Apple Airpods Headphones,1,150,03/09/19 17:52,"454 Elm St, San Francisco, CA 94016" +173645,AA Batteries (4-pack),1,3.84,03/06/19 01:58,"584 Wilson St, New York City, NY 10001" +173646,iPhone,1,700,03/30/19 21:21,"739 6th St, New York City, NY 10001" +173646,Lightning Charging Cable,1,14.95,03/30/19 21:21,"739 6th St, New York City, NY 10001" +173647,AAA Batteries (4-pack),1,2.99,03/20/19 21:23,"737 Center St, Los Angeles, CA 90001" +173648,Lightning Charging Cable,2,14.95,03/10/19 14:19,"396 Lake St, San Francisco, CA 94016" +173649,Google Phone,1,600,03/21/19 19:10,"427 Forest St, San Francisco, CA 94016" +173650,20in Monitor,1,109.99,03/28/19 15:37,"698 14th St, Atlanta, GA 30301" +173651,Bose SoundSport Headphones,1,99.99,03/09/19 18:49,"654 Adams St, Boston, MA 02215" +173652,Lightning Charging Cable,1,14.95,03/21/19 11:23,"931 12th St, New York City, NY 10001" +173653,Lightning Charging Cable,1,14.95,03/29/19 12:37,"362 10th St, New York City, NY 10001" +173654,Wired Headphones,1,11.99,03/03/19 12:14,"693 Madison St, Los Angeles, CA 90001" +173655,AAA Batteries (4-pack),1,2.99,03/07/19 16:56,"792 Dogwood St, Dallas, TX 75001" +173656,Lightning Charging Cable,1,14.95,03/11/19 14:29,"735 4th St, New York City, NY 10001" +173657,AA Batteries (4-pack),1,3.84,03/11/19 22:29,"750 Church St, Boston, MA 02215" +173658,Flatscreen TV,1,300,03/21/19 10:19,"979 Washington St, Seattle, WA 98101" +173659,27in FHD Monitor,1,149.99,03/22/19 08:28,"963 Hill St, Atlanta, GA 30301" +173660,AA Batteries (4-pack),1,3.84,03/17/19 14:32,"831 2nd St, Austin, TX 73301" +173661,27in FHD Monitor,1,149.99,03/05/19 15:39,"468 4th St, Los Angeles, CA 90001" +173662,Lightning Charging Cable,1,14.95,03/02/19 18:01,"874 Madison St, Los Angeles, CA 90001" +173663,AAA Batteries (4-pack),1,2.99,03/15/19 17:46,"574 13th St, Seattle, WA 98101" +173664,27in FHD Monitor,1,149.99,03/08/19 16:35,"97 Lincoln St, Los Angeles, CA 90001" +173665,20in Monitor,1,109.99,03/12/19 14:52,"839 Dogwood St, Atlanta, GA 30301" +173666,27in FHD Monitor,1,149.99,03/12/19 19:01,"38 Center St, Seattle, WA 98101" +173667,20in Monitor,1,109.99,03/16/19 20:13,"367 Chestnut St, New York City, NY 10001" +173668,Macbook Pro Laptop,1,1700,03/27/19 17:59,"560 Sunset St, Austin, TX 73301" +173669,Lightning Charging Cable,1,14.95,03/20/19 03:58,"767 Lakeview St, Los Angeles, CA 90001" +173670,Bose SoundSport Headphones,1,99.99,03/10/19 23:42,"821 Walnut St, New York City, NY 10001" +173671,Lightning Charging Cable,1,14.95,03/02/19 16:35,"101 Forest St, Austin, TX 73301" +173672,Bose SoundSport Headphones,1,99.99,03/01/19 11:33,"804 Dogwood St, Los Angeles, CA 90001" +173673,Lightning Charging Cable,1,14.95,03/06/19 13:53,"839 Adams St, Austin, TX 73301" +173674,USB-C Charging Cable,1,11.95,03/17/19 13:34,"960 Elm St, Seattle, WA 98101" +173675,USB-C Charging Cable,1,11.95,03/15/19 19:14,"490 Lakeview St, Los Angeles, CA 90001" +173676,Apple Airpods Headphones,1,150,03/21/19 13:05,"271 Lake St, San Francisco, CA 94016" +173677,USB-C Charging Cable,1,11.95,03/09/19 23:42,"309 River St, Dallas, TX 75001" +173678,Flatscreen TV,1,300,03/26/19 09:09,"259 Center St, New York City, NY 10001" +173679,Lightning Charging Cable,1,14.95,03/16/19 18:34,"727 Sunset St, Boston, MA 02215" +173680,34in Ultrawide Monitor,1,379.99,03/17/19 12:35,"332 Ridge St, San Francisco, CA 94016" +173681,Lightning Charging Cable,1,14.95,03/15/19 17:47,"203 1st St, San Francisco, CA 94016" +173682,Google Phone,1,600,03/04/19 13:23,"207 6th St, San Francisco, CA 94016" +173683,Bose SoundSport Headphones,1,99.99,03/18/19 20:04,"486 11th St, Seattle, WA 98101" +173684,AAA Batteries (4-pack),1,2.99,03/22/19 23:06,"915 Park St, San Francisco, CA 94016" +173685,USB-C Charging Cable,1,11.95,03/27/19 18:14,"397 Chestnut St, New York City, NY 10001" +173686,20in Monitor,1,109.99,03/21/19 11:21,"276 Walnut St, New York City, NY 10001" +173687,AA Batteries (4-pack),2,3.84,03/24/19 13:34,"752 Cedar St, Austin, TX 73301" +173688,AA Batteries (4-pack),1,3.84,03/28/19 06:06,"146 Lakeview St, Los Angeles, CA 90001" +173689,AAA Batteries (4-pack),2,2.99,03/02/19 17:02,"845 9th St, San Francisco, CA 94016" +173690,Wired Headphones,1,11.99,03/04/19 13:53,"866 Main St, Los Angeles, CA 90001" +173691,ThinkPad Laptop,1,999.99,03/11/19 19:17,"155 Main St, Austin, TX 73301" +173692,20in Monitor,1,109.99,03/23/19 08:05,"281 4th St, Seattle, WA 98101" +173693,Wired Headphones,1,11.99,03/02/19 18:46,"525 1st St, Los Angeles, CA 90001" +173694,Wired Headphones,1,11.99,03/27/19 20:30,"17 River St, New York City, NY 10001" +173695,27in FHD Monitor,1,149.99,03/20/19 12:32,"986 Lake St, Austin, TX 73301" +173696,USB-C Charging Cable,1,11.95,03/19/19 06:34,"621 5th St, Seattle, WA 98101" +173697,Lightning Charging Cable,1,14.95,03/04/19 12:34,"524 Johnson St, San Francisco, CA 94016" +173698,Lightning Charging Cable,1,14.95,03/16/19 15:10,"186 Center St, New York City, NY 10001" +173698,Apple Airpods Headphones,1,150,03/16/19 15:10,"186 Center St, New York City, NY 10001" +173699,Bose SoundSport Headphones,1,99.99,03/22/19 19:48,"341 12th St, New York City, NY 10001" +173700,Wired Headphones,1,11.99,03/26/19 18:43,"687 Forest St, Los Angeles, CA 90001" +173701,34in Ultrawide Monitor,1,379.99,03/04/19 12:44,"803 Sunset St, Los Angeles, CA 90001" +173702,27in 4K Gaming Monitor,1,389.99,03/04/19 10:25,"719 12th St, San Francisco, CA 94016" +173703,Apple Airpods Headphones,1,150,03/28/19 18:50,"60 9th St, Dallas, TX 75001" +173704,Lightning Charging Cable,1,14.95,03/23/19 10:32,"353 Lincoln St, New York City, NY 10001" +173705,AA Batteries (4-pack),1,3.84,03/14/19 17:20,"102 Lakeview St, San Francisco, CA 94016" +173706,AA Batteries (4-pack),1,3.84,03/05/19 11:51,"710 Hill St, Boston, MA 02215" +173707,Flatscreen TV,1,300,03/15/19 17:56,"984 Forest St, Boston, MA 02215" +173708,Lightning Charging Cable,1,14.95,03/28/19 21:00,"98 1st St, New York City, NY 10001" +173709,Macbook Pro Laptop,1,1700,03/02/19 11:38,"373 Center St, Austin, TX 73301" +173710,USB-C Charging Cable,1,11.95,03/05/19 12:43,"719 Willow St, Boston, MA 02215" +173711,AAA Batteries (4-pack),1,2.99,03/15/19 13:28,"67 Hill St, Los Angeles, CA 90001" +173712,27in FHD Monitor,1,149.99,03/03/19 08:25,"208 Meadow St, Los Angeles, CA 90001" +173713,AA Batteries (4-pack),1,3.84,03/01/19 21:37,"621 Jackson St, Austin, TX 73301" +173714,Wired Headphones,1,11.99,03/18/19 11:51,"590 10th St, San Francisco, CA 94016" +173715,Apple Airpods Headphones,1,150,03/28/19 07:52,"119 Hill St, Los Angeles, CA 90001" +173716,AA Batteries (4-pack),3,3.84,03/09/19 21:35,"295 Adams St, Atlanta, GA 30301" +173717,Flatscreen TV,1,300,03/22/19 12:06,"222 Madison St, Seattle, WA 98101" +173718,USB-C Charging Cable,1,11.95,03/22/19 16:23,"126 Spruce St, Los Angeles, CA 90001" +173719,34in Ultrawide Monitor,1,379.99,03/13/19 20:04,"829 7th St, Portland, OR 97035" +173720,USB-C Charging Cable,1,11.95,03/09/19 13:24,"33 Washington St, San Francisco, CA 94016" +173721,Bose SoundSport Headphones,1,99.99,03/30/19 23:02,"740 Lakeview St, Los Angeles, CA 90001" +173722,20in Monitor,1,109.99,03/02/19 20:51,"476 Sunset St, Atlanta, GA 30301" +173723,34in Ultrawide Monitor,1,379.99,03/04/19 11:37,"600 Forest St, San Francisco, CA 94016" +173724,Apple Airpods Headphones,1,150,03/13/19 20:50,"949 Wilson St, Atlanta, GA 30301" +173725,20in Monitor,1,109.99,03/01/19 18:38,"549 Walnut St, New York City, NY 10001" +173725,Macbook Pro Laptop,1,1700,03/01/19 18:38,"549 Walnut St, New York City, NY 10001" +173726,Wired Headphones,1,11.99,03/17/19 18:27,"237 Forest St, San Francisco, CA 94016" +173727,27in 4K Gaming Monitor,1,389.99,03/17/19 14:52,"124 1st St, Los Angeles, CA 90001" +173728,AA Batteries (4-pack),1,3.84,03/18/19 12:01,"979 9th St, San Francisco, CA 94016" +173729,AAA Batteries (4-pack),1,2.99,03/12/19 21:20,"848 8th St, Seattle, WA 98101" +173730,ThinkPad Laptop,1,999.99,03/04/19 18:08,"212 Highland St, Dallas, TX 75001" +173731,Flatscreen TV,1,300,03/14/19 16:51,"957 River St, San Francisco, CA 94016" +173732,AA Batteries (4-pack),2,3.84,03/09/19 14:32,"606 Church St, San Francisco, CA 94016" +173733,AA Batteries (4-pack),2,3.84,03/01/19 12:31,"571 6th St, Seattle, WA 98101" +173734,27in 4K Gaming Monitor,1,389.99,03/24/19 23:56,"519 Jefferson St, Dallas, TX 75001" +173735,Lightning Charging Cable,1,14.95,03/04/19 06:24,"117 13th St, New York City, NY 10001" +173736,AAA Batteries (4-pack),1,2.99,03/29/19 19:03,"885 7th St, Seattle, WA 98101" +173737,Bose SoundSport Headphones,1,99.99,03/04/19 18:32,"258 Hill St, New York City, NY 10001" +173738,Flatscreen TV,1,300,03/01/19 17:16,"544 Park St, Los Angeles, CA 90001" +173739,27in FHD Monitor,1,149.99,03/03/19 13:15,"34 West St, Los Angeles, CA 90001" +173740,ThinkPad Laptop,1,999.99,03/11/19 13:35,"780 West St, Seattle, WA 98101" +173741,Google Phone,1,600,03/18/19 09:47,"824 Madison St, New York City, NY 10001" +173742,Bose SoundSport Headphones,1,99.99,03/07/19 11:41,"456 River St, Seattle, WA 98101" +173743,Apple Airpods Headphones,1,150,03/17/19 17:28,"808 South St, New York City, NY 10001" +173744,AA Batteries (4-pack),2,3.84,03/15/19 17:49,"744 Dogwood St, San Francisco, CA 94016" +173745,Wired Headphones,1,11.99,03/30/19 22:01,"530 Hill St, Seattle, WA 98101" +173745,AAA Batteries (4-pack),1,2.99,03/30/19 22:01,"530 Hill St, Seattle, WA 98101" +173746,Flatscreen TV,1,300,03/22/19 20:07,"268 Cedar St, Atlanta, GA 30301" +173747,Apple Airpods Headphones,1,150,03/29/19 00:33,"242 Dogwood St, Boston, MA 02215" +173748,USB-C Charging Cable,1,11.95,03/30/19 15:10,"981 Elm St, Boston, MA 02215" +173749,USB-C Charging Cable,1,11.95,03/08/19 09:22,"416 Washington St, Atlanta, GA 30301" +173750,USB-C Charging Cable,1,11.95,03/14/19 07:13,"131 Lake St, Los Angeles, CA 90001" +173751,Apple Airpods Headphones,1,150,03/29/19 18:16,"68 7th St, Boston, MA 02215" +173752,AAA Batteries (4-pack),1,2.99,03/04/19 21:39,"321 Lincoln St, New York City, NY 10001" +173753,AA Batteries (4-pack),4,3.84,03/02/19 14:21,"365 South St, Seattle, WA 98101" +173754,27in FHD Monitor,1,149.99,03/18/19 17:58,"435 Wilson St, Los Angeles, CA 90001" +173755,USB-C Charging Cable,1,11.95,03/04/19 20:00,"207 Madison St, San Francisco, CA 94016" +173756,Wired Headphones,1,11.99,03/26/19 20:31,"563 13th St, Los Angeles, CA 90001" +173757,Bose SoundSport Headphones,1,99.99,03/24/19 09:55,"926 Johnson St, San Francisco, CA 94016" +173758,Apple Airpods Headphones,1,150,03/28/19 15:11,"123 2nd St, New York City, NY 10001" +173759,iPhone,1,700,03/01/19 19:43,"526 Ridge St, San Francisco, CA 94016" +173760,AAA Batteries (4-pack),1,2.99,03/26/19 23:35,"526 Elm St, Seattle, WA 98101" +173761,USB-C Charging Cable,1,11.95,03/19/19 11:30,"949 Jefferson St, San Francisco, CA 94016" +173762,AAA Batteries (4-pack),2,2.99,03/08/19 05:57,"438 Main St, San Francisco, CA 94016" +173763,Bose SoundSport Headphones,1,99.99,03/12/19 22:39,"730 Maple St, Seattle, WA 98101" +173764,AAA Batteries (4-pack),2,2.99,03/07/19 14:06,"2 7th St, Los Angeles, CA 90001" +173765,USB-C Charging Cable,1,11.95,03/05/19 16:26,"635 Hill St, Boston, MA 02215" +173766,USB-C Charging Cable,1,11.95,03/09/19 18:23,"437 Adams St, San Francisco, CA 94016" +173767,27in FHD Monitor,1,149.99,03/28/19 05:54,"855 Walnut St, Portland, OR 97035" +173768,Bose SoundSport Headphones,1,99.99,03/31/19 17:08,"905 Lakeview St, New York City, NY 10001" +173769,AA Batteries (4-pack),1,3.84,03/26/19 14:22,"402 Highland St, San Francisco, CA 94016" +173770,iPhone,1,700,03/23/19 15:07,"717 Sunset St, Portland, ME 04101" +173770,Wired Headphones,1,11.99,03/23/19 15:07,"717 Sunset St, Portland, ME 04101" +173771,Apple Airpods Headphones,1,150,03/08/19 13:47,"985 Meadow St, Portland, OR 97035" +173772,Bose SoundSport Headphones,1,99.99,03/30/19 00:10,"327 9th St, Portland, OR 97035" +173773,USB-C Charging Cable,1,11.95,03/29/19 15:13,"552 Highland St, Austin, TX 73301" +173774,USB-C Charging Cable,1,11.95,03/23/19 13:18,"879 14th St, Seattle, WA 98101" +173775,Macbook Pro Laptop,1,1700,03/16/19 18:02,"710 10th St, San Francisco, CA 94016" +173776,Flatscreen TV,1,300,03/01/19 12:49,"766 2nd St, Portland, OR 97035" +173777,Apple Airpods Headphones,1,150,03/31/19 08:51,"415 4th St, Boston, MA 02215" +173778,Bose SoundSport Headphones,1,99.99,03/06/19 11:57,"132 Church St, San Francisco, CA 94016" +173779,Lightning Charging Cable,1,14.95,03/24/19 22:41,"620 Main St, Dallas, TX 75001" +173780,AA Batteries (4-pack),1,3.84,03/29/19 17:48,"987 4th St, San Francisco, CA 94016" +173781,AAA Batteries (4-pack),1,2.99,03/20/19 14:39,"950 Meadow St, San Francisco, CA 94016" +173782,Apple Airpods Headphones,1,150,03/17/19 22:59,"675 Jefferson St, San Francisco, CA 94016" +173783,AAA Batteries (4-pack),3,2.99,03/31/19 22:03,"325 Dogwood St, San Francisco, CA 94016" +173784,Bose SoundSport Headphones,1,99.99,03/19/19 23:51,"855 Lincoln St, Los Angeles, CA 90001" +173785,Flatscreen TV,1,300,03/04/19 11:40,"917 River St, Portland, OR 97035" +173786,ThinkPad Laptop,1,999.99,03/21/19 18:18,"462 Chestnut St, Dallas, TX 75001" +173787,Google Phone,1,600,03/27/19 00:37,"144 Cedar St, Seattle, WA 98101" +173787,USB-C Charging Cable,1,11.95,03/27/19 00:37,"144 Cedar St, Seattle, WA 98101" +173788,Bose SoundSport Headphones,1,99.99,03/12/19 01:18,"798 Dogwood St, Los Angeles, CA 90001" +173789,USB-C Charging Cable,1,11.95,03/18/19 10:20,"737 12th St, Seattle, WA 98101" +173790,34in Ultrawide Monitor,1,379.99,03/21/19 20:05,"365 Hickory St, New York City, NY 10001" +173791,AA Batteries (4-pack),1,3.84,03/03/19 13:27,"107 2nd St, Portland, ME 04101" +173792,27in FHD Monitor,1,149.99,03/08/19 12:14,"789 Lincoln St, Los Angeles, CA 90001" +173793,Bose SoundSport Headphones,1,99.99,03/08/19 08:00,"567 Jackson St, Boston, MA 02215" +173794,Lightning Charging Cable,2,14.95,03/12/19 20:44,"324 Jackson St, Los Angeles, CA 90001" +173795,34in Ultrawide Monitor,1,379.99,03/08/19 20:50,"584 4th St, Los Angeles, CA 90001" +173796,USB-C Charging Cable,1,11.95,03/21/19 18:05,"34 2nd St, Los Angeles, CA 90001" +173797,Wired Headphones,2,11.99,03/18/19 10:26,"450 South St, New York City, NY 10001" +173798,Apple Airpods Headphones,1,150,03/12/19 14:12,"547 5th St, Boston, MA 02215" +173799,AAA Batteries (4-pack),1,2.99,03/16/19 11:04,"145 Pine St, San Francisco, CA 94016" +173799,AA Batteries (4-pack),1,3.84,03/16/19 11:04,"145 Pine St, San Francisco, CA 94016" +173800,USB-C Charging Cable,1,11.95,03/13/19 18:36,"66 Madison St, New York City, NY 10001" +173801,27in 4K Gaming Monitor,1,389.99,03/23/19 14:09,"479 Ridge St, Los Angeles, CA 90001" +173802,Apple Airpods Headphones,2,150,03/05/19 10:50,"577 Sunset St, Dallas, TX 75001" +173803,Lightning Charging Cable,1,14.95,03/26/19 18:55,"96 Walnut St, Boston, MA 02215" +173804,AAA Batteries (4-pack),1,2.99,03/18/19 13:51,"299 Meadow St, Boston, MA 02215" +173805,Lightning Charging Cable,1,14.95,03/11/19 18:28,"987 13th St, Boston, MA 02215" +173806,Wired Headphones,1,11.99,03/15/19 09:36,"827 Park St, Atlanta, GA 30301" +173807,Bose SoundSport Headphones,1,99.99,03/19/19 18:07,"216 Walnut St, Seattle, WA 98101" +173808,AAA Batteries (4-pack),2,2.99,03/06/19 09:31,"921 Church St, San Francisco, CA 94016" +173809,27in 4K Gaming Monitor,1,389.99,03/21/19 11:32,"131 9th St, Portland, ME 04101" +173810,27in 4K Gaming Monitor,1,389.99,03/01/19 10:19,"433 10th St, Los Angeles, CA 90001" +173811,Wired Headphones,1,11.99,03/03/19 11:38,"224 14th St, Los Angeles, CA 90001" +173812,34in Ultrawide Monitor,1,379.99,03/27/19 10:14,"800 Washington St, San Francisco, CA 94016" +173813,27in FHD Monitor,1,149.99,03/25/19 15:28,"816 Adams St, Seattle, WA 98101" +173814,Lightning Charging Cable,1,14.95,03/25/19 00:37,"644 West St, New York City, NY 10001" +173815,iPhone,1,700,03/28/19 20:36,"687 West St, San Francisco, CA 94016" +173816,Macbook Pro Laptop,1,1700,03/20/19 20:29,"939 Center St, San Francisco, CA 94016" +173817,Macbook Pro Laptop,1,1700,03/14/19 23:57,"671 5th St, Boston, MA 02215" +173818,USB-C Charging Cable,1,11.95,03/08/19 20:21,"690 Adams St, New York City, NY 10001" +173819,AAA Batteries (4-pack),1,2.99,03/10/19 19:24,"657 Wilson St, New York City, NY 10001" +173820,AAA Batteries (4-pack),2,2.99,03/28/19 19:39,"919 Willow St, Seattle, WA 98101" +173821,Wired Headphones,1,11.99,03/18/19 14:59,"609 Lakeview St, New York City, NY 10001" +173822,27in FHD Monitor,1,149.99,03/09/19 15:52,"74 Jefferson St, Atlanta, GA 30301" +173823,AAA Batteries (4-pack),1,2.99,03/29/19 23:16,"335 Ridge St, New York City, NY 10001" +173824,AA Batteries (4-pack),1,3.84,03/15/19 08:29,"90 Lakeview St, Los Angeles, CA 90001" +173825,Apple Airpods Headphones,1,150,03/08/19 11:58,"21 11th St, New York City, NY 10001" +173826,Wired Headphones,1,11.99,03/03/19 21:36,"379 Main St, Los Angeles, CA 90001" +173827,Wired Headphones,3,11.99,03/24/19 13:21,"380 Washington St, San Francisco, CA 94016" +173828,20in Monitor,1,109.99,03/06/19 15:49,"428 Dogwood St, Portland, ME 04101" +173829,AAA Batteries (4-pack),2,2.99,03/06/19 07:22,"796 Chestnut St, San Francisco, CA 94016" +173830,Apple Airpods Headphones,1,150,03/16/19 18:29,"302 Madison St, San Francisco, CA 94016" +173831,Apple Airpods Headphones,1,150,03/23/19 20:29,"319 Maple St, Boston, MA 02215" +173832,AA Batteries (4-pack),1,3.84,03/23/19 15:08,"595 7th St, Los Angeles, CA 90001" +173833,USB-C Charging Cable,1,11.95,03/30/19 05:11,"782 Lakeview St, Seattle, WA 98101" +173834,Google Phone,1,600,03/09/19 12:29,"212 14th St, San Francisco, CA 94016" +173835,Lightning Charging Cable,1,14.95,03/22/19 16:32,"114 Walnut St, Boston, MA 02215" +173836,USB-C Charging Cable,1,11.95,03/14/19 14:20,"63 Maple St, San Francisco, CA 94016" +173837,AA Batteries (4-pack),1,3.84,03/17/19 11:13,"50 Ridge St, Los Angeles, CA 90001" +173838,Lightning Charging Cable,1,14.95,03/10/19 10:55,"469 Chestnut St, Seattle, WA 98101" +173839,LG Dryer,1,600.0,03/12/19 12:47,"164 Sunset St, New York City, NY 10001" +173840,Apple Airpods Headphones,1,150,03/09/19 12:57,"41 Hickory St, Seattle, WA 98101" +173841,Apple Airpods Headphones,1,150,03/09/19 17:01,"940 Jefferson St, San Francisco, CA 94016" +173842,AAA Batteries (4-pack),1,2.99,03/31/19 19:40,"349 Washington St, Portland, OR 97035" +173843,AAA Batteries (4-pack),1,2.99,03/10/19 10:29,"674 Wilson St, San Francisco, CA 94016" +173843,Bose SoundSport Headphones,1,99.99,03/10/19 10:29,"674 Wilson St, San Francisco, CA 94016" +173844,USB-C Charging Cable,1,11.95,03/04/19 06:41,"384 Maple St, Boston, MA 02215" +173845,34in Ultrawide Monitor,1,379.99,03/17/19 11:14,"853 13th St, Portland, OR 97035" +173846,34in Ultrawide Monitor,1,379.99,03/27/19 10:24,"191 12th St, Los Angeles, CA 90001" +173847,USB-C Charging Cable,4,11.95,03/05/19 17:40,"190 5th St, Los Angeles, CA 90001" +173848,Lightning Charging Cable,1,14.95,03/05/19 23:34,"719 Cedar St, Atlanta, GA 30301" +173849,AAA Batteries (4-pack),1,2.99,03/28/19 23:11,"518 Forest St, Seattle, WA 98101" +173850,ThinkPad Laptop,1,999.99,03/01/19 16:31,"780 Cherry St, Portland, OR 97035" +173851,27in FHD Monitor,1,149.99,03/07/19 12:14,"745 Center St, San Francisco, CA 94016" +173852,27in 4K Gaming Monitor,1,389.99,03/31/19 21:35,"132 Ridge St, Portland, OR 97035" +173853,Wired Headphones,1,11.99,03/23/19 06:16,"790 Washington St, Atlanta, GA 30301" +173854,Wired Headphones,1,11.99,03/03/19 01:32,"159 14th St, Portland, OR 97035" +173855,Wired Headphones,1,11.99,03/24/19 14:23,"103 Center St, New York City, NY 10001" +173856,AA Batteries (4-pack),1,3.84,03/21/19 21:47,"683 Park St, San Francisco, CA 94016" +173857,Vareebadd Phone,1,400,03/29/19 17:44,"978 Sunset St, Portland, OR 97035" +173858,34in Ultrawide Monitor,1,379.99,03/18/19 09:41,"202 Forest St, Austin, TX 73301" +173859,Wired Headphones,1,11.99,03/23/19 15:48,"815 2nd St, Boston, MA 02215" +173860,Flatscreen TV,1,300,03/09/19 21:10,"513 Dogwood St, Dallas, TX 75001" +173861,AA Batteries (4-pack),2,3.84,03/25/19 17:52,"997 Ridge St, San Francisco, CA 94016" +173862,Lightning Charging Cable,1,14.95,03/11/19 22:43,"847 Cherry St, Austin, TX 73301" +173863,27in FHD Monitor,1,149.99,03/27/19 15:41,"964 Center St, Los Angeles, CA 90001" +173864,Bose SoundSport Headphones,1,99.99,03/21/19 11:06,"685 Johnson St, San Francisco, CA 94016" +173865,USB-C Charging Cable,2,11.95,03/04/19 18:42,"10 Jackson St, Atlanta, GA 30301" +173866,Apple Airpods Headphones,1,150,03/26/19 17:00,"691 Maple St, Los Angeles, CA 90001" +173867,USB-C Charging Cable,1,11.95,03/04/19 22:13,"413 Main St, San Francisco, CA 94016" +173868,Lightning Charging Cable,1,14.95,03/22/19 19:50,"386 Jackson St, Austin, TX 73301" +173869,Apple Airpods Headphones,1,150,03/24/19 22:53,"854 Lincoln St, Atlanta, GA 30301" +173870,USB-C Charging Cable,1,11.95,03/15/19 14:40,"333 Spruce St, San Francisco, CA 94016" +173871,iPhone,1,700,03/26/19 14:19,"867 River St, Boston, MA 02215" +173872,Bose SoundSport Headphones,1,99.99,03/25/19 13:31,"777 Hickory St, Portland, ME 04101" +173873,Apple Airpods Headphones,1,150,03/02/19 12:57,"962 River St, New York City, NY 10001" +173873,Apple Airpods Headphones,1,150,03/02/19 12:57,"962 River St, New York City, NY 10001" +173874,Lightning Charging Cable,1,14.95,03/28/19 21:13,"288 Jackson St, San Francisco, CA 94016" +173875,AAA Batteries (4-pack),1,2.99,03/10/19 12:19,"338 West St, Boston, MA 02215" +173876,AA Batteries (4-pack),3,3.84,03/18/19 14:20,"230 Cedar St, Atlanta, GA 30301" +173877,27in 4K Gaming Monitor,1,389.99,03/07/19 20:15,"906 Ridge St, Dallas, TX 75001" +173878,LG Washing Machine,1,600.0,03/28/19 19:13,"996 Lake St, San Francisco, CA 94016" +173879,AAA Batteries (4-pack),2,2.99,03/31/19 10:29,"704 Hickory St, Seattle, WA 98101" +173880,AAA Batteries (4-pack),3,2.99,03/16/19 15:18,"678 Church St, Seattle, WA 98101" +173881,Lightning Charging Cable,1,14.95,03/16/19 00:24,"218 Dogwood St, New York City, NY 10001" +173882,USB-C Charging Cable,1,11.95,03/06/19 07:29,"478 Lincoln St, Boston, MA 02215" +173883,USB-C Charging Cable,1,11.95,03/20/19 20:01,"752 Wilson St, New York City, NY 10001" +173884,Apple Airpods Headphones,1,150,03/06/19 14:12,"912 2nd St, San Francisco, CA 94016" +173885,Apple Airpods Headphones,1,150,03/04/19 00:04,"400 2nd St, Los Angeles, CA 90001" +173886,Vareebadd Phone,1,400,03/30/19 16:55,"507 14th St, Portland, OR 97035" +173887,USB-C Charging Cable,1,11.95,03/16/19 19:00,"932 Wilson St, Boston, MA 02215" +173888,AA Batteries (4-pack),1,3.84,03/01/19 09:25,"658 South St, New York City, NY 10001" +173889,Lightning Charging Cable,1,14.95,03/06/19 18:07,"304 Dogwood St, Dallas, TX 75001" +173890,Bose SoundSport Headphones,1,99.99,03/16/19 12:58,"380 Sunset St, Atlanta, GA 30301" +173891,Wired Headphones,1,11.99,03/23/19 14:38,"831 13th St, Los Angeles, CA 90001" +173892,USB-C Charging Cable,1,11.95,03/08/19 03:49,"291 Spruce St, Dallas, TX 75001" +173893,Wired Headphones,2,11.99,03/24/19 12:16,"347 Lakeview St, San Francisco, CA 94016" +173894,AA Batteries (4-pack),1,3.84,03/29/19 09:34,"923 7th St, San Francisco, CA 94016" +173895,AA Batteries (4-pack),1,3.84,03/10/19 19:19,"16 Elm St, Los Angeles, CA 90001" +173896,Lightning Charging Cable,1,14.95,03/11/19 09:24,"507 Center St, Boston, MA 02215" +173897,Bose SoundSport Headphones,1,99.99,03/20/19 11:04,"971 Lakeview St, San Francisco, CA 94016" +173898,AAA Batteries (4-pack),1,2.99,03/03/19 16:47,"34 Center St, Dallas, TX 75001" +173899,USB-C Charging Cable,1,11.95,03/24/19 23:34,"196 Center St, San Francisco, CA 94016" +173900,20in Monitor,1,109.99,03/18/19 16:43,"781 Center St, Austin, TX 73301" +173901,Lightning Charging Cable,1,14.95,03/29/19 09:33,"145 14th St, Atlanta, GA 30301" +173902,27in 4K Gaming Monitor,1,389.99,03/17/19 22:48,"726 Walnut St, Atlanta, GA 30301" +173903,Apple Airpods Headphones,1,150,03/18/19 01:07,"434 Cedar St, Los Angeles, CA 90001" +173904,AAA Batteries (4-pack),1,2.99,03/10/19 20:35,"856 Maple St, Atlanta, GA 30301" +173905,Google Phone,1,600,03/22/19 22:26,"602 South St, Atlanta, GA 30301" +173906,20in Monitor,1,109.99,03/28/19 00:04,"875 9th St, Los Angeles, CA 90001" +173907,Bose SoundSport Headphones,1,99.99,03/20/19 10:21,"268 Pine St, Los Angeles, CA 90001" +173908,AA Batteries (4-pack),1,3.84,03/11/19 14:29,"769 River St, Atlanta, GA 30301" +173909,Bose SoundSport Headphones,1,99.99,03/21/19 19:36,"415 Park St, New York City, NY 10001" +173910,USB-C Charging Cable,1,11.95,03/27/19 09:27,"467 Adams St, Seattle, WA 98101" +173911,27in FHD Monitor,1,149.99,03/27/19 09:34,"647 Main St, New York City, NY 10001" +173912,Bose SoundSport Headphones,1,99.99,03/20/19 14:46,"838 11th St, Boston, MA 02215" +173913,AA Batteries (4-pack),1,3.84,03/03/19 13:09,"392 Lincoln St, Atlanta, GA 30301" +173914,Macbook Pro Laptop,1,1700,03/15/19 09:35,"716 14th St, Los Angeles, CA 90001" +173915,27in 4K Gaming Monitor,1,389.99,03/12/19 08:01,"206 Dogwood St, San Francisco, CA 94016" +173916,Google Phone,1,600,03/17/19 21:39,"326 Spruce St, New York City, NY 10001" +173916,Wired Headphones,1,11.99,03/17/19 21:39,"326 Spruce St, New York City, NY 10001" +173917,AA Batteries (4-pack),1,3.84,03/24/19 09:09,"649 Cedar St, Boston, MA 02215" +173918,AAA Batteries (4-pack),1,2.99,03/03/19 22:00,"955 10th St, San Francisco, CA 94016" +173919,27in 4K Gaming Monitor,1,389.99,03/18/19 10:38,"844 Washington St, Atlanta, GA 30301" +173920,Wired Headphones,1,11.99,03/01/19 18:52,"534 Adams St, San Francisco, CA 94016" +173921,ThinkPad Laptop,1,999.99,03/13/19 14:13,"275 Meadow St, Los Angeles, CA 90001" +173922,AA Batteries (4-pack),1,3.84,03/29/19 12:35,"450 7th St, San Francisco, CA 94016" +173923,iPhone,1,700,03/20/19 11:02,"455 12th St, Boston, MA 02215" +173924,Lightning Charging Cable,1,14.95,03/29/19 02:57,"692 Madison St, San Francisco, CA 94016" +173925,Lightning Charging Cable,1,14.95,03/29/19 16:19,"47 12th St, Los Angeles, CA 90001" +173926,Lightning Charging Cable,1,14.95,03/25/19 13:59,"872 1st St, San Francisco, CA 94016" +173927,Macbook Pro Laptop,1,1700,03/16/19 21:12,"323 Highland St, Austin, TX 73301" +173928,20in Monitor,1,109.99,03/12/19 13:32,"219 West St, New York City, NY 10001" +173929,AAA Batteries (4-pack),1,2.99,03/24/19 00:37,"12 Forest St, San Francisco, CA 94016" +173930,Lightning Charging Cable,1,14.95,03/24/19 23:30,"168 North St, New York City, NY 10001" +173931,20in Monitor,1,109.99,03/31/19 20:40,"780 Lake St, Los Angeles, CA 90001" +173932,USB-C Charging Cable,1,11.95,03/25/19 23:19,"293 Elm St, Seattle, WA 98101" +173933,Macbook Pro Laptop,1,1700,03/17/19 17:54,"324 Church St, Dallas, TX 75001" +173934,iPhone,1,700,03/26/19 09:21,"342 South St, Los Angeles, CA 90001" +173934,Lightning Charging Cable,1,14.95,03/26/19 09:21,"342 South St, Los Angeles, CA 90001" +173935,Lightning Charging Cable,1,14.95,03/02/19 16:32,"739 8th St, San Francisco, CA 94016" +173936,USB-C Charging Cable,1,11.95,03/22/19 17:29,"240 Madison St, Los Angeles, CA 90001" +173937,AA Batteries (4-pack),1,3.84,03/11/19 12:56,"68 2nd St, Los Angeles, CA 90001" +173938,Macbook Pro Laptop,1,1700,03/07/19 22:48,"105 Walnut St, New York City, NY 10001" +173939,Google Phone,1,600,03/21/19 10:43,"389 Park St, Boston, MA 02215" +173940,Lightning Charging Cable,1,14.95,03/29/19 00:05,"519 Lakeview St, New York City, NY 10001" +173941,Macbook Pro Laptop,1,1700,03/25/19 20:04,"978 Jefferson St, Los Angeles, CA 90001" +173942,Lightning Charging Cable,1,14.95,03/16/19 22:13,"309 Dogwood St, San Francisco, CA 94016" +173943,AAA Batteries (4-pack),4,2.99,03/12/19 17:25,"823 River St, Boston, MA 02215" +173944,USB-C Charging Cable,1,11.95,03/15/19 18:03,"146 6th St, Los Angeles, CA 90001" +173945,Wired Headphones,1,11.99,03/01/19 11:48,"243 Spruce St, Boston, MA 02215" +173946,USB-C Charging Cable,1,11.95,03/28/19 12:09,"906 Hickory St, Los Angeles, CA 90001" +173947,AAA Batteries (4-pack),1,2.99,03/29/19 22:45,"332 Cedar St, Los Angeles, CA 90001" +173948,AA Batteries (4-pack),1,3.84,03/19/19 09:53,"453 6th St, Los Angeles, CA 90001" +173949,Apple Airpods Headphones,1,150,03/30/19 14:36,"922 Cedar St, Boston, MA 02215" +173950,AA Batteries (4-pack),1,3.84,03/30/19 23:58,"757 Walnut St, Seattle, WA 98101" +173951,Bose SoundSport Headphones,1,99.99,03/01/19 22:54,"184 South St, New York City, NY 10001" +173952,AAA Batteries (4-pack),1,2.99,03/13/19 19:14,"218 Lincoln St, Dallas, TX 75001" +173953,Google Phone,1,600,03/15/19 19:19,"840 River St, San Francisco, CA 94016" +173954,Lightning Charging Cable,1,14.95,03/21/19 13:16,"160 Lakeview St, Atlanta, GA 30301" +173955,Macbook Pro Laptop,1,1700,03/22/19 20:08,"976 Lincoln St, Atlanta, GA 30301" +173956,USB-C Charging Cable,1,11.95,03/17/19 10:49,"889 10th St, Atlanta, GA 30301" +173956,AAA Batteries (4-pack),1,2.99,03/17/19 10:49,"889 10th St, Atlanta, GA 30301" +173957,Lightning Charging Cable,1,14.95,03/11/19 09:33,"723 River St, Los Angeles, CA 90001" +173958,Wired Headphones,1,11.99,03/12/19 18:39,"439 2nd St, New York City, NY 10001" +173959,27in 4K Gaming Monitor,1,389.99,03/30/19 08:31,"440 Jackson St, San Francisco, CA 94016" +173960,AAA Batteries (4-pack),1,2.99,03/12/19 01:45,"773 Dogwood St, New York City, NY 10001" +173961,Apple Airpods Headphones,1,150,03/23/19 16:31,"100 10th St, Los Angeles, CA 90001" +173962,iPhone,1,700,03/31/19 20:58,"574 6th St, Portland, OR 97035" +173963,iPhone,1,700,03/13/19 11:45,"977 12th St, New York City, NY 10001" +173964,USB-C Charging Cable,1,11.95,03/10/19 17:09,"1 Center St, Portland, OR 97035" +173965,Apple Airpods Headphones,1,150,03/11/19 18:43,"976 Lincoln St, San Francisco, CA 94016" +173966,Apple Airpods Headphones,1,150,03/26/19 16:30,"934 14th St, San Francisco, CA 94016" +173967,34in Ultrawide Monitor,1,379.99,03/12/19 13:12,"993 Sunset St, New York City, NY 10001" +173968,Apple Airpods Headphones,1,150,03/08/19 03:32,"966 Lakeview St, San Francisco, CA 94016" +173969,Wired Headphones,1,11.99,03/31/19 21:09,"712 14th St, New York City, NY 10001" +173970,20in Monitor,1,109.99,03/02/19 09:39,"882 River St, San Francisco, CA 94016" +173971,iPhone,1,700,03/26/19 17:47,"10 Johnson St, Boston, MA 02215" +173972,Wired Headphones,1,11.99,03/11/19 09:33,"218 4th St, New York City, NY 10001" +173973,iPhone,1,700,03/11/19 12:08,"534 Park St, Seattle, WA 98101" +173974,Wired Headphones,1,11.99,03/14/19 15:15,"988 Johnson St, Austin, TX 73301" +173975,Google Phone,1,600,03/20/19 14:43,"957 Wilson St, Dallas, TX 75001" +173975,USB-C Charging Cable,1,11.95,03/20/19 14:43,"957 Wilson St, Dallas, TX 75001" +173975,Wired Headphones,2,11.99,03/20/19 14:43,"957 Wilson St, Dallas, TX 75001" +173975,AA Batteries (4-pack),2,3.84,03/20/19 14:43,"957 Wilson St, Dallas, TX 75001" +173976,AA Batteries (4-pack),1,3.84,03/06/19 20:10,"157 Center St, Boston, MA 02215" +173977,AAA Batteries (4-pack),3,2.99,03/19/19 10:21,"74 5th St, Portland, OR 97035" +173978,Wired Headphones,1,11.99,03/31/19 12:46,"930 Highland St, Boston, MA 02215" +173979,Lightning Charging Cable,1,14.95,03/30/19 10:10,"705 2nd St, Boston, MA 02215" +173980,AAA Batteries (4-pack),2,2.99,03/29/19 08:48,"681 10th St, Austin, TX 73301" +173981,27in 4K Gaming Monitor,1,389.99,03/13/19 22:50,"487 Lake St, Seattle, WA 98101" +173982,AAA Batteries (4-pack),1,2.99,03/28/19 19:00,"203 Sunset St, San Francisco, CA 94016" +173983,Wired Headphones,1,11.99,03/05/19 10:32,"527 Madison St, New York City, NY 10001" +173984,USB-C Charging Cable,1,11.95,03/20/19 03:30,"753 Church St, Los Angeles, CA 90001" +173985,Wired Headphones,1,11.99,03/04/19 15:46,"310 Spruce St, New York City, NY 10001" +173986,Vareebadd Phone,1,400,03/30/19 22:16,"96 8th St, New York City, NY 10001" +173986,Wired Headphones,1,11.99,03/30/19 22:16,"96 8th St, New York City, NY 10001" +173987,AAA Batteries (4-pack),1,2.99,03/28/19 15:42,"703 Meadow St, San Francisco, CA 94016" +173988,USB-C Charging Cable,1,11.95,03/01/19 11:23,"179 Cedar St, Atlanta, GA 30301" +173989,AAA Batteries (4-pack),1,2.99,03/23/19 14:02,"844 8th St, Portland, OR 97035" +173990,27in 4K Gaming Monitor,1,389.99,03/27/19 13:27,"977 9th St, Los Angeles, CA 90001" +173991,LG Dryer,1,600.0,03/01/19 12:11,"407 Park St, Dallas, TX 75001" +173992,AA Batteries (4-pack),1,3.84,03/03/19 13:24,"673 Walnut St, Los Angeles, CA 90001" +173993,Apple Airpods Headphones,1,150,03/10/19 19:26,"799 Forest St, Los Angeles, CA 90001" +173994,27in 4K Gaming Monitor,1,389.99,03/05/19 16:17,"51 Forest St, Boston, MA 02215" +173995,Apple Airpods Headphones,1,150,03/08/19 19:16,"336 Hickory St, Seattle, WA 98101" +173996,Wired Headphones,2,11.99,03/30/19 14:09,"763 Center St, Dallas, TX 75001" +173997,AAA Batteries (4-pack),2,2.99,03/28/19 14:33,"454 Maple St, Seattle, WA 98101" +173998,Macbook Pro Laptop,1,1700,03/14/19 03:20,"363 8th St, Seattle, WA 98101" +173999,ThinkPad Laptop,1,999.99,03/29/19 19:24,"476 River St, Atlanta, GA 30301" +174000,USB-C Charging Cable,1,11.95,03/25/19 13:51,"851 8th St, Los Angeles, CA 90001" +174001,Bose SoundSport Headphones,1,99.99,03/03/19 12:23,"394 Cedar St, Los Angeles, CA 90001" +174002,USB-C Charging Cable,1,11.95,03/23/19 18:22,"658 River St, San Francisco, CA 94016" +174003,AA Batteries (4-pack),1,3.84,03/17/19 00:50,"11 8th St, Atlanta, GA 30301" +174004,AAA Batteries (4-pack),1,2.99,03/06/19 22:18,"572 Main St, San Francisco, CA 94016" +174005,27in FHD Monitor,1,149.99,03/26/19 10:45,"567 Jackson St, Los Angeles, CA 90001" +174006,Lightning Charging Cable,1,14.95,03/03/19 15:50,"581 Spruce St, Atlanta, GA 30301" +174007,AA Batteries (4-pack),1,3.84,03/05/19 12:28,"541 Spruce St, Austin, TX 73301" +174008,Macbook Pro Laptop,1,1700,03/03/19 19:05,"367 Pine St, New York City, NY 10001" +174009,Flatscreen TV,1,300,03/09/19 00:06,"739 5th St, Portland, OR 97035" +174010,Apple Airpods Headphones,1,150,03/04/19 11:22,"219 Lake St, Portland, OR 97035" +174011,AA Batteries (4-pack),1,3.84,03/22/19 01:19,"525 9th St, San Francisco, CA 94016" +174012,27in 4K Gaming Monitor,1,389.99,03/20/19 11:48,"822 Willow St, Los Angeles, CA 90001" +174013,AA Batteries (4-pack),1,3.84,03/22/19 12:20,"264 Main St, Boston, MA 02215" +174014,Lightning Charging Cable,2,14.95,03/12/19 11:34,"141 11th St, Seattle, WA 98101" +174015,USB-C Charging Cable,1,11.95,03/04/19 18:43,"210 Adams St, San Francisco, CA 94016" +174016,34in Ultrawide Monitor,1,379.99,03/15/19 08:33,"811 1st St, Austin, TX 73301" +174017,iPhone,1,700,03/18/19 08:24,"674 5th St, Portland, OR 97035" +174017,Lightning Charging Cable,1,14.95,03/18/19 08:24,"674 5th St, Portland, OR 97035" +174018,Lightning Charging Cable,1,14.95,03/10/19 15:57,"225 Hill St, Portland, OR 97035" +174019,USB-C Charging Cable,1,11.95,03/15/19 11:05,"139 Meadow St, New York City, NY 10001" +174020,Bose SoundSport Headphones,1,99.99,03/29/19 10:16,"829 4th St, New York City, NY 10001" +174021,AAA Batteries (4-pack),1,2.99,03/02/19 11:58,"138 Jefferson St, New York City, NY 10001" +174022,Lightning Charging Cable,1,14.95,03/02/19 20:08,"64 Madison St, San Francisco, CA 94016" +174023,Wired Headphones,1,11.99,03/06/19 14:29,"45 4th St, Los Angeles, CA 90001" +174024,Bose SoundSport Headphones,1,99.99,03/16/19 19:29,"881 Chestnut St, New York City, NY 10001" +174025,34in Ultrawide Monitor,1,379.99,03/14/19 13:32,"967 Church St, Portland, OR 97035" +174026,AAA Batteries (4-pack),1,2.99,03/15/19 21:25,"123 Ridge St, San Francisco, CA 94016" +174027,27in FHD Monitor,1,149.99,03/31/19 19:58,"188 Cedar St, Seattle, WA 98101" +174028,27in FHD Monitor,1,149.99,03/26/19 08:21,"961 Maple St, Portland, OR 97035" +174029,USB-C Charging Cable,1,11.95,03/12/19 08:11,"208 Johnson St, San Francisco, CA 94016" +174030,AA Batteries (4-pack),2,3.84,03/07/19 17:49,"34 Main St, Boston, MA 02215" +174031,Bose SoundSport Headphones,1,99.99,03/11/19 20:36,"523 Lincoln St, San Francisco, CA 94016" +174032,AAA Batteries (4-pack),1,2.99,03/12/19 17:18,"975 Willow St, Boston, MA 02215" +174033,Wired Headphones,1,11.99,03/07/19 09:22,"202 Jackson St, Los Angeles, CA 90001" +174034,27in FHD Monitor,1,149.99,03/21/19 12:07,"617 6th St, Dallas, TX 75001" +174035,AAA Batteries (4-pack),1,2.99,03/29/19 11:09,"689 Madison St, Los Angeles, CA 90001" +174036,Lightning Charging Cable,1,14.95,03/24/19 11:27,"153 Hickory St, San Francisco, CA 94016" +174037,Wired Headphones,1,11.99,03/05/19 16:59,"619 6th St, San Francisco, CA 94016" +174038,AAA Batteries (4-pack),1,2.99,03/03/19 22:09,"109 West St, San Francisco, CA 94016" +174039,Apple Airpods Headphones,1,150,03/30/19 01:30,"595 Madison St, Los Angeles, CA 90001" +174040,AA Batteries (4-pack),1,3.84,03/17/19 14:23,"777 Cherry St, San Francisco, CA 94016" +174041,Flatscreen TV,1,300,03/12/19 15:27,"313 South St, New York City, NY 10001" +174042,Lightning Charging Cable,1,14.95,03/16/19 12:55,"545 13th St, Los Angeles, CA 90001" +174043,Wired Headphones,1,11.99,03/03/19 20:33,"390 Hill St, New York City, NY 10001" +174044,20in Monitor,1,109.99,03/28/19 18:22,"910 Lakeview St, Boston, MA 02215" +174045,Lightning Charging Cable,1,14.95,03/07/19 14:13,"810 Cherry St, Seattle, WA 98101" +174046,Macbook Pro Laptop,1,1700,03/01/19 11:53,"111 12th St, San Francisco, CA 94016" +174047,Wired Headphones,1,11.99,03/05/19 16:27,"149 9th St, Seattle, WA 98101" +174048,AA Batteries (4-pack),2,3.84,03/10/19 17:27,"532 Elm St, Boston, MA 02215" +174049,iPhone,1,700,03/04/19 19:10,"223 6th St, San Francisco, CA 94016" +174050,AAA Batteries (4-pack),1,2.99,03/20/19 12:11,"139 Sunset St, New York City, NY 10001" +174051,AA Batteries (4-pack),1,3.84,03/29/19 07:46,"55 Maple St, Los Angeles, CA 90001" +174052,Lightning Charging Cable,2,14.95,03/20/19 20:08,"712 Adams St, Austin, TX 73301" +174053,Wired Headphones,1,11.99,03/22/19 15:18,"769 Hickory St, Boston, MA 02215" +174054,AA Batteries (4-pack),2,3.84,03/05/19 15:03,"94 9th St, New York City, NY 10001" +174055,iPhone,1,700,03/27/19 17:40,"393 South St, Los Angeles, CA 90001" +174056,Lightning Charging Cable,1,14.95,03/12/19 11:55,"313 South St, Portland, OR 97035" +174057,Flatscreen TV,1,300,03/31/19 08:20,"504 8th St, San Francisco, CA 94016" +174058,AAA Batteries (4-pack),3,2.99,03/02/19 10:30,"544 Madison St, Boston, MA 02215" +174059,AAA Batteries (4-pack),1,2.99,03/21/19 13:29,"184 Park St, San Francisco, CA 94016" +174060,Lightning Charging Cable,1,14.95,03/27/19 18:04,"633 Jefferson St, New York City, NY 10001" +174061,Google Phone,1,600,03/29/19 08:02,"645 Dogwood St, Boston, MA 02215" +174062,USB-C Charging Cable,1,11.95,03/13/19 15:53,"37 Ridge St, Los Angeles, CA 90001" +174063,AAA Batteries (4-pack),1,2.99,03/09/19 10:42,"533 North St, New York City, NY 10001" +174064,Lightning Charging Cable,2,14.95,03/24/19 08:15,"3 Pine St, Los Angeles, CA 90001" +174065,Wired Headphones,2,11.99,03/23/19 23:09,"231 Meadow St, Seattle, WA 98101" +174066,Lightning Charging Cable,1,14.95,03/22/19 18:29,"156 6th St, San Francisco, CA 94016" +174067,AAA Batteries (4-pack),1,2.99,03/01/19 23:12,"996 Dogwood St, New York City, NY 10001" +174068,AAA Batteries (4-pack),1,2.99,03/30/19 09:28,"145 Spruce St, San Francisco, CA 94016" +174069,Wired Headphones,1,11.99,03/05/19 01:55,"693 Hickory St, Los Angeles, CA 90001" +174070,ThinkPad Laptop,1,999.99,03/22/19 20:14,"358 Highland St, Portland, ME 04101" +174071,iPhone,1,700,03/12/19 17:52,"495 Jackson St, Los Angeles, CA 90001" +174072,Wired Headphones,1,11.99,03/10/19 09:22,"210 Willow St, Boston, MA 02215" +174073,USB-C Charging Cable,1,11.95,03/11/19 21:05,"509 Maple St, Austin, TX 73301" +174074,AA Batteries (4-pack),2,3.84,03/27/19 14:13,"316 Hill St, Austin, TX 73301" +174075,Bose SoundSport Headphones,1,99.99,03/08/19 17:25,"752 Dogwood St, New York City, NY 10001" +174076,Macbook Pro Laptop,1,1700,03/11/19 09:07,"802 Sunset St, Los Angeles, CA 90001" +174077,Apple Airpods Headphones,1,150,03/02/19 13:20,"45 Highland St, Austin, TX 73301" +174078,Lightning Charging Cable,2,14.95,03/19/19 17:25,"521 River St, Dallas, TX 75001" +174079,Lightning Charging Cable,2,14.95,03/15/19 12:59,"655 Elm St, Dallas, TX 75001" +174080,AA Batteries (4-pack),2,3.84,03/22/19 11:13,"348 9th St, New York City, NY 10001" +174081,Wired Headphones,1,11.99,03/28/19 14:34,"720 Chestnut St, Seattle, WA 98101" +174082,Lightning Charging Cable,1,14.95,03/23/19 14:38,"771 4th St, San Francisco, CA 94016" +174083,Bose SoundSport Headphones,1,99.99,03/26/19 11:23,"443 Walnut St, Portland, OR 97035" +174084,Google Phone,1,600,03/16/19 12:41,"83 Maple St, Seattle, WA 98101" +174085,Wired Headphones,1,11.99,03/20/19 10:42,"912 Main St, Los Angeles, CA 90001" +174086,Apple Airpods Headphones,1,150,03/02/19 21:46,"539 Park St, Los Angeles, CA 90001" +174087,20in Monitor,1,109.99,03/05/19 17:58,"519 Cedar St, Dallas, TX 75001" +174088,USB-C Charging Cable,1,11.95,03/30/19 17:21,"921 7th St, Los Angeles, CA 90001" +174089,Lightning Charging Cable,1,14.95,03/08/19 03:31,"232 River St, Seattle, WA 98101" +174090,AA Batteries (4-pack),1,3.84,03/21/19 19:12,"712 5th St, Portland, OR 97035" +174091,Lightning Charging Cable,1,14.95,03/23/19 12:49,"795 13th St, Portland, OR 97035" +174092,USB-C Charging Cable,1,11.95,03/01/19 09:39,"827 Pine St, San Francisco, CA 94016" +174093,iPhone,1,700,03/25/19 20:37,"261 Lincoln St, Boston, MA 02215" +174094,Wired Headphones,1,11.99,03/06/19 01:24,"832 8th St, Boston, MA 02215" +174095,27in FHD Monitor,1,149.99,03/26/19 05:36,"678 11th St, Boston, MA 02215" +174096,Vareebadd Phone,1,400,03/29/19 20:56,"959 Park St, San Francisco, CA 94016" +174097,Google Phone,1,600,03/31/19 00:57,"526 Center St, Dallas, TX 75001" +174098,Lightning Charging Cable,1,14.95,03/04/19 13:36,"810 4th St, Seattle, WA 98101" +174099,Apple Airpods Headphones,1,150,03/01/19 17:31,"500 5th St, New York City, NY 10001" +174099,Flatscreen TV,1,300,03/01/19 17:31,"500 5th St, New York City, NY 10001" +174100,Bose SoundSport Headphones,1,99.99,03/13/19 08:35,"939 11th St, Portland, ME 04101" +174101,Wired Headphones,1,11.99,03/26/19 23:32,"199 10th St, Dallas, TX 75001" +174101,Lightning Charging Cable,1,14.95,03/26/19 23:32,"199 10th St, Dallas, TX 75001" +174102,34in Ultrawide Monitor,1,379.99,03/31/19 14:40,"574 Meadow St, New York City, NY 10001" +174103,Macbook Pro Laptop,1,1700,03/13/19 23:22,"568 Main St, Atlanta, GA 30301" +174104,AA Batteries (4-pack),1,3.84,03/05/19 13:28,"620 Center St, Los Angeles, CA 90001" +174104,Apple Airpods Headphones,1,150,03/05/19 13:28,"620 Center St, Los Angeles, CA 90001" +174105,Apple Airpods Headphones,1,150,03/17/19 20:27,"847 Highland St, Los Angeles, CA 90001" +174106,Flatscreen TV,1,300,03/18/19 22:16,"549 12th St, Boston, MA 02215" +174107,USB-C Charging Cable,1,11.95,03/10/19 12:25,"203 Spruce St, San Francisco, CA 94016" +174108,Wired Headphones,1,11.99,03/22/19 22:49,"625 4th St, Dallas, TX 75001" +174109,27in FHD Monitor,1,149.99,03/30/19 07:00,"342 Maple St, Boston, MA 02215" +174110,USB-C Charging Cable,1,11.95,04/01/19 01:09,"928 Maple St, Los Angeles, CA 90001" +174111,AA Batteries (4-pack),3,3.84,03/06/19 20:52,"952 Lake St, Portland, OR 97035" +174112,AA Batteries (4-pack),2,3.84,03/03/19 20:53,"656 13th St, Boston, MA 02215" +174113,Lightning Charging Cable,1,14.95,03/05/19 07:49,"463 9th St, Los Angeles, CA 90001" +174114,20in Monitor,1,109.99,03/20/19 11:58,"70 Adams St, Dallas, TX 75001" +174115,Wired Headphones,1,11.99,03/10/19 10:11,"828 Johnson St, Dallas, TX 75001" +174116,Bose SoundSport Headphones,1,99.99,03/04/19 21:23,"11 13th St, Austin, TX 73301" +174117,Bose SoundSport Headphones,1,99.99,03/20/19 15:46,"276 Dogwood St, Los Angeles, CA 90001" +174118,USB-C Charging Cable,1,11.95,03/25/19 10:30,"812 Lincoln St, Dallas, TX 75001" +174119,Apple Airpods Headphones,1,150,03/24/19 06:05,"402 9th St, New York City, NY 10001" +174120,Flatscreen TV,1,300,03/10/19 06:47,"418 Hill St, Los Angeles, CA 90001" +174121,27in FHD Monitor,1,149.99,03/09/19 21:27,"905 Maple St, Atlanta, GA 30301" +174122,AA Batteries (4-pack),5,3.84,03/06/19 20:39,"889 Lake St, Seattle, WA 98101" +174123,AA Batteries (4-pack),1,3.84,03/08/19 00:14,"257 Hickory St, San Francisco, CA 94016" +174124,AA Batteries (4-pack),1,3.84,03/11/19 16:45,"744 Maple St, Boston, MA 02215" +174125,AA Batteries (4-pack),2,3.84,03/24/19 23:14,"456 Madison St, Atlanta, GA 30301" +174126,LG Washing Machine,1,600.0,03/15/19 15:35,"463 Spruce St, San Francisco, CA 94016" +174127,Lightning Charging Cable,1,14.95,03/31/19 19:51,"19 Madison St, San Francisco, CA 94016" +174128,Apple Airpods Headphones,1,150,03/31/19 13:37,"866 Lake St, New York City, NY 10001" +174129,ThinkPad Laptop,1,999.99,03/23/19 18:06,"493 1st St, San Francisco, CA 94016" +174130,Apple Airpods Headphones,1,150,03/06/19 06:03,"732 7th St, Dallas, TX 75001" +174131,34in Ultrawide Monitor,1,379.99,03/27/19 08:32,"188 Highland St, New York City, NY 10001" +174132,AA Batteries (4-pack),1,3.84,03/31/19 11:23,"133 6th St, Portland, ME 04101" +174133,34in Ultrawide Monitor,1,379.99,03/02/19 09:44,"14 Highland St, Portland, ME 04101" +174134,AAA Batteries (4-pack),2,2.99,03/12/19 15:26,"101 Spruce St, Atlanta, GA 30301" +174135,27in FHD Monitor,1,149.99,03/11/19 21:04,"504 Ridge St, Atlanta, GA 30301" +174136,Bose SoundSport Headphones,1,99.99,03/12/19 17:51,"700 Sunset St, Dallas, TX 75001" +174137,AA Batteries (4-pack),1,3.84,03/13/19 19:41,"268 Lincoln St, Los Angeles, CA 90001" +174138,AA Batteries (4-pack),1,3.84,03/04/19 19:52,"10 Spruce St, Atlanta, GA 30301" +174139,Apple Airpods Headphones,1,150,03/08/19 13:21,"272 Jackson St, Austin, TX 73301" +174140,Bose SoundSport Headphones,1,99.99,03/15/19 22:36,"322 Main St, San Francisco, CA 94016" +174140,Bose SoundSport Headphones,1,99.99,03/15/19 22:36,"322 Main St, San Francisco, CA 94016" +174141,34in Ultrawide Monitor,1,379.99,03/01/19 18:06,"819 9th St, San Francisco, CA 94016" +174142,iPhone,1,700,03/11/19 10:40,"479 Main St, San Francisco, CA 94016" +174143,Lightning Charging Cable,1,14.95,03/05/19 19:01,"755 River St, San Francisco, CA 94016" +174144,iPhone,1,700,03/31/19 11:54,"535 2nd St, San Francisco, CA 94016" +174145,AAA Batteries (4-pack),2,2.99,03/06/19 16:18,"422 Wilson St, San Francisco, CA 94016" +174146,Lightning Charging Cable,1,14.95,03/04/19 22:41,"39 Meadow St, Dallas, TX 75001" +174147,Google Phone,1,600,03/25/19 20:30,"159 10th St, Portland, OR 97035" +174148,USB-C Charging Cable,1,11.95,03/10/19 14:36,"465 Maple St, New York City, NY 10001" +174149,Lightning Charging Cable,1,14.95,03/20/19 17:02,"349 Elm St, Dallas, TX 75001" +174150,Apple Airpods Headphones,1,150,03/02/19 23:28,"48 Washington St, Boston, MA 02215" +174151,Vareebadd Phone,1,400,03/04/19 00:45,"538 Spruce St, Los Angeles, CA 90001" +174151,USB-C Charging Cable,1,11.95,03/04/19 00:45,"538 Spruce St, Los Angeles, CA 90001" +174152,Google Phone,1,600,03/08/19 20:57,"455 Forest St, Dallas, TX 75001" +174153,AAA Batteries (4-pack),1,2.99,03/24/19 10:04,"372 Cherry St, Austin, TX 73301" +174154,Macbook Pro Laptop,1,1700,03/18/19 11:07,"262 Lakeview St, San Francisco, CA 94016" +174155,Wired Headphones,1,11.99,03/09/19 10:21,"580 Chestnut St, New York City, NY 10001" +174156,34in Ultrawide Monitor,1,379.99,03/06/19 15:50,"699 Hickory St, Los Angeles, CA 90001" +174157,Apple Airpods Headphones,1,150,03/27/19 01:11,"237 5th St, San Francisco, CA 94016" +174158,USB-C Charging Cable,1,11.95,03/22/19 20:18,"34 Hill St, Austin, TX 73301" +174159,AA Batteries (4-pack),1,3.84,03/11/19 07:49,"441 Main St, San Francisco, CA 94016" +174160,Wired Headphones,1,11.99,03/28/19 09:32,"942 Lake St, New York City, NY 10001" +174161,Lightning Charging Cable,1,14.95,03/08/19 20:13,"417 Meadow St, Los Angeles, CA 90001" +174162,Lightning Charging Cable,1,14.95,03/01/19 18:38,"698 7th St, New York City, NY 10001" +174163,AA Batteries (4-pack),2,3.84,03/25/19 16:22,"242 Madison St, San Francisco, CA 94016" +174164,20in Monitor,1,109.99,03/18/19 17:36,"61 Lincoln St, Dallas, TX 75001" +174165,Wired Headphones,1,11.99,03/24/19 12:45,"725 Washington St, Los Angeles, CA 90001" +174166,27in 4K Gaming Monitor,1,389.99,03/04/19 15:20,"373 1st St, San Francisco, CA 94016" +174167,USB-C Charging Cable,1,11.95,03/18/19 10:45,"233 North St, Seattle, WA 98101" +174168,Apple Airpods Headphones,1,150,03/27/19 17:15,"358 Park St, Los Angeles, CA 90001" +174169,Lightning Charging Cable,1,14.95,03/02/19 19:11,"730 13th St, San Francisco, CA 94016" +174170,ThinkPad Laptop,1,999.99,03/31/19 16:19,"401 Pine St, San Francisco, CA 94016" +174171,USB-C Charging Cable,1,11.95,03/23/19 12:13,"829 West St, Seattle, WA 98101" +174172,Apple Airpods Headphones,1,150,03/20/19 03:11,"94 Elm St, Seattle, WA 98101" +174173,AA Batteries (4-pack),1,3.84,03/29/19 21:42,"491 13th St, Portland, ME 04101" +174174,Apple Airpods Headphones,1,150,03/20/19 17:05,"493 Spruce St, San Francisco, CA 94016" +174175,ThinkPad Laptop,1,999.99,03/30/19 18:15,"66 Elm St, Boston, MA 02215" +174176,Lightning Charging Cable,1,14.95,03/05/19 00:48,"654 Lakeview St, Austin, TX 73301" +174177,Flatscreen TV,1,300,03/31/19 07:53,"708 2nd St, Atlanta, GA 30301" +174178,Lightning Charging Cable,1,14.95,03/10/19 10:57,"216 7th St, Atlanta, GA 30301" +174179,Lightning Charging Cable,1,14.95,03/13/19 22:53,"864 South St, Portland, ME 04101" +174180,Flatscreen TV,1,300,03/29/19 15:14,"504 Ridge St, New York City, NY 10001" +174181,Wired Headphones,1,11.99,03/07/19 12:51,"893 4th St, Los Angeles, CA 90001" +174182,Apple Airpods Headphones,1,150,03/26/19 19:11,"773 Pine St, New York City, NY 10001" +174183,Lightning Charging Cable,1,14.95,03/28/19 23:17,"112 Elm St, Dallas, TX 75001" +174184,Lightning Charging Cable,1,14.95,03/04/19 14:39,"234 Lake St, New York City, NY 10001" +174185,27in FHD Monitor,1,149.99,03/10/19 08:24,"662 Sunset St, Boston, MA 02215" +174186,Wired Headphones,1,11.99,03/08/19 16:41,"569 Washington St, Dallas, TX 75001" +174187,AAA Batteries (4-pack),1,2.99,03/18/19 08:08,"487 Madison St, San Francisco, CA 94016" +174188,AA Batteries (4-pack),2,3.84,03/05/19 17:36,"845 11th St, Atlanta, GA 30301" +174189,ThinkPad Laptop,1,999.99,03/19/19 20:57,"614 Cedar St, San Francisco, CA 94016" +174190,Wired Headphones,1,11.99,03/08/19 09:45,"782 8th St, Boston, MA 02215" +174191,USB-C Charging Cable,1,11.95,03/25/19 11:17,"789 Hill St, New York City, NY 10001" +174192,AA Batteries (4-pack),3,3.84,03/04/19 09:58,"820 13th St, Dallas, TX 75001" +174193,iPhone,1,700,03/21/19 13:58,"674 10th St, Seattle, WA 98101" +174193,Lightning Charging Cable,1,14.95,03/21/19 13:58,"674 10th St, Seattle, WA 98101" +174194,AA Batteries (4-pack),1,3.84,03/20/19 20:30,"254 West St, San Francisco, CA 94016" +174195,Bose SoundSport Headphones,1,99.99,03/25/19 11:02,"912 Ridge St, San Francisco, CA 94016" +174196,Wired Headphones,1,11.99,03/21/19 09:37,"702 Sunset St, Austin, TX 73301" +174197,iPhone,1,700,03/13/19 22:28,"411 Elm St, San Francisco, CA 94016" +174198,AA Batteries (4-pack),1,3.84,03/25/19 16:52,"46 Maple St, Dallas, TX 75001" +174199,Lightning Charging Cable,1,14.95,03/31/19 10:46,"603 Hill St, Dallas, TX 75001" +174200,Wired Headphones,1,11.99,03/07/19 00:52,"991 7th St, Atlanta, GA 30301" +174201,AAA Batteries (4-pack),3,2.99,03/27/19 21:17,"301 Lincoln St, San Francisco, CA 94016" +174202,Wired Headphones,1,11.99,03/17/19 12:36,"459 Pine St, San Francisco, CA 94016" +174203,AAA Batteries (4-pack),2,2.99,03/17/19 17:58,"412 14th St, Seattle, WA 98101" +174204,AAA Batteries (4-pack),1,2.99,03/20/19 20:25,"157 Highland St, San Francisco, CA 94016" +174205,Lightning Charging Cable,1,14.95,03/17/19 17:10,"345 Park St, San Francisco, CA 94016" +174206,Macbook Pro Laptop,1,1700,03/22/19 12:37,"103 South St, Los Angeles, CA 90001" +174207,Apple Airpods Headphones,1,150,03/20/19 18:45,"749 Forest St, Los Angeles, CA 90001" +174208,iPhone,1,700,03/05/19 21:23,"248 Madison St, Los Angeles, CA 90001" +174208,Lightning Charging Cable,1,14.95,03/05/19 21:23,"248 Madison St, Los Angeles, CA 90001" +174209,27in FHD Monitor,1,149.99,03/19/19 23:12,"798 Adams St, Austin, TX 73301" +174210,Apple Airpods Headphones,1,150,03/17/19 11:41,"977 9th St, Los Angeles, CA 90001" +174211,Apple Airpods Headphones,1,150,03/04/19 19:17,"660 11th St, Boston, MA 02215" +174212,USB-C Charging Cable,1,11.95,03/16/19 10:22,"875 Wilson St, San Francisco, CA 94016" +174213,20in Monitor,1,109.99,03/02/19 17:36,"644 7th St, New York City, NY 10001" +174214,USB-C Charging Cable,1,11.95,03/18/19 10:22,"474 South St, San Francisco, CA 94016" +174215,Google Phone,1,600,03/19/19 13:40,"851 Main St, Los Angeles, CA 90001" +174216,27in 4K Gaming Monitor,1,389.99,03/03/19 03:34,"292 7th St, Boston, MA 02215" +174217,AAA Batteries (4-pack),1,2.99,03/05/19 06:18,"35 Jackson St, San Francisco, CA 94016" +174218,AA Batteries (4-pack),1,3.84,03/03/19 23:51,"532 Madison St, Boston, MA 02215" +174219,Bose SoundSport Headphones,1,99.99,03/15/19 15:34,"204 Pine St, Seattle, WA 98101" +174220,Lightning Charging Cable,2,14.95,03/03/19 19:14,"646 North St, Boston, MA 02215" +174221,ThinkPad Laptop,1,999.99,03/20/19 20:40,"182 Adams St, Boston, MA 02215" +174222,Apple Airpods Headphones,1,150,03/30/19 12:08,"430 5th St, San Francisco, CA 94016" +174223,20in Monitor,1,109.99,03/22/19 12:22,"895 Lakeview St, San Francisco, CA 94016" +174224,AAA Batteries (4-pack),1,2.99,03/05/19 20:30,"8 Meadow St, Seattle, WA 98101" +174225,27in FHD Monitor,1,149.99,03/01/19 20:45,"776 Jackson St, Atlanta, GA 30301" +174226,Flatscreen TV,1,300,03/26/19 20:03,"415 Pine St, New York City, NY 10001" +174227,Apple Airpods Headphones,1,150,03/09/19 22:33,"21 7th St, Dallas, TX 75001" +174228,Wired Headphones,1,11.99,03/01/19 11:06,"291 Jefferson St, Seattle, WA 98101" +174229,AAA Batteries (4-pack),1,2.99,03/11/19 20:31,"746 Pine St, Boston, MA 02215" +174230,iPhone,1,700,03/25/19 05:23,"185 Ridge St, Los Angeles, CA 90001" +174230,Wired Headphones,1,11.99,03/25/19 05:23,"185 Ridge St, Los Angeles, CA 90001" +174231,Wired Headphones,1,11.99,03/13/19 15:35,"760 2nd St, San Francisco, CA 94016" +174232,AAA Batteries (4-pack),2,2.99,03/27/19 15:02,"252 Forest St, Portland, OR 97035" +174233,27in 4K Gaming Monitor,1,389.99,03/16/19 11:34,"68 Church St, New York City, NY 10001" +174234,Lightning Charging Cable,1,14.95,03/03/19 15:17,"249 13th St, Portland, OR 97035" +174235,20in Monitor,1,109.99,03/12/19 00:11,"365 Jackson St, Los Angeles, CA 90001" +174236,USB-C Charging Cable,2,11.95,03/27/19 21:14,"518 Sunset St, Boston, MA 02215" +174237,Wired Headphones,1,11.99,03/25/19 14:32,"396 1st St, Dallas, TX 75001" +174238,20in Monitor,1,109.99,03/10/19 18:09,"53 6th St, San Francisco, CA 94016" +174239,AAA Batteries (4-pack),1,2.99,03/26/19 19:55,"811 Hickory St, Seattle, WA 98101" +174240,Flatscreen TV,1,300,03/19/19 09:38,"252 Willow St, Los Angeles, CA 90001" +174241,Lightning Charging Cable,1,14.95,03/03/19 10:03,"116 Washington St, San Francisco, CA 94016" +174242,Wired Headphones,1,11.99,03/20/19 17:53,"607 Washington St, Seattle, WA 98101" +174243,Wired Headphones,1,11.99,03/16/19 11:29,"747 6th St, Seattle, WA 98101" +174244,Wired Headphones,1,11.99,03/31/19 13:10,"169 Washington St, Seattle, WA 98101" +174245,AAA Batteries (4-pack),2,2.99,03/21/19 19:42,"442 Lake St, New York City, NY 10001" +174246,AA Batteries (4-pack),1,3.84,03/08/19 21:46,"588 4th St, Seattle, WA 98101" +174247,Bose SoundSport Headphones,1,99.99,03/01/19 13:08,"998 Jefferson St, Austin, TX 73301" +174248,Bose SoundSport Headphones,1,99.99,03/20/19 20:36,"143 14th St, Portland, ME 04101" +174249,Wired Headphones,1,11.99,03/20/19 18:29,"52 Elm St, Atlanta, GA 30301" +174250,Bose SoundSport Headphones,1,99.99,03/31/19 20:08,"117 Cedar St, New York City, NY 10001" +174251,Vareebadd Phone,1,400,03/06/19 14:44,"866 Dogwood St, Portland, OR 97035" +174252,Bose SoundSport Headphones,1,99.99,03/23/19 13:23,"367 Maple St, Los Angeles, CA 90001" +174253,Bose SoundSport Headphones,1,99.99,03/17/19 07:36,"175 Cherry St, Portland, OR 97035" +174254,USB-C Charging Cable,1,11.95,03/09/19 20:15,"211 9th St, Los Angeles, CA 90001" +174255,ThinkPad Laptop,1,999.99,03/04/19 23:18,"645 Ridge St, San Francisco, CA 94016" +174256,Bose SoundSport Headphones,1,99.99,03/03/19 09:59,"931 Cedar St, Los Angeles, CA 90001" +174257,AAA Batteries (4-pack),1,2.99,03/30/19 09:48,"707 Park St, New York City, NY 10001" +174258,iPhone,1,700,03/31/19 21:10,"337 Hill St, San Francisco, CA 94016" +174258,Wired Headphones,1,11.99,03/31/19 21:10,"337 Hill St, San Francisco, CA 94016" +174259,Lightning Charging Cable,1,14.95,03/08/19 18:29,"601 Pine St, New York City, NY 10001" +174260,27in FHD Monitor,1,149.99,03/01/19 19:48,"742 North St, Austin, TX 73301" +174261,20in Monitor,1,109.99,03/19/19 23:28,"81 12th St, New York City, NY 10001" +174262,AA Batteries (4-pack),1,3.84,03/24/19 00:43,"293 Jefferson St, New York City, NY 10001" +174263,Flatscreen TV,1,300,03/10/19 16:03,"895 9th St, New York City, NY 10001" +174264,ThinkPad Laptop,1,999.99,03/31/19 21:03,"755 Pine St, Seattle, WA 98101" +174265,AAA Batteries (4-pack),1,2.99,03/02/19 14:50,"275 2nd St, New York City, NY 10001" +174266,Wired Headphones,1,11.99,03/16/19 13:30,"822 9th St, New York City, NY 10001" +174267,27in FHD Monitor,1,149.99,03/14/19 12:35,"96 South St, Austin, TX 73301" +174268,USB-C Charging Cable,1,11.95,03/26/19 17:05,"631 South St, Los Angeles, CA 90001" +174269,Apple Airpods Headphones,1,150,03/07/19 20:24,"425 Wilson St, Los Angeles, CA 90001" +174270,27in FHD Monitor,1,149.99,03/15/19 14:57,"793 11th St, Portland, OR 97035" +,,,,, +174271,Lightning Charging Cable,1,14.95,03/05/19 16:11,"650 Lincoln St, San Francisco, CA 94016" +174272,Bose SoundSport Headphones,1,99.99,03/04/19 21:13,"394 Cedar St, Austin, TX 73301" +174272,USB-C Charging Cable,1,11.95,03/04/19 21:13,"394 Cedar St, Austin, TX 73301" +174273,34in Ultrawide Monitor,1,379.99,03/11/19 11:21,"584 12th St, Boston, MA 02215" +174274,AAA Batteries (4-pack),1,2.99,03/10/19 15:36,"792 Elm St, San Francisco, CA 94016" +174275,Lightning Charging Cable,2,14.95,03/05/19 19:16,"23 10th St, Los Angeles, CA 90001" +174276,34in Ultrawide Monitor,1,379.99,03/02/19 22:30,"813 Spruce St, Austin, TX 73301" +174277,Wired Headphones,1,11.99,03/09/19 11:40,"353 2nd St, New York City, NY 10001" +174278,Macbook Pro Laptop,1,1700,03/31/19 19:45,"17 Center St, New York City, NY 10001" +174279,Vareebadd Phone,1,400,03/12/19 12:53,"961 Park St, Austin, TX 73301" +174280,USB-C Charging Cable,1,11.95,03/27/19 18:33,"440 9th St, San Francisco, CA 94016" +174281,Lightning Charging Cable,1,14.95,03/10/19 13:47,"956 Hill St, San Francisco, CA 94016" +174282,Flatscreen TV,1,300,03/21/19 22:27,"643 Dogwood St, Boston, MA 02215" +174283,AA Batteries (4-pack),2,3.84,03/07/19 15:52,"178 Willow St, Boston, MA 02215" +174284,34in Ultrawide Monitor,1,379.99,03/06/19 18:56,"887 Spruce St, Atlanta, GA 30301" +174285,AA Batteries (4-pack),3,3.84,03/22/19 07:06,"309 Johnson St, Austin, TX 73301" +174285,USB-C Charging Cable,1,11.95,03/22/19 07:06,"309 Johnson St, Austin, TX 73301" +174286,Lightning Charging Cable,1,14.95,03/20/19 13:56,"473 7th St, New York City, NY 10001" +174287,Wired Headphones,1,11.99,03/20/19 20:50,"809 1st St, San Francisco, CA 94016" +174288,Flatscreen TV,1,300,03/27/19 18:16,"175 Chestnut St, Boston, MA 02215" +174289,Lightning Charging Cable,1,14.95,03/09/19 18:10,"691 Center St, San Francisco, CA 94016" +174290,AAA Batteries (4-pack),1,2.99,03/21/19 10:18,"934 Willow St, Los Angeles, CA 90001" +174291,AAA Batteries (4-pack),2,2.99,03/11/19 14:32,"373 Walnut St, New York City, NY 10001" +174292,Wired Headphones,1,11.99,03/08/19 22:06,"527 Forest St, New York City, NY 10001" +174293,27in FHD Monitor,1,149.99,03/16/19 10:31,"884 5th St, San Francisco, CA 94016" +174294,AAA Batteries (4-pack),1,2.99,03/31/19 19:34,"761 5th St, San Francisco, CA 94016" +174295,iPhone,1,700,03/04/19 20:57,"348 Dogwood St, Dallas, TX 75001" +174296,USB-C Charging Cable,1,11.95,03/03/19 12:13,"716 Cedar St, Los Angeles, CA 90001" +174297,USB-C Charging Cable,1,11.95,03/01/19 22:17,"802 Cherry St, Atlanta, GA 30301" +174298,AA Batteries (4-pack),1,3.84,03/01/19 20:09,"103 Church St, Dallas, TX 75001" +174299,Wired Headphones,1,11.99,03/24/19 19:48,"638 Cedar St, Boston, MA 02215" +174300,AAA Batteries (4-pack),1,2.99,03/01/19 10:13,"808 Spruce St, San Francisco, CA 94016" +174301,Bose SoundSport Headphones,1,99.99,03/30/19 19:20,"672 Madison St, Dallas, TX 75001" +174302,AAA Batteries (4-pack),1,2.99,03/13/19 20:24,"78 Cedar St, New York City, NY 10001" +174303,Wired Headphones,1,11.99,03/27/19 09:51,"992 Hill St, Seattle, WA 98101" +174304,Apple Airpods Headphones,1,150,03/05/19 13:04,"30 5th St, New York City, NY 10001" +174305,AA Batteries (4-pack),1,3.84,03/31/19 17:17,"701 Center St, Atlanta, GA 30301" +174306,Bose SoundSport Headphones,1,99.99,03/01/19 20:40,"310 Hill St, Atlanta, GA 30301" +174307,Apple Airpods Headphones,1,150,03/06/19 18:17,"223 Cherry St, San Francisco, CA 94016" +174308,Wired Headphones,1,11.99,03/18/19 09:48,"401 13th St, Portland, OR 97035" +174309,Wired Headphones,1,11.99,03/14/19 13:39,"347 Highland St, Los Angeles, CA 90001" +174310,Bose SoundSport Headphones,1,99.99,03/21/19 14:16,"147 Pine St, San Francisco, CA 94016" +174311,Lightning Charging Cable,1,14.95,03/22/19 17:26,"68 Maple St, Boston, MA 02215" +174312,USB-C Charging Cable,1,11.95,03/01/19 22:03,"299 4th St, San Francisco, CA 94016" +174313,AAA Batteries (4-pack),1,2.99,03/04/19 11:05,"713 Madison St, Austin, TX 73301" +174314,AAA Batteries (4-pack),1,2.99,03/20/19 13:56,"793 Jefferson St, Atlanta, GA 30301" +174315,Lightning Charging Cable,1,14.95,03/06/19 11:53,"666 Center St, New York City, NY 10001" +174316,USB-C Charging Cable,1,11.95,03/28/19 21:34,"256 8th St, Austin, TX 73301" +174317,AAA Batteries (4-pack),1,2.99,03/16/19 20:57,"498 Lake St, Boston, MA 02215" +174318,Lightning Charging Cable,1,14.95,03/10/19 12:39,"527 12th St, Atlanta, GA 30301" +174319,Apple Airpods Headphones,1,150,03/14/19 16:58,"753 2nd St, Seattle, WA 98101" +174320,AA Batteries (4-pack),1,3.84,03/12/19 20:52,"247 Hickory St, Atlanta, GA 30301" +174321,AAA Batteries (4-pack),1,2.99,03/22/19 21:35,"687 Church St, Boston, MA 02215" +174322,Apple Airpods Headphones,1,150,03/06/19 20:24,"899 12th St, Dallas, TX 75001" +174323,Wired Headphones,1,11.99,03/08/19 06:14,"359 Maple St, San Francisco, CA 94016" +174324,Google Phone,1,600,03/29/19 09:14,"30 Chestnut St, Atlanta, GA 30301" +174325,Bose SoundSport Headphones,1,99.99,03/14/19 23:51,"932 13th St, Dallas, TX 75001" +174326,Flatscreen TV,1,300,03/20/19 10:56,"462 Cherry St, New York City, NY 10001" +174327,27in FHD Monitor,2,149.99,03/01/19 11:15,"174 Wilson St, Austin, TX 73301" +174328,Apple Airpods Headphones,1,150,03/26/19 10:20,"813 South St, New York City, NY 10001" +174329,iPhone,1,700,03/09/19 19:16,"200 Madison St, San Francisco, CA 94016" +174330,Wired Headphones,1,11.99,03/15/19 14:40,"166 Forest St, San Francisco, CA 94016" +174331,Lightning Charging Cable,1,14.95,03/12/19 12:46,"307 Park St, Atlanta, GA 30301" +174332,Apple Airpods Headphones,1,150,03/04/19 00:56,"561 Lakeview St, New York City, NY 10001" +174333,Lightning Charging Cable,1,14.95,03/05/19 20:42,"853 Madison St, Seattle, WA 98101" +174334,27in 4K Gaming Monitor,1,389.99,03/12/19 15:40,"765 Lake St, San Francisco, CA 94016" +174335,Lightning Charging Cable,1,14.95,03/25/19 20:07,"887 Johnson St, San Francisco, CA 94016" +174336,USB-C Charging Cable,1,11.95,03/18/19 18:23,"839 Maple St, Los Angeles, CA 90001" +174337,USB-C Charging Cable,1,11.95,03/28/19 06:53,"958 Elm St, Dallas, TX 75001" +174338,USB-C Charging Cable,1,11.95,03/16/19 14:18,"790 Chestnut St, New York City, NY 10001" +174339,Wired Headphones,1,11.99,03/07/19 16:44,"353 14th St, San Francisco, CA 94016" +174340,ThinkPad Laptop,1,999.99,03/15/19 02:04,"585 9th St, Atlanta, GA 30301" +174341,AAA Batteries (4-pack),1,2.99,03/29/19 16:44,"696 Cherry St, San Francisco, CA 94016" +174342,AA Batteries (4-pack),1,3.84,03/12/19 13:05,"322 Chestnut St, New York City, NY 10001" +174343,Wired Headphones,1,11.99,03/05/19 21:11,"274 Center St, Portland, OR 97035" +174344,Macbook Pro Laptop,1,1700,03/29/19 17:44,"53 10th St, San Francisco, CA 94016" +174345,USB-C Charging Cable,1,11.95,03/21/19 10:02,"277 10th St, Atlanta, GA 30301" +174346,AA Batteries (4-pack),1,3.84,03/16/19 15:06,"878 Willow St, Boston, MA 02215" +174347,Bose SoundSport Headphones,1,99.99,03/11/19 10:35,"399 Sunset St, New York City, NY 10001" +174348,AAA Batteries (4-pack),2,2.99,03/25/19 20:16,"899 Meadow St, San Francisco, CA 94016" +174349,USB-C Charging Cable,1,11.95,03/27/19 14:12,"825 Elm St, Los Angeles, CA 90001" +174350,27in 4K Gaming Monitor,1,389.99,03/12/19 13:03,"364 10th St, New York City, NY 10001" +174351,Apple Airpods Headphones,1,150,03/22/19 12:38,"183 Elm St, San Francisco, CA 94016" +174352,Wired Headphones,1,11.99,03/06/19 17:39,"318 1st St, Los Angeles, CA 90001" +174353,Flatscreen TV,1,300,03/04/19 15:44,"888 9th St, San Francisco, CA 94016" +174354,AA Batteries (4-pack),1,3.84,03/25/19 07:31,"758 1st St, Boston, MA 02215" +174355,AAA Batteries (4-pack),1,2.99,03/28/19 19:29,"530 North St, New York City, NY 10001" +174356,AAA Batteries (4-pack),2,2.99,03/19/19 09:39,"614 Hickory St, Los Angeles, CA 90001" +174357,USB-C Charging Cable,1,11.95,03/26/19 03:36,"792 Wilson St, Portland, OR 97035" +174358,Wired Headphones,1,11.99,03/19/19 22:31,"334 6th St, San Francisco, CA 94016" +174359,AA Batteries (4-pack),1,3.84,03/18/19 16:12,"107 9th St, Portland, OR 97035" +174360,iPhone,1,700,03/24/19 19:45,"219 Jackson St, Seattle, WA 98101" +174361,Lightning Charging Cable,1,14.95,03/19/19 09:43,"731 5th St, Los Angeles, CA 90001" +174362,Google Phone,1,600,03/05/19 18:47,"440 Lincoln St, Austin, TX 73301" +174363,Bose SoundSport Headphones,1,99.99,03/22/19 05:24,"302 Hickory St, Seattle, WA 98101" +174364,ThinkPad Laptop,1,999.99,03/05/19 12:50,"311 8th St, Boston, MA 02215" +174365,AA Batteries (4-pack),3,3.84,03/29/19 18:23,"375 Main St, Dallas, TX 75001" +174366,34in Ultrawide Monitor,1,379.99,03/30/19 23:01,"893 North St, Boston, MA 02215" +174367,Wired Headphones,1,11.99,03/04/19 19:11,"87 Cedar St, Austin, TX 73301" +174368,USB-C Charging Cable,1,11.95,03/28/19 18:07,"90 14th St, Dallas, TX 75001" +174369,Wired Headphones,1,11.99,03/18/19 14:17,"823 South St, Los Angeles, CA 90001" +174370,Apple Airpods Headphones,1,150,03/30/19 09:37,"469 6th St, Los Angeles, CA 90001" +174371,Bose SoundSport Headphones,1,99.99,03/07/19 11:49,"388 Center St, San Francisco, CA 94016" +174372,AAA Batteries (4-pack),1,2.99,03/24/19 19:43,"468 Adams St, Portland, OR 97035" +174373,Lightning Charging Cable,1,14.95,03/15/19 15:25,"955 2nd St, New York City, NY 10001" +174374,27in 4K Gaming Monitor,1,389.99,03/07/19 13:36,"288 Washington St, San Francisco, CA 94016" +174375,Apple Airpods Headphones,1,150,03/21/19 14:30,"240 Walnut St, Los Angeles, CA 90001" +174376,27in 4K Gaming Monitor,1,389.99,03/22/19 08:26,"794 5th St, Seattle, WA 98101" +174377,Lightning Charging Cable,1,14.95,03/10/19 08:35,"741 Church St, San Francisco, CA 94016" +174378,AAA Batteries (4-pack),1,2.99,03/12/19 21:16,"979 Sunset St, San Francisco, CA 94016" +174379,34in Ultrawide Monitor,1,379.99,03/12/19 18:45,"286 4th St, Portland, OR 97035" +174380,Lightning Charging Cable,2,14.95,03/26/19 09:02,"409 Jefferson St, Boston, MA 02215" +174381,Wired Headphones,1,11.99,03/21/19 18:04,"794 Church St, Boston, MA 02215" +174382,Vareebadd Phone,1,400,03/08/19 19:24,"406 11th St, Portland, OR 97035" +174382,USB-C Charging Cable,1,11.95,03/08/19 19:24,"406 11th St, Portland, OR 97035" +174383,Lightning Charging Cable,1,14.95,03/04/19 13:19,"190 Adams St, Boston, MA 02215" +174384,AAA Batteries (4-pack),1,2.99,03/12/19 15:50,"285 Meadow St, Seattle, WA 98101" +174385,20in Monitor,1,109.99,03/08/19 21:16,"732 10th St, San Francisco, CA 94016" +174386,Lightning Charging Cable,1,14.95,03/26/19 16:02,"645 Jackson St, Portland, OR 97035" +174387,Lightning Charging Cable,1,14.95,03/06/19 16:32,"497 6th St, San Francisco, CA 94016" +174388,34in Ultrawide Monitor,1,379.99,03/16/19 19:36,"23 South St, San Francisco, CA 94016" +174389,ThinkPad Laptop,1,999.99,03/11/19 22:04,"626 Willow St, San Francisco, CA 94016" +174390,AAA Batteries (4-pack),1,2.99,03/27/19 10:09,"944 West St, New York City, NY 10001" +174391,Apple Airpods Headphones,1,150,03/04/19 08:55,"82 8th St, Los Angeles, CA 90001" +174392,Wired Headphones,1,11.99,03/03/19 13:05,"711 West St, Atlanta, GA 30301" +174393,20in Monitor,1,109.99,03/05/19 14:52,"975 Dogwood St, Los Angeles, CA 90001" +174394,AAA Batteries (4-pack),1,2.99,03/09/19 17:16,"336 Meadow St, Boston, MA 02215" +174395,Lightning Charging Cable,1,14.95,03/28/19 18:07,"416 Spruce St, Atlanta, GA 30301" +174396,AA Batteries (4-pack),1,3.84,03/05/19 03:12,"135 1st St, Los Angeles, CA 90001" +174397,AAA Batteries (4-pack),6,2.99,03/04/19 04:50,"777 Washington St, San Francisco, CA 94016" +174398,Lightning Charging Cable,1,14.95,03/27/19 19:46,"621 Willow St, Los Angeles, CA 90001" +174399,34in Ultrawide Monitor,1,379.99,03/24/19 14:23,"646 Church St, Boston, MA 02215" +174400,34in Ultrawide Monitor,1,379.99,03/12/19 10:40,"907 Walnut St, San Francisco, CA 94016" +174401,Apple Airpods Headphones,1,150,03/21/19 11:14,"315 Center St, San Francisco, CA 94016" +174402,AAA Batteries (4-pack),2,2.99,03/06/19 21:23,"271 Washington St, Portland, ME 04101" +174403,27in 4K Gaming Monitor,1,389.99,03/20/19 09:41,"935 11th St, New York City, NY 10001" +174404,Wired Headphones,1,11.99,03/01/19 12:36,"755 10th St, Boston, MA 02215" +174405,AAA Batteries (4-pack),1,2.99,03/22/19 20:21,"282 Wilson St, Austin, TX 73301" +174406,AAA Batteries (4-pack),2,2.99,03/10/19 17:38,"22 Church St, New York City, NY 10001" +174407,Lightning Charging Cable,1,14.95,03/04/19 21:51,"594 Lincoln St, Boston, MA 02215" +174408,USB-C Charging Cable,2,11.95,03/23/19 08:59,"78 Dogwood St, San Francisco, CA 94016" +174409,34in Ultrawide Monitor,1,379.99,03/23/19 10:04,"604 11th St, Dallas, TX 75001" +174410,Google Phone,1,600,03/25/19 12:38,"611 Walnut St, Los Angeles, CA 90001" +174411,27in FHD Monitor,1,149.99,03/05/19 13:04,"173 Cedar St, Seattle, WA 98101" +174412,Lightning Charging Cable,2,14.95,03/02/19 16:08,"881 South St, New York City, NY 10001" +174413,Bose SoundSport Headphones,1,99.99,03/04/19 08:52,"96 8th St, San Francisco, CA 94016" +174414,iPhone,1,700,03/31/19 21:26,"924 Maple St, Austin, TX 73301" +174415,AAA Batteries (4-pack),1,2.99,03/01/19 13:21,"150 Adams St, Portland, OR 97035" +174416,Wired Headphones,1,11.99,03/15/19 10:53,"892 12th St, Austin, TX 73301" +174417,AAA Batteries (4-pack),2,2.99,03/03/19 14:11,"797 Hill St, Los Angeles, CA 90001" +174418,Lightning Charging Cable,1,14.95,03/12/19 17:13,"332 7th St, San Francisco, CA 94016" +174419,AAA Batteries (4-pack),1,2.99,03/27/19 17:05,"238 Johnson St, New York City, NY 10001" +174420,Apple Airpods Headphones,1,150,03/03/19 07:40,"212 River St, Seattle, WA 98101" +174421,27in FHD Monitor,1,149.99,03/26/19 08:31,"875 1st St, Boston, MA 02215" +174422,Lightning Charging Cable,1,14.95,03/25/19 18:13,"873 Pine St, Atlanta, GA 30301" +174423,USB-C Charging Cable,1,11.95,03/21/19 22:56,"694 Adams St, New York City, NY 10001" +174424,AA Batteries (4-pack),1,3.84,03/28/19 16:33,"725 Lakeview St, San Francisco, CA 94016" +174425,AAA Batteries (4-pack),1,2.99,03/27/19 16:19,"917 Sunset St, San Francisco, CA 94016" +174426,AAA Batteries (4-pack),2,2.99,03/06/19 22:27,"871 Willow St, Dallas, TX 75001" +174427,Wired Headphones,1,11.99,03/16/19 10:29,"949 7th St, New York City, NY 10001" +174428,AAA Batteries (4-pack),1,2.99,03/17/19 16:07,"488 Johnson St, Boston, MA 02215" +174429,AAA Batteries (4-pack),1,2.99,03/27/19 09:33,"248 Walnut St, New York City, NY 10001" +174430,AA Batteries (4-pack),1,3.84,03/16/19 10:55,"458 Johnson St, San Francisco, CA 94016" +174431,Lightning Charging Cable,1,14.95,03/21/19 21:42,"24 Elm St, Atlanta, GA 30301" +174432,Flatscreen TV,1,300,03/04/19 21:44,"731 14th St, Boston, MA 02215" +174433,Wired Headphones,1,11.99,03/10/19 16:40,"348 Forest St, San Francisco, CA 94016" +174434,AAA Batteries (4-pack),1,2.99,03/30/19 20:42,"293 Cherry St, San Francisco, CA 94016" +174435,Wired Headphones,1,11.99,03/11/19 18:04,"188 South St, Los Angeles, CA 90001" +174436,Macbook Pro Laptop,1,1700,03/28/19 22:54,"751 14th St, New York City, NY 10001" +174437,Bose SoundSport Headphones,1,99.99,03/27/19 13:08,"734 Forest St, Los Angeles, CA 90001" +174438,Apple Airpods Headphones,1,150,03/16/19 11:57,"637 Lincoln St, Los Angeles, CA 90001" +174438,Wired Headphones,1,11.99,03/16/19 11:57,"637 Lincoln St, Los Angeles, CA 90001" +174439,Bose SoundSport Headphones,1,99.99,03/28/19 19:20,"927 Cedar St, Seattle, WA 98101" +174440,Lightning Charging Cable,1,14.95,03/30/19 12:46,"94 Cherry St, Seattle, WA 98101" +174441,Lightning Charging Cable,1,14.95,03/28/19 21:12,"930 Wilson St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +174442,AAA Batteries (4-pack),1,2.99,03/23/19 09:19,"390 Wilson St, San Francisco, CA 94016" +174443,Lightning Charging Cable,1,14.95,03/14/19 08:30,"620 14th St, Portland, OR 97035" +174444,USB-C Charging Cable,1,11.95,03/04/19 12:41,"981 Sunset St, Dallas, TX 75001" +174445,USB-C Charging Cable,1,11.95,03/11/19 16:38,"767 Elm St, Los Angeles, CA 90001" +174446,Wired Headphones,1,11.99,03/16/19 13:41,"955 Church St, New York City, NY 10001" +174447,AA Batteries (4-pack),2,3.84,03/09/19 14:53,"502 7th St, Seattle, WA 98101" +174448,Apple Airpods Headphones,1,150,03/27/19 21:15,"251 8th St, Seattle, WA 98101" +174449,Apple Airpods Headphones,1,150,03/08/19 17:00,"929 Center St, Los Angeles, CA 90001" +174450,Bose SoundSport Headphones,1,99.99,03/23/19 09:53,"738 10th St, New York City, NY 10001" +174451,Apple Airpods Headphones,1,150,03/13/19 20:51,"161 Lake St, San Francisco, CA 94016" +174452,USB-C Charging Cable,2,11.95,03/31/19 17:07,"710 Adams St, San Francisco, CA 94016" +174453,27in 4K Gaming Monitor,1,389.99,03/25/19 18:11,"437 Adams St, New York City, NY 10001" +174454,20in Monitor,1,109.99,03/31/19 21:51,"686 Willow St, Atlanta, GA 30301" +174455,Wired Headphones,1,11.99,03/25/19 12:13,"447 Church St, New York City, NY 10001" +174456,AAA Batteries (4-pack),2,2.99,03/17/19 12:41,"774 12th St, Atlanta, GA 30301" +174457,34in Ultrawide Monitor,1,379.99,03/07/19 20:49,"431 Center St, Dallas, TX 75001" +174458,27in 4K Gaming Monitor,1,389.99,03/26/19 03:19,"436 South St, Seattle, WA 98101" +174459,Bose SoundSport Headphones,1,99.99,03/12/19 12:24,"246 12th St, Los Angeles, CA 90001" +174460,Apple Airpods Headphones,1,150,03/01/19 11:14,"732 Forest St, Seattle, WA 98101" +174461,27in 4K Gaming Monitor,1,389.99,03/03/19 20:39,"803 Willow St, San Francisco, CA 94016" +174462,Wired Headphones,1,11.99,03/16/19 14:58,"184 2nd St, Los Angeles, CA 90001" +174463,Lightning Charging Cable,1,14.95,03/25/19 19:44,"828 Washington St, New York City, NY 10001" +174464,Macbook Pro Laptop,1,1700,03/27/19 12:22,"730 Sunset St, Austin, TX 73301" +174465,AAA Batteries (4-pack),2,2.99,03/23/19 16:18,"418 9th St, Portland, OR 97035" +174466,USB-C Charging Cable,1,11.95,03/12/19 21:18,"170 Highland St, San Francisco, CA 94016" +174467,Apple Airpods Headphones,1,150,03/15/19 20:43,"847 Meadow St, Seattle, WA 98101" +174468,Vareebadd Phone,1,400,03/15/19 15:58,"225 Johnson St, San Francisco, CA 94016" +174469,Apple Airpods Headphones,1,150,03/28/19 21:07,"380 14th St, New York City, NY 10001" +174470,AAA Batteries (4-pack),2,2.99,03/29/19 18:38,"14 Lincoln St, San Francisco, CA 94016" +174471,27in FHD Monitor,1,149.99,03/31/19 18:06,"622 Jackson St, Atlanta, GA 30301" +174472,AA Batteries (4-pack),1,3.84,03/16/19 08:36,"97 9th St, San Francisco, CA 94016" +174473,Bose SoundSport Headphones,1,99.99,03/03/19 00:25,"877 River St, San Francisco, CA 94016" +174474,Flatscreen TV,2,300,03/09/19 09:53,"522 Lakeview St, Seattle, WA 98101" +174475,20in Monitor,1,109.99,03/09/19 11:29,"296 Johnson St, Austin, TX 73301" +,,,,, +174476,AAA Batteries (4-pack),3,2.99,03/15/19 21:17,"133 2nd St, San Francisco, CA 94016" +174477,USB-C Charging Cable,1,11.95,03/31/19 16:23,"115 South St, Dallas, TX 75001" +174478,USB-C Charging Cable,1,11.95,03/20/19 08:36,"844 Sunset St, San Francisco, CA 94016" +174479,Vareebadd Phone,1,400,03/11/19 07:30,"926 14th St, Atlanta, GA 30301" +174479,USB-C Charging Cable,1,11.95,03/11/19 07:30,"926 14th St, Atlanta, GA 30301" +174480,Wired Headphones,1,11.99,03/06/19 18:46,"581 Madison St, Dallas, TX 75001" +174481,Flatscreen TV,1,300,03/13/19 14:19,"930 Cedar St, Los Angeles, CA 90001" +174482,USB-C Charging Cable,1,11.95,03/20/19 19:56,"708 West St, San Francisco, CA 94016" +174483,Bose SoundSport Headphones,1,99.99,03/24/19 09:19,"489 Lake St, San Francisco, CA 94016" +174484,Flatscreen TV,1,300,03/22/19 01:33,"149 Highland St, San Francisco, CA 94016" +174485,Wired Headphones,1,11.99,03/23/19 13:01,"615 14th St, Los Angeles, CA 90001" +174486,Wired Headphones,2,11.99,03/02/19 19:09,"953 West St, Dallas, TX 75001" +174487,USB-C Charging Cable,1,11.95,03/03/19 19:58,"274 Dogwood St, San Francisco, CA 94016" +174488,Wired Headphones,2,11.99,03/15/19 06:12,"299 Main St, Seattle, WA 98101" +174489,Apple Airpods Headphones,1,150,03/02/19 14:36,"490 Highland St, San Francisco, CA 94016" +174490,34in Ultrawide Monitor,1,379.99,03/23/19 19:23,"197 Cedar St, Seattle, WA 98101" +174491,AA Batteries (4-pack),1,3.84,03/28/19 13:08,"801 13th St, New York City, NY 10001" +174492,Lightning Charging Cable,1,14.95,03/13/19 18:48,"908 River St, Atlanta, GA 30301" +174493,Flatscreen TV,1,300,03/09/19 20:35,"700 South St, San Francisco, CA 94016" +174494,Apple Airpods Headphones,1,150,03/24/19 13:12,"86 Church St, Atlanta, GA 30301" +174495,AA Batteries (4-pack),1,3.84,03/06/19 20:22,"885 Forest St, New York City, NY 10001" +174496,Apple Airpods Headphones,1,150,03/03/19 06:24,"746 11th St, San Francisco, CA 94016" +174497,Lightning Charging Cable,1,14.95,03/18/19 11:22,"783 Washington St, Atlanta, GA 30301" +174498,USB-C Charging Cable,1,11.95,03/19/19 14:35,"963 Washington St, San Francisco, CA 94016" +174499,27in 4K Gaming Monitor,1,389.99,03/30/19 09:55,"213 West St, Seattle, WA 98101" +174500,iPhone,1,700,03/26/19 20:08,"302 Ridge St, Portland, OR 97035" +174501,AAA Batteries (4-pack),1,2.99,03/01/19 08:52,"428 10th St, Los Angeles, CA 90001" +174502,Lightning Charging Cable,1,14.95,03/08/19 22:41,"16 13th St, San Francisco, CA 94016" +174503,Wired Headphones,1,11.99,03/20/19 09:17,"876 7th St, San Francisco, CA 94016" +174504,iPhone,1,700,03/13/19 14:59,"436 Adams St, Seattle, WA 98101" +174505,20in Monitor,1,109.99,03/02/19 17:07,"503 Main St, Los Angeles, CA 90001" +174506,Apple Airpods Headphones,1,150,03/21/19 10:27,"220 Willow St, Los Angeles, CA 90001" +174507,Lightning Charging Cable,1,14.95,03/24/19 11:16,"20 Dogwood St, Boston, MA 02215" +174508,Wired Headphones,1,11.99,03/26/19 22:29,"514 4th St, Los Angeles, CA 90001" +174509,34in Ultrawide Monitor,1,379.99,03/23/19 12:21,"491 River St, Los Angeles, CA 90001" +174510,Lightning Charging Cable,1,14.95,03/27/19 13:47,"81 Chestnut St, Boston, MA 02215" +174511,34in Ultrawide Monitor,1,379.99,03/29/19 16:02,"249 Church St, Portland, ME 04101" +174512,Wired Headphones,1,11.99,03/06/19 10:06,"174 2nd St, Portland, OR 97035" +174513,Apple Airpods Headphones,1,150,03/25/19 20:19,"136 Meadow St, Atlanta, GA 30301" +174514,Lightning Charging Cable,1,14.95,03/04/19 11:06,"99 Main St, San Francisco, CA 94016" +174515,AA Batteries (4-pack),1,3.84,03/03/19 22:15,"135 West St, New York City, NY 10001" +174516,AA Batteries (4-pack),1,3.84,03/04/19 13:10,"949 Center St, Los Angeles, CA 90001" +174517,Lightning Charging Cable,1,14.95,03/04/19 09:39,"257 Highland St, San Francisco, CA 94016" +174518,Apple Airpods Headphones,1,150,03/02/19 17:52,"534 Hill St, Portland, OR 97035" +174519,ThinkPad Laptop,1,999.99,03/15/19 07:58,"458 5th St, Atlanta, GA 30301" +174520,AAA Batteries (4-pack),1,2.99,03/20/19 12:32,"114 Sunset St, Dallas, TX 75001" +174521,Bose SoundSport Headphones,1,99.99,03/22/19 03:06,"918 Lakeview St, Seattle, WA 98101" +174522,Macbook Pro Laptop,1,1700,03/11/19 09:48,"262 Madison St, Dallas, TX 75001" +174523,AA Batteries (4-pack),1,3.84,03/15/19 16:43,"212 12th St, Austin, TX 73301" +174524,27in FHD Monitor,1,149.99,03/03/19 08:59,"238 Maple St, Boston, MA 02215" +174525,Lightning Charging Cable,1,14.95,03/15/19 23:20,"602 North St, Portland, OR 97035" +174526,AA Batteries (4-pack),1,3.84,03/19/19 14:43,"57 Madison St, San Francisco, CA 94016" +174527,AAA Batteries (4-pack),2,2.99,03/12/19 05:47,"813 Johnson St, Atlanta, GA 30301" +174528,Wired Headphones,2,11.99,03/24/19 15:17,"887 Elm St, Boston, MA 02215" +174529,Wired Headphones,1,11.99,03/12/19 07:57,"905 13th St, Los Angeles, CA 90001" +174530,Bose SoundSport Headphones,1,99.99,03/20/19 17:10,"706 6th St, New York City, NY 10001" +174531,27in 4K Gaming Monitor,1,389.99,03/21/19 19:04,"142 Meadow St, Dallas, TX 75001" +174532,USB-C Charging Cable,1,11.95,03/02/19 21:54,"320 5th St, Dallas, TX 75001" +174533,USB-C Charging Cable,1,11.95,03/31/19 13:57,"562 Chestnut St, Atlanta, GA 30301" +174534,USB-C Charging Cable,1,11.95,03/30/19 19:51,"631 Lake St, Portland, OR 97035" +174535,Macbook Pro Laptop,1,1700,03/20/19 13:24,"739 Johnson St, New York City, NY 10001" +174536,Bose SoundSport Headphones,1,99.99,03/21/19 21:37,"496 Hill St, Atlanta, GA 30301" +174537,Wired Headphones,1,11.99,03/16/19 14:13,"426 9th St, Los Angeles, CA 90001" +174538,Lightning Charging Cable,1,14.95,03/04/19 10:58,"960 10th St, Los Angeles, CA 90001" +174539,LG Dryer,1,600.0,03/20/19 16:17,"552 Center St, San Francisco, CA 94016" +174540,AA Batteries (4-pack),1,3.84,03/02/19 10:16,"521 Adams St, Portland, OR 97035" +174541,AA Batteries (4-pack),1,3.84,03/28/19 17:10,"187 Hill St, Los Angeles, CA 90001" +174542,AAA Batteries (4-pack),1,2.99,03/16/19 14:00,"760 11th St, Los Angeles, CA 90001" +174543,AAA Batteries (4-pack),1,2.99,03/01/19 20:54,"70 Cedar St, San Francisco, CA 94016" +174544,27in FHD Monitor,1,149.99,03/16/19 21:35,"683 River St, New York City, NY 10001" +174545,Bose SoundSport Headphones,1,99.99,03/10/19 10:48,"257 Willow St, Los Angeles, CA 90001" +174546,AAA Batteries (4-pack),1,2.99,03/15/19 21:03,"493 11th St, Austin, TX 73301" +174547,Google Phone,1,600,03/10/19 12:12,"889 Walnut St, Austin, TX 73301" +174548,AAA Batteries (4-pack),2,2.99,03/26/19 18:11,"368 Maple St, New York City, NY 10001" +174549,Lightning Charging Cable,1,14.95,03/14/19 22:20,"160 Dogwood St, Los Angeles, CA 90001" +174550,ThinkPad Laptop,1,999.99,03/05/19 12:38,"290 9th St, Austin, TX 73301" +174551,USB-C Charging Cable,1,11.95,03/30/19 21:19,"527 4th St, Los Angeles, CA 90001" +174552,AAA Batteries (4-pack),1,2.99,03/21/19 13:27,"804 14th St, San Francisco, CA 94016" +174553,USB-C Charging Cable,1,11.95,03/02/19 11:32,"681 Spruce St, San Francisco, CA 94016" +174554,20in Monitor,1,109.99,03/21/19 19:34,"127 Sunset St, San Francisco, CA 94016" +174555,Google Phone,1,600,03/25/19 07:36,"115 North St, New York City, NY 10001" +174556,Bose SoundSport Headphones,1,99.99,03/03/19 11:44,"969 Hickory St, Dallas, TX 75001" +174557,Lightning Charging Cable,1,14.95,03/06/19 08:42,"121 8th St, Dallas, TX 75001" +174558,AAA Batteries (4-pack),2,2.99,03/30/19 16:34,"855 Highland St, San Francisco, CA 94016" +174559,USB-C Charging Cable,1,11.95,03/17/19 15:49,"913 Madison St, San Francisco, CA 94016" +174560,USB-C Charging Cable,1,11.95,03/14/19 12:48,"435 10th St, Dallas, TX 75001" +174561,Lightning Charging Cable,1,14.95,03/15/19 13:48,"234 Elm St, Los Angeles, CA 90001" +174562,AA Batteries (4-pack),1,3.84,03/28/19 15:32,"524 10th St, San Francisco, CA 94016" +174563,AA Batteries (4-pack),1,3.84,03/27/19 14:46,"780 Jackson St, San Francisco, CA 94016" +174564,34in Ultrawide Monitor,1,379.99,03/06/19 06:52,"315 Pine St, San Francisco, CA 94016" +174565,AA Batteries (4-pack),2,3.84,03/12/19 12:48,"374 4th St, Seattle, WA 98101" +174566,AAA Batteries (4-pack),3,2.99,03/21/19 17:23,"634 Maple St, Seattle, WA 98101" +174567,Apple Airpods Headphones,1,150,03/02/19 00:07,"330 Church St, New York City, NY 10001" +174568,Lightning Charging Cable,1,14.95,03/22/19 13:37,"407 10th St, Dallas, TX 75001" +174569,AA Batteries (4-pack),2,3.84,03/27/19 14:48,"448 7th St, Los Angeles, CA 90001" +174570,Lightning Charging Cable,1,14.95,03/22/19 18:42,"987 Hickory St, Los Angeles, CA 90001" +174571,AA Batteries (4-pack),1,3.84,03/05/19 12:43,"865 Madison St, Los Angeles, CA 90001" +174572,iPhone,1,700,03/18/19 21:33,"601 2nd St, Los Angeles, CA 90001" +174572,Lightning Charging Cable,2,14.95,03/18/19 21:33,"601 2nd St, Los Angeles, CA 90001" +174572,Lightning Charging Cable,1,14.95,03/18/19 21:33,"601 2nd St, Los Angeles, CA 90001" +174573,34in Ultrawide Monitor,1,379.99,03/19/19 13:40,"688 South St, Dallas, TX 75001" +174574,Bose SoundSport Headphones,1,99.99,03/09/19 16:53,"695 Johnson St, Atlanta, GA 30301" +174575,Apple Airpods Headphones,1,150,03/17/19 12:42,"145 Walnut St, San Francisco, CA 94016" +174576,Wired Headphones,1,11.99,03/27/19 06:33,"241 Chestnut St, New York City, NY 10001" +174577,AAA Batteries (4-pack),1,2.99,03/21/19 23:28,"590 South St, Los Angeles, CA 90001" +174578,Wired Headphones,1,11.99,03/15/19 07:08,"775 10th St, San Francisco, CA 94016" +174579,34in Ultrawide Monitor,1,379.99,03/04/19 18:16,"943 Sunset St, Seattle, WA 98101" +174580,iPhone,1,700,03/20/19 08:51,"547 Dogwood St, Seattle, WA 98101" +174580,Lightning Charging Cable,1,14.95,03/20/19 08:51,"547 Dogwood St, Seattle, WA 98101" +174581,20in Monitor,1,109.99,03/02/19 19:18,"934 Willow St, Austin, TX 73301" +174582,27in FHD Monitor,1,149.99,03/29/19 14:22,"727 North St, New York City, NY 10001" +174583,Bose SoundSport Headphones,1,99.99,03/20/19 00:12,"425 North St, Dallas, TX 75001" +174584,USB-C Charging Cable,1,11.95,03/19/19 09:57,"548 Pine St, New York City, NY 10001" +174585,Apple Airpods Headphones,1,150,03/21/19 19:41,"703 8th St, New York City, NY 10001" +174586,Lightning Charging Cable,1,14.95,03/14/19 14:25,"625 South St, San Francisco, CA 94016" +174587,AAA Batteries (4-pack),1,2.99,03/27/19 20:14,"159 Adams St, San Francisco, CA 94016" +174588,34in Ultrawide Monitor,1,379.99,03/11/19 10:31,"689 Walnut St, San Francisco, CA 94016" +174589,Lightning Charging Cable,1,14.95,03/25/19 11:36,"189 Lincoln St, New York City, NY 10001" +174590,USB-C Charging Cable,1,11.95,03/20/19 19:50,"934 Spruce St, San Francisco, CA 94016" +174591,USB-C Charging Cable,2,11.95,03/06/19 15:54,"636 Elm St, Dallas, TX 75001" +174592,20in Monitor,1,109.99,03/03/19 21:32,"808 South St, Atlanta, GA 30301" +174593,AAA Batteries (4-pack),2,2.99,03/14/19 14:58,"75 Meadow St, Portland, OR 97035" +174594,Wired Headphones,1,11.99,03/25/19 22:26,"31 Johnson St, Austin, TX 73301" +174595,Bose SoundSport Headphones,1,99.99,03/12/19 22:55,"563 Madison St, San Francisco, CA 94016" +174596,Apple Airpods Headphones,1,150,03/05/19 00:50,"451 Chestnut St, Atlanta, GA 30301" +174597,Bose SoundSport Headphones,1,99.99,03/14/19 19:21,"790 Elm St, Boston, MA 02215" +174598,AAA Batteries (4-pack),1,2.99,03/19/19 14:19,"756 West St, New York City, NY 10001" +174599,Wired Headphones,2,11.99,03/31/19 21:37,"395 Church St, Atlanta, GA 30301" +174600,Lightning Charging Cable,1,14.95,03/08/19 21:55,"284 Johnson St, Boston, MA 02215" +174601,Wired Headphones,1,11.99,03/24/19 10:58,"480 1st St, Boston, MA 02215" +174602,AA Batteries (4-pack),1,3.84,03/02/19 17:07,"241 Center St, San Francisco, CA 94016" +174603,AAA Batteries (4-pack),1,2.99,03/29/19 20:32,"624 Jefferson St, Atlanta, GA 30301" +174604,AAA Batteries (4-pack),2,2.99,03/09/19 21:02,"46 Maple St, San Francisco, CA 94016" +174604,Wired Headphones,2,11.99,03/09/19 21:02,"46 Maple St, San Francisco, CA 94016" +174605,20in Monitor,1,109.99,03/02/19 19:02,"825 Cherry St, San Francisco, CA 94016" +174606,Lightning Charging Cable,1,14.95,03/21/19 19:22,"42 Walnut St, New York City, NY 10001" +174607,Vareebadd Phone,1,400,03/17/19 18:31,"497 Ridge St, Seattle, WA 98101" +174608,USB-C Charging Cable,1,11.95,03/26/19 18:49,"179 Elm St, Dallas, TX 75001" +174609,Lightning Charging Cable,1,14.95,03/15/19 10:20,"708 Washington St, Dallas, TX 75001" +174610,27in FHD Monitor,1,149.99,03/08/19 23:54,"172 Chestnut St, Los Angeles, CA 90001" +174611,27in FHD Monitor,1,149.99,03/25/19 23:56,"730 10th St, New York City, NY 10001" +174612,iPhone,1,700,03/06/19 18:54,"482 13th St, New York City, NY 10001" +174612,Apple Airpods Headphones,1,150,03/06/19 18:54,"482 13th St, New York City, NY 10001" +174613,USB-C Charging Cable,1,11.95,03/27/19 12:52,"989 Hill St, Atlanta, GA 30301" +174614,USB-C Charging Cable,1,11.95,03/28/19 11:35,"936 Park St, Portland, OR 97035" +174615,Bose SoundSport Headphones,1,99.99,03/12/19 18:10,"623 River St, San Francisco, CA 94016" +174616,iPhone,1,700,03/06/19 16:34,"906 Madison St, Atlanta, GA 30301" +174617,ThinkPad Laptop,1,999.99,03/10/19 10:55,"924 Johnson St, Portland, ME 04101" +174618,AA Batteries (4-pack),3,3.84,03/30/19 12:10,"978 Jackson St, Boston, MA 02215" +174619,ThinkPad Laptop,1,999.99,03/22/19 12:48,"6 13th St, Atlanta, GA 30301" +174620,Vareebadd Phone,1,400,03/26/19 14:57,"747 Center St, New York City, NY 10001" +174621,USB-C Charging Cable,1,11.95,03/02/19 12:15,"651 Ridge St, Los Angeles, CA 90001" +174622,AAA Batteries (4-pack),1,2.99,03/10/19 19:56,"567 13th St, Atlanta, GA 30301" +174623,AA Batteries (4-pack),1,3.84,03/04/19 14:24,"285 West St, San Francisco, CA 94016" +174624,USB-C Charging Cable,1,11.95,03/22/19 18:07,"632 North St, San Francisco, CA 94016" +174625,iPhone,1,700,03/24/19 05:19,"103 North St, New York City, NY 10001" +174626,iPhone,1,700,03/01/19 15:03,"646 Spruce St, Atlanta, GA 30301" +174626,Lightning Charging Cable,2,14.95,03/01/19 15:03,"646 Spruce St, Atlanta, GA 30301" +174627,AA Batteries (4-pack),1,3.84,03/05/19 13:38,"874 Park St, Seattle, WA 98101" +174628,AA Batteries (4-pack),1,3.84,03/20/19 14:08,"177 Jackson St, Austin, TX 73301" +174629,AA Batteries (4-pack),1,3.84,03/14/19 11:54,"300 Washington St, New York City, NY 10001" +174630,Lightning Charging Cable,1,14.95,03/17/19 16:14,"799 14th St, Los Angeles, CA 90001" +174631,Wired Headphones,1,11.99,03/04/19 10:20,"736 5th St, New York City, NY 10001" +174632,AAA Batteries (4-pack),1,2.99,03/18/19 15:27,"790 South St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +174633,USB-C Charging Cable,1,11.95,03/13/19 18:26,"838 Highland St, Boston, MA 02215" +174634,Apple Airpods Headphones,1,150,04/01/19 02:06,"549 Park St, San Francisco, CA 94016" +174635,Google Phone,1,600,03/15/19 09:18,"141 6th St, Boston, MA 02215" +174635,USB-C Charging Cable,1,11.95,03/15/19 09:18,"141 6th St, Boston, MA 02215" +174636,Apple Airpods Headphones,1,150,03/07/19 16:32,"76 7th St, San Francisco, CA 94016" +174637,Macbook Pro Laptop,1,1700,03/01/19 09:15,"617 Lake St, Seattle, WA 98101" +174638,Wired Headphones,1,11.99,03/07/19 18:40,"747 North St, New York City, NY 10001" +174639,USB-C Charging Cable,1,11.95,03/04/19 22:20,"742 Lake St, Atlanta, GA 30301" +174640,Lightning Charging Cable,2,14.95,03/25/19 19:21,"212 Ridge St, San Francisco, CA 94016" +174641,Apple Airpods Headphones,1,150,03/21/19 18:32,"975 River St, Boston, MA 02215" +174642,27in FHD Monitor,1,149.99,03/20/19 20:47,"333 River St, Dallas, TX 75001" +174643,27in 4K Gaming Monitor,1,389.99,03/14/19 23:58,"911 Park St, San Francisco, CA 94016" +174644,Lightning Charging Cable,1,14.95,03/27/19 20:23,"70 North St, Dallas, TX 75001" +174645,Lightning Charging Cable,1,14.95,03/18/19 10:12,"366 13th St, San Francisco, CA 94016" +174646,Bose SoundSport Headphones,1,99.99,03/21/19 13:06,"655 Main St, Dallas, TX 75001" +174647,Bose SoundSport Headphones,1,99.99,03/08/19 16:30,"587 12th St, Portland, OR 97035" +174648,Bose SoundSport Headphones,1,99.99,03/26/19 12:58,"332 7th St, New York City, NY 10001" +174649,AA Batteries (4-pack),2,3.84,03/30/19 16:50,"371 9th St, San Francisco, CA 94016" +174650,iPhone,1,700,03/12/19 13:19,"485 Madison St, San Francisco, CA 94016" +174651,AA Batteries (4-pack),1,3.84,03/29/19 15:53,"716 Adams St, Atlanta, GA 30301" +174652,Apple Airpods Headphones,1,150,03/28/19 11:13,"383 Adams St, Portland, OR 97035" +174653,AAA Batteries (4-pack),1,2.99,03/22/19 23:41,"452 4th St, San Francisco, CA 94016" +174654,iPhone,1,700,03/29/19 15:00,"417 1st St, Los Angeles, CA 90001" +174655,Bose SoundSport Headphones,1,99.99,03/12/19 08:40,"918 11th St, Los Angeles, CA 90001" +174656,Google Phone,1,600,03/04/19 23:11,"97 Wilson St, Boston, MA 02215" +174657,Macbook Pro Laptop,1,1700,03/28/19 08:48,"854 8th St, New York City, NY 10001" +174658,USB-C Charging Cable,1,11.95,03/30/19 20:41,"304 Center St, New York City, NY 10001" +174659,Flatscreen TV,1,300,03/12/19 16:32,"790 9th St, New York City, NY 10001" +174660,iPhone,1,700,03/24/19 13:26,"860 7th St, Austin, TX 73301" +174661,Macbook Pro Laptop,1,1700,03/05/19 19:17,"694 North St, New York City, NY 10001" +174662,Vareebadd Phone,1,400,03/05/19 12:05,"571 13th St, New York City, NY 10001" +174663,20in Monitor,1,109.99,03/05/19 12:26,"739 Dogwood St, San Francisco, CA 94016" +174664,Lightning Charging Cable,1,14.95,03/26/19 15:36,"267 Madison St, Atlanta, GA 30301" +174665,Google Phone,1,600,03/25/19 12:19,"22 Lincoln St, Seattle, WA 98101" +174665,USB-C Charging Cable,1,11.95,03/25/19 12:19,"22 Lincoln St, Seattle, WA 98101" +174665,Wired Headphones,1,11.99,03/25/19 12:19,"22 Lincoln St, Seattle, WA 98101" +174666,Macbook Pro Laptop,1,1700,03/06/19 08:54,"486 9th St, Portland, OR 97035" +174667,AA Batteries (4-pack),2,3.84,03/22/19 13:47,"114 Chestnut St, San Francisco, CA 94016" +174668,USB-C Charging Cable,1,11.95,03/18/19 11:39,"376 Willow St, Dallas, TX 75001" +174669,Lightning Charging Cable,1,14.95,03/28/19 10:31,"600 Elm St, Portland, OR 97035" +174670,Wired Headphones,1,11.99,03/11/19 13:55,"46 8th St, Portland, ME 04101" +174671,Apple Airpods Headphones,1,150,03/28/19 13:53,"946 Forest St, Seattle, WA 98101" +174672,Google Phone,1,600,03/26/19 14:58,"598 Church St, Boston, MA 02215" +174673,Wired Headphones,1,11.99,03/03/19 11:38,"666 Hill St, Portland, OR 97035" +174673,34in Ultrawide Monitor,1,379.99,03/03/19 11:38,"666 Hill St, Portland, OR 97035" +174674,Wired Headphones,1,11.99,03/03/19 19:37,"43 South St, Seattle, WA 98101" +174675,Lightning Charging Cable,1,14.95,03/21/19 22:08,"962 2nd St, Atlanta, GA 30301" +174676,USB-C Charging Cable,1,11.95,03/09/19 18:28,"649 River St, New York City, NY 10001" +174677,27in 4K Gaming Monitor,1,389.99,03/23/19 16:35,"183 Walnut St, Portland, OR 97035" +174678,27in FHD Monitor,1,149.99,03/26/19 12:54,"864 7th St, New York City, NY 10001" +174679,AAA Batteries (4-pack),2,2.99,03/14/19 19:29,"476 Dogwood St, San Francisco, CA 94016" +174680,USB-C Charging Cable,1,11.95,03/05/19 08:38,"682 Cherry St, Portland, ME 04101" +174681,Lightning Charging Cable,1,14.95,03/27/19 18:55,"676 Elm St, Seattle, WA 98101" +174682,Google Phone,1,600,03/22/19 12:46,"730 Washington St, San Francisco, CA 94016" +174683,Lightning Charging Cable,1,14.95,03/12/19 18:03,"697 10th St, Dallas, TX 75001" +174684,Lightning Charging Cable,1,14.95,03/07/19 20:27,"485 Madison St, Portland, OR 97035" +174685,AA Batteries (4-pack),1,3.84,03/10/19 21:01,"55 River St, Seattle, WA 98101" +174686,Bose SoundSport Headphones,1,99.99,03/06/19 19:29,"658 Center St, Seattle, WA 98101" +174687,27in 4K Gaming Monitor,1,389.99,03/02/19 11:37,"103 Forest St, Boston, MA 02215" +174688,Macbook Pro Laptop,1,1700,03/28/19 11:48,"251 Adams St, New York City, NY 10001" +174689,Google Phone,1,600,03/21/19 01:00,"82 Hickory St, Los Angeles, CA 90001" +174690,iPhone,1,700,03/26/19 18:08,"625 Lakeview St, Seattle, WA 98101" +174691,AAA Batteries (4-pack),2,2.99,03/28/19 23:11,"140 12th St, Dallas, TX 75001" +174692,Apple Airpods Headphones,1,150,03/06/19 19:32,"595 Chestnut St, San Francisco, CA 94016" +174693,Bose SoundSport Headphones,1,99.99,03/28/19 18:07,"844 Maple St, San Francisco, CA 94016" +174694,USB-C Charging Cable,1,11.95,03/18/19 16:54,"575 Adams St, Atlanta, GA 30301" +174695,USB-C Charging Cable,1,11.95,03/14/19 19:46,"74 Pine St, San Francisco, CA 94016" +174696,USB-C Charging Cable,1,11.95,03/20/19 16:06,"103 14th St, San Francisco, CA 94016" +174697,Lightning Charging Cable,1,14.95,03/14/19 08:29,"379 Highland St, San Francisco, CA 94016" +174698,AA Batteries (4-pack),1,3.84,03/20/19 19:20,"917 7th St, Dallas, TX 75001" +174699,ThinkPad Laptop,1,999.99,03/10/19 18:43,"86 West St, Seattle, WA 98101" +174700,Apple Airpods Headphones,1,150,03/14/19 21:11,"479 Highland St, New York City, NY 10001" +174701,USB-C Charging Cable,1,11.95,03/19/19 15:01,"773 Park St, Atlanta, GA 30301" +174702,AA Batteries (4-pack),1,3.84,03/13/19 23:40,"612 Spruce St, San Francisco, CA 94016" +174703,USB-C Charging Cable,1,11.95,03/21/19 11:20,"288 2nd St, San Francisco, CA 94016" +174704,Lightning Charging Cable,2,14.95,03/21/19 16:54,"324 Highland St, Los Angeles, CA 90001" +174705,AAA Batteries (4-pack),1,2.99,03/14/19 06:47,"331 Main St, Portland, OR 97035" +174706,AA Batteries (4-pack),1,3.84,03/18/19 22:56,"826 Johnson St, San Francisco, CA 94016" +174707,20in Monitor,2,109.99,03/05/19 17:54,"755 Cedar St, Los Angeles, CA 90001" +174708,Lightning Charging Cable,1,14.95,03/08/19 21:59,"800 Lincoln St, New York City, NY 10001" +174709,USB-C Charging Cable,1,11.95,03/03/19 09:48,"601 Center St, Portland, OR 97035" +174710,Wired Headphones,1,11.99,03/22/19 12:22,"237 Elm St, San Francisco, CA 94016" +174711,27in 4K Gaming Monitor,2,389.99,03/02/19 11:59,"881 West St, Austin, TX 73301" +174712,Apple Airpods Headphones,1,150,03/08/19 21:47,"947 Pine St, Seattle, WA 98101" +174713,Apple Airpods Headphones,1,150,03/06/19 17:51,"552 Spruce St, New York City, NY 10001" +174714,Apple Airpods Headphones,1,150,03/10/19 12:06,"952 9th St, Los Angeles, CA 90001" +174715,Bose SoundSport Headphones,1,99.99,03/29/19 00:55,"335 11th St, Boston, MA 02215" +174716,USB-C Charging Cable,1,11.95,03/06/19 14:49,"534 Forest St, Atlanta, GA 30301" +174717,Bose SoundSport Headphones,1,99.99,03/21/19 14:58,"395 Center St, Los Angeles, CA 90001" +174718,AA Batteries (4-pack),1,3.84,03/02/19 08:58,"321 10th St, Dallas, TX 75001" +174719,Flatscreen TV,1,300,03/07/19 21:30,"973 North St, San Francisco, CA 94016" +174720,Apple Airpods Headphones,1,150,03/20/19 08:42,"30 Church St, New York City, NY 10001" +174721,Wired Headphones,1,11.99,03/07/19 20:48,"813 Wilson St, Los Angeles, CA 90001" +174722,20in Monitor,1,109.99,03/01/19 14:02,"515 Center St, New York City, NY 10001" +174723,USB-C Charging Cable,1,11.95,03/03/19 13:42,"854 8th St, San Francisco, CA 94016" +174724,Lightning Charging Cable,1,14.95,03/31/19 13:58,"624 Wilson St, Atlanta, GA 30301" +174725,Wired Headphones,1,11.99,03/02/19 21:06,"835 Spruce St, Atlanta, GA 30301" +174726,Google Phone,1,600,03/17/19 18:22,"141 Cedar St, Los Angeles, CA 90001" +174727,34in Ultrawide Monitor,1,379.99,03/05/19 22:35,"491 Cherry St, Los Angeles, CA 90001" +174728,AAA Batteries (4-pack),1,2.99,03/26/19 22:59,"207 North St, San Francisco, CA 94016" +174729,Apple Airpods Headphones,1,150,03/03/19 19:11,"123 Jackson St, Los Angeles, CA 90001" +174730,USB-C Charging Cable,1,11.95,03/06/19 21:23,"915 Jefferson St, Seattle, WA 98101" +174731,AA Batteries (4-pack),1,3.84,03/01/19 12:48,"238 Adams St, San Francisco, CA 94016" +174732,AAA Batteries (4-pack),1,2.99,03/02/19 21:42,"478 Spruce St, Dallas, TX 75001" +174733,AA Batteries (4-pack),1,3.84,03/28/19 21:12,"942 6th St, Dallas, TX 75001" +174734,Google Phone,1,600,03/16/19 18:03,"705 9th St, New York City, NY 10001" +174735,USB-C Charging Cable,1,11.95,03/07/19 23:01,"811 11th St, San Francisco, CA 94016" +174736,Wired Headphones,1,11.99,03/21/19 15:53,"816 Madison St, New York City, NY 10001" +174737,USB-C Charging Cable,1,11.95,03/02/19 09:44,"366 5th St, San Francisco, CA 94016" +174738,Lightning Charging Cable,1,14.95,03/16/19 08:03,"594 4th St, Austin, TX 73301" +174739,AAA Batteries (4-pack),3,2.99,03/19/19 16:01,"336 Meadow St, San Francisco, CA 94016" +174740,AAA Batteries (4-pack),1,2.99,03/05/19 18:52,"932 8th St, San Francisco, CA 94016" +174741,27in 4K Gaming Monitor,1,389.99,03/29/19 19:33,"157 Forest St, Dallas, TX 75001" +174742,34in Ultrawide Monitor,1,379.99,03/10/19 12:24,"391 Main St, Dallas, TX 75001" +174743,Wired Headphones,1,11.99,03/30/19 12:15,"646 Dogwood St, Dallas, TX 75001" +174744,Flatscreen TV,1,300,03/01/19 08:41,"804 Jefferson St, Los Angeles, CA 90001" +174745,AAA Batteries (4-pack),1,2.99,03/23/19 13:08,"742 Hickory St, San Francisco, CA 94016" +174746,AA Batteries (4-pack),2,3.84,03/04/19 16:38,"49 Cedar St, San Francisco, CA 94016" +174747,Wired Headphones,1,11.99,03/16/19 12:13,"950 Park St, Boston, MA 02215" +174748,AA Batteries (4-pack),1,3.84,03/11/19 10:40,"442 14th St, San Francisco, CA 94016" +174749,Lightning Charging Cable,1,14.95,03/19/19 13:56,"854 Jackson St, Los Angeles, CA 90001" +174750,AA Batteries (4-pack),1,3.84,03/27/19 15:09,"211 Elm St, Portland, OR 97035" +174751,iPhone,1,700,03/09/19 16:55,"871 Dogwood St, New York City, NY 10001" +174751,Apple Airpods Headphones,1,150,03/09/19 16:55,"871 Dogwood St, New York City, NY 10001" +174752,USB-C Charging Cable,1,11.95,03/05/19 11:49,"887 13th St, Atlanta, GA 30301" +174753,Wired Headphones,2,11.99,03/03/19 18:16,"356 Center St, Atlanta, GA 30301" +174754,AAA Batteries (4-pack),1,2.99,03/15/19 23:24,"761 Ridge St, Seattle, WA 98101" +174755,USB-C Charging Cable,1,11.95,03/12/19 09:52,"891 Hill St, New York City, NY 10001" +174756,Wired Headphones,1,11.99,03/07/19 11:46,"981 Cherry St, Seattle, WA 98101" +174757,iPhone,1,700,03/18/19 00:57,"562 12th St, Los Angeles, CA 90001" +174758,Apple Airpods Headphones,1,150,03/11/19 07:54,"895 Lincoln St, San Francisco, CA 94016" +174759,ThinkPad Laptop,1,999.99,03/05/19 02:29,"149 Forest St, San Francisco, CA 94016" +174760,ThinkPad Laptop,1,999.99,03/19/19 11:04,"964 10th St, Boston, MA 02215" +174761,Lightning Charging Cable,1,14.95,03/09/19 18:31,"466 River St, Portland, OR 97035" +174762,USB-C Charging Cable,1,11.95,03/11/19 22:44,"616 6th St, Seattle, WA 98101" +174763,Wired Headphones,1,11.99,03/06/19 11:29,"517 12th St, Los Angeles, CA 90001" +174764,USB-C Charging Cable,1,11.95,03/18/19 07:58,"361 Wilson St, Dallas, TX 75001" +174765,Bose SoundSport Headphones,1,99.99,03/07/19 12:52,"54 9th St, Atlanta, GA 30301" +174766,iPhone,1,700,03/22/19 18:40,"8 Washington St, San Francisco, CA 94016" +174767,Apple Airpods Headphones,1,150,03/13/19 15:47,"945 Maple St, Boston, MA 02215" +174768,Lightning Charging Cable,1,14.95,03/05/19 01:05,"449 Adams St, Dallas, TX 75001" +174769,AA Batteries (4-pack),1,3.84,03/07/19 18:31,"47 River St, San Francisco, CA 94016" +174770,USB-C Charging Cable,1,11.95,03/11/19 13:41,"7 Jackson St, San Francisco, CA 94016" +174771,Google Phone,1,600,03/14/19 23:42,"115 South St, Dallas, TX 75001" +174772,AAA Batteries (4-pack),2,2.99,03/29/19 10:43,"955 2nd St, Seattle, WA 98101" +174773,USB-C Charging Cable,3,11.95,03/14/19 19:26,"174 4th St, Los Angeles, CA 90001" +174774,LG Washing Machine,1,600.0,03/30/19 21:46,"565 Church St, San Francisco, CA 94016" +174775,Bose SoundSport Headphones,1,99.99,03/03/19 13:29,"778 Center St, Boston, MA 02215" +174776,USB-C Charging Cable,1,11.95,03/11/19 14:19,"860 Cedar St, New York City, NY 10001" +174777,Wired Headphones,1,11.99,03/07/19 00:09,"144 Hickory St, Portland, OR 97035" +174778,Wired Headphones,1,11.99,03/08/19 23:06,"916 Lincoln St, San Francisco, CA 94016" +174779,Wired Headphones,1,11.99,03/23/19 10:19,"528 Cherry St, San Francisco, CA 94016" +174780,AA Batteries (4-pack),1,3.84,03/28/19 15:55,"815 9th St, Los Angeles, CA 90001" +174781,AAA Batteries (4-pack),1,2.99,03/16/19 22:54,"831 South St, Boston, MA 02215" +174782,AAA Batteries (4-pack),2,2.99,03/31/19 01:47,"930 Adams St, Portland, OR 97035" +174783,Vareebadd Phone,1,400,03/23/19 12:22,"563 Dogwood St, San Francisco, CA 94016" +174784,Lightning Charging Cable,1,14.95,03/08/19 19:56,"161 South St, New York City, NY 10001" +174785,AA Batteries (4-pack),1,3.84,03/28/19 09:33,"415 Park St, San Francisco, CA 94016" +174786,AAA Batteries (4-pack),1,2.99,03/02/19 12:13,"720 Lakeview St, Seattle, WA 98101" +174787,AAA Batteries (4-pack),1,2.99,03/24/19 16:00,"994 Highland St, Los Angeles, CA 90001" +174788,27in FHD Monitor,1,149.99,03/22/19 08:05,"74 Chestnut St, Portland, ME 04101" +174789,Apple Airpods Headphones,1,150,03/23/19 10:36,"165 Highland St, San Francisco, CA 94016" +174790,AA Batteries (4-pack),1,3.84,03/23/19 13:46,"440 Washington St, Seattle, WA 98101" +174791,Wired Headphones,1,11.99,03/01/19 23:48,"462 Highland St, Atlanta, GA 30301" +174792,Bose SoundSport Headphones,1,99.99,03/17/19 23:22,"679 10th St, Atlanta, GA 30301" +174793,iPhone,1,700,03/26/19 06:53,"895 Chestnut St, San Francisco, CA 94016" +174794,iPhone,1,700,03/19/19 20:05,"303 9th St, Boston, MA 02215" +174795,AA Batteries (4-pack),3,3.84,03/07/19 15:58,"941 14th St, San Francisco, CA 94016" +174796,Bose SoundSport Headphones,1,99.99,03/16/19 17:56,"706 Elm St, Portland, OR 97035" +174797,Wired Headphones,1,11.99,03/05/19 11:30,"752 Dogwood St, New York City, NY 10001" +174798,AA Batteries (4-pack),3,3.84,03/07/19 12:52,"17 Cedar St, Los Angeles, CA 90001" +174798,Apple Airpods Headphones,1,150,03/07/19 12:52,"17 Cedar St, Los Angeles, CA 90001" +174799,Vareebadd Phone,1,400,03/30/19 15:39,"950 4th St, Dallas, TX 75001" +174799,USB-C Charging Cable,2,11.95,03/30/19 15:39,"950 4th St, Dallas, TX 75001" +174800,Lightning Charging Cable,1,14.95,03/15/19 14:25,"152 River St, Atlanta, GA 30301" +174801,iPhone,1,700,03/16/19 07:21,"484 Church St, Atlanta, GA 30301" +174802,Apple Airpods Headphones,1,150,03/07/19 06:40,"668 Hickory St, San Francisco, CA 94016" +174803,Wired Headphones,1,11.99,03/28/19 20:21,"244 Johnson St, Los Angeles, CA 90001" +174804,USB-C Charging Cable,1,11.95,03/12/19 22:13,"796 Wilson St, Atlanta, GA 30301" +174805,Google Phone,1,600,03/08/19 22:41,"968 Cherry St, New York City, NY 10001" +174805,USB-C Charging Cable,1,11.95,03/08/19 22:41,"968 Cherry St, New York City, NY 10001" +174806,AA Batteries (4-pack),1,3.84,03/30/19 23:16,"827 Lincoln St, Boston, MA 02215" +174807,AAA Batteries (4-pack),2,2.99,03/23/19 05:47,"889 1st St, New York City, NY 10001" +174808,34in Ultrawide Monitor,1,379.99,03/24/19 20:20,"192 7th St, New York City, NY 10001" +174809,Wired Headphones,1,11.99,03/26/19 19:35,"232 12th St, Boston, MA 02215" +174810,Wired Headphones,1,11.99,03/11/19 13:23,"790 Adams St, New York City, NY 10001" +174811,Bose SoundSport Headphones,1,99.99,03/13/19 12:31,"87 11th St, Los Angeles, CA 90001" +174812,AAA Batteries (4-pack),2,2.99,03/13/19 00:15,"982 Maple St, Portland, OR 97035" +174813,Macbook Pro Laptop,1,1700,03/26/19 08:20,"905 Lake St, Los Angeles, CA 90001" +174814,Flatscreen TV,1,300,03/11/19 00:18,"490 14th St, Boston, MA 02215" +174815,Lightning Charging Cable,1,14.95,03/23/19 18:45,"874 Adams St, San Francisco, CA 94016" +174816,AAA Batteries (4-pack),2,2.99,03/14/19 13:53,"171 Sunset St, San Francisco, CA 94016" +174817,USB-C Charging Cable,1,11.95,03/10/19 13:39,"197 Madison St, Austin, TX 73301" +174818,34in Ultrawide Monitor,1,379.99,03/04/19 21:09,"657 Washington St, Boston, MA 02215" +174819,Google Phone,1,600,03/15/19 09:42,"391 Lakeview St, Portland, OR 97035" +174820,AAA Batteries (4-pack),1,2.99,03/07/19 09:26,"883 6th St, Atlanta, GA 30301" +174821,Apple Airpods Headphones,1,150,03/27/19 11:42,"110 1st St, Boston, MA 02215" +174821,Google Phone,1,600,03/27/19 11:42,"110 1st St, Boston, MA 02215" +174822,AAA Batteries (4-pack),1,2.99,03/10/19 17:47,"430 Dogwood St, New York City, NY 10001" +174823,Macbook Pro Laptop,1,1700,03/13/19 21:39,"370 13th St, San Francisco, CA 94016" +174824,AAA Batteries (4-pack),1,2.99,03/27/19 21:40,"750 Walnut St, Seattle, WA 98101" +174825,27in 4K Gaming Monitor,1,389.99,03/13/19 23:10,"970 9th St, San Francisco, CA 94016" +174826,Wired Headphones,1,11.99,03/24/19 13:51,"725 2nd St, Austin, TX 73301" +174827,Wired Headphones,1,11.99,03/03/19 19:13,"119 Lakeview St, Atlanta, GA 30301" +174828,Wired Headphones,1,11.99,03/14/19 21:58,"474 Hickory St, Seattle, WA 98101" +174829,USB-C Charging Cable,1,11.95,03/10/19 16:10,"716 Willow St, Los Angeles, CA 90001" +174830,ThinkPad Laptop,1,999.99,03/01/19 13:26,"587 Park St, Seattle, WA 98101" +174831,AA Batteries (4-pack),1,3.84,03/24/19 12:52,"150 Hickory St, Dallas, TX 75001" +174832,USB-C Charging Cable,1,11.95,03/02/19 10:22,"209 Pine St, San Francisco, CA 94016" +174833,iPhone,1,700,03/11/19 20:34,"637 Jackson St, Los Angeles, CA 90001" +174834,AAA Batteries (4-pack),1,2.99,03/20/19 17:15,"352 Pine St, Los Angeles, CA 90001" +174835,AAA Batteries (4-pack),3,2.99,03/31/19 13:03,"983 Johnson St, Los Angeles, CA 90001" +174836,27in FHD Monitor,1,149.99,03/17/19 10:19,"631 2nd St, Dallas, TX 75001" +174837,Lightning Charging Cable,1,14.95,03/10/19 20:36,"505 Lincoln St, Boston, MA 02215" +174838,AA Batteries (4-pack),1,3.84,03/03/19 19:29,"585 Wilson St, New York City, NY 10001" +174839,Bose SoundSport Headphones,1,99.99,03/29/19 22:23,"503 11th St, San Francisco, CA 94016" +174840,Apple Airpods Headphones,1,150,03/22/19 14:15,"547 Elm St, Boston, MA 02215" +174841,Apple Airpods Headphones,1,150,03/25/19 16:11,"65 Maple St, Los Angeles, CA 90001" +174842,Wired Headphones,1,11.99,03/06/19 20:32,"93 Ridge St, San Francisco, CA 94016" +174843,USB-C Charging Cable,1,11.95,03/31/19 07:50,"62 Pine St, Los Angeles, CA 90001" +174844,AAA Batteries (4-pack),2,2.99,03/27/19 10:38,"968 Johnson St, New York City, NY 10001" +174845,AAA Batteries (4-pack),1,2.99,03/02/19 15:29,"383 Forest St, Atlanta, GA 30301" +174846,Google Phone,1,600,03/26/19 12:08,"736 4th St, Austin, TX 73301" +174846,Bose SoundSport Headphones,1,99.99,03/26/19 12:08,"736 4th St, Austin, TX 73301" +174847,Wired Headphones,1,11.99,03/13/19 17:39,"105 Lake St, Portland, OR 97035" +174848,AAA Batteries (4-pack),1,2.99,03/10/19 15:54,"61 Chestnut St, Atlanta, GA 30301" +174849,27in FHD Monitor,1,149.99,03/02/19 11:34,"910 Adams St, Seattle, WA 98101" +174850,AA Batteries (4-pack),1,3.84,03/26/19 16:27,"886 8th St, Atlanta, GA 30301" +174851,Macbook Pro Laptop,1,1700,03/23/19 19:23,"271 Cherry St, San Francisco, CA 94016" +174852,USB-C Charging Cable,1,11.95,03/02/19 15:04,"562 Walnut St, Los Angeles, CA 90001" +174853,Wired Headphones,1,11.99,03/06/19 17:24,"449 Lincoln St, Seattle, WA 98101" +174854,Lightning Charging Cable,1,14.95,03/09/19 10:19,"649 Lincoln St, San Francisco, CA 94016" +174855,AA Batteries (4-pack),1,3.84,03/20/19 21:51,"280 11th St, Boston, MA 02215" +174856,AA Batteries (4-pack),1,3.84,03/13/19 13:42,"784 Dogwood St, New York City, NY 10001" +174857,AA Batteries (4-pack),1,3.84,03/12/19 06:28,"581 Hill St, Atlanta, GA 30301" +174858,20in Monitor,1,109.99,03/17/19 07:45,"298 14th St, San Francisco, CA 94016" +174859,USB-C Charging Cable,1,11.95,03/19/19 12:00,"365 River St, New York City, NY 10001" +174860,AAA Batteries (4-pack),1,2.99,03/19/19 09:56,"961 West St, Los Angeles, CA 90001" +174861,Bose SoundSport Headphones,1,99.99,03/11/19 15:18,"158 4th St, San Francisco, CA 94016" +174862,AA Batteries (4-pack),1,3.84,03/09/19 09:04,"522 Main St, Boston, MA 02215" +174863,Bose SoundSport Headphones,1,99.99,03/16/19 04:11,"151 South St, Los Angeles, CA 90001" +174864,USB-C Charging Cable,1,11.95,03/22/19 09:58,"939 Sunset St, Portland, OR 97035" +174865,Lightning Charging Cable,1,14.95,03/14/19 11:07,"639 Center St, Los Angeles, CA 90001" +174866,Google Phone,1,600,03/31/19 21:21,"66 Pine St, Dallas, TX 75001" +174867,AAA Batteries (4-pack),1,2.99,03/17/19 10:42,"974 12th St, New York City, NY 10001" +174868,USB-C Charging Cable,2,11.95,03/28/19 23:00,"308 Highland St, Seattle, WA 98101" +174869,Lightning Charging Cable,1,14.95,03/24/19 11:14,"370 13th St, San Francisco, CA 94016" +174870,Lightning Charging Cable,1,14.95,03/12/19 20:04,"513 5th St, New York City, NY 10001" +174871,USB-C Charging Cable,1,11.95,03/14/19 13:48,"332 Park St, San Francisco, CA 94016" +174872,Lightning Charging Cable,1,14.95,03/12/19 18:13,"116 Highland St, Austin, TX 73301" +174873,Bose SoundSport Headphones,1,99.99,03/30/19 17:36,"70 Spruce St, New York City, NY 10001" +174874,Wired Headphones,1,11.99,03/01/19 12:39,"49 2nd St, San Francisco, CA 94016" +174875,Vareebadd Phone,1,400,03/23/19 11:50,"869 Adams St, Dallas, TX 75001" +174876,Apple Airpods Headphones,1,150,03/10/19 18:11,"962 Johnson St, Dallas, TX 75001" +174877,Flatscreen TV,1,300,03/16/19 11:40,"730 Highland St, Los Angeles, CA 90001" +174878,20in Monitor,1,109.99,03/01/19 23:29,"776 13th St, New York City, NY 10001" +174879,AAA Batteries (4-pack),1,2.99,03/08/19 17:46,"959 Pine St, Los Angeles, CA 90001" +174880,AAA Batteries (4-pack),2,2.99,03/29/19 21:20,"25 6th St, Seattle, WA 98101" +174881,AAA Batteries (4-pack),1,2.99,03/02/19 06:32,"381 14th St, San Francisco, CA 94016" +174882,Bose SoundSport Headphones,1,99.99,03/13/19 17:59,"250 7th St, Boston, MA 02215" +174883,Bose SoundSport Headphones,1,99.99,03/12/19 19:39,"459 14th St, San Francisco, CA 94016" +174884,iPhone,1,700,03/13/19 15:46,"912 13th St, Boston, MA 02215" +174884,Lightning Charging Cable,1,14.95,03/13/19 15:46,"912 13th St, Boston, MA 02215" +174885,Lightning Charging Cable,1,14.95,03/21/19 13:11,"100 Johnson St, Boston, MA 02215" +174886,Apple Airpods Headphones,1,150,03/22/19 13:29,"494 Center St, Los Angeles, CA 90001" +174887,27in 4K Gaming Monitor,1,389.99,03/15/19 20:26,"704 10th St, San Francisco, CA 94016" +174888,Lightning Charging Cable,1,14.95,03/10/19 16:34,"976 Elm St, Boston, MA 02215" +174889,USB-C Charging Cable,1,11.95,03/14/19 16:40,"206 8th St, San Francisco, CA 94016" +174890,Macbook Pro Laptop,1,1700,03/16/19 17:53,"910 Park St, Boston, MA 02215" +174891,27in FHD Monitor,1,149.99,03/15/19 22:14,"522 Church St, Austin, TX 73301" +174892,20in Monitor,1,109.99,03/02/19 00:53,"908 Highland St, New York City, NY 10001" +174893,iPhone,1,700,03/25/19 18:55,"40 Pine St, Dallas, TX 75001" +174894,20in Monitor,1,109.99,03/07/19 10:53,"57 Lincoln St, Los Angeles, CA 90001" +174895,Lightning Charging Cable,1,14.95,03/18/19 08:42,"688 Cherry St, Boston, MA 02215" +174896,Wired Headphones,1,11.99,03/02/19 19:51,"355 13th St, San Francisco, CA 94016" +174897,AA Batteries (4-pack),1,3.84,03/24/19 16:32,"387 Dogwood St, San Francisco, CA 94016" +174898,AA Batteries (4-pack),2,3.84,03/08/19 17:37,"224 Cherry St, San Francisco, CA 94016" +174899,AAA Batteries (4-pack),3,2.99,03/21/19 08:34,"708 North St, Boston, MA 02215" +174900,USB-C Charging Cable,1,11.95,03/14/19 10:16,"336 7th St, Boston, MA 02215" +174901,Macbook Pro Laptop,1,1700,03/24/19 13:09,"532 Walnut St, San Francisco, CA 94016" +174902,Macbook Pro Laptop,1,1700,03/19/19 20:27,"943 Lakeview St, San Francisco, CA 94016" +174903,AAA Batteries (4-pack),1,2.99,03/24/19 10:09,"745 Church St, San Francisco, CA 94016" +174904,Lightning Charging Cable,1,14.95,03/22/19 12:28,"493 Ridge St, New York City, NY 10001" +174905,ThinkPad Laptop,1,999.99,03/28/19 17:11,"652 South St, Seattle, WA 98101" +174906,Lightning Charging Cable,1,14.95,03/27/19 21:04,"385 Maple St, Los Angeles, CA 90001" +174907,Wired Headphones,1,11.99,03/19/19 16:50,"838 West St, San Francisco, CA 94016" +174908,Wired Headphones,1,11.99,03/19/19 22:36,"466 Madison St, New York City, NY 10001" +174909,Bose SoundSport Headphones,1,99.99,03/21/19 08:54,"875 5th St, Boston, MA 02215" +174910,Macbook Pro Laptop,1,1700,03/03/19 11:37,"569 Park St, Boston, MA 02215" +174911,Apple Airpods Headphones,1,150,03/12/19 10:02,"481 Adams St, Seattle, WA 98101" +174912,27in 4K Gaming Monitor,1,389.99,03/31/19 16:40,"900 Forest St, Los Angeles, CA 90001" +174913,Wired Headphones,1,11.99,03/28/19 23:11,"872 1st St, San Francisco, CA 94016" +174914,Bose SoundSport Headphones,1,99.99,03/20/19 16:58,"543 South St, Los Angeles, CA 90001" +174915,Bose SoundSport Headphones,1,99.99,03/07/19 17:08,"861 9th St, San Francisco, CA 94016" +174916,Vareebadd Phone,1,400,03/25/19 08:00,"715 Forest St, San Francisco, CA 94016" +174917,27in FHD Monitor,1,149.99,03/09/19 22:48,"81 Lake St, San Francisco, CA 94016" +174918,Wired Headphones,1,11.99,03/24/19 22:15,"637 Wilson St, Seattle, WA 98101" +174919,34in Ultrawide Monitor,1,379.99,03/03/19 08:54,"861 Lincoln St, Dallas, TX 75001" +174920,AA Batteries (4-pack),1,3.84,03/09/19 15:02,"811 4th St, Los Angeles, CA 90001" +174921,AAA Batteries (4-pack),1,2.99,03/13/19 11:57,"174 2nd St, Boston, MA 02215" +174922,Macbook Pro Laptop,1,1700,03/14/19 18:28,"137 Main St, Boston, MA 02215" +174923,Lightning Charging Cable,1,14.95,03/23/19 14:42,"459 Adams St, Boston, MA 02215" +174924,Flatscreen TV,1,300,03/30/19 14:15,"332 Washington St, San Francisco, CA 94016" +174925,Macbook Pro Laptop,1,1700,03/18/19 08:03,"628 5th St, Boston, MA 02215" +174926,ThinkPad Laptop,1,999.99,03/05/19 08:24,"122 Willow St, Atlanta, GA 30301" +174927,27in 4K Gaming Monitor,1,389.99,03/13/19 13:24,"665 Johnson St, Dallas, TX 75001" +174928,Wired Headphones,1,11.99,03/21/19 10:13,"242 11th St, Los Angeles, CA 90001" +174929,USB-C Charging Cable,1,11.95,03/04/19 19:49,"63 Johnson St, San Francisco, CA 94016" +174930,Wired Headphones,1,11.99,03/25/19 22:55,"657 Ridge St, Seattle, WA 98101" +174931,Lightning Charging Cable,1,14.95,03/14/19 20:41,"341 Ridge St, San Francisco, CA 94016" +174932,Macbook Pro Laptop,1,1700,03/01/19 16:08,"632 11th St, San Francisco, CA 94016" +174933,27in 4K Gaming Monitor,1,389.99,03/30/19 16:07,"999 Walnut St, New York City, NY 10001" +174934,USB-C Charging Cable,1,11.95,03/13/19 17:06,"295 Jackson St, Los Angeles, CA 90001" +174935,Apple Airpods Headphones,1,150,03/09/19 17:05,"693 7th St, Los Angeles, CA 90001" +174936,AAA Batteries (4-pack),2,2.99,03/15/19 17:59,"456 Park St, Seattle, WA 98101" +174937,Apple Airpods Headphones,1,150,03/10/19 21:33,"310 14th St, Los Angeles, CA 90001" +174938,20in Monitor,1,109.99,03/30/19 09:33,"750 4th St, San Francisco, CA 94016" +174939,27in FHD Monitor,1,149.99,03/06/19 18:09,"312 4th St, San Francisco, CA 94016" +174940,USB-C Charging Cable,1,11.95,03/18/19 22:49,"161 Meadow St, San Francisco, CA 94016" +174941,Wired Headphones,1,11.99,03/03/19 23:54,"971 Forest St, New York City, NY 10001" +174942,Wired Headphones,1,11.99,03/08/19 22:10,"265 West St, New York City, NY 10001" +174943,34in Ultrawide Monitor,1,379.99,03/03/19 22:37,"367 Washington St, Boston, MA 02215" +174944,USB-C Charging Cable,1,11.95,03/08/19 19:29,"321 Maple St, Austin, TX 73301" +174945,Google Phone,1,600,03/15/19 14:30,"103 6th St, Seattle, WA 98101" +174945,USB-C Charging Cable,1,11.95,03/15/19 14:30,"103 6th St, Seattle, WA 98101" +174946,Lightning Charging Cable,1,14.95,03/06/19 05:12,"871 Jackson St, Los Angeles, CA 90001" +174947,Lightning Charging Cable,1,14.95,03/14/19 00:29,"579 11th St, Los Angeles, CA 90001" +174948,Lightning Charging Cable,1,14.95,03/24/19 15:56,"699 Walnut St, Los Angeles, CA 90001" +174949,Lightning Charging Cable,1,14.95,03/23/19 06:31,"505 Sunset St, Atlanta, GA 30301" +174950,27in 4K Gaming Monitor,1,389.99,03/25/19 11:23,"238 West St, Atlanta, GA 30301" +174951,27in 4K Gaming Monitor,1,389.99,03/17/19 17:54,"728 Spruce St, New York City, NY 10001" +174952,iPhone,1,700,03/27/19 13:59,"231 10th St, San Francisco, CA 94016" +174952,Lightning Charging Cable,1,14.95,03/27/19 13:59,"231 10th St, San Francisco, CA 94016" +174953,AA Batteries (4-pack),1,3.84,03/03/19 19:42,"313 6th St, Austin, TX 73301" +174954,AA Batteries (4-pack),2,3.84,03/15/19 11:28,"927 Church St, Boston, MA 02215" +174955,Lightning Charging Cable,1,14.95,03/16/19 13:48,"382 Madison St, Atlanta, GA 30301" +174956,Lightning Charging Cable,1,14.95,03/05/19 16:16,"602 Sunset St, Los Angeles, CA 90001" +174957,34in Ultrawide Monitor,1,379.99,03/18/19 23:07,"404 9th St, San Francisco, CA 94016" +174958,27in 4K Gaming Monitor,1,389.99,03/30/19 11:44,"414 Jackson St, Portland, OR 97035" +174959,27in 4K Gaming Monitor,1,389.99,03/13/19 19:00,"321 Ridge St, Boston, MA 02215" +174960,USB-C Charging Cable,1,11.95,03/15/19 17:05,"657 Main St, San Francisco, CA 94016" +174961,27in 4K Gaming Monitor,1,389.99,03/04/19 16:53,"126 Hill St, Los Angeles, CA 90001" +174962,AAA Batteries (4-pack),2,2.99,03/17/19 12:11,"729 8th St, Austin, TX 73301" +174963,USB-C Charging Cable,1,11.95,03/11/19 12:15,"844 9th St, Dallas, TX 75001" +174964,34in Ultrawide Monitor,1,379.99,03/28/19 15:35,"450 Main St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +174965,USB-C Charging Cable,1,11.95,03/12/19 18:06,"704 9th St, Los Angeles, CA 90001" +174966,Wired Headphones,1,11.99,03/26/19 11:57,"869 River St, Boston, MA 02215" +174967,27in FHD Monitor,1,149.99,03/27/19 18:32,"229 South St, Dallas, TX 75001" +174968,Bose SoundSport Headphones,1,99.99,03/27/19 12:55,"507 10th St, San Francisco, CA 94016" +174969,20in Monitor,1,109.99,03/24/19 19:54,"937 1st St, San Francisco, CA 94016" +174970,20in Monitor,1,109.99,03/12/19 15:22,"626 Main St, Seattle, WA 98101" +174970,USB-C Charging Cable,1,11.95,03/12/19 15:22,"626 Main St, Seattle, WA 98101" +174971,USB-C Charging Cable,1,11.95,03/22/19 14:47,"336 Church St, San Francisco, CA 94016" +174972,Lightning Charging Cable,1,14.95,03/07/19 13:43,"551 13th St, Los Angeles, CA 90001" +174973,27in FHD Monitor,1,149.99,03/06/19 19:17,"979 Willow St, San Francisco, CA 94016" +174974,AA Batteries (4-pack),1,3.84,03/05/19 09:23,"856 Center St, Seattle, WA 98101" +174975,USB-C Charging Cable,1,11.95,03/06/19 09:19,"761 Walnut St, Atlanta, GA 30301" +174976,Lightning Charging Cable,1,14.95,03/30/19 17:52,"529 11th St, New York City, NY 10001" +174977,Bose SoundSport Headphones,1,99.99,03/10/19 09:43,"112 Walnut St, San Francisco, CA 94016" +174978,AA Batteries (4-pack),1,3.84,03/17/19 20:53,"50 13th St, San Francisco, CA 94016" +174979,AAA Batteries (4-pack),2,2.99,03/31/19 18:44,"146 Lincoln St, Portland, OR 97035" +174980,Lightning Charging Cable,1,14.95,03/01/19 18:30,"99 Cherry St, New York City, NY 10001" +174981,Bose SoundSport Headphones,1,99.99,03/30/19 05:48,"794 10th St, New York City, NY 10001" +174982,USB-C Charging Cable,1,11.95,03/22/19 15:16,"628 South St, San Francisco, CA 94016" +174983,Apple Airpods Headphones,1,150,03/20/19 15:47,"861 Lakeview St, Portland, ME 04101" +174984,Macbook Pro Laptop,1,1700,03/28/19 14:22,"653 Johnson St, Los Angeles, CA 90001" +174985,Bose SoundSport Headphones,1,99.99,03/28/19 06:48,"856 Washington St, Seattle, WA 98101" +174986,Wired Headphones,1,11.99,03/22/19 08:45,"797 Lakeview St, San Francisco, CA 94016" +174987,AA Batteries (4-pack),1,3.84,03/03/19 01:38,"184 Sunset St, San Francisco, CA 94016" +174988,USB-C Charging Cable,1,11.95,03/01/19 16:58,"528 Sunset St, Seattle, WA 98101" +174989,27in 4K Gaming Monitor,1,389.99,03/19/19 09:01,"891 Center St, Dallas, TX 75001" +174990,Google Phone,1,600,03/26/19 16:56,"378 Hickory St, New York City, NY 10001" +174991,Flatscreen TV,1,300,03/25/19 12:36,"951 Hickory St, Seattle, WA 98101" +174992,USB-C Charging Cable,1,11.95,03/15/19 00:54,"438 Jackson St, Seattle, WA 98101" +174993,Bose SoundSport Headphones,1,99.99,03/07/19 15:25,"231 North St, Los Angeles, CA 90001" +174994,USB-C Charging Cable,1,11.95,03/05/19 08:24,"561 12th St, San Francisco, CA 94016" +174995,iPhone,1,700,03/02/19 15:54,"393 Main St, Seattle, WA 98101" +174996,AAA Batteries (4-pack),2,2.99,03/02/19 18:39,"629 8th St, Atlanta, GA 30301" +174997,Apple Airpods Headphones,1,150,03/26/19 16:47,"181 8th St, Boston, MA 02215" +174998,AAA Batteries (4-pack),1,2.99,03/23/19 21:34,"792 2nd St, New York City, NY 10001" +174999,Lightning Charging Cable,1,14.95,03/08/19 20:17,"229 Lakeview St, San Francisco, CA 94016" +175000,USB-C Charging Cable,1,11.95,03/27/19 09:51,"987 Chestnut St, San Francisco, CA 94016" +175001,27in FHD Monitor,1,149.99,03/06/19 06:00,"164 5th St, Boston, MA 02215" +175002,27in 4K Gaming Monitor,1,389.99,03/07/19 10:27,"566 Jefferson St, Seattle, WA 98101" +175003,AAA Batteries (4-pack),1,2.99,03/31/19 20:21,"21 Walnut St, Dallas, TX 75001" +175004,Lightning Charging Cable,1,14.95,03/19/19 18:54,"352 Highland St, New York City, NY 10001" +175005,Google Phone,1,600,03/07/19 08:58,"594 Washington St, Los Angeles, CA 90001" +175006,LG Dryer,1,600.0,03/27/19 17:05,"196 1st St, New York City, NY 10001" +175007,USB-C Charging Cable,1,11.95,03/19/19 14:04,"358 Washington St, Boston, MA 02215" +175008,Wired Headphones,1,11.99,03/30/19 16:06,"530 Ridge St, Los Angeles, CA 90001" +175009,Flatscreen TV,1,300,03/14/19 15:59,"247 13th St, Dallas, TX 75001" +175009,ThinkPad Laptop,1,999.99,03/14/19 15:59,"247 13th St, Dallas, TX 75001" +175010,Bose SoundSport Headphones,1,99.99,03/16/19 19:11,"24 North St, San Francisco, CA 94016" +175011,AA Batteries (4-pack),2,3.84,03/16/19 17:37,"721 Willow St, Atlanta, GA 30301" +175012,Google Phone,1,600,03/05/19 09:17,"968 6th St, New York City, NY 10001" +175013,AA Batteries (4-pack),1,3.84,03/23/19 06:47,"139 Jackson St, Portland, OR 97035" +175014,Apple Airpods Headphones,1,150,03/16/19 15:33,"610 14th St, San Francisco, CA 94016" +175015,Wired Headphones,1,11.99,03/17/19 19:06,"924 Madison St, Boston, MA 02215" +175016,AAA Batteries (4-pack),1,2.99,03/31/19 18:49,"430 6th St, San Francisco, CA 94016" +175017,USB-C Charging Cable,1,11.95,03/05/19 23:48,"363 Wilson St, Los Angeles, CA 90001" +175018,AA Batteries (4-pack),1,3.84,03/22/19 00:06,"485 Forest St, Portland, OR 97035" +175019,AA Batteries (4-pack),1,3.84,03/27/19 18:48,"331 10th St, San Francisco, CA 94016" +175020,Apple Airpods Headphones,1,150,03/24/19 23:46,"199 Jefferson St, San Francisco, CA 94016" +175021,Google Phone,1,600,03/21/19 21:55,"131 7th St, San Francisco, CA 94016" +175022,Wired Headphones,1,11.99,03/21/19 15:59,"362 Dogwood St, San Francisco, CA 94016" +175023,AA Batteries (4-pack),2,3.84,03/28/19 18:40,"802 14th St, New York City, NY 10001" +175024,Macbook Pro Laptop,1,1700,03/10/19 11:31,"115 Jefferson St, Portland, ME 04101" +175025,Bose SoundSport Headphones,1,99.99,03/30/19 09:34,"276 Lakeview St, San Francisco, CA 94016" +175026,AA Batteries (4-pack),1,3.84,03/28/19 00:45,"910 Elm St, Boston, MA 02215" +175027,Wired Headphones,1,11.99,03/11/19 10:46,"879 Spruce St, New York City, NY 10001" +175028,AAA Batteries (4-pack),1,2.99,03/08/19 22:41,"835 North St, San Francisco, CA 94016" +175029,27in 4K Gaming Monitor,1,389.99,03/26/19 06:39,"682 Church St, Portland, OR 97035" +175030,Bose SoundSport Headphones,1,99.99,03/19/19 07:26,"514 14th St, San Francisco, CA 94016" +175031,Wired Headphones,1,11.99,03/02/19 21:58,"323 Madison St, Atlanta, GA 30301" +175032,27in FHD Monitor,1,149.99,03/24/19 23:11,"640 Main St, New York City, NY 10001" +175033,Apple Airpods Headphones,1,150,03/02/19 21:32,"433 Elm St, New York City, NY 10001" +175034,AA Batteries (4-pack),1,3.84,03/27/19 02:13,"602 Forest St, Seattle, WA 98101" +175035,USB-C Charging Cable,1,11.95,03/30/19 22:48,"764 8th St, Portland, OR 97035" +175036,Macbook Pro Laptop,1,1700,03/12/19 07:32,"676 Park St, Los Angeles, CA 90001" +175036,iPhone,1,700,03/12/19 07:32,"676 Park St, Los Angeles, CA 90001" +175037,Google Phone,1,600,03/19/19 17:54,"527 Adams St, New York City, NY 10001" +175038,20in Monitor,1,109.99,03/23/19 18:30,"195 Lakeview St, Austin, TX 73301" +175039,Lightning Charging Cable,1,14.95,03/14/19 16:19,"978 Willow St, San Francisco, CA 94016" +175040,Wired Headphones,1,11.99,03/18/19 12:42,"978 Madison St, Seattle, WA 98101" +175041,AAA Batteries (4-pack),1,2.99,03/08/19 18:07,"534 Dogwood St, New York City, NY 10001" +175042,27in FHD Monitor,1,149.99,03/20/19 13:10,"925 Forest St, San Francisco, CA 94016" +175043,AAA Batteries (4-pack),1,2.99,03/14/19 11:17,"336 Adams St, New York City, NY 10001" +175044,Flatscreen TV,1,300,03/02/19 17:37,"68 Church St, New York City, NY 10001" +175045,AAA Batteries (4-pack),1,2.99,03/31/19 16:52,"206 4th St, Boston, MA 02215" +175046,Lightning Charging Cable,1,14.95,03/30/19 17:06,"422 11th St, Boston, MA 02215" +175047,AA Batteries (4-pack),1,3.84,03/29/19 12:42,"272 Forest St, San Francisco, CA 94016" +175048,AA Batteries (4-pack),1,3.84,03/03/19 09:44,"492 Chestnut St, Boston, MA 02215" +175049,USB-C Charging Cable,1,11.95,03/11/19 22:18,"785 Cedar St, Dallas, TX 75001" +175050,Wired Headphones,1,11.99,03/05/19 07:25,"17 8th St, New York City, NY 10001" +175051,USB-C Charging Cable,1,11.95,03/17/19 06:39,"38 13th St, San Francisco, CA 94016" +175052,Lightning Charging Cable,1,14.95,03/26/19 15:17,"946 Adams St, Seattle, WA 98101" +175053,Wired Headphones,1,11.99,03/12/19 14:05,"548 Jefferson St, Dallas, TX 75001" +175054,Wired Headphones,1,11.99,03/16/19 11:19,"992 Maple St, Atlanta, GA 30301" +175055,Apple Airpods Headphones,1,150,03/03/19 14:46,"606 Madison St, Los Angeles, CA 90001" +175056,Wired Headphones,2,11.99,03/19/19 23:15,"622 Church St, Dallas, TX 75001" +175057,AAA Batteries (4-pack),2,2.99,03/07/19 07:35,"707 Main St, San Francisco, CA 94016" +175058,27in 4K Gaming Monitor,1,389.99,03/14/19 00:55,"251 Spruce St, Seattle, WA 98101" +175059,Apple Airpods Headphones,1,150,03/07/19 00:32,"669 11th St, San Francisco, CA 94016" +175060,USB-C Charging Cable,1,11.95,03/16/19 16:41,"688 1st St, Boston, MA 02215" +175061,Wired Headphones,1,11.99,03/11/19 20:39,"581 Pine St, Seattle, WA 98101" +175062,AA Batteries (4-pack),4,3.84,03/24/19 19:05,"219 12th St, San Francisco, CA 94016" +175063,Apple Airpods Headphones,1,150,03/20/19 01:45,"682 11th St, Boston, MA 02215" +175064,AA Batteries (4-pack),2,3.84,03/14/19 06:27,"30 Meadow St, New York City, NY 10001" +175065,Bose SoundSport Headphones,1,99.99,03/29/19 23:57,"21 Dogwood St, New York City, NY 10001" +175066,AAA Batteries (4-pack),2,2.99,03/22/19 17:50,"137 Highland St, Portland, OR 97035" +175067,Wired Headphones,1,11.99,03/17/19 08:32,"576 10th St, Boston, MA 02215" +175068,AAA Batteries (4-pack),1,2.99,03/23/19 14:34,"779 West St, Austin, TX 73301" +175069,Flatscreen TV,1,300,03/20/19 19:29,"877 Jefferson St, Boston, MA 02215" +175070,27in 4K Gaming Monitor,1,389.99,03/05/19 10:06,"710 Main St, San Francisco, CA 94016" +175071,27in FHD Monitor,1,149.99,03/13/19 01:13,"747 9th St, San Francisco, CA 94016" +175072,Apple Airpods Headphones,1,150,03/03/19 23:47,"825 7th St, San Francisco, CA 94016" +175073,27in FHD Monitor,1,149.99,03/22/19 10:32,"990 Wilson St, Dallas, TX 75001" +175074,34in Ultrawide Monitor,1,379.99,03/26/19 11:52,"841 Hill St, New York City, NY 10001" +175075,AA Batteries (4-pack),1,3.84,03/15/19 22:28,"953 Wilson St, San Francisco, CA 94016" +175076,34in Ultrawide Monitor,1,379.99,03/12/19 03:17,"157 Cedar St, Austin, TX 73301" +175077,Wired Headphones,1,11.99,03/01/19 20:08,"718 2nd St, New York City, NY 10001" +175078,AAA Batteries (4-pack),2,2.99,03/15/19 19:20,"613 Washington St, San Francisco, CA 94016" +175079,Bose SoundSport Headphones,1,99.99,03/15/19 21:43,"248 11th St, New York City, NY 10001" +175080,Wired Headphones,1,11.99,03/18/19 11:53,"889 Maple St, Portland, OR 97035" +175081,AA Batteries (4-pack),3,3.84,03/17/19 23:11,"426 Hickory St, San Francisco, CA 94016" +175082,AA Batteries (4-pack),1,3.84,03/18/19 20:47,"359 Madison St, New York City, NY 10001" +175083,AA Batteries (4-pack),1,3.84,03/06/19 16:26,"269 Cherry St, San Francisco, CA 94016" +175084,Google Phone,1,600,03/24/19 06:09,"921 Walnut St, Los Angeles, CA 90001" +175084,USB-C Charging Cable,1,11.95,03/24/19 06:09,"921 Walnut St, Los Angeles, CA 90001" +175085,34in Ultrawide Monitor,1,379.99,03/29/19 11:42,"720 14th St, Seattle, WA 98101" +175086,Flatscreen TV,1,300,03/11/19 13:37,"60 10th St, Boston, MA 02215" +175087,Apple Airpods Headphones,1,150,03/05/19 10:34,"883 North St, Dallas, TX 75001" +175088,Wired Headphones,1,11.99,03/07/19 20:52,"588 5th St, Los Angeles, CA 90001" +175089,AA Batteries (4-pack),1,3.84,03/02/19 13:34,"851 Spruce St, Dallas, TX 75001" +175090,Lightning Charging Cable,1,14.95,03/14/19 18:16,"530 10th St, Seattle, WA 98101" +175091,Vareebadd Phone,1,400,03/09/19 08:05,"307 Madison St, New York City, NY 10001" +175092,Wired Headphones,1,11.99,03/22/19 12:40,"30 Elm St, Los Angeles, CA 90001" +175093,Wired Headphones,1,11.99,03/02/19 15:22,"162 9th St, Seattle, WA 98101" +175094,USB-C Charging Cable,1,11.95,03/31/19 19:34,"37 9th St, New York City, NY 10001" +175095,AA Batteries (4-pack),1,3.84,03/15/19 15:55,"403 Pine St, Los Angeles, CA 90001" +175096,20in Monitor,1,109.99,03/11/19 17:00,"74 West St, San Francisco, CA 94016" +175097,AAA Batteries (4-pack),1,2.99,03/10/19 16:49,"525 West St, Los Angeles, CA 90001" +175098,USB-C Charging Cable,1,11.95,03/17/19 09:15,"327 Main St, San Francisco, CA 94016" +175099,USB-C Charging Cable,1,11.95,03/19/19 17:18,"949 River St, Boston, MA 02215" +175100,Apple Airpods Headphones,1,150,03/15/19 16:54,"348 2nd St, New York City, NY 10001" +175101,Wired Headphones,1,11.99,03/12/19 18:19,"148 Pine St, San Francisco, CA 94016" +175102,AA Batteries (4-pack),1,3.84,03/03/19 02:18,"95 4th St, New York City, NY 10001" +175103,Apple Airpods Headphones,1,150,03/02/19 18:23,"474 Meadow St, New York City, NY 10001" +175104,Bose SoundSport Headphones,1,99.99,03/11/19 00:52,"262 Elm St, Los Angeles, CA 90001" +175105,AA Batteries (4-pack),1,3.84,03/24/19 15:32,"134 2nd St, Portland, OR 97035" +175106,20in Monitor,1,109.99,03/23/19 19:20,"646 Chestnut St, New York City, NY 10001" +175107,20in Monitor,1,109.99,03/20/19 15:29,"206 Main St, San Francisco, CA 94016" +175108,Lightning Charging Cable,2,14.95,03/18/19 10:17,"974 Center St, Portland, OR 97035" +175109,iPhone,1,700,03/01/19 11:08,"427 Hickory St, San Francisco, CA 94016" +175110,Vareebadd Phone,1,400,03/05/19 13:31,"378 Ridge St, Portland, OR 97035" +175111,AA Batteries (4-pack),1,3.84,03/20/19 17:27,"446 Center St, New York City, NY 10001" +175112,Lightning Charging Cable,1,14.95,03/20/19 10:52,"776 Jackson St, Austin, TX 73301" +175113,AAA Batteries (4-pack),1,2.99,03/27/19 20:21,"418 Center St, San Francisco, CA 94016" +175113,AAA Batteries (4-pack),1,2.99,03/27/19 20:21,"418 Center St, San Francisco, CA 94016" +175114,AA Batteries (4-pack),3,3.84,03/21/19 10:18,"952 Willow St, Los Angeles, CA 90001" +175115,27in 4K Gaming Monitor,1,389.99,03/09/19 20:03,"634 Park St, Boston, MA 02215" +175116,34in Ultrawide Monitor,1,379.99,03/23/19 20:13,"45 Cedar St, San Francisco, CA 94016" +175117,Wired Headphones,1,11.99,03/04/19 20:32,"896 Jefferson St, San Francisco, CA 94016" +175118,27in 4K Gaming Monitor,1,389.99,03/17/19 08:30,"962 2nd St, San Francisco, CA 94016" +175119,Macbook Pro Laptop,1,1700,03/26/19 06:15,"553 12th St, Seattle, WA 98101" +175120,34in Ultrawide Monitor,1,379.99,03/17/19 18:39,"43 Johnson St, Dallas, TX 75001" +175121,Apple Airpods Headphones,1,150,03/17/19 15:50,"153 Jackson St, Boston, MA 02215" +175122,Bose SoundSport Headphones,1,99.99,03/20/19 11:35,"258 Spruce St, New York City, NY 10001" +175123,Google Phone,1,600,03/17/19 00:37,"705 Forest St, New York City, NY 10001" +175124,AAA Batteries (4-pack),2,2.99,03/30/19 18:31,"672 8th St, New York City, NY 10001" +175125,Flatscreen TV,1,300,03/19/19 11:51,"133 Center St, New York City, NY 10001" +175126,Wired Headphones,1,11.99,03/05/19 12:38,"314 7th St, Dallas, TX 75001" +175127,Wired Headphones,1,11.99,03/11/19 20:30,"561 Sunset St, San Francisco, CA 94016" +175128,Google Phone,1,600,03/28/19 18:37,"702 Lincoln St, New York City, NY 10001" +175129,Wired Headphones,2,11.99,03/28/19 18:42,"811 Pine St, Seattle, WA 98101" +175130,Lightning Charging Cable,1,14.95,03/27/19 09:05,"436 Center St, Dallas, TX 75001" +175131,Wired Headphones,1,11.99,03/21/19 12:45,"545 Hickory St, New York City, NY 10001" +175132,LG Washing Machine,1,600.0,03/13/19 14:55,"892 Lake St, New York City, NY 10001" +175133,Macbook Pro Laptop,1,1700,03/04/19 12:11,"502 Lake St, Portland, OR 97035" +175134,AA Batteries (4-pack),1,3.84,03/19/19 09:26,"594 Maple St, New York City, NY 10001" +175135,Google Phone,1,600,03/14/19 16:50,"345 11th St, Dallas, TX 75001" +175135,USB-C Charging Cable,1,11.95,03/14/19 16:50,"345 11th St, Dallas, TX 75001" +175136,Google Phone,1,600,03/09/19 07:58,"578 Wilson St, Los Angeles, CA 90001" +175137,Vareebadd Phone,1,400,03/20/19 20:44,"477 Dogwood St, New York City, NY 10001" +175138,Wired Headphones,1,11.99,03/10/19 19:02,"213 Park St, San Francisco, CA 94016" +175139,Wired Headphones,1,11.99,03/05/19 01:47,"473 Center St, Seattle, WA 98101" +175140,AA Batteries (4-pack),2,3.84,03/27/19 08:05,"973 Maple St, Portland, OR 97035" +175141,iPhone,1,700,03/21/19 20:54,"116 Chestnut St, San Francisco, CA 94016" +175142,Apple Airpods Headphones,1,150,03/11/19 09:30,"664 Sunset St, Los Angeles, CA 90001" +175143,Lightning Charging Cable,1,14.95,03/23/19 20:02,"735 Lakeview St, Boston, MA 02215" +175144,AA Batteries (4-pack),2,3.84,03/13/19 07:09,"334 Wilson St, Los Angeles, CA 90001" +175145,ThinkPad Laptop,1,999.99,03/03/19 14:56,"116 Walnut St, San Francisco, CA 94016" +175145,AAA Batteries (4-pack),1,2.99,03/03/19 14:56,"116 Walnut St, San Francisco, CA 94016" +175146,Wired Headphones,1,11.99,03/22/19 11:28,"925 2nd St, Atlanta, GA 30301" +175147,Apple Airpods Headphones,1,150,03/23/19 10:18,"94 10th St, Los Angeles, CA 90001" +175148,AAA Batteries (4-pack),2,2.99,03/10/19 08:54,"578 Wilson St, San Francisco, CA 94016" +175149,AAA Batteries (4-pack),3,2.99,03/05/19 08:53,"246 Spruce St, New York City, NY 10001" +175150,20in Monitor,1,109.99,03/02/19 14:29,"960 Washington St, Los Angeles, CA 90001" +175151,AA Batteries (4-pack),1,3.84,03/25/19 09:21,"476 7th St, Los Angeles, CA 90001" +175152,27in 4K Gaming Monitor,1,389.99,03/29/19 01:04,"469 Cedar St, San Francisco, CA 94016" +175153,Lightning Charging Cable,1,14.95,03/08/19 09:51,"833 Lincoln St, Dallas, TX 75001" +175154,AAA Batteries (4-pack),2,2.99,03/18/19 15:00,"955 Park St, Boston, MA 02215" +175155,Bose SoundSport Headphones,1,99.99,03/04/19 20:14,"660 Sunset St, Los Angeles, CA 90001" +175156,Wired Headphones,1,11.99,03/20/19 19:44,"832 Hill St, Dallas, TX 75001" +175157,AA Batteries (4-pack),1,3.84,03/08/19 10:40,"260 9th St, Boston, MA 02215" +175158,Wired Headphones,1,11.99,03/01/19 11:16,"764 Jackson St, Dallas, TX 75001" +175159,USB-C Charging Cable,1,11.95,03/26/19 19:22,"647 8th St, Boston, MA 02215" +175160,Macbook Pro Laptop,1,1700,03/31/19 15:48,"959 7th St, Atlanta, GA 30301" +175160,iPhone,1,700,03/31/19 15:48,"959 7th St, Atlanta, GA 30301" +175161,Lightning Charging Cable,1,14.95,03/03/19 17:41,"35 2nd St, Portland, OR 97035" +175162,USB-C Charging Cable,1,11.95,03/15/19 14:19,"441 Lincoln St, San Francisco, CA 94016" +175163,Wired Headphones,1,11.99,03/08/19 10:27,"301 Lakeview St, Dallas, TX 75001" +175164,AAA Batteries (4-pack),1,2.99,03/06/19 12:58,"687 Hill St, Los Angeles, CA 90001" +175165,27in FHD Monitor,1,149.99,03/15/19 10:53,"770 6th St, Austin, TX 73301" +175166,Flatscreen TV,1,300,03/03/19 10:44,"315 7th St, Boston, MA 02215" +175167,USB-C Charging Cable,1,11.95,03/20/19 13:49,"819 River St, San Francisco, CA 94016" +175168,27in 4K Gaming Monitor,1,389.99,03/01/19 16:28,"650 2nd St, Los Angeles, CA 90001" +175169,Bose SoundSport Headphones,1,99.99,03/22/19 18:03,"450 Sunset St, San Francisco, CA 94016" +175170,Flatscreen TV,1,300,03/21/19 00:16,"822 7th St, San Francisco, CA 94016" +175171,27in FHD Monitor,1,149.99,03/18/19 12:53,"766 Forest St, New York City, NY 10001" +175172,27in FHD Monitor,1,149.99,03/12/19 08:25,"636 Elm St, Seattle, WA 98101" +175173,AA Batteries (4-pack),1,3.84,03/08/19 20:26,"904 Lincoln St, San Francisco, CA 94016" +175174,Wired Headphones,1,11.99,03/11/19 12:32,"609 1st St, Portland, OR 97035" +175175,Lightning Charging Cable,1,14.95,03/03/19 16:19,"186 Madison St, San Francisco, CA 94016" +175176,Lightning Charging Cable,1,14.95,03/21/19 19:23,"434 Park St, New York City, NY 10001" +175177,iPhone,1,700,03/08/19 21:05,"345 11th St, Atlanta, GA 30301" +175178,iPhone,1,700,03/30/19 16:26,"95 11th St, San Francisco, CA 94016" +175178,Wired Headphones,1,11.99,03/30/19 16:26,"95 11th St, San Francisco, CA 94016" +175179,Wired Headphones,1,11.99,03/29/19 13:38,"794 9th St, San Francisco, CA 94016" +175180,Bose SoundSport Headphones,1,99.99,03/21/19 22:49,"24 Dogwood St, Boston, MA 02215" +175181,ThinkPad Laptop,1,999.99,03/08/19 21:50,"361 Cedar St, San Francisco, CA 94016" +175182,20in Monitor,1,109.99,03/03/19 09:04,"723 Lakeview St, San Francisco, CA 94016" +175183,Bose SoundSport Headphones,1,99.99,03/02/19 08:56,"552 Sunset St, Dallas, TX 75001" +175184,27in 4K Gaming Monitor,1,389.99,03/27/19 13:40,"456 Center St, Atlanta, GA 30301" +175185,AAA Batteries (4-pack),1,2.99,03/18/19 21:35,"654 Highland St, San Francisco, CA 94016" +175186,Flatscreen TV,1,300,03/01/19 19:07,"491 Maple St, Boston, MA 02215" +175187,Lightning Charging Cable,1,14.95,03/15/19 15:41,"899 13th St, New York City, NY 10001" +175188,20in Monitor,1,109.99,03/23/19 23:19,"406 5th St, Boston, MA 02215" +175189,AA Batteries (4-pack),1,3.84,03/12/19 09:46,"977 Main St, Seattle, WA 98101" +175190,Apple Airpods Headphones,1,150,03/27/19 18:36,"850 Madison St, Los Angeles, CA 90001" +175191,AA Batteries (4-pack),1,3.84,03/19/19 16:52,"948 11th St, Los Angeles, CA 90001" +175192,iPhone,1,700,03/13/19 06:55,"795 7th St, Los Angeles, CA 90001" +175193,USB-C Charging Cable,1,11.95,03/08/19 19:35,"828 9th St, Boston, MA 02215" +175194,USB-C Charging Cable,1,11.95,03/30/19 18:07,"904 Adams St, Los Angeles, CA 90001" +175195,Apple Airpods Headphones,1,150,03/30/19 17:45,"148 11th St, Boston, MA 02215" +175196,Google Phone,1,600,03/13/19 08:18,"800 Jackson St, Seattle, WA 98101" +175197,AAA Batteries (4-pack),2,2.99,03/17/19 12:26,"938 Willow St, Atlanta, GA 30301" +175198,Apple Airpods Headphones,1,150,03/11/19 00:10,"747 West St, Portland, OR 97035" +175199,AAA Batteries (4-pack),1,2.99,03/09/19 15:44,"351 Hickory St, Atlanta, GA 30301" +175200,AA Batteries (4-pack),1,3.84,03/01/19 16:17,"966 River St, New York City, NY 10001" +175201,iPhone,1,700,03/04/19 12:51,"672 Johnson St, San Francisco, CA 94016" +175201,Lightning Charging Cable,1,14.95,03/04/19 12:51,"672 Johnson St, San Francisco, CA 94016" +175202,Wired Headphones,1,11.99,03/03/19 23:52,"142 Lincoln St, Austin, TX 73301" +175203,Google Phone,1,600,03/18/19 17:19,"751 Center St, Los Angeles, CA 90001" +175203,Wired Headphones,1,11.99,03/18/19 17:19,"751 Center St, Los Angeles, CA 90001" +175204,ThinkPad Laptop,1,999.99,03/26/19 20:57,"452 Washington St, San Francisco, CA 94016" +175205,Macbook Pro Laptop,1,1700,03/24/19 12:47,"966 Ridge St, New York City, NY 10001" +175206,Apple Airpods Headphones,1,150,03/19/19 15:41,"778 12th St, San Francisco, CA 94016" +175207,AAA Batteries (4-pack),1,2.99,03/20/19 02:18,"780 Chestnut St, Atlanta, GA 30301" +175208,Apple Airpods Headphones,1,150,03/23/19 20:21,"67 Jackson St, San Francisco, CA 94016" +175209,AA Batteries (4-pack),2,3.84,03/25/19 08:56,"882 Wilson St, Boston, MA 02215" +175210,Flatscreen TV,1,300,03/26/19 12:19,"231 Jackson St, Portland, ME 04101" +175211,34in Ultrawide Monitor,1,379.99,03/17/19 16:51,"899 7th St, New York City, NY 10001" +175212,AA Batteries (4-pack),2,3.84,03/23/19 13:24,"286 5th St, Boston, MA 02215" +175212,Bose SoundSport Headphones,1,99.99,03/23/19 13:24,"286 5th St, Boston, MA 02215" +175213,AA Batteries (4-pack),1,3.84,03/19/19 10:52,"3 5th St, Atlanta, GA 30301" +175214,Wired Headphones,1,11.99,03/30/19 09:30,"91 Church St, Boston, MA 02215" +175215,Apple Airpods Headphones,1,150,03/21/19 15:07,"556 5th St, Dallas, TX 75001" +175216,Lightning Charging Cable,1,14.95,03/30/19 21:53,"167 North St, Los Angeles, CA 90001" +175217,AA Batteries (4-pack),2,3.84,03/02/19 18:51,"308 Highland St, Seattle, WA 98101" +175218,AA Batteries (4-pack),2,3.84,03/19/19 23:00,"713 River St, Austin, TX 73301" +175219,AAA Batteries (4-pack),1,2.99,03/22/19 21:18,"173 Hill St, Los Angeles, CA 90001" +175219,Bose SoundSport Headphones,1,99.99,03/22/19 21:18,"173 Hill St, Los Angeles, CA 90001" +175220,USB-C Charging Cable,1,11.95,03/21/19 11:00,"993 Cedar St, Atlanta, GA 30301" +175221,USB-C Charging Cable,1,11.95,03/16/19 22:19,"703 9th St, San Francisco, CA 94016" +175222,AA Batteries (4-pack),1,3.84,03/27/19 11:48,"155 Lake St, Austin, TX 73301" +175223,Bose SoundSport Headphones,1,99.99,03/22/19 22:41,"606 12th St, Dallas, TX 75001" +175224,Wired Headphones,1,11.99,03/23/19 14:23,"404 Highland St, Boston, MA 02215" +175225,USB-C Charging Cable,1,11.95,03/09/19 20:04,"873 Elm St, Dallas, TX 75001" +175226,AA Batteries (4-pack),1,3.84,03/21/19 18:38,"544 6th St, New York City, NY 10001" +175227,Apple Airpods Headphones,1,150,03/07/19 09:54,"408 11th St, Los Angeles, CA 90001" +175228,Wired Headphones,1,11.99,03/30/19 13:58,"865 Jefferson St, Atlanta, GA 30301" +175229,AA Batteries (4-pack),1,3.84,03/06/19 10:53,"964 14th St, Portland, OR 97035" +175230,Wired Headphones,1,11.99,03/28/19 11:55,"759 Wilson St, Atlanta, GA 30301" +175231,Bose SoundSport Headphones,1,99.99,03/31/19 21:21,"388 8th St, Dallas, TX 75001" +175232,ThinkPad Laptop,1,999.99,03/19/19 22:48,"174 Spruce St, New York City, NY 10001" +175233,Google Phone,1,600,03/09/19 02:18,"567 Spruce St, Los Angeles, CA 90001" +175234,Lightning Charging Cable,1,14.95,03/10/19 12:32,"261 Church St, Los Angeles, CA 90001" +175235,Google Phone,1,600,03/21/19 14:15,"628 Church St, Los Angeles, CA 90001" +175236,Bose SoundSport Headphones,1,99.99,03/04/19 12:26,"760 South St, Boston, MA 02215" +175237,Wired Headphones,1,11.99,03/15/19 20:40,"736 Church St, Los Angeles, CA 90001" +175238,AAA Batteries (4-pack),1,2.99,03/08/19 10:36,"303 Elm St, Boston, MA 02215" +175239,AAA Batteries (4-pack),3,2.99,03/06/19 21:21,"90 Lakeview St, Los Angeles, CA 90001" +175240,Wired Headphones,1,11.99,03/29/19 16:30,"809 Pine St, Seattle, WA 98101" +175241,Lightning Charging Cable,1,14.95,03/24/19 16:47,"49 7th St, Austin, TX 73301" +175242,USB-C Charging Cable,1,11.95,03/11/19 16:41,"781 11th St, New York City, NY 10001" +175243,27in FHD Monitor,1,149.99,03/14/19 11:03,"219 Madison St, New York City, NY 10001" +175244,Bose SoundSport Headphones,1,99.99,03/29/19 14:56,"419 Willow St, New York City, NY 10001" +175245,ThinkPad Laptop,1,999.99,03/01/19 20:32,"564 Highland St, New York City, NY 10001" +175246,Lightning Charging Cable,1,14.95,03/08/19 12:50,"61 1st St, Seattle, WA 98101" +175247,USB-C Charging Cable,1,11.95,03/03/19 16:44,"652 Willow St, Portland, OR 97035" +175248,27in 4K Gaming Monitor,1,389.99,03/21/19 15:21,"28 11th St, Atlanta, GA 30301" +175249,Apple Airpods Headphones,1,150,03/25/19 18:05,"584 Chestnut St, Dallas, TX 75001" +175250,Wired Headphones,1,11.99,03/09/19 20:59,"10 5th St, Los Angeles, CA 90001" +175251,Apple Airpods Headphones,1,150,03/26/19 18:35,"951 2nd St, Dallas, TX 75001" +175252,ThinkPad Laptop,1,999.99,03/12/19 10:53,"948 River St, San Francisco, CA 94016" +175253,Apple Airpods Headphones,1,150,03/25/19 21:40,"115 Maple St, Atlanta, GA 30301" +175254,AA Batteries (4-pack),1,3.84,03/09/19 20:56,"541 Spruce St, Portland, ME 04101" +175255,Apple Airpods Headphones,1,150,03/18/19 11:59,"904 Wilson St, Dallas, TX 75001" +175256,AA Batteries (4-pack),1,3.84,03/18/19 21:31,"81 Cherry St, Portland, OR 97035" +175257,34in Ultrawide Monitor,1,379.99,03/02/19 16:47,"40 Church St, Los Angeles, CA 90001" +175258,Lightning Charging Cable,1,14.95,03/06/19 11:16,"708 10th St, Los Angeles, CA 90001" +175259,Wired Headphones,1,11.99,03/17/19 12:22,"240 11th St, Portland, OR 97035" +175260,Wired Headphones,1,11.99,03/19/19 14:22,"265 Spruce St, Dallas, TX 75001" +175261,USB-C Charging Cable,2,11.95,03/26/19 20:04,"517 4th St, San Francisco, CA 94016" +175262,Lightning Charging Cable,1,14.95,03/19/19 15:48,"421 5th St, San Francisco, CA 94016" +175263,AAA Batteries (4-pack),1,2.99,03/11/19 08:02,"1 Hill St, San Francisco, CA 94016" +175264,Lightning Charging Cable,1,14.95,03/11/19 11:55,"535 5th St, Seattle, WA 98101" +175265,34in Ultrawide Monitor,2,379.99,03/21/19 22:48,"66 9th St, San Francisco, CA 94016" +175266,USB-C Charging Cable,1,11.95,03/31/19 21:54,"745 South St, Boston, MA 02215" +175267,20in Monitor,1,109.99,03/19/19 12:30,"265 6th St, New York City, NY 10001" +175268,Bose SoundSport Headphones,1,99.99,03/17/19 11:15,"216 Washington St, Portland, ME 04101" +175269,Bose SoundSport Headphones,1,99.99,03/27/19 14:45,"276 7th St, San Francisco, CA 94016" +175270,AAA Batteries (4-pack),2,2.99,03/17/19 10:51,"642 1st St, New York City, NY 10001" +175271,Lightning Charging Cable,1,14.95,03/30/19 18:16,"85 Cherry St, New York City, NY 10001" +175272,AAA Batteries (4-pack),1,2.99,03/07/19 10:26,"758 Dogwood St, Seattle, WA 98101" +175273,AAA Batteries (4-pack),1,2.99,03/29/19 13:10,"158 Highland St, Los Angeles, CA 90001" +175274,Bose SoundSport Headphones,1,99.99,03/02/19 14:31,"94 10th St, Portland, OR 97035" +175275,Wired Headphones,1,11.99,03/11/19 01:47,"307 Jefferson St, San Francisco, CA 94016" +175276,Lightning Charging Cable,1,14.95,03/24/19 17:49,"374 Center St, Los Angeles, CA 90001" +175277,Lightning Charging Cable,1,14.95,03/01/19 17:57,"753 Hill St, Los Angeles, CA 90001" +175278,Google Phone,1,600,03/03/19 01:44,"321 Adams St, New York City, NY 10001" +175278,Bose SoundSport Headphones,1,99.99,03/03/19 01:44,"321 Adams St, New York City, NY 10001" +175279,AA Batteries (4-pack),1,3.84,03/11/19 07:46,"767 4th St, Portland, OR 97035" +175280,20in Monitor,1,109.99,03/07/19 12:02,"172 Dogwood St, Atlanta, GA 30301" +175281,Macbook Pro Laptop,1,1700,03/15/19 15:52,"237 Hill St, Boston, MA 02215" +175282,Bose SoundSport Headphones,1,99.99,03/23/19 16:37,"186 River St, Los Angeles, CA 90001" +175283,USB-C Charging Cable,1,11.95,03/26/19 13:16,"434 Johnson St, San Francisco, CA 94016" +175284,USB-C Charging Cable,1,11.95,03/24/19 09:17,"238 13th St, Seattle, WA 98101" +175285,Wired Headphones,1,11.99,03/27/19 19:57,"87 4th St, Los Angeles, CA 90001" +175286,iPhone,1,700,03/24/19 17:40,"945 14th St, Los Angeles, CA 90001" +175287,Macbook Pro Laptop,1,1700,03/26/19 16:37,"307 Chestnut St, San Francisco, CA 94016" +175288,AA Batteries (4-pack),1,3.84,03/26/19 10:17,"219 Wilson St, Austin, TX 73301" +175289,ThinkPad Laptop,1,999.99,03/12/19 04:35,"836 Ridge St, San Francisco, CA 94016" +175290,27in 4K Gaming Monitor,1,389.99,03/10/19 21:12,"853 8th St, Dallas, TX 75001" +175291,Bose SoundSport Headphones,1,99.99,03/12/19 15:15,"969 8th St, San Francisco, CA 94016" +175292,AAA Batteries (4-pack),1,2.99,03/24/19 21:06,"131 12th St, Atlanta, GA 30301" +175293,Apple Airpods Headphones,1,150,03/07/19 21:53,"433 9th St, Dallas, TX 75001" +175294,AA Batteries (4-pack),1,3.84,03/24/19 17:11,"751 Willow St, Boston, MA 02215" +175295,USB-C Charging Cable,1,11.95,03/08/19 16:38,"134 Hickory St, New York City, NY 10001" +175296,Wired Headphones,1,11.99,03/02/19 00:10,"793 Sunset St, Los Angeles, CA 90001" +175297,Vareebadd Phone,1,400,03/06/19 22:14,"860 9th St, New York City, NY 10001" +175298,Wired Headphones,2,11.99,03/14/19 18:53,"369 North St, Los Angeles, CA 90001" +175299,Lightning Charging Cable,1,14.95,03/18/19 18:37,"553 River St, Portland, OR 97035" +175300,iPhone,1,700,03/28/19 10:28,"857 South St, Boston, MA 02215" +175301,Apple Airpods Headphones,1,150,03/25/19 18:48,"190 River St, Los Angeles, CA 90001" +175302,27in FHD Monitor,1,149.99,03/09/19 12:23,"773 Cedar St, Portland, OR 97035" +175303,Bose SoundSport Headphones,1,99.99,03/30/19 16:02,"877 Jefferson St, New York City, NY 10001" +175304,ThinkPad Laptop,1,999.99,03/18/19 16:48,"761 Cedar St, New York City, NY 10001" +175305,Bose SoundSport Headphones,1,99.99,03/31/19 18:40,"3 Sunset St, San Francisco, CA 94016" +175306,AAA Batteries (4-pack),1,2.99,03/21/19 13:25,"279 Cedar St, Boston, MA 02215" +175307,34in Ultrawide Monitor,1,379.99,03/28/19 23:42,"677 Wilson St, Boston, MA 02215" +175308,Bose SoundSport Headphones,1,99.99,03/10/19 18:23,"263 4th St, New York City, NY 10001" +175309,Wired Headphones,1,11.99,03/19/19 18:53,"277 6th St, San Francisco, CA 94016" +175310,AA Batteries (4-pack),1,3.84,03/25/19 11:12,"932 7th St, San Francisco, CA 94016" +175311,AA Batteries (4-pack),1,3.84,03/01/19 13:16,"615 Hill St, Los Angeles, CA 90001" +175312,Wired Headphones,1,11.99,03/11/19 06:33,"776 Lincoln St, San Francisco, CA 94016" +175313,Google Phone,1,600,03/18/19 17:48,"520 Elm St, Atlanta, GA 30301" +175314,AA Batteries (4-pack),2,3.84,03/08/19 21:07,"943 Jefferson St, Seattle, WA 98101" +175315,ThinkPad Laptop,1,999.99,03/28/19 05:46,"294 Chestnut St, Boston, MA 02215" +175316,AA Batteries (4-pack),1,3.84,03/15/19 20:21,"629 Washington St, Boston, MA 02215" +175317,Apple Airpods Headphones,1,150,03/28/19 18:58,"157 9th St, Boston, MA 02215" +175318,20in Monitor,1,109.99,03/07/19 19:42,"840 Meadow St, Austin, TX 73301" +175319,AA Batteries (4-pack),1,3.84,03/22/19 20:40,"989 Cedar St, San Francisco, CA 94016" +175320,27in FHD Monitor,1,149.99,03/01/19 23:09,"762 Johnson St, Boston, MA 02215" +175320,Flatscreen TV,1,300,03/01/19 23:09,"762 Johnson St, Boston, MA 02215" +175321,Lightning Charging Cable,1,14.95,03/16/19 22:28,"811 7th St, Dallas, TX 75001" +175322,AAA Batteries (4-pack),1,2.99,03/12/19 21:52,"540 6th St, San Francisco, CA 94016" +175323,AAA Batteries (4-pack),2,2.99,03/15/19 22:54,"664 Center St, San Francisco, CA 94016" +175324,AAA Batteries (4-pack),1,2.99,03/29/19 12:23,"601 Dogwood St, Los Angeles, CA 90001" +175325,Lightning Charging Cable,1,14.95,03/20/19 11:09,"157 1st St, San Francisco, CA 94016" +175326,Lightning Charging Cable,1,14.95,03/19/19 22:27,"828 10th St, San Francisco, CA 94016" +175327,iPhone,1,700,03/31/19 13:35,"295 4th St, Portland, OR 97035" +175328,AAA Batteries (4-pack),1,2.99,03/31/19 11:55,"862 Jefferson St, Los Angeles, CA 90001" +175329,Apple Airpods Headphones,1,150,03/22/19 11:54,"75 Chestnut St, Los Angeles, CA 90001" +175330,Bose SoundSport Headphones,1,99.99,03/03/19 21:21,"324 Sunset St, Seattle, WA 98101" +175331,AA Batteries (4-pack),1,3.84,03/25/19 17:49,"464 Ridge St, New York City, NY 10001" +175332,AAA Batteries (4-pack),4,2.99,03/05/19 12:20,"321 Madison St, San Francisco, CA 94016" +175333,34in Ultrawide Monitor,1,379.99,03/23/19 08:35,"313 Church St, New York City, NY 10001" +175334,Apple Airpods Headphones,1,150,03/19/19 16:04,"976 Walnut St, Austin, TX 73301" +175335,AA Batteries (4-pack),1,3.84,03/14/19 12:30,"27 Maple St, New York City, NY 10001" +175336,AAA Batteries (4-pack),1,2.99,03/02/19 00:04,"597 Walnut St, Boston, MA 02215" +175337,34in Ultrawide Monitor,1,379.99,03/21/19 17:33,"659 Lincoln St, San Francisco, CA 94016" +175338,ThinkPad Laptop,1,999.99,03/05/19 22:19,"140 Center St, Seattle, WA 98101" +175339,34in Ultrawide Monitor,1,379.99,03/21/19 20:24,"491 Jefferson St, New York City, NY 10001" +175340,AA Batteries (4-pack),2,3.84,03/06/19 14:47,"770 12th St, San Francisco, CA 94016" +175341,Apple Airpods Headphones,1,150,03/10/19 15:04,"476 North St, Los Angeles, CA 90001" +175342,Bose SoundSport Headphones,1,99.99,03/06/19 15:46,"952 Madison St, San Francisco, CA 94016" +175343,USB-C Charging Cable,1,11.95,03/26/19 10:53,"454 10th St, Portland, OR 97035" +175344,AA Batteries (4-pack),1,3.84,03/20/19 08:31,"900 Meadow St, Los Angeles, CA 90001" +175345,USB-C Charging Cable,1,11.95,03/23/19 07:58,"386 Cherry St, Portland, OR 97035" +175346,Wired Headphones,1,11.99,03/25/19 23:11,"372 Center St, San Francisco, CA 94016" +175347,AAA Batteries (4-pack),1,2.99,03/23/19 16:39,"21 Elm St, San Francisco, CA 94016" +175348,Bose SoundSport Headphones,1,99.99,03/23/19 17:46,"409 Cedar St, Portland, OR 97035" +175349,Apple Airpods Headphones,1,150,03/30/19 22:49,"954 West St, Seattle, WA 98101" +175350,Apple Airpods Headphones,1,150,03/10/19 18:50,"156 12th St, San Francisco, CA 94016" +175351,Wired Headphones,1,11.99,03/25/19 17:00,"778 Lake St, New York City, NY 10001" +175352,iPhone,1,700,03/15/19 20:53,"710 Forest St, Boston, MA 02215" +175352,Lightning Charging Cable,1,14.95,03/15/19 20:53,"710 Forest St, Boston, MA 02215" +175353,USB-C Charging Cable,1,11.95,03/04/19 16:12,"348 4th St, Boston, MA 02215" +175354,AA Batteries (4-pack),1,3.84,03/22/19 15:11,"937 8th St, San Francisco, CA 94016" +175355,Flatscreen TV,1,300,03/23/19 18:22,"202 Forest St, Dallas, TX 75001" +175356,Lightning Charging Cable,1,14.95,03/26/19 16:58,"624 Lincoln St, New York City, NY 10001" +175357,USB-C Charging Cable,1,11.95,03/22/19 16:15,"735 Meadow St, Los Angeles, CA 90001" +175358,Wired Headphones,1,11.99,03/27/19 20:30,"400 Park St, San Francisco, CA 94016" +175359,USB-C Charging Cable,1,11.95,03/15/19 13:26,"477 1st St, Boston, MA 02215" +175360,27in FHD Monitor,1,149.99,03/02/19 20:04,"878 Cedar St, New York City, NY 10001" +175361,Bose SoundSport Headphones,1,99.99,03/17/19 19:01,"947 Meadow St, San Francisco, CA 94016" +175362,Apple Airpods Headphones,1,150,03/25/19 00:12,"557 Jackson St, Portland, OR 97035" +175363,AA Batteries (4-pack),2,3.84,03/23/19 13:32,"675 Pine St, Los Angeles, CA 90001" +175364,ThinkPad Laptop,1,999.99,03/30/19 14:05,"889 14th St, New York City, NY 10001" +175365,AAA Batteries (4-pack),1,2.99,03/06/19 12:17,"181 5th St, Boston, MA 02215" +175366,34in Ultrawide Monitor,1,379.99,03/02/19 15:36,"964 Lakeview St, Boston, MA 02215" +175367,Lightning Charging Cable,2,14.95,03/27/19 13:54,"400 Madison St, San Francisco, CA 94016" +175368,AA Batteries (4-pack),1,3.84,03/03/19 23:44,"905 Church St, Seattle, WA 98101" +175369,Wired Headphones,1,11.99,03/04/19 19:40,"454 Church St, Boston, MA 02215" +175370,Lightning Charging Cable,1,14.95,03/27/19 13:31,"86 Spruce St, Austin, TX 73301" +175371,Lightning Charging Cable,1,14.95,03/17/19 09:50,"497 Walnut St, San Francisco, CA 94016" +175372,27in FHD Monitor,1,149.99,03/24/19 20:09,"982 Jefferson St, Los Angeles, CA 90001" +175373,27in 4K Gaming Monitor,1,389.99,03/18/19 13:28,"199 Hickory St, Seattle, WA 98101" +175374,Wired Headphones,1,11.99,03/04/19 15:41,"562 12th St, San Francisco, CA 94016" +175375,AAA Batteries (4-pack),1,2.99,03/24/19 18:50,"124 Wilson St, Los Angeles, CA 90001" +175376,Lightning Charging Cable,1,14.95,03/21/19 13:03,"684 North St, Los Angeles, CA 90001" +175377,Apple Airpods Headphones,1,150,03/01/19 20:21,"792 Cedar St, Los Angeles, CA 90001" +175378,AAA Batteries (4-pack),1,2.99,03/28/19 13:38,"35 Willow St, Los Angeles, CA 90001" +175379,Google Phone,1,600,03/15/19 16:09,"329 River St, Boston, MA 02215" +175380,Bose SoundSport Headphones,1,99.99,03/05/19 14:51,"887 Ridge St, Los Angeles, CA 90001" +175381,Bose SoundSport Headphones,1,99.99,03/29/19 22:00,"421 Maple St, Los Angeles, CA 90001" +175382,Wired Headphones,1,11.99,03/07/19 13:16,"11 Dogwood St, San Francisco, CA 94016" +175383,AA Batteries (4-pack),1,3.84,03/29/19 21:27,"680 Lincoln St, Atlanta, GA 30301" +175384,Wired Headphones,1,11.99,03/15/19 19:14,"210 10th St, Los Angeles, CA 90001" +175385,AAA Batteries (4-pack),1,2.99,03/23/19 14:21,"699 Sunset St, San Francisco, CA 94016" +175386,Bose SoundSport Headphones,1,99.99,03/21/19 07:52,"23 Lake St, New York City, NY 10001" +175387,USB-C Charging Cable,1,11.95,03/07/19 17:38,"922 9th St, Atlanta, GA 30301" +175388,Google Phone,1,600,03/17/19 09:15,"95 11th St, Portland, OR 97035" +175388,USB-C Charging Cable,1,11.95,03/17/19 09:15,"95 11th St, Portland, OR 97035" +175388,Wired Headphones,1,11.99,03/17/19 09:15,"95 11th St, Portland, OR 97035" +175389,Wired Headphones,2,11.99,03/01/19 10:49,"625 10th St, San Francisco, CA 94016" +175390,AAA Batteries (4-pack),1,2.99,03/06/19 09:24,"579 Highland St, San Francisco, CA 94016" +175391,AA Batteries (4-pack),1,3.84,03/03/19 07:33,"50 Adams St, Portland, OR 97035" +175392,34in Ultrawide Monitor,1,379.99,03/20/19 14:55,"599 Johnson St, Los Angeles, CA 90001" +175393,Apple Airpods Headphones,1,150,03/31/19 16:05,"862 4th St, Los Angeles, CA 90001" +175394,20in Monitor,1,109.99,03/09/19 13:36,"413 Elm St, Boston, MA 02215" +175395,AAA Batteries (4-pack),1,2.99,03/23/19 14:12,"604 2nd St, Boston, MA 02215" +175396,Bose SoundSport Headphones,1,99.99,03/31/19 22:53,"346 Forest St, Los Angeles, CA 90001" +175397,Wired Headphones,1,11.99,03/12/19 13:39,"166 Maple St, San Francisco, CA 94016" +175398,34in Ultrawide Monitor,1,379.99,03/18/19 18:25,"647 1st St, Boston, MA 02215" +175399,AA Batteries (4-pack),1,3.84,03/02/19 14:09,"707 Madison St, San Francisco, CA 94016" +175400,Apple Airpods Headphones,1,150,03/07/19 09:57,"213 10th St, Seattle, WA 98101" +175401,Bose SoundSport Headphones,1,99.99,03/01/19 11:49,"860 Chestnut St, Portland, OR 97035" +175402,AA Batteries (4-pack),1,3.84,03/24/19 20:46,"41 Jackson St, San Francisco, CA 94016" +175403,Lightning Charging Cable,1,14.95,03/08/19 20:15,"15 7th St, San Francisco, CA 94016" +175404,Macbook Pro Laptop,1,1700,03/20/19 07:20,"881 Meadow St, Los Angeles, CA 90001" +175405,AA Batteries (4-pack),1,3.84,03/25/19 15:00,"445 11th St, New York City, NY 10001" +175406,Wired Headphones,1,11.99,03/10/19 11:42,"684 North St, Dallas, TX 75001" +175407,Apple Airpods Headphones,1,150,03/13/19 08:28,"538 5th St, San Francisco, CA 94016" +175408,USB-C Charging Cable,1,11.95,03/04/19 14:35,"406 Cherry St, San Francisco, CA 94016" +175409,Flatscreen TV,1,300,03/28/19 23:20,"143 Hill St, Los Angeles, CA 90001" +175410,Google Phone,1,600,03/06/19 09:24,"124 Wilson St, Los Angeles, CA 90001" +175411,AA Batteries (4-pack),1,3.84,03/01/19 10:35,"36 Lake St, Portland, OR 97035" +175412,AAA Batteries (4-pack),3,2.99,03/13/19 21:38,"21 Madison St, San Francisco, CA 94016" +175413,iPhone,1,700,03/15/19 01:31,"191 Cherry St, San Francisco, CA 94016" +175414,Apple Airpods Headphones,1,150,03/03/19 00:13,"689 Spruce St, Los Angeles, CA 90001" +175415,AAA Batteries (4-pack),1,2.99,03/21/19 16:54,"295 Adams St, Boston, MA 02215" +175416,AA Batteries (4-pack),1,3.84,03/18/19 09:08,"274 Ridge St, New York City, NY 10001" +175417,Wired Headphones,1,11.99,03/12/19 19:16,"551 Cedar St, Los Angeles, CA 90001" +175418,AAA Batteries (4-pack),2,2.99,03/10/19 12:48,"809 Spruce St, New York City, NY 10001" +175419,Flatscreen TV,1,300,03/08/19 10:29,"633 5th St, San Francisco, CA 94016" +175420,Macbook Pro Laptop,1,1700,03/13/19 01:02,"230 Cherry St, San Francisco, CA 94016" +175421,Wired Headphones,1,11.99,03/02/19 11:03,"301 9th St, Los Angeles, CA 90001" +175422,ThinkPad Laptop,1,999.99,03/12/19 00:05,"176 1st St, Dallas, TX 75001" +175423,Wired Headphones,1,11.99,03/18/19 10:26,"546 Lincoln St, Atlanta, GA 30301" +175424,27in 4K Gaming Monitor,1,389.99,03/06/19 12:48,"620 Jefferson St, Atlanta, GA 30301" +175425,AA Batteries (4-pack),1,3.84,03/19/19 17:08,"135 Meadow St, Austin, TX 73301" +175425,Apple Airpods Headphones,1,150,03/19/19 17:08,"135 Meadow St, Austin, TX 73301" +175426,AAA Batteries (4-pack),1,2.99,03/05/19 17:21,"13 Lakeview St, San Francisco, CA 94016" +175427,AA Batteries (4-pack),1,3.84,03/09/19 22:00,"190 10th St, San Francisco, CA 94016" +175428,Wired Headphones,1,11.99,03/06/19 09:14,"813 Ridge St, Seattle, WA 98101" +175429,Macbook Pro Laptop,1,1700,03/13/19 16:57,"283 Lake St, Portland, OR 97035" +175430,Google Phone,1,600,03/05/19 14:31,"5 Cedar St, Dallas, TX 75001" +175431,USB-C Charging Cable,1,11.95,03/16/19 15:55,"220 Highland St, Los Angeles, CA 90001" +175432,Lightning Charging Cable,1,14.95,03/07/19 21:14,"809 6th St, New York City, NY 10001" +175433,Apple Airpods Headphones,1,150,03/31/19 10:38,"378 Adams St, Dallas, TX 75001" +175434,27in FHD Monitor,1,149.99,03/26/19 14:18,"850 Wilson St, New York City, NY 10001" +175435,Bose SoundSport Headphones,1,99.99,03/30/19 22:52,"644 9th St, Boston, MA 02215" +175436,20in Monitor,1,109.99,03/12/19 18:02,"926 Maple St, New York City, NY 10001" +175437,Flatscreen TV,1,300,03/26/19 20:46,"444 Spruce St, Los Angeles, CA 90001" +175438,27in 4K Gaming Monitor,1,389.99,03/27/19 12:40,"848 Meadow St, Seattle, WA 98101" +175439,USB-C Charging Cable,1,11.95,03/09/19 20:27,"611 Main St, San Francisco, CA 94016" +175440,Vareebadd Phone,1,400,03/16/19 11:24,"82 Wilson St, Los Angeles, CA 90001" +175441,Lightning Charging Cable,2,14.95,03/02/19 11:23,"945 Willow St, Los Angeles, CA 90001" +175442,USB-C Charging Cable,1,11.95,03/17/19 08:49,"306 10th St, Seattle, WA 98101" +175443,AAA Batteries (4-pack),3,2.99,03/08/19 14:32,"626 West St, Boston, MA 02215" +175444,Lightning Charging Cable,1,14.95,03/23/19 19:27,"880 Ridge St, Boston, MA 02215" +175445,USB-C Charging Cable,1,11.95,03/09/19 19:05,"19 Pine St, Dallas, TX 75001" +175446,USB-C Charging Cable,1,11.95,03/03/19 20:03,"260 Madison St, Dallas, TX 75001" +175447,AAA Batteries (4-pack),1,2.99,03/24/19 09:55,"909 Willow St, New York City, NY 10001" +175448,AA Batteries (4-pack),1,3.84,03/22/19 15:14,"640 Main St, Atlanta, GA 30301" +175449,Wired Headphones,1,11.99,03/02/19 12:26,"272 Johnson St, New York City, NY 10001" +175450,AA Batteries (4-pack),1,3.84,03/30/19 17:51,"924 5th St, Atlanta, GA 30301" +175451,Wired Headphones,1,11.99,03/31/19 18:58,"555 13th St, New York City, NY 10001" +175452,USB-C Charging Cable,1,11.95,03/29/19 22:48,"81 Adams St, New York City, NY 10001" +175453,27in FHD Monitor,1,149.99,03/16/19 11:22,"716 9th St, Los Angeles, CA 90001" +175454,AAA Batteries (4-pack),1,2.99,03/04/19 07:30,"827 West St, New York City, NY 10001" +175455,USB-C Charging Cable,2,11.95,03/09/19 19:46,"737 Cherry St, New York City, NY 10001" +175456,Bose SoundSport Headphones,1,99.99,03/03/19 16:29,"469 2nd St, Atlanta, GA 30301" +175457,Vareebadd Phone,1,400,03/15/19 11:11,"160 Main St, New York City, NY 10001" +175458,ThinkPad Laptop,1,999.99,03/09/19 14:04,"780 8th St, Dallas, TX 75001" +175459,iPhone,1,700,03/18/19 19:11,"655 Park St, San Francisco, CA 94016" +175460,27in FHD Monitor,1,149.99,03/16/19 13:45,"388 Center St, New York City, NY 10001" +175461,Wired Headphones,1,11.99,03/10/19 10:11,"6 Maple St, Dallas, TX 75001" +175462,Bose SoundSport Headphones,1,99.99,03/02/19 10:34,"186 Chestnut St, Austin, TX 73301" +175463,USB-C Charging Cable,1,11.95,03/26/19 13:24,"759 5th St, Seattle, WA 98101" +175464,AA Batteries (4-pack),1,3.84,03/30/19 14:54,"800 8th St, Seattle, WA 98101" +175465,AA Batteries (4-pack),1,3.84,03/18/19 01:52,"486 Madison St, Dallas, TX 75001" +175466,Wired Headphones,1,11.99,03/13/19 16:13,"735 South St, Boston, MA 02215" +175467,AAA Batteries (4-pack),1,2.99,03/06/19 19:18,"66 Lincoln St, Los Angeles, CA 90001" +175468,Apple Airpods Headphones,1,150,03/27/19 15:12,"277 Pine St, San Francisco, CA 94016" +175469,AAA Batteries (4-pack),2,2.99,03/25/19 22:40,"892 Cedar St, San Francisco, CA 94016" +175470,Wired Headphones,1,11.99,03/02/19 09:13,"320 2nd St, Atlanta, GA 30301" +175471,Bose SoundSport Headphones,1,99.99,03/08/19 13:34,"948 Sunset St, Boston, MA 02215" +175472,AA Batteries (4-pack),1,3.84,03/03/19 19:44,"646 14th St, Seattle, WA 98101" +175473,Google Phone,1,600,03/04/19 14:54,"549 6th St, San Francisco, CA 94016" +175474,Flatscreen TV,1,300,03/09/19 12:00,"150 Johnson St, Austin, TX 73301" +175475,USB-C Charging Cable,1,11.95,03/11/19 17:10,"737 9th St, San Francisco, CA 94016" +175476,34in Ultrawide Monitor,1,379.99,03/19/19 15:26,"473 Adams St, Austin, TX 73301" +175477,AA Batteries (4-pack),1,3.84,03/11/19 11:21,"893 Sunset St, New York City, NY 10001" +175478,AA Batteries (4-pack),1,3.84,03/05/19 10:21,"538 Center St, Los Angeles, CA 90001" +175479,27in 4K Gaming Monitor,1,389.99,03/24/19 16:19,"695 6th St, Boston, MA 02215" +175480,Lightning Charging Cable,1,14.95,03/25/19 15:07,"304 Cherry St, Boston, MA 02215" +175481,34in Ultrawide Monitor,1,379.99,03/28/19 19:32,"726 Cherry St, Portland, OR 97035" +175482,AAA Batteries (4-pack),1,2.99,03/17/19 07:47,"243 Center St, San Francisco, CA 94016" +175483,Wired Headphones,1,11.99,03/19/19 02:20,"548 West St, Atlanta, GA 30301" +175484,27in FHD Monitor,1,149.99,03/06/19 15:56,"729 Hickory St, New York City, NY 10001" +175485,27in FHD Monitor,1,149.99,03/27/19 10:01,"417 1st St, New York City, NY 10001" +175486,27in 4K Gaming Monitor,1,389.99,03/30/19 19:38,"405 Jefferson St, San Francisco, CA 94016" +175487,20in Monitor,1,109.99,03/01/19 11:34,"364 Maple St, Atlanta, GA 30301" +175488,Bose SoundSport Headphones,1,99.99,03/27/19 18:30,"594 Walnut St, Los Angeles, CA 90001" +175489,AA Batteries (4-pack),2,3.84,03/08/19 14:46,"308 Meadow St, Austin, TX 73301" +175490,Bose SoundSport Headphones,1,99.99,03/22/19 07:53,"945 Hill St, San Francisco, CA 94016" +175491,Google Phone,1,600,03/30/19 12:43,"114 Sunset St, New York City, NY 10001" +175491,Wired Headphones,1,11.99,03/30/19 12:43,"114 Sunset St, New York City, NY 10001" +175492,AA Batteries (4-pack),2,3.84,03/22/19 14:34,"731 Elm St, Seattle, WA 98101" +175493,Lightning Charging Cable,1,14.95,03/18/19 12:17,"692 Forest St, Dallas, TX 75001" +175494,Wired Headphones,1,11.99,03/24/19 21:22,"237 Elm St, San Francisco, CA 94016" +175495,AAA Batteries (4-pack),1,2.99,03/15/19 14:27,"849 Madison St, Atlanta, GA 30301" +175496,Apple Airpods Headphones,1,150,03/16/19 18:57,"96 Walnut St, Atlanta, GA 30301" +175497,Lightning Charging Cable,1,14.95,03/18/19 00:12,"108 4th St, San Francisco, CA 94016" +175498,Apple Airpods Headphones,1,150,03/19/19 20:49,"482 Hill St, Los Angeles, CA 90001" +175499,USB-C Charging Cable,1,11.95,03/26/19 12:03,"486 Elm St, San Francisco, CA 94016" +175500,Macbook Pro Laptop,1,1700,03/24/19 07:15,"83 Hill St, San Francisco, CA 94016" +175501,USB-C Charging Cable,1,11.95,03/29/19 21:07,"630 South St, San Francisco, CA 94016" +175502,27in 4K Gaming Monitor,1,389.99,03/18/19 08:37,"715 Dogwood St, Los Angeles, CA 90001" +175503,Bose SoundSport Headphones,1,99.99,03/22/19 14:20,"951 Lake St, Portland, OR 97035" +175504,Wired Headphones,1,11.99,03/25/19 12:05,"517 North St, New York City, NY 10001" +175505,Wired Headphones,1,11.99,03/25/19 22:26,"762 8th St, New York City, NY 10001" +175506,Wired Headphones,1,11.99,03/31/19 21:56,"513 Chestnut St, New York City, NY 10001" +175507,27in FHD Monitor,1,149.99,03/03/19 07:55,"479 Hickory St, Atlanta, GA 30301" +175508,Wired Headphones,1,11.99,03/05/19 23:35,"592 Main St, Boston, MA 02215" +175509,AA Batteries (4-pack),1,3.84,03/14/19 13:05,"84 Cherry St, New York City, NY 10001" +175510,AA Batteries (4-pack),1,3.84,03/06/19 12:25,"755 Forest St, Austin, TX 73301" +175511,Vareebadd Phone,1,400,03/03/19 22:10,"287 13th St, Austin, TX 73301" +175512,AAA Batteries (4-pack),3,2.99,03/22/19 22:53,"228 Dogwood St, New York City, NY 10001" +175513,AA Batteries (4-pack),2,3.84,03/09/19 07:36,"248 Lincoln St, Atlanta, GA 30301" +175513,Lightning Charging Cable,1,14.95,03/09/19 07:36,"248 Lincoln St, Atlanta, GA 30301" +175514,Wired Headphones,1,11.99,03/23/19 09:24,"580 Chestnut St, San Francisco, CA 94016" +175515,Wired Headphones,1,11.99,03/09/19 00:38,"115 Johnson St, New York City, NY 10001" +175516,Bose SoundSport Headphones,1,99.99,03/26/19 20:28,"932 Cherry St, New York City, NY 10001" +175517,AAA Batteries (4-pack),1,2.99,03/24/19 18:31,"576 13th St, Dallas, TX 75001" +175517,Apple Airpods Headphones,1,150,03/24/19 18:31,"576 13th St, Dallas, TX 75001" +175518,Flatscreen TV,1,300,03/15/19 19:39,"632 11th St, Seattle, WA 98101" +175519,AA Batteries (4-pack),2,3.84,03/22/19 21:53,"631 Highland St, Austin, TX 73301" +175520,Apple Airpods Headphones,1,150,03/04/19 16:22,"302 11th St, Los Angeles, CA 90001" +175521,USB-C Charging Cable,1,11.95,03/16/19 17:49,"399 1st St, San Francisco, CA 94016" +175522,AAA Batteries (4-pack),1,2.99,03/25/19 09:53,"553 Adams St, Portland, ME 04101" +175523,AAA Batteries (4-pack),1,2.99,03/29/19 13:38,"91 Lakeview St, Dallas, TX 75001" +175524,AA Batteries (4-pack),2,3.84,03/08/19 01:47,"129 13th St, Boston, MA 02215" +175525,Wired Headphones,1,11.99,03/21/19 13:19,"458 Main St, Boston, MA 02215" +175526,iPhone,1,700,03/16/19 06:27,"418 Center St, Atlanta, GA 30301" +175527,Wired Headphones,1,11.99,03/07/19 20:39,"227 Center St, Portland, ME 04101" +175528,Wired Headphones,2,11.99,03/15/19 19:49,"836 West St, San Francisco, CA 94016" +175528,Bose SoundSport Headphones,2,99.99,03/15/19 19:49,"836 West St, San Francisco, CA 94016" +175529,Lightning Charging Cable,1,14.95,03/24/19 09:40,"701 Jefferson St, San Francisco, CA 94016" +175530,AA Batteries (4-pack),2,3.84,03/21/19 21:13,"356 Jackson St, New York City, NY 10001" +175531,Wired Headphones,1,11.99,03/31/19 22:55,"457 Lake St, Dallas, TX 75001" +175532,AAA Batteries (4-pack),1,2.99,03/04/19 20:40,"73 Chestnut St, Boston, MA 02215" +175533,AA Batteries (4-pack),1,3.84,03/03/19 13:45,"747 Hill St, Seattle, WA 98101" +175534,Wired Headphones,1,11.99,03/13/19 22:19,"413 Madison St, San Francisco, CA 94016" +175535,27in 4K Gaming Monitor,1,389.99,03/31/19 21:53,"904 Forest St, San Francisco, CA 94016" +175536,AA Batteries (4-pack),1,3.84,03/26/19 21:40,"461 Pine St, San Francisco, CA 94016" +175537,27in 4K Gaming Monitor,1,389.99,03/18/19 15:56,"96 13th St, New York City, NY 10001" +175538,Wired Headphones,1,11.99,03/03/19 11:18,"998 Jefferson St, San Francisco, CA 94016" +175539,Apple Airpods Headphones,1,150,03/16/19 21:28,"63 4th St, San Francisco, CA 94016" +175540,Vareebadd Phone,1,400,03/22/19 19:00,"37 Maple St, Austin, TX 73301" +175541,Wired Headphones,1,11.99,03/05/19 20:39,"542 2nd St, New York City, NY 10001" +175542,AAA Batteries (4-pack),1,2.99,03/12/19 18:22,"110 Lincoln St, New York City, NY 10001" +175543,27in FHD Monitor,1,149.99,03/26/19 15:47,"432 West St, San Francisco, CA 94016" +175544,AAA Batteries (4-pack),2,2.99,03/21/19 10:12,"57 Main St, Seattle, WA 98101" +175545,Apple Airpods Headphones,1,150,03/15/19 18:25,"797 Highland St, Los Angeles, CA 90001" +175546,AAA Batteries (4-pack),3,2.99,03/08/19 16:42,"650 Sunset St, Dallas, TX 75001" +175547,Bose SoundSport Headphones,1,99.99,03/22/19 20:32,"16 1st St, Dallas, TX 75001" +175548,Flatscreen TV,1,300,03/31/19 17:10,"587 Elm St, Atlanta, GA 30301" +175549,Wired Headphones,1,11.99,03/31/19 18:37,"692 Washington St, San Francisco, CA 94016" +175550,20in Monitor,1,109.99,03/27/19 14:52,"147 River St, Seattle, WA 98101" +175551,Wired Headphones,1,11.99,03/31/19 19:05,"925 5th St, Los Angeles, CA 90001" +175552,Flatscreen TV,1,300,03/09/19 17:24,"660 5th St, Los Angeles, CA 90001" +175553,AA Batteries (4-pack),1,3.84,03/06/19 07:14,"725 Park St, Atlanta, GA 30301" +175554,Macbook Pro Laptop,1,1700,03/02/19 16:58,"740 4th St, Los Angeles, CA 90001" +175555,Lightning Charging Cable,1,14.95,03/29/19 17:10,"346 Madison St, San Francisco, CA 94016" +175556,Lightning Charging Cable,1,14.95,03/13/19 07:13,"28 8th St, New York City, NY 10001" +175557,34in Ultrawide Monitor,1,379.99,03/08/19 10:36,"674 9th St, Dallas, TX 75001" +175558,AA Batteries (4-pack),1,3.84,03/12/19 10:46,"963 Lincoln St, San Francisco, CA 94016" +175559,Apple Airpods Headphones,1,150,03/22/19 20:28,"728 Church St, Los Angeles, CA 90001" +175560,AA Batteries (4-pack),1,3.84,03/06/19 18:26,"863 7th St, Los Angeles, CA 90001" +175561,20in Monitor,1,109.99,03/24/19 20:20,"184 Wilson St, Portland, OR 97035" +175562,AA Batteries (4-pack),1,3.84,03/10/19 14:33,"78 Park St, New York City, NY 10001" +175563,27in FHD Monitor,1,149.99,03/19/19 18:01,"898 Johnson St, Boston, MA 02215" +175564,Apple Airpods Headphones,1,150,03/30/19 18:04,"746 6th St, Boston, MA 02215" +175565,Macbook Pro Laptop,1,1700,03/18/19 19:17,"314 Center St, Seattle, WA 98101" +175566,USB-C Charging Cable,1,11.95,03/02/19 23:42,"451 Meadow St, New York City, NY 10001" +175567,Lightning Charging Cable,1,14.95,03/11/19 15:57,"18 2nd St, Seattle, WA 98101" +175568,Wired Headphones,1,11.99,03/11/19 11:37,"205 8th St, Austin, TX 73301" +175569,USB-C Charging Cable,1,11.95,03/06/19 11:16,"190 Hill St, Boston, MA 02215" +175570,Wired Headphones,1,11.99,03/13/19 16:58,"647 13th St, Boston, MA 02215" +175571,Wired Headphones,5,11.99,03/18/19 18:24,"934 Wilson St, Dallas, TX 75001" +175572,AA Batteries (4-pack),1,3.84,03/12/19 01:44,"564 North St, San Francisco, CA 94016" +175573,Lightning Charging Cable,1,14.95,03/31/19 17:10,"24 Center St, San Francisco, CA 94016" +175574,Lightning Charging Cable,2,14.95,03/28/19 07:31,"689 Lakeview St, Dallas, TX 75001" +175575,AA Batteries (4-pack),1,3.84,03/03/19 14:15,"521 12th St, Los Angeles, CA 90001" +175576,Macbook Pro Laptop,1,1700,03/23/19 10:28,"475 Maple St, Los Angeles, CA 90001" +175577,Macbook Pro Laptop,1,1700,03/06/19 14:51,"868 Chestnut St, Los Angeles, CA 90001" +175578,Wired Headphones,1,11.99,03/23/19 00:16,"764 13th St, Boston, MA 02215" +175579,Apple Airpods Headphones,1,150,03/31/19 13:04,"358 1st St, San Francisco, CA 94016" +175580,Bose SoundSport Headphones,1,99.99,03/28/19 15:10,"832 Highland St, Austin, TX 73301" +175581,27in FHD Monitor,1,149.99,03/04/19 14:53,"466 Madison St, Atlanta, GA 30301" +175582,20in Monitor,1,109.99,03/11/19 20:06,"821 Cedar St, San Francisco, CA 94016" +175583,Wired Headphones,1,11.99,03/16/19 11:33,"417 Madison St, Los Angeles, CA 90001" +175584,Wired Headphones,2,11.99,03/25/19 22:33,"767 Jefferson St, San Francisco, CA 94016" +175585,27in FHD Monitor,1,149.99,03/27/19 12:39,"447 Jefferson St, New York City, NY 10001" +175586,USB-C Charging Cable,1,11.95,03/11/19 18:41,"107 Cedar St, New York City, NY 10001" +175587,ThinkPad Laptop,1,999.99,03/03/19 17:03,"30 Ridge St, Seattle, WA 98101" +175588,USB-C Charging Cable,1,11.95,03/28/19 14:47,"809 Main St, Boston, MA 02215" +175589,Flatscreen TV,1,300,03/21/19 21:40,"995 Johnson St, New York City, NY 10001" +175590,Flatscreen TV,1,300,03/16/19 14:38,"525 Forest St, Los Angeles, CA 90001" +175591,USB-C Charging Cable,1,11.95,03/12/19 21:57,"22 Ridge St, New York City, NY 10001" +175592,20in Monitor,1,109.99,03/19/19 13:19,"914 10th St, Seattle, WA 98101" +175593,Flatscreen TV,1,300,03/12/19 09:57,"326 Dogwood St, San Francisco, CA 94016" +175594,AA Batteries (4-pack),2,3.84,03/23/19 21:45,"548 Center St, Portland, ME 04101" +175595,ThinkPad Laptop,1,999.99,03/04/19 13:27,"289 Main St, New York City, NY 10001" +175596,Bose SoundSport Headphones,1,99.99,03/08/19 13:49,"504 1st St, Boston, MA 02215" +175597,AAA Batteries (4-pack),1,2.99,03/09/19 22:28,"123 8th St, San Francisco, CA 94016" +175598,Lightning Charging Cable,1,14.95,03/14/19 15:15,"924 Highland St, Boston, MA 02215" +175599,Lightning Charging Cable,1,14.95,03/31/19 14:44,"755 2nd St, Dallas, TX 75001" +175600,AA Batteries (4-pack),1,3.84,03/23/19 12:46,"667 North St, Dallas, TX 75001" +175601,AA Batteries (4-pack),1,3.84,03/30/19 18:34,"558 Sunset St, Portland, OR 97035" +175602,Lightning Charging Cable,1,14.95,03/03/19 11:01,"176 South St, Dallas, TX 75001" +175603,Lightning Charging Cable,1,14.95,03/31/19 09:10,"637 Hill St, San Francisco, CA 94016" +175604,ThinkPad Laptop,1,999.99,03/29/19 14:32,"21 7th St, Los Angeles, CA 90001" +175605,Bose SoundSport Headphones,1,99.99,03/11/19 21:45,"792 Cherry St, San Francisco, CA 94016" +175606,AAA Batteries (4-pack),1,2.99,03/02/19 05:03,"886 8th St, San Francisco, CA 94016" +175607,AA Batteries (4-pack),1,3.84,03/21/19 13:43,"439 Spruce St, Los Angeles, CA 90001" +175608,Lightning Charging Cable,1,14.95,03/30/19 14:11,"791 2nd St, Dallas, TX 75001" +175609,AA Batteries (4-pack),2,3.84,03/06/19 15:48,"336 Highland St, San Francisco, CA 94016" +175610,Wired Headphones,1,11.99,03/31/19 21:28,"7 Adams St, San Francisco, CA 94016" +175611,Apple Airpods Headphones,1,150,03/13/19 15:59,"608 Washington St, Dallas, TX 75001" +175612,Wired Headphones,1,11.99,03/03/19 11:30,"571 8th St, San Francisco, CA 94016" +175613,Apple Airpods Headphones,1,150,03/14/19 21:05,"155 Meadow St, San Francisco, CA 94016" +175614,Lightning Charging Cable,1,14.95,03/08/19 16:14,"881 Lake St, New York City, NY 10001" +175615,AA Batteries (4-pack),1,3.84,03/20/19 14:50,"648 Cherry St, San Francisco, CA 94016" +175616,20in Monitor,1,109.99,03/02/19 07:10,"130 Chestnut St, Atlanta, GA 30301" +175617,Lightning Charging Cable,1,14.95,03/29/19 20:29,"347 5th St, Los Angeles, CA 90001" +175618,USB-C Charging Cable,1,11.95,03/17/19 21:28,"702 5th St, Austin, TX 73301" +175619,Apple Airpods Headphones,1,150,03/13/19 19:36,"831 Forest St, San Francisco, CA 94016" +175620,iPhone,1,700,03/08/19 21:17,"623 Church St, Portland, ME 04101" +175621,USB-C Charging Cable,1,11.95,03/02/19 21:55,"686 7th St, Boston, MA 02215" +175622,34in Ultrawide Monitor,1,379.99,03/24/19 20:29,"387 Hickory St, Los Angeles, CA 90001" +175623,Bose SoundSport Headphones,1,99.99,03/14/19 23:33,"675 5th St, New York City, NY 10001" +175624,27in 4K Gaming Monitor,1,389.99,03/27/19 19:57,"130 Wilson St, San Francisco, CA 94016" +175625,Apple Airpods Headphones,1,150,03/23/19 20:14,"276 Madison St, Los Angeles, CA 90001" +175626,Flatscreen TV,1,300,03/17/19 19:48,"735 Elm St, New York City, NY 10001" +175627,Wired Headphones,1,11.99,03/25/19 17:08,"75 Sunset St, Atlanta, GA 30301" +175628,Google Phone,1,600,03/22/19 12:24,"847 Cherry St, Los Angeles, CA 90001" +175628,USB-C Charging Cable,1,11.95,03/22/19 12:24,"847 Cherry St, Los Angeles, CA 90001" +175629,Google Phone,1,600,03/20/19 10:06,"104 9th St, Portland, ME 04101" +175630,AAA Batteries (4-pack),3,2.99,03/23/19 19:25,"473 Lincoln St, San Francisco, CA 94016" +175631,AA Batteries (4-pack),1,3.84,03/19/19 19:13,"479 Adams St, Dallas, TX 75001" +175632,Lightning Charging Cable,1,14.95,03/12/19 16:04,"316 Meadow St, Portland, OR 97035" +175633,AA Batteries (4-pack),1,3.84,03/16/19 19:01,"982 Chestnut St, Portland, OR 97035" +175634,USB-C Charging Cable,1,11.95,03/25/19 19:18,"912 4th St, Atlanta, GA 30301" +175635,Lightning Charging Cable,1,14.95,03/17/19 16:00,"397 River St, Dallas, TX 75001" +175636,AA Batteries (4-pack),1,3.84,03/08/19 09:37,"938 Ridge St, Boston, MA 02215" +175637,AAA Batteries (4-pack),1,2.99,03/19/19 07:48,"633 Ridge St, New York City, NY 10001" +175638,AA Batteries (4-pack),1,3.84,03/31/19 18:34,"944 Main St, New York City, NY 10001" +175639,Apple Airpods Headphones,1,150,03/12/19 17:50,"342 Chestnut St, Los Angeles, CA 90001" +175640,27in FHD Monitor,1,149.99,03/28/19 16:16,"281 Spruce St, Portland, OR 97035" +175641,27in FHD Monitor,1,149.99,03/05/19 14:43,"270 Washington St, San Francisco, CA 94016" +175642,Vareebadd Phone,1,400,03/07/19 08:46,"971 8th St, Boston, MA 02215" +175642,USB-C Charging Cable,1,11.95,03/07/19 08:46,"971 8th St, Boston, MA 02215" +175643,Lightning Charging Cable,1,14.95,03/14/19 15:38,"89 Hill St, Boston, MA 02215" +175644,USB-C Charging Cable,1,11.95,03/03/19 23:34,"797 Center St, Seattle, WA 98101" +175645,AA Batteries (4-pack),1,3.84,03/19/19 05:58,"721 Church St, Dallas, TX 75001" +175646,USB-C Charging Cable,1,11.95,03/27/19 13:32,"733 Pine St, Atlanta, GA 30301" +175647,AAA Batteries (4-pack),1,2.99,03/22/19 15:54,"151 2nd St, Los Angeles, CA 90001" +175648,iPhone,1,700,03/30/19 11:14,"126 Madison St, Portland, OR 97035" +175649,iPhone,1,700,03/08/19 00:47,"322 2nd St, Los Angeles, CA 90001" +175649,AAA Batteries (4-pack),1,2.99,03/08/19 00:47,"322 2nd St, Los Angeles, CA 90001" +175650,27in 4K Gaming Monitor,1,389.99,03/09/19 20:12,"817 2nd St, Los Angeles, CA 90001" +175651,Wired Headphones,1,11.99,03/08/19 11:58,"644 12th St, Austin, TX 73301" +175652,Bose SoundSport Headphones,1,99.99,03/04/19 19:33,"667 13th St, Los Angeles, CA 90001" +175653,Flatscreen TV,1,300,03/19/19 12:34,"699 5th St, Los Angeles, CA 90001" +175654,Bose SoundSport Headphones,1,99.99,03/05/19 20:41,"450 Adams St, Seattle, WA 98101" +175655,USB-C Charging Cable,1,11.95,03/07/19 12:45,"680 West St, New York City, NY 10001" +175656,Wired Headphones,1,11.99,03/09/19 13:48,"521 Church St, New York City, NY 10001" +175657,27in 4K Gaming Monitor,1,389.99,03/08/19 15:35,"734 River St, Boston, MA 02215" +175658,Wired Headphones,1,11.99,03/07/19 13:10,"313 10th St, New York City, NY 10001" +175659,Flatscreen TV,1,300,03/14/19 20:42,"377 2nd St, Portland, OR 97035" +175660,27in 4K Gaming Monitor,1,389.99,03/10/19 08:29,"183 13th St, Atlanta, GA 30301" +175661,AAA Batteries (4-pack),1,2.99,03/03/19 14:25,"264 Cherry St, Atlanta, GA 30301" +175662,Lightning Charging Cable,1,14.95,03/13/19 06:55,"352 Spruce St, San Francisco, CA 94016" +175663,AAA Batteries (4-pack),1,2.99,03/12/19 14:13,"307 7th St, New York City, NY 10001" +175664,Wired Headphones,1,11.99,03/25/19 14:22,"671 1st St, San Francisco, CA 94016" +175665,Macbook Pro Laptop,1,1700,03/24/19 13:02,"877 9th St, San Francisco, CA 94016" +175666,USB-C Charging Cable,1,11.95,03/24/19 18:37,"638 Meadow St, Seattle, WA 98101" +175666,USB-C Charging Cable,1,11.95,03/24/19 18:37,"638 Meadow St, Seattle, WA 98101" +175667,Macbook Pro Laptop,1,1700,03/06/19 17:38,"295 Park St, San Francisco, CA 94016" +175668,Apple Airpods Headphones,1,150,03/04/19 15:19,"247 Jefferson St, San Francisco, CA 94016" +175669,Apple Airpods Headphones,1,150,03/23/19 16:37,"716 11th St, Portland, OR 97035" +175670,Apple Airpods Headphones,1,150,03/31/19 15:40,"961 Center St, Seattle, WA 98101" +175671,Lightning Charging Cable,1,14.95,03/10/19 16:52,"597 West St, San Francisco, CA 94016" +175672,Google Phone,1,600,03/26/19 17:59,"635 8th St, New York City, NY 10001" +175672,Wired Headphones,1,11.99,03/26/19 17:59,"635 8th St, New York City, NY 10001" +175673,ThinkPad Laptop,1,999.99,03/12/19 14:52,"598 Washington St, Los Angeles, CA 90001" +175674,AAA Batteries (4-pack),1,2.99,03/01/19 20:34,"614 Park St, Austin, TX 73301" +175675,Lightning Charging Cable,1,14.95,03/05/19 09:11,"171 Cedar St, Seattle, WA 98101" +175676,Lightning Charging Cable,2,14.95,03/15/19 13:12,"714 Church St, Los Angeles, CA 90001" +175677,Apple Airpods Headphones,1,150,03/09/19 08:40,"657 Meadow St, San Francisco, CA 94016" +175678,Apple Airpods Headphones,1,150,03/04/19 19:03,"59 Park St, Boston, MA 02215" +175679,27in FHD Monitor,1,149.99,03/11/19 11:48,"291 Johnson St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +175680,Apple Airpods Headphones,1,150,03/13/19 10:48,"825 Ridge St, San Francisco, CA 94016" +175681,Lightning Charging Cable,1,14.95,03/23/19 22:26,"267 14th St, San Francisco, CA 94016" +175682,27in 4K Gaming Monitor,1,389.99,03/18/19 21:31,"185 Sunset St, Portland, ME 04101" +175683,Lightning Charging Cable,1,14.95,03/23/19 04:03,"781 Jackson St, Los Angeles, CA 90001" +175684,Wired Headphones,1,11.99,03/26/19 14:28,"254 Adams St, San Francisco, CA 94016" +175685,Wired Headphones,1,11.99,03/03/19 00:44,"990 West St, Dallas, TX 75001" +175686,AAA Batteries (4-pack),1,2.99,03/29/19 13:17,"259 Elm St, San Francisco, CA 94016" +175687,20in Monitor,1,109.99,03/12/19 23:22,"931 6th St, San Francisco, CA 94016" +175688,Macbook Pro Laptop,1,1700,03/19/19 08:36,"832 Main St, Atlanta, GA 30301" +175689,Lightning Charging Cable,1,14.95,03/03/19 09:36,"706 Spruce St, San Francisco, CA 94016" +175690,Wired Headphones,1,11.99,03/29/19 04:03,"16 13th St, Boston, MA 02215" +175691,USB-C Charging Cable,1,11.95,03/21/19 06:56,"714 South St, Boston, MA 02215" +175692,USB-C Charging Cable,1,11.95,03/28/19 17:15,"103 7th St, San Francisco, CA 94016" +175693,iPhone,1,700,03/06/19 00:27,"976 Walnut St, San Francisco, CA 94016" +175694,USB-C Charging Cable,1,11.95,03/10/19 19:23,"501 Willow St, Los Angeles, CA 90001" +175695,USB-C Charging Cable,1,11.95,03/08/19 13:20,"136 6th St, Portland, ME 04101" +175696,AA Batteries (4-pack),1,3.84,03/08/19 20:22,"229 Center St, New York City, NY 10001" +175697,Flatscreen TV,1,300,03/11/19 22:34,"667 1st St, Seattle, WA 98101" +175698,AA Batteries (4-pack),2,3.84,03/15/19 23:21,"575 Lakeview St, Los Angeles, CA 90001" +175699,Lightning Charging Cable,1,14.95,03/04/19 12:15,"254 10th St, Los Angeles, CA 90001" +175700,27in FHD Monitor,1,149.99,03/13/19 12:58,"916 1st St, Boston, MA 02215" +175701,Lightning Charging Cable,1,14.95,03/07/19 20:21,"684 Church St, Dallas, TX 75001" +175702,iPhone,1,700,03/19/19 20:26,"691 Main St, Boston, MA 02215" +175703,Wired Headphones,1,11.99,03/26/19 06:43,"949 Center St, Los Angeles, CA 90001" +175704,Vareebadd Phone,1,400,03/03/19 21:02,"411 Hill St, Atlanta, GA 30301" +175705,Wired Headphones,1,11.99,03/05/19 13:43,"694 Jackson St, Austin, TX 73301" +175706,Bose SoundSport Headphones,1,99.99,03/09/19 10:36,"897 Park St, San Francisco, CA 94016" +175707,34in Ultrawide Monitor,1,379.99,03/29/19 20:56,"652 Lakeview St, Los Angeles, CA 90001" +175708,Macbook Pro Laptop,1,1700,03/31/19 19:14,"290 Dogwood St, Los Angeles, CA 90001" +175709,Google Phone,1,600,03/26/19 21:13,"173 10th St, New York City, NY 10001" +175710,ThinkPad Laptop,1,999.99,03/15/19 12:44,"522 River St, Los Angeles, CA 90001" +175711,Vareebadd Phone,1,400,03/12/19 16:05,"77 Spruce St, San Francisco, CA 94016" +175712,27in 4K Gaming Monitor,1,389.99,03/26/19 06:00,"892 7th St, Dallas, TX 75001" +175713,Bose SoundSport Headphones,1,99.99,03/23/19 13:46,"177 Hickory St, Boston, MA 02215" +175714,Lightning Charging Cable,1,14.95,03/11/19 11:47,"215 Cherry St, Los Angeles, CA 90001" +175715,27in FHD Monitor,1,149.99,03/05/19 19:19,"839 Dogwood St, Boston, MA 02215" +175716,LG Washing Machine,1,600.0,03/02/19 07:38,"292 Elm St, Dallas, TX 75001" +175717,AAA Batteries (4-pack),1,2.99,03/24/19 13:20,"115 Maple St, Boston, MA 02215" +175718,USB-C Charging Cable,1,11.95,03/10/19 10:38,"302 Washington St, San Francisco, CA 94016" +175719,20in Monitor,1,109.99,03/29/19 17:23,"307 Sunset St, Dallas, TX 75001" +175720,AAA Batteries (4-pack),1,2.99,03/14/19 06:38,"699 Walnut St, New York City, NY 10001" +175721,LG Washing Machine,1,600.0,03/15/19 10:03,"558 Park St, Seattle, WA 98101" +175722,AAA Batteries (4-pack),3,2.99,03/11/19 03:12,"249 Chestnut St, New York City, NY 10001" +175723,AAA Batteries (4-pack),1,2.99,03/07/19 19:46,"942 South St, San Francisco, CA 94016" +175724,Bose SoundSport Headphones,1,99.99,03/21/19 18:17,"835 Ridge St, San Francisco, CA 94016" +175725,Apple Airpods Headphones,1,150,03/22/19 21:19,"844 Willow St, Los Angeles, CA 90001" +175726,Bose SoundSport Headphones,1,99.99,04/01/19 00:20,"333 2nd St, Los Angeles, CA 90001" +,,,,, +175727,AA Batteries (4-pack),1,3.84,03/19/19 14:56,"768 11th St, New York City, NY 10001" +175728,USB-C Charging Cable,2,11.95,03/28/19 06:29,"426 Highland St, Boston, MA 02215" +175729,20in Monitor,1,109.99,03/13/19 00:32,"300 Ridge St, Boston, MA 02215" +175730,ThinkPad Laptop,1,999.99,03/21/19 19:33,"946 Lakeview St, Los Angeles, CA 90001" +175731,iPhone,1,700,03/10/19 11:48,"651 South St, Portland, OR 97035" +175732,Google Phone,1,600,03/22/19 18:17,"660 Dogwood St, San Francisco, CA 94016" +175733,34in Ultrawide Monitor,1,379.99,03/30/19 13:53,"343 7th St, New York City, NY 10001" +175734,USB-C Charging Cable,1,11.95,03/22/19 08:40,"191 Center St, Boston, MA 02215" +175735,Wired Headphones,1,11.99,03/03/19 20:13,"238 Dogwood St, Austin, TX 73301" +175736,AA Batteries (4-pack),1,3.84,03/15/19 22:15,"792 Forest St, Austin, TX 73301" +175737,20in Monitor,1,109.99,03/14/19 19:51,"426 Elm St, Portland, OR 97035" +175738,20in Monitor,1,109.99,03/31/19 10:47,"266 Center St, San Francisco, CA 94016" +175739,ThinkPad Laptop,1,999.99,03/01/19 22:14,"436 4th St, San Francisco, CA 94016" +175740,20in Monitor,1,109.99,03/03/19 12:57,"665 Chestnut St, San Francisco, CA 94016" +175741,Apple Airpods Headphones,1,150,03/24/19 20:48,"303 Main St, New York City, NY 10001" +175742,Google Phone,1,600,03/27/19 17:33,"510 Jefferson St, Los Angeles, CA 90001" +175742,USB-C Charging Cable,1,11.95,03/27/19 17:33,"510 Jefferson St, Los Angeles, CA 90001" +175743,Lightning Charging Cable,1,14.95,03/15/19 10:07,"394 Cedar St, New York City, NY 10001" +175744,Wired Headphones,1,11.99,03/03/19 18:51,"190 9th St, Atlanta, GA 30301" +175745,AAA Batteries (4-pack),1,2.99,03/24/19 09:26,"179 Highland St, Los Angeles, CA 90001" +175746,AAA Batteries (4-pack),3,2.99,03/17/19 15:11,"962 6th St, Boston, MA 02215" +175747,Flatscreen TV,1,300,03/05/19 19:23,"59 Dogwood St, Austin, TX 73301" +175748,20in Monitor,1,109.99,03/03/19 15:11,"584 Dogwood St, Boston, MA 02215" +175749,34in Ultrawide Monitor,2,379.99,03/24/19 12:08,"302 North St, Boston, MA 02215" +175750,Lightning Charging Cable,1,14.95,03/19/19 13:49,"354 5th St, New York City, NY 10001" +175751,USB-C Charging Cable,1,11.95,03/02/19 15:03,"986 South St, Portland, OR 97035" +175752,AA Batteries (4-pack),2,3.84,03/25/19 20:12,"291 Ridge St, Portland, OR 97035" +175753,USB-C Charging Cable,1,11.95,03/09/19 14:56,"773 Sunset St, Seattle, WA 98101" +175754,Apple Airpods Headphones,1,150,03/01/19 14:51,"6 Hickory St, Dallas, TX 75001" +175755,ThinkPad Laptop,1,999.99,03/26/19 22:31,"188 12th St, Seattle, WA 98101" +175756,Wired Headphones,1,11.99,03/15/19 05:53,"630 Forest St, San Francisco, CA 94016" +175757,Google Phone,1,600,03/21/19 09:37,"419 Church St, Los Angeles, CA 90001" +175758,Apple Airpods Headphones,1,150,03/04/19 21:58,"660 Hickory St, San Francisco, CA 94016" +175759,AAA Batteries (4-pack),1,2.99,03/09/19 14:13,"376 Spruce St, San Francisco, CA 94016" +175760,Wired Headphones,1,11.99,03/14/19 22:28,"316 Willow St, New York City, NY 10001" +175761,USB-C Charging Cable,1,11.95,03/19/19 19:55,"875 Elm St, Austin, TX 73301" +175762,AAA Batteries (4-pack),4,2.99,03/03/19 18:36,"719 Center St, San Francisco, CA 94016" +175763,Bose SoundSport Headphones,1,99.99,03/16/19 08:22,"902 Center St, Atlanta, GA 30301" +175764,USB-C Charging Cable,1,11.95,03/04/19 15:30,"325 Center St, New York City, NY 10001" +175765,AA Batteries (4-pack),1,3.84,03/17/19 20:45,"377 Center St, San Francisco, CA 94016" +175766,Bose SoundSport Headphones,1,99.99,03/02/19 11:26,"167 Dogwood St, Atlanta, GA 30301" +175767,USB-C Charging Cable,1,11.95,03/03/19 15:41,"691 Elm St, Los Angeles, CA 90001" +175768,AA Batteries (4-pack),1,3.84,03/23/19 00:56,"505 14th St, San Francisco, CA 94016" +175769,USB-C Charging Cable,1,11.95,03/02/19 17:55,"91 Washington St, Los Angeles, CA 90001" +175770,ThinkPad Laptop,1,999.99,03/13/19 07:21,"780 Lincoln St, Los Angeles, CA 90001" +175771,AA Batteries (4-pack),2,3.84,03/29/19 09:10,"534 2nd St, Portland, ME 04101" +175772,34in Ultrawide Monitor,1,379.99,03/29/19 18:53,"126 Jefferson St, Austin, TX 73301" +175773,Vareebadd Phone,1,400,03/20/19 16:41,"175 Highland St, Boston, MA 02215" +175774,Bose SoundSport Headphones,1,99.99,03/24/19 09:00,"550 River St, Boston, MA 02215" +175775,ThinkPad Laptop,1,999.99,03/29/19 22:47,"757 Dogwood St, San Francisco, CA 94016" +175776,Lightning Charging Cable,1,14.95,03/04/19 10:47,"863 Johnson St, Seattle, WA 98101" +175777,34in Ultrawide Monitor,1,379.99,03/11/19 17:20,"965 9th St, Boston, MA 02215" +175778,USB-C Charging Cable,1,11.95,03/04/19 08:30,"582 7th St, Los Angeles, CA 90001" +175779,Apple Airpods Headphones,1,150,03/05/19 19:20,"964 Cherry St, New York City, NY 10001" +175780,Apple Airpods Headphones,1,150,03/25/19 01:03,"260 8th St, Boston, MA 02215" +175781,AA Batteries (4-pack),1,3.84,03/15/19 07:40,"315 13th St, San Francisco, CA 94016" +175782,Bose SoundSport Headphones,1,99.99,03/11/19 14:43,"23 9th St, Portland, OR 97035" +175783,AA Batteries (4-pack),1,3.84,03/03/19 09:50,"233 10th St, Dallas, TX 75001" +175784,USB-C Charging Cable,1,11.95,03/03/19 21:57,"766 Adams St, San Francisco, CA 94016" +175785,Macbook Pro Laptop,1,1700,03/08/19 19:27,"590 2nd St, Los Angeles, CA 90001" +175786,AA Batteries (4-pack),4,3.84,03/24/19 20:42,"933 Meadow St, San Francisco, CA 94016" +175787,Flatscreen TV,1,300,03/14/19 17:43,"149 Hill St, Los Angeles, CA 90001" +175788,AA Batteries (4-pack),4,3.84,03/30/19 09:47,"540 6th St, San Francisco, CA 94016" +175789,LG Washing Machine,1,600.0,03/13/19 13:46,"17 1st St, Seattle, WA 98101" +175790,Macbook Pro Laptop,1,1700,03/13/19 16:03,"853 Walnut St, Seattle, WA 98101" +175791,Flatscreen TV,1,300,03/05/19 16:09,"552 Forest St, New York City, NY 10001" +175792,Bose SoundSport Headphones,1,99.99,03/21/19 16:12,"488 Jefferson St, San Francisco, CA 94016" +175793,Bose SoundSport Headphones,1,99.99,03/12/19 18:15,"417 Wilson St, San Francisco, CA 94016" +175794,USB-C Charging Cable,2,11.95,03/30/19 11:33,"605 Cherry St, Atlanta, GA 30301" +175795,Apple Airpods Headphones,2,150,03/21/19 11:47,"703 North St, San Francisco, CA 94016" +175796,Lightning Charging Cable,1,14.95,03/31/19 11:35,"443 Cedar St, Atlanta, GA 30301" +175797,Wired Headphones,1,11.99,03/15/19 13:16,"906 Sunset St, Boston, MA 02215" +175798,AA Batteries (4-pack),1,3.84,03/11/19 06:48,"89 Dogwood St, Portland, OR 97035" +175799,Lightning Charging Cable,1,14.95,03/12/19 14:45,"976 Jackson St, Seattle, WA 98101" +175800,AA Batteries (4-pack),1,3.84,03/24/19 20:11,"656 Spruce St, Portland, OR 97035" +175801,27in FHD Monitor,1,149.99,03/27/19 13:26,"642 Wilson St, Los Angeles, CA 90001" +175802,Bose SoundSport Headphones,1,99.99,03/28/19 12:06,"112 Lincoln St, Los Angeles, CA 90001" +175802,ThinkPad Laptop,1,999.99,03/28/19 12:06,"112 Lincoln St, Los Angeles, CA 90001" +175803,AA Batteries (4-pack),2,3.84,03/04/19 10:38,"511 Johnson St, San Francisco, CA 94016" +175804,27in FHD Monitor,1,149.99,03/20/19 16:40,"600 Lake St, Dallas, TX 75001" +175805,Wired Headphones,1,11.99,03/02/19 18:19,"402 West St, Seattle, WA 98101" +175806,AAA Batteries (4-pack),1,2.99,03/05/19 16:52,"325 Walnut St, Dallas, TX 75001" +175807,USB-C Charging Cable,1,11.95,03/22/19 10:48,"468 Hickory St, Boston, MA 02215" +175808,Wired Headphones,1,11.99,03/18/19 14:26,"87 13th St, Atlanta, GA 30301" +175809,Bose SoundSport Headphones,1,99.99,03/13/19 15:34,"329 Lake St, Boston, MA 02215" +175810,AAA Batteries (4-pack),1,2.99,03/31/19 22:02,"44 Ridge St, Seattle, WA 98101" +175811,34in Ultrawide Monitor,1,379.99,03/31/19 13:34,"305 Adams St, San Francisco, CA 94016" +175812,Wired Headphones,1,11.99,03/19/19 07:44,"825 Elm St, San Francisco, CA 94016" +175813,34in Ultrawide Monitor,1,379.99,03/26/19 10:01,"126 Lincoln St, New York City, NY 10001" +175814,AA Batteries (4-pack),1,3.84,03/31/19 09:39,"52 Lake St, Boston, MA 02215" +175815,Wired Headphones,1,11.99,03/28/19 14:40,"10 9th St, San Francisco, CA 94016" +175816,Lightning Charging Cable,1,14.95,03/30/19 12:56,"525 Park St, New York City, NY 10001" +175817,20in Monitor,1,109.99,03/28/19 13:16,"156 Meadow St, Austin, TX 73301" +175818,Lightning Charging Cable,1,14.95,03/14/19 08:43,"648 Lakeview St, Los Angeles, CA 90001" +175819,Lightning Charging Cable,1,14.95,03/22/19 16:48,"561 Forest St, Boston, MA 02215" +175820,Lightning Charging Cable,1,14.95,03/27/19 02:00,"504 Sunset St, Austin, TX 73301" +175821,USB-C Charging Cable,1,11.95,03/02/19 20:31,"485 4th St, Los Angeles, CA 90001" +175822,27in FHD Monitor,1,149.99,03/19/19 20:41,"330 West St, Los Angeles, CA 90001" +175823,Lightning Charging Cable,1,14.95,03/20/19 19:42,"583 Forest St, New York City, NY 10001" +175824,AAA Batteries (4-pack),1,2.99,03/15/19 10:03,"273 Willow St, Seattle, WA 98101" +175825,34in Ultrawide Monitor,1,379.99,03/18/19 15:34,"579 6th St, Los Angeles, CA 90001" +175826,Flatscreen TV,1,300,03/01/19 21:55,"682 Madison St, Boston, MA 02215" +175827,27in FHD Monitor,1,149.99,03/02/19 16:05,"444 Walnut St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +175828,Wired Headphones,1,11.99,03/29/19 02:02,"891 1st St, New York City, NY 10001" +175829,27in 4K Gaming Monitor,1,389.99,03/10/19 18:03,"958 Washington St, Atlanta, GA 30301" +175830,Wired Headphones,1,11.99,03/13/19 13:23,"69 Adams St, San Francisco, CA 94016" +175831,Lightning Charging Cable,1,14.95,03/12/19 17:59,"227 7th St, Boston, MA 02215" +175832,Lightning Charging Cable,1,14.95,03/12/19 13:31,"199 Pine St, San Francisco, CA 94016" +175833,Google Phone,1,600,03/14/19 20:54,"146 7th St, Portland, OR 97035" +175834,USB-C Charging Cable,1,11.95,03/03/19 11:04,"90 Forest St, Boston, MA 02215" +175835,Google Phone,1,600,03/11/19 19:07,"812 Forest St, New York City, NY 10001" +175836,Wired Headphones,1,11.99,03/28/19 17:28,"305 Ridge St, Dallas, TX 75001" +175837,AA Batteries (4-pack),1,3.84,03/27/19 22:45,"376 8th St, Atlanta, GA 30301" +175838,Apple Airpods Headphones,1,150,03/23/19 06:08,"115 Hickory St, Los Angeles, CA 90001" +175839,USB-C Charging Cable,1,11.95,03/21/19 13:41,"378 Church St, Los Angeles, CA 90001" +175840,USB-C Charging Cable,1,11.95,03/23/19 13:12,"189 North St, Atlanta, GA 30301" +175841,Wired Headphones,1,11.99,03/23/19 16:27,"870 Lincoln St, Los Angeles, CA 90001" +175842,Wired Headphones,1,11.99,03/19/19 16:56,"758 Hill St, Atlanta, GA 30301" +175843,USB-C Charging Cable,1,11.95,03/25/19 13:30,"737 14th St, Seattle, WA 98101" +175844,Bose SoundSport Headphones,1,99.99,03/27/19 20:27,"725 Adams St, Boston, MA 02215" +175845,Vareebadd Phone,1,400,03/30/19 01:09,"153 Maple St, Portland, ME 04101" +175846,iPhone,1,700,03/16/19 11:09,"602 12th St, New York City, NY 10001" +175847,Apple Airpods Headphones,1,150,03/13/19 18:57,"963 11th St, San Francisco, CA 94016" +175848,Wired Headphones,1,11.99,03/17/19 15:52,"980 River St, San Francisco, CA 94016" +175849,AAA Batteries (4-pack),1,2.99,03/09/19 11:53,"402 Willow St, Dallas, TX 75001" +175850,AAA Batteries (4-pack),2,2.99,03/17/19 20:37,"188 1st St, San Francisco, CA 94016" +175851,Apple Airpods Headphones,1,150,03/19/19 05:37,"701 Church St, San Francisco, CA 94016" +175852,AAA Batteries (4-pack),1,2.99,03/10/19 21:30,"166 Maple St, Los Angeles, CA 90001" +175853,Bose SoundSport Headphones,2,99.99,03/16/19 16:54,"840 9th St, Boston, MA 02215" +175854,AA Batteries (4-pack),1,3.84,03/14/19 14:14,"969 Hickory St, New York City, NY 10001" +175855,ThinkPad Laptop,1,999.99,03/26/19 00:16,"207 Jackson St, Los Angeles, CA 90001" +175856,AA Batteries (4-pack),1,3.84,03/04/19 19:22,"893 River St, Atlanta, GA 30301" +175857,iPhone,1,700,03/28/19 23:28,"694 Jackson St, Boston, MA 02215" +175858,Apple Airpods Headphones,1,150,03/28/19 11:32,"26 Cedar St, San Francisco, CA 94016" +175859,Wired Headphones,1,11.99,03/10/19 17:16,"791 Johnson St, San Francisco, CA 94016" +175860,AA Batteries (4-pack),1,3.84,03/31/19 09:58,"482 8th St, Boston, MA 02215" +175861,Flatscreen TV,1,300,03/10/19 23:22,"917 Center St, San Francisco, CA 94016" +175862,USB-C Charging Cable,1,11.95,03/03/19 10:59,"784 Center St, San Francisco, CA 94016" +175862,27in 4K Gaming Monitor,1,389.99,03/03/19 10:59,"784 Center St, San Francisco, CA 94016" +175863,27in FHD Monitor,1,149.99,03/21/19 14:04,"372 Forest St, New York City, NY 10001" +175864,Apple Airpods Headphones,1,150,03/25/19 14:25,"476 6th St, Dallas, TX 75001" +175865,Bose SoundSport Headphones,1,99.99,03/23/19 21:56,"313 Lincoln St, Dallas, TX 75001" +175866,AA Batteries (4-pack),1,3.84,03/09/19 17:10,"791 7th St, Boston, MA 02215" +175867,Google Phone,1,600,03/16/19 11:47,"614 Park St, New York City, NY 10001" +175867,USB-C Charging Cable,1,11.95,03/16/19 11:47,"614 Park St, New York City, NY 10001" +175868,AAA Batteries (4-pack),2,2.99,03/10/19 14:06,"580 Center St, San Francisco, CA 94016" +175869,AA Batteries (4-pack),1,3.84,03/30/19 17:54,"394 1st St, San Francisco, CA 94016" +175870,Lightning Charging Cable,1,14.95,03/27/19 12:12,"307 Main St, Boston, MA 02215" +175871,Apple Airpods Headphones,1,150,03/30/19 22:36,"786 Chestnut St, Portland, OR 97035" +175872,Wired Headphones,1,11.99,03/02/19 21:10,"237 Lake St, New York City, NY 10001" +175873,USB-C Charging Cable,1,11.95,03/21/19 10:43,"893 9th St, Dallas, TX 75001" +175874,USB-C Charging Cable,1,11.95,03/05/19 11:07,"433 4th St, New York City, NY 10001" +175875,Lightning Charging Cable,1,14.95,03/25/19 21:52,"344 8th St, San Francisco, CA 94016" +175876,AA Batteries (4-pack),1,3.84,03/30/19 18:40,"231 Meadow St, Atlanta, GA 30301" +175877,AA Batteries (4-pack),1,3.84,03/04/19 19:23,"361 River St, Dallas, TX 75001" +175878,ThinkPad Laptop,1,999.99,03/23/19 06:33,"691 Lincoln St, San Francisco, CA 94016" +175879,AA Batteries (4-pack),1,3.84,03/17/19 19:30,"729 Washington St, Austin, TX 73301" +175880,AA Batteries (4-pack),1,3.84,03/06/19 08:08,"179 11th St, San Francisco, CA 94016" +175881,27in 4K Gaming Monitor,1,389.99,03/26/19 10:36,"84 West St, San Francisco, CA 94016" +175882,Wired Headphones,1,11.99,03/28/19 19:55,"267 Church St, San Francisco, CA 94016" +175883,USB-C Charging Cable,1,11.95,03/22/19 08:05,"848 14th St, Dallas, TX 75001" +175884,Bose SoundSport Headphones,1,99.99,03/06/19 15:30,"151 13th St, Dallas, TX 75001" +175885,Macbook Pro Laptop,1,1700,03/07/19 12:29,"843 Lakeview St, Austin, TX 73301" +175886,Flatscreen TV,1,300,03/18/19 15:04,"132 Meadow St, Boston, MA 02215" +175887,AAA Batteries (4-pack),1,2.99,03/23/19 14:37,"365 Lincoln St, New York City, NY 10001" +175888,Macbook Pro Laptop,1,1700,03/24/19 10:10,"188 Pine St, Portland, OR 97035" +175889,Bose SoundSport Headphones,1,99.99,03/26/19 09:03,"556 Elm St, Los Angeles, CA 90001" +175890,USB-C Charging Cable,1,11.95,03/09/19 21:03,"385 Willow St, Austin, TX 73301" +175891,27in 4K Gaming Monitor,1,389.99,03/25/19 13:42,"753 1st St, Los Angeles, CA 90001" +175892,Google Phone,1,600,03/21/19 19:06,"87 Washington St, Atlanta, GA 30301" +175893,AA Batteries (4-pack),1,3.84,03/09/19 21:34,"94 Elm St, Dallas, TX 75001" +175894,Lightning Charging Cable,1,14.95,03/22/19 14:27,"950 Jackson St, Los Angeles, CA 90001" +175895,Lightning Charging Cable,1,14.95,03/27/19 23:49,"458 Main St, Los Angeles, CA 90001" +175896,Apple Airpods Headphones,1,150,03/30/19 15:50,"878 Madison St, Seattle, WA 98101" +175897,AA Batteries (4-pack),1,3.84,03/19/19 09:20,"798 Forest St, San Francisco, CA 94016" +175898,Apple Airpods Headphones,1,150,03/30/19 13:08,"522 7th St, Atlanta, GA 30301" +175899,AA Batteries (4-pack),2,3.84,03/14/19 12:43,"909 9th St, Portland, ME 04101" +175900,Lightning Charging Cable,1,14.95,03/05/19 14:23,"664 Jackson St, San Francisco, CA 94016" +175901,Macbook Pro Laptop,1,1700,03/05/19 14:14,"50 12th St, New York City, NY 10001" +175902,27in 4K Gaming Monitor,1,389.99,03/18/19 15:43,"642 Forest St, Atlanta, GA 30301" +175903,Wired Headphones,1,11.99,03/31/19 12:07,"172 2nd St, Los Angeles, CA 90001" +175904,AAA Batteries (4-pack),1,2.99,03/18/19 20:45,"912 Center St, Atlanta, GA 30301" +175905,Vareebadd Phone,1,400,03/17/19 17:58,"744 Willow St, Austin, TX 73301" +175906,AA Batteries (4-pack),2,3.84,03/17/19 10:32,"462 Wilson St, San Francisco, CA 94016" +175907,Apple Airpods Headphones,1,150,03/30/19 00:06,"863 12th St, Boston, MA 02215" +175908,27in FHD Monitor,1,149.99,03/22/19 20:25,"890 Madison St, Dallas, TX 75001" +175909,27in FHD Monitor,2,149.99,03/01/19 17:40,"198 Lake St, Los Angeles, CA 90001" +175910,ThinkPad Laptop,1,999.99,03/10/19 22:27,"729 12th St, Portland, OR 97035" +175911,Lightning Charging Cable,1,14.95,03/09/19 19:12,"160 Johnson St, Atlanta, GA 30301" +175912,Wired Headphones,1,11.99,03/03/19 12:57,"247 Maple St, San Francisco, CA 94016" +175913,AAA Batteries (4-pack),1,2.99,03/29/19 12:28,"759 1st St, San Francisco, CA 94016" +175914,Bose SoundSport Headphones,1,99.99,03/02/19 19:27,"100 Meadow St, Boston, MA 02215" +175915,34in Ultrawide Monitor,1,379.99,03/22/19 19:10,"264 Spruce St, Portland, OR 97035" +175916,AA Batteries (4-pack),1,3.84,03/31/19 22:37,"886 Chestnut St, Boston, MA 02215" +175917,Apple Airpods Headphones,1,150,03/12/19 06:27,"248 West St, Los Angeles, CA 90001" +175918,USB-C Charging Cable,1,11.95,03/22/19 22:01,"201 14th St, New York City, NY 10001" +175919,Apple Airpods Headphones,1,150,03/24/19 21:31,"252 Pine St, New York City, NY 10001" +175920,USB-C Charging Cable,1,11.95,03/31/19 17:43,"874 West St, Boston, MA 02215" +175921,34in Ultrawide Monitor,1,379.99,03/27/19 13:10,"979 4th St, Dallas, TX 75001" +175922,34in Ultrawide Monitor,1,379.99,03/30/19 18:59,"341 Madison St, Boston, MA 02215" +175923,AAA Batteries (4-pack),1,2.99,03/26/19 13:25,"930 9th St, New York City, NY 10001" +175924,Apple Airpods Headphones,1,150,03/17/19 18:10,"740 Washington St, New York City, NY 10001" +175925,Lightning Charging Cable,1,14.95,03/10/19 20:41,"15 Washington St, Atlanta, GA 30301" +175926,Lightning Charging Cable,1,14.95,03/06/19 08:59,"492 Jefferson St, San Francisco, CA 94016" +175927,AAA Batteries (4-pack),1,2.99,03/04/19 19:40,"404 Walnut St, Dallas, TX 75001" +175928,27in 4K Gaming Monitor,1,389.99,03/22/19 09:18,"235 Cherry St, Los Angeles, CA 90001" +175929,USB-C Charging Cable,1,11.95,03/26/19 23:28,"456 2nd St, Portland, OR 97035" +175930,Flatscreen TV,1,300,03/25/19 19:15,"586 4th St, Dallas, TX 75001" +175931,Lightning Charging Cable,1,14.95,03/13/19 14:45,"790 West St, Seattle, WA 98101" +175932,Apple Airpods Headphones,1,150,03/16/19 10:52,"721 Maple St, Los Angeles, CA 90001" +175933,AA Batteries (4-pack),2,3.84,03/01/19 20:49,"514 1st St, Dallas, TX 75001" +175934,20in Monitor,1,109.99,03/09/19 20:07,"889 Pine St, Los Angeles, CA 90001" +175935,ThinkPad Laptop,1,999.99,03/13/19 18:04,"249 11th St, Atlanta, GA 30301" +175936,Lightning Charging Cable,1,14.95,03/26/19 19:08,"219 Washington St, San Francisco, CA 94016" +175937,ThinkPad Laptop,1,999.99,03/13/19 14:51,"35 West St, San Francisco, CA 94016" +175938,Apple Airpods Headphones,1,150,03/23/19 11:50,"285 Walnut St, Portland, ME 04101" +175939,Wired Headphones,1,11.99,03/20/19 01:58,"465 Church St, San Francisco, CA 94016" +175940,AAA Batteries (4-pack),1,2.99,03/01/19 23:19,"176 Center St, San Francisco, CA 94016" +175941,AA Batteries (4-pack),1,3.84,03/14/19 23:11,"104 North St, Seattle, WA 98101" +175942,Vareebadd Phone,1,400,03/05/19 22:46,"162 Meadow St, San Francisco, CA 94016" +175943,Lightning Charging Cable,1,14.95,03/06/19 07:11,"2 Ridge St, Seattle, WA 98101" +175944,27in FHD Monitor,1,149.99,03/28/19 13:41,"825 Madison St, Los Angeles, CA 90001" +175945,Macbook Pro Laptop,1,1700,03/28/19 11:07,"772 South St, Los Angeles, CA 90001" +175946,Lightning Charging Cable,1,14.95,03/31/19 09:28,"981 2nd St, San Francisco, CA 94016" +175947,Bose SoundSport Headphones,1,99.99,03/03/19 12:32,"601 Maple St, Los Angeles, CA 90001" +175948,Lightning Charging Cable,1,14.95,03/22/19 17:49,"477 Cedar St, Los Angeles, CA 90001" +175949,Lightning Charging Cable,1,14.95,03/05/19 14:54,"653 Lake St, Boston, MA 02215" +175950,USB-C Charging Cable,1,11.95,03/06/19 13:04,"604 Willow St, Los Angeles, CA 90001" +175951,USB-C Charging Cable,1,11.95,03/08/19 16:31,"573 Lincoln St, New York City, NY 10001" +175952,USB-C Charging Cable,1,11.95,03/31/19 13:21,"347 Lakeview St, Boston, MA 02215" +175953,USB-C Charging Cable,1,11.95,03/18/19 11:28,"138 Dogwood St, Boston, MA 02215" +175954,AAA Batteries (4-pack),2,2.99,03/29/19 18:54,"751 4th St, New York City, NY 10001" +175955,AA Batteries (4-pack),2,3.84,03/14/19 08:58,"293 11th St, Los Angeles, CA 90001" +175956,Bose SoundSport Headphones,1,99.99,03/27/19 08:26,"279 Meadow St, New York City, NY 10001" +175957,iPhone,1,700,03/11/19 12:19,"814 South St, Austin, TX 73301" +175957,Apple Airpods Headphones,1,150,03/11/19 12:19,"814 South St, Austin, TX 73301" +175958,27in 4K Gaming Monitor,1,389.99,03/05/19 19:52,"39 4th St, Boston, MA 02215" +175959,27in 4K Gaming Monitor,1,389.99,03/28/19 14:00,"187 Wilson St, New York City, NY 10001" +175960,Apple Airpods Headphones,1,150,03/31/19 18:54,"613 Elm St, Seattle, WA 98101" +175961,Flatscreen TV,1,300,03/19/19 10:52,"149 10th St, San Francisco, CA 94016" +175962,AAA Batteries (4-pack),2,2.99,03/24/19 20:29,"13 Highland St, Seattle, WA 98101" +175963,34in Ultrawide Monitor,1,379.99,03/09/19 16:48,"925 Spruce St, Austin, TX 73301" +175964,Bose SoundSport Headphones,1,99.99,03/25/19 15:37,"380 Forest St, Los Angeles, CA 90001" +175965,Apple Airpods Headphones,1,150,03/26/19 17:34,"917 West St, New York City, NY 10001" +175966,34in Ultrawide Monitor,1,379.99,03/13/19 10:15,"457 North St, Dallas, TX 75001" +175967,Lightning Charging Cable,1,14.95,03/20/19 08:07,"307 Spruce St, Dallas, TX 75001" +175968,Bose SoundSport Headphones,1,99.99,03/26/19 15:38,"600 Pine St, New York City, NY 10001" +175969,USB-C Charging Cable,1,11.95,03/10/19 09:32,"372 Maple St, Boston, MA 02215" +175970,34in Ultrawide Monitor,1,379.99,03/23/19 18:20,"653 Church St, New York City, NY 10001" +175971,AA Batteries (4-pack),1,3.84,03/27/19 12:49,"588 Main St, New York City, NY 10001" +175972,Wired Headphones,1,11.99,03/01/19 16:57,"242 Main St, Atlanta, GA 30301" +175973,Lightning Charging Cable,1,14.95,03/16/19 11:03,"879 Madison St, San Francisco, CA 94016" +175974,Wired Headphones,1,11.99,03/09/19 07:47,"783 1st St, San Francisco, CA 94016" +175975,Apple Airpods Headphones,1,150,03/31/19 17:38,"811 Walnut St, Austin, TX 73301" +175976,34in Ultrawide Monitor,1,379.99,03/29/19 11:38,"199 Lincoln St, Los Angeles, CA 90001" +175977,Lightning Charging Cable,1,14.95,03/15/19 13:10,"576 Johnson St, Portland, OR 97035" +175978,Lightning Charging Cable,1,14.95,03/26/19 19:15,"343 River St, Dallas, TX 75001" +175979,27in 4K Gaming Monitor,1,389.99,03/11/19 15:49,"812 10th St, Austin, TX 73301" +175980,USB-C Charging Cable,1,11.95,03/14/19 22:30,"994 Park St, San Francisco, CA 94016" +175981,Lightning Charging Cable,1,14.95,03/29/19 18:03,"666 Lincoln St, Atlanta, GA 30301" +175982,AAA Batteries (4-pack),1,2.99,03/31/19 22:02,"803 Lake St, New York City, NY 10001" +175983,Bose SoundSport Headphones,1,99.99,03/18/19 19:46,"972 Forest St, Seattle, WA 98101" +175984,Bose SoundSport Headphones,1,99.99,03/31/19 18:54,"84 6th St, Portland, OR 97035" +175985,Flatscreen TV,1,300,03/01/19 13:55,"803 9th St, Boston, MA 02215" +175986,Lightning Charging Cable,1,14.95,03/18/19 10:26,"312 Sunset St, San Francisco, CA 94016" +175987,20in Monitor,1,109.99,03/23/19 17:51,"230 9th St, Seattle, WA 98101" +175988,Wired Headphones,1,11.99,03/06/19 12:37,"696 4th St, San Francisco, CA 94016" +175989,AA Batteries (4-pack),1,3.84,03/03/19 18:39,"780 12th St, Austin, TX 73301" +175990,27in 4K Gaming Monitor,1,389.99,03/12/19 09:51,"215 Chestnut St, San Francisco, CA 94016" +175991,Wired Headphones,1,11.99,03/09/19 11:20,"918 South St, Los Angeles, CA 90001" +175992,Bose SoundSport Headphones,1,99.99,03/21/19 21:48,"243 Lake St, San Francisco, CA 94016" +175993,34in Ultrawide Monitor,1,379.99,03/06/19 16:36,"60 Church St, Atlanta, GA 30301" +175994,AA Batteries (4-pack),1,3.84,03/13/19 09:23,"520 6th St, New York City, NY 10001" +175995,USB-C Charging Cable,1,11.95,03/25/19 23:24,"694 5th St, Dallas, TX 75001" +175996,Lightning Charging Cable,1,14.95,03/20/19 18:05,"482 12th St, San Francisco, CA 94016" +175997,Google Phone,1,600,03/27/19 18:46,"36 Center St, Atlanta, GA 30301" +175997,USB-C Charging Cable,1,11.95,03/27/19 18:46,"36 Center St, Atlanta, GA 30301" +175998,Bose SoundSport Headphones,1,99.99,03/29/19 12:22,"950 Meadow St, Boston, MA 02215" +175999,Lightning Charging Cable,1,14.95,03/28/19 22:38,"298 Lake St, San Francisco, CA 94016" +176000,Apple Airpods Headphones,1,150,03/20/19 02:59,"89 4th St, Los Angeles, CA 90001" +176001,USB-C Charging Cable,1,11.95,03/08/19 12:26,"50 8th St, Dallas, TX 75001" +176002,Wired Headphones,1,11.99,03/08/19 09:32,"771 Spruce St, Seattle, WA 98101" +176003,AA Batteries (4-pack),1,3.84,03/26/19 20:58,"420 11th St, Dallas, TX 75001" +176004,34in Ultrawide Monitor,1,379.99,03/27/19 21:03,"995 Cedar St, Los Angeles, CA 90001" +176005,34in Ultrawide Monitor,1,379.99,03/13/19 16:12,"416 Hill St, New York City, NY 10001" +176006,USB-C Charging Cable,1,11.95,03/01/19 19:00,"743 Spruce St, Boston, MA 02215" +176007,Wired Headphones,1,11.99,03/07/19 19:55,"939 River St, Dallas, TX 75001" +176008,AA Batteries (4-pack),3,3.84,03/01/19 13:35,"909 5th St, Los Angeles, CA 90001" +176009,AA Batteries (4-pack),2,3.84,03/11/19 01:29,"133 11th St, Dallas, TX 75001" +176010,34in Ultrawide Monitor,1,379.99,03/15/19 10:53,"481 Washington St, Los Angeles, CA 90001" +176011,Bose SoundSport Headphones,1,99.99,03/24/19 11:34,"663 5th St, San Francisco, CA 94016" +176012,AAA Batteries (4-pack),4,2.99,03/17/19 12:51,"359 Park St, Boston, MA 02215" +176013,Wired Headphones,1,11.99,03/27/19 10:59,"71 West St, San Francisco, CA 94016" +176014,Bose SoundSport Headphones,1,99.99,03/26/19 16:20,"28 Spruce St, Boston, MA 02215" +176015,Wired Headphones,1,11.99,03/01/19 10:32,"408 Hill St, San Francisco, CA 94016" +176016,Apple Airpods Headphones,1,150,03/25/19 10:58,"598 Hill St, Boston, MA 02215" +176017,Lightning Charging Cable,1,14.95,03/25/19 11:13,"488 Center St, San Francisco, CA 94016" +176018,AAA Batteries (4-pack),1,2.99,03/10/19 20:54,"791 Hill St, Austin, TX 73301" +176019,AA Batteries (4-pack),1,3.84,03/02/19 16:23,"783 Jefferson St, Los Angeles, CA 90001" +176020,Wired Headphones,1,11.99,03/19/19 10:43,"612 Madison St, Portland, OR 97035" +176021,27in FHD Monitor,1,149.99,03/28/19 09:23,"949 1st St, San Francisco, CA 94016" +176022,Lightning Charging Cable,1,14.95,03/15/19 12:20,"100 Willow St, Seattle, WA 98101" +176023,34in Ultrawide Monitor,1,379.99,03/14/19 21:17,"932 2nd St, Dallas, TX 75001" +176024,Bose SoundSport Headphones,1,99.99,03/13/19 23:50,"962 Spruce St, San Francisco, CA 94016" +176025,27in FHD Monitor,1,149.99,03/01/19 15:52,"440 Wilson St, Los Angeles, CA 90001" +176026,Flatscreen TV,1,300,03/17/19 09:05,"287 Jackson St, Los Angeles, CA 90001" +176027,Google Phone,1,600,03/31/19 18:07,"2 Washington St, Los Angeles, CA 90001" +176028,Wired Headphones,2,11.99,03/13/19 16:37,"273 4th St, Seattle, WA 98101" +176029,iPhone,1,700,03/21/19 14:34,"759 Meadow St, New York City, NY 10001" +176029,Lightning Charging Cable,1,14.95,03/21/19 14:34,"759 Meadow St, New York City, NY 10001" +176030,AA Batteries (4-pack),1,3.84,03/19/19 14:34,"605 Dogwood St, Boston, MA 02215" +176031,Wired Headphones,1,11.99,03/31/19 22:23,"728 Johnson St, Boston, MA 02215" +176032,AA Batteries (4-pack),1,3.84,03/12/19 00:18,"437 Jackson St, Los Angeles, CA 90001" +176033,Lightning Charging Cable,1,14.95,03/09/19 11:50,"348 River St, Los Angeles, CA 90001" +176034,Wired Headphones,1,11.99,03/13/19 11:09,"713 6th St, Dallas, TX 75001" +176035,AA Batteries (4-pack),1,3.84,03/28/19 21:27,"450 1st St, Los Angeles, CA 90001" +176036,AAA Batteries (4-pack),2,2.99,03/13/19 06:35,"292 Main St, Los Angeles, CA 90001" +176037,LG Dryer,1,600.0,03/02/19 13:26,"89 North St, San Francisco, CA 94016" +176038,Wired Headphones,1,11.99,03/05/19 11:03,"765 River St, New York City, NY 10001" +176039,Flatscreen TV,1,300,03/18/19 13:11,"344 Forest St, Portland, ME 04101" +176040,Apple Airpods Headphones,1,150,03/15/19 19:12,"599 Cedar St, San Francisco, CA 94016" +176041,AA Batteries (4-pack),1,3.84,03/07/19 23:45,"446 Lakeview St, Atlanta, GA 30301" +176042,AA Batteries (4-pack),1,3.84,03/11/19 18:04,"955 Sunset St, New York City, NY 10001" +176043,Wired Headphones,1,11.99,03/13/19 21:51,"733 Elm St, Dallas, TX 75001" +176044,Apple Airpods Headphones,1,150,03/30/19 17:53,"957 Park St, Dallas, TX 75001" +176045,Apple Airpods Headphones,1,150,03/19/19 20:18,"196 Chestnut St, Dallas, TX 75001" +176046,USB-C Charging Cable,1,11.95,03/06/19 23:16,"954 Main St, Dallas, TX 75001" +176047,Google Phone,1,600,03/27/19 13:16,"162 Walnut St, Atlanta, GA 30301" +176048,USB-C Charging Cable,1,11.95,03/29/19 19:44,"606 Willow St, Austin, TX 73301" +176049,34in Ultrawide Monitor,1,379.99,03/29/19 17:31,"992 Willow St, Austin, TX 73301" +176050,AAA Batteries (4-pack),1,2.99,03/11/19 17:49,"616 Main St, Los Angeles, CA 90001" +176051,Apple Airpods Headphones,1,150,03/25/19 11:48,"497 11th St, New York City, NY 10001" +176052,Wired Headphones,1,11.99,03/08/19 12:25,"111 5th St, San Francisco, CA 94016" +176053,Wired Headphones,1,11.99,03/29/19 01:49,"872 Forest St, Los Angeles, CA 90001" +176054,Wired Headphones,1,11.99,03/04/19 06:13,"847 Willow St, Boston, MA 02215" +176055,ThinkPad Laptop,1,999.99,03/12/19 11:45,"9 Washington St, San Francisco, CA 94016" +176056,Vareebadd Phone,1,400,03/04/19 19:04,"697 6th St, San Francisco, CA 94016" +176056,Bose SoundSport Headphones,1,99.99,03/04/19 19:04,"697 6th St, San Francisco, CA 94016" +176057,Flatscreen TV,1,300,03/02/19 21:09,"29 Meadow St, Atlanta, GA 30301" +176058,AAA Batteries (4-pack),1,2.99,03/30/19 12:26,"819 7th St, Dallas, TX 75001" +176059,AA Batteries (4-pack),2,3.84,03/17/19 12:05,"443 5th St, Atlanta, GA 30301" +176060,Lightning Charging Cable,1,14.95,03/24/19 20:02,"723 Park St, San Francisco, CA 94016" +176061,Apple Airpods Headphones,1,150,03/07/19 15:23,"902 Maple St, San Francisco, CA 94016" +176062,USB-C Charging Cable,1,11.95,03/05/19 17:20,"146 Madison St, Los Angeles, CA 90001" +176063,AAA Batteries (4-pack),1,2.99,03/10/19 09:24,"413 9th St, Los Angeles, CA 90001" +176064,USB-C Charging Cable,1,11.95,03/31/19 09:12,"931 Spruce St, New York City, NY 10001" +176065,Wired Headphones,1,11.99,03/24/19 15:10,"426 14th St, Atlanta, GA 30301" +176066,Wired Headphones,1,11.99,03/02/19 10:07,"54 Jefferson St, Los Angeles, CA 90001" +176067,Flatscreen TV,1,300,03/27/19 14:56,"125 Forest St, San Francisco, CA 94016" +176068,Lightning Charging Cable,1,14.95,03/11/19 16:32,"752 Jefferson St, Seattle, WA 98101" +176069,Apple Airpods Headphones,1,150,03/16/19 01:09,"896 Maple St, Portland, ME 04101" +176070,Bose SoundSport Headphones,1,99.99,03/03/19 22:40,"339 4th St, San Francisco, CA 94016" +176071,AA Batteries (4-pack),1,3.84,03/02/19 19:28,"772 8th St, San Francisco, CA 94016" +176072,Flatscreen TV,1,300,03/07/19 18:58,"557 Center St, Los Angeles, CA 90001" +176073,AAA Batteries (4-pack),1,2.99,03/26/19 11:45,"330 Pine St, San Francisco, CA 94016" +176074,34in Ultrawide Monitor,1,379.99,03/07/19 18:59,"416 Forest St, Dallas, TX 75001" +176075,AA Batteries (4-pack),4,3.84,03/26/19 23:05,"673 Park St, Atlanta, GA 30301" +176076,USB-C Charging Cable,1,11.95,03/02/19 10:47,"960 Jackson St, Los Angeles, CA 90001" +176077,Apple Airpods Headphones,1,150,03/24/19 21:21,"293 Elm St, San Francisco, CA 94016" +176078,Lightning Charging Cable,1,14.95,03/26/19 16:14,"952 Forest St, San Francisco, CA 94016" +176079,Google Phone,1,600,03/01/19 14:03,"197 Forest St, San Francisco, CA 94016" +176080,Apple Airpods Headphones,1,150,03/16/19 23:53,"302 10th St, Los Angeles, CA 90001" +176081,AAA Batteries (4-pack),2,2.99,03/25/19 12:22,"313 13th St, New York City, NY 10001" +176082,USB-C Charging Cable,1,11.95,03/31/19 21:07,"439 Sunset St, Los Angeles, CA 90001" +176083,Flatscreen TV,1,300,03/29/19 16:26,"58 Willow St, New York City, NY 10001" +176084,Wired Headphones,1,11.99,03/23/19 11:14,"851 Center St, San Francisco, CA 94016" +176085,Lightning Charging Cable,2,14.95,03/18/19 00:06,"378 Washington St, Boston, MA 02215" +176086,iPhone,1,700,03/03/19 00:30,"577 Adams St, San Francisco, CA 94016" +176087,AAA Batteries (4-pack),1,2.99,03/11/19 20:22,"234 Lincoln St, Seattle, WA 98101" +176088,USB-C Charging Cable,1,11.95,03/31/19 11:02,"296 South St, San Francisco, CA 94016" +176089,20in Monitor,1,109.99,03/01/19 10:42,"309 Lakeview St, New York City, NY 10001" +176090,Wired Headphones,3,11.99,03/31/19 15:38,"725 Hickory St, Atlanta, GA 30301" +176091,Bose SoundSport Headphones,1,99.99,03/07/19 10:38,"223 Cedar St, New York City, NY 10001" +176092,AAA Batteries (4-pack),1,2.99,03/27/19 08:43,"728 8th St, Dallas, TX 75001" +176093,Bose SoundSport Headphones,1,99.99,03/11/19 01:46,"273 Chestnut St, New York City, NY 10001" +176094,Google Phone,1,600,03/05/19 14:27,"294 5th St, Los Angeles, CA 90001" +176094,Bose SoundSport Headphones,1,99.99,03/05/19 14:27,"294 5th St, Los Angeles, CA 90001" +176095,Google Phone,1,600,03/20/19 12:53,"463 10th St, Portland, OR 97035" +176096,Bose SoundSport Headphones,1,99.99,03/15/19 13:04,"686 Hickory St, New York City, NY 10001" +176097,AAA Batteries (4-pack),2,2.99,03/02/19 23:22,"463 Willow St, Boston, MA 02215" +176098,AA Batteries (4-pack),2,3.84,03/14/19 13:18,"206 Pine St, San Francisco, CA 94016" +176099,Apple Airpods Headphones,1,150,03/22/19 13:29,"300 Meadow St, San Francisco, CA 94016" +176100,Bose SoundSport Headphones,1,99.99,03/06/19 13:59,"184 8th St, New York City, NY 10001" +176101,Wired Headphones,1,11.99,03/02/19 09:41,"904 10th St, Los Angeles, CA 90001" +176102,AAA Batteries (4-pack),1,2.99,03/13/19 21:33,"716 North St, Dallas, TX 75001" +176103,Lightning Charging Cable,2,14.95,03/07/19 18:58,"658 11th St, San Francisco, CA 94016" +176104,iPhone,1,700,03/03/19 21:44,"99 Park St, New York City, NY 10001" +176105,27in 4K Gaming Monitor,1,389.99,03/31/19 12:03,"58 4th St, San Francisco, CA 94016" +176106,Bose SoundSport Headphones,1,99.99,03/20/19 18:39,"313 Meadow St, Boston, MA 02215" +176107,Apple Airpods Headphones,1,150,03/17/19 15:27,"64 Ridge St, San Francisco, CA 94016" +176108,Wired Headphones,1,11.99,03/23/19 12:24,"630 Lakeview St, San Francisco, CA 94016" +176109,ThinkPad Laptop,1,999.99,03/27/19 23:43,"985 West St, Austin, TX 73301" +176110,USB-C Charging Cable,1,11.95,03/13/19 11:02,"459 Church St, San Francisco, CA 94016" +176111,AA Batteries (4-pack),3,3.84,03/06/19 13:44,"804 Jackson St, San Francisco, CA 94016" +176112,Lightning Charging Cable,1,14.95,03/28/19 12:50,"525 8th St, San Francisco, CA 94016" +176113,Wired Headphones,1,11.99,03/10/19 14:29,"689 Wilson St, Seattle, WA 98101" +176114,AA Batteries (4-pack),2,3.84,03/28/19 02:02,"342 Maple St, Austin, TX 73301" +176114,Lightning Charging Cable,1,14.95,03/28/19 02:02,"342 Maple St, Austin, TX 73301" +176115,Bose SoundSport Headphones,1,99.99,03/07/19 17:47,"209 River St, San Francisco, CA 94016" +176116,34in Ultrawide Monitor,1,379.99,03/14/19 19:06,"606 Madison St, Austin, TX 73301" +176117,Lightning Charging Cable,1,14.95,03/22/19 15:09,"444 Cherry St, Los Angeles, CA 90001" +176118,Flatscreen TV,1,300,03/09/19 13:39,"110 8th St, New York City, NY 10001" +176119,AAA Batteries (4-pack),1,2.99,03/05/19 01:33,"632 14th St, Los Angeles, CA 90001" +176120,Lightning Charging Cable,1,14.95,03/20/19 01:25,"235 Church St, Seattle, WA 98101" +176120,AAA Batteries (4-pack),2,2.99,03/20/19 01:25,"235 Church St, Seattle, WA 98101" +176121,Bose SoundSport Headphones,1,99.99,03/10/19 15:50,"653 Highland St, New York City, NY 10001" +176122,iPhone,1,700,03/31/19 16:35,"940 Lakeview St, Dallas, TX 75001" +176123,AAA Batteries (4-pack),2,2.99,03/01/19 14:16,"411 Meadow St, San Francisco, CA 94016" +176124,AAA Batteries (4-pack),1,2.99,03/08/19 22:30,"820 9th St, Dallas, TX 75001" +176125,Wired Headphones,1,11.99,03/02/19 11:06,"880 6th St, San Francisco, CA 94016" +176126,AAA Batteries (4-pack),1,2.99,03/09/19 18:33,"137 Maple St, Atlanta, GA 30301" +176127,Flatscreen TV,1,300,03/21/19 11:27,"601 Elm St, Boston, MA 02215" +176128,AAA Batteries (4-pack),1,2.99,03/20/19 05:11,"294 Maple St, San Francisco, CA 94016" +176129,AA Batteries (4-pack),2,3.84,03/11/19 20:08,"609 1st St, New York City, NY 10001" +176130,Bose SoundSport Headphones,1,99.99,03/13/19 21:53,"936 Chestnut St, New York City, NY 10001" +176131,USB-C Charging Cable,1,11.95,03/03/19 19:32,"277 2nd St, Los Angeles, CA 90001" +176132,USB-C Charging Cable,1,11.95,03/13/19 15:32,"637 Walnut St, San Francisco, CA 94016" +176133,Wired Headphones,1,11.99,03/27/19 20:17,"883 Jackson St, Los Angeles, CA 90001" +176134,Lightning Charging Cable,2,14.95,03/29/19 16:22,"805 Dogwood St, Los Angeles, CA 90001" +176135,Vareebadd Phone,1,400,03/08/19 17:33,"106 Cherry St, Atlanta, GA 30301" +176136,Lightning Charging Cable,1,14.95,03/03/19 15:07,"759 North St, San Francisco, CA 94016" +176137,AA Batteries (4-pack),2,3.84,03/21/19 00:28,"256 Chestnut St, Boston, MA 02215" +176138,Wired Headphones,1,11.99,03/25/19 00:22,"382 10th St, San Francisco, CA 94016" +176139,27in FHD Monitor,1,149.99,03/14/19 20:35,"837 Pine St, San Francisco, CA 94016" +176140,20in Monitor,1,109.99,03/25/19 21:15,"994 Maple St, Portland, OR 97035" +176141,Wired Headphones,1,11.99,03/26/19 12:05,"768 Meadow St, Atlanta, GA 30301" +176141,iPhone,1,700,03/26/19 12:05,"768 Meadow St, Atlanta, GA 30301" +176142,ThinkPad Laptop,1,999.99,03/15/19 21:33,"908 Madison St, Atlanta, GA 30301" +176143,AA Batteries (4-pack),1,3.84,03/30/19 08:26,"129 Lakeview St, New York City, NY 10001" +176144,Lightning Charging Cable,1,14.95,03/11/19 22:55,"938 5th St, San Francisco, CA 94016" +176145,Flatscreen TV,1,300,03/22/19 09:48,"159 11th St, Dallas, TX 75001" +176146,AA Batteries (4-pack),1,3.84,03/21/19 09:19,"662 Park St, San Francisco, CA 94016" +176147,USB-C Charging Cable,1,11.95,03/20/19 09:54,"100 Washington St, New York City, NY 10001" +176148,USB-C Charging Cable,1,11.95,03/02/19 20:40,"634 Washington St, Atlanta, GA 30301" +176149,Lightning Charging Cable,1,14.95,03/03/19 12:58,"118 North St, Boston, MA 02215" +176150,AA Batteries (4-pack),1,3.84,03/25/19 14:53,"178 Walnut St, Seattle, WA 98101" +176151,Lightning Charging Cable,1,14.95,03/19/19 05:58,"900 South St, Los Angeles, CA 90001" +176152,USB-C Charging Cable,1,11.95,03/08/19 10:06,"502 4th St, Los Angeles, CA 90001" +176153,Bose SoundSport Headphones,1,99.99,03/27/19 04:51,"576 Willow St, New York City, NY 10001" +176154,Apple Airpods Headphones,1,150,03/06/19 20:07,"369 West St, Portland, OR 97035" +176155,AAA Batteries (4-pack),1,2.99,03/22/19 03:49,"39 North St, Portland, OR 97035" +176156,AA Batteries (4-pack),1,3.84,03/21/19 14:08,"32 Cedar St, Atlanta, GA 30301" +176157,Lightning Charging Cable,1,14.95,03/21/19 07:50,"185 Washington St, Los Angeles, CA 90001" +176158,Flatscreen TV,1,300,03/13/19 12:06,"61 13th St, Boston, MA 02215" +176159,27in FHD Monitor,1,149.99,03/16/19 00:44,"518 Jefferson St, Portland, OR 97035" +176160,Wired Headphones,2,11.99,03/19/19 22:42,"201 Chestnut St, Los Angeles, CA 90001" +176161,USB-C Charging Cable,1,11.95,03/14/19 17:51,"175 Elm St, Dallas, TX 75001" +176162,USB-C Charging Cable,1,11.95,03/26/19 15:01,"782 6th St, Portland, OR 97035" +176163,AAA Batteries (4-pack),2,2.99,03/13/19 20:46,"104 Hill St, San Francisco, CA 94016" +176164,AAA Batteries (4-pack),1,2.99,03/15/19 09:22,"935 Johnson St, Atlanta, GA 30301" +176165,Apple Airpods Headphones,1,150,03/02/19 20:35,"896 5th St, Portland, OR 97035" +176166,AAA Batteries (4-pack),1,2.99,03/17/19 19:31,"898 Madison St, Seattle, WA 98101" +176167,Lightning Charging Cable,1,14.95,03/10/19 19:46,"506 Maple St, San Francisco, CA 94016" +176168,AA Batteries (4-pack),4,3.84,03/16/19 10:57,"776 2nd St, New York City, NY 10001" +176169,Lightning Charging Cable,1,14.95,03/02/19 18:44,"742 9th St, Los Angeles, CA 90001" +176170,AA Batteries (4-pack),1,3.84,03/31/19 15:24,"73 Park St, Atlanta, GA 30301" +176171,AAA Batteries (4-pack),1,2.99,03/18/19 18:40,"984 6th St, San Francisco, CA 94016" +176172,27in 4K Gaming Monitor,1,389.99,03/14/19 13:19,"437 Jackson St, Los Angeles, CA 90001" +176173,34in Ultrawide Monitor,1,379.99,03/30/19 11:57,"502 South St, San Francisco, CA 94016" +176174,Apple Airpods Headphones,1,150,03/19/19 15:45,"469 12th St, Atlanta, GA 30301" +176175,AAA Batteries (4-pack),3,2.99,03/09/19 13:17,"205 Dogwood St, Portland, ME 04101" +176176,AAA Batteries (4-pack),1,2.99,03/28/19 10:27,"207 Forest St, Los Angeles, CA 90001" +176177,Lightning Charging Cable,1,14.95,03/08/19 23:56,"292 Church St, San Francisco, CA 94016" +176178,Wired Headphones,1,11.99,03/20/19 13:58,"330 Dogwood St, San Francisco, CA 94016" +176179,AA Batteries (4-pack),1,3.84,03/19/19 15:55,"446 Dogwood St, San Francisco, CA 94016" +176180,Wired Headphones,1,11.99,03/02/19 19:31,"31 Elm St, Los Angeles, CA 90001" +176181,Lightning Charging Cable,1,14.95,03/13/19 11:42,"681 Lake St, Los Angeles, CA 90001" +176182,34in Ultrawide Monitor,1,379.99,03/31/19 15:38,"626 4th St, San Francisco, CA 94016" +176183,Macbook Pro Laptop,1,1700,03/04/19 20:21,"972 2nd St, New York City, NY 10001" +176184,AAA Batteries (4-pack),1,2.99,03/08/19 02:06,"473 Jefferson St, San Francisco, CA 94016" +176184,AAA Batteries (4-pack),1,2.99,03/08/19 02:06,"473 Jefferson St, San Francisco, CA 94016" +176185,USB-C Charging Cable,1,11.95,03/06/19 07:00,"496 Madison St, Seattle, WA 98101" +176186,Wired Headphones,1,11.99,03/15/19 12:27,"529 Church St, Atlanta, GA 30301" +176187,Wired Headphones,1,11.99,03/17/19 19:20,"615 Cherry St, New York City, NY 10001" +176188,USB-C Charging Cable,1,11.95,03/11/19 17:22,"240 North St, Seattle, WA 98101" +176189,AAA Batteries (4-pack),1,2.99,03/03/19 18:23,"778 Sunset St, New York City, NY 10001" +176190,AA Batteries (4-pack),1,3.84,03/13/19 20:35,"849 Ridge St, San Francisco, CA 94016" +176191,USB-C Charging Cable,3,11.95,03/13/19 20:06,"564 Lake St, Seattle, WA 98101" +176192,Google Phone,1,600,03/18/19 08:13,"554 Wilson St, San Francisco, CA 94016" +176193,USB-C Charging Cable,2,11.95,03/06/19 11:37,"61 Lincoln St, Atlanta, GA 30301" +176194,Wired Headphones,1,11.99,03/17/19 12:17,"116 West St, San Francisco, CA 94016" +176195,34in Ultrawide Monitor,1,379.99,03/20/19 21:00,"224 Elm St, New York City, NY 10001" +176196,Wired Headphones,1,11.99,03/01/19 13:59,"465 6th St, Dallas, TX 75001" +176197,Bose SoundSport Headphones,1,99.99,03/25/19 13:03,"36 Washington St, Atlanta, GA 30301" +176198,USB-C Charging Cable,2,11.95,03/24/19 14:07,"8 North St, Boston, MA 02215" +176199,20in Monitor,1,109.99,03/17/19 13:06,"596 Hickory St, Seattle, WA 98101" +176200,Google Phone,1,600,03/29/19 16:51,"739 Spruce St, Boston, MA 02215" +176201,AAA Batteries (4-pack),1,2.99,03/28/19 13:20,"980 West St, Los Angeles, CA 90001" +176202,ThinkPad Laptop,1,999.99,03/01/19 14:46,"968 North St, New York City, NY 10001" +176203,AAA Batteries (4-pack),1,2.99,03/17/19 17:23,"232 1st St, Portland, OR 97035" +176204,34in Ultrawide Monitor,1,379.99,03/12/19 13:00,"538 Church St, Seattle, WA 98101" +176205,AA Batteries (4-pack),1,3.84,03/20/19 10:30,"990 Forest St, Los Angeles, CA 90001" +176206,Lightning Charging Cable,1,14.95,03/23/19 12:38,"561 Washington St, San Francisco, CA 94016" +176207,Lightning Charging Cable,1,14.95,03/26/19 10:46,"753 9th St, New York City, NY 10001" +176208,27in 4K Gaming Monitor,1,389.99,03/08/19 14:35,"315 5th St, San Francisco, CA 94016" +176209,Bose SoundSport Headphones,1,99.99,03/13/19 19:02,"144 West St, Boston, MA 02215" +176210,Google Phone,1,600,03/08/19 19:10,"162 8th St, Los Angeles, CA 90001" +176211,AAA Batteries (4-pack),1,2.99,03/24/19 19:04,"836 Walnut St, Boston, MA 02215" +176212,Apple Airpods Headphones,1,150,03/18/19 22:31,"345 9th St, Portland, ME 04101" +176213,Bose SoundSport Headphones,1,99.99,03/11/19 12:27,"611 Church St, Dallas, TX 75001" +176214,Wired Headphones,1,11.99,03/06/19 10:50,"135 Elm St, Los Angeles, CA 90001" +176215,USB-C Charging Cable,1,11.95,03/19/19 16:30,"541 Main St, Seattle, WA 98101" +176216,AA Batteries (4-pack),1,3.84,03/16/19 06:50,"528 Wilson St, Dallas, TX 75001" +176217,AAA Batteries (4-pack),1,2.99,03/13/19 19:21,"525 8th St, Dallas, TX 75001" +176218,USB-C Charging Cable,1,11.95,03/23/19 00:17,"952 14th St, Dallas, TX 75001" +176219,Flatscreen TV,1,300,03/09/19 11:44,"483 11th St, Austin, TX 73301" +176220,Macbook Pro Laptop,1,1700,03/04/19 19:31,"13 12th St, Boston, MA 02215" +176221,Lightning Charging Cable,1,14.95,03/10/19 15:23,"907 South St, Seattle, WA 98101" +176222,34in Ultrawide Monitor,1,379.99,03/15/19 14:02,"397 Walnut St, Boston, MA 02215" +176223,AAA Batteries (4-pack),1,2.99,03/05/19 17:51,"722 Dogwood St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +176224,Lightning Charging Cable,2,14.95,03/09/19 17:34,"222 Johnson St, Atlanta, GA 30301" +176225,Bose SoundSport Headphones,1,99.99,03/28/19 16:55,"15 Center St, New York City, NY 10001" +176226,AA Batteries (4-pack),2,3.84,03/01/19 15:29,"469 Church St, New York City, NY 10001" +176227,Apple Airpods Headphones,1,150,03/16/19 10:04,"518 Walnut St, Los Angeles, CA 90001" +176228,Wired Headphones,1,11.99,03/10/19 20:56,"304 5th St, Boston, MA 02215" +176229,Wired Headphones,1,11.99,03/11/19 12:55,"850 Hill St, Atlanta, GA 30301" +176230,Bose SoundSport Headphones,1,99.99,03/30/19 21:16,"854 Lakeview St, New York City, NY 10001" +176231,AA Batteries (4-pack),1,3.84,03/15/19 20:36,"823 Ridge St, New York City, NY 10001" +176232,Wired Headphones,1,11.99,03/01/19 12:41,"321 Walnut St, Portland, OR 97035" +176233,Lightning Charging Cable,1,14.95,03/24/19 15:16,"23 Dogwood St, Los Angeles, CA 90001" +176234,USB-C Charging Cable,2,11.95,03/22/19 11:27,"54 Pine St, New York City, NY 10001" +176235,iPhone,1,700,03/27/19 09:10,"584 Center St, San Francisco, CA 94016" +176236,Apple Airpods Headphones,1,150,03/07/19 09:18,"583 Pine St, Dallas, TX 75001" +176237,Apple Airpods Headphones,1,150,03/02/19 08:44,"719 Ridge St, Atlanta, GA 30301" +176238,34in Ultrawide Monitor,1,379.99,03/28/19 12:39,"633 Madison St, Los Angeles, CA 90001" +176239,Bose SoundSport Headphones,1,99.99,03/27/19 14:36,"997 8th St, Seattle, WA 98101" +176240,AAA Batteries (4-pack),1,2.99,03/21/19 20:53,"44 1st St, New York City, NY 10001" +176241,Lightning Charging Cable,1,14.95,03/07/19 18:42,"483 Park St, Dallas, TX 75001" +176242,Bose SoundSport Headphones,1,99.99,03/01/19 22:08,"580 Lake St, New York City, NY 10001" +176243,Wired Headphones,1,11.99,03/11/19 18:39,"174 North St, New York City, NY 10001" +176244,Wired Headphones,1,11.99,03/30/19 11:17,"576 10th St, Los Angeles, CA 90001" +176245,Macbook Pro Laptop,1,1700,03/28/19 10:22,"936 Park St, San Francisco, CA 94016" +176246,AAA Batteries (4-pack),1,2.99,03/24/19 19:18,"269 Adams St, Dallas, TX 75001" +176247,AA Batteries (4-pack),1,3.84,03/06/19 16:14,"7 Adams St, Dallas, TX 75001" +176248,USB-C Charging Cable,1,11.95,03/07/19 10:07,"78 River St, Los Angeles, CA 90001" +176249,Flatscreen TV,1,300,03/29/19 15:59,"484 Washington St, Seattle, WA 98101" +176250,34in Ultrawide Monitor,1,379.99,03/14/19 10:24,"573 Adams St, Dallas, TX 75001" +176251,AA Batteries (4-pack),1,3.84,03/25/19 12:52,"846 Johnson St, New York City, NY 10001" +176252,AAA Batteries (4-pack),1,2.99,03/19/19 17:40,"266 1st St, New York City, NY 10001" +176253,27in FHD Monitor,1,149.99,03/16/19 18:20,"985 Sunset St, Dallas, TX 75001" +176254,Vareebadd Phone,1,400,03/31/19 13:41,"688 River St, New York City, NY 10001" +176255,Wired Headphones,1,11.99,03/31/19 19:17,"493 North St, Los Angeles, CA 90001" +176256,Flatscreen TV,1,300,03/22/19 11:44,"222 Hill St, San Francisco, CA 94016" +176257,AA Batteries (4-pack),1,3.84,03/05/19 21:27,"582 Sunset St, Atlanta, GA 30301" +176258,USB-C Charging Cable,2,11.95,03/26/19 15:11,"76 North St, San Francisco, CA 94016" +176259,Google Phone,1,600,03/03/19 20:28,"319 Chestnut St, San Francisco, CA 94016" +176260,USB-C Charging Cable,1,11.95,03/19/19 03:52,"612 Pine St, Dallas, TX 75001" +176261,20in Monitor,1,109.99,03/31/19 20:28,"285 Meadow St, San Francisco, CA 94016" +176262,AA Batteries (4-pack),1,3.84,03/23/19 09:40,"676 Center St, Los Angeles, CA 90001" +176263,USB-C Charging Cable,1,11.95,03/29/19 23:55,"573 Madison St, Austin, TX 73301" +176264,Bose SoundSport Headphones,1,99.99,03/25/19 16:21,"888 9th St, Los Angeles, CA 90001" +176265,AAA Batteries (4-pack),1,2.99,03/03/19 11:12,"370 11th St, Los Angeles, CA 90001" +176266,AA Batteries (4-pack),2,3.84,03/27/19 12:11,"842 Lakeview St, Austin, TX 73301" +176267,Flatscreen TV,1,300,03/27/19 14:31,"879 Willow St, Dallas, TX 75001" +176268,Lightning Charging Cable,1,14.95,03/13/19 10:19,"982 Washington St, San Francisco, CA 94016" +176269,Lightning Charging Cable,1,14.95,03/03/19 11:25,"737 Adams St, Los Angeles, CA 90001" +176270,Bose SoundSport Headphones,1,99.99,03/22/19 13:46,"384 Park St, Los Angeles, CA 90001" +176271,AAA Batteries (4-pack),2,2.99,03/07/19 11:47,"619 4th St, San Francisco, CA 94016" +176272,Wired Headphones,1,11.99,03/31/19 19:50,"775 12th St, San Francisco, CA 94016" +176273,Bose SoundSport Headphones,1,99.99,03/10/19 16:47,"711 Cherry St, Dallas, TX 75001" +176274,Bose SoundSport Headphones,1,99.99,03/28/19 02:15,"686 Chestnut St, Austin, TX 73301" +176275,USB-C Charging Cable,1,11.95,03/04/19 16:13,"602 River St, Boston, MA 02215" +176276,Wired Headphones,2,11.99,03/16/19 19:40,"579 Lincoln St, San Francisco, CA 94016" +176277,34in Ultrawide Monitor,1,379.99,03/31/19 07:47,"712 7th St, Portland, ME 04101" +176278,AAA Batteries (4-pack),1,2.99,03/24/19 21:59,"872 10th St, Los Angeles, CA 90001" +176279,AA Batteries (4-pack),1,3.84,03/02/19 18:32,"713 Dogwood St, San Francisco, CA 94016" +176280,USB-C Charging Cable,1,11.95,03/14/19 22:36,"513 4th St, San Francisco, CA 94016" +176281,Google Phone,1,600,03/26/19 22:23,"972 Hickory St, San Francisco, CA 94016" +176282,AA Batteries (4-pack),1,3.84,03/05/19 20:04,"922 South St, San Francisco, CA 94016" +176283,Flatscreen TV,1,300,03/24/19 19:59,"9 12th St, Boston, MA 02215" +176284,USB-C Charging Cable,1,11.95,03/16/19 19:57,"882 13th St, New York City, NY 10001" +176285,Bose SoundSport Headphones,1,99.99,03/10/19 15:37,"865 Washington St, Austin, TX 73301" +176286,Wired Headphones,1,11.99,03/30/19 16:39,"757 Willow St, Boston, MA 02215" +176287,27in 4K Gaming Monitor,1,389.99,03/02/19 09:41,"601 Main St, San Francisco, CA 94016" +176288,USB-C Charging Cable,1,11.95,03/03/19 07:04,"391 Church St, San Francisco, CA 94016" +176289,AA Batteries (4-pack),1,3.84,03/16/19 08:57,"368 Hill St, Seattle, WA 98101" +176290,USB-C Charging Cable,1,11.95,03/04/19 13:39,"989 Elm St, Los Angeles, CA 90001" +176291,AA Batteries (4-pack),2,3.84,03/05/19 12:40,"166 6th St, New York City, NY 10001" +176292,Lightning Charging Cable,1,14.95,03/14/19 14:17,"337 Forest St, Los Angeles, CA 90001" +176293,USB-C Charging Cable,1,11.95,03/30/19 10:01,"749 5th St, San Francisco, CA 94016" +176294,Bose SoundSport Headphones,1,99.99,03/24/19 18:54,"215 Madison St, New York City, NY 10001" +176295,iPhone,1,700,03/09/19 09:14,"378 South St, Boston, MA 02215" +176296,Wired Headphones,1,11.99,03/28/19 21:54,"633 Meadow St, Austin, TX 73301" +176297,Bose SoundSport Headphones,1,99.99,03/04/19 12:51,"599 Meadow St, Atlanta, GA 30301" +176298,Apple Airpods Headphones,1,150,03/05/19 22:50,"608 Lincoln St, Boston, MA 02215" +176299,USB-C Charging Cable,1,11.95,03/08/19 06:47,"571 Jackson St, San Francisco, CA 94016" +176300,Apple Airpods Headphones,1,150,03/25/19 14:09,"189 8th St, San Francisco, CA 94016" +176301,AAA Batteries (4-pack),1,2.99,03/16/19 10:14,"814 Dogwood St, New York City, NY 10001" +176302,Vareebadd Phone,1,400,03/25/19 10:50,"518 4th St, New York City, NY 10001" +176303,AAA Batteries (4-pack),2,2.99,03/01/19 16:42,"917 Hill St, New York City, NY 10001" +176304,USB-C Charging Cable,1,11.95,03/23/19 06:14,"820 Highland St, Los Angeles, CA 90001" +176305,Lightning Charging Cable,1,14.95,03/07/19 13:51,"806 Hickory St, New York City, NY 10001" +176306,27in 4K Gaming Monitor,1,389.99,03/02/19 20:18,"325 Willow St, Portland, OR 97035" +176307,Wired Headphones,1,11.99,03/09/19 17:37,"773 Dogwood St, Los Angeles, CA 90001" +176308,AA Batteries (4-pack),1,3.84,03/11/19 08:30,"761 7th St, Boston, MA 02215" +176309,AAA Batteries (4-pack),1,2.99,03/19/19 08:43,"277 8th St, Portland, OR 97035" +176310,Lightning Charging Cable,1,14.95,03/30/19 13:31,"551 Forest St, Los Angeles, CA 90001" +176311,Lightning Charging Cable,1,14.95,03/31/19 12:16,"143 Walnut St, Boston, MA 02215" +176312,USB-C Charging Cable,1,11.95,03/17/19 21:35,"977 Ridge St, Dallas, TX 75001" +176313,27in 4K Gaming Monitor,1,389.99,03/01/19 12:36,"584 12th St, Los Angeles, CA 90001" +176314,USB-C Charging Cable,1,11.95,03/31/19 11:44,"869 Hickory St, Los Angeles, CA 90001" +176315,Lightning Charging Cable,1,14.95,03/16/19 09:30,"626 North St, New York City, NY 10001" +176316,Google Phone,1,600,03/08/19 18:55,"137 Sunset St, New York City, NY 10001" +176317,Flatscreen TV,1,300,03/30/19 20:13,"67 West St, New York City, NY 10001" +176318,27in 4K Gaming Monitor,1,389.99,03/11/19 11:28,"993 Johnson St, New York City, NY 10001" +176319,AA Batteries (4-pack),1,3.84,03/21/19 19:13,"585 1st St, New York City, NY 10001" +176320,Lightning Charging Cable,1,14.95,03/18/19 12:41,"355 Jackson St, Atlanta, GA 30301" +176321,Macbook Pro Laptop,1,1700,03/19/19 09:32,"952 Main St, Boston, MA 02215" +176322,iPhone,1,700,03/25/19 19:01,"749 Main St, Los Angeles, CA 90001" +176323,AA Batteries (4-pack),1,3.84,03/20/19 14:02,"508 Main St, Boston, MA 02215" +176324,USB-C Charging Cable,1,11.95,03/02/19 10:05,"762 Park St, San Francisco, CA 94016" +176325,34in Ultrawide Monitor,1,379.99,03/05/19 18:34,"908 14th St, Atlanta, GA 30301" +176326,iPhone,1,700,03/22/19 07:48,"289 8th St, Seattle, WA 98101" +176326,Lightning Charging Cable,1,14.95,03/22/19 07:48,"289 8th St, Seattle, WA 98101" +176327,Flatscreen TV,1,300,03/13/19 17:49,"420 Pine St, San Francisco, CA 94016" +176328,Lightning Charging Cable,1,14.95,03/04/19 18:48,"649 7th St, Boston, MA 02215" +176329,Lightning Charging Cable,3,14.95,03/25/19 06:38,"483 Hickory St, Dallas, TX 75001" +176330,27in 4K Gaming Monitor,1,389.99,03/26/19 20:42,"257 West St, Austin, TX 73301" +176331,Lightning Charging Cable,1,14.95,03/13/19 18:19,"626 Adams St, Seattle, WA 98101" +176332,Apple Airpods Headphones,1,150,03/17/19 04:10,"912 9th St, Austin, TX 73301" +176333,iPhone,1,700,03/07/19 11:20,"989 Cedar St, Atlanta, GA 30301" +176333,Lightning Charging Cable,1,14.95,03/07/19 11:20,"989 Cedar St, Atlanta, GA 30301" +176334,USB-C Charging Cable,1,11.95,03/13/19 18:43,"517 West St, San Francisco, CA 94016" +176335,USB-C Charging Cable,1,11.95,03/23/19 15:45,"988 Sunset St, San Francisco, CA 94016" +176336,AAA Batteries (4-pack),1,2.99,03/05/19 08:02,"966 South St, New York City, NY 10001" +176337,USB-C Charging Cable,1,11.95,03/30/19 11:06,"832 Forest St, Portland, OR 97035" +176338,USB-C Charging Cable,1,11.95,03/15/19 12:47,"790 Park St, Boston, MA 02215" +176339,AA Batteries (4-pack),1,3.84,03/05/19 17:03,"775 Washington St, New York City, NY 10001" +176340,iPhone,1,700,03/19/19 10:21,"818 Ridge St, San Francisco, CA 94016" +176341,USB-C Charging Cable,1,11.95,03/03/19 13:48,"696 Washington St, Boston, MA 02215" +176342,iPhone,1,700,03/22/19 21:11,"148 Ridge St, Portland, OR 97035" +176343,AA Batteries (4-pack),1,3.84,03/24/19 16:38,"37 Willow St, New York City, NY 10001" +176344,Macbook Pro Laptop,1,1700,03/07/19 15:21,"381 South St, San Francisco, CA 94016" +176345,Wired Headphones,1,11.99,03/22/19 17:15,"736 Church St, Los Angeles, CA 90001" +176346,Lightning Charging Cable,1,14.95,03/04/19 16:53,"746 Washington St, Los Angeles, CA 90001" +176347,Wired Headphones,1,11.99,03/28/19 13:50,"955 Madison St, Seattle, WA 98101" +176348,AA Batteries (4-pack),1,3.84,03/23/19 20:33,"944 6th St, Los Angeles, CA 90001" +176349,USB-C Charging Cable,1,11.95,03/03/19 09:38,"567 Church St, Los Angeles, CA 90001" +176350,20in Monitor,1,109.99,03/21/19 13:25,"63 River St, Los Angeles, CA 90001" +176351,LG Dryer,1,600.0,03/11/19 19:46,"326 13th St, San Francisco, CA 94016" +176352,Lightning Charging Cable,1,14.95,03/25/19 14:06,"93 Spruce St, New York City, NY 10001" +176353,AA Batteries (4-pack),1,3.84,03/13/19 19:09,"513 Sunset St, New York City, NY 10001" +176354,Wired Headphones,1,11.99,03/28/19 13:02,"360 Maple St, Los Angeles, CA 90001" +176355,Bose SoundSport Headphones,1,99.99,03/12/19 01:32,"262 Main St, New York City, NY 10001" +176356,AA Batteries (4-pack),1,3.84,03/03/19 23:28,"16 Wilson St, Seattle, WA 98101" +176357,USB-C Charging Cable,1,11.95,03/03/19 08:58,"792 Lincoln St, New York City, NY 10001" +176357,Vareebadd Phone,1,400,03/03/19 08:58,"792 Lincoln St, New York City, NY 10001" +176358,AA Batteries (4-pack),1,3.84,03/06/19 10:18,"621 7th St, Los Angeles, CA 90001" +176359,AA Batteries (4-pack),1,3.84,03/13/19 13:00,"153 Center St, San Francisco, CA 94016" +176360,USB-C Charging Cable,1,11.95,03/31/19 19:35,"31 Dogwood St, Atlanta, GA 30301" +176361,Vareebadd Phone,1,400,03/18/19 01:21,"219 Chestnut St, Los Angeles, CA 90001" +176362,AA Batteries (4-pack),1,3.84,03/17/19 19:50,"523 Jackson St, Los Angeles, CA 90001" +176363,20in Monitor,1,109.99,03/22/19 10:54,"965 Hickory St, San Francisco, CA 94016" +176364,Apple Airpods Headphones,1,150,03/29/19 15:49,"200 Center St, San Francisco, CA 94016" +176365,Google Phone,1,600,03/26/19 22:37,"637 Park St, Austin, TX 73301" +176366,Wired Headphones,2,11.99,03/12/19 12:11,"600 River St, Portland, OR 97035" +176367,USB-C Charging Cable,1,11.95,03/24/19 23:08,"106 Jefferson St, Los Angeles, CA 90001" +176368,27in 4K Gaming Monitor,1,389.99,03/07/19 10:50,"74 Lake St, Portland, OR 97035" +176369,ThinkPad Laptop,1,999.99,03/31/19 10:14,"753 River St, Austin, TX 73301" +176370,Bose SoundSport Headphones,1,99.99,03/10/19 21:42,"160 14th St, Boston, MA 02215" +176371,Flatscreen TV,1,300,03/24/19 14:17,"156 Lakeview St, Los Angeles, CA 90001" +176372,AA Batteries (4-pack),2,3.84,03/26/19 17:17,"369 Dogwood St, Boston, MA 02215" +176373,Wired Headphones,1,11.99,03/26/19 20:05,"784 Elm St, Atlanta, GA 30301" +176374,Bose SoundSport Headphones,1,99.99,03/19/19 22:07,"740 13th St, New York City, NY 10001" +176375,Bose SoundSport Headphones,1,99.99,03/28/19 19:29,"430 11th St, New York City, NY 10001" +176376,Flatscreen TV,1,300,03/04/19 07:34,"347 4th St, Boston, MA 02215" +176377,20in Monitor,1,109.99,03/10/19 18:44,"814 6th St, Boston, MA 02215" +176378,AA Batteries (4-pack),1,3.84,03/03/19 13:45,"118 Ridge St, Atlanta, GA 30301" +176379,Wired Headphones,2,11.99,03/20/19 17:56,"467 Jefferson St, Boston, MA 02215" +176380,AA Batteries (4-pack),3,3.84,03/20/19 14:26,"799 Center St, Seattle, WA 98101" +176381,AAA Batteries (4-pack),1,2.99,03/10/19 23:40,"435 Hill St, Boston, MA 02215" +176382,Flatscreen TV,1,300,03/09/19 10:54,"591 Lakeview St, Los Angeles, CA 90001" +176383,Macbook Pro Laptop,1,1700,03/15/19 22:57,"503 7th St, San Francisco, CA 94016" +,,,,, +176384,Wired Headphones,2,11.99,03/30/19 22:41,"195 Spruce St, Atlanta, GA 30301" +176385,AAA Batteries (4-pack),1,2.99,03/23/19 03:53,"400 Hill St, Los Angeles, CA 90001" +176386,Apple Airpods Headphones,1,150,03/28/19 14:51,"253 Adams St, New York City, NY 10001" +176387,Lightning Charging Cable,1,14.95,03/14/19 10:32,"767 Ridge St, Boston, MA 02215" +176388,AA Batteries (4-pack),2,3.84,03/28/19 23:26,"891 Walnut St, Boston, MA 02215" +176389,AAA Batteries (4-pack),2,2.99,03/09/19 14:36,"696 Johnson St, Boston, MA 02215" +176390,Wired Headphones,1,11.99,03/09/19 20:38,"367 River St, Austin, TX 73301" +176391,Google Phone,1,600,03/28/19 21:05,"657 West St, San Francisco, CA 94016" +176392,27in 4K Gaming Monitor,1,389.99,03/18/19 19:51,"18 9th St, San Francisco, CA 94016" +176393,Apple Airpods Headphones,1,150,03/04/19 23:17,"607 Center St, Seattle, WA 98101" +176394,Lightning Charging Cable,1,14.95,03/19/19 13:25,"65 Forest St, Los Angeles, CA 90001" +176395,Apple Airpods Headphones,1,150,03/30/19 17:25,"391 8th St, Seattle, WA 98101" +176396,27in 4K Gaming Monitor,1,389.99,03/25/19 12:33,"364 Church St, Boston, MA 02215" +176397,USB-C Charging Cable,1,11.95,03/31/19 17:01,"635 13th St, Los Angeles, CA 90001" +176398,ThinkPad Laptop,1,999.99,03/25/19 09:49,"249 Main St, San Francisco, CA 94016" +176399,AA Batteries (4-pack),1,3.84,03/15/19 15:39,"641 Park St, San Francisco, CA 94016" +176400,Flatscreen TV,1,300,03/06/19 10:15,"262 2nd St, Los Angeles, CA 90001" +176401,AA Batteries (4-pack),1,3.84,03/10/19 12:11,"630 Lincoln St, Dallas, TX 75001" +176402,AA Batteries (4-pack),1,3.84,03/04/19 12:38,"871 Lakeview St, San Francisco, CA 94016" +176403,Flatscreen TV,1,300,03/07/19 13:28,"934 Main St, San Francisco, CA 94016" +176404,AA Batteries (4-pack),1,3.84,03/03/19 10:46,"208 12th St, Boston, MA 02215" +176405,Apple Airpods Headphones,1,150,03/14/19 14:36,"498 Lincoln St, Austin, TX 73301" +176406,Apple Airpods Headphones,1,150,03/12/19 11:16,"135 5th St, Portland, OR 97035" +176407,Lightning Charging Cable,1,14.95,03/17/19 02:01,"17 Walnut St, Austin, TX 73301" +176408,AA Batteries (4-pack),1,3.84,03/05/19 12:33,"699 Cedar St, Los Angeles, CA 90001" +176409,Google Phone,1,600,03/28/19 20:35,"597 Center St, Austin, TX 73301" +176409,USB-C Charging Cable,1,11.95,03/28/19 20:35,"597 Center St, Austin, TX 73301" +176409,Wired Headphones,1,11.99,03/28/19 20:35,"597 Center St, Austin, TX 73301" +176410,Lightning Charging Cable,1,14.95,03/01/19 15:34,"75 Park St, Boston, MA 02215" +176411,USB-C Charging Cable,1,11.95,03/11/19 21:11,"121 South St, Austin, TX 73301" +176412,20in Monitor,1,109.99,03/03/19 12:09,"631 2nd St, San Francisco, CA 94016" +176413,Bose SoundSport Headphones,1,99.99,03/28/19 18:27,"438 11th St, San Francisco, CA 94016" +176414,AAA Batteries (4-pack),1,2.99,03/22/19 17:12,"150 Wilson St, Los Angeles, CA 90001" +176415,27in FHD Monitor,1,149.99,03/07/19 07:07,"579 Willow St, Portland, OR 97035" +176416,AA Batteries (4-pack),1,3.84,03/27/19 05:24,"838 Main St, Dallas, TX 75001" +176417,27in FHD Monitor,1,149.99,03/22/19 17:20,"34 10th St, Boston, MA 02215" +176418,ThinkPad Laptop,1,999.99,03/06/19 18:35,"486 8th St, San Francisco, CA 94016" +176419,34in Ultrawide Monitor,1,379.99,03/22/19 03:24,"897 Adams St, Los Angeles, CA 90001" +176420,20in Monitor,1,109.99,03/03/19 13:48,"888 Center St, Portland, OR 97035" +176421,AAA Batteries (4-pack),1,2.99,03/09/19 22:44,"185 Cherry St, Boston, MA 02215" +176422,Lightning Charging Cable,1,14.95,03/19/19 12:34,"262 West St, Atlanta, GA 30301" +176423,Apple Airpods Headphones,1,150,03/06/19 13:28,"871 Cherry St, Boston, MA 02215" +176424,AAA Batteries (4-pack),1,2.99,03/04/19 16:10,"762 Highland St, Boston, MA 02215" +176425,Wired Headphones,1,11.99,03/18/19 10:05,"508 Lakeview St, San Francisco, CA 94016" +176426,Lightning Charging Cable,1,14.95,03/17/19 10:20,"676 Hickory St, Los Angeles, CA 90001" +176427,Lightning Charging Cable,1,14.95,03/06/19 14:29,"374 7th St, Los Angeles, CA 90001" +176428,AA Batteries (4-pack),1,3.84,03/10/19 17:04,"445 Elm St, Dallas, TX 75001" +176429,Bose SoundSport Headphones,1,99.99,03/13/19 20:14,"428 7th St, Boston, MA 02215" +176430,Vareebadd Phone,1,400,03/21/19 08:05,"55 6th St, Dallas, TX 75001" +176431,Lightning Charging Cable,1,14.95,03/18/19 19:13,"31 Wilson St, Austin, TX 73301" +176432,Bose SoundSport Headphones,1,99.99,03/05/19 11:37,"394 Center St, San Francisco, CA 94016" +176433,iPhone,1,700,03/11/19 09:02,"905 Chestnut St, Atlanta, GA 30301" +176433,Lightning Charging Cable,1,14.95,03/11/19 09:02,"905 Chestnut St, Atlanta, GA 30301" +176434,Apple Airpods Headphones,1,150,03/09/19 17:04,"828 Park St, Portland, OR 97035" +176435,AAA Batteries (4-pack),2,2.99,03/30/19 17:42,"672 Hill St, Portland, OR 97035" +176436,Lightning Charging Cable,1,14.95,03/26/19 09:32,"618 Adams St, Los Angeles, CA 90001" +176437,27in 4K Gaming Monitor,1,389.99,03/22/19 17:43,"197 7th St, Los Angeles, CA 90001" +176438,Lightning Charging Cable,1,14.95,03/26/19 14:15,"427 Cedar St, San Francisco, CA 94016" +176439,Apple Airpods Headphones,1,150,03/17/19 15:21,"744 4th St, New York City, NY 10001" +176440,34in Ultrawide Monitor,1,379.99,03/20/19 20:23,"524 13th St, Los Angeles, CA 90001" +176441,20in Monitor,1,109.99,03/24/19 12:40,"25 8th St, Seattle, WA 98101" +176442,27in FHD Monitor,1,149.99,03/30/19 19:09,"607 9th St, San Francisco, CA 94016" +176443,USB-C Charging Cable,1,11.95,03/04/19 07:30,"580 1st St, Seattle, WA 98101" +176444,Wired Headphones,1,11.99,03/05/19 19:43,"36 West St, Portland, ME 04101" +176445,AAA Batteries (4-pack),1,2.99,03/07/19 11:08,"408 7th St, Portland, OR 97035" +176446,Lightning Charging Cable,1,14.95,03/08/19 19:20,"185 Jackson St, Portland, OR 97035" +176447,Apple Airpods Headphones,1,150,03/22/19 15:30,"715 Chestnut St, New York City, NY 10001" +176448,AAA Batteries (4-pack),1,2.99,03/08/19 14:37,"850 Lincoln St, Los Angeles, CA 90001" +176449,34in Ultrawide Monitor,1,379.99,03/08/19 18:37,"346 Elm St, Boston, MA 02215" +176450,Google Phone,1,600,03/07/19 20:25,"877 Lake St, San Francisco, CA 94016" +176451,USB-C Charging Cable,1,11.95,03/16/19 05:31,"30 Adams St, New York City, NY 10001" +176452,AAA Batteries (4-pack),2,2.99,03/10/19 15:30,"928 Cedar St, Portland, OR 97035" +176453,Apple Airpods Headphones,1,150,03/26/19 17:58,"985 Wilson St, Los Angeles, CA 90001" +176454,AA Batteries (4-pack),1,3.84,03/12/19 10:41,"347 River St, Los Angeles, CA 90001" +176455,AAA Batteries (4-pack),3,2.99,03/08/19 17:28,"800 4th St, Dallas, TX 75001" +176456,AAA Batteries (4-pack),1,2.99,03/16/19 12:21,"331 Walnut St, Portland, OR 97035" +176457,Wired Headphones,2,11.99,03/29/19 20:11,"546 Willow St, Austin, TX 73301" +176458,AA Batteries (4-pack),1,3.84,03/05/19 00:16,"123 12th St, San Francisco, CA 94016" +176459,AA Batteries (4-pack),2,3.84,03/17/19 18:23,"780 Sunset St, Dallas, TX 75001" +176460,34in Ultrawide Monitor,1,379.99,03/02/19 19:24,"111 Cedar St, Dallas, TX 75001" +176461,USB-C Charging Cable,1,11.95,03/06/19 15:31,"448 Ridge St, Austin, TX 73301" +176462,Vareebadd Phone,1,400,03/01/19 14:59,"497 Center St, Boston, MA 02215" +176463,AA Batteries (4-pack),1,3.84,03/24/19 07:54,"905 Cedar St, San Francisco, CA 94016" +176464,Apple Airpods Headphones,1,150,03/03/19 09:15,"49 14th St, San Francisco, CA 94016" +176465,Bose SoundSport Headphones,1,99.99,03/02/19 20:44,"217 2nd St, Boston, MA 02215" +176466,Apple Airpods Headphones,1,150,03/08/19 12:54,"89 4th St, New York City, NY 10001" +176467,Wired Headphones,1,11.99,03/19/19 20:12,"156 Jefferson St, Austin, TX 73301" +176468,USB-C Charging Cable,1,11.95,03/20/19 11:36,"361 Maple St, Dallas, TX 75001" +176469,Wired Headphones,1,11.99,03/29/19 09:53,"14 Church St, San Francisco, CA 94016" +176470,Apple Airpods Headphones,1,150,03/21/19 11:29,"427 North St, San Francisco, CA 94016" +176471,Wired Headphones,1,11.99,03/03/19 09:10,"364 6th St, San Francisco, CA 94016" +176472,AAA Batteries (4-pack),1,2.99,03/08/19 19:06,"707 West St, Los Angeles, CA 90001" +176473,Macbook Pro Laptop,1,1700,03/19/19 10:49,"236 Walnut St, Boston, MA 02215" +176474,34in Ultrawide Monitor,1,379.99,03/25/19 15:15,"919 Church St, New York City, NY 10001" +176475,USB-C Charging Cable,1,11.95,03/21/19 20:04,"161 14th St, Los Angeles, CA 90001" +176476,Wired Headphones,1,11.99,03/26/19 09:43,"899 Meadow St, San Francisco, CA 94016" +176477,USB-C Charging Cable,1,11.95,03/01/19 10:44,"850 Johnson St, Boston, MA 02215" +176478,Lightning Charging Cable,1,14.95,03/26/19 12:00,"599 Sunset St, San Francisco, CA 94016" +176479,Wired Headphones,2,11.99,03/04/19 21:57,"317 10th St, San Francisco, CA 94016" +176480,USB-C Charging Cable,1,11.95,03/19/19 18:28,"63 7th St, Dallas, TX 75001" +176481,Lightning Charging Cable,1,14.95,03/10/19 08:50,"481 2nd St, Portland, OR 97035" +176482,Wired Headphones,1,11.99,03/12/19 12:51,"379 Lakeview St, San Francisco, CA 94016" +176483,AAA Batteries (4-pack),1,2.99,03/15/19 11:51,"465 13th St, Boston, MA 02215" +176484,AA Batteries (4-pack),1,3.84,03/02/19 16:54,"431 North St, Boston, MA 02215" +176485,USB-C Charging Cable,1,11.95,03/23/19 19:08,"667 1st St, Los Angeles, CA 90001" +176486,USB-C Charging Cable,1,11.95,03/17/19 07:56,"370 14th St, Los Angeles, CA 90001" +176487,27in 4K Gaming Monitor,1,389.99,03/17/19 15:54,"719 Highland St, Los Angeles, CA 90001" +176488,Bose SoundSport Headphones,1,99.99,03/26/19 21:56,"219 2nd St, San Francisco, CA 94016" +176489,AA Batteries (4-pack),2,3.84,03/24/19 02:24,"819 Hickory St, New York City, NY 10001" +176490,Vareebadd Phone,1,400,03/14/19 09:18,"802 13th St, Atlanta, GA 30301" +176491,Bose SoundSport Headphones,1,99.99,03/03/19 22:38,"730 Main St, San Francisco, CA 94016" +176492,Wired Headphones,1,11.99,03/05/19 12:50,"567 Dogwood St, Boston, MA 02215" +176493,AAA Batteries (4-pack),1,2.99,03/24/19 15:46,"274 South St, San Francisco, CA 94016" +176494,USB-C Charging Cable,1,11.95,03/01/19 08:54,"894 Johnson St, Los Angeles, CA 90001" +176495,Bose SoundSport Headphones,1,99.99,03/27/19 21:32,"571 Lake St, Portland, OR 97035" +176496,34in Ultrawide Monitor,1,379.99,03/06/19 21:38,"482 Pine St, San Francisco, CA 94016" +176497,AAA Batteries (4-pack),1,2.99,03/04/19 11:37,"129 Johnson St, San Francisco, CA 94016" +176498,USB-C Charging Cable,1,11.95,03/08/19 16:18,"50 Wilson St, Portland, OR 97035" +176499,Google Phone,2,600,03/14/19 14:07,"809 12th St, Los Angeles, CA 90001" +176500,Apple Airpods Headphones,1,150,03/19/19 16:45,"656 Center St, New York City, NY 10001" +176501,34in Ultrawide Monitor,1,379.99,03/01/19 13:32,"679 Jackson St, San Francisco, CA 94016" +176502,Bose SoundSport Headphones,1,99.99,03/11/19 21:26,"790 Park St, San Francisco, CA 94016" +176503,Apple Airpods Headphones,1,150,03/12/19 07:32,"700 6th St, Boston, MA 02215" +176504,AAA Batteries (4-pack),1,2.99,03/11/19 11:37,"130 11th St, Boston, MA 02215" +176505,Apple Airpods Headphones,1,150,03/14/19 09:25,"78 Ridge St, Portland, OR 97035" +176506,AAA Batteries (4-pack),1,2.99,03/28/19 11:53,"909 12th St, Seattle, WA 98101" +176507,Bose SoundSport Headphones,1,99.99,03/28/19 15:06,"19 South St, Portland, OR 97035" +176508,Apple Airpods Headphones,1,150,03/17/19 18:06,"899 South St, Boston, MA 02215" +176509,Bose SoundSport Headphones,1,99.99,03/01/19 18:55,"976 Lakeview St, Boston, MA 02215" +176510,Wired Headphones,1,11.99,03/24/19 21:20,"550 10th St, New York City, NY 10001" +176511,AA Batteries (4-pack),2,3.84,03/04/19 23:58,"20 West St, San Francisco, CA 94016" +176512,AAA Batteries (4-pack),1,2.99,03/23/19 14:39,"779 Highland St, Atlanta, GA 30301" +176513,Wired Headphones,1,11.99,03/03/19 19:50,"286 Jefferson St, New York City, NY 10001" +176514,34in Ultrawide Monitor,1,379.99,03/31/19 13:01,"819 West St, New York City, NY 10001" +176514,Wired Headphones,1,11.99,03/31/19 13:01,"819 West St, New York City, NY 10001" +176515,Macbook Pro Laptop,1,1700,03/19/19 10:45,"154 Ridge St, San Francisco, CA 94016" +176516,Lightning Charging Cable,1,14.95,03/31/19 13:24,"453 Lakeview St, Boston, MA 02215" +176517,34in Ultrawide Monitor,1,379.99,03/08/19 14:01,"351 Dogwood St, San Francisco, CA 94016" +176518,27in FHD Monitor,1,149.99,03/03/19 20:27,"486 8th St, New York City, NY 10001" +176519,AAA Batteries (4-pack),1,2.99,03/17/19 16:04,"269 12th St, New York City, NY 10001" +176520,Apple Airpods Headphones,1,150,03/30/19 18:32,"886 Spruce St, Portland, OR 97035" +176521,20in Monitor,1,109.99,03/15/19 11:07,"769 Walnut St, Boston, MA 02215" +176522,Wired Headphones,1,11.99,03/03/19 11:40,"690 Elm St, San Francisco, CA 94016" +176523,USB-C Charging Cable,1,11.95,03/15/19 18:28,"983 10th St, New York City, NY 10001" +176524,USB-C Charging Cable,1,11.95,03/20/19 18:59,"99 Johnson St, Portland, OR 97035" +176525,Apple Airpods Headphones,1,150,03/07/19 18:38,"639 6th St, Portland, OR 97035" +176526,AA Batteries (4-pack),1,3.84,03/30/19 19:25,"882 Maple St, San Francisco, CA 94016" +176527,USB-C Charging Cable,1,11.95,03/05/19 17:02,"179 6th St, New York City, NY 10001" +176528,AA Batteries (4-pack),1,3.84,03/21/19 14:49,"30 Willow St, Seattle, WA 98101" +176529,Bose SoundSport Headphones,1,99.99,03/13/19 21:39,"689 North St, Los Angeles, CA 90001" +176530,Lightning Charging Cable,1,14.95,03/08/19 15:53,"633 8th St, Atlanta, GA 30301" +176531,Google Phone,1,600,03/26/19 11:39,"96 12th St, Los Angeles, CA 90001" +176532,Lightning Charging Cable,1,14.95,03/29/19 13:45,"196 4th St, Atlanta, GA 30301" +176533,27in 4K Gaming Monitor,1,389.99,03/11/19 10:33,"29 Main St, Boston, MA 02215" +176534,Wired Headphones,1,11.99,03/07/19 14:17,"544 10th St, Los Angeles, CA 90001" +176535,AAA Batteries (4-pack),2,2.99,03/29/19 09:14,"771 Lake St, New York City, NY 10001" +176536,27in FHD Monitor,1,149.99,03/01/19 20:15,"922 Main St, Atlanta, GA 30301" +176537,ThinkPad Laptop,1,999.99,03/02/19 11:57,"967 Main St, Seattle, WA 98101" +176538,USB-C Charging Cable,1,11.95,03/23/19 14:20,"435 11th St, San Francisco, CA 94016" +176539,AA Batteries (4-pack),1,3.84,03/31/19 09:20,"441 Walnut St, Atlanta, GA 30301" +176540,USB-C Charging Cable,1,11.95,03/02/19 08:11,"672 5th St, Los Angeles, CA 90001" +176541,iPhone,1,700,03/13/19 17:16,"384 4th St, Los Angeles, CA 90001" +176542,AAA Batteries (4-pack),1,2.99,03/17/19 23:10,"540 Cedar St, Los Angeles, CA 90001" +176543,27in 4K Gaming Monitor,1,389.99,03/01/19 10:08,"865 11th St, San Francisco, CA 94016" +176544,USB-C Charging Cable,2,11.95,03/08/19 18:01,"818 Jackson St, New York City, NY 10001" +176545,AAA Batteries (4-pack),1,2.99,03/27/19 11:39,"5 Main St, Boston, MA 02215" +176546,AAA Batteries (4-pack),1,2.99,03/26/19 13:12,"39 Forest St, Dallas, TX 75001" +176547,USB-C Charging Cable,1,11.95,03/04/19 17:31,"129 Highland St, Los Angeles, CA 90001" +176548,Lightning Charging Cable,1,14.95,03/08/19 12:46,"511 Elm St, Portland, OR 97035" +176549,AAA Batteries (4-pack),1,2.99,03/09/19 10:22,"725 5th St, Austin, TX 73301" +176550,Lightning Charging Cable,1,14.95,03/19/19 19:55,"757 Cherry St, Boston, MA 02215" +176551,Lightning Charging Cable,1,14.95,03/11/19 18:10,"533 Hill St, San Francisco, CA 94016" +176552,Flatscreen TV,1,300,03/23/19 12:54,"205 2nd St, Boston, MA 02215" +176553,USB-C Charging Cable,1,11.95,03/16/19 22:28,"242 Maple St, Dallas, TX 75001" +176554,AA Batteries (4-pack),2,3.84,03/12/19 19:51,"355 4th St, New York City, NY 10001" +176555,ThinkPad Laptop,1,999.99,03/07/19 11:14,"55 Forest St, San Francisco, CA 94016" +176556,Wired Headphones,1,11.99,03/09/19 23:02,"735 Madison St, Dallas, TX 75001" +176557,Google Phone,1,600,03/02/19 19:41,"7 Sunset St, Los Angeles, CA 90001" +176557,Wired Headphones,1,11.99,03/02/19 19:41,"7 Sunset St, Los Angeles, CA 90001" +176558,USB-C Charging Cable,1,11.95,03/19/19 01:06,"105 Center St, Dallas, TX 75001" +176559,iPhone,1,700,03/22/19 15:55,"983 2nd St, New York City, NY 10001" +176560,USB-C Charging Cable,1,11.95,03/30/19 11:16,"559 9th St, Austin, TX 73301" +176561,Lightning Charging Cable,1,14.95,03/30/19 14:53,"648 Jefferson St, Atlanta, GA 30301" +176562,AAA Batteries (4-pack),3,2.99,03/11/19 23:25,"141 9th St, Seattle, WA 98101" +176563,AAA Batteries (4-pack),1,2.99,03/16/19 20:04,"411 2nd St, Austin, TX 73301" +176564,Flatscreen TV,1,300,03/22/19 14:48,"940 Spruce St, San Francisco, CA 94016" +176565,Macbook Pro Laptop,1,1700,03/24/19 16:36,"826 Dogwood St, Boston, MA 02215" +176566,Bose SoundSport Headphones,1,99.99,03/08/19 12:00,"610 Walnut St, San Francisco, CA 94016" +176567,USB-C Charging Cable,2,11.95,03/21/19 18:29,"413 Meadow St, New York City, NY 10001" +176568,USB-C Charging Cable,1,11.95,03/07/19 13:49,"151 Madison St, Dallas, TX 75001" +176569,Wired Headphones,1,11.99,03/29/19 20:28,"382 6th St, Dallas, TX 75001" +176570,Apple Airpods Headphones,1,150,03/16/19 20:14,"856 12th St, Atlanta, GA 30301" +176571,Wired Headphones,1,11.99,03/11/19 22:37,"962 Forest St, Boston, MA 02215" +176572,Bose SoundSport Headphones,1,99.99,03/24/19 18:55,"563 South St, Los Angeles, CA 90001" +176573,Apple Airpods Headphones,1,150,03/17/19 14:27,"837 Walnut St, Los Angeles, CA 90001" +176574,Lightning Charging Cable,1,14.95,03/10/19 11:11,"824 14th St, New York City, NY 10001" +176575,AA Batteries (4-pack),1,3.84,03/17/19 16:20,"650 Cedar St, San Francisco, CA 94016" +176576,34in Ultrawide Monitor,1,379.99,03/22/19 08:09,"623 11th St, Portland, OR 97035" +176577,Wired Headphones,1,11.99,03/04/19 19:53,"711 South St, Atlanta, GA 30301" +176578,AA Batteries (4-pack),1,3.84,03/12/19 16:52,"446 4th St, San Francisco, CA 94016" +176579,Wired Headphones,1,11.99,03/08/19 12:34,"746 Ridge St, San Francisco, CA 94016" +176580,34in Ultrawide Monitor,1,379.99,03/05/19 18:07,"970 Main St, Los Angeles, CA 90001" +176581,AAA Batteries (4-pack),2,2.99,03/24/19 14:10,"947 14th St, San Francisco, CA 94016" +176582,AA Batteries (4-pack),1,3.84,03/30/19 13:12,"550 5th St, Portland, ME 04101" +176583,Apple Airpods Headphones,1,150,03/27/19 13:34,"322 North St, Boston, MA 02215" +176584,27in FHD Monitor,1,149.99,03/27/19 00:08,"43 Forest St, Dallas, TX 75001" +176585,AA Batteries (4-pack),2,3.84,03/08/19 17:40,"584 Spruce St, New York City, NY 10001" +176586,AA Batteries (4-pack),2,3.84,03/23/19 16:52,"500 Ridge St, San Francisco, CA 94016" +176587,USB-C Charging Cable,1,11.95,03/30/19 22:30,"166 West St, Dallas, TX 75001" +176588,Lightning Charging Cable,1,14.95,03/08/19 11:58,"443 Madison St, Austin, TX 73301" +176589,34in Ultrawide Monitor,1,379.99,03/05/19 23:37,"107 12th St, Seattle, WA 98101" +176590,Apple Airpods Headphones,1,150,03/21/19 10:13,"268 West St, Austin, TX 73301" +176591,Lightning Charging Cable,1,14.95,03/03/19 16:32,"502 Adams St, Portland, OR 97035" +176592,Wired Headphones,1,11.99,03/19/19 20:03,"616 Main St, New York City, NY 10001" +176593,AA Batteries (4-pack),3,3.84,03/11/19 19:35,"684 Church St, Los Angeles, CA 90001" +176594,Bose SoundSport Headphones,1,99.99,03/29/19 21:22,"715 North St, Atlanta, GA 30301" +176595,AAA Batteries (4-pack),1,2.99,03/05/19 18:22,"103 Meadow St, Austin, TX 73301" +176596,27in FHD Monitor,1,149.99,03/09/19 16:04,"232 Forest St, San Francisco, CA 94016" +176597,AA Batteries (4-pack),1,3.84,03/14/19 13:19,"744 Jackson St, San Francisco, CA 94016" +176598,AAA Batteries (4-pack),2,2.99,03/29/19 13:47,"342 Church St, Atlanta, GA 30301" +176599,iPhone,1,700,03/03/19 15:34,"87 Lincoln St, Boston, MA 02215" +176600,USB-C Charging Cable,1,11.95,03/07/19 19:07,"720 West St, New York City, NY 10001" +176601,27in FHD Monitor,1,149.99,03/17/19 08:23,"403 14th St, Boston, MA 02215" +176602,27in 4K Gaming Monitor,1,389.99,03/16/19 18:14,"756 11th St, Boston, MA 02215" +176603,AA Batteries (4-pack),1,3.84,03/02/19 10:22,"789 River St, San Francisco, CA 94016" +176604,Wired Headphones,1,11.99,03/06/19 18:44,"189 9th St, Boston, MA 02215" +176605,LG Washing Machine,1,600.0,03/08/19 11:41,"943 Spruce St, Los Angeles, CA 90001" +176606,USB-C Charging Cable,1,11.95,03/16/19 20:19,"657 Ridge St, Seattle, WA 98101" +176607,AAA Batteries (4-pack),1,2.99,03/25/19 18:59,"766 Jackson St, Austin, TX 73301" +176608,27in FHD Monitor,1,149.99,03/16/19 05:44,"86 11th St, Los Angeles, CA 90001" +176609,AAA Batteries (4-pack),1,2.99,03/22/19 11:12,"988 Highland St, New York City, NY 10001" +176610,27in 4K Gaming Monitor,1,389.99,03/23/19 19:56,"241 12th St, Los Angeles, CA 90001" +176611,Wired Headphones,1,11.99,03/08/19 14:01,"843 Elm St, San Francisco, CA 94016" +176612,Apple Airpods Headphones,1,150,03/11/19 22:27,"81 8th St, Seattle, WA 98101" +176613,27in 4K Gaming Monitor,1,389.99,03/21/19 16:03,"254 Ridge St, San Francisco, CA 94016" +176614,USB-C Charging Cable,1,11.95,03/12/19 13:42,"311 Washington St, Atlanta, GA 30301" +,,,,, +176615,Bose SoundSport Headphones,1,99.99,03/12/19 01:39,"852 Lakeview St, Dallas, TX 75001" +176616,Wired Headphones,1,11.99,03/31/19 13:53,"180 South St, San Francisco, CA 94016" +176617,USB-C Charging Cable,1,11.95,03/04/19 22:17,"217 Spruce St, Portland, OR 97035" +176618,Google Phone,1,600,03/21/19 13:06,"824 2nd St, Boston, MA 02215" +176619,USB-C Charging Cable,1,11.95,03/22/19 20:22,"56 Highland St, San Francisco, CA 94016" +176620,Wired Headphones,1,11.99,03/22/19 20:06,"952 8th St, Los Angeles, CA 90001" +176621,USB-C Charging Cable,1,11.95,03/15/19 12:48,"712 Walnut St, New York City, NY 10001" +176622,Google Phone,1,600,03/06/19 23:01,"874 Highland St, San Francisco, CA 94016" +176623,Wired Headphones,1,11.99,03/27/19 07:46,"678 Wilson St, New York City, NY 10001" +176624,AAA Batteries (4-pack),1,2.99,03/31/19 10:22,"304 Cedar St, San Francisco, CA 94016" +176625,AAA Batteries (4-pack),1,2.99,03/29/19 13:14,"341 River St, San Francisco, CA 94016" +176626,Wired Headphones,1,11.99,03/19/19 21:40,"125 River St, San Francisco, CA 94016" +176627,Lightning Charging Cable,1,14.95,03/19/19 10:43,"949 Church St, San Francisco, CA 94016" +176628,Macbook Pro Laptop,1,1700,03/25/19 15:28,"401 Cherry St, New York City, NY 10001" +176629,20in Monitor,1,109.99,03/05/19 21:05,"790 14th St, Portland, OR 97035" +176630,Lightning Charging Cable,1,14.95,03/12/19 22:15,"841 7th St, San Francisco, CA 94016" +176631,USB-C Charging Cable,1,11.95,03/04/19 13:22,"20 Jackson St, Portland, OR 97035" +176632,27in FHD Monitor,1,149.99,03/15/19 13:42,"853 Pine St, New York City, NY 10001" +176633,AAA Batteries (4-pack),1,2.99,03/04/19 17:10,"658 12th St, Dallas, TX 75001" +176634,USB-C Charging Cable,1,11.95,03/12/19 16:04,"376 Dogwood St, San Francisco, CA 94016" +176635,Vareebadd Phone,1,400,03/16/19 13:35,"620 Cherry St, San Francisco, CA 94016" +176636,Lightning Charging Cable,1,14.95,03/08/19 13:16,"101 6th St, Los Angeles, CA 90001" +176637,34in Ultrawide Monitor,1,379.99,03/20/19 17:36,"909 Cedar St, San Francisco, CA 94016" +176638,Apple Airpods Headphones,1,150,03/22/19 18:56,"600 Jefferson St, Boston, MA 02215" +176639,USB-C Charging Cable,1,11.95,03/01/19 11:27,"363 South St, San Francisco, CA 94016" +176640,27in FHD Monitor,1,149.99,03/04/19 12:40,"807 Jefferson St, San Francisco, CA 94016" +176641,Macbook Pro Laptop,1,1700,03/02/19 17:18,"208 Johnson St, New York City, NY 10001" +176642,USB-C Charging Cable,1,11.95,03/29/19 10:14,"188 Sunset St, New York City, NY 10001" +176643,Bose SoundSport Headphones,1,99.99,03/18/19 00:48,"328 Church St, Atlanta, GA 30301" +176644,Google Phone,1,600,03/05/19 01:28,"303 Spruce St, Atlanta, GA 30301" +176644,USB-C Charging Cable,1,11.95,03/05/19 01:28,"303 Spruce St, Atlanta, GA 30301" +176645,USB-C Charging Cable,1,11.95,03/01/19 09:15,"659 5th St, San Francisco, CA 94016" +176646,Lightning Charging Cable,1,14.95,03/05/19 23:46,"96 6th St, Seattle, WA 98101" +176647,LG Washing Machine,1,600.0,03/28/19 22:29,"751 Elm St, San Francisco, CA 94016" +176648,34in Ultrawide Monitor,1,379.99,03/17/19 13:09,"703 Hill St, Seattle, WA 98101" +176649,Wired Headphones,2,11.99,03/31/19 10:37,"35 Park St, New York City, NY 10001" +176650,ThinkPad Laptop,1,999.99,03/16/19 11:57,"396 Johnson St, New York City, NY 10001" +,,,,, +176651,AAA Batteries (4-pack),2,2.99,03/10/19 12:12,"211 South St, Atlanta, GA 30301" +176652,Wired Headphones,1,11.99,03/21/19 10:34,"183 South St, New York City, NY 10001" +176653,Lightning Charging Cable,1,14.95,03/17/19 19:59,"522 Adams St, San Francisco, CA 94016" +176654,AA Batteries (4-pack),2,3.84,03/16/19 22:51,"650 Lakeview St, Los Angeles, CA 90001" +176655,Apple Airpods Headphones,1,150,03/05/19 19:30,"322 Forest St, Atlanta, GA 30301" +176656,ThinkPad Laptop,1,999.99,03/22/19 01:15,"760 Cherry St, Boston, MA 02215" +176657,Wired Headphones,1,11.99,03/02/19 19:46,"275 4th St, Portland, OR 97035" +176658,AAA Batteries (4-pack),2,2.99,03/08/19 16:51,"207 6th St, Boston, MA 02215" +176659,Lightning Charging Cable,1,14.95,03/22/19 18:06,"948 Wilson St, Atlanta, GA 30301" +176660,Apple Airpods Headphones,1,150,03/18/19 12:57,"886 5th St, Dallas, TX 75001" +176661,AA Batteries (4-pack),1,3.84,03/07/19 14:13,"870 Lakeview St, Boston, MA 02215" +176662,Bose SoundSport Headphones,1,99.99,03/22/19 19:56,"394 Jackson St, Los Angeles, CA 90001" +176663,Google Phone,1,600,03/04/19 16:19,"457 Wilson St, New York City, NY 10001" +176664,AA Batteries (4-pack),1,3.84,03/15/19 07:57,"218 Wilson St, Los Angeles, CA 90001" +176665,Bose SoundSport Headphones,1,99.99,03/19/19 18:52,"947 Lake St, Dallas, TX 75001" +176666,Wired Headphones,1,11.99,03/25/19 10:10,"623 13th St, Los Angeles, CA 90001" +176667,Bose SoundSport Headphones,1,99.99,03/06/19 12:57,"953 Main St, Seattle, WA 98101" +176668,AA Batteries (4-pack),1,3.84,03/07/19 12:20,"679 Center St, Boston, MA 02215" +176669,Apple Airpods Headphones,1,150,03/20/19 09:52,"592 8th St, Portland, ME 04101" +176670,Lightning Charging Cable,1,14.95,03/29/19 14:53,"239 Johnson St, Atlanta, GA 30301" +176671,34in Ultrawide Monitor,1,379.99,03/20/19 17:02,"926 1st St, San Francisco, CA 94016" +176672,27in FHD Monitor,1,149.99,03/14/19 18:41,"860 Meadow St, San Francisco, CA 94016" +176673,AA Batteries (4-pack),1,3.84,03/26/19 11:08,"447 13th St, Seattle, WA 98101" +176673,AAA Batteries (4-pack),1,2.99,03/26/19 11:08,"447 13th St, Seattle, WA 98101" +176674,27in FHD Monitor,1,149.99,03/03/19 13:14,"314 River St, Portland, OR 97035" +176675,AAA Batteries (4-pack),2,2.99,03/14/19 19:21,"914 10th St, San Francisco, CA 94016" +176676,27in 4K Gaming Monitor,1,389.99,03/05/19 14:07,"721 Lincoln St, Seattle, WA 98101" +176677,USB-C Charging Cable,1,11.95,03/17/19 09:13,"380 10th St, New York City, NY 10001" +176678,AA Batteries (4-pack),2,3.84,03/12/19 22:33,"122 Lake St, Atlanta, GA 30301" +176679,AAA Batteries (4-pack),1,2.99,03/25/19 14:28,"744 Lakeview St, Seattle, WA 98101" +176680,Apple Airpods Headphones,1,150,03/27/19 12:37,"463 Lake St, Los Angeles, CA 90001" +176681,Wired Headphones,1,11.99,03/12/19 13:53,"489 2nd St, San Francisco, CA 94016" +176682,Wired Headphones,1,11.99,03/04/19 12:54,"637 Park St, New York City, NY 10001" +176683,USB-C Charging Cable,1,11.95,03/23/19 23:19,"257 11th St, New York City, NY 10001" +176684,Google Phone,1,600,03/09/19 16:07,"633 Elm St, Austin, TX 73301" +176685,Apple Airpods Headphones,1,150,03/12/19 09:02,"589 Church St, Los Angeles, CA 90001" +176686,20in Monitor,1,109.99,03/24/19 23:14,"387 Hill St, San Francisco, CA 94016" +176687,Apple Airpods Headphones,1,150,03/22/19 20:46,"409 Pine St, Portland, ME 04101" +176688,USB-C Charging Cable,1,11.95,03/07/19 19:36,"8 Cherry St, New York City, NY 10001" +176689,27in 4K Gaming Monitor,1,389.99,03/12/19 18:07,"68 9th St, Dallas, TX 75001" +176690,27in 4K Gaming Monitor,1,389.99,03/03/19 19:23,"764 Spruce St, Boston, MA 02215" +176691,AA Batteries (4-pack),1,3.84,03/01/19 12:15,"947 Highland St, Los Angeles, CA 90001" +176692,Wired Headphones,1,11.99,03/16/19 11:55,"384 13th St, San Francisco, CA 94016" +176693,20in Monitor,1,109.99,03/18/19 21:29,"798 Meadow St, New York City, NY 10001" +176694,Bose SoundSport Headphones,1,99.99,03/20/19 10:44,"84 12th St, Atlanta, GA 30301" +176695,20in Monitor,1,109.99,03/20/19 12:22,"329 Church St, Boston, MA 02215" +176696,34in Ultrawide Monitor,1,379.99,03/26/19 08:52,"723 Spruce St, Los Angeles, CA 90001" +176697,AA Batteries (4-pack),3,3.84,03/29/19 17:10,"621 Wilson St, Portland, OR 97035" +176698,Wired Headphones,3,11.99,03/12/19 12:46,"421 Forest St, San Francisco, CA 94016" +176699,AA Batteries (4-pack),1,3.84,03/31/19 15:29,"634 North St, Los Angeles, CA 90001" +176700,20in Monitor,1,109.99,03/18/19 13:26,"982 Lake St, Atlanta, GA 30301" +176701,AA Batteries (4-pack),1,3.84,03/19/19 20:23,"440 Ridge St, New York City, NY 10001" +176702,Lightning Charging Cable,1,14.95,03/26/19 16:54,"335 12th St, Portland, OR 97035" +176703,Wired Headphones,1,11.99,03/24/19 06:47,"112 Jackson St, Atlanta, GA 30301" +176704,USB-C Charging Cable,1,11.95,03/25/19 01:39,"569 Hill St, Seattle, WA 98101" +176705,USB-C Charging Cable,1,11.95,03/10/19 23:26,"310 Cherry St, Los Angeles, CA 90001" +176706,Wired Headphones,1,11.99,03/29/19 08:15,"500 Chestnut St, Los Angeles, CA 90001" +176707,Apple Airpods Headphones,1,150,03/15/19 17:33,"178 Johnson St, San Francisco, CA 94016" +176708,AA Batteries (4-pack),1,3.84,03/22/19 14:10,"978 Lincoln St, Boston, MA 02215" +176709,34in Ultrawide Monitor,1,379.99,03/09/19 00:14,"158 Willow St, Boston, MA 02215" +176710,Lightning Charging Cable,1,14.95,03/15/19 20:30,"789 13th St, Seattle, WA 98101" +176711,AA Batteries (4-pack),2,3.84,03/14/19 20:45,"859 5th St, Boston, MA 02215" +176712,AA Batteries (4-pack),2,3.84,03/30/19 04:53,"656 Sunset St, New York City, NY 10001" +176713,AAA Batteries (4-pack),1,2.99,03/12/19 07:58,"969 10th St, New York City, NY 10001" +176714,Bose SoundSport Headphones,1,99.99,03/13/19 14:36,"618 Hill St, Atlanta, GA 30301" +176715,Wired Headphones,1,11.99,03/04/19 11:56,"226 Forest St, New York City, NY 10001" +176716,Apple Airpods Headphones,1,150,03/09/19 22:11,"12 8th St, Austin, TX 73301" +176717,iPhone,1,700,03/14/19 14:48,"630 Pine St, Dallas, TX 75001" +176718,27in FHD Monitor,1,149.99,03/15/19 09:53,"615 10th St, Atlanta, GA 30301" +176719,Lightning Charging Cable,1,14.95,03/30/19 18:26,"737 9th St, Los Angeles, CA 90001" +176720,USB-C Charging Cable,1,11.95,03/29/19 14:56,"804 12th St, New York City, NY 10001" +176721,AA Batteries (4-pack),1,3.84,03/06/19 07:59,"84 Cedar St, Seattle, WA 98101" +176722,Wired Headphones,1,11.99,03/24/19 10:09,"938 Dogwood St, San Francisco, CA 94016" +176723,Lightning Charging Cable,1,14.95,03/09/19 12:48,"237 Washington St, Portland, OR 97035" +176724,Wired Headphones,1,11.99,03/13/19 16:04,"914 14th St, Boston, MA 02215" +176725,AA Batteries (4-pack),2,3.84,03/15/19 11:06,"317 Ridge St, Los Angeles, CA 90001" +176726,27in FHD Monitor,1,149.99,03/05/19 07:58,"650 Church St, Dallas, TX 75001" +176727,USB-C Charging Cable,2,11.95,03/01/19 14:15,"809 5th St, San Francisco, CA 94016" +176728,Wired Headphones,1,11.99,03/28/19 12:18,"284 Dogwood St, Atlanta, GA 30301" +176729,Lightning Charging Cable,1,14.95,03/06/19 08:23,"89 Madison St, Atlanta, GA 30301" +176730,Bose SoundSport Headphones,1,99.99,03/21/19 06:31,"578 Lincoln St, Atlanta, GA 30301" +176731,Lightning Charging Cable,1,14.95,03/14/19 16:28,"232 Hill St, Los Angeles, CA 90001" +176732,27in 4K Gaming Monitor,1,389.99,03/21/19 23:17,"658 Adams St, Dallas, TX 75001" +176733,Apple Airpods Headphones,1,150,03/24/19 09:17,"928 Meadow St, San Francisco, CA 94016" +176734,AA Batteries (4-pack),1,3.84,03/30/19 22:41,"664 1st St, Austin, TX 73301" +176735,27in 4K Gaming Monitor,1,389.99,03/12/19 19:08,"294 Madison St, Dallas, TX 75001" +176736,Wired Headphones,1,11.99,03/22/19 17:33,"908 Wilson St, Los Angeles, CA 90001" +176737,ThinkPad Laptop,1,999.99,03/25/19 12:00,"745 11th St, Dallas, TX 75001" +176738,Macbook Pro Laptop,1,1700,03/01/19 17:43,"822 Elm St, Boston, MA 02215" +176739,AA Batteries (4-pack),1,3.84,03/18/19 14:07,"766 14th St, Atlanta, GA 30301" +176740,Wired Headphones,1,11.99,03/23/19 14:44,"328 Dogwood St, Seattle, WA 98101" +176741,Google Phone,1,600,03/03/19 16:40,"941 Forest St, Austin, TX 73301" +176742,34in Ultrawide Monitor,1,379.99,03/06/19 12:43,"208 River St, New York City, NY 10001" +176743,Apple Airpods Headphones,1,150,03/23/19 23:53,"298 Forest St, Austin, TX 73301" +176744,Lightning Charging Cable,1,14.95,03/31/19 14:09,"423 Church St, Los Angeles, CA 90001" +176745,Lightning Charging Cable,2,14.95,03/14/19 13:09,"419 South St, San Francisco, CA 94016" +176746,AAA Batteries (4-pack),1,2.99,03/01/19 19:43,"504 Chestnut St, Boston, MA 02215" +176747,USB-C Charging Cable,2,11.95,03/03/19 19:54,"284 4th St, Austin, TX 73301" +176748,Apple Airpods Headphones,1,150,03/28/19 13:04,"924 1st St, San Francisco, CA 94016" +176749,27in FHD Monitor,1,149.99,03/04/19 10:53,"149 Jefferson St, Los Angeles, CA 90001" +176750,27in FHD Monitor,1,149.99,03/22/19 18:20,"369 Hickory St, New York City, NY 10001" +176751,AA Batteries (4-pack),1,3.84,03/24/19 13:58,"663 Adams St, Dallas, TX 75001" +176752,Wired Headphones,1,11.99,03/02/19 18:27,"341 Lakeview St, Boston, MA 02215" +176753,Wired Headphones,1,11.99,03/05/19 21:39,"694 Sunset St, Boston, MA 02215" +176754,Lightning Charging Cable,1,14.95,03/03/19 16:44,"267 Lake St, Boston, MA 02215" +176755,AAA Batteries (4-pack),2,2.99,03/17/19 13:12,"698 Church St, Atlanta, GA 30301" +176756,Bose SoundSport Headphones,1,99.99,03/10/19 19:28,"479 Dogwood St, Dallas, TX 75001" +176757,iPhone,1,700,03/06/19 12:07,"783 Hickory St, Los Angeles, CA 90001" +176758,Bose SoundSport Headphones,1,99.99,03/17/19 02:18,"13 Church St, Seattle, WA 98101" +176759,Wired Headphones,1,11.99,03/11/19 15:18,"538 Jefferson St, Boston, MA 02215" +176760,Macbook Pro Laptop,1,1700,03/07/19 17:55,"805 Meadow St, New York City, NY 10001" +176761,AA Batteries (4-pack),1,3.84,03/01/19 20:44,"424 Dogwood St, Dallas, TX 75001" +176762,Google Phone,1,600,03/03/19 10:04,"153 Meadow St, Dallas, TX 75001" +176762,USB-C Charging Cable,1,11.95,03/03/19 10:04,"153 Meadow St, Dallas, TX 75001" +176763,USB-C Charging Cable,1,11.95,03/27/19 14:43,"700 4th St, Dallas, TX 75001" +176764,Flatscreen TV,1,300,03/14/19 16:02,"71 Walnut St, Atlanta, GA 30301" +176765,Lightning Charging Cable,1,14.95,03/14/19 14:15,"18 Spruce St, San Francisco, CA 94016" +176766,AAA Batteries (4-pack),1,2.99,03/16/19 18:21,"650 Elm St, San Francisco, CA 94016" +176767,27in 4K Gaming Monitor,1,389.99,03/14/19 13:40,"755 10th St, Los Angeles, CA 90001" +176768,AA Batteries (4-pack),1,3.84,03/07/19 15:48,"17 8th St, New York City, NY 10001" +176769,USB-C Charging Cable,1,11.95,03/06/19 14:07,"699 North St, Atlanta, GA 30301" +176770,USB-C Charging Cable,1,11.95,03/07/19 06:13,"669 Cedar St, New York City, NY 10001" +176771,AA Batteries (4-pack),1,3.84,03/15/19 13:00,"786 Forest St, New York City, NY 10001" +176772,Lightning Charging Cable,1,14.95,03/31/19 11:52,"635 Park St, Dallas, TX 75001" +176772,Lightning Charging Cable,1,14.95,03/31/19 11:52,"635 Park St, Dallas, TX 75001" +176773,AAA Batteries (4-pack),1,2.99,03/15/19 16:24,"168 1st St, Atlanta, GA 30301" +176774,Wired Headphones,1,11.99,03/27/19 11:44,"241 River St, San Francisco, CA 94016" +176775,AAA Batteries (4-pack),1,2.99,03/16/19 01:57,"360 7th St, New York City, NY 10001" +176776,AAA Batteries (4-pack),2,2.99,03/26/19 08:32,"980 Cherry St, Boston, MA 02215" +176777,Lightning Charging Cable,1,14.95,03/31/19 08:46,"249 Walnut St, Los Angeles, CA 90001" +176778,AAA Batteries (4-pack),1,2.99,03/28/19 13:43,"830 1st St, Dallas, TX 75001" +176779,27in FHD Monitor,1,149.99,03/02/19 15:42,"546 Dogwood St, New York City, NY 10001" +176780,iPhone,1,700,03/23/19 23:18,"667 Hickory St, Dallas, TX 75001" +176781,Flatscreen TV,1,300,03/15/19 15:07,"257 Ridge St, San Francisco, CA 94016" +176782,Lightning Charging Cable,1,14.95,03/03/19 12:36,"802 Adams St, New York City, NY 10001" +176783,AAA Batteries (4-pack),1,2.99,03/17/19 12:24,"986 Dogwood St, Atlanta, GA 30301" +176784,Apple Airpods Headphones,2,150,04/01/19 00:48,"111 Jefferson St, Atlanta, GA 30301" +176785,AAA Batteries (4-pack),1,2.99,03/10/19 19:33,"856 Hill St, New York City, NY 10001" +176786,Wired Headphones,1,11.99,03/29/19 08:57,"485 Church St, Los Angeles, CA 90001" +176787,27in 4K Gaming Monitor,1,389.99,03/13/19 11:43,"130 Park St, Portland, OR 97035" +176788,Wired Headphones,1,11.99,03/18/19 20:29,"823 5th St, Seattle, WA 98101" +176789,AAA Batteries (4-pack),1,2.99,03/15/19 18:48,"305 Lake St, Austin, TX 73301" +176790,Flatscreen TV,1,300,03/16/19 20:25,"170 8th St, San Francisco, CA 94016" +176791,Lightning Charging Cable,1,14.95,03/23/19 12:47,"529 River St, San Francisco, CA 94016" +176792,Lightning Charging Cable,1,14.95,03/26/19 11:35,"513 Chestnut St, San Francisco, CA 94016" +176793,iPhone,1,700,03/19/19 14:42,"734 Highland St, New York City, NY 10001" +176794,Bose SoundSport Headphones,1,99.99,03/04/19 09:26,"376 7th St, Los Angeles, CA 90001" +176795,Lightning Charging Cable,1,14.95,03/15/19 13:56,"480 Pine St, San Francisco, CA 94016" +176796,27in FHD Monitor,1,149.99,03/13/19 18:50,"700 Maple St, Los Angeles, CA 90001" +176797,Apple Airpods Headphones,1,150,03/30/19 14:23,"1 11th St, San Francisco, CA 94016" +176798,27in 4K Gaming Monitor,1,389.99,03/15/19 11:32,"932 Church St, New York City, NY 10001" +176799,34in Ultrawide Monitor,1,379.99,03/14/19 20:35,"38 Highland St, San Francisco, CA 94016" +176800,iPhone,1,700,03/22/19 22:32,"101 Center St, Boston, MA 02215" +176800,Lightning Charging Cable,1,14.95,03/22/19 22:32,"101 Center St, Boston, MA 02215" +,,,,, +176801,Bose SoundSport Headphones,1,99.99,03/10/19 13:30,"991 Lincoln St, New York City, NY 10001" +176802,Apple Airpods Headphones,1,150,03/20/19 20:09,"625 Jackson St, Portland, OR 97035" +176803,Bose SoundSport Headphones,1,99.99,03/20/19 14:23,"545 8th St, Los Angeles, CA 90001" +176804,34in Ultrawide Monitor,1,379.99,03/29/19 18:22,"871 River St, New York City, NY 10001" +176805,AAA Batteries (4-pack),2,2.99,03/01/19 21:39,"500 7th St, Seattle, WA 98101" +176806,Apple Airpods Headphones,1,150,03/14/19 11:21,"613 8th St, Dallas, TX 75001" +176807,27in 4K Gaming Monitor,1,389.99,03/01/19 20:11,"884 14th St, Dallas, TX 75001" +176808,ThinkPad Laptop,1,999.99,03/19/19 11:17,"305 8th St, Atlanta, GA 30301" +176809,Lightning Charging Cable,1,14.95,03/28/19 02:48,"746 Dogwood St, San Francisco, CA 94016" +176810,Lightning Charging Cable,1,14.95,03/28/19 22:08,"818 Church St, New York City, NY 10001" +176811,iPhone,1,700,03/17/19 12:47,"600 Walnut St, Boston, MA 02215" +176812,USB-C Charging Cable,1,11.95,03/18/19 21:47,"873 Wilson St, Los Angeles, CA 90001" +176813,Google Phone,1,600,03/02/19 20:39,"965 West St, Dallas, TX 75001" +176814,AAA Batteries (4-pack),3,2.99,03/17/19 13:24,"382 Church St, Austin, TX 73301" +176815,Wired Headphones,1,11.99,03/25/19 21:26,"877 Center St, Austin, TX 73301" +176816,USB-C Charging Cable,1,11.95,03/21/19 20:14,"257 Walnut St, San Francisco, CA 94016" +176817,Bose SoundSport Headphones,1,99.99,03/19/19 20:44,"999 13th St, New York City, NY 10001" +176818,27in 4K Gaming Monitor,1,389.99,03/27/19 23:47,"176 Park St, San Francisco, CA 94016" +176819,Wired Headphones,1,11.99,03/10/19 13:20,"502 Walnut St, Los Angeles, CA 90001" +176820,27in 4K Gaming Monitor,1,389.99,03/12/19 15:42,"238 Cedar St, New York City, NY 10001" +176821,Google Phone,1,600,03/11/19 13:29,"633 North St, Portland, ME 04101" +176822,34in Ultrawide Monitor,1,379.99,03/06/19 11:57,"919 Lincoln St, New York City, NY 10001" +176823,Lightning Charging Cable,1,14.95,03/06/19 10:12,"385 5th St, Portland, OR 97035" +176824,USB-C Charging Cable,1,11.95,03/20/19 00:26,"944 Willow St, Seattle, WA 98101" +176825,AAA Batteries (4-pack),1,2.99,03/05/19 20:46,"740 Walnut St, Los Angeles, CA 90001" +176826,Bose SoundSport Headphones,1,99.99,03/20/19 14:15,"191 8th St, New York City, NY 10001" +176826,Apple Airpods Headphones,1,150,03/20/19 14:15,"191 8th St, New York City, NY 10001" +176827,Macbook Pro Laptop,1,1700,03/13/19 11:48,"521 Center St, Seattle, WA 98101" +176828,27in 4K Gaming Monitor,1,389.99,03/23/19 13:03,"41 Washington St, Boston, MA 02215" +176829,Lightning Charging Cable,1,14.95,03/06/19 08:16,"413 14th St, New York City, NY 10001" +176830,Google Phone,1,600,03/09/19 15:45,"149 1st St, Boston, MA 02215" +176831,Apple Airpods Headphones,1,150,03/10/19 14:51,"983 9th St, Seattle, WA 98101" +176832,USB-C Charging Cable,1,11.95,03/07/19 11:25,"647 Maple St, Dallas, TX 75001" +176833,Vareebadd Phone,1,400,03/02/19 18:14,"361 1st St, Boston, MA 02215" +176834,Apple Airpods Headphones,1,150,03/31/19 16:14,"565 Main St, Boston, MA 02215" +176835,AA Batteries (4-pack),1,3.84,03/11/19 02:11,"556 5th St, Los Angeles, CA 90001" +176836,USB-C Charging Cable,1,11.95,03/12/19 11:55,"752 Meadow St, Seattle, WA 98101" +176837,Apple Airpods Headphones,1,150,03/05/19 21:48,"177 11th St, Boston, MA 02215" +176838,AA Batteries (4-pack),1,3.84,03/31/19 12:44,"790 1st St, Los Angeles, CA 90001" +176839,AA Batteries (4-pack),1,3.84,03/26/19 11:50,"927 Forest St, Los Angeles, CA 90001" +176840,20in Monitor,1,109.99,03/06/19 16:39,"227 1st St, New York City, NY 10001" +176841,AAA Batteries (4-pack),1,2.99,03/24/19 06:04,"421 Center St, Seattle, WA 98101" +176842,AAA Batteries (4-pack),1,2.99,03/27/19 10:23,"427 10th St, San Francisco, CA 94016" +176843,AAA Batteries (4-pack),2,2.99,03/07/19 23:01,"126 8th St, Austin, TX 73301" +176844,ThinkPad Laptop,1,999.99,03/17/19 21:31,"202 11th St, New York City, NY 10001" +176845,Wired Headphones,1,11.99,03/17/19 07:57,"188 Lake St, Los Angeles, CA 90001" +176846,Macbook Pro Laptop,1,1700,03/19/19 14:46,"471 Walnut St, Atlanta, GA 30301" +176847,Apple Airpods Headphones,1,150,03/07/19 21:22,"48 9th St, Los Angeles, CA 90001" +176848,Flatscreen TV,1,300,03/29/19 14:34,"561 4th St, Dallas, TX 75001" +176849,Lightning Charging Cable,1,14.95,03/11/19 21:10,"331 Meadow St, Dallas, TX 75001" +176850,AA Batteries (4-pack),1,3.84,03/10/19 21:57,"599 Madison St, San Francisco, CA 94016" +176851,Flatscreen TV,1,300,03/11/19 18:40,"318 Walnut St, Los Angeles, CA 90001" +176851,Apple Airpods Headphones,1,150,03/11/19 18:40,"318 Walnut St, Los Angeles, CA 90001" +176852,Bose SoundSport Headphones,1,99.99,03/26/19 15:04,"265 North St, New York City, NY 10001" +176853,AAA Batteries (4-pack),2,2.99,03/10/19 11:25,"419 Cedar St, Los Angeles, CA 90001" +176854,Lightning Charging Cable,2,14.95,03/12/19 19:39,"821 Willow St, Boston, MA 02215" +176855,AA Batteries (4-pack),1,3.84,03/13/19 21:47,"816 Ridge St, Atlanta, GA 30301" +176856,AAA Batteries (4-pack),4,2.99,03/11/19 17:33,"24 Chestnut St, San Francisco, CA 94016" +176857,USB-C Charging Cable,1,11.95,03/23/19 17:11,"820 12th St, Boston, MA 02215" +176858,iPhone,1,700,03/14/19 23:35,"888 West St, Austin, TX 73301" +176859,AAA Batteries (4-pack),1,2.99,03/18/19 12:25,"38 13th St, Portland, OR 97035" +176860,AAA Batteries (4-pack),1,2.99,03/05/19 11:30,"925 Spruce St, San Francisco, CA 94016" +176861,Apple Airpods Headphones,1,150,03/06/19 08:39,"11 Walnut St, Portland, OR 97035" +176862,Macbook Pro Laptop,1,1700,03/22/19 18:47,"871 Park St, New York City, NY 10001" +176863,34in Ultrawide Monitor,1,379.99,03/04/19 12:22,"374 Church St, Boston, MA 02215" +176864,AAA Batteries (4-pack),1,2.99,03/30/19 18:44,"85 Ridge St, Dallas, TX 75001" +176865,Apple Airpods Headphones,1,150,03/23/19 10:31,"883 6th St, New York City, NY 10001" +176866,Wired Headphones,1,11.99,03/24/19 20:31,"392 South St, Seattle, WA 98101" +176867,Flatscreen TV,1,300,03/08/19 17:27,"128 Willow St, Boston, MA 02215" +176868,iPhone,1,700,03/17/19 02:35,"500 Pine St, Los Angeles, CA 90001" +176868,Lightning Charging Cable,1,14.95,03/17/19 02:35,"500 Pine St, Los Angeles, CA 90001" +176869,Lightning Charging Cable,1,14.95,03/12/19 21:48,"931 Wilson St, Los Angeles, CA 90001" +176870,AA Batteries (4-pack),3,3.84,03/09/19 11:12,"729 4th St, San Francisco, CA 94016" +176871,Flatscreen TV,1,300,03/19/19 12:24,"468 6th St, New York City, NY 10001" +176872,34in Ultrawide Monitor,1,379.99,03/16/19 01:19,"412 9th St, Boston, MA 02215" +176873,34in Ultrawide Monitor,1,379.99,03/19/19 19:28,"272 Jefferson St, Los Angeles, CA 90001" +176874,AA Batteries (4-pack),2,3.84,03/29/19 13:55,"389 7th St, New York City, NY 10001" +176875,Macbook Pro Laptop,1,1700,03/27/19 09:30,"369 Center St, Atlanta, GA 30301" +176876,USB-C Charging Cable,1,11.95,03/28/19 14:44,"3 Ridge St, Seattle, WA 98101" +176877,Apple Airpods Headphones,1,150,03/07/19 10:45,"576 Cedar St, Seattle, WA 98101" +176878,iPhone,1,700,03/11/19 21:16,"994 Highland St, Boston, MA 02215" +176878,Lightning Charging Cable,1,14.95,03/11/19 21:16,"994 Highland St, Boston, MA 02215" +176878,Apple Airpods Headphones,1,150,03/11/19 21:16,"994 Highland St, Boston, MA 02215" +176879,AAA Batteries (4-pack),3,2.99,03/29/19 22:06,"910 Jackson St, Atlanta, GA 30301" +176880,AA Batteries (4-pack),1,3.84,03/09/19 20:32,"680 Cedar St, Dallas, TX 75001" +176881,Wired Headphones,1,11.99,03/16/19 16:01,"972 Meadow St, Dallas, TX 75001" +176882,27in 4K Gaming Monitor,1,389.99,03/09/19 08:21,"328 Johnson St, Los Angeles, CA 90001" +176883,Wired Headphones,1,11.99,03/26/19 17:04,"12 Park St, Austin, TX 73301" +176884,Wired Headphones,1,11.99,03/23/19 19:16,"262 Dogwood St, Dallas, TX 75001" +176885,Google Phone,1,600,03/20/19 15:20,"618 Dogwood St, San Francisco, CA 94016" +176886,USB-C Charging Cable,1,11.95,03/24/19 16:24,"321 14th St, Portland, ME 04101" +176887,Flatscreen TV,1,300,03/03/19 19:10,"750 Forest St, Los Angeles, CA 90001" +176888,AA Batteries (4-pack),2,3.84,03/18/19 15:41,"90 13th St, San Francisco, CA 94016" +176889,Lightning Charging Cable,1,14.95,03/15/19 21:03,"583 Lake St, San Francisco, CA 94016" +176890,Apple Airpods Headphones,1,150,03/01/19 14:10,"392 Sunset St, Seattle, WA 98101" +176891,Bose SoundSport Headphones,1,99.99,03/27/19 22:52,"859 Maple St, Los Angeles, CA 90001" +176892,AA Batteries (4-pack),2,3.84,03/08/19 00:54,"356 South St, Portland, OR 97035" +176893,AA Batteries (4-pack),1,3.84,03/03/19 18:37,"784 Forest St, Portland, OR 97035" +176894,Apple Airpods Headphones,1,150,03/17/19 21:45,"667 Washington St, New York City, NY 10001" +176895,AAA Batteries (4-pack),2,2.99,03/05/19 10:59,"160 Main St, Seattle, WA 98101" +176896,USB-C Charging Cable,1,11.95,03/13/19 15:43,"468 South St, Austin, TX 73301" +176897,AA Batteries (4-pack),2,3.84,03/11/19 19:28,"431 1st St, Seattle, WA 98101" +176898,Wired Headphones,1,11.99,03/19/19 16:53,"355 Meadow St, New York City, NY 10001" +176899,AA Batteries (4-pack),1,3.84,03/08/19 09:41,"673 Wilson St, New York City, NY 10001" +176900,AA Batteries (4-pack),1,3.84,03/06/19 11:51,"459 Willow St, New York City, NY 10001" +176901,Lightning Charging Cable,1,14.95,03/24/19 08:22,"390 Lake St, Los Angeles, CA 90001" +176902,USB-C Charging Cable,1,11.95,03/03/19 19:39,"245 Center St, Boston, MA 02215" +176903,Lightning Charging Cable,1,14.95,03/19/19 22:10,"35 Willow St, Atlanta, GA 30301" +176904,USB-C Charging Cable,1,11.95,03/06/19 00:52,"630 West St, New York City, NY 10001" +176905,Lightning Charging Cable,1,14.95,03/09/19 19:09,"110 1st St, Boston, MA 02215" +176906,Lightning Charging Cable,1,14.95,03/14/19 16:25,"13 2nd St, Atlanta, GA 30301" +176907,Lightning Charging Cable,1,14.95,03/13/19 21:27,"56 Dogwood St, Boston, MA 02215" +176908,Lightning Charging Cable,1,14.95,03/02/19 20:25,"510 South St, San Francisco, CA 94016" +176909,AAA Batteries (4-pack),1,2.99,03/26/19 23:06,"476 13th St, Atlanta, GA 30301" +176910,ThinkPad Laptop,1,999.99,03/14/19 17:33,"326 Elm St, Los Angeles, CA 90001" +176911,Wired Headphones,1,11.99,03/23/19 22:32,"413 6th St, San Francisco, CA 94016" +176912,USB-C Charging Cable,1,11.95,03/05/19 15:01,"606 Madison St, San Francisco, CA 94016" +176913,AA Batteries (4-pack),1,3.84,03/29/19 00:20,"678 Lakeview St, San Francisco, CA 94016" +176914,Apple Airpods Headphones,1,150,03/29/19 21:16,"141 5th St, Portland, OR 97035" +176915,Lightning Charging Cable,1,14.95,03/24/19 23:23,"116 12th St, Atlanta, GA 30301" +176916,AAA Batteries (4-pack),3,2.99,03/11/19 18:05,"37 2nd St, New York City, NY 10001" +176917,Wired Headphones,1,11.99,03/06/19 13:17,"175 7th St, Dallas, TX 75001" +176918,27in 4K Gaming Monitor,1,389.99,03/31/19 19:16,"519 Cherry St, Dallas, TX 75001" +176919,Google Phone,1,600,03/31/19 14:32,"430 Meadow St, Dallas, TX 75001" +176920,USB-C Charging Cable,1,11.95,03/09/19 21:30,"450 North St, New York City, NY 10001" +176921,27in FHD Monitor,1,149.99,03/29/19 13:03,"204 Johnson St, New York City, NY 10001" +176922,AA Batteries (4-pack),1,3.84,03/21/19 14:35,"444 Church St, Austin, TX 73301" +176923,Wired Headphones,1,11.99,03/01/19 20:50,"937 Madison St, San Francisco, CA 94016" +176924,Google Phone,1,600,03/05/19 07:30,"651 Wilson St, Atlanta, GA 30301" +176924,USB-C Charging Cable,1,11.95,03/05/19 07:30,"651 Wilson St, Atlanta, GA 30301" +176925,Bose SoundSport Headphones,1,99.99,03/17/19 18:13,"690 River St, Seattle, WA 98101" +176926,Lightning Charging Cable,1,14.95,03/20/19 16:56,"387 Madison St, Boston, MA 02215" +176927,Google Phone,1,600,03/28/19 15:27,"215 Jackson St, Atlanta, GA 30301" +176927,USB-C Charging Cable,1,11.95,03/28/19 15:27,"215 Jackson St, Atlanta, GA 30301" +176928,Bose SoundSport Headphones,1,99.99,03/14/19 12:34,"676 12th St, Dallas, TX 75001" +176929,Bose SoundSport Headphones,1,99.99,03/14/19 15:07,"209 Ridge St, San Francisco, CA 94016" +176930,Apple Airpods Headphones,1,150,03/13/19 12:58,"197 Forest St, Atlanta, GA 30301" +176931,Bose SoundSport Headphones,1,99.99,03/25/19 17:09,"643 9th St, Los Angeles, CA 90001" +176932,Apple Airpods Headphones,1,150,03/28/19 00:15,"705 Maple St, San Francisco, CA 94016" +176933,Apple Airpods Headphones,1,150,03/02/19 20:54,"493 Forest St, Portland, OR 97035" +176934,USB-C Charging Cable,1,11.95,03/26/19 21:23,"879 6th St, New York City, NY 10001" +176935,Macbook Pro Laptop,1,1700,03/27/19 21:06,"162 Johnson St, Dallas, TX 75001" +176936,Lightning Charging Cable,1,14.95,03/26/19 19:02,"494 5th St, Boston, MA 02215" +176937,iPhone,1,700,03/21/19 14:25,"800 Ridge St, New York City, NY 10001" +176938,Lightning Charging Cable,1,14.95,03/24/19 00:49,"787 Wilson St, Atlanta, GA 30301" +176939,Lightning Charging Cable,1,14.95,03/14/19 07:57,"456 Hickory St, San Francisco, CA 94016" +176940,Lightning Charging Cable,1,14.95,03/25/19 08:27,"410 Adams St, Los Angeles, CA 90001" +176941,34in Ultrawide Monitor,1,379.99,03/21/19 18:12,"459 Park St, San Francisco, CA 94016" +176942,ThinkPad Laptop,1,999.99,03/31/19 08:42,"783 12th St, Los Angeles, CA 90001" +176943,Bose SoundSport Headphones,1,99.99,03/20/19 10:51,"495 Main St, San Francisco, CA 94016" +176944,AA Batteries (4-pack),1,3.84,03/25/19 00:51,"445 5th St, Los Angeles, CA 90001" +176945,Wired Headphones,1,11.99,03/09/19 13:14,"23 Park St, Dallas, TX 75001" +176946,Bose SoundSport Headphones,1,99.99,03/30/19 12:35,"969 Center St, San Francisco, CA 94016" +176947,AA Batteries (4-pack),1,3.84,03/13/19 15:39,"15 Elm St, Dallas, TX 75001" +176948,27in FHD Monitor,1,149.99,03/12/19 17:21,"326 11th St, San Francisco, CA 94016" +176949,20in Monitor,1,109.99,03/31/19 17:40,"685 6th St, Portland, OR 97035" +176950,20in Monitor,1,109.99,03/30/19 01:33,"339 Lakeview St, Los Angeles, CA 90001" +176951,AAA Batteries (4-pack),2,2.99,03/16/19 17:01,"977 South St, Dallas, TX 75001" +176952,Lightning Charging Cable,1,14.95,03/07/19 14:59,"53 6th St, Atlanta, GA 30301" +176953,AA Batteries (4-pack),1,3.84,03/08/19 13:12,"435 Park St, Seattle, WA 98101" +176954,iPhone,1,700,03/20/19 18:57,"689 7th St, San Francisco, CA 94016" +176955,Google Phone,1,600,03/21/19 12:12,"992 Lakeview St, San Francisco, CA 94016" +176956,Lightning Charging Cable,1,14.95,03/23/19 13:37,"871 Elm St, Atlanta, GA 30301" +176957,AAA Batteries (4-pack),1,2.99,03/28/19 12:33,"842 1st St, Austin, TX 73301" +176958,Macbook Pro Laptop,1,1700,03/22/19 14:02,"614 West St, Los Angeles, CA 90001" +176959,Bose SoundSport Headphones,1,99.99,03/13/19 13:53,"799 Park St, Seattle, WA 98101" +176960,27in FHD Monitor,1,149.99,03/01/19 17:38,"878 Spruce St, San Francisco, CA 94016" +176961,Apple Airpods Headphones,1,150,03/18/19 10:11,"765 Lakeview St, Los Angeles, CA 90001" +176962,Apple Airpods Headphones,1,150,03/30/19 20:21,"148 Hill St, Atlanta, GA 30301" +176963,Macbook Pro Laptop,1,1700,03/04/19 15:18,"441 Johnson St, San Francisco, CA 94016" +176964,iPhone,1,700,03/08/19 12:45,"315 South St, San Francisco, CA 94016" +176965,USB-C Charging Cable,1,11.95,03/19/19 19:09,"187 Park St, New York City, NY 10001" +176966,AA Batteries (4-pack),1,3.84,03/08/19 01:35,"36 Sunset St, Seattle, WA 98101" +176967,AA Batteries (4-pack),1,3.84,03/26/19 15:11,"925 South St, New York City, NY 10001" +176968,Wired Headphones,1,11.99,03/22/19 10:37,"375 Washington St, Los Angeles, CA 90001" +176969,Lightning Charging Cable,1,14.95,03/09/19 10:31,"397 Hill St, Los Angeles, CA 90001" +176970,27in 4K Gaming Monitor,1,389.99,03/15/19 00:28,"188 Forest St, Seattle, WA 98101" +176971,Macbook Pro Laptop,1,1700,03/01/19 19:05,"300 11th St, Seattle, WA 98101" +176972,AA Batteries (4-pack),1,3.84,03/04/19 00:37,"314 Forest St, Seattle, WA 98101" +176973,Google Phone,1,600,03/03/19 08:44,"367 13th St, New York City, NY 10001" +176974,Macbook Pro Laptop,1,1700,03/14/19 16:56,"303 14th St, Atlanta, GA 30301" +176975,USB-C Charging Cable,1,11.95,03/24/19 10:45,"766 7th St, New York City, NY 10001" +176976,USB-C Charging Cable,1,11.95,03/30/19 23:03,"327 Walnut St, San Francisco, CA 94016" +176977,USB-C Charging Cable,1,11.95,03/23/19 08:57,"446 Cedar St, Los Angeles, CA 90001" +176978,USB-C Charging Cable,1,11.95,03/07/19 16:20,"719 Dogwood St, Dallas, TX 75001" +176979,AA Batteries (4-pack),1,3.84,03/26/19 07:22,"666 Lincoln St, San Francisco, CA 94016" +176980,27in FHD Monitor,1,149.99,03/23/19 17:02,"535 Lakeview St, Los Angeles, CA 90001" +176981,USB-C Charging Cable,2,11.95,03/21/19 18:34,"220 5th St, Boston, MA 02215" +176982,Lightning Charging Cable,1,14.95,03/04/19 01:15,"659 Ridge St, San Francisco, CA 94016" +176983,Apple Airpods Headphones,1,150,03/26/19 13:02,"820 1st St, Atlanta, GA 30301" +176984,Wired Headphones,1,11.99,03/19/19 12:38,"740 4th St, Portland, OR 97035" +176985,Flatscreen TV,1,300,03/23/19 11:39,"918 Dogwood St, Seattle, WA 98101" +176986,27in FHD Monitor,1,149.99,03/06/19 12:38,"925 Spruce St, Portland, ME 04101" +176987,Apple Airpods Headphones,1,150,03/29/19 21:10,"661 Jackson St, Atlanta, GA 30301" +176988,27in FHD Monitor,1,149.99,03/11/19 15:23,"333 North St, Boston, MA 02215" +176989,27in 4K Gaming Monitor,1,389.99,03/11/19 20:39,"151 Adams St, New York City, NY 10001" +176990,AAA Batteries (4-pack),1,2.99,03/31/19 08:33,"791 Dogwood St, Los Angeles, CA 90001" +176991,Wired Headphones,2,11.99,03/21/19 16:39,"152 Hickory St, Seattle, WA 98101" +176992,Lightning Charging Cable,1,14.95,03/16/19 16:19,"748 Jefferson St, Los Angeles, CA 90001" +176993,34in Ultrawide Monitor,1,379.99,03/15/19 07:47,"958 Cedar St, San Francisco, CA 94016" +176994,Wired Headphones,1,11.99,03/21/19 01:37,"497 Madison St, Dallas, TX 75001" +176995,Wired Headphones,1,11.99,03/16/19 21:00,"6 9th St, New York City, NY 10001" +176996,AAA Batteries (4-pack),1,2.99,03/31/19 23:26,"177 Madison St, Dallas, TX 75001" +176997,USB-C Charging Cable,1,11.95,03/19/19 08:06,"973 Church St, San Francisco, CA 94016" +176998,AA Batteries (4-pack),1,3.84,03/19/19 18:31,"927 Church St, Los Angeles, CA 90001" +176999,Google Phone,1,600,03/11/19 21:40,"257 13th St, Austin, TX 73301" +176999,USB-C Charging Cable,1,11.95,03/11/19 21:40,"257 13th St, Austin, TX 73301" +177000,AA Batteries (4-pack),1,3.84,03/10/19 13:06,"851 Forest St, Los Angeles, CA 90001" +177001,ThinkPad Laptop,1,999.99,03/12/19 22:01,"826 Church St, Austin, TX 73301" +177002,Flatscreen TV,1,300,03/17/19 18:39,"266 Lakeview St, Atlanta, GA 30301" +177003,Wired Headphones,1,11.99,03/21/19 08:52,"146 Hill St, Los Angeles, CA 90001" +177004,27in FHD Monitor,1,149.99,03/16/19 18:04,"315 Sunset St, New York City, NY 10001" +177005,34in Ultrawide Monitor,1,379.99,03/22/19 23:07,"576 Jefferson St, Seattle, WA 98101" +177006,Lightning Charging Cable,1,14.95,03/01/19 10:41,"839 Highland St, San Francisco, CA 94016" +177007,AAA Batteries (4-pack),1,2.99,03/17/19 23:06,"873 Hill St, New York City, NY 10001" +177008,Wired Headphones,1,11.99,03/10/19 14:26,"382 Willow St, Atlanta, GA 30301" +177009,Lightning Charging Cable,1,14.95,03/20/19 17:21,"699 Center St, Dallas, TX 75001" +177010,AA Batteries (4-pack),1,3.84,03/10/19 07:12,"42 Wilson St, Portland, OR 97035" +177011,Bose SoundSport Headphones,1,99.99,03/30/19 13:12,"658 Hill St, San Francisco, CA 94016" +177012,USB-C Charging Cable,1,11.95,03/04/19 00:08,"39 Walnut St, Los Angeles, CA 90001" +177013,AA Batteries (4-pack),1,3.84,03/21/19 13:34,"747 11th St, Atlanta, GA 30301" +177014,Apple Airpods Headphones,1,150,03/14/19 11:40,"598 Johnson St, Boston, MA 02215" +177015,20in Monitor,1,109.99,03/02/19 15:44,"676 6th St, Dallas, TX 75001" +177016,34in Ultrawide Monitor,1,379.99,03/15/19 12:13,"510 9th St, Los Angeles, CA 90001" +177017,Vareebadd Phone,1,400,03/28/19 13:51,"2 7th St, Austin, TX 73301" +177018,iPhone,1,700,03/10/19 14:48,"413 14th St, Atlanta, GA 30301" +177019,iPhone,1,700,03/21/19 07:59,"303 Spruce St, New York City, NY 10001" +177020,AA Batteries (4-pack),1,3.84,03/21/19 11:38,"152 West St, Los Angeles, CA 90001" +177021,Macbook Pro Laptop,1,1700,03/12/19 22:07,"147 River St, Los Angeles, CA 90001" +177022,AA Batteries (4-pack),2,3.84,03/13/19 02:31,"747 Pine St, Austin, TX 73301" +177023,Apple Airpods Headphones,1,150,03/27/19 13:49,"949 5th St, Seattle, WA 98101" +177024,Apple Airpods Headphones,1,150,03/31/19 18:21,"433 Jackson St, Dallas, TX 75001" +177025,Wired Headphones,1,11.99,03/11/19 01:13,"586 Highland St, Portland, ME 04101" +177026,20in Monitor,1,109.99,03/31/19 11:53,"816 Elm St, New York City, NY 10001" +177027,AAA Batteries (4-pack),1,2.99,03/29/19 05:52,"225 Chestnut St, San Francisco, CA 94016" +177028,Bose SoundSport Headphones,1,99.99,03/16/19 15:22,"344 Highland St, San Francisco, CA 94016" +177029,iPhone,1,700,03/29/19 20:19,"642 Madison St, Los Angeles, CA 90001" +177029,Wired Headphones,1,11.99,03/29/19 20:19,"642 Madison St, Los Angeles, CA 90001" +177030,34in Ultrawide Monitor,1,379.99,03/07/19 20:41,"150 Chestnut St, Boston, MA 02215" +177031,Bose SoundSport Headphones,1,99.99,03/31/19 19:21,"408 7th St, Seattle, WA 98101" +177032,iPhone,1,700,03/20/19 22:03,"542 Meadow St, Los Angeles, CA 90001" +177033,Macbook Pro Laptop,1,1700,03/13/19 13:35,"152 12th St, San Francisco, CA 94016" +177034,Lightning Charging Cable,1,14.95,03/18/19 01:07,"58 13th St, Los Angeles, CA 90001" +177035,Wired Headphones,1,11.99,03/27/19 11:06,"913 4th St, New York City, NY 10001" +177036,USB-C Charging Cable,1,11.95,03/30/19 15:23,"598 1st St, Portland, ME 04101" +177037,Google Phone,1,600,03/07/19 15:29,"420 1st St, New York City, NY 10001" +177038,USB-C Charging Cable,1,11.95,03/16/19 21:13,"690 12th St, Boston, MA 02215" +177039,Bose SoundSport Headphones,1,99.99,03/26/19 20:02,"407 Park St, Portland, OR 97035" +177040,27in 4K Gaming Monitor,1,389.99,03/15/19 16:09,"829 Lakeview St, Seattle, WA 98101" +177041,Lightning Charging Cable,1,14.95,03/24/19 12:55,"617 2nd St, Los Angeles, CA 90001" +177041,Wired Headphones,1,11.99,03/24/19 12:55,"617 2nd St, Los Angeles, CA 90001" +177042,Macbook Pro Laptop,1,1700,03/09/19 13:15,"97 Spruce St, San Francisco, CA 94016" +177043,USB-C Charging Cable,1,11.95,03/08/19 20:10,"78 Cherry St, Austin, TX 73301" +177044,USB-C Charging Cable,1,11.95,03/07/19 16:25,"937 Madison St, New York City, NY 10001" +177045,AA Batteries (4-pack),1,3.84,03/18/19 14:05,"43 River St, Boston, MA 02215" +177046,AAA Batteries (4-pack),1,2.99,03/29/19 08:38,"963 Lincoln St, Boston, MA 02215" +177047,Lightning Charging Cable,1,14.95,03/27/19 10:34,"365 4th St, San Francisco, CA 94016" +177048,iPhone,1,700,03/24/19 23:37,"890 Elm St, San Francisco, CA 94016" +177048,Apple Airpods Headphones,1,150,03/24/19 23:37,"890 Elm St, San Francisco, CA 94016" +177048,Wired Headphones,1,11.99,03/24/19 23:37,"890 Elm St, San Francisco, CA 94016" +177049,34in Ultrawide Monitor,1,379.99,03/29/19 17:57,"560 Cherry St, San Francisco, CA 94016" +177050,AA Batteries (4-pack),1,3.84,03/08/19 11:43,"910 West St, Dallas, TX 75001" +177051,27in 4K Gaming Monitor,1,389.99,03/29/19 12:51,"181 North St, Los Angeles, CA 90001" +177052,USB-C Charging Cable,1,11.95,03/30/19 17:47,"411 Main St, Atlanta, GA 30301" +177053,Lightning Charging Cable,1,14.95,03/12/19 07:46,"548 13th St, Austin, TX 73301" +177054,AAA Batteries (4-pack),3,2.99,03/09/19 16:53,"700 6th St, Seattle, WA 98101" +177055,Vareebadd Phone,1,400,03/08/19 13:52,"762 North St, Los Angeles, CA 90001" +177055,Bose SoundSport Headphones,1,99.99,03/08/19 13:52,"762 North St, Los Angeles, CA 90001" +177056,ThinkPad Laptop,1,999.99,03/31/19 10:36,"917 Hill St, San Francisco, CA 94016" +177057,USB-C Charging Cable,1,11.95,03/24/19 01:28,"841 Lincoln St, Portland, OR 97035" +177058,USB-C Charging Cable,1,11.95,03/17/19 22:29,"316 Sunset St, Los Angeles, CA 90001" +177059,AAA Batteries (4-pack),4,2.99,03/06/19 10:56,"638 Cedar St, Boston, MA 02215" +177060,USB-C Charging Cable,1,11.95,03/29/19 09:38,"231 2nd St, San Francisco, CA 94016" +177061,Macbook Pro Laptop,1,1700,03/11/19 10:14,"204 Center St, San Francisco, CA 94016" +177062,20in Monitor,1,109.99,03/21/19 11:06,"873 Washington St, Atlanta, GA 30301" +177063,Bose SoundSport Headphones,1,99.99,03/01/19 11:34,"455 Church St, Dallas, TX 75001" +177064,Bose SoundSport Headphones,1,99.99,03/24/19 21:56,"648 River St, New York City, NY 10001" +177065,AAA Batteries (4-pack),1,2.99,03/16/19 17:40,"472 Ridge St, Atlanta, GA 30301" +177066,Apple Airpods Headphones,1,150,03/01/19 19:18,"416 Ridge St, Dallas, TX 75001" +177067,Macbook Pro Laptop,1,1700,03/03/19 14:09,"669 Adams St, Atlanta, GA 30301" +177068,Apple Airpods Headphones,1,150,03/21/19 18:33,"481 1st St, Dallas, TX 75001" +177069,Bose SoundSport Headphones,1,99.99,03/26/19 14:14,"858 Center St, Los Angeles, CA 90001" +177070,Wired Headphones,1,11.99,03/08/19 12:49,"717 Park St, Portland, OR 97035" +177071,Lightning Charging Cable,1,14.95,03/22/19 09:15,"648 Adams St, Portland, OR 97035" +177072,AAA Batteries (4-pack),3,2.99,03/28/19 10:59,"415 West St, San Francisco, CA 94016" +177073,34in Ultrawide Monitor,1,379.99,03/07/19 08:46,"38 9th St, Boston, MA 02215" +177074,iPhone,1,700,03/31/19 13:55,"809 Pine St, Austin, TX 73301" +177075,ThinkPad Laptop,1,999.99,03/04/19 21:35,"635 Park St, San Francisco, CA 94016" +177076,USB-C Charging Cable,1,11.95,03/28/19 17:38,"137 Cherry St, Dallas, TX 75001" +177077,Lightning Charging Cable,1,14.95,03/04/19 00:35,"687 Sunset St, Atlanta, GA 30301" +177078,ThinkPad Laptop,1,999.99,03/25/19 16:43,"273 Forest St, Atlanta, GA 30301" +177079,AA Batteries (4-pack),1,3.84,03/27/19 11:08,"640 Forest St, Atlanta, GA 30301" +177080,20in Monitor,1,109.99,03/24/19 20:51,"147 9th St, Atlanta, GA 30301" +177081,AAA Batteries (4-pack),2,2.99,03/31/19 14:39,"419 Johnson St, San Francisco, CA 94016" +177082,Lightning Charging Cable,1,14.95,03/07/19 06:27,"853 Forest St, San Francisco, CA 94016" +177083,AA Batteries (4-pack),1,3.84,03/17/19 09:57,"584 South St, San Francisco, CA 94016" +177084,Apple Airpods Headphones,1,150,03/15/19 21:47,"480 11th St, New York City, NY 10001" +177085,AA Batteries (4-pack),1,3.84,03/18/19 14:26,"252 4th St, Boston, MA 02215" +177086,AAA Batteries (4-pack),1,2.99,03/27/19 21:09,"557 North St, Atlanta, GA 30301" +177087,AA Batteries (4-pack),2,3.84,03/31/19 23:15,"532 Jefferson St, Boston, MA 02215" +177088,27in FHD Monitor,1,149.99,03/24/19 13:27,"448 2nd St, Boston, MA 02215" +177089,27in FHD Monitor,1,149.99,03/10/19 14:20,"413 4th St, Boston, MA 02215" +177090,USB-C Charging Cable,1,11.95,03/31/19 12:17,"804 Johnson St, Dallas, TX 75001" +177091,Bose SoundSport Headphones,1,99.99,03/03/19 22:25,"121 2nd St, San Francisco, CA 94016" +177092,Apple Airpods Headphones,1,150,03/25/19 10:27,"666 Center St, New York City, NY 10001" +177093,AAA Batteries (4-pack),2,2.99,03/07/19 06:52,"272 8th St, Portland, OR 97035" +177094,Apple Airpods Headphones,1,150,03/08/19 12:05,"803 Center St, Los Angeles, CA 90001" +177095,USB-C Charging Cable,1,11.95,03/30/19 22:35,"393 Park St, New York City, NY 10001" +177096,iPhone,1,700,03/31/19 14:44,"542 Cedar St, Los Angeles, CA 90001" +177097,ThinkPad Laptop,1,999.99,03/30/19 22:19,"359 10th St, Portland, OR 97035" +177098,Macbook Pro Laptop,1,1700,03/18/19 11:33,"811 Jackson St, New York City, NY 10001" +177099,27in FHD Monitor,1,149.99,03/03/19 07:39,"841 Elm St, Seattle, WA 98101" +177100,AAA Batteries (4-pack),1,2.99,03/27/19 13:32,"965 Highland St, Atlanta, GA 30301" +177101,Lightning Charging Cable,1,14.95,03/31/19 14:00,"894 Spruce St, Seattle, WA 98101" +177102,Wired Headphones,1,11.99,03/31/19 18:26,"543 Hickory St, Los Angeles, CA 90001" +177103,AAA Batteries (4-pack),1,2.99,03/26/19 09:20,"860 Ridge St, Portland, OR 97035" +177104,Google Phone,1,600,03/01/19 08:22,"825 2nd St, Los Angeles, CA 90001" +177105,AA Batteries (4-pack),1,3.84,03/05/19 19:29,"965 Jackson St, Atlanta, GA 30301" +177106,27in FHD Monitor,1,149.99,03/25/19 13:22,"982 North St, Los Angeles, CA 90001" +177107,Bose SoundSport Headphones,1,99.99,03/11/19 20:48,"781 Chestnut St, New York City, NY 10001" +177108,USB-C Charging Cable,1,11.95,03/18/19 08:32,"552 Pine St, Seattle, WA 98101" +177109,USB-C Charging Cable,1,11.95,03/14/19 17:21,"863 13th St, San Francisco, CA 94016" +177110,AA Batteries (4-pack),1,3.84,03/23/19 23:44,"264 4th St, Austin, TX 73301" +177111,27in 4K Gaming Monitor,1,389.99,03/28/19 19:09,"401 Lake St, Dallas, TX 75001" +177112,Macbook Pro Laptop,1,1700,03/09/19 10:56,"150 Sunset St, Los Angeles, CA 90001" +177113,Lightning Charging Cable,1,14.95,03/27/19 22:31,"815 Adams St, Dallas, TX 75001" +177114,USB-C Charging Cable,1,11.95,03/09/19 19:24,"238 Maple St, New York City, NY 10001" +177115,Lightning Charging Cable,1,14.95,03/25/19 05:49,"495 Jackson St, Boston, MA 02215" +177116,AAA Batteries (4-pack),1,2.99,03/16/19 00:56,"482 Washington St, Austin, TX 73301" +177117,Wired Headphones,1,11.99,03/15/19 16:58,"714 South St, New York City, NY 10001" +177118,Bose SoundSport Headphones,1,99.99,03/16/19 20:51,"295 Meadow St, Atlanta, GA 30301" +177119,Apple Airpods Headphones,1,150,03/24/19 17:55,"949 Ridge St, New York City, NY 10001" +177120,AA Batteries (4-pack),1,3.84,03/26/19 23:43,"669 1st St, Austin, TX 73301" +177121,Wired Headphones,2,11.99,03/26/19 18:23,"133 10th St, Boston, MA 02215" +177121,AAA Batteries (4-pack),1,2.99,03/26/19 18:23,"133 10th St, Boston, MA 02215" +177122,USB-C Charging Cable,1,11.95,03/31/19 04:08,"698 Hickory St, New York City, NY 10001" +177123,Lightning Charging Cable,1,14.95,03/29/19 12:01,"269 Meadow St, San Francisco, CA 94016" +177124,USB-C Charging Cable,1,11.95,03/17/19 19:40,"314 4th St, San Francisco, CA 94016" +177125,Apple Airpods Headphones,1,150,03/30/19 14:06,"442 Sunset St, New York City, NY 10001" +177126,USB-C Charging Cable,1,11.95,03/29/19 18:16,"758 4th St, Los Angeles, CA 90001" +177127,Lightning Charging Cable,1,14.95,03/06/19 13:53,"99 Washington St, Dallas, TX 75001" +177128,AAA Batteries (4-pack),1,2.99,03/01/19 13:12,"524 Madison St, New York City, NY 10001" +177129,AAA Batteries (4-pack),1,2.99,03/24/19 14:25,"234 6th St, New York City, NY 10001" +177130,AA Batteries (4-pack),1,3.84,03/27/19 10:55,"546 Willow St, Los Angeles, CA 90001" +177131,AAA Batteries (4-pack),1,2.99,03/12/19 13:27,"890 North St, Boston, MA 02215" +177132,USB-C Charging Cable,1,11.95,03/10/19 12:51,"974 Ridge St, San Francisco, CA 94016" +177133,Bose SoundSport Headphones,1,99.99,03/24/19 14:19,"698 5th St, Los Angeles, CA 90001" +177134,Wired Headphones,1,11.99,03/08/19 21:50,"997 1st St, Los Angeles, CA 90001" +177135,Google Phone,1,600,03/15/19 17:26,"690 Wilson St, San Francisco, CA 94016" +177135,USB-C Charging Cable,1,11.95,03/15/19 17:26,"690 Wilson St, San Francisco, CA 94016" +177136,USB-C Charging Cable,1,11.95,03/14/19 21:45,"905 Lakeview St, New York City, NY 10001" +177137,iPhone,1,700,03/20/19 20:24,"868 Madison St, Boston, MA 02215" +177138,Wired Headphones,1,11.99,03/30/19 14:48,"972 9th St, New York City, NY 10001" +177139,USB-C Charging Cable,1,11.95,03/11/19 12:11,"941 Cherry St, Portland, OR 97035" +177140,Wired Headphones,2,11.99,03/05/19 13:51,"694 11th St, Seattle, WA 98101" +177141,Flatscreen TV,1,300,03/26/19 12:35,"524 Dogwood St, Boston, MA 02215" +177142,Lightning Charging Cable,1,14.95,03/12/19 21:29,"575 12th St, Boston, MA 02215" +177143,USB-C Charging Cable,1,11.95,03/10/19 02:46,"629 2nd St, San Francisco, CA 94016" +177144,Lightning Charging Cable,1,14.95,03/24/19 22:04,"636 Johnson St, San Francisco, CA 94016" +177145,27in FHD Monitor,1,149.99,03/03/19 12:04,"376 Hickory St, Boston, MA 02215" +177146,Macbook Pro Laptop,1,1700,03/18/19 06:25,"362 Willow St, San Francisco, CA 94016" +177147,Bose SoundSport Headphones,1,99.99,03/07/19 21:17,"70 Elm St, Los Angeles, CA 90001" +177148,Apple Airpods Headphones,1,150,03/14/19 12:12,"606 8th St, Seattle, WA 98101" +177149,20in Monitor,1,109.99,03/12/19 21:44,"429 Main St, Portland, OR 97035" +177150,USB-C Charging Cable,1,11.95,03/12/19 22:45,"960 Highland St, San Francisco, CA 94016" +177151,27in 4K Gaming Monitor,1,389.99,03/11/19 12:22,"281 Meadow St, San Francisco, CA 94016" +177152,Apple Airpods Headphones,1,150,03/31/19 17:24,"91 Dogwood St, Boston, MA 02215" +177153,Bose SoundSport Headphones,2,99.99,03/17/19 21:17,"488 7th St, Boston, MA 02215" +177154,AA Batteries (4-pack),1,3.84,03/18/19 09:36,"799 Forest St, San Francisco, CA 94016" +177155,Wired Headphones,1,11.99,03/17/19 14:11,"54 Hickory St, Portland, OR 97035" +177156,Wired Headphones,1,11.99,03/24/19 15:07,"583 4th St, Boston, MA 02215" +177157,LG Dryer,1,600.0,03/04/19 19:46,"619 10th St, San Francisco, CA 94016" +177158,20in Monitor,1,109.99,03/08/19 09:59,"771 Hickory St, Dallas, TX 75001" +177159,Lightning Charging Cable,1,14.95,03/12/19 14:59,"887 11th St, Austin, TX 73301" +177160,AAA Batteries (4-pack),1,2.99,03/17/19 18:32,"169 Meadow St, Atlanta, GA 30301" +177161,Apple Airpods Headphones,1,150,03/18/19 21:11,"716 River St, New York City, NY 10001" +177162,USB-C Charging Cable,2,11.95,03/25/19 12:39,"527 South St, San Francisco, CA 94016" +177163,Bose SoundSport Headphones,1,99.99,03/25/19 14:13,"7 Meadow St, San Francisco, CA 94016" +177164,Google Phone,1,600,03/21/19 08:59,"782 Spruce St, San Francisco, CA 94016" +177165,Macbook Pro Laptop,1,1700,03/04/19 07:32,"593 Forest St, Boston, MA 02215" +177166,Google Phone,1,600,03/06/19 00:19,"85 Cherry St, San Francisco, CA 94016" +177167,AA Batteries (4-pack),2,3.84,03/26/19 11:25,"113 Elm St, Los Angeles, CA 90001" +177168,Bose SoundSport Headphones,1,99.99,03/25/19 14:27,"577 11th St, Los Angeles, CA 90001" +177169,34in Ultrawide Monitor,1,379.99,03/25/19 19:27,"855 Sunset St, Atlanta, GA 30301" +177170,USB-C Charging Cable,1,11.95,03/24/19 15:08,"333 West St, Los Angeles, CA 90001" +177171,Wired Headphones,1,11.99,03/11/19 09:46,"907 Spruce St, Los Angeles, CA 90001" +177172,AAA Batteries (4-pack),1,2.99,03/26/19 00:41,"321 Willow St, San Francisco, CA 94016" +177173,34in Ultrawide Monitor,1,379.99,03/03/19 22:07,"608 Lincoln St, New York City, NY 10001" +177174,Wired Headphones,1,11.99,03/15/19 13:59,"579 Dogwood St, Seattle, WA 98101" +177175,Wired Headphones,1,11.99,03/16/19 22:51,"541 8th St, New York City, NY 10001" +177176,Apple Airpods Headphones,2,150,03/05/19 23:10,"160 13th St, San Francisco, CA 94016" +177177,Google Phone,1,600,03/16/19 12:40,"277 Wilson St, San Francisco, CA 94016" +177177,USB-C Charging Cable,1,11.95,03/16/19 12:40,"277 Wilson St, San Francisco, CA 94016" +177178,Wired Headphones,1,11.99,03/06/19 13:41,"851 Willow St, Boston, MA 02215" +177179,27in FHD Monitor,1,149.99,03/10/19 20:08,"107 Dogwood St, San Francisco, CA 94016" +177180,iPhone,1,700,03/14/19 19:41,"400 Adams St, Austin, TX 73301" +177181,Lightning Charging Cable,1,14.95,03/01/19 17:24,"955 Spruce St, Atlanta, GA 30301" +177182,AAA Batteries (4-pack),2,2.99,03/16/19 09:07,"613 10th St, Atlanta, GA 30301" +177183,iPhone,1,700,03/31/19 22:12,"484 Ridge St, San Francisco, CA 94016" +177183,Apple Airpods Headphones,1,150,03/31/19 22:12,"484 Ridge St, San Francisco, CA 94016" +177184,AA Batteries (4-pack),1,3.84,03/04/19 12:01,"190 Hickory St, Seattle, WA 98101" +177184,Google Phone,1,600,03/04/19 12:01,"190 Hickory St, Seattle, WA 98101" +177185,Wired Headphones,1,11.99,03/19/19 10:42,"868 5th St, Austin, TX 73301" +177186,Apple Airpods Headphones,1,150,03/15/19 19:22,"126 North St, Dallas, TX 75001" +177187,LG Dryer,1,600.0,03/05/19 12:00,"850 13th St, Dallas, TX 75001" +177188,Apple Airpods Headphones,1,150,03/26/19 12:18,"161 Hickory St, San Francisco, CA 94016" +177189,Wired Headphones,1,11.99,03/25/19 20:53,"871 North St, Boston, MA 02215" +177190,Lightning Charging Cable,1,14.95,03/01/19 21:59,"593 Park St, Portland, OR 97035" +177191,Vareebadd Phone,1,400,03/09/19 10:44,"261 Cedar St, Boston, MA 02215" +177192,AA Batteries (4-pack),1,3.84,03/06/19 17:29,"838 Hickory St, Dallas, TX 75001" +177193,AA Batteries (4-pack),3,3.84,03/29/19 19:47,"23 13th St, San Francisco, CA 94016" +177194,iPhone,1,700,03/14/19 23:28,"115 Maple St, San Francisco, CA 94016" +177195,Wired Headphones,1,11.99,03/03/19 21:01,"584 Church St, San Francisco, CA 94016" +177196,Apple Airpods Headphones,1,150,03/05/19 18:30,"964 4th St, Boston, MA 02215" +177197,AA Batteries (4-pack),1,3.84,03/04/19 20:19,"115 River St, Atlanta, GA 30301" +177198,AA Batteries (4-pack),2,3.84,03/19/19 21:09,"11 Willow St, New York City, NY 10001" +177199,USB-C Charging Cable,1,11.95,03/02/19 15:07,"953 Adams St, Portland, OR 97035" +177200,AAA Batteries (4-pack),1,2.99,03/26/19 12:23,"121 Adams St, Seattle, WA 98101" +177201,27in FHD Monitor,1,149.99,03/04/19 13:13,"972 Spruce St, San Francisco, CA 94016" +177202,34in Ultrawide Monitor,1,379.99,03/27/19 15:30,"856 Chestnut St, Portland, ME 04101" +177203,AA Batteries (4-pack),1,3.84,03/23/19 20:28,"786 8th St, Boston, MA 02215" +177204,34in Ultrawide Monitor,1,379.99,03/10/19 18:23,"112 Willow St, Los Angeles, CA 90001" +177205,ThinkPad Laptop,1,999.99,03/19/19 13:34,"591 Meadow St, Atlanta, GA 30301" +177206,USB-C Charging Cable,1,11.95,03/30/19 17:47,"786 12th St, San Francisco, CA 94016" +177207,Macbook Pro Laptop,1,1700,03/20/19 20:54,"976 10th St, Boston, MA 02215" +177208,Apple Airpods Headphones,1,150,03/08/19 00:08,"316 Lakeview St, Austin, TX 73301" +177209,Macbook Pro Laptop,1,1700,03/18/19 10:55,"539 Lincoln St, New York City, NY 10001" +177210,27in 4K Gaming Monitor,1,389.99,03/05/19 14:10,"251 5th St, Seattle, WA 98101" +177211,Flatscreen TV,1,300,03/29/19 21:08,"979 Jackson St, San Francisco, CA 94016" +177212,Bose SoundSport Headphones,1,99.99,03/22/19 20:41,"821 Hickory St, Atlanta, GA 30301" +177213,Lightning Charging Cable,1,14.95,03/30/19 11:17,"454 Johnson St, Atlanta, GA 30301" +177214,LG Washing Machine,1,600.0,03/06/19 14:38,"876 Church St, Los Angeles, CA 90001" +177215,Apple Airpods Headphones,1,150,03/23/19 09:33,"501 Lincoln St, Seattle, WA 98101" +177216,27in FHD Monitor,1,149.99,03/13/19 15:35,"460 5th St, San Francisco, CA 94016" +177217,USB-C Charging Cable,1,11.95,03/26/19 15:16,"564 6th St, Atlanta, GA 30301" +177218,Lightning Charging Cable,1,14.95,03/02/19 20:15,"297 South St, Boston, MA 02215" +177219,AA Batteries (4-pack),2,3.84,03/22/19 19:16,"653 Sunset St, San Francisco, CA 94016" +177220,AAA Batteries (4-pack),4,2.99,03/23/19 23:36,"763 Madison St, San Francisco, CA 94016" +177221,Lightning Charging Cable,1,14.95,03/12/19 11:10,"835 Lincoln St, San Francisco, CA 94016" +177222,AA Batteries (4-pack),2,3.84,03/10/19 20:58,"589 Highland St, New York City, NY 10001" +177223,Google Phone,1,600,03/13/19 17:39,"834 Main St, New York City, NY 10001" +177224,AA Batteries (4-pack),1,3.84,03/11/19 11:09,"632 Washington St, San Francisco, CA 94016" +177225,34in Ultrawide Monitor,1,379.99,03/09/19 13:18,"50 Lake St, San Francisco, CA 94016" +177226,Bose SoundSport Headphones,1,99.99,03/08/19 21:41,"71 Sunset St, Dallas, TX 75001" +177227,USB-C Charging Cable,1,11.95,03/19/19 03:33,"825 Wilson St, San Francisco, CA 94016" +177228,AAA Batteries (4-pack),2,2.99,03/11/19 10:27,"47 Meadow St, Boston, MA 02215" +177229,Wired Headphones,1,11.99,03/03/19 13:00,"125 Johnson St, Dallas, TX 75001" +177230,Flatscreen TV,1,300,03/12/19 21:17,"514 Hickory St, Los Angeles, CA 90001" +177231,Wired Headphones,1,11.99,03/20/19 07:55,"7 9th St, New York City, NY 10001" +177232,Apple Airpods Headphones,1,150,03/18/19 23:05,"941 7th St, Los Angeles, CA 90001" +177233,AAA Batteries (4-pack),2,2.99,03/07/19 09:24,"966 Pine St, Seattle, WA 98101" +177234,iPhone,1,700,03/04/19 19:29,"59 Johnson St, Portland, OR 97035" +177235,Bose SoundSport Headphones,1,99.99,03/16/19 06:59,"916 Forest St, Seattle, WA 98101" +177236,USB-C Charging Cable,1,11.95,03/10/19 13:30,"236 Elm St, San Francisco, CA 94016" +177237,Lightning Charging Cable,1,14.95,03/20/19 20:21,"418 Dogwood St, Los Angeles, CA 90001" +177238,iPhone,1,700,03/02/19 18:39,"48 Cedar St, Los Angeles, CA 90001" +177239,Bose SoundSport Headphones,1,99.99,03/07/19 08:53,"183 9th St, New York City, NY 10001" +177240,USB-C Charging Cable,1,11.95,03/16/19 14:03,"359 Johnson St, Los Angeles, CA 90001" +177241,USB-C Charging Cable,1,11.95,03/24/19 06:56,"711 West St, Atlanta, GA 30301" +177242,Bose SoundSport Headphones,1,99.99,03/02/19 12:45,"126 Hill St, Boston, MA 02215" +177243,AAA Batteries (4-pack),1,2.99,03/27/19 18:03,"393 Cedar St, San Francisco, CA 94016" +177244,Google Phone,1,600,03/21/19 09:37,"12 Lakeview St, San Francisco, CA 94016" +177245,Apple Airpods Headphones,1,150,03/03/19 11:29,"21 10th St, San Francisco, CA 94016" +177246,Lightning Charging Cable,1,14.95,03/11/19 11:47,"364 1st St, New York City, NY 10001" +177247,USB-C Charging Cable,1,11.95,03/25/19 18:36,"555 7th St, New York City, NY 10001" +177248,AA Batteries (4-pack),1,3.84,03/22/19 19:02,"405 West St, New York City, NY 10001" +177249,AAA Batteries (4-pack),1,2.99,03/25/19 19:59,"70 Cedar St, San Francisco, CA 94016" +177250,34in Ultrawide Monitor,1,379.99,03/17/19 14:52,"297 6th St, Dallas, TX 75001" +177251,Lightning Charging Cable,1,14.95,03/23/19 11:31,"64 Lake St, Seattle, WA 98101" +177252,AA Batteries (4-pack),1,3.84,03/25/19 16:48,"586 Dogwood St, San Francisco, CA 94016" +177253,AA Batteries (4-pack),1,3.84,03/15/19 18:25,"991 10th St, New York City, NY 10001" +177254,Wired Headphones,1,11.99,03/10/19 19:01,"802 14th St, San Francisco, CA 94016" +177255,Bose SoundSport Headphones,1,99.99,03/13/19 15:34,"811 Elm St, New York City, NY 10001" +177256,USB-C Charging Cable,1,11.95,03/30/19 21:52,"620 Jackson St, San Francisco, CA 94016" +177257,Wired Headphones,1,11.99,03/27/19 19:52,"331 Sunset St, Dallas, TX 75001" +177258,Apple Airpods Headphones,1,150,03/21/19 23:02,"378 Jackson St, San Francisco, CA 94016" +177259,Apple Airpods Headphones,1,150,03/14/19 16:04,"665 Lake St, Dallas, TX 75001" +177260,Macbook Pro Laptop,1,1700,03/11/19 18:35,"659 Lakeview St, Atlanta, GA 30301" +177261,AAA Batteries (4-pack),1,2.99,03/19/19 13:50,"32 Cherry St, Dallas, TX 75001" +177262,AA Batteries (4-pack),1,3.84,03/26/19 07:07,"58 5th St, Boston, MA 02215" +177263,Lightning Charging Cable,1,14.95,03/21/19 22:19,"164 River St, Los Angeles, CA 90001" +177264,AA Batteries (4-pack),1,3.84,03/02/19 11:26,"509 West St, New York City, NY 10001" +177265,27in FHD Monitor,1,149.99,03/20/19 19:10,"784 Walnut St, Atlanta, GA 30301" +177266,AAA Batteries (4-pack),2,2.99,03/14/19 00:34,"725 Maple St, Los Angeles, CA 90001" +177267,Apple Airpods Headphones,1,150,03/02/19 17:10,"412 7th St, San Francisco, CA 94016" +177268,AA Batteries (4-pack),2,3.84,03/19/19 23:47,"997 Cedar St, Los Angeles, CA 90001" +177269,AAA Batteries (4-pack),1,2.99,03/29/19 22:00,"120 Forest St, San Francisco, CA 94016" +177270,Bose SoundSport Headphones,1,99.99,03/17/19 07:32,"747 Lake St, New York City, NY 10001" +177271,AA Batteries (4-pack),4,3.84,03/20/19 10:22,"604 4th St, San Francisco, CA 94016" +177272,AAA Batteries (4-pack),2,2.99,03/16/19 07:09,"294 Lakeview St, Portland, ME 04101" +177273,Lightning Charging Cable,1,14.95,03/24/19 21:23,"273 4th St, Los Angeles, CA 90001" +177274,iPhone,1,700,03/24/19 10:12,"920 Lake St, Los Angeles, CA 90001" +177275,Wired Headphones,1,11.99,03/07/19 16:14,"93 Park St, San Francisco, CA 94016" +177276,Bose SoundSport Headphones,1,99.99,03/13/19 18:47,"801 Walnut St, Boston, MA 02215" +177277,Wired Headphones,1,11.99,03/01/19 22:07,"36 Lakeview St, Austin, TX 73301" +177278,Google Phone,1,600,03/04/19 07:14,"714 Johnson St, Los Angeles, CA 90001" +177279,AAA Batteries (4-pack),2,2.99,03/04/19 15:06,"257 12th St, Boston, MA 02215" +177280,Wired Headphones,1,11.99,03/26/19 12:28,"835 Forest St, Seattle, WA 98101" +177281,Apple Airpods Headphones,1,150,03/27/19 20:31,"903 Church St, Atlanta, GA 30301" +177282,Google Phone,1,600,03/11/19 08:43,"850 South St, Los Angeles, CA 90001" +177283,USB-C Charging Cable,1,11.95,03/03/19 17:02,"579 13th St, Los Angeles, CA 90001" +177284,USB-C Charging Cable,1,11.95,03/03/19 12:09,"951 Walnut St, San Francisco, CA 94016" +177285,USB-C Charging Cable,1,11.95,03/26/19 17:58,"740 Jackson St, Atlanta, GA 30301" +177286,ThinkPad Laptop,1,999.99,03/16/19 18:37,"427 Lakeview St, Dallas, TX 75001" +177287,AAA Batteries (4-pack),1,2.99,03/30/19 12:41,"532 Madison St, Seattle, WA 98101" +177288,AA Batteries (4-pack),1,3.84,03/09/19 08:04,"641 5th St, San Francisco, CA 94016" +177289,Flatscreen TV,1,300,03/07/19 15:56,"489 West St, San Francisco, CA 94016" +177290,Wired Headphones,1,11.99,03/06/19 15:28,"138 West St, San Francisco, CA 94016" +177290,Vareebadd Phone,1,400,03/06/19 15:28,"138 West St, San Francisco, CA 94016" +177291,Lightning Charging Cable,1,14.95,03/05/19 20:54,"67 Center St, Seattle, WA 98101" +177292,Lightning Charging Cable,2,14.95,03/11/19 16:59,"120 8th St, Boston, MA 02215" +177293,27in 4K Gaming Monitor,1,389.99,03/07/19 19:30,"290 Chestnut St, San Francisco, CA 94016" +177294,ThinkPad Laptop,1,999.99,03/03/19 10:39,"938 Willow St, Los Angeles, CA 90001" +177295,AAA Batteries (4-pack),2,2.99,03/01/19 22:32,"89 2nd St, Los Angeles, CA 90001" +177296,iPhone,1,700,03/26/19 14:46,"645 Pine St, Seattle, WA 98101" +177296,Lightning Charging Cable,1,14.95,03/26/19 14:46,"645 Pine St, Seattle, WA 98101" +177297,Wired Headphones,1,11.99,03/20/19 17:32,"443 Johnson St, Boston, MA 02215" +177298,USB-C Charging Cable,1,11.95,03/07/19 17:32,"232 Meadow St, Dallas, TX 75001" +177299,Bose SoundSport Headphones,1,99.99,03/17/19 22:26,"27 Highland St, New York City, NY 10001" +177300,USB-C Charging Cable,1,11.95,03/08/19 09:17,"125 Hickory St, Portland, OR 97035" +177301,USB-C Charging Cable,1,11.95,03/21/19 21:45,"655 10th St, Portland, OR 97035" +177302,AAA Batteries (4-pack),1,2.99,03/24/19 18:03,"927 Maple St, Boston, MA 02215" +177303,ThinkPad Laptop,1,999.99,03/29/19 12:31,"459 14th St, Boston, MA 02215" +177304,Flatscreen TV,1,300,03/01/19 09:21,"996 6th St, Boston, MA 02215" +177305,USB-C Charging Cable,1,11.95,03/23/19 15:06,"439 Ridge St, San Francisco, CA 94016" +177306,AAA Batteries (4-pack),1,2.99,03/18/19 20:33,"691 Adams St, San Francisco, CA 94016" +177307,Wired Headphones,1,11.99,03/21/19 22:20,"847 Adams St, San Francisco, CA 94016" +177308,AA Batteries (4-pack),1,3.84,03/23/19 18:01,"860 Center St, San Francisco, CA 94016" +177309,USB-C Charging Cable,1,11.95,03/20/19 12:22,"316 Willow St, New York City, NY 10001" +177310,Apple Airpods Headphones,1,150,03/04/19 07:24,"38 Dogwood St, New York City, NY 10001" +177311,Wired Headphones,1,11.99,03/29/19 10:18,"591 1st St, San Francisco, CA 94016" +177312,AAA Batteries (4-pack),2,2.99,03/19/19 03:34,"852 Dogwood St, Dallas, TX 75001" +177313,Apple Airpods Headphones,1,150,03/09/19 22:28,"705 Center St, Atlanta, GA 30301" +177314,AA Batteries (4-pack),1,3.84,03/25/19 13:22,"445 8th St, Austin, TX 73301" +177315,iPhone,1,700,03/28/19 10:25,"907 South St, San Francisco, CA 94016" +177316,Wired Headphones,1,11.99,03/13/19 19:27,"236 Lincoln St, Seattle, WA 98101" +177317,Lightning Charging Cable,1,14.95,03/02/19 00:28,"354 Maple St, Portland, OR 97035" +177317,Apple Airpods Headphones,1,150,03/02/19 00:28,"354 Maple St, Portland, OR 97035" +177318,Lightning Charging Cable,1,14.95,03/03/19 13:41,"488 Jackson St, Boston, MA 02215" +177319,AAA Batteries (4-pack),1,2.99,03/11/19 21:07,"908 1st St, San Francisco, CA 94016" +177320,Lightning Charging Cable,1,14.95,03/25/19 10:44,"523 Forest St, Dallas, TX 75001" +177321,Apple Airpods Headphones,1,150,03/29/19 12:23,"508 Willow St, San Francisco, CA 94016" +177322,Apple Airpods Headphones,1,150,03/20/19 18:19,"494 Johnson St, Portland, OR 97035" +177323,USB-C Charging Cable,1,11.95,03/27/19 15:23,"842 Washington St, San Francisco, CA 94016" +177324,Lightning Charging Cable,2,14.95,03/20/19 16:29,"830 1st St, Dallas, TX 75001" +177325,Apple Airpods Headphones,1,150,03/19/19 19:34,"969 13th St, San Francisco, CA 94016" +177326,iPhone,1,700,03/30/19 23:00,"535 Park St, New York City, NY 10001" +177327,iPhone,1,700,03/10/19 19:11,"896 Chestnut St, New York City, NY 10001" +177328,USB-C Charging Cable,1,11.95,03/03/19 18:14,"217 7th St, Dallas, TX 75001" +177329,Lightning Charging Cable,1,14.95,03/05/19 18:35,"599 Chestnut St, Los Angeles, CA 90001" +177330,Google Phone,1,600,03/16/19 21:26,"169 Lake St, Los Angeles, CA 90001" +177331,iPhone,1,700,03/12/19 00:42,"384 Spruce St, Boston, MA 02215" +177332,iPhone,1,700,03/27/19 07:28,"314 5th St, Los Angeles, CA 90001" +177333,AAA Batteries (4-pack),2,2.99,03/17/19 12:56,"420 13th St, Dallas, TX 75001" +177334,AA Batteries (4-pack),1,3.84,03/25/19 22:22,"74 West St, Los Angeles, CA 90001" +177335,AA Batteries (4-pack),1,3.84,03/13/19 20:57,"966 Jackson St, New York City, NY 10001" +177336,AA Batteries (4-pack),1,3.84,03/08/19 11:58,"744 Wilson St, Boston, MA 02215" +177337,Bose SoundSport Headphones,1,99.99,03/14/19 13:03,"172 2nd St, San Francisco, CA 94016" +177338,USB-C Charging Cable,1,11.95,03/02/19 19:36,"832 North St, Los Angeles, CA 90001" +177339,Apple Airpods Headphones,1,150,03/24/19 00:34,"892 13th St, San Francisco, CA 94016" +177340,34in Ultrawide Monitor,1,379.99,03/25/19 11:35,"771 Park St, Seattle, WA 98101" +177341,27in FHD Monitor,1,149.99,03/01/19 07:38,"724 Washington St, Austin, TX 73301" +177342,AAA Batteries (4-pack),1,2.99,03/28/19 17:49,"133 Cedar St, Dallas, TX 75001" +177343,iPhone,1,700,03/28/19 12:37,"276 North St, Boston, MA 02215" +177344,Flatscreen TV,1,300,03/18/19 21:41,"390 Maple St, San Francisco, CA 94016" +177345,AA Batteries (4-pack),1,3.84,03/30/19 20:19,"539 Elm St, San Francisco, CA 94016" +177346,Wired Headphones,1,11.99,03/26/19 14:18,"110 Jefferson St, Boston, MA 02215" +177347,Apple Airpods Headphones,1,150,03/05/19 22:05,"299 West St, Portland, ME 04101" +177348,20in Monitor,1,109.99,03/13/19 13:53,"602 11th St, Los Angeles, CA 90001" +177349,27in 4K Gaming Monitor,1,389.99,03/25/19 20:50,"151 River St, Boston, MA 02215" +177350,iPhone,1,700,03/18/19 14:51,"647 Lincoln St, Atlanta, GA 30301" +177351,Apple Airpods Headphones,1,150,03/19/19 11:36,"606 Meadow St, Atlanta, GA 30301" +177352,Google Phone,1,600,03/28/19 11:04,"381 Walnut St, Dallas, TX 75001" +177353,Wired Headphones,1,11.99,03/15/19 11:12,"362 Cedar St, Seattle, WA 98101" +177354,iPhone,1,700,03/30/19 19:47,"175 Ridge St, Atlanta, GA 30301" +177354,Apple Airpods Headphones,1,150,03/30/19 19:47,"175 Ridge St, Atlanta, GA 30301" +177355,AAA Batteries (4-pack),1,2.99,03/27/19 23:47,"570 Lincoln St, Dallas, TX 75001" +177356,20in Monitor,1,109.99,03/16/19 20:37,"972 Center St, Boston, MA 02215" +177357,Flatscreen TV,1,300,03/14/19 09:05,"735 7th St, San Francisco, CA 94016" +177358,USB-C Charging Cable,1,11.95,03/18/19 10:39,"928 Wilson St, Austin, TX 73301" +177359,Google Phone,1,600,03/19/19 15:28,"353 Pine St, New York City, NY 10001" +177360,Apple Airpods Headphones,1,150,03/15/19 11:46,"936 Lincoln St, Los Angeles, CA 90001" +177361,Lightning Charging Cable,1,14.95,03/09/19 10:42,"363 9th St, Austin, TX 73301" +177362,AAA Batteries (4-pack),1,2.99,03/18/19 14:38,"962 Meadow St, New York City, NY 10001" +177363,Lightning Charging Cable,1,14.95,03/31/19 20:17,"19 Highland St, New York City, NY 10001" +177364,Apple Airpods Headphones,1,150,03/12/19 17:16,"509 Spruce St, Boston, MA 02215" +177365,USB-C Charging Cable,1,11.95,03/14/19 12:59,"11 Madison St, Dallas, TX 75001" +177366,AAA Batteries (4-pack),3,2.99,03/29/19 11:07,"708 5th St, Los Angeles, CA 90001" +177367,Google Phone,1,600,03/05/19 18:14,"998 Madison St, Dallas, TX 75001" +177368,Lightning Charging Cable,1,14.95,03/05/19 11:56,"704 Adams St, San Francisco, CA 94016" +177369,Apple Airpods Headphones,1,150,03/02/19 17:11,"107 Wilson St, Dallas, TX 75001" +177370,AAA Batteries (4-pack),1,2.99,03/11/19 15:30,"933 Ridge St, Atlanta, GA 30301" +177371,AA Batteries (4-pack),1,3.84,03/25/19 15:52,"23 Forest St, New York City, NY 10001" +177372,Lightning Charging Cable,1,14.95,03/23/19 02:22,"136 13th St, San Francisco, CA 94016" +177373,Lightning Charging Cable,1,14.95,03/06/19 15:15,"51 West St, San Francisco, CA 94016" +177374,Wired Headphones,1,11.99,03/28/19 01:00,"715 Pine St, New York City, NY 10001" +177375,AA Batteries (4-pack),1,3.84,03/24/19 12:12,"316 Park St, New York City, NY 10001" +177376,USB-C Charging Cable,1,11.95,03/29/19 20:20,"365 12th St, New York City, NY 10001" +177377,AAA Batteries (4-pack),1,2.99,03/03/19 16:11,"821 River St, San Francisco, CA 94016" +177378,AAA Batteries (4-pack),1,2.99,03/21/19 08:50,"959 Meadow St, Portland, OR 97035" +177379,Lightning Charging Cable,1,14.95,03/26/19 22:10,"314 6th St, Seattle, WA 98101" +177380,AAA Batteries (4-pack),3,2.99,03/30/19 11:39,"823 10th St, San Francisco, CA 94016" +177381,AA Batteries (4-pack),1,3.84,03/28/19 12:22,"18 Jefferson St, Los Angeles, CA 90001" +177382,Bose SoundSport Headphones,1,99.99,03/02/19 13:47,"646 Walnut St, Seattle, WA 98101" +177383,AAA Batteries (4-pack),1,2.99,03/17/19 14:35,"655 Adams St, San Francisco, CA 94016" +177384,AAA Batteries (4-pack),2,2.99,03/30/19 19:32,"613 Highland St, San Francisco, CA 94016" +177385,Macbook Pro Laptop,1,1700,03/10/19 17:38,"629 Lincoln St, Portland, OR 97035" +177386,Wired Headphones,1,11.99,03/25/19 17:28,"120 Cherry St, Dallas, TX 75001" +177387,AA Batteries (4-pack),1,3.84,03/28/19 21:09,"588 1st St, Los Angeles, CA 90001" +177388,20in Monitor,1,109.99,03/14/19 12:58,"839 Forest St, New York City, NY 10001" +177389,AA Batteries (4-pack),1,3.84,03/06/19 08:04,"245 Maple St, Seattle, WA 98101" +177390,Apple Airpods Headphones,1,150,03/05/19 12:38,"902 Jefferson St, Atlanta, GA 30301" +177391,Wired Headphones,1,11.99,03/27/19 09:28,"100 Church St, San Francisco, CA 94016" +177392,27in 4K Gaming Monitor,1,389.99,03/20/19 08:32,"805 Lakeview St, San Francisco, CA 94016" +177393,USB-C Charging Cable,1,11.95,03/06/19 13:51,"391 12th St, Los Angeles, CA 90001" +177394,Lightning Charging Cable,1,14.95,03/22/19 19:50,"104 Johnson St, San Francisco, CA 94016" +177395,USB-C Charging Cable,1,11.95,03/11/19 12:05,"436 Hill St, San Francisco, CA 94016" +177396,Wired Headphones,1,11.99,03/25/19 13:35,"775 2nd St, San Francisco, CA 94016" +177397,Flatscreen TV,1,300,03/31/19 19:15,"529 Jackson St, New York City, NY 10001" +177398,Wired Headphones,1,11.99,03/29/19 09:05,"644 Adams St, San Francisco, CA 94016" +177399,AAA Batteries (4-pack),1,2.99,03/02/19 19:06,"440 West St, Los Angeles, CA 90001" +177400,27in FHD Monitor,1,149.99,03/11/19 19:33,"540 Jefferson St, Seattle, WA 98101" +177401,AAA Batteries (4-pack),2,2.99,03/01/19 21:27,"377 7th St, San Francisco, CA 94016" +177402,Apple Airpods Headphones,1,150,03/30/19 13:30,"908 River St, Dallas, TX 75001" +177403,Wired Headphones,1,11.99,03/26/19 10:28,"175 6th St, Boston, MA 02215" +177404,Google Phone,1,600,03/23/19 20:07,"692 12th St, San Francisco, CA 94016" +177405,iPhone,1,700,03/02/19 19:37,"62 Willow St, San Francisco, CA 94016" +177406,Wired Headphones,1,11.99,03/01/19 09:31,"82 Willow St, New York City, NY 10001" +177407,AA Batteries (4-pack),2,3.84,03/25/19 16:16,"451 Walnut St, Dallas, TX 75001" +177408,Vareebadd Phone,1,400,03/19/19 14:56,"323 14th St, Los Angeles, CA 90001" +177409,AA Batteries (4-pack),1,3.84,03/28/19 16:38,"302 Adams St, Seattle, WA 98101" +177410,27in FHD Monitor,1,149.99,03/17/19 12:24,"666 Dogwood St, Atlanta, GA 30301" +177411,Lightning Charging Cable,2,14.95,03/18/19 19:29,"643 Cherry St, Los Angeles, CA 90001" +177412,Apple Airpods Headphones,1,150,03/01/19 19:47,"544 Madison St, San Francisco, CA 94016" +177413,AAA Batteries (4-pack),2,2.99,03/10/19 17:40,"820 2nd St, Portland, OR 97035" +177414,AAA Batteries (4-pack),1,2.99,03/16/19 23:44,"40 Center St, Los Angeles, CA 90001" +177414,USB-C Charging Cable,1,11.95,03/16/19 23:44,"40 Center St, Los Angeles, CA 90001" +177415,Bose SoundSport Headphones,1,99.99,03/08/19 09:41,"282 Elm St, San Francisco, CA 94016" +177416,AA Batteries (4-pack),1,3.84,03/29/19 21:25,"891 Adams St, Dallas, TX 75001" +177417,Wired Headphones,1,11.99,03/09/19 04:38,"844 4th St, San Francisco, CA 94016" +177418,AAA Batteries (4-pack),1,2.99,03/12/19 10:13,"918 6th St, Seattle, WA 98101" +177419,Lightning Charging Cable,1,14.95,03/19/19 13:29,"225 Chestnut St, Los Angeles, CA 90001" +177420,Vareebadd Phone,1,400,03/06/19 19:01,"274 Forest St, Atlanta, GA 30301" +177420,USB-C Charging Cable,1,11.95,03/06/19 19:01,"274 Forest St, Atlanta, GA 30301" +177421,Google Phone,1,600,03/24/19 12:56,"773 11th St, Atlanta, GA 30301" +177422,Apple Airpods Headphones,1,150,03/15/19 07:51,"17 4th St, Los Angeles, CA 90001" +177423,Apple Airpods Headphones,1,150,03/29/19 06:13,"486 1st St, Austin, TX 73301" +177424,AAA Batteries (4-pack),3,2.99,03/01/19 12:51,"699 Lincoln St, Boston, MA 02215" +177425,Wired Headphones,1,11.99,03/23/19 16:52,"593 9th St, Boston, MA 02215" +177426,Bose SoundSport Headphones,1,99.99,03/20/19 16:04,"491 Pine St, Portland, OR 97035" +177427,Wired Headphones,1,11.99,03/29/19 20:24,"817 Walnut St, Seattle, WA 98101" +177428,Apple Airpods Headphones,1,150,03/21/19 01:17,"164 Jackson St, San Francisco, CA 94016" +177429,ThinkPad Laptop,1,999.99,03/29/19 08:13,"299 Hickory St, Dallas, TX 75001" +177430,AAA Batteries (4-pack),1,2.99,03/05/19 06:48,"785 South St, Boston, MA 02215" +177431,AAA Batteries (4-pack),1,2.99,03/16/19 23:13,"754 Main St, San Francisco, CA 94016" +177432,27in FHD Monitor,1,149.99,03/14/19 22:48,"101 Wilson St, New York City, NY 10001" +177433,Google Phone,1,600,03/16/19 23:27,"21 Park St, Dallas, TX 75001" +177433,USB-C Charging Cable,1,11.95,03/16/19 23:27,"21 Park St, Dallas, TX 75001" +177434,Wired Headphones,1,11.99,03/23/19 21:20,"210 Main St, Seattle, WA 98101" +177435,AA Batteries (4-pack),1,3.84,03/13/19 12:44,"451 Forest St, Seattle, WA 98101" +177436,Lightning Charging Cable,1,14.95,03/07/19 21:38,"254 Jackson St, Seattle, WA 98101" +177437,Lightning Charging Cable,1,14.95,03/09/19 14:52,"631 Cedar St, New York City, NY 10001" +177438,Apple Airpods Headphones,1,150,03/21/19 14:39,"639 Madison St, Dallas, TX 75001" +177439,iPhone,1,700,03/27/19 06:52,"27 Willow St, Boston, MA 02215" +177440,34in Ultrawide Monitor,1,379.99,03/11/19 08:32,"440 Washington St, New York City, NY 10001" +177441,AAA Batteries (4-pack),1,2.99,03/16/19 12:48,"784 Adams St, Seattle, WA 98101" +177442,AAA Batteries (4-pack),2,2.99,03/14/19 17:38,"686 Cherry St, Seattle, WA 98101" +,,,,, +177443,AA Batteries (4-pack),1,3.84,03/12/19 17:29,"562 8th St, New York City, NY 10001" +177444,AA Batteries (4-pack),4,3.84,03/22/19 06:42,"100 2nd St, Seattle, WA 98101" +177445,Lightning Charging Cable,1,14.95,03/17/19 09:07,"751 Spruce St, Portland, OR 97035" +177446,Bose SoundSport Headphones,1,99.99,03/29/19 18:38,"715 9th St, Los Angeles, CA 90001" +177447,Bose SoundSport Headphones,1,99.99,03/08/19 23:06,"137 Lake St, San Francisco, CA 94016" +177448,USB-C Charging Cable,1,11.95,03/18/19 08:27,"325 13th St, Seattle, WA 98101" +177449,Apple Airpods Headphones,1,150,03/15/19 22:07,"658 Willow St, Dallas, TX 75001" +177450,AA Batteries (4-pack),2,3.84,03/16/19 15:48,"305 Maple St, Atlanta, GA 30301" +177451,Apple Airpods Headphones,1,150,03/28/19 03:07,"214 River St, Seattle, WA 98101" +177452,Bose SoundSport Headphones,1,99.99,03/16/19 22:24,"545 Adams St, New York City, NY 10001" +177452,USB-C Charging Cable,1,11.95,03/16/19 22:24,"545 Adams St, New York City, NY 10001" +177453,27in 4K Gaming Monitor,1,389.99,03/30/19 09:14,"692 Highland St, New York City, NY 10001" +177454,USB-C Charging Cable,1,11.95,03/07/19 12:50,"753 Willow St, New York City, NY 10001" +177455,Lightning Charging Cable,1,14.95,03/17/19 20:08,"208 Madison St, Seattle, WA 98101" +177456,Lightning Charging Cable,2,14.95,03/18/19 21:15,"631 13th St, San Francisco, CA 94016" +177457,AA Batteries (4-pack),1,3.84,03/01/19 12:53,"125 11th St, Atlanta, GA 30301" +177458,27in FHD Monitor,1,149.99,03/22/19 08:15,"995 Meadow St, Los Angeles, CA 90001" +177459,Wired Headphones,1,11.99,03/26/19 13:48,"260 4th St, New York City, NY 10001" +177460,AA Batteries (4-pack),1,3.84,03/31/19 19:06,"654 Hickory St, Dallas, TX 75001" +177461,AA Batteries (4-pack),1,3.84,03/02/19 06:22,"879 Adams St, Los Angeles, CA 90001" +177462,34in Ultrawide Monitor,1,379.99,03/27/19 00:01,"182 9th St, Los Angeles, CA 90001" +177463,Bose SoundSport Headphones,1,99.99,03/06/19 15:49,"784 Hill St, Boston, MA 02215" +177464,Flatscreen TV,1,300,03/26/19 20:31,"954 Madison St, Atlanta, GA 30301" +177465,AA Batteries (4-pack),4,3.84,03/31/19 13:31,"381 Forest St, Portland, ME 04101" +177466,AA Batteries (4-pack),1,3.84,03/27/19 08:57,"542 Chestnut St, Seattle, WA 98101" +177466,Apple Airpods Headphones,1,150,03/27/19 08:57,"542 Chestnut St, Seattle, WA 98101" +177467,Lightning Charging Cable,1,14.95,03/17/19 13:17,"38 4th St, New York City, NY 10001" +177468,USB-C Charging Cable,1,11.95,03/04/19 15:42,"417 5th St, Seattle, WA 98101" +177469,AAA Batteries (4-pack),1,2.99,03/18/19 15:59,"240 4th St, Los Angeles, CA 90001" +177470,34in Ultrawide Monitor,1,379.99,03/29/19 19:21,"49 Ridge St, Boston, MA 02215" +177471,Bose SoundSport Headphones,1,99.99,03/17/19 18:56,"476 Meadow St, Los Angeles, CA 90001" +177472,Lightning Charging Cable,1,14.95,03/28/19 11:36,"297 6th St, Seattle, WA 98101" +177473,Vareebadd Phone,1,400,03/05/19 11:49,"775 Maple St, New York City, NY 10001" +177474,ThinkPad Laptop,1,999.99,03/10/19 08:44,"299 7th St, San Francisco, CA 94016" +177475,USB-C Charging Cable,1,11.95,03/20/19 00:44,"860 10th St, Portland, ME 04101" +177476,iPhone,1,700,03/14/19 16:30,"55 2nd St, Dallas, TX 75001" +177477,Lightning Charging Cable,1,14.95,03/02/19 23:07,"214 Elm St, Los Angeles, CA 90001" +177478,27in 4K Gaming Monitor,1,389.99,03/05/19 19:30,"42 13th St, Portland, OR 97035" +177479,27in FHD Monitor,1,149.99,03/20/19 09:09,"893 13th St, Portland, OR 97035" +177480,Apple Airpods Headphones,1,150,03/16/19 10:10,"231 Cedar St, New York City, NY 10001" +177481,Bose SoundSport Headphones,1,99.99,03/12/19 16:48,"843 Lake St, Boston, MA 02215" +177482,27in FHD Monitor,1,149.99,03/15/19 10:45,"557 Washington St, Austin, TX 73301" +177483,AA Batteries (4-pack),1,3.84,03/06/19 08:32,"851 9th St, San Francisco, CA 94016" +177484,USB-C Charging Cable,1,11.95,03/11/19 09:26,"940 5th St, Atlanta, GA 30301" +177485,27in FHD Monitor,1,149.99,03/25/19 23:54,"793 Center St, Portland, OR 97035" +177486,Wired Headphones,1,11.99,03/13/19 11:52,"879 Dogwood St, New York City, NY 10001" +177487,Apple Airpods Headphones,1,150,03/12/19 21:30,"515 Jefferson St, Atlanta, GA 30301" +177488,AAA Batteries (4-pack),1,2.99,03/25/19 12:32,"951 11th St, Dallas, TX 75001" +177489,AA Batteries (4-pack),1,3.84,03/20/19 11:53,"590 14th St, New York City, NY 10001" +177490,27in 4K Gaming Monitor,1,389.99,03/03/19 20:21,"893 10th St, Portland, OR 97035" +177491,AAA Batteries (4-pack),1,2.99,03/21/19 20:53,"1 Ridge St, New York City, NY 10001" +177492,USB-C Charging Cable,1,11.95,03/03/19 17:47,"477 5th St, San Francisco, CA 94016" +177493,AA Batteries (4-pack),3,3.84,03/03/19 10:13,"586 Madison St, Atlanta, GA 30301" +177494,USB-C Charging Cable,1,11.95,03/26/19 01:29,"278 Dogwood St, San Francisco, CA 94016" +177495,Bose SoundSport Headphones,1,99.99,03/16/19 15:24,"800 Pine St, Dallas, TX 75001" +177496,27in FHD Monitor,1,149.99,03/20/19 13:33,"892 Washington St, San Francisco, CA 94016" +177497,27in FHD Monitor,2,149.99,03/17/19 21:27,"731 River St, Los Angeles, CA 90001" +177498,Bose SoundSport Headphones,1,99.99,03/03/19 21:26,"523 Willow St, San Francisco, CA 94016" +177499,20in Monitor,1,109.99,03/22/19 03:30,"982 5th St, San Francisco, CA 94016" +177500,Apple Airpods Headphones,1,150,03/25/19 15:55,"563 9th St, Austin, TX 73301" +177501,Bose SoundSport Headphones,1,99.99,03/09/19 21:22,"952 Hickory St, Boston, MA 02215" +177502,AAA Batteries (4-pack),2,2.99,03/27/19 23:14,"533 Church St, Los Angeles, CA 90001" +177503,Bose SoundSport Headphones,1,99.99,03/23/19 21:15,"760 Wilson St, San Francisco, CA 94016" +177504,AA Batteries (4-pack),1,3.84,03/01/19 19:42,"316 Center St, San Francisco, CA 94016" +177505,USB-C Charging Cable,1,11.95,03/13/19 12:30,"331 11th St, San Francisco, CA 94016" +177506,USB-C Charging Cable,1,11.95,03/16/19 17:17,"698 5th St, Portland, OR 97035" +177507,Apple Airpods Headphones,1,150,03/26/19 13:02,"225 Church St, San Francisco, CA 94016" +177508,ThinkPad Laptop,1,999.99,03/25/19 10:11,"948 Church St, Atlanta, GA 30301" +177509,Wired Headphones,1,11.99,03/12/19 11:08,"521 Cedar St, San Francisco, CA 94016" +177510,27in 4K Gaming Monitor,1,389.99,03/07/19 19:26,"686 Lincoln St, New York City, NY 10001" +177511,USB-C Charging Cable,1,11.95,03/15/19 07:57,"850 14th St, San Francisco, CA 94016" +177512,Flatscreen TV,1,300,03/19/19 16:51,"134 5th St, Los Angeles, CA 90001" +177513,iPhone,1,700,03/27/19 21:27,"640 Center St, Los Angeles, CA 90001" +177514,USB-C Charging Cable,1,11.95,03/14/19 03:18,"533 Ridge St, Los Angeles, CA 90001" +177515,Wired Headphones,1,11.99,03/21/19 16:48,"565 Cedar St, Atlanta, GA 30301" +177516,Apple Airpods Headphones,1,150,03/18/19 11:10,"176 South St, New York City, NY 10001" +177517,Apple Airpods Headphones,1,150,03/08/19 17:20,"477 14th St, Atlanta, GA 30301" +177518,AAA Batteries (4-pack),1,2.99,03/05/19 19:18,"104 Chestnut St, Atlanta, GA 30301" +177519,USB-C Charging Cable,2,11.95,03/03/19 20:45,"637 Forest St, New York City, NY 10001" +177520,USB-C Charging Cable,1,11.95,03/05/19 16:11,"100 Lake St, Austin, TX 73301" +177521,Wired Headphones,1,11.99,03/10/19 16:28,"282 Hill St, San Francisco, CA 94016" +177522,Lightning Charging Cable,1,14.95,03/05/19 22:00,"774 7th St, Portland, ME 04101" +177523,Lightning Charging Cable,1,14.95,03/29/19 07:00,"515 13th St, Dallas, TX 75001" +177524,Wired Headphones,1,11.99,03/22/19 20:49,"220 Dogwood St, Los Angeles, CA 90001" +177525,AA Batteries (4-pack),1,3.84,03/18/19 18:17,"73 Spruce St, Boston, MA 02215" +177526,Bose SoundSport Headphones,1,99.99,03/12/19 19:34,"669 North St, San Francisco, CA 94016" +177527,AA Batteries (4-pack),3,3.84,03/19/19 23:40,"299 Johnson St, Los Angeles, CA 90001" +177528,27in FHD Monitor,1,149.99,03/01/19 12:28,"40 Lincoln St, Seattle, WA 98101" +177528,34in Ultrawide Monitor,1,379.99,03/01/19 12:28,"40 Lincoln St, Seattle, WA 98101" +177529,Google Phone,1,600,03/09/19 19:46,"777 Highland St, Los Angeles, CA 90001" +177529,Bose SoundSport Headphones,1,99.99,03/09/19 19:46,"777 Highland St, Los Angeles, CA 90001" +177530,Vareebadd Phone,1,400,03/28/19 14:55,"964 Ridge St, San Francisco, CA 94016" +177530,Wired Headphones,1,11.99,03/28/19 14:55,"964 Ridge St, San Francisco, CA 94016" +177531,Lightning Charging Cable,1,14.95,03/01/19 08:57,"961 5th St, San Francisco, CA 94016" +177532,27in 4K Gaming Monitor,1,389.99,03/23/19 10:25,"264 11th St, Boston, MA 02215" +177533,AA Batteries (4-pack),1,3.84,03/24/19 06:51,"943 Park St, San Francisco, CA 94016" +177534,27in FHD Monitor,1,149.99,03/15/19 23:57,"91 Madison St, Portland, OR 97035" +177535,Google Phone,1,600,03/19/19 19:09,"844 11th St, Portland, OR 97035" +177535,USB-C Charging Cable,2,11.95,03/19/19 19:09,"844 11th St, Portland, OR 97035" +177536,Wired Headphones,1,11.99,03/07/19 10:00,"547 1st St, New York City, NY 10001" +177537,34in Ultrawide Monitor,1,379.99,03/21/19 09:34,"927 Hickory St, San Francisco, CA 94016" +177538,ThinkPad Laptop,1,999.99,03/05/19 19:02,"180 13th St, Seattle, WA 98101" +177539,iPhone,1,700,03/15/19 18:33,"570 Ridge St, Dallas, TX 75001" +177540,Apple Airpods Headphones,1,150,03/27/19 10:07,"495 Forest St, Los Angeles, CA 90001" +177541,Lightning Charging Cable,1,14.95,03/20/19 20:02,"951 Wilson St, New York City, NY 10001" +177542,Apple Airpods Headphones,1,150,03/09/19 12:51,"700 Adams St, Seattle, WA 98101" +177543,Vareebadd Phone,1,400,03/16/19 17:13,"671 Main St, Boston, MA 02215" +177544,iPhone,1,700,03/23/19 05:49,"469 Meadow St, San Francisco, CA 94016" +177545,Lightning Charging Cable,1,14.95,04/01/19 01:04,"534 Meadow St, San Francisco, CA 94016" +177546,Apple Airpods Headphones,1,150,03/25/19 19:18,"412 14th St, New York City, NY 10001" +177547,Wired Headphones,1,11.99,03/09/19 11:17,"304 12th St, Austin, TX 73301" +177548,Apple Airpods Headphones,1,150,03/11/19 15:38,"88 2nd St, Atlanta, GA 30301" +177549,34in Ultrawide Monitor,1,379.99,03/28/19 19:15,"72 Ridge St, San Francisco, CA 94016" +177550,AAA Batteries (4-pack),1,2.99,03/03/19 07:12,"582 Sunset St, New York City, NY 10001" +177551,Lightning Charging Cable,1,14.95,03/24/19 10:50,"21 Center St, Los Angeles, CA 90001" +177552,Wired Headphones,1,11.99,03/21/19 10:53,"681 Ridge St, Dallas, TX 75001" +177553,Google Phone,1,600,03/04/19 10:57,"612 2nd St, Seattle, WA 98101" +177554,Flatscreen TV,1,300,03/14/19 09:48,"476 4th St, San Francisco, CA 94016" +177555,Lightning Charging Cable,1,14.95,03/02/19 17:57,"12 Hill St, San Francisco, CA 94016" +177556,Bose SoundSport Headphones,1,99.99,03/27/19 18:09,"210 Pine St, Seattle, WA 98101" +177557,27in FHD Monitor,1,149.99,03/27/19 22:54,"98 South St, San Francisco, CA 94016" +177558,Lightning Charging Cable,1,14.95,03/16/19 22:54,"601 6th St, New York City, NY 10001" +177559,Flatscreen TV,1,300,03/05/19 01:34,"26 North St, Los Angeles, CA 90001" +177560,Flatscreen TV,1,300,03/28/19 19:38,"740 Church St, San Francisco, CA 94016" +177561,Wired Headphones,1,11.99,03/10/19 21:05,"192 Pine St, San Francisco, CA 94016" +177562,34in Ultrawide Monitor,1,379.99,03/31/19 12:15,"275 7th St, San Francisco, CA 94016" +177563,Apple Airpods Headphones,1,150,03/31/19 15:35,"774 Lincoln St, Boston, MA 02215" +177564,Google Phone,1,600,03/01/19 14:55,"165 8th St, Austin, TX 73301" +177565,Bose SoundSport Headphones,1,99.99,03/08/19 21:47,"128 Cedar St, San Francisco, CA 94016" +177566,iPhone,1,700,03/24/19 00:05,"751 Wilson St, Austin, TX 73301" +177567,AA Batteries (4-pack),2,3.84,03/16/19 20:56,"776 Elm St, Austin, TX 73301" +177568,USB-C Charging Cable,1,11.95,03/22/19 17:05,"841 9th St, Boston, MA 02215" +177569,Bose SoundSport Headphones,1,99.99,03/04/19 21:36,"109 North St, Los Angeles, CA 90001" +177570,Bose SoundSport Headphones,1,99.99,03/29/19 18:01,"643 Cherry St, Dallas, TX 75001" +177571,AA Batteries (4-pack),2,3.84,03/16/19 22:10,"693 Lake St, Boston, MA 02215" +177572,Lightning Charging Cable,1,14.95,03/17/19 20:25,"426 Lincoln St, Austin, TX 73301" +177573,Apple Airpods Headphones,1,150,03/11/19 11:17,"562 Spruce St, San Francisco, CA 94016" +177574,Apple Airpods Headphones,1,150,03/12/19 12:22,"104 4th St, New York City, NY 10001" +177575,AA Batteries (4-pack),1,3.84,03/29/19 07:54,"865 South St, San Francisco, CA 94016" +177576,AAA Batteries (4-pack),1,2.99,03/27/19 18:30,"403 Lake St, Los Angeles, CA 90001" +177577,Wired Headphones,1,11.99,03/18/19 05:37,"41 Maple St, San Francisco, CA 94016" +177578,Bose SoundSport Headphones,1,99.99,03/29/19 14:54,"555 5th St, Los Angeles, CA 90001" +177579,27in FHD Monitor,1,149.99,03/23/19 21:35,"233 Forest St, New York City, NY 10001" +177580,Apple Airpods Headphones,1,150,03/12/19 12:45,"516 Cedar St, Los Angeles, CA 90001" +177581,Google Phone,1,600,03/12/19 19:47,"999 12th St, Seattle, WA 98101" +177581,USB-C Charging Cable,1,11.95,03/12/19 19:47,"999 12th St, Seattle, WA 98101" +177582,Lightning Charging Cable,1,14.95,03/04/19 17:13,"835 Jackson St, Boston, MA 02215" +177583,USB-C Charging Cable,1,11.95,03/15/19 05:21,"505 River St, Seattle, WA 98101" +177584,Bose SoundSport Headphones,1,99.99,03/02/19 19:30,"963 Meadow St, Atlanta, GA 30301" +177585,34in Ultrawide Monitor,1,379.99,03/30/19 18:54,"89 Chestnut St, Boston, MA 02215" +177586,AAA Batteries (4-pack),3,2.99,03/30/19 13:03,"183 Meadow St, New York City, NY 10001" +177587,Apple Airpods Headphones,1,150,03/16/19 13:24,"57 Church St, San Francisco, CA 94016" +177588,AA Batteries (4-pack),1,3.84,03/05/19 11:28,"323 Hickory St, San Francisco, CA 94016" +177589,Wired Headphones,1,11.99,03/22/19 13:16,"756 Lake St, Seattle, WA 98101" +177590,AAA Batteries (4-pack),1,2.99,03/10/19 14:10,"812 Meadow St, Los Angeles, CA 90001" +177591,USB-C Charging Cable,1,11.95,03/31/19 06:37,"522 Cedar St, Los Angeles, CA 90001" +177592,Bose SoundSport Headphones,1,99.99,03/14/19 23:17,"422 Park St, San Francisco, CA 94016" +177593,Lightning Charging Cable,1,14.95,03/12/19 14:57,"21 Forest St, Los Angeles, CA 90001" +177594,Wired Headphones,1,11.99,03/31/19 00:42,"772 Wilson St, Atlanta, GA 30301" +177595,Google Phone,1,600,03/24/19 10:59,"307 Cedar St, San Francisco, CA 94016" +177596,Apple Airpods Headphones,1,150,03/17/19 08:38,"240 2nd St, San Francisco, CA 94016" +177597,Macbook Pro Laptop,1,1700,03/26/19 14:37,"377 Sunset St, Austin, TX 73301" +177598,AAA Batteries (4-pack),2,2.99,03/17/19 17:34,"140 Park St, New York City, NY 10001" +177599,Lightning Charging Cable,1,14.95,03/25/19 19:40,"445 Hickory St, Portland, OR 97035" +177600,Vareebadd Phone,1,400,03/29/19 23:53,"588 Wilson St, Boston, MA 02215" +177600,USB-C Charging Cable,1,11.95,03/29/19 23:53,"588 Wilson St, Boston, MA 02215" +177601,AA Batteries (4-pack),2,3.84,03/08/19 23:39,"665 Church St, Los Angeles, CA 90001" +177602,Bose SoundSport Headphones,1,99.99,03/30/19 10:07,"762 Jefferson St, San Francisco, CA 94016" +177603,Lightning Charging Cable,1,14.95,03/04/19 19:45,"416 Park St, Atlanta, GA 30301" +177604,AAA Batteries (4-pack),3,2.99,03/08/19 14:44,"210 Washington St, Los Angeles, CA 90001" +177605,Wired Headphones,1,11.99,03/31/19 10:08,"624 7th St, San Francisco, CA 94016" +177606,Apple Airpods Headphones,1,150,03/29/19 14:03,"598 7th St, San Francisco, CA 94016" +177607,Apple Airpods Headphones,1,150,03/26/19 21:54,"975 Elm St, Portland, OR 97035" +177608,34in Ultrawide Monitor,1,379.99,03/27/19 00:15,"17 4th St, New York City, NY 10001" +177609,Apple Airpods Headphones,1,150,03/28/19 12:17,"473 Forest St, Austin, TX 73301" +177610,AA Batteries (4-pack),2,3.84,03/24/19 14:46,"236 2nd St, Los Angeles, CA 90001" +177611,USB-C Charging Cable,1,11.95,03/07/19 17:16,"49 Lake St, San Francisco, CA 94016" +177612,AA Batteries (4-pack),2,3.84,03/16/19 16:45,"176 4th St, Los Angeles, CA 90001" +177613,Bose SoundSport Headphones,1,99.99,03/05/19 16:08,"452 12th St, Los Angeles, CA 90001" +177614,AA Batteries (4-pack),1,3.84,03/27/19 18:51,"383 Willow St, Los Angeles, CA 90001" +177615,Wired Headphones,1,11.99,03/29/19 12:30,"384 Pine St, Los Angeles, CA 90001" +177616,USB-C Charging Cable,1,11.95,03/02/19 21:55,"151 Jefferson St, San Francisco, CA 94016" +177617,Apple Airpods Headphones,1,150,03/17/19 16:07,"257 Forest St, San Francisco, CA 94016" +177618,27in FHD Monitor,1,149.99,03/03/19 11:13,"598 6th St, San Francisco, CA 94016" +177619,AA Batteries (4-pack),1,3.84,03/13/19 15:10,"310 Forest St, Dallas, TX 75001" +177620,AAA Batteries (4-pack),1,2.99,03/27/19 06:36,"824 Adams St, San Francisco, CA 94016" +177621,Apple Airpods Headphones,1,150,03/27/19 22:32,"874 Main St, New York City, NY 10001" +177622,iPhone,1,700,03/31/19 23:17,"435 Hill St, Boston, MA 02215" +177622,Lightning Charging Cable,1,14.95,03/31/19 23:17,"435 Hill St, Boston, MA 02215" +177623,Apple Airpods Headphones,1,150,03/17/19 12:33,"542 4th St, San Francisco, CA 94016" +177624,LG Washing Machine,1,600.0,03/12/19 19:30,"48 8th St, Austin, TX 73301" +177625,Lightning Charging Cable,1,14.95,03/15/19 09:56,"676 Elm St, Atlanta, GA 30301" +177626,USB-C Charging Cable,1,11.95,03/26/19 20:07,"924 Lakeview St, Los Angeles, CA 90001" +177627,Bose SoundSport Headphones,1,99.99,03/18/19 09:16,"97 2nd St, Dallas, TX 75001" +177627,27in FHD Monitor,1,149.99,03/18/19 09:16,"97 2nd St, Dallas, TX 75001" +177628,AAA Batteries (4-pack),1,2.99,03/15/19 11:56,"964 Pine St, Los Angeles, CA 90001" +177629,USB-C Charging Cable,1,11.95,03/25/19 18:27,"443 7th St, Austin, TX 73301" +177630,Macbook Pro Laptop,1,1700,03/10/19 10:06,"668 Ridge St, San Francisco, CA 94016" +177631,Wired Headphones,1,11.99,03/13/19 11:10,"123 Hill St, Boston, MA 02215" +177632,27in 4K Gaming Monitor,1,389.99,03/07/19 10:48,"806 Hickory St, San Francisco, CA 94016" +177633,iPhone,1,700,03/26/19 19:57,"284 Washington St, Los Angeles, CA 90001" +177634,Wired Headphones,1,11.99,03/29/19 21:34,"938 Willow St, Los Angeles, CA 90001" +177635,Wired Headphones,1,11.99,03/07/19 06:34,"891 Adams St, Los Angeles, CA 90001" +177636,Lightning Charging Cable,1,14.95,03/28/19 20:35,"197 12th St, San Francisco, CA 94016" +177637,Bose SoundSport Headphones,1,99.99,03/11/19 20:31,"199 West St, Seattle, WA 98101" +177638,iPhone,1,700,03/11/19 22:10,"262 Hill St, Atlanta, GA 30301" +177638,Lightning Charging Cable,1,14.95,03/11/19 22:10,"262 Hill St, Atlanta, GA 30301" +177639,AA Batteries (4-pack),1,3.84,03/22/19 10:03,"638 1st St, Portland, OR 97035" +177640,Lightning Charging Cable,2,14.95,03/01/19 22:13,"867 1st St, New York City, NY 10001" +177641,ThinkPad Laptop,1,999.99,03/03/19 22:31,"925 1st St, Dallas, TX 75001" +177642,Vareebadd Phone,1,400,03/09/19 21:07,"689 6th St, New York City, NY 10001" +177643,Lightning Charging Cable,1,14.95,03/18/19 11:26,"370 Main St, Austin, TX 73301" +177644,USB-C Charging Cable,1,11.95,03/15/19 18:03,"349 13th St, San Francisco, CA 94016" +177645,27in FHD Monitor,1,149.99,03/04/19 19:15,"914 South St, Portland, ME 04101" +177646,Wired Headphones,1,11.99,03/12/19 13:52,"53 14th St, Austin, TX 73301" +177647,Lightning Charging Cable,1,14.95,03/24/19 19:19,"631 13th St, San Francisco, CA 94016" +177648,AAA Batteries (4-pack),1,2.99,03/02/19 20:03,"905 Center St, Austin, TX 73301" +177649,AA Batteries (4-pack),1,3.84,03/04/19 08:15,"21 2nd St, Seattle, WA 98101" +177650,iPhone,1,700,03/19/19 09:47,"430 Meadow St, Portland, ME 04101" +177650,Apple Airpods Headphones,1,150,03/19/19 09:47,"430 Meadow St, Portland, ME 04101" +177651,Google Phone,1,600,03/12/19 21:14,"183 Ridge St, Seattle, WA 98101" +177652,AA Batteries (4-pack),2,3.84,03/29/19 20:46,"727 Meadow St, Austin, TX 73301" +177653,Bose SoundSport Headphones,1,99.99,03/27/19 19:02,"314 8th St, New York City, NY 10001" +177654,Wired Headphones,1,11.99,03/18/19 08:53,"901 Pine St, Boston, MA 02215" +177655,27in FHD Monitor,1,149.99,03/20/19 12:38,"294 1st St, Seattle, WA 98101" +177656,Flatscreen TV,1,300,03/07/19 13:02,"332 14th St, San Francisco, CA 94016" +177657,USB-C Charging Cable,1,11.95,03/26/19 20:54,"123 6th St, Dallas, TX 75001" +177658,Flatscreen TV,1,300,03/12/19 16:34,"9 Meadow St, New York City, NY 10001" +177659,ThinkPad Laptop,1,999.99,03/16/19 14:20,"263 Forest St, San Francisco, CA 94016" +177660,Macbook Pro Laptop,1,1700,03/02/19 18:19,"752 North St, Atlanta, GA 30301" +177661,Apple Airpods Headphones,1,150,03/18/19 11:57,"808 Hickory St, San Francisco, CA 94016" +177662,AAA Batteries (4-pack),1,2.99,03/28/19 20:58,"717 West St, Los Angeles, CA 90001" +177663,AA Batteries (4-pack),2,3.84,03/20/19 15:45,"935 Sunset St, New York City, NY 10001" +177664,AAA Batteries (4-pack),1,2.99,03/20/19 12:03,"64 12th St, San Francisco, CA 94016" +177665,iPhone,1,700,03/16/19 18:55,"888 Meadow St, Boston, MA 02215" +177666,AA Batteries (4-pack),1,3.84,03/10/19 08:03,"588 Pine St, Boston, MA 02215" +177667,Bose SoundSport Headphones,1,99.99,03/21/19 18:23,"942 10th St, Austin, TX 73301" +177668,Bose SoundSport Headphones,1,99.99,03/02/19 15:41,"273 9th St, New York City, NY 10001" +177669,AA Batteries (4-pack),1,3.84,03/04/19 18:02,"145 14th St, Atlanta, GA 30301" +177670,27in FHD Monitor,1,149.99,03/08/19 19:05,"575 4th St, Boston, MA 02215" +177671,AA Batteries (4-pack),1,3.84,03/25/19 08:16,"861 Maple St, Seattle, WA 98101" +177672,34in Ultrawide Monitor,1,379.99,03/19/19 19:37,"110 Jackson St, Los Angeles, CA 90001" +177673,Wired Headphones,1,11.99,03/24/19 11:19,"825 Maple St, New York City, NY 10001" +177674,Google Phone,1,600,03/25/19 19:01,"666 13th St, Dallas, TX 75001" +177675,Wired Headphones,1,11.99,03/04/19 22:07,"799 7th St, Seattle, WA 98101" +177676,Lightning Charging Cable,1,14.95,03/20/19 16:14,"190 Washington St, Austin, TX 73301" +177677,Wired Headphones,1,11.99,03/26/19 11:05,"857 Lincoln St, Dallas, TX 75001" +177678,Vareebadd Phone,1,400,03/17/19 01:49,"957 Hickory St, Atlanta, GA 30301" +177679,Apple Airpods Headphones,1,150,03/31/19 14:40,"984 6th St, Boston, MA 02215" +177680,27in 4K Gaming Monitor,1,389.99,03/17/19 15:17,"736 Jackson St, Portland, OR 97035" +177681,USB-C Charging Cable,2,11.95,03/18/19 23:13,"728 Meadow St, San Francisco, CA 94016" +177682,AA Batteries (4-pack),1,3.84,03/04/19 15:51,"114 9th St, Portland, OR 97035" +177683,Google Phone,1,600,03/05/19 21:13,"860 2nd St, Dallas, TX 75001" +177684,27in FHD Monitor,1,149.99,03/15/19 03:29,"137 Lakeview St, Portland, OR 97035" +177685,Wired Headphones,1,11.99,03/18/19 12:38,"770 2nd St, Los Angeles, CA 90001" +177686,Apple Airpods Headphones,1,150,03/01/19 18:00,"528 Dogwood St, Boston, MA 02215" +177687,Bose SoundSport Headphones,1,99.99,03/16/19 19:29,"947 Pine St, San Francisco, CA 94016" +177688,Lightning Charging Cable,1,14.95,03/21/19 17:01,"742 9th St, Seattle, WA 98101" +177689,Lightning Charging Cable,1,14.95,03/26/19 21:30,"35 11th St, Los Angeles, CA 90001" +177690,USB-C Charging Cable,1,11.95,03/19/19 12:03,"237 Spruce St, Seattle, WA 98101" +177691,Lightning Charging Cable,1,14.95,03/25/19 19:48,"461 Lakeview St, San Francisco, CA 94016" +177692,Bose SoundSport Headphones,1,99.99,03/08/19 14:47,"207 North St, Seattle, WA 98101" +177693,AA Batteries (4-pack),2,3.84,03/16/19 23:24,"420 10th St, Boston, MA 02215" +177694,Macbook Pro Laptop,1,1700,03/10/19 08:30,"455 Elm St, Portland, OR 97035" +177695,Flatscreen TV,1,300,03/31/19 06:54,"608 Adams St, Los Angeles, CA 90001" +177696,Wired Headphones,1,11.99,03/06/19 19:35,"238 River St, Seattle, WA 98101" +177697,USB-C Charging Cable,1,11.95,03/15/19 20:13,"377 9th St, San Francisco, CA 94016" +177698,Google Phone,1,600,03/15/19 00:20,"343 Adams St, Atlanta, GA 30301" +177699,USB-C Charging Cable,1,11.95,03/27/19 18:44,"810 Lake St, New York City, NY 10001" +177700,Bose SoundSport Headphones,1,99.99,03/06/19 03:12,"129 Park St, Boston, MA 02215" +177701,USB-C Charging Cable,1,11.95,03/24/19 08:05,"443 Cedar St, Los Angeles, CA 90001" +177702,AAA Batteries (4-pack),1,2.99,03/20/19 12:16,"920 Lakeview St, San Francisco, CA 94016" +177703,Apple Airpods Headphones,1,150,03/20/19 09:23,"198 Lincoln St, Portland, OR 97035" +177704,Flatscreen TV,1,300,03/03/19 09:34,"23 Madison St, Los Angeles, CA 90001" +177705,AAA Batteries (4-pack),1,2.99,03/25/19 00:21,"83 Washington St, Dallas, TX 75001" +177706,Google Phone,1,600,03/14/19 12:26,"819 Chestnut St, San Francisco, CA 94016" +177707,USB-C Charging Cable,1,11.95,03/30/19 19:37,"479 North St, Austin, TX 73301" +177708,AAA Batteries (4-pack),1,2.99,03/23/19 19:39,"415 Hickory St, San Francisco, CA 94016" +177709,Bose SoundSport Headphones,1,99.99,03/12/19 16:26,"493 10th St, Dallas, TX 75001" +177710,LG Dryer,1,600.0,03/31/19 17:45,"989 Lake St, San Francisco, CA 94016" +177711,Google Phone,1,600,03/29/19 13:04,"872 Main St, San Francisco, CA 94016" +177712,27in FHD Monitor,1,149.99,03/12/19 20:25,"914 2nd St, Austin, TX 73301" +177713,AA Batteries (4-pack),2,3.84,03/23/19 15:43,"907 Willow St, Boston, MA 02215" +177714,Vareebadd Phone,1,400,03/11/19 12:48,"134 Forest St, Dallas, TX 75001" +177714,USB-C Charging Cable,1,11.95,03/11/19 12:48,"134 Forest St, Dallas, TX 75001" +177715,ThinkPad Laptop,1,999.99,03/16/19 08:01,"465 5th St, San Francisco, CA 94016" +177716,Bose SoundSport Headphones,1,99.99,03/29/19 18:38,"161 11th St, San Francisco, CA 94016" +177716,USB-C Charging Cable,1,11.95,03/29/19 18:38,"161 11th St, San Francisco, CA 94016" +177717,Lightning Charging Cable,1,14.95,03/14/19 18:39,"492 11th St, New York City, NY 10001" +177718,Lightning Charging Cable,1,14.95,03/25/19 15:36,"314 9th St, Portland, OR 97035" +177719,AAA Batteries (4-pack),1,2.99,03/20/19 19:52,"877 Hill St, San Francisco, CA 94016" +177720,USB-C Charging Cable,1,11.95,03/22/19 21:01,"588 Church St, Dallas, TX 75001" +177721,Lightning Charging Cable,1,14.95,03/03/19 19:42,"685 10th St, New York City, NY 10001" +177722,Lightning Charging Cable,1,14.95,03/11/19 18:04,"429 Highland St, Austin, TX 73301" +177723,Macbook Pro Laptop,1,1700,03/18/19 11:04,"407 Johnson St, Atlanta, GA 30301" +177724,Lightning Charging Cable,1,14.95,03/09/19 18:36,"342 Center St, San Francisco, CA 94016" +177725,Bose SoundSport Headphones,1,99.99,03/18/19 22:17,"20 West St, San Francisco, CA 94016" +177726,AAA Batteries (4-pack),4,2.99,03/31/19 14:41,"34 Hickory St, Los Angeles, CA 90001" +177727,AAA Batteries (4-pack),1,2.99,03/14/19 15:28,"260 Lake St, Boston, MA 02215" +177728,Lightning Charging Cable,1,14.95,03/15/19 21:43,"533 Meadow St, Portland, OR 97035" +177729,Wired Headphones,2,11.99,03/28/19 19:24,"892 Church St, Dallas, TX 75001" +177730,Apple Airpods Headphones,1,150,03/02/19 09:27,"333 11th St, Los Angeles, CA 90001" +177731,AAA Batteries (4-pack),1,2.99,03/14/19 21:16,"132 Forest St, Dallas, TX 75001" +177732,27in 4K Gaming Monitor,1,389.99,03/13/19 08:28,"391 7th St, San Francisco, CA 94016" +177733,27in FHD Monitor,1,149.99,03/14/19 20:43,"612 Meadow St, Los Angeles, CA 90001" +177734,27in FHD Monitor,1,149.99,03/10/19 21:11,"906 River St, Los Angeles, CA 90001" +177735,Wired Headphones,1,11.99,03/28/19 09:41,"923 Adams St, San Francisco, CA 94016" +177736,AAA Batteries (4-pack),2,2.99,03/05/19 15:02,"306 7th St, Los Angeles, CA 90001" +177737,Wired Headphones,1,11.99,03/04/19 21:20,"789 14th St, San Francisco, CA 94016" +177737,27in FHD Monitor,1,149.99,03/04/19 21:20,"789 14th St, San Francisco, CA 94016" +177738,AAA Batteries (4-pack),2,2.99,03/28/19 07:16,"237 12th St, San Francisco, CA 94016" +177739,AAA Batteries (4-pack),2,2.99,03/11/19 23:13,"868 Adams St, New York City, NY 10001" +177740,Apple Airpods Headphones,1,150,03/05/19 22:51,"824 Jackson St, Los Angeles, CA 90001" +177741,USB-C Charging Cable,1,11.95,03/04/19 05:49,"999 Highland St, New York City, NY 10001" +177742,USB-C Charging Cable,1,11.95,03/02/19 10:42,"650 1st St, Seattle, WA 98101" +177743,Lightning Charging Cable,1,14.95,03/12/19 20:29,"470 Highland St, Dallas, TX 75001" +177744,Apple Airpods Headphones,1,150,03/23/19 21:10,"531 Church St, San Francisco, CA 94016" +177745,Flatscreen TV,1,300,03/03/19 14:30,"398 Meadow St, Los Angeles, CA 90001" +177746,Wired Headphones,1,11.99,03/28/19 14:27,"210 8th St, Portland, OR 97035" +177747,Lightning Charging Cable,1,14.95,03/21/19 04:57,"190 Wilson St, Atlanta, GA 30301" +177748,Lightning Charging Cable,1,14.95,03/19/19 18:27,"17 7th St, New York City, NY 10001" +177749,AAA Batteries (4-pack),1,2.99,03/08/19 18:48,"623 Cedar St, San Francisco, CA 94016" +177750,Bose SoundSport Headphones,1,99.99,03/17/19 21:26,"557 1st St, Boston, MA 02215" +177751,AA Batteries (4-pack),1,3.84,03/28/19 22:53,"852 6th St, Dallas, TX 75001" +177752,Bose SoundSport Headphones,1,99.99,03/14/19 18:14,"604 South St, Boston, MA 02215" +177753,iPhone,1,700,03/17/19 19:45,"741 6th St, Seattle, WA 98101" +177754,Wired Headphones,2,11.99,03/02/19 13:06,"931 Johnson St, San Francisco, CA 94016" +177755,27in 4K Gaming Monitor,1,389.99,03/22/19 17:13,"79 Cherry St, New York City, NY 10001" +177756,Apple Airpods Headphones,1,150,03/17/19 11:10,"767 Main St, Atlanta, GA 30301" +177757,USB-C Charging Cable,2,11.95,03/26/19 08:46,"155 Lake St, New York City, NY 10001" +177758,Vareebadd Phone,1,400,03/24/19 06:27,"724 Ridge St, Seattle, WA 98101" +177759,27in 4K Gaming Monitor,1,389.99,03/27/19 13:32,"787 Center St, Portland, OR 97035" +177760,AA Batteries (4-pack),1,3.84,03/08/19 17:42,"355 Highland St, New York City, NY 10001" +177761,27in 4K Gaming Monitor,1,389.99,03/18/19 12:55,"282 Johnson St, Atlanta, GA 30301" +177762,27in FHD Monitor,1,149.99,03/30/19 13:46,"420 11th St, Los Angeles, CA 90001" +177763,AA Batteries (4-pack),2,3.84,03/23/19 18:17,"156 12th St, San Francisco, CA 94016" +177764,USB-C Charging Cable,1,11.95,03/25/19 23:40,"352 Sunset St, Boston, MA 02215" +177765,Bose SoundSport Headphones,1,99.99,03/19/19 07:07,"32 9th St, New York City, NY 10001" +177766,USB-C Charging Cable,1,11.95,03/29/19 22:35,"142 Cedar St, San Francisco, CA 94016" +177767,iPhone,1,700,03/22/19 13:25,"791 Hickory St, Boston, MA 02215" +177768,USB-C Charging Cable,1,11.95,03/01/19 16:51,"567 Lakeview St, New York City, NY 10001" +177769,AAA Batteries (4-pack),1,2.99,03/19/19 18:54,"459 Madison St, New York City, NY 10001" +177770,ThinkPad Laptop,1,999.99,03/17/19 00:08,"317 Madison St, San Francisco, CA 94016" +177771,ThinkPad Laptop,1,999.99,03/20/19 23:31,"575 Lakeview St, Dallas, TX 75001" +177772,Apple Airpods Headphones,1,150,03/20/19 11:24,"470 Hill St, New York City, NY 10001" +177773,Wired Headphones,1,11.99,03/07/19 19:02,"838 Johnson St, Los Angeles, CA 90001" +177774,Apple Airpods Headphones,1,150,03/08/19 00:12,"793 9th St, Portland, OR 97035" +177775,Vareebadd Phone,1,400,03/30/19 12:45,"470 1st St, New York City, NY 10001" +177776,Bose SoundSport Headphones,1,99.99,03/17/19 18:48,"72 Willow St, Portland, ME 04101" +177777,USB-C Charging Cable,1,11.95,03/21/19 06:49,"886 Elm St, San Francisco, CA 94016" +177778,34in Ultrawide Monitor,1,379.99,03/14/19 18:41,"285 4th St, Austin, TX 73301" +177779,Wired Headphones,1,11.99,03/07/19 12:26,"440 Adams St, San Francisco, CA 94016" +177779,Apple Airpods Headphones,1,150,03/07/19 12:26,"440 Adams St, San Francisco, CA 94016" +177780,USB-C Charging Cable,1,11.95,03/03/19 16:57,"250 Church St, San Francisco, CA 94016" +177781,Lightning Charging Cable,1,14.95,03/31/19 15:39,"288 Wilson St, Los Angeles, CA 90001" +177782,34in Ultrawide Monitor,1,379.99,03/24/19 18:34,"616 Pine St, Dallas, TX 75001" +177783,AA Batteries (4-pack),1,3.84,03/06/19 18:32,"579 Sunset St, New York City, NY 10001" +177784,Bose SoundSport Headphones,1,99.99,03/28/19 23:30,"87 11th St, San Francisco, CA 94016" +177785,iPhone,1,700,03/13/19 22:45,"709 12th St, Portland, OR 97035" +177786,AA Batteries (4-pack),1,3.84,03/15/19 11:39,"208 Cherry St, San Francisco, CA 94016" +177787,iPhone,1,700,03/19/19 09:39,"194 Maple St, Atlanta, GA 30301" +177788,Bose SoundSport Headphones,1,99.99,03/01/19 11:02,"429 Jefferson St, Los Angeles, CA 90001" +177789,AA Batteries (4-pack),1,3.84,03/22/19 10:26,"314 Madison St, San Francisco, CA 94016" +177790,27in FHD Monitor,1,149.99,03/06/19 10:03,"507 Main St, Atlanta, GA 30301" +177791,Bose SoundSport Headphones,1,99.99,03/04/19 20:27,"53 6th St, Los Angeles, CA 90001" +177792,Apple Airpods Headphones,1,150,03/27/19 01:35,"339 Main St, San Francisco, CA 94016" +177793,Bose SoundSport Headphones,1,99.99,03/31/19 11:33,"548 11th St, New York City, NY 10001" +177794,USB-C Charging Cable,1,11.95,03/03/19 20:22,"870 Chestnut St, Austin, TX 73301" +177795,LG Dryer,1,600.0,03/20/19 17:41,"645 Chestnut St, Boston, MA 02215" +177796,Lightning Charging Cable,1,14.95,03/21/19 21:38,"623 9th St, Los Angeles, CA 90001" +177797,AA Batteries (4-pack),1,3.84,03/18/19 01:25,"496 Cedar St, Austin, TX 73301" +177798,AA Batteries (4-pack),1,3.84,03/08/19 20:40,"307 Hill St, Los Angeles, CA 90001" +177799,AAA Batteries (4-pack),1,2.99,03/25/19 16:43,"431 Forest St, Los Angeles, CA 90001" +177800,Wired Headphones,1,11.99,03/23/19 20:36,"369 11th St, Los Angeles, CA 90001" +177801,Bose SoundSport Headphones,1,99.99,03/18/19 11:20,"385 Hill St, Portland, OR 97035" +177802,27in FHD Monitor,1,149.99,03/16/19 17:39,"442 West St, Portland, OR 97035" +177803,USB-C Charging Cable,2,11.95,03/01/19 18:03,"622 11th St, Seattle, WA 98101" +177803,AAA Batteries (4-pack),2,2.99,03/01/19 18:03,"622 11th St, Seattle, WA 98101" +177804,USB-C Charging Cable,1,11.95,03/10/19 11:31,"395 13th St, New York City, NY 10001" +177805,AA Batteries (4-pack),2,3.84,03/03/19 14:17,"842 Cedar St, San Francisco, CA 94016" +177806,Apple Airpods Headphones,1,150,03/02/19 13:49,"187 10th St, Los Angeles, CA 90001" +177807,USB-C Charging Cable,2,11.95,03/02/19 13:53,"735 2nd St, Dallas, TX 75001" +177808,34in Ultrawide Monitor,1,379.99,03/14/19 15:34,"480 River St, Seattle, WA 98101" +177809,Flatscreen TV,1,300,03/30/19 09:02,"526 Cherry St, Seattle, WA 98101" +177810,Flatscreen TV,1,300,03/16/19 14:27,"604 Maple St, Seattle, WA 98101" +177811,27in FHD Monitor,1,149.99,03/08/19 09:48,"491 10th St, New York City, NY 10001" +177812,AAA Batteries (4-pack),1,2.99,03/08/19 16:57,"313 Sunset St, San Francisco, CA 94016" +177813,Apple Airpods Headphones,1,150,03/18/19 14:57,"791 Spruce St, New York City, NY 10001" +177814,AAA Batteries (4-pack),1,2.99,03/03/19 18:48,"178 Jefferson St, Dallas, TX 75001" +177815,Wired Headphones,1,11.99,03/29/19 10:53,"264 Spruce St, Atlanta, GA 30301" +177816,Wired Headphones,1,11.99,03/16/19 13:57,"444 Meadow St, San Francisco, CA 94016" +177817,Wired Headphones,1,11.99,03/25/19 21:15,"362 South St, Portland, OR 97035" +177818,ThinkPad Laptop,1,999.99,03/22/19 22:50,"169 2nd St, Boston, MA 02215" +177819,Lightning Charging Cable,1,14.95,03/06/19 17:32,"709 South St, Portland, OR 97035" +177820,Wired Headphones,1,11.99,03/18/19 23:31,"615 West St, Los Angeles, CA 90001" +177821,Lightning Charging Cable,1,14.95,03/31/19 22:04,"313 13th St, Seattle, WA 98101" +177822,Flatscreen TV,1,300,03/14/19 11:07,"172 Walnut St, Austin, TX 73301" +177823,Lightning Charging Cable,1,14.95,03/21/19 16:03,"232 Madison St, San Francisco, CA 94016" +177824,USB-C Charging Cable,1,11.95,03/07/19 16:47,"42 Willow St, San Francisco, CA 94016" +177825,iPhone,1,700,03/16/19 18:23,"972 Spruce St, Portland, OR 97035" +177826,Lightning Charging Cable,1,14.95,03/09/19 10:53,"622 Church St, Boston, MA 02215" +177827,Vareebadd Phone,1,400,03/13/19 00:05,"523 Madison St, Austin, TX 73301" +177827,USB-C Charging Cable,1,11.95,03/13/19 00:05,"523 Madison St, Austin, TX 73301" +177828,AA Batteries (4-pack),1,3.84,03/11/19 13:08,"563 Jackson St, Boston, MA 02215" +177829,Apple Airpods Headphones,1,150,03/05/19 18:51,"691 Elm St, Dallas, TX 75001" +177830,27in 4K Gaming Monitor,1,389.99,03/08/19 12:34,"902 Park St, San Francisco, CA 94016" +177831,iPhone,1,700,03/18/19 05:31,"979 Cedar St, San Francisco, CA 94016" +177831,Wired Headphones,1,11.99,03/18/19 05:31,"979 Cedar St, San Francisco, CA 94016" +177832,AAA Batteries (4-pack),1,2.99,03/07/19 23:42,"30 4th St, San Francisco, CA 94016" +177833,USB-C Charging Cable,1,11.95,03/07/19 22:41,"313 11th St, Austin, TX 73301" +177834,USB-C Charging Cable,2,11.95,03/20/19 09:10,"48 1st St, Los Angeles, CA 90001" +177835,20in Monitor,1,109.99,03/23/19 15:48,"695 Forest St, Atlanta, GA 30301" +177836,20in Monitor,1,109.99,03/16/19 18:28,"168 Adams St, Atlanta, GA 30301" +177837,Apple Airpods Headphones,1,150,03/13/19 14:35,"783 2nd St, New York City, NY 10001" +177838,AAA Batteries (4-pack),1,2.99,03/19/19 18:48,"590 Cedar St, Los Angeles, CA 90001" +177839,Google Phone,1,600,03/22/19 19:45,"389 Jackson St, Seattle, WA 98101" +177840,Wired Headphones,1,11.99,03/14/19 18:44,"851 Lake St, Seattle, WA 98101" +177841,Wired Headphones,1,11.99,03/04/19 10:54,"156 11th St, Los Angeles, CA 90001" +177842,AAA Batteries (4-pack),1,2.99,03/01/19 12:00,"903 River St, Los Angeles, CA 90001" +177843,AAA Batteries (4-pack),1,2.99,03/08/19 20:24,"25 Lincoln St, Atlanta, GA 30301" +177843,Wired Headphones,1,11.99,03/08/19 20:24,"25 Lincoln St, Atlanta, GA 30301" +177844,Apple Airpods Headphones,1,150,03/29/19 18:17,"933 2nd St, Portland, ME 04101" +177845,AA Batteries (4-pack),2,3.84,03/21/19 11:36,"940 River St, San Francisco, CA 94016" +177846,Apple Airpods Headphones,1,150,03/08/19 01:30,"822 2nd St, Portland, OR 97035" +177846,34in Ultrawide Monitor,1,379.99,03/08/19 01:30,"822 2nd St, Portland, OR 97035" +177847,Apple Airpods Headphones,1,150,03/27/19 22:20,"226 Maple St, Los Angeles, CA 90001" +177848,USB-C Charging Cable,1,11.95,03/23/19 11:32,"432 9th St, Los Angeles, CA 90001" +177849,Vareebadd Phone,1,400,03/15/19 14:14,"439 Cherry St, Seattle, WA 98101" +177850,Wired Headphones,1,11.99,03/25/19 17:44,"447 Ridge St, Atlanta, GA 30301" +177851,27in FHD Monitor,1,149.99,03/29/19 20:23,"224 Hickory St, Boston, MA 02215" +177852,Apple Airpods Headphones,1,150,03/15/19 19:10,"648 Willow St, New York City, NY 10001" +177853,AAA Batteries (4-pack),2,2.99,03/16/19 16:55,"937 Jackson St, Los Angeles, CA 90001" +177854,Flatscreen TV,1,300,03/27/19 21:11,"374 South St, New York City, NY 10001" +177855,Macbook Pro Laptop,1,1700,03/08/19 11:23,"458 Lincoln St, Boston, MA 02215" +177856,Wired Headphones,1,11.99,03/31/19 22:37,"306 Dogwood St, Portland, OR 97035" +177857,Google Phone,1,600,03/26/19 08:27,"211 2nd St, Seattle, WA 98101" +177858,AA Batteries (4-pack),1,3.84,03/26/19 11:53,"493 Chestnut St, Dallas, TX 75001" +177859,Macbook Pro Laptop,1,1700,03/01/19 22:37,"289 Lincoln St, Dallas, TX 75001" +177860,Bose SoundSport Headphones,1,99.99,03/18/19 21:54,"197 Sunset St, Atlanta, GA 30301" +177861,Bose SoundSport Headphones,1,99.99,03/16/19 14:35,"363 Highland St, Dallas, TX 75001" +177862,AAA Batteries (4-pack),2,2.99,03/18/19 22:09,"663 Johnson St, Portland, OR 97035" +177863,Lightning Charging Cable,1,14.95,03/28/19 19:37,"614 Lincoln St, Los Angeles, CA 90001" +177863,USB-C Charging Cable,1,11.95,03/28/19 19:37,"614 Lincoln St, Los Angeles, CA 90001" +177864,AAA Batteries (4-pack),1,2.99,03/02/19 11:35,"201 Center St, Portland, ME 04101" +177865,AA Batteries (4-pack),2,3.84,03/03/19 18:03,"16 Jackson St, San Francisco, CA 94016" +177866,Lightning Charging Cable,1,14.95,03/20/19 10:36,"431 Washington St, Los Angeles, CA 90001" +177867,AA Batteries (4-pack),1,3.84,03/10/19 12:47,"204 Spruce St, Seattle, WA 98101" +177868,USB-C Charging Cable,1,11.95,03/05/19 17:58,"114 10th St, Los Angeles, CA 90001" +177869,Lightning Charging Cable,1,14.95,03/27/19 22:08,"109 Church St, New York City, NY 10001" +177870,USB-C Charging Cable,2,11.95,03/24/19 18:36,"459 Highland St, San Francisco, CA 94016" +177871,34in Ultrawide Monitor,1,379.99,03/27/19 13:56,"846 12th St, San Francisco, CA 94016" +177872,Bose SoundSport Headphones,1,99.99,03/03/19 21:34,"298 Jefferson St, New York City, NY 10001" +177873,USB-C Charging Cable,2,11.95,03/08/19 16:28,"466 1st St, Los Angeles, CA 90001" +177874,iPhone,1,700,03/25/19 02:39,"215 Elm St, Boston, MA 02215" +177875,34in Ultrawide Monitor,1,379.99,03/10/19 17:13,"445 Wilson St, New York City, NY 10001" +177876,Macbook Pro Laptop,1,1700,03/24/19 08:27,"811 13th St, New York City, NY 10001" +177877,USB-C Charging Cable,1,11.95,03/26/19 11:53,"337 Hill St, San Francisco, CA 94016" +177878,AAA Batteries (4-pack),1,2.99,03/09/19 09:19,"505 2nd St, Los Angeles, CA 90001" +177879,AAA Batteries (4-pack),3,2.99,03/19/19 16:01,"155 11th St, Austin, TX 73301" +177880,Wired Headphones,2,11.99,03/12/19 21:58,"133 Spruce St, Los Angeles, CA 90001" +177881,Wired Headphones,1,11.99,03/26/19 04:28,"416 2nd St, Atlanta, GA 30301" +177882,Apple Airpods Headphones,1,150,03/08/19 10:53,"813 Walnut St, Boston, MA 02215" +177883,USB-C Charging Cable,1,11.95,03/09/19 12:56,"765 Pine St, Los Angeles, CA 90001" +177884,USB-C Charging Cable,1,11.95,03/04/19 21:22,"392 Chestnut St, Dallas, TX 75001" +177885,Wired Headphones,1,11.99,03/10/19 07:51,"300 Wilson St, Portland, OR 97035" +177886,AA Batteries (4-pack),2,3.84,03/19/19 10:08,"338 Maple St, New York City, NY 10001" +177887,Wired Headphones,1,11.99,03/14/19 08:16,"259 Maple St, Atlanta, GA 30301" +177888,AAA Batteries (4-pack),2,2.99,03/29/19 09:18,"34 Elm St, San Francisco, CA 94016" +177889,USB-C Charging Cable,1,11.95,03/25/19 14:02,"295 11th St, San Francisco, CA 94016" +177890,ThinkPad Laptop,1,999.99,03/11/19 13:55,"795 1st St, Atlanta, GA 30301" +177891,USB-C Charging Cable,1,11.95,03/08/19 11:16,"510 South St, Austin, TX 73301" +177892,AAA Batteries (4-pack),3,2.99,03/29/19 20:31,"262 Forest St, Los Angeles, CA 90001" +177892,AAA Batteries (4-pack),1,2.99,03/29/19 20:31,"262 Forest St, Los Angeles, CA 90001" +177893,20in Monitor,1,109.99,03/30/19 19:16,"993 Ridge St, Los Angeles, CA 90001" +177894,Bose SoundSport Headphones,1,99.99,03/30/19 19:39,"962 Highland St, Portland, OR 97035" +177895,Bose SoundSport Headphones,1,99.99,03/30/19 22:56,"477 14th St, Austin, TX 73301" +177896,USB-C Charging Cable,1,11.95,03/12/19 11:11,"909 Pine St, Los Angeles, CA 90001" +177897,Apple Airpods Headphones,1,150,03/12/19 14:53,"779 7th St, Los Angeles, CA 90001" +177898,27in FHD Monitor,1,149.99,03/23/19 22:41,"748 Jefferson St, New York City, NY 10001" +177899,Apple Airpods Headphones,1,150,03/27/19 10:26,"596 Jackson St, New York City, NY 10001" +177900,AAA Batteries (4-pack),2,2.99,03/28/19 23:47,"761 Willow St, Dallas, TX 75001" +177901,27in 4K Gaming Monitor,1,389.99,03/21/19 20:08,"763 6th St, Los Angeles, CA 90001" +177902,Wired Headphones,1,11.99,03/16/19 19:46,"760 North St, Los Angeles, CA 90001" +177903,Lightning Charging Cable,1,14.95,03/21/19 23:47,"257 Pine St, San Francisco, CA 94016" +177904,AA Batteries (4-pack),1,3.84,03/19/19 12:44,"166 Sunset St, Austin, TX 73301" +177905,27in 4K Gaming Monitor,1,389.99,03/05/19 11:08,"990 Walnut St, Seattle, WA 98101" +177906,27in FHD Monitor,1,149.99,03/01/19 19:19,"583 Forest St, San Francisco, CA 94016" +177907,Lightning Charging Cable,2,14.95,03/21/19 10:03,"114 Jackson St, New York City, NY 10001" +177907,AA Batteries (4-pack),1,3.84,03/21/19 10:03,"114 Jackson St, New York City, NY 10001" +177908,Bose SoundSport Headphones,1,99.99,03/12/19 17:19,"178 Washington St, New York City, NY 10001" +177909,AAA Batteries (4-pack),2,2.99,03/19/19 15:18,"391 5th St, Seattle, WA 98101" +177910,27in FHD Monitor,1,149.99,03/20/19 13:42,"491 14th St, Boston, MA 02215" +177911,ThinkPad Laptop,1,999.99,03/29/19 11:07,"389 Meadow St, Atlanta, GA 30301" +177912,ThinkPad Laptop,1,999.99,03/30/19 18:48,"513 7th St, Los Angeles, CA 90001" +177913,AA Batteries (4-pack),2,3.84,03/01/19 11:50,"256 South St, New York City, NY 10001" +177914,AAA Batteries (4-pack),1,2.99,03/14/19 18:04,"712 Lakeview St, San Francisco, CA 94016" +177915,AA Batteries (4-pack),1,3.84,03/16/19 14:55,"436 Madison St, New York City, NY 10001" +177916,USB-C Charging Cable,1,11.95,03/23/19 13:17,"320 Cedar St, Los Angeles, CA 90001" +177917,AA Batteries (4-pack),2,3.84,03/23/19 11:47,"650 Madison St, San Francisco, CA 94016" +177918,Lightning Charging Cable,1,14.95,03/08/19 11:05,"540 Jackson St, Seattle, WA 98101" +177919,Bose SoundSport Headphones,1,99.99,03/22/19 20:26,"70 7th St, Dallas, TX 75001" +177920,AAA Batteries (4-pack),2,2.99,03/09/19 16:44,"779 Wilson St, Boston, MA 02215" +177921,20in Monitor,1,109.99,03/20/19 18:22,"689 West St, San Francisco, CA 94016" +177922,Lightning Charging Cable,1,14.95,03/01/19 21:10,"258 10th St, Los Angeles, CA 90001" +177923,27in FHD Monitor,1,149.99,03/04/19 16:43,"171 12th St, Los Angeles, CA 90001" +177924,AAA Batteries (4-pack),1,2.99,03/26/19 10:43,"383 Elm St, Atlanta, GA 30301" +177925,AAA Batteries (4-pack),1,2.99,03/11/19 00:06,"542 1st St, New York City, NY 10001" +177926,Lightning Charging Cable,1,14.95,03/07/19 13:43,"16 1st St, Dallas, TX 75001" +177927,AA Batteries (4-pack),1,3.84,03/07/19 22:11,"586 Jefferson St, San Francisco, CA 94016" +177928,Lightning Charging Cable,1,14.95,03/08/19 13:41,"50 Meadow St, Los Angeles, CA 90001" +177928,Lightning Charging Cable,1,14.95,03/08/19 13:41,"50 Meadow St, Los Angeles, CA 90001" +177929,27in 4K Gaming Monitor,1,389.99,03/04/19 15:52,"859 South St, New York City, NY 10001" +177930,27in 4K Gaming Monitor,1,389.99,03/13/19 03:24,"873 South St, New York City, NY 10001" +177931,AAA Batteries (4-pack),1,2.99,03/18/19 08:19,"455 Elm St, Portland, OR 97035" +177932,AA Batteries (4-pack),6,3.84,03/04/19 20:05,"294 Madison St, San Francisco, CA 94016" +177933,Apple Airpods Headphones,1,150,03/20/19 21:09,"623 Meadow St, San Francisco, CA 94016" +177934,Macbook Pro Laptop,1,1700,03/22/19 10:13,"890 Sunset St, New York City, NY 10001" +177935,Lightning Charging Cable,1,14.95,03/31/19 09:59,"799 Pine St, New York City, NY 10001" +177936,AAA Batteries (4-pack),1,2.99,03/26/19 09:26,"885 Wilson St, Seattle, WA 98101" +177937,Vareebadd Phone,1,400,03/21/19 08:49,"562 West St, Portland, OR 97035" +177937,Bose SoundSport Headphones,1,99.99,03/21/19 08:49,"562 West St, Portland, OR 97035" +177938,AA Batteries (4-pack),1,3.84,03/08/19 10:32,"362 Church St, New York City, NY 10001" +177939,AA Batteries (4-pack),1,3.84,03/31/19 01:20,"900 Lake St, Los Angeles, CA 90001" +177940,Bose SoundSport Headphones,1,99.99,03/03/19 12:39,"875 Spruce St, Atlanta, GA 30301" +177941,AAA Batteries (4-pack),3,2.99,03/22/19 23:15,"523 West St, Los Angeles, CA 90001" +177942,Lightning Charging Cable,2,14.95,03/30/19 10:37,"650 Pine St, San Francisco, CA 94016" +177943,Google Phone,1,600,03/20/19 20:23,"320 11th St, San Francisco, CA 94016" +177944,Wired Headphones,1,11.99,03/22/19 20:15,"408 West St, San Francisco, CA 94016" +177945,USB-C Charging Cable,1,11.95,03/25/19 10:27,"477 Washington St, San Francisco, CA 94016" +177946,USB-C Charging Cable,1,11.95,03/12/19 20:27,"244 Center St, Los Angeles, CA 90001" +177947,AAA Batteries (4-pack),3,2.99,03/05/19 15:25,"4 Madison St, Los Angeles, CA 90001" +177948,Wired Headphones,1,11.99,03/16/19 18:58,"516 5th St, Seattle, WA 98101" +177949,Apple Airpods Headphones,1,150,03/27/19 00:58,"370 Cherry St, Seattle, WA 98101" +177950,Wired Headphones,1,11.99,03/18/19 19:51,"622 Church St, Portland, OR 97035" +177951,iPhone,1,700,03/30/19 11:28,"731 Chestnut St, San Francisco, CA 94016" +177952,Wired Headphones,2,11.99,03/20/19 13:42,"398 11th St, Atlanta, GA 30301" +177953,AA Batteries (4-pack),2,3.84,03/09/19 21:48,"304 1st St, New York City, NY 10001" +177954,27in FHD Monitor,1,149.99,03/31/19 22:17,"555 Main St, San Francisco, CA 94016" +177955,Apple Airpods Headphones,1,150,03/04/19 13:38,"839 14th St, Austin, TX 73301" +177956,Macbook Pro Laptop,1,1700,03/04/19 18:24,"405 11th St, New York City, NY 10001" +177957,Apple Airpods Headphones,1,150,03/27/19 16:31,"890 6th St, Dallas, TX 75001" +177958,AA Batteries (4-pack),1,3.84,03/13/19 08:45,"913 South St, Austin, TX 73301" +177959,USB-C Charging Cable,1,11.95,03/30/19 19:11,"60 Hill St, New York City, NY 10001" +177960,20in Monitor,1,109.99,03/11/19 18:06,"928 Elm St, Atlanta, GA 30301" +177961,Lightning Charging Cable,1,14.95,03/25/19 20:01,"717 Washington St, New York City, NY 10001" +177962,AA Batteries (4-pack),1,3.84,03/04/19 10:55,"228 Spruce St, Boston, MA 02215" +177963,Lightning Charging Cable,1,14.95,03/14/19 12:54,"928 Wilson St, Portland, ME 04101" +177964,AAA Batteries (4-pack),1,2.99,03/10/19 00:01,"629 14th St, Boston, MA 02215" +177965,Bose SoundSport Headphones,1,99.99,03/15/19 18:48,"123 2nd St, Seattle, WA 98101" +177966,AAA Batteries (4-pack),2,2.99,03/20/19 13:11,"58 12th St, Austin, TX 73301" +177967,Wired Headphones,1,11.99,03/04/19 18:44,"395 10th St, Austin, TX 73301" +177968,Bose SoundSport Headphones,1,99.99,03/18/19 20:32,"527 5th St, Dallas, TX 75001" +177969,Lightning Charging Cable,1,14.95,03/17/19 07:20,"910 5th St, Austin, TX 73301" +177970,Lightning Charging Cable,1,14.95,03/26/19 09:40,"494 Lake St, Atlanta, GA 30301" +177971,USB-C Charging Cable,1,11.95,03/27/19 07:14,"626 Church St, Los Angeles, CA 90001" +177972,Wired Headphones,1,11.99,03/27/19 12:54,"592 6th St, San Francisco, CA 94016" +177973,34in Ultrawide Monitor,1,379.99,03/23/19 13:56,"618 Sunset St, Los Angeles, CA 90001" +177974,Bose SoundSport Headphones,1,99.99,03/11/19 21:58,"885 Elm St, New York City, NY 10001" +177975,Wired Headphones,1,11.99,03/12/19 01:05,"339 8th St, San Francisco, CA 94016" +177976,AAA Batteries (4-pack),1,2.99,03/12/19 11:01,"690 Sunset St, Los Angeles, CA 90001" +177977,USB-C Charging Cable,1,11.95,03/30/19 14:21,"291 Highland St, Portland, OR 97035" +177978,27in FHD Monitor,1,149.99,03/02/19 17:05,"992 9th St, Atlanta, GA 30301" +177979,Macbook Pro Laptop,1,1700,03/25/19 13:05,"92 2nd St, San Francisco, CA 94016" +177980,Apple Airpods Headphones,1,150,03/04/19 16:00,"580 Jackson St, Los Angeles, CA 90001" +177981,USB-C Charging Cable,1,11.95,03/02/19 13:46,"107 1st St, Los Angeles, CA 90001" +177982,Bose SoundSport Headphones,1,99.99,03/01/19 16:41,"665 8th St, Austin, TX 73301" +177983,27in FHD Monitor,1,149.99,03/29/19 13:19,"233 6th St, Portland, OR 97035" +177984,iPhone,1,700,03/24/19 16:11,"547 7th St, San Francisco, CA 94016" +177985,Wired Headphones,1,11.99,03/23/19 00:15,"74 Spruce St, Seattle, WA 98101" +177986,USB-C Charging Cable,1,11.95,03/20/19 23:16,"173 Jackson St, Atlanta, GA 30301" +177987,USB-C Charging Cable,1,11.95,03/20/19 04:18,"613 13th St, New York City, NY 10001" +177988,Wired Headphones,1,11.99,03/31/19 01:50,"988 Pine St, Los Angeles, CA 90001" +177989,Lightning Charging Cable,1,14.95,03/18/19 09:15,"79 Ridge St, Austin, TX 73301" +177990,Wired Headphones,1,11.99,03/20/19 16:21,"697 West St, San Francisco, CA 94016" +177991,Lightning Charging Cable,1,14.95,03/14/19 18:47,"51 7th St, Los Angeles, CA 90001" +177992,34in Ultrawide Monitor,1,379.99,03/13/19 20:54,"454 Lakeview St, Los Angeles, CA 90001" +177993,AA Batteries (4-pack),2,3.84,03/01/19 07:55,"560 North St, San Francisco, CA 94016" +177994,AA Batteries (4-pack),1,3.84,03/24/19 14:44,"133 8th St, San Francisco, CA 94016" +177995,Lightning Charging Cable,1,14.95,03/08/19 00:09,"90 11th St, Boston, MA 02215" +177996,27in 4K Gaming Monitor,1,389.99,03/25/19 01:35,"977 Washington St, New York City, NY 10001" +177997,Apple Airpods Headphones,1,150,03/01/19 12:06,"222 Dogwood St, New York City, NY 10001" +177998,Lightning Charging Cable,1,14.95,03/04/19 11:16,"320 10th St, New York City, NY 10001" +177999,27in FHD Monitor,1,149.99,03/21/19 21:36,"973 Maple St, Los Angeles, CA 90001" +178000,Wired Headphones,1,11.99,03/03/19 19:41,"465 Pine St, Los Angeles, CA 90001" +178001,Lightning Charging Cable,1,14.95,03/30/19 00:07,"244 Forest St, San Francisco, CA 94016" +178002,Apple Airpods Headphones,1,150,03/14/19 14:53,"478 12th St, San Francisco, CA 94016" +178003,Wired Headphones,1,11.99,03/20/19 10:31,"236 7th St, Dallas, TX 75001" +178004,Apple Airpods Headphones,1,150,03/06/19 13:29,"361 Church St, San Francisco, CA 94016" +178005,AAA Batteries (4-pack),1,2.99,03/02/19 14:39,"220 9th St, San Francisco, CA 94016" +178006,AA Batteries (4-pack),1,3.84,03/06/19 18:32,"708 Walnut St, Seattle, WA 98101" +178007,AA Batteries (4-pack),3,3.84,03/28/19 13:53,"486 Walnut St, Los Angeles, CA 90001" +178008,USB-C Charging Cable,1,11.95,03/24/19 19:58,"293 Walnut St, Boston, MA 02215" +178009,Wired Headphones,1,11.99,03/10/19 15:03,"23 Jackson St, Dallas, TX 75001" +178010,USB-C Charging Cable,1,11.95,03/15/19 13:30,"805 Lake St, Boston, MA 02215" +178011,Bose SoundSport Headphones,1,99.99,03/24/19 18:00,"173 Meadow St, San Francisco, CA 94016" +178012,Macbook Pro Laptop,1,1700,03/21/19 11:34,"23 14th St, San Francisco, CA 94016" +178013,27in FHD Monitor,1,149.99,03/09/19 16:42,"250 14th St, Dallas, TX 75001" +178014,Bose SoundSport Headphones,1,99.99,03/12/19 12:05,"288 Highland St, San Francisco, CA 94016" +178015,AAA Batteries (4-pack),2,2.99,03/08/19 14:51,"657 Park St, New York City, NY 10001" +178016,27in 4K Gaming Monitor,1,389.99,03/12/19 14:06,"773 Chestnut St, Portland, OR 97035" +178017,Google Phone,1,600,03/30/19 14:40,"23 Johnson St, Atlanta, GA 30301" +178018,USB-C Charging Cable,1,11.95,03/08/19 14:04,"593 9th St, Portland, OR 97035" +178019,AA Batteries (4-pack),1,3.84,03/19/19 22:16,"502 10th St, New York City, NY 10001" +178020,USB-C Charging Cable,1,11.95,03/27/19 20:26,"592 Jefferson St, San Francisco, CA 94016" +178021,Wired Headphones,1,11.99,03/12/19 23:03,"23 Jefferson St, Austin, TX 73301" +178022,Wired Headphones,1,11.99,03/09/19 21:15,"310 10th St, Dallas, TX 75001" +178023,Lightning Charging Cable,1,14.95,03/04/19 14:35,"627 Willow St, Boston, MA 02215" +178024,Macbook Pro Laptop,1,1700,03/15/19 01:23,"341 Lake St, New York City, NY 10001" +178025,Wired Headphones,1,11.99,03/08/19 20:29,"510 Hill St, Atlanta, GA 30301" +178026,AA Batteries (4-pack),1,3.84,03/03/19 13:50,"73 Main St, Atlanta, GA 30301" +178027,ThinkPad Laptop,1,999.99,03/11/19 21:18,"651 Highland St, San Francisco, CA 94016" +178028,Google Phone,1,600,03/15/19 15:00,"752 7th St, New York City, NY 10001" +178029,34in Ultrawide Monitor,1,379.99,03/28/19 01:33,"577 Wilson St, Dallas, TX 75001" +178030,27in FHD Monitor,1,149.99,03/14/19 00:02,"697 5th St, Seattle, WA 98101" +178031,Apple Airpods Headphones,1,150,03/30/19 21:03,"109 Jackson St, New York City, NY 10001" +178032,AA Batteries (4-pack),1,3.84,03/26/19 09:32,"150 Meadow St, Los Angeles, CA 90001" +178033,USB-C Charging Cable,2,11.95,03/15/19 13:01,"212 Lakeview St, Atlanta, GA 30301" +178034,Wired Headphones,1,11.99,03/24/19 12:52,"696 4th St, Portland, ME 04101" +178035,AA Batteries (4-pack),1,3.84,03/31/19 12:38,"484 Church St, Boston, MA 02215" +178036,AA Batteries (4-pack),2,3.84,03/30/19 11:20,"745 4th St, New York City, NY 10001" +178037,AA Batteries (4-pack),1,3.84,03/15/19 20:16,"551 5th St, Boston, MA 02215" +178038,AA Batteries (4-pack),6,3.84,03/22/19 14:10,"763 7th St, Los Angeles, CA 90001" +178039,AAA Batteries (4-pack),1,2.99,03/08/19 19:42,"29 Center St, Atlanta, GA 30301" +178040,Wired Headphones,1,11.99,03/30/19 10:13,"927 Highland St, San Francisco, CA 94016" +178041,Lightning Charging Cable,1,14.95,03/23/19 00:44,"78 Wilson St, New York City, NY 10001" +178042,Wired Headphones,1,11.99,03/12/19 18:39,"69 Jefferson St, Atlanta, GA 30301" +178043,27in 4K Gaming Monitor,1,389.99,03/13/19 11:59,"677 11th St, Seattle, WA 98101" +178044,Bose SoundSport Headphones,1,99.99,03/11/19 10:31,"850 13th St, Boston, MA 02215" +178045,Lightning Charging Cable,1,14.95,03/25/19 06:47,"844 9th St, Dallas, TX 75001" +178046,27in 4K Gaming Monitor,1,389.99,03/01/19 19:57,"2 Lakeview St, New York City, NY 10001" +178047,Flatscreen TV,1,300,03/20/19 17:41,"353 Center St, San Francisco, CA 94016" +178048,AA Batteries (4-pack),1,3.84,03/03/19 12:17,"705 Jackson St, San Francisco, CA 94016" +178049,USB-C Charging Cable,1,11.95,03/18/19 09:41,"186 Dogwood St, Portland, OR 97035" +178049,AA Batteries (4-pack),1,3.84,03/18/19 09:41,"186 Dogwood St, Portland, OR 97035" +178050,Bose SoundSport Headphones,1,99.99,03/05/19 18:54,"687 Lake St, Seattle, WA 98101" +178051,AA Batteries (4-pack),1,3.84,03/27/19 13:09,"69 Hill St, San Francisco, CA 94016" +178052,USB-C Charging Cable,1,11.95,03/20/19 11:03,"179 Main St, New York City, NY 10001" +178053,20in Monitor,1,109.99,03/03/19 20:58,"832 8th St, New York City, NY 10001" +178054,AAA Batteries (4-pack),3,2.99,03/19/19 10:53,"352 Center St, Boston, MA 02215" +178055,Lightning Charging Cable,1,14.95,03/21/19 11:25,"436 10th St, San Francisco, CA 94016" +178056,AA Batteries (4-pack),2,3.84,03/30/19 13:13,"953 Jefferson St, Dallas, TX 75001" +178057,Wired Headphones,1,11.99,03/10/19 01:25,"946 Jackson St, Seattle, WA 98101" +178058,AA Batteries (4-pack),1,3.84,03/23/19 09:28,"232 Ridge St, Portland, ME 04101" +178059,AAA Batteries (4-pack),1,2.99,03/12/19 19:23,"710 Meadow St, Los Angeles, CA 90001" +178060,27in 4K Gaming Monitor,1,389.99,03/11/19 19:21,"520 Park St, Los Angeles, CA 90001" +178061,AA Batteries (4-pack),2,3.84,03/26/19 12:11,"321 Forest St, New York City, NY 10001" +178062,ThinkPad Laptop,1,999.99,03/19/19 20:13,"4 Sunset St, Boston, MA 02215" +178063,Wired Headphones,1,11.99,03/09/19 22:10,"945 1st St, San Francisco, CA 94016" +178064,27in 4K Gaming Monitor,1,389.99,03/28/19 17:36,"675 North St, Seattle, WA 98101" +178065,iPhone,1,700,03/24/19 18:12,"884 8th St, Boston, MA 02215" +178065,Apple Airpods Headphones,1,150,03/24/19 18:12,"884 8th St, Boston, MA 02215" +178066,Lightning Charging Cable,1,14.95,03/10/19 18:49,"19 West St, New York City, NY 10001" +178067,Lightning Charging Cable,1,14.95,03/15/19 21:56,"810 Washington St, Austin, TX 73301" +178068,Macbook Pro Laptop,1,1700,03/02/19 11:03,"913 11th St, Atlanta, GA 30301" +178069,AA Batteries (4-pack),1,3.84,03/02/19 15:27,"646 Meadow St, San Francisco, CA 94016" +178070,USB-C Charging Cable,1,11.95,03/05/19 01:20,"275 Cherry St, San Francisco, CA 94016" +178071,Apple Airpods Headphones,1,150,03/07/19 12:06,"838 South St, Dallas, TX 75001" +178072,AA Batteries (4-pack),1,3.84,03/10/19 10:53,"50 11th St, Portland, ME 04101" +178073,Apple Airpods Headphones,1,150,03/14/19 11:57,"988 Maple St, Portland, OR 97035" +178074,USB-C Charging Cable,1,11.95,03/23/19 12:45,"450 13th St, Dallas, TX 75001" +178075,34in Ultrawide Monitor,1,379.99,03/21/19 09:58,"502 Elm St, Austin, TX 73301" +178076,Bose SoundSport Headphones,1,99.99,03/27/19 08:41,"229 South St, San Francisco, CA 94016" +178077,Macbook Pro Laptop,1,1700,03/26/19 11:23,"660 10th St, Dallas, TX 75001" +178078,Wired Headphones,1,11.99,03/02/19 15:43,"106 2nd St, Los Angeles, CA 90001" +178079,AA Batteries (4-pack),1,3.84,03/06/19 20:13,"125 8th St, San Francisco, CA 94016" +178080,20in Monitor,1,109.99,03/18/19 23:15,"24 7th St, Boston, MA 02215" +178081,Apple Airpods Headphones,1,150,03/11/19 17:43,"296 Cedar St, Seattle, WA 98101" +178082,27in 4K Gaming Monitor,1,389.99,03/31/19 12:25,"933 Madison St, Los Angeles, CA 90001" +178083,34in Ultrawide Monitor,1,379.99,03/26/19 15:09,"527 Walnut St, San Francisco, CA 94016" +178083,Flatscreen TV,1,300,03/26/19 15:09,"527 Walnut St, San Francisco, CA 94016" +178084,Apple Airpods Headphones,1,150,03/09/19 20:05,"667 Chestnut St, San Francisco, CA 94016" +178085,Wired Headphones,2,11.99,03/28/19 09:56,"117 Jackson St, San Francisco, CA 94016" +178086,20in Monitor,1,109.99,03/02/19 09:47,"656 4th St, Los Angeles, CA 90001" +178087,USB-C Charging Cable,2,11.95,03/20/19 11:14,"62 12th St, Dallas, TX 75001" +178088,AA Batteries (4-pack),3,3.84,03/24/19 15:18,"922 Center St, Los Angeles, CA 90001" +178089,Lightning Charging Cable,1,14.95,03/12/19 12:00,"231 12th St, Seattle, WA 98101" +178090,Macbook Pro Laptop,1,1700,03/12/19 18:39,"73 11th St, San Francisco, CA 94016" +178091,AA Batteries (4-pack),2,3.84,03/09/19 09:45,"403 11th St, Los Angeles, CA 90001" +178092,AAA Batteries (4-pack),1,2.99,03/11/19 16:00,"686 Washington St, Boston, MA 02215" +178093,Wired Headphones,1,11.99,03/30/19 15:42,"679 Hill St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +178094,Apple Airpods Headphones,1,150,03/15/19 06:07,"563 North St, New York City, NY 10001" +178095,Bose SoundSport Headphones,1,99.99,03/13/19 14:46,"486 Pine St, Seattle, WA 98101" +178096,Apple Airpods Headphones,1,150,03/14/19 11:57,"241 Jefferson St, Los Angeles, CA 90001" +178097,Flatscreen TV,1,300,03/31/19 10:50,"102 Church St, San Francisco, CA 94016" +178098,iPhone,1,700,03/31/19 15:25,"897 Adams St, Seattle, WA 98101" +178098,Lightning Charging Cable,1,14.95,03/31/19 15:25,"897 Adams St, Seattle, WA 98101" +178098,Apple Airpods Headphones,1,150,03/31/19 15:25,"897 Adams St, Seattle, WA 98101" +178099,20in Monitor,1,109.99,03/03/19 19:19,"222 North St, Seattle, WA 98101" +178100,AA Batteries (4-pack),1,3.84,03/24/19 19:02,"880 7th St, San Francisco, CA 94016" +178101,Apple Airpods Headphones,1,150,03/16/19 14:39,"295 Hill St, San Francisco, CA 94016" +178102,Apple Airpods Headphones,1,150,03/11/19 12:24,"343 Wilson St, New York City, NY 10001" +178103,Bose SoundSport Headphones,1,99.99,03/30/19 18:49,"573 Lakeview St, Boston, MA 02215" +178104,AA Batteries (4-pack),2,3.84,03/31/19 23:28,"472 Center St, San Francisco, CA 94016" +178105,USB-C Charging Cable,1,11.95,03/11/19 20:53,"783 Sunset St, New York City, NY 10001" +178106,AA Batteries (4-pack),1,3.84,03/11/19 15:32,"458 8th St, Los Angeles, CA 90001" +178107,Wired Headphones,1,11.99,03/15/19 12:26,"915 Cedar St, New York City, NY 10001" +178108,Bose SoundSport Headphones,1,99.99,03/30/19 22:52,"58 Center St, Los Angeles, CA 90001" +178109,AA Batteries (4-pack),2,3.84,03/10/19 17:37,"691 Jackson St, Austin, TX 73301" +178110,Apple Airpods Headphones,1,150,03/11/19 08:15,"509 7th St, Atlanta, GA 30301" +178111,USB-C Charging Cable,1,11.95,03/01/19 19:48,"387 Church St, Seattle, WA 98101" +178112,iPhone,1,700,03/11/19 09:16,"450 11th St, San Francisco, CA 94016" +178113,Lightning Charging Cable,1,14.95,03/03/19 21:57,"813 11th St, Los Angeles, CA 90001" +178114,27in FHD Monitor,1,149.99,03/14/19 18:40,"899 Cedar St, San Francisco, CA 94016" +178115,Lightning Charging Cable,1,14.95,03/10/19 12:36,"164 West St, New York City, NY 10001" +178116,Bose SoundSport Headphones,1,99.99,03/02/19 07:34,"694 Meadow St, San Francisco, CA 94016" +178117,USB-C Charging Cable,1,11.95,03/24/19 10:36,"260 Walnut St, Dallas, TX 75001" +178118,Vareebadd Phone,1,400,03/31/19 09:09,"34 Elm St, San Francisco, CA 94016" +178119,Google Phone,1,600,03/14/19 11:13,"462 Jackson St, Atlanta, GA 30301" +178120,Lightning Charging Cable,1,14.95,03/07/19 15:12,"544 Forest St, San Francisco, CA 94016" +178121,AAA Batteries (4-pack),2,2.99,03/17/19 15:08,"168 Wilson St, San Francisco, CA 94016" +178122,iPhone,1,700,03/31/19 13:01,"669 13th St, San Francisco, CA 94016" +178122,Wired Headphones,1,11.99,03/31/19 13:01,"669 13th St, San Francisco, CA 94016" +178123,Wired Headphones,1,11.99,03/04/19 18:27,"440 Lakeview St, Boston, MA 02215" +178124,iPhone,1,700,03/22/19 16:42,"396 Jackson St, San Francisco, CA 94016" +178125,AA Batteries (4-pack),1,3.84,03/21/19 08:25,"438 6th St, Boston, MA 02215" +178126,Apple Airpods Headphones,1,150,03/15/19 14:55,"902 North St, Portland, ME 04101" +178127,27in FHD Monitor,1,149.99,03/30/19 02:20,"835 8th St, Los Angeles, CA 90001" +178128,Bose SoundSport Headphones,1,99.99,03/29/19 20:38,"375 6th St, Atlanta, GA 30301" +178129,Wired Headphones,1,11.99,03/24/19 14:34,"366 North St, San Francisco, CA 94016" +178130,Flatscreen TV,1,300,03/29/19 16:58,"682 River St, New York City, NY 10001" +178131,iPhone,1,700,03/23/19 12:58,"867 Jefferson St, Dallas, TX 75001" +178132,Lightning Charging Cable,1,14.95,03/16/19 16:06,"302 4th St, San Francisco, CA 94016" +178133,Wired Headphones,1,11.99,03/17/19 18:06,"599 North St, Los Angeles, CA 90001" +178134,AAA Batteries (4-pack),3,2.99,03/30/19 17:09,"362 Forest St, Dallas, TX 75001" +178135,Apple Airpods Headphones,1,150,03/30/19 13:10,"275 5th St, San Francisco, CA 94016" +178136,34in Ultrawide Monitor,1,379.99,03/25/19 11:38,"370 Adams St, San Francisco, CA 94016" +178137,Lightning Charging Cable,1,14.95,03/07/19 21:05,"896 Washington St, Austin, TX 73301" +178138,USB-C Charging Cable,1,11.95,03/12/19 21:43,"902 Pine St, New York City, NY 10001" +178139,Apple Airpods Headphones,1,150,03/20/19 16:38,"248 13th St, Dallas, TX 75001" +178140,Bose SoundSport Headphones,1,99.99,03/06/19 21:49,"299 Jackson St, New York City, NY 10001" +178141,AAA Batteries (4-pack),1,2.99,03/25/19 19:07,"517 Lincoln St, Portland, OR 97035" +178142,iPhone,1,700,03/12/19 13:57,"246 Forest St, Austin, TX 73301" +178143,USB-C Charging Cable,1,11.95,03/29/19 13:27,"322 Hill St, San Francisco, CA 94016" +178144,Vareebadd Phone,1,400,03/25/19 10:59,"420 14th St, Atlanta, GA 30301" +178144,Wired Headphones,1,11.99,03/25/19 10:59,"420 14th St, Atlanta, GA 30301" +178145,Wired Headphones,2,11.99,03/31/19 09:16,"21 Lake St, New York City, NY 10001" +178146,Bose SoundSport Headphones,1,99.99,03/06/19 13:15,"824 2nd St, Boston, MA 02215" +178147,20in Monitor,1,109.99,03/12/19 12:50,"61 9th St, Los Angeles, CA 90001" +178148,Lightning Charging Cable,1,14.95,03/08/19 14:16,"14 Washington St, New York City, NY 10001" +178149,20in Monitor,1,109.99,03/10/19 09:09,"944 Cedar St, Atlanta, GA 30301" +178150,Flatscreen TV,1,300,03/22/19 17:27,"527 Forest St, San Francisco, CA 94016" +178151,Lightning Charging Cable,1,14.95,03/17/19 13:08,"678 12th St, New York City, NY 10001" +178152,Lightning Charging Cable,1,14.95,03/17/19 18:09,"130 North St, New York City, NY 10001" +178153,Macbook Pro Laptop,1,1700,03/27/19 15:37,"986 5th St, Dallas, TX 75001" +178154,Flatscreen TV,1,300,03/17/19 21:29,"897 Church St, New York City, NY 10001" +178155,AAA Batteries (4-pack),1,2.99,03/11/19 21:19,"956 Johnson St, Los Angeles, CA 90001" +178156,AAA Batteries (4-pack),1,2.99,03/24/19 16:52,"541 Walnut St, Los Angeles, CA 90001" +178157,Bose SoundSport Headphones,1,99.99,03/23/19 18:35,"776 Highland St, Los Angeles, CA 90001" +178158,Flatscreen TV,1,300,03/18/19 08:34,"815 Cedar St, Los Angeles, CA 90001" +178159,Bose SoundSport Headphones,1,99.99,03/21/19 12:59,"312 Hill St, Boston, MA 02215" +178160,AAA Batteries (4-pack),1,2.99,03/17/19 13:17,"364 Highland St, New York City, NY 10001" +178161,27in FHD Monitor,1,149.99,03/04/19 18:35,"985 6th St, San Francisco, CA 94016" +178162,Lightning Charging Cable,1,14.95,03/17/19 21:39,"429 Lakeview St, San Francisco, CA 94016" +178163,AA Batteries (4-pack),3,3.84,03/01/19 20:24,"613 Highland St, San Francisco, CA 94016" +178164,ThinkPad Laptop,1,999.99,03/23/19 12:30,"246 Ridge St, Seattle, WA 98101" +178165,27in 4K Gaming Monitor,1,389.99,03/21/19 12:51,"736 10th St, Boston, MA 02215" +178166,Apple Airpods Headphones,1,150,03/09/19 07:39,"298 Lakeview St, Los Angeles, CA 90001" +178167,Flatscreen TV,1,300,03/11/19 08:25,"262 Park St, San Francisco, CA 94016" +178168,USB-C Charging Cable,1,11.95,03/07/19 14:11,"185 Highland St, Austin, TX 73301" +178169,Apple Airpods Headphones,1,150,03/22/19 19:58,"437 Ridge St, San Francisco, CA 94016" +178170,Lightning Charging Cable,1,14.95,03/12/19 18:37,"817 Hickory St, Boston, MA 02215" +178171,Wired Headphones,1,11.99,03/15/19 11:21,"540 1st St, New York City, NY 10001" +178172,Wired Headphones,1,11.99,03/25/19 11:43,"873 Church St, San Francisco, CA 94016" +178173,Apple Airpods Headphones,1,150,03/14/19 22:07,"68 South St, Dallas, TX 75001" +178174,AA Batteries (4-pack),3,3.84,03/06/19 23:33,"165 Pine St, Los Angeles, CA 90001" +178174,Apple Airpods Headphones,1,150,03/06/19 23:33,"165 Pine St, Los Angeles, CA 90001" +178175,Lightning Charging Cable,1,14.95,03/18/19 20:46,"794 11th St, Austin, TX 73301" +178176,ThinkPad Laptop,1,999.99,03/23/19 16:49,"878 Cedar St, San Francisco, CA 94016" +178177,AA Batteries (4-pack),1,3.84,03/18/19 22:08,"155 Church St, Boston, MA 02215" +178178,AA Batteries (4-pack),1,3.84,03/11/19 10:28,"792 Cedar St, New York City, NY 10001" +178179,Lightning Charging Cable,1,14.95,03/22/19 10:25,"676 9th St, Los Angeles, CA 90001" +178180,Lightning Charging Cable,1,14.95,03/29/19 12:54,"216 Maple St, Seattle, WA 98101" +178181,ThinkPad Laptop,1,999.99,03/21/19 11:32,"786 Ridge St, Los Angeles, CA 90001" +178182,Wired Headphones,1,11.99,03/15/19 20:49,"243 11th St, San Francisco, CA 94016" +178183,20in Monitor,1,109.99,03/09/19 07:36,"811 4th St, San Francisco, CA 94016" +178184,Flatscreen TV,1,300,03/06/19 12:16,"973 Jefferson St, New York City, NY 10001" +178185,Lightning Charging Cable,2,14.95,03/02/19 20:07,"530 6th St, Los Angeles, CA 90001" +178186,Bose SoundSport Headphones,1,99.99,03/31/19 14:50,"410 South St, Los Angeles, CA 90001" +178187,Wired Headphones,1,11.99,03/27/19 10:14,"266 Park St, Los Angeles, CA 90001" +,,,,, +178188,AA Batteries (4-pack),3,3.84,03/07/19 16:47,"558 Chestnut St, Los Angeles, CA 90001" +178189,Lightning Charging Cable,1,14.95,03/05/19 08:26,"629 Maple St, Los Angeles, CA 90001" +178189,AAA Batteries (4-pack),2,2.99,03/05/19 08:26,"629 Maple St, Los Angeles, CA 90001" +178190,Bose SoundSport Headphones,1,99.99,03/17/19 19:15,"63 Wilson St, Los Angeles, CA 90001" +178191,AA Batteries (4-pack),2,3.84,03/07/19 11:09,"32 Elm St, Atlanta, GA 30301" +178192,Wired Headphones,1,11.99,03/02/19 17:06,"849 Elm St, Atlanta, GA 30301" +178193,Wired Headphones,1,11.99,03/16/19 17:27,"934 8th St, Boston, MA 02215" +178194,Macbook Pro Laptop,1,1700,03/01/19 15:36,"288 Ridge St, Los Angeles, CA 90001" +178195,34in Ultrawide Monitor,1,379.99,03/29/19 17:25,"439 Meadow St, Boston, MA 02215" +178196,AAA Batteries (4-pack),1,2.99,03/30/19 19:26,"837 5th St, Atlanta, GA 30301" +178197,AA Batteries (4-pack),5,3.84,03/07/19 21:24,"706 Madison St, San Francisco, CA 94016" +178198,Lightning Charging Cable,1,14.95,03/11/19 14:18,"230 Cherry St, New York City, NY 10001" +178199,Flatscreen TV,1,300,03/02/19 17:28,"876 Jefferson St, Boston, MA 02215" +178200,USB-C Charging Cable,1,11.95,03/26/19 09:05,"206 Madison St, San Francisco, CA 94016" +178201,Bose SoundSport Headphones,1,99.99,03/07/19 20:02,"867 2nd St, Boston, MA 02215" +178202,Flatscreen TV,1,300,03/19/19 16:44,"738 Ridge St, San Francisco, CA 94016" +178203,ThinkPad Laptop,1,999.99,03/06/19 20:16,"756 Park St, San Francisco, CA 94016" +178204,Google Phone,1,600,03/08/19 07:19,"339 Hill St, San Francisco, CA 94016" +178204,USB-C Charging Cable,1,11.95,03/08/19 07:19,"339 Hill St, San Francisco, CA 94016" +178205,Macbook Pro Laptop,1,1700,03/13/19 11:39,"238 Jackson St, Los Angeles, CA 90001" +178206,AAA Batteries (4-pack),1,2.99,03/21/19 09:13,"787 12th St, Los Angeles, CA 90001" +178207,iPhone,1,700,03/20/19 18:21,"787 West St, Atlanta, GA 30301" +178208,27in FHD Monitor,2,149.99,03/25/19 20:53,"905 Elm St, New York City, NY 10001" +178209,20in Monitor,1,109.99,03/17/19 11:55,"329 Washington St, New York City, NY 10001" +178210,USB-C Charging Cable,1,11.95,03/27/19 22:51,"383 Sunset St, Boston, MA 02215" +178211,Apple Airpods Headphones,1,150,03/25/19 20:19,"672 Cedar St, Austin, TX 73301" +178212,AAA Batteries (4-pack),3,2.99,03/20/19 11:34,"384 Jackson St, Boston, MA 02215" +178213,AA Batteries (4-pack),1,3.84,03/24/19 00:10,"268 6th St, Seattle, WA 98101" +178214,AAA Batteries (4-pack),1,2.99,03/28/19 16:48,"701 Cherry St, Los Angeles, CA 90001" +178215,34in Ultrawide Monitor,1,379.99,03/10/19 12:48,"628 Meadow St, New York City, NY 10001" +178216,Lightning Charging Cable,1,14.95,03/09/19 20:52,"30 Center St, Atlanta, GA 30301" +178216,Lightning Charging Cable,1,14.95,03/09/19 20:52,"30 Center St, Atlanta, GA 30301" +178217,Apple Airpods Headphones,1,150,03/17/19 13:22,"339 North St, Atlanta, GA 30301" +178218,AA Batteries (4-pack),1,3.84,03/11/19 06:53,"973 South St, Los Angeles, CA 90001" +178219,Lightning Charging Cable,1,14.95,03/26/19 22:37,"984 Chestnut St, Portland, OR 97035" +178220,AAA Batteries (4-pack),2,2.99,03/20/19 12:42,"482 14th St, Los Angeles, CA 90001" +178221,LG Dryer,1,600.0,03/13/19 13:06,"798 7th St, Los Angeles, CA 90001" +178222,Apple Airpods Headphones,1,150,03/07/19 14:15,"836 6th St, San Francisco, CA 94016" +178223,Apple Airpods Headphones,1,150,03/03/19 23:33,"609 Sunset St, San Francisco, CA 94016" +178224,Bose SoundSport Headphones,1,99.99,03/29/19 21:31,"281 Jefferson St, New York City, NY 10001" +178225,AA Batteries (4-pack),1,3.84,03/10/19 10:40,"221 Johnson St, New York City, NY 10001" +178226,34in Ultrawide Monitor,1,379.99,03/07/19 01:58,"526 Walnut St, San Francisco, CA 94016" +178227,Vareebadd Phone,1,400,03/16/19 20:46,"622 Lake St, San Francisco, CA 94016" +178228,27in FHD Monitor,1,149.99,03/26/19 12:27,"143 Jefferson St, Los Angeles, CA 90001" +178229,Lightning Charging Cable,2,14.95,03/24/19 08:53,"845 Elm St, San Francisco, CA 94016" +178230,USB-C Charging Cable,1,11.95,03/18/19 14:01,"567 Lake St, San Francisco, CA 94016" +178231,USB-C Charging Cable,1,11.95,03/07/19 08:06,"248 Lake St, San Francisco, CA 94016" +178232,27in 4K Gaming Monitor,1,389.99,03/20/19 05:30,"586 Lakeview St, Seattle, WA 98101" +178233,Flatscreen TV,1,300,03/02/19 15:00,"647 South St, New York City, NY 10001" +178234,USB-C Charging Cable,1,11.95,03/19/19 14:09,"608 Washington St, Dallas, TX 75001" +178235,Apple Airpods Headphones,1,150,03/16/19 16:58,"812 2nd St, Los Angeles, CA 90001" +178236,AA Batteries (4-pack),1,3.84,03/31/19 00:46,"810 Jackson St, Seattle, WA 98101" +178237,27in FHD Monitor,1,149.99,03/23/19 22:37,"290 Cherry St, San Francisco, CA 94016" +178238,Wired Headphones,2,11.99,03/09/19 10:24,"881 West St, San Francisco, CA 94016" +178239,AAA Batteries (4-pack),2,2.99,03/11/19 14:31,"715 Jefferson St, San Francisco, CA 94016" +178240,ThinkPad Laptop,1,999.99,03/11/19 09:11,"270 Dogwood St, San Francisco, CA 94016" +178241,Apple Airpods Headphones,2,150,03/04/19 15:02,"565 14th St, Austin, TX 73301" +178242,Wired Headphones,1,11.99,03/07/19 22:41,"423 Maple St, San Francisco, CA 94016" +178243,Google Phone,1,600,03/03/19 21:17,"294 Maple St, Portland, OR 97035" +178244,AA Batteries (4-pack),1,3.84,03/18/19 20:37,"756 West St, Los Angeles, CA 90001" +178245,Lightning Charging Cable,1,14.95,03/30/19 08:35,"298 1st St, Atlanta, GA 30301" +178246,Macbook Pro Laptop,1,1700,03/22/19 22:04,"19 1st St, Portland, OR 97035" +178247,AAA Batteries (4-pack),1,2.99,03/13/19 17:28,"515 Johnson St, San Francisco, CA 94016" +178248,Lightning Charging Cable,1,14.95,03/01/19 17:17,"64 Lincoln St, Boston, MA 02215" +178249,AAA Batteries (4-pack),3,2.99,03/07/19 20:24,"538 Lake St, Los Angeles, CA 90001" +178250,Wired Headphones,1,11.99,03/20/19 20:52,"426 Hill St, San Francisco, CA 94016" +178251,Lightning Charging Cable,1,14.95,03/09/19 13:49,"260 Park St, Los Angeles, CA 90001" +178252,USB-C Charging Cable,1,11.95,03/04/19 06:31,"531 South St, San Francisco, CA 94016" +178253,Bose SoundSport Headphones,1,99.99,03/23/19 14:55,"467 Ridge St, Portland, OR 97035" +178254,Bose SoundSport Headphones,1,99.99,03/21/19 19:50,"408 8th St, New York City, NY 10001" +178255,34in Ultrawide Monitor,1,379.99,03/20/19 20:56,"795 Hickory St, New York City, NY 10001" +178256,Lightning Charging Cable,1,14.95,03/06/19 20:19,"630 Hill St, Los Angeles, CA 90001" +178257,Apple Airpods Headphones,1,150,03/15/19 12:31,"193 4th St, San Francisco, CA 94016" +178258,USB-C Charging Cable,1,11.95,03/22/19 20:26,"120 Cherry St, Boston, MA 02215" +178259,AAA Batteries (4-pack),1,2.99,03/16/19 18:42,"171 Jefferson St, Austin, TX 73301" +178260,Macbook Pro Laptop,1,1700,03/29/19 09:54,"564 Lincoln St, Los Angeles, CA 90001" +178261,Wired Headphones,1,11.99,03/27/19 16:16,"119 Willow St, Portland, OR 97035" +178262,Macbook Pro Laptop,1,1700,03/15/19 05:33,"497 River St, New York City, NY 10001" +178263,Lightning Charging Cable,1,14.95,03/15/19 17:01,"775 Dogwood St, San Francisco, CA 94016" +178264,AA Batteries (4-pack),1,3.84,03/20/19 18:47,"481 South St, Los Angeles, CA 90001" +178265,iPhone,1,700,03/21/19 16:35,"675 Lake St, Los Angeles, CA 90001" +178266,Apple Airpods Headphones,1,150,03/05/19 11:35,"863 6th St, Atlanta, GA 30301" +178267,Bose SoundSport Headphones,1,99.99,03/09/19 12:12,"570 14th St, Austin, TX 73301" +178268,AAA Batteries (4-pack),4,2.99,03/24/19 19:45,"863 7th St, Austin, TX 73301" +178269,Lightning Charging Cable,1,14.95,03/07/19 18:02,"65 9th St, San Francisco, CA 94016" +178270,Wired Headphones,1,11.99,03/18/19 20:38,"784 9th St, San Francisco, CA 94016" +178271,AAA Batteries (4-pack),1,2.99,03/29/19 14:47,"132 South St, Los Angeles, CA 90001" +178272,20in Monitor,1,109.99,03/25/19 22:14,"776 1st St, Los Angeles, CA 90001" +178273,Macbook Pro Laptop,1,1700,03/24/19 10:33,"968 Wilson St, Boston, MA 02215" +178274,Lightning Charging Cable,1,14.95,03/15/19 19:24,"713 River St, San Francisco, CA 94016" +,,,,, +178275,Wired Headphones,1,11.99,03/07/19 15:15,"455 Jefferson St, Los Angeles, CA 90001" +178276,27in 4K Gaming Monitor,1,389.99,03/29/19 22:54,"625 Chestnut St, Seattle, WA 98101" +178277,AA Batteries (4-pack),1,3.84,03/06/19 10:26,"604 Adams St, Los Angeles, CA 90001" +178278,Lightning Charging Cable,1,14.95,03/01/19 12:35,"199 Main St, Boston, MA 02215" +178279,Lightning Charging Cable,1,14.95,03/31/19 09:31,"219 Elm St, Boston, MA 02215" +178280,Bose SoundSport Headphones,1,99.99,03/09/19 16:23,"136 Jackson St, New York City, NY 10001" +178281,USB-C Charging Cable,1,11.95,03/11/19 09:24,"913 Chestnut St, Atlanta, GA 30301" +178282,AA Batteries (4-pack),2,3.84,03/07/19 09:46,"281 6th St, Portland, ME 04101" +178283,AAA Batteries (4-pack),2,2.99,03/17/19 14:32,"331 Spruce St, Boston, MA 02215" +178284,27in FHD Monitor,1,149.99,03/23/19 20:38,"401 1st St, Atlanta, GA 30301" +178285,USB-C Charging Cable,2,11.95,03/30/19 21:39,"831 Hickory St, San Francisco, CA 94016" +178286,Apple Airpods Headphones,1,150,03/31/19 18:05,"405 River St, San Francisco, CA 94016" +178287,Bose SoundSport Headphones,1,99.99,03/28/19 14:41,"265 Pine St, San Francisco, CA 94016" +178288,USB-C Charging Cable,1,11.95,03/09/19 17:27,"171 Lakeview St, San Francisco, CA 94016" +178289,Wired Headphones,1,11.99,03/15/19 10:49,"857 Dogwood St, San Francisco, CA 94016" +178290,AA Batteries (4-pack),2,3.84,03/06/19 19:41,"334 Highland St, Boston, MA 02215" +178291,Google Phone,1,600,03/06/19 21:40,"283 River St, Dallas, TX 75001" +178292,27in 4K Gaming Monitor,1,389.99,03/08/19 20:20,"381 Washington St, New York City, NY 10001" +178293,34in Ultrawide Monitor,1,379.99,03/08/19 21:14,"635 Cherry St, Atlanta, GA 30301" +178294,Lightning Charging Cable,1,14.95,03/16/19 20:38,"972 Spruce St, Seattle, WA 98101" +178295,Wired Headphones,2,11.99,03/16/19 11:28,"101 Park St, New York City, NY 10001" +178296,USB-C Charging Cable,1,11.95,03/06/19 19:04,"852 Johnson St, Los Angeles, CA 90001" +178297,Apple Airpods Headphones,1,150,03/14/19 12:57,"869 1st St, Dallas, TX 75001" +178298,Bose SoundSport Headphones,1,99.99,03/19/19 20:48,"339 Lakeview St, Seattle, WA 98101" +178299,AAA Batteries (4-pack),2,2.99,03/11/19 10:38,"547 Adams St, San Francisco, CA 94016" +178300,Bose SoundSport Headphones,1,99.99,03/16/19 08:49,"423 Center St, Seattle, WA 98101" +178301,AA Batteries (4-pack),1,3.84,03/22/19 08:07,"430 Hickory St, Boston, MA 02215" +178302,Lightning Charging Cable,1,14.95,03/20/19 16:07,"439 Cedar St, Seattle, WA 98101" +178303,Lightning Charging Cable,1,14.95,03/12/19 18:41,"376 Hickory St, San Francisco, CA 94016" +178304,Google Phone,1,600,03/16/19 14:21,"286 10th St, Seattle, WA 98101" +178305,AAA Batteries (4-pack),3,2.99,03/25/19 23:34,"457 Highland St, New York City, NY 10001" +178306,Wired Headphones,1,11.99,03/12/19 21:41,"93 Hill St, Austin, TX 73301" +178307,27in 4K Gaming Monitor,1,389.99,03/07/19 17:02,"856 5th St, Dallas, TX 75001" +178308,AAA Batteries (4-pack),1,2.99,03/17/19 14:17,"214 12th St, New York City, NY 10001" +178309,AA Batteries (4-pack),2,3.84,03/22/19 20:24,"629 Spruce St, San Francisco, CA 94016" +178310,USB-C Charging Cable,1,11.95,03/02/19 14:24,"887 West St, San Francisco, CA 94016" +178311,USB-C Charging Cable,1,11.95,03/17/19 17:42,"736 Johnson St, Portland, OR 97035" +178312,iPhone,1,700,03/22/19 08:38,"414 2nd St, San Francisco, CA 94016" +178313,ThinkPad Laptop,1,999.99,03/28/19 18:42,"308 Main St, Austin, TX 73301" +178314,AA Batteries (4-pack),1,3.84,03/02/19 11:19,"235 Sunset St, San Francisco, CA 94016" +178315,Lightning Charging Cable,2,14.95,03/24/19 22:00,"166 12th St, San Francisco, CA 94016" +178316,Wired Headphones,2,11.99,03/07/19 17:15,"350 5th St, Austin, TX 73301" +178317,Wired Headphones,3,11.99,03/17/19 10:40,"116 Lakeview St, Los Angeles, CA 90001" +178317,Lightning Charging Cable,1,14.95,03/17/19 10:40,"116 Lakeview St, Los Angeles, CA 90001" +178318,Lightning Charging Cable,1,14.95,03/29/19 20:57,"617 River St, Seattle, WA 98101" +178319,34in Ultrawide Monitor,1,379.99,03/12/19 20:24,"138 7th St, Atlanta, GA 30301" +178320,20in Monitor,1,109.99,03/12/19 07:40,"856 Meadow St, Austin, TX 73301" +178321,ThinkPad Laptop,1,999.99,03/18/19 18:40,"950 Jackson St, San Francisco, CA 94016" +178322,AA Batteries (4-pack),1,3.84,03/30/19 12:54,"396 Park St, Seattle, WA 98101" +178323,27in 4K Gaming Monitor,1,389.99,03/06/19 12:18,"768 14th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +178324,AA Batteries (4-pack),2,3.84,03/22/19 16:17,"110 6th St, Portland, OR 97035" +178325,ThinkPad Laptop,1,999.99,03/16/19 15:06,"306 Center St, Dallas, TX 75001" +178326,AAA Batteries (4-pack),1,2.99,03/26/19 08:31,"309 10th St, New York City, NY 10001" +178327,27in 4K Gaming Monitor,1,389.99,03/02/19 11:58,"288 Jackson St, Atlanta, GA 30301" +178328,Wired Headphones,1,11.99,03/08/19 16:46,"816 Maple St, Seattle, WA 98101" +178329,Flatscreen TV,1,300,03/10/19 21:40,"227 2nd St, New York City, NY 10001" +178330,Apple Airpods Headphones,1,150,03/10/19 08:29,"934 13th St, Dallas, TX 75001" +178331,USB-C Charging Cable,1,11.95,03/17/19 07:34,"312 North St, Boston, MA 02215" +178332,AAA Batteries (4-pack),1,2.99,03/28/19 14:25,"316 Park St, Los Angeles, CA 90001" +178333,Wired Headphones,1,11.99,03/31/19 12:39,"470 1st St, Portland, OR 97035" +178334,AAA Batteries (4-pack),2,2.99,03/19/19 20:30,"380 14th St, New York City, NY 10001" +178335,34in Ultrawide Monitor,1,379.99,03/08/19 22:52,"729 River St, Los Angeles, CA 90001" +178336,USB-C Charging Cable,1,11.95,03/16/19 17:07,"911 12th St, Portland, OR 97035" +178337,Lightning Charging Cable,1,14.95,03/24/19 18:38,"192 2nd St, Dallas, TX 75001" +178338,iPhone,1,700,03/21/19 21:07,"258 Jackson St, Dallas, TX 75001" +178339,ThinkPad Laptop,1,999.99,03/15/19 08:01,"510 13th St, New York City, NY 10001" +178340,USB-C Charging Cable,1,11.95,03/14/19 15:17,"877 1st St, New York City, NY 10001" +178340,USB-C Charging Cable,1,11.95,03/14/19 15:17,"877 1st St, New York City, NY 10001" +178341,AAA Batteries (4-pack),3,2.99,03/03/19 20:07,"792 Ridge St, New York City, NY 10001" +178342,AAA Batteries (4-pack),6,2.99,03/08/19 17:09,"994 1st St, Atlanta, GA 30301" +178343,Bose SoundSport Headphones,1,99.99,03/16/19 09:18,"168 Hickory St, San Francisco, CA 94016" +178344,Lightning Charging Cable,1,14.95,03/05/19 17:58,"460 Forest St, Atlanta, GA 30301" +178345,Apple Airpods Headphones,1,150,03/02/19 21:54,"615 Forest St, New York City, NY 10001" +178346,Macbook Pro Laptop,1,1700,03/25/19 22:55,"337 6th St, San Francisco, CA 94016" +178347,Apple Airpods Headphones,1,150,03/23/19 20:01,"402 Park St, Los Angeles, CA 90001" +178348,USB-C Charging Cable,1,11.95,03/30/19 14:37,"837 Hill St, New York City, NY 10001" +178349,Apple Airpods Headphones,1,150,03/05/19 19:18,"489 14th St, San Francisco, CA 94016" +178350,iPhone,1,700,03/20/19 14:06,"273 Spruce St, Boston, MA 02215" +178351,AA Batteries (4-pack),1,3.84,03/15/19 02:46,"698 Dogwood St, Los Angeles, CA 90001" +178352,Wired Headphones,1,11.99,03/24/19 08:44,"551 River St, New York City, NY 10001" +178353,Lightning Charging Cable,2,14.95,03/04/19 10:27,"118 1st St, New York City, NY 10001" +178354,Google Phone,1,600,03/03/19 13:27,"439 Madison St, Portland, ME 04101" +178355,34in Ultrawide Monitor,1,379.99,03/07/19 21:11,"667 Hickory St, Boston, MA 02215" +178356,AAA Batteries (4-pack),1,2.99,03/12/19 18:52,"829 Spruce St, Boston, MA 02215" +178357,Wired Headphones,1,11.99,03/18/19 21:11,"846 River St, Los Angeles, CA 90001" +178358,iPhone,1,700,03/02/19 06:05,"489 Highland St, San Francisco, CA 94016" +178358,Lightning Charging Cable,1,14.95,03/02/19 06:05,"489 Highland St, San Francisco, CA 94016" +178359,34in Ultrawide Monitor,1,379.99,03/30/19 21:26,"794 Spruce St, Los Angeles, CA 90001" +178360,USB-C Charging Cable,1,11.95,03/15/19 15:31,"449 Chestnut St, San Francisco, CA 94016" +178361,Google Phone,1,600,03/20/19 15:46,"963 2nd St, Los Angeles, CA 90001" +178361,USB-C Charging Cable,1,11.95,03/20/19 15:46,"963 2nd St, Los Angeles, CA 90001" +178362,27in FHD Monitor,1,149.99,03/26/19 12:09,"834 Maple St, Portland, OR 97035" +178363,27in FHD Monitor,1,149.99,03/04/19 19:42,"500 Elm St, Los Angeles, CA 90001" +178364,Apple Airpods Headphones,1,150,03/31/19 16:43,"980 Main St, Dallas, TX 75001" +178365,USB-C Charging Cable,2,11.95,03/05/19 14:19,"897 Jackson St, Los Angeles, CA 90001" +178366,Wired Headphones,1,11.99,03/28/19 18:52,"86 12th St, San Francisco, CA 94016" +178367,ThinkPad Laptop,1,999.99,03/22/19 15:44,"32 1st St, Los Angeles, CA 90001" +178368,27in 4K Gaming Monitor,1,389.99,03/11/19 13:21,"147 Main St, Atlanta, GA 30301" +178369,Flatscreen TV,1,300,03/01/19 09:27,"408 Maple St, New York City, NY 10001" +178370,AA Batteries (4-pack),1,3.84,03/14/19 05:41,"158 Dogwood St, Boston, MA 02215" +178371,USB-C Charging Cable,1,11.95,03/20/19 21:49,"976 Pine St, San Francisco, CA 94016" +178372,USB-C Charging Cable,2,11.95,03/06/19 17:19,"267 Washington St, Los Angeles, CA 90001" +178373,Wired Headphones,1,11.99,03/31/19 18:40,"363 9th St, San Francisco, CA 94016" +178374,Wired Headphones,1,11.99,03/12/19 06:39,"674 Cherry St, Austin, TX 73301" +178375,USB-C Charging Cable,1,11.95,03/08/19 22:24,"310 7th St, San Francisco, CA 94016" +178376,Lightning Charging Cable,1,14.95,03/18/19 20:23,"78 Church St, Atlanta, GA 30301" +178377,Wired Headphones,1,11.99,03/12/19 17:03,"771 Cherry St, Seattle, WA 98101" +178378,Lightning Charging Cable,1,14.95,03/23/19 16:46,"102 2nd St, Portland, OR 97035" +178379,USB-C Charging Cable,1,11.95,03/19/19 14:07,"204 Dogwood St, San Francisco, CA 94016" +178380,Bose SoundSport Headphones,1,99.99,03/05/19 22:22,"875 Adams St, New York City, NY 10001" +178381,Wired Headphones,2,11.99,03/20/19 20:29,"815 12th St, San Francisco, CA 94016" +178382,Lightning Charging Cable,1,14.95,03/10/19 17:17,"363 Sunset St, San Francisco, CA 94016" +178383,Apple Airpods Headphones,1,150,03/28/19 22:21,"783 12th St, New York City, NY 10001" +178384,Bose SoundSport Headphones,1,99.99,03/18/19 10:35,"938 1st St, San Francisco, CA 94016" +178385,Bose SoundSport Headphones,1,99.99,03/11/19 18:18,"83 Cherry St, Atlanta, GA 30301" +178386,27in FHD Monitor,1,149.99,03/21/19 16:17,"56 River St, Portland, OR 97035" +178387,USB-C Charging Cable,1,11.95,03/29/19 12:36,"208 Spruce St, San Francisco, CA 94016" +178388,Lightning Charging Cable,1,14.95,03/01/19 21:57,"115 Chestnut St, Seattle, WA 98101" +178389,Lightning Charging Cable,1,14.95,03/25/19 00:26,"132 5th St, San Francisco, CA 94016" +178390,AAA Batteries (4-pack),1,2.99,04/01/19 02:48,"854 9th St, Portland, OR 97035" +178391,Lightning Charging Cable,1,14.95,03/30/19 18:26,"401 Lake St, San Francisco, CA 94016" +178392,Wired Headphones,1,11.99,03/08/19 18:08,"293 Jackson St, Boston, MA 02215" +178393,AA Batteries (4-pack),1,3.84,03/15/19 08:43,"258 10th St, Seattle, WA 98101" +178394,AA Batteries (4-pack),1,3.84,03/10/19 11:34,"210 Forest St, New York City, NY 10001" +178395,Apple Airpods Headphones,1,150,03/08/19 21:54,"418 Forest St, New York City, NY 10001" +178396,Apple Airpods Headphones,1,150,03/15/19 12:38,"121 5th St, Austin, TX 73301" +178397,Lightning Charging Cable,1,14.95,03/14/19 22:33,"443 Hill St, Seattle, WA 98101" +178398,AA Batteries (4-pack),1,3.84,03/06/19 19:27,"26 9th St, Los Angeles, CA 90001" +178399,AAA Batteries (4-pack),1,2.99,03/25/19 20:35,"301 Lakeview St, Boston, MA 02215" +178400,AA Batteries (4-pack),1,3.84,03/16/19 09:58,"441 Jackson St, Portland, OR 97035" +178401,AA Batteries (4-pack),1,3.84,03/04/19 06:36,"610 Walnut St, New York City, NY 10001" +178402,Apple Airpods Headphones,1,150,03/30/19 01:45,"328 Lincoln St, Dallas, TX 75001" +178402,27in FHD Monitor,1,149.99,03/30/19 01:45,"328 Lincoln St, Dallas, TX 75001" +178403,Wired Headphones,1,11.99,03/21/19 20:46,"122 Park St, San Francisco, CA 94016" +178404,Apple Airpods Headphones,1,150,03/03/19 12:11,"651 Adams St, New York City, NY 10001" +178405,Apple Airpods Headphones,1,150,03/02/19 17:34,"417 9th St, Los Angeles, CA 90001" +178406,AAA Batteries (4-pack),1,2.99,03/30/19 09:55,"515 Center St, New York City, NY 10001" +178407,USB-C Charging Cable,1,11.95,03/18/19 08:42,"426 Meadow St, Los Angeles, CA 90001" +178408,Wired Headphones,1,11.99,03/27/19 19:01,"187 Meadow St, Seattle, WA 98101" +178409,AA Batteries (4-pack),1,3.84,03/26/19 21:30,"905 Main St, Portland, OR 97035" +178409,Wired Headphones,2,11.99,03/26/19 21:30,"905 Main St, Portland, OR 97035" +178410,Wired Headphones,1,11.99,03/21/19 20:59,"85 Chestnut St, New York City, NY 10001" +178411,Bose SoundSport Headphones,2,99.99,03/14/19 13:23,"603 4th St, San Francisco, CA 94016" +178412,AAA Batteries (4-pack),1,2.99,03/23/19 00:31,"699 Cherry St, Boston, MA 02215" +178413,Lightning Charging Cable,1,14.95,03/15/19 17:03,"13 9th St, Los Angeles, CA 90001" +178414,Flatscreen TV,1,300,03/08/19 14:24,"560 Washington St, San Francisco, CA 94016" +178415,Vareebadd Phone,1,400,03/18/19 01:48,"847 11th St, Boston, MA 02215" +178416,iPhone,1,700,03/15/19 18:27,"530 Forest St, Atlanta, GA 30301" +178416,Apple Airpods Headphones,1,150,03/15/19 18:27,"530 Forest St, Atlanta, GA 30301" +178417,USB-C Charging Cable,1,11.95,03/24/19 11:11,"295 West St, Seattle, WA 98101" +178418,Lightning Charging Cable,1,14.95,03/13/19 16:45,"674 South St, Dallas, TX 75001" +178419,Apple Airpods Headphones,1,150,03/31/19 12:10,"600 10th St, New York City, NY 10001" +178419,Bose SoundSport Headphones,1,99.99,03/31/19 12:10,"600 10th St, New York City, NY 10001" +178420,Lightning Charging Cable,1,14.95,03/04/19 10:35,"819 Cherry St, San Francisco, CA 94016" +178421,34in Ultrawide Monitor,1,379.99,03/12/19 16:55,"110 2nd St, Dallas, TX 75001" +178422,AAA Batteries (4-pack),3,2.99,03/22/19 19:33,"963 10th St, San Francisco, CA 94016" +178423,Apple Airpods Headphones,1,150,03/26/19 21:27,"224 8th St, New York City, NY 10001" +178424,AA Batteries (4-pack),1,3.84,03/14/19 16:32,"443 Dogwood St, Austin, TX 73301" +178425,Macbook Pro Laptop,1,1700,03/09/19 23:52,"300 Park St, Los Angeles, CA 90001" +178426,AAA Batteries (4-pack),1,2.99,03/11/19 20:45,"161 14th St, San Francisco, CA 94016" +178427,Lightning Charging Cable,1,14.95,03/31/19 15:08,"651 7th St, Boston, MA 02215" +178428,ThinkPad Laptop,1,999.99,03/20/19 23:37,"963 Pine St, San Francisco, CA 94016" +178429,Apple Airpods Headphones,1,150,03/08/19 13:52,"453 14th St, Los Angeles, CA 90001" +178430,AAA Batteries (4-pack),1,2.99,03/29/19 09:41,"882 12th St, San Francisco, CA 94016" +178431,AA Batteries (4-pack),1,3.84,03/16/19 22:56,"627 Lakeview St, New York City, NY 10001" +178432,34in Ultrawide Monitor,1,379.99,03/10/19 18:35,"413 Spruce St, Boston, MA 02215" +178433,34in Ultrawide Monitor,1,379.99,03/29/19 08:22,"282 Cherry St, Los Angeles, CA 90001" +178434,20in Monitor,1,109.99,03/20/19 21:02,"905 Meadow St, San Francisco, CA 94016" +178435,Apple Airpods Headphones,1,150,03/20/19 08:54,"919 Adams St, Boston, MA 02215" +178436,Wired Headphones,1,11.99,03/13/19 06:48,"37 Center St, Boston, MA 02215" +178437,AAA Batteries (4-pack),2,2.99,03/19/19 23:57,"654 9th St, Boston, MA 02215" +178438,LG Washing Machine,1,600.0,03/15/19 17:48,"538 Chestnut St, New York City, NY 10001" +178439,Bose SoundSport Headphones,1,99.99,03/13/19 11:22,"793 Sunset St, San Francisco, CA 94016" +178440,34in Ultrawide Monitor,1,379.99,03/23/19 21:58,"12 Elm St, Los Angeles, CA 90001" +178441,Bose SoundSport Headphones,1,99.99,03/17/19 13:31,"823 Center St, New York City, NY 10001" +178442,USB-C Charging Cable,1,11.95,03/17/19 10:44,"361 Chestnut St, Dallas, TX 75001" +178443,20in Monitor,1,109.99,03/24/19 10:47,"999 Sunset St, Los Angeles, CA 90001" +178444,USB-C Charging Cable,2,11.95,03/01/19 21:30,"221 Lincoln St, Seattle, WA 98101" +178445,iPhone,1,700,03/26/19 09:39,"345 14th St, Los Angeles, CA 90001" +178446,iPhone,1,700,03/23/19 20:10,"193 Hill St, Seattle, WA 98101" +178447,USB-C Charging Cable,1,11.95,03/07/19 07:58,"653 Walnut St, San Francisco, CA 94016" +178448,Apple Airpods Headphones,1,150,03/14/19 23:24,"671 Center St, Boston, MA 02215" +178449,Bose SoundSport Headphones,1,99.99,03/24/19 22:08,"313 Hill St, Los Angeles, CA 90001" +178450,USB-C Charging Cable,1,11.95,03/14/19 16:26,"603 Highland St, Austin, TX 73301" +178451,AA Batteries (4-pack),1,3.84,03/21/19 09:26,"590 Jefferson St, Dallas, TX 75001" +178452,AA Batteries (4-pack),1,3.84,03/08/19 20:47,"758 7th St, Seattle, WA 98101" +178453,AA Batteries (4-pack),1,3.84,03/25/19 12:31,"872 Ridge St, Seattle, WA 98101" +178454,27in FHD Monitor,1,149.99,03/16/19 12:13,"371 South St, Los Angeles, CA 90001" +178455,AAA Batteries (4-pack),1,2.99,03/02/19 21:19,"744 Willow St, Seattle, WA 98101" +178456,USB-C Charging Cable,1,11.95,03/25/19 18:36,"25 1st St, New York City, NY 10001" +178457,AA Batteries (4-pack),3,3.84,03/08/19 12:45,"411 Pine St, San Francisco, CA 94016" +178458,AA Batteries (4-pack),1,3.84,03/04/19 19:13,"529 8th St, Atlanta, GA 30301" +178459,Apple Airpods Headphones,1,150,03/24/19 22:08,"394 Cedar St, Boston, MA 02215" +178460,Lightning Charging Cable,1,14.95,03/21/19 10:55,"455 1st St, New York City, NY 10001" +178461,27in FHD Monitor,1,149.99,03/25/19 10:25,"38 Cherry St, San Francisco, CA 94016" +178462,AAA Batteries (4-pack),1,2.99,03/17/19 01:04,"998 Pine St, Seattle, WA 98101" +178463,USB-C Charging Cable,1,11.95,03/10/19 20:26,"497 Center St, Atlanta, GA 30301" +178464,AAA Batteries (4-pack),1,2.99,03/04/19 15:28,"796 Cherry St, Boston, MA 02215" +178465,Macbook Pro Laptop,1,1700,03/13/19 19:29,"595 7th St, Seattle, WA 98101" +178466,Lightning Charging Cable,1,14.95,03/16/19 16:44,"57 12th St, Atlanta, GA 30301" +178467,Bose SoundSport Headphones,1,99.99,03/28/19 17:35,"626 Spruce St, New York City, NY 10001" +178468,Google Phone,1,600,03/09/19 12:43,"415 4th St, San Francisco, CA 94016" +178469,Wired Headphones,1,11.99,03/08/19 16:53,"627 Hill St, Los Angeles, CA 90001" +178470,Wired Headphones,1,11.99,03/27/19 10:45,"709 Lakeview St, Los Angeles, CA 90001" +178471,Bose SoundSport Headphones,1,99.99,03/18/19 21:40,"735 Center St, Los Angeles, CA 90001" +178472,USB-C Charging Cable,1,11.95,04/01/19 00:45,"753 Madison St, San Francisco, CA 94016" +178473,Apple Airpods Headphones,1,150,03/27/19 16:30,"636 1st St, Seattle, WA 98101" +178474,Apple Airpods Headphones,1,150,03/10/19 15:21,"128 Forest St, Seattle, WA 98101" +178475,Lightning Charging Cable,1,14.95,03/22/19 07:14,"184 Adams St, Seattle, WA 98101" +178476,Vareebadd Phone,1,400,03/07/19 17:24,"157 Dogwood St, New York City, NY 10001" +178477,AA Batteries (4-pack),1,3.84,03/27/19 20:29,"928 Lakeview St, Dallas, TX 75001" +178478,Apple Airpods Headphones,1,150,03/25/19 22:47,"404 Highland St, Portland, OR 97035" +178479,27in FHD Monitor,1,149.99,03/21/19 19:32,"454 Dogwood St, Dallas, TX 75001" +178480,Lightning Charging Cable,1,14.95,03/20/19 15:31,"977 13th St, New York City, NY 10001" +178481,AA Batteries (4-pack),1,3.84,03/24/19 12:14,"129 4th St, San Francisco, CA 94016" +178482,AAA Batteries (4-pack),2,2.99,03/23/19 18:51,"43 Pine St, Portland, OR 97035" +178483,Lightning Charging Cable,1,14.95,03/26/19 11:17,"410 5th St, Los Angeles, CA 90001" +178484,ThinkPad Laptop,1,999.99,03/16/19 14:41,"983 Hill St, New York City, NY 10001" +178485,Flatscreen TV,1,300,03/23/19 10:30,"938 Jefferson St, New York City, NY 10001" +178486,Google Phone,1,600,03/02/19 10:43,"151 Pine St, San Francisco, CA 94016" +178486,Wired Headphones,1,11.99,03/02/19 10:43,"151 Pine St, San Francisco, CA 94016" +178487,Lightning Charging Cable,1,14.95,03/08/19 19:56,"694 10th St, Portland, OR 97035" +178488,USB-C Charging Cable,1,11.95,03/27/19 22:18,"912 Sunset St, Austin, TX 73301" +178489,USB-C Charging Cable,1,11.95,03/04/19 19:48,"2 Walnut St, San Francisco, CA 94016" +178490,27in 4K Gaming Monitor,1,389.99,03/30/19 10:20,"629 Hickory St, Atlanta, GA 30301" +178491,Google Phone,1,600,03/02/19 11:44,"349 Lakeview St, Atlanta, GA 30301" +178492,iPhone,1,700,03/30/19 09:56,"10 Park St, New York City, NY 10001" +178492,Lightning Charging Cable,1,14.95,03/30/19 09:56,"10 Park St, New York City, NY 10001" +178493,AAA Batteries (4-pack),1,2.99,03/01/19 13:03,"394 Elm St, Austin, TX 73301" +178494,Bose SoundSport Headphones,1,99.99,03/27/19 12:17,"104 Dogwood St, Portland, ME 04101" +178495,Bose SoundSport Headphones,1,99.99,03/22/19 14:04,"356 Church St, Atlanta, GA 30301" +178496,AA Batteries (4-pack),1,3.84,03/14/19 15:04,"442 Walnut St, San Francisco, CA 94016" +178497,Apple Airpods Headphones,1,150,03/23/19 18:37,"950 Lakeview St, Boston, MA 02215" +178498,Wired Headphones,1,11.99,03/01/19 18:17,"299 West St, San Francisco, CA 94016" +178499,AAA Batteries (4-pack),1,2.99,03/13/19 11:05,"310 Jackson St, New York City, NY 10001" +178500,Lightning Charging Cable,1,14.95,03/16/19 12:03,"826 Wilson St, New York City, NY 10001" +178501,USB-C Charging Cable,1,11.95,03/05/19 13:09,"660 Lincoln St, New York City, NY 10001" +178502,Bose SoundSport Headphones,1,99.99,03/13/19 17:18,"248 8th St, New York City, NY 10001" +178503,AA Batteries (4-pack),1,3.84,03/26/19 15:35,"485 Park St, New York City, NY 10001" +178504,27in FHD Monitor,1,149.99,03/09/19 05:33,"48 Walnut St, San Francisco, CA 94016" +178505,Apple Airpods Headphones,1,150,03/21/19 15:47,"300 13th St, Los Angeles, CA 90001" +178506,Macbook Pro Laptop,1,1700,03/22/19 13:20,"872 Pine St, New York City, NY 10001" +178507,Apple Airpods Headphones,1,150,03/14/19 07:05,"875 Cedar St, Los Angeles, CA 90001" +178508,USB-C Charging Cable,1,11.95,03/05/19 14:58,"926 Johnson St, Los Angeles, CA 90001" +178509,AAA Batteries (4-pack),1,2.99,03/10/19 21:42,"742 Wilson St, Seattle, WA 98101" +178510,AAA Batteries (4-pack),1,2.99,03/02/19 10:00,"38 5th St, Atlanta, GA 30301" +178511,Apple Airpods Headphones,1,150,03/25/19 17:59,"535 Cherry St, Atlanta, GA 30301" +178512,AA Batteries (4-pack),1,3.84,03/18/19 13:22,"811 Johnson St, New York City, NY 10001" +178513,USB-C Charging Cable,1,11.95,03/08/19 22:11,"375 Hill St, New York City, NY 10001" +178514,AA Batteries (4-pack),1,3.84,03/18/19 11:20,"43 Center St, New York City, NY 10001" +178515,27in FHD Monitor,1,149.99,03/20/19 14:20,"939 Park St, New York City, NY 10001" +178516,AAA Batteries (4-pack),2,2.99,03/14/19 11:00,"534 Highland St, Austin, TX 73301" +178517,USB-C Charging Cable,1,11.95,03/31/19 15:27,"868 Ridge St, San Francisco, CA 94016" +178518,Lightning Charging Cable,2,14.95,03/16/19 16:50,"834 Sunset St, Atlanta, GA 30301" +178519,Apple Airpods Headphones,1,150,03/13/19 00:38,"909 10th St, New York City, NY 10001" +178520,Macbook Pro Laptop,1,1700,03/26/19 19:37,"510 Cherry St, Austin, TX 73301" +178521,ThinkPad Laptop,1,999.99,03/06/19 16:09,"141 5th St, Portland, ME 04101" +178522,AAA Batteries (4-pack),1,2.99,03/11/19 21:26,"251 Walnut St, Seattle, WA 98101" +178523,Apple Airpods Headphones,1,150,03/30/19 18:47,"466 14th St, San Francisco, CA 94016" +178524,ThinkPad Laptop,1,999.99,03/09/19 06:15,"282 Lakeview St, San Francisco, CA 94016" +178525,USB-C Charging Cable,1,11.95,03/17/19 13:45,"192 Lincoln St, Portland, ME 04101" +178526,Apple Airpods Headphones,1,150,03/02/19 21:44,"830 Highland St, Los Angeles, CA 90001" +178527,Bose SoundSport Headphones,1,99.99,03/18/19 18:14,"10 Lincoln St, New York City, NY 10001" +178528,20in Monitor,1,109.99,03/21/19 10:45,"327 Church St, Los Angeles, CA 90001" +178529,ThinkPad Laptop,1,999.99,03/10/19 21:50,"175 14th St, San Francisco, CA 94016" +178530,Flatscreen TV,1,300,03/22/19 00:12,"3 12th St, Atlanta, GA 30301" +178531,USB-C Charging Cable,1,11.95,03/15/19 19:24,"95 Ridge St, Dallas, TX 75001" +178532,34in Ultrawide Monitor,1,379.99,03/03/19 21:10,"912 Sunset St, San Francisco, CA 94016" +178533,27in FHD Monitor,1,149.99,03/11/19 21:25,"699 Spruce St, Los Angeles, CA 90001" +178534,AA Batteries (4-pack),1,3.84,03/11/19 13:23,"410 Cherry St, Dallas, TX 75001" +178535,Apple Airpods Headphones,1,150,03/14/19 20:29,"191 Wilson St, Portland, OR 97035" +178536,Lightning Charging Cable,1,14.95,03/11/19 10:15,"285 Cedar St, New York City, NY 10001" +178537,27in 4K Gaming Monitor,1,389.99,03/11/19 09:18,"763 Highland St, Boston, MA 02215" +178538,27in FHD Monitor,1,149.99,03/16/19 12:27,"664 South St, Austin, TX 73301" +178539,Lightning Charging Cable,2,14.95,03/04/19 16:58,"471 11th St, San Francisco, CA 94016" +178540,AA Batteries (4-pack),1,3.84,03/11/19 12:20,"880 7th St, Atlanta, GA 30301" +178541,34in Ultrawide Monitor,1,379.99,03/28/19 20:04,"794 Adams St, Seattle, WA 98101" +178542,Lightning Charging Cable,1,14.95,03/05/19 11:10,"903 5th St, Seattle, WA 98101" +178543,Bose SoundSport Headphones,1,99.99,03/22/19 14:42,"830 5th St, Los Angeles, CA 90001" +178544,Google Phone,1,600,03/25/19 21:47,"809 Madison St, Seattle, WA 98101" +178544,USB-C Charging Cable,2,11.95,03/25/19 21:47,"809 Madison St, Seattle, WA 98101" +178545,Vareebadd Phone,1,400,03/05/19 15:47,"288 10th St, New York City, NY 10001" +178545,USB-C Charging Cable,1,11.95,03/05/19 15:47,"288 10th St, New York City, NY 10001" +178546,AA Batteries (4-pack),2,3.84,03/28/19 12:52,"46 1st St, New York City, NY 10001" +178547,iPhone,1,700,03/16/19 14:41,"681 Meadow St, Los Angeles, CA 90001" +178547,Lightning Charging Cable,2,14.95,03/16/19 14:41,"681 Meadow St, Los Angeles, CA 90001" +178547,Wired Headphones,1,11.99,03/16/19 14:41,"681 Meadow St, Los Angeles, CA 90001" +178548,AAA Batteries (4-pack),1,2.99,03/01/19 20:48,"767 Elm St, Los Angeles, CA 90001" +178549,Lightning Charging Cable,1,14.95,03/17/19 21:41,"585 Cherry St, Boston, MA 02215" +178550,USB-C Charging Cable,1,11.95,03/12/19 21:06,"463 Dogwood St, San Francisco, CA 94016" +178551,AA Batteries (4-pack),3,3.84,03/28/19 18:08,"761 Meadow St, Portland, OR 97035" +178552,Vareebadd Phone,1,400,03/10/19 12:39,"501 West St, San Francisco, CA 94016" +178553,AA Batteries (4-pack),1,3.84,03/22/19 15:48,"407 Park St, Los Angeles, CA 90001" +178554,27in FHD Monitor,1,149.99,03/05/19 21:02,"525 Adams St, Seattle, WA 98101" +178555,AAA Batteries (4-pack),1,2.99,03/24/19 10:52,"533 Pine St, Atlanta, GA 30301" +178556,AA Batteries (4-pack),3,3.84,03/20/19 20:15,"576 8th St, San Francisco, CA 94016" +178556,Apple Airpods Headphones,1,150,03/20/19 20:15,"576 8th St, San Francisco, CA 94016" +178557,Flatscreen TV,1,300,03/12/19 21:33,"572 Maple St, Boston, MA 02215" +178558,AA Batteries (4-pack),1,3.84,03/22/19 09:10,"83 Washington St, New York City, NY 10001" +178559,Wired Headphones,1,11.99,03/06/19 12:23,"303 Forest St, San Francisco, CA 94016" +178560,Flatscreen TV,1,300,03/13/19 13:27,"613 4th St, San Francisco, CA 94016" +178561,Apple Airpods Headphones,1,150,03/06/19 15:23,"797 Lake St, Portland, OR 97035" +178562,Wired Headphones,1,11.99,03/10/19 14:18,"403 Johnson St, San Francisco, CA 94016" +178563,AAA Batteries (4-pack),1,2.99,03/31/19 12:13,"333 7th St, Dallas, TX 75001" +178564,Vareebadd Phone,1,400,03/17/19 07:58,"901 10th St, San Francisco, CA 94016" +178565,Bose SoundSport Headphones,1,99.99,03/12/19 22:17,"582 West St, New York City, NY 10001" +178566,USB-C Charging Cable,1,11.95,03/08/19 16:16,"502 9th St, Boston, MA 02215" +178567,Lightning Charging Cable,1,14.95,03/15/19 12:13,"656 5th St, Seattle, WA 98101" +178568,27in 4K Gaming Monitor,1,389.99,03/05/19 22:52,"802 Cedar St, Seattle, WA 98101" +178569,Lightning Charging Cable,1,14.95,03/25/19 12:45,"85 7th St, Dallas, TX 75001" +,,,,, +178570,Wired Headphones,1,11.99,03/10/19 08:11,"121 Maple St, Portland, OR 97035" +178571,iPhone,1,700,03/05/19 13:25,"353 14th St, San Francisco, CA 94016" +178572,AAA Batteries (4-pack),2,2.99,03/07/19 23:53,"337 Dogwood St, San Francisco, CA 94016" +178573,Wired Headphones,1,11.99,03/24/19 12:34,"340 2nd St, San Francisco, CA 94016" +178574,Apple Airpods Headphones,1,150,03/23/19 05:10,"957 Meadow St, San Francisco, CA 94016" +178575,USB-C Charging Cable,1,11.95,03/06/19 20:42,"425 Meadow St, Boston, MA 02215" +178576,Wired Headphones,1,11.99,03/26/19 07:00,"244 Meadow St, San Francisco, CA 94016" +178577,ThinkPad Laptop,1,999.99,03/29/19 14:25,"657 13th St, San Francisco, CA 94016" +178578,27in 4K Gaming Monitor,1,389.99,03/30/19 14:13,"221 Cedar St, Los Angeles, CA 90001" +178579,27in FHD Monitor,1,149.99,03/07/19 16:40,"119 Jackson St, New York City, NY 10001" +178580,AAA Batteries (4-pack),1,2.99,03/29/19 10:19,"15 Lakeview St, Boston, MA 02215" +178581,iPhone,1,700,03/04/19 19:26,"206 River St, New York City, NY 10001" +178581,Lightning Charging Cable,1,14.95,03/04/19 19:26,"206 River St, New York City, NY 10001" +178582,Bose SoundSport Headphones,1,99.99,03/08/19 08:53,"40 South St, San Francisco, CA 94016" +178583,AAA Batteries (4-pack),1,2.99,03/07/19 11:18,"600 10th St, Los Angeles, CA 90001" +178584,Bose SoundSport Headphones,1,99.99,03/17/19 11:59,"154 Lake St, Austin, TX 73301" +178585,Wired Headphones,1,11.99,03/24/19 04:46,"402 Ridge St, Dallas, TX 75001" +178586,AAA Batteries (4-pack),2,2.99,03/19/19 23:15,"876 Washington St, San Francisco, CA 94016" +178587,Bose SoundSport Headphones,1,99.99,03/11/19 13:07,"875 Park St, Boston, MA 02215" +178588,Flatscreen TV,1,300,03/31/19 16:04,"736 11th St, Los Angeles, CA 90001" +178589,AA Batteries (4-pack),1,3.84,03/02/19 21:58,"541 Ridge St, San Francisco, CA 94016" +178590,Lightning Charging Cable,1,14.95,03/17/19 10:42,"260 Spruce St, San Francisco, CA 94016" +178591,iPhone,1,700,03/06/19 17:41,"956 Willow St, Portland, OR 97035" +178592,AA Batteries (4-pack),1,3.84,03/17/19 16:46,"693 Hill St, San Francisco, CA 94016" +178593,AAA Batteries (4-pack),2,2.99,03/30/19 19:50,"14 Walnut St, San Francisco, CA 94016" +178594,USB-C Charging Cable,1,11.95,03/29/19 17:00,"657 Cherry St, Portland, OR 97035" +178595,27in FHD Monitor,1,149.99,03/03/19 09:13,"949 14th St, San Francisco, CA 94016" +178596,AAA Batteries (4-pack),4,2.99,03/09/19 15:21,"919 Walnut St, New York City, NY 10001" +178597,27in FHD Monitor,1,149.99,03/02/19 19:04,"761 7th St, Austin, TX 73301" +178598,AAA Batteries (4-pack),1,2.99,03/05/19 23:58,"316 Sunset St, New York City, NY 10001" +178599,USB-C Charging Cable,4,11.95,03/14/19 22:19,"909 South St, Austin, TX 73301" +178600,Lightning Charging Cable,1,14.95,03/16/19 23:11,"172 Washington St, Seattle, WA 98101" +178601,Bose SoundSport Headphones,1,99.99,03/15/19 16:47,"11 Forest St, New York City, NY 10001" +178602,AAA Batteries (4-pack),1,2.99,03/17/19 12:16,"460 West St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +178603,Flatscreen TV,1,300,03/21/19 19:54,"46 Cedar St, Portland, OR 97035" +178604,AAA Batteries (4-pack),1,2.99,03/18/19 19:17,"15 9th St, Austin, TX 73301" +178605,AAA Batteries (4-pack),2,2.99,03/18/19 10:18,"473 11th St, Boston, MA 02215" +178606,Lightning Charging Cable,1,14.95,03/09/19 23:20,"665 Highland St, New York City, NY 10001" +178607,Flatscreen TV,1,300,03/18/19 12:32,"53 Lake St, Dallas, TX 75001" +178608,Flatscreen TV,1,300,03/10/19 23:07,"982 11th St, Austin, TX 73301" +178609,Bose SoundSport Headphones,1,99.99,03/08/19 18:41,"631 Elm St, Seattle, WA 98101" +178610,AA Batteries (4-pack),1,3.84,03/04/19 10:12,"441 Spruce St, San Francisco, CA 94016" +178611,Wired Headphones,1,11.99,03/19/19 00:20,"603 Church St, New York City, NY 10001" +178612,Macbook Pro Laptop,1,1700,03/09/19 21:53,"416 Adams St, Boston, MA 02215" +178613,USB-C Charging Cable,2,11.95,03/10/19 17:06,"666 6th St, New York City, NY 10001" +178614,Flatscreen TV,1,300,03/07/19 10:11,"936 Wilson St, Boston, MA 02215" +178615,Lightning Charging Cable,1,14.95,03/19/19 20:04,"41 Chestnut St, Seattle, WA 98101" +178616,Apple Airpods Headphones,1,150,03/16/19 13:59,"691 Ridge St, Boston, MA 02215" +178617,Apple Airpods Headphones,1,150,03/23/19 09:30,"80 Johnson St, Atlanta, GA 30301" +178618,Lightning Charging Cable,1,14.95,03/16/19 15:45,"226 4th St, San Francisco, CA 94016" +178619,ThinkPad Laptop,1,999.99,03/24/19 20:00,"742 Sunset St, San Francisco, CA 94016" +178620,27in 4K Gaming Monitor,1,389.99,03/09/19 16:08,"929 Sunset St, Boston, MA 02215" +178621,AAA Batteries (4-pack),1,2.99,03/25/19 12:59,"583 Church St, Dallas, TX 75001" +178622,Apple Airpods Headphones,1,150,03/28/19 17:09,"309 Washington St, Boston, MA 02215" +178623,iPhone,1,700,03/30/19 17:30,"729 10th St, Boston, MA 02215" +178624,AAA Batteries (4-pack),3,2.99,03/18/19 23:09,"555 Park St, New York City, NY 10001" +178625,34in Ultrawide Monitor,1,379.99,03/10/19 23:49,"981 Hill St, Seattle, WA 98101" +178626,Wired Headphones,1,11.99,03/08/19 14:50,"445 Madison St, New York City, NY 10001" +178627,Apple Airpods Headphones,1,150,03/13/19 15:12,"697 Cedar St, Boston, MA 02215" +178628,Apple Airpods Headphones,1,150,03/08/19 18:26,"415 River St, Boston, MA 02215" +178629,AAA Batteries (4-pack),1,2.99,03/13/19 20:21,"538 Dogwood St, Dallas, TX 75001" +178630,27in FHD Monitor,1,149.99,03/28/19 22:45,"338 Lakeview St, Boston, MA 02215" +178631,Lightning Charging Cable,2,14.95,03/25/19 11:29,"202 Church St, Portland, OR 97035" +178632,Bose SoundSport Headphones,1,99.99,03/05/19 22:14,"887 1st St, San Francisco, CA 94016" +178633,Google Phone,1,600,03/30/19 21:26,"208 Hill St, Boston, MA 02215" +178634,LG Washing Machine,1,600.0,03/27/19 10:11,"102 Lincoln St, Portland, ME 04101" +178635,Bose SoundSport Headphones,1,99.99,03/23/19 00:21,"671 North St, San Francisco, CA 94016" +178636,USB-C Charging Cable,1,11.95,03/28/19 16:53,"270 Hickory St, New York City, NY 10001" +178637,Apple Airpods Headphones,1,150,03/20/19 22:24,"838 13th St, Atlanta, GA 30301" +178638,AA Batteries (4-pack),1,3.84,03/19/19 12:39,"690 Pine St, Los Angeles, CA 90001" +178639,34in Ultrawide Monitor,1,379.99,03/28/19 03:18,"76 Walnut St, Austin, TX 73301" +178640,Apple Airpods Headphones,1,150,03/21/19 12:06,"776 Center St, San Francisco, CA 94016" +178641,Macbook Pro Laptop,1,1700,03/29/19 15:42,"345 Chestnut St, Portland, OR 97035" +178642,Google Phone,1,600,03/02/19 15:09,"858 Lakeview St, San Francisco, CA 94016" +178643,AA Batteries (4-pack),1,3.84,03/22/19 23:57,"708 Main St, San Francisco, CA 94016" +178644,AAA Batteries (4-pack),1,2.99,03/25/19 19:59,"13 11th St, Los Angeles, CA 90001" +178645,Lightning Charging Cable,1,14.95,03/10/19 15:16,"313 Jackson St, Boston, MA 02215" +178646,34in Ultrawide Monitor,1,379.99,03/04/19 18:43,"527 North St, Los Angeles, CA 90001" +178647,Apple Airpods Headphones,1,150,03/10/19 18:30,"650 Lincoln St, Boston, MA 02215" +178648,34in Ultrawide Monitor,1,379.99,03/04/19 11:32,"537 10th St, San Francisco, CA 94016" +178649,AAA Batteries (4-pack),1,2.99,03/21/19 05:34,"494 Forest St, Los Angeles, CA 90001" +178650,AA Batteries (4-pack),1,3.84,03/08/19 15:39,"582 1st St, San Francisco, CA 94016" +178651,Flatscreen TV,1,300,03/22/19 23:16,"370 Spruce St, Seattle, WA 98101" +178652,USB-C Charging Cable,1,11.95,03/04/19 17:01,"657 Elm St, Los Angeles, CA 90001" +178653,Wired Headphones,1,11.99,03/07/19 17:13,"567 Willow St, San Francisco, CA 94016" +178654,Google Phone,1,600,03/23/19 16:34,"71 4th St, Portland, OR 97035" +178654,USB-C Charging Cable,1,11.95,03/23/19 16:34,"71 4th St, Portland, OR 97035" +178655,USB-C Charging Cable,1,11.95,03/30/19 19:09,"266 Center St, Los Angeles, CA 90001" +178656,USB-C Charging Cable,1,11.95,03/26/19 10:25,"231 Elm St, Dallas, TX 75001" +178657,34in Ultrawide Monitor,1,379.99,03/15/19 23:36,"358 West St, San Francisco, CA 94016" +178657,27in 4K Gaming Monitor,1,389.99,03/15/19 23:36,"358 West St, San Francisco, CA 94016" +178658,34in Ultrawide Monitor,1,379.99,03/13/19 19:41,"742 Main St, New York City, NY 10001" +178659,AAA Batteries (4-pack),1,2.99,03/23/19 20:34,"18 Cedar St, San Francisco, CA 94016" +178660,Bose SoundSport Headphones,1,99.99,03/25/19 17:40,"180 Johnson St, Los Angeles, CA 90001" +178661,27in 4K Gaming Monitor,1,389.99,03/23/19 13:50,"268 4th St, Los Angeles, CA 90001" +178662,Lightning Charging Cable,1,14.95,03/15/19 13:55,"164 12th St, Boston, MA 02215" +178663,iPhone,1,700,03/28/19 21:08,"816 Lake St, Seattle, WA 98101" +178663,Apple Airpods Headphones,1,150,03/28/19 21:08,"816 Lake St, Seattle, WA 98101" +178664,Flatscreen TV,1,300,03/13/19 10:44,"348 6th St, Seattle, WA 98101" +178665,AAA Batteries (4-pack),2,2.99,03/23/19 09:03,"197 Johnson St, Los Angeles, CA 90001" +178666,USB-C Charging Cable,1,11.95,03/22/19 22:19,"474 Pine St, Portland, OR 97035" +178667,20in Monitor,1,109.99,03/04/19 10:35,"545 Church St, Los Angeles, CA 90001" +178668,AA Batteries (4-pack),1,3.84,03/13/19 20:25,"475 Elm St, Boston, MA 02215" +178669,USB-C Charging Cable,1,11.95,03/04/19 18:45,"724 River St, San Francisco, CA 94016" +178670,Vareebadd Phone,1,400,03/29/19 20:30,"796 Jackson St, San Francisco, CA 94016" +178670,USB-C Charging Cable,1,11.95,03/29/19 20:30,"796 Jackson St, San Francisco, CA 94016" +178671,AA Batteries (4-pack),1,3.84,03/10/19 23:33,"888 Wilson St, San Francisco, CA 94016" +178672,Apple Airpods Headphones,1,150,03/09/19 19:33,"594 Maple St, New York City, NY 10001" +178673,USB-C Charging Cable,1,11.95,03/11/19 15:35,"272 Walnut St, Los Angeles, CA 90001" +178674,Bose SoundSport Headphones,1,99.99,03/28/19 17:10,"384 Hill St, Los Angeles, CA 90001" +178675,Apple Airpods Headphones,1,150,03/25/19 13:51,"183 Willow St, Los Angeles, CA 90001" +178676,Wired Headphones,1,11.99,03/04/19 21:32,"828 Washington St, Austin, TX 73301" +178677,Lightning Charging Cable,1,14.95,03/25/19 10:52,"96 Lake St, Los Angeles, CA 90001" +178678,AAA Batteries (4-pack),1,2.99,03/12/19 13:10,"131 Wilson St, Los Angeles, CA 90001" +178679,Wired Headphones,1,11.99,03/05/19 18:47,"858 Jackson St, Dallas, TX 75001" +178680,Google Phone,1,600,03/20/19 21:38,"921 West St, San Francisco, CA 94016" +178680,USB-C Charging Cable,1,11.95,03/20/19 21:38,"921 West St, San Francisco, CA 94016" +178681,USB-C Charging Cable,1,11.95,03/18/19 18:50,"986 West St, Atlanta, GA 30301" +178682,27in 4K Gaming Monitor,1,389.99,03/31/19 19:26,"294 Maple St, Los Angeles, CA 90001" +178683,20in Monitor,1,109.99,03/31/19 07:06,"411 Highland St, Austin, TX 73301" +178684,27in 4K Gaming Monitor,1,389.99,03/20/19 11:45,"26 West St, Los Angeles, CA 90001" +178685,34in Ultrawide Monitor,1,379.99,03/21/19 21:52,"384 West St, San Francisco, CA 94016" +178686,AA Batteries (4-pack),1,3.84,03/31/19 14:23,"130 Madison St, Seattle, WA 98101" +178687,Bose SoundSport Headphones,1,99.99,03/11/19 08:52,"844 Spruce St, New York City, NY 10001" +178688,AA Batteries (4-pack),1,3.84,03/04/19 07:43,"947 Main St, San Francisco, CA 94016" +178689,AA Batteries (4-pack),1,3.84,03/10/19 16:40,"405 Chestnut St, Boston, MA 02215" +178690,Bose SoundSport Headphones,1,99.99,03/10/19 15:15,"434 North St, Boston, MA 02215" +178691,AA Batteries (4-pack),1,3.84,03/31/19 14:25,"763 Sunset St, New York City, NY 10001" +178692,Apple Airpods Headphones,1,150,03/25/19 22:19,"194 5th St, San Francisco, CA 94016" +178693,USB-C Charging Cable,1,11.95,03/20/19 17:17,"148 7th St, New York City, NY 10001" +178694,Bose SoundSport Headphones,1,99.99,03/29/19 12:18,"764 Main St, New York City, NY 10001" +178695,Apple Airpods Headphones,1,150,03/04/19 10:35,"396 South St, Los Angeles, CA 90001" +178696,USB-C Charging Cable,1,11.95,03/21/19 18:24,"419 11th St, Portland, OR 97035" +178697,AA Batteries (4-pack),1,3.84,03/10/19 13:12,"5 13th St, Dallas, TX 75001" +178698,Apple Airpods Headphones,1,150,03/26/19 11:25,"317 Jefferson St, Dallas, TX 75001" +178699,Lightning Charging Cable,1,14.95,03/26/19 23:03,"188 Washington St, Austin, TX 73301" +178700,34in Ultrawide Monitor,1,379.99,03/02/19 15:02,"683 Willow St, San Francisco, CA 94016" +178701,Bose SoundSport Headphones,1,99.99,03/15/19 08:25,"247 Wilson St, San Francisco, CA 94016" +178702,Bose SoundSport Headphones,1,99.99,03/07/19 11:20,"383 Walnut St, Boston, MA 02215" +178703,Wired Headphones,1,11.99,03/27/19 06:57,"313 Forest St, Los Angeles, CA 90001" +178704,AA Batteries (4-pack),1,3.84,03/03/19 14:21,"505 Cedar St, Seattle, WA 98101" +178705,AAA Batteries (4-pack),1,2.99,03/27/19 09:49,"604 Sunset St, Atlanta, GA 30301" +178706,Wired Headphones,1,11.99,03/28/19 09:36,"920 Pine St, Los Angeles, CA 90001" +178707,iPhone,1,700,03/27/19 20:15,"405 River St, San Francisco, CA 94016" +178707,Apple Airpods Headphones,1,150,03/27/19 20:15,"405 River St, San Francisco, CA 94016" +178708,AA Batteries (4-pack),1,3.84,03/28/19 17:17,"777 2nd St, Dallas, TX 75001" +178709,Flatscreen TV,1,300,03/04/19 09:15,"596 5th St, San Francisco, CA 94016" +178710,AAA Batteries (4-pack),2,2.99,03/22/19 22:38,"661 Jackson St, San Francisco, CA 94016" +178711,Lightning Charging Cable,1,14.95,03/11/19 16:00,"808 River St, Portland, OR 97035" +178712,20in Monitor,1,109.99,03/20/19 20:38,"513 11th St, Los Angeles, CA 90001" +178713,LG Washing Machine,1,600.0,03/10/19 09:28,"201 Lakeview St, Austin, TX 73301" +178714,AA Batteries (4-pack),1,3.84,03/31/19 10:59,"235 Lake St, New York City, NY 10001" +178715,Bose SoundSport Headphones,1,99.99,03/22/19 20:42,"398 11th St, Los Angeles, CA 90001" +178716,Google Phone,1,600,03/28/19 13:39,"286 Forest St, Atlanta, GA 30301" +178716,USB-C Charging Cable,1,11.95,03/28/19 13:39,"286 Forest St, Atlanta, GA 30301" +178716,Bose SoundSport Headphones,1,99.99,03/28/19 13:39,"286 Forest St, Atlanta, GA 30301" +178717,Lightning Charging Cable,1,14.95,03/30/19 14:55,"74 Main St, New York City, NY 10001" +178718,27in FHD Monitor,1,149.99,03/02/19 10:59,"169 Highland St, Los Angeles, CA 90001" +178719,AA Batteries (4-pack),1,3.84,03/09/19 21:46,"132 Maple St, Boston, MA 02215" +178720,AAA Batteries (4-pack),1,2.99,03/24/19 16:31,"858 Main St, Portland, OR 97035" +178721,iPhone,1,700,03/23/19 18:08,"670 Hickory St, San Francisco, CA 94016" +178721,Wired Headphones,1,11.99,03/23/19 18:08,"670 Hickory St, San Francisco, CA 94016" +178722,Apple Airpods Headphones,1,150,03/27/19 13:00,"136 Jefferson St, New York City, NY 10001" +178723,USB-C Charging Cable,1,11.95,03/22/19 11:20,"892 Elm St, Seattle, WA 98101" +178724,Bose SoundSport Headphones,1,99.99,03/01/19 11:58,"737 10th St, Seattle, WA 98101" +178725,AAA Batteries (4-pack),1,2.99,03/28/19 00:23,"594 5th St, San Francisco, CA 94016" +178726,Vareebadd Phone,1,400,03/04/19 16:17,"677 4th St, San Francisco, CA 94016" +178727,AA Batteries (4-pack),1,3.84,03/27/19 14:04,"220 Church St, San Francisco, CA 94016" +178728,Wired Headphones,1,11.99,03/03/19 17:48,"228 Spruce St, San Francisco, CA 94016" +178729,Apple Airpods Headphones,1,150,03/17/19 10:18,"355 Jefferson St, Boston, MA 02215" +178730,USB-C Charging Cable,1,11.95,03/04/19 11:58,"182 2nd St, Boston, MA 02215" +178731,27in FHD Monitor,1,149.99,03/07/19 15:04,"268 6th St, Portland, OR 97035" +178732,USB-C Charging Cable,1,11.95,03/06/19 18:13,"383 2nd St, Dallas, TX 75001" +178733,Apple Airpods Headphones,1,150,03/14/19 16:34,"659 Dogwood St, Boston, MA 02215" +178734,27in 4K Gaming Monitor,1,389.99,03/06/19 13:48,"50 Meadow St, Dallas, TX 75001" +178735,Apple Airpods Headphones,1,150,03/25/19 21:16,"783 Main St, New York City, NY 10001" +178736,AA Batteries (4-pack),1,3.84,03/15/19 17:03,"516 Lakeview St, Portland, ME 04101" +178737,27in 4K Gaming Monitor,1,389.99,03/30/19 21:34,"651 Forest St, Atlanta, GA 30301" +178738,USB-C Charging Cable,1,11.95,03/21/19 09:54,"508 Chestnut St, San Francisco, CA 94016" +178739,27in 4K Gaming Monitor,1,389.99,03/11/19 20:47,"75 South St, Seattle, WA 98101" +178739,Apple Airpods Headphones,1,150,03/11/19 20:47,"75 South St, Seattle, WA 98101" +178740,iPhone,1,700,03/12/19 09:42,"541 7th St, Los Angeles, CA 90001" +178740,Wired Headphones,1,11.99,03/12/19 09:42,"541 7th St, Los Angeles, CA 90001" +178741,27in FHD Monitor,1,149.99,03/06/19 16:47,"279 Adams St, Seattle, WA 98101" +178742,Wired Headphones,1,11.99,03/19/19 11:07,"856 Maple St, Boston, MA 02215" +178743,AAA Batteries (4-pack),1,2.99,03/10/19 11:26,"99 4th St, Atlanta, GA 30301" +178744,USB-C Charging Cable,1,11.95,03/25/19 14:14,"307 Jefferson St, Los Angeles, CA 90001" +178745,Macbook Pro Laptop,1,1700,03/25/19 15:32,"59 1st St, Boston, MA 02215" +178746,AA Batteries (4-pack),1,3.84,03/28/19 18:55,"200 Walnut St, San Francisco, CA 94016" +178747,AAA Batteries (4-pack),3,2.99,03/06/19 23:13,"812 Sunset St, Los Angeles, CA 90001" +178748,Wired Headphones,2,11.99,03/26/19 19:16,"848 Park St, Boston, MA 02215" +178749,AAA Batteries (4-pack),3,2.99,03/15/19 12:14,"519 West St, New York City, NY 10001" +178750,USB-C Charging Cable,1,11.95,03/12/19 09:42,"89 Chestnut St, Los Angeles, CA 90001" +178751,AAA Batteries (4-pack),3,2.99,03/03/19 19:53,"258 Center St, Boston, MA 02215" +178752,Macbook Pro Laptop,1,1700,03/13/19 20:46,"203 Jefferson St, Boston, MA 02215" +178753,Google Phone,1,600,03/03/19 14:07,"927 Park St, San Francisco, CA 94016" +178754,USB-C Charging Cable,1,11.95,03/27/19 18:42,"970 Center St, Atlanta, GA 30301" +178755,Lightning Charging Cable,1,14.95,03/15/19 14:36,"357 8th St, San Francisco, CA 94016" +178756,Wired Headphones,1,11.99,03/29/19 15:36,"424 Willow St, San Francisco, CA 94016" +178757,Wired Headphones,1,11.99,03/01/19 14:05,"985 Sunset St, San Francisco, CA 94016" +178758,Wired Headphones,2,11.99,03/13/19 21:49,"388 11th St, Atlanta, GA 30301" +178759,iPhone,1,700,03/18/19 22:15,"948 Washington St, Los Angeles, CA 90001" +178760,Wired Headphones,1,11.99,03/10/19 11:15,"887 Chestnut St, San Francisco, CA 94016" +178761,Lightning Charging Cable,1,14.95,03/08/19 12:33,"18 Madison St, Austin, TX 73301" +178762,Lightning Charging Cable,1,14.95,03/12/19 15:25,"507 Hill St, San Francisco, CA 94016" +178763,iPhone,1,700,03/21/19 22:05,"484 Park St, San Francisco, CA 94016" +178764,Apple Airpods Headphones,1,150,03/05/19 14:32,"535 Center St, Dallas, TX 75001" +178765,Lightning Charging Cable,1,14.95,03/05/19 19:13,"849 4th St, San Francisco, CA 94016" +178766,Wired Headphones,1,11.99,03/28/19 19:24,"758 Lakeview St, Austin, TX 73301" +178767,27in 4K Gaming Monitor,1,389.99,03/22/19 16:37,"317 4th St, Boston, MA 02215" +178768,ThinkPad Laptop,1,999.99,03/20/19 11:58,"768 2nd St, Los Angeles, CA 90001" +178769,Wired Headphones,1,11.99,03/13/19 23:00,"877 4th St, Seattle, WA 98101" +178770,27in FHD Monitor,1,149.99,03/29/19 22:34,"906 Main St, Portland, ME 04101" +178771,USB-C Charging Cable,1,11.95,03/10/19 07:57,"406 Adams St, Dallas, TX 75001" +178772,USB-C Charging Cable,1,11.95,03/23/19 17:41,"658 Madison St, Dallas, TX 75001" +178773,Google Phone,1,600,03/25/19 21:20,"256 Adams St, Dallas, TX 75001" +178773,Bose SoundSport Headphones,1,99.99,03/25/19 21:20,"256 Adams St, Dallas, TX 75001" +178774,Flatscreen TV,1,300,03/04/19 18:15,"344 Adams St, Los Angeles, CA 90001" +178775,AA Batteries (4-pack),1,3.84,03/03/19 16:19,"800 Park St, Atlanta, GA 30301" +178776,Lightning Charging Cable,1,14.95,03/30/19 18:15,"133 Sunset St, New York City, NY 10001" +178777,USB-C Charging Cable,3,11.95,03/09/19 07:48,"953 Jackson St, Dallas, TX 75001" +178778,AA Batteries (4-pack),1,3.84,03/05/19 09:13,"412 2nd St, Portland, ME 04101" +178779,Bose SoundSport Headphones,1,99.99,03/25/19 18:50,"719 Forest St, Portland, OR 97035" +178780,AAA Batteries (4-pack),2,2.99,03/14/19 23:34,"44 Lake St, San Francisco, CA 94016" +178781,USB-C Charging Cable,1,11.95,03/14/19 08:19,"635 Hickory St, Portland, OR 97035" +178782,27in 4K Gaming Monitor,1,389.99,03/18/19 10:43,"665 11th St, Atlanta, GA 30301" +178783,ThinkPad Laptop,1,999.99,03/23/19 08:59,"621 Hickory St, San Francisco, CA 94016" +178784,Apple Airpods Headphones,1,150,03/04/19 15:22,"433 Highland St, New York City, NY 10001" +178785,27in 4K Gaming Monitor,1,389.99,03/21/19 20:36,"923 2nd St, New York City, NY 10001" +178786,USB-C Charging Cable,1,11.95,03/04/19 10:17,"711 Hickory St, New York City, NY 10001" +178787,Lightning Charging Cable,1,14.95,03/26/19 22:20,"570 Walnut St, Austin, TX 73301" +178788,AAA Batteries (4-pack),1,2.99,03/24/19 14:40,"398 Cherry St, Los Angeles, CA 90001" +178789,ThinkPad Laptop,1,999.99,03/08/19 14:02,"910 Wilson St, Atlanta, GA 30301" +178790,Lightning Charging Cable,1,14.95,03/22/19 15:34,"634 7th St, San Francisco, CA 94016" +178791,AAA Batteries (4-pack),1,2.99,03/20/19 17:50,"261 Lakeview St, Seattle, WA 98101" +178792,AA Batteries (4-pack),1,3.84,03/27/19 12:19,"795 11th St, Los Angeles, CA 90001" +178793,LG Dryer,1,600.0,03/08/19 22:22,"557 Lake St, Portland, OR 97035" +178794,Bose SoundSport Headphones,1,99.99,03/06/19 17:17,"57 Walnut St, Atlanta, GA 30301" +178795,Wired Headphones,1,11.99,03/22/19 09:20,"860 Center St, Atlanta, GA 30301" +178796,Wired Headphones,1,11.99,03/22/19 14:05,"269 9th St, San Francisco, CA 94016" +178797,Macbook Pro Laptop,1,1700,03/18/19 17:35,"359 Ridge St, Austin, TX 73301" +178798,Bose SoundSport Headphones,1,99.99,03/30/19 12:22,"555 Maple St, San Francisco, CA 94016" +178799,Apple Airpods Headphones,1,150,03/22/19 01:03,"36 Main St, Los Angeles, CA 90001" +178799,AAA Batteries (4-pack),1,2.99,03/22/19 01:03,"36 Main St, Los Angeles, CA 90001" +178800,Bose SoundSport Headphones,1,99.99,03/25/19 17:02,"364 River St, San Francisco, CA 94016" +178801,AAA Batteries (4-pack),2,2.99,03/04/19 17:11,"65 6th St, New York City, NY 10001" +178802,27in 4K Gaming Monitor,1,389.99,03/04/19 20:23,"700 Lake St, Austin, TX 73301" +178803,AAA Batteries (4-pack),2,2.99,03/18/19 16:31,"269 7th St, Atlanta, GA 30301" +178804,AAA Batteries (4-pack),1,2.99,03/05/19 15:08,"317 Cherry St, Dallas, TX 75001" +178805,Wired Headphones,1,11.99,03/09/19 11:59,"308 Forest St, Atlanta, GA 30301" +178806,20in Monitor,1,109.99,03/30/19 12:08,"303 Walnut St, Boston, MA 02215" +178807,Lightning Charging Cable,1,14.95,03/22/19 19:05,"278 Cherry St, Dallas, TX 75001" +178808,Wired Headphones,1,11.99,03/05/19 15:25,"90 7th St, Seattle, WA 98101" +178809,Apple Airpods Headphones,1,150,03/30/19 13:44,"718 West St, New York City, NY 10001" +178810,Wired Headphones,1,11.99,03/21/19 17:51,"379 Church St, Boston, MA 02215" +178811,Lightning Charging Cable,1,14.95,03/19/19 18:38,"775 Lakeview St, Portland, OR 97035" +178812,Lightning Charging Cable,1,14.95,03/19/19 22:22,"473 Johnson St, San Francisco, CA 94016" +178813,27in 4K Gaming Monitor,1,389.99,03/23/19 20:57,"966 13th St, Los Angeles, CA 90001" +178814,ThinkPad Laptop,1,999.99,03/19/19 11:36,"889 Cedar St, Seattle, WA 98101" +178815,Wired Headphones,1,11.99,03/11/19 17:49,"292 9th St, New York City, NY 10001" +178816,AA Batteries (4-pack),1,3.84,03/24/19 14:40,"523 Willow St, Boston, MA 02215" +178817,AA Batteries (4-pack),2,3.84,03/28/19 19:49,"441 Willow St, Los Angeles, CA 90001" +178818,AA Batteries (4-pack),1,3.84,03/30/19 06:57,"883 Jackson St, Los Angeles, CA 90001" +178819,Wired Headphones,1,11.99,03/14/19 11:27,"502 Adams St, Portland, OR 97035" +178820,Lightning Charging Cable,1,14.95,03/08/19 14:52,"723 Elm St, Los Angeles, CA 90001" +178821,AA Batteries (4-pack),2,3.84,03/08/19 10:08,"942 Walnut St, New York City, NY 10001" +178822,USB-C Charging Cable,1,11.95,03/03/19 18:42,"233 Washington St, Dallas, TX 75001" +178823,AA Batteries (4-pack),3,3.84,03/01/19 12:11,"136 6th St, Los Angeles, CA 90001" +178824,Vareebadd Phone,1,400,03/22/19 09:34,"259 Cedar St, San Francisco, CA 94016" +178825,AA Batteries (4-pack),1,3.84,03/28/19 17:41,"321 Pine St, Austin, TX 73301" +178826,USB-C Charging Cable,1,11.95,03/04/19 21:48,"965 10th St, Los Angeles, CA 90001" +178827,Bose SoundSport Headphones,1,99.99,03/03/19 16:37,"635 Madison St, San Francisco, CA 94016" +178828,27in 4K Gaming Monitor,1,389.99,03/26/19 20:25,"892 South St, San Francisco, CA 94016" +178829,Wired Headphones,1,11.99,03/21/19 11:24,"46 Hill St, New York City, NY 10001" +178830,27in FHD Monitor,1,149.99,03/27/19 17:57,"10 12th St, New York City, NY 10001" +178831,34in Ultrawide Monitor,1,379.99,03/17/19 21:12,"656 13th St, Austin, TX 73301" +178832,AA Batteries (4-pack),2,3.84,03/10/19 17:16,"59 4th St, Los Angeles, CA 90001" +178833,USB-C Charging Cable,1,11.95,03/07/19 17:10,"350 14th St, New York City, NY 10001" +178834,Wired Headphones,1,11.99,03/07/19 12:08,"692 13th St, Los Angeles, CA 90001" +178835,AA Batteries (4-pack),1,3.84,03/20/19 12:04,"143 Lincoln St, San Francisco, CA 94016" +178836,iPhone,1,700,03/07/19 13:06,"735 Wilson St, Atlanta, GA 30301" +178837,AAA Batteries (4-pack),1,2.99,03/22/19 00:33,"161 Wilson St, New York City, NY 10001" +178838,Wired Headphones,1,11.99,03/09/19 14:03,"990 11th St, New York City, NY 10001" +178839,Wired Headphones,1,11.99,03/20/19 15:21,"971 Jackson St, New York City, NY 10001" +178840,iPhone,1,700,03/28/19 11:42,"150 10th St, Boston, MA 02215" +178840,Apple Airpods Headphones,1,150,03/28/19 11:42,"150 10th St, Boston, MA 02215" +178841,USB-C Charging Cable,2,11.95,03/29/19 06:57,"910 10th St, San Francisco, CA 94016" +178842,Apple Airpods Headphones,1,150,03/28/19 07:56,"832 Washington St, San Francisco, CA 94016" +178843,Lightning Charging Cable,1,14.95,03/16/19 01:33,"460 1st St, Boston, MA 02215" +178844,iPhone,1,700,03/12/19 13:33,"664 Chestnut St, Los Angeles, CA 90001" +178845,AA Batteries (4-pack),1,3.84,03/10/19 22:27,"20 1st St, Dallas, TX 75001" +178846,Flatscreen TV,1,300,03/13/19 23:52,"261 10th St, New York City, NY 10001" +178847,34in Ultrawide Monitor,1,379.99,03/31/19 23:13,"964 Johnson St, New York City, NY 10001" +178848,Bose SoundSport Headphones,1,99.99,03/26/19 01:24,"209 6th St, Atlanta, GA 30301" +178849,Wired Headphones,1,11.99,03/31/19 14:44,"704 Main St, San Francisco, CA 94016" +178850,AAA Batteries (4-pack),2,2.99,03/31/19 07:00,"773 Forest St, Los Angeles, CA 90001" +178851,AAA Batteries (4-pack),2,2.99,03/08/19 15:17,"757 Lincoln St, Dallas, TX 75001" +178852,Lightning Charging Cable,1,14.95,03/30/19 14:25,"836 14th St, San Francisco, CA 94016" +178853,Wired Headphones,1,11.99,03/01/19 12:08,"369 Sunset St, New York City, NY 10001" +178854,Lightning Charging Cable,2,14.95,03/12/19 14:13,"5 Hickory St, San Francisco, CA 94016" +178855,LG Dryer,1,600.0,03/17/19 09:59,"374 Hickory St, New York City, NY 10001" +178856,Apple Airpods Headphones,1,150,03/11/19 21:03,"875 Ridge St, Seattle, WA 98101" +178857,Bose SoundSport Headphones,1,99.99,03/10/19 15:32,"530 Pine St, Seattle, WA 98101" +178858,AA Batteries (4-pack),1,3.84,03/14/19 10:07,"738 6th St, Boston, MA 02215" +178859,USB-C Charging Cable,1,11.95,03/25/19 22:15,"608 12th St, Dallas, TX 75001" +178860,USB-C Charging Cable,1,11.95,03/03/19 05:22,"898 5th St, Dallas, TX 75001" +178861,Wired Headphones,1,11.99,03/05/19 17:01,"621 11th St, Seattle, WA 98101" +178862,20in Monitor,1,109.99,03/13/19 19:48,"101 Park St, San Francisco, CA 94016" +178863,Apple Airpods Headphones,1,150,03/17/19 19:50,"541 River St, San Francisco, CA 94016" +178864,AA Batteries (4-pack),1,3.84,03/28/19 19:02,"556 West St, Boston, MA 02215" +178865,AA Batteries (4-pack),1,3.84,03/06/19 14:11,"84 Cedar St, San Francisco, CA 94016" +178866,Lightning Charging Cable,1,14.95,03/08/19 14:15,"576 Jefferson St, Dallas, TX 75001" +178867,Apple Airpods Headphones,1,150,03/21/19 22:25,"998 Hickory St, San Francisco, CA 94016" +178868,Wired Headphones,1,11.99,03/19/19 20:57,"6 West St, Los Angeles, CA 90001" +178869,iPhone,1,700,03/02/19 13:18,"734 Dogwood St, New York City, NY 10001" +178870,AAA Batteries (4-pack),2,2.99,03/31/19 20:56,"99 2nd St, Dallas, TX 75001" +178871,Bose SoundSport Headphones,1,99.99,03/17/19 19:05,"755 Forest St, Portland, OR 97035" +178872,USB-C Charging Cable,1,11.95,03/12/19 21:35,"486 Johnson St, Los Angeles, CA 90001" +178873,Bose SoundSport Headphones,1,99.99,03/06/19 14:35,"855 Dogwood St, Boston, MA 02215" +178874,ThinkPad Laptop,1,999.99,03/06/19 00:23,"96 Cedar St, San Francisco, CA 94016" +178875,USB-C Charging Cable,1,11.95,03/08/19 19:44,"339 South St, New York City, NY 10001" +178876,Bose SoundSport Headphones,1,99.99,03/13/19 13:06,"725 West St, Boston, MA 02215" +178877,USB-C Charging Cable,1,11.95,03/07/19 02:15,"735 Hill St, Austin, TX 73301" +178878,Wired Headphones,1,11.99,03/21/19 10:25,"735 Wilson St, New York City, NY 10001" +178879,AAA Batteries (4-pack),1,2.99,03/08/19 23:31,"698 Hill St, San Francisco, CA 94016" +178880,AA Batteries (4-pack),1,3.84,03/27/19 04:54,"549 Maple St, Atlanta, GA 30301" +178881,Lightning Charging Cable,1,14.95,03/08/19 12:05,"554 Adams St, Dallas, TX 75001" +,,,,, +178882,Wired Headphones,1,11.99,03/12/19 14:57,"530 5th St, Los Angeles, CA 90001" +178883,Vareebadd Phone,1,400,03/06/19 10:59,"544 Park St, Austin, TX 73301" +178884,USB-C Charging Cable,1,11.95,03/01/19 19:01,"800 West St, San Francisco, CA 94016" +178885,Apple Airpods Headphones,1,150,03/15/19 20:53,"678 Sunset St, New York City, NY 10001" +178886,27in 4K Gaming Monitor,1,389.99,03/27/19 00:52,"98 Cherry St, Los Angeles, CA 90001" +178887,Bose SoundSport Headphones,1,99.99,03/10/19 21:33,"395 Spruce St, San Francisco, CA 94016" +178888,AA Batteries (4-pack),1,3.84,03/29/19 20:51,"720 Forest St, Boston, MA 02215" +178889,USB-C Charging Cable,1,11.95,03/26/19 19:35,"484 Cherry St, New York City, NY 10001" +178890,USB-C Charging Cable,2,11.95,03/21/19 15:06,"904 Spruce St, New York City, NY 10001" +178891,34in Ultrawide Monitor,1,379.99,03/14/19 15:16,"675 Wilson St, San Francisco, CA 94016" +178892,AAA Batteries (4-pack),2,2.99,03/22/19 19:03,"760 Hickory St, Los Angeles, CA 90001" +178893,Lightning Charging Cable,1,14.95,03/15/19 21:52,"863 Park St, Los Angeles, CA 90001" +178894,Wired Headphones,1,11.99,03/20/19 22:06,"286 West St, Boston, MA 02215" +178895,LG Washing Machine,1,600.0,03/23/19 12:58,"839 Park St, Portland, ME 04101" +178896,27in 4K Gaming Monitor,1,389.99,03/31/19 00:33,"983 Meadow St, Portland, OR 97035" +178897,Wired Headphones,1,11.99,03/05/19 22:43,"45 Church St, Portland, OR 97035" +178898,Apple Airpods Headphones,1,150,03/19/19 10:23,"820 Lake St, Dallas, TX 75001" +178899,Bose SoundSport Headphones,1,99.99,03/14/19 23:03,"854 Jefferson St, Seattle, WA 98101" +178900,27in FHD Monitor,1,149.99,03/17/19 12:02,"111 Hill St, Los Angeles, CA 90001" +178901,AAA Batteries (4-pack),2,2.99,03/07/19 00:15,"592 Walnut St, New York City, NY 10001" +178902,Google Phone,1,600,03/11/19 22:18,"414 Forest St, San Francisco, CA 94016" +178903,Wired Headphones,1,11.99,03/01/19 07:23,"619 10th St, Portland, OR 97035" +178904,34in Ultrawide Monitor,1,379.99,03/19/19 06:39,"136 Pine St, Seattle, WA 98101" +178905,Google Phone,1,600,03/07/19 13:04,"312 2nd St, Los Angeles, CA 90001" +178905,Wired Headphones,1,11.99,03/07/19 13:04,"312 2nd St, Los Angeles, CA 90001" +178905,Wired Headphones,1,11.99,03/07/19 13:04,"312 2nd St, Los Angeles, CA 90001" +178906,Bose SoundSport Headphones,1,99.99,03/27/19 11:07,"939 Highland St, Dallas, TX 75001" +178907,Bose SoundSport Headphones,1,99.99,03/30/19 21:12,"106 Lincoln St, New York City, NY 10001" +178908,Wired Headphones,1,11.99,03/11/19 13:03,"266 12th St, Seattle, WA 98101" +178909,Flatscreen TV,1,300,03/03/19 18:46,"12 Hickory St, Los Angeles, CA 90001" +178910,AAA Batteries (4-pack),2,2.99,03/07/19 09:47,"242 Meadow St, San Francisco, CA 94016" +178911,Bose SoundSport Headphones,1,99.99,03/25/19 12:08,"340 5th St, Atlanta, GA 30301" +178912,AAA Batteries (4-pack),1,2.99,03/17/19 21:21,"708 Jefferson St, Portland, OR 97035" +178913,Lightning Charging Cable,1,14.95,03/26/19 17:33,"147 Lake St, San Francisco, CA 94016" +178913,Vareebadd Phone,1,400,03/26/19 17:33,"147 Lake St, San Francisco, CA 94016" +178914,USB-C Charging Cable,1,11.95,03/16/19 08:33,"131 Lakeview St, Portland, OR 97035" +178915,iPhone,1,700,03/30/19 19:30,"789 Highland St, New York City, NY 10001" +178916,USB-C Charging Cable,1,11.95,03/19/19 19:00,"788 2nd St, New York City, NY 10001" +178917,27in FHD Monitor,1,149.99,03/28/19 19:35,"989 Cherry St, Atlanta, GA 30301" +178918,Lightning Charging Cable,1,14.95,03/13/19 17:18,"656 Center St, Austin, TX 73301" +178919,iPhone,1,700,03/28/19 19:30,"964 Ridge St, San Francisco, CA 94016" +178920,USB-C Charging Cable,1,11.95,03/01/19 17:53,"624 Cherry St, New York City, NY 10001" +178921,AA Batteries (4-pack),3,3.84,03/02/19 19:00,"802 Willow St, San Francisco, CA 94016" +178922,iPhone,1,700,03/19/19 19:20,"444 Maple St, Los Angeles, CA 90001" +178923,LG Washing Machine,1,600.0,03/16/19 12:18,"277 Jackson St, Dallas, TX 75001" +178924,Google Phone,1,600,03/22/19 09:02,"438 Hickory St, Dallas, TX 75001" +178925,Lightning Charging Cable,1,14.95,03/06/19 14:48,"867 Main St, New York City, NY 10001" +178926,Lightning Charging Cable,1,14.95,03/28/19 22:39,"909 Walnut St, San Francisco, CA 94016" +178927,27in 4K Gaming Monitor,1,389.99,03/31/19 19:45,"847 Sunset St, Los Angeles, CA 90001" +178928,USB-C Charging Cable,1,11.95,03/28/19 11:11,"122 Ridge St, Los Angeles, CA 90001" +178929,USB-C Charging Cable,1,11.95,03/28/19 14:18,"880 Hickory St, San Francisco, CA 94016" +178930,AA Batteries (4-pack),2,3.84,03/11/19 12:29,"839 6th St, Portland, ME 04101" +178931,Wired Headphones,1,11.99,03/19/19 17:26,"701 South St, San Francisco, CA 94016" +178932,Lightning Charging Cable,1,14.95,03/17/19 11:47,"852 West St, Atlanta, GA 30301" +,,,,, +178933,34in Ultrawide Monitor,1,379.99,03/09/19 09:14,"375 River St, Dallas, TX 75001" +178934,Wired Headphones,1,11.99,03/09/19 18:01,"360 Pine St, Seattle, WA 98101" +178935,AAA Batteries (4-pack),1,2.99,03/09/19 21:29,"219 Highland St, Atlanta, GA 30301" +178936,Flatscreen TV,1,300,03/02/19 11:46,"402 Chestnut St, San Francisco, CA 94016" +178937,ThinkPad Laptop,1,999.99,03/31/19 12:10,"524 Cedar St, Portland, OR 97035" +178938,20in Monitor,1,109.99,03/03/19 23:42,"550 Forest St, New York City, NY 10001" +178939,27in 4K Gaming Monitor,1,389.99,03/30/19 21:07,"774 12th St, Boston, MA 02215" +178940,USB-C Charging Cable,2,11.95,03/04/19 20:56,"517 10th St, Los Angeles, CA 90001" +178941,34in Ultrawide Monitor,1,379.99,03/02/19 18:26,"284 Sunset St, Boston, MA 02215" +178942,Lightning Charging Cable,1,14.95,03/19/19 13:49,"103 Willow St, Seattle, WA 98101" +178942,AA Batteries (4-pack),2,3.84,03/19/19 13:49,"103 Willow St, Seattle, WA 98101" +178943,AAA Batteries (4-pack),3,2.99,03/26/19 02:34,"510 14th St, Los Angeles, CA 90001" +178944,AAA Batteries (4-pack),1,2.99,03/02/19 11:31,"469 13th St, Boston, MA 02215" +178945,Wired Headphones,1,11.99,03/11/19 22:27,"884 Meadow St, New York City, NY 10001" +178946,Apple Airpods Headphones,1,150,03/16/19 04:12,"131 12th St, San Francisco, CA 94016" +178947,Lightning Charging Cable,1,14.95,03/02/19 15:39,"782 Hill St, Atlanta, GA 30301" +178948,27in FHD Monitor,1,149.99,03/12/19 12:28,"691 West St, San Francisco, CA 94016" +178949,27in 4K Gaming Monitor,1,389.99,03/26/19 17:16,"793 Pine St, Boston, MA 02215" +178950,Macbook Pro Laptop,1,1700,03/04/19 10:59,"393 Lakeview St, Los Angeles, CA 90001" +178951,27in FHD Monitor,1,149.99,03/26/19 12:24,"467 Main St, San Francisco, CA 94016" +178952,AA Batteries (4-pack),1,3.84,03/12/19 18:00,"596 Meadow St, New York City, NY 10001" +178953,LG Dryer,1,600.0,03/14/19 13:13,"575 13th St, Los Angeles, CA 90001" +178953,AA Batteries (4-pack),1,3.84,03/14/19 13:13,"575 13th St, Los Angeles, CA 90001" +178954,USB-C Charging Cable,1,11.95,03/19/19 13:19,"362 Hill St, San Francisco, CA 94016" +178955,AA Batteries (4-pack),2,3.84,03/07/19 21:45,"365 Dogwood St, Boston, MA 02215" +178956,iPhone,1,700,03/21/19 12:30,"291 Main St, Los Angeles, CA 90001" +178956,Wired Headphones,1,11.99,03/21/19 12:30,"291 Main St, Los Angeles, CA 90001" +178957,27in FHD Monitor,1,149.99,03/12/19 19:53,"702 Walnut St, San Francisco, CA 94016" +178958,AA Batteries (4-pack),3,3.84,03/21/19 15:08,"916 Cherry St, New York City, NY 10001" +178959,Lightning Charging Cable,1,14.95,03/11/19 21:00,"388 Pine St, Boston, MA 02215" +178960,Apple Airpods Headphones,1,150,03/12/19 17:08,"310 Spruce St, New York City, NY 10001" +178961,27in FHD Monitor,1,149.99,03/25/19 18:14,"123 Forest St, Austin, TX 73301" +178962,Lightning Charging Cable,1,14.95,03/26/19 06:10,"308 Pine St, Dallas, TX 75001" +178963,Bose SoundSport Headphones,1,99.99,03/26/19 21:01,"819 13th St, Seattle, WA 98101" +178964,Google Phone,1,600,03/04/19 19:05,"864 Lake St, Austin, TX 73301" +178965,Bose SoundSport Headphones,1,99.99,03/27/19 19:46,"434 Lakeview St, Austin, TX 73301" +178966,iPhone,1,700,03/14/19 14:33,"34 5th St, San Francisco, CA 94016" +178966,Lightning Charging Cable,1,14.95,03/14/19 14:33,"34 5th St, San Francisco, CA 94016" +178966,Apple Airpods Headphones,1,150,03/14/19 14:33,"34 5th St, San Francisco, CA 94016" +178967,27in FHD Monitor,1,149.99,03/31/19 01:44,"735 Lincoln St, San Francisco, CA 94016" +178968,27in 4K Gaming Monitor,1,389.99,03/31/19 01:29,"706 West St, San Francisco, CA 94016" +178969,USB-C Charging Cable,1,11.95,03/13/19 10:47,"929 West St, San Francisco, CA 94016" +178970,USB-C Charging Cable,1,11.95,03/12/19 19:12,"979 Cherry St, Los Angeles, CA 90001" +178971,AA Batteries (4-pack),1,3.84,03/24/19 06:33,"969 Cherry St, New York City, NY 10001" +178972,AAA Batteries (4-pack),1,2.99,03/15/19 12:28,"920 10th St, Dallas, TX 75001" +178973,Flatscreen TV,1,300,03/07/19 00:38,"228 7th St, San Francisco, CA 94016" +178974,Apple Airpods Headphones,1,150,03/03/19 15:18,"840 Meadow St, San Francisco, CA 94016" +178975,iPhone,1,700,03/27/19 12:40,"541 Lakeview St, Boston, MA 02215" +178975,Lightning Charging Cable,1,14.95,03/27/19 12:40,"541 Lakeview St, Boston, MA 02215" +178976,Apple Airpods Headphones,1,150,03/09/19 16:25,"351 Walnut St, San Francisco, CA 94016" +178977,Lightning Charging Cable,1,14.95,03/15/19 12:25,"155 11th St, San Francisco, CA 94016" +178978,AA Batteries (4-pack),2,3.84,03/25/19 13:01,"909 4th St, Portland, ME 04101" +178979,Bose SoundSport Headphones,1,99.99,03/31/19 00:58,"934 10th St, Los Angeles, CA 90001" +178980,27in FHD Monitor,1,149.99,03/08/19 18:16,"997 12th St, New York City, NY 10001" +178981,USB-C Charging Cable,1,11.95,03/09/19 16:21,"923 Lincoln St, Atlanta, GA 30301" +178982,ThinkPad Laptop,1,999.99,03/22/19 20:00,"167 Willow St, Seattle, WA 98101" +178983,Lightning Charging Cable,1,14.95,03/07/19 09:05,"257 14th St, Los Angeles, CA 90001" +178984,Bose SoundSport Headphones,1,99.99,03/19/19 12:50,"615 Lakeview St, Seattle, WA 98101" +178985,27in FHD Monitor,1,149.99,03/11/19 18:07,"266 14th St, Los Angeles, CA 90001" +178986,Lightning Charging Cable,1,14.95,03/21/19 14:39,"577 Spruce St, San Francisco, CA 94016" +178987,AA Batteries (4-pack),1,3.84,03/18/19 19:56,"778 Maple St, New York City, NY 10001" +178988,Apple Airpods Headphones,1,150,03/19/19 19:37,"533 Dogwood St, Dallas, TX 75001" +178989,Lightning Charging Cable,1,14.95,03/15/19 12:33,"279 Pine St, Portland, OR 97035" +178990,ThinkPad Laptop,1,999.99,03/07/19 15:47,"746 1st St, New York City, NY 10001" +178991,Bose SoundSport Headphones,1,99.99,03/30/19 15:30,"314 South St, Los Angeles, CA 90001" +178992,iPhone,1,700,03/03/19 11:31,"745 Spruce St, Dallas, TX 75001" +178993,Wired Headphones,1,11.99,03/31/19 21:17,"301 West St, Boston, MA 02215" +178994,Lightning Charging Cable,1,14.95,03/26/19 13:57,"840 Cedar St, Dallas, TX 75001" +178995,iPhone,1,700,03/02/19 23:26,"215 Ridge St, Austin, TX 73301" +178996,USB-C Charging Cable,1,11.95,03/10/19 14:40,"811 Center St, San Francisco, CA 94016" +178997,Apple Airpods Headphones,1,150,03/23/19 09:25,"733 12th St, San Francisco, CA 94016" +178998,AA Batteries (4-pack),1,3.84,03/01/19 13:58,"516 Jackson St, Atlanta, GA 30301" +178999,Flatscreen TV,1,300,03/25/19 21:13,"401 Church St, Seattle, WA 98101" +179000,Apple Airpods Headphones,1,150,03/11/19 10:04,"531 11th St, New York City, NY 10001" +179001,Lightning Charging Cable,1,14.95,03/19/19 20:18,"654 West St, Atlanta, GA 30301" +179002,Wired Headphones,1,11.99,03/25/19 15:10,"239 Maple St, San Francisco, CA 94016" +179003,Macbook Pro Laptop,1,1700,03/29/19 10:22,"469 Park St, Austin, TX 73301" +179004,Wired Headphones,1,11.99,03/03/19 18:25,"403 Hill St, New York City, NY 10001" +179005,Lightning Charging Cable,1,14.95,03/09/19 19:21,"240 Main St, San Francisco, CA 94016" +179006,27in FHD Monitor,1,149.99,03/13/19 16:04,"744 Cedar St, San Francisco, CA 94016" +179007,ThinkPad Laptop,1,999.99,03/14/19 17:25,"315 Cedar St, San Francisco, CA 94016" +179008,Bose SoundSport Headphones,1,99.99,03/07/19 21:30,"688 Main St, Los Angeles, CA 90001" +179009,Apple Airpods Headphones,1,150,03/09/19 06:44,"540 11th St, New York City, NY 10001" +179010,iPhone,1,700,03/25/19 08:17,"94 8th St, San Francisco, CA 94016" +179011,AAA Batteries (4-pack),3,2.99,03/19/19 22:36,"843 Hickory St, Boston, MA 02215" +179012,AA Batteries (4-pack),1,3.84,03/28/19 11:39,"973 Adams St, Los Angeles, CA 90001" +179013,Lightning Charging Cable,1,14.95,03/08/19 22:19,"4 Meadow St, Austin, TX 73301" +179014,20in Monitor,1,109.99,03/08/19 21:26,"395 Chestnut St, Atlanta, GA 30301" +179015,Apple Airpods Headphones,1,150,03/25/19 22:05,"923 Highland St, Austin, TX 73301" +179016,Macbook Pro Laptop,1,1700,03/25/19 11:08,"457 11th St, Los Angeles, CA 90001" +179017,Bose SoundSport Headphones,1,99.99,03/03/19 23:07,"895 River St, San Francisco, CA 94016" +179018,USB-C Charging Cable,1,11.95,03/26/19 16:47,"168 8th St, Boston, MA 02215" +179019,34in Ultrawide Monitor,1,379.99,03/17/19 23:11,"293 Jackson St, Portland, OR 97035" +179020,Macbook Pro Laptop,1,1700,03/19/19 15:49,"373 Hickory St, Seattle, WA 98101" +179021,Lightning Charging Cable,1,14.95,03/06/19 08:20,"115 10th St, Portland, ME 04101" +179022,Apple Airpods Headphones,2,150,03/25/19 12:33,"530 Dogwood St, Atlanta, GA 30301" +179023,AAA Batteries (4-pack),1,2.99,03/07/19 16:29,"202 Forest St, Los Angeles, CA 90001" +179024,Wired Headphones,1,11.99,03/03/19 12:31,"681 Cedar St, San Francisco, CA 94016" +179025,Google Phone,1,600,03/08/19 02:36,"589 2nd St, San Francisco, CA 94016" +179026,Lightning Charging Cable,1,14.95,03/28/19 09:29,"229 Adams St, Boston, MA 02215" +179027,ThinkPad Laptop,1,999.99,03/28/19 20:28,"259 Lincoln St, San Francisco, CA 94016" +179028,LG Washing Machine,1,600.0,03/24/19 13:43,"52 Church St, Portland, OR 97035" +179029,27in 4K Gaming Monitor,1,389.99,03/29/19 06:59,"882 2nd St, New York City, NY 10001" +179030,USB-C Charging Cable,1,11.95,03/10/19 21:43,"752 Lake St, Dallas, TX 75001" +179031,AAA Batteries (4-pack),1,2.99,03/11/19 16:54,"466 Madison St, San Francisco, CA 94016" +179032,USB-C Charging Cable,1,11.95,03/26/19 23:38,"119 Lake St, Dallas, TX 75001" +179033,AAA Batteries (4-pack),2,2.99,03/22/19 07:48,"979 11th St, San Francisco, CA 94016" +179034,Wired Headphones,1,11.99,03/01/19 09:19,"293 11th St, San Francisco, CA 94016" +179035,27in FHD Monitor,1,149.99,03/06/19 06:54,"98 7th St, San Francisco, CA 94016" +179036,AAA Batteries (4-pack),2,2.99,03/13/19 22:34,"635 Dogwood St, San Francisco, CA 94016" +179037,AA Batteries (4-pack),2,3.84,03/10/19 16:50,"387 Cherry St, Portland, OR 97035" +179038,Bose SoundSport Headphones,1,99.99,03/22/19 21:39,"304 Jefferson St, San Francisco, CA 94016" +179039,iPhone,1,700,03/16/19 18:47,"782 10th St, New York City, NY 10001" +179040,27in 4K Gaming Monitor,1,389.99,03/18/19 16:39,"472 Jefferson St, San Francisco, CA 94016" +179041,Wired Headphones,1,11.99,03/18/19 18:06,"644 Washington St, New York City, NY 10001" +179042,USB-C Charging Cable,1,11.95,03/01/19 08:00,"661 Hickory St, New York City, NY 10001" +179043,USB-C Charging Cable,1,11.95,03/19/19 14:46,"510 Willow St, Austin, TX 73301" +179044,Wired Headphones,1,11.99,03/14/19 17:39,"872 Main St, Atlanta, GA 30301" +179045,Wired Headphones,1,11.99,03/16/19 17:00,"63 12th St, Los Angeles, CA 90001" +179046,Lightning Charging Cable,1,14.95,03/03/19 10:39,"208 Wilson St, Seattle, WA 98101" +179047,AAA Batteries (4-pack),2,2.99,03/19/19 15:49,"31 Wilson St, Portland, OR 97035" +179048,Wired Headphones,1,11.99,03/15/19 05:29,"275 13th St, San Francisco, CA 94016" +179049,Google Phone,1,600,03/10/19 18:30,"351 Jefferson St, Austin, TX 73301" +179050,AA Batteries (4-pack),1,3.84,03/30/19 18:28,"629 12th St, Portland, OR 97035" +179051,Lightning Charging Cable,1,14.95,03/30/19 13:38,"820 Center St, Austin, TX 73301" +179052,Apple Airpods Headphones,1,150,03/01/19 19:16,"882 Center St, Dallas, TX 75001" +179053,USB-C Charging Cable,1,11.95,03/05/19 00:33,"634 Maple St, New York City, NY 10001" +179054,ThinkPad Laptop,1,999.99,03/06/19 18:53,"732 Madison St, Portland, ME 04101" +179055,27in FHD Monitor,1,149.99,03/20/19 21:47,"628 Meadow St, Los Angeles, CA 90001" +179056,USB-C Charging Cable,1,11.95,03/28/19 11:48,"327 13th St, New York City, NY 10001" +179057,AA Batteries (4-pack),2,3.84,03/12/19 09:31,"672 12th St, Dallas, TX 75001" +179058,ThinkPad Laptop,1,999.99,03/13/19 14:38,"792 North St, Dallas, TX 75001" +179059,27in 4K Gaming Monitor,1,389.99,03/11/19 11:46,"107 13th St, Atlanta, GA 30301" +179060,27in FHD Monitor,1,149.99,03/07/19 13:24,"112 Cherry St, Los Angeles, CA 90001" +179061,AA Batteries (4-pack),1,3.84,03/13/19 12:49,"976 Maple St, San Francisco, CA 94016" +179062,20in Monitor,1,109.99,03/29/19 18:02,"989 11th St, San Francisco, CA 94016" +179063,USB-C Charging Cable,1,11.95,03/31/19 17:02,"869 8th St, Dallas, TX 75001" +179064,Bose SoundSport Headphones,1,99.99,03/08/19 14:03,"821 Lincoln St, Atlanta, GA 30301" +179065,Apple Airpods Headphones,1,150,03/04/19 19:52,"697 Park St, Boston, MA 02215" +179066,AA Batteries (4-pack),1,3.84,03/11/19 11:55,"730 South St, Seattle, WA 98101" +179067,Apple Airpods Headphones,1,150,03/25/19 18:05,"620 5th St, San Francisco, CA 94016" +179068,USB-C Charging Cable,1,11.95,03/06/19 23:39,"669 12th St, Boston, MA 02215" +179069,AA Batteries (4-pack),1,3.84,03/28/19 19:38,"513 5th St, Boston, MA 02215" +179070,Lightning Charging Cable,1,14.95,03/11/19 15:10,"391 9th St, Portland, OR 97035" +179071,Macbook Pro Laptop,1,1700,03/09/19 18:56,"897 Main St, New York City, NY 10001" +179072,Flatscreen TV,1,300,03/27/19 17:24,"245 River St, Portland, OR 97035" +179073,Wired Headphones,1,11.99,03/21/19 17:59,"652 Lake St, Los Angeles, CA 90001" +179074,AAA Batteries (4-pack),1,2.99,03/14/19 13:29,"360 Dogwood St, Los Angeles, CA 90001" +179075,AAA Batteries (4-pack),1,2.99,03/18/19 05:03,"342 Pine St, New York City, NY 10001" +179076,27in 4K Gaming Monitor,1,389.99,03/11/19 19:48,"201 Pine St, Seattle, WA 98101" +179077,USB-C Charging Cable,1,11.95,03/24/19 12:44,"486 Ridge St, Boston, MA 02215" +179078,34in Ultrawide Monitor,1,379.99,03/18/19 16:31,"730 4th St, San Francisco, CA 94016" +179079,Wired Headphones,1,11.99,03/30/19 11:10,"303 14th St, San Francisco, CA 94016" +179080,Lightning Charging Cable,1,14.95,03/15/19 15:08,"23 River St, Atlanta, GA 30301" +179081,34in Ultrawide Monitor,1,379.99,03/15/19 20:26,"1 Elm St, San Francisco, CA 94016" +179082,Wired Headphones,1,11.99,03/20/19 21:20,"144 Church St, Los Angeles, CA 90001" +179083,AA Batteries (4-pack),1,3.84,03/01/19 20:09,"908 Sunset St, Seattle, WA 98101" +179084,Bose SoundSport Headphones,1,99.99,03/11/19 09:47,"602 Lake St, Boston, MA 02215" +179085,27in 4K Gaming Monitor,1,389.99,03/23/19 22:05,"354 7th St, New York City, NY 10001" +179086,Apple Airpods Headphones,1,150,03/24/19 18:30,"618 6th St, Los Angeles, CA 90001" +179087,AAA Batteries (4-pack),3,2.99,03/26/19 14:44,"469 Willow St, Seattle, WA 98101" +179088,iPhone,1,700,03/31/19 15:11,"97 Jefferson St, San Francisco, CA 94016" +179088,Lightning Charging Cable,1,14.95,03/31/19 15:11,"97 Jefferson St, San Francisco, CA 94016" +179089,34in Ultrawide Monitor,1,379.99,03/22/19 12:08,"387 North St, Seattle, WA 98101" +179090,Lightning Charging Cable,1,14.95,03/08/19 11:01,"7 South St, Atlanta, GA 30301" +179091,Lightning Charging Cable,1,14.95,03/10/19 17:54,"375 Hickory St, San Francisco, CA 94016" +179092,iPhone,1,700,03/25/19 13:12,"962 Washington St, Seattle, WA 98101" +179093,USB-C Charging Cable,1,11.95,03/28/19 17:45,"706 Highland St, Portland, ME 04101" +179094,Lightning Charging Cable,1,14.95,03/23/19 13:23,"409 Cedar St, Seattle, WA 98101" +179095,Bose SoundSport Headphones,1,99.99,03/31/19 20:47,"767 North St, Austin, TX 73301" +179096,AAA Batteries (4-pack),2,2.99,03/05/19 17:12,"842 Jackson St, New York City, NY 10001" +179097,Bose SoundSport Headphones,1,99.99,03/31/19 18:04,"415 South St, New York City, NY 10001" +179098,AAA Batteries (4-pack),2,2.99,03/20/19 12:24,"349 North St, Portland, OR 97035" +179099,Google Phone,1,600,03/02/19 08:27,"560 13th St, New York City, NY 10001" +179100,USB-C Charging Cable,2,11.95,03/16/19 09:35,"481 Cedar St, San Francisco, CA 94016" +179101,Wired Headphones,1,11.99,03/05/19 11:35,"284 River St, Atlanta, GA 30301" +179102,34in Ultrawide Monitor,1,379.99,03/21/19 12:57,"270 Highland St, San Francisco, CA 94016" +179103,27in FHD Monitor,1,149.99,03/28/19 22:26,"474 5th St, Boston, MA 02215" +179104,Vareebadd Phone,1,400,03/24/19 14:49,"684 Walnut St, Los Angeles, CA 90001" +179105,AAA Batteries (4-pack),1,2.99,03/13/19 20:35,"250 14th St, Austin, TX 73301" +179106,Wired Headphones,1,11.99,03/30/19 21:39,"790 7th St, Dallas, TX 75001" +179107,USB-C Charging Cable,1,11.95,03/04/19 19:39,"152 Chestnut St, Los Angeles, CA 90001" +179108,Apple Airpods Headphones,1,150,03/27/19 20:54,"845 Hill St, Atlanta, GA 30301" +179109,Vareebadd Phone,1,400,03/11/19 16:08,"44 Jackson St, Los Angeles, CA 90001" +179110,AA Batteries (4-pack),1,3.84,03/06/19 09:42,"727 Meadow St, Boston, MA 02215" +179111,USB-C Charging Cable,1,11.95,03/30/19 22:32,"333 8th St, San Francisco, CA 94016" +179112,AAA Batteries (4-pack),1,2.99,03/03/19 09:13,"899 1st St, Los Angeles, CA 90001" +179113,Wired Headphones,1,11.99,03/16/19 08:21,"955 4th St, Los Angeles, CA 90001" +179114,20in Monitor,1,109.99,03/24/19 22:49,"884 Lincoln St, Boston, MA 02215" +179115,Wired Headphones,1,11.99,03/03/19 12:14,"947 Willow St, New York City, NY 10001" +179116,ThinkPad Laptop,1,999.99,03/26/19 19:07,"122 Ridge St, Los Angeles, CA 90001" +179117,USB-C Charging Cable,1,11.95,03/16/19 20:59,"170 12th St, Dallas, TX 75001" +179118,Vareebadd Phone,1,400,03/25/19 11:33,"917 10th St, Los Angeles, CA 90001" +179119,Flatscreen TV,1,300,03/20/19 22:08,"363 11th St, Atlanta, GA 30301" +179120,USB-C Charging Cable,1,11.95,03/10/19 17:14,"942 Maple St, San Francisco, CA 94016" +179121,USB-C Charging Cable,1,11.95,03/01/19 22:50,"185 Pine St, Seattle, WA 98101" +179122,34in Ultrawide Monitor,1,379.99,03/11/19 19:05,"260 Willow St, San Francisco, CA 94016" +179123,Flatscreen TV,1,300,03/23/19 16:11,"603 Lakeview St, Seattle, WA 98101" +179124,AA Batteries (4-pack),2,3.84,03/18/19 14:01,"2 2nd St, Los Angeles, CA 90001" +179125,Apple Airpods Headphones,1,150,03/18/19 12:28,"627 Adams St, Portland, OR 97035" +179126,Vareebadd Phone,1,400,03/16/19 18:51,"506 Washington St, Los Angeles, CA 90001" +179127,AA Batteries (4-pack),3,3.84,03/31/19 18:28,"11 14th St, Austin, TX 73301" +179128,Bose SoundSport Headphones,1,99.99,03/03/19 17:42,"389 Pine St, Portland, ME 04101" +179129,Lightning Charging Cable,1,14.95,03/22/19 18:36,"761 7th St, New York City, NY 10001" +179130,iPhone,1,700,03/11/19 23:01,"547 4th St, San Francisco, CA 94016" +179131,Wired Headphones,1,11.99,03/05/19 12:04,"494 Main St, New York City, NY 10001" +179132,Lightning Charging Cable,1,14.95,03/31/19 15:27,"655 Lakeview St, Dallas, TX 75001" +179133,Bose SoundSport Headphones,1,99.99,03/14/19 13:28,"168 5th St, Los Angeles, CA 90001" +179134,AA Batteries (4-pack),1,3.84,03/01/19 20:26,"286 Forest St, Atlanta, GA 30301" +179135,AA Batteries (4-pack),2,3.84,03/18/19 12:45,"624 Meadow St, San Francisco, CA 94016" +179136,Lightning Charging Cable,1,14.95,03/18/19 02:09,"568 West St, New York City, NY 10001" +179137,27in 4K Gaming Monitor,1,389.99,03/15/19 18:43,"553 13th St, Austin, TX 73301" +179138,AA Batteries (4-pack),1,3.84,03/05/19 18:24,"875 Adams St, Portland, OR 97035" +179139,LG Washing Machine,1,600.0,03/10/19 16:50,"301 Jackson St, Boston, MA 02215" +179140,Wired Headphones,1,11.99,03/18/19 12:22,"122 Washington St, Dallas, TX 75001" +179141,27in FHD Monitor,1,149.99,03/04/19 08:47,"988 4th St, Portland, OR 97035" +179142,Bose SoundSport Headphones,1,99.99,03/10/19 10:57,"586 Wilson St, New York City, NY 10001" +179143,Apple Airpods Headphones,1,150,03/31/19 12:09,"444 Maple St, Dallas, TX 75001" +179144,USB-C Charging Cable,1,11.95,03/13/19 18:19,"403 Church St, Los Angeles, CA 90001" +179145,Apple Airpods Headphones,1,150,03/02/19 09:45,"717 Church St, San Francisco, CA 94016" +179146,ThinkPad Laptop,1,999.99,03/18/19 10:54,"551 Washington St, New York City, NY 10001" +179147,AAA Batteries (4-pack),1,2.99,03/07/19 13:47,"716 Ridge St, Portland, OR 97035" +179148,AA Batteries (4-pack),2,3.84,03/02/19 22:55,"841 Sunset St, Los Angeles, CA 90001" +179149,AA Batteries (4-pack),1,3.84,03/09/19 17:53,"556 Pine St, Seattle, WA 98101" +179150,AAA Batteries (4-pack),1,2.99,03/03/19 15:38,"978 Lakeview St, New York City, NY 10001" +179151,USB-C Charging Cable,1,11.95,03/26/19 07:56,"772 North St, San Francisco, CA 94016" +179152,AAA Batteries (4-pack),1,2.99,03/05/19 21:34,"422 Hill St, Portland, OR 97035" +179153,34in Ultrawide Monitor,1,379.99,03/27/19 19:35,"294 Maple St, Portland, OR 97035" +179154,Flatscreen TV,2,300,03/28/19 10:09,"851 Dogwood St, San Francisco, CA 94016" +179155,AA Batteries (4-pack),1,3.84,03/15/19 23:52,"800 Center St, Austin, TX 73301" +179156,27in FHD Monitor,1,149.99,03/25/19 01:55,"831 10th St, Boston, MA 02215" +179157,ThinkPad Laptop,1,999.99,03/07/19 22:20,"591 Walnut St, Boston, MA 02215" +179158,USB-C Charging Cable,1,11.95,03/30/19 12:16,"605 Highland St, Boston, MA 02215" +179159,Flatscreen TV,1,300,03/09/19 02:19,"770 8th St, San Francisco, CA 94016" +179160,Bose SoundSport Headphones,1,99.99,03/16/19 17:59,"740 Park St, Dallas, TX 75001" +179161,27in FHD Monitor,1,149.99,03/25/19 21:40,"397 Johnson St, Seattle, WA 98101" +179162,Lightning Charging Cable,1,14.95,03/01/19 18:38,"619 7th St, Atlanta, GA 30301" +179163,AAA Batteries (4-pack),2,2.99,03/16/19 07:16,"628 4th St, New York City, NY 10001" +179164,AAA Batteries (4-pack),1,2.99,03/04/19 18:45,"502 Forest St, Los Angeles, CA 90001" +179165,Lightning Charging Cable,1,14.95,03/26/19 20:11,"565 Washington St, Austin, TX 73301" +179166,AAA Batteries (4-pack),1,2.99,03/18/19 01:24,"84 Chestnut St, Los Angeles, CA 90001" +179167,Apple Airpods Headphones,1,150,03/10/19 12:12,"678 Spruce St, San Francisco, CA 94016" +179168,Lightning Charging Cable,1,14.95,03/24/19 16:41,"740 Willow St, San Francisco, CA 94016" +179169,Apple Airpods Headphones,1,150,03/17/19 20:07,"14 Johnson St, San Francisco, CA 94016" +179170,LG Dryer,1,600.0,03/19/19 15:38,"416 Lake St, San Francisco, CA 94016" +179171,AAA Batteries (4-pack),1,2.99,03/23/19 18:28,"432 Park St, Los Angeles, CA 90001" +179172,Apple Airpods Headphones,1,150,03/28/19 00:59,"501 South St, San Francisco, CA 94016" +179173,Lightning Charging Cable,1,14.95,03/28/19 13:30,"352 Lakeview St, Dallas, TX 75001" +179174,Google Phone,1,600,03/25/19 14:58,"582 Ridge St, Los Angeles, CA 90001" +179174,Wired Headphones,1,11.99,03/25/19 14:58,"582 Ridge St, Los Angeles, CA 90001" +179175,LG Washing Machine,1,600.0,03/12/19 11:28,"94 Hill St, New York City, NY 10001" +179176,AAA Batteries (4-pack),1,2.99,03/30/19 17:46,"379 5th St, San Francisco, CA 94016" +179177,Apple Airpods Headphones,1,150,03/04/19 12:31,"780 Hickory St, San Francisco, CA 94016" +179178,iPhone,1,700,03/04/19 22:04,"273 Dogwood St, San Francisco, CA 94016" +179179,USB-C Charging Cable,1,11.95,03/31/19 22:39,"351 7th St, San Francisco, CA 94016" +179179,AA Batteries (4-pack),5,3.84,03/31/19 22:39,"351 7th St, San Francisco, CA 94016" +179180,AA Batteries (4-pack),2,3.84,03/10/19 20:42,"458 Forest St, Atlanta, GA 30301" +179181,Lightning Charging Cable,1,14.95,03/11/19 12:09,"831 Park St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +179182,AAA Batteries (4-pack),1,2.99,03/13/19 12:02,"734 South St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +179183,USB-C Charging Cable,1,11.95,03/10/19 13:17,"794 10th St, Boston, MA 02215" +179184,Lightning Charging Cable,1,14.95,03/11/19 10:39,"901 Willow St, Austin, TX 73301" +179185,Apple Airpods Headphones,1,150,03/08/19 11:55,"307 12th St, Los Angeles, CA 90001" +179186,Wired Headphones,1,11.99,03/20/19 08:11,"142 Cherry St, New York City, NY 10001" +179187,Lightning Charging Cable,1,14.95,03/09/19 08:33,"206 Lake St, Boston, MA 02215" +179188,Bose SoundSport Headphones,1,99.99,03/15/19 20:22,"258 5th St, Portland, OR 97035" +179189,Lightning Charging Cable,1,14.95,03/26/19 00:24,"558 Elm St, New York City, NY 10001" +179190,AA Batteries (4-pack),1,3.84,03/17/19 11:03,"309 Lincoln St, Seattle, WA 98101" +179191,34in Ultrawide Monitor,1,379.99,03/09/19 15:30,"697 West St, Los Angeles, CA 90001" +179192,Lightning Charging Cable,1,14.95,03/29/19 20:50,"263 Elm St, New York City, NY 10001" +179193,27in FHD Monitor,1,149.99,03/14/19 18:47,"804 Cherry St, Seattle, WA 98101" +179194,ThinkPad Laptop,1,999.99,03/20/19 13:46,"161 Ridge St, Austin, TX 73301" +179195,AAA Batteries (4-pack),1,2.99,03/28/19 15:17,"176 2nd St, Dallas, TX 75001" +179196,27in 4K Gaming Monitor,1,389.99,03/18/19 11:53,"389 Cherry St, San Francisco, CA 94016" +179197,iPhone,1,700,03/28/19 18:31,"27 Chestnut St, Los Angeles, CA 90001" +179197,Lightning Charging Cable,1,14.95,03/28/19 18:31,"27 Chestnut St, Los Angeles, CA 90001" +179198,34in Ultrawide Monitor,1,379.99,03/25/19 17:21,"724 Cedar St, San Francisco, CA 94016" +179199,Wired Headphones,1,11.99,03/16/19 10:28,"488 4th St, Los Angeles, CA 90001" +179200,iPhone,1,700,03/05/19 20:09,"534 Johnson St, San Francisco, CA 94016" +179201,Lightning Charging Cable,1,14.95,03/20/19 14:28,"603 Maple St, Los Angeles, CA 90001" +179202,Lightning Charging Cable,1,14.95,03/07/19 20:37,"711 West St, San Francisco, CA 94016" +179203,Bose SoundSport Headphones,1,99.99,03/06/19 05:12,"651 Sunset St, San Francisco, CA 94016" +179204,AAA Batteries (4-pack),1,2.99,03/24/19 14:22,"42 Cherry St, Los Angeles, CA 90001" +179205,Apple Airpods Headphones,1,150,03/11/19 21:21,"128 South St, Boston, MA 02215" +179206,AA Batteries (4-pack),3,3.84,03/05/19 15:51,"724 South St, New York City, NY 10001" +179207,ThinkPad Laptop,1,999.99,03/09/19 21:38,"124 9th St, New York City, NY 10001" +179208,Apple Airpods Headphones,1,150,03/15/19 09:56,"525 Johnson St, San Francisco, CA 94016" +179209,AAA Batteries (4-pack),1,2.99,03/19/19 11:39,"820 9th St, Los Angeles, CA 90001" +179210,Apple Airpods Headphones,1,150,03/09/19 14:56,"53 Ridge St, San Francisco, CA 94016" +179211,20in Monitor,1,109.99,03/13/19 17:01,"555 14th St, Austin, TX 73301" +179212,20in Monitor,1,109.99,03/15/19 20:38,"111 Hill St, Boston, MA 02215" +179213,Wired Headphones,1,11.99,03/19/19 10:23,"207 Adams St, Atlanta, GA 30301" +179214,Apple Airpods Headphones,1,150,03/16/19 14:59,"373 Adams St, New York City, NY 10001" +179215,USB-C Charging Cable,1,11.95,03/28/19 08:49,"148 North St, Portland, ME 04101" +179216,USB-C Charging Cable,1,11.95,03/21/19 17:51,"548 5th St, New York City, NY 10001" +179217,AAA Batteries (4-pack),2,2.99,03/26/19 19:50,"87 Wilson St, Los Angeles, CA 90001" +179218,Wired Headphones,1,11.99,03/20/19 18:35,"197 1st St, San Francisco, CA 94016" +179219,Vareebadd Phone,1,400,03/31/19 08:39,"560 14th St, San Francisco, CA 94016" +179220,Bose SoundSport Headphones,1,99.99,03/27/19 22:28,"967 Cedar St, New York City, NY 10001" +179221,Wired Headphones,1,11.99,03/24/19 21:52,"719 8th St, New York City, NY 10001" +179222,AA Batteries (4-pack),1,3.84,03/24/19 20:07,"167 5th St, Boston, MA 02215" +179223,Wired Headphones,1,11.99,03/19/19 10:20,"103 Meadow St, New York City, NY 10001" +179224,AA Batteries (4-pack),2,3.84,03/21/19 10:06,"952 Spruce St, Dallas, TX 75001" +179225,AA Batteries (4-pack),1,3.84,03/01/19 22:42,"186 Cherry St, New York City, NY 10001" +179226,Lightning Charging Cable,1,14.95,03/01/19 14:57,"148 Jefferson St, Los Angeles, CA 90001" +179227,Apple Airpods Headphones,1,150,03/24/19 17:26,"902 9th St, New York City, NY 10001" +179228,AA Batteries (4-pack),1,3.84,03/17/19 14:16,"812 Cherry St, New York City, NY 10001" +179229,AAA Batteries (4-pack),1,2.99,03/25/19 08:08,"245 Maple St, Atlanta, GA 30301" +179230,iPhone,1,700,03/23/19 15:05,"376 8th St, San Francisco, CA 94016" +179230,Wired Headphones,1,11.99,03/23/19 15:05,"376 8th St, San Francisco, CA 94016" +179231,Lightning Charging Cable,1,14.95,03/11/19 15:10,"554 Johnson St, New York City, NY 10001" +179232,iPhone,1,700,03/20/19 16:39,"235 Washington St, Atlanta, GA 30301" +179233,Wired Headphones,1,11.99,03/10/19 20:19,"772 West St, New York City, NY 10001" +179234,USB-C Charging Cable,1,11.95,03/24/19 17:15,"178 5th St, Dallas, TX 75001" +179235,34in Ultrawide Monitor,1,379.99,03/23/19 17:45,"718 10th St, Seattle, WA 98101" +179236,AAA Batteries (4-pack),1,2.99,03/29/19 17:15,"173 Spruce St, Los Angeles, CA 90001" +179237,Wired Headphones,1,11.99,03/25/19 16:34,"170 7th St, Boston, MA 02215" +179238,ThinkPad Laptop,1,999.99,03/12/19 15:50,"540 Cherry St, San Francisco, CA 94016" +179239,USB-C Charging Cable,1,11.95,03/02/19 05:50,"81 Wilson St, Austin, TX 73301" +179240,Bose SoundSport Headphones,1,99.99,03/02/19 12:45,"154 Elm St, Portland, OR 97035" +179241,Apple Airpods Headphones,1,150,03/13/19 14:44,"232 Main St, Los Angeles, CA 90001" +179242,Lightning Charging Cable,1,14.95,03/21/19 00:46,"620 Dogwood St, Seattle, WA 98101" +179243,Apple Airpods Headphones,1,150,03/30/19 19:51,"794 West St, Atlanta, GA 30301" +179244,Google Phone,1,600,03/30/19 11:21,"385 14th St, Atlanta, GA 30301" +179245,Bose SoundSport Headphones,1,99.99,03/10/19 17:15,"722 Forest St, San Francisco, CA 94016" +179246,Apple Airpods Headphones,1,150,03/07/19 13:32,"475 12th St, Atlanta, GA 30301" +179247,Flatscreen TV,1,300,03/08/19 00:04,"255 2nd St, San Francisco, CA 94016" +179248,Wired Headphones,1,11.99,03/23/19 18:17,"504 Cherry St, New York City, NY 10001" +179249,Lightning Charging Cable,1,14.95,03/11/19 00:42,"121 11th St, San Francisco, CA 94016" +179250,34in Ultrawide Monitor,1,379.99,03/03/19 18:22,"290 Jackson St, New York City, NY 10001" +179251,Bose SoundSport Headphones,1,99.99,03/03/19 09:06,"940 Lincoln St, San Francisco, CA 94016" +179252,AA Batteries (4-pack),1,3.84,03/18/19 12:03,"89 13th St, Los Angeles, CA 90001" +179253,27in FHD Monitor,1,149.99,03/06/19 15:09,"630 12th St, San Francisco, CA 94016" +179254,Bose SoundSport Headphones,1,99.99,03/29/19 10:08,"831 Jefferson St, New York City, NY 10001" +179255,AA Batteries (4-pack),1,3.84,03/25/19 20:03,"330 West St, New York City, NY 10001" +179256,27in 4K Gaming Monitor,2,389.99,03/21/19 21:27,"444 Main St, Portland, OR 97035" +179257,Apple Airpods Headphones,1,150,03/12/19 19:15,"875 Willow St, Los Angeles, CA 90001" +179258,USB-C Charging Cable,1,11.95,03/14/19 08:49,"207 West St, Boston, MA 02215" +179259,Apple Airpods Headphones,1,150,03/21/19 23:09,"924 Hickory St, San Francisco, CA 94016" +179260,AA Batteries (4-pack),1,3.84,03/29/19 22:04,"939 13th St, San Francisco, CA 94016" +179261,iPhone,1,700,03/10/19 20:45,"857 Lincoln St, San Francisco, CA 94016" +179262,ThinkPad Laptop,1,999.99,03/04/19 18:43,"257 Center St, Dallas, TX 75001" +179263,Bose SoundSport Headphones,1,99.99,03/11/19 19:23,"467 Jackson St, New York City, NY 10001" +179264,20in Monitor,1,109.99,03/14/19 09:23,"317 Ridge St, Seattle, WA 98101" +179265,ThinkPad Laptop,1,999.99,03/15/19 14:51,"913 Cherry St, San Francisco, CA 94016" +179266,USB-C Charging Cable,1,11.95,03/24/19 13:50,"324 Lake St, San Francisco, CA 94016" +179267,AAA Batteries (4-pack),3,2.99,03/09/19 17:54,"994 North St, Dallas, TX 75001" +179268,Lightning Charging Cable,1,14.95,03/30/19 16:08,"969 8th St, San Francisco, CA 94016" +179269,AAA Batteries (4-pack),1,2.99,03/13/19 10:54,"321 Sunset St, Los Angeles, CA 90001" +179270,USB-C Charging Cable,1,11.95,03/15/19 15:52,"206 North St, San Francisco, CA 94016" +179271,Macbook Pro Laptop,1,1700,03/28/19 21:57,"437 7th St, San Francisco, CA 94016" +179272,20in Monitor,1,109.99,03/14/19 19:22,"477 4th St, San Francisco, CA 94016" +179273,27in FHD Monitor,1,149.99,03/24/19 11:36,"825 Johnson St, Austin, TX 73301" +179274,Wired Headphones,1,11.99,03/07/19 16:09,"894 Johnson St, San Francisco, CA 94016" +179275,Wired Headphones,1,11.99,03/16/19 22:42,"467 9th St, Boston, MA 02215" +179276,27in FHD Monitor,1,149.99,03/20/19 09:51,"542 10th St, San Francisco, CA 94016" +179277,Apple Airpods Headphones,1,150,03/16/19 23:46,"67 Chestnut St, Dallas, TX 75001" +179278,Flatscreen TV,1,300,03/15/19 22:55,"825 6th St, Dallas, TX 75001" +179279,Lightning Charging Cable,1,14.95,03/19/19 09:57,"798 Johnson St, Portland, OR 97035" +179280,Lightning Charging Cable,1,14.95,03/26/19 12:25,"360 Forest St, San Francisco, CA 94016" +179281,USB-C Charging Cable,1,11.95,03/11/19 12:51,"706 Hickory St, San Francisco, CA 94016" +179282,Bose SoundSport Headphones,1,99.99,03/07/19 10:32,"19 9th St, Los Angeles, CA 90001" +179283,AAA Batteries (4-pack),1,2.99,03/19/19 05:48,"26 Madison St, New York City, NY 10001" +179284,Bose SoundSport Headphones,1,99.99,03/17/19 15:27,"150 Johnson St, Boston, MA 02215" +179285,27in FHD Monitor,2,149.99,03/10/19 08:49,"184 2nd St, Los Angeles, CA 90001" +179286,27in FHD Monitor,1,149.99,03/29/19 17:32,"514 North St, San Francisco, CA 94016" +179287,Lightning Charging Cable,1,14.95,03/28/19 15:25,"974 Hickory St, San Francisco, CA 94016" +179288,Lightning Charging Cable,1,14.95,03/22/19 19:34,"529 Lakeview St, San Francisco, CA 94016" +179289,ThinkPad Laptop,1,999.99,03/11/19 20:32,"786 South St, San Francisco, CA 94016" +179290,AA Batteries (4-pack),1,3.84,03/07/19 02:16,"992 Cherry St, Boston, MA 02215" +179291,Bose SoundSport Headphones,1,99.99,03/26/19 18:27,"973 Hill St, Los Angeles, CA 90001" +179292,Wired Headphones,1,11.99,03/03/19 10:09,"204 Walnut St, Austin, TX 73301" +179293,USB-C Charging Cable,1,11.95,03/10/19 12:23,"34 13th St, Los Angeles, CA 90001" +179294,USB-C Charging Cable,2,11.95,03/21/19 13:02,"251 2nd St, Los Angeles, CA 90001" +179295,Bose SoundSport Headphones,1,99.99,03/17/19 15:50,"958 Dogwood St, Seattle, WA 98101" +179296,Wired Headphones,1,11.99,03/15/19 12:44,"129 Wilson St, Los Angeles, CA 90001" +179297,USB-C Charging Cable,2,11.95,03/13/19 23:47,"930 4th St, Los Angeles, CA 90001" +179298,Wired Headphones,1,11.99,03/28/19 14:38,"534 Hill St, San Francisco, CA 94016" +179299,Apple Airpods Headphones,1,150,03/22/19 21:59,"93 Madison St, Dallas, TX 75001" +179300,Lightning Charging Cable,1,14.95,03/03/19 21:19,"213 Forest St, Los Angeles, CA 90001" +179301,Wired Headphones,1,11.99,03/03/19 00:55,"826 North St, New York City, NY 10001" +179302,AA Batteries (4-pack),1,3.84,03/08/19 00:07,"458 6th St, New York City, NY 10001" +179303,Google Phone,1,600,03/30/19 21:38,"882 West St, Seattle, WA 98101" +179304,Flatscreen TV,1,300,03/31/19 21:31,"329 South St, San Francisco, CA 94016" +179305,27in 4K Gaming Monitor,1,389.99,03/19/19 09:59,"449 Maple St, New York City, NY 10001" +179306,Bose SoundSport Headphones,1,99.99,03/09/19 20:27,"855 South St, Seattle, WA 98101" +179307,Bose SoundSport Headphones,1,99.99,03/06/19 17:21,"326 Main St, San Francisco, CA 94016" +179308,Apple Airpods Headphones,1,150,03/07/19 11:23,"483 Chestnut St, San Francisco, CA 94016" +179309,AA Batteries (4-pack),1,3.84,03/22/19 06:31,"178 12th St, New York City, NY 10001" +179310,Wired Headphones,1,11.99,03/09/19 10:54,"80 8th St, Boston, MA 02215" +179311,AAA Batteries (4-pack),1,2.99,03/20/19 16:04,"932 13th St, Los Angeles, CA 90001" +179312,USB-C Charging Cable,1,11.95,03/05/19 18:06,"257 Jackson St, Los Angeles, CA 90001" +179313,27in 4K Gaming Monitor,1,389.99,03/17/19 08:00,"879 6th St, San Francisco, CA 94016" +179314,Google Phone,1,600,03/25/19 18:48,"778 Elm St, Los Angeles, CA 90001" +179314,Wired Headphones,1,11.99,03/25/19 18:48,"778 Elm St, Los Angeles, CA 90001" +179315,Wired Headphones,1,11.99,03/04/19 09:24,"63 Jackson St, San Francisco, CA 94016" +179316,USB-C Charging Cable,1,11.95,03/18/19 15:10,"739 Jackson St, San Francisco, CA 94016" +179316,USB-C Charging Cable,1,11.95,03/18/19 15:10,"739 Jackson St, San Francisco, CA 94016" +179317,Lightning Charging Cable,1,14.95,03/19/19 17:56,"138 River St, Portland, OR 97035" +179318,AAA Batteries (4-pack),1,2.99,03/26/19 13:07,"240 2nd St, New York City, NY 10001" +179319,Wired Headphones,1,11.99,03/15/19 16:59,"940 Willow St, San Francisco, CA 94016" +179320,Apple Airpods Headphones,1,150,03/04/19 17:13,"274 Spruce St, Atlanta, GA 30301" +179321,AA Batteries (4-pack),3,3.84,03/19/19 03:18,"805 North St, Boston, MA 02215" +179322,Google Phone,1,600,03/11/19 18:27,"688 North St, Dallas, TX 75001" +179323,AA Batteries (4-pack),1,3.84,03/05/19 15:19,"939 Jefferson St, San Francisco, CA 94016" +179324,Apple Airpods Headphones,1,150,03/20/19 08:34,"316 Sunset St, San Francisco, CA 94016" +179325,Apple Airpods Headphones,1,150,03/03/19 13:00,"43 10th St, San Francisco, CA 94016" +179326,AAA Batteries (4-pack),1,2.99,03/12/19 16:53,"433 Lincoln St, Los Angeles, CA 90001" +179327,USB-C Charging Cable,1,11.95,03/18/19 09:18,"223 Hickory St, Boston, MA 02215" +179328,AA Batteries (4-pack),2,3.84,03/23/19 23:56,"220 Washington St, Austin, TX 73301" +179329,Apple Airpods Headphones,1,150,03/06/19 22:54,"174 Washington St, San Francisco, CA 94016" +179330,Bose SoundSport Headphones,1,99.99,03/10/19 20:16,"450 Lakeview St, Atlanta, GA 30301" +179331,AAA Batteries (4-pack),1,2.99,03/02/19 12:09,"924 Chestnut St, New York City, NY 10001" +179332,27in 4K Gaming Monitor,1,389.99,03/05/19 07:53,"826 Ridge St, San Francisco, CA 94016" +,,,,, +179333,Google Phone,1,600,03/02/19 14:40,"308 Forest St, San Francisco, CA 94016" +179334,AA Batteries (4-pack),2,3.84,03/04/19 11:21,"869 Jefferson St, Seattle, WA 98101" +179335,Macbook Pro Laptop,1,1700,03/18/19 10:08,"729 Sunset St, San Francisco, CA 94016" +179336,USB-C Charging Cable,1,11.95,03/29/19 05:32,"559 Adams St, New York City, NY 10001" +179337,Bose SoundSport Headphones,1,99.99,03/29/19 21:22,"876 Dogwood St, Seattle, WA 98101" +179338,AAA Batteries (4-pack),1,2.99,03/01/19 18:52,"319 Meadow St, Seattle, WA 98101" +179339,Apple Airpods Headphones,1,150,03/28/19 12:33,"995 South St, Dallas, TX 75001" +179340,27in FHD Monitor,1,149.99,03/23/19 18:50,"406 Sunset St, Portland, OR 97035" +179341,LG Washing Machine,1,600.0,03/20/19 22:07,"445 Spruce St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +,,,,, +179342,Bose SoundSport Headphones,1,99.99,03/08/19 00:29,"834 8th St, Los Angeles, CA 90001" +179343,27in FHD Monitor,1,149.99,03/09/19 19:58,"619 Maple St, New York City, NY 10001" +179344,AAA Batteries (4-pack),1,2.99,03/07/19 15:59,"730 Meadow St, San Francisco, CA 94016" +179345,AA Batteries (4-pack),1,3.84,03/13/19 13:09,"780 10th St, San Francisco, CA 94016" +179345,AA Batteries (4-pack),2,3.84,03/13/19 13:09,"780 10th St, San Francisco, CA 94016" +179346,Lightning Charging Cable,1,14.95,03/22/19 10:41,"783 Maple St, Portland, OR 97035" +179347,USB-C Charging Cable,1,11.95,03/06/19 22:56,"134 Meadow St, Dallas, TX 75001" +179348,USB-C Charging Cable,1,11.95,03/29/19 21:06,"231 Main St, San Francisco, CA 94016" +179349,LG Washing Machine,1,600.0,03/25/19 08:10,"442 Adams St, Seattle, WA 98101" +179350,Bose SoundSport Headphones,1,99.99,03/30/19 22:19,"462 Jefferson St, Dallas, TX 75001" +179351,Google Phone,1,600,03/01/19 20:19,"12 Highland St, San Francisco, CA 94016" +179351,USB-C Charging Cable,1,11.95,03/01/19 20:19,"12 Highland St, San Francisco, CA 94016" +179352,Wired Headphones,1,11.99,03/18/19 15:36,"661 1st St, Portland, OR 97035" +179353,20in Monitor,1,109.99,03/10/19 18:54,"799 4th St, New York City, NY 10001" +179354,ThinkPad Laptop,1,999.99,03/24/19 09:02,"370 Lakeview St, Boston, MA 02215" +179355,Wired Headphones,1,11.99,03/29/19 23:55,"673 Lake St, Los Angeles, CA 90001" +179356,Apple Airpods Headphones,1,150,03/15/19 14:03,"438 West St, Los Angeles, CA 90001" +179357,Bose SoundSport Headphones,1,99.99,03/04/19 10:06,"954 Pine St, Seattle, WA 98101" +179357,Lightning Charging Cable,1,14.95,03/04/19 10:06,"954 Pine St, Seattle, WA 98101" +179358,AAA Batteries (4-pack),1,2.99,03/08/19 23:39,"641 2nd St, Dallas, TX 75001" +179359,AA Batteries (4-pack),3,3.84,03/28/19 10:33,"74 Dogwood St, Boston, MA 02215" +179360,ThinkPad Laptop,1,999.99,03/07/19 01:39,"56 Main St, New York City, NY 10001" +179361,AA Batteries (4-pack),2,3.84,03/31/19 18:08,"911 7th St, Portland, OR 97035" +179362,AAA Batteries (4-pack),2,2.99,03/17/19 12:08,"19 South St, New York City, NY 10001" +179363,AAA Batteries (4-pack),2,2.99,03/04/19 14:03,"697 8th St, New York City, NY 10001" +179364,Bose SoundSport Headphones,1,99.99,03/22/19 19:56,"547 8th St, Boston, MA 02215" +179365,AAA Batteries (4-pack),1,2.99,03/27/19 10:33,"656 Chestnut St, Boston, MA 02215" +179366,Vareebadd Phone,1,400,03/07/19 09:15,"421 Highland St, San Francisco, CA 94016" +179367,Lightning Charging Cable,1,14.95,03/12/19 21:10,"558 Meadow St, Dallas, TX 75001" +179368,Wired Headphones,1,11.99,03/26/19 18:27,"341 11th St, Dallas, TX 75001" +179369,AAA Batteries (4-pack),2,2.99,03/28/19 21:18,"474 Ridge St, New York City, NY 10001" +179370,Flatscreen TV,1,300,03/08/19 01:47,"305 10th St, Atlanta, GA 30301" +179371,Apple Airpods Headphones,1,150,03/29/19 19:53,"722 Hickory St, San Francisco, CA 94016" +179372,USB-C Charging Cable,1,11.95,03/14/19 10:56,"279 Sunset St, Atlanta, GA 30301" +179373,AAA Batteries (4-pack),2,2.99,03/18/19 11:03,"249 Park St, Atlanta, GA 30301" +179374,USB-C Charging Cable,1,11.95,03/30/19 17:45,"129 Hickory St, Seattle, WA 98101" +179375,Lightning Charging Cable,1,14.95,03/20/19 20:28,"907 6th St, Boston, MA 02215" +179376,Lightning Charging Cable,1,14.95,03/26/19 21:42,"773 Cherry St, Boston, MA 02215" +179377,AA Batteries (4-pack),2,3.84,03/16/19 22:18,"663 Johnson St, Atlanta, GA 30301" +179378,20in Monitor,1,109.99,03/29/19 18:59,"183 Madison St, Boston, MA 02215" +179379,Apple Airpods Headphones,1,150,03/18/19 23:00,"927 Pine St, San Francisco, CA 94016" +179380,Bose SoundSport Headphones,1,99.99,03/23/19 20:55,"837 8th St, Los Angeles, CA 90001" +179381,AAA Batteries (4-pack),1,2.99,03/13/19 06:39,"234 Hickory St, Atlanta, GA 30301" +179382,USB-C Charging Cable,1,11.95,03/18/19 07:49,"170 Hickory St, San Francisco, CA 94016" +179383,27in 4K Gaming Monitor,1,389.99,03/11/19 22:52,"821 Maple St, New York City, NY 10001" +179384,27in FHD Monitor,1,149.99,03/24/19 13:27,"223 Washington St, New York City, NY 10001" +179385,27in FHD Monitor,1,149.99,03/19/19 21:08,"715 Adams St, Austin, TX 73301" +179386,AA Batteries (4-pack),2,3.84,03/20/19 17:21,"523 Spruce St, New York City, NY 10001" +179387,Lightning Charging Cable,1,14.95,03/27/19 15:27,"32 Lincoln St, Atlanta, GA 30301" +179388,AA Batteries (4-pack),1,3.84,03/04/19 22:08,"354 Spruce St, New York City, NY 10001" +179389,Google Phone,1,600,03/07/19 10:33,"104 Spruce St, Portland, OR 97035" +179390,USB-C Charging Cable,1,11.95,03/19/19 16:45,"642 6th St, San Francisco, CA 94016" +179391,USB-C Charging Cable,1,11.95,03/03/19 21:20,"532 Johnson St, San Francisco, CA 94016" +179392,Apple Airpods Headphones,1,150,03/05/19 11:08,"454 7th St, New York City, NY 10001" +179393,Lightning Charging Cable,1,14.95,03/09/19 15:39,"686 2nd St, San Francisco, CA 94016" +179394,Google Phone,1,600,03/29/19 22:08,"686 8th St, Atlanta, GA 30301" +179395,34in Ultrawide Monitor,1,379.99,03/16/19 15:13,"656 Church St, Los Angeles, CA 90001" +179396,20in Monitor,1,109.99,03/10/19 00:02,"909 1st St, San Francisco, CA 94016" +179397,Wired Headphones,1,11.99,03/19/19 14:46,"184 Jackson St, San Francisco, CA 94016" +179398,Wired Headphones,1,11.99,03/03/19 13:30,"575 Wilson St, Seattle, WA 98101" +179399,Bose SoundSport Headphones,1,99.99,03/27/19 09:13,"42 1st St, Los Angeles, CA 90001" +179400,AAA Batteries (4-pack),1,2.99,03/13/19 17:44,"294 Highland St, Atlanta, GA 30301" +179401,AAA Batteries (4-pack),3,2.99,03/07/19 23:43,"117 10th St, San Francisco, CA 94016" +179402,Wired Headphones,1,11.99,03/14/19 15:55,"574 9th St, Portland, OR 97035" +179403,Wired Headphones,1,11.99,03/17/19 10:17,"165 Park St, Boston, MA 02215" +179404,Lightning Charging Cable,1,14.95,03/06/19 17:59,"954 Lake St, New York City, NY 10001" +179405,AAA Batteries (4-pack),1,2.99,03/01/19 12:56,"609 Park St, Boston, MA 02215" +179406,34in Ultrawide Monitor,1,379.99,03/05/19 16:34,"873 Jackson St, New York City, NY 10001" +179407,AA Batteries (4-pack),3,3.84,03/22/19 18:39,"268 Madison St, San Francisco, CA 94016" +179408,USB-C Charging Cable,1,11.95,03/09/19 09:18,"979 Church St, Seattle, WA 98101" +179409,20in Monitor,1,109.99,03/23/19 17:37,"849 Adams St, Seattle, WA 98101" +179410,Macbook Pro Laptop,1,1700,03/14/19 22:09,"249 13th St, San Francisco, CA 94016" +179411,Bose SoundSport Headphones,1,99.99,03/26/19 17:01,"814 Meadow St, Los Angeles, CA 90001" +179412,Lightning Charging Cable,1,14.95,03/17/19 17:58,"373 2nd St, Los Angeles, CA 90001" +179413,34in Ultrawide Monitor,1,379.99,03/19/19 17:42,"626 12th St, Seattle, WA 98101" +179414,Lightning Charging Cable,1,14.95,03/10/19 07:20,"632 12th St, Boston, MA 02215" +179415,Apple Airpods Headphones,1,150,03/14/19 15:16,"476 14th St, Los Angeles, CA 90001" +179416,AA Batteries (4-pack),1,3.84,03/20/19 10:21,"971 6th St, San Francisco, CA 94016" +179417,20in Monitor,1,109.99,03/11/19 21:20,"951 Chestnut St, San Francisco, CA 94016" +179418,Wired Headphones,1,11.99,03/21/19 18:57,"512 14th St, Boston, MA 02215" +179419,Apple Airpods Headphones,1,150,03/10/19 04:30,"148 2nd St, Los Angeles, CA 90001" +179420,Wired Headphones,1,11.99,03/18/19 19:30,"166 Adams St, New York City, NY 10001" +179421,AA Batteries (4-pack),2,3.84,03/23/19 19:04,"516 Willow St, Boston, MA 02215" +179422,Wired Headphones,1,11.99,03/27/19 12:59,"490 Highland St, Seattle, WA 98101" +179423,20in Monitor,1,109.99,03/19/19 00:21,"312 1st St, San Francisco, CA 94016" +179424,AAA Batteries (4-pack),1,2.99,03/13/19 19:53,"840 River St, Boston, MA 02215" +179425,34in Ultrawide Monitor,1,379.99,03/03/19 19:12,"906 Elm St, Los Angeles, CA 90001" +179426,34in Ultrawide Monitor,1,379.99,03/06/19 12:32,"892 2nd St, Austin, TX 73301" +179427,iPhone,1,700,03/05/19 12:34,"501 Pine St, New York City, NY 10001" +179427,Wired Headphones,1,11.99,03/05/19 12:34,"501 Pine St, New York City, NY 10001" +179428,Wired Headphones,1,11.99,03/20/19 12:17,"782 Cherry St, Seattle, WA 98101" +179429,AA Batteries (4-pack),1,3.84,03/04/19 11:18,"291 South St, Seattle, WA 98101" +179430,Apple Airpods Headphones,1,150,03/13/19 17:43,"688 Jefferson St, Portland, ME 04101" +179431,Wired Headphones,1,11.99,03/30/19 18:55,"785 Meadow St, San Francisco, CA 94016" +179432,Apple Airpods Headphones,1,150,03/26/19 15:50,"113 Willow St, New York City, NY 10001" +179433,Apple Airpods Headphones,1,150,03/29/19 16:17,"98 Lakeview St, San Francisco, CA 94016" +179434,USB-C Charging Cable,1,11.95,03/10/19 19:04,"375 12th St, Los Angeles, CA 90001" +179435,Wired Headphones,1,11.99,03/09/19 14:01,"751 South St, New York City, NY 10001" +179436,AA Batteries (4-pack),2,3.84,03/03/19 04:10,"439 Dogwood St, New York City, NY 10001" +179437,AA Batteries (4-pack),1,3.84,03/09/19 05:43,"462 Maple St, Boston, MA 02215" +179438,Apple Airpods Headphones,1,150,03/26/19 16:50,"145 Meadow St, Boston, MA 02215" +179439,Apple Airpods Headphones,1,150,03/31/19 18:42,"137 11th St, San Francisco, CA 94016" +179440,Lightning Charging Cable,1,14.95,03/30/19 17:17,"24 Madison St, Los Angeles, CA 90001" +179441,Wired Headphones,1,11.99,03/16/19 17:10,"744 River St, San Francisco, CA 94016" +179442,AA Batteries (4-pack),1,3.84,03/06/19 07:53,"659 Pine St, New York City, NY 10001" +179443,Apple Airpods Headphones,1,150,03/23/19 10:51,"213 Church St, Los Angeles, CA 90001" +179444,Apple Airpods Headphones,1,150,03/24/19 14:14,"426 Cedar St, Boston, MA 02215" +179445,ThinkPad Laptop,1,999.99,03/07/19 07:52,"259 Church St, Portland, ME 04101" +179446,USB-C Charging Cable,1,11.95,03/03/19 06:44,"407 Park St, Los Angeles, CA 90001" +179447,Lightning Charging Cable,1,14.95,03/17/19 22:06,"560 Park St, New York City, NY 10001" +179448,AA Batteries (4-pack),1,3.84,03/10/19 09:12,"308 11th St, New York City, NY 10001" +179449,AA Batteries (4-pack),1,3.84,03/21/19 18:35,"586 South St, San Francisco, CA 94016" +179450,iPhone,1,700,03/08/19 22:18,"855 Washington St, San Francisco, CA 94016" +179451,AAA Batteries (4-pack),1,2.99,03/17/19 12:22,"265 Washington St, Dallas, TX 75001" +179452,AAA Batteries (4-pack),1,2.99,03/16/19 21:02,"777 Main St, Los Angeles, CA 90001" +179453,20in Monitor,1,109.99,03/31/19 07:05,"704 West St, New York City, NY 10001" +179454,USB-C Charging Cable,1,11.95,03/13/19 09:16,"265 Park St, Portland, OR 97035" +179455,USB-C Charging Cable,1,11.95,03/02/19 20:19,"552 4th St, San Francisco, CA 94016" +179456,USB-C Charging Cable,1,11.95,03/27/19 11:48,"280 Meadow St, San Francisco, CA 94016" +179457,Flatscreen TV,1,300,03/09/19 18:02,"461 North St, Austin, TX 73301" +179458,Apple Airpods Headphones,1,150,03/05/19 14:40,"741 Church St, San Francisco, CA 94016" +179459,AA Batteries (4-pack),1,3.84,03/29/19 13:44,"323 13th St, New York City, NY 10001" +179460,Wired Headphones,1,11.99,03/21/19 16:01,"702 6th St, Portland, OR 97035" +179461,AAA Batteries (4-pack),2,2.99,03/08/19 09:11,"711 Hill St, San Francisco, CA 94016" +179462,Wired Headphones,1,11.99,03/08/19 12:29,"761 Cherry St, San Francisco, CA 94016" +179463,USB-C Charging Cable,1,11.95,03/02/19 14:12,"559 Center St, Los Angeles, CA 90001" +179464,USB-C Charging Cable,1,11.95,03/25/19 10:33,"616 5th St, Portland, OR 97035" +179465,27in FHD Monitor,1,149.99,03/02/19 21:28,"985 River St, Dallas, TX 75001" +179466,Wired Headphones,1,11.99,03/12/19 01:20,"790 Pine St, San Francisco, CA 94016" +179467,AAA Batteries (4-pack),2,2.99,03/11/19 20:24,"579 Cedar St, Los Angeles, CA 90001" +179468,AA Batteries (4-pack),2,3.84,03/04/19 11:18,"100 Washington St, San Francisco, CA 94016" +179469,AAA Batteries (4-pack),1,2.99,03/11/19 22:29,"143 Meadow St, Seattle, WA 98101" +179470,Apple Airpods Headphones,1,150,03/06/19 15:09,"131 Washington St, San Francisco, CA 94016" +179471,Lightning Charging Cable,1,14.95,03/03/19 09:40,"999 8th St, Dallas, TX 75001" +179471,AA Batteries (4-pack),2,3.84,03/03/19 09:40,"999 8th St, Dallas, TX 75001" +179472,Apple Airpods Headphones,1,150,03/12/19 14:43,"989 Elm St, Portland, OR 97035" +179473,AAA Batteries (4-pack),1,2.99,03/05/19 00:27,"509 Forest St, Atlanta, GA 30301" +179474,27in 4K Gaming Monitor,1,389.99,03/24/19 19:33,"547 Ridge St, Boston, MA 02215" +179475,AAA Batteries (4-pack),1,2.99,03/14/19 12:07,"850 Sunset St, New York City, NY 10001" +179476,AA Batteries (4-pack),1,3.84,03/01/19 20:44,"480 West St, Los Angeles, CA 90001" +179477,27in 4K Gaming Monitor,1,389.99,03/30/19 19:57,"913 South St, San Francisco, CA 94016" +179478,AAA Batteries (4-pack),2,2.99,03/03/19 16:18,"15 9th St, San Francisco, CA 94016" +179479,Lightning Charging Cable,1,14.95,03/11/19 23:46,"131 10th St, New York City, NY 10001" +179480,iPhone,1,700,03/16/19 13:35,"125 Forest St, San Francisco, CA 94016" +179480,Apple Airpods Headphones,1,150,03/16/19 13:35,"125 Forest St, San Francisco, CA 94016" +179481,Lightning Charging Cable,1,14.95,03/27/19 17:16,"827 Lincoln St, Los Angeles, CA 90001" +179482,Wired Headphones,1,11.99,03/27/19 13:44,"909 Johnson St, Los Angeles, CA 90001" +179483,Wired Headphones,1,11.99,03/03/19 14:49,"718 Johnson St, Boston, MA 02215" +,,,,, +179484,ThinkPad Laptop,1,999.99,03/17/19 23:42,"921 13th St, San Francisco, CA 94016" +179485,AAA Batteries (4-pack),3,2.99,03/02/19 19:56,"583 Hickory St, Los Angeles, CA 90001" +179486,Lightning Charging Cable,1,14.95,03/31/19 19:33,"574 12th St, Los Angeles, CA 90001" +179487,Bose SoundSport Headphones,1,99.99,03/20/19 17:19,"174 Lincoln St, Boston, MA 02215" +179488,USB-C Charging Cable,1,11.95,03/24/19 11:43,"991 Dogwood St, Austin, TX 73301" +179489,Lightning Charging Cable,2,14.95,03/13/19 18:58,"898 1st St, Los Angeles, CA 90001" +179490,AA Batteries (4-pack),1,3.84,03/06/19 19:20,"808 8th St, Portland, OR 97035" +179491,Lightning Charging Cable,1,14.95,03/09/19 12:56,"27 River St, Austin, TX 73301" +179492,Lightning Charging Cable,1,14.95,03/18/19 15:04,"927 13th St, Seattle, WA 98101" +179493,USB-C Charging Cable,1,11.95,03/28/19 20:28,"868 Cherry St, Dallas, TX 75001" +179494,Bose SoundSport Headphones,1,99.99,03/07/19 11:59,"528 Willow St, Dallas, TX 75001" +179495,Lightning Charging Cable,1,14.95,03/10/19 21:26,"161 Pine St, Dallas, TX 75001" +179496,Lightning Charging Cable,1,14.95,03/05/19 12:58,"573 Center St, Dallas, TX 75001" +179497,USB-C Charging Cable,2,11.95,03/05/19 11:50,"506 Lake St, Los Angeles, CA 90001" +179498,Apple Airpods Headphones,1,150,03/21/19 20:10,"225 West St, Seattle, WA 98101" +179499,Google Phone,1,600,03/08/19 21:07,"121 5th St, Portland, OR 97035" +179499,USB-C Charging Cable,1,11.95,03/08/19 21:07,"121 5th St, Portland, OR 97035" +179500,Google Phone,1,600,03/22/19 07:04,"629 11th St, San Francisco, CA 94016" +179501,AAA Batteries (4-pack),2,2.99,03/08/19 00:28,"707 6th St, Atlanta, GA 30301" +179502,Google Phone,1,600,03/21/19 20:56,"767 Lincoln St, Boston, MA 02215" +179503,34in Ultrawide Monitor,1,379.99,03/31/19 12:57,"832 Main St, Seattle, WA 98101" +179504,AA Batteries (4-pack),2,3.84,03/11/19 11:00,"533 Lake St, San Francisco, CA 94016" +179505,ThinkPad Laptop,1,999.99,03/28/19 13:44,"765 Ridge St, New York City, NY 10001" +179506,USB-C Charging Cable,1,11.95,03/30/19 04:16,"979 Highland St, Los Angeles, CA 90001" +179507,Lightning Charging Cable,1,14.95,03/11/19 12:34,"664 Center St, Dallas, TX 75001" +179508,Google Phone,1,600,03/12/19 18:17,"795 Cherry St, Los Angeles, CA 90001" +179509,AA Batteries (4-pack),2,3.84,03/01/19 14:55,"396 Pine St, Portland, OR 97035" +179510,AAA Batteries (4-pack),1,2.99,03/13/19 19:05,"781 Ridge St, Portland, OR 97035" +179511,USB-C Charging Cable,1,11.95,03/03/19 22:09,"458 Hickory St, New York City, NY 10001" +179512,AA Batteries (4-pack),2,3.84,03/06/19 14:11,"958 Meadow St, Dallas, TX 75001" +179513,AAA Batteries (4-pack),1,2.99,03/30/19 10:03,"398 12th St, New York City, NY 10001" +179514,ThinkPad Laptop,1,999.99,03/06/19 13:28,"596 Pine St, Los Angeles, CA 90001" +179515,USB-C Charging Cable,1,11.95,03/15/19 23:26,"632 Main St, New York City, NY 10001" +179516,iPhone,1,700,03/11/19 22:48,"105 2nd St, San Francisco, CA 94016" +179517,Flatscreen TV,1,300,03/03/19 23:54,"407 Meadow St, Atlanta, GA 30301" +179518,Flatscreen TV,1,300,03/03/19 18:31,"565 Maple St, New York City, NY 10001" +179519,Bose SoundSport Headphones,1,99.99,03/26/19 07:55,"858 Sunset St, Seattle, WA 98101" +179520,AAA Batteries (4-pack),1,2.99,03/20/19 14:47,"233 Cedar St, San Francisco, CA 94016" +179521,ThinkPad Laptop,1,999.99,03/04/19 18:48,"606 South St, Austin, TX 73301" +179522,27in FHD Monitor,1,149.99,03/21/19 11:49,"782 Park St, Los Angeles, CA 90001" +179523,Bose SoundSport Headphones,1,99.99,03/30/19 15:30,"27 River St, Los Angeles, CA 90001" +179524,34in Ultrawide Monitor,1,379.99,03/02/19 19:06,"570 13th St, Seattle, WA 98101" +179525,AAA Batteries (4-pack),1,2.99,03/13/19 14:41,"63 Sunset St, Seattle, WA 98101" +179526,iPhone,1,700,03/05/19 18:16,"75 Highland St, Portland, ME 04101" +179527,27in FHD Monitor,1,149.99,03/09/19 16:37,"432 12th St, Los Angeles, CA 90001" +179528,USB-C Charging Cable,1,11.95,03/27/19 16:11,"94 Lincoln St, San Francisco, CA 94016" +179529,Lightning Charging Cable,1,14.95,03/31/19 13:07,"349 5th St, Portland, OR 97035" +179530,AA Batteries (4-pack),2,3.84,03/10/19 15:46,"988 Cedar St, Dallas, TX 75001" +179531,Apple Airpods Headphones,1,150,03/29/19 15:55,"125 2nd St, New York City, NY 10001" +179532,Wired Headphones,1,11.99,03/02/19 20:14,"992 Washington St, San Francisco, CA 94016" +179533,AAA Batteries (4-pack),2,2.99,03/31/19 19:43,"417 Dogwood St, San Francisco, CA 94016" +179534,Bose SoundSport Headphones,1,99.99,03/22/19 12:12,"35 4th St, New York City, NY 10001" +179535,34in Ultrawide Monitor,1,379.99,03/07/19 10:22,"84 Dogwood St, Dallas, TX 75001" +179536,Google Phone,1,600,03/10/19 10:42,"930 9th St, Boston, MA 02215" +179537,AAA Batteries (4-pack),1,2.99,03/03/19 22:40,"807 Church St, Los Angeles, CA 90001" +179538,27in 4K Gaming Monitor,1,389.99,03/23/19 17:15,"291 Hickory St, Dallas, TX 75001" +179539,Flatscreen TV,1,300,03/02/19 12:11,"325 1st St, Boston, MA 02215" +179540,AAA Batteries (4-pack),1,2.99,03/16/19 19:38,"221 Washington St, San Francisco, CA 94016" +179541,Apple Airpods Headphones,1,150,03/17/19 21:07,"156 2nd St, Boston, MA 02215" +179542,20in Monitor,1,109.99,03/12/19 11:53,"871 Highland St, Boston, MA 02215" +179543,Lightning Charging Cable,2,14.95,03/09/19 18:49,"626 South St, Portland, ME 04101" +179543,USB-C Charging Cable,1,11.95,03/09/19 18:49,"626 South St, Portland, ME 04101" +179544,AA Batteries (4-pack),1,3.84,03/29/19 11:37,"372 Jackson St, San Francisco, CA 94016" +179545,27in FHD Monitor,1,149.99,03/11/19 14:19,"620 6th St, Los Angeles, CA 90001" +179546,Wired Headphones,1,11.99,03/12/19 09:42,"202 12th St, San Francisco, CA 94016" +179547,AAA Batteries (4-pack),1,2.99,03/14/19 07:28,"558 Cedar St, San Francisco, CA 94016" +179548,AAA Batteries (4-pack),2,2.99,03/13/19 14:35,"441 Park St, Boston, MA 02215" +179549,Bose SoundSport Headphones,1,99.99,03/07/19 18:02,"238 Ridge St, Dallas, TX 75001" +179550,AA Batteries (4-pack),3,3.84,03/10/19 19:51,"319 Cherry St, New York City, NY 10001" +179551,Bose SoundSport Headphones,1,99.99,03/20/19 19:34,"180 Center St, New York City, NY 10001" +179552,Bose SoundSport Headphones,1,99.99,03/22/19 10:30,"255 Washington St, Atlanta, GA 30301" +179553,Vareebadd Phone,1,400,03/08/19 11:23,"134 Highland St, Portland, OR 97035" +179554,AAA Batteries (4-pack),1,2.99,03/26/19 17:41,"517 12th St, San Francisco, CA 94016" +179555,AAA Batteries (4-pack),1,2.99,03/25/19 09:29,"662 Johnson St, Atlanta, GA 30301" +179556,AA Batteries (4-pack),1,3.84,03/06/19 10:53,"682 1st St, Dallas, TX 75001" +179557,Google Phone,1,600,03/15/19 12:36,"697 Hill St, Dallas, TX 75001" +179558,34in Ultrawide Monitor,1,379.99,03/10/19 14:14,"712 Chestnut St, San Francisco, CA 94016" +179559,Lightning Charging Cable,1,14.95,03/28/19 14:05,"771 Cherry St, Los Angeles, CA 90001" +179560,Lightning Charging Cable,1,14.95,03/16/19 15:03,"763 Chestnut St, Portland, OR 97035" +179561,Vareebadd Phone,1,400,03/22/19 14:32,"968 South St, San Francisco, CA 94016" +179562,Lightning Charging Cable,1,14.95,03/25/19 10:32,"107 Walnut St, San Francisco, CA 94016" +179563,AA Batteries (4-pack),1,3.84,03/08/19 23:43,"718 Jefferson St, New York City, NY 10001" +179564,AA Batteries (4-pack),1,3.84,03/01/19 09:32,"207 Lincoln St, Atlanta, GA 30301" +179565,AAA Batteries (4-pack),6,2.99,03/27/19 08:21,"255 Park St, New York City, NY 10001" +179566,AAA Batteries (4-pack),1,2.99,03/22/19 14:43,"78 Lake St, San Francisco, CA 94016" +179567,USB-C Charging Cable,1,11.95,03/27/19 14:20,"264 6th St, San Francisco, CA 94016" +179568,Google Phone,1,600,03/04/19 18:58,"852 6th St, New York City, NY 10001" +179568,Wired Headphones,1,11.99,03/04/19 18:58,"852 6th St, New York City, NY 10001" +179569,27in FHD Monitor,1,149.99,03/20/19 20:54,"434 Meadow St, New York City, NY 10001" +179570,Flatscreen TV,1,300,03/17/19 23:32,"514 Lakeview St, New York City, NY 10001" +179571,AAA Batteries (4-pack),3,2.99,03/16/19 14:47,"604 Hickory St, San Francisco, CA 94016" +179572,Flatscreen TV,2,300,03/16/19 18:00,"175 Jefferson St, Boston, MA 02215" +179573,27in FHD Monitor,1,149.99,03/17/19 12:43,"750 Lincoln St, Atlanta, GA 30301" +179574,Wired Headphones,1,11.99,03/23/19 19:06,"33 12th St, Los Angeles, CA 90001" +179575,AA Batteries (4-pack),1,3.84,03/25/19 15:33,"995 6th St, Austin, TX 73301" +179576,Google Phone,1,600,03/20/19 19:54,"616 Meadow St, Los Angeles, CA 90001" +179577,USB-C Charging Cable,1,11.95,03/19/19 18:46,"883 10th St, Los Angeles, CA 90001" +179578,Lightning Charging Cable,1,14.95,03/04/19 22:29,"17 Pine St, New York City, NY 10001" +179579,Google Phone,1,600,03/25/19 16:41,"79 Highland St, Seattle, WA 98101" +179580,Wired Headphones,1,11.99,03/12/19 13:49,"597 Forest St, Atlanta, GA 30301" +179581,Lightning Charging Cable,1,14.95,03/07/19 18:11,"505 Main St, Los Angeles, CA 90001" +179582,AAA Batteries (4-pack),1,2.99,03/14/19 19:49,"295 Hill St, Los Angeles, CA 90001" +179583,AAA Batteries (4-pack),3,2.99,03/15/19 22:18,"948 10th St, San Francisco, CA 94016" +179584,AA Batteries (4-pack),1,3.84,03/21/19 13:29,"105 Lakeview St, New York City, NY 10001" +179585,Lightning Charging Cable,1,14.95,03/30/19 22:02,"626 Lake St, Los Angeles, CA 90001" +179586,Bose SoundSport Headphones,1,99.99,03/04/19 19:55,"234 7th St, Boston, MA 02215" +179587,Wired Headphones,1,11.99,03/06/19 13:15,"261 Jefferson St, Seattle, WA 98101" +179588,Macbook Pro Laptop,1,1700,03/01/19 20:24,"995 10th St, Los Angeles, CA 90001" +179589,USB-C Charging Cable,1,11.95,03/13/19 19:59,"828 Church St, Atlanta, GA 30301" +179590,AAA Batteries (4-pack),2,2.99,03/12/19 17:10,"192 Cedar St, San Francisco, CA 94016" +179591,ThinkPad Laptop,1,999.99,03/10/19 14:15,"339 Park St, Atlanta, GA 30301" +179592,AA Batteries (4-pack),2,3.84,03/28/19 09:38,"589 4th St, Seattle, WA 98101" +179593,Lightning Charging Cable,1,14.95,03/17/19 19:16,"160 4th St, Los Angeles, CA 90001" +179594,AAA Batteries (4-pack),2,2.99,03/20/19 17:04,"557 Washington St, Los Angeles, CA 90001" +179595,USB-C Charging Cable,1,11.95,03/10/19 09:58,"707 Pine St, Seattle, WA 98101" +179596,AAA Batteries (4-pack),1,2.99,03/29/19 16:24,"384 Lakeview St, Los Angeles, CA 90001" +179597,iPhone,1,700,03/02/19 08:34,"241 Maple St, San Francisco, CA 94016" +179598,AAA Batteries (4-pack),1,2.99,03/06/19 15:43,"672 Meadow St, San Francisco, CA 94016" +179599,AA Batteries (4-pack),2,3.84,03/05/19 09:19,"828 West St, Los Angeles, CA 90001" +179600,Bose SoundSport Headphones,1,99.99,03/31/19 10:30,"951 Madison St, Boston, MA 02215" +179601,20in Monitor,1,109.99,03/02/19 20:43,"545 1st St, Seattle, WA 98101" +179602,Bose SoundSport Headphones,1,99.99,03/01/19 18:24,"946 9th St, Atlanta, GA 30301" +179603,AAA Batteries (4-pack),1,2.99,03/05/19 16:47,"640 West St, Dallas, TX 75001" +179603,AA Batteries (4-pack),1,3.84,03/05/19 16:47,"640 West St, Dallas, TX 75001" +179604,Lightning Charging Cable,1,14.95,03/15/19 13:39,"195 Hill St, Boston, MA 02215" +179605,USB-C Charging Cable,1,11.95,03/26/19 10:09,"116 Meadow St, San Francisco, CA 94016" +179606,Apple Airpods Headphones,1,150,03/30/19 23:58,"50 Adams St, Seattle, WA 98101" +179607,Lightning Charging Cable,1,14.95,03/21/19 23:16,"650 12th St, San Francisco, CA 94016" +179608,Apple Airpods Headphones,1,150,03/22/19 16:34,"756 Highland St, New York City, NY 10001" +179609,AA Batteries (4-pack),1,3.84,03/06/19 22:50,"30 Jackson St, Seattle, WA 98101" +179610,USB-C Charging Cable,1,11.95,03/08/19 19:46,"950 5th St, San Francisco, CA 94016" +179611,Wired Headphones,1,11.99,03/29/19 21:25,"226 Church St, Boston, MA 02215" +179612,34in Ultrawide Monitor,1,379.99,03/08/19 17:28,"377 Highland St, Atlanta, GA 30301" +179613,iPhone,1,700,03/29/19 16:55,"598 5th St, Los Angeles, CA 90001" +179613,Wired Headphones,1,11.99,03/29/19 16:55,"598 5th St, Los Angeles, CA 90001" +179614,Apple Airpods Headphones,1,150,03/18/19 17:06,"878 West St, Boston, MA 02215" +179615,34in Ultrawide Monitor,1,379.99,03/19/19 21:44,"697 Lakeview St, New York City, NY 10001" +179616,Bose SoundSport Headphones,1,99.99,03/25/19 12:05,"375 Johnson St, Dallas, TX 75001" +179617,AAA Batteries (4-pack),2,2.99,03/04/19 12:07,"525 Center St, New York City, NY 10001" +179618,Wired Headphones,1,11.99,03/06/19 21:47,"876 River St, Seattle, WA 98101" +179619,AAA Batteries (4-pack),2,2.99,03/20/19 20:07,"948 Lakeview St, Dallas, TX 75001" +179620,Apple Airpods Headphones,1,150,03/11/19 16:10,"569 6th St, New York City, NY 10001" +179621,ThinkPad Laptop,1,999.99,03/13/19 10:08,"71 Chestnut St, Los Angeles, CA 90001" +179622,USB-C Charging Cable,1,11.95,03/29/19 17:37,"823 Dogwood St, Los Angeles, CA 90001" +179623,AAA Batteries (4-pack),1,2.99,03/04/19 20:25,"568 13th St, San Francisco, CA 94016" +179624,Macbook Pro Laptop,1,1700,03/18/19 09:59,"603 Willow St, Dallas, TX 75001" +179625,USB-C Charging Cable,2,11.95,03/06/19 17:49,"845 Church St, Austin, TX 73301" +179626,Lightning Charging Cable,1,14.95,03/12/19 17:57,"368 Washington St, New York City, NY 10001" +179627,USB-C Charging Cable,1,11.95,03/05/19 12:25,"153 Pine St, Seattle, WA 98101" +179628,27in 4K Gaming Monitor,1,389.99,03/19/19 23:37,"302 Park St, San Francisco, CA 94016" +179629,AAA Batteries (4-pack),1,2.99,03/26/19 00:11,"913 12th St, Los Angeles, CA 90001" +179630,AA Batteries (4-pack),4,3.84,03/25/19 16:46,"544 Dogwood St, Los Angeles, CA 90001" +179631,Lightning Charging Cable,1,14.95,03/02/19 11:09,"286 Elm St, Atlanta, GA 30301" +179632,27in 4K Gaming Monitor,1,389.99,03/13/19 09:29,"725 Jefferson St, New York City, NY 10001" +179633,Wired Headphones,1,11.99,03/02/19 21:50,"538 Lakeview St, Portland, OR 97035" +179634,Wired Headphones,1,11.99,03/15/19 14:21,"67 Lake St, San Francisco, CA 94016" +179635,34in Ultrawide Monitor,1,379.99,03/26/19 13:33,"810 Wilson St, San Francisco, CA 94016" +179636,USB-C Charging Cable,1,11.95,03/07/19 07:25,"565 10th St, New York City, NY 10001" +179637,USB-C Charging Cable,1,11.95,03/27/19 20:18,"836 Chestnut St, San Francisco, CA 94016" +179638,Vareebadd Phone,1,400,03/25/19 17:00,"210 South St, Atlanta, GA 30301" +179639,AAA Batteries (4-pack),2,2.99,03/24/19 21:32,"128 Lake St, New York City, NY 10001" +179640,AAA Batteries (4-pack),1,2.99,03/11/19 19:15,"829 Hill St, Austin, TX 73301" +179641,AA Batteries (4-pack),2,3.84,03/19/19 09:59,"547 12th St, New York City, NY 10001" +179642,Lightning Charging Cable,1,14.95,03/20/19 19:30,"874 Park St, Los Angeles, CA 90001" +179643,27in FHD Monitor,1,149.99,03/24/19 20:07,"266 14th St, New York City, NY 10001" +179644,AA Batteries (4-pack),2,3.84,03/10/19 13:35,"943 Ridge St, San Francisco, CA 94016" +179645,Bose SoundSport Headphones,1,99.99,03/05/19 05:58,"13 Lincoln St, Los Angeles, CA 90001" +179646,Bose SoundSport Headphones,1,99.99,03/19/19 00:47,"981 Sunset St, Atlanta, GA 30301" +179647,USB-C Charging Cable,1,11.95,03/22/19 10:07,"146 Forest St, San Francisco, CA 94016" +179648,AA Batteries (4-pack),1,3.84,03/04/19 12:03,"32 Lake St, New York City, NY 10001" +179649,USB-C Charging Cable,1,11.95,03/09/19 08:27,"603 Main St, New York City, NY 10001" +179650,Bose SoundSport Headphones,1,99.99,03/22/19 21:35,"419 Main St, Atlanta, GA 30301" +179651,20in Monitor,1,109.99,03/23/19 12:51,"19 Ridge St, Seattle, WA 98101" +179652,Wired Headphones,1,11.99,03/10/19 13:15,"985 Hickory St, Atlanta, GA 30301" +179653,USB-C Charging Cable,1,11.95,03/15/19 09:44,"112 Walnut St, Atlanta, GA 30301" +179654,USB-C Charging Cable,2,11.95,03/05/19 18:14,"367 11th St, Dallas, TX 75001" +179654,AA Batteries (4-pack),2,3.84,03/05/19 18:14,"367 11th St, Dallas, TX 75001" +179655,AAA Batteries (4-pack),1,2.99,03/13/19 09:18,"929 9th St, Atlanta, GA 30301" +179656,AA Batteries (4-pack),2,3.84,03/02/19 23:58,"521 8th St, Boston, MA 02215" +179657,iPhone,1,700,03/05/19 21:40,"361 Washington St, Boston, MA 02215" +179658,20in Monitor,1,109.99,03/26/19 14:06,"344 Sunset St, Austin, TX 73301" +179659,Wired Headphones,1,11.99,03/26/19 00:34,"249 Cedar St, Seattle, WA 98101" +179660,20in Monitor,1,109.99,03/01/19 15:17,"401 Adams St, Dallas, TX 75001" +179661,Lightning Charging Cable,1,14.95,03/25/19 17:21,"142 Cherry St, Los Angeles, CA 90001" +179662,AA Batteries (4-pack),1,3.84,03/12/19 18:00,"512 10th St, New York City, NY 10001" +179663,AA Batteries (4-pack),2,3.84,03/25/19 22:47,"447 Church St, Los Angeles, CA 90001" +179664,Google Phone,1,600,03/26/19 20:45,"508 Cedar St, San Francisco, CA 94016" +179665,USB-C Charging Cable,1,11.95,03/03/19 01:04,"962 Park St, Austin, TX 73301" +179666,USB-C Charging Cable,1,11.95,03/29/19 22:13,"236 12th St, San Francisco, CA 94016" +179667,Apple Airpods Headphones,1,150,03/21/19 11:59,"945 Park St, Los Angeles, CA 90001" +179668,USB-C Charging Cable,1,11.95,03/03/19 17:04,"278 Lakeview St, Los Angeles, CA 90001" +179669,34in Ultrawide Monitor,1,379.99,03/23/19 15:59,"584 Meadow St, Dallas, TX 75001" +179670,AAA Batteries (4-pack),1,2.99,03/09/19 15:51,"772 Pine St, Atlanta, GA 30301" +179671,AAA Batteries (4-pack),1,2.99,03/03/19 11:08,"57 Willow St, Atlanta, GA 30301" +179672,20in Monitor,1,109.99,03/14/19 19:58,"488 7th St, New York City, NY 10001" +179673,AAA Batteries (4-pack),2,2.99,03/17/19 21:34,"864 South St, New York City, NY 10001" +179674,AA Batteries (4-pack),1,3.84,03/27/19 11:35,"482 Lakeview St, Los Angeles, CA 90001" +179675,34in Ultrawide Monitor,1,379.99,03/09/19 19:38,"213 Spruce St, Los Angeles, CA 90001" +179676,Flatscreen TV,1,300,03/11/19 21:28,"361 Pine St, Portland, OR 97035" +179677,Wired Headphones,1,11.99,03/13/19 20:55,"984 Cedar St, Los Angeles, CA 90001" +179678,USB-C Charging Cable,2,11.95,03/02/19 19:48,"422 5th St, Dallas, TX 75001" +179679,Apple Airpods Headphones,1,150,03/15/19 09:50,"102 10th St, New York City, NY 10001" +179680,20in Monitor,1,109.99,03/04/19 13:55,"997 11th St, San Francisco, CA 94016" +179681,AAA Batteries (4-pack),1,2.99,03/25/19 18:57,"880 Ridge St, New York City, NY 10001" +179682,Bose SoundSport Headphones,1,99.99,03/02/19 10:57,"107 West St, Los Angeles, CA 90001" +179683,Bose SoundSport Headphones,1,99.99,03/12/19 23:17,"97 Pine St, Dallas, TX 75001" +179684,Macbook Pro Laptop,1,1700,03/08/19 13:38,"644 13th St, San Francisco, CA 94016" +179685,Apple Airpods Headphones,1,150,03/02/19 14:46,"765 Church St, New York City, NY 10001" +179686,Wired Headphones,1,11.99,03/18/19 11:27,"14 Chestnut St, San Francisco, CA 94016" +179687,Wired Headphones,1,11.99,03/29/19 11:18,"713 Elm St, San Francisco, CA 94016" +179688,Apple Airpods Headphones,1,150,03/21/19 00:30,"793 Center St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +179689,20in Monitor,1,109.99,03/27/19 13:04,"775 Ridge St, Atlanta, GA 30301" +179690,Google Phone,1,600,03/31/19 06:42,"851 Elm St, San Francisco, CA 94016" +179691,27in 4K Gaming Monitor,1,389.99,03/14/19 15:12,"705 Madison St, Atlanta, GA 30301" +179692,Vareebadd Phone,1,400,03/07/19 14:23,"698 Madison St, Atlanta, GA 30301" +179693,iPhone,1,700,03/14/19 07:10,"772 Meadow St, Atlanta, GA 30301" +179694,USB-C Charging Cable,1,11.95,03/04/19 20:37,"378 7th St, Dallas, TX 75001" +179695,AAA Batteries (4-pack),1,2.99,03/27/19 16:28,"210 Lake St, Atlanta, GA 30301" +179696,Flatscreen TV,1,300,03/30/19 11:39,"516 Elm St, Austin, TX 73301" +179697,Lightning Charging Cable,1,14.95,03/16/19 00:27,"372 7th St, Seattle, WA 98101" +179698,20in Monitor,1,109.99,03/12/19 19:55,"211 Lincoln St, San Francisco, CA 94016" +179699,Bose SoundSport Headphones,1,99.99,03/15/19 14:27,"112 4th St, New York City, NY 10001" +179700,34in Ultrawide Monitor,1,379.99,03/12/19 20:26,"75 2nd St, Dallas, TX 75001" +179701,LG Dryer,1,600.0,03/28/19 13:19,"268 Wilson St, San Francisco, CA 94016" +179702,Bose SoundSport Headphones,1,99.99,03/22/19 11:46,"850 Ridge St, Los Angeles, CA 90001" +179703,Flatscreen TV,1,300,03/27/19 16:17,"864 Cherry St, Los Angeles, CA 90001" +179704,Bose SoundSport Headphones,1,99.99,03/22/19 18:01,"538 Forest St, Austin, TX 73301" +179705,AA Batteries (4-pack),1,3.84,03/10/19 14:37,"211 12th St, New York City, NY 10001" +179706,34in Ultrawide Monitor,1,379.99,03/06/19 11:17,"297 Willow St, Los Angeles, CA 90001" +179707,27in 4K Gaming Monitor,1,389.99,03/11/19 13:11,"708 2nd St, Dallas, TX 75001" +179708,AA Batteries (4-pack),1,3.84,03/28/19 12:40,"637 Cherry St, Dallas, TX 75001" +179709,Apple Airpods Headphones,1,150,03/18/19 14:04,"838 13th St, San Francisco, CA 94016" +179710,USB-C Charging Cable,1,11.95,03/07/19 01:55,"213 2nd St, Seattle, WA 98101" +179711,Apple Airpods Headphones,1,150,03/06/19 23:34,"949 4th St, Boston, MA 02215" +179712,USB-C Charging Cable,1,11.95,03/08/19 14:19,"421 Jefferson St, San Francisco, CA 94016" +179713,USB-C Charging Cable,1,11.95,03/06/19 18:57,"387 Willow St, Los Angeles, CA 90001" +179714,Lightning Charging Cable,1,14.95,03/29/19 11:12,"770 1st St, San Francisco, CA 94016" +179715,Bose SoundSport Headphones,1,99.99,03/30/19 11:11,"221 North St, Los Angeles, CA 90001" +179716,LG Washing Machine,1,600.0,03/07/19 22:20,"584 Dogwood St, Portland, OR 97035" +179717,Wired Headphones,1,11.99,03/01/19 14:03,"769 11th St, Boston, MA 02215" +179718,34in Ultrawide Monitor,1,379.99,03/28/19 13:50,"88 Hickory St, Atlanta, GA 30301" +179719,Lightning Charging Cable,1,14.95,03/28/19 00:52,"289 Jackson St, Dallas, TX 75001" +179720,27in 4K Gaming Monitor,1,389.99,03/02/19 11:33,"241 Walnut St, San Francisco, CA 94016" +179721,Bose SoundSport Headphones,1,99.99,03/17/19 20:50,"343 Jackson St, Los Angeles, CA 90001" +179722,Macbook Pro Laptop,1,1700,03/17/19 21:45,"221 Willow St, Dallas, TX 75001" +179722,USB-C Charging Cable,1,11.95,03/17/19 21:45,"221 Willow St, Dallas, TX 75001" +179723,27in 4K Gaming Monitor,1,389.99,03/09/19 19:11,"30 North St, Portland, OR 97035" +179724,Apple Airpods Headphones,1,150,03/29/19 12:07,"881 14th St, San Francisco, CA 94016" +179725,Wired Headphones,1,11.99,03/16/19 10:26,"481 Center St, Dallas, TX 75001" +179726,USB-C Charging Cable,1,11.95,03/05/19 15:29,"570 Johnson St, Seattle, WA 98101" +179727,34in Ultrawide Monitor,1,379.99,03/10/19 23:14,"916 Elm St, Boston, MA 02215" +179728,AA Batteries (4-pack),2,3.84,03/20/19 10:31,"545 Walnut St, San Francisco, CA 94016" +179729,Flatscreen TV,1,300,03/29/19 19:53,"568 Jackson St, San Francisco, CA 94016" +179730,AAA Batteries (4-pack),1,2.99,03/29/19 14:41,"213 Maple St, San Francisco, CA 94016" +179731,AAA Batteries (4-pack),2,2.99,03/25/19 09:24,"555 North St, San Francisco, CA 94016" +179732,Lightning Charging Cable,1,14.95,03/05/19 09:13,"582 14th St, San Francisco, CA 94016" +179733,Lightning Charging Cable,1,14.95,03/07/19 09:44,"826 Lincoln St, Atlanta, GA 30301" +179734,Apple Airpods Headphones,1,150,03/01/19 09:07,"379 West St, San Francisco, CA 94016" +179735,AAA Batteries (4-pack),1,2.99,03/10/19 18:12,"979 Lakeview St, Los Angeles, CA 90001" +179736,AAA Batteries (4-pack),1,2.99,03/24/19 21:28,"938 Hill St, Portland, OR 97035" +179737,Apple Airpods Headphones,1,150,03/09/19 21:50,"715 Wilson St, San Francisco, CA 94016" +179738,iPhone,1,700,03/04/19 08:05,"243 12th St, Portland, OR 97035" +179739,Apple Airpods Headphones,1,150,03/07/19 16:18,"182 7th St, San Francisco, CA 94016" +179740,Lightning Charging Cable,1,14.95,03/22/19 09:07,"306 Wilson St, San Francisco, CA 94016" +179741,USB-C Charging Cable,1,11.95,03/06/19 17:15,"414 12th St, Austin, TX 73301" +179742,Lightning Charging Cable,1,14.95,03/04/19 01:10,"309 Spruce St, Boston, MA 02215" +179743,Wired Headphones,1,11.99,03/29/19 17:22,"756 7th St, Dallas, TX 75001" +179744,USB-C Charging Cable,2,11.95,03/24/19 09:19,"238 Madison St, San Francisco, CA 94016" +179745,Apple Airpods Headphones,1,150,03/13/19 21:20,"550 West St, Atlanta, GA 30301" +179746,AAA Batteries (4-pack),1,2.99,03/02/19 11:25,"109 2nd St, New York City, NY 10001" +179747,Apple Airpods Headphones,1,150,03/21/19 08:33,"479 Ridge St, San Francisco, CA 94016" +179748,USB-C Charging Cable,1,11.95,03/19/19 15:04,"910 14th St, San Francisco, CA 94016" +179749,AAA Batteries (4-pack),2,2.99,03/13/19 13:43,"169 Lakeview St, San Francisco, CA 94016" +179750,Wired Headphones,1,11.99,03/14/19 22:06,"887 Lakeview St, Boston, MA 02215" +179751,Apple Airpods Headphones,1,150,03/28/19 11:05,"327 Cedar St, San Francisco, CA 94016" +179752,Wired Headphones,1,11.99,03/16/19 16:38,"932 Pine St, San Francisco, CA 94016" +179753,27in 4K Gaming Monitor,1,389.99,03/02/19 20:20,"471 Lake St, Los Angeles, CA 90001" +179754,Vareebadd Phone,1,400,03/26/19 20:10,"682 5th St, San Francisco, CA 94016" +179755,iPhone,1,700,03/28/19 21:34,"342 Maple St, Seattle, WA 98101" +179755,Lightning Charging Cable,1,14.95,03/28/19 21:34,"342 Maple St, Seattle, WA 98101" +179756,34in Ultrawide Monitor,1,379.99,03/25/19 21:20,"229 Dogwood St, San Francisco, CA 94016" +179757,AAA Batteries (4-pack),2,2.99,03/07/19 22:12,"360 West St, Portland, OR 97035" +179758,Wired Headphones,1,11.99,03/08/19 15:26,"23 Willow St, New York City, NY 10001" +,,,,, +179759,Lightning Charging Cable,1,14.95,03/07/19 00:53,"101 Forest St, Los Angeles, CA 90001" +179760,Wired Headphones,1,11.99,03/21/19 21:57,"533 Hickory St, Los Angeles, CA 90001" +179761,AA Batteries (4-pack),1,3.84,03/13/19 22:53,"178 Lincoln St, San Francisco, CA 94016" +179762,USB-C Charging Cable,1,11.95,03/31/19 16:25,"637 Hill St, New York City, NY 10001" +179763,AAA Batteries (4-pack),1,2.99,03/25/19 09:05,"253 Spruce St, Portland, OR 97035" +179764,AA Batteries (4-pack),2,3.84,03/03/19 19:04,"32 Lincoln St, Los Angeles, CA 90001" +179764,Google Phone,1,600,03/03/19 19:04,"32 Lincoln St, Los Angeles, CA 90001" +179765,Vareebadd Phone,1,400,03/10/19 12:59,"512 Park St, Atlanta, GA 30301" +179765,USB-C Charging Cable,1,11.95,03/10/19 12:59,"512 Park St, Atlanta, GA 30301" +179766,27in FHD Monitor,1,149.99,03/05/19 15:18,"278 Jefferson St, New York City, NY 10001" +179767,USB-C Charging Cable,1,11.95,03/17/19 17:41,"601 Main St, Boston, MA 02215" +179768,27in 4K Gaming Monitor,1,389.99,03/14/19 17:07,"691 Cedar St, Austin, TX 73301" +179769,ThinkPad Laptop,1,999.99,03/10/19 13:52,"367 5th St, Portland, ME 04101" +179770,AA Batteries (4-pack),1,3.84,03/23/19 12:19,"26 Center St, San Francisco, CA 94016" +179771,34in Ultrawide Monitor,1,379.99,03/02/19 09:05,"688 Meadow St, San Francisco, CA 94016" +179772,27in 4K Gaming Monitor,1,389.99,03/22/19 21:51,"794 Meadow St, Portland, OR 97035" +179773,Apple Airpods Headphones,1,150,03/06/19 19:43,"551 Hill St, Atlanta, GA 30301" +179774,AA Batteries (4-pack),2,3.84,03/12/19 16:41,"865 Pine St, San Francisco, CA 94016" +179775,Lightning Charging Cable,1,14.95,03/04/19 17:27,"945 Main St, San Francisco, CA 94016" +179776,Apple Airpods Headphones,1,150,03/07/19 23:38,"360 Park St, Boston, MA 02215" +179777,USB-C Charging Cable,1,11.95,03/22/19 21:47,"719 1st St, San Francisco, CA 94016" +179778,Bose SoundSport Headphones,1,99.99,03/26/19 20:49,"545 10th St, Boston, MA 02215" +179779,USB-C Charging Cable,1,11.95,03/18/19 01:23,"284 Wilson St, San Francisco, CA 94016" +179780,Lightning Charging Cable,1,14.95,03/01/19 21:09,"240 7th St, San Francisco, CA 94016" +179781,Wired Headphones,1,11.99,03/13/19 22:47,"274 Church St, New York City, NY 10001" +179781,27in FHD Monitor,1,149.99,03/13/19 22:47,"274 Church St, New York City, NY 10001" +179782,Wired Headphones,1,11.99,03/21/19 13:26,"409 12th St, San Francisco, CA 94016" +179783,34in Ultrawide Monitor,1,379.99,03/30/19 09:13,"559 Forest St, Portland, OR 97035" +179784,Apple Airpods Headphones,1,150,03/18/19 07:10,"460 North St, Los Angeles, CA 90001" +179785,27in FHD Monitor,1,149.99,03/16/19 16:31,"575 8th St, Boston, MA 02215" +179786,ThinkPad Laptop,1,999.99,03/30/19 14:18,"934 Wilson St, Boston, MA 02215" +179787,Wired Headphones,1,11.99,03/01/19 12:34,"845 9th St, Austin, TX 73301" +179788,USB-C Charging Cable,1,11.95,03/07/19 18:47,"5 Main St, San Francisco, CA 94016" +179789,Wired Headphones,1,11.99,03/21/19 13:01,"993 Hickory St, Los Angeles, CA 90001" +179790,Bose SoundSport Headphones,1,99.99,03/07/19 15:20,"313 North St, San Francisco, CA 94016" +179791,Bose SoundSport Headphones,2,99.99,03/17/19 12:28,"301 Dogwood St, New York City, NY 10001" +179792,USB-C Charging Cable,1,11.95,03/07/19 06:20,"234 Center St, Boston, MA 02215" +179793,AAA Batteries (4-pack),2,2.99,03/02/19 16:39,"797 13th St, New York City, NY 10001" +179794,Wired Headphones,1,11.99,03/05/19 22:59,"421 Church St, San Francisco, CA 94016" +179795,AAA Batteries (4-pack),2,2.99,03/24/19 13:50,"978 Maple St, New York City, NY 10001" +179796,ThinkPad Laptop,1,999.99,03/18/19 15:16,"171 Lincoln St, San Francisco, CA 94016" +179797,iPhone,1,700,03/01/19 13:52,"640 Jefferson St, Boston, MA 02215" +179798,Wired Headphones,2,11.99,03/12/19 17:51,"335 7th St, Los Angeles, CA 90001" +179799,USB-C Charging Cable,2,11.95,03/18/19 10:03,"306 South St, Atlanta, GA 30301" +179800,27in FHD Monitor,1,149.99,03/13/19 17:54,"318 Hickory St, Portland, OR 97035" +179801,Flatscreen TV,1,300,03/24/19 15:00,"380 Wilson St, New York City, NY 10001" +179802,ThinkPad Laptop,1,999.99,03/15/19 10:50,"407 Sunset St, San Francisco, CA 94016" +179803,27in FHD Monitor,1,149.99,03/23/19 10:50,"740 Madison St, New York City, NY 10001" +179804,27in 4K Gaming Monitor,1,389.99,03/16/19 19:35,"195 Jackson St, San Francisco, CA 94016" +179805,27in FHD Monitor,1,149.99,03/13/19 20:45,"909 Chestnut St, San Francisco, CA 94016" +179806,Lightning Charging Cable,1,14.95,03/06/19 11:08,"795 West St, Boston, MA 02215" +179807,Lightning Charging Cable,1,14.95,03/25/19 20:09,"603 Hickory St, New York City, NY 10001" +179808,USB-C Charging Cable,1,11.95,03/08/19 15:09,"205 River St, San Francisco, CA 94016" +179809,Apple Airpods Headphones,1,150,03/08/19 10:12,"746 Jackson St, Atlanta, GA 30301" +179810,Wired Headphones,1,11.99,03/05/19 22:05,"909 Elm St, New York City, NY 10001" +179811,Bose SoundSport Headphones,1,99.99,03/26/19 21:25,"537 2nd St, Seattle, WA 98101" +179812,AA Batteries (4-pack),2,3.84,03/22/19 14:13,"456 2nd St, Los Angeles, CA 90001" +179813,AAA Batteries (4-pack),1,2.99,03/08/19 11:34,"514 Walnut St, Los Angeles, CA 90001" +179814,USB-C Charging Cable,1,11.95,03/16/19 19:13,"56 Elm St, San Francisco, CA 94016" +179815,34in Ultrawide Monitor,1,379.99,03/02/19 22:18,"145 Forest St, Portland, ME 04101" +179816,iPhone,1,700,03/09/19 17:42,"57 6th St, Dallas, TX 75001" +179816,Apple Airpods Headphones,1,150,03/09/19 17:42,"57 6th St, Dallas, TX 75001" +179817,AAA Batteries (4-pack),1,2.99,03/11/19 13:48,"358 Jefferson St, Boston, MA 02215" +179818,Bose SoundSport Headphones,1,99.99,03/12/19 01:42,"855 Hickory St, Boston, MA 02215" +179819,iPhone,1,700,03/14/19 23:06,"422 Park St, San Francisco, CA 94016" +179820,AA Batteries (4-pack),1,3.84,03/16/19 09:58,"673 7th St, Dallas, TX 75001" +179821,Apple Airpods Headphones,1,150,03/24/19 14:49,"233 Sunset St, New York City, NY 10001" +179822,Lightning Charging Cable,1,14.95,03/24/19 13:14,"595 Main St, Los Angeles, CA 90001" +179823,Lightning Charging Cable,1,14.95,03/27/19 20:07,"982 Park St, Portland, ME 04101" +179824,AA Batteries (4-pack),1,3.84,03/22/19 22:48,"261 10th St, Portland, OR 97035" +179825,iPhone,1,700,03/10/19 22:26,"5 Walnut St, Boston, MA 02215" +179826,Wired Headphones,2,11.99,03/20/19 17:04,"976 South St, New York City, NY 10001" +179827,27in 4K Gaming Monitor,1,389.99,03/27/19 17:18,"228 12th St, New York City, NY 10001" +179828,AA Batteries (4-pack),1,3.84,03/21/19 12:18,"923 10th St, Los Angeles, CA 90001" +179829,Bose SoundSport Headphones,1,99.99,03/20/19 21:51,"356 Cedar St, New York City, NY 10001" +179830,Lightning Charging Cable,1,14.95,03/15/19 21:24,"612 River St, Dallas, TX 75001" +179831,Apple Airpods Headphones,1,150,03/02/19 15:27,"928 Maple St, San Francisco, CA 94016" +179832,USB-C Charging Cable,1,11.95,03/15/19 15:09,"990 River St, Boston, MA 02215" +179833,AAA Batteries (4-pack),1,2.99,03/28/19 16:04,"272 Washington St, San Francisco, CA 94016" +179834,AA Batteries (4-pack),1,3.84,03/25/19 13:42,"467 Cedar St, Los Angeles, CA 90001" +179835,USB-C Charging Cable,1,11.95,03/15/19 23:27,"613 Chestnut St, New York City, NY 10001" +179836,27in 4K Gaming Monitor,1,389.99,03/28/19 06:19,"848 Jackson St, Atlanta, GA 30301" +179837,iPhone,1,700,03/05/19 13:04,"801 Jefferson St, Boston, MA 02215" +179838,Google Phone,1,600,03/28/19 15:04,"86 Cherry St, Dallas, TX 75001" +179839,Bose SoundSport Headphones,1,99.99,03/18/19 16:33,"410 Hickory St, Seattle, WA 98101" +179840,27in FHD Monitor,1,149.99,03/26/19 16:40,"119 Wilson St, Los Angeles, CA 90001" +179841,Flatscreen TV,1,300,03/07/19 06:37,"667 Hill St, Los Angeles, CA 90001" +179842,Apple Airpods Headphones,1,150,03/14/19 08:34,"344 Willow St, San Francisco, CA 94016" +179843,Bose SoundSport Headphones,1,99.99,03/04/19 17:15,"847 Lakeview St, New York City, NY 10001" +179844,27in FHD Monitor,1,149.99,03/02/19 07:55,"430 West St, Atlanta, GA 30301" +179845,Bose SoundSport Headphones,1,99.99,03/09/19 16:42,"487 Lakeview St, New York City, NY 10001" +179846,USB-C Charging Cable,1,11.95,03/12/19 22:10,"598 North St, Portland, OR 97035" +179847,USB-C Charging Cable,1,11.95,03/24/19 22:51,"971 Maple St, Portland, OR 97035" +179848,Google Phone,1,600,03/13/19 19:09,"917 Meadow St, Austin, TX 73301" +179849,USB-C Charging Cable,1,11.95,03/18/19 13:59,"744 Park St, Atlanta, GA 30301" +179850,Flatscreen TV,1,300,03/17/19 09:03,"277 Dogwood St, Los Angeles, CA 90001" +179851,Wired Headphones,1,11.99,03/02/19 21:24,"663 Elm St, New York City, NY 10001" +179852,Wired Headphones,1,11.99,03/27/19 14:27,"861 14th St, Los Angeles, CA 90001" +179853,Wired Headphones,1,11.99,03/22/19 00:49,"866 Cherry St, Los Angeles, CA 90001" +179854,Lightning Charging Cable,1,14.95,03/09/19 15:06,"725 Wilson St, Portland, OR 97035" +179855,AAA Batteries (4-pack),1,2.99,03/07/19 09:58,"923 8th St, Austin, TX 73301" +179856,AAA Batteries (4-pack),2,2.99,03/20/19 23:40,"637 Ridge St, San Francisco, CA 94016" +179857,Bose SoundSport Headphones,1,99.99,03/16/19 17:43,"552 Willow St, Atlanta, GA 30301" +179858,Lightning Charging Cable,1,14.95,03/11/19 13:26,"619 14th St, San Francisco, CA 94016" +179859,Apple Airpods Headphones,1,150,03/15/19 12:59,"162 12th St, Atlanta, GA 30301" +179860,AA Batteries (4-pack),1,3.84,03/20/19 12:16,"555 Cedar St, Boston, MA 02215" +179861,AAA Batteries (4-pack),1,2.99,03/30/19 20:35,"57 6th St, Dallas, TX 75001" +179862,AAA Batteries (4-pack),1,2.99,03/18/19 13:16,"819 South St, Boston, MA 02215" +179863,AAA Batteries (4-pack),3,2.99,03/14/19 09:10,"437 Spruce St, San Francisco, CA 94016" +179864,Vareebadd Phone,1,400,03/19/19 09:35,"320 North St, Seattle, WA 98101" +179865,27in 4K Gaming Monitor,1,389.99,03/14/19 22:57,"310 Walnut St, Los Angeles, CA 90001" +179866,27in FHD Monitor,1,149.99,03/05/19 16:08,"234 West St, San Francisco, CA 94016" +179867,AAA Batteries (4-pack),2,2.99,03/06/19 10:59,"131 Hill St, New York City, NY 10001" +179868,Wired Headphones,1,11.99,03/31/19 13:29,"904 Cherry St, Dallas, TX 75001" +179869,USB-C Charging Cable,1,11.95,03/10/19 11:45,"350 Maple St, Atlanta, GA 30301" +179870,Bose SoundSport Headphones,1,99.99,03/15/19 08:20,"89 13th St, San Francisco, CA 94016" +179871,AAA Batteries (4-pack),1,2.99,03/11/19 12:53,"886 Jackson St, Seattle, WA 98101" +179872,USB-C Charging Cable,1,11.95,03/31/19 11:34,"298 Elm St, Los Angeles, CA 90001" +179873,Wired Headphones,1,11.99,03/04/19 14:41,"454 7th St, Austin, TX 73301" +179874,USB-C Charging Cable,1,11.95,03/25/19 11:02,"128 Lincoln St, Los Angeles, CA 90001" +179875,AAA Batteries (4-pack),2,2.99,03/16/19 23:01,"779 Hill St, Atlanta, GA 30301" +179876,AAA Batteries (4-pack),1,2.99,03/18/19 15:27,"765 Elm St, New York City, NY 10001" +179877,Bose SoundSport Headphones,1,99.99,03/05/19 22:32,"130 Highland St, San Francisco, CA 94016" +179878,AAA Batteries (4-pack),2,2.99,03/21/19 09:06,"625 Lakeview St, Austin, TX 73301" +179879,34in Ultrawide Monitor,1,379.99,03/03/19 07:08,"439 Chestnut St, New York City, NY 10001" +179880,Lightning Charging Cable,1,14.95,03/31/19 08:57,"20 9th St, San Francisco, CA 94016" +179881,Lightning Charging Cable,1,14.95,03/26/19 19:56,"168 6th St, Dallas, TX 75001" +179882,20in Monitor,1,109.99,03/19/19 21:47,"20 Hill St, San Francisco, CA 94016" +179883,20in Monitor,1,109.99,03/05/19 22:11,"75 Church St, San Francisco, CA 94016" +179884,Lightning Charging Cable,1,14.95,03/27/19 07:48,"955 Washington St, San Francisco, CA 94016" +179885,Lightning Charging Cable,1,14.95,03/25/19 12:24,"510 Wilson St, Dallas, TX 75001" +179886,20in Monitor,2,109.99,03/24/19 23:18,"270 Elm St, Boston, MA 02215" +179887,Lightning Charging Cable,1,14.95,03/22/19 16:50,"460 Pine St, Los Angeles, CA 90001" +179888,AA Batteries (4-pack),1,3.84,03/16/19 09:50,"290 Jefferson St, Seattle, WA 98101" +179889,Apple Airpods Headphones,1,150,03/20/19 06:35,"689 11th St, San Francisco, CA 94016" +179890,USB-C Charging Cable,1,11.95,03/07/19 13:26,"216 Spruce St, Boston, MA 02215" +179891,USB-C Charging Cable,1,11.95,03/16/19 15:30,"553 5th St, Dallas, TX 75001" +179892,Apple Airpods Headphones,1,150,03/25/19 22:04,"109 Dogwood St, San Francisco, CA 94016" +179893,Lightning Charging Cable,1,14.95,03/26/19 08:32,"816 5th St, San Francisco, CA 94016" +179894,Apple Airpods Headphones,1,150,03/20/19 17:30,"107 Jefferson St, Seattle, WA 98101" +179895,Wired Headphones,1,11.99,03/17/19 12:16,"908 Ridge St, Seattle, WA 98101" +179895,Apple Airpods Headphones,1,150,03/17/19 12:16,"908 Ridge St, Seattle, WA 98101" +179896,34in Ultrawide Monitor,1,379.99,03/27/19 21:50,"494 Maple St, Los Angeles, CA 90001" +179897,AA Batteries (4-pack),1,3.84,03/09/19 18:46,"271 South St, Seattle, WA 98101" +179898,AAA Batteries (4-pack),1,2.99,03/06/19 11:44,"216 Cedar St, Los Angeles, CA 90001" +179899,USB-C Charging Cable,1,11.95,03/22/19 15:06,"609 1st St, Seattle, WA 98101" +179900,Vareebadd Phone,1,400,03/01/19 16:07,"593 13th St, San Francisco, CA 94016" +179901,iPhone,1,700,03/10/19 13:35,"455 Hill St, Atlanta, GA 30301" +179902,Google Phone,1,600,03/14/19 17:30,"287 7th St, San Francisco, CA 94016" +179903,Lightning Charging Cable,1,14.95,03/13/19 18:56,"391 10th St, San Francisco, CA 94016" +179904,AAA Batteries (4-pack),1,2.99,03/13/19 19:53,"722 West St, New York City, NY 10001" +179905,Flatscreen TV,1,300,03/11/19 21:17,"577 Cherry St, San Francisco, CA 94016" +179906,USB-C Charging Cable,1,11.95,03/30/19 14:19,"940 Meadow St, New York City, NY 10001" +179907,27in FHD Monitor,1,149.99,03/23/19 21:15,"594 Meadow St, Atlanta, GA 30301" +179908,AAA Batteries (4-pack),1,2.99,03/10/19 09:50,"87 12th St, Portland, OR 97035" +179909,AA Batteries (4-pack),1,3.84,03/19/19 04:17,"853 Forest St, Los Angeles, CA 90001" +179910,USB-C Charging Cable,1,11.95,03/17/19 07:26,"536 Lakeview St, New York City, NY 10001" +179911,Lightning Charging Cable,1,14.95,03/29/19 12:34,"161 Jefferson St, Seattle, WA 98101" +179912,Lightning Charging Cable,1,14.95,03/20/19 14:11,"332 Highland St, Portland, OR 97035" +179913,27in FHD Monitor,1,149.99,03/28/19 10:56,"154 10th St, Atlanta, GA 30301" +179914,iPhone,1,700,03/05/19 22:27,"317 Cedar St, Boston, MA 02215" +179915,Lightning Charging Cable,1,14.95,03/06/19 12:05,"540 Johnson St, Portland, OR 97035" +179916,AAA Batteries (4-pack),1,2.99,03/11/19 20:35,"123 Jefferson St, Austin, TX 73301" +179917,Wired Headphones,1,11.99,03/14/19 21:46,"572 Cherry St, San Francisco, CA 94016" +179918,AAA Batteries (4-pack),1,2.99,03/08/19 19:10,"321 Adams St, Los Angeles, CA 90001" +179919,Wired Headphones,1,11.99,03/15/19 12:02,"131 14th St, New York City, NY 10001" +179920,Lightning Charging Cable,2,14.95,03/24/19 10:11,"894 Lake St, New York City, NY 10001" +179921,AA Batteries (4-pack),1,3.84,03/26/19 15:39,"911 Spruce St, Boston, MA 02215" +179922,Lightning Charging Cable,1,14.95,03/19/19 14:05,"727 Willow St, New York City, NY 10001" +179923,Lightning Charging Cable,1,14.95,03/05/19 11:03,"471 6th St, New York City, NY 10001" +179924,27in 4K Gaming Monitor,1,389.99,03/20/19 07:54,"793 11th St, Los Angeles, CA 90001" +179925,Lightning Charging Cable,3,14.95,03/12/19 10:26,"558 7th St, Los Angeles, CA 90001" +179926,USB-C Charging Cable,1,11.95,03/24/19 21:51,"715 8th St, San Francisco, CA 94016" +179927,Bose SoundSport Headphones,1,99.99,03/20/19 15:45,"293 Dogwood St, San Francisco, CA 94016" +179928,iPhone,1,700,03/06/19 09:16,"45 5th St, San Francisco, CA 94016" +179928,Lightning Charging Cable,1,14.95,03/06/19 09:16,"45 5th St, San Francisco, CA 94016" +179929,AAA Batteries (4-pack),4,2.99,03/13/19 11:54,"942 Pine St, Los Angeles, CA 90001" +179930,Flatscreen TV,1,300,03/28/19 08:03,"726 Lakeview St, New York City, NY 10001" +179931,Lightning Charging Cable,1,14.95,03/09/19 20:26,"454 Center St, San Francisco, CA 94016" +179932,USB-C Charging Cable,1,11.95,03/12/19 23:03,"462 14th St, Los Angeles, CA 90001" +179933,Lightning Charging Cable,1,14.95,03/20/19 23:22,"5 Dogwood St, Austin, TX 73301" +179934,27in FHD Monitor,1,149.99,03/11/19 08:25,"43 4th St, San Francisco, CA 94016" +179935,Lightning Charging Cable,1,14.95,03/11/19 13:11,"70 Cherry St, Austin, TX 73301" +179936,AAA Batteries (4-pack),1,2.99,03/18/19 09:35,"158 Johnson St, San Francisco, CA 94016" +179936,USB-C Charging Cable,1,11.95,03/18/19 09:35,"158 Johnson St, San Francisco, CA 94016" +179937,Lightning Charging Cable,1,14.95,03/30/19 21:14,"357 12th St, New York City, NY 10001" +179938,Lightning Charging Cable,1,14.95,03/21/19 10:19,"304 7th St, Boston, MA 02215" +179939,AA Batteries (4-pack),2,3.84,03/09/19 23:27,"746 Lakeview St, New York City, NY 10001" +179940,USB-C Charging Cable,1,11.95,03/26/19 09:13,"559 Walnut St, New York City, NY 10001" +179941,USB-C Charging Cable,1,11.95,03/26/19 12:26,"844 9th St, San Francisco, CA 94016" +179942,20in Monitor,1,109.99,03/02/19 15:15,"101 Cherry St, San Francisco, CA 94016" +179943,27in FHD Monitor,1,149.99,03/19/19 12:41,"992 Meadow St, Boston, MA 02215" +179944,AAA Batteries (4-pack),1,2.99,03/24/19 09:51,"324 Walnut St, San Francisco, CA 94016" +179945,AAA Batteries (4-pack),4,2.99,03/22/19 16:30,"10 Cedar St, San Francisco, CA 94016" +179946,Bose SoundSport Headphones,1,99.99,03/17/19 17:58,"180 Chestnut St, San Francisco, CA 94016" +179947,20in Monitor,1,109.99,03/20/19 10:42,"204 11th St, Austin, TX 73301" +179948,Lightning Charging Cable,1,14.95,03/11/19 21:07,"617 10th St, San Francisco, CA 94016" +179949,Apple Airpods Headphones,1,150,03/02/19 12:06,"583 Jackson St, Los Angeles, CA 90001" +179950,ThinkPad Laptop,1,999.99,03/29/19 17:15,"771 Madison St, Seattle, WA 98101" +179951,USB-C Charging Cable,1,11.95,03/17/19 11:35,"595 Center St, Portland, OR 97035" +179952,Macbook Pro Laptop,1,1700,03/01/19 17:50,"729 Hickory St, Los Angeles, CA 90001" +179953,Google Phone,1,600,03/19/19 13:06,"788 Chestnut St, Atlanta, GA 30301" +179954,USB-C Charging Cable,1,11.95,03/07/19 20:14,"816 5th St, San Francisco, CA 94016" +179955,Apple Airpods Headphones,1,150,03/30/19 20:42,"397 1st St, Portland, OR 97035" +179956,AAA Batteries (4-pack),1,2.99,03/26/19 11:14,"287 9th St, Seattle, WA 98101" +179957,AA Batteries (4-pack),1,3.84,03/21/19 03:08,"356 Pine St, Los Angeles, CA 90001" +179958,Wired Headphones,1,11.99,03/11/19 18:12,"200 Elm St, San Francisco, CA 94016" +179959,iPhone,1,700,03/02/19 21:50,"554 4th St, San Francisco, CA 94016" +179960,Apple Airpods Headphones,1,150,03/16/19 22:49,"394 North St, San Francisco, CA 94016" +179961,AA Batteries (4-pack),1,3.84,03/27/19 15:09,"810 Maple St, New York City, NY 10001" +179962,27in FHD Monitor,1,149.99,03/30/19 22:10,"887 West St, San Francisco, CA 94016" +179963,AA Batteries (4-pack),1,3.84,03/31/19 14:24,"406 Jackson St, San Francisco, CA 94016" +179964,27in FHD Monitor,1,149.99,03/28/19 20:17,"545 River St, San Francisco, CA 94016" +179965,Lightning Charging Cable,1,14.95,03/25/19 08:41,"68 Walnut St, Los Angeles, CA 90001" +179966,AA Batteries (4-pack),1,3.84,03/29/19 00:21,"277 Highland St, Dallas, TX 75001" +179967,iPhone,1,700,03/23/19 16:26,"93 9th St, Atlanta, GA 30301" +179968,Bose SoundSport Headphones,1,99.99,03/20/19 16:04,"413 Lincoln St, Boston, MA 02215" +179969,Bose SoundSport Headphones,1,99.99,03/08/19 21:37,"956 River St, New York City, NY 10001" +179970,USB-C Charging Cable,1,11.95,03/18/19 15:42,"355 Lakeview St, Los Angeles, CA 90001" +179971,AAA Batteries (4-pack),4,2.99,03/01/19 14:17,"243 Park St, New York City, NY 10001" +179972,Google Phone,1,600,03/15/19 09:29,"560 5th St, Los Angeles, CA 90001" +179973,USB-C Charging Cable,1,11.95,03/23/19 08:52,"303 Lincoln St, Seattle, WA 98101" +179974,Bose SoundSport Headphones,1,99.99,03/03/19 15:33,"571 Maple St, New York City, NY 10001" +179975,AAA Batteries (4-pack),3,2.99,03/12/19 17:39,"612 Church St, Los Angeles, CA 90001" +179976,AA Batteries (4-pack),2,3.84,03/07/19 17:41,"201 North St, Portland, OR 97035" +179977,27in FHD Monitor,1,149.99,03/15/19 18:22,"452 4th St, Los Angeles, CA 90001" +179978,iPhone,1,700,03/04/19 20:24,"988 11th St, Los Angeles, CA 90001" +179979,AAA Batteries (4-pack),1,2.99,03/06/19 17:18,"361 14th St, Los Angeles, CA 90001" +179980,Apple Airpods Headphones,1,150,03/29/19 21:41,"655 7th St, New York City, NY 10001" +179981,Lightning Charging Cable,1,14.95,03/11/19 18:22,"616 Elm St, Seattle, WA 98101" +179982,Google Phone,1,600,03/13/19 11:11,"191 Adams St, San Francisco, CA 94016" +179983,USB-C Charging Cable,1,11.95,03/13/19 22:10,"689 Highland St, San Francisco, CA 94016" +179984,AA Batteries (4-pack),2,3.84,03/09/19 14:16,"130 12th St, New York City, NY 10001" +179985,Macbook Pro Laptop,1,1700,03/13/19 07:53,"627 Spruce St, Austin, TX 73301" +179986,Bose SoundSport Headphones,1,99.99,03/31/19 00:04,"298 Cherry St, San Francisco, CA 94016" +179987,Lightning Charging Cable,1,14.95,03/16/19 02:16,"129 Adams St, Atlanta, GA 30301" +179988,AAA Batteries (4-pack),1,2.99,03/30/19 09:32,"668 Washington St, Atlanta, GA 30301" +179989,Lightning Charging Cable,1,14.95,03/21/19 18:01,"67 4th St, San Francisco, CA 94016" +179990,AA Batteries (4-pack),1,3.84,03/27/19 09:51,"824 Jackson St, Atlanta, GA 30301" +179991,USB-C Charging Cable,1,11.95,03/01/19 09:41,"856 Elm St, San Francisco, CA 94016" +179992,iPhone,1,700,03/13/19 17:41,"35 10th St, San Francisco, CA 94016" +179992,Lightning Charging Cable,1,14.95,03/13/19 17:41,"35 10th St, San Francisco, CA 94016" +179993,AAA Batteries (4-pack),2,2.99,03/05/19 18:44,"593 Hill St, San Francisco, CA 94016" +179994,Flatscreen TV,1,300,03/07/19 19:16,"606 Walnut St, Boston, MA 02215" +179995,AAA Batteries (4-pack),2,2.99,03/12/19 22:26,"864 Elm St, Dallas, TX 75001" +179996,Wired Headphones,1,11.99,03/26/19 16:50,"633 Lakeview St, Boston, MA 02215" +179997,27in 4K Gaming Monitor,1,389.99,03/20/19 01:52,"99 Willow St, San Francisco, CA 94016" +179998,27in FHD Monitor,1,149.99,03/09/19 20:53,"454 Willow St, New York City, NY 10001" +179999,Macbook Pro Laptop,1,1700,03/28/19 19:30,"657 Chestnut St, Seattle, WA 98101" +180000,34in Ultrawide Monitor,1,379.99,03/22/19 19:43,"423 6th St, Los Angeles, CA 90001" +180001,AA Batteries (4-pack),1,3.84,03/14/19 05:47,"637 Lakeview St, Boston, MA 02215" +180002,Bose SoundSport Headphones,1,99.99,03/04/19 22:00,"854 9th St, Austin, TX 73301" +180003,27in 4K Gaming Monitor,1,389.99,03/30/19 16:56,"305 Dogwood St, Atlanta, GA 30301" +180004,AAA Batteries (4-pack),1,2.99,03/11/19 17:54,"713 Main St, Seattle, WA 98101" +180005,AAA Batteries (4-pack),2,2.99,03/06/19 15:45,"680 Elm St, San Francisco, CA 94016" +180006,AAA Batteries (4-pack),1,2.99,03/09/19 13:46,"977 Jackson St, Dallas, TX 75001" +180007,Macbook Pro Laptop,1,1700,03/19/19 16:24,"117 11th St, New York City, NY 10001" +180008,AAA Batteries (4-pack),1,2.99,03/15/19 21:55,"114 North St, New York City, NY 10001" +180009,Wired Headphones,1,11.99,03/15/19 19:59,"213 Lake St, New York City, NY 10001" +180010,Bose SoundSport Headphones,2,99.99,03/27/19 00:18,"643 Chestnut St, New York City, NY 10001" +180011,Apple Airpods Headphones,1,150,03/06/19 20:20,"984 Walnut St, San Francisco, CA 94016" +180011,iPhone,1,700,03/06/19 20:20,"984 Walnut St, San Francisco, CA 94016" +180012,Lightning Charging Cable,1,14.95,03/15/19 11:04,"401 River St, Los Angeles, CA 90001" +180013,USB-C Charging Cable,1,11.95,03/17/19 19:08,"214 Sunset St, San Francisco, CA 94016" +180014,Macbook Pro Laptop,1,1700,03/20/19 18:42,"587 Forest St, Portland, OR 97035" +180015,Bose SoundSport Headphones,1,99.99,03/15/19 15:50,"382 Hickory St, San Francisco, CA 94016" +180016,ThinkPad Laptop,1,999.99,03/08/19 10:54,"701 9th St, Seattle, WA 98101" +180017,iPhone,1,700,03/31/19 21:35,"906 Cedar St, San Francisco, CA 94016" +180017,Lightning Charging Cable,1,14.95,03/31/19 21:35,"906 Cedar St, San Francisco, CA 94016" +180018,Wired Headphones,1,11.99,03/03/19 19:20,"618 Jackson St, Portland, OR 97035" +180019,Bose SoundSport Headphones,1,99.99,03/21/19 12:31,"239 Park St, San Francisco, CA 94016" +180020,Vareebadd Phone,1,400,03/28/19 12:29,"769 Dogwood St, San Francisco, CA 94016" +180021,Google Phone,1,600,03/02/19 11:07,"401 Willow St, New York City, NY 10001" +180022,Google Phone,1,600,03/15/19 05:21,"300 Chestnut St, Seattle, WA 98101" +180023,AA Batteries (4-pack),1,3.84,03/31/19 01:59,"258 Walnut St, San Francisco, CA 94016" +180023,Bose SoundSport Headphones,1,99.99,03/31/19 01:59,"258 Walnut St, San Francisco, CA 94016" +180024,LG Dryer,1,600.0,03/29/19 16:04,"903 Hickory St, Los Angeles, CA 90001" +180025,34in Ultrawide Monitor,1,379.99,03/11/19 16:39,"849 Madison St, Dallas, TX 75001" +180026,USB-C Charging Cable,1,11.95,03/23/19 10:19,"803 Hill St, Portland, OR 97035" +180027,Google Phone,1,600,03/14/19 19:59,"602 4th St, Boston, MA 02215" +180028,Google Phone,1,600,03/15/19 00:59,"76 Johnson St, San Francisco, CA 94016" +180029,Bose SoundSport Headphones,2,99.99,03/07/19 09:15,"338 Chestnut St, San Francisco, CA 94016" +180030,USB-C Charging Cable,2,11.95,03/23/19 18:58,"440 Wilson St, San Francisco, CA 94016" +180031,34in Ultrawide Monitor,1,379.99,03/07/19 20:08,"453 Ridge St, Seattle, WA 98101" +180032,27in FHD Monitor,1,149.99,03/08/19 19:38,"188 Chestnut St, Boston, MA 02215" +180033,Wired Headphones,1,11.99,03/16/19 16:10,"347 Park St, San Francisco, CA 94016" +180034,Google Phone,1,600,03/28/19 11:56,"559 9th St, Portland, ME 04101" +180035,AAA Batteries (4-pack),1,2.99,03/26/19 09:09,"453 10th St, Los Angeles, CA 90001" +180036,Bose SoundSport Headphones,1,99.99,03/11/19 20:46,"763 Highland St, Dallas, TX 75001" +180037,AA Batteries (4-pack),1,3.84,03/26/19 19:15,"785 Walnut St, San Francisco, CA 94016" +180038,USB-C Charging Cable,1,11.95,03/05/19 12:21,"680 Park St, Los Angeles, CA 90001" +180039,AA Batteries (4-pack),1,3.84,03/03/19 20:14,"331 Chestnut St, Seattle, WA 98101" +180040,Macbook Pro Laptop,1,1700,03/22/19 11:36,"122 Jefferson St, Los Angeles, CA 90001" +180041,20in Monitor,1,109.99,03/10/19 15:54,"662 2nd St, San Francisco, CA 94016" +180042,Vareebadd Phone,1,400,04/01/19 04:04,"214 Walnut St, Los Angeles, CA 90001" +180043,Google Phone,1,600,03/17/19 12:54,"879 Park St, Atlanta, GA 30301" +180044,27in FHD Monitor,1,149.99,03/10/19 06:58,"150 Jefferson St, New York City, NY 10001" +180045,USB-C Charging Cable,1,11.95,03/19/19 11:19,"72 11th St, San Francisco, CA 94016" +180046,Vareebadd Phone,1,400,03/21/19 13:43,"970 Jackson St, San Francisco, CA 94016" +180046,Bose SoundSport Headphones,1,99.99,03/21/19 13:43,"970 Jackson St, San Francisco, CA 94016" +180047,AA Batteries (4-pack),1,3.84,03/28/19 16:02,"94 9th St, Dallas, TX 75001" +180048,Bose SoundSport Headphones,1,99.99,03/21/19 15:05,"146 Forest St, Atlanta, GA 30301" +180048,Wired Headphones,1,11.99,03/21/19 15:05,"146 Forest St, Atlanta, GA 30301" +180049,USB-C Charging Cable,1,11.95,03/26/19 08:35,"651 5th St, San Francisco, CA 94016" +180050,27in 4K Gaming Monitor,1,389.99,03/22/19 21:40,"327 5th St, Portland, OR 97035" +180051,34in Ultrawide Monitor,1,379.99,03/26/19 09:00,"157 Lake St, Seattle, WA 98101" +180052,20in Monitor,1,109.99,03/31/19 20:42,"992 Dogwood St, San Francisco, CA 94016" +180053,AAA Batteries (4-pack),1,2.99,03/12/19 16:51,"980 Highland St, Portland, OR 97035" +180054,Google Phone,1,600,03/12/19 17:02,"701 West St, Boston, MA 02215" +180055,Bose SoundSport Headphones,1,99.99,03/11/19 16:24,"991 4th St, Portland, OR 97035" +180056,USB-C Charging Cable,2,11.95,03/18/19 13:06,"111 Madison St, San Francisco, CA 94016" +180057,27in FHD Monitor,1,149.99,03/05/19 22:05,"861 Church St, Austin, TX 73301" +180058,USB-C Charging Cable,1,11.95,03/21/19 22:42,"448 8th St, San Francisco, CA 94016" +180059,USB-C Charging Cable,1,11.95,03/17/19 20:27,"864 Center St, Dallas, TX 75001" +180060,Lightning Charging Cable,2,14.95,03/08/19 22:42,"50 Wilson St, Portland, OR 97035" +180061,Lightning Charging Cable,1,14.95,03/02/19 18:25,"493 2nd St, Atlanta, GA 30301" +180062,AA Batteries (4-pack),1,3.84,03/23/19 20:00,"360 12th St, Los Angeles, CA 90001" +180063,AA Batteries (4-pack),2,3.84,03/22/19 11:13,"680 Cherry St, San Francisco, CA 94016" +180064,Bose SoundSport Headphones,1,99.99,03/07/19 08:37,"105 Center St, Los Angeles, CA 90001" +180065,AAA Batteries (4-pack),1,2.99,03/21/19 23:11,"422 Adams St, Dallas, TX 75001" +180066,AA Batteries (4-pack),1,3.84,03/18/19 21:22,"821 2nd St, San Francisco, CA 94016" +180067,Wired Headphones,1,11.99,03/01/19 15:15,"685 Hill St, Los Angeles, CA 90001" +180068,27in FHD Monitor,1,149.99,03/28/19 09:39,"265 11th St, San Francisco, CA 94016" +180069,27in FHD Monitor,1,149.99,03/10/19 20:21,"99 13th St, San Francisco, CA 94016" +180070,iPhone,1,700,03/22/19 21:57,"279 Hickory St, San Francisco, CA 94016" +180071,AAA Batteries (4-pack),1,2.99,03/11/19 22:52,"681 Maple St, Dallas, TX 75001" +180072,Wired Headphones,1,11.99,03/27/19 06:30,"275 Cedar St, New York City, NY 10001" +180073,ThinkPad Laptop,1,999.99,03/09/19 15:04,"996 Main St, Atlanta, GA 30301" +180074,AA Batteries (4-pack),1,3.84,03/19/19 23:53,"473 4th St, Portland, OR 97035" +180075,Wired Headphones,1,11.99,03/18/19 14:03,"301 Willow St, Dallas, TX 75001" +180076,Lightning Charging Cable,1,14.95,03/16/19 17:35,"230 4th St, Los Angeles, CA 90001" +180077,Wired Headphones,1,11.99,03/25/19 12:42,"42 Pine St, Los Angeles, CA 90001" +180078,AA Batteries (4-pack),2,3.84,03/06/19 17:44,"680 Hickory St, New York City, NY 10001" +180079,Wired Headphones,1,11.99,03/14/19 00:41,"341 Forest St, Dallas, TX 75001" +180080,Wired Headphones,1,11.99,03/02/19 03:56,"116 South St, Atlanta, GA 30301" +180081,ThinkPad Laptop,1,999.99,03/25/19 05:33,"993 Lincoln St, Portland, ME 04101" +180082,AA Batteries (4-pack),1,3.84,03/11/19 21:40,"840 Johnson St, New York City, NY 10001" +180083,Macbook Pro Laptop,1,1700,03/08/19 20:19,"901 10th St, Boston, MA 02215" +180084,Bose SoundSport Headphones,1,99.99,03/03/19 19:22,"512 4th St, Boston, MA 02215" +180085,Wired Headphones,1,11.99,03/24/19 17:52,"219 Main St, New York City, NY 10001" +180086,Bose SoundSport Headphones,1,99.99,03/03/19 16:54,"568 9th St, New York City, NY 10001" +180087,27in FHD Monitor,1,149.99,03/26/19 12:41,"308 1st St, New York City, NY 10001" +180088,iPhone,1,700,03/16/19 17:27,"850 6th St, New York City, NY 10001" +180088,Wired Headphones,1,11.99,03/16/19 17:27,"850 6th St, New York City, NY 10001" +180089,AAA Batteries (4-pack),2,2.99,03/21/19 00:41,"270 Madison St, Los Angeles, CA 90001" +180090,AA Batteries (4-pack),2,3.84,03/24/19 10:50,"245 14th St, San Francisco, CA 94016" +180091,iPhone,1,700,03/29/19 20:15,"283 Johnson St, New York City, NY 10001" +180092,AA Batteries (4-pack),2,3.84,03/03/19 18:27,"631 Ridge St, San Francisco, CA 94016" +180093,Apple Airpods Headphones,1,150,03/27/19 19:06,"632 Sunset St, San Francisco, CA 94016" +180094,Google Phone,1,600,03/22/19 01:24,"342 Ridge St, San Francisco, CA 94016" +180095,Wired Headphones,1,11.99,03/26/19 20:28,"323 11th St, Los Angeles, CA 90001" +180096,Bose SoundSport Headphones,1,99.99,03/25/19 00:35,"354 14th St, Austin, TX 73301" +180097,Wired Headphones,1,11.99,03/02/19 12:31,"131 12th St, San Francisco, CA 94016" +180098,Lightning Charging Cable,1,14.95,03/20/19 12:40,"499 South St, Los Angeles, CA 90001" +180099,AA Batteries (4-pack),4,3.84,03/12/19 08:18,"636 Cedar St, San Francisco, CA 94016" +180100,AAA Batteries (4-pack),1,2.99,03/15/19 16:37,"594 5th St, San Francisco, CA 94016" +180101,LG Dryer,1,600.0,03/11/19 11:25,"799 8th St, Dallas, TX 75001" +180102,USB-C Charging Cable,1,11.95,03/24/19 10:29,"643 9th St, Atlanta, GA 30301" +180103,USB-C Charging Cable,2,11.95,04/01/19 00:02,"886 Spruce St, Austin, TX 73301" +180104,Google Phone,1,600,03/02/19 11:00,"45 13th St, San Francisco, CA 94016" +180105,AAA Batteries (4-pack),1,2.99,03/21/19 10:13,"185 12th St, San Francisco, CA 94016" +180106,Bose SoundSport Headphones,1,99.99,03/01/19 10:10,"439 Chestnut St, Dallas, TX 75001" +180107,34in Ultrawide Monitor,1,379.99,03/26/19 21:18,"272 2nd St, Los Angeles, CA 90001" +180108,Lightning Charging Cable,1,14.95,03/07/19 12:28,"317 Pine St, Atlanta, GA 30301" +180109,USB-C Charging Cable,1,11.95,03/24/19 14:01,"784 Chestnut St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +180110,34in Ultrawide Monitor,1,379.99,03/07/19 12:05,"400 13th St, San Francisco, CA 94016" +180111,Vareebadd Phone,1,400,03/22/19 09:10,"314 South St, San Francisco, CA 94016" +180112,AA Batteries (4-pack),1,3.84,03/23/19 17:11,"769 Highland St, San Francisco, CA 94016" +180113,27in FHD Monitor,1,149.99,03/05/19 18:20,"600 13th St, New York City, NY 10001" +180114,Macbook Pro Laptop,1,1700,03/04/19 19:37,"763 Spruce St, Boston, MA 02215" +180115,Lightning Charging Cable,1,14.95,03/12/19 18:06,"420 Park St, Atlanta, GA 30301" +180116,Lightning Charging Cable,1,14.95,03/08/19 10:18,"858 Dogwood St, Atlanta, GA 30301" +180117,AA Batteries (4-pack),1,3.84,03/17/19 10:05,"874 7th St, San Francisco, CA 94016" +180118,34in Ultrawide Monitor,1,379.99,03/11/19 09:40,"918 River St, San Francisco, CA 94016" +180119,34in Ultrawide Monitor,1,379.99,03/07/19 11:33,"650 Pine St, Los Angeles, CA 90001" +180120,Lightning Charging Cable,2,14.95,03/06/19 17:16,"991 12th St, New York City, NY 10001" +180121,Lightning Charging Cable,1,14.95,03/02/19 15:08,"344 12th St, San Francisco, CA 94016" +180122,AA Batteries (4-pack),2,3.84,03/14/19 18:42,"823 Ridge St, New York City, NY 10001" +180123,Wired Headphones,1,11.99,03/15/19 19:31,"917 11th St, New York City, NY 10001" +180124,Apple Airpods Headphones,1,150,03/14/19 10:53,"288 6th St, Los Angeles, CA 90001" +180125,20in Monitor,1,109.99,03/24/19 14:14,"155 8th St, Dallas, TX 75001" +180126,AA Batteries (4-pack),1,3.84,03/30/19 07:05,"931 Main St, San Francisco, CA 94016" +180127,AA Batteries (4-pack),1,3.84,03/31/19 00:30,"712 Lincoln St, Los Angeles, CA 90001" +180128,Vareebadd Phone,1,400,03/09/19 13:44,"796 1st St, San Francisco, CA 94016" +180129,USB-C Charging Cable,1,11.95,03/22/19 13:40,"626 10th St, Portland, OR 97035" +180130,34in Ultrawide Monitor,1,379.99,03/27/19 20:23,"680 Church St, Boston, MA 02215" +180131,Flatscreen TV,1,300,03/07/19 21:16,"946 11th St, Dallas, TX 75001" +180132,Wired Headphones,1,11.99,03/02/19 09:47,"850 Chestnut St, Boston, MA 02215" +180133,Wired Headphones,1,11.99,03/06/19 20:24,"987 13th St, Los Angeles, CA 90001" +180134,AA Batteries (4-pack),1,3.84,03/21/19 19:08,"375 Spruce St, San Francisco, CA 94016" +180135,Apple Airpods Headphones,1,150,03/28/19 09:22,"115 Park St, Boston, MA 02215" +180136,Macbook Pro Laptop,1,1700,03/27/19 16:44,"994 Jefferson St, Dallas, TX 75001" +180137,Flatscreen TV,1,300,03/05/19 08:07,"519 Main St, San Francisco, CA 94016" +180138,Wired Headphones,1,11.99,03/11/19 19:21,"862 Hill St, New York City, NY 10001" +180139,AAA Batteries (4-pack),2,2.99,03/24/19 19:57,"103 Walnut St, Portland, OR 97035" +180140,Apple Airpods Headphones,1,150,03/03/19 18:45,"826 5th St, Boston, MA 02215" +180141,USB-C Charging Cable,1,11.95,03/05/19 23:44,"639 2nd St, San Francisco, CA 94016" +180142,Lightning Charging Cable,1,14.95,03/27/19 16:20,"460 Pine St, Dallas, TX 75001" +180143,AAA Batteries (4-pack),2,2.99,03/27/19 09:49,"238 West St, San Francisco, CA 94016" +180144,USB-C Charging Cable,1,11.95,03/25/19 13:33,"682 North St, Los Angeles, CA 90001" +180145,AA Batteries (4-pack),2,3.84,03/31/19 05:04,"18 Washington St, Austin, TX 73301" +180146,Apple Airpods Headphones,1,150,03/14/19 16:31,"750 Meadow St, San Francisco, CA 94016" +180147,Wired Headphones,1,11.99,03/23/19 13:04,"840 14th St, Los Angeles, CA 90001" +180148,Wired Headphones,1,11.99,03/01/19 15:49,"287 Cedar St, Portland, OR 97035" +180149,USB-C Charging Cable,1,11.95,03/28/19 14:45,"687 Walnut St, Dallas, TX 75001" +180150,Wired Headphones,1,11.99,03/10/19 17:29,"197 Center St, San Francisco, CA 94016" +180151,USB-C Charging Cable,1,11.95,03/14/19 06:14,"176 Park St, Portland, OR 97035" +180152,AAA Batteries (4-pack),1,2.99,03/22/19 14:33,"994 Hickory St, New York City, NY 10001" +180153,AAA Batteries (4-pack),1,2.99,03/09/19 10:57,"764 2nd St, Los Angeles, CA 90001" +180154,20in Monitor,1,109.99,03/18/19 10:59,"342 Sunset St, Atlanta, GA 30301" +180155,Wired Headphones,1,11.99,03/06/19 10:30,"922 Ridge St, Dallas, TX 75001" +180156,iPhone,1,700,03/25/19 14:20,"911 North St, Portland, ME 04101" +180157,USB-C Charging Cable,1,11.95,03/05/19 23:12,"388 North St, Portland, OR 97035" +180158,Apple Airpods Headphones,1,150,03/19/19 15:20,"466 Lake St, San Francisco, CA 94016" +180159,iPhone,1,700,03/23/19 12:06,"329 North St, San Francisco, CA 94016" +180160,Wired Headphones,1,11.99,03/05/19 11:13,"844 Madison St, San Francisco, CA 94016" +180161,AAA Batteries (4-pack),1,2.99,03/31/19 20:31,"429 Johnson St, San Francisco, CA 94016" +180162,ThinkPad Laptop,1,999.99,03/18/19 20:40,"34 Center St, Portland, OR 97035" +180163,Wired Headphones,1,11.99,03/01/19 17:57,"989 Hill St, San Francisco, CA 94016" +180164,Lightning Charging Cable,1,14.95,03/14/19 21:19,"474 Forest St, Austin, TX 73301" +180165,Apple Airpods Headphones,1,150,03/13/19 17:29,"37 7th St, Seattle, WA 98101" +180166,27in 4K Gaming Monitor,1,389.99,03/26/19 12:59,"582 1st St, San Francisco, CA 94016" +180167,Flatscreen TV,1,300,03/20/19 17:38,"77 Lincoln St, New York City, NY 10001" +180168,Wired Headphones,1,11.99,03/24/19 11:40,"445 1st St, Boston, MA 02215" +180169,ThinkPad Laptop,1,999.99,03/11/19 16:35,"576 Cherry St, Los Angeles, CA 90001" +180170,Lightning Charging Cable,1,14.95,03/15/19 11:22,"362 Madison St, Atlanta, GA 30301" +180171,Apple Airpods Headphones,1,150,03/31/19 20:07,"580 Ridge St, San Francisco, CA 94016" +180172,ThinkPad Laptop,1,999.99,03/30/19 21:10,"48 Madison St, New York City, NY 10001" +180173,AA Batteries (4-pack),1,3.84,03/31/19 07:02,"576 Hickory St, Dallas, TX 75001" +180174,USB-C Charging Cable,1,11.95,03/03/19 20:02,"224 Washington St, Los Angeles, CA 90001" +180175,USB-C Charging Cable,1,11.95,03/07/19 20:18,"44 Forest St, San Francisco, CA 94016" +180176,Wired Headphones,1,11.99,03/25/19 20:46,"726 Washington St, Dallas, TX 75001" +180177,AA Batteries (4-pack),1,3.84,03/02/19 12:46,"624 12th St, New York City, NY 10001" +180178,USB-C Charging Cable,1,11.95,03/19/19 05:03,"37 Willow St, Austin, TX 73301" +180179,Wired Headphones,1,11.99,03/06/19 23:06,"957 Cherry St, New York City, NY 10001" +180180,iPhone,1,700,03/31/19 18:15,"474 West St, San Francisco, CA 94016" +180181,Lightning Charging Cable,1,14.95,03/15/19 13:31,"426 Center St, San Francisco, CA 94016" +180182,Bose SoundSport Headphones,1,99.99,03/06/19 17:10,"521 Lakeview St, New York City, NY 10001" +180183,27in FHD Monitor,1,149.99,03/08/19 20:46,"179 5th St, San Francisco, CA 94016" +180184,27in FHD Monitor,1,149.99,03/21/19 21:58,"293 Adams St, Portland, OR 97035" +180185,Lightning Charging Cable,1,14.95,03/24/19 12:25,"640 10th St, San Francisco, CA 94016" +180186,Bose SoundSport Headphones,1,99.99,03/25/19 21:29,"116 Park St, Los Angeles, CA 90001" +180187,USB-C Charging Cable,1,11.95,03/24/19 14:23,"751 Lake St, Boston, MA 02215" +180188,AAA Batteries (4-pack),2,2.99,03/27/19 21:15,"467 1st St, San Francisco, CA 94016" +180189,20in Monitor,1,109.99,03/03/19 10:49,"45 Pine St, Austin, TX 73301" +180190,USB-C Charging Cable,1,11.95,03/05/19 14:26,"469 Center St, New York City, NY 10001" +180191,Flatscreen TV,1,300,03/04/19 23:17,"496 11th St, Boston, MA 02215" +180192,Bose SoundSport Headphones,1,99.99,03/27/19 21:49,"947 Lake St, New York City, NY 10001" +180193,USB-C Charging Cable,1,11.95,03/16/19 11:48,"204 14th St, Portland, OR 97035" +180194,Wired Headphones,1,11.99,03/09/19 11:22,"600 West St, Boston, MA 02215" +180195,AA Batteries (4-pack),2,3.84,03/22/19 13:12,"456 North St, San Francisco, CA 94016" +180196,AA Batteries (4-pack),1,3.84,03/02/19 02:10,"242 Wilson St, Los Angeles, CA 90001" +180197,Lightning Charging Cable,1,14.95,03/07/19 21:49,"362 13th St, New York City, NY 10001" +180198,Flatscreen TV,1,300,03/03/19 07:57,"835 Ridge St, San Francisco, CA 94016" +180199,Lightning Charging Cable,2,14.95,03/26/19 13:49,"721 Lincoln St, San Francisco, CA 94016" +180200,AAA Batteries (4-pack),1,2.99,03/30/19 10:55,"195 River St, Los Angeles, CA 90001" +180201,USB-C Charging Cable,1,11.95,03/09/19 18:44,"150 Elm St, Seattle, WA 98101" +180202,27in 4K Gaming Monitor,1,389.99,03/25/19 13:23,"726 Hill St, San Francisco, CA 94016" +180203,AAA Batteries (4-pack),2,2.99,03/19/19 17:05,"177 Lincoln St, Portland, ME 04101" +180203,Bose SoundSport Headphones,1,99.99,03/19/19 17:05,"177 Lincoln St, Portland, ME 04101" +180204,Wired Headphones,1,11.99,03/03/19 01:10,"366 Jefferson St, Atlanta, GA 30301" +180205,Bose SoundSport Headphones,1,99.99,03/03/19 10:26,"834 Lincoln St, New York City, NY 10001" +180206,iPhone,1,700,03/13/19 21:55,"27 7th St, Dallas, TX 75001" +180207,Bose SoundSport Headphones,1,99.99,03/13/19 07:20,"441 2nd St, Seattle, WA 98101" +180208,USB-C Charging Cable,1,11.95,03/08/19 16:40,"687 Cherry St, Los Angeles, CA 90001" +180209,USB-C Charging Cable,1,11.95,03/03/19 23:10,"336 Elm St, Los Angeles, CA 90001" +180210,Lightning Charging Cable,1,14.95,03/15/19 15:40,"105 Park St, Austin, TX 73301" +180211,AA Batteries (4-pack),2,3.84,03/14/19 14:23,"703 West St, New York City, NY 10001" +180212,AA Batteries (4-pack),1,3.84,03/08/19 08:46,"624 7th St, Austin, TX 73301" +180213,Apple Airpods Headphones,1,150,03/26/19 23:54,"773 Chestnut St, Los Angeles, CA 90001" +180214,AAA Batteries (4-pack),1,2.99,03/20/19 11:19,"802 12th St, San Francisco, CA 94016" +180215,34in Ultrawide Monitor,1,379.99,03/18/19 16:47,"936 5th St, Dallas, TX 75001" +180216,Lightning Charging Cable,1,14.95,03/14/19 18:24,"985 6th St, San Francisco, CA 94016" +180217,Bose SoundSport Headphones,1,99.99,03/05/19 13:13,"513 Forest St, Boston, MA 02215" +180218,Flatscreen TV,1,300,03/16/19 12:31,"612 13th St, Boston, MA 02215" +180219,27in FHD Monitor,1,149.99,03/05/19 06:33,"944 Highland St, San Francisco, CA 94016" +180220,Bose SoundSport Headphones,1,99.99,03/12/19 17:47,"524 Jefferson St, Portland, OR 97035" +180221,AA Batteries (4-pack),1,3.84,03/03/19 23:25,"308 Wilson St, San Francisco, CA 94016" +180222,Wired Headphones,1,11.99,03/22/19 22:48,"14 Church St, Seattle, WA 98101" +180223,27in FHD Monitor,1,149.99,03/09/19 15:43,"876 Main St, New York City, NY 10001" +180224,USB-C Charging Cable,1,11.95,03/02/19 14:29,"859 Main St, Portland, ME 04101" +180225,USB-C Charging Cable,1,11.95,03/26/19 17:06,"780 10th St, San Francisco, CA 94016" +180226,Lightning Charging Cable,2,14.95,03/15/19 13:59,"943 Forest St, New York City, NY 10001" +180227,AA Batteries (4-pack),4,3.84,03/01/19 11:41,"953 10th St, Portland, OR 97035" +180228,Bose SoundSport Headphones,1,99.99,03/10/19 08:06,"882 11th St, New York City, NY 10001" +180229,Macbook Pro Laptop,1,1700,03/19/19 17:50,"381 Center St, San Francisco, CA 94016" +180230,iPhone,1,700,03/07/19 08:28,"583 Walnut St, New York City, NY 10001" +180231,iPhone,1,700,03/23/19 02:57,"759 Hill St, New York City, NY 10001" +180231,Wired Headphones,1,11.99,03/23/19 02:57,"759 Hill St, New York City, NY 10001" +180232,AA Batteries (4-pack),1,3.84,03/07/19 20:43,"375 Wilson St, Seattle, WA 98101" +180233,AAA Batteries (4-pack),1,2.99,03/30/19 19:57,"407 12th St, Austin, TX 73301" +180234,LG Washing Machine,1,600.0,03/27/19 08:57,"357 South St, Seattle, WA 98101" +180235,Wired Headphones,1,11.99,03/20/19 06:51,"121 Sunset St, Seattle, WA 98101" +180236,20in Monitor,1,109.99,03/05/19 17:59,"499 1st St, Seattle, WA 98101" +,,,,, +180237,Apple Airpods Headphones,1,150,03/25/19 16:08,"192 Maple St, New York City, NY 10001" +180238,34in Ultrawide Monitor,1,379.99,03/11/19 17:33,"161 Highland St, New York City, NY 10001" +180239,34in Ultrawide Monitor,1,379.99,03/03/19 08:30,"680 Willow St, Los Angeles, CA 90001" +180240,27in 4K Gaming Monitor,1,389.99,03/29/19 23:35,"81 Willow St, New York City, NY 10001" +180241,34in Ultrawide Monitor,1,379.99,03/10/19 15:07,"929 Cedar St, Los Angeles, CA 90001" +180242,AA Batteries (4-pack),2,3.84,03/06/19 12:46,"357 7th St, Los Angeles, CA 90001" +180243,USB-C Charging Cable,1,11.95,03/07/19 09:45,"937 Johnson St, Boston, MA 02215" +180244,34in Ultrawide Monitor,1,379.99,03/15/19 21:35,"320 West St, San Francisco, CA 94016" +180245,27in FHD Monitor,1,149.99,03/26/19 11:39,"296 Chestnut St, Boston, MA 02215" +180246,AA Batteries (4-pack),3,3.84,03/01/19 14:53,"968 Jefferson St, New York City, NY 10001" +180247,Lightning Charging Cable,1,14.95,03/14/19 13:04,"446 7th St, Seattle, WA 98101" +180248,27in 4K Gaming Monitor,1,389.99,03/05/19 15:47,"497 Main St, Austin, TX 73301" +180249,Lightning Charging Cable,1,14.95,03/06/19 12:22,"538 Hickory St, Seattle, WA 98101" +180250,Bose SoundSport Headphones,1,99.99,03/24/19 08:21,"916 Washington St, Atlanta, GA 30301" +180251,Apple Airpods Headphones,1,150,03/25/19 13:36,"886 Johnson St, San Francisco, CA 94016" +180252,AAA Batteries (4-pack),1,2.99,03/24/19 16:49,"986 Johnson St, New York City, NY 10001" +180253,Apple Airpods Headphones,1,150,03/11/19 11:09,"875 Johnson St, Los Angeles, CA 90001" +180254,Wired Headphones,1,11.99,03/24/19 12:51,"753 North St, San Francisco, CA 94016" +180255,Apple Airpods Headphones,1,150,03/05/19 10:03,"699 8th St, Boston, MA 02215" +180256,USB-C Charging Cable,1,11.95,03/06/19 09:41,"939 West St, Portland, OR 97035" +180257,AAA Batteries (4-pack),1,2.99,03/19/19 09:11,"620 Spruce St, Atlanta, GA 30301" +180258,27in FHD Monitor,1,149.99,03/10/19 17:10,"395 Madison St, San Francisco, CA 94016" +180259,Wired Headphones,1,11.99,03/12/19 13:16,"79 Lincoln St, New York City, NY 10001" +180260,Apple Airpods Headphones,1,150,03/18/19 12:55,"633 River St, Seattle, WA 98101" +180261,27in FHD Monitor,1,149.99,03/08/19 19:04,"670 Pine St, San Francisco, CA 94016" +180262,AAA Batteries (4-pack),1,2.99,03/24/19 22:37,"464 North St, Boston, MA 02215" +180263,AA Batteries (4-pack),1,3.84,03/26/19 13:26,"188 Jackson St, New York City, NY 10001" +180264,ThinkPad Laptop,1,999.99,03/31/19 05:29,"314 Johnson St, Austin, TX 73301" +180265,Apple Airpods Headphones,1,150,03/18/19 20:17,"229 Jefferson St, New York City, NY 10001" +180266,Wired Headphones,1,11.99,03/05/19 12:13,"691 Hill St, New York City, NY 10001" +180266,AAA Batteries (4-pack),1,2.99,03/05/19 12:13,"691 Hill St, New York City, NY 10001" +180267,Google Phone,1,600,03/30/19 20:20,"695 6th St, Atlanta, GA 30301" +180268,Apple Airpods Headphones,1,150,03/11/19 17:52,"822 Park St, Seattle, WA 98101" +180269,AAA Batteries (4-pack),3,2.99,03/31/19 17:11,"919 Washington St, Dallas, TX 75001" +180270,USB-C Charging Cable,1,11.95,03/07/19 17:40,"412 Walnut St, San Francisco, CA 94016" +180271,AAA Batteries (4-pack),1,2.99,03/03/19 21:10,"445 10th St, Los Angeles, CA 90001" +180272,Flatscreen TV,1,300,03/01/19 08:04,"80 Park St, New York City, NY 10001" +180273,Wired Headphones,1,11.99,03/29/19 21:28,"799 Spruce St, San Francisco, CA 94016" +180274,Lightning Charging Cable,1,14.95,03/10/19 13:53,"120 Sunset St, San Francisco, CA 94016" +180275,USB-C Charging Cable,1,11.95,03/18/19 12:28,"183 Park St, Austin, TX 73301" +180276,Wired Headphones,1,11.99,03/31/19 19:25,"207 Church St, Atlanta, GA 30301" +180277,Wired Headphones,1,11.99,03/31/19 21:18,"436 West St, New York City, NY 10001" +180278,Wired Headphones,1,11.99,03/23/19 13:21,"897 9th St, Dallas, TX 75001" +180279,Wired Headphones,1,11.99,03/06/19 13:36,"508 Lake St, Seattle, WA 98101" +180280,34in Ultrawide Monitor,1,379.99,03/14/19 08:14,"72 Hickory St, Portland, OR 97035" +180281,Flatscreen TV,1,300,03/30/19 12:46,"207 Center St, Portland, OR 97035" +180282,Lightning Charging Cable,1,14.95,03/04/19 15:27,"627 Walnut St, New York City, NY 10001" +180283,Bose SoundSport Headphones,1,99.99,03/07/19 21:31,"183 Willow St, San Francisco, CA 94016" +180284,USB-C Charging Cable,1,11.95,03/29/19 14:56,"902 Park St, Atlanta, GA 30301" +180285,Lightning Charging Cable,1,14.95,03/13/19 22:13,"582 Park St, Austin, TX 73301" +180286,Google Phone,1,600,03/17/19 15:34,"741 4th St, Los Angeles, CA 90001" +180286,USB-C Charging Cable,1,11.95,03/17/19 15:34,"741 4th St, Los Angeles, CA 90001" +180287,USB-C Charging Cable,1,11.95,03/01/19 10:44,"855 Johnson St, Portland, ME 04101" +180288,Wired Headphones,1,11.99,03/03/19 19:55,"491 Jackson St, Dallas, TX 75001" +180289,20in Monitor,1,109.99,03/28/19 17:41,"570 South St, Seattle, WA 98101" +180290,USB-C Charging Cable,1,11.95,03/26/19 15:06,"159 Meadow St, Atlanta, GA 30301" +180291,AAA Batteries (4-pack),1,2.99,03/03/19 11:45,"556 4th St, San Francisco, CA 94016" +180292,34in Ultrawide Monitor,1,379.99,03/25/19 11:08,"337 Meadow St, San Francisco, CA 94016" +180293,Lightning Charging Cable,1,14.95,03/22/19 19:55,"316 Center St, Los Angeles, CA 90001" +180294,34in Ultrawide Monitor,1,379.99,03/18/19 04:52,"83 Dogwood St, Boston, MA 02215" +180295,AA Batteries (4-pack),1,3.84,03/16/19 21:38,"465 Cherry St, New York City, NY 10001" +180296,34in Ultrawide Monitor,1,379.99,03/18/19 21:38,"469 1st St, Portland, OR 97035" +180297,AAA Batteries (4-pack),1,2.99,03/20/19 17:00,"997 Park St, Los Angeles, CA 90001" +180298,AA Batteries (4-pack),2,3.84,03/12/19 13:17,"445 5th St, Atlanta, GA 30301" +180299,AA Batteries (4-pack),1,3.84,03/01/19 20:12,"714 Center St, Los Angeles, CA 90001" +180300,34in Ultrawide Monitor,1,379.99,03/19/19 22:08,"357 Spruce St, New York City, NY 10001" +180301,AAA Batteries (4-pack),1,2.99,03/31/19 17:19,"954 12th St, San Francisco, CA 94016" +180302,ThinkPad Laptop,1,999.99,03/31/19 13:48,"58 Cedar St, New York City, NY 10001" +180303,27in FHD Monitor,1,149.99,03/17/19 12:13,"230 10th St, Atlanta, GA 30301" +180304,Lightning Charging Cable,1,14.95,03/12/19 18:05,"392 Johnson St, Boston, MA 02215" +180305,AAA Batteries (4-pack),2,2.99,03/13/19 11:55,"41 6th St, Atlanta, GA 30301" +180306,27in 4K Gaming Monitor,1,389.99,03/30/19 13:14,"788 Park St, Portland, ME 04101" +180307,iPhone,1,700,03/15/19 11:25,"710 Spruce St, San Francisco, CA 94016" +180308,Macbook Pro Laptop,1,1700,03/20/19 19:55,"599 North St, Dallas, TX 75001" +180309,AA Batteries (4-pack),1,3.84,03/16/19 17:48,"912 1st St, San Francisco, CA 94016" +180310,AA Batteries (4-pack),1,3.84,03/21/19 06:41,"751 Dogwood St, San Francisco, CA 94016" +180311,27in 4K Gaming Monitor,1,389.99,03/11/19 12:11,"227 Park St, Portland, OR 97035" +180312,Lightning Charging Cable,1,14.95,03/08/19 06:31,"232 Wilson St, New York City, NY 10001" +180312,34in Ultrawide Monitor,1,379.99,03/08/19 06:31,"232 Wilson St, New York City, NY 10001" +180313,Lightning Charging Cable,1,14.95,03/14/19 12:56,"177 Elm St, Boston, MA 02215" +180314,Google Phone,1,600,03/27/19 07:38,"162 Elm St, Atlanta, GA 30301" +180314,USB-C Charging Cable,1,11.95,03/27/19 07:38,"162 Elm St, Atlanta, GA 30301" +180315,AA Batteries (4-pack),1,3.84,03/15/19 10:20,"630 Park St, San Francisco, CA 94016" +180316,27in FHD Monitor,1,149.99,03/15/19 21:01,"464 Jefferson St, Austin, TX 73301" +180317,AAA Batteries (4-pack),1,2.99,03/04/19 08:54,"603 Willow St, San Francisco, CA 94016" +180318,27in 4K Gaming Monitor,1,389.99,03/20/19 20:07,"506 4th St, San Francisco, CA 94016" +180319,AA Batteries (4-pack),2,3.84,03/04/19 10:02,"692 Pine St, Los Angeles, CA 90001" +180320,AA Batteries (4-pack),1,3.84,03/20/19 10:31,"251 12th St, Dallas, TX 75001" +180321,Apple Airpods Headphones,1,150,03/25/19 11:27,"792 Johnson St, Seattle, WA 98101" +180322,iPhone,1,700,03/14/19 12:18,"535 9th St, Atlanta, GA 30301" +180323,USB-C Charging Cable,2,11.95,03/14/19 10:43,"313 Center St, Boston, MA 02215" +180324,AAA Batteries (4-pack),1,2.99,03/15/19 15:01,"846 2nd St, Boston, MA 02215" +180325,Apple Airpods Headphones,1,150,03/24/19 16:21,"32 Lincoln St, Atlanta, GA 30301" +180326,AAA Batteries (4-pack),2,2.99,03/16/19 16:23,"826 Lakeview St, Los Angeles, CA 90001" +180327,Lightning Charging Cable,1,14.95,03/29/19 12:33,"444 Wilson St, Atlanta, GA 30301" +180328,USB-C Charging Cable,1,11.95,03/13/19 19:18,"60 Hickory St, Seattle, WA 98101" +180329,34in Ultrawide Monitor,1,379.99,03/25/19 12:28,"918 Lake St, Los Angeles, CA 90001" +180330,AA Batteries (4-pack),1,3.84,03/12/19 10:44,"771 Walnut St, Boston, MA 02215" +180331,AAA Batteries (4-pack),2,2.99,03/13/19 09:34,"45 Forest St, San Francisco, CA 94016" +180332,Bose SoundSport Headphones,1,99.99,03/04/19 15:15,"568 2nd St, Los Angeles, CA 90001" +180333,Bose SoundSport Headphones,1,99.99,03/19/19 09:51,"378 Park St, Los Angeles, CA 90001" +180334,USB-C Charging Cable,1,11.95,03/26/19 19:43,"442 Cherry St, Seattle, WA 98101" +180335,Lightning Charging Cable,1,14.95,03/09/19 22:26,"989 Lincoln St, Los Angeles, CA 90001" +180336,iPhone,1,700,03/24/19 16:13,"197 12th St, New York City, NY 10001" +180337,Vareebadd Phone,1,400,03/15/19 17:55,"677 West St, San Francisco, CA 94016" +180338,AA Batteries (4-pack),1,3.84,03/31/19 12:32,"35 10th St, Austin, TX 73301" +180339,AAA Batteries (4-pack),2,2.99,03/12/19 20:00,"793 Adams St, San Francisco, CA 94016" +180340,Google Phone,1,600,03/27/19 21:56,"505 Hill St, Los Angeles, CA 90001" +180340,USB-C Charging Cable,1,11.95,03/27/19 21:56,"505 Hill St, Los Angeles, CA 90001" +180340,Bose SoundSport Headphones,1,99.99,03/27/19 21:56,"505 Hill St, Los Angeles, CA 90001" +180341,20in Monitor,1,109.99,03/27/19 23:45,"735 Lincoln St, Boston, MA 02215" +180342,AA Batteries (4-pack),1,3.84,03/20/19 09:51,"608 Johnson St, San Francisco, CA 94016" +180343,Apple Airpods Headphones,1,150,03/12/19 12:40,"918 Park St, San Francisco, CA 94016" +180344,Bose SoundSport Headphones,1,99.99,03/20/19 18:02,"784 5th St, San Francisco, CA 94016" +180345,USB-C Charging Cable,1,11.95,03/23/19 14:14,"767 11th St, San Francisco, CA 94016" +180346,Google Phone,1,600,03/17/19 14:28,"959 Willow St, San Francisco, CA 94016" +180347,AAA Batteries (4-pack),1,2.99,03/09/19 22:36,"805 11th St, Los Angeles, CA 90001" +180348,AAA Batteries (4-pack),1,2.99,03/04/19 14:38,"772 Lincoln St, Boston, MA 02215" +180349,Apple Airpods Headphones,1,150,03/25/19 21:44,"984 10th St, Los Angeles, CA 90001" +180350,27in FHD Monitor,1,149.99,03/26/19 20:15,"790 Lake St, Seattle, WA 98101" +180351,Wired Headphones,1,11.99,03/20/19 09:48,"96 4th St, Los Angeles, CA 90001" +180352,Wired Headphones,1,11.99,03/13/19 14:37,"928 Spruce St, Dallas, TX 75001" +180353,27in 4K Gaming Monitor,1,389.99,03/12/19 17:20,"58 9th St, Boston, MA 02215" +180354,Macbook Pro Laptop,1,1700,03/21/19 12:18,"465 Park St, Dallas, TX 75001" +180355,ThinkPad Laptop,1,999.99,03/19/19 16:08,"951 Lincoln St, Los Angeles, CA 90001" +180356,Lightning Charging Cable,1,14.95,03/27/19 12:57,"58 North St, Atlanta, GA 30301" +180357,Bose SoundSport Headphones,1,99.99,03/17/19 09:56,"216 Adams St, San Francisco, CA 94016" +180358,Apple Airpods Headphones,1,150,03/13/19 16:53,"192 Wilson St, New York City, NY 10001" +180359,Wired Headphones,1,11.99,03/20/19 01:36,"606 Washington St, Dallas, TX 75001" +180360,AAA Batteries (4-pack),1,2.99,03/09/19 23:59,"512 Madison St, Atlanta, GA 30301" +180361,27in FHD Monitor,1,149.99,03/21/19 12:08,"88 Ridge St, Dallas, TX 75001" +180362,Bose SoundSport Headphones,1,99.99,03/24/19 21:39,"570 Forest St, Atlanta, GA 30301" +180363,USB-C Charging Cable,1,11.95,03/28/19 10:43,"762 Lakeview St, Boston, MA 02215" +180364,Macbook Pro Laptop,1,1700,03/26/19 22:49,"190 Willow St, New York City, NY 10001" +180365,Wired Headphones,1,11.99,03/30/19 14:26,"152 Cherry St, Los Angeles, CA 90001" +180366,Apple Airpods Headphones,1,150,03/03/19 21:39,"469 4th St, Boston, MA 02215" +180367,AA Batteries (4-pack),1,3.84,03/25/19 13:53,"206 Willow St, San Francisco, CA 94016" +180368,AA Batteries (4-pack),2,3.84,03/16/19 11:25,"221 South St, San Francisco, CA 94016" +180369,iPhone,1,700,03/02/19 20:14,"541 Cedar St, Portland, ME 04101" +180369,Lightning Charging Cable,1,14.95,03/02/19 20:14,"541 Cedar St, Portland, ME 04101" +180370,USB-C Charging Cable,1,11.95,03/14/19 23:52,"104 8th St, Los Angeles, CA 90001" +180371,27in FHD Monitor,1,149.99,03/27/19 21:50,"726 Church St, Portland, OR 97035" +180372,USB-C Charging Cable,1,11.95,03/21/19 01:11,"365 Madison St, New York City, NY 10001" +180373,34in Ultrawide Monitor,1,379.99,03/20/19 22:52,"257 7th St, Boston, MA 02215" +180374,20in Monitor,1,109.99,03/22/19 13:08,"205 Center St, New York City, NY 10001" +180375,Wired Headphones,1,11.99,03/13/19 23:53,"950 13th St, Seattle, WA 98101" +180376,AA Batteries (4-pack),1,3.84,03/15/19 22:29,"592 Johnson St, San Francisco, CA 94016" +180377,AAA Batteries (4-pack),1,2.99,03/23/19 17:38,"318 Highland St, Dallas, TX 75001" +180378,AA Batteries (4-pack),1,3.84,03/25/19 17:35,"332 Ridge St, Seattle, WA 98101" +180379,Wired Headphones,1,11.99,03/25/19 09:23,"25 Jackson St, Boston, MA 02215" +180380,Lightning Charging Cable,1,14.95,03/23/19 19:22,"256 Park St, Los Angeles, CA 90001" +180381,27in FHD Monitor,1,149.99,03/13/19 12:25,"190 Lake St, Boston, MA 02215" +180382,AA Batteries (4-pack),1,3.84,03/31/19 09:20,"220 Ridge St, Dallas, TX 75001" +180383,USB-C Charging Cable,1,11.95,03/27/19 10:49,"372 13th St, Los Angeles, CA 90001" +180384,34in Ultrawide Monitor,1,379.99,03/18/19 15:42,"185 Forest St, Dallas, TX 75001" +180385,Apple Airpods Headphones,1,150,03/12/19 16:11,"855 North St, San Francisco, CA 94016" +180386,Lightning Charging Cable,1,14.95,03/31/19 16:51,"717 Maple St, San Francisco, CA 94016" +180387,Apple Airpods Headphones,1,150,03/09/19 07:41,"739 Meadow St, Boston, MA 02215" +180388,USB-C Charging Cable,1,11.95,03/09/19 17:58,"12 Madison St, San Francisco, CA 94016" +180389,AA Batteries (4-pack),1,3.84,03/20/19 14:05,"119 Madison St, Los Angeles, CA 90001" +180390,AAA Batteries (4-pack),1,2.99,03/22/19 10:52,"799 North St, Austin, TX 73301" +180391,27in FHD Monitor,1,149.99,03/10/19 23:54,"901 5th St, New York City, NY 10001" +180392,iPhone,1,700,03/16/19 11:29,"515 Ridge St, Seattle, WA 98101" +180392,Apple Airpods Headphones,1,150,03/16/19 11:29,"515 Ridge St, Seattle, WA 98101" +180392,Wired Headphones,1,11.99,03/16/19 11:29,"515 Ridge St, Seattle, WA 98101" +180393,Bose SoundSport Headphones,1,99.99,03/12/19 12:42,"762 Ridge St, San Francisco, CA 94016" +180394,USB-C Charging Cable,1,11.95,03/24/19 20:28,"740 North St, San Francisco, CA 94016" +180395,LG Washing Machine,1,600.0,03/06/19 23:10,"34 Main St, Austin, TX 73301" +180396,27in FHD Monitor,1,149.99,03/11/19 02:56,"597 8th St, Los Angeles, CA 90001" +180397,AA Batteries (4-pack),2,3.84,03/20/19 13:09,"506 Wilson St, San Francisco, CA 94016" +180398,AA Batteries (4-pack),1,3.84,03/20/19 10:46,"491 Chestnut St, Los Angeles, CA 90001" +180399,Wired Headphones,1,11.99,03/26/19 09:40,"912 Meadow St, Los Angeles, CA 90001" +180400,Flatscreen TV,1,300,03/19/19 00:10,"773 Maple St, San Francisco, CA 94016" +180401,AA Batteries (4-pack),1,3.84,03/09/19 11:55,"449 7th St, Portland, OR 97035" +180402,USB-C Charging Cable,1,11.95,03/07/19 09:15,"236 Hill St, San Francisco, CA 94016" +180403,Apple Airpods Headphones,1,150,03/17/19 15:05,"709 North St, Los Angeles, CA 90001" +180404,27in 4K Gaming Monitor,1,389.99,03/15/19 21:44,"638 9th St, Boston, MA 02215" +180405,27in FHD Monitor,1,149.99,03/17/19 13:21,"235 Chestnut St, Los Angeles, CA 90001" +180406,AA Batteries (4-pack),1,3.84,03/25/19 16:02,"813 2nd St, Boston, MA 02215" +180407,Apple Airpods Headphones,1,150,03/20/19 16:07,"81 2nd St, Austin, TX 73301" +180408,Wired Headphones,1,11.99,03/09/19 12:21,"848 Ridge St, Atlanta, GA 30301" +180409,USB-C Charging Cable,1,11.95,03/13/19 15:41,"332 12th St, Boston, MA 02215" +180410,ThinkPad Laptop,1,999.99,03/04/19 18:59,"666 Church St, Dallas, TX 75001" +180411,USB-C Charging Cable,1,11.95,03/27/19 12:26,"901 North St, New York City, NY 10001" +180412,AAA Batteries (4-pack),2,2.99,03/01/19 22:00,"930 6th St, Seattle, WA 98101" +180413,AA Batteries (4-pack),1,3.84,03/22/19 21:48,"560 Lake St, Boston, MA 02215" +180414,34in Ultrawide Monitor,1,379.99,03/21/19 14:54,"80 12th St, New York City, NY 10001" +180414,27in 4K Gaming Monitor,1,389.99,03/21/19 14:54,"80 12th St, New York City, NY 10001" +180415,27in FHD Monitor,1,149.99,03/22/19 19:36,"642 Maple St, Boston, MA 02215" +180416,Bose SoundSport Headphones,1,99.99,03/06/19 21:34,"658 Pine St, San Francisco, CA 94016" +180417,AA Batteries (4-pack),1,3.84,03/18/19 11:55,"554 Washington St, San Francisco, CA 94016" +180418,Lightning Charging Cable,1,14.95,03/22/19 11:45,"46 Madison St, Seattle, WA 98101" +180419,USB-C Charging Cable,1,11.95,03/23/19 19:05,"526 West St, Dallas, TX 75001" +180420,AAA Batteries (4-pack),2,2.99,03/13/19 13:46,"781 6th St, San Francisco, CA 94016" +180421,34in Ultrawide Monitor,1,379.99,03/29/19 21:31,"75 Sunset St, San Francisco, CA 94016" +180422,Bose SoundSport Headphones,1,99.99,03/14/19 22:50,"369 10th St, Boston, MA 02215" +180423,Bose SoundSport Headphones,1,99.99,03/11/19 18:11,"797 Elm St, Boston, MA 02215" +180424,Vareebadd Phone,1,400,03/19/19 21:01,"888 Lake St, Los Angeles, CA 90001" +180424,USB-C Charging Cable,1,11.95,03/19/19 21:01,"888 Lake St, Los Angeles, CA 90001" +180425,AA Batteries (4-pack),1,3.84,03/31/19 13:38,"181 Lake St, San Francisco, CA 94016" +180426,USB-C Charging Cable,1,11.95,03/13/19 15:13,"284 Jefferson St, San Francisco, CA 94016" +180427,iPhone,1,700,03/17/19 09:58,"451 Wilson St, New York City, NY 10001" +180428,Wired Headphones,1,11.99,03/13/19 11:19,"502 Park St, San Francisco, CA 94016" +180429,Lightning Charging Cable,1,14.95,03/12/19 11:09,"496 Lake St, New York City, NY 10001" +180430,Wired Headphones,1,11.99,03/26/19 18:07,"92 South St, Dallas, TX 75001" +180431,AAA Batteries (4-pack),1,2.99,03/19/19 06:50,"532 Madison St, San Francisco, CA 94016" +180432,20in Monitor,2,109.99,03/21/19 23:46,"215 4th St, Boston, MA 02215" +180433,AAA Batteries (4-pack),1,2.99,03/27/19 21:30,"854 Center St, Dallas, TX 75001" +180434,Wired Headphones,1,11.99,03/10/19 13:14,"782 Meadow St, Los Angeles, CA 90001" +180435,Macbook Pro Laptop,1,1700,03/17/19 14:02,"241 7th St, Los Angeles, CA 90001" +180436,Wired Headphones,1,11.99,03/08/19 11:00,"907 Spruce St, New York City, NY 10001" +180437,27in 4K Gaming Monitor,1,389.99,03/31/19 13:25,"477 12th St, New York City, NY 10001" +180438,Lightning Charging Cable,1,14.95,03/15/19 10:18,"24 13th St, Seattle, WA 98101" +180439,iPhone,1,700,03/01/19 16:42,"3 Forest St, New York City, NY 10001" +180439,Lightning Charging Cable,1,14.95,03/01/19 16:42,"3 Forest St, New York City, NY 10001" +180440,Lightning Charging Cable,1,14.95,03/07/19 16:45,"326 10th St, San Francisco, CA 94016" +180441,USB-C Charging Cable,1,11.95,03/26/19 20:08,"262 Lincoln St, Portland, OR 97035" +180442,iPhone,1,700,03/16/19 11:13,"180 Highland St, Boston, MA 02215" +180443,34in Ultrawide Monitor,1,379.99,03/12/19 20:02,"528 Wilson St, Austin, TX 73301" +180444,USB-C Charging Cable,1,11.95,03/13/19 14:47,"611 Walnut St, Seattle, WA 98101" +180445,USB-C Charging Cable,1,11.95,03/03/19 06:40,"498 14th St, San Francisco, CA 94016" +180446,34in Ultrawide Monitor,1,379.99,03/06/19 20:17,"495 North St, Los Angeles, CA 90001" +180447,Bose SoundSport Headphones,1,99.99,03/21/19 11:46,"135 11th St, San Francisco, CA 94016" +,,,,, +180448,USB-C Charging Cable,1,11.95,03/20/19 08:35,"298 13th St, San Francisco, CA 94016" +180449,Bose SoundSport Headphones,1,99.99,03/30/19 14:38,"845 Spruce St, Los Angeles, CA 90001" +180450,Vareebadd Phone,1,400,03/08/19 21:42,"135 Ridge St, New York City, NY 10001" +180451,Lightning Charging Cable,1,14.95,03/04/19 13:46,"16 10th St, Boston, MA 02215" +180452,Bose SoundSport Headphones,1,99.99,03/07/19 10:41,"621 Jefferson St, San Francisco, CA 94016" +180453,Bose SoundSport Headphones,2,99.99,03/13/19 17:02,"23 Willow St, Dallas, TX 75001" +180454,Lightning Charging Cable,1,14.95,03/02/19 12:13,"987 Lakeview St, Seattle, WA 98101" +180455,Lightning Charging Cable,1,14.95,03/05/19 14:33,"20 8th St, Seattle, WA 98101" +180456,AA Batteries (4-pack),1,3.84,03/14/19 17:49,"329 1st St, San Francisco, CA 94016" +180457,Google Phone,1,600,03/09/19 19:42,"620 Johnson St, New York City, NY 10001" +,,,,, +180458,AA Batteries (4-pack),1,3.84,03/05/19 15:02,"241 4th St, Atlanta, GA 30301" +180458,Apple Airpods Headphones,1,150,03/05/19 15:02,"241 4th St, Atlanta, GA 30301" +180459,Flatscreen TV,1,300,03/15/19 18:57,"502 Church St, New York City, NY 10001" +180460,AAA Batteries (4-pack),4,2.99,03/29/19 19:05,"842 Pine St, Atlanta, GA 30301" +180460,Macbook Pro Laptop,1,1700,03/29/19 19:05,"842 Pine St, Atlanta, GA 30301" +180461,iPhone,1,700,03/14/19 14:50,"330 Maple St, Atlanta, GA 30301" +180462,AA Batteries (4-pack),2,3.84,03/04/19 09:05,"392 Jackson St, Portland, OR 97035" +180462,Wired Headphones,1,11.99,03/04/19 09:05,"392 Jackson St, Portland, OR 97035" +180463,USB-C Charging Cable,1,11.95,03/08/19 22:54,"349 12th St, San Francisco, CA 94016" +180464,Macbook Pro Laptop,1,1700,03/25/19 21:16,"888 11th St, San Francisco, CA 94016" +180465,USB-C Charging Cable,1,11.95,03/03/19 10:40,"913 6th St, San Francisco, CA 94016" +180466,Wired Headphones,1,11.99,03/03/19 21:43,"879 Lake St, New York City, NY 10001" +180467,Lightning Charging Cable,1,14.95,03/03/19 19:01,"595 Lake St, Dallas, TX 75001" +180468,Apple Airpods Headphones,1,150,03/17/19 18:50,"52 Jackson St, San Francisco, CA 94016" +180469,34in Ultrawide Monitor,1,379.99,03/06/19 09:20,"405 Center St, Portland, ME 04101" +180470,USB-C Charging Cable,1,11.95,03/01/19 20:45,"530 South St, Austin, TX 73301" +180471,USB-C Charging Cable,1,11.95,03/31/19 12:11,"473 14th St, New York City, NY 10001" +180472,iPhone,1,700,03/06/19 19:04,"50 7th St, San Francisco, CA 94016" +180473,Apple Airpods Headphones,1,150,03/05/19 18:53,"948 2nd St, Los Angeles, CA 90001" +180474,27in FHD Monitor,1,149.99,03/05/19 19:10,"397 Cherry St, San Francisco, CA 94016" +180475,27in 4K Gaming Monitor,1,389.99,03/12/19 13:08,"55 River St, San Francisco, CA 94016" +180476,Wired Headphones,1,11.99,03/21/19 11:46,"699 Pine St, Seattle, WA 98101" +180477,AA Batteries (4-pack),1,3.84,03/25/19 17:47,"705 8th St, Seattle, WA 98101" +180478,AA Batteries (4-pack),1,3.84,03/31/19 20:17,"603 14th St, Boston, MA 02215" +180479,AA Batteries (4-pack),1,3.84,03/01/19 17:10,"280 1st St, Austin, TX 73301" +180480,34in Ultrawide Monitor,1,379.99,03/30/19 21:33,"665 Ridge St, Los Angeles, CA 90001" +180481,Apple Airpods Headphones,1,150,03/28/19 21:10,"648 Elm St, San Francisco, CA 94016" +180482,AA Batteries (4-pack),1,3.84,03/10/19 18:30,"282 14th St, San Francisco, CA 94016" +180483,Wired Headphones,1,11.99,03/22/19 08:30,"740 10th St, Portland, OR 97035" +180484,USB-C Charging Cable,1,11.95,03/16/19 16:16,"308 River St, Seattle, WA 98101" +180485,Lightning Charging Cable,1,14.95,03/29/19 16:07,"78 Cherry St, Portland, OR 97035" +180486,Lightning Charging Cable,1,14.95,03/23/19 22:41,"882 Park St, New York City, NY 10001" +180487,Bose SoundSport Headphones,1,99.99,03/06/19 14:53,"68 1st St, New York City, NY 10001" +180488,USB-C Charging Cable,1,11.95,03/10/19 17:51,"712 Cherry St, Dallas, TX 75001" +180489,Bose SoundSport Headphones,1,99.99,03/15/19 09:57,"56 Willow St, Los Angeles, CA 90001" +180490,USB-C Charging Cable,2,11.95,03/08/19 19:38,"294 11th St, Boston, MA 02215" +180491,27in 4K Gaming Monitor,1,389.99,03/30/19 11:50,"747 Washington St, New York City, NY 10001" +180492,Apple Airpods Headphones,1,150,03/14/19 22:05,"766 13th St, Los Angeles, CA 90001" +180493,27in FHD Monitor,1,149.99,03/11/19 10:15,"174 Washington St, San Francisco, CA 94016" +180494,AAA Batteries (4-pack),1,2.99,03/01/19 08:29,"990 Center St, San Francisco, CA 94016" +180495,Wired Headphones,2,11.99,03/28/19 15:33,"209 2nd St, Portland, OR 97035" +180496,Apple Airpods Headphones,1,150,03/29/19 21:17,"854 Cedar St, Los Angeles, CA 90001" +180497,Apple Airpods Headphones,1,150,03/25/19 17:46,"258 Meadow St, New York City, NY 10001" +180498,Google Phone,1,600,03/15/19 12:35,"329 Sunset St, New York City, NY 10001" +180499,Lightning Charging Cable,1,14.95,03/13/19 16:58,"378 Pine St, Dallas, TX 75001" +180500,20in Monitor,1,109.99,03/26/19 18:49,"428 Wilson St, Seattle, WA 98101" +180501,AAA Batteries (4-pack),1,2.99,03/28/19 19:20,"177 Pine St, Seattle, WA 98101" +180502,AAA Batteries (4-pack),2,2.99,03/03/19 17:51,"607 Lake St, Los Angeles, CA 90001" +180503,Lightning Charging Cable,1,14.95,03/07/19 18:45,"952 Washington St, Austin, TX 73301" +180504,Apple Airpods Headphones,1,150,03/12/19 20:52,"531 Maple St, San Francisco, CA 94016" +180505,27in FHD Monitor,1,149.99,03/28/19 14:14,"121 Elm St, Atlanta, GA 30301" +180506,AA Batteries (4-pack),2,3.84,03/04/19 10:37,"327 12th St, Boston, MA 02215" +180507,Apple Airpods Headphones,1,150,03/02/19 10:18,"705 8th St, Portland, OR 97035" +180508,34in Ultrawide Monitor,1,379.99,03/11/19 17:20,"547 Hickory St, San Francisco, CA 94016" +180509,Flatscreen TV,1,300,03/22/19 14:08,"288 Adams St, San Francisco, CA 94016" +180510,34in Ultrawide Monitor,1,379.99,03/25/19 07:30,"841 Lincoln St, Los Angeles, CA 90001" +180511,Lightning Charging Cable,1,14.95,03/28/19 18:56,"832 Forest St, Los Angeles, CA 90001" +180512,Bose SoundSport Headphones,1,99.99,03/30/19 16:55,"609 9th St, Austin, TX 73301" +180513,27in FHD Monitor,1,149.99,03/23/19 13:56,"727 Forest St, San Francisco, CA 94016" +180514,AA Batteries (4-pack),2,3.84,03/17/19 14:57,"698 Main St, Los Angeles, CA 90001" +180515,Macbook Pro Laptop,1,1700,03/06/19 14:54,"696 Lake St, Los Angeles, CA 90001" +180516,Macbook Pro Laptop,1,1700,03/10/19 16:57,"699 12th St, Atlanta, GA 30301" +180517,Lightning Charging Cable,1,14.95,03/06/19 08:27,"196 Forest St, New York City, NY 10001" +180518,AA Batteries (4-pack),2,3.84,03/07/19 13:38,"6 Lakeview St, Atlanta, GA 30301" +180519,Wired Headphones,1,11.99,03/17/19 16:22,"840 7th St, Los Angeles, CA 90001" +180520,Wired Headphones,1,11.99,03/13/19 22:20,"390 Willow St, Seattle, WA 98101" +180521,Apple Airpods Headphones,1,150,03/05/19 20:09,"634 Ridge St, San Francisco, CA 94016" +180522,27in 4K Gaming Monitor,1,389.99,03/28/19 18:43,"866 Washington St, New York City, NY 10001" +180523,ThinkPad Laptop,1,999.99,03/08/19 11:09,"787 Ridge St, San Francisco, CA 94016" +180524,Bose SoundSport Headphones,1,99.99,03/06/19 11:50,"592 Spruce St, San Francisco, CA 94016" +180525,Google Phone,1,600,03/31/19 15:27,"277 8th St, Seattle, WA 98101" +180525,USB-C Charging Cable,1,11.95,03/31/19 15:27,"277 8th St, Seattle, WA 98101" +180526,USB-C Charging Cable,1,11.95,03/25/19 20:51,"252 Chestnut St, Dallas, TX 75001" +180527,Wired Headphones,1,11.99,03/30/19 13:07,"486 11th St, Seattle, WA 98101" +180528,Apple Airpods Headphones,1,150,03/03/19 22:07,"596 River St, Austin, TX 73301" +180529,20in Monitor,1,109.99,03/02/19 02:42,"309 Ridge St, New York City, NY 10001" +180530,Lightning Charging Cable,1,14.95,03/15/19 19:52,"186 Main St, Los Angeles, CA 90001" +180531,Wired Headphones,1,11.99,03/13/19 08:12,"54 Forest St, Boston, MA 02215" +180532,USB-C Charging Cable,1,11.95,03/23/19 16:38,"335 Adams St, Los Angeles, CA 90001" +180533,USB-C Charging Cable,1,11.95,03/06/19 10:00,"174 Park St, Seattle, WA 98101" +180534,AAA Batteries (4-pack),1,2.99,03/24/19 19:51,"546 Pine St, San Francisco, CA 94016" +180535,Google Phone,1,600,03/09/19 13:09,"886 Center St, Portland, OR 97035" +180536,ThinkPad Laptop,1,999.99,03/28/19 01:08,"244 Johnson St, San Francisco, CA 94016" +180537,Bose SoundSport Headphones,1,99.99,03/01/19 11:34,"904 12th St, Los Angeles, CA 90001" +180538,20in Monitor,1,109.99,03/08/19 12:59,"453 1st St, San Francisco, CA 94016" +180539,Apple Airpods Headphones,1,150,03/10/19 18:53,"761 Lakeview St, Seattle, WA 98101" +180540,Lightning Charging Cable,1,14.95,03/11/19 17:40,"399 Washington St, New York City, NY 10001" +180541,27in 4K Gaming Monitor,1,389.99,03/12/19 18:22,"109 12th St, San Francisco, CA 94016" +180542,AA Batteries (4-pack),1,3.84,03/11/19 20:38,"822 South St, Los Angeles, CA 90001" +180543,Apple Airpods Headphones,1,150,03/21/19 12:34,"923 Main St, San Francisco, CA 94016" +180544,AAA Batteries (4-pack),1,2.99,03/10/19 18:31,"611 Maple St, Dallas, TX 75001" +180545,AA Batteries (4-pack),1,3.84,03/07/19 07:39,"292 7th St, New York City, NY 10001" +180546,USB-C Charging Cable,1,11.95,03/23/19 09:22,"702 4th St, San Francisco, CA 94016" +180547,USB-C Charging Cable,1,11.95,03/05/19 11:27,"802 Meadow St, Los Angeles, CA 90001" +180548,Apple Airpods Headphones,1,150,03/10/19 17:54,"27 Lakeview St, San Francisco, CA 94016" +180549,Google Phone,1,600,03/10/19 18:59,"997 South St, Los Angeles, CA 90001" +180550,AAA Batteries (4-pack),1,2.99,03/16/19 15:29,"904 Maple St, Los Angeles, CA 90001" +180551,20in Monitor,1,109.99,03/22/19 12:07,"720 1st St, San Francisco, CA 94016" +180552,20in Monitor,1,109.99,03/25/19 06:06,"945 Walnut St, Atlanta, GA 30301" +180552,AAA Batteries (4-pack),1,2.99,03/25/19 06:06,"945 Walnut St, Atlanta, GA 30301" +180553,Wired Headphones,1,11.99,03/14/19 20:17,"737 Pine St, Atlanta, GA 30301" +180554,ThinkPad Laptop,1,999.99,03/10/19 10:26,"990 5th St, San Francisco, CA 94016" +180555,Bose SoundSport Headphones,1,99.99,03/23/19 19:30,"821 Church St, Los Angeles, CA 90001" +180556,USB-C Charging Cable,1,11.95,03/08/19 12:28,"145 West St, Portland, OR 97035" +180557,Macbook Pro Laptop,1,1700,03/01/19 08:59,"791 Washington St, San Francisco, CA 94016" +180558,Bose SoundSport Headphones,1,99.99,03/24/19 14:42,"455 South St, Los Angeles, CA 90001" +180559,Wired Headphones,1,11.99,03/26/19 18:25,"183 Lake St, San Francisco, CA 94016" +180560,USB-C Charging Cable,1,11.95,03/15/19 10:53,"21 5th St, Seattle, WA 98101" +180561,USB-C Charging Cable,1,11.95,03/19/19 00:49,"310 Johnson St, New York City, NY 10001" +180562,27in 4K Gaming Monitor,1,389.99,03/11/19 20:09,"282 11th St, Seattle, WA 98101" +180563,AA Batteries (4-pack),2,3.84,03/08/19 12:15,"818 Wilson St, Los Angeles, CA 90001" +180564,27in 4K Gaming Monitor,1,389.99,03/17/19 09:20,"133 9th St, Los Angeles, CA 90001" +180565,Google Phone,1,600,03/21/19 13:44,"394 8th St, Atlanta, GA 30301" +180566,USB-C Charging Cable,2,11.95,03/27/19 12:59,"267 Lincoln St, Los Angeles, CA 90001" +180567,27in 4K Gaming Monitor,1,389.99,03/19/19 15:27,"53 9th St, Boston, MA 02215" +180568,Apple Airpods Headphones,1,150,03/21/19 18:18,"613 10th St, Los Angeles, CA 90001" +180569,Lightning Charging Cable,1,14.95,03/16/19 21:02,"454 7th St, Boston, MA 02215" +180570,AA Batteries (4-pack),2,3.84,03/07/19 23:32,"536 Willow St, New York City, NY 10001" +180571,34in Ultrawide Monitor,1,379.99,03/01/19 07:15,"975 1st St, New York City, NY 10001" +180572,AA Batteries (4-pack),1,3.84,03/08/19 08:54,"856 Sunset St, Dallas, TX 75001" +180573,USB-C Charging Cable,3,11.95,03/08/19 12:52,"798 Lake St, Portland, OR 97035" +180574,AA Batteries (4-pack),1,3.84,03/06/19 12:52,"700 West St, Los Angeles, CA 90001" +180575,Google Phone,1,600,03/24/19 10:23,"501 Maple St, Los Angeles, CA 90001" +180576,AAA Batteries (4-pack),1,2.99,03/21/19 17:28,"305 Pine St, Boston, MA 02215" +180577,Wired Headphones,1,11.99,03/26/19 23:35,"319 Cherry St, San Francisco, CA 94016" +180578,27in FHD Monitor,1,149.99,03/16/19 16:28,"851 Chestnut St, San Francisco, CA 94016" +180579,AA Batteries (4-pack),2,3.84,03/27/19 18:49,"18 Sunset St, Atlanta, GA 30301" +180580,AA Batteries (4-pack),3,3.84,03/26/19 12:36,"594 10th St, San Francisco, CA 94016" +180581,Lightning Charging Cable,1,14.95,03/08/19 10:25,"239 4th St, Los Angeles, CA 90001" +180582,Google Phone,1,600,03/21/19 19:36,"641 Willow St, San Francisco, CA 94016" +180582,USB-C Charging Cable,1,11.95,03/21/19 19:36,"641 Willow St, San Francisco, CA 94016" +180583,Wired Headphones,1,11.99,03/16/19 17:35,"571 1st St, New York City, NY 10001" +180584,Lightning Charging Cable,1,14.95,03/30/19 14:21,"584 Johnson St, San Francisco, CA 94016" +180585,Wired Headphones,2,11.99,03/18/19 11:25,"998 1st St, San Francisco, CA 94016" +180586,27in 4K Gaming Monitor,1,389.99,03/19/19 08:41,"4 Elm St, Dallas, TX 75001" +180587,AAA Batteries (4-pack),1,2.99,03/21/19 22:37,"670 Center St, Atlanta, GA 30301" +180588,LG Washing Machine,1,600.0,03/10/19 19:09,"63 Hickory St, Seattle, WA 98101" +180589,AA Batteries (4-pack),1,3.84,03/31/19 11:22,"847 Cedar St, Atlanta, GA 30301" +180590,Lightning Charging Cable,1,14.95,03/31/19 06:28,"252 Jackson St, Los Angeles, CA 90001" +180591,27in FHD Monitor,1,149.99,03/16/19 00:56,"283 Lake St, San Francisco, CA 94016" +180592,Wired Headphones,1,11.99,03/03/19 21:43,"971 West St, San Francisco, CA 94016" +180593,Wired Headphones,1,11.99,03/31/19 10:24,"117 Cherry St, Seattle, WA 98101" +180594,27in FHD Monitor,1,149.99,03/16/19 12:09,"561 Ridge St, San Francisco, CA 94016" +180594,Bose SoundSport Headphones,1,99.99,03/16/19 12:09,"561 Ridge St, San Francisco, CA 94016" +180595,iPhone,1,700,03/25/19 07:07,"597 Main St, Austin, TX 73301" +180596,Bose SoundSport Headphones,1,99.99,03/29/19 19:47,"783 Elm St, San Francisco, CA 94016" +180597,Apple Airpods Headphones,1,150,03/18/19 02:32,"552 Meadow St, Los Angeles, CA 90001" +180598,USB-C Charging Cable,1,11.95,03/07/19 09:34,"846 Cherry St, New York City, NY 10001" +180599,Wired Headphones,1,11.99,03/16/19 14:37,"632 Lincoln St, San Francisco, CA 94016" +180600,Vareebadd Phone,1,400,03/24/19 08:53,"180 Maple St, Portland, OR 97035" +180601,27in FHD Monitor,1,149.99,03/29/19 13:23,"694 Forest St, New York City, NY 10001" +180602,Wired Headphones,1,11.99,03/21/19 16:11,"388 Elm St, San Francisco, CA 94016" +180603,Bose SoundSport Headphones,1,99.99,03/29/19 00:15,"361 6th St, New York City, NY 10001" +180604,Flatscreen TV,1,300,03/15/19 14:36,"192 1st St, Dallas, TX 75001" +180605,AAA Batteries (4-pack),1,2.99,03/18/19 16:14,"27 Jefferson St, Portland, OR 97035" +180606,AAA Batteries (4-pack),3,2.99,03/23/19 21:22,"698 Forest St, Dallas, TX 75001" +180607,Lightning Charging Cable,1,14.95,03/27/19 18:41,"725 11th St, Dallas, TX 75001" +180608,USB-C Charging Cable,1,11.95,03/18/19 00:01,"87 Jefferson St, Austin, TX 73301" +180609,AAA Batteries (4-pack),1,2.99,03/09/19 17:16,"843 7th St, San Francisco, CA 94016" +180610,34in Ultrawide Monitor,1,379.99,03/13/19 09:13,"398 Hickory St, San Francisco, CA 94016" +180611,USB-C Charging Cable,1,11.95,03/28/19 20:19,"409 Ridge St, Dallas, TX 75001" +180612,AA Batteries (4-pack),1,3.84,03/14/19 21:33,"541 Wilson St, San Francisco, CA 94016" +180613,Lightning Charging Cable,1,14.95,03/16/19 17:35,"356 10th St, Seattle, WA 98101" +180614,Flatscreen TV,1,300,03/19/19 20:51,"301 Sunset St, Los Angeles, CA 90001" +180615,Lightning Charging Cable,1,14.95,03/31/19 12:45,"224 Lake St, San Francisco, CA 94016" +180616,USB-C Charging Cable,1,11.95,03/30/19 21:39,"419 River St, Portland, ME 04101" +180617,34in Ultrawide Monitor,1,379.99,03/06/19 20:40,"615 Johnson St, Portland, OR 97035" +180618,USB-C Charging Cable,1,11.95,03/02/19 20:04,"527 Ridge St, Boston, MA 02215" +180619,Flatscreen TV,1,300,03/19/19 11:52,"639 Spruce St, Boston, MA 02215" +180620,AAA Batteries (4-pack),3,2.99,03/16/19 19:05,"898 1st St, Boston, MA 02215" +180621,Lightning Charging Cable,1,14.95,03/23/19 06:09,"217 Sunset St, San Francisco, CA 94016" +180622,USB-C Charging Cable,1,11.95,03/12/19 05:50,"176 11th St, San Francisco, CA 94016" +180623,Lightning Charging Cable,1,14.95,03/27/19 19:39,"960 Ridge St, Boston, MA 02215" +180624,AAA Batteries (4-pack),1,2.99,03/04/19 10:47,"400 Hickory St, Dallas, TX 75001" +180625,Google Phone,1,600,03/11/19 07:28,"931 Forest St, Atlanta, GA 30301" +180625,Macbook Pro Laptop,1,1700,03/11/19 07:28,"931 Forest St, Atlanta, GA 30301" +180626,34in Ultrawide Monitor,1,379.99,03/08/19 15:25,"177 Forest St, Seattle, WA 98101" +180627,Macbook Pro Laptop,1,1700,03/15/19 08:36,"515 Hill St, Dallas, TX 75001" +180628,Lightning Charging Cable,1,14.95,03/02/19 23:53,"202 Meadow St, Atlanta, GA 30301" +180629,27in FHD Monitor,1,149.99,03/31/19 16:25,"818 Cedar St, Atlanta, GA 30301" +180630,Flatscreen TV,1,300,03/08/19 20:12,"106 Pine St, Boston, MA 02215" +180631,Lightning Charging Cable,1,14.95,03/10/19 20:50,"729 Hickory St, New York City, NY 10001" +180632,USB-C Charging Cable,1,11.95,03/26/19 19:43,"210 Johnson St, Boston, MA 02215" +180633,Bose SoundSport Headphones,1,99.99,03/23/19 15:14,"155 11th St, Seattle, WA 98101" +180634,Lightning Charging Cable,1,14.95,03/07/19 07:49,"700 Lakeview St, Dallas, TX 75001" +180635,AAA Batteries (4-pack),2,2.99,03/23/19 09:08,"116 Wilson St, New York City, NY 10001" +180636,Lightning Charging Cable,1,14.95,03/11/19 08:10,"28 Main St, Atlanta, GA 30301" +180637,27in 4K Gaming Monitor,1,389.99,03/27/19 22:08,"189 Spruce St, New York City, NY 10001" +180638,27in 4K Gaming Monitor,1,389.99,03/26/19 23:39,"131 Cedar St, Portland, OR 97035" +180639,Google Phone,1,600,03/14/19 10:42,"525 Elm St, Los Angeles, CA 90001" +180640,USB-C Charging Cable,1,11.95,03/25/19 00:26,"790 Main St, Austin, TX 73301" +180641,Lightning Charging Cable,1,14.95,03/16/19 18:42,"168 South St, New York City, NY 10001" +180642,Wired Headphones,1,11.99,03/07/19 12:37,"234 13th St, Boston, MA 02215" +180643,Bose SoundSport Headphones,1,99.99,03/06/19 13:12,"828 Wilson St, Austin, TX 73301" +180644,Lightning Charging Cable,1,14.95,03/09/19 21:56,"498 Hickory St, Seattle, WA 98101" +180645,AAA Batteries (4-pack),1,2.99,03/14/19 08:26,"817 Hickory St, Atlanta, GA 30301" +180646,Wired Headphones,1,11.99,03/23/19 15:50,"996 Wilson St, New York City, NY 10001" +180647,iPhone,1,700,03/30/19 12:12,"790 5th St, Los Angeles, CA 90001" +180648,Google Phone,1,600,03/09/19 23:19,"254 Forest St, San Francisco, CA 94016" +180649,AA Batteries (4-pack),1,3.84,03/13/19 17:32,"17 11th St, New York City, NY 10001" +180650,AA Batteries (4-pack),1,3.84,03/22/19 21:41,"603 1st St, New York City, NY 10001" +180651,AAA Batteries (4-pack),1,2.99,03/14/19 14:27,"278 Chestnut St, San Francisco, CA 94016" +180652,Bose SoundSport Headphones,1,99.99,03/24/19 11:40,"581 Adams St, Portland, OR 97035" +180653,Google Phone,1,600,03/22/19 00:33,"850 Madison St, Dallas, TX 75001" +180654,Apple Airpods Headphones,1,150,03/26/19 21:00,"547 Spruce St, San Francisco, CA 94016" +180655,USB-C Charging Cable,1,11.95,03/04/19 17:28,"6 Center St, New York City, NY 10001" +180656,Wired Headphones,1,11.99,03/10/19 12:02,"735 Hickory St, New York City, NY 10001" +180657,AA Batteries (4-pack),1,3.84,03/23/19 20:57,"684 Cherry St, Dallas, TX 75001" +180658,Lightning Charging Cable,1,14.95,03/21/19 18:12,"81 Forest St, Austin, TX 73301" +180659,AAA Batteries (4-pack),1,2.99,03/18/19 07:43,"965 Church St, San Francisco, CA 94016" +180660,Lightning Charging Cable,1,14.95,03/06/19 20:26,"214 12th St, Los Angeles, CA 90001" +180661,AAA Batteries (4-pack),1,2.99,03/09/19 07:45,"125 Main St, Dallas, TX 75001" +180662,27in 4K Gaming Monitor,1,389.99,03/18/19 20:27,"841 South St, Boston, MA 02215" +180663,USB-C Charging Cable,1,11.95,03/08/19 23:40,"222 Hickory St, Seattle, WA 98101" +180664,USB-C Charging Cable,1,11.95,03/31/19 18:51,"974 Chestnut St, San Francisco, CA 94016" +180665,ThinkPad Laptop,1,999.99,03/04/19 07:41,"193 1st St, New York City, NY 10001" +180666,USB-C Charging Cable,1,11.95,03/30/19 13:30,"751 5th St, Atlanta, GA 30301" +180667,USB-C Charging Cable,1,11.95,03/29/19 09:53,"32 8th St, San Francisco, CA 94016" +180668,Lightning Charging Cable,1,14.95,03/27/19 15:43,"7 8th St, Los Angeles, CA 90001" +180669,Flatscreen TV,1,300,03/10/19 19:12,"522 West St, Los Angeles, CA 90001" +180670,iPhone,1,700,03/09/19 13:22,"536 Center St, New York City, NY 10001" +180671,Apple Airpods Headphones,1,150,03/07/19 20:20,"736 Wilson St, San Francisco, CA 94016" +180672,Wired Headphones,1,11.99,03/09/19 15:56,"846 8th St, New York City, NY 10001" +180673,USB-C Charging Cable,1,11.95,03/24/19 07:27,"395 6th St, New York City, NY 10001" +180674,Bose SoundSport Headphones,1,99.99,03/29/19 12:16,"65 Pine St, Dallas, TX 75001" +180675,Bose SoundSport Headphones,1,99.99,03/05/19 18:00,"91 West St, New York City, NY 10001" +180676,AA Batteries (4-pack),1,3.84,03/25/19 21:26,"495 Lakeview St, Austin, TX 73301" +180677,AAA Batteries (4-pack),1,2.99,03/09/19 12:54,"64 Madison St, Boston, MA 02215" +180678,AA Batteries (4-pack),1,3.84,03/17/19 11:05,"495 Hickory St, San Francisco, CA 94016" +180679,AA Batteries (4-pack),1,3.84,03/27/19 16:44,"872 Maple St, Boston, MA 02215" +180680,USB-C Charging Cable,2,11.95,03/27/19 11:00,"141 West St, Los Angeles, CA 90001" +180681,AA Batteries (4-pack),1,3.84,03/14/19 10:41,"870 Church St, Seattle, WA 98101" +180682,Bose SoundSport Headphones,1,99.99,03/03/19 17:10,"388 Cherry St, Los Angeles, CA 90001" +180683,USB-C Charging Cable,1,11.95,03/24/19 20:51,"844 Park St, Portland, ME 04101" +180684,Wired Headphones,1,11.99,03/15/19 16:49,"454 Washington St, Portland, OR 97035" +180685,Bose SoundSport Headphones,1,99.99,03/22/19 14:13,"623 4th St, Atlanta, GA 30301" +180686,Lightning Charging Cable,1,14.95,03/10/19 15:09,"704 2nd St, San Francisco, CA 94016" +180687,27in FHD Monitor,1,149.99,03/20/19 14:19,"609 14th St, Dallas, TX 75001" +180688,AAA Batteries (4-pack),1,2.99,03/25/19 03:18,"483 Main St, Boston, MA 02215" +180689,Lightning Charging Cable,1,14.95,03/27/19 19:58,"661 5th St, San Francisco, CA 94016" +180690,20in Monitor,1,109.99,03/18/19 10:27,"730 Lakeview St, San Francisco, CA 94016" +180690,USB-C Charging Cable,2,11.95,03/18/19 10:27,"730 Lakeview St, San Francisco, CA 94016" +180691,AAA Batteries (4-pack),1,2.99,03/12/19 08:22,"494 Center St, Atlanta, GA 30301" +180691,Lightning Charging Cable,1,14.95,03/12/19 08:22,"494 Center St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +180692,USB-C Charging Cable,1,11.95,03/26/19 14:36,"244 Forest St, Los Angeles, CA 90001" +180693,Apple Airpods Headphones,1,150,03/14/19 22:47,"701 Sunset St, Los Angeles, CA 90001" +180694,Wired Headphones,1,11.99,03/13/19 09:14,"354 North St, San Francisco, CA 94016" +180695,Lightning Charging Cable,1,14.95,03/12/19 20:53,"23 Maple St, Los Angeles, CA 90001" +180696,AAA Batteries (4-pack),1,2.99,03/02/19 19:08,"261 North St, San Francisco, CA 94016" +180697,20in Monitor,1,109.99,03/04/19 01:37,"55 Ridge St, Los Angeles, CA 90001" +180698,USB-C Charging Cable,1,11.95,03/01/19 10:12,"641 North St, San Francisco, CA 94016" +180699,iPhone,1,700,03/24/19 19:39,"619 Johnson St, Boston, MA 02215" +180700,Apple Airpods Headphones,1,150,03/02/19 15:46,"843 Spruce St, New York City, NY 10001" +180701,Lightning Charging Cable,1,14.95,03/06/19 18:33,"238 9th St, Los Angeles, CA 90001" +180702,27in FHD Monitor,1,149.99,03/12/19 21:16,"433 12th St, Atlanta, GA 30301" +180703,AA Batteries (4-pack),1,3.84,03/07/19 21:49,"162 14th St, Los Angeles, CA 90001" +180704,Macbook Pro Laptop,1,1700,03/14/19 06:21,"393 2nd St, New York City, NY 10001" +180704,AA Batteries (4-pack),2,3.84,03/14/19 06:21,"393 2nd St, New York City, NY 10001" +180705,34in Ultrawide Monitor,1,379.99,03/07/19 17:56,"659 6th St, New York City, NY 10001" +180706,Flatscreen TV,1,300,03/13/19 15:39,"67 Church St, Los Angeles, CA 90001" +180707,AAA Batteries (4-pack),1,2.99,03/14/19 08:12,"22 Pine St, San Francisco, CA 94016" +180708,AA Batteries (4-pack),1,3.84,03/02/19 17:23,"843 Lakeview St, San Francisco, CA 94016" +180709,Wired Headphones,1,11.99,03/06/19 18:25,"190 Chestnut St, Dallas, TX 75001" +180710,20in Monitor,1,109.99,03/21/19 13:31,"617 Adams St, Seattle, WA 98101" +180711,Bose SoundSport Headphones,1,99.99,03/16/19 18:43,"492 Wilson St, Boston, MA 02215" +180712,AA Batteries (4-pack),1,3.84,03/03/19 18:27,"358 Elm St, Atlanta, GA 30301" +180713,iPhone,1,700,03/20/19 08:59,"502 North St, Dallas, TX 75001" +180714,27in FHD Monitor,1,149.99,03/17/19 13:54,"181 1st St, Seattle, WA 98101" +180715,ThinkPad Laptop,1,999.99,03/27/19 14:36,"136 North St, Dallas, TX 75001" +180716,iPhone,1,700,03/07/19 11:14,"372 4th St, Los Angeles, CA 90001" +180716,Wired Headphones,2,11.99,03/07/19 11:14,"372 4th St, Los Angeles, CA 90001" +180717,LG Washing Machine,1,600.0,03/10/19 20:55,"736 Lake St, Los Angeles, CA 90001" +180718,Lightning Charging Cable,1,14.95,03/01/19 19:39,"453 Dogwood St, Austin, TX 73301" +180719,ThinkPad Laptop,1,999.99,03/28/19 10:32,"127 Lake St, San Francisco, CA 94016" +180720,Lightning Charging Cable,1,14.95,03/24/19 15:43,"277 Meadow St, San Francisco, CA 94016" +180721,Apple Airpods Headphones,1,150,03/14/19 17:47,"231 Ridge St, New York City, NY 10001" +180722,Bose SoundSport Headphones,1,99.99,03/14/19 10:43,"144 Lincoln St, Los Angeles, CA 90001" +180723,Google Phone,1,600,03/04/19 18:58,"302 9th St, Los Angeles, CA 90001" +180723,USB-C Charging Cable,1,11.95,03/04/19 18:58,"302 9th St, Los Angeles, CA 90001" +180724,USB-C Charging Cable,1,11.95,03/19/19 09:50,"394 Ridge St, San Francisco, CA 94016" +180725,AA Batteries (4-pack),4,3.84,03/07/19 22:47,"359 7th St, Atlanta, GA 30301" +180726,AAA Batteries (4-pack),3,2.99,03/19/19 11:34,"897 Chestnut St, Atlanta, GA 30301" +180727,USB-C Charging Cable,1,11.95,03/04/19 15:12,"433 Park St, San Francisco, CA 94016" +180728,34in Ultrawide Monitor,1,379.99,03/27/19 19:33,"86 Main St, Boston, MA 02215" +180729,AAA Batteries (4-pack),5,2.99,03/22/19 16:07,"820 South St, New York City, NY 10001" +180730,Apple Airpods Headphones,1,150,03/16/19 19:25,"997 Center St, Los Angeles, CA 90001" +180731,Bose SoundSport Headphones,1,99.99,03/02/19 08:59,"434 5th St, Los Angeles, CA 90001" +180732,AA Batteries (4-pack),1,3.84,03/07/19 06:01,"425 Washington St, Atlanta, GA 30301" +180733,Lightning Charging Cable,1,14.95,03/10/19 08:20,"158 Adams St, San Francisco, CA 94016" +180734,27in 4K Gaming Monitor,1,389.99,03/04/19 20:44,"515 Elm St, New York City, NY 10001" +180735,AA Batteries (4-pack),1,3.84,03/13/19 21:47,"701 Dogwood St, Atlanta, GA 30301" +180736,AAA Batteries (4-pack),3,2.99,03/22/19 21:34,"650 1st St, Seattle, WA 98101" +180737,Lightning Charging Cable,1,14.95,03/09/19 16:51,"802 Maple St, Seattle, WA 98101" +180738,Flatscreen TV,1,300,03/19/19 22:42,"261 Adams St, Dallas, TX 75001" +180739,Wired Headphones,1,11.99,03/09/19 13:46,"136 Chestnut St, Los Angeles, CA 90001" +180740,AA Batteries (4-pack),2,3.84,03/30/19 17:22,"141 10th St, San Francisco, CA 94016" +180741,Wired Headphones,1,11.99,03/23/19 05:26,"629 Chestnut St, Boston, MA 02215" +180742,USB-C Charging Cable,1,11.95,03/29/19 18:39,"482 Cedar St, Los Angeles, CA 90001" +180743,AA Batteries (4-pack),1,3.84,03/26/19 14:58,"223 Highland St, Seattle, WA 98101" +180744,iPhone,1,700,03/02/19 14:17,"983 14th St, San Francisco, CA 94016" +180745,USB-C Charging Cable,1,11.95,03/14/19 21:52,"91 Dogwood St, Boston, MA 02215" +180746,AAA Batteries (4-pack),1,2.99,03/28/19 16:43,"616 Lincoln St, Los Angeles, CA 90001" +180747,AA Batteries (4-pack),1,3.84,03/05/19 08:15,"779 Willow St, New York City, NY 10001" +180748,AA Batteries (4-pack),1,3.84,03/03/19 15:25,"542 Dogwood St, Seattle, WA 98101" +180749,Wired Headphones,1,11.99,03/27/19 14:43,"285 River St, Boston, MA 02215" +180750,Flatscreen TV,1,300,03/24/19 10:52,"827 Jackson St, San Francisco, CA 94016" +180751,Apple Airpods Headphones,1,150,03/27/19 19:53,"407 Dogwood St, San Francisco, CA 94016" +180752,27in FHD Monitor,1,149.99,03/29/19 16:55,"32 Meadow St, San Francisco, CA 94016" +180753,iPhone,1,700,03/04/19 13:56,"84 Chestnut St, San Francisco, CA 94016" +180754,USB-C Charging Cable,1,11.95,03/16/19 20:27,"556 Dogwood St, Boston, MA 02215" +180755,Lightning Charging Cable,1,14.95,03/05/19 23:40,"924 14th St, Portland, ME 04101" +180756,Apple Airpods Headphones,1,150,03/15/19 15:55,"496 Cedar St, Portland, OR 97035" +180757,AA Batteries (4-pack),1,3.84,03/26/19 16:09,"755 9th St, San Francisco, CA 94016" +180758,Macbook Pro Laptop,1,1700,03/12/19 17:57,"694 Washington St, New York City, NY 10001" +180759,USB-C Charging Cable,1,11.95,03/09/19 00:38,"838 North St, San Francisco, CA 94016" +180760,Bose SoundSport Headphones,1,99.99,03/30/19 17:32,"81 Johnson St, New York City, NY 10001" +180761,27in FHD Monitor,1,149.99,03/13/19 22:35,"386 6th St, Austin, TX 73301" +180762,Apple Airpods Headphones,1,150,03/15/19 14:09,"923 Elm St, San Francisco, CA 94016" +180763,Macbook Pro Laptop,1,1700,03/18/19 20:54,"854 12th St, Boston, MA 02215" +180764,27in 4K Gaming Monitor,1,389.99,03/08/19 16:36,"831 Ridge St, Seattle, WA 98101" +180765,Flatscreen TV,1,300,03/15/19 19:57,"349 Chestnut St, San Francisco, CA 94016" +180766,Apple Airpods Headphones,1,150,03/26/19 18:39,"123 Church St, Austin, TX 73301" +180767,Lightning Charging Cable,1,14.95,03/06/19 03:15,"380 Maple St, Los Angeles, CA 90001" +180768,Wired Headphones,2,11.99,03/09/19 14:30,"276 Pine St, New York City, NY 10001" +180769,27in 4K Gaming Monitor,1,389.99,03/02/19 05:29,"911 South St, Seattle, WA 98101" +180769,Bose SoundSport Headphones,1,99.99,03/02/19 05:29,"911 South St, Seattle, WA 98101" +180770,Apple Airpods Headphones,1,150,03/17/19 14:06,"889 Ridge St, Portland, OR 97035" +180771,Lightning Charging Cable,1,14.95,03/26/19 11:32,"460 Madison St, San Francisco, CA 94016" +180772,AAA Batteries (4-pack),2,2.99,03/20/19 17:48,"429 8th St, San Francisco, CA 94016" +180773,AAA Batteries (4-pack),1,2.99,03/04/19 18:28,"486 Dogwood St, San Francisco, CA 94016" +180774,Wired Headphones,1,11.99,03/17/19 13:49,"239 Johnson St, Portland, OR 97035" +180775,AA Batteries (4-pack),1,3.84,03/24/19 13:56,"364 Washington St, Boston, MA 02215" +180776,AAA Batteries (4-pack),1,2.99,03/06/19 13:42,"353 Meadow St, Austin, TX 73301" +180777,USB-C Charging Cable,1,11.95,03/28/19 20:35,"956 12th St, Los Angeles, CA 90001" +180778,27in FHD Monitor,1,149.99,03/30/19 13:28,"600 Ridge St, Dallas, TX 75001" +180779,Google Phone,1,600,03/14/19 11:05,"367 14th St, San Francisco, CA 94016" +180780,AAA Batteries (4-pack),2,2.99,03/15/19 11:08,"321 10th St, Los Angeles, CA 90001" +180781,Lightning Charging Cable,1,14.95,03/17/19 12:57,"637 2nd St, San Francisco, CA 94016" +180782,Wired Headphones,1,11.99,03/01/19 10:01,"569 13th St, San Francisco, CA 94016" +180783,AAA Batteries (4-pack),1,2.99,03/05/19 17:15,"828 Johnson St, Atlanta, GA 30301" +180784,Lightning Charging Cable,1,14.95,03/05/19 20:40,"194 11th St, Los Angeles, CA 90001" +180785,Lightning Charging Cable,1,14.95,03/27/19 07:26,"50 Johnson St, New York City, NY 10001" +180786,Wired Headphones,1,11.99,03/25/19 20:26,"863 8th St, San Francisco, CA 94016" +180787,Apple Airpods Headphones,1,150,03/04/19 19:12,"104 Johnson St, San Francisco, CA 94016" +180788,iPhone,1,700,03/30/19 10:06,"508 10th St, Dallas, TX 75001" +180789,USB-C Charging Cable,2,11.95,03/15/19 14:00,"61 Forest St, New York City, NY 10001" +180790,Apple Airpods Headphones,2,150,03/08/19 12:59,"17 Adams St, San Francisco, CA 94016" +180791,USB-C Charging Cable,1,11.95,03/05/19 14:36,"632 South St, New York City, NY 10001" +180792,27in 4K Gaming Monitor,1,389.99,03/14/19 18:45,"957 9th St, San Francisco, CA 94016" +180793,Bose SoundSport Headphones,1,99.99,03/07/19 18:16,"766 Meadow St, Atlanta, GA 30301" +180794,Lightning Charging Cable,1,14.95,03/03/19 09:43,"468 Lincoln St, Los Angeles, CA 90001" +180795,Bose SoundSport Headphones,1,99.99,03/31/19 23:03,"748 Cedar St, New York City, NY 10001" +180796,Bose SoundSport Headphones,1,99.99,03/11/19 17:29,"615 Johnson St, New York City, NY 10001" +180797,USB-C Charging Cable,1,11.95,03/06/19 22:18,"8 Lake St, San Francisco, CA 94016" +180798,Vareebadd Phone,1,400,03/18/19 19:17,"504 Cherry St, San Francisco, CA 94016" +180799,Apple Airpods Headphones,1,150,03/04/19 16:25,"815 Dogwood St, Austin, TX 73301" +180800,iPhone,1,700,03/26/19 21:44,"339 11th St, Dallas, TX 75001" +180801,Apple Airpods Headphones,1,150,03/29/19 21:11,"693 Willow St, Los Angeles, CA 90001" +180802,USB-C Charging Cable,1,11.95,03/07/19 18:32,"561 Spruce St, New York City, NY 10001" +180803,AA Batteries (4-pack),2,3.84,03/09/19 18:32,"978 Hickory St, Portland, OR 97035" +180804,AAA Batteries (4-pack),3,2.99,03/13/19 20:35,"364 Highland St, San Francisco, CA 94016" +180805,USB-C Charging Cable,1,11.95,03/06/19 22:32,"144 4th St, Seattle, WA 98101" +180806,Wired Headphones,1,11.99,03/05/19 14:12,"512 West St, Atlanta, GA 30301" +180807,27in FHD Monitor,1,149.99,03/26/19 08:01,"834 West St, Portland, OR 97035" +180808,AA Batteries (4-pack),1,3.84,03/09/19 14:28,"148 Willow St, Portland, OR 97035" +180809,Apple Airpods Headphones,1,150,03/02/19 16:47,"583 Madison St, Austin, TX 73301" +180810,Wired Headphones,1,11.99,03/09/19 13:47,"21 Walnut St, San Francisco, CA 94016" +180811,USB-C Charging Cable,2,11.95,03/21/19 12:12,"119 Jackson St, Los Angeles, CA 90001" +180812,Bose SoundSport Headphones,1,99.99,03/08/19 11:40,"697 Church St, Seattle, WA 98101" +180813,AA Batteries (4-pack),1,3.84,03/04/19 10:39,"748 Adams St, Portland, OR 97035" +180814,iPhone,1,700,03/02/19 20:30,"906 Wilson St, San Francisco, CA 94016" +180815,USB-C Charging Cable,2,11.95,03/26/19 20:55,"511 River St, New York City, NY 10001" +180816,Bose SoundSport Headphones,1,99.99,03/13/19 11:52,"353 South St, Los Angeles, CA 90001" +180817,Apple Airpods Headphones,1,150,03/09/19 05:27,"852 Park St, San Francisco, CA 94016" +180818,27in 4K Gaming Monitor,1,389.99,03/21/19 16:13,"722 8th St, Los Angeles, CA 90001" +180819,AA Batteries (4-pack),2,3.84,03/08/19 18:44,"998 Park St, Los Angeles, CA 90001" +180820,USB-C Charging Cable,1,11.95,03/03/19 21:44,"23 Forest St, Dallas, TX 75001" +180821,USB-C Charging Cable,1,11.95,03/29/19 11:16,"693 South St, San Francisco, CA 94016" +180822,iPhone,1,700,03/18/19 16:13,"50 Cedar St, San Francisco, CA 94016" +180823,27in FHD Monitor,1,149.99,03/20/19 04:05,"594 Spruce St, Boston, MA 02215" +180824,AA Batteries (4-pack),1,3.84,03/07/19 13:47,"14 West St, Boston, MA 02215" +180825,Lightning Charging Cable,1,14.95,03/06/19 18:40,"836 Madison St, Portland, OR 97035" +180826,Bose SoundSport Headphones,1,99.99,03/21/19 17:40,"103 Church St, Boston, MA 02215" +180827,27in 4K Gaming Monitor,1,389.99,03/29/19 18:16,"931 River St, Los Angeles, CA 90001" +180828,34in Ultrawide Monitor,1,379.99,03/10/19 18:04,"567 1st St, San Francisco, CA 94016" +180829,iPhone,1,700,03/25/19 11:17,"80 South St, San Francisco, CA 94016" +180830,Wired Headphones,1,11.99,03/29/19 16:15,"444 4th St, Los Angeles, CA 90001" +180830,iPhone,1,700,03/29/19 16:15,"444 4th St, Los Angeles, CA 90001" +180831,Wired Headphones,1,11.99,03/06/19 13:01,"618 Sunset St, Dallas, TX 75001" +180832,USB-C Charging Cable,1,11.95,03/18/19 20:30,"353 Forest St, Atlanta, GA 30301" +180833,Lightning Charging Cable,1,14.95,03/18/19 16:48,"223 Madison St, Portland, OR 97035" +180834,AA Batteries (4-pack),1,3.84,03/21/19 12:18,"798 10th St, New York City, NY 10001" +180835,Lightning Charging Cable,1,14.95,03/15/19 21:25,"82 Cherry St, New York City, NY 10001" +180836,34in Ultrawide Monitor,1,379.99,03/10/19 20:54,"792 North St, San Francisco, CA 94016" +180837,Apple Airpods Headphones,1,150,03/01/19 17:45,"629 4th St, San Francisco, CA 94016" +180838,Macbook Pro Laptop,1,1700,03/06/19 10:03,"331 Lake St, San Francisco, CA 94016" +180839,27in FHD Monitor,1,149.99,03/06/19 18:26,"544 Lincoln St, Seattle, WA 98101" +180840,Bose SoundSport Headphones,1,99.99,03/13/19 15:58,"966 Spruce St, Atlanta, GA 30301" +180841,USB-C Charging Cable,1,11.95,03/31/19 16:43,"8 Dogwood St, Atlanta, GA 30301" +180842,USB-C Charging Cable,1,11.95,03/20/19 16:58,"465 Chestnut St, Los Angeles, CA 90001" +180843,AAA Batteries (4-pack),1,2.99,03/18/19 21:45,"116 Johnson St, Atlanta, GA 30301" +180844,Lightning Charging Cable,1,14.95,03/28/19 01:07,"835 Cherry St, Atlanta, GA 30301" +180845,AA Batteries (4-pack),1,3.84,03/12/19 20:31,"20 Adams St, Dallas, TX 75001" +180846,AA Batteries (4-pack),3,3.84,03/30/19 18:23,"220 Center St, San Francisco, CA 94016" +180847,Flatscreen TV,1,300,03/27/19 12:48,"410 Maple St, Atlanta, GA 30301" +180848,Bose SoundSport Headphones,1,99.99,03/27/19 17:59,"857 Chestnut St, Los Angeles, CA 90001" +180849,Macbook Pro Laptop,1,1700,03/25/19 19:26,"813 Wilson St, San Francisco, CA 94016" +180850,27in FHD Monitor,1,149.99,03/24/19 18:49,"236 South St, Seattle, WA 98101" +180851,Lightning Charging Cable,1,14.95,03/23/19 18:01,"214 Lakeview St, San Francisco, CA 94016" +180852,Wired Headphones,1,11.99,03/10/19 07:30,"685 South St, Austin, TX 73301" +180853,AA Batteries (4-pack),1,3.84,03/22/19 08:15,"739 Dogwood St, San Francisco, CA 94016" +180854,Apple Airpods Headphones,1,150,03/05/19 14:50,"255 Hickory St, Boston, MA 02215" +180855,20in Monitor,1,109.99,03/29/19 10:15,"869 Cherry St, Boston, MA 02215" +180856,Apple Airpods Headphones,1,150,03/06/19 22:25,"386 13th St, San Francisco, CA 94016" +180857,Bose SoundSport Headphones,1,99.99,03/03/19 17:32,"321 Ridge St, New York City, NY 10001" +180858,AA Batteries (4-pack),1,3.84,03/03/19 22:43,"559 8th St, Boston, MA 02215" +180859,USB-C Charging Cable,1,11.95,03/05/19 22:12,"68 10th St, Boston, MA 02215" +180860,USB-C Charging Cable,2,11.95,03/06/19 12:33,"239 Highland St, New York City, NY 10001" +180861,Apple Airpods Headphones,1,150,03/06/19 13:41,"547 Center St, San Francisco, CA 94016" +180862,Wired Headphones,1,11.99,03/26/19 15:19,"825 Jackson St, Boston, MA 02215" +180863,27in FHD Monitor,1,149.99,03/07/19 10:00,"989 Wilson St, Dallas, TX 75001" +180864,Wired Headphones,1,11.99,03/16/19 18:23,"389 9th St, Boston, MA 02215" +180865,Bose SoundSport Headphones,1,99.99,03/21/19 22:46,"394 10th St, Los Angeles, CA 90001" +180865,Lightning Charging Cable,1,14.95,03/21/19 22:46,"394 10th St, Los Angeles, CA 90001" +180866,34in Ultrawide Monitor,1,379.99,03/26/19 18:49,"530 Highland St, San Francisco, CA 94016" +180867,ThinkPad Laptop,1,999.99,03/30/19 16:56,"81 Hill St, Atlanta, GA 30301" +180868,20in Monitor,1,109.99,03/04/19 18:48,"691 10th St, Atlanta, GA 30301" +180869,AAA Batteries (4-pack),4,2.99,03/03/19 23:36,"986 Hickory St, San Francisco, CA 94016" +180870,34in Ultrawide Monitor,1,379.99,03/17/19 10:43,"136 Forest St, Seattle, WA 98101" +180871,Apple Airpods Headphones,1,150,03/02/19 19:51,"967 Main St, San Francisco, CA 94016" +180871,USB-C Charging Cable,1,11.95,03/02/19 19:51,"967 Main St, San Francisco, CA 94016" +180872,Wired Headphones,1,11.99,03/11/19 01:34,"710 Pine St, Portland, OR 97035" +180873,iPhone,1,700,03/14/19 20:14,"947 Johnson St, Boston, MA 02215" +180874,Apple Airpods Headphones,1,150,03/19/19 10:42,"107 14th St, San Francisco, CA 94016" +180875,ThinkPad Laptop,1,999.99,03/27/19 21:17,"453 Lincoln St, Seattle, WA 98101" +180876,USB-C Charging Cable,1,11.95,03/15/19 17:31,"795 North St, San Francisco, CA 94016" +180877,AAA Batteries (4-pack),1,2.99,03/11/19 17:59,"289 Spruce St, Boston, MA 02215" +180878,USB-C Charging Cable,1,11.95,03/12/19 01:11,"815 Ridge St, Los Angeles, CA 90001" +180879,Apple Airpods Headphones,1,150,03/31/19 21:07,"627 Main St, Seattle, WA 98101" +180880,AA Batteries (4-pack),2,3.84,03/26/19 16:00,"210 Chestnut St, San Francisco, CA 94016" +180881,34in Ultrawide Monitor,1,379.99,03/27/19 18:35,"300 6th St, New York City, NY 10001" +180882,AAA Batteries (4-pack),3,2.99,03/21/19 21:43,"469 Jackson St, Seattle, WA 98101" +180883,Wired Headphones,1,11.99,03/04/19 09:31,"454 11th St, San Francisco, CA 94016" +180884,Wired Headphones,1,11.99,03/09/19 16:36,"772 Lakeview St, Portland, OR 97035" +180885,Wired Headphones,2,11.99,03/14/19 11:04,"476 Spruce St, Dallas, TX 75001" +180886,Apple Airpods Headphones,1,150,03/18/19 22:54,"82 River St, New York City, NY 10001" +180887,AAA Batteries (4-pack),1,2.99,03/11/19 21:48,"593 Willow St, Seattle, WA 98101" +180888,AAA Batteries (4-pack),1,2.99,03/09/19 23:49,"991 13th St, New York City, NY 10001" +180889,AA Batteries (4-pack),1,3.84,03/02/19 10:20,"873 Main St, Atlanta, GA 30301" +180890,AA Batteries (4-pack),1,3.84,03/19/19 11:59,"979 9th St, New York City, NY 10001" +180891,AAA Batteries (4-pack),1,2.99,03/06/19 09:10,"336 6th St, Boston, MA 02215" +180892,27in FHD Monitor,1,149.99,03/03/19 09:04,"411 Johnson St, Boston, MA 02215" +180893,34in Ultrawide Monitor,1,379.99,03/23/19 14:42,"755 Lincoln St, New York City, NY 10001" +180894,Bose SoundSport Headphones,1,99.99,03/02/19 23:22,"883 South St, Los Angeles, CA 90001" +180895,iPhone,1,700,03/06/19 21:44,"949 Hickory St, Los Angeles, CA 90001" +180896,Flatscreen TV,1,300,03/25/19 11:37,"689 Lakeview St, Los Angeles, CA 90001" +180897,AAA Batteries (4-pack),1,2.99,03/02/19 20:19,"724 1st St, San Francisco, CA 94016" +180898,Macbook Pro Laptop,1,1700,03/16/19 13:50,"685 5th St, Los Angeles, CA 90001" +180899,USB-C Charging Cable,2,11.95,03/10/19 11:01,"860 8th St, Atlanta, GA 30301" +180900,Apple Airpods Headphones,1,150,03/17/19 12:30,"185 Chestnut St, San Francisco, CA 94016" +180901,Apple Airpods Headphones,1,150,03/12/19 21:21,"984 7th St, Boston, MA 02215" +180902,Wired Headphones,1,11.99,03/13/19 18:20,"308 4th St, Portland, OR 97035" +180903,Macbook Pro Laptop,1,1700,03/02/19 18:19,"865 Johnson St, Dallas, TX 75001" +180904,Lightning Charging Cable,1,14.95,03/26/19 09:23,"422 River St, Los Angeles, CA 90001" +180905,AA Batteries (4-pack),1,3.84,03/22/19 09:20,"568 Willow St, Portland, OR 97035" +180906,Wired Headphones,1,11.99,03/25/19 16:26,"68 Chestnut St, Los Angeles, CA 90001" +180907,USB-C Charging Cable,1,11.95,03/27/19 11:13,"205 Chestnut St, New York City, NY 10001" +180908,AAA Batteries (4-pack),2,2.99,03/15/19 09:00,"432 West St, Los Angeles, CA 90001" +180909,Lightning Charging Cable,1,14.95,03/30/19 23:23,"282 9th St, Seattle, WA 98101" +180910,Wired Headphones,1,11.99,03/29/19 19:15,"620 Cedar St, Los Angeles, CA 90001" +180911,Wired Headphones,1,11.99,03/24/19 15:57,"460 Spruce St, Los Angeles, CA 90001" +180912,20in Monitor,1,109.99,03/30/19 16:01,"232 5th St, New York City, NY 10001" +180913,Apple Airpods Headphones,1,150,03/29/19 13:58,"835 Highland St, San Francisco, CA 94016" +180914,Lightning Charging Cable,1,14.95,03/31/19 16:05,"534 8th St, Dallas, TX 75001" +180915,Apple Airpods Headphones,1,150,03/06/19 20:23,"123 Ridge St, Boston, MA 02215" +180916,27in 4K Gaming Monitor,1,389.99,03/18/19 00:26,"581 Jackson St, San Francisco, CA 94016" +180917,Wired Headphones,1,11.99,03/17/19 14:20,"82 10th St, New York City, NY 10001" +180918,USB-C Charging Cable,1,11.95,03/07/19 10:50,"388 4th St, Los Angeles, CA 90001" +180919,USB-C Charging Cable,1,11.95,03/21/19 18:13,"323 Jackson St, San Francisco, CA 94016" +180920,iPhone,1,700,03/17/19 21:55,"546 4th St, Seattle, WA 98101" +180920,Apple Airpods Headphones,1,150,03/17/19 21:55,"546 4th St, Seattle, WA 98101" +180920,Wired Headphones,1,11.99,03/17/19 21:55,"546 4th St, Seattle, WA 98101" +180921,Wired Headphones,1,11.99,03/28/19 18:21,"871 Center St, Atlanta, GA 30301" +180922,iPhone,1,700,03/26/19 19:06,"375 Johnson St, Los Angeles, CA 90001" +180923,Apple Airpods Headphones,1,150,03/24/19 14:19,"981 Cedar St, Atlanta, GA 30301" +180924,Wired Headphones,1,11.99,03/31/19 18:54,"376 Meadow St, Austin, TX 73301" +180925,USB-C Charging Cable,3,11.95,03/21/19 16:46,"290 Johnson St, Dallas, TX 75001" +180926,AA Batteries (4-pack),1,3.84,03/23/19 00:53,"422 Dogwood St, Los Angeles, CA 90001" +180927,Apple Airpods Headphones,1,150,03/10/19 10:05,"642 Johnson St, Los Angeles, CA 90001" +180928,AAA Batteries (4-pack),2,2.99,03/11/19 12:21,"772 Wilson St, San Francisco, CA 94016" +180929,Lightning Charging Cable,1,14.95,03/13/19 19:52,"589 8th St, Boston, MA 02215" +180930,iPhone,1,700,03/19/19 09:39,"114 Meadow St, San Francisco, CA 94016" +180931,AA Batteries (4-pack),1,3.84,03/02/19 08:38,"252 Ridge St, San Francisco, CA 94016" +180932,27in FHD Monitor,1,149.99,03/21/19 14:01,"167 Lake St, Seattle, WA 98101" +180933,Google Phone,1,600,03/26/19 23:34,"670 5th St, Los Angeles, CA 90001" +180933,Bose SoundSport Headphones,1,99.99,03/26/19 23:34,"670 5th St, Los Angeles, CA 90001" +180934,Wired Headphones,1,11.99,03/13/19 11:13,"245 6th St, Dallas, TX 75001" +180935,Bose SoundSport Headphones,1,99.99,03/27/19 00:02,"945 Highland St, Atlanta, GA 30301" +180936,Wired Headphones,1,11.99,03/23/19 19:26,"567 5th St, Los Angeles, CA 90001" +180937,USB-C Charging Cable,1,11.95,03/04/19 09:29,"179 Maple St, Dallas, TX 75001" +180938,Vareebadd Phone,1,400,03/03/19 18:23,"169 Church St, San Francisco, CA 94016" +180939,Apple Airpods Headphones,1,150,03/14/19 22:14,"702 Dogwood St, Los Angeles, CA 90001" +180940,AAA Batteries (4-pack),1,2.99,03/30/19 20:21,"659 Washington St, Atlanta, GA 30301" +180941,27in FHD Monitor,1,149.99,03/13/19 19:02,"740 Ridge St, Atlanta, GA 30301" +180942,AA Batteries (4-pack),1,3.84,03/20/19 03:48,"663 Cedar St, Dallas, TX 75001" +180943,Lightning Charging Cable,1,14.95,03/15/19 15:08,"361 2nd St, San Francisco, CA 94016" +180944,Flatscreen TV,1,300,03/17/19 15:22,"619 Dogwood St, Austin, TX 73301" +180945,AAA Batteries (4-pack),1,2.99,03/15/19 14:48,"340 9th St, Los Angeles, CA 90001" +180946,Wired Headphones,1,11.99,03/22/19 04:36,"879 Wilson St, Los Angeles, CA 90001" +180946,Apple Airpods Headphones,1,150,03/22/19 04:36,"879 Wilson St, Los Angeles, CA 90001" +180947,Apple Airpods Headphones,1,150,03/02/19 12:01,"712 Park St, Los Angeles, CA 90001" +180948,Bose SoundSport Headphones,1,99.99,03/02/19 14:52,"689 Willow St, Los Angeles, CA 90001" +180949,AA Batteries (4-pack),1,3.84,03/15/19 16:55,"177 Willow St, Portland, OR 97035" +180949,AA Batteries (4-pack),1,3.84,03/15/19 16:55,"177 Willow St, Portland, OR 97035" +180950,Apple Airpods Headphones,1,150,03/23/19 13:43,"975 Spruce St, Atlanta, GA 30301" +180951,Bose SoundSport Headphones,1,99.99,03/27/19 21:18,"285 Lincoln St, Seattle, WA 98101" +180952,USB-C Charging Cable,1,11.95,03/16/19 18:56,"238 South St, Austin, TX 73301" +180953,iPhone,1,700,03/13/19 17:07,"999 Cherry St, Dallas, TX 75001" +180954,Wired Headphones,1,11.99,03/27/19 23:20,"477 1st St, New York City, NY 10001" +180955,AAA Batteries (4-pack),1,2.99,03/02/19 15:23,"518 9th St, Seattle, WA 98101" +180956,Bose SoundSport Headphones,1,99.99,03/29/19 01:34,"582 Hill St, Boston, MA 02215" +180957,Lightning Charging Cable,1,14.95,03/25/19 19:05,"416 South St, Seattle, WA 98101" +180958,AAA Batteries (4-pack),3,2.99,03/29/19 19:24,"887 Madison St, Dallas, TX 75001" +180959,AAA Batteries (4-pack),2,2.99,03/30/19 10:31,"800 River St, San Francisco, CA 94016" +180960,34in Ultrawide Monitor,1,379.99,03/21/19 19:53,"589 1st St, Boston, MA 02215" +180961,Macbook Pro Laptop,1,1700,03/29/19 13:35,"29 Spruce St, Boston, MA 02215" +180962,AA Batteries (4-pack),1,3.84,03/11/19 12:12,"600 Park St, New York City, NY 10001" +180963,Google Phone,1,600,03/04/19 21:24,"588 6th St, New York City, NY 10001" +180964,AA Batteries (4-pack),1,3.84,03/30/19 06:41,"79 Hickory St, San Francisco, CA 94016" +180965,Macbook Pro Laptop,1,1700,03/05/19 12:54,"217 Adams St, Atlanta, GA 30301" +180966,Bose SoundSport Headphones,1,99.99,03/17/19 10:36,"872 Dogwood St, San Francisco, CA 94016" +180967,AA Batteries (4-pack),1,3.84,03/03/19 14:07,"171 Meadow St, Los Angeles, CA 90001" +180968,Flatscreen TV,1,300,03/28/19 10:42,"254 Lakeview St, San Francisco, CA 94016" +180969,Bose SoundSport Headphones,1,99.99,03/11/19 19:09,"660 Lakeview St, Los Angeles, CA 90001" +180970,Bose SoundSport Headphones,1,99.99,03/17/19 14:42,"876 1st St, Dallas, TX 75001" +180971,27in FHD Monitor,1,149.99,03/29/19 20:40,"494 Hill St, Los Angeles, CA 90001" +180972,Wired Headphones,1,11.99,03/29/19 12:02,"158 10th St, Los Angeles, CA 90001" +180973,USB-C Charging Cable,1,11.95,03/02/19 15:50,"814 Chestnut St, San Francisco, CA 94016" +180974,AAA Batteries (4-pack),1,2.99,03/22/19 13:05,"310 1st St, Portland, ME 04101" +180975,AA Batteries (4-pack),3,3.84,03/25/19 09:50,"189 Meadow St, San Francisco, CA 94016" +180976,Vareebadd Phone,1,400,03/09/19 08:51,"512 Highland St, San Francisco, CA 94016" +180976,USB-C Charging Cable,1,11.95,03/09/19 08:51,"512 Highland St, San Francisco, CA 94016" +180977,Google Phone,1,600,03/01/19 16:54,"436 Adams St, Seattle, WA 98101" +180978,34in Ultrawide Monitor,1,379.99,03/12/19 11:18,"370 West St, Dallas, TX 75001" +180979,USB-C Charging Cable,1,11.95,03/07/19 07:19,"193 7th St, New York City, NY 10001" +180980,Lightning Charging Cable,1,14.95,03/02/19 23:10,"275 Meadow St, Austin, TX 73301" +180981,Wired Headphones,1,11.99,03/29/19 12:52,"47 12th St, New York City, NY 10001" +180982,27in FHD Monitor,1,149.99,03/13/19 11:14,"126 Main St, Boston, MA 02215" +180983,AAA Batteries (4-pack),1,2.99,03/04/19 17:22,"805 Madison St, San Francisco, CA 94016" +180984,AA Batteries (4-pack),3,3.84,03/14/19 00:16,"430 7th St, San Francisco, CA 94016" +180985,ThinkPad Laptop,1,999.99,03/04/19 13:35,"275 8th St, Atlanta, GA 30301" +180986,20in Monitor,1,109.99,03/12/19 12:33,"875 Church St, Dallas, TX 75001" +180987,USB-C Charging Cable,1,11.95,03/26/19 15:33,"335 River St, Dallas, TX 75001" +180988,AAA Batteries (4-pack),1,2.99,03/20/19 09:19,"871 River St, Atlanta, GA 30301" +180989,27in FHD Monitor,1,149.99,03/27/19 11:43,"119 Ridge St, Seattle, WA 98101" +180990,USB-C Charging Cable,1,11.95,03/08/19 20:39,"760 Adams St, New York City, NY 10001" +180991,34in Ultrawide Monitor,1,379.99,03/20/19 14:20,"254 10th St, New York City, NY 10001" +180992,AAA Batteries (4-pack),2,2.99,03/02/19 14:59,"440 Hickory St, New York City, NY 10001" +180993,Bose SoundSport Headphones,1,99.99,03/06/19 12:12,"416 12th St, Seattle, WA 98101" +180994,Wired Headphones,1,11.99,03/17/19 21:21,"843 Elm St, New York City, NY 10001" +180995,Apple Airpods Headphones,1,150,03/05/19 17:21,"715 Dogwood St, Atlanta, GA 30301" +180996,iPhone,1,700,03/23/19 18:46,"800 5th St, Boston, MA 02215" +180997,AA Batteries (4-pack),1,3.84,03/31/19 23:34,"541 13th St, New York City, NY 10001" +180998,20in Monitor,1,109.99,03/15/19 20:26,"374 Walnut St, San Francisco, CA 94016" +180999,Wired Headphones,1,11.99,03/16/19 20:04,"814 Adams St, Portland, OR 97035" +181000,Apple Airpods Headphones,1,150,03/02/19 13:09,"59 South St, Dallas, TX 75001" +181001,Lightning Charging Cable,1,14.95,03/16/19 19:04,"496 Hill St, Los Angeles, CA 90001" +181002,Lightning Charging Cable,1,14.95,03/03/19 10:51,"170 Main St, Los Angeles, CA 90001" +181003,Wired Headphones,1,11.99,03/15/19 12:13,"715 Center St, New York City, NY 10001" +181004,USB-C Charging Cable,1,11.95,03/23/19 12:03,"771 River St, New York City, NY 10001" +181005,AA Batteries (4-pack),1,3.84,03/25/19 19:01,"618 8th St, Seattle, WA 98101" +181006,Lightning Charging Cable,1,14.95,03/14/19 17:42,"92 Dogwood St, Austin, TX 73301" +181007,27in FHD Monitor,1,149.99,03/06/19 13:04,"475 Elm St, San Francisco, CA 94016" +181008,LG Washing Machine,1,600.0,03/31/19 22:24,"623 Forest St, Los Angeles, CA 90001" +181009,27in 4K Gaming Monitor,1,389.99,03/22/19 08:01,"277 Meadow St, Austin, TX 73301" +181010,USB-C Charging Cable,1,11.95,03/30/19 09:29,"281 Jackson St, San Francisco, CA 94016" +181011,Lightning Charging Cable,3,14.95,03/25/19 18:28,"160 9th St, Dallas, TX 75001" +181012,AA Batteries (4-pack),1,3.84,03/29/19 20:52,"340 Ridge St, New York City, NY 10001" +181013,Bose SoundSport Headphones,1,99.99,03/11/19 20:03,"273 Meadow St, San Francisco, CA 94016" +181014,USB-C Charging Cable,1,11.95,03/21/19 00:15,"89 Pine St, New York City, NY 10001" +181015,Flatscreen TV,1,300,03/18/19 09:56,"349 Jackson St, Boston, MA 02215" +181016,AAA Batteries (4-pack),1,2.99,03/16/19 11:38,"152 North St, Boston, MA 02215" +181017,AA Batteries (4-pack),1,3.84,03/04/19 19:45,"13 Jefferson St, Atlanta, GA 30301" +181018,iPhone,1,700,03/19/19 21:50,"271 Cedar St, Dallas, TX 75001" +181018,Lightning Charging Cable,2,14.95,03/19/19 21:50,"271 Cedar St, Dallas, TX 75001" +181019,Google Phone,1,600,03/04/19 12:13,"6 Church St, San Francisco, CA 94016" +181020,Flatscreen TV,1,300,03/15/19 21:20,"868 5th St, Portland, OR 97035" +181021,USB-C Charging Cable,1,11.95,03/28/19 16:58,"194 10th St, San Francisco, CA 94016" +181022,20in Monitor,1,109.99,03/17/19 11:05,"224 Hill St, New York City, NY 10001" +181023,Flatscreen TV,1,300,03/21/19 14:38,"198 Sunset St, San Francisco, CA 94016" +181024,Lightning Charging Cable,1,14.95,03/22/19 19:28,"522 Spruce St, Austin, TX 73301" +181025,Bose SoundSport Headphones,1,99.99,03/05/19 05:35,"208 8th St, Boston, MA 02215" +181026,Wired Headphones,1,11.99,03/14/19 13:40,"121 2nd St, Los Angeles, CA 90001" +181027,AAA Batteries (4-pack),2,2.99,03/17/19 15:13,"295 Adams St, San Francisco, CA 94016" +181028,Wired Headphones,1,11.99,03/27/19 13:15,"443 Forest St, San Francisco, CA 94016" +181029,LG Washing Machine,1,600.0,03/07/19 13:36,"727 Elm St, New York City, NY 10001" +181030,Lightning Charging Cable,1,14.95,03/26/19 19:09,"447 Pine St, Portland, OR 97035" +181031,AA Batteries (4-pack),1,3.84,03/14/19 16:40,"922 9th St, San Francisco, CA 94016" +181032,Bose SoundSport Headphones,1,99.99,03/01/19 19:09,"447 5th St, Los Angeles, CA 90001" +181033,USB-C Charging Cable,1,11.95,03/03/19 19:04,"216 1st St, Los Angeles, CA 90001" +181034,USB-C Charging Cable,1,11.95,03/25/19 21:12,"678 2nd St, New York City, NY 10001" +181035,ThinkPad Laptop,1,999.99,03/13/19 15:55,"382 Sunset St, New York City, NY 10001" +181036,AAA Batteries (4-pack),2,2.99,03/19/19 09:06,"872 4th St, Atlanta, GA 30301" +181037,USB-C Charging Cable,1,11.95,03/04/19 23:09,"317 Pine St, Boston, MA 02215" +181038,27in FHD Monitor,1,149.99,03/30/19 02:06,"357 South St, Portland, OR 97035" +181039,Lightning Charging Cable,1,14.95,03/02/19 18:09,"575 11th St, Los Angeles, CA 90001" +181040,iPhone,1,700,03/02/19 21:56,"852 Spruce St, San Francisco, CA 94016" +181041,Macbook Pro Laptop,1,1700,03/12/19 17:19,"799 Wilson St, Los Angeles, CA 90001" +181042,USB-C Charging Cable,1,11.95,03/08/19 12:37,"401 Spruce St, San Francisco, CA 94016" +181043,Apple Airpods Headphones,1,150,03/22/19 08:07,"53 8th St, Boston, MA 02215" +181044,Lightning Charging Cable,1,14.95,03/08/19 23:02,"590 6th St, Los Angeles, CA 90001" +181045,20in Monitor,1,109.99,03/24/19 14:36,"422 Walnut St, New York City, NY 10001" +181046,AA Batteries (4-pack),1,3.84,03/30/19 23:56,"441 10th St, Boston, MA 02215" +181047,Wired Headphones,1,11.99,03/15/19 17:03,"901 Lake St, Boston, MA 02215" +181048,Lightning Charging Cable,1,14.95,03/07/19 15:00,"386 Willow St, San Francisco, CA 94016" +181049,Wired Headphones,1,11.99,03/30/19 13:38,"534 Willow St, New York City, NY 10001" +181050,Lightning Charging Cable,1,14.95,03/01/19 18:15,"974 Johnson St, Seattle, WA 98101" +181051,Wired Headphones,1,11.99,03/11/19 17:57,"651 Spruce St, New York City, NY 10001" +181052,USB-C Charging Cable,1,11.95,03/01/19 20:07,"100 Lake St, Boston, MA 02215" +181053,Apple Airpods Headphones,1,150,03/07/19 11:02,"770 Park St, Atlanta, GA 30301" +181054,AA Batteries (4-pack),1,3.84,03/18/19 19:01,"614 Lake St, Boston, MA 02215" +181055,Google Phone,1,600,03/12/19 17:02,"852 River St, Atlanta, GA 30301" +181056,USB-C Charging Cable,1,11.95,03/08/19 18:38,"488 4th St, Seattle, WA 98101" +181057,Apple Airpods Headphones,1,150,03/09/19 17:36,"669 Jackson St, Los Angeles, CA 90001" +181058,Lightning Charging Cable,1,14.95,03/15/19 10:31,"127 Dogwood St, Portland, OR 97035" +181059,Wired Headphones,1,11.99,03/04/19 08:16,"850 Jefferson St, Dallas, TX 75001" +181060,Apple Airpods Headphones,1,150,03/07/19 11:53,"536 Chestnut St, Boston, MA 02215" +181061,34in Ultrawide Monitor,1,379.99,03/20/19 10:17,"380 Johnson St, Atlanta, GA 30301" +181062,Bose SoundSport Headphones,1,99.99,03/16/19 10:22,"337 13th St, San Francisco, CA 94016" +181063,AAA Batteries (4-pack),2,2.99,03/13/19 14:34,"35 North St, New York City, NY 10001" +181064,Wired Headphones,1,11.99,03/21/19 17:13,"819 Willow St, Los Angeles, CA 90001" +181065,27in FHD Monitor,1,149.99,03/20/19 12:51,"695 Maple St, Seattle, WA 98101" +181066,Lightning Charging Cable,1,14.95,03/22/19 17:01,"396 Cherry St, San Francisco, CA 94016" +181067,iPhone,1,700,03/17/19 12:28,"534 Sunset St, Austin, TX 73301" +181068,27in 4K Gaming Monitor,1,389.99,03/21/19 15:56,"962 9th St, Portland, OR 97035" +181069,AA Batteries (4-pack),1,3.84,03/31/19 12:01,"541 Lincoln St, San Francisco, CA 94016" +181070,AAA Batteries (4-pack),1,2.99,03/18/19 15:14,"81 8th St, Austin, TX 73301" +181071,Apple Airpods Headphones,1,150,03/05/19 20:18,"840 Center St, Dallas, TX 75001" +181072,AAA Batteries (4-pack),1,2.99,03/30/19 18:43,"172 Pine St, Los Angeles, CA 90001" +181073,Lightning Charging Cable,1,14.95,03/31/19 11:13,"719 Jefferson St, San Francisco, CA 94016" +181074,34in Ultrawide Monitor,1,379.99,03/11/19 21:47,"843 South St, New York City, NY 10001" +181075,AA Batteries (4-pack),2,3.84,03/29/19 12:55,"440 Johnson St, New York City, NY 10001" +181076,USB-C Charging Cable,1,11.95,03/09/19 08:38,"841 Washington St, San Francisco, CA 94016" +181077,iPhone,1,700,03/03/19 15:08,"490 Washington St, Boston, MA 02215" +,,,,, +181078,USB-C Charging Cable,1,11.95,03/06/19 17:36,"74 12th St, Boston, MA 02215" +181079,USB-C Charging Cable,1,11.95,03/01/19 08:21,"498 5th St, Atlanta, GA 30301" +181080,LG Washing Machine,1,600.0,03/04/19 20:46,"930 South St, New York City, NY 10001" +181081,Lightning Charging Cable,1,14.95,03/02/19 19:34,"126 Washington St, San Francisco, CA 94016" +181082,27in 4K Gaming Monitor,1,389.99,03/13/19 23:38,"53 Walnut St, Portland, ME 04101" +181083,AA Batteries (4-pack),2,3.84,03/27/19 21:46,"136 Spruce St, Los Angeles, CA 90001" +181084,AA Batteries (4-pack),2,3.84,03/07/19 19:20,"484 Ridge St, San Francisco, CA 94016" +181085,ThinkPad Laptop,1,999.99,03/29/19 18:59,"770 Church St, San Francisco, CA 94016" +181086,Lightning Charging Cable,1,14.95,03/30/19 13:38,"780 Ridge St, Los Angeles, CA 90001" +181087,Bose SoundSport Headphones,1,99.99,03/16/19 16:59,"376 Maple St, San Francisco, CA 94016" +181088,Apple Airpods Headphones,1,150,03/17/19 18:58,"745 Adams St, Boston, MA 02215" +181089,27in 4K Gaming Monitor,1,389.99,03/01/19 19:46,"895 Lake St, Los Angeles, CA 90001" +181090,Macbook Pro Laptop,1,1700,03/02/19 18:32,"991 Dogwood St, New York City, NY 10001" +181091,Flatscreen TV,1,300,03/30/19 09:38,"62 Church St, Seattle, WA 98101" +181092,LG Washing Machine,1,600.0,03/07/19 15:03,"412 Meadow St, San Francisco, CA 94016" +181093,27in FHD Monitor,1,149.99,03/16/19 13:43,"745 Madison St, New York City, NY 10001" +181094,Macbook Pro Laptop,1,1700,03/02/19 21:14,"527 Pine St, Atlanta, GA 30301" +181094,27in FHD Monitor,1,149.99,03/02/19 21:14,"527 Pine St, Atlanta, GA 30301" +181095,USB-C Charging Cable,1,11.95,03/22/19 13:14,"287 River St, San Francisco, CA 94016" +181096,USB-C Charging Cable,1,11.95,03/04/19 21:35,"484 Willow St, Dallas, TX 75001" +181097,Lightning Charging Cable,1,14.95,03/21/19 15:32,"485 Sunset St, San Francisco, CA 94016" +181098,Apple Airpods Headphones,1,150,03/17/19 09:51,"522 Highland St, San Francisco, CA 94016" +181099,AA Batteries (4-pack),1,3.84,03/02/19 23:52,"597 Main St, San Francisco, CA 94016" +181100,27in FHD Monitor,1,149.99,03/30/19 20:13,"455 Cherry St, San Francisco, CA 94016" +181101,USB-C Charging Cable,1,11.95,03/02/19 15:46,"466 4th St, Los Angeles, CA 90001" +181102,Lightning Charging Cable,1,14.95,03/30/19 06:20,"658 Willow St, Atlanta, GA 30301" +181103,Wired Headphones,2,11.99,03/16/19 10:00,"55 Johnson St, San Francisco, CA 94016" +181104,Wired Headphones,1,11.99,03/29/19 14:19,"825 11th St, Los Angeles, CA 90001" +181105,Wired Headphones,1,11.99,03/30/19 18:05,"881 South St, San Francisco, CA 94016" +181106,iPhone,1,700,03/10/19 07:46,"418 Forest St, San Francisco, CA 94016" +181107,iPhone,1,700,03/21/19 16:37,"998 Center St, Atlanta, GA 30301" +181107,Wired Headphones,1,11.99,03/21/19 16:37,"998 Center St, Atlanta, GA 30301" +181108,Bose SoundSport Headphones,1,99.99,03/28/19 17:57,"988 Washington St, New York City, NY 10001" +181109,Bose SoundSport Headphones,1,99.99,03/16/19 21:09,"164 Walnut St, Austin, TX 73301" +181110,Lightning Charging Cable,1,14.95,03/26/19 22:23,"351 11th St, San Francisco, CA 94016" +181111,Lightning Charging Cable,1,14.95,03/20/19 18:18,"855 Sunset St, Austin, TX 73301" +181112,Google Phone,1,600,03/05/19 20:35,"633 Cherry St, San Francisco, CA 94016" +181113,AAA Batteries (4-pack),1,2.99,03/05/19 10:53,"387 13th St, New York City, NY 10001" +181114,Lightning Charging Cable,1,14.95,03/20/19 13:30,"487 Cedar St, Atlanta, GA 30301" +181115,USB-C Charging Cable,1,11.95,03/19/19 18:44,"158 4th St, Seattle, WA 98101" +181116,Wired Headphones,1,11.99,03/12/19 17:32,"111 River St, New York City, NY 10001" +181117,Macbook Pro Laptop,1,1700,03/29/19 14:48,"267 Dogwood St, Los Angeles, CA 90001" +181118,AAA Batteries (4-pack),6,2.99,03/22/19 16:56,"878 Church St, Boston, MA 02215" +181119,Flatscreen TV,1,300,03/30/19 19:13,"158 Church St, Boston, MA 02215" +181120,Lightning Charging Cable,2,14.95,03/17/19 12:34,"3 Lakeview St, Boston, MA 02215" +181121,USB-C Charging Cable,1,11.95,03/30/19 13:43,"562 9th St, Seattle, WA 98101" +181122,27in 4K Gaming Monitor,1,389.99,03/14/19 21:36,"611 8th St, San Francisco, CA 94016" +181123,Bose SoundSport Headphones,1,99.99,03/16/19 08:40,"324 Madison St, San Francisco, CA 94016" +181124,Apple Airpods Headphones,1,150,03/18/19 11:58,"777 Center St, New York City, NY 10001" +181125,AAA Batteries (4-pack),1,2.99,03/08/19 22:49,"362 13th St, New York City, NY 10001" +181126,Lightning Charging Cable,1,14.95,03/18/19 00:46,"9 Sunset St, Seattle, WA 98101" +181127,USB-C Charging Cable,1,11.95,03/02/19 19:16,"301 13th St, New York City, NY 10001" +181128,27in 4K Gaming Monitor,1,389.99,03/12/19 09:55,"247 South St, New York City, NY 10001" +181129,Lightning Charging Cable,1,14.95,03/31/19 22:29,"443 10th St, Dallas, TX 75001" +181130,USB-C Charging Cable,1,11.95,03/08/19 18:24,"649 Pine St, San Francisco, CA 94016" +181131,Apple Airpods Headphones,1,150,03/11/19 10:53,"513 Cedar St, San Francisco, CA 94016" +181132,Bose SoundSport Headphones,1,99.99,03/27/19 17:46,"65 7th St, Boston, MA 02215" +181133,AAA Batteries (4-pack),1,2.99,03/21/19 20:52,"677 Madison St, New York City, NY 10001" +181134,ThinkPad Laptop,1,999.99,03/10/19 13:47,"576 Church St, San Francisco, CA 94016" +181135,USB-C Charging Cable,1,11.95,03/03/19 11:16,"600 13th St, New York City, NY 10001" +181136,AAA Batteries (4-pack),1,2.99,03/18/19 08:18,"861 Cedar St, San Francisco, CA 94016" +181137,AAA Batteries (4-pack),1,2.99,03/03/19 23:35,"263 14th St, Los Angeles, CA 90001" +181138,Flatscreen TV,1,300,03/13/19 09:39,"653 13th St, Boston, MA 02215" +181139,AAA Batteries (4-pack),1,2.99,03/19/19 10:57,"868 12th St, Atlanta, GA 30301" +181140,AAA Batteries (4-pack),1,2.99,03/28/19 02:12,"317 Lakeview St, Boston, MA 02215" +181141,Macbook Pro Laptop,1,1700,03/29/19 20:32,"536 6th St, Seattle, WA 98101" +181142,27in FHD Monitor,1,149.99,03/24/19 17:09,"360 7th St, Portland, OR 97035" +181143,AAA Batteries (4-pack),1,2.99,03/08/19 13:32,"638 12th St, Los Angeles, CA 90001" +181144,Wired Headphones,2,11.99,03/05/19 18:47,"302 Johnson St, Boston, MA 02215" +181145,Bose SoundSport Headphones,1,99.99,03/31/19 08:11,"43 5th St, Seattle, WA 98101" +181146,27in FHD Monitor,1,149.99,03/31/19 16:17,"705 8th St, New York City, NY 10001" +181147,Lightning Charging Cable,1,14.95,03/04/19 22:07,"693 Park St, New York City, NY 10001" +181148,Lightning Charging Cable,1,14.95,03/22/19 21:29,"943 Main St, Los Angeles, CA 90001" +181149,Wired Headphones,1,11.99,03/29/19 14:19,"563 Jackson St, Boston, MA 02215" +181150,USB-C Charging Cable,1,11.95,03/31/19 11:52,"695 Lakeview St, New York City, NY 10001" +181151,Bose SoundSport Headphones,1,99.99,03/18/19 08:46,"542 North St, New York City, NY 10001" +181152,USB-C Charging Cable,1,11.95,03/09/19 12:13,"926 8th St, Portland, OR 97035" +181153,27in 4K Gaming Monitor,1,389.99,03/20/19 22:29,"82 7th St, New York City, NY 10001" +181154,USB-C Charging Cable,1,11.95,03/21/19 10:49,"802 Walnut St, Seattle, WA 98101" +181155,Macbook Pro Laptop,1,1700,03/09/19 17:35,"101 Ridge St, Los Angeles, CA 90001" +181156,AA Batteries (4-pack),4,3.84,03/11/19 21:58,"564 Center St, San Francisco, CA 94016" +181157,Lightning Charging Cable,1,14.95,03/11/19 14:38,"320 Lakeview St, Seattle, WA 98101" +181158,34in Ultrawide Monitor,1,379.99,03/19/19 12:04,"928 9th St, Los Angeles, CA 90001" +181159,USB-C Charging Cable,1,11.95,03/09/19 04:44,"34 7th St, San Francisco, CA 94016" +181160,USB-C Charging Cable,1,11.95,03/06/19 14:55,"857 Jefferson St, Portland, OR 97035" +181161,USB-C Charging Cable,2,11.95,03/01/19 19:12,"144 6th St, Austin, TX 73301" +181162,27in 4K Gaming Monitor,1,389.99,03/24/19 03:07,"768 Willow St, San Francisco, CA 94016" +181163,Macbook Pro Laptop,1,1700,03/22/19 07:51,"72 7th St, Atlanta, GA 30301" +181164,AAA Batteries (4-pack),1,2.99,03/08/19 10:01,"169 Cherry St, Los Angeles, CA 90001" +181165,AA Batteries (4-pack),2,3.84,03/26/19 17:08,"881 10th St, Austin, TX 73301" +181166,27in 4K Gaming Monitor,1,389.99,03/06/19 18:28,"815 Maple St, Boston, MA 02215" +181167,Bose SoundSport Headphones,1,99.99,03/19/19 10:57,"884 7th St, Los Angeles, CA 90001" +181168,20in Monitor,1,109.99,03/26/19 14:33,"519 Cherry St, New York City, NY 10001" +181169,AAA Batteries (4-pack),1,2.99,03/12/19 12:07,"647 Hill St, San Francisco, CA 94016" +181170,Wired Headphones,1,11.99,03/08/19 21:07,"203 Hickory St, Austin, TX 73301" +181171,iPhone,1,700,03/23/19 20:33,"56 Highland St, New York City, NY 10001" +181172,ThinkPad Laptop,1,999.99,03/06/19 15:53,"851 Cedar St, Atlanta, GA 30301" +181173,iPhone,1,700,03/09/19 18:27,"207 Hickory St, New York City, NY 10001" +181174,Lightning Charging Cable,2,14.95,03/20/19 01:28,"692 11th St, Seattle, WA 98101" +181175,USB-C Charging Cable,1,11.95,03/24/19 13:14,"725 Maple St, San Francisco, CA 94016" +181176,Apple Airpods Headphones,1,150,03/25/19 11:23,"458 West St, Los Angeles, CA 90001" +181177,AAA Batteries (4-pack),1,2.99,03/16/19 13:28,"754 Wilson St, Los Angeles, CA 90001" +181178,USB-C Charging Cable,2,11.95,03/24/19 19:22,"124 Hickory St, San Francisco, CA 94016" +181179,Apple Airpods Headphones,1,150,03/04/19 01:14,"632 11th St, Los Angeles, CA 90001" +181180,Lightning Charging Cable,1,14.95,03/26/19 19:45,"427 Washington St, Boston, MA 02215" +181181,20in Monitor,1,109.99,03/15/19 11:57,"748 Wilson St, San Francisco, CA 94016" +181182,Apple Airpods Headphones,1,150,03/29/19 23:00,"857 Pine St, San Francisco, CA 94016" +181183,Bose SoundSport Headphones,1,99.99,03/07/19 18:54,"369 Main St, New York City, NY 10001" +181184,Macbook Pro Laptop,1,1700,03/10/19 04:55,"880 Lakeview St, Seattle, WA 98101" +181185,AAA Batteries (4-pack),1,2.99,03/15/19 07:29,"895 South St, Boston, MA 02215" +181186,Bose SoundSport Headphones,1,99.99,03/28/19 12:42,"231 Hill St, Seattle, WA 98101" +181187,AAA Batteries (4-pack),3,2.99,03/13/19 01:48,"470 Wilson St, Atlanta, GA 30301" +181188,AA Batteries (4-pack),2,3.84,03/24/19 16:50,"740 Church St, San Francisco, CA 94016" +181189,AAA Batteries (4-pack),4,2.99,03/27/19 20:24,"392 Sunset St, New York City, NY 10001" +181190,Wired Headphones,1,11.99,03/28/19 19:38,"470 Washington St, San Francisco, CA 94016" +181191,Lightning Charging Cable,1,14.95,03/11/19 19:31,"605 Adams St, San Francisco, CA 94016" +181192,USB-C Charging Cable,1,11.95,03/02/19 12:04,"317 Washington St, San Francisco, CA 94016" +,,,,, +181193,Lightning Charging Cable,1,14.95,03/25/19 13:56,"268 Willow St, Los Angeles, CA 90001" +181194,AAA Batteries (4-pack),2,2.99,03/28/19 11:32,"542 Adams St, New York City, NY 10001" +181195,AAA Batteries (4-pack),4,2.99,03/04/19 09:43,"790 Hill St, Atlanta, GA 30301" +181196,Wired Headphones,1,11.99,03/23/19 19:28,"233 1st St, New York City, NY 10001" +181197,AAA Batteries (4-pack),1,2.99,03/29/19 19:43,"152 Washington St, San Francisco, CA 94016" +181198,Lightning Charging Cable,1,14.95,03/20/19 00:28,"11 North St, San Francisco, CA 94016" +181199,Lightning Charging Cable,1,14.95,03/05/19 12:07,"164 10th St, Austin, TX 73301" +181200,Lightning Charging Cable,1,14.95,03/15/19 11:28,"976 Forest St, San Francisco, CA 94016" +181201,Lightning Charging Cable,1,14.95,03/20/19 14:33,"176 Madison St, New York City, NY 10001" +181202,USB-C Charging Cable,1,11.95,03/08/19 18:08,"430 Lakeview St, Austin, TX 73301" +181203,Macbook Pro Laptop,1,1700,03/11/19 19:43,"384 Dogwood St, Los Angeles, CA 90001" +181203,27in FHD Monitor,1,149.99,03/11/19 19:43,"384 Dogwood St, Los Angeles, CA 90001" +181204,Flatscreen TV,1,300,03/04/19 07:35,"751 Hickory St, San Francisco, CA 94016" +181205,LG Washing Machine,1,600.0,03/12/19 08:55,"533 Chestnut St, San Francisco, CA 94016" +181206,AA Batteries (4-pack),2,3.84,03/21/19 12:31,"677 Forest St, San Francisco, CA 94016" +181207,Vareebadd Phone,1,400,03/18/19 19:57,"518 Adams St, San Francisco, CA 94016" +181208,AA Batteries (4-pack),2,3.84,03/02/19 11:50,"55 Cherry St, Portland, OR 97035" +181209,Apple Airpods Headphones,1,150,03/10/19 15:51,"188 Chestnut St, Austin, TX 73301" +181210,Bose SoundSport Headphones,1,99.99,03/30/19 17:26,"355 Park St, New York City, NY 10001" +181211,AAA Batteries (4-pack),1,2.99,03/02/19 10:40,"165 Lake St, Portland, OR 97035" +181212,Bose SoundSport Headphones,1,99.99,03/22/19 11:24,"74 Main St, Boston, MA 02215" +181213,Bose SoundSport Headphones,1,99.99,03/22/19 20:50,"528 12th St, Dallas, TX 75001" +181214,Bose SoundSport Headphones,1,99.99,03/14/19 22:05,"907 9th St, New York City, NY 10001" +181215,20in Monitor,1,109.99,03/06/19 05:17,"279 Main St, San Francisco, CA 94016" +181216,Lightning Charging Cable,1,14.95,03/15/19 18:08,"119 Spruce St, Atlanta, GA 30301" +181217,iPhone,1,700,03/31/19 12:38,"214 Madison St, San Francisco, CA 94016" +181218,USB-C Charging Cable,1,11.95,03/26/19 21:01,"200 1st St, Portland, ME 04101" +181219,iPhone,1,700,03/08/19 22:08,"564 Hickory St, New York City, NY 10001" +181219,Lightning Charging Cable,1,14.95,03/08/19 22:08,"564 Hickory St, New York City, NY 10001" +181220,AAA Batteries (4-pack),3,2.99,03/03/19 19:17,"875 Forest St, Los Angeles, CA 90001" +181221,27in FHD Monitor,1,149.99,03/14/19 15:38,"467 Wilson St, Los Angeles, CA 90001" +181222,AAA Batteries (4-pack),1,2.99,03/09/19 23:10,"383 Jefferson St, Austin, TX 73301" +181223,AAA Batteries (4-pack),1,2.99,03/02/19 15:23,"725 Lincoln St, San Francisco, CA 94016" +181224,AA Batteries (4-pack),2,3.84,03/01/19 19:46,"183 Church St, Portland, OR 97035" +181225,AAA Batteries (4-pack),3,2.99,03/12/19 14:10,"200 Cedar St, Boston, MA 02215" +181226,Apple Airpods Headphones,1,150,03/24/19 06:56,"942 South St, Boston, MA 02215" +181227,Lightning Charging Cable,1,14.95,03/28/19 08:26,"441 Dogwood St, San Francisco, CA 94016" +181228,AA Batteries (4-pack),1,3.84,03/25/19 18:07,"351 Maple St, New York City, NY 10001" +181229,20in Monitor,1,109.99,03/21/19 19:35,"192 4th St, Portland, OR 97035" +181230,Wired Headphones,1,11.99,03/21/19 00:24,"617 1st St, Los Angeles, CA 90001" +181231,AAA Batteries (4-pack),1,2.99,03/16/19 14:14,"864 8th St, Portland, OR 97035" +181232,Vareebadd Phone,1,400,03/02/19 17:56,"570 13th St, Los Angeles, CA 90001" +181233,20in Monitor,1,109.99,03/20/19 05:47,"780 Meadow St, San Francisco, CA 94016" +181234,Apple Airpods Headphones,1,150,03/18/19 12:31,"469 Wilson St, Los Angeles, CA 90001" +181235,Apple Airpods Headphones,1,150,03/21/19 15:55,"684 Sunset St, San Francisco, CA 94016" +181236,Lightning Charging Cable,1,14.95,03/25/19 22:40,"871 Walnut St, New York City, NY 10001" +181237,34in Ultrawide Monitor,1,379.99,03/14/19 19:31,"785 Hill St, Atlanta, GA 30301" +181238,27in 4K Gaming Monitor,1,389.99,03/23/19 05:28,"260 Lake St, New York City, NY 10001" +181239,Bose SoundSport Headphones,1,99.99,03/27/19 10:18,"590 Johnson St, Boston, MA 02215" +181240,ThinkPad Laptop,1,999.99,03/25/19 20:48,"957 Madison St, Los Angeles, CA 90001" +181241,34in Ultrawide Monitor,1,379.99,03/12/19 22:44,"279 Center St, Atlanta, GA 30301" +181242,Lightning Charging Cable,1,14.95,03/28/19 15:15,"664 10th St, New York City, NY 10001" +181243,Wired Headphones,1,11.99,03/18/19 23:41,"710 Elm St, Los Angeles, CA 90001" +181244,Wired Headphones,1,11.99,03/27/19 14:47,"716 6th St, Atlanta, GA 30301" +181245,Bose SoundSport Headphones,1,99.99,03/01/19 22:40,"254 8th St, Portland, OR 97035" +181246,27in FHD Monitor,1,149.99,03/17/19 13:14,"844 Main St, San Francisco, CA 94016" +181247,ThinkPad Laptop,1,999.99,03/04/19 12:42,"652 Jackson St, Austin, TX 73301" +181248,AAA Batteries (4-pack),2,2.99,03/01/19 21:40,"777 Madison St, New York City, NY 10001" +181249,Bose SoundSport Headphones,1,99.99,03/31/19 19:20,"136 Main St, San Francisco, CA 94016" +181249,AAA Batteries (4-pack),1,2.99,03/31/19 19:20,"136 Main St, San Francisco, CA 94016" +181250,20in Monitor,1,109.99,03/26/19 22:26,"629 Lake St, Seattle, WA 98101" +181251,20in Monitor,1,109.99,03/20/19 00:42,"304 Cedar St, San Francisco, CA 94016" +181252,Wired Headphones,1,11.99,03/15/19 20:07,"911 West St, Dallas, TX 75001" +181253,AAA Batteries (4-pack),2,2.99,03/12/19 13:18,"937 1st St, Atlanta, GA 30301" +181254,Lightning Charging Cable,1,14.95,03/10/19 12:50,"260 Church St, San Francisco, CA 94016" +181255,Macbook Pro Laptop,1,1700,03/15/19 23:10,"791 Lincoln St, San Francisco, CA 94016" +181256,Bose SoundSport Headphones,1,99.99,03/02/19 20:06,"514 4th St, Dallas, TX 75001" +181257,27in 4K Gaming Monitor,1,389.99,03/01/19 22:04,"397 Hill St, San Francisco, CA 94016" +181258,iPhone,1,700,03/22/19 05:51,"351 Johnson St, San Francisco, CA 94016" +181259,Wired Headphones,1,11.99,03/18/19 05:03,"457 Cherry St, Portland, OR 97035" +181260,USB-C Charging Cable,1,11.95,03/09/19 15:45,"39 Forest St, New York City, NY 10001" +181261,Google Phone,1,600,03/28/19 08:07,"481 Highland St, Dallas, TX 75001" +181261,Bose SoundSport Headphones,1,99.99,03/28/19 08:07,"481 Highland St, Dallas, TX 75001" +181262,Lightning Charging Cable,1,14.95,03/06/19 12:03,"924 13th St, Seattle, WA 98101" +181263,iPhone,1,700,03/22/19 10:39,"307 Lakeview St, Austin, TX 73301" +181264,Wired Headphones,1,11.99,03/29/19 10:16,"112 River St, Dallas, TX 75001" +181265,USB-C Charging Cable,1,11.95,03/30/19 17:29,"838 Dogwood St, Los Angeles, CA 90001" +181266,Flatscreen TV,1,300,03/04/19 07:47,"365 Lincoln St, San Francisco, CA 94016" +181267,34in Ultrawide Monitor,1,379.99,03/19/19 15:35,"597 12th St, Austin, TX 73301" +181268,Lightning Charging Cable,1,14.95,03/02/19 18:20,"50 6th St, Boston, MA 02215" +181269,AA Batteries (4-pack),1,3.84,03/16/19 20:52,"283 Chestnut St, San Francisco, CA 94016" +181269,Bose SoundSport Headphones,1,99.99,03/16/19 20:52,"283 Chestnut St, San Francisco, CA 94016" +181270,ThinkPad Laptop,1,999.99,03/11/19 23:55,"418 Walnut St, Los Angeles, CA 90001" +181271,34in Ultrawide Monitor,1,379.99,03/22/19 13:38,"943 Hickory St, Atlanta, GA 30301" +181272,Apple Airpods Headphones,1,150,03/18/19 17:24,"789 Lincoln St, Seattle, WA 98101" +181273,Lightning Charging Cable,1,14.95,03/01/19 23:35,"682 Lincoln St, New York City, NY 10001" +181274,Macbook Pro Laptop,1,1700,03/12/19 18:39,"65 Madison St, Boston, MA 02215" +181275,34in Ultrawide Monitor,1,379.99,03/16/19 10:40,"49 Ridge St, Boston, MA 02215" +181276,AAA Batteries (4-pack),1,2.99,03/14/19 14:26,"844 Forest St, San Francisco, CA 94016" +181277,Bose SoundSport Headphones,1,99.99,04/01/19 00:27,"134 Park St, Seattle, WA 98101" +181278,Lightning Charging Cable,3,14.95,03/07/19 23:08,"609 8th St, Dallas, TX 75001" +181279,Wired Headphones,1,11.99,03/09/19 12:19,"380 Washington St, Portland, OR 97035" +181280,USB-C Charging Cable,1,11.95,03/11/19 10:51,"492 Meadow St, New York City, NY 10001" +181281,USB-C Charging Cable,1,11.95,03/04/19 16:53,"245 Lincoln St, Portland, OR 97035" +181282,Macbook Pro Laptop,1,1700,03/08/19 22:32,"383 Chestnut St, Dallas, TX 75001" +181283,USB-C Charging Cable,1,11.95,03/22/19 09:51,"837 Cedar St, Atlanta, GA 30301" +181284,Bose SoundSport Headphones,2,99.99,03/04/19 16:09,"79 Lincoln St, Portland, ME 04101" +181285,Macbook Pro Laptop,1,1700,03/20/19 18:50,"605 Chestnut St, San Francisco, CA 94016" +181286,Wired Headphones,1,11.99,03/18/19 11:03,"494 South St, Boston, MA 02215" +181287,Lightning Charging Cable,1,14.95,03/21/19 15:04,"518 Adams St, Los Angeles, CA 90001" +181288,USB-C Charging Cable,1,11.95,03/27/19 01:04,"477 Wilson St, Portland, ME 04101" +181289,AAA Batteries (4-pack),1,2.99,03/24/19 00:14,"943 Madison St, Los Angeles, CA 90001" +181290,27in 4K Gaming Monitor,1,389.99,03/15/19 17:56,"867 Spruce St, New York City, NY 10001" +181291,USB-C Charging Cable,1,11.95,03/10/19 19:21,"63 Pine St, Atlanta, GA 30301" +181292,20in Monitor,1,109.99,03/30/19 19:19,"580 Cherry St, Seattle, WA 98101" +181293,34in Ultrawide Monitor,1,379.99,03/13/19 11:30,"113 Hickory St, San Francisco, CA 94016" +181294,USB-C Charging Cable,1,11.95,03/16/19 13:21,"739 Spruce St, Los Angeles, CA 90001" +181295,AAA Batteries (4-pack),1,2.99,03/20/19 15:46,"403 12th St, Dallas, TX 75001" +181296,Bose SoundSport Headphones,1,99.99,03/01/19 08:51,"249 Cedar St, Los Angeles, CA 90001" +181297,Lightning Charging Cable,1,14.95,03/12/19 11:15,"960 Center St, Boston, MA 02215" +181298,Lightning Charging Cable,1,14.95,03/28/19 18:10,"156 Lakeview St, New York City, NY 10001" +181299,Apple Airpods Headphones,1,150,03/22/19 10:31,"417 Hickory St, New York City, NY 10001" +181300,AA Batteries (4-pack),2,3.84,03/04/19 15:08,"564 Church St, San Francisco, CA 94016" +181301,34in Ultrawide Monitor,1,379.99,03/02/19 20:28,"167 Lincoln St, Atlanta, GA 30301" +181301,AAA Batteries (4-pack),1,2.99,03/02/19 20:28,"167 Lincoln St, Atlanta, GA 30301" +181302,AAA Batteries (4-pack),1,2.99,04/01/19 00:42,"819 Park St, New York City, NY 10001" +181303,27in FHD Monitor,1,149.99,03/01/19 17:11,"625 Park St, Los Angeles, CA 90001" +181304,Lightning Charging Cable,1,14.95,03/02/19 21:11,"809 12th St, Portland, OR 97035" +181305,Lightning Charging Cable,1,14.95,03/14/19 14:19,"478 Cherry St, San Francisco, CA 94016" +181306,ThinkPad Laptop,1,999.99,03/02/19 12:05,"376 Willow St, New York City, NY 10001" +181307,AA Batteries (4-pack),1,3.84,03/06/19 09:39,"305 2nd St, Los Angeles, CA 90001" +181308,Wired Headphones,1,11.99,03/16/19 15:45,"510 Lakeview St, Los Angeles, CA 90001" +181309,Macbook Pro Laptop,1,1700,03/07/19 21:36,"891 Walnut St, Seattle, WA 98101" +181310,LG Dryer,1,600.0,03/28/19 18:55,"631 Pine St, Dallas, TX 75001" +181311,Macbook Pro Laptop,1,1700,03/09/19 00:46,"959 Cherry St, Austin, TX 73301" +181312,Macbook Pro Laptop,1,1700,03/03/19 16:07,"478 Park St, Boston, MA 02215" +181313,USB-C Charging Cable,1,11.95,03/25/19 07:42,"756 Meadow St, Boston, MA 02215" +181314,Apple Airpods Headphones,1,150,03/20/19 23:33,"346 Church St, Boston, MA 02215" +181315,LG Dryer,1,600.0,03/27/19 20:08,"733 Lakeview St, New York City, NY 10001" +181316,USB-C Charging Cable,1,11.95,03/11/19 14:08,"370 5th St, San Francisco, CA 94016" +181317,27in 4K Gaming Monitor,1,389.99,03/20/19 10:37,"980 Highland St, Atlanta, GA 30301" +181318,Lightning Charging Cable,1,14.95,03/06/19 16:37,"199 River St, Seattle, WA 98101" +181319,AA Batteries (4-pack),2,3.84,03/24/19 08:06,"542 9th St, Los Angeles, CA 90001" +181320,Wired Headphones,1,11.99,03/22/19 23:45,"994 13th St, Seattle, WA 98101" +181321,Wired Headphones,1,11.99,03/23/19 20:06,"272 Elm St, Atlanta, GA 30301" +181322,20in Monitor,1,109.99,03/12/19 14:55,"513 2nd St, Dallas, TX 75001" +181323,Lightning Charging Cable,1,14.95,03/11/19 13:18,"776 West St, Los Angeles, CA 90001" +181324,ThinkPad Laptop,1,999.99,03/02/19 10:22,"339 Meadow St, Seattle, WA 98101" +181325,Lightning Charging Cable,1,14.95,03/18/19 12:13,"961 Jackson St, Dallas, TX 75001" +181326,Bose SoundSport Headphones,1,99.99,03/06/19 14:33,"789 Main St, San Francisco, CA 94016" +181326,Bose SoundSport Headphones,1,99.99,03/06/19 14:33,"789 Main St, San Francisco, CA 94016" +181327,Lightning Charging Cable,1,14.95,03/18/19 12:42,"488 Sunset St, Seattle, WA 98101" +181328,27in FHD Monitor,1,149.99,03/11/19 18:13,"343 Main St, Boston, MA 02215" +181329,AA Batteries (4-pack),1,3.84,03/14/19 16:24,"913 Church St, Portland, OR 97035" +181330,AA Batteries (4-pack),2,3.84,03/02/19 12:33,"974 7th St, Seattle, WA 98101" +181331,Bose SoundSport Headphones,1,99.99,03/25/19 14:16,"199 Lake St, San Francisco, CA 94016" +181332,20in Monitor,1,109.99,03/09/19 21:55,"416 Center St, Boston, MA 02215" +181333,AA Batteries (4-pack),1,3.84,03/05/19 14:24,"373 Lakeview St, Austin, TX 73301" +181334,Google Phone,1,600,03/19/19 08:53,"87 Spruce St, Boston, MA 02215" +181335,Apple Airpods Headphones,1,150,03/04/19 13:00,"738 Spruce St, Los Angeles, CA 90001" +181336,Bose SoundSport Headphones,1,99.99,03/12/19 21:36,"71 North St, Atlanta, GA 30301" +181337,Wired Headphones,1,11.99,03/16/19 20:02,"728 Meadow St, New York City, NY 10001" +181338,Lightning Charging Cable,1,14.95,03/12/19 17:40,"127 4th St, Dallas, TX 75001" +181339,iPhone,1,700,03/05/19 18:04,"498 2nd St, San Francisco, CA 94016" +181339,Wired Headphones,1,11.99,03/05/19 18:04,"498 2nd St, San Francisco, CA 94016" +181340,Wired Headphones,1,11.99,03/27/19 00:52,"800 Park St, Seattle, WA 98101" +181341,Google Phone,1,600,03/15/19 18:13,"614 Center St, Atlanta, GA 30301" +181341,USB-C Charging Cable,1,11.95,03/15/19 18:13,"614 Center St, Atlanta, GA 30301" +181341,Wired Headphones,1,11.99,03/15/19 18:13,"614 Center St, Atlanta, GA 30301" +181342,AAA Batteries (4-pack),1,2.99,03/31/19 19:28,"4 Walnut St, Dallas, TX 75001" +181343,27in FHD Monitor,1,149.99,03/14/19 12:33,"524 Chestnut St, Atlanta, GA 30301" +181344,AAA Batteries (4-pack),2,2.99,03/09/19 10:17,"324 Hill St, Austin, TX 73301" +181345,Apple Airpods Headphones,1,150,03/22/19 06:24,"193 Park St, Austin, TX 73301" +181346,AAA Batteries (4-pack),1,2.99,03/03/19 11:24,"522 South St, Los Angeles, CA 90001" +181346,Apple Airpods Headphones,1,150,03/03/19 11:24,"522 South St, Los Angeles, CA 90001" +181347,AA Batteries (4-pack),2,3.84,03/17/19 03:24,"371 Madison St, San Francisco, CA 94016" +181347,Wired Headphones,1,11.99,03/17/19 03:24,"371 Madison St, San Francisco, CA 94016" +181348,USB-C Charging Cable,1,11.95,03/02/19 00:40,"199 13th St, Atlanta, GA 30301" +181349,AA Batteries (4-pack),1,3.84,03/06/19 23:55,"923 1st St, Portland, OR 97035" +181350,Apple Airpods Headphones,1,150,03/24/19 14:17,"201 Hickory St, Los Angeles, CA 90001" +181351,20in Monitor,1,109.99,03/09/19 14:24,"304 Sunset St, Los Angeles, CA 90001" +181352,Wired Headphones,1,11.99,03/28/19 15:32,"660 Cherry St, Boston, MA 02215" +181353,AA Batteries (4-pack),1,3.84,03/10/19 13:29,"156 Church St, Dallas, TX 75001" +181354,AAA Batteries (4-pack),2,2.99,03/19/19 22:55,"660 9th St, New York City, NY 10001" +181355,AAA Batteries (4-pack),2,2.99,03/09/19 11:59,"296 12th St, New York City, NY 10001" +181356,27in FHD Monitor,1,149.99,03/03/19 01:40,"443 11th St, New York City, NY 10001" +181357,Macbook Pro Laptop,1,1700,03/29/19 16:40,"899 13th St, New York City, NY 10001" +181358,ThinkPad Laptop,1,999.99,03/05/19 22:56,"947 Meadow St, San Francisco, CA 94016" +181359,Wired Headphones,1,11.99,03/25/19 23:36,"655 7th St, San Francisco, CA 94016" +181359,Apple Airpods Headphones,1,150,03/25/19 23:36,"655 7th St, San Francisco, CA 94016" +181360,Flatscreen TV,1,300,03/09/19 21:28,"448 Dogwood St, Seattle, WA 98101" +181361,AA Batteries (4-pack),2,3.84,03/13/19 18:58,"545 Sunset St, Los Angeles, CA 90001" +181362,27in 4K Gaming Monitor,1,389.99,03/08/19 14:09,"204 Pine St, Los Angeles, CA 90001" +181363,USB-C Charging Cable,1,11.95,03/26/19 19:29,"490 Lakeview St, New York City, NY 10001" +181364,Flatscreen TV,1,300,03/17/19 17:41,"291 Adams St, Los Angeles, CA 90001" +181365,AA Batteries (4-pack),1,3.84,03/12/19 20:59,"733 7th St, Atlanta, GA 30301" +181366,Apple Airpods Headphones,1,150,03/24/19 10:26,"340 Walnut St, Boston, MA 02215" +181367,AAA Batteries (4-pack),1,2.99,03/25/19 22:25,"428 Spruce St, San Francisco, CA 94016" +181368,Apple Airpods Headphones,1,150,03/20/19 14:10,"864 Jefferson St, San Francisco, CA 94016" +181369,27in FHD Monitor,1,149.99,03/12/19 08:30,"495 Washington St, New York City, NY 10001" +181370,USB-C Charging Cable,1,11.95,03/26/19 06:24,"33 8th St, Atlanta, GA 30301" +181371,Macbook Pro Laptop,1,1700,03/27/19 07:56,"559 12th St, Atlanta, GA 30301" +181372,AAA Batteries (4-pack),3,2.99,03/04/19 22:38,"24 Hickory St, San Francisco, CA 94016" +181373,Wired Headphones,2,11.99,03/05/19 17:22,"579 Maple St, Los Angeles, CA 90001" +181374,Bose SoundSport Headphones,1,99.99,03/07/19 14:13,"539 7th St, Los Angeles, CA 90001" +181375,Wired Headphones,1,11.99,03/20/19 06:46,"486 Jackson St, New York City, NY 10001" +181376,AAA Batteries (4-pack),1,2.99,03/20/19 18:59,"770 5th St, Austin, TX 73301" +181377,AA Batteries (4-pack),2,3.84,03/01/19 15:59,"955 Ridge St, Dallas, TX 75001" +181378,27in 4K Gaming Monitor,1,389.99,03/15/19 21:27,"401 8th St, Dallas, TX 75001" +181379,27in 4K Gaming Monitor,1,389.99,03/05/19 22:25,"393 Cedar St, San Francisco, CA 94016" +181380,Wired Headphones,1,11.99,03/10/19 22:13,"219 Hickory St, Dallas, TX 75001" +181381,Wired Headphones,1,11.99,03/20/19 14:13,"191 Elm St, San Francisco, CA 94016" +181382,AA Batteries (4-pack),1,3.84,03/16/19 17:49,"721 Lake St, Dallas, TX 75001" +181383,USB-C Charging Cable,1,11.95,03/26/19 13:32,"377 5th St, Los Angeles, CA 90001" +181384,AAA Batteries (4-pack),1,2.99,03/16/19 10:42,"534 Spruce St, Austin, TX 73301" +181385,AAA Batteries (4-pack),1,2.99,03/27/19 10:41,"671 Washington St, San Francisco, CA 94016" +181386,Apple Airpods Headphones,1,150,03/17/19 16:36,"418 Cherry St, Portland, OR 97035" +181387,AAA Batteries (4-pack),1,2.99,03/07/19 04:09,"91 5th St, Los Angeles, CA 90001" +181388,Apple Airpods Headphones,1,150,03/25/19 20:07,"657 11th St, Austin, TX 73301" +181389,iPhone,1,700,03/07/19 20:31,"86 South St, Los Angeles, CA 90001" +181390,Apple Airpods Headphones,1,150,03/08/19 12:27,"656 Maple St, Boston, MA 02215" +181391,USB-C Charging Cable,1,11.95,03/24/19 21:53,"924 Washington St, Austin, TX 73301" +181392,AA Batteries (4-pack),1,3.84,03/09/19 00:49,"610 14th St, Los Angeles, CA 90001" +181393,Wired Headphones,1,11.99,03/27/19 22:23,"23 Pine St, Boston, MA 02215" +181394,AA Batteries (4-pack),1,3.84,03/08/19 23:59,"705 9th St, San Francisco, CA 94016" +181395,iPhone,1,700,03/30/19 23:42,"251 7th St, New York City, NY 10001" +181396,Lightning Charging Cable,1,14.95,03/23/19 07:40,"202 Washington St, San Francisco, CA 94016" +181397,AAA Batteries (4-pack),1,2.99,03/11/19 21:07,"653 Hill St, Los Angeles, CA 90001" +181398,AAA Batteries (4-pack),1,2.99,03/31/19 13:08,"980 Jefferson St, New York City, NY 10001" +181399,Macbook Pro Laptop,1,1700,03/04/19 14:32,"376 Sunset St, Los Angeles, CA 90001" +181400,27in 4K Gaming Monitor,1,389.99,03/05/19 00:49,"176 Highland St, Seattle, WA 98101" +181401,USB-C Charging Cable,1,11.95,03/17/19 17:43,"752 9th St, Portland, OR 97035" +181402,AAA Batteries (4-pack),1,2.99,03/08/19 18:01,"292 Center St, Seattle, WA 98101" +181403,AA Batteries (4-pack),3,3.84,03/11/19 21:31,"510 River St, Los Angeles, CA 90001" +181404,AAA Batteries (4-pack),1,2.99,03/14/19 11:49,"868 Park St, Los Angeles, CA 90001" +181405,34in Ultrawide Monitor,1,379.99,03/19/19 20:15,"96 Willow St, Los Angeles, CA 90001" +181406,AA Batteries (4-pack),1,3.84,03/21/19 13:16,"264 10th St, San Francisco, CA 94016" +181407,USB-C Charging Cable,1,11.95,03/19/19 22:34,"131 North St, San Francisco, CA 94016" +181408,27in 4K Gaming Monitor,1,389.99,03/03/19 09:15,"657 Dogwood St, Atlanta, GA 30301" +181408,ThinkPad Laptop,1,999.99,03/03/19 09:15,"657 Dogwood St, Atlanta, GA 30301" +181409,AAA Batteries (4-pack),3,2.99,03/04/19 03:43,"130 14th St, Austin, TX 73301" +181410,ThinkPad Laptop,1,999.99,03/03/19 20:56,"741 South St, Seattle, WA 98101" +181411,Apple Airpods Headphones,1,150,03/29/19 13:25,"166 7th St, Los Angeles, CA 90001" +181412,27in 4K Gaming Monitor,1,389.99,03/17/19 16:56,"631 Park St, San Francisco, CA 94016" +181413,AAA Batteries (4-pack),1,2.99,03/05/19 17:51,"59 Johnson St, Portland, OR 97035" +181414,USB-C Charging Cable,1,11.95,03/22/19 14:28,"914 4th St, New York City, NY 10001" +181414,Lightning Charging Cable,1,14.95,03/22/19 14:28,"914 4th St, New York City, NY 10001" +181415,AAA Batteries (4-pack),1,2.99,03/26/19 09:52,"340 Main St, Los Angeles, CA 90001" +181416,Wired Headphones,2,11.99,03/13/19 05:49,"580 Walnut St, Dallas, TX 75001" +181417,Lightning Charging Cable,1,14.95,03/26/19 13:07,"970 Johnson St, San Francisco, CA 94016" +181418,iPhone,1,700,03/15/19 20:04,"986 Center St, Seattle, WA 98101" +181419,ThinkPad Laptop,1,999.99,03/10/19 11:26,"915 Walnut St, Los Angeles, CA 90001" +181420,Flatscreen TV,1,300,03/07/19 14:43,"688 Church St, Boston, MA 02215" +181421,27in 4K Gaming Monitor,1,389.99,03/27/19 13:09,"316 Lakeview St, Seattle, WA 98101" +181422,Lightning Charging Cable,1,14.95,03/07/19 21:02,"581 9th St, Boston, MA 02215" +181423,AAA Batteries (4-pack),1,2.99,03/15/19 15:33,"802 Cherry St, New York City, NY 10001" +181424,Macbook Pro Laptop,1,1700,03/06/19 21:10,"727 Jackson St, Los Angeles, CA 90001" +181425,Lightning Charging Cable,2,14.95,03/01/19 19:27,"398 8th St, New York City, NY 10001" +181426,USB-C Charging Cable,1,11.95,03/26/19 13:42,"233 5th St, Dallas, TX 75001" +181427,USB-C Charging Cable,1,11.95,03/28/19 15:07,"710 11th St, Portland, OR 97035" +181428,34in Ultrawide Monitor,1,379.99,03/03/19 05:02,"205 West St, San Francisco, CA 94016" +181429,27in FHD Monitor,1,149.99,03/24/19 10:21,"484 West St, New York City, NY 10001" +181430,Vareebadd Phone,1,400,03/26/19 15:37,"346 13th St, San Francisco, CA 94016" +181431,27in 4K Gaming Monitor,1,389.99,03/25/19 20:37,"707 Pine St, Seattle, WA 98101" +181432,USB-C Charging Cable,1,11.95,03/11/19 22:30,"264 Washington St, New York City, NY 10001" +181433,Flatscreen TV,1,300,03/22/19 21:14,"874 Sunset St, Atlanta, GA 30301" +181434,Lightning Charging Cable,1,14.95,03/27/19 12:35,"14 River St, Los Angeles, CA 90001" +181435,Apple Airpods Headphones,1,150,03/25/19 06:25,"264 9th St, San Francisco, CA 94016" +181435,AA Batteries (4-pack),1,3.84,03/25/19 06:25,"264 9th St, San Francisco, CA 94016" +181436,Flatscreen TV,1,300,03/29/19 23:21,"313 6th St, Atlanta, GA 30301" +181437,iPhone,1,700,03/28/19 12:56,"348 Cedar St, Boston, MA 02215" +181438,USB-C Charging Cable,1,11.95,03/18/19 13:02,"812 Forest St, Atlanta, GA 30301" +181439,27in 4K Gaming Monitor,1,389.99,03/12/19 00:31,"116 Chestnut St, New York City, NY 10001" +181440,Lightning Charging Cable,1,14.95,03/15/19 12:44,"196 1st St, San Francisco, CA 94016" +181441,Flatscreen TV,1,300,03/03/19 21:23,"6 Chestnut St, San Francisco, CA 94016" +181442,USB-C Charging Cable,1,11.95,03/04/19 11:55,"80 Park St, San Francisco, CA 94016" +181443,Wired Headphones,1,11.99,03/06/19 23:13,"196 West St, Boston, MA 02215" +181444,Lightning Charging Cable,2,14.95,03/02/19 18:52,"382 Johnson St, Los Angeles, CA 90001" +181445,ThinkPad Laptop,1,999.99,03/30/19 13:34,"611 Cherry St, Boston, MA 02215" +181446,AAA Batteries (4-pack),1,2.99,03/28/19 12:35,"570 5th St, San Francisco, CA 94016" +181447,AA Batteries (4-pack),1,3.84,03/18/19 13:48,"349 13th St, Portland, ME 04101" +181448,Lightning Charging Cable,2,14.95,03/23/19 15:16,"230 Center St, San Francisco, CA 94016" +181449,Lightning Charging Cable,1,14.95,03/01/19 13:13,"720 Willow St, Boston, MA 02215" +181450,Lightning Charging Cable,1,14.95,03/09/19 00:25,"926 Center St, Los Angeles, CA 90001" +181451,27in FHD Monitor,1,149.99,03/14/19 00:22,"208 11th St, Atlanta, GA 30301" +181452,Lightning Charging Cable,1,14.95,03/23/19 01:57,"629 11th St, Los Angeles, CA 90001" +181453,AA Batteries (4-pack),5,3.84,03/20/19 17:08,"209 Elm St, Boston, MA 02215" +181454,AA Batteries (4-pack),1,3.84,03/11/19 12:31,"111 West St, New York City, NY 10001" +181455,AA Batteries (4-pack),1,3.84,03/18/19 14:01,"590 Maple St, Seattle, WA 98101" +181456,Lightning Charging Cable,1,14.95,03/20/19 12:08,"471 1st St, New York City, NY 10001" +181457,Apple Airpods Headphones,1,150,03/24/19 13:21,"15 Willow St, New York City, NY 10001" +181458,Bose SoundSport Headphones,1,99.99,03/13/19 13:03,"117 Wilson St, Boston, MA 02215" +181459,AAA Batteries (4-pack),1,2.99,03/27/19 14:59,"839 5th St, Los Angeles, CA 90001" +181460,AA Batteries (4-pack),1,3.84,03/08/19 21:29,"26 Lakeview St, Boston, MA 02215" +181461,AAA Batteries (4-pack),1,2.99,03/20/19 11:09,"436 Chestnut St, Los Angeles, CA 90001" +181462,LG Washing Machine,1,600.0,03/16/19 18:23,"902 Wilson St, San Francisco, CA 94016" +181463,USB-C Charging Cable,1,11.95,03/09/19 15:58,"494 Johnson St, Dallas, TX 75001" +181464,Flatscreen TV,1,300,03/31/19 17:01,"775 Wilson St, Austin, TX 73301" +181465,27in 4K Gaming Monitor,1,389.99,03/27/19 23:41,"629 11th St, Los Angeles, CA 90001" +181466,AAA Batteries (4-pack),1,2.99,03/16/19 12:54,"516 Adams St, Los Angeles, CA 90001" +181467,AAA Batteries (4-pack),2,2.99,03/10/19 14:24,"192 Forest St, New York City, NY 10001" +181468,AAA Batteries (4-pack),1,2.99,03/20/19 23:08,"644 Church St, Seattle, WA 98101" +181469,Google Phone,1,600,03/25/19 11:45,"932 Washington St, Boston, MA 02215" +181470,AA Batteries (4-pack),2,3.84,03/29/19 11:05,"384 Johnson St, Seattle, WA 98101" +181471,Apple Airpods Headphones,1,150,03/17/19 13:52,"317 Pine St, Dallas, TX 75001" +181472,Wired Headphones,1,11.99,03/30/19 12:19,"959 Willow St, San Francisco, CA 94016" +181473,iPhone,1,700,03/12/19 17:08,"382 Jefferson St, San Francisco, CA 94016" +181474,34in Ultrawide Monitor,1,379.99,03/03/19 14:52,"759 South St, Portland, OR 97035" +181475,Apple Airpods Headphones,1,150,03/14/19 10:32,"33 Wilson St, San Francisco, CA 94016" +181476,Apple Airpods Headphones,1,150,03/18/19 10:58,"101 Hill St, Dallas, TX 75001" +181477,iPhone,1,700,03/18/19 16:00,"366 Jefferson St, New York City, NY 10001" +181477,Lightning Charging Cable,1,14.95,03/18/19 16:00,"366 Jefferson St, New York City, NY 10001" +181478,Wired Headphones,1,11.99,03/05/19 20:14,"427 Hickory St, Los Angeles, CA 90001" +181479,Macbook Pro Laptop,1,1700,03/11/19 15:46,"837 Maple St, Boston, MA 02215" +181480,USB-C Charging Cable,1,11.95,03/27/19 14:23,"792 Hickory St, Los Angeles, CA 90001" +181481,AA Batteries (4-pack),2,3.84,03/06/19 23:34,"454 Lake St, Atlanta, GA 30301" +181482,Wired Headphones,1,11.99,03/30/19 20:59,"565 4th St, Dallas, TX 75001" +181483,Wired Headphones,1,11.99,03/08/19 21:21,"486 4th St, Seattle, WA 98101" +181484,Flatscreen TV,1,300,03/06/19 15:12,"237 Dogwood St, Boston, MA 02215" +181485,LG Washing Machine,1,600.0,03/19/19 17:20,"206 Main St, Los Angeles, CA 90001" +181486,Macbook Pro Laptop,1,1700,03/10/19 15:06,"325 Cedar St, Seattle, WA 98101" +181487,AA Batteries (4-pack),1,3.84,03/08/19 11:57,"732 4th St, Dallas, TX 75001" +181488,Wired Headphones,1,11.99,03/02/19 10:09,"45 Hill St, New York City, NY 10001" +181489,AAA Batteries (4-pack),1,2.99,03/10/19 21:14,"407 Jackson St, New York City, NY 10001" +181490,Google Phone,1,600,03/09/19 15:22,"825 Cedar St, San Francisco, CA 94016" +181491,AAA Batteries (4-pack),2,2.99,03/11/19 20:27,"136 Park St, San Francisco, CA 94016" +181492,Apple Airpods Headphones,1,150,03/04/19 16:20,"564 Hickory St, Los Angeles, CA 90001" +181493,Google Phone,1,600,03/19/19 11:04,"147 Spruce St, San Francisco, CA 94016" +181494,AA Batteries (4-pack),1,3.84,03/11/19 10:40,"323 8th St, Seattle, WA 98101" +181495,ThinkPad Laptop,1,999.99,03/22/19 22:41,"713 South St, Boston, MA 02215" +181496,Bose SoundSport Headphones,1,99.99,03/13/19 18:09,"829 2nd St, Portland, OR 97035" +181497,34in Ultrawide Monitor,1,379.99,03/24/19 15:18,"483 Jackson St, Seattle, WA 98101" +181498,iPhone,1,700,03/30/19 00:03,"859 Elm St, San Francisco, CA 94016" +181499,20in Monitor,1,109.99,03/29/19 13:21,"606 Madison St, San Francisco, CA 94016" +181500,27in 4K Gaming Monitor,1,389.99,03/20/19 15:20,"30 Main St, Austin, TX 73301" +181501,Bose SoundSport Headphones,1,99.99,03/02/19 20:30,"507 14th St, San Francisco, CA 94016" +181502,iPhone,1,700,03/06/19 17:33,"77 4th St, Dallas, TX 75001" +181503,ThinkPad Laptop,1,999.99,03/26/19 19:29,"428 Park St, Los Angeles, CA 90001" +181504,Apple Airpods Headphones,1,150,03/26/19 16:12,"262 Sunset St, Dallas, TX 75001" +181505,USB-C Charging Cable,1,11.95,03/02/19 19:39,"261 Cedar St, San Francisco, CA 94016" +181506,USB-C Charging Cable,1,11.95,03/11/19 20:04,"104 River St, San Francisco, CA 94016" +181507,AA Batteries (4-pack),3,3.84,03/09/19 10:14,"588 12th St, Los Angeles, CA 90001" +181508,Lightning Charging Cable,1,14.95,03/16/19 22:43,"778 8th St, Dallas, TX 75001" +181509,AA Batteries (4-pack),1,3.84,03/01/19 11:44,"63 Lake St, Portland, OR 97035" +181510,AA Batteries (4-pack),1,3.84,03/31/19 13:01,"542 Hickory St, Dallas, TX 75001" +181511,34in Ultrawide Monitor,1,379.99,03/08/19 15:09,"215 Chestnut St, Los Angeles, CA 90001" +181512,AAA Batteries (4-pack),3,2.99,03/22/19 03:00,"897 10th St, San Francisco, CA 94016" +181513,AAA Batteries (4-pack),1,2.99,03/30/19 10:53,"862 South St, San Francisco, CA 94016" +181514,Wired Headphones,1,11.99,03/17/19 12:14,"599 9th St, Dallas, TX 75001" +181515,27in FHD Monitor,1,149.99,03/26/19 12:23,"864 Jefferson St, Los Angeles, CA 90001" +181516,20in Monitor,1,109.99,03/07/19 19:40,"259 Elm St, New York City, NY 10001" +181516,Vareebadd Phone,1,400,03/07/19 19:40,"259 Elm St, New York City, NY 10001" +181517,Apple Airpods Headphones,1,150,03/04/19 13:09,"143 Lakeview St, Seattle, WA 98101" +181518,Flatscreen TV,1,300,03/05/19 11:26,"208 Jefferson St, Boston, MA 02215" +181519,Lightning Charging Cable,1,14.95,03/17/19 14:25,"131 8th St, San Francisco, CA 94016" +181519,Lightning Charging Cable,1,14.95,03/17/19 14:25,"131 8th St, San Francisco, CA 94016" +181520,AA Batteries (4-pack),1,3.84,03/10/19 11:01,"168 Jackson St, Austin, TX 73301" +181521,Vareebadd Phone,1,400,03/27/19 16:45,"596 Park St, Los Angeles, CA 90001" +181522,AA Batteries (4-pack),1,3.84,03/19/19 17:26,"677 Jackson St, Boston, MA 02215" +181523,AAA Batteries (4-pack),2,2.99,03/09/19 15:57,"646 Wilson St, Los Angeles, CA 90001" +181524,Lightning Charging Cable,1,14.95,03/14/19 16:32,"833 Jackson St, Boston, MA 02215" +181525,iPhone,1,700,03/23/19 13:02,"589 Cherry St, Los Angeles, CA 90001" +181526,LG Dryer,1,600.0,03/02/19 11:04,"837 Church St, New York City, NY 10001" +181527,Macbook Pro Laptop,1,1700,03/30/19 15:04,"377 Lake St, Seattle, WA 98101" +181528,USB-C Charging Cable,2,11.95,03/19/19 20:47,"816 West St, Austin, TX 73301" +181529,AA Batteries (4-pack),1,3.84,03/03/19 14:36,"241 Lake St, Los Angeles, CA 90001" +181530,Lightning Charging Cable,1,14.95,03/11/19 11:06,"125 Church St, Los Angeles, CA 90001" +181531,Lightning Charging Cable,1,14.95,03/20/19 10:50,"148 7th St, Atlanta, GA 30301" +181532,Apple Airpods Headphones,1,150,03/31/19 13:05,"598 Dogwood St, New York City, NY 10001" +181533,34in Ultrawide Monitor,1,379.99,03/03/19 11:30,"381 Jackson St, Los Angeles, CA 90001" +181534,Apple Airpods Headphones,1,150,03/28/19 21:31,"744 Jefferson St, San Francisco, CA 94016" +181535,AAA Batteries (4-pack),2,2.99,03/24/19 10:32,"928 Center St, San Francisco, CA 94016" +181536,USB-C Charging Cable,1,11.95,03/06/19 21:45,"774 Cedar St, Boston, MA 02215" +181537,27in 4K Gaming Monitor,1,389.99,03/03/19 20:45,"264 River St, San Francisco, CA 94016" +181538,AAA Batteries (4-pack),1,2.99,03/28/19 11:45,"70 Johnson St, Dallas, TX 75001" +181539,Lightning Charging Cable,1,14.95,03/29/19 09:10,"361 Cedar St, San Francisco, CA 94016" +181540,20in Monitor,1,109.99,03/18/19 20:47,"423 North St, San Francisco, CA 94016" +181541,AA Batteries (4-pack),1,3.84,03/06/19 12:25,"614 Hickory St, Los Angeles, CA 90001" +181542,Wired Headphones,1,11.99,03/20/19 20:44,"440 1st St, Dallas, TX 75001" +181543,Apple Airpods Headphones,1,150,03/07/19 15:07,"179 14th St, San Francisco, CA 94016" +181544,USB-C Charging Cable,1,11.95,03/17/19 20:49,"920 1st St, Portland, OR 97035" +181545,iPhone,1,700,03/04/19 16:15,"14 North St, Dallas, TX 75001" +181546,Wired Headphones,1,11.99,03/07/19 10:28,"712 6th St, San Francisco, CA 94016" +181547,Wired Headphones,1,11.99,03/13/19 13:25,"373 Wilson St, Los Angeles, CA 90001" +181548,Lightning Charging Cable,1,14.95,03/11/19 21:41,"421 Elm St, Atlanta, GA 30301" +181549,27in FHD Monitor,1,149.99,03/31/19 17:10,"695 North St, Dallas, TX 75001" +181550,USB-C Charging Cable,1,11.95,03/22/19 20:08,"815 Lake St, Seattle, WA 98101" +181551,34in Ultrawide Monitor,1,379.99,03/12/19 04:43,"528 Cherry St, Los Angeles, CA 90001" +181552,Macbook Pro Laptop,1,1700,03/03/19 18:54,"569 Madison St, Dallas, TX 75001" +181553,USB-C Charging Cable,1,11.95,03/17/19 09:32,"623 10th St, Los Angeles, CA 90001" +181554,Lightning Charging Cable,1,14.95,03/05/19 17:06,"179 Lincoln St, Atlanta, GA 30301" +181555,AA Batteries (4-pack),1,3.84,03/08/19 13:10,"345 7th St, Portland, OR 97035" +181556,Lightning Charging Cable,1,14.95,03/16/19 10:07,"340 Park St, San Francisco, CA 94016" +181556,AAA Batteries (4-pack),2,2.99,03/16/19 10:07,"340 Park St, San Francisco, CA 94016" +181557,Lightning Charging Cable,1,14.95,03/25/19 19:11,"742 Forest St, Seattle, WA 98101" +181558,27in 4K Gaming Monitor,1,389.99,03/26/19 18:07,"302 7th St, Los Angeles, CA 90001" +181559,Lightning Charging Cable,1,14.95,03/29/19 18:52,"340 Dogwood St, San Francisco, CA 94016" +181560,27in FHD Monitor,1,149.99,03/16/19 20:42,"391 Sunset St, New York City, NY 10001" +181561,Bose SoundSport Headphones,1,99.99,03/26/19 19:50,"281 Lake St, Seattle, WA 98101" +181562,AAA Batteries (4-pack),1,2.99,03/02/19 12:27,"772 6th St, San Francisco, CA 94016" +,,,,, +181563,AAA Batteries (4-pack),4,2.99,03/30/19 13:13,"383 Dogwood St, Boston, MA 02215" +181564,AAA Batteries (4-pack),2,2.99,03/30/19 19:07,"688 Forest St, Portland, OR 97035" +181565,Bose SoundSport Headphones,1,99.99,03/18/19 14:20,"936 West St, Atlanta, GA 30301" +181566,USB-C Charging Cable,1,11.95,03/20/19 12:22,"869 Center St, Dallas, TX 75001" +181567,27in 4K Gaming Monitor,1,389.99,03/05/19 19:57,"315 Adams St, Seattle, WA 98101" +181568,USB-C Charging Cable,1,11.95,03/07/19 18:11,"603 8th St, San Francisco, CA 94016" +181569,ThinkPad Laptop,1,999.99,03/28/19 16:17,"215 11th St, New York City, NY 10001" +181570,Wired Headphones,1,11.99,03/01/19 21:53,"114 Chestnut St, Portland, OR 97035" +181571,AA Batteries (4-pack),2,3.84,03/08/19 11:15,"570 Jackson St, New York City, NY 10001" +181572,AAA Batteries (4-pack),1,2.99,03/21/19 14:30,"435 South St, San Francisco, CA 94016" +181573,iPhone,1,700,03/02/19 11:52,"10 14th St, Los Angeles, CA 90001" +181574,27in 4K Gaming Monitor,1,389.99,03/04/19 22:56,"843 Cedar St, Los Angeles, CA 90001" +181575,Apple Airpods Headphones,1,150,03/09/19 09:05,"274 Cherry St, Los Angeles, CA 90001" +181576,USB-C Charging Cable,1,11.95,03/14/19 14:04,"105 Washington St, Dallas, TX 75001" +181577,Bose SoundSport Headphones,1,99.99,03/03/19 17:57,"29 Park St, Los Angeles, CA 90001" +181578,Lightning Charging Cable,1,14.95,03/17/19 18:49,"850 Meadow St, Boston, MA 02215" +181579,ThinkPad Laptop,1,999.99,03/16/19 11:53,"493 Adams St, San Francisco, CA 94016" +181580,USB-C Charging Cable,1,11.95,03/29/19 08:52,"314 Lake St, Los Angeles, CA 90001" +181581,Lightning Charging Cable,1,14.95,03/29/19 22:41,"140 9th St, Seattle, WA 98101" +181582,Macbook Pro Laptop,1,1700,03/14/19 18:58,"49 South St, Seattle, WA 98101" +181583,Bose SoundSport Headphones,1,99.99,03/20/19 13:51,"591 Meadow St, New York City, NY 10001" +181584,Lightning Charging Cable,1,14.95,03/08/19 21:19,"69 Sunset St, Austin, TX 73301" +181585,Vareebadd Phone,1,400,03/18/19 14:07,"253 1st St, San Francisco, CA 94016" +181586,USB-C Charging Cable,1,11.95,03/20/19 17:30,"897 Forest St, Atlanta, GA 30301" +181587,AA Batteries (4-pack),1,3.84,03/12/19 21:03,"238 Jefferson St, Atlanta, GA 30301" +181588,AA Batteries (4-pack),1,3.84,03/03/19 16:01,"435 1st St, Los Angeles, CA 90001" +181589,Google Phone,1,600,03/29/19 02:07,"32 Lake St, New York City, NY 10001" +181590,AA Batteries (4-pack),1,3.84,03/17/19 10:45,"806 4th St, Los Angeles, CA 90001" +181591,AAA Batteries (4-pack),1,2.99,03/20/19 08:37,"745 Center St, Los Angeles, CA 90001" +181592,Lightning Charging Cable,1,14.95,03/06/19 11:12,"409 North St, New York City, NY 10001" +181593,USB-C Charging Cable,1,11.95,03/31/19 06:47,"652 Madison St, New York City, NY 10001" +181594,Apple Airpods Headphones,1,150,03/01/19 08:21,"320 South St, Portland, OR 97035" +181595,USB-C Charging Cable,1,11.95,03/13/19 01:05,"142 Cedar St, San Francisco, CA 94016" +181596,34in Ultrawide Monitor,1,379.99,03/01/19 21:28,"613 Cedar St, San Francisco, CA 94016" +181597,Bose SoundSport Headphones,1,99.99,03/26/19 10:45,"522 Sunset St, Boston, MA 02215" +181598,Apple Airpods Headphones,1,150,03/14/19 11:52,"462 Adams St, Dallas, TX 75001" +181599,Wired Headphones,1,11.99,03/20/19 13:17,"437 14th St, New York City, NY 10001" +181600,Apple Airpods Headphones,1,150,03/08/19 22:09,"644 Adams St, Dallas, TX 75001" +181601,AAA Batteries (4-pack),2,2.99,03/07/19 23:35,"659 13th St, Los Angeles, CA 90001" +181602,20in Monitor,1,109.99,03/24/19 21:17,"237 5th St, Los Angeles, CA 90001" +181603,Apple Airpods Headphones,1,150,03/11/19 18:41,"99 Cedar St, Austin, TX 73301" +181604,iPhone,1,700,03/11/19 21:27,"951 12th St, Dallas, TX 75001" +181605,AA Batteries (4-pack),1,3.84,03/22/19 11:58,"440 Hickory St, Portland, ME 04101" +181606,Wired Headphones,1,11.99,03/01/19 10:32,"729 Pine St, Boston, MA 02215" +181607,USB-C Charging Cable,1,11.95,03/14/19 07:54,"295 Sunset St, New York City, NY 10001" +181608,Flatscreen TV,1,300,03/30/19 20:28,"483 Sunset St, New York City, NY 10001" +181609,34in Ultrawide Monitor,1,379.99,03/05/19 15:59,"762 Park St, Atlanta, GA 30301" +181610,Wired Headphones,1,11.99,03/13/19 20:17,"689 Maple St, New York City, NY 10001" +181611,USB-C Charging Cable,1,11.95,03/29/19 10:04,"240 8th St, Los Angeles, CA 90001" +181612,AA Batteries (4-pack),1,3.84,03/13/19 06:49,"256 Lake St, Los Angeles, CA 90001" +181613,AAA Batteries (4-pack),1,2.99,03/14/19 15:24,"115 Maple St, San Francisco, CA 94016" +181614,Lightning Charging Cable,3,14.95,03/21/19 12:25,"308 Chestnut St, Portland, OR 97035" +181615,ThinkPad Laptop,1,999.99,03/30/19 13:02,"8 Hill St, San Francisco, CA 94016" +181616,ThinkPad Laptop,1,999.99,03/13/19 12:02,"372 Hill St, San Francisco, CA 94016" +181617,USB-C Charging Cable,1,11.95,03/02/19 13:31,"806 Sunset St, Portland, ME 04101" +181618,Lightning Charging Cable,2,14.95,03/19/19 22:16,"974 5th St, San Francisco, CA 94016" +181619,Macbook Pro Laptop,1,1700,03/17/19 05:45,"754 Dogwood St, Boston, MA 02215" +181620,Lightning Charging Cable,1,14.95,03/19/19 11:00,"24 Maple St, San Francisco, CA 94016" +181621,iPhone,1,700,03/10/19 14:28,"670 7th St, San Francisco, CA 94016" +181622,Google Phone,1,600,03/07/19 10:25,"986 Maple St, Boston, MA 02215" +181623,Lightning Charging Cable,1,14.95,03/07/19 02:58,"645 Center St, New York City, NY 10001" +181624,Flatscreen TV,1,300,03/08/19 21:58,"174 14th St, Portland, OR 97035" +181625,AAA Batteries (4-pack),2,2.99,03/04/19 10:00,"480 Willow St, Seattle, WA 98101" +181626,AA Batteries (4-pack),1,3.84,03/23/19 12:27,"522 Maple St, Boston, MA 02215" +181627,Macbook Pro Laptop,1,1700,03/06/19 17:32,"142 Ridge St, Seattle, WA 98101" +181628,USB-C Charging Cable,1,11.95,03/23/19 13:43,"832 Main St, San Francisco, CA 94016" +,,,,, +181629,Apple Airpods Headphones,1,150,03/14/19 17:18,"814 Jackson St, Boston, MA 02215" +181630,Wired Headphones,1,11.99,03/07/19 14:29,"832 Church St, Los Angeles, CA 90001" +181631,27in 4K Gaming Monitor,1,389.99,03/14/19 18:04,"596 Meadow St, Dallas, TX 75001" +181632,USB-C Charging Cable,1,11.95,03/23/19 23:23,"84 South St, Dallas, TX 75001" +181633,27in FHD Monitor,1,149.99,03/14/19 14:06,"487 Johnson St, Seattle, WA 98101" +181634,Lightning Charging Cable,1,14.95,03/18/19 19:27,"815 River St, Atlanta, GA 30301" +181635,AAA Batteries (4-pack),1,2.99,03/05/19 19:16,"752 2nd St, Atlanta, GA 30301" +181636,Wired Headphones,2,11.99,03/25/19 10:39,"60 13th St, Los Angeles, CA 90001" +181637,Lightning Charging Cable,1,14.95,03/25/19 17:22,"36 Johnson St, Boston, MA 02215" +181638,Lightning Charging Cable,1,14.95,03/02/19 22:18,"261 Elm St, Boston, MA 02215" +181639,27in FHD Monitor,1,149.99,03/28/19 05:27,"157 1st St, Boston, MA 02215" +181640,AA Batteries (4-pack),1,3.84,03/08/19 12:25,"209 Main St, New York City, NY 10001" +181641,Apple Airpods Headphones,1,150,03/24/19 18:25,"155 11th St, San Francisco, CA 94016" +181642,Wired Headphones,1,11.99,03/29/19 05:33,"396 Wilson St, Seattle, WA 98101" +181643,iPhone,1,700,03/24/19 20:47,"954 Main St, Atlanta, GA 30301" +181643,Lightning Charging Cable,1,14.95,03/24/19 20:47,"954 Main St, Atlanta, GA 30301" +181643,Wired Headphones,1,11.99,03/24/19 20:47,"954 Main St, Atlanta, GA 30301" +181644,27in FHD Monitor,1,149.99,03/18/19 21:54,"833 Hickory St, San Francisco, CA 94016" +181645,AA Batteries (4-pack),2,3.84,03/29/19 20:39,"934 1st St, San Francisco, CA 94016" +181646,Bose SoundSport Headphones,1,99.99,03/25/19 02:30,"64 1st St, Portland, OR 97035" +181647,Bose SoundSport Headphones,1,99.99,03/30/19 07:55,"437 Dogwood St, New York City, NY 10001" +181648,Bose SoundSport Headphones,1,99.99,03/08/19 11:18,"634 Maple St, Boston, MA 02215" +181649,Wired Headphones,1,11.99,03/03/19 18:30,"917 Dogwood St, Dallas, TX 75001" +181650,iPhone,1,700,03/13/19 01:50,"19 4th St, San Francisco, CA 94016" +181651,iPhone,1,700,03/21/19 12:23,"254 West St, Los Angeles, CA 90001" +181652,Apple Airpods Headphones,1,150,03/16/19 13:19,"172 Washington St, San Francisco, CA 94016" +181653,Bose SoundSport Headphones,1,99.99,03/23/19 08:38,"8 4th St, Seattle, WA 98101" +181654,AA Batteries (4-pack),1,3.84,03/14/19 21:59,"811 Pine St, San Francisco, CA 94016" +181655,27in 4K Gaming Monitor,1,389.99,03/30/19 14:43,"257 7th St, San Francisco, CA 94016" +181656,Wired Headphones,1,11.99,03/07/19 09:28,"575 Lake St, San Francisco, CA 94016" +181657,AA Batteries (4-pack),1,3.84,03/31/19 10:07,"627 12th St, New York City, NY 10001" +181658,AAA Batteries (4-pack),2,2.99,04/01/19 00:05,"132 Washington St, Boston, MA 02215" +181659,Bose SoundSport Headphones,1,99.99,03/26/19 16:12,"781 Cherry St, New York City, NY 10001" +181660,ThinkPad Laptop,1,999.99,03/21/19 16:49,"837 2nd St, San Francisco, CA 94016" +181661,Lightning Charging Cable,1,14.95,03/14/19 17:26,"566 Highland St, Los Angeles, CA 90001" +181661,AAA Batteries (4-pack),1,2.99,03/14/19 17:26,"566 Highland St, Los Angeles, CA 90001" +181662,Wired Headphones,1,11.99,03/14/19 18:24,"562 14th St, San Francisco, CA 94016" +181663,AAA Batteries (4-pack),1,2.99,03/24/19 11:09,"723 Washington St, Los Angeles, CA 90001" +181664,Wired Headphones,1,11.99,03/13/19 13:17,"670 Pine St, San Francisco, CA 94016" +181665,USB-C Charging Cable,1,11.95,03/09/19 06:51,"33 Lake St, San Francisco, CA 94016" +181666,Wired Headphones,1,11.99,03/20/19 12:28,"13 Center St, San Francisco, CA 94016" +181667,AAA Batteries (4-pack),1,2.99,03/11/19 11:43,"340 7th St, Dallas, TX 75001" +181668,34in Ultrawide Monitor,1,379.99,03/02/19 23:00,"516 14th St, San Francisco, CA 94016" +181669,20in Monitor,1,109.99,03/11/19 11:05,"727 Maple St, San Francisco, CA 94016" +181670,Wired Headphones,1,11.99,03/03/19 12:12,"601 Pine St, New York City, NY 10001" +181671,AAA Batteries (4-pack),2,2.99,03/21/19 09:48,"539 Lake St, Los Angeles, CA 90001" +181672,AA Batteries (4-pack),1,3.84,03/21/19 21:49,"15 Highland St, New York City, NY 10001" +181673,Lightning Charging Cable,1,14.95,03/12/19 13:55,"179 South St, Los Angeles, CA 90001" +181674,Bose SoundSport Headphones,1,99.99,03/25/19 19:20,"758 5th St, San Francisco, CA 94016" +181675,Wired Headphones,1,11.99,03/03/19 01:14,"116 Lincoln St, Austin, TX 73301" +181676,Apple Airpods Headphones,1,150,03/25/19 09:11,"827 South St, New York City, NY 10001" +181677,AA Batteries (4-pack),2,3.84,03/25/19 06:46,"384 Chestnut St, New York City, NY 10001" +181678,Flatscreen TV,1,300,03/10/19 11:30,"673 Chestnut St, Atlanta, GA 30301" +181679,Wired Headphones,1,11.99,03/28/19 10:44,"270 Sunset St, San Francisco, CA 94016" +181680,USB-C Charging Cable,1,11.95,03/26/19 18:06,"544 2nd St, San Francisco, CA 94016" +181681,Apple Airpods Headphones,1,150,03/13/19 21:10,"799 Church St, New York City, NY 10001" +181682,Apple Airpods Headphones,1,150,03/08/19 17:19,"150 Lakeview St, New York City, NY 10001" +181683,AA Batteries (4-pack),1,3.84,03/10/19 11:28,"258 River St, San Francisco, CA 94016" +181684,Macbook Pro Laptop,1,1700,03/04/19 07:39,"255 Maple St, Seattle, WA 98101" +181685,USB-C Charging Cable,1,11.95,03/10/19 08:13,"329 Highland St, Portland, ME 04101" +181686,AAA Batteries (4-pack),1,2.99,03/11/19 21:59,"636 Johnson St, Atlanta, GA 30301" +181687,iPhone,1,700,03/11/19 22:21,"821 Dogwood St, San Francisco, CA 94016" +181688,Macbook Pro Laptop,1,1700,03/06/19 12:22,"101 Hickory St, Boston, MA 02215" +181689,27in FHD Monitor,1,149.99,03/24/19 15:00,"925 13th St, Portland, OR 97035" +181690,Lightning Charging Cable,1,14.95,03/28/19 11:28,"897 Main St, Los Angeles, CA 90001" +181691,Wired Headphones,1,11.99,03/15/19 17:29,"766 Lakeview St, Seattle, WA 98101" +181692,AA Batteries (4-pack),1,3.84,03/13/19 17:46,"709 10th St, New York City, NY 10001" +181693,AA Batteries (4-pack),1,3.84,03/27/19 21:35,"396 Jackson St, Seattle, WA 98101" +181694,Bose SoundSport Headphones,1,99.99,03/03/19 14:10,"888 Cherry St, New York City, NY 10001" +181695,USB-C Charging Cable,1,11.95,03/10/19 10:33,"294 5th St, Boston, MA 02215" +181696,ThinkPad Laptop,1,999.99,03/27/19 17:16,"230 Ridge St, San Francisco, CA 94016" +181697,Lightning Charging Cable,1,14.95,03/29/19 07:09,"143 Church St, Los Angeles, CA 90001" +181698,Flatscreen TV,1,300,03/30/19 17:04,"459 Walnut St, Austin, TX 73301" +181699,27in 4K Gaming Monitor,1,389.99,03/31/19 12:53,"151 7th St, San Francisco, CA 94016" +181700,Bose SoundSport Headphones,1,99.99,03/10/19 06:57,"584 6th St, Los Angeles, CA 90001" +181701,Macbook Pro Laptop,1,1700,03/21/19 09:22,"961 Hill St, San Francisco, CA 94016" +181702,Lightning Charging Cable,1,14.95,03/06/19 09:46,"854 Hickory St, New York City, NY 10001" +181703,AA Batteries (4-pack),1,3.84,03/27/19 01:40,"738 Willow St, Los Angeles, CA 90001" +181704,Google Phone,1,600,03/11/19 21:51,"773 Lake St, Boston, MA 02215" +181705,AAA Batteries (4-pack),3,2.99,03/31/19 16:38,"219 Lakeview St, Los Angeles, CA 90001" +181706,Lightning Charging Cable,1,14.95,03/07/19 17:42,"804 Jackson St, New York City, NY 10001" +181707,Macbook Pro Laptop,1,1700,03/02/19 15:57,"334 Church St, Austin, TX 73301" +181708,AA Batteries (4-pack),2,3.84,03/13/19 15:44,"617 Forest St, San Francisco, CA 94016" +181709,Lightning Charging Cable,1,14.95,03/10/19 12:35,"293 Church St, San Francisco, CA 94016" +181710,Lightning Charging Cable,1,14.95,03/03/19 17:02,"326 Jefferson St, Portland, OR 97035" +181711,Bose SoundSport Headphones,1,99.99,03/18/19 23:05,"647 Park St, Seattle, WA 98101" +181712,USB-C Charging Cable,1,11.95,03/01/19 12:12,"819 10th St, Los Angeles, CA 90001" +181713,Bose SoundSport Headphones,1,99.99,03/05/19 23:56,"800 12th St, Atlanta, GA 30301" +181714,AA Batteries (4-pack),1,3.84,03/02/19 16:18,"356 14th St, Portland, OR 97035" +181715,27in FHD Monitor,1,149.99,03/17/19 16:35,"795 Washington St, New York City, NY 10001" +181716,27in FHD Monitor,1,149.99,03/22/19 22:16,"244 Adams St, Austin, TX 73301" +181717,Lightning Charging Cable,1,14.95,03/08/19 21:25,"392 Cherry St, San Francisco, CA 94016" +181718,Apple Airpods Headphones,1,150,03/31/19 13:10,"382 11th St, San Francisco, CA 94016" +181719,34in Ultrawide Monitor,1,379.99,03/29/19 22:05,"244 Lakeview St, Dallas, TX 75001" +181720,Apple Airpods Headphones,1,150,03/28/19 20:18,"396 11th St, Boston, MA 02215" +181721,USB-C Charging Cable,1,11.95,03/09/19 08:39,"565 Forest St, San Francisco, CA 94016" +181722,Lightning Charging Cable,1,14.95,03/14/19 21:57,"957 South St, San Francisco, CA 94016" +181723,USB-C Charging Cable,1,11.95,03/05/19 00:10,"895 Maple St, Los Angeles, CA 90001" +181724,27in FHD Monitor,1,149.99,03/07/19 19:55,"954 Pine St, San Francisco, CA 94016" +181725,34in Ultrawide Monitor,1,379.99,03/14/19 13:19,"376 8th St, Boston, MA 02215" +181726,34in Ultrawide Monitor,1,379.99,03/23/19 13:59,"917 Dogwood St, San Francisco, CA 94016" +181727,Macbook Pro Laptop,1,1700,03/10/19 11:12,"64 Adams St, San Francisco, CA 94016" +181728,Wired Headphones,1,11.99,03/27/19 11:13,"788 Jefferson St, San Francisco, CA 94016" +181729,USB-C Charging Cable,2,11.95,04/01/19 00:11,"460 Elm St, Seattle, WA 98101" +181730,Wired Headphones,1,11.99,03/25/19 09:32,"386 Chestnut St, New York City, NY 10001" +181731,Apple Airpods Headphones,1,150,03/03/19 22:58,"702 Willow St, Boston, MA 02215" +181732,34in Ultrawide Monitor,1,379.99,03/27/19 14:59,"929 Lincoln St, San Francisco, CA 94016" +181733,AA Batteries (4-pack),1,3.84,03/18/19 20:06,"129 Johnson St, Los Angeles, CA 90001" +181734,AA Batteries (4-pack),2,3.84,03/05/19 08:20,"994 Ridge St, Dallas, TX 75001" +181735,USB-C Charging Cable,1,11.95,03/21/19 14:17,"832 Highland St, Dallas, TX 75001" +181736,Apple Airpods Headphones,1,150,03/19/19 08:17,"652 Jefferson St, Los Angeles, CA 90001" +181736,Macbook Pro Laptop,1,1700,03/19/19 08:17,"652 Jefferson St, Los Angeles, CA 90001" +181737,USB-C Charging Cable,1,11.95,03/19/19 14:58,"416 7th St, Los Angeles, CA 90001" +181738,27in FHD Monitor,2,149.99,03/03/19 12:38,"226 Chestnut St, Austin, TX 73301" +181739,USB-C Charging Cable,2,11.95,03/25/19 16:43,"742 Hill St, San Francisco, CA 94016" +181740,Bose SoundSport Headphones,1,99.99,03/22/19 13:45,"715 Center St, Dallas, TX 75001" +181741,Wired Headphones,1,11.99,03/30/19 00:41,"360 Maple St, Dallas, TX 75001" +181742,Flatscreen TV,1,300,03/05/19 01:54,"999 Hill St, Seattle, WA 98101" +181743,27in FHD Monitor,1,149.99,03/31/19 07:37,"780 Ridge St, San Francisco, CA 94016" +181744,AAA Batteries (4-pack),1,2.99,03/29/19 07:06,"507 Main St, Dallas, TX 75001" +181745,Apple Airpods Headphones,1,150,03/17/19 10:56,"973 Park St, Atlanta, GA 30301" +181746,USB-C Charging Cable,1,11.95,03/27/19 18:54,"301 7th St, New York City, NY 10001" +181747,USB-C Charging Cable,1,11.95,03/22/19 19:35,"947 Hickory St, Los Angeles, CA 90001" +181748,20in Monitor,1,109.99,03/15/19 07:55,"328 Highland St, San Francisco, CA 94016" +181749,27in 4K Gaming Monitor,1,389.99,03/14/19 18:38,"914 13th St, Seattle, WA 98101" +181750,AAA Batteries (4-pack),1,2.99,03/09/19 19:40,"118 Church St, Boston, MA 02215" +181751,Bose SoundSport Headphones,1,99.99,03/25/19 23:22,"479 Cedar St, San Francisco, CA 94016" +181752,Bose SoundSport Headphones,1,99.99,03/21/19 10:11,"412 11th St, San Francisco, CA 94016" +181753,Google Phone,1,600,03/25/19 13:58,"437 Willow St, Los Angeles, CA 90001" +181754,AA Batteries (4-pack),1,3.84,03/28/19 19:53,"243 9th St, Austin, TX 73301" +,,,,, +181755,27in 4K Gaming Monitor,1,389.99,03/03/19 16:03,"478 Pine St, Atlanta, GA 30301" +181756,USB-C Charging Cable,1,11.95,03/11/19 14:42,"129 Sunset St, Dallas, TX 75001" +181757,Vareebadd Phone,1,400,03/26/19 18:40,"239 Chestnut St, Dallas, TX 75001" +181757,USB-C Charging Cable,1,11.95,03/26/19 18:40,"239 Chestnut St, Dallas, TX 75001" +181758,Google Phone,1,600,03/10/19 08:36,"324 Cedar St, Austin, TX 73301" +181759,AA Batteries (4-pack),1,3.84,03/03/19 20:22,"370 Pine St, Los Angeles, CA 90001" +181760,Apple Airpods Headphones,1,150,03/14/19 09:47,"642 Jackson St, Seattle, WA 98101" +181761,USB-C Charging Cable,1,11.95,03/08/19 01:15,"408 Washington St, San Francisco, CA 94016" +181762,27in 4K Gaming Monitor,1,389.99,03/24/19 23:21,"536 Elm St, New York City, NY 10001" +181763,20in Monitor,1,109.99,03/29/19 18:17,"38 Ridge St, Austin, TX 73301" +181764,Macbook Pro Laptop,1,1700,03/11/19 12:48,"334 Maple St, Los Angeles, CA 90001" +181765,AAA Batteries (4-pack),1,2.99,03/15/19 04:17,"771 Lake St, Los Angeles, CA 90001" +181766,Apple Airpods Headphones,1,150,03/10/19 11:21,"365 Dogwood St, Boston, MA 02215" +181767,Lightning Charging Cable,1,14.95,03/22/19 20:47,"395 Hickory St, Seattle, WA 98101" +181768,Lightning Charging Cable,1,14.95,03/18/19 15:14,"693 2nd St, San Francisco, CA 94016" +181769,AA Batteries (4-pack),3,3.84,03/08/19 16:53,"121 Cherry St, Los Angeles, CA 90001" +181770,iPhone,1,700,03/05/19 21:35,"291 Adams St, Dallas, TX 75001" +181771,Wired Headphones,1,11.99,03/21/19 08:12,"931 Pine St, Boston, MA 02215" +181772,Wired Headphones,1,11.99,03/14/19 19:22,"174 River St, Boston, MA 02215" +181773,USB-C Charging Cable,1,11.95,03/21/19 22:39,"564 Ridge St, New York City, NY 10001" +181774,USB-C Charging Cable,1,11.95,03/29/19 13:43,"543 Jackson St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +181775,Lightning Charging Cable,1,14.95,03/29/19 22:11,"981 Dogwood St, San Francisco, CA 94016" +181776,Lightning Charging Cable,1,14.95,03/21/19 18:44,"519 Ridge St, Seattle, WA 98101" +181777,Apple Airpods Headphones,1,150,03/25/19 08:13,"349 Chestnut St, New York City, NY 10001" +181778,Wired Headphones,1,11.99,03/01/19 20:33,"751 Meadow St, Los Angeles, CA 90001" +181779,20in Monitor,1,109.99,03/06/19 14:27,"289 Ridge St, Atlanta, GA 30301" +181780,ThinkPad Laptop,1,999.99,03/05/19 14:24,"492 Meadow St, Seattle, WA 98101" +181781,20in Monitor,1,109.99,03/18/19 07:47,"5 Hill St, Boston, MA 02215" +181782,27in FHD Monitor,1,149.99,03/09/19 14:16,"123 14th St, San Francisco, CA 94016" +181783,ThinkPad Laptop,1,999.99,03/09/19 17:01,"822 Meadow St, Dallas, TX 75001" +181784,iPhone,1,700,03/17/19 16:13,"136 8th St, Los Angeles, CA 90001" +181785,Apple Airpods Headphones,3,150,03/30/19 16:33,"833 Wilson St, Seattle, WA 98101" +181786,USB-C Charging Cable,1,11.95,03/27/19 20:02,"58 2nd St, Los Angeles, CA 90001" +181787,Wired Headphones,1,11.99,03/09/19 18:33,"550 North St, Seattle, WA 98101" +181788,Bose SoundSport Headphones,1,99.99,03/27/19 13:46,"910 Jefferson St, San Francisco, CA 94016" +181789,USB-C Charging Cable,1,11.95,03/09/19 13:51,"900 12th St, San Francisco, CA 94016" +181790,AAA Batteries (4-pack),1,2.99,03/08/19 08:15,"746 Highland St, New York City, NY 10001" +181791,Macbook Pro Laptop,1,1700,03/09/19 17:03,"207 Elm St, San Francisco, CA 94016" +181792,AA Batteries (4-pack),1,3.84,03/04/19 20:23,"444 Hickory St, Portland, OR 97035" +181793,AA Batteries (4-pack),2,3.84,03/19/19 22:39,"920 Sunset St, Dallas, TX 75001" +181794,AA Batteries (4-pack),1,3.84,03/20/19 17:15,"899 Meadow St, New York City, NY 10001" +181795,Lightning Charging Cable,1,14.95,03/30/19 10:30,"20 Dogwood St, San Francisco, CA 94016" +181796,iPhone,1,700,03/31/19 21:30,"457 Pine St, San Francisco, CA 94016" +181797,27in FHD Monitor,1,149.99,03/16/19 10:47,"827 Highland St, Atlanta, GA 30301" +181798,27in 4K Gaming Monitor,1,389.99,03/07/19 21:14,"61 8th St, San Francisco, CA 94016" +181799,AAA Batteries (4-pack),2,2.99,03/14/19 21:40,"749 Washington St, Los Angeles, CA 90001" +181800,Lightning Charging Cable,2,14.95,03/20/19 21:20,"659 Walnut St, Los Angeles, CA 90001" +181801,Flatscreen TV,1,300,03/02/19 11:02,"835 Jefferson St, Portland, OR 97035" +181802,Bose SoundSport Headphones,1,99.99,03/19/19 19:49,"675 Main St, Los Angeles, CA 90001" +181803,iPhone,1,700,03/10/19 20:52,"58 7th St, San Francisco, CA 94016" +181803,Lightning Charging Cable,1,14.95,03/10/19 20:52,"58 7th St, San Francisco, CA 94016" +181804,Wired Headphones,1,11.99,03/03/19 20:48,"458 River St, New York City, NY 10001" +181805,Lightning Charging Cable,1,14.95,03/29/19 01:58,"529 Adams St, Boston, MA 02215" +181806,AA Batteries (4-pack),1,3.84,03/20/19 16:04,"121 Adams St, Portland, ME 04101" +181807,iPhone,1,700,03/11/19 10:49,"237 Meadow St, Dallas, TX 75001" +181808,Macbook Pro Laptop,1,1700,03/15/19 17:47,"94 13th St, Seattle, WA 98101" +181809,27in FHD Monitor,1,149.99,03/11/19 05:58,"116 Walnut St, San Francisco, CA 94016" +181810,Google Phone,1,600,03/31/19 22:57,"876 Lakeview St, Portland, OR 97035" +181811,Bose SoundSport Headphones,1,99.99,03/30/19 16:14,"753 Jefferson St, Los Angeles, CA 90001" +181812,USB-C Charging Cable,1,11.95,03/29/19 19:51,"888 Park St, Los Angeles, CA 90001" +181813,Apple Airpods Headphones,1,150,03/31/19 16:28,"392 14th St, Atlanta, GA 30301" +181814,Lightning Charging Cable,1,14.95,03/21/19 15:04,"229 Sunset St, Los Angeles, CA 90001" +181815,Bose SoundSport Headphones,1,99.99,03/26/19 15:07,"539 Washington St, Boston, MA 02215" +181816,AA Batteries (4-pack),1,3.84,03/12/19 18:59,"588 Ridge St, New York City, NY 10001" +181816,Wired Headphones,1,11.99,03/12/19 18:59,"588 Ridge St, New York City, NY 10001" +181817,AA Batteries (4-pack),1,3.84,03/13/19 13:57,"282 Johnson St, San Francisco, CA 94016" +181818,Lightning Charging Cable,1,14.95,03/23/19 16:09,"135 Pine St, San Francisco, CA 94016" +181819,USB-C Charging Cable,1,11.95,03/23/19 21:36,"499 Forest St, Dallas, TX 75001" +181820,27in FHD Monitor,1,149.99,03/12/19 23:11,"254 Hill St, Portland, OR 97035" +181821,27in 4K Gaming Monitor,1,389.99,03/04/19 02:00,"795 Meadow St, San Francisco, CA 94016" +181822,27in FHD Monitor,1,149.99,03/21/19 11:13,"369 Willow St, San Francisco, CA 94016" +181823,Lightning Charging Cable,1,14.95,03/06/19 10:20,"827 North St, Boston, MA 02215" +181824,AAA Batteries (4-pack),1,2.99,03/16/19 11:54,"110 7th St, Dallas, TX 75001" +181825,Bose SoundSport Headphones,1,99.99,03/15/19 14:41,"560 River St, San Francisco, CA 94016" +181826,LG Dryer,1,600.0,03/21/19 16:51,"882 Lake St, San Francisco, CA 94016" +181827,Lightning Charging Cable,1,14.95,03/12/19 09:51,"433 Park St, Seattle, WA 98101" +181828,Macbook Pro Laptop,1,1700,03/14/19 12:05,"569 Main St, Los Angeles, CA 90001" +181829,Apple Airpods Headphones,1,150,03/19/19 23:35,"487 Elm St, Seattle, WA 98101" +181830,Google Phone,1,600,03/19/19 12:27,"610 10th St, Boston, MA 02215" +181831,USB-C Charging Cable,1,11.95,03/14/19 12:01,"317 9th St, New York City, NY 10001" +181832,Wired Headphones,1,11.99,03/30/19 13:42,"266 Spruce St, Portland, ME 04101" +181833,USB-C Charging Cable,1,11.95,03/31/19 01:43,"534 West St, New York City, NY 10001" +181834,AA Batteries (4-pack),3,3.84,03/07/19 16:17,"857 Dogwood St, San Francisco, CA 94016" +181835,AAA Batteries (4-pack),4,2.99,03/29/19 08:57,"278 Lake St, San Francisco, CA 94016" +181836,27in 4K Gaming Monitor,1,389.99,03/18/19 12:49,"545 Highland St, San Francisco, CA 94016" +181837,iPhone,1,700,03/21/19 23:45,"60 Forest St, Atlanta, GA 30301" +181838,AA Batteries (4-pack),1,3.84,03/27/19 13:05,"603 Jackson St, Los Angeles, CA 90001" +181839,AA Batteries (4-pack),1,3.84,03/25/19 09:44,"745 4th St, Dallas, TX 75001" +181840,Lightning Charging Cable,1,14.95,03/15/19 12:59,"379 2nd St, San Francisco, CA 94016" +181841,Apple Airpods Headphones,1,150,03/22/19 09:34,"678 Sunset St, New York City, NY 10001" +181842,Flatscreen TV,1,300,03/12/19 23:05,"429 River St, Boston, MA 02215" +181843,Apple Airpods Headphones,1,150,03/21/19 19:33,"209 Park St, San Francisco, CA 94016" +181844,27in 4K Gaming Monitor,1,389.99,03/16/19 00:05,"279 Pine St, Los Angeles, CA 90001" +181845,USB-C Charging Cable,1,11.95,03/13/19 20:47,"352 Center St, Boston, MA 02215" +181846,20in Monitor,1,109.99,03/10/19 10:31,"873 1st St, Austin, TX 73301" +181847,Bose SoundSport Headphones,1,99.99,03/17/19 18:15,"645 Johnson St, Austin, TX 73301" +181848,Lightning Charging Cable,1,14.95,03/31/19 22:25,"235 Park St, Dallas, TX 75001" +181849,Lightning Charging Cable,1,14.95,03/20/19 16:43,"328 Cherry St, Seattle, WA 98101" +181850,Wired Headphones,2,11.99,03/13/19 17:40,"633 6th St, Austin, TX 73301" +181851,Google Phone,1,600,03/15/19 12:12,"586 Hill St, Atlanta, GA 30301" +181852,Flatscreen TV,1,300,03/11/19 11:03,"204 10th St, San Francisco, CA 94016" +181853,Macbook Pro Laptop,1,1700,03/14/19 01:21,"634 6th St, New York City, NY 10001" +181854,34in Ultrawide Monitor,1,379.99,03/16/19 10:01,"929 Jackson St, Seattle, WA 98101" +181855,AA Batteries (4-pack),5,3.84,03/11/19 21:00,"958 Lincoln St, Atlanta, GA 30301" +181856,Bose SoundSport Headphones,1,99.99,03/04/19 16:41,"801 Church St, New York City, NY 10001" +181856,AA Batteries (4-pack),1,3.84,03/04/19 16:41,"801 Church St, New York City, NY 10001" +181857,Lightning Charging Cable,1,14.95,03/12/19 13:00,"878 Dogwood St, Portland, ME 04101" +181858,Macbook Pro Laptop,1,1700,03/15/19 10:55,"57 2nd St, Dallas, TX 75001" +181859,27in 4K Gaming Monitor,1,389.99,03/30/19 19:59,"282 Meadow St, San Francisco, CA 94016" +181860,Wired Headphones,1,11.99,03/31/19 13:27,"408 Cedar St, New York City, NY 10001" +181861,AAA Batteries (4-pack),1,2.99,03/02/19 15:48,"610 Willow St, Atlanta, GA 30301" +181862,AA Batteries (4-pack),1,3.84,03/29/19 21:29,"725 Jefferson St, Los Angeles, CA 90001" +181863,Bose SoundSport Headphones,1,99.99,03/09/19 17:14,"471 Adams St, Dallas, TX 75001" +181864,USB-C Charging Cable,1,11.95,03/22/19 15:36,"757 5th St, Seattle, WA 98101" +181865,Wired Headphones,1,11.99,03/31/19 15:03,"76 Spruce St, Portland, OR 97035" +181866,AA Batteries (4-pack),1,3.84,03/06/19 19:18,"253 West St, Dallas, TX 75001" +181867,AA Batteries (4-pack),1,3.84,03/27/19 16:32,"505 Spruce St, Dallas, TX 75001" +181868,USB-C Charging Cable,1,11.95,03/16/19 13:55,"352 5th St, Portland, OR 97035" +181869,Apple Airpods Headphones,1,150,03/20/19 23:53,"666 1st St, Los Angeles, CA 90001" +181870,USB-C Charging Cable,1,11.95,03/30/19 09:36,"778 Sunset St, New York City, NY 10001" +181871,Bose SoundSport Headphones,1,99.99,03/05/19 04:45,"922 6th St, New York City, NY 10001" +181872,Lightning Charging Cable,1,14.95,03/15/19 21:22,"963 Church St, Los Angeles, CA 90001" +181873,Wired Headphones,1,11.99,03/10/19 18:50,"548 2nd St, Los Angeles, CA 90001" +181874,Flatscreen TV,1,300,03/29/19 12:09,"314 Maple St, New York City, NY 10001" +181875,ThinkPad Laptop,1,999.99,03/22/19 21:05,"897 Lake St, Los Angeles, CA 90001" +181876,Wired Headphones,1,11.99,03/06/19 13:02,"178 Ridge St, Atlanta, GA 30301" +181877,Wired Headphones,1,11.99,03/06/19 17:59,"607 8th St, Los Angeles, CA 90001" +181878,34in Ultrawide Monitor,1,379.99,03/14/19 15:44,"196 Church St, New York City, NY 10001" +181879,Wired Headphones,1,11.99,03/02/19 18:28,"205 Walnut St, Los Angeles, CA 90001" +181880,AA Batteries (4-pack),4,3.84,03/15/19 15:41,"853 Cedar St, Los Angeles, CA 90001" +181881,iPhone,1,700,03/08/19 20:37,"164 Lincoln St, Atlanta, GA 30301" +181882,Lightning Charging Cable,1,14.95,03/16/19 09:03,"819 11th St, Boston, MA 02215" +181883,AAA Batteries (4-pack),1,2.99,03/22/19 11:01,"662 Maple St, Atlanta, GA 30301" +181884,27in 4K Gaming Monitor,1,389.99,03/15/19 22:38,"109 Cherry St, Boston, MA 02215" +181885,Flatscreen TV,1,300,03/10/19 12:31,"358 8th St, Austin, TX 73301" +181886,Apple Airpods Headphones,1,150,03/27/19 11:23,"923 Cherry St, San Francisco, CA 94016" +181887,AA Batteries (4-pack),1,3.84,03/05/19 18:59,"601 North St, San Francisco, CA 94016" +181888,USB-C Charging Cable,1,11.95,03/19/19 16:52,"157 Lincoln St, Seattle, WA 98101" +181889,Macbook Pro Laptop,1,1700,03/05/19 14:10,"147 Ridge St, New York City, NY 10001" +181890,Bose SoundSport Headphones,2,99.99,03/15/19 11:46,"433 South St, San Francisco, CA 94016" +181891,USB-C Charging Cable,2,11.95,03/28/19 08:05,"14 Sunset St, San Francisco, CA 94016" +181892,AA Batteries (4-pack),1,3.84,03/29/19 17:33,"78 8th St, Los Angeles, CA 90001" +181893,Bose SoundSport Headphones,1,99.99,03/08/19 14:32,"715 Highland St, San Francisco, CA 94016" +181894,AAA Batteries (4-pack),1,2.99,03/11/19 20:28,"663 Sunset St, Dallas, TX 75001" +181895,iPhone,1,700,03/12/19 20:18,"365 Dogwood St, Los Angeles, CA 90001" +181896,AAA Batteries (4-pack),2,2.99,03/02/19 06:56,"191 Dogwood St, Boston, MA 02215" +181897,LG Dryer,1,600.0,03/14/19 17:54,"577 Center St, Austin, TX 73301" +181898,34in Ultrawide Monitor,1,379.99,03/26/19 22:28,"153 2nd St, Seattle, WA 98101" +181899,Lightning Charging Cable,2,14.95,03/22/19 19:20,"648 6th St, San Francisco, CA 94016" +181900,iPhone,1,700,03/14/19 01:26,"691 Church St, Portland, ME 04101" +181901,Apple Airpods Headphones,1,150,03/07/19 19:31,"810 Adams St, San Francisco, CA 94016" +181902,Lightning Charging Cable,1,14.95,03/06/19 15:07,"510 Park St, New York City, NY 10001" +181903,Vareebadd Phone,1,400,03/25/19 21:01,"196 Sunset St, Boston, MA 02215" +181903,USB-C Charging Cable,1,11.95,03/25/19 21:01,"196 Sunset St, Boston, MA 02215" +181904,34in Ultrawide Monitor,1,379.99,03/08/19 21:27,"167 Johnson St, Portland, ME 04101" +181905,iPhone,1,700,03/11/19 02:29,"37 Jefferson St, Austin, TX 73301" +181906,Wired Headphones,1,11.99,03/14/19 08:19,"906 Wilson St, Portland, OR 97035" +181907,AA Batteries (4-pack),1,3.84,03/12/19 14:57,"195 Ridge St, Atlanta, GA 30301" +181908,Wired Headphones,1,11.99,03/15/19 19:43,"503 10th St, New York City, NY 10001" +181909,AAA Batteries (4-pack),1,2.99,03/29/19 17:44,"992 1st St, Portland, OR 97035" +181910,Apple Airpods Headphones,1,150,03/30/19 11:44,"425 1st St, Austin, TX 73301" +181911,AA Batteries (4-pack),1,3.84,03/31/19 22:26,"462 Walnut St, Dallas, TX 75001" +181912,27in FHD Monitor,1,149.99,03/22/19 15:01,"340 13th St, Los Angeles, CA 90001" +181913,AAA Batteries (4-pack),1,2.99,03/02/19 17:22,"950 Lincoln St, Portland, OR 97035" +181914,Flatscreen TV,1,300,03/21/19 00:07,"969 14th St, Los Angeles, CA 90001" +181915,Wired Headphones,1,11.99,03/12/19 21:30,"469 10th St, Los Angeles, CA 90001" +181916,27in FHD Monitor,1,149.99,03/31/19 20:44,"587 Hickory St, Boston, MA 02215" +181917,Bose SoundSport Headphones,1,99.99,03/31/19 14:17,"503 Forest St, Los Angeles, CA 90001" +181918,Macbook Pro Laptop,1,1700,03/01/19 15:02,"826 Wilson St, San Francisco, CA 94016" +181919,iPhone,1,700,03/30/19 11:41,"661 11th St, Los Angeles, CA 90001" +181920,Apple Airpods Headphones,1,150,03/02/19 20:58,"240 Center St, New York City, NY 10001" +181921,Lightning Charging Cable,1,14.95,03/17/19 21:16,"380 7th St, New York City, NY 10001" +181922,Lightning Charging Cable,1,14.95,03/10/19 14:33,"466 7th St, Los Angeles, CA 90001" +181923,Lightning Charging Cable,1,14.95,03/10/19 17:37,"300 Cedar St, Seattle, WA 98101" +181924,Lightning Charging Cable,1,14.95,03/08/19 21:03,"817 Washington St, Atlanta, GA 30301" +181925,AA Batteries (4-pack),2,3.84,03/16/19 20:35,"914 Chestnut St, New York City, NY 10001" +181926,USB-C Charging Cable,1,11.95,03/23/19 10:36,"293 Walnut St, Los Angeles, CA 90001" +181927,iPhone,1,700,03/27/19 14:58,"29 9th St, Boston, MA 02215" +181927,Lightning Charging Cable,1,14.95,03/27/19 14:58,"29 9th St, Boston, MA 02215" +181928,AAA Batteries (4-pack),3,2.99,03/23/19 21:56,"970 Jackson St, Atlanta, GA 30301" +181929,USB-C Charging Cable,1,11.95,03/11/19 12:19,"919 Washington St, Boston, MA 02215" +181930,Lightning Charging Cable,1,14.95,03/17/19 09:29,"696 River St, Atlanta, GA 30301" +181931,USB-C Charging Cable,1,11.95,03/15/19 23:42,"940 Center St, Boston, MA 02215" +181932,Bose SoundSport Headphones,1,99.99,03/31/19 13:08,"135 Church St, Boston, MA 02215" +181933,AAA Batteries (4-pack),3,2.99,03/08/19 16:03,"175 West St, San Francisco, CA 94016" +181934,Lightning Charging Cable,1,14.95,03/22/19 13:16,"810 Cedar St, New York City, NY 10001" +181935,Lightning Charging Cable,1,14.95,03/02/19 19:11,"220 10th St, San Francisco, CA 94016" +181936,Apple Airpods Headphones,1,150,03/03/19 09:52,"725 9th St, Atlanta, GA 30301" +181937,Wired Headphones,1,11.99,03/30/19 19:26,"648 Adams St, San Francisco, CA 94016" +181938,AAA Batteries (4-pack),1,2.99,03/26/19 15:06,"969 7th St, Dallas, TX 75001" +181938,27in 4K Gaming Monitor,1,389.99,03/26/19 15:06,"969 7th St, Dallas, TX 75001" +181939,Apple Airpods Headphones,1,150,03/15/19 10:08,"523 Spruce St, New York City, NY 10001" +181940,USB-C Charging Cable,1,11.95,03/24/19 20:53,"565 12th St, Seattle, WA 98101" +181941,USB-C Charging Cable,1,11.95,03/20/19 08:46,"853 North St, Austin, TX 73301" +181942,AA Batteries (4-pack),1,3.84,03/25/19 02:24,"185 Jackson St, Atlanta, GA 30301" +181943,Apple Airpods Headphones,1,150,03/13/19 17:02,"456 South St, Dallas, TX 75001" +181944,Wired Headphones,1,11.99,03/27/19 17:51,"416 Ridge St, Atlanta, GA 30301" +181945,AAA Batteries (4-pack),1,2.99,03/30/19 15:46,"304 Jackson St, San Francisco, CA 94016" +181946,Wired Headphones,1,11.99,03/27/19 09:41,"566 North St, New York City, NY 10001" +181947,Wired Headphones,2,11.99,03/14/19 06:57,"559 Chestnut St, Los Angeles, CA 90001" +181948,AA Batteries (4-pack),1,3.84,03/27/19 05:16,"978 Dogwood St, New York City, NY 10001" +181949,27in FHD Monitor,1,149.99,03/24/19 13:49,"851 5th St, New York City, NY 10001" +181950,Apple Airpods Headphones,1,150,03/23/19 17:06,"411 14th St, San Francisco, CA 94016" +181951,Lightning Charging Cable,1,14.95,03/18/19 20:37,"204 7th St, Los Angeles, CA 90001" +181952,AAA Batteries (4-pack),2,2.99,03/05/19 10:41,"768 2nd St, Los Angeles, CA 90001" +181953,iPhone,1,700,03/03/19 19:15,"779 2nd St, San Francisco, CA 94016" +181954,Google Phone,1,600,03/14/19 18:48,"584 Lakeview St, Seattle, WA 98101" +181954,Wired Headphones,1,11.99,03/14/19 18:48,"584 Lakeview St, Seattle, WA 98101" +181955,Wired Headphones,1,11.99,03/25/19 23:26,"346 Johnson St, New York City, NY 10001" +181956,USB-C Charging Cable,1,11.95,03/12/19 11:42,"256 North St, Portland, OR 97035" +181957,Flatscreen TV,1,300,03/01/19 13:02,"472 Ridge St, Los Angeles, CA 90001" +181958,USB-C Charging Cable,2,11.95,03/06/19 20:47,"96 Church St, Seattle, WA 98101" +181959,Wired Headphones,2,11.99,03/28/19 14:35,"792 Madison St, Portland, OR 97035" +181960,Google Phone,1,600,03/12/19 00:21,"71 Main St, Los Angeles, CA 90001" +181961,USB-C Charging Cable,2,11.95,03/17/19 13:16,"513 6th St, Los Angeles, CA 90001" +181962,Wired Headphones,1,11.99,03/09/19 14:49,"8 Cherry St, New York City, NY 10001" +181963,27in FHD Monitor,1,149.99,03/02/19 19:31,"980 Dogwood St, New York City, NY 10001" +181964,Apple Airpods Headphones,1,150,03/09/19 01:59,"803 Sunset St, Los Angeles, CA 90001" +181964,27in 4K Gaming Monitor,1,389.99,03/09/19 01:59,"803 Sunset St, Los Angeles, CA 90001" +181965,AA Batteries (4-pack),2,3.84,03/15/19 17:08,"758 Park St, Los Angeles, CA 90001" +181966,Apple Airpods Headphones,1,150,03/22/19 10:34,"69 Lincoln St, Dallas, TX 75001" +181967,Macbook Pro Laptop,1,1700,03/08/19 14:21,"495 Hill St, San Francisco, CA 94016" +181968,Apple Airpods Headphones,1,150,03/18/19 13:38,"771 Elm St, Seattle, WA 98101" +181969,USB-C Charging Cable,1,11.95,03/21/19 20:46,"616 13th St, New York City, NY 10001" +181970,Bose SoundSport Headphones,1,99.99,03/11/19 18:08,"273 Main St, San Francisco, CA 94016" +181971,27in FHD Monitor,1,149.99,03/17/19 06:14,"616 Lincoln St, Los Angeles, CA 90001" +181972,Wired Headphones,2,11.99,03/23/19 13:15,"595 Walnut St, New York City, NY 10001" +181973,Bose SoundSport Headphones,1,99.99,03/08/19 10:59,"765 Cherry St, Boston, MA 02215" +181974,Macbook Pro Laptop,1,1700,03/12/19 17:34,"512 14th St, San Francisco, CA 94016" +181975,Lightning Charging Cable,1,14.95,03/21/19 10:50,"565 Highland St, Austin, TX 73301" +181976,Bose SoundSport Headphones,1,99.99,03/04/19 10:45,"875 7th St, Los Angeles, CA 90001" +181977,Wired Headphones,1,11.99,03/20/19 16:52,"70 Lincoln St, Boston, MA 02215" +181978,Lightning Charging Cable,1,14.95,03/07/19 09:58,"732 Dogwood St, Los Angeles, CA 90001" +181979,AA Batteries (4-pack),3,3.84,03/05/19 23:44,"544 7th St, San Francisco, CA 94016" +181980,Apple Airpods Headphones,1,150,03/29/19 19:52,"43 9th St, Los Angeles, CA 90001" +181981,27in FHD Monitor,1,149.99,03/03/19 20:49,"362 Ridge St, Austin, TX 73301" +181982,Apple Airpods Headphones,1,150,03/20/19 15:13,"942 Church St, San Francisco, CA 94016" +181983,27in 4K Gaming Monitor,1,389.99,03/06/19 13:08,"619 Johnson St, Atlanta, GA 30301" +181984,Bose SoundSport Headphones,1,99.99,03/12/19 15:36,"753 Johnson St, Atlanta, GA 30301" +181985,20in Monitor,1,109.99,03/16/19 12:32,"515 Jefferson St, San Francisco, CA 94016" +181986,Wired Headphones,1,11.99,03/01/19 22:38,"411 River St, New York City, NY 10001" +181987,Bose SoundSport Headphones,1,99.99,03/24/19 19:29,"557 Cedar St, San Francisco, CA 94016" +181988,27in 4K Gaming Monitor,1,389.99,03/09/19 16:00,"200 14th St, San Francisco, CA 94016" +181989,AAA Batteries (4-pack),1,2.99,03/27/19 14:37,"219 Forest St, Seattle, WA 98101" +181990,Wired Headphones,1,11.99,03/22/19 08:36,"351 Madison St, Portland, OR 97035" +181991,AA Batteries (4-pack),2,3.84,03/22/19 21:46,"614 Highland St, Portland, OR 97035" +181992,Wired Headphones,1,11.99,03/03/19 06:27,"904 14th St, Seattle, WA 98101" +181993,AA Batteries (4-pack),1,3.84,03/13/19 23:02,"14 Hill St, Los Angeles, CA 90001" +181994,Lightning Charging Cable,1,14.95,03/26/19 22:23,"589 Ridge St, New York City, NY 10001" +181995,Flatscreen TV,1,300,03/12/19 22:11,"112 Pine St, New York City, NY 10001" +181996,Lightning Charging Cable,1,14.95,03/08/19 20:36,"602 7th St, San Francisco, CA 94016" +181997,Lightning Charging Cable,1,14.95,03/16/19 12:33,"11 Dogwood St, Austin, TX 73301" +181998,USB-C Charging Cable,1,11.95,03/24/19 16:17,"44 Cherry St, Austin, TX 73301" +181999,AA Batteries (4-pack),1,3.84,03/31/19 09:14,"234 Church St, Boston, MA 02215" +182000,AAA Batteries (4-pack),1,2.99,03/24/19 19:42,"780 5th St, Los Angeles, CA 90001" +182001,Wired Headphones,1,11.99,03/29/19 17:15,"616 River St, Los Angeles, CA 90001" +182002,Lightning Charging Cable,1,14.95,03/14/19 16:29,"316 South St, Seattle, WA 98101" +182003,Google Phone,1,600,03/10/19 09:44,"758 Park St, Dallas, TX 75001" +182004,AA Batteries (4-pack),2,3.84,03/16/19 13:12,"378 Hickory St, San Francisco, CA 94016" +182005,Vareebadd Phone,1,400,03/01/19 09:04,"652 Cedar St, Boston, MA 02215" +182006,20in Monitor,1,109.99,03/22/19 23:25,"899 North St, San Francisco, CA 94016" +182007,Apple Airpods Headphones,1,150,03/14/19 21:43,"449 Center St, Boston, MA 02215" +182008,Apple Airpods Headphones,1,150,03/26/19 09:03,"800 Cedar St, New York City, NY 10001" +182009,Wired Headphones,1,11.99,03/31/19 20:50,"933 Main St, Seattle, WA 98101" +182010,AAA Batteries (4-pack),1,2.99,03/12/19 07:00,"629 Elm St, New York City, NY 10001" +182011,Lightning Charging Cable,1,14.95,03/03/19 12:38,"219 8th St, Seattle, WA 98101" +182012,27in 4K Gaming Monitor,1,389.99,03/20/19 23:15,"46 Walnut St, New York City, NY 10001" +182013,34in Ultrawide Monitor,1,379.99,03/11/19 09:59,"541 Walnut St, New York City, NY 10001" +182014,27in FHD Monitor,1,149.99,03/18/19 13:33,"385 Park St, Dallas, TX 75001" +182015,AAA Batteries (4-pack),2,2.99,03/27/19 17:46,"725 Hill St, Los Angeles, CA 90001" +182016,Bose SoundSport Headphones,1,99.99,03/11/19 20:29,"140 Pine St, Portland, ME 04101" +182017,Lightning Charging Cable,1,14.95,03/25/19 08:28,"985 Forest St, Boston, MA 02215" +182018,AA Batteries (4-pack),2,3.84,03/04/19 07:08,"989 Spruce St, Portland, OR 97035" +182019,Apple Airpods Headphones,1,150,03/14/19 20:37,"102 Center St, Portland, OR 97035" +182020,iPhone,1,700,03/22/19 15:04,"513 Wilson St, New York City, NY 10001" +182021,34in Ultrawide Monitor,1,379.99,03/19/19 15:06,"545 Lake St, Seattle, WA 98101" +182022,Wired Headphones,1,11.99,03/04/19 08:02,"233 Hickory St, Austin, TX 73301" +182023,20in Monitor,1,109.99,03/24/19 09:47,"999 Highland St, Dallas, TX 75001" +182024,Bose SoundSport Headphones,1,99.99,03/23/19 09:39,"350 7th St, Portland, OR 97035" +182025,AAA Batteries (4-pack),1,2.99,03/11/19 20:20,"179 Ridge St, Atlanta, GA 30301" +182026,Wired Headphones,1,11.99,03/24/19 21:38,"675 Hickory St, New York City, NY 10001" +182027,Flatscreen TV,1,300,03/09/19 13:05,"981 River St, Boston, MA 02215" +182028,ThinkPad Laptop,1,999.99,03/20/19 16:04,"47 Lakeview St, San Francisco, CA 94016" +182029,Lightning Charging Cable,1,14.95,03/28/19 21:30,"330 7th St, San Francisco, CA 94016" +182030,AAA Batteries (4-pack),1,2.99,03/05/19 00:04,"474 8th St, Atlanta, GA 30301" +182031,Apple Airpods Headphones,1,150,03/04/19 08:26,"607 Park St, Austin, TX 73301" +182032,AAA Batteries (4-pack),2,2.99,03/27/19 11:31,"998 Adams St, Portland, OR 97035" +182033,Apple Airpods Headphones,1,150,03/16/19 14:49,"257 Hill St, Seattle, WA 98101" +182034,Google Phone,1,600,03/02/19 11:07,"238 Hill St, New York City, NY 10001" +182035,Lightning Charging Cable,1,14.95,03/25/19 13:55,"72 12th St, New York City, NY 10001" +182035,USB-C Charging Cable,1,11.95,03/25/19 13:55,"72 12th St, New York City, NY 10001" +182036,Apple Airpods Headphones,1,150,03/20/19 11:40,"358 Adams St, Los Angeles, CA 90001" +182037,Flatscreen TV,1,300,03/02/19 11:46,"913 Sunset St, Los Angeles, CA 90001" +182038,Wired Headphones,1,11.99,03/14/19 11:35,"447 Hickory St, San Francisco, CA 94016" +182039,Flatscreen TV,1,300,03/12/19 00:17,"812 Jackson St, New York City, NY 10001" +182040,Wired Headphones,1,11.99,03/15/19 22:06,"821 Church St, San Francisco, CA 94016" +182041,iPhone,1,700,03/03/19 12:14,"602 6th St, Los Angeles, CA 90001" +182041,Lightning Charging Cable,1,14.95,03/03/19 12:14,"602 6th St, Los Angeles, CA 90001" +182042,Apple Airpods Headphones,1,150,03/17/19 10:16,"705 Lakeview St, Boston, MA 02215" +182043,27in FHD Monitor,1,149.99,03/13/19 23:08,"141 Church St, Los Angeles, CA 90001" +182044,Wired Headphones,1,11.99,03/12/19 10:57,"928 Johnson St, Portland, OR 97035" +182045,LG Dryer,1,600.0,03/06/19 17:47,"900 Main St, Seattle, WA 98101" +182046,Wired Headphones,1,11.99,03/18/19 13:06,"999 13th St, San Francisco, CA 94016" +182047,Wired Headphones,1,11.99,03/23/19 12:29,"726 10th St, San Francisco, CA 94016" +182048,Wired Headphones,1,11.99,03/26/19 07:28,"833 9th St, Seattle, WA 98101" +182049,Flatscreen TV,1,300,03/31/19 21:52,"752 Center St, San Francisco, CA 94016" +182050,AAA Batteries (4-pack),1,2.99,03/10/19 07:08,"850 7th St, San Francisco, CA 94016" +182051,Apple Airpods Headphones,1,150,03/14/19 11:16,"948 Madison St, Boston, MA 02215" +182052,AAA Batteries (4-pack),2,2.99,03/03/19 13:31,"739 Madison St, San Francisco, CA 94016" +182053,Apple Airpods Headphones,1,150,03/12/19 15:27,"292 Adams St, Atlanta, GA 30301" +182053,Macbook Pro Laptop,1,1700,03/12/19 15:27,"292 Adams St, Atlanta, GA 30301" +182054,USB-C Charging Cable,3,11.95,03/01/19 13:53,"343 Dogwood St, San Francisco, CA 94016" +182055,Google Phone,1,600,03/12/19 18:38,"791 Main St, Boston, MA 02215" +182056,27in 4K Gaming Monitor,1,389.99,03/01/19 23:03,"514 Sunset St, Los Angeles, CA 90001" +182057,AA Batteries (4-pack),2,3.84,03/19/19 23:42,"177 14th St, Los Angeles, CA 90001" +182058,20in Monitor,1,109.99,03/22/19 19:25,"417 Hickory St, Boston, MA 02215" +182059,AA Batteries (4-pack),1,3.84,03/03/19 21:52,"401 Washington St, New York City, NY 10001" +182060,34in Ultrawide Monitor,1,379.99,03/29/19 07:27,"233 Madison St, San Francisco, CA 94016" +182061,Flatscreen TV,1,300,03/23/19 12:33,"575 Adams St, Los Angeles, CA 90001" +182061,Lightning Charging Cable,1,14.95,03/23/19 12:33,"575 Adams St, Los Angeles, CA 90001" +182062,AA Batteries (4-pack),2,3.84,03/19/19 20:52,"132 Johnson St, Atlanta, GA 30301" +182063,20in Monitor,1,109.99,03/15/19 12:07,"361 Washington St, Boston, MA 02215" +182064,AAA Batteries (4-pack),1,2.99,03/03/19 18:33,"977 Elm St, Los Angeles, CA 90001" +182065,iPhone,1,700,03/19/19 20:07,"857 Maple St, Portland, OR 97035" +182066,Apple Airpods Headphones,1,150,03/29/19 20:39,"451 Jefferson St, Austin, TX 73301" +182067,Lightning Charging Cable,1,14.95,03/19/19 02:39,"809 Center St, Atlanta, GA 30301" +182068,Bose SoundSport Headphones,1,99.99,03/16/19 23:55,"539 11th St, Seattle, WA 98101" +182069,Bose SoundSport Headphones,1,99.99,03/20/19 08:50,"54 Elm St, Los Angeles, CA 90001" +182070,AAA Batteries (4-pack),3,2.99,03/10/19 14:17,"611 Ridge St, Austin, TX 73301" +182071,Lightning Charging Cable,1,14.95,03/24/19 12:37,"923 Sunset St, San Francisco, CA 94016" +182072,Wired Headphones,1,11.99,03/15/19 19:25,"725 6th St, San Francisco, CA 94016" +182073,AA Batteries (4-pack),1,3.84,03/19/19 10:21,"801 Cherry St, Boston, MA 02215" +182074,Wired Headphones,1,11.99,03/28/19 19:41,"363 7th St, San Francisco, CA 94016" +182075,iPhone,1,700,03/10/19 01:06,"289 Hickory St, San Francisco, CA 94016" +182076,Apple Airpods Headphones,1,150,03/22/19 19:04,"333 1st St, Los Angeles, CA 90001" +182077,Apple Airpods Headphones,1,150,03/11/19 11:13,"393 Hill St, Dallas, TX 75001" +182078,AA Batteries (4-pack),1,3.84,03/14/19 17:15,"732 2nd St, Dallas, TX 75001" +182079,AAA Batteries (4-pack),1,2.99,03/15/19 11:16,"701 Madison St, Atlanta, GA 30301" +182080,Bose SoundSport Headphones,1,99.99,03/18/19 15:34,"967 Madison St, San Francisco, CA 94016" +182081,Wired Headphones,1,11.99,03/24/19 06:16,"331 Adams St, Dallas, TX 75001" +182082,Lightning Charging Cable,1,14.95,03/08/19 07:37,"227 Lakeview St, Los Angeles, CA 90001" +182083,Apple Airpods Headphones,1,150,03/01/19 10:36,"168 North St, Atlanta, GA 30301" +182084,AA Batteries (4-pack),2,3.84,03/28/19 18:47,"554 Cherry St, Dallas, TX 75001" +182085,27in FHD Monitor,1,149.99,03/09/19 07:20,"126 14th St, Seattle, WA 98101" +182086,AA Batteries (4-pack),1,3.84,03/31/19 09:30,"911 Elm St, Los Angeles, CA 90001" +182087,Macbook Pro Laptop,1,1700,03/05/19 18:09,"25 Jackson St, Los Angeles, CA 90001" +182088,27in FHD Monitor,1,149.99,03/02/19 14:41,"821 Willow St, Atlanta, GA 30301" +182089,Macbook Pro Laptop,1,1700,03/11/19 01:21,"815 South St, San Francisco, CA 94016" +182090,Apple Airpods Headphones,1,150,03/24/19 07:35,"697 Dogwood St, New York City, NY 10001" +182091,34in Ultrawide Monitor,1,379.99,03/12/19 08:12,"967 Chestnut St, New York City, NY 10001" +182092,Bose SoundSport Headphones,1,99.99,03/11/19 16:03,"760 Park St, Austin, TX 73301" +182093,USB-C Charging Cable,1,11.95,03/30/19 17:52,"654 Cherry St, San Francisco, CA 94016" +182094,Lightning Charging Cable,1,14.95,03/27/19 18:09,"532 Pine St, San Francisco, CA 94016" +182095,Bose SoundSport Headphones,1,99.99,03/01/19 19:10,"213 Meadow St, Atlanta, GA 30301" +182096,AAA Batteries (4-pack),5,2.99,03/31/19 11:36,"991 Adams St, Seattle, WA 98101" +182097,AAA Batteries (4-pack),2,2.99,03/17/19 16:42,"570 Main St, San Francisco, CA 94016" +182098,Bose SoundSport Headphones,1,99.99,03/18/19 18:03,"602 Adams St, San Francisco, CA 94016" +182099,Wired Headphones,1,11.99,03/25/19 08:48,"493 Cedar St, Portland, ME 04101" +182099,Wired Headphones,1,11.99,03/25/19 08:48,"493 Cedar St, Portland, ME 04101" +182100,USB-C Charging Cable,1,11.95,03/11/19 13:38,"497 Maple St, San Francisco, CA 94016" +182101,AA Batteries (4-pack),1,3.84,03/27/19 19:23,"760 Adams St, Atlanta, GA 30301" +182102,Apple Airpods Headphones,1,150,03/03/19 11:17,"621 Walnut St, New York City, NY 10001" +182103,Apple Airpods Headphones,1,150,03/24/19 19:23,"538 Sunset St, Dallas, TX 75001" +182104,ThinkPad Laptop,1,999.99,03/31/19 20:31,"920 South St, Dallas, TX 75001" +182105,Bose SoundSport Headphones,1,99.99,03/30/19 20:07,"967 4th St, Los Angeles, CA 90001" +182106,Lightning Charging Cable,1,14.95,03/16/19 09:31,"240 Lakeview St, Seattle, WA 98101" +182107,AA Batteries (4-pack),2,3.84,03/14/19 12:18,"311 North St, Atlanta, GA 30301" +182108,Bose SoundSport Headphones,1,99.99,03/30/19 10:01,"334 1st St, New York City, NY 10001" +182109,USB-C Charging Cable,1,11.95,03/21/19 08:22,"911 Jackson St, Boston, MA 02215" +182110,Macbook Pro Laptop,1,1700,03/29/19 15:15,"622 Church St, Los Angeles, CA 90001" +182111,AAA Batteries (4-pack),2,2.99,03/01/19 21:38,"151 5th St, San Francisco, CA 94016" +182112,Google Phone,1,600,03/06/19 11:50,"400 8th St, Los Angeles, CA 90001" +182113,Macbook Pro Laptop,1,1700,03/04/19 14:11,"697 Lincoln St, San Francisco, CA 94016" +182114,Wired Headphones,1,11.99,03/15/19 14:40,"563 Johnson St, Los Angeles, CA 90001" +182115,Lightning Charging Cable,1,14.95,03/02/19 18:27,"118 Maple St, New York City, NY 10001" +182116,AAA Batteries (4-pack),1,2.99,03/29/19 05:50,"525 Hill St, San Francisco, CA 94016" +182117,Wired Headphones,1,11.99,03/24/19 08:42,"227 Lake St, Boston, MA 02215" +182118,Lightning Charging Cable,1,14.95,03/01/19 13:23,"3 Main St, Portland, OR 97035" +182119,Apple Airpods Headphones,1,150,03/23/19 17:07,"808 Jefferson St, San Francisco, CA 94016" +182120,AAA Batteries (4-pack),1,2.99,03/13/19 14:21,"367 Highland St, San Francisco, CA 94016" +182121,AA Batteries (4-pack),1,3.84,03/13/19 19:32,"837 Madison St, Los Angeles, CA 90001" +182122,ThinkPad Laptop,1,999.99,03/16/19 19:08,"34 4th St, San Francisco, CA 94016" +182123,27in FHD Monitor,1,149.99,03/15/19 11:44,"697 Lincoln St, Dallas, TX 75001" +182124,Lightning Charging Cable,1,14.95,03/30/19 17:34,"596 Hill St, Portland, OR 97035" +182125,Lightning Charging Cable,1,14.95,03/14/19 10:12,"50 Park St, New York City, NY 10001" +182126,Lightning Charging Cable,1,14.95,03/30/19 11:13,"672 Jefferson St, Atlanta, GA 30301" +182127,AA Batteries (4-pack),1,3.84,03/12/19 18:48,"526 Main St, San Francisco, CA 94016" +182128,Wired Headphones,1,11.99,03/15/19 10:23,"554 6th St, San Francisco, CA 94016" +182129,AA Batteries (4-pack),2,3.84,03/28/19 12:56,"320 Walnut St, San Francisco, CA 94016" +182130,AAA Batteries (4-pack),2,2.99,03/20/19 14:44,"230 Cedar St, Los Angeles, CA 90001" +182131,Wired Headphones,1,11.99,03/09/19 14:34,"148 6th St, San Francisco, CA 94016" +182132,AA Batteries (4-pack),2,3.84,03/08/19 19:00,"427 West St, San Francisco, CA 94016" +182133,AAA Batteries (4-pack),3,2.99,03/12/19 23:18,"456 Highland St, Seattle, WA 98101" +182134,AAA Batteries (4-pack),1,2.99,03/07/19 12:17,"93 2nd St, Seattle, WA 98101" +182135,27in FHD Monitor,1,149.99,03/08/19 20:21,"597 Sunset St, Dallas, TX 75001" +182136,AAA Batteries (4-pack),1,2.99,03/25/19 13:42,"452 South St, Dallas, TX 75001" +182137,Google Phone,1,600,03/05/19 18:09,"582 Cedar St, Austin, TX 73301" +182137,USB-C Charging Cable,1,11.95,03/05/19 18:09,"582 Cedar St, Austin, TX 73301" +182138,Wired Headphones,2,11.99,03/03/19 10:51,"400 Forest St, Los Angeles, CA 90001" +182139,ThinkPad Laptop,1,999.99,03/07/19 04:54,"666 Meadow St, San Francisco, CA 94016" +182140,Vareebadd Phone,1,400,03/24/19 13:04,"867 Dogwood St, Dallas, TX 75001" +182140,USB-C Charging Cable,1,11.95,03/24/19 13:04,"867 Dogwood St, Dallas, TX 75001" +182141,Wired Headphones,1,11.99,03/09/19 13:17,"153 Ridge St, New York City, NY 10001" +182142,34in Ultrawide Monitor,1,379.99,03/01/19 15:14,"178 Cedar St, New York City, NY 10001" +182143,20in Monitor,1,109.99,03/25/19 19:58,"396 9th St, Los Angeles, CA 90001" +182144,Apple Airpods Headphones,1,150,03/31/19 18:33,"678 Church St, Atlanta, GA 30301" +182145,Vareebadd Phone,1,400,03/16/19 22:56,"732 Church St, San Francisco, CA 94016" +182146,USB-C Charging Cable,1,11.95,03/08/19 10:16,"799 11th St, Portland, ME 04101" +182147,AA Batteries (4-pack),1,3.84,03/11/19 17:41,"266 South St, Atlanta, GA 30301" +182148,Wired Headphones,1,11.99,03/02/19 08:23,"392 Washington St, Atlanta, GA 30301" +182149,iPhone,1,700,03/30/19 13:36,"631 South St, Dallas, TX 75001" +182150,34in Ultrawide Monitor,1,379.99,03/04/19 11:50,"940 Meadow St, San Francisco, CA 94016" +182151,Apple Airpods Headphones,1,150,03/14/19 14:32,"373 Jackson St, Atlanta, GA 30301" +182152,Wired Headphones,1,11.99,03/27/19 15:10,"239 9th St, Portland, ME 04101" +182153,AAA Batteries (4-pack),1,2.99,03/02/19 16:20,"83 7th St, New York City, NY 10001" +182154,AAA Batteries (4-pack),1,2.99,03/04/19 20:30,"660 Walnut St, Los Angeles, CA 90001" +182155,Wired Headphones,1,11.99,03/08/19 21:32,"214 Forest St, Portland, OR 97035" +182156,Lightning Charging Cable,2,14.95,03/12/19 14:20,"129 Park St, San Francisco, CA 94016" +182157,AAA Batteries (4-pack),1,2.99,03/02/19 16:27,"404 Jackson St, San Francisco, CA 94016" +182158,Wired Headphones,1,11.99,03/02/19 15:47,"516 9th St, New York City, NY 10001" +182159,Wired Headphones,1,11.99,03/08/19 20:52,"106 Hill St, San Francisco, CA 94016" +182160,AA Batteries (4-pack),1,3.84,03/23/19 23:36,"666 Ridge St, Los Angeles, CA 90001" +182161,Lightning Charging Cable,1,14.95,03/28/19 20:31,"865 Lakeview St, Los Angeles, CA 90001" +182162,20in Monitor,1,109.99,03/29/19 15:48,"307 Cedar St, San Francisco, CA 94016" +182163,Wired Headphones,1,11.99,03/27/19 16:18,"158 2nd St, New York City, NY 10001" +182164,AA Batteries (4-pack),1,3.84,03/01/19 09:30,"324 Park St, Boston, MA 02215" +182165,Lightning Charging Cable,1,14.95,03/27/19 17:05,"248 12th St, Seattle, WA 98101" +182166,AA Batteries (4-pack),2,3.84,03/02/19 14:12,"104 Ridge St, Seattle, WA 98101" +182167,27in FHD Monitor,1,149.99,03/29/19 07:29,"985 Walnut St, Portland, OR 97035" +182168,AAA Batteries (4-pack),1,2.99,03/15/19 19:13,"999 Church St, Los Angeles, CA 90001" +182169,Wired Headphones,1,11.99,03/22/19 15:23,"324 Chestnut St, San Francisco, CA 94016" +182170,Wired Headphones,1,11.99,03/16/19 22:13,"215 Hill St, Boston, MA 02215" +182171,Lightning Charging Cable,1,14.95,03/23/19 13:44,"234 12th St, Atlanta, GA 30301" +182172,Wired Headphones,1,11.99,03/08/19 12:24,"945 6th St, Los Angeles, CA 90001" +182173,AAA Batteries (4-pack),1,2.99,03/26/19 20:50,"689 Adams St, Los Angeles, CA 90001" +182174,Macbook Pro Laptop,1,1700,03/01/19 16:21,"479 Jackson St, New York City, NY 10001" +182175,Bose SoundSport Headphones,1,99.99,03/18/19 14:07,"250 Washington St, Dallas, TX 75001" +182176,Macbook Pro Laptop,1,1700,03/02/19 07:04,"781 Park St, Atlanta, GA 30301" +182177,Apple Airpods Headphones,1,150,03/05/19 10:20,"297 Jefferson St, Los Angeles, CA 90001" +182178,AA Batteries (4-pack),1,3.84,03/18/19 12:08,"194 North St, Los Angeles, CA 90001" +182179,Lightning Charging Cable,1,14.95,03/04/19 13:43,"175 Elm St, Atlanta, GA 30301" +182180,27in 4K Gaming Monitor,1,389.99,03/06/19 17:29,"108 Maple St, Boston, MA 02215" +182181,iPhone,1,700,03/24/19 14:36,"621 Ridge St, Los Angeles, CA 90001" +182181,Lightning Charging Cable,1,14.95,03/24/19 14:36,"621 Ridge St, Los Angeles, CA 90001" +182181,Wired Headphones,1,11.99,03/24/19 14:36,"621 Ridge St, Los Angeles, CA 90001" +182182,20in Monitor,1,109.99,03/15/19 02:04,"563 Jefferson St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +182183,AAA Batteries (4-pack),1,2.99,03/09/19 10:09,"93 Sunset St, Los Angeles, CA 90001" +182184,Wired Headphones,1,11.99,03/12/19 22:36,"345 Walnut St, Portland, OR 97035" +182185,AA Batteries (4-pack),1,3.84,03/17/19 18:09,"318 Church St, Los Angeles, CA 90001" +182185,Apple Airpods Headphones,1,150,03/17/19 18:09,"318 Church St, Los Angeles, CA 90001" +182186,AAA Batteries (4-pack),3,2.99,03/10/19 08:25,"585 13th St, San Francisco, CA 94016" +182186,27in 4K Gaming Monitor,1,389.99,03/10/19 08:25,"585 13th St, San Francisco, CA 94016" +182187,20in Monitor,1,109.99,03/12/19 12:20,"835 Dogwood St, Los Angeles, CA 90001" +182188,AA Batteries (4-pack),1,3.84,03/06/19 17:58,"356 Meadow St, Portland, OR 97035" +182189,LG Washing Machine,1,600.0,03/21/19 18:15,"107 Park St, Dallas, TX 75001" +182190,USB-C Charging Cable,1,11.95,03/24/19 05:14,"505 Dogwood St, New York City, NY 10001" +182191,Macbook Pro Laptop,1,1700,03/19/19 21:58,"745 9th St, Austin, TX 73301" +182192,Apple Airpods Headphones,1,150,03/03/19 00:43,"810 South St, Los Angeles, CA 90001" +182193,iPhone,1,700,03/31/19 11:04,"246 13th St, New York City, NY 10001" +182193,Lightning Charging Cable,1,14.95,03/31/19 11:04,"246 13th St, New York City, NY 10001" +182194,27in 4K Gaming Monitor,1,389.99,03/14/19 07:08,"810 2nd St, Los Angeles, CA 90001" +182195,20in Monitor,1,109.99,03/10/19 18:45,"464 Pine St, Los Angeles, CA 90001" +182196,Google Phone,1,600,03/16/19 09:18,"82 Jefferson St, New York City, NY 10001" +182196,AAA Batteries (4-pack),1,2.99,03/16/19 09:18,"82 Jefferson St, New York City, NY 10001" +182197,AAA Batteries (4-pack),1,2.99,03/29/19 18:48,"76 4th St, Portland, OR 97035" +182198,Google Phone,1,600,03/01/19 15:48,"200 Dogwood St, New York City, NY 10001" +182199,USB-C Charging Cable,1,11.95,03/22/19 19:12,"366 Chestnut St, Boston, MA 02215" +182200,AA Batteries (4-pack),1,3.84,03/01/19 07:35,"591 Jefferson St, New York City, NY 10001" +182201,27in 4K Gaming Monitor,1,389.99,03/02/19 22:21,"628 11th St, Los Angeles, CA 90001" +182202,34in Ultrawide Monitor,1,379.99,03/17/19 08:06,"891 Park St, Boston, MA 02215" +182203,Apple Airpods Headphones,1,150,03/22/19 12:01,"714 Johnson St, Austin, TX 73301" +182204,Bose SoundSport Headphones,1,99.99,03/03/19 12:33,"211 Wilson St, Dallas, TX 75001" +182205,Google Phone,1,600,03/18/19 22:01,"485 Highland St, Atlanta, GA 30301" +182206,Wired Headphones,2,11.99,03/17/19 11:05,"664 Jackson St, Atlanta, GA 30301" +182207,Macbook Pro Laptop,1,1700,03/14/19 10:41,"192 Madison St, New York City, NY 10001" +182208,20in Monitor,1,109.99,03/29/19 10:12,"463 Cedar St, Dallas, TX 75001" +182209,LG Washing Machine,1,600.0,03/08/19 16:44,"611 4th St, Atlanta, GA 30301" +182210,AA Batteries (4-pack),1,3.84,03/25/19 19:23,"776 Hill St, San Francisco, CA 94016" +182211,Flatscreen TV,1,300,03/02/19 12:54,"442 Dogwood St, Boston, MA 02215" +182212,Wired Headphones,2,11.99,03/05/19 11:32,"844 Spruce St, New York City, NY 10001" +182213,AAA Batteries (4-pack),4,2.99,03/25/19 23:34,"806 10th St, New York City, NY 10001" +182214,USB-C Charging Cable,1,11.95,03/04/19 13:47,"126 Sunset St, San Francisco, CA 94016" +182215,iPhone,1,700,03/11/19 10:59,"956 Johnson St, Seattle, WA 98101" +182216,AAA Batteries (4-pack),1,2.99,03/18/19 19:15,"511 10th St, Dallas, TX 75001" +182217,USB-C Charging Cable,1,11.95,03/11/19 11:51,"471 River St, San Francisco, CA 94016" +182218,27in 4K Gaming Monitor,1,389.99,03/31/19 11:37,"310 Dogwood St, Boston, MA 02215" +182219,USB-C Charging Cable,1,11.95,03/04/19 21:18,"102 8th St, Boston, MA 02215" +182220,AAA Batteries (4-pack),2,2.99,03/22/19 09:27,"826 Jefferson St, San Francisco, CA 94016" +182221,AAA Batteries (4-pack),1,2.99,03/31/19 22:35,"972 Elm St, Los Angeles, CA 90001" +182222,Bose SoundSport Headphones,1,99.99,03/08/19 13:44,"704 Dogwood St, San Francisco, CA 94016" +182223,iPhone,1,700,03/13/19 01:51,"341 Walnut St, San Francisco, CA 94016" +182224,AA Batteries (4-pack),1,3.84,03/31/19 18:05,"686 Jackson St, Dallas, TX 75001" +182225,AA Batteries (4-pack),2,3.84,03/17/19 16:58,"192 Meadow St, New York City, NY 10001" +182226,Apple Airpods Headphones,1,150,03/27/19 20:24,"23 11th St, San Francisco, CA 94016" +182227,Macbook Pro Laptop,1,1700,03/27/19 21:19,"88 14th St, New York City, NY 10001" +182228,27in 4K Gaming Monitor,1,389.99,03/27/19 16:09,"241 River St, Atlanta, GA 30301" +182229,Bose SoundSport Headphones,1,99.99,03/18/19 11:24,"609 Lincoln St, Seattle, WA 98101" +182230,iPhone,1,700,03/10/19 18:45,"410 4th St, San Francisco, CA 94016" +182230,Lightning Charging Cable,1,14.95,03/10/19 18:45,"410 4th St, San Francisco, CA 94016" +182231,Flatscreen TV,1,300,03/19/19 13:59,"773 Spruce St, Dallas, TX 75001" +182232,AAA Batteries (4-pack),1,2.99,03/05/19 19:53,"284 Maple St, San Francisco, CA 94016" +182233,Apple Airpods Headphones,1,150,03/03/19 09:49,"467 Jackson St, Los Angeles, CA 90001" +182234,Lightning Charging Cable,1,14.95,03/02/19 12:40,"731 Walnut St, Atlanta, GA 30301" +182235,AA Batteries (4-pack),2,3.84,03/12/19 16:27,"158 Johnson St, Seattle, WA 98101" +182236,Google Phone,1,600,03/05/19 11:26,"696 1st St, Boston, MA 02215" +182237,USB-C Charging Cable,1,11.95,03/14/19 10:19,"630 Jackson St, Dallas, TX 75001" +182238,20in Monitor,1,109.99,03/01/19 16:32,"422 Washington St, Dallas, TX 75001" +,,,,, +182239,AAA Batteries (4-pack),2,2.99,03/21/19 11:07,"518 Dogwood St, New York City, NY 10001" +182240,iPhone,1,700,03/15/19 09:31,"859 2nd St, San Francisco, CA 94016" +182240,Apple Airpods Headphones,1,150,03/15/19 09:31,"859 2nd St, San Francisco, CA 94016" +182241,34in Ultrawide Monitor,1,379.99,03/29/19 13:59,"217 Lincoln St, Los Angeles, CA 90001" +182242,AAA Batteries (4-pack),1,2.99,03/29/19 09:47,"947 Spruce St, Los Angeles, CA 90001" +182243,AA Batteries (4-pack),1,3.84,03/30/19 09:06,"886 River St, San Francisco, CA 94016" +182244,AAA Batteries (4-pack),1,2.99,03/08/19 22:32,"318 Meadow St, Los Angeles, CA 90001" +182245,Wired Headphones,1,11.99,03/02/19 18:28,"115 Chestnut St, San Francisco, CA 94016" +182246,Apple Airpods Headphones,1,150,03/02/19 20:45,"302 Church St, Seattle, WA 98101" +182247,AAA Batteries (4-pack),1,2.99,03/18/19 00:07,"732 Elm St, New York City, NY 10001" +182248,iPhone,1,700,03/06/19 22:54,"356 13th St, Seattle, WA 98101" +182249,Wired Headphones,1,11.99,03/24/19 20:50,"256 Jackson St, San Francisco, CA 94016" +182250,Macbook Pro Laptop,1,1700,03/09/19 14:53,"929 Elm St, Dallas, TX 75001" +182251,Flatscreen TV,1,300,03/01/19 06:11,"220 Cherry St, Los Angeles, CA 90001" +182252,Lightning Charging Cable,1,14.95,03/07/19 08:54,"554 Cherry St, San Francisco, CA 94016" +182253,27in FHD Monitor,1,149.99,03/22/19 23:53,"843 Dogwood St, San Francisco, CA 94016" +182254,AA Batteries (4-pack),1,3.84,03/07/19 19:42,"776 Main St, San Francisco, CA 94016" +182255,AAA Batteries (4-pack),1,2.99,03/04/19 10:43,"786 Madison St, New York City, NY 10001" +182256,AA Batteries (4-pack),1,3.84,03/26/19 16:55,"365 Spruce St, Boston, MA 02215" +182257,AA Batteries (4-pack),1,3.84,03/14/19 15:09,"644 4th St, Atlanta, GA 30301" +182258,34in Ultrawide Monitor,1,379.99,03/27/19 18:08,"350 11th St, Seattle, WA 98101" +182259,AAA Batteries (4-pack),1,2.99,03/12/19 19:16,"608 12th St, San Francisco, CA 94016" +182260,AA Batteries (4-pack),1,3.84,03/26/19 13:05,"892 North St, Austin, TX 73301" +182261,AA Batteries (4-pack),1,3.84,03/07/19 17:12,"757 Church St, Boston, MA 02215" +182262,AA Batteries (4-pack),1,3.84,03/27/19 00:03,"78 Highland St, Los Angeles, CA 90001" +182263,Lightning Charging Cable,1,14.95,03/10/19 14:35,"289 Jackson St, Dallas, TX 75001" +182264,34in Ultrawide Monitor,1,379.99,03/29/19 21:27,"578 Madison St, New York City, NY 10001" +182265,AA Batteries (4-pack),4,3.84,03/07/19 11:37,"666 4th St, Portland, ME 04101" +182266,AAA Batteries (4-pack),1,2.99,03/21/19 16:09,"42 Spruce St, Los Angeles, CA 90001" +182267,Bose SoundSport Headphones,1,99.99,03/10/19 14:25,"307 6th St, San Francisco, CA 94016" +182268,iPhone,1,700,03/05/19 21:33,"977 12th St, San Francisco, CA 94016" +182268,Wired Headphones,1,11.99,03/05/19 21:33,"977 12th St, San Francisco, CA 94016" +182269,AA Batteries (4-pack),1,3.84,03/01/19 21:08,"728 Chestnut St, Los Angeles, CA 90001" +182270,AAA Batteries (4-pack),1,2.99,03/14/19 18:58,"235 Madison St, Los Angeles, CA 90001" +182271,Vareebadd Phone,1,400,03/05/19 17:38,"531 Lakeview St, San Francisco, CA 94016" +182272,AAA Batteries (4-pack),1,2.99,03/13/19 16:23,"418 Chestnut St, Seattle, WA 98101" +182273,Wired Headphones,2,11.99,03/03/19 17:29,"273 Hill St, New York City, NY 10001" +182274,ThinkPad Laptop,1,999.99,03/24/19 00:22,"579 Lakeview St, Austin, TX 73301" +182275,Flatscreen TV,1,300,03/21/19 10:57,"98 11th St, Boston, MA 02215" +182276,27in FHD Monitor,1,149.99,03/03/19 08:59,"773 Madison St, San Francisco, CA 94016" +182277,Bose SoundSport Headphones,1,99.99,03/05/19 21:17,"911 West St, Atlanta, GA 30301" +182278,ThinkPad Laptop,1,999.99,03/07/19 11:48,"611 Center St, Los Angeles, CA 90001" +182279,AAA Batteries (4-pack),1,2.99,03/17/19 17:03,"654 River St, San Francisco, CA 94016" +182280,AAA Batteries (4-pack),1,2.99,03/30/19 23:36,"381 6th St, Seattle, WA 98101" +182281,AAA Batteries (4-pack),1,2.99,03/06/19 22:21,"515 10th St, Portland, OR 97035" +182282,USB-C Charging Cable,2,11.95,03/29/19 23:47,"943 River St, New York City, NY 10001" +182283,AA Batteries (4-pack),1,3.84,03/23/19 16:40,"215 Lakeview St, San Francisco, CA 94016" +182284,Apple Airpods Headphones,1,150,03/06/19 12:51,"869 Hill St, New York City, NY 10001" +182284,Flatscreen TV,1,300,03/06/19 12:51,"869 Hill St, New York City, NY 10001" +182285,AAA Batteries (4-pack),3,2.99,03/01/19 22:16,"795 14th St, Boston, MA 02215" +182286,Lightning Charging Cable,1,14.95,03/29/19 23:13,"270 Jackson St, Dallas, TX 75001" +182287,iPhone,1,700,03/20/19 13:40,"854 Jackson St, New York City, NY 10001" +182288,Apple Airpods Headphones,1,150,03/04/19 18:49,"479 Church St, San Francisco, CA 94016" +182289,Lightning Charging Cable,1,14.95,03/10/19 18:41,"801 Elm St, Dallas, TX 75001" +182290,Lightning Charging Cable,1,14.95,03/24/19 10:15,"288 Adams St, Dallas, TX 75001" +182291,Bose SoundSport Headphones,1,99.99,03/18/19 16:29,"104 Jackson St, Seattle, WA 98101" +182292,Lightning Charging Cable,1,14.95,03/08/19 13:30,"38 7th St, New York City, NY 10001" +182293,USB-C Charging Cable,1,11.95,03/13/19 07:34,"237 2nd St, San Francisco, CA 94016" +182294,Apple Airpods Headphones,1,150,03/15/19 01:28,"281 Wilson St, San Francisco, CA 94016" +182295,27in FHD Monitor,1,149.99,03/06/19 11:41,"803 Sunset St, Seattle, WA 98101" +182296,USB-C Charging Cable,1,11.95,03/31/19 11:12,"156 Church St, Dallas, TX 75001" +182297,Flatscreen TV,1,300,03/01/19 13:00,"502 14th St, Los Angeles, CA 90001" +182298,Apple Airpods Headphones,1,150,03/07/19 10:05,"751 Forest St, Los Angeles, CA 90001" +182299,AA Batteries (4-pack),1,3.84,03/25/19 16:05,"914 Highland St, Austin, TX 73301" +182300,27in FHD Monitor,1,149.99,03/21/19 21:17,"682 5th St, Boston, MA 02215" +182300,Lightning Charging Cable,1,14.95,03/21/19 21:17,"682 5th St, Boston, MA 02215" +182301,ThinkPad Laptop,1,999.99,03/18/19 23:33,"161 7th St, Atlanta, GA 30301" +182302,Wired Headphones,1,11.99,03/10/19 15:01,"356 Center St, Boston, MA 02215" +182303,AA Batteries (4-pack),1,3.84,03/11/19 20:13,"949 Center St, Los Angeles, CA 90001" +182304,USB-C Charging Cable,1,11.95,03/23/19 18:12,"459 Center St, New York City, NY 10001" +182305,AA Batteries (4-pack),1,3.84,03/29/19 23:57,"344 Washington St, Los Angeles, CA 90001" +182306,20in Monitor,1,109.99,03/02/19 18:55,"996 Elm St, Boston, MA 02215" +182307,Macbook Pro Laptop,1,1700,03/26/19 13:33,"544 8th St, San Francisco, CA 94016" +182308,AA Batteries (4-pack),1,3.84,03/16/19 21:25,"193 Park St, Seattle, WA 98101" +182309,27in FHD Monitor,1,149.99,03/08/19 23:45,"912 River St, San Francisco, CA 94016" +182310,Wired Headphones,1,11.99,03/12/19 22:00,"684 Main St, Portland, OR 97035" +182311,20in Monitor,1,109.99,03/14/19 21:40,"493 Dogwood St, Los Angeles, CA 90001" +182312,Wired Headphones,1,11.99,03/31/19 03:43,"869 Park St, New York City, NY 10001" +182313,USB-C Charging Cable,1,11.95,03/18/19 15:15,"257 Cedar St, New York City, NY 10001" +182314,34in Ultrawide Monitor,1,379.99,03/06/19 17:18,"919 Pine St, San Francisco, CA 94016" +182315,AAA Batteries (4-pack),2,2.99,03/09/19 19:56,"543 Highland St, New York City, NY 10001" +182316,Wired Headphones,1,11.99,03/16/19 19:33,"641 Willow St, Portland, OR 97035" +182317,Wired Headphones,1,11.99,03/19/19 22:43,"753 Lake St, San Francisco, CA 94016" +182317,Google Phone,1,600,03/19/19 22:43,"753 Lake St, San Francisco, CA 94016" +182318,Macbook Pro Laptop,1,1700,03/11/19 14:13,"966 11th St, San Francisco, CA 94016" +182319,20in Monitor,1,109.99,03/08/19 13:54,"475 Wilson St, Austin, TX 73301" +182320,ThinkPad Laptop,1,999.99,03/05/19 09:29,"348 6th St, New York City, NY 10001" +182321,Macbook Pro Laptop,1,1700,03/09/19 11:06,"104 Spruce St, Portland, OR 97035" +182322,AA Batteries (4-pack),1,3.84,03/27/19 22:50,"907 Cedar St, San Francisco, CA 94016" +182323,Bose SoundSport Headphones,1,99.99,03/14/19 09:16,"990 Cherry St, Atlanta, GA 30301" +182324,AAA Batteries (4-pack),2,2.99,03/03/19 04:39,"48 5th St, New York City, NY 10001" +182325,20in Monitor,1,109.99,03/31/19 08:11,"570 Main St, San Francisco, CA 94016" +182326,AAA Batteries (4-pack),2,2.99,03/17/19 20:01,"923 Meadow St, Los Angeles, CA 90001" +182327,USB-C Charging Cable,1,11.95,03/10/19 11:30,"92 9th St, San Francisco, CA 94016" +182328,AAA Batteries (4-pack),2,2.99,03/24/19 16:43,"783 Center St, Los Angeles, CA 90001" +182329,USB-C Charging Cable,1,11.95,03/26/19 09:14,"890 West St, Los Angeles, CA 90001" +182330,Google Phone,1,600,03/11/19 11:17,"261 Hickory St, Portland, OR 97035" +182330,USB-C Charging Cable,1,11.95,03/11/19 11:17,"261 Hickory St, Portland, OR 97035" +182331,Lightning Charging Cable,1,14.95,03/15/19 21:27,"836 12th St, Boston, MA 02215" +182332,Lightning Charging Cable,1,14.95,03/26/19 10:28,"566 8th St, San Francisco, CA 94016" +182333,Google Phone,1,600,03/16/19 09:55,"189 South St, New York City, NY 10001" +182334,USB-C Charging Cable,1,11.95,03/27/19 19:06,"646 Forest St, San Francisco, CA 94016" +182335,Wired Headphones,1,11.99,03/28/19 11:42,"530 Sunset St, Austin, TX 73301" +182336,AA Batteries (4-pack),1,3.84,03/04/19 14:14,"647 Madison St, New York City, NY 10001" +182337,Lightning Charging Cable,1,14.95,03/02/19 09:04,"749 Highland St, Los Angeles, CA 90001" +182338,USB-C Charging Cable,1,11.95,03/26/19 07:39,"17 14th St, San Francisco, CA 94016" +182339,27in FHD Monitor,1,149.99,03/20/19 18:07,"402 13th St, San Francisco, CA 94016" +182340,AA Batteries (4-pack),1,3.84,03/19/19 21:03,"418 Cedar St, Boston, MA 02215" +182341,AA Batteries (4-pack),1,3.84,03/18/19 10:48,"983 4th St, Austin, TX 73301" +182342,Bose SoundSport Headphones,1,99.99,03/01/19 11:47,"849 Dogwood St, Seattle, WA 98101" +182343,AAA Batteries (4-pack),1,2.99,03/28/19 12:26,"347 Cherry St, Boston, MA 02215" +182344,AAA Batteries (4-pack),2,2.99,03/31/19 16:52,"810 Willow St, San Francisco, CA 94016" +182345,AAA Batteries (4-pack),3,2.99,03/05/19 08:37,"211 South St, Los Angeles, CA 90001" +182346,Lightning Charging Cable,1,14.95,03/07/19 21:15,"339 2nd St, Los Angeles, CA 90001" +182347,AA Batteries (4-pack),1,3.84,03/21/19 12:44,"101 2nd St, Portland, OR 97035" +182348,Flatscreen TV,1,300,03/24/19 18:55,"835 Wilson St, New York City, NY 10001" +182349,27in FHD Monitor,1,149.99,03/13/19 20:01,"844 11th St, Portland, OR 97035" +182350,AA Batteries (4-pack),1,3.84,03/05/19 08:48,"929 Meadow St, Portland, OR 97035" +182351,AAA Batteries (4-pack),1,2.99,03/11/19 12:06,"636 13th St, Boston, MA 02215" +182351,USB-C Charging Cable,1,11.95,03/11/19 12:06,"636 13th St, Boston, MA 02215" +182352,20in Monitor,1,109.99,03/05/19 12:50,"330 Pine St, Portland, OR 97035" +182353,Macbook Pro Laptop,1,1700,03/30/19 23:01,"289 South St, Atlanta, GA 30301" +182354,Bose SoundSport Headphones,1,99.99,03/16/19 19:17,"235 Center St, Boston, MA 02215" +182355,USB-C Charging Cable,1,11.95,03/20/19 01:07,"905 Jefferson St, Boston, MA 02215" +182356,AAA Batteries (4-pack),1,2.99,03/26/19 12:05,"23 Maple St, New York City, NY 10001" +182357,34in Ultrawide Monitor,1,379.99,03/08/19 22:08,"991 Spruce St, New York City, NY 10001" +182358,Macbook Pro Laptop,1,1700,03/05/19 12:04,"724 10th St, Los Angeles, CA 90001" +182359,Bose SoundSport Headphones,1,99.99,03/05/19 10:17,"281 5th St, New York City, NY 10001" +182360,USB-C Charging Cable,1,11.95,03/22/19 10:46,"913 Maple St, San Francisco, CA 94016" +182361,AAA Batteries (4-pack),1,2.99,03/12/19 10:30,"253 Cherry St, Dallas, TX 75001" +182362,Lightning Charging Cable,1,14.95,03/15/19 10:06,"51 5th St, Boston, MA 02215" +182363,Wired Headphones,1,11.99,03/20/19 23:25,"888 Washington St, Los Angeles, CA 90001" +182364,Lightning Charging Cable,1,14.95,03/19/19 18:29,"369 Hickory St, Dallas, TX 75001" +182365,AAA Batteries (4-pack),2,2.99,03/13/19 19:52,"394 Chestnut St, Seattle, WA 98101" +182366,27in FHD Monitor,1,149.99,03/14/19 20:39,"129 4th St, San Francisco, CA 94016" +182367,AAA Batteries (4-pack),2,2.99,03/03/19 18:09,"419 Madison St, Dallas, TX 75001" +182368,Apple Airpods Headphones,1,150,03/18/19 22:46,"983 14th St, Boston, MA 02215" +182369,iPhone,1,700,03/20/19 12:20,"367 Johnson St, Portland, ME 04101" +182370,AA Batteries (4-pack),1,3.84,03/06/19 09:39,"830 Highland St, Atlanta, GA 30301" +182371,27in FHD Monitor,1,149.99,03/04/19 07:14,"419 Jefferson St, Los Angeles, CA 90001" +182372,Wired Headphones,1,11.99,03/15/19 19:09,"461 Walnut St, San Francisco, CA 94016" +182373,Bose SoundSport Headphones,1,99.99,03/01/19 22:29,"578 14th St, Austin, TX 73301" +182374,Vareebadd Phone,1,400,03/02/19 21:13,"276 Forest St, San Francisco, CA 94016" +182375,AAA Batteries (4-pack),1,2.99,03/17/19 19:05,"296 8th St, New York City, NY 10001" +182376,AA Batteries (4-pack),4,3.84,03/19/19 19:25,"38 14th St, Los Angeles, CA 90001" +182377,USB-C Charging Cable,1,11.95,03/23/19 11:12,"330 Sunset St, San Francisco, CA 94016" +182378,20in Monitor,1,109.99,03/27/19 18:59,"436 Church St, New York City, NY 10001" +182379,Lightning Charging Cable,1,14.95,03/09/19 17:37,"629 Ridge St, Los Angeles, CA 90001" +182380,Lightning Charging Cable,1,14.95,03/21/19 20:01,"732 12th St, Dallas, TX 75001" +182381,Google Phone,1,600,03/23/19 09:07,"497 Adams St, Portland, ME 04101" +182382,USB-C Charging Cable,1,11.95,03/26/19 19:27,"48 Forest St, Boston, MA 02215" +182383,USB-C Charging Cable,3,11.95,03/07/19 21:53,"929 Wilson St, Los Angeles, CA 90001" +182384,Wired Headphones,1,11.99,03/04/19 08:57,"168 Jackson St, Seattle, WA 98101" +182385,ThinkPad Laptop,1,999.99,03/10/19 19:43,"928 Willow St, San Francisco, CA 94016" +182386,27in 4K Gaming Monitor,1,389.99,03/20/19 16:20,"499 Lake St, Dallas, TX 75001" +182387,AA Batteries (4-pack),1,3.84,03/02/19 14:56,"587 13th St, Los Angeles, CA 90001" +182388,USB-C Charging Cable,1,11.95,03/11/19 10:36,"818 Willow St, Portland, OR 97035" +182389,Lightning Charging Cable,1,14.95,03/09/19 15:23,"689 Ridge St, Los Angeles, CA 90001" +182390,Wired Headphones,1,11.99,03/10/19 21:06,"279 Ridge St, Boston, MA 02215" +182391,Flatscreen TV,1,300,03/01/19 20:55,"93 Meadow St, Seattle, WA 98101" +182392,AA Batteries (4-pack),1,3.84,03/06/19 21:46,"325 Hill St, Portland, OR 97035" +182393,AA Batteries (4-pack),2,3.84,03/09/19 10:46,"744 North St, Los Angeles, CA 90001" +182394,USB-C Charging Cable,1,11.95,03/11/19 15:30,"590 Forest St, Austin, TX 73301" +182395,AAA Batteries (4-pack),1,2.99,03/15/19 12:49,"336 9th St, New York City, NY 10001" +182396,USB-C Charging Cable,1,11.95,03/06/19 07:58,"372 14th St, Atlanta, GA 30301" +182397,Wired Headphones,1,11.99,03/09/19 21:49,"890 Center St, Portland, OR 97035" +182398,Apple Airpods Headphones,1,150,03/10/19 06:42,"408 Washington St, Los Angeles, CA 90001" +182399,Wired Headphones,1,11.99,03/08/19 09:51,"766 Lake St, Los Angeles, CA 90001" +182400,AAA Batteries (4-pack),1,2.99,03/11/19 12:17,"391 South St, San Francisco, CA 94016" +182400,AAA Batteries (4-pack),1,2.99,03/11/19 12:17,"391 South St, San Francisco, CA 94016" +182401,Google Phone,1,600,03/25/19 18:25,"909 Ridge St, Los Angeles, CA 90001" +182401,USB-C Charging Cable,2,11.95,03/25/19 18:25,"909 Ridge St, Los Angeles, CA 90001" +182401,Wired Headphones,2,11.99,03/25/19 18:25,"909 Ridge St, Los Angeles, CA 90001" +182402,USB-C Charging Cable,1,11.95,03/27/19 14:51,"638 Ridge St, Los Angeles, CA 90001" +182403,USB-C Charging Cable,1,11.95,03/12/19 14:42,"771 Lake St, Portland, OR 97035" +182404,Google Phone,1,600,03/24/19 10:36,"211 1st St, San Francisco, CA 94016" +182404,USB-C Charging Cable,1,11.95,03/24/19 10:36,"211 1st St, San Francisco, CA 94016" +182405,AAA Batteries (4-pack),1,2.99,03/06/19 16:24,"271 Church St, Boston, MA 02215" +182406,20in Monitor,1,109.99,03/13/19 10:53,"946 Dogwood St, Los Angeles, CA 90001" +182407,Lightning Charging Cable,1,14.95,03/11/19 01:37,"331 Willow St, Dallas, TX 75001" +182408,AA Batteries (4-pack),1,3.84,03/10/19 19:55,"94 6th St, Los Angeles, CA 90001" +182409,USB-C Charging Cable,2,11.95,03/05/19 21:39,"560 2nd St, New York City, NY 10001" +182410,iPhone,1,700,03/18/19 20:53,"286 Meadow St, San Francisco, CA 94016" +182410,Lightning Charging Cable,1,14.95,03/18/19 20:53,"286 Meadow St, San Francisco, CA 94016" +182411,Macbook Pro Laptop,1,1700,03/18/19 12:57,"237 Madison St, San Francisco, CA 94016" +182412,AAA Batteries (4-pack),1,2.99,03/21/19 21:10,"152 11th St, Dallas, TX 75001" +182413,20in Monitor,1,109.99,03/12/19 21:26,"990 Highland St, Boston, MA 02215" +182414,Wired Headphones,1,11.99,03/12/19 07:41,"841 Main St, Seattle, WA 98101" +182415,ThinkPad Laptop,1,999.99,03/27/19 15:46,"333 Forest St, Atlanta, GA 30301" +182416,Lightning Charging Cable,1,14.95,03/02/19 15:52,"417 2nd St, Los Angeles, CA 90001" +182417,Apple Airpods Headphones,1,150,03/08/19 08:57,"56 6th St, San Francisco, CA 94016" +182418,AA Batteries (4-pack),2,3.84,03/13/19 22:14,"46 6th St, San Francisco, CA 94016" +182419,Macbook Pro Laptop,1,1700,03/07/19 09:27,"829 Main St, Seattle, WA 98101" +182420,Flatscreen TV,1,300,03/09/19 10:27,"222 River St, Portland, OR 97035" +182421,Apple Airpods Headphones,1,150,03/29/19 14:07,"221 Lakeview St, Dallas, TX 75001" +182422,Bose SoundSport Headphones,1,99.99,03/02/19 12:28,"183 9th St, New York City, NY 10001" +182423,AA Batteries (4-pack),3,3.84,03/05/19 14:06,"610 Willow St, Atlanta, GA 30301" +182424,Google Phone,1,600,03/29/19 10:22,"82 Johnson St, Seattle, WA 98101" +182425,iPhone,1,700,03/16/19 22:18,"333 Lincoln St, Boston, MA 02215" +182425,Lightning Charging Cable,1,14.95,03/16/19 22:18,"333 Lincoln St, Boston, MA 02215" +182426,Google Phone,1,600,03/14/19 09:47,"63 Park St, Dallas, TX 75001" +182427,Macbook Pro Laptop,1,1700,03/04/19 11:34,"931 Adams St, Los Angeles, CA 90001" +182428,Wired Headphones,1,11.99,04/01/19 00:11,"350 Pine St, New York City, NY 10001" +182429,Apple Airpods Headphones,1,150,03/22/19 22:38,"768 Center St, San Francisco, CA 94016" +182430,Apple Airpods Headphones,1,150,03/23/19 16:55,"894 Jackson St, Boston, MA 02215" +182431,AA Batteries (4-pack),1,3.84,03/31/19 20:27,"429 Highland St, Boston, MA 02215" +182432,Bose SoundSport Headphones,1,99.99,03/23/19 08:48,"677 Sunset St, New York City, NY 10001" +182433,Flatscreen TV,1,300,03/08/19 09:38,"355 Spruce St, New York City, NY 10001" +182434,27in FHD Monitor,1,149.99,03/22/19 09:15,"20 Forest St, Boston, MA 02215" +182435,Bose SoundSport Headphones,1,99.99,03/20/19 12:22,"304 Wilson St, Portland, OR 97035" +182436,Wired Headphones,1,11.99,03/05/19 21:52,"54 1st St, Los Angeles, CA 90001" +182437,AAA Batteries (4-pack),2,2.99,03/02/19 19:12,"752 Johnson St, San Francisco, CA 94016" +182438,Apple Airpods Headphones,1,150,03/23/19 22:46,"553 Walnut St, Dallas, TX 75001" +182439,AAA Batteries (4-pack),1,2.99,03/29/19 09:18,"688 5th St, San Francisco, CA 94016" +182440,USB-C Charging Cable,1,11.95,03/12/19 13:22,"216 Forest St, San Francisco, CA 94016" +182441,Apple Airpods Headphones,1,150,03/12/19 21:13,"256 Elm St, San Francisco, CA 94016" +182442,AAA Batteries (4-pack),1,2.99,03/26/19 19:44,"919 13th St, San Francisco, CA 94016" +182443,AA Batteries (4-pack),1,3.84,03/13/19 11:42,"581 6th St, Seattle, WA 98101" +182444,AA Batteries (4-pack),2,3.84,03/17/19 20:23,"846 Meadow St, San Francisco, CA 94016" +182445,Wired Headphones,1,11.99,03/13/19 15:13,"607 Center St, Los Angeles, CA 90001" +182446,LG Washing Machine,1,600.0,03/27/19 00:59,"51 7th St, Portland, OR 97035" +182447,27in FHD Monitor,1,149.99,03/03/19 19:07,"760 Elm St, Boston, MA 02215" +182448,Macbook Pro Laptop,1,1700,03/02/19 11:35,"542 North St, Atlanta, GA 30301" +182449,iPhone,1,700,03/01/19 10:16,"316 Jefferson St, Los Angeles, CA 90001" +182450,AA Batteries (4-pack),2,3.84,03/17/19 17:49,"800 Wilson St, Dallas, TX 75001" +182451,Lightning Charging Cable,1,14.95,03/12/19 14:16,"207 4th St, Boston, MA 02215" +182452,Bose SoundSport Headphones,1,99.99,03/15/19 09:51,"772 11th St, Los Angeles, CA 90001" +182453,Vareebadd Phone,1,400,03/30/19 21:37,"518 Cedar St, Seattle, WA 98101" +182454,AA Batteries (4-pack),1,3.84,03/07/19 21:42,"569 5th St, Los Angeles, CA 90001" +182455,20in Monitor,1,109.99,03/24/19 02:45,"493 13th St, New York City, NY 10001" +,,,,, +182456,27in FHD Monitor,1,149.99,03/11/19 23:52,"335 Cherry St, San Francisco, CA 94016" +182457,Lightning Charging Cable,1,14.95,03/27/19 19:00,"325 Elm St, New York City, NY 10001" +182458,AAA Batteries (4-pack),2,2.99,03/30/19 19:50,"673 Spruce St, Los Angeles, CA 90001" +182459,Apple Airpods Headphones,1,150,03/22/19 10:51,"51 Ridge St, New York City, NY 10001" +182460,27in 4K Gaming Monitor,1,389.99,03/01/19 13:38,"870 Sunset St, Los Angeles, CA 90001" +182461,Apple Airpods Headphones,1,150,03/23/19 17:57,"329 Center St, New York City, NY 10001" +182461,Lightning Charging Cable,1,14.95,03/23/19 17:57,"329 Center St, New York City, NY 10001" +182462,AA Batteries (4-pack),1,3.84,03/06/19 10:30,"982 Main St, Seattle, WA 98101" +182463,Apple Airpods Headphones,1,150,03/26/19 02:06,"341 Meadow St, Seattle, WA 98101" +182464,27in 4K Gaming Monitor,1,389.99,03/23/19 15:57,"816 Spruce St, Seattle, WA 98101" +182465,AA Batteries (4-pack),1,3.84,03/11/19 15:23,"870 Cedar St, Austin, TX 73301" +182466,USB-C Charging Cable,2,11.95,03/05/19 15:24,"193 North St, Boston, MA 02215" +182467,USB-C Charging Cable,1,11.95,03/31/19 17:14,"511 Madison St, San Francisco, CA 94016" +182468,AAA Batteries (4-pack),1,2.99,03/25/19 13:32,"373 Lake St, San Francisco, CA 94016" +182469,USB-C Charging Cable,1,11.95,03/06/19 08:35,"95 Washington St, San Francisco, CA 94016" +182470,27in FHD Monitor,1,149.99,03/15/19 05:18,"213 Maple St, Portland, OR 97035" +182471,AAA Batteries (4-pack),3,2.99,03/09/19 23:20,"713 West St, New York City, NY 10001" +182472,Wired Headphones,1,11.99,03/11/19 00:07,"900 Highland St, San Francisco, CA 94016" +182473,ThinkPad Laptop,1,999.99,03/07/19 19:08,"418 Chestnut St, Seattle, WA 98101" +182474,AAA Batteries (4-pack),2,2.99,03/13/19 11:00,"372 North St, Boston, MA 02215" +182475,Wired Headphones,1,11.99,03/03/19 18:23,"591 4th St, Boston, MA 02215" +182476,iPhone,1,700,03/24/19 17:30,"803 12th St, New York City, NY 10001" +182476,Apple Airpods Headphones,1,150,03/24/19 17:30,"803 12th St, New York City, NY 10001" +182477,27in 4K Gaming Monitor,1,389.99,03/14/19 09:51,"947 Wilson St, Los Angeles, CA 90001" +182478,AA Batteries (4-pack),1,3.84,03/23/19 11:13,"105 Washington St, Los Angeles, CA 90001" +182479,Wired Headphones,1,11.99,03/27/19 17:17,"655 Jackson St, San Francisco, CA 94016" +182479,Wired Headphones,2,11.99,03/27/19 17:17,"655 Jackson St, San Francisco, CA 94016" +182480,Bose SoundSport Headphones,1,99.99,03/12/19 22:39,"205 Jefferson St, Los Angeles, CA 90001" +182481,Apple Airpods Headphones,1,150,03/18/19 11:02,"360 Meadow St, San Francisco, CA 94016" +182482,iPhone,1,700,03/31/19 22:38,"100 11th St, San Francisco, CA 94016" +182483,AA Batteries (4-pack),4,3.84,03/18/19 17:45,"389 5th St, Atlanta, GA 30301" +182484,AA Batteries (4-pack),1,3.84,03/15/19 08:06,"780 Park St, Los Angeles, CA 90001" +182485,27in FHD Monitor,1,149.99,03/05/19 13:27,"820 Jefferson St, Dallas, TX 75001" +182486,Flatscreen TV,1,300,03/02/19 12:19,"121 Jackson St, Dallas, TX 75001" +182487,Wired Headphones,2,11.99,03/26/19 17:07,"224 Pine St, Boston, MA 02215" +182488,Apple Airpods Headphones,1,150,03/19/19 22:03,"203 12th St, San Francisco, CA 94016" +182489,Macbook Pro Laptop,1,1700,03/01/19 19:40,"413 Center St, Seattle, WA 98101" +182490,AAA Batteries (4-pack),2,2.99,03/19/19 10:03,"577 Center St, Dallas, TX 75001" +182491,ThinkPad Laptop,1,999.99,03/11/19 22:13,"198 2nd St, Portland, OR 97035" +182492,USB-C Charging Cable,1,11.95,03/10/19 20:11,"682 14th St, San Francisco, CA 94016" +182493,27in 4K Gaming Monitor,1,389.99,03/03/19 16:29,"585 South St, Los Angeles, CA 90001" +182494,USB-C Charging Cable,1,11.95,03/13/19 21:00,"875 Willow St, San Francisco, CA 94016" +182495,AAA Batteries (4-pack),3,2.99,03/19/19 08:51,"807 8th St, Boston, MA 02215" +182496,ThinkPad Laptop,1,999.99,03/22/19 22:02,"788 2nd St, Los Angeles, CA 90001" +182497,USB-C Charging Cable,1,11.95,03/28/19 18:52,"20 Park St, Atlanta, GA 30301" +182498,34in Ultrawide Monitor,1,379.99,03/13/19 17:37,"359 Washington St, Dallas, TX 75001" +182499,USB-C Charging Cable,1,11.95,03/02/19 09:53,"596 1st St, San Francisco, CA 94016" +182500,AAA Batteries (4-pack),1,2.99,03/19/19 08:01,"493 Spruce St, Boston, MA 02215" +182501,AA Batteries (4-pack),1,3.84,03/24/19 09:14,"623 Adams St, Boston, MA 02215" +182502,USB-C Charging Cable,1,11.95,03/19/19 13:30,"138 Sunset St, Boston, MA 02215" +182503,Apple Airpods Headphones,1,150,03/17/19 07:52,"63 14th St, San Francisco, CA 94016" +182504,Flatscreen TV,1,300,03/14/19 14:04,"909 Washington St, Atlanta, GA 30301" +182505,AA Batteries (4-pack),1,3.84,03/13/19 20:15,"247 Elm St, Los Angeles, CA 90001" +182506,AA Batteries (4-pack),1,3.84,03/30/19 12:47,"817 Lake St, Los Angeles, CA 90001" +182507,USB-C Charging Cable,1,11.95,03/16/19 21:53,"373 Willow St, Dallas, TX 75001" +182508,USB-C Charging Cable,1,11.95,03/18/19 10:11,"242 Cedar St, San Francisco, CA 94016" +182509,Bose SoundSport Headphones,1,99.99,03/22/19 14:18,"555 Main St, San Francisco, CA 94016" +182510,Apple Airpods Headphones,1,150,03/03/19 08:36,"584 Spruce St, Los Angeles, CA 90001" +182511,USB-C Charging Cable,1,11.95,03/21/19 18:38,"105 Madison St, Seattle, WA 98101" +182512,Wired Headphones,1,11.99,03/22/19 15:23,"857 Dogwood St, Dallas, TX 75001" +182513,AAA Batteries (4-pack),1,2.99,03/25/19 20:28,"205 River St, Portland, OR 97035" +182514,AA Batteries (4-pack),1,3.84,03/09/19 10:31,"182 Hickory St, Atlanta, GA 30301" +182515,Lightning Charging Cable,1,14.95,03/21/19 10:42,"299 7th St, Los Angeles, CA 90001" +182516,AA Batteries (4-pack),3,3.84,03/28/19 21:11,"274 Walnut St, Los Angeles, CA 90001" +182517,AAA Batteries (4-pack),3,2.99,03/06/19 21:07,"379 Cedar St, Los Angeles, CA 90001" +182518,34in Ultrawide Monitor,1,379.99,03/28/19 13:16,"746 Lincoln St, San Francisco, CA 94016" +182519,Apple Airpods Headphones,1,150,03/03/19 23:51,"42 West St, San Francisco, CA 94016" +182520,Bose SoundSport Headphones,1,99.99,03/27/19 09:44,"585 7th St, Los Angeles, CA 90001" +182521,Apple Airpods Headphones,1,150,03/09/19 07:42,"646 Church St, Los Angeles, CA 90001" +182522,Bose SoundSport Headphones,1,99.99,03/03/19 11:37,"370 14th St, Los Angeles, CA 90001" +182523,AA Batteries (4-pack),1,3.84,03/20/19 15:26,"328 14th St, Portland, OR 97035" +182524,Lightning Charging Cable,1,14.95,03/03/19 07:40,"734 Sunset St, New York City, NY 10001" +182525,AAA Batteries (4-pack),1,2.99,03/25/19 20:16,"919 South St, Los Angeles, CA 90001" +182526,USB-C Charging Cable,1,11.95,03/22/19 22:37,"604 Hickory St, Seattle, WA 98101" +182527,Bose SoundSport Headphones,1,99.99,03/18/19 21:03,"858 Center St, Los Angeles, CA 90001" +182528,AAA Batteries (4-pack),1,2.99,03/02/19 07:48,"104 6th St, Boston, MA 02215" +182529,27in FHD Monitor,2,149.99,03/16/19 00:19,"323 9th St, Austin, TX 73301" +182530,AA Batteries (4-pack),2,3.84,03/13/19 18:18,"901 Sunset St, Los Angeles, CA 90001" +182531,Wired Headphones,1,11.99,03/11/19 18:38,"74 2nd St, San Francisco, CA 94016" +182532,Lightning Charging Cable,1,14.95,03/22/19 12:20,"106 North St, Portland, OR 97035" +182533,Apple Airpods Headphones,1,150,03/30/19 13:09,"654 Hickory St, Portland, OR 97035" +182534,27in FHD Monitor,1,149.99,03/09/19 18:21,"463 Dogwood St, Los Angeles, CA 90001" +182535,Lightning Charging Cable,1,14.95,03/21/19 19:49,"946 2nd St, New York City, NY 10001" +182536,AAA Batteries (4-pack),2,2.99,03/05/19 15:33,"784 Lincoln St, Dallas, TX 75001" +182537,AA Batteries (4-pack),2,3.84,03/15/19 13:46,"478 Jefferson St, Dallas, TX 75001" +182538,USB-C Charging Cable,1,11.95,03/09/19 10:19,"127 Sunset St, Atlanta, GA 30301" +182539,27in FHD Monitor,1,149.99,03/20/19 13:16,"230 Madison St, New York City, NY 10001" +182540,USB-C Charging Cable,1,11.95,03/21/19 09:35,"69 Maple St, Seattle, WA 98101" +182541,Macbook Pro Laptop,1,1700,03/11/19 13:34,"733 Johnson St, New York City, NY 10001" +182542,AA Batteries (4-pack),1,3.84,03/22/19 12:43,"18 Spruce St, Los Angeles, CA 90001" +182543,Apple Airpods Headphones,1,150,03/02/19 18:02,"623 Lakeview St, New York City, NY 10001" +182544,Bose SoundSport Headphones,1,99.99,03/01/19 13:29,"94 Ridge St, Dallas, TX 75001" +182545,AAA Batteries (4-pack),2,2.99,03/13/19 17:50,"109 Madison St, Boston, MA 02215" +182546,34in Ultrawide Monitor,1,379.99,03/20/19 11:50,"314 Washington St, Boston, MA 02215" +182547,AAA Batteries (4-pack),1,2.99,03/06/19 11:50,"967 13th St, Los Angeles, CA 90001" +182548,USB-C Charging Cable,2,11.95,03/21/19 17:19,"255 Cedar St, Seattle, WA 98101" +182549,Wired Headphones,1,11.99,03/03/19 14:44,"30 Church St, Portland, OR 97035" +182550,Lightning Charging Cable,1,14.95,03/30/19 17:41,"511 1st St, Seattle, WA 98101" +182551,USB-C Charging Cable,1,11.95,03/23/19 21:19,"999 Hill St, Los Angeles, CA 90001" +182552,Wired Headphones,1,11.99,03/21/19 20:38,"307 Jefferson St, Austin, TX 73301" +182553,USB-C Charging Cable,1,11.95,03/16/19 15:34,"76 Dogwood St, New York City, NY 10001" +182554,Macbook Pro Laptop,1,1700,03/04/19 15:01,"677 Church St, Boston, MA 02215" +182555,ThinkPad Laptop,1,999.99,03/09/19 18:45,"444 Cedar St, Portland, ME 04101" +182556,Bose SoundSport Headphones,1,99.99,03/27/19 19:52,"715 Johnson St, Portland, OR 97035" +182557,iPhone,1,700,03/15/19 13:47,"614 12th St, Los Angeles, CA 90001" +182558,Bose SoundSport Headphones,1,99.99,03/27/19 20:10,"661 Hill St, Boston, MA 02215" +182559,AA Batteries (4-pack),1,3.84,03/09/19 00:48,"331 Ridge St, Los Angeles, CA 90001" +182560,USB-C Charging Cable,1,11.95,03/18/19 23:47,"112 Sunset St, Portland, OR 97035" +182561,27in 4K Gaming Monitor,1,389.99,03/04/19 14:15,"926 North St, Portland, ME 04101" +182562,Lightning Charging Cable,1,14.95,03/23/19 10:53,"130 6th St, Dallas, TX 75001" +182563,Apple Airpods Headphones,1,150,03/31/19 23:03,"328 Sunset St, Austin, TX 73301" +182564,Lightning Charging Cable,1,14.95,03/26/19 15:11,"834 North St, Los Angeles, CA 90001" +182565,Wired Headphones,1,11.99,03/08/19 16:50,"454 Johnson St, Portland, OR 97035" +182566,Apple Airpods Headphones,1,150,03/20/19 14:10,"383 West St, Atlanta, GA 30301" +182567,AAA Batteries (4-pack),1,2.99,03/12/19 07:24,"492 Ridge St, New York City, NY 10001" +182568,Vareebadd Phone,1,400,03/03/19 21:51,"227 Forest St, Austin, TX 73301" +182569,AA Batteries (4-pack),1,3.84,03/31/19 18:42,"986 13th St, Boston, MA 02215" +182570,AA Batteries (4-pack),2,3.84,03/09/19 07:12,"297 North St, San Francisco, CA 94016" +182571,USB-C Charging Cable,1,11.95,03/11/19 23:02,"549 Meadow St, New York City, NY 10001" +182572,Apple Airpods Headphones,1,150,03/16/19 18:44,"702 Chestnut St, New York City, NY 10001" +182573,27in FHD Monitor,1,149.99,03/16/19 01:10,"101 12th St, Dallas, TX 75001" +182574,USB-C Charging Cable,1,11.95,03/19/19 07:33,"656 Washington St, Portland, OR 97035" +182575,Wired Headphones,1,11.99,03/25/19 20:15,"358 Willow St, New York City, NY 10001" +182576,Bose SoundSport Headphones,1,99.99,03/30/19 11:29,"153 River St, Los Angeles, CA 90001" +182577,AA Batteries (4-pack),1,3.84,03/06/19 04:05,"724 Ridge St, Los Angeles, CA 90001" +182578,Wired Headphones,2,11.99,03/15/19 16:40,"605 1st St, Portland, OR 97035" +182579,AAA Batteries (4-pack),1,2.99,03/18/19 10:56,"687 7th St, New York City, NY 10001" +182580,USB-C Charging Cable,2,11.95,03/26/19 21:11,"181 Madison St, Boston, MA 02215" +182581,34in Ultrawide Monitor,1,379.99,03/03/19 17:23,"67 5th St, Austin, TX 73301" +182582,USB-C Charging Cable,1,11.95,03/06/19 12:38,"821 Maple St, San Francisco, CA 94016" +182583,AAA Batteries (4-pack),2,2.99,03/09/19 17:30,"84 Elm St, San Francisco, CA 94016" +182584,iPhone,1,700,03/17/19 19:58,"420 Hickory St, San Francisco, CA 94016" +182585,Apple Airpods Headphones,1,150,03/11/19 10:40,"694 Pine St, Los Angeles, CA 90001" +182586,AAA Batteries (4-pack),2,2.99,03/19/19 11:36,"458 Meadow St, Boston, MA 02215" +,,,,, +182587,USB-C Charging Cable,1,11.95,03/14/19 19:48,"6 2nd St, Dallas, TX 75001" +182588,34in Ultrawide Monitor,1,379.99,03/24/19 15:50,"530 Chestnut St, San Francisco, CA 94016" +182589,27in FHD Monitor,1,149.99,03/17/19 23:11,"20 Main St, Los Angeles, CA 90001" +182590,Wired Headphones,1,11.99,03/01/19 17:43,"20 Lincoln St, Atlanta, GA 30301" +182591,AAA Batteries (4-pack),2,2.99,03/06/19 17:30,"940 Sunset St, Boston, MA 02215" +182592,27in FHD Monitor,1,149.99,03/03/19 09:37,"924 8th St, San Francisco, CA 94016" +182593,USB-C Charging Cable,1,11.95,03/17/19 14:09,"759 South St, San Francisco, CA 94016" +182594,27in 4K Gaming Monitor,1,389.99,03/28/19 21:29,"852 Pine St, Boston, MA 02215" +182595,AAA Batteries (4-pack),2,2.99,03/09/19 14:52,"521 Main St, Austin, TX 73301" +182596,AA Batteries (4-pack),1,3.84,03/22/19 12:30,"509 Lake St, Los Angeles, CA 90001" +182597,USB-C Charging Cable,1,11.95,03/10/19 18:40,"760 Church St, New York City, NY 10001" +182598,ThinkPad Laptop,1,999.99,03/10/19 20:57,"986 7th St, San Francisco, CA 94016" +182599,AA Batteries (4-pack),1,3.84,03/19/19 17:06,"421 Jefferson St, San Francisco, CA 94016" +182600,AAA Batteries (4-pack),1,2.99,03/04/19 09:27,"776 Wilson St, New York City, NY 10001" +182601,Apple Airpods Headphones,1,150,03/15/19 10:30,"719 Walnut St, Dallas, TX 75001" +182602,Bose SoundSport Headphones,1,99.99,03/28/19 22:50,"351 1st St, Los Angeles, CA 90001" +182603,27in 4K Gaming Monitor,1,389.99,03/31/19 21:23,"267 Chestnut St, Los Angeles, CA 90001" +182604,Macbook Pro Laptop,1,1700,03/05/19 16:08,"62 Jackson St, Boston, MA 02215" +182605,AA Batteries (4-pack),1,3.84,03/16/19 15:52,"47 Forest St, San Francisco, CA 94016" +182606,AA Batteries (4-pack),1,3.84,03/13/19 15:16,"28 West St, Dallas, TX 75001" +182607,Wired Headphones,1,11.99,03/27/19 19:15,"716 Meadow St, Austin, TX 73301" +182608,Wired Headphones,1,11.99,03/11/19 20:49,"334 Meadow St, San Francisco, CA 94016" +182609,20in Monitor,1,109.99,03/04/19 07:59,"36 4th St, Portland, OR 97035" +182610,Apple Airpods Headphones,1,150,03/17/19 22:50,"644 Maple St, Portland, OR 97035" +182611,Apple Airpods Headphones,1,150,03/05/19 21:42,"655 Lake St, Boston, MA 02215" +182612,Wired Headphones,1,11.99,03/14/19 21:53,"766 Meadow St, Seattle, WA 98101" +182613,Wired Headphones,1,11.99,03/05/19 17:05,"594 River St, San Francisco, CA 94016" +182614,Lightning Charging Cable,1,14.95,03/15/19 17:52,"233 West St, San Francisco, CA 94016" +182615,27in FHD Monitor,1,149.99,03/24/19 13:50,"171 8th St, Austin, TX 73301" +182616,Wired Headphones,1,11.99,03/09/19 16:41,"918 11th St, San Francisco, CA 94016" +182617,AA Batteries (4-pack),1,3.84,03/09/19 11:40,"112 6th St, Boston, MA 02215" +182618,Apple Airpods Headphones,1,150,03/15/19 17:23,"194 Pine St, New York City, NY 10001" +182619,Google Phone,1,600,03/07/19 09:20,"490 Meadow St, New York City, NY 10001" +182619,USB-C Charging Cable,2,11.95,03/07/19 09:20,"490 Meadow St, New York City, NY 10001" +182620,Lightning Charging Cable,1,14.95,03/17/19 16:45,"402 Adams St, San Francisco, CA 94016" +182621,AAA Batteries (4-pack),3,2.99,03/26/19 18:55,"680 Spruce St, New York City, NY 10001" +182622,AAA Batteries (4-pack),2,2.99,03/07/19 13:22,"313 Park St, Boston, MA 02215" +182623,AA Batteries (4-pack),1,3.84,03/23/19 15:45,"438 West St, Boston, MA 02215" +182624,USB-C Charging Cable,1,11.95,03/02/19 16:09,"559 River St, Boston, MA 02215" +182625,AA Batteries (4-pack),2,3.84,03/29/19 18:12,"569 7th St, Atlanta, GA 30301" +182626,Lightning Charging Cable,1,14.95,03/04/19 10:51,"412 Washington St, Portland, OR 97035" +182627,Apple Airpods Headphones,1,150,03/04/19 11:16,"198 10th St, Boston, MA 02215" +182628,Apple Airpods Headphones,1,150,03/23/19 21:56,"410 13th St, New York City, NY 10001" +182629,Wired Headphones,1,11.99,03/17/19 11:13,"894 North St, Portland, OR 97035" +182630,AA Batteries (4-pack),2,3.84,03/23/19 12:52,"713 Johnson St, Los Angeles, CA 90001" +182631,34in Ultrawide Monitor,1,379.99,03/23/19 21:06,"148 10th St, New York City, NY 10001" +182632,AA Batteries (4-pack),1,3.84,03/09/19 00:32,"121 Hill St, San Francisco, CA 94016" +182633,Bose SoundSport Headphones,1,99.99,03/27/19 21:22,"60 Washington St, Atlanta, GA 30301" +182634,Flatscreen TV,1,300,03/15/19 08:48,"15 11th St, Austin, TX 73301" +182635,Wired Headphones,1,11.99,03/30/19 20:41,"117 River St, Austin, TX 73301" +182636,AAA Batteries (4-pack),1,2.99,03/07/19 16:13,"79 7th St, New York City, NY 10001" +182637,Apple Airpods Headphones,1,150,03/12/19 18:44,"364 Meadow St, Boston, MA 02215" +182638,27in 4K Gaming Monitor,1,389.99,03/04/19 23:46,"485 Jackson St, New York City, NY 10001" +182639,Lightning Charging Cable,1,14.95,03/17/19 18:06,"644 5th St, Portland, OR 97035" +182640,iPhone,1,700,03/10/19 10:49,"325 Washington St, San Francisco, CA 94016" +182640,Wired Headphones,1,11.99,03/10/19 10:49,"325 Washington St, San Francisco, CA 94016" +182641,Apple Airpods Headphones,1,150,03/29/19 15:19,"352 Spruce St, Los Angeles, CA 90001" +182642,iPhone,1,700,03/24/19 19:44,"866 Sunset St, Atlanta, GA 30301" +182643,Wired Headphones,1,11.99,03/15/19 15:20,"705 South St, Los Angeles, CA 90001" +182644,ThinkPad Laptop,1,999.99,03/16/19 22:02,"288 Park St, New York City, NY 10001" +182645,Lightning Charging Cable,1,14.95,03/09/19 18:26,"605 Lincoln St, Los Angeles, CA 90001" +182646,AAA Batteries (4-pack),1,2.99,03/09/19 19:07,"837 9th St, Atlanta, GA 30301" +182647,Bose SoundSport Headphones,1,99.99,03/29/19 07:47,"403 Walnut St, Atlanta, GA 30301" +182648,AA Batteries (4-pack),3,3.84,03/29/19 17:22,"300 Madison St, San Francisco, CA 94016" +182649,Lightning Charging Cable,1,14.95,03/05/19 11:08,"118 Jefferson St, Boston, MA 02215" +182650,AA Batteries (4-pack),1,3.84,03/17/19 06:57,"17 Highland St, Los Angeles, CA 90001" +182650,USB-C Charging Cable,2,11.95,03/17/19 06:57,"17 Highland St, Los Angeles, CA 90001" +182651,Lightning Charging Cable,1,14.95,03/05/19 16:39,"102 Lake St, Boston, MA 02215" +182652,AAA Batteries (4-pack),1,2.99,03/01/19 16:39,"273 9th St, New York City, NY 10001" +182653,AAA Batteries (4-pack),1,2.99,03/25/19 10:10,"291 Main St, New York City, NY 10001" +182654,Bose SoundSport Headphones,1,99.99,03/05/19 11:24,"392 Willow St, Los Angeles, CA 90001" +182655,AAA Batteries (4-pack),2,2.99,03/28/19 18:02,"194 Walnut St, New York City, NY 10001" +182656,Lightning Charging Cable,1,14.95,03/29/19 13:48,"619 Chestnut St, Portland, OR 97035" +182657,AA Batteries (4-pack),2,3.84,03/28/19 11:24,"56 Jefferson St, Portland, OR 97035" +182658,Apple Airpods Headphones,1,150,03/14/19 22:16,"104 Maple St, San Francisco, CA 94016" +182659,AAA Batteries (4-pack),1,2.99,03/26/19 14:33,"190 2nd St, Portland, OR 97035" +182660,AA Batteries (4-pack),1,3.84,03/04/19 21:29,"440 South St, San Francisco, CA 94016" +182661,AA Batteries (4-pack),2,3.84,03/28/19 13:26,"963 4th St, San Francisco, CA 94016" +182662,20in Monitor,1,109.99,03/18/19 19:13,"128 Hill St, New York City, NY 10001" +182663,USB-C Charging Cable,1,11.95,03/07/19 17:25,"862 West St, San Francisco, CA 94016" +182664,AA Batteries (4-pack),1,3.84,03/09/19 13:13,"696 Main St, New York City, NY 10001" +182665,Flatscreen TV,1,300,03/05/19 13:34,"30 14th St, San Francisco, CA 94016" +182666,AAA Batteries (4-pack),2,2.99,03/06/19 11:57,"513 1st St, San Francisco, CA 94016" +182667,AA Batteries (4-pack),3,3.84,03/25/19 19:53,"301 Lakeview St, Seattle, WA 98101" +182668,27in 4K Gaming Monitor,1,389.99,03/04/19 16:25,"465 Church St, New York City, NY 10001" +182669,USB-C Charging Cable,1,11.95,03/24/19 08:16,"955 Pine St, Los Angeles, CA 90001" +182670,Wired Headphones,1,11.99,03/15/19 15:15,"320 13th St, San Francisco, CA 94016" +182671,Bose SoundSport Headphones,1,99.99,03/31/19 18:27,"821 5th St, Los Angeles, CA 90001" +182672,AAA Batteries (4-pack),1,2.99,03/23/19 23:24,"697 Lincoln St, Portland, OR 97035" +182673,Bose SoundSport Headphones,1,99.99,03/30/19 14:04,"222 1st St, Seattle, WA 98101" +182674,27in 4K Gaming Monitor,1,389.99,03/27/19 19:22,"408 River St, Dallas, TX 75001" +182675,Lightning Charging Cable,1,14.95,03/14/19 07:14,"500 North St, Boston, MA 02215" +182676,Lightning Charging Cable,1,14.95,03/15/19 05:33,"627 Johnson St, Portland, OR 97035" +182677,iPhone,1,700,03/09/19 14:27,"186 Cedar St, New York City, NY 10001" +182678,34in Ultrawide Monitor,1,379.99,03/30/19 11:58,"569 Cedar St, Seattle, WA 98101" +182679,Apple Airpods Headphones,1,150,03/15/19 08:05,"945 Sunset St, San Francisco, CA 94016" +182680,Lightning Charging Cable,1,14.95,03/28/19 11:39,"926 Adams St, New York City, NY 10001" +182681,Bose SoundSport Headphones,1,99.99,03/25/19 00:38,"859 4th St, Austin, TX 73301" +182682,27in FHD Monitor,1,149.99,03/07/19 17:19,"441 Ridge St, Boston, MA 02215" +182683,LG Washing Machine,1,600.0,03/23/19 22:02,"403 Chestnut St, Boston, MA 02215" +182684,27in FHD Monitor,1,149.99,03/23/19 11:28,"67 Park St, Los Angeles, CA 90001" +182685,Apple Airpods Headphones,1,150,03/02/19 08:54,"358 14th St, Los Angeles, CA 90001" +182686,Macbook Pro Laptop,1,1700,03/23/19 20:24,"281 6th St, New York City, NY 10001" +182687,Apple Airpods Headphones,1,150,03/06/19 13:17,"928 Maple St, Portland, OR 97035" +182688,Bose SoundSport Headphones,1,99.99,03/15/19 14:17,"639 Meadow St, New York City, NY 10001" +182689,20in Monitor,1,109.99,03/03/19 08:21,"24 13th St, Boston, MA 02215" +182690,USB-C Charging Cable,1,11.95,03/12/19 00:22,"55 River St, Seattle, WA 98101" +182691,Lightning Charging Cable,1,14.95,03/29/19 13:09,"136 2nd St, San Francisco, CA 94016" +182692,AA Batteries (4-pack),1,3.84,03/22/19 12:33,"584 Sunset St, Los Angeles, CA 90001" +182693,Bose SoundSport Headphones,1,99.99,03/08/19 13:51,"869 Walnut St, Los Angeles, CA 90001" +182694,Lightning Charging Cable,1,14.95,03/18/19 10:17,"343 Lake St, Dallas, TX 75001" +182695,34in Ultrawide Monitor,1,379.99,03/21/19 17:25,"368 5th St, Atlanta, GA 30301" +182696,USB-C Charging Cable,1,11.95,03/20/19 14:47,"944 Washington St, San Francisco, CA 94016" +182697,Vareebadd Phone,1,400,03/01/19 07:54,"281 7th St, Portland, OR 97035" +182697,USB-C Charging Cable,1,11.95,03/01/19 07:54,"281 7th St, Portland, OR 97035" +182697,Bose SoundSport Headphones,1,99.99,03/01/19 07:54,"281 7th St, Portland, OR 97035" +182698,Macbook Pro Laptop,1,1700,03/11/19 15:30,"293 9th St, New York City, NY 10001" +182699,ThinkPad Laptop,1,999.99,03/27/19 11:23,"461 Spruce St, New York City, NY 10001" +182700,USB-C Charging Cable,1,11.95,03/29/19 22:07,"530 Jefferson St, Los Angeles, CA 90001" +182701,Lightning Charging Cable,1,14.95,03/21/19 08:56,"730 1st St, Dallas, TX 75001" +182702,USB-C Charging Cable,1,11.95,03/04/19 17:18,"369 2nd St, Boston, MA 02215" +182703,Google Phone,1,600,03/14/19 17:05,"76 9th St, Seattle, WA 98101" +182704,ThinkPad Laptop,1,999.99,03/29/19 09:12,"694 Hill St, Boston, MA 02215" +182705,Lightning Charging Cable,1,14.95,03/06/19 21:49,"334 7th St, Atlanta, GA 30301" +182706,Wired Headphones,1,11.99,03/31/19 18:56,"309 10th St, Boston, MA 02215" +182707,Bose SoundSport Headphones,1,99.99,03/07/19 19:43,"181 Madison St, San Francisco, CA 94016" +182708,Bose SoundSport Headphones,1,99.99,03/18/19 10:22,"681 Center St, Boston, MA 02215" +182709,27in 4K Gaming Monitor,1,389.99,03/10/19 23:54,"546 North St, New York City, NY 10001" +182710,iPhone,1,700,03/23/19 00:17,"339 River St, Atlanta, GA 30301" +182711,USB-C Charging Cable,1,11.95,03/21/19 19:21,"603 10th St, New York City, NY 10001" +182712,AA Batteries (4-pack),1,3.84,03/15/19 22:49,"390 Forest St, New York City, NY 10001" +182713,Apple Airpods Headphones,1,150,03/26/19 17:29,"97 Sunset St, San Francisco, CA 94016" +182714,AAA Batteries (4-pack),1,2.99,03/23/19 19:10,"932 10th St, Seattle, WA 98101" +182715,Apple Airpods Headphones,1,150,03/15/19 11:49,"604 Meadow St, Atlanta, GA 30301" +182716,USB-C Charging Cable,1,11.95,03/11/19 22:25,"993 Meadow St, New York City, NY 10001" +182717,20in Monitor,1,109.99,03/27/19 23:00,"260 7th St, New York City, NY 10001" +182718,Bose SoundSport Headphones,1,99.99,03/31/19 16:27,"84 14th St, San Francisco, CA 94016" +182719,Macbook Pro Laptop,1,1700,03/18/19 09:58,"960 Lakeview St, San Francisco, CA 94016" +182720,Google Phone,1,600,03/23/19 00:58,"394 Church St, Los Angeles, CA 90001" +182720,Wired Headphones,1,11.99,03/23/19 00:58,"394 Church St, Los Angeles, CA 90001" +182721,Wired Headphones,1,11.99,03/08/19 19:59,"93 Hill St, Los Angeles, CA 90001" +182722,27in FHD Monitor,1,149.99,03/30/19 16:58,"997 Center St, New York City, NY 10001" +182723,Apple Airpods Headphones,1,150,03/31/19 07:25,"577 11th St, New York City, NY 10001" +182724,AAA Batteries (4-pack),3,2.99,03/08/19 10:54,"423 Sunset St, San Francisco, CA 94016" +182725,Lightning Charging Cable,1,14.95,03/03/19 17:35,"40 South St, Los Angeles, CA 90001" +182726,AAA Batteries (4-pack),1,2.99,03/20/19 23:03,"819 Forest St, San Francisco, CA 94016" +182727,AA Batteries (4-pack),1,3.84,03/09/19 00:31,"290 North St, Atlanta, GA 30301" +182728,Lightning Charging Cable,1,14.95,03/29/19 17:44,"873 Cherry St, San Francisco, CA 94016" +182729,AA Batteries (4-pack),1,3.84,03/11/19 11:40,"436 Jefferson St, Austin, TX 73301" +182730,27in FHD Monitor,1,149.99,03/07/19 05:53,"443 Washington St, Atlanta, GA 30301" +182731,Lightning Charging Cable,1,14.95,03/22/19 12:35,"495 Ridge St, Los Angeles, CA 90001" +182732,Apple Airpods Headphones,1,150,03/06/19 22:41,"679 Willow St, Dallas, TX 75001" +182733,USB-C Charging Cable,1,11.95,03/27/19 11:23,"882 7th St, New York City, NY 10001" +182734,USB-C Charging Cable,1,11.95,03/08/19 17:21,"159 11th St, Dallas, TX 75001" +182735,USB-C Charging Cable,1,11.95,03/07/19 19:43,"772 Johnson St, San Francisco, CA 94016" +182736,Vareebadd Phone,1,400,03/04/19 12:23,"866 Wilson St, Los Angeles, CA 90001" +182736,Wired Headphones,1,11.99,03/04/19 12:23,"866 Wilson St, Los Angeles, CA 90001" +182737,USB-C Charging Cable,2,11.95,03/30/19 08:42,"192 Madison St, Dallas, TX 75001" +182738,Lightning Charging Cable,1,14.95,03/20/19 23:44,"78 Hill St, San Francisco, CA 94016" +182739,AAA Batteries (4-pack),1,2.99,03/19/19 15:22,"116 Highland St, Dallas, TX 75001" +182740,Lightning Charging Cable,1,14.95,03/27/19 11:30,"835 8th St, Los Angeles, CA 90001" +182741,27in 4K Gaming Monitor,1,389.99,03/20/19 23:30,"394 4th St, San Francisco, CA 94016" +182742,AA Batteries (4-pack),1,3.84,03/02/19 15:45,"618 Washington St, New York City, NY 10001" +182743,Apple Airpods Headphones,1,150,03/28/19 09:09,"317 Maple St, Los Angeles, CA 90001" +182744,34in Ultrawide Monitor,1,379.99,03/19/19 23:05,"264 Walnut St, Los Angeles, CA 90001" +182745,20in Monitor,1,109.99,03/06/19 02:50,"312 Cherry St, Seattle, WA 98101" +182746,AAA Batteries (4-pack),1,2.99,03/27/19 21:07,"183 South St, Boston, MA 02215" +182747,AA Batteries (4-pack),1,3.84,03/21/19 17:23,"226 14th St, Boston, MA 02215" +182748,USB-C Charging Cable,1,11.95,03/11/19 22:02,"486 1st St, Portland, OR 97035" +182749,USB-C Charging Cable,2,11.95,03/27/19 14:57,"581 8th St, San Francisco, CA 94016" +182749,LG Washing Machine,1,600.0,03/27/19 14:57,"581 8th St, San Francisco, CA 94016" +182750,AAA Batteries (4-pack),1,2.99,03/18/19 06:19,"795 Hill St, Boston, MA 02215" +182751,Wired Headphones,1,11.99,03/02/19 11:31,"650 Main St, Dallas, TX 75001" +182752,27in FHD Monitor,1,149.99,03/27/19 13:06,"576 Meadow St, Los Angeles, CA 90001" +182753,Flatscreen TV,1,300,03/28/19 05:19,"427 Johnson St, Boston, MA 02215" +182754,Lightning Charging Cable,1,14.95,03/23/19 01:38,"955 Center St, Portland, OR 97035" +182755,Macbook Pro Laptop,1,1700,03/25/19 00:47,"520 Willow St, Boston, MA 02215" +182756,Wired Headphones,1,11.99,03/27/19 09:57,"818 9th St, Los Angeles, CA 90001" +182757,USB-C Charging Cable,1,11.95,03/28/19 12:43,"973 Washington St, New York City, NY 10001" +182758,Apple Airpods Headphones,1,150,03/19/19 18:28,"712 Lincoln St, New York City, NY 10001" +182759,USB-C Charging Cable,1,11.95,03/15/19 12:51,"6 Hickory St, Atlanta, GA 30301" +182760,27in FHD Monitor,1,149.99,03/08/19 05:05,"233 12th St, Los Angeles, CA 90001" +182761,Wired Headphones,1,11.99,03/11/19 13:43,"698 Hickory St, Atlanta, GA 30301" +182762,Wired Headphones,1,11.99,03/01/19 11:17,"885 Johnson St, Dallas, TX 75001" +182763,AA Batteries (4-pack),2,3.84,03/19/19 16:12,"754 Wilson St, Dallas, TX 75001" +182764,AAA Batteries (4-pack),1,2.99,03/10/19 16:25,"866 Lake St, Los Angeles, CA 90001" +182765,Vareebadd Phone,1,400,03/11/19 18:10,"313 Washington St, San Francisco, CA 94016" +182766,Flatscreen TV,1,300,03/26/19 08:47,"914 Washington St, New York City, NY 10001" +182767,Bose SoundSport Headphones,1,99.99,03/12/19 15:11,"340 8th St, Boston, MA 02215" +182768,AAA Batteries (4-pack),1,2.99,03/09/19 10:34,"839 12th St, Portland, OR 97035" +182769,USB-C Charging Cable,1,11.95,03/12/19 19:56,"721 Center St, San Francisco, CA 94016" +182770,Wired Headphones,1,11.99,03/01/19 10:54,"556 North St, Austin, TX 73301" +182771,Lightning Charging Cable,1,14.95,03/03/19 21:55,"756 Park St, Portland, OR 97035" +182772,Apple Airpods Headphones,1,150,03/20/19 19:51,"787 Lake St, Atlanta, GA 30301" +182773,ThinkPad Laptop,1,999.99,03/09/19 19:49,"245 Spruce St, New York City, NY 10001" +182774,iPhone,1,700,03/22/19 06:25,"524 Maple St, San Francisco, CA 94016" +182774,Lightning Charging Cable,1,14.95,03/22/19 06:25,"524 Maple St, San Francisco, CA 94016" +182775,USB-C Charging Cable,2,11.95,03/24/19 10:01,"518 River St, San Francisco, CA 94016" +182776,27in FHD Monitor,1,149.99,03/28/19 20:37,"978 2nd St, New York City, NY 10001" +182777,Flatscreen TV,1,300,03/31/19 23:56,"773 14th St, San Francisco, CA 94016" +182778,Lightning Charging Cable,1,14.95,03/28/19 21:54,"488 Washington St, Boston, MA 02215" +182779,Bose SoundSport Headphones,1,99.99,03/12/19 17:15,"333 Dogwood St, Los Angeles, CA 90001" +182780,Wired Headphones,1,11.99,03/02/19 21:32,"137 Hickory St, Boston, MA 02215" +182781,20in Monitor,1,109.99,03/22/19 18:40,"722 8th St, San Francisco, CA 94016" +182782,ThinkPad Laptop,1,999.99,03/12/19 11:21,"803 Center St, Los Angeles, CA 90001" +182783,Bose SoundSport Headphones,1,99.99,03/17/19 09:00,"860 Hickory St, Seattle, WA 98101" +182784,AA Batteries (4-pack),2,3.84,03/06/19 17:18,"620 South St, Los Angeles, CA 90001" +182785,20in Monitor,1,109.99,03/31/19 19:48,"76 North St, Portland, OR 97035" +182786,AAA Batteries (4-pack),1,2.99,03/05/19 11:35,"262 Meadow St, Boston, MA 02215" +182787,Apple Airpods Headphones,1,150,03/11/19 09:29,"162 Lake St, San Francisco, CA 94016" +182788,AAA Batteries (4-pack),2,2.99,03/12/19 19:13,"993 6th St, Portland, OR 97035" +182789,Bose SoundSport Headphones,1,99.99,03/31/19 20:35,"429 Sunset St, Portland, OR 97035" +182790,Lightning Charging Cable,1,14.95,03/03/19 13:07,"417 Dogwood St, Seattle, WA 98101" +182791,AAA Batteries (4-pack),1,2.99,03/24/19 21:28,"580 South St, Austin, TX 73301" +182792,USB-C Charging Cable,1,11.95,03/03/19 16:41,"401 14th St, New York City, NY 10001" +182793,Flatscreen TV,1,300,03/07/19 19:27,"14 Willow St, New York City, NY 10001" +182794,Vareebadd Phone,1,400,03/12/19 07:51,"987 2nd St, Portland, OR 97035" +182794,USB-C Charging Cable,1,11.95,03/12/19 07:51,"987 2nd St, Portland, OR 97035" +182795,AA Batteries (4-pack),1,3.84,03/23/19 15:19,"14 Maple St, Portland, OR 97035" +182796,USB-C Charging Cable,1,11.95,03/05/19 20:42,"946 Park St, Los Angeles, CA 90001" +182797,Bose SoundSport Headphones,1,99.99,03/30/19 19:07,"863 North St, Los Angeles, CA 90001" +182798,Wired Headphones,1,11.99,03/24/19 20:55,"758 Johnson St, San Francisco, CA 94016" +182799,Macbook Pro Laptop,1,1700,03/27/19 23:04,"769 Walnut St, Boston, MA 02215" +182800,iPhone,1,700,03/29/19 23:14,"187 Lincoln St, New York City, NY 10001" +182800,Lightning Charging Cable,1,14.95,03/29/19 23:14,"187 Lincoln St, New York City, NY 10001" +182801,AAA Batteries (4-pack),3,2.99,03/13/19 10:42,"106 6th St, New York City, NY 10001" +182802,Lightning Charging Cable,1,14.95,03/10/19 22:11,"452 5th St, Seattle, WA 98101" +182803,AA Batteries (4-pack),1,3.84,03/24/19 09:10,"195 Jefferson St, Austin, TX 73301" +182804,AA Batteries (4-pack),2,3.84,03/17/19 08:37,"773 Forest St, Boston, MA 02215" +182805,USB-C Charging Cable,1,11.95,03/02/19 21:50,"834 Jefferson St, San Francisco, CA 94016" +182806,AAA Batteries (4-pack),1,2.99,03/21/19 11:29,"889 Johnson St, Boston, MA 02215" +182807,AA Batteries (4-pack),1,3.84,03/21/19 06:32,"540 River St, New York City, NY 10001" +182808,Apple Airpods Headphones,1,150,03/21/19 18:05,"15 10th St, Los Angeles, CA 90001" +182809,Wired Headphones,2,11.99,03/05/19 22:00,"674 8th St, Seattle, WA 98101" +182810,AA Batteries (4-pack),1,3.84,03/16/19 20:45,"156 7th St, Austin, TX 73301" +182811,27in FHD Monitor,1,149.99,03/15/19 17:15,"36 Willow St, San Francisco, CA 94016" +182812,AA Batteries (4-pack),1,3.84,03/31/19 20:48,"549 Ridge St, Atlanta, GA 30301" +182813,AAA Batteries (4-pack),1,2.99,03/07/19 10:40,"457 Sunset St, Atlanta, GA 30301" +182814,AA Batteries (4-pack),1,3.84,03/01/19 15:38,"322 13th St, New York City, NY 10001" +182815,USB-C Charging Cable,1,11.95,03/15/19 18:39,"369 13th St, San Francisco, CA 94016" +182816,27in FHD Monitor,1,149.99,03/31/19 19:34,"536 Johnson St, New York City, NY 10001" +182817,Apple Airpods Headphones,1,150,03/21/19 15:12,"294 Chestnut St, New York City, NY 10001" +182818,AA Batteries (4-pack),1,3.84,03/21/19 11:54,"686 Walnut St, Seattle, WA 98101" +182819,Lightning Charging Cable,1,14.95,03/23/19 14:37,"77 North St, Boston, MA 02215" +182820,27in 4K Gaming Monitor,1,389.99,03/02/19 18:06,"601 Cherry St, Austin, TX 73301" +182821,27in 4K Gaming Monitor,1,389.99,03/19/19 08:28,"528 11th St, San Francisco, CA 94016" +182822,Apple Airpods Headphones,1,150,03/02/19 12:01,"525 Johnson St, Dallas, TX 75001" +182823,34in Ultrawide Monitor,1,379.99,03/04/19 12:30,"499 Spruce St, Seattle, WA 98101" +182824,Wired Headphones,1,11.99,03/26/19 09:28,"342 South St, San Francisco, CA 94016" +182825,USB-C Charging Cable,1,11.95,03/22/19 15:09,"26 Maple St, Boston, MA 02215" +182826,AA Batteries (4-pack),1,3.84,03/13/19 08:29,"185 Lakeview St, New York City, NY 10001" +182827,AAA Batteries (4-pack),1,2.99,03/08/19 10:58,"31 Walnut St, Austin, TX 73301" +182828,AA Batteries (4-pack),2,3.84,03/09/19 07:23,"49 Lincoln St, Boston, MA 02215" +182829,34in Ultrawide Monitor,1,379.99,03/23/19 19:21,"946 West St, Los Angeles, CA 90001" +182830,Lightning Charging Cable,1,14.95,03/03/19 15:40,"592 Elm St, San Francisco, CA 94016" +182831,AAA Batteries (4-pack),1,2.99,03/06/19 13:26,"716 12th St, Seattle, WA 98101" +182832,Apple Airpods Headphones,1,150,03/23/19 14:14,"176 Walnut St, Atlanta, GA 30301" +182833,AA Batteries (4-pack),1,3.84,03/28/19 12:04,"838 Pine St, Atlanta, GA 30301" +182834,Lightning Charging Cable,1,14.95,03/07/19 11:42,"78 4th St, Los Angeles, CA 90001" +182835,Apple Airpods Headphones,1,150,03/28/19 12:23,"475 Maple St, Austin, TX 73301" +182836,AA Batteries (4-pack),1,3.84,03/22/19 15:44,"192 Cherry St, Seattle, WA 98101" +182837,Bose SoundSport Headphones,1,99.99,03/02/19 18:59,"538 Madison St, San Francisco, CA 94016" +182838,27in 4K Gaming Monitor,1,389.99,03/20/19 18:49,"993 Meadow St, San Francisco, CA 94016" +182839,Flatscreen TV,1,300,03/09/19 11:04,"171 Hickory St, San Francisco, CA 94016" +182840,AAA Batteries (4-pack),2,2.99,03/11/19 20:18,"407 Maple St, Los Angeles, CA 90001" +182841,Lightning Charging Cable,1,14.95,03/07/19 12:30,"976 Dogwood St, New York City, NY 10001" +182842,USB-C Charging Cable,1,11.95,03/16/19 18:03,"3 Willow St, New York City, NY 10001" +182843,USB-C Charging Cable,1,11.95,03/02/19 19:11,"928 Hill St, New York City, NY 10001" +182844,Lightning Charging Cable,1,14.95,03/05/19 16:51,"567 Forest St, Los Angeles, CA 90001" +182845,20in Monitor,1,109.99,03/02/19 19:53,"373 Park St, San Francisco, CA 94016" +182846,Bose SoundSport Headphones,1,99.99,03/27/19 11:40,"355 5th St, Dallas, TX 75001" +182847,AAA Batteries (4-pack),1,2.99,03/29/19 22:29,"205 Spruce St, Los Angeles, CA 90001" +182848,USB-C Charging Cable,1,11.95,03/12/19 12:26,"856 Meadow St, San Francisco, CA 94016" +182849,USB-C Charging Cable,1,11.95,03/27/19 11:54,"481 Jackson St, New York City, NY 10001" +182850,27in FHD Monitor,1,149.99,03/01/19 21:04,"845 13th St, New York City, NY 10001" +182851,Lightning Charging Cable,2,14.95,03/23/19 17:49,"557 12th St, Portland, OR 97035" +182852,Apple Airpods Headphones,1,150,03/18/19 18:09,"571 5th St, Los Angeles, CA 90001" +182853,Lightning Charging Cable,1,14.95,03/11/19 11:19,"754 Wilson St, New York City, NY 10001" +182854,AA Batteries (4-pack),1,3.84,03/07/19 00:06,"31 Wilson St, Los Angeles, CA 90001" +182855,Lightning Charging Cable,1,14.95,03/03/19 21:14,"20 11th St, Boston, MA 02215" +182856,AAA Batteries (4-pack),1,2.99,03/21/19 17:44,"999 Dogwood St, San Francisco, CA 94016" +182857,AAA Batteries (4-pack),1,2.99,03/19/19 15:55,"377 Johnson St, Los Angeles, CA 90001" +182858,27in FHD Monitor,1,149.99,03/03/19 03:36,"380 Chestnut St, Seattle, WA 98101" +182859,AAA Batteries (4-pack),1,2.99,03/26/19 20:13,"124 North St, Los Angeles, CA 90001" +182860,Vareebadd Phone,1,400,03/14/19 21:09,"881 Pine St, San Francisco, CA 94016" +182861,Wired Headphones,1,11.99,03/19/19 18:45,"755 Church St, Dallas, TX 75001" +182862,AAA Batteries (4-pack),1,2.99,03/25/19 13:32,"883 Spruce St, New York City, NY 10001" +182863,Wired Headphones,1,11.99,03/18/19 19:45,"579 Hickory St, Portland, OR 97035" +182864,Wired Headphones,1,11.99,03/23/19 19:21,"196 Madison St, Los Angeles, CA 90001" +182865,AA Batteries (4-pack),4,3.84,03/19/19 02:13,"471 Chestnut St, Los Angeles, CA 90001" +182866,ThinkPad Laptop,1,999.99,03/04/19 11:14,"144 Cedar St, Atlanta, GA 30301" +182866,Bose SoundSport Headphones,1,99.99,03/04/19 11:14,"144 Cedar St, Atlanta, GA 30301" +182867,ThinkPad Laptop,1,999.99,03/22/19 02:17,"334 Lincoln St, Los Angeles, CA 90001" +182868,AAA Batteries (4-pack),1,2.99,03/05/19 22:23,"656 Spruce St, San Francisco, CA 94016" +182869,Lightning Charging Cable,1,14.95,03/29/19 13:58,"578 River St, New York City, NY 10001" +182870,Wired Headphones,1,11.99,03/14/19 12:46,"963 Dogwood St, San Francisco, CA 94016" +182871,Macbook Pro Laptop,1,1700,03/27/19 15:21,"508 Dogwood St, Austin, TX 73301" +182872,AA Batteries (4-pack),1,3.84,03/04/19 22:20,"867 Washington St, Atlanta, GA 30301" +182873,USB-C Charging Cable,1,11.95,03/21/19 09:39,"779 Church St, Seattle, WA 98101" +182874,Lightning Charging Cable,1,14.95,03/21/19 14:54,"175 North St, San Francisco, CA 94016" +182875,Apple Airpods Headphones,1,150,03/17/19 19:00,"966 Adams St, Boston, MA 02215" +182876,USB-C Charging Cable,2,11.95,03/25/19 23:06,"276 2nd St, New York City, NY 10001" +,,,,, +182877,Lightning Charging Cable,1,14.95,03/04/19 01:05,"375 Dogwood St, Portland, ME 04101" +182878,USB-C Charging Cable,1,11.95,03/08/19 21:30,"216 Spruce St, Atlanta, GA 30301" +182879,Lightning Charging Cable,1,14.95,03/14/19 22:35,"957 Johnson St, Atlanta, GA 30301" +182880,USB-C Charging Cable,1,11.95,03/17/19 13:23,"387 2nd St, Los Angeles, CA 90001" +182881,Macbook Pro Laptop,1,1700,03/23/19 14:45,"650 4th St, Atlanta, GA 30301" +182882,USB-C Charging Cable,1,11.95,03/25/19 10:59,"843 12th St, Los Angeles, CA 90001" +182883,Wired Headphones,1,11.99,03/16/19 10:08,"871 Elm St, San Francisco, CA 94016" +182884,34in Ultrawide Monitor,1,379.99,03/16/19 00:20,"341 Willow St, Dallas, TX 75001" +182885,Bose SoundSport Headphones,1,99.99,03/04/19 22:35,"770 Lakeview St, Los Angeles, CA 90001" +182886,AA Batteries (4-pack),1,3.84,03/10/19 11:48,"429 Dogwood St, Atlanta, GA 30301" +182887,27in 4K Gaming Monitor,1,389.99,03/31/19 21:45,"256 14th St, New York City, NY 10001" +182888,LG Washing Machine,1,600.0,03/24/19 15:28,"911 Willow St, Boston, MA 02215" +182889,AA Batteries (4-pack),1,3.84,03/08/19 10:22,"16 12th St, Boston, MA 02215" +182890,Macbook Pro Laptop,1,1700,03/07/19 12:57,"141 Jefferson St, San Francisco, CA 94016" +182891,Macbook Pro Laptop,1,1700,03/08/19 12:57,"124 Ridge St, Los Angeles, CA 90001" +182892,AA Batteries (4-pack),2,3.84,03/13/19 22:57,"80 4th St, Seattle, WA 98101" +182893,Wired Headphones,2,11.99,03/21/19 13:16,"33 North St, Seattle, WA 98101" +182894,Wired Headphones,1,11.99,03/21/19 11:00,"511 Jefferson St, Boston, MA 02215" +182895,AAA Batteries (4-pack),2,2.99,03/19/19 14:08,"191 Church St, Los Angeles, CA 90001" +182896,Flatscreen TV,1,300,03/11/19 08:56,"862 5th St, Austin, TX 73301" +182897,AAA Batteries (4-pack),1,2.99,03/28/19 17:19,"8 Willow St, Atlanta, GA 30301" +182898,Vareebadd Phone,1,400,03/16/19 20:35,"95 5th St, New York City, NY 10001" +182899,AA Batteries (4-pack),1,3.84,03/06/19 07:28,"190 13th St, San Francisco, CA 94016" +182900,Bose SoundSport Headphones,1,99.99,03/04/19 16:36,"513 Washington St, Seattle, WA 98101" +182901,Google Phone,1,600,03/18/19 00:14,"195 Sunset St, New York City, NY 10001" +182901,USB-C Charging Cable,1,11.95,03/18/19 00:14,"195 Sunset St, New York City, NY 10001" +182902,27in FHD Monitor,1,149.99,03/30/19 12:26,"6 West St, New York City, NY 10001" +182903,Lightning Charging Cable,1,14.95,03/04/19 18:45,"590 Cedar St, Los Angeles, CA 90001" +182904,Wired Headphones,2,11.99,03/06/19 13:48,"958 South St, Boston, MA 02215" +182905,Lightning Charging Cable,1,14.95,03/10/19 10:36,"61 14th St, San Francisco, CA 94016" +182905,34in Ultrawide Monitor,1,379.99,03/10/19 10:36,"61 14th St, San Francisco, CA 94016" +182906,Wired Headphones,2,11.99,03/01/19 17:14,"918 10th St, Austin, TX 73301" +182907,USB-C Charging Cable,1,11.95,03/05/19 22:16,"878 Maple St, San Francisco, CA 94016" +182908,Flatscreen TV,1,300,03/21/19 18:53,"317 6th St, Atlanta, GA 30301" +182909,27in 4K Gaming Monitor,1,389.99,03/24/19 13:39,"936 Madison St, San Francisco, CA 94016" +182910,AAA Batteries (4-pack),2,2.99,03/31/19 21:50,"111 9th St, Boston, MA 02215" +182911,Lightning Charging Cable,1,14.95,03/14/19 23:16,"323 Cedar St, New York City, NY 10001" +182912,27in FHD Monitor,1,149.99,03/09/19 13:35,"579 South St, Los Angeles, CA 90001" +182913,USB-C Charging Cable,2,11.95,03/29/19 10:01,"831 Jackson St, Boston, MA 02215" +182914,AAA Batteries (4-pack),1,2.99,03/09/19 18:06,"800 Johnson St, Portland, OR 97035" +182915,27in FHD Monitor,1,149.99,03/08/19 09:29,"618 Chestnut St, San Francisco, CA 94016" +182916,AA Batteries (4-pack),1,3.84,03/07/19 13:59,"921 Park St, Seattle, WA 98101" +182917,27in FHD Monitor,1,149.99,03/14/19 21:58,"244 North St, New York City, NY 10001" +182918,Lightning Charging Cable,1,14.95,03/11/19 18:30,"495 Cherry St, San Francisco, CA 94016" +182919,Bose SoundSport Headphones,1,99.99,03/06/19 23:06,"84 Church St, Portland, OR 97035" +182920,Apple Airpods Headphones,1,150,03/05/19 18:22,"474 Church St, Seattle, WA 98101" +182921,AAA Batteries (4-pack),1,2.99,03/19/19 12:53,"388 Lake St, New York City, NY 10001" +182922,Lightning Charging Cable,1,14.95,03/14/19 19:19,"491 Madison St, San Francisco, CA 94016" +182923,20in Monitor,1,109.99,03/11/19 21:16,"220 13th St, Portland, OR 97035" +182924,USB-C Charging Cable,1,11.95,03/23/19 08:02,"650 14th St, Portland, OR 97035" +182925,AAA Batteries (4-pack),3,2.99,03/21/19 19:24,"268 Wilson St, Portland, ME 04101" +182926,AAA Batteries (4-pack),1,2.99,03/28/19 00:52,"551 12th St, New York City, NY 10001" +182927,Google Phone,1,600,03/25/19 21:08,"986 Cedar St, Austin, TX 73301" +182928,USB-C Charging Cable,1,11.95,03/08/19 20:10,"720 Church St, Atlanta, GA 30301" +182929,AAA Batteries (4-pack),1,2.99,03/15/19 23:11,"601 Hickory St, Boston, MA 02215" +182930,AA Batteries (4-pack),1,3.84,03/31/19 16:56,"353 5th St, San Francisco, CA 94016" +182931,AA Batteries (4-pack),1,3.84,03/06/19 19:36,"111 11th St, Boston, MA 02215" +182932,Apple Airpods Headphones,1,150,03/28/19 09:03,"498 South St, Dallas, TX 75001" +182933,Wired Headphones,2,11.99,03/09/19 12:48,"133 Jackson St, Seattle, WA 98101" +182934,Flatscreen TV,1,300,03/18/19 14:10,"637 West St, New York City, NY 10001" +182935,LG Washing Machine,1,600.0,03/20/19 14:22,"723 Walnut St, Seattle, WA 98101" +182936,Apple Airpods Headphones,1,150,03/22/19 14:04,"345 Lake St, New York City, NY 10001" +182937,AA Batteries (4-pack),1,3.84,03/05/19 05:39,"633 Elm St, New York City, NY 10001" +182938,USB-C Charging Cable,1,11.95,03/16/19 19:24,"582 7th St, Seattle, WA 98101" +182939,Apple Airpods Headphones,1,150,03/22/19 14:44,"708 5th St, San Francisco, CA 94016" +182940,LG Dryer,1,600.0,03/12/19 11:14,"269 Lakeview St, Boston, MA 02215" +182941,ThinkPad Laptop,1,999.99,03/26/19 09:00,"412 Spruce St, Los Angeles, CA 90001" +182942,AA Batteries (4-pack),1,3.84,03/11/19 11:12,"289 North St, Atlanta, GA 30301" +182943,Bose SoundSport Headphones,1,99.99,03/10/19 08:47,"760 Sunset St, Dallas, TX 75001" +182944,AA Batteries (4-pack),1,3.84,03/16/19 17:57,"949 Willow St, Dallas, TX 75001" +182945,Google Phone,1,600,03/25/19 15:07,"747 Jefferson St, Los Angeles, CA 90001" +182945,Bose SoundSport Headphones,1,99.99,03/25/19 15:07,"747 Jefferson St, Los Angeles, CA 90001" +182946,USB-C Charging Cable,1,11.95,03/23/19 13:22,"620 Willow St, Atlanta, GA 30301" +182947,27in FHD Monitor,1,149.99,03/08/19 19:52,"932 Park St, Portland, OR 97035" +182948,Wired Headphones,1,11.99,03/14/19 21:32,"798 Maple St, San Francisco, CA 94016" +182949,Lightning Charging Cable,1,14.95,03/05/19 10:31,"891 Forest St, Dallas, TX 75001" +182950,AAA Batteries (4-pack),1,2.99,03/12/19 17:55,"638 Washington St, Austin, TX 73301" +182951,27in 4K Gaming Monitor,1,389.99,03/21/19 12:22,"524 Jefferson St, San Francisco, CA 94016" +182952,27in 4K Gaming Monitor,1,389.99,03/05/19 17:41,"600 Meadow St, Los Angeles, CA 90001" +182953,Bose SoundSport Headphones,1,99.99,03/08/19 20:21,"537 14th St, Atlanta, GA 30301" +182954,USB-C Charging Cable,1,11.95,03/20/19 20:30,"843 West St, New York City, NY 10001" +182955,27in FHD Monitor,1,149.99,03/07/19 12:37,"615 Willow St, Los Angeles, CA 90001" +182956,Lightning Charging Cable,1,14.95,03/14/19 08:35,"372 Dogwood St, Los Angeles, CA 90001" +182957,Wired Headphones,2,11.99,03/23/19 20:08,"128 1st St, Boston, MA 02215" +182958,Wired Headphones,1,11.99,03/23/19 22:15,"199 Wilson St, San Francisco, CA 94016" +182959,27in FHD Monitor,1,149.99,03/11/19 20:31,"422 Chestnut St, Dallas, TX 75001" +182960,Wired Headphones,1,11.99,03/19/19 12:23,"28 River St, San Francisco, CA 94016" +182961,Bose SoundSport Headphones,1,99.99,03/05/19 13:52,"477 Pine St, Dallas, TX 75001" +182962,Wired Headphones,1,11.99,03/08/19 22:24,"55 10th St, San Francisco, CA 94016" +182963,ThinkPad Laptop,1,999.99,03/27/19 12:29,"573 Cherry St, Seattle, WA 98101" +182964,AAA Batteries (4-pack),3,2.99,03/09/19 23:18,"376 Johnson St, Austin, TX 73301" +182965,Vareebadd Phone,1,400,03/13/19 22:50,"13 Johnson St, Austin, TX 73301" +182966,Lightning Charging Cable,1,14.95,03/17/19 23:14,"567 Highland St, Dallas, TX 75001" +182967,AAA Batteries (4-pack),2,2.99,03/03/19 18:07,"60 Jackson St, Boston, MA 02215" +182968,USB-C Charging Cable,1,11.95,03/29/19 19:08,"377 Chestnut St, Austin, TX 73301" +182969,34in Ultrawide Monitor,1,379.99,03/09/19 12:25,"432 Hickory St, Portland, OR 97035" +182970,iPhone,1,700,03/22/19 15:09,"690 Spruce St, San Francisco, CA 94016" +182971,iPhone,1,700,03/25/19 12:21,"668 Willow St, Los Angeles, CA 90001" +182972,LG Washing Machine,1,600.0,03/16/19 19:04,"863 11th St, Austin, TX 73301" +182973,Flatscreen TV,1,300,03/08/19 13:00,"875 North St, Boston, MA 02215" +182974,Apple Airpods Headphones,1,150,03/29/19 19:56,"403 Cedar St, Atlanta, GA 30301" +182975,AA Batteries (4-pack),2,3.84,03/23/19 10:47,"638 12th St, Boston, MA 02215" +182976,27in FHD Monitor,1,149.99,03/22/19 19:22,"728 6th St, Austin, TX 73301" +182977,ThinkPad Laptop,1,999.99,03/16/19 16:49,"42 Park St, Los Angeles, CA 90001" +182978,AAA Batteries (4-pack),2,2.99,03/15/19 17:12,"411 Dogwood St, San Francisco, CA 94016" +182979,AAA Batteries (4-pack),4,2.99,03/28/19 18:03,"829 Hickory St, Boston, MA 02215" +182980,Lightning Charging Cable,1,14.95,03/07/19 10:25,"59 Adams St, San Francisco, CA 94016" +182981,Lightning Charging Cable,1,14.95,03/15/19 12:40,"223 Johnson St, New York City, NY 10001" +182982,AA Batteries (4-pack),1,3.84,03/16/19 21:59,"427 Lake St, Atlanta, GA 30301" +182983,iPhone,1,700,03/02/19 11:26,"197 7th St, Austin, TX 73301" +182984,iPhone,1,700,03/29/19 18:35,"733 Cherry St, San Francisco, CA 94016" +182985,Apple Airpods Headphones,1,150,03/14/19 13:23,"470 9th St, Los Angeles, CA 90001" +182986,27in 4K Gaming Monitor,1,389.99,03/05/19 00:30,"644 Johnson St, Austin, TX 73301" +182987,Apple Airpods Headphones,1,150,03/02/19 14:21,"875 Forest St, New York City, NY 10001" +182988,Bose SoundSport Headphones,1,99.99,03/07/19 21:54,"300 Walnut St, Los Angeles, CA 90001" +182989,Bose SoundSport Headphones,1,99.99,03/09/19 19:20,"568 Wilson St, Austin, TX 73301" +182990,ThinkPad Laptop,1,999.99,03/12/19 15:31,"30 Willow St, San Francisco, CA 94016" +182991,USB-C Charging Cable,1,11.95,03/15/19 09:54,"291 Lakeview St, Austin, TX 73301" +182992,Apple Airpods Headphones,1,150,03/21/19 01:28,"582 Lincoln St, Austin, TX 73301" +182993,Wired Headphones,1,11.99,03/05/19 13:28,"294 Cedar St, San Francisco, CA 94016" +182994,34in Ultrawide Monitor,1,379.99,03/22/19 09:17,"615 Jefferson St, Los Angeles, CA 90001" +182995,27in 4K Gaming Monitor,1,389.99,03/25/19 10:50,"358 Spruce St, Los Angeles, CA 90001" +182996,AAA Batteries (4-pack),1,2.99,03/27/19 20:09,"650 South St, San Francisco, CA 94016" +182997,Bose SoundSport Headphones,1,99.99,03/22/19 09:27,"397 Chestnut St, San Francisco, CA 94016" +182998,USB-C Charging Cable,1,11.95,03/22/19 19:16,"230 Walnut St, San Francisco, CA 94016" +182999,USB-C Charging Cable,1,11.95,03/14/19 10:20,"863 Willow St, Boston, MA 02215" +183000,USB-C Charging Cable,1,11.95,03/28/19 06:40,"31 Church St, Austin, TX 73301" +183001,Google Phone,1,600,03/18/19 18:31,"626 Adams St, San Francisco, CA 94016" +183002,Wired Headphones,1,11.99,03/06/19 17:44,"813 Hill St, Los Angeles, CA 90001" +183003,27in FHD Monitor,1,149.99,03/29/19 15:01,"494 Washington St, Boston, MA 02215" +183004,AAA Batteries (4-pack),1,2.99,03/26/19 09:47,"966 Main St, Austin, TX 73301" +183005,27in 4K Gaming Monitor,1,389.99,03/13/19 08:50,"800 Madison St, Los Angeles, CA 90001" +183006,Lightning Charging Cable,1,14.95,03/14/19 02:11,"976 Forest St, San Francisco, CA 94016" +183007,Bose SoundSport Headphones,1,99.99,03/05/19 11:56,"853 Pine St, New York City, NY 10001" +183008,iPhone,1,700,03/15/19 14:29,"411 Hickory St, Los Angeles, CA 90001" +183009,AA Batteries (4-pack),1,3.84,03/30/19 22:15,"68 2nd St, San Francisco, CA 94016" +183010,AA Batteries (4-pack),1,3.84,03/03/19 12:07,"779 Sunset St, Dallas, TX 75001" +183011,AA Batteries (4-pack),1,3.84,03/08/19 09:48,"518 4th St, San Francisco, CA 94016" +183012,20in Monitor,1,109.99,03/06/19 09:20,"242 Elm St, New York City, NY 10001" +183013,ThinkPad Laptop,1,999.99,03/09/19 09:14,"489 Spruce St, Boston, MA 02215" +183014,Wired Headphones,1,11.99,03/12/19 14:43,"937 Spruce St, San Francisco, CA 94016" +183015,Bose SoundSport Headphones,1,99.99,03/28/19 10:52,"967 Dogwood St, Portland, OR 97035" +183016,Bose SoundSport Headphones,1,99.99,03/23/19 16:14,"639 Hill St, Atlanta, GA 30301" +183017,AA Batteries (4-pack),1,3.84,03/29/19 01:21,"458 Chestnut St, Los Angeles, CA 90001" +183018,Apple Airpods Headphones,1,150,03/04/19 23:11,"128 Jefferson St, San Francisco, CA 94016" +183019,Lightning Charging Cable,1,14.95,03/31/19 22:32,"797 Pine St, Atlanta, GA 30301" +183020,AA Batteries (4-pack),3,3.84,03/05/19 20:28,"234 Chestnut St, Los Angeles, CA 90001" +183021,ThinkPad Laptop,1,999.99,03/19/19 00:09,"417 12th St, Dallas, TX 75001" +183022,Google Phone,1,600,03/17/19 14:42,"144 Cherry St, Portland, OR 97035" +183023,Apple Airpods Headphones,1,150,03/23/19 20:14,"924 6th St, San Francisco, CA 94016" +183024,AA Batteries (4-pack),1,3.84,03/10/19 20:35,"851 Elm St, San Francisco, CA 94016" +183025,USB-C Charging Cable,1,11.95,03/22/19 11:20,"699 12th St, New York City, NY 10001" +183026,Wired Headphones,1,11.99,03/20/19 10:42,"304 Lake St, Los Angeles, CA 90001" +183027,AAA Batteries (4-pack),3,2.99,03/07/19 23:24,"310 2nd St, Boston, MA 02215" +183028,Bose SoundSport Headphones,1,99.99,03/12/19 12:52,"248 Chestnut St, Portland, OR 97035" +183029,34in Ultrawide Monitor,1,379.99,03/17/19 19:19,"354 Cherry St, Boston, MA 02215" +183030,iPhone,1,700,03/19/19 13:46,"834 Adams St, Los Angeles, CA 90001" +183031,USB-C Charging Cable,1,11.95,03/25/19 18:36,"688 9th St, San Francisco, CA 94016" +183032,USB-C Charging Cable,1,11.95,03/16/19 11:16,"715 Main St, Portland, OR 97035" +183033,AA Batteries (4-pack),5,3.84,03/01/19 15:47,"482 2nd St, San Francisco, CA 94016" +183034,34in Ultrawide Monitor,1,379.99,03/24/19 21:03,"895 Washington St, Los Angeles, CA 90001" +183035,Wired Headphones,2,11.99,03/07/19 13:31,"625 Spruce St, San Francisco, CA 94016" +183036,Wired Headphones,1,11.99,03/14/19 22:18,"281 Sunset St, San Francisco, CA 94016" +183037,27in 4K Gaming Monitor,1,389.99,03/25/19 17:19,"248 Chestnut St, Boston, MA 02215" +183038,27in 4K Gaming Monitor,1,389.99,03/17/19 12:55,"754 Pine St, San Francisco, CA 94016" +183039,27in FHD Monitor,1,149.99,03/08/19 20:14,"398 South St, Los Angeles, CA 90001" +183040,Bose SoundSport Headphones,1,99.99,03/31/19 07:51,"416 North St, Seattle, WA 98101" +183041,Apple Airpods Headphones,1,150,03/09/19 19:27,"325 6th St, Los Angeles, CA 90001" +183042,Wired Headphones,1,11.99,03/22/19 19:38,"72 Chestnut St, Boston, MA 02215" +183043,20in Monitor,1,109.99,03/08/19 21:28,"647 Hill St, Portland, OR 97035" +183044,Bose SoundSport Headphones,1,99.99,03/22/19 13:51,"402 Madison St, Portland, OR 97035" +183045,27in FHD Monitor,1,149.99,03/07/19 02:26,"795 Cedar St, Seattle, WA 98101" +183046,Lightning Charging Cable,1,14.95,03/18/19 15:33,"133 Chestnut St, Dallas, TX 75001" +183047,27in FHD Monitor,1,149.99,03/16/19 22:01,"146 Forest St, San Francisco, CA 94016" +183048,27in 4K Gaming Monitor,1,389.99,03/23/19 12:52,"715 Church St, Portland, OR 97035" +183049,USB-C Charging Cable,1,11.95,03/19/19 11:59,"719 West St, New York City, NY 10001" +183050,USB-C Charging Cable,1,11.95,03/13/19 23:39,"28 Jackson St, New York City, NY 10001" +183051,Lightning Charging Cable,1,14.95,03/22/19 18:56,"6 Washington St, Atlanta, GA 30301" +183052,Wired Headphones,1,11.99,03/12/19 15:22,"534 Jackson St, Austin, TX 73301" +183053,Apple Airpods Headphones,1,150,03/28/19 20:09,"651 12th St, Austin, TX 73301" +183054,Lightning Charging Cable,1,14.95,03/27/19 21:32,"670 Pine St, Los Angeles, CA 90001" +183055,AA Batteries (4-pack),1,3.84,03/03/19 10:28,"521 Meadow St, Boston, MA 02215" +183056,Wired Headphones,1,11.99,03/07/19 19:09,"140 Wilson St, Dallas, TX 75001" +183057,Wired Headphones,1,11.99,03/01/19 21:21,"764 Jefferson St, Atlanta, GA 30301" +183058,AA Batteries (4-pack),1,3.84,03/23/19 00:30,"2 Jackson St, Los Angeles, CA 90001" +183059,Google Phone,1,600,03/08/19 12:49,"152 Pine St, Seattle, WA 98101" +183059,USB-C Charging Cable,1,11.95,03/08/19 12:49,"152 Pine St, Seattle, WA 98101" +183060,AAA Batteries (4-pack),2,2.99,03/26/19 18:16,"573 South St, San Francisco, CA 94016" +183061,iPhone,1,700,03/29/19 10:44,"172 11th St, New York City, NY 10001" +183062,AA Batteries (4-pack),1,3.84,03/06/19 17:31,"20 Willow St, Atlanta, GA 30301" +183063,Wired Headphones,1,11.99,03/17/19 19:02,"145 Johnson St, Austin, TX 73301" +183064,Lightning Charging Cable,1,14.95,03/13/19 08:40,"213 9th St, Los Angeles, CA 90001" +183065,iPhone,1,700,03/07/19 15:32,"940 Dogwood St, New York City, NY 10001" +183065,Wired Headphones,1,11.99,03/07/19 15:32,"940 Dogwood St, New York City, NY 10001" +183066,USB-C Charging Cable,1,11.95,03/04/19 09:37,"478 Church St, Boston, MA 02215" +183067,Flatscreen TV,1,300,03/15/19 11:24,"894 Chestnut St, Boston, MA 02215" +183067,34in Ultrawide Monitor,1,379.99,03/15/19 11:24,"894 Chestnut St, Boston, MA 02215" +183068,USB-C Charging Cable,1,11.95,03/22/19 10:41,"953 Meadow St, Los Angeles, CA 90001" +183069,Bose SoundSport Headphones,1,99.99,03/26/19 19:05,"963 Willow St, Atlanta, GA 30301" +183070,27in FHD Monitor,2,149.99,03/15/19 01:05,"665 2nd St, Seattle, WA 98101" +183071,Bose SoundSport Headphones,1,99.99,03/06/19 17:09,"971 Lincoln St, Los Angeles, CA 90001" +183072,Bose SoundSport Headphones,1,99.99,03/14/19 17:13,"6 Cedar St, Atlanta, GA 30301" +183073,20in Monitor,1,109.99,03/17/19 06:04,"546 Pine St, Dallas, TX 75001" +183074,34in Ultrawide Monitor,1,379.99,03/17/19 14:17,"328 14th St, San Francisco, CA 94016" +183075,AAA Batteries (4-pack),1,2.99,03/26/19 10:12,"841 Meadow St, Boston, MA 02215" +183076,27in FHD Monitor,1,149.99,03/23/19 21:04,"89 7th St, San Francisco, CA 94016" +,,,,, +183077,Wired Headphones,1,11.99,03/30/19 13:51,"834 Meadow St, Portland, OR 97035" +183078,AA Batteries (4-pack),1,3.84,03/20/19 15:27,"579 Jackson St, Dallas, TX 75001" +183079,USB-C Charging Cable,1,11.95,03/05/19 09:19,"458 Adams St, Atlanta, GA 30301" +183080,USB-C Charging Cable,1,11.95,03/01/19 08:19,"96 6th St, Boston, MA 02215" +183081,Lightning Charging Cable,1,14.95,03/07/19 20:35,"527 Jackson St, New York City, NY 10001" +183082,USB-C Charging Cable,1,11.95,03/02/19 12:50,"250 Elm St, Portland, OR 97035" +183082,Apple Airpods Headphones,1,150,03/02/19 12:50,"250 Elm St, Portland, OR 97035" +183083,AAA Batteries (4-pack),1,2.99,03/17/19 20:37,"834 Cherry St, San Francisco, CA 94016" +183084,Flatscreen TV,1,300,03/31/19 09:01,"233 Johnson St, New York City, NY 10001" +183085,Wired Headphones,1,11.99,03/29/19 16:03,"478 Meadow St, Los Angeles, CA 90001" +183086,Wired Headphones,1,11.99,03/18/19 15:51,"257 Walnut St, San Francisco, CA 94016" +183087,USB-C Charging Cable,1,11.95,03/05/19 19:47,"462 11th St, Los Angeles, CA 90001" +183088,Apple Airpods Headphones,1,150,03/03/19 07:45,"444 Adams St, San Francisco, CA 94016" +183089,AAA Batteries (4-pack),2,2.99,03/22/19 12:00,"254 North St, Dallas, TX 75001" +183090,AAA Batteries (4-pack),1,2.99,03/24/19 13:23,"469 Madison St, Los Angeles, CA 90001" +183091,Lightning Charging Cable,1,14.95,03/17/19 14:04,"409 Church St, New York City, NY 10001" +183092,USB-C Charging Cable,1,11.95,03/23/19 11:47,"683 Main St, Atlanta, GA 30301" +183093,AA Batteries (4-pack),1,3.84,03/31/19 21:21,"899 Elm St, San Francisco, CA 94016" +183094,Bose SoundSport Headphones,1,99.99,03/10/19 11:07,"618 Walnut St, Portland, OR 97035" +183095,AA Batteries (4-pack),2,3.84,03/12/19 08:40,"251 Johnson St, New York City, NY 10001" +183096,Macbook Pro Laptop,1,1700,03/23/19 19:23,"17 River St, San Francisco, CA 94016" +183097,Flatscreen TV,1,300,03/09/19 11:39,"264 Meadow St, San Francisco, CA 94016" +183098,27in 4K Gaming Monitor,1,389.99,03/26/19 15:27,"303 South St, Atlanta, GA 30301" +183099,AAA Batteries (4-pack),5,2.99,03/22/19 05:22,"187 Hickory St, New York City, NY 10001" +183100,AAA Batteries (4-pack),1,2.99,03/05/19 16:11,"94 Madison St, New York City, NY 10001" +183101,20in Monitor,1,109.99,03/12/19 15:23,"768 Sunset St, Portland, OR 97035" +183102,34in Ultrawide Monitor,1,379.99,03/17/19 12:00,"83 Forest St, San Francisco, CA 94016" +183103,Wired Headphones,2,11.99,03/16/19 12:00,"888 Ridge St, New York City, NY 10001" +183104,Wired Headphones,1,11.99,03/11/19 08:31,"643 Sunset St, San Francisco, CA 94016" +183105,Lightning Charging Cable,1,14.95,03/13/19 11:18,"264 Main St, Boston, MA 02215" +183106,USB-C Charging Cable,1,11.95,03/15/19 13:04,"994 5th St, Dallas, TX 75001" +183107,Bose SoundSport Headphones,1,99.99,03/26/19 16:37,"758 Jackson St, Boston, MA 02215" +183108,Macbook Pro Laptop,1,1700,03/06/19 12:47,"58 Church St, Seattle, WA 98101" +183109,USB-C Charging Cable,1,11.95,03/20/19 15:53,"63 11th St, San Francisco, CA 94016" +183110,Bose SoundSport Headphones,1,99.99,03/07/19 15:15,"584 Adams St, Boston, MA 02215" +183111,Lightning Charging Cable,1,14.95,03/06/19 18:22,"59 West St, Portland, OR 97035" +183112,Bose SoundSport Headphones,1,99.99,03/24/19 08:08,"942 Church St, Seattle, WA 98101" +183113,Wired Headphones,1,11.99,03/25/19 10:27,"675 North St, San Francisco, CA 94016" +183114,AA Batteries (4-pack),1,3.84,03/08/19 13:23,"819 Wilson St, New York City, NY 10001" +183115,AA Batteries (4-pack),1,3.84,03/06/19 15:35,"766 8th St, San Francisco, CA 94016" +183116,Bose SoundSport Headphones,1,99.99,03/28/19 13:14,"839 North St, San Francisco, CA 94016" +183116,Flatscreen TV,1,300,03/28/19 13:14,"839 North St, San Francisco, CA 94016" +183117,Wired Headphones,1,11.99,03/19/19 20:30,"781 Walnut St, Portland, OR 97035" +183118,AA Batteries (4-pack),1,3.84,03/13/19 20:22,"134 Center St, Atlanta, GA 30301" +183119,34in Ultrawide Monitor,1,379.99,03/06/19 05:55,"819 9th St, Dallas, TX 75001" +183120,iPhone,1,700,03/12/19 21:06,"652 Johnson St, Seattle, WA 98101" +183121,Lightning Charging Cable,1,14.95,03/27/19 14:01,"321 Maple St, Los Angeles, CA 90001" +183122,27in FHD Monitor,1,149.99,03/19/19 13:02,"239 River St, Dallas, TX 75001" +183123,Lightning Charging Cable,2,14.95,03/24/19 05:51,"28 Elm St, Seattle, WA 98101" +183124,34in Ultrawide Monitor,1,379.99,03/22/19 11:47,"368 Ridge St, Los Angeles, CA 90001" +183125,27in 4K Gaming Monitor,1,389.99,03/07/19 21:31,"915 Pine St, Boston, MA 02215" +183126,AAA Batteries (4-pack),1,2.99,03/11/19 08:46,"996 2nd St, Seattle, WA 98101" +183127,Wired Headphones,1,11.99,03/05/19 05:38,"627 Hill St, Austin, TX 73301" +183128,USB-C Charging Cable,1,11.95,03/18/19 20:57,"49 Wilson St, San Francisco, CA 94016" +183129,USB-C Charging Cable,1,11.95,03/06/19 14:43,"304 West St, San Francisco, CA 94016" +183130,Wired Headphones,1,11.99,03/18/19 15:20,"294 9th St, New York City, NY 10001" +183131,iPhone,1,700,03/22/19 12:51,"806 Washington St, Los Angeles, CA 90001" +183132,Bose SoundSport Headphones,1,99.99,03/14/19 18:45,"120 North St, New York City, NY 10001" +183133,Wired Headphones,1,11.99,03/18/19 13:24,"413 Ridge St, San Francisco, CA 94016" +183134,Apple Airpods Headphones,1,150,03/19/19 06:37,"228 Park St, Los Angeles, CA 90001" +183135,Apple Airpods Headphones,1,150,03/15/19 14:50,"100 North St, Dallas, TX 75001" +183136,AA Batteries (4-pack),1,3.84,03/17/19 21:21,"839 Lincoln St, Boston, MA 02215" +183137,ThinkPad Laptop,1,999.99,03/13/19 14:09,"935 1st St, Atlanta, GA 30301" +183138,Bose SoundSport Headphones,1,99.99,03/11/19 20:20,"104 River St, Los Angeles, CA 90001" +183139,Bose SoundSport Headphones,1,99.99,03/31/19 11:12,"738 Lincoln St, Atlanta, GA 30301" +183140,AAA Batteries (4-pack),1,2.99,03/05/19 19:09,"777 9th St, San Francisco, CA 94016" +183141,USB-C Charging Cable,1,11.95,03/12/19 19:43,"397 Lakeview St, Boston, MA 02215" +183142,AAA Batteries (4-pack),2,2.99,03/31/19 19:42,"51 Ridge St, New York City, NY 10001" +183143,Google Phone,1,600,03/04/19 15:53,"549 South St, Atlanta, GA 30301" +183143,USB-C Charging Cable,4,11.95,03/04/19 15:53,"549 South St, Atlanta, GA 30301" +183144,iPhone,1,700,03/17/19 17:56,"986 10th St, Austin, TX 73301" +183145,AAA Batteries (4-pack),2,2.99,03/15/19 20:53,"784 9th St, New York City, NY 10001" +183146,AAA Batteries (4-pack),1,2.99,03/02/19 18:41,"241 Adams St, Atlanta, GA 30301" +183147,Apple Airpods Headphones,1,150,03/18/19 17:20,"995 Maple St, San Francisco, CA 94016" +183148,Wired Headphones,1,11.99,03/16/19 10:17,"955 Highland St, Boston, MA 02215" +183149,Lightning Charging Cable,1,14.95,03/04/19 14:17,"669 West St, Dallas, TX 75001" +183150,27in FHD Monitor,1,149.99,03/22/19 14:05,"402 13th St, Portland, OR 97035" +183151,27in 4K Gaming Monitor,1,389.99,03/04/19 20:00,"244 River St, Portland, OR 97035" +183152,AA Batteries (4-pack),1,3.84,03/18/19 11:16,"468 Lakeview St, Dallas, TX 75001" +183153,Lightning Charging Cable,1,14.95,03/31/19 22:57,"457 Hill St, Austin, TX 73301" +183154,20in Monitor,1,109.99,03/17/19 12:49,"278 Willow St, Portland, ME 04101" +183155,Macbook Pro Laptop,1,1700,03/14/19 18:42,"816 Hill St, Seattle, WA 98101" +183156,AA Batteries (4-pack),1,3.84,03/02/19 20:02,"644 14th St, San Francisco, CA 94016" +183157,27in FHD Monitor,1,149.99,03/07/19 20:08,"597 Johnson St, Portland, OR 97035" +183158,Wired Headphones,1,11.99,03/26/19 11:49,"638 Adams St, Boston, MA 02215" +183159,Macbook Pro Laptop,1,1700,03/26/19 09:19,"87 12th St, Portland, ME 04101" +183160,AAA Batteries (4-pack),1,2.99,03/27/19 17:35,"767 Sunset St, Austin, TX 73301" +183161,Bose SoundSport Headphones,1,99.99,03/27/19 12:11,"864 Sunset St, Dallas, TX 75001" +183162,USB-C Charging Cable,2,11.95,03/24/19 13:42,"503 Madison St, Los Angeles, CA 90001" +183163,Bose SoundSport Headphones,1,99.99,03/28/19 17:46,"261 Lakeview St, Boston, MA 02215" +183163,AAA Batteries (4-pack),1,2.99,03/28/19 17:46,"261 Lakeview St, Boston, MA 02215" +183164,Lightning Charging Cable,2,14.95,03/02/19 22:30,"384 Church St, San Francisco, CA 94016" +183165,Bose SoundSport Headphones,1,99.99,03/06/19 22:34,"941 Spruce St, Atlanta, GA 30301" +183166,USB-C Charging Cable,1,11.95,03/08/19 20:51,"395 9th St, Portland, ME 04101" +183167,Apple Airpods Headphones,1,150,03/06/19 01:14,"216 Chestnut St, Dallas, TX 75001" +183168,Apple Airpods Headphones,1,150,03/01/19 23:11,"920 11th St, San Francisco, CA 94016" +183169,Wired Headphones,1,11.99,03/07/19 22:35,"548 13th St, Los Angeles, CA 90001" +183170,Bose SoundSport Headphones,1,99.99,03/29/19 12:15,"307 Washington St, Los Angeles, CA 90001" +183171,Bose SoundSport Headphones,1,99.99,03/29/19 00:35,"389 Lincoln St, Portland, OR 97035" +183172,Lightning Charging Cable,1,14.95,03/21/19 08:06,"181 Madison St, Dallas, TX 75001" +183173,USB-C Charging Cable,1,11.95,03/16/19 18:39,"42 Meadow St, Los Angeles, CA 90001" +183174,AA Batteries (4-pack),1,3.84,03/01/19 12:25,"855 Highland St, Portland, OR 97035" +183175,Wired Headphones,1,11.99,03/02/19 16:29,"273 Elm St, Los Angeles, CA 90001" +183176,AA Batteries (4-pack),1,3.84,03/30/19 09:07,"3 4th St, Atlanta, GA 30301" +183177,27in 4K Gaming Monitor,1,389.99,03/18/19 15:06,"616 5th St, Los Angeles, CA 90001" +183178,Flatscreen TV,1,300,03/21/19 14:25,"139 Washington St, Dallas, TX 75001" +183179,AAA Batteries (4-pack),1,2.99,03/04/19 13:43,"113 Ridge St, San Francisco, CA 94016" +183180,USB-C Charging Cable,1,11.95,03/10/19 20:24,"249 Maple St, New York City, NY 10001" +183181,AA Batteries (4-pack),1,3.84,03/17/19 17:00,"695 8th St, San Francisco, CA 94016" +183182,Bose SoundSport Headphones,1,99.99,03/22/19 21:06,"781 Forest St, San Francisco, CA 94016" +183183,AAA Batteries (4-pack),1,2.99,03/22/19 10:35,"148 Center St, San Francisco, CA 94016" +183184,USB-C Charging Cable,1,11.95,04/01/19 00:29,"154 10th St, Boston, MA 02215" +183185,Apple Airpods Headphones,1,150,03/13/19 01:12,"536 12th St, Los Angeles, CA 90001" +183186,Lightning Charging Cable,1,14.95,03/26/19 21:12,"304 Johnson St, Dallas, TX 75001" +183186,Bose SoundSport Headphones,1,99.99,03/26/19 21:12,"304 Johnson St, Dallas, TX 75001" +183187,AAA Batteries (4-pack),3,2.99,03/16/19 12:29,"123 10th St, San Francisco, CA 94016" +183188,AA Batteries (4-pack),2,3.84,03/20/19 08:09,"385 Lake St, Dallas, TX 75001" +183189,Wired Headphones,1,11.99,03/07/19 09:14,"513 Dogwood St, San Francisco, CA 94016" +183190,Wired Headphones,1,11.99,03/15/19 14:53,"638 Walnut St, Los Angeles, CA 90001" +183191,Macbook Pro Laptop,1,1700,03/11/19 09:12,"712 Hickory St, Boston, MA 02215" +183192,Bose SoundSport Headphones,1,99.99,03/10/19 10:12,"438 Highland St, New York City, NY 10001" +183193,Apple Airpods Headphones,1,150,03/09/19 20:30,"247 2nd St, San Francisco, CA 94016" +183194,AAA Batteries (4-pack),1,2.99,03/23/19 14:10,"70 Elm St, Los Angeles, CA 90001" +183195,AA Batteries (4-pack),2,3.84,03/21/19 17:29,"898 Main St, Boston, MA 02215" +183196,Wired Headphones,1,11.99,03/05/19 18:56,"602 6th St, San Francisco, CA 94016" +183197,AAA Batteries (4-pack),1,2.99,03/04/19 20:45,"477 Wilson St, New York City, NY 10001" +183198,27in FHD Monitor,1,149.99,03/13/19 06:47,"471 4th St, San Francisco, CA 94016" +183199,AA Batteries (4-pack),1,3.84,03/04/19 16:30,"543 Cedar St, San Francisco, CA 94016" +183200,iPhone,1,700,03/28/19 11:37,"342 9th St, Los Angeles, CA 90001" +183201,Bose SoundSport Headphones,1,99.99,03/14/19 11:24,"223 12th St, Seattle, WA 98101" +183202,iPhone,1,700,03/22/19 20:27,"699 Elm St, San Francisco, CA 94016" +183203,Vareebadd Phone,1,400,03/11/19 15:26,"241 Park St, Los Angeles, CA 90001" +183204,USB-C Charging Cable,1,11.95,03/08/19 18:10,"122 10th St, Dallas, TX 75001" +183205,AA Batteries (4-pack),1,3.84,03/27/19 23:27,"333 Elm St, Seattle, WA 98101" +183206,Wired Headphones,1,11.99,03/07/19 08:16,"749 Madison St, Austin, TX 73301" +183207,Lightning Charging Cable,1,14.95,03/31/19 16:32,"411 Pine St, Boston, MA 02215" +183208,Wired Headphones,1,11.99,03/29/19 08:55,"225 Lakeview St, Atlanta, GA 30301" +183209,Wired Headphones,1,11.99,03/14/19 16:30,"734 2nd St, Austin, TX 73301" +183210,AAA Batteries (4-pack),3,2.99,03/09/19 23:52,"704 11th St, Seattle, WA 98101" +183211,AA Batteries (4-pack),1,3.84,03/06/19 06:04,"82 Lake St, Los Angeles, CA 90001" +183212,Lightning Charging Cable,2,14.95,03/09/19 19:54,"146 Cedar St, San Francisco, CA 94016" +183213,Wired Headphones,1,11.99,03/06/19 15:16,"98 Jefferson St, San Francisco, CA 94016" +183214,34in Ultrawide Monitor,1,379.99,03/10/19 21:58,"468 Jackson St, Los Angeles, CA 90001" +183215,Bose SoundSport Headphones,1,99.99,03/08/19 21:49,"100 Lake St, Austin, TX 73301" +183216,AAA Batteries (4-pack),1,2.99,03/28/19 11:05,"326 Church St, New York City, NY 10001" +183217,USB-C Charging Cable,1,11.95,03/17/19 22:20,"535 Walnut St, Los Angeles, CA 90001" +183218,Bose SoundSport Headphones,1,99.99,03/27/19 16:32,"748 South St, Dallas, TX 75001" +183219,Lightning Charging Cable,1,14.95,03/30/19 00:41,"823 13th St, Austin, TX 73301" +183220,Lightning Charging Cable,1,14.95,03/20/19 20:18,"25 1st St, San Francisco, CA 94016" +183221,Google Phone,1,600,03/12/19 15:04,"68 Hill St, San Francisco, CA 94016" +183222,USB-C Charging Cable,1,11.95,03/12/19 15:30,"992 Lakeview St, Austin, TX 73301" +183223,AA Batteries (4-pack),1,3.84,03/29/19 18:47,"184 Park St, New York City, NY 10001" +183224,Bose SoundSport Headphones,1,99.99,03/10/19 15:57,"681 Meadow St, San Francisco, CA 94016" +183225,ThinkPad Laptop,1,999.99,03/14/19 20:48,"115 Madison St, Los Angeles, CA 90001" +183226,AAA Batteries (4-pack),1,2.99,03/07/19 00:35,"88 Center St, Los Angeles, CA 90001" +183227,34in Ultrawide Monitor,1,379.99,03/29/19 23:51,"747 5th St, Austin, TX 73301" +183228,AA Batteries (4-pack),3,3.84,03/31/19 20:25,"939 14th St, San Francisco, CA 94016" +183229,USB-C Charging Cable,1,11.95,03/22/19 18:48,"351 Main St, Boston, MA 02215" +183230,20in Monitor,1,109.99,03/20/19 11:34,"222 Church St, Los Angeles, CA 90001" +183231,34in Ultrawide Monitor,1,379.99,03/18/19 23:31,"2 Cherry St, Austin, TX 73301" +183232,AAA Batteries (4-pack),1,2.99,03/09/19 13:02,"608 Park St, Los Angeles, CA 90001" +183233,34in Ultrawide Monitor,1,379.99,03/11/19 18:57,"399 4th St, Dallas, TX 75001" +183234,27in FHD Monitor,1,149.99,03/07/19 06:41,"524 Forest St, Seattle, WA 98101" +183235,20in Monitor,1,109.99,03/23/19 21:20,"507 Cedar St, San Francisco, CA 94016" +183236,Flatscreen TV,1,300,03/01/19 12:48,"572 1st St, Los Angeles, CA 90001" +183237,Wired Headphones,1,11.99,03/30/19 15:33,"256 10th St, Atlanta, GA 30301" +183238,Wired Headphones,1,11.99,03/25/19 05:57,"352 Dogwood St, New York City, NY 10001" +183239,Lightning Charging Cable,1,14.95,03/19/19 14:34,"727 Spruce St, Seattle, WA 98101" +183240,AA Batteries (4-pack),1,3.84,03/12/19 13:08,"61 12th St, Boston, MA 02215" +183241,Bose SoundSport Headphones,1,99.99,03/12/19 15:36,"234 8th St, Los Angeles, CA 90001" +183242,Macbook Pro Laptop,1,1700,03/19/19 12:24,"845 Center St, Seattle, WA 98101" +183243,USB-C Charging Cable,1,11.95,03/14/19 17:55,"280 4th St, New York City, NY 10001" +183244,Lightning Charging Cable,1,14.95,03/10/19 13:13,"79 Johnson St, Boston, MA 02215" +183245,Apple Airpods Headphones,1,150,03/18/19 20:22,"659 4th St, New York City, NY 10001" +183246,USB-C Charging Cable,1,11.95,03/25/19 15:46,"99 Ridge St, Dallas, TX 75001" +183247,AA Batteries (4-pack),1,3.84,03/19/19 13:02,"61 Wilson St, Portland, OR 97035" +183248,AA Batteries (4-pack),1,3.84,03/14/19 23:51,"1 Cherry St, Los Angeles, CA 90001" +183249,Apple Airpods Headphones,1,150,03/28/19 14:18,"117 Walnut St, San Francisco, CA 94016" +183250,20in Monitor,1,109.99,03/21/19 10:20,"339 11th St, Portland, ME 04101" +183251,20in Monitor,1,109.99,03/20/19 10:55,"165 2nd St, Los Angeles, CA 90001" +183252,AAA Batteries (4-pack),2,2.99,03/31/19 18:48,"638 Cedar St, Los Angeles, CA 90001" +183253,Apple Airpods Headphones,1,150,03/02/19 20:59,"273 North St, Atlanta, GA 30301" +183254,Apple Airpods Headphones,1,150,03/02/19 13:15,"978 Elm St, Seattle, WA 98101" +183255,iPhone,1,700,03/30/19 14:51,"816 9th St, Boston, MA 02215" +183255,Lightning Charging Cable,1,14.95,03/30/19 14:51,"816 9th St, Boston, MA 02215" +183256,ThinkPad Laptop,1,999.99,03/09/19 21:30,"256 Highland St, Los Angeles, CA 90001" +183257,Apple Airpods Headphones,1,150,03/23/19 15:51,"419 Pine St, San Francisco, CA 94016" +183258,Wired Headphones,1,11.99,03/01/19 14:09,"330 Forest St, Los Angeles, CA 90001" +183259,Apple Airpods Headphones,1,150,03/11/19 14:00,"607 Lincoln St, San Francisco, CA 94016" +183260,iPhone,1,700,03/07/19 13:24,"13 Cherry St, New York City, NY 10001" +183261,AAA Batteries (4-pack),1,2.99,03/11/19 07:30,"829 Chestnut St, Boston, MA 02215" +183262,27in 4K Gaming Monitor,1,389.99,03/16/19 23:41,"427 Spruce St, Los Angeles, CA 90001" +183263,Flatscreen TV,1,300,03/09/19 11:05,"962 Cedar St, New York City, NY 10001" +183264,USB-C Charging Cable,1,11.95,03/07/19 06:06,"993 West St, Portland, OR 97035" +183265,Wired Headphones,1,11.99,03/29/19 10:21,"890 2nd St, Portland, OR 97035" +183266,ThinkPad Laptop,1,999.99,03/11/19 10:40,"70 14th St, Boston, MA 02215" +183267,iPhone,1,700,03/09/19 14:08,"532 Center St, Atlanta, GA 30301" +183268,AAA Batteries (4-pack),1,2.99,03/04/19 21:53,"598 Willow St, San Francisco, CA 94016" +183269,Apple Airpods Headphones,1,150,03/01/19 22:23,"319 Lakeview St, New York City, NY 10001" +183270,iPhone,1,700,03/04/19 14:52,"433 13th St, Los Angeles, CA 90001" +183270,Lightning Charging Cable,1,14.95,03/04/19 14:52,"433 13th St, Los Angeles, CA 90001" +183271,iPhone,1,700,03/01/19 21:14,"32 4th St, New York City, NY 10001" +183272,Lightning Charging Cable,1,14.95,03/05/19 07:46,"577 Dogwood St, San Francisco, CA 94016" +183273,27in FHD Monitor,1,149.99,03/02/19 20:48,"47 Sunset St, Portland, OR 97035" +183274,iPhone,1,700,03/07/19 11:38,"968 South St, Los Angeles, CA 90001" +183275,AA Batteries (4-pack),2,3.84,03/09/19 09:14,"65 2nd St, Los Angeles, CA 90001" +183276,AA Batteries (4-pack),1,3.84,03/04/19 16:38,"87 Madison St, San Francisco, CA 94016" +183277,Vareebadd Phone,1,400,03/03/19 23:57,"866 1st St, Portland, OR 97035" +183277,USB-C Charging Cable,1,11.95,03/03/19 23:57,"866 1st St, Portland, OR 97035" +183278,Macbook Pro Laptop,1,1700,03/18/19 16:49,"920 Chestnut St, Seattle, WA 98101" +183279,AA Batteries (4-pack),1,3.84,03/01/19 07:44,"86 Ridge St, Los Angeles, CA 90001" +183280,Bose SoundSport Headphones,1,99.99,03/08/19 15:01,"857 Dogwood St, San Francisco, CA 94016" +183281,USB-C Charging Cable,1,11.95,03/18/19 08:17,"440 Jefferson St, San Francisco, CA 94016" +183282,34in Ultrawide Monitor,1,379.99,03/13/19 19:41,"225 Park St, Los Angeles, CA 90001" +183283,Lightning Charging Cable,1,14.95,03/26/19 18:24,"727 Dogwood St, Boston, MA 02215" +183284,27in FHD Monitor,1,149.99,03/10/19 22:03,"828 5th St, New York City, NY 10001" +183285,Wired Headphones,1,11.99,03/27/19 21:13,"601 2nd St, Atlanta, GA 30301" +183286,AA Batteries (4-pack),2,3.84,03/12/19 22:02,"745 4th St, San Francisco, CA 94016" +183287,Flatscreen TV,1,300,03/19/19 14:26,"714 Spruce St, San Francisco, CA 94016" +183288,Wired Headphones,1,11.99,03/14/19 07:53,"5 Washington St, Los Angeles, CA 90001" +183289,AA Batteries (4-pack),1,3.84,03/12/19 18:16,"947 Forest St, Seattle, WA 98101" +183290,USB-C Charging Cable,1,11.95,03/08/19 16:57,"807 Maple St, Boston, MA 02215" +183291,Lightning Charging Cable,1,14.95,03/13/19 07:16,"183 Center St, New York City, NY 10001" +183292,AA Batteries (4-pack),1,3.84,03/07/19 10:56,"377 Sunset St, San Francisco, CA 94016" +183293,AAA Batteries (4-pack),1,2.99,03/05/19 11:06,"171 Dogwood St, Seattle, WA 98101" +183294,Apple Airpods Headphones,1,150,03/24/19 19:57,"205 Meadow St, Atlanta, GA 30301" +183295,USB-C Charging Cable,1,11.95,03/11/19 11:52,"474 Forest St, San Francisco, CA 94016" +183296,Lightning Charging Cable,1,14.95,03/13/19 10:13,"947 Adams St, Boston, MA 02215" +183297,AA Batteries (4-pack),2,3.84,03/01/19 15:18,"982 Maple St, Dallas, TX 75001" +183298,Apple Airpods Headphones,1,150,03/18/19 11:13,"204 Forest St, San Francisco, CA 94016" +183299,AA Batteries (4-pack),1,3.84,03/06/19 11:22,"86 Center St, San Francisco, CA 94016" +183300,Lightning Charging Cable,1,14.95,03/26/19 18:06,"231 Willow St, Dallas, TX 75001" +183301,Bose SoundSport Headphones,1,99.99,03/01/19 14:18,"5 Lake St, Austin, TX 73301" +183302,Apple Airpods Headphones,1,150,03/06/19 09:32,"910 North St, New York City, NY 10001" +183303,Flatscreen TV,1,300,03/14/19 10:12,"858 6th St, San Francisco, CA 94016" +183304,AA Batteries (4-pack),1,3.84,03/03/19 20:11,"470 Willow St, Seattle, WA 98101" +183305,Bose SoundSport Headphones,1,99.99,03/09/19 08:33,"95 13th St, Austin, TX 73301" +183306,AAA Batteries (4-pack),1,2.99,03/11/19 18:17,"580 Lakeview St, Los Angeles, CA 90001" +183307,Lightning Charging Cable,1,14.95,03/07/19 19:09,"807 Sunset St, Atlanta, GA 30301" +183308,Wired Headphones,1,11.99,03/06/19 19:57,"978 Jackson St, Dallas, TX 75001" +183309,LG Dryer,1,600.0,03/04/19 16:22,"674 Dogwood St, San Francisco, CA 94016" +183310,Wired Headphones,1,11.99,03/08/19 17:14,"286 Adams St, Los Angeles, CA 90001" +183311,Google Phone,1,600,03/15/19 00:10,"327 12th St, Los Angeles, CA 90001" +183312,AAA Batteries (4-pack),2,2.99,03/28/19 07:04,"819 8th St, Atlanta, GA 30301" +183313,Apple Airpods Headphones,1,150,03/13/19 22:07,"275 Walnut St, Atlanta, GA 30301" +183314,AA Batteries (4-pack),1,3.84,03/12/19 23:30,"133 Cedar St, Atlanta, GA 30301" +183315,Lightning Charging Cable,1,14.95,03/12/19 12:14,"536 Lake St, New York City, NY 10001" +183316,34in Ultrawide Monitor,1,379.99,03/14/19 19:09,"444 Sunset St, Boston, MA 02215" +183317,Wired Headphones,1,11.99,03/16/19 12:08,"743 Park St, Los Angeles, CA 90001" +183318,Flatscreen TV,1,300,03/16/19 19:50,"21 Walnut St, Atlanta, GA 30301" +183319,AAA Batteries (4-pack),1,2.99,03/10/19 14:31,"848 Dogwood St, Austin, TX 73301" +183320,USB-C Charging Cable,1,11.95,03/20/19 03:50,"639 Willow St, San Francisco, CA 94016" +183321,Flatscreen TV,1,300,03/08/19 14:40,"655 North St, Los Angeles, CA 90001" +183322,iPhone,1,700,03/27/19 09:58,"800 Spruce St, San Francisco, CA 94016" +183323,Bose SoundSport Headphones,1,99.99,03/23/19 18:58,"116 Spruce St, Seattle, WA 98101" +183324,AAA Batteries (4-pack),1,2.99,03/18/19 09:52,"619 Johnson St, New York City, NY 10001" +183325,Wired Headphones,1,11.99,03/06/19 21:54,"260 Wilson St, Seattle, WA 98101" +183326,iPhone,1,700,03/17/19 00:57,"183 13th St, Boston, MA 02215" +183327,Wired Headphones,1,11.99,03/26/19 14:18,"26 Pine St, Austin, TX 73301" +183328,AA Batteries (4-pack),2,3.84,03/27/19 21:00,"551 Ridge St, San Francisco, CA 94016" +183329,USB-C Charging Cable,1,11.95,03/14/19 11:34,"528 North St, Boston, MA 02215" +183330,Lightning Charging Cable,1,14.95,03/29/19 15:17,"483 Forest St, New York City, NY 10001" +183331,AAA Batteries (4-pack),1,2.99,03/31/19 09:33,"320 Cedar St, San Francisco, CA 94016" +183332,AAA Batteries (4-pack),1,2.99,03/12/19 19:33,"253 Maple St, San Francisco, CA 94016" +183333,AAA Batteries (4-pack),1,2.99,03/29/19 13:41,"860 Jefferson St, San Francisco, CA 94016" +183334,Lightning Charging Cable,1,14.95,03/05/19 02:54,"830 River St, Dallas, TX 75001" +183335,AAA Batteries (4-pack),1,2.99,03/05/19 08:23,"695 Maple St, New York City, NY 10001" +183336,AA Batteries (4-pack),1,3.84,03/10/19 12:02,"31 West St, Dallas, TX 75001" +183337,Lightning Charging Cable,1,14.95,03/27/19 11:27,"971 Main St, Los Angeles, CA 90001" +183338,USB-C Charging Cable,1,11.95,03/01/19 19:13,"264 Hill St, Los Angeles, CA 90001" +183339,34in Ultrawide Monitor,1,379.99,03/30/19 09:09,"924 Park St, Los Angeles, CA 90001" +183340,AA Batteries (4-pack),1,3.84,03/17/19 17:28,"380 Cherry St, Atlanta, GA 30301" +183341,Flatscreen TV,1,300,03/21/19 12:36,"286 Jackson St, Atlanta, GA 30301" +183342,USB-C Charging Cable,1,11.95,03/27/19 18:31,"2 Hill St, San Francisco, CA 94016" +183343,Bose SoundSport Headphones,1,99.99,03/01/19 13:35,"948 7th St, San Francisco, CA 94016" +183344,AAA Batteries (4-pack),1,2.99,03/11/19 18:57,"653 Cedar St, New York City, NY 10001" +183345,Bose SoundSport Headphones,1,99.99,03/06/19 12:43,"569 9th St, Atlanta, GA 30301" +183346,AAA Batteries (4-pack),1,2.99,03/23/19 15:10,"639 Jefferson St, Boston, MA 02215" +183347,Wired Headphones,1,11.99,03/29/19 18:05,"985 14th St, Los Angeles, CA 90001" +183348,iPhone,1,700,03/19/19 19:32,"909 Pine St, Seattle, WA 98101" +183349,AA Batteries (4-pack),1,3.84,03/27/19 16:00,"404 River St, San Francisco, CA 94016" +183350,27in FHD Monitor,1,149.99,03/30/19 20:41,"254 Lake St, Austin, TX 73301" +183351,Flatscreen TV,1,300,03/27/19 10:57,"893 9th St, Boston, MA 02215" +183352,AAA Batteries (4-pack),1,2.99,03/19/19 13:42,"69 5th St, San Francisco, CA 94016" +183353,27in FHD Monitor,1,149.99,03/11/19 19:26,"572 Hickory St, New York City, NY 10001" +183354,AA Batteries (4-pack),1,3.84,03/13/19 08:32,"126 10th St, Atlanta, GA 30301" +183355,AA Batteries (4-pack),1,3.84,03/19/19 16:33,"267 4th St, San Francisco, CA 94016" +183356,AA Batteries (4-pack),1,3.84,03/28/19 09:36,"8 Meadow St, Boston, MA 02215" +183357,Wired Headphones,1,11.99,03/09/19 20:35,"604 Park St, Atlanta, GA 30301" +183358,USB-C Charging Cable,1,11.95,03/27/19 10:01,"328 Lincoln St, San Francisco, CA 94016" +183359,USB-C Charging Cable,2,11.95,03/09/19 16:37,"719 Lakeview St, Boston, MA 02215" +183360,AA Batteries (4-pack),1,3.84,03/12/19 15:16,"195 Jackson St, New York City, NY 10001" +183361,Apple Airpods Headphones,1,150,03/02/19 10:23,"730 Hill St, Boston, MA 02215" +183362,ThinkPad Laptop,1,999.99,03/02/19 20:41,"808 Church St, San Francisco, CA 94016" +183363,27in 4K Gaming Monitor,1,389.99,03/11/19 19:52,"937 13th St, Boston, MA 02215" +183364,AAA Batteries (4-pack),1,2.99,03/20/19 16:47,"85 South St, Boston, MA 02215" +183365,AA Batteries (4-pack),1,3.84,03/04/19 09:08,"195 Forest St, Dallas, TX 75001" +183366,AA Batteries (4-pack),1,3.84,03/08/19 21:25,"318 Cedar St, Atlanta, GA 30301" +183367,Lightning Charging Cable,1,14.95,03/01/19 11:42,"938 Hickory St, San Francisco, CA 94016" +183368,34in Ultrawide Monitor,1,379.99,04/01/19 00:07,"728 13th St, San Francisco, CA 94016" +183369,20in Monitor,1,109.99,03/15/19 17:06,"223 10th St, New York City, NY 10001" +183370,27in 4K Gaming Monitor,1,389.99,03/18/19 10:47,"658 14th St, Atlanta, GA 30301" +183371,USB-C Charging Cable,1,11.95,03/19/19 14:22,"611 4th St, New York City, NY 10001" +183372,LG Dryer,1,600.0,03/09/19 13:55,"563 2nd St, San Francisco, CA 94016" +183373,Flatscreen TV,1,300,03/12/19 02:29,"580 2nd St, Portland, OR 97035" +183374,Wired Headphones,1,11.99,03/17/19 11:53,"648 Forest St, Portland, OR 97035" +183375,USB-C Charging Cable,1,11.95,03/29/19 13:33,"623 Pine St, Los Angeles, CA 90001" +183376,Lightning Charging Cable,3,14.95,03/07/19 18:30,"793 Washington St, Seattle, WA 98101" +183377,Apple Airpods Headphones,1,150,03/17/19 08:14,"975 5th St, Dallas, TX 75001" +183378,Lightning Charging Cable,1,14.95,03/03/19 22:43,"337 Sunset St, San Francisco, CA 94016" +183379,27in 4K Gaming Monitor,1,389.99,03/22/19 17:12,"888 Madison St, Dallas, TX 75001" +183380,Lightning Charging Cable,1,14.95,03/21/19 02:26,"461 10th St, Boston, MA 02215" +183381,Lightning Charging Cable,1,14.95,03/02/19 12:53,"225 Spruce St, Portland, OR 97035" +183382,AAA Batteries (4-pack),1,2.99,03/02/19 19:36,"951 10th St, Los Angeles, CA 90001" +183383,Wired Headphones,1,11.99,03/21/19 12:00,"188 4th St, Boston, MA 02215" +183384,Wired Headphones,1,11.99,03/29/19 18:19,"401 Park St, Los Angeles, CA 90001" +183385,AAA Batteries (4-pack),1,2.99,03/04/19 09:23,"957 12th St, New York City, NY 10001" +183386,AAA Batteries (4-pack),1,2.99,03/18/19 18:30,"221 12th St, San Francisco, CA 94016" +183387,Wired Headphones,1,11.99,03/07/19 21:43,"501 11th St, San Francisco, CA 94016" +183388,AA Batteries (4-pack),1,3.84,03/25/19 15:04,"490 Highland St, Los Angeles, CA 90001" +183389,Wired Headphones,1,11.99,03/15/19 09:12,"244 Elm St, New York City, NY 10001" +183390,27in 4K Gaming Monitor,1,389.99,03/25/19 19:15,"240 Church St, Los Angeles, CA 90001" +183391,AA Batteries (4-pack),1,3.84,03/31/19 09:52,"353 6th St, New York City, NY 10001" +183391,27in 4K Gaming Monitor,1,389.99,03/31/19 09:52,"353 6th St, New York City, NY 10001" +183392,27in FHD Monitor,1,149.99,03/28/19 19:30,"450 11th St, New York City, NY 10001" +183393,USB-C Charging Cable,1,11.95,03/31/19 10:25,"469 Spruce St, Dallas, TX 75001" +183394,AA Batteries (4-pack),1,3.84,03/31/19 19:45,"964 River St, Atlanta, GA 30301" +183395,Bose SoundSport Headphones,1,99.99,03/09/19 08:19,"811 10th St, San Francisco, CA 94016" +183396,Flatscreen TV,1,300,03/09/19 23:38,"886 14th St, Seattle, WA 98101" +183397,34in Ultrawide Monitor,1,379.99,03/22/19 10:02,"295 Hill St, Austin, TX 73301" +183398,AA Batteries (4-pack),2,3.84,03/27/19 08:16,"597 Hickory St, Austin, TX 73301" +183399,Apple Airpods Headphones,1,150,03/01/19 19:18,"535 Elm St, Los Angeles, CA 90001" +183400,27in FHD Monitor,1,149.99,03/27/19 19:37,"350 Center St, Atlanta, GA 30301" +183401,27in 4K Gaming Monitor,1,389.99,03/04/19 20:00,"967 Spruce St, Los Angeles, CA 90001" +183402,AAA Batteries (4-pack),2,2.99,03/23/19 16:25,"449 Highland St, Boston, MA 02215" +183403,AA Batteries (4-pack),2,3.84,03/20/19 21:21,"80 Wilson St, San Francisco, CA 94016" +183404,AA Batteries (4-pack),2,3.84,03/02/19 21:23,"486 Spruce St, Dallas, TX 75001" +183405,27in 4K Gaming Monitor,1,389.99,03/13/19 17:26,"481 2nd St, Los Angeles, CA 90001" +183406,USB-C Charging Cable,1,11.95,03/05/19 21:54,"538 Hill St, San Francisco, CA 94016" +183407,27in 4K Gaming Monitor,1,389.99,03/31/19 18:01,"372 Spruce St, San Francisco, CA 94016" +183408,LG Washing Machine,1,600.0,03/21/19 00:34,"211 Lakeview St, Boston, MA 02215" +183409,iPhone,1,700,03/09/19 08:56,"137 Hickory St, Los Angeles, CA 90001" +183409,ThinkPad Laptop,1,999.99,03/09/19 08:56,"137 Hickory St, Los Angeles, CA 90001" +183410,AA Batteries (4-pack),2,3.84,03/30/19 20:01,"871 2nd St, Los Angeles, CA 90001" +183411,34in Ultrawide Monitor,1,379.99,03/17/19 07:04,"203 Willow St, Los Angeles, CA 90001" +183412,27in 4K Gaming Monitor,1,389.99,03/31/19 13:00,"836 7th St, San Francisco, CA 94016" +183413,Bose SoundSport Headphones,1,99.99,03/29/19 19:00,"622 Willow St, San Francisco, CA 94016" +183414,Lightning Charging Cable,1,14.95,03/12/19 23:15,"932 4th St, San Francisco, CA 94016" +183415,USB-C Charging Cable,1,11.95,03/28/19 20:30,"713 Elm St, Seattle, WA 98101" +183416,Wired Headphones,1,11.99,03/04/19 15:23,"372 Elm St, Portland, ME 04101" +183417,Apple Airpods Headphones,1,150,03/28/19 20:29,"291 Center St, San Francisco, CA 94016" +183418,Bose SoundSport Headphones,1,99.99,03/31/19 13:45,"56 5th St, Portland, ME 04101" +183419,AA Batteries (4-pack),3,3.84,03/04/19 10:49,"443 Elm St, Austin, TX 73301" +183420,AAA Batteries (4-pack),3,2.99,03/30/19 21:55,"74 1st St, San Francisco, CA 94016" +183421,AA Batteries (4-pack),2,3.84,03/27/19 15:41,"593 River St, Dallas, TX 75001" +183422,Google Phone,1,600,03/30/19 09:47,"175 Adams St, Los Angeles, CA 90001" +183422,USB-C Charging Cable,1,11.95,03/30/19 09:47,"175 Adams St, Los Angeles, CA 90001" +183422,Lightning Charging Cable,1,14.95,03/30/19 09:47,"175 Adams St, Los Angeles, CA 90001" +183423,Macbook Pro Laptop,1,1700,03/15/19 15:29,"327 Forest St, San Francisco, CA 94016" +183424,Bose SoundSport Headphones,1,99.99,03/26/19 07:59,"518 10th St, New York City, NY 10001" +183425,Bose SoundSport Headphones,1,99.99,03/24/19 10:57,"513 Wilson St, San Francisco, CA 94016" +183426,AAA Batteries (4-pack),1,2.99,03/16/19 10:43,"311 11th St, New York City, NY 10001" +183427,AAA Batteries (4-pack),1,2.99,03/10/19 13:14,"452 Cedar St, Boston, MA 02215" +183428,27in 4K Gaming Monitor,1,389.99,03/01/19 21:28,"727 14th St, Atlanta, GA 30301" +183429,AAA Batteries (4-pack),1,2.99,03/05/19 10:26,"412 Madison St, San Francisco, CA 94016" +183430,34in Ultrawide Monitor,1,379.99,03/27/19 15:39,"158 Park St, Boston, MA 02215" +183431,Wired Headphones,1,11.99,03/17/19 20:29,"588 8th St, Austin, TX 73301" +183432,Wired Headphones,1,11.99,03/14/19 21:13,"231 8th St, Boston, MA 02215" +183433,27in FHD Monitor,1,149.99,03/27/19 10:27,"424 9th St, Atlanta, GA 30301" +183434,20in Monitor,1,109.99,03/23/19 00:00,"452 Jefferson St, San Francisco, CA 94016" +183435,AAA Batteries (4-pack),1,2.99,03/27/19 10:48,"936 West St, Boston, MA 02215" +183436,34in Ultrawide Monitor,1,379.99,03/04/19 22:02,"792 Wilson St, Boston, MA 02215" +183437,AA Batteries (4-pack),1,3.84,03/22/19 15:57,"273 River St, Atlanta, GA 30301" +183437,iPhone,1,700,03/22/19 15:57,"273 River St, Atlanta, GA 30301" +183438,Wired Headphones,1,11.99,03/14/19 12:13,"94 10th St, Los Angeles, CA 90001" +183439,Bose SoundSport Headphones,1,99.99,03/24/19 19:12,"627 Willow St, Atlanta, GA 30301" +183440,AA Batteries (4-pack),1,3.84,03/12/19 18:44,"400 Hill St, San Francisco, CA 94016" +183441,Apple Airpods Headphones,1,150,03/15/19 09:00,"84 Maple St, San Francisco, CA 94016" +183442,AAA Batteries (4-pack),1,2.99,03/29/19 21:37,"275 8th St, San Francisco, CA 94016" +183443,Lightning Charging Cable,1,14.95,03/19/19 21:12,"98 Madison St, Boston, MA 02215" +183444,iPhone,1,700,03/16/19 06:44,"394 6th St, Boston, MA 02215" +183445,USB-C Charging Cable,1,11.95,03/01/19 18:54,"611 Sunset St, Dallas, TX 75001" +183446,USB-C Charging Cable,1,11.95,03/24/19 19:41,"167 14th St, Boston, MA 02215" +183447,Apple Airpods Headphones,1,150,03/15/19 08:49,"580 Lakeview St, Portland, OR 97035" +183448,USB-C Charging Cable,1,11.95,03/24/19 19:27,"272 Spruce St, Boston, MA 02215" +183449,Apple Airpods Headphones,1,150,03/31/19 12:53,"668 Sunset St, Boston, MA 02215" +183450,Vareebadd Phone,1,400,03/18/19 00:27,"377 4th St, Boston, MA 02215" +183450,Wired Headphones,1,11.99,03/18/19 00:27,"377 4th St, Boston, MA 02215" +183451,Bose SoundSport Headphones,1,99.99,03/31/19 17:47,"344 Adams St, Atlanta, GA 30301" +183452,Apple Airpods Headphones,1,150,03/06/19 07:08,"270 Spruce St, New York City, NY 10001" +183453,34in Ultrawide Monitor,1,379.99,03/23/19 17:24,"282 Hill St, Portland, OR 97035" +183454,Vareebadd Phone,1,400,03/28/19 04:07,"650 Walnut St, Portland, OR 97035" +183455,Wired Headphones,1,11.99,03/30/19 15:30,"517 Lakeview St, New York City, NY 10001" +183456,20in Monitor,1,109.99,03/06/19 23:58,"757 5th St, Boston, MA 02215" +183457,Wired Headphones,1,11.99,03/11/19 07:28,"150 Church St, San Francisco, CA 94016" +183458,Bose SoundSport Headphones,1,99.99,03/24/19 09:42,"891 2nd St, San Francisco, CA 94016" +183459,Bose SoundSport Headphones,1,99.99,03/13/19 18:23,"799 North St, Seattle, WA 98101" +183460,Vareebadd Phone,1,400,03/02/19 23:13,"770 Forest St, Boston, MA 02215" +183461,Bose SoundSport Headphones,1,99.99,03/28/19 18:29,"835 Ridge St, San Francisco, CA 94016" +183462,Wired Headphones,1,11.99,03/19/19 11:24,"399 Forest St, Boston, MA 02215" +183463,AA Batteries (4-pack),2,3.84,03/10/19 05:08,"509 Pine St, San Francisco, CA 94016" +183464,Google Phone,1,600,03/13/19 17:02,"793 Cherry St, Boston, MA 02215" +183464,USB-C Charging Cable,1,11.95,03/13/19 17:02,"793 Cherry St, Boston, MA 02215" +183465,Google Phone,1,600,03/14/19 01:57,"223 Park St, Los Angeles, CA 90001" +183466,Wired Headphones,1,11.99,03/23/19 19:30,"170 Walnut St, Los Angeles, CA 90001" +183467,27in 4K Gaming Monitor,1,389.99,03/28/19 12:41,"409 1st St, Boston, MA 02215" +183468,USB-C Charging Cable,1,11.95,03/13/19 19:37,"902 Maple St, Austin, TX 73301" +183469,AA Batteries (4-pack),1,3.84,03/09/19 21:18,"500 Lincoln St, Portland, OR 97035" +183470,27in FHD Monitor,1,149.99,03/23/19 17:45,"464 Willow St, San Francisco, CA 94016" +183471,AA Batteries (4-pack),1,3.84,03/20/19 15:47,"114 2nd St, San Francisco, CA 94016" +183472,Bose SoundSport Headphones,1,99.99,03/07/19 18:55,"61 Hickory St, Atlanta, GA 30301" +183473,Lightning Charging Cable,1,14.95,03/31/19 15:32,"3 South St, Atlanta, GA 30301" +183474,LG Dryer,1,600.0,03/15/19 15:56,"122 Jackson St, Austin, TX 73301" +183475,Apple Airpods Headphones,1,150,03/24/19 12:29,"326 Dogwood St, New York City, NY 10001" +183476,34in Ultrawide Monitor,1,379.99,03/20/19 04:30,"982 11th St, Austin, TX 73301" +183477,Wired Headphones,1,11.99,03/19/19 21:21,"751 Chestnut St, San Francisco, CA 94016" +183478,Lightning Charging Cable,1,14.95,03/10/19 15:29,"612 12th St, Seattle, WA 98101" +183479,20in Monitor,1,109.99,03/04/19 10:16,"306 Church St, New York City, NY 10001" +183480,AAA Batteries (4-pack),1,2.99,03/30/19 13:16,"202 Maple St, Atlanta, GA 30301" +183481,Flatscreen TV,1,300,03/16/19 21:08,"134 Lincoln St, Austin, TX 73301" +183482,27in FHD Monitor,1,149.99,03/25/19 07:00,"446 Wilson St, Los Angeles, CA 90001" +183483,AA Batteries (4-pack),1,3.84,03/10/19 21:59,"277 1st St, Austin, TX 73301" +183484,20in Monitor,1,109.99,03/14/19 21:23,"155 Center St, San Francisco, CA 94016" +183484,USB-C Charging Cable,1,11.95,03/14/19 21:23,"155 Center St, San Francisco, CA 94016" +183485,iPhone,1,700,03/05/19 14:49,"557 Cherry St, New York City, NY 10001" +183486,USB-C Charging Cable,1,11.95,03/25/19 06:21,"595 Cedar St, San Francisco, CA 94016" +183487,Lightning Charging Cable,1,14.95,03/11/19 08:10,"38 Cedar St, Austin, TX 73301" +183488,Apple Airpods Headphones,1,150,03/19/19 17:16,"777 Hill St, San Francisco, CA 94016" +183489,Apple Airpods Headphones,1,150,03/17/19 18:11,"800 Madison St, Dallas, TX 75001" +183490,AAA Batteries (4-pack),1,2.99,03/06/19 13:27,"405 Pine St, San Francisco, CA 94016" +183491,Apple Airpods Headphones,1,150,03/20/19 11:11,"565 Jefferson St, Seattle, WA 98101" +183492,Flatscreen TV,1,300,03/10/19 13:03,"196 Cherry St, San Francisco, CA 94016" +183493,AAA Batteries (4-pack),1,2.99,03/21/19 21:02,"575 Pine St, San Francisco, CA 94016" +183494,AA Batteries (4-pack),3,3.84,03/02/19 20:14,"627 North St, New York City, NY 10001" +183495,Lightning Charging Cable,1,14.95,03/02/19 12:30,"3 Elm St, San Francisco, CA 94016" +183496,AAA Batteries (4-pack),1,2.99,03/23/19 22:11,"299 Main St, New York City, NY 10001" +183497,iPhone,1,700,03/28/19 12:33,"871 Forest St, Seattle, WA 98101" +183498,AAA Batteries (4-pack),1,2.99,03/07/19 14:55,"431 11th St, Boston, MA 02215" +183499,Wired Headphones,1,11.99,03/07/19 13:07,"849 Sunset St, Boston, MA 02215" +183500,USB-C Charging Cable,1,11.95,03/17/19 09:37,"154 Center St, Dallas, TX 75001" +183501,34in Ultrawide Monitor,1,379.99,03/14/19 16:37,"110 Hill St, Los Angeles, CA 90001" +183502,Apple Airpods Headphones,1,150,03/29/19 16:29,"744 Washington St, Los Angeles, CA 90001" +183503,Apple Airpods Headphones,1,150,03/31/19 23:55,"491 Lakeview St, San Francisco, CA 94016" +183504,27in 4K Gaming Monitor,1,389.99,03/01/19 13:41,"456 West St, San Francisco, CA 94016" +183505,Lightning Charging Cable,1,14.95,03/04/19 10:24,"975 Main St, Dallas, TX 75001" +183506,AAA Batteries (4-pack),1,2.99,03/17/19 13:19,"190 Sunset St, New York City, NY 10001" +183507,USB-C Charging Cable,1,11.95,03/28/19 23:41,"616 13th St, San Francisco, CA 94016" +183508,USB-C Charging Cable,1,11.95,03/29/19 09:28,"571 9th St, Portland, OR 97035" +183509,Macbook Pro Laptop,1,1700,03/23/19 20:29,"366 Highland St, Los Angeles, CA 90001" +183510,Lightning Charging Cable,2,14.95,03/20/19 14:31,"819 South St, New York City, NY 10001" +183510,ThinkPad Laptop,1,999.99,03/20/19 14:31,"819 South St, New York City, NY 10001" +183511,20in Monitor,1,109.99,03/12/19 23:36,"57 South St, Austin, TX 73301" +183512,USB-C Charging Cable,1,11.95,03/04/19 18:32,"864 South St, San Francisco, CA 94016" +183513,Bose SoundSport Headphones,1,99.99,03/16/19 16:48,"372 Meadow St, Portland, ME 04101" +183514,27in FHD Monitor,1,149.99,03/14/19 12:43,"752 Spruce St, New York City, NY 10001" +183515,Bose SoundSport Headphones,1,99.99,03/01/19 13:10,"516 Hill St, New York City, NY 10001" +183516,AA Batteries (4-pack),1,3.84,03/01/19 11:17,"776 Chestnut St, Los Angeles, CA 90001" +183517,Lightning Charging Cable,1,14.95,03/01/19 14:59,"279 Center St, Atlanta, GA 30301" +183518,Lightning Charging Cable,1,14.95,03/12/19 10:18,"387 North St, Seattle, WA 98101" +183519,USB-C Charging Cable,1,11.95,04/01/19 02:23,"213 Cedar St, New York City, NY 10001" +183520,AA Batteries (4-pack),1,3.84,03/02/19 22:09,"815 Spruce St, San Francisco, CA 94016" +183521,AA Batteries (4-pack),1,3.84,03/01/19 07:53,"536 14th St, New York City, NY 10001" +183522,AA Batteries (4-pack),1,3.84,03/28/19 12:32,"539 Cedar St, Dallas, TX 75001" +183523,USB-C Charging Cable,1,11.95,03/30/19 19:26,"771 Johnson St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +183524,Apple Airpods Headphones,1,150,03/19/19 14:18,"548 4th St, Seattle, WA 98101" +183525,27in FHD Monitor,1,149.99,03/12/19 20:19,"400 13th St, Boston, MA 02215" +183526,Apple Airpods Headphones,1,150,03/29/19 19:53,"982 Ridge St, San Francisco, CA 94016" +183527,34in Ultrawide Monitor,1,379.99,03/12/19 23:47,"613 Elm St, San Francisco, CA 94016" +183528,Bose SoundSport Headphones,1,99.99,03/06/19 11:23,"478 5th St, San Francisco, CA 94016" +183528,AA Batteries (4-pack),1,3.84,03/06/19 11:23,"478 5th St, San Francisco, CA 94016" +183529,Wired Headphones,1,11.99,03/20/19 20:53,"624 Spruce St, San Francisco, CA 94016" +183530,iPhone,1,700,03/28/19 12:34,"687 12th St, San Francisco, CA 94016" +183530,Lightning Charging Cable,1,14.95,03/28/19 12:34,"687 12th St, San Francisco, CA 94016" +183531,AA Batteries (4-pack),3,3.84,03/31/19 21:53,"263 Center St, Los Angeles, CA 90001" +183532,20in Monitor,1,109.99,03/20/19 23:53,"699 Jefferson St, Atlanta, GA 30301" +183533,Lightning Charging Cable,1,14.95,03/28/19 12:29,"516 Lincoln St, Atlanta, GA 30301" +183534,AAA Batteries (4-pack),1,2.99,03/13/19 01:12,"581 7th St, Boston, MA 02215" +183535,USB-C Charging Cable,2,11.95,03/15/19 20:19,"492 Park St, San Francisco, CA 94016" +183536,Wired Headphones,1,11.99,03/04/19 15:08,"927 Meadow St, Austin, TX 73301" +183537,Apple Airpods Headphones,1,150,03/26/19 17:28,"228 14th St, Boston, MA 02215" +183538,USB-C Charging Cable,2,11.95,03/17/19 11:44,"63 Adams St, Austin, TX 73301" +183539,34in Ultrawide Monitor,1,379.99,03/02/19 16:48,"363 10th St, New York City, NY 10001" +183540,Apple Airpods Headphones,1,150,03/26/19 01:09,"327 Meadow St, Dallas, TX 75001" +183541,AAA Batteries (4-pack),1,2.99,03/12/19 11:14,"233 River St, Atlanta, GA 30301" +183542,Flatscreen TV,1,300,03/29/19 22:23,"2 Cherry St, San Francisco, CA 94016" +183543,AA Batteries (4-pack),1,3.84,03/06/19 22:45,"907 North St, Los Angeles, CA 90001" +183544,Flatscreen TV,1,300,03/08/19 17:22,"117 14th St, Seattle, WA 98101" +183545,iPhone,1,700,03/06/19 19:17,"945 Cherry St, Los Angeles, CA 90001" +183546,Apple Airpods Headphones,1,150,03/13/19 09:21,"474 Center St, Boston, MA 02215" +183547,Bose SoundSport Headphones,1,99.99,03/11/19 19:57,"193 8th St, San Francisco, CA 94016" +183548,AAA Batteries (4-pack),3,2.99,03/11/19 00:28,"148 Sunset St, Los Angeles, CA 90001" +183549,AA Batteries (4-pack),2,3.84,03/17/19 17:00,"431 Hill St, Atlanta, GA 30301" +,,,,, +183550,USB-C Charging Cable,1,11.95,03/06/19 08:25,"824 13th St, Seattle, WA 98101" +183550,AAA Batteries (4-pack),1,2.99,03/06/19 08:25,"824 13th St, Seattle, WA 98101" +183551,AA Batteries (4-pack),1,3.84,03/28/19 19:15,"887 6th St, San Francisco, CA 94016" +183552,Apple Airpods Headphones,1,150,03/02/19 18:58,"268 13th St, San Francisco, CA 94016" +183553,Apple Airpods Headphones,1,150,03/23/19 14:18,"616 South St, Atlanta, GA 30301" +183554,AAA Batteries (4-pack),2,2.99,03/11/19 13:29,"694 1st St, San Francisco, CA 94016" +183555,AA Batteries (4-pack),1,3.84,03/09/19 18:50,"767 Walnut St, Atlanta, GA 30301" +183556,LG Dryer,1,600.0,03/19/19 22:47,"272 Lakeview St, Dallas, TX 75001" +183557,27in 4K Gaming Monitor,1,389.99,03/30/19 15:58,"516 1st St, Portland, OR 97035" +183558,Bose SoundSport Headphones,1,99.99,03/14/19 06:47,"390 North St, Los Angeles, CA 90001" +183559,Bose SoundSport Headphones,1,99.99,03/01/19 11:29,"767 Hickory St, San Francisco, CA 94016" +183560,Flatscreen TV,1,300,03/08/19 13:07,"739 Hickory St, Los Angeles, CA 90001" +183561,Wired Headphones,1,11.99,03/15/19 15:10,"932 Highland St, Los Angeles, CA 90001" +183562,Bose SoundSport Headphones,1,99.99,03/24/19 23:37,"982 Willow St, San Francisco, CA 94016" +183563,Wired Headphones,1,11.99,03/09/19 22:06,"254 South St, Boston, MA 02215" +183564,Apple Airpods Headphones,1,150,03/29/19 21:45,"390 Lakeview St, New York City, NY 10001" +183565,Bose SoundSport Headphones,1,99.99,03/11/19 19:22,"728 Lakeview St, Seattle, WA 98101" +183566,USB-C Charging Cable,1,11.95,03/26/19 17:29,"570 Highland St, San Francisco, CA 94016" +183567,Lightning Charging Cable,1,14.95,03/08/19 09:26,"82 Meadow St, San Francisco, CA 94016" +183568,34in Ultrawide Monitor,1,379.99,03/24/19 19:49,"729 12th St, Dallas, TX 75001" +183569,Macbook Pro Laptop,1,1700,03/25/19 18:37,"881 Spruce St, Dallas, TX 75001" +183570,AAA Batteries (4-pack),1,2.99,03/24/19 09:23,"209 1st St, San Francisco, CA 94016" +183571,34in Ultrawide Monitor,1,379.99,03/12/19 19:51,"720 Madison St, Boston, MA 02215" +183572,Wired Headphones,1,11.99,03/03/19 15:27,"746 7th St, Los Angeles, CA 90001" +183573,Wired Headphones,1,11.99,03/01/19 16:25,"572 Hill St, Atlanta, GA 30301" +183574,20in Monitor,1,109.99,03/16/19 11:53,"995 Jefferson St, San Francisco, CA 94016" +183575,AAA Batteries (4-pack),2,2.99,03/21/19 20:41,"977 Cherry St, San Francisco, CA 94016" +183576,Lightning Charging Cable,1,14.95,03/08/19 11:55,"582 South St, New York City, NY 10001" +183577,Lightning Charging Cable,1,14.95,03/29/19 10:55,"352 Adams St, Seattle, WA 98101" +183578,AAA Batteries (4-pack),1,2.99,03/30/19 16:32,"912 River St, Atlanta, GA 30301" +183579,USB-C Charging Cable,1,11.95,03/02/19 15:50,"16 Johnson St, San Francisco, CA 94016" +183580,AA Batteries (4-pack),1,3.84,03/18/19 17:27,"115 Hickory St, Atlanta, GA 30301" +183580,AAA Batteries (4-pack),1,2.99,03/18/19 17:27,"115 Hickory St, Atlanta, GA 30301" +183581,USB-C Charging Cable,1,11.95,03/08/19 18:06,"415 West St, Boston, MA 02215" +183582,USB-C Charging Cable,1,11.95,03/04/19 11:59,"404 4th St, Seattle, WA 98101" +183583,Google Phone,1,600,03/08/19 20:02,"676 River St, New York City, NY 10001" +183584,AAA Batteries (4-pack),1,2.99,03/06/19 14:57,"130 Cherry St, Los Angeles, CA 90001" +183585,USB-C Charging Cable,2,11.95,03/16/19 07:06,"594 Spruce St, Dallas, TX 75001" +183586,Wired Headphones,1,11.99,03/14/19 13:22,"467 Lake St, San Francisco, CA 94016" +183587,Lightning Charging Cable,1,14.95,03/04/19 18:53,"146 7th St, New York City, NY 10001" +183588,27in FHD Monitor,1,149.99,03/02/19 12:41,"336 Wilson St, New York City, NY 10001" +183589,iPhone,1,700,03/30/19 09:50,"678 Hickory St, New York City, NY 10001" +183590,AA Batteries (4-pack),1,3.84,03/30/19 22:03,"620 Park St, Los Angeles, CA 90001" +183591,AAA Batteries (4-pack),2,2.99,03/25/19 09:33,"843 Elm St, Dallas, TX 75001" +183592,iPhone,1,700,03/23/19 11:34,"424 Jefferson St, New York City, NY 10001" +183593,AA Batteries (4-pack),1,3.84,03/10/19 10:41,"415 10th St, Seattle, WA 98101" +183594,iPhone,1,700,03/09/19 15:44,"961 Lincoln St, Seattle, WA 98101" +183595,AA Batteries (4-pack),1,3.84,03/04/19 23:14,"890 8th St, Los Angeles, CA 90001" +183596,iPhone,1,700,03/17/19 13:50,"886 Dogwood St, San Francisco, CA 94016" +183596,Lightning Charging Cable,1,14.95,03/17/19 13:50,"886 Dogwood St, San Francisco, CA 94016" +183597,AAA Batteries (4-pack),3,2.99,03/10/19 15:45,"929 Center St, Los Angeles, CA 90001" +183598,Bose SoundSport Headphones,1,99.99,03/16/19 23:25,"706 Cedar St, Portland, ME 04101" +183599,ThinkPad Laptop,1,999.99,03/28/19 17:27,"357 4th St, Seattle, WA 98101" +183600,Wired Headphones,1,11.99,03/15/19 20:52,"818 12th St, Los Angeles, CA 90001" +183601,Apple Airpods Headphones,1,150,03/14/19 19:53,"695 Madison St, Los Angeles, CA 90001" +183602,Apple Airpods Headphones,1,150,03/05/19 17:28,"34 Church St, Austin, TX 73301" +183603,AA Batteries (4-pack),2,3.84,03/13/19 19:22,"158 9th St, Austin, TX 73301" +183604,AA Batteries (4-pack),1,3.84,03/07/19 13:48,"548 11th St, Los Angeles, CA 90001" +183605,Apple Airpods Headphones,1,150,03/27/19 01:22,"324 Sunset St, Los Angeles, CA 90001" +183606,iPhone,1,700,03/21/19 13:37,"889 Hickory St, Los Angeles, CA 90001" +183607,AAA Batteries (4-pack),1,2.99,03/15/19 21:35,"827 Dogwood St, Seattle, WA 98101" +183608,iPhone,1,700,03/18/19 13:55,"106 2nd St, Boston, MA 02215" +183609,AAA Batteries (4-pack),1,2.99,03/05/19 08:29,"246 Highland St, Los Angeles, CA 90001" +183610,Vareebadd Phone,1,400,03/31/19 22:51,"550 Lakeview St, San Francisco, CA 94016" +183610,USB-C Charging Cable,1,11.95,03/31/19 22:51,"550 Lakeview St, San Francisco, CA 94016" +183611,Apple Airpods Headphones,1,150,03/03/19 18:29,"941 10th St, Portland, ME 04101" +183612,27in 4K Gaming Monitor,1,389.99,03/05/19 21:58,"735 Highland St, New York City, NY 10001" +183613,Wired Headphones,1,11.99,03/16/19 18:23,"603 Maple St, Boston, MA 02215" +183614,AAA Batteries (4-pack),1,2.99,03/24/19 20:12,"804 South St, Atlanta, GA 30301" +183615,34in Ultrawide Monitor,1,379.99,03/18/19 11:00,"816 Adams St, San Francisco, CA 94016" +183616,Lightning Charging Cable,1,14.95,03/06/19 12:59,"447 11th St, New York City, NY 10001" +183617,Wired Headphones,1,11.99,03/02/19 13:11,"471 Madison St, New York City, NY 10001" +183618,Wired Headphones,1,11.99,03/24/19 14:05,"635 1st St, New York City, NY 10001" +183619,Apple Airpods Headphones,1,150,03/09/19 18:06,"880 Park St, New York City, NY 10001" +183620,AAA Batteries (4-pack),1,2.99,03/30/19 11:42,"240 Pine St, Dallas, TX 75001" +183621,Bose SoundSport Headphones,1,99.99,03/15/19 22:38,"727 Pine St, Austin, TX 73301" +183622,AAA Batteries (4-pack),1,2.99,03/19/19 03:33,"685 North St, Los Angeles, CA 90001" +183623,34in Ultrawide Monitor,1,379.99,03/29/19 18:42,"343 Dogwood St, Boston, MA 02215" +183624,Bose SoundSport Headphones,1,99.99,03/29/19 13:24,"884 Jackson St, Atlanta, GA 30301" +183625,Flatscreen TV,1,300,03/31/19 09:47,"838 12th St, San Francisco, CA 94016" +183626,Bose SoundSport Headphones,1,99.99,03/01/19 21:41,"180 Center St, Dallas, TX 75001" +183627,Lightning Charging Cable,1,14.95,03/23/19 17:36,"328 Lakeview St, New York City, NY 10001" +183628,Lightning Charging Cable,2,14.95,03/30/19 19:16,"99 Elm St, Atlanta, GA 30301" +183629,AAA Batteries (4-pack),1,2.99,03/09/19 20:41,"557 Wilson St, Austin, TX 73301" +183630,USB-C Charging Cable,1,11.95,03/18/19 11:35,"1 9th St, New York City, NY 10001" +183631,34in Ultrawide Monitor,1,379.99,03/12/19 10:03,"316 River St, Seattle, WA 98101" +183632,AA Batteries (4-pack),2,3.84,03/05/19 00:45,"815 8th St, Seattle, WA 98101" +183633,AAA Batteries (4-pack),2,2.99,03/28/19 07:52,"345 Center St, Portland, OR 97035" +183634,Apple Airpods Headphones,1,150,03/19/19 15:33,"529 1st St, Seattle, WA 98101" +183635,Bose SoundSport Headphones,1,99.99,03/29/19 10:11,"70 Hickory St, Los Angeles, CA 90001" +183636,iPhone,1,700,03/21/19 00:41,"282 Wilson St, Atlanta, GA 30301" +183636,Wired Headphones,2,11.99,03/21/19 00:41,"282 Wilson St, Atlanta, GA 30301" +183637,AA Batteries (4-pack),1,3.84,03/05/19 14:04,"886 Lakeview St, San Francisco, CA 94016" +,,,,, +183638,AAA Batteries (4-pack),1,2.99,03/05/19 23:28,"570 Pine St, Portland, OR 97035" +183639,Apple Airpods Headphones,1,150,03/13/19 20:07,"43 12th St, Austin, TX 73301" +183640,Google Phone,1,600,03/11/19 16:34,"931 Pine St, New York City, NY 10001" +183641,Macbook Pro Laptop,1,1700,03/01/19 23:26,"131 Sunset St, Atlanta, GA 30301" +183642,Lightning Charging Cable,1,14.95,03/07/19 06:41,"938 Wilson St, Atlanta, GA 30301" +183643,AAA Batteries (4-pack),1,2.99,03/31/19 09:05,"298 Hickory St, New York City, NY 10001" +183644,Vareebadd Phone,1,400,03/19/19 20:23,"533 Cherry St, Boston, MA 02215" +183645,AAA Batteries (4-pack),1,2.99,03/21/19 11:50,"237 Washington St, San Francisco, CA 94016" +183646,Wired Headphones,1,11.99,03/27/19 16:31,"629 8th St, Seattle, WA 98101" +183647,USB-C Charging Cable,1,11.95,03/07/19 22:23,"722 Chestnut St, Seattle, WA 98101" +183648,27in 4K Gaming Monitor,1,389.99,03/07/19 14:42,"318 6th St, Austin, TX 73301" +183649,34in Ultrawide Monitor,1,379.99,03/27/19 08:25,"115 Lake St, Boston, MA 02215" +183650,Apple Airpods Headphones,1,150,03/18/19 19:48,"447 Lakeview St, Dallas, TX 75001" +183651,AA Batteries (4-pack),2,3.84,03/09/19 18:07,"335 Washington St, New York City, NY 10001" +183652,Flatscreen TV,1,300,03/14/19 12:50,"339 Johnson St, San Francisco, CA 94016" +183653,Bose SoundSport Headphones,1,99.99,03/14/19 07:57,"524 6th St, Dallas, TX 75001" +183654,Lightning Charging Cable,1,14.95,03/27/19 21:33,"964 Walnut St, Los Angeles, CA 90001" +183655,AA Batteries (4-pack),1,3.84,03/12/19 17:26,"296 Cedar St, New York City, NY 10001" +183656,iPhone,1,700,03/19/19 13:06,"991 Cedar St, San Francisco, CA 94016" +183657,AAA Batteries (4-pack),2,2.99,03/08/19 09:46,"377 12th St, Boston, MA 02215" +183658,AA Batteries (4-pack),1,3.84,03/29/19 16:47,"784 Washington St, San Francisco, CA 94016" +183659,Google Phone,1,600,03/15/19 01:22,"284 Maple St, Seattle, WA 98101" +183660,27in 4K Gaming Monitor,1,389.99,03/03/19 01:36,"946 Church St, New York City, NY 10001" +183661,AA Batteries (4-pack),2,3.84,03/12/19 09:57,"59 4th St, Los Angeles, CA 90001" +183662,Bose SoundSport Headphones,1,99.99,03/19/19 15:26,"472 Willow St, San Francisco, CA 94016" +183663,AAA Batteries (4-pack),3,2.99,03/14/19 20:54,"22 Lincoln St, Austin, TX 73301" +183664,27in FHD Monitor,1,149.99,03/08/19 18:50,"772 11th St, Dallas, TX 75001" +183665,Lightning Charging Cable,1,14.95,03/08/19 18:09,"671 12th St, Dallas, TX 75001" +183666,Macbook Pro Laptop,1,1700,03/28/19 02:17,"452 Cedar St, San Francisco, CA 94016" +183667,Lightning Charging Cable,1,14.95,03/15/19 07:50,"657 Hickory St, San Francisco, CA 94016" +183668,USB-C Charging Cable,1,11.95,03/13/19 14:30,"169 Forest St, Los Angeles, CA 90001" +183669,USB-C Charging Cable,1,11.95,03/16/19 22:37,"273 14th St, New York City, NY 10001" +183670,AAA Batteries (4-pack),2,2.99,03/25/19 06:12,"595 14th St, Los Angeles, CA 90001" +183671,Lightning Charging Cable,1,14.95,03/13/19 20:15,"605 12th St, Los Angeles, CA 90001" +183672,Wired Headphones,1,11.99,03/04/19 08:47,"810 Maple St, New York City, NY 10001" +183673,34in Ultrawide Monitor,1,379.99,03/03/19 13:01,"494 Adams St, Atlanta, GA 30301" +183674,Wired Headphones,1,11.99,03/26/19 22:27,"421 Wilson St, Dallas, TX 75001" +183675,AAA Batteries (4-pack),2,2.99,03/08/19 09:20,"617 8th St, San Francisco, CA 94016" +183676,AA Batteries (4-pack),2,3.84,03/19/19 09:02,"613 2nd St, Austin, TX 73301" +183677,Apple Airpods Headphones,1,150,03/30/19 22:36,"808 Hill St, Los Angeles, CA 90001" +183678,Wired Headphones,1,11.99,03/08/19 08:20,"886 12th St, Los Angeles, CA 90001" +183679,Wired Headphones,1,11.99,03/16/19 14:59,"920 Cherry St, Austin, TX 73301" +183680,Wired Headphones,1,11.99,03/31/19 10:39,"748 Johnson St, Portland, OR 97035" +183681,Bose SoundSport Headphones,1,99.99,03/07/19 09:38,"297 Wilson St, San Francisco, CA 94016" +183682,AA Batteries (4-pack),3,3.84,03/16/19 20:16,"897 Jackson St, Atlanta, GA 30301" +183683,iPhone,1,700,03/29/19 01:40,"873 Jackson St, Boston, MA 02215" +183683,Lightning Charging Cable,1,14.95,03/29/19 01:40,"873 Jackson St, Boston, MA 02215" +183684,Apple Airpods Headphones,1,150,03/31/19 20:23,"76 Jackson St, Los Angeles, CA 90001" +183685,Wired Headphones,1,11.99,03/11/19 17:18,"280 Spruce St, Austin, TX 73301" +183686,AAA Batteries (4-pack),1,2.99,03/07/19 19:32,"876 Dogwood St, Los Angeles, CA 90001" +183687,Flatscreen TV,1,300,03/29/19 17:44,"866 Main St, Portland, OR 97035" +183688,Vareebadd Phone,1,400,03/09/19 20:52,"149 Maple St, San Francisco, CA 94016" +183688,USB-C Charging Cable,1,11.95,03/09/19 20:52,"149 Maple St, San Francisco, CA 94016" +183689,AA Batteries (4-pack),1,3.84,03/21/19 08:01,"315 Park St, San Francisco, CA 94016" +183690,Google Phone,1,600,03/09/19 08:52,"869 Center St, San Francisco, CA 94016" +183690,USB-C Charging Cable,1,11.95,03/09/19 08:52,"869 Center St, San Francisco, CA 94016" +183691,Bose SoundSport Headphones,1,99.99,03/08/19 21:09,"351 6th St, New York City, NY 10001" +183692,AAA Batteries (4-pack),2,2.99,03/19/19 11:11,"538 West St, Boston, MA 02215" +183693,Wired Headphones,1,11.99,03/13/19 09:23,"541 1st St, Seattle, WA 98101" +183694,Bose SoundSport Headphones,1,99.99,03/16/19 22:13,"150 8th St, Atlanta, GA 30301" +183694,Wired Headphones,1,11.99,03/16/19 22:13,"150 8th St, Atlanta, GA 30301" +183695,Apple Airpods Headphones,1,150,03/29/19 10:23,"663 Cedar St, San Francisco, CA 94016" +183696,AA Batteries (4-pack),1,3.84,03/09/19 12:10,"206 Jackson St, Los Angeles, CA 90001" +183697,Apple Airpods Headphones,1,150,03/17/19 12:19,"862 Wilson St, Seattle, WA 98101" +183698,Apple Airpods Headphones,1,150,03/02/19 18:28,"285 13th St, Los Angeles, CA 90001" +183699,Bose SoundSport Headphones,1,99.99,03/14/19 13:34,"528 12th St, Boston, MA 02215" +183700,27in FHD Monitor,1,149.99,03/18/19 21:11,"719 Hickory St, Atlanta, GA 30301" +183701,Bose SoundSport Headphones,1,99.99,03/12/19 23:10,"432 Center St, New York City, NY 10001" +183702,Bose SoundSport Headphones,1,99.99,03/28/19 08:58,"26 West St, Boston, MA 02215" +183703,AAA Batteries (4-pack),2,2.99,03/14/19 10:43,"165 Lake St, New York City, NY 10001" +183704,27in FHD Monitor,1,149.99,03/20/19 15:00,"285 Meadow St, Seattle, WA 98101" +183705,AA Batteries (4-pack),3,3.84,03/13/19 08:01,"866 11th St, Portland, OR 97035" +183706,Bose SoundSport Headphones,1,99.99,03/31/19 22:28,"473 Ridge St, Boston, MA 02215" +183707,Apple Airpods Headphones,1,150,03/18/19 20:20,"980 Washington St, San Francisco, CA 94016" +183708,Bose SoundSport Headphones,1,99.99,03/06/19 19:04,"130 Cedar St, New York City, NY 10001" +183709,Lightning Charging Cable,1,14.95,03/06/19 11:42,"592 Jefferson St, San Francisco, CA 94016" +183710,Wired Headphones,1,11.99,03/16/19 17:39,"29 Willow St, Dallas, TX 75001" +183711,AA Batteries (4-pack),3,3.84,03/09/19 18:24,"489 Madison St, New York City, NY 10001" +183712,AA Batteries (4-pack),1,3.84,03/29/19 15:40,"84 2nd St, New York City, NY 10001" +183713,AA Batteries (4-pack),1,3.84,03/17/19 10:38,"541 Forest St, Austin, TX 73301" +183714,27in FHD Monitor,1,149.99,03/11/19 14:15,"446 Center St, San Francisco, CA 94016" +183715,Bose SoundSport Headphones,1,99.99,03/14/19 21:52,"871 8th St, Boston, MA 02215" +183716,AAA Batteries (4-pack),2,2.99,03/28/19 12:44,"84 Hill St, Los Angeles, CA 90001" +183717,Apple Airpods Headphones,1,150,03/08/19 20:05,"31 South St, San Francisco, CA 94016" +183718,Apple Airpods Headphones,1,150,03/06/19 23:39,"190 Wilson St, Los Angeles, CA 90001" +183719,Bose SoundSport Headphones,1,99.99,03/20/19 12:44,"155 Madison St, Seattle, WA 98101" +183720,LG Washing Machine,1,600.0,03/24/19 13:02,"548 2nd St, Los Angeles, CA 90001" +183721,AAA Batteries (4-pack),3,2.99,03/21/19 16:25,"315 Dogwood St, Austin, TX 73301" +183722,Lightning Charging Cable,1,14.95,03/05/19 13:46,"972 Church St, Atlanta, GA 30301" +183723,AAA Batteries (4-pack),1,2.99,03/07/19 01:46,"707 Lakeview St, San Francisco, CA 94016" +183724,Macbook Pro Laptop,1,1700,03/18/19 12:19,"934 12th St, Austin, TX 73301" +183725,USB-C Charging Cable,1,11.95,03/15/19 22:38,"301 Johnson St, Los Angeles, CA 90001" +183726,Lightning Charging Cable,1,14.95,03/19/19 22:16,"990 Elm St, San Francisco, CA 94016" +183727,AA Batteries (4-pack),1,3.84,03/23/19 12:06,"211 Ridge St, Boston, MA 02215" +183728,AAA Batteries (4-pack),1,2.99,03/12/19 12:20,"277 13th St, Boston, MA 02215" +183729,AA Batteries (4-pack),1,3.84,03/01/19 22:01,"575 5th St, New York City, NY 10001" +183730,Apple Airpods Headphones,1,150,03/16/19 21:45,"157 Forest St, New York City, NY 10001" +183731,Wired Headphones,1,11.99,03/10/19 20:58,"297 Willow St, Dallas, TX 75001" +183732,Macbook Pro Laptop,1,1700,03/21/19 15:04,"614 1st St, Boston, MA 02215" +183733,Bose SoundSport Headphones,1,99.99,03/05/19 15:40,"542 Ridge St, San Francisco, CA 94016" +183734,Apple Airpods Headphones,1,150,03/06/19 14:54,"453 Park St, Boston, MA 02215" +183735,Bose SoundSport Headphones,1,99.99,03/23/19 20:22,"10 8th St, Boston, MA 02215" +183736,USB-C Charging Cable,2,11.95,03/16/19 10:59,"146 12th St, Seattle, WA 98101" +183737,Bose SoundSport Headphones,1,99.99,03/03/19 09:56,"163 Meadow St, New York City, NY 10001" +183738,20in Monitor,1,109.99,03/17/19 18:29,"900 River St, San Francisco, CA 94016" +183739,USB-C Charging Cable,2,11.95,03/25/19 07:33,"545 Park St, Los Angeles, CA 90001" +183740,AAA Batteries (4-pack),1,2.99,03/19/19 19:12,"646 Walnut St, Seattle, WA 98101" +183741,20in Monitor,1,109.99,03/06/19 19:44,"443 Jackson St, Dallas, TX 75001" +183742,Lightning Charging Cable,1,14.95,03/22/19 21:49,"163 6th St, San Francisco, CA 94016" +183743,iPhone,1,700,03/13/19 10:02,"46 Dogwood St, New York City, NY 10001" +183744,Vareebadd Phone,1,400,03/05/19 11:15,"57 10th St, Boston, MA 02215" +183744,Bose SoundSport Headphones,1,99.99,03/05/19 11:15,"57 10th St, Boston, MA 02215" +183745,Bose SoundSport Headphones,1,99.99,03/07/19 12:28,"246 Adams St, Seattle, WA 98101" +183746,Lightning Charging Cable,1,14.95,03/29/19 18:43,"608 Dogwood St, San Francisco, CA 94016" +183747,ThinkPad Laptop,1,999.99,03/09/19 10:24,"236 Adams St, Seattle, WA 98101" +183748,AA Batteries (4-pack),1,3.84,03/26/19 14:23,"169 River St, San Francisco, CA 94016" +183749,27in FHD Monitor,1,149.99,03/12/19 10:55,"489 Church St, San Francisco, CA 94016" +183750,Wired Headphones,1,11.99,03/20/19 21:08,"39 Maple St, New York City, NY 10001" +183751,Flatscreen TV,1,300,03/16/19 00:43,"31 Cherry St, New York City, NY 10001" +183752,iPhone,1,700,03/10/19 15:51,"58 Lincoln St, New York City, NY 10001" +183753,Bose SoundSport Headphones,1,99.99,03/07/19 09:26,"462 Lakeview St, Los Angeles, CA 90001" +183754,Apple Airpods Headphones,1,150,03/27/19 23:40,"990 Hickory St, Austin, TX 73301" +183755,ThinkPad Laptop,1,999.99,03/05/19 18:39,"824 Cedar St, Portland, OR 97035" +183756,Bose SoundSport Headphones,1,99.99,03/08/19 18:43,"745 Chestnut St, Atlanta, GA 30301" +183757,AAA Batteries (4-pack),1,2.99,03/24/19 08:31,"785 5th St, San Francisco, CA 94016" +183758,Wired Headphones,1,11.99,03/12/19 13:21,"229 Willow St, San Francisco, CA 94016" +183759,AA Batteries (4-pack),1,3.84,03/05/19 12:34,"323 Park St, Portland, OR 97035" +183759,Google Phone,1,600,03/05/19 12:34,"323 Park St, Portland, OR 97035" +183760,Apple Airpods Headphones,1,150,03/05/19 18:01,"432 Cherry St, Seattle, WA 98101" +183761,AA Batteries (4-pack),1,3.84,03/05/19 20:44,"491 Church St, Boston, MA 02215" +183762,Wired Headphones,1,11.99,03/06/19 23:06,"169 Madison St, Austin, TX 73301" +183763,AA Batteries (4-pack),1,3.84,03/18/19 08:48,"104 6th St, Atlanta, GA 30301" +183764,Apple Airpods Headphones,1,150,03/31/19 10:13,"197 Hickory St, Portland, OR 97035" +183765,27in FHD Monitor,1,149.99,03/15/19 15:41,"680 9th St, New York City, NY 10001" +183766,27in 4K Gaming Monitor,1,389.99,03/12/19 22:29,"718 North St, Los Angeles, CA 90001" +183767,27in FHD Monitor,1,149.99,03/05/19 19:35,"174 11th St, Boston, MA 02215" +183767,Wired Headphones,1,11.99,03/05/19 19:35,"174 11th St, Boston, MA 02215" +183768,Bose SoundSport Headphones,1,99.99,03/02/19 21:43,"562 Pine St, Los Angeles, CA 90001" +183769,Apple Airpods Headphones,1,150,03/26/19 20:52,"369 13th St, San Francisco, CA 94016" +183770,Lightning Charging Cable,1,14.95,03/30/19 20:06,"947 Hill St, Dallas, TX 75001" +183771,27in 4K Gaming Monitor,1,389.99,03/13/19 17:59,"104 8th St, Los Angeles, CA 90001" +183772,USB-C Charging Cable,1,11.95,03/14/19 11:52,"639 River St, San Francisco, CA 94016" +183773,Wired Headphones,1,11.99,03/21/19 00:13,"666 Wilson St, Los Angeles, CA 90001" +183774,27in FHD Monitor,1,149.99,03/16/19 13:10,"702 Walnut St, Austin, TX 73301" +183775,USB-C Charging Cable,1,11.95,03/18/19 17:28,"392 Main St, San Francisco, CA 94016" +183776,AA Batteries (4-pack),1,3.84,03/21/19 01:02,"955 7th St, Los Angeles, CA 90001" +183777,27in FHD Monitor,1,149.99,03/13/19 10:35,"92 Lake St, Portland, OR 97035" +183778,34in Ultrawide Monitor,1,379.99,03/13/19 12:53,"143 Walnut St, Boston, MA 02215" +183779,USB-C Charging Cable,1,11.95,03/03/19 02:22,"323 9th St, Portland, OR 97035" +183780,34in Ultrawide Monitor,1,379.99,03/08/19 19:36,"127 Church St, San Francisco, CA 94016" +183780,27in 4K Gaming Monitor,1,389.99,03/08/19 19:36,"127 Church St, San Francisco, CA 94016" +183781,Lightning Charging Cable,1,14.95,03/21/19 18:12,"54 Spruce St, Los Angeles, CA 90001" +183782,Apple Airpods Headphones,1,150,03/23/19 08:43,"763 Cedar St, Atlanta, GA 30301" +183783,USB-C Charging Cable,1,11.95,03/16/19 20:14,"984 14th St, San Francisco, CA 94016" +183784,Apple Airpods Headphones,1,150,03/05/19 19:44,"175 11th St, Austin, TX 73301" +183785,Bose SoundSport Headphones,1,99.99,03/12/19 11:55,"45 Willow St, New York City, NY 10001" +183786,Google Phone,1,600,03/28/19 20:12,"918 Madison St, New York City, NY 10001" +183787,AA Batteries (4-pack),2,3.84,03/05/19 21:44,"476 Forest St, Dallas, TX 75001" +183788,27in 4K Gaming Monitor,1,389.99,03/01/19 15:31,"379 Jefferson St, San Francisco, CA 94016" +183789,Google Phone,1,600,03/05/19 12:55,"849 Center St, Boston, MA 02215" +183790,Bose SoundSport Headphones,1,99.99,03/09/19 10:34,"101 River St, San Francisco, CA 94016" +183791,Lightning Charging Cable,1,14.95,03/23/19 13:46,"264 Cherry St, San Francisco, CA 94016" +183792,Lightning Charging Cable,1,14.95,03/09/19 17:11,"823 Forest St, San Francisco, CA 94016" +183793,Wired Headphones,1,11.99,03/29/19 10:47,"685 Park St, New York City, NY 10001" +183794,ThinkPad Laptop,1,999.99,03/01/19 15:17,"991 Main St, Seattle, WA 98101" +183795,USB-C Charging Cable,1,11.95,03/15/19 07:38,"506 Hill St, Portland, ME 04101" +183796,Lightning Charging Cable,1,14.95,03/02/19 08:57,"480 Cherry St, San Francisco, CA 94016" +183797,USB-C Charging Cable,1,11.95,03/18/19 00:42,"584 Lakeview St, Portland, OR 97035" +183798,34in Ultrawide Monitor,1,379.99,03/10/19 09:47,"363 Cherry St, Austin, TX 73301" +183799,Wired Headphones,1,11.99,03/01/19 18:10,"619 8th St, Seattle, WA 98101" +183800,USB-C Charging Cable,1,11.95,03/19/19 20:17,"131 Main St, Boston, MA 02215" +183801,USB-C Charging Cable,1,11.95,03/03/19 17:29,"306 Lincoln St, Atlanta, GA 30301" +183802,27in 4K Gaming Monitor,1,389.99,03/07/19 22:02,"115 Johnson St, San Francisco, CA 94016" +183803,Google Phone,1,600,03/22/19 09:03,"28 Ridge St, Portland, ME 04101" +183804,Lightning Charging Cable,1,14.95,03/16/19 05:32,"736 8th St, Austin, TX 73301" +183804,Macbook Pro Laptop,1,1700,03/16/19 05:32,"736 8th St, Austin, TX 73301" +183805,27in 4K Gaming Monitor,1,389.99,03/18/19 21:15,"872 Jefferson St, Los Angeles, CA 90001" +183806,Wired Headphones,1,11.99,03/11/19 11:36,"881 Dogwood St, Portland, ME 04101" +183807,Lightning Charging Cable,2,14.95,03/10/19 23:52,"937 River St, Boston, MA 02215" +183808,Bose SoundSport Headphones,1,99.99,03/24/19 19:32,"299 13th St, San Francisco, CA 94016" +183809,Lightning Charging Cable,1,14.95,03/20/19 11:03,"333 Johnson St, Portland, OR 97035" +183810,USB-C Charging Cable,1,11.95,03/15/19 10:16,"955 Cedar St, San Francisco, CA 94016" +183811,USB-C Charging Cable,1,11.95,03/29/19 13:12,"760 2nd St, Seattle, WA 98101" +183812,USB-C Charging Cable,1,11.95,03/07/19 16:55,"384 Cedar St, San Francisco, CA 94016" +183813,AAA Batteries (4-pack),2,2.99,03/15/19 05:05,"803 Madison St, San Francisco, CA 94016" +183814,AAA Batteries (4-pack),1,2.99,03/01/19 09:02,"732 2nd St, San Francisco, CA 94016" +183815,Lightning Charging Cable,1,14.95,03/31/19 11:12,"291 Washington St, Los Angeles, CA 90001" +183816,AA Batteries (4-pack),1,3.84,03/18/19 20:38,"214 Highland St, Atlanta, GA 30301" +183817,AA Batteries (4-pack),1,3.84,03/02/19 16:18,"851 Walnut St, Boston, MA 02215" +183818,USB-C Charging Cable,1,11.95,03/09/19 17:09,"82 Hill St, New York City, NY 10001" +183819,AAA Batteries (4-pack),1,2.99,03/18/19 09:13,"846 2nd St, Boston, MA 02215" +183820,27in FHD Monitor,1,149.99,03/19/19 00:38,"62 Hill St, Boston, MA 02215" +183821,ThinkPad Laptop,1,999.99,03/05/19 21:52,"676 6th St, San Francisco, CA 94016" +183822,Apple Airpods Headphones,1,150,03/16/19 09:35,"893 8th St, San Francisco, CA 94016" +183823,Apple Airpods Headphones,1,150,03/20/19 16:23,"209 14th St, Los Angeles, CA 90001" +183824,34in Ultrawide Monitor,1,379.99,03/24/19 09:09,"777 North St, San Francisco, CA 94016" +183825,AA Batteries (4-pack),3,3.84,03/19/19 19:04,"606 Johnson St, Seattle, WA 98101" +183826,Lightning Charging Cable,1,14.95,03/26/19 14:48,"551 Maple St, New York City, NY 10001" +183827,USB-C Charging Cable,1,11.95,03/14/19 09:19,"875 1st St, Boston, MA 02215" +183828,AA Batteries (4-pack),1,3.84,03/07/19 13:28,"988 Lincoln St, San Francisco, CA 94016" +183829,Bose SoundSport Headphones,1,99.99,03/09/19 08:13,"3 13th St, New York City, NY 10001" +183830,Wired Headphones,1,11.99,03/12/19 11:33,"479 Lakeview St, Boston, MA 02215" +183831,34in Ultrawide Monitor,1,379.99,03/17/19 17:04,"519 Meadow St, Austin, TX 73301" +183832,ThinkPad Laptop,1,999.99,03/13/19 18:58,"400 11th St, New York City, NY 10001" +183833,Apple Airpods Headphones,1,150,03/09/19 15:18,"405 Cherry St, New York City, NY 10001" +183833,27in 4K Gaming Monitor,1,389.99,03/09/19 15:18,"405 Cherry St, New York City, NY 10001" +183834,Vareebadd Phone,1,400,03/16/19 22:09,"386 Lake St, San Francisco, CA 94016" +183835,Bose SoundSport Headphones,1,99.99,03/18/19 18:51,"595 4th St, Los Angeles, CA 90001" +183836,Apple Airpods Headphones,1,150,03/27/19 18:59,"761 Dogwood St, Boston, MA 02215" +183837,Bose SoundSport Headphones,1,99.99,03/28/19 13:27,"804 Church St, Boston, MA 02215" +183838,AAA Batteries (4-pack),2,2.99,03/31/19 18:58,"658 Jefferson St, Dallas, TX 75001" +183839,AAA Batteries (4-pack),2,2.99,03/30/19 11:28,"163 11th St, Austin, TX 73301" +183840,Wired Headphones,1,11.99,03/14/19 10:07,"903 Cedar St, San Francisco, CA 94016" +183841,USB-C Charging Cable,1,11.95,03/16/19 12:31,"136 Meadow St, Seattle, WA 98101" +183842,ThinkPad Laptop,1,999.99,03/29/19 11:48,"98 Chestnut St, Los Angeles, CA 90001" +183843,Lightning Charging Cable,2,14.95,03/05/19 20:38,"865 Chestnut St, Dallas, TX 75001" +183844,iPhone,1,700,03/21/19 09:22,"572 6th St, Boston, MA 02215" +183844,Lightning Charging Cable,1,14.95,03/21/19 09:22,"572 6th St, Boston, MA 02215" +183845,Apple Airpods Headphones,1,150,03/27/19 19:29,"735 North St, Dallas, TX 75001" +183846,USB-C Charging Cable,1,11.95,03/06/19 16:26,"541 Sunset St, New York City, NY 10001" +183847,Bose SoundSport Headphones,1,99.99,03/10/19 16:43,"609 Walnut St, Boston, MA 02215" +183848,Wired Headphones,1,11.99,03/21/19 14:16,"105 Forest St, Los Angeles, CA 90001" +183849,Bose SoundSport Headphones,1,99.99,03/06/19 14:02,"795 6th St, Portland, OR 97035" +183850,AAA Batteries (4-pack),2,2.99,03/04/19 13:54,"294 4th St, San Francisco, CA 94016" +183851,Lightning Charging Cable,1,14.95,03/31/19 11:08,"167 Forest St, New York City, NY 10001" +183852,USB-C Charging Cable,1,11.95,03/09/19 18:57,"400 Sunset St, Austin, TX 73301" +183853,Lightning Charging Cable,1,14.95,03/02/19 15:57,"554 Church St, Atlanta, GA 30301" +183854,USB-C Charging Cable,1,11.95,03/31/19 23:13,"601 Lincoln St, Portland, OR 97035" +183855,Lightning Charging Cable,1,14.95,03/09/19 16:20,"161 River St, San Francisco, CA 94016" +183856,AAA Batteries (4-pack),1,2.99,03/21/19 17:51,"523 Pine St, Atlanta, GA 30301" +183857,Lightning Charging Cable,2,14.95,03/25/19 14:23,"988 4th St, Boston, MA 02215" +183858,34in Ultrawide Monitor,1,379.99,03/27/19 00:32,"992 North St, San Francisco, CA 94016" +183859,USB-C Charging Cable,1,11.95,03/25/19 12:03,"28 Washington St, Los Angeles, CA 90001" +183860,AAA Batteries (4-pack),1,2.99,03/24/19 23:21,"170 7th St, Los Angeles, CA 90001" +183861,Macbook Pro Laptop,1,1700,03/02/19 05:11,"248 Lakeview St, San Francisco, CA 94016" +183862,USB-C Charging Cable,2,11.95,03/12/19 16:40,"960 7th St, New York City, NY 10001" +183863,27in FHD Monitor,1,149.99,03/26/19 13:50,"123 10th St, Seattle, WA 98101" +183864,AAA Batteries (4-pack),5,2.99,03/29/19 21:57,"758 Dogwood St, New York City, NY 10001" +183865,Vareebadd Phone,1,400,03/31/19 17:33,"258 Meadow St, Seattle, WA 98101" +183866,AAA Batteries (4-pack),1,2.99,03/21/19 21:02,"97 Meadow St, San Francisco, CA 94016" +183867,Bose SoundSport Headphones,1,99.99,03/24/19 23:46,"119 1st St, San Francisco, CA 94016" +183868,Google Phone,1,600,03/26/19 14:12,"635 Pine St, Boston, MA 02215" +183869,AA Batteries (4-pack),1,3.84,03/29/19 11:06,"283 Cherry St, Boston, MA 02215" +183870,Wired Headphones,1,11.99,03/29/19 19:34,"755 Madison St, Dallas, TX 75001" +183871,iPhone,1,700,03/12/19 15:40,"643 Hill St, New York City, NY 10001" +183872,AA Batteries (4-pack),1,3.84,03/04/19 15:19,"936 Forest St, Boston, MA 02215" +183873,Apple Airpods Headphones,1,150,03/02/19 10:30,"548 Spruce St, Boston, MA 02215" +183874,Bose SoundSport Headphones,1,99.99,03/09/19 22:29,"339 West St, Portland, OR 97035" +183875,iPhone,1,700,03/27/19 10:02,"520 Lakeview St, Los Angeles, CA 90001" +183876,AAA Batteries (4-pack),2,2.99,03/18/19 17:49,"308 Pine St, Boston, MA 02215" +183877,USB-C Charging Cable,1,11.95,03/31/19 11:08,"657 Forest St, San Francisco, CA 94016" +183878,Lightning Charging Cable,1,14.95,03/10/19 08:42,"846 12th St, Austin, TX 73301" +183879,Bose SoundSport Headphones,1,99.99,03/06/19 07:44,"166 6th St, Los Angeles, CA 90001" +183880,Wired Headphones,1,11.99,03/05/19 15:30,"528 North St, Atlanta, GA 30301" +183881,Bose SoundSport Headphones,1,99.99,03/23/19 04:36,"987 Park St, Portland, ME 04101" +183882,Bose SoundSport Headphones,1,99.99,03/15/19 09:43,"773 Walnut St, Dallas, TX 75001" +183883,27in 4K Gaming Monitor,1,389.99,03/08/19 16:13,"906 1st St, San Francisco, CA 94016" +183884,Wired Headphones,1,11.99,03/20/19 11:02,"727 Lake St, Atlanta, GA 30301" +183885,34in Ultrawide Monitor,1,379.99,03/05/19 17:50,"412 Spruce St, Atlanta, GA 30301" +183886,Lightning Charging Cable,1,14.95,03/24/19 16:00,"641 Jackson St, Los Angeles, CA 90001" +183887,USB-C Charging Cable,1,11.95,03/28/19 19:49,"1 Jefferson St, New York City, NY 10001" +183888,AAA Batteries (4-pack),1,2.99,03/31/19 21:08,"377 Lake St, Austin, TX 73301" +183889,AA Batteries (4-pack),2,3.84,03/30/19 21:08,"412 2nd St, Dallas, TX 75001" +183890,Wired Headphones,1,11.99,03/25/19 23:30,"275 Lincoln St, Austin, TX 73301" +183891,27in FHD Monitor,1,149.99,03/28/19 22:26,"336 Willow St, San Francisco, CA 94016" +183892,Bose SoundSport Headphones,1,99.99,03/30/19 18:25,"302 6th St, Seattle, WA 98101" +183893,AA Batteries (4-pack),1,3.84,03/10/19 16:19,"399 8th St, San Francisco, CA 94016" +183894,USB-C Charging Cable,1,11.95,03/29/19 22:54,"560 Walnut St, San Francisco, CA 94016" +183895,27in 4K Gaming Monitor,1,389.99,03/06/19 18:50,"322 Church St, Austin, TX 73301" +183896,AAA Batteries (4-pack),3,2.99,03/02/19 11:40,"298 Meadow St, New York City, NY 10001" +183897,Google Phone,1,600,03/19/19 13:54,"371 1st St, Dallas, TX 75001" +183898,AA Batteries (4-pack),1,3.84,03/27/19 14:08,"245 Center St, Dallas, TX 75001" +183899,27in FHD Monitor,1,149.99,03/25/19 09:10,"526 5th St, Los Angeles, CA 90001" +183900,Macbook Pro Laptop,1,1700,03/25/19 16:42,"805 Sunset St, San Francisco, CA 94016" +183901,Google Phone,1,600,03/28/19 22:00,"205 Maple St, San Francisco, CA 94016" +183902,Lightning Charging Cable,1,14.95,03/08/19 22:38,"616 Willow St, Boston, MA 02215" +183902,Apple Airpods Headphones,1,150,03/08/19 22:38,"616 Willow St, Boston, MA 02215" +183903,AA Batteries (4-pack),1,3.84,03/06/19 13:12,"658 Cherry St, San Francisco, CA 94016" +183904,AAA Batteries (4-pack),2,2.99,03/10/19 09:16,"248 Elm St, Seattle, WA 98101" +183905,Lightning Charging Cable,1,14.95,03/11/19 16:32,"20 North St, New York City, NY 10001" +183906,27in FHD Monitor,1,149.99,03/29/19 12:32,"484 14th St, Los Angeles, CA 90001" +183907,Apple Airpods Headphones,1,150,03/29/19 20:38,"248 Maple St, New York City, NY 10001" +183908,27in FHD Monitor,1,149.99,03/31/19 04:33,"317 13th St, San Francisco, CA 94016" +183909,USB-C Charging Cable,1,11.95,03/20/19 12:26,"921 Washington St, Los Angeles, CA 90001" +183910,AAA Batteries (4-pack),3,2.99,03/18/19 19:07,"142 Forest St, San Francisco, CA 94016" +183911,USB-C Charging Cable,1,11.95,03/21/19 17:53,"985 Lake St, New York City, NY 10001" +183912,27in FHD Monitor,1,149.99,03/19/19 09:37,"11 Spruce St, Los Angeles, CA 90001" +183913,Wired Headphones,1,11.99,03/12/19 17:20,"659 4th St, San Francisco, CA 94016" +183914,Apple Airpods Headphones,1,150,03/23/19 20:39,"121 Spruce St, San Francisco, CA 94016" +183915,AAA Batteries (4-pack),2,2.99,03/29/19 19:24,"655 Main St, San Francisco, CA 94016" +183916,Lightning Charging Cable,1,14.95,03/05/19 11:00,"196 Dogwood St, Dallas, TX 75001" +183917,Wired Headphones,1,11.99,03/17/19 12:21,"13 6th St, Boston, MA 02215" +183918,AA Batteries (4-pack),2,3.84,03/31/19 08:47,"945 5th St, Portland, OR 97035" +183919,Wired Headphones,1,11.99,03/26/19 11:13,"343 South St, San Francisco, CA 94016" +183920,AAA Batteries (4-pack),3,2.99,03/12/19 16:34,"687 11th St, San Francisco, CA 94016" +183921,iPhone,1,700,03/21/19 02:30,"335 South St, Seattle, WA 98101" +183921,Lightning Charging Cable,1,14.95,03/21/19 02:30,"335 South St, Seattle, WA 98101" +183921,Wired Headphones,2,11.99,03/21/19 02:30,"335 South St, Seattle, WA 98101" +183922,Apple Airpods Headphones,1,150,03/27/19 17:33,"256 Wilson St, Atlanta, GA 30301" +183923,AAA Batteries (4-pack),2,2.99,03/21/19 18:17,"337 Park St, Dallas, TX 75001" +183924,USB-C Charging Cable,1,11.95,03/08/19 10:45,"486 Maple St, Boston, MA 02215" +183925,Bose SoundSport Headphones,1,99.99,03/11/19 09:55,"395 13th St, San Francisco, CA 94016" +183925,Bose SoundSport Headphones,1,99.99,03/11/19 09:55,"395 13th St, San Francisco, CA 94016" +183926,Apple Airpods Headphones,1,150,03/22/19 21:23,"360 Johnson St, San Francisco, CA 94016" +183927,20in Monitor,1,109.99,03/14/19 18:34,"185 Forest St, Los Angeles, CA 90001" +183928,iPhone,1,700,03/29/19 18:49,"177 Chestnut St, Seattle, WA 98101" +183928,Apple Airpods Headphones,1,150,03/29/19 18:49,"177 Chestnut St, Seattle, WA 98101" +183929,USB-C Charging Cable,1,11.95,03/29/19 22:00,"129 Madison St, San Francisco, CA 94016" +183930,USB-C Charging Cable,1,11.95,03/05/19 16:55,"827 9th St, San Francisco, CA 94016" +183931,Apple Airpods Headphones,1,150,03/26/19 10:25,"644 12th St, Atlanta, GA 30301" +183932,USB-C Charging Cable,1,11.95,03/24/19 10:55,"305 13th St, San Francisco, CA 94016" +183933,ThinkPad Laptop,1,999.99,03/23/19 04:17,"133 12th St, Seattle, WA 98101" +183934,AAA Batteries (4-pack),1,2.99,03/09/19 11:01,"703 Elm St, Dallas, TX 75001" +183935,Lightning Charging Cable,2,14.95,03/08/19 22:58,"199 Willow St, Boston, MA 02215" +183936,AA Batteries (4-pack),1,3.84,03/20/19 20:41,"592 2nd St, Boston, MA 02215" +183937,27in FHD Monitor,1,149.99,03/18/19 10:55,"171 Center St, Los Angeles, CA 90001" +183938,Bose SoundSport Headphones,1,99.99,03/21/19 11:16,"418 Madison St, Atlanta, GA 30301" +183939,Bose SoundSport Headphones,1,99.99,03/06/19 13:24,"672 Wilson St, San Francisco, CA 94016" +183940,27in 4K Gaming Monitor,1,389.99,03/03/19 13:10,"272 River St, Boston, MA 02215" +183941,27in FHD Monitor,1,149.99,03/18/19 17:50,"416 Cedar St, Dallas, TX 75001" +183942,AA Batteries (4-pack),1,3.84,03/24/19 12:06,"196 Jackson St, Seattle, WA 98101" +183943,Macbook Pro Laptop,1,1700,03/11/19 21:07,"390 Meadow St, New York City, NY 10001" +183944,Wired Headphones,1,11.99,03/28/19 22:12,"677 Jefferson St, Los Angeles, CA 90001" +183945,Flatscreen TV,1,300,03/07/19 08:12,"507 West St, Los Angeles, CA 90001" +183946,iPhone,1,700,03/26/19 17:39,"406 Main St, Los Angeles, CA 90001" +183947,Bose SoundSport Headphones,1,99.99,03/30/19 20:25,"5 2nd St, Dallas, TX 75001" +183948,Wired Headphones,1,11.99,03/23/19 14:15,"317 4th St, New York City, NY 10001" +183949,27in FHD Monitor,1,149.99,03/08/19 11:44,"577 Cedar St, Boston, MA 02215" +183950,Apple Airpods Headphones,1,150,03/23/19 10:51,"525 Main St, Austin, TX 73301" +183951,27in 4K Gaming Monitor,1,389.99,03/07/19 18:32,"2 Johnson St, Dallas, TX 75001" +183952,Bose SoundSport Headphones,1,99.99,03/10/19 19:04,"937 Walnut St, Portland, OR 97035" +183953,Lightning Charging Cable,1,14.95,03/21/19 18:00,"193 Highland St, Dallas, TX 75001" +183954,Wired Headphones,1,11.99,03/29/19 23:14,"521 River St, San Francisco, CA 94016" +183955,AAA Batteries (4-pack),4,2.99,03/21/19 21:09,"824 Jefferson St, Seattle, WA 98101" +183956,AAA Batteries (4-pack),2,2.99,03/07/19 11:51,"485 Meadow St, San Francisco, CA 94016" +183957,AA Batteries (4-pack),2,3.84,03/25/19 14:11,"954 Meadow St, Portland, OR 97035" +183958,Lightning Charging Cable,1,14.95,03/30/19 15:37,"36 Meadow St, Boston, MA 02215" +183959,AAA Batteries (4-pack),1,2.99,03/20/19 18:08,"280 Madison St, Seattle, WA 98101" +183960,AAA Batteries (4-pack),1,2.99,03/14/19 13:24,"676 Washington St, Boston, MA 02215" +183961,USB-C Charging Cable,1,11.95,03/28/19 11:22,"290 Meadow St, San Francisco, CA 94016" +183962,AA Batteries (4-pack),1,3.84,03/29/19 03:16,"248 Maple St, Boston, MA 02215" +183963,AAA Batteries (4-pack),1,2.99,03/27/19 13:15,"67 Washington St, Dallas, TX 75001" +183964,Vareebadd Phone,1,400,03/23/19 20:50,"388 Willow St, San Francisco, CA 94016" +183965,Lightning Charging Cable,1,14.95,03/13/19 17:24,"348 Maple St, Los Angeles, CA 90001" +183965,20in Monitor,1,109.99,03/13/19 17:24,"348 Maple St, Los Angeles, CA 90001" +183966,Apple Airpods Headphones,1,150,03/04/19 21:55,"393 West St, Los Angeles, CA 90001" +183967,AAA Batteries (4-pack),2,2.99,03/28/19 23:17,"550 Walnut St, San Francisco, CA 94016" +183968,Bose SoundSport Headphones,1,99.99,03/02/19 14:24,"751 12th St, Los Angeles, CA 90001" +183969,Lightning Charging Cable,1,14.95,03/03/19 17:47,"221 Willow St, San Francisco, CA 94016" +183970,Macbook Pro Laptop,1,1700,03/18/19 11:54,"382 Main St, Atlanta, GA 30301" +183971,AA Batteries (4-pack),1,3.84,03/26/19 14:27,"951 Lakeview St, San Francisco, CA 94016" +183972,Lightning Charging Cable,1,14.95,03/22/19 10:59,"998 Main St, Los Angeles, CA 90001" +183973,USB-C Charging Cable,1,11.95,03/31/19 17:08,"470 South St, Los Angeles, CA 90001" +183974,AA Batteries (4-pack),2,3.84,03/22/19 06:23,"998 10th St, Seattle, WA 98101" +183975,AAA Batteries (4-pack),1,2.99,03/03/19 12:22,"529 Sunset St, Dallas, TX 75001" +183975,20in Monitor,1,109.99,03/03/19 12:22,"529 Sunset St, Dallas, TX 75001" +183976,Macbook Pro Laptop,1,1700,03/26/19 08:32,"190 Cherry St, Los Angeles, CA 90001" +183977,Lightning Charging Cable,1,14.95,03/27/19 09:14,"914 Madison St, San Francisco, CA 94016" +183978,Google Phone,1,600,03/04/19 22:52,"54 6th St, San Francisco, CA 94016" +183978,USB-C Charging Cable,1,11.95,03/04/19 22:52,"54 6th St, San Francisco, CA 94016" +183979,AAA Batteries (4-pack),1,2.99,03/31/19 21:56,"683 Adams St, Dallas, TX 75001" +183980,Lightning Charging Cable,1,14.95,03/02/19 12:34,"927 12th St, Atlanta, GA 30301" +183981,Wired Headphones,1,11.99,03/26/19 09:34,"124 10th St, Dallas, TX 75001" +183982,34in Ultrawide Monitor,1,379.99,03/10/19 19:22,"713 Madison St, Portland, ME 04101" +183983,iPhone,1,700,03/09/19 18:27,"315 4th St, San Francisco, CA 94016" +183983,Lightning Charging Cable,1,14.95,03/09/19 18:27,"315 4th St, San Francisco, CA 94016" +183984,Lightning Charging Cable,1,14.95,03/14/19 12:58,"848 Elm St, Los Angeles, CA 90001" +183985,27in FHD Monitor,1,149.99,03/17/19 20:41,"52 Pine St, Seattle, WA 98101" +183986,27in FHD Monitor,1,149.99,03/14/19 19:51,"854 14th St, Boston, MA 02215" +183987,Bose SoundSport Headphones,1,99.99,03/01/19 11:04,"74 12th St, Portland, OR 97035" +183988,USB-C Charging Cable,2,11.95,03/14/19 20:26,"624 Elm St, Dallas, TX 75001" +183989,USB-C Charging Cable,1,11.95,03/11/19 07:09,"135 Meadow St, Atlanta, GA 30301" +183990,Bose SoundSport Headphones,1,99.99,03/05/19 10:02,"938 Willow St, Portland, OR 97035" +183991,Lightning Charging Cable,1,14.95,03/14/19 07:52,"416 10th St, Austin, TX 73301" +183992,iPhone,1,700,03/20/19 10:34,"677 Willow St, New York City, NY 10001" +183993,AAA Batteries (4-pack),1,2.99,03/01/19 21:08,"872 Center St, Austin, TX 73301" +,,,,, +183994,34in Ultrawide Monitor,1,379.99,03/26/19 21:04,"579 Willow St, Portland, OR 97035" +183995,27in 4K Gaming Monitor,1,389.99,03/27/19 10:54,"233 1st St, San Francisco, CA 94016" +183996,AAA Batteries (4-pack),1,2.99,03/21/19 05:56,"792 Hill St, Austin, TX 73301" +183997,iPhone,1,700,03/03/19 14:42,"506 7th St, San Francisco, CA 94016" +183998,Lightning Charging Cable,1,14.95,03/31/19 07:56,"441 14th St, Portland, ME 04101" +183999,ThinkPad Laptop,1,999.99,03/20/19 19:21,"569 Walnut St, Los Angeles, CA 90001" +184000,Wired Headphones,1,11.99,03/02/19 17:24,"131 9th St, Seattle, WA 98101" +184001,27in 4K Gaming Monitor,1,389.99,03/07/19 18:17,"701 Lakeview St, Los Angeles, CA 90001" +184002,USB-C Charging Cable,1,11.95,03/21/19 22:53,"287 Center St, New York City, NY 10001" +184003,Lightning Charging Cable,1,14.95,03/05/19 18:21,"942 Elm St, Atlanta, GA 30301" +184004,iPhone,1,700,03/13/19 22:16,"22 13th St, Boston, MA 02215" +184005,Wired Headphones,1,11.99,03/04/19 21:21,"695 Maple St, Seattle, WA 98101" +184006,Vareebadd Phone,1,400,03/08/19 14:15,"852 1st St, San Francisco, CA 94016" +184007,AA Batteries (4-pack),1,3.84,03/19/19 14:13,"784 Jefferson St, Portland, ME 04101" +184008,AA Batteries (4-pack),1,3.84,03/09/19 11:16,"585 Center St, Boston, MA 02215" +184009,Lightning Charging Cable,1,14.95,03/12/19 18:42,"458 Lakeview St, Boston, MA 02215" +184010,AA Batteries (4-pack),2,3.84,03/29/19 13:58,"745 Cherry St, Boston, MA 02215" +184011,27in FHD Monitor,1,149.99,03/02/19 21:06,"299 2nd St, Dallas, TX 75001" +184012,34in Ultrawide Monitor,1,379.99,03/07/19 11:45,"205 South St, Portland, OR 97035" +184013,AA Batteries (4-pack),1,3.84,03/31/19 14:23,"665 11th St, Seattle, WA 98101" +184014,Flatscreen TV,1,300,03/23/19 12:17,"518 Johnson St, Austin, TX 73301" +184015,Wired Headphones,1,11.99,03/31/19 17:31,"155 Jefferson St, San Francisco, CA 94016" +184016,27in 4K Gaming Monitor,1,389.99,03/10/19 21:01,"205 Ridge St, San Francisco, CA 94016" +184017,AA Batteries (4-pack),1,3.84,03/01/19 21:25,"353 5th St, Los Angeles, CA 90001" +184018,ThinkPad Laptop,1,999.99,03/04/19 21:17,"965 Cherry St, San Francisco, CA 94016" +184019,Lightning Charging Cable,1,14.95,03/29/19 16:46,"777 South St, Los Angeles, CA 90001" +184020,34in Ultrawide Monitor,1,379.99,03/13/19 17:30,"582 Dogwood St, Los Angeles, CA 90001" +184021,AAA Batteries (4-pack),2,2.99,03/16/19 19:14,"288 Adams St, Boston, MA 02215" +184022,USB-C Charging Cable,1,11.95,03/16/19 20:21,"87 North St, Seattle, WA 98101" +184023,AAA Batteries (4-pack),1,2.99,03/30/19 13:22,"800 4th St, New York City, NY 10001" +184024,Wired Headphones,1,11.99,03/22/19 13:39,"350 Washington St, Los Angeles, CA 90001" +184025,AA Batteries (4-pack),2,3.84,03/10/19 16:45,"681 Chestnut St, New York City, NY 10001" +184026,Wired Headphones,1,11.99,03/24/19 19:04,"657 1st St, Los Angeles, CA 90001" +184027,Lightning Charging Cable,1,14.95,03/09/19 16:16,"518 Church St, Seattle, WA 98101" +184028,Flatscreen TV,1,300,03/18/19 23:56,"710 Forest St, Atlanta, GA 30301" +184029,Apple Airpods Headphones,1,150,03/18/19 17:02,"553 Dogwood St, Seattle, WA 98101" +184030,34in Ultrawide Monitor,1,379.99,03/04/19 17:44,"105 Johnson St, New York City, NY 10001" +184031,Bose SoundSport Headphones,1,99.99,03/06/19 23:50,"525 Forest St, San Francisco, CA 94016" +184032,27in 4K Gaming Monitor,1,389.99,03/13/19 00:57,"181 Adams St, Los Angeles, CA 90001" +184033,Bose SoundSport Headphones,1,99.99,03/24/19 20:43,"28 1st St, New York City, NY 10001" +184034,20in Monitor,1,109.99,03/30/19 19:31,"633 West St, Boston, MA 02215" +184035,Lightning Charging Cable,1,14.95,03/31/19 19:40,"209 Chestnut St, Seattle, WA 98101" +184036,34in Ultrawide Monitor,1,379.99,03/07/19 18:29,"365 14th St, San Francisco, CA 94016" +184037,Apple Airpods Headphones,1,150,03/10/19 17:28,"611 2nd St, Boston, MA 02215" +184038,AAA Batteries (4-pack),2,2.99,03/17/19 21:05,"729 Chestnut St, Austin, TX 73301" +184039,USB-C Charging Cable,1,11.95,03/07/19 11:37,"107 Forest St, New York City, NY 10001" +184040,Wired Headphones,1,11.99,03/21/19 21:02,"744 Johnson St, Dallas, TX 75001" +184041,Wired Headphones,1,11.99,03/14/19 15:57,"831 Lincoln St, Seattle, WA 98101" +184042,Apple Airpods Headphones,1,150,03/28/19 13:11,"702 8th St, Boston, MA 02215" +184042,USB-C Charging Cable,1,11.95,03/28/19 13:11,"702 8th St, Boston, MA 02215" +184043,AA Batteries (4-pack),3,3.84,03/07/19 22:05,"164 Johnson St, New York City, NY 10001" +184044,iPhone,1,700,03/26/19 17:46,"223 Washington St, New York City, NY 10001" +184045,20in Monitor,1,109.99,03/01/19 14:29,"955 1st St, San Francisco, CA 94016" +184046,Apple Airpods Headphones,1,150,03/31/19 16:02,"272 North St, San Francisco, CA 94016" +184047,Apple Airpods Headphones,1,150,03/29/19 20:42,"744 Madison St, New York City, NY 10001" +184048,Lightning Charging Cable,1,14.95,03/14/19 11:20,"863 11th St, Austin, TX 73301" +184049,AAA Batteries (4-pack),2,2.99,03/22/19 11:05,"529 9th St, Boston, MA 02215" +184050,USB-C Charging Cable,1,11.95,03/07/19 12:42,"831 2nd St, Dallas, TX 75001" +184051,USB-C Charging Cable,1,11.95,03/07/19 23:09,"388 Lakeview St, Seattle, WA 98101" +184052,Bose SoundSport Headphones,1,99.99,03/19/19 16:59,"277 14th St, New York City, NY 10001" +184053,Wired Headphones,1,11.99,03/13/19 14:23,"464 Johnson St, San Francisco, CA 94016" +184054,Macbook Pro Laptop,1,1700,03/06/19 10:53,"219 Jefferson St, Seattle, WA 98101" +184055,Macbook Pro Laptop,1,1700,03/24/19 18:16,"186 13th St, New York City, NY 10001" +184056,Lightning Charging Cable,1,14.95,03/14/19 18:43,"781 Center St, New York City, NY 10001" +184057,Wired Headphones,1,11.99,03/31/19 01:08,"602 Center St, San Francisco, CA 94016" +184058,AA Batteries (4-pack),1,3.84,03/14/19 15:36,"178 Spruce St, San Francisco, CA 94016" +184059,27in FHD Monitor,1,149.99,03/10/19 21:57,"99 Highland St, Dallas, TX 75001" +184060,Wired Headphones,1,11.99,03/30/19 15:09,"451 Willow St, Los Angeles, CA 90001" +184061,Flatscreen TV,1,300,03/27/19 11:01,"171 Park St, Atlanta, GA 30301" +184062,Macbook Pro Laptop,1,1700,03/17/19 19:50,"981 Madison St, Dallas, TX 75001" +184063,Wired Headphones,1,11.99,03/24/19 20:08,"285 Pine St, San Francisco, CA 94016" +184064,AAA Batteries (4-pack),1,2.99,03/15/19 19:48,"978 Church St, Portland, OR 97035" +184065,Wired Headphones,1,11.99,03/04/19 07:34,"239 Ridge St, San Francisco, CA 94016" +184066,USB-C Charging Cable,1,11.95,03/20/19 15:13,"768 10th St, New York City, NY 10001" +184067,USB-C Charging Cable,1,11.95,03/28/19 10:02,"815 Lakeview St, Boston, MA 02215" +184068,iPhone,1,700,03/14/19 13:21,"808 West St, Boston, MA 02215" +184069,AA Batteries (4-pack),1,3.84,03/22/19 00:38,"544 Lincoln St, Los Angeles, CA 90001" +184070,USB-C Charging Cable,2,11.95,03/14/19 13:55,"329 Spruce St, Atlanta, GA 30301" +184071,AA Batteries (4-pack),1,3.84,03/27/19 09:44,"838 9th St, Dallas, TX 75001" +184072,AA Batteries (4-pack),2,3.84,03/16/19 22:53,"106 Wilson St, Atlanta, GA 30301" +184073,LG Dryer,1,600.0,03/30/19 01:19,"561 Center St, San Francisco, CA 94016" +184074,Wired Headphones,2,11.99,03/04/19 18:06,"974 Highland St, Los Angeles, CA 90001" +184075,27in FHD Monitor,1,149.99,03/09/19 21:15,"623 Maple St, Boston, MA 02215" +184076,27in FHD Monitor,1,149.99,03/02/19 15:03,"686 River St, Dallas, TX 75001" +184077,AA Batteries (4-pack),2,3.84,03/22/19 16:25,"175 Center St, San Francisco, CA 94016" +184078,27in FHD Monitor,1,149.99,03/26/19 14:07,"279 Elm St, Atlanta, GA 30301" +184079,Wired Headphones,1,11.99,03/23/19 16:20,"339 Main St, Portland, OR 97035" +184080,USB-C Charging Cable,1,11.95,03/28/19 20:36,"694 Jefferson St, Seattle, WA 98101" +184081,iPhone,1,700,03/27/19 20:03,"131 10th St, Portland, OR 97035" +184082,Google Phone,1,600,03/29/19 16:08,"677 7th St, Boston, MA 02215" +184083,Wired Headphones,1,11.99,03/13/19 11:23,"526 Willow St, San Francisco, CA 94016" +184084,AAA Batteries (4-pack),1,2.99,03/21/19 12:38,"426 Elm St, Dallas, TX 75001" +184085,34in Ultrawide Monitor,1,379.99,03/17/19 16:02,"406 River St, Los Angeles, CA 90001" +184085,Lightning Charging Cable,1,14.95,03/17/19 16:02,"406 River St, Los Angeles, CA 90001" +184086,Apple Airpods Headphones,1,150,03/09/19 10:38,"730 12th St, Boston, MA 02215" +184087,Apple Airpods Headphones,1,150,03/30/19 18:28,"54 Hickory St, Los Angeles, CA 90001" +184088,Lightning Charging Cable,1,14.95,03/03/19 09:54,"437 Main St, New York City, NY 10001" +184089,USB-C Charging Cable,1,11.95,03/27/19 10:50,"797 Spruce St, San Francisco, CA 94016" +184090,Flatscreen TV,1,300,03/22/19 11:03,"768 Lakeview St, Dallas, TX 75001" +184091,27in FHD Monitor,1,149.99,03/23/19 19:46,"73 West St, Seattle, WA 98101" +184092,USB-C Charging Cable,1,11.95,03/09/19 12:02,"140 West St, New York City, NY 10001" +184093,Lightning Charging Cable,1,14.95,03/31/19 18:39,"791 8th St, Atlanta, GA 30301" +184094,Lightning Charging Cable,1,14.95,03/11/19 23:27,"557 Washington St, Los Angeles, CA 90001" +184095,Apple Airpods Headphones,1,150,03/15/19 05:09,"10 Johnson St, Portland, ME 04101" +184096,Bose SoundSport Headphones,1,99.99,03/28/19 19:43,"484 Cherry St, Austin, TX 73301" +184097,Bose SoundSport Headphones,1,99.99,03/10/19 21:33,"380 1st St, Austin, TX 73301" +184098,27in FHD Monitor,1,149.99,03/16/19 11:07,"436 Hill St, Boston, MA 02215" +184099,USB-C Charging Cable,2,11.95,03/21/19 14:56,"278 12th St, Los Angeles, CA 90001" +184100,USB-C Charging Cable,1,11.95,03/25/19 16:49,"273 Jackson St, Los Angeles, CA 90001" +184101,Wired Headphones,1,11.99,03/21/19 13:01,"965 Chestnut St, San Francisco, CA 94016" +184102,USB-C Charging Cable,1,11.95,03/06/19 11:12,"821 12th St, Dallas, TX 75001" +184103,USB-C Charging Cable,1,11.95,03/11/19 13:37,"757 Wilson St, Seattle, WA 98101" +184104,Google Phone,1,600,03/03/19 10:39,"391 Jackson St, Atlanta, GA 30301" +184105,Apple Airpods Headphones,1,150,03/25/19 13:19,"610 Adams St, Atlanta, GA 30301" +184106,AA Batteries (4-pack),1,3.84,03/15/19 16:09,"85 10th St, San Francisco, CA 94016" +184107,Wired Headphones,1,11.99,03/05/19 22:30,"276 Hickory St, Dallas, TX 75001" +184108,27in FHD Monitor,1,149.99,03/27/19 04:56,"408 Madison St, Los Angeles, CA 90001" +184109,USB-C Charging Cable,1,11.95,03/07/19 19:34,"445 Chestnut St, Los Angeles, CA 90001" +184110,Lightning Charging Cable,1,14.95,03/03/19 21:43,"522 Church St, Dallas, TX 75001" +184111,ThinkPad Laptop,1,999.99,03/29/19 13:49,"657 7th St, San Francisco, CA 94016" +184112,AAA Batteries (4-pack),1,2.99,03/01/19 20:00,"165 Cherry St, Dallas, TX 75001" +184113,AA Batteries (4-pack),1,3.84,03/26/19 16:10,"657 5th St, San Francisco, CA 94016" +184114,AA Batteries (4-pack),1,3.84,03/30/19 16:29,"115 Johnson St, San Francisco, CA 94016" +184115,Flatscreen TV,1,300,03/24/19 15:17,"540 South St, Portland, OR 97035" +184116,Macbook Pro Laptop,1,1700,03/28/19 23:03,"529 Main St, Portland, OR 97035" +184117,Wired Headphones,2,11.99,03/03/19 00:36,"917 2nd St, Austin, TX 73301" +184118,Macbook Pro Laptop,1,1700,03/25/19 16:07,"19 Elm St, Seattle, WA 98101" +184119,Macbook Pro Laptop,1,1700,03/27/19 20:00,"936 13th St, San Francisco, CA 94016" +184120,AAA Batteries (4-pack),1,2.99,03/16/19 17:08,"664 12th St, Atlanta, GA 30301" +184121,Google Phone,1,600,03/23/19 02:54,"189 Madison St, New York City, NY 10001" +184122,Apple Airpods Headphones,1,150,03/21/19 11:01,"585 South St, New York City, NY 10001" +184123,USB-C Charging Cable,1,11.95,03/01/19 10:58,"545 12th St, Los Angeles, CA 90001" +184124,AA Batteries (4-pack),2,3.84,03/09/19 16:38,"696 6th St, San Francisco, CA 94016" +184125,AAA Batteries (4-pack),1,2.99,03/22/19 20:41,"137 Highland St, San Francisco, CA 94016" +184126,AA Batteries (4-pack),3,3.84,03/20/19 20:06,"174 2nd St, Los Angeles, CA 90001" +184127,USB-C Charging Cable,1,11.95,03/25/19 19:24,"768 Center St, Austin, TX 73301" +184128,AA Batteries (4-pack),1,3.84,03/04/19 09:25,"66 Washington St, Dallas, TX 75001" +184129,USB-C Charging Cable,1,11.95,03/10/19 21:26,"702 Church St, San Francisco, CA 94016" +184130,Google Phone,1,600,03/31/19 19:45,"173 West St, San Francisco, CA 94016" +184130,Bose SoundSport Headphones,1,99.99,03/31/19 19:45,"173 West St, San Francisco, CA 94016" +184131,27in 4K Gaming Monitor,1,389.99,03/17/19 11:00,"196 Willow St, San Francisco, CA 94016" +184132,USB-C Charging Cable,1,11.95,03/02/19 23:23,"262 Jackson St, Dallas, TX 75001" +184133,AA Batteries (4-pack),1,3.84,03/13/19 22:07,"240 Main St, New York City, NY 10001" +184134,Apple Airpods Headphones,1,150,03/04/19 12:48,"746 9th St, Dallas, TX 75001" +184135,Apple Airpods Headphones,1,150,03/29/19 09:31,"163 Dogwood St, Los Angeles, CA 90001" +184136,Lightning Charging Cable,1,14.95,03/08/19 18:22,"836 1st St, Los Angeles, CA 90001" +184137,Wired Headphones,1,11.99,03/24/19 21:29,"161 Washington St, New York City, NY 10001" +184138,iPhone,1,700,03/01/19 12:08,"331 14th St, San Francisco, CA 94016" +184138,Lightning Charging Cable,1,14.95,03/01/19 12:08,"331 14th St, San Francisco, CA 94016" +184139,Lightning Charging Cable,1,14.95,03/04/19 20:10,"648 Meadow St, New York City, NY 10001" +184140,Wired Headphones,1,11.99,03/13/19 22:29,"516 Spruce St, San Francisco, CA 94016" +184141,Lightning Charging Cable,1,14.95,03/16/19 01:05,"195 Pine St, Dallas, TX 75001" +184142,AA Batteries (4-pack),2,3.84,03/05/19 16:35,"869 South St, New York City, NY 10001" +184143,Wired Headphones,1,11.99,03/12/19 08:22,"326 5th St, Dallas, TX 75001" +184144,USB-C Charging Cable,1,11.95,03/18/19 20:02,"999 Main St, New York City, NY 10001" +184145,Apple Airpods Headphones,1,150,03/26/19 01:12,"951 11th St, San Francisco, CA 94016" +184146,AA Batteries (4-pack),1,3.84,03/05/19 15:12,"472 Walnut St, Boston, MA 02215" +184147,Apple Airpods Headphones,1,150,03/16/19 18:58,"328 4th St, Portland, OR 97035" +184148,20in Monitor,1,109.99,03/22/19 11:08,"965 Madison St, San Francisco, CA 94016" +184149,AAA Batteries (4-pack),2,2.99,03/01/19 14:21,"286 Sunset St, Atlanta, GA 30301" +184150,27in 4K Gaming Monitor,1,389.99,03/08/19 20:19,"198 Walnut St, Portland, OR 97035" +184151,27in FHD Monitor,2,149.99,03/10/19 11:10,"851 4th St, Atlanta, GA 30301" +184152,AA Batteries (4-pack),1,3.84,03/20/19 16:29,"431 Jefferson St, Atlanta, GA 30301" +184153,27in FHD Monitor,1,149.99,03/29/19 09:55,"113 12th St, Los Angeles, CA 90001" +184154,AA Batteries (4-pack),2,3.84,03/21/19 11:55,"53 Church St, Los Angeles, CA 90001" +184155,Bose SoundSport Headphones,1,99.99,03/27/19 12:10,"125 Sunset St, Seattle, WA 98101" +184156,AA Batteries (4-pack),2,3.84,03/14/19 17:39,"423 Wilson St, Austin, TX 73301" +184157,USB-C Charging Cable,1,11.95,03/11/19 17:03,"553 2nd St, Los Angeles, CA 90001" +184158,AA Batteries (4-pack),1,3.84,03/14/19 18:56,"388 4th St, Dallas, TX 75001" +184159,Google Phone,1,600,03/12/19 10:15,"721 8th St, San Francisco, CA 94016" +184159,USB-C Charging Cable,1,11.95,03/12/19 10:15,"721 8th St, San Francisco, CA 94016" +184160,AA Batteries (4-pack),3,3.84,03/05/19 20:48,"233 Cherry St, Seattle, WA 98101" +184161,Wired Headphones,1,11.99,03/14/19 07:31,"332 South St, Seattle, WA 98101" +184162,AAA Batteries (4-pack),2,2.99,03/17/19 10:41,"211 Madison St, New York City, NY 10001" +184163,Lightning Charging Cable,1,14.95,03/13/19 19:03,"381 13th St, San Francisco, CA 94016" +184164,iPhone,1,700,03/20/19 19:55,"258 13th St, Los Angeles, CA 90001" +184165,USB-C Charging Cable,1,11.95,03/27/19 09:15,"891 Forest St, Seattle, WA 98101" +184166,Lightning Charging Cable,1,14.95,03/12/19 20:26,"221 Pine St, Atlanta, GA 30301" +184167,iPhone,1,700,03/02/19 19:06,"151 Main St, New York City, NY 10001" +184167,Lightning Charging Cable,1,14.95,03/02/19 19:06,"151 Main St, New York City, NY 10001" +184168,ThinkPad Laptop,1,999.99,03/25/19 22:57,"798 Elm St, San Francisco, CA 94016" +184169,Apple Airpods Headphones,1,150,03/17/19 09:14,"368 2nd St, New York City, NY 10001" +184170,Google Phone,1,600,03/02/19 16:22,"662 Church St, Boston, MA 02215" +184171,AAA Batteries (4-pack),1,2.99,03/18/19 22:07,"310 12th St, Atlanta, GA 30301" +184172,AAA Batteries (4-pack),2,2.99,03/18/19 18:39,"283 1st St, Los Angeles, CA 90001" +184173,Apple Airpods Headphones,1,150,03/13/19 10:17,"627 Willow St, New York City, NY 10001" +184174,Bose SoundSport Headphones,1,99.99,03/07/19 22:20,"53 Washington St, Boston, MA 02215" +184175,Wired Headphones,1,11.99,03/09/19 13:08,"154 Sunset St, Los Angeles, CA 90001" +184176,Vareebadd Phone,1,400,03/08/19 10:01,"342 Jackson St, San Francisco, CA 94016" +184177,Lightning Charging Cable,2,14.95,03/31/19 17:27,"593 Chestnut St, Boston, MA 02215" +184178,27in FHD Monitor,1,149.99,03/04/19 14:04,"620 1st St, Los Angeles, CA 90001" +184179,Vareebadd Phone,1,400,03/02/19 17:33,"511 River St, Los Angeles, CA 90001" +184180,USB-C Charging Cable,2,11.95,03/28/19 10:34,"20 8th St, San Francisco, CA 94016" +184181,AAA Batteries (4-pack),1,2.99,03/14/19 16:00,"180 8th St, Boston, MA 02215" +184181,Vareebadd Phone,1,400,03/14/19 16:00,"180 8th St, Boston, MA 02215" +184182,Google Phone,1,600,03/14/19 18:21,"87 Lake St, San Francisco, CA 94016" +184183,AAA Batteries (4-pack),1,2.99,03/27/19 17:22,"248 Lincoln St, Boston, MA 02215" +184184,Flatscreen TV,1,300,03/09/19 17:30,"864 Forest St, San Francisco, CA 94016" +184185,Flatscreen TV,1,300,03/01/19 10:06,"449 4th St, Portland, OR 97035" +184186,Bose SoundSport Headphones,1,99.99,03/10/19 11:53,"686 River St, San Francisco, CA 94016" +184187,27in 4K Gaming Monitor,1,389.99,03/12/19 19:52,"979 Johnson St, New York City, NY 10001" +184188,Bose SoundSport Headphones,1,99.99,03/05/19 15:01,"162 Johnson St, Dallas, TX 75001" +184189,Wired Headphones,1,11.99,03/06/19 07:25,"69 Center St, Seattle, WA 98101" +184190,AA Batteries (4-pack),1,3.84,03/27/19 19:04,"398 Dogwood St, Los Angeles, CA 90001" +184191,Bose SoundSport Headphones,1,99.99,03/23/19 12:41,"960 Church St, San Francisco, CA 94016" +184192,USB-C Charging Cable,1,11.95,03/03/19 21:04,"416 Forest St, San Francisco, CA 94016" +184193,34in Ultrawide Monitor,1,379.99,03/26/19 15:24,"892 Dogwood St, San Francisco, CA 94016" +184194,AA Batteries (4-pack),1,3.84,03/22/19 15:17,"507 Pine St, Austin, TX 73301" +184195,AA Batteries (4-pack),1,3.84,03/23/19 21:00,"480 Lincoln St, Portland, ME 04101" +184196,27in FHD Monitor,1,149.99,03/17/19 12:40,"286 Meadow St, San Francisco, CA 94016" +184197,27in FHD Monitor,1,149.99,03/09/19 18:31,"275 Spruce St, Dallas, TX 75001" +184198,USB-C Charging Cable,1,11.95,03/06/19 12:15,"415 Walnut St, Dallas, TX 75001" +184199,Bose SoundSport Headphones,1,99.99,03/07/19 11:30,"597 South St, San Francisco, CA 94016" +184200,Macbook Pro Laptop,1,1700,03/18/19 22:07,"696 Chestnut St, Austin, TX 73301" +184201,AA Batteries (4-pack),1,3.84,03/03/19 23:45,"724 Willow St, Portland, ME 04101" +184202,Wired Headphones,1,11.99,03/16/19 18:25,"479 5th St, New York City, NY 10001" +184203,Apple Airpods Headphones,1,150,03/21/19 20:00,"11 Elm St, Seattle, WA 98101" +184204,Flatscreen TV,1,300,03/19/19 19:47,"472 4th St, Dallas, TX 75001" +184205,USB-C Charging Cable,1,11.95,03/27/19 11:17,"911 North St, San Francisco, CA 94016" +184206,Macbook Pro Laptop,1,1700,03/25/19 15:18,"495 9th St, San Francisco, CA 94016" +184207,AAA Batteries (4-pack),1,2.99,03/03/19 19:55,"469 Washington St, Portland, OR 97035" +184208,27in FHD Monitor,1,149.99,03/24/19 14:10,"323 Lakeview St, Austin, TX 73301" +184209,Apple Airpods Headphones,1,150,03/19/19 09:03,"794 Cedar St, Boston, MA 02215" +184210,Lightning Charging Cable,1,14.95,03/28/19 10:28,"958 7th St, Portland, OR 97035" +184211,Lightning Charging Cable,1,14.95,03/02/19 23:21,"649 Ridge St, Seattle, WA 98101" +184212,Apple Airpods Headphones,1,150,03/27/19 00:40,"155 4th St, Atlanta, GA 30301" +184213,Lightning Charging Cable,1,14.95,03/23/19 16:17,"132 13th St, San Francisco, CA 94016" +184214,AAA Batteries (4-pack),1,2.99,03/31/19 06:34,"81 Pine St, New York City, NY 10001" +184215,USB-C Charging Cable,1,11.95,03/06/19 12:39,"146 Jackson St, Portland, OR 97035" +184216,AAA Batteries (4-pack),2,2.99,03/25/19 19:50,"70 Park St, Austin, TX 73301" +184217,Lightning Charging Cable,1,14.95,03/26/19 18:21,"749 1st St, New York City, NY 10001" +184218,Bose SoundSport Headphones,1,99.99,03/07/19 18:47,"249 Ridge St, Los Angeles, CA 90001" +184219,AAA Batteries (4-pack),4,2.99,03/03/19 17:09,"806 7th St, Seattle, WA 98101" +184220,Lightning Charging Cable,1,14.95,03/29/19 11:59,"124 Highland St, Portland, ME 04101" +184221,Wired Headphones,1,11.99,03/25/19 21:06,"104 13th St, Dallas, TX 75001" +184222,Google Phone,1,600,03/21/19 07:28,"422 Forest St, Los Angeles, CA 90001" +184222,USB-C Charging Cable,1,11.95,03/21/19 07:28,"422 Forest St, Los Angeles, CA 90001" +184223,AAA Batteries (4-pack),2,2.99,03/07/19 08:34,"515 Maple St, Dallas, TX 75001" +184224,Lightning Charging Cable,1,14.95,03/29/19 08:09,"515 Main St, San Francisco, CA 94016" +184225,Lightning Charging Cable,1,14.95,03/13/19 21:56,"643 Pine St, Dallas, TX 75001" +184226,AA Batteries (4-pack),1,3.84,03/23/19 09:10,"163 Church St, Dallas, TX 75001" +184227,27in FHD Monitor,1,149.99,03/26/19 19:06,"404 14th St, Seattle, WA 98101" +184228,Apple Airpods Headphones,1,150,03/30/19 23:54,"919 11th St, San Francisco, CA 94016" +184229,AA Batteries (4-pack),1,3.84,03/04/19 12:13,"976 12th St, Dallas, TX 75001" +184230,AA Batteries (4-pack),1,3.84,03/12/19 18:26,"993 Washington St, San Francisco, CA 94016" +184231,USB-C Charging Cable,2,11.95,03/26/19 09:23,"271 Church St, Los Angeles, CA 90001" +184232,27in FHD Monitor,1,149.99,03/01/19 13:33,"720 River St, San Francisco, CA 94016" +184233,27in 4K Gaming Monitor,1,389.99,03/25/19 13:26,"580 7th St, New York City, NY 10001" +184234,AAA Batteries (4-pack),4,2.99,03/04/19 16:03,"508 2nd St, San Francisco, CA 94016" +184235,20in Monitor,1,109.99,03/14/19 08:13,"145 1st St, Los Angeles, CA 90001" +184236,USB-C Charging Cable,1,11.95,03/23/19 10:53,"723 4th St, Boston, MA 02215" +184237,Bose SoundSport Headphones,1,99.99,03/08/19 09:10,"954 Highland St, Dallas, TX 75001" +184238,Apple Airpods Headphones,1,150,03/21/19 18:18,"814 Sunset St, Boston, MA 02215" +184239,Bose SoundSport Headphones,1,99.99,03/09/19 14:06,"32 Adams St, Seattle, WA 98101" +184240,AAA Batteries (4-pack),1,2.99,03/25/19 14:46,"664 Adams St, New York City, NY 10001" +184241,AA Batteries (4-pack),2,3.84,03/02/19 12:22,"959 Maple St, San Francisco, CA 94016" +184242,34in Ultrawide Monitor,1,379.99,03/25/19 14:57,"5 Jackson St, Portland, OR 97035" +184243,USB-C Charging Cable,1,11.95,03/09/19 09:50,"693 Madison St, Austin, TX 73301" +184244,34in Ultrawide Monitor,2,379.99,03/18/19 22:19,"672 13th St, Los Angeles, CA 90001" +184245,iPhone,1,700,03/28/19 19:57,"855 Maple St, Portland, OR 97035" +184245,Wired Headphones,1,11.99,03/28/19 19:57,"855 Maple St, Portland, OR 97035" +184246,AAA Batteries (4-pack),1,2.99,03/24/19 13:27,"355 Dogwood St, Austin, TX 73301" +184246,Wired Headphones,1,11.99,03/24/19 13:27,"355 Dogwood St, Austin, TX 73301" +184247,AA Batteries (4-pack),1,3.84,03/31/19 15:44,"721 River St, Portland, ME 04101" +184248,Apple Airpods Headphones,1,150,03/16/19 13:07,"640 Johnson St, Los Angeles, CA 90001" +184249,Wired Headphones,1,11.99,03/06/19 14:10,"149 Jackson St, San Francisco, CA 94016" +184250,iPhone,1,700,03/27/19 10:30,"621 Meadow St, San Francisco, CA 94016" +184251,Apple Airpods Headphones,1,150,03/27/19 06:43,"698 Sunset St, San Francisco, CA 94016" +184252,AA Batteries (4-pack),1,3.84,03/28/19 22:56,"255 Maple St, San Francisco, CA 94016" +184253,Flatscreen TV,1,300,03/08/19 14:00,"56 Cedar St, Dallas, TX 75001" +184254,Google Phone,1,600,03/12/19 09:47,"722 Highland St, Seattle, WA 98101" +184255,34in Ultrawide Monitor,1,379.99,03/04/19 18:29,"818 Park St, Portland, OR 97035" +184256,AAA Batteries (4-pack),1,2.99,03/21/19 11:12,"111 Center St, Boston, MA 02215" +184257,34in Ultrawide Monitor,1,379.99,03/18/19 16:20,"145 Washington St, Austin, TX 73301" +184258,iPhone,1,700,03/22/19 11:02,"407 Sunset St, New York City, NY 10001" +184259,27in FHD Monitor,1,149.99,03/08/19 10:07,"701 Meadow St, Dallas, TX 75001" +184260,Wired Headphones,1,11.99,03/22/19 01:11,"62 6th St, Los Angeles, CA 90001" +184261,USB-C Charging Cable,1,11.95,03/31/19 12:32,"712 5th St, Portland, OR 97035" +,,,,, +184262,Bose SoundSport Headphones,1,99.99,03/22/19 16:22,"171 Madison St, Dallas, TX 75001" +184263,Bose SoundSport Headphones,1,99.99,03/20/19 01:02,"685 North St, Portland, OR 97035" +184264,AA Batteries (4-pack),1,3.84,03/12/19 13:37,"884 4th St, New York City, NY 10001" +184265,AAA Batteries (4-pack),3,2.99,03/06/19 20:55,"689 Lincoln St, San Francisco, CA 94016" +184266,AA Batteries (4-pack),1,3.84,03/13/19 09:56,"455 11th St, Austin, TX 73301" +184267,Lightning Charging Cable,1,14.95,03/17/19 01:18,"764 4th St, Dallas, TX 75001" +184268,AAA Batteries (4-pack),1,2.99,03/22/19 11:03,"593 West St, Boston, MA 02215" +184269,Lightning Charging Cable,1,14.95,03/11/19 11:43,"793 Elm St, Dallas, TX 75001" +184270,27in FHD Monitor,1,149.99,03/12/19 10:27,"290 West St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +184271,Lightning Charging Cable,1,14.95,03/23/19 17:46,"364 Forest St, Boston, MA 02215" +184272,AA Batteries (4-pack),1,3.84,03/31/19 22:35,"609 Maple St, San Francisco, CA 94016" +184273,Bose SoundSport Headphones,1,99.99,03/03/19 22:43,"328 Elm St, Los Angeles, CA 90001" +184274,USB-C Charging Cable,1,11.95,03/07/19 10:41,"568 Jackson St, Dallas, TX 75001" +184275,Lightning Charging Cable,1,14.95,03/24/19 17:02,"540 River St, Boston, MA 02215" +184276,USB-C Charging Cable,1,11.95,03/14/19 16:20,"165 2nd St, Boston, MA 02215" +184277,Flatscreen TV,1,300,03/11/19 20:38,"186 Church St, Portland, OR 97035" +184278,AA Batteries (4-pack),1,3.84,03/03/19 20:09,"440 Washington St, Los Angeles, CA 90001" +184279,27in 4K Gaming Monitor,1,389.99,03/05/19 00:40,"626 Lincoln St, New York City, NY 10001" +184280,USB-C Charging Cable,1,11.95,03/06/19 12:04,"420 Lincoln St, New York City, NY 10001" +184281,iPhone,1,700,03/07/19 07:08,"622 9th St, Portland, OR 97035" +184282,34in Ultrawide Monitor,1,379.99,03/05/19 19:05,"424 Park St, Austin, TX 73301" +184283,Apple Airpods Headphones,1,150,03/06/19 18:27,"155 Adams St, San Francisco, CA 94016" +184284,AAA Batteries (4-pack),1,2.99,03/05/19 21:57,"133 Ridge St, Austin, TX 73301" +184285,Lightning Charging Cable,1,14.95,03/09/19 16:56,"336 4th St, Atlanta, GA 30301" +184286,AAA Batteries (4-pack),1,2.99,03/04/19 18:52,"110 Center St, Austin, TX 73301" +184287,AA Batteries (4-pack),3,3.84,03/01/19 18:07,"299 Washington St, San Francisco, CA 94016" +184288,Lightning Charging Cable,1,14.95,03/24/19 15:56,"765 Meadow St, Los Angeles, CA 90001" +184289,Bose SoundSport Headphones,1,99.99,03/13/19 22:28,"865 North St, San Francisco, CA 94016" +184290,Google Phone,1,600,03/14/19 14:06,"778 North St, New York City, NY 10001" +184291,34in Ultrawide Monitor,1,379.99,03/29/19 12:06,"482 Cedar St, Austin, TX 73301" +184292,Apple Airpods Headphones,1,150,03/18/19 17:10,"340 Hill St, Boston, MA 02215" +184293,Macbook Pro Laptop,1,1700,03/12/19 22:07,"752 Sunset St, San Francisco, CA 94016" +184294,Vareebadd Phone,1,400,03/23/19 10:41,"259 Willow St, Boston, MA 02215" +184295,USB-C Charging Cable,1,11.95,03/14/19 11:55,"327 Spruce St, San Francisco, CA 94016" +184296,27in 4K Gaming Monitor,1,389.99,03/13/19 10:53,"204 Meadow St, Los Angeles, CA 90001" +184297,AA Batteries (4-pack),4,3.84,03/01/19 16:55,"565 8th St, Atlanta, GA 30301" +184298,USB-C Charging Cable,1,11.95,03/28/19 00:03,"939 Park St, San Francisco, CA 94016" +184299,USB-C Charging Cable,1,11.95,03/01/19 23:31,"733 Highland St, Los Angeles, CA 90001" +184300,AAA Batteries (4-pack),2,2.99,03/26/19 09:55,"831 12th St, Los Angeles, CA 90001" +184301,AAA Batteries (4-pack),2,2.99,03/07/19 15:36,"557 Spruce St, New York City, NY 10001" +184302,iPhone,1,700,03/22/19 17:09,"494 Spruce St, Dallas, TX 75001" +184303,iPhone,1,700,03/15/19 08:55,"21 Washington St, Atlanta, GA 30301" +184304,Apple Airpods Headphones,1,150,03/18/19 10:24,"243 Chestnut St, Dallas, TX 75001" +184305,Wired Headphones,1,11.99,03/11/19 14:37,"359 13th St, Portland, OR 97035" +184306,iPhone,1,700,03/11/19 08:23,"209 10th St, Austin, TX 73301" +184307,27in FHD Monitor,1,149.99,03/07/19 14:06,"907 11th St, San Francisco, CA 94016" +184308,Apple Airpods Headphones,1,150,03/04/19 13:41,"152 Cherry St, Portland, OR 97035" +184309,Apple Airpods Headphones,1,150,03/20/19 11:44,"487 13th St, Los Angeles, CA 90001" +184310,20in Monitor,1,109.99,03/31/19 23:48,"965 12th St, New York City, NY 10001" +184311,20in Monitor,1,109.99,03/11/19 19:57,"250 Forest St, Boston, MA 02215" +184312,Wired Headphones,2,11.99,03/16/19 23:04,"65 Church St, Los Angeles, CA 90001" +184313,AA Batteries (4-pack),1,3.84,03/19/19 14:17,"653 Elm St, New York City, NY 10001" +184314,Wired Headphones,1,11.99,03/08/19 16:17,"965 6th St, New York City, NY 10001" +184315,USB-C Charging Cable,1,11.95,03/09/19 14:36,"625 4th St, Los Angeles, CA 90001" +184316,AAA Batteries (4-pack),2,2.99,03/01/19 23:45,"866 Highland St, Seattle, WA 98101" +184317,AA Batteries (4-pack),1,3.84,03/14/19 21:48,"397 Cherry St, New York City, NY 10001" +184318,Lightning Charging Cable,1,14.95,03/12/19 19:19,"895 12th St, Boston, MA 02215" +184319,27in 4K Gaming Monitor,1,389.99,03/11/19 15:31,"376 Cedar St, Austin, TX 73301" +184320,USB-C Charging Cable,1,11.95,03/29/19 14:19,"910 13th St, Dallas, TX 75001" +184321,USB-C Charging Cable,1,11.95,03/17/19 17:58,"645 Main St, Boston, MA 02215" +184322,Macbook Pro Laptop,1,1700,03/20/19 14:21,"250 Lakeview St, San Francisco, CA 94016" +184323,AAA Batteries (4-pack),1,2.99,03/23/19 23:43,"89 4th St, San Francisco, CA 94016" +184324,AAA Batteries (4-pack),1,2.99,03/01/19 08:12,"403 River St, New York City, NY 10001" +184325,Bose SoundSport Headphones,1,99.99,03/19/19 13:29,"470 13th St, Portland, OR 97035" +184326,Wired Headphones,2,11.99,03/09/19 18:41,"485 10th St, Seattle, WA 98101" +184327,Lightning Charging Cable,1,14.95,03/25/19 23:31,"556 13th St, Los Angeles, CA 90001" +184328,Wired Headphones,1,11.99,03/16/19 03:31,"457 Walnut St, Los Angeles, CA 90001" +184329,AAA Batteries (4-pack),1,2.99,03/29/19 10:38,"560 7th St, Los Angeles, CA 90001" +184330,Bose SoundSport Headphones,2,99.99,03/05/19 10:05,"531 1st St, Atlanta, GA 30301" +184331,AAA Batteries (4-pack),1,2.99,03/25/19 13:18,"627 Maple St, Los Angeles, CA 90001" +184332,27in 4K Gaming Monitor,1,389.99,03/20/19 14:28,"210 West St, New York City, NY 10001" +184333,AA Batteries (4-pack),1,3.84,03/17/19 16:05,"489 5th St, San Francisco, CA 94016" +184334,27in FHD Monitor,1,149.99,03/19/19 10:57,"290 Dogwood St, Portland, OR 97035" +184335,Macbook Pro Laptop,1,1700,03/21/19 21:36,"961 Madison St, Dallas, TX 75001" +184336,Vareebadd Phone,1,400,03/07/19 07:53,"989 Meadow St, San Francisco, CA 94016" +184337,AA Batteries (4-pack),1,3.84,03/29/19 00:49,"566 Dogwood St, San Francisco, CA 94016" +184338,AAA Batteries (4-pack),1,2.99,03/12/19 15:56,"875 Spruce St, Dallas, TX 75001" +184339,AAA Batteries (4-pack),1,2.99,03/07/19 19:00,"869 Walnut St, Seattle, WA 98101" +184340,27in 4K Gaming Monitor,1,389.99,03/07/19 20:41,"192 Cherry St, Portland, OR 97035" +184341,Vareebadd Phone,1,400,03/01/19 09:45,"520 7th St, Boston, MA 02215" +184342,Bose SoundSport Headphones,1,99.99,03/17/19 11:06,"155 Adams St, San Francisco, CA 94016" +184343,USB-C Charging Cable,1,11.95,03/29/19 22:03,"139 2nd St, Los Angeles, CA 90001" +184344,Bose SoundSport Headphones,1,99.99,03/29/19 20:10,"236 Hickory St, New York City, NY 10001" +184345,Google Phone,1,600,03/18/19 09:31,"317 Hill St, Austin, TX 73301" +184345,Wired Headphones,1,11.99,03/18/19 09:31,"317 Hill St, Austin, TX 73301" +184346,USB-C Charging Cable,2,11.95,03/25/19 21:00,"331 14th St, San Francisco, CA 94016" +184347,USB-C Charging Cable,1,11.95,03/20/19 15:59,"404 7th St, San Francisco, CA 94016" +184348,34in Ultrawide Monitor,1,379.99,03/27/19 09:25,"916 Walnut St, Los Angeles, CA 90001" +184349,AAA Batteries (4-pack),1,2.99,03/27/19 13:48,"956 Madison St, New York City, NY 10001" +184350,27in FHD Monitor,1,149.99,03/01/19 12:18,"544 Hill St, Los Angeles, CA 90001" +184351,Google Phone,1,600,03/21/19 13:56,"232 7th St, Dallas, TX 75001" +184351,Wired Headphones,1,11.99,03/21/19 13:56,"232 7th St, Dallas, TX 75001" +184352,Bose SoundSport Headphones,1,99.99,03/08/19 12:53,"799 Main St, Boston, MA 02215" +184353,Lightning Charging Cable,1,14.95,03/02/19 11:45,"772 Adams St, Portland, ME 04101" +184354,27in 4K Gaming Monitor,1,389.99,03/21/19 13:42,"954 5th St, San Francisco, CA 94016" +184355,Lightning Charging Cable,1,14.95,03/18/19 00:21,"147 Ridge St, Los Angeles, CA 90001" +184356,20in Monitor,1,109.99,03/10/19 11:03,"654 Johnson St, Seattle, WA 98101" +184357,AAA Batteries (4-pack),1,2.99,03/06/19 10:58,"393 Johnson St, Los Angeles, CA 90001" +184358,Google Phone,1,600,03/04/19 15:24,"304 Willow St, San Francisco, CA 94016" +184358,USB-C Charging Cable,2,11.95,03/04/19 15:24,"304 Willow St, San Francisco, CA 94016" +184359,USB-C Charging Cable,1,11.95,03/24/19 11:09,"81 4th St, Los Angeles, CA 90001" +184360,Vareebadd Phone,1,400,03/26/19 17:08,"721 Meadow St, Atlanta, GA 30301" +184361,20in Monitor,1,109.99,03/30/19 08:31,"673 Forest St, New York City, NY 10001" +184362,USB-C Charging Cable,1,11.95,03/07/19 17:59,"718 Sunset St, San Francisco, CA 94016" +184363,AA Batteries (4-pack),1,3.84,03/14/19 18:45,"360 6th St, Los Angeles, CA 90001" +184364,Bose SoundSport Headphones,1,99.99,03/13/19 17:44,"876 7th St, Seattle, WA 98101" +184365,USB-C Charging Cable,1,11.95,03/27/19 19:06,"530 11th St, Dallas, TX 75001" +184366,USB-C Charging Cable,1,11.95,03/10/19 11:01,"954 North St, San Francisco, CA 94016" +184367,AAA Batteries (4-pack),1,2.99,03/13/19 15:34,"501 Meadow St, San Francisco, CA 94016" +184368,Apple Airpods Headphones,1,150,03/07/19 14:04,"601 Lakeview St, San Francisco, CA 94016" +184369,Apple Airpods Headphones,1,150,03/10/19 23:22,"870 Hill St, New York City, NY 10001" +184370,Lightning Charging Cable,1,14.95,03/21/19 09:32,"952 7th St, Atlanta, GA 30301" +184371,AA Batteries (4-pack),1,3.84,03/09/19 21:29,"525 6th St, Boston, MA 02215" +184372,Lightning Charging Cable,1,14.95,03/18/19 14:33,"590 5th St, Seattle, WA 98101" +184373,Lightning Charging Cable,1,14.95,03/24/19 14:31,"331 13th St, Los Angeles, CA 90001" +184374,Bose SoundSport Headphones,1,99.99,03/09/19 10:29,"694 Willow St, San Francisco, CA 94016" +184375,Google Phone,1,600,03/09/19 15:55,"914 North St, Dallas, TX 75001" +184376,Wired Headphones,1,11.99,03/12/19 08:35,"168 Pine St, Dallas, TX 75001" +184377,LG Washing Machine,1,600.0,03/05/19 13:43,"250 Spruce St, Dallas, TX 75001" +184378,27in FHD Monitor,1,149.99,03/24/19 19:28,"699 1st St, San Francisco, CA 94016" +184379,AAA Batteries (4-pack),1,2.99,03/20/19 13:14,"647 11th St, Austin, TX 73301" +184380,Lightning Charging Cable,1,14.95,03/03/19 11:40,"965 West St, Boston, MA 02215" +184381,USB-C Charging Cable,1,11.95,03/21/19 09:32,"128 Lake St, San Francisco, CA 94016" +184382,Apple Airpods Headphones,1,150,03/06/19 14:25,"253 Hill St, New York City, NY 10001" +184383,Bose SoundSport Headphones,1,99.99,03/20/19 17:23,"322 Center St, New York City, NY 10001" +184384,AAA Batteries (4-pack),1,2.99,03/18/19 17:42,"637 Forest St, Seattle, WA 98101" +184385,Wired Headphones,1,11.99,03/21/19 19:02,"364 Lincoln St, Dallas, TX 75001" +184386,AAA Batteries (4-pack),1,2.99,03/22/19 12:01,"313 River St, Boston, MA 02215" +184387,AAA Batteries (4-pack),3,2.99,03/23/19 11:47,"463 Main St, Seattle, WA 98101" +184388,USB-C Charging Cable,1,11.95,03/11/19 21:13,"965 Spruce St, San Francisco, CA 94016" +184389,AA Batteries (4-pack),1,3.84,03/18/19 15:34,"3 Dogwood St, Los Angeles, CA 90001" +184390,iPhone,1,700,03/30/19 23:11,"860 9th St, Seattle, WA 98101" +184391,27in 4K Gaming Monitor,1,389.99,03/31/19 21:58,"617 River St, Los Angeles, CA 90001" +184392,USB-C Charging Cable,1,11.95,03/20/19 15:00,"949 Main St, Austin, TX 73301" +184393,34in Ultrawide Monitor,1,379.99,03/23/19 20:26,"417 Willow St, Los Angeles, CA 90001" +184394,AAA Batteries (4-pack),1,2.99,03/30/19 20:19,"351 Meadow St, Boston, MA 02215" +184395,Flatscreen TV,1,300,03/27/19 18:54,"636 2nd St, Portland, OR 97035" +184396,Bose SoundSport Headphones,1,99.99,03/26/19 15:29,"466 8th St, Seattle, WA 98101" +184397,27in FHD Monitor,1,149.99,03/09/19 17:49,"624 Adams St, Boston, MA 02215" +184398,20in Monitor,1,109.99,03/28/19 23:20,"431 Pine St, San Francisco, CA 94016" +184399,Google Phone,1,600,03/07/19 15:46,"942 13th St, Los Angeles, CA 90001" +184400,AA Batteries (4-pack),1,3.84,03/01/19 13:20,"99 Lincoln St, Los Angeles, CA 90001" +184401,AAA Batteries (4-pack),1,2.99,03/28/19 12:33,"614 Madison St, San Francisco, CA 94016" +184402,27in 4K Gaming Monitor,1,389.99,03/24/19 08:50,"160 2nd St, Los Angeles, CA 90001" +184403,Bose SoundSport Headphones,1,99.99,03/31/19 08:48,"741 7th St, San Francisco, CA 94016" +184404,Wired Headphones,1,11.99,03/02/19 01:17,"146 Church St, San Francisco, CA 94016" +184405,iPhone,1,700,03/19/19 06:44,"223 Forest St, Boston, MA 02215" +184406,AA Batteries (4-pack),1,3.84,03/04/19 11:13,"492 Washington St, San Francisco, CA 94016" +184407,AA Batteries (4-pack),1,3.84,03/04/19 15:56,"97 Church St, Boston, MA 02215" +184408,Macbook Pro Laptop,1,1700,03/08/19 18:37,"625 River St, Seattle, WA 98101" +184409,34in Ultrawide Monitor,1,379.99,03/30/19 09:01,"315 Center St, San Francisco, CA 94016" +184410,27in FHD Monitor,1,149.99,03/06/19 20:03,"91 Elm St, Los Angeles, CA 90001" +184411,Apple Airpods Headphones,2,150,03/03/19 11:45,"718 Highland St, Seattle, WA 98101" +184412,AA Batteries (4-pack),1,3.84,03/28/19 05:18,"991 Jefferson St, Seattle, WA 98101" +184413,Bose SoundSport Headphones,1,99.99,03/21/19 22:24,"541 Lincoln St, San Francisco, CA 94016" +184414,Apple Airpods Headphones,1,150,03/17/19 20:41,"493 11th St, San Francisco, CA 94016" +184415,iPhone,1,700,03/11/19 19:15,"283 Adams St, Boston, MA 02215" +184415,Apple Airpods Headphones,1,150,03/11/19 19:15,"283 Adams St, Boston, MA 02215" +184416,USB-C Charging Cable,1,11.95,03/12/19 13:18,"624 Chestnut St, San Francisco, CA 94016" +184417,Flatscreen TV,1,300,03/30/19 10:27,"620 1st St, Austin, TX 73301" +184418,Wired Headphones,1,11.99,03/30/19 15:13,"471 5th St, Seattle, WA 98101" +184419,Apple Airpods Headphones,1,150,03/09/19 16:34,"345 13th St, Boston, MA 02215" +184420,Wired Headphones,1,11.99,03/31/19 21:41,"528 Cedar St, Portland, OR 97035" +184421,Bose SoundSport Headphones,1,99.99,03/08/19 17:42,"759 Madison St, Dallas, TX 75001" +184422,Lightning Charging Cable,1,14.95,03/28/19 08:19,"591 West St, San Francisco, CA 94016" +184423,27in FHD Monitor,1,149.99,03/01/19 12:49,"512 Jackson St, New York City, NY 10001" +184424,AAA Batteries (4-pack),1,2.99,03/31/19 13:54,"568 Cherry St, Los Angeles, CA 90001" +184425,Wired Headphones,1,11.99,03/01/19 20:03,"32 Spruce St, San Francisco, CA 94016" +184426,20in Monitor,1,109.99,03/20/19 14:53,"502 Forest St, San Francisco, CA 94016" +184427,Vareebadd Phone,1,400,03/18/19 22:55,"55 West St, Atlanta, GA 30301" +184427,AAA Batteries (4-pack),3,2.99,03/18/19 22:55,"55 West St, Atlanta, GA 30301" +184428,AAA Batteries (4-pack),1,2.99,03/26/19 18:40,"782 7th St, Seattle, WA 98101" +184429,Flatscreen TV,1,300,03/04/19 08:34,"46 Main St, Portland, OR 97035" +184430,Bose SoundSport Headphones,1,99.99,03/27/19 20:06,"33 9th St, Boston, MA 02215" +184431,ThinkPad Laptop,1,999.99,03/11/19 09:00,"550 14th St, San Francisco, CA 94016" +184432,AA Batteries (4-pack),1,3.84,03/07/19 20:41,"879 River St, San Francisco, CA 94016" +184433,AAA Batteries (4-pack),1,2.99,03/16/19 19:08,"158 Lakeview St, San Francisco, CA 94016" +184434,Apple Airpods Headphones,1,150,03/23/19 16:38,"201 Madison St, Dallas, TX 75001" +184435,Vareebadd Phone,1,400,03/10/19 10:21,"960 Willow St, Boston, MA 02215" +184436,Apple Airpods Headphones,1,150,03/21/19 16:54,"633 14th St, Boston, MA 02215" +184437,27in 4K Gaming Monitor,1,389.99,03/08/19 18:40,"908 Lake St, Los Angeles, CA 90001" +184438,AA Batteries (4-pack),1,3.84,03/19/19 08:03,"131 13th St, Los Angeles, CA 90001" +184439,AAA Batteries (4-pack),1,2.99,03/20/19 11:48,"963 River St, Boston, MA 02215" +184440,AA Batteries (4-pack),1,3.84,03/26/19 15:29,"46 Jackson St, Atlanta, GA 30301" +184441,Lightning Charging Cable,1,14.95,03/23/19 20:36,"465 Spruce St, Atlanta, GA 30301" +184442,20in Monitor,1,109.99,03/30/19 20:53,"351 Maple St, San Francisco, CA 94016" +184443,AA Batteries (4-pack),1,3.84,03/24/19 21:54,"986 4th St, San Francisco, CA 94016" +184444,34in Ultrawide Monitor,1,379.99,03/06/19 22:07,"706 Lake St, Los Angeles, CA 90001" +184445,Apple Airpods Headphones,1,150,03/22/19 22:28,"439 10th St, Seattle, WA 98101" +184446,Flatscreen TV,1,300,03/31/19 10:39,"208 Jefferson St, San Francisco, CA 94016" +184447,Google Phone,1,600,03/10/19 16:12,"93 Cedar St, San Francisco, CA 94016" +184448,AAA Batteries (4-pack),2,2.99,03/06/19 23:56,"519 Meadow St, San Francisco, CA 94016" +184449,AAA Batteries (4-pack),1,2.99,03/28/19 22:20,"790 11th St, Boston, MA 02215" +184450,Lightning Charging Cable,1,14.95,03/08/19 10:40,"514 Elm St, Boston, MA 02215" +184451,Apple Airpods Headphones,1,150,03/02/19 22:13,"815 South St, Dallas, TX 75001" +184452,iPhone,1,700,03/31/19 19:51,"325 Dogwood St, Austin, TX 73301" +184453,20in Monitor,1,109.99,03/07/19 14:44,"42 Pine St, Portland, OR 97035" +184454,20in Monitor,1,109.99,03/11/19 00:52,"149 Hickory St, Seattle, WA 98101" +184455,Google Phone,1,600,03/28/19 09:57,"881 Park St, Los Angeles, CA 90001" +184455,Bose SoundSport Headphones,1,99.99,03/28/19 09:57,"881 Park St, Los Angeles, CA 90001" +184456,Google Phone,1,600,03/22/19 08:57,"156 Lakeview St, Atlanta, GA 30301" +184457,27in FHD Monitor,1,149.99,03/05/19 08:07,"608 Meadow St, New York City, NY 10001" +184458,Wired Headphones,1,11.99,03/17/19 02:43,"523 13th St, Seattle, WA 98101" +184459,Wired Headphones,1,11.99,03/21/19 21:49,"325 Jefferson St, Atlanta, GA 30301" +184460,Bose SoundSport Headphones,1,99.99,03/22/19 21:30,"355 Walnut St, New York City, NY 10001" +184461,Lightning Charging Cable,1,14.95,03/06/19 23:44,"57 North St, San Francisco, CA 94016" +184462,USB-C Charging Cable,1,11.95,03/03/19 19:56,"244 River St, Los Angeles, CA 90001" +184463,34in Ultrawide Monitor,1,379.99,03/26/19 20:41,"368 Sunset St, San Francisco, CA 94016" +,,,,, +184464,27in 4K Gaming Monitor,1,389.99,03/27/19 19:36,"240 Lake St, San Francisco, CA 94016" +184465,27in FHD Monitor,1,149.99,03/22/19 12:19,"701 Walnut St, San Francisco, CA 94016" +184466,27in FHD Monitor,1,149.99,03/20/19 19:08,"156 Adams St, Boston, MA 02215" +184467,Bose SoundSport Headphones,1,99.99,03/01/19 22:07,"703 Jefferson St, Los Angeles, CA 90001" +184468,AA Batteries (4-pack),1,3.84,03/30/19 19:39,"319 2nd St, New York City, NY 10001" +184469,Lightning Charging Cable,1,14.95,03/12/19 21:57,"704 Pine St, Boston, MA 02215" +184470,USB-C Charging Cable,1,11.95,03/31/19 20:09,"994 Center St, Seattle, WA 98101" +184471,Bose SoundSport Headphones,1,99.99,03/18/19 11:45,"651 13th St, Portland, OR 97035" +184472,AAA Batteries (4-pack),1,2.99,03/27/19 15:02,"772 Park St, Los Angeles, CA 90001" +184473,27in 4K Gaming Monitor,1,389.99,03/16/19 14:59,"694 Lake St, San Francisco, CA 94016" +184474,Lightning Charging Cable,1,14.95,03/11/19 17:28,"106 Jefferson St, New York City, NY 10001" +184475,USB-C Charging Cable,1,11.95,03/31/19 10:15,"533 Lakeview St, Austin, TX 73301" +184476,USB-C Charging Cable,1,11.95,03/20/19 16:20,"552 2nd St, New York City, NY 10001" +184477,USB-C Charging Cable,1,11.95,03/01/19 20:43,"319 Adams St, Boston, MA 02215" +184478,Wired Headphones,1,11.99,03/10/19 00:04,"541 7th St, Boston, MA 02215" +184479,AA Batteries (4-pack),1,3.84,03/05/19 23:34,"708 9th St, Boston, MA 02215" +184480,AA Batteries (4-pack),1,3.84,03/29/19 21:29,"717 12th St, Seattle, WA 98101" +184481,Wired Headphones,1,11.99,03/15/19 18:45,"730 Park St, Dallas, TX 75001" +184482,Apple Airpods Headphones,1,150,03/15/19 15:22,"639 Main St, Atlanta, GA 30301" +184483,Bose SoundSport Headphones,1,99.99,03/11/19 18:45,"901 Sunset St, Boston, MA 02215" +184484,27in FHD Monitor,1,149.99,03/31/19 21:04,"919 11th St, San Francisco, CA 94016" +184485,AA Batteries (4-pack),1,3.84,03/26/19 14:17,"8 North St, San Francisco, CA 94016" +184486,AA Batteries (4-pack),1,3.84,03/15/19 13:21,"977 4th St, Seattle, WA 98101" +184487,27in FHD Monitor,1,149.99,03/19/19 10:27,"90 Pine St, San Francisco, CA 94016" +184488,Wired Headphones,1,11.99,03/20/19 01:07,"616 Highland St, New York City, NY 10001" +184489,AAA Batteries (4-pack),2,2.99,03/02/19 16:38,"394 North St, Dallas, TX 75001" +184490,27in 4K Gaming Monitor,1,389.99,03/16/19 01:40,"923 Spruce St, Los Angeles, CA 90001" +184491,Lightning Charging Cable,1,14.95,03/12/19 15:31,"990 2nd St, Boston, MA 02215" +184492,27in 4K Gaming Monitor,1,389.99,03/31/19 10:10,"543 Madison St, Austin, TX 73301" +184493,AAA Batteries (4-pack),1,2.99,03/16/19 20:47,"816 Walnut St, Atlanta, GA 30301" +184494,AA Batteries (4-pack),3,3.84,03/06/19 21:36,"322 Johnson St, Dallas, TX 75001" +184495,AA Batteries (4-pack),1,3.84,03/11/19 19:33,"394 River St, New York City, NY 10001" +184496,Flatscreen TV,1,300,03/16/19 07:43,"974 Walnut St, Dallas, TX 75001" +184497,Google Phone,1,600,03/03/19 06:06,"943 Chestnut St, Atlanta, GA 30301" +184498,27in FHD Monitor,1,149.99,03/18/19 23:15,"814 Church St, San Francisco, CA 94016" +184499,Bose SoundSport Headphones,1,99.99,03/07/19 07:52,"882 Dogwood St, San Francisco, CA 94016" +184500,Wired Headphones,1,11.99,03/06/19 21:24,"808 Sunset St, New York City, NY 10001" +184501,27in FHD Monitor,1,149.99,03/25/19 17:21,"291 Adams St, Dallas, TX 75001" +184502,AA Batteries (4-pack),2,3.84,03/03/19 18:14,"705 Pine St, Los Angeles, CA 90001" +184503,27in 4K Gaming Monitor,1,389.99,03/13/19 19:40,"393 Adams St, Seattle, WA 98101" +184504,Bose SoundSport Headphones,1,99.99,03/18/19 22:11,"544 14th St, Atlanta, GA 30301" +184505,AAA Batteries (4-pack),1,2.99,03/08/19 11:56,"808 Ridge St, Austin, TX 73301" +184506,Google Phone,1,600,03/31/19 11:34,"756 11th St, New York City, NY 10001" +184507,iPhone,1,700,03/04/19 12:27,"154 Willow St, New York City, NY 10001" +184508,Apple Airpods Headphones,1,150,03/20/19 09:54,"177 11th St, Dallas, TX 75001" +184509,Wired Headphones,1,11.99,03/05/19 11:06,"690 Spruce St, Portland, OR 97035" +184510,27in 4K Gaming Monitor,1,389.99,03/04/19 00:43,"610 Sunset St, San Francisco, CA 94016" +184511,Apple Airpods Headphones,1,150,03/04/19 12:15,"870 1st St, Austin, TX 73301" +184512,AA Batteries (4-pack),1,3.84,03/30/19 17:51,"843 Madison St, San Francisco, CA 94016" +184513,AAA Batteries (4-pack),1,2.99,03/31/19 11:42,"618 Spruce St, San Francisco, CA 94016" +184513,Lightning Charging Cable,2,14.95,03/31/19 11:42,"618 Spruce St, San Francisco, CA 94016" +184514,Lightning Charging Cable,1,14.95,03/03/19 10:00,"999 Center St, Boston, MA 02215" +184515,AAA Batteries (4-pack),2,2.99,03/30/19 11:53,"601 North St, Seattle, WA 98101" +184516,Lightning Charging Cable,1,14.95,03/22/19 11:16,"85 Spruce St, Dallas, TX 75001" +184517,Lightning Charging Cable,1,14.95,03/10/19 19:39,"829 Meadow St, New York City, NY 10001" +184518,AA Batteries (4-pack),1,3.84,03/26/19 08:21,"181 Main St, New York City, NY 10001" +184519,Flatscreen TV,1,300,03/13/19 09:32,"544 North St, San Francisco, CA 94016" +184520,Wired Headphones,1,11.99,03/10/19 20:28,"566 North St, New York City, NY 10001" +184521,Lightning Charging Cable,1,14.95,03/21/19 10:20,"529 Main St, Boston, MA 02215" +184522,AA Batteries (4-pack),1,3.84,03/02/19 23:11,"236 Highland St, Los Angeles, CA 90001" +184523,34in Ultrawide Monitor,1,379.99,03/12/19 02:25,"366 Adams St, San Francisco, CA 94016" +184524,AA Batteries (4-pack),2,3.84,03/16/19 20:07,"945 Spruce St, San Francisco, CA 94016" +184525,Wired Headphones,2,11.99,03/14/19 15:01,"31 Wilson St, Los Angeles, CA 90001" +184526,Wired Headphones,1,11.99,03/05/19 23:27,"285 Cherry St, Atlanta, GA 30301" +184527,27in 4K Gaming Monitor,1,389.99,03/11/19 15:30,"243 Center St, Atlanta, GA 30301" +184528,AAA Batteries (4-pack),2,2.99,03/15/19 07:56,"973 Johnson St, San Francisco, CA 94016" +184529,Vareebadd Phone,1,400,03/24/19 00:21,"562 Johnson St, Boston, MA 02215" +184530,USB-C Charging Cable,1,11.95,03/11/19 17:35,"933 Park St, Los Angeles, CA 90001" +184531,Flatscreen TV,1,300,03/17/19 23:16,"466 9th St, Atlanta, GA 30301" +184532,Wired Headphones,1,11.99,03/24/19 12:46,"943 Chestnut St, Dallas, TX 75001" +184533,27in FHD Monitor,1,149.99,03/04/19 06:58,"87 River St, New York City, NY 10001" +184534,Macbook Pro Laptop,1,1700,03/24/19 12:08,"828 14th St, San Francisco, CA 94016" +184535,Bose SoundSport Headphones,1,99.99,03/05/19 02:04,"235 Pine St, New York City, NY 10001" +184536,ThinkPad Laptop,1,999.99,03/23/19 17:04,"982 Pine St, Portland, OR 97035" +184537,Bose SoundSport Headphones,1,99.99,03/01/19 14:49,"138 Highland St, Austin, TX 73301" +184538,AAA Batteries (4-pack),4,2.99,03/31/19 12:56,"200 Forest St, Los Angeles, CA 90001" +184539,AAA Batteries (4-pack),1,2.99,03/09/19 13:26,"254 Highland St, Dallas, TX 75001" +184540,Lightning Charging Cable,1,14.95,03/22/19 20:14,"705 12th St, Los Angeles, CA 90001" +184541,AA Batteries (4-pack),1,3.84,03/18/19 00:38,"271 Ridge St, Portland, OR 97035" +184542,Wired Headphones,1,11.99,03/23/19 16:37,"362 5th St, Portland, OR 97035" +184543,Lightning Charging Cable,1,14.95,03/21/19 23:46,"903 Ridge St, New York City, NY 10001" +184544,Apple Airpods Headphones,1,150,03/16/19 19:30,"941 Cherry St, Dallas, TX 75001" +184545,USB-C Charging Cable,1,11.95,03/07/19 18:47,"207 Highland St, San Francisco, CA 94016" +184546,20in Monitor,1,109.99,03/04/19 20:15,"149 7th St, Boston, MA 02215" +184547,20in Monitor,1,109.99,03/08/19 20:24,"143 Walnut St, Portland, OR 97035" +184548,ThinkPad Laptop,1,999.99,03/10/19 21:14,"461 Jackson St, San Francisco, CA 94016" +184549,ThinkPad Laptop,1,999.99,03/09/19 08:19,"355 9th St, Los Angeles, CA 90001" +184550,USB-C Charging Cable,1,11.95,03/31/19 22:31,"417 Johnson St, Dallas, TX 75001" +184551,Google Phone,1,600,03/06/19 10:41,"795 Adams St, Atlanta, GA 30301" +184552,27in 4K Gaming Monitor,1,389.99,03/29/19 00:44,"143 River St, San Francisco, CA 94016" +184553,Lightning Charging Cable,1,14.95,03/08/19 14:40,"393 Willow St, San Francisco, CA 94016" +184554,USB-C Charging Cable,1,11.95,03/27/19 16:19,"542 11th St, Seattle, WA 98101" +184554,AAA Batteries (4-pack),1,2.99,03/27/19 16:19,"542 11th St, Seattle, WA 98101" +184555,AAA Batteries (4-pack),2,2.99,03/09/19 15:49,"483 Hickory St, Boston, MA 02215" +184556,USB-C Charging Cable,1,11.95,03/08/19 09:05,"55 Johnson St, Los Angeles, CA 90001" +184557,Lightning Charging Cable,1,14.95,03/30/19 22:37,"67 Madison St, Dallas, TX 75001" +184558,Wired Headphones,1,11.99,03/14/19 01:36,"600 Cedar St, Atlanta, GA 30301" +184559,USB-C Charging Cable,1,11.95,03/11/19 02:37,"271 Sunset St, Atlanta, GA 30301" +184560,Lightning Charging Cable,1,14.95,03/26/19 17:32,"554 Wilson St, Atlanta, GA 30301" +184561,USB-C Charging Cable,1,11.95,03/28/19 15:30,"258 Sunset St, Portland, OR 97035" +184562,Macbook Pro Laptop,1,1700,03/05/19 01:52,"175 Lincoln St, New York City, NY 10001" +184563,Wired Headphones,1,11.99,03/27/19 10:19,"750 Walnut St, Dallas, TX 75001" +184563,Apple Airpods Headphones,1,150,03/27/19 10:19,"750 Walnut St, Dallas, TX 75001" +184564,iPhone,1,700,03/05/19 11:16,"320 Jefferson St, Los Angeles, CA 90001" +184565,20in Monitor,1,109.99,03/11/19 22:19,"980 7th St, Portland, OR 97035" +184566,AAA Batteries (4-pack),1,2.99,03/14/19 21:31,"663 2nd St, San Francisco, CA 94016" +184567,Wired Headphones,1,11.99,03/07/19 08:10,"231 Hill St, New York City, NY 10001" +184568,Google Phone,1,600,03/14/19 10:19,"665 Willow St, Los Angeles, CA 90001" +184568,USB-C Charging Cable,1,11.95,03/14/19 10:19,"665 Willow St, Los Angeles, CA 90001" +184569,Apple Airpods Headphones,1,150,03/01/19 20:23,"205 Hill St, New York City, NY 10001" +184570,Macbook Pro Laptop,1,1700,03/23/19 19:26,"837 Cherry St, Seattle, WA 98101" +184571,20in Monitor,1,109.99,03/03/19 16:34,"274 Elm St, Los Angeles, CA 90001" +184572,AA Batteries (4-pack),1,3.84,03/30/19 03:02,"240 2nd St, San Francisco, CA 94016" +184573,AA Batteries (4-pack),2,3.84,03/26/19 10:41,"25 6th St, San Francisco, CA 94016" +184574,AAA Batteries (4-pack),1,2.99,03/18/19 15:07,"28 Sunset St, Los Angeles, CA 90001" +184575,iPhone,1,700,03/11/19 18:16,"58 Maple St, San Francisco, CA 94016" +184575,Lightning Charging Cable,1,14.95,03/11/19 18:16,"58 Maple St, San Francisco, CA 94016" +184576,Apple Airpods Headphones,1,150,04/01/19 00:51,"619 River St, San Francisco, CA 94016" +184577,Apple Airpods Headphones,2,150,03/28/19 18:47,"749 9th St, San Francisco, CA 94016" +184578,27in FHD Monitor,1,149.99,03/08/19 18:45,"503 Center St, San Francisco, CA 94016" +184579,Bose SoundSport Headphones,1,99.99,03/05/19 21:27,"484 Church St, Los Angeles, CA 90001" +184580,Bose SoundSport Headphones,1,99.99,03/13/19 09:20,"52 Meadow St, Los Angeles, CA 90001" +184581,Wired Headphones,1,11.99,03/04/19 18:20,"802 Jefferson St, Seattle, WA 98101" +184582,USB-C Charging Cable,1,11.95,03/15/19 21:37,"611 Sunset St, San Francisco, CA 94016" +184583,27in FHD Monitor,1,149.99,03/15/19 11:18,"618 5th St, San Francisco, CA 94016" +184584,AAA Batteries (4-pack),1,2.99,03/19/19 17:13,"729 River St, Los Angeles, CA 90001" +184585,Lightning Charging Cable,1,14.95,03/19/19 12:51,"260 South St, Los Angeles, CA 90001" +184586,iPhone,1,700,03/14/19 21:59,"616 Hickory St, Austin, TX 73301" +184587,AA Batteries (4-pack),2,3.84,03/25/19 16:45,"452 Jackson St, Atlanta, GA 30301" +184588,AAA Batteries (4-pack),1,2.99,03/04/19 22:36,"341 Ridge St, San Francisco, CA 94016" +184589,AA Batteries (4-pack),3,3.84,03/17/19 19:53,"46 Hickory St, New York City, NY 10001" +184590,27in FHD Monitor,1,149.99,03/06/19 10:23,"472 Madison St, Austin, TX 73301" +184591,34in Ultrawide Monitor,1,379.99,03/21/19 11:13,"8 Cedar St, Boston, MA 02215" +184592,Apple Airpods Headphones,1,150,03/01/19 17:16,"771 11th St, San Francisco, CA 94016" +184593,Apple Airpods Headphones,1,150,03/21/19 19:35,"379 Church St, Boston, MA 02215" +184594,Apple Airpods Headphones,1,150,03/25/19 11:19,"36 4th St, New York City, NY 10001" +184595,USB-C Charging Cable,1,11.95,03/15/19 21:32,"556 Cedar St, New York City, NY 10001" +184596,20in Monitor,1,109.99,03/02/19 19:36,"973 Main St, New York City, NY 10001" +184597,USB-C Charging Cable,1,11.95,03/30/19 18:20,"151 Maple St, Dallas, TX 75001" +184598,AAA Batteries (4-pack),1,2.99,03/15/19 12:29,"933 Forest St, San Francisco, CA 94016" +184599,Lightning Charging Cable,1,14.95,03/25/19 17:28,"866 Jefferson St, San Francisco, CA 94016" +184600,20in Monitor,1,109.99,03/09/19 13:32,"511 Hill St, Boston, MA 02215" +184601,Lightning Charging Cable,1,14.95,03/01/19 06:39,"417 River St, Austin, TX 73301" +184602,27in FHD Monitor,1,149.99,03/09/19 10:57,"389 Park St, New York City, NY 10001" +184603,Bose SoundSport Headphones,1,99.99,03/22/19 22:27,"54 4th St, New York City, NY 10001" +184604,ThinkPad Laptop,1,999.99,03/08/19 21:01,"299 North St, San Francisco, CA 94016" +184605,iPhone,1,700,03/01/19 07:50,"512 Sunset St, San Francisco, CA 94016" +184605,Wired Headphones,1,11.99,03/01/19 07:50,"512 Sunset St, San Francisco, CA 94016" +184606,iPhone,1,700,03/09/19 17:06,"204 West St, Los Angeles, CA 90001" +184607,AAA Batteries (4-pack),1,2.99,03/11/19 22:23,"702 7th St, New York City, NY 10001" +184608,27in 4K Gaming Monitor,1,389.99,03/08/19 20:59,"618 Highland St, Atlanta, GA 30301" +184609,Wired Headphones,1,11.99,03/23/19 21:50,"504 North St, San Francisco, CA 94016" +184610,AA Batteries (4-pack),2,3.84,03/14/19 08:49,"170 South St, San Francisco, CA 94016" +184611,Wired Headphones,1,11.99,03/29/19 11:34,"163 Lakeview St, San Francisco, CA 94016" +184612,Lightning Charging Cable,1,14.95,03/08/19 09:51,"146 West St, Seattle, WA 98101" +184613,AA Batteries (4-pack),1,3.84,03/09/19 08:58,"359 Sunset St, Atlanta, GA 30301" +184614,USB-C Charging Cable,1,11.95,03/01/19 21:45,"564 14th St, San Francisco, CA 94016" +184615,AA Batteries (4-pack),1,3.84,03/21/19 12:10,"908 2nd St, Portland, ME 04101" +184616,Lightning Charging Cable,2,14.95,03/18/19 00:12,"277 Main St, San Francisco, CA 94016" +184617,AA Batteries (4-pack),1,3.84,03/15/19 11:16,"946 1st St, Dallas, TX 75001" +184618,AAA Batteries (4-pack),1,2.99,03/20/19 19:53,"466 West St, Boston, MA 02215" +184619,27in FHD Monitor,1,149.99,03/04/19 20:50,"414 Lake St, Seattle, WA 98101" +184620,34in Ultrawide Monitor,1,379.99,03/22/19 07:59,"653 Cherry St, San Francisco, CA 94016" +184621,Lightning Charging Cable,1,14.95,03/29/19 10:46,"695 Cedar St, Seattle, WA 98101" +184622,27in FHD Monitor,1,149.99,03/10/19 16:02,"693 Ridge St, Dallas, TX 75001" +184623,Wired Headphones,1,11.99,03/09/19 19:05,"658 4th St, San Francisco, CA 94016" +184624,Apple Airpods Headphones,1,150,03/03/19 20:06,"339 Johnson St, New York City, NY 10001" +184625,Wired Headphones,1,11.99,03/19/19 10:33,"394 Chestnut St, Atlanta, GA 30301" +184626,AAA Batteries (4-pack),1,2.99,03/10/19 10:55,"297 Sunset St, Los Angeles, CA 90001" +184627,AAA Batteries (4-pack),6,2.99,03/06/19 13:42,"618 7th St, Austin, TX 73301" +184628,AA Batteries (4-pack),1,3.84,03/14/19 17:59,"565 13th St, Atlanta, GA 30301" +184629,Wired Headphones,1,11.99,03/20/19 11:12,"186 Lake St, San Francisco, CA 94016" +184630,AA Batteries (4-pack),1,3.84,03/29/19 14:36,"272 Cherry St, Atlanta, GA 30301" +184631,Lightning Charging Cable,1,14.95,03/05/19 18:05,"472 Jackson St, San Francisco, CA 94016" +184632,USB-C Charging Cable,1,11.95,03/27/19 08:33,"288 Highland St, Austin, TX 73301" +184633,Apple Airpods Headphones,1,150,03/10/19 22:23,"547 14th St, Portland, OR 97035" +184634,Bose SoundSport Headphones,1,99.99,03/27/19 13:16,"777 Lakeview St, San Francisco, CA 94016" +184635,Lightning Charging Cable,1,14.95,03/12/19 19:17,"200 Highland St, San Francisco, CA 94016" +184636,USB-C Charging Cable,2,11.95,03/15/19 20:05,"242 West St, Los Angeles, CA 90001" +184637,Macbook Pro Laptop,1,1700,03/15/19 16:50,"334 8th St, New York City, NY 10001" +184638,Lightning Charging Cable,1,14.95,03/13/19 10:19,"292 Walnut St, San Francisco, CA 94016" +,,,,, +184639,AA Batteries (4-pack),2,3.84,03/11/19 22:54,"616 Madison St, New York City, NY 10001" +184640,AA Batteries (4-pack),1,3.84,03/01/19 09:25,"471 12th St, Dallas, TX 75001" +184641,Flatscreen TV,1,300,03/02/19 19:39,"70 Washington St, Atlanta, GA 30301" +184642,Wired Headphones,1,11.99,03/11/19 23:28,"317 River St, Atlanta, GA 30301" +184643,Flatscreen TV,1,300,03/18/19 10:10,"892 Hickory St, San Francisco, CA 94016" +184644,AAA Batteries (4-pack),1,2.99,03/08/19 16:05,"670 12th St, New York City, NY 10001" +184645,20in Monitor,1,109.99,03/12/19 18:25,"426 Wilson St, Boston, MA 02215" +184646,USB-C Charging Cable,1,11.95,03/02/19 20:12,"498 Highland St, Los Angeles, CA 90001" +184647,Lightning Charging Cable,1,14.95,03/23/19 15:52,"554 4th St, Atlanta, GA 30301" +184648,Lightning Charging Cable,1,14.95,03/21/19 16:29,"868 Hickory St, Seattle, WA 98101" +184649,Wired Headphones,2,11.99,03/31/19 22:01,"406 Willow St, Seattle, WA 98101" +184650,USB-C Charging Cable,1,11.95,03/06/19 12:48,"743 4th St, San Francisco, CA 94016" +184651,Vareebadd Phone,1,400,03/02/19 11:35,"847 8th St, Los Angeles, CA 90001" +184652,27in 4K Gaming Monitor,1,389.99,03/31/19 20:29,"687 Cherry St, Los Angeles, CA 90001" +184653,Apple Airpods Headphones,1,150,03/30/19 18:08,"30 Cedar St, Boston, MA 02215" +184654,Lightning Charging Cable,1,14.95,03/21/19 18:22,"851 Church St, San Francisco, CA 94016" +184655,Lightning Charging Cable,1,14.95,03/23/19 20:19,"294 Hickory St, Los Angeles, CA 90001" +184656,Bose SoundSport Headphones,1,99.99,03/12/19 18:41,"718 7th St, Los Angeles, CA 90001" +184657,Bose SoundSport Headphones,1,99.99,03/15/19 18:42,"356 Hickory St, Los Angeles, CA 90001" +184658,AA Batteries (4-pack),1,3.84,03/06/19 19:42,"356 Madison St, San Francisco, CA 94016" +184659,AA Batteries (4-pack),1,3.84,03/05/19 17:13,"820 10th St, Seattle, WA 98101" +184660,Lightning Charging Cable,1,14.95,03/10/19 02:48,"471 Dogwood St, Dallas, TX 75001" +184661,34in Ultrawide Monitor,1,379.99,03/03/19 15:33,"954 Willow St, San Francisco, CA 94016" +184662,Bose SoundSport Headphones,1,99.99,03/25/19 17:56,"978 Adams St, Boston, MA 02215" +184663,USB-C Charging Cable,1,11.95,03/17/19 20:09,"113 10th St, San Francisco, CA 94016" +184664,Bose SoundSport Headphones,1,99.99,03/23/19 14:09,"279 Maple St, Portland, OR 97035" +184665,AA Batteries (4-pack),3,3.84,03/15/19 02:15,"155 West St, Austin, TX 73301" +184666,Google Phone,1,600,03/01/19 15:00,"767 Dogwood St, San Francisco, CA 94016" +184666,USB-C Charging Cable,1,11.95,03/01/19 15:00,"767 Dogwood St, San Francisco, CA 94016" +184666,Wired Headphones,1,11.99,03/01/19 15:00,"767 Dogwood St, San Francisco, CA 94016" +184667,Wired Headphones,1,11.99,03/27/19 19:13,"470 Pine St, San Francisco, CA 94016" +184668,Lightning Charging Cable,1,14.95,03/12/19 16:29,"510 Madison St, Austin, TX 73301" +184669,Lightning Charging Cable,1,14.95,03/18/19 18:12,"548 West St, Dallas, TX 75001" +184670,Google Phone,1,600,03/31/19 12:37,"400 Walnut St, Austin, TX 73301" +184670,USB-C Charging Cable,1,11.95,03/31/19 12:37,"400 Walnut St, Austin, TX 73301" +184671,Macbook Pro Laptop,1,1700,03/22/19 23:30,"900 9th St, New York City, NY 10001" +184672,27in 4K Gaming Monitor,1,389.99,03/18/19 11:49,"860 Jackson St, Los Angeles, CA 90001" +184673,Macbook Pro Laptop,1,1700,03/03/19 14:57,"922 Main St, New York City, NY 10001" +184674,Wired Headphones,1,11.99,03/20/19 18:41,"275 1st St, Los Angeles, CA 90001" +184675,Wired Headphones,1,11.99,03/13/19 18:18,"846 Washington St, New York City, NY 10001" +184676,Google Phone,1,600,03/06/19 16:21,"26 Jackson St, San Francisco, CA 94016" +184677,Lightning Charging Cable,1,14.95,03/20/19 20:06,"369 12th St, Los Angeles, CA 90001" +184678,AAA Batteries (4-pack),2,2.99,03/06/19 08:06,"89 Ridge St, Boston, MA 02215" +184679,AA Batteries (4-pack),2,3.84,03/22/19 22:53,"375 6th St, Los Angeles, CA 90001" +184680,27in 4K Gaming Monitor,1,389.99,03/05/19 05:27,"235 13th St, Seattle, WA 98101" +184681,Lightning Charging Cable,1,14.95,03/11/19 17:43,"646 Jefferson St, San Francisco, CA 94016" +184682,USB-C Charging Cable,1,11.95,03/11/19 21:31,"846 13th St, Los Angeles, CA 90001" +184682,Lightning Charging Cable,1,14.95,03/11/19 21:31,"846 13th St, Los Angeles, CA 90001" +184683,Macbook Pro Laptop,1,1700,03/14/19 19:23,"701 Pine St, Seattle, WA 98101" +184684,27in FHD Monitor,1,149.99,03/26/19 20:54,"701 Johnson St, Seattle, WA 98101" +184685,AA Batteries (4-pack),1,3.84,03/03/19 14:07,"859 8th St, New York City, NY 10001" +184686,USB-C Charging Cable,1,11.95,03/30/19 19:18,"95 4th St, Portland, OR 97035" +184687,Apple Airpods Headphones,1,150,03/04/19 08:46,"97 10th St, Boston, MA 02215" +184688,Lightning Charging Cable,1,14.95,03/03/19 16:39,"391 Lakeview St, Portland, OR 97035" +184689,27in FHD Monitor,1,149.99,03/22/19 17:07,"565 Cedar St, Los Angeles, CA 90001" +184690,Wired Headphones,1,11.99,03/17/19 22:21,"42 River St, Austin, TX 73301" +184691,Lightning Charging Cable,1,14.95,03/17/19 09:18,"918 Washington St, Austin, TX 73301" +184692,AA Batteries (4-pack),1,3.84,03/26/19 17:19,"835 Cherry St, Austin, TX 73301" +184693,AA Batteries (4-pack),1,3.84,03/11/19 19:47,"215 Spruce St, Los Angeles, CA 90001" +184694,Bose SoundSport Headphones,1,99.99,03/13/19 05:45,"569 Sunset St, Atlanta, GA 30301" +184695,Lightning Charging Cable,1,14.95,03/26/19 12:36,"13 Jefferson St, Boston, MA 02215" +184696,Bose SoundSport Headphones,1,99.99,03/18/19 16:57,"853 Johnson St, Boston, MA 02215" +184697,AAA Batteries (4-pack),2,2.99,03/27/19 11:28,"801 Jackson St, San Francisco, CA 94016" +184698,Lightning Charging Cable,1,14.95,03/05/19 20:57,"979 13th St, New York City, NY 10001" +184699,34in Ultrawide Monitor,1,379.99,03/16/19 17:49,"229 Forest St, Boston, MA 02215" +184700,Wired Headphones,1,11.99,03/01/19 13:15,"794 Jefferson St, Austin, TX 73301" +184701,Wired Headphones,1,11.99,03/29/19 12:37,"618 14th St, San Francisco, CA 94016" +184702,Lightning Charging Cable,1,14.95,03/11/19 12:13,"529 Sunset St, San Francisco, CA 94016" +184703,20in Monitor,1,109.99,03/16/19 20:54,"286 Center St, Dallas, TX 75001" +184704,27in FHD Monitor,1,149.99,03/13/19 10:44,"532 West St, Atlanta, GA 30301" +184705,27in FHD Monitor,1,149.99,03/06/19 21:08,"566 West St, New York City, NY 10001" +184706,USB-C Charging Cable,1,11.95,03/28/19 13:14,"869 North St, Portland, OR 97035" +184707,USB-C Charging Cable,1,11.95,03/09/19 05:56,"591 Jefferson St, Seattle, WA 98101" +184708,Wired Headphones,1,11.99,03/20/19 13:38,"119 13th St, Boston, MA 02215" +184709,Google Phone,1,600,03/10/19 13:44,"173 Wilson St, Los Angeles, CA 90001" +184709,USB-C Charging Cable,1,11.95,03/10/19 13:44,"173 Wilson St, Los Angeles, CA 90001" +184710,Bose SoundSport Headphones,1,99.99,03/10/19 11:05,"926 8th St, Los Angeles, CA 90001" +184711,Flatscreen TV,1,300,03/24/19 17:04,"869 Hill St, Los Angeles, CA 90001" +184712,Google Phone,1,600,03/25/19 19:40,"288 Wilson St, Dallas, TX 75001" +184713,USB-C Charging Cable,1,11.95,03/17/19 15:01,"564 Meadow St, Seattle, WA 98101" +184714,USB-C Charging Cable,1,11.95,03/11/19 12:55,"297 Forest St, Los Angeles, CA 90001" +184715,Wired Headphones,1,11.99,03/15/19 12:27,"592 North St, San Francisco, CA 94016" +184716,Lightning Charging Cable,1,14.95,03/30/19 09:33,"529 7th St, Atlanta, GA 30301" +184717,27in FHD Monitor,1,149.99,03/24/19 13:27,"699 Adams St, San Francisco, CA 94016" +184718,AAA Batteries (4-pack),1,2.99,03/12/19 22:23,"718 5th St, Los Angeles, CA 90001" +184719,AAA Batteries (4-pack),1,2.99,03/06/19 20:55,"81 River St, Dallas, TX 75001" +184720,Vareebadd Phone,1,400,03/29/19 17:57,"556 Sunset St, Portland, ME 04101" +184721,AAA Batteries (4-pack),1,2.99,03/20/19 06:08,"715 1st St, Boston, MA 02215" +184722,USB-C Charging Cable,1,11.95,03/02/19 11:47,"435 Church St, San Francisco, CA 94016" +184723,AA Batteries (4-pack),1,3.84,03/08/19 13:17,"473 Elm St, New York City, NY 10001" +184724,AA Batteries (4-pack),1,3.84,03/20/19 10:33,"858 1st St, Atlanta, GA 30301" +184725,Macbook Pro Laptop,1,1700,03/04/19 13:46,"405 8th St, Los Angeles, CA 90001" +184726,iPhone,1,700,03/16/19 07:54,"494 Forest St, Boston, MA 02215" +184727,Google Phone,1,600,03/06/19 08:33,"803 Elm St, Boston, MA 02215" +184727,Wired Headphones,1,11.99,03/06/19 08:33,"803 Elm St, Boston, MA 02215" +184728,Apple Airpods Headphones,1,150,03/12/19 19:07,"673 4th St, San Francisco, CA 94016" +184729,Wired Headphones,1,11.99,03/07/19 22:26,"292 1st St, Seattle, WA 98101" +184730,iPhone,1,700,03/10/19 12:46,"994 Forest St, Los Angeles, CA 90001" +184731,Bose SoundSport Headphones,1,99.99,03/26/19 13:03,"670 Hickory St, Los Angeles, CA 90001" +184732,AAA Batteries (4-pack),2,2.99,03/26/19 18:59,"471 Maple St, Austin, TX 73301" +184733,iPhone,1,700,03/30/19 17:24,"660 Cedar St, Portland, OR 97035" +184734,Bose SoundSport Headphones,1,99.99,03/12/19 22:49,"374 Ridge St, Atlanta, GA 30301" +184735,20in Monitor,1,109.99,03/06/19 10:08,"991 Johnson St, Los Angeles, CA 90001" +184736,Lightning Charging Cable,1,14.95,03/04/19 20:16,"658 Maple St, Atlanta, GA 30301" +184737,Wired Headphones,1,11.99,03/15/19 23:30,"658 Ridge St, Seattle, WA 98101" +184738,ThinkPad Laptop,1,999.99,03/25/19 07:58,"416 Chestnut St, New York City, NY 10001" +184738,iPhone,1,700,03/25/19 07:58,"416 Chestnut St, New York City, NY 10001" +184739,AAA Batteries (4-pack),2,2.99,03/29/19 21:21,"711 Cherry St, Boston, MA 02215" +184740,AAA Batteries (4-pack),3,2.99,03/30/19 16:59,"146 Center St, San Francisco, CA 94016" +184741,AA Batteries (4-pack),1,3.84,03/11/19 16:31,"860 Lake St, Austin, TX 73301" +184742,Wired Headphones,1,11.99,03/05/19 18:05,"523 11th St, Boston, MA 02215" +184743,34in Ultrawide Monitor,1,379.99,03/30/19 18:08,"542 Lakeview St, San Francisco, CA 94016" +184744,USB-C Charging Cable,2,11.95,03/07/19 13:59,"518 South St, New York City, NY 10001" +184745,AAA Batteries (4-pack),1,2.99,03/09/19 15:45,"589 Johnson St, New York City, NY 10001" +184746,USB-C Charging Cable,1,11.95,03/21/19 23:06,"451 Lincoln St, New York City, NY 10001" +184747,Lightning Charging Cable,1,14.95,03/27/19 20:30,"345 West St, Los Angeles, CA 90001" +184748,Lightning Charging Cable,1,14.95,03/07/19 18:58,"640 South St, San Francisco, CA 94016" +184749,34in Ultrawide Monitor,1,379.99,03/24/19 07:05,"688 Lincoln St, Boston, MA 02215" +184750,AAA Batteries (4-pack),1,2.99,03/26/19 14:56,"171 Main St, Atlanta, GA 30301" +184751,USB-C Charging Cable,1,11.95,03/28/19 04:46,"330 South St, San Francisco, CA 94016" +184752,Lightning Charging Cable,1,14.95,03/19/19 19:57,"607 Pine St, Los Angeles, CA 90001" +184753,Wired Headphones,1,11.99,03/26/19 20:47,"489 7th St, Dallas, TX 75001" +184754,AA Batteries (4-pack),2,3.84,03/13/19 11:03,"314 Willow St, Atlanta, GA 30301" +184755,AA Batteries (4-pack),1,3.84,03/31/19 14:09,"778 10th St, Portland, OR 97035" +184756,27in FHD Monitor,1,149.99,03/24/19 15:54,"701 8th St, Los Angeles, CA 90001" +184757,27in FHD Monitor,1,149.99,03/12/19 23:41,"466 Maple St, Los Angeles, CA 90001" +184758,Apple Airpods Headphones,1,150,03/13/19 16:25,"216 River St, Austin, TX 73301" +184758,AAA Batteries (4-pack),2,2.99,03/13/19 16:25,"216 River St, Austin, TX 73301" +184759,USB-C Charging Cable,1,11.95,03/25/19 17:16,"305 Cedar St, Boston, MA 02215" +184760,AAA Batteries (4-pack),1,2.99,03/02/19 10:24,"677 Meadow St, New York City, NY 10001" +184761,AAA Batteries (4-pack),1,2.99,03/24/19 14:44,"347 4th St, San Francisco, CA 94016" +184762,Apple Airpods Headphones,1,150,03/20/19 09:55,"87 2nd St, Los Angeles, CA 90001" +184763,34in Ultrawide Monitor,1,379.99,03/12/19 19:05,"74 Cherry St, Los Angeles, CA 90001" +184764,Lightning Charging Cable,1,14.95,03/29/19 08:39,"901 Highland St, Austin, TX 73301" +184765,AAA Batteries (4-pack),1,2.99,03/29/19 02:58,"444 South St, Portland, OR 97035" +184766,27in FHD Monitor,1,149.99,03/06/19 14:00,"297 Cedar St, Boston, MA 02215" +184767,ThinkPad Laptop,1,999.99,03/07/19 09:19,"680 Sunset St, Portland, OR 97035" +184768,USB-C Charging Cable,1,11.95,03/31/19 13:20,"260 Forest St, Atlanta, GA 30301" +184769,Apple Airpods Headphones,1,150,03/19/19 13:51,"67 5th St, Los Angeles, CA 90001" +184770,AA Batteries (4-pack),1,3.84,03/11/19 14:12,"627 Elm St, San Francisco, CA 94016" +184771,AA Batteries (4-pack),2,3.84,03/24/19 14:27,"442 1st St, Portland, OR 97035" +184772,Apple Airpods Headphones,1,150,03/09/19 00:51,"953 1st St, Austin, TX 73301" +184773,Wired Headphones,2,11.99,03/17/19 15:59,"328 Chestnut St, San Francisco, CA 94016" +184774,Apple Airpods Headphones,1,150,03/09/19 14:00,"680 Pine St, San Francisco, CA 94016" +184775,AA Batteries (4-pack),1,3.84,03/18/19 18:47,"281 Adams St, San Francisco, CA 94016" +184776,27in FHD Monitor,1,149.99,03/19/19 21:24,"137 1st St, Austin, TX 73301" +184777,ThinkPad Laptop,1,999.99,03/10/19 20:31,"83 Adams St, Seattle, WA 98101" +184778,AAA Batteries (4-pack),1,2.99,03/21/19 11:35,"645 Center St, Boston, MA 02215" +184779,USB-C Charging Cable,1,11.95,03/05/19 09:37,"864 Willow St, Dallas, TX 75001" +184780,Lightning Charging Cable,1,14.95,03/31/19 15:09,"302 Chestnut St, Boston, MA 02215" +184781,Apple Airpods Headphones,1,150,03/02/19 17:31,"315 Spruce St, New York City, NY 10001" +184782,27in 4K Gaming Monitor,1,389.99,03/09/19 09:51,"204 Church St, Los Angeles, CA 90001" +184783,AAA Batteries (4-pack),1,2.99,03/26/19 12:54,"390 Cedar St, Portland, OR 97035" +184784,Bose SoundSport Headphones,1,99.99,03/26/19 14:02,"20 Johnson St, Los Angeles, CA 90001" +184785,Lightning Charging Cable,1,14.95,03/28/19 09:03,"123 Ridge St, New York City, NY 10001" +184786,AA Batteries (4-pack),1,3.84,03/01/19 07:31,"66 Hickory St, Boston, MA 02215" +184787,Flatscreen TV,1,300,03/31/19 10:01,"172 Dogwood St, New York City, NY 10001" +184788,Lightning Charging Cable,1,14.95,03/04/19 20:30,"903 Park St, Boston, MA 02215" +184789,Wired Headphones,1,11.99,03/09/19 19:24,"756 8th St, Seattle, WA 98101" +184790,AAA Batteries (4-pack),1,2.99,03/15/19 16:29,"314 4th St, Seattle, WA 98101" +184791,Flatscreen TV,1,300,03/14/19 19:32,"565 Adams St, Los Angeles, CA 90001" +184792,USB-C Charging Cable,1,11.95,03/19/19 20:44,"582 7th St, Los Angeles, CA 90001" +184793,USB-C Charging Cable,1,11.95,03/26/19 11:15,"666 Hill St, Seattle, WA 98101" +184794,Lightning Charging Cable,1,14.95,03/12/19 19:25,"801 Hill St, Los Angeles, CA 90001" +184795,Bose SoundSport Headphones,1,99.99,03/03/19 19:08,"915 North St, San Francisco, CA 94016" +184796,USB-C Charging Cable,1,11.95,03/20/19 12:03,"732 13th St, Los Angeles, CA 90001" +184797,Wired Headphones,1,11.99,03/24/19 09:55,"415 Ridge St, Atlanta, GA 30301" +184798,27in FHD Monitor,1,149.99,03/09/19 15:40,"517 Lake St, Boston, MA 02215" +184799,USB-C Charging Cable,1,11.95,03/15/19 22:16,"61 9th St, San Francisco, CA 94016" +184800,Bose SoundSport Headphones,1,99.99,03/31/19 23:04,"210 Cedar St, Atlanta, GA 30301" +184801,Apple Airpods Headphones,1,150,03/01/19 15:40,"980 9th St, San Francisco, CA 94016" +184802,AAA Batteries (4-pack),2,2.99,03/14/19 14:16,"666 River St, New York City, NY 10001" +184803,Wired Headphones,1,11.99,03/28/19 17:32,"928 Main St, Los Angeles, CA 90001" +184804,Bose SoundSport Headphones,1,99.99,03/13/19 13:44,"815 North St, Boston, MA 02215" +184805,AA Batteries (4-pack),1,3.84,03/10/19 10:02,"562 Sunset St, New York City, NY 10001" +184806,ThinkPad Laptop,1,999.99,03/03/19 18:19,"948 Sunset St, Atlanta, GA 30301" +184807,Bose SoundSport Headphones,1,99.99,03/20/19 13:16,"217 13th St, New York City, NY 10001" +184808,Lightning Charging Cable,1,14.95,03/17/19 00:02,"544 6th St, Boston, MA 02215" +184809,Wired Headphones,1,11.99,03/27/19 13:06,"199 Church St, Portland, OR 97035" +184810,AA Batteries (4-pack),1,3.84,03/24/19 19:05,"503 Highland St, Portland, OR 97035" +184811,Bose SoundSport Headphones,1,99.99,03/03/19 00:20,"117 Cedar St, New York City, NY 10001" +184812,27in 4K Gaming Monitor,1,389.99,03/14/19 08:40,"533 Lake St, Boston, MA 02215" +184813,ThinkPad Laptop,1,999.99,03/09/19 21:05,"99 Jackson St, San Francisco, CA 94016" +184814,Wired Headphones,1,11.99,03/23/19 16:53,"337 Chestnut St, Los Angeles, CA 90001" +184815,iPhone,1,700,03/08/19 17:54,"298 Wilson St, Los Angeles, CA 90001" +184816,USB-C Charging Cable,1,11.95,03/15/19 09:08,"337 Jefferson St, Atlanta, GA 30301" +184817,USB-C Charging Cable,1,11.95,03/24/19 09:05,"90 Cedar St, Portland, ME 04101" +184818,27in 4K Gaming Monitor,1,389.99,03/20/19 13:42,"145 Johnson St, Seattle, WA 98101" +184819,Lightning Charging Cable,1,14.95,03/19/19 22:02,"300 Walnut St, San Francisco, CA 94016" +184820,27in FHD Monitor,1,149.99,03/10/19 22:56,"279 Johnson St, Los Angeles, CA 90001" +184821,Apple Airpods Headphones,1,150,03/31/19 21:05,"418 Willow St, San Francisco, CA 94016" +184822,27in FHD Monitor,1,149.99,03/28/19 14:03,"152 8th St, San Francisco, CA 94016" +184823,AAA Batteries (4-pack),2,2.99,03/28/19 22:06,"704 Park St, Seattle, WA 98101" +184824,AAA Batteries (4-pack),1,2.99,03/22/19 15:26,"362 2nd St, San Francisco, CA 94016" +184825,Macbook Pro Laptop,1,1700,03/07/19 07:38,"518 Wilson St, New York City, NY 10001" +184826,Bose SoundSport Headphones,1,99.99,03/30/19 18:43,"86 2nd St, Atlanta, GA 30301" +184827,USB-C Charging Cable,1,11.95,03/20/19 07:00,"632 5th St, Portland, OR 97035" +184828,USB-C Charging Cable,1,11.95,03/04/19 13:44,"69 Pine St, San Francisco, CA 94016" +184829,Bose SoundSport Headphones,1,99.99,03/21/19 20:54,"70 Cherry St, Los Angeles, CA 90001" +184830,USB-C Charging Cable,1,11.95,03/16/19 15:33,"1 Walnut St, San Francisco, CA 94016" +184831,34in Ultrawide Monitor,1,379.99,03/02/19 22:31,"586 Johnson St, Boston, MA 02215" +184832,Bose SoundSport Headphones,1,99.99,03/03/19 11:08,"376 9th St, Los Angeles, CA 90001" +184833,Lightning Charging Cable,1,14.95,03/28/19 18:24,"399 Hickory St, Boston, MA 02215" +184834,27in 4K Gaming Monitor,1,389.99,03/01/19 10:19,"316 Spruce St, New York City, NY 10001" +184835,AAA Batteries (4-pack),2,2.99,03/31/19 22:20,"32 Wilson St, San Francisco, CA 94016" +184836,Lightning Charging Cable,1,14.95,03/14/19 11:40,"770 Lake St, Atlanta, GA 30301" +184837,27in 4K Gaming Monitor,1,389.99,03/02/19 19:22,"211 North St, New York City, NY 10001" +184838,AAA Batteries (4-pack),1,2.99,03/03/19 09:53,"904 Chestnut St, Los Angeles, CA 90001" +184839,Flatscreen TV,1,300,03/13/19 07:24,"666 Hickory St, Los Angeles, CA 90001" +184840,Apple Airpods Headphones,1,150,03/11/19 11:03,"708 Chestnut St, Portland, ME 04101" +184841,Lightning Charging Cable,1,14.95,03/27/19 22:18,"41 9th St, Boston, MA 02215" +184842,34in Ultrawide Monitor,1,379.99,03/15/19 21:54,"351 Adams St, San Francisco, CA 94016" +184843,USB-C Charging Cable,1,11.95,03/25/19 14:22,"764 Chestnut St, New York City, NY 10001" +184844,USB-C Charging Cable,1,11.95,03/09/19 16:01,"847 7th St, Seattle, WA 98101" +184845,Apple Airpods Headphones,1,150,03/14/19 14:44,"658 Maple St, Los Angeles, CA 90001" +184846,AA Batteries (4-pack),2,3.84,03/27/19 17:39,"785 Madison St, Portland, OR 97035" +184847,Wired Headphones,1,11.99,03/20/19 03:50,"293 Meadow St, San Francisco, CA 94016" +184848,27in FHD Monitor,1,149.99,03/08/19 18:02,"648 Pine St, San Francisco, CA 94016" +184849,34in Ultrawide Monitor,1,379.99,03/11/19 15:40,"286 Hickory St, New York City, NY 10001" +184850,USB-C Charging Cable,1,11.95,03/15/19 20:16,"537 Jefferson St, San Francisco, CA 94016" +184851,USB-C Charging Cable,1,11.95,03/19/19 21:20,"635 7th St, San Francisco, CA 94016" +184852,AA Batteries (4-pack),1,3.84,03/17/19 22:42,"525 11th St, Los Angeles, CA 90001" +184853,USB-C Charging Cable,1,11.95,03/07/19 18:52,"907 Cedar St, Los Angeles, CA 90001" +184854,27in FHD Monitor,1,149.99,03/03/19 11:19,"401 Ridge St, San Francisco, CA 94016" +184855,Lightning Charging Cable,1,14.95,03/24/19 15:16,"193 14th St, Los Angeles, CA 90001" +184856,AAA Batteries (4-pack),1,2.99,03/27/19 11:41,"496 14th St, Portland, OR 97035" +184857,Lightning Charging Cable,1,14.95,03/22/19 09:54,"297 11th St, Austin, TX 73301" +184858,Apple Airpods Headphones,2,150,03/06/19 00:33,"346 Park St, Dallas, TX 75001" +184859,AA Batteries (4-pack),1,3.84,03/21/19 10:34,"598 5th St, San Francisco, CA 94016" +184860,Bose SoundSport Headphones,1,99.99,03/19/19 18:46,"514 Washington St, Seattle, WA 98101" +184861,27in FHD Monitor,1,149.99,03/20/19 22:30,"247 8th St, San Francisco, CA 94016" +184862,27in 4K Gaming Monitor,1,389.99,03/27/19 12:41,"1 14th St, Atlanta, GA 30301" +184863,USB-C Charging Cable,1,11.95,03/17/19 19:33,"471 Willow St, Boston, MA 02215" +184864,34in Ultrawide Monitor,1,379.99,03/07/19 10:57,"69 Madison St, Los Angeles, CA 90001" +184865,27in FHD Monitor,1,149.99,03/16/19 11:26,"236 West St, San Francisco, CA 94016" +184866,34in Ultrawide Monitor,1,379.99,03/03/19 10:38,"221 Maple St, Los Angeles, CA 90001" +184867,34in Ultrawide Monitor,1,379.99,03/06/19 14:31,"463 Jefferson St, Portland, ME 04101" +184868,Lightning Charging Cable,1,14.95,03/18/19 11:45,"136 Cedar St, Boston, MA 02215" +184869,Lightning Charging Cable,1,14.95,03/30/19 11:13,"108 Madison St, Seattle, WA 98101" +184870,AAA Batteries (4-pack),4,2.99,03/02/19 09:28,"720 Maple St, Los Angeles, CA 90001" +184871,Google Phone,1,600,03/22/19 07:40,"504 Walnut St, Dallas, TX 75001" +184872,AA Batteries (4-pack),2,3.84,03/10/19 21:05,"749 Jefferson St, San Francisco, CA 94016" +184873,Apple Airpods Headphones,1,150,03/15/19 20:58,"814 Jefferson St, Seattle, WA 98101" +184874,Lightning Charging Cable,1,14.95,03/13/19 22:05,"170 Lincoln St, San Francisco, CA 94016" +184875,USB-C Charging Cable,1,11.95,03/07/19 10:18,"379 2nd St, Boston, MA 02215" +184876,USB-C Charging Cable,1,11.95,03/16/19 01:17,"243 9th St, Portland, OR 97035" +184877,Google Phone,1,600,03/07/19 20:45,"909 Johnson St, Boston, MA 02215" +184878,27in FHD Monitor,1,149.99,03/15/19 12:29,"261 1st St, New York City, NY 10001" +184879,27in 4K Gaming Monitor,1,389.99,03/18/19 12:57,"226 Willow St, Los Angeles, CA 90001" +184880,USB-C Charging Cable,1,11.95,03/15/19 20:50,"720 Sunset St, San Francisco, CA 94016" +184881,Lightning Charging Cable,1,14.95,03/10/19 10:23,"254 Hill St, San Francisco, CA 94016" +184882,Lightning Charging Cable,1,14.95,03/01/19 16:04,"561 Church St, Boston, MA 02215" +184883,AA Batteries (4-pack),1,3.84,03/15/19 20:09,"563 Jackson St, New York City, NY 10001" +184884,Lightning Charging Cable,1,14.95,03/17/19 22:05,"191 Lincoln St, San Francisco, CA 94016" +184885,iPhone,1,700,03/06/19 21:39,"269 Highland St, New York City, NY 10001" +184885,Lightning Charging Cable,3,14.95,03/06/19 21:39,"269 Highland St, New York City, NY 10001" +184886,Wired Headphones,1,11.99,03/13/19 16:03,"584 Jackson St, Atlanta, GA 30301" +184887,Bose SoundSport Headphones,1,99.99,03/05/19 16:07,"912 2nd St, Boston, MA 02215" +184888,Lightning Charging Cable,1,14.95,03/19/19 22:36,"279 Washington St, New York City, NY 10001" +184889,AAA Batteries (4-pack),1,2.99,03/27/19 12:27,"486 Madison St, Dallas, TX 75001" +184890,AA Batteries (4-pack),2,3.84,03/25/19 16:17,"816 5th St, Los Angeles, CA 90001" +184891,27in FHD Monitor,1,149.99,03/29/19 12:52,"414 5th St, San Francisco, CA 94016" +184892,Apple Airpods Headphones,1,150,03/06/19 19:36,"264 River St, Los Angeles, CA 90001" +184893,Wired Headphones,1,11.99,03/11/19 21:50,"977 West St, Austin, TX 73301" +184894,Wired Headphones,1,11.99,03/15/19 15:52,"387 Madison St, San Francisco, CA 94016" +184895,AA Batteries (4-pack),1,3.84,03/18/19 10:25,"987 Pine St, Los Angeles, CA 90001" +184896,Macbook Pro Laptop,1,1700,03/12/19 16:13,"836 Highland St, Seattle, WA 98101" +184897,iPhone,1,700,03/21/19 17:49,"268 9th St, New York City, NY 10001" +184897,Wired Headphones,1,11.99,03/21/19 17:49,"268 9th St, New York City, NY 10001" +184898,Apple Airpods Headphones,1,150,03/17/19 12:03,"540 2nd St, Atlanta, GA 30301" +184899,Flatscreen TV,1,300,03/23/19 12:33,"522 Hickory St, Atlanta, GA 30301" +184900,Google Phone,1,600,03/02/19 13:37,"85 Cedar St, San Francisco, CA 94016" +184900,USB-C Charging Cable,2,11.95,03/02/19 13:37,"85 Cedar St, San Francisco, CA 94016" +184901,ThinkPad Laptop,1,999.99,03/20/19 23:35,"739 10th St, San Francisco, CA 94016" +184902,AA Batteries (4-pack),2,3.84,03/06/19 21:44,"595 Cherry St, San Francisco, CA 94016" +184903,Lightning Charging Cable,1,14.95,03/23/19 11:14,"463 Spruce St, Los Angeles, CA 90001" +184904,Apple Airpods Headphones,1,150,03/20/19 17:11,"600 8th St, Austin, TX 73301" +184905,27in FHD Monitor,1,149.99,03/01/19 19:07,"395 9th St, Seattle, WA 98101" +184906,ThinkPad Laptop,1,999.99,03/10/19 09:33,"669 Spruce St, Dallas, TX 75001" +184907,Vareebadd Phone,1,400,03/20/19 10:22,"327 Lake St, Dallas, TX 75001" +184908,Wired Headphones,1,11.99,03/30/19 19:42,"869 River St, New York City, NY 10001" +184909,Wired Headphones,1,11.99,03/22/19 23:18,"445 Adams St, Austin, TX 73301" +184910,Apple Airpods Headphones,1,150,03/01/19 18:37,"87 13th St, New York City, NY 10001" +184911,27in FHD Monitor,1,149.99,03/31/19 20:21,"849 Forest St, Los Angeles, CA 90001" +184912,USB-C Charging Cable,1,11.95,03/22/19 09:38,"985 Wilson St, New York City, NY 10001" +184913,Bose SoundSport Headphones,1,99.99,03/25/19 14:50,"463 Jackson St, San Francisco, CA 94016" +184914,Lightning Charging Cable,1,14.95,03/26/19 10:12,"283 11th St, San Francisco, CA 94016" +184915,Wired Headphones,1,11.99,03/25/19 11:39,"350 Highland St, Boston, MA 02215" +184916,Wired Headphones,1,11.99,03/20/19 14:04,"312 Walnut St, Los Angeles, CA 90001" +184917,USB-C Charging Cable,1,11.95,03/09/19 11:47,"671 River St, San Francisco, CA 94016" +184918,AAA Batteries (4-pack),1,2.99,03/02/19 12:22,"475 Hill St, Portland, OR 97035" +184919,iPhone,1,700,03/10/19 18:10,"367 Church St, San Francisco, CA 94016" +184920,AA Batteries (4-pack),1,3.84,03/06/19 12:50,"866 7th St, Portland, ME 04101" +184921,Bose SoundSport Headphones,1,99.99,03/19/19 09:46,"14 South St, Los Angeles, CA 90001" +184922,Lightning Charging Cable,2,14.95,03/03/19 13:34,"5 Wilson St, San Francisco, CA 94016" +184923,Wired Headphones,1,11.99,03/23/19 19:22,"51 Willow St, New York City, NY 10001" +184924,Macbook Pro Laptop,1,1700,03/24/19 08:53,"325 Main St, San Francisco, CA 94016" +184925,27in 4K Gaming Monitor,1,389.99,03/16/19 20:58,"381 Forest St, Boston, MA 02215" +184926,AAA Batteries (4-pack),1,2.99,03/02/19 20:55,"247 13th St, Boston, MA 02215" +184927,34in Ultrawide Monitor,1,379.99,03/08/19 13:08,"768 5th St, San Francisco, CA 94016" +184928,Wired Headphones,1,11.99,03/30/19 11:57,"632 7th St, Dallas, TX 75001" +184929,AAA Batteries (4-pack),1,2.99,03/07/19 17:33,"766 South St, Atlanta, GA 30301" +184930,34in Ultrawide Monitor,1,379.99,03/05/19 08:57,"7 Willow St, Los Angeles, CA 90001" +184931,AAA Batteries (4-pack),3,2.99,03/31/19 13:55,"320 7th St, Portland, OR 97035" +184932,Bose SoundSport Headphones,1,99.99,03/23/19 15:03,"591 Chestnut St, Atlanta, GA 30301" +184933,AA Batteries (4-pack),2,3.84,03/28/19 15:07,"15 Dogwood St, Los Angeles, CA 90001" +184934,Bose SoundSport Headphones,1,99.99,03/02/19 10:31,"228 Main St, Los Angeles, CA 90001" +184935,Bose SoundSport Headphones,1,99.99,03/18/19 00:04,"663 13th St, Los Angeles, CA 90001" +184936,27in FHD Monitor,1,149.99,03/27/19 13:01,"344 Wilson St, Los Angeles, CA 90001" +184937,AAA Batteries (4-pack),1,2.99,03/24/19 13:13,"348 Willow St, Austin, TX 73301" +184938,Google Phone,1,600,03/02/19 22:09,"249 12th St, Boston, MA 02215" +184939,Bose SoundSport Headphones,1,99.99,03/21/19 13:30,"528 Jefferson St, Seattle, WA 98101" +184940,USB-C Charging Cable,1,11.95,03/23/19 21:08,"36 Maple St, Los Angeles, CA 90001" +184941,Lightning Charging Cable,1,14.95,03/20/19 13:02,"326 West St, New York City, NY 10001" +184942,34in Ultrawide Monitor,1,379.99,03/13/19 17:51,"149 Maple St, Seattle, WA 98101" +184943,Bose SoundSport Headphones,1,99.99,03/30/19 12:52,"381 Ridge St, Atlanta, GA 30301" +184944,Wired Headphones,1,11.99,03/08/19 18:24,"683 Johnson St, Seattle, WA 98101" +184945,AA Batteries (4-pack),1,3.84,03/12/19 14:32,"617 Lakeview St, Boston, MA 02215" +184946,27in FHD Monitor,1,149.99,03/18/19 21:56,"328 4th St, Portland, ME 04101" +184947,Google Phone,1,600,03/23/19 14:38,"278 13th St, Austin, TX 73301" +184948,27in FHD Monitor,1,149.99,03/14/19 14:18,"50 4th St, New York City, NY 10001" +184949,Apple Airpods Headphones,1,150,03/10/19 00:09,"991 Pine St, Portland, OR 97035" +184950,Google Phone,1,600,03/13/19 19:08,"511 Johnson St, Boston, MA 02215" +184950,USB-C Charging Cable,1,11.95,03/13/19 19:08,"511 Johnson St, Boston, MA 02215" +184951,Wired Headphones,1,11.99,03/13/19 13:22,"660 West St, Austin, TX 73301" +184952,USB-C Charging Cable,1,11.95,03/01/19 09:20,"332 11th St, San Francisco, CA 94016" +184953,iPhone,1,700,03/18/19 09:27,"873 2nd St, Seattle, WA 98101" +184954,Apple Airpods Headphones,1,150,03/14/19 20:51,"638 Jefferson St, Boston, MA 02215" +184955,USB-C Charging Cable,2,11.95,03/16/19 16:14,"514 8th St, San Francisco, CA 94016" +184956,AAA Batteries (4-pack),1,2.99,03/01/19 22:18,"444 13th St, New York City, NY 10001" +184957,Lightning Charging Cable,1,14.95,03/18/19 17:36,"75 2nd St, Atlanta, GA 30301" +184958,27in 4K Gaming Monitor,1,389.99,03/19/19 10:45,"545 10th St, Austin, TX 73301" +184958,AAA Batteries (4-pack),1,2.99,03/19/19 10:45,"545 10th St, Austin, TX 73301" +184959,AA Batteries (4-pack),1,3.84,03/08/19 06:39,"690 Ridge St, Atlanta, GA 30301" +184960,20in Monitor,1,109.99,03/20/19 22:09,"829 Cedar St, Los Angeles, CA 90001" +184961,34in Ultrawide Monitor,1,379.99,03/12/19 12:30,"398 Elm St, San Francisco, CA 94016" +184962,AA Batteries (4-pack),1,3.84,03/25/19 09:54,"25 River St, Portland, OR 97035" +184963,USB-C Charging Cable,1,11.95,03/30/19 10:29,"315 Cherry St, Atlanta, GA 30301" +184964,Apple Airpods Headphones,1,150,03/11/19 15:50,"252 Wilson St, Boston, MA 02215" +184965,Lightning Charging Cable,1,14.95,03/09/19 19:31,"816 Adams St, Los Angeles, CA 90001" +184966,Bose SoundSport Headphones,1,99.99,03/04/19 20:04,"136 River St, Portland, OR 97035" +184967,27in 4K Gaming Monitor,1,389.99,03/28/19 17:13,"296 10th St, Boston, MA 02215" +184968,Macbook Pro Laptop,1,1700,03/21/19 15:08,"293 4th St, Austin, TX 73301" +184969,AA Batteries (4-pack),2,3.84,03/11/19 11:13,"133 14th St, Dallas, TX 75001" +184970,AAA Batteries (4-pack),2,2.99,03/14/19 10:55,"462 Jefferson St, Los Angeles, CA 90001" +184971,Wired Headphones,1,11.99,03/24/19 04:46,"750 Chestnut St, San Francisco, CA 94016" +184972,AA Batteries (4-pack),1,3.84,03/21/19 15:20,"670 Hickory St, San Francisco, CA 94016" +184973,AA Batteries (4-pack),1,3.84,03/05/19 18:16,"716 Walnut St, New York City, NY 10001" +184974,AA Batteries (4-pack),1,3.84,03/31/19 22:59,"113 Madison St, Boston, MA 02215" +184975,LG Dryer,1,600.0,03/17/19 05:56,"384 Willow St, Seattle, WA 98101" +184976,USB-C Charging Cable,1,11.95,03/05/19 12:47,"714 4th St, San Francisco, CA 94016" +184977,Flatscreen TV,1,300,03/19/19 06:22,"649 Pine St, New York City, NY 10001" +184978,27in 4K Gaming Monitor,1,389.99,03/03/19 20:53,"898 Chestnut St, Boston, MA 02215" +184979,LG Dryer,1,600.0,03/28/19 10:04,"606 Lake St, San Francisco, CA 94016" +184980,Bose SoundSport Headphones,1,99.99,03/02/19 17:32,"751 8th St, New York City, NY 10001" +184981,USB-C Charging Cable,1,11.95,03/23/19 21:01,"98 Ridge St, Austin, TX 73301" +184982,Apple Airpods Headphones,1,150,03/09/19 16:56,"264 14th St, New York City, NY 10001" +184983,AAA Batteries (4-pack),1,2.99,03/18/19 15:27,"65 Spruce St, Austin, TX 73301" +184984,iPhone,1,700,03/24/19 22:43,"669 9th St, Seattle, WA 98101" +184984,Wired Headphones,1,11.99,03/24/19 22:43,"669 9th St, Seattle, WA 98101" +184985,Apple Airpods Headphones,1,150,03/22/19 13:28,"419 11th St, San Francisco, CA 94016" +184986,Apple Airpods Headphones,1,150,03/27/19 22:52,"23 Walnut St, Atlanta, GA 30301" +184987,Google Phone,1,600,03/12/19 16:15,"536 5th St, Seattle, WA 98101" +184988,iPhone,1,700,03/17/19 13:31,"802 13th St, San Francisco, CA 94016" +184989,27in FHD Monitor,1,149.99,03/29/19 19:19,"409 Jackson St, San Francisco, CA 94016" +184990,Flatscreen TV,1,300,03/06/19 13:42,"194 12th St, Los Angeles, CA 90001" +184991,Lightning Charging Cable,1,14.95,03/21/19 11:59,"207 10th St, Seattle, WA 98101" +184992,Lightning Charging Cable,1,14.95,03/16/19 06:35,"106 Park St, San Francisco, CA 94016" +184993,AA Batteries (4-pack),1,3.84,03/29/19 12:10,"622 West St, Los Angeles, CA 90001" +184994,Apple Airpods Headphones,1,150,03/03/19 16:47,"12 Hickory St, New York City, NY 10001" +184995,iPhone,1,700,03/29/19 21:39,"429 Cedar St, Atlanta, GA 30301" +184996,USB-C Charging Cable,1,11.95,03/26/19 21:24,"960 West St, San Francisco, CA 94016" +184996,Lightning Charging Cable,1,14.95,03/26/19 21:24,"960 West St, San Francisco, CA 94016" +184997,AAA Batteries (4-pack),1,2.99,03/14/19 21:40,"998 Lake St, Portland, ME 04101" +184998,AAA Batteries (4-pack),1,2.99,03/21/19 16:44,"640 Ridge St, Los Angeles, CA 90001" +184999,USB-C Charging Cable,1,11.95,03/10/19 22:24,"766 Madison St, Dallas, TX 75001" +185000,AAA Batteries (4-pack),2,2.99,03/16/19 17:47,"223 14th St, Dallas, TX 75001" +185001,34in Ultrawide Monitor,1,379.99,03/16/19 21:01,"675 Lake St, San Francisco, CA 94016" +185002,ThinkPad Laptop,1,999.99,03/08/19 21:40,"22 Spruce St, San Francisco, CA 94016" +185003,USB-C Charging Cable,1,11.95,03/02/19 12:20,"515 Adams St, Boston, MA 02215" +185004,USB-C Charging Cable,1,11.95,03/19/19 19:32,"699 12th St, New York City, NY 10001" +185005,Macbook Pro Laptop,1,1700,03/14/19 20:59,"628 Willow St, Seattle, WA 98101" +185006,Lightning Charging Cable,1,14.95,03/29/19 19:15,"759 Hickory St, Austin, TX 73301" +185007,USB-C Charging Cable,1,11.95,03/17/19 15:45,"587 Center St, Los Angeles, CA 90001" +185008,Flatscreen TV,1,300,03/15/19 21:09,"367 8th St, Austin, TX 73301" +185009,27in FHD Monitor,1,149.99,03/09/19 12:18,"565 12th St, Boston, MA 02215" +185010,AAA Batteries (4-pack),1,2.99,03/14/19 20:09,"906 Madison St, San Francisco, CA 94016" +185011,34in Ultrawide Monitor,1,379.99,03/18/19 00:30,"118 Elm St, Austin, TX 73301" +185012,AA Batteries (4-pack),1,3.84,03/16/19 13:15,"883 Jefferson St, Los Angeles, CA 90001" +185013,27in 4K Gaming Monitor,1,389.99,03/28/19 16:30,"994 14th St, Los Angeles, CA 90001" +185014,Bose SoundSport Headphones,1,99.99,03/26/19 14:01,"432 Lincoln St, Boston, MA 02215" +185015,Wired Headphones,1,11.99,03/30/19 18:53,"756 Center St, Dallas, TX 75001" +185016,AAA Batteries (4-pack),2,2.99,03/04/19 15:00,"560 7th St, San Francisco, CA 94016" +185017,Wired Headphones,1,11.99,03/08/19 20:08,"790 8th St, Austin, TX 73301" +185018,Google Phone,1,600,03/31/19 20:20,"12 Cedar St, Los Angeles, CA 90001" +185019,Wired Headphones,1,11.99,03/30/19 14:07,"837 Dogwood St, Los Angeles, CA 90001" +185020,AA Batteries (4-pack),3,3.84,03/10/19 10:17,"611 Adams St, San Francisco, CA 94016" +185021,USB-C Charging Cable,1,11.95,04/01/19 01:41,"410 Meadow St, San Francisco, CA 94016" +185022,34in Ultrawide Monitor,1,379.99,03/17/19 23:08,"942 Johnson St, Atlanta, GA 30301" +185023,USB-C Charging Cable,1,11.95,03/03/19 19:45,"96 14th St, Atlanta, GA 30301" +185024,Wired Headphones,1,11.99,03/27/19 23:20,"51 1st St, Boston, MA 02215" +185025,Lightning Charging Cable,1,14.95,03/28/19 15:51,"716 Cherry St, Austin, TX 73301" +185026,iPhone,1,700,03/09/19 18:55,"760 Highland St, San Francisco, CA 94016" +185026,Lightning Charging Cable,1,14.95,03/09/19 18:55,"760 Highland St, San Francisco, CA 94016" +185027,Apple Airpods Headphones,1,150,03/07/19 09:16,"897 5th St, Seattle, WA 98101" +185028,Bose SoundSport Headphones,1,99.99,03/18/19 12:15,"105 Hickory St, Dallas, TX 75001" +185029,34in Ultrawide Monitor,1,379.99,03/17/19 13:17,"171 Ridge St, Boston, MA 02215" +185030,AA Batteries (4-pack),1,3.84,03/08/19 14:28,"295 Highland St, Portland, OR 97035" +185031,AA Batteries (4-pack),1,3.84,03/09/19 22:15,"207 Elm St, Los Angeles, CA 90001" +185032,34in Ultrawide Monitor,1,379.99,03/14/19 19:49,"318 West St, New York City, NY 10001" +185033,Macbook Pro Laptop,1,1700,03/17/19 15:47,"461 Center St, San Francisco, CA 94016" +185034,USB-C Charging Cable,1,11.95,03/21/19 16:18,"572 Elm St, New York City, NY 10001" +185035,AA Batteries (4-pack),1,3.84,03/31/19 19:34,"829 Wilson St, Los Angeles, CA 90001" +185036,AA Batteries (4-pack),2,3.84,03/29/19 12:48,"857 12th St, San Francisco, CA 94016" +185037,AAA Batteries (4-pack),1,2.99,03/02/19 02:36,"842 Park St, Austin, TX 73301" +185038,Flatscreen TV,1,300,03/23/19 23:49,"276 13th St, Los Angeles, CA 90001" +185039,27in FHD Monitor,1,149.99,03/12/19 09:34,"421 Hickory St, Boston, MA 02215" +185040,AA Batteries (4-pack),2,3.84,03/31/19 14:12,"894 Pine St, Boston, MA 02215" +185041,AA Batteries (4-pack),1,3.84,03/24/19 09:08,"965 Center St, New York City, NY 10001" +185042,USB-C Charging Cable,1,11.95,03/30/19 13:32,"373 Maple St, New York City, NY 10001" +185043,USB-C Charging Cable,1,11.95,03/08/19 16:41,"845 1st St, Boston, MA 02215" +185044,AAA Batteries (4-pack),2,2.99,03/23/19 15:49,"430 Lincoln St, Portland, OR 97035" +185045,Lightning Charging Cable,1,14.95,03/15/19 10:57,"425 Sunset St, Los Angeles, CA 90001" +185046,27in 4K Gaming Monitor,1,389.99,03/29/19 10:07,"743 2nd St, Boston, MA 02215" +185047,AA Batteries (4-pack),1,3.84,03/09/19 15:38,"415 9th St, Atlanta, GA 30301" +185048,Wired Headphones,1,11.99,03/26/19 15:28,"967 West St, Austin, TX 73301" +185049,Apple Airpods Headphones,1,150,03/04/19 08:36,"195 North St, San Francisco, CA 94016" +185050,Wired Headphones,1,11.99,03/02/19 18:24,"551 11th St, San Francisco, CA 94016" +185051,Apple Airpods Headphones,1,150,03/12/19 18:37,"736 Park St, Dallas, TX 75001" +185052,Google Phone,1,600,03/25/19 21:17,"585 Lakeview St, San Francisco, CA 94016" +185053,AAA Batteries (4-pack),1,2.99,03/13/19 14:27,"713 Hill St, New York City, NY 10001" +185054,iPhone,1,700,03/11/19 16:41,"526 Washington St, Seattle, WA 98101" +185055,AAA Batteries (4-pack),2,2.99,03/19/19 10:11,"703 4th St, Atlanta, GA 30301" +185055,Lightning Charging Cable,1,14.95,03/19/19 10:11,"703 4th St, Atlanta, GA 30301" +185056,AAA Batteries (4-pack),2,2.99,03/20/19 20:23,"531 14th St, San Francisco, CA 94016" +185057,USB-C Charging Cable,1,11.95,03/14/19 12:40,"228 Church St, San Francisco, CA 94016" +185058,AA Batteries (4-pack),1,3.84,03/08/19 18:22,"508 Johnson St, Seattle, WA 98101" +185059,AA Batteries (4-pack),1,3.84,03/09/19 22:38,"479 Lincoln St, New York City, NY 10001" +185060,USB-C Charging Cable,1,11.95,03/31/19 23:50,"130 13th St, San Francisco, CA 94016" +185060,iPhone,1,700,03/31/19 23:50,"130 13th St, San Francisco, CA 94016" +185061,Apple Airpods Headphones,1,150,03/10/19 18:17,"228 Center St, Boston, MA 02215" +185062,Lightning Charging Cable,1,14.95,03/24/19 12:28,"293 Lakeview St, Los Angeles, CA 90001" +185063,USB-C Charging Cable,1,11.95,03/21/19 22:13,"907 Lakeview St, San Francisco, CA 94016" +185064,34in Ultrawide Monitor,1,379.99,03/26/19 14:09,"250 Walnut St, Atlanta, GA 30301" +185065,Lightning Charging Cable,2,14.95,03/06/19 18:23,"13 Spruce St, New York City, NY 10001" +185066,Wired Headphones,1,11.99,03/09/19 12:50,"820 River St, San Francisco, CA 94016" +185067,AA Batteries (4-pack),1,3.84,03/16/19 09:54,"16 Park St, Dallas, TX 75001" +185068,Lightning Charging Cable,1,14.95,03/30/19 23:06,"879 Johnson St, Seattle, WA 98101" +185069,Lightning Charging Cable,1,14.95,03/01/19 16:32,"35 Chestnut St, Atlanta, GA 30301" +185070,Macbook Pro Laptop,1,1700,03/03/19 09:28,"549 Hickory St, Boston, MA 02215" +185071,USB-C Charging Cable,1,11.95,03/06/19 23:06,"572 10th St, Los Angeles, CA 90001" +185072,AAA Batteries (4-pack),1,2.99,03/28/19 08:59,"790 Dogwood St, New York City, NY 10001" +185073,Lightning Charging Cable,1,14.95,03/20/19 19:23,"495 Hickory St, San Francisco, CA 94016" +185074,27in FHD Monitor,1,149.99,03/18/19 09:33,"471 Wilson St, San Francisco, CA 94016" +185075,27in FHD Monitor,1,149.99,03/13/19 18:16,"138 North St, Boston, MA 02215" +185076,AAA Batteries (4-pack),2,2.99,03/04/19 09:09,"395 Main St, Dallas, TX 75001" +185077,Wired Headphones,3,11.99,03/13/19 18:31,"751 Madison St, San Francisco, CA 94016" +185078,iPhone,1,700,03/29/19 16:50,"827 11th St, San Francisco, CA 94016" +185079,Apple Airpods Headphones,1,150,03/02/19 22:39,"291 Maple St, Atlanta, GA 30301" +185080,Lightning Charging Cable,1,14.95,03/01/19 11:50,"159 Lincoln St, New York City, NY 10001" +185081,USB-C Charging Cable,1,11.95,03/06/19 19:16,"936 Dogwood St, Los Angeles, CA 90001" +185082,Lightning Charging Cable,2,14.95,03/17/19 07:01,"301 10th St, New York City, NY 10001" +185083,USB-C Charging Cable,1,11.95,03/15/19 16:36,"729 Madison St, Portland, OR 97035" +185084,USB-C Charging Cable,1,11.95,03/12/19 11:53,"167 Park St, New York City, NY 10001" +185085,Apple Airpods Headphones,1,150,03/14/19 03:53,"674 Main St, Boston, MA 02215" +185086,27in 4K Gaming Monitor,1,389.99,03/20/19 19:47,"614 River St, San Francisco, CA 94016" +185087,AAA Batteries (4-pack),2,2.99,03/04/19 21:11,"298 West St, Portland, OR 97035" +185088,AAA Batteries (4-pack),1,2.99,03/11/19 12:33,"729 6th St, Portland, OR 97035" +185089,Wired Headphones,1,11.99,03/02/19 00:52,"23 14th St, Dallas, TX 75001" +185090,AA Batteries (4-pack),1,3.84,03/08/19 05:43,"681 Adams St, San Francisco, CA 94016" +185091,Bose SoundSport Headphones,1,99.99,03/28/19 22:42,"206 Cedar St, New York City, NY 10001" +185092,AA Batteries (4-pack),1,3.84,03/07/19 10:54,"923 Hill St, San Francisco, CA 94016" +185093,USB-C Charging Cable,1,11.95,03/01/19 09:38,"537 Dogwood St, New York City, NY 10001" +185094,iPhone,1,700,03/14/19 22:14,"723 12th St, Boston, MA 02215" +185094,Apple Airpods Headphones,1,150,03/14/19 22:14,"723 12th St, Boston, MA 02215" +185095,USB-C Charging Cable,2,11.95,03/27/19 13:26,"362 Willow St, Los Angeles, CA 90001" +185096,Apple Airpods Headphones,1,150,03/12/19 10:03,"971 Highland St, Atlanta, GA 30301" +185097,AA Batteries (4-pack),1,3.84,03/12/19 10:29,"264 6th St, San Francisco, CA 94016" +185097,USB-C Charging Cable,1,11.95,03/12/19 10:29,"264 6th St, San Francisco, CA 94016" +185098,Bose SoundSport Headphones,1,99.99,03/06/19 16:13,"158 Jackson St, Portland, OR 97035" +185099,Apple Airpods Headphones,1,150,03/15/19 16:53,"987 South St, Seattle, WA 98101" +185100,Lightning Charging Cable,3,14.95,03/01/19 12:56,"138 12th St, Los Angeles, CA 90001" +185101,Bose SoundSport Headphones,1,99.99,03/11/19 20:10,"177 10th St, Austin, TX 73301" +185101,AAA Batteries (4-pack),1,2.99,03/11/19 20:10,"177 10th St, Austin, TX 73301" +185102,34in Ultrawide Monitor,1,379.99,03/20/19 18:55,"299 Adams St, Boston, MA 02215" +185103,Bose SoundSport Headphones,1,99.99,03/25/19 15:01,"808 Cherry St, Los Angeles, CA 90001" +185104,Bose SoundSport Headphones,1,99.99,03/11/19 11:53,"947 Elm St, Seattle, WA 98101" +185105,Lightning Charging Cable,1,14.95,03/01/19 09:50,"980 West St, New York City, NY 10001" +185106,AAA Batteries (4-pack),3,2.99,03/25/19 16:42,"825 Park St, San Francisco, CA 94016" +185107,AAA Batteries (4-pack),1,2.99,03/23/19 03:21,"419 Johnson St, San Francisco, CA 94016" +185108,Apple Airpods Headphones,1,150,03/08/19 09:01,"490 Center St, San Francisco, CA 94016" +185109,Lightning Charging Cable,1,14.95,03/05/19 00:11,"890 Lincoln St, Atlanta, GA 30301" +185110,AA Batteries (4-pack),2,3.84,03/10/19 17:26,"664 Dogwood St, San Francisco, CA 94016" +185111,34in Ultrawide Monitor,1,379.99,03/14/19 09:18,"928 Cedar St, New York City, NY 10001" +185112,USB-C Charging Cable,1,11.95,03/24/19 08:58,"52 13th St, Seattle, WA 98101" +185113,27in 4K Gaming Monitor,1,389.99,03/17/19 10:42,"485 Lincoln St, Atlanta, GA 30301" +185114,AAA Batteries (4-pack),1,2.99,03/09/19 17:36,"256 Jackson St, San Francisco, CA 94016" +185115,AA Batteries (4-pack),3,3.84,03/20/19 17:27,"901 14th St, Atlanta, GA 30301" +185116,27in 4K Gaming Monitor,1,389.99,03/22/19 11:43,"930 South St, Boston, MA 02215" +185117,Wired Headphones,1,11.99,03/29/19 15:22,"430 Washington St, San Francisco, CA 94016" +185118,34in Ultrawide Monitor,1,379.99,03/19/19 17:19,"78 Ridge St, San Francisco, CA 94016" +185119,Apple Airpods Headphones,1,150,03/12/19 13:15,"440 Cherry St, Boston, MA 02215" +185120,AA Batteries (4-pack),1,3.84,03/21/19 19:35,"172 Spruce St, New York City, NY 10001" +185121,USB-C Charging Cable,1,11.95,03/05/19 17:43,"260 Adams St, San Francisco, CA 94016" +185122,Wired Headphones,1,11.99,03/23/19 17:31,"8 Highland St, Los Angeles, CA 90001" +185123,Wired Headphones,1,11.99,03/13/19 09:50,"926 6th St, San Francisco, CA 94016" +185124,LG Dryer,1,600.0,03/23/19 10:21,"491 12th St, New York City, NY 10001" +185125,Wired Headphones,2,11.99,03/01/19 12:30,"322 Maple St, San Francisco, CA 94016" +185126,AAA Batteries (4-pack),1,2.99,03/05/19 14:40,"794 Spruce St, New York City, NY 10001" +185127,Apple Airpods Headphones,1,150,03/07/19 15:43,"164 11th St, Portland, OR 97035" +185128,Bose SoundSport Headphones,1,99.99,03/24/19 00:11,"749 River St, Dallas, TX 75001" +185129,AAA Batteries (4-pack),3,2.99,03/19/19 17:54,"937 Center St, San Francisco, CA 94016" +185130,34in Ultrawide Monitor,1,379.99,03/06/19 08:51,"169 Maple St, Dallas, TX 75001" +185131,Google Phone,1,600,03/29/19 22:52,"688 Sunset St, San Francisco, CA 94016" +185132,27in 4K Gaming Monitor,1,389.99,03/08/19 23:34,"444 Jefferson St, Seattle, WA 98101" +185133,Wired Headphones,1,11.99,03/11/19 19:39,"897 6th St, Los Angeles, CA 90001" +185134,Wired Headphones,1,11.99,03/25/19 11:28,"673 Wilson St, Austin, TX 73301" +185135,27in FHD Monitor,1,149.99,03/08/19 19:08,"179 Hill St, San Francisco, CA 94016" +185136,AAA Batteries (4-pack),1,2.99,03/04/19 18:00,"604 Adams St, Los Angeles, CA 90001" +185137,AA Batteries (4-pack),1,3.84,03/31/19 13:56,"739 10th St, Boston, MA 02215" +185138,27in 4K Gaming Monitor,1,389.99,03/08/19 14:55,"491 Highland St, Boston, MA 02215" +185139,Wired Headphones,1,11.99,03/20/19 10:42,"805 13th St, Portland, OR 97035" +185140,27in FHD Monitor,1,149.99,03/06/19 21:28,"866 Lincoln St, Los Angeles, CA 90001" +185141,LG Washing Machine,1,600.0,03/05/19 15:35,"922 Lakeview St, New York City, NY 10001" +185142,Lightning Charging Cable,1,14.95,03/14/19 08:01,"353 Washington St, San Francisco, CA 94016" +185143,Wired Headphones,2,11.99,03/11/19 14:14,"288 Maple St, Portland, ME 04101" +185144,AA Batteries (4-pack),1,3.84,03/26/19 16:45,"913 Cherry St, Portland, OR 97035" +185145,Wired Headphones,1,11.99,03/19/19 16:44,"748 Spruce St, San Francisco, CA 94016" +185146,27in 4K Gaming Monitor,1,389.99,03/24/19 17:57,"710 Sunset St, Los Angeles, CA 90001" +185147,Google Phone,1,600,03/19/19 11:16,"89 Cherry St, San Francisco, CA 94016" +185147,USB-C Charging Cable,1,11.95,03/19/19 11:16,"89 Cherry St, San Francisco, CA 94016" +185147,USB-C Charging Cable,1,11.95,03/19/19 11:16,"89 Cherry St, San Francisco, CA 94016" +185148,AAA Batteries (4-pack),1,2.99,03/22/19 00:26,"136 Highland St, San Francisco, CA 94016" +185149,iPhone,1,700,03/05/19 22:14,"947 Highland St, Boston, MA 02215" +185149,Lightning Charging Cable,1,14.95,03/05/19 22:14,"947 Highland St, Boston, MA 02215" +185149,Wired Headphones,1,11.99,03/05/19 22:14,"947 Highland St, Boston, MA 02215" +185150,AA Batteries (4-pack),1,3.84,03/04/19 17:05,"973 Meadow St, Seattle, WA 98101" +185151,27in 4K Gaming Monitor,1,389.99,03/30/19 18:21,"181 Spruce St, New York City, NY 10001" +185152,Wired Headphones,1,11.99,03/02/19 16:34,"733 Adams St, Atlanta, GA 30301" +185153,Apple Airpods Headphones,1,150,03/21/19 15:21,"813 River St, San Francisco, CA 94016" +185154,USB-C Charging Cable,1,11.95,03/27/19 15:04,"909 Forest St, Portland, OR 97035" +185155,Lightning Charging Cable,1,14.95,03/16/19 21:49,"981 Park St, New York City, NY 10001" +185156,AA Batteries (4-pack),3,3.84,03/25/19 11:19,"476 12th St, Seattle, WA 98101" +185157,Flatscreen TV,1,300,03/06/19 10:07,"109 Cherry St, New York City, NY 10001" +185158,AAA Batteries (4-pack),1,2.99,03/20/19 13:43,"307 Cherry St, Dallas, TX 75001" +185159,Lightning Charging Cable,1,14.95,03/09/19 13:40,"709 13th St, Atlanta, GA 30301" +185160,Apple Airpods Headphones,1,150,03/26/19 06:07,"134 7th St, San Francisco, CA 94016" +185161,Flatscreen TV,1,300,03/13/19 08:36,"385 Main St, New York City, NY 10001" +185162,Apple Airpods Headphones,1,150,03/18/19 18:51,"571 Lake St, Los Angeles, CA 90001" +185163,27in 4K Gaming Monitor,1,389.99,03/24/19 17:03,"275 Hill St, New York City, NY 10001" +185164,AAA Batteries (4-pack),1,2.99,03/10/19 12:13,"617 Madison St, Boston, MA 02215" +185165,AA Batteries (4-pack),1,3.84,03/26/19 13:15,"68 Pine St, Los Angeles, CA 90001" +185166,ThinkPad Laptop,1,999.99,03/25/19 17:04,"399 Main St, Portland, OR 97035" +185167,Apple Airpods Headphones,1,150,03/09/19 08:37,"371 Dogwood St, Portland, OR 97035" +185168,Wired Headphones,1,11.99,03/03/19 11:40,"651 13th St, Los Angeles, CA 90001" +185169,ThinkPad Laptop,1,999.99,03/28/19 21:53,"902 Willow St, Portland, ME 04101" +185170,Bose SoundSport Headphones,1,99.99,03/01/19 18:47,"22 North St, San Francisco, CA 94016" +185171,34in Ultrawide Monitor,1,379.99,03/16/19 09:37,"295 Dogwood St, Dallas, TX 75001" +185172,USB-C Charging Cable,1,11.95,03/11/19 15:29,"14 South St, Atlanta, GA 30301" +185173,AA Batteries (4-pack),1,3.84,03/17/19 11:49,"406 Lincoln St, San Francisco, CA 94016" +185174,34in Ultrawide Monitor,1,379.99,03/29/19 17:47,"220 Dogwood St, Portland, OR 97035" +185175,Bose SoundSport Headphones,1,99.99,03/18/19 20:20,"512 Cherry St, San Francisco, CA 94016" +185176,Wired Headphones,1,11.99,03/05/19 00:31,"701 South St, Los Angeles, CA 90001" +185177,27in FHD Monitor,1,149.99,03/18/19 13:57,"383 Cherry St, Seattle, WA 98101" +185178,USB-C Charging Cable,1,11.95,03/19/19 23:22,"277 Walnut St, San Francisco, CA 94016" +185179,iPhone,1,700,03/31/19 00:56,"240 8th St, New York City, NY 10001" +185180,20in Monitor,1,109.99,03/29/19 22:50,"817 Jackson St, New York City, NY 10001" +185181,AA Batteries (4-pack),4,3.84,03/15/19 19:11,"554 River St, Los Angeles, CA 90001" +185182,AAA Batteries (4-pack),2,2.99,03/18/19 19:53,"884 Meadow St, Portland, OR 97035" +185183,Apple Airpods Headphones,1,150,03/17/19 11:23,"367 12th St, Boston, MA 02215" +185184,Flatscreen TV,1,300,03/18/19 15:24,"174 Park St, San Francisco, CA 94016" +185185,Bose SoundSport Headphones,1,99.99,03/07/19 19:17,"170 Sunset St, Los Angeles, CA 90001" +185186,Lightning Charging Cable,1,14.95,03/14/19 14:46,"960 6th St, San Francisco, CA 94016" +185187,AAA Batteries (4-pack),1,2.99,03/31/19 23:12,"887 Walnut St, San Francisco, CA 94016" +185188,AAA Batteries (4-pack),2,2.99,03/02/19 09:54,"668 14th St, New York City, NY 10001" +185189,Bose SoundSport Headphones,1,99.99,03/04/19 12:18,"434 Walnut St, New York City, NY 10001" +185190,AA Batteries (4-pack),1,3.84,03/13/19 10:26,"514 8th St, Dallas, TX 75001" +185191,Wired Headphones,1,11.99,03/22/19 21:43,"985 Meadow St, Seattle, WA 98101" +185192,AAA Batteries (4-pack),1,2.99,03/01/19 14:35,"603 11th St, San Francisco, CA 94016" +185193,27in FHD Monitor,1,149.99,03/29/19 20:12,"420 5th St, Los Angeles, CA 90001" +185194,Wired Headphones,1,11.99,03/28/19 01:29,"617 Forest St, New York City, NY 10001" +185195,USB-C Charging Cable,1,11.95,03/24/19 15:00,"64 Elm St, Atlanta, GA 30301" +185196,Bose SoundSport Headphones,1,99.99,03/29/19 08:29,"821 Lakeview St, San Francisco, CA 94016" +185197,Flatscreen TV,1,300,03/18/19 00:33,"657 Elm St, Austin, TX 73301" +185198,Vareebadd Phone,1,400,03/09/19 08:37,"22 2nd St, San Francisco, CA 94016" +185198,USB-C Charging Cable,1,11.95,03/09/19 08:37,"22 2nd St, San Francisco, CA 94016" +185199,Bose SoundSport Headphones,1,99.99,03/14/19 14:19,"553 Jefferson St, Dallas, TX 75001" +185200,USB-C Charging Cable,2,11.95,03/31/19 18:21,"302 14th St, Boston, MA 02215" +185201,USB-C Charging Cable,1,11.95,03/02/19 18:33,"463 South St, San Francisco, CA 94016" +185202,AAA Batteries (4-pack),1,2.99,03/15/19 02:07,"296 Meadow St, Los Angeles, CA 90001" +185203,Wired Headphones,1,11.99,03/22/19 20:44,"337 Cedar St, Atlanta, GA 30301" +185204,Apple Airpods Headphones,1,150,03/08/19 15:56,"939 5th St, Atlanta, GA 30301" +185204,Bose SoundSport Headphones,1,99.99,03/08/19 15:56,"939 5th St, Atlanta, GA 30301" +185205,USB-C Charging Cable,1,11.95,03/14/19 23:25,"22 13th St, Los Angeles, CA 90001" +185206,Lightning Charging Cable,1,14.95,03/25/19 08:47,"127 6th St, Portland, OR 97035" +185207,Wired Headphones,2,11.99,03/12/19 17:57,"587 1st St, Boston, MA 02215" +185208,USB-C Charging Cable,2,11.95,03/22/19 09:07,"300 Elm St, Austin, TX 73301" +185209,Apple Airpods Headphones,1,150,03/13/19 14:24,"952 2nd St, Seattle, WA 98101" +185210,Lightning Charging Cable,1,14.95,03/03/19 13:48,"136 Cherry St, Los Angeles, CA 90001" +185211,USB-C Charging Cable,1,11.95,03/06/19 12:21,"23 Elm St, Los Angeles, CA 90001" +185212,Wired Headphones,1,11.99,03/28/19 14:22,"263 Sunset St, San Francisco, CA 94016" +185213,Lightning Charging Cable,1,14.95,03/22/19 19:06,"123 North St, San Francisco, CA 94016" +185214,AA Batteries (4-pack),1,3.84,03/23/19 13:41,"579 Hill St, New York City, NY 10001" +185215,27in 4K Gaming Monitor,1,389.99,03/04/19 16:03,"631 Church St, Seattle, WA 98101" +185216,Bose SoundSport Headphones,1,99.99,03/07/19 01:11,"869 Madison St, Atlanta, GA 30301" +185217,AAA Batteries (4-pack),5,2.99,03/13/19 00:27,"809 2nd St, Portland, OR 97035" +185218,USB-C Charging Cable,1,11.95,03/17/19 18:20,"74 Center St, Seattle, WA 98101" +185219,27in 4K Gaming Monitor,1,389.99,03/17/19 14:49,"583 Elm St, New York City, NY 10001" +185220,Lightning Charging Cable,1,14.95,03/12/19 04:31,"98 12th St, New York City, NY 10001" +185221,Wired Headphones,1,11.99,03/31/19 09:20,"771 5th St, Atlanta, GA 30301" +185222,AA Batteries (4-pack),1,3.84,03/28/19 00:48,"10 Sunset St, Boston, MA 02215" +185223,Wired Headphones,1,11.99,03/29/19 15:42,"910 Elm St, San Francisco, CA 94016" +185224,AAA Batteries (4-pack),1,2.99,03/06/19 19:07,"625 Jackson St, Los Angeles, CA 90001" +185225,Apple Airpods Headphones,1,150,03/03/19 14:56,"50 Forest St, San Francisco, CA 94016" +185226,AA Batteries (4-pack),1,3.84,03/05/19 21:40,"919 14th St, Los Angeles, CA 90001" +185226,Lightning Charging Cable,1,14.95,03/05/19 21:40,"919 14th St, Los Angeles, CA 90001" +185227,Apple Airpods Headphones,1,150,03/26/19 11:54,"225 Main St, San Francisco, CA 94016" +185228,AA Batteries (4-pack),2,3.84,03/13/19 17:12,"741 Highland St, Seattle, WA 98101" +185229,Wired Headphones,1,11.99,03/10/19 13:25,"344 Washington St, Los Angeles, CA 90001" +185230,AAA Batteries (4-pack),1,2.99,03/16/19 02:10,"686 Sunset St, Dallas, TX 75001" +185231,iPhone,1,700,03/16/19 22:03,"852 Center St, Atlanta, GA 30301" +185232,27in FHD Monitor,1,149.99,03/09/19 15:38,"406 Maple St, Dallas, TX 75001" +185233,Apple Airpods Headphones,1,150,03/04/19 12:00,"120 Jefferson St, Los Angeles, CA 90001" +185234,Lightning Charging Cable,1,14.95,03/16/19 13:09,"294 14th St, Atlanta, GA 30301" +185235,Flatscreen TV,1,300,03/30/19 00:24,"225 South St, Portland, ME 04101" +185236,Macbook Pro Laptop,1,1700,03/13/19 20:15,"967 Madison St, Los Angeles, CA 90001" +185237,27in FHD Monitor,1,149.99,03/08/19 15:38,"441 Hill St, Atlanta, GA 30301" +185238,AA Batteries (4-pack),2,3.84,03/15/19 15:37,"900 Hickory St, Portland, OR 97035" +185239,AAA Batteries (4-pack),1,2.99,03/26/19 15:57,"983 Hickory St, Los Angeles, CA 90001" +185240,20in Monitor,1,109.99,03/12/19 10:34,"239 South St, Los Angeles, CA 90001" +185241,AA Batteries (4-pack),1,3.84,03/27/19 21:24,"228 South St, Seattle, WA 98101" +185242,AAA Batteries (4-pack),1,2.99,03/30/19 18:49,"407 7th St, Los Angeles, CA 90001" +185243,iPhone,1,700,03/02/19 21:13,"381 Ridge St, San Francisco, CA 94016" +185244,iPhone,1,700,03/14/19 02:28,"90 Willow St, Atlanta, GA 30301" +185245,USB-C Charging Cable,1,11.95,03/21/19 13:55,"279 6th St, San Francisco, CA 94016" +185246,AA Batteries (4-pack),2,3.84,03/03/19 12:24,"236 Lincoln St, Atlanta, GA 30301" +185247,Google Phone,1,600,03/12/19 20:12,"694 Cedar St, Austin, TX 73301" +185248,Apple Airpods Headphones,1,150,03/09/19 18:37,"35 Forest St, Boston, MA 02215" +185249,27in 4K Gaming Monitor,1,389.99,03/07/19 22:24,"157 Madison St, Boston, MA 02215" +185250,USB-C Charging Cable,1,11.95,03/15/19 11:46,"376 Cherry St, San Francisco, CA 94016" +185251,34in Ultrawide Monitor,1,379.99,03/10/19 20:37,"255 Adams St, Atlanta, GA 30301" +185252,Flatscreen TV,1,300,03/05/19 09:38,"280 Lakeview St, Portland, OR 97035" +185253,AAA Batteries (4-pack),2,2.99,03/07/19 19:57,"653 Adams St, Atlanta, GA 30301" +185254,34in Ultrawide Monitor,1,379.99,03/09/19 09:14,"311 Sunset St, Seattle, WA 98101" +185255,ThinkPad Laptop,1,999.99,03/14/19 11:41,"442 Ridge St, Atlanta, GA 30301" +185256,Lightning Charging Cable,1,14.95,03/11/19 09:16,"326 13th St, Los Angeles, CA 90001" +185257,Apple Airpods Headphones,1,150,03/30/19 19:18,"547 Church St, Boston, MA 02215" +185257,20in Monitor,1,109.99,03/30/19 19:18,"547 Church St, Boston, MA 02215" +185258,Lightning Charging Cable,1,14.95,03/15/19 18:28,"866 9th St, Boston, MA 02215" +185259,iPhone,1,700,03/05/19 13:34,"222 Sunset St, Portland, OR 97035" +185259,Lightning Charging Cable,1,14.95,03/05/19 13:34,"222 Sunset St, Portland, OR 97035" +185260,AA Batteries (4-pack),2,3.84,03/13/19 11:02,"676 Wilson St, Portland, ME 04101" +185260,Wired Headphones,1,11.99,03/13/19 11:02,"676 Wilson St, Portland, ME 04101" +185261,Apple Airpods Headphones,1,150,03/14/19 19:46,"955 Highland St, Los Angeles, CA 90001" +185262,AAA Batteries (4-pack),1,2.99,03/26/19 17:04,"919 12th St, Atlanta, GA 30301" +185263,Lightning Charging Cable,1,14.95,03/22/19 18:26,"601 Forest St, Los Angeles, CA 90001" +185264,20in Monitor,1,109.99,03/07/19 18:19,"184 Church St, Los Angeles, CA 90001" +185265,Lightning Charging Cable,1,14.95,03/16/19 23:20,"155 Center St, San Francisco, CA 94016" +185266,Google Phone,1,600,03/24/19 02:45,"165 Jackson St, Los Angeles, CA 90001" +185267,ThinkPad Laptop,1,999.99,03/30/19 18:33,"168 1st St, Dallas, TX 75001" +185268,Wired Headphones,1,11.99,03/11/19 20:36,"914 Chestnut St, Portland, ME 04101" +185269,Apple Airpods Headphones,1,150,03/15/19 18:30,"533 Jackson St, Los Angeles, CA 90001" +185270,Lightning Charging Cable,1,14.95,03/15/19 00:35,"856 8th St, Austin, TX 73301" +185271,USB-C Charging Cable,1,11.95,03/28/19 00:11,"242 Church St, Austin, TX 73301" +185272,AAA Batteries (4-pack),1,2.99,03/14/19 05:52,"243 Sunset St, New York City, NY 10001" +185273,Flatscreen TV,1,300,03/25/19 20:27,"653 8th St, San Francisco, CA 94016" +185274,USB-C Charging Cable,1,11.95,03/13/19 13:31,"183 Cherry St, San Francisco, CA 94016" +185275,AA Batteries (4-pack),1,3.84,03/13/19 08:30,"224 14th St, Los Angeles, CA 90001" +185276,Wired Headphones,1,11.99,03/07/19 15:55,"539 Lake St, Atlanta, GA 30301" +185277,USB-C Charging Cable,2,11.95,03/31/19 13:31,"251 10th St, Los Angeles, CA 90001" +185278,Bose SoundSport Headphones,1,99.99,03/06/19 12:30,"392 Hickory St, San Francisco, CA 94016" +185279,Lightning Charging Cable,1,14.95,03/14/19 10:58,"347 14th St, Boston, MA 02215" +185280,27in FHD Monitor,1,149.99,03/02/19 10:18,"86 North St, Portland, OR 97035" +185281,iPhone,1,700,03/02/19 16:41,"82 13th St, San Francisco, CA 94016" +185282,AAA Batteries (4-pack),1,2.99,03/09/19 11:55,"914 North St, San Francisco, CA 94016" +185283,Google Phone,1,600,03/05/19 20:06,"788 9th St, San Francisco, CA 94016" +185283,USB-C Charging Cable,1,11.95,03/05/19 20:06,"788 9th St, San Francisco, CA 94016" +185284,27in 4K Gaming Monitor,1,389.99,03/29/19 14:37,"579 11th St, New York City, NY 10001" +185285,Apple Airpods Headphones,1,150,03/19/19 18:37,"971 10th St, San Francisco, CA 94016" +185286,AAA Batteries (4-pack),1,2.99,03/11/19 17:18,"123 Adams St, Los Angeles, CA 90001" +185287,Flatscreen TV,1,300,03/19/19 22:34,"81 Sunset St, New York City, NY 10001" +185288,Bose SoundSport Headphones,1,99.99,03/01/19 08:06,"369 4th St, New York City, NY 10001" +185289,Bose SoundSport Headphones,1,99.99,03/30/19 21:10,"846 Cedar St, Dallas, TX 75001" +185290,Bose SoundSport Headphones,1,99.99,03/14/19 13:03,"143 Lake St, Austin, TX 73301" +185291,Wired Headphones,1,11.99,03/25/19 11:14,"556 1st St, Austin, TX 73301" +185292,USB-C Charging Cable,1,11.95,03/15/19 06:56,"618 11th St, San Francisco, CA 94016" +185293,Google Phone,1,600,03/17/19 19:18,"945 Center St, San Francisco, CA 94016" +185294,AAA Batteries (4-pack),4,2.99,03/18/19 16:00,"583 2nd St, Boston, MA 02215" +185295,AA Batteries (4-pack),1,3.84,03/03/19 00:31,"811 Pine St, Portland, ME 04101" +185296,Lightning Charging Cable,1,14.95,03/31/19 15:42,"444 7th St, Portland, OR 97035" +185297,Apple Airpods Headphones,1,150,03/13/19 10:39,"649 11th St, Austin, TX 73301" +185298,AAA Batteries (4-pack),1,2.99,03/05/19 11:40,"36 4th St, Seattle, WA 98101" +185299,AAA Batteries (4-pack),1,2.99,03/29/19 16:20,"124 Pine St, Austin, TX 73301" +185300,USB-C Charging Cable,1,11.95,03/01/19 09:29,"758 Walnut St, Boston, MA 02215" +185301,AA Batteries (4-pack),1,3.84,03/25/19 22:03,"870 Hickory St, San Francisco, CA 94016" +185302,AA Batteries (4-pack),3,3.84,03/13/19 07:00,"683 Washington St, Los Angeles, CA 90001" +185303,Macbook Pro Laptop,1,1700,03/23/19 11:01,"379 Park St, New York City, NY 10001" +185304,Lightning Charging Cable,1,14.95,03/31/19 01:35,"721 Hill St, Austin, TX 73301" +185305,Vareebadd Phone,1,400,03/27/19 06:06,"237 Sunset St, New York City, NY 10001" +185306,Flatscreen TV,1,300,03/23/19 12:22,"148 4th St, Austin, TX 73301" +185307,34in Ultrawide Monitor,1,379.99,03/09/19 12:17,"195 9th St, Los Angeles, CA 90001" +185308,Lightning Charging Cable,1,14.95,03/04/19 11:07,"120 Meadow St, Boston, MA 02215" +185309,AAA Batteries (4-pack),1,2.99,03/29/19 08:53,"933 Adams St, Portland, ME 04101" +185310,AA Batteries (4-pack),1,3.84,03/02/19 14:04,"702 Johnson St, Austin, TX 73301" +185311,Wired Headphones,1,11.99,03/29/19 09:04,"786 4th St, Dallas, TX 75001" +185312,ThinkPad Laptop,1,999.99,03/01/19 10:25,"679 Madison St, San Francisco, CA 94016" +185313,Wired Headphones,1,11.99,03/29/19 21:50,"462 Dogwood St, Dallas, TX 75001" +185314,AAA Batteries (4-pack),1,2.99,03/10/19 09:34,"371 Jefferson St, San Francisco, CA 94016" +185315,Wired Headphones,1,11.99,03/10/19 23:23,"836 North St, Los Angeles, CA 90001" +185316,Lightning Charging Cable,1,14.95,03/02/19 09:54,"344 Church St, Boston, MA 02215" +185317,AAA Batteries (4-pack),3,2.99,03/25/19 13:28,"911 Meadow St, Los Angeles, CA 90001" +185318,Lightning Charging Cable,1,14.95,03/31/19 15:59,"851 10th St, Austin, TX 73301" +185319,AAA Batteries (4-pack),1,2.99,03/03/19 13:16,"816 Lakeview St, Portland, OR 97035" +185320,Wired Headphones,1,11.99,03/20/19 20:29,"59 Hickory St, Los Angeles, CA 90001" +185321,Apple Airpods Headphones,1,150,03/13/19 21:28,"876 Meadow St, Dallas, TX 75001" +185322,Macbook Pro Laptop,1,1700,03/27/19 00:38,"906 2nd St, Los Angeles, CA 90001" +185323,27in FHD Monitor,1,149.99,03/11/19 18:45,"500 2nd St, Atlanta, GA 30301" +185324,AAA Batteries (4-pack),2,2.99,03/12/19 11:27,"133 1st St, New York City, NY 10001" +185325,ThinkPad Laptop,1,999.99,03/09/19 11:51,"805 Highland St, San Francisco, CA 94016" +185326,Lightning Charging Cable,1,14.95,03/18/19 20:40,"210 North St, New York City, NY 10001" +185327,Bose SoundSport Headphones,1,99.99,03/14/19 21:34,"399 River St, Dallas, TX 75001" +185328,AA Batteries (4-pack),1,3.84,03/13/19 17:11,"261 Spruce St, San Francisco, CA 94016" +185329,USB-C Charging Cable,1,11.95,03/06/19 17:40,"857 Highland St, Seattle, WA 98101" +185330,20in Monitor,1,109.99,03/08/19 18:18,"811 Chestnut St, Portland, OR 97035" +185331,Wired Headphones,1,11.99,03/14/19 11:33,"126 Johnson St, San Francisco, CA 94016" +185332,Bose SoundSport Headphones,1,99.99,03/03/19 10:35,"786 Lincoln St, San Francisco, CA 94016" +185333,27in 4K Gaming Monitor,1,389.99,03/06/19 23:15,"970 8th St, San Francisco, CA 94016" +185334,USB-C Charging Cable,1,11.95,03/02/19 14:11,"319 8th St, Los Angeles, CA 90001" +185335,Bose SoundSport Headphones,1,99.99,03/13/19 18:43,"770 1st St, Seattle, WA 98101" +185336,USB-C Charging Cable,1,11.95,03/31/19 09:38,"331 Jefferson St, San Francisco, CA 94016" +,,,,, +185337,Bose SoundSport Headphones,1,99.99,03/02/19 23:26,"83 Spruce St, New York City, NY 10001" +185338,Flatscreen TV,1,300,03/07/19 13:06,"399 Sunset St, Portland, ME 04101" +185339,AAA Batteries (4-pack),1,2.99,03/10/19 23:26,"184 Ridge St, San Francisco, CA 94016" +185339,AA Batteries (4-pack),1,3.84,03/10/19 23:26,"184 Ridge St, San Francisco, CA 94016" +185340,Apple Airpods Headphones,1,150,03/10/19 20:37,"754 14th St, San Francisco, CA 94016" +185341,Bose SoundSport Headphones,1,99.99,03/01/19 12:35,"602 Church St, San Francisco, CA 94016" +185341,AA Batteries (4-pack),2,3.84,03/01/19 12:35,"602 Church St, San Francisco, CA 94016" +185342,Wired Headphones,2,11.99,03/20/19 08:29,"259 West St, Los Angeles, CA 90001" +185343,AA Batteries (4-pack),1,3.84,03/26/19 13:57,"688 Cherry St, Atlanta, GA 30301" +185344,Vareebadd Phone,1,400,03/15/19 23:49,"940 Hickory St, Boston, MA 02215" +185345,iPhone,1,700,03/27/19 17:12,"944 Forest St, Seattle, WA 98101" +185346,AA Batteries (4-pack),1,3.84,03/28/19 20:35,"996 1st St, Portland, OR 97035" +185347,ThinkPad Laptop,1,999.99,03/04/19 11:26,"60 Willow St, Portland, ME 04101" +185348,ThinkPad Laptop,1,999.99,03/09/19 22:14,"529 Forest St, Dallas, TX 75001" +185349,AAA Batteries (4-pack),1,2.99,03/29/19 17:41,"179 1st St, Dallas, TX 75001" +185350,Bose SoundSport Headphones,1,99.99,03/04/19 17:16,"835 Sunset St, San Francisco, CA 94016" +185351,Google Phone,1,600,03/31/19 09:09,"261 7th St, San Francisco, CA 94016" +185352,USB-C Charging Cable,1,11.95,03/28/19 10:11,"948 Lakeview St, Seattle, WA 98101" +185352,Apple Airpods Headphones,1,150,03/28/19 10:11,"948 Lakeview St, Seattle, WA 98101" +185353,AAA Batteries (4-pack),2,2.99,03/15/19 17:40,"296 Lakeview St, San Francisco, CA 94016" +185354,Apple Airpods Headphones,1,150,03/04/19 18:51,"261 Lakeview St, Boston, MA 02215" +185355,AA Batteries (4-pack),3,3.84,03/06/19 00:31,"846 Church St, Boston, MA 02215" +185356,Flatscreen TV,1,300,03/09/19 08:40,"91 2nd St, Los Angeles, CA 90001" +185357,AA Batteries (4-pack),1,3.84,03/09/19 17:45,"192 Jefferson St, Seattle, WA 98101" +185358,AA Batteries (4-pack),2,3.84,03/27/19 17:31,"129 Walnut St, Seattle, WA 98101" +185359,USB-C Charging Cable,1,11.95,03/01/19 19:53,"785 Chestnut St, Boston, MA 02215" +185360,27in FHD Monitor,1,149.99,03/08/19 17:55,"182 Meadow St, Atlanta, GA 30301" +185361,AA Batteries (4-pack),2,3.84,03/26/19 09:21,"598 Sunset St, San Francisco, CA 94016" +185362,Apple Airpods Headphones,1,150,03/10/19 19:55,"701 Church St, New York City, NY 10001" +185363,Wired Headphones,1,11.99,03/19/19 14:56,"797 Washington St, San Francisco, CA 94016" +185364,USB-C Charging Cable,2,11.95,03/28/19 22:44,"462 Willow St, Boston, MA 02215" +185365,AAA Batteries (4-pack),3,2.99,03/05/19 18:23,"6 Madison St, Los Angeles, CA 90001" +185366,AAA Batteries (4-pack),1,2.99,03/08/19 14:14,"53 2nd St, San Francisco, CA 94016" +185367,34in Ultrawide Monitor,1,379.99,03/23/19 16:35,"200 Highland St, San Francisco, CA 94016" +185368,Bose SoundSport Headphones,1,99.99,03/28/19 09:27,"150 Cherry St, Los Angeles, CA 90001" +185369,AAA Batteries (4-pack),1,2.99,03/07/19 20:29,"45 Washington St, Los Angeles, CA 90001" +185370,Macbook Pro Laptop,1,1700,03/18/19 10:13,"249 Maple St, San Francisco, CA 94016" +185371,AAA Batteries (4-pack),2,2.99,03/13/19 05:54,"929 Ridge St, San Francisco, CA 94016" +185372,USB-C Charging Cable,2,11.95,03/28/19 21:11,"722 11th St, Los Angeles, CA 90001" +185373,USB-C Charging Cable,1,11.95,03/08/19 10:55,"4 Lakeview St, New York City, NY 10001" +185374,USB-C Charging Cable,1,11.95,03/23/19 01:08,"299 Elm St, Atlanta, GA 30301" +185375,Apple Airpods Headphones,1,150,03/14/19 13:44,"171 Walnut St, Boston, MA 02215" +185376,Apple Airpods Headphones,1,150,03/06/19 11:25,"596 Willow St, Los Angeles, CA 90001" +185377,Apple Airpods Headphones,1,150,03/28/19 22:10,"950 Lake St, Los Angeles, CA 90001" +185378,AAA Batteries (4-pack),1,2.99,03/09/19 18:43,"702 Lincoln St, San Francisco, CA 94016" +185378,USB-C Charging Cable,1,11.95,03/09/19 18:43,"702 Lincoln St, San Francisco, CA 94016" +185379,AAA Batteries (4-pack),1,2.99,03/06/19 22:51,"750 Pine St, Los Angeles, CA 90001" +185380,34in Ultrawide Monitor,1,379.99,03/03/19 18:32,"741 Lincoln St, New York City, NY 10001" +185381,USB-C Charging Cable,1,11.95,03/21/19 22:21,"72 Maple St, Dallas, TX 75001" +185382,34in Ultrawide Monitor,1,379.99,03/01/19 16:32,"615 Meadow St, Dallas, TX 75001" +185383,Bose SoundSport Headphones,1,99.99,03/13/19 22:20,"678 Park St, San Francisco, CA 94016" +185384,Bose SoundSport Headphones,1,99.99,03/07/19 10:52,"28 4th St, Portland, OR 97035" +185385,20in Monitor,1,109.99,03/10/19 14:37,"91 Jackson St, New York City, NY 10001" +185386,27in FHD Monitor,1,149.99,03/20/19 11:13,"562 Willow St, Los Angeles, CA 90001" +185387,USB-C Charging Cable,1,11.95,03/15/19 07:38,"267 Ridge St, San Francisco, CA 94016" +185388,iPhone,1,700,03/08/19 02:12,"404 Walnut St, New York City, NY 10001" +185389,Bose SoundSport Headphones,1,99.99,03/09/19 05:47,"800 Lincoln St, Seattle, WA 98101" +185390,Macbook Pro Laptop,1,1700,03/31/19 09:57,"675 Elm St, Atlanta, GA 30301" +185391,USB-C Charging Cable,1,11.95,03/21/19 15:34,"886 North St, Seattle, WA 98101" +185391,34in Ultrawide Monitor,1,379.99,03/21/19 15:34,"886 North St, Seattle, WA 98101" +185392,Wired Headphones,1,11.99,03/11/19 15:01,"360 West St, Los Angeles, CA 90001" +185392,20in Monitor,1,109.99,03/11/19 15:01,"360 West St, Los Angeles, CA 90001" +185393,iPhone,1,700,03/15/19 01:56,"421 2nd St, Boston, MA 02215" +185394,USB-C Charging Cable,1,11.95,03/13/19 10:36,"417 Pine St, Atlanta, GA 30301" +185395,USB-C Charging Cable,2,11.95,03/15/19 01:01,"551 Cherry St, Austin, TX 73301" +185396,Lightning Charging Cable,1,14.95,03/28/19 10:23,"764 Pine St, New York City, NY 10001" +185397,Lightning Charging Cable,1,14.95,03/09/19 12:40,"861 9th St, Dallas, TX 75001" +185398,AAA Batteries (4-pack),1,2.99,03/24/19 19:57,"87 Washington St, New York City, NY 10001" +185399,AA Batteries (4-pack),1,3.84,03/31/19 21:42,"533 Maple St, San Francisco, CA 94016" +185400,iPhone,1,700,03/21/19 23:44,"734 Ridge St, Seattle, WA 98101" +185401,AAA Batteries (4-pack),1,2.99,03/30/19 21:06,"500 Maple St, Atlanta, GA 30301" +185402,Wired Headphones,1,11.99,03/24/19 11:32,"32 Park St, San Francisco, CA 94016" +185403,iPhone,1,700,03/15/19 08:11,"145 Hill St, Atlanta, GA 30301" +185403,Lightning Charging Cable,1,14.95,03/15/19 08:11,"145 Hill St, Atlanta, GA 30301" +185403,Wired Headphones,1,11.99,03/15/19 08:11,"145 Hill St, Atlanta, GA 30301" +185404,USB-C Charging Cable,1,11.95,03/24/19 19:02,"839 River St, Dallas, TX 75001" +185405,USB-C Charging Cable,1,11.95,03/27/19 16:41,"797 Madison St, San Francisco, CA 94016" +185406,Lightning Charging Cable,1,14.95,03/27/19 20:45,"799 Wilson St, Los Angeles, CA 90001" +185407,AA Batteries (4-pack),1,3.84,03/30/19 07:35,"601 Main St, New York City, NY 10001" +185408,Lightning Charging Cable,1,14.95,03/31/19 12:59,"185 2nd St, Los Angeles, CA 90001" +185409,Lightning Charging Cable,1,14.95,03/01/19 17:08,"212 Elm St, Seattle, WA 98101" +185410,USB-C Charging Cable,1,11.95,03/21/19 23:44,"636 Washington St, Los Angeles, CA 90001" +185411,20in Monitor,1,109.99,03/23/19 14:26,"746 Lincoln St, San Francisco, CA 94016" +185412,USB-C Charging Cable,1,11.95,03/19/19 11:50,"951 12th St, San Francisco, CA 94016" +185413,Bose SoundSport Headphones,1,99.99,03/05/19 16:39,"554 Dogwood St, Los Angeles, CA 90001" +185414,AA Batteries (4-pack),2,3.84,03/08/19 15:13,"878 Spruce St, San Francisco, CA 94016" +185415,AA Batteries (4-pack),1,3.84,03/29/19 12:09,"438 8th St, Atlanta, GA 30301" +185416,Macbook Pro Laptop,1,1700,03/21/19 20:48,"682 Lake St, New York City, NY 10001" +185417,Bose SoundSport Headphones,1,99.99,03/18/19 22:48,"705 Ridge St, San Francisco, CA 94016" +185418,Lightning Charging Cable,2,14.95,03/11/19 22:33,"334 5th St, Portland, OR 97035" +185419,27in 4K Gaming Monitor,1,389.99,03/14/19 21:31,"579 Chestnut St, Los Angeles, CA 90001" +185420,Flatscreen TV,1,300,03/20/19 21:07,"798 11th St, San Francisco, CA 94016" +185421,AAA Batteries (4-pack),2,2.99,03/10/19 12:41,"514 Dogwood St, San Francisco, CA 94016" +185422,Wired Headphones,1,11.99,03/18/19 20:32,"320 6th St, Los Angeles, CA 90001" +185423,AA Batteries (4-pack),1,3.84,03/18/19 23:02,"683 Highland St, San Francisco, CA 94016" +185424,27in FHD Monitor,1,149.99,03/27/19 13:45,"820 Wilson St, Austin, TX 73301" +185425,AA Batteries (4-pack),1,3.84,03/30/19 11:59,"321 Washington St, Los Angeles, CA 90001" +185426,AA Batteries (4-pack),1,3.84,03/10/19 14:27,"916 Ridge St, Boston, MA 02215" +185427,27in FHD Monitor,1,149.99,03/02/19 21:20,"20 Forest St, Boston, MA 02215" +185428,Bose SoundSport Headphones,1,99.99,03/05/19 15:07,"140 Dogwood St, San Francisco, CA 94016" +185429,Apple Airpods Headphones,1,150,03/06/19 23:14,"685 Washington St, Seattle, WA 98101" +185430,34in Ultrawide Monitor,1,379.99,03/11/19 11:00,"594 Jackson St, Atlanta, GA 30301" +185431,USB-C Charging Cable,1,11.95,03/22/19 07:38,"721 Wilson St, Boston, MA 02215" +185432,Lightning Charging Cable,3,14.95,03/13/19 21:39,"986 Wilson St, San Francisco, CA 94016" +185433,AAA Batteries (4-pack),1,2.99,03/29/19 07:21,"698 2nd St, Los Angeles, CA 90001" +185433,Apple Airpods Headphones,1,150,03/29/19 07:21,"698 2nd St, Los Angeles, CA 90001" +185434,27in 4K Gaming Monitor,1,389.99,03/13/19 15:43,"486 7th St, Los Angeles, CA 90001" +185435,AAA Batteries (4-pack),1,2.99,03/29/19 22:17,"493 Church St, Los Angeles, CA 90001" +185436,20in Monitor,1,109.99,03/19/19 10:33,"566 5th St, Seattle, WA 98101" +185437,AAA Batteries (4-pack),1,2.99,03/30/19 17:39,"234 11th St, Seattle, WA 98101" +185438,iPhone,1,700,03/03/19 08:27,"89 Jackson St, Boston, MA 02215" +185439,USB-C Charging Cable,1,11.95,03/03/19 19:29,"587 5th St, San Francisco, CA 94016" +185440,Google Phone,1,600,03/01/19 07:27,"563 West St, Los Angeles, CA 90001" +185441,AAA Batteries (4-pack),1,2.99,03/28/19 11:43,"769 Cherry St, Dallas, TX 75001" +185442,Apple Airpods Headphones,1,150,03/09/19 11:04,"19 Pine St, San Francisco, CA 94016" +185443,USB-C Charging Cable,1,11.95,03/12/19 09:18,"264 Highland St, Los Angeles, CA 90001" +185444,Google Phone,1,600,03/08/19 18:09,"305 10th St, New York City, NY 10001" +185444,USB-C Charging Cable,1,11.95,03/08/19 18:09,"305 10th St, New York City, NY 10001" +185445,20in Monitor,1,109.99,03/04/19 22:00,"604 Center St, Austin, TX 73301" +185446,USB-C Charging Cable,1,11.95,03/01/19 09:56,"751 5th St, Los Angeles, CA 90001" +185447,iPhone,1,700,03/11/19 12:06,"308 6th St, Boston, MA 02215" +185448,27in FHD Monitor,1,149.99,03/16/19 19:48,"875 South St, Portland, OR 97035" +185449,Bose SoundSport Headphones,1,99.99,03/05/19 09:49,"421 Elm St, Los Angeles, CA 90001" +185450,Lightning Charging Cable,1,14.95,03/23/19 21:18,"47 9th St, Boston, MA 02215" +185451,AA Batteries (4-pack),2,3.84,03/08/19 18:41,"978 4th St, Atlanta, GA 30301" +185452,Wired Headphones,1,11.99,03/02/19 22:43,"340 1st St, Dallas, TX 75001" +185453,27in 4K Gaming Monitor,1,389.99,03/03/19 11:55,"644 Pine St, Portland, OR 97035" +185454,AAA Batteries (4-pack),1,2.99,03/31/19 22:28,"969 Hickory St, New York City, NY 10001" +185455,AAA Batteries (4-pack),1,2.99,03/10/19 11:29,"603 Spruce St, San Francisco, CA 94016" +185456,AAA Batteries (4-pack),1,2.99,03/14/19 19:07,"384 Park St, Portland, OR 97035" +185457,Lightning Charging Cable,1,14.95,03/11/19 20:16,"719 1st St, Los Angeles, CA 90001" +185458,Wired Headphones,1,11.99,03/12/19 18:14,"634 12th St, New York City, NY 10001" +185459,Wired Headphones,1,11.99,03/21/19 00:18,"325 Hill St, Los Angeles, CA 90001" +185460,Wired Headphones,1,11.99,03/25/19 18:37,"996 Hill St, Portland, OR 97035" +185461,Wired Headphones,1,11.99,03/28/19 18:34,"907 Lake St, Austin, TX 73301" +185462,Wired Headphones,1,11.99,03/25/19 00:15,"72 Ridge St, Austin, TX 73301" +185463,AA Batteries (4-pack),1,3.84,03/28/19 20:46,"830 Lakeview St, Boston, MA 02215" +185464,AA Batteries (4-pack),1,3.84,03/18/19 16:53,"950 Johnson St, Portland, OR 97035" +185465,iPhone,1,700,03/26/19 11:01,"196 Cedar St, Los Angeles, CA 90001" +185466,Lightning Charging Cable,1,14.95,03/31/19 12:29,"467 7th St, Atlanta, GA 30301" +185467,Bose SoundSport Headphones,1,99.99,03/12/19 17:23,"100 Lakeview St, Austin, TX 73301" +185468,Lightning Charging Cable,1,14.95,03/04/19 22:35,"530 Willow St, San Francisco, CA 94016" +185469,USB-C Charging Cable,1,11.95,03/29/19 14:39,"752 4th St, San Francisco, CA 94016" +185470,USB-C Charging Cable,1,11.95,03/28/19 09:06,"566 Johnson St, San Francisco, CA 94016" +185471,AAA Batteries (4-pack),1,2.99,03/15/19 11:08,"660 9th St, Dallas, TX 75001" +185472,Apple Airpods Headphones,1,150,03/22/19 19:33,"450 14th St, New York City, NY 10001" +185473,Apple Airpods Headphones,1,150,03/15/19 17:48,"281 Elm St, Portland, OR 97035" +185474,USB-C Charging Cable,1,11.95,03/06/19 00:27,"409 Cherry St, San Francisco, CA 94016" +185475,USB-C Charging Cable,1,11.95,03/28/19 19:03,"725 Elm St, Dallas, TX 75001" +185476,AA Batteries (4-pack),1,3.84,03/14/19 13:58,"210 Highland St, Boston, MA 02215" +185477,Lightning Charging Cable,1,14.95,03/29/19 09:55,"892 Lakeview St, San Francisco, CA 94016" +185478,USB-C Charging Cable,1,11.95,03/10/19 19:34,"943 Church St, San Francisco, CA 94016" +185479,AAA Batteries (4-pack),1,2.99,03/23/19 09:56,"785 South St, Atlanta, GA 30301" +185480,USB-C Charging Cable,1,11.95,03/13/19 23:23,"419 5th St, San Francisco, CA 94016" +185481,Flatscreen TV,1,300,03/30/19 12:36,"895 Center St, San Francisco, CA 94016" +185482,Wired Headphones,1,11.99,03/26/19 22:23,"734 Sunset St, New York City, NY 10001" +185483,iPhone,1,700,03/16/19 19:51,"361 Lake St, Los Angeles, CA 90001" +185484,AAA Batteries (4-pack),1,2.99,03/24/19 10:22,"685 14th St, San Francisco, CA 94016" +185485,USB-C Charging Cable,2,11.95,03/29/19 13:17,"114 Sunset St, New York City, NY 10001" +185486,AA Batteries (4-pack),1,3.84,03/25/19 20:38,"910 Lincoln St, Los Angeles, CA 90001" +185487,27in FHD Monitor,1,149.99,03/30/19 14:01,"374 14th St, Atlanta, GA 30301" +185488,Wired Headphones,1,11.99,03/04/19 19:40,"148 Meadow St, Los Angeles, CA 90001" +185489,LG Washing Machine,1,600.0,03/13/19 14:44,"819 Dogwood St, Los Angeles, CA 90001" +185490,34in Ultrawide Monitor,1,379.99,03/12/19 22:16,"305 7th St, New York City, NY 10001" +185491,iPhone,1,700,03/04/19 06:05,"639 Elm St, Atlanta, GA 30301" +185491,Lightning Charging Cable,1,14.95,03/04/19 06:05,"639 Elm St, Atlanta, GA 30301" +185491,Apple Airpods Headphones,1,150,03/04/19 06:05,"639 Elm St, Atlanta, GA 30301" +185491,USB-C Charging Cable,1,11.95,03/04/19 06:05,"639 Elm St, Atlanta, GA 30301" +185492,Apple Airpods Headphones,1,150,03/23/19 06:51,"824 8th St, San Francisco, CA 94016" +185493,AAA Batteries (4-pack),2,2.99,03/24/19 18:17,"401 Cedar St, Seattle, WA 98101" +185494,Wired Headphones,1,11.99,03/30/19 12:31,"791 8th St, San Francisco, CA 94016" +185495,Apple Airpods Headphones,1,150,03/01/19 20:43,"900 Ridge St, Boston, MA 02215" +185496,USB-C Charging Cable,1,11.95,03/30/19 12:24,"522 Cedar St, Los Angeles, CA 90001" +185497,Bose SoundSport Headphones,1,99.99,03/10/19 15:21,"412 Madison St, Dallas, TX 75001" +185498,Apple Airpods Headphones,1,150,03/21/19 19:21,"102 Elm St, Los Angeles, CA 90001" +185499,27in FHD Monitor,1,149.99,03/20/19 23:52,"862 Church St, Dallas, TX 75001" +185500,Lightning Charging Cable,1,14.95,03/19/19 12:07,"125 Spruce St, Dallas, TX 75001" +185501,AAA Batteries (4-pack),1,2.99,03/05/19 15:55,"4 Main St, New York City, NY 10001" +185502,AA Batteries (4-pack),3,3.84,03/09/19 08:59,"247 Maple St, San Francisco, CA 94016" +185503,iPhone,1,700,03/17/19 13:57,"334 10th St, Seattle, WA 98101" +185504,USB-C Charging Cable,1,11.95,03/23/19 09:35,"470 Cedar St, Boston, MA 02215" +185505,20in Monitor,1,109.99,03/21/19 18:58,"652 Dogwood St, San Francisco, CA 94016" +185506,Wired Headphones,1,11.99,03/15/19 18:25,"60 10th St, Atlanta, GA 30301" +185507,Apple Airpods Headphones,1,150,03/30/19 21:24,"839 Hickory St, New York City, NY 10001" +185508,AA Batteries (4-pack),1,3.84,03/25/19 20:05,"749 Forest St, Seattle, WA 98101" +185509,Lightning Charging Cable,1,14.95,03/13/19 11:27,"568 9th St, San Francisco, CA 94016" +185510,Wired Headphones,1,11.99,03/11/19 15:40,"465 Johnson St, San Francisco, CA 94016" +185511,LG Washing Machine,1,600.0,03/27/19 16:17,"565 13th St, Boston, MA 02215" +185512,USB-C Charging Cable,1,11.95,03/19/19 20:19,"881 Elm St, Atlanta, GA 30301" +185513,34in Ultrawide Monitor,1,379.99,03/09/19 19:49,"313 10th St, Boston, MA 02215" +185514,AA Batteries (4-pack),1,3.84,03/06/19 22:50,"414 North St, Los Angeles, CA 90001" +185515,Lightning Charging Cable,1,14.95,03/27/19 19:46,"107 4th St, Los Angeles, CA 90001" +185516,Apple Airpods Headphones,1,150,03/08/19 11:26,"593 Chestnut St, Atlanta, GA 30301" +185517,27in 4K Gaming Monitor,1,389.99,03/11/19 23:34,"792 Park St, Dallas, TX 75001" +185518,AAA Batteries (4-pack),1,2.99,03/07/19 21:47,"27 Willow St, Atlanta, GA 30301" +185519,AAA Batteries (4-pack),1,2.99,03/22/19 20:10,"458 Lincoln St, New York City, NY 10001" +185520,AA Batteries (4-pack),3,3.84,03/11/19 21:32,"35 Cedar St, Seattle, WA 98101" +185521,USB-C Charging Cable,1,11.95,03/05/19 10:38,"14 2nd St, Boston, MA 02215" +185522,Apple Airpods Headphones,1,150,03/20/19 00:32,"331 Highland St, New York City, NY 10001" +185523,AAA Batteries (4-pack),1,2.99,03/23/19 14:20,"509 Jefferson St, Boston, MA 02215" +185524,20in Monitor,1,109.99,03/17/19 08:46,"771 4th St, New York City, NY 10001" +185525,Lightning Charging Cable,1,14.95,03/15/19 06:59,"861 Hickory St, Austin, TX 73301" +185526,USB-C Charging Cable,1,11.95,03/24/19 08:55,"523 1st St, Atlanta, GA 30301" +185527,34in Ultrawide Monitor,1,379.99,03/18/19 08:39,"607 Walnut St, New York City, NY 10001" +185528,Apple Airpods Headphones,1,150,03/28/19 13:24,"30 Highland St, San Francisco, CA 94016" +185529,27in 4K Gaming Monitor,1,389.99,03/07/19 12:59,"98 Washington St, Seattle, WA 98101" +185530,AA Batteries (4-pack),2,3.84,03/30/19 18:45,"61 2nd St, Austin, TX 73301" +185531,AA Batteries (4-pack),1,3.84,03/08/19 17:43,"973 Willow St, San Francisco, CA 94016" +185532,34in Ultrawide Monitor,1,379.99,03/28/19 17:08,"94 Center St, Boston, MA 02215" +185533,AA Batteries (4-pack),2,3.84,03/02/19 19:36,"701 Meadow St, Boston, MA 02215" +185534,USB-C Charging Cable,1,11.95,03/20/19 16:24,"524 Church St, New York City, NY 10001" +185535,Lightning Charging Cable,1,14.95,03/12/19 14:39,"743 Cedar St, Boston, MA 02215" +185536,USB-C Charging Cable,1,11.95,03/01/19 12:12,"452 Park St, San Francisco, CA 94016" +185537,AA Batteries (4-pack),1,3.84,03/10/19 21:41,"275 4th St, Los Angeles, CA 90001" +185538,AAA Batteries (4-pack),1,2.99,03/17/19 20:37,"665 Wilson St, Atlanta, GA 30301" +185539,27in FHD Monitor,1,149.99,03/08/19 23:57,"737 4th St, Seattle, WA 98101" +185540,iPhone,1,700,03/09/19 06:40,"655 West St, Portland, ME 04101" +185541,Lightning Charging Cable,2,14.95,03/19/19 12:09,"750 Cherry St, San Francisco, CA 94016" +185542,AA Batteries (4-pack),1,3.84,03/06/19 18:47,"803 Willow St, New York City, NY 10001" +185543,AA Batteries (4-pack),1,3.84,03/16/19 09:59,"157 9th St, San Francisco, CA 94016" +185544,Lightning Charging Cable,2,14.95,03/16/19 16:54,"439 Cherry St, Portland, OR 97035" +185545,27in FHD Monitor,1,149.99,03/16/19 21:11,"606 Walnut St, San Francisco, CA 94016" +185546,Lightning Charging Cable,1,14.95,03/09/19 14:32,"627 Elm St, Los Angeles, CA 90001" +185547,iPhone,1,700,03/02/19 14:09,"231 Elm St, Los Angeles, CA 90001" +185547,Lightning Charging Cable,1,14.95,03/02/19 14:09,"231 Elm St, Los Angeles, CA 90001" +185548,Lightning Charging Cable,1,14.95,03/26/19 13:48,"856 Sunset St, Los Angeles, CA 90001" +185549,Apple Airpods Headphones,1,150,03/12/19 18:37,"275 Maple St, Dallas, TX 75001" +185550,Bose SoundSport Headphones,1,99.99,03/19/19 12:14,"308 Spruce St, Los Angeles, CA 90001" +185551,Wired Headphones,1,11.99,03/13/19 13:56,"85 Hickory St, Seattle, WA 98101" +185552,Lightning Charging Cable,1,14.95,03/11/19 09:12,"129 River St, Seattle, WA 98101" +185553,Lightning Charging Cable,1,14.95,03/18/19 22:00,"668 Cedar St, Boston, MA 02215" +185554,ThinkPad Laptop,1,999.99,03/25/19 21:33,"293 Cherry St, New York City, NY 10001" +185555,LG Dryer,1,600.0,03/06/19 10:41,"235 5th St, Boston, MA 02215" +185556,Wired Headphones,1,11.99,03/05/19 14:15,"262 Cedar St, New York City, NY 10001" +185557,Wired Headphones,1,11.99,03/06/19 07:26,"799 Sunset St, San Francisco, CA 94016" +185558,Wired Headphones,1,11.99,03/13/19 21:22,"467 Pine St, San Francisco, CA 94016" +185559,Wired Headphones,1,11.99,03/17/19 10:49,"448 Center St, Boston, MA 02215" +185560,iPhone,1,700,03/16/19 13:06,"379 9th St, Los Angeles, CA 90001" +185561,34in Ultrawide Monitor,1,379.99,03/11/19 17:44,"450 Highland St, Boston, MA 02215" +185562,ThinkPad Laptop,1,999.99,03/10/19 20:20,"958 13th St, New York City, NY 10001" +185563,Bose SoundSport Headphones,1,99.99,03/09/19 11:50,"203 River St, New York City, NY 10001" +185564,27in 4K Gaming Monitor,1,389.99,03/28/19 21:31,"144 Washington St, Los Angeles, CA 90001" +185565,iPhone,1,700,03/20/19 10:59,"683 Johnson St, Austin, TX 73301" +185566,27in FHD Monitor,1,149.99,03/09/19 19:10,"38 River St, Atlanta, GA 30301" +185567,Lightning Charging Cable,3,14.95,03/25/19 21:27,"582 Sunset St, Atlanta, GA 30301" +185568,27in FHD Monitor,1,149.99,03/08/19 07:08,"621 14th St, Boston, MA 02215" +185569,Lightning Charging Cable,1,14.95,03/01/19 10:33,"398 7th St, New York City, NY 10001" +185570,Macbook Pro Laptop,1,1700,03/30/19 08:42,"813 Washington St, San Francisco, CA 94016" +185571,AA Batteries (4-pack),5,3.84,03/08/19 20:13,"545 Pine St, Atlanta, GA 30301" +185572,27in FHD Monitor,1,149.99,03/24/19 09:05,"639 Dogwood St, Dallas, TX 75001" +185573,AAA Batteries (4-pack),3,2.99,03/15/19 17:48,"195 Elm St, Atlanta, GA 30301" +185574,Flatscreen TV,1,300,03/17/19 13:16,"590 Jefferson St, Los Angeles, CA 90001" +185575,Wired Headphones,1,11.99,03/08/19 13:12,"110 Cedar St, Los Angeles, CA 90001" +185576,AA Batteries (4-pack),1,3.84,03/25/19 15:22,"757 Spruce St, New York City, NY 10001" +185577,AA Batteries (4-pack),2,3.84,03/12/19 18:00,"958 Wilson St, Dallas, TX 75001" +185578,AA Batteries (4-pack),1,3.84,03/04/19 20:58,"297 Pine St, Boston, MA 02215" +185579,Apple Airpods Headphones,1,150,03/13/19 21:10,"694 South St, Portland, OR 97035" +185580,Wired Headphones,1,11.99,03/29/19 12:25,"951 Highland St, Atlanta, GA 30301" +185581,Bose SoundSport Headphones,1,99.99,03/22/19 11:54,"535 Johnson St, Los Angeles, CA 90001" +185582,Bose SoundSport Headphones,1,99.99,03/22/19 19:26,"149 1st St, Boston, MA 02215" +185583,Lightning Charging Cable,1,14.95,03/03/19 10:16,"34 Lake St, San Francisco, CA 94016" +185584,Apple Airpods Headphones,1,150,03/13/19 18:26,"543 Hickory St, Atlanta, GA 30301" +185585,Apple Airpods Headphones,1,150,03/12/19 13:50,"227 Hill St, Atlanta, GA 30301" +185586,Macbook Pro Laptop,1,1700,03/17/19 09:29,"22 9th St, Boston, MA 02215" +185586,Bose SoundSport Headphones,1,99.99,03/17/19 09:29,"22 9th St, Boston, MA 02215" +185587,34in Ultrawide Monitor,1,379.99,03/23/19 19:28,"293 Sunset St, New York City, NY 10001" +185588,Bose SoundSport Headphones,1,99.99,03/03/19 02:14,"296 12th St, San Francisco, CA 94016" +185589,27in FHD Monitor,1,149.99,03/20/19 17:44,"383 Forest St, Seattle, WA 98101" +185589,27in 4K Gaming Monitor,1,389.99,03/20/19 17:44,"383 Forest St, Seattle, WA 98101" +185590,27in 4K Gaming Monitor,1,389.99,03/23/19 10:56,"361 Lincoln St, San Francisco, CA 94016" +185591,27in FHD Monitor,1,149.99,03/02/19 10:44,"138 11th St, Los Angeles, CA 90001" +185592,AA Batteries (4-pack),3,3.84,03/28/19 20:47,"158 12th St, New York City, NY 10001" +185593,Lightning Charging Cable,1,14.95,03/01/19 14:50,"413 13th St, Los Angeles, CA 90001" +185594,Google Phone,1,600,03/24/19 17:47,"518 Lakeview St, Seattle, WA 98101" +185594,Wired Headphones,1,11.99,03/24/19 17:47,"518 Lakeview St, Seattle, WA 98101" +185595,AAA Batteries (4-pack),1,2.99,03/21/19 16:33,"554 Jackson St, Dallas, TX 75001" +185596,Google Phone,1,600,03/27/19 11:45,"881 7th St, New York City, NY 10001" +185596,USB-C Charging Cable,1,11.95,03/27/19 11:45,"881 7th St, New York City, NY 10001" +185597,Google Phone,1,600,03/17/19 18:13,"336 Madison St, Dallas, TX 75001" +185597,USB-C Charging Cable,1,11.95,03/17/19 18:13,"336 Madison St, Dallas, TX 75001" +185598,AA Batteries (4-pack),1,3.84,03/11/19 18:49,"300 Lakeview St, Atlanta, GA 30301" +185599,Bose SoundSport Headphones,1,99.99,03/22/19 17:23,"221 Spruce St, Austin, TX 73301" +185600,Macbook Pro Laptop,1,1700,03/23/19 14:23,"165 Walnut St, Dallas, TX 75001" +185601,Apple Airpods Headphones,1,150,03/29/19 20:07,"39 River St, New York City, NY 10001" +185602,AA Batteries (4-pack),1,3.84,03/03/19 14:36,"424 Ridge St, Portland, OR 97035" +185603,Lightning Charging Cable,1,14.95,03/03/19 13:15,"58 Forest St, Portland, OR 97035" +185604,AAA Batteries (4-pack),1,2.99,03/18/19 16:21,"516 10th St, Seattle, WA 98101" +185605,AAA Batteries (4-pack),1,2.99,03/20/19 11:02,"324 Main St, Boston, MA 02215" +185606,USB-C Charging Cable,1,11.95,03/07/19 00:09,"303 Lakeview St, Atlanta, GA 30301" +185607,Apple Airpods Headphones,1,150,03/05/19 20:13,"53 4th St, Seattle, WA 98101" +185608,Lightning Charging Cable,1,14.95,03/24/19 23:15,"737 7th St, Boston, MA 02215" +185609,Wired Headphones,1,11.99,03/22/19 18:20,"650 Elm St, Los Angeles, CA 90001" +185610,Lightning Charging Cable,1,14.95,03/05/19 12:05,"86 Meadow St, Portland, OR 97035" +185611,AA Batteries (4-pack),2,3.84,03/09/19 20:05,"783 Highland St, Seattle, WA 98101" +185612,AA Batteries (4-pack),1,3.84,03/29/19 23:21,"678 Spruce St, New York City, NY 10001" +185613,20in Monitor,1,109.99,03/22/19 23:26,"762 Park St, Dallas, TX 75001" +185614,Lightning Charging Cable,1,14.95,03/04/19 13:15,"87 Jackson St, New York City, NY 10001" +185614,iPhone,1,700,03/04/19 13:15,"87 Jackson St, New York City, NY 10001" +185615,27in FHD Monitor,1,149.99,03/18/19 23:19,"100 River St, Los Angeles, CA 90001" +185616,Wired Headphones,1,11.99,03/20/19 10:39,"588 Forest St, Seattle, WA 98101" +185617,USB-C Charging Cable,1,11.95,03/04/19 20:09,"195 2nd St, Dallas, TX 75001" +185618,AAA Batteries (4-pack),2,2.99,03/02/19 20:41,"884 Park St, Dallas, TX 75001" +185619,AAA Batteries (4-pack),1,2.99,03/06/19 17:35,"914 Elm St, San Francisco, CA 94016" +185620,Lightning Charging Cable,1,14.95,03/18/19 21:23,"644 Jefferson St, San Francisco, CA 94016" +185621,Wired Headphones,1,11.99,03/24/19 07:42,"68 Forest St, Austin, TX 73301" +185622,Apple Airpods Headphones,1,150,03/31/19 20:17,"638 Maple St, Seattle, WA 98101" +185623,AAA Batteries (4-pack),2,2.99,03/21/19 16:04,"134 Cedar St, Los Angeles, CA 90001" +185624,Apple Airpods Headphones,1,150,03/30/19 08:23,"147 11th St, Dallas, TX 75001" +185625,27in FHD Monitor,1,149.99,03/07/19 20:05,"611 Lake St, Boston, MA 02215" +185626,AAA Batteries (4-pack),1,2.99,03/04/19 13:40,"819 4th St, New York City, NY 10001" +185627,Macbook Pro Laptop,1,1700,03/16/19 09:56,"981 6th St, San Francisco, CA 94016" +185628,AA Batteries (4-pack),1,3.84,03/24/19 19:39,"818 5th St, Seattle, WA 98101" +185629,Bose SoundSport Headphones,1,99.99,03/05/19 16:30,"285 Sunset St, San Francisco, CA 94016" +185630,Macbook Pro Laptop,1,1700,03/24/19 00:23,"100 South St, New York City, NY 10001" +185631,USB-C Charging Cable,1,11.95,03/29/19 22:11,"909 Adams St, New York City, NY 10001" +185632,Apple Airpods Headphones,1,150,03/06/19 23:06,"184 Pine St, Dallas, TX 75001" +185633,Wired Headphones,1,11.99,03/13/19 06:14,"692 Jefferson St, Seattle, WA 98101" +185634,USB-C Charging Cable,1,11.95,03/26/19 05:22,"488 9th St, Seattle, WA 98101" +185635,Lightning Charging Cable,2,14.95,03/04/19 08:46,"151 Madison St, Dallas, TX 75001" +185636,AA Batteries (4-pack),1,3.84,03/08/19 03:40,"311 2nd St, Portland, OR 97035" +185637,27in FHD Monitor,1,149.99,03/17/19 12:19,"317 Ridge St, Portland, OR 97035" +185638,AA Batteries (4-pack),2,3.84,03/29/19 18:07,"123 Wilson St, New York City, NY 10001" +185639,AA Batteries (4-pack),1,3.84,03/29/19 19:20,"424 8th St, New York City, NY 10001" +185640,AAA Batteries (4-pack),1,2.99,03/21/19 22:03,"771 Wilson St, San Francisco, CA 94016" +185641,AA Batteries (4-pack),3,3.84,03/20/19 22:00,"277 7th St, Boston, MA 02215" +185642,Lightning Charging Cable,1,14.95,03/30/19 11:51,"577 12th St, Atlanta, GA 30301" +185643,ThinkPad Laptop,1,999.99,03/27/19 12:32,"925 Meadow St, Portland, OR 97035" +185644,Lightning Charging Cable,1,14.95,03/11/19 23:56,"289 Forest St, New York City, NY 10001" +185645,Macbook Pro Laptop,1,1700,03/21/19 15:17,"892 Forest St, San Francisco, CA 94016" +185646,Wired Headphones,1,11.99,03/16/19 22:12,"372 5th St, Boston, MA 02215" +185647,AA Batteries (4-pack),1,3.84,03/24/19 18:00,"942 Maple St, New York City, NY 10001" +185648,USB-C Charging Cable,2,11.95,03/26/19 06:57,"188 Johnson St, Los Angeles, CA 90001" +185649,34in Ultrawide Monitor,1,379.99,03/05/19 21:05,"92 Forest St, Atlanta, GA 30301" +185650,AA Batteries (4-pack),1,3.84,03/02/19 10:31,"109 11th St, Atlanta, GA 30301" +185651,AAA Batteries (4-pack),1,2.99,03/17/19 23:37,"366 1st St, Boston, MA 02215" +185652,27in FHD Monitor,1,149.99,03/09/19 17:02,"890 12th St, Austin, TX 73301" +185653,34in Ultrawide Monitor,1,379.99,03/13/19 10:42,"655 South St, Seattle, WA 98101" +,,,,, +185654,Apple Airpods Headphones,1,150,03/30/19 22:53,"865 Hill St, San Francisco, CA 94016" +185655,AAA Batteries (4-pack),1,2.99,03/01/19 10:27,"123 Adams St, San Francisco, CA 94016" +185656,Wired Headphones,1,11.99,03/31/19 15:35,"770 11th St, Boston, MA 02215" +185657,Lightning Charging Cable,1,14.95,03/08/19 19:54,"598 7th St, New York City, NY 10001" +185658,LG Dryer,1,600.0,03/29/19 14:56,"498 Lakeview St, Atlanta, GA 30301" +185659,AA Batteries (4-pack),1,3.84,03/29/19 17:42,"778 Elm St, Austin, TX 73301" +185660,Wired Headphones,1,11.99,03/08/19 16:23,"393 North St, San Francisco, CA 94016" +185661,iPhone,1,700,03/16/19 22:40,"350 8th St, Austin, TX 73301" +185662,20in Monitor,1,109.99,03/26/19 11:14,"853 Park St, San Francisco, CA 94016" +185663,Macbook Pro Laptop,1,1700,03/14/19 13:55,"774 Walnut St, Portland, OR 97035" +185664,USB-C Charging Cable,1,11.95,03/26/19 16:34,"639 Adams St, Los Angeles, CA 90001" +185665,Wired Headphones,1,11.99,03/19/19 08:17,"392 Park St, San Francisco, CA 94016" +185666,AAA Batteries (4-pack),2,2.99,03/15/19 13:28,"892 Main St, Los Angeles, CA 90001" +185667,Wired Headphones,1,11.99,03/06/19 12:26,"352 7th St, San Francisco, CA 94016" +185668,Wired Headphones,1,11.99,03/11/19 07:32,"593 Center St, Portland, OR 97035" +185669,ThinkPad Laptop,1,999.99,03/25/19 13:32,"659 8th St, Portland, ME 04101" +185670,Apple Airpods Headphones,1,150,03/25/19 13:08,"705 1st St, San Francisco, CA 94016" +185671,AAA Batteries (4-pack),1,2.99,03/14/19 22:35,"1 North St, San Francisco, CA 94016" +185672,Apple Airpods Headphones,1,150,03/19/19 10:58,"468 Johnson St, Dallas, TX 75001" +185673,USB-C Charging Cable,1,11.95,03/26/19 19:59,"65 7th St, Portland, OR 97035" +185674,Lightning Charging Cable,1,14.95,03/25/19 15:48,"917 Maple St, San Francisco, CA 94016" +185675,34in Ultrawide Monitor,1,379.99,03/18/19 18:42,"955 Forest St, San Francisco, CA 94016" +185676,Wired Headphones,1,11.99,03/08/19 14:49,"37 Center St, Austin, TX 73301" +185677,Lightning Charging Cable,1,14.95,03/09/19 23:20,"384 Wilson St, Austin, TX 73301" +185678,AA Batteries (4-pack),1,3.84,03/06/19 19:59,"880 Willow St, San Francisco, CA 94016" +185679,Lightning Charging Cable,1,14.95,03/25/19 20:28,"476 Madison St, Los Angeles, CA 90001" +185680,USB-C Charging Cable,2,11.95,03/06/19 08:21,"182 Center St, New York City, NY 10001" +185681,AAA Batteries (4-pack),2,2.99,03/27/19 20:15,"972 10th St, Atlanta, GA 30301" +185682,Wired Headphones,1,11.99,03/13/19 18:45,"579 Pine St, San Francisco, CA 94016" +185683,Apple Airpods Headphones,1,150,03/27/19 11:45,"367 5th St, Dallas, TX 75001" +185684,AA Batteries (4-pack),1,3.84,03/08/19 00:32,"513 North St, Portland, ME 04101" +185685,Wired Headphones,1,11.99,03/03/19 15:37,"469 14th St, San Francisco, CA 94016" +185686,Bose SoundSport Headphones,1,99.99,03/08/19 13:49,"552 Johnson St, San Francisco, CA 94016" +185687,Lightning Charging Cable,1,14.95,03/06/19 07:53,"981 North St, Boston, MA 02215" +185688,27in FHD Monitor,1,149.99,03/18/19 17:06,"746 Walnut St, Dallas, TX 75001" +185689,Bose SoundSport Headphones,1,99.99,03/04/19 19:17,"106 1st St, Boston, MA 02215" +185690,Wired Headphones,1,11.99,03/12/19 06:56,"497 Maple St, Los Angeles, CA 90001" +185691,Wired Headphones,1,11.99,03/07/19 20:32,"128 Washington St, Dallas, TX 75001" +185692,Lightning Charging Cable,1,14.95,03/11/19 04:56,"690 12th St, San Francisco, CA 94016" +185693,Macbook Pro Laptop,1,1700,03/07/19 12:31,"643 Walnut St, New York City, NY 10001" +185694,Flatscreen TV,1,300,03/15/19 19:53,"937 8th St, Los Angeles, CA 90001" +185695,Wired Headphones,1,11.99,03/19/19 17:48,"107 2nd St, Los Angeles, CA 90001" +185696,27in FHD Monitor,1,149.99,03/15/19 21:44,"553 14th St, Portland, ME 04101" +185697,Macbook Pro Laptop,1,1700,03/01/19 15:10,"904 13th St, Seattle, WA 98101" +185698,Flatscreen TV,1,300,03/25/19 08:18,"437 Lakeview St, San Francisco, CA 94016" +185699,34in Ultrawide Monitor,1,379.99,03/14/19 13:00,"270 South St, San Francisco, CA 94016" +185700,Google Phone,1,600,03/14/19 11:57,"256 12th St, Los Angeles, CA 90001" +185701,Lightning Charging Cable,1,14.95,03/05/19 21:02,"547 Sunset St, Portland, OR 97035" +185702,USB-C Charging Cable,1,11.95,03/28/19 14:50,"425 1st St, Portland, OR 97035" +185703,AA Batteries (4-pack),1,3.84,03/09/19 22:44,"130 4th St, San Francisco, CA 94016" +185704,AA Batteries (4-pack),1,3.84,03/18/19 17:36,"322 Center St, Boston, MA 02215" +185705,iPhone,1,700,03/26/19 19:55,"229 Forest St, New York City, NY 10001" +185705,Lightning Charging Cable,1,14.95,03/26/19 19:55,"229 Forest St, New York City, NY 10001" +185706,AA Batteries (4-pack),1,3.84,03/17/19 17:30,"599 Lakeview St, San Francisco, CA 94016" +185706,iPhone,1,700,03/17/19 17:30,"599 Lakeview St, San Francisco, CA 94016" +185707,34in Ultrawide Monitor,1,379.99,03/13/19 08:50,"889 Forest St, Los Angeles, CA 90001" +185708,AA Batteries (4-pack),1,3.84,03/19/19 14:40,"235 Cherry St, Atlanta, GA 30301" +185709,Bose SoundSport Headphones,1,99.99,03/12/19 00:47,"911 Spruce St, Los Angeles, CA 90001" +185710,USB-C Charging Cable,1,11.95,03/05/19 21:41,"309 8th St, Seattle, WA 98101" +185711,Macbook Pro Laptop,1,1700,03/21/19 08:59,"610 Chestnut St, Austin, TX 73301" +185712,AAA Batteries (4-pack),1,2.99,03/11/19 14:50,"521 Johnson St, New York City, NY 10001" +185713,Apple Airpods Headphones,1,150,03/15/19 09:41,"356 Willow St, Dallas, TX 75001" +185714,Apple Airpods Headphones,1,150,03/19/19 19:06,"529 Lincoln St, San Francisco, CA 94016" +185715,Apple Airpods Headphones,1,150,03/11/19 18:55,"593 Forest St, San Francisco, CA 94016" +185716,Wired Headphones,1,11.99,03/31/19 01:35,"465 South St, San Francisco, CA 94016" +185717,AAA Batteries (4-pack),3,2.99,03/04/19 13:56,"905 Hill St, New York City, NY 10001" +185718,27in FHD Monitor,1,149.99,03/31/19 00:21,"45 7th St, Boston, MA 02215" +185719,USB-C Charging Cable,1,11.95,03/27/19 18:39,"753 8th St, New York City, NY 10001" +185720,27in FHD Monitor,1,149.99,03/15/19 12:13,"377 North St, San Francisco, CA 94016" +185721,AA Batteries (4-pack),2,3.84,03/24/19 20:57,"548 North St, Los Angeles, CA 90001" +185722,iPhone,1,700,03/08/19 08:24,"84 Hickory St, San Francisco, CA 94016" +185723,Flatscreen TV,1,300,03/02/19 14:35,"984 Highland St, Atlanta, GA 30301" +185724,AAA Batteries (4-pack),3,2.99,03/30/19 16:55,"963 Wilson St, Dallas, TX 75001" +185725,34in Ultrawide Monitor,1,379.99,03/10/19 11:37,"425 Church St, Boston, MA 02215" +185726,AA Batteries (4-pack),1,3.84,03/05/19 16:45,"496 Madison St, Seattle, WA 98101" +185727,Lightning Charging Cable,1,14.95,03/07/19 08:29,"80 Spruce St, San Francisco, CA 94016" +185728,AA Batteries (4-pack),3,3.84,03/10/19 19:39,"906 River St, Los Angeles, CA 90001" +185729,AA Batteries (4-pack),2,3.84,03/18/19 09:05,"919 Adams St, Atlanta, GA 30301" +185730,AAA Batteries (4-pack),2,2.99,03/09/19 18:01,"834 13th St, Austin, TX 73301" +185731,iPhone,1,700,03/22/19 10:54,"482 Washington St, Los Angeles, CA 90001" +185732,AAA Batteries (4-pack),3,2.99,03/02/19 09:56,"844 Adams St, Boston, MA 02215" +185733,Vareebadd Phone,1,400,03/04/19 18:06,"588 Hickory St, New York City, NY 10001" +185733,USB-C Charging Cable,1,11.95,03/04/19 18:06,"588 Hickory St, New York City, NY 10001" +185734,Google Phone,1,600,03/17/19 07:22,"45 2nd St, Dallas, TX 75001" +185735,AAA Batteries (4-pack),1,2.99,03/25/19 15:17,"98 Adams St, San Francisco, CA 94016" +185736,AA Batteries (4-pack),2,3.84,03/27/19 14:31,"648 Lincoln St, New York City, NY 10001" +185737,AAA Batteries (4-pack),1,2.99,03/18/19 00:08,"404 Forest St, Atlanta, GA 30301" +185738,27in 4K Gaming Monitor,1,389.99,03/04/19 14:28,"403 Jackson St, Austin, TX 73301" +185739,Lightning Charging Cable,1,14.95,03/30/19 08:31,"358 Forest St, New York City, NY 10001" +185740,Bose SoundSport Headphones,1,99.99,03/09/19 15:19,"232 7th St, Los Angeles, CA 90001" +185741,27in FHD Monitor,1,149.99,03/22/19 14:13,"932 Pine St, Portland, OR 97035" +185742,AA Batteries (4-pack),1,3.84,03/31/19 19:43,"490 4th St, Los Angeles, CA 90001" +185743,Flatscreen TV,1,300,03/28/19 11:10,"22 Park St, Austin, TX 73301" +185744,Wired Headphones,1,11.99,03/24/19 23:18,"507 West St, San Francisco, CA 94016" +185745,Wired Headphones,2,11.99,03/17/19 16:41,"76 Main St, Atlanta, GA 30301" +185746,Lightning Charging Cable,1,14.95,03/22/19 21:01,"14 Cherry St, Boston, MA 02215" +185747,AA Batteries (4-pack),3,3.84,03/24/19 16:58,"121 Forest St, San Francisco, CA 94016" +185748,USB-C Charging Cable,2,11.95,03/07/19 09:45,"304 South St, Austin, TX 73301" +185749,Vareebadd Phone,1,400,03/22/19 22:41,"940 Hickory St, Los Angeles, CA 90001" +185750,ThinkPad Laptop,1,999.99,03/05/19 19:13,"226 Pine St, Dallas, TX 75001" +185751,Wired Headphones,1,11.99,03/06/19 11:59,"640 Adams St, Boston, MA 02215" +185752,Lightning Charging Cable,1,14.95,03/29/19 10:18,"943 Cherry St, Boston, MA 02215" +185753,Macbook Pro Laptop,1,1700,03/31/19 19:48,"119 Ridge St, New York City, NY 10001" +185753,34in Ultrawide Monitor,1,379.99,03/31/19 19:48,"119 Ridge St, New York City, NY 10001" +185754,27in FHD Monitor,1,149.99,03/02/19 12:33,"921 Hill St, Los Angeles, CA 90001" +185755,Lightning Charging Cable,1,14.95,03/20/19 16:59,"502 Meadow St, Boston, MA 02215" +185756,Apple Airpods Headphones,1,150,03/03/19 08:44,"107 Johnson St, San Francisco, CA 94016" +185757,AAA Batteries (4-pack),1,2.99,03/26/19 11:38,"876 5th St, Boston, MA 02215" +185758,Apple Airpods Headphones,1,150,03/14/19 22:14,"90 5th St, San Francisco, CA 94016" +185759,Apple Airpods Headphones,1,150,03/10/19 13:47,"501 Jefferson St, Seattle, WA 98101" +185760,AA Batteries (4-pack),1,3.84,03/21/19 20:45,"239 2nd St, New York City, NY 10001" +185761,Apple Airpods Headphones,1,150,03/27/19 20:28,"543 West St, Boston, MA 02215" +185762,Flatscreen TV,1,300,03/19/19 18:42,"658 West St, San Francisco, CA 94016" +185763,Apple Airpods Headphones,1,150,03/03/19 19:21,"173 12th St, Los Angeles, CA 90001" +185764,Google Phone,1,600,03/22/19 13:33,"18 6th St, San Francisco, CA 94016" +185765,Apple Airpods Headphones,1,150,03/14/19 11:06,"646 Lakeview St, Los Angeles, CA 90001" +185766,Wired Headphones,1,11.99,03/05/19 15:41,"235 Ridge St, Austin, TX 73301" +185767,Wired Headphones,2,11.99,03/16/19 11:47,"60 2nd St, New York City, NY 10001" +185768,iPhone,1,700,03/11/19 22:53,"362 Highland St, Austin, TX 73301" +185768,Lightning Charging Cable,1,14.95,03/11/19 22:53,"362 Highland St, Austin, TX 73301" +185769,AA Batteries (4-pack),1,3.84,03/20/19 16:51,"473 Sunset St, Seattle, WA 98101" +185770,Lightning Charging Cable,1,14.95,03/05/19 20:44,"916 Cedar St, San Francisco, CA 94016" +185771,AA Batteries (4-pack),1,3.84,03/15/19 12:57,"438 12th St, Los Angeles, CA 90001" +185772,Bose SoundSport Headphones,1,99.99,03/18/19 23:06,"452 Cedar St, Portland, OR 97035" +185773,Lightning Charging Cable,1,14.95,03/26/19 20:06,"8 Lakeview St, Seattle, WA 98101" +185774,Bose SoundSport Headphones,1,99.99,03/16/19 15:43,"975 Cedar St, San Francisco, CA 94016" +185775,iPhone,1,700,03/24/19 17:43,"215 Main St, Portland, OR 97035" +185776,USB-C Charging Cable,1,11.95,03/06/19 01:06,"551 West St, Los Angeles, CA 90001" +185777,USB-C Charging Cable,3,11.95,03/04/19 16:18,"938 Hickory St, Boston, MA 02215" +185778,34in Ultrawide Monitor,1,379.99,03/05/19 20:45,"261 Dogwood St, New York City, NY 10001" +185778,USB-C Charging Cable,1,11.95,03/05/19 20:45,"261 Dogwood St, New York City, NY 10001" +185779,Apple Airpods Headphones,1,150,03/08/19 18:54,"698 West St, Los Angeles, CA 90001" +185780,AA Batteries (4-pack),1,3.84,03/24/19 09:26,"69 Lake St, Portland, OR 97035" +185781,34in Ultrawide Monitor,1,379.99,03/15/19 14:56,"195 South St, Austin, TX 73301" +185782,AA Batteries (4-pack),1,3.84,03/15/19 18:11,"425 Lakeview St, Boston, MA 02215" +185783,Google Phone,1,600,03/27/19 20:35,"942 Madison St, San Francisco, CA 94016" +185783,USB-C Charging Cable,1,11.95,03/27/19 20:35,"942 Madison St, San Francisco, CA 94016" +185784,Apple Airpods Headphones,1,150,03/18/19 12:05,"752 Meadow St, Seattle, WA 98101" +185785,AA Batteries (4-pack),1,3.84,03/17/19 13:42,"255 Highland St, Austin, TX 73301" +185786,Bose SoundSport Headphones,1,99.99,03/27/19 11:16,"246 4th St, Los Angeles, CA 90001" +185787,USB-C Charging Cable,2,11.95,03/08/19 14:24,"476 Park St, San Francisco, CA 94016" +185788,USB-C Charging Cable,1,11.95,03/10/19 23:00,"53 Pine St, Los Angeles, CA 90001" +185789,Lightning Charging Cable,1,14.95,03/16/19 13:36,"616 14th St, Portland, ME 04101" +185790,AA Batteries (4-pack),1,3.84,03/04/19 09:25,"844 2nd St, Boston, MA 02215" +185791,USB-C Charging Cable,1,11.95,03/19/19 19:20,"65 Cherry St, New York City, NY 10001" +185792,Wired Headphones,1,11.99,03/03/19 17:06,"329 8th St, Atlanta, GA 30301" +185793,Lightning Charging Cable,1,14.95,03/29/19 22:17,"659 South St, San Francisco, CA 94016" +185794,USB-C Charging Cable,1,11.95,03/21/19 20:08,"892 Washington St, Boston, MA 02215" +185795,34in Ultrawide Monitor,1,379.99,03/31/19 13:04,"484 Johnson St, Boston, MA 02215" +185796,Apple Airpods Headphones,1,150,03/30/19 14:23,"821 6th St, Portland, OR 97035" +185797,27in 4K Gaming Monitor,1,389.99,03/28/19 09:16,"844 Hickory St, Los Angeles, CA 90001" +185798,Google Phone,1,600,03/05/19 14:48,"481 6th St, Atlanta, GA 30301" +185799,Wired Headphones,1,11.99,03/02/19 19:42,"704 Center St, Los Angeles, CA 90001" +185800,Lightning Charging Cable,1,14.95,03/03/19 07:45,"644 Lake St, Los Angeles, CA 90001" +185801,Bose SoundSport Headphones,1,99.99,03/16/19 07:14,"989 14th St, Seattle, WA 98101" +185802,Wired Headphones,1,11.99,03/04/19 18:52,"166 11th St, San Francisco, CA 94016" +185803,20in Monitor,1,109.99,03/21/19 09:38,"987 Wilson St, Seattle, WA 98101" +185804,Lightning Charging Cable,1,14.95,03/05/19 11:11,"117 Madison St, Seattle, WA 98101" +185805,27in FHD Monitor,1,149.99,03/20/19 17:56,"248 West St, New York City, NY 10001" +185806,ThinkPad Laptop,1,999.99,03/21/19 19:45,"588 Center St, Seattle, WA 98101" +185807,AAA Batteries (4-pack),1,2.99,03/06/19 18:20,"721 West St, San Francisco, CA 94016" +185808,Apple Airpods Headphones,1,150,03/25/19 17:05,"510 Lakeview St, Dallas, TX 75001" +185809,27in FHD Monitor,1,149.99,03/02/19 15:31,"750 Cherry St, San Francisco, CA 94016" +185810,Bose SoundSport Headphones,1,99.99,03/18/19 13:43,"153 Walnut St, Dallas, TX 75001" +185811,AA Batteries (4-pack),2,3.84,03/06/19 11:53,"693 13th St, Boston, MA 02215" +185812,USB-C Charging Cable,1,11.95,03/14/19 11:54,"217 River St, Boston, MA 02215" +185813,20in Monitor,1,109.99,03/15/19 15:22,"296 Jackson St, San Francisco, CA 94016" +185814,Bose SoundSport Headphones,1,99.99,03/31/19 20:42,"878 Jackson St, Atlanta, GA 30301" +185815,Flatscreen TV,1,300,03/21/19 11:08,"475 Cedar St, San Francisco, CA 94016" +185816,USB-C Charging Cable,1,11.95,03/23/19 08:52,"249 9th St, Seattle, WA 98101" +185817,Wired Headphones,1,11.99,03/28/19 16:00,"581 Main St, Boston, MA 02215" +185818,AA Batteries (4-pack),1,3.84,03/23/19 19:13,"943 Hill St, New York City, NY 10001" +185819,27in FHD Monitor,1,149.99,03/27/19 21:36,"597 Elm St, Los Angeles, CA 90001" +185820,Bose SoundSport Headphones,1,99.99,03/09/19 11:20,"904 6th St, San Francisco, CA 94016" +185821,Macbook Pro Laptop,1,1700,03/19/19 00:41,"556 6th St, San Francisco, CA 94016" +185822,34in Ultrawide Monitor,1,379.99,03/25/19 22:18,"781 1st St, Austin, TX 73301" +185823,iPhone,1,700,03/13/19 12:16,"801 Cherry St, Dallas, TX 75001" +185823,Lightning Charging Cable,1,14.95,03/13/19 12:16,"801 Cherry St, Dallas, TX 75001" +185824,Lightning Charging Cable,1,14.95,03/27/19 13:07,"409 Hickory St, Los Angeles, CA 90001" +185825,AA Batteries (4-pack),2,3.84,03/22/19 06:04,"463 7th St, Boston, MA 02215" +185826,Lightning Charging Cable,1,14.95,03/24/19 22:00,"749 Church St, San Francisco, CA 94016" +185827,Apple Airpods Headphones,1,150,03/10/19 18:14,"249 7th St, San Francisco, CA 94016" +185828,27in FHD Monitor,1,149.99,03/10/19 13:48,"830 Lake St, Austin, TX 73301" +185829,Apple Airpods Headphones,1,150,03/09/19 14:16,"856 Pine St, Portland, ME 04101" +185830,USB-C Charging Cable,1,11.95,03/21/19 19:03,"413 8th St, Los Angeles, CA 90001" +185831,iPhone,1,700,03/14/19 10:03,"453 Madison St, Atlanta, GA 30301" +185832,Wired Headphones,1,11.99,03/16/19 12:55,"793 11th St, New York City, NY 10001" +185833,Lightning Charging Cable,1,14.95,03/03/19 09:16,"126 Meadow St, Atlanta, GA 30301" +185834,Apple Airpods Headphones,1,150,03/01/19 15:46,"248 Park St, Los Angeles, CA 90001" +185835,Bose SoundSport Headphones,1,99.99,03/02/19 08:26,"521 Elm St, New York City, NY 10001" +185836,Wired Headphones,2,11.99,03/13/19 10:31,"993 6th St, Boston, MA 02215" +185837,Apple Airpods Headphones,1,150,03/31/19 18:49,"236 13th St, San Francisco, CA 94016" +185838,Lightning Charging Cable,1,14.95,03/06/19 17:23,"971 Forest St, Seattle, WA 98101" +185839,AAA Batteries (4-pack),2,2.99,03/14/19 13:07,"439 Wilson St, San Francisco, CA 94016" +185840,Apple Airpods Headphones,1,150,03/05/19 20:46,"972 Jefferson St, Boston, MA 02215" +185841,AA Batteries (4-pack),2,3.84,03/14/19 00:40,"967 5th St, Atlanta, GA 30301" +185842,27in FHD Monitor,1,149.99,03/25/19 18:46,"364 5th St, San Francisco, CA 94016" +185843,Lightning Charging Cable,1,14.95,03/29/19 23:02,"582 9th St, San Francisco, CA 94016" +185844,Bose SoundSport Headphones,1,99.99,03/10/19 21:12,"754 13th St, Portland, ME 04101" +185845,AAA Batteries (4-pack),1,2.99,03/17/19 12:34,"487 Walnut St, New York City, NY 10001" +185846,Lightning Charging Cable,1,14.95,03/07/19 10:43,"694 Center St, Dallas, TX 75001" +185847,Wired Headphones,1,11.99,03/23/19 20:54,"182 13th St, Boston, MA 02215" +185848,USB-C Charging Cable,1,11.95,03/29/19 08:53,"159 13th St, New York City, NY 10001" +185849,AAA Batteries (4-pack),3,2.99,03/14/19 19:00,"230 Lincoln St, Austin, TX 73301" +185850,AAA Batteries (4-pack),1,2.99,03/15/19 21:22,"92 7th St, San Francisco, CA 94016" +185851,AA Batteries (4-pack),1,3.84,03/23/19 08:30,"503 6th St, Atlanta, GA 30301" +185852,Lightning Charging Cable,2,14.95,03/17/19 22:37,"529 9th St, Portland, OR 97035" +185853,34in Ultrawide Monitor,1,379.99,03/31/19 17:32,"973 Park St, Los Angeles, CA 90001" +185854,Lightning Charging Cable,1,14.95,03/13/19 16:59,"501 Willow St, San Francisco, CA 94016" +185855,27in FHD Monitor,1,149.99,03/12/19 18:16,"374 1st St, San Francisco, CA 94016" +185856,Lightning Charging Cable,1,14.95,03/12/19 21:15,"420 10th St, New York City, NY 10001" +185857,Wired Headphones,1,11.99,03/23/19 14:36,"301 2nd St, Boston, MA 02215" +185858,Bose SoundSport Headphones,1,99.99,03/09/19 20:17,"147 Wilson St, Boston, MA 02215" +185859,Google Phone,1,600,03/31/19 09:05,"849 Spruce St, Atlanta, GA 30301" +185859,Bose SoundSport Headphones,1,99.99,03/31/19 09:05,"849 Spruce St, Atlanta, GA 30301" +185860,iPhone,1,700,03/25/19 21:52,"130 8th St, San Francisco, CA 94016" +185861,27in FHD Monitor,1,149.99,03/06/19 14:27,"187 Hill St, Seattle, WA 98101" +185862,Bose SoundSport Headphones,1,99.99,03/21/19 16:12,"512 12th St, San Francisco, CA 94016" +185863,Lightning Charging Cable,1,14.95,03/16/19 13:45,"964 Church St, Dallas, TX 75001" +185864,Apple Airpods Headphones,1,150,03/05/19 21:40,"246 Lake St, Boston, MA 02215" +185865,AA Batteries (4-pack),1,3.84,03/30/19 14:09,"420 Maple St, Seattle, WA 98101" +185866,AA Batteries (4-pack),1,3.84,03/14/19 16:51,"835 Main St, Portland, OR 97035" +185867,Bose SoundSport Headphones,1,99.99,03/17/19 19:11,"495 Sunset St, San Francisco, CA 94016" +185868,ThinkPad Laptop,1,999.99,03/19/19 17:59,"777 Adams St, Austin, TX 73301" +185869,AAA Batteries (4-pack),1,2.99,03/20/19 09:15,"634 Elm St, Dallas, TX 75001" +185870,27in FHD Monitor,1,149.99,03/18/19 03:58,"258 Sunset St, Boston, MA 02215" +185871,USB-C Charging Cable,1,11.95,03/20/19 10:09,"571 Hill St, San Francisco, CA 94016" +185872,AA Batteries (4-pack),2,3.84,03/30/19 11:47,"345 Wilson St, Atlanta, GA 30301" +185873,Google Phone,1,600,03/14/19 09:01,"100 4th St, San Francisco, CA 94016" +185873,Bose SoundSport Headphones,1,99.99,03/14/19 09:01,"100 4th St, San Francisco, CA 94016" +185874,Wired Headphones,1,11.99,03/18/19 21:56,"735 14th St, Los Angeles, CA 90001" +185875,Bose SoundSport Headphones,1,99.99,03/11/19 12:24,"518 Meadow St, Atlanta, GA 30301" +185876,USB-C Charging Cable,1,11.95,03/16/19 22:04,"546 2nd St, Dallas, TX 75001" +185877,iPhone,1,700,03/24/19 20:46,"181 Hickory St, Portland, OR 97035" +185878,Google Phone,1,600,03/14/19 08:55,"771 Dogwood St, Los Angeles, CA 90001" +185879,AA Batteries (4-pack),1,3.84,03/06/19 18:41,"398 Hickory St, Austin, TX 73301" +185880,Flatscreen TV,1,300,03/13/19 05:45,"561 Park St, Boston, MA 02215" +185881,USB-C Charging Cable,1,11.95,03/31/19 08:02,"854 Willow St, Los Angeles, CA 90001" +185882,34in Ultrawide Monitor,1,379.99,03/07/19 14:50,"983 Madison St, Atlanta, GA 30301" +185883,Google Phone,1,600,03/26/19 09:17,"644 11th St, Portland, OR 97035" +185884,34in Ultrawide Monitor,1,379.99,03/05/19 11:37,"229 Highland St, Portland, ME 04101" +185885,Flatscreen TV,1,300,03/27/19 02:35,"575 Elm St, Portland, OR 97035" +185886,Bose SoundSport Headphones,1,99.99,03/23/19 15:01,"847 Church St, San Francisco, CA 94016" +185887,34in Ultrawide Monitor,2,379.99,03/04/19 14:09,"212 Willow St, Dallas, TX 75001" +185888,AA Batteries (4-pack),1,3.84,03/02/19 23:16,"943 Jefferson St, Los Angeles, CA 90001" +185889,AA Batteries (4-pack),1,3.84,03/30/19 19:19,"704 Willow St, Portland, OR 97035" +185890,USB-C Charging Cable,1,11.95,03/06/19 17:02,"226 Meadow St, Los Angeles, CA 90001" +185891,AAA Batteries (4-pack),1,2.99,03/20/19 23:41,"304 North St, San Francisco, CA 94016" +185892,Apple Airpods Headphones,1,150,03/28/19 17:56,"652 Pine St, New York City, NY 10001" +185893,27in FHD Monitor,1,149.99,03/30/19 11:35,"218 Center St, San Francisco, CA 94016" +185894,USB-C Charging Cable,1,11.95,03/31/19 12:54,"842 2nd St, Dallas, TX 75001" +185895,AA Batteries (4-pack),1,3.84,03/29/19 11:51,"83 14th St, Dallas, TX 75001" +185896,Wired Headphones,2,11.99,03/24/19 17:40,"533 Hill St, Los Angeles, CA 90001" +185897,Apple Airpods Headphones,1,150,03/24/19 09:56,"784 13th St, San Francisco, CA 94016" +185898,USB-C Charging Cable,1,11.95,03/25/19 19:03,"436 Willow St, Atlanta, GA 30301" +185899,AAA Batteries (4-pack),2,2.99,03/23/19 08:39,"205 Lakeview St, San Francisco, CA 94016" +185900,AA Batteries (4-pack),4,3.84,03/06/19 11:03,"60 Madison St, Seattle, WA 98101" +185901,Wired Headphones,1,11.99,03/08/19 11:04,"239 North St, Dallas, TX 75001" +185902,Wired Headphones,1,11.99,03/27/19 13:56,"215 11th St, Los Angeles, CA 90001" +185903,USB-C Charging Cable,1,11.95,03/13/19 07:49,"664 14th St, Seattle, WA 98101" +185904,27in 4K Gaming Monitor,1,389.99,03/23/19 17:53,"1 Forest St, San Francisco, CA 94016" +185905,34in Ultrawide Monitor,1,379.99,03/06/19 14:14,"739 Cedar St, San Francisco, CA 94016" +185906,USB-C Charging Cable,1,11.95,03/06/19 19:01,"240 River St, San Francisco, CA 94016" +185907,Lightning Charging Cable,1,14.95,03/21/19 06:41,"617 Sunset St, Los Angeles, CA 90001" +185908,iPhone,1,700,03/08/19 12:42,"75 Wilson St, Los Angeles, CA 90001" +185908,Lightning Charging Cable,1,14.95,03/08/19 12:42,"75 Wilson St, Los Angeles, CA 90001" +185909,ThinkPad Laptop,1,999.99,03/26/19 13:31,"956 Johnson St, Seattle, WA 98101" +185910,AA Batteries (4-pack),2,3.84,03/17/19 20:14,"936 4th St, New York City, NY 10001" +185911,USB-C Charging Cable,1,11.95,03/30/19 14:48,"279 Maple St, San Francisco, CA 94016" +185912,AAA Batteries (4-pack),2,2.99,03/28/19 20:52,"831 8th St, San Francisco, CA 94016" +185913,Lightning Charging Cable,1,14.95,03/07/19 23:37,"353 Church St, Dallas, TX 75001" +185913,AA Batteries (4-pack),1,3.84,03/07/19 23:37,"353 Church St, Dallas, TX 75001" +185914,27in FHD Monitor,1,149.99,03/30/19 09:42,"149 Madison St, Atlanta, GA 30301" +185915,34in Ultrawide Monitor,1,379.99,03/18/19 14:42,"705 Walnut St, New York City, NY 10001" +185916,ThinkPad Laptop,1,999.99,03/07/19 11:30,"604 5th St, Austin, TX 73301" +185916,Bose SoundSport Headphones,1,99.99,03/07/19 11:30,"604 5th St, Austin, TX 73301" +185917,Flatscreen TV,1,300,03/10/19 13:33,"106 Highland St, San Francisco, CA 94016" +185918,USB-C Charging Cable,1,11.95,03/06/19 18:34,"824 Cedar St, Los Angeles, CA 90001" +185919,27in FHD Monitor,1,149.99,03/21/19 15:18,"257 2nd St, Seattle, WA 98101" +185920,Wired Headphones,1,11.99,03/18/19 15:29,"2 Maple St, Portland, OR 97035" +185921,Bose SoundSport Headphones,1,99.99,03/25/19 19:01,"735 Adams St, San Francisco, CA 94016" +185922,Wired Headphones,1,11.99,03/07/19 19:08,"300 Willow St, Portland, OR 97035" +185923,USB-C Charging Cable,1,11.95,03/08/19 21:44,"542 Hill St, San Francisco, CA 94016" +185924,20in Monitor,1,109.99,03/24/19 18:39,"969 12th St, San Francisco, CA 94016" +185925,AAA Batteries (4-pack),2,2.99,03/03/19 15:48,"721 South St, Atlanta, GA 30301" +185926,Lightning Charging Cable,1,14.95,03/16/19 12:38,"777 Spruce St, San Francisco, CA 94016" +185927,Lightning Charging Cable,1,14.95,03/20/19 13:07,"318 Lakeview St, Boston, MA 02215" +185928,27in 4K Gaming Monitor,1,389.99,03/30/19 23:43,"708 Park St, Los Angeles, CA 90001" +185929,AAA Batteries (4-pack),2,2.99,03/03/19 02:41,"857 Highland St, Boston, MA 02215" +185930,AA Batteries (4-pack),1,3.84,03/23/19 17:07,"632 Lakeview St, Boston, MA 02215" +185931,AAA Batteries (4-pack),3,2.99,03/28/19 17:36,"186 Pine St, Boston, MA 02215" +185932,AA Batteries (4-pack),1,3.84,03/27/19 10:40,"936 4th St, Los Angeles, CA 90001" +185933,USB-C Charging Cable,1,11.95,03/16/19 15:05,"829 Ridge St, Seattle, WA 98101" +185934,LG Washing Machine,1,600.0,03/31/19 12:09,"11 1st St, Los Angeles, CA 90001" +185935,27in FHD Monitor,1,149.99,03/07/19 09:10,"110 Walnut St, Seattle, WA 98101" +185936,AAA Batteries (4-pack),2,2.99,03/26/19 04:55,"848 Elm St, Portland, OR 97035" +185937,Google Phone,1,600,03/16/19 15:53,"855 Sunset St, Portland, OR 97035" +185938,AAA Batteries (4-pack),3,2.99,03/20/19 06:53,"149 7th St, Seattle, WA 98101" +185939,Macbook Pro Laptop,1,1700,03/28/19 17:59,"382 North St, Portland, OR 97035" +185940,Flatscreen TV,1,300,03/18/19 15:06,"890 1st St, Boston, MA 02215" +185941,Bose SoundSport Headphones,1,99.99,03/17/19 09:19,"862 9th St, Los Angeles, CA 90001" +185942,Lightning Charging Cable,1,14.95,03/27/19 09:42,"307 Maple St, New York City, NY 10001" +185943,Google Phone,1,600,03/06/19 18:15,"634 Church St, Los Angeles, CA 90001" +185944,Flatscreen TV,1,300,03/22/19 16:19,"783 7th St, San Francisco, CA 94016" +185945,Lightning Charging Cable,1,14.95,03/14/19 07:22,"542 4th St, New York City, NY 10001" +185946,USB-C Charging Cable,1,11.95,03/24/19 22:23,"667 Jefferson St, Atlanta, GA 30301" +185947,USB-C Charging Cable,2,11.95,03/23/19 07:31,"730 Lakeview St, Dallas, TX 75001" +185948,Apple Airpods Headphones,1,150,03/22/19 00:34,"191 Jefferson St, Los Angeles, CA 90001" +185949,34in Ultrawide Monitor,1,379.99,03/17/19 15:42,"952 Park St, Portland, ME 04101" +185950,Lightning Charging Cable,1,14.95,03/15/19 10:54,"999 Spruce St, Portland, ME 04101" +185951,AA Batteries (4-pack),2,3.84,03/26/19 14:59,"849 Chestnut St, San Francisco, CA 94016" +185952,AAA Batteries (4-pack),1,2.99,03/14/19 21:18,"907 Cedar St, Portland, OR 97035" +185953,27in FHD Monitor,1,149.99,03/27/19 10:00,"234 North St, San Francisco, CA 94016" +185954,Lightning Charging Cable,1,14.95,03/19/19 22:39,"418 10th St, Los Angeles, CA 90001" +185955,Lightning Charging Cable,1,14.95,03/05/19 13:50,"156 Adams St, New York City, NY 10001" +185956,AA Batteries (4-pack),1,3.84,03/03/19 17:23,"846 Church St, Los Angeles, CA 90001" +185957,Google Phone,1,600,03/08/19 13:44,"40 Adams St, Atlanta, GA 30301" +185958,34in Ultrawide Monitor,1,379.99,03/05/19 19:01,"49 Johnson St, Portland, OR 97035" +185959,Lightning Charging Cable,1,14.95,03/24/19 22:39,"728 Spruce St, San Francisco, CA 94016" +185960,USB-C Charging Cable,1,11.95,03/08/19 23:56,"677 South St, Los Angeles, CA 90001" +185961,AAA Batteries (4-pack),1,2.99,03/30/19 20:52,"661 Center St, Dallas, TX 75001" +185962,ThinkPad Laptop,1,999.99,03/29/19 15:52,"636 6th St, Atlanta, GA 30301" +185963,iPhone,1,700,03/27/19 18:59,"724 Adams St, New York City, NY 10001" +185964,Lightning Charging Cable,1,14.95,03/12/19 07:59,"138 Forest St, San Francisco, CA 94016" +185965,AAA Batteries (4-pack),1,2.99,03/13/19 11:36,"4 6th St, San Francisco, CA 94016" +185966,Apple Airpods Headphones,1,150,03/10/19 17:56,"576 Spruce St, New York City, NY 10001" +185967,Macbook Pro Laptop,1,1700,03/10/19 15:13,"14 Church St, New York City, NY 10001" +185968,USB-C Charging Cable,1,11.95,03/13/19 19:06,"849 Hill St, Los Angeles, CA 90001" +185969,Google Phone,1,600,03/01/19 16:28,"570 Park St, Seattle, WA 98101" +185970,Bose SoundSport Headphones,1,99.99,03/08/19 21:00,"160 Wilson St, San Francisco, CA 94016" +185971,Apple Airpods Headphones,1,150,03/13/19 12:14,"842 1st St, Los Angeles, CA 90001" +185972,Apple Airpods Headphones,1,150,03/25/19 20:19,"176 Sunset St, New York City, NY 10001" +185973,USB-C Charging Cable,1,11.95,03/22/19 17:56,"632 Jackson St, Boston, MA 02215" +185974,20in Monitor,1,109.99,03/23/19 20:24,"248 River St, San Francisco, CA 94016" +185975,Wired Headphones,1,11.99,03/31/19 18:40,"419 Lake St, San Francisco, CA 94016" +185976,34in Ultrawide Monitor,1,379.99,03/05/19 10:14,"986 Church St, San Francisco, CA 94016" +185977,27in FHD Monitor,1,149.99,03/28/19 14:18,"576 Church St, Los Angeles, CA 90001" +185978,AAA Batteries (4-pack),2,2.99,03/23/19 21:58,"761 Lakeview St, San Francisco, CA 94016" +185979,iPhone,1,700,03/25/19 15:42,"369 Main St, New York City, NY 10001" +185980,Wired Headphones,1,11.99,03/12/19 10:40,"259 North St, Austin, TX 73301" +185981,iPhone,1,700,03/21/19 22:07,"504 10th St, Boston, MA 02215" +185981,Lightning Charging Cable,1,14.95,03/21/19 22:07,"504 10th St, Boston, MA 02215" +185982,USB-C Charging Cable,1,11.95,03/22/19 20:04,"519 West St, Los Angeles, CA 90001" +185983,Lightning Charging Cable,1,14.95,03/05/19 18:44,"141 Jackson St, New York City, NY 10001" +185984,Apple Airpods Headphones,1,150,03/16/19 18:54,"496 5th St, Boston, MA 02215" +185985,27in 4K Gaming Monitor,1,389.99,03/04/19 08:35,"727 Maple St, Seattle, WA 98101" +185986,27in 4K Gaming Monitor,1,389.99,03/22/19 14:53,"85 10th St, Los Angeles, CA 90001" +185987,AAA Batteries (4-pack),1,2.99,03/09/19 08:29,"827 Cherry St, Atlanta, GA 30301" +185988,USB-C Charging Cable,1,11.95,03/16/19 18:07,"181 8th St, San Francisco, CA 94016" +185989,AAA Batteries (4-pack),1,2.99,03/27/19 14:07,"802 Main St, Austin, TX 73301" +185990,Wired Headphones,1,11.99,03/13/19 17:03,"228 Lakeview St, Los Angeles, CA 90001" +185991,AAA Batteries (4-pack),1,2.99,03/03/19 14:39,"874 Chestnut St, New York City, NY 10001" +185992,Google Phone,1,600,03/13/19 21:35,"97 Maple St, San Francisco, CA 94016" +185993,USB-C Charging Cable,1,11.95,03/01/19 14:49,"930 Jefferson St, San Francisco, CA 94016" +185994,AAA Batteries (4-pack),1,2.99,03/13/19 04:21,"635 Willow St, New York City, NY 10001" +185995,Bose SoundSport Headphones,1,99.99,03/15/19 09:51,"254 Elm St, Atlanta, GA 30301" +185996,34in Ultrawide Monitor,1,379.99,03/19/19 00:40,"27 Church St, Dallas, TX 75001" +185997,Google Phone,1,600,03/24/19 09:16,"502 12th St, Portland, OR 97035" +185998,Bose SoundSport Headphones,1,99.99,03/06/19 14:43,"829 9th St, Seattle, WA 98101" +185999,AAA Batteries (4-pack),3,2.99,03/21/19 12:20,"58 13th St, New York City, NY 10001" +186000,Apple Airpods Headphones,1,150,03/18/19 11:39,"293 Wilson St, San Francisco, CA 94016" +186001,Bose SoundSport Headphones,1,99.99,03/02/19 09:48,"862 Lakeview St, Los Angeles, CA 90001" +186002,AA Batteries (4-pack),2,3.84,03/23/19 13:51,"732 5th St, San Francisco, CA 94016" +186003,34in Ultrawide Monitor,1,379.99,03/06/19 06:13,"970 Lakeview St, New York City, NY 10001" +186004,Lightning Charging Cable,1,14.95,03/09/19 22:07,"599 Lake St, Austin, TX 73301" +186005,Wired Headphones,1,11.99,03/08/19 20:04,"10 Meadow St, Portland, OR 97035" +186006,AA Batteries (4-pack),1,3.84,03/17/19 12:37,"207 North St, Boston, MA 02215" +186007,AA Batteries (4-pack),1,3.84,03/11/19 19:05,"477 River St, Dallas, TX 75001" +186008,USB-C Charging Cable,1,11.95,03/12/19 17:00,"670 Willow St, Portland, OR 97035" +186009,USB-C Charging Cable,1,11.95,03/19/19 07:12,"548 Hill St, Austin, TX 73301" +186010,USB-C Charging Cable,1,11.95,03/21/19 20:33,"929 13th St, New York City, NY 10001" +186011,Apple Airpods Headphones,1,150,03/25/19 18:40,"325 1st St, Seattle, WA 98101" +186012,USB-C Charging Cable,1,11.95,03/24/19 07:56,"124 Chestnut St, Dallas, TX 75001" +186013,Google Phone,1,600,03/30/19 12:14,"546 8th St, New York City, NY 10001" +186014,Macbook Pro Laptop,1,1700,03/29/19 20:19,"365 Meadow St, Dallas, TX 75001" +186015,AAA Batteries (4-pack),2,2.99,03/11/19 20:14,"156 Meadow St, Portland, OR 97035" +186015,Apple Airpods Headphones,1,150,03/11/19 20:14,"156 Meadow St, Portland, OR 97035" +186016,Wired Headphones,1,11.99,03/08/19 10:36,"997 Maple St, San Francisco, CA 94016" +186017,AA Batteries (4-pack),2,3.84,03/26/19 17:23,"303 Sunset St, Boston, MA 02215" +186018,AA Batteries (4-pack),1,3.84,03/02/19 19:43,"403 Walnut St, San Francisco, CA 94016" +186019,AAA Batteries (4-pack),1,2.99,03/06/19 23:19,"166 South St, Atlanta, GA 30301" +186020,Wired Headphones,1,11.99,03/16/19 12:55,"746 11th St, Portland, OR 97035" +186020,iPhone,1,700,03/16/19 12:55,"746 11th St, Portland, OR 97035" +186021,Wired Headphones,1,11.99,03/24/19 22:33,"304 14th St, Portland, OR 97035" +186022,34in Ultrawide Monitor,1,379.99,03/10/19 10:24,"867 8th St, New York City, NY 10001" +186023,Flatscreen TV,1,300,03/25/19 15:52,"730 Cherry St, Seattle, WA 98101" +186024,Flatscreen TV,1,300,03/15/19 15:32,"128 Center St, Portland, OR 97035" +186025,Lightning Charging Cable,1,14.95,03/06/19 22:41,"296 Walnut St, San Francisco, CA 94016" +186026,Bose SoundSport Headphones,1,99.99,03/06/19 10:43,"502 Jackson St, Dallas, TX 75001" +186027,AA Batteries (4-pack),1,3.84,03/04/19 10:03,"572 Highland St, Atlanta, GA 30301" +186028,Apple Airpods Headphones,1,150,03/21/19 11:34,"248 Spruce St, Los Angeles, CA 90001" +186029,Google Phone,1,600,03/01/19 14:48,"829 14th St, Austin, TX 73301" +186030,34in Ultrawide Monitor,1,379.99,03/11/19 15:52,"145 Cherry St, Seattle, WA 98101" +186031,AA Batteries (4-pack),1,3.84,03/23/19 11:30,"863 Lincoln St, Seattle, WA 98101" +186032,USB-C Charging Cable,1,11.95,03/18/19 22:46,"105 South St, Portland, OR 97035" +186033,AA Batteries (4-pack),1,3.84,03/17/19 16:07,"585 Sunset St, San Francisco, CA 94016" +186034,Lightning Charging Cable,1,14.95,03/27/19 14:47,"30 Wilson St, Atlanta, GA 30301" +186035,iPhone,1,700,03/02/19 12:16,"706 Park St, Boston, MA 02215" +186035,USB-C Charging Cable,1,11.95,03/02/19 12:16,"706 Park St, Boston, MA 02215" +186036,Wired Headphones,1,11.99,03/07/19 12:05,"380 Center St, San Francisco, CA 94016" +186037,AA Batteries (4-pack),1,3.84,03/07/19 21:08,"762 10th St, Boston, MA 02215" +186038,20in Monitor,1,109.99,03/29/19 17:28,"575 2nd St, Boston, MA 02215" +186039,Apple Airpods Headphones,1,150,03/09/19 10:15,"157 7th St, San Francisco, CA 94016" +186040,AA Batteries (4-pack),1,3.84,03/14/19 11:33,"3 Adams St, New York City, NY 10001" +186041,Lightning Charging Cable,1,14.95,03/25/19 15:48,"286 Forest St, New York City, NY 10001" +186042,AA Batteries (4-pack),1,3.84,03/12/19 21:12,"602 Meadow St, San Francisco, CA 94016" +186043,Macbook Pro Laptop,1,1700,03/27/19 21:12,"705 Ridge St, Portland, OR 97035" +186043,Apple Airpods Headphones,1,150,03/27/19 21:12,"705 Ridge St, Portland, OR 97035" +186044,20in Monitor,1,109.99,03/09/19 13:33,"602 Lake St, New York City, NY 10001" +186045,Flatscreen TV,1,300,03/07/19 23:35,"779 Church St, Los Angeles, CA 90001" +186046,27in 4K Gaming Monitor,1,389.99,03/21/19 17:09,"800 River St, San Francisco, CA 94016" +186046,27in 4K Gaming Monitor,1,389.99,03/21/19 17:09,"800 River St, San Francisco, CA 94016" +186047,Bose SoundSport Headphones,1,99.99,03/13/19 19:39,"961 Dogwood St, San Francisco, CA 94016" +186048,Flatscreen TV,1,300,03/13/19 13:32,"446 Cedar St, Austin, TX 73301" +186049,20in Monitor,1,109.99,03/01/19 12:20,"84 12th St, Los Angeles, CA 90001" +186050,Wired Headphones,1,11.99,03/16/19 20:18,"624 11th St, Atlanta, GA 30301" +186051,Bose SoundSport Headphones,1,99.99,03/15/19 10:18,"347 Meadow St, San Francisco, CA 94016" +186052,34in Ultrawide Monitor,1,379.99,03/04/19 09:46,"328 Johnson St, Seattle, WA 98101" +186053,AAA Batteries (4-pack),2,2.99,03/04/19 15:59,"723 10th St, New York City, NY 10001" +186054,Lightning Charging Cable,1,14.95,03/29/19 09:50,"957 Spruce St, Dallas, TX 75001" +186055,AA Batteries (4-pack),1,3.84,03/07/19 14:49,"254 9th St, Dallas, TX 75001" +186056,Apple Airpods Headphones,1,150,03/08/19 17:08,"943 Cherry St, Los Angeles, CA 90001" +186057,27in 4K Gaming Monitor,1,389.99,03/09/19 14:53,"487 Madison St, Atlanta, GA 30301" +186058,27in FHD Monitor,1,149.99,03/05/19 14:40,"718 4th St, San Francisco, CA 94016" +186059,27in 4K Gaming Monitor,1,389.99,03/17/19 19:31,"915 Hill St, Los Angeles, CA 90001" +186060,Macbook Pro Laptop,1,1700,03/25/19 12:14,"862 West St, New York City, NY 10001" +186061,AA Batteries (4-pack),1,3.84,03/07/19 08:02,"880 13th St, Boston, MA 02215" +186062,AAA Batteries (4-pack),1,2.99,03/07/19 22:47,"150 Pine St, San Francisco, CA 94016" +186063,Lightning Charging Cable,1,14.95,03/10/19 11:07,"689 Jackson St, Los Angeles, CA 90001" +186064,iPhone,1,700,03/20/19 23:34,"748 Wilson St, San Francisco, CA 94016" +186065,AA Batteries (4-pack),1,3.84,03/11/19 11:11,"74 Elm St, San Francisco, CA 94016" +186066,Apple Airpods Headphones,1,150,03/13/19 19:17,"941 Chestnut St, Dallas, TX 75001" +186067,USB-C Charging Cable,1,11.95,03/08/19 16:21,"657 14th St, Dallas, TX 75001" +186068,Google Phone,1,600,03/24/19 18:28,"650 Dogwood St, San Francisco, CA 94016" +186069,Apple Airpods Headphones,1,150,03/16/19 11:55,"135 Church St, Dallas, TX 75001" +186070,USB-C Charging Cable,1,11.95,03/19/19 21:51,"691 8th St, San Francisco, CA 94016" +186071,Lightning Charging Cable,1,14.95,03/15/19 13:15,"37 Lakeview St, Atlanta, GA 30301" +186072,Wired Headphones,1,11.99,03/08/19 18:24,"760 Maple St, Boston, MA 02215" +186073,USB-C Charging Cable,1,11.95,03/02/19 20:54,"676 Wilson St, San Francisco, CA 94016" +186074,Flatscreen TV,1,300,03/28/19 19:37,"306 West St, Dallas, TX 75001" +186075,AA Batteries (4-pack),2,3.84,03/18/19 06:10,"257 Chestnut St, New York City, NY 10001" +186076,iPhone,1,700,03/31/19 22:35,"678 Madison St, Dallas, TX 75001" +186077,Lightning Charging Cable,1,14.95,03/20/19 18:03,"182 Jefferson St, New York City, NY 10001" +186078,Wired Headphones,1,11.99,03/23/19 12:30,"368 12th St, Los Angeles, CA 90001" +186079,Apple Airpods Headphones,1,150,03/15/19 15:26,"544 Hill St, Boston, MA 02215" +186080,Google Phone,1,600,03/15/19 09:02,"388 1st St, Los Angeles, CA 90001" +186080,USB-C Charging Cable,1,11.95,03/15/19 09:02,"388 1st St, Los Angeles, CA 90001" +186081,AA Batteries (4-pack),1,3.84,03/28/19 13:31,"60 Pine St, Los Angeles, CA 90001" +186082,AAA Batteries (4-pack),1,2.99,03/09/19 00:52,"627 4th St, Boston, MA 02215" +186083,USB-C Charging Cable,1,11.95,03/13/19 14:42,"877 Wilson St, San Francisco, CA 94016" +186084,USB-C Charging Cable,1,11.95,03/16/19 21:19,"428 Washington St, Dallas, TX 75001" +186085,Lightning Charging Cable,1,14.95,03/16/19 17:26,"671 11th St, San Francisco, CA 94016" +186086,AAA Batteries (4-pack),1,2.99,03/27/19 22:19,"936 Wilson St, Boston, MA 02215" +186087,AAA Batteries (4-pack),1,2.99,03/31/19 11:53,"418 Hill St, San Francisco, CA 94016" +186088,Flatscreen TV,1,300,04/01/19 00:17,"769 Highland St, New York City, NY 10001" +186089,Lightning Charging Cable,1,14.95,03/16/19 19:41,"250 Highland St, Seattle, WA 98101" +186090,AAA Batteries (4-pack),1,2.99,03/13/19 12:13,"702 Forest St, Portland, OR 97035" +186091,Apple Airpods Headphones,1,150,03/25/19 13:43,"438 Walnut St, San Francisco, CA 94016" +186092,27in FHD Monitor,1,149.99,03/11/19 16:07,"145 Adams St, Seattle, WA 98101" +186093,AAA Batteries (4-pack),1,2.99,03/13/19 17:38,"272 5th St, Dallas, TX 75001" +186094,AAA Batteries (4-pack),1,2.99,03/18/19 11:13,"683 Maple St, Atlanta, GA 30301" +186095,Lightning Charging Cable,1,14.95,03/07/19 17:45,"525 Cherry St, Portland, OR 97035" +186096,AAA Batteries (4-pack),1,2.99,03/27/19 21:51,"4 North St, Seattle, WA 98101" +186097,USB-C Charging Cable,1,11.95,03/25/19 06:12,"242 Dogwood St, Seattle, WA 98101" +186098,USB-C Charging Cable,1,11.95,03/03/19 20:10,"691 10th St, Austin, TX 73301" +186099,Apple Airpods Headphones,1,150,03/16/19 17:17,"961 Lakeview St, Atlanta, GA 30301" +186100,Lightning Charging Cable,1,14.95,03/25/19 16:34,"657 Church St, San Francisco, CA 94016" +186101,Bose SoundSport Headphones,1,99.99,03/24/19 13:13,"458 Park St, Atlanta, GA 30301" +186102,Wired Headphones,1,11.99,03/07/19 22:13,"325 Johnson St, San Francisco, CA 94016" +186103,Lightning Charging Cable,1,14.95,03/22/19 11:05,"636 Walnut St, Los Angeles, CA 90001" +186104,USB-C Charging Cable,1,11.95,03/21/19 23:10,"311 North St, Atlanta, GA 30301" +186105,27in FHD Monitor,1,149.99,03/31/19 21:53,"787 Hickory St, Los Angeles, CA 90001" +186106,27in 4K Gaming Monitor,1,389.99,03/19/19 16:35,"133 Washington St, Los Angeles, CA 90001" +186107,Apple Airpods Headphones,1,150,03/02/19 12:27,"953 12th St, Austin, TX 73301" +186108,USB-C Charging Cable,1,11.95,03/12/19 20:31,"943 Hickory St, Los Angeles, CA 90001" +186109,AA Batteries (4-pack),1,3.84,03/25/19 20:49,"293 12th St, New York City, NY 10001" +186110,Vareebadd Phone,1,400,03/04/19 19:33,"286 6th St, San Francisco, CA 94016" +186111,Lightning Charging Cable,1,14.95,03/20/19 17:53,"988 Jefferson St, San Francisco, CA 94016" +186112,Apple Airpods Headphones,1,150,03/22/19 09:17,"64 Jackson St, Seattle, WA 98101" +186113,Wired Headphones,1,11.99,03/07/19 15:29,"667 Maple St, New York City, NY 10001" +186114,AAA Batteries (4-pack),1,2.99,03/29/19 10:26,"849 Cherry St, New York City, NY 10001" +186115,iPhone,1,700,03/26/19 13:47,"118 Chestnut St, Los Angeles, CA 90001" +186115,Lightning Charging Cable,1,14.95,03/26/19 13:47,"118 Chestnut St, Los Angeles, CA 90001" +186116,iPhone,1,700,03/26/19 20:06,"720 Highland St, Boston, MA 02215" +186117,USB-C Charging Cable,1,11.95,03/25/19 22:22,"865 Maple St, New York City, NY 10001" +186118,Google Phone,1,600,03/31/19 00:34,"121 Main St, Atlanta, GA 30301" +186118,Macbook Pro Laptop,1,1700,03/31/19 00:34,"121 Main St, Atlanta, GA 30301" +186119,Wired Headphones,1,11.99,03/02/19 15:22,"690 Church St, San Francisco, CA 94016" +186120,Google Phone,1,600,03/05/19 18:59,"614 Elm St, Atlanta, GA 30301" +186121,USB-C Charging Cable,1,11.95,03/24/19 14:14,"803 Cedar St, San Francisco, CA 94016" +186122,USB-C Charging Cable,1,11.95,03/05/19 20:11,"754 Highland St, Los Angeles, CA 90001" +186123,Wired Headphones,1,11.99,03/14/19 12:21,"279 Hickory St, Portland, ME 04101" +186124,AA Batteries (4-pack),1,3.84,03/12/19 16:46,"343 Lincoln St, Portland, OR 97035" +186125,AAA Batteries (4-pack),1,2.99,03/14/19 07:58,"251 South St, Los Angeles, CA 90001" +186126,27in FHD Monitor,1,149.99,03/26/19 12:00,"584 Hickory St, San Francisco, CA 94016" +186127,Flatscreen TV,1,300,03/04/19 09:45,"14 9th St, San Francisco, CA 94016" +186128,27in 4K Gaming Monitor,1,389.99,03/03/19 12:05,"38 Forest St, San Francisco, CA 94016" +186129,20in Monitor,1,109.99,03/29/19 08:27,"973 14th St, New York City, NY 10001" +186130,Lightning Charging Cable,1,14.95,03/16/19 07:39,"65 Dogwood St, Seattle, WA 98101" +186131,ThinkPad Laptop,1,999.99,03/28/19 13:45,"171 Lincoln St, Boston, MA 02215" +186132,USB-C Charging Cable,1,11.95,03/30/19 13:42,"495 Spruce St, Boston, MA 02215" +186133,Wired Headphones,1,11.99,03/31/19 15:10,"650 Chestnut St, San Francisco, CA 94016" +186133,AA Batteries (4-pack),1,3.84,03/31/19 15:10,"650 Chestnut St, San Francisco, CA 94016" +186134,Lightning Charging Cable,1,14.95,03/17/19 18:53,"486 Walnut St, Los Angeles, CA 90001" +186135,USB-C Charging Cable,1,11.95,03/16/19 09:09,"179 13th St, Dallas, TX 75001" +186136,Wired Headphones,1,11.99,03/15/19 02:01,"340 Jackson St, San Francisco, CA 94016" +186137,AA Batteries (4-pack),1,3.84,03/22/19 21:08,"28 Walnut St, Dallas, TX 75001" +186138,Lightning Charging Cable,1,14.95,03/15/19 08:25,"964 South St, Dallas, TX 75001" +186139,AA Batteries (4-pack),1,3.84,03/23/19 23:13,"873 Ridge St, New York City, NY 10001" +186140,ThinkPad Laptop,1,999.99,03/20/19 22:12,"127 Center St, Boston, MA 02215" +186141,AAA Batteries (4-pack),2,2.99,03/21/19 23:51,"585 Park St, Atlanta, GA 30301" +186142,USB-C Charging Cable,1,11.95,03/10/19 00:28,"470 Park St, Atlanta, GA 30301" +186143,AAA Batteries (4-pack),1,2.99,03/02/19 21:37,"585 Lincoln St, Portland, OR 97035" +186144,USB-C Charging Cable,1,11.95,03/13/19 12:05,"276 11th St, New York City, NY 10001" +186145,Vareebadd Phone,1,400,03/09/19 22:26,"269 Jefferson St, Austin, TX 73301" +186146,34in Ultrawide Monitor,1,379.99,03/14/19 18:17,"279 4th St, Boston, MA 02215" +186147,Lightning Charging Cable,1,14.95,03/22/19 21:28,"536 North St, Boston, MA 02215" +186148,USB-C Charging Cable,2,11.95,03/18/19 23:36,"743 Spruce St, Seattle, WA 98101" +186149,Lightning Charging Cable,1,14.95,03/15/19 21:50,"62 Spruce St, San Francisco, CA 94016" +186150,Lightning Charging Cable,1,14.95,03/30/19 06:32,"154 Highland St, Los Angeles, CA 90001" +186151,Flatscreen TV,1,300,03/23/19 20:17,"948 Spruce St, Seattle, WA 98101" +186152,Lightning Charging Cable,1,14.95,03/17/19 13:05,"114 11th St, San Francisco, CA 94016" +186153,Lightning Charging Cable,2,14.95,03/02/19 16:12,"434 Park St, Seattle, WA 98101" +186154,AA Batteries (4-pack),1,3.84,03/11/19 12:55,"455 13th St, Seattle, WA 98101" +186155,AAA Batteries (4-pack),1,2.99,03/14/19 05:06,"75 Pine St, Boston, MA 02215" +186156,Vareebadd Phone,1,400,03/11/19 20:14,"994 7th St, Dallas, TX 75001" +186157,Bose SoundSport Headphones,1,99.99,03/03/19 14:21,"218 Maple St, Dallas, TX 75001" +186158,USB-C Charging Cable,2,11.95,03/08/19 13:40,"663 9th St, Los Angeles, CA 90001" +186159,AAA Batteries (4-pack),1,2.99,03/27/19 17:27,"57 4th St, San Francisco, CA 94016" +186160,Flatscreen TV,1,300,03/25/19 13:06,"328 River St, Atlanta, GA 30301" +186161,AA Batteries (4-pack),1,3.84,03/15/19 20:03,"761 13th St, New York City, NY 10001" +186162,USB-C Charging Cable,1,11.95,03/20/19 17:59,"98 Meadow St, Los Angeles, CA 90001" +186163,Bose SoundSport Headphones,1,99.99,03/28/19 13:31,"563 Madison St, Boston, MA 02215" +186164,27in 4K Gaming Monitor,1,389.99,03/12/19 08:59,"80 Dogwood St, Los Angeles, CA 90001" +186165,LG Washing Machine,1,600.0,03/10/19 14:16,"422 Church St, Seattle, WA 98101" +186166,Lightning Charging Cable,1,14.95,03/20/19 22:19,"105 14th St, San Francisco, CA 94016" +186167,Apple Airpods Headphones,1,150,03/23/19 19:09,"214 9th St, Austin, TX 73301" +186168,USB-C Charging Cable,1,11.95,03/23/19 13:30,"972 North St, Dallas, TX 75001" +186169,AAA Batteries (4-pack),4,2.99,03/09/19 15:29,"65 Dogwood St, Los Angeles, CA 90001" +186170,Google Phone,1,600,03/03/19 11:34,"459 2nd St, Boston, MA 02215" +186170,Wired Headphones,2,11.99,03/03/19 11:34,"459 2nd St, Boston, MA 02215" +186171,AA Batteries (4-pack),1,3.84,03/16/19 23:06,"606 Sunset St, San Francisco, CA 94016" +186172,USB-C Charging Cable,2,11.95,03/20/19 13:29,"599 Elm St, Atlanta, GA 30301" +186173,Vareebadd Phone,1,400,03/21/19 07:56,"581 Pine St, San Francisco, CA 94016" +186174,Wired Headphones,1,11.99,03/23/19 17:06,"323 Lakeview St, Los Angeles, CA 90001" +186175,Bose SoundSport Headphones,1,99.99,03/05/19 12:59,"944 10th St, Dallas, TX 75001" +186176,Apple Airpods Headphones,1,150,03/19/19 08:17,"19 Jefferson St, San Francisco, CA 94016" +186177,AA Batteries (4-pack),1,3.84,03/30/19 18:34,"763 Hill St, Boston, MA 02215" +186178,Apple Airpods Headphones,1,150,03/28/19 07:06,"879 Maple St, Los Angeles, CA 90001" +186179,Flatscreen TV,1,300,03/06/19 18:55,"891 7th St, Boston, MA 02215" +186180,Bose SoundSport Headphones,1,99.99,03/22/19 23:26,"930 1st St, San Francisco, CA 94016" +186181,Lightning Charging Cable,2,14.95,03/25/19 18:43,"141 Wilson St, Los Angeles, CA 90001" +186182,Wired Headphones,1,11.99,03/06/19 14:08,"255 12th St, Los Angeles, CA 90001" +186183,Apple Airpods Headphones,1,150,03/21/19 13:11,"886 Adams St, Portland, OR 97035" +186184,AA Batteries (4-pack),1,3.84,03/11/19 08:53,"208 Hickory St, Boston, MA 02215" +186185,27in 4K Gaming Monitor,1,389.99,03/10/19 17:42,"584 2nd St, Seattle, WA 98101" +186186,Lightning Charging Cable,1,14.95,03/11/19 22:59,"371 Hickory St, Los Angeles, CA 90001" +186187,27in 4K Gaming Monitor,1,389.99,03/08/19 08:22,"124 North St, San Francisco, CA 94016" +186188,Apple Airpods Headphones,1,150,03/16/19 12:37,"514 5th St, San Francisco, CA 94016" +186189,27in 4K Gaming Monitor,1,389.99,03/20/19 17:45,"892 9th St, New York City, NY 10001" +186190,27in FHD Monitor,1,149.99,03/06/19 14:22,"697 Elm St, San Francisco, CA 94016" +186191,USB-C Charging Cable,1,11.95,03/03/19 20:23,"30 6th St, Los Angeles, CA 90001" +186192,LG Washing Machine,1,600.0,03/15/19 10:18,"467 Sunset St, San Francisco, CA 94016" +186193,Apple Airpods Headphones,1,150,03/18/19 14:34,"672 Elm St, Dallas, TX 75001" +186194,Apple Airpods Headphones,1,150,03/10/19 11:49,"566 South St, San Francisco, CA 94016" +186195,USB-C Charging Cable,1,11.95,03/04/19 15:25,"611 7th St, San Francisco, CA 94016" +186196,Vareebadd Phone,1,400,03/26/19 16:35,"762 North St, Atlanta, GA 30301" +186196,Bose SoundSport Headphones,1,99.99,03/26/19 16:35,"762 North St, Atlanta, GA 30301" +186197,20in Monitor,1,109.99,03/27/19 21:00,"375 Ridge St, New York City, NY 10001" +186198,Macbook Pro Laptop,1,1700,03/08/19 09:07,"643 Cedar St, Atlanta, GA 30301" +186199,Wired Headphones,1,11.99,03/10/19 13:13,"758 Lakeview St, Atlanta, GA 30301" +186200,Lightning Charging Cable,1,14.95,03/09/19 12:39,"977 Center St, San Francisco, CA 94016" +186201,Lightning Charging Cable,1,14.95,03/20/19 22:45,"212 11th St, Austin, TX 73301" +186202,AA Batteries (4-pack),2,3.84,03/09/19 18:11,"979 Elm St, Los Angeles, CA 90001" +186203,Bose SoundSport Headphones,1,99.99,03/15/19 17:52,"999 9th St, Los Angeles, CA 90001" +186204,AAA Batteries (4-pack),3,2.99,03/18/19 22:51,"521 13th St, San Francisco, CA 94016" +186205,Apple Airpods Headphones,1,150,03/23/19 18:08,"172 Main St, Boston, MA 02215" +186206,Wired Headphones,1,11.99,03/29/19 13:02,"834 Church St, Portland, OR 97035" +186207,Bose SoundSport Headphones,1,99.99,03/24/19 12:00,"415 Maple St, Dallas, TX 75001" +186208,AA Batteries (4-pack),1,3.84,03/28/19 11:02,"945 13th St, New York City, NY 10001" +186209,Bose SoundSport Headphones,1,99.99,03/25/19 11:40,"333 Pine St, San Francisco, CA 94016" +186210,Vareebadd Phone,1,400,03/02/19 10:23,"558 12th St, Seattle, WA 98101" +186211,Apple Airpods Headphones,1,150,03/28/19 18:01,"365 Forest St, Austin, TX 73301" +186212,AAA Batteries (4-pack),2,2.99,03/11/19 02:42,"674 4th St, Seattle, WA 98101" +186213,USB-C Charging Cable,1,11.95,03/18/19 11:13,"588 Sunset St, Boston, MA 02215" +186214,Apple Airpods Headphones,1,150,03/10/19 10:27,"704 Spruce St, Dallas, TX 75001" +186215,Wired Headphones,1,11.99,03/31/19 06:11,"749 River St, New York City, NY 10001" +186216,USB-C Charging Cable,1,11.95,03/26/19 21:04,"539 Forest St, San Francisco, CA 94016" +186217,27in 4K Gaming Monitor,1,389.99,03/30/19 17:16,"675 Park St, Los Angeles, CA 90001" +186218,Wired Headphones,1,11.99,03/27/19 21:56,"932 Highland St, San Francisco, CA 94016" +186219,USB-C Charging Cable,1,11.95,03/10/19 15:07,"599 Willow St, Boston, MA 02215" +186220,AA Batteries (4-pack),2,3.84,03/30/19 09:42,"333 Meadow St, Seattle, WA 98101" +186221,20in Monitor,1,109.99,03/06/19 15:16,"525 Madison St, San Francisco, CA 94016" +186222,Wired Headphones,1,11.99,03/30/19 09:57,"46 Washington St, Seattle, WA 98101" +186223,AA Batteries (4-pack),1,3.84,03/08/19 11:00,"511 River St, Los Angeles, CA 90001" +186224,34in Ultrawide Monitor,1,379.99,03/25/19 23:37,"510 Maple St, Seattle, WA 98101" +186225,AAA Batteries (4-pack),2,2.99,03/27/19 19:32,"811 Cedar St, Seattle, WA 98101" +186226,AA Batteries (4-pack),1,3.84,03/24/19 13:56,"879 Dogwood St, Austin, TX 73301" +186227,Wired Headphones,1,11.99,03/25/19 06:33,"385 River St, Seattle, WA 98101" +186228,AAA Batteries (4-pack),1,2.99,03/16/19 17:37,"214 Jefferson St, Boston, MA 02215" +186229,AA Batteries (4-pack),1,3.84,03/09/19 13:37,"391 10th St, Seattle, WA 98101" +186230,Google Phone,1,600,03/21/19 10:41,"889 13th St, Seattle, WA 98101" +186231,Apple Airpods Headphones,1,150,03/14/19 11:28,"657 Cherry St, Dallas, TX 75001" +186232,Lightning Charging Cable,1,14.95,03/10/19 17:48,"700 2nd St, San Francisco, CA 94016" +186233,USB-C Charging Cable,1,11.95,03/04/19 22:56,"641 Center St, Portland, OR 97035" +186234,AAA Batteries (4-pack),3,2.99,03/25/19 16:46,"321 Washington St, Los Angeles, CA 90001" +186235,Bose SoundSport Headphones,1,99.99,03/15/19 18:05,"413 Pine St, Los Angeles, CA 90001" +186236,Bose SoundSport Headphones,1,99.99,03/07/19 13:46,"514 Spruce St, Dallas, TX 75001" +186237,34in Ultrawide Monitor,1,379.99,03/16/19 00:09,"731 Willow St, Portland, OR 97035" +186238,Lightning Charging Cable,1,14.95,03/25/19 10:42,"241 9th St, San Francisco, CA 94016" +186239,27in FHD Monitor,1,149.99,03/20/19 16:32,"597 Maple St, Atlanta, GA 30301" +186240,USB-C Charging Cable,1,11.95,03/16/19 17:46,"886 2nd St, Seattle, WA 98101" +186240,AA Batteries (4-pack),3,3.84,03/16/19 17:46,"886 2nd St, Seattle, WA 98101" +186241,AAA Batteries (4-pack),1,2.99,03/21/19 10:36,"882 Lincoln St, Portland, OR 97035" +186241,USB-C Charging Cable,1,11.95,03/21/19 10:36,"882 Lincoln St, Portland, OR 97035" +186242,Macbook Pro Laptop,1,1700,03/05/19 22:24,"614 Center St, New York City, NY 10001" +186243,20in Monitor,1,109.99,03/21/19 11:59,"691 North St, Boston, MA 02215" +186244,Google Phone,1,600,03/31/19 16:49,"330 Ridge St, Austin, TX 73301" +186245,20in Monitor,1,109.99,03/14/19 19:07,"785 Highland St, Dallas, TX 75001" +186246,20in Monitor,1,109.99,03/10/19 00:36,"338 Main St, Los Angeles, CA 90001" +186247,Lightning Charging Cable,1,14.95,03/16/19 23:02,"249 Lake St, Seattle, WA 98101" +186248,AAA Batteries (4-pack),1,2.99,03/23/19 23:53,"642 River St, Dallas, TX 75001" +186249,AAA Batteries (4-pack),1,2.99,03/10/19 10:40,"246 Lincoln St, New York City, NY 10001" +186249,USB-C Charging Cable,1,11.95,03/10/19 10:40,"246 Lincoln St, New York City, NY 10001" +186250,AA Batteries (4-pack),4,3.84,03/08/19 18:36,"110 Highland St, San Francisco, CA 94016" +186251,USB-C Charging Cable,1,11.95,03/15/19 14:21,"248 Park St, Portland, OR 97035" +186252,USB-C Charging Cable,1,11.95,03/16/19 08:51,"143 River St, Atlanta, GA 30301" +186253,Lightning Charging Cable,1,14.95,03/17/19 16:14,"306 Lake St, San Francisco, CA 94016" +186254,Bose SoundSport Headphones,1,99.99,03/25/19 18:08,"383 11th St, Los Angeles, CA 90001" +186255,AAA Batteries (4-pack),2,2.99,03/19/19 08:27,"173 Park St, Austin, TX 73301" +186256,Apple Airpods Headphones,1,150,03/19/19 19:03,"985 Dogwood St, San Francisco, CA 94016" +186257,AAA Batteries (4-pack),1,2.99,03/08/19 16:39,"183 Maple St, Dallas, TX 75001" +186258,20in Monitor,1,109.99,03/25/19 01:56,"224 Park St, San Francisco, CA 94016" +186259,Macbook Pro Laptop,1,1700,03/18/19 18:22,"954 10th St, Dallas, TX 75001" +186260,Vareebadd Phone,1,400,03/26/19 20:40,"682 River St, Austin, TX 73301" +186261,27in 4K Gaming Monitor,1,389.99,03/09/19 17:11,"6 Meadow St, Dallas, TX 75001" +186262,27in FHD Monitor,1,149.99,03/04/19 13:10,"746 2nd St, Atlanta, GA 30301" +186263,Apple Airpods Headphones,1,150,03/22/19 12:28,"315 Walnut St, New York City, NY 10001" +186264,AA Batteries (4-pack),1,3.84,03/30/19 11:53,"498 2nd St, Seattle, WA 98101" +186265,Lightning Charging Cable,1,14.95,03/12/19 09:37,"389 Sunset St, Los Angeles, CA 90001" +186266,ThinkPad Laptop,1,999.99,03/23/19 14:37,"46 Washington St, San Francisco, CA 94016" +186267,AA Batteries (4-pack),1,3.84,03/09/19 23:10,"378 Chestnut St, Atlanta, GA 30301" +186268,Lightning Charging Cable,1,14.95,03/04/19 15:34,"432 Willow St, San Francisco, CA 94016" +186269,Flatscreen TV,1,300,03/16/19 12:46,"788 Chestnut St, Los Angeles, CA 90001" +186270,AA Batteries (4-pack),1,3.84,03/18/19 17:23,"369 Ridge St, San Francisco, CA 94016" +186271,AAA Batteries (4-pack),1,2.99,03/31/19 15:25,"888 12th St, Los Angeles, CA 90001" +186272,Vareebadd Phone,1,400,03/03/19 16:55,"477 Hickory St, Los Angeles, CA 90001" +186272,USB-C Charging Cable,1,11.95,03/03/19 16:55,"477 Hickory St, Los Angeles, CA 90001" +186273,Lightning Charging Cable,1,14.95,03/24/19 17:01,"396 Jackson St, Atlanta, GA 30301" +186274,AA Batteries (4-pack),1,3.84,03/06/19 20:31,"630 4th St, San Francisco, CA 94016" +186275,USB-C Charging Cable,1,11.95,03/01/19 17:00,"256 4th St, San Francisco, CA 94016" +186276,34in Ultrawide Monitor,1,379.99,03/30/19 10:33,"300 Willow St, Portland, OR 97035" +186277,AAA Batteries (4-pack),1,2.99,03/24/19 03:21,"546 Meadow St, Dallas, TX 75001" +186278,27in FHD Monitor,1,149.99,03/07/19 08:09,"733 Willow St, Dallas, TX 75001" +186279,USB-C Charging Cable,1,11.95,03/16/19 11:00,"99 Cedar St, San Francisco, CA 94016" +186280,Apple Airpods Headphones,1,150,03/15/19 19:39,"889 Highland St, San Francisco, CA 94016" +186281,Apple Airpods Headphones,1,150,03/14/19 10:41,"230 Church St, San Francisco, CA 94016" +186282,Lightning Charging Cable,1,14.95,03/19/19 08:11,"422 8th St, San Francisco, CA 94016" +186283,Wired Headphones,1,11.99,03/22/19 17:54,"553 North St, Seattle, WA 98101" +186284,Lightning Charging Cable,1,14.95,03/27/19 18:19,"740 Center St, San Francisco, CA 94016" +186285,Lightning Charging Cable,1,14.95,03/13/19 12:04,"76 10th St, Seattle, WA 98101" +186286,AA Batteries (4-pack),1,3.84,03/09/19 12:33,"703 Pine St, Boston, MA 02215" +186287,USB-C Charging Cable,2,11.95,03/06/19 17:50,"415 12th St, San Francisco, CA 94016" +186288,Macbook Pro Laptop,1,1700,03/30/19 21:40,"986 Johnson St, Atlanta, GA 30301" +186289,34in Ultrawide Monitor,1,379.99,03/18/19 15:08,"16 South St, Seattle, WA 98101" +186290,27in FHD Monitor,1,149.99,03/25/19 23:01,"168 Jackson St, Los Angeles, CA 90001" +186291,Apple Airpods Headphones,1,150,03/15/19 20:17,"965 Willow St, Los Angeles, CA 90001" +186292,Wired Headphones,1,11.99,03/05/19 21:01,"722 South St, New York City, NY 10001" +186293,USB-C Charging Cable,1,11.95,03/13/19 20:24,"192 Ridge St, Dallas, TX 75001" +186294,AA Batteries (4-pack),1,3.84,03/01/19 16:05,"768 Pine St, New York City, NY 10001" +186295,AAA Batteries (4-pack),1,2.99,03/01/19 10:53,"487 Johnson St, New York City, NY 10001" +186296,34in Ultrawide Monitor,1,379.99,03/25/19 16:34,"590 Johnson St, San Francisco, CA 94016" +186297,27in 4K Gaming Monitor,1,389.99,03/05/19 11:58,"53 Maple St, Atlanta, GA 30301" +186298,iPhone,1,700,03/05/19 19:25,"212 14th St, Boston, MA 02215" +186298,Wired Headphones,1,11.99,03/05/19 19:25,"212 14th St, Boston, MA 02215" +186299,27in 4K Gaming Monitor,1,389.99,03/22/19 19:33,"292 Washington St, Los Angeles, CA 90001" +186300,Wired Headphones,1,11.99,03/30/19 12:27,"673 Pine St, Los Angeles, CA 90001" +186301,AAA Batteries (4-pack),1,2.99,03/15/19 08:22,"634 9th St, Seattle, WA 98101" +186302,27in 4K Gaming Monitor,1,389.99,03/12/19 22:14,"121 Elm St, Atlanta, GA 30301" +186303,Wired Headphones,2,11.99,03/05/19 18:59,"15 6th St, New York City, NY 10001" +186304,USB-C Charging Cable,1,11.95,03/19/19 13:56,"9 Lincoln St, Los Angeles, CA 90001" +186305,20in Monitor,1,109.99,03/09/19 07:35,"566 13th St, San Francisco, CA 94016" +186306,Lightning Charging Cable,1,14.95,03/15/19 11:56,"100 Cherry St, Boston, MA 02215" +186307,Apple Airpods Headphones,1,150,03/22/19 10:18,"536 Willow St, Los Angeles, CA 90001" +186308,USB-C Charging Cable,1,11.95,03/23/19 11:00,"237 Chestnut St, Dallas, TX 75001" +186309,iPhone,1,700,03/14/19 16:41,"496 Maple St, Dallas, TX 75001" +186310,AA Batteries (4-pack),1,3.84,03/02/19 15:45,"749 Main St, Portland, OR 97035" +186311,Apple Airpods Headphones,1,150,03/12/19 13:17,"479 Lakeview St, Atlanta, GA 30301" +186312,Apple Airpods Headphones,1,150,03/23/19 12:30,"977 Church St, Dallas, TX 75001" +186313,Lightning Charging Cable,1,14.95,03/31/19 17:01,"65 Madison St, Boston, MA 02215" +186314,USB-C Charging Cable,1,11.95,03/08/19 19:37,"541 Lincoln St, Los Angeles, CA 90001" +186315,Flatscreen TV,1,300,03/29/19 18:29,"679 Chestnut St, Los Angeles, CA 90001" +186316,AA Batteries (4-pack),3,3.84,03/30/19 20:05,"405 Madison St, Seattle, WA 98101" +186317,Apple Airpods Headphones,1,150,03/06/19 10:23,"877 2nd St, Dallas, TX 75001" +186318,AA Batteries (4-pack),1,3.84,03/16/19 09:33,"697 14th St, San Francisco, CA 94016" +186319,USB-C Charging Cable,1,11.95,03/13/19 16:29,"632 Church St, Portland, OR 97035" +186320,Apple Airpods Headphones,1,150,03/26/19 12:03,"698 6th St, San Francisco, CA 94016" +186321,34in Ultrawide Monitor,1,379.99,03/28/19 21:49,"541 7th St, Los Angeles, CA 90001" +186322,34in Ultrawide Monitor,1,379.99,03/05/19 12:49,"17 10th St, Los Angeles, CA 90001" +186323,Apple Airpods Headphones,1,150,03/13/19 08:20,"118 Lakeview St, Boston, MA 02215" +186324,Apple Airpods Headphones,1,150,03/13/19 21:39,"382 Johnson St, Austin, TX 73301" +186325,Lightning Charging Cable,1,14.95,03/29/19 22:14,"652 11th St, Dallas, TX 75001" +186326,Lightning Charging Cable,1,14.95,03/16/19 21:39,"89 Sunset St, Atlanta, GA 30301" +186327,USB-C Charging Cable,1,11.95,03/08/19 16:29,"308 Meadow St, Boston, MA 02215" +186328,Lightning Charging Cable,1,14.95,03/31/19 11:13,"907 6th St, New York City, NY 10001" +186329,USB-C Charging Cable,1,11.95,03/22/19 20:58,"263 Cedar St, Boston, MA 02215" +186330,USB-C Charging Cable,1,11.95,03/01/19 19:03,"582 Lake St, San Francisco, CA 94016" +186331,USB-C Charging Cable,1,11.95,03/19/19 12:12,"686 13th St, New York City, NY 10001" +186332,27in FHD Monitor,1,149.99,03/09/19 19:12,"633 Lakeview St, Atlanta, GA 30301" +186333,USB-C Charging Cable,1,11.95,03/15/19 16:40,"442 10th St, Seattle, WA 98101" +186334,ThinkPad Laptop,1,999.99,03/08/19 15:14,"716 9th St, Los Angeles, CA 90001" +186335,Bose SoundSport Headphones,1,99.99,03/25/19 07:34,"647 Dogwood St, Boston, MA 02215" +186336,27in 4K Gaming Monitor,1,389.99,03/20/19 11:35,"555 Hill St, San Francisco, CA 94016" +186337,Wired Headphones,1,11.99,03/22/19 00:42,"148 Willow St, Los Angeles, CA 90001" +186338,Bose SoundSport Headphones,1,99.99,03/28/19 13:47,"671 9th St, Boston, MA 02215" +186338,AAA Batteries (4-pack),1,2.99,03/28/19 13:47,"671 9th St, Boston, MA 02215" +186339,AA Batteries (4-pack),1,3.84,04/01/19 00:03,"901 Lake St, Los Angeles, CA 90001" +186340,AA Batteries (4-pack),1,3.84,03/17/19 09:55,"508 Center St, Dallas, TX 75001" +186341,Lightning Charging Cable,1,14.95,03/23/19 06:32,"548 4th St, Los Angeles, CA 90001" +186342,AA Batteries (4-pack),1,3.84,03/24/19 11:31,"169 Cherry St, New York City, NY 10001" +186343,USB-C Charging Cable,1,11.95,03/01/19 13:29,"675 Park St, San Francisco, CA 94016" +186344,Flatscreen TV,1,300,03/21/19 16:19,"998 14th St, New York City, NY 10001" +186345,Apple Airpods Headphones,1,150,03/17/19 18:21,"872 Chestnut St, Atlanta, GA 30301" +186346,USB-C Charging Cable,1,11.95,03/11/19 18:10,"560 Jefferson St, Atlanta, GA 30301" +186347,iPhone,1,700,03/19/19 11:29,"500 Hickory St, New York City, NY 10001" +186348,Google Phone,1,600,03/23/19 16:00,"231 Wilson St, Atlanta, GA 30301" +186348,Wired Headphones,1,11.99,03/23/19 16:00,"231 Wilson St, Atlanta, GA 30301" +186349,AAA Batteries (4-pack),1,2.99,03/19/19 07:01,"8 Church St, Atlanta, GA 30301" +186350,Apple Airpods Headphones,1,150,03/29/19 19:31,"433 Pine St, Portland, OR 97035" +186351,Wired Headphones,1,11.99,03/17/19 13:35,"543 Walnut St, New York City, NY 10001" +186352,AA Batteries (4-pack),1,3.84,03/14/19 21:11,"338 Hickory St, San Francisco, CA 94016" +186353,27in FHD Monitor,1,149.99,03/08/19 07:04,"654 Dogwood St, Austin, TX 73301" +186354,USB-C Charging Cable,1,11.95,03/04/19 15:26,"899 River St, New York City, NY 10001" +186355,AAA Batteries (4-pack),1,2.99,03/05/19 19:29,"663 Cedar St, Los Angeles, CA 90001" +186356,27in 4K Gaming Monitor,1,389.99,03/26/19 18:02,"467 1st St, San Francisco, CA 94016" +186357,34in Ultrawide Monitor,1,379.99,03/08/19 20:27,"89 11th St, New York City, NY 10001" +186358,Wired Headphones,1,11.99,03/27/19 15:19,"171 8th St, Austin, TX 73301" +186359,Macbook Pro Laptop,1,1700,03/08/19 19:27,"6 River St, Atlanta, GA 30301" +186360,USB-C Charging Cable,1,11.95,03/14/19 18:27,"17 Meadow St, Boston, MA 02215" +186361,USB-C Charging Cable,1,11.95,03/12/19 18:06,"585 Church St, San Francisco, CA 94016" +186362,iPhone,1,700,03/07/19 10:02,"621 Wilson St, San Francisco, CA 94016" +186363,Vareebadd Phone,1,400,03/23/19 07:54,"635 Washington St, Atlanta, GA 30301" +186364,20in Monitor,1,109.99,03/11/19 21:03,"454 9th St, Dallas, TX 75001" +186365,AA Batteries (4-pack),2,3.84,03/29/19 16:11,"369 Park St, Atlanta, GA 30301" +186366,Lightning Charging Cable,1,14.95,03/23/19 19:59,"761 Lincoln St, San Francisco, CA 94016" +186367,Bose SoundSport Headphones,1,99.99,03/23/19 06:32,"238 Meadow St, Atlanta, GA 30301" +186368,AAA Batteries (4-pack),1,2.99,03/21/19 21:28,"339 Highland St, New York City, NY 10001" +186369,AA Batteries (4-pack),1,3.84,03/06/19 20:17,"396 Cherry St, San Francisco, CA 94016" +186370,Wired Headphones,1,11.99,03/29/19 15:34,"305 Jefferson St, New York City, NY 10001" +186371,27in FHD Monitor,1,149.99,03/24/19 11:30,"313 12th St, Los Angeles, CA 90001" +186372,34in Ultrawide Monitor,1,379.99,03/02/19 21:31,"505 Church St, Dallas, TX 75001" +186373,Bose SoundSport Headphones,1,99.99,03/16/19 21:00,"766 Washington St, San Francisco, CA 94016" +186374,Macbook Pro Laptop,1,1700,03/30/19 20:40,"549 8th St, Portland, OR 97035" +186375,Flatscreen TV,1,300,03/07/19 18:12,"606 Walnut St, San Francisco, CA 94016" +186376,34in Ultrawide Monitor,1,379.99,03/21/19 21:33,"669 Church St, Boston, MA 02215" +186377,20in Monitor,1,109.99,03/27/19 23:43,"349 Johnson St, San Francisco, CA 94016" +186378,Google Phone,1,600,03/26/19 11:14,"156 Cherry St, Los Angeles, CA 90001" +186379,USB-C Charging Cable,1,11.95,03/30/19 05:40,"699 14th St, San Francisco, CA 94016" +186380,27in FHD Monitor,1,149.99,03/23/19 15:13,"306 Lake St, San Francisco, CA 94016" +186381,27in FHD Monitor,1,149.99,03/26/19 22:41,"663 North St, San Francisco, CA 94016" +186382,Bose SoundSport Headphones,1,99.99,03/22/19 22:10,"878 12th St, Portland, OR 97035" +186383,Apple Airpods Headphones,1,150,03/04/19 21:10,"336 4th St, Austin, TX 73301" +186384,ThinkPad Laptop,1,999.99,03/04/19 09:41,"973 12th St, Portland, OR 97035" +186385,Google Phone,1,600,03/17/19 10:39,"652 11th St, Atlanta, GA 30301" +186386,AAA Batteries (4-pack),1,2.99,03/22/19 11:08,"288 Spruce St, San Francisco, CA 94016" +186387,20in Monitor,1,109.99,03/30/19 16:23,"845 River St, Dallas, TX 75001" +186388,Lightning Charging Cable,1,14.95,03/08/19 20:07,"789 Walnut St, Seattle, WA 98101" +186389,USB-C Charging Cable,1,11.95,03/22/19 16:43,"872 5th St, San Francisco, CA 94016" +186390,Bose SoundSport Headphones,1,99.99,03/04/19 13:21,"255 Washington St, New York City, NY 10001" +186391,AA Batteries (4-pack),1,3.84,03/06/19 00:04,"629 Maple St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +186392,AA Batteries (4-pack),1,3.84,03/01/19 15:43,"725 Spruce St, San Francisco, CA 94016" +186393,Apple Airpods Headphones,1,150,03/30/19 08:24,"322 Ridge St, San Francisco, CA 94016" +186394,Vareebadd Phone,1,400,04/01/19 03:14,"49 Main St, New York City, NY 10001" +186395,Apple Airpods Headphones,1,150,03/31/19 11:09,"939 Lincoln St, Portland, ME 04101" +186396,Lightning Charging Cable,1,14.95,03/08/19 16:03,"501 Lake St, New York City, NY 10001" +186397,Wired Headphones,1,11.99,03/23/19 12:14,"771 Lakeview St, Los Angeles, CA 90001" +186398,34in Ultrawide Monitor,1,379.99,03/04/19 17:38,"953 Spruce St, Portland, OR 97035" +186399,Google Phone,1,600,03/26/19 21:04,"932 9th St, Los Angeles, CA 90001" +186399,USB-C Charging Cable,1,11.95,03/26/19 21:04,"932 9th St, Los Angeles, CA 90001" +186400,USB-C Charging Cable,1,11.95,03/14/19 10:35,"601 14th St, New York City, NY 10001" +186401,Apple Airpods Headphones,1,150,03/18/19 15:38,"342 4th St, New York City, NY 10001" +186402,AAA Batteries (4-pack),1,2.99,03/11/19 15:52,"127 River St, San Francisco, CA 94016" +186403,USB-C Charging Cable,1,11.95,03/03/19 11:58,"988 Pine St, Austin, TX 73301" +186404,AA Batteries (4-pack),1,3.84,03/18/19 20:15,"529 Elm St, Boston, MA 02215" +186405,Apple Airpods Headphones,1,150,03/17/19 10:22,"370 7th St, San Francisco, CA 94016" +186406,Apple Airpods Headphones,1,150,03/17/19 19:07,"19 8th St, Los Angeles, CA 90001" +186407,USB-C Charging Cable,1,11.95,03/16/19 20:59,"273 6th St, Boston, MA 02215" +186408,AAA Batteries (4-pack),1,2.99,03/30/19 22:35,"637 Madison St, San Francisco, CA 94016" +186409,USB-C Charging Cable,1,11.95,03/22/19 14:40,"507 Lakeview St, Dallas, TX 75001" +186410,34in Ultrawide Monitor,1,379.99,03/31/19 11:27,"744 Washington St, San Francisco, CA 94016" +186411,Lightning Charging Cable,1,14.95,03/11/19 12:30,"246 Chestnut St, San Francisco, CA 94016" +186412,Vareebadd Phone,1,400,03/15/19 11:08,"970 2nd St, San Francisco, CA 94016" +186413,Bose SoundSport Headphones,1,99.99,03/12/19 17:15,"695 Lakeview St, San Francisco, CA 94016" +186414,34in Ultrawide Monitor,1,379.99,03/26/19 22:45,"957 Sunset St, Boston, MA 02215" +186415,USB-C Charging Cable,2,11.95,03/24/19 01:13,"289 Adams St, San Francisco, CA 94016" +186416,AA Batteries (4-pack),1,3.84,03/09/19 21:07,"180 Highland St, Boston, MA 02215" +186417,Macbook Pro Laptop,1,1700,03/07/19 21:17,"645 Walnut St, Atlanta, GA 30301" +186418,AAA Batteries (4-pack),1,2.99,03/05/19 21:44,"485 Wilson St, Los Angeles, CA 90001" +186419,27in FHD Monitor,1,149.99,03/02/19 22:04,"390 Forest St, Dallas, TX 75001" +186420,AA Batteries (4-pack),1,3.84,03/04/19 17:26,"37 Lincoln St, Boston, MA 02215" +186420,Lightning Charging Cable,1,14.95,03/04/19 17:26,"37 Lincoln St, Boston, MA 02215" +186421,AAA Batteries (4-pack),1,2.99,03/15/19 09:31,"221 5th St, Boston, MA 02215" +186422,Apple Airpods Headphones,1,150,03/29/19 12:46,"961 Center St, Boston, MA 02215" +186423,Wired Headphones,1,11.99,03/29/19 12:44,"293 7th St, Atlanta, GA 30301" +186424,USB-C Charging Cable,1,11.95,03/05/19 11:51,"780 Dogwood St, San Francisco, CA 94016" +186425,Macbook Pro Laptop,1,1700,03/25/19 17:41,"561 Maple St, San Francisco, CA 94016" +186426,Macbook Pro Laptop,1,1700,03/14/19 12:49,"424 Walnut St, San Francisco, CA 94016" +186427,ThinkPad Laptop,1,999.99,03/12/19 19:58,"88 9th St, Los Angeles, CA 90001" +186428,USB-C Charging Cable,1,11.95,03/25/19 10:09,"634 Walnut St, Boston, MA 02215" +186429,27in 4K Gaming Monitor,1,389.99,03/21/19 19:07,"234 1st St, Austin, TX 73301" +186430,USB-C Charging Cable,1,11.95,03/29/19 11:30,"641 10th St, Seattle, WA 98101" +186431,Wired Headphones,1,11.99,03/06/19 19:30,"812 Spruce St, Dallas, TX 75001" +186432,Google Phone,1,600,03/05/19 13:37,"8 Washington St, San Francisco, CA 94016" +186432,Bose SoundSport Headphones,1,99.99,03/05/19 13:37,"8 Washington St, San Francisco, CA 94016" +186433,USB-C Charging Cable,1,11.95,03/14/19 12:50,"799 5th St, Atlanta, GA 30301" +186434,AA Batteries (4-pack),2,3.84,03/16/19 20:11,"456 5th St, Los Angeles, CA 90001" +186435,Wired Headphones,1,11.99,03/17/19 17:32,"39 North St, San Francisco, CA 94016" +186436,Bose SoundSport Headphones,1,99.99,03/28/19 15:52,"109 Forest St, San Francisco, CA 94016" +186437,Wired Headphones,1,11.99,03/04/19 19:02,"948 Willow St, Los Angeles, CA 90001" +186438,Lightning Charging Cable,1,14.95,03/31/19 19:30,"672 Walnut St, New York City, NY 10001" +186439,AAA Batteries (4-pack),1,2.99,03/27/19 15:07,"566 Center St, San Francisco, CA 94016" +186440,Wired Headphones,1,11.99,03/27/19 21:44,"865 North St, Atlanta, GA 30301" +186441,AAA Batteries (4-pack),1,2.99,03/01/19 12:07,"687 Spruce St, San Francisco, CA 94016" +186442,Wired Headphones,1,11.99,03/03/19 23:48,"710 Dogwood St, Los Angeles, CA 90001" +186443,Wired Headphones,1,11.99,03/31/19 16:38,"935 Highland St, Los Angeles, CA 90001" +186444,Bose SoundSport Headphones,1,99.99,03/08/19 16:06,"495 12th St, New York City, NY 10001" +186445,27in 4K Gaming Monitor,1,389.99,03/23/19 21:33,"762 Cedar St, Portland, OR 97035" +186446,27in 4K Gaming Monitor,1,389.99,03/04/19 15:47,"405 Meadow St, Boston, MA 02215" +186447,USB-C Charging Cable,1,11.95,03/17/19 21:07,"172 Church St, Dallas, TX 75001" +186448,USB-C Charging Cable,1,11.95,03/21/19 14:00,"269 14th St, New York City, NY 10001" +186449,Bose SoundSport Headphones,1,99.99,03/03/19 23:31,"704 Lake St, Boston, MA 02215" +186450,Lightning Charging Cable,1,14.95,03/25/19 16:40,"540 1st St, Los Angeles, CA 90001" +186451,Apple Airpods Headphones,1,150,03/02/19 20:38,"732 Walnut St, San Francisco, CA 94016" +186452,Bose SoundSport Headphones,1,99.99,03/28/19 15:04,"477 Madison St, Austin, TX 73301" +186453,Wired Headphones,1,11.99,03/23/19 22:41,"220 North St, Seattle, WA 98101" +186454,AAA Batteries (4-pack),1,2.99,03/25/19 20:50,"372 6th St, Seattle, WA 98101" +186455,Lightning Charging Cable,1,14.95,03/28/19 07:16,"926 Johnson St, New York City, NY 10001" +186456,AA Batteries (4-pack),2,3.84,03/24/19 14:31,"588 Meadow St, Seattle, WA 98101" +186457,AA Batteries (4-pack),1,3.84,03/16/19 04:41,"12 Center St, San Francisco, CA 94016" +186458,USB-C Charging Cable,1,11.95,03/31/19 11:40,"370 12th St, New York City, NY 10001" +186459,Lightning Charging Cable,1,14.95,03/15/19 23:14,"34 Cedar St, Los Angeles, CA 90001" +186460,Flatscreen TV,1,300,03/22/19 18:37,"96 Walnut St, Los Angeles, CA 90001" +186461,AAA Batteries (4-pack),1,2.99,03/20/19 23:16,"523 Jackson St, San Francisco, CA 94016" +186462,Bose SoundSport Headphones,1,99.99,03/03/19 18:03,"802 Hickory St, Atlanta, GA 30301" +186463,USB-C Charging Cable,1,11.95,03/17/19 09:40,"607 Elm St, New York City, NY 10001" +186464,AA Batteries (4-pack),1,3.84,03/03/19 11:42,"223 Madison St, Boston, MA 02215" +186465,USB-C Charging Cable,1,11.95,03/27/19 16:29,"6 Willow St, Boston, MA 02215" +186466,AA Batteries (4-pack),2,3.84,03/09/19 06:55,"391 Park St, Los Angeles, CA 90001" +186467,USB-C Charging Cable,1,11.95,03/09/19 21:19,"109 12th St, Boston, MA 02215" +186468,AA Batteries (4-pack),1,3.84,03/17/19 16:54,"739 Meadow St, Seattle, WA 98101" +186469,AA Batteries (4-pack),1,3.84,03/27/19 21:20,"476 Lake St, Boston, MA 02215" +186470,Apple Airpods Headphones,1,150,03/06/19 07:53,"883 Meadow St, San Francisco, CA 94016" +186471,Wired Headphones,1,11.99,03/05/19 12:24,"476 Spruce St, Atlanta, GA 30301" +186472,AA Batteries (4-pack),1,3.84,03/08/19 16:24,"577 Dogwood St, San Francisco, CA 94016" +186473,34in Ultrawide Monitor,1,379.99,03/26/19 05:46,"813 Hill St, San Francisco, CA 94016" +186474,Bose SoundSport Headphones,1,99.99,03/22/19 21:32,"952 Lakeview St, Portland, OR 97035" +186475,AA Batteries (4-pack),1,3.84,03/01/19 11:17,"779 Chestnut St, Seattle, WA 98101" +186476,Wired Headphones,1,11.99,03/24/19 11:35,"145 West St, New York City, NY 10001" +186477,27in 4K Gaming Monitor,1,389.99,03/01/19 08:35,"751 10th St, Los Angeles, CA 90001" +186478,Wired Headphones,1,11.99,03/30/19 17:40,"961 Center St, Austin, TX 73301" +186479,Lightning Charging Cable,1,14.95,03/31/19 09:26,"209 Church St, Los Angeles, CA 90001" +186480,Macbook Pro Laptop,1,1700,03/29/19 11:39,"137 5th St, Los Angeles, CA 90001" +186481,USB-C Charging Cable,1,11.95,03/13/19 09:32,"706 Dogwood St, San Francisco, CA 94016" +186482,20in Monitor,1,109.99,03/10/19 15:17,"628 Walnut St, San Francisco, CA 94016" +186483,Wired Headphones,1,11.99,03/30/19 12:45,"390 Adams St, San Francisco, CA 94016" +186484,USB-C Charging Cable,1,11.95,03/16/19 12:32,"565 Cedar St, San Francisco, CA 94016" +186485,Bose SoundSport Headphones,1,99.99,03/12/19 23:47,"606 Washington St, Dallas, TX 75001" +186486,Macbook Pro Laptop,1,1700,03/23/19 06:37,"287 Elm St, Boston, MA 02215" +186487,27in FHD Monitor,1,149.99,03/18/19 21:05,"835 Dogwood St, Dallas, TX 75001" +186488,Lightning Charging Cable,1,14.95,03/03/19 20:30,"162 Dogwood St, Atlanta, GA 30301" +186489,Lightning Charging Cable,1,14.95,03/26/19 17:18,"596 Park St, Boston, MA 02215" +186490,Wired Headphones,1,11.99,03/31/19 17:44,"8 Center St, Atlanta, GA 30301" +186491,Google Phone,1,600,03/18/19 13:56,"181 West St, San Francisco, CA 94016" +186492,AAA Batteries (4-pack),1,2.99,03/23/19 15:26,"375 2nd St, Atlanta, GA 30301" +186493,iPhone,1,700,03/21/19 12:00,"834 Chestnut St, Boston, MA 02215" +186494,ThinkPad Laptop,1,999.99,03/12/19 20:15,"58 Park St, Los Angeles, CA 90001" +186495,Lightning Charging Cable,1,14.95,03/25/19 13:13,"135 Lakeview St, New York City, NY 10001" +186496,27in 4K Gaming Monitor,1,389.99,03/12/19 07:08,"112 South St, San Francisco, CA 94016" +186497,34in Ultrawide Monitor,1,379.99,03/07/19 08:07,"850 6th St, San Francisco, CA 94016" +186498,20in Monitor,1,109.99,03/20/19 14:42,"146 Willow St, Seattle, WA 98101" +186499,27in FHD Monitor,1,149.99,03/30/19 20:37,"622 Jackson St, San Francisco, CA 94016" +186500,USB-C Charging Cable,2,11.95,03/16/19 20:06,"992 Elm St, Los Angeles, CA 90001" +186501,Flatscreen TV,1,300,03/21/19 14:31,"842 Dogwood St, San Francisco, CA 94016" +186502,Apple Airpods Headphones,1,150,03/05/19 09:44,"225 West St, San Francisco, CA 94016" +186503,USB-C Charging Cable,1,11.95,03/12/19 17:39,"184 10th St, Boston, MA 02215" +186504,27in FHD Monitor,1,149.99,03/05/19 18:21,"236 Hill St, Atlanta, GA 30301" +186505,Macbook Pro Laptop,1,1700,03/05/19 12:19,"735 Willow St, New York City, NY 10001" +186506,Wired Headphones,1,11.99,03/22/19 14:14,"202 Spruce St, Dallas, TX 75001" +186507,Macbook Pro Laptop,1,1700,03/05/19 10:44,"671 Johnson St, Portland, ME 04101" +186508,Lightning Charging Cable,1,14.95,03/26/19 00:37,"48 Highland St, Los Angeles, CA 90001" +186509,Apple Airpods Headphones,1,150,03/15/19 15:59,"860 Forest St, Los Angeles, CA 90001" +186510,AAA Batteries (4-pack),1,2.99,03/10/19 20:23,"764 4th St, Atlanta, GA 30301" +186511,Macbook Pro Laptop,1,1700,03/23/19 23:23,"731 7th St, San Francisco, CA 94016" +186512,Wired Headphones,1,11.99,03/18/19 21:27,"113 Johnson St, Dallas, TX 75001" +186513,20in Monitor,1,109.99,03/01/19 11:57,"981 North St, San Francisco, CA 94016" +186514,Apple Airpods Headphones,1,150,03/28/19 21:05,"18 Center St, Los Angeles, CA 90001" +186515,USB-C Charging Cable,1,11.95,03/08/19 20:56,"218 Jefferson St, Los Angeles, CA 90001" +186516,34in Ultrawide Monitor,1,379.99,03/10/19 19:45,"566 Lakeview St, San Francisco, CA 94016" +186517,34in Ultrawide Monitor,1,379.99,03/20/19 06:44,"975 Hill St, New York City, NY 10001" +186518,AAA Batteries (4-pack),1,2.99,03/16/19 22:01,"711 Lincoln St, Los Angeles, CA 90001" +186519,Bose SoundSport Headphones,1,99.99,03/03/19 09:34,"69 Jefferson St, New York City, NY 10001" +186520,Wired Headphones,1,11.99,03/15/19 21:54,"117 Walnut St, New York City, NY 10001" +186521,Lightning Charging Cable,1,14.95,03/02/19 17:56,"775 13th St, San Francisco, CA 94016" +186522,27in 4K Gaming Monitor,1,389.99,03/07/19 13:09,"815 6th St, Los Angeles, CA 90001" +186523,34in Ultrawide Monitor,1,379.99,03/16/19 11:14,"299 Jackson St, San Francisco, CA 94016" +186524,AAA Batteries (4-pack),2,2.99,03/28/19 10:29,"18 Willow St, San Francisco, CA 94016" +186524,Google Phone,1,600,03/28/19 10:29,"18 Willow St, San Francisco, CA 94016" +186525,Bose SoundSport Headphones,1,99.99,03/25/19 07:18,"976 11th St, San Francisco, CA 94016" +186526,AA Batteries (4-pack),2,3.84,03/25/19 19:05,"274 6th St, Seattle, WA 98101" +186527,Bose SoundSport Headphones,1,99.99,03/13/19 07:16,"588 Forest St, Boston, MA 02215" +186528,27in FHD Monitor,1,149.99,03/23/19 10:47,"993 4th St, Dallas, TX 75001" +186529,Apple Airpods Headphones,1,150,03/25/19 19:01,"419 West St, New York City, NY 10001" +186530,USB-C Charging Cable,1,11.95,03/14/19 23:35,"835 Wilson St, Austin, TX 73301" +186531,Lightning Charging Cable,1,14.95,03/30/19 17:58,"970 Ridge St, New York City, NY 10001" +186531,Bose SoundSport Headphones,1,99.99,03/30/19 17:58,"970 Ridge St, New York City, NY 10001" +186532,20in Monitor,1,109.99,03/09/19 11:26,"555 Meadow St, Atlanta, GA 30301" +186533,USB-C Charging Cable,1,11.95,03/14/19 06:09,"452 2nd St, San Francisco, CA 94016" +186534,USB-C Charging Cable,1,11.95,03/14/19 04:33,"467 6th St, New York City, NY 10001" +186535,AA Batteries (4-pack),1,3.84,03/19/19 14:55,"912 14th St, Dallas, TX 75001" +186536,Wired Headphones,1,11.99,03/09/19 23:23,"195 Lake St, Boston, MA 02215" +186537,34in Ultrawide Monitor,1,379.99,03/10/19 08:48,"774 Washington St, Seattle, WA 98101" +186538,USB-C Charging Cable,2,11.95,03/31/19 11:39,"289 Lakeview St, New York City, NY 10001" +186539,AAA Batteries (4-pack),2,2.99,03/28/19 19:50,"890 Lakeview St, New York City, NY 10001" +186540,Bose SoundSport Headphones,1,99.99,03/18/19 20:10,"884 5th St, New York City, NY 10001" +186541,Lightning Charging Cable,1,14.95,03/06/19 16:31,"470 Pine St, Dallas, TX 75001" +186542,AA Batteries (4-pack),1,3.84,03/03/19 15:47,"788 River St, San Francisco, CA 94016" +186543,USB-C Charging Cable,1,11.95,03/18/19 17:22,"106 12th St, Boston, MA 02215" +186544,Bose SoundSport Headphones,1,99.99,03/09/19 02:50,"370 Church St, San Francisco, CA 94016" +186545,USB-C Charging Cable,1,11.95,03/17/19 19:11,"610 Lincoln St, Los Angeles, CA 90001" +186546,Bose SoundSport Headphones,1,99.99,03/07/19 16:35,"844 Walnut St, San Francisco, CA 94016" +186547,Wired Headphones,1,11.99,03/17/19 00:27,"143 4th St, Austin, TX 73301" +186548,AA Batteries (4-pack),2,3.84,03/03/19 19:54,"367 Chestnut St, Los Angeles, CA 90001" +186549,iPhone,1,700,03/29/19 21:38,"936 Lakeview St, New York City, NY 10001" +186550,AAA Batteries (4-pack),1,2.99,03/08/19 09:27,"919 2nd St, San Francisco, CA 94016" +186551,27in FHD Monitor,1,149.99,03/11/19 22:19,"796 Spruce St, Boston, MA 02215" +186552,AA Batteries (4-pack),1,3.84,03/18/19 15:48,"85 4th St, Atlanta, GA 30301" +186553,USB-C Charging Cable,1,11.95,03/06/19 10:28,"702 Center St, Austin, TX 73301" +186554,iPhone,1,700,03/12/19 17:22,"121 Spruce St, New York City, NY 10001" +186555,USB-C Charging Cable,1,11.95,03/27/19 14:12,"846 13th St, Los Angeles, CA 90001" +186556,27in FHD Monitor,1,149.99,03/08/19 11:18,"500 Spruce St, Los Angeles, CA 90001" +186557,27in 4K Gaming Monitor,1,389.99,03/21/19 10:35,"564 Wilson St, New York City, NY 10001" +186557,AA Batteries (4-pack),1,3.84,03/21/19 10:35,"564 Wilson St, New York City, NY 10001" +186558,Bose SoundSport Headphones,1,99.99,03/31/19 19:34,"583 Washington St, Seattle, WA 98101" +186559,Google Phone,1,600,03/10/19 15:43,"116 4th St, San Francisco, CA 94016" +186560,Wired Headphones,1,11.99,03/02/19 22:59,"405 1st St, Portland, OR 97035" +186561,Bose SoundSport Headphones,1,99.99,03/13/19 18:00,"423 Center St, San Francisco, CA 94016" +186562,Lightning Charging Cable,1,14.95,03/14/19 09:05,"876 10th St, New York City, NY 10001" +186563,AAA Batteries (4-pack),1,2.99,03/19/19 14:32,"781 Sunset St, New York City, NY 10001" +186564,20in Monitor,1,109.99,03/13/19 12:09,"805 2nd St, Boston, MA 02215" +186565,AAA Batteries (4-pack),1,2.99,03/16/19 19:58,"922 Forest St, New York City, NY 10001" +186566,Google Phone,1,600,03/13/19 13:00,"673 Church St, Boston, MA 02215" +186567,AAA Batteries (4-pack),1,2.99,03/12/19 21:00,"576 Hickory St, Los Angeles, CA 90001" +186568,20in Monitor,1,109.99,03/31/19 15:46,"361 Spruce St, San Francisco, CA 94016" +186569,Lightning Charging Cable,1,14.95,03/28/19 19:12,"424 Spruce St, San Francisco, CA 94016" +186570,Bose SoundSport Headphones,1,99.99,03/01/19 16:06,"685 4th St, San Francisco, CA 94016" +186571,Google Phone,1,600,03/27/19 14:22,"155 Forest St, Los Angeles, CA 90001" +186572,Apple Airpods Headphones,1,150,03/14/19 01:10,"441 4th St, Boston, MA 02215" +186573,Apple Airpods Headphones,1,150,03/10/19 16:02,"574 6th St, Seattle, WA 98101" +186574,34in Ultrawide Monitor,1,379.99,03/10/19 16:16,"666 North St, San Francisco, CA 94016" +186575,Lightning Charging Cable,1,14.95,03/30/19 12:24,"43 Madison St, San Francisco, CA 94016" +186576,34in Ultrawide Monitor,1,379.99,03/09/19 17:52,"689 Main St, Portland, OR 97035" +186577,AA Batteries (4-pack),1,3.84,03/26/19 01:38,"602 Lakeview St, Boston, MA 02215" +186578,iPhone,1,700,03/05/19 21:02,"69 Wilson St, Atlanta, GA 30301" +186578,Lightning Charging Cable,1,14.95,03/05/19 21:02,"69 Wilson St, Atlanta, GA 30301" +186579,Lightning Charging Cable,1,14.95,03/30/19 00:37,"354 6th St, Los Angeles, CA 90001" +186580,Google Phone,1,600,03/18/19 18:49,"559 Walnut St, Dallas, TX 75001" +186581,27in 4K Gaming Monitor,1,389.99,03/07/19 11:58,"149 Forest St, Boston, MA 02215" +186582,Bose SoundSport Headphones,1,99.99,03/30/19 17:08,"704 Sunset St, Boston, MA 02215" +186583,Wired Headphones,1,11.99,03/29/19 16:41,"77 Elm St, Boston, MA 02215" +186584,Bose SoundSport Headphones,1,99.99,03/27/19 10:08,"767 Walnut St, San Francisco, CA 94016" +186585,Wired Headphones,1,11.99,03/03/19 18:12,"731 Elm St, Los Angeles, CA 90001" +186586,Wired Headphones,1,11.99,03/02/19 09:37,"455 9th St, Los Angeles, CA 90001" +186587,AA Batteries (4-pack),2,3.84,03/13/19 16:34,"511 13th St, San Francisco, CA 94016" +186588,Lightning Charging Cable,1,14.95,03/03/19 14:25,"809 Ridge St, Boston, MA 02215" +186589,AAA Batteries (4-pack),1,2.99,03/07/19 09:58,"58 West St, Los Angeles, CA 90001" +186590,AA Batteries (4-pack),1,3.84,03/11/19 17:17,"71 5th St, New York City, NY 10001" +186591,Lightning Charging Cable,1,14.95,03/01/19 15:46,"275 Adams St, New York City, NY 10001" +186592,AAA Batteries (4-pack),1,2.99,03/03/19 06:51,"472 1st St, Los Angeles, CA 90001" +186593,27in 4K Gaming Monitor,1,389.99,03/21/19 16:54,"144 9th St, Seattle, WA 98101" +186594,AAA Batteries (4-pack),1,2.99,03/13/19 09:31,"484 Center St, Seattle, WA 98101" +186595,Macbook Pro Laptop,1,1700,03/11/19 21:06,"578 Hickory St, San Francisco, CA 94016" +186596,Apple Airpods Headphones,1,150,03/12/19 10:10,"373 Lake St, Los Angeles, CA 90001" +186597,Lightning Charging Cable,1,14.95,03/16/19 12:21,"548 Lake St, San Francisco, CA 94016" +186598,USB-C Charging Cable,1,11.95,03/03/19 10:38,"661 Spruce St, Portland, OR 97035" +186599,AA Batteries (4-pack),1,3.84,03/15/19 08:11,"735 Walnut St, Boston, MA 02215" +186600,AA Batteries (4-pack),2,3.84,03/25/19 00:51,"751 Forest St, New York City, NY 10001" +186601,iPhone,1,700,03/02/19 19:27,"449 8th St, Austin, TX 73301" +186602,USB-C Charging Cable,1,11.95,03/23/19 14:02,"203 River St, Atlanta, GA 30301" +186603,USB-C Charging Cable,1,11.95,03/03/19 02:31,"83 Adams St, Seattle, WA 98101" +186604,Apple Airpods Headphones,1,150,03/05/19 03:50,"562 Hill St, New York City, NY 10001" +186605,Lightning Charging Cable,1,14.95,03/19/19 15:35,"608 5th St, Portland, OR 97035" +186606,27in 4K Gaming Monitor,1,389.99,03/04/19 00:24,"601 River St, San Francisco, CA 94016" +186607,Apple Airpods Headphones,1,150,03/01/19 16:38,"516 6th St, Portland, ME 04101" +186608,Vareebadd Phone,1,400,03/22/19 21:51,"707 North St, Boston, MA 02215" +186609,34in Ultrawide Monitor,1,379.99,03/30/19 00:53,"624 Johnson St, San Francisco, CA 94016" +186610,Apple Airpods Headphones,1,150,03/19/19 11:07,"421 South St, San Francisco, CA 94016" +186611,Google Phone,1,600,03/14/19 19:16,"730 4th St, New York City, NY 10001" +186612,Bose SoundSport Headphones,1,99.99,03/12/19 21:44,"703 5th St, San Francisco, CA 94016" +186613,AAA Batteries (4-pack),1,2.99,03/17/19 16:28,"992 Pine St, San Francisco, CA 94016" +186614,Lightning Charging Cable,1,14.95,03/18/19 17:37,"618 Washington St, Seattle, WA 98101" +186615,Lightning Charging Cable,1,14.95,03/27/19 15:28,"236 Adams St, Portland, OR 97035" +186616,AA Batteries (4-pack),3,3.84,03/31/19 20:42,"509 Dogwood St, Dallas, TX 75001" +186617,Wired Headphones,1,11.99,03/25/19 15:11,"713 Walnut St, San Francisco, CA 94016" +186618,Apple Airpods Headphones,1,150,03/31/19 19:45,"562 Willow St, Los Angeles, CA 90001" +186619,AA Batteries (4-pack),1,3.84,03/19/19 20:06,"770 Hill St, New York City, NY 10001" +186620,Wired Headphones,1,11.99,03/23/19 16:08,"994 Adams St, Los Angeles, CA 90001" +186621,USB-C Charging Cable,1,11.95,03/05/19 11:45,"631 River St, Boston, MA 02215" +186622,Bose SoundSport Headphones,1,99.99,03/27/19 22:43,"598 Lakeview St, Los Angeles, CA 90001" +186623,27in FHD Monitor,1,149.99,03/22/19 00:40,"107 Lake St, San Francisco, CA 94016" +186624,AAA Batteries (4-pack),1,2.99,03/18/19 12:29,"352 6th St, Austin, TX 73301" +186625,Wired Headphones,1,11.99,03/24/19 16:49,"673 Madison St, Portland, OR 97035" +186626,Wired Headphones,2,11.99,03/18/19 10:32,"877 Hill St, San Francisco, CA 94016" +186627,AA Batteries (4-pack),1,3.84,03/12/19 17:08,"521 Walnut St, Portland, OR 97035" +186628,Apple Airpods Headphones,1,150,03/12/19 09:30,"283 Washington St, San Francisco, CA 94016" +186629,AA Batteries (4-pack),1,3.84,03/23/19 13:39,"261 Hill St, Dallas, TX 75001" +186630,Vareebadd Phone,1,400,03/15/19 20:01,"135 13th St, Los Angeles, CA 90001" +186631,Apple Airpods Headphones,1,150,03/03/19 10:47,"975 Lakeview St, New York City, NY 10001" +186632,Wired Headphones,1,11.99,03/29/19 23:30,"501 7th St, San Francisco, CA 94016" +186633,27in 4K Gaming Monitor,1,389.99,03/12/19 14:39,"78 Lakeview St, New York City, NY 10001" +186634,USB-C Charging Cable,1,11.95,03/11/19 21:08,"770 Elm St, San Francisco, CA 94016" +186635,AAA Batteries (4-pack),1,2.99,03/27/19 16:13,"751 Spruce St, San Francisco, CA 94016" +186636,Lightning Charging Cable,1,14.95,03/19/19 12:44,"756 Walnut St, San Francisco, CA 94016" +186637,Macbook Pro Laptop,1,1700,03/10/19 10:55,"317 West St, New York City, NY 10001" +186638,Wired Headphones,1,11.99,03/24/19 23:13,"19 Hill St, Los Angeles, CA 90001" +186639,ThinkPad Laptop,1,999.99,03/13/19 15:33,"324 Cherry St, Boston, MA 02215" +186640,Lightning Charging Cable,1,14.95,03/08/19 14:04,"485 9th St, Boston, MA 02215" +186641,AAA Batteries (4-pack),1,2.99,03/04/19 20:56,"927 West St, San Francisco, CA 94016" +186642,Google Phone,1,600,03/05/19 17:41,"988 Hickory St, Los Angeles, CA 90001" +186643,Wired Headphones,1,11.99,03/11/19 05:26,"514 7th St, San Francisco, CA 94016" +186644,Google Phone,1,600,03/22/19 18:02,"953 5th St, Los Angeles, CA 90001" +186645,USB-C Charging Cable,1,11.95,03/23/19 15:55,"417 13th St, Boston, MA 02215" +186646,AAA Batteries (4-pack),1,2.99,03/05/19 22:18,"615 Highland St, San Francisco, CA 94016" +186646,USB-C Charging Cable,1,11.95,03/05/19 22:18,"615 Highland St, San Francisco, CA 94016" +186647,20in Monitor,1,109.99,03/13/19 13:11,"603 Hickory St, Los Angeles, CA 90001" +186648,AA Batteries (4-pack),3,3.84,03/16/19 21:51,"830 Park St, Boston, MA 02215" +186649,AAA Batteries (4-pack),1,2.99,03/19/19 12:00,"1 Pine St, Los Angeles, CA 90001" +186650,34in Ultrawide Monitor,1,379.99,03/24/19 16:30,"416 Meadow St, San Francisco, CA 94016" +186651,Bose SoundSport Headphones,1,99.99,03/11/19 21:41,"552 8th St, New York City, NY 10001" +186652,AAA Batteries (4-pack),4,2.99,03/27/19 18:55,"537 11th St, New York City, NY 10001" +186653,Apple Airpods Headphones,1,150,03/06/19 11:14,"512 Sunset St, San Francisco, CA 94016" +186654,Wired Headphones,1,11.99,03/04/19 09:52,"936 9th St, Los Angeles, CA 90001" +186655,Bose SoundSport Headphones,1,99.99,03/06/19 21:50,"836 Washington St, San Francisco, CA 94016" +186656,Google Phone,1,600,03/16/19 18:36,"410 Johnson St, Austin, TX 73301" +186657,AA Batteries (4-pack),1,3.84,03/13/19 23:12,"634 North St, Austin, TX 73301" +186658,Lightning Charging Cable,1,14.95,03/26/19 15:15,"622 North St, Atlanta, GA 30301" +186659,AA Batteries (4-pack),1,3.84,03/16/19 17:40,"93 Lakeview St, Seattle, WA 98101" +186660,Wired Headphones,1,11.99,03/26/19 13:14,"257 Hill St, Portland, OR 97035" +186661,AAA Batteries (4-pack),1,2.99,03/26/19 23:50,"912 Sunset St, Seattle, WA 98101" +186662,Wired Headphones,1,11.99,03/13/19 08:40,"729 Spruce St, Dallas, TX 75001" +186663,Flatscreen TV,1,300,03/05/19 20:42,"339 Cherry St, San Francisco, CA 94016" +186664,20in Monitor,1,109.99,03/28/19 21:49,"422 West St, San Francisco, CA 94016" +186665,Wired Headphones,1,11.99,03/31/19 22:18,"964 Center St, San Francisco, CA 94016" +186666,USB-C Charging Cable,1,11.95,03/11/19 19:40,"942 Cherry St, Atlanta, GA 30301" +186667,Apple Airpods Headphones,1,150,03/24/19 15:08,"311 7th St, New York City, NY 10001" +186668,AA Batteries (4-pack),1,3.84,03/04/19 21:49,"999 12th St, Los Angeles, CA 90001" +186669,AAA Batteries (4-pack),1,2.99,03/04/19 14:53,"299 Highland St, San Francisco, CA 94016" +186670,Apple Airpods Headphones,1,150,03/11/19 14:28,"351 Lakeview St, San Francisco, CA 94016" +186671,Lightning Charging Cable,1,14.95,03/09/19 10:13,"836 13th St, New York City, NY 10001" +186672,Lightning Charging Cable,1,14.95,03/07/19 17:00,"49 Johnson St, Portland, OR 97035" +186673,iPhone,1,700,03/15/19 13:01,"710 Chestnut St, Boston, MA 02215" +186673,27in 4K Gaming Monitor,1,389.99,03/15/19 13:01,"710 Chestnut St, Boston, MA 02215" +186674,27in 4K Gaming Monitor,1,389.99,03/21/19 18:29,"696 Spruce St, Boston, MA 02215" +186675,Bose SoundSport Headphones,1,99.99,03/25/19 21:04,"458 Washington St, Dallas, TX 75001" +186676,AAA Batteries (4-pack),1,2.99,03/07/19 23:01,"81 11th St, Los Angeles, CA 90001" +186677,AA Batteries (4-pack),1,3.84,03/02/19 19:12,"842 South St, Boston, MA 02215" +186678,Bose SoundSport Headphones,1,99.99,03/21/19 11:06,"568 Lake St, San Francisco, CA 94016" +186679,Apple Airpods Headphones,1,150,03/12/19 12:54,"927 5th St, New York City, NY 10001" +186680,Lightning Charging Cable,1,14.95,03/23/19 18:33,"677 Walnut St, Boston, MA 02215" +186681,USB-C Charging Cable,1,11.95,03/31/19 13:01,"935 10th St, Atlanta, GA 30301" +186682,USB-C Charging Cable,1,11.95,03/19/19 23:29,"338 North St, San Francisco, CA 94016" +186683,Flatscreen TV,1,300,03/14/19 20:19,"729 Adams St, Los Angeles, CA 90001" +186684,AA Batteries (4-pack),2,3.84,03/04/19 11:17,"840 5th St, San Francisco, CA 94016" +186685,AA Batteries (4-pack),3,3.84,03/29/19 19:58,"317 14th St, San Francisco, CA 94016" +186686,Lightning Charging Cable,1,14.95,03/05/19 21:42,"261 Johnson St, New York City, NY 10001" +186687,Google Phone,1,600,03/25/19 15:16,"226 Elm St, Seattle, WA 98101" +186688,Apple Airpods Headphones,1,150,03/02/19 12:26,"926 Sunset St, San Francisco, CA 94016" +186689,USB-C Charging Cable,1,11.95,03/20/19 11:30,"808 Maple St, New York City, NY 10001" +186690,AAA Batteries (4-pack),1,2.99,03/02/19 20:04,"660 Lake St, Atlanta, GA 30301" +186691,AAA Batteries (4-pack),2,2.99,03/08/19 00:54,"472 Willow St, Dallas, TX 75001" +186692,34in Ultrawide Monitor,1,379.99,03/24/19 00:17,"150 Jefferson St, San Francisco, CA 94016" +186693,AAA Batteries (4-pack),2,2.99,03/10/19 11:50,"356 Maple St, New York City, NY 10001" +186694,Apple Airpods Headphones,1,150,03/01/19 18:00,"889 Cherry St, San Francisco, CA 94016" +186695,Google Phone,1,600,03/07/19 13:10,"766 Center St, San Francisco, CA 94016" +186696,34in Ultrawide Monitor,1,379.99,03/31/19 12:51,"915 14th St, Boston, MA 02215" +186697,Wired Headphones,2,11.99,03/06/19 22:57,"615 9th St, Boston, MA 02215" +186698,AA Batteries (4-pack),1,3.84,03/28/19 11:39,"169 Willow St, Los Angeles, CA 90001" +186699,AA Batteries (4-pack),1,3.84,03/07/19 12:50,"905 10th St, Austin, TX 73301" +186700,AA Batteries (4-pack),1,3.84,03/31/19 01:20,"961 5th St, New York City, NY 10001" +186701,Wired Headphones,1,11.99,03/02/19 19:38,"405 Highland St, Austin, TX 73301" +186702,USB-C Charging Cable,1,11.95,03/11/19 06:57,"585 6th St, Boston, MA 02215" +186703,Lightning Charging Cable,1,14.95,03/22/19 09:18,"522 Jefferson St, Dallas, TX 75001" +186704,Apple Airpods Headphones,1,150,03/09/19 19:24,"656 Madison St, Seattle, WA 98101" +186705,AA Batteries (4-pack),1,3.84,03/25/19 12:08,"255 Maple St, Seattle, WA 98101" +186706,Google Phone,1,600,03/20/19 00:27,"285 Jackson St, Seattle, WA 98101" +186706,USB-C Charging Cable,1,11.95,03/20/19 00:27,"285 Jackson St, Seattle, WA 98101" +186706,Wired Headphones,1,11.99,03/20/19 00:27,"285 Jackson St, Seattle, WA 98101" +186707,ThinkPad Laptop,1,999.99,03/19/19 22:15,"764 Forest St, Los Angeles, CA 90001" +186708,iPhone,1,700,03/02/19 12:18,"761 Washington St, New York City, NY 10001" +186709,Macbook Pro Laptop,1,1700,03/19/19 11:09,"502 Hill St, New York City, NY 10001" +186710,Lightning Charging Cable,1,14.95,03/03/19 05:33,"284 Washington St, New York City, NY 10001" +186711,Flatscreen TV,1,300,03/01/19 15:29,"305 Wilson St, Dallas, TX 75001" +186712,Flatscreen TV,1,300,03/01/19 19:41,"155 11th St, Dallas, TX 75001" +186713,Lightning Charging Cable,1,14.95,03/29/19 13:52,"496 River St, San Francisco, CA 94016" +186714,Vareebadd Phone,1,400,03/13/19 13:29,"632 Pine St, Portland, OR 97035" +186714,27in 4K Gaming Monitor,1,389.99,03/13/19 13:29,"632 Pine St, Portland, OR 97035" +186715,27in 4K Gaming Monitor,1,389.99,03/25/19 21:56,"633 Pine St, San Francisco, CA 94016" +186716,USB-C Charging Cable,1,11.95,03/04/19 06:02,"176 2nd St, New York City, NY 10001" +186717,Lightning Charging Cable,1,14.95,03/04/19 13:43,"823 Lincoln St, Atlanta, GA 30301" +186718,USB-C Charging Cable,1,11.95,03/05/19 17:03,"837 5th St, Boston, MA 02215" +186719,Lightning Charging Cable,1,14.95,03/27/19 12:08,"771 Adams St, Portland, OR 97035" +186720,iPhone,1,700,03/01/19 15:39,"734 Lake St, San Francisco, CA 94016" +186721,Google Phone,1,600,03/22/19 22:20,"722 10th St, Los Angeles, CA 90001" +186722,Lightning Charging Cable,1,14.95,03/13/19 21:50,"726 6th St, San Francisco, CA 94016" +186723,AA Batteries (4-pack),2,3.84,03/21/19 20:41,"588 Willow St, Boston, MA 02215" +186724,27in FHD Monitor,1,149.99,03/09/19 22:15,"952 Chestnut St, Atlanta, GA 30301" +186725,Lightning Charging Cable,1,14.95,03/11/19 09:54,"851 Sunset St, Los Angeles, CA 90001" +186726,AA Batteries (4-pack),1,3.84,03/04/19 10:33,"456 9th St, Portland, OR 97035" +186727,Apple Airpods Headphones,1,150,03/11/19 13:44,"473 Willow St, San Francisco, CA 94016" +186728,Flatscreen TV,1,300,03/31/19 12:36,"224 Sunset St, Atlanta, GA 30301" +186729,USB-C Charging Cable,1,11.95,03/27/19 10:05,"271 North St, Seattle, WA 98101" +186730,Bose SoundSport Headphones,1,99.99,03/01/19 14:46,"251 4th St, Dallas, TX 75001" +186731,Google Phone,1,600,03/05/19 09:05,"306 2nd St, New York City, NY 10001" +186731,Wired Headphones,1,11.99,03/05/19 09:05,"306 2nd St, New York City, NY 10001" +186732,AA Batteries (4-pack),1,3.84,03/18/19 20:44,"997 Church St, San Francisco, CA 94016" +186733,AA Batteries (4-pack),4,3.84,03/25/19 19:35,"245 5th St, Boston, MA 02215" +186734,Bose SoundSport Headphones,1,99.99,03/27/19 17:07,"552 Highland St, Dallas, TX 75001" +186735,Wired Headphones,1,11.99,03/05/19 17:39,"525 9th St, Seattle, WA 98101" +186736,AA Batteries (4-pack),1,3.84,03/04/19 14:30,"472 Maple St, Boston, MA 02215" +186737,27in 4K Gaming Monitor,1,389.99,03/16/19 22:54,"188 Lincoln St, San Francisco, CA 94016" +186738,AAA Batteries (4-pack),1,2.99,03/23/19 18:18,"579 Wilson St, Boston, MA 02215" +186739,USB-C Charging Cable,1,11.95,03/22/19 15:28,"911 7th St, San Francisco, CA 94016" +186740,Bose SoundSport Headphones,1,99.99,03/29/19 03:09,"28 Hill St, Atlanta, GA 30301" +186741,AA Batteries (4-pack),1,3.84,03/07/19 21:56,"631 North St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +186742,AA Batteries (4-pack),1,3.84,03/13/19 10:33,"650 2nd St, Atlanta, GA 30301" +186743,USB-C Charging Cable,1,11.95,03/28/19 20:14,"563 7th St, Atlanta, GA 30301" +186744,Bose SoundSport Headphones,1,99.99,03/11/19 11:07,"141 Hill St, Austin, TX 73301" +186745,AA Batteries (4-pack),1,3.84,03/25/19 18:27,"894 Walnut St, Boston, MA 02215" +186746,iPhone,1,700,03/23/19 12:52,"455 Ridge St, Portland, OR 97035" +186746,Macbook Pro Laptop,1,1700,03/23/19 12:52,"455 Ridge St, Portland, OR 97035" +186747,Lightning Charging Cable,1,14.95,03/23/19 11:53,"345 Jefferson St, San Francisco, CA 94016" +186748,Apple Airpods Headphones,1,150,03/29/19 17:24,"552 Jefferson St, Dallas, TX 75001" +186749,Wired Headphones,1,11.99,03/29/19 02:11,"167 13th St, Atlanta, GA 30301" +186750,27in 4K Gaming Monitor,1,389.99,03/22/19 16:01,"823 River St, Boston, MA 02215" +186751,Wired Headphones,2,11.99,03/12/19 10:48,"18 Hickory St, San Francisco, CA 94016" +186752,Lightning Charging Cable,1,14.95,03/10/19 17:36,"739 8th St, San Francisco, CA 94016" +186753,AAA Batteries (4-pack),2,2.99,03/02/19 23:03,"209 14th St, Boston, MA 02215" +186754,AA Batteries (4-pack),1,3.84,03/20/19 19:24,"893 Spruce St, Portland, ME 04101" +186755,Lightning Charging Cable,1,14.95,03/18/19 13:56,"98 Center St, Seattle, WA 98101" +186756,iPhone,1,700,03/09/19 18:39,"607 Center St, Atlanta, GA 30301" +186757,Bose SoundSport Headphones,1,99.99,03/14/19 20:27,"382 Pine St, Boston, MA 02215" +186758,AAA Batteries (4-pack),1,2.99,03/28/19 15:05,"745 Elm St, Dallas, TX 75001" +186759,Bose SoundSport Headphones,1,99.99,03/18/19 00:58,"40 Lake St, Los Angeles, CA 90001" +186760,Lightning Charging Cable,1,14.95,03/01/19 16:46,"770 11th St, Boston, MA 02215" +186760,AA Batteries (4-pack),1,3.84,03/01/19 16:46,"770 11th St, Boston, MA 02215" +186761,AAA Batteries (4-pack),1,2.99,03/08/19 08:44,"811 Sunset St, San Francisco, CA 94016" +186762,Wired Headphones,1,11.99,03/11/19 14:05,"416 8th St, Portland, ME 04101" +186763,Bose SoundSport Headphones,1,99.99,03/16/19 16:47,"375 Lincoln St, Los Angeles, CA 90001" +186764,AA Batteries (4-pack),2,3.84,03/07/19 17:16,"329 1st St, Portland, ME 04101" +186765,AAA Batteries (4-pack),1,2.99,03/21/19 20:51,"837 Lincoln St, San Francisco, CA 94016" +186766,Lightning Charging Cable,3,14.95,03/30/19 23:35,"767 Park St, Dallas, TX 75001" +186767,Google Phone,1,600,03/06/19 09:54,"721 West St, New York City, NY 10001" +186768,Apple Airpods Headphones,1,150,03/04/19 07:41,"443 Lake St, San Francisco, CA 94016" +186769,27in 4K Gaming Monitor,1,389.99,03/15/19 19:18,"891 Jackson St, Los Angeles, CA 90001" +186770,Wired Headphones,1,11.99,03/22/19 21:48,"922 Adams St, Portland, OR 97035" +186771,Lightning Charging Cable,1,14.95,03/22/19 10:44,"418 Walnut St, San Francisco, CA 94016" +186771,34in Ultrawide Monitor,1,379.99,03/22/19 10:44,"418 Walnut St, San Francisco, CA 94016" +186772,Apple Airpods Headphones,1,150,03/21/19 20:39,"604 Hill St, New York City, NY 10001" +186773,27in 4K Gaming Monitor,1,389.99,03/12/19 09:23,"684 5th St, San Francisco, CA 94016" +186774,AAA Batteries (4-pack),1,2.99,03/10/19 19:05,"188 Pine St, Dallas, TX 75001" +186775,27in 4K Gaming Monitor,1,389.99,03/28/19 13:12,"781 Church St, San Francisco, CA 94016" +186776,Lightning Charging Cable,1,14.95,03/23/19 13:44,"176 9th St, Los Angeles, CA 90001" +186777,AAA Batteries (4-pack),2,2.99,03/23/19 12:05,"515 West St, Dallas, TX 75001" +186778,27in FHD Monitor,1,149.99,03/13/19 12:05,"168 Center St, Portland, ME 04101" +186779,Bose SoundSport Headphones,1,99.99,03/21/19 21:03,"108 Maple St, San Francisco, CA 94016" +186780,Lightning Charging Cable,1,14.95,03/05/19 07:25,"869 12th St, Austin, TX 73301" +186781,Lightning Charging Cable,1,14.95,03/15/19 17:41,"782 Cherry St, San Francisco, CA 94016" +186782,Flatscreen TV,1,300,03/30/19 17:11,"755 Adams St, Dallas, TX 75001" +186783,AA Batteries (4-pack),1,3.84,03/31/19 11:14,"308 7th St, San Francisco, CA 94016" +186783,Wired Headphones,1,11.99,03/31/19 11:14,"308 7th St, San Francisco, CA 94016" +186784,27in FHD Monitor,1,149.99,03/15/19 12:53,"466 Ridge St, San Francisco, CA 94016" +186785,AAA Batteries (4-pack),2,2.99,03/16/19 16:06,"47 14th St, Seattle, WA 98101" +186786,ThinkPad Laptop,1,999.99,03/21/19 10:02,"925 Wilson St, Austin, TX 73301" +186787,34in Ultrawide Monitor,1,379.99,03/13/19 13:01,"885 14th St, Seattle, WA 98101" +186788,AA Batteries (4-pack),1,3.84,03/11/19 12:06,"994 14th St, Los Angeles, CA 90001" +186789,Wired Headphones,1,11.99,03/15/19 19:59,"699 4th St, San Francisco, CA 94016" +186790,Apple Airpods Headphones,1,150,03/20/19 13:54,"60 Meadow St, Portland, OR 97035" +186791,AAA Batteries (4-pack),1,2.99,03/31/19 15:42,"197 4th St, Boston, MA 02215" +186792,Wired Headphones,1,11.99,03/22/19 19:11,"863 Cedar St, Portland, OR 97035" +186793,Bose SoundSport Headphones,1,99.99,03/14/19 08:02,"526 9th St, Seattle, WA 98101" +186794,34in Ultrawide Monitor,1,379.99,03/02/19 20:33,"159 Pine St, Boston, MA 02215" +186795,Apple Airpods Headphones,1,150,03/05/19 05:59,"380 River St, New York City, NY 10001" +186796,USB-C Charging Cable,1,11.95,03/15/19 16:47,"856 Dogwood St, San Francisco, CA 94016" +186797,AAA Batteries (4-pack),1,2.99,03/05/19 23:01,"443 Jackson St, San Francisco, CA 94016" +186798,Lightning Charging Cable,1,14.95,03/07/19 17:26,"423 Lakeview St, Portland, ME 04101" +186799,AAA Batteries (4-pack),1,2.99,03/23/19 14:50,"440 Highland St, San Francisco, CA 94016" +186800,AAA Batteries (4-pack),1,2.99,03/08/19 16:36,"552 Lakeview St, San Francisco, CA 94016" +186801,AA Batteries (4-pack),1,3.84,03/27/19 15:06,"111 Highland St, Boston, MA 02215" +186802,Apple Airpods Headphones,1,150,03/15/19 10:03,"644 Maple St, Dallas, TX 75001" +186803,Flatscreen TV,1,300,03/27/19 12:41,"887 12th St, Los Angeles, CA 90001" +186804,Bose SoundSport Headphones,1,99.99,03/04/19 10:46,"434 9th St, San Francisco, CA 94016" +186805,Wired Headphones,1,11.99,03/04/19 13:19,"575 7th St, Los Angeles, CA 90001" +186806,Wired Headphones,1,11.99,03/04/19 19:37,"117 Cherry St, New York City, NY 10001" +186807,AA Batteries (4-pack),1,3.84,03/03/19 10:32,"396 Dogwood St, San Francisco, CA 94016" +186808,27in FHD Monitor,1,149.99,03/18/19 20:14,"262 South St, Seattle, WA 98101" +186809,Wired Headphones,1,11.99,03/04/19 22:42,"485 Hickory St, Austin, TX 73301" +186810,Macbook Pro Laptop,1,1700,03/12/19 05:48,"161 Elm St, Los Angeles, CA 90001" +186811,Lightning Charging Cable,1,14.95,03/13/19 13:46,"801 2nd St, Los Angeles, CA 90001" +186812,Wired Headphones,1,11.99,03/25/19 16:03,"967 Hickory St, Boston, MA 02215" +186813,Macbook Pro Laptop,1,1700,03/06/19 15:09,"646 West St, Boston, MA 02215" +186814,AA Batteries (4-pack),1,3.84,03/15/19 18:52,"150 5th St, Dallas, TX 75001" +186815,34in Ultrawide Monitor,1,379.99,03/02/19 10:59,"164 1st St, Seattle, WA 98101" +186816,Bose SoundSport Headphones,1,99.99,03/11/19 15:39,"608 Main St, Portland, OR 97035" +186817,Lightning Charging Cable,1,14.95,03/24/19 13:59,"591 14th St, Dallas, TX 75001" +186818,Google Phone,1,600,03/28/19 00:57,"39 Hill St, San Francisco, CA 94016" +186819,USB-C Charging Cable,3,11.95,03/21/19 21:43,"235 4th St, Boston, MA 02215" +186820,27in 4K Gaming Monitor,1,389.99,03/28/19 03:00,"847 Sunset St, Seattle, WA 98101" +186821,USB-C Charging Cable,1,11.95,03/18/19 21:55,"180 Lake St, Atlanta, GA 30301" +186822,Apple Airpods Headphones,1,150,03/22/19 14:58,"574 Highland St, Dallas, TX 75001" +186823,Lightning Charging Cable,1,14.95,03/21/19 21:38,"473 Lincoln St, Dallas, TX 75001" +186824,Apple Airpods Headphones,1,150,03/03/19 22:31,"544 2nd St, Seattle, WA 98101" +186825,34in Ultrawide Monitor,1,379.99,03/11/19 17:25,"475 Cedar St, San Francisco, CA 94016" +186826,Lightning Charging Cable,2,14.95,03/17/19 15:08,"286 Church St, San Francisco, CA 94016" +186827,USB-C Charging Cable,2,11.95,03/22/19 12:09,"996 14th St, Atlanta, GA 30301" +186828,USB-C Charging Cable,1,11.95,03/02/19 23:04,"822 Meadow St, New York City, NY 10001" +186829,AA Batteries (4-pack),1,3.84,03/14/19 19:40,"597 7th St, San Francisco, CA 94016" +186830,AAA Batteries (4-pack),1,2.99,03/15/19 15:46,"264 Jackson St, San Francisco, CA 94016" +186831,20in Monitor,1,109.99,03/13/19 08:05,"665 1st St, Portland, OR 97035" +186832,27in 4K Gaming Monitor,1,389.99,03/31/19 09:43,"22 5th St, San Francisco, CA 94016" +186833,Bose SoundSport Headphones,1,99.99,03/06/19 11:15,"249 10th St, Los Angeles, CA 90001" +186834,Wired Headphones,1,11.99,03/23/19 09:31,"606 Lake St, San Francisco, CA 94016" +186835,AAA Batteries (4-pack),1,2.99,03/01/19 18:19,"226 Main St, Atlanta, GA 30301" +186836,Apple Airpods Headphones,1,150,03/30/19 22:27,"9 12th St, San Francisco, CA 94016" +186837,Apple Airpods Headphones,1,150,03/12/19 14:05,"262 2nd St, Boston, MA 02215" +186838,AA Batteries (4-pack),3,3.84,03/02/19 10:30,"410 Lincoln St, San Francisco, CA 94016" +186839,iPhone,1,700,03/03/19 19:29,"686 Adams St, Dallas, TX 75001" +186840,Wired Headphones,1,11.99,03/03/19 23:43,"509 Jefferson St, New York City, NY 10001" +186841,Wired Headphones,1,11.99,03/01/19 13:36,"492 Meadow St, San Francisco, CA 94016" +186842,Apple Airpods Headphones,1,150,03/18/19 20:21,"577 Elm St, Seattle, WA 98101" +186843,27in FHD Monitor,1,149.99,03/18/19 19:17,"266 Center St, Atlanta, GA 30301" +186844,34in Ultrawide Monitor,1,379.99,03/26/19 11:56,"127 North St, Portland, ME 04101" +186845,Wired Headphones,1,11.99,03/15/19 18:53,"416 Madison St, San Francisco, CA 94016" +186846,34in Ultrawide Monitor,1,379.99,03/22/19 20:16,"957 5th St, Los Angeles, CA 90001" +186847,Lightning Charging Cable,1,14.95,03/25/19 00:41,"829 1st St, Los Angeles, CA 90001" +186848,Wired Headphones,1,11.99,03/25/19 07:42,"274 Church St, San Francisco, CA 94016" +186849,27in 4K Gaming Monitor,1,389.99,03/10/19 19:41,"695 6th St, New York City, NY 10001" +186850,Google Phone,1,600,03/22/19 08:53,"470 River St, Seattle, WA 98101" +186851,Wired Headphones,2,11.99,03/25/19 09:55,"2 6th St, Seattle, WA 98101" +186852,34in Ultrawide Monitor,1,379.99,03/15/19 20:47,"84 Jefferson St, Los Angeles, CA 90001" +186853,27in FHD Monitor,1,149.99,03/13/19 00:32,"556 Park St, Los Angeles, CA 90001" +186854,34in Ultrawide Monitor,1,379.99,03/05/19 20:52,"608 Madison St, Boston, MA 02215" +186855,Wired Headphones,1,11.99,03/15/19 17:59,"228 Dogwood St, Atlanta, GA 30301" +186856,Macbook Pro Laptop,1,1700,03/09/19 15:10,"462 North St, San Francisco, CA 94016" +186857,Bose SoundSport Headphones,1,99.99,03/30/19 20:13,"525 Adams St, Seattle, WA 98101" +186858,Lightning Charging Cable,1,14.95,03/13/19 11:57,"322 Forest St, Portland, OR 97035" +186859,Flatscreen TV,1,300,03/14/19 18:21,"482 Willow St, Seattle, WA 98101" +186860,Macbook Pro Laptop,1,1700,03/14/19 01:27,"627 Washington St, Atlanta, GA 30301" +186861,20in Monitor,1,109.99,03/04/19 03:19,"339 Madison St, Boston, MA 02215" +186862,27in FHD Monitor,1,149.99,03/27/19 11:37,"671 11th St, Portland, OR 97035" +186863,iPhone,1,700,03/22/19 12:48,"589 Jefferson St, Atlanta, GA 30301" +186864,ThinkPad Laptop,1,999.99,03/26/19 14:25,"68 12th St, San Francisco, CA 94016" +186865,AAA Batteries (4-pack),1,2.99,03/26/19 14:02,"382 Lakeview St, New York City, NY 10001" +186866,USB-C Charging Cable,1,11.95,03/16/19 20:51,"199 6th St, Los Angeles, CA 90001" +186867,Apple Airpods Headphones,1,150,03/29/19 14:21,"186 Madison St, Atlanta, GA 30301" +186868,AAA Batteries (4-pack),2,2.99,03/17/19 08:57,"856 Willow St, Boston, MA 02215" +186868,USB-C Charging Cable,1,11.95,03/17/19 08:57,"856 Willow St, Boston, MA 02215" +186869,27in 4K Gaming Monitor,1,389.99,03/20/19 15:21,"679 5th St, San Francisco, CA 94016" +186870,Bose SoundSport Headphones,1,99.99,03/09/19 14:46,"533 9th St, San Francisco, CA 94016" +186871,USB-C Charging Cable,1,11.95,03/29/19 22:08,"380 River St, Atlanta, GA 30301" +186872,34in Ultrawide Monitor,1,379.99,03/16/19 17:57,"776 Ridge St, Dallas, TX 75001" +186873,AA Batteries (4-pack),2,3.84,03/28/19 08:58,"708 Washington St, Seattle, WA 98101" +186874,Bose SoundSport Headphones,1,99.99,03/18/19 20:32,"203 Jefferson St, Los Angeles, CA 90001" +186875,34in Ultrawide Monitor,1,379.99,03/23/19 21:13,"407 Ridge St, Portland, OR 97035" +186876,Wired Headphones,1,11.99,03/22/19 08:27,"243 Jefferson St, New York City, NY 10001" +186877,Lightning Charging Cable,1,14.95,03/19/19 08:24,"641 4th St, New York City, NY 10001" +186878,Bose SoundSport Headphones,1,99.99,03/08/19 22:20,"402 Spruce St, Portland, OR 97035" diff --git a/sales_data/Sales_May_2019.csv b/sales_data/Sales_May_2019.csv new file mode 100644 index 0000000..d2c2824 --- /dev/null +++ b/sales_data/Sales_May_2019.csv @@ -0,0 +1,8634 @@ +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +197962,Lightning Charging Cable,2,14.95,05/18/19 08:52,"10 2nd St, San Francisco, CA 94016" +197963,27in FHD Monitor,1,149.99,05/30/19 20:01,"403 14th St, Los Angeles, CA 90001" +197964,Lightning Charging Cable,1,14.95,05/09/19 13:08,"797 Sunset St, Seattle, WA 98101" +197965,Wired Headphones,1,11.99,05/10/19 15:13,"238 Maple St, Atlanta, GA 30301" +197966,Lightning Charging Cable,1,14.95,05/03/19 18:49,"677 Johnson St, New York City, NY 10001" +197967,Wired Headphones,1,11.99,05/03/19 11:44,"792 4th St, Portland, ME 04101" +197968,Vareebadd Phone,1,400.0,05/25/19 09:31,"263 5th St, Los Angeles, CA 90001" +197969,AAA Batteries (4-pack),3,2.99,05/29/19 20:34,"570 Chestnut St, New York City, NY 10001" +197970,Lightning Charging Cable,1,14.95,05/20/19 07:49,"843 9th St, San Francisco, CA 94016" +197971,Wired Headphones,1,11.99,05/09/19 10:55,"404 Lake St, New York City, NY 10001" +197972,ThinkPad Laptop,1,999.99,05/18/19 15:39,"626 13th St, San Francisco, CA 94016" +197973,Bose SoundSport Headphones,1,99.99,05/09/19 13:16,"99 Adams St, Austin, TX 73301" +197974,Google Phone,1,600.0,05/04/19 09:08,"61 Johnson St, Los Angeles, CA 90001" +197975,AAA Batteries (4-pack),2,2.99,05/18/19 23:37,"182 Main St, New York City, NY 10001" +197976,Wired Headphones,1,11.99,05/20/19 15:40,"381 Cherry St, New York City, NY 10001" +197977,AA Batteries (4-pack),2,3.84,05/01/19 22:13,"764 North St, New York City, NY 10001" +197978,Apple Airpods Headphones,1,150.0,05/11/19 11:56,"630 Hickory St, Boston, MA 02215" +197979,34in Ultrawide Monitor,1,379.99,05/24/19 23:09,"168 Main St, Portland, OR 97035" +197980,USB-C Charging Cable,1,11.95,05/22/19 02:59,"957 Wilson St, Los Angeles, CA 90001" +197981,AA Batteries (4-pack),1,3.84,05/21/19 13:11,"604 Washington St, Los Angeles, CA 90001" +197982,AA Batteries (4-pack),1,3.84,05/20/19 13:43,"467 Lakeview St, Seattle, WA 98101" +197983,34in Ultrawide Monitor,1,379.99,05/11/19 21:12,"36 Cedar St, San Francisco, CA 94016" +197984,AA Batteries (4-pack),1,3.84,05/24/19 16:34,"108 12th St, New York City, NY 10001" +197985,34in Ultrawide Monitor,1,379.99,05/30/19 12:11,"222 12th St, Los Angeles, CA 90001" +197986,27in 4K Gaming Monitor,1,389.99,05/28/19 20:39,"853 Cherry St, Portland, ME 04101" +197987,27in 4K Gaming Monitor,1,389.99,05/07/19 20:23,"994 Ridge St, Seattle, WA 98101" +197988,Bose SoundSport Headphones,1,99.99,05/08/19 12:16,"340 Pine St, Los Angeles, CA 90001" +197989,USB-C Charging Cable,1,11.95,05/08/19 05:36,"87 Dogwood St, Seattle, WA 98101" +197990,AAA Batteries (4-pack),1,2.99,05/20/19 16:14,"454 2nd St, Los Angeles, CA 90001" +197991,27in FHD Monitor,1,149.99,05/23/19 21:01,"700 Lincoln St, San Francisco, CA 94016" +197992,iPhone,1,700.0,05/15/19 20:52,"647 Adams St, Seattle, WA 98101" +197993,AA Batteries (4-pack),1,3.84,05/17/19 20:23,"416 7th St, Boston, MA 02215" +197994,Wired Headphones,1,11.99,05/12/19 12:58,"841 Chestnut St, Los Angeles, CA 90001" +197995,Google Phone,1,600.0,05/20/19 18:18,"814 Main St, Dallas, TX 75001" +197995,USB-C Charging Cable,1,11.95,05/20/19 18:18,"814 Main St, Dallas, TX 75001" +197996,AA Batteries (4-pack),1,3.84,05/21/19 11:38,"21 9th St, Boston, MA 02215" +197997,Google Phone,1,600.0,05/25/19 16:50,"791 5th St, Austin, TX 73301" +197998,Apple Airpods Headphones,1,150.0,05/28/19 20:41,"461 10th St, Los Angeles, CA 90001" +197998,USB-C Charging Cable,1,11.95,05/28/19 20:41,"461 10th St, Los Angeles, CA 90001" +197999,AA Batteries (4-pack),1,3.84,05/09/19 13:07,"76 Spruce St, Boston, MA 02215" +198000,AAA Batteries (4-pack),1,2.99,05/09/19 21:25,"671 8th St, San Francisco, CA 94016" +198001,Lightning Charging Cable,1,14.95,05/21/19 16:02,"844 Pine St, Portland, OR 97035" +198002,Macbook Pro Laptop,1,1700.0,05/24/19 22:59,"670 Hickory St, Atlanta, GA 30301" +198003,AAA Batteries (4-pack),3,2.99,05/16/19 13:00,"735 Cherry St, Dallas, TX 75001" +198004,27in 4K Gaming Monitor,1,389.99,05/02/19 22:55,"846 11th St, Portland, OR 97035" +198005,AAA Batteries (4-pack),2,2.99,05/14/19 11:20,"477 Cedar St, San Francisco, CA 94016" +198006,Lightning Charging Cable,1,14.95,05/17/19 00:45,"941 Lakeview St, Atlanta, GA 30301" +198007,USB-C Charging Cable,1,11.95,05/20/19 12:01,"450 Center St, San Francisco, CA 94016" +198008,USB-C Charging Cable,1,11.95,05/07/19 11:14,"274 Hill St, Seattle, WA 98101" +198009,AAA Batteries (4-pack),3,2.99,05/13/19 21:27,"275 11th St, Portland, OR 97035" +198010,Bose SoundSport Headphones,1,99.99,05/20/19 17:12,"786 Wilson St, New York City, NY 10001" +198011,Apple Airpods Headphones,1,150.0,05/04/19 10:06,"234 Cedar St, San Francisco, CA 94016" +198012,Apple Airpods Headphones,1,150.0,05/14/19 14:34,"794 5th St, Seattle, WA 98101" +198013,AAA Batteries (4-pack),1,2.99,05/06/19 16:37,"442 Elm St, San Francisco, CA 94016" +198014,Bose SoundSport Headphones,1,99.99,05/14/19 18:14,"152 West St, New York City, NY 10001" +198015,ThinkPad Laptop,1,999.99,05/29/19 09:56,"893 5th St, Portland, OR 97035" +198016,Google Phone,1,600.0,05/20/19 21:09,"607 North St, Dallas, TX 75001" +198017,Lightning Charging Cable,1,14.95,05/15/19 20:58,"94 9th St, New York City, NY 10001" +198018,USB-C Charging Cable,1,11.95,05/08/19 20:25,"536 Maple St, Dallas, TX 75001" +198019,Apple Airpods Headphones,1,150.0,05/13/19 12:23,"766 Lake St, Austin, TX 73301" +198020,Apple Airpods Headphones,1,150.0,05/29/19 12:20,"374 6th St, New York City, NY 10001" +198021,USB-C Charging Cable,1,11.95,05/30/19 13:11,"841 9th St, San Francisco, CA 94016" +198022,34in Ultrawide Monitor,1,379.99,05/25/19 13:08,"322 Hickory St, Seattle, WA 98101" +198023,Lightning Charging Cable,1,14.95,05/20/19 12:53,"378 5th St, Los Angeles, CA 90001" +198024,USB-C Charging Cable,1,11.95,05/10/19 12:20,"932 North St, Boston, MA 02215" +198025,27in FHD Monitor,1,149.99,05/05/19 19:30,"226 2nd St, Austin, TX 73301" +198026,AA Batteries (4-pack),1,3.84,05/26/19 06:48,"322 River St, San Francisco, CA 94016" +198027,AAA Batteries (4-pack),1,2.99,05/14/19 14:58,"85 North St, Los Angeles, CA 90001" +198028,Bose SoundSport Headphones,1,99.99,05/26/19 15:35,"607 River St, Boston, MA 02215" +198028,34in Ultrawide Monitor,1,379.99,05/26/19 15:35,"607 River St, Boston, MA 02215" +198029,Bose SoundSport Headphones,1,99.99,05/19/19 11:49,"963 Walnut St, Los Angeles, CA 90001" +198030,Apple Airpods Headphones,1,150.0,05/24/19 12:01,"887 Elm St, Boston, MA 02215" +198031,AAA Batteries (4-pack),3,2.99,05/26/19 18:16,"974 14th St, Austin, TX 73301" +198032,Wired Headphones,1,11.99,05/03/19 19:28,"520 Willow St, Dallas, TX 75001" +198032,Wired Headphones,2,11.99,05/03/19 19:28,"520 Willow St, Dallas, TX 75001" +198033,AA Batteries (4-pack),1,3.84,05/30/19 22:14,"6 River St, Seattle, WA 98101" +198034,Google Phone,1,600.0,05/09/19 21:50,"911 South St, Austin, TX 73301" +198035,AAA Batteries (4-pack),4,2.99,05/03/19 23:56,"959 8th St, San Francisco, CA 94016" +198036,Bose SoundSport Headphones,1,99.99,05/26/19 13:05,"86 11th St, Los Angeles, CA 90001" +198037,Bose SoundSport Headphones,1,99.99,05/25/19 16:28,"523 7th St, San Francisco, CA 94016" +198038,AA Batteries (4-pack),1,3.84,05/22/19 17:57,"161 Jefferson St, San Francisco, CA 94016" +198039,Lightning Charging Cable,1,14.95,05/05/19 12:04,"416 Adams St, Austin, TX 73301" +198040,34in Ultrawide Monitor,1,379.99,05/12/19 16:38,"880 6th St, New York City, NY 10001" +198041,iPhone,1,700.0,05/16/19 19:47,"834 Lincoln St, Los Angeles, CA 90001" +198042,Lightning Charging Cable,1,14.95,05/19/19 16:30,"431 9th St, Boston, MA 02215" +198043,USB-C Charging Cable,1,11.95,05/11/19 08:55,"372 9th St, Seattle, WA 98101" +198044,AA Batteries (4-pack),1,3.84,05/24/19 09:53,"773 Elm St, Austin, TX 73301" +198045,Lightning Charging Cable,1,14.95,05/12/19 20:02,"553 Lincoln St, San Francisco, CA 94016" +198046,Lightning Charging Cable,1,14.95,05/16/19 12:30,"157 Main St, Los Angeles, CA 90001" +198047,AAA Batteries (4-pack),1,2.99,05/30/19 17:10,"973 Chestnut St, Los Angeles, CA 90001" +198048,Bose SoundSport Headphones,1,99.99,05/04/19 16:52,"522 West St, San Francisco, CA 94016" +198049,34in Ultrawide Monitor,1,379.99,05/19/19 14:47,"733 Adams St, San Francisco, CA 94016" +198050,AA Batteries (4-pack),1,3.84,05/31/19 23:31,"560 4th St, Seattle, WA 98101" +198051,Bose SoundSport Headphones,1,99.99,05/25/19 18:17,"803 Jackson St, Los Angeles, CA 90001" +198052,USB-C Charging Cable,1,11.95,05/17/19 00:31,"144 7th St, Atlanta, GA 30301" +198053,Google Phone,1,600.0,05/26/19 22:17,"36 River St, Dallas, TX 75001" +198053,USB-C Charging Cable,1,11.95,05/26/19 22:17,"36 River St, Dallas, TX 75001" +198054,Bose SoundSport Headphones,1,99.99,05/10/19 12:05,"262 10th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +198055,iPhone,1,700,05/05/19 11:33,"69 14th St, Dallas, TX 75001" +198056,Bose SoundSport Headphones,1,99.99,05/13/19 12:34,"314 Cedar St, Dallas, TX 75001" +198057,AA Batteries (4-pack),1,3.84,05/08/19 23:01,"296 North St, San Francisco, CA 94016" +198058,USB-C Charging Cable,1,11.95,05/27/19 18:54,"536 Pine St, Dallas, TX 75001" +198059,20in Monitor,1,109.99,05/28/19 13:11,"945 Meadow St, San Francisco, CA 94016" +198060,AA Batteries (4-pack),1,3.84,05/09/19 21:49,"626 Lake St, Atlanta, GA 30301" +198061,Apple Airpods Headphones,1,150,05/06/19 20:18,"672 Jefferson St, Portland, OR 97035" +198061,iPhone,1,700,05/06/19 20:18,"672 Jefferson St, Portland, OR 97035" +198062,Wired Headphones,1,11.99,05/27/19 19:53,"681 Adams St, San Francisco, CA 94016" +198063,Wired Headphones,1,11.99,05/10/19 12:44,"329 4th St, Los Angeles, CA 90001" +198064,AA Batteries (4-pack),2,3.84,05/01/19 16:46,"405 7th St, Atlanta, GA 30301" +198065,Lightning Charging Cable,1,14.95,05/27/19 12:51,"6 11th St, San Francisco, CA 94016" +198066,Macbook Pro Laptop,1,1700,05/08/19 19:38,"709 North St, Dallas, TX 75001" +198067,Apple Airpods Headphones,1,150,05/21/19 22:21,"422 7th St, San Francisco, CA 94016" +198068,27in FHD Monitor,1,149.99,05/01/19 22:41,"103 2nd St, Los Angeles, CA 90001" +198069,Lightning Charging Cable,1,14.95,05/03/19 18:58,"614 13th St, Boston, MA 02215" +198070,Apple Airpods Headphones,1,150,05/05/19 14:19,"168 Church St, Los Angeles, CA 90001" +198071,ThinkPad Laptop,1,999.99,05/26/19 20:34,"701 Maple St, Los Angeles, CA 90001" +198072,Lightning Charging Cable,1,14.95,05/19/19 20:32,"269 Adams St, Portland, OR 97035" +198073,USB-C Charging Cable,1,11.95,05/16/19 11:23,"509 Center St, Atlanta, GA 30301" +198074,AAA Batteries (4-pack),1,2.99,05/26/19 14:50,"174 8th St, Boston, MA 02215" +198075,Wired Headphones,1,11.99,05/04/19 20:25,"682 Cherry St, Atlanta, GA 30301" +198075,Apple Airpods Headphones,1,150,05/04/19 20:25,"682 Cherry St, Atlanta, GA 30301" +198076,USB-C Charging Cable,1,11.95,05/19/19 06:49,"802 4th St, Portland, OR 97035" +198077,Lightning Charging Cable,1,14.95,05/01/19 13:01,"316 Highland St, San Francisco, CA 94016" +198078,iPhone,1,700,05/24/19 18:20,"44 Forest St, New York City, NY 10001" +198078,Wired Headphones,2,11.99,05/24/19 18:20,"44 Forest St, New York City, NY 10001" +198079,Lightning Charging Cable,1,14.95,05/28/19 19:27,"771 Lake St, Dallas, TX 75001" +198080,Apple Airpods Headphones,1,150,05/28/19 21:28,"77 Lakeview St, Portland, OR 97035" +198081,Wired Headphones,1,11.99,05/27/19 21:31,"397 8th St, Portland, OR 97035" +198082,Apple Airpods Headphones,1,150,05/31/19 12:20,"305 Lakeview St, New York City, NY 10001" +198083,AA Batteries (4-pack),2,3.84,05/08/19 22:46,"807 South St, New York City, NY 10001" +198084,Lightning Charging Cable,1,14.95,05/26/19 14:40,"488 Church St, Seattle, WA 98101" +198085,Wired Headphones,1,11.99,05/11/19 12:47,"499 West St, Boston, MA 02215" +198086,27in FHD Monitor,1,149.99,05/26/19 13:33,"105 Madison St, Boston, MA 02215" +198087,USB-C Charging Cable,1,11.95,05/17/19 15:55,"798 Madison St, San Francisco, CA 94016" +198088,Vareebadd Phone,1,400,05/22/19 16:12,"642 Church St, Los Angeles, CA 90001" +198088,USB-C Charging Cable,1,11.95,05/22/19 16:12,"642 Church St, Los Angeles, CA 90001" +198089,USB-C Charging Cable,1,11.95,05/20/19 09:56,"167 Jackson St, Atlanta, GA 30301" +198090,Flatscreen TV,1,300,05/23/19 18:06,"127 Ridge St, Los Angeles, CA 90001" +198091,AA Batteries (4-pack),1,3.84,05/16/19 08:56,"448 Hickory St, New York City, NY 10001" +198092,USB-C Charging Cable,1,11.95,05/02/19 07:48,"476 Johnson St, Dallas, TX 75001" +198093,USB-C Charging Cable,1,11.95,05/11/19 14:05,"708 Lakeview St, Seattle, WA 98101" +198094,AAA Batteries (4-pack),1,2.99,05/27/19 14:23,"688 Meadow St, San Francisco, CA 94016" +198095,Flatscreen TV,1,300,05/20/19 23:41,"914 Willow St, Atlanta, GA 30301" +198096,Bose SoundSport Headphones,1,99.99,05/09/19 13:21,"361 Maple St, New York City, NY 10001" +198097,iPhone,1,700,05/16/19 17:07,"50 1st St, New York City, NY 10001" +198098,AA Batteries (4-pack),2,3.84,05/25/19 16:02,"852 Willow St, Los Angeles, CA 90001" +198099,iPhone,1,700,05/04/19 12:55,"233 South St, San Francisco, CA 94016" +198100,Bose SoundSport Headphones,1,99.99,05/19/19 20:47,"897 Wilson St, Austin, TX 73301" +198101,USB-C Charging Cable,2,11.95,05/05/19 12:22,"482 2nd St, Seattle, WA 98101" +198102,AA Batteries (4-pack),1,3.84,05/08/19 12:16,"202 5th St, New York City, NY 10001" +198103,20in Monitor,1,109.99,05/16/19 22:06,"463 North St, San Francisco, CA 94016" +198104,34in Ultrawide Monitor,1,379.99,05/29/19 21:01,"381 4th St, San Francisco, CA 94016" +198105,Flatscreen TV,1,300,05/05/19 10:07,"607 South St, Dallas, TX 75001" +198106,USB-C Charging Cable,1,11.95,05/18/19 15:53,"245 Sunset St, Boston, MA 02215" +198107,27in 4K Gaming Monitor,1,389.99,05/17/19 10:55,"337 5th St, Los Angeles, CA 90001" +198108,Wired Headphones,1,11.99,05/15/19 18:32,"543 Sunset St, Los Angeles, CA 90001" +198109,Wired Headphones,1,11.99,05/14/19 21:54,"359 Madison St, San Francisco, CA 94016" +198110,AA Batteries (4-pack),2,3.84,05/25/19 14:30,"272 Johnson St, Austin, TX 73301" +198111,AAA Batteries (4-pack),1,2.99,05/22/19 12:06,"747 Jefferson St, Seattle, WA 98101" +198112,34in Ultrawide Monitor,1,379.99,05/23/19 13:12,"810 Ridge St, Seattle, WA 98101" +198113,27in FHD Monitor,1,149.99,05/18/19 21:50,"163 Lake St, Atlanta, GA 30301" +198114,AA Batteries (4-pack),2,3.84,05/06/19 08:00,"136 Lake St, New York City, NY 10001" +198115,AA Batteries (4-pack),1,3.84,05/10/19 06:58,"153 Jackson St, Boston, MA 02215" +198116,20in Monitor,1,109.99,05/04/19 17:32,"298 4th St, San Francisco, CA 94016" +198117,USB-C Charging Cable,1,11.95,05/31/19 14:14,"137 Hickory St, San Francisco, CA 94016" +198118,AA Batteries (4-pack),1,3.84,05/13/19 21:51,"798 Willow St, Portland, OR 97035" +198119,Bose SoundSport Headphones,1,99.99,05/21/19 18:37,"911 Ridge St, Austin, TX 73301" +198120,Macbook Pro Laptop,1,1700,05/23/19 09:46,"610 4th St, Atlanta, GA 30301" +198121,AAA Batteries (4-pack),1,2.99,05/27/19 10:57,"300 Ridge St, Los Angeles, CA 90001" +198121,Lightning Charging Cable,1,14.95,05/27/19 10:57,"300 Ridge St, Los Angeles, CA 90001" +198122,Lightning Charging Cable,2,14.95,05/28/19 22:54,"274 14th St, New York City, NY 10001" +198123,Flatscreen TV,1,300,05/21/19 18:27,"441 9th St, Portland, OR 97035" +198124,Apple Airpods Headphones,1,150,05/01/19 15:18,"208 Forest St, San Francisco, CA 94016" +198125,AA Batteries (4-pack),1,3.84,05/20/19 09:31,"875 10th St, Portland, OR 97035" +198126,Bose SoundSport Headphones,1,99.99,05/03/19 11:41,"342 4th St, Los Angeles, CA 90001" +198127,Flatscreen TV,1,300,05/13/19 16:27,"458 8th St, Boston, MA 02215" +198128,Google Phone,1,600,05/04/19 22:26,"340 Cherry St, Seattle, WA 98101" +198129,27in FHD Monitor,1,149.99,05/27/19 12:17,"15 Church St, New York City, NY 10001" +198130,AA Batteries (4-pack),1,3.84,05/13/19 11:21,"974 Cedar St, Austin, TX 73301" +198131,27in 4K Gaming Monitor,1,389.99,05/23/19 00:13,"722 5th St, Atlanta, GA 30301" +198131,AA Batteries (4-pack),1,3.84,05/23/19 00:13,"722 5th St, Atlanta, GA 30301" +198132,AAA Batteries (4-pack),1,2.99,05/02/19 15:53,"61 7th St, Austin, TX 73301" +198133,27in FHD Monitor,1,149.99,05/05/19 11:18,"356 5th St, San Francisco, CA 94016" +198134,AA Batteries (4-pack),1,3.84,05/20/19 18:30,"117 South St, Seattle, WA 98101" +198135,ThinkPad Laptop,1,999.99,05/17/19 16:52,"5 Meadow St, Los Angeles, CA 90001" +198136,Macbook Pro Laptop,1,1700,05/20/19 19:45,"397 8th St, New York City, NY 10001" +198137,27in FHD Monitor,1,149.99,05/12/19 18:20,"480 Park St, Atlanta, GA 30301" +198138,ThinkPad Laptop,1,999.99,05/21/19 18:51,"39 Church St, Los Angeles, CA 90001" +198139,USB-C Charging Cable,3,11.95,05/07/19 22:38,"835 Meadow St, Portland, OR 97035" +198140,Apple Airpods Headphones,1,150,05/17/19 15:03,"674 5th St, Los Angeles, CA 90001" +198141,Google Phone,1,600,05/22/19 17:24,"856 5th St, New York City, NY 10001" +198141,USB-C Charging Cable,1,11.95,05/22/19 17:24,"856 5th St, New York City, NY 10001" +198142,Macbook Pro Laptop,1,1700,05/18/19 01:17,"110 Willow St, New York City, NY 10001" +198143,AAA Batteries (4-pack),1,2.99,05/17/19 12:41,"660 1st St, New York City, NY 10001" +198144,Wired Headphones,1,11.99,05/27/19 08:27,"718 Washington St, San Francisco, CA 94016" +198145,ThinkPad Laptop,1,999.99,05/11/19 22:36,"592 8th St, Portland, OR 97035" +198146,Lightning Charging Cable,1,14.95,05/06/19 18:10,"425 8th St, Boston, MA 02215" +198147,AAA Batteries (4-pack),2,2.99,05/28/19 09:38,"556 13th St, San Francisco, CA 94016" +198148,Wired Headphones,1,11.99,05/20/19 18:16,"93 Hill St, Dallas, TX 75001" +198149,34in Ultrawide Monitor,1,379.99,05/25/19 21:34,"354 River St, Los Angeles, CA 90001" +198150,27in 4K Gaming Monitor,1,389.99,05/28/19 23:51,"220 Madison St, Portland, OR 97035" +198151,Apple Airpods Headphones,1,150,05/01/19 10:09,"728 Park St, Los Angeles, CA 90001" +198152,Apple Airpods Headphones,1,150,05/09/19 18:50,"770 9th St, Portland, OR 97035" +198153,Apple Airpods Headphones,1,150,05/02/19 18:43,"758 Meadow St, Los Angeles, CA 90001" +198154,27in FHD Monitor,1,149.99,05/01/19 14:23,"565 1st St, Atlanta, GA 30301" +198155,Apple Airpods Headphones,1,150,05/03/19 08:07,"116 Cedar St, Dallas, TX 75001" +198156,Bose SoundSport Headphones,1,99.99,05/30/19 14:57,"329 Main St, Seattle, WA 98101" +198157,27in 4K Gaming Monitor,1,389.99,05/17/19 15:00,"440 Hill St, Los Angeles, CA 90001" +198158,AA Batteries (4-pack),1,3.84,05/27/19 15:01,"585 4th St, Seattle, WA 98101" +198159,USB-C Charging Cable,1,11.95,05/29/19 20:29,"88 South St, Los Angeles, CA 90001" +198160,AAA Batteries (4-pack),1,2.99,05/08/19 17:55,"982 Park St, Portland, OR 97035" +198161,Bose SoundSport Headphones,1,99.99,05/19/19 08:45,"579 River St, San Francisco, CA 94016" +198162,Apple Airpods Headphones,1,150,05/09/19 23:34,"996 Hill St, Seattle, WA 98101" +198162,Lightning Charging Cable,1,14.95,05/09/19 23:34,"996 Hill St, Seattle, WA 98101" +198163,Wired Headphones,1,11.99,05/02/19 08:47,"40 1st St, Dallas, TX 75001" +198163,Apple Airpods Headphones,1,150,05/02/19 08:47,"40 1st St, Dallas, TX 75001" +198164,AAA Batteries (4-pack),1,2.99,05/17/19 15:30,"210 Willow St, Seattle, WA 98101" +198165,AAA Batteries (4-pack),2,2.99,05/19/19 13:41,"156 Lake St, San Francisco, CA 94016" +198166,34in Ultrawide Monitor,1,379.99,05/08/19 00:36,"526 North St, Boston, MA 02215" +198167,27in 4K Gaming Monitor,1,389.99,05/07/19 21:00,"960 Pine St, Seattle, WA 98101" +198168,Wired Headphones,1,11.99,05/13/19 16:27,"247 8th St, New York City, NY 10001" +198169,ThinkPad Laptop,1,999.99,05/28/19 17:37,"978 6th St, San Francisco, CA 94016" +198170,Bose SoundSport Headphones,1,99.99,05/17/19 09:04,"191 Spruce St, Los Angeles, CA 90001" +198171,Apple Airpods Headphones,1,150,05/14/19 17:12,"985 11th St, Los Angeles, CA 90001" +198172,AAA Batteries (4-pack),1,2.99,05/31/19 12:06,"542 Sunset St, Los Angeles, CA 90001" +198173,Lightning Charging Cable,2,14.95,05/14/19 01:06,"370 Park St, Boston, MA 02215" +198174,34in Ultrawide Monitor,1,379.99,05/17/19 22:56,"480 8th St, Dallas, TX 75001" +198175,USB-C Charging Cable,1,11.95,05/31/19 23:23,"282 Cherry St, Atlanta, GA 30301" +198176,Lightning Charging Cable,1,14.95,05/27/19 22:07,"76 10th St, Atlanta, GA 30301" +198177,USB-C Charging Cable,1,11.95,05/14/19 07:20,"568 Center St, New York City, NY 10001" +198178,Apple Airpods Headphones,1,150,05/11/19 22:34,"812 2nd St, Los Angeles, CA 90001" +198179,Apple Airpods Headphones,1,150,05/22/19 18:26,"6 2nd St, Portland, OR 97035" +198180,AAA Batteries (4-pack),2,2.99,05/04/19 22:02,"885 Meadow St, New York City, NY 10001" +198181,27in 4K Gaming Monitor,1,389.99,05/14/19 10:03,"455 Forest St, San Francisco, CA 94016" +198182,ThinkPad Laptop,1,999.99,05/01/19 08:11,"820 Hickory St, Portland, OR 97035" +198183,34in Ultrawide Monitor,1,379.99,05/09/19 10:06,"768 Hill St, San Francisco, CA 94016" +198184,27in FHD Monitor,1,149.99,05/25/19 20:18,"272 7th St, San Francisco, CA 94016" +198185,LG Dryer,1,600.0,05/11/19 08:10,"474 River St, New York City, NY 10001" +198186,USB-C Charging Cable,1,11.95,05/24/19 11:43,"468 Jackson St, Seattle, WA 98101" +198187,Wired Headphones,1,11.99,05/20/19 10:23,"598 Chestnut St, San Francisco, CA 94016" +198188,Google Phone,1,600,05/15/19 16:41,"141 Jackson St, Boston, MA 02215" +198189,AAA Batteries (4-pack),1,2.99,05/25/19 14:58,"966 Hill St, San Francisco, CA 94016" +198190,Google Phone,1,600,05/20/19 10:59,"247 Maple St, Portland, OR 97035" +198191,USB-C Charging Cable,1,11.95,05/15/19 18:53,"751 Adams St, San Francisco, CA 94016" +198192,Lightning Charging Cable,1,14.95,05/12/19 18:53,"700 North St, New York City, NY 10001" +198193,34in Ultrawide Monitor,1,379.99,05/29/19 07:05,"579 Pine St, Dallas, TX 75001" +198194,Lightning Charging Cable,1,14.95,05/04/19 10:41,"400 8th St, Boston, MA 02215" +198195,AA Batteries (4-pack),1,3.84,05/14/19 19:22,"347 9th St, San Francisco, CA 94016" +198196,Bose SoundSport Headphones,1,99.99,05/24/19 08:05,"736 8th St, San Francisco, CA 94016" +198197,AAA Batteries (4-pack),1,2.99,05/15/19 07:04,"331 13th St, Los Angeles, CA 90001" +198198,USB-C Charging Cable,1,11.95,05/30/19 16:57,"130 6th St, San Francisco, CA 94016" +198199,27in FHD Monitor,1,149.99,05/22/19 20:49,"427 Forest St, New York City, NY 10001" +198200,27in FHD Monitor,1,149.99,05/02/19 06:22,"98 Maple St, San Francisco, CA 94016" +198201,27in FHD Monitor,1,149.99,05/27/19 19:12,"379 Forest St, Boston, MA 02215" +198202,27in FHD Monitor,1,149.99,05/23/19 20:54,"14 Highland St, Atlanta, GA 30301" +198203,27in FHD Monitor,1,149.99,05/23/19 12:15,"437 Adams St, Atlanta, GA 30301" +198204,USB-C Charging Cable,1,11.95,05/21/19 19:53,"883 Jefferson St, San Francisco, CA 94016" +198205,Flatscreen TV,1,300,05/14/19 13:41,"750 Madison St, Atlanta, GA 30301" +198206,Apple Airpods Headphones,1,150,05/05/19 09:20,"536 Hickory St, Seattle, WA 98101" +198207,Lightning Charging Cable,1,14.95,05/17/19 10:19,"350 8th St, New York City, NY 10001" +198208,34in Ultrawide Monitor,2,379.99,05/23/19 08:11,"913 Dogwood St, New York City, NY 10001" +198209,20in Monitor,1,109.99,05/25/19 22:04,"430 Ridge St, Los Angeles, CA 90001" +198210,AA Batteries (4-pack),1,3.84,05/12/19 20:41,"645 Hill St, Los Angeles, CA 90001" +198211,AA Batteries (4-pack),2,3.84,05/09/19 15:18,"161 9th St, Los Angeles, CA 90001" +198212,Wired Headphones,1,11.99,05/25/19 12:53,"566 Cherry St, Atlanta, GA 30301" +198213,AA Batteries (4-pack),2,3.84,05/15/19 15:59,"189 1st St, Portland, ME 04101" +198214,ThinkPad Laptop,1,999.99,05/11/19 18:55,"493 5th St, New York City, NY 10001" +198215,AA Batteries (4-pack),1,3.84,05/06/19 10:42,"104 7th St, Atlanta, GA 30301" +198216,27in 4K Gaming Monitor,1,389.99,05/27/19 13:10,"817 Lincoln St, Seattle, WA 98101" +198217,Lightning Charging Cable,1,14.95,05/18/19 17:49,"750 Lakeview St, Atlanta, GA 30301" +198218,AA Batteries (4-pack),1,3.84,05/10/19 23:25,"5 Church St, San Francisco, CA 94016" +198219,AAA Batteries (4-pack),1,2.99,05/18/19 12:37,"976 Hickory St, Dallas, TX 75001" +198220,Wired Headphones,1,11.99,05/25/19 15:23,"113 Hickory St, Dallas, TX 75001" +198221,Wired Headphones,1,11.99,05/28/19 21:49,"718 7th St, New York City, NY 10001" +198222,Lightning Charging Cable,1,14.95,05/12/19 11:01,"463 Center St, San Francisco, CA 94016" +198223,USB-C Charging Cable,1,11.95,05/31/19 22:50,"17 Jefferson St, Seattle, WA 98101" +198224,Apple Airpods Headphones,1,150,05/12/19 13:38,"465 Adams St, Boston, MA 02215" +198225,AAA Batteries (4-pack),1,2.99,05/29/19 22:22,"973 13th St, Atlanta, GA 30301" +198226,Bose SoundSport Headphones,1,99.99,05/29/19 13:24,"851 Center St, Los Angeles, CA 90001" +198227,Lightning Charging Cable,1,14.95,05/30/19 17:14,"177 Jackson St, Portland, OR 97035" +198228,AA Batteries (4-pack),1,3.84,05/14/19 19:29,"369 Sunset St, Los Angeles, CA 90001" +198229,AAA Batteries (4-pack),3,2.99,05/19/19 17:12,"421 Cherry St, San Francisco, CA 94016" +198230,AA Batteries (4-pack),1,3.84,05/12/19 09:45,"73 Jefferson St, Dallas, TX 75001" +198231,Wired Headphones,1,11.99,05/29/19 12:07,"306 6th St, Boston, MA 02215" +198232,Apple Airpods Headphones,1,150,05/24/19 12:33,"253 Lakeview St, Boston, MA 02215" +198233,27in 4K Gaming Monitor,1,389.99,05/16/19 16:40,"698 Church St, Atlanta, GA 30301" +198234,Wired Headphones,1,11.99,05/27/19 20:10,"432 Jefferson St, Austin, TX 73301" +198235,Lightning Charging Cable,1,14.95,05/11/19 19:18,"887 Main St, Los Angeles, CA 90001" +198236,Wired Headphones,1,11.99,05/11/19 19:59,"774 Spruce St, Boston, MA 02215" +198237,USB-C Charging Cable,1,11.95,05/25/19 23:02,"29 5th St, Boston, MA 02215" +198238,Bose SoundSport Headphones,1,99.99,05/31/19 21:57,"182 14th St, San Francisco, CA 94016" +198239,Wired Headphones,1,11.99,05/10/19 17:31,"122 5th St, New York City, NY 10001" +198240,27in FHD Monitor,1,149.99,05/13/19 23:47,"140 Jackson St, New York City, NY 10001" +198241,Google Phone,1,600,05/07/19 13:22,"959 Hickory St, Seattle, WA 98101" +198242,iPhone,1,700,05/22/19 10:47,"883 Lake St, San Francisco, CA 94016" +198243,AA Batteries (4-pack),1,3.84,05/11/19 18:44,"92 Adams St, San Francisco, CA 94016" +,,,,, +198244,Macbook Pro Laptop,1,1700,05/04/19 19:46,"476 1st St, Los Angeles, CA 90001" +198245,USB-C Charging Cable,1,11.95,05/01/19 08:36,"853 Pine St, Portland, OR 97035" +198246,Apple Airpods Headphones,1,150,05/05/19 19:37,"476 South St, Portland, OR 97035" +198247,AAA Batteries (4-pack),1,2.99,05/22/19 10:14,"911 Sunset St, Austin, TX 73301" +198248,34in Ultrawide Monitor,1,379.99,05/10/19 12:14,"430 2nd St, San Francisco, CA 94016" +198249,Bose SoundSport Headphones,1,99.99,05/01/19 20:03,"311 Center St, Dallas, TX 75001" +198250,34in Ultrawide Monitor,1,379.99,05/27/19 08:20,"987 Madison St, New York City, NY 10001" +198251,USB-C Charging Cable,2,11.95,05/06/19 18:38,"347 Forest St, San Francisco, CA 94016" +198252,Bose SoundSport Headphones,1,99.99,05/28/19 23:47,"741 Hill St, Boston, MA 02215" +198253,Lightning Charging Cable,1,14.95,05/25/19 22:10,"487 Forest St, Seattle, WA 98101" +198254,AA Batteries (4-pack),1,3.84,05/13/19 19:38,"862 Pine St, New York City, NY 10001" +198255,Lightning Charging Cable,1,14.95,05/25/19 00:08,"643 Madison St, New York City, NY 10001" +198256,AA Batteries (4-pack),1,3.84,05/07/19 20:18,"791 Elm St, San Francisco, CA 94016" +198257,USB-C Charging Cable,1,11.95,05/08/19 11:31,"266 Cherry St, Portland, OR 97035" +198258,Lightning Charging Cable,1,14.95,05/25/19 19:07,"146 Main St, San Francisco, CA 94016" +198259,AA Batteries (4-pack),1,3.84,05/20/19 14:00,"623 6th St, San Francisco, CA 94016" +198260,AA Batteries (4-pack),1,3.84,05/24/19 12:38,"227 South St, Seattle, WA 98101" +198261,AAA Batteries (4-pack),1,2.99,05/08/19 13:29,"159 Meadow St, Dallas, TX 75001" +198262,Wired Headphones,1,11.99,05/07/19 22:06,"999 Sunset St, New York City, NY 10001" +198263,Bose SoundSport Headphones,1,99.99,05/18/19 14:29,"629 Lake St, San Francisco, CA 94016" +198264,Lightning Charging Cable,1,14.95,05/08/19 19:51,"365 Jefferson St, Atlanta, GA 30301" +198265,iPhone,1,700,05/05/19 16:56,"994 Hill St, Los Angeles, CA 90001" +198266,Wired Headphones,1,11.99,05/25/19 14:37,"844 Highland St, Portland, OR 97035" +198267,Macbook Pro Laptop,1,1700,05/26/19 19:13,"341 Cedar St, Dallas, TX 75001" +198268,USB-C Charging Cable,2,11.95,05/10/19 19:33,"710 Jefferson St, Seattle, WA 98101" +198269,AAA Batteries (4-pack),2,2.99,05/14/19 20:44,"168 North St, New York City, NY 10001" +198270,Wired Headphones,1,11.99,05/27/19 18:08,"803 Hickory St, San Francisco, CA 94016" +198271,USB-C Charging Cable,1,11.95,05/29/19 21:06,"24 Spruce St, Austin, TX 73301" +198272,27in 4K Gaming Monitor,1,389.99,05/23/19 08:44,"44 Center St, Los Angeles, CA 90001" +198273,Vareebadd Phone,1,400,05/16/19 10:49,"503 Lincoln St, New York City, NY 10001" +198273,Bose SoundSport Headphones,1,99.99,05/16/19 10:49,"503 Lincoln St, New York City, NY 10001" +198274,AAA Batteries (4-pack),6,2.99,05/19/19 19:21,"914 9th St, San Francisco, CA 94016" +198275,Bose SoundSport Headphones,1,99.99,05/15/19 17:41,"985 10th St, Boston, MA 02215" +198276,Apple Airpods Headphones,1,150,05/17/19 10:09,"6 Spruce St, Dallas, TX 75001" +198277,34in Ultrawide Monitor,1,379.99,05/24/19 08:55,"211 1st St, Boston, MA 02215" +198278,Lightning Charging Cable,1,14.95,05/01/19 17:26,"345 Jackson St, New York City, NY 10001" +198279,USB-C Charging Cable,1,11.95,05/11/19 11:31,"782 Pine St, San Francisco, CA 94016" +198280,Apple Airpods Headphones,1,150,05/07/19 15:23,"911 Main St, Atlanta, GA 30301" +198281,Flatscreen TV,1,300,05/20/19 11:04,"333 Park St, Los Angeles, CA 90001" +198282,Lightning Charging Cable,2,14.95,05/28/19 23:39,"243 Walnut St, San Francisco, CA 94016" +198283,ThinkPad Laptop,1,999.99,05/18/19 12:33,"211 Jackson St, Seattle, WA 98101" +198284,Bose SoundSport Headphones,1,99.99,05/19/19 11:26,"892 Lakeview St, Los Angeles, CA 90001" +198285,AA Batteries (4-pack),1,3.84,05/08/19 17:46,"900 2nd St, Boston, MA 02215" +198286,USB-C Charging Cable,1,11.95,05/09/19 13:07,"569 Walnut St, San Francisco, CA 94016" +198287,USB-C Charging Cable,1,11.95,05/31/19 13:18,"820 7th St, Boston, MA 02215" +198288,34in Ultrawide Monitor,1,379.99,05/24/19 17:20,"117 Maple St, Austin, TX 73301" +198289,AA Batteries (4-pack),1,3.84,05/14/19 12:00,"620 Jackson St, San Francisco, CA 94016" +198290,20in Monitor,1,109.99,05/13/19 22:28,"103 Meadow St, Portland, OR 97035" +198291,AAA Batteries (4-pack),1,2.99,05/21/19 13:12,"784 13th St, Seattle, WA 98101" +198292,27in 4K Gaming Monitor,1,389.99,05/17/19 08:37,"439 Pine St, New York City, NY 10001" +198293,USB-C Charging Cable,1,11.95,05/18/19 16:42,"556 12th St, Los Angeles, CA 90001" +198294,27in FHD Monitor,1,149.99,05/03/19 23:48,"589 Lakeview St, New York City, NY 10001" +198295,Lightning Charging Cable,1,14.95,05/20/19 13:29,"721 Chestnut St, Los Angeles, CA 90001" +198296,USB-C Charging Cable,1,11.95,05/05/19 19:24,"452 1st St, Portland, OR 97035" +198297,Wired Headphones,1,11.99,05/07/19 10:56,"391 8th St, Austin, TX 73301" +198298,27in FHD Monitor,1,149.99,05/23/19 23:42,"624 Maple St, Atlanta, GA 30301" +198299,20in Monitor,1,109.99,05/12/19 19:44,"705 North St, Los Angeles, CA 90001" +198300,Apple Airpods Headphones,1,150,05/06/19 16:04,"337 2nd St, San Francisco, CA 94016" +198301,Wired Headphones,3,11.99,05/03/19 16:45,"337 Lincoln St, Portland, OR 97035" +198302,Apple Airpods Headphones,1,150,05/30/19 17:51,"138 North St, Dallas, TX 75001" +198303,27in 4K Gaming Monitor,1,389.99,05/18/19 19:36,"842 6th St, Boston, MA 02215" +198304,AAA Batteries (4-pack),1,2.99,05/03/19 20:26,"511 11th St, New York City, NY 10001" +198305,AA Batteries (4-pack),1,3.84,05/07/19 05:39,"191 Forest St, Dallas, TX 75001" +198306,USB-C Charging Cable,1,11.95,05/16/19 15:33,"406 Main St, San Francisco, CA 94016" +198307,34in Ultrawide Monitor,1,379.99,05/18/19 21:28,"693 Maple St, Portland, OR 97035" +198308,Flatscreen TV,1,300,05/20/19 17:45,"262 South St, San Francisco, CA 94016" +198309,Apple Airpods Headphones,1,150,05/16/19 21:02,"168 Lincoln St, Dallas, TX 75001" +198310,Wired Headphones,1,11.99,05/19/19 01:25,"569 11th St, San Francisco, CA 94016" +198311,Apple Airpods Headphones,1,150,05/31/19 17:02,"330 9th St, Los Angeles, CA 90001" +198312,Bose SoundSport Headphones,1,99.99,05/07/19 18:29,"687 Adams St, Dallas, TX 75001" +198313,Macbook Pro Laptop,1,1700,05/18/19 18:17,"331 Hill St, Austin, TX 73301" +198314,AAA Batteries (4-pack),3,2.99,05/23/19 18:16,"939 Forest St, Seattle, WA 98101" +198315,Wired Headphones,1,11.99,05/06/19 14:52,"820 Walnut St, Los Angeles, CA 90001" +198316,USB-C Charging Cable,1,11.95,05/03/19 19:23,"986 Johnson St, Austin, TX 73301" +198317,27in FHD Monitor,1,149.99,05/22/19 12:23,"194 Hill St, San Francisco, CA 94016" +198318,AA Batteries (4-pack),1,3.84,05/22/19 16:08,"337 Jackson St, Atlanta, GA 30301" +198319,Wired Headphones,1,11.99,05/27/19 17:48,"538 Pine St, Seattle, WA 98101" +198320,Lightning Charging Cable,1,14.95,05/24/19 15:28,"338 Walnut St, Dallas, TX 75001" +198321,Lightning Charging Cable,1,14.95,05/26/19 18:23,"114 1st St, San Francisco, CA 94016" +198322,AA Batteries (4-pack),1,3.84,05/02/19 19:48,"439 Lakeview St, New York City, NY 10001" +198322,USB-C Charging Cable,1,11.95,05/02/19 19:48,"439 Lakeview St, New York City, NY 10001" +198323,AA Batteries (4-pack),3,3.84,05/04/19 17:18,"949 Johnson St, Los Angeles, CA 90001" +198324,AAA Batteries (4-pack),1,2.99,05/03/19 10:11,"472 2nd St, Dallas, TX 75001" +198325,27in FHD Monitor,1,149.99,05/09/19 00:17,"861 Johnson St, Austin, TX 73301" +198326,Lightning Charging Cable,1,14.95,05/18/19 10:29,"983 5th St, New York City, NY 10001" +198327,AA Batteries (4-pack),2,3.84,05/20/19 18:14,"224 1st St, New York City, NY 10001" +198328,Wired Headphones,1,11.99,05/31/19 11:12,"808 Lincoln St, Los Angeles, CA 90001" +198329,27in FHD Monitor,1,149.99,05/16/19 08:45,"824 Forest St, Dallas, TX 75001" +198330,Wired Headphones,1,11.99,05/29/19 08:09,"444 Lakeview St, Austin, TX 73301" +198331,AA Batteries (4-pack),1,3.84,05/09/19 21:20,"176 13th St, San Francisco, CA 94016" +198332,Google Phone,1,600,05/11/19 06:00,"891 Walnut St, Los Angeles, CA 90001" +198333,Wired Headphones,1,11.99,05/25/19 14:36,"20 Chestnut St, San Francisco, CA 94016" +198334,Lightning Charging Cable,1,14.95,05/30/19 21:43,"879 Lincoln St, San Francisco, CA 94016" +198335,Apple Airpods Headphones,1,150,05/10/19 20:29,"251 Cedar St, San Francisco, CA 94016" +198336,27in 4K Gaming Monitor,1,389.99,05/13/19 08:06,"502 Ridge St, Atlanta, GA 30301" +198337,Wired Headphones,1,11.99,05/17/19 12:31,"236 9th St, Atlanta, GA 30301" +198338,Apple Airpods Headphones,1,150,05/07/19 16:16,"477 Center St, San Francisco, CA 94016" +198339,Lightning Charging Cable,1,14.95,05/01/19 13:31,"582 Ridge St, New York City, NY 10001" +198340,Macbook Pro Laptop,1,1700,05/10/19 12:09,"855 Johnson St, Los Angeles, CA 90001" +198341,Lightning Charging Cable,2,14.95,05/21/19 11:15,"297 Maple St, Boston, MA 02215" +198342,34in Ultrawide Monitor,1,379.99,05/28/19 11:01,"374 Jefferson St, San Francisco, CA 94016" +198343,iPhone,1,700,05/18/19 12:51,"700 Maple St, Boston, MA 02215" +198344,Google Phone,1,600,05/10/19 14:36,"115 North St, Los Angeles, CA 90001" +198345,AA Batteries (4-pack),2,3.84,05/24/19 15:35,"536 North St, San Francisco, CA 94016" +198346,Google Phone,1,600,05/10/19 16:36,"375 Wilson St, Boston, MA 02215" +198347,Wired Headphones,1,11.99,05/25/19 15:39,"740 Spruce St, Austin, TX 73301" +198348,27in FHD Monitor,1,149.99,05/04/19 09:25,"621 Highland St, San Francisco, CA 94016" +198349,USB-C Charging Cable,1,11.95,05/05/19 21:22,"683 Ridge St, Dallas, TX 75001" +198350,Google Phone,1,600,05/15/19 20:00,"969 Adams St, Seattle, WA 98101" +198351,AAA Batteries (4-pack),1,2.99,05/07/19 11:47,"645 Spruce St, Boston, MA 02215" +198352,iPhone,1,700,05/03/19 08:17,"669 Hickory St, Boston, MA 02215" +198353,Wired Headphones,1,11.99,05/02/19 00:00,"82 Lakeview St, Seattle, WA 98101" +198354,AA Batteries (4-pack),2,3.84,05/07/19 14:42,"367 6th St, New York City, NY 10001" +198355,Wired Headphones,1,11.99,05/27/19 12:33,"421 Hickory St, Seattle, WA 98101" +198356,AAA Batteries (4-pack),3,2.99,05/03/19 09:54,"785 Church St, San Francisco, CA 94016" +198357,AA Batteries (4-pack),1,3.84,05/21/19 14:43,"570 Sunset St, Seattle, WA 98101" +198358,USB-C Charging Cable,1,11.95,05/17/19 06:27,"597 Washington St, Boston, MA 02215" +198359,Google Phone,1,600,05/22/19 21:08,"198 Washington St, Boston, MA 02215" +198360,Apple Airpods Headphones,1,150,05/14/19 19:22,"495 Pine St, Portland, OR 97035" +198361,AA Batteries (4-pack),1,3.84,05/06/19 18:40,"119 Center St, New York City, NY 10001" +198362,Bose SoundSport Headphones,1,99.99,05/27/19 23:16,"468 12th St, Los Angeles, CA 90001" +198363,AAA Batteries (4-pack),1,2.99,05/18/19 18:03,"845 Main St, Boston, MA 02215" +198364,ThinkPad Laptop,1,999.99,05/16/19 16:19,"128 13th St, Seattle, WA 98101" +198365,34in Ultrawide Monitor,1,379.99,05/06/19 13:22,"331 Jackson St, Portland, OR 97035" +198366,Bose SoundSport Headphones,1,99.99,05/09/19 13:56,"224 Jackson St, Seattle, WA 98101" +198367,AA Batteries (4-pack),2,3.84,05/14/19 21:03,"618 Pine St, Atlanta, GA 30301" +198368,AA Batteries (4-pack),1,3.84,05/08/19 19:45,"14 Wilson St, San Francisco, CA 94016" +198369,Bose SoundSport Headphones,1,99.99,05/16/19 14:29,"202 Cherry St, San Francisco, CA 94016" +198370,AA Batteries (4-pack),1,3.84,05/15/19 20:32,"838 6th St, Atlanta, GA 30301" +198371,iPhone,1,700,05/26/19 22:21,"723 Lake St, Los Angeles, CA 90001" +198371,Lightning Charging Cable,1,14.95,05/26/19 22:21,"723 Lake St, Los Angeles, CA 90001" +198372,Bose SoundSport Headphones,1,99.99,05/13/19 16:53,"520 Main St, Boston, MA 02215" +198373,iPhone,1,700,05/10/19 07:48,"229 Hill St, Los Angeles, CA 90001" +198374,AAA Batteries (4-pack),2,2.99,05/03/19 22:37,"601 Spruce St, Dallas, TX 75001" +198375,Bose SoundSport Headphones,1,99.99,05/20/19 12:53,"383 11th St, New York City, NY 10001" +198376,USB-C Charging Cable,1,11.95,05/19/19 10:28,"70 8th St, San Francisco, CA 94016" +198377,Lightning Charging Cable,1,14.95,05/31/19 18:54,"791 7th St, Los Angeles, CA 90001" +198378,USB-C Charging Cable,1,11.95,05/13/19 20:14,"710 Main St, Portland, OR 97035" +198379,USB-C Charging Cable,1,11.95,05/16/19 21:43,"562 10th St, San Francisco, CA 94016" +198380,Lightning Charging Cable,1,14.95,05/02/19 11:41,"940 7th St, San Francisco, CA 94016" +198381,Bose SoundSport Headphones,1,99.99,05/27/19 13:04,"898 5th St, Dallas, TX 75001" +198382,Wired Headphones,1,11.99,05/24/19 10:54,"152 Pine St, Seattle, WA 98101" +198383,Wired Headphones,1,11.99,05/18/19 13:45,"411 Hill St, San Francisco, CA 94016" +198384,Lightning Charging Cable,1,14.95,05/13/19 16:18,"547 Lakeview St, New York City, NY 10001" +198385,Apple Airpods Headphones,1,150,05/26/19 10:36,"56 Dogwood St, Atlanta, GA 30301" +198386,34in Ultrawide Monitor,1,379.99,05/22/19 18:53,"360 Johnson St, San Francisco, CA 94016" +198387,Wired Headphones,1,11.99,05/18/19 05:30,"149 Spruce St, Atlanta, GA 30301" +198388,Wired Headphones,1,11.99,05/21/19 13:53,"917 4th St, Portland, OR 97035" +198389,Apple Airpods Headphones,1,150,05/13/19 20:29,"986 Jackson St, Portland, OR 97035" +198390,LG Washing Machine,1,600.0,05/14/19 16:26,"415 Sunset St, Los Angeles, CA 90001" +198391,27in FHD Monitor,1,149.99,05/14/19 08:00,"247 Jackson St, Atlanta, GA 30301" +198392,Google Phone,1,600,05/18/19 02:33,"560 1st St, New York City, NY 10001" +198392,USB-C Charging Cable,1,11.95,05/18/19 02:33,"560 1st St, New York City, NY 10001" +198393,AA Batteries (4-pack),2,3.84,05/01/19 23:28,"785 Madison St, Los Angeles, CA 90001" +198394,ThinkPad Laptop,1,999.99,05/20/19 19:31,"157 Church St, Seattle, WA 98101" +198395,Wired Headphones,1,11.99,05/02/19 11:16,"470 Ridge St, New York City, NY 10001" +198396,AAA Batteries (4-pack),3,2.99,05/15/19 15:50,"848 Cherry St, Los Angeles, CA 90001" +198397,USB-C Charging Cable,1,11.95,05/16/19 05:06,"303 Adams St, Portland, OR 97035" +198398,ThinkPad Laptop,1,999.99,05/13/19 08:38,"224 Lincoln St, New York City, NY 10001" +198399,27in FHD Monitor,1,149.99,05/15/19 19:31,"477 12th St, Boston, MA 02215" +198400,Apple Airpods Headphones,1,150,05/11/19 13:27,"31 14th St, Los Angeles, CA 90001" +198401,AAA Batteries (4-pack),1,2.99,05/04/19 21:46,"778 Wilson St, Dallas, TX 75001" +198402,LG Washing Machine,1,600.0,05/09/19 16:41,"709 Church St, Dallas, TX 75001" +198403,Flatscreen TV,1,300,05/03/19 15:58,"960 Pine St, San Francisco, CA 94016" +198404,AA Batteries (4-pack),1,3.84,05/21/19 20:36,"624 Spruce St, Los Angeles, CA 90001" +198405,AA Batteries (4-pack),1,3.84,05/17/19 13:39,"470 Meadow St, Seattle, WA 98101" +198406,Apple Airpods Headphones,1,150,05/07/19 13:19,"520 Hill St, Austin, TX 73301" +198407,USB-C Charging Cable,2,11.95,05/10/19 13:12,"361 Meadow St, San Francisco, CA 94016" +198408,27in 4K Gaming Monitor,1,389.99,05/18/19 01:54,"857 8th St, Los Angeles, CA 90001" +198409,Bose SoundSport Headphones,1,99.99,05/26/19 18:34,"730 Jefferson St, Los Angeles, CA 90001" +198410,Wired Headphones,1,11.99,05/16/19 20:45,"173 6th St, San Francisco, CA 94016" +198411,27in FHD Monitor,1,149.99,05/13/19 19:52,"300 Forest St, Los Angeles, CA 90001" +198412,Vareebadd Phone,1,400,05/22/19 16:33,"866 4th St, Dallas, TX 75001" +198413,AAA Batteries (4-pack),2,2.99,05/16/19 18:08,"699 Cherry St, Boston, MA 02215" +198414,27in FHD Monitor,1,149.99,05/18/19 18:26,"567 Highland St, Austin, TX 73301" +198415,34in Ultrawide Monitor,1,379.99,05/08/19 16:12,"858 10th St, Atlanta, GA 30301" +198416,USB-C Charging Cable,1,11.95,05/10/19 14:27,"919 Lincoln St, Dallas, TX 75001" +198417,AA Batteries (4-pack),1,3.84,05/05/19 12:01,"286 Forest St, Atlanta, GA 30301" +198418,Bose SoundSport Headphones,1,99.99,05/07/19 20:52,"69 Hickory St, Los Angeles, CA 90001" +198419,AA Batteries (4-pack),1,3.84,05/17/19 09:17,"149 Forest St, Seattle, WA 98101" +198420,Lightning Charging Cable,1,14.95,05/17/19 23:55,"451 South St, New York City, NY 10001" +198421,Lightning Charging Cable,1,14.95,05/17/19 22:54,"597 Forest St, San Francisco, CA 94016" +198422,Lightning Charging Cable,1,14.95,05/12/19 11:56,"137 6th St, Boston, MA 02215" +198423,USB-C Charging Cable,1,11.95,05/24/19 20:15,"517 12th St, Los Angeles, CA 90001" +198424,ThinkPad Laptop,1,999.99,05/15/19 13:24,"750 Chestnut St, Los Angeles, CA 90001" +198425,USB-C Charging Cable,1,11.95,05/31/19 19:08,"405 Cedar St, Portland, OR 97035" +198426,20in Monitor,1,109.99,05/28/19 20:21,"322 Hickory St, San Francisco, CA 94016" +198427,Flatscreen TV,1,300,05/06/19 21:56,"186 Spruce St, Atlanta, GA 30301" +198428,Macbook Pro Laptop,1,1700,05/09/19 14:06,"967 Center St, Boston, MA 02215" +198429,Bose SoundSport Headphones,1,99.99,05/13/19 19:40,"834 Hill St, Dallas, TX 75001" +198430,Macbook Pro Laptop,1,1700,05/11/19 10:16,"278 Washington St, Los Angeles, CA 90001" +198431,Bose SoundSport Headphones,1,99.99,05/26/19 07:54,"318 9th St, Dallas, TX 75001" +198432,ThinkPad Laptop,1,999.99,05/12/19 06:00,"425 Cedar St, Los Angeles, CA 90001" +198433,USB-C Charging Cable,1,11.95,05/09/19 19:01,"15 Elm St, Boston, MA 02215" +198434,Bose SoundSport Headphones,1,99.99,05/11/19 12:00,"837 Hill St, San Francisco, CA 94016" +198435,27in FHD Monitor,1,149.99,05/20/19 07:43,"266 11th St, Seattle, WA 98101" +198436,Bose SoundSport Headphones,1,99.99,05/15/19 10:29,"961 Adams St, San Francisco, CA 94016" +198437,USB-C Charging Cable,1,11.95,05/13/19 13:27,"947 Park St, Atlanta, GA 30301" +198438,AA Batteries (4-pack),3,3.84,05/08/19 12:17,"923 Willow St, San Francisco, CA 94016" +198439,AA Batteries (4-pack),1,3.84,05/25/19 20:29,"205 Forest St, Seattle, WA 98101" +198440,AAA Batteries (4-pack),1,2.99,05/25/19 16:19,"338 Willow St, Portland, OR 97035" +198441,27in FHD Monitor,1,149.99,05/20/19 18:54,"556 Church St, Los Angeles, CA 90001" +198442,AAA Batteries (4-pack),3,2.99,05/09/19 12:19,"77 Center St, San Francisco, CA 94016" +198443,Bose SoundSport Headphones,1,99.99,05/23/19 12:29,"828 Cherry St, San Francisco, CA 94016" +198444,Wired Headphones,2,11.99,05/03/19 10:04,"183 Johnson St, Los Angeles, CA 90001" +198445,ThinkPad Laptop,1,999.99,05/09/19 11:53,"576 Main St, Seattle, WA 98101" +198446,ThinkPad Laptop,1,999.99,05/12/19 02:33,"583 7th St, San Francisco, CA 94016" +198447,Lightning Charging Cable,1,14.95,05/07/19 19:53,"34 Lakeview St, Los Angeles, CA 90001" +198448,Vareebadd Phone,1,400,05/24/19 18:40,"266 9th St, Los Angeles, CA 90001" +198449,AA Batteries (4-pack),1,3.84,05/22/19 10:57,"940 Chestnut St, Boston, MA 02215" +198450,AA Batteries (4-pack),1,3.84,05/20/19 12:41,"386 7th St, Los Angeles, CA 90001" +198451,Lightning Charging Cable,1,14.95,05/06/19 19:57,"14 10th St, Atlanta, GA 30301" +198452,Flatscreen TV,1,300,05/10/19 16:07,"105 Pine St, Austin, TX 73301" +198453,USB-C Charging Cable,1,11.95,05/25/19 22:11,"700 Adams St, Los Angeles, CA 90001" +198454,Apple Airpods Headphones,1,150,05/19/19 13:30,"284 4th St, New York City, NY 10001" +198455,iPhone,1,700,05/21/19 12:34,"204 Cherry St, New York City, NY 10001" +198456,Google Phone,1,600,05/26/19 10:56,"158 Forest St, New York City, NY 10001" +198456,USB-C Charging Cable,1,11.95,05/26/19 10:56,"158 Forest St, New York City, NY 10001" +198457,Lightning Charging Cable,1,14.95,05/18/19 19:58,"953 Pine St, Seattle, WA 98101" +198458,34in Ultrawide Monitor,1,379.99,05/29/19 16:09,"175 13th St, New York City, NY 10001" +198459,20in Monitor,1,109.99,05/13/19 21:25,"710 8th St, San Francisco, CA 94016" +198460,Apple Airpods Headphones,1,150,05/13/19 17:51,"216 Cedar St, Los Angeles, CA 90001" +198461,Google Phone,1,600,05/08/19 18:00,"62 11th St, Dallas, TX 75001" +198462,AAA Batteries (4-pack),1,2.99,05/15/19 22:14,"812 Sunset St, New York City, NY 10001" +198463,Apple Airpods Headphones,1,150,05/19/19 13:43,"926 Sunset St, New York City, NY 10001" +198464,AAA Batteries (4-pack),1,2.99,05/07/19 21:31,"518 4th St, Atlanta, GA 30301" +198465,AA Batteries (4-pack),2,3.84,05/02/19 17:25,"724 Walnut St, Los Angeles, CA 90001" +198466,Apple Airpods Headphones,1,150,05/25/19 10:23,"499 Wilson St, San Francisco, CA 94016" +198467,USB-C Charging Cable,1,11.95,05/03/19 14:32,"119 14th St, Los Angeles, CA 90001" +198468,USB-C Charging Cable,1,11.95,05/13/19 13:24,"837 Church St, Portland, OR 97035" +198469,Apple Airpods Headphones,1,150,05/30/19 18:50,"697 Maple St, New York City, NY 10001" +198470,Bose SoundSport Headphones,1,99.99,05/07/19 19:16,"337 6th St, Los Angeles, CA 90001" +198471,Lightning Charging Cable,1,14.95,05/16/19 22:14,"154 Johnson St, Boston, MA 02215" +198472,34in Ultrawide Monitor,1,379.99,05/16/19 18:51,"788 12th St, Atlanta, GA 30301" +198473,Apple Airpods Headphones,1,150,05/24/19 22:24,"182 Sunset St, Los Angeles, CA 90001" +198474,AA Batteries (4-pack),2,3.84,05/15/19 16:21,"226 6th St, New York City, NY 10001" +198475,USB-C Charging Cable,1,11.95,05/13/19 14:57,"157 Washington St, San Francisco, CA 94016" +198476,AAA Batteries (4-pack),3,2.99,05/18/19 11:29,"767 Walnut St, Los Angeles, CA 90001" +198477,34in Ultrawide Monitor,1,379.99,05/10/19 18:44,"555 Ridge St, Seattle, WA 98101" +198478,Lightning Charging Cable,1,14.95,05/22/19 19:08,"275 Hickory St, San Francisco, CA 94016" +198479,AAA Batteries (4-pack),3,2.99,05/15/19 21:49,"533 Meadow St, Los Angeles, CA 90001" +198480,Google Phone,1,600,05/05/19 13:20,"271 Main St, Los Angeles, CA 90001" +198481,Apple Airpods Headphones,1,150,05/10/19 11:52,"107 8th St, San Francisco, CA 94016" +198482,iPhone,1,700,05/29/19 18:51,"600 6th St, New York City, NY 10001" +198483,Lightning Charging Cable,1,14.95,05/27/19 10:02,"632 Forest St, Boston, MA 02215" +198484,USB-C Charging Cable,2,11.95,05/04/19 10:48,"909 12th St, Los Angeles, CA 90001" +198485,Bose SoundSport Headphones,1,99.99,05/26/19 15:03,"838 7th St, San Francisco, CA 94016" +198486,27in FHD Monitor,1,149.99,05/17/19 16:23,"966 12th St, Dallas, TX 75001" +198487,27in FHD Monitor,1,149.99,05/20/19 11:48,"66 Hill St, San Francisco, CA 94016" +198488,Wired Headphones,1,11.99,05/03/19 11:05,"764 Johnson St, New York City, NY 10001" +198489,Apple Airpods Headphones,1,150,05/26/19 18:21,"873 5th St, San Francisco, CA 94016" +198490,Lightning Charging Cable,1,14.95,05/19/19 13:48,"769 North St, Seattle, WA 98101" +198491,Apple Airpods Headphones,1,150,05/18/19 09:51,"827 Main St, Boston, MA 02215" +198492,27in 4K Gaming Monitor,1,389.99,05/22/19 22:08,"618 South St, San Francisco, CA 94016" +198493,AA Batteries (4-pack),1,3.84,05/23/19 15:13,"361 12th St, Los Angeles, CA 90001" +198494,Macbook Pro Laptop,1,1700,05/02/19 16:09,"40 Meadow St, Seattle, WA 98101" +198495,AA Batteries (4-pack),1,3.84,05/15/19 15:26,"669 Meadow St, Dallas, TX 75001" +198495,USB-C Charging Cable,1,11.95,05/15/19 15:26,"669 Meadow St, Dallas, TX 75001" +198496,Apple Airpods Headphones,1,150,05/29/19 02:34,"607 Meadow St, Los Angeles, CA 90001" +198497,AA Batteries (4-pack),1,3.84,05/27/19 22:34,"933 Meadow St, Los Angeles, CA 90001" +198498,LG Washing Machine,1,600.0,05/07/19 12:35,"847 River St, Atlanta, GA 30301" +198499,Flatscreen TV,1,300,05/30/19 14:44,"231 1st St, Austin, TX 73301" +198500,34in Ultrawide Monitor,1,379.99,05/13/19 14:04,"98 Cherry St, Portland, ME 04101" +198501,27in 4K Gaming Monitor,1,389.99,05/29/19 11:21,"62 West St, Austin, TX 73301" +198502,Lightning Charging Cable,1,14.95,05/31/19 17:27,"827 1st St, San Francisco, CA 94016" +198503,AA Batteries (4-pack),1,3.84,05/13/19 22:08,"516 South St, Dallas, TX 75001" +198504,34in Ultrawide Monitor,1,379.99,05/09/19 21:33,"709 Washington St, Atlanta, GA 30301" +198505,AAA Batteries (4-pack),1,2.99,05/17/19 05:47,"501 Walnut St, New York City, NY 10001" +198506,Lightning Charging Cable,1,14.95,05/27/19 18:43,"461 Jefferson St, Los Angeles, CA 90001" +198507,Apple Airpods Headphones,1,150,05/04/19 20:18,"297 5th St, San Francisco, CA 94016" +198508,AAA Batteries (4-pack),2,2.99,05/27/19 07:24,"95 Center St, San Francisco, CA 94016" +198509,AA Batteries (4-pack),1,3.84,05/08/19 14:37,"128 South St, San Francisco, CA 94016" +198510,Wired Headphones,1,11.99,05/19/19 09:58,"960 Maple St, Boston, MA 02215" +198511,Bose SoundSport Headphones,1,99.99,05/10/19 10:40,"528 Forest St, San Francisco, CA 94016" +198512,Lightning Charging Cable,1,14.95,05/24/19 22:43,"72 Adams St, New York City, NY 10001" +198513,Wired Headphones,1,11.99,05/21/19 20:33,"961 River St, Los Angeles, CA 90001" +198514,Bose SoundSport Headphones,1,99.99,05/10/19 11:58,"4 4th St, San Francisco, CA 94016" +198515,AAA Batteries (4-pack),1,2.99,05/05/19 12:21,"32 11th St, Los Angeles, CA 90001" +198516,Flatscreen TV,1,300,05/23/19 02:19,"683 Park St, San Francisco, CA 94016" +198517,Apple Airpods Headphones,1,150,05/16/19 19:55,"842 Hickory St, Austin, TX 73301" +198518,Apple Airpods Headphones,1,150,05/05/19 18:00,"814 Maple St, San Francisco, CA 94016" +198519,Wired Headphones,1,11.99,05/10/19 16:54,"962 2nd St, San Francisco, CA 94016" +198520,Lightning Charging Cable,1,14.95,05/14/19 16:52,"595 Jackson St, Atlanta, GA 30301" +198521,Google Phone,1,600,05/07/19 18:33,"585 North St, San Francisco, CA 94016" +198522,Apple Airpods Headphones,1,150,05/05/19 20:37,"173 Lake St, New York City, NY 10001" +198523,USB-C Charging Cable,1,11.95,05/28/19 11:39,"857 Wilson St, San Francisco, CA 94016" +198524,AA Batteries (4-pack),1,3.84,05/12/19 10:33,"946 River St, Boston, MA 02215" +198525,AA Batteries (4-pack),1,3.84,05/17/19 19:02,"674 Main St, Seattle, WA 98101" +198526,20in Monitor,1,109.99,05/21/19 18:55,"222 Lincoln St, New York City, NY 10001" +198527,Bose SoundSport Headphones,1,99.99,05/03/19 11:59,"479 1st St, San Francisco, CA 94016" +198528,AA Batteries (4-pack),2,3.84,05/24/19 13:15,"929 River St, Atlanta, GA 30301" +198529,Google Phone,1,600,05/01/19 18:07,"332 Center St, Seattle, WA 98101" +198529,USB-C Charging Cable,1,11.95,05/01/19 18:07,"332 Center St, Seattle, WA 98101" +198530,USB-C Charging Cable,1,11.95,05/05/19 17:32,"692 Park St, Portland, ME 04101" +198531,Lightning Charging Cable,2,14.95,05/25/19 18:07,"193 Elm St, San Francisco, CA 94016" +198532,Lightning Charging Cable,1,14.95,05/27/19 17:22,"741 Pine St, Dallas, TX 75001" +198533,AAA Batteries (4-pack),1,2.99,05/09/19 21:57,"755 North St, San Francisco, CA 94016" +198534,AAA Batteries (4-pack),1,2.99,05/20/19 15:01,"798 Lakeview St, Los Angeles, CA 90001" +198535,Apple Airpods Headphones,1,150,05/02/19 12:18,"4 Cherry St, Boston, MA 02215" +198536,Bose SoundSport Headphones,1,99.99,05/22/19 17:09,"854 Lake St, Austin, TX 73301" +198537,AAA Batteries (4-pack),1,2.99,05/10/19 17:09,"978 2nd St, San Francisco, CA 94016" +198538,Apple Airpods Headphones,1,150,05/24/19 21:17,"870 7th St, Boston, MA 02215" +198539,iPhone,1,700,05/24/19 11:37,"725 Lake St, Los Angeles, CA 90001" +198540,iPhone,1,700,05/18/19 10:31,"366 5th St, New York City, NY 10001" +198541,USB-C Charging Cable,1,11.95,05/10/19 07:23,"434 Hickory St, Los Angeles, CA 90001" +198542,Flatscreen TV,1,300,05/01/19 14:52,"904 5th St, San Francisco, CA 94016" +198543,USB-C Charging Cable,1,11.95,05/18/19 13:24,"271 4th St, New York City, NY 10001" +198544,Lightning Charging Cable,1,14.95,05/23/19 06:47,"551 2nd St, Dallas, TX 75001" +198545,Flatscreen TV,1,300,05/19/19 11:55,"547 13th St, New York City, NY 10001" +198546,AA Batteries (4-pack),2,3.84,05/27/19 23:25,"711 Meadow St, Austin, TX 73301" +198547,AAA Batteries (4-pack),1,2.99,05/05/19 09:40,"310 Lakeview St, Los Angeles, CA 90001" +198548,AA Batteries (4-pack),1,3.84,05/10/19 20:27,"81 North St, Los Angeles, CA 90001" +198549,iPhone,1,700,05/23/19 20:04,"271 West St, Los Angeles, CA 90001" +198550,Apple Airpods Headphones,1,150,05/12/19 14:28,"275 Ridge St, New York City, NY 10001" +198551,AAA Batteries (4-pack),1,2.99,05/28/19 14:02,"263 Washington St, Boston, MA 02215" +198552,Wired Headphones,1,11.99,05/21/19 11:28,"575 Elm St, Seattle, WA 98101" +198553,27in FHD Monitor,1,149.99,05/30/19 12:58,"398 7th St, New York City, NY 10001" +198554,USB-C Charging Cable,1,11.95,05/20/19 22:27,"344 Spruce St, San Francisco, CA 94016" +198555,AAA Batteries (4-pack),1,2.99,05/08/19 13:49,"433 6th St, San Francisco, CA 94016" +198556,USB-C Charging Cable,2,11.95,05/12/19 19:17,"536 West St, Los Angeles, CA 90001" +198557,USB-C Charging Cable,1,11.95,05/18/19 20:56,"369 Dogwood St, Seattle, WA 98101" +198558,AAA Batteries (4-pack),1,2.99,05/22/19 22:41,"475 6th St, Boston, MA 02215" +198559,AAA Batteries (4-pack),1,2.99,05/13/19 15:52,"958 1st St, San Francisco, CA 94016" +198560,AA Batteries (4-pack),1,3.84,05/08/19 09:32,"987 Spruce St, New York City, NY 10001" +198561,20in Monitor,1,109.99,05/19/19 00:06,"419 Chestnut St, Dallas, TX 75001" +198562,Wired Headphones,1,11.99,05/27/19 13:41,"152 10th St, New York City, NY 10001" +198563,Lightning Charging Cable,1,14.95,05/01/19 21:10,"334 Washington St, Boston, MA 02215" +198564,USB-C Charging Cable,1,11.95,05/04/19 19:19,"159 Maple St, Dallas, TX 75001" +198565,AAA Batteries (4-pack),1,2.99,05/29/19 17:32,"30 Dogwood St, Austin, TX 73301" +198566,Lightning Charging Cable,1,14.95,05/29/19 16:18,"996 Walnut St, New York City, NY 10001" +198567,USB-C Charging Cable,1,11.95,05/01/19 22:47,"467 5th St, San Francisco, CA 94016" +198568,27in FHD Monitor,1,149.99,05/22/19 14:52,"966 12th St, Boston, MA 02215" +198569,27in 4K Gaming Monitor,1,389.99,05/10/19 19:31,"711 Spruce St, New York City, NY 10001" +198570,Vareebadd Phone,1,400,05/14/19 18:22,"575 Madison St, Austin, TX 73301" +198570,USB-C Charging Cable,1,11.95,05/14/19 18:22,"575 Madison St, Austin, TX 73301" +198571,Vareebadd Phone,1,400,05/12/19 23:14,"968 Sunset St, Atlanta, GA 30301" +198571,34in Ultrawide Monitor,1,379.99,05/12/19 23:14,"968 Sunset St, Atlanta, GA 30301" +198572,iPhone,1,700,05/12/19 16:44,"824 Meadow St, Portland, OR 97035" +198573,Google Phone,1,600,05/28/19 18:59,"449 Walnut St, Los Angeles, CA 90001" +198574,AAA Batteries (4-pack),2,2.99,05/14/19 14:43,"975 Hill St, San Francisco, CA 94016" +198575,Lightning Charging Cable,1,14.95,05/17/19 18:48,"748 Park St, Los Angeles, CA 90001" +198575,ThinkPad Laptop,1,999.99,05/17/19 18:48,"748 Park St, Los Angeles, CA 90001" +198576,AA Batteries (4-pack),1,3.84,05/27/19 08:34,"425 Johnson St, Boston, MA 02215" +198577,Vareebadd Phone,1,400,05/11/19 12:06,"438 13th St, Boston, MA 02215" +198577,USB-C Charging Cable,1,11.95,05/11/19 12:06,"438 13th St, Boston, MA 02215" +198578,Bose SoundSport Headphones,1,99.99,05/12/19 07:16,"633 Highland St, Portland, ME 04101" +198579,USB-C Charging Cable,1,11.95,05/23/19 00:32,"156 Center St, Atlanta, GA 30301" +198580,27in 4K Gaming Monitor,1,389.99,05/20/19 13:43,"557 Highland St, San Francisco, CA 94016" +198581,AAA Batteries (4-pack),3,2.99,05/19/19 14:32,"351 6th St, San Francisco, CA 94016" +198582,USB-C Charging Cable,1,11.95,05/20/19 18:48,"867 5th St, Austin, TX 73301" +198583,27in FHD Monitor,1,149.99,05/11/19 11:27,"26 Ridge St, Seattle, WA 98101" +198584,Wired Headphones,1,11.99,05/08/19 09:00,"9 12th St, San Francisco, CA 94016" +198585,Flatscreen TV,1,300,05/29/19 06:57,"127 Cedar St, Los Angeles, CA 90001" +198586,Wired Headphones,1,11.99,05/25/19 13:38,"300 Highland St, San Francisco, CA 94016" +198587,USB-C Charging Cable,1,11.95,05/01/19 21:08,"9 Main St, Dallas, TX 75001" +198588,USB-C Charging Cable,2,11.95,05/07/19 08:35,"205 Sunset St, Dallas, TX 75001" +198589,AAA Batteries (4-pack),1,2.99,05/11/19 15:07,"907 Madison St, San Francisco, CA 94016" +198590,Apple Airpods Headphones,1,150,05/10/19 09:47,"470 Hill St, San Francisco, CA 94016" +198591,USB-C Charging Cable,1,11.95,05/25/19 20:58,"935 Ridge St, New York City, NY 10001" +198592,Bose SoundSport Headphones,1,99.99,05/04/19 09:25,"496 River St, San Francisco, CA 94016" +198593,iPhone,1,700,05/04/19 23:20,"981 6th St, Dallas, TX 75001" +198594,20in Monitor,1,109.99,05/06/19 23:33,"751 Church St, Los Angeles, CA 90001" +198595,34in Ultrawide Monitor,1,379.99,05/12/19 23:47,"649 10th St, Dallas, TX 75001" +198596,USB-C Charging Cable,1,11.95,05/11/19 16:46,"622 Hill St, San Francisco, CA 94016" +198597,Macbook Pro Laptop,1,1700,05/07/19 11:26,"436 Forest St, New York City, NY 10001" +198598,AA Batteries (4-pack),3,3.84,05/06/19 16:53,"663 2nd St, Los Angeles, CA 90001" +198599,Bose SoundSport Headphones,1,99.99,05/06/19 00:25,"563 Adams St, Boston, MA 02215" +198600,Apple Airpods Headphones,1,150,05/25/19 09:41,"679 Spruce St, San Francisco, CA 94016" +198601,27in FHD Monitor,1,149.99,05/06/19 14:44,"694 South St, Los Angeles, CA 90001" +198602,AA Batteries (4-pack),1,3.84,05/04/19 17:52,"694 Walnut St, Los Angeles, CA 90001" +198603,ThinkPad Laptop,1,999.99,05/01/19 10:42,"658 Highland St, Boston, MA 02215" +198604,27in FHD Monitor,1,149.99,06/01/19 02:24,"99 Main St, Atlanta, GA 30301" +198605,AAA Batteries (4-pack),2,2.99,05/30/19 22:35,"948 8th St, Los Angeles, CA 90001" +198606,AAA Batteries (4-pack),1,2.99,05/07/19 13:03,"66 Spruce St, San Francisco, CA 94016" +198607,AA Batteries (4-pack),1,3.84,05/01/19 16:37,"595 2nd St, Seattle, WA 98101" +198608,AAA Batteries (4-pack),1,2.99,05/06/19 18:21,"922 Dogwood St, Boston, MA 02215" +198609,AA Batteries (4-pack),1,3.84,05/13/19 06:58,"415 Ridge St, Dallas, TX 75001" +198610,Lightning Charging Cable,1,14.95,05/30/19 16:26,"72 Cedar St, Portland, OR 97035" +198611,ThinkPad Laptop,1,999.99,05/02/19 13:58,"54 Sunset St, Atlanta, GA 30301" +198612,Bose SoundSport Headphones,1,99.99,05/04/19 18:27,"73 7th St, New York City, NY 10001" +198613,AA Batteries (4-pack),1,3.84,05/22/19 19:58,"841 Cedar St, San Francisco, CA 94016" +198614,Lightning Charging Cable,1,14.95,05/26/19 23:24,"259 5th St, Austin, TX 73301" +198615,20in Monitor,1,109.99,05/31/19 09:28,"317 8th St, New York City, NY 10001" +198616,Vareebadd Phone,1,400,05/20/19 20:04,"825 Church St, Los Angeles, CA 90001" +198617,USB-C Charging Cable,1,11.95,05/02/19 11:13,"469 West St, Los Angeles, CA 90001" +198618,AAA Batteries (4-pack),1,2.99,05/24/19 12:22,"327 Jackson St, Seattle, WA 98101" +198619,27in 4K Gaming Monitor,1,389.99,05/17/19 20:59,"134 2nd St, Los Angeles, CA 90001" +198620,Lightning Charging Cable,1,14.95,05/08/19 09:22,"503 Chestnut St, Atlanta, GA 30301" +198621,Wired Headphones,1,11.99,05/01/19 18:29,"904 West St, San Francisco, CA 94016" +198622,Macbook Pro Laptop,1,1700,05/05/19 17:31,"784 7th St, Los Angeles, CA 90001" +198623,27in FHD Monitor,1,149.99,05/25/19 06:23,"25 9th St, Boston, MA 02215" +198624,34in Ultrawide Monitor,1,379.99,05/31/19 14:06,"484 1st St, New York City, NY 10001" +198625,Lightning Charging Cable,1,14.95,05/07/19 13:52,"808 8th St, San Francisco, CA 94016" +198626,Bose SoundSport Headphones,1,99.99,05/30/19 18:36,"191 5th St, Los Angeles, CA 90001" +198627,iPhone,1,700,05/20/19 16:29,"468 Dogwood St, Los Angeles, CA 90001" +198628,Wired Headphones,2,11.99,05/18/19 21:34,"846 Pine St, Los Angeles, CA 90001" +198629,AA Batteries (4-pack),1,3.84,05/16/19 18:24,"684 Lincoln St, San Francisco, CA 94016" +198630,AA Batteries (4-pack),1,3.84,05/28/19 18:30,"717 Cherry St, San Francisco, CA 94016" +198631,ThinkPad Laptop,1,999.99,05/12/19 15:42,"32 Forest St, San Francisco, CA 94016" +198632,34in Ultrawide Monitor,1,379.99,05/31/19 21:12,"297 Wilson St, Seattle, WA 98101" +198633,Google Phone,1,600,05/29/19 10:46,"269 12th St, San Francisco, CA 94016" +198634,Google Phone,1,600,05/17/19 20:01,"723 Jackson St, Dallas, TX 75001" +198635,AAA Batteries (4-pack),1,2.99,05/12/19 18:58,"977 7th St, Los Angeles, CA 90001" +198636,Macbook Pro Laptop,1,1700,05/29/19 09:27,"401 Forest St, Atlanta, GA 30301" +198637,AA Batteries (4-pack),1,3.84,05/05/19 12:36,"262 Adams St, San Francisco, CA 94016" +198638,Google Phone,1,600,05/11/19 13:54,"785 Jefferson St, New York City, NY 10001" +198639,Macbook Pro Laptop,1,1700,05/22/19 21:56,"721 12th St, New York City, NY 10001" +198640,Lightning Charging Cable,1,14.95,05/21/19 21:17,"13 Center St, San Francisco, CA 94016" +198641,AAA Batteries (4-pack),1,2.99,05/15/19 11:16,"333 Willow St, San Francisco, CA 94016" +198642,Apple Airpods Headphones,1,150,05/29/19 11:03,"941 Park St, Boston, MA 02215" +198643,34in Ultrawide Monitor,1,379.99,05/10/19 12:19,"886 Church St, Seattle, WA 98101" +198644,34in Ultrawide Monitor,1,379.99,05/31/19 02:47,"502 Highland St, Dallas, TX 75001" +198645,AA Batteries (4-pack),1,3.84,05/19/19 02:32,"311 Meadow St, San Francisco, CA 94016" +198646,AAA Batteries (4-pack),1,2.99,05/13/19 16:47,"974 Wilson St, Seattle, WA 98101" +198647,AAA Batteries (4-pack),1,2.99,05/13/19 18:50,"654 Cherry St, New York City, NY 10001" +198648,Lightning Charging Cable,1,14.95,05/25/19 23:13,"124 Cedar St, San Francisco, CA 94016" +198649,Wired Headphones,1,11.99,06/01/19 01:24,"522 Hickory St, Boston, MA 02215" +198650,ThinkPad Laptop,1,999.99,05/20/19 13:14,"494 12th St, Portland, OR 97035" +198651,USB-C Charging Cable,1,11.95,05/21/19 09:03,"981 Dogwood St, Portland, OR 97035" +198652,USB-C Charging Cable,1,11.95,05/27/19 13:41,"79 Meadow St, San Francisco, CA 94016" +198653,Wired Headphones,1,11.99,05/29/19 10:18,"491 Ridge St, Portland, OR 97035" +198654,iPhone,1,700,05/18/19 05:05,"495 2nd St, Boston, MA 02215" +198655,Wired Headphones,2,11.99,05/25/19 09:02,"361 Cherry St, Los Angeles, CA 90001" +198656,AAA Batteries (4-pack),1,2.99,05/29/19 19:45,"788 Lincoln St, San Francisco, CA 94016" +198657,34in Ultrawide Monitor,1,379.99,05/29/19 16:13,"438 Maple St, San Francisco, CA 94016" +198658,Google Phone,1,600,05/10/19 14:13,"605 Forest St, Los Angeles, CA 90001" +198659,27in FHD Monitor,1,149.99,05/04/19 18:16,"318 Forest St, San Francisco, CA 94016" +198660,AA Batteries (4-pack),1,3.84,05/25/19 17:23,"747 7th St, Boston, MA 02215" +198661,27in FHD Monitor,1,149.99,05/17/19 22:03,"115 Chestnut St, San Francisco, CA 94016" +198661,Bose SoundSport Headphones,1,99.99,05/17/19 22:03,"115 Chestnut St, San Francisco, CA 94016" +198662,Google Phone,1,600,05/25/19 01:28,"495 11th St, New York City, NY 10001" +198663,27in 4K Gaming Monitor,1,389.99,05/18/19 15:51,"956 11th St, Los Angeles, CA 90001" +198664,Apple Airpods Headphones,1,150,05/10/19 13:57,"808 Cedar St, New York City, NY 10001" +198665,Bose SoundSport Headphones,1,99.99,05/01/19 13:42,"40 Johnson St, San Francisco, CA 94016" +198666,USB-C Charging Cable,1,11.95,05/07/19 08:27,"959 Lake St, Boston, MA 02215" +198667,AAA Batteries (4-pack),1,2.99,05/13/19 15:36,"724 Cedar St, New York City, NY 10001" +198668,34in Ultrawide Monitor,1,379.99,05/04/19 21:50,"788 Ridge St, Seattle, WA 98101" +198669,USB-C Charging Cable,1,11.95,05/16/19 07:26,"411 4th St, Boston, MA 02215" +198670,AAA Batteries (4-pack),1,2.99,05/31/19 14:10,"445 2nd St, Portland, OR 97035" +198671,Lightning Charging Cable,1,14.95,05/08/19 19:47,"421 Lincoln St, San Francisco, CA 94016" +198672,Bose SoundSport Headphones,1,99.99,05/17/19 09:06,"868 South St, Portland, OR 97035" +198673,AAA Batteries (4-pack),1,2.99,05/22/19 23:00,"74 13th St, San Francisco, CA 94016" +198674,AA Batteries (4-pack),1,3.84,05/02/19 19:26,"777 Main St, San Francisco, CA 94016" +198675,27in FHD Monitor,1,149.99,05/14/19 09:46,"175 2nd St, Boston, MA 02215" +198676,Wired Headphones,1,11.99,05/27/19 04:32,"158 8th St, New York City, NY 10001" +198677,27in FHD Monitor,1,149.99,05/16/19 17:03,"166 1st St, New York City, NY 10001" +198678,Lightning Charging Cable,1,14.95,05/19/19 08:18,"986 Maple St, San Francisco, CA 94016" +198679,Macbook Pro Laptop,1,1700,05/09/19 13:22,"903 Dogwood St, Dallas, TX 75001" +198680,Lightning Charging Cable,1,14.95,05/16/19 13:19,"516 8th St, Dallas, TX 75001" +198681,AA Batteries (4-pack),1,3.84,05/23/19 09:04,"764 13th St, Boston, MA 02215" +198682,Apple Airpods Headphones,1,150,05/08/19 13:01,"903 8th St, New York City, NY 10001" +198683,AA Batteries (4-pack),1,3.84,05/20/19 20:20,"160 Main St, San Francisco, CA 94016" +198684,27in 4K Gaming Monitor,1,389.99,05/29/19 21:40,"88 Main St, Boston, MA 02215" +198685,AA Batteries (4-pack),1,3.84,05/28/19 17:33,"265 Center St, New York City, NY 10001" +198686,AA Batteries (4-pack),1,3.84,05/28/19 12:15,"909 Highland St, San Francisco, CA 94016" +198687,USB-C Charging Cable,1,11.95,05/01/19 23:34,"466 West St, Atlanta, GA 30301" +198688,27in 4K Gaming Monitor,1,389.99,05/21/19 19:30,"168 Lincoln St, Seattle, WA 98101" +198689,Macbook Pro Laptop,1,1700,05/19/19 13:31,"290 Forest St, Portland, ME 04101" +198690,Wired Headphones,1,11.99,05/20/19 09:19,"624 Sunset St, San Francisco, CA 94016" +198691,iPhone,1,700,05/13/19 14:26,"46 11th St, San Francisco, CA 94016" +198691,Lightning Charging Cable,2,14.95,05/13/19 14:26,"46 11th St, San Francisco, CA 94016" +198692,Lightning Charging Cable,1,14.95,05/18/19 10:44,"44 Hickory St, Boston, MA 02215" +198693,USB-C Charging Cable,1,11.95,05/18/19 11:03,"125 Jackson St, Los Angeles, CA 90001" +198694,Vareebadd Phone,1,400,05/22/19 16:28,"410 Hickory St, New York City, NY 10001" +198694,Wired Headphones,1,11.99,05/22/19 16:28,"410 Hickory St, New York City, NY 10001" +198695,AAA Batteries (4-pack),1,2.99,05/25/19 16:05,"552 Ridge St, New York City, NY 10001" +198696,Bose SoundSport Headphones,1,99.99,05/16/19 17:43,"300 Washington St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +198697,USB-C Charging Cable,1,11.95,05/22/19 17:00,"196 7th St, Dallas, TX 75001" +198698,34in Ultrawide Monitor,1,379.99,05/25/19 16:44,"805 4th St, Seattle, WA 98101" +198699,LG Dryer,1,600.0,05/07/19 12:30,"430 Park St, Los Angeles, CA 90001" +198700,Bose SoundSport Headphones,1,99.99,05/24/19 12:08,"874 Maple St, New York City, NY 10001" +198701,USB-C Charging Cable,1,11.95,05/13/19 15:42,"836 13th St, San Francisco, CA 94016" +198702,Bose SoundSport Headphones,1,99.99,05/06/19 14:22,"494 8th St, San Francisco, CA 94016" +198703,27in FHD Monitor,1,149.99,05/20/19 20:20,"963 Dogwood St, San Francisco, CA 94016" +198704,Bose SoundSport Headphones,1,99.99,05/17/19 23:09,"43 Sunset St, Dallas, TX 75001" +198705,AAA Batteries (4-pack),1,2.99,05/22/19 10:29,"463 9th St, San Francisco, CA 94016" +198706,Bose SoundSport Headphones,1,99.99,05/17/19 17:14,"721 Sunset St, Dallas, TX 75001" +198707,USB-C Charging Cable,1,11.95,05/04/19 15:55,"761 Dogwood St, Boston, MA 02215" +198708,AAA Batteries (4-pack),1,2.99,05/04/19 17:31,"286 Chestnut St, Austin, TX 73301" +198709,AAA Batteries (4-pack),1,2.99,05/03/19 17:08,"546 9th St, Austin, TX 73301" +198710,AA Batteries (4-pack),2,3.84,05/16/19 12:49,"11 10th St, Los Angeles, CA 90001" +198711,AA Batteries (4-pack),1,3.84,05/21/19 00:19,"620 14th St, Los Angeles, CA 90001" +198712,Wired Headphones,1,11.99,05/30/19 09:18,"984 2nd St, Boston, MA 02215" +198713,27in FHD Monitor,1,149.99,05/13/19 12:17,"99 North St, New York City, NY 10001" +198714,27in 4K Gaming Monitor,1,389.99,05/31/19 11:11,"201 Forest St, Dallas, TX 75001" +198715,Bose SoundSport Headphones,1,99.99,05/14/19 16:54,"418 11th St, Austin, TX 73301" +198716,USB-C Charging Cable,1,11.95,05/25/19 17:51,"536 12th St, San Francisco, CA 94016" +198717,iPhone,1,700,05/04/19 12:03,"534 Jefferson St, Dallas, TX 75001" +198718,Google Phone,1,600,05/10/19 22:05,"105 Park St, Dallas, TX 75001" +198718,Wired Headphones,1,11.99,05/10/19 22:05,"105 Park St, Dallas, TX 75001" +198719,Macbook Pro Laptop,1,1700,05/11/19 12:16,"883 River St, Boston, MA 02215" +198720,Lightning Charging Cable,1,14.95,05/24/19 23:36,"332 Lincoln St, San Francisco, CA 94016" +198721,AAA Batteries (4-pack),1,2.99,05/30/19 13:59,"187 Willow St, Los Angeles, CA 90001" +198722,iPhone,1,700,05/01/19 07:47,"919 Madison St, San Francisco, CA 94016" +198723,Vareebadd Phone,1,400,05/28/19 09:43,"341 Church St, Austin, TX 73301" +198724,AA Batteries (4-pack),1,3.84,05/06/19 08:57,"904 West St, Austin, TX 73301" +198725,34in Ultrawide Monitor,1,379.99,05/15/19 08:05,"251 Willow St, Los Angeles, CA 90001" +198726,AA Batteries (4-pack),2,3.84,05/28/19 18:07,"433 Willow St, New York City, NY 10001" +198727,27in FHD Monitor,1,149.99,05/22/19 22:56,"635 Lakeview St, San Francisco, CA 94016" +198728,27in FHD Monitor,1,149.99,05/02/19 14:13,"876 Jackson St, Boston, MA 02215" +198729,AAA Batteries (4-pack),1,2.99,05/06/19 13:23,"186 11th St, Los Angeles, CA 90001" +198730,Apple Airpods Headphones,1,150,05/30/19 20:59,"291 Dogwood St, Los Angeles, CA 90001" +198731,AAA Batteries (4-pack),3,2.99,05/15/19 14:42,"323 Cherry St, Los Angeles, CA 90001" +198732,ThinkPad Laptop,1,999.99,05/09/19 15:58,"345 Chestnut St, Atlanta, GA 30301" +198733,Wired Headphones,1,11.99,05/06/19 13:18,"311 10th St, Portland, ME 04101" +198734,Lightning Charging Cable,1,14.95,05/21/19 09:24,"399 Sunset St, Atlanta, GA 30301" +198735,AA Batteries (4-pack),1,3.84,05/28/19 12:26,"790 Cedar St, Austin, TX 73301" +198736,Lightning Charging Cable,1,14.95,05/26/19 12:43,"937 Jefferson St, San Francisco, CA 94016" +198737,Macbook Pro Laptop,1,1700,05/12/19 22:30,"991 Park St, Dallas, TX 75001" +198738,AAA Batteries (4-pack),1,2.99,05/28/19 15:11,"996 Forest St, Atlanta, GA 30301" +198739,Wired Headphones,1,11.99,05/09/19 13:23,"28 Cherry St, New York City, NY 10001" +198740,Wired Headphones,1,11.99,05/21/19 12:50,"920 Jefferson St, San Francisco, CA 94016" +198741,Apple Airpods Headphones,1,150,05/12/19 09:39,"64 South St, Los Angeles, CA 90001" +198742,Wired Headphones,2,11.99,05/27/19 21:33,"359 Highland St, Los Angeles, CA 90001" +198743,Lightning Charging Cable,1,14.95,05/23/19 17:12,"59 14th St, Dallas, TX 75001" +198744,Lightning Charging Cable,1,14.95,05/10/19 05:28,"103 Jefferson St, Austin, TX 73301" +198745,Bose SoundSport Headphones,1,99.99,05/08/19 20:36,"426 Ridge St, Los Angeles, CA 90001" +198746,AA Batteries (4-pack),2,3.84,05/09/19 14:38,"234 7th St, Los Angeles, CA 90001" +198747,Apple Airpods Headphones,1,150,05/09/19 13:23,"757 Dogwood St, Seattle, WA 98101" +198748,Bose SoundSport Headphones,1,99.99,05/20/19 14:28,"813 5th St, New York City, NY 10001" +198749,USB-C Charging Cable,1,11.95,05/22/19 12:09,"304 5th St, Los Angeles, CA 90001" +198750,ThinkPad Laptop,1,999.99,05/16/19 19:33,"839 Center St, New York City, NY 10001" +198751,Lightning Charging Cable,1,14.95,05/12/19 16:38,"601 8th St, Austin, TX 73301" +198752,AAA Batteries (4-pack),3,2.99,05/06/19 00:09,"761 10th St, San Francisco, CA 94016" +198753,20in Monitor,1,109.99,05/03/19 05:20,"95 6th St, San Francisco, CA 94016" +198754,Wired Headphones,2,11.99,05/28/19 09:57,"612 Ridge St, San Francisco, CA 94016" +198755,34in Ultrawide Monitor,1,379.99,05/08/19 12:30,"383 11th St, Seattle, WA 98101" +198756,Lightning Charging Cable,2,14.95,05/19/19 22:23,"475 Jefferson St, New York City, NY 10001" +198757,Apple Airpods Headphones,1,150,05/23/19 20:17,"501 5th St, San Francisco, CA 94016" +198758,AA Batteries (4-pack),1,3.84,05/19/19 18:47,"630 9th St, Boston, MA 02215" +198759,USB-C Charging Cable,1,11.95,05/13/19 02:46,"632 Elm St, Austin, TX 73301" +198760,Google Phone,1,600,05/01/19 10:46,"674 Hickory St, Atlanta, GA 30301" +198760,Wired Headphones,1,11.99,05/01/19 10:46,"674 Hickory St, Atlanta, GA 30301" +198761,AAA Batteries (4-pack),1,2.99,05/02/19 23:13,"590 Maple St, New York City, NY 10001" +198762,Wired Headphones,1,11.99,05/09/19 10:59,"764 Meadow St, New York City, NY 10001" +198763,AAA Batteries (4-pack),1,2.99,05/09/19 21:45,"208 Sunset St, Austin, TX 73301" +198764,27in 4K Gaming Monitor,1,389.99,05/08/19 20:04,"674 Highland St, New York City, NY 10001" +198765,AAA Batteries (4-pack),1,2.99,05/13/19 12:36,"626 Johnson St, New York City, NY 10001" +198766,Lightning Charging Cable,1,14.95,05/19/19 01:02,"471 7th St, Seattle, WA 98101" +198767,USB-C Charging Cable,1,11.95,05/01/19 19:19,"254 Hickory St, Los Angeles, CA 90001" +198768,ThinkPad Laptop,1,999.99,05/04/19 09:03,"656 Wilson St, New York City, NY 10001" +198769,Flatscreen TV,1,300,05/17/19 01:13,"884 Elm St, Los Angeles, CA 90001" +198770,Lightning Charging Cable,1,14.95,05/01/19 10:52,"465 Willow St, Austin, TX 73301" +198771,AAA Batteries (4-pack),2,2.99,05/03/19 19:38,"134 5th St, San Francisco, CA 94016" +198772,AA Batteries (4-pack),1,3.84,05/21/19 05:36,"865 13th St, San Francisco, CA 94016" +198773,Apple Airpods Headphones,1,150,05/22/19 15:07,"791 1st St, Los Angeles, CA 90001" +198774,Flatscreen TV,1,300,05/08/19 19:53,"3 Lincoln St, Boston, MA 02215" +198775,20in Monitor,1,109.99,05/01/19 18:33,"653 Johnson St, Austin, TX 73301" +198776,Apple Airpods Headphones,1,150,05/19/19 10:17,"58 Hill St, Los Angeles, CA 90001" +198777,Vareebadd Phone,1,400,05/26/19 18:25,"744 Chestnut St, San Francisco, CA 94016" +198777,USB-C Charging Cable,1,11.95,05/26/19 18:25,"744 Chestnut St, San Francisco, CA 94016" +198778,Macbook Pro Laptop,1,1700,05/02/19 13:22,"639 5th St, Portland, ME 04101" +198779,AA Batteries (4-pack),1,3.84,05/22/19 11:30,"649 4th St, San Francisco, CA 94016" +198780,Lightning Charging Cable,1,14.95,05/04/19 13:17,"208 South St, Los Angeles, CA 90001" +198781,AAA Batteries (4-pack),2,2.99,05/18/19 19:59,"444 Hickory St, San Francisco, CA 94016" +198782,Google Phone,1,600,05/22/19 22:17,"931 Park St, Seattle, WA 98101" +198783,Google Phone,1,600,05/27/19 09:06,"711 Forest St, Seattle, WA 98101" +198783,USB-C Charging Cable,1,11.95,05/27/19 09:06,"711 Forest St, Seattle, WA 98101" +198784,USB-C Charging Cable,1,11.95,05/24/19 20:42,"692 Lake St, San Francisco, CA 94016" +198785,34in Ultrawide Monitor,1,379.99,05/25/19 14:53,"518 Chestnut St, Seattle, WA 98101" +198786,Wired Headphones,1,11.99,05/20/19 18:15,"93 1st St, New York City, NY 10001" +198787,AAA Batteries (4-pack),2,2.99,05/04/19 10:38,"532 North St, Atlanta, GA 30301" +198788,AAA Batteries (4-pack),1,2.99,05/05/19 12:56,"240 9th St, San Francisco, CA 94016" +198789,Wired Headphones,1,11.99,05/04/19 13:44,"366 Lakeview St, Seattle, WA 98101" +198790,iPhone,1,700,05/18/19 18:44,"510 1st St, San Francisco, CA 94016" +198791,AA Batteries (4-pack),2,3.84,05/01/19 17:27,"594 Hickory St, Los Angeles, CA 90001" +198792,AAA Batteries (4-pack),2,2.99,05/16/19 06:06,"899 Spruce St, San Francisco, CA 94016" +198793,Apple Airpods Headphones,1,150,05/12/19 19:04,"455 Cherry St, San Francisco, CA 94016" +198794,USB-C Charging Cable,1,11.95,05/24/19 18:40,"205 8th St, Austin, TX 73301" +198795,Bose SoundSport Headphones,1,99.99,05/23/19 12:01,"927 10th St, Seattle, WA 98101" +198796,AAA Batteries (4-pack),2,2.99,05/06/19 23:41,"96 Highland St, Dallas, TX 75001" +198797,USB-C Charging Cable,1,11.95,05/15/19 14:00,"778 2nd St, Los Angeles, CA 90001" +198798,Wired Headphones,1,11.99,05/21/19 18:23,"607 Lake St, Los Angeles, CA 90001" +198799,27in FHD Monitor,1,149.99,05/16/19 23:19,"619 Wilson St, Boston, MA 02215" +198800,AAA Batteries (4-pack),1,2.99,05/15/19 14:02,"574 Ridge St, San Francisco, CA 94016" +198801,Lightning Charging Cable,1,14.95,05/03/19 23:53,"596 Wilson St, Los Angeles, CA 90001" +198802,Bose SoundSport Headphones,1,99.99,05/09/19 13:00,"578 Madison St, New York City, NY 10001" +198803,AA Batteries (4-pack),1,3.84,05/18/19 14:51,"763 5th St, Los Angeles, CA 90001" +198804,USB-C Charging Cable,2,11.95,05/05/19 14:11,"608 Forest St, Seattle, WA 98101" +198805,USB-C Charging Cable,1,11.95,05/21/19 12:31,"194 Center St, San Francisco, CA 94016" +198806,Bose SoundSport Headphones,1,99.99,05/29/19 07:50,"381 River St, Austin, TX 73301" +198807,Lightning Charging Cable,1,14.95,05/09/19 14:43,"952 9th St, San Francisco, CA 94016" +198808,Wired Headphones,1,11.99,05/11/19 12:03,"958 Center St, Los Angeles, CA 90001" +198809,34in Ultrawide Monitor,1,379.99,05/17/19 23:12,"531 Maple St, San Francisco, CA 94016" +198810,34in Ultrawide Monitor,1,379.99,05/15/19 13:00,"239 Meadow St, Portland, OR 97035" +198810,Bose SoundSport Headphones,1,99.99,05/15/19 13:00,"239 Meadow St, Portland, OR 97035" +198811,Bose SoundSport Headphones,1,99.99,05/19/19 19:12,"933 9th St, Portland, OR 97035" +198812,Apple Airpods Headphones,1,150,05/18/19 20:01,"438 13th St, Dallas, TX 75001" +198813,Lightning Charging Cable,1,14.95,05/09/19 21:11,"872 South St, New York City, NY 10001" +198814,AA Batteries (4-pack),1,3.84,05/02/19 18:29,"132 Wilson St, Atlanta, GA 30301" +198815,Flatscreen TV,1,300,05/07/19 20:10,"741 8th St, Boston, MA 02215" +198816,Lightning Charging Cable,1,14.95,05/10/19 02:05,"334 6th St, San Francisco, CA 94016" +198817,USB-C Charging Cable,1,11.95,05/21/19 10:40,"955 Maple St, Portland, OR 97035" +198818,AA Batteries (4-pack),1,3.84,05/22/19 11:53,"630 14th St, Los Angeles, CA 90001" +198819,AAA Batteries (4-pack),2,2.99,05/21/19 16:43,"172 Lake St, Atlanta, GA 30301" +198820,Apple Airpods Headphones,1,150,05/16/19 16:53,"523 Washington St, San Francisco, CA 94016" +198821,Wired Headphones,1,11.99,05/20/19 13:13,"771 13th St, Seattle, WA 98101" +198822,AA Batteries (4-pack),2,3.84,05/20/19 09:20,"139 Washington St, New York City, NY 10001" +198823,Wired Headphones,1,11.99,05/19/19 20:00,"712 Walnut St, San Francisco, CA 94016" +198824,AA Batteries (4-pack),1,3.84,05/11/19 08:48,"423 Jefferson St, Atlanta, GA 30301" +198825,AAA Batteries (4-pack),1,2.99,05/19/19 14:39,"81 Church St, San Francisco, CA 94016" +198826,Apple Airpods Headphones,1,150,05/17/19 19:07,"720 Park St, Boston, MA 02215" +198827,Wired Headphones,1,11.99,05/29/19 21:09,"896 1st St, Los Angeles, CA 90001" +198828,34in Ultrawide Monitor,1,379.99,05/25/19 11:37,"894 Sunset St, Dallas, TX 75001" +198828,AA Batteries (4-pack),1,3.84,05/25/19 11:37,"894 Sunset St, Dallas, TX 75001" +198829,USB-C Charging Cable,1,11.95,05/08/19 09:49,"275 4th St, New York City, NY 10001" +198830,Wired Headphones,1,11.99,05/07/19 08:59,"524 Chestnut St, Boston, MA 02215" +198831,Lightning Charging Cable,1,14.95,05/19/19 19:50,"522 Wilson St, San Francisco, CA 94016" +198832,Apple Airpods Headphones,1,150,05/19/19 21:18,"525 Dogwood St, Boston, MA 02215" +198833,Lightning Charging Cable,1,14.95,05/21/19 16:01,"81 Elm St, San Francisco, CA 94016" +198834,Apple Airpods Headphones,1,150,05/31/19 22:29,"372 Pine St, Los Angeles, CA 90001" +198835,AA Batteries (4-pack),2,3.84,05/09/19 09:56,"725 Lake St, Seattle, WA 98101" +198836,USB-C Charging Cable,1,11.95,05/14/19 15:41,"87 Hill St, Los Angeles, CA 90001" +198837,AAA Batteries (4-pack),3,2.99,05/28/19 15:36,"839 Lakeview St, San Francisco, CA 94016" +198838,Lightning Charging Cable,1,14.95,05/24/19 03:19,"110 14th St, Portland, OR 97035" +198839,Apple Airpods Headphones,1,150,05/12/19 19:17,"962 North St, Atlanta, GA 30301" +198840,Lightning Charging Cable,1,14.95,05/04/19 09:35,"217 4th St, Dallas, TX 75001" +198841,Lightning Charging Cable,1,14.95,05/15/19 22:01,"923 Lincoln St, Dallas, TX 75001" +198842,USB-C Charging Cable,2,11.95,05/29/19 22:48,"401 Hill St, Portland, OR 97035" +198843,AAA Batteries (4-pack),3,2.99,05/10/19 01:29,"803 Jackson St, Dallas, TX 75001" +198844,Lightning Charging Cable,1,14.95,05/10/19 14:32,"171 9th St, Los Angeles, CA 90001" +198845,27in 4K Gaming Monitor,1,389.99,05/24/19 22:18,"666 Elm St, San Francisco, CA 94016" +198846,AAA Batteries (4-pack),1,2.99,05/31/19 21:56,"622 North St, Seattle, WA 98101" +198847,Wired Headphones,1,11.99,05/06/19 16:16,"232 Maple St, San Francisco, CA 94016" +198848,27in FHD Monitor,1,149.99,05/24/19 19:17,"756 Wilson St, Dallas, TX 75001" +198849,AA Batteries (4-pack),1,3.84,05/01/19 05:01,"993 West St, Atlanta, GA 30301" +198850,Wired Headphones,1,11.99,05/08/19 07:50,"322 Lake St, New York City, NY 10001" +198851,AAA Batteries (4-pack),1,2.99,05/15/19 22:28,"200 Dogwood St, Los Angeles, CA 90001" +198852,iPhone,1,700,05/25/19 14:12,"464 Washington St, New York City, NY 10001" +198853,USB-C Charging Cable,1,11.95,05/09/19 19:18,"549 Dogwood St, San Francisco, CA 94016" +198854,iPhone,1,700,05/21/19 23:15,"788 Lakeview St, Portland, OR 97035" +198855,Flatscreen TV,1,300,05/20/19 14:52,"435 River St, New York City, NY 10001" +198856,AAA Batteries (4-pack),1,2.99,05/20/19 23:18,"923 7th St, New York City, NY 10001" +198857,Vareebadd Phone,1,400,05/17/19 15:10,"296 South St, Austin, TX 73301" +198858,AA Batteries (4-pack),1,3.84,05/05/19 18:11,"427 Madison St, San Francisco, CA 94016" +198859,Flatscreen TV,1,300,05/23/19 11:18,"827 Sunset St, San Francisco, CA 94016" +198860,Lightning Charging Cable,1,14.95,05/10/19 07:56,"889 Lincoln St, New York City, NY 10001" +198861,Wired Headphones,1,11.99,05/17/19 22:22,"724 14th St, Boston, MA 02215" +198862,AA Batteries (4-pack),1,3.84,05/09/19 13:07,"601 10th St, San Francisco, CA 94016" +198863,Bose SoundSport Headphones,1,99.99,05/03/19 10:10,"739 Forest St, New York City, NY 10001" +198864,Wired Headphones,1,11.99,05/14/19 13:31,"485 Cedar St, Austin, TX 73301" +198865,AA Batteries (4-pack),1,3.84,05/22/19 05:48,"385 14th St, San Francisco, CA 94016" +198866,AA Batteries (4-pack),1,3.84,05/16/19 08:19,"453 8th St, Los Angeles, CA 90001" +198867,iPhone,1,700,05/11/19 19:06,"850 Center St, New York City, NY 10001" +198868,AAA Batteries (4-pack),2,2.99,05/04/19 11:23,"778 12th St, New York City, NY 10001" +198869,Lightning Charging Cable,1,14.95,05/15/19 18:36,"585 12th St, Atlanta, GA 30301" +198870,iPhone,1,700,05/30/19 07:39,"516 Cedar St, Atlanta, GA 30301" +198871,iPhone,1,700,05/01/19 09:38,"810 10th St, Los Angeles, CA 90001" +198872,Lightning Charging Cable,2,14.95,05/29/19 16:35,"313 Jefferson St, San Francisco, CA 94016" +198873,34in Ultrawide Monitor,1,379.99,05/03/19 03:07,"392 West St, Dallas, TX 75001" +198874,Wired Headphones,1,11.99,05/29/19 12:20,"825 Highland St, Los Angeles, CA 90001" +198875,Lightning Charging Cable,1,14.95,05/14/19 12:57,"741 8th St, Dallas, TX 75001" +198876,Macbook Pro Laptop,1,1700,05/03/19 09:13,"225 Jefferson St, Dallas, TX 75001" +198877,Google Phone,1,600,05/17/19 15:56,"529 2nd St, Portland, OR 97035" +198878,Lightning Charging Cable,1,14.95,05/08/19 21:37,"561 Johnson St, Atlanta, GA 30301" +198879,Wired Headphones,1,11.99,05/05/19 10:48,"180 Lincoln St, Los Angeles, CA 90001" +198880,AAA Batteries (4-pack),2,2.99,05/11/19 16:18,"725 Washington St, Los Angeles, CA 90001" +198881,Bose SoundSport Headphones,1,99.99,05/20/19 15:38,"661 Sunset St, San Francisco, CA 94016" +198882,Lightning Charging Cable,1,14.95,05/01/19 21:56,"461 Lincoln St, Portland, OR 97035" +198883,iPhone,1,700,05/22/19 00:00,"888 Willow St, Los Angeles, CA 90001" +198884,AAA Batteries (4-pack),1,2.99,05/21/19 21:11,"191 14th St, Seattle, WA 98101" +198885,USB-C Charging Cable,1,11.95,05/12/19 10:27,"59 6th St, New York City, NY 10001" +198886,34in Ultrawide Monitor,1,379.99,05/25/19 18:56,"104 Chestnut St, San Francisco, CA 94016" +198887,Lightning Charging Cable,1,14.95,05/04/19 12:00,"354 10th St, Seattle, WA 98101" +198888,USB-C Charging Cable,1,11.95,05/04/19 14:11,"458 Park St, Portland, OR 97035" +198889,AA Batteries (4-pack),2,3.84,05/18/19 18:39,"104 Elm St, Austin, TX 73301" +198890,Apple Airpods Headphones,1,150,05/20/19 16:42,"567 Main St, New York City, NY 10001" +198891,27in 4K Gaming Monitor,1,389.99,05/23/19 12:59,"430 Main St, Los Angeles, CA 90001" +198892,Apple Airpods Headphones,1,150,05/20/19 16:15,"532 Highland St, San Francisco, CA 94016" +198892,Lightning Charging Cable,1,14.95,05/20/19 16:15,"532 Highland St, San Francisco, CA 94016" +198893,Wired Headphones,1,11.99,05/20/19 23:01,"157 Madison St, San Francisco, CA 94016" +198894,USB-C Charging Cable,2,11.95,05/29/19 17:22,"755 Forest St, Boston, MA 02215" +198895,USB-C Charging Cable,1,11.95,05/07/19 13:19,"570 13th St, Boston, MA 02215" +198896,Bose SoundSport Headphones,1,99.99,05/19/19 11:30,"56 5th St, Dallas, TX 75001" +198897,Vareebadd Phone,1,400,05/04/19 10:01,"37 Washington St, New York City, NY 10001" +198897,USB-C Charging Cable,2,11.95,05/04/19 10:01,"37 Washington St, New York City, NY 10001" +198898,Wired Headphones,1,11.99,05/08/19 22:21,"131 Ridge St, Austin, TX 73301" +198899,Wired Headphones,1,11.99,05/01/19 23:00,"410 Forest St, San Francisco, CA 94016" +198900,Lightning Charging Cable,1,14.95,05/22/19 20:30,"20 Washington St, Seattle, WA 98101" +198901,27in FHD Monitor,1,149.99,05/05/19 12:11,"178 Ridge St, San Francisco, CA 94016" +198902,iPhone,1,700,05/30/19 08:15,"580 Church St, New York City, NY 10001" +198903,AAA Batteries (4-pack),1,2.99,05/12/19 18:30,"757 9th St, San Francisco, CA 94016" +198904,AA Batteries (4-pack),1,3.84,05/17/19 13:31,"904 Walnut St, Boston, MA 02215" +198905,Bose SoundSport Headphones,1,99.99,05/10/19 19:53,"759 South St, Dallas, TX 75001" +198906,AAA Batteries (4-pack),1,2.99,05/16/19 11:51,"617 4th St, Los Angeles, CA 90001" +198907,Apple Airpods Headphones,1,150,05/25/19 21:55,"661 13th St, Austin, TX 73301" +198908,AAA Batteries (4-pack),1,2.99,05/25/19 20:19,"527 Chestnut St, Atlanta, GA 30301" +198909,Bose SoundSport Headphones,1,99.99,05/15/19 17:28,"291 Maple St, Los Angeles, CA 90001" +198910,Lightning Charging Cable,1,14.95,05/09/19 22:33,"106 1st St, Seattle, WA 98101" +198911,AAA Batteries (4-pack),1,2.99,05/23/19 20:27,"440 Dogwood St, San Francisco, CA 94016" +198911,iPhone,1,700,05/23/19 20:27,"440 Dogwood St, San Francisco, CA 94016" +198912,AAA Batteries (4-pack),1,2.99,05/22/19 11:38,"212 Center St, Austin, TX 73301" +198913,AAA Batteries (4-pack),1,2.99,05/26/19 12:46,"106 Pine St, New York City, NY 10001" +198914,Google Phone,1,600,05/02/19 09:39,"861 Hickory St, New York City, NY 10001" +198914,USB-C Charging Cable,2,11.95,05/02/19 09:39,"861 Hickory St, New York City, NY 10001" +198915,27in FHD Monitor,1,149.99,05/06/19 10:29,"528 Ridge St, Portland, OR 97035" +198916,AAA Batteries (4-pack),2,2.99,05/07/19 10:21,"425 11th St, Portland, ME 04101" +198917,Wired Headphones,1,11.99,05/20/19 15:15,"480 Cherry St, Seattle, WA 98101" +198918,Bose SoundSport Headphones,1,99.99,05/08/19 13:25,"965 Hill St, Atlanta, GA 30301" +198919,iPhone,1,700,05/20/19 23:45,"492 9th St, San Francisco, CA 94016" +198920,34in Ultrawide Monitor,1,379.99,05/02/19 17:10,"270 Lakeview St, Seattle, WA 98101" +198921,Wired Headphones,1,11.99,05/19/19 13:19,"117 Walnut St, San Francisco, CA 94016" +198922,Lightning Charging Cable,1,14.95,05/14/19 10:48,"757 2nd St, San Francisco, CA 94016" +198923,27in 4K Gaming Monitor,1,389.99,05/23/19 19:48,"303 Hill St, Seattle, WA 98101" +198924,USB-C Charging Cable,1,11.95,05/11/19 06:53,"812 Chestnut St, Boston, MA 02215" +198925,Google Phone,1,600,05/14/19 12:51,"428 South St, San Francisco, CA 94016" +198925,USB-C Charging Cable,1,11.95,05/14/19 12:51,"428 South St, San Francisco, CA 94016" +198925,Bose SoundSport Headphones,1,99.99,05/14/19 12:51,"428 South St, San Francisco, CA 94016" +198925,Wired Headphones,1,11.99,05/14/19 12:51,"428 South St, San Francisco, CA 94016" +198926,Google Phone,1,600,05/15/19 15:17,"643 1st St, Los Angeles, CA 90001" +198927,iPhone,1,700,05/22/19 19:11,"638 Hill St, Portland, OR 97035" +198927,Lightning Charging Cable,1,14.95,05/22/19 19:11,"638 Hill St, Portland, OR 97035" +198927,Apple Airpods Headphones,1,150,05/22/19 19:11,"638 Hill St, Portland, OR 97035" +198928,Lightning Charging Cable,1,14.95,05/02/19 23:35,"239 Pine St, San Francisco, CA 94016" +198929,Apple Airpods Headphones,1,150,05/14/19 10:03,"991 Maple St, New York City, NY 10001" +198930,AA Batteries (4-pack),1,3.84,05/29/19 08:27,"786 Main St, Atlanta, GA 30301" +198931,Google Phone,1,600,05/31/19 19:11,"513 Lakeview St, Seattle, WA 98101" +198932,Bose SoundSport Headphones,1,99.99,05/19/19 16:34,"386 7th St, Dallas, TX 75001" +198933,AA Batteries (4-pack),1,3.84,05/18/19 10:21,"636 Lakeview St, Los Angeles, CA 90001" +198934,Lightning Charging Cable,1,14.95,05/30/19 23:23,"119 10th St, Dallas, TX 75001" +198935,AAA Batteries (4-pack),2,2.99,05/30/19 10:50,"720 Spruce St, Los Angeles, CA 90001" +198936,AAA Batteries (4-pack),1,2.99,05/20/19 21:27,"933 10th St, Atlanta, GA 30301" +198937,34in Ultrawide Monitor,1,379.99,05/31/19 19:09,"991 Forest St, Los Angeles, CA 90001" +198938,27in FHD Monitor,1,149.99,05/10/19 17:24,"823 Cedar St, San Francisco, CA 94016" +198939,34in Ultrawide Monitor,1,379.99,05/27/19 21:07,"953 Adams St, San Francisco, CA 94016" +198940,27in FHD Monitor,1,149.99,05/17/19 22:47,"907 Johnson St, Los Angeles, CA 90001" +198941,AA Batteries (4-pack),4,3.84,05/15/19 10:54,"842 Dogwood St, Los Angeles, CA 90001" +198942,AA Batteries (4-pack),1,3.84,05/29/19 06:12,"744 Center St, Los Angeles, CA 90001" +198942,AAA Batteries (4-pack),3,2.99,05/29/19 06:12,"744 Center St, Los Angeles, CA 90001" +198943,AA Batteries (4-pack),1,3.84,05/07/19 16:00,"837 Walnut St, San Francisco, CA 94016" +198944,USB-C Charging Cable,1,11.95,05/11/19 10:37,"971 13th St, New York City, NY 10001" +198945,Google Phone,1,600,05/20/19 19:33,"14 Forest St, San Francisco, CA 94016" +198945,Bose SoundSport Headphones,1,99.99,05/20/19 19:33,"14 Forest St, San Francisco, CA 94016" +198946,iPhone,1,700,05/22/19 22:15,"6 Jefferson St, Atlanta, GA 30301" +198947,Lightning Charging Cable,1,14.95,05/08/19 14:14,"698 Wilson St, Los Angeles, CA 90001" +198948,Apple Airpods Headphones,1,150,05/30/19 11:54,"530 14th St, Los Angeles, CA 90001" +198949,USB-C Charging Cable,1,11.95,05/19/19 21:31,"459 12th St, Los Angeles, CA 90001" +198950,Wired Headphones,1,11.99,05/08/19 00:44,"139 Park St, Portland, OR 97035" +198951,27in FHD Monitor,1,149.99,05/26/19 09:12,"110 Lake St, Dallas, TX 75001" +198952,AA Batteries (4-pack),1,3.84,05/13/19 12:30,"391 Meadow St, New York City, NY 10001" +198953,Flatscreen TV,1,300,05/08/19 13:36,"641 Adams St, New York City, NY 10001" +198954,Wired Headphones,1,11.99,05/12/19 11:59,"371 Jackson St, San Francisco, CA 94016" +198955,Lightning Charging Cable,1,14.95,05/21/19 13:42,"128 Cherry St, New York City, NY 10001" +198956,20in Monitor,1,109.99,05/12/19 14:47,"692 Lake St, Dallas, TX 75001" +198957,iPhone,1,700,05/05/19 11:51,"94 1st St, San Francisco, CA 94016" +198958,AAA Batteries (4-pack),2,2.99,05/01/19 15:38,"648 Madison St, San Francisco, CA 94016" +198959,Lightning Charging Cable,1,14.95,05/18/19 18:06,"911 Sunset St, Boston, MA 02215" +198960,Lightning Charging Cable,1,14.95,05/23/19 13:37,"686 11th St, Dallas, TX 75001" +198961,AA Batteries (4-pack),2,3.84,05/07/19 20:39,"111 Spruce St, Seattle, WA 98101" +198962,Lightning Charging Cable,1,14.95,05/29/19 11:03,"28 14th St, Seattle, WA 98101" +198963,ThinkPad Laptop,1,999.99,05/27/19 16:59,"874 11th St, New York City, NY 10001" +198964,Wired Headphones,1,11.99,05/28/19 18:38,"986 Lakeview St, San Francisco, CA 94016" +198965,Google Phone,1,600,05/06/19 21:40,"873 14th St, San Francisco, CA 94016" +198966,Apple Airpods Headphones,1,150,05/28/19 19:31,"265 Cherry St, New York City, NY 10001" +198967,AA Batteries (4-pack),1,3.84,05/28/19 08:22,"816 Washington St, New York City, NY 10001" +198968,Wired Headphones,1,11.99,05/31/19 14:25,"859 Cedar St, Los Angeles, CA 90001" +198969,AAA Batteries (4-pack),2,2.99,05/18/19 13:05,"596 5th St, San Francisco, CA 94016" +198970,Flatscreen TV,1,300,05/07/19 09:21,"620 10th St, New York City, NY 10001" +198971,USB-C Charging Cable,1,11.95,05/08/19 20:40,"724 Dogwood St, San Francisco, CA 94016" +198972,Bose SoundSport Headphones,1,99.99,05/17/19 17:45,"92 Pine St, Los Angeles, CA 90001" +198973,27in FHD Monitor,1,149.99,05/04/19 18:44,"132 Sunset St, Boston, MA 02215" +198974,USB-C Charging Cable,1,11.95,05/23/19 19:29,"55 Hill St, Boston, MA 02215" +198975,Flatscreen TV,1,300,05/31/19 12:43,"65 1st St, Boston, MA 02215" +198976,34in Ultrawide Monitor,1,379.99,05/12/19 16:26,"293 Main St, San Francisco, CA 94016" +198977,AA Batteries (4-pack),1,3.84,05/10/19 13:58,"417 Hickory St, San Francisco, CA 94016" +198978,LG Washing Machine,1,600.0,05/14/19 00:26,"952 Ridge St, Atlanta, GA 30301" +198979,AAA Batteries (4-pack),2,2.99,05/19/19 15:00,"246 Madison St, Atlanta, GA 30301" +198980,USB-C Charging Cable,1,11.95,05/04/19 19:57,"444 Dogwood St, San Francisco, CA 94016" +198981,AA Batteries (4-pack),1,3.84,05/08/19 12:22,"414 Johnson St, Seattle, WA 98101" +198982,Bose SoundSport Headphones,1,99.99,05/04/19 16:47,"607 Ridge St, Dallas, TX 75001" +198983,Bose SoundSport Headphones,1,99.99,05/24/19 12:28,"999 Park St, New York City, NY 10001" +198984,AAA Batteries (4-pack),3,2.99,05/07/19 11:29,"681 Highland St, Seattle, WA 98101" +198985,27in 4K Gaming Monitor,1,389.99,05/24/19 18:01,"835 Maple St, San Francisco, CA 94016" +198986,AAA Batteries (4-pack),2,2.99,05/23/19 13:51,"781 Park St, Portland, OR 97035" +198987,Macbook Pro Laptop,1,1700,05/12/19 05:06,"611 Church St, Boston, MA 02215" +198988,Lightning Charging Cable,1,14.95,05/08/19 10:47,"928 Cherry St, San Francisco, CA 94016" +198989,USB-C Charging Cable,1,11.95,05/30/19 12:16,"20 River St, San Francisco, CA 94016" +198990,USB-C Charging Cable,2,11.95,05/19/19 23:05,"49 Hickory St, San Francisco, CA 94016" +198991,AA Batteries (4-pack),1,3.84,05/30/19 14:32,"943 Hickory St, Atlanta, GA 30301" +198992,AAA Batteries (4-pack),1,2.99,05/27/19 22:41,"3 4th St, San Francisco, CA 94016" +198993,AA Batteries (4-pack),3,3.84,05/04/19 09:28,"273 13th St, San Francisco, CA 94016" +198994,Wired Headphones,1,11.99,05/07/19 20:36,"503 Maple St, New York City, NY 10001" +198995,USB-C Charging Cable,1,11.95,05/06/19 12:14,"45 Chestnut St, San Francisco, CA 94016" +198996,ThinkPad Laptop,1,999.99,05/04/19 13:44,"170 10th St, New York City, NY 10001" +198997,Apple Airpods Headphones,1,150,05/25/19 18:13,"755 Spruce St, San Francisco, CA 94016" +198998,AA Batteries (4-pack),1,3.84,05/11/19 12:37,"418 Lakeview St, Los Angeles, CA 90001" +198999,Macbook Pro Laptop,1,1700,05/29/19 10:53,"941 6th St, Portland, OR 97035" +199000,AAA Batteries (4-pack),1,2.99,05/28/19 16:28,"630 Chestnut St, Austin, TX 73301" +199001,AA Batteries (4-pack),1,3.84,05/16/19 07:03,"996 2nd St, San Francisco, CA 94016" +199002,USB-C Charging Cable,1,11.95,05/26/19 18:29,"587 Hill St, Atlanta, GA 30301" +199003,27in FHD Monitor,1,149.99,05/08/19 15:20,"311 12th St, Portland, OR 97035" +199004,LG Dryer,1,600.0,05/19/19 13:42,"827 Elm St, Los Angeles, CA 90001" +199005,Lightning Charging Cable,1,14.95,05/24/19 20:03,"169 Center St, Los Angeles, CA 90001" +199006,AAA Batteries (4-pack),2,2.99,05/03/19 10:32,"749 Willow St, Boston, MA 02215" +199007,USB-C Charging Cable,1,11.95,05/24/19 16:19,"675 11th St, Dallas, TX 75001" +199008,AAA Batteries (4-pack),3,2.99,05/17/19 10:52,"807 Hickory St, Boston, MA 02215" +199009,Macbook Pro Laptop,1,1700,05/18/19 10:08,"806 Lake St, San Francisco, CA 94016" +199010,27in FHD Monitor,1,149.99,05/14/19 02:07,"388 North St, Boston, MA 02215" +199011,ThinkPad Laptop,1,999.99,05/07/19 11:16,"81 Elm St, San Francisco, CA 94016" +199012,AAA Batteries (4-pack),1,2.99,05/23/19 22:24,"942 8th St, Portland, ME 04101" +199013,ThinkPad Laptop,1,999.99,05/26/19 08:58,"610 Willow St, San Francisco, CA 94016" +199014,Lightning Charging Cable,1,14.95,05/19/19 12:30,"456 Hill St, Los Angeles, CA 90001" +199015,Bose SoundSport Headphones,1,99.99,05/03/19 14:00,"260 Spruce St, San Francisco, CA 94016" +199016,AA Batteries (4-pack),1,3.84,05/20/19 23:52,"573 Forest St, San Francisco, CA 94016" +199017,AAA Batteries (4-pack),1,2.99,05/12/19 14:14,"403 9th St, Seattle, WA 98101" +199018,Google Phone,1,600,06/01/19 00:18,"51 Chestnut St, San Francisco, CA 94016" +199019,AAA Batteries (4-pack),2,2.99,05/05/19 10:24,"695 Meadow St, Los Angeles, CA 90001" +199020,Wired Headphones,1,11.99,05/05/19 22:32,"700 Johnson St, Boston, MA 02215" +199021,ThinkPad Laptop,1,999.99,05/18/19 19:16,"813 6th St, New York City, NY 10001" +199022,34in Ultrawide Monitor,1,379.99,05/07/19 23:15,"812 Dogwood St, Atlanta, GA 30301" +199023,Bose SoundSport Headphones,1,99.99,05/06/19 09:01,"331 11th St, New York City, NY 10001" +199024,Lightning Charging Cable,1,14.95,05/18/19 20:19,"402 Willow St, Los Angeles, CA 90001" +199025,iPhone,1,700,05/24/19 21:23,"104 Adams St, San Francisco, CA 94016" +199026,Bose SoundSport Headphones,1,99.99,05/15/19 16:37,"208 Hill St, Seattle, WA 98101" +199027,USB-C Charging Cable,1,11.95,05/15/19 12:12,"473 12th St, New York City, NY 10001" +199028,AAA Batteries (4-pack),1,2.99,05/09/19 22:35,"970 14th St, Dallas, TX 75001" +199029,20in Monitor,1,109.99,05/26/19 14:56,"11 Johnson St, San Francisco, CA 94016" +199030,USB-C Charging Cable,1,11.95,05/28/19 10:54,"181 1st St, Seattle, WA 98101" +199031,AAA Batteries (4-pack),1,2.99,05/15/19 18:22,"586 West St, Dallas, TX 75001" +199032,AA Batteries (4-pack),4,3.84,05/15/19 22:56,"439 Lake St, San Francisco, CA 94016" +199033,Wired Headphones,1,11.99,05/31/19 22:42,"186 Pine St, Los Angeles, CA 90001" +199034,Flatscreen TV,1,300,05/28/19 10:24,"157 9th St, Seattle, WA 98101" +199035,20in Monitor,1,109.99,05/08/19 12:55,"94 Lake St, Boston, MA 02215" +199036,iPhone,1,700,05/06/19 21:41,"469 7th St, Austin, TX 73301" +199037,AAA Batteries (4-pack),1,2.99,05/12/19 07:54,"924 4th St, Portland, ME 04101" +199038,Apple Airpods Headphones,1,150,05/31/19 13:09,"975 5th St, San Francisco, CA 94016" +199039,USB-C Charging Cable,1,11.95,05/02/19 15:48,"586 Jackson St, San Francisco, CA 94016" +199040,USB-C Charging Cable,1,11.95,05/27/19 22:02,"832 Lakeview St, Los Angeles, CA 90001" +199041,Lightning Charging Cable,1,14.95,05/25/19 00:04,"483 Pine St, San Francisco, CA 94016" +199042,20in Monitor,1,109.99,05/05/19 20:58,"841 Dogwood St, San Francisco, CA 94016" +199043,Lightning Charging Cable,1,14.95,05/06/19 11:18,"339 8th St, San Francisco, CA 94016" +199044,USB-C Charging Cable,1,11.95,05/05/19 11:18,"597 West St, Los Angeles, CA 90001" +199045,Wired Headphones,1,11.99,05/13/19 10:46,"31 Spruce St, Los Angeles, CA 90001" +199046,27in FHD Monitor,1,149.99,05/24/19 11:16,"948 1st St, San Francisco, CA 94016" +199047,Wired Headphones,1,11.99,05/09/19 00:58,"529 Maple St, Portland, OR 97035" +199048,USB-C Charging Cable,1,11.95,05/24/19 20:30,"603 Highland St, Atlanta, GA 30301" +199049,AA Batteries (4-pack),1,3.84,05/31/19 16:03,"189 Cherry St, Atlanta, GA 30301" +199050,AA Batteries (4-pack),1,3.84,05/19/19 17:40,"69 11th St, Atlanta, GA 30301" +199050,Lightning Charging Cable,1,14.95,05/19/19 17:40,"69 11th St, Atlanta, GA 30301" +199051,AA Batteries (4-pack),2,3.84,05/24/19 14:59,"958 Wilson St, New York City, NY 10001" +199052,Lightning Charging Cable,1,14.95,05/31/19 20:12,"141 Lincoln St, Los Angeles, CA 90001" +199053,Lightning Charging Cable,1,14.95,05/03/19 20:54,"301 Park St, San Francisco, CA 94016" +199054,USB-C Charging Cable,1,11.95,05/09/19 11:11,"377 14th St, Seattle, WA 98101" +199055,AAA Batteries (4-pack),1,2.99,05/24/19 20:00,"774 4th St, San Francisco, CA 94016" +199056,USB-C Charging Cable,1,11.95,05/28/19 00:53,"27 Hickory St, Atlanta, GA 30301" +199057,LG Dryer,1,600.0,05/19/19 05:11,"34 Sunset St, Portland, OR 97035" +199058,AAA Batteries (4-pack),1,2.99,05/18/19 11:34,"350 Hill St, Boston, MA 02215" +199059,Apple Airpods Headphones,1,150,05/17/19 13:55,"209 Ridge St, Boston, MA 02215" +199060,USB-C Charging Cable,1,11.95,05/03/19 13:44,"192 9th St, Dallas, TX 75001" +199061,USB-C Charging Cable,1,11.95,05/24/19 19:12,"599 8th St, Los Angeles, CA 90001" +199062,20in Monitor,1,109.99,05/08/19 19:52,"718 9th St, Austin, TX 73301" +199063,AA Batteries (4-pack),2,3.84,05/09/19 15:55,"710 Adams St, Seattle, WA 98101" +199064,USB-C Charging Cable,1,11.95,05/03/19 13:52,"943 North St, Portland, OR 97035" +199065,34in Ultrawide Monitor,1,379.99,05/20/19 11:05,"432 4th St, New York City, NY 10001" +199066,Wired Headphones,1,11.99,05/01/19 17:06,"387 South St, Dallas, TX 75001" +199067,AAA Batteries (4-pack),2,2.99,05/09/19 16:07,"645 5th St, Austin, TX 73301" +199068,Lightning Charging Cable,2,14.95,05/05/19 13:32,"883 South St, San Francisco, CA 94016" +199069,Google Phone,1,600,05/22/19 10:08,"604 Washington St, Portland, ME 04101" +199069,USB-C Charging Cable,2,11.95,05/22/19 10:08,"604 Washington St, Portland, ME 04101" +199070,Bose SoundSport Headphones,1,99.99,05/24/19 11:20,"786 14th St, San Francisco, CA 94016" +199071,AA Batteries (4-pack),1,3.84,05/11/19 02:03,"135 Sunset St, Atlanta, GA 30301" +199072,AA Batteries (4-pack),1,3.84,05/22/19 19:49,"54 North St, New York City, NY 10001" +199073,Lightning Charging Cable,1,14.95,05/04/19 23:00,"18 Lakeview St, New York City, NY 10001" +199074,AAA Batteries (4-pack),1,2.99,05/13/19 20:21,"847 6th St, Los Angeles, CA 90001" +199075,Wired Headphones,1,11.99,05/21/19 11:14,"247 Jackson St, Portland, ME 04101" +199076,Lightning Charging Cable,1,14.95,05/15/19 16:47,"285 Walnut St, New York City, NY 10001" +199077,Wired Headphones,1,11.99,05/18/19 23:58,"629 Elm St, New York City, NY 10001" +199078,Google Phone,1,600,05/25/19 18:09,"928 Main St, New York City, NY 10001" +199079,Wired Headphones,1,11.99,05/11/19 08:26,"934 Washington St, Dallas, TX 75001" +199080,Apple Airpods Headphones,1,150,05/28/19 13:38,"349 Lakeview St, Los Angeles, CA 90001" +199081,Macbook Pro Laptop,1,1700,05/26/19 13:24,"996 Cherry St, Atlanta, GA 30301" +199082,Google Phone,1,600,05/07/19 11:38,"779 Church St, Seattle, WA 98101" +199083,27in FHD Monitor,1,149.99,05/23/19 13:09,"677 Lincoln St, New York City, NY 10001" +199084,AAA Batteries (4-pack),1,2.99,05/03/19 18:25,"847 Highland St, Austin, TX 73301" +199085,AA Batteries (4-pack),1,3.84,05/28/19 19:40,"536 Pine St, Portland, ME 04101" +199086,Lightning Charging Cable,1,14.95,05/25/19 06:45,"164 Sunset St, Portland, OR 97035" +199087,34in Ultrawide Monitor,1,379.99,05/09/19 18:57,"230 Washington St, San Francisco, CA 94016" +199088,AAA Batteries (4-pack),1,2.99,05/12/19 12:58,"556 North St, San Francisco, CA 94016" +199089,27in FHD Monitor,1,149.99,05/06/19 19:19,"817 6th St, Los Angeles, CA 90001" +199090,Bose SoundSport Headphones,1,99.99,05/28/19 07:59,"25 Church St, Austin, TX 73301" +199091,Lightning Charging Cable,1,14.95,05/23/19 21:44,"878 Meadow St, Boston, MA 02215" +199092,27in FHD Monitor,1,149.99,05/22/19 19:39,"327 Johnson St, Atlanta, GA 30301" +199093,AAA Batteries (4-pack),1,2.99,05/19/19 18:51,"57 Madison St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +199094,AA Batteries (4-pack),1,3.84,05/16/19 15:25,"201 Adams St, Dallas, TX 75001" +199095,Bose SoundSport Headphones,1,99.99,05/06/19 18:19,"340 Highland St, Atlanta, GA 30301" +199096,Wired Headphones,1,11.99,05/30/19 18:59,"229 Spruce St, Los Angeles, CA 90001" +199097,Wired Headphones,1,11.99,05/15/19 12:11,"187 West St, New York City, NY 10001" +199098,20in Monitor,1,109.99,05/23/19 16:31,"600 Hill St, Boston, MA 02215" +199099,AA Batteries (4-pack),1,3.84,05/23/19 12:52,"906 Elm St, Boston, MA 02215" +199100,Vareebadd Phone,1,400,05/29/19 17:09,"852 Jefferson St, Los Angeles, CA 90001" +199101,Bose SoundSport Headphones,1,99.99,05/12/19 11:54,"350 Lincoln St, Los Angeles, CA 90001" +199102,Wired Headphones,1,11.99,05/16/19 18:03,"968 Ridge St, Austin, TX 73301" +199103,iPhone,1,700,05/29/19 12:24,"768 14th St, San Francisco, CA 94016" +199104,iPhone,1,700,05/16/19 17:51,"513 Wilson St, Portland, OR 97035" +199105,AA Batteries (4-pack),2,3.84,05/08/19 15:31,"504 Pine St, San Francisco, CA 94016" +199106,AA Batteries (4-pack),1,3.84,05/18/19 20:22,"344 West St, Los Angeles, CA 90001" +199107,AA Batteries (4-pack),2,3.84,05/03/19 21:02,"321 Center St, Atlanta, GA 30301" +199108,Apple Airpods Headphones,1,150,05/15/19 11:14,"387 10th St, Seattle, WA 98101" +199109,Google Phone,1,600,05/13/19 10:03,"206 6th St, Los Angeles, CA 90001" +199109,USB-C Charging Cable,2,11.95,05/13/19 10:03,"206 6th St, Los Angeles, CA 90001" +199110,Lightning Charging Cable,1,14.95,05/26/19 12:24,"666 Cedar St, San Francisco, CA 94016" +199111,USB-C Charging Cable,1,11.95,05/30/19 08:49,"335 South St, Los Angeles, CA 90001" +199112,27in FHD Monitor,1,149.99,05/03/19 09:16,"623 South St, Atlanta, GA 30301" +199113,Wired Headphones,1,11.99,05/19/19 10:48,"15 Forest St, Atlanta, GA 30301" +199114,AA Batteries (4-pack),1,3.84,05/04/19 11:48,"61 Elm St, San Francisco, CA 94016" +199115,AAA Batteries (4-pack),2,2.99,05/23/19 18:30,"175 12th St, Boston, MA 02215" +199116,Wired Headphones,1,11.99,05/11/19 15:50,"447 Chestnut St, New York City, NY 10001" +199117,AAA Batteries (4-pack),1,2.99,05/06/19 09:23,"772 12th St, Boston, MA 02215" +199118,USB-C Charging Cable,1,11.95,05/23/19 11:32,"517 Washington St, San Francisco, CA 94016" +199119,34in Ultrawide Monitor,1,379.99,05/11/19 18:55,"82 Sunset St, New York City, NY 10001" +199120,Lightning Charging Cable,1,14.95,05/28/19 06:36,"899 Ridge St, Dallas, TX 75001" +199121,Wired Headphones,1,11.99,05/14/19 14:32,"610 South St, Portland, OR 97035" +199122,AAA Batteries (4-pack),2,2.99,05/27/19 11:12,"804 Forest St, Atlanta, GA 30301" +199123,AAA Batteries (4-pack),2,2.99,05/16/19 16:31,"532 Maple St, Atlanta, GA 30301" +199124,34in Ultrawide Monitor,1,379.99,05/02/19 13:43,"579 Washington St, San Francisco, CA 94016" +199125,Wired Headphones,1,11.99,05/07/19 10:35,"730 Cherry St, Boston, MA 02215" +199126,Google Phone,1,600,05/24/19 17:26,"125 10th St, Atlanta, GA 30301" +199127,USB-C Charging Cable,1,11.95,05/24/19 19:17,"586 10th St, Boston, MA 02215" +199128,Lightning Charging Cable,1,14.95,05/15/19 10:51,"378 Maple St, Portland, OR 97035" +199129,AAA Batteries (4-pack),1,2.99,05/06/19 12:12,"295 Cherry St, Boston, MA 02215" +199130,20in Monitor,1,109.99,05/08/19 09:21,"952 6th St, Atlanta, GA 30301" +199131,Vareebadd Phone,1,400,05/10/19 09:48,"666 Madison St, Boston, MA 02215" +199132,USB-C Charging Cable,1,11.95,05/26/19 23:30,"324 Pine St, San Francisco, CA 94016" +199133,Flatscreen TV,1,300,05/10/19 12:34,"318 Hickory St, Los Angeles, CA 90001" +199134,Lightning Charging Cable,1,14.95,05/20/19 15:01,"219 Johnson St, San Francisco, CA 94016" +199135,Wired Headphones,1,11.99,05/24/19 15:58,"374 Highland St, Dallas, TX 75001" +199136,Wired Headphones,1,11.99,05/01/19 10:40,"457 Cherry St, New York City, NY 10001" +199137,Lightning Charging Cable,1,14.95,05/27/19 11:38,"237 12th St, San Francisco, CA 94016" +199138,USB-C Charging Cable,1,11.95,05/01/19 10:20,"387 Forest St, Los Angeles, CA 90001" +199139,Macbook Pro Laptop,1,1700,05/15/19 08:23,"3 Meadow St, Dallas, TX 75001" +199140,USB-C Charging Cable,1,11.95,05/20/19 10:39,"791 10th St, Los Angeles, CA 90001" +199141,Macbook Pro Laptop,1,1700,05/13/19 09:30,"307 5th St, Los Angeles, CA 90001" +199142,Bose SoundSport Headphones,1,99.99,05/30/19 19:02,"95 Wilson St, San Francisco, CA 94016" +199143,USB-C Charging Cable,1,11.95,05/16/19 15:20,"693 Jefferson St, Los Angeles, CA 90001" +199144,Wired Headphones,1,11.99,05/29/19 20:26,"811 Wilson St, Los Angeles, CA 90001" +199145,Wired Headphones,1,11.99,05/25/19 20:34,"957 14th St, Boston, MA 02215" +199146,Google Phone,1,600,05/11/19 20:30,"463 Cedar St, San Francisco, CA 94016" +199147,Bose SoundSport Headphones,1,99.99,05/02/19 22:25,"274 Ridge St, New York City, NY 10001" +199148,Google Phone,1,600,05/09/19 14:10,"339 9th St, Dallas, TX 75001" +199149,Apple Airpods Headphones,1,150,05/05/19 14:54,"881 Adams St, Portland, OR 97035" +199150,USB-C Charging Cable,1,11.95,05/09/19 21:06,"619 10th St, Atlanta, GA 30301" +199151,ThinkPad Laptop,1,999.99,05/10/19 16:59,"677 9th St, Seattle, WA 98101" +199152,AA Batteries (4-pack),1,3.84,05/05/19 08:16,"385 Wilson St, Seattle, WA 98101" +199153,Bose SoundSport Headphones,1,99.99,05/31/19 19:51,"95 Cedar St, San Francisco, CA 94016" +199154,Macbook Pro Laptop,1,1700,05/04/19 20:30,"726 12th St, San Francisco, CA 94016" +199155,AAA Batteries (4-pack),1,2.99,05/14/19 15:04,"794 Main St, Dallas, TX 75001" +199156,Wired Headphones,1,11.99,05/08/19 22:45,"698 4th St, Dallas, TX 75001" +199157,USB-C Charging Cable,1,11.95,05/11/19 00:06,"516 Spruce St, Austin, TX 73301" +199158,Google Phone,1,600,05/06/19 14:35,"313 Meadow St, Boston, MA 02215" +199159,iPhone,1,700,05/07/19 11:11,"785 Lake St, Seattle, WA 98101" +199160,20in Monitor,1,109.99,05/20/19 12:23,"606 Jackson St, Portland, ME 04101" +199161,Apple Airpods Headphones,1,150,05/05/19 19:26,"825 South St, San Francisco, CA 94016" +199162,Bose SoundSport Headphones,1,99.99,05/04/19 07:01,"118 Meadow St, Portland, OR 97035" +199163,Lightning Charging Cable,1,14.95,05/20/19 15:58,"904 Cherry St, San Francisco, CA 94016" +199164,AA Batteries (4-pack),1,3.84,05/07/19 16:17,"304 Jefferson St, Portland, OR 97035" +199165,Lightning Charging Cable,1,14.95,05/26/19 15:22,"180 1st St, San Francisco, CA 94016" +199166,Google Phone,1,600,05/25/19 20:57,"846 River St, Atlanta, GA 30301" +199167,AA Batteries (4-pack),1,3.84,05/14/19 07:49,"16 Maple St, Atlanta, GA 30301" +199168,Wired Headphones,1,11.99,05/21/19 16:00,"443 Elm St, Boston, MA 02215" +199169,Lightning Charging Cable,1,14.95,05/15/19 09:14,"944 7th St, Boston, MA 02215" +199170,27in FHD Monitor,1,149.99,05/12/19 10:24,"312 Adams St, New York City, NY 10001" +199171,Lightning Charging Cable,1,14.95,05/11/19 15:47,"755 Maple St, Austin, TX 73301" +199172,Lightning Charging Cable,1,14.95,05/12/19 23:46,"961 8th St, Dallas, TX 75001" +199173,Wired Headphones,2,11.99,05/07/19 21:37,"401 11th St, Atlanta, GA 30301" +199174,AAA Batteries (4-pack),1,2.99,05/16/19 20:51,"251 10th St, New York City, NY 10001" +199175,27in FHD Monitor,1,149.99,05/19/19 19:20,"398 Center St, Boston, MA 02215" +199176,AAA Batteries (4-pack),3,2.99,05/05/19 21:46,"324 10th St, Boston, MA 02215" +199177,iPhone,1,700,05/02/19 17:03,"951 Washington St, Los Angeles, CA 90001" +199178,Vareebadd Phone,1,400,05/17/19 21:30,"869 Meadow St, San Francisco, CA 94016" +199179,Lightning Charging Cable,1,14.95,05/20/19 19:48,"65 Park St, Boston, MA 02215" +199180,Apple Airpods Headphones,1,150,05/25/19 09:12,"243 Dogwood St, Seattle, WA 98101" +199180,34in Ultrawide Monitor,1,379.99,05/25/19 09:12,"243 Dogwood St, Seattle, WA 98101" +199181,AAA Batteries (4-pack),2,2.99,05/08/19 13:56,"139 Ridge St, Los Angeles, CA 90001" +199182,20in Monitor,1,109.99,05/20/19 19:10,"114 Pine St, Seattle, WA 98101" +199183,AA Batteries (4-pack),2,3.84,05/26/19 19:45,"115 Wilson St, San Francisco, CA 94016" +199184,34in Ultrawide Monitor,1,379.99,05/13/19 08:50,"205 River St, Portland, OR 97035" +199185,Google Phone,1,600,05/15/19 20:50,"529 River St, Dallas, TX 75001" +199186,AAA Batteries (4-pack),1,2.99,05/03/19 18:53,"316 River St, San Francisco, CA 94016" +199186,AA Batteries (4-pack),1,3.84,05/03/19 18:53,"316 River St, San Francisco, CA 94016" +199187,AAA Batteries (4-pack),1,2.99,05/06/19 18:51,"16 Spruce St, Seattle, WA 98101" +199188,Macbook Pro Laptop,1,1700,05/11/19 08:04,"332 Walnut St, Seattle, WA 98101" +199189,27in 4K Gaming Monitor,1,389.99,05/26/19 20:04,"244 River St, Los Angeles, CA 90001" +199190,Apple Airpods Headphones,1,150,05/03/19 15:13,"791 9th St, Boston, MA 02215" +199191,Macbook Pro Laptop,1,1700,05/05/19 22:21,"674 Meadow St, Los Angeles, CA 90001" +199192,AA Batteries (4-pack),1,3.84,05/28/19 13:14,"333 Lakeview St, San Francisco, CA 94016" +199193,34in Ultrawide Monitor,1,379.99,05/12/19 12:22,"874 6th St, Los Angeles, CA 90001" +199194,Macbook Pro Laptop,1,1700,05/15/19 17:03,"914 11th St, Dallas, TX 75001" +199195,Lightning Charging Cable,1,14.95,05/19/19 17:51,"243 Hill St, Portland, OR 97035" +199196,AAA Batteries (4-pack),1,2.99,05/10/19 07:33,"277 1st St, New York City, NY 10001" +199197,27in FHD Monitor,1,149.99,05/16/19 09:57,"280 13th St, Portland, OR 97035" +199198,AA Batteries (4-pack),1,3.84,05/03/19 17:28,"189 Sunset St, New York City, NY 10001" +199199,Lightning Charging Cable,1,14.95,05/29/19 17:28,"389 Sunset St, San Francisco, CA 94016" +199200,AA Batteries (4-pack),1,3.84,05/26/19 11:31,"501 Pine St, Boston, MA 02215" +199201,LG Dryer,1,600.0,05/01/19 22:39,"954 South St, San Francisco, CA 94016" +199202,34in Ultrawide Monitor,1,379.99,05/31/19 23:51,"489 Park St, San Francisco, CA 94016" +199203,Wired Headphones,1,11.99,05/29/19 07:04,"127 Jackson St, Dallas, TX 75001" +199204,iPhone,1,700,05/01/19 18:38,"459 14th St, Los Angeles, CA 90001" +199204,Wired Headphones,1,11.99,05/01/19 18:38,"459 14th St, Los Angeles, CA 90001" +199205,AA Batteries (4-pack),1,3.84,05/03/19 14:48,"107 14th St, San Francisco, CA 94016" +199206,AAA Batteries (4-pack),1,2.99,05/12/19 09:08,"242 Main St, Los Angeles, CA 90001" +199207,AA Batteries (4-pack),1,3.84,05/27/19 15:47,"953 9th St, San Francisco, CA 94016" +199208,ThinkPad Laptop,1,999.99,05/10/19 07:43,"218 Elm St, Dallas, TX 75001" +199209,Apple Airpods Headphones,1,150,05/15/19 14:47,"924 Cedar St, Boston, MA 02215" +199210,AA Batteries (4-pack),2,3.84,05/20/19 19:38,"359 12th St, Atlanta, GA 30301" +199211,iPhone,1,700,05/15/19 20:50,"103 8th St, Los Angeles, CA 90001" +199212,iPhone,1,700,05/06/19 21:21,"125 South St, Dallas, TX 75001" +199213,Apple Airpods Headphones,1,150,05/15/19 07:04,"545 Jackson St, San Francisco, CA 94016" +199214,Flatscreen TV,1,300,05/19/19 15:58,"953 1st St, Dallas, TX 75001" +199215,20in Monitor,1,109.99,05/24/19 17:49,"385 12th St, Los Angeles, CA 90001" +199216,Vareebadd Phone,1,400,05/05/19 15:56,"798 Wilson St, San Francisco, CA 94016" +199216,USB-C Charging Cable,1,11.95,05/05/19 15:56,"798 Wilson St, San Francisco, CA 94016" +199217,Wired Headphones,1,11.99,05/06/19 08:34,"761 Hickory St, Los Angeles, CA 90001" +199218,Apple Airpods Headphones,1,150,05/19/19 11:02,"207 14th St, New York City, NY 10001" +199219,AA Batteries (4-pack),2,3.84,05/07/19 18:41,"59 Sunset St, Seattle, WA 98101" +199220,Lightning Charging Cable,1,14.95,05/10/19 10:34,"371 1st St, New York City, NY 10001" +199221,Lightning Charging Cable,1,14.95,05/05/19 08:49,"430 1st St, San Francisco, CA 94016" +199222,iPhone,1,700,05/15/19 18:36,"698 11th St, San Francisco, CA 94016" +199223,Wired Headphones,1,11.99,05/11/19 23:11,"484 11th St, Atlanta, GA 30301" +199224,Apple Airpods Headphones,1,150,05/02/19 15:57,"543 Cherry St, New York City, NY 10001" +199225,34in Ultrawide Monitor,1,379.99,05/22/19 12:07,"826 1st St, New York City, NY 10001" +199226,Lightning Charging Cable,1,14.95,05/01/19 15:09,"287 Pine St, San Francisco, CA 94016" +199227,Wired Headphones,1,11.99,05/09/19 23:00,"612 Ridge St, New York City, NY 10001" +199228,27in FHD Monitor,1,149.99,05/16/19 13:09,"278 Center St, Dallas, TX 75001" +199229,USB-C Charging Cable,1,11.95,05/12/19 15:55,"913 West St, Portland, OR 97035" +199230,Macbook Pro Laptop,1,1700,05/08/19 13:33,"561 Forest St, Boston, MA 02215" +199231,20in Monitor,1,109.99,05/05/19 15:08,"141 Jackson St, New York City, NY 10001" +199232,iPhone,1,700,05/04/19 20:42,"464 Cherry St, New York City, NY 10001" +199233,34in Ultrawide Monitor,1,379.99,05/15/19 16:30,"266 Adams St, Dallas, TX 75001" +199234,iPhone,1,700,05/27/19 17:26,"65 Jackson St, San Francisco, CA 94016" +199235,iPhone,1,700,05/29/19 13:07,"769 11th St, New York City, NY 10001" +199236,AA Batteries (4-pack),1,3.84,05/31/19 19:09,"28 Wilson St, San Francisco, CA 94016" +199237,AA Batteries (4-pack),1,3.84,05/17/19 19:16,"73 Madison St, Atlanta, GA 30301" +199238,USB-C Charging Cable,1,11.95,05/21/19 19:32,"237 11th St, New York City, NY 10001" +199239,Wired Headphones,1,11.99,05/30/19 20:51,"155 Ridge St, Austin, TX 73301" +199240,ThinkPad Laptop,1,999.99,05/22/19 08:20,"922 North St, New York City, NY 10001" +199241,Bose SoundSport Headphones,1,99.99,05/22/19 21:12,"614 Maple St, Seattle, WA 98101" +199242,Macbook Pro Laptop,1,1700,05/31/19 20:28,"855 9th St, Austin, TX 73301" +199243,USB-C Charging Cable,1,11.95,05/15/19 21:53,"669 Center St, Los Angeles, CA 90001" +199243,AA Batteries (4-pack),1,3.84,05/15/19 21:53,"669 Center St, Los Angeles, CA 90001" +199244,AA Batteries (4-pack),2,3.84,05/16/19 23:28,"216 Sunset St, San Francisco, CA 94016" +199245,Google Phone,1,600,05/01/19 22:21,"771 Maple St, Los Angeles, CA 90001" +199246,USB-C Charging Cable,1,11.95,05/29/19 21:30,"249 Chestnut St, Los Angeles, CA 90001" +199247,AA Batteries (4-pack),1,3.84,05/14/19 21:53,"341 Jefferson St, Los Angeles, CA 90001" +199248,20in Monitor,1,109.99,05/08/19 23:03,"544 14th St, New York City, NY 10001" +199249,20in Monitor,1,109.99,05/16/19 17:25,"758 4th St, Portland, OR 97035" +199250,AA Batteries (4-pack),2,3.84,05/29/19 01:20,"893 Lake St, Los Angeles, CA 90001" +199251,Wired Headphones,1,11.99,05/06/19 01:59,"135 Hill St, Los Angeles, CA 90001" +199252,27in FHD Monitor,1,149.99,05/30/19 14:35,"143 Cherry St, Austin, TX 73301" +199253,AAA Batteries (4-pack),1,2.99,05/18/19 15:25,"260 Lake St, Seattle, WA 98101" +199254,27in FHD Monitor,1,149.99,05/23/19 07:21,"587 13th St, San Francisco, CA 94016" +199255,Vareebadd Phone,1,400,05/11/19 20:33,"443 13th St, Dallas, TX 75001" +199255,USB-C Charging Cable,1,11.95,05/11/19 20:33,"443 13th St, Dallas, TX 75001" +199256,AA Batteries (4-pack),2,3.84,05/14/19 16:04,"92 Highland St, Atlanta, GA 30301" +199256,USB-C Charging Cable,1,11.95,05/14/19 16:04,"92 Highland St, Atlanta, GA 30301" +199257,Bose SoundSport Headphones,1,99.99,05/27/19 14:40,"305 11th St, New York City, NY 10001" +199258,Flatscreen TV,1,300,05/29/19 18:58,"862 Center St, Los Angeles, CA 90001" +199259,27in 4K Gaming Monitor,1,389.99,05/28/19 21:12,"935 14th St, San Francisco, CA 94016" +199260,AAA Batteries (4-pack),1,2.99,05/06/19 12:07,"329 West St, Seattle, WA 98101" +199261,34in Ultrawide Monitor,1,379.99,05/08/19 08:04,"791 Spruce St, San Francisco, CA 94016" +199262,Lightning Charging Cable,1,14.95,05/18/19 09:10,"798 Dogwood St, San Francisco, CA 94016" +199263,AA Batteries (4-pack),1,3.84,05/06/19 21:55,"736 Madison St, Dallas, TX 75001" +199264,Wired Headphones,1,11.99,05/01/19 20:19,"377 Cedar St, Atlanta, GA 30301" +199265,AA Batteries (4-pack),1,3.84,05/16/19 10:31,"637 10th St, San Francisco, CA 94016" +199266,Apple Airpods Headphones,1,150,05/23/19 07:15,"796 Madison St, Boston, MA 02215" +199267,Lightning Charging Cable,1,14.95,05/17/19 06:20,"742 1st St, Portland, ME 04101" +199268,27in 4K Gaming Monitor,1,389.99,05/19/19 08:12,"565 14th St, San Francisco, CA 94016" +199269,Wired Headphones,1,11.99,05/20/19 15:42,"347 Maple St, Atlanta, GA 30301" +199270,Lightning Charging Cable,1,14.95,05/01/19 20:11,"800 Jefferson St, San Francisco, CA 94016" +199271,Lightning Charging Cable,1,14.95,05/15/19 01:55,"83 Walnut St, Boston, MA 02215" +199272,AA Batteries (4-pack),1,3.84,05/07/19 11:10,"871 Cedar St, Atlanta, GA 30301" +199273,AAA Batteries (4-pack),1,2.99,05/08/19 12:54,"944 Adams St, Austin, TX 73301" +199274,Flatscreen TV,1,300,05/20/19 09:35,"145 Park St, Boston, MA 02215" +199275,Lightning Charging Cable,1,14.95,05/11/19 22:27,"918 6th St, Austin, TX 73301" +199276,AA Batteries (4-pack),2,3.84,05/13/19 10:55,"236 Jefferson St, Portland, OR 97035" +199277,Apple Airpods Headphones,1,150,05/11/19 13:01,"761 Jackson St, San Francisco, CA 94016" +199278,AAA Batteries (4-pack),1,2.99,05/05/19 19:38,"669 Lake St, Los Angeles, CA 90001" +199279,34in Ultrawide Monitor,1,379.99,05/18/19 20:50,"230 Spruce St, San Francisco, CA 94016" +199280,Lightning Charging Cable,1,14.95,05/18/19 07:50,"340 Chestnut St, Boston, MA 02215" +199281,Apple Airpods Headphones,1,150,05/24/19 11:22,"814 Madison St, Los Angeles, CA 90001" +199282,27in FHD Monitor,1,149.99,05/22/19 08:09,"882 Park St, San Francisco, CA 94016" +199283,USB-C Charging Cable,1,11.95,05/28/19 22:30,"956 Chestnut St, Los Angeles, CA 90001" +199284,Bose SoundSport Headphones,1,99.99,05/22/19 13:26,"965 North St, New York City, NY 10001" +199285,Apple Airpods Headphones,1,150,05/09/19 01:46,"478 Johnson St, San Francisco, CA 94016" +199286,Lightning Charging Cable,1,14.95,05/09/19 22:19,"381 5th St, Los Angeles, CA 90001" +199287,Flatscreen TV,1,300,05/30/19 13:22,"839 Lake St, Los Angeles, CA 90001" +199288,AA Batteries (4-pack),1,3.84,05/16/19 22:25,"547 Spruce St, New York City, NY 10001" +199289,USB-C Charging Cable,1,11.95,05/17/19 14:39,"525 Chestnut St, San Francisco, CA 94016" +199290,ThinkPad Laptop,1,999.99,05/09/19 18:04,"246 Pine St, San Francisco, CA 94016" +199291,AA Batteries (4-pack),1,3.84,05/22/19 07:17,"818 14th St, San Francisco, CA 94016" +199292,20in Monitor,1,109.99,05/11/19 07:40,"207 Adams St, San Francisco, CA 94016" +199293,34in Ultrawide Monitor,1,379.99,05/07/19 08:08,"660 Spruce St, San Francisco, CA 94016" +199294,AAA Batteries (4-pack),1,2.99,05/19/19 10:42,"853 Jackson St, Portland, OR 97035" +199295,Vareebadd Phone,1,400,05/25/19 13:37,"776 Cherry St, San Francisco, CA 94016" +199296,Bose SoundSport Headphones,1,99.99,05/24/19 20:25,"196 Park St, Boston, MA 02215" +199297,AA Batteries (4-pack),1,3.84,05/06/19 19:32,"747 Cedar St, San Francisco, CA 94016" +199298,20in Monitor,1,109.99,05/25/19 11:03,"132 Cedar St, New York City, NY 10001" +199299,AAA Batteries (4-pack),4,2.99,05/14/19 19:59,"427 Maple St, Seattle, WA 98101" +199300,Wired Headphones,1,11.99,05/05/19 17:40,"459 Ridge St, Los Angeles, CA 90001" +199301,AAA Batteries (4-pack),2,2.99,05/18/19 11:28,"6 Adams St, San Francisco, CA 94016" +199302,AA Batteries (4-pack),2,3.84,05/11/19 09:15,"256 Jefferson St, San Francisco, CA 94016" +199303,iPhone,1,700,05/14/19 09:46,"956 Walnut St, Austin, TX 73301" +199303,Lightning Charging Cable,1,14.95,05/14/19 09:46,"956 Walnut St, Austin, TX 73301" +199303,Apple Airpods Headphones,1,150,05/14/19 09:46,"956 Walnut St, Austin, TX 73301" +199304,AA Batteries (4-pack),1,3.84,05/11/19 09:12,"786 Spruce St, Los Angeles, CA 90001" +199305,AA Batteries (4-pack),1,3.84,05/25/19 11:07,"976 6th St, Los Angeles, CA 90001" +199306,Flatscreen TV,1,300,05/14/19 21:18,"455 9th St, Boston, MA 02215" +199307,iPhone,1,700,05/06/19 16:31,"838 Willow St, Los Angeles, CA 90001" +199308,ThinkPad Laptop,1,999.99,05/28/19 16:43,"932 11th St, San Francisco, CA 94016" +199309,Wired Headphones,1,11.99,05/24/19 13:46,"763 Elm St, San Francisco, CA 94016" +199310,Apple Airpods Headphones,1,150,05/17/19 14:40,"498 Center St, Los Angeles, CA 90001" +199311,Flatscreen TV,1,300,05/27/19 10:43,"166 Elm St, San Francisco, CA 94016" +199312,27in FHD Monitor,1,149.99,05/13/19 19:59,"203 Spruce St, Boston, MA 02215" +199313,AA Batteries (4-pack),1,3.84,05/20/19 18:26,"151 Jefferson St, Atlanta, GA 30301" +199314,AA Batteries (4-pack),1,3.84,05/28/19 12:48,"628 Forest St, Portland, OR 97035" +199315,Lightning Charging Cable,1,14.95,05/08/19 22:32,"138 Center St, Atlanta, GA 30301" +199316,Bose SoundSport Headphones,1,99.99,05/01/19 16:03,"2 Willow St, Boston, MA 02215" +199317,Macbook Pro Laptop,1,1700,05/30/19 12:23,"178 Madison St, Dallas, TX 75001" +199318,Lightning Charging Cable,1,14.95,05/27/19 16:02,"342 Jefferson St, Portland, OR 97035" +199319,27in FHD Monitor,1,149.99,05/07/19 15:25,"752 Lakeview St, Los Angeles, CA 90001" +199320,Vareebadd Phone,1,400,05/18/19 19:44,"993 11th St, Los Angeles, CA 90001" +199320,Wired Headphones,1,11.99,05/18/19 19:44,"993 11th St, Los Angeles, CA 90001" +199321,Bose SoundSport Headphones,1,99.99,05/28/19 20:45,"999 River St, Los Angeles, CA 90001" +199322,Wired Headphones,1,11.99,05/05/19 13:09,"797 Lakeview St, Los Angeles, CA 90001" +199323,Wired Headphones,1,11.99,05/03/19 20:34,"365 10th St, San Francisco, CA 94016" +199324,USB-C Charging Cable,1,11.95,05/20/19 03:04,"723 1st St, Boston, MA 02215" +199325,Apple Airpods Headphones,1,150,05/18/19 12:59,"623 10th St, Atlanta, GA 30301" +199326,Bose SoundSport Headphones,1,99.99,05/16/19 00:35,"198 Pine St, Portland, OR 97035" +199327,ThinkPad Laptop,1,999.99,05/28/19 02:50,"168 River St, Seattle, WA 98101" +199328,AA Batteries (4-pack),1,3.84,05/21/19 18:35,"476 Jackson St, San Francisco, CA 94016" +199329,USB-C Charging Cable,1,11.95,05/15/19 21:11,"9 Chestnut St, Los Angeles, CA 90001" +199330,Flatscreen TV,1,300,05/24/19 19:25,"982 Lake St, New York City, NY 10001" +199331,Macbook Pro Laptop,1,1700,05/09/19 23:41,"242 2nd St, Seattle, WA 98101" +199332,Lightning Charging Cable,1,14.95,05/24/19 09:46,"458 10th St, Portland, OR 97035" +199333,Wired Headphones,1,11.99,05/19/19 15:47,"946 Pine St, Portland, ME 04101" +199334,AA Batteries (4-pack),1,3.84,05/14/19 20:32,"559 West St, San Francisco, CA 94016" +199335,Lightning Charging Cable,2,14.95,05/10/19 17:18,"868 Hickory St, Atlanta, GA 30301" +199336,AA Batteries (4-pack),1,3.84,05/14/19 20:08,"982 1st St, San Francisco, CA 94016" +199337,34in Ultrawide Monitor,1,379.99,05/23/19 13:37,"193 Meadow St, Portland, ME 04101" +199337,AAA Batteries (4-pack),1,2.99,05/23/19 13:37,"193 Meadow St, Portland, ME 04101" +199338,USB-C Charging Cable,1,11.95,05/11/19 08:27,"50 4th St, Austin, TX 73301" +199339,AA Batteries (4-pack),1,3.84,05/12/19 13:14,"341 Hill St, San Francisco, CA 94016" +199340,Wired Headphones,2,11.99,05/03/19 18:58,"379 8th St, Atlanta, GA 30301" +199341,AA Batteries (4-pack),1,3.84,05/26/19 15:10,"516 Lakeview St, Atlanta, GA 30301" +199342,34in Ultrawide Monitor,1,379.99,05/21/19 06:45,"846 Lincoln St, Dallas, TX 75001" +199343,Wired Headphones,2,11.99,05/12/19 14:41,"458 Maple St, Los Angeles, CA 90001" +199344,27in 4K Gaming Monitor,1,389.99,05/11/19 22:06,"344 Sunset St, New York City, NY 10001" +199345,Lightning Charging Cable,1,14.95,05/26/19 23:24,"551 Adams St, Boston, MA 02215" +199346,AA Batteries (4-pack),2,3.84,05/18/19 17:03,"664 Lakeview St, Seattle, WA 98101" +199347,USB-C Charging Cable,1,11.95,05/23/19 16:45,"703 14th St, San Francisco, CA 94016" +199348,USB-C Charging Cable,1,11.95,05/31/19 16:01,"543 Cherry St, San Francisco, CA 94016" +199349,USB-C Charging Cable,2,11.95,05/17/19 22:19,"307 Jackson St, Boston, MA 02215" +199350,AA Batteries (4-pack),1,3.84,05/26/19 14:12,"395 Jefferson St, Seattle, WA 98101" +199351,USB-C Charging Cable,1,11.95,05/28/19 13:13,"295 Main St, Seattle, WA 98101" +199352,AA Batteries (4-pack),1,3.84,05/17/19 12:44,"103 Pine St, San Francisco, CA 94016" +199353,Apple Airpods Headphones,1,150,05/25/19 16:53,"66 North St, Austin, TX 73301" +199354,AA Batteries (4-pack),1,3.84,05/19/19 18:45,"808 Sunset St, San Francisco, CA 94016" +199355,Google Phone,1,600,05/23/19 12:49,"7 River St, San Francisco, CA 94016" +199356,Google Phone,1,600,05/06/19 02:35,"970 Hickory St, San Francisco, CA 94016" +199356,USB-C Charging Cable,1,11.95,05/06/19 02:35,"970 Hickory St, San Francisco, CA 94016" +199357,AAA Batteries (4-pack),2,2.99,05/16/19 20:35,"90 Center St, San Francisco, CA 94016" +199358,AAA Batteries (4-pack),2,2.99,05/22/19 08:28,"633 North St, Seattle, WA 98101" +199359,AA Batteries (4-pack),3,3.84,05/09/19 16:35,"457 Elm St, Los Angeles, CA 90001" +199360,Bose SoundSport Headphones,1,99.99,05/19/19 07:33,"317 Elm St, Los Angeles, CA 90001" +199361,USB-C Charging Cable,1,11.95,05/19/19 10:31,"373 7th St, Boston, MA 02215" +199362,Google Phone,1,600,05/22/19 15:16,"846 13th St, Austin, TX 73301" +199363,Lightning Charging Cable,1,14.95,05/13/19 17:07,"134 Forest St, San Francisco, CA 94016" +199364,Wired Headphones,1,11.99,05/31/19 17:52,"161 8th St, Boston, MA 02215" +199365,Apple Airpods Headphones,1,150,05/17/19 05:37,"932 Hill St, Portland, ME 04101" +199366,AA Batteries (4-pack),2,3.84,05/30/19 22:07,"406 Highland St, Los Angeles, CA 90001" +199367,Bose SoundSport Headphones,1,99.99,05/08/19 23:06,"752 Highland St, Austin, TX 73301" +199368,Apple Airpods Headphones,1,150,05/26/19 15:35,"119 Willow St, San Francisco, CA 94016" +199369,USB-C Charging Cable,1,11.95,05/17/19 08:54,"437 13th St, San Francisco, CA 94016" +199370,USB-C Charging Cable,1,11.95,05/26/19 20:47,"53 Elm St, Atlanta, GA 30301" +199371,AAA Batteries (4-pack),1,2.99,05/06/19 19:20,"242 5th St, Austin, TX 73301" +199372,Lightning Charging Cable,1,14.95,05/19/19 10:56,"158 7th St, Atlanta, GA 30301" +199373,Google Phone,1,600,05/19/19 13:47,"417 Johnson St, Boston, MA 02215" +199374,Wired Headphones,1,11.99,05/14/19 10:29,"942 12th St, Boston, MA 02215" +199375,Lightning Charging Cable,1,14.95,05/16/19 08:55,"665 Center St, Portland, OR 97035" +199376,iPhone,1,700,05/20/19 13:50,"442 Jefferson St, San Francisco, CA 94016" +199377,Apple Airpods Headphones,1,150,05/04/19 19:36,"221 Elm St, Seattle, WA 98101" +199378,Apple Airpods Headphones,1,150,05/21/19 15:23,"609 River St, Seattle, WA 98101" +199378,USB-C Charging Cable,1,11.95,05/21/19 15:23,"609 River St, Seattle, WA 98101" +199379,LG Dryer,1,600.0,05/27/19 11:52,"187 Willow St, Los Angeles, CA 90001" +199380,Lightning Charging Cable,1,14.95,05/18/19 12:06,"494 7th St, Austin, TX 73301" +199381,34in Ultrawide Monitor,1,379.99,05/17/19 11:19,"382 Church St, Austin, TX 73301" +199381,34in Ultrawide Monitor,1,379.99,05/17/19 11:19,"382 Church St, Austin, TX 73301" +199382,USB-C Charging Cable,1,11.95,05/07/19 12:29,"387 Lakeview St, Portland, OR 97035" +199383,AAA Batteries (4-pack),3,2.99,05/09/19 13:43,"870 Forest St, Los Angeles, CA 90001" +199384,Google Phone,1,600,05/17/19 23:59,"222 Lake St, Seattle, WA 98101" +199385,Lightning Charging Cable,1,14.95,05/28/19 18:43,"298 Walnut St, Dallas, TX 75001" +199386,AAA Batteries (4-pack),3,2.99,05/16/19 18:30,"729 West St, Austin, TX 73301" +199387,Lightning Charging Cable,2,14.95,05/14/19 17:31,"314 Walnut St, San Francisco, CA 94016" +199388,Apple Airpods Headphones,1,150,05/06/19 17:24,"882 Hill St, Dallas, TX 75001" +199388,Lightning Charging Cable,1,14.95,05/06/19 17:24,"882 Hill St, Dallas, TX 75001" +199389,ThinkPad Laptop,1,999.99,05/30/19 12:06,"251 North St, Atlanta, GA 30301" +199390,Bose SoundSport Headphones,1,99.99,05/25/19 15:50,"852 14th St, Portland, OR 97035" +199391,AA Batteries (4-pack),1,3.84,05/11/19 06:41,"369 Dogwood St, San Francisco, CA 94016" +199392,Lightning Charging Cable,1,14.95,05/29/19 23:36,"748 Jackson St, Los Angeles, CA 90001" +199393,Wired Headphones,1,11.99,05/08/19 10:40,"725 10th St, Austin, TX 73301" +199394,Bose SoundSport Headphones,1,99.99,05/31/19 17:57,"10 Main St, Los Angeles, CA 90001" +199395,USB-C Charging Cable,1,11.95,05/02/19 09:11,"937 11th St, New York City, NY 10001" +199396,Apple Airpods Headphones,1,150,05/09/19 21:08,"214 10th St, New York City, NY 10001" +199397,AA Batteries (4-pack),2,3.84,05/13/19 12:46,"808 7th St, Seattle, WA 98101" +199398,USB-C Charging Cable,1,11.95,05/22/19 15:42,"616 Willow St, Austin, TX 73301" +199399,Wired Headphones,1,11.99,05/06/19 11:00,"240 Washington St, San Francisco, CA 94016" +199400,34in Ultrawide Monitor,1,379.99,05/18/19 22:31,"870 Adams St, New York City, NY 10001" +199401,34in Ultrawide Monitor,1,379.99,05/05/19 21:08,"315 Pine St, Austin, TX 73301" +199402,Lightning Charging Cable,1,14.95,05/24/19 13:48,"210 Wilson St, Los Angeles, CA 90001" +199403,Macbook Pro Laptop,1,1700,05/23/19 20:15,"159 Dogwood St, Boston, MA 02215" +199404,20in Monitor,1,109.99,05/06/19 22:25,"235 Cedar St, Atlanta, GA 30301" +199405,27in 4K Gaming Monitor,1,389.99,05/09/19 11:50,"927 Jackson St, Boston, MA 02215" +199406,Apple Airpods Headphones,1,150,05/27/19 08:48,"175 Cedar St, Los Angeles, CA 90001" +199407,27in FHD Monitor,1,149.99,05/04/19 20:16,"793 Johnson St, Seattle, WA 98101" +199408,Wired Headphones,1,11.99,05/22/19 20:41,"817 Dogwood St, Austin, TX 73301" +199409,Bose SoundSport Headphones,1,99.99,05/23/19 11:40,"644 4th St, San Francisco, CA 94016" +199410,Wired Headphones,1,11.99,05/08/19 15:29,"761 River St, Austin, TX 73301" +199411,AAA Batteries (4-pack),2,2.99,05/05/19 18:47,"319 West St, Dallas, TX 75001" +199412,Bose SoundSport Headphones,1,99.99,05/16/19 20:15,"592 North St, Atlanta, GA 30301" +199413,27in 4K Gaming Monitor,1,389.99,05/08/19 11:33,"389 7th St, Austin, TX 73301" +199414,Lightning Charging Cable,1,14.95,05/18/19 02:20,"147 Maple St, Dallas, TX 75001" +199415,iPhone,1,700,05/07/19 13:29,"108 Sunset St, San Francisco, CA 94016" +199416,AA Batteries (4-pack),3,3.84,05/04/19 23:13,"192 Dogwood St, Los Angeles, CA 90001" +199417,20in Monitor,1,109.99,05/11/19 18:48,"657 Jackson St, San Francisco, CA 94016" +199418,Lightning Charging Cable,1,14.95,05/31/19 13:13,"652 Dogwood St, Boston, MA 02215" +199419,Wired Headphones,1,11.99,05/18/19 00:53,"234 Willow St, Boston, MA 02215" +199420,Apple Airpods Headphones,1,150,05/23/19 12:41,"608 Center St, Dallas, TX 75001" +199421,Vareebadd Phone,1,400,05/17/19 23:21,"709 10th St, Dallas, TX 75001" +199422,AAA Batteries (4-pack),3,2.99,05/28/19 23:21,"296 Main St, San Francisco, CA 94016" +199423,34in Ultrawide Monitor,1,379.99,05/25/19 20:19,"186 Walnut St, Dallas, TX 75001" +199424,ThinkPad Laptop,1,999.99,05/21/19 13:22,"465 14th St, New York City, NY 10001" +199425,27in 4K Gaming Monitor,1,389.99,05/06/19 20:03,"182 Highland St, Dallas, TX 75001" +199426,Lightning Charging Cable,1,14.95,05/29/19 16:21,"118 Adams St, Atlanta, GA 30301" +199427,Apple Airpods Headphones,1,150,05/20/19 11:45,"424 Chestnut St, Dallas, TX 75001" +199428,34in Ultrawide Monitor,1,379.99,05/16/19 20:30,"342 10th St, Austin, TX 73301" +199429,Macbook Pro Laptop,1,1700,05/07/19 09:37,"468 West St, San Francisco, CA 94016" +199429,Wired Headphones,1,11.99,05/07/19 09:37,"468 West St, San Francisco, CA 94016" +199430,ThinkPad Laptop,1,999.99,05/30/19 17:40,"724 Jackson St, Los Angeles, CA 90001" +199431,Wired Headphones,1,11.99,05/06/19 12:32,"618 Sunset St, Los Angeles, CA 90001" +199432,Google Phone,1,600,05/23/19 05:40,"768 Spruce St, Los Angeles, CA 90001" +199433,Lightning Charging Cable,1,14.95,05/26/19 17:05,"382 Meadow St, Los Angeles, CA 90001" +199434,Google Phone,1,600,05/11/19 12:17,"404 Elm St, Seattle, WA 98101" +199434,USB-C Charging Cable,1,11.95,05/11/19 12:17,"404 Elm St, Seattle, WA 98101" +199435,Macbook Pro Laptop,1,1700,05/11/19 16:43,"154 Walnut St, Seattle, WA 98101" +199436,Wired Headphones,1,11.99,05/09/19 17:41,"166 14th St, Atlanta, GA 30301" +199437,Lightning Charging Cable,1,14.95,05/20/19 08:44,"325 Cherry St, San Francisco, CA 94016" +199438,AA Batteries (4-pack),1,3.84,05/19/19 05:44,"173 North St, San Francisco, CA 94016" +199439,AA Batteries (4-pack),1,3.84,05/28/19 20:33,"637 Lakeview St, Boston, MA 02215" +199440,AA Batteries (4-pack),2,3.84,06/01/19 01:12,"907 Meadow St, Atlanta, GA 30301" +199441,AA Batteries (4-pack),1,3.84,05/08/19 07:14,"493 Highland St, Dallas, TX 75001" +199442,Wired Headphones,1,11.99,05/22/19 02:16,"105 Ridge St, Atlanta, GA 30301" +199443,USB-C Charging Cable,1,11.95,05/20/19 17:43,"864 14th St, Los Angeles, CA 90001" +199444,20in Monitor,1,109.99,05/12/19 10:28,"431 5th St, Austin, TX 73301" +199445,Wired Headphones,1,11.99,05/08/19 11:41,"226 Park St, New York City, NY 10001" +199446,AA Batteries (4-pack),1,3.84,05/19/19 14:24,"4 Jefferson St, San Francisco, CA 94016" +199447,Bose SoundSport Headphones,1,99.99,05/30/19 10:25,"447 Park St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +199448,Lightning Charging Cable,1,14.95,05/15/19 21:10,"789 Hickory St, San Francisco, CA 94016" +199448,Lightning Charging Cable,2,14.95,05/15/19 21:10,"789 Hickory St, San Francisco, CA 94016" +199449,Apple Airpods Headphones,1,150,05/29/19 20:34,"763 Cedar St, San Francisco, CA 94016" +199450,AA Batteries (4-pack),1,3.84,05/21/19 14:15,"742 6th St, Los Angeles, CA 90001" +199451,Wired Headphones,2,11.99,05/31/19 19:04,"813 Adams St, Seattle, WA 98101" +199452,Vareebadd Phone,1,400,05/08/19 09:25,"677 Elm St, San Francisco, CA 94016" +199453,Lightning Charging Cable,2,14.95,05/17/19 11:14,"733 12th St, Dallas, TX 75001" +199454,USB-C Charging Cable,1,11.95,05/31/19 11:23,"105 1st St, Dallas, TX 75001" +199455,Apple Airpods Headphones,1,150,05/01/19 14:35,"190 Maple St, Dallas, TX 75001" +199456,Wired Headphones,1,11.99,05/29/19 16:57,"645 Walnut St, Atlanta, GA 30301" +199457,Apple Airpods Headphones,1,150,05/04/19 16:13,"221 Cherry St, Seattle, WA 98101" +199458,AA Batteries (4-pack),1,3.84,05/25/19 11:08,"472 14th St, Boston, MA 02215" +199459,iPhone,1,700,05/05/19 19:08,"484 Church St, Los Angeles, CA 90001" +199460,AA Batteries (4-pack),1,3.84,05/12/19 21:05,"784 Willow St, Boston, MA 02215" +199461,27in FHD Monitor,1,149.99,05/07/19 15:53,"678 South St, Seattle, WA 98101" +199462,Lightning Charging Cable,1,14.95,05/03/19 14:08,"175 River St, New York City, NY 10001" +199463,Macbook Pro Laptop,1,1700,05/01/19 16:41,"823 Meadow St, Atlanta, GA 30301" +199464,USB-C Charging Cable,1,11.95,05/27/19 13:10,"667 6th St, Dallas, TX 75001" +199465,Lightning Charging Cable,1,14.95,05/06/19 13:27,"522 Adams St, San Francisco, CA 94016" +199466,Lightning Charging Cable,1,14.95,05/15/19 13:56,"2 14th St, Boston, MA 02215" +199467,Bose SoundSport Headphones,2,99.99,05/10/19 18:02,"504 7th St, San Francisco, CA 94016" +199468,27in 4K Gaming Monitor,1,389.99,05/06/19 10:14,"799 13th St, Portland, OR 97035" +199469,AA Batteries (4-pack),1,3.84,05/02/19 11:52,"682 Willow St, San Francisco, CA 94016" +199470,27in FHD Monitor,1,149.99,05/11/19 08:08,"530 Highland St, San Francisco, CA 94016" +199471,USB-C Charging Cable,1,11.95,05/29/19 10:17,"825 Dogwood St, San Francisco, CA 94016" +199472,AAA Batteries (4-pack),2,2.99,05/08/19 22:38,"428 Spruce St, Portland, OR 97035" +199473,20in Monitor,1,109.99,05/12/19 17:21,"974 Sunset St, San Francisco, CA 94016" +199474,AAA Batteries (4-pack),1,2.99,05/14/19 19:51,"409 Park St, Boston, MA 02215" +199475,LG Dryer,1,600.0,05/13/19 10:05,"430 Willow St, San Francisco, CA 94016" +199476,Wired Headphones,1,11.99,05/05/19 15:01,"812 Center St, San Francisco, CA 94016" +199477,34in Ultrawide Monitor,1,379.99,05/03/19 15:44,"5 9th St, San Francisco, CA 94016" +199478,AA Batteries (4-pack),1,3.84,05/30/19 11:15,"982 Cherry St, Seattle, WA 98101" +199479,Lightning Charging Cable,1,14.95,05/31/19 16:57,"391 Main St, Dallas, TX 75001" +199480,Wired Headphones,1,11.99,05/02/19 19:23,"147 Park St, New York City, NY 10001" +199481,Apple Airpods Headphones,1,150,05/12/19 15:10,"58 Spruce St, San Francisco, CA 94016" +199482,Flatscreen TV,1,300,05/13/19 13:16,"165 Lakeview St, San Francisco, CA 94016" +199483,Wired Headphones,1,11.99,05/02/19 23:47,"90 13th St, New York City, NY 10001" +199484,Lightning Charging Cable,2,14.95,05/10/19 00:05,"720 Hickory St, Seattle, WA 98101" +199485,27in FHD Monitor,1,149.99,05/24/19 16:27,"838 Chestnut St, Atlanta, GA 30301" +199486,AA Batteries (4-pack),1,3.84,05/20/19 19:12,"334 Main St, Dallas, TX 75001" +199487,Apple Airpods Headphones,1,150,05/24/19 13:15,"74 2nd St, New York City, NY 10001" +199488,Lightning Charging Cable,1,14.95,05/18/19 19:55,"272 13th St, San Francisco, CA 94016" +199489,AA Batteries (4-pack),1,3.84,05/25/19 19:28,"942 Madison St, San Francisco, CA 94016" +199490,USB-C Charging Cable,1,11.95,05/07/19 11:04,"216 Forest St, Dallas, TX 75001" +199491,Bose SoundSport Headphones,1,99.99,05/03/19 16:38,"374 Adams St, Los Angeles, CA 90001" +199492,27in FHD Monitor,1,149.99,05/13/19 07:34,"711 11th St, San Francisco, CA 94016" +199493,Vareebadd Phone,1,400,05/10/19 11:05,"337 Spruce St, Boston, MA 02215" +199494,Macbook Pro Laptop,1,1700,05/09/19 11:43,"193 North St, New York City, NY 10001" +199495,Apple Airpods Headphones,1,150,05/02/19 11:51,"359 Walnut St, Boston, MA 02215" +199496,27in 4K Gaming Monitor,1,389.99,05/26/19 09:00,"448 Lincoln St, Los Angeles, CA 90001" +199497,iPhone,1,700,05/31/19 09:28,"975 1st St, Los Angeles, CA 90001" +199498,Lightning Charging Cable,1,14.95,05/24/19 09:00,"666 Cherry St, San Francisco, CA 94016" +199499,USB-C Charging Cable,1,11.95,05/30/19 17:10,"138 Hickory St, Austin, TX 73301" +199499,Lightning Charging Cable,2,14.95,05/30/19 17:10,"138 Hickory St, Austin, TX 73301" +199500,Bose SoundSport Headphones,1,99.99,05/15/19 20:01,"440 Washington St, New York City, NY 10001" +199501,AA Batteries (4-pack),2,3.84,05/11/19 09:12,"396 Ridge St, Boston, MA 02215" +199502,AAA Batteries (4-pack),1,2.99,05/04/19 14:34,"263 4th St, New York City, NY 10001" +199503,AA Batteries (4-pack),1,3.84,05/19/19 01:04,"287 14th St, Atlanta, GA 30301" +199504,iPhone,1,700,05/10/19 09:40,"148 West St, San Francisco, CA 94016" +199505,AAA Batteries (4-pack),4,2.99,05/01/19 15:57,"41 13th St, San Francisco, CA 94016" +199506,Google Phone,1,600,05/19/19 09:13,"421 Wilson St, Portland, OR 97035" +199507,USB-C Charging Cable,1,11.95,05/08/19 14:39,"612 Lakeview St, New York City, NY 10001" +199508,Apple Airpods Headphones,1,150,05/05/19 20:33,"26 Sunset St, Portland, OR 97035" +199509,Google Phone,1,600,05/14/19 13:31,"373 River St, San Francisco, CA 94016" +199510,27in FHD Monitor,1,149.99,05/11/19 16:01,"298 12th St, Atlanta, GA 30301" +199511,34in Ultrawide Monitor,1,379.99,05/26/19 09:15,"446 6th St, Seattle, WA 98101" +199512,27in FHD Monitor,1,149.99,05/22/19 10:55,"241 Washington St, San Francisco, CA 94016" +199513,Wired Headphones,1,11.99,05/28/19 11:41,"623 Madison St, Seattle, WA 98101" +199514,34in Ultrawide Monitor,1,379.99,05/24/19 10:32,"627 6th St, Los Angeles, CA 90001" +199515,34in Ultrawide Monitor,1,379.99,05/29/19 14:33,"391 Dogwood St, Seattle, WA 98101" +199516,Bose SoundSport Headphones,1,99.99,05/06/19 20:17,"427 Hill St, New York City, NY 10001" +199517,Flatscreen TV,1,300,05/26/19 18:59,"13 Chestnut St, San Francisco, CA 94016" +199518,iPhone,1,700,05/03/19 23:29,"880 Sunset St, San Francisco, CA 94016" +199518,Apple Airpods Headphones,1,150,05/03/19 23:29,"880 Sunset St, San Francisco, CA 94016" +199519,AAA Batteries (4-pack),1,2.99,05/25/19 13:17,"64 6th St, Los Angeles, CA 90001" +199520,Lightning Charging Cable,1,14.95,05/21/19 22:04,"677 1st St, Dallas, TX 75001" +199521,Bose SoundSport Headphones,1,99.99,05/30/19 15:38,"895 Cedar St, San Francisco, CA 94016" +199522,Flatscreen TV,1,300,05/04/19 15:01,"150 Jefferson St, Seattle, WA 98101" +199523,AA Batteries (4-pack),1,3.84,05/24/19 23:17,"764 Meadow St, San Francisco, CA 94016" +199524,Wired Headphones,1,11.99,05/05/19 20:34,"895 Main St, San Francisco, CA 94016" +199525,USB-C Charging Cable,1,11.95,05/06/19 05:27,"261 Main St, Los Angeles, CA 90001" +199526,USB-C Charging Cable,1,11.95,05/22/19 07:17,"793 Maple St, New York City, NY 10001" +199527,Lightning Charging Cable,1,14.95,05/16/19 22:19,"185 2nd St, Seattle, WA 98101" +199528,USB-C Charging Cable,1,11.95,05/03/19 19:13,"381 Hill St, Portland, OR 97035" +199529,USB-C Charging Cable,1,11.95,05/15/19 11:54,"887 6th St, San Francisco, CA 94016" +199530,Bose SoundSport Headphones,1,99.99,05/08/19 21:51,"260 Church St, New York City, NY 10001" +199531,AAA Batteries (4-pack),1,2.99,05/20/19 21:50,"572 Sunset St, New York City, NY 10001" +199532,Wired Headphones,2,11.99,05/22/19 11:58,"48 13th St, Atlanta, GA 30301" +199533,AAA Batteries (4-pack),1,2.99,05/07/19 21:33,"788 Walnut St, Boston, MA 02215" +199533,Apple Airpods Headphones,1,150,05/07/19 21:33,"788 Walnut St, Boston, MA 02215" +199534,AA Batteries (4-pack),1,3.84,05/17/19 11:53,"748 Willow St, Los Angeles, CA 90001" +199535,Lightning Charging Cable,1,14.95,05/30/19 20:11,"918 Park St, Los Angeles, CA 90001" +199536,Lightning Charging Cable,2,14.95,05/18/19 07:25,"80 South St, Atlanta, GA 30301" +199537,USB-C Charging Cable,2,11.95,05/23/19 21:56,"292 Jackson St, Dallas, TX 75001" +199538,USB-C Charging Cable,1,11.95,05/01/19 16:42,"313 Hickory St, Austin, TX 73301" +199539,Wired Headphones,2,11.99,05/20/19 23:49,"470 Pine St, New York City, NY 10001" +199540,Bose SoundSport Headphones,1,99.99,05/17/19 12:13,"507 Chestnut St, San Francisco, CA 94016" +199541,27in FHD Monitor,1,149.99,05/05/19 09:53,"37 Lakeview St, Austin, TX 73301" +199542,Flatscreen TV,1,300,05/28/19 13:10,"15 Maple St, Boston, MA 02215" +199543,USB-C Charging Cable,2,11.95,05/17/19 16:20,"919 Maple St, Seattle, WA 98101" +199544,USB-C Charging Cable,1,11.95,05/22/19 08:49,"784 4th St, San Francisco, CA 94016" +199545,Wired Headphones,1,11.99,05/12/19 10:13,"392 South St, Austin, TX 73301" +199546,AA Batteries (4-pack),1,3.84,05/31/19 21:12,"995 West St, Boston, MA 02215" +199547,Macbook Pro Laptop,1,1700,05/05/19 00:00,"110 Sunset St, Dallas, TX 75001" +199548,Apple Airpods Headphones,1,150,05/01/19 20:57,"629 Dogwood St, Austin, TX 73301" +199549,27in FHD Monitor,1,149.99,05/03/19 10:24,"113 10th St, New York City, NY 10001" +199550,Apple Airpods Headphones,1,150,05/21/19 22:02,"902 Lakeview St, San Francisco, CA 94016" +199550,USB-C Charging Cable,1,11.95,05/21/19 22:02,"902 Lakeview St, San Francisco, CA 94016" +199551,Macbook Pro Laptop,1,1700,05/28/19 23:45,"705 12th St, San Francisco, CA 94016" +199552,AAA Batteries (4-pack),2,2.99,05/28/19 09:09,"352 Wilson St, New York City, NY 10001" +199553,Bose SoundSport Headphones,1,99.99,05/01/19 12:33,"293 Chestnut St, Dallas, TX 75001" +199554,USB-C Charging Cable,1,11.95,05/15/19 20:54,"699 Hickory St, Atlanta, GA 30301" +199555,Bose SoundSport Headphones,1,99.99,05/23/19 17:09,"521 12th St, Seattle, WA 98101" +199556,AA Batteries (4-pack),1,3.84,05/15/19 10:21,"390 Washington St, Los Angeles, CA 90001" +,,,,, +199557,Wired Headphones,1,11.99,05/09/19 19:15,"755 Jackson St, Boston, MA 02215" +199558,27in 4K Gaming Monitor,1,389.99,05/03/19 18:19,"418 Church St, Los Angeles, CA 90001" +199559,Lightning Charging Cable,1,14.95,05/12/19 14:46,"89 12th St, Seattle, WA 98101" +199560,ThinkPad Laptop,1,999.99,05/27/19 21:03,"797 Cherry St, Dallas, TX 75001" +199561,Vareebadd Phone,1,400,05/29/19 16:45,"769 Ridge St, San Francisco, CA 94016" +199562,Wired Headphones,1,11.99,05/27/19 12:40,"156 Cedar St, Los Angeles, CA 90001" +199563,AA Batteries (4-pack),1,3.84,05/17/19 20:36,"566 Lake St, San Francisco, CA 94016" +199564,AA Batteries (4-pack),1,3.84,05/30/19 18:58,"909 2nd St, New York City, NY 10001" +199565,USB-C Charging Cable,1,11.95,05/23/19 11:01,"154 1st St, New York City, NY 10001" +199566,ThinkPad Laptop,1,999.99,05/02/19 22:04,"364 2nd St, Portland, OR 97035" +199567,Bose SoundSport Headphones,1,99.99,05/08/19 13:58,"321 Johnson St, Atlanta, GA 30301" +199568,AA Batteries (4-pack),1,3.84,05/03/19 17:50,"210 Main St, Los Angeles, CA 90001" +199569,AA Batteries (4-pack),1,3.84,05/01/19 13:05,"14 Hill St, San Francisco, CA 94016" +199570,Lightning Charging Cable,1,14.95,05/26/19 10:35,"63 Chestnut St, San Francisco, CA 94016" +199571,USB-C Charging Cable,1,11.95,05/01/19 11:26,"251 6th St, Los Angeles, CA 90001" +199572,AAA Batteries (4-pack),1,2.99,05/20/19 12:08,"951 9th St, Los Angeles, CA 90001" +199573,AAA Batteries (4-pack),1,2.99,05/12/19 17:12,"397 West St, San Francisco, CA 94016" +199574,Bose SoundSport Headphones,1,99.99,05/16/19 20:30,"319 Jackson St, Los Angeles, CA 90001" +199575,Wired Headphones,1,11.99,05/09/19 14:57,"895 Elm St, Portland, OR 97035" +199576,Wired Headphones,1,11.99,05/07/19 07:43,"603 Church St, Atlanta, GA 30301" +199577,Lightning Charging Cable,1,14.95,05/07/19 18:05,"590 12th St, Los Angeles, CA 90001" +199578,27in FHD Monitor,1,149.99,05/02/19 18:12,"723 12th St, Boston, MA 02215" +199579,AAA Batteries (4-pack),6,2.99,05/19/19 14:34,"149 2nd St, New York City, NY 10001" +199580,Wired Headphones,1,11.99,05/10/19 19:16,"842 Willow St, Boston, MA 02215" +199581,Macbook Pro Laptop,1,1700,05/06/19 20:32,"303 5th St, New York City, NY 10001" +199582,27in FHD Monitor,1,149.99,05/09/19 05:39,"387 Lakeview St, Portland, OR 97035" +199583,Lightning Charging Cable,1,14.95,05/18/19 22:01,"234 Madison St, Los Angeles, CA 90001" +199584,USB-C Charging Cable,1,11.95,05/12/19 20:23,"271 Meadow St, Dallas, TX 75001" +199585,Wired Headphones,1,11.99,05/23/19 16:06,"41 5th St, Boston, MA 02215" +199586,iPhone,1,700,05/17/19 19:07,"358 Walnut St, Austin, TX 73301" +199587,Wired Headphones,1,11.99,05/15/19 12:07,"97 1st St, San Francisco, CA 94016" +199588,34in Ultrawide Monitor,1,379.99,05/09/19 00:02,"983 Maple St, Los Angeles, CA 90001" +199589,Bose SoundSport Headphones,1,99.99,05/03/19 19:19,"271 2nd St, Portland, OR 97035" +199590,Lightning Charging Cable,1,14.95,05/07/19 16:30,"812 Cherry St, Atlanta, GA 30301" +199591,Flatscreen TV,1,300,05/28/19 14:27,"275 North St, Boston, MA 02215" +199592,ThinkPad Laptop,1,999.99,05/10/19 20:44,"654 Park St, Seattle, WA 98101" +199593,AAA Batteries (4-pack),1,2.99,05/26/19 22:59,"562 11th St, San Francisco, CA 94016" +199594,USB-C Charging Cable,1,11.95,05/22/19 13:48,"732 Maple St, Los Angeles, CA 90001" +199595,Lightning Charging Cable,1,14.95,05/22/19 18:15,"196 Hill St, New York City, NY 10001" +199596,AA Batteries (4-pack),2,3.84,05/27/19 09:34,"441 Washington St, San Francisco, CA 94016" +199597,Lightning Charging Cable,1,14.95,05/30/19 19:46,"722 Hickory St, Atlanta, GA 30301" +199598,27in FHD Monitor,1,149.99,05/07/19 15:01,"403 Hill St, Los Angeles, CA 90001" +199599,27in 4K Gaming Monitor,1,389.99,05/20/19 20:25,"331 Highland St, Boston, MA 02215" +199600,Flatscreen TV,1,300,05/24/19 16:25,"183 14th St, Portland, OR 97035" +199601,Lightning Charging Cable,1,14.95,05/27/19 19:02,"50 Highland St, Los Angeles, CA 90001" +199602,USB-C Charging Cable,1,11.95,05/10/19 16:38,"882 Highland St, New York City, NY 10001" +199603,iPhone,1,700,05/03/19 09:46,"92 Willow St, Seattle, WA 98101" +199604,AAA Batteries (4-pack),1,2.99,05/27/19 11:02,"223 Willow St, New York City, NY 10001" +199605,AA Batteries (4-pack),1,3.84,05/03/19 12:11,"412 River St, San Francisco, CA 94016" +199606,Bose SoundSport Headphones,1,99.99,05/05/19 17:46,"352 8th St, Austin, TX 73301" +199607,Lightning Charging Cable,1,14.95,05/25/19 21:17,"54 Walnut St, Dallas, TX 75001" +199608,Google Phone,1,600,05/11/19 14:39,"997 Spruce St, Los Angeles, CA 90001" +199608,USB-C Charging Cable,1,11.95,05/11/19 14:39,"997 Spruce St, Los Angeles, CA 90001" +199609,Apple Airpods Headphones,1,150,05/09/19 11:29,"496 Cherry St, Los Angeles, CA 90001" +199610,AAA Batteries (4-pack),2,2.99,05/08/19 06:20,"62 Willow St, Portland, OR 97035" +199611,Lightning Charging Cable,1,14.95,05/28/19 16:37,"496 Wilson St, Seattle, WA 98101" +199612,Lightning Charging Cable,3,14.95,05/20/19 12:34,"436 Lake St, San Francisco, CA 94016" +199613,AAA Batteries (4-pack),1,2.99,05/26/19 01:34,"955 2nd St, San Francisco, CA 94016" +199614,USB-C Charging Cable,1,11.95,05/15/19 20:03,"581 Willow St, Los Angeles, CA 90001" +199615,AA Batteries (4-pack),1,3.84,05/31/19 16:55,"316 South St, San Francisco, CA 94016" +199616,AAA Batteries (4-pack),2,2.99,05/18/19 13:54,"387 13th St, Boston, MA 02215" +199616,Macbook Pro Laptop,1,1700,05/18/19 13:54,"387 13th St, Boston, MA 02215" +199617,USB-C Charging Cable,1,11.95,05/25/19 12:36,"719 Hickory St, Boston, MA 02215" +199618,27in 4K Gaming Monitor,1,389.99,05/08/19 18:34,"750 5th St, Austin, TX 73301" +199619,USB-C Charging Cable,1,11.95,05/13/19 09:35,"477 Cedar St, Los Angeles, CA 90001" +199620,Wired Headphones,1,11.99,05/05/19 02:31,"798 Lakeview St, San Francisco, CA 94016" +199621,AAA Batteries (4-pack),2,2.99,05/05/19 16:57,"935 14th St, San Francisco, CA 94016" +199622,AA Batteries (4-pack),1,3.84,05/12/19 10:55,"610 Jefferson St, Austin, TX 73301" +199623,AAA Batteries (4-pack),1,2.99,05/20/19 15:01,"575 Cedar St, Atlanta, GA 30301" +199624,Flatscreen TV,1,300,05/11/19 16:24,"593 Spruce St, Los Angeles, CA 90001" +199625,AA Batteries (4-pack),2,3.84,05/02/19 23:44,"609 Lincoln St, New York City, NY 10001" +199626,AA Batteries (4-pack),1,3.84,05/22/19 16:17,"107 Hill St, Atlanta, GA 30301" +199627,USB-C Charging Cable,1,11.95,05/13/19 17:16,"536 Meadow St, New York City, NY 10001" +199628,20in Monitor,1,109.99,05/19/19 13:42,"647 Highland St, Los Angeles, CA 90001" +199629,Apple Airpods Headphones,1,150,05/14/19 17:20,"348 Center St, San Francisco, CA 94016" +199630,USB-C Charging Cable,1,11.95,05/11/19 20:20,"747 Hill St, New York City, NY 10001" +199631,Bose SoundSport Headphones,1,99.99,05/13/19 21:04,"236 Hill St, Dallas, TX 75001" +199632,Wired Headphones,1,11.99,05/27/19 16:51,"146 West St, New York City, NY 10001" +199633,iPhone,1,700,05/24/19 00:58,"531 8th St, Atlanta, GA 30301" +199634,Flatscreen TV,1,300,05/09/19 11:05,"119 Washington St, Atlanta, GA 30301" +199635,Google Phone,1,600,05/16/19 02:31,"57 8th St, Boston, MA 02215" +199635,Wired Headphones,1,11.99,05/16/19 02:31,"57 8th St, Boston, MA 02215" +199636,AAA Batteries (4-pack),1,2.99,05/22/19 11:54,"207 1st St, Portland, OR 97035" +199637,iPhone,1,700,05/22/19 02:59,"213 Jackson St, Atlanta, GA 30301" +199638,Bose SoundSport Headphones,1,99.99,05/12/19 07:08,"219 Jackson St, Atlanta, GA 30301" +199639,27in FHD Monitor,1,149.99,05/04/19 22:57,"780 12th St, Los Angeles, CA 90001" +199640,Apple Airpods Headphones,1,150,05/18/19 11:55,"906 5th St, New York City, NY 10001" +199641,Lightning Charging Cable,1,14.95,05/19/19 20:57,"582 8th St, San Francisco, CA 94016" +199641,Macbook Pro Laptop,1,1700,05/19/19 20:57,"582 8th St, San Francisco, CA 94016" +199642,USB-C Charging Cable,1,11.95,05/20/19 12:39,"276 2nd St, Atlanta, GA 30301" +199643,27in FHD Monitor,1,149.99,05/11/19 19:23,"700 1st St, Seattle, WA 98101" +199644,Wired Headphones,1,11.99,05/16/19 00:41,"227 14th St, New York City, NY 10001" +199645,Lightning Charging Cable,1,14.95,05/03/19 14:09,"614 Meadow St, Dallas, TX 75001" +199646,Flatscreen TV,1,300,05/01/19 21:18,"716 5th St, Boston, MA 02215" +199647,27in FHD Monitor,1,149.99,05/25/19 07:47,"702 Park St, Seattle, WA 98101" +199648,Lightning Charging Cable,1,14.95,05/06/19 18:35,"382 Pine St, Los Angeles, CA 90001" +199649,AA Batteries (4-pack),2,3.84,05/26/19 20:30,"297 12th St, Los Angeles, CA 90001" +199650,USB-C Charging Cable,2,11.95,05/15/19 01:51,"372 Madison St, Boston, MA 02215" +199651,27in 4K Gaming Monitor,1,389.99,05/20/19 19:01,"367 Elm St, Dallas, TX 75001" +199652,AA Batteries (4-pack),1,3.84,05/12/19 21:12,"214 Ridge St, San Francisco, CA 94016" +199653,27in 4K Gaming Monitor,1,389.99,05/18/19 22:41,"59 Hill St, Los Angeles, CA 90001" +199654,27in 4K Gaming Monitor,1,389.99,05/02/19 14:56,"252 Lincoln St, Boston, MA 02215" +199655,ThinkPad Laptop,1,999.99,05/01/19 16:36,"488 Ridge St, San Francisco, CA 94016" +199656,USB-C Charging Cable,1,11.95,05/09/19 17:00,"19 River St, Portland, OR 97035" +199657,27in FHD Monitor,1,149.99,05/31/19 21:34,"750 West St, Los Angeles, CA 90001" +199658,Macbook Pro Laptop,1,1700,05/05/19 19:21,"293 South St, Seattle, WA 98101" +199659,USB-C Charging Cable,1,11.95,05/19/19 19:20,"627 2nd St, San Francisco, CA 94016" +199660,USB-C Charging Cable,1,11.95,05/04/19 14:46,"733 1st St, Boston, MA 02215" +199661,USB-C Charging Cable,1,11.95,05/17/19 13:25,"104 Forest St, San Francisco, CA 94016" +199662,LG Dryer,1,600.0,05/23/19 19:30,"820 Pine St, Atlanta, GA 30301" +199663,AA Batteries (4-pack),2,3.84,05/31/19 18:13,"249 14th St, Portland, ME 04101" +199664,27in 4K Gaming Monitor,1,389.99,05/21/19 19:44,"280 11th St, Los Angeles, CA 90001" +199665,Lightning Charging Cable,1,14.95,05/05/19 19:21,"518 Meadow St, Dallas, TX 75001" +199666,27in 4K Gaming Monitor,1,389.99,05/21/19 01:25,"240 12th St, Dallas, TX 75001" +199667,27in FHD Monitor,1,149.99,05/10/19 11:18,"349 Dogwood St, Los Angeles, CA 90001" +199668,AAA Batteries (4-pack),1,2.99,05/11/19 23:45,"409 Madison St, San Francisco, CA 94016" +199669,20in Monitor,1,109.99,05/17/19 09:09,"260 Dogwood St, San Francisco, CA 94016" +199670,USB-C Charging Cable,1,11.95,05/22/19 01:25,"756 Lincoln St, San Francisco, CA 94016" +199671,Lightning Charging Cable,1,14.95,05/29/19 18:24,"124 Elm St, Seattle, WA 98101" +199672,Lightning Charging Cable,1,14.95,05/26/19 17:33,"459 Walnut St, Los Angeles, CA 90001" +199673,AA Batteries (4-pack),2,3.84,05/10/19 11:27,"820 2nd St, Dallas, TX 75001" +199674,Apple Airpods Headphones,1,150,05/23/19 13:35,"564 2nd St, San Francisco, CA 94016" +199675,Apple Airpods Headphones,1,150,05/03/19 12:33,"725 River St, Portland, OR 97035" +199676,Flatscreen TV,1,300,05/08/19 17:40,"237 Washington St, San Francisco, CA 94016" +199677,Wired Headphones,1,11.99,05/08/19 16:56,"39 Wilson St, Dallas, TX 75001" +199678,USB-C Charging Cable,2,11.95,05/31/19 08:36,"440 North St, Seattle, WA 98101" +199679,Apple Airpods Headphones,1,150,05/20/19 18:08,"120 Willow St, San Francisco, CA 94016" +199680,Lightning Charging Cable,1,14.95,05/25/19 16:18,"74 Forest St, Dallas, TX 75001" +199681,AAA Batteries (4-pack),3,2.99,05/27/19 12:32,"166 Jefferson St, Boston, MA 02215" +199682,USB-C Charging Cable,1,11.95,05/09/19 10:50,"819 North St, San Francisco, CA 94016" +199683,Apple Airpods Headphones,1,150,05/28/19 15:11,"963 Main St, Seattle, WA 98101" +199684,AAA Batteries (4-pack),1,2.99,05/25/19 21:25,"648 Dogwood St, New York City, NY 10001" +199685,Lightning Charging Cable,1,14.95,05/30/19 12:27,"358 Pine St, Boston, MA 02215" +199686,Vareebadd Phone,1,400,05/16/19 23:47,"744 9th St, San Francisco, CA 94016" +199687,USB-C Charging Cable,1,11.95,05/02/19 12:39,"41 6th St, Seattle, WA 98101" +199688,AAA Batteries (4-pack),1,2.99,05/16/19 07:51,"403 Jefferson St, Boston, MA 02215" +199689,Lightning Charging Cable,1,14.95,05/08/19 16:12,"767 Willow St, Atlanta, GA 30301" +199690,34in Ultrawide Monitor,1,379.99,05/30/19 14:52,"104 North St, New York City, NY 10001" +199691,27in FHD Monitor,1,149.99,05/13/19 14:06,"329 8th St, Boston, MA 02215" +199692,ThinkPad Laptop,1,999.99,05/04/19 08:58,"401 South St, Boston, MA 02215" +199693,27in FHD Monitor,1,149.99,05/09/19 13:28,"705 4th St, San Francisco, CA 94016" +199694,Apple Airpods Headphones,1,150,05/10/19 07:42,"341 14th St, Los Angeles, CA 90001" +199695,Lightning Charging Cable,1,14.95,05/10/19 19:02,"714 Cedar St, Boston, MA 02215" +199696,AA Batteries (4-pack),1,3.84,05/19/19 15:55,"472 12th St, Austin, TX 73301" +199697,iPhone,1,700,05/15/19 11:16,"762 Jackson St, New York City, NY 10001" +199698,Google Phone,1,600,05/18/19 12:54,"923 Pine St, Seattle, WA 98101" +199699,Wired Headphones,1,11.99,05/25/19 13:52,"755 Meadow St, Boston, MA 02215" +199700,Wired Headphones,1,11.99,05/24/19 20:48,"477 5th St, Los Angeles, CA 90001" +199701,27in 4K Gaming Monitor,1,389.99,05/13/19 14:56,"648 Maple St, Portland, OR 97035" +199702,Bose SoundSport Headphones,1,99.99,05/03/19 14:50,"421 Dogwood St, San Francisco, CA 94016" +199703,AAA Batteries (4-pack),1,2.99,05/09/19 20:01,"48 Lake St, Los Angeles, CA 90001" +199704,Apple Airpods Headphones,1,150,05/16/19 14:06,"820 Cedar St, New York City, NY 10001" +199705,AAA Batteries (4-pack),1,2.99,05/11/19 21:09,"64 Johnson St, New York City, NY 10001" +199706,AAA Batteries (4-pack),2,2.99,05/13/19 23:54,"991 Washington St, Los Angeles, CA 90001" +199707,Lightning Charging Cable,1,14.95,05/24/19 20:21,"741 Meadow St, Boston, MA 02215" +199708,AAA Batteries (4-pack),3,2.99,05/29/19 18:44,"223 7th St, Los Angeles, CA 90001" +199709,Apple Airpods Headphones,1,150,05/18/19 19:49,"446 Maple St, San Francisco, CA 94016" +199710,Apple Airpods Headphones,1,150,05/26/19 17:15,"105 Hickory St, Los Angeles, CA 90001" +199711,USB-C Charging Cable,1,11.95,05/27/19 14:48,"980 11th St, Atlanta, GA 30301" +199712,Bose SoundSport Headphones,1,99.99,05/23/19 15:03,"682 Walnut St, New York City, NY 10001" +199713,Bose SoundSport Headphones,1,99.99,05/01/19 12:45,"91 West St, New York City, NY 10001" +199714,27in 4K Gaming Monitor,1,389.99,05/26/19 18:54,"601 14th St, New York City, NY 10001" +199715,Apple Airpods Headphones,1,150,05/20/19 15:36,"374 10th St, Dallas, TX 75001" +199716,AA Batteries (4-pack),1,3.84,05/29/19 19:49,"193 Church St, New York City, NY 10001" +199717,USB-C Charging Cable,1,11.95,05/04/19 19:08,"336 Park St, Atlanta, GA 30301" +199718,Wired Headphones,1,11.99,05/28/19 21:19,"882 Walnut St, San Francisco, CA 94016" +199719,34in Ultrawide Monitor,1,379.99,05/09/19 13:35,"994 Center St, San Francisco, CA 94016" +199720,USB-C Charging Cable,1,11.95,05/08/19 13:34,"575 Maple St, San Francisco, CA 94016" +199721,Lightning Charging Cable,1,14.95,05/31/19 15:21,"842 12th St, San Francisco, CA 94016" +199722,AAA Batteries (4-pack),2,2.99,05/06/19 18:53,"572 Johnson St, Boston, MA 02215" +199723,Lightning Charging Cable,1,14.95,05/28/19 12:53,"453 Chestnut St, San Francisco, CA 94016" +199724,Lightning Charging Cable,1,14.95,05/03/19 01:16,"288 Madison St, Seattle, WA 98101" +199725,AAA Batteries (4-pack),1,2.99,05/24/19 17:15,"737 9th St, San Francisco, CA 94016" +199726,Flatscreen TV,1,300,05/02/19 21:22,"919 12th St, Portland, OR 97035" +199727,Wired Headphones,1,11.99,05/09/19 21:38,"945 Cherry St, Los Angeles, CA 90001" +199728,USB-C Charging Cable,1,11.95,05/25/19 10:11,"523 5th St, New York City, NY 10001" +199729,Flatscreen TV,1,300,05/16/19 18:42,"234 Forest St, Boston, MA 02215" +199730,USB-C Charging Cable,1,11.95,05/27/19 18:40,"603 10th St, Portland, OR 97035" +199731,LG Dryer,1,600.0,05/05/19 14:27,"883 Park St, Dallas, TX 75001" +199732,Lightning Charging Cable,2,14.95,05/18/19 13:27,"578 13th St, Dallas, TX 75001" +199733,iPhone,1,700,05/09/19 19:32,"806 Spruce St, Los Angeles, CA 90001" +199733,Apple Airpods Headphones,1,150,05/09/19 19:32,"806 Spruce St, Los Angeles, CA 90001" +199734,Macbook Pro Laptop,1,1700,05/26/19 11:09,"85 Johnson St, San Francisco, CA 94016" +199735,Wired Headphones,1,11.99,05/30/19 21:48,"757 Highland St, San Francisco, CA 94016" +199736,AA Batteries (4-pack),2,3.84,05/07/19 14:45,"487 Main St, San Francisco, CA 94016" +199737,AA Batteries (4-pack),2,3.84,05/31/19 23:13,"664 Maple St, Portland, OR 97035" +199738,Bose SoundSport Headphones,1,99.99,05/14/19 08:51,"392 Spruce St, San Francisco, CA 94016" +199739,Lightning Charging Cable,1,14.95,05/18/19 12:38,"527 6th St, Seattle, WA 98101" +199740,AA Batteries (4-pack),1,3.84,05/14/19 09:55,"198 Elm St, Los Angeles, CA 90001" +199741,Lightning Charging Cable,1,14.95,05/27/19 11:09,"728 Chestnut St, Seattle, WA 98101" +199742,ThinkPad Laptop,1,999.99,05/01/19 17:15,"595 Forest St, Los Angeles, CA 90001" +199743,AAA Batteries (4-pack),4,2.99,05/26/19 21:37,"676 6th St, Dallas, TX 75001" +199744,Lightning Charging Cable,1,14.95,05/23/19 08:36,"657 Jefferson St, Atlanta, GA 30301" +199745,Wired Headphones,1,11.99,05/08/19 19:09,"471 Walnut St, San Francisco, CA 94016" +199746,Google Phone,1,600,05/09/19 07:33,"416 South St, San Francisco, CA 94016" +199747,Bose SoundSport Headphones,1,99.99,05/19/19 20:39,"59 8th St, Austin, TX 73301" +199748,Apple Airpods Headphones,1,150,05/29/19 13:09,"648 Adams St, New York City, NY 10001" +199749,AA Batteries (4-pack),1,3.84,05/18/19 21:57,"590 South St, Portland, OR 97035" +199750,AAA Batteries (4-pack),1,2.99,05/10/19 22:52,"617 Pine St, San Francisco, CA 94016" +199751,Apple Airpods Headphones,2,150,05/01/19 20:34,"951 West St, Los Angeles, CA 90001" +199752,Google Phone,1,600,05/21/19 14:48,"260 Forest St, Dallas, TX 75001" +199753,27in 4K Gaming Monitor,1,389.99,05/04/19 20:53,"552 Madison St, Atlanta, GA 30301" +199754,27in FHD Monitor,1,149.99,05/27/19 01:18,"166 Cedar St, Portland, OR 97035" +199755,Bose SoundSport Headphones,1,99.99,05/08/19 13:51,"832 Park St, Boston, MA 02215" +199756,Bose SoundSport Headphones,1,99.99,05/28/19 13:39,"748 1st St, Boston, MA 02215" +199757,Wired Headphones,1,11.99,05/13/19 22:03,"907 Wilson St, Los Angeles, CA 90001" +199758,Lightning Charging Cable,1,14.95,05/21/19 12:21,"206 Main St, Portland, OR 97035" +199759,Wired Headphones,1,11.99,05/31/19 15:38,"609 14th St, Atlanta, GA 30301" +199760,Google Phone,1,600,05/18/19 13:40,"74 West St, San Francisco, CA 94016" +199760,Wired Headphones,1,11.99,05/18/19 13:40,"74 West St, San Francisco, CA 94016" +199761,Apple Airpods Headphones,1,150,05/31/19 18:11,"944 Hill St, San Francisco, CA 94016" +199762,Apple Airpods Headphones,1,150,05/15/19 09:23,"930 Wilson St, Los Angeles, CA 90001" +199763,Wired Headphones,1,11.99,05/11/19 20:28,"738 Spruce St, New York City, NY 10001" +199764,20in Monitor,1,109.99,05/30/19 19:45,"410 Dogwood St, Los Angeles, CA 90001" +199765,USB-C Charging Cable,1,11.95,05/21/19 11:18,"460 Adams St, New York City, NY 10001" +199766,34in Ultrawide Monitor,1,379.99,05/24/19 14:50,"125 Lincoln St, Portland, OR 97035" +199767,Wired Headphones,1,11.99,05/06/19 16:37,"888 Walnut St, Los Angeles, CA 90001" +199768,Wired Headphones,1,11.99,05/21/19 10:25,"752 Adams St, Los Angeles, CA 90001" +199769,Apple Airpods Headphones,1,150,05/06/19 11:52,"275 9th St, San Francisco, CA 94016" +199770,27in FHD Monitor,1,149.99,05/09/19 13:01,"767 Walnut St, San Francisco, CA 94016" +199771,Bose SoundSport Headphones,1,99.99,05/21/19 21:31,"793 Hill St, Portland, OR 97035" +199772,Macbook Pro Laptop,1,1700,05/30/19 12:09,"653 Madison St, Los Angeles, CA 90001" +199773,AA Batteries (4-pack),1,3.84,05/06/19 22:46,"686 Walnut St, Boston, MA 02215" +199774,Bose SoundSport Headphones,2,99.99,05/31/19 10:39,"841 Wilson St, Los Angeles, CA 90001" +199775,AA Batteries (4-pack),2,3.84,05/27/19 16:24,"311 Park St, San Francisco, CA 94016" +199776,AAA Batteries (4-pack),2,2.99,05/24/19 20:43,"986 7th St, San Francisco, CA 94016" +199777,AA Batteries (4-pack),1,3.84,05/01/19 10:26,"612 12th St, Seattle, WA 98101" +199778,Flatscreen TV,1,300,05/10/19 20:48,"926 Forest St, San Francisco, CA 94016" +199779,Bose SoundSport Headphones,1,99.99,05/10/19 11:21,"257 Highland St, San Francisco, CA 94016" +199780,AA Batteries (4-pack),1,3.84,05/12/19 12:44,"833 Maple St, Austin, TX 73301" +199781,Apple Airpods Headphones,1,150,05/08/19 23:55,"728 West St, Los Angeles, CA 90001" +199782,AA Batteries (4-pack),2,3.84,05/22/19 13:12,"76 Lincoln St, Los Angeles, CA 90001" +199783,AAA Batteries (4-pack),1,2.99,05/05/19 21:58,"40 Washington St, Portland, OR 97035" +199784,Google Phone,1,600,05/03/19 12:54,"638 6th St, Los Angeles, CA 90001" +199785,Wired Headphones,1,11.99,05/15/19 11:32,"605 Wilson St, Seattle, WA 98101" +199786,Lightning Charging Cable,1,14.95,05/04/19 21:35,"373 4th St, San Francisco, CA 94016" +199787,34in Ultrawide Monitor,1,379.99,05/15/19 23:51,"83 Hickory St, San Francisco, CA 94016" +199788,AA Batteries (4-pack),2,3.84,05/31/19 18:59,"13 9th St, Seattle, WA 98101" +199789,Bose SoundSport Headphones,1,99.99,05/20/19 14:35,"414 Johnson St, Los Angeles, CA 90001" +199790,Lightning Charging Cable,1,14.95,05/13/19 19:38,"645 Church St, Dallas, TX 75001" +199791,iPhone,1,700,05/08/19 11:30,"209 Maple St, Dallas, TX 75001" +199791,Wired Headphones,1,11.99,05/08/19 11:30,"209 Maple St, Dallas, TX 75001" +199792,27in 4K Gaming Monitor,1,389.99,05/03/19 17:56,"298 1st St, San Francisco, CA 94016" +199793,27in FHD Monitor,1,149.99,05/03/19 09:53,"215 Forest St, San Francisco, CA 94016" +199794,Wired Headphones,1,11.99,05/25/19 06:46,"563 5th St, San Francisco, CA 94016" +199795,27in FHD Monitor,1,149.99,05/07/19 14:56,"460 Cherry St, Dallas, TX 75001" +199796,Bose SoundSport Headphones,1,99.99,05/03/19 16:12,"733 Meadow St, Los Angeles, CA 90001" +199797,AA Batteries (4-pack),1,3.84,05/11/19 14:15,"327 8th St, Portland, OR 97035" +199798,Macbook Pro Laptop,1,1700,05/21/19 15:48,"416 2nd St, San Francisco, CA 94016" +199799,AA Batteries (4-pack),1,3.84,05/26/19 20:55,"702 South St, Portland, OR 97035" +199800,USB-C Charging Cable,1,11.95,05/29/19 13:41,"595 Main St, Seattle, WA 98101" +199801,Google Phone,1,600,05/01/19 08:19,"225 Lincoln St, New York City, NY 10001" +199802,AA Batteries (4-pack),1,3.84,05/15/19 16:15,"432 Meadow St, Boston, MA 02215" +199803,Lightning Charging Cable,1,14.95,05/19/19 12:24,"402 14th St, Austin, TX 73301" +199804,34in Ultrawide Monitor,1,379.99,05/31/19 23:47,"464 Center St, New York City, NY 10001" +199805,Lightning Charging Cable,1,14.95,05/15/19 16:27,"778 Pine St, Boston, MA 02215" +199806,iPhone,1,700,05/13/19 09:08,"593 Forest St, New York City, NY 10001" +199807,AAA Batteries (4-pack),2,2.99,05/02/19 11:23,"738 Washington St, New York City, NY 10001" +199808,AAA Batteries (4-pack),1,2.99,05/16/19 18:26,"130 11th St, Seattle, WA 98101" +199809,20in Monitor,1,109.99,05/05/19 14:27,"74 Spruce St, Dallas, TX 75001" +199810,27in FHD Monitor,1,149.99,05/18/19 13:58,"374 Park St, Los Angeles, CA 90001" +199811,AA Batteries (4-pack),1,3.84,05/31/19 17:01,"278 Spruce St, Boston, MA 02215" +199812,Lightning Charging Cable,1,14.95,05/24/19 12:00,"171 Meadow St, Los Angeles, CA 90001" +199813,Wired Headphones,1,11.99,05/22/19 09:31,"835 Johnson St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +199814,Lightning Charging Cable,2,14.95,05/25/19 19:55,"17 12th St, Los Angeles, CA 90001" +199815,AA Batteries (4-pack),1,3.84,05/28/19 16:20,"47 Meadow St, Atlanta, GA 30301" +199816,Bose SoundSport Headphones,1,99.99,05/04/19 13:41,"80 Meadow St, New York City, NY 10001" +199817,Wired Headphones,1,11.99,05/27/19 11:59,"347 Main St, Dallas, TX 75001" +199818,Macbook Pro Laptop,1,1700,05/23/19 20:42,"939 14th St, Dallas, TX 75001" +199819,AAA Batteries (4-pack),3,2.99,05/24/19 19:00,"6 Wilson St, Portland, OR 97035" +199820,34in Ultrawide Monitor,1,379.99,05/19/19 09:12,"940 8th St, Austin, TX 73301" +199821,AAA Batteries (4-pack),1,2.99,05/15/19 10:59,"570 Jefferson St, San Francisco, CA 94016" +199822,27in 4K Gaming Monitor,1,389.99,05/06/19 16:18,"48 Hill St, Boston, MA 02215" +199823,Wired Headphones,1,11.99,05/29/19 22:31,"609 Sunset St, Los Angeles, CA 90001" +199824,20in Monitor,1,109.99,05/19/19 08:44,"749 North St, Boston, MA 02215" +199825,27in FHD Monitor,1,149.99,05/03/19 20:13,"819 7th St, San Francisco, CA 94016" +199826,Lightning Charging Cable,1,14.95,05/24/19 15:31,"499 Ridge St, Dallas, TX 75001" +199827,Bose SoundSport Headphones,1,99.99,05/27/19 10:14,"958 Highland St, San Francisco, CA 94016" +199828,Google Phone,1,600,05/09/19 11:11,"245 9th St, Los Angeles, CA 90001" +199829,Google Phone,1,600,05/01/19 19:58,"466 Hickory St, San Francisco, CA 94016" +199829,Bose SoundSport Headphones,1,99.99,05/01/19 19:58,"466 Hickory St, San Francisco, CA 94016" +199830,Google Phone,1,600,05/06/19 13:14,"420 11th St, Dallas, TX 75001" +199830,Wired Headphones,1,11.99,05/06/19 13:14,"420 11th St, Dallas, TX 75001" +199831,27in 4K Gaming Monitor,1,389.99,05/30/19 07:20,"139 Willow St, New York City, NY 10001" +199832,Apple Airpods Headphones,1,150,05/13/19 21:47,"876 West St, Dallas, TX 75001" +199833,USB-C Charging Cable,2,11.95,05/11/19 00:13,"190 South St, New York City, NY 10001" +199834,Wired Headphones,1,11.99,05/01/19 23:19,"359 5th St, Atlanta, GA 30301" +199835,Apple Airpods Headphones,1,150,05/17/19 17:34,"244 Cedar St, Los Angeles, CA 90001" +199836,Macbook Pro Laptop,1,1700,05/14/19 21:22,"942 Jefferson St, Boston, MA 02215" +199837,Bose SoundSport Headphones,1,99.99,05/17/19 13:45,"586 North St, Seattle, WA 98101" +199838,27in 4K Gaming Monitor,1,389.99,05/13/19 11:28,"670 Wilson St, New York City, NY 10001" +199839,Wired Headphones,1,11.99,05/20/19 08:59,"751 Chestnut St, Los Angeles, CA 90001" +199840,Vareebadd Phone,1,400,05/20/19 11:34,"589 Willow St, New York City, NY 10001" +199841,Flatscreen TV,1,300,05/20/19 06:31,"851 West St, Dallas, TX 75001" +199842,Apple Airpods Headphones,1,150,05/10/19 16:26,"132 Johnson St, Austin, TX 73301" +199843,Flatscreen TV,1,300,05/20/19 20:32,"893 Elm St, Boston, MA 02215" +199844,Macbook Pro Laptop,1,1700,05/16/19 14:58,"837 Cedar St, San Francisco, CA 94016" +199845,27in FHD Monitor,1,149.99,05/28/19 16:38,"233 Willow St, Boston, MA 02215" +199846,Bose SoundSport Headphones,1,99.99,05/28/19 14:54,"129 Cherry St, New York City, NY 10001" +199847,USB-C Charging Cable,1,11.95,05/12/19 09:10,"795 5th St, Seattle, WA 98101" +199848,AAA Batteries (4-pack),1,2.99,05/22/19 23:15,"59 Ridge St, Austin, TX 73301" +199849,AA Batteries (4-pack),2,3.84,05/11/19 08:37,"514 9th St, Seattle, WA 98101" +199850,Vareebadd Phone,1,400,05/08/19 08:38,"98 12th St, Boston, MA 02215" +199850,USB-C Charging Cable,1,11.95,05/08/19 08:38,"98 12th St, Boston, MA 02215" +199851,Lightning Charging Cable,1,14.95,05/22/19 12:29,"756 14th St, San Francisco, CA 94016" +199852,Bose SoundSport Headphones,1,99.99,05/22/19 16:28,"306 2nd St, San Francisco, CA 94016" +199853,Wired Headphones,1,11.99,05/22/19 12:47,"92 West St, Boston, MA 02215" +199854,Apple Airpods Headphones,1,150,05/29/19 11:15,"405 Sunset St, San Francisco, CA 94016" +199855,AA Batteries (4-pack),2,3.84,05/16/19 20:38,"576 Hill St, Los Angeles, CA 90001" +199856,Lightning Charging Cable,1,14.95,05/21/19 17:04,"114 Spruce St, Seattle, WA 98101" +199857,iPhone,1,700,05/19/19 09:22,"714 Center St, Portland, OR 97035" +199857,Lightning Charging Cable,1,14.95,05/19/19 09:22,"714 Center St, Portland, OR 97035" +199858,iPhone,1,700,05/28/19 21:46,"194 Chestnut St, San Francisco, CA 94016" +199859,Lightning Charging Cable,1,14.95,05/16/19 07:58,"562 Cherry St, San Francisco, CA 94016" +199860,Bose SoundSport Headphones,1,99.99,05/07/19 19:25,"100 River St, San Francisco, CA 94016" +199861,USB-C Charging Cable,1,11.95,05/05/19 09:50,"586 1st St, Dallas, TX 75001" +199862,USB-C Charging Cable,1,11.95,05/20/19 21:29,"625 10th St, San Francisco, CA 94016" +199863,Apple Airpods Headphones,1,150,05/07/19 08:26,"356 14th St, Boston, MA 02215" +199864,AA Batteries (4-pack),1,3.84,05/14/19 20:33,"78 Cedar St, Seattle, WA 98101" +199865,27in 4K Gaming Monitor,1,389.99,05/23/19 12:15,"517 Highland St, Portland, OR 97035" +199866,USB-C Charging Cable,1,11.95,05/15/19 18:03,"17 Chestnut St, Boston, MA 02215" +199867,AA Batteries (4-pack),1,3.84,05/13/19 20:07,"234 11th St, Los Angeles, CA 90001" +199868,Macbook Pro Laptop,1,1700,05/14/19 09:38,"844 Forest St, Seattle, WA 98101" +199869,Wired Headphones,1,11.99,05/22/19 21:18,"724 10th St, Portland, OR 97035" +199870,AAA Batteries (4-pack),2,2.99,05/13/19 21:00,"849 Meadow St, New York City, NY 10001" +199871,Flatscreen TV,1,300,05/22/19 20:58,"608 Walnut St, Portland, OR 97035" +199872,AA Batteries (4-pack),1,3.84,05/22/19 23:26,"484 Hill St, Atlanta, GA 30301" +199873,20in Monitor,1,109.99,05/17/19 13:34,"483 Hickory St, New York City, NY 10001" +199874,Lightning Charging Cable,1,14.95,05/26/19 16:37,"612 Spruce St, Los Angeles, CA 90001" +199875,Google Phone,1,600,05/25/19 16:36,"612 Lincoln St, San Francisco, CA 94016" +199876,AAA Batteries (4-pack),1,2.99,05/20/19 00:41,"785 Johnson St, New York City, NY 10001" +199877,AAA Batteries (4-pack),2,2.99,05/10/19 21:32,"580 North St, Seattle, WA 98101" +199878,USB-C Charging Cable,1,11.95,05/27/19 13:16,"240 6th St, San Francisco, CA 94016" +199879,27in 4K Gaming Monitor,1,389.99,05/31/19 11:49,"216 Spruce St, Los Angeles, CA 90001" +199880,Bose SoundSport Headphones,1,99.99,05/29/19 11:12,"291 Ridge St, Austin, TX 73301" +199881,AAA Batteries (4-pack),1,2.99,05/07/19 16:41,"914 South St, Dallas, TX 75001" +199882,34in Ultrawide Monitor,1,379.99,05/29/19 16:18,"661 Jefferson St, New York City, NY 10001" +199883,Lightning Charging Cable,1,14.95,05/29/19 11:30,"808 Wilson St, Boston, MA 02215" +199884,AAA Batteries (4-pack),1,2.99,05/05/19 18:18,"54 1st St, Dallas, TX 75001" +199885,USB-C Charging Cable,1,11.95,05/05/19 07:14,"71 Maple St, Dallas, TX 75001" +,,,,, +199886,Apple Airpods Headphones,1,150,05/13/19 16:28,"295 2nd St, Austin, TX 73301" +199887,34in Ultrawide Monitor,1,379.99,05/15/19 12:07,"711 Hickory St, San Francisco, CA 94016" +199888,Apple Airpods Headphones,1,150,05/04/19 10:38,"289 Maple St, Boston, MA 02215" +199889,iPhone,1,700,05/25/19 07:30,"169 Cedar St, Dallas, TX 75001" +199890,Flatscreen TV,1,300,05/18/19 18:41,"338 Ridge St, San Francisco, CA 94016" +199891,27in 4K Gaming Monitor,1,389.99,05/28/19 22:58,"281 Johnson St, New York City, NY 10001" +199892,USB-C Charging Cable,1,11.95,05/22/19 19:23,"216 9th St, Austin, TX 73301" +199893,AAA Batteries (4-pack),1,2.99,05/06/19 20:05,"674 Lake St, Boston, MA 02215" +199894,27in FHD Monitor,1,149.99,05/31/19 01:14,"519 1st St, Los Angeles, CA 90001" +199895,iPhone,1,700,05/26/19 19:10,"775 2nd St, Seattle, WA 98101" +199895,20in Monitor,1,109.99,05/26/19 19:10,"775 2nd St, Seattle, WA 98101" +199896,AA Batteries (4-pack),1,3.84,05/15/19 18:13,"953 Forest St, Los Angeles, CA 90001" +199897,AA Batteries (4-pack),1,3.84,05/04/19 15:47,"872 Walnut St, New York City, NY 10001" +199898,Lightning Charging Cable,1,14.95,05/04/19 23:39,"712 Elm St, Austin, TX 73301" +199899,27in FHD Monitor,1,149.99,05/14/19 20:21,"128 6th St, Seattle, WA 98101" +199900,27in 4K Gaming Monitor,1,389.99,05/04/19 21:52,"433 Highland St, Los Angeles, CA 90001" +199901,20in Monitor,1,109.99,05/29/19 14:34,"341 Pine St, Boston, MA 02215" +199902,iPhone,1,700,05/09/19 17:39,"187 Dogwood St, Austin, TX 73301" +199902,Lightning Charging Cable,1,14.95,05/09/19 17:39,"187 Dogwood St, Austin, TX 73301" +199902,Wired Headphones,1,11.99,05/09/19 17:39,"187 Dogwood St, Austin, TX 73301" +199903,USB-C Charging Cable,1,11.95,05/23/19 09:09,"584 12th St, Los Angeles, CA 90001" +199904,Lightning Charging Cable,1,14.95,05/31/19 18:56,"426 2nd St, San Francisco, CA 94016" +199905,27in FHD Monitor,1,149.99,05/26/19 17:47,"561 Jefferson St, Los Angeles, CA 90001" +199906,USB-C Charging Cable,1,11.95,05/25/19 14:31,"851 Main St, Boston, MA 02215" +199907,Wired Headphones,1,11.99,05/25/19 19:28,"56 12th St, Los Angeles, CA 90001" +199908,AA Batteries (4-pack),1,3.84,05/11/19 09:33,"504 10th St, San Francisco, CA 94016" +199909,Bose SoundSport Headphones,1,99.99,05/08/19 09:25,"437 Madison St, Seattle, WA 98101" +199910,27in FHD Monitor,1,149.99,05/31/19 08:42,"182 Dogwood St, Portland, OR 97035" +199911,20in Monitor,1,109.99,05/26/19 13:13,"800 13th St, Boston, MA 02215" +199912,AA Batteries (4-pack),1,3.84,05/17/19 16:35,"382 Church St, New York City, NY 10001" +199913,Wired Headphones,1,11.99,05/19/19 13:40,"101 Lincoln St, Seattle, WA 98101" +199914,20in Monitor,1,109.99,05/25/19 19:22,"83 12th St, Portland, OR 97035" +199915,Apple Airpods Headphones,1,150,05/14/19 16:09,"364 10th St, Boston, MA 02215" +199916,34in Ultrawide Monitor,1,379.99,05/18/19 10:50,"847 Meadow St, San Francisco, CA 94016" +199917,AAA Batteries (4-pack),1,2.99,05/24/19 20:05,"889 Church St, Boston, MA 02215" +199918,20in Monitor,1,109.99,05/04/19 19:31,"596 5th St, Boston, MA 02215" +199919,AAA Batteries (4-pack),2,2.99,05/27/19 11:57,"993 Meadow St, New York City, NY 10001" +199920,AA Batteries (4-pack),1,3.84,05/22/19 14:44,"617 Center St, New York City, NY 10001" +199921,AA Batteries (4-pack),2,3.84,05/15/19 19:25,"252 Spruce St, New York City, NY 10001" +199922,27in FHD Monitor,1,149.99,05/02/19 11:20,"868 Dogwood St, San Francisco, CA 94016" +199923,27in FHD Monitor,2,149.99,05/21/19 15:13,"779 5th St, Los Angeles, CA 90001" +199924,Apple Airpods Headphones,1,150,05/19/19 15:26,"512 9th St, Boston, MA 02215" +199925,USB-C Charging Cable,1,11.95,05/20/19 17:58,"544 West St, New York City, NY 10001" +199926,Apple Airpods Headphones,1,150,05/18/19 17:02,"601 Meadow St, Boston, MA 02215" +199927,27in FHD Monitor,1,149.99,05/28/19 15:00,"983 6th St, Los Angeles, CA 90001" +199928,USB-C Charging Cable,1,11.95,05/06/19 13:42,"479 Jackson St, Seattle, WA 98101" +199929,USB-C Charging Cable,1,11.95,05/27/19 20:31,"538 Lincoln St, Atlanta, GA 30301" +199930,Lightning Charging Cable,1,14.95,05/12/19 02:19,"474 Meadow St, Austin, TX 73301" +199931,Flatscreen TV,1,300,05/09/19 16:49,"448 Main St, Los Angeles, CA 90001" +199932,AA Batteries (4-pack),1,3.84,05/27/19 14:15,"793 12th St, Boston, MA 02215" +199933,AAA Batteries (4-pack),1,2.99,05/17/19 15:32,"1 Adams St, Los Angeles, CA 90001" +199934,Flatscreen TV,1,300,05/15/19 23:28,"517 Cedar St, San Francisco, CA 94016" +199935,Bose SoundSport Headphones,1,99.99,05/07/19 08:29,"520 13th St, Portland, OR 97035" +199936,AAA Batteries (4-pack),1,2.99,05/29/19 20:05,"503 Willow St, San Francisco, CA 94016" +199937,Wired Headphones,1,11.99,05/13/19 20:17,"518 Cherry St, New York City, NY 10001" +199938,27in 4K Gaming Monitor,1,389.99,05/02/19 13:26,"565 Main St, Boston, MA 02215" +199939,Apple Airpods Headphones,1,150,05/30/19 18:07,"576 1st St, Los Angeles, CA 90001" +199940,27in FHD Monitor,1,149.99,05/10/19 21:32,"256 Johnson St, Portland, ME 04101" +199941,Wired Headphones,1,11.99,05/03/19 20:18,"724 Elm St, New York City, NY 10001" +199942,AA Batteries (4-pack),1,3.84,05/08/19 21:41,"161 Maple St, New York City, NY 10001" +199943,Lightning Charging Cable,1,14.95,05/03/19 20:15,"492 12th St, San Francisco, CA 94016" +199944,AAA Batteries (4-pack),1,2.99,05/28/19 22:55,"938 Chestnut St, Seattle, WA 98101" +199945,27in FHD Monitor,1,149.99,05/13/19 17:51,"708 Cherry St, New York City, NY 10001" +199946,USB-C Charging Cable,1,11.95,05/19/19 18:49,"754 Willow St, Los Angeles, CA 90001" +199947,USB-C Charging Cable,1,11.95,05/16/19 15:09,"506 West St, Los Angeles, CA 90001" +199948,Flatscreen TV,1,300,05/05/19 10:35,"233 Sunset St, San Francisco, CA 94016" +199949,Lightning Charging Cable,1,14.95,05/30/19 14:10,"992 Elm St, Austin, TX 73301" +199950,Bose SoundSport Headphones,1,99.99,05/18/19 11:35,"169 Dogwood St, San Francisco, CA 94016" +199951,27in FHD Monitor,1,149.99,05/27/19 18:19,"96 Center St, Los Angeles, CA 90001" +199952,AAA Batteries (4-pack),2,2.99,05/18/19 20:49,"354 1st St, Boston, MA 02215" +199953,Bose SoundSport Headphones,1,99.99,05/05/19 16:32,"615 Hickory St, Los Angeles, CA 90001" +199954,Wired Headphones,1,11.99,05/28/19 22:04,"434 Washington St, Seattle, WA 98101" +199955,Lightning Charging Cable,1,14.95,05/17/19 19:36,"395 9th St, San Francisco, CA 94016" +199956,27in 4K Gaming Monitor,1,389.99,05/25/19 08:37,"904 13th St, Seattle, WA 98101" +199957,iPhone,1,700,05/27/19 07:16,"191 Sunset St, Los Angeles, CA 90001" +199958,AAA Batteries (4-pack),3,2.99,05/16/19 23:12,"727 Pine St, New York City, NY 10001" +199959,AA Batteries (4-pack),3,3.84,05/21/19 21:40,"367 Forest St, Atlanta, GA 30301" +199960,Flatscreen TV,1,300,05/15/19 18:49,"903 Jefferson St, Boston, MA 02215" +199961,Apple Airpods Headphones,1,150,05/11/19 20:33,"976 Jefferson St, Dallas, TX 75001" +199962,Lightning Charging Cable,1,14.95,05/10/19 16:58,"81 Center St, San Francisco, CA 94016" +199963,Wired Headphones,1,11.99,05/11/19 17:21,"108 Adams St, San Francisco, CA 94016" +199964,27in 4K Gaming Monitor,1,389.99,05/14/19 08:39,"31 Church St, Atlanta, GA 30301" +199965,34in Ultrawide Monitor,1,379.99,05/27/19 00:09,"108 Highland St, San Francisco, CA 94016" +199966,AAA Batteries (4-pack),1,2.99,05/09/19 22:14,"180 River St, Portland, OR 97035" +199967,Wired Headphones,1,11.99,05/31/19 17:12,"865 Maple St, Boston, MA 02215" +199968,Lightning Charging Cable,1,14.95,05/27/19 14:46,"229 Hickory St, Portland, OR 97035" +199969,Lightning Charging Cable,1,14.95,05/28/19 00:00,"795 Forest St, Dallas, TX 75001" +199970,Wired Headphones,1,11.99,05/05/19 15:26,"5 Church St, Portland, OR 97035" +199971,Lightning Charging Cable,1,14.95,05/02/19 13:24,"325 Adams St, Dallas, TX 75001" +199972,AAA Batteries (4-pack),2,2.99,05/13/19 22:11,"913 Wilson St, San Francisco, CA 94016" +199973,AAA Batteries (4-pack),1,2.99,05/01/19 23:24,"966 Adams St, Boston, MA 02215" +199974,Flatscreen TV,1,300,05/18/19 20:44,"718 Forest St, San Francisco, CA 94016" +199975,Bose SoundSport Headphones,1,99.99,05/17/19 21:01,"455 12th St, Atlanta, GA 30301" +199976,Bose SoundSport Headphones,1,99.99,05/24/19 16:26,"438 4th St, San Francisco, CA 94016" +199977,Flatscreen TV,1,300,05/25/19 21:38,"42 Jackson St, Dallas, TX 75001" +199978,AAA Batteries (4-pack),1,2.99,05/05/19 14:26,"749 7th St, Dallas, TX 75001" +199979,AAA Batteries (4-pack),1,2.99,05/07/19 15:58,"404 River St, Atlanta, GA 30301" +199980,Lightning Charging Cable,1,14.95,05/06/19 12:21,"882 2nd St, Austin, TX 73301" +199981,USB-C Charging Cable,1,11.95,05/17/19 19:35,"261 Madison St, Boston, MA 02215" +199982,USB-C Charging Cable,1,11.95,05/28/19 09:43,"291 Jefferson St, Los Angeles, CA 90001" +199983,USB-C Charging Cable,1,11.95,05/19/19 13:31,"112 Pine St, San Francisco, CA 94016" +199984,27in 4K Gaming Monitor,1,389.99,05/08/19 21:33,"755 Elm St, Dallas, TX 75001" +199985,AAA Batteries (4-pack),1,2.99,05/10/19 09:41,"95 Dogwood St, New York City, NY 10001" +199986,Bose SoundSport Headphones,1,99.99,05/06/19 10:45,"147 6th St, New York City, NY 10001" +199987,AAA Batteries (4-pack),2,2.99,05/15/19 11:28,"857 12th St, New York City, NY 10001" +,,,,, +199988,USB-C Charging Cable,1,11.95,05/20/19 12:35,"428 Chestnut St, Dallas, TX 75001" +199989,Wired Headphones,1,11.99,05/25/19 10:00,"390 10th St, New York City, NY 10001" +199990,Wired Headphones,1,11.99,05/16/19 22:06,"586 Lake St, Portland, OR 97035" +199991,ThinkPad Laptop,1,999.99,05/02/19 19:29,"32 Hill St, San Francisco, CA 94016" +199992,Apple Airpods Headphones,1,150,05/28/19 23:48,"380 Pine St, Los Angeles, CA 90001" +199993,Apple Airpods Headphones,1,150,05/23/19 17:33,"523 1st St, Los Angeles, CA 90001" +199994,27in FHD Monitor,1,149.99,05/15/19 15:53,"869 South St, San Francisco, CA 94016" +199995,20in Monitor,1,109.99,05/18/19 18:16,"834 Maple St, Atlanta, GA 30301" +199996,AA Batteries (4-pack),1,3.84,05/29/19 22:20,"182 14th St, Los Angeles, CA 90001" +199997,Wired Headphones,1,11.99,05/23/19 18:01,"867 Willow St, New York City, NY 10001" +199998,Lightning Charging Cable,1,14.95,05/26/19 19:38,"802 Walnut St, San Francisco, CA 94016" +199999,Macbook Pro Laptop,1,1700,05/21/19 16:38,"748 West St, Atlanta, GA 30301" +200000,LG Dryer,1,600.0,05/07/19 20:30,"546 8th St, San Francisco, CA 94016" +200001,Flatscreen TV,1,300,05/08/19 11:12,"915 Lake St, Boston, MA 02215" +200002,Wired Headphones,1,11.99,05/05/19 21:59,"962 Cherry St, Atlanta, GA 30301" +200003,Wired Headphones,1,11.99,05/29/19 13:54,"431 Lake St, Seattle, WA 98101" +200004,Wired Headphones,1,11.99,05/09/19 20:00,"69 Jackson St, New York City, NY 10001" +200005,Flatscreen TV,1,300,05/08/19 22:54,"498 Washington St, Atlanta, GA 30301" +200006,AA Batteries (4-pack),1,3.84,05/21/19 20:22,"194 Hill St, Dallas, TX 75001" +200007,USB-C Charging Cable,1,11.95,05/13/19 20:24,"979 Church St, Portland, OR 97035" +200008,20in Monitor,1,109.99,05/11/19 19:49,"638 South St, San Francisco, CA 94016" +200009,AA Batteries (4-pack),2,3.84,05/31/19 11:52,"263 Lincoln St, Los Angeles, CA 90001" +200010,AA Batteries (4-pack),2,3.84,05/25/19 07:32,"533 Elm St, New York City, NY 10001" +200011,Wired Headphones,1,11.99,05/30/19 20:09,"469 Cherry St, Boston, MA 02215" +200012,Bose SoundSport Headphones,1,99.99,05/07/19 10:30,"782 Adams St, New York City, NY 10001" +200013,USB-C Charging Cable,1,11.95,05/22/19 11:56,"843 South St, New York City, NY 10001" +200014,AA Batteries (4-pack),1,3.84,05/31/19 19:07,"698 12th St, San Francisco, CA 94016" +200015,Bose SoundSport Headphones,1,99.99,05/12/19 22:05,"671 Forest St, Atlanta, GA 30301" +200016,Vareebadd Phone,1,400,05/25/19 10:17,"216 North St, New York City, NY 10001" +200017,Wired Headphones,1,11.99,05/20/19 13:01,"506 Willow St, Dallas, TX 75001" +200018,Bose SoundSport Headphones,2,99.99,05/12/19 17:35,"600 Lincoln St, Dallas, TX 75001" +200019,Wired Headphones,1,11.99,05/20/19 11:12,"611 6th St, Austin, TX 73301" +200020,Lightning Charging Cable,1,14.95,05/11/19 20:24,"250 Jackson St, Los Angeles, CA 90001" +200021,Flatscreen TV,1,300,05/08/19 09:19,"137 West St, San Francisco, CA 94016" +200022,AAA Batteries (4-pack),1,2.99,05/01/19 11:33,"703 Lakeview St, Portland, OR 97035" +200023,27in FHD Monitor,1,149.99,05/19/19 19:30,"336 Washington St, Los Angeles, CA 90001" +200024,Lightning Charging Cable,1,14.95,05/09/19 10:37,"931 Main St, Atlanta, GA 30301" +200025,Wired Headphones,1,11.99,05/31/19 18:32,"937 Lincoln St, Los Angeles, CA 90001" +200026,Apple Airpods Headphones,1,150,05/01/19 22:29,"962 Main St, Boston, MA 02215" +200027,Wired Headphones,1,11.99,05/21/19 15:03,"227 2nd St, San Francisco, CA 94016" +200027,Lightning Charging Cable,1,14.95,05/21/19 15:03,"227 2nd St, San Francisco, CA 94016" +200028,Bose SoundSport Headphones,1,99.99,05/06/19 08:36,"441 Johnson St, San Francisco, CA 94016" +200029,USB-C Charging Cable,1,11.95,05/20/19 21:52,"989 Church St, San Francisco, CA 94016" +200030,Bose SoundSport Headphones,1,99.99,05/28/19 13:03,"352 7th St, New York City, NY 10001" +200031,Wired Headphones,1,11.99,05/19/19 23:12,"728 Highland St, New York City, NY 10001" +200032,AA Batteries (4-pack),1,3.84,05/14/19 11:26,"553 Meadow St, Seattle, WA 98101" +200033,Lightning Charging Cable,1,14.95,05/24/19 21:43,"366 14th St, Austin, TX 73301" +200034,Apple Airpods Headphones,1,150,05/31/19 15:57,"486 Jefferson St, Los Angeles, CA 90001" +200035,AAA Batteries (4-pack),1,2.99,05/26/19 20:12,"320 Wilson St, Dallas, TX 75001" +200036,Bose SoundSport Headphones,1,99.99,05/11/19 16:18,"192 Highland St, Atlanta, GA 30301" +200037,34in Ultrawide Monitor,1,379.99,05/04/19 15:04,"693 Dogwood St, Portland, OR 97035" +200038,ThinkPad Laptop,1,999.99,05/12/19 21:11,"727 Wilson St, San Francisco, CA 94016" +200039,Wired Headphones,1,11.99,05/06/19 18:38,"633 South St, Portland, OR 97035" +200040,Apple Airpods Headphones,1,150,05/21/19 18:29,"53 Walnut St, San Francisco, CA 94016" +200041,34in Ultrawide Monitor,1,379.99,05/01/19 22:41,"758 West St, Atlanta, GA 30301" +200042,AAA Batteries (4-pack),1,2.99,05/26/19 19:55,"154 Pine St, San Francisco, CA 94016" +200043,AA Batteries (4-pack),1,3.84,05/31/19 10:09,"987 5th St, Los Angeles, CA 90001" +200044,AA Batteries (4-pack),1,3.84,05/29/19 11:10,"902 Cedar St, Los Angeles, CA 90001" +200045,AAA Batteries (4-pack),2,2.99,05/07/19 11:25,"750 River St, New York City, NY 10001" +200046,USB-C Charging Cable,1,11.95,05/06/19 09:20,"615 Lincoln St, Los Angeles, CA 90001" +200047,27in FHD Monitor,1,149.99,05/08/19 19:01,"403 South St, Atlanta, GA 30301" +200048,Apple Airpods Headphones,1,150,05/14/19 10:05,"295 North St, San Francisco, CA 94016" +200049,USB-C Charging Cable,1,11.95,05/06/19 20:09,"820 2nd St, Austin, TX 73301" +200050,AAA Batteries (4-pack),1,2.99,05/28/19 09:16,"855 Chestnut St, New York City, NY 10001" +200051,AAA Batteries (4-pack),1,2.99,05/18/19 17:59,"710 Center St, Los Angeles, CA 90001" +200052,LG Dryer,1,600.0,05/24/19 21:46,"929 Dogwood St, Dallas, TX 75001" +200053,USB-C Charging Cable,1,11.95,05/26/19 20:33,"450 6th St, Los Angeles, CA 90001" +200054,USB-C Charging Cable,1,11.95,05/06/19 16:12,"908 9th St, Portland, OR 97035" +200055,iPhone,1,700,05/05/19 12:27,"433 North St, San Francisco, CA 94016" +200056,USB-C Charging Cable,2,11.95,05/23/19 18:23,"121 Hill St, Boston, MA 02215" +200057,AAA Batteries (4-pack),4,2.99,05/18/19 23:54,"899 Spruce St, Boston, MA 02215" +200058,Lightning Charging Cable,1,14.95,05/28/19 12:39,"319 River St, Atlanta, GA 30301" +200059,34in Ultrawide Monitor,1,379.99,05/13/19 17:55,"66 11th St, Seattle, WA 98101" +200060,AAA Batteries (4-pack),1,2.99,05/29/19 17:30,"270 River St, San Francisco, CA 94016" +200061,34in Ultrawide Monitor,1,379.99,05/09/19 11:17,"560 Madison St, San Francisco, CA 94016" +200062,Bose SoundSport Headphones,1,99.99,05/10/19 15:22,"172 Cedar St, New York City, NY 10001" +200063,27in FHD Monitor,1,149.99,05/30/19 11:46,"185 1st St, Portland, OR 97035" +200064,AA Batteries (4-pack),2,3.84,05/29/19 16:45,"138 Hill St, New York City, NY 10001" +200065,34in Ultrawide Monitor,1,379.99,05/26/19 17:47,"136 Madison St, New York City, NY 10001" +200066,Lightning Charging Cable,1,14.95,05/03/19 14:32,"642 Park St, Boston, MA 02215" +200067,Apple Airpods Headphones,1,150,05/20/19 14:16,"239 7th St, New York City, NY 10001" +200068,USB-C Charging Cable,1,11.95,05/23/19 17:02,"90 Washington St, Boston, MA 02215" +200069,AA Batteries (4-pack),1,3.84,05/31/19 21:48,"932 Sunset St, New York City, NY 10001" +200070,Lightning Charging Cable,1,14.95,05/19/19 22:20,"339 Highland St, Seattle, WA 98101" +200071,Lightning Charging Cable,1,14.95,05/15/19 14:54,"267 Wilson St, Dallas, TX 75001" +200071,AAA Batteries (4-pack),1,2.99,05/15/19 14:54,"267 Wilson St, Dallas, TX 75001" +200072,34in Ultrawide Monitor,1,379.99,05/05/19 15:56,"897 West St, Seattle, WA 98101" +200073,34in Ultrawide Monitor,1,379.99,05/18/19 20:12,"615 12th St, San Francisco, CA 94016" +200074,27in 4K Gaming Monitor,1,389.99,05/27/19 10:31,"173 1st St, Austin, TX 73301" +200075,27in FHD Monitor,1,149.99,05/27/19 08:38,"393 Madison St, New York City, NY 10001" +200076,Wired Headphones,1,11.99,05/21/19 10:36,"52 Park St, New York City, NY 10001" +200077,Apple Airpods Headphones,1,150,05/22/19 20:05,"378 Highland St, Austin, TX 73301" +200078,iPhone,1,700,05/18/19 13:53,"547 Lincoln St, Austin, TX 73301" +200078,Lightning Charging Cable,1,14.95,05/18/19 13:53,"547 Lincoln St, Austin, TX 73301" +200079,Apple Airpods Headphones,1,150,05/04/19 10:37,"709 South St, New York City, NY 10001" +200080,Flatscreen TV,1,300,05/27/19 16:41,"381 Chestnut St, Atlanta, GA 30301" +200081,Lightning Charging Cable,1,14.95,05/13/19 13:46,"945 Madison St, Atlanta, GA 30301" +200082,AA Batteries (4-pack),1,3.84,05/25/19 13:08,"940 Dogwood St, Boston, MA 02215" +200083,Wired Headphones,1,11.99,05/23/19 11:37,"634 6th St, Los Angeles, CA 90001" +200084,USB-C Charging Cable,1,11.95,05/14/19 20:33,"843 Center St, Dallas, TX 75001" +200085,Apple Airpods Headphones,1,150,05/29/19 11:51,"512 Lincoln St, Los Angeles, CA 90001" +200086,AAA Batteries (4-pack),1,2.99,05/25/19 19:06,"396 6th St, Los Angeles, CA 90001" +200087,27in FHD Monitor,1,149.99,05/31/19 16:40,"927 14th St, Los Angeles, CA 90001" +200088,AAA Batteries (4-pack),1,2.99,05/27/19 07:55,"620 Madison St, New York City, NY 10001" +200089,Wired Headphones,1,11.99,05/06/19 19:26,"66 River St, New York City, NY 10001" +200090,AA Batteries (4-pack),1,3.84,05/21/19 13:46,"212 Meadow St, Los Angeles, CA 90001" +200091,Wired Headphones,1,11.99,05/30/19 10:01,"811 River St, Atlanta, GA 30301" +200092,Wired Headphones,1,11.99,05/23/19 17:25,"502 North St, Dallas, TX 75001" +200093,Apple Airpods Headphones,1,150,05/03/19 00:09,"466 Madison St, Atlanta, GA 30301" +200094,Lightning Charging Cable,1,14.95,05/16/19 14:26,"30 Main St, San Francisco, CA 94016" +200095,Macbook Pro Laptop,1,1700,05/06/19 19:06,"355 Church St, Boston, MA 02215" +200096,AA Batteries (4-pack),3,3.84,05/30/19 15:19,"190 Center St, San Francisco, CA 94016" +200097,27in 4K Gaming Monitor,1,389.99,05/08/19 16:10,"35 7th St, San Francisco, CA 94016" +200098,AA Batteries (4-pack),2,3.84,05/19/19 22:53,"341 2nd St, San Francisco, CA 94016" +200099,Wired Headphones,1,11.99,05/27/19 20:40,"302 13th St, Seattle, WA 98101" +200100,Lightning Charging Cable,1,14.95,05/13/19 09:12,"316 Sunset St, Atlanta, GA 30301" +200101,AAA Batteries (4-pack),2,2.99,05/12/19 12:14,"622 9th St, New York City, NY 10001" +200102,USB-C Charging Cable,1,11.95,05/29/19 12:55,"824 Madison St, Seattle, WA 98101" +200103,AA Batteries (4-pack),2,3.84,05/29/19 15:16,"225 Park St, New York City, NY 10001" +200104,Macbook Pro Laptop,1,1700,05/11/19 22:34,"3 Pine St, Los Angeles, CA 90001" +200105,AAA Batteries (4-pack),1,2.99,05/24/19 19:43,"705 Hill St, San Francisco, CA 94016" +200106,AAA Batteries (4-pack),1,2.99,05/20/19 19:37,"855 1st St, San Francisco, CA 94016" +200107,iPhone,1,700,05/06/19 11:03,"366 Hill St, San Francisco, CA 94016" +200108,USB-C Charging Cable,1,11.95,05/14/19 21:03,"915 Adams St, New York City, NY 10001" +200109,Wired Headphones,1,11.99,05/26/19 19:19,"549 6th St, Los Angeles, CA 90001" +200110,Wired Headphones,1,11.99,05/20/19 22:50,"644 Lake St, New York City, NY 10001" +200111,Google Phone,1,600,05/21/19 18:42,"239 Elm St, San Francisco, CA 94016" +200112,AA Batteries (4-pack),1,3.84,05/03/19 01:55,"10 Johnson St, Portland, OR 97035" +200113,AA Batteries (4-pack),1,3.84,05/12/19 21:26,"34 Dogwood St, Seattle, WA 98101" +200114,USB-C Charging Cable,2,11.95,05/18/19 10:22,"845 Park St, Los Angeles, CA 90001" +200115,AA Batteries (4-pack),1,3.84,05/13/19 11:50,"854 Johnson St, Austin, TX 73301" +200116,Lightning Charging Cable,1,14.95,05/23/19 13:33,"804 River St, Austin, TX 73301" +200117,LG Dryer,1,600.0,05/19/19 18:44,"864 11th St, San Francisco, CA 94016" +200118,Flatscreen TV,1,300,05/28/19 19:29,"464 Walnut St, Dallas, TX 75001" +200119,Lightning Charging Cable,1,14.95,05/15/19 21:01,"741 Jackson St, Austin, TX 73301" +200120,Google Phone,1,600,05/08/19 11:35,"725 14th St, Seattle, WA 98101" +200121,Lightning Charging Cable,1,14.95,05/17/19 10:33,"501 Hickory St, Los Angeles, CA 90001" +200122,Macbook Pro Laptop,1,1700,05/15/19 21:01,"13 8th St, Portland, OR 97035" +200123,Lightning Charging Cable,1,14.95,05/23/19 20:31,"214 11th St, Seattle, WA 98101" +200124,AAA Batteries (4-pack),1,2.99,05/20/19 17:10,"881 7th St, Atlanta, GA 30301" +200125,Bose SoundSport Headphones,1,99.99,05/13/19 20:38,"479 Center St, San Francisco, CA 94016" +200126,USB-C Charging Cable,2,11.95,05/22/19 14:20,"856 Elm St, San Francisco, CA 94016" +200127,USB-C Charging Cable,1,11.95,05/30/19 13:18,"709 Cedar St, San Francisco, CA 94016" +200128,USB-C Charging Cable,1,11.95,05/21/19 17:48,"877 2nd St, New York City, NY 10001" +200129,Wired Headphones,1,11.99,05/27/19 18:39,"655 River St, Dallas, TX 75001" +200130,Vareebadd Phone,1,400,05/18/19 23:18,"460 Walnut St, Austin, TX 73301" +200131,Wired Headphones,1,11.99,05/26/19 17:43,"676 Church St, Seattle, WA 98101" +200132,USB-C Charging Cable,2,11.95,05/28/19 07:32,"818 West St, San Francisco, CA 94016" +200133,iPhone,1,700,05/04/19 12:26,"278 13th St, San Francisco, CA 94016" +200134,USB-C Charging Cable,1,11.95,05/29/19 19:57,"49 Spruce St, Los Angeles, CA 90001" +200135,Wired Headphones,1,11.99,05/21/19 12:20,"413 11th St, Boston, MA 02215" +200136,Wired Headphones,1,11.99,05/22/19 17:51,"578 Lincoln St, Seattle, WA 98101" +200137,USB-C Charging Cable,1,11.95,05/20/19 18:10,"993 13th St, Boston, MA 02215" +200138,Wired Headphones,1,11.99,05/07/19 14:47,"833 Highland St, Seattle, WA 98101" +200139,USB-C Charging Cable,1,11.95,05/05/19 13:06,"24 Lake St, Austin, TX 73301" +200140,Apple Airpods Headphones,1,150,05/29/19 11:50,"633 Walnut St, Austin, TX 73301" +200141,Apple Airpods Headphones,1,150,05/31/19 07:51,"462 7th St, Dallas, TX 75001" +200142,Flatscreen TV,1,300,05/25/19 12:42,"32 Ridge St, Boston, MA 02215" +200143,USB-C Charging Cable,1,11.95,05/15/19 13:01,"843 Adams St, Seattle, WA 98101" +200144,Wired Headphones,1,11.99,05/16/19 17:13,"308 Washington St, New York City, NY 10001" +200145,Flatscreen TV,1,300,05/14/19 14:49,"183 10th St, Dallas, TX 75001" +200146,USB-C Charging Cable,1,11.95,05/26/19 18:02,"91 5th St, San Francisco, CA 94016" +200147,Bose SoundSport Headphones,1,99.99,05/02/19 14:58,"193 13th St, San Francisco, CA 94016" +200148,Google Phone,1,600,05/22/19 20:33,"940 Church St, Los Angeles, CA 90001" +200149,34in Ultrawide Monitor,2,379.99,05/17/19 18:21,"969 Maple St, Los Angeles, CA 90001" +200150,AA Batteries (4-pack),2,3.84,05/05/19 12:39,"918 North St, Boston, MA 02215" +200151,20in Monitor,1,109.99,05/06/19 23:31,"786 Madison St, Portland, OR 97035" +200152,AA Batteries (4-pack),2,3.84,05/28/19 09:37,"335 Lincoln St, Seattle, WA 98101" +200153,27in 4K Gaming Monitor,1,389.99,05/07/19 17:12,"231 Walnut St, Boston, MA 02215" +200154,AAA Batteries (4-pack),1,2.99,05/14/19 11:50,"442 8th St, San Francisco, CA 94016" +200155,Bose SoundSport Headphones,1,99.99,05/13/19 21:55,"623 Willow St, Seattle, WA 98101" +200156,Vareebadd Phone,1,400,05/09/19 14:55,"737 Ridge St, San Francisco, CA 94016" +200156,USB-C Charging Cable,1,11.95,05/09/19 14:55,"737 Ridge St, San Francisco, CA 94016" +200157,Apple Airpods Headphones,1,150,05/01/19 11:28,"306 West St, San Francisco, CA 94016" +200158,Flatscreen TV,1,300,05/14/19 13:59,"217 Spruce St, New York City, NY 10001" +200159,Google Phone,1,600,05/04/19 09:29,"79 10th St, Portland, OR 97035" +200159,USB-C Charging Cable,1,11.95,05/04/19 09:29,"79 10th St, Portland, OR 97035" +200160,AAA Batteries (4-pack),2,2.99,05/30/19 18:48,"767 Park St, San Francisco, CA 94016" +200161,AA Batteries (4-pack),1,3.84,05/05/19 18:45,"860 Cherry St, Austin, TX 73301" +200162,USB-C Charging Cable,1,11.95,05/12/19 16:02,"146 Pine St, New York City, NY 10001" +200163,34in Ultrawide Monitor,1,379.99,05/15/19 10:21,"332 Johnson St, Seattle, WA 98101" +200164,Google Phone,1,600,05/06/19 07:32,"709 6th St, New York City, NY 10001" +200164,Wired Headphones,1,11.99,05/06/19 07:32,"709 6th St, New York City, NY 10001" +200165,Bose SoundSport Headphones,1,99.99,05/10/19 09:16,"948 14th St, Atlanta, GA 30301" +200166,Wired Headphones,1,11.99,05/22/19 11:21,"383 Walnut St, Portland, OR 97035" +200167,Bose SoundSport Headphones,1,99.99,05/12/19 18:04,"473 Lincoln St, Dallas, TX 75001" +200168,iPhone,1,700,05/08/19 07:53,"992 Adams St, Los Angeles, CA 90001" +200169,AAA Batteries (4-pack),1,2.99,05/23/19 17:28,"654 Willow St, Portland, OR 97035" +200170,USB-C Charging Cable,1,11.95,05/26/19 18:51,"499 Washington St, Los Angeles, CA 90001" +200171,Apple Airpods Headphones,1,150,05/22/19 12:08,"921 South St, Seattle, WA 98101" +200172,USB-C Charging Cable,1,11.95,05/02/19 19:54,"586 Willow St, New York City, NY 10001" +200173,27in 4K Gaming Monitor,1,389.99,05/31/19 13:22,"503 Hill St, San Francisco, CA 94016" +200174,Vareebadd Phone,1,400,05/01/19 12:08,"400 Center St, Los Angeles, CA 90001" +200175,AA Batteries (4-pack),1,3.84,05/28/19 14:01,"949 11th St, San Francisco, CA 94016" +200176,27in 4K Gaming Monitor,1,389.99,05/19/19 11:10,"887 14th St, Los Angeles, CA 90001" +200177,Bose SoundSport Headphones,1,99.99,05/06/19 16:39,"76 Walnut St, Los Angeles, CA 90001" +200178,Apple Airpods Headphones,1,150,05/12/19 01:08,"639 Cedar St, Portland, OR 97035" +200179,iPhone,1,700,05/16/19 13:57,"263 Pine St, Boston, MA 02215" +200179,Lightning Charging Cable,1,14.95,05/16/19 13:57,"263 Pine St, Boston, MA 02215" +200180,Lightning Charging Cable,1,14.95,05/08/19 22:03,"492 Elm St, Dallas, TX 75001" +200181,USB-C Charging Cable,1,11.95,05/25/19 21:07,"207 Center St, Boston, MA 02215" +200182,USB-C Charging Cable,1,11.95,05/18/19 16:53,"801 Dogwood St, San Francisco, CA 94016" +200183,Flatscreen TV,1,300,05/25/19 20:12,"27 Hill St, San Francisco, CA 94016" +200184,iPhone,1,700,05/02/19 06:35,"282 Ridge St, New York City, NY 10001" +200184,Apple Airpods Headphones,1,150,05/02/19 06:35,"282 Ridge St, New York City, NY 10001" +200185,Wired Headphones,1,11.99,05/15/19 15:33,"28 Cedar St, Atlanta, GA 30301" +200186,Apple Airpods Headphones,1,150,05/11/19 15:21,"613 Sunset St, Atlanta, GA 30301" +200187,AA Batteries (4-pack),1,3.84,05/14/19 21:07,"177 Jackson St, Atlanta, GA 30301" +200188,Google Phone,1,600,05/06/19 11:51,"352 Sunset St, New York City, NY 10001" +200188,USB-C Charging Cable,1,11.95,05/06/19 11:51,"352 Sunset St, New York City, NY 10001" +200189,27in 4K Gaming Monitor,1,389.99,05/07/19 23:01,"281 Dogwood St, Austin, TX 73301" +200190,AAA Batteries (4-pack),1,2.99,05/03/19 14:58,"402 Dogwood St, Seattle, WA 98101" +200191,ThinkPad Laptop,1,999.99,05/15/19 02:42,"505 West St, Atlanta, GA 30301" +200192,AAA Batteries (4-pack),1,2.99,05/13/19 09:35,"245 Center St, Los Angeles, CA 90001" +200193,Google Phone,1,600,05/31/19 17:06,"480 Ridge St, Portland, ME 04101" +200194,Bose SoundSport Headphones,1,99.99,05/25/19 10:06,"716 Maple St, San Francisco, CA 94016" +200195,Wired Headphones,1,11.99,05/22/19 18:48,"831 South St, San Francisco, CA 94016" +200196,iPhone,1,700,05/24/19 15:21,"689 Forest St, Boston, MA 02215" +200197,AA Batteries (4-pack),1,3.84,05/30/19 15:36,"457 2nd St, Portland, OR 97035" +200198,USB-C Charging Cable,2,11.95,05/29/19 20:36,"634 2nd St, Boston, MA 02215" +200199,27in 4K Gaming Monitor,1,389.99,05/29/19 13:11,"655 Lincoln St, Los Angeles, CA 90001" +200200,AA Batteries (4-pack),1,3.84,05/01/19 09:44,"712 Highland St, New York City, NY 10001" +200201,27in FHD Monitor,1,149.99,05/27/19 23:57,"978 Ridge St, Los Angeles, CA 90001" +200202,Macbook Pro Laptop,1,1700,05/23/19 02:12,"16 Elm St, Boston, MA 02215" +200203,Google Phone,1,600,05/26/19 15:08,"985 West St, New York City, NY 10001" +200203,USB-C Charging Cable,1,11.95,05/26/19 15:08,"985 West St, New York City, NY 10001" +200204,Bose SoundSport Headphones,1,99.99,05/02/19 14:14,"667 7th St, Los Angeles, CA 90001" +200205,AAA Batteries (4-pack),1,2.99,05/01/19 22:42,"543 7th St, Los Angeles, CA 90001" +200206,Bose SoundSport Headphones,1,99.99,05/10/19 13:49,"316 Jackson St, Los Angeles, CA 90001" +200207,Bose SoundSport Headphones,1,99.99,05/22/19 09:06,"45 Willow St, Seattle, WA 98101" +200208,Lightning Charging Cable,1,14.95,05/25/19 15:20,"81 12th St, San Francisco, CA 94016" +200209,Flatscreen TV,1,300,05/15/19 17:28,"414 Church St, Portland, OR 97035" +200210,27in 4K Gaming Monitor,1,389.99,05/31/19 22:40,"648 Church St, Dallas, TX 75001" +200211,AAA Batteries (4-pack),1,2.99,05/24/19 12:12,"295 Lakeview St, New York City, NY 10001" +200212,AA Batteries (4-pack),1,3.84,05/01/19 21:52,"133 Chestnut St, Seattle, WA 98101" +200213,Lightning Charging Cable,1,14.95,05/27/19 19:08,"817 Cherry St, San Francisco, CA 94016" +200214,AA Batteries (4-pack),1,3.84,05/18/19 08:54,"15 Jackson St, New York City, NY 10001" +200215,AAA Batteries (4-pack),3,2.99,05/09/19 18:04,"497 Adams St, Boston, MA 02215" +200216,AA Batteries (4-pack),1,3.84,05/17/19 18:42,"891 11th St, San Francisco, CA 94016" +200217,27in 4K Gaming Monitor,1,389.99,05/16/19 20:28,"742 Walnut St, New York City, NY 10001" +200218,20in Monitor,1,109.99,05/18/19 06:10,"42 14th St, San Francisco, CA 94016" +200219,USB-C Charging Cable,1,11.95,05/26/19 21:57,"922 13th St, Austin, TX 73301" +200220,USB-C Charging Cable,1,11.95,05/08/19 20:15,"436 Hickory St, San Francisco, CA 94016" +200221,Wired Headphones,1,11.99,05/31/19 17:50,"367 Walnut St, San Francisco, CA 94016" +200222,AAA Batteries (4-pack),1,2.99,05/06/19 14:42,"180 Lakeview St, Dallas, TX 75001" +200223,AA Batteries (4-pack),1,3.84,05/11/19 13:44,"230 River St, Los Angeles, CA 90001" +200224,Wired Headphones,1,11.99,05/28/19 19:42,"820 Center St, Seattle, WA 98101" +200225,Macbook Pro Laptop,1,1700,05/14/19 13:31,"70 9th St, Portland, OR 97035" +200226,AA Batteries (4-pack),1,3.84,05/17/19 11:21,"690 10th St, Atlanta, GA 30301" +200227,Lightning Charging Cable,1,14.95,05/23/19 12:07,"445 12th St, Los Angeles, CA 90001" +200228,27in FHD Monitor,1,149.99,05/25/19 10:41,"812 1st St, Boston, MA 02215" +200229,Bose SoundSport Headphones,1,99.99,05/16/19 19:34,"888 Wilson St, Dallas, TX 75001" +200230,Wired Headphones,1,11.99,05/24/19 14:42,"823 Ridge St, Seattle, WA 98101" +200231,27in FHD Monitor,1,149.99,05/09/19 10:36,"975 Sunset St, Atlanta, GA 30301" +200232,Bose SoundSport Headphones,1,99.99,05/21/19 14:56,"958 1st St, Seattle, WA 98101" +200233,AA Batteries (4-pack),1,3.84,05/27/19 01:25,"483 North St, Boston, MA 02215" +200234,USB-C Charging Cable,1,11.95,05/24/19 18:59,"321 Madison St, Boston, MA 02215" +200235,Apple Airpods Headphones,1,150,05/24/19 14:28,"310 6th St, Los Angeles, CA 90001" +200236,27in 4K Gaming Monitor,1,389.99,05/29/19 13:48,"190 Madison St, Austin, TX 73301" +200237,AAA Batteries (4-pack),1,2.99,05/01/19 14:48,"228 River St, Portland, OR 97035" +200238,Apple Airpods Headphones,1,150,05/05/19 20:52,"819 Park St, San Francisco, CA 94016" +200239,USB-C Charging Cable,1,11.95,05/08/19 18:18,"882 Hill St, New York City, NY 10001" +200240,Apple Airpods Headphones,1,150,05/28/19 23:36,"891 Park St, Los Angeles, CA 90001" +200241,Apple Airpods Headphones,1,150,05/22/19 11:24,"984 9th St, Los Angeles, CA 90001" +200242,Lightning Charging Cable,2,14.95,05/16/19 14:33,"550 1st St, Boston, MA 02215" +200243,USB-C Charging Cable,2,11.95,05/06/19 08:44,"597 10th St, San Francisco, CA 94016" +200244,iPhone,1,700,05/09/19 14:45,"814 Cedar St, Boston, MA 02215" +200245,Bose SoundSport Headphones,1,99.99,05/26/19 14:59,"55 7th St, Portland, ME 04101" +200246,AAA Batteries (4-pack),2,2.99,05/19/19 20:59,"178 Lake St, New York City, NY 10001" +200247,AA Batteries (4-pack),2,3.84,05/29/19 09:08,"424 Ridge St, Atlanta, GA 30301" +200248,AA Batteries (4-pack),1,3.84,05/02/19 22:58,"6 Main St, San Francisco, CA 94016" +200249,Bose SoundSport Headphones,1,99.99,05/22/19 17:25,"447 Jefferson St, San Francisco, CA 94016" +200250,Apple Airpods Headphones,1,150,05/08/19 12:52,"357 Maple St, San Francisco, CA 94016" +200251,27in FHD Monitor,1,149.99,05/25/19 20:11,"665 12th St, San Francisco, CA 94016" +200252,Lightning Charging Cable,1,14.95,05/02/19 14:29,"511 South St, San Francisco, CA 94016" +200253,Wired Headphones,2,11.99,05/18/19 13:46,"759 Center St, San Francisco, CA 94016" +200254,Bose SoundSport Headphones,1,99.99,05/30/19 10:03,"882 Hill St, Los Angeles, CA 90001" +200255,USB-C Charging Cable,1,11.95,05/12/19 17:43,"347 Ridge St, Seattle, WA 98101" +200256,Google Phone,1,600,05/26/19 16:18,"81 4th St, Atlanta, GA 30301" +200257,27in 4K Gaming Monitor,1,389.99,05/01/19 19:59,"723 Maple St, Portland, OR 97035" +200258,USB-C Charging Cable,1,11.95,05/18/19 10:20,"458 11th St, Los Angeles, CA 90001" +200259,34in Ultrawide Monitor,1,379.99,05/25/19 13:52,"818 Lincoln St, San Francisco, CA 94016" +200260,AAA Batteries (4-pack),2,2.99,05/09/19 11:20,"384 Wilson St, San Francisco, CA 94016" +200261,AAA Batteries (4-pack),1,2.99,05/09/19 19:52,"307 Pine St, San Francisco, CA 94016" +200262,AA Batteries (4-pack),1,3.84,05/31/19 12:32,"527 12th St, Dallas, TX 75001" +200263,27in FHD Monitor,1,149.99,05/19/19 20:18,"848 Highland St, Los Angeles, CA 90001" +200264,27in FHD Monitor,1,149.99,05/04/19 23:02,"226 Meadow St, San Francisco, CA 94016" +200265,AAA Batteries (4-pack),2,2.99,05/27/19 05:17,"3 8th St, San Francisco, CA 94016" +200266,27in FHD Monitor,1,149.99,05/20/19 18:03,"581 Meadow St, Boston, MA 02215" +200267,Macbook Pro Laptop,1,1700,05/05/19 19:22,"845 11th St, Los Angeles, CA 90001" +200268,AA Batteries (4-pack),4,3.84,05/18/19 22:40,"347 11th St, New York City, NY 10001" +200269,AA Batteries (4-pack),2,3.84,05/26/19 13:58,"258 9th St, New York City, NY 10001" +200270,Lightning Charging Cable,1,14.95,05/16/19 13:10,"837 Jackson St, Boston, MA 02215" +200271,AA Batteries (4-pack),1,3.84,05/13/19 04:18,"102 Maple St, San Francisco, CA 94016" +200272,Lightning Charging Cable,1,14.95,05/15/19 22:05,"526 Maple St, New York City, NY 10001" +200273,AA Batteries (4-pack),1,3.84,05/22/19 17:00,"249 9th St, San Francisco, CA 94016" +200274,ThinkPad Laptop,1,999.99,05/30/19 16:09,"134 Adams St, San Francisco, CA 94016" +200275,27in FHD Monitor,1,149.99,05/25/19 07:35,"911 Lakeview St, Atlanta, GA 30301" +200276,Flatscreen TV,1,300,05/24/19 22:00,"22 1st St, San Francisco, CA 94016" +200277,34in Ultrawide Monitor,1,379.99,05/17/19 20:28,"72 Dogwood St, Austin, TX 73301" +200278,Wired Headphones,1,11.99,05/26/19 20:02,"50 9th St, Atlanta, GA 30301" +200279,AA Batteries (4-pack),1,3.84,05/13/19 07:59,"484 Cedar St, Los Angeles, CA 90001" +200280,Wired Headphones,1,11.99,05/15/19 22:11,"563 North St, San Francisco, CA 94016" +200281,AAA Batteries (4-pack),1,2.99,05/08/19 00:05,"754 Highland St, Atlanta, GA 30301" +200282,Lightning Charging Cable,1,14.95,05/06/19 11:25,"191 River St, New York City, NY 10001" +200283,Wired Headphones,1,11.99,05/21/19 12:17,"721 14th St, San Francisco, CA 94016" +200284,AAA Batteries (4-pack),2,2.99,05/15/19 09:19,"255 2nd St, Seattle, WA 98101" +200285,Wired Headphones,1,11.99,05/12/19 11:48,"838 Highland St, Seattle, WA 98101" +200286,Apple Airpods Headphones,1,150,05/04/19 13:23,"732 Main St, New York City, NY 10001" +200287,USB-C Charging Cable,1,11.95,05/09/19 22:09,"96 Hill St, Portland, OR 97035" +200288,Apple Airpods Headphones,1,150,05/30/19 19:29,"292 Hill St, New York City, NY 10001" +200289,AA Batteries (4-pack),2,3.84,05/04/19 14:44,"686 Lake St, Dallas, TX 75001" +200290,27in FHD Monitor,1,149.99,05/08/19 15:37,"486 Highland St, Los Angeles, CA 90001" +200291,20in Monitor,1,109.99,05/13/19 15:41,"161 Jackson St, Los Angeles, CA 90001" +200292,Wired Headphones,1,11.99,05/14/19 16:42,"481 Cherry St, San Francisco, CA 94016" +200293,USB-C Charging Cable,1,11.95,05/23/19 11:41,"973 7th St, San Francisco, CA 94016" +200294,34in Ultrawide Monitor,1,379.99,05/09/19 08:12,"522 5th St, Dallas, TX 75001" +200295,Flatscreen TV,1,300,05/25/19 18:23,"994 Madison St, Austin, TX 73301" +200296,Lightning Charging Cable,1,14.95,05/25/19 21:02,"7 2nd St, Austin, TX 73301" +200297,AAA Batteries (4-pack),1,2.99,05/29/19 18:59,"938 Forest St, Portland, ME 04101" +200298,Wired Headphones,1,11.99,05/07/19 12:14,"609 Willow St, New York City, NY 10001" +200299,AAA Batteries (4-pack),1,2.99,05/18/19 12:21,"905 Pine St, Los Angeles, CA 90001" +200300,Bose SoundSport Headphones,1,99.99,05/08/19 20:54,"898 11th St, San Francisco, CA 94016" +200301,AA Batteries (4-pack),1,3.84,05/11/19 02:04,"354 Center St, Los Angeles, CA 90001" +200302,Bose SoundSport Headphones,1,99.99,05/23/19 20:30,"818 Jefferson St, Seattle, WA 98101" +200303,USB-C Charging Cable,1,11.95,05/10/19 19:08,"633 Washington St, San Francisco, CA 94016" +200304,Flatscreen TV,1,300,05/28/19 16:12,"317 Johnson St, Seattle, WA 98101" +200305,Flatscreen TV,1,300,05/27/19 15:27,"420 Park St, San Francisco, CA 94016" +200306,Lightning Charging Cable,1,14.95,05/26/19 12:24,"142 12th St, San Francisco, CA 94016" +200307,USB-C Charging Cable,1,11.95,05/03/19 12:18,"853 Washington St, Seattle, WA 98101" +200308,AAA Batteries (4-pack),1,2.99,05/24/19 18:24,"280 Cherry St, San Francisco, CA 94016" +200309,AAA Batteries (4-pack),1,2.99,05/27/19 13:11,"590 Johnson St, New York City, NY 10001" +200310,Bose SoundSport Headphones,1,99.99,05/29/19 05:42,"122 9th St, Seattle, WA 98101" +200311,Apple Airpods Headphones,1,150,05/26/19 20:10,"732 Ridge St, Portland, OR 97035" +200312,Wired Headphones,1,11.99,05/10/19 10:22,"885 Wilson St, New York City, NY 10001" +200313,Bose SoundSport Headphones,1,99.99,05/18/19 22:32,"565 Walnut St, San Francisco, CA 94016" +200314,iPhone,1,700,05/26/19 16:22,"971 Wilson St, San Francisco, CA 94016" +200314,Lightning Charging Cable,1,14.95,05/26/19 16:22,"971 Wilson St, San Francisco, CA 94016" +200315,iPhone,1,700,05/16/19 13:23,"485 Elm St, Boston, MA 02215" +200315,Lightning Charging Cable,1,14.95,05/16/19 13:23,"485 Elm St, Boston, MA 02215" +200316,AA Batteries (4-pack),1,3.84,05/12/19 21:38,"268 Center St, Austin, TX 73301" +200317,Flatscreen TV,1,300,05/31/19 23:22,"1 5th St, Boston, MA 02215" +200318,27in FHD Monitor,1,149.99,05/31/19 08:19,"698 Washington St, San Francisco, CA 94016" +200319,27in FHD Monitor,1,149.99,05/03/19 12:17,"79 Cedar St, San Francisco, CA 94016" +200320,AA Batteries (4-pack),2,3.84,05/15/19 08:49,"111 Hill St, Los Angeles, CA 90001" +200321,ThinkPad Laptop,1,999.99,05/17/19 16:44,"4 Meadow St, Los Angeles, CA 90001" +200321,AAA Batteries (4-pack),1,2.99,05/17/19 16:44,"4 Meadow St, Los Angeles, CA 90001" +200322,USB-C Charging Cable,1,11.95,05/14/19 10:27,"350 North St, Seattle, WA 98101" +200323,iPhone,1,700,05/21/19 15:09,"129 Elm St, Atlanta, GA 30301" +200324,AAA Batteries (4-pack),1,2.99,05/20/19 13:23,"952 11th St, Dallas, TX 75001" +200325,Macbook Pro Laptop,1,1700,05/03/19 18:07,"722 Forest St, San Francisco, CA 94016" +200326,AA Batteries (4-pack),2,3.84,05/15/19 20:42,"492 11th St, Los Angeles, CA 90001" +200327,AA Batteries (4-pack),3,3.84,05/09/19 16:54,"487 Jefferson St, Los Angeles, CA 90001" +200328,27in FHD Monitor,1,149.99,05/22/19 20:50,"283 8th St, Boston, MA 02215" +200329,27in FHD Monitor,1,149.99,05/21/19 12:33,"776 Main St, Boston, MA 02215" +200330,Lightning Charging Cable,1,14.95,05/04/19 22:43,"750 Cedar St, San Francisco, CA 94016" +200331,Apple Airpods Headphones,1,150,05/31/19 19:40,"814 Center St, Los Angeles, CA 90001" +200332,Bose SoundSport Headphones,1,99.99,05/05/19 14:43,"267 South St, Los Angeles, CA 90001" +200333,34in Ultrawide Monitor,1,379.99,05/16/19 11:13,"644 Jefferson St, Atlanta, GA 30301" +200334,Wired Headphones,1,11.99,05/30/19 03:39,"950 13th St, Seattle, WA 98101" +200335,AAA Batteries (4-pack),1,2.99,05/31/19 15:46,"748 6th St, New York City, NY 10001" +200336,AA Batteries (4-pack),1,3.84,05/18/19 19:45,"564 Lincoln St, San Francisco, CA 94016" +200337,Wired Headphones,1,11.99,05/04/19 13:13,"916 2nd St, Portland, OR 97035" +200338,Wired Headphones,1,11.99,05/27/19 11:24,"397 12th St, San Francisco, CA 94016" +200339,Apple Airpods Headphones,1,150,05/22/19 13:29,"292 9th St, Austin, TX 73301" +200340,ThinkPad Laptop,1,999.99,05/14/19 20:23,"1 Forest St, New York City, NY 10001" +200341,Lightning Charging Cable,1,14.95,05/09/19 14:39,"504 Willow St, Dallas, TX 75001" +200341,Apple Airpods Headphones,1,150,05/09/19 14:39,"504 Willow St, Dallas, TX 75001" +200342,iPhone,1,700,05/24/19 19:11,"10 Hickory St, Atlanta, GA 30301" +200343,AA Batteries (4-pack),1,3.84,05/06/19 23:47,"364 Hickory St, San Francisco, CA 94016" +200344,AAA Batteries (4-pack),1,2.99,05/15/19 11:54,"192 Chestnut St, New York City, NY 10001" +200345,Macbook Pro Laptop,1,1700,05/26/19 19:10,"522 2nd St, Portland, OR 97035" +200346,Apple Airpods Headphones,1,150,05/02/19 11:28,"149 Sunset St, Portland, OR 97035" +200347,34in Ultrawide Monitor,1,379.99,05/12/19 18:34,"799 Wilson St, Los Angeles, CA 90001" +200348,AA Batteries (4-pack),1,3.84,05/26/19 15:03,"435 Park St, Dallas, TX 75001" +200349,Flatscreen TV,1,300,05/20/19 11:34,"638 Elm St, San Francisco, CA 94016" +200350,Google Phone,1,600,05/25/19 22:00,"369 Jefferson St, Seattle, WA 98101" +200351,Bose SoundSport Headphones,1,99.99,05/15/19 15:34,"365 Johnson St, Boston, MA 02215" +200352,AAA Batteries (4-pack),2,2.99,05/10/19 16:04,"502 Lakeview St, Seattle, WA 98101" +200353,Apple Airpods Headphones,1,150,05/29/19 10:31,"17 Lincoln St, Los Angeles, CA 90001" +200354,27in FHD Monitor,1,149.99,05/25/19 08:20,"465 Main St, Boston, MA 02215" +200355,Lightning Charging Cable,1,14.95,05/21/19 11:02,"109 2nd St, Los Angeles, CA 90001" +200356,AA Batteries (4-pack),2,3.84,05/13/19 14:02,"707 Church St, Los Angeles, CA 90001" +200357,LG Dryer,1,600.0,05/04/19 10:34,"175 River St, Los Angeles, CA 90001" +200358,iPhone,1,700,05/09/19 22:57,"289 Main St, Portland, ME 04101" +200359,USB-C Charging Cable,1,11.95,05/13/19 09:06,"648 Adams St, Atlanta, GA 30301" +200360,USB-C Charging Cable,1,11.95,05/03/19 22:42,"298 Center St, San Francisco, CA 94016" +200361,20in Monitor,1,109.99,05/19/19 08:31,"141 Church St, Seattle, WA 98101" +200362,34in Ultrawide Monitor,1,379.99,05/05/19 13:18,"238 Lincoln St, Boston, MA 02215" +200363,Wired Headphones,1,11.99,05/02/19 09:16,"207 13th St, Dallas, TX 75001" +200364,Google Phone,1,600,05/09/19 13:00,"41 Dogwood St, San Francisco, CA 94016" +200365,27in FHD Monitor,1,149.99,05/02/19 09:58,"348 Lake St, Los Angeles, CA 90001" +200366,USB-C Charging Cable,1,11.95,05/07/19 12:41,"672 Cedar St, San Francisco, CA 94016" +200367,Lightning Charging Cable,1,14.95,05/03/19 23:28,"237 4th St, New York City, NY 10001" +200368,USB-C Charging Cable,1,11.95,05/21/19 18:40,"43 Spruce St, Portland, ME 04101" +200369,Google Phone,1,600,05/21/19 20:34,"475 Cherry St, San Francisco, CA 94016" +200370,Bose SoundSport Headphones,1,99.99,05/30/19 19:17,"323 4th St, San Francisco, CA 94016" +200371,AA Batteries (4-pack),1,3.84,05/16/19 14:00,"328 Cedar St, New York City, NY 10001" +200372,Wired Headphones,1,11.99,05/15/19 13:48,"45 12th St, San Francisco, CA 94016" +200373,27in FHD Monitor,1,149.99,05/28/19 13:08,"92 Washington St, San Francisco, CA 94016" +200374,iPhone,1,700,05/01/19 12:08,"198 Church St, New York City, NY 10001" +200375,Macbook Pro Laptop,1,1700,05/26/19 10:16,"423 Sunset St, San Francisco, CA 94016" +200376,USB-C Charging Cable,1,11.95,05/31/19 07:06,"648 Highland St, New York City, NY 10001" +200377,USB-C Charging Cable,1,11.95,05/07/19 08:14,"459 Adams St, Boston, MA 02215" +200378,AAA Batteries (4-pack),2,2.99,05/07/19 13:18,"935 Ridge St, Boston, MA 02215" +200379,USB-C Charging Cable,2,11.95,05/30/19 07:31,"680 Spruce St, Portland, OR 97035" +200380,AA Batteries (4-pack),3,3.84,05/13/19 16:35,"422 9th St, Boston, MA 02215" +200381,27in 4K Gaming Monitor,1,389.99,05/16/19 10:54,"463 Ridge St, San Francisco, CA 94016" +200382,USB-C Charging Cable,1,11.95,05/15/19 18:51,"230 6th St, Dallas, TX 75001" +200383,Bose SoundSport Headphones,1,99.99,05/23/19 11:43,"460 Park St, New York City, NY 10001" +200384,AA Batteries (4-pack),1,3.84,05/06/19 03:10,"912 Lake St, Dallas, TX 75001" +200385,Bose SoundSport Headphones,1,99.99,05/06/19 13:26,"33 Meadow St, Los Angeles, CA 90001" +200386,USB-C Charging Cable,1,11.95,05/15/19 16:14,"670 Meadow St, San Francisco, CA 94016" +200387,AA Batteries (4-pack),1,3.84,05/25/19 17:24,"381 Washington St, San Francisco, CA 94016" +200388,34in Ultrawide Monitor,1,379.99,05/15/19 07:01,"349 13th St, Los Angeles, CA 90001" +200389,Wired Headphones,2,11.99,05/07/19 20:02,"123 Ridge St, Atlanta, GA 30301" +200389,AA Batteries (4-pack),1,3.84,05/07/19 20:02,"123 Ridge St, Atlanta, GA 30301" +200390,27in FHD Monitor,1,149.99,05/06/19 17:08,"619 8th St, San Francisco, CA 94016" +200390,Apple Airpods Headphones,1,150,05/06/19 17:08,"619 8th St, San Francisco, CA 94016" +200391,AAA Batteries (4-pack),1,2.99,05/15/19 14:27,"175 Center St, San Francisco, CA 94016" +200392,Bose SoundSport Headphones,1,99.99,05/28/19 12:22,"310 7th St, New York City, NY 10001" +200393,34in Ultrawide Monitor,1,379.99,05/18/19 18:12,"122 Highland St, San Francisco, CA 94016" +200394,ThinkPad Laptop,1,999.99,05/12/19 13:08,"199 Chestnut St, Boston, MA 02215" +200395,Apple Airpods Headphones,1,150,05/06/19 10:35,"726 Wilson St, Seattle, WA 98101" +200396,Apple Airpods Headphones,1,150,06/01/19 04:13,"368 Wilson St, Seattle, WA 98101" +200397,Apple Airpods Headphones,1,150,05/30/19 17:30,"975 Sunset St, Seattle, WA 98101" +200398,AAA Batteries (4-pack),1,2.99,05/06/19 22:08,"327 Johnson St, Los Angeles, CA 90001" +200399,iPhone,1,700,05/24/19 14:19,"717 Washington St, Portland, OR 97035" +200400,27in 4K Gaming Monitor,1,389.99,05/08/19 13:27,"454 Willow St, Los Angeles, CA 90001" +200401,USB-C Charging Cable,1,11.95,05/04/19 15:50,"712 Wilson St, San Francisco, CA 94016" +200402,USB-C Charging Cable,1,11.95,05/02/19 12:38,"871 Cherry St, New York City, NY 10001" +200403,USB-C Charging Cable,1,11.95,05/16/19 09:40,"451 Lake St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +200404,Lightning Charging Cable,1,14.95,05/08/19 10:30,"8 Meadow St, Austin, TX 73301" +200405,Flatscreen TV,1,300,05/23/19 13:37,"190 10th St, San Francisco, CA 94016" +200406,34in Ultrawide Monitor,1,379.99,05/26/19 13:22,"23 Adams St, San Francisco, CA 94016" +200407,AA Batteries (4-pack),2,3.84,05/04/19 22:20,"886 Johnson St, Boston, MA 02215" +200408,Apple Airpods Headphones,1,150,05/16/19 19:30,"891 Cedar St, Boston, MA 02215" +200409,Apple Airpods Headphones,1,150,05/17/19 10:59,"285 Hill St, Seattle, WA 98101" +200410,34in Ultrawide Monitor,1,379.99,05/04/19 18:37,"482 Lincoln St, Atlanta, GA 30301" +200411,Bose SoundSport Headphones,1,99.99,05/10/19 15:08,"470 4th St, Los Angeles, CA 90001" +200412,Bose SoundSport Headphones,1,99.99,05/26/19 14:18,"530 Park St, Austin, TX 73301" +200413,Lightning Charging Cable,1,14.95,05/08/19 12:29,"54 Center St, San Francisco, CA 94016" +200414,Bose SoundSport Headphones,1,99.99,05/29/19 09:10,"431 West St, San Francisco, CA 94016" +200415,AAA Batteries (4-pack),4,2.99,05/13/19 18:25,"328 14th St, Boston, MA 02215" +200416,Lightning Charging Cable,2,14.95,05/03/19 19:25,"955 6th St, New York City, NY 10001" +200417,iPhone,1,700,05/02/19 11:08,"992 Jefferson St, Dallas, TX 75001" +200418,AA Batteries (4-pack),1,3.84,05/21/19 11:57,"991 Church St, Austin, TX 73301" +200419,Google Phone,1,600,05/28/19 12:50,"987 Meadow St, New York City, NY 10001" +200420,20in Monitor,1,109.99,05/01/19 12:51,"485 Madison St, Boston, MA 02215" +200421,Bose SoundSport Headphones,1,99.99,05/04/19 20:04,"858 Maple St, Portland, OR 97035" +200422,USB-C Charging Cable,1,11.95,05/06/19 17:24,"407 Main St, Los Angeles, CA 90001" +200423,USB-C Charging Cable,1,11.95,05/24/19 09:37,"939 Jackson St, San Francisco, CA 94016" +200424,Vareebadd Phone,1,400,05/20/19 18:25,"343 Wilson St, Austin, TX 73301" +200425,USB-C Charging Cable,1,11.95,05/25/19 17:27,"353 Sunset St, New York City, NY 10001" +200426,USB-C Charging Cable,1,11.95,05/15/19 15:10,"737 7th St, San Francisco, CA 94016" +200427,LG Dryer,1,600.0,05/27/19 20:25,"764 Wilson St, New York City, NY 10001" +200428,USB-C Charging Cable,1,11.95,05/19/19 22:34,"863 5th St, Seattle, WA 98101" +200429,27in 4K Gaming Monitor,1,389.99,05/28/19 08:51,"457 4th St, Boston, MA 02215" +200430,AA Batteries (4-pack),1,3.84,05/23/19 15:19,"42 Wilson St, Boston, MA 02215" +200431,iPhone,1,700,05/26/19 08:24,"82 Wilson St, San Francisco, CA 94016" +200432,AAA Batteries (4-pack),1,2.99,05/11/19 10:44,"277 Maple St, Los Angeles, CA 90001" +200433,AA Batteries (4-pack),1,3.84,05/16/19 11:35,"612 14th St, Austin, TX 73301" +200434,Lightning Charging Cable,1,14.95,05/30/19 21:49,"120 Hickory St, San Francisco, CA 94016" +200435,Lightning Charging Cable,1,14.95,05/22/19 20:01,"294 Meadow St, Los Angeles, CA 90001" +200435,AAA Batteries (4-pack),1,2.99,05/22/19 20:01,"294 Meadow St, Los Angeles, CA 90001" +200436,Flatscreen TV,1,300,05/27/19 17:54,"915 Hill St, Portland, ME 04101" +200437,Apple Airpods Headphones,1,150,05/22/19 13:41,"193 Dogwood St, New York City, NY 10001" +200438,AAA Batteries (4-pack),1,2.99,05/18/19 17:11,"204 West St, Boston, MA 02215" +200439,Lightning Charging Cable,1,14.95,05/31/19 16:55,"66 Park St, San Francisco, CA 94016" +200440,AAA Batteries (4-pack),1,2.99,05/25/19 12:09,"82 West St, Boston, MA 02215" +200441,AAA Batteries (4-pack),1,2.99,05/07/19 21:03,"55 8th St, New York City, NY 10001" +200442,Wired Headphones,1,11.99,05/31/19 08:34,"127 Sunset St, Seattle, WA 98101" +200443,AA Batteries (4-pack),1,3.84,05/22/19 04:36,"382 River St, Portland, ME 04101" +200444,Wired Headphones,1,11.99,05/19/19 22:01,"541 Johnson St, San Francisco, CA 94016" +200445,USB-C Charging Cable,1,11.95,05/26/19 16:39,"841 14th St, Los Angeles, CA 90001" +200446,iPhone,1,700,05/05/19 15:36,"64 Cherry St, Austin, TX 73301" +200447,Lightning Charging Cable,1,14.95,05/01/19 20:48,"556 Cedar St, New York City, NY 10001" +200448,iPhone,1,700,05/19/19 13:56,"459 12th St, Dallas, TX 75001" +200449,Lightning Charging Cable,2,14.95,05/14/19 13:23,"505 4th St, Austin, TX 73301" +,,,,, +200450,Wired Headphones,1,11.99,05/30/19 12:23,"381 Willow St, Boston, MA 02215" +200451,Apple Airpods Headphones,1,150,05/19/19 14:01,"588 Lake St, Dallas, TX 75001" +200452,USB-C Charging Cable,1,11.95,05/28/19 21:04,"879 Spruce St, New York City, NY 10001" +200453,Lightning Charging Cable,1,14.95,05/19/19 14:44,"926 Pine St, Atlanta, GA 30301" +200454,34in Ultrawide Monitor,1,379.99,05/06/19 18:26,"602 Maple St, Seattle, WA 98101" +200455,Bose SoundSport Headphones,1,99.99,05/19/19 09:57,"889 Spruce St, Los Angeles, CA 90001" +200456,Lightning Charging Cable,1,14.95,05/08/19 20:52,"665 8th St, Seattle, WA 98101" +200457,Bose SoundSport Headphones,1,99.99,05/06/19 16:13,"173 8th St, New York City, NY 10001" +200458,AA Batteries (4-pack),2,3.84,05/28/19 13:37,"257 6th St, New York City, NY 10001" +200459,20in Monitor,1,109.99,05/17/19 17:34,"502 2nd St, Los Angeles, CA 90001" +200460,Apple Airpods Headphones,1,150,05/09/19 13:38,"885 7th St, New York City, NY 10001" +200461,USB-C Charging Cable,1,11.95,05/19/19 19:29,"46 Forest St, Dallas, TX 75001" +200462,USB-C Charging Cable,2,11.95,05/22/19 11:29,"713 Park St, San Francisco, CA 94016" +200463,Bose SoundSport Headphones,1,99.99,05/19/19 17:15,"339 Lincoln St, San Francisco, CA 94016" +200464,Macbook Pro Laptop,1,1700,05/31/19 21:16,"70 Washington St, Portland, OR 97035" +200465,USB-C Charging Cable,1,11.95,05/20/19 09:07,"379 8th St, Los Angeles, CA 90001" +200466,Wired Headphones,2,11.99,05/17/19 05:32,"95 Cedar St, Seattle, WA 98101" +200467,Flatscreen TV,1,300,05/20/19 21:13,"554 12th St, New York City, NY 10001" +200468,AA Batteries (4-pack),1,3.84,05/02/19 13:56,"418 Madison St, Dallas, TX 75001" +200469,Google Phone,1,600,05/15/19 13:29,"440 River St, San Francisco, CA 94016" +200470,Macbook Pro Laptop,1,1700,05/31/19 07:15,"943 Walnut St, Los Angeles, CA 90001" +200471,Lightning Charging Cable,1,14.95,05/17/19 09:50,"584 River St, San Francisco, CA 94016" +200472,Bose SoundSport Headphones,1,99.99,05/19/19 11:18,"169 Main St, San Francisco, CA 94016" +200473,Macbook Pro Laptop,1,1700,05/06/19 18:22,"621 Hickory St, Los Angeles, CA 90001" +200474,Bose SoundSport Headphones,1,99.99,05/24/19 11:11,"800 Spruce St, Boston, MA 02215" +200475,AAA Batteries (4-pack),2,2.99,05/21/19 20:21,"823 Walnut St, Boston, MA 02215" +200476,USB-C Charging Cable,1,11.95,05/16/19 13:38,"979 Sunset St, San Francisco, CA 94016" +200477,iPhone,1,700,05/31/19 21:55,"905 Adams St, Los Angeles, CA 90001" +200478,34in Ultrawide Monitor,1,379.99,05/22/19 12:25,"468 Highland St, New York City, NY 10001" +200479,Wired Headphones,2,11.99,05/25/19 13:45,"826 9th St, San Francisco, CA 94016" +200480,Google Phone,1,600,05/16/19 18:47,"166 Willow St, New York City, NY 10001" +200481,Apple Airpods Headphones,1,150,05/16/19 12:44,"32 Hickory St, Dallas, TX 75001" +200482,AA Batteries (4-pack),1,3.84,05/16/19 20:48,"920 Madison St, San Francisco, CA 94016" +200483,Apple Airpods Headphones,1,150,05/24/19 10:10,"624 13th St, Portland, OR 97035" +200484,AA Batteries (4-pack),1,3.84,05/03/19 14:51,"60 Chestnut St, Atlanta, GA 30301" +200485,ThinkPad Laptop,1,999.99,05/08/19 17:25,"610 Main St, Los Angeles, CA 90001" +200486,USB-C Charging Cable,1,11.95,05/26/19 19:44,"830 Lincoln St, New York City, NY 10001" +200487,Lightning Charging Cable,1,14.95,05/03/19 18:39,"651 2nd St, Dallas, TX 75001" +200488,34in Ultrawide Monitor,1,379.99,05/14/19 18:39,"139 Sunset St, Portland, OR 97035" +200489,AAA Batteries (4-pack),1,2.99,05/16/19 10:17,"402 Maple St, Atlanta, GA 30301" +200490,Bose SoundSport Headphones,1,99.99,05/24/19 08:27,"143 Hill St, San Francisco, CA 94016" +200491,AA Batteries (4-pack),1,3.84,05/15/19 07:29,"108 Jackson St, Seattle, WA 98101" +200492,Bose SoundSport Headphones,1,99.99,05/21/19 17:28,"800 North St, Los Angeles, CA 90001" +200493,Google Phone,1,600,05/06/19 13:08,"529 11th St, San Francisco, CA 94016" +200494,27in FHD Monitor,1,149.99,05/15/19 20:25,"67 Wilson St, Boston, MA 02215" +200495,Lightning Charging Cable,1,14.95,05/04/19 18:47,"644 North St, Seattle, WA 98101" +200496,Google Phone,1,600,05/23/19 18:00,"595 5th St, New York City, NY 10001" +200497,Lightning Charging Cable,1,14.95,05/07/19 19:57,"606 Spruce St, Boston, MA 02215" +200498,Flatscreen TV,1,300,05/05/19 12:54,"109 Walnut St, Los Angeles, CA 90001" +200499,AA Batteries (4-pack),1,3.84,05/31/19 13:30,"270 Cedar St, New York City, NY 10001" +200500,Lightning Charging Cable,1,14.95,05/04/19 14:58,"545 Dogwood St, New York City, NY 10001" +200501,Bose SoundSport Headphones,1,99.99,05/11/19 10:31,"204 Wilson St, New York City, NY 10001" +200502,AA Batteries (4-pack),1,3.84,05/13/19 06:51,"659 Main St, San Francisco, CA 94016" +200503,Google Phone,1,600,05/06/19 12:14,"112 Elm St, Seattle, WA 98101" +200504,Apple Airpods Headphones,1,150,05/28/19 14:35,"755 Ridge St, Los Angeles, CA 90001" +200505,Macbook Pro Laptop,1,1700,05/09/19 20:01,"703 North St, Los Angeles, CA 90001" +200506,Lightning Charging Cable,1,14.95,05/12/19 17:14,"265 Pine St, Seattle, WA 98101" +200507,Lightning Charging Cable,1,14.95,05/15/19 13:12,"985 12th St, San Francisco, CA 94016" +200508,AA Batteries (4-pack),2,3.84,05/14/19 01:36,"17 Meadow St, San Francisco, CA 94016" +200509,Apple Airpods Headphones,1,150,05/19/19 15:33,"518 4th St, Austin, TX 73301" +200510,USB-C Charging Cable,1,11.95,05/30/19 19:10,"668 Forest St, Seattle, WA 98101" +200511,Lightning Charging Cable,1,14.95,05/03/19 16:35,"964 Church St, New York City, NY 10001" +200512,AAA Batteries (4-pack),1,2.99,05/10/19 10:31,"160 Dogwood St, Boston, MA 02215" +200513,Vareebadd Phone,1,400,05/14/19 14:56,"689 Dogwood St, Portland, OR 97035" +200514,USB-C Charging Cable,1,11.95,05/28/19 09:01,"667 10th St, Atlanta, GA 30301" +200515,Macbook Pro Laptop,1,1700,05/23/19 23:48,"387 Forest St, Atlanta, GA 30301" +200516,27in 4K Gaming Monitor,1,389.99,05/28/19 13:10,"514 West St, Portland, OR 97035" +200517,Apple Airpods Headphones,1,150,05/24/19 15:59,"841 5th St, San Francisco, CA 94016" +200518,27in FHD Monitor,1,149.99,05/04/19 13:26,"280 Hickory St, San Francisco, CA 94016" +200519,Apple Airpods Headphones,1,150,05/13/19 13:03,"73 Main St, Los Angeles, CA 90001" +200520,27in 4K Gaming Monitor,1,389.99,05/21/19 20:11,"628 Jackson St, Boston, MA 02215" +200521,AA Batteries (4-pack),1,3.84,05/26/19 17:58,"183 11th St, Atlanta, GA 30301" +200522,Wired Headphones,2,11.99,05/27/19 17:39,"187 Cedar St, Los Angeles, CA 90001" +200523,Apple Airpods Headphones,1,150,05/27/19 20:28,"166 9th St, San Francisco, CA 94016" +200524,27in 4K Gaming Monitor,1,389.99,05/04/19 13:54,"329 Madison St, Los Angeles, CA 90001" +200525,Flatscreen TV,1,300,05/07/19 13:43,"407 2nd St, Los Angeles, CA 90001" +200526,Lightning Charging Cable,1,14.95,05/10/19 21:06,"801 Wilson St, Atlanta, GA 30301" +200527,27in 4K Gaming Monitor,1,389.99,05/09/19 19:53,"635 Sunset St, New York City, NY 10001" +200528,Lightning Charging Cable,1,14.95,05/26/19 16:03,"240 Willow St, Los Angeles, CA 90001" +200529,Bose SoundSport Headphones,1,99.99,05/05/19 18:46,"510 Center St, San Francisco, CA 94016" +200530,iPhone,1,700,05/23/19 11:34,"611 Pine St, Atlanta, GA 30301" +200531,Wired Headphones,1,11.99,05/21/19 11:45,"223 Sunset St, Los Angeles, CA 90001" +200532,Flatscreen TV,1,300,05/05/19 07:05,"404 5th St, Atlanta, GA 30301" +200533,AAA Batteries (4-pack),3,2.99,05/25/19 18:47,"504 Willow St, San Francisco, CA 94016" +200534,Wired Headphones,1,11.99,05/12/19 11:13,"509 Spruce St, San Francisco, CA 94016" +200535,Wired Headphones,1,11.99,05/12/19 11:51,"796 7th St, Los Angeles, CA 90001" +200536,Wired Headphones,2,11.99,05/12/19 12:55,"144 2nd St, San Francisco, CA 94016" +200537,27in FHD Monitor,1,149.99,05/23/19 19:37,"364 Church St, Dallas, TX 75001" +200538,Wired Headphones,1,11.99,05/25/19 18:11,"111 Maple St, Portland, OR 97035" +200539,20in Monitor,1,109.99,05/15/19 19:03,"538 Johnson St, Austin, TX 73301" +200540,Bose SoundSport Headphones,1,99.99,05/22/19 11:36,"633 Cedar St, Los Angeles, CA 90001" +200541,27in FHD Monitor,1,149.99,05/01/19 17:42,"925 Spruce St, Seattle, WA 98101" +200542,Apple Airpods Headphones,1,150,05/27/19 16:44,"139 Hickory St, San Francisco, CA 94016" +,,,,, +200543,Google Phone,1,600,05/27/19 21:29,"704 9th St, Los Angeles, CA 90001" +200543,Wired Headphones,1,11.99,05/27/19 21:29,"704 9th St, Los Angeles, CA 90001" +200544,27in 4K Gaming Monitor,1,389.99,05/27/19 16:20,"955 West St, San Francisco, CA 94016" +200545,Flatscreen TV,1,300,05/03/19 21:42,"985 Spruce St, Boston, MA 02215" +200546,ThinkPad Laptop,1,999.99,05/13/19 17:24,"974 Johnson St, New York City, NY 10001" +200547,Macbook Pro Laptop,1,1700,05/06/19 00:14,"208 Highland St, San Francisco, CA 94016" +200548,AA Batteries (4-pack),1,3.84,05/18/19 18:58,"983 Jackson St, San Francisco, CA 94016" +200549,Macbook Pro Laptop,1,1700,05/16/19 11:21,"347 6th St, Boston, MA 02215" +200550,Google Phone,1,600,05/17/19 11:21,"230 North St, San Francisco, CA 94016" +200551,iPhone,1,700,05/31/19 09:22,"265 Spruce St, Boston, MA 02215" +200552,AA Batteries (4-pack),1,3.84,05/11/19 16:55,"457 Washington St, Los Angeles, CA 90001" +200553,AAA Batteries (4-pack),1,2.99,05/16/19 16:51,"901 Pine St, Boston, MA 02215" +200554,27in FHD Monitor,1,149.99,05/26/19 13:44,"461 Center St, New York City, NY 10001" +200555,Lightning Charging Cable,1,14.95,05/14/19 22:06,"578 Washington St, Boston, MA 02215" +200556,Lightning Charging Cable,1,14.95,05/15/19 14:17,"568 4th St, San Francisco, CA 94016" +200557,AAA Batteries (4-pack),2,2.99,05/03/19 10:11,"252 North St, Portland, OR 97035" +200558,AAA Batteries (4-pack),1,2.99,05/01/19 09:04,"793 Dogwood St, Boston, MA 02215" +200558,Vareebadd Phone,2,400,05/01/19 09:04,"793 Dogwood St, Boston, MA 02215" +200559,20in Monitor,1,109.99,05/20/19 12:15,"96 Hickory St, Austin, TX 73301" +200559,AA Batteries (4-pack),1,3.84,05/20/19 12:15,"96 Hickory St, Austin, TX 73301" +200560,Bose SoundSport Headphones,1,99.99,05/10/19 12:50,"473 Hickory St, San Francisco, CA 94016" +200561,27in 4K Gaming Monitor,1,389.99,05/12/19 16:46,"422 River St, Dallas, TX 75001" +200562,Wired Headphones,1,11.99,05/20/19 21:38,"244 Hickory St, Atlanta, GA 30301" +200563,iPhone,1,700,05/27/19 16:59,"993 Hickory St, Los Angeles, CA 90001" +200563,Lightning Charging Cable,1,14.95,05/27/19 16:59,"993 Hickory St, Los Angeles, CA 90001" +200564,AAA Batteries (4-pack),2,2.99,05/02/19 10:01,"610 7th St, Boston, MA 02215" +200565,Bose SoundSport Headphones,1,99.99,05/29/19 16:27,"141 4th St, Boston, MA 02215" +200566,AA Batteries (4-pack),1,3.84,05/06/19 21:36,"754 Hickory St, San Francisco, CA 94016" +200567,Flatscreen TV,1,300,05/11/19 17:51,"686 Chestnut St, San Francisco, CA 94016" +200568,Lightning Charging Cable,1,14.95,05/19/19 01:06,"844 Willow St, Los Angeles, CA 90001" +200569,Macbook Pro Laptop,1,1700,05/02/19 09:12,"144 7th St, Seattle, WA 98101" +200570,USB-C Charging Cable,1,11.95,05/10/19 11:30,"648 Hickory St, New York City, NY 10001" +200571,Wired Headphones,1,11.99,05/03/19 21:05,"485 Elm St, Dallas, TX 75001" +200572,Wired Headphones,1,11.99,05/25/19 18:56,"204 West St, San Francisco, CA 94016" +200573,Lightning Charging Cable,1,14.95,05/28/19 11:27,"285 12th St, Dallas, TX 75001" +200574,AAA Batteries (4-pack),1,2.99,05/30/19 13:33,"384 Highland St, Seattle, WA 98101" +200575,Apple Airpods Headphones,1,150,05/08/19 10:51,"175 Sunset St, Boston, MA 02215" +200576,Lightning Charging Cable,1,14.95,05/31/19 11:02,"555 Pine St, Boston, MA 02215" +200577,AA Batteries (4-pack),1,3.84,05/09/19 23:28,"362 Ridge St, San Francisco, CA 94016" +200578,27in 4K Gaming Monitor,1,389.99,05/25/19 17:48,"666 North St, Atlanta, GA 30301" +200579,Bose SoundSport Headphones,1,99.99,05/18/19 02:14,"775 Elm St, Boston, MA 02215" +200580,AA Batteries (4-pack),1,3.84,05/07/19 08:52,"988 Church St, Portland, ME 04101" +200581,USB-C Charging Cable,1,11.95,05/27/19 12:11,"609 Maple St, Seattle, WA 98101" +200582,Bose SoundSport Headphones,1,99.99,05/10/19 15:01,"352 6th St, San Francisco, CA 94016" +200583,Lightning Charging Cable,1,14.95,05/06/19 19:12,"428 Jefferson St, Seattle, WA 98101" +200584,AAA Batteries (4-pack),1,2.99,05/11/19 15:13,"161 Wilson St, Boston, MA 02215" +200585,AAA Batteries (4-pack),1,2.99,05/22/19 12:28,"450 Elm St, San Francisco, CA 94016" +200586,Wired Headphones,1,11.99,05/30/19 12:56,"671 Jefferson St, New York City, NY 10001" +200587,Wired Headphones,1,11.99,05/01/19 21:03,"154 Johnson St, San Francisco, CA 94016" +200588,AA Batteries (4-pack),1,3.84,05/10/19 17:04,"611 10th St, Los Angeles, CA 90001" +200589,USB-C Charging Cable,1,11.95,05/24/19 00:16,"883 10th St, Los Angeles, CA 90001" +200590,34in Ultrawide Monitor,1,379.99,05/12/19 15:01,"668 14th St, Portland, OR 97035" +200591,27in FHD Monitor,1,149.99,05/09/19 20:22,"290 12th St, Los Angeles, CA 90001" +200592,AA Batteries (4-pack),3,3.84,05/14/19 18:35,"256 Madison St, Seattle, WA 98101" +200593,USB-C Charging Cable,1,11.95,05/12/19 23:48,"235 Spruce St, Boston, MA 02215" +200594,Google Phone,1,600,05/11/19 10:15,"918 Spruce St, Los Angeles, CA 90001" +200595,USB-C Charging Cable,1,11.95,05/17/19 21:39,"60 Wilson St, Portland, ME 04101" +200596,AAA Batteries (4-pack),1,2.99,05/20/19 18:43,"712 2nd St, New York City, NY 10001" +200597,AA Batteries (4-pack),1,3.84,05/29/19 01:51,"184 West St, Boston, MA 02215" +200598,Wired Headphones,2,11.99,05/19/19 21:56,"187 1st St, Dallas, TX 75001" +200599,AAA Batteries (4-pack),2,2.99,05/09/19 11:50,"299 Willow St, Los Angeles, CA 90001" +200600,Bose SoundSport Headphones,1,99.99,05/05/19 08:09,"113 Dogwood St, San Francisco, CA 94016" +200601,USB-C Charging Cable,1,11.95,05/12/19 13:51,"861 Jefferson St, Seattle, WA 98101" +200602,Bose SoundSport Headphones,1,99.99,05/26/19 12:39,"193 13th St, San Francisco, CA 94016" +200603,Wired Headphones,1,11.99,05/26/19 21:32,"329 Lake St, San Francisco, CA 94016" +200604,AAA Batteries (4-pack),1,2.99,05/20/19 18:20,"616 Adams St, Atlanta, GA 30301" +200605,Flatscreen TV,1,300,05/28/19 01:54,"865 Chestnut St, New York City, NY 10001" +200606,Vareebadd Phone,1,400,05/15/19 13:54,"762 Jackson St, San Francisco, CA 94016" +200607,Bose SoundSport Headphones,1,99.99,05/26/19 02:03,"332 Pine St, San Francisco, CA 94016" +200608,AA Batteries (4-pack),1,3.84,05/25/19 07:20,"378 Cherry St, Los Angeles, CA 90001" +200609,AA Batteries (4-pack),1,3.84,05/18/19 23:32,"968 Highland St, Seattle, WA 98101" +200610,27in FHD Monitor,1,149.99,05/05/19 12:26,"58 Church St, Los Angeles, CA 90001" +200611,Lightning Charging Cable,1,14.95,05/15/19 13:47,"250 River St, San Francisco, CA 94016" +200612,Bose SoundSport Headphones,1,99.99,05/23/19 21:24,"878 Washington St, New York City, NY 10001" +200613,Bose SoundSport Headphones,1,99.99,05/23/19 19:22,"282 Meadow St, San Francisco, CA 94016" +200614,Macbook Pro Laptop,1,1700,05/29/19 15:41,"194 Highland St, Seattle, WA 98101" +200615,Wired Headphones,1,11.99,05/17/19 22:35,"613 5th St, Austin, TX 73301" +200616,Bose SoundSport Headphones,1,99.99,05/25/19 14:33,"791 River St, Portland, OR 97035" +200617,AA Batteries (4-pack),1,3.84,05/21/19 11:18,"529 5th St, Los Angeles, CA 90001" +200618,AAA Batteries (4-pack),2,2.99,05/28/19 12:40,"629 Sunset St, Seattle, WA 98101" +200619,Google Phone,1,600,05/22/19 19:40,"981 Main St, San Francisco, CA 94016" +200619,USB-C Charging Cable,1,11.95,05/22/19 19:40,"981 Main St, San Francisco, CA 94016" +200620,AAA Batteries (4-pack),1,2.99,05/18/19 20:24,"149 9th St, Atlanta, GA 30301" +200621,Apple Airpods Headphones,1,150,05/30/19 17:58,"906 Forest St, Portland, OR 97035" +200622,USB-C Charging Cable,2,11.95,05/14/19 16:28,"625 Hill St, Portland, ME 04101" +200623,Flatscreen TV,1,300,05/14/19 20:09,"297 Maple St, San Francisco, CA 94016" +200624,iPhone,1,700,05/10/19 10:45,"201 14th St, Atlanta, GA 30301" +200625,Lightning Charging Cable,2,14.95,05/02/19 23:41,"426 Madison St, Portland, OR 97035" +200626,Google Phone,1,600,05/29/19 07:17,"709 Highland St, Dallas, TX 75001" +200626,Wired Headphones,1,11.99,05/29/19 07:17,"709 Highland St, Dallas, TX 75001" +200627,27in FHD Monitor,1,149.99,05/12/19 00:31,"897 Chestnut St, Boston, MA 02215" +200628,USB-C Charging Cable,1,11.95,05/30/19 19:50,"214 West St, San Francisco, CA 94016" +200629,Vareebadd Phone,1,400,05/16/19 15:24,"707 Lincoln St, New York City, NY 10001" +200630,27in FHD Monitor,1,149.99,05/16/19 08:00,"341 Meadow St, Atlanta, GA 30301" +200631,ThinkPad Laptop,1,999.99,05/16/19 09:37,"553 North St, Austin, TX 73301" +200632,Macbook Pro Laptop,1,1700,05/20/19 13:13,"819 Park St, San Francisco, CA 94016" +200633,34in Ultrawide Monitor,1,379.99,05/01/19 14:37,"882 9th St, Dallas, TX 75001" +200634,Apple Airpods Headphones,1,150,05/09/19 15:58,"356 Cherry St, Atlanta, GA 30301" +200635,ThinkPad Laptop,1,999.99,05/05/19 15:57,"91 4th St, Dallas, TX 75001" +200636,USB-C Charging Cable,1,11.95,05/15/19 11:55,"262 South St, Los Angeles, CA 90001" +200637,USB-C Charging Cable,1,11.95,05/09/19 14:20,"708 Madison St, New York City, NY 10001" +200638,Wired Headphones,1,11.99,05/06/19 13:51,"781 2nd St, Portland, OR 97035" +200639,34in Ultrawide Monitor,1,379.99,05/28/19 10:28,"211 West St, Boston, MA 02215" +200640,AAA Batteries (4-pack),3,2.99,05/29/19 22:35,"911 Walnut St, San Francisco, CA 94016" +200641,34in Ultrawide Monitor,1,379.99,05/09/19 08:40,"531 Jackson St, Los Angeles, CA 90001" +200642,Apple Airpods Headphones,1,150,05/23/19 18:54,"19 Spruce St, San Francisco, CA 94016" +200643,Macbook Pro Laptop,1,1700,05/11/19 15:23,"528 10th St, Los Angeles, CA 90001" +200644,AA Batteries (4-pack),1,3.84,05/22/19 06:17,"208 Highland St, New York City, NY 10001" +200645,AAA Batteries (4-pack),2,2.99,05/03/19 10:08,"578 14th St, Los Angeles, CA 90001" +200646,USB-C Charging Cable,1,11.95,05/02/19 08:39,"960 West St, Atlanta, GA 30301" +200647,AA Batteries (4-pack),3,3.84,05/20/19 08:58,"352 Elm St, San Francisco, CA 94016" +200648,Wired Headphones,1,11.99,05/04/19 10:51,"65 Chestnut St, Dallas, TX 75001" +200649,Lightning Charging Cable,1,14.95,05/08/19 22:41,"561 7th St, Portland, OR 97035" +200650,USB-C Charging Cable,1,11.95,05/21/19 19:43,"866 4th St, San Francisco, CA 94016" +200651,27in FHD Monitor,1,149.99,05/21/19 04:37,"878 4th St, Los Angeles, CA 90001" +200652,AAA Batteries (4-pack),1,2.99,05/22/19 14:54,"307 West St, San Francisco, CA 94016" +200653,Lightning Charging Cable,1,14.95,05/22/19 00:50,"821 Main St, New York City, NY 10001" +200654,Flatscreen TV,1,300,05/19/19 08:45,"547 5th St, New York City, NY 10001" +200655,AAA Batteries (4-pack),1,2.99,05/06/19 01:02,"483 10th St, Los Angeles, CA 90001" +200656,Lightning Charging Cable,1,14.95,05/17/19 07:51,"855 5th St, Atlanta, GA 30301" +200657,27in 4K Gaming Monitor,1,389.99,05/15/19 06:41,"209 Dogwood St, Boston, MA 02215" +200658,Lightning Charging Cable,1,14.95,05/13/19 13:56,"961 Main St, Boston, MA 02215" +200659,AA Batteries (4-pack),1,3.84,05/25/19 18:58,"225 6th St, San Francisco, CA 94016" +200660,27in FHD Monitor,1,149.99,05/28/19 18:50,"462 7th St, Dallas, TX 75001" +200661,Apple Airpods Headphones,1,150,05/14/19 13:20,"857 North St, Austin, TX 73301" +200662,34in Ultrawide Monitor,1,379.99,05/21/19 23:46,"757 Willow St, Portland, OR 97035" +200663,USB-C Charging Cable,1,11.95,05/19/19 20:56,"330 4th St, Austin, TX 73301" +200664,34in Ultrawide Monitor,1,379.99,05/11/19 18:43,"463 Johnson St, New York City, NY 10001" +200665,Macbook Pro Laptop,1,1700,05/03/19 20:07,"584 Lincoln St, New York City, NY 10001" +200666,Wired Headphones,1,11.99,05/11/19 13:09,"777 Center St, Atlanta, GA 30301" +200667,Bose SoundSport Headphones,1,99.99,05/21/19 14:43,"127 Church St, Los Angeles, CA 90001" +200668,USB-C Charging Cable,1,11.95,05/21/19 10:22,"401 11th St, Los Angeles, CA 90001" +200669,Bose SoundSport Headphones,1,99.99,05/07/19 20:13,"141 Center St, San Francisco, CA 94016" +200670,27in FHD Monitor,1,149.99,05/23/19 21:55,"502 12th St, Boston, MA 02215" +200671,Wired Headphones,1,11.99,05/09/19 09:48,"922 Adams St, Boston, MA 02215" +200672,AAA Batteries (4-pack),1,2.99,05/26/19 09:32,"473 North St, Austin, TX 73301" +200673,ThinkPad Laptop,1,999.99,05/25/19 18:03,"481 Hickory St, San Francisco, CA 94016" +200674,AA Batteries (4-pack),1,3.84,05/28/19 12:53,"639 14th St, Los Angeles, CA 90001" +200675,34in Ultrawide Monitor,1,379.99,05/08/19 18:49,"600 Madison St, San Francisco, CA 94016" +200676,Lightning Charging Cable,1,14.95,05/20/19 16:32,"344 8th St, San Francisco, CA 94016" +200677,Flatscreen TV,1,300,05/21/19 14:03,"244 Dogwood St, Boston, MA 02215" +200678,Bose SoundSport Headphones,1,99.99,05/03/19 18:51,"22 Cherry St, New York City, NY 10001" +200679,AAA Batteries (4-pack),1,2.99,05/16/19 02:51,"721 Elm St, Boston, MA 02215" +200680,USB-C Charging Cable,1,11.95,05/30/19 08:33,"802 River St, Atlanta, GA 30301" +200681,Lightning Charging Cable,1,14.95,05/03/19 21:20,"69 Pine St, San Francisco, CA 94016" +200682,Flatscreen TV,1,300,05/02/19 18:55,"393 Jackson St, New York City, NY 10001" +200683,27in FHD Monitor,1,149.99,05/24/19 08:53,"171 2nd St, Seattle, WA 98101" +200684,iPhone,1,700,05/18/19 10:59,"218 4th St, San Francisco, CA 94016" +200684,Lightning Charging Cable,2,14.95,05/18/19 10:59,"218 4th St, San Francisco, CA 94016" +200685,AAA Batteries (4-pack),1,2.99,05/30/19 09:55,"502 North St, San Francisco, CA 94016" +200686,AAA Batteries (4-pack),1,2.99,05/09/19 02:00,"712 6th St, Seattle, WA 98101" +200687,USB-C Charging Cable,1,11.95,05/05/19 16:46,"923 Willow St, San Francisco, CA 94016" +200688,27in 4K Gaming Monitor,1,389.99,05/11/19 13:27,"316 12th St, Austin, TX 73301" +200689,AAA Batteries (4-pack),4,2.99,05/02/19 19:27,"616 Wilson St, Los Angeles, CA 90001" +200689,AA Batteries (4-pack),1,3.84,05/02/19 19:27,"616 Wilson St, Los Angeles, CA 90001" +200690,20in Monitor,1,109.99,05/06/19 18:09,"281 14th St, Los Angeles, CA 90001" +200691,Lightning Charging Cable,1,14.95,05/16/19 00:09,"580 Park St, Boston, MA 02215" +200692,Bose SoundSport Headphones,1,99.99,05/26/19 19:25,"54 Adams St, Seattle, WA 98101" +200693,Flatscreen TV,1,300,05/19/19 17:35,"569 6th St, Los Angeles, CA 90001" +200694,Wired Headphones,1,11.99,05/11/19 20:55,"460 Park St, Boston, MA 02215" +200695,USB-C Charging Cable,1,11.95,05/25/19 18:20,"326 5th St, Atlanta, GA 30301" +200695,Macbook Pro Laptop,1,1700,05/25/19 18:20,"326 5th St, Atlanta, GA 30301" +200696,Lightning Charging Cable,1,14.95,05/28/19 18:56,"357 Ridge St, Atlanta, GA 30301" +200697,Bose SoundSport Headphones,1,99.99,05/17/19 12:21,"912 6th St, Seattle, WA 98101" +200698,USB-C Charging Cable,1,11.95,05/01/19 22:11,"681 Center St, Seattle, WA 98101" +200699,Lightning Charging Cable,1,14.95,05/09/19 08:29,"249 Lakeview St, Boston, MA 02215" +200700,USB-C Charging Cable,1,11.95,05/07/19 09:39,"421 10th St, Atlanta, GA 30301" +200701,AA Batteries (4-pack),1,3.84,05/13/19 11:07,"960 Elm St, Los Angeles, CA 90001" +200702,USB-C Charging Cable,1,11.95,05/17/19 21:32,"691 Chestnut St, San Francisco, CA 94016" +200703,Apple Airpods Headphones,1,150,05/16/19 13:05,"941 5th St, Los Angeles, CA 90001" +200704,Wired Headphones,2,11.99,05/21/19 08:24,"231 7th St, New York City, NY 10001" +200704,Bose SoundSport Headphones,1,99.99,05/21/19 08:24,"231 7th St, New York City, NY 10001" +200705,Wired Headphones,1,11.99,05/10/19 21:28,"336 13th St, New York City, NY 10001" +200706,AAA Batteries (4-pack),2,2.99,05/14/19 16:57,"434 Lakeview St, Boston, MA 02215" +200707,USB-C Charging Cable,2,11.95,05/29/19 20:17,"267 Sunset St, Austin, TX 73301" +200708,Wired Headphones,1,11.99,05/19/19 19:28,"166 Jackson St, Atlanta, GA 30301" +200709,Lightning Charging Cable,1,14.95,05/22/19 08:15,"43 Wilson St, Los Angeles, CA 90001" +200710,Flatscreen TV,1,300,05/07/19 11:39,"397 8th St, San Francisco, CA 94016" +200711,Macbook Pro Laptop,1,1700,05/22/19 08:57,"461 8th St, San Francisco, CA 94016" +200712,AAA Batteries (4-pack),1,2.99,05/18/19 21:33,"826 Jackson St, San Francisco, CA 94016" +200713,Lightning Charging Cable,1,14.95,05/09/19 09:01,"204 Johnson St, Dallas, TX 75001" +200714,Wired Headphones,1,11.99,05/03/19 10:15,"3 Willow St, Los Angeles, CA 90001" +200715,AAA Batteries (4-pack),1,2.99,05/05/19 05:33,"975 Sunset St, Boston, MA 02215" +200716,Flatscreen TV,1,300,05/05/19 19:58,"849 7th St, San Francisco, CA 94016" +200717,Wired Headphones,1,11.99,05/09/19 09:48,"227 13th St, San Francisco, CA 94016" +200718,iPhone,1,700,05/30/19 03:00,"87 River St, Portland, OR 97035" +200718,Wired Headphones,1,11.99,05/30/19 03:00,"87 River St, Portland, OR 97035" +200719,iPhone,1,700,05/22/19 20:15,"485 Maple St, Los Angeles, CA 90001" +200720,Apple Airpods Headphones,1,150,05/26/19 17:29,"944 1st St, Boston, MA 02215" +200721,USB-C Charging Cable,1,11.95,05/16/19 13:37,"198 13th St, Portland, OR 97035" +200722,AA Batteries (4-pack),1,3.84,05/02/19 22:11,"843 Park St, Atlanta, GA 30301" +200723,USB-C Charging Cable,1,11.95,05/21/19 15:30,"707 Walnut St, Boston, MA 02215" +200724,AAA Batteries (4-pack),2,2.99,05/03/19 17:55,"38 1st St, Seattle, WA 98101" +200725,Flatscreen TV,1,300,05/18/19 11:50,"861 Park St, San Francisco, CA 94016" +200726,AAA Batteries (4-pack),1,2.99,05/31/19 23:52,"286 Hickory St, San Francisco, CA 94016" +200727,AA Batteries (4-pack),1,3.84,05/11/19 20:01,"229 South St, Austin, TX 73301" +200728,AA Batteries (4-pack),5,3.84,05/02/19 12:58,"584 Jefferson St, Dallas, TX 75001" +200729,AAA Batteries (4-pack),1,2.99,05/27/19 01:03,"862 Park St, New York City, NY 10001" +200730,Wired Headphones,1,11.99,05/19/19 09:05,"900 North St, Portland, OR 97035" +200731,USB-C Charging Cable,1,11.95,05/14/19 12:16,"59 Lakeview St, San Francisco, CA 94016" +200732,AAA Batteries (4-pack),2,2.99,05/15/19 07:09,"146 Adams St, Dallas, TX 75001" +200733,Lightning Charging Cable,1,14.95,05/05/19 10:41,"900 Jackson St, Dallas, TX 75001" +200734,ThinkPad Laptop,1,999.99,05/19/19 09:31,"20 Center St, San Francisco, CA 94016" +200735,AA Batteries (4-pack),1,3.84,05/19/19 18:22,"779 Dogwood St, New York City, NY 10001" +200736,Lightning Charging Cable,1,14.95,05/07/19 23:01,"815 5th St, Atlanta, GA 30301" +200737,Apple Airpods Headphones,1,150,05/05/19 01:45,"232 South St, Portland, OR 97035" +200738,Bose SoundSport Headphones,1,99.99,05/19/19 21:12,"597 River St, San Francisco, CA 94016" +200739,Bose SoundSport Headphones,1,99.99,05/14/19 20:52,"209 Elm St, Boston, MA 02215" +200740,AAA Batteries (4-pack),1,2.99,05/02/19 20:28,"969 Forest St, Seattle, WA 98101" +200741,Macbook Pro Laptop,1,1700,05/10/19 12:02,"463 6th St, Austin, TX 73301" +200742,Bose SoundSport Headphones,1,99.99,05/23/19 09:02,"887 Jefferson St, Portland, ME 04101" +200742,AA Batteries (4-pack),1,3.84,05/23/19 09:02,"887 Jefferson St, Portland, ME 04101" +200743,Wired Headphones,1,11.99,05/07/19 22:35,"381 1st St, Portland, OR 97035" +200744,27in FHD Monitor,1,149.99,05/23/19 17:17,"558 12th St, Dallas, TX 75001" +200745,Macbook Pro Laptop,1,1700,05/14/19 19:48,"858 Wilson St, San Francisco, CA 94016" +200746,Bose SoundSport Headphones,2,99.99,05/02/19 19:47,"864 Dogwood St, Portland, ME 04101" +200747,Flatscreen TV,1,300,05/28/19 20:08,"500 4th St, Dallas, TX 75001" +200748,Apple Airpods Headphones,1,150,05/30/19 00:16,"312 Washington St, Atlanta, GA 30301" +200749,ThinkPad Laptop,1,999.99,05/10/19 23:30,"3 Elm St, New York City, NY 10001" +200750,Bose SoundSport Headphones,1,99.99,05/13/19 16:13,"53 Pine St, Atlanta, GA 30301" +200751,Bose SoundSport Headphones,1,99.99,05/03/19 12:13,"408 Madison St, Austin, TX 73301" +200752,Apple Airpods Headphones,1,150,05/16/19 16:16,"439 West St, Austin, TX 73301" +200753,27in FHD Monitor,1,149.99,05/28/19 11:15,"523 Washington St, Austin, TX 73301" +200754,Google Phone,1,600,05/10/19 19:14,"492 Wilson St, Dallas, TX 75001" +200755,Wired Headphones,2,11.99,05/09/19 23:27,"327 8th St, Boston, MA 02215" +200756,USB-C Charging Cable,1,11.95,05/06/19 20:54,"28 Church St, Austin, TX 73301" +200757,Google Phone,1,600,05/27/19 14:26,"638 North St, San Francisco, CA 94016" +200758,AAA Batteries (4-pack),2,2.99,05/06/19 09:18,"828 Chestnut St, New York City, NY 10001" +200759,27in 4K Gaming Monitor,1,389.99,05/29/19 09:52,"88 2nd St, San Francisco, CA 94016" +200760,Lightning Charging Cable,1,14.95,05/06/19 16:33,"406 Jefferson St, San Francisco, CA 94016" +200761,Wired Headphones,1,11.99,05/17/19 20:20,"869 2nd St, San Francisco, CA 94016" +200762,AAA Batteries (4-pack),3,2.99,05/22/19 22:08,"18 Hill St, Boston, MA 02215" +200763,Google Phone,1,600,05/16/19 22:31,"775 Elm St, New York City, NY 10001" +200764,Lightning Charging Cable,1,14.95,05/12/19 09:17,"296 Highland St, Dallas, TX 75001" +200765,Lightning Charging Cable,1,14.95,05/21/19 13:13,"918 6th St, Los Angeles, CA 90001" +200766,iPhone,1,700,05/05/19 11:43,"323 Johnson St, New York City, NY 10001" +200767,Apple Airpods Headphones,1,150,05/19/19 22:10,"666 2nd St, Seattle, WA 98101" +200768,ThinkPad Laptop,1,999.99,05/21/19 16:17,"349 Walnut St, Boston, MA 02215" +200769,Google Phone,1,600,05/01/19 14:45,"938 Johnson St, Los Angeles, CA 90001" +200770,Apple Airpods Headphones,1,150,05/31/19 19:39,"199 13th St, New York City, NY 10001" +200771,iPhone,1,700,05/31/19 03:17,"822 Willow St, Los Angeles, CA 90001" +200772,ThinkPad Laptop,1,999.99,05/19/19 11:03,"507 Hill St, Atlanta, GA 30301" +200773,Google Phone,1,600,05/18/19 18:40,"806 14th St, Boston, MA 02215" +200774,Wired Headphones,1,11.99,05/11/19 23:11,"906 Spruce St, Boston, MA 02215" +200775,USB-C Charging Cable,1,11.95,05/30/19 22:04,"428 Lake St, Los Angeles, CA 90001" +200776,Vareebadd Phone,1,400,05/05/19 17:50,"111 Madison St, New York City, NY 10001" +200777,AA Batteries (4-pack),1,3.84,05/06/19 11:20,"480 Park St, San Francisco, CA 94016" +200778,iPhone,1,700,05/07/19 10:38,"834 2nd St, Portland, ME 04101" +200779,Wired Headphones,1,11.99,05/12/19 12:03,"279 Jefferson St, San Francisco, CA 94016" +200780,Flatscreen TV,1,300,05/05/19 16:37,"554 7th St, Atlanta, GA 30301" +200781,Flatscreen TV,1,300,05/26/19 08:16,"760 River St, Seattle, WA 98101" +200782,USB-C Charging Cable,1,11.95,05/08/19 19:37,"663 Spruce St, Portland, OR 97035" +200783,USB-C Charging Cable,1,11.95,05/09/19 15:00,"552 Main St, San Francisco, CA 94016" +200784,AAA Batteries (4-pack),2,2.99,05/06/19 15:50,"995 Adams St, San Francisco, CA 94016" +200785,20in Monitor,1,109.99,05/15/19 14:18,"189 6th St, San Francisco, CA 94016" +200785,Macbook Pro Laptop,1,1700,05/15/19 14:18,"189 6th St, San Francisco, CA 94016" +200786,Macbook Pro Laptop,1,1700,05/22/19 11:58,"798 Walnut St, Portland, OR 97035" +200787,LG Washing Machine,1,600.0,05/22/19 13:12,"869 Hickory St, Seattle, WA 98101" +200788,Lightning Charging Cable,1,14.95,05/16/19 22:50,"117 Elm St, Atlanta, GA 30301" +200789,USB-C Charging Cable,1,11.95,05/31/19 16:48,"129 Johnson St, Los Angeles, CA 90001" +200790,Apple Airpods Headphones,1,150,05/19/19 16:05,"502 Maple St, Los Angeles, CA 90001" +200791,USB-C Charging Cable,1,11.95,05/30/19 13:22,"243 Jackson St, San Francisco, CA 94016" +200792,34in Ultrawide Monitor,1,379.99,05/04/19 09:22,"632 Jefferson St, New York City, NY 10001" +200793,Lightning Charging Cable,1,14.95,05/02/19 22:47,"58 2nd St, Los Angeles, CA 90001" +,,,,, +200794,Flatscreen TV,1,300,05/17/19 21:00,"164 Elm St, San Francisco, CA 94016" +200795,Bose SoundSport Headphones,1,99.99,05/02/19 13:15,"328 13th St, Seattle, WA 98101" +200796,iPhone,1,700,05/23/19 10:35,"731 Church St, Los Angeles, CA 90001" +200797,AAA Batteries (4-pack),1,2.99,05/29/19 08:46,"990 Elm St, Seattle, WA 98101" +200798,27in FHD Monitor,1,149.99,05/03/19 22:29,"91 Meadow St, San Francisco, CA 94016" +200799,AAA Batteries (4-pack),1,2.99,05/01/19 12:59,"41 North St, Los Angeles, CA 90001" +200800,USB-C Charging Cable,1,11.95,05/28/19 20:40,"644 Jackson St, Los Angeles, CA 90001" +200801,AAA Batteries (4-pack),1,2.99,05/03/19 13:05,"429 14th St, Boston, MA 02215" +200802,Bose SoundSport Headphones,1,99.99,05/28/19 23:55,"444 Maple St, Dallas, TX 75001" +200803,AAA Batteries (4-pack),2,2.99,05/06/19 01:37,"56 South St, Dallas, TX 75001" +200804,20in Monitor,1,109.99,05/29/19 18:21,"902 Center St, San Francisco, CA 94016" +200805,20in Monitor,1,109.99,05/30/19 14:00,"577 Hill St, Los Angeles, CA 90001" +200806,Apple Airpods Headphones,1,150,05/20/19 14:45,"307 Lake St, Boston, MA 02215" +200807,USB-C Charging Cable,1,11.95,05/21/19 15:00,"230 8th St, Los Angeles, CA 90001" +200808,Macbook Pro Laptop,1,1700,05/18/19 15:35,"848 13th St, Dallas, TX 75001" +200809,Wired Headphones,2,11.99,05/09/19 21:53,"609 Madison St, Boston, MA 02215" +200810,AAA Batteries (4-pack),1,2.99,05/09/19 12:49,"862 Johnson St, Seattle, WA 98101" +200811,Bose SoundSport Headphones,1,99.99,05/14/19 22:12,"388 Sunset St, Austin, TX 73301" +200812,Lightning Charging Cable,1,14.95,05/03/19 20:19,"718 Jefferson St, Atlanta, GA 30301" +200813,20in Monitor,1,109.99,05/22/19 17:03,"116 Forest St, Boston, MA 02215" +200814,Bose SoundSport Headphones,1,99.99,05/12/19 14:17,"633 River St, Dallas, TX 75001" +200815,ThinkPad Laptop,1,999.99,05/21/19 10:55,"415 South St, New York City, NY 10001" +200816,Apple Airpods Headphones,1,150,05/26/19 17:41,"707 Lakeview St, San Francisco, CA 94016" +200817,AA Batteries (4-pack),1,3.84,05/07/19 20:04,"297 Forest St, Dallas, TX 75001" +200818,AA Batteries (4-pack),1,3.84,05/02/19 10:15,"264 Walnut St, Boston, MA 02215" +200819,Flatscreen TV,1,300,05/16/19 12:11,"133 Main St, Los Angeles, CA 90001" +200820,USB-C Charging Cable,1,11.95,05/20/19 21:52,"288 10th St, New York City, NY 10001" +200821,Bose SoundSport Headphones,1,99.99,05/03/19 15:42,"782 Adams St, Boston, MA 02215" +200822,AA Batteries (4-pack),1,3.84,05/18/19 18:29,"7 Wilson St, Seattle, WA 98101" +200823,27in 4K Gaming Monitor,1,389.99,05/18/19 07:50,"755 Lake St, Portland, OR 97035" +200824,iPhone,1,700,05/31/19 19:48,"928 Spruce St, New York City, NY 10001" +200825,34in Ultrawide Monitor,1,379.99,05/15/19 15:19,"768 Willow St, New York City, NY 10001" +200826,Lightning Charging Cable,2,14.95,05/30/19 14:56,"805 Cedar St, Seattle, WA 98101" +200827,USB-C Charging Cable,1,11.95,05/29/19 21:46,"156 4th St, Austin, TX 73301" +200828,AAA Batteries (4-pack),2,2.99,05/26/19 22:05,"260 10th St, Portland, OR 97035" +200828,AA Batteries (4-pack),1,3.84,05/26/19 22:05,"260 10th St, Portland, OR 97035" +200829,Lightning Charging Cable,1,14.95,05/13/19 17:50,"989 Lakeview St, Los Angeles, CA 90001" +200830,27in 4K Gaming Monitor,1,389.99,05/12/19 21:49,"746 Hill St, Austin, TX 73301" +200831,Lightning Charging Cable,1,14.95,05/14/19 14:04,"702 Elm St, New York City, NY 10001" +200832,USB-C Charging Cable,1,11.95,05/23/19 20:56,"168 Lincoln St, Boston, MA 02215" +200833,Apple Airpods Headphones,1,150,05/01/19 19:49,"490 Lincoln St, Dallas, TX 75001" +200834,Lightning Charging Cable,1,14.95,05/27/19 14:32,"450 Center St, Dallas, TX 75001" +200835,Wired Headphones,1,11.99,05/24/19 15:11,"114 5th St, Austin, TX 73301" +200836,AA Batteries (4-pack),1,3.84,05/20/19 17:57,"918 7th St, Los Angeles, CA 90001" +200837,Lightning Charging Cable,1,14.95,05/24/19 12:16,"620 Maple St, Austin, TX 73301" +200838,Wired Headphones,1,11.99,05/23/19 11:25,"789 Wilson St, Dallas, TX 75001" +200839,AA Batteries (4-pack),1,3.84,05/01/19 15:03,"618 Sunset St, Portland, OR 97035" +200840,Lightning Charging Cable,1,14.95,05/07/19 10:25,"549 7th St, Seattle, WA 98101" +200841,Lightning Charging Cable,1,14.95,05/13/19 15:29,"9 9th St, New York City, NY 10001" +200842,Apple Airpods Headphones,1,150,05/03/19 16:10,"6 2nd St, Boston, MA 02215" +200843,AA Batteries (4-pack),1,3.84,05/17/19 17:17,"849 West St, New York City, NY 10001" +200844,Lightning Charging Cable,1,14.95,05/27/19 10:19,"206 River St, Los Angeles, CA 90001" +200845,AAA Batteries (4-pack),2,2.99,05/26/19 13:36,"904 Willow St, Boston, MA 02215" +200846,Google Phone,1,600,05/21/19 10:25,"505 Madison St, Dallas, TX 75001" +200847,Lightning Charging Cable,1,14.95,05/30/19 09:25,"723 11th St, San Francisco, CA 94016" +200847,USB-C Charging Cable,1,11.95,05/30/19 09:25,"723 11th St, San Francisco, CA 94016" +200848,AAA Batteries (4-pack),2,2.99,05/04/19 17:31,"601 South St, San Francisco, CA 94016" +200849,27in 4K Gaming Monitor,1,389.99,05/04/19 10:44,"923 Washington St, Portland, ME 04101" +200850,27in FHD Monitor,1,149.99,05/27/19 12:56,"412 2nd St, Portland, OR 97035" +200851,iPhone,1,700,05/18/19 17:00,"261 Walnut St, San Francisco, CA 94016" +200852,Google Phone,1,600,05/22/19 13:44,"548 Highland St, Portland, OR 97035" +200852,USB-C Charging Cable,2,11.95,05/22/19 13:44,"548 Highland St, Portland, OR 97035" +200853,AA Batteries (4-pack),1,3.84,05/03/19 21:16,"283 Park St, Dallas, TX 75001" +200854,AAA Batteries (4-pack),3,2.99,05/22/19 18:29,"579 Center St, Boston, MA 02215" +200855,AAA Batteries (4-pack),1,2.99,05/06/19 14:16,"820 Johnson St, Portland, ME 04101" +200856,Lightning Charging Cable,1,14.95,05/26/19 10:05,"104 Elm St, New York City, NY 10001" +200857,USB-C Charging Cable,1,11.95,05/08/19 12:57,"932 4th St, San Francisco, CA 94016" +200858,27in 4K Gaming Monitor,1,389.99,05/25/19 21:35,"468 Hickory St, San Francisco, CA 94016" +200859,Flatscreen TV,1,300,05/04/19 12:37,"177 Forest St, San Francisco, CA 94016" +200860,Bose SoundSport Headphones,1,99.99,05/11/19 13:30,"741 Washington St, Dallas, TX 75001" +200861,Lightning Charging Cable,1,14.95,05/07/19 21:38,"931 12th St, Seattle, WA 98101" +200862,Wired Headphones,1,11.99,05/28/19 00:46,"178 Church St, Boston, MA 02215" +200863,AA Batteries (4-pack),1,3.84,05/14/19 10:53,"352 Lake St, Dallas, TX 75001" +200864,Apple Airpods Headphones,1,150,05/15/19 16:47,"541 Walnut St, Atlanta, GA 30301" +200865,Apple Airpods Headphones,1,150,05/02/19 12:10,"958 Lake St, Los Angeles, CA 90001" +200866,iPhone,1,700,05/12/19 10:00,"832 7th St, San Francisco, CA 94016" +200867,Wired Headphones,1,11.99,05/26/19 21:30,"765 5th St, New York City, NY 10001" +200868,Google Phone,1,600,05/05/19 11:59,"227 Hickory St, Los Angeles, CA 90001" +200869,Lightning Charging Cable,1,14.95,05/07/19 11:19,"839 5th St, Atlanta, GA 30301" +200870,USB-C Charging Cable,1,11.95,05/08/19 12:26,"220 Spruce St, San Francisco, CA 94016" +200871,Wired Headphones,2,11.99,05/13/19 13:04,"305 Lincoln St, Austin, TX 73301" +200872,Wired Headphones,1,11.99,05/12/19 23:04,"86 Forest St, New York City, NY 10001" +200873,Wired Headphones,1,11.99,05/25/19 21:43,"275 7th St, Los Angeles, CA 90001" +200874,AAA Batteries (4-pack),1,2.99,05/01/19 12:47,"876 Forest St, Boston, MA 02215" +200875,34in Ultrawide Monitor,1,379.99,05/07/19 20:21,"783 Spruce St, New York City, NY 10001" +200876,AA Batteries (4-pack),1,3.84,05/04/19 13:06,"457 6th St, Boston, MA 02215" +200877,USB-C Charging Cable,1,11.95,05/31/19 19:30,"50 Meadow St, Dallas, TX 75001" +200878,AA Batteries (4-pack),3,3.84,05/26/19 10:02,"707 Ridge St, Boston, MA 02215" +200879,Lightning Charging Cable,1,14.95,05/23/19 12:16,"54 Walnut St, New York City, NY 10001" +200880,27in 4K Gaming Monitor,1,389.99,05/19/19 20:15,"669 Hickory St, Seattle, WA 98101" +200881,Macbook Pro Laptop,1,1700,05/21/19 16:30,"367 Lincoln St, New York City, NY 10001" +200882,Apple Airpods Headphones,1,150,05/13/19 16:40,"713 Pine St, San Francisco, CA 94016" +200883,ThinkPad Laptop,1,999.99,05/02/19 23:31,"388 5th St, Los Angeles, CA 90001" +200884,Bose SoundSport Headphones,1,99.99,05/10/19 14:36,"773 Willow St, Atlanta, GA 30301" +200885,AA Batteries (4-pack),1,3.84,05/30/19 13:14,"623 Center St, Boston, MA 02215" +200886,Lightning Charging Cable,1,14.95,05/26/19 17:12,"642 Ridge St, San Francisco, CA 94016" +200887,AA Batteries (4-pack),2,3.84,05/08/19 19:15,"354 Hill St, San Francisco, CA 94016" +200888,27in FHD Monitor,1,149.99,05/19/19 17:15,"815 Park St, Los Angeles, CA 90001" +200889,USB-C Charging Cable,1,11.95,05/07/19 22:32,"800 1st St, Dallas, TX 75001" +200890,Lightning Charging Cable,1,14.95,05/07/19 17:18,"235 Church St, Austin, TX 73301" +200891,Lightning Charging Cable,1,14.95,05/02/19 17:05,"195 Adams St, San Francisco, CA 94016" +200892,AA Batteries (4-pack),1,3.84,05/24/19 21:45,"223 Maple St, Portland, OR 97035" +,,,,, +200893,Apple Airpods Headphones,1,150,05/02/19 20:46,"645 River St, New York City, NY 10001" +200894,34in Ultrawide Monitor,1,379.99,05/05/19 14:53,"957 Maple St, New York City, NY 10001" +200895,USB-C Charging Cable,1,11.95,05/11/19 18:04,"216 North St, Atlanta, GA 30301" +200896,Google Phone,1,600,05/30/19 15:25,"325 11th St, Los Angeles, CA 90001" +200897,USB-C Charging Cable,1,11.95,05/31/19 08:08,"754 Ridge St, Seattle, WA 98101" +200898,AAA Batteries (4-pack),1,2.99,05/30/19 20:40,"329 Center St, Austin, TX 73301" +200899,AA Batteries (4-pack),1,3.84,05/22/19 16:16,"555 Hill St, Boston, MA 02215" +200900,Lightning Charging Cable,2,14.95,05/06/19 00:03,"952 North St, Dallas, TX 75001" +200901,27in 4K Gaming Monitor,1,389.99,05/26/19 22:21,"871 River St, Atlanta, GA 30301" +200902,AA Batteries (4-pack),1,3.84,05/14/19 11:37,"321 Elm St, Portland, ME 04101" +200903,AA Batteries (4-pack),1,3.84,05/25/19 22:20,"976 11th St, Boston, MA 02215" +200904,USB-C Charging Cable,1,11.95,05/08/19 12:49,"270 Ridge St, Boston, MA 02215" +200905,iPhone,1,700,05/07/19 23:23,"727 Park St, Portland, ME 04101" +200905,Wired Headphones,1,11.99,05/07/19 23:23,"727 Park St, Portland, ME 04101" +200906,Apple Airpods Headphones,1,150,05/13/19 22:49,"912 Jackson St, Portland, OR 97035" +200907,USB-C Charging Cable,1,11.95,05/17/19 18:46,"185 Forest St, San Francisco, CA 94016" +200908,27in FHD Monitor,1,149.99,05/15/19 13:23,"889 Jefferson St, Dallas, TX 75001" +200909,AA Batteries (4-pack),1,3.84,05/07/19 20:23,"597 Chestnut St, San Francisco, CA 94016" +200910,AAA Batteries (4-pack),1,2.99,05/14/19 10:07,"522 6th St, San Francisco, CA 94016" +200911,Apple Airpods Headphones,1,150,05/17/19 14:52,"879 Jackson St, New York City, NY 10001" +200912,AAA Batteries (4-pack),1,2.99,05/11/19 20:19,"550 Ridge St, Los Angeles, CA 90001" +200913,AAA Batteries (4-pack),1,2.99,05/02/19 15:48,"825 Center St, Dallas, TX 75001" +200914,27in FHD Monitor,1,149.99,05/12/19 15:01,"692 Meadow St, San Francisco, CA 94016" +200915,AAA Batteries (4-pack),1,2.99,05/18/19 11:04,"401 14th St, San Francisco, CA 94016" +200916,Lightning Charging Cable,1,14.95,05/08/19 06:52,"646 Center St, Austin, TX 73301" +200917,USB-C Charging Cable,1,11.95,05/20/19 20:46,"616 13th St, Los Angeles, CA 90001" +200918,USB-C Charging Cable,1,11.95,05/14/19 19:42,"860 12th St, Boston, MA 02215" +200919,27in FHD Monitor,1,149.99,05/18/19 01:45,"349 Hill St, Seattle, WA 98101" +200920,27in FHD Monitor,1,149.99,05/28/19 06:30,"995 13th St, San Francisco, CA 94016" +200921,Flatscreen TV,1,300,05/12/19 17:59,"903 Sunset St, Atlanta, GA 30301" +200922,Lightning Charging Cable,1,14.95,05/03/19 22:05,"582 Center St, Dallas, TX 75001" +200923,AAA Batteries (4-pack),1,2.99,05/18/19 05:07,"254 Dogwood St, Boston, MA 02215" +200924,27in 4K Gaming Monitor,1,389.99,05/10/19 08:41,"475 Forest St, San Francisco, CA 94016" +200925,Wired Headphones,1,11.99,05/21/19 12:19,"525 6th St, San Francisco, CA 94016" +200926,Lightning Charging Cable,1,14.95,05/06/19 20:31,"864 Highland St, Los Angeles, CA 90001" +200927,27in FHD Monitor,1,149.99,05/09/19 07:11,"136 14th St, San Francisco, CA 94016" +200928,AA Batteries (4-pack),1,3.84,05/25/19 14:30,"733 Spruce St, Los Angeles, CA 90001" +200929,Lightning Charging Cable,1,14.95,05/13/19 23:24,"785 Hickory St, Portland, ME 04101" +200930,27in 4K Gaming Monitor,1,389.99,05/05/19 14:22,"430 Sunset St, Boston, MA 02215" +200931,ThinkPad Laptop,1,999.99,05/20/19 09:01,"61 4th St, San Francisco, CA 94016" +200932,27in 4K Gaming Monitor,1,389.99,05/02/19 17:43,"134 Pine St, Portland, OR 97035" +200933,Bose SoundSport Headphones,1,99.99,05/20/19 18:27,"100 Cedar St, Austin, TX 73301" +200934,AA Batteries (4-pack),1,3.84,05/12/19 23:55,"39 Maple St, New York City, NY 10001" +200935,AAA Batteries (4-pack),1,2.99,05/13/19 14:36,"979 Adams St, New York City, NY 10001" +200936,Apple Airpods Headphones,1,150,05/02/19 13:31,"766 Sunset St, Los Angeles, CA 90001" +200937,27in FHD Monitor,1,149.99,05/16/19 16:45,"493 Hill St, Seattle, WA 98101" +200938,20in Monitor,1,109.99,05/22/19 17:43,"596 Park St, Austin, TX 73301" +200939,AAA Batteries (4-pack),2,2.99,05/03/19 15:13,"469 Forest St, Seattle, WA 98101" +200940,Flatscreen TV,1,300,05/03/19 13:21,"399 Spruce St, Los Angeles, CA 90001" +200941,27in 4K Gaming Monitor,1,389.99,05/07/19 08:09,"442 Park St, San Francisco, CA 94016" +200942,iPhone,1,700,05/31/19 16:09,"821 Church St, San Francisco, CA 94016" +200942,Lightning Charging Cable,1,14.95,05/31/19 16:09,"821 Church St, San Francisco, CA 94016" +200943,AAA Batteries (4-pack),1,2.99,05/13/19 16:40,"554 Cherry St, Atlanta, GA 30301" +200944,AA Batteries (4-pack),3,3.84,05/24/19 10:35,"219 Park St, Los Angeles, CA 90001" +200945,Lightning Charging Cable,1,14.95,05/30/19 20:58,"388 12th St, Boston, MA 02215" +200946,AAA Batteries (4-pack),2,2.99,05/17/19 15:01,"665 River St, San Francisco, CA 94016" +200947,34in Ultrawide Monitor,1,379.99,05/20/19 14:02,"568 Cedar St, Boston, MA 02215" +200948,USB-C Charging Cable,2,11.95,05/27/19 12:54,"174 11th St, Los Angeles, CA 90001" +200949,USB-C Charging Cable,1,11.95,05/27/19 14:43,"1 6th St, San Francisco, CA 94016" +200950,ThinkPad Laptop,1,999.99,05/06/19 16:22,"173 Ridge St, San Francisco, CA 94016" +200951,AAA Batteries (4-pack),2,2.99,05/06/19 07:51,"74 Wilson St, San Francisco, CA 94016" +200952,AA Batteries (4-pack),1,3.84,05/02/19 11:58,"386 Wilson St, Atlanta, GA 30301" +200953,Wired Headphones,1,11.99,05/21/19 22:45,"991 Madison St, New York City, NY 10001" +200954,Google Phone,1,600,05/28/19 13:46,"740 Lakeview St, New York City, NY 10001" +200955,34in Ultrawide Monitor,1,379.99,05/04/19 19:46,"861 2nd St, New York City, NY 10001" +200956,27in 4K Gaming Monitor,1,389.99,05/25/19 19:46,"551 South St, Boston, MA 02215" +200957,AA Batteries (4-pack),2,3.84,05/07/19 18:23,"238 8th St, New York City, NY 10001" +200958,AAA Batteries (4-pack),1,2.99,05/04/19 17:26,"66 Elm St, Dallas, TX 75001" +200959,20in Monitor,1,109.99,05/06/19 08:28,"180 South St, Seattle, WA 98101" +200960,AAA Batteries (4-pack),1,2.99,05/23/19 12:20,"255 Elm St, San Francisco, CA 94016" +200961,ThinkPad Laptop,1,999.99,05/25/19 17:41,"327 1st St, Atlanta, GA 30301" +200962,Google Phone,1,600,05/02/19 13:45,"465 1st St, Atlanta, GA 30301" +200963,Lightning Charging Cable,1,14.95,05/17/19 20:13,"151 8th St, Boston, MA 02215" +200964,Flatscreen TV,1,300,05/22/19 11:13,"503 Ridge St, San Francisco, CA 94016" +200965,LG Washing Machine,1,600.0,05/24/19 13:27,"714 13th St, New York City, NY 10001" +200966,Wired Headphones,2,11.99,05/02/19 14:32,"461 Center St, San Francisco, CA 94016" +200967,Apple Airpods Headphones,1,150,05/08/19 20:12,"561 Sunset St, Seattle, WA 98101" +200968,Google Phone,1,600,05/04/19 07:56,"948 5th St, Los Angeles, CA 90001" +200969,Wired Headphones,2,11.99,05/23/19 17:23,"833 4th St, Los Angeles, CA 90001" +200970,Google Phone,1,600,05/21/19 17:30,"603 Johnson St, San Francisco, CA 94016" +200971,USB-C Charging Cable,1,11.95,05/11/19 12:51,"271 Hickory St, Atlanta, GA 30301" +200972,USB-C Charging Cable,1,11.95,05/09/19 09:11,"402 2nd St, Boston, MA 02215" +200973,Google Phone,1,600,05/18/19 14:04,"576 2nd St, Seattle, WA 98101" +200974,27in FHD Monitor,1,149.99,05/04/19 00:01,"886 5th St, Los Angeles, CA 90001" +200975,Apple Airpods Headphones,1,150,05/19/19 07:54,"79 Church St, Dallas, TX 75001" +200976,AAA Batteries (4-pack),1,2.99,05/02/19 18:38,"582 Cherry St, New York City, NY 10001" +200977,ThinkPad Laptop,1,999.99,05/09/19 15:53,"589 9th St, New York City, NY 10001" +200978,Lightning Charging Cable,1,14.95,05/04/19 07:42,"232 7th St, San Francisco, CA 94016" +200979,34in Ultrawide Monitor,1,379.99,05/25/19 08:14,"178 West St, Atlanta, GA 30301" +200980,Lightning Charging Cable,1,14.95,05/12/19 09:29,"964 Walnut St, Portland, ME 04101" +200981,Apple Airpods Headphones,1,150,05/02/19 20:25,"755 8th St, San Francisco, CA 94016" +200982,Lightning Charging Cable,1,14.95,05/21/19 14:03,"101 Chestnut St, San Francisco, CA 94016" +200983,Google Phone,1,600,05/17/19 20:17,"826 Sunset St, Austin, TX 73301" +200984,AAA Batteries (4-pack),3,2.99,05/04/19 14:13,"787 Dogwood St, Seattle, WA 98101" +200985,USB-C Charging Cable,1,11.95,05/10/19 14:57,"238 Jefferson St, San Francisco, CA 94016" +200986,Wired Headphones,1,11.99,05/02/19 07:29,"715 Main St, Portland, OR 97035" +200987,Apple Airpods Headphones,1,150,05/31/19 00:57,"130 Meadow St, Dallas, TX 75001" +200988,Lightning Charging Cable,1,14.95,05/05/19 07:52,"878 Johnson St, San Francisco, CA 94016" +200989,iPhone,1,700,05/30/19 17:35,"812 Cherry St, New York City, NY 10001" +200989,Wired Headphones,1,11.99,05/30/19 17:35,"812 Cherry St, New York City, NY 10001" +200990,Apple Airpods Headphones,1,150,05/03/19 06:57,"910 5th St, Los Angeles, CA 90001" +200991,USB-C Charging Cable,1,11.95,05/30/19 21:55,"842 West St, Seattle, WA 98101" +200992,27in FHD Monitor,1,149.99,05/23/19 22:10,"639 Madison St, San Francisco, CA 94016" +200993,USB-C Charging Cable,1,11.95,05/27/19 13:34,"502 12th St, Boston, MA 02215" +200994,Apple Airpods Headphones,1,150,05/30/19 21:59,"692 Adams St, New York City, NY 10001" +200995,Apple Airpods Headphones,1,150,05/22/19 09:43,"207 Jefferson St, San Francisco, CA 94016" +200996,Lightning Charging Cable,1,14.95,05/26/19 18:51,"819 South St, New York City, NY 10001" +200997,USB-C Charging Cable,1,11.95,05/05/19 13:30,"429 10th St, Los Angeles, CA 90001" +200997,Lightning Charging Cable,1,14.95,05/05/19 13:30,"429 10th St, Los Angeles, CA 90001" +200998,Apple Airpods Headphones,1,150,05/27/19 12:35,"566 Chestnut St, Seattle, WA 98101" +200999,Lightning Charging Cable,1,14.95,05/31/19 18:42,"146 North St, Boston, MA 02215" +201000,Bose SoundSport Headphones,1,99.99,05/14/19 00:32,"167 Forest St, San Francisco, CA 94016" +201001,USB-C Charging Cable,1,11.95,05/07/19 20:31,"975 14th St, Los Angeles, CA 90001" +201002,USB-C Charging Cable,1,11.95,05/10/19 16:59,"379 Johnson St, San Francisco, CA 94016" +201003,AA Batteries (4-pack),1,3.84,05/25/19 15:26,"137 Sunset St, Portland, OR 97035" +201004,USB-C Charging Cable,1,11.95,05/14/19 09:54,"738 Sunset St, Los Angeles, CA 90001" +201005,USB-C Charging Cable,1,11.95,05/08/19 19:26,"684 Center St, Boston, MA 02215" +201006,USB-C Charging Cable,2,11.95,05/22/19 15:48,"184 Lincoln St, San Francisco, CA 94016" +201007,AA Batteries (4-pack),1,3.84,05/15/19 10:29,"282 Main St, Portland, OR 97035" +201008,USB-C Charging Cable,1,11.95,05/30/19 17:40,"705 Adams St, San Francisco, CA 94016" +201009,Bose SoundSport Headphones,1,99.99,05/05/19 16:39,"45 Cherry St, Dallas, TX 75001" +201010,27in FHD Monitor,1,149.99,05/03/19 09:37,"471 5th St, San Francisco, CA 94016" +201011,AAA Batteries (4-pack),1,2.99,05/15/19 17:51,"966 2nd St, New York City, NY 10001" +201012,Wired Headphones,1,11.99,05/18/19 13:28,"407 Jackson St, Seattle, WA 98101" +201013,34in Ultrawide Monitor,1,379.99,05/16/19 09:53,"428 8th St, San Francisco, CA 94016" +201014,20in Monitor,2,109.99,05/03/19 04:47,"155 10th St, Austin, TX 73301" +201015,Lightning Charging Cable,1,14.95,05/08/19 08:46,"996 Chestnut St, San Francisco, CA 94016" +201016,AAA Batteries (4-pack),2,2.99,05/20/19 19:45,"871 Sunset St, Los Angeles, CA 90001" +201017,Lightning Charging Cable,1,14.95,05/11/19 06:23,"533 Hill St, San Francisco, CA 94016" +201018,Lightning Charging Cable,1,14.95,05/03/19 10:22,"850 5th St, San Francisco, CA 94016" +201019,Wired Headphones,1,11.99,05/05/19 22:33,"619 Johnson St, San Francisco, CA 94016" +201020,Apple Airpods Headphones,1,150,05/29/19 03:12,"594 Johnson St, Dallas, TX 75001" +201021,AA Batteries (4-pack),1,3.84,05/25/19 13:15,"779 Highland St, San Francisco, CA 94016" +201021,Lightning Charging Cable,1,14.95,05/25/19 13:15,"779 Highland St, San Francisco, CA 94016" +201022,Lightning Charging Cable,1,14.95,05/22/19 12:45,"30 Maple St, Atlanta, GA 30301" +201023,AAA Batteries (4-pack),2,2.99,05/05/19 14:50,"740 Forest St, New York City, NY 10001" +201024,AA Batteries (4-pack),1,3.84,05/21/19 22:38,"923 Washington St, Seattle, WA 98101" +201025,USB-C Charging Cable,1,11.95,05/15/19 17:28,"728 Hickory St, San Francisco, CA 94016" +201026,27in FHD Monitor,1,149.99,05/30/19 17:14,"365 Johnson St, New York City, NY 10001" +201027,USB-C Charging Cable,1,11.95,05/29/19 10:01,"828 Jackson St, Atlanta, GA 30301" +201028,iPhone,1,700,05/12/19 00:58,"818 11th St, New York City, NY 10001" +201029,AA Batteries (4-pack),1,3.84,05/04/19 23:58,"174 2nd St, New York City, NY 10001" +201030,Macbook Pro Laptop,1,1700,05/28/19 15:27,"171 Church St, Seattle, WA 98101" +201031,Bose SoundSport Headphones,1,99.99,05/19/19 22:08,"325 Pine St, San Francisco, CA 94016" +201032,34in Ultrawide Monitor,1,379.99,05/11/19 17:09,"52 Forest St, Dallas, TX 75001" +201033,Lightning Charging Cable,1,14.95,05/10/19 13:47,"260 2nd St, New York City, NY 10001" +201034,Apple Airpods Headphones,1,150,05/03/19 22:18,"674 12th St, Seattle, WA 98101" +201035,Wired Headphones,1,11.99,05/12/19 19:19,"882 Highland St, New York City, NY 10001" +201036,20in Monitor,1,109.99,05/02/19 15:31,"868 1st St, Boston, MA 02215" +201037,AAA Batteries (4-pack),2,2.99,05/18/19 20:01,"292 North St, Los Angeles, CA 90001" +201038,Lightning Charging Cable,1,14.95,05/25/19 20:55,"44 12th St, Los Angeles, CA 90001" +201039,Apple Airpods Headphones,1,150,05/06/19 00:44,"379 Adams St, Seattle, WA 98101" +201040,27in FHD Monitor,1,149.99,05/01/19 13:03,"133 Hickory St, Portland, OR 97035" +201041,Bose SoundSport Headphones,1,99.99,05/05/19 10:11,"266 West St, New York City, NY 10001" +201042,27in FHD Monitor,2,149.99,05/08/19 17:18,"554 Ridge St, Seattle, WA 98101" +201043,Lightning Charging Cable,1,14.95,05/16/19 16:29,"312 Ridge St, Los Angeles, CA 90001" +201044,AAA Batteries (4-pack),1,2.99,05/02/19 07:08,"938 Hickory St, San Francisco, CA 94016" +201045,Lightning Charging Cable,1,14.95,05/23/19 23:44,"271 Main St, Los Angeles, CA 90001" +201046,Bose SoundSport Headphones,1,99.99,05/25/19 20:02,"816 River St, Boston, MA 02215" +201047,AA Batteries (4-pack),1,3.84,05/03/19 21:35,"686 Adams St, Atlanta, GA 30301" +201048,27in 4K Gaming Monitor,1,389.99,05/23/19 18:48,"846 Cedar St, Los Angeles, CA 90001" +201049,Apple Airpods Headphones,1,150,05/25/19 16:12,"369 Madison St, San Francisco, CA 94016" +201050,Lightning Charging Cable,1,14.95,05/16/19 21:13,"119 Hickory St, New York City, NY 10001" +201051,34in Ultrawide Monitor,1,379.99,05/09/19 21:30,"913 Cedar St, Austin, TX 73301" +201052,Macbook Pro Laptop,1,1700,05/09/19 22:39,"100 Johnson St, Los Angeles, CA 90001" +201053,AA Batteries (4-pack),1,3.84,05/08/19 14:32,"974 Lake St, San Francisco, CA 94016" +201054,Apple Airpods Headphones,1,150,05/30/19 16:36,"27 Cherry St, Atlanta, GA 30301" +201055,iPhone,1,700,05/11/19 19:58,"752 Cedar St, Austin, TX 73301" +201055,Lightning Charging Cable,1,14.95,05/11/19 19:58,"752 Cedar St, Austin, TX 73301" +201056,USB-C Charging Cable,1,11.95,05/16/19 00:09,"321 Hill St, San Francisco, CA 94016" +201057,Lightning Charging Cable,1,14.95,05/16/19 11:44,"898 12th St, San Francisco, CA 94016" +201058,Bose SoundSport Headphones,2,99.99,05/05/19 14:49,"735 Hill St, Portland, OR 97035" +201059,USB-C Charging Cable,1,11.95,05/26/19 09:30,"933 Pine St, Dallas, TX 75001" +201060,27in FHD Monitor,1,149.99,05/28/19 10:21,"224 Hickory St, Los Angeles, CA 90001" +201061,AAA Batteries (4-pack),1,2.99,05/28/19 12:13,"129 Elm St, Atlanta, GA 30301" +201062,iPhone,1,700,05/19/19 21:55,"805 Center St, Dallas, TX 75001" +201062,Lightning Charging Cable,1,14.95,05/19/19 21:55,"805 Center St, Dallas, TX 75001" +201063,Macbook Pro Laptop,1,1700,05/26/19 09:13,"405 Elm St, San Francisco, CA 94016" +201064,Bose SoundSport Headphones,1,99.99,05/22/19 18:49,"193 Adams St, Austin, TX 73301" +201065,27in FHD Monitor,1,149.99,05/28/19 08:49,"550 9th St, San Francisco, CA 94016" +201066,27in 4K Gaming Monitor,1,389.99,05/24/19 22:59,"834 Adams St, New York City, NY 10001" +201067,ThinkPad Laptop,1,999.99,05/13/19 12:16,"807 Johnson St, San Francisco, CA 94016" +201068,Wired Headphones,2,11.99,05/16/19 17:45,"214 Center St, Dallas, TX 75001" +201069,USB-C Charging Cable,1,11.95,05/06/19 17:59,"948 Hill St, New York City, NY 10001" +201070,Lightning Charging Cable,2,14.95,05/25/19 11:30,"727 Washington St, San Francisco, CA 94016" +201071,Flatscreen TV,1,300,05/16/19 17:51,"401 Ridge St, Austin, TX 73301" +201072,AAA Batteries (4-pack),1,2.99,05/26/19 11:21,"184 North St, Boston, MA 02215" +201073,Wired Headphones,1,11.99,05/08/19 11:08,"337 14th St, San Francisco, CA 94016" +201074,AA Batteries (4-pack),1,3.84,05/23/19 18:35,"857 6th St, Atlanta, GA 30301" +201075,20in Monitor,1,109.99,05/23/19 23:44,"197 12th St, Seattle, WA 98101" +201076,LG Washing Machine,1,600.0,05/15/19 14:05,"741 Spruce St, Boston, MA 02215" +201077,34in Ultrawide Monitor,1,379.99,05/31/19 14:19,"505 Park St, New York City, NY 10001" +201078,34in Ultrawide Monitor,1,379.99,05/04/19 08:39,"966 Sunset St, Dallas, TX 75001" +201079,27in 4K Gaming Monitor,1,389.99,05/24/19 18:29,"196 6th St, Austin, TX 73301" +201080,AAA Batteries (4-pack),1,2.99,05/21/19 22:06,"432 Highland St, Portland, OR 97035" +201080,Lightning Charging Cable,1,14.95,05/21/19 22:06,"432 Highland St, Portland, OR 97035" +201081,Flatscreen TV,1,300,05/13/19 10:02,"737 Chestnut St, Seattle, WA 98101" +201082,iPhone,1,700,05/05/19 19:18,"551 Pine St, San Francisco, CA 94016" +201082,Wired Headphones,1,11.99,05/05/19 19:18,"551 Pine St, San Francisco, CA 94016" +201083,27in FHD Monitor,1,149.99,05/09/19 08:35,"388 Lake St, Portland, ME 04101" +201084,Apple Airpods Headphones,1,150,05/23/19 11:17,"63 Chestnut St, Los Angeles, CA 90001" +201085,AAA Batteries (4-pack),1,2.99,05/16/19 07:15,"841 Chestnut St, Atlanta, GA 30301" +201086,Apple Airpods Headphones,1,150,05/17/19 19:55,"780 Cedar St, Atlanta, GA 30301" +201087,Lightning Charging Cable,1,14.95,05/04/19 02:46,"745 Highland St, San Francisco, CA 94016" +201088,Apple Airpods Headphones,1,150,05/27/19 01:47,"298 5th St, Los Angeles, CA 90001" +201089,Macbook Pro Laptop,1,1700,05/05/19 20:56,"926 4th St, Atlanta, GA 30301" +201090,Apple Airpods Headphones,1,150,05/01/19 13:32,"899 Meadow St, New York City, NY 10001" +201091,iPhone,1,700,05/02/19 21:01,"868 10th St, San Francisco, CA 94016" +201092,Lightning Charging Cable,2,14.95,05/08/19 09:56,"29 Center St, Austin, TX 73301" +201093,Bose SoundSport Headphones,1,99.99,05/20/19 12:32,"851 7th St, San Francisco, CA 94016" +201094,Lightning Charging Cable,1,14.95,05/25/19 15:37,"890 Church St, Los Angeles, CA 90001" +201095,AA Batteries (4-pack),1,3.84,05/06/19 21:03,"175 Cedar St, San Francisco, CA 94016" +201096,AA Batteries (4-pack),1,3.84,05/14/19 17:26,"45 Wilson St, Portland, ME 04101" +201097,Macbook Pro Laptop,1,1700,05/31/19 11:58,"605 Chestnut St, Austin, TX 73301" +201098,AA Batteries (4-pack),1,3.84,05/29/19 13:02,"898 Cherry St, New York City, NY 10001" +201099,Apple Airpods Headphones,1,150,05/26/19 02:28,"15 Lake St, Atlanta, GA 30301" +201100,20in Monitor,1,109.99,05/19/19 10:07,"379 Lakeview St, Atlanta, GA 30301" +201100,USB-C Charging Cable,1,11.95,05/19/19 10:07,"379 Lakeview St, Atlanta, GA 30301" +201101,AA Batteries (4-pack),2,3.84,05/15/19 20:48,"900 Madison St, San Francisco, CA 94016" +201102,27in FHD Monitor,1,149.99,05/26/19 11:59,"399 Church St, Seattle, WA 98101" +201103,27in FHD Monitor,1,149.99,05/23/19 13:44,"994 9th St, San Francisco, CA 94016" +201104,Lightning Charging Cable,1,14.95,05/17/19 09:44,"314 Madison St, Boston, MA 02215" +201105,AAA Batteries (4-pack),1,2.99,05/03/19 18:54,"957 Lincoln St, Austin, TX 73301" +201106,Lightning Charging Cable,1,14.95,05/08/19 03:09,"922 8th St, Los Angeles, CA 90001" +201107,AAA Batteries (4-pack),1,2.99,05/31/19 11:32,"609 Park St, Boston, MA 02215" +201108,USB-C Charging Cable,1,11.95,05/20/19 20:00,"206 Pine St, Los Angeles, CA 90001" +201109,Lightning Charging Cable,1,14.95,05/20/19 13:04,"965 Pine St, San Francisco, CA 94016" +201110,Google Phone,1,600,05/26/19 16:12,"846 Jefferson St, Boston, MA 02215" +201111,Lightning Charging Cable,1,14.95,05/19/19 09:11,"242 Willow St, San Francisco, CA 94016" +201112,USB-C Charging Cable,1,11.95,05/19/19 09:30,"756 Jefferson St, Boston, MA 02215" +201113,Bose SoundSport Headphones,1,99.99,05/08/19 22:28,"773 Hill St, Boston, MA 02215" +201114,USB-C Charging Cable,1,11.95,05/10/19 23:41,"562 Jefferson St, New York City, NY 10001" +201115,AA Batteries (4-pack),1,3.84,05/03/19 22:09,"816 Ridge St, Dallas, TX 75001" +201116,27in FHD Monitor,1,149.99,05/01/19 14:56,"694 Elm St, Atlanta, GA 30301" +201117,Wired Headphones,1,11.99,05/08/19 22:26,"543 North St, Austin, TX 73301" +201118,Wired Headphones,1,11.99,05/16/19 16:00,"293 6th St, Atlanta, GA 30301" +201119,Lightning Charging Cable,1,14.95,05/20/19 16:22,"474 13th St, Seattle, WA 98101" +201120,27in 4K Gaming Monitor,1,389.99,05/05/19 21:42,"953 Wilson St, Portland, OR 97035" +201121,AAA Batteries (4-pack),1,2.99,05/26/19 20:49,"163 7th St, San Francisco, CA 94016" +201122,34in Ultrawide Monitor,1,379.99,05/16/19 14:05,"827 Elm St, Seattle, WA 98101" +201123,Lightning Charging Cable,1,14.95,05/31/19 09:12,"859 6th St, Los Angeles, CA 90001" +201124,Apple Airpods Headphones,1,150,05/24/19 11:17,"401 Park St, Los Angeles, CA 90001" +201125,27in FHD Monitor,1,149.99,05/04/19 22:07,"748 Forest St, Atlanta, GA 30301" +201126,34in Ultrawide Monitor,1,379.99,05/04/19 10:46,"6 Spruce St, Dallas, TX 75001" +201126,Wired Headphones,1,11.99,05/04/19 10:46,"6 Spruce St, Dallas, TX 75001" +201127,AA Batteries (4-pack),1,3.84,05/30/19 01:21,"236 13th St, Los Angeles, CA 90001" +201128,27in FHD Monitor,1,149.99,05/20/19 06:52,"878 Hickory St, Dallas, TX 75001" +201128,AA Batteries (4-pack),1,3.84,05/20/19 06:52,"878 Hickory St, Dallas, TX 75001" +201129,iPhone,1,700,05/28/19 12:33,"768 South St, New York City, NY 10001" +201130,AAA Batteries (4-pack),1,2.99,05/12/19 21:33,"736 4th St, Seattle, WA 98101" +201131,AA Batteries (4-pack),1,3.84,05/02/19 20:16,"131 7th St, Los Angeles, CA 90001" +201132,Wired Headphones,1,11.99,05/19/19 16:24,"277 Hill St, Portland, ME 04101" +201133,Wired Headphones,1,11.99,05/20/19 18:21,"458 6th St, New York City, NY 10001" +201134,AAA Batteries (4-pack),4,2.99,05/15/19 21:12,"458 Maple St, Seattle, WA 98101" +201135,AA Batteries (4-pack),1,3.84,05/28/19 18:08,"748 11th St, Seattle, WA 98101" +201136,AA Batteries (4-pack),1,3.84,05/08/19 22:07,"160 Spruce St, Los Angeles, CA 90001" +201137,USB-C Charging Cable,1,11.95,05/09/19 09:42,"448 14th St, New York City, NY 10001" +201138,Apple Airpods Headphones,1,150,05/02/19 13:17,"272 Meadow St, Seattle, WA 98101" +201139,USB-C Charging Cable,1,11.95,05/04/19 11:15,"980 Center St, New York City, NY 10001" +201140,Bose SoundSport Headphones,1,99.99,05/27/19 12:09,"358 Maple St, Atlanta, GA 30301" +201141,27in FHD Monitor,1,149.99,05/16/19 21:15,"917 12th St, Los Angeles, CA 90001" +201142,Wired Headphones,1,11.99,05/01/19 15:52,"281 Willow St, Austin, TX 73301" +201143,ThinkPad Laptop,1,999.99,05/20/19 16:05,"241 West St, Los Angeles, CA 90001" +201144,Wired Headphones,1,11.99,05/27/19 23:08,"646 10th St, New York City, NY 10001" +201145,Flatscreen TV,1,300,05/17/19 16:48,"335 Johnson St, Los Angeles, CA 90001" +201146,Lightning Charging Cable,1,14.95,05/07/19 23:39,"771 7th St, San Francisco, CA 94016" +201147,AAA Batteries (4-pack),1,2.99,05/22/19 20:56,"350 5th St, New York City, NY 10001" +201148,Lightning Charging Cable,1,14.95,05/21/19 10:03,"233 2nd St, Seattle, WA 98101" +201149,AA Batteries (4-pack),1,3.84,05/26/19 15:38,"366 Center St, Dallas, TX 75001" +201150,USB-C Charging Cable,1,11.95,05/13/19 16:14,"620 Lake St, New York City, NY 10001" +201151,AA Batteries (4-pack),1,3.84,05/14/19 08:31,"402 Sunset St, New York City, NY 10001" +201152,Bose SoundSport Headphones,1,99.99,05/02/19 21:22,"236 Jackson St, Boston, MA 02215" +201153,Wired Headphones,1,11.99,05/21/19 14:52,"132 Hill St, Seattle, WA 98101" +201154,Bose SoundSport Headphones,1,99.99,05/16/19 16:28,"555 Washington St, Los Angeles, CA 90001" +201155,AAA Batteries (4-pack),2,2.99,05/22/19 16:30,"367 West St, Boston, MA 02215" +201156,AA Batteries (4-pack),1,3.84,05/25/19 12:47,"822 Walnut St, New York City, NY 10001" +201157,Apple Airpods Headphones,1,150,05/13/19 15:29,"718 Lake St, Dallas, TX 75001" +201158,34in Ultrawide Monitor,1,379.99,05/14/19 22:51,"609 Lake St, Dallas, TX 75001" +201159,Bose SoundSport Headphones,1,99.99,05/11/19 11:25,"455 Wilson St, Seattle, WA 98101" +201160,Lightning Charging Cable,1,14.95,05/09/19 16:32,"434 West St, Dallas, TX 75001" +201161,AA Batteries (4-pack),1,3.84,05/07/19 23:29,"836 North St, New York City, NY 10001" +201162,Vareebadd Phone,1,400,05/18/19 21:58,"161 Chestnut St, Portland, OR 97035" +201162,USB-C Charging Cable,1,11.95,05/18/19 21:58,"161 Chestnut St, Portland, OR 97035" +201163,AAA Batteries (4-pack),1,2.99,05/02/19 15:55,"346 River St, Los Angeles, CA 90001" +201164,27in 4K Gaming Monitor,1,389.99,05/14/19 22:15,"99 Hickory St, San Francisco, CA 94016" +201165,Wired Headphones,1,11.99,05/25/19 13:12,"630 Washington St, Seattle, WA 98101" +201166,Lightning Charging Cable,1,14.95,05/28/19 21:04,"662 Dogwood St, Atlanta, GA 30301" +201167,Wired Headphones,1,11.99,05/01/19 16:45,"461 2nd St, Boston, MA 02215" +201168,Apple Airpods Headphones,1,150,05/31/19 20:12,"319 Spruce St, Los Angeles, CA 90001" +201169,Bose SoundSport Headphones,1,99.99,05/12/19 14:37,"798 Chestnut St, Portland, ME 04101" +201170,AAA Batteries (4-pack),2,2.99,05/19/19 19:51,"854 14th St, San Francisco, CA 94016" +201171,Macbook Pro Laptop,1,1700,05/02/19 08:29,"996 2nd St, New York City, NY 10001" +201172,ThinkPad Laptop,1,999.99,05/15/19 18:56,"409 Dogwood St, San Francisco, CA 94016" +201173,ThinkPad Laptop,1,999.99,05/10/19 20:37,"971 Sunset St, San Francisco, CA 94016" +201174,Vareebadd Phone,1,400,05/15/19 15:39,"835 1st St, San Francisco, CA 94016" +201175,Wired Headphones,1,11.99,05/16/19 18:59,"251 Willow St, San Francisco, CA 94016" +201176,ThinkPad Laptop,1,999.99,05/31/19 11:36,"230 Lincoln St, Los Angeles, CA 90001" +201177,20in Monitor,1,109.99,05/10/19 17:25,"916 Sunset St, Atlanta, GA 30301" +201178,AAA Batteries (4-pack),3,2.99,05/07/19 13:00,"555 Meadow St, New York City, NY 10001" +201179,AAA Batteries (4-pack),1,2.99,05/14/19 16:05,"346 Hill St, New York City, NY 10001" +201180,USB-C Charging Cable,1,11.95,05/10/19 01:10,"889 11th St, Portland, OR 97035" +201180,AAA Batteries (4-pack),1,2.99,05/10/19 01:10,"889 11th St, Portland, OR 97035" +201181,AA Batteries (4-pack),1,3.84,05/18/19 21:15,"887 Johnson St, Boston, MA 02215" +201182,AAA Batteries (4-pack),1,2.99,05/06/19 12:03,"367 Highland St, Portland, OR 97035" +201183,AAA Batteries (4-pack),1,2.99,05/11/19 16:51,"107 Park St, New York City, NY 10001" +201184,Apple Airpods Headphones,1,150,05/02/19 13:21,"594 9th St, Boston, MA 02215" +201185,27in FHD Monitor,1,149.99,05/31/19 14:53,"721 Sunset St, San Francisco, CA 94016" +201186,Flatscreen TV,1,300,05/19/19 07:12,"841 4th St, Boston, MA 02215" +201187,Lightning Charging Cable,1,14.95,05/25/19 06:02,"488 River St, Dallas, TX 75001" +201188,USB-C Charging Cable,1,11.95,05/19/19 13:37,"343 Center St, New York City, NY 10001" +201189,AAA Batteries (4-pack),1,2.99,05/05/19 20:24,"377 10th St, Portland, OR 97035" +201190,AA Batteries (4-pack),2,3.84,05/18/19 10:23,"56 Meadow St, New York City, NY 10001" +201191,Macbook Pro Laptop,1,1700,05/25/19 21:16,"925 Adams St, New York City, NY 10001" +201192,Apple Airpods Headphones,1,150,05/27/19 11:46,"765 South St, San Francisco, CA 94016" +201192,Lightning Charging Cable,1,14.95,05/27/19 11:46,"765 South St, San Francisco, CA 94016" +201193,Bose SoundSport Headphones,1,99.99,05/20/19 20:35,"333 Walnut St, Atlanta, GA 30301" +201194,AA Batteries (4-pack),1,3.84,05/15/19 20:23,"902 Walnut St, San Francisco, CA 94016" +201195,Wired Headphones,2,11.99,05/13/19 19:29,"381 14th St, Dallas, TX 75001" +201196,Macbook Pro Laptop,1,1700,05/03/19 19:13,"988 14th St, San Francisco, CA 94016" +201197,27in 4K Gaming Monitor,1,389.99,05/07/19 21:14,"738 Jefferson St, New York City, NY 10001" +201198,Vareebadd Phone,1,400,05/13/19 21:51,"305 Church St, San Francisco, CA 94016" +201199,Wired Headphones,1,11.99,05/27/19 16:25,"245 Adams St, Austin, TX 73301" +201200,20in Monitor,1,109.99,05/12/19 19:39,"396 12th St, San Francisco, CA 94016" +201201,Wired Headphones,1,11.99,05/28/19 19:26,"421 Spruce St, Dallas, TX 75001" +201202,20in Monitor,1,109.99,05/27/19 19:26,"12 Spruce St, Seattle, WA 98101" +201203,USB-C Charging Cable,1,11.95,05/09/19 12:09,"396 Hill St, San Francisco, CA 94016" +201204,AAA Batteries (4-pack),2,2.99,05/20/19 18:39,"671 Washington St, Portland, ME 04101" +201205,Lightning Charging Cable,1,14.95,05/26/19 19:17,"514 Lake St, San Francisco, CA 94016" +201206,Bose SoundSport Headphones,1,99.99,05/27/19 12:23,"134 Pine St, Seattle, WA 98101" +201207,USB-C Charging Cable,1,11.95,05/31/19 14:37,"907 Highland St, Portland, OR 97035" +201207,Flatscreen TV,1,300,05/31/19 14:37,"907 Highland St, Portland, OR 97035" +201208,AA Batteries (4-pack),3,3.84,05/25/19 15:15,"39 Meadow St, San Francisco, CA 94016" +201209,Lightning Charging Cable,1,14.95,05/13/19 10:07,"354 Sunset St, Dallas, TX 75001" +201210,27in FHD Monitor,1,149.99,05/11/19 22:16,"991 1st St, San Francisco, CA 94016" +201211,27in FHD Monitor,1,149.99,05/27/19 21:27,"203 Lake St, Los Angeles, CA 90001" +201212,Google Phone,1,600,05/27/19 13:53,"768 Church St, Boston, MA 02215" +201213,20in Monitor,1,109.99,05/01/19 15:41,"611 Elm St, Boston, MA 02215" +201214,AAA Batteries (4-pack),1,2.99,05/27/19 15:01,"851 Meadow St, Atlanta, GA 30301" +201215,Lightning Charging Cable,1,14.95,05/06/19 16:16,"471 West St, New York City, NY 10001" +201216,USB-C Charging Cable,1,11.95,05/15/19 20:40,"564 Cherry St, New York City, NY 10001" +201217,27in FHD Monitor,1,149.99,05/04/19 17:43,"980 Lakeview St, New York City, NY 10001" +201218,Vareebadd Phone,1,400,05/15/19 16:53,"488 6th St, Portland, ME 04101" +201219,Google Phone,1,600,05/12/19 13:43,"315 River St, Dallas, TX 75001" +201220,USB-C Charging Cable,1,11.95,05/10/19 15:59,"363 6th St, Austin, TX 73301" +201221,Apple Airpods Headphones,1,150,05/22/19 22:24,"557 Washington St, Atlanta, GA 30301" +201222,Vareebadd Phone,1,400,05/17/19 12:40,"605 Jefferson St, Atlanta, GA 30301" +201223,ThinkPad Laptop,1,999.99,05/07/19 15:12,"824 9th St, Los Angeles, CA 90001" +201224,Wired Headphones,1,11.99,05/21/19 09:47,"767 Chestnut St, Los Angeles, CA 90001" +201225,20in Monitor,1,109.99,05/20/19 15:04,"43 Cherry St, New York City, NY 10001" +201226,AA Batteries (4-pack),1,3.84,05/14/19 21:35,"280 Johnson St, Portland, OR 97035" +201226,27in FHD Monitor,1,149.99,05/14/19 21:35,"280 Johnson St, Portland, OR 97035" +201227,AA Batteries (4-pack),1,3.84,05/11/19 07:05,"186 Walnut St, San Francisco, CA 94016" +201228,27in 4K Gaming Monitor,1,389.99,05/28/19 22:41,"784 Highland St, Austin, TX 73301" +201229,Lightning Charging Cable,2,14.95,05/25/19 12:07,"902 Walnut St, Dallas, TX 75001" +201230,27in FHD Monitor,1,149.99,05/26/19 20:41,"994 9th St, Los Angeles, CA 90001" +201231,Lightning Charging Cable,2,14.95,05/30/19 09:26,"384 Highland St, Los Angeles, CA 90001" +201232,USB-C Charging Cable,1,11.95,05/27/19 14:39,"932 Lake St, Seattle, WA 98101" +201233,Lightning Charging Cable,1,14.95,05/22/19 11:54,"459 Cedar St, San Francisco, CA 94016" +201234,Bose SoundSport Headphones,1,99.99,05/31/19 09:20,"278 Hill St, San Francisco, CA 94016" +201235,AA Batteries (4-pack),2,3.84,05/20/19 08:23,"568 Walnut St, Atlanta, GA 30301" +201236,Bose SoundSport Headphones,1,99.99,05/06/19 00:24,"801 Madison St, Portland, OR 97035" +201237,Bose SoundSport Headphones,1,99.99,05/17/19 21:26,"205 Johnson St, San Francisco, CA 94016" +201238,Flatscreen TV,1,300,05/21/19 15:48,"697 Cherry St, San Francisco, CA 94016" +201239,USB-C Charging Cable,1,11.95,05/05/19 09:48,"80 6th St, Los Angeles, CA 90001" +201240,27in 4K Gaming Monitor,1,389.99,05/14/19 12:49,"136 Wilson St, Boston, MA 02215" +201241,Google Phone,1,600,05/25/19 18:20,"148 North St, Los Angeles, CA 90001" +201242,Wired Headphones,1,11.99,05/17/19 20:56,"97 Cherry St, Dallas, TX 75001" +201243,20in Monitor,1,109.99,05/20/19 08:54,"966 Jackson St, San Francisco, CA 94016" +201244,Wired Headphones,2,11.99,05/27/19 20:59,"246 13th St, Los Angeles, CA 90001" +201245,27in 4K Gaming Monitor,1,389.99,05/21/19 22:32,"845 Walnut St, Los Angeles, CA 90001" +201246,27in 4K Gaming Monitor,1,389.99,05/11/19 12:59,"275 Lakeview St, San Francisco, CA 94016" +201247,AA Batteries (4-pack),1,3.84,05/09/19 19:15,"555 Wilson St, San Francisco, CA 94016" +201248,Wired Headphones,1,11.99,05/15/19 17:53,"654 10th St, Los Angeles, CA 90001" +201249,Wired Headphones,1,11.99,05/19/19 20:07,"205 Maple St, San Francisco, CA 94016" +201250,USB-C Charging Cable,1,11.95,05/26/19 14:24,"588 Cedar St, Dallas, TX 75001" +201251,34in Ultrawide Monitor,1,379.99,05/23/19 16:26,"930 Main St, San Francisco, CA 94016" +201252,Bose SoundSport Headphones,1,99.99,05/09/19 10:55,"138 North St, Austin, TX 73301" +201253,20in Monitor,1,109.99,05/17/19 13:42,"380 9th St, Los Angeles, CA 90001" +201254,USB-C Charging Cable,1,11.95,05/15/19 20:22,"512 Willow St, Dallas, TX 75001" +201255,Apple Airpods Headphones,1,150,05/14/19 18:44,"992 14th St, Los Angeles, CA 90001" +201256,Apple Airpods Headphones,1,150,05/25/19 15:41,"38 11th St, Portland, OR 97035" +201257,AA Batteries (4-pack),1,3.84,05/19/19 22:30,"541 Meadow St, Los Angeles, CA 90001" +201258,USB-C Charging Cable,1,11.95,05/11/19 10:34,"968 Meadow St, Dallas, TX 75001" +201259,USB-C Charging Cable,1,11.95,05/08/19 23:14,"628 2nd St, Atlanta, GA 30301" +201260,USB-C Charging Cable,1,11.95,05/30/19 18:57,"432 14th St, New York City, NY 10001" +201261,Lightning Charging Cable,1,14.95,05/16/19 08:42,"19 Spruce St, Austin, TX 73301" +201262,AA Batteries (4-pack),1,3.84,05/25/19 13:08,"689 Center St, San Francisco, CA 94016" +201263,Bose SoundSport Headphones,1,99.99,05/27/19 18:34,"715 Jackson St, Dallas, TX 75001" +201264,iPhone,1,700,05/21/19 19:11,"840 Main St, San Francisco, CA 94016" +201264,Lightning Charging Cable,1,14.95,05/21/19 19:11,"840 Main St, San Francisco, CA 94016" +201265,Macbook Pro Laptop,1,1700,05/31/19 20:27,"460 River St, Dallas, TX 75001" +201266,LG Washing Machine,1,600.0,05/17/19 18:30,"47 Forest St, San Francisco, CA 94016" +201267,27in FHD Monitor,1,149.99,05/13/19 17:30,"23 Highland St, New York City, NY 10001" +201268,Wired Headphones,1,11.99,05/04/19 09:41,"971 Forest St, San Francisco, CA 94016" +201269,Wired Headphones,1,11.99,05/12/19 11:59,"786 Sunset St, New York City, NY 10001" +201270,USB-C Charging Cable,1,11.95,05/06/19 12:56,"462 Park St, Los Angeles, CA 90001" +201271,Bose SoundSport Headphones,1,99.99,05/04/19 19:03,"401 2nd St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +201272,Macbook Pro Laptop,1,1700,05/21/19 17:03,"169 Cherry St, Atlanta, GA 30301" +201273,AAA Batteries (4-pack),1,2.99,05/21/19 14:04,"947 West St, Atlanta, GA 30301" +201274,AA Batteries (4-pack),1,3.84,05/26/19 08:33,"688 Madison St, Dallas, TX 75001" +201275,AA Batteries (4-pack),1,3.84,05/18/19 13:25,"673 14th St, Atlanta, GA 30301" +201276,Google Phone,1,600,05/02/19 18:44,"513 Pine St, Boston, MA 02215" +201276,USB-C Charging Cable,1,11.95,05/02/19 18:44,"513 Pine St, Boston, MA 02215" +201277,Apple Airpods Headphones,1,150,05/27/19 14:54,"581 Main St, Seattle, WA 98101" +201278,Lightning Charging Cable,2,14.95,05/20/19 13:04,"435 South St, Dallas, TX 75001" +201279,27in FHD Monitor,1,149.99,05/26/19 12:09,"12 14th St, San Francisco, CA 94016" +201280,Lightning Charging Cable,1,14.95,05/05/19 15:30,"128 12th St, Los Angeles, CA 90001" +201281,Lightning Charging Cable,1,14.95,05/05/19 13:08,"59 Church St, Seattle, WA 98101" +201282,Apple Airpods Headphones,1,150,05/18/19 22:32,"352 Wilson St, San Francisco, CA 94016" +201283,27in FHD Monitor,1,149.99,05/06/19 14:45,"508 11th St, San Francisco, CA 94016" +201284,USB-C Charging Cable,1,11.95,05/03/19 09:51,"916 2nd St, Boston, MA 02215" +201285,Apple Airpods Headphones,1,150,05/04/19 17:27,"771 10th St, New York City, NY 10001" +201286,27in 4K Gaming Monitor,1,389.99,05/07/19 20:13,"813 6th St, Seattle, WA 98101" +201287,AAA Batteries (4-pack),1,2.99,05/03/19 20:43,"295 Park St, Los Angeles, CA 90001" +201288,Wired Headphones,2,11.99,05/10/19 14:37,"825 Maple St, Boston, MA 02215" +201289,20in Monitor,1,109.99,05/27/19 15:59,"828 Hill St, Seattle, WA 98101" +201290,27in FHD Monitor,1,149.99,05/08/19 19:31,"923 North St, San Francisco, CA 94016" +201291,Apple Airpods Headphones,1,150,05/14/19 11:18,"605 10th St, Los Angeles, CA 90001" +201292,Bose SoundSport Headphones,1,99.99,05/05/19 08:56,"921 5th St, Seattle, WA 98101" +201293,USB-C Charging Cable,1,11.95,05/11/19 21:15,"373 12th St, Seattle, WA 98101" +201294,AAA Batteries (4-pack),2,2.99,05/01/19 13:30,"493 8th St, San Francisco, CA 94016" +201295,AAA Batteries (4-pack),2,2.99,05/24/19 17:18,"525 Willow St, Dallas, TX 75001" +201296,USB-C Charging Cable,1,11.95,05/31/19 20:04,"63 Lakeview St, Dallas, TX 75001" +201297,AA Batteries (4-pack),1,3.84,05/22/19 18:41,"962 Pine St, Atlanta, GA 30301" +201298,Lightning Charging Cable,1,14.95,05/14/19 07:04,"584 Dogwood St, San Francisco, CA 94016" +201299,Bose SoundSport Headphones,1,99.99,05/27/19 20:40,"737 Park St, Los Angeles, CA 90001" +201300,Lightning Charging Cable,1,14.95,05/24/19 00:07,"406 Meadow St, Seattle, WA 98101" +201301,AA Batteries (4-pack),1,3.84,05/05/19 12:05,"468 7th St, Los Angeles, CA 90001" +201302,LG Washing Machine,1,600.0,05/20/19 09:50,"766 Jackson St, San Francisco, CA 94016" +201303,USB-C Charging Cable,1,11.95,05/02/19 15:35,"394 4th St, Los Angeles, CA 90001" +201304,Macbook Pro Laptop,1,1700,05/10/19 16:21,"288 Hill St, New York City, NY 10001" +201305,Lightning Charging Cable,1,14.95,05/25/19 16:37,"545 Sunset St, Los Angeles, CA 90001" +201306,Apple Airpods Headphones,1,150,05/03/19 08:47,"599 7th St, Dallas, TX 75001" +201307,Lightning Charging Cable,1,14.95,05/21/19 14:40,"183 6th St, San Francisco, CA 94016" +201308,USB-C Charging Cable,1,11.95,05/18/19 15:05,"988 9th St, Boston, MA 02215" +201309,Lightning Charging Cable,1,14.95,05/31/19 12:16,"274 7th St, Boston, MA 02215" +201310,iPhone,1,700,05/28/19 15:09,"883 Lakeview St, San Francisco, CA 94016" +201311,USB-C Charging Cable,1,11.95,05/20/19 11:41,"196 1st St, San Francisco, CA 94016" +201312,AAA Batteries (4-pack),1,2.99,05/23/19 22:55,"733 6th St, San Francisco, CA 94016" +201313,Wired Headphones,1,11.99,05/05/19 17:55,"975 2nd St, Portland, OR 97035" +201314,AA Batteries (4-pack),1,3.84,05/03/19 16:03,"630 Park St, San Francisco, CA 94016" +201315,Bose SoundSport Headphones,1,99.99,05/01/19 17:56,"887 Pine St, Portland, OR 97035" +201316,Google Phone,1,600,05/30/19 21:11,"771 14th St, Austin, TX 73301" +201316,USB-C Charging Cable,1,11.95,05/30/19 21:11,"771 14th St, Austin, TX 73301" +201317,Lightning Charging Cable,1,14.95,05/06/19 12:48,"814 Forest St, San Francisco, CA 94016" +201318,Wired Headphones,2,11.99,05/09/19 19:07,"87 Walnut St, Seattle, WA 98101" +201319,AAA Batteries (4-pack),1,2.99,05/05/19 10:20,"646 Madison St, Boston, MA 02215" +201320,AAA Batteries (4-pack),1,2.99,05/08/19 17:20,"505 Lake St, Atlanta, GA 30301" +201321,Google Phone,1,600,05/01/19 14:15,"289 Main St, Seattle, WA 98101" +201321,USB-C Charging Cable,1,11.95,05/01/19 14:15,"289 Main St, Seattle, WA 98101" +201322,Apple Airpods Headphones,1,150,05/28/19 06:41,"252 Hill St, New York City, NY 10001" +201323,Wired Headphones,1,11.99,05/06/19 00:06,"460 Hill St, New York City, NY 10001" +201324,iPhone,1,700,05/22/19 16:40,"830 Adams St, Dallas, TX 75001" +201325,Google Phone,1,600,05/09/19 17:57,"245 7th St, San Francisco, CA 94016" +201326,Flatscreen TV,1,300,05/27/19 09:39,"679 2nd St, Los Angeles, CA 90001" +201327,Apple Airpods Headphones,1,150,05/31/19 08:39,"885 Jackson St, San Francisco, CA 94016" +201328,iPhone,1,700,05/05/19 04:33,"73 6th St, Boston, MA 02215" +201328,Lightning Charging Cable,1,14.95,05/05/19 04:33,"73 6th St, Boston, MA 02215" +201329,27in FHD Monitor,1,149.99,05/17/19 23:13,"741 11th St, Los Angeles, CA 90001" +201330,USB-C Charging Cable,1,11.95,05/23/19 07:54,"360 8th St, New York City, NY 10001" +201331,AAA Batteries (4-pack),2,2.99,05/03/19 14:27,"522 1st St, Los Angeles, CA 90001" +201332,Lightning Charging Cable,1,14.95,05/02/19 20:28,"769 Hickory St, Los Angeles, CA 90001" +201333,Lightning Charging Cable,2,14.95,05/14/19 09:46,"409 Elm St, Atlanta, GA 30301" +201334,Google Phone,1,600,05/22/19 02:22,"307 Wilson St, Portland, OR 97035" +201335,Wired Headphones,1,11.99,05/06/19 12:02,"140 Cedar St, Atlanta, GA 30301" +201336,AA Batteries (4-pack),1,3.84,05/13/19 08:29,"300 Wilson St, San Francisco, CA 94016" +201336,USB-C Charging Cable,1,11.95,05/13/19 08:29,"300 Wilson St, San Francisco, CA 94016" +201337,Wired Headphones,1,11.99,05/30/19 09:50,"768 Jackson St, Atlanta, GA 30301" +201338,Wired Headphones,1,11.99,05/04/19 17:42,"475 Lincoln St, Atlanta, GA 30301" +201339,AAA Batteries (4-pack),1,2.99,05/21/19 21:05,"315 Forest St, Atlanta, GA 30301" +201340,Flatscreen TV,1,300,05/15/19 08:42,"135 Lincoln St, San Francisco, CA 94016" +201341,Bose SoundSport Headphones,1,99.99,05/03/19 19:51,"374 7th St, Los Angeles, CA 90001" +201342,Apple Airpods Headphones,1,150,05/22/19 13:54,"489 Center St, Portland, ME 04101" +201343,AAA Batteries (4-pack),1,2.99,05/12/19 10:01,"194 2nd St, Los Angeles, CA 90001" +201344,AAA Batteries (4-pack),1,2.99,05/15/19 22:31,"646 Walnut St, Los Angeles, CA 90001" +201345,Apple Airpods Headphones,1,150,05/26/19 17:35,"706 Adams St, New York City, NY 10001" +201346,Bose SoundSport Headphones,1,99.99,05/02/19 08:30,"313 North St, Los Angeles, CA 90001" +201347,AAA Batteries (4-pack),1,2.99,05/25/19 09:18,"664 Washington St, Austin, TX 73301" +201347,AAA Batteries (4-pack),1,2.99,05/25/19 09:18,"664 Washington St, Austin, TX 73301" +201348,34in Ultrawide Monitor,1,379.99,05/28/19 10:25,"769 8th St, Atlanta, GA 30301" +201349,Google Phone,1,600,05/10/19 16:00,"32 5th St, Atlanta, GA 30301" +201350,Lightning Charging Cable,1,14.95,05/18/19 23:01,"84 South St, Seattle, WA 98101" +201351,AA Batteries (4-pack),1,3.84,05/31/19 07:49,"440 2nd St, Boston, MA 02215" +201352,USB-C Charging Cable,2,11.95,05/29/19 09:39,"289 13th St, San Francisco, CA 94016" +201353,AA Batteries (4-pack),1,3.84,05/30/19 03:12,"711 8th St, Los Angeles, CA 90001" +201354,Bose SoundSport Headphones,1,99.99,05/18/19 12:58,"708 2nd St, Dallas, TX 75001" +201355,Bose SoundSport Headphones,1,99.99,05/13/19 22:29,"838 Church St, New York City, NY 10001" +201356,27in 4K Gaming Monitor,1,389.99,05/21/19 20:40,"997 1st St, New York City, NY 10001" +201357,Wired Headphones,1,11.99,05/12/19 10:04,"724 Center St, San Francisco, CA 94016" +201358,AA Batteries (4-pack),1,3.84,05/18/19 10:30,"42 Pine St, Portland, OR 97035" +201359,Google Phone,1,600,05/02/19 18:23,"209 Lincoln St, New York City, NY 10001" +201359,AA Batteries (4-pack),1,3.84,05/02/19 18:23,"209 Lincoln St, New York City, NY 10001" +201360,Flatscreen TV,1,300,05/17/19 03:31,"780 6th St, Atlanta, GA 30301" +201361,AAA Batteries (4-pack),2,2.99,05/22/19 09:37,"608 Chestnut St, Portland, ME 04101" +201362,Apple Airpods Headphones,1,150,05/23/19 16:14,"314 Chestnut St, Los Angeles, CA 90001" +201363,27in 4K Gaming Monitor,1,389.99,05/22/19 11:09,"195 7th St, Dallas, TX 75001" +201364,AAA Batteries (4-pack),1,2.99,05/13/19 15:43,"306 5th St, San Francisco, CA 94016" +201365,27in FHD Monitor,1,149.99,05/26/19 11:37,"492 Hill St, Boston, MA 02215" +201366,20in Monitor,1,109.99,05/06/19 13:42,"895 North St, New York City, NY 10001" +201367,AA Batteries (4-pack),1,3.84,05/02/19 21:03,"413 Hill St, New York City, NY 10001" +201368,USB-C Charging Cable,1,11.95,05/26/19 10:34,"160 Meadow St, San Francisco, CA 94016" +201369,20in Monitor,1,109.99,05/20/19 17:52,"745 Main St, San Francisco, CA 94016" +201370,Lightning Charging Cable,1,14.95,05/18/19 11:30,"371 Willow St, Los Angeles, CA 90001" +201371,AA Batteries (4-pack),2,3.84,05/20/19 14:04,"707 2nd St, New York City, NY 10001" +201372,Apple Airpods Headphones,1,150,05/22/19 15:27,"419 11th St, Portland, OR 97035" +201373,USB-C Charging Cable,1,11.95,05/18/19 00:51,"609 7th St, New York City, NY 10001" +201374,iPhone,1,700,05/26/19 20:17,"498 Ridge St, San Francisco, CA 94016" +201375,27in 4K Gaming Monitor,1,389.99,05/06/19 11:30,"99 Jefferson St, Portland, OR 97035" +201376,ThinkPad Laptop,1,999.99,05/09/19 12:53,"192 Jefferson St, San Francisco, CA 94016" +201377,Apple Airpods Headphones,1,150,05/14/19 13:59,"764 Lake St, Boston, MA 02215" +201378,27in FHD Monitor,1,149.99,05/29/19 14:17,"626 Elm St, Boston, MA 02215" +201379,Bose SoundSport Headphones,1,99.99,05/09/19 18:06,"924 Lakeview St, San Francisco, CA 94016" +201380,Flatscreen TV,1,300,05/07/19 11:45,"978 13th St, Portland, OR 97035" +201381,Wired Headphones,1,11.99,05/05/19 12:37,"472 Highland St, San Francisco, CA 94016" +201382,Lightning Charging Cable,1,14.95,05/02/19 19:47,"338 13th St, San Francisco, CA 94016" +201383,27in FHD Monitor,1,149.99,05/30/19 16:43,"142 Main St, Seattle, WA 98101" +201384,Wired Headphones,1,11.99,05/31/19 16:48,"819 West St, Dallas, TX 75001" +201385,Lightning Charging Cable,1,14.95,05/31/19 20:47,"526 Meadow St, New York City, NY 10001" +201386,Wired Headphones,1,11.99,05/03/19 00:48,"494 Wilson St, Los Angeles, CA 90001" +201387,Wired Headphones,1,11.99,05/03/19 09:54,"174 Willow St, Austin, TX 73301" +201388,AA Batteries (4-pack),1,3.84,05/27/19 08:19,"491 Hill St, San Francisco, CA 94016" +201389,Macbook Pro Laptop,1,1700,05/20/19 13:48,"431 Hickory St, Portland, ME 04101" +201390,AA Batteries (4-pack),1,3.84,05/19/19 19:39,"939 Meadow St, Los Angeles, CA 90001" +201391,Bose SoundSport Headphones,1,99.99,05/04/19 21:25,"185 Wilson St, Boston, MA 02215" +201392,Wired Headphones,1,11.99,05/24/19 19:01,"826 Adams St, Los Angeles, CA 90001" +201393,iPhone,1,700,05/26/19 17:34,"784 Center St, Boston, MA 02215" +201394,Wired Headphones,1,11.99,05/09/19 20:29,"380 Willow St, Austin, TX 73301" +201395,USB-C Charging Cable,2,11.95,05/24/19 09:50,"584 Church St, Los Angeles, CA 90001" +201396,Bose SoundSport Headphones,1,99.99,05/06/19 08:23,"834 Elm St, New York City, NY 10001" +201397,34in Ultrawide Monitor,1,379.99,05/31/19 21:52,"905 Highland St, New York City, NY 10001" +201398,Wired Headphones,1,11.99,05/29/19 13:00,"208 11th St, San Francisco, CA 94016" +201399,Lightning Charging Cable,1,14.95,05/20/19 09:31,"807 Dogwood St, San Francisco, CA 94016" +201400,Wired Headphones,1,11.99,05/01/19 18:38,"296 Forest St, Dallas, TX 75001" +201401,Bose SoundSport Headphones,1,99.99,05/26/19 14:41,"580 12th St, New York City, NY 10001" +201402,AAA Batteries (4-pack),1,2.99,05/13/19 09:49,"718 Madison St, Portland, OR 97035" +201403,Lightning Charging Cable,1,14.95,05/02/19 16:34,"454 Chestnut St, New York City, NY 10001" +201404,Bose SoundSport Headphones,1,99.99,05/19/19 13:09,"597 2nd St, Seattle, WA 98101" +201405,iPhone,1,700,05/08/19 17:05,"29 Hickory St, San Francisco, CA 94016" +201406,Bose SoundSport Headphones,1,99.99,05/29/19 01:06,"170 Johnson St, New York City, NY 10001" +201407,27in 4K Gaming Monitor,1,389.99,05/11/19 05:11,"324 Main St, San Francisco, CA 94016" +201408,Apple Airpods Headphones,1,150,05/17/19 16:37,"188 Lake St, San Francisco, CA 94016" +201409,USB-C Charging Cable,1,11.95,05/22/19 21:48,"377 Maple St, Austin, TX 73301" +201410,ThinkPad Laptop,1,999.99,05/20/19 23:54,"648 14th St, Los Angeles, CA 90001" +201411,27in FHD Monitor,1,149.99,05/29/19 15:52,"694 1st St, Atlanta, GA 30301" +201412,27in 4K Gaming Monitor,1,389.99,05/14/19 17:42,"677 Cedar St, San Francisco, CA 94016" +201413,USB-C Charging Cable,2,11.95,05/03/19 09:50,"139 Willow St, Boston, MA 02215" +201414,Lightning Charging Cable,1,14.95,05/23/19 21:19,"248 12th St, San Francisco, CA 94016" +201415,Flatscreen TV,1,300,05/07/19 19:03,"394 10th St, New York City, NY 10001" +201416,Wired Headphones,1,11.99,05/05/19 14:03,"317 Wilson St, Seattle, WA 98101" +201417,AA Batteries (4-pack),1,3.84,05/07/19 20:53,"36 Center St, San Francisco, CA 94016" +201418,Apple Airpods Headphones,1,150,05/22/19 18:55,"100 Cedar St, Atlanta, GA 30301" +201419,Apple Airpods Headphones,1,150,05/03/19 16:35,"821 Lake St, Boston, MA 02215" +201420,AA Batteries (4-pack),1,3.84,05/31/19 00:06,"64 Wilson St, Dallas, TX 75001" +201421,27in 4K Gaming Monitor,1,389.99,05/19/19 10:46,"219 South St, Dallas, TX 75001" +201422,AA Batteries (4-pack),2,3.84,05/20/19 11:13,"750 7th St, Los Angeles, CA 90001" +201423,Flatscreen TV,1,300,05/12/19 09:19,"85 6th St, Dallas, TX 75001" +201424,Bose SoundSport Headphones,1,99.99,05/07/19 13:46,"922 Elm St, Dallas, TX 75001" +201425,Bose SoundSport Headphones,1,99.99,05/19/19 12:56,"949 Elm St, San Francisco, CA 94016" +201426,Google Phone,1,600,05/10/19 01:10,"455 Jackson St, Dallas, TX 75001" +201426,USB-C Charging Cable,1,11.95,05/10/19 01:10,"455 Jackson St, Dallas, TX 75001" +201427,AA Batteries (4-pack),2,3.84,05/10/19 14:57,"106 Lake St, New York City, NY 10001" +201428,AA Batteries (4-pack),2,3.84,05/01/19 09:47,"755 Church St, Portland, OR 97035" +201429,20in Monitor,1,109.99,05/18/19 22:44,"493 13th St, Seattle, WA 98101" +201430,Wired Headphones,1,11.99,05/25/19 11:56,"504 14th St, New York City, NY 10001" +201431,Bose SoundSport Headphones,1,99.99,05/30/19 09:54,"756 Johnson St, San Francisco, CA 94016" +201432,Wired Headphones,1,11.99,05/07/19 10:47,"482 Jefferson St, Austin, TX 73301" +201433,AAA Batteries (4-pack),1,2.99,05/01/19 11:52,"311 West St, Dallas, TX 75001" +201434,AAA Batteries (4-pack),2,2.99,05/27/19 11:09,"342 1st St, Seattle, WA 98101" +201435,Apple Airpods Headphones,1,150,05/29/19 18:33,"182 Spruce St, New York City, NY 10001" +201436,USB-C Charging Cable,1,11.95,05/24/19 00:13,"614 Adams St, Austin, TX 73301" +201437,Macbook Pro Laptop,1,1700,05/12/19 18:10,"662 Maple St, Seattle, WA 98101" +201438,Wired Headphones,1,11.99,05/26/19 08:30,"809 5th St, San Francisco, CA 94016" +201439,Vareebadd Phone,1,400,05/26/19 11:12,"862 Elm St, San Francisco, CA 94016" +201439,USB-C Charging Cable,1,11.95,05/26/19 11:12,"862 Elm St, San Francisco, CA 94016" +201440,ThinkPad Laptop,1,999.99,05/14/19 00:16,"760 7th St, Seattle, WA 98101" +201441,Lightning Charging Cable,1,14.95,05/01/19 10:18,"791 Main St, New York City, NY 10001" +201442,Google Phone,1,600,05/05/19 20:17,"15 6th St, New York City, NY 10001" +201443,Bose SoundSport Headphones,1,99.99,05/28/19 22:27,"466 Washington St, Boston, MA 02215" +201444,USB-C Charging Cable,1,11.95,05/22/19 23:01,"130 Ridge St, Austin, TX 73301" +201445,Flatscreen TV,1,300,05/22/19 17:28,"532 Ridge St, San Francisco, CA 94016" +201446,AA Batteries (4-pack),1,3.84,05/19/19 00:47,"135 North St, Atlanta, GA 30301" +201447,Apple Airpods Headphones,1,150,05/09/19 20:11,"587 Jefferson St, Boston, MA 02215" +201448,Wired Headphones,1,11.99,05/11/19 16:39,"971 5th St, Los Angeles, CA 90001" +201449,AAA Batteries (4-pack),5,2.99,05/15/19 12:44,"162 8th St, Portland, OR 97035" +201450,Bose SoundSport Headphones,1,99.99,05/12/19 10:51,"926 Center St, Boston, MA 02215" +201451,AA Batteries (4-pack),2,3.84,05/29/19 13:59,"919 10th St, Dallas, TX 75001" +201452,USB-C Charging Cable,1,11.95,05/22/19 21:44,"575 South St, New York City, NY 10001" +201453,iPhone,1,700,05/23/19 22:03,"366 Center St, Austin, TX 73301" +201453,27in FHD Monitor,1,149.99,05/23/19 22:03,"366 Center St, Austin, TX 73301" +201454,AAA Batteries (4-pack),2,2.99,05/10/19 17:24,"497 Madison St, San Francisco, CA 94016" +201455,USB-C Charging Cable,1,11.95,05/14/19 12:43,"689 River St, Boston, MA 02215" +201456,Macbook Pro Laptop,1,1700,05/01/19 23:35,"773 Center St, Dallas, TX 75001" +201457,Flatscreen TV,1,300,05/06/19 07:38,"230 Hickory St, New York City, NY 10001" +201458,USB-C Charging Cable,1,11.95,05/30/19 14:44,"956 Jefferson St, Atlanta, GA 30301" +201459,Google Phone,1,600,05/02/19 23:25,"51 Madison St, Los Angeles, CA 90001" +201460,AAA Batteries (4-pack),1,2.99,05/01/19 10:32,"455 Elm St, Los Angeles, CA 90001" +201461,27in 4K Gaming Monitor,1,389.99,05/04/19 10:48,"803 Center St, San Francisco, CA 94016" +201462,AA Batteries (4-pack),1,3.84,05/04/19 16:01,"531 Madison St, Dallas, TX 75001" +201463,Macbook Pro Laptop,1,1700,05/18/19 00:50,"497 South St, Los Angeles, CA 90001" +201464,Google Phone,1,600,05/10/19 17:48,"681 West St, San Francisco, CA 94016" +201465,Wired Headphones,2,11.99,05/23/19 21:23,"976 Center St, Los Angeles, CA 90001" +201466,Apple Airpods Headphones,1,150,05/16/19 17:21,"738 1st St, San Francisco, CA 94016" +201467,AAA Batteries (4-pack),1,2.99,05/13/19 15:50,"30 4th St, San Francisco, CA 94016" +201468,AA Batteries (4-pack),1,3.84,05/02/19 14:12,"995 Walnut St, Seattle, WA 98101" +201469,Bose SoundSport Headphones,1,99.99,05/06/19 20:06,"967 Church St, Boston, MA 02215" +201470,20in Monitor,1,109.99,05/09/19 15:14,"51 Lakeview St, Los Angeles, CA 90001" +201471,34in Ultrawide Monitor,1,379.99,05/13/19 19:04,"448 Dogwood St, Boston, MA 02215" +201472,Vareebadd Phone,1,400,05/10/19 10:41,"502 Hill St, Atlanta, GA 30301" +201472,USB-C Charging Cable,1,11.95,05/10/19 10:41,"502 Hill St, Atlanta, GA 30301" +201472,Bose SoundSport Headphones,1,99.99,05/10/19 10:41,"502 Hill St, Atlanta, GA 30301" +201473,Bose SoundSport Headphones,1,99.99,05/09/19 12:53,"522 Maple St, New York City, NY 10001" +201474,AA Batteries (4-pack),1,3.84,05/03/19 16:48,"698 Sunset St, Boston, MA 02215" +201475,Bose SoundSport Headphones,2,99.99,05/28/19 12:41,"138 Center St, Los Angeles, CA 90001" +201476,Apple Airpods Headphones,1,150,05/09/19 10:02,"806 Hickory St, San Francisco, CA 94016" +201477,Google Phone,1,600,05/11/19 19:15,"475 Forest St, Boston, MA 02215" +201477,Bose SoundSport Headphones,1,99.99,05/11/19 19:15,"475 Forest St, Boston, MA 02215" +201478,Vareebadd Phone,1,400,05/20/19 12:10,"68 Elm St, Seattle, WA 98101" +201479,AAA Batteries (4-pack),2,2.99,05/24/19 09:19,"353 Dogwood St, New York City, NY 10001" +201480,Lightning Charging Cable,1,14.95,05/27/19 22:46,"850 Jackson St, Los Angeles, CA 90001" +201481,Lightning Charging Cable,1,14.95,05/03/19 18:52,"48 River St, Dallas, TX 75001" +201482,USB-C Charging Cable,1,11.95,05/18/19 18:47,"206 Washington St, Boston, MA 02215" +201483,AA Batteries (4-pack),1,3.84,05/11/19 11:25,"754 9th St, Los Angeles, CA 90001" +201484,ThinkPad Laptop,1,999.99,05/09/19 18:00,"979 Meadow St, Seattle, WA 98101" +201485,AAA Batteries (4-pack),3,2.99,05/02/19 13:57,"79 Hickory St, Boston, MA 02215" +201486,AAA Batteries (4-pack),2,2.99,05/27/19 19:52,"658 Cedar St, Austin, TX 73301" +201487,USB-C Charging Cable,1,11.95,05/03/19 21:05,"730 Jackson St, New York City, NY 10001" +201488,USB-C Charging Cable,1,11.95,05/02/19 13:54,"111 Park St, San Francisco, CA 94016" +201489,USB-C Charging Cable,1,11.95,05/04/19 22:20,"35 South St, Seattle, WA 98101" +201490,USB-C Charging Cable,1,11.95,05/23/19 10:06,"867 Cedar St, Los Angeles, CA 90001" +201491,27in 4K Gaming Monitor,1,389.99,05/10/19 18:04,"985 Dogwood St, Boston, MA 02215" +201492,27in FHD Monitor,1,149.99,05/19/19 11:40,"298 6th St, Boston, MA 02215" +201493,Flatscreen TV,1,300,05/05/19 20:54,"596 Adams St, Portland, ME 04101" +201494,Wired Headphones,1,11.99,05/02/19 16:15,"961 West St, New York City, NY 10001" +201495,USB-C Charging Cable,1,11.95,05/13/19 13:53,"848 Main St, New York City, NY 10001" +201496,AAA Batteries (4-pack),1,2.99,05/07/19 13:39,"308 Jackson St, Atlanta, GA 30301" +201497,27in 4K Gaming Monitor,1,389.99,05/14/19 19:20,"287 Sunset St, New York City, NY 10001" +201498,USB-C Charging Cable,1,11.95,05/13/19 11:12,"976 Sunset St, Portland, ME 04101" +201499,AA Batteries (4-pack),1,3.84,05/01/19 16:42,"60 Meadow St, Dallas, TX 75001" +201500,Wired Headphones,1,11.99,05/10/19 14:22,"519 Johnson St, Los Angeles, CA 90001" +201501,Bose SoundSport Headphones,1,99.99,05/28/19 10:25,"150 Jackson St, Dallas, TX 75001" +201502,iPhone,1,700,05/11/19 13:01,"597 South St, Seattle, WA 98101" +201503,Bose SoundSport Headphones,1,99.99,05/30/19 13:45,"581 West St, Los Angeles, CA 90001" +201504,ThinkPad Laptop,1,999.99,05/25/19 17:23,"94 Hickory St, Atlanta, GA 30301" +201505,Apple Airpods Headphones,1,150,05/06/19 11:34,"539 Lakeview St, Boston, MA 02215" +201506,Lightning Charging Cable,1,14.95,05/21/19 09:54,"867 Ridge St, Portland, OR 97035" +201507,Bose SoundSport Headphones,1,99.99,05/21/19 04:31,"743 Willow St, Los Angeles, CA 90001" +201508,USB-C Charging Cable,1,11.95,05/02/19 06:45,"713 South St, Dallas, TX 75001" +201509,AAA Batteries (4-pack),3,2.99,05/26/19 18:20,"409 7th St, Los Angeles, CA 90001" +201510,Lightning Charging Cable,1,14.95,05/03/19 20:17,"72 Hill St, San Francisco, CA 94016" +201511,AAA Batteries (4-pack),1,2.99,05/14/19 18:12,"741 Ridge St, Los Angeles, CA 90001" +201512,USB-C Charging Cable,1,11.95,05/16/19 17:20,"80 Walnut St, Los Angeles, CA 90001" +201513,Lightning Charging Cable,1,14.95,05/23/19 11:22,"890 14th St, Los Angeles, CA 90001" +201514,Apple Airpods Headphones,1,150,05/07/19 08:37,"73 13th St, San Francisco, CA 94016" +201515,Apple Airpods Headphones,1,150,05/27/19 21:07,"112 Adams St, Los Angeles, CA 90001" +201516,AA Batteries (4-pack),1,3.84,05/07/19 09:49,"852 Main St, New York City, NY 10001" +201517,AA Batteries (4-pack),3,3.84,05/30/19 10:33,"351 Willow St, San Francisco, CA 94016" +201518,Wired Headphones,1,11.99,05/01/19 13:27,"944 Meadow St, Portland, OR 97035" +201519,iPhone,1,700,05/11/19 06:16,"991 West St, San Francisco, CA 94016" +201520,LG Washing Machine,1,600.0,05/08/19 18:29,"111 1st St, New York City, NY 10001" +201521,AA Batteries (4-pack),1,3.84,05/29/19 14:31,"997 Highland St, New York City, NY 10001" +201522,AAA Batteries (4-pack),1,2.99,05/19/19 18:35,"240 Cedar St, Atlanta, GA 30301" +201523,Wired Headphones,1,11.99,05/29/19 15:07,"984 Jackson St, Austin, TX 73301" +201524,Bose SoundSport Headphones,1,99.99,05/31/19 08:31,"30 South St, Los Angeles, CA 90001" +201525,USB-C Charging Cable,1,11.95,05/29/19 12:39,"715 Main St, Portland, OR 97035" +201526,34in Ultrawide Monitor,1,379.99,05/04/19 16:30,"969 Meadow St, Los Angeles, CA 90001" +201527,Apple Airpods Headphones,1,150,05/25/19 13:11,"125 River St, San Francisco, CA 94016" +201528,Apple Airpods Headphones,1,150,05/05/19 16:15,"108 12th St, Austin, TX 73301" +201529,Wired Headphones,1,11.99,05/27/19 20:46,"898 Cherry St, Austin, TX 73301" +201530,USB-C Charging Cable,1,11.95,05/13/19 19:46,"718 Washington St, San Francisco, CA 94016" +201531,20in Monitor,1,109.99,05/22/19 07:10,"306 Spruce St, Los Angeles, CA 90001" +201532,AA Batteries (4-pack),1,3.84,05/28/19 19:58,"339 2nd St, Los Angeles, CA 90001" +201533,iPhone,1,700,05/12/19 15:22,"441 Elm St, New York City, NY 10001" +201533,Apple Airpods Headphones,1,150,05/12/19 15:22,"441 Elm St, New York City, NY 10001" +201534,Wired Headphones,3,11.99,05/05/19 16:25,"294 Adams St, Dallas, TX 75001" +201535,LG Washing Machine,1,600.0,05/27/19 21:52,"371 Pine St, Portland, OR 97035" +201536,Bose SoundSport Headphones,1,99.99,05/09/19 19:31,"848 5th St, Portland, OR 97035" +201537,Lightning Charging Cable,1,14.95,05/29/19 19:22,"285 Cherry St, San Francisco, CA 94016" +201538,Bose SoundSport Headphones,1,99.99,05/05/19 10:29,"280 Dogwood St, Los Angeles, CA 90001" +201539,AA Batteries (4-pack),2,3.84,05/27/19 03:25,"192 13th St, Austin, TX 73301" +201540,Apple Airpods Headphones,1,150,05/14/19 18:21,"21 Hickory St, Atlanta, GA 30301" +201541,27in FHD Monitor,1,149.99,05/13/19 06:45,"895 Park St, Los Angeles, CA 90001" +201542,USB-C Charging Cable,1,11.95,05/31/19 20:03,"576 Cherry St, Dallas, TX 75001" +201543,AAA Batteries (4-pack),1,2.99,05/07/19 13:42,"213 West St, Dallas, TX 75001" +201544,Wired Headphones,1,11.99,05/03/19 14:17,"614 Church St, Atlanta, GA 30301" +201545,34in Ultrawide Monitor,1,379.99,05/31/19 18:02,"726 13th St, Atlanta, GA 30301" +201546,iPhone,1,700,05/14/19 13:34,"354 2nd St, Los Angeles, CA 90001" +201547,AAA Batteries (4-pack),3,2.99,05/05/19 06:59,"89 Lakeview St, Atlanta, GA 30301" +201548,Lightning Charging Cable,1,14.95,05/16/19 15:55,"598 Johnson St, Los Angeles, CA 90001" +201549,Wired Headphones,1,11.99,05/25/19 15:55,"158 Lakeview St, Los Angeles, CA 90001" +201550,iPhone,1,700,05/09/19 11:22,"149 Adams St, New York City, NY 10001" +201551,Apple Airpods Headphones,1,150,05/05/19 20:53,"937 Lakeview St, Boston, MA 02215" +201552,Wired Headphones,1,11.99,05/02/19 12:07,"279 10th St, Los Angeles, CA 90001" +201553,Wired Headphones,1,11.99,05/24/19 10:07,"424 Elm St, Boston, MA 02215" +201554,27in FHD Monitor,1,149.99,05/09/19 15:07,"365 Wilson St, New York City, NY 10001" +201555,AAA Batteries (4-pack),1,2.99,05/19/19 11:11,"704 Dogwood St, Atlanta, GA 30301" +201556,AA Batteries (4-pack),1,3.84,05/13/19 14:37,"396 12th St, Seattle, WA 98101" +201557,Wired Headphones,1,11.99,05/17/19 19:40,"34 Jackson St, Los Angeles, CA 90001" +201557,Wired Headphones,1,11.99,05/17/19 19:40,"34 Jackson St, Los Angeles, CA 90001" +201558,ThinkPad Laptop,1,999.99,05/31/19 10:50,"66 9th St, Austin, TX 73301" +201559,Flatscreen TV,1,300,05/22/19 13:03,"600 2nd St, New York City, NY 10001" +201560,AA Batteries (4-pack),1,3.84,05/31/19 20:22,"472 Center St, Dallas, TX 75001" +201561,USB-C Charging Cable,1,11.95,05/10/19 16:32,"43 Meadow St, San Francisco, CA 94016" +201562,Google Phone,1,600,05/08/19 10:29,"877 Cherry St, Los Angeles, CA 90001" +201563,AA Batteries (4-pack),4,3.84,05/31/19 19:06,"390 11th St, New York City, NY 10001" +201564,Macbook Pro Laptop,1,1700,05/20/19 06:14,"625 8th St, Los Angeles, CA 90001" +201565,Lightning Charging Cable,1,14.95,05/31/19 22:04,"728 Willow St, Austin, TX 73301" +201566,USB-C Charging Cable,1,11.95,05/08/19 21:27,"714 2nd St, San Francisco, CA 94016" +201567,AA Batteries (4-pack),2,3.84,05/29/19 11:47,"786 North St, Dallas, TX 75001" +201568,ThinkPad Laptop,1,999.99,05/23/19 14:16,"401 14th St, San Francisco, CA 94016" +201569,USB-C Charging Cable,1,11.95,05/20/19 22:22,"782 Chestnut St, San Francisco, CA 94016" +201570,USB-C Charging Cable,1,11.95,05/08/19 19:18,"142 13th St, New York City, NY 10001" +201571,AAA Batteries (4-pack),1,2.99,05/10/19 09:14,"293 Elm St, Portland, OR 97035" +201572,34in Ultrawide Monitor,1,379.99,05/06/19 11:29,"797 Center St, New York City, NY 10001" +201573,Wired Headphones,2,11.99,05/24/19 18:09,"190 Ridge St, Austin, TX 73301" +201574,Lightning Charging Cable,1,14.95,05/07/19 15:22,"429 Church St, Los Angeles, CA 90001" +201575,AA Batteries (4-pack),2,3.84,05/20/19 19:40,"459 6th St, Seattle, WA 98101" +201576,Bose SoundSport Headphones,1,99.99,05/04/19 17:16,"332 Main St, Atlanta, GA 30301" +201577,Bose SoundSport Headphones,1,99.99,05/31/19 20:06,"64 5th St, Portland, OR 97035" +201578,Wired Headphones,1,11.99,05/15/19 18:16,"796 4th St, San Francisco, CA 94016" +201579,Lightning Charging Cable,1,14.95,05/03/19 13:40,"463 Forest St, Austin, TX 73301" +201580,Google Phone,1,600,05/24/19 08:13,"205 Maple St, New York City, NY 10001" +201581,Wired Headphones,1,11.99,05/14/19 11:33,"619 Jackson St, New York City, NY 10001" +201582,AAA Batteries (4-pack),2,2.99,05/12/19 18:43,"556 4th St, Los Angeles, CA 90001" +201583,Apple Airpods Headphones,1,150,05/11/19 11:36,"439 Chestnut St, New York City, NY 10001" +201584,Wired Headphones,1,11.99,05/02/19 17:00,"5 9th St, Dallas, TX 75001" +201585,USB-C Charging Cable,1,11.95,05/08/19 03:20,"1 5th St, New York City, NY 10001" +201586,Flatscreen TV,1,300,05/05/19 09:10,"628 7th St, Seattle, WA 98101" +201587,Apple Airpods Headphones,1,150,05/10/19 12:17,"836 Center St, New York City, NY 10001" +201588,Apple Airpods Headphones,1,150,05/08/19 19:23,"571 Lake St, Austin, TX 73301" +201589,AAA Batteries (4-pack),3,2.99,05/20/19 11:32,"439 North St, Dallas, TX 75001" +201590,Lightning Charging Cable,1,14.95,05/22/19 10:07,"110 Willow St, New York City, NY 10001" +201591,AAA Batteries (4-pack),2,2.99,05/14/19 01:05,"243 9th St, Boston, MA 02215" +201592,USB-C Charging Cable,1,11.95,05/17/19 15:47,"296 Elm St, Seattle, WA 98101" +201593,ThinkPad Laptop,1,999.99,05/28/19 23:10,"813 Cherry St, Los Angeles, CA 90001" +201594,Vareebadd Phone,1,400,05/08/19 10:14,"272 Madison St, Dallas, TX 75001" +201594,Wired Headphones,1,11.99,05/08/19 10:14,"272 Madison St, Dallas, TX 75001" +201595,27in FHD Monitor,1,149.99,05/02/19 18:13,"203 Hickory St, New York City, NY 10001" +201596,Wired Headphones,1,11.99,05/14/19 18:15,"385 13th St, San Francisco, CA 94016" +201597,Lightning Charging Cable,1,14.95,05/26/19 22:09,"171 Main St, San Francisco, CA 94016" +201598,USB-C Charging Cable,1,11.95,05/21/19 21:56,"108 8th St, Atlanta, GA 30301" +201599,27in FHD Monitor,1,149.99,05/07/19 18:35,"777 Church St, Seattle, WA 98101" +201600,Lightning Charging Cable,1,14.95,05/14/19 06:46,"617 Maple St, Atlanta, GA 30301" +201601,34in Ultrawide Monitor,1,379.99,05/27/19 09:55,"798 Hill St, Atlanta, GA 30301" +201602,AAA Batteries (4-pack),1,2.99,05/21/19 23:20,"884 10th St, Atlanta, GA 30301" +201603,Lightning Charging Cable,1,14.95,05/13/19 15:11,"611 Wilson St, Portland, ME 04101" +201604,Lightning Charging Cable,1,14.95,05/30/19 08:44,"262 Sunset St, San Francisco, CA 94016" +201605,USB-C Charging Cable,1,11.95,05/04/19 20:15,"15 Ridge St, Dallas, TX 75001" +201606,Lightning Charging Cable,1,14.95,05/28/19 11:21,"279 Hill St, Los Angeles, CA 90001" +201607,Bose SoundSport Headphones,1,99.99,05/12/19 13:31,"665 South St, San Francisco, CA 94016" +201608,AAA Batteries (4-pack),2,2.99,05/06/19 16:10,"740 12th St, New York City, NY 10001" +201609,Wired Headphones,1,11.99,05/20/19 09:58,"18 12th St, New York City, NY 10001" +201610,AAA Batteries (4-pack),3,2.99,05/23/19 17:39,"944 Hickory St, Boston, MA 02215" +201611,Lightning Charging Cable,1,14.95,05/29/19 19:49,"537 Center St, Austin, TX 73301" +201612,AA Batteries (4-pack),2,3.84,05/27/19 22:31,"125 Maple St, San Francisco, CA 94016" +201613,AAA Batteries (4-pack),3,2.99,05/04/19 17:05,"161 Lincoln St, Austin, TX 73301" +201614,AAA Batteries (4-pack),3,2.99,05/16/19 10:58,"641 Hill St, Los Angeles, CA 90001" +201615,USB-C Charging Cable,1,11.95,05/20/19 12:32,"332 Chestnut St, Boston, MA 02215" +201616,Bose SoundSport Headphones,1,99.99,05/27/19 12:02,"220 2nd St, Dallas, TX 75001" +201617,Lightning Charging Cable,1,14.95,05/08/19 16:33,"112 Jackson St, Portland, ME 04101" +201618,AAA Batteries (4-pack),1,2.99,05/29/19 10:58,"886 Johnson St, Atlanta, GA 30301" +201619,USB-C Charging Cable,1,11.95,05/11/19 12:12,"689 Hickory St, Atlanta, GA 30301" +201620,AA Batteries (4-pack),1,3.84,05/14/19 14:40,"366 Main St, Los Angeles, CA 90001" +201621,Bose SoundSport Headphones,1,99.99,05/06/19 06:46,"535 South St, San Francisco, CA 94016" +201622,Lightning Charging Cable,1,14.95,05/30/19 07:34,"748 Pine St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +201623,27in 4K Gaming Monitor,1,389.99,05/24/19 17:42,"874 Sunset St, San Francisco, CA 94016" +201624,Flatscreen TV,1,300,05/03/19 20:51,"408 Jefferson St, Los Angeles, CA 90001" +201625,AA Batteries (4-pack),1,3.84,05/11/19 12:14,"566 Highland St, San Francisco, CA 94016" +201626,27in 4K Gaming Monitor,1,389.99,05/12/19 14:10,"703 2nd St, Portland, ME 04101" +201627,27in FHD Monitor,1,149.99,05/24/19 10:41,"440 Washington St, Boston, MA 02215" +201628,Lightning Charging Cable,1,14.95,05/16/19 00:39,"490 River St, Dallas, TX 75001" +201629,34in Ultrawide Monitor,1,379.99,05/18/19 10:11,"136 Jackson St, Los Angeles, CA 90001" +201630,iPhone,1,700,05/01/19 19:02,"151 Hickory St, Boston, MA 02215" +201631,Wired Headphones,1,11.99,05/09/19 07:44,"274 Maple St, Boston, MA 02215" +201632,AAA Batteries (4-pack),1,2.99,05/06/19 11:40,"679 Meadow St, Los Angeles, CA 90001" +201633,Apple Airpods Headphones,1,150,05/22/19 21:31,"711 Walnut St, Portland, ME 04101" +201634,USB-C Charging Cable,1,11.95,05/06/19 10:26,"900 Elm St, Austin, TX 73301" +201635,Google Phone,1,600,05/18/19 10:00,"393 River St, Boston, MA 02215" +201636,USB-C Charging Cable,1,11.95,05/04/19 08:20,"54 Pine St, San Francisco, CA 94016" +201636,AAA Batteries (4-pack),1,2.99,05/04/19 08:20,"54 Pine St, San Francisco, CA 94016" +201637,Lightning Charging Cable,1,14.95,05/14/19 11:05,"145 Cedar St, Seattle, WA 98101" +201638,Apple Airpods Headphones,1,150,05/14/19 17:50,"627 10th St, San Francisco, CA 94016" +201639,AAA Batteries (4-pack),2,2.99,05/27/19 06:48,"939 Sunset St, Los Angeles, CA 90001" +201640,27in 4K Gaming Monitor,1,389.99,05/09/19 11:38,"194 12th St, Atlanta, GA 30301" +201641,AAA Batteries (4-pack),4,2.99,05/23/19 15:58,"126 11th St, New York City, NY 10001" +201642,USB-C Charging Cable,1,11.95,05/05/19 00:23,"579 Lincoln St, Atlanta, GA 30301" +201643,Flatscreen TV,1,300,05/18/19 08:43,"563 5th St, Dallas, TX 75001" +201644,34in Ultrawide Monitor,1,379.99,05/02/19 00:28,"266 Highland St, Los Angeles, CA 90001" +201645,Macbook Pro Laptop,1,1700,05/12/19 12:56,"898 Highland St, Dallas, TX 75001" +201646,Lightning Charging Cable,1,14.95,05/31/19 11:12,"340 Lakeview St, New York City, NY 10001" +201647,Macbook Pro Laptop,1,1700,05/27/19 22:58,"26 14th St, San Francisco, CA 94016" +201648,Apple Airpods Headphones,1,150,05/31/19 12:35,"646 12th St, San Francisco, CA 94016" +201649,Lightning Charging Cable,1,14.95,05/28/19 06:17,"933 Lakeview St, Portland, OR 97035" +201650,USB-C Charging Cable,1,11.95,05/02/19 11:29,"976 Hickory St, San Francisco, CA 94016" +201651,USB-C Charging Cable,1,11.95,05/14/19 04:35,"260 Dogwood St, Los Angeles, CA 90001" +201651,iPhone,1,700,05/14/19 04:35,"260 Dogwood St, Los Angeles, CA 90001" +201652,AA Batteries (4-pack),2,3.84,05/20/19 21:48,"230 Lake St, Seattle, WA 98101" +201653,20in Monitor,1,109.99,05/20/19 16:04,"862 Jefferson St, Austin, TX 73301" +201654,34in Ultrawide Monitor,1,379.99,05/04/19 16:28,"396 Jackson St, Atlanta, GA 30301" +201655,Wired Headphones,1,11.99,05/25/19 19:34,"771 7th St, Seattle, WA 98101" +201656,AAA Batteries (4-pack),1,2.99,05/24/19 18:02,"322 Hill St, San Francisco, CA 94016" +201657,27in FHD Monitor,1,149.99,05/14/19 21:00,"4 Lakeview St, San Francisco, CA 94016" +201658,AA Batteries (4-pack),1,3.84,05/01/19 10:01,"114 Hickory St, Boston, MA 02215" +201659,USB-C Charging Cable,1,11.95,05/28/19 10:29,"455 14th St, Boston, MA 02215" +201660,AAA Batteries (4-pack),2,2.99,05/05/19 11:56,"710 Cedar St, Boston, MA 02215" +201661,AAA Batteries (4-pack),1,2.99,05/23/19 19:31,"2 West St, Los Angeles, CA 90001" +201662,Apple Airpods Headphones,1,150,05/17/19 19:10,"48 Center St, Dallas, TX 75001" +201663,27in FHD Monitor,1,149.99,05/29/19 00:14,"134 Cedar St, San Francisco, CA 94016" +201664,27in 4K Gaming Monitor,1,389.99,05/30/19 12:34,"685 Main St, San Francisco, CA 94016" +201665,USB-C Charging Cable,1,11.95,05/13/19 17:52,"998 Sunset St, San Francisco, CA 94016" +201666,Wired Headphones,1,11.99,05/31/19 18:26,"37 Ridge St, Atlanta, GA 30301" +201667,USB-C Charging Cable,1,11.95,05/10/19 13:03,"452 Pine St, Los Angeles, CA 90001" +201668,34in Ultrawide Monitor,1,379.99,05/26/19 10:52,"639 West St, New York City, NY 10001" +201669,20in Monitor,1,109.99,05/15/19 18:32,"578 River St, Seattle, WA 98101" +201670,Lightning Charging Cable,1,14.95,05/23/19 06:22,"761 Cherry St, Atlanta, GA 30301" +201671,AA Batteries (4-pack),1,3.84,05/18/19 08:54,"539 Forest St, Boston, MA 02215" +201672,27in 4K Gaming Monitor,1,389.99,05/14/19 16:22,"440 Hickory St, Dallas, TX 75001" +201673,AAA Batteries (4-pack),1,2.99,05/26/19 19:09,"372 Willow St, Seattle, WA 98101" +201674,Lightning Charging Cable,1,14.95,05/20/19 16:09,"601 7th St, Los Angeles, CA 90001" +201675,Apple Airpods Headphones,1,150,05/04/19 17:48,"945 Jackson St, New York City, NY 10001" +201676,USB-C Charging Cable,1,11.95,05/13/19 17:26,"269 Hickory St, Dallas, TX 75001" +201677,27in 4K Gaming Monitor,1,389.99,05/25/19 21:52,"280 Park St, Austin, TX 73301" +201678,Google Phone,1,600,05/30/19 15:59,"575 Lakeview St, San Francisco, CA 94016" +201678,USB-C Charging Cable,1,11.95,05/30/19 15:59,"575 Lakeview St, San Francisco, CA 94016" +201679,AAA Batteries (4-pack),1,2.99,05/20/19 13:51,"646 Cherry St, New York City, NY 10001" +201680,Bose SoundSport Headphones,1,99.99,05/17/19 19:57,"419 Forest St, Los Angeles, CA 90001" +201681,AA Batteries (4-pack),1,3.84,05/30/19 20:35,"637 North St, Boston, MA 02215" +201682,AAA Batteries (4-pack),2,2.99,05/23/19 20:06,"883 Willow St, San Francisco, CA 94016" +201683,ThinkPad Laptop,1,999.99,05/17/19 10:34,"346 Park St, Los Angeles, CA 90001" +201684,Wired Headphones,1,11.99,05/06/19 13:37,"586 7th St, San Francisco, CA 94016" +201685,Lightning Charging Cable,1,14.95,05/14/19 18:21,"453 Main St, Austin, TX 73301" +201686,Lightning Charging Cable,1,14.95,05/21/19 22:18,"336 Elm St, Los Angeles, CA 90001" +201687,Macbook Pro Laptop,1,1700,05/07/19 14:08,"249 Elm St, Dallas, TX 75001" +201688,USB-C Charging Cable,2,11.95,05/25/19 11:37,"658 Adams St, Boston, MA 02215" +201689,AA Batteries (4-pack),2,3.84,05/01/19 18:56,"261 12th St, Seattle, WA 98101" +201690,Apple Airpods Headphones,1,150,05/19/19 14:26,"16 Church St, New York City, NY 10001" +201690,Wired Headphones,1,11.99,05/19/19 14:26,"16 Church St, New York City, NY 10001" +201691,Wired Headphones,1,11.99,05/23/19 21:11,"820 Dogwood St, Atlanta, GA 30301" +201692,Lightning Charging Cable,1,14.95,05/05/19 00:30,"221 Jackson St, San Francisco, CA 94016" +201693,Apple Airpods Headphones,1,150,05/20/19 22:25,"501 Jackson St, New York City, NY 10001" +201694,USB-C Charging Cable,1,11.95,05/15/19 13:38,"464 Park St, New York City, NY 10001" +201695,USB-C Charging Cable,1,11.95,05/11/19 11:04,"751 Spruce St, San Francisco, CA 94016" +201696,AA Batteries (4-pack),1,3.84,05/02/19 16:46,"475 1st St, Austin, TX 73301" +201697,USB-C Charging Cable,1,11.95,05/16/19 00:38,"726 10th St, Seattle, WA 98101" +201698,USB-C Charging Cable,1,11.95,05/09/19 22:17,"752 Park St, San Francisco, CA 94016" +201699,AAA Batteries (4-pack),2,2.99,05/18/19 12:55,"450 Cherry St, New York City, NY 10001" +201700,Wired Headphones,1,11.99,05/21/19 13:15,"372 4th St, Seattle, WA 98101" +201701,Macbook Pro Laptop,1,1700,05/19/19 17:15,"471 South St, San Francisco, CA 94016" +201702,AA Batteries (4-pack),1,3.84,05/17/19 10:08,"26 Willow St, Dallas, TX 75001" +201703,Apple Airpods Headphones,1,150,05/30/19 13:32,"909 Madison St, San Francisco, CA 94016" +201704,USB-C Charging Cable,1,11.95,05/18/19 18:12,"474 Willow St, Portland, ME 04101" +201705,Apple Airpods Headphones,1,150,05/28/19 21:46,"169 Forest St, New York City, NY 10001" +201705,Bose SoundSport Headphones,1,99.99,05/28/19 21:46,"169 Forest St, New York City, NY 10001" +201706,Macbook Pro Laptop,1,1700,05/10/19 10:15,"17 Hill St, San Francisco, CA 94016" +201707,Macbook Pro Laptop,1,1700,05/15/19 13:44,"659 Jefferson St, Los Angeles, CA 90001" +201708,AA Batteries (4-pack),1,3.84,05/10/19 10:41,"719 Willow St, Austin, TX 73301" +201709,AAA Batteries (4-pack),3,2.99,05/20/19 18:04,"638 Johnson St, Dallas, TX 75001" +201710,Bose SoundSport Headphones,1,99.99,05/29/19 22:31,"545 Wilson St, Boston, MA 02215" +201711,AAA Batteries (4-pack),2,2.99,05/05/19 22:23,"133 Washington St, Atlanta, GA 30301" +201712,USB-C Charging Cable,1,11.95,05/28/19 12:59,"147 10th St, Dallas, TX 75001" +201713,Wired Headphones,1,11.99,05/03/19 12:29,"678 Walnut St, Portland, ME 04101" +201714,Wired Headphones,1,11.99,05/26/19 13:39,"9 Main St, Los Angeles, CA 90001" +201715,AAA Batteries (4-pack),3,2.99,05/22/19 15:46,"944 8th St, Atlanta, GA 30301" +201716,34in Ultrawide Monitor,1,379.99,05/23/19 19:16,"745 5th St, Boston, MA 02215" +201717,Bose SoundSport Headphones,1,99.99,05/30/19 07:59,"673 River St, Atlanta, GA 30301" +201718,AA Batteries (4-pack),1,3.84,05/24/19 18:50,"767 Main St, Seattle, WA 98101" +201719,Lightning Charging Cable,1,14.95,05/06/19 16:13,"664 Willow St, San Francisco, CA 94016" +201720,Bose SoundSport Headphones,1,99.99,05/29/19 20:21,"422 Lake St, San Francisco, CA 94016" +201721,27in FHD Monitor,1,149.99,05/25/19 18:39,"212 River St, New York City, NY 10001" +201722,AAA Batteries (4-pack),2,2.99,05/02/19 00:31,"344 Highland St, New York City, NY 10001" +201723,Lightning Charging Cable,1,14.95,05/05/19 22:35,"991 1st St, Los Angeles, CA 90001" +201724,USB-C Charging Cable,1,11.95,05/03/19 19:15,"834 North St, Seattle, WA 98101" +201725,USB-C Charging Cable,1,11.95,05/04/19 08:41,"59 8th St, Los Angeles, CA 90001" +201726,34in Ultrawide Monitor,1,379.99,05/25/19 19:30,"829 Chestnut St, Atlanta, GA 30301" +201727,27in FHD Monitor,1,149.99,05/25/19 19:10,"275 Washington St, San Francisco, CA 94016" +201728,34in Ultrawide Monitor,1,379.99,05/19/19 12:21,"471 Willow St, Boston, MA 02215" +201729,AA Batteries (4-pack),1,3.84,05/16/19 20:58,"452 West St, Atlanta, GA 30301" +201730,Wired Headphones,1,11.99,05/02/19 15:32,"160 13th St, New York City, NY 10001" +201731,Wired Headphones,1,11.99,05/02/19 20:40,"19 Spruce St, Los Angeles, CA 90001" +201732,Apple Airpods Headphones,1,150,05/16/19 09:28,"201 Church St, Los Angeles, CA 90001" +201733,Google Phone,1,600,05/11/19 17:34,"523 Walnut St, San Francisco, CA 94016" +201734,AA Batteries (4-pack),2,3.84,05/02/19 11:05,"310 Wilson St, Portland, OR 97035" +201735,20in Monitor,1,109.99,05/06/19 14:25,"880 Adams St, Atlanta, GA 30301" +201736,Lightning Charging Cable,1,14.95,05/23/19 13:52,"923 Maple St, Dallas, TX 75001" +201737,USB-C Charging Cable,1,11.95,05/03/19 18:49,"414 Madison St, San Francisco, CA 94016" +201738,Wired Headphones,1,11.99,05/03/19 10:16,"407 Pine St, Los Angeles, CA 90001" +201739,Wired Headphones,1,11.99,05/14/19 19:24,"504 Cherry St, San Francisco, CA 94016" +201740,AA Batteries (4-pack),1,3.84,05/15/19 11:22,"361 9th St, Seattle, WA 98101" +201741,27in FHD Monitor,1,149.99,05/02/19 22:29,"573 South St, Atlanta, GA 30301" +201742,20in Monitor,1,109.99,05/02/19 20:07,"398 4th St, San Francisco, CA 94016" +201743,iPhone,1,700,05/16/19 16:18,"769 Washington St, Dallas, TX 75001" +201744,AAA Batteries (4-pack),1,2.99,05/31/19 19:37,"159 Center St, Los Angeles, CA 90001" +201745,Apple Airpods Headphones,1,150,05/01/19 14:31,"169 8th St, San Francisco, CA 94016" +201746,USB-C Charging Cable,1,11.95,05/06/19 20:40,"936 Ridge St, San Francisco, CA 94016" +201747,27in 4K Gaming Monitor,1,389.99,05/05/19 19:53,"493 Madison St, Austin, TX 73301" +201748,Lightning Charging Cable,1,14.95,05/08/19 14:09,"386 5th St, Los Angeles, CA 90001" +201749,Wired Headphones,1,11.99,05/13/19 21:08,"462 Highland St, San Francisco, CA 94016" +201750,USB-C Charging Cable,1,11.95,05/29/19 20:22,"783 Meadow St, New York City, NY 10001" +201751,27in FHD Monitor,1,149.99,05/04/19 22:14,"598 11th St, Seattle, WA 98101" +201752,AA Batteries (4-pack),1,3.84,05/06/19 13:29,"887 Forest St, Austin, TX 73301" +201753,Vareebadd Phone,1,400,05/08/19 00:23,"177 South St, Boston, MA 02215" +201753,USB-C Charging Cable,1,11.95,05/08/19 00:23,"177 South St, Boston, MA 02215" +201754,20in Monitor,1,109.99,05/30/19 12:19,"102 Main St, San Francisco, CA 94016" +201755,Lightning Charging Cable,1,14.95,05/06/19 12:33,"467 Church St, Los Angeles, CA 90001" +201756,27in FHD Monitor,1,149.99,05/20/19 09:50,"857 7th St, Boston, MA 02215" +201757,Bose SoundSport Headphones,1,99.99,05/13/19 20:13,"189 Washington St, Dallas, TX 75001" +201758,20in Monitor,1,109.99,05/23/19 16:20,"266 9th St, Portland, OR 97035" +201759,iPhone,1,700,05/27/19 10:09,"373 Walnut St, Seattle, WA 98101" +201760,Wired Headphones,2,11.99,05/24/19 02:11,"857 10th St, Los Angeles, CA 90001" +201761,Lightning Charging Cable,1,14.95,05/25/19 21:36,"72 West St, San Francisco, CA 94016" +201762,Bose SoundSport Headphones,1,99.99,05/19/19 22:11,"551 Elm St, Dallas, TX 75001" +201763,Wired Headphones,1,11.99,05/23/19 09:03,"968 Jefferson St, Los Angeles, CA 90001" +201764,AA Batteries (4-pack),1,3.84,05/30/19 09:23,"446 12th St, Atlanta, GA 30301" +201765,AA Batteries (4-pack),1,3.84,05/26/19 22:08,"908 Chestnut St, Los Angeles, CA 90001" +201766,34in Ultrawide Monitor,1,379.99,05/09/19 20:09,"544 7th St, Seattle, WA 98101" +201767,27in FHD Monitor,1,149.99,05/20/19 19:28,"395 River St, Los Angeles, CA 90001" +201768,Apple Airpods Headphones,1,150,05/18/19 21:22,"230 10th St, Boston, MA 02215" +201769,27in 4K Gaming Monitor,1,389.99,05/16/19 11:50,"647 1st St, Los Angeles, CA 90001" +201770,AAA Batteries (4-pack),1,2.99,05/19/19 10:42,"342 8th St, Boston, MA 02215" +201771,AAA Batteries (4-pack),1,2.99,05/23/19 22:15,"358 Cedar St, San Francisco, CA 94016" +201772,Flatscreen TV,1,300,05/02/19 06:08,"921 Wilson St, Seattle, WA 98101" +201773,USB-C Charging Cable,1,11.95,05/03/19 11:24,"422 Washington St, New York City, NY 10001" +201774,AAA Batteries (4-pack),1,2.99,05/20/19 15:36,"359 5th St, San Francisco, CA 94016" +201775,Macbook Pro Laptop,1,1700,05/27/19 19:46,"539 Maple St, New York City, NY 10001" +201776,Apple Airpods Headphones,1,150,05/07/19 03:53,"806 14th St, New York City, NY 10001" +201777,34in Ultrawide Monitor,1,379.99,05/06/19 11:38,"412 Lakeview St, Atlanta, GA 30301" +201778,AA Batteries (4-pack),1,3.84,05/31/19 10:48,"588 Church St, Boston, MA 02215" +201779,Wired Headphones,1,11.99,05/11/19 13:30,"78 7th St, Seattle, WA 98101" +201780,AAA Batteries (4-pack),2,2.99,05/12/19 21:52,"871 5th St, Atlanta, GA 30301" +201781,AA Batteries (4-pack),1,3.84,05/14/19 13:51,"399 Jackson St, Seattle, WA 98101" +201782,Google Phone,1,600,05/20/19 09:36,"76 Chestnut St, Boston, MA 02215" +201782,USB-C Charging Cable,1,11.95,05/20/19 09:36,"76 Chestnut St, Boston, MA 02215" +201783,AA Batteries (4-pack),2,3.84,05/17/19 10:35,"390 13th St, Boston, MA 02215" +201784,Apple Airpods Headphones,1,150,05/06/19 18:36,"973 Dogwood St, San Francisco, CA 94016" +201785,iPhone,1,700,05/31/19 21:31,"473 Meadow St, San Francisco, CA 94016" +201786,Lightning Charging Cable,1,14.95,05/11/19 12:17,"379 Cedar St, Seattle, WA 98101" +201787,Macbook Pro Laptop,1,1700,05/05/19 19:32,"289 Maple St, Boston, MA 02215" +201788,Macbook Pro Laptop,1,1700,05/21/19 20:55,"830 2nd St, Atlanta, GA 30301" +201789,27in FHD Monitor,1,149.99,05/07/19 23:48,"945 Walnut St, Portland, ME 04101" +201790,20in Monitor,1,109.99,05/20/19 12:30,"534 14th St, New York City, NY 10001" +201791,USB-C Charging Cable,1,11.95,05/07/19 12:19,"501 1st St, Atlanta, GA 30301" +201792,USB-C Charging Cable,1,11.95,05/27/19 10:50,"43 South St, Boston, MA 02215" +201793,LG Dryer,1,600.0,05/23/19 09:02,"229 Elm St, Atlanta, GA 30301" +201794,LG Dryer,1,600.0,05/19/19 16:00,"132 Highland St, New York City, NY 10001" +201795,20in Monitor,1,109.99,05/27/19 21:36,"223 4th St, Dallas, TX 75001" +201796,Flatscreen TV,1,300,05/01/19 19:38,"490 10th St, San Francisco, CA 94016" +201797,AA Batteries (4-pack),1,3.84,05/03/19 23:04,"68 6th St, San Francisco, CA 94016" +201798,Flatscreen TV,1,300,05/20/19 22:03,"414 14th St, Portland, ME 04101" +201799,iPhone,1,700,05/03/19 19:37,"382 Lakeview St, Dallas, TX 75001" +201800,AAA Batteries (4-pack),1,2.99,05/28/19 01:58,"915 2nd St, Atlanta, GA 30301" +201801,Flatscreen TV,1,300,05/06/19 07:03,"486 1st St, New York City, NY 10001" +201802,USB-C Charging Cable,1,11.95,05/31/19 18:26,"357 Lakeview St, San Francisco, CA 94016" +201803,Flatscreen TV,1,300,05/15/19 02:37,"63 Highland St, New York City, NY 10001" +201804,AAA Batteries (4-pack),1,2.99,05/15/19 13:28,"712 Center St, New York City, NY 10001" +201805,AAA Batteries (4-pack),1,2.99,05/18/19 09:39,"378 Washington St, Atlanta, GA 30301" +201806,Google Phone,1,600,05/08/19 16:40,"13 Johnson St, New York City, NY 10001" +201807,27in 4K Gaming Monitor,1,389.99,05/21/19 20:20,"348 Lincoln St, New York City, NY 10001" +201808,AA Batteries (4-pack),1,3.84,05/06/19 15:48,"760 13th St, Seattle, WA 98101" +201809,USB-C Charging Cable,1,11.95,05/15/19 15:55,"316 Church St, Los Angeles, CA 90001" +201810,Lightning Charging Cable,1,14.95,05/13/19 18:18,"210 9th St, Dallas, TX 75001" +201811,AAA Batteries (4-pack),1,2.99,05/06/19 13:45,"360 Sunset St, Dallas, TX 75001" +201812,Lightning Charging Cable,1,14.95,05/10/19 12:25,"889 7th St, New York City, NY 10001" +201813,Vareebadd Phone,1,400,05/23/19 14:14,"667 14th St, Boston, MA 02215" +201814,Lightning Charging Cable,1,14.95,05/26/19 13:26,"655 North St, San Francisco, CA 94016" +201815,USB-C Charging Cable,1,11.95,05/18/19 10:18,"952 1st St, Atlanta, GA 30301" +201816,Apple Airpods Headphones,1,150,05/20/19 10:04,"88 Madison St, Boston, MA 02215" +201817,iPhone,1,700,05/01/19 16:54,"525 Washington St, San Francisco, CA 94016" +201818,Apple Airpods Headphones,1,150,05/30/19 07:51,"588 Center St, San Francisco, CA 94016" +201819,34in Ultrawide Monitor,1,379.99,05/27/19 14:24,"266 2nd St, Los Angeles, CA 90001" +201820,Vareebadd Phone,1,400,05/18/19 11:35,"186 Hickory St, Los Angeles, CA 90001" +201821,AAA Batteries (4-pack),1,2.99,05/07/19 19:32,"160 Walnut St, Boston, MA 02215" +201822,AAA Batteries (4-pack),1,2.99,05/18/19 21:05,"283 Washington St, San Francisco, CA 94016" +201823,Wired Headphones,2,11.99,05/02/19 18:14,"848 5th St, San Francisco, CA 94016" +201824,Apple Airpods Headphones,1,150,05/08/19 19:42,"665 10th St, San Francisco, CA 94016" +201825,Wired Headphones,1,11.99,05/15/19 12:56,"500 Lake St, San Francisco, CA 94016" +201826,27in 4K Gaming Monitor,1,389.99,05/11/19 14:14,"849 Jefferson St, Los Angeles, CA 90001" +201827,AAA Batteries (4-pack),2,2.99,05/10/19 17:22,"647 Dogwood St, Austin, TX 73301" +201828,Google Phone,1,600,05/31/19 19:08,"596 Highland St, San Francisco, CA 94016" +201828,USB-C Charging Cable,1,11.95,05/31/19 19:08,"596 Highland St, San Francisco, CA 94016" +201829,AAA Batteries (4-pack),3,2.99,05/11/19 21:44,"981 West St, Los Angeles, CA 90001" +201830,USB-C Charging Cable,1,11.95,05/14/19 06:15,"803 Hill St, San Francisco, CA 94016" +201831,AA Batteries (4-pack),3,3.84,05/28/19 13:00,"224 Cedar St, Boston, MA 02215" +201832,20in Monitor,1,109.99,05/18/19 03:28,"534 Cherry St, Los Angeles, CA 90001" +201833,USB-C Charging Cable,1,11.95,05/13/19 09:23,"452 4th St, Atlanta, GA 30301" +201834,AA Batteries (4-pack),2,3.84,05/05/19 10:45,"210 1st St, Boston, MA 02215" +201835,34in Ultrawide Monitor,1,379.99,05/20/19 20:49,"415 Adams St, Dallas, TX 75001" +201836,Lightning Charging Cable,1,14.95,05/03/19 17:36,"185 Wilson St, San Francisco, CA 94016" +201837,Apple Airpods Headphones,1,150,05/16/19 11:25,"938 Jefferson St, Los Angeles, CA 90001" +201838,Wired Headphones,1,11.99,05/22/19 14:24,"506 Willow St, Seattle, WA 98101" +201838,AAA Batteries (4-pack),1,2.99,05/22/19 14:24,"506 Willow St, Seattle, WA 98101" +201839,Apple Airpods Headphones,1,150,05/29/19 10:21,"566 South St, Boston, MA 02215" +201840,USB-C Charging Cable,1,11.95,05/30/19 17:44,"3 2nd St, San Francisco, CA 94016" +201841,AAA Batteries (4-pack),4,2.99,05/08/19 09:25,"283 6th St, Los Angeles, CA 90001" +201842,20in Monitor,1,109.99,05/01/19 14:19,"705 Highland St, New York City, NY 10001" +201843,USB-C Charging Cable,1,11.95,05/30/19 23:32,"343 Highland St, Austin, TX 73301" +201844,ThinkPad Laptop,1,999.99,05/07/19 21:51,"127 7th St, Atlanta, GA 30301" +201845,Wired Headphones,1,11.99,05/20/19 10:06,"680 Madison St, San Francisco, CA 94016" +201846,USB-C Charging Cable,1,11.95,05/04/19 22:00,"730 Chestnut St, Boston, MA 02215" +201847,27in FHD Monitor,1,149.99,05/08/19 20:49,"800 10th St, San Francisco, CA 94016" +201848,iPhone,1,700,05/01/19 16:52,"579 River St, Dallas, TX 75001" +201849,Bose SoundSport Headphones,1,99.99,05/18/19 12:22,"419 Sunset St, Boston, MA 02215" +201850,Apple Airpods Headphones,1,150,05/02/19 14:48,"142 Elm St, San Francisco, CA 94016" +201851,Wired Headphones,1,11.99,05/13/19 05:49,"568 Meadow St, Atlanta, GA 30301" +201852,USB-C Charging Cable,1,11.95,05/13/19 23:15,"920 West St, Los Angeles, CA 90001" +201853,iPhone,1,700,05/22/19 12:03,"897 Washington St, Los Angeles, CA 90001" +201854,USB-C Charging Cable,1,11.95,05/22/19 19:15,"546 Main St, Portland, OR 97035" +201855,USB-C Charging Cable,2,11.95,06/01/19 03:23,"624 Church St, Boston, MA 02215" +201856,Lightning Charging Cable,1,14.95,05/20/19 01:20,"182 Adams St, Portland, OR 97035" +201857,Lightning Charging Cable,1,14.95,05/27/19 19:22,"402 Madison St, Boston, MA 02215" +201858,Lightning Charging Cable,2,14.95,05/16/19 20:07,"456 Hickory St, San Francisco, CA 94016" +201859,USB-C Charging Cable,1,11.95,05/27/19 09:27,"846 13th St, San Francisco, CA 94016" +201860,AA Batteries (4-pack),1,3.84,05/08/19 14:29,"625 Jackson St, Dallas, TX 75001" +201861,Apple Airpods Headphones,1,150,05/14/19 12:52,"624 Lincoln St, New York City, NY 10001" +201862,AA Batteries (4-pack),1,3.84,05/25/19 11:11,"667 8th St, Seattle, WA 98101" +201863,Bose SoundSport Headphones,1,99.99,05/28/19 01:39,"749 Maple St, New York City, NY 10001" +201864,iPhone,1,700,05/06/19 15:35,"472 Sunset St, Dallas, TX 75001" +201865,AAA Batteries (4-pack),1,2.99,05/26/19 16:02,"453 Forest St, Portland, OR 97035" +201866,Apple Airpods Headphones,1,150,05/02/19 11:29,"594 Jackson St, Boston, MA 02215" +201867,Lightning Charging Cable,1,14.95,05/19/19 17:49,"761 Main St, San Francisco, CA 94016" +201868,27in FHD Monitor,1,149.99,05/04/19 12:10,"911 Cherry St, Boston, MA 02215" +201869,iPhone,1,700,05/16/19 19:36,"188 North St, San Francisco, CA 94016" +201870,34in Ultrawide Monitor,1,379.99,05/20/19 07:50,"163 Jefferson St, San Francisco, CA 94016" +201871,Wired Headphones,1,11.99,05/04/19 19:33,"365 Ridge St, New York City, NY 10001" +201872,Wired Headphones,2,11.99,05/16/19 15:55,"742 Main St, San Francisco, CA 94016" +201873,Apple Airpods Headphones,1,150,05/19/19 21:02,"558 5th St, Los Angeles, CA 90001" +201874,27in 4K Gaming Monitor,1,389.99,05/14/19 17:43,"12 Hill St, San Francisco, CA 94016" +201875,20in Monitor,1,109.99,05/25/19 19:34,"437 7th St, Boston, MA 02215" +201876,27in 4K Gaming Monitor,1,389.99,05/24/19 11:42,"461 Dogwood St, Boston, MA 02215" +201877,ThinkPad Laptop,1,999.99,05/31/19 23:01,"946 Willow St, Boston, MA 02215" +201878,AAA Batteries (4-pack),1,2.99,05/03/19 03:59,"466 Willow St, Atlanta, GA 30301" +201879,AA Batteries (4-pack),1,3.84,05/31/19 12:04,"878 Jackson St, Boston, MA 02215" +201880,Macbook Pro Laptop,1,1700,05/17/19 19:58,"743 Hill St, Seattle, WA 98101" +201881,AA Batteries (4-pack),1,3.84,05/14/19 10:47,"681 Cedar St, Austin, TX 73301" +201882,Bose SoundSport Headphones,1,99.99,05/29/19 23:21,"50 Wilson St, New York City, NY 10001" +201883,AA Batteries (4-pack),1,3.84,05/20/19 09:14,"686 River St, Austin, TX 73301" +201884,USB-C Charging Cable,1,11.95,05/29/19 14:28,"378 Maple St, Seattle, WA 98101" +201885,Wired Headphones,2,11.99,05/21/19 14:11,"78 Madison St, Boston, MA 02215" +201886,Vareebadd Phone,1,400,05/28/19 17:49,"586 Lake St, Los Angeles, CA 90001" +201887,AA Batteries (4-pack),1,3.84,05/04/19 15:23,"88 North St, San Francisco, CA 94016" +201888,USB-C Charging Cable,1,11.95,05/23/19 12:57,"303 River St, San Francisco, CA 94016" +201889,AA Batteries (4-pack),1,3.84,05/30/19 20:14,"77 Church St, New York City, NY 10001" +201890,iPhone,1,700,05/24/19 20:07,"557 West St, Austin, TX 73301" +201891,27in 4K Gaming Monitor,1,389.99,05/29/19 17:53,"359 Hill St, Boston, MA 02215" +201892,USB-C Charging Cable,1,11.95,05/21/19 14:51,"24 2nd St, New York City, NY 10001" +201893,Bose SoundSport Headphones,1,99.99,05/30/19 15:01,"140 West St, Dallas, TX 75001" +201894,Apple Airpods Headphones,1,150,05/10/19 18:19,"243 Lincoln St, New York City, NY 10001" +201895,Wired Headphones,1,11.99,05/18/19 09:54,"130 Pine St, Dallas, TX 75001" +201896,Wired Headphones,1,11.99,05/03/19 22:54,"378 South St, San Francisco, CA 94016" +201897,iPhone,1,700,05/10/19 12:18,"28 Ridge St, San Francisco, CA 94016" +201898,AA Batteries (4-pack),1,3.84,05/03/19 20:02,"16 9th St, Seattle, WA 98101" +201899,Google Phone,1,600,05/01/19 08:38,"81 Chestnut St, Atlanta, GA 30301" +201899,USB-C Charging Cable,1,11.95,05/01/19 08:38,"81 Chestnut St, Atlanta, GA 30301" +201900,AA Batteries (4-pack),2,3.84,05/09/19 20:20,"294 Washington St, New York City, NY 10001" +201901,AAA Batteries (4-pack),1,2.99,05/06/19 16:34,"60 Spruce St, Los Angeles, CA 90001" +201902,Wired Headphones,1,11.99,05/14/19 13:42,"726 13th St, Austin, TX 73301" +201903,Bose SoundSport Headphones,1,99.99,05/30/19 07:38,"221 West St, Los Angeles, CA 90001" +201904,27in 4K Gaming Monitor,1,389.99,05/02/19 07:23,"473 Johnson St, San Francisco, CA 94016" +201905,Apple Airpods Headphones,1,150,05/08/19 14:10,"224 Lake St, Seattle, WA 98101" +201906,AA Batteries (4-pack),1,3.84,05/13/19 18:57,"664 9th St, Los Angeles, CA 90001" +201907,20in Monitor,1,109.99,05/24/19 19:21,"231 9th St, Los Angeles, CA 90001" +201908,AA Batteries (4-pack),1,3.84,05/21/19 06:53,"37 Main St, Los Angeles, CA 90001" +201909,USB-C Charging Cable,1,11.95,05/05/19 18:01,"393 Park St, Los Angeles, CA 90001" +201910,Lightning Charging Cable,1,14.95,05/09/19 13:27,"321 Washington St, Los Angeles, CA 90001" +201911,Wired Headphones,1,11.99,05/30/19 17:25,"434 Church St, Portland, OR 97035" +201912,Lightning Charging Cable,1,14.95,05/06/19 13:22,"688 10th St, Los Angeles, CA 90001" +201913,USB-C Charging Cable,1,11.95,05/29/19 11:52,"898 Main St, Boston, MA 02215" +201914,Apple Airpods Headphones,1,150,05/13/19 04:27,"607 14th St, Austin, TX 73301" +201915,USB-C Charging Cable,1,11.95,05/18/19 14:09,"938 Highland St, New York City, NY 10001" +201916,Apple Airpods Headphones,1,150,05/11/19 22:16,"131 Johnson St, Seattle, WA 98101" +201917,Wired Headphones,1,11.99,05/08/19 12:00,"159 Madison St, San Francisco, CA 94016" +201918,USB-C Charging Cable,1,11.95,05/11/19 09:51,"318 7th St, New York City, NY 10001" +201919,AA Batteries (4-pack),1,3.84,05/09/19 13:38,"981 Sunset St, San Francisco, CA 94016" +201920,Bose SoundSport Headphones,1,99.99,05/17/19 16:56,"396 Lake St, New York City, NY 10001" +201921,Bose SoundSport Headphones,1,99.99,05/21/19 09:51,"294 Madison St, Dallas, TX 75001" +201922,Wired Headphones,1,11.99,05/22/19 20:59,"801 10th St, Portland, OR 97035" +201923,AAA Batteries (4-pack),1,2.99,05/20/19 12:14,"78 Forest St, San Francisco, CA 94016" +201924,27in FHD Monitor,1,149.99,05/07/19 01:25,"126 8th St, Seattle, WA 98101" +201925,Lightning Charging Cable,1,14.95,05/18/19 09:46,"308 Jefferson St, Atlanta, GA 30301" +201926,USB-C Charging Cable,1,11.95,05/04/19 13:38,"981 Maple St, Los Angeles, CA 90001" +201927,27in FHD Monitor,1,149.99,05/29/19 14:06,"583 West St, San Francisco, CA 94016" +201928,AA Batteries (4-pack),2,3.84,05/23/19 13:36,"197 Walnut St, New York City, NY 10001" +201929,iPhone,1,700,05/24/19 00:58,"783 Chestnut St, Los Angeles, CA 90001" +201930,Apple Airpods Headphones,1,150,05/12/19 21:50,"231 4th St, Seattle, WA 98101" +201931,AAA Batteries (4-pack),1,2.99,05/03/19 16:36,"957 Washington St, San Francisco, CA 94016" +201932,Apple Airpods Headphones,1,150,05/22/19 20:02,"996 Hickory St, Los Angeles, CA 90001" +201933,Wired Headphones,1,11.99,05/23/19 19:38,"484 Willow St, San Francisco, CA 94016" +201934,Apple Airpods Headphones,1,150,05/03/19 16:04,"527 Washington St, Seattle, WA 98101" +201935,Apple Airpods Headphones,1,150,05/23/19 15:03,"932 13th St, Seattle, WA 98101" +201936,Wired Headphones,1,11.99,05/18/19 17:57,"225 Maple St, New York City, NY 10001" +201937,Flatscreen TV,1,300,05/27/19 09:34,"826 Park St, San Francisco, CA 94016" +201938,AA Batteries (4-pack),1,3.84,05/28/19 13:41,"24 Highland St, Portland, OR 97035" +201939,AAA Batteries (4-pack),1,2.99,05/16/19 11:08,"380 Spruce St, Los Angeles, CA 90001" +201940,USB-C Charging Cable,1,11.95,05/09/19 11:34,"890 Hill St, New York City, NY 10001" +201941,USB-C Charging Cable,1,11.95,05/10/19 23:36,"48 Madison St, Boston, MA 02215" +201942,AAA Batteries (4-pack),1,2.99,05/13/19 16:06,"561 4th St, San Francisco, CA 94016" +201943,27in 4K Gaming Monitor,1,389.99,05/08/19 17:28,"151 Forest St, San Francisco, CA 94016" +201944,AAA Batteries (4-pack),1,2.99,05/12/19 22:33,"602 14th St, Los Angeles, CA 90001" +201945,USB-C Charging Cable,1,11.95,05/20/19 08:48,"965 6th St, Dallas, TX 75001" +201946,AA Batteries (4-pack),1,3.84,05/02/19 15:56,"162 Willow St, Austin, TX 73301" +201947,AA Batteries (4-pack),1,3.84,05/04/19 21:48,"746 Wilson St, New York City, NY 10001" +201948,Lightning Charging Cable,1,14.95,05/31/19 16:50,"417 12th St, Los Angeles, CA 90001" +201949,Apple Airpods Headphones,1,150,05/26/19 08:14,"996 9th St, Boston, MA 02215" +201950,AA Batteries (4-pack),1,3.84,05/02/19 08:07,"81 4th St, New York City, NY 10001" +201951,iPhone,1,700,06/01/19 01:52,"561 4th St, Los Angeles, CA 90001" +201951,Lightning Charging Cable,1,14.95,06/01/19 01:52,"561 4th St, Los Angeles, CA 90001" +201951,Wired Headphones,1,11.99,06/01/19 01:52,"561 4th St, Los Angeles, CA 90001" +201952,Lightning Charging Cable,1,14.95,05/18/19 18:51,"762 Johnson St, San Francisco, CA 94016" +201953,Lightning Charging Cable,1,14.95,05/19/19 18:42,"596 Maple St, Atlanta, GA 30301" +201954,Wired Headphones,1,11.99,05/24/19 18:06,"97 River St, San Francisco, CA 94016" +201955,AA Batteries (4-pack),2,3.84,05/02/19 11:18,"509 Lake St, San Francisco, CA 94016" +201956,Wired Headphones,1,11.99,05/06/19 19:04,"475 Dogwood St, Boston, MA 02215" +201957,Macbook Pro Laptop,1,1700,05/30/19 13:58,"679 11th St, Boston, MA 02215" +201958,USB-C Charging Cable,1,11.95,05/03/19 12:14,"424 Johnson St, Austin, TX 73301" +201959,Lightning Charging Cable,1,14.95,05/24/19 19:23,"324 Maple St, Portland, OR 97035" +201960,iPhone,1,700,05/02/19 04:37,"717 4th St, Seattle, WA 98101" +201961,Wired Headphones,1,11.99,05/18/19 10:55,"946 Forest St, Atlanta, GA 30301" +201962,Apple Airpods Headphones,1,150,05/01/19 12:42,"811 Elm St, Los Angeles, CA 90001" +201963,AA Batteries (4-pack),2,3.84,05/01/19 17:51,"277 West St, Austin, TX 73301" +201964,Flatscreen TV,1,300,05/04/19 18:45,"32 6th St, Boston, MA 02215" +201965,20in Monitor,1,109.99,05/07/19 18:04,"603 6th St, New York City, NY 10001" +201966,Apple Airpods Headphones,1,150,05/03/19 14:18,"288 13th St, New York City, NY 10001" +201967,Bose SoundSport Headphones,1,99.99,05/06/19 11:38,"578 Park St, Boston, MA 02215" +201968,AAA Batteries (4-pack),1,2.99,05/31/19 10:03,"584 Adams St, New York City, NY 10001" +201969,Lightning Charging Cable,1,14.95,05/21/19 15:01,"884 Cedar St, Boston, MA 02215" +201969,Apple Airpods Headphones,1,150,05/21/19 15:01,"884 Cedar St, Boston, MA 02215" +201970,Wired Headphones,1,11.99,05/27/19 21:42,"794 Meadow St, San Francisco, CA 94016" +201971,USB-C Charging Cable,1,11.95,06/01/19 02:05,"272 Hill St, Atlanta, GA 30301" +201972,Bose SoundSport Headphones,1,99.99,05/19/19 17:20,"878 Hill St, San Francisco, CA 94016" +201973,AAA Batteries (4-pack),2,2.99,05/08/19 06:59,"813 12th St, Portland, OR 97035" +201974,AAA Batteries (4-pack),1,2.99,05/25/19 10:30,"439 9th St, New York City, NY 10001" +201975,Apple Airpods Headphones,1,150,05/13/19 10:01,"851 Sunset St, San Francisco, CA 94016" +201976,27in 4K Gaming Monitor,1,389.99,05/06/19 18:16,"537 Elm St, New York City, NY 10001" +201977,USB-C Charging Cable,1,11.95,05/11/19 18:55,"865 Center St, Los Angeles, CA 90001" +201978,34in Ultrawide Monitor,1,379.99,05/22/19 23:41,"857 River St, Seattle, WA 98101" +201979,27in 4K Gaming Monitor,1,389.99,05/17/19 17:38,"743 Cherry St, San Francisco, CA 94016" +201980,Macbook Pro Laptop,1,1700,05/16/19 22:14,"137 10th St, Seattle, WA 98101" +201981,AA Batteries (4-pack),2,3.84,05/29/19 11:51,"838 11th St, Austin, TX 73301" +201982,Lightning Charging Cable,1,14.95,05/08/19 23:31,"815 Walnut St, Los Angeles, CA 90001" +201983,AA Batteries (4-pack),1,3.84,05/05/19 19:45,"433 Center St, Los Angeles, CA 90001" +201984,USB-C Charging Cable,1,11.95,05/16/19 16:36,"496 Jackson St, San Francisco, CA 94016" +201985,20in Monitor,1,109.99,05/11/19 10:25,"756 Highland St, Atlanta, GA 30301" +201986,Lightning Charging Cable,1,14.95,05/31/19 18:16,"255 Church St, San Francisco, CA 94016" +201987,27in 4K Gaming Monitor,1,389.99,05/26/19 20:44,"925 Hill St, Austin, TX 73301" +201988,Wired Headphones,1,11.99,05/16/19 07:25,"971 Park St, Boston, MA 02215" +201989,34in Ultrawide Monitor,1,379.99,05/26/19 19:29,"912 West St, Atlanta, GA 30301" +201990,Lightning Charging Cable,1,14.95,05/16/19 21:10,"604 Willow St, Boston, MA 02215" +201991,20in Monitor,1,109.99,05/15/19 14:01,"418 Church St, Dallas, TX 75001" +201992,USB-C Charging Cable,1,11.95,05/25/19 10:07,"536 2nd St, San Francisco, CA 94016" +201993,AAA Batteries (4-pack),1,2.99,05/20/19 13:48,"265 Walnut St, San Francisco, CA 94016" +201994,USB-C Charging Cable,1,11.95,05/05/19 10:08,"654 Adams St, San Francisco, CA 94016" +201995,AA Batteries (4-pack),1,3.84,05/15/19 18:58,"817 8th St, Seattle, WA 98101" +201996,AAA Batteries (4-pack),1,2.99,05/01/19 14:45,"500 Maple St, Los Angeles, CA 90001" +201997,USB-C Charging Cable,1,11.95,05/05/19 17:37,"898 2nd St, Los Angeles, CA 90001" +201998,USB-C Charging Cable,1,11.95,05/12/19 20:26,"951 11th St, Austin, TX 73301" +201999,Wired Headphones,1,11.99,05/03/19 23:34,"309 Walnut St, Los Angeles, CA 90001" +202000,Macbook Pro Laptop,1,1700,05/05/19 23:25,"548 Ridge St, San Francisco, CA 94016" +202000,USB-C Charging Cable,1,11.95,05/05/19 23:25,"548 Ridge St, San Francisco, CA 94016" +202001,USB-C Charging Cable,1,11.95,05/18/19 19:31,"716 9th St, New York City, NY 10001" +202002,Lightning Charging Cable,1,14.95,05/27/19 18:43,"446 5th St, Los Angeles, CA 90001" +202003,AA Batteries (4-pack),1,3.84,05/13/19 20:45,"512 Park St, San Francisco, CA 94016" +202004,AA Batteries (4-pack),1,3.84,05/23/19 09:30,"889 13th St, Seattle, WA 98101" +202005,Lightning Charging Cable,1,14.95,05/15/19 12:56,"991 Ridge St, Seattle, WA 98101" +202006,USB-C Charging Cable,1,11.95,05/05/19 17:01,"882 Lake St, Los Angeles, CA 90001" +202007,USB-C Charging Cable,1,11.95,05/30/19 22:12,"447 Elm St, Boston, MA 02215" +202008,AAA Batteries (4-pack),2,2.99,05/20/19 16:49,"271 Cedar St, San Francisco, CA 94016" +202009,27in FHD Monitor,1,149.99,05/22/19 21:48,"698 Cedar St, San Francisco, CA 94016" +202010,ThinkPad Laptop,1,999.99,05/11/19 15:16,"503 Madison St, Seattle, WA 98101" +202011,Bose SoundSport Headphones,1,99.99,05/25/19 11:10,"288 Park St, Boston, MA 02215" +202012,Macbook Pro Laptop,1,1700,05/03/19 01:49,"397 Chestnut St, New York City, NY 10001" +202013,Bose SoundSport Headphones,1,99.99,05/01/19 07:53,"761 Hill St, Boston, MA 02215" +202014,USB-C Charging Cable,1,11.95,05/05/19 12:44,"596 12th St, Los Angeles, CA 90001" +202015,Macbook Pro Laptop,1,1700,05/22/19 05:24,"372 River St, Seattle, WA 98101" +202016,Wired Headphones,1,11.99,05/08/19 13:32,"557 Hill St, Dallas, TX 75001" +202017,Lightning Charging Cable,1,14.95,05/29/19 17:56,"964 Lakeview St, Portland, OR 97035" +202018,27in 4K Gaming Monitor,1,389.99,05/04/19 18:50,"376 9th St, Austin, TX 73301" +202019,USB-C Charging Cable,1,11.95,05/23/19 19:07,"233 North St, Dallas, TX 75001" +202020,AAA Batteries (4-pack),2,2.99,05/19/19 12:33,"161 Washington St, Dallas, TX 75001" +202021,Apple Airpods Headphones,1,150,05/17/19 19:54,"131 10th St, Austin, TX 73301" +202022,Apple Airpods Headphones,1,150,05/19/19 20:54,"381 Pine St, Seattle, WA 98101" +202023,iPhone,1,700,05/02/19 21:51,"689 Walnut St, Boston, MA 02215" +202024,Wired Headphones,1,11.99,05/18/19 19:28,"718 Park St, Los Angeles, CA 90001" +202025,USB-C Charging Cable,1,11.95,05/07/19 11:04,"509 4th St, Boston, MA 02215" +202026,AAA Batteries (4-pack),1,2.99,05/23/19 20:11,"662 Dogwood St, Seattle, WA 98101" +202027,USB-C Charging Cable,1,11.95,05/22/19 14:24,"132 Lakeview St, San Francisco, CA 94016" +202028,Bose SoundSport Headphones,1,99.99,05/20/19 14:45,"398 Wilson St, Boston, MA 02215" +202029,Lightning Charging Cable,1,14.95,05/02/19 13:08,"970 Ridge St, New York City, NY 10001" +202030,Google Phone,1,600,05/19/19 05:01,"577 Lincoln St, Atlanta, GA 30301" +202031,20in Monitor,1,109.99,05/04/19 21:57,"282 11th St, Boston, MA 02215" +202032,Wired Headphones,1,11.99,05/17/19 16:33,"600 1st St, San Francisco, CA 94016" +202033,Wired Headphones,1,11.99,05/17/19 13:46,"809 8th St, New York City, NY 10001" +202034,USB-C Charging Cable,2,11.95,05/13/19 21:37,"210 River St, San Francisco, CA 94016" +202035,34in Ultrawide Monitor,1,379.99,05/11/19 08:42,"812 Wilson St, Seattle, WA 98101" +202035,34in Ultrawide Monitor,1,379.99,05/11/19 08:42,"812 Wilson St, Seattle, WA 98101" +202036,AA Batteries (4-pack),4,3.84,05/14/19 08:29,"703 Highland St, Los Angeles, CA 90001" +202037,Apple Airpods Headphones,1,150,05/31/19 19:54,"213 Chestnut St, Seattle, WA 98101" +202038,27in FHD Monitor,1,149.99,05/21/19 18:43,"65 Walnut St, San Francisco, CA 94016" +202039,Apple Airpods Headphones,1,150,05/20/19 18:44,"830 Forest St, Austin, TX 73301" +202040,Bose SoundSport Headphones,1,99.99,05/28/19 22:47,"766 5th St, Seattle, WA 98101" +202041,Lightning Charging Cable,1,14.95,05/11/19 17:54,"817 Johnson St, Portland, OR 97035" +202042,20in Monitor,1,109.99,05/05/19 14:18,"651 14th St, Seattle, WA 98101" +202043,Lightning Charging Cable,1,14.95,05/04/19 13:19,"437 Maple St, San Francisco, CA 94016" +202044,Apple Airpods Headphones,1,150,05/30/19 17:12,"934 2nd St, Atlanta, GA 30301" +202045,34in Ultrawide Monitor,1,379.99,05/27/19 10:27,"60 6th St, San Francisco, CA 94016" +202046,Wired Headphones,1,11.99,05/09/19 20:47,"374 Lakeview St, San Francisco, CA 94016" +202047,Bose SoundSport Headphones,1,99.99,05/31/19 23:11,"374 13th St, New York City, NY 10001" +202048,USB-C Charging Cable,1,11.95,05/22/19 10:28,"789 Spruce St, Boston, MA 02215" +202049,Google Phone,1,600,05/23/19 16:40,"228 14th St, San Francisco, CA 94016" +202050,Vareebadd Phone,1,400,05/18/19 11:17,"305 Spruce St, Los Angeles, CA 90001" +202051,AA Batteries (4-pack),1,3.84,05/30/19 16:04,"967 Madison St, Dallas, TX 75001" +202052,iPhone,1,700,05/06/19 15:57,"553 Dogwood St, Portland, ME 04101" +202053,AAA Batteries (4-pack),1,2.99,05/05/19 15:04,"687 Main St, San Francisco, CA 94016" +202054,Wired Headphones,1,11.99,05/26/19 14:00,"672 Madison St, San Francisco, CA 94016" +202055,27in 4K Gaming Monitor,1,389.99,05/23/19 09:56,"192 2nd St, New York City, NY 10001" +202056,AA Batteries (4-pack),2,3.84,05/14/19 23:04,"330 Lakeview St, San Francisco, CA 94016" +202057,Macbook Pro Laptop,1,1700,05/04/19 19:43,"904 2nd St, Portland, OR 97035" +202058,Lightning Charging Cable,1,14.95,05/12/19 09:15,"921 West St, San Francisco, CA 94016" +202059,Apple Airpods Headphones,1,150,05/20/19 13:04,"787 West St, New York City, NY 10001" +202060,AAA Batteries (4-pack),1,2.99,05/21/19 08:29,"178 Pine St, Los Angeles, CA 90001" +202061,Lightning Charging Cable,1,14.95,05/31/19 13:42,"455 Sunset St, San Francisco, CA 94016" +202062,AA Batteries (4-pack),3,3.84,05/14/19 22:40,"687 Cedar St, New York City, NY 10001" +202063,AAA Batteries (4-pack),2,2.99,05/08/19 14:55,"37 5th St, Seattle, WA 98101" +202063,Google Phone,1,600,05/08/19 14:55,"37 5th St, Seattle, WA 98101" +202064,Google Phone,1,600,05/22/19 17:52,"33 Maple St, San Francisco, CA 94016" +202065,20in Monitor,1,109.99,05/01/19 07:45,"67 Madison St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +202066,Apple Airpods Headphones,1,150,05/05/19 18:20,"272 Johnson St, Dallas, TX 75001" +202067,AAA Batteries (4-pack),1,2.99,05/09/19 07:56,"775 12th St, San Francisco, CA 94016" +202068,Wired Headphones,2,11.99,05/21/19 20:05,"140 Center St, Seattle, WA 98101" +202069,AAA Batteries (4-pack),1,2.99,05/31/19 14:54,"943 Cherry St, Dallas, TX 75001" +202070,AAA Batteries (4-pack),1,2.99,05/23/19 17:21,"247 North St, Portland, OR 97035" +202071,Apple Airpods Headphones,1,150,05/04/19 20:59,"926 Center St, Austin, TX 73301" +202072,Lightning Charging Cable,1,14.95,05/25/19 22:35,"870 Ridge St, Seattle, WA 98101" +202073,Apple Airpods Headphones,1,150,05/09/19 22:00,"165 Johnson St, San Francisco, CA 94016" +202074,Google Phone,1,600,05/08/19 16:08,"975 11th St, Atlanta, GA 30301" +202075,Flatscreen TV,1,300,05/10/19 00:03,"232 Walnut St, Atlanta, GA 30301" +202076,AA Batteries (4-pack),1,3.84,05/02/19 12:40,"991 Hill St, San Francisco, CA 94016" +202077,LG Washing Machine,1,600.0,05/24/19 22:40,"568 Cedar St, Austin, TX 73301" +202078,Wired Headphones,1,11.99,05/18/19 14:45,"148 Cedar St, New York City, NY 10001" +202079,Apple Airpods Headphones,1,150,05/18/19 14:18,"880 10th St, Los Angeles, CA 90001" +202080,Wired Headphones,1,11.99,05/07/19 08:39,"445 Maple St, Portland, ME 04101" +202081,Bose SoundSport Headphones,1,99.99,05/17/19 16:52,"436 Chestnut St, San Francisco, CA 94016" +202082,Lightning Charging Cable,1,14.95,05/14/19 18:32,"256 North St, Dallas, TX 75001" +202083,Lightning Charging Cable,1,14.95,05/19/19 20:37,"671 Ridge St, Portland, ME 04101" +202084,USB-C Charging Cable,1,11.95,05/03/19 08:54,"447 Elm St, New York City, NY 10001" +202085,AAA Batteries (4-pack),1,2.99,05/27/19 03:21,"415 River St, San Francisco, CA 94016" +202086,AA Batteries (4-pack),2,3.84,05/15/19 17:40,"382 Ridge St, San Francisco, CA 94016" +202087,27in 4K Gaming Monitor,1,389.99,05/21/19 13:22,"389 Dogwood St, San Francisco, CA 94016" +202088,Wired Headphones,1,11.99,05/09/19 20:26,"650 Lincoln St, Boston, MA 02215" +202089,Bose SoundSport Headphones,1,99.99,05/10/19 12:45,"716 12th St, San Francisco, CA 94016" +202090,AA Batteries (4-pack),2,3.84,05/30/19 18:05,"830 Main St, New York City, NY 10001" +202091,Wired Headphones,1,11.99,05/18/19 15:00,"137 6th St, Los Angeles, CA 90001" +202092,AA Batteries (4-pack),1,3.84,05/10/19 14:57,"412 Hickory St, San Francisco, CA 94016" +202093,34in Ultrawide Monitor,1,379.99,05/06/19 22:00,"474 Church St, Boston, MA 02215" +202094,Apple Airpods Headphones,1,150,05/10/19 07:02,"703 Wilson St, San Francisco, CA 94016" +202095,USB-C Charging Cable,1,11.95,05/18/19 08:25,"439 Main St, Seattle, WA 98101" +202096,AAA Batteries (4-pack),2,2.99,05/19/19 12:30,"496 West St, New York City, NY 10001" +202097,AA Batteries (4-pack),1,3.84,05/06/19 00:14,"592 5th St, Los Angeles, CA 90001" +202098,Wired Headphones,1,11.99,05/05/19 21:08,"286 Sunset St, Seattle, WA 98101" +202099,27in FHD Monitor,1,149.99,05/14/19 11:11,"110 Willow St, Los Angeles, CA 90001" +202100,34in Ultrawide Monitor,1,379.99,05/23/19 15:22,"564 Spruce St, Portland, OR 97035" +202101,Bose SoundSport Headphones,1,99.99,05/27/19 13:47,"652 West St, Portland, OR 97035" +202102,iPhone,1,700,05/30/19 12:39,"405 Chestnut St, San Francisco, CA 94016" +202103,Lightning Charging Cable,1,14.95,05/19/19 04:53,"337 Walnut St, Seattle, WA 98101" +202104,iPhone,1,700,05/08/19 22:34,"355 Willow St, Seattle, WA 98101" +202105,Wired Headphones,1,11.99,05/23/19 13:24,"314 10th St, San Francisco, CA 94016" +202106,AAA Batteries (4-pack),1,2.99,05/23/19 16:18,"913 7th St, San Francisco, CA 94016" +202107,Apple Airpods Headphones,1,150,05/28/19 20:21,"577 Cedar St, Dallas, TX 75001" +202107,Apple Airpods Headphones,1,150,05/28/19 20:21,"577 Cedar St, Dallas, TX 75001" +202108,USB-C Charging Cable,1,11.95,05/10/19 00:33,"287 Main St, Austin, TX 73301" +202109,AA Batteries (4-pack),1,3.84,05/19/19 00:05,"912 Cedar St, Portland, ME 04101" +202110,Macbook Pro Laptop,1,1700,05/01/19 08:42,"56 Washington St, Los Angeles, CA 90001" +202111,Bose SoundSport Headphones,1,99.99,05/25/19 18:08,"299 Jackson St, New York City, NY 10001" +202112,Bose SoundSport Headphones,1,99.99,05/12/19 15:55,"858 8th St, Los Angeles, CA 90001" +202113,34in Ultrawide Monitor,1,379.99,05/27/19 01:36,"997 Lincoln St, Boston, MA 02215" +202114,Lightning Charging Cable,1,14.95,05/07/19 09:30,"472 Walnut St, San Francisco, CA 94016" +202115,34in Ultrawide Monitor,1,379.99,05/07/19 19:04,"836 13th St, Dallas, TX 75001" +202116,AA Batteries (4-pack),1,3.84,05/17/19 18:25,"342 Maple St, New York City, NY 10001" +202117,AAA Batteries (4-pack),2,2.99,05/17/19 14:10,"457 Jackson St, Boston, MA 02215" +202118,34in Ultrawide Monitor,1,379.99,05/15/19 12:27,"907 Highland St, Boston, MA 02215" +202119,LG Washing Machine,1,600.0,05/24/19 18:51,"833 8th St, Dallas, TX 75001" +202120,AA Batteries (4-pack),1,3.84,05/31/19 11:17,"246 Church St, San Francisco, CA 94016" +202121,AA Batteries (4-pack),1,3.84,05/18/19 18:00,"378 Jefferson St, San Francisco, CA 94016" +202122,Apple Airpods Headphones,1,150,05/28/19 20:44,"875 Pine St, Boston, MA 02215" +202123,Google Phone,1,600,05/20/19 12:42,"192 Main St, Atlanta, GA 30301" +202124,Lightning Charging Cable,1,14.95,05/22/19 19:38,"87 7th St, Atlanta, GA 30301" +202125,USB-C Charging Cable,1,11.95,05/19/19 11:02,"310 South St, Los Angeles, CA 90001" +202126,USB-C Charging Cable,1,11.95,05/07/19 12:02,"155 14th St, Atlanta, GA 30301" +202127,AA Batteries (4-pack),3,3.84,05/19/19 10:43,"373 Center St, Austin, TX 73301" +202128,Wired Headphones,2,11.99,05/25/19 21:19,"856 Sunset St, Seattle, WA 98101" +,,,,, +202129,20in Monitor,1,109.99,05/24/19 21:47,"164 Highland St, Atlanta, GA 30301" +202130,Apple Airpods Headphones,1,150,05/10/19 19:48,"91 6th St, San Francisco, CA 94016" +202131,ThinkPad Laptop,1,999.99,05/02/19 17:29,"412 Johnson St, Atlanta, GA 30301" +202132,USB-C Charging Cable,1,11.95,05/31/19 17:26,"871 Sunset St, Seattle, WA 98101" +202133,LG Dryer,1,600.0,05/01/19 18:05,"159 4th St, Austin, TX 73301" +202134,Google Phone,1,600,05/09/19 17:52,"716 Forest St, San Francisco, CA 94016" +202134,USB-C Charging Cable,1,11.95,05/09/19 17:52,"716 Forest St, San Francisco, CA 94016" +202135,20in Monitor,1,109.99,05/04/19 11:38,"388 1st St, Atlanta, GA 30301" +202136,Flatscreen TV,1,300,05/03/19 16:31,"316 6th St, Portland, OR 97035" +202137,AAA Batteries (4-pack),2,2.99,05/24/19 21:23,"31 6th St, Dallas, TX 75001" +202138,USB-C Charging Cable,1,11.95,05/25/19 23:33,"34 Maple St, San Francisco, CA 94016" +202139,AA Batteries (4-pack),1,3.84,05/06/19 18:15,"747 North St, Atlanta, GA 30301" +202140,Wired Headphones,1,11.99,05/20/19 18:35,"468 South St, San Francisco, CA 94016" +202141,Wired Headphones,1,11.99,05/23/19 18:10,"25 Main St, San Francisco, CA 94016" +202142,Wired Headphones,1,11.99,05/14/19 15:03,"936 Park St, San Francisco, CA 94016" +202143,AAA Batteries (4-pack),1,2.99,05/04/19 22:57,"59 Elm St, Boston, MA 02215" +202144,iPhone,1,700,05/14/19 16:11,"673 Park St, Dallas, TX 75001" +202145,Lightning Charging Cable,1,14.95,05/07/19 23:47,"208 12th St, Dallas, TX 75001" +202146,34in Ultrawide Monitor,1,379.99,05/15/19 16:29,"610 13th St, Los Angeles, CA 90001" +202147,Apple Airpods Headphones,1,150,05/30/19 22:17,"781 14th St, New York City, NY 10001" +202148,Lightning Charging Cable,1,14.95,05/13/19 15:22,"537 7th St, Boston, MA 02215" +202149,iPhone,1,700,05/22/19 08:28,"944 4th St, Boston, MA 02215" +202150,iPhone,1,700,05/11/19 19:42,"439 10th St, Boston, MA 02215" +202150,Lightning Charging Cable,1,14.95,05/11/19 19:42,"439 10th St, Boston, MA 02215" +202151,Lightning Charging Cable,1,14.95,05/17/19 19:50,"207 Hill St, Austin, TX 73301" +202152,Bose SoundSport Headphones,1,99.99,05/17/19 07:08,"504 Lincoln St, Boston, MA 02215" +202153,Bose SoundSport Headphones,1,99.99,05/23/19 14:30,"280 1st St, San Francisco, CA 94016" +202154,Wired Headphones,1,11.99,05/16/19 11:21,"363 Maple St, Seattle, WA 98101" +202155,34in Ultrawide Monitor,1,379.99,05/24/19 10:10,"168 12th St, Seattle, WA 98101" +202156,USB-C Charging Cable,1,11.95,05/01/19 14:44,"261 Walnut St, Boston, MA 02215" +202157,Apple Airpods Headphones,1,150,05/19/19 06:24,"476 Dogwood St, Dallas, TX 75001" +202158,Wired Headphones,2,11.99,05/21/19 19:59,"586 Lake St, Atlanta, GA 30301" +202159,USB-C Charging Cable,1,11.95,05/24/19 08:39,"451 North St, Boston, MA 02215" +202159,USB-C Charging Cable,1,11.95,05/24/19 08:39,"451 North St, Boston, MA 02215" +202160,Wired Headphones,1,11.99,05/27/19 18:12,"150 Chestnut St, Austin, TX 73301" +202161,34in Ultrawide Monitor,1,379.99,05/22/19 14:28,"985 River St, Los Angeles, CA 90001" +202162,27in FHD Monitor,1,149.99,05/20/19 19:36,"535 Jefferson St, San Francisco, CA 94016" +202163,AA Batteries (4-pack),3,3.84,05/31/19 20:16,"822 Jefferson St, San Francisco, CA 94016" +202164,Apple Airpods Headphones,1,150,05/23/19 20:56,"973 Cherry St, Dallas, TX 75001" +202165,ThinkPad Laptop,1,999.99,05/23/19 19:45,"724 North St, Seattle, WA 98101" +202166,Lightning Charging Cable,1,14.95,05/01/19 13:53,"664 Lakeview St, Portland, OR 97035" +202167,Wired Headphones,1,11.99,05/10/19 13:16,"709 Hickory St, Atlanta, GA 30301" +202168,Flatscreen TV,1,300,05/28/19 12:32,"711 Pine St, Dallas, TX 75001" +202169,AA Batteries (4-pack),1,3.84,05/18/19 17:04,"428 11th St, San Francisco, CA 94016" +202170,Macbook Pro Laptop,1,1700,05/09/19 17:28,"599 5th St, Los Angeles, CA 90001" +202171,Flatscreen TV,1,300,05/27/19 09:18,"816 Walnut St, Boston, MA 02215" +202172,AAA Batteries (4-pack),2,2.99,05/24/19 05:35,"839 Cedar St, San Francisco, CA 94016" +202173,Wired Headphones,1,11.99,05/20/19 09:13,"721 Hill St, Seattle, WA 98101" +202174,Lightning Charging Cable,1,14.95,05/18/19 14:14,"309 Maple St, Austin, TX 73301" +202175,27in FHD Monitor,1,149.99,05/14/19 19:10,"449 10th St, Boston, MA 02215" +202176,Lightning Charging Cable,1,14.95,05/05/19 18:28,"287 Hickory St, Boston, MA 02215" +202177,Apple Airpods Headphones,1,150,05/18/19 12:26,"404 13th St, New York City, NY 10001" +202178,27in FHD Monitor,1,149.99,05/22/19 21:30,"222 Jackson St, Dallas, TX 75001" +202179,USB-C Charging Cable,1,11.95,05/15/19 14:40,"253 Lake St, Los Angeles, CA 90001" +202180,27in FHD Monitor,1,149.99,05/26/19 16:40,"461 North St, Dallas, TX 75001" +202181,Google Phone,1,600,05/08/19 12:34,"921 Madison St, Seattle, WA 98101" +202181,USB-C Charging Cable,1,11.95,05/08/19 12:34,"921 Madison St, Seattle, WA 98101" +202182,USB-C Charging Cable,1,11.95,05/31/19 10:45,"661 Center St, Los Angeles, CA 90001" +202183,Apple Airpods Headphones,1,150,05/13/19 22:31,"776 Willow St, Atlanta, GA 30301" +202184,USB-C Charging Cable,1,11.95,05/12/19 13:46,"545 Hill St, New York City, NY 10001" +202185,Lightning Charging Cable,1,14.95,05/27/19 19:07,"504 Main St, Los Angeles, CA 90001" +202186,AA Batteries (4-pack),1,3.84,05/22/19 11:22,"436 Jackson St, Dallas, TX 75001" +202186,iPhone,1,700,05/22/19 11:22,"436 Jackson St, Dallas, TX 75001" +202187,USB-C Charging Cable,1,11.95,05/02/19 14:47,"193 Cedar St, Portland, ME 04101" +202188,AA Batteries (4-pack),1,3.84,05/01/19 06:40,"716 7th St, Portland, ME 04101" +202189,AA Batteries (4-pack),2,3.84,05/04/19 10:56,"724 Spruce St, Austin, TX 73301" +202190,USB-C Charging Cable,1,11.95,05/11/19 22:12,"371 North St, Los Angeles, CA 90001" +202191,Wired Headphones,1,11.99,05/13/19 11:50,"60 Madison St, Dallas, TX 75001" +202192,34in Ultrawide Monitor,1,379.99,05/18/19 20:16,"301 Hill St, New York City, NY 10001" +202193,Wired Headphones,1,11.99,05/12/19 11:18,"777 Ridge St, New York City, NY 10001" +202194,AA Batteries (4-pack),1,3.84,05/05/19 16:33,"462 Pine St, San Francisco, CA 94016" +202195,Flatscreen TV,1,300,05/30/19 14:00,"308 Walnut St, San Francisco, CA 94016" +202196,20in Monitor,1,109.99,05/18/19 01:52,"661 1st St, Austin, TX 73301" +202197,AAA Batteries (4-pack),2,2.99,05/25/19 21:18,"588 Cherry St, San Francisco, CA 94016" +202198,AAA Batteries (4-pack),2,2.99,05/01/19 11:50,"180 Cherry St, Boston, MA 02215" +202199,USB-C Charging Cable,1,11.95,05/07/19 20:04,"149 Washington St, Portland, OR 97035" +202200,Bose SoundSport Headphones,1,99.99,05/20/19 02:53,"79 River St, San Francisco, CA 94016" +202201,Wired Headphones,1,11.99,05/27/19 16:37,"68 Main St, Dallas, TX 75001" +202202,AAA Batteries (4-pack),1,2.99,05/09/19 20:12,"413 Willow St, Austin, TX 73301" +202203,iPhone,1,700,05/16/19 13:21,"663 Maple St, Atlanta, GA 30301" +202204,Lightning Charging Cable,1,14.95,05/13/19 18:09,"561 Church St, Los Angeles, CA 90001" +202205,Bose SoundSport Headphones,1,99.99,05/05/19 20:14,"989 13th St, Dallas, TX 75001" +202206,LG Washing Machine,1,600.0,05/18/19 13:37,"565 Pine St, Dallas, TX 75001" +202207,ThinkPad Laptop,1,999.99,05/24/19 15:59,"868 Dogwood St, Austin, TX 73301" +202208,AA Batteries (4-pack),2,3.84,05/09/19 13:59,"497 Walnut St, Los Angeles, CA 90001" +202209,AA Batteries (4-pack),2,3.84,05/21/19 17:20,"457 Forest St, Seattle, WA 98101" +202210,Lightning Charging Cable,1,14.95,05/22/19 23:10,"158 North St, San Francisco, CA 94016" +202211,Apple Airpods Headphones,1,150,05/05/19 12:54,"296 6th St, Boston, MA 02215" +202212,Lightning Charging Cable,1,14.95,05/26/19 11:08,"538 7th St, Boston, MA 02215" +202213,Lightning Charging Cable,1,14.95,05/23/19 17:34,"688 South St, Austin, TX 73301" +202214,Wired Headphones,1,11.99,05/12/19 22:01,"151 4th St, San Francisco, CA 94016" +202215,34in Ultrawide Monitor,1,379.99,05/05/19 10:38,"88 Forest St, Seattle, WA 98101" +202216,Wired Headphones,1,11.99,05/10/19 13:42,"902 Sunset St, Los Angeles, CA 90001" +202217,34in Ultrawide Monitor,1,379.99,05/24/19 14:51,"232 Adams St, San Francisco, CA 94016" +202218,34in Ultrawide Monitor,1,379.99,05/09/19 11:32,"512 Main St, Seattle, WA 98101" +202219,Wired Headphones,1,11.99,05/15/19 18:59,"427 Chestnut St, San Francisco, CA 94016" +202220,27in FHD Monitor,1,149.99,05/31/19 21:21,"747 Willow St, New York City, NY 10001" +202221,USB-C Charging Cable,1,11.95,05/25/19 20:18,"823 12th St, Boston, MA 02215" +202222,Flatscreen TV,1,300,05/31/19 19:40,"741 Maple St, New York City, NY 10001" +202223,AA Batteries (4-pack),1,3.84,05/11/19 16:12,"52 6th St, New York City, NY 10001" +202224,Apple Airpods Headphones,1,150,05/06/19 16:04,"134 Elm St, Seattle, WA 98101" +202225,AA Batteries (4-pack),1,3.84,05/03/19 08:54,"217 North St, Atlanta, GA 30301" +202226,Apple Airpods Headphones,1,150,05/24/19 16:13,"144 Maple St, Atlanta, GA 30301" +202227,AAA Batteries (4-pack),1,2.99,05/12/19 11:48,"29 Meadow St, San Francisco, CA 94016" +202228,USB-C Charging Cable,1,11.95,05/19/19 22:28,"723 14th St, Atlanta, GA 30301" +202229,Wired Headphones,1,11.99,05/16/19 00:47,"933 Washington St, San Francisco, CA 94016" +202230,Lightning Charging Cable,1,14.95,05/25/19 20:49,"952 Chestnut St, Boston, MA 02215" +202231,Wired Headphones,1,11.99,05/25/19 00:22,"63 Wilson St, Boston, MA 02215" +202232,USB-C Charging Cable,1,11.95,05/17/19 14:33,"862 Park St, New York City, NY 10001" +202233,Lightning Charging Cable,1,14.95,05/19/19 11:52,"420 Madison St, San Francisco, CA 94016" +202234,AAA Batteries (4-pack),1,2.99,05/28/19 06:59,"431 Walnut St, New York City, NY 10001" +202235,AAA Batteries (4-pack),2,2.99,05/14/19 23:42,"818 13th St, Boston, MA 02215" +202236,Lightning Charging Cable,1,14.95,05/03/19 14:58,"699 Dogwood St, Boston, MA 02215" +202237,ThinkPad Laptop,1,999.99,05/11/19 09:20,"239 Main St, Los Angeles, CA 90001" +202238,Wired Headphones,1,11.99,05/07/19 12:01,"926 Center St, Austin, TX 73301" +202239,USB-C Charging Cable,1,11.95,05/21/19 13:48,"866 Ridge St, Los Angeles, CA 90001" +202240,AA Batteries (4-pack),2,3.84,05/27/19 15:17,"495 Highland St, Los Angeles, CA 90001" +202241,Lightning Charging Cable,1,14.95,05/03/19 12:46,"645 Cedar St, Atlanta, GA 30301" +202242,Lightning Charging Cable,1,14.95,05/02/19 21:46,"611 North St, San Francisco, CA 94016" +202243,Lightning Charging Cable,1,14.95,05/07/19 13:26,"505 11th St, San Francisco, CA 94016" +202244,Google Phone,1,600,05/08/19 20:00,"236 Elm St, New York City, NY 10001" +202245,USB-C Charging Cable,1,11.95,05/25/19 22:36,"272 Chestnut St, New York City, NY 10001" +202246,Lightning Charging Cable,1,14.95,05/27/19 18:45,"553 Spruce St, Austin, TX 73301" +202247,AA Batteries (4-pack),1,3.84,05/27/19 20:51,"303 South St, Boston, MA 02215" +202248,Google Phone,1,600,05/30/19 12:59,"920 Adams St, Dallas, TX 75001" +202249,27in 4K Gaming Monitor,1,389.99,05/22/19 16:25,"226 Jackson St, Los Angeles, CA 90001" +202250,Apple Airpods Headphones,1,150,05/04/19 13:23,"580 13th St, Los Angeles, CA 90001" +202251,Google Phone,1,600,05/07/19 21:01,"456 Wilson St, Boston, MA 02215" +202252,Google Phone,1,600,05/02/19 11:07,"594 Highland St, Austin, TX 73301" +202253,Lightning Charging Cable,1,14.95,05/08/19 21:08,"860 Park St, San Francisco, CA 94016" +202254,Lightning Charging Cable,1,14.95,05/23/19 07:35,"197 Center St, New York City, NY 10001" +202255,34in Ultrawide Monitor,1,379.99,05/12/19 03:48,"641 North St, San Francisco, CA 94016" +202256,27in FHD Monitor,1,149.99,05/06/19 10:55,"997 10th St, Boston, MA 02215" +202257,Apple Airpods Headphones,1,150,05/20/19 11:55,"356 River St, San Francisco, CA 94016" +202258,27in FHD Monitor,1,149.99,05/15/19 20:27,"591 Pine St, San Francisco, CA 94016" +202259,Apple Airpods Headphones,1,150,05/21/19 18:17,"174 1st St, Atlanta, GA 30301" +202260,Wired Headphones,1,11.99,05/07/19 04:50,"725 Lincoln St, Boston, MA 02215" +202261,USB-C Charging Cable,1,11.95,05/09/19 15:12,"282 Church St, San Francisco, CA 94016" +202262,AA Batteries (4-pack),1,3.84,05/20/19 19:58,"241 Center St, San Francisco, CA 94016" +202263,Bose SoundSport Headphones,1,99.99,05/15/19 07:06,"907 Park St, Portland, OR 97035" +202264,Google Phone,1,600,05/01/19 15:02,"189 South St, Los Angeles, CA 90001" +202265,Lightning Charging Cable,1,14.95,05/31/19 12:43,"164 Lake St, New York City, NY 10001" +202266,Wired Headphones,1,11.99,05/30/19 08:23,"618 5th St, New York City, NY 10001" +202267,Wired Headphones,1,11.99,05/08/19 21:36,"22 5th St, Portland, OR 97035" +202268,34in Ultrawide Monitor,1,379.99,05/03/19 19:56,"559 1st St, Boston, MA 02215" +202269,Apple Airpods Headphones,1,150,05/23/19 17:33,"20 West St, San Francisco, CA 94016" +202270,USB-C Charging Cable,1,11.95,05/05/19 00:44,"912 Highland St, Boston, MA 02215" +202271,Apple Airpods Headphones,1,150,05/07/19 20:17,"103 Lake St, Austin, TX 73301" +202272,Lightning Charging Cable,1,14.95,05/26/19 15:32,"14 Willow St, San Francisco, CA 94016" +202273,Google Phone,1,600,05/26/19 22:09,"988 Wilson St, Atlanta, GA 30301" +202274,Flatscreen TV,1,300,05/17/19 14:50,"665 Spruce St, Boston, MA 02215" +202275,Lightning Charging Cable,2,14.95,05/03/19 22:00,"89 Willow St, San Francisco, CA 94016" +202276,Apple Airpods Headphones,1,150,05/29/19 20:25,"844 Highland St, New York City, NY 10001" +202277,AA Batteries (4-pack),1,3.84,05/09/19 11:58,"897 2nd St, Boston, MA 02215" +202278,Lightning Charging Cable,1,14.95,05/30/19 10:50,"884 Pine St, New York City, NY 10001" +202279,Lightning Charging Cable,1,14.95,05/25/19 22:52,"675 Hill St, Los Angeles, CA 90001" +202280,AA Batteries (4-pack),2,3.84,05/25/19 11:00,"578 Chestnut St, New York City, NY 10001" +202281,ThinkPad Laptop,1,999.99,05/13/19 13:08,"601 7th St, Boston, MA 02215" +202282,Bose SoundSport Headphones,1,99.99,05/03/19 13:12,"802 West St, Portland, OR 97035" +202283,27in 4K Gaming Monitor,1,389.99,05/19/19 10:36,"287 13th St, New York City, NY 10001" +202283,USB-C Charging Cable,2,11.95,05/19/19 10:36,"287 13th St, New York City, NY 10001" +202284,34in Ultrawide Monitor,1,379.99,05/03/19 19:19,"703 1st St, New York City, NY 10001" +202285,Macbook Pro Laptop,1,1700,05/28/19 11:53,"507 Highland St, Boston, MA 02215" +202286,Apple Airpods Headphones,1,150,05/28/19 16:20,"595 1st St, San Francisco, CA 94016" +202287,Macbook Pro Laptop,1,1700,05/28/19 18:55,"751 Lincoln St, Atlanta, GA 30301" +202288,USB-C Charging Cable,1,11.95,05/25/19 09:08,"53 11th St, Boston, MA 02215" +202289,Flatscreen TV,1,300,05/30/19 11:09,"347 Jefferson St, New York City, NY 10001" +202290,Bose SoundSport Headphones,1,99.99,05/12/19 13:03,"490 Meadow St, Atlanta, GA 30301" +202291,Vareebadd Phone,1,400,05/03/19 12:16,"227 West St, San Francisco, CA 94016" +202292,Wired Headphones,1,11.99,05/14/19 21:29,"282 6th St, Atlanta, GA 30301" +202293,ThinkPad Laptop,1,999.99,05/16/19 10:08,"190 Lake St, Dallas, TX 75001" +202294,AAA Batteries (4-pack),1,2.99,05/20/19 00:51,"550 Willow St, Dallas, TX 75001" +202294,Vareebadd Phone,1,400,05/20/19 00:51,"550 Willow St, Dallas, TX 75001" +202295,USB-C Charging Cable,1,11.95,05/03/19 17:56,"446 Main St, Dallas, TX 75001" +202296,AAA Batteries (4-pack),1,2.99,05/07/19 14:28,"731 Elm St, San Francisco, CA 94016" +202297,Lightning Charging Cable,1,14.95,05/27/19 23:57,"16 Center St, Atlanta, GA 30301" +202298,20in Monitor,1,109.99,05/09/19 20:11,"439 Hill St, New York City, NY 10001" +202299,34in Ultrawide Monitor,1,379.99,05/10/19 13:51,"265 Ridge St, San Francisco, CA 94016" +202300,Google Phone,1,600,05/25/19 19:03,"247 Cedar St, New York City, NY 10001" +202301,34in Ultrawide Monitor,1,379.99,05/20/19 00:13,"852 9th St, San Francisco, CA 94016" +202302,iPhone,1,700,05/21/19 14:15,"798 Spruce St, Dallas, TX 75001" +202303,Wired Headphones,1,11.99,05/06/19 15:24,"445 Cedar St, Seattle, WA 98101" +202304,AA Batteries (4-pack),1,3.84,05/08/19 18:34,"150 7th St, Seattle, WA 98101" +202305,27in FHD Monitor,1,149.99,05/29/19 17:28,"379 Jefferson St, San Francisco, CA 94016" +202306,Bose SoundSport Headphones,1,99.99,05/04/19 16:18,"336 Cedar St, Seattle, WA 98101" +202307,Apple Airpods Headphones,1,150,05/28/19 21:46,"753 Center St, New York City, NY 10001" +202308,AA Batteries (4-pack),1,3.84,05/19/19 11:40,"169 Pine St, Los Angeles, CA 90001" +202309,AAA Batteries (4-pack),1,2.99,05/03/19 22:44,"136 Hill St, San Francisco, CA 94016" +202310,AAA Batteries (4-pack),1,2.99,05/08/19 15:05,"957 North St, San Francisco, CA 94016" +202311,Wired Headphones,1,11.99,05/15/19 20:18,"662 Maple St, San Francisco, CA 94016" +202312,AAA Batteries (4-pack),1,2.99,05/06/19 21:17,"457 Dogwood St, San Francisco, CA 94016" +202313,Lightning Charging Cable,1,14.95,05/21/19 20:04,"139 Willow St, Los Angeles, CA 90001" +202314,Bose SoundSport Headphones,1,99.99,05/25/19 11:43,"902 14th St, San Francisco, CA 94016" +202315,Lightning Charging Cable,1,14.95,05/18/19 12:08,"520 Highland St, San Francisco, CA 94016" +202316,AAA Batteries (4-pack),1,2.99,05/17/19 22:08,"436 Cedar St, Dallas, TX 75001" +202317,Apple Airpods Headphones,1,150,05/20/19 01:23,"612 9th St, Dallas, TX 75001" +202318,27in 4K Gaming Monitor,1,389.99,05/29/19 09:49,"512 Johnson St, San Francisco, CA 94016" +202319,27in FHD Monitor,1,149.99,05/12/19 10:33,"563 Lake St, Austin, TX 73301" +202320,AAA Batteries (4-pack),1,2.99,05/09/19 20:01,"407 9th St, Atlanta, GA 30301" +202321,Wired Headphones,1,11.99,05/30/19 20:39,"904 Church St, Dallas, TX 75001" +202322,LG Washing Machine,1,600.0,05/17/19 15:53,"407 Elm St, San Francisco, CA 94016" +202323,Wired Headphones,1,11.99,05/15/19 10:32,"93 Maple St, San Francisco, CA 94016" +202324,ThinkPad Laptop,1,999.99,05/18/19 11:44,"27 Chestnut St, New York City, NY 10001" +202325,USB-C Charging Cable,1,11.95,05/22/19 08:26,"230 Madison St, San Francisco, CA 94016" +202325,AAA Batteries (4-pack),3,2.99,05/22/19 08:26,"230 Madison St, San Francisco, CA 94016" +202326,Macbook Pro Laptop,1,1700,05/13/19 16:36,"955 Hill St, Dallas, TX 75001" +202327,Macbook Pro Laptop,1,1700,05/03/19 12:30,"797 7th St, Seattle, WA 98101" +202328,Bose SoundSport Headphones,1,99.99,05/18/19 20:53,"955 Madison St, Boston, MA 02215" +202328,AA Batteries (4-pack),1,3.84,05/18/19 20:53,"955 Madison St, Boston, MA 02215" +202329,AA Batteries (4-pack),1,3.84,05/15/19 21:57,"425 6th St, San Francisco, CA 94016" +202330,Apple Airpods Headphones,1,150,05/24/19 23:36,"133 Jackson St, Atlanta, GA 30301" +202331,Wired Headphones,1,11.99,05/04/19 23:53,"836 West St, Portland, OR 97035" +202332,Bose SoundSport Headphones,1,99.99,05/01/19 11:08,"392 Chestnut St, New York City, NY 10001" +202333,Wired Headphones,1,11.99,05/01/19 14:53,"667 6th St, San Francisco, CA 94016" +202334,iPhone,1,700,05/17/19 16:23,"574 1st St, Seattle, WA 98101" +202335,AAA Batteries (4-pack),3,2.99,05/31/19 12:16,"287 Cedar St, Los Angeles, CA 90001" +202336,Google Phone,1,600,05/25/19 12:37,"600 Highland St, Atlanta, GA 30301" +202336,USB-C Charging Cable,1,11.95,05/25/19 12:37,"600 Highland St, Atlanta, GA 30301" +202337,Bose SoundSport Headphones,1,99.99,05/13/19 10:37,"788 Sunset St, Dallas, TX 75001" +202337,AAA Batteries (4-pack),1,2.99,05/13/19 10:37,"788 Sunset St, Dallas, TX 75001" +202338,27in FHD Monitor,1,149.99,05/09/19 20:33,"985 Walnut St, San Francisco, CA 94016" +202339,27in FHD Monitor,1,149.99,05/26/19 16:18,"106 Main St, Boston, MA 02215" +202340,AAA Batteries (4-pack),1,2.99,05/22/19 20:44,"659 River St, San Francisco, CA 94016" +202341,USB-C Charging Cable,1,11.95,05/28/19 22:27,"763 Cherry St, Austin, TX 73301" +202342,27in FHD Monitor,1,149.99,05/15/19 15:20,"280 2nd St, San Francisco, CA 94016" +202343,Apple Airpods Headphones,1,150,05/16/19 10:28,"682 10th St, San Francisco, CA 94016" +202344,Bose SoundSport Headphones,1,99.99,05/04/19 18:02,"26 14th St, Boston, MA 02215" +202345,Lightning Charging Cable,1,14.95,05/26/19 06:58,"902 Washington St, New York City, NY 10001" +202346,Lightning Charging Cable,2,14.95,05/28/19 16:00,"734 West St, Los Angeles, CA 90001" +202347,USB-C Charging Cable,1,11.95,05/19/19 09:50,"297 Dogwood St, Dallas, TX 75001" +202348,Lightning Charging Cable,1,14.95,05/11/19 16:22,"697 Forest St, New York City, NY 10001" +202349,AA Batteries (4-pack),1,3.84,05/16/19 12:55,"968 Cherry St, San Francisco, CA 94016" +202350,Wired Headphones,1,11.99,05/25/19 16:37,"795 Sunset St, Portland, OR 97035" +202351,iPhone,1,700,06/01/19 00:56,"74 11th St, Los Angeles, CA 90001" +202351,Lightning Charging Cable,1,14.95,06/01/19 00:56,"74 11th St, Los Angeles, CA 90001" +202352,Flatscreen TV,1,300,05/11/19 21:57,"716 6th St, New York City, NY 10001" +202353,iPhone,1,700,05/31/19 07:54,"780 Cedar St, New York City, NY 10001" +202354,AA Batteries (4-pack),1,3.84,05/27/19 13:12,"681 12th St, San Francisco, CA 94016" +202355,Bose SoundSport Headphones,1,99.99,05/19/19 22:19,"551 Spruce St, Atlanta, GA 30301" +202356,USB-C Charging Cable,1,11.95,05/20/19 09:10,"127 9th St, San Francisco, CA 94016" +202357,Wired Headphones,1,11.99,05/05/19 15:53,"100 Pine St, San Francisco, CA 94016" +202358,USB-C Charging Cable,1,11.95,05/17/19 08:15,"931 Meadow St, Portland, OR 97035" +202359,Lightning Charging Cable,1,14.95,05/22/19 18:30,"136 7th St, Dallas, TX 75001" +202360,AAA Batteries (4-pack),1,2.99,05/07/19 10:57,"279 Dogwood St, Boston, MA 02215" +202361,Apple Airpods Headphones,1,150,05/08/19 18:10,"468 South St, Boston, MA 02215" +202362,Wired Headphones,1,11.99,05/30/19 18:15,"995 Church St, Boston, MA 02215" +202363,USB-C Charging Cable,1,11.95,05/27/19 13:34,"211 South St, Austin, TX 73301" +202364,AAA Batteries (4-pack),1,2.99,05/08/19 14:54,"770 9th St, Seattle, WA 98101" +202365,AAA Batteries (4-pack),1,2.99,05/17/19 08:52,"517 Adams St, Atlanta, GA 30301" +202366,Lightning Charging Cable,1,14.95,05/29/19 21:48,"270 Main St, San Francisco, CA 94016" +202367,20in Monitor,1,109.99,05/04/19 17:22,"758 Wilson St, New York City, NY 10001" +202368,27in 4K Gaming Monitor,1,389.99,05/02/19 23:55,"853 Elm St, New York City, NY 10001" +202369,27in 4K Gaming Monitor,1,389.99,05/05/19 19:03,"224 Church St, Austin, TX 73301" +202370,Wired Headphones,1,11.99,05/08/19 12:02,"537 Chestnut St, Los Angeles, CA 90001" +202371,27in 4K Gaming Monitor,1,389.99,05/31/19 21:36,"940 Wilson St, Boston, MA 02215" +202372,AA Batteries (4-pack),1,3.84,05/13/19 09:20,"415 Main St, San Francisco, CA 94016" +202373,AAA Batteries (4-pack),1,2.99,05/01/19 13:43,"289 Maple St, Dallas, TX 75001" +202374,Macbook Pro Laptop,1,1700,05/20/19 15:38,"342 West St, Atlanta, GA 30301" +202375,27in 4K Gaming Monitor,1,389.99,05/01/19 22:50,"925 Lake St, San Francisco, CA 94016" +202376,Wired Headphones,1,11.99,05/02/19 14:24,"133 4th St, Austin, TX 73301" +202377,iPhone,1,700,05/04/19 22:32,"656 5th St, New York City, NY 10001" +202378,AA Batteries (4-pack),2,3.84,05/29/19 20:54,"518 7th St, Portland, OR 97035" +202379,Lightning Charging Cable,1,14.95,05/09/19 07:50,"678 6th St, New York City, NY 10001" +202380,Wired Headphones,1,11.99,05/05/19 15:28,"350 Ridge St, Los Angeles, CA 90001" +202381,AAA Batteries (4-pack),1,2.99,05/30/19 00:11,"690 South St, Los Angeles, CA 90001" +202382,AAA Batteries (4-pack),2,2.99,05/18/19 13:00,"226 Jefferson St, San Francisco, CA 94016" +202383,Apple Airpods Headphones,1,150,05/11/19 11:56,"502 10th St, San Francisco, CA 94016" +202384,Vareebadd Phone,1,400,05/31/19 20:47,"449 West St, San Francisco, CA 94016" +202385,AA Batteries (4-pack),1,3.84,05/15/19 12:21,"905 Lakeview St, Los Angeles, CA 90001" +202386,Bose SoundSport Headphones,1,99.99,05/03/19 09:56,"740 13th St, Boston, MA 02215" +202387,Google Phone,1,600,05/20/19 21:58,"127 2nd St, New York City, NY 10001" +202388,34in Ultrawide Monitor,1,379.99,05/14/19 06:41,"342 Maple St, Portland, OR 97035" +202389,USB-C Charging Cable,1,11.95,05/31/19 16:16,"820 Meadow St, Atlanta, GA 30301" +202390,27in FHD Monitor,1,149.99,05/18/19 14:26,"86 Pine St, New York City, NY 10001" +202391,USB-C Charging Cable,1,11.95,05/15/19 17:19,"618 10th St, Portland, OR 97035" +202392,Macbook Pro Laptop,1,1700,05/26/19 10:39,"151 Park St, Los Angeles, CA 90001" +202393,AA Batteries (4-pack),1,3.84,05/24/19 13:18,"158 Wilson St, Los Angeles, CA 90001" +202394,Lightning Charging Cable,1,14.95,05/03/19 16:24,"56 Washington St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +202395,34in Ultrawide Monitor,1,379.99,05/30/19 17:53,"483 Main St, San Francisco, CA 94016" +202396,Wired Headphones,1,11.99,05/13/19 16:08,"782 Madison St, Atlanta, GA 30301" +202396,USB-C Charging Cable,3,11.95,05/13/19 16:08,"782 Madison St, Atlanta, GA 30301" +202397,AAA Batteries (4-pack),4,2.99,05/27/19 12:27,"557 South St, Boston, MA 02215" +202398,Lightning Charging Cable,1,14.95,05/03/19 14:23,"477 Highland St, Boston, MA 02215" +202399,Bose SoundSport Headphones,1,99.99,05/13/19 13:32,"400 Willow St, Boston, MA 02215" +202399,AA Batteries (4-pack),1,3.84,05/13/19 13:32,"400 Willow St, Boston, MA 02215" +202400,USB-C Charging Cable,1,11.95,05/20/19 13:23,"943 11th St, Dallas, TX 75001" +202401,Lightning Charging Cable,2,14.95,05/29/19 21:23,"365 8th St, Dallas, TX 75001" +202402,AAA Batteries (4-pack),1,2.99,05/17/19 22:42,"475 4th St, San Francisco, CA 94016" +202403,Bose SoundSport Headphones,1,99.99,05/15/19 19:38,"561 Church St, Portland, OR 97035" +202404,Apple Airpods Headphones,1,150,05/17/19 20:29,"417 Madison St, San Francisco, CA 94016" +202405,USB-C Charging Cable,1,11.95,05/15/19 19:56,"236 Madison St, Dallas, TX 75001" +202406,27in FHD Monitor,1,149.99,05/02/19 16:34,"180 Lincoln St, New York City, NY 10001" +202407,Wired Headphones,1,11.99,05/27/19 20:22,"284 Dogwood St, Dallas, TX 75001" +202408,AA Batteries (4-pack),2,3.84,05/03/19 14:59,"86 Jefferson St, Los Angeles, CA 90001" +202409,USB-C Charging Cable,1,11.95,05/18/19 15:40,"800 Madison St, Los Angeles, CA 90001" +202410,Google Phone,1,600,05/22/19 20:07,"408 Spruce St, Austin, TX 73301" +202411,ThinkPad Laptop,1,999.99,05/11/19 15:11,"756 Lake St, Portland, OR 97035" +202412,34in Ultrawide Monitor,1,379.99,05/28/19 10:59,"561 9th St, New York City, NY 10001" +202413,Wired Headphones,1,11.99,05/12/19 14:26,"132 5th St, New York City, NY 10001" +202414,iPhone,1,700,05/21/19 13:32,"247 14th St, Los Angeles, CA 90001" +202414,Lightning Charging Cable,1,14.95,05/21/19 13:32,"247 14th St, Los Angeles, CA 90001" +202414,Wired Headphones,1,11.99,05/21/19 13:32,"247 14th St, Los Angeles, CA 90001" +202415,AA Batteries (4-pack),1,3.84,05/25/19 08:20,"481 Elm St, Boston, MA 02215" +202416,Bose SoundSport Headphones,1,99.99,05/17/19 20:59,"137 North St, Los Angeles, CA 90001" +202417,Lightning Charging Cable,1,14.95,05/17/19 09:55,"5 Walnut St, Austin, TX 73301" +202418,AAA Batteries (4-pack),2,2.99,05/08/19 22:28,"162 Washington St, Los Angeles, CA 90001" +202419,Flatscreen TV,1,300,05/28/19 18:24,"862 6th St, Atlanta, GA 30301" +202420,AA Batteries (4-pack),1,3.84,05/26/19 14:33,"172 Wilson St, Austin, TX 73301" +202421,Flatscreen TV,1,300,05/03/19 17:07,"373 Sunset St, Los Angeles, CA 90001" +202422,34in Ultrawide Monitor,1,379.99,05/20/19 13:39,"335 Cherry St, Los Angeles, CA 90001" +202423,AAA Batteries (4-pack),1,2.99,05/14/19 23:34,"544 Sunset St, Seattle, WA 98101" +202424,USB-C Charging Cable,1,11.95,05/09/19 00:20,"816 Adams St, Dallas, TX 75001" +202425,Lightning Charging Cable,1,14.95,05/03/19 10:37,"250 North St, Los Angeles, CA 90001" +202426,27in 4K Gaming Monitor,1,389.99,05/10/19 12:30,"248 4th St, Boston, MA 02215" +202427,Macbook Pro Laptop,1,1700,05/21/19 11:15,"528 Highland St, San Francisco, CA 94016" +202428,Wired Headphones,1,11.99,05/14/19 16:40,"195 West St, Boston, MA 02215" +202429,Lightning Charging Cable,1,14.95,05/22/19 12:23,"663 14th St, San Francisco, CA 94016" +202430,Apple Airpods Headphones,1,150,05/21/19 11:30,"682 River St, Portland, OR 97035" +202431,34in Ultrawide Monitor,1,379.99,05/12/19 12:38,"483 Jackson St, San Francisco, CA 94016" +202432,AAA Batteries (4-pack),1,2.99,05/24/19 03:55,"538 North St, San Francisco, CA 94016" +202433,AAA Batteries (4-pack),2,2.99,05/19/19 13:07,"609 Madison St, New York City, NY 10001" +202434,Google Phone,1,600,05/24/19 12:36,"937 5th St, Dallas, TX 75001" +202434,USB-C Charging Cable,1,11.95,05/24/19 12:36,"937 5th St, Dallas, TX 75001" +202435,Apple Airpods Headphones,1,150,05/04/19 13:58,"372 2nd St, San Francisco, CA 94016" +202436,Apple Airpods Headphones,1,150,05/29/19 19:12,"390 Dogwood St, San Francisco, CA 94016" +202437,Bose SoundSport Headphones,1,99.99,05/02/19 14:32,"209 Johnson St, San Francisco, CA 94016" +202438,Wired Headphones,2,11.99,05/13/19 17:26,"746 Main St, Seattle, WA 98101" +202439,iPhone,1,700,05/26/19 18:58,"432 Lincoln St, San Francisco, CA 94016" +202439,Lightning Charging Cable,2,14.95,05/26/19 18:58,"432 Lincoln St, San Francisco, CA 94016" +202440,ThinkPad Laptop,1,999.99,05/22/19 06:47,"892 Hickory St, Atlanta, GA 30301" +202441,iPhone,1,700,05/31/19 16:07,"745 1st St, Boston, MA 02215" +202441,Lightning Charging Cable,1,14.95,05/31/19 16:07,"745 1st St, Boston, MA 02215" +202442,AAA Batteries (4-pack),1,2.99,05/04/19 22:10,"543 Center St, Seattle, WA 98101" +202443,AAA Batteries (4-pack),1,2.99,05/06/19 21:15,"603 Wilson St, New York City, NY 10001" +202444,Lightning Charging Cable,1,14.95,05/23/19 23:09,"202 Maple St, San Francisco, CA 94016" +202445,Lightning Charging Cable,1,14.95,05/23/19 18:56,"794 Adams St, Seattle, WA 98101" +202446,Apple Airpods Headphones,1,150,05/29/19 08:07,"722 5th St, Los Angeles, CA 90001" +202447,AAA Batteries (4-pack),1,2.99,05/05/19 12:12,"141 Chestnut St, San Francisco, CA 94016" +202448,Google Phone,1,600,05/28/19 11:12,"754 West St, San Francisco, CA 94016" +202449,Wired Headphones,1,11.99,05/08/19 14:59,"955 Chestnut St, Portland, OR 97035" +202450,USB-C Charging Cable,3,11.95,05/25/19 15:20,"254 Meadow St, Boston, MA 02215" +202451,Bose SoundSport Headphones,1,99.99,05/17/19 15:15,"584 10th St, Boston, MA 02215" +202452,USB-C Charging Cable,1,11.95,05/07/19 19:38,"527 Jefferson St, Boston, MA 02215" +202453,Google Phone,1,600,05/21/19 00:25,"279 North St, Los Angeles, CA 90001" +202454,Macbook Pro Laptop,1,1700,05/15/19 12:32,"783 Ridge St, Atlanta, GA 30301" +202455,iPhone,1,700,05/31/19 16:49,"710 Church St, Austin, TX 73301" +202456,Lightning Charging Cable,1,14.95,05/12/19 15:51,"613 Park St, San Francisco, CA 94016" +202457,Bose SoundSport Headphones,1,99.99,05/27/19 09:42,"78 Johnson St, San Francisco, CA 94016" +202458,Bose SoundSport Headphones,1,99.99,05/13/19 01:21,"167 8th St, New York City, NY 10001" +202459,27in 4K Gaming Monitor,1,389.99,05/20/19 10:16,"679 10th St, Los Angeles, CA 90001" +202460,Wired Headphones,1,11.99,05/08/19 19:46,"747 2nd St, Atlanta, GA 30301" +202461,Apple Airpods Headphones,1,150,05/11/19 13:48,"304 Jefferson St, Dallas, TX 75001" +202462,Wired Headphones,1,11.99,05/27/19 19:07,"275 Dogwood St, Boston, MA 02215" +202463,AAA Batteries (4-pack),4,2.99,05/21/19 18:23,"63 Sunset St, Atlanta, GA 30301" +202464,27in 4K Gaming Monitor,1,389.99,05/03/19 18:55,"730 6th St, Los Angeles, CA 90001" +202465,AAA Batteries (4-pack),3,2.99,05/16/19 05:21,"559 12th St, San Francisco, CA 94016" +202466,LG Washing Machine,1,600.0,05/22/19 09:50,"836 8th St, Boston, MA 02215" +202467,27in 4K Gaming Monitor,1,389.99,05/10/19 20:20,"153 Pine St, San Francisco, CA 94016" +202468,Lightning Charging Cable,1,14.95,05/13/19 17:21,"15 Ridge St, Seattle, WA 98101" +202469,iPhone,1,700,05/26/19 12:53,"865 River St, Dallas, TX 75001" +202470,Apple Airpods Headphones,1,150,05/25/19 20:39,"49 Cherry St, Los Angeles, CA 90001" +202471,Flatscreen TV,1,300,05/31/19 09:54,"440 Park St, Los Angeles, CA 90001" +202472,Lightning Charging Cable,1,14.95,05/12/19 13:17,"567 Main St, Portland, OR 97035" +202473,USB-C Charging Cable,1,11.95,05/18/19 08:29,"3 Main St, Boston, MA 02215" +202474,Lightning Charging Cable,1,14.95,05/07/19 17:31,"31 Wilson St, Austin, TX 73301" +202475,ThinkPad Laptop,1,999.99,05/04/19 19:00,"219 Lake St, New York City, NY 10001" +202476,Bose SoundSport Headphones,1,99.99,05/27/19 23:36,"479 Lincoln St, Portland, OR 97035" +202477,USB-C Charging Cable,1,11.95,05/17/19 14:00,"653 Pine St, San Francisco, CA 94016" +202478,Lightning Charging Cable,1,14.95,05/09/19 08:45,"405 Walnut St, San Francisco, CA 94016" +202479,Apple Airpods Headphones,1,150,05/13/19 16:49,"525 13th St, Austin, TX 73301" +202480,USB-C Charging Cable,1,11.95,05/15/19 18:43,"727 Hill St, San Francisco, CA 94016" +202481,Lightning Charging Cable,2,14.95,05/29/19 19:51,"103 Lake St, Dallas, TX 75001" +202482,AA Batteries (4-pack),1,3.84,05/04/19 15:43,"315 Johnson St, Portland, ME 04101" +202483,27in FHD Monitor,1,149.99,05/08/19 11:24,"660 11th St, New York City, NY 10001" +202484,Google Phone,1,600,05/26/19 09:36,"275 Maple St, Portland, OR 97035" +202485,34in Ultrawide Monitor,1,379.99,05/20/19 08:59,"787 South St, San Francisco, CA 94016" +202486,USB-C Charging Cable,1,11.95,05/26/19 11:29,"32 Center St, Austin, TX 73301" +202487,AAA Batteries (4-pack),2,2.99,05/17/19 18:53,"884 Ridge St, Boston, MA 02215" +202488,iPhone,1,700,05/02/19 19:44,"800 Dogwood St, Dallas, TX 75001" +202489,34in Ultrawide Monitor,1,379.99,05/09/19 19:33,"335 Cedar St, Boston, MA 02215" +202490,Apple Airpods Headphones,1,150,05/06/19 17:19,"280 Cherry St, San Francisco, CA 94016" +202491,iPhone,1,700,05/26/19 13:59,"184 10th St, San Francisco, CA 94016" +202492,AA Batteries (4-pack),1,3.84,05/13/19 20:23,"833 9th St, Boston, MA 02215" +202493,Bose SoundSport Headphones,1,99.99,05/24/19 13:52,"268 13th St, San Francisco, CA 94016" +202494,Wired Headphones,1,11.99,05/19/19 17:22,"410 Main St, Dallas, TX 75001" +202495,Flatscreen TV,1,300,05/28/19 16:57,"303 11th St, Dallas, TX 75001" +202496,Lightning Charging Cable,1,14.95,05/10/19 22:42,"760 River St, San Francisco, CA 94016" +202497,ThinkPad Laptop,1,999.99,05/16/19 18:32,"120 Madison St, San Francisco, CA 94016" +202498,AA Batteries (4-pack),1,3.84,05/13/19 19:26,"442 Sunset St, San Francisco, CA 94016" +202499,Wired Headphones,1,11.99,05/06/19 15:27,"186 14th St, Los Angeles, CA 90001" +202500,USB-C Charging Cable,1,11.95,05/29/19 21:51,"725 Center St, Dallas, TX 75001" +202501,iPhone,1,700,05/18/19 18:05,"966 Madison St, Atlanta, GA 30301" +202502,Lightning Charging Cable,1,14.95,05/26/19 13:44,"62 Lincoln St, Dallas, TX 75001" +202503,iPhone,1,700,05/10/19 20:17,"24 Lakeview St, Portland, OR 97035" +202503,Lightning Charging Cable,1,14.95,05/10/19 20:17,"24 Lakeview St, Portland, OR 97035" +202504,27in FHD Monitor,1,149.99,05/14/19 17:59,"701 West St, San Francisco, CA 94016" +202505,AAA Batteries (4-pack),3,2.99,05/29/19 20:29,"551 2nd St, Los Angeles, CA 90001" +202506,Google Phone,1,600,05/12/19 01:41,"109 Meadow St, Austin, TX 73301" +202507,Lightning Charging Cable,1,14.95,05/26/19 14:05,"613 West St, San Francisco, CA 94016" +202508,ThinkPad Laptop,1,999.99,05/21/19 00:57,"562 Pine St, San Francisco, CA 94016" +202509,AA Batteries (4-pack),1,3.84,05/27/19 09:08,"650 Jackson St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +202510,Flatscreen TV,1,300,05/17/19 09:40,"992 Dogwood St, Los Angeles, CA 90001" +202511,Macbook Pro Laptop,1,1700,05/10/19 13:20,"437 Walnut St, New York City, NY 10001" +202512,Wired Headphones,1,11.99,05/19/19 22:17,"290 River St, Portland, OR 97035" +202513,Flatscreen TV,1,300,05/12/19 01:09,"502 Hill St, New York City, NY 10001" +202514,iPhone,1,700,05/29/19 21:03,"952 Dogwood St, Dallas, TX 75001" +202515,AA Batteries (4-pack),1,3.84,05/27/19 02:41,"407 6th St, Atlanta, GA 30301" +202516,AAA Batteries (4-pack),3,2.99,05/03/19 21:07,"610 2nd St, Boston, MA 02215" +202517,AAA Batteries (4-pack),1,2.99,05/31/19 22:50,"582 13th St, Austin, TX 73301" +202518,Wired Headphones,1,11.99,05/16/19 18:18,"588 River St, Los Angeles, CA 90001" +202519,20in Monitor,1,109.99,05/04/19 12:49,"39 Lincoln St, Dallas, TX 75001" +202520,AAA Batteries (4-pack),1,2.99,05/20/19 11:10,"661 Highland St, Dallas, TX 75001" +202521,Wired Headphones,1,11.99,05/22/19 01:46,"134 Church St, Boston, MA 02215" +202522,AA Batteries (4-pack),2,3.84,05/13/19 15:07,"718 West St, Dallas, TX 75001" +202523,AAA Batteries (4-pack),1,2.99,05/10/19 21:41,"536 River St, San Francisco, CA 94016" +202524,Lightning Charging Cable,1,14.95,05/09/19 19:41,"158 Lakeview St, Los Angeles, CA 90001" +202525,Wired Headphones,1,11.99,05/16/19 20:15,"270 Johnson St, Seattle, WA 98101" +202525,Bose SoundSport Headphones,1,99.99,05/16/19 20:15,"270 Johnson St, Seattle, WA 98101" +202526,Wired Headphones,1,11.99,05/15/19 16:35,"757 Center St, New York City, NY 10001" +202527,AAA Batteries (4-pack),1,2.99,05/02/19 21:18,"12 4th St, San Francisco, CA 94016" +202528,Bose SoundSport Headphones,1,99.99,05/24/19 11:12,"416 Wilson St, Boston, MA 02215" +202529,Macbook Pro Laptop,1,1700,05/02/19 15:33,"84 13th St, Atlanta, GA 30301" +202530,Bose SoundSport Headphones,1,99.99,05/27/19 21:36,"159 10th St, San Francisco, CA 94016" +202531,USB-C Charging Cable,3,11.95,05/17/19 11:23,"748 9th St, Los Angeles, CA 90001" +202532,Bose SoundSport Headphones,1,99.99,05/17/19 11:44,"553 Forest St, Seattle, WA 98101" +202533,AAA Batteries (4-pack),1,2.99,05/08/19 09:08,"164 Jackson St, Atlanta, GA 30301" +202534,Flatscreen TV,1,300,05/30/19 19:42,"184 11th St, Seattle, WA 98101" +202535,27in FHD Monitor,1,149.99,05/02/19 04:27,"223 Cherry St, Atlanta, GA 30301" +202536,Flatscreen TV,1,300,05/20/19 22:58,"928 Willow St, San Francisco, CA 94016" +202537,USB-C Charging Cable,1,11.95,05/13/19 20:43,"40 Church St, San Francisco, CA 94016" +202538,USB-C Charging Cable,1,11.95,05/14/19 14:43,"531 Hill St, Dallas, TX 75001" +202539,AAA Batteries (4-pack),1,2.99,05/20/19 16:11,"819 Maple St, Los Angeles, CA 90001" +202540,AAA Batteries (4-pack),2,2.99,05/02/19 20:01,"230 14th St, Seattle, WA 98101" +202541,Lightning Charging Cable,1,14.95,05/28/19 13:03,"258 West St, Dallas, TX 75001" +202542,34in Ultrawide Monitor,1,379.99,05/08/19 09:48,"899 Wilson St, Austin, TX 73301" +202543,Lightning Charging Cable,1,14.95,05/14/19 21:29,"485 Cedar St, Atlanta, GA 30301" +202544,Apple Airpods Headphones,1,150,05/03/19 15:57,"240 North St, Los Angeles, CA 90001" +202545,AAA Batteries (4-pack),1,2.99,05/08/19 18:37,"348 Hickory St, New York City, NY 10001" +202546,34in Ultrawide Monitor,1,379.99,05/11/19 21:40,"80 14th St, Austin, TX 73301" +202547,iPhone,1,700,05/12/19 11:06,"442 Meadow St, Los Angeles, CA 90001" +202548,34in Ultrawide Monitor,1,379.99,05/30/19 10:52,"926 Lincoln St, Los Angeles, CA 90001" +202549,Google Phone,1,600,05/24/19 11:14,"878 11th St, San Francisco, CA 94016" +202550,20in Monitor,1,109.99,05/22/19 09:54,"48 Lakeview St, Los Angeles, CA 90001" +202551,Apple Airpods Headphones,1,150,05/25/19 11:13,"638 2nd St, Los Angeles, CA 90001" +202552,Lightning Charging Cable,1,14.95,05/21/19 08:13,"687 Maple St, Los Angeles, CA 90001" +202553,AA Batteries (4-pack),1,3.84,05/29/19 14:18,"33 12th St, Boston, MA 02215" +202554,AA Batteries (4-pack),1,3.84,05/13/19 21:00,"936 Cherry St, San Francisco, CA 94016" +202555,34in Ultrawide Monitor,1,379.99,05/29/19 08:54,"127 Madison St, San Francisco, CA 94016" +202556,AAA Batteries (4-pack),1,2.99,05/26/19 09:57,"165 Walnut St, Los Angeles, CA 90001" +202557,20in Monitor,1,109.99,05/01/19 23:15,"451 Center St, San Francisco, CA 94016" +202558,27in 4K Gaming Monitor,1,389.99,05/13/19 20:46,"988 River St, Boston, MA 02215" +202559,27in 4K Gaming Monitor,1,389.99,05/19/19 14:46,"392 Elm St, New York City, NY 10001" +202560,Macbook Pro Laptop,1,1700,05/02/19 23:45,"343 Willow St, San Francisco, CA 94016" +202561,AAA Batteries (4-pack),5,2.99,05/22/19 17:51,"1 Main St, Atlanta, GA 30301" +202562,Lightning Charging Cable,1,14.95,05/29/19 19:03,"332 Spruce St, Los Angeles, CA 90001" +202563,ThinkPad Laptop,1,999.99,05/26/19 15:05,"529 Washington St, Los Angeles, CA 90001" +202564,Wired Headphones,1,11.99,05/07/19 11:40,"204 10th St, Los Angeles, CA 90001" +202565,Lightning Charging Cable,2,14.95,05/02/19 14:57,"869 5th St, Los Angeles, CA 90001" +202566,Google Phone,1,600,05/19/19 15:19,"847 Willow St, Portland, ME 04101" +202566,USB-C Charging Cable,1,11.95,05/19/19 15:19,"847 Willow St, Portland, ME 04101" +202567,Lightning Charging Cable,1,14.95,05/24/19 09:49,"51 Maple St, San Francisco, CA 94016" +202568,AA Batteries (4-pack),1,3.84,05/03/19 11:06,"425 Dogwood St, Atlanta, GA 30301" +202569,Wired Headphones,2,11.99,05/22/19 10:24,"803 Lake St, Boston, MA 02215" +202570,AA Batteries (4-pack),1,3.84,05/16/19 18:16,"930 5th St, Atlanta, GA 30301" +202571,Lightning Charging Cable,1,14.95,05/08/19 16:18,"385 Lakeview St, San Francisco, CA 94016" +202572,27in 4K Gaming Monitor,1,389.99,05/23/19 18:19,"473 Spruce St, Boston, MA 02215" +202573,27in FHD Monitor,1,149.99,05/20/19 17:37,"529 Johnson St, Austin, TX 73301" +202574,AAA Batteries (4-pack),2,2.99,05/28/19 12:24,"695 Adams St, Portland, OR 97035" +202575,Flatscreen TV,1,300,05/06/19 07:37,"50 Maple St, Boston, MA 02215" +202576,Apple Airpods Headphones,1,150,05/24/19 14:33,"615 Sunset St, Austin, TX 73301" +202577,Wired Headphones,1,11.99,05/30/19 12:23,"68 Dogwood St, Atlanta, GA 30301" +202578,AAA Batteries (4-pack),1,2.99,05/03/19 17:45,"691 Washington St, Los Angeles, CA 90001" +202579,Wired Headphones,1,11.99,05/25/19 14:17,"703 10th St, Atlanta, GA 30301" +202580,AAA Batteries (4-pack),2,2.99,05/14/19 00:01,"995 Cherry St, San Francisco, CA 94016" +202581,ThinkPad Laptop,1,999.99,05/15/19 19:37,"434 Lake St, San Francisco, CA 94016" +202582,Bose SoundSport Headphones,1,99.99,05/25/19 13:14,"767 Jackson St, Portland, OR 97035" +202583,Apple Airpods Headphones,1,150,05/14/19 19:43,"486 Hickory St, New York City, NY 10001" +202584,27in FHD Monitor,1,149.99,05/18/19 11:29,"444 Highland St, Dallas, TX 75001" +202585,AAA Batteries (4-pack),2,2.99,05/17/19 09:44,"581 Center St, Boston, MA 02215" +202586,USB-C Charging Cable,1,11.95,05/08/19 15:20,"72 5th St, Seattle, WA 98101" +202587,Bose SoundSport Headphones,1,99.99,05/07/19 18:55,"79 5th St, New York City, NY 10001" +202588,AA Batteries (4-pack),1,3.84,05/18/19 16:45,"416 Willow St, Los Angeles, CA 90001" +202589,34in Ultrawide Monitor,1,379.99,05/15/19 18:21,"479 Main St, San Francisco, CA 94016" +202590,Bose SoundSport Headphones,1,99.99,05/30/19 18:54,"278 South St, Los Angeles, CA 90001" +202591,27in 4K Gaming Monitor,1,389.99,05/06/19 22:25,"308 2nd St, Atlanta, GA 30301" +202592,Lightning Charging Cable,2,14.95,05/30/19 05:40,"48 1st St, Dallas, TX 75001" +202593,USB-C Charging Cable,1,11.95,05/11/19 16:05,"302 4th St, San Francisco, CA 94016" +202594,Bose SoundSport Headphones,1,99.99,05/15/19 21:40,"450 Center St, Los Angeles, CA 90001" +202595,AA Batteries (4-pack),2,3.84,05/03/19 20:16,"918 Meadow St, New York City, NY 10001" +202596,Macbook Pro Laptop,1,1700,05/02/19 20:13,"42 Hickory St, Los Angeles, CA 90001" +202597,34in Ultrawide Monitor,1,379.99,05/29/19 13:38,"435 5th St, Atlanta, GA 30301" +202598,USB-C Charging Cable,3,11.95,05/13/19 19:57,"693 Hickory St, Los Angeles, CA 90001" +202599,AA Batteries (4-pack),4,3.84,05/19/19 11:00,"349 14th St, Austin, TX 73301" +202600,AA Batteries (4-pack),1,3.84,05/02/19 09:11,"190 4th St, Dallas, TX 75001" +202601,Bose SoundSport Headphones,1,99.99,05/04/19 08:59,"796 10th St, San Francisco, CA 94016" +202602,AA Batteries (4-pack),1,3.84,05/07/19 19:36,"701 Meadow St, San Francisco, CA 94016" +202603,AAA Batteries (4-pack),1,2.99,05/03/19 13:41,"811 North St, San Francisco, CA 94016" +202604,USB-C Charging Cable,1,11.95,05/30/19 15:18,"895 Main St, Portland, OR 97035" +202605,27in FHD Monitor,1,149.99,05/24/19 08:36,"525 Meadow St, San Francisco, CA 94016" +202606,AAA Batteries (4-pack),1,2.99,05/30/19 13:03,"942 10th St, San Francisco, CA 94016" +202607,20in Monitor,1,109.99,05/25/19 07:27,"555 14th St, Seattle, WA 98101" +202608,AA Batteries (4-pack),1,3.84,05/26/19 16:52,"980 Ridge St, San Francisco, CA 94016" +202609,Bose SoundSport Headphones,1,99.99,05/29/19 13:06,"974 13th St, Portland, OR 97035" +202610,Lightning Charging Cable,1,14.95,05/09/19 13:51,"799 Adams St, New York City, NY 10001" +202611,LG Dryer,1,600.0,05/23/19 11:24,"696 Jackson St, Portland, OR 97035" +202612,Lightning Charging Cable,1,14.95,05/23/19 13:45,"228 12th St, Los Angeles, CA 90001" +202613,USB-C Charging Cable,1,11.95,05/22/19 14:13,"608 Elm St, Boston, MA 02215" +202614,AA Batteries (4-pack),1,3.84,05/17/19 17:37,"479 6th St, Dallas, TX 75001" +202615,AAA Batteries (4-pack),1,2.99,05/12/19 06:54,"105 Pine St, Los Angeles, CA 90001" +202616,iPhone,1,700,05/08/19 19:52,"975 13th St, Boston, MA 02215" +202617,Lightning Charging Cable,1,14.95,05/18/19 19:46,"438 Walnut St, Seattle, WA 98101" +202618,AAA Batteries (4-pack),2,2.99,05/06/19 16:09,"442 Jefferson St, New York City, NY 10001" +202619,AA Batteries (4-pack),1,3.84,05/05/19 16:16,"46 Wilson St, Portland, OR 97035" +202620,Vareebadd Phone,1,400,05/26/19 16:41,"901 13th St, Seattle, WA 98101" +202620,USB-C Charging Cable,1,11.95,05/26/19 16:41,"901 13th St, Seattle, WA 98101" +202621,iPhone,1,700,05/14/19 11:50,"761 Willow St, San Francisco, CA 94016" +202622,AAA Batteries (4-pack),1,2.99,05/27/19 10:40,"96 10th St, Austin, TX 73301" +202623,AA Batteries (4-pack),1,3.84,05/07/19 11:11,"856 Jackson St, Los Angeles, CA 90001" +202624,Lightning Charging Cable,1,14.95,05/20/19 08:24,"608 Park St, San Francisco, CA 94016" +202625,AAA Batteries (4-pack),2,2.99,05/13/19 15:55,"659 Cherry St, San Francisco, CA 94016" +202626,AAA Batteries (4-pack),1,2.99,05/08/19 22:47,"488 Pine St, Atlanta, GA 30301" +202627,Apple Airpods Headphones,1,150,05/17/19 18:36,"96 Walnut St, Seattle, WA 98101" +202628,27in 4K Gaming Monitor,1,389.99,05/20/19 00:39,"729 Maple St, Austin, TX 73301" +202629,Apple Airpods Headphones,1,150,05/07/19 20:17,"145 West St, Portland, OR 97035" +202630,AAA Batteries (4-pack),1,2.99,05/07/19 16:13,"163 South St, Atlanta, GA 30301" +202631,AA Batteries (4-pack),1,3.84,05/16/19 19:03,"857 12th St, San Francisco, CA 94016" +202632,27in 4K Gaming Monitor,1,389.99,05/19/19 12:44,"68 13th St, Los Angeles, CA 90001" +202633,USB-C Charging Cable,1,11.95,05/28/19 21:48,"853 11th St, Austin, TX 73301" +202634,20in Monitor,1,109.99,05/07/19 01:36,"461 9th St, Los Angeles, CA 90001" +202635,Wired Headphones,1,11.99,05/14/19 18:07,"682 Elm St, Dallas, TX 75001" +202636,Bose SoundSport Headphones,1,99.99,05/09/19 09:39,"579 2nd St, San Francisco, CA 94016" +202637,Bose SoundSport Headphones,1,99.99,05/11/19 16:41,"535 Dogwood St, Seattle, WA 98101" +202638,Wired Headphones,1,11.99,05/18/19 17:53,"232 Jefferson St, Austin, TX 73301" +202639,Bose SoundSport Headphones,1,99.99,05/12/19 22:14,"965 Washington St, Portland, OR 97035" +202640,ThinkPad Laptop,1,999.99,05/16/19 08:27,"511 Madison St, Austin, TX 73301" +202641,34in Ultrawide Monitor,1,379.99,05/08/19 22:39,"175 Lake St, Portland, ME 04101" +202642,LG Washing Machine,1,600.0,05/31/19 13:53,"841 Madison St, Boston, MA 02215" +202643,Bose SoundSport Headphones,1,99.99,05/01/19 08:02,"150 Pine St, Portland, OR 97035" +202644,AA Batteries (4-pack),2,3.84,05/08/19 23:18,"475 5th St, Austin, TX 73301" +202645,AAA Batteries (4-pack),3,2.99,05/06/19 20:42,"18 River St, Seattle, WA 98101" +202646,AAA Batteries (4-pack),2,2.99,05/12/19 14:49,"633 Church St, Atlanta, GA 30301" +202647,AA Batteries (4-pack),1,3.84,05/17/19 10:51,"263 Sunset St, Seattle, WA 98101" +202648,Wired Headphones,1,11.99,05/17/19 00:23,"48 Madison St, Boston, MA 02215" +202649,Flatscreen TV,1,300,05/29/19 10:18,"604 Church St, San Francisco, CA 94016" +202650,27in FHD Monitor,1,149.99,05/12/19 19:50,"853 Park St, Los Angeles, CA 90001" +202651,27in 4K Gaming Monitor,1,389.99,05/10/19 12:25,"465 Cherry St, San Francisco, CA 94016" +202652,AAA Batteries (4-pack),1,2.99,05/27/19 09:09,"906 Highland St, San Francisco, CA 94016" +202653,Wired Headphones,1,11.99,05/15/19 20:28,"51 8th St, Portland, OR 97035" +202654,AAA Batteries (4-pack),1,2.99,05/22/19 19:56,"359 River St, San Francisco, CA 94016" +202655,Wired Headphones,1,11.99,05/04/19 15:31,"136 Highland St, Los Angeles, CA 90001" +202656,AA Batteries (4-pack),5,3.84,05/22/19 16:19,"518 Center St, Los Angeles, CA 90001" +202657,Flatscreen TV,1,300,05/09/19 20:17,"210 Washington St, Seattle, WA 98101" +202658,Flatscreen TV,1,300,05/20/19 14:04,"125 Spruce St, San Francisco, CA 94016" +202659,USB-C Charging Cable,1,11.95,05/09/19 13:51,"212 Spruce St, Seattle, WA 98101" +202660,27in FHD Monitor,1,149.99,05/11/19 07:33,"380 Pine St, New York City, NY 10001" +202661,27in 4K Gaming Monitor,1,389.99,05/02/19 19:36,"888 12th St, Portland, ME 04101" +202662,Apple Airpods Headphones,1,150,05/31/19 19:36,"859 Maple St, San Francisco, CA 94016" +202663,AAA Batteries (4-pack),1,2.99,05/25/19 09:03,"184 North St, New York City, NY 10001" +202664,AAA Batteries (4-pack),2,2.99,05/18/19 19:24,"165 4th St, Portland, ME 04101" +202665,AAA Batteries (4-pack),1,2.99,05/03/19 18:08,"44 South St, Boston, MA 02215" +202665,USB-C Charging Cable,1,11.95,05/03/19 18:08,"44 South St, Boston, MA 02215" +202666,AAA Batteries (4-pack),2,2.99,05/05/19 07:24,"765 Johnson St, New York City, NY 10001" +202667,USB-C Charging Cable,1,11.95,05/01/19 19:53,"400 Lake St, Dallas, TX 75001" +202668,Lightning Charging Cable,1,14.95,05/26/19 13:12,"77 Main St, Los Angeles, CA 90001" +202669,USB-C Charging Cable,1,11.95,05/28/19 13:12,"250 12th St, Los Angeles, CA 90001" +202670,Flatscreen TV,1,300,05/21/19 22:12,"111 13th St, Los Angeles, CA 90001" +202671,Wired Headphones,1,11.99,05/07/19 19:59,"967 Park St, Seattle, WA 98101" +202672,Flatscreen TV,1,300,05/28/19 17:34,"156 Washington St, New York City, NY 10001" +202673,AAA Batteries (4-pack),2,2.99,05/29/19 10:22,"754 Lake St, Seattle, WA 98101" +202674,USB-C Charging Cable,1,11.95,05/19/19 02:49,"49 Main St, Portland, OR 97035" +202675,Lightning Charging Cable,1,14.95,05/21/19 12:47,"153 Main St, San Francisco, CA 94016" +202676,Wired Headphones,1,11.99,05/07/19 17:29,"167 Lincoln St, Los Angeles, CA 90001" +202677,AA Batteries (4-pack),2,3.84,05/04/19 20:36,"202 Highland St, Los Angeles, CA 90001" +202678,AA Batteries (4-pack),1,3.84,05/20/19 00:34,"604 Church St, San Francisco, CA 94016" +202679,AA Batteries (4-pack),1,3.84,05/24/19 20:58,"780 9th St, Dallas, TX 75001" +202680,AAA Batteries (4-pack),1,2.99,05/16/19 19:55,"171 Chestnut St, San Francisco, CA 94016" +202681,Wired Headphones,1,11.99,05/14/19 12:11,"61 Meadow St, Seattle, WA 98101" +202682,ThinkPad Laptop,1,999.99,05/29/19 15:33,"2 Dogwood St, Los Angeles, CA 90001" +202683,Bose SoundSport Headphones,1,99.99,05/28/19 15:27,"507 Pine St, Atlanta, GA 30301" +202684,27in FHD Monitor,1,149.99,05/21/19 21:04,"115 West St, Atlanta, GA 30301" +202685,AA Batteries (4-pack),4,3.84,05/06/19 18:11,"302 Church St, Boston, MA 02215" +202685,AAA Batteries (4-pack),1,2.99,05/06/19 18:11,"302 Church St, Boston, MA 02215" +202686,ThinkPad Laptop,1,999.99,05/04/19 18:18,"17 Ridge St, New York City, NY 10001" +202687,Lightning Charging Cable,1,14.95,05/04/19 17:37,"169 Johnson St, Atlanta, GA 30301" +202688,Wired Headphones,1,11.99,05/31/19 09:02,"313 Highland St, Los Angeles, CA 90001" +202689,Wired Headphones,1,11.99,05/12/19 00:30,"927 9th St, Los Angeles, CA 90001" +202690,AA Batteries (4-pack),1,3.84,05/21/19 09:26,"664 Center St, San Francisco, CA 94016" +202691,AAA Batteries (4-pack),1,2.99,05/10/19 08:00,"797 7th St, San Francisco, CA 94016" +202692,Flatscreen TV,1,300,05/31/19 20:13,"773 2nd St, Los Angeles, CA 90001" +202693,Wired Headphones,1,11.99,05/27/19 19:37,"289 Maple St, Portland, OR 97035" +202694,27in 4K Gaming Monitor,1,389.99,05/29/19 12:13,"725 North St, Atlanta, GA 30301" +202695,iPhone,1,700,05/13/19 17:47,"315 Walnut St, San Francisco, CA 94016" +202696,iPhone,1,700,05/17/19 15:15,"146 Lakeview St, Dallas, TX 75001" +202697,AAA Batteries (4-pack),1,2.99,05/15/19 13:19,"823 2nd St, New York City, NY 10001" +202698,ThinkPad Laptop,1,999.99,05/21/19 19:55,"903 South St, New York City, NY 10001" +202699,Bose SoundSport Headphones,1,99.99,05/28/19 11:16,"317 14th St, Atlanta, GA 30301" +202700,AA Batteries (4-pack),1,3.84,05/09/19 10:33,"636 Jackson St, New York City, NY 10001" +202701,Apple Airpods Headphones,1,150,05/20/19 21:51,"708 4th St, Austin, TX 73301" +202702,Vareebadd Phone,1,400,05/27/19 00:48,"242 8th St, New York City, NY 10001" +202702,USB-C Charging Cable,1,11.95,05/27/19 00:48,"242 8th St, New York City, NY 10001" +202703,Google Phone,1,600,05/30/19 03:23,"562 Cedar St, San Francisco, CA 94016" +202704,Bose SoundSport Headphones,1,99.99,05/29/19 17:54,"759 Cherry St, Los Angeles, CA 90001" +202705,AA Batteries (4-pack),1,3.84,05/04/19 12:55,"67 2nd St, Boston, MA 02215" +202706,Lightning Charging Cable,1,14.95,05/16/19 07:39,"226 Lake St, New York City, NY 10001" +202707,27in FHD Monitor,1,149.99,05/11/19 23:17,"902 Meadow St, Atlanta, GA 30301" +202708,Wired Headphones,1,11.99,05/16/19 12:16,"636 4th St, Los Angeles, CA 90001" +202709,ThinkPad Laptop,1,999.99,05/06/19 18:39,"463 Johnson St, Atlanta, GA 30301" +202710,USB-C Charging Cable,1,11.95,05/12/19 23:15,"43 Johnson St, Los Angeles, CA 90001" +202711,Bose SoundSport Headphones,1,99.99,05/18/19 17:33,"327 Willow St, New York City, NY 10001" +202712,Google Phone,1,600,05/30/19 17:43,"174 Ridge St, Austin, TX 73301" +202712,USB-C Charging Cable,1,11.95,05/30/19 17:43,"174 Ridge St, Austin, TX 73301" +202713,Bose SoundSport Headphones,1,99.99,05/21/19 21:15,"147 8th St, Dallas, TX 75001" +202714,AAA Batteries (4-pack),1,2.99,05/09/19 19:58,"125 Spruce St, San Francisco, CA 94016" +202715,AAA Batteries (4-pack),1,2.99,05/23/19 19:23,"786 Lake St, Los Angeles, CA 90001" +202716,Apple Airpods Headphones,1,150,05/09/19 10:24,"831 Maple St, San Francisco, CA 94016" +202717,27in FHD Monitor,1,149.99,05/26/19 10:56,"687 Willow St, Portland, ME 04101" +202718,Wired Headphones,1,11.99,05/15/19 16:24,"735 7th St, Los Angeles, CA 90001" +202719,AA Batteries (4-pack),1,3.84,05/20/19 20:11,"27 Madison St, Los Angeles, CA 90001" +202720,AA Batteries (4-pack),1,3.84,05/26/19 09:09,"739 11th St, Los Angeles, CA 90001" +202721,AA Batteries (4-pack),2,3.84,05/17/19 23:34,"151 9th St, Boston, MA 02215" +202722,USB-C Charging Cable,1,11.95,05/05/19 20:30,"863 4th St, Dallas, TX 75001" +202723,Lightning Charging Cable,1,14.95,05/12/19 19:00,"286 Chestnut St, Los Angeles, CA 90001" +202724,USB-C Charging Cable,1,11.95,05/10/19 09:25,"51 Sunset St, New York City, NY 10001" +202725,34in Ultrawide Monitor,1,379.99,05/18/19 13:30,"274 Dogwood St, New York City, NY 10001" +202726,AAA Batteries (4-pack),1,2.99,05/27/19 06:12,"633 Adams St, New York City, NY 10001" +202727,Lightning Charging Cable,1,14.95,05/10/19 15:39,"227 Ridge St, Boston, MA 02215" +202728,34in Ultrawide Monitor,1,379.99,05/27/19 16:40,"308 Pine St, Portland, OR 97035" +202729,Bose SoundSport Headphones,1,99.99,05/19/19 23:15,"292 Meadow St, Dallas, TX 75001" +202730,AA Batteries (4-pack),2,3.84,05/19/19 08:22,"260 Walnut St, New York City, NY 10001" +202730,27in 4K Gaming Monitor,1,389.99,05/19/19 08:22,"260 Walnut St, New York City, NY 10001" +202731,Lightning Charging Cable,1,14.95,05/13/19 13:36,"529 West St, Portland, OR 97035" +202732,34in Ultrawide Monitor,1,379.99,05/11/19 23:30,"339 Lakeview St, New York City, NY 10001" +202733,Wired Headphones,1,11.99,05/21/19 08:18,"283 Pine St, Austin, TX 73301" +202734,Lightning Charging Cable,1,14.95,05/22/19 18:25,"790 6th St, Seattle, WA 98101" +202735,Bose SoundSport Headphones,1,99.99,05/08/19 20:36,"420 5th St, Boston, MA 02215" +202736,Macbook Pro Laptop,1,1700,05/31/19 14:24,"709 Willow St, San Francisco, CA 94016" +202737,Google Phone,1,600,05/24/19 12:31,"802 Lakeview St, Boston, MA 02215" +202738,27in FHD Monitor,1,149.99,05/29/19 04:03,"490 Lakeview St, Seattle, WA 98101" +202739,AA Batteries (4-pack),2,3.84,05/19/19 04:21,"903 Adams St, Austin, TX 73301" +202740,Flatscreen TV,1,300,05/06/19 14:18,"504 North St, Los Angeles, CA 90001" +202741,AA Batteries (4-pack),1,3.84,05/01/19 17:28,"262 Lake St, San Francisco, CA 94016" +202742,Macbook Pro Laptop,1,1700,05/30/19 13:56,"114 6th St, San Francisco, CA 94016" +202743,Lightning Charging Cable,1,14.95,05/14/19 22:25,"77 Chestnut St, Atlanta, GA 30301" +202744,Apple Airpods Headphones,1,150,05/25/19 18:16,"605 Center St, Atlanta, GA 30301" +202745,AAA Batteries (4-pack),1,2.99,05/31/19 09:16,"785 Maple St, Dallas, TX 75001" +202746,Lightning Charging Cable,1,14.95,05/25/19 15:53,"991 Sunset St, Portland, OR 97035" +202747,Lightning Charging Cable,1,14.95,05/22/19 17:04,"60 4th St, Seattle, WA 98101" +202748,USB-C Charging Cable,1,11.95,05/01/19 11:11,"1 West St, San Francisco, CA 94016" +202749,USB-C Charging Cable,1,11.95,05/16/19 20:53,"404 Lake St, Boston, MA 02215" +202750,Wired Headphones,1,11.99,05/24/19 01:21,"917 Maple St, New York City, NY 10001" +202751,Lightning Charging Cable,1,14.95,05/11/19 09:35,"215 Main St, San Francisco, CA 94016" +202752,Macbook Pro Laptop,1,1700,05/28/19 19:12,"762 Jackson St, Austin, TX 73301" +202753,Lightning Charging Cable,1,14.95,05/27/19 09:27,"559 Hickory St, New York City, NY 10001" +202754,USB-C Charging Cable,1,11.95,05/03/19 13:07,"334 Highland St, New York City, NY 10001" +202755,Lightning Charging Cable,1,14.95,05/02/19 12:35,"688 Chestnut St, Dallas, TX 75001" +202756,Apple Airpods Headphones,1,150,05/28/19 18:52,"666 Johnson St, New York City, NY 10001" +202757,AA Batteries (4-pack),2,3.84,05/13/19 18:29,"389 Elm St, New York City, NY 10001" +202758,AA Batteries (4-pack),2,3.84,05/06/19 12:34,"936 Cherry St, New York City, NY 10001" +202759,34in Ultrawide Monitor,1,379.99,05/31/19 00:20,"740 Meadow St, Seattle, WA 98101" +202760,AAA Batteries (4-pack),2,2.99,05/12/19 20:46,"256 11th St, Boston, MA 02215" +202761,Wired Headphones,1,11.99,05/29/19 19:18,"783 South St, Boston, MA 02215" +202762,USB-C Charging Cable,1,11.95,05/24/19 19:40,"390 Wilson St, Atlanta, GA 30301" +202763,Bose SoundSport Headphones,1,99.99,05/19/19 09:38,"975 Elm St, San Francisco, CA 94016" +202764,AA Batteries (4-pack),1,3.84,05/03/19 22:39,"702 Ridge St, Dallas, TX 75001" +202765,AAA Batteries (4-pack),1,2.99,05/16/19 20:59,"159 9th St, Los Angeles, CA 90001" +202766,USB-C Charging Cable,1,11.95,05/10/19 13:52,"580 Maple St, Boston, MA 02215" +202767,AAA Batteries (4-pack),2,2.99,05/23/19 13:37,"389 Cherry St, Los Angeles, CA 90001" +202768,Google Phone,1,600,05/24/19 08:54,"156 Cedar St, San Francisco, CA 94016" +202769,Bose SoundSport Headphones,1,99.99,05/27/19 18:12,"42 Highland St, New York City, NY 10001" +202770,20in Monitor,1,109.99,05/05/19 15:26,"340 Madison St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +202771,Bose SoundSport Headphones,1,99.99,05/31/19 17:46,"499 Lincoln St, San Francisco, CA 94016" +202772,34in Ultrawide Monitor,1,379.99,05/15/19 11:14,"192 Cherry St, Boston, MA 02215" +202773,USB-C Charging Cable,1,11.95,05/16/19 16:04,"487 Jackson St, Austin, TX 73301" +202774,27in 4K Gaming Monitor,1,389.99,05/20/19 18:58,"70 Park St, Dallas, TX 75001" +202775,Wired Headphones,2,11.99,05/21/19 13:03,"778 Walnut St, Los Angeles, CA 90001" +202776,34in Ultrawide Monitor,1,379.99,05/11/19 15:56,"654 4th St, Boston, MA 02215" +202777,iPhone,1,700,05/27/19 11:42,"478 Maple St, San Francisco, CA 94016" +202777,Lightning Charging Cable,1,14.95,05/27/19 11:42,"478 Maple St, San Francisco, CA 94016" +202777,Wired Headphones,1,11.99,05/27/19 11:42,"478 Maple St, San Francisco, CA 94016" +202778,Wired Headphones,1,11.99,05/25/19 10:06,"959 Meadow St, New York City, NY 10001" +202779,Bose SoundSport Headphones,1,99.99,05/26/19 16:31,"450 Washington St, Dallas, TX 75001" +202780,Wired Headphones,1,11.99,05/15/19 13:36,"974 Hickory St, San Francisco, CA 94016" +202781,USB-C Charging Cable,1,11.95,05/14/19 13:17,"212 Washington St, Boston, MA 02215" +202782,27in FHD Monitor,1,149.99,05/09/19 09:39,"38 2nd St, San Francisco, CA 94016" +202783,Google Phone,2,600,05/01/19 14:28,"93 Willow St, Seattle, WA 98101" +202784,Apple Airpods Headphones,1,150,05/29/19 19:28,"766 Madison St, Los Angeles, CA 90001" +202785,Bose SoundSport Headphones,1,99.99,05/30/19 12:53,"319 10th St, Boston, MA 02215" +202786,AA Batteries (4-pack),1,3.84,05/25/19 22:07,"629 12th St, Portland, OR 97035" +202787,Lightning Charging Cable,2,14.95,05/06/19 13:34,"678 12th St, Boston, MA 02215" +202788,27in FHD Monitor,1,149.99,05/02/19 19:31,"213 9th St, San Francisco, CA 94016" +202789,27in FHD Monitor,1,149.99,05/01/19 12:33,"485 12th St, Dallas, TX 75001" +202790,Flatscreen TV,1,300,05/18/19 23:18,"317 Wilson St, Atlanta, GA 30301" +202791,Bose SoundSport Headphones,1,99.99,05/01/19 23:52,"516 South St, Austin, TX 73301" +202792,27in 4K Gaming Monitor,1,389.99,05/01/19 19:09,"110 River St, Atlanta, GA 30301" +202793,Flatscreen TV,1,300,05/22/19 09:36,"468 South St, Los Angeles, CA 90001" +202794,AA Batteries (4-pack),2,3.84,05/08/19 07:23,"26 Jackson St, Boston, MA 02215" +202795,Apple Airpods Headphones,1,150,05/27/19 07:44,"251 9th St, San Francisco, CA 94016" +202796,Flatscreen TV,1,300,05/28/19 14:19,"914 North St, Dallas, TX 75001" +202796,Apple Airpods Headphones,1,150,05/28/19 14:19,"914 North St, Dallas, TX 75001" +202797,Wired Headphones,2,11.99,05/22/19 17:38,"560 Maple St, Los Angeles, CA 90001" +202798,27in FHD Monitor,1,149.99,05/13/19 14:29,"753 8th St, Los Angeles, CA 90001" +202799,AAA Batteries (4-pack),1,2.99,05/02/19 13:08,"188 Cherry St, New York City, NY 10001" +202800,USB-C Charging Cable,2,11.95,05/07/19 22:27,"82 Sunset St, Atlanta, GA 30301" +202801,Flatscreen TV,1,300,05/10/19 20:20,"172 8th St, Boston, MA 02215" +202802,AA Batteries (4-pack),1,3.84,05/17/19 16:20,"836 Willow St, San Francisco, CA 94016" +202803,27in 4K Gaming Monitor,1,389.99,05/12/19 13:09,"31 Adams St, Dallas, TX 75001" +202804,Lightning Charging Cable,1,14.95,05/05/19 20:52,"821 West St, Dallas, TX 75001" +202805,AAA Batteries (4-pack),1,2.99,05/25/19 12:56,"478 Meadow St, San Francisco, CA 94016" +202806,Apple Airpods Headphones,1,150,05/10/19 19:05,"546 Meadow St, Atlanta, GA 30301" +202807,AAA Batteries (4-pack),2,2.99,05/17/19 13:11,"788 Walnut St, San Francisco, CA 94016" +202808,Wired Headphones,1,11.99,05/16/19 11:06,"210 13th St, New York City, NY 10001" +202809,AAA Batteries (4-pack),1,2.99,05/17/19 21:47,"155 2nd St, San Francisco, CA 94016" +202810,Bose SoundSport Headphones,1,99.99,05/09/19 10:54,"553 Maple St, San Francisco, CA 94016" +202811,Wired Headphones,1,11.99,05/25/19 23:55,"718 Lake St, San Francisco, CA 94016" +202812,Google Phone,1,600,05/16/19 13:45,"149 13th St, San Francisco, CA 94016" +202813,USB-C Charging Cable,1,11.95,05/24/19 22:53,"768 Meadow St, Dallas, TX 75001" +202814,Wired Headphones,1,11.99,05/06/19 19:27,"421 Forest St, Portland, OR 97035" +202815,Lightning Charging Cable,1,14.95,05/04/19 10:08,"952 10th St, Los Angeles, CA 90001" +202816,USB-C Charging Cable,1,11.95,05/19/19 11:34,"29 13th St, Seattle, WA 98101" +202817,USB-C Charging Cable,1,11.95,05/16/19 16:23,"228 Elm St, San Francisco, CA 94016" +202818,Lightning Charging Cable,1,14.95,05/03/19 08:42,"745 Hickory St, Seattle, WA 98101" +202819,Apple Airpods Headphones,1,150,05/04/19 20:49,"479 Lakeview St, San Francisco, CA 94016" +202820,34in Ultrawide Monitor,1,379.99,05/04/19 16:43,"668 Center St, Los Angeles, CA 90001" +202821,Wired Headphones,1,11.99,05/25/19 15:25,"80 2nd St, Atlanta, GA 30301" +202822,USB-C Charging Cable,1,11.95,05/24/19 16:20,"134 1st St, Atlanta, GA 30301" +202823,iPhone,1,700,05/27/19 18:09,"805 Jefferson St, Los Angeles, CA 90001" +202824,Bose SoundSport Headphones,1,99.99,05/15/19 11:56,"278 7th St, Dallas, TX 75001" +202825,Flatscreen TV,1,300,05/18/19 03:15,"661 Ridge St, Boston, MA 02215" +202826,USB-C Charging Cable,1,11.95,05/23/19 19:38,"239 14th St, Atlanta, GA 30301" +202827,20in Monitor,1,109.99,05/07/19 08:13,"172 2nd St, Los Angeles, CA 90001" +202828,34in Ultrawide Monitor,1,379.99,05/03/19 21:31,"583 Jackson St, Boston, MA 02215" +202829,27in 4K Gaming Monitor,1,389.99,05/23/19 09:50,"466 Cedar St, Los Angeles, CA 90001" +202830,USB-C Charging Cable,1,11.95,05/15/19 13:43,"639 Lakeview St, San Francisco, CA 94016" +202831,Lightning Charging Cable,1,14.95,05/23/19 19:35,"685 13th St, Los Angeles, CA 90001" +202832,Lightning Charging Cable,1,14.95,05/13/19 19:44,"642 West St, Boston, MA 02215" +202833,AA Batteries (4-pack),2,3.84,05/08/19 18:24,"798 West St, New York City, NY 10001" +202834,Apple Airpods Headphones,1,150,05/06/19 11:16,"350 Madison St, San Francisco, CA 94016" +202835,27in 4K Gaming Monitor,1,389.99,05/24/19 15:28,"834 Walnut St, Los Angeles, CA 90001" +202836,Lightning Charging Cable,1,14.95,05/17/19 00:40,"903 Dogwood St, San Francisco, CA 94016" +202837,20in Monitor,1,109.99,05/18/19 19:09,"467 Elm St, San Francisco, CA 94016" +202838,USB-C Charging Cable,1,11.95,05/26/19 18:18,"204 Sunset St, Portland, OR 97035" +202839,Wired Headphones,1,11.99,05/14/19 20:19,"608 5th St, Los Angeles, CA 90001" +202840,Bose SoundSport Headphones,1,99.99,05/17/19 18:42,"230 Center St, Dallas, TX 75001" +202841,Bose SoundSport Headphones,1,99.99,05/15/19 08:14,"779 North St, San Francisco, CA 94016" +202842,Lightning Charging Cable,1,14.95,05/09/19 17:45,"61 Walnut St, Atlanta, GA 30301" +202843,USB-C Charging Cable,1,11.95,05/30/19 13:40,"911 Walnut St, Seattle, WA 98101" +202844,AAA Batteries (4-pack),1,2.99,05/08/19 09:43,"764 8th St, Dallas, TX 75001" +202845,Lightning Charging Cable,1,14.95,05/05/19 09:42,"476 7th St, San Francisco, CA 94016" +202846,AAA Batteries (4-pack),1,2.99,05/17/19 06:48,"809 Dogwood St, San Francisco, CA 94016" +202847,Bose SoundSport Headphones,1,99.99,05/26/19 10:00,"470 Lincoln St, Dallas, TX 75001" +202848,AA Batteries (4-pack),1,3.84,05/03/19 00:03,"19 Pine St, New York City, NY 10001" +202849,USB-C Charging Cable,2,11.95,05/26/19 14:20,"520 Willow St, Los Angeles, CA 90001" +202850,AAA Batteries (4-pack),1,2.99,05/07/19 09:17,"857 Ridge St, Austin, TX 73301" +202851,iPhone,1,700,05/16/19 15:27,"217 Cedar St, Portland, OR 97035" +202852,Lightning Charging Cable,1,14.95,05/28/19 18:47,"609 Willow St, New York City, NY 10001" +202853,USB-C Charging Cable,1,11.95,05/06/19 12:46,"977 Meadow St, Los Angeles, CA 90001" +202854,Lightning Charging Cable,1,14.95,05/29/19 23:21,"974 6th St, Los Angeles, CA 90001" +202855,27in FHD Monitor,1,149.99,05/25/19 22:43,"762 Jackson St, Los Angeles, CA 90001" +202856,AA Batteries (4-pack),1,3.84,05/29/19 23:15,"320 Meadow St, Boston, MA 02215" +202857,AA Batteries (4-pack),2,3.84,05/02/19 12:47,"296 Maple St, San Francisco, CA 94016" +202858,Wired Headphones,1,11.99,05/22/19 15:58,"121 Hill St, San Francisco, CA 94016" +202859,ThinkPad Laptop,1,999.99,05/22/19 14:12,"715 Walnut St, San Francisco, CA 94016" +202860,Lightning Charging Cable,1,14.95,05/14/19 21:50,"965 River St, New York City, NY 10001" +202861,Bose SoundSport Headphones,1,99.99,05/12/19 17:19,"918 Main St, San Francisco, CA 94016" +202862,USB-C Charging Cable,1,11.95,05/30/19 07:29,"378 Meadow St, Los Angeles, CA 90001" +202863,27in 4K Gaming Monitor,1,389.99,05/02/19 15:28,"549 West St, Los Angeles, CA 90001" +202864,iPhone,1,700,05/28/19 06:07,"308 Center St, San Francisco, CA 94016" +202865,27in FHD Monitor,1,149.99,05/05/19 22:26,"856 14th St, Portland, OR 97035" +202866,27in FHD Monitor,1,149.99,05/19/19 15:31,"948 Johnson St, New York City, NY 10001" +202867,AAA Batteries (4-pack),2,2.99,05/16/19 14:46,"803 8th St, New York City, NY 10001" +202868,USB-C Charging Cable,1,11.95,05/04/19 09:53,"587 Hill St, San Francisco, CA 94016" +202869,Apple Airpods Headphones,1,150,05/18/19 09:21,"40 Wilson St, San Francisco, CA 94016" +202870,AAA Batteries (4-pack),1,2.99,05/18/19 20:29,"774 9th St, Seattle, WA 98101" +202871,Lightning Charging Cable,1,14.95,05/11/19 22:46,"756 West St, New York City, NY 10001" +202872,Lightning Charging Cable,1,14.95,05/17/19 18:34,"621 7th St, Seattle, WA 98101" +202873,AA Batteries (4-pack),1,3.84,05/15/19 21:05,"533 11th St, Seattle, WA 98101" +202874,Lightning Charging Cable,1,14.95,05/03/19 16:41,"121 Maple St, Los Angeles, CA 90001" +202875,27in FHD Monitor,1,149.99,05/19/19 19:02,"989 South St, Los Angeles, CA 90001" +202876,AA Batteries (4-pack),1,3.84,05/03/19 21:06,"259 Cedar St, San Francisco, CA 94016" +202877,Lightning Charging Cable,1,14.95,05/15/19 18:38,"535 Hill St, Los Angeles, CA 90001" +202878,34in Ultrawide Monitor,1,379.99,05/05/19 23:33,"905 Center St, Los Angeles, CA 90001" +202879,AA Batteries (4-pack),1,3.84,05/01/19 08:17,"414 Spruce St, Atlanta, GA 30301" +202880,Apple Airpods Headphones,1,150,05/06/19 04:33,"264 10th St, Boston, MA 02215" +202881,AA Batteries (4-pack),1,3.84,05/26/19 17:41,"358 Elm St, Seattle, WA 98101" +202882,AA Batteries (4-pack),1,3.84,05/28/19 21:38,"964 Spruce St, Seattle, WA 98101" +202883,iPhone,1,700,05/20/19 21:39,"386 6th St, New York City, NY 10001" +202884,Macbook Pro Laptop,1,1700,05/23/19 12:23,"311 6th St, Los Angeles, CA 90001" +202885,27in FHD Monitor,1,149.99,05/16/19 19:16,"330 11th St, Boston, MA 02215" +202886,Google Phone,1,600,05/25/19 11:22,"240 Park St, San Francisco, CA 94016" +202887,USB-C Charging Cable,1,11.95,05/03/19 14:10,"53 North St, Atlanta, GA 30301" +202888,Wired Headphones,1,11.99,05/08/19 12:19,"833 North St, Atlanta, GA 30301" +202889,Lightning Charging Cable,1,14.95,05/11/19 15:44,"112 Hickory St, Seattle, WA 98101" +202890,Vareebadd Phone,1,400,05/25/19 05:29,"798 Washington St, Boston, MA 02215" +202890,USB-C Charging Cable,1,11.95,05/25/19 05:29,"798 Washington St, Boston, MA 02215" +202891,Lightning Charging Cable,1,14.95,05/27/19 11:08,"758 2nd St, Seattle, WA 98101" +202892,Flatscreen TV,1,300,05/18/19 19:48,"928 Spruce St, New York City, NY 10001" +202893,Google Phone,1,600,05/09/19 22:35,"633 Church St, Los Angeles, CA 90001" +202894,Macbook Pro Laptop,1,1700,05/23/19 19:02,"34 Jefferson St, Atlanta, GA 30301" +202895,27in FHD Monitor,1,149.99,05/03/19 07:11,"19 2nd St, Boston, MA 02215" +202896,Lightning Charging Cable,1,14.95,05/04/19 07:39,"834 Madison St, San Francisco, CA 94016" +202897,Lightning Charging Cable,1,14.95,05/05/19 22:54,"9 Park St, Portland, ME 04101" +202898,Lightning Charging Cable,1,14.95,05/25/19 11:18,"329 Cherry St, Los Angeles, CA 90001" +202899,AAA Batteries (4-pack),1,2.99,05/07/19 05:13,"639 13th St, Atlanta, GA 30301" +202900,AAA Batteries (4-pack),1,2.99,05/08/19 10:47,"368 Church St, Boston, MA 02215" +202901,34in Ultrawide Monitor,1,379.99,05/30/19 12:07,"472 Elm St, Seattle, WA 98101" +202902,Wired Headphones,1,11.99,05/01/19 23:18,"146 9th St, Seattle, WA 98101" +202903,AAA Batteries (4-pack),2,2.99,05/04/19 17:32,"337 10th St, Portland, OR 97035" +202904,LG Washing Machine,1,600.0,05/17/19 13:32,"45 13th St, Austin, TX 73301" +202905,AA Batteries (4-pack),1,3.84,05/14/19 21:30,"282 8th St, New York City, NY 10001" +202906,Lightning Charging Cable,1,14.95,05/21/19 17:50,"250 Adams St, San Francisco, CA 94016" +202907,27in FHD Monitor,1,149.99,05/18/19 07:43,"432 South St, San Francisco, CA 94016" +202908,Wired Headphones,1,11.99,05/30/19 12:26,"425 North St, Los Angeles, CA 90001" +202909,AA Batteries (4-pack),2,3.84,05/20/19 13:05,"568 Wilson St, New York City, NY 10001" +202910,27in FHD Monitor,1,149.99,05/06/19 13:16,"129 Hickory St, San Francisco, CA 94016" +202911,27in FHD Monitor,1,149.99,05/21/19 19:07,"548 Adams St, New York City, NY 10001" +202912,Wired Headphones,1,11.99,05/09/19 20:22,"548 Highland St, Seattle, WA 98101" +202913,AA Batteries (4-pack),2,3.84,05/27/19 15:27,"749 5th St, Austin, TX 73301" +202914,27in 4K Gaming Monitor,1,389.99,05/03/19 16:30,"115 Chestnut St, Dallas, TX 75001" +202915,AA Batteries (4-pack),1,3.84,05/19/19 02:09,"90 Jefferson St, Boston, MA 02215" +202916,Vareebadd Phone,1,400,05/01/19 07:11,"566 2nd St, Dallas, TX 75001" +202917,Apple Airpods Headphones,1,150,05/12/19 04:26,"549 12th St, New York City, NY 10001" +202918,27in FHD Monitor,1,149.99,05/27/19 19:12,"147 2nd St, San Francisco, CA 94016" +202919,AAA Batteries (4-pack),1,2.99,05/08/19 12:44,"923 River St, San Francisco, CA 94016" +202920,AAA Batteries (4-pack),1,2.99,05/27/19 05:59,"824 Church St, San Francisco, CA 94016" +202921,Lightning Charging Cable,1,14.95,05/30/19 00:18,"175 Dogwood St, Dallas, TX 75001" +202922,AAA Batteries (4-pack),1,2.99,05/04/19 09:35,"416 Pine St, New York City, NY 10001" +202923,AAA Batteries (4-pack),1,2.99,05/12/19 21:06,"537 12th St, Portland, OR 97035" +202924,AAA Batteries (4-pack),1,2.99,05/01/19 11:15,"369 Chestnut St, Los Angeles, CA 90001" +202925,USB-C Charging Cable,3,11.95,05/08/19 13:41,"537 Lincoln St, Los Angeles, CA 90001" +202926,AA Batteries (4-pack),1,3.84,05/02/19 18:44,"851 7th St, San Francisco, CA 94016" +202927,Vareebadd Phone,1,400,05/30/19 23:06,"709 13th St, Los Angeles, CA 90001" +202928,AAA Batteries (4-pack),1,2.99,05/30/19 22:47,"902 Elm St, San Francisco, CA 94016" +202929,USB-C Charging Cable,1,11.95,05/17/19 12:15,"719 West St, New York City, NY 10001" +202930,Wired Headphones,1,11.99,05/01/19 16:03,"410 10th St, Dallas, TX 75001" +202931,34in Ultrawide Monitor,1,379.99,05/15/19 22:58,"133 Forest St, Atlanta, GA 30301" +202932,AAA Batteries (4-pack),4,2.99,05/07/19 06:54,"890 South St, San Francisco, CA 94016" +202933,USB-C Charging Cable,1,11.95,05/08/19 13:14,"512 Willow St, Los Angeles, CA 90001" +202934,27in 4K Gaming Monitor,1,389.99,05/29/19 14:07,"513 Walnut St, New York City, NY 10001" +202935,Wired Headphones,1,11.99,05/05/19 19:51,"892 Johnson St, Los Angeles, CA 90001" +202936,27in FHD Monitor,1,149.99,05/26/19 10:32,"322 Pine St, Seattle, WA 98101" +202937,Apple Airpods Headphones,1,150,05/07/19 17:28,"775 Willow St, Austin, TX 73301" +202938,Google Phone,1,600,05/27/19 16:25,"491 North St, Seattle, WA 98101" +202939,27in FHD Monitor,1,149.99,05/22/19 17:54,"348 Madison St, Boston, MA 02215" +202940,AA Batteries (4-pack),2,3.84,05/20/19 09:58,"543 1st St, San Francisco, CA 94016" +202941,Lightning Charging Cable,2,14.95,05/06/19 15:07,"637 9th St, Boston, MA 02215" +202942,Flatscreen TV,1,300,05/23/19 13:56,"907 Washington St, Boston, MA 02215" +202943,USB-C Charging Cable,1,11.95,05/26/19 17:47,"350 Church St, New York City, NY 10001" +202944,Wired Headphones,1,11.99,05/10/19 11:27,"18 Ridge St, Dallas, TX 75001" +202945,iPhone,1,700,05/12/19 08:17,"579 Willow St, New York City, NY 10001" +202946,AAA Batteries (4-pack),1,2.99,05/29/19 23:09,"348 Church St, San Francisco, CA 94016" +202947,Lightning Charging Cable,1,14.95,05/17/19 12:46,"361 1st St, Portland, OR 97035" +202948,AAA Batteries (4-pack),2,2.99,05/29/19 18:24,"901 Jackson St, New York City, NY 10001" +202949,27in FHD Monitor,1,149.99,05/20/19 12:46,"13 Lake St, Los Angeles, CA 90001" +202950,Bose SoundSport Headphones,1,99.99,05/22/19 18:43,"302 Sunset St, San Francisco, CA 94016" +202951,Apple Airpods Headphones,1,150,05/20/19 05:00,"605 Chestnut St, New York City, NY 10001" +202952,27in 4K Gaming Monitor,1,389.99,05/06/19 08:29,"294 Washington St, San Francisco, CA 94016" +202953,Lightning Charging Cable,1,14.95,05/14/19 11:11,"476 River St, Atlanta, GA 30301" +202954,27in 4K Gaming Monitor,1,389.99,05/04/19 12:47,"839 Maple St, Boston, MA 02215" +202955,LG Washing Machine,1,600.0,05/11/19 13:41,"118 11th St, Los Angeles, CA 90001" +202956,iPhone,1,700,05/12/19 18:16,"905 14th St, New York City, NY 10001" +202956,Lightning Charging Cable,1,14.95,05/12/19 18:16,"905 14th St, New York City, NY 10001" +202956,Wired Headphones,1,11.99,05/12/19 18:16,"905 14th St, New York City, NY 10001" +202957,AAA Batteries (4-pack),1,2.99,05/20/19 01:46,"553 Ridge St, New York City, NY 10001" +202958,Lightning Charging Cable,1,14.95,05/08/19 12:33,"22 Meadow St, Boston, MA 02215" +202959,Apple Airpods Headphones,1,150,05/24/19 09:51,"46 4th St, Los Angeles, CA 90001" +202960,Apple Airpods Headphones,1,150,05/10/19 12:37,"943 Maple St, New York City, NY 10001" +202961,20in Monitor,1,109.99,05/31/19 07:05,"187 Johnson St, New York City, NY 10001" +202962,AAA Batteries (4-pack),1,2.99,05/10/19 22:06,"317 Dogwood St, Los Angeles, CA 90001" +202963,AA Batteries (4-pack),1,3.84,05/11/19 18:58,"461 North St, San Francisco, CA 94016" +202964,Apple Airpods Headphones,1,150,05/31/19 19:03,"743 Sunset St, Seattle, WA 98101" +202965,AA Batteries (4-pack),1,3.84,05/11/19 20:03,"231 2nd St, San Francisco, CA 94016" +202966,AA Batteries (4-pack),3,3.84,05/21/19 10:31,"943 Lake St, Portland, OR 97035" +202967,Bose SoundSport Headphones,1,99.99,05/16/19 11:52,"122 4th St, Seattle, WA 98101" +202968,AA Batteries (4-pack),2,3.84,05/13/19 16:17,"283 River St, San Francisco, CA 94016" +202969,Wired Headphones,1,11.99,05/07/19 12:53,"134 4th St, New York City, NY 10001" +202970,Flatscreen TV,1,300,05/25/19 17:45,"742 Highland St, Boston, MA 02215" +202971,Apple Airpods Headphones,1,150,05/18/19 14:25,"616 Meadow St, Seattle, WA 98101" +202972,AA Batteries (4-pack),1,3.84,05/12/19 09:59,"514 Washington St, Portland, OR 97035" +202973,ThinkPad Laptop,1,999.99,05/15/19 10:59,"679 7th St, San Francisco, CA 94016" +202974,Apple Airpods Headphones,1,150,05/25/19 15:11,"456 11th St, Seattle, WA 98101" +202975,Lightning Charging Cable,1,14.95,05/17/19 13:36,"988 4th St, San Francisco, CA 94016" +202976,Lightning Charging Cable,1,14.95,05/15/19 13:01,"316 Church St, San Francisco, CA 94016" +202977,27in FHD Monitor,1,149.99,05/06/19 16:58,"460 5th St, Portland, OR 97035" +202978,AA Batteries (4-pack),1,3.84,05/09/19 12:39,"245 Wilson St, Austin, TX 73301" +202979,AA Batteries (4-pack),1,3.84,05/19/19 20:44,"820 Willow St, Los Angeles, CA 90001" +202980,iPhone,1,700,05/14/19 16:36,"258 11th St, Seattle, WA 98101" +202980,Lightning Charging Cable,1,14.95,05/14/19 16:36,"258 11th St, Seattle, WA 98101" +202981,27in FHD Monitor,1,149.99,05/06/19 12:02,"187 2nd St, Boston, MA 02215" +202982,USB-C Charging Cable,1,11.95,05/21/19 04:53,"283 14th St, San Francisco, CA 94016" +202983,Lightning Charging Cable,1,14.95,05/03/19 10:21,"794 West St, Dallas, TX 75001" +202984,ThinkPad Laptop,1,999.99,05/09/19 19:07,"281 Lakeview St, New York City, NY 10001" +202985,27in 4K Gaming Monitor,1,389.99,05/19/19 14:39,"818 Walnut St, Los Angeles, CA 90001" +202986,Lightning Charging Cable,1,14.95,05/24/19 08:44,"741 Meadow St, Boston, MA 02215" +202987,AAA Batteries (4-pack),1,2.99,05/18/19 10:35,"320 Elm St, New York City, NY 10001" +202988,iPhone,1,700,05/05/19 15:20,"682 Wilson St, Boston, MA 02215" +202989,20in Monitor,1,109.99,05/28/19 11:52,"998 Washington St, Austin, TX 73301" +202990,AA Batteries (4-pack),1,3.84,05/23/19 20:11,"697 Lincoln St, New York City, NY 10001" +202991,Apple Airpods Headphones,1,150,05/18/19 11:34,"833 12th St, Los Angeles, CA 90001" +202992,Lightning Charging Cable,1,14.95,05/04/19 01:25,"104 Church St, Atlanta, GA 30301" +202993,AAA Batteries (4-pack),3,2.99,05/30/19 02:38,"565 Maple St, New York City, NY 10001" +202994,34in Ultrawide Monitor,1,379.99,05/31/19 20:28,"233 Chestnut St, Los Angeles, CA 90001" +202995,AAA Batteries (4-pack),2,2.99,05/22/19 16:44,"622 Elm St, Dallas, TX 75001" +202996,Bose SoundSport Headphones,1,99.99,05/23/19 16:32,"83 Elm St, Los Angeles, CA 90001" +202997,AAA Batteries (4-pack),2,2.99,05/26/19 13:34,"194 Madison St, Austin, TX 73301" +202998,27in FHD Monitor,1,149.99,05/16/19 14:42,"182 7th St, San Francisco, CA 94016" +202999,Bose SoundSport Headphones,1,99.99,05/26/19 13:39,"974 Jackson St, Los Angeles, CA 90001" +203000,AAA Batteries (4-pack),1,2.99,05/27/19 11:06,"462 Willow St, Portland, OR 97035" +203001,Lightning Charging Cable,1,14.95,05/02/19 12:56,"964 9th St, Dallas, TX 75001" +203002,Wired Headphones,1,11.99,05/13/19 09:08,"980 West St, Austin, TX 73301" +203003,Apple Airpods Headphones,1,150,05/06/19 21:37,"332 Washington St, San Francisco, CA 94016" +203004,AAA Batteries (4-pack),2,2.99,05/02/19 22:24,"240 Cherry St, San Francisco, CA 94016" +203005,iPhone,1,700,05/01/19 19:38,"314 Willow St, Boston, MA 02215" +203005,Wired Headphones,1,11.99,05/01/19 19:38,"314 Willow St, Boston, MA 02215" +203006,Macbook Pro Laptop,1,1700,05/12/19 07:37,"587 Hill St, San Francisco, CA 94016" +203007,AAA Batteries (4-pack),1,2.99,05/19/19 01:29,"221 North St, Portland, ME 04101" +203008,Bose SoundSport Headphones,1,99.99,05/05/19 10:51,"817 Ridge St, Boston, MA 02215" +203009,Wired Headphones,1,11.99,05/25/19 17:15,"866 Washington St, New York City, NY 10001" +203010,USB-C Charging Cable,1,11.95,05/11/19 17:45,"212 Park St, Los Angeles, CA 90001" +203011,27in FHD Monitor,1,149.99,05/18/19 18:26,"66 1st St, Atlanta, GA 30301" +203012,USB-C Charging Cable,1,11.95,05/07/19 10:00,"639 Highland St, San Francisco, CA 94016" +203013,iPhone,1,700,05/22/19 12:34,"603 Madison St, Austin, TX 73301" +203014,USB-C Charging Cable,1,11.95,05/24/19 16:05,"707 Highland St, San Francisco, CA 94016" +203015,Wired Headphones,1,11.99,05/03/19 21:31,"116 Pine St, San Francisco, CA 94016" +203016,Wired Headphones,1,11.99,05/02/19 19:56,"884 Lincoln St, Seattle, WA 98101" +203017,34in Ultrawide Monitor,1,379.99,05/22/19 07:54,"752 Jackson St, San Francisco, CA 94016" +203018,Bose SoundSport Headphones,2,99.99,05/08/19 11:54,"535 Wilson St, Seattle, WA 98101" +203018,AA Batteries (4-pack),1,3.84,05/08/19 11:54,"535 Wilson St, Seattle, WA 98101" +203019,Wired Headphones,1,11.99,05/18/19 14:15,"643 Cedar St, Austin, TX 73301" +203020,Lightning Charging Cable,1,14.95,05/05/19 06:22,"904 Park St, San Francisco, CA 94016" +203021,Lightning Charging Cable,1,14.95,05/18/19 08:21,"970 Elm St, San Francisco, CA 94016" +203022,AAA Batteries (4-pack),2,2.99,05/20/19 20:14,"885 Highland St, Los Angeles, CA 90001" +203023,Lightning Charging Cable,1,14.95,05/19/19 06:04,"180 10th St, Boston, MA 02215" +203024,USB-C Charging Cable,2,11.95,05/26/19 14:39,"39 Jackson St, New York City, NY 10001" +203025,Apple Airpods Headphones,1,150,05/17/19 08:54,"777 6th St, San Francisco, CA 94016" +203026,AA Batteries (4-pack),1,3.84,05/20/19 15:56,"791 Main St, Los Angeles, CA 90001" +203027,Apple Airpods Headphones,1,150,05/18/19 11:06,"326 Hickory St, Atlanta, GA 30301" +203028,iPhone,1,700,05/18/19 14:46,"133 4th St, New York City, NY 10001" +203029,Wired Headphones,1,11.99,05/21/19 13:29,"908 5th St, Dallas, TX 75001" +203030,Lightning Charging Cable,1,14.95,05/07/19 18:06,"497 Lake St, Los Angeles, CA 90001" +203031,27in 4K Gaming Monitor,1,389.99,05/14/19 10:00,"97 Hill St, San Francisco, CA 94016" +203032,AA Batteries (4-pack),1,3.84,05/13/19 20:39,"257 Ridge St, Atlanta, GA 30301" +203033,Bose SoundSport Headphones,1,99.99,05/17/19 06:44,"882 Johnson St, Dallas, TX 75001" +203034,Apple Airpods Headphones,1,150,05/27/19 17:27,"82 10th St, San Francisco, CA 94016" +203035,27in 4K Gaming Monitor,1,389.99,05/02/19 08:06,"288 Main St, San Francisco, CA 94016" +203036,AAA Batteries (4-pack),2,2.99,05/26/19 16:35,"961 North St, San Francisco, CA 94016" +203037,27in 4K Gaming Monitor,1,389.99,05/04/19 12:35,"240 Walnut St, Seattle, WA 98101" +203038,AAA Batteries (4-pack),1,2.99,05/22/19 14:49,"907 Park St, New York City, NY 10001" +203039,Bose SoundSport Headphones,1,99.99,05/14/19 21:30,"625 Lake St, Portland, OR 97035" +203040,iPhone,1,700,05/06/19 09:07,"648 Adams St, Portland, OR 97035" +203040,Apple Airpods Headphones,1,150,05/06/19 09:07,"648 Adams St, Portland, OR 97035" +203041,USB-C Charging Cable,1,11.95,05/04/19 16:32,"995 Ridge St, San Francisco, CA 94016" +203042,Wired Headphones,1,11.99,05/24/19 10:27,"715 Cherry St, San Francisco, CA 94016" +203043,Lightning Charging Cable,1,14.95,05/03/19 19:32,"675 8th St, San Francisco, CA 94016" +203044,Lightning Charging Cable,1,14.95,05/24/19 15:35,"984 Main St, Austin, TX 73301" +203045,Flatscreen TV,1,300,05/11/19 18:34,"801 Meadow St, San Francisco, CA 94016" +203046,34in Ultrawide Monitor,1,379.99,05/07/19 13:59,"215 7th St, Seattle, WA 98101" +203047,USB-C Charging Cable,1,11.95,05/23/19 17:32,"504 Dogwood St, Atlanta, GA 30301" +203048,Macbook Pro Laptop,1,1700,05/25/19 11:20,"297 South St, Austin, TX 73301" +203049,AAA Batteries (4-pack),1,2.99,05/07/19 11:33,"185 12th St, San Francisco, CA 94016" +203050,27in FHD Monitor,1,149.99,05/15/19 08:18,"212 Ridge St, Austin, TX 73301" +203051,Wired Headphones,1,11.99,05/27/19 09:58,"216 Adams St, San Francisco, CA 94016" +203052,Bose SoundSport Headphones,1,99.99,05/25/19 08:39,"942 Cedar St, New York City, NY 10001" +203053,AAA Batteries (4-pack),2,2.99,05/15/19 20:10,"586 1st St, New York City, NY 10001" +203054,AA Batteries (4-pack),2,3.84,05/25/19 22:47,"281 Jackson St, Los Angeles, CA 90001" +203055,Vareebadd Phone,1,400,05/18/19 15:09,"680 Elm St, Los Angeles, CA 90001" +203056,Vareebadd Phone,1,400,05/06/19 11:55,"795 13th St, San Francisco, CA 94016" +203057,Wired Headphones,1,11.99,05/25/19 08:17,"490 14th St, Austin, TX 73301" +203058,USB-C Charging Cable,1,11.95,05/19/19 11:37,"300 Hill St, Seattle, WA 98101" +203058,Lightning Charging Cable,1,14.95,05/19/19 11:37,"300 Hill St, Seattle, WA 98101" +203059,Apple Airpods Headphones,1,150,05/23/19 21:19,"327 Lincoln St, San Francisco, CA 94016" +203060,Wired Headphones,1,11.99,05/17/19 11:52,"936 2nd St, Dallas, TX 75001" +203061,AAA Batteries (4-pack),1,2.99,05/09/19 22:01,"606 Cherry St, Atlanta, GA 30301" +203062,Flatscreen TV,1,300,05/28/19 20:21,"910 Lakeview St, San Francisco, CA 94016" +203063,AAA Batteries (4-pack),2,2.99,05/03/19 10:53,"574 Cherry St, Dallas, TX 75001" +203064,ThinkPad Laptop,1,999.99,05/11/19 17:22,"653 North St, Seattle, WA 98101" +203065,Lightning Charging Cable,1,14.95,05/19/19 22:08,"453 Adams St, San Francisco, CA 94016" +203066,AA Batteries (4-pack),1,3.84,05/15/19 10:06,"484 9th St, San Francisco, CA 94016" +203067,Flatscreen TV,1,300,05/23/19 23:33,"889 Lakeview St, Los Angeles, CA 90001" +203068,AAA Batteries (4-pack),1,2.99,05/14/19 17:14,"935 Washington St, San Francisco, CA 94016" +203068,Bose SoundSport Headphones,1,99.99,05/14/19 17:14,"935 Washington St, San Francisco, CA 94016" +203069,Apple Airpods Headphones,1,150,05/19/19 12:58,"127 2nd St, Los Angeles, CA 90001" +203070,AAA Batteries (4-pack),1,2.99,05/11/19 22:51,"344 Sunset St, Boston, MA 02215" +203071,Lightning Charging Cable,1,14.95,05/17/19 12:57,"744 Hill St, New York City, NY 10001" +203072,Apple Airpods Headphones,1,150,05/27/19 12:27,"261 North St, San Francisco, CA 94016" +203073,AA Batteries (4-pack),3,3.84,05/20/19 18:34,"977 6th St, New York City, NY 10001" +203074,AA Batteries (4-pack),1,3.84,05/13/19 11:41,"563 Church St, Boston, MA 02215" +203075,AA Batteries (4-pack),1,3.84,05/19/19 12:02,"241 Jackson St, San Francisco, CA 94016" +203076,USB-C Charging Cable,1,11.95,05/02/19 00:50,"986 14th St, New York City, NY 10001" +203077,Google Phone,1,600,05/07/19 18:25,"633 River St, Los Angeles, CA 90001" +203077,Bose SoundSport Headphones,2,99.99,05/07/19 18:25,"633 River St, Los Angeles, CA 90001" +203078,AA Batteries (4-pack),2,3.84,05/01/19 20:57,"483 12th St, New York City, NY 10001" +203079,34in Ultrawide Monitor,1,379.99,05/10/19 00:32,"228 14th St, Boston, MA 02215" +203079,27in 4K Gaming Monitor,1,389.99,05/10/19 00:32,"228 14th St, Boston, MA 02215" +203080,Lightning Charging Cable,1,14.95,05/23/19 19:10,"680 Forest St, Atlanta, GA 30301" +203081,iPhone,1,700,05/02/19 22:30,"332 Cherry St, Atlanta, GA 30301" +203081,Wired Headphones,1,11.99,05/02/19 22:30,"332 Cherry St, Atlanta, GA 30301" +203082,Vareebadd Phone,1,400,05/23/19 20:09,"164 1st St, New York City, NY 10001" +203083,USB-C Charging Cable,1,11.95,05/06/19 12:16,"390 West St, San Francisco, CA 94016" +203084,27in FHD Monitor,1,149.99,05/28/19 20:52,"547 Chestnut St, San Francisco, CA 94016" +203085,Apple Airpods Headphones,1,150,05/23/19 06:56,"80 Madison St, Los Angeles, CA 90001" +203086,Apple Airpods Headphones,1,150,05/28/19 17:31,"614 Willow St, Boston, MA 02215" +203087,Apple Airpods Headphones,1,150,05/03/19 00:07,"985 Ridge St, New York City, NY 10001" +203088,AA Batteries (4-pack),1,3.84,05/05/19 20:59,"620 Cherry St, New York City, NY 10001" +203089,AA Batteries (4-pack),1,3.84,05/24/19 15:59,"583 13th St, Portland, ME 04101" +203090,AAA Batteries (4-pack),1,2.99,05/13/19 20:59,"528 8th St, San Francisco, CA 94016" +203091,Bose SoundSport Headphones,1,99.99,05/07/19 22:14,"122 Madison St, San Francisco, CA 94016" +203092,Google Phone,1,600,05/09/19 09:19,"206 Wilson St, San Francisco, CA 94016" +203093,27in 4K Gaming Monitor,1,389.99,05/20/19 16:04,"708 Park St, Boston, MA 02215" +203094,27in FHD Monitor,1,149.99,05/08/19 09:21,"424 Maple St, Dallas, TX 75001" +203095,USB-C Charging Cable,1,11.95,05/02/19 13:18,"720 North St, Seattle, WA 98101" +203096,AAA Batteries (4-pack),2,2.99,05/19/19 15:39,"353 Adams St, San Francisco, CA 94016" +203097,Vareebadd Phone,1,400,05/31/19 16:25,"877 Chestnut St, Boston, MA 02215" +203098,AA Batteries (4-pack),1,3.84,05/05/19 21:09,"865 Forest St, New York City, NY 10001" +203099,USB-C Charging Cable,1,11.95,05/19/19 18:02,"233 12th St, Boston, MA 02215" +203100,34in Ultrawide Monitor,1,379.99,05/11/19 15:08,"462 Lakeview St, Atlanta, GA 30301" +203101,AA Batteries (4-pack),1,3.84,05/30/19 10:07,"193 Walnut St, Los Angeles, CA 90001" +203102,Lightning Charging Cable,1,14.95,05/26/19 17:47,"206 Hickory St, Dallas, TX 75001" +203103,AA Batteries (4-pack),1,3.84,05/30/19 19:59,"523 9th St, Portland, OR 97035" +203104,34in Ultrawide Monitor,1,379.99,05/20/19 08:16,"415 Wilson St, Los Angeles, CA 90001" +203105,Wired Headphones,1,11.99,05/18/19 19:26,"686 6th St, Boston, MA 02215" +203106,Lightning Charging Cable,1,14.95,05/15/19 16:05,"691 Elm St, San Francisco, CA 94016" +203107,USB-C Charging Cable,1,11.95,05/17/19 13:17,"296 Johnson St, Dallas, TX 75001" +203108,Macbook Pro Laptop,1,1700,05/06/19 21:39,"831 Center St, San Francisco, CA 94016" +203109,Wired Headphones,1,11.99,05/11/19 09:05,"994 Madison St, Dallas, TX 75001" +203110,AAA Batteries (4-pack),2,2.99,06/01/19 01:46,"49 Wilson St, San Francisco, CA 94016" +203111,AAA Batteries (4-pack),4,2.99,05/16/19 11:39,"733 River St, San Francisco, CA 94016" +203112,Lightning Charging Cable,1,14.95,05/18/19 13:11,"463 Adams St, Boston, MA 02215" +203113,27in 4K Gaming Monitor,1,389.99,05/22/19 16:17,"616 Cherry St, Boston, MA 02215" +203114,34in Ultrawide Monitor,1,379.99,05/30/19 21:57,"56 Meadow St, Los Angeles, CA 90001" +203115,Wired Headphones,1,11.99,05/27/19 00:56,"951 Adams St, Los Angeles, CA 90001" +203116,USB-C Charging Cable,1,11.95,05/30/19 14:06,"272 Meadow St, Dallas, TX 75001" +203117,USB-C Charging Cable,1,11.95,05/25/19 18:47,"353 West St, Seattle, WA 98101" +203118,Bose SoundSport Headphones,1,99.99,05/01/19 19:44,"869 Jackson St, San Francisco, CA 94016" +203119,Lightning Charging Cable,1,14.95,05/30/19 11:41,"763 7th St, Dallas, TX 75001" +203120,Wired Headphones,1,11.99,05/15/19 06:21,"309 Cedar St, Los Angeles, CA 90001" +203121,34in Ultrawide Monitor,1,379.99,05/25/19 12:42,"635 14th St, Boston, MA 02215" +203122,iPhone,1,700,05/08/19 11:05,"745 West St, New York City, NY 10001" +203123,AA Batteries (4-pack),1,3.84,05/07/19 18:30,"562 4th St, Seattle, WA 98101" +203124,AA Batteries (4-pack),1,3.84,05/09/19 14:04,"225 1st St, Los Angeles, CA 90001" +203125,AAA Batteries (4-pack),1,2.99,05/16/19 12:50,"93 4th St, Dallas, TX 75001" +203126,AAA Batteries (4-pack),1,2.99,05/10/19 12:21,"408 11th St, Austin, TX 73301" +203127,AAA Batteries (4-pack),1,2.99,05/05/19 11:39,"100 Lakeview St, Los Angeles, CA 90001" +203128,USB-C Charging Cable,1,11.95,05/06/19 15:40,"714 Cherry St, Dallas, TX 75001" +203129,USB-C Charging Cable,1,11.95,05/02/19 18:43,"653 Lakeview St, Boston, MA 02215" +203130,Apple Airpods Headphones,1,150,05/21/19 20:35,"838 Highland St, San Francisco, CA 94016" +203131,AAA Batteries (4-pack),2,2.99,05/03/19 13:21,"261 Jackson St, Dallas, TX 75001" +203132,Lightning Charging Cable,1,14.95,05/25/19 00:09,"995 13th St, San Francisco, CA 94016" +203133,27in 4K Gaming Monitor,1,389.99,05/19/19 12:36,"915 Walnut St, Boston, MA 02215" +203134,AA Batteries (4-pack),1,3.84,05/15/19 15:33,"113 Lincoln St, Atlanta, GA 30301" +203135,AA Batteries (4-pack),1,3.84,05/18/19 21:04,"322 Cherry St, Seattle, WA 98101" +203136,Lightning Charging Cable,1,14.95,05/06/19 14:38,"154 River St, San Francisco, CA 94016" +203137,Lightning Charging Cable,1,14.95,05/13/19 08:43,"798 Elm St, San Francisco, CA 94016" +203138,AAA Batteries (4-pack),2,2.99,05/17/19 11:04,"842 Cedar St, Atlanta, GA 30301" +203139,Flatscreen TV,1,300,05/02/19 23:30,"26 Johnson St, Seattle, WA 98101" +203140,Apple Airpods Headphones,1,150,05/09/19 18:20,"136 North St, Dallas, TX 75001" +203141,Apple Airpods Headphones,1,150,05/28/19 08:05,"952 7th St, Boston, MA 02215" +203142,20in Monitor,1,109.99,05/15/19 12:00,"661 Lakeview St, San Francisco, CA 94016" +203143,USB-C Charging Cable,2,11.95,05/18/19 16:35,"638 Main St, New York City, NY 10001" +203144,Lightning Charging Cable,1,14.95,05/27/19 12:35,"107 Dogwood St, Seattle, WA 98101" +203145,AA Batteries (4-pack),2,3.84,05/17/19 14:00,"89 Forest St, Boston, MA 02215" +203146,AAA Batteries (4-pack),1,2.99,05/24/19 20:00,"904 Pine St, Atlanta, GA 30301" +203147,Wired Headphones,1,11.99,05/02/19 12:45,"464 10th St, Atlanta, GA 30301" +203148,20in Monitor,1,109.99,05/15/19 14:54,"495 2nd St, Los Angeles, CA 90001" +203149,34in Ultrawide Monitor,1,379.99,05/07/19 16:23,"628 2nd St, Los Angeles, CA 90001" +203150,USB-C Charging Cable,1,11.95,05/30/19 20:29,"338 Lakeview St, Atlanta, GA 30301" +203151,34in Ultrawide Monitor,1,379.99,05/23/19 22:07,"830 Meadow St, Seattle, WA 98101" +203152,AA Batteries (4-pack),1,3.84,05/01/19 17:16,"735 Madison St, Portland, ME 04101" +203153,Bose SoundSport Headphones,1,99.99,05/20/19 09:24,"106 South St, San Francisco, CA 94016" +203154,ThinkPad Laptop,1,999.99,05/11/19 10:59,"227 Pine St, San Francisco, CA 94016" +203155,AA Batteries (4-pack),2,3.84,05/14/19 21:34,"726 Chestnut St, San Francisco, CA 94016" +203156,AA Batteries (4-pack),1,3.84,05/28/19 09:44,"520 Wilson St, San Francisco, CA 94016" +203157,iPhone,1,700,05/24/19 14:00,"923 Lincoln St, San Francisco, CA 94016" +203158,34in Ultrawide Monitor,1,379.99,05/07/19 22:32,"339 Walnut St, Dallas, TX 75001" +203159,AAA Batteries (4-pack),2,2.99,05/11/19 11:56,"80 2nd St, New York City, NY 10001" +203160,Wired Headphones,1,11.99,05/15/19 21:32,"284 Pine St, San Francisco, CA 94016" +203161,20in Monitor,1,109.99,05/01/19 09:56,"199 Cedar St, New York City, NY 10001" +203162,34in Ultrawide Monitor,1,379.99,05/22/19 18:47,"257 Washington St, Los Angeles, CA 90001" +203163,Wired Headphones,1,11.99,05/05/19 13:00,"911 Sunset St, San Francisco, CA 94016" +203164,27in FHD Monitor,1,149.99,05/14/19 22:21,"942 Johnson St, San Francisco, CA 94016" +203165,AAA Batteries (4-pack),3,2.99,05/14/19 08:52,"596 8th St, Atlanta, GA 30301" +203166,Lightning Charging Cable,1,14.95,05/29/19 22:01,"500 Wilson St, New York City, NY 10001" +203167,AAA Batteries (4-pack),1,2.99,05/11/19 13:10,"725 Cedar St, Atlanta, GA 30301" +203168,34in Ultrawide Monitor,1,379.99,05/14/19 14:57,"830 Hill St, San Francisco, CA 94016" +203169,Lightning Charging Cable,1,14.95,05/21/19 17:09,"333 Meadow St, San Francisco, CA 94016" +203170,AA Batteries (4-pack),1,3.84,05/30/19 16:05,"817 Forest St, Dallas, TX 75001" +203171,34in Ultrawide Monitor,1,379.99,05/31/19 13:37,"374 North St, Portland, OR 97035" +203172,iPhone,1,700,05/31/19 10:26,"589 5th St, Los Angeles, CA 90001" +203173,AA Batteries (4-pack),1,3.84,05/28/19 12:26,"864 Sunset St, Portland, OR 97035" +203174,ThinkPad Laptop,1,999.99,05/23/19 17:53,"894 Hill St, Boston, MA 02215" +203175,AA Batteries (4-pack),2,3.84,05/13/19 08:02,"206 Washington St, New York City, NY 10001" +203176,AAA Batteries (4-pack),1,2.99,05/21/19 11:32,"795 Jackson St, San Francisco, CA 94016" +203177,Wired Headphones,1,11.99,05/19/19 14:25,"886 Walnut St, San Francisco, CA 94016" +203178,AA Batteries (4-pack),1,3.84,05/22/19 16:43,"131 13th St, San Francisco, CA 94016" +203179,34in Ultrawide Monitor,1,379.99,05/18/19 07:07,"688 Forest St, Dallas, TX 75001" +203180,AAA Batteries (4-pack),1,2.99,05/31/19 02:58,"209 Washington St, Atlanta, GA 30301" +203181,AAA Batteries (4-pack),3,2.99,05/13/19 14:03,"428 Wilson St, Portland, ME 04101" +203182,USB-C Charging Cable,1,11.95,05/03/19 10:50,"683 Johnson St, San Francisco, CA 94016" +203183,USB-C Charging Cable,1,11.95,05/31/19 20:35,"314 8th St, New York City, NY 10001" +203184,27in 4K Gaming Monitor,1,389.99,05/28/19 10:24,"691 1st St, New York City, NY 10001" +203185,Flatscreen TV,1,300,05/23/19 11:30,"717 Lakeview St, Los Angeles, CA 90001" +203186,iPhone,1,700,05/15/19 20:06,"145 Maple St, Atlanta, GA 30301" +203187,Google Phone,1,600,05/31/19 13:29,"477 Sunset St, Los Angeles, CA 90001" +203188,27in 4K Gaming Monitor,1,389.99,05/27/19 01:59,"939 River St, Austin, TX 73301" +203189,USB-C Charging Cable,1,11.95,05/05/19 09:07,"272 Chestnut St, Seattle, WA 98101" +203190,Apple Airpods Headphones,1,150,05/15/19 12:18,"657 Main St, Dallas, TX 75001" +203191,Wired Headphones,2,11.99,05/01/19 19:58,"9 Washington St, Dallas, TX 75001" +203192,20in Monitor,1,109.99,05/03/19 13:56,"509 Center St, Boston, MA 02215" +203193,Wired Headphones,2,11.99,05/05/19 14:02,"192 Dogwood St, San Francisco, CA 94016" +203194,AA Batteries (4-pack),1,3.84,05/30/19 03:11,"235 13th St, New York City, NY 10001" +203195,USB-C Charging Cable,1,11.95,05/30/19 21:15,"932 Sunset St, Austin, TX 73301" +203196,USB-C Charging Cable,1,11.95,05/24/19 18:16,"645 4th St, Atlanta, GA 30301" +203197,USB-C Charging Cable,2,11.95,05/08/19 01:02,"912 Washington St, Atlanta, GA 30301" +203198,Lightning Charging Cable,1,14.95,05/02/19 07:57,"469 14th St, Los Angeles, CA 90001" +203199,Apple Airpods Headphones,1,150,05/07/19 18:15,"902 South St, New York City, NY 10001" +203200,Wired Headphones,1,11.99,05/18/19 00:49,"988 Willow St, New York City, NY 10001" +203201,Wired Headphones,1,11.99,05/15/19 06:31,"968 Park St, Los Angeles, CA 90001" +203202,iPhone,1,700,05/05/19 21:38,"149 12th St, Atlanta, GA 30301" +203203,AA Batteries (4-pack),1,3.84,05/16/19 15:32,"244 13th St, San Francisco, CA 94016" +203204,USB-C Charging Cable,1,11.95,05/05/19 13:31,"808 Adams St, Los Angeles, CA 90001" +203205,AA Batteries (4-pack),1,3.84,05/10/19 12:17,"614 14th St, Los Angeles, CA 90001" +203206,Macbook Pro Laptop,1,1700,05/05/19 14:25,"916 Highland St, Portland, OR 97035" +203207,Wired Headphones,1,11.99,05/03/19 17:39,"70 7th St, Austin, TX 73301" +203208,34in Ultrawide Monitor,1,379.99,05/08/19 21:57,"29 Hickory St, Seattle, WA 98101" +203209,Flatscreen TV,1,300,05/22/19 09:25,"589 Highland St, San Francisco, CA 94016" +203210,USB-C Charging Cable,1,11.95,05/20/19 22:01,"382 Johnson St, Boston, MA 02215" +203211,USB-C Charging Cable,1,11.95,05/01/19 11:03,"926 Main St, Portland, OR 97035" +203212,27in 4K Gaming Monitor,1,389.99,05/23/19 16:38,"337 7th St, Dallas, TX 75001" +203213,Bose SoundSport Headphones,1,99.99,05/24/19 16:16,"782 Lakeview St, San Francisco, CA 94016" +203214,Lightning Charging Cable,2,14.95,05/10/19 20:23,"435 Chestnut St, New York City, NY 10001" +203215,34in Ultrawide Monitor,1,379.99,05/22/19 07:37,"613 Pine St, Atlanta, GA 30301" +203216,27in 4K Gaming Monitor,1,389.99,05/29/19 12:28,"404 Forest St, San Francisco, CA 94016" +203217,Macbook Pro Laptop,1,1700,05/30/19 23:33,"359 Adams St, Boston, MA 02215" +203218,AAA Batteries (4-pack),1,2.99,05/26/19 18:11,"339 Jefferson St, San Francisco, CA 94016" +203219,AA Batteries (4-pack),2,3.84,05/05/19 07:54,"723 Wilson St, Atlanta, GA 30301" +203220,AA Batteries (4-pack),2,3.84,05/26/19 16:11,"542 12th St, Boston, MA 02215" +203221,Lightning Charging Cable,1,14.95,05/27/19 19:57,"300 Hill St, Los Angeles, CA 90001" +203222,AAA Batteries (4-pack),1,2.99,05/30/19 15:36,"948 Jackson St, Los Angeles, CA 90001" +203223,34in Ultrawide Monitor,1,379.99,05/12/19 19:13,"1 Meadow St, Dallas, TX 75001" +203224,USB-C Charging Cable,1,11.95,05/09/19 16:46,"920 4th St, Boston, MA 02215" +203225,Apple Airpods Headphones,1,150,05/31/19 14:04,"932 Jackson St, New York City, NY 10001" +203226,Apple Airpods Headphones,1,150,05/20/19 10:10,"793 Ridge St, New York City, NY 10001" +203227,Wired Headphones,1,11.99,05/21/19 17:03,"241 7th St, San Francisco, CA 94016" +203228,Wired Headphones,1,11.99,05/14/19 15:50,"56 Ridge St, Los Angeles, CA 90001" +203229,USB-C Charging Cable,1,11.95,05/17/19 16:25,"209 4th St, San Francisco, CA 94016" +203230,AA Batteries (4-pack),1,3.84,05/10/19 13:33,"215 6th St, Dallas, TX 75001" +203231,USB-C Charging Cable,1,11.95,05/09/19 12:01,"686 Main St, Atlanta, GA 30301" +203232,Wired Headphones,1,11.99,05/01/19 18:06,"797 Hickory St, Portland, OR 97035" +203233,AA Batteries (4-pack),1,3.84,05/04/19 13:35,"149 Jackson St, Boston, MA 02215" +203234,Lightning Charging Cable,2,14.95,05/19/19 12:42,"342 2nd St, Boston, MA 02215" +203235,USB-C Charging Cable,1,11.95,05/29/19 16:25,"122 5th St, Boston, MA 02215" +203236,Macbook Pro Laptop,1,1700,05/12/19 15:13,"415 Hill St, San Francisco, CA 94016" +203237,AA Batteries (4-pack),2,3.84,05/08/19 17:28,"846 Lincoln St, San Francisco, CA 94016" +203238,USB-C Charging Cable,1,11.95,05/07/19 19:26,"893 Jefferson St, Atlanta, GA 30301" +203239,Apple Airpods Headphones,1,150,05/21/19 10:04,"182 5th St, San Francisco, CA 94016" +203240,Apple Airpods Headphones,1,150,05/28/19 12:07,"853 Ridge St, Los Angeles, CA 90001" +203241,USB-C Charging Cable,1,11.95,05/03/19 13:28,"138 North St, New York City, NY 10001" +203242,Apple Airpods Headphones,1,150,05/22/19 22:32,"544 2nd St, Atlanta, GA 30301" +203243,USB-C Charging Cable,1,11.95,05/08/19 08:37,"612 West St, San Francisco, CA 94016" +203244,27in FHD Monitor,1,149.99,05/12/19 15:00,"238 Park St, New York City, NY 10001" +203245,Apple Airpods Headphones,1,150,05/19/19 21:36,"124 Walnut St, San Francisco, CA 94016" +203246,AAA Batteries (4-pack),1,2.99,05/19/19 22:10,"682 Johnson St, Dallas, TX 75001" +203247,Apple Airpods Headphones,1,150,05/15/19 21:04,"208 Johnson St, Seattle, WA 98101" +203248,Apple Airpods Headphones,1,150,05/21/19 18:01,"478 6th St, Portland, ME 04101" +203249,Apple Airpods Headphones,1,150,05/17/19 20:03,"519 Dogwood St, San Francisco, CA 94016" +203250,27in 4K Gaming Monitor,1,389.99,05/26/19 22:52,"629 Hill St, New York City, NY 10001" +203251,USB-C Charging Cable,1,11.95,05/11/19 23:38,"450 Jackson St, Seattle, WA 98101" +203252,20in Monitor,1,109.99,05/09/19 16:38,"155 Main St, Los Angeles, CA 90001" +203253,Macbook Pro Laptop,1,1700,05/10/19 10:55,"975 Johnson St, Los Angeles, CA 90001" +203254,Wired Headphones,2,11.99,05/20/19 22:56,"235 Spruce St, New York City, NY 10001" +203255,USB-C Charging Cable,1,11.95,05/28/19 18:21,"578 Walnut St, Portland, OR 97035" +203256,ThinkPad Laptop,1,999.99,05/07/19 10:06,"783 1st St, Dallas, TX 75001" +203257,Bose SoundSport Headphones,1,99.99,05/16/19 21:23,"789 Jefferson St, Los Angeles, CA 90001" +203258,AAA Batteries (4-pack),1,2.99,05/17/19 15:14,"272 12th St, New York City, NY 10001" +203259,AAA Batteries (4-pack),2,2.99,05/21/19 00:59,"913 West St, New York City, NY 10001" +203260,27in 4K Gaming Monitor,1,389.99,05/26/19 18:25,"65 5th St, Atlanta, GA 30301" +203261,27in FHD Monitor,1,149.99,05/24/19 01:10,"808 Highland St, Los Angeles, CA 90001" +203262,Lightning Charging Cable,1,14.95,05/21/19 21:33,"749 13th St, Boston, MA 02215" +203263,Bose SoundSport Headphones,1,99.99,05/05/19 16:00,"115 Chestnut St, San Francisco, CA 94016" +203264,AA Batteries (4-pack),1,3.84,05/18/19 10:28,"844 8th St, Boston, MA 02215" +203265,AA Batteries (4-pack),1,3.84,05/19/19 22:21,"480 Maple St, Boston, MA 02215" +203266,USB-C Charging Cable,1,11.95,05/21/19 16:58,"865 7th St, Atlanta, GA 30301" +203267,34in Ultrawide Monitor,1,379.99,05/26/19 10:02,"510 13th St, Seattle, WA 98101" +203268,27in 4K Gaming Monitor,1,389.99,05/09/19 19:26,"127 Willow St, San Francisco, CA 94016" +203269,Flatscreen TV,1,300,05/04/19 23:07,"663 Jackson St, Seattle, WA 98101" +203270,Bose SoundSport Headphones,1,99.99,05/10/19 23:30,"235 Cedar St, Seattle, WA 98101" +203271,Wired Headphones,1,11.99,05/13/19 19:33,"466 Hill St, Atlanta, GA 30301" +203272,USB-C Charging Cable,1,11.95,05/19/19 11:57,"177 Wilson St, Los Angeles, CA 90001" +203273,Apple Airpods Headphones,1,150,05/25/19 23:38,"438 8th St, New York City, NY 10001" +203274,27in 4K Gaming Monitor,1,389.99,05/23/19 20:05,"111 Jackson St, San Francisco, CA 94016" +203275,ThinkPad Laptop,1,999.99,05/20/19 15:39,"290 Madison St, New York City, NY 10001" +203276,20in Monitor,1,109.99,05/12/19 20:47,"947 West St, New York City, NY 10001" +203277,Bose SoundSport Headphones,1,99.99,05/08/19 06:53,"35 Lincoln St, Boston, MA 02215" +203278,USB-C Charging Cable,1,11.95,05/28/19 18:44,"413 7th St, San Francisco, CA 94016" +203279,Wired Headphones,1,11.99,05/07/19 11:17,"633 Elm St, New York City, NY 10001" +203280,Lightning Charging Cable,1,14.95,05/30/19 07:51,"483 6th St, San Francisco, CA 94016" +203281,Bose SoundSport Headphones,1,99.99,05/27/19 05:45,"615 Forest St, Portland, OR 97035" +203282,USB-C Charging Cable,1,11.95,05/03/19 15:42,"55 9th St, San Francisco, CA 94016" +203283,USB-C Charging Cable,1,11.95,05/07/19 00:01,"635 Forest St, Dallas, TX 75001" +203284,Wired Headphones,1,11.99,05/12/19 08:03,"991 Wilson St, Los Angeles, CA 90001" +203285,AAA Batteries (4-pack),1,2.99,05/04/19 13:14,"171 Johnson St, San Francisco, CA 94016" +203286,USB-C Charging Cable,1,11.95,05/06/19 15:05,"326 Adams St, Los Angeles, CA 90001" +203287,Bose SoundSport Headphones,1,99.99,05/26/19 23:00,"860 River St, Boston, MA 02215" +203288,Apple Airpods Headphones,1,150,05/08/19 15:31,"822 Maple St, San Francisco, CA 94016" +203289,Lightning Charging Cable,1,14.95,05/15/19 10:36,"87 Pine St, Dallas, TX 75001" +203290,Lightning Charging Cable,1,14.95,05/27/19 11:10,"889 Johnson St, Boston, MA 02215" +203291,USB-C Charging Cable,2,11.95,05/21/19 21:52,"238 Elm St, San Francisco, CA 94016" +203292,Macbook Pro Laptop,1,1700,05/12/19 02:17,"514 Center St, New York City, NY 10001" +203293,Bose SoundSport Headphones,1,99.99,05/07/19 12:01,"59 Highland St, New York City, NY 10001" +203294,27in 4K Gaming Monitor,1,389.99,05/23/19 11:09,"668 13th St, Los Angeles, CA 90001" +203295,Wired Headphones,2,11.99,05/28/19 14:56,"202 Willow St, New York City, NY 10001" +203296,iPhone,1,700,05/02/19 13:27,"262 South St, Portland, OR 97035" +203297,Lightning Charging Cable,1,14.95,05/07/19 21:51,"585 14th St, Boston, MA 02215" +203298,AAA Batteries (4-pack),2,2.99,05/23/19 09:57,"973 Cedar St, New York City, NY 10001" +203299,Bose SoundSport Headphones,1,99.99,05/17/19 20:20,"607 North St, Atlanta, GA 30301" +203300,Bose SoundSport Headphones,1,99.99,05/05/19 06:43,"443 13th St, Boston, MA 02215" +203301,20in Monitor,1,109.99,05/04/19 00:49,"426 6th St, San Francisco, CA 94016" +203302,34in Ultrawide Monitor,1,379.99,05/28/19 22:47,"650 Center St, Dallas, TX 75001" +203303,AAA Batteries (4-pack),2,2.99,05/19/19 10:45,"438 Spruce St, Seattle, WA 98101" +203304,AAA Batteries (4-pack),2,2.99,05/26/19 12:50,"634 Church St, New York City, NY 10001" +203305,iPhone,1,700,05/27/19 22:23,"24 Elm St, Boston, MA 02215" +203306,USB-C Charging Cable,1,11.95,05/18/19 17:48,"281 Washington St, New York City, NY 10001" +203307,Wired Headphones,1,11.99,05/28/19 11:37,"644 Hill St, Atlanta, GA 30301" +203308,USB-C Charging Cable,1,11.95,05/22/19 07:41,"919 Madison St, San Francisco, CA 94016" +203309,AA Batteries (4-pack),3,3.84,05/16/19 16:08,"979 Jefferson St, Los Angeles, CA 90001" +203310,27in FHD Monitor,1,149.99,05/14/19 06:56,"736 12th St, Portland, OR 97035" +203311,27in FHD Monitor,1,149.99,05/04/19 19:37,"490 Lakeview St, Dallas, TX 75001" +203312,Lightning Charging Cable,1,14.95,05/22/19 12:17,"848 12th St, Los Angeles, CA 90001" +203313,20in Monitor,1,109.99,05/18/19 18:56,"574 Cherry St, Los Angeles, CA 90001" +203314,AAA Batteries (4-pack),1,2.99,05/12/19 23:46,"337 Highland St, Seattle, WA 98101" +203315,USB-C Charging Cable,1,11.95,05/18/19 10:26,"747 Jackson St, San Francisco, CA 94016" +203316,Apple Airpods Headphones,1,150,05/27/19 16:43,"428 4th St, Austin, TX 73301" +203317,iPhone,1,700,05/03/19 17:49,"60 Lake St, Los Angeles, CA 90001" +203318,Bose SoundSport Headphones,1,99.99,05/14/19 13:58,"797 Center St, Atlanta, GA 30301" +203319,AAA Batteries (4-pack),1,2.99,05/07/19 17:29,"387 Walnut St, New York City, NY 10001" +203320,USB-C Charging Cable,1,11.95,05/09/19 19:57,"953 Cherry St, Portland, OR 97035" +203321,AA Batteries (4-pack),1,3.84,05/29/19 21:55,"895 Cherry St, New York City, NY 10001" +203322,USB-C Charging Cable,1,11.95,05/28/19 13:00,"70 1st St, Boston, MA 02215" +203323,Lightning Charging Cable,1,14.95,05/04/19 22:44,"484 4th St, Los Angeles, CA 90001" +203324,27in FHD Monitor,1,149.99,05/29/19 19:55,"648 12th St, Los Angeles, CA 90001" +203325,AA Batteries (4-pack),1,3.84,05/06/19 12:22,"532 Dogwood St, Austin, TX 73301" +203326,AAA Batteries (4-pack),3,2.99,05/02/19 15:39,"59 Walnut St, Los Angeles, CA 90001" +203327,Wired Headphones,1,11.99,05/20/19 08:10,"686 Lakeview St, New York City, NY 10001" +203328,Lightning Charging Cable,1,14.95,05/30/19 11:27,"651 Johnson St, San Francisco, CA 94016" +203329,AA Batteries (4-pack),1,3.84,05/05/19 23:35,"76 Dogwood St, San Francisco, CA 94016" +203330,Bose SoundSport Headphones,1,99.99,05/27/19 22:11,"967 Hickory St, Seattle, WA 98101" +203331,27in 4K Gaming Monitor,1,389.99,05/05/19 17:18,"200 Spruce St, San Francisco, CA 94016" +203332,Flatscreen TV,1,300,05/04/19 22:47,"854 Cedar St, Portland, OR 97035" +203333,Lightning Charging Cable,1,14.95,05/09/19 22:03,"163 Sunset St, New York City, NY 10001" +203334,Bose SoundSport Headphones,1,99.99,05/27/19 00:30,"17 14th St, Los Angeles, CA 90001" +203335,Wired Headphones,1,11.99,05/04/19 18:57,"823 Madison St, Seattle, WA 98101" +203336,27in FHD Monitor,1,149.99,05/21/19 19:14,"737 Highland St, San Francisco, CA 94016" +203337,AA Batteries (4-pack),2,3.84,05/20/19 13:51,"406 West St, Austin, TX 73301" +203338,AAA Batteries (4-pack),1,2.99,05/12/19 06:23,"482 Johnson St, San Francisco, CA 94016" +203339,USB-C Charging Cable,1,11.95,05/14/19 16:11,"418 13th St, Boston, MA 02215" +203340,Apple Airpods Headphones,1,150,05/29/19 17:09,"635 Lincoln St, Boston, MA 02215" +203341,Wired Headphones,1,11.99,05/19/19 14:04,"977 North St, Atlanta, GA 30301" +203342,Apple Airpods Headphones,1,150,05/07/19 16:14,"181 14th St, Los Angeles, CA 90001" +203343,34in Ultrawide Monitor,1,379.99,05/24/19 20:03,"298 Johnson St, San Francisco, CA 94016" +203344,Wired Headphones,1,11.99,05/04/19 14:50,"315 Lake St, San Francisco, CA 94016" +203345,27in FHD Monitor,1,149.99,05/08/19 21:24,"424 2nd St, Portland, OR 97035" +203346,Apple Airpods Headphones,1,150,05/06/19 14:59,"99 Main St, Atlanta, GA 30301" +203347,Lightning Charging Cable,1,14.95,05/23/19 23:05,"898 Lincoln St, Dallas, TX 75001" +203348,Flatscreen TV,1,300,05/26/19 00:56,"717 8th St, Boston, MA 02215" +203349,Macbook Pro Laptop,1,1700,05/26/19 09:55,"156 Forest St, San Francisco, CA 94016" +203350,ThinkPad Laptop,1,999.99,05/07/19 12:53,"547 10th St, Seattle, WA 98101" +203351,27in FHD Monitor,1,149.99,05/19/19 01:01,"311 Maple St, Los Angeles, CA 90001" +203352,34in Ultrawide Monitor,1,379.99,05/13/19 19:25,"824 Jackson St, Dallas, TX 75001" +203353,34in Ultrawide Monitor,1,379.99,05/21/19 19:48,"434 Lincoln St, Boston, MA 02215" +203354,USB-C Charging Cable,1,11.95,05/16/19 07:54,"65 Walnut St, New York City, NY 10001" +203355,Wired Headphones,1,11.99,05/01/19 18:01,"94 Maple St, Dallas, TX 75001" +203356,AAA Batteries (4-pack),1,2.99,05/20/19 22:20,"982 Maple St, San Francisco, CA 94016" +203357,Lightning Charging Cable,1,14.95,05/04/19 19:25,"888 Hickory St, New York City, NY 10001" +203358,Lightning Charging Cable,3,14.95,05/16/19 23:18,"184 Johnson St, Seattle, WA 98101" +203359,Flatscreen TV,1,300,05/13/19 08:03,"854 Hickory St, Seattle, WA 98101" +203360,Lightning Charging Cable,1,14.95,05/11/19 14:08,"327 8th St, New York City, NY 10001" +203361,27in FHD Monitor,1,149.99,05/28/19 12:56,"849 Highland St, Seattle, WA 98101" +203362,Bose SoundSport Headphones,1,99.99,05/08/19 20:39,"986 Maple St, San Francisco, CA 94016" +203363,USB-C Charging Cable,2,11.95,05/22/19 22:07,"432 1st St, Boston, MA 02215" +203364,Lightning Charging Cable,1,14.95,05/19/19 07:00,"668 12th St, Seattle, WA 98101" +203365,Wired Headphones,1,11.99,05/17/19 17:24,"421 Ridge St, Austin, TX 73301" +203366,Apple Airpods Headphones,1,150,05/25/19 16:28,"824 Walnut St, Boston, MA 02215" +203367,USB-C Charging Cable,1,11.95,05/21/19 18:05,"56 Dogwood St, Austin, TX 73301" +203368,USB-C Charging Cable,1,11.95,05/30/19 18:00,"93 West St, New York City, NY 10001" +203369,Lightning Charging Cable,1,14.95,05/27/19 16:04,"990 7th St, Austin, TX 73301" +203370,iPhone,1,700,05/05/19 09:22,"790 Park St, San Francisco, CA 94016" +203370,Lightning Charging Cable,1,14.95,05/05/19 09:22,"790 Park St, San Francisco, CA 94016" +203371,Lightning Charging Cable,1,14.95,05/10/19 13:53,"347 Wilson St, Los Angeles, CA 90001" +203372,27in FHD Monitor,1,149.99,05/01/19 17:22,"213 8th St, Los Angeles, CA 90001" +203373,Wired Headphones,1,11.99,05/11/19 20:51,"915 Sunset St, Boston, MA 02215" +203374,Wired Headphones,1,11.99,05/01/19 11:31,"276 5th St, Portland, OR 97035" +203375,34in Ultrawide Monitor,1,379.99,05/09/19 10:06,"853 9th St, Los Angeles, CA 90001" +203376,Bose SoundSport Headphones,1,99.99,05/12/19 16:45,"956 Center St, New York City, NY 10001" +203377,27in 4K Gaming Monitor,1,389.99,05/21/19 18:48,"177 14th St, San Francisco, CA 94016" +203378,Bose SoundSport Headphones,1,99.99,05/28/19 15:30,"70 Adams St, Atlanta, GA 30301" +203379,iPhone,1,700,05/06/19 11:17,"505 North St, Los Angeles, CA 90001" +203380,iPhone,1,700,05/06/19 15:12,"625 Main St, Atlanta, GA 30301" +203381,27in 4K Gaming Monitor,1,389.99,05/29/19 00:33,"826 1st St, New York City, NY 10001" +203382,Macbook Pro Laptop,1,1700,05/06/19 11:08,"717 Willow St, Portland, ME 04101" +203383,AA Batteries (4-pack),1,3.84,05/15/19 13:16,"285 Sunset St, Los Angeles, CA 90001" +203384,20in Monitor,1,109.99,05/02/19 10:30,"83 Meadow St, Dallas, TX 75001" +203385,AA Batteries (4-pack),1,3.84,05/20/19 09:45,"386 8th St, Dallas, TX 75001" +203386,AA Batteries (4-pack),1,3.84,05/05/19 10:34,"83 Meadow St, New York City, NY 10001" +203387,AA Batteries (4-pack),1,3.84,05/20/19 11:53,"325 Main St, Atlanta, GA 30301" +203388,USB-C Charging Cable,1,11.95,05/06/19 20:14,"787 Washington St, Seattle, WA 98101" +203389,Apple Airpods Headphones,1,150,05/21/19 13:34,"584 North St, Boston, MA 02215" +203390,USB-C Charging Cable,1,11.95,05/10/19 18:37,"388 Park St, San Francisco, CA 94016" +203391,Wired Headphones,1,11.99,05/29/19 19:20,"209 Park St, New York City, NY 10001" +203392,Bose SoundSport Headphones,1,99.99,05/29/19 18:40,"662 Highland St, Boston, MA 02215" +203393,Wired Headphones,1,11.99,05/23/19 14:57,"255 Jefferson St, Boston, MA 02215" +203394,27in FHD Monitor,1,149.99,05/15/19 10:23,"355 Cedar St, Austin, TX 73301" +203395,27in FHD Monitor,1,149.99,05/18/19 20:48,"589 Willow St, Los Angeles, CA 90001" +203396,AA Batteries (4-pack),1,3.84,05/07/19 21:02,"870 Madison St, New York City, NY 10001" +203397,20in Monitor,1,109.99,05/07/19 10:03,"836 Wilson St, Boston, MA 02215" +203398,Lightning Charging Cable,1,14.95,05/27/19 18:42,"546 6th St, New York City, NY 10001" +203399,27in 4K Gaming Monitor,1,389.99,05/28/19 22:12,"293 Wilson St, New York City, NY 10001" +203400,AAA Batteries (4-pack),1,2.99,05/28/19 09:27,"949 Cherry St, San Francisco, CA 94016" +203401,AA Batteries (4-pack),1,3.84,05/19/19 22:27,"101 Wilson St, Dallas, TX 75001" +203402,20in Monitor,1,109.99,05/15/19 14:39,"788 4th St, New York City, NY 10001" +203403,Apple Airpods Headphones,1,150,05/31/19 11:08,"201 Cherry St, Dallas, TX 75001" +203404,USB-C Charging Cable,1,11.95,05/09/19 13:24,"869 Adams St, Boston, MA 02215" +203405,Apple Airpods Headphones,1,150,05/04/19 13:11,"624 14th St, New York City, NY 10001" +203406,USB-C Charging Cable,1,11.95,05/09/19 11:09,"139 6th St, San Francisco, CA 94016" +203407,34in Ultrawide Monitor,1,379.99,05/02/19 10:34,"307 8th St, Seattle, WA 98101" +203408,AAA Batteries (4-pack),1,2.99,05/16/19 06:38,"159 2nd St, San Francisco, CA 94016" +203409,AAA Batteries (4-pack),2,2.99,05/13/19 19:50,"79 Wilson St, Portland, OR 97035" +203410,AAA Batteries (4-pack),2,2.99,05/28/19 12:32,"308 2nd St, Los Angeles, CA 90001" +203411,Flatscreen TV,1,300,05/21/19 17:03,"739 Elm St, New York City, NY 10001" +203412,34in Ultrawide Monitor,1,379.99,05/31/19 20:07,"258 Forest St, New York City, NY 10001" +203413,Apple Airpods Headphones,1,150,05/16/19 11:26,"206 Cherry St, Dallas, TX 75001" +203414,LG Dryer,1,600.0,05/23/19 14:36,"38 Lake St, Portland, OR 97035" +203415,USB-C Charging Cable,1,11.95,05/15/19 19:15,"726 Johnson St, Boston, MA 02215" +203416,Lightning Charging Cable,1,14.95,05/20/19 23:59,"584 9th St, Atlanta, GA 30301" +203417,Wired Headphones,1,11.99,05/19/19 13:01,"603 Spruce St, Los Angeles, CA 90001" +203418,34in Ultrawide Monitor,1,379.99,05/19/19 08:01,"17 West St, Portland, OR 97035" +203419,AA Batteries (4-pack),2,3.84,05/10/19 17:30,"308 Lincoln St, San Francisco, CA 94016" +203420,AA Batteries (4-pack),1,3.84,05/12/19 21:23,"232 Hickory St, Los Angeles, CA 90001" +203421,Flatscreen TV,1,300,05/14/19 19:29,"230 12th St, Portland, OR 97035" +203422,Wired Headphones,1,11.99,05/01/19 22:12,"212 Meadow St, Austin, TX 73301" +203423,Apple Airpods Headphones,1,150,05/21/19 01:34,"561 Spruce St, Portland, OR 97035" +203424,Bose SoundSport Headphones,1,99.99,05/26/19 09:54,"443 Dogwood St, Portland, OR 97035" +203425,Macbook Pro Laptop,1,1700,05/13/19 11:27,"816 Highland St, Los Angeles, CA 90001" +203426,AAA Batteries (4-pack),2,2.99,05/19/19 11:31,"574 Church St, Dallas, TX 75001" +203427,Lightning Charging Cable,1,14.95,05/27/19 17:13,"420 Chestnut St, New York City, NY 10001" +203428,Lightning Charging Cable,1,14.95,05/05/19 11:12,"42 Center St, Atlanta, GA 30301" +203429,Apple Airpods Headphones,1,150,05/10/19 10:27,"530 Adams St, Portland, OR 97035" +203430,27in FHD Monitor,1,149.99,05/24/19 19:36,"440 Johnson St, Boston, MA 02215" +203431,USB-C Charging Cable,1,11.95,05/01/19 18:43,"511 1st St, Portland, OR 97035" +203432,Bose SoundSport Headphones,1,99.99,05/22/19 01:49,"991 Lake St, Boston, MA 02215" +203433,AAA Batteries (4-pack),2,2.99,05/20/19 19:52,"648 Park St, Seattle, WA 98101" +203434,Bose SoundSport Headphones,1,99.99,05/10/19 20:21,"402 River St, New York City, NY 10001" +203435,Vareebadd Phone,1,400,05/31/19 00:18,"106 North St, Los Angeles, CA 90001" +203436,USB-C Charging Cable,1,11.95,05/07/19 17:26,"335 Washington St, Boston, MA 02215" +203437,USB-C Charging Cable,1,11.95,05/09/19 17:26,"99 Hickory St, Boston, MA 02215" +203438,USB-C Charging Cable,1,11.95,05/27/19 10:11,"689 Main St, Los Angeles, CA 90001" +203439,27in FHD Monitor,1,149.99,05/02/19 22:02,"825 7th St, Portland, OR 97035" +203440,Lightning Charging Cable,1,14.95,05/05/19 19:00,"810 Walnut St, Los Angeles, CA 90001" +203441,iPhone,1,700,05/18/19 12:46,"497 Adams St, Portland, OR 97035" +203442,USB-C Charging Cable,1,11.95,05/26/19 19:49,"754 Walnut St, San Francisco, CA 94016" +203443,Bose SoundSport Headphones,1,99.99,05/30/19 15:40,"722 14th St, New York City, NY 10001" +203444,27in FHD Monitor,1,149.99,05/22/19 14:14,"819 8th St, San Francisco, CA 94016" +203445,Wired Headphones,1,11.99,05/12/19 11:05,"898 Sunset St, San Francisco, CA 94016" +203446,Macbook Pro Laptop,1,1700,05/05/19 18:23,"926 Chestnut St, Atlanta, GA 30301" +203447,Apple Airpods Headphones,1,150,05/09/19 05:41,"102 Elm St, Seattle, WA 98101" +203448,USB-C Charging Cable,1,11.95,05/25/19 22:06,"730 Washington St, Los Angeles, CA 90001" +203449,AA Batteries (4-pack),1,3.84,05/30/19 13:57,"228 4th St, San Francisco, CA 94016" +203450,Wired Headphones,1,11.99,05/03/19 06:06,"520 1st St, Seattle, WA 98101" +203451,USB-C Charging Cable,1,11.95,05/16/19 20:02,"240 13th St, Los Angeles, CA 90001" +203452,iPhone,1,700,05/15/19 13:11,"453 Cedar St, New York City, NY 10001" +203452,Apple Airpods Headphones,1,150,05/15/19 13:11,"453 Cedar St, New York City, NY 10001" +203453,Wired Headphones,1,11.99,05/09/19 12:57,"801 Hill St, Atlanta, GA 30301" +203454,USB-C Charging Cable,1,11.95,05/18/19 17:17,"949 9th St, New York City, NY 10001" +203455,USB-C Charging Cable,2,11.95,05/18/19 21:45,"217 Hickory St, Atlanta, GA 30301" +203456,iPhone,1,700,05/19/19 01:51,"943 South St, San Francisco, CA 94016" +203456,Lightning Charging Cable,1,14.95,05/19/19 01:51,"943 South St, San Francisco, CA 94016" +203457,USB-C Charging Cable,1,11.95,05/30/19 13:27,"527 Lakeview St, Seattle, WA 98101" +203458,AA Batteries (4-pack),1,3.84,05/12/19 18:19,"572 Wilson St, Seattle, WA 98101" +203459,iPhone,1,700,05/03/19 04:04,"515 West St, Atlanta, GA 30301" +203460,34in Ultrawide Monitor,1,379.99,05/14/19 16:53,"403 South St, Dallas, TX 75001" +203461,ThinkPad Laptop,1,999.99,05/05/19 23:24,"453 Willow St, Dallas, TX 75001" +203462,Wired Headphones,1,11.99,05/16/19 09:51,"472 Elm St, Portland, OR 97035" +203463,USB-C Charging Cable,1,11.95,05/03/19 07:20,"526 Madison St, Austin, TX 73301" +203464,AAA Batteries (4-pack),2,2.99,05/14/19 10:21,"794 West St, Austin, TX 73301" +203465,Apple Airpods Headphones,1,150,05/31/19 09:20,"892 Maple St, San Francisco, CA 94016" +203466,ThinkPad Laptop,1,999.99,05/18/19 11:10,"539 Adams St, Austin, TX 73301" +203467,USB-C Charging Cable,1,11.95,05/18/19 20:01,"992 Pine St, San Francisco, CA 94016" +203468,AAA Batteries (4-pack),3,2.99,05/07/19 20:54,"323 5th St, San Francisco, CA 94016" +203469,AAA Batteries (4-pack),1,2.99,05/02/19 22:12,"179 Spruce St, Austin, TX 73301" +203470,27in FHD Monitor,1,149.99,05/23/19 08:04,"494 Washington St, Atlanta, GA 30301" +203471,Wired Headphones,1,11.99,05/31/19 19:00,"914 Wilson St, Los Angeles, CA 90001" +203471,Lightning Charging Cable,1,14.95,05/31/19 19:00,"914 Wilson St, Los Angeles, CA 90001" +203472,Lightning Charging Cable,2,14.95,05/06/19 12:54,"472 12th St, Austin, TX 73301" +203473,34in Ultrawide Monitor,1,379.99,05/08/19 11:02,"282 Johnson St, Boston, MA 02215" +203474,34in Ultrawide Monitor,1,379.99,05/13/19 19:58,"310 10th St, Boston, MA 02215" +203475,AA Batteries (4-pack),1,3.84,05/12/19 17:54,"111 Johnson St, New York City, NY 10001" +203476,iPhone,1,700,05/22/19 12:15,"264 8th St, Austin, TX 73301" +203477,Apple Airpods Headphones,1,150,05/26/19 19:27,"467 West St, Dallas, TX 75001" +203478,USB-C Charging Cable,1,11.95,05/27/19 13:53,"791 2nd St, Los Angeles, CA 90001" +203479,AAA Batteries (4-pack),1,2.99,05/26/19 11:39,"816 West St, Austin, TX 73301" +203480,AAA Batteries (4-pack),1,2.99,05/29/19 18:45,"588 Lincoln St, New York City, NY 10001" +203481,Bose SoundSport Headphones,1,99.99,05/05/19 00:48,"432 12th St, New York City, NY 10001" +203482,Lightning Charging Cable,1,14.95,05/23/19 17:39,"133 Johnson St, Atlanta, GA 30301" +203483,27in 4K Gaming Monitor,1,389.99,05/08/19 10:52,"893 Willow St, Los Angeles, CA 90001" +203484,AA Batteries (4-pack),1,3.84,05/13/19 02:21,"828 Highland St, Boston, MA 02215" +203485,Lightning Charging Cable,1,14.95,05/01/19 21:50,"142 Spruce St, New York City, NY 10001" +203486,AAA Batteries (4-pack),1,2.99,05/30/19 23:54,"417 South St, Dallas, TX 75001" +203487,AAA Batteries (4-pack),1,2.99,05/24/19 18:12,"490 7th St, Boston, MA 02215" +203488,USB-C Charging Cable,1,11.95,05/18/19 19:46,"113 Hill St, San Francisco, CA 94016" +203489,AA Batteries (4-pack),1,3.84,05/31/19 22:38,"482 West St, New York City, NY 10001" +203490,34in Ultrawide Monitor,1,379.99,05/29/19 22:52,"954 Willow St, Los Angeles, CA 90001" +203491,20in Monitor,1,109.99,05/30/19 14:18,"271 5th St, Portland, OR 97035" +203492,Lightning Charging Cable,1,14.95,05/19/19 22:43,"707 River St, Los Angeles, CA 90001" +203493,Wired Headphones,1,11.99,05/03/19 23:05,"866 Jefferson St, Austin, TX 73301" +203494,USB-C Charging Cable,1,11.95,05/18/19 11:47,"243 2nd St, San Francisco, CA 94016" +203495,AA Batteries (4-pack),1,3.84,05/07/19 13:56,"956 Lakeview St, Seattle, WA 98101" +203496,Wired Headphones,1,11.99,05/26/19 11:44,"95 Hickory St, New York City, NY 10001" +203497,AAA Batteries (4-pack),5,2.99,05/19/19 13:30,"929 14th St, Boston, MA 02215" +203498,iPhone,1,700,05/10/19 23:20,"84 5th St, Los Angeles, CA 90001" +203499,34in Ultrawide Monitor,1,379.99,05/28/19 09:13,"833 Wilson St, San Francisco, CA 94016" +203500,AA Batteries (4-pack),1,3.84,05/07/19 09:34,"734 7th St, San Francisco, CA 94016" +203501,27in 4K Gaming Monitor,1,389.99,05/07/19 22:24,"291 Hickory St, Boston, MA 02215" +203502,27in 4K Gaming Monitor,1,389.99,05/04/19 20:47,"392 Meadow St, Boston, MA 02215" +203503,Lightning Charging Cable,1,14.95,05/17/19 20:57,"994 Walnut St, Atlanta, GA 30301" +203504,Lightning Charging Cable,1,14.95,05/31/19 12:02,"386 8th St, San Francisco, CA 94016" +203505,Bose SoundSport Headphones,1,99.99,05/28/19 17:41,"815 Dogwood St, New York City, NY 10001" +203506,Apple Airpods Headphones,1,150,05/27/19 16:04,"800 Madison St, Atlanta, GA 30301" +203507,Lightning Charging Cable,1,14.95,05/07/19 20:10,"407 Park St, San Francisco, CA 94016" +203508,USB-C Charging Cable,1,11.95,05/10/19 09:57,"972 4th St, Boston, MA 02215" +203509,AA Batteries (4-pack),1,3.84,05/13/19 17:52,"85 Lake St, Boston, MA 02215" +203510,AA Batteries (4-pack),1,3.84,05/05/19 12:55,"430 Wilson St, New York City, NY 10001" +203511,USB-C Charging Cable,1,11.95,05/13/19 12:55,"440 Willow St, Seattle, WA 98101" +203512,AA Batteries (4-pack),1,3.84,05/09/19 08:17,"309 14th St, New York City, NY 10001" +203513,AA Batteries (4-pack),1,3.84,05/28/19 20:54,"997 Maple St, San Francisco, CA 94016" +203514,27in FHD Monitor,1,149.99,05/26/19 21:28,"478 4th St, New York City, NY 10001" +203515,USB-C Charging Cable,1,11.95,05/15/19 18:20,"341 West St, New York City, NY 10001" +203516,AAA Batteries (4-pack),1,2.99,05/22/19 08:28,"40 Ridge St, Los Angeles, CA 90001" +203517,USB-C Charging Cable,1,11.95,05/04/19 12:39,"965 Washington St, Dallas, TX 75001" +203518,Bose SoundSport Headphones,1,99.99,05/09/19 19:55,"401 Meadow St, Los Angeles, CA 90001" +203519,ThinkPad Laptop,1,999.99,05/18/19 19:57,"416 Adams St, Los Angeles, CA 90001" +203520,Lightning Charging Cable,1,14.95,05/14/19 11:35,"360 Center St, New York City, NY 10001" +203521,Apple Airpods Headphones,1,150,05/16/19 18:46,"47 6th St, San Francisco, CA 94016" +203522,Lightning Charging Cable,1,14.95,05/21/19 23:49,"836 Hill St, Boston, MA 02215" +203523,Bose SoundSport Headphones,1,99.99,05/04/19 22:18,"821 14th St, Boston, MA 02215" +203524,Wired Headphones,1,11.99,05/16/19 20:35,"974 5th St, San Francisco, CA 94016" +203525,Lightning Charging Cable,1,14.95,05/22/19 21:23,"469 Lincoln St, Boston, MA 02215" +203526,iPhone,1,700,05/06/19 19:26,"908 5th St, Los Angeles, CA 90001" +203527,20in Monitor,1,109.99,05/31/19 18:59,"585 Wilson St, New York City, NY 10001" +203528,USB-C Charging Cable,1,11.95,05/11/19 13:42,"284 Highland St, Dallas, TX 75001" +203529,Lightning Charging Cable,1,14.95,05/15/19 17:45,"934 Walnut St, Dallas, TX 75001" +203530,Lightning Charging Cable,1,14.95,05/23/19 14:43,"390 7th St, Boston, MA 02215" +203531,27in 4K Gaming Monitor,1,389.99,05/24/19 12:08,"683 Main St, San Francisco, CA 94016" +203532,Lightning Charging Cable,2,14.95,05/18/19 10:24,"624 River St, Boston, MA 02215" +203533,Wired Headphones,1,11.99,05/28/19 17:53,"679 Ridge St, Austin, TX 73301" +203534,AAA Batteries (4-pack),2,2.99,05/15/19 07:34,"626 Dogwood St, San Francisco, CA 94016" +203535,AAA Batteries (4-pack),1,2.99,05/04/19 20:50,"87 Lincoln St, Portland, OR 97035" +203536,AAA Batteries (4-pack),1,2.99,05/18/19 19:25,"163 Spruce St, Boston, MA 02215" +203537,20in Monitor,1,109.99,05/29/19 07:13,"633 11th St, Austin, TX 73301" +203538,USB-C Charging Cable,1,11.95,05/18/19 04:36,"533 Sunset St, Atlanta, GA 30301" +203539,Bose SoundSport Headphones,1,99.99,05/27/19 16:48,"186 Pine St, San Francisco, CA 94016" +203540,AA Batteries (4-pack),1,3.84,05/13/19 09:12,"32 6th St, Atlanta, GA 30301" +203541,USB-C Charging Cable,1,11.95,05/13/19 20:49,"621 Chestnut St, Austin, TX 73301" +203542,27in 4K Gaming Monitor,1,389.99,05/07/19 21:11,"643 11th St, San Francisco, CA 94016" +203543,LG Washing Machine,1,600.0,05/04/19 10:45,"268 Meadow St, Austin, TX 73301" +203543,USB-C Charging Cable,1,11.95,05/04/19 10:45,"268 Meadow St, Austin, TX 73301" +203544,Flatscreen TV,1,300,05/06/19 11:57,"207 13th St, Boston, MA 02215" +203545,USB-C Charging Cable,1,11.95,05/12/19 10:22,"633 Chestnut St, Austin, TX 73301" +203546,Bose SoundSport Headphones,1,99.99,05/16/19 18:09,"839 4th St, Boston, MA 02215" +203547,Lightning Charging Cable,1,14.95,05/22/19 06:59,"592 Forest St, Atlanta, GA 30301" +203548,AAA Batteries (4-pack),2,2.99,05/14/19 21:47,"626 Ridge St, San Francisco, CA 94016" +203549,AA Batteries (4-pack),1,3.84,05/17/19 10:16,"185 Willow St, Atlanta, GA 30301" +203550,Google Phone,1,600,05/05/19 18:57,"826 5th St, Seattle, WA 98101" +203551,AA Batteries (4-pack),1,3.84,05/10/19 13:49,"991 Adams St, Portland, OR 97035" +203552,USB-C Charging Cable,1,11.95,05/17/19 03:07,"611 2nd St, San Francisco, CA 94016" +203553,34in Ultrawide Monitor,1,379.99,05/11/19 11:04,"794 Adams St, Boston, MA 02215" +203554,ThinkPad Laptop,1,999.99,05/27/19 21:07,"294 Sunset St, San Francisco, CA 94016" +203555,USB-C Charging Cable,1,11.95,05/24/19 06:55,"332 Meadow St, San Francisco, CA 94016" +203556,AAA Batteries (4-pack),1,2.99,05/06/19 10:36,"555 10th St, Portland, OR 97035" +203557,Apple Airpods Headphones,1,150,05/18/19 14:12,"217 4th St, Boston, MA 02215" +203558,Wired Headphones,1,11.99,05/24/19 15:39,"920 Forest St, Atlanta, GA 30301" +203559,USB-C Charging Cable,1,11.95,05/25/19 16:27,"42 Church St, Seattle, WA 98101" +203560,iPhone,1,700,05/28/19 09:53,"106 10th St, Los Angeles, CA 90001" +203561,34in Ultrawide Monitor,1,379.99,05/03/19 15:52,"476 2nd St, Boston, MA 02215" +203562,AA Batteries (4-pack),1,3.84,05/06/19 12:09,"425 Madison St, Portland, OR 97035" +203563,27in 4K Gaming Monitor,1,389.99,05/26/19 16:50,"456 Lakeview St, San Francisco, CA 94016" +203564,USB-C Charging Cable,1,11.95,05/16/19 13:04,"96 6th St, Atlanta, GA 30301" +203565,Google Phone,1,600,05/09/19 20:18,"820 Cedar St, Dallas, TX 75001" +203566,AA Batteries (4-pack),1,3.84,05/25/19 18:51,"174 Pine St, Los Angeles, CA 90001" +203567,Macbook Pro Laptop,1,1700,05/24/19 23:02,"963 South St, New York City, NY 10001" +203568,34in Ultrawide Monitor,1,379.99,05/26/19 00:10,"326 Highland St, Los Angeles, CA 90001" +203569,Vareebadd Phone,1,400,05/04/19 19:08,"477 Cherry St, Boston, MA 02215" +203569,USB-C Charging Cable,1,11.95,05/04/19 19:08,"477 Cherry St, Boston, MA 02215" +203570,Lightning Charging Cable,1,14.95,05/17/19 12:20,"248 Ridge St, San Francisco, CA 94016" +203571,Wired Headphones,1,11.99,05/01/19 19:17,"373 13th St, San Francisco, CA 94016" +203572,USB-C Charging Cable,1,11.95,05/22/19 12:03,"8 Maple St, San Francisco, CA 94016" +203573,iPhone,1,700,05/12/19 00:38,"7 Lakeview St, Dallas, TX 75001" +203574,Lightning Charging Cable,1,14.95,05/13/19 14:42,"295 Main St, Los Angeles, CA 90001" +203575,iPhone,1,700,05/11/19 08:44,"188 Ridge St, Portland, OR 97035" +203576,AA Batteries (4-pack),1,3.84,05/22/19 13:00,"650 Willow St, Atlanta, GA 30301" +203577,Lightning Charging Cable,1,14.95,05/23/19 08:03,"462 Sunset St, Atlanta, GA 30301" +203578,AAA Batteries (4-pack),2,2.99,05/19/19 11:13,"405 Center St, San Francisco, CA 94016" +203579,USB-C Charging Cable,1,11.95,05/14/19 09:26,"191 Ridge St, Los Angeles, CA 90001" +203580,USB-C Charging Cable,1,11.95,05/16/19 11:47,"378 Ridge St, Boston, MA 02215" +203581,Bose SoundSport Headphones,1,99.99,05/05/19 19:23,"654 Adams St, San Francisco, CA 94016" +203582,Lightning Charging Cable,2,14.95,05/16/19 18:04,"86 Meadow St, Seattle, WA 98101" +203583,Google Phone,1,600,05/17/19 14:18,"224 Cherry St, Dallas, TX 75001" +203584,Flatscreen TV,1,300,05/15/19 16:59,"523 Walnut St, Boston, MA 02215" +203585,AAA Batteries (4-pack),1,2.99,05/06/19 21:37,"64 2nd St, Boston, MA 02215" +203586,34in Ultrawide Monitor,1,379.99,05/28/19 16:14,"261 10th St, San Francisco, CA 94016" +203587,AAA Batteries (4-pack),1,2.99,05/17/19 20:26,"553 5th St, Seattle, WA 98101" +203588,USB-C Charging Cable,1,11.95,05/26/19 01:12,"926 2nd St, Los Angeles, CA 90001" +203589,27in FHD Monitor,1,149.99,05/22/19 16:35,"588 Sunset St, Atlanta, GA 30301" +203590,AA Batteries (4-pack),1,3.84,05/18/19 21:07,"32 Hill St, Boston, MA 02215" +203591,ThinkPad Laptop,1,999.99,05/02/19 17:58,"453 Washington St, San Francisco, CA 94016" +203592,AA Batteries (4-pack),1,3.84,05/10/19 12:30,"137 Chestnut St, San Francisco, CA 94016" +203593,AAA Batteries (4-pack),1,2.99,05/16/19 06:13,"593 Lakeview St, Seattle, WA 98101" +203594,27in 4K Gaming Monitor,1,389.99,05/28/19 15:00,"445 5th St, Seattle, WA 98101" +203595,Wired Headphones,1,11.99,05/11/19 08:06,"161 13th St, San Francisco, CA 94016" +203596,AA Batteries (4-pack),2,3.84,05/22/19 09:52,"750 5th St, San Francisco, CA 94016" +203597,iPhone,1,700,05/25/19 09:20,"913 6th St, Boston, MA 02215" +203598,Macbook Pro Laptop,1,1700,05/18/19 21:52,"258 Hill St, Boston, MA 02215" +203599,USB-C Charging Cable,1,11.95,05/08/19 00:09,"272 Chestnut St, Boston, MA 02215" +203600,Macbook Pro Laptop,1,1700,05/05/19 17:05,"653 1st St, Portland, OR 97035" +203601,USB-C Charging Cable,1,11.95,05/15/19 01:51,"60 Main St, New York City, NY 10001" +203602,AAA Batteries (4-pack),1,2.99,05/30/19 21:37,"192 Wilson St, Dallas, TX 75001" +203603,Wired Headphones,1,11.99,05/15/19 09:49,"687 14th St, Austin, TX 73301" +203604,Wired Headphones,1,11.99,05/03/19 23:58,"953 Hickory St, Boston, MA 02215" +203605,Macbook Pro Laptop,1,1700,05/15/19 12:47,"26 Lincoln St, Seattle, WA 98101" +203606,Apple Airpods Headphones,1,150,05/04/19 05:24,"375 Meadow St, Boston, MA 02215" +203607,Lightning Charging Cable,1,14.95,05/26/19 13:42,"925 8th St, New York City, NY 10001" +203608,Lightning Charging Cable,1,14.95,05/01/19 21:15,"966 7th St, Portland, OR 97035" +203609,USB-C Charging Cable,1,11.95,05/25/19 16:02,"694 5th St, San Francisco, CA 94016" +203610,Wired Headphones,1,11.99,05/31/19 00:12,"835 Lakeview St, San Francisco, CA 94016" +203611,Apple Airpods Headphones,1,150,05/08/19 14:50,"144 11th St, Los Angeles, CA 90001" +203612,Lightning Charging Cable,1,14.95,05/27/19 18:38,"254 1st St, New York City, NY 10001" +203613,Apple Airpods Headphones,1,150,05/12/19 17:48,"283 Wilson St, Dallas, TX 75001" +203614,Lightning Charging Cable,1,14.95,05/01/19 13:16,"87 Chestnut St, San Francisco, CA 94016" +203615,Wired Headphones,1,11.99,05/15/19 18:02,"86 Sunset St, Portland, ME 04101" +203616,LG Dryer,1,600.0,05/04/19 21:22,"656 Walnut St, Boston, MA 02215" +203617,iPhone,1,700,05/18/19 22:20,"46 West St, San Francisco, CA 94016" +203617,Lightning Charging Cable,1,14.95,05/18/19 22:20,"46 West St, San Francisco, CA 94016" +203617,Apple Airpods Headphones,1,150,05/18/19 22:20,"46 West St, San Francisco, CA 94016" +203618,27in FHD Monitor,1,149.99,05/21/19 15:04,"593 Maple St, Boston, MA 02215" +203619,AAA Batteries (4-pack),2,2.99,05/14/19 14:35,"120 Main St, Portland, OR 97035" +203620,Bose SoundSport Headphones,1,99.99,05/20/19 21:00,"886 Walnut St, Boston, MA 02215" +203621,Lightning Charging Cable,1,14.95,05/20/19 19:02,"392 Forest St, Boston, MA 02215" +203622,AA Batteries (4-pack),1,3.84,05/12/19 21:05,"741 Park St, Boston, MA 02215" +203623,Lightning Charging Cable,1,14.95,05/04/19 07:09,"528 1st St, Boston, MA 02215" +203624,Bose SoundSport Headphones,1,99.99,05/31/19 11:30,"120 13th St, Los Angeles, CA 90001" +203625,AAA Batteries (4-pack),1,2.99,05/23/19 13:53,"388 Elm St, Boston, MA 02215" +203626,AA Batteries (4-pack),1,3.84,05/09/19 15:31,"397 Spruce St, San Francisco, CA 94016" +203627,Wired Headphones,1,11.99,05/23/19 22:42,"424 10th St, Seattle, WA 98101" +203628,Lightning Charging Cable,1,14.95,05/23/19 12:39,"714 South St, Austin, TX 73301" +203629,Wired Headphones,1,11.99,05/23/19 16:14,"10 Walnut St, Atlanta, GA 30301" +203630,AA Batteries (4-pack),2,3.84,05/10/19 15:53,"31 11th St, New York City, NY 10001" +203631,Lightning Charging Cable,1,14.95,05/29/19 18:31,"246 13th St, Portland, ME 04101" +203632,Lightning Charging Cable,1,14.95,05/13/19 00:05,"706 Elm St, San Francisco, CA 94016" +203633,Flatscreen TV,1,300,05/09/19 08:07,"500 Wilson St, Los Angeles, CA 90001" +203634,Flatscreen TV,1,300,05/31/19 16:13,"554 10th St, New York City, NY 10001" +203635,USB-C Charging Cable,1,11.95,05/26/19 00:51,"169 Pine St, Boston, MA 02215" +203636,AA Batteries (4-pack),1,3.84,05/25/19 20:58,"950 10th St, Seattle, WA 98101" +203637,27in FHD Monitor,1,149.99,05/28/19 08:22,"196 Highland St, Los Angeles, CA 90001" +203638,AA Batteries (4-pack),2,3.84,05/28/19 08:22,"570 Highland St, Portland, OR 97035" +203639,AAA Batteries (4-pack),1,2.99,05/29/19 16:03,"42 Washington St, Portland, OR 97035" +203640,AA Batteries (4-pack),1,3.84,05/02/19 22:08,"742 Sunset St, New York City, NY 10001" +203641,iPhone,1,700,05/26/19 17:58,"572 South St, Boston, MA 02215" +203641,Wired Headphones,1,11.99,05/26/19 17:58,"572 South St, Boston, MA 02215" +203642,AAA Batteries (4-pack),1,2.99,05/03/19 08:53,"87 North St, Portland, OR 97035" +203643,Apple Airpods Headphones,1,150,05/29/19 16:22,"115 North St, Portland, OR 97035" +203644,AAA Batteries (4-pack),1,2.99,05/08/19 10:24,"637 Sunset St, Dallas, TX 75001" +203645,Macbook Pro Laptop,1,1700,05/25/19 11:50,"740 Ridge St, San Francisco, CA 94016" +203646,AAA Batteries (4-pack),1,2.99,05/16/19 12:38,"39 8th St, Los Angeles, CA 90001" +203647,AA Batteries (4-pack),1,3.84,05/06/19 12:28,"815 Dogwood St, San Francisco, CA 94016" +203648,Bose SoundSport Headphones,1,99.99,05/01/19 16:23,"717 Ridge St, Dallas, TX 75001" +203649,Apple Airpods Headphones,1,150,05/02/19 20:47,"328 10th St, Dallas, TX 75001" +203650,20in Monitor,1,109.99,05/29/19 18:23,"966 River St, Los Angeles, CA 90001" +203651,27in 4K Gaming Monitor,1,389.99,05/11/19 16:19,"559 Pine St, Los Angeles, CA 90001" +203652,27in FHD Monitor,1,149.99,05/06/19 16:42,"295 Church St, Seattle, WA 98101" +203653,27in 4K Gaming Monitor,1,389.99,05/03/19 11:19,"585 Washington St, Austin, TX 73301" +203654,27in 4K Gaming Monitor,1,389.99,05/25/19 16:50,"691 6th St, Austin, TX 73301" +203655,Apple Airpods Headphones,1,150,05/19/19 17:36,"70 Johnson St, Seattle, WA 98101" +203656,AA Batteries (4-pack),1,3.84,05/16/19 14:24,"181 Washington St, New York City, NY 10001" +203657,Wired Headphones,1,11.99,05/28/19 13:42,"28 10th St, Los Angeles, CA 90001" +203658,34in Ultrawide Monitor,1,379.99,05/27/19 20:24,"70 Jackson St, New York City, NY 10001" +203659,AA Batteries (4-pack),1,3.84,05/09/19 09:59,"946 2nd St, Los Angeles, CA 90001" +203660,USB-C Charging Cable,1,11.95,05/21/19 18:01,"103 Lake St, San Francisco, CA 94016" +203661,Vareebadd Phone,1,400,05/17/19 19:03,"795 Jackson St, Boston, MA 02215" +203661,USB-C Charging Cable,1,11.95,05/17/19 19:03,"795 Jackson St, Boston, MA 02215" +203662,Wired Headphones,1,11.99,05/16/19 16:14,"984 Center St, San Francisco, CA 94016" +203663,Lightning Charging Cable,1,14.95,05/22/19 18:29,"224 Jackson St, San Francisco, CA 94016" +203664,AA Batteries (4-pack),1,3.84,05/11/19 12:06,"86 1st St, Los Angeles, CA 90001" +203665,ThinkPad Laptop,1,999.99,05/10/19 08:59,"531 North St, New York City, NY 10001" +203666,AAA Batteries (4-pack),3,2.99,05/05/19 22:51,"851 Jackson St, Los Angeles, CA 90001" +203667,Lightning Charging Cable,1,14.95,05/02/19 10:09,"442 Lake St, Seattle, WA 98101" +203668,27in FHD Monitor,1,149.99,05/21/19 17:59,"886 Center St, San Francisco, CA 94016" +203669,USB-C Charging Cable,1,11.95,05/19/19 01:38,"812 11th St, Boston, MA 02215" +203670,Lightning Charging Cable,1,14.95,05/01/19 11:08,"352 Pine St, New York City, NY 10001" +203671,AAA Batteries (4-pack),1,2.99,05/08/19 13:24,"634 Madison St, San Francisco, CA 94016" +203672,AAA Batteries (4-pack),1,2.99,05/31/19 18:45,"69 5th St, San Francisco, CA 94016" +203673,USB-C Charging Cable,1,11.95,05/09/19 11:16,"936 Willow St, San Francisco, CA 94016" +203674,USB-C Charging Cable,2,11.95,05/19/19 18:52,"459 River St, Seattle, WA 98101" +203675,Apple Airpods Headphones,1,150,05/26/19 16:29,"738 Washington St, Dallas, TX 75001" +203676,27in 4K Gaming Monitor,1,389.99,05/17/19 21:32,"913 Lincoln St, Dallas, TX 75001" +203677,27in FHD Monitor,1,149.99,05/06/19 08:08,"778 Cherry St, Boston, MA 02215" +203678,AAA Batteries (4-pack),1,2.99,05/06/19 11:25,"299 Center St, Los Angeles, CA 90001" +203679,Bose SoundSport Headphones,1,99.99,05/27/19 17:42,"492 Lincoln St, Seattle, WA 98101" +203680,iPhone,1,700,05/22/19 06:15,"972 11th St, San Francisco, CA 94016" +203681,Macbook Pro Laptop,1,1700,05/24/19 09:15,"178 8th St, San Francisco, CA 94016" +203682,Wired Headphones,1,11.99,05/09/19 16:02,"97 9th St, Boston, MA 02215" +203683,20in Monitor,1,109.99,05/22/19 19:55,"378 Walnut St, Portland, OR 97035" +203684,Macbook Pro Laptop,1,1700,05/02/19 13:02,"835 11th St, Seattle, WA 98101" +203685,ThinkPad Laptop,1,999.99,05/13/19 16:57,"664 Johnson St, Los Angeles, CA 90001" +203686,Lightning Charging Cable,1,14.95,05/30/19 12:17,"450 Spruce St, San Francisco, CA 94016" +203687,Bose SoundSport Headphones,1,99.99,05/16/19 09:35,"683 River St, New York City, NY 10001" +203688,Wired Headphones,2,11.99,05/28/19 21:50,"928 Forest St, San Francisco, CA 94016" +203689,AA Batteries (4-pack),1,3.84,05/25/19 18:58,"864 Hickory St, Boston, MA 02215" +203690,Wired Headphones,1,11.99,05/25/19 14:23,"59 Meadow St, Atlanta, GA 30301" +203691,AAA Batteries (4-pack),1,2.99,05/08/19 19:36,"387 4th St, Boston, MA 02215" +203692,AA Batteries (4-pack),1,3.84,05/05/19 11:29,"946 Wilson St, Austin, TX 73301" +203693,27in FHD Monitor,1,149.99,05/17/19 11:35,"309 Chestnut St, Portland, ME 04101" +203694,Lightning Charging Cable,1,14.95,05/30/19 12:58,"66 Chestnut St, San Francisco, CA 94016" +203695,AAA Batteries (4-pack),1,2.99,05/01/19 16:29,"418 Cedar St, New York City, NY 10001" +203696,Bose SoundSport Headphones,1,99.99,05/14/19 18:28,"994 5th St, Atlanta, GA 30301" +203697,Apple Airpods Headphones,1,150,05/29/19 21:45,"754 Hickory St, San Francisco, CA 94016" +203698,Wired Headphones,1,11.99,05/21/19 21:05,"111 Sunset St, Atlanta, GA 30301" +203698,20in Monitor,1,109.99,05/21/19 21:05,"111 Sunset St, Atlanta, GA 30301" +203699,USB-C Charging Cable,1,11.95,05/25/19 00:25,"807 12th St, San Francisco, CA 94016" +203700,USB-C Charging Cable,1,11.95,05/03/19 17:46,"380 4th St, New York City, NY 10001" +203701,Apple Airpods Headphones,1,150,05/31/19 14:00,"248 Wilson St, New York City, NY 10001" +203702,Bose SoundSport Headphones,1,99.99,05/30/19 19:05,"670 Highland St, Los Angeles, CA 90001" +203703,USB-C Charging Cable,1,11.95,05/15/19 12:15,"479 Walnut St, Dallas, TX 75001" +203704,27in FHD Monitor,1,149.99,05/24/19 16:16,"414 Church St, Atlanta, GA 30301" +203704,34in Ultrawide Monitor,1,379.99,05/24/19 16:16,"414 Church St, Atlanta, GA 30301" +203705,AAA Batteries (4-pack),1,2.99,05/27/19 14:19,"273 Hill St, Los Angeles, CA 90001" +203706,Lightning Charging Cable,1,14.95,05/03/19 10:46,"99 Wilson St, San Francisco, CA 94016" +203707,USB-C Charging Cable,1,11.95,05/04/19 19:06,"873 Pine St, Los Angeles, CA 90001" +203708,20in Monitor,1,109.99,05/19/19 06:54,"978 River St, San Francisco, CA 94016" +203709,AAA Batteries (4-pack),2,2.99,05/08/19 06:31,"457 5th St, Los Angeles, CA 90001" +203710,Wired Headphones,1,11.99,05/26/19 11:36,"996 Highland St, New York City, NY 10001" +203711,Bose SoundSport Headphones,1,99.99,05/06/19 11:40,"444 7th St, Atlanta, GA 30301" +203712,USB-C Charging Cable,1,11.95,05/28/19 07:02,"34 Lake St, San Francisco, CA 94016" +203713,Flatscreen TV,1,300,05/14/19 18:59,"591 Chestnut St, Atlanta, GA 30301" +203713,Bose SoundSport Headphones,1,99.99,05/14/19 18:59,"591 Chestnut St, Atlanta, GA 30301" +203714,Macbook Pro Laptop,1,1700,05/05/19 02:14,"436 8th St, Boston, MA 02215" +203715,AAA Batteries (4-pack),2,2.99,05/14/19 08:12,"256 12th St, New York City, NY 10001" +203716,USB-C Charging Cable,1,11.95,05/20/19 21:40,"181 North St, San Francisco, CA 94016" +203717,AAA Batteries (4-pack),1,2.99,05/31/19 18:01,"250 5th St, Seattle, WA 98101" +203718,Apple Airpods Headphones,1,150,05/07/19 12:05,"73 Willow St, Portland, OR 97035" +203719,Wired Headphones,1,11.99,05/10/19 21:29,"797 Park St, Los Angeles, CA 90001" +203720,Bose SoundSport Headphones,1,99.99,05/06/19 06:58,"893 Madison St, Atlanta, GA 30301" +203721,Macbook Pro Laptop,1,1700,05/20/19 09:47,"200 Center St, New York City, NY 10001" +203722,Wired Headphones,1,11.99,05/14/19 07:23,"480 5th St, Seattle, WA 98101" +203723,USB-C Charging Cable,1,11.95,05/28/19 08:49,"753 Main St, Dallas, TX 75001" +203724,Bose SoundSport Headphones,1,99.99,05/26/19 11:40,"272 8th St, Portland, OR 97035" +203725,Lightning Charging Cable,1,14.95,05/04/19 13:17,"14 Madison St, Dallas, TX 75001" +203726,AAA Batteries (4-pack),3,2.99,05/15/19 21:42,"531 Cherry St, Portland, OR 97035" +203727,Bose SoundSport Headphones,1,99.99,05/10/19 20:59,"642 10th St, New York City, NY 10001" +203728,Apple Airpods Headphones,1,150,05/01/19 15:15,"637 7th St, San Francisco, CA 94016" +203729,Flatscreen TV,1,300,05/21/19 17:08,"759 Main St, San Francisco, CA 94016" +203730,Lightning Charging Cable,1,14.95,05/24/19 10:26,"920 13th St, Portland, OR 97035" +203731,Vareebadd Phone,1,400,05/14/19 18:49,"80 Lincoln St, Los Angeles, CA 90001" +203732,Macbook Pro Laptop,1,1700,05/04/19 12:43,"430 Ridge St, Boston, MA 02215" +203733,Lightning Charging Cable,1,14.95,05/26/19 21:16,"265 11th St, Los Angeles, CA 90001" +203734,27in FHD Monitor,1,149.99,05/16/19 11:29,"321 Walnut St, Portland, OR 97035" +203735,27in 4K Gaming Monitor,1,389.99,05/14/19 20:28,"337 Lincoln St, Boston, MA 02215" +203736,USB-C Charging Cable,1,11.95,05/26/19 18:20,"47 Jackson St, San Francisco, CA 94016" +203737,AA Batteries (4-pack),3,3.84,05/31/19 10:30,"823 Elm St, Dallas, TX 75001" +203738,AA Batteries (4-pack),1,3.84,05/07/19 21:43,"162 North St, New York City, NY 10001" +203739,Lightning Charging Cable,1,14.95,05/21/19 18:16,"615 Forest St, Boston, MA 02215" +203740,20in Monitor,1,109.99,05/28/19 18:41,"868 Cedar St, Austin, TX 73301" +203741,Bose SoundSport Headphones,1,99.99,05/13/19 18:37,"447 Highland St, Dallas, TX 75001" +203742,Wired Headphones,1,11.99,05/16/19 10:44,"400 12th St, San Francisco, CA 94016" +203743,AAA Batteries (4-pack),1,2.99,05/10/19 07:18,"143 Madison St, Austin, TX 73301" +203744,AAA Batteries (4-pack),1,2.99,05/21/19 00:05,"137 Pine St, Seattle, WA 98101" +203745,ThinkPad Laptop,1,999.99,05/10/19 14:48,"48 North St, San Francisco, CA 94016" +203746,USB-C Charging Cable,1,11.95,05/08/19 14:19,"875 Highland St, Boston, MA 02215" +203747,34in Ultrawide Monitor,1,379.99,05/07/19 21:46,"981 Meadow St, Boston, MA 02215" +203748,20in Monitor,1,109.99,05/28/19 19:37,"709 13th St, Dallas, TX 75001" +203749,USB-C Charging Cable,1,11.95,05/06/19 19:37,"376 North St, San Francisco, CA 94016" +203750,AAA Batteries (4-pack),1,2.99,05/03/19 19:16,"804 11th St, Boston, MA 02215" +203751,Macbook Pro Laptop,1,1700,05/20/19 22:18,"622 Chestnut St, Dallas, TX 75001" +203752,Lightning Charging Cable,1,14.95,05/27/19 00:19,"200 2nd St, Dallas, TX 75001" +203753,Lightning Charging Cable,1,14.95,05/17/19 19:25,"181 12th St, Austin, TX 73301" +203754,USB-C Charging Cable,1,11.95,05/27/19 22:22,"305 Main St, Austin, TX 73301" +203755,Apple Airpods Headphones,1,150,05/23/19 13:55,"379 Walnut St, San Francisco, CA 94016" +203756,Wired Headphones,1,11.99,05/09/19 12:34,"308 2nd St, Dallas, TX 75001" +203757,AA Batteries (4-pack),1,3.84,05/03/19 12:20,"238 Lincoln St, Seattle, WA 98101" +203758,AA Batteries (4-pack),2,3.84,05/03/19 08:20,"836 Lincoln St, San Francisco, CA 94016" +203759,Bose SoundSport Headphones,2,99.99,05/24/19 19:57,"661 11th St, Los Angeles, CA 90001" +203760,USB-C Charging Cable,1,11.95,05/23/19 22:16,"603 South St, Boston, MA 02215" +203761,USB-C Charging Cable,1,11.95,05/30/19 23:49,"808 11th St, Dallas, TX 75001" +203762,AAA Batteries (4-pack),1,2.99,05/24/19 22:20,"490 Highland St, Portland, OR 97035" +203763,Google Phone,1,600,05/27/19 11:17,"390 2nd St, San Francisco, CA 94016" +203764,Macbook Pro Laptop,1,1700,05/29/19 14:40,"785 Jackson St, Seattle, WA 98101" +203765,AA Batteries (4-pack),1,3.84,05/21/19 17:52,"729 North St, Austin, TX 73301" +203766,Bose SoundSport Headphones,1,99.99,05/19/19 20:45,"842 Main St, Dallas, TX 75001" +203767,AAA Batteries (4-pack),1,2.99,05/12/19 12:03,"544 North St, Los Angeles, CA 90001" +203768,AA Batteries (4-pack),2,3.84,05/18/19 10:16,"704 Ridge St, Seattle, WA 98101" +203769,Lightning Charging Cable,1,14.95,05/31/19 21:47,"127 11th St, Seattle, WA 98101" +203770,USB-C Charging Cable,1,11.95,05/31/19 07:13,"348 Sunset St, Dallas, TX 75001" +203771,Google Phone,1,600,05/27/19 13:59,"260 West St, San Francisco, CA 94016" +203772,USB-C Charging Cable,1,11.95,05/20/19 18:33,"47 Dogwood St, Los Angeles, CA 90001" +203772,AA Batteries (4-pack),2,3.84,05/20/19 18:33,"47 Dogwood St, Los Angeles, CA 90001" +203773,Lightning Charging Cable,1,14.95,05/02/19 22:16,"959 6th St, Los Angeles, CA 90001" +203774,Bose SoundSport Headphones,1,99.99,05/25/19 06:43,"969 Hickory St, Dallas, TX 75001" +203775,AAA Batteries (4-pack),3,2.99,05/26/19 09:25,"676 Church St, New York City, NY 10001" +203776,Vareebadd Phone,1,400,05/04/19 16:45,"503 14th St, New York City, NY 10001" +203776,USB-C Charging Cable,1,11.95,05/04/19 16:45,"503 14th St, New York City, NY 10001" +203777,27in FHD Monitor,1,149.99,05/03/19 07:35,"666 10th St, Seattle, WA 98101" +203778,USB-C Charging Cable,1,11.95,05/06/19 15:34,"192 Park St, New York City, NY 10001" +203779,AAA Batteries (4-pack),2,2.99,05/01/19 12:40,"560 Sunset St, Seattle, WA 98101" +203780,Apple Airpods Headphones,1,150,05/02/19 13:15,"13 Ridge St, New York City, NY 10001" +203781,AAA Batteries (4-pack),2,2.99,05/19/19 17:51,"713 Cherry St, Atlanta, GA 30301" +203782,Bose SoundSport Headphones,1,99.99,05/08/19 08:31,"972 Forest St, Portland, OR 97035" +203783,ThinkPad Laptop,1,999.99,05/09/19 16:16,"322 2nd St, San Francisco, CA 94016" +203784,AAA Batteries (4-pack),1,2.99,05/28/19 07:45,"893 Hill St, Los Angeles, CA 90001" +203785,Wired Headphones,2,11.99,05/14/19 09:26,"550 South St, New York City, NY 10001" +203786,LG Washing Machine,1,600.0,05/07/19 17:27,"236 Spruce St, Los Angeles, CA 90001" +203787,Bose SoundSport Headphones,1,99.99,05/24/19 21:21,"433 Highland St, New York City, NY 10001" +203788,USB-C Charging Cable,1,11.95,05/27/19 19:54,"788 Hill St, Boston, MA 02215" +203789,AA Batteries (4-pack),2,3.84,05/07/19 17:15,"763 Jackson St, New York City, NY 10001" +203790,Lightning Charging Cable,1,14.95,05/24/19 16:43,"909 Elm St, New York City, NY 10001" +203791,Apple Airpods Headphones,1,150,05/28/19 14:21,"580 Hickory St, San Francisco, CA 94016" +203792,Bose SoundSport Headphones,1,99.99,05/20/19 10:32,"337 Wilson St, San Francisco, CA 94016" +,,,,, +203793,Wired Headphones,1,11.99,05/26/19 17:16,"467 Madison St, Dallas, TX 75001" +203794,USB-C Charging Cable,1,11.95,05/06/19 12:48,"471 11th St, New York City, NY 10001" +203795,34in Ultrawide Monitor,1,379.99,05/05/19 08:01,"122 Johnson St, Los Angeles, CA 90001" +203796,AA Batteries (4-pack),1,3.84,05/18/19 12:37,"992 Spruce St, Austin, TX 73301" +203797,Bose SoundSport Headphones,1,99.99,05/23/19 10:53,"524 13th St, Austin, TX 73301" +203798,Apple Airpods Headphones,1,150,05/18/19 19:50,"853 West St, New York City, NY 10001" +203799,27in 4K Gaming Monitor,1,389.99,05/31/19 15:45,"460 Maple St, Los Angeles, CA 90001" +203800,ThinkPad Laptop,1,999.99,05/01/19 16:39,"578 Dogwood St, Boston, MA 02215" +203801,Google Phone,1,600,05/26/19 16:47,"858 Center St, Atlanta, GA 30301" +203802,Wired Headphones,1,11.99,05/15/19 20:14,"473 Lakeview St, New York City, NY 10001" +203803,Wired Headphones,1,11.99,05/15/19 12:38,"632 Meadow St, San Francisco, CA 94016" +203804,AAA Batteries (4-pack),1,2.99,05/21/19 17:47,"556 12th St, Los Angeles, CA 90001" +203805,Bose SoundSport Headphones,1,99.99,05/29/19 21:11,"506 Walnut St, San Francisco, CA 94016" +203806,Wired Headphones,1,11.99,05/14/19 20:51,"881 Dogwood St, Portland, OR 97035" +203807,AAA Batteries (4-pack),2,2.99,05/29/19 13:56,"152 4th St, Austin, TX 73301" +203808,AA Batteries (4-pack),1,3.84,05/26/19 09:50,"88 Johnson St, New York City, NY 10001" +203809,Lightning Charging Cable,1,14.95,05/23/19 09:22,"469 Madison St, Portland, OR 97035" +203810,Bose SoundSport Headphones,1,99.99,05/26/19 16:03,"669 9th St, Los Angeles, CA 90001" +203811,USB-C Charging Cable,1,11.95,05/24/19 18:24,"504 7th St, Dallas, TX 75001" +203812,Wired Headphones,1,11.99,05/10/19 21:58,"370 Sunset St, Boston, MA 02215" +203813,Apple Airpods Headphones,1,150,05/28/19 12:07,"747 South St, Seattle, WA 98101" +203814,USB-C Charging Cable,1,11.95,05/24/19 19:52,"735 10th St, Los Angeles, CA 90001" +203815,AAA Batteries (4-pack),2,2.99,05/16/19 20:51,"942 Sunset St, Dallas, TX 75001" +203816,AA Batteries (4-pack),1,3.84,05/05/19 01:34,"586 Cherry St, Portland, OR 97035" +203817,Apple Airpods Headphones,1,150,05/06/19 20:03,"896 4th St, Austin, TX 73301" +203818,Lightning Charging Cable,1,14.95,05/30/19 16:31,"845 West St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +203819,Wired Headphones,1,11.99,05/27/19 19:30,"594 14th St, Atlanta, GA 30301" +203820,iPhone,1,700,05/05/19 01:00,"978 Adams St, San Francisco, CA 94016" +203821,AAA Batteries (4-pack),1,2.99,05/19/19 13:40,"882 13th St, Portland, OR 97035" +203822,AA Batteries (4-pack),1,3.84,05/31/19 16:04,"123 11th St, Atlanta, GA 30301" +203823,27in FHD Monitor,1,149.99,05/31/19 09:07,"216 Madison St, New York City, NY 10001" +203824,AAA Batteries (4-pack),2,2.99,05/08/19 20:26,"925 Dogwood St, Dallas, TX 75001" +203825,AAA Batteries (4-pack),2,2.99,05/09/19 02:22,"847 Center St, Los Angeles, CA 90001" +203826,Lightning Charging Cable,1,14.95,05/22/19 10:08,"613 Lincoln St, San Francisco, CA 94016" +203827,USB-C Charging Cable,1,11.95,05/14/19 19:52,"721 Madison St, New York City, NY 10001" +203828,USB-C Charging Cable,1,11.95,05/25/19 21:01,"575 Ridge St, New York City, NY 10001" +203829,USB-C Charging Cable,1,11.95,05/30/19 17:45,"280 Lakeview St, San Francisco, CA 94016" +203830,27in FHD Monitor,1,149.99,05/06/19 09:37,"219 Wilson St, San Francisco, CA 94016" +203831,AA Batteries (4-pack),1,3.84,05/25/19 14:01,"59 Lake St, Atlanta, GA 30301" +203832,Wired Headphones,1,11.99,05/25/19 22:40,"521 Washington St, Los Angeles, CA 90001" +203833,27in 4K Gaming Monitor,1,389.99,05/13/19 16:01,"85 Johnson St, Seattle, WA 98101" +203834,AAA Batteries (4-pack),1,2.99,05/23/19 09:01,"801 Johnson St, Boston, MA 02215" +203835,USB-C Charging Cable,1,11.95,05/27/19 14:29,"730 Willow St, Dallas, TX 75001" +203836,iPhone,1,700,05/06/19 12:15,"845 Sunset St, Seattle, WA 98101" +203837,AA Batteries (4-pack),1,3.84,05/06/19 17:39,"685 12th St, Los Angeles, CA 90001" +203837,AA Batteries (4-pack),1,3.84,05/06/19 17:39,"685 12th St, Los Angeles, CA 90001" +203838,USB-C Charging Cable,1,11.95,05/04/19 11:35,"439 Wilson St, New York City, NY 10001" +203839,AA Batteries (4-pack),4,3.84,05/04/19 19:11,"787 Jefferson St, San Francisco, CA 94016" +203840,AA Batteries (4-pack),1,3.84,05/29/19 06:54,"380 Highland St, New York City, NY 10001" +203841,AA Batteries (4-pack),1,3.84,05/16/19 12:29,"745 Chestnut St, Dallas, TX 75001" +203842,USB-C Charging Cable,1,11.95,05/12/19 19:25,"335 Cedar St, San Francisco, CA 94016" +203843,AAA Batteries (4-pack),1,2.99,05/17/19 13:07,"213 11th St, San Francisco, CA 94016" +203844,Apple Airpods Headphones,1,150,05/11/19 11:03,"677 Hickory St, Seattle, WA 98101" +203845,20in Monitor,1,109.99,05/16/19 08:03,"877 Adams St, Portland, ME 04101" +203846,iPhone,1,700,05/29/19 18:57,"500 5th St, Los Angeles, CA 90001" +203847,AA Batteries (4-pack),1,3.84,05/04/19 17:07,"81 Sunset St, San Francisco, CA 94016" +203848,AAA Batteries (4-pack),1,2.99,05/25/19 10:39,"870 Forest St, Seattle, WA 98101" +203849,Apple Airpods Headphones,1,150,05/31/19 19:47,"90 1st St, San Francisco, CA 94016" +203850,Lightning Charging Cable,1,14.95,05/16/19 10:53,"312 10th St, Boston, MA 02215" +203851,iPhone,1,700,05/24/19 23:18,"313 Pine St, San Francisco, CA 94016" +203852,AAA Batteries (4-pack),1,2.99,05/21/19 20:27,"223 Dogwood St, San Francisco, CA 94016" +203853,AA Batteries (4-pack),2,3.84,05/17/19 21:31,"847 North St, Boston, MA 02215" +203854,Wired Headphones,1,11.99,05/14/19 12:56,"977 Maple St, Los Angeles, CA 90001" +203855,Lightning Charging Cable,2,14.95,05/16/19 20:33,"590 West St, Los Angeles, CA 90001" +203856,Wired Headphones,1,11.99,05/30/19 11:57,"68 8th St, Austin, TX 73301" +203857,20in Monitor,1,109.99,05/26/19 09:59,"520 Pine St, Boston, MA 02215" +203858,AAA Batteries (4-pack),1,2.99,05/17/19 18:57,"936 13th St, Los Angeles, CA 90001" +203859,USB-C Charging Cable,2,11.95,05/08/19 19:17,"511 Johnson St, San Francisco, CA 94016" +203860,Macbook Pro Laptop,1,1700,05/01/19 13:14,"272 8th St, Atlanta, GA 30301" +203861,Bose SoundSport Headphones,1,99.99,05/12/19 12:38,"251 Cedar St, San Francisco, CA 94016" +203862,Apple Airpods Headphones,1,150,05/07/19 09:48,"718 Main St, Los Angeles, CA 90001" +203863,Apple Airpods Headphones,1,150,05/26/19 06:29,"639 2nd St, Austin, TX 73301" +203864,ThinkPad Laptop,1,999.99,05/12/19 13:21,"440 Jackson St, Los Angeles, CA 90001" +203865,AAA Batteries (4-pack),2,2.99,05/22/19 18:41,"30 7th St, New York City, NY 10001" +203866,Lightning Charging Cable,1,14.95,05/02/19 15:02,"383 Highland St, Boston, MA 02215" +203867,Lightning Charging Cable,1,14.95,05/25/19 21:22,"811 Spruce St, Austin, TX 73301" +203868,iPhone,1,700,05/06/19 07:39,"994 Meadow St, Los Angeles, CA 90001" +203869,Google Phone,1,600,05/27/19 07:49,"438 Jackson St, Los Angeles, CA 90001" +203869,Wired Headphones,1,11.99,05/27/19 07:49,"438 Jackson St, Los Angeles, CA 90001" +203870,34in Ultrawide Monitor,1,379.99,05/19/19 12:31,"953 North St, Los Angeles, CA 90001" +203871,Wired Headphones,1,11.99,05/26/19 07:44,"168 Cedar St, San Francisco, CA 94016" +203872,USB-C Charging Cable,1,11.95,05/28/19 16:16,"493 Elm St, Boston, MA 02215" +203873,Apple Airpods Headphones,1,150,05/22/19 14:40,"845 4th St, Boston, MA 02215" +203874,AAA Batteries (4-pack),1,2.99,05/07/19 21:52,"112 Johnson St, Los Angeles, CA 90001" +203875,Apple Airpods Headphones,1,150,05/25/19 12:32,"801 Spruce St, Boston, MA 02215" +203876,Lightning Charging Cable,1,14.95,05/18/19 12:29,"241 11th St, Austin, TX 73301" +203877,Wired Headphones,1,11.99,05/12/19 09:32,"600 Hickory St, New York City, NY 10001" +203878,27in FHD Monitor,1,149.99,05/09/19 21:53,"68 Walnut St, Austin, TX 73301" +203879,iPhone,1,700,05/07/19 13:24,"279 Spruce St, Boston, MA 02215" +203879,Wired Headphones,1,11.99,05/07/19 13:24,"279 Spruce St, Boston, MA 02215" +203880,Wired Headphones,1,11.99,05/04/19 10:42,"671 Walnut St, New York City, NY 10001" +203881,Wired Headphones,1,11.99,05/09/19 10:05,"625 Spruce St, Seattle, WA 98101" +203882,Google Phone,1,600,05/25/19 18:32,"108 Pine St, San Francisco, CA 94016" +203882,USB-C Charging Cable,1,11.95,05/25/19 18:32,"108 Pine St, San Francisco, CA 94016" +203883,AA Batteries (4-pack),1,3.84,05/30/19 09:26,"251 14th St, San Francisco, CA 94016" +203884,Wired Headphones,1,11.99,05/22/19 20:02,"19 Washington St, Portland, OR 97035" +203885,Wired Headphones,1,11.99,05/20/19 14:02,"359 6th St, Portland, OR 97035" +203886,AAA Batteries (4-pack),2,2.99,05/01/19 09:04,"471 8th St, Boston, MA 02215" +203887,AA Batteries (4-pack),1,3.84,05/26/19 13:53,"482 Forest St, New York City, NY 10001" +203888,USB-C Charging Cable,1,11.95,05/03/19 09:11,"526 12th St, Los Angeles, CA 90001" +203889,Wired Headphones,1,11.99,05/31/19 20:58,"633 Wilson St, Los Angeles, CA 90001" +203890,USB-C Charging Cable,1,11.95,05/11/19 11:50,"423 South St, Los Angeles, CA 90001" +203891,AAA Batteries (4-pack),2,2.99,05/02/19 02:18,"706 Park St, Los Angeles, CA 90001" +203892,27in 4K Gaming Monitor,1,389.99,05/18/19 21:34,"616 Ridge St, Boston, MA 02215" +203893,Macbook Pro Laptop,1,1700,05/05/19 15:31,"525 8th St, Seattle, WA 98101" +203894,Vareebadd Phone,1,400,05/25/19 16:33,"387 Hill St, Dallas, TX 75001" +203895,Wired Headphones,1,11.99,05/26/19 09:01,"768 13th St, San Francisco, CA 94016" +203896,AAA Batteries (4-pack),1,2.99,05/18/19 14:27,"969 Johnson St, Los Angeles, CA 90001" +203897,AAA Batteries (4-pack),1,2.99,05/20/19 10:21,"841 Church St, Boston, MA 02215" +203897,Lightning Charging Cable,1,14.95,05/20/19 10:21,"841 Church St, Boston, MA 02215" +203898,Apple Airpods Headphones,1,150,05/04/19 16:44,"848 Sunset St, Dallas, TX 75001" +203899,AA Batteries (4-pack),3,3.84,05/19/19 20:35,"260 Highland St, Seattle, WA 98101" +203900,AAA Batteries (4-pack),2,2.99,05/17/19 17:41,"56 North St, New York City, NY 10001" +203901,Wired Headphones,1,11.99,05/17/19 18:46,"737 12th St, San Francisco, CA 94016" +203902,Flatscreen TV,1,300,05/23/19 18:11,"822 Sunset St, New York City, NY 10001" +203903,AA Batteries (4-pack),1,3.84,05/12/19 11:36,"33 Hill St, Boston, MA 02215" +203904,ThinkPad Laptop,1,999.99,05/17/19 17:16,"319 Elm St, Los Angeles, CA 90001" +203905,iPhone,1,700,05/19/19 16:01,"697 Center St, Boston, MA 02215" +203906,Macbook Pro Laptop,1,1700,05/05/19 19:10,"562 Wilson St, San Francisco, CA 94016" +203907,Bose SoundSport Headphones,1,99.99,05/20/19 13:53,"55 13th St, Boston, MA 02215" +203908,AA Batteries (4-pack),1,3.84,05/27/19 14:38,"469 Chestnut St, Los Angeles, CA 90001" +203909,Lightning Charging Cable,1,14.95,05/30/19 12:00,"486 Willow St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +203910,AA Batteries (4-pack),1,3.84,05/05/19 21:18,"508 River St, Boston, MA 02215" +203911,Apple Airpods Headphones,1,150,05/25/19 14:27,"620 Cherry St, Los Angeles, CA 90001" +203912,USB-C Charging Cable,1,11.95,05/21/19 16:57,"188 Lakeview St, Los Angeles, CA 90001" +203913,Bose SoundSport Headphones,1,99.99,05/18/19 14:18,"565 Elm St, San Francisco, CA 94016" +203914,Apple Airpods Headphones,1,150,05/11/19 15:53,"942 Willow St, Dallas, TX 75001" +203915,Wired Headphones,1,11.99,05/21/19 11:45,"103 1st St, New York City, NY 10001" +203916,iPhone,1,700,05/04/19 08:37,"3 West St, Dallas, TX 75001" +203917,AAA Batteries (4-pack),4,2.99,05/07/19 09:38,"527 10th St, New York City, NY 10001" +203918,USB-C Charging Cable,1,11.95,05/12/19 06:04,"516 5th St, New York City, NY 10001" +203919,Lightning Charging Cable,1,14.95,05/13/19 17:45,"105 Cedar St, Seattle, WA 98101" +203920,Lightning Charging Cable,1,14.95,05/31/19 21:34,"375 1st St, San Francisco, CA 94016" +203921,USB-C Charging Cable,2,11.95,05/13/19 15:41,"34 14th St, Seattle, WA 98101" +203922,27in 4K Gaming Monitor,1,389.99,05/17/19 01:03,"365 Elm St, Seattle, WA 98101" +203923,Wired Headphones,1,11.99,05/31/19 14:32,"549 Park St, Dallas, TX 75001" +203924,Bose SoundSport Headphones,1,99.99,05/10/19 14:16,"898 Lake St, Dallas, TX 75001" +203925,Wired Headphones,1,11.99,05/31/19 14:39,"83 River St, Los Angeles, CA 90001" +203926,Wired Headphones,1,11.99,05/06/19 21:19,"958 Park St, Austin, TX 73301" +203927,34in Ultrawide Monitor,1,379.99,05/17/19 20:14,"925 4th St, Seattle, WA 98101" +203928,USB-C Charging Cable,1,11.95,05/25/19 06:07,"99 Ridge St, New York City, NY 10001" +203929,Bose SoundSport Headphones,1,99.99,05/24/19 00:37,"454 Wilson St, Portland, OR 97035" +203930,Google Phone,1,600,05/17/19 15:19,"228 River St, Boston, MA 02215" +203931,AA Batteries (4-pack),1,3.84,05/11/19 18:54,"127 Chestnut St, Portland, OR 97035" +203932,Bose SoundSport Headphones,1,99.99,05/13/19 13:28,"862 Center St, Boston, MA 02215" +203932,Apple Airpods Headphones,1,150,05/13/19 13:28,"862 Center St, Boston, MA 02215" +203933,27in 4K Gaming Monitor,1,389.99,05/22/19 00:17,"122 Spruce St, New York City, NY 10001" +203934,Bose SoundSport Headphones,1,99.99,05/03/19 09:39,"850 Main St, Dallas, TX 75001" +203935,USB-C Charging Cable,1,11.95,05/22/19 12:47,"814 11th St, New York City, NY 10001" +203936,AAA Batteries (4-pack),2,2.99,05/22/19 17:38,"291 Elm St, Atlanta, GA 30301" +203937,Wired Headphones,2,11.99,05/23/19 08:59,"921 10th St, Portland, OR 97035" +203938,Lightning Charging Cable,1,14.95,05/21/19 13:13,"76 8th St, Seattle, WA 98101" +203939,Macbook Pro Laptop,1,1700,05/28/19 19:28,"417 Hickory St, New York City, NY 10001" +203940,AA Batteries (4-pack),3,3.84,05/08/19 17:09,"212 Park St, Atlanta, GA 30301" +203941,Macbook Pro Laptop,1,1700,05/31/19 11:21,"658 North St, San Francisco, CA 94016" +203942,Apple Airpods Headphones,1,150,05/20/19 14:07,"221 Church St, Los Angeles, CA 90001" +203943,Wired Headphones,1,11.99,05/26/19 13:31,"729 Main St, Portland, OR 97035" +203944,Wired Headphones,1,11.99,05/22/19 10:22,"90 Walnut St, New York City, NY 10001" +203945,iPhone,1,700,05/24/19 18:36,"318 Adams St, San Francisco, CA 94016" +203946,Apple Airpods Headphones,1,150,05/24/19 13:32,"940 8th St, Los Angeles, CA 90001" +203947,USB-C Charging Cable,1,11.95,05/30/19 22:18,"729 9th St, Dallas, TX 75001" +203948,AAA Batteries (4-pack),1,2.99,05/20/19 11:20,"305 11th St, San Francisco, CA 94016" +203949,Wired Headphones,1,11.99,05/03/19 10:31,"871 Madison St, Los Angeles, CA 90001" +203950,Lightning Charging Cable,1,14.95,05/29/19 09:52,"311 Lake St, Los Angeles, CA 90001" +203951,Macbook Pro Laptop,1,1700,05/04/19 06:19,"883 Main St, Portland, OR 97035" +203952,34in Ultrawide Monitor,1,379.99,05/13/19 12:51,"51 5th St, Atlanta, GA 30301" +203953,34in Ultrawide Monitor,1,379.99,05/08/19 20:41,"18 River St, Los Angeles, CA 90001" +203954,AAA Batteries (4-pack),1,2.99,05/30/19 09:45,"264 Center St, Boston, MA 02215" +203955,Lightning Charging Cable,1,14.95,05/30/19 17:41,"530 Main St, Seattle, WA 98101" +203956,USB-C Charging Cable,1,11.95,05/04/19 23:11,"670 Madison St, San Francisco, CA 94016" +203957,iPhone,1,700,05/27/19 08:52,"943 River St, San Francisco, CA 94016" +203958,Flatscreen TV,1,300,05/19/19 17:02,"172 Main St, Los Angeles, CA 90001" +203959,Apple Airpods Headphones,1,150,05/11/19 10:44,"86 Forest St, Boston, MA 02215" +203960,AA Batteries (4-pack),1,3.84,05/30/19 20:34,"938 Forest St, Boston, MA 02215" +203961,Lightning Charging Cable,1,14.95,05/22/19 19:25,"475 Spruce St, San Francisco, CA 94016" +203962,USB-C Charging Cable,1,11.95,05/13/19 00:57,"376 11th St, Los Angeles, CA 90001" +203963,AAA Batteries (4-pack),1,2.99,05/01/19 11:53,"157 13th St, Los Angeles, CA 90001" +203964,AA Batteries (4-pack),1,3.84,05/11/19 19:13,"930 Elm St, Los Angeles, CA 90001" +203965,AA Batteries (4-pack),3,3.84,05/23/19 18:57,"260 1st St, Los Angeles, CA 90001" +203966,AA Batteries (4-pack),2,3.84,05/04/19 21:33,"209 Meadow St, San Francisco, CA 94016" +203967,USB-C Charging Cable,1,11.95,05/14/19 19:44,"254 13th St, San Francisco, CA 94016" +203968,Apple Airpods Headphones,1,150,05/13/19 09:26,"922 7th St, Portland, ME 04101" +203969,USB-C Charging Cable,1,11.95,05/12/19 11:32,"929 8th St, Los Angeles, CA 90001" +203970,Bose SoundSport Headphones,1,99.99,05/23/19 21:12,"814 Willow St, Los Angeles, CA 90001" +203971,AA Batteries (4-pack),1,3.84,05/23/19 12:40,"68 Jefferson St, Los Angeles, CA 90001" +203972,Apple Airpods Headphones,1,150,05/09/19 14:28,"348 14th St, Portland, ME 04101" +203973,Flatscreen TV,1,300,05/21/19 14:41,"313 Wilson St, Los Angeles, CA 90001" +203974,34in Ultrawide Monitor,1,379.99,05/09/19 21:02,"90 Cedar St, Los Angeles, CA 90001" +203975,Bose SoundSport Headphones,1,99.99,05/13/19 12:30,"40 Hill St, Seattle, WA 98101" +203976,AAA Batteries (4-pack),1,2.99,05/21/19 20:39,"450 8th St, San Francisco, CA 94016" +203977,27in 4K Gaming Monitor,1,389.99,05/23/19 21:59,"16 Lincoln St, Dallas, TX 75001" +203978,Apple Airpods Headphones,1,150,05/16/19 09:59,"699 North St, San Francisco, CA 94016" +203979,Lightning Charging Cable,1,14.95,05/16/19 15:28,"784 Washington St, Los Angeles, CA 90001" +203980,Lightning Charging Cable,1,14.95,05/31/19 09:28,"850 Chestnut St, Boston, MA 02215" +203981,iPhone,1,700,05/09/19 11:05,"465 1st St, Atlanta, GA 30301" +203982,AAA Batteries (4-pack),5,2.99,05/31/19 10:06,"647 Hickory St, Los Angeles, CA 90001" +203983,USB-C Charging Cable,2,11.95,05/23/19 19:52,"54 Sunset St, Austin, TX 73301" +203984,USB-C Charging Cable,1,11.95,05/11/19 22:21,"847 9th St, Atlanta, GA 30301" +203985,20in Monitor,1,109.99,05/03/19 15:13,"254 11th St, New York City, NY 10001" +203986,27in FHD Monitor,1,149.99,05/27/19 15:11,"460 North St, Seattle, WA 98101" +203987,AAA Batteries (4-pack),1,2.99,05/19/19 18:26,"256 Maple St, Atlanta, GA 30301" +203988,Lightning Charging Cable,1,14.95,05/29/19 23:33,"93 Cedar St, New York City, NY 10001" +203989,Bose SoundSport Headphones,1,99.99,05/09/19 08:06,"649 Ridge St, San Francisco, CA 94016" +203990,LG Dryer,1,600.0,05/03/19 20:19,"648 West St, San Francisco, CA 94016" +203991,Bose SoundSport Headphones,1,99.99,05/09/19 14:52,"501 Lake St, Atlanta, GA 30301" +203992,AA Batteries (4-pack),1,3.84,05/05/19 08:38,"427 Highland St, New York City, NY 10001" +203993,Apple Airpods Headphones,1,150,05/13/19 11:58,"976 Center St, Boston, MA 02215" +203993,AA Batteries (4-pack),1,3.84,05/13/19 11:58,"976 Center St, Boston, MA 02215" +203994,Lightning Charging Cable,1,14.95,05/28/19 13:01,"223 10th St, Los Angeles, CA 90001" +203995,USB-C Charging Cable,1,11.95,05/27/19 19:56,"453 Lakeview St, Austin, TX 73301" +203996,USB-C Charging Cable,1,11.95,05/08/19 09:37,"637 Johnson St, San Francisco, CA 94016" +203997,20in Monitor,1,109.99,05/27/19 20:27,"919 Maple St, San Francisco, CA 94016" +203998,Lightning Charging Cable,1,14.95,05/10/19 11:39,"741 8th St, Portland, ME 04101" +203999,USB-C Charging Cable,2,11.95,05/22/19 21:21,"816 6th St, Boston, MA 02215" +204000,USB-C Charging Cable,1,11.95,05/05/19 19:15,"98 Sunset St, New York City, NY 10001" +204001,Apple Airpods Headphones,1,150,05/17/19 17:15,"280 Forest St, Portland, OR 97035" +204002,Bose SoundSport Headphones,1,99.99,05/17/19 18:11,"476 1st St, San Francisco, CA 94016" +204003,AAA Batteries (4-pack),2,2.99,05/13/19 13:25,"54 Lakeview St, Seattle, WA 98101" +204004,USB-C Charging Cable,1,11.95,05/26/19 14:38,"533 Lincoln St, Portland, OR 97035" +204005,Apple Airpods Headphones,1,150,05/29/19 14:19,"711 2nd St, Boston, MA 02215" +204006,Google Phone,1,600,05/12/19 16:39,"643 Ridge St, Boston, MA 02215" +204007,USB-C Charging Cable,1,11.95,05/14/19 17:20,"261 Highland St, Los Angeles, CA 90001" +204008,Apple Airpods Headphones,1,150,05/28/19 23:31,"523 Hickory St, San Francisco, CA 94016" +204009,Lightning Charging Cable,1,14.95,05/06/19 12:13,"631 Lakeview St, Seattle, WA 98101" +204010,27in 4K Gaming Monitor,1,389.99,05/17/19 18:28,"890 Lakeview St, Dallas, TX 75001" +204011,Apple Airpods Headphones,1,150,05/25/19 12:32,"260 4th St, San Francisco, CA 94016" +204012,Apple Airpods Headphones,1,150,05/07/19 17:00,"547 Spruce St, Boston, MA 02215" +204013,Wired Headphones,1,11.99,05/15/19 15:14,"436 8th St, San Francisco, CA 94016" +204014,AA Batteries (4-pack),3,3.84,05/10/19 16:25,"151 River St, San Francisco, CA 94016" +204015,AAA Batteries (4-pack),1,2.99,05/20/19 09:27,"713 Willow St, Los Angeles, CA 90001" +204016,Flatscreen TV,1,300,05/02/19 19:33,"216 Sunset St, San Francisco, CA 94016" +204017,Bose SoundSport Headphones,1,99.99,05/10/19 12:20,"174 Center St, Los Angeles, CA 90001" +204018,34in Ultrawide Monitor,1,379.99,05/18/19 13:37,"771 North St, Atlanta, GA 30301" +204019,AA Batteries (4-pack),1,3.84,05/22/19 01:37,"624 Cherry St, Los Angeles, CA 90001" +204020,Bose SoundSport Headphones,1,99.99,05/05/19 09:52,"547 8th St, Los Angeles, CA 90001" +204021,USB-C Charging Cable,1,11.95,05/30/19 17:42,"790 Cherry St, Los Angeles, CA 90001" +204022,Lightning Charging Cable,1,14.95,05/11/19 13:39,"11 Dogwood St, New York City, NY 10001" +204023,Wired Headphones,1,11.99,05/12/19 07:49,"197 Sunset St, Los Angeles, CA 90001" +204024,Bose SoundSport Headphones,1,99.99,05/14/19 08:51,"115 Cedar St, Los Angeles, CA 90001" +204025,Wired Headphones,1,11.99,05/21/19 17:25,"315 Center St, Dallas, TX 75001" +204026,Vareebadd Phone,1,400,05/14/19 12:29,"205 Cherry St, Los Angeles, CA 90001" +204027,Bose SoundSport Headphones,1,99.99,05/18/19 12:25,"859 14th St, San Francisco, CA 94016" +204028,USB-C Charging Cable,1,11.95,05/23/19 23:08,"291 4th St, Austin, TX 73301" +204029,AAA Batteries (4-pack),2,2.99,05/05/19 18:36,"431 Meadow St, New York City, NY 10001" +204030,34in Ultrawide Monitor,1,379.99,05/15/19 23:04,"543 Elm St, Portland, OR 97035" +204031,AA Batteries (4-pack),1,3.84,05/09/19 21:00,"17 Highland St, Boston, MA 02215" +204032,iPhone,1,700,05/01/19 08:53,"724 1st St, San Francisco, CA 94016" +204033,Lightning Charging Cable,1,14.95,05/30/19 05:58,"788 Jefferson St, Los Angeles, CA 90001" +204034,AA Batteries (4-pack),1,3.84,05/09/19 11:12,"313 7th St, New York City, NY 10001" +204035,Lightning Charging Cable,1,14.95,05/10/19 14:25,"8 Spruce St, Austin, TX 73301" +204036,USB-C Charging Cable,1,11.95,05/24/19 22:41,"693 Elm St, San Francisco, CA 94016" +204037,iPhone,1,700,05/10/19 16:48,"307 1st St, New York City, NY 10001" +204037,Lightning Charging Cable,1,14.95,05/10/19 16:48,"307 1st St, New York City, NY 10001" +204038,Google Phone,1,600,05/19/19 10:03,"75 River St, Atlanta, GA 30301" +204039,AAA Batteries (4-pack),1,2.99,05/26/19 17:37,"828 9th St, San Francisco, CA 94016" +204040,Lightning Charging Cable,1,14.95,05/23/19 09:02,"145 12th St, Portland, ME 04101" +204041,Apple Airpods Headphones,1,150,05/29/19 14:30,"748 Chestnut St, Los Angeles, CA 90001" +204042,Apple Airpods Headphones,1,150,05/17/19 13:49,"776 Lake St, San Francisco, CA 94016" +204043,USB-C Charging Cable,1,11.95,05/01/19 10:30,"590 12th St, New York City, NY 10001" +204044,Wired Headphones,1,11.99,05/15/19 14:37,"50 Maple St, Los Angeles, CA 90001" +204045,Apple Airpods Headphones,1,150,05/01/19 19:20,"763 North St, Los Angeles, CA 90001" +204046,ThinkPad Laptop,1,999.99,05/26/19 17:43,"742 Washington St, Los Angeles, CA 90001" +204047,27in FHD Monitor,1,149.99,05/07/19 17:39,"485 Lake St, New York City, NY 10001" +204048,Lightning Charging Cable,1,14.95,05/10/19 09:50,"848 Elm St, Los Angeles, CA 90001" +204049,Google Phone,1,600,05/21/19 16:56,"866 8th St, San Francisco, CA 94016" +204050,Apple Airpods Headphones,1,150,05/23/19 21:10,"67 Hill St, Los Angeles, CA 90001" +204051,Lightning Charging Cable,1,14.95,05/23/19 15:36,"914 Lake St, San Francisco, CA 94016" +204052,34in Ultrawide Monitor,1,379.99,05/05/19 18:13,"123 River St, Boston, MA 02215" +204053,USB-C Charging Cable,1,11.95,05/27/19 20:18,"135 10th St, San Francisco, CA 94016" +204054,Lightning Charging Cable,1,14.95,05/13/19 10:06,"762 14th St, Boston, MA 02215" +204055,iPhone,1,700,05/11/19 12:42,"486 Lincoln St, New York City, NY 10001" +204056,Bose SoundSport Headphones,1,99.99,05/19/19 18:03,"286 Meadow St, Atlanta, GA 30301" +204057,USB-C Charging Cable,1,11.95,05/01/19 19:23,"514 West St, New York City, NY 10001" +204058,Flatscreen TV,1,300,05/01/19 09:48,"38 9th St, New York City, NY 10001" +204059,34in Ultrawide Monitor,1,379.99,05/17/19 19:16,"668 11th St, Atlanta, GA 30301" +204060,USB-C Charging Cable,1,11.95,05/31/19 01:02,"406 Washington St, Austin, TX 73301" +204061,Bose SoundSport Headphones,1,99.99,05/23/19 18:16,"328 14th St, Los Angeles, CA 90001" +204062,Wired Headphones,1,11.99,05/27/19 16:18,"647 13th St, Los Angeles, CA 90001" +204063,iPhone,1,700,05/26/19 08:43,"548 Spruce St, New York City, NY 10001" +204063,Wired Headphones,1,11.99,05/26/19 08:43,"548 Spruce St, New York City, NY 10001" +204064,Wired Headphones,1,11.99,05/27/19 13:36,"285 Meadow St, New York City, NY 10001" +204065,AA Batteries (4-pack),1,3.84,05/17/19 22:03,"654 Pine St, Portland, OR 97035" +204066,AAA Batteries (4-pack),1,2.99,05/18/19 10:50,"738 Park St, New York City, NY 10001" +204067,27in FHD Monitor,1,149.99,05/19/19 12:04,"948 5th St, Los Angeles, CA 90001" +204068,Lightning Charging Cable,1,14.95,05/16/19 19:30,"162 Lincoln St, Portland, OR 97035" +204069,ThinkPad Laptop,1,999.99,05/07/19 08:39,"429 Chestnut St, Portland, OR 97035" +204070,Flatscreen TV,1,300,05/30/19 13:53,"359 Chestnut St, Dallas, TX 75001" +204071,AAA Batteries (4-pack),1,2.99,05/08/19 20:08,"975 South St, Seattle, WA 98101" +204072,AAA Batteries (4-pack),1,2.99,05/28/19 09:18,"389 Adams St, San Francisco, CA 94016" +204073,AAA Batteries (4-pack),3,2.99,05/15/19 20:51,"361 Church St, San Francisco, CA 94016" +204074,AAA Batteries (4-pack),2,2.99,05/22/19 12:45,"228 Center St, San Francisco, CA 94016" +204075,AAA Batteries (4-pack),1,2.99,05/05/19 23:18,"522 Hickory St, Los Angeles, CA 90001" +204076,Wired Headphones,1,11.99,05/02/19 09:30,"531 Johnson St, Los Angeles, CA 90001" +204077,AAA Batteries (4-pack),1,2.99,05/01/19 09:33,"876 Ridge St, Dallas, TX 75001" +204078,Apple Airpods Headphones,1,150,05/29/19 20:43,"764 1st St, Los Angeles, CA 90001" +204079,AAA Batteries (4-pack),2,2.99,05/25/19 17:19,"940 Church St, Dallas, TX 75001" +204080,Apple Airpods Headphones,1,150,05/03/19 19:01,"371 Hill St, Atlanta, GA 30301" +204081,Wired Headphones,1,11.99,05/22/19 09:34,"261 Walnut St, Seattle, WA 98101" +204081,20in Monitor,1,109.99,05/22/19 09:34,"261 Walnut St, Seattle, WA 98101" +204082,Google Phone,1,600,05/15/19 11:45,"589 Lake St, New York City, NY 10001" +204083,USB-C Charging Cable,1,11.95,05/27/19 09:07,"143 5th St, Boston, MA 02215" +204084,Wired Headphones,2,11.99,05/08/19 18:22,"546 Hickory St, Boston, MA 02215" +204085,Bose SoundSport Headphones,1,99.99,05/28/19 05:22,"153 13th St, New York City, NY 10001" +204086,iPhone,1,700,05/13/19 16:25,"754 11th St, Atlanta, GA 30301" +204086,Apple Airpods Headphones,1,150,05/13/19 16:25,"754 11th St, Atlanta, GA 30301" +204087,34in Ultrawide Monitor,1,379.99,05/12/19 13:58,"58 Highland St, Portland, OR 97035" +204088,AA Batteries (4-pack),1,3.84,05/27/19 15:23,"15 Washington St, San Francisco, CA 94016" +204089,AA Batteries (4-pack),1,3.84,05/27/19 16:25,"924 South St, New York City, NY 10001" +204090,Lightning Charging Cable,1,14.95,05/19/19 08:34,"909 West St, Atlanta, GA 30301" +204091,AA Batteries (4-pack),2,3.84,05/15/19 12:16,"352 Forest St, Portland, OR 97035" +204092,27in FHD Monitor,1,149.99,05/17/19 10:07,"309 Cherry St, San Francisco, CA 94016" +204093,27in 4K Gaming Monitor,1,389.99,05/25/19 16:01,"415 2nd St, San Francisco, CA 94016" +204094,USB-C Charging Cable,1,11.95,05/23/19 21:39,"310 Lincoln St, San Francisco, CA 94016" +204095,USB-C Charging Cable,1,11.95,05/08/19 20:54,"841 5th St, Portland, OR 97035" +204096,USB-C Charging Cable,1,11.95,05/15/19 22:54,"179 Chestnut St, Portland, ME 04101" +204097,Flatscreen TV,1,300,05/26/19 17:49,"844 Meadow St, Boston, MA 02215" +204098,27in 4K Gaming Monitor,1,389.99,05/27/19 12:29,"920 Meadow St, Los Angeles, CA 90001" +204099,Apple Airpods Headphones,1,150,05/02/19 09:12,"111 Forest St, Austin, TX 73301" +204100,Macbook Pro Laptop,1,1700,05/31/19 08:05,"459 Spruce St, Boston, MA 02215" +204101,Apple Airpods Headphones,1,150,05/09/19 20:03,"891 Washington St, Portland, ME 04101" +204102,Lightning Charging Cable,1,14.95,05/18/19 18:00,"385 Church St, Boston, MA 02215" +204103,Flatscreen TV,1,300,05/03/19 12:10,"177 Forest St, Seattle, WA 98101" +204104,Wired Headphones,1,11.99,05/21/19 11:30,"747 Dogwood St, Dallas, TX 75001" +204105,AA Batteries (4-pack),1,3.84,05/04/19 12:41,"486 Lakeview St, San Francisco, CA 94016" +204105,USB-C Charging Cable,1,11.95,05/04/19 12:41,"486 Lakeview St, San Francisco, CA 94016" +204106,Lightning Charging Cable,1,14.95,05/28/19 00:11,"560 Lakeview St, Dallas, TX 75001" +204107,Bose SoundSport Headphones,1,99.99,05/21/19 14:55,"162 9th St, New York City, NY 10001" +204108,AAA Batteries (4-pack),2,2.99,05/22/19 08:29,"72 Center St, San Francisco, CA 94016" +204109,AA Batteries (4-pack),1,3.84,05/25/19 15:20,"858 Sunset St, San Francisco, CA 94016" +204110,AAA Batteries (4-pack),2,2.99,05/19/19 21:38,"812 Ridge St, Los Angeles, CA 90001" +204111,Wired Headphones,1,11.99,05/17/19 23:14,"659 Elm St, New York City, NY 10001" +204112,Google Phone,1,600,05/22/19 10:59,"897 Jackson St, Los Angeles, CA 90001" +204113,USB-C Charging Cable,1,11.95,05/09/19 01:05,"134 10th St, Boston, MA 02215" +204114,27in FHD Monitor,1,149.99,05/19/19 16:24,"502 7th St, San Francisco, CA 94016" +204115,Apple Airpods Headphones,2,150,05/29/19 20:01,"457 4th St, New York City, NY 10001" +204116,LG Dryer,1,600.0,05/16/19 15:10,"707 South St, Atlanta, GA 30301" +204117,Google Phone,1,600,05/07/19 17:34,"666 14th St, Boston, MA 02215" +204117,USB-C Charging Cable,1,11.95,05/07/19 17:34,"666 14th St, Boston, MA 02215" +204118,27in FHD Monitor,1,149.99,05/31/19 22:37,"629 Hill St, Los Angeles, CA 90001" +204119,Apple Airpods Headphones,1,150,05/03/19 19:00,"875 9th St, Atlanta, GA 30301" +204120,Lightning Charging Cable,1,14.95,05/22/19 22:13,"615 Lincoln St, New York City, NY 10001" +204121,AAA Batteries (4-pack),1,2.99,05/18/19 09:18,"339 River St, Los Angeles, CA 90001" +204122,Wired Headphones,1,11.99,05/02/19 10:38,"5 11th St, San Francisco, CA 94016" +204123,Flatscreen TV,1,300,05/21/19 08:56,"365 14th St, Boston, MA 02215" +204124,Lightning Charging Cable,1,14.95,05/21/19 13:24,"956 Main St, Los Angeles, CA 90001" +204125,Wired Headphones,1,11.99,05/06/19 13:39,"213 Main St, San Francisco, CA 94016" +204126,Wired Headphones,1,11.99,05/02/19 13:34,"876 Forest St, Dallas, TX 75001" +204127,Macbook Pro Laptop,1,1700,05/28/19 18:57,"93 Willow St, San Francisco, CA 94016" +204128,AA Batteries (4-pack),1,3.84,05/02/19 11:38,"217 Cedar St, Los Angeles, CA 90001" +204129,Lightning Charging Cable,1,14.95,05/24/19 23:47,"889 Wilson St, Boston, MA 02215" +204130,AAA Batteries (4-pack),1,2.99,05/18/19 14:20,"233 9th St, Dallas, TX 75001" +204131,USB-C Charging Cable,1,11.95,05/11/19 10:06,"703 7th St, Boston, MA 02215" +204132,Wired Headphones,1,11.99,05/05/19 01:22,"414 Jackson St, Dallas, TX 75001" +204133,Wired Headphones,1,11.99,05/23/19 20:08,"960 West St, Boston, MA 02215" +204134,ThinkPad Laptop,1,999.99,05/24/19 09:57,"456 Forest St, San Francisco, CA 94016" +204135,34in Ultrawide Monitor,1,379.99,05/09/19 10:59,"773 Main St, New York City, NY 10001" +204136,Wired Headphones,1,11.99,05/20/19 15:00,"20 7th St, Portland, OR 97035" +204137,Lightning Charging Cable,1,14.95,05/07/19 16:13,"938 10th St, Atlanta, GA 30301" +204138,Bose SoundSport Headphones,1,99.99,05/23/19 12:34,"670 Park St, New York City, NY 10001" +204139,AAA Batteries (4-pack),1,2.99,05/03/19 12:00,"313 Pine St, New York City, NY 10001" +204140,20in Monitor,1,109.99,05/02/19 13:23,"771 Forest St, San Francisco, CA 94016" +204141,iPhone,1,700,05/03/19 00:32,"400 11th St, Portland, OR 97035" +204142,Lightning Charging Cable,1,14.95,05/23/19 20:25,"749 Jefferson St, Dallas, TX 75001" +204143,Apple Airpods Headphones,1,150,05/31/19 12:02,"820 Maple St, San Francisco, CA 94016" +204144,Lightning Charging Cable,1,14.95,05/21/19 06:38,"679 Hickory St, Dallas, TX 75001" +204144,AA Batteries (4-pack),3,3.84,05/21/19 06:38,"679 Hickory St, Dallas, TX 75001" +204145,Bose SoundSport Headphones,1,99.99,05/29/19 12:03,"795 Ridge St, Atlanta, GA 30301" +204146,AA Batteries (4-pack),1,3.84,05/13/19 18:21,"747 Wilson St, Atlanta, GA 30301" +204147,Macbook Pro Laptop,1,1700,05/07/19 22:18,"690 Maple St, San Francisco, CA 94016" +204148,Lightning Charging Cable,1,14.95,05/12/19 09:37,"669 North St, San Francisco, CA 94016" +204148,Apple Airpods Headphones,1,150,05/12/19 09:37,"669 North St, San Francisco, CA 94016" +204149,ThinkPad Laptop,1,999.99,05/27/19 16:44,"269 12th St, Seattle, WA 98101" +204150,34in Ultrawide Monitor,1,379.99,05/25/19 11:13,"988 Ridge St, San Francisco, CA 94016" +204151,LG Washing Machine,1,600.0,05/29/19 01:12,"713 Adams St, Seattle, WA 98101" +204152,USB-C Charging Cable,1,11.95,05/25/19 15:47,"471 9th St, Boston, MA 02215" +204153,Apple Airpods Headphones,1,150,05/03/19 13:32,"921 South St, Boston, MA 02215" +204154,Apple Airpods Headphones,1,150,05/19/19 12:06,"498 Lake St, San Francisco, CA 94016" +204155,Vareebadd Phone,1,400,05/19/19 11:59,"981 Cedar St, Portland, ME 04101" +204156,USB-C Charging Cable,1,11.95,05/05/19 04:43,"998 Forest St, Atlanta, GA 30301" +204157,AAA Batteries (4-pack),1,2.99,05/30/19 13:03,"295 Park St, Boston, MA 02215" +204158,Bose SoundSport Headphones,1,99.99,05/03/19 11:16,"623 11th St, Boston, MA 02215" +204159,USB-C Charging Cable,1,11.95,05/21/19 19:28,"95 Hill St, Boston, MA 02215" +204160,AAA Batteries (4-pack),1,2.99,05/16/19 16:09,"379 Meadow St, Boston, MA 02215" +204161,USB-C Charging Cable,1,11.95,05/16/19 14:09,"94 Wilson St, Boston, MA 02215" +204162,Apple Airpods Headphones,1,150,05/01/19 18:47,"551 Hickory St, Dallas, TX 75001" +204163,AAA Batteries (4-pack),1,2.99,05/07/19 15:59,"606 Jefferson St, Boston, MA 02215" +204164,Apple Airpods Headphones,1,150,05/31/19 00:07,"532 Center St, New York City, NY 10001" +204165,Bose SoundSport Headphones,1,99.99,05/22/19 21:58,"799 Park St, Atlanta, GA 30301" +204166,USB-C Charging Cable,1,11.95,05/19/19 09:40,"783 Sunset St, Seattle, WA 98101" +204167,Google Phone,1,600,05/26/19 08:27,"993 Center St, Austin, TX 73301" +204168,Lightning Charging Cable,1,14.95,05/19/19 19:18,"814 Dogwood St, Portland, OR 97035" +204169,USB-C Charging Cable,1,11.95,05/10/19 11:47,"87 Lakeview St, Los Angeles, CA 90001" +204170,Lightning Charging Cable,1,14.95,05/10/19 12:06,"646 Hill St, Los Angeles, CA 90001" +204171,34in Ultrawide Monitor,1,379.99,05/29/19 01:08,"381 Cherry St, Los Angeles, CA 90001" +204172,USB-C Charging Cable,1,11.95,05/02/19 13:11,"998 4th St, Los Angeles, CA 90001" +204173,27in FHD Monitor,1,149.99,05/30/19 10:50,"496 Sunset St, Los Angeles, CA 90001" +204173,27in 4K Gaming Monitor,1,389.99,05/30/19 10:50,"496 Sunset St, Los Angeles, CA 90001" +204174,AAA Batteries (4-pack),1,2.99,05/22/19 19:07,"253 14th St, San Francisco, CA 94016" +204175,Wired Headphones,1,11.99,05/25/19 17:46,"233 Cherry St, Atlanta, GA 30301" +204176,Apple Airpods Headphones,1,150,05/18/19 09:48,"494 14th St, Los Angeles, CA 90001" +204177,Wired Headphones,1,11.99,05/10/19 22:11,"711 Sunset St, San Francisco, CA 94016" +204178,Apple Airpods Headphones,1,150,05/08/19 19:36,"370 5th St, Atlanta, GA 30301" +204179,27in FHD Monitor,1,149.99,05/19/19 22:50,"658 Hickory St, Dallas, TX 75001" +204180,Lightning Charging Cable,2,14.95,05/10/19 23:05,"451 Jackson St, San Francisco, CA 94016" +204181,27in 4K Gaming Monitor,1,389.99,05/22/19 20:20,"46 West St, Dallas, TX 75001" +204182,27in FHD Monitor,1,149.99,05/14/19 00:23,"100 Lake St, Austin, TX 73301" +204183,USB-C Charging Cable,1,11.95,05/29/19 13:29,"686 South St, Los Angeles, CA 90001" +204184,AAA Batteries (4-pack),3,2.99,05/29/19 13:12,"752 Maple St, San Francisco, CA 94016" +204185,27in FHD Monitor,1,149.99,05/26/19 20:55,"650 Elm St, Portland, OR 97035" +204186,Bose SoundSport Headphones,1,99.99,05/17/19 19:25,"758 1st St, Austin, TX 73301" +204187,USB-C Charging Cable,1,11.95,05/05/19 19:33,"416 North St, New York City, NY 10001" +204188,Bose SoundSport Headphones,1,99.99,05/20/19 02:26,"183 4th St, Austin, TX 73301" +204189,USB-C Charging Cable,3,11.95,05/02/19 17:02,"432 Maple St, Atlanta, GA 30301" +204190,AAA Batteries (4-pack),1,2.99,05/19/19 15:30,"742 Jefferson St, Portland, ME 04101" +204191,AA Batteries (4-pack),2,3.84,05/01/19 19:29,"242 Pine St, San Francisco, CA 94016" +204192,27in FHD Monitor,1,149.99,05/29/19 13:18,"41 4th St, New York City, NY 10001" +204193,AAA Batteries (4-pack),1,2.99,05/07/19 17:19,"620 North St, Seattle, WA 98101" +204194,AAA Batteries (4-pack),1,2.99,05/07/19 18:54,"127 Madison St, Seattle, WA 98101" +204195,LG Dryer,1,600.0,05/01/19 11:01,"236 Church St, Los Angeles, CA 90001" +204196,Bose SoundSport Headphones,1,99.99,05/30/19 18:57,"463 Hill St, San Francisco, CA 94016" +204197,Flatscreen TV,1,300,05/29/19 18:43,"730 Main St, Los Angeles, CA 90001" +204198,AA Batteries (4-pack),1,3.84,05/08/19 17:29,"707 Chestnut St, Boston, MA 02215" +204199,Bose SoundSport Headphones,1,99.99,05/30/19 12:51,"358 4th St, Atlanta, GA 30301" +204200,Apple Airpods Headphones,1,150,05/14/19 08:57,"430 Madison St, Seattle, WA 98101" +204201,Google Phone,1,600,05/24/19 20:45,"198 Hickory St, Los Angeles, CA 90001" +204202,27in FHD Monitor,1,149.99,05/23/19 15:50,"353 Cherry St, Atlanta, GA 30301" +204203,Wired Headphones,1,11.99,05/11/19 03:36,"500 Ridge St, Atlanta, GA 30301" +204204,AA Batteries (4-pack),1,3.84,05/04/19 14:42,"253 Hill St, Dallas, TX 75001" +204205,Bose SoundSport Headphones,1,99.99,05/16/19 18:32,"906 Jefferson St, Dallas, TX 75001" +204206,Bose SoundSport Headphones,1,99.99,05/29/19 08:46,"687 Wilson St, Los Angeles, CA 90001" +204207,Wired Headphones,2,11.99,05/06/19 15:14,"112 12th St, Boston, MA 02215" +204208,Bose SoundSport Headphones,1,99.99,05/18/19 19:28,"195 13th St, Seattle, WA 98101" +204209,34in Ultrawide Monitor,1,379.99,05/11/19 10:11,"409 10th St, New York City, NY 10001" +204210,AAA Batteries (4-pack),2,2.99,05/30/19 07:30,"339 Hickory St, Dallas, TX 75001" +204211,Apple Airpods Headphones,1,150,05/13/19 13:50,"530 1st St, Seattle, WA 98101" +204212,AAA Batteries (4-pack),1,2.99,05/16/19 12:55,"363 West St, Portland, OR 97035" +204213,iPhone,1,700,05/14/19 23:00,"67 6th St, Austin, TX 73301" +204213,Lightning Charging Cable,1,14.95,05/14/19 23:00,"67 6th St, Austin, TX 73301" +204214,Bose SoundSport Headphones,1,99.99,05/06/19 17:34,"993 Forest St, Portland, OR 97035" +204215,Apple Airpods Headphones,1,150,05/20/19 16:06,"545 Hill St, Dallas, TX 75001" +204216,Lightning Charging Cable,1,14.95,05/01/19 14:15,"951 1st St, San Francisco, CA 94016" +204217,USB-C Charging Cable,3,11.95,05/21/19 15:30,"292 13th St, Boston, MA 02215" +204218,AA Batteries (4-pack),2,3.84,05/11/19 13:33,"483 Lake St, New York City, NY 10001" +204219,Bose SoundSport Headphones,1,99.99,05/23/19 09:17,"636 4th St, San Francisco, CA 94016" +204220,34in Ultrawide Monitor,1,379.99,05/25/19 19:21,"788 Meadow St, Seattle, WA 98101" +204221,USB-C Charging Cable,2,11.95,05/05/19 12:02,"989 Johnson St, Austin, TX 73301" +204222,Flatscreen TV,1,300,05/20/19 21:19,"498 10th St, Seattle, WA 98101" +204223,Flatscreen TV,1,300,05/24/19 15:18,"750 West St, Los Angeles, CA 90001" +204224,34in Ultrawide Monitor,1,379.99,05/05/19 06:31,"610 Willow St, New York City, NY 10001" +204225,Wired Headphones,1,11.99,05/23/19 13:37,"917 Pine St, Boston, MA 02215" +204226,AAA Batteries (4-pack),1,2.99,05/24/19 20:32,"959 Walnut St, Portland, OR 97035" +204227,AAA Batteries (4-pack),1,2.99,05/30/19 13:38,"472 Spruce St, New York City, NY 10001" +204228,Wired Headphones,1,11.99,05/17/19 12:08,"607 South St, Los Angeles, CA 90001" +204229,Macbook Pro Laptop,1,1700,05/09/19 17:34,"782 Lakeview St, Los Angeles, CA 90001" +204230,AAA Batteries (4-pack),1,2.99,05/05/19 09:30,"779 Cedar St, San Francisco, CA 94016" +204230,Bose SoundSport Headphones,1,99.99,05/05/19 09:30,"779 Cedar St, San Francisco, CA 94016" +204231,Lightning Charging Cable,1,14.95,05/17/19 07:39,"677 Church St, San Francisco, CA 94016" +204232,USB-C Charging Cable,1,11.95,05/18/19 00:33,"885 14th St, Dallas, TX 75001" +204233,Lightning Charging Cable,1,14.95,05/16/19 08:57,"911 Cedar St, Seattle, WA 98101" +204234,Lightning Charging Cable,1,14.95,05/01/19 22:51,"432 Forest St, San Francisco, CA 94016" +204235,Google Phone,1,600,05/28/19 22:43,"39 10th St, San Francisco, CA 94016" +204236,USB-C Charging Cable,2,11.95,05/21/19 12:47,"496 Willow St, Portland, OR 97035" +204237,Google Phone,1,600,05/05/19 11:33,"879 10th St, Seattle, WA 98101" +204238,Bose SoundSport Headphones,1,99.99,05/06/19 11:54,"759 Highland St, San Francisco, CA 94016" +204239,AA Batteries (4-pack),1,3.84,05/05/19 09:22,"392 Wilson St, San Francisco, CA 94016" +204240,Google Phone,1,600,05/21/19 16:52,"813 River St, San Francisco, CA 94016" +204241,Lightning Charging Cable,1,14.95,05/23/19 09:50,"716 Johnson St, Los Angeles, CA 90001" +204242,Lightning Charging Cable,2,14.95,05/25/19 11:43,"183 Lincoln St, Los Angeles, CA 90001" +204243,USB-C Charging Cable,1,11.95,05/08/19 19:28,"885 Willow St, San Francisco, CA 94016" +204244,Lightning Charging Cable,1,14.95,05/10/19 00:13,"590 Main St, Austin, TX 73301" +204245,USB-C Charging Cable,1,11.95,05/29/19 11:33,"558 14th St, Seattle, WA 98101" +204246,Apple Airpods Headphones,1,150,05/15/19 16:22,"552 Madison St, San Francisco, CA 94016" +204247,iPhone,1,700,05/06/19 16:39,"271 Center St, Austin, TX 73301" +204248,Bose SoundSport Headphones,1,99.99,05/10/19 20:32,"569 6th St, San Francisco, CA 94016" +204249,AAA Batteries (4-pack),1,2.99,05/28/19 14:57,"208 Elm St, Boston, MA 02215" +204249,AAA Batteries (4-pack),1,2.99,05/28/19 14:57,"208 Elm St, Boston, MA 02215" +204250,Apple Airpods Headphones,1,150,05/19/19 21:46,"698 Madison St, Atlanta, GA 30301" +204251,Bose SoundSport Headphones,1,99.99,05/28/19 16:08,"754 Cherry St, San Francisco, CA 94016" +204252,27in FHD Monitor,1,149.99,05/01/19 07:46,"722 1st St, Boston, MA 02215" +204253,USB-C Charging Cable,1,11.95,05/14/19 13:50,"878 Jackson St, Atlanta, GA 30301" +204254,Bose SoundSport Headphones,1,99.99,05/17/19 17:00,"808 Cedar St, Boston, MA 02215" +204255,Apple Airpods Headphones,1,150,05/30/19 20:08,"92 1st St, New York City, NY 10001" +204256,27in FHD Monitor,1,149.99,05/20/19 13:06,"251 Center St, Los Angeles, CA 90001" +204257,Google Phone,1,600,05/12/19 13:51,"265 Adams St, New York City, NY 10001" +204258,Google Phone,1,600,05/01/19 15:33,"302 Spruce St, Boston, MA 02215" +204258,USB-C Charging Cable,1,11.95,05/01/19 15:33,"302 Spruce St, Boston, MA 02215" +204258,Bose SoundSport Headphones,1,99.99,05/01/19 15:33,"302 Spruce St, Boston, MA 02215" +204259,Macbook Pro Laptop,1,1700,05/23/19 16:25,"563 Lake St, Atlanta, GA 30301" +204260,AA Batteries (4-pack),2,3.84,05/26/19 17:39,"176 River St, Seattle, WA 98101" +204261,iPhone,1,700,05/19/19 06:39,"730 Jefferson St, San Francisco, CA 94016" +204262,Bose SoundSport Headphones,1,99.99,05/02/19 11:51,"704 Wilson St, Seattle, WA 98101" +204263,USB-C Charging Cable,1,11.95,05/22/19 23:56,"110 13th St, Los Angeles, CA 90001" +204264,AAA Batteries (4-pack),2,2.99,05/02/19 08:02,"464 Walnut St, San Francisco, CA 94016" +204265,Wired Headphones,1,11.99,05/27/19 20:41,"312 Wilson St, New York City, NY 10001" +204266,Lightning Charging Cable,1,14.95,05/09/19 17:23,"667 6th St, Seattle, WA 98101" +204267,Apple Airpods Headphones,1,150,05/18/19 10:55,"712 Pine St, New York City, NY 10001" +204267,AAA Batteries (4-pack),1,2.99,05/18/19 10:55,"712 Pine St, New York City, NY 10001" +204268,34in Ultrawide Monitor,1,379.99,05/05/19 02:46,"477 Dogwood St, Atlanta, GA 30301" +204269,Lightning Charging Cable,1,14.95,05/01/19 14:47,"287 1st St, Los Angeles, CA 90001" +204270,Apple Airpods Headphones,1,150,05/05/19 07:57,"362 West St, San Francisco, CA 94016" +204271,USB-C Charging Cable,2,11.95,05/12/19 11:44,"434 Lincoln St, Boston, MA 02215" +204272,AAA Batteries (4-pack),1,2.99,05/18/19 19:40,"819 Ridge St, Los Angeles, CA 90001" +204273,Bose SoundSport Headphones,1,99.99,05/23/19 14:54,"320 Maple St, Austin, TX 73301" +204274,Apple Airpods Headphones,1,150,05/16/19 15:54,"843 Pine St, Portland, OR 97035" +204275,USB-C Charging Cable,1,11.95,05/13/19 20:41,"495 Sunset St, Dallas, TX 75001" +204276,Bose SoundSport Headphones,1,99.99,05/13/19 16:49,"120 Willow St, Los Angeles, CA 90001" +204277,AA Batteries (4-pack),1,3.84,05/19/19 12:20,"894 Adams St, San Francisco, CA 94016" +204278,Lightning Charging Cable,1,14.95,05/25/19 02:22,"695 Lake St, Los Angeles, CA 90001" +204279,20in Monitor,1,109.99,05/18/19 15:04,"136 1st St, Los Angeles, CA 90001" +204280,AA Batteries (4-pack),1,3.84,05/10/19 03:13,"794 Jackson St, San Francisco, CA 94016" +204281,Lightning Charging Cable,1,14.95,05/03/19 23:19,"69 North St, Seattle, WA 98101" +204282,Bose SoundSport Headphones,1,99.99,05/13/19 13:29,"802 Hill St, Los Angeles, CA 90001" +204283,Macbook Pro Laptop,1,1700,05/11/19 19:18,"268 4th St, San Francisco, CA 94016" +204284,iPhone,1,700,05/15/19 18:46,"101 8th St, New York City, NY 10001" +204285,Lightning Charging Cable,1,14.95,05/06/19 11:32,"388 Lincoln St, Los Angeles, CA 90001" +204286,ThinkPad Laptop,1,999.99,05/12/19 10:26,"884 Dogwood St, San Francisco, CA 94016" +204287,AA Batteries (4-pack),2,3.84,05/31/19 04:00,"592 12th St, Portland, ME 04101" +204288,Bose SoundSport Headphones,1,99.99,05/29/19 11:55,"751 13th St, San Francisco, CA 94016" +204289,27in 4K Gaming Monitor,1,389.99,05/17/19 12:53,"716 Adams St, Boston, MA 02215" +204290,AA Batteries (4-pack),1,3.84,05/07/19 10:34,"969 Hickory St, Atlanta, GA 30301" +204291,AA Batteries (4-pack),2,3.84,05/10/19 06:52,"298 4th St, Los Angeles, CA 90001" +204292,Wired Headphones,1,11.99,05/28/19 10:09,"258 Jackson St, Seattle, WA 98101" +204293,Flatscreen TV,1,300,05/28/19 22:31,"158 West St, Seattle, WA 98101" +204294,AAA Batteries (4-pack),2,2.99,05/31/19 06:58,"708 14th St, San Francisco, CA 94016" +204295,AA Batteries (4-pack),1,3.84,05/19/19 22:53,"831 Lake St, San Francisco, CA 94016" +204296,AA Batteries (4-pack),1,3.84,05/05/19 08:09,"472 Main St, Atlanta, GA 30301" +204297,27in 4K Gaming Monitor,1,389.99,05/06/19 20:16,"504 Lakeview St, San Francisco, CA 94016" +204298,Apple Airpods Headphones,1,150,05/06/19 20:03,"84 8th St, Portland, OR 97035" +204299,34in Ultrawide Monitor,1,379.99,05/20/19 15:29,"491 Willow St, Portland, OR 97035" +204300,Bose SoundSport Headphones,2,99.99,05/22/19 21:52,"477 Main St, New York City, NY 10001" +204301,AAA Batteries (4-pack),1,2.99,05/03/19 13:06,"975 5th St, San Francisco, CA 94016" +204302,27in FHD Monitor,1,149.99,05/31/19 20:51,"294 2nd St, Los Angeles, CA 90001" +204303,Flatscreen TV,1,300,05/28/19 00:45,"24 13th St, Dallas, TX 75001" +204304,USB-C Charging Cable,1,11.95,05/16/19 16:23,"459 Hill St, Seattle, WA 98101" +204305,Lightning Charging Cable,1,14.95,05/27/19 23:02,"708 Jefferson St, Los Angeles, CA 90001" +204306,USB-C Charging Cable,1,11.95,05/05/19 11:05,"914 Lake St, Boston, MA 02215" +204307,AA Batteries (4-pack),1,3.84,05/21/19 17:15,"447 7th St, Los Angeles, CA 90001" +204308,AAA Batteries (4-pack),1,2.99,05/27/19 17:59,"826 South St, Los Angeles, CA 90001" +204309,Flatscreen TV,1,300,05/07/19 14:41,"759 Ridge St, Boston, MA 02215" +204310,Macbook Pro Laptop,1,1700,05/03/19 11:29,"569 Lake St, Los Angeles, CA 90001" +204311,AA Batteries (4-pack),3,3.84,05/04/19 13:46,"514 Elm St, Boston, MA 02215" +204312,Macbook Pro Laptop,1,1700,05/10/19 10:14,"827 4th St, Austin, TX 73301" +204313,20in Monitor,1,109.99,05/14/19 20:35,"685 Madison St, San Francisco, CA 94016" +204314,Lightning Charging Cable,1,14.95,05/18/19 08:45,"168 Main St, Los Angeles, CA 90001" +204315,AAA Batteries (4-pack),1,2.99,05/20/19 14:17,"750 River St, Portland, OR 97035" +204316,Apple Airpods Headphones,1,150,05/27/19 09:52,"783 Johnson St, New York City, NY 10001" +204317,Wired Headphones,1,11.99,05/23/19 19:06,"583 Meadow St, San Francisco, CA 94016" +204318,Lightning Charging Cable,1,14.95,05/27/19 13:12,"588 9th St, Seattle, WA 98101" +204319,Apple Airpods Headphones,1,150,05/04/19 11:07,"641 Dogwood St, Atlanta, GA 30301" +204320,USB-C Charging Cable,1,11.95,05/14/19 13:06,"122 Walnut St, Atlanta, GA 30301" +204321,Apple Airpods Headphones,1,150,06/01/19 02:23,"972 Walnut St, Seattle, WA 98101" +204322,Lightning Charging Cable,1,14.95,05/04/19 17:40,"241 Wilson St, Austin, TX 73301" +204323,AA Batteries (4-pack),1,3.84,05/22/19 10:49,"962 5th St, San Francisco, CA 94016" +204324,34in Ultrawide Monitor,1,379.99,05/23/19 11:47,"333 Jackson St, Seattle, WA 98101" +204325,Lightning Charging Cable,1,14.95,05/05/19 19:13,"239 14th St, Portland, OR 97035" +204326,USB-C Charging Cable,1,11.95,05/02/19 10:55,"580 7th St, San Francisco, CA 94016" +204327,AAA Batteries (4-pack),1,2.99,05/01/19 20:09,"762 South St, Seattle, WA 98101" +204328,Google Phone,1,600,05/26/19 16:40,"171 Maple St, Los Angeles, CA 90001" +204328,Wired Headphones,1,11.99,05/26/19 16:40,"171 Maple St, Los Angeles, CA 90001" +204329,USB-C Charging Cable,1,11.95,05/27/19 13:48,"292 Church St, Los Angeles, CA 90001" +204330,USB-C Charging Cable,1,11.95,05/11/19 21:05,"120 11th St, San Francisco, CA 94016" +204330,Google Phone,1,600,05/11/19 21:05,"120 11th St, San Francisco, CA 94016" +204331,Bose SoundSport Headphones,1,99.99,05/05/19 23:09,"752 4th St, San Francisco, CA 94016" +204332,Apple Airpods Headphones,1,150,05/31/19 13:11,"296 10th St, Seattle, WA 98101" +204333,AAA Batteries (4-pack),2,2.99,05/26/19 09:20,"704 Wilson St, Seattle, WA 98101" +204334,USB-C Charging Cable,1,11.95,05/27/19 16:03,"246 Center St, Dallas, TX 75001" +204335,Lightning Charging Cable,1,14.95,05/20/19 00:39,"69 Ridge St, Seattle, WA 98101" +204335,20in Monitor,1,109.99,05/20/19 00:39,"69 Ridge St, Seattle, WA 98101" +204336,Google Phone,1,600,05/26/19 00:27,"948 Jefferson St, San Francisco, CA 94016" +204337,Google Phone,1,600,05/28/19 07:23,"423 Adams St, Dallas, TX 75001" +204338,Apple Airpods Headphones,1,150,05/06/19 21:53,"140 9th St, Dallas, TX 75001" +204339,AAA Batteries (4-pack),1,2.99,05/23/19 17:30,"635 Cedar St, Portland, OR 97035" +204340,Apple Airpods Headphones,1,150,05/05/19 12:21,"910 6th St, Seattle, WA 98101" +204341,20in Monitor,1,109.99,05/13/19 11:53,"590 Pine St, Dallas, TX 75001" +204342,Google Phone,1,600,05/13/19 22:27,"306 13th St, Los Angeles, CA 90001" +204343,USB-C Charging Cable,2,11.95,05/28/19 21:56,"906 7th St, Seattle, WA 98101" +204344,AAA Batteries (4-pack),2,2.99,05/09/19 21:48,"659 1st St, New York City, NY 10001" +,,,,, +204345,Wired Headphones,1,11.99,05/30/19 18:50,"217 5th St, Los Angeles, CA 90001" +204346,Lightning Charging Cable,2,14.95,05/09/19 20:41,"743 Chestnut St, San Francisco, CA 94016" +204347,27in FHD Monitor,1,149.99,05/25/19 21:40,"424 Forest St, Dallas, TX 75001" +204348,AAA Batteries (4-pack),1,2.99,05/12/19 20:53,"199 2nd St, Los Angeles, CA 90001" +204349,Wired Headphones,1,11.99,05/19/19 11:51,"148 4th St, New York City, NY 10001" +204350,20in Monitor,1,109.99,05/19/19 13:55,"57 North St, New York City, NY 10001" +204351,20in Monitor,1,109.99,05/26/19 20:51,"730 Dogwood St, San Francisco, CA 94016" +204352,Bose SoundSport Headphones,1,99.99,05/08/19 10:34,"938 Park St, New York City, NY 10001" +204353,AAA Batteries (4-pack),1,2.99,05/08/19 22:35,"343 9th St, Atlanta, GA 30301" +204354,Wired Headphones,1,11.99,05/01/19 14:31,"21 Meadow St, Dallas, TX 75001" +204355,Lightning Charging Cable,1,14.95,05/24/19 10:26,"921 6th St, Los Angeles, CA 90001" +204356,Wired Headphones,1,11.99,05/08/19 18:23,"596 Ridge St, San Francisco, CA 94016" +204357,AAA Batteries (4-pack),2,2.99,05/31/19 16:26,"186 12th St, New York City, NY 10001" +204358,Lightning Charging Cable,1,14.95,05/25/19 13:45,"419 Spruce St, Boston, MA 02215" +204359,Google Phone,1,600,05/30/19 01:58,"257 Jefferson St, San Francisco, CA 94016" +204359,USB-C Charging Cable,2,11.95,05/30/19 01:58,"257 Jefferson St, San Francisco, CA 94016" +204360,Google Phone,1,600,05/19/19 21:44,"781 5th St, New York City, NY 10001" +204361,Lightning Charging Cable,2,14.95,05/15/19 20:11,"25 Cedar St, Seattle, WA 98101" +204362,20in Monitor,1,109.99,05/11/19 14:48,"927 5th St, San Francisco, CA 94016" +204363,AA Batteries (4-pack),2,3.84,05/26/19 22:12,"565 Cedar St, Boston, MA 02215" +204364,USB-C Charging Cable,1,11.95,05/01/19 12:28,"278 Jefferson St, San Francisco, CA 94016" +204365,Wired Headphones,1,11.99,05/22/19 16:23,"486 Walnut St, San Francisco, CA 94016" +204365,Lightning Charging Cable,1,14.95,05/22/19 16:23,"486 Walnut St, San Francisco, CA 94016" +204366,27in 4K Gaming Monitor,1,389.99,05/14/19 18:04,"850 Sunset St, Atlanta, GA 30301" +204367,AAA Batteries (4-pack),1,2.99,05/25/19 12:11,"203 Spruce St, San Francisco, CA 94016" +204368,Bose SoundSport Headphones,1,99.99,05/21/19 00:41,"560 Lake St, Boston, MA 02215" +204369,AA Batteries (4-pack),1,3.84,05/11/19 14:47,"98 Sunset St, Dallas, TX 75001" +204370,Google Phone,1,600,05/21/19 23:50,"393 Cherry St, Los Angeles, CA 90001" +204370,USB-C Charging Cable,1,11.95,05/21/19 23:50,"393 Cherry St, Los Angeles, CA 90001" +204371,Macbook Pro Laptop,1,1700,05/28/19 12:59,"91 Pine St, San Francisco, CA 94016" +204372,Lightning Charging Cable,1,14.95,05/02/19 15:24,"250 Walnut St, Austin, TX 73301" +204373,AA Batteries (4-pack),1,3.84,05/10/19 13:05,"37 Elm St, San Francisco, CA 94016" +204374,Lightning Charging Cable,1,14.95,05/22/19 18:21,"397 River St, Boston, MA 02215" +204375,27in FHD Monitor,1,149.99,05/21/19 19:42,"295 Meadow St, San Francisco, CA 94016" +204376,AAA Batteries (4-pack),2,2.99,05/16/19 10:18,"296 Main St, San Francisco, CA 94016" +204377,AA Batteries (4-pack),1,3.84,05/24/19 02:57,"434 Hickory St, Los Angeles, CA 90001" +204378,AA Batteries (4-pack),2,3.84,05/13/19 08:54,"451 Willow St, Atlanta, GA 30301" +204379,AAA Batteries (4-pack),3,2.99,05/14/19 12:17,"826 5th St, New York City, NY 10001" +204380,34in Ultrawide Monitor,1,379.99,05/10/19 12:13,"297 6th St, Boston, MA 02215" +204381,Apple Airpods Headphones,1,150,05/19/19 20:00,"406 12th St, San Francisco, CA 94016" +204382,iPhone,1,700,05/01/19 13:37,"607 7th St, San Francisco, CA 94016" +204382,Lightning Charging Cable,1,14.95,05/01/19 13:37,"607 7th St, San Francisco, CA 94016" +204383,Wired Headphones,1,11.99,05/29/19 15:04,"604 Adams St, San Francisco, CA 94016" +204384,Bose SoundSport Headphones,1,99.99,05/19/19 10:42,"294 Highland St, San Francisco, CA 94016" +204385,ThinkPad Laptop,1,999.99,05/30/19 08:26,"676 Madison St, New York City, NY 10001" +204386,USB-C Charging Cable,1,11.95,05/21/19 18:04,"591 Adams St, San Francisco, CA 94016" +204387,AAA Batteries (4-pack),1,2.99,05/01/19 21:16,"894 Maple St, San Francisco, CA 94016" +204388,USB-C Charging Cable,1,11.95,05/04/19 16:48,"909 Jackson St, San Francisco, CA 94016" +204389,Lightning Charging Cable,1,14.95,05/03/19 13:49,"207 Lake St, Los Angeles, CA 90001" +204390,AAA Batteries (4-pack),1,2.99,05/10/19 21:10,"663 Cherry St, San Francisco, CA 94016" +204391,Google Phone,1,600,05/04/19 12:35,"715 Cedar St, New York City, NY 10001" +204392,34in Ultrawide Monitor,1,379.99,05/04/19 13:35,"577 Center St, San Francisco, CA 94016" +204393,AA Batteries (4-pack),1,3.84,05/31/19 00:34,"636 Adams St, New York City, NY 10001" +204394,AAA Batteries (4-pack),2,2.99,05/30/19 11:19,"308 12th St, San Francisco, CA 94016" +204395,Lightning Charging Cable,1,14.95,05/17/19 08:54,"303 Church St, San Francisco, CA 94016" +204396,Vareebadd Phone,1,400,05/01/19 09:28,"417 13th St, Dallas, TX 75001" +204397,Wired Headphones,1,11.99,05/02/19 12:22,"126 North St, Seattle, WA 98101" +204398,USB-C Charging Cable,1,11.95,05/03/19 22:15,"846 14th St, Portland, ME 04101" +204399,AAA Batteries (4-pack),1,2.99,05/03/19 07:19,"263 12th St, San Francisco, CA 94016" +204400,Apple Airpods Headphones,1,150,05/14/19 16:59,"561 Chestnut St, New York City, NY 10001" +204401,AAA Batteries (4-pack),2,2.99,05/03/19 08:39,"393 5th St, New York City, NY 10001" +204402,34in Ultrawide Monitor,1,379.99,05/15/19 13:26,"555 Willow St, Seattle, WA 98101" +204403,Macbook Pro Laptop,1,1700,05/24/19 22:23,"384 Willow St, Boston, MA 02215" +204404,AA Batteries (4-pack),1,3.84,05/21/19 11:59,"835 Hickory St, Dallas, TX 75001" +204405,Wired Headphones,1,11.99,05/23/19 16:01,"467 Hill St, San Francisco, CA 94016" +204406,Flatscreen TV,1,300,05/20/19 11:16,"65 Wilson St, San Francisco, CA 94016" +204407,ThinkPad Laptop,1,999.99,05/14/19 17:42,"107 Ridge St, San Francisco, CA 94016" +204408,Apple Airpods Headphones,1,150,05/02/19 08:00,"234 Elm St, Dallas, TX 75001" +204409,Macbook Pro Laptop,1,1700,05/08/19 05:05,"858 Washington St, Atlanta, GA 30301" +204410,AA Batteries (4-pack),1,3.84,05/21/19 08:27,"536 Meadow St, Los Angeles, CA 90001" +204411,AA Batteries (4-pack),1,3.84,05/14/19 16:53,"892 Chestnut St, San Francisco, CA 94016" +204412,Bose SoundSport Headphones,1,99.99,05/29/19 15:43,"294 1st St, San Francisco, CA 94016" +204413,Lightning Charging Cable,1,14.95,05/05/19 14:57,"877 Wilson St, San Francisco, CA 94016" +204414,iPhone,1,700,05/29/19 17:46,"141 6th St, Seattle, WA 98101" +204415,Bose SoundSport Headphones,1,99.99,05/06/19 19:46,"753 Lakeview St, Boston, MA 02215" +204416,Wired Headphones,1,11.99,05/17/19 08:21,"871 Chestnut St, Atlanta, GA 30301" +204417,Wired Headphones,1,11.99,05/06/19 10:02,"460 Maple St, San Francisco, CA 94016" +204418,AAA Batteries (4-pack),2,2.99,05/03/19 20:37,"123 South St, Los Angeles, CA 90001" +204419,Bose SoundSport Headphones,1,99.99,05/04/19 11:46,"770 Ridge St, San Francisco, CA 94016" +204420,34in Ultrawide Monitor,1,379.99,05/01/19 16:53,"312 Hill St, Boston, MA 02215" +204421,Bose SoundSport Headphones,1,99.99,05/24/19 01:31,"44 2nd St, Dallas, TX 75001" +204422,AA Batteries (4-pack),3,3.84,05/17/19 16:17,"857 14th St, Los Angeles, CA 90001" +204423,AAA Batteries (4-pack),1,2.99,05/28/19 00:32,"342 Jackson St, San Francisco, CA 94016" +204424,Bose SoundSport Headphones,1,99.99,05/17/19 22:38,"571 Elm St, San Francisco, CA 94016" +204425,AA Batteries (4-pack),1,3.84,05/20/19 16:59,"538 10th St, San Francisco, CA 94016" +204426,27in FHD Monitor,1,149.99,05/29/19 11:17,"841 Center St, Los Angeles, CA 90001" +204427,Lightning Charging Cable,1,14.95,05/11/19 21:22,"328 11th St, Portland, OR 97035" +204428,27in FHD Monitor,1,149.99,05/26/19 22:30,"869 14th St, New York City, NY 10001" +204429,Wired Headphones,1,11.99,05/31/19 10:39,"819 4th St, Dallas, TX 75001" +204430,Google Phone,1,600,05/13/19 23:08,"362 Madison St, San Francisco, CA 94016" +204431,Google Phone,1,600,05/14/19 11:17,"555 Washington St, Portland, OR 97035" +204431,Macbook Pro Laptop,1,1700,05/14/19 11:17,"555 Washington St, Portland, OR 97035" +204432,AA Batteries (4-pack),1,3.84,05/14/19 15:07,"501 12th St, San Francisco, CA 94016" +204433,AAA Batteries (4-pack),1,2.99,05/29/19 09:47,"16 Park St, New York City, NY 10001" +204434,Flatscreen TV,1,300,05/05/19 10:04,"170 Chestnut St, Los Angeles, CA 90001" +204435,Macbook Pro Laptop,1,1700,05/24/19 14:48,"85 5th St, Dallas, TX 75001" +204436,AA Batteries (4-pack),1,3.84,05/13/19 14:10,"226 Johnson St, New York City, NY 10001" +204437,iPhone,1,700,05/11/19 19:02,"139 Main St, Los Angeles, CA 90001" +204438,Lightning Charging Cable,1,14.95,05/20/19 20:08,"160 Willow St, New York City, NY 10001" +204439,Google Phone,1,600,05/13/19 13:41,"141 Elm St, San Francisco, CA 94016" +204440,Lightning Charging Cable,1,14.95,05/19/19 09:59,"996 Hickory St, San Francisco, CA 94016" +204441,Apple Airpods Headphones,1,150,05/27/19 13:07,"487 Meadow St, San Francisco, CA 94016" +204442,USB-C Charging Cable,1,11.95,05/01/19 11:59,"74 Sunset St, Los Angeles, CA 90001" +204443,Google Phone,1,600,05/22/19 07:58,"846 River St, Boston, MA 02215" +204444,AA Batteries (4-pack),1,3.84,05/31/19 17:36,"421 Spruce St, Boston, MA 02215" +204445,USB-C Charging Cable,2,11.95,05/17/19 17:20,"460 5th St, San Francisco, CA 94016" +204446,Lightning Charging Cable,1,14.95,05/20/19 12:37,"517 Center St, San Francisco, CA 94016" +204447,AAA Batteries (4-pack),1,2.99,05/30/19 20:56,"330 Johnson St, San Francisco, CA 94016" +204448,AAA Batteries (4-pack),2,2.99,05/16/19 12:22,"776 North St, Boston, MA 02215" +204449,AAA Batteries (4-pack),2,2.99,05/04/19 19:58,"491 Cherry St, Dallas, TX 75001" +204450,iPhone,1,700,05/28/19 14:16,"665 Lakeview St, Seattle, WA 98101" +204450,Apple Airpods Headphones,1,150,05/28/19 14:16,"665 Lakeview St, Seattle, WA 98101" +204451,Wired Headphones,1,11.99,05/05/19 14:23,"72 4th St, Los Angeles, CA 90001" +204452,Google Phone,1,600,05/29/19 20:59,"960 4th St, New York City, NY 10001" +204453,Wired Headphones,2,11.99,05/16/19 12:01,"45 Meadow St, Los Angeles, CA 90001" +204454,Macbook Pro Laptop,1,1700,05/22/19 21:37,"229 Chestnut St, San Francisco, CA 94016" +204455,AA Batteries (4-pack),1,3.84,05/23/19 11:48,"260 West St, New York City, NY 10001" +204456,USB-C Charging Cable,1,11.95,05/23/19 14:45,"26 West St, San Francisco, CA 94016" +204457,AA Batteries (4-pack),2,3.84,05/20/19 13:03,"300 Lakeview St, Dallas, TX 75001" +204458,20in Monitor,1,109.99,05/18/19 22:52,"935 Lake St, Seattle, WA 98101" +204459,Lightning Charging Cable,1,14.95,05/27/19 22:18,"665 6th St, San Francisco, CA 94016" +204460,Lightning Charging Cable,1,14.95,05/13/19 20:47,"738 Lincoln St, San Francisco, CA 94016" +204461,ThinkPad Laptop,1,999.99,05/14/19 18:45,"259 Johnson St, San Francisco, CA 94016" +204462,ThinkPad Laptop,1,999.99,05/11/19 17:45,"522 Washington St, Dallas, TX 75001" +204463,AAA Batteries (4-pack),2,2.99,05/16/19 13:32,"135 9th St, Boston, MA 02215" +204464,iPhone,1,700,05/03/19 19:10,"997 Jackson St, Atlanta, GA 30301" +204465,Macbook Pro Laptop,1,1700,05/15/19 09:36,"266 Hickory St, New York City, NY 10001" +204466,Lightning Charging Cable,1,14.95,05/12/19 09:15,"335 Willow St, New York City, NY 10001" +204467,AAA Batteries (4-pack),1,2.99,05/04/19 21:49,"161 12th St, Los Angeles, CA 90001" +204468,Wired Headphones,1,11.99,05/12/19 22:42,"220 7th St, Austin, TX 73301" +204469,AA Batteries (4-pack),1,3.84,05/18/19 20:03,"417 13th St, New York City, NY 10001" +204470,USB-C Charging Cable,1,11.95,05/09/19 17:40,"499 4th St, Los Angeles, CA 90001" +204470,AA Batteries (4-pack),1,3.84,05/09/19 17:40,"499 4th St, Los Angeles, CA 90001" +204471,AA Batteries (4-pack),1,3.84,05/31/19 13:59,"29 5th St, San Francisco, CA 94016" +204472,AA Batteries (4-pack),1,3.84,05/10/19 20:11,"596 Lake St, Austin, TX 73301" +204473,Lightning Charging Cable,1,14.95,05/30/19 06:38,"533 4th St, Portland, OR 97035" +204474,Lightning Charging Cable,1,14.95,05/31/19 13:56,"922 Hill St, Los Angeles, CA 90001" +204475,Lightning Charging Cable,1,14.95,05/29/19 19:25,"450 4th St, Atlanta, GA 30301" +204476,Apple Airpods Headphones,1,150,05/14/19 16:14,"390 Chestnut St, Los Angeles, CA 90001" +204477,iPhone,1,700,05/03/19 23:46,"258 Lincoln St, San Francisco, CA 94016" +204478,AA Batteries (4-pack),1,3.84,05/31/19 18:00,"591 Forest St, Boston, MA 02215" +204479,USB-C Charging Cable,1,11.95,05/09/19 16:47,"585 Hill St, Dallas, TX 75001" +204480,AA Batteries (4-pack),3,3.84,05/13/19 16:33,"736 Washington St, Seattle, WA 98101" +204481,Google Phone,1,600,05/28/19 10:09,"487 Hickory St, Los Angeles, CA 90001" +204482,AA Batteries (4-pack),1,3.84,05/01/19 22:53,"553 Jefferson St, Atlanta, GA 30301" +204483,AAA Batteries (4-pack),2,2.99,05/24/19 23:14,"194 Highland St, Los Angeles, CA 90001" +204484,Lightning Charging Cable,1,14.95,05/03/19 16:55,"376 Chestnut St, Atlanta, GA 30301" +204485,Apple Airpods Headphones,1,150,05/18/19 13:48,"856 Cedar St, Seattle, WA 98101" +204486,AAA Batteries (4-pack),1,2.99,05/13/19 21:54,"147 Chestnut St, New York City, NY 10001" +204487,Lightning Charging Cable,1,14.95,05/06/19 11:09,"227 Adams St, Atlanta, GA 30301" +204488,Macbook Pro Laptop,1,1700,05/02/19 00:01,"452 Hickory St, San Francisco, CA 94016" +204489,USB-C Charging Cable,1,11.95,05/26/19 11:02,"371 Washington St, Atlanta, GA 30301" +204490,Apple Airpods Headphones,1,150,05/31/19 12:31,"490 10th St, Los Angeles, CA 90001" +204491,AA Batteries (4-pack),1,3.84,05/12/19 01:17,"723 7th St, Austin, TX 73301" +204492,Apple Airpods Headphones,1,150,05/24/19 20:10,"420 South St, San Francisco, CA 94016" +204493,AAA Batteries (4-pack),2,2.99,05/29/19 15:48,"711 Maple St, Portland, ME 04101" +204494,Bose SoundSport Headphones,1,99.99,05/24/19 12:30,"156 Park St, Los Angeles, CA 90001" +204495,AA Batteries (4-pack),1,3.84,05/15/19 22:12,"878 West St, Atlanta, GA 30301" +204496,27in FHD Monitor,1,149.99,05/11/19 15:57,"744 Park St, San Francisco, CA 94016" +204497,AAA Batteries (4-pack),2,2.99,05/17/19 11:49,"886 Ridge St, Portland, OR 97035" +204498,iPhone,1,700,05/09/19 10:45,"432 Highland St, San Francisco, CA 94016" +204499,27in FHD Monitor,1,149.99,05/15/19 19:18,"178 9th St, Atlanta, GA 30301" +,,,,, +204500,Wired Headphones,1,11.99,05/10/19 11:47,"804 Jefferson St, San Francisco, CA 94016" +204501,Bose SoundSport Headphones,1,99.99,05/29/19 08:12,"366 Madison St, San Francisco, CA 94016" +204502,Lightning Charging Cable,1,14.95,05/25/19 16:41,"383 Hill St, Austin, TX 73301" +204503,Flatscreen TV,1,300,05/27/19 11:50,"362 6th St, Los Angeles, CA 90001" +204504,USB-C Charging Cable,1,11.95,05/21/19 13:41,"581 13th St, Los Angeles, CA 90001" +204505,AAA Batteries (4-pack),2,2.99,05/22/19 14:38,"293 River St, San Francisco, CA 94016" +204506,34in Ultrawide Monitor,1,379.99,05/07/19 10:07,"104 6th St, Dallas, TX 75001" +204507,Flatscreen TV,1,300,05/24/19 10:03,"858 14th St, Los Angeles, CA 90001" +204508,AA Batteries (4-pack),1,3.84,05/15/19 07:39,"662 2nd St, San Francisco, CA 94016" +204509,Macbook Pro Laptop,1,1700,05/28/19 16:05,"188 Hickory St, Portland, ME 04101" +204510,AAA Batteries (4-pack),6,2.99,05/15/19 21:56,"663 Jefferson St, San Francisco, CA 94016" +204511,20in Monitor,1,109.99,05/16/19 20:03,"854 Madison St, New York City, NY 10001" +204512,AA Batteries (4-pack),1,3.84,05/15/19 23:44,"243 Ridge St, San Francisco, CA 94016" +204513,Bose SoundSport Headphones,1,99.99,05/24/19 20:53,"168 Sunset St, Los Angeles, CA 90001" +204514,AA Batteries (4-pack),1,3.84,05/18/19 14:56,"575 Washington St, Atlanta, GA 30301" +204515,Bose SoundSport Headphones,1,99.99,05/04/19 15:49,"757 4th St, Los Angeles, CA 90001" +204516,AAA Batteries (4-pack),1,2.99,05/11/19 10:17,"781 Jefferson St, Austin, TX 73301" +204517,ThinkPad Laptop,1,999.99,05/03/19 20:47,"509 Spruce St, Austin, TX 73301" +204518,Wired Headphones,2,11.99,05/04/19 16:01,"535 1st St, San Francisco, CA 94016" +204519,Lightning Charging Cable,2,14.95,05/13/19 18:33,"467 Walnut St, New York City, NY 10001" +204520,Lightning Charging Cable,1,14.95,05/30/19 19:07,"686 Lake St, New York City, NY 10001" +204521,USB-C Charging Cable,1,11.95,05/02/19 02:00,"681 Walnut St, San Francisco, CA 94016" +204522,Bose SoundSport Headphones,1,99.99,05/26/19 12:29,"670 Park St, Atlanta, GA 30301" +204523,AAA Batteries (4-pack),1,2.99,05/07/19 05:14,"343 Park St, New York City, NY 10001" +204524,AA Batteries (4-pack),3,3.84,05/27/19 20:35,"288 Maple St, Dallas, TX 75001" +204525,Apple Airpods Headphones,1,150,05/19/19 11:26,"130 Highland St, Boston, MA 02215" +204526,Wired Headphones,1,11.99,05/11/19 17:29,"418 14th St, Seattle, WA 98101" +204527,Wired Headphones,3,11.99,05/02/19 10:42,"925 Forest St, New York City, NY 10001" +204528,AAA Batteries (4-pack),1,2.99,05/28/19 20:57,"175 1st St, Boston, MA 02215" +204529,Wired Headphones,1,11.99,05/08/19 11:40,"341 Jackson St, Boston, MA 02215" +204530,AA Batteries (4-pack),1,3.84,05/09/19 23:50,"937 1st St, Austin, TX 73301" +204531,iPhone,1,700,05/08/19 15:59,"999 Center St, Dallas, TX 75001" +204532,Bose SoundSport Headphones,1,99.99,05/22/19 15:35,"69 Elm St, Dallas, TX 75001" +204533,ThinkPad Laptop,1,999.99,05/28/19 18:27,"464 Main St, Portland, OR 97035" +204534,Vareebadd Phone,1,400,05/22/19 17:20,"145 Ridge St, Los Angeles, CA 90001" +204535,AA Batteries (4-pack),1,3.84,05/06/19 20:34,"199 Spruce St, San Francisco, CA 94016" +204536,Apple Airpods Headphones,1,150,05/07/19 14:13,"10 Maple St, San Francisco, CA 94016" +204537,Wired Headphones,1,11.99,05/24/19 15:23,"517 Washington St, Los Angeles, CA 90001" +204538,AA Batteries (4-pack),1,3.84,05/30/19 11:56,"967 Lake St, Dallas, TX 75001" +204539,Lightning Charging Cable,1,14.95,05/29/19 13:59,"547 Pine St, San Francisco, CA 94016" +204540,AA Batteries (4-pack),1,3.84,05/11/19 09:02,"411 Jefferson St, Los Angeles, CA 90001" +204541,USB-C Charging Cable,1,11.95,05/16/19 23:56,"801 9th St, Austin, TX 73301" +204542,Bose SoundSport Headphones,1,99.99,05/21/19 21:32,"581 Madison St, Seattle, WA 98101" +204543,AA Batteries (4-pack),3,3.84,05/14/19 23:19,"994 1st St, San Francisco, CA 94016" +204544,Apple Airpods Headphones,1,150,05/06/19 14:39,"437 River St, San Francisco, CA 94016" +204545,AAA Batteries (4-pack),1,2.99,05/25/19 17:04,"921 Highland St, Dallas, TX 75001" +204546,Wired Headphones,1,11.99,05/09/19 13:06,"435 River St, Dallas, TX 75001" +204547,Lightning Charging Cable,2,14.95,05/10/19 15:15,"266 7th St, Boston, MA 02215" +204548,20in Monitor,1,109.99,05/07/19 02:04,"425 River St, San Francisco, CA 94016" +204549,27in FHD Monitor,1,149.99,05/04/19 11:19,"240 Highland St, Atlanta, GA 30301" +204550,AAA Batteries (4-pack),2,2.99,05/27/19 15:18,"359 Spruce St, Los Angeles, CA 90001" +204550,iPhone,1,700,05/27/19 15:18,"359 Spruce St, Los Angeles, CA 90001" +204551,Bose SoundSport Headphones,1,99.99,05/18/19 10:18,"580 Cedar St, Portland, OR 97035" +204552,AAA Batteries (4-pack),1,2.99,05/28/19 13:18,"847 Cedar St, Los Angeles, CA 90001" +204553,Apple Airpods Headphones,1,150,05/15/19 12:01,"595 13th St, Atlanta, GA 30301" +204554,USB-C Charging Cable,1,11.95,05/02/19 13:58,"460 Jackson St, San Francisco, CA 94016" +204555,AAA Batteries (4-pack),3,2.99,05/22/19 23:40,"547 Johnson St, Austin, TX 73301" +204556,Wired Headphones,1,11.99,05/08/19 11:14,"752 14th St, Austin, TX 73301" +204557,AAA Batteries (4-pack),2,2.99,05/09/19 14:58,"18 South St, Los Angeles, CA 90001" +204558,Google Phone,1,600,05/20/19 20:37,"859 Cherry St, Los Angeles, CA 90001" +204559,Lightning Charging Cable,1,14.95,05/26/19 04:06,"906 Lakeview St, San Francisco, CA 94016" +204560,USB-C Charging Cable,1,11.95,05/02/19 15:15,"848 Wilson St, San Francisco, CA 94016" +204561,Apple Airpods Headphones,1,150,05/25/19 08:00,"150 Sunset St, Portland, OR 97035" +204562,Lightning Charging Cable,1,14.95,05/21/19 00:31,"455 Jefferson St, Boston, MA 02215" +204563,Wired Headphones,1,11.99,05/15/19 13:42,"352 Wilson St, San Francisco, CA 94016" +204564,Google Phone,1,600,05/23/19 13:17,"631 Walnut St, Boston, MA 02215" +204564,USB-C Charging Cable,1,11.95,05/23/19 13:17,"631 Walnut St, Boston, MA 02215" +204565,iPhone,1,700,05/24/19 16:40,"673 7th St, San Francisco, CA 94016" +204565,Apple Airpods Headphones,1,150,05/24/19 16:40,"673 7th St, San Francisco, CA 94016" +204566,USB-C Charging Cable,1,11.95,05/08/19 13:19,"534 Jackson St, Dallas, TX 75001" +204567,Apple Airpods Headphones,1,150,05/10/19 15:43,"356 Sunset St, New York City, NY 10001" +204568,34in Ultrawide Monitor,1,379.99,05/07/19 16:15,"696 Maple St, San Francisco, CA 94016" +204569,20in Monitor,1,109.99,05/10/19 08:00,"351 Adams St, New York City, NY 10001" +204570,Macbook Pro Laptop,1,1700,05/25/19 12:28,"627 Walnut St, San Francisco, CA 94016" +204571,iPhone,1,700,05/20/19 18:28,"740 2nd St, Los Angeles, CA 90001" +204572,Wired Headphones,1,11.99,05/14/19 17:39,"114 8th St, San Francisco, CA 94016" +204573,Wired Headphones,1,11.99,05/23/19 18:58,"45 Park St, Atlanta, GA 30301" +204574,AAA Batteries (4-pack),1,2.99,05/09/19 10:47,"355 Maple St, Seattle, WA 98101" +204575,Vareebadd Phone,1,400,05/06/19 14:33,"739 Wilson St, New York City, NY 10001" +204575,USB-C Charging Cable,1,11.95,05/06/19 14:33,"739 Wilson St, New York City, NY 10001" +204576,Apple Airpods Headphones,1,150,05/09/19 16:42,"282 Madison St, San Francisco, CA 94016" +204577,ThinkPad Laptop,1,999.99,05/11/19 05:53,"384 Hill St, Los Angeles, CA 90001" +204578,Wired Headphones,1,11.99,05/19/19 12:52,"565 Center St, San Francisco, CA 94016" +204579,USB-C Charging Cable,1,11.95,05/03/19 22:03,"650 Jefferson St, Portland, OR 97035" +204580,USB-C Charging Cable,1,11.95,05/05/19 10:59,"755 Pine St, New York City, NY 10001" +204581,Macbook Pro Laptop,1,1700,05/21/19 19:50,"911 Sunset St, New York City, NY 10001" +204582,iPhone,1,700,05/21/19 13:51,"189 Highland St, Dallas, TX 75001" +204583,Bose SoundSport Headphones,1,99.99,05/10/19 19:44,"342 Meadow St, Boston, MA 02215" +204584,AA Batteries (4-pack),1,3.84,05/12/19 19:31,"250 5th St, New York City, NY 10001" +204585,Bose SoundSport Headphones,1,99.99,05/25/19 18:07,"705 Hill St, San Francisco, CA 94016" +204586,27in 4K Gaming Monitor,1,389.99,05/22/19 12:54,"193 Washington St, San Francisco, CA 94016" +204587,AA Batteries (4-pack),1,3.84,05/09/19 00:15,"482 9th St, San Francisco, CA 94016" +204588,Apple Airpods Headphones,1,150,05/18/19 11:16,"892 Adams St, Dallas, TX 75001" +204589,Lightning Charging Cable,2,14.95,05/01/19 20:34,"553 Willow St, New York City, NY 10001" +204590,34in Ultrawide Monitor,1,379.99,05/13/19 10:39,"14 Park St, New York City, NY 10001" +204591,Wired Headphones,1,11.99,05/31/19 22:59,"428 Dogwood St, San Francisco, CA 94016" +204592,AA Batteries (4-pack),1,3.84,05/17/19 00:57,"767 Park St, San Francisco, CA 94016" +204593,Lightning Charging Cable,1,14.95,05/19/19 22:05,"757 1st St, Seattle, WA 98101" +204593,iPhone,1,700,05/19/19 22:05,"757 1st St, Seattle, WA 98101" +204594,Wired Headphones,1,11.99,05/23/19 16:15,"679 Center St, New York City, NY 10001" +204595,iPhone,1,700,05/30/19 10:20,"373 West St, New York City, NY 10001" +204596,AA Batteries (4-pack),1,3.84,05/06/19 17:43,"694 Dogwood St, San Francisco, CA 94016" +204597,USB-C Charging Cable,1,11.95,05/24/19 10:01,"871 Forest St, Los Angeles, CA 90001" +204598,34in Ultrawide Monitor,1,379.99,05/07/19 10:26,"555 Adams St, Boston, MA 02215" +204598,Lightning Charging Cable,1,14.95,05/07/19 10:26,"555 Adams St, Boston, MA 02215" +204599,Google Phone,1,600,05/02/19 06:28,"507 14th St, San Francisco, CA 94016" +204599,USB-C Charging Cable,1,11.95,05/02/19 06:28,"507 14th St, San Francisco, CA 94016" +204600,34in Ultrawide Monitor,1,379.99,05/05/19 13:44,"320 8th St, Seattle, WA 98101" +204601,USB-C Charging Cable,2,11.95,05/16/19 11:15,"910 Ridge St, Los Angeles, CA 90001" +204602,Apple Airpods Headphones,1,150,05/01/19 17:45,"519 Walnut St, Los Angeles, CA 90001" +204603,Wired Headphones,1,11.99,05/30/19 16:30,"505 Hickory St, Boston, MA 02215" +204604,Lightning Charging Cable,1,14.95,05/20/19 19:58,"17 Elm St, New York City, NY 10001" +204605,Lightning Charging Cable,1,14.95,05/07/19 19:17,"625 Hickory St, Portland, OR 97035" +204606,AAA Batteries (4-pack),3,2.99,05/27/19 12:21,"795 Center St, New York City, NY 10001" +204607,AA Batteries (4-pack),2,3.84,05/31/19 15:07,"468 Ridge St, Boston, MA 02215" +204608,Apple Airpods Headphones,1,150,05/07/19 12:44,"536 Cedar St, San Francisco, CA 94016" +204609,USB-C Charging Cable,1,11.95,05/24/19 08:02,"234 Dogwood St, Dallas, TX 75001" +204610,LG Washing Machine,1,600.0,05/09/19 23:28,"971 Willow St, New York City, NY 10001" +204611,iPhone,1,700,05/13/19 13:35,"288 Elm St, San Francisco, CA 94016" +204612,Lightning Charging Cable,1,14.95,05/08/19 19:28,"595 Madison St, San Francisco, CA 94016" +204613,Bose SoundSport Headphones,1,99.99,05/09/19 19:09,"542 4th St, Portland, OR 97035" +204614,ThinkPad Laptop,1,999.99,05/09/19 12:46,"793 Madison St, Portland, OR 97035" +204615,Lightning Charging Cable,2,14.95,05/12/19 13:41,"77 8th St, Atlanta, GA 30301" +204616,Lightning Charging Cable,1,14.95,05/06/19 19:56,"457 River St, San Francisco, CA 94016" +204617,AA Batteries (4-pack),1,3.84,05/28/19 08:15,"145 Jefferson St, Seattle, WA 98101" +204618,AA Batteries (4-pack),1,3.84,05/21/19 13:13,"197 6th St, Seattle, WA 98101" +204619,Lightning Charging Cable,1,14.95,05/25/19 19:36,"822 Jackson St, Austin, TX 73301" +204620,AAA Batteries (4-pack),1,2.99,05/25/19 07:41,"141 Jefferson St, San Francisco, CA 94016" +204621,AAA Batteries (4-pack),1,2.99,05/23/19 18:05,"470 4th St, Portland, OR 97035" +204622,Apple Airpods Headphones,1,150,05/17/19 09:29,"658 Lakeview St, Austin, TX 73301" +204623,AA Batteries (4-pack),1,3.84,05/21/19 04:07,"768 North St, New York City, NY 10001" +204624,27in FHD Monitor,1,149.99,05/09/19 09:56,"631 9th St, Los Angeles, CA 90001" +204625,USB-C Charging Cable,1,11.95,05/14/19 00:34,"363 Jefferson St, Boston, MA 02215" +204626,USB-C Charging Cable,1,11.95,05/26/19 13:24,"445 4th St, Dallas, TX 75001" +204627,27in FHD Monitor,1,149.99,05/30/19 14:01,"397 Adams St, Dallas, TX 75001" +204628,AAA Batteries (4-pack),1,2.99,05/14/19 09:13,"797 10th St, Los Angeles, CA 90001" +204629,AA Batteries (4-pack),1,3.84,05/27/19 22:08,"833 West St, San Francisco, CA 94016" +204630,Macbook Pro Laptop,1,1700,05/17/19 14:25,"95 Johnson St, Los Angeles, CA 90001" +204631,iPhone,1,700,05/20/19 08:22,"945 Madison St, Atlanta, GA 30301" +204632,Bose SoundSport Headphones,1,99.99,05/25/19 14:07,"67 2nd St, San Francisco, CA 94016" +204633,Lightning Charging Cable,1,14.95,05/15/19 20:08,"282 Church St, Atlanta, GA 30301" +204634,Google Phone,1,600,05/25/19 23:03,"211 Jefferson St, New York City, NY 10001" +204635,Google Phone,1,600,05/24/19 20:25,"584 10th St, New York City, NY 10001" +204635,Wired Headphones,1,11.99,05/24/19 20:25,"584 10th St, New York City, NY 10001" +204636,USB-C Charging Cable,1,11.95,05/22/19 22:48,"802 Elm St, Atlanta, GA 30301" +204637,AA Batteries (4-pack),1,3.84,05/05/19 17:56,"365 Lake St, Seattle, WA 98101" +204638,USB-C Charging Cable,1,11.95,05/01/19 16:39,"58 Park St, Portland, OR 97035" +204639,Wired Headphones,1,11.99,05/17/19 20:34,"964 Lincoln St, Atlanta, GA 30301" +204640,iPhone,1,700,05/29/19 05:42,"62 South St, Dallas, TX 75001" +204641,AAA Batteries (4-pack),1,2.99,05/31/19 15:59,"49 Elm St, Portland, OR 97035" +204642,Bose SoundSport Headphones,1,99.99,05/16/19 11:29,"233 Chestnut St, New York City, NY 10001" +204643,Lightning Charging Cable,1,14.95,05/26/19 19:21,"936 Ridge St, Austin, TX 73301" +204644,Wired Headphones,1,11.99,05/23/19 20:22,"577 Lakeview St, Los Angeles, CA 90001" +204645,USB-C Charging Cable,1,11.95,05/01/19 22:29,"461 Lake St, San Francisco, CA 94016" +204646,Google Phone,1,600,05/08/19 18:41,"321 Meadow St, Los Angeles, CA 90001" +204647,Bose SoundSport Headphones,1,99.99,05/25/19 19:08,"497 Elm St, New York City, NY 10001" +204648,USB-C Charging Cable,1,11.95,05/16/19 11:04,"47 Highland St, Seattle, WA 98101" +204649,AA Batteries (4-pack),4,3.84,05/12/19 15:09,"304 6th St, New York City, NY 10001" +204650,Lightning Charging Cable,1,14.95,05/13/19 21:24,"613 7th St, New York City, NY 10001" +204651,Apple Airpods Headphones,1,150,05/02/19 08:17,"330 Cherry St, Dallas, TX 75001" +204652,Wired Headphones,1,11.99,05/02/19 09:32,"61 Center St, San Francisco, CA 94016" +204653,USB-C Charging Cable,1,11.95,05/11/19 14:16,"684 Forest St, Los Angeles, CA 90001" +204654,Google Phone,1,600,05/12/19 19:23,"809 Main St, San Francisco, CA 94016" +204654,USB-C Charging Cable,1,11.95,05/12/19 19:23,"809 Main St, San Francisco, CA 94016" +204655,Apple Airpods Headphones,1,150,05/20/19 17:54,"924 Maple St, Atlanta, GA 30301" +204656,Flatscreen TV,1,300,05/29/19 08:52,"49 10th St, Los Angeles, CA 90001" +204657,34in Ultrawide Monitor,1,379.99,05/12/19 08:59,"633 Adams St, Dallas, TX 75001" +204658,Wired Headphones,1,11.99,05/05/19 08:48,"505 Park St, Atlanta, GA 30301" +204659,34in Ultrawide Monitor,1,379.99,05/21/19 00:53,"842 Cedar St, Seattle, WA 98101" +204660,Wired Headphones,1,11.99,05/10/19 18:59,"437 Cherry St, San Francisco, CA 94016" +204661,Bose SoundSport Headphones,1,99.99,05/09/19 20:23,"630 13th St, Dallas, TX 75001" +204662,27in FHD Monitor,1,149.99,05/21/19 14:53,"165 6th St, Austin, TX 73301" +204663,Apple Airpods Headphones,1,150,05/15/19 22:15,"696 Jefferson St, San Francisco, CA 94016" +204664,Bose SoundSport Headphones,1,99.99,05/15/19 23:22,"677 Lake St, San Francisco, CA 94016" +204665,Lightning Charging Cable,1,14.95,05/29/19 16:20,"249 Lincoln St, San Francisco, CA 94016" +204666,Lightning Charging Cable,1,14.95,05/26/19 08:54,"970 South St, New York City, NY 10001" +204667,Apple Airpods Headphones,1,150,05/20/19 15:40,"793 Church St, Dallas, TX 75001" +204668,Bose SoundSport Headphones,1,99.99,05/21/19 20:25,"369 Forest St, San Francisco, CA 94016" +204669,AAA Batteries (4-pack),1,2.99,05/10/19 21:42,"135 11th St, New York City, NY 10001" +204670,AAA Batteries (4-pack),1,2.99,05/20/19 16:41,"176 13th St, Los Angeles, CA 90001" +204671,20in Monitor,1,109.99,05/27/19 14:49,"615 Center St, Austin, TX 73301" +204672,AAA Batteries (4-pack),1,2.99,05/11/19 12:09,"582 10th St, San Francisco, CA 94016" +204673,Apple Airpods Headphones,1,150,05/23/19 06:52,"588 Washington St, Boston, MA 02215" +204674,Wired Headphones,1,11.99,05/26/19 17:06,"851 Washington St, San Francisco, CA 94016" +204675,USB-C Charging Cable,1,11.95,05/02/19 10:37,"61 Jackson St, New York City, NY 10001" +204676,Lightning Charging Cable,1,14.95,05/15/19 00:56,"163 6th St, New York City, NY 10001" +204677,AAA Batteries (4-pack),1,2.99,05/27/19 18:24,"322 Ridge St, San Francisco, CA 94016" +204678,ThinkPad Laptop,1,999.99,05/18/19 16:27,"581 South St, New York City, NY 10001" +204679,AAA Batteries (4-pack),1,2.99,05/01/19 18:27,"158 Spruce St, Boston, MA 02215" +204680,AA Batteries (4-pack),1,3.84,05/29/19 23:41,"335 9th St, San Francisco, CA 94016" +204681,USB-C Charging Cable,1,11.95,05/23/19 20:53,"943 South St, Atlanta, GA 30301" +204682,AAA Batteries (4-pack),2,2.99,05/11/19 19:30,"219 Pine St, San Francisco, CA 94016" +204683,AAA Batteries (4-pack),1,2.99,05/05/19 22:53,"6 Lincoln St, Boston, MA 02215" +204684,USB-C Charging Cable,1,11.95,05/18/19 13:41,"185 River St, San Francisco, CA 94016" +204685,Apple Airpods Headphones,1,150,05/01/19 22:34,"27 Madison St, Atlanta, GA 30301" +204686,Macbook Pro Laptop,1,1700,05/05/19 13:06,"29 Sunset St, Seattle, WA 98101" +204687,27in FHD Monitor,1,149.99,05/08/19 02:57,"446 Meadow St, San Francisco, CA 94016" +204688,Google Phone,1,600,05/21/19 18:43,"467 Washington St, San Francisco, CA 94016" +204689,Apple Airpods Headphones,1,150,05/02/19 07:55,"507 Maple St, San Francisco, CA 94016" +204690,Lightning Charging Cable,1,14.95,05/19/19 20:39,"571 Hill St, Dallas, TX 75001" +204691,AAA Batteries (4-pack),1,2.99,05/04/19 20:37,"209 Dogwood St, Seattle, WA 98101" +204692,Wired Headphones,1,11.99,05/03/19 00:08,"110 Dogwood St, New York City, NY 10001" +204693,USB-C Charging Cable,1,11.95,05/29/19 18:24,"513 13th St, New York City, NY 10001" +204694,iPhone,1,700,05/02/19 06:18,"77 Church St, San Francisco, CA 94016" +204695,AAA Batteries (4-pack),2,2.99,05/28/19 17:01,"116 Hickory St, San Francisco, CA 94016" +204696,Macbook Pro Laptop,1,1700,05/15/19 17:51,"523 Elm St, Boston, MA 02215" +204697,iPhone,1,700,05/21/19 20:04,"589 Hickory St, San Francisco, CA 94016" +204698,Lightning Charging Cable,1,14.95,05/27/19 12:14,"68 Lakeview St, New York City, NY 10001" +204699,AA Batteries (4-pack),1,3.84,05/11/19 23:12,"502 Lake St, Los Angeles, CA 90001" +204700,Flatscreen TV,1,300,05/26/19 08:25,"877 Cedar St, New York City, NY 10001" +204701,AAA Batteries (4-pack),1,2.99,05/30/19 10:05,"785 9th St, San Francisco, CA 94016" +204702,Apple Airpods Headphones,1,150,05/30/19 15:06,"679 4th St, Seattle, WA 98101" +204703,34in Ultrawide Monitor,1,379.99,05/29/19 15:20,"30 4th St, San Francisco, CA 94016" +204704,Flatscreen TV,1,300,05/31/19 11:39,"452 Forest St, New York City, NY 10001" +204705,AAA Batteries (4-pack),4,2.99,05/19/19 14:17,"301 Forest St, Los Angeles, CA 90001" +204706,AAA Batteries (4-pack),2,2.99,05/25/19 21:12,"526 Cherry St, Portland, OR 97035" +204707,USB-C Charging Cable,1,11.95,05/14/19 01:53,"932 2nd St, Dallas, TX 75001" +204708,Lightning Charging Cable,1,14.95,05/02/19 22:40,"904 Jackson St, Seattle, WA 98101" +204709,AAA Batteries (4-pack),1,2.99,05/24/19 13:52,"102 6th St, New York City, NY 10001" +204710,AAA Batteries (4-pack),1,2.99,05/10/19 22:50,"86 River St, New York City, NY 10001" +204711,AAA Batteries (4-pack),1,2.99,05/24/19 12:34,"637 Church St, Austin, TX 73301" +204712,Bose SoundSport Headphones,1,99.99,05/10/19 14:13,"792 1st St, Austin, TX 73301" +204713,AAA Batteries (4-pack),1,2.99,05/16/19 16:53,"77 Lakeview St, Portland, OR 97035" +204714,Macbook Pro Laptop,1,1700,05/12/19 18:50,"954 North St, San Francisco, CA 94016" +204715,Apple Airpods Headphones,1,150,05/20/19 10:35,"845 Spruce St, Dallas, TX 75001" +204716,27in 4K Gaming Monitor,1,389.99,05/11/19 13:19,"308 10th St, Atlanta, GA 30301" +204717,27in 4K Gaming Monitor,1,389.99,05/07/19 12:14,"939 Maple St, New York City, NY 10001" +204718,AA Batteries (4-pack),2,3.84,05/16/19 11:03,"484 2nd St, Los Angeles, CA 90001" +204719,USB-C Charging Cable,1,11.95,05/25/19 00:14,"587 2nd St, Seattle, WA 98101" +204720,AA Batteries (4-pack),1,3.84,05/12/19 18:39,"366 Jefferson St, Portland, OR 97035" +204721,AAA Batteries (4-pack),1,2.99,05/09/19 14:09,"684 Maple St, San Francisco, CA 94016" +204722,Lightning Charging Cable,1,14.95,05/23/19 11:51,"558 Highland St, Seattle, WA 98101" +204723,AAA Batteries (4-pack),1,2.99,05/23/19 20:46,"835 6th St, New York City, NY 10001" +204724,AA Batteries (4-pack),2,3.84,05/01/19 16:08,"600 13th St, Austin, TX 73301" +204725,Apple Airpods Headphones,1,150,05/09/19 19:48,"659 Adams St, San Francisco, CA 94016" +204726,Apple Airpods Headphones,1,150,05/08/19 22:13,"312 7th St, Portland, OR 97035" +204727,34in Ultrawide Monitor,1,379.99,05/26/19 15:25,"142 7th St, Boston, MA 02215" +204728,USB-C Charging Cable,1,11.95,05/08/19 11:36,"400 2nd St, Los Angeles, CA 90001" +204729,Bose SoundSport Headphones,1,99.99,05/26/19 11:05,"635 Chestnut St, Seattle, WA 98101" +204730,Macbook Pro Laptop,1,1700,05/22/19 17:46,"800 Main St, Los Angeles, CA 90001" +204731,Macbook Pro Laptop,1,1700,05/11/19 22:04,"597 Cherry St, Atlanta, GA 30301" +204732,34in Ultrawide Monitor,1,379.99,05/15/19 12:26,"205 14th St, Los Angeles, CA 90001" +204733,iPhone,1,700,05/13/19 14:26,"216 10th St, Dallas, TX 75001" +204734,27in FHD Monitor,1,149.99,05/23/19 15:24,"703 River St, San Francisco, CA 94016" +204735,Macbook Pro Laptop,1,1700,05/09/19 15:53,"505 Center St, San Francisco, CA 94016" +204736,AA Batteries (4-pack),3,3.84,05/19/19 15:51,"337 Lincoln St, New York City, NY 10001" +204737,USB-C Charging Cable,1,11.95,05/15/19 16:44,"927 Willow St, Los Angeles, CA 90001" +204738,Bose SoundSport Headphones,1,99.99,05/17/19 13:07,"193 Park St, Los Angeles, CA 90001" +204739,Flatscreen TV,1,300,05/13/19 19:02,"114 2nd St, New York City, NY 10001" +204740,34in Ultrawide Monitor,1,379.99,05/12/19 10:36,"877 8th St, Los Angeles, CA 90001" +204741,Macbook Pro Laptop,1,1700,05/01/19 22:39,"852 Church St, Austin, TX 73301" +204742,AAA Batteries (4-pack),3,2.99,05/20/19 17:58,"564 14th St, Dallas, TX 75001" +204743,Lightning Charging Cable,1,14.95,05/03/19 11:44,"978 West St, San Francisco, CA 94016" +204744,Google Phone,1,600,05/18/19 19:57,"679 Chestnut St, New York City, NY 10001" +204745,27in FHD Monitor,1,149.99,05/24/19 22:15,"531 Pine St, Boston, MA 02215" +204746,AAA Batteries (4-pack),1,2.99,05/21/19 17:45,"375 13th St, Portland, OR 97035" +204747,Wired Headphones,1,11.99,05/21/19 16:52,"633 11th St, San Francisco, CA 94016" +204748,USB-C Charging Cable,1,11.95,05/04/19 11:41,"322 Lincoln St, San Francisco, CA 94016" +204749,USB-C Charging Cable,1,11.95,05/16/19 00:18,"689 Sunset St, New York City, NY 10001" +204750,Bose SoundSport Headphones,1,99.99,05/23/19 11:38,"728 Jackson St, San Francisco, CA 94016" +204751,Lightning Charging Cable,1,14.95,05/20/19 10:07,"909 Hickory St, Boston, MA 02215" +204752,Wired Headphones,1,11.99,05/04/19 17:50,"279 Lake St, Portland, OR 97035" +204753,iPhone,1,700,05/18/19 13:31,"73 8th St, New York City, NY 10001" +204753,Lightning Charging Cable,1,14.95,05/18/19 13:31,"73 8th St, New York City, NY 10001" +204754,USB-C Charging Cable,1,11.95,05/31/19 20:32,"179 4th St, Los Angeles, CA 90001" +204755,USB-C Charging Cable,1,11.95,05/13/19 16:03,"626 Cedar St, New York City, NY 10001" +204756,Macbook Pro Laptop,1,1700,05/07/19 22:12,"745 Jackson St, Seattle, WA 98101" +204757,AA Batteries (4-pack),1,3.84,05/24/19 13:46,"890 Jefferson St, Boston, MA 02215" +204758,Lightning Charging Cable,1,14.95,05/04/19 18:18,"123 Walnut St, New York City, NY 10001" +204759,27in FHD Monitor,1,149.99,05/18/19 15:29,"606 Ridge St, Boston, MA 02215" +204760,27in 4K Gaming Monitor,1,389.99,05/26/19 10:32,"179 Highland St, Portland, OR 97035" +204761,20in Monitor,1,109.99,05/17/19 17:45,"899 Dogwood St, San Francisco, CA 94016" +204762,USB-C Charging Cable,1,11.95,05/26/19 11:49,"370 Spruce St, San Francisco, CA 94016" +204763,Macbook Pro Laptop,1,1700,05/27/19 16:52,"965 Highland St, San Francisco, CA 94016" +204764,Bose SoundSport Headphones,1,99.99,05/04/19 22:41,"701 Jefferson St, San Francisco, CA 94016" +204765,USB-C Charging Cable,1,11.95,05/28/19 21:36,"291 Walnut St, Los Angeles, CA 90001" +204766,27in FHD Monitor,1,149.99,05/08/19 11:37,"642 Hill St, Los Angeles, CA 90001" +204767,20in Monitor,1,109.99,05/02/19 21:39,"740 9th St, Los Angeles, CA 90001" +204768,USB-C Charging Cable,1,11.95,05/26/19 14:26,"883 Chestnut St, Seattle, WA 98101" +204769,Lightning Charging Cable,1,14.95,05/13/19 17:05,"920 13th St, Los Angeles, CA 90001" +204770,AAA Batteries (4-pack),2,2.99,05/26/19 16:59,"360 Pine St, San Francisco, CA 94016" +204771,20in Monitor,1,109.99,05/27/19 16:17,"244 Willow St, San Francisco, CA 94016" +204772,Lightning Charging Cable,1,14.95,05/10/19 14:27,"458 Lake St, Portland, OR 97035" +204773,Macbook Pro Laptop,1,1700,05/20/19 14:54,"161 River St, Boston, MA 02215" +204774,Wired Headphones,1,11.99,05/23/19 17:44,"103 Jackson St, Austin, TX 73301" +204775,20in Monitor,1,109.99,05/04/19 23:40,"103 Walnut St, New York City, NY 10001" +204776,27in 4K Gaming Monitor,1,389.99,05/18/19 13:36,"786 4th St, San Francisco, CA 94016" +204777,USB-C Charging Cable,1,11.95,05/09/19 03:36,"501 Dogwood St, Seattle, WA 98101" +204778,Flatscreen TV,1,300,05/29/19 23:31,"485 Lincoln St, Los Angeles, CA 90001" +204779,Lightning Charging Cable,1,14.95,05/09/19 21:09,"737 Center St, Los Angeles, CA 90001" +204780,AA Batteries (4-pack),1,3.84,05/04/19 11:33,"633 Forest St, Seattle, WA 98101" +204781,Lightning Charging Cable,1,14.95,05/16/19 19:17,"284 West St, Austin, TX 73301" +204782,Google Phone,1,600,05/17/19 14:02,"508 Dogwood St, Atlanta, GA 30301" +204783,Bose SoundSport Headphones,1,99.99,05/04/19 15:49,"105 Center St, Dallas, TX 75001" +204784,Macbook Pro Laptop,1,1700,05/26/19 18:55,"287 Cherry St, Portland, OR 97035" +204785,Bose SoundSport Headphones,1,99.99,05/06/19 15:52,"566 Highland St, Seattle, WA 98101" +204786,Google Phone,1,600,05/14/19 12:07,"785 4th St, San Francisco, CA 94016" +204786,Wired Headphones,1,11.99,05/14/19 12:07,"785 4th St, San Francisco, CA 94016" +204787,Lightning Charging Cable,1,14.95,05/31/19 10:48,"763 Spruce St, Los Angeles, CA 90001" +204788,USB-C Charging Cable,1,11.95,05/26/19 00:24,"404 Johnson St, New York City, NY 10001" +204789,ThinkPad Laptop,1,999.99,05/25/19 20:04,"504 Forest St, San Francisco, CA 94016" +204790,27in 4K Gaming Monitor,1,389.99,05/11/19 22:08,"478 Cherry St, Los Angeles, CA 90001" +204791,Lightning Charging Cable,1,14.95,05/06/19 13:14,"583 Spruce St, Dallas, TX 75001" +204792,AAA Batteries (4-pack),1,2.99,05/12/19 21:47,"556 Cedar St, Los Angeles, CA 90001" +204793,Apple Airpods Headphones,1,150,05/23/19 19:08,"944 5th St, San Francisco, CA 94016" +204794,AA Batteries (4-pack),2,3.84,05/24/19 05:34,"408 West St, Austin, TX 73301" +204795,Lightning Charging Cable,1,14.95,05/09/19 10:33,"332 Chestnut St, Los Angeles, CA 90001" +204796,iPhone,1,700,05/17/19 11:10,"945 Wilson St, Atlanta, GA 30301" +204797,USB-C Charging Cable,2,11.95,05/13/19 20:20,"15 North St, New York City, NY 10001" +204798,Wired Headphones,1,11.99,05/22/19 15:42,"117 Highland St, Los Angeles, CA 90001" +204799,Google Phone,1,600,05/18/19 13:36,"301 Forest St, New York City, NY 10001" +204800,Wired Headphones,1,11.99,05/15/19 08:02,"847 Jackson St, Los Angeles, CA 90001" +204801,Apple Airpods Headphones,1,150,05/20/19 11:14,"707 Center St, Atlanta, GA 30301" +204802,Google Phone,1,600,05/12/19 14:13,"619 Hickory St, New York City, NY 10001" +204803,iPhone,1,700,05/03/19 18:10,"673 Spruce St, Los Angeles, CA 90001" +204804,Apple Airpods Headphones,1,150,05/20/19 23:29,"469 13th St, Los Angeles, CA 90001" +204805,Bose SoundSport Headphones,1,99.99,05/11/19 11:44,"732 Adams St, Los Angeles, CA 90001" +204806,Lightning Charging Cable,1,14.95,05/15/19 08:44,"378 Spruce St, San Francisco, CA 94016" +204807,AAA Batteries (4-pack),1,2.99,05/19/19 11:08,"5 Sunset St, Portland, OR 97035" +204808,Wired Headphones,2,11.99,05/13/19 08:12,"322 1st St, Atlanta, GA 30301" +204809,AA Batteries (4-pack),2,3.84,05/21/19 05:33,"945 Adams St, Los Angeles, CA 90001" +204810,USB-C Charging Cable,1,11.95,05/21/19 23:51,"827 2nd St, Los Angeles, CA 90001" +,,,,, +204811,Apple Airpods Headphones,1,150,05/10/19 19:39,"618 Lakeview St, Austin, TX 73301" +204812,Google Phone,1,600,05/01/19 23:18,"839 4th St, Austin, TX 73301" +204813,Bose SoundSport Headphones,1,99.99,05/22/19 14:57,"603 9th St, Los Angeles, CA 90001" +204814,Bose SoundSport Headphones,1,99.99,05/21/19 14:46,"846 14th St, Los Angeles, CA 90001" +204815,Wired Headphones,1,11.99,05/31/19 09:32,"485 Washington St, Dallas, TX 75001" +204816,iPhone,1,700,05/09/19 23:05,"563 Jackson St, San Francisco, CA 94016" +204817,Bose SoundSport Headphones,1,99.99,05/25/19 12:46,"735 10th St, Dallas, TX 75001" +204818,Wired Headphones,1,11.99,05/12/19 07:26,"918 Wilson St, Portland, ME 04101" +204819,AA Batteries (4-pack),1,3.84,05/11/19 22:08,"412 Church St, San Francisco, CA 94016" +204820,Bose SoundSport Headphones,1,99.99,05/09/19 16:20,"804 8th St, Portland, OR 97035" +204821,AA Batteries (4-pack),1,3.84,05/07/19 13:35,"125 Hickory St, Dallas, TX 75001" +204822,AA Batteries (4-pack),1,3.84,05/06/19 14:20,"423 1st St, Austin, TX 73301" +204823,27in 4K Gaming Monitor,1,389.99,05/21/19 11:44,"324 Cherry St, Dallas, TX 75001" +204824,Wired Headphones,1,11.99,05/04/19 12:55,"916 North St, San Francisco, CA 94016" +204825,Bose SoundSport Headphones,1,99.99,05/23/19 12:08,"432 Center St, Austin, TX 73301" +204826,ThinkPad Laptop,1,999.99,05/09/19 15:34,"254 Lincoln St, Austin, TX 73301" +204827,Flatscreen TV,1,300,05/02/19 23:38,"814 Elm St, Boston, MA 02215" +204828,Bose SoundSport Headphones,1,99.99,05/11/19 18:56,"766 8th St, Dallas, TX 75001" +204829,AAA Batteries (4-pack),2,2.99,05/06/19 21:47,"692 Lincoln St, Seattle, WA 98101" +204830,34in Ultrawide Monitor,1,379.99,05/28/19 21:32,"699 7th St, Dallas, TX 75001" +204831,Apple Airpods Headphones,1,150,05/31/19 11:00,"118 North St, Los Angeles, CA 90001" +204832,USB-C Charging Cable,1,11.95,05/10/19 10:20,"139 Sunset St, Los Angeles, CA 90001" +204833,AAA Batteries (4-pack),1,2.99,05/31/19 22:38,"733 Church St, Boston, MA 02215" +204834,Wired Headphones,1,11.99,05/28/19 17:40,"603 Ridge St, Austin, TX 73301" +204835,USB-C Charging Cable,1,11.95,05/04/19 07:13,"953 11th St, Boston, MA 02215" +204836,Lightning Charging Cable,2,14.95,05/02/19 05:23,"452 West St, New York City, NY 10001" +204837,Bose SoundSport Headphones,1,99.99,05/05/19 13:30,"631 Park St, Dallas, TX 75001" +204838,Lightning Charging Cable,1,14.95,05/21/19 12:18,"494 6th St, Los Angeles, CA 90001" +204839,USB-C Charging Cable,1,11.95,05/18/19 11:27,"465 Chestnut St, Dallas, TX 75001" +204840,Flatscreen TV,1,300,05/14/19 13:15,"221 West St, Los Angeles, CA 90001" +204841,USB-C Charging Cable,1,11.95,05/11/19 20:31,"699 Cherry St, Boston, MA 02215" +204842,Bose SoundSport Headphones,1,99.99,05/05/19 17:37,"846 Center St, New York City, NY 10001" +204843,USB-C Charging Cable,2,11.95,05/16/19 00:13,"269 Pine St, Boston, MA 02215" +204844,Macbook Pro Laptop,1,1700,05/05/19 18:56,"66 2nd St, Seattle, WA 98101" +204845,Bose SoundSport Headphones,1,99.99,05/20/19 15:51,"42 7th St, San Francisco, CA 94016" +204846,Wired Headphones,1,11.99,05/08/19 10:05,"393 Jackson St, Dallas, TX 75001" +204846,Lightning Charging Cable,1,14.95,05/08/19 10:05,"393 Jackson St, Dallas, TX 75001" +204847,AAA Batteries (4-pack),2,2.99,05/09/19 09:42,"914 14th St, San Francisco, CA 94016" +204848,20in Monitor,1,109.99,05/30/19 22:24,"215 West St, Atlanta, GA 30301" +204849,Flatscreen TV,1,300,05/15/19 13:11,"707 Center St, Los Angeles, CA 90001" +204850,AA Batteries (4-pack),1,3.84,05/01/19 18:24,"648 South St, San Francisco, CA 94016" +204851,AAA Batteries (4-pack),2,2.99,05/28/19 00:28,"362 Chestnut St, Boston, MA 02215" +204852,AAA Batteries (4-pack),1,2.99,05/11/19 11:32,"414 1st St, Los Angeles, CA 90001" +204853,AAA Batteries (4-pack),1,2.99,05/25/19 10:34,"508 Jackson St, Seattle, WA 98101" +204854,iPhone,1,700,05/05/19 16:11,"678 Madison St, Los Angeles, CA 90001" +204855,Apple Airpods Headphones,1,150,05/04/19 22:32,"963 5th St, New York City, NY 10001" +204856,iPhone,1,700,05/15/19 13:42,"388 Meadow St, Seattle, WA 98101" +204857,27in FHD Monitor,1,149.99,05/04/19 07:34,"895 Wilson St, Atlanta, GA 30301" +204858,Wired Headphones,3,11.99,05/25/19 19:51,"552 Cedar St, Dallas, TX 75001" +204859,USB-C Charging Cable,1,11.95,05/07/19 21:19,"722 West St, San Francisco, CA 94016" +204860,27in FHD Monitor,1,149.99,05/04/19 21:28,"831 12th St, Los Angeles, CA 90001" +204861,USB-C Charging Cable,2,11.95,05/19/19 15:39,"567 Hill St, Boston, MA 02215" +204862,20in Monitor,1,109.99,05/08/19 23:00,"328 7th St, New York City, NY 10001" +204863,USB-C Charging Cable,1,11.95,05/28/19 21:48,"454 Park St, Atlanta, GA 30301" +204864,34in Ultrawide Monitor,1,379.99,05/30/19 17:37,"277 Lake St, Boston, MA 02215" +204864,iPhone,1,700,05/30/19 17:37,"277 Lake St, Boston, MA 02215" +204865,iPhone,1,700,05/11/19 20:54,"880 Center St, Dallas, TX 75001" +204866,Lightning Charging Cable,1,14.95,05/31/19 16:27,"750 10th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +204867,AA Batteries (4-pack),2,3.84,05/19/19 22:01,"567 Maple St, San Francisco, CA 94016" +204868,Google Phone,1,600,05/23/19 17:46,"782 Lincoln St, Portland, OR 97035" +204869,Wired Headphones,1,11.99,05/14/19 20:51,"642 5th St, Seattle, WA 98101" +204870,Flatscreen TV,1,300,05/31/19 08:28,"771 11th St, New York City, NY 10001" +204871,Lightning Charging Cable,2,14.95,05/10/19 21:10,"472 Wilson St, San Francisco, CA 94016" +204872,Lightning Charging Cable,1,14.95,05/18/19 12:34,"79 Lakeview St, Boston, MA 02215" +204873,AAA Batteries (4-pack),2,2.99,05/04/19 20:29,"991 Maple St, Dallas, TX 75001" +204874,AA Batteries (4-pack),1,3.84,05/05/19 17:53,"824 Lincoln St, Los Angeles, CA 90001" +204875,AA Batteries (4-pack),1,3.84,05/31/19 20:37,"397 North St, San Francisco, CA 94016" +204876,USB-C Charging Cable,1,11.95,05/08/19 10:11,"991 Jefferson St, Seattle, WA 98101" +204877,AAA Batteries (4-pack),1,2.99,05/12/19 11:46,"565 Park St, Seattle, WA 98101" +204878,Lightning Charging Cable,1,14.95,05/30/19 15:17,"465 1st St, San Francisco, CA 94016" +204879,USB-C Charging Cable,1,11.95,05/19/19 15:44,"415 Highland St, Los Angeles, CA 90001" +204880,Lightning Charging Cable,1,14.95,05/22/19 16:33,"368 Jefferson St, San Francisco, CA 94016" +204881,Google Phone,1,600,05/29/19 07:42,"395 Main St, San Francisco, CA 94016" +204882,AA Batteries (4-pack),1,3.84,05/08/19 13:21,"153 7th St, San Francisco, CA 94016" +204883,34in Ultrawide Monitor,1,379.99,05/16/19 17:46,"615 Cedar St, Los Angeles, CA 90001" +204884,Lightning Charging Cable,1,14.95,05/23/19 10:04,"539 2nd St, San Francisco, CA 94016" +204885,AAA Batteries (4-pack),1,2.99,05/03/19 09:51,"525 13th St, Los Angeles, CA 90001" +204886,AAA Batteries (4-pack),1,2.99,05/10/19 20:30,"730 Wilson St, Boston, MA 02215" +204887,AAA Batteries (4-pack),1,2.99,05/11/19 07:20,"735 7th St, Atlanta, GA 30301" +204888,AAA Batteries (4-pack),1,2.99,05/08/19 05:32,"381 North St, Seattle, WA 98101" +204889,Apple Airpods Headphones,1,150,05/20/19 23:31,"64 Ridge St, Dallas, TX 75001" +204890,Wired Headphones,1,11.99,05/25/19 12:55,"922 Johnson St, Dallas, TX 75001" +204891,iPhone,1,700,05/28/19 00:21,"88 Elm St, New York City, NY 10001" +204892,USB-C Charging Cable,1,11.95,05/23/19 18:31,"559 6th St, Los Angeles, CA 90001" +204893,AAA Batteries (4-pack),1,2.99,05/13/19 06:34,"112 Center St, San Francisco, CA 94016" +204894,AA Batteries (4-pack),2,3.84,05/05/19 17:03,"829 Main St, Portland, OR 97035" +204895,Wired Headphones,1,11.99,05/08/19 08:30,"170 Maple St, San Francisco, CA 94016" +204896,Apple Airpods Headphones,1,150,05/26/19 09:00,"222 Maple St, Atlanta, GA 30301" +204897,USB-C Charging Cable,1,11.95,05/04/19 11:54,"113 Dogwood St, Los Angeles, CA 90001" +204898,Lightning Charging Cable,3,14.95,05/11/19 12:55,"357 North St, Los Angeles, CA 90001" +204899,Wired Headphones,1,11.99,05/08/19 08:51,"151 Willow St, New York City, NY 10001" +204900,27in FHD Monitor,1,149.99,05/26/19 20:14,"846 6th St, San Francisco, CA 94016" +204901,20in Monitor,1,109.99,05/09/19 20:19,"675 Lincoln St, Los Angeles, CA 90001" +204902,27in FHD Monitor,1,149.99,05/04/19 20:33,"284 Meadow St, New York City, NY 10001" +204903,Wired Headphones,1,11.99,05/12/19 21:02,"860 Madison St, Los Angeles, CA 90001" +204904,Wired Headphones,1,11.99,05/24/19 18:21,"418 9th St, Boston, MA 02215" +204905,Apple Airpods Headphones,1,150,05/25/19 15:17,"499 Sunset St, Dallas, TX 75001" +204906,AAA Batteries (4-pack),5,2.99,05/30/19 11:32,"195 Spruce St, Boston, MA 02215" +204907,Google Phone,1,600,05/26/19 16:32,"89 Johnson St, Seattle, WA 98101" +204908,AAA Batteries (4-pack),1,2.99,05/31/19 22:30,"433 Jefferson St, Seattle, WA 98101" +204909,AA Batteries (4-pack),1,3.84,05/31/19 18:41,"945 14th St, Los Angeles, CA 90001" +204910,AA Batteries (4-pack),1,3.84,05/10/19 14:55,"273 Johnson St, Atlanta, GA 30301" +204911,Lightning Charging Cable,1,14.95,05/07/19 16:28,"389 10th St, Boston, MA 02215" +204912,USB-C Charging Cable,1,11.95,05/18/19 21:35,"754 Dogwood St, Portland, OR 97035" +204913,Wired Headphones,1,11.99,05/07/19 23:34,"829 North St, New York City, NY 10001" +204914,Apple Airpods Headphones,1,150,05/26/19 07:42,"439 Madison St, Boston, MA 02215" +204915,Flatscreen TV,1,300,05/03/19 14:18,"562 7th St, New York City, NY 10001" +204916,AA Batteries (4-pack),1,3.84,05/15/19 18:41,"650 Walnut St, Boston, MA 02215" +204917,AAA Batteries (4-pack),2,2.99,05/09/19 15:31,"987 Maple St, San Francisco, CA 94016" +204918,USB-C Charging Cable,1,11.95,05/11/19 11:44,"604 5th St, Los Angeles, CA 90001" +204919,Lightning Charging Cable,1,14.95,05/14/19 20:39,"500 Johnson St, Los Angeles, CA 90001" +204920,Google Phone,1,600,05/23/19 07:04,"249 Johnson St, New York City, NY 10001" +204921,Wired Headphones,1,11.99,05/02/19 23:31,"228 2nd St, Seattle, WA 98101" +204922,USB-C Charging Cable,1,11.95,05/28/19 17:20,"543 North St, Los Angeles, CA 90001" +204923,Lightning Charging Cable,1,14.95,05/19/19 11:16,"579 13th St, Boston, MA 02215" +204924,AAA Batteries (4-pack),2,2.99,05/26/19 18:57,"118 Lincoln St, Seattle, WA 98101" +204925,27in 4K Gaming Monitor,1,389.99,05/04/19 12:40,"491 11th St, San Francisco, CA 94016" +204926,AA Batteries (4-pack),1,3.84,05/29/19 19:41,"502 1st St, Boston, MA 02215" +204927,Bose SoundSport Headphones,1,99.99,05/03/19 17:15,"554 Adams St, Seattle, WA 98101" +204928,Macbook Pro Laptop,1,1700,05/24/19 11:34,"723 Forest St, San Francisco, CA 94016" +204929,27in FHD Monitor,1,149.99,05/24/19 05:42,"552 Willow St, New York City, NY 10001" +204930,34in Ultrawide Monitor,1,379.99,05/23/19 17:45,"605 Hickory St, Seattle, WA 98101" +204931,iPhone,1,700,05/03/19 17:27,"533 Hill St, Atlanta, GA 30301" +204931,Lightning Charging Cable,1,14.95,05/03/19 17:27,"533 Hill St, Atlanta, GA 30301" +204932,AA Batteries (4-pack),1,3.84,05/15/19 15:06,"835 South St, Austin, TX 73301" +204933,Wired Headphones,1,11.99,05/02/19 21:20,"631 West St, Seattle, WA 98101" +204934,Wired Headphones,1,11.99,05/18/19 13:12,"526 Hill St, Dallas, TX 75001" +204935,Macbook Pro Laptop,1,1700,05/01/19 16:35,"745 Church St, San Francisco, CA 94016" +204936,Wired Headphones,1,11.99,05/22/19 16:49,"686 Cherry St, Los Angeles, CA 90001" +204937,20in Monitor,1,109.99,05/11/19 16:55,"882 Forest St, Atlanta, GA 30301" +204938,iPhone,1,700,05/04/19 22:56,"152 6th St, San Francisco, CA 94016" +204939,Flatscreen TV,1,300,05/07/19 13:20,"409 11th St, San Francisco, CA 94016" +204940,Bose SoundSport Headphones,1,99.99,05/07/19 09:01,"834 Johnson St, Los Angeles, CA 90001" +204941,AAA Batteries (4-pack),3,2.99,05/16/19 21:06,"188 12th St, San Francisco, CA 94016" +204942,Apple Airpods Headphones,1,150,05/24/19 14:01,"492 Johnson St, New York City, NY 10001" +204943,Lightning Charging Cable,1,14.95,05/15/19 22:17,"666 12th St, Atlanta, GA 30301" +204944,AAA Batteries (4-pack),1,2.99,05/12/19 03:15,"923 6th St, Dallas, TX 75001" +204945,AA Batteries (4-pack),1,3.84,05/18/19 00:06,"836 Ridge St, Dallas, TX 75001" +204946,34in Ultrawide Monitor,1,379.99,05/08/19 13:41,"465 North St, San Francisco, CA 94016" +204947,Wired Headphones,1,11.99,05/29/19 12:55,"16 Walnut St, Boston, MA 02215" +204948,Google Phone,1,600,05/05/19 18:45,"96 Cherry St, New York City, NY 10001" +204949,iPhone,1,700,05/25/19 16:48,"107 Spruce St, Los Angeles, CA 90001" +204950,ThinkPad Laptop,1,999.99,05/01/19 22:09,"504 Lake St, San Francisco, CA 94016" +204951,Wired Headphones,1,11.99,05/24/19 12:42,"208 South St, Austin, TX 73301" +204952,ThinkPad Laptop,1,999.99,05/19/19 18:55,"432 Walnut St, San Francisco, CA 94016" +204953,Apple Airpods Headphones,1,150,05/24/19 17:05,"666 Adams St, Austin, TX 73301" +204954,Google Phone,1,600,05/18/19 08:50,"627 Lincoln St, Portland, OR 97035" +204954,USB-C Charging Cable,1,11.95,05/18/19 08:50,"627 Lincoln St, Portland, OR 97035" +204955,Apple Airpods Headphones,1,150,05/15/19 21:23,"729 South St, Atlanta, GA 30301" +204956,Google Phone,1,600,05/12/19 18:55,"840 Wilson St, New York City, NY 10001" +204957,Lightning Charging Cable,1,14.95,05/20/19 04:01,"705 Spruce St, Austin, TX 73301" +204958,Lightning Charging Cable,1,14.95,05/08/19 21:30,"6 Jefferson St, Seattle, WA 98101" +204958,27in FHD Monitor,1,149.99,05/08/19 21:30,"6 Jefferson St, Seattle, WA 98101" +204959,27in 4K Gaming Monitor,1,389.99,05/14/19 07:01,"320 Chestnut St, Austin, TX 73301" +204960,Google Phone,1,600,05/17/19 05:01,"516 Spruce St, San Francisco, CA 94016" +204961,Vareebadd Phone,1,400,05/21/19 03:35,"39 West St, Boston, MA 02215" +204962,Wired Headphones,1,11.99,05/17/19 14:08,"849 Washington St, San Francisco, CA 94016" +204963,Wired Headphones,1,11.99,05/11/19 14:03,"146 6th St, Dallas, TX 75001" +204964,AA Batteries (4-pack),2,3.84,05/22/19 10:55,"711 Sunset St, Atlanta, GA 30301" +204965,ThinkPad Laptop,1,999.99,05/23/19 12:13,"583 11th St, San Francisco, CA 94016" +204966,Wired Headphones,1,11.99,05/20/19 17:06,"196 Elm St, Atlanta, GA 30301" +204967,Flatscreen TV,1,300,05/21/19 13:22,"353 North St, Atlanta, GA 30301" +204968,Wired Headphones,1,11.99,05/17/19 17:43,"374 13th St, San Francisco, CA 94016" +204969,USB-C Charging Cable,1,11.95,05/02/19 19:33,"496 13th St, Dallas, TX 75001" +204970,Bose SoundSport Headphones,1,99.99,05/27/19 14:51,"652 9th St, Dallas, TX 75001" +204971,USB-C Charging Cable,1,11.95,05/01/19 13:47,"292 Jackson St, New York City, NY 10001" +204972,AAA Batteries (4-pack),3,2.99,05/08/19 13:36,"257 Lake St, Seattle, WA 98101" +204973,20in Monitor,1,109.99,05/07/19 14:58,"43 5th St, Boston, MA 02215" +204974,AAA Batteries (4-pack),2,2.99,05/13/19 14:16,"14 Main St, Boston, MA 02215" +204975,AA Batteries (4-pack),1,3.84,05/11/19 11:04,"355 North St, San Francisco, CA 94016" +204976,Lightning Charging Cable,1,14.95,05/19/19 17:40,"338 Dogwood St, Seattle, WA 98101" +204977,27in FHD Monitor,1,149.99,05/30/19 21:47,"480 Center St, Los Angeles, CA 90001" +204978,AAA Batteries (4-pack),1,2.99,05/26/19 19:48,"865 5th St, New York City, NY 10001" +204979,USB-C Charging Cable,1,11.95,05/03/19 16:12,"395 Sunset St, New York City, NY 10001" +204980,AA Batteries (4-pack),1,3.84,05/16/19 15:16,"24 Lincoln St, Seattle, WA 98101" +204981,Flatscreen TV,1,300,05/20/19 11:53,"312 Cedar St, Boston, MA 02215" +204982,27in 4K Gaming Monitor,1,389.99,05/19/19 08:13,"444 Pine St, New York City, NY 10001" +204983,AA Batteries (4-pack),1,3.84,05/21/19 12:29,"587 Lincoln St, Los Angeles, CA 90001" +204984,AAA Batteries (4-pack),1,2.99,05/07/19 11:01,"128 5th St, New York City, NY 10001" +204985,AAA Batteries (4-pack),1,2.99,05/12/19 19:57,"382 8th St, Dallas, TX 75001" +204986,AA Batteries (4-pack),1,3.84,05/18/19 13:23,"7 Cedar St, Los Angeles, CA 90001" +204987,Lightning Charging Cable,1,14.95,05/10/19 17:04,"475 Meadow St, San Francisco, CA 94016" +204988,Lightning Charging Cable,2,14.95,05/23/19 11:30,"825 7th St, San Francisco, CA 94016" +204989,Google Phone,1,600,05/23/19 18:19,"492 Lakeview St, San Francisco, CA 94016" +204990,AAA Batteries (4-pack),1,2.99,05/29/19 12:17,"418 Cedar St, New York City, NY 10001" +204991,AAA Batteries (4-pack),1,2.99,05/12/19 22:21,"416 Johnson St, San Francisco, CA 94016" +204992,34in Ultrawide Monitor,1,379.99,05/22/19 16:32,"238 Maple St, San Francisco, CA 94016" +204993,Wired Headphones,1,11.99,05/26/19 13:30,"181 Lincoln St, Atlanta, GA 30301" +204994,Macbook Pro Laptop,1,1700,05/01/19 15:57,"672 Hill St, New York City, NY 10001" +204995,Wired Headphones,1,11.99,05/12/19 13:25,"326 6th St, Boston, MA 02215" +204996,Flatscreen TV,1,300,05/22/19 13:55,"680 Johnson St, Austin, TX 73301" +204997,Bose SoundSport Headphones,1,99.99,05/17/19 12:05,"912 11th St, Boston, MA 02215" +204998,Google Phone,1,600,05/30/19 11:01,"882 Chestnut St, San Francisco, CA 94016" +204999,USB-C Charging Cable,1,11.95,05/13/19 22:21,"344 10th St, San Francisco, CA 94016" +205000,AA Batteries (4-pack),1,3.84,05/03/19 13:08,"682 Willow St, Boston, MA 02215" +205001,34in Ultrawide Monitor,1,379.99,05/20/19 12:09,"506 Center St, San Francisco, CA 94016" +205002,27in 4K Gaming Monitor,1,389.99,05/09/19 03:42,"393 12th St, Portland, ME 04101" +205003,Apple Airpods Headphones,1,150,05/28/19 22:54,"533 Ridge St, New York City, NY 10001" +205004,20in Monitor,1,109.99,05/17/19 10:42,"572 12th St, Los Angeles, CA 90001" +205005,Bose SoundSport Headphones,1,99.99,05/02/19 09:48,"647 Church St, Los Angeles, CA 90001" +205006,Lightning Charging Cable,1,14.95,05/16/19 13:37,"596 Hill St, Dallas, TX 75001" +205007,Vareebadd Phone,1,400,05/19/19 16:20,"487 9th St, Atlanta, GA 30301" +205007,USB-C Charging Cable,1,11.95,05/19/19 16:20,"487 9th St, Atlanta, GA 30301" +205008,Flatscreen TV,1,300,05/12/19 20:44,"23 12th St, Los Angeles, CA 90001" +205009,Wired Headphones,1,11.99,05/03/19 20:57,"333 Maple St, Boston, MA 02215" +205010,Vareebadd Phone,1,400,05/22/19 01:12,"522 Elm St, Seattle, WA 98101" +205011,Bose SoundSport Headphones,1,99.99,05/30/19 07:07,"633 Church St, Boston, MA 02215" +205012,AA Batteries (4-pack),2,3.84,05/08/19 14:30,"609 11th St, Dallas, TX 75001" +205013,27in FHD Monitor,1,149.99,05/17/19 22:55,"472 7th St, Seattle, WA 98101" +205014,Lightning Charging Cable,1,14.95,05/15/19 22:03,"597 Forest St, San Francisco, CA 94016" +205015,USB-C Charging Cable,1,11.95,05/15/19 21:52,"358 7th St, New York City, NY 10001" +205016,AAA Batteries (4-pack),2,2.99,05/08/19 15:14,"506 Madison St, New York City, NY 10001" +205017,27in 4K Gaming Monitor,1,389.99,05/26/19 10:49,"156 12th St, San Francisco, CA 94016" +205018,AA Batteries (4-pack),1,3.84,05/09/19 09:03,"936 Lake St, San Francisco, CA 94016" +205019,Flatscreen TV,1,300,05/24/19 16:15,"511 4th St, New York City, NY 10001" +205020,Bose SoundSport Headphones,1,99.99,05/02/19 15:12,"934 Dogwood St, Boston, MA 02215" +205021,USB-C Charging Cable,1,11.95,05/06/19 14:16,"72 1st St, New York City, NY 10001" +205022,Lightning Charging Cable,1,14.95,05/03/19 17:20,"347 14th St, Boston, MA 02215" +205023,AAA Batteries (4-pack),3,2.99,05/02/19 18:38,"120 13th St, San Francisco, CA 94016" +205024,Apple Airpods Headphones,1,150,05/20/19 22:27,"361 South St, Seattle, WA 98101" +205025,AAA Batteries (4-pack),1,2.99,05/08/19 21:06,"292 Sunset St, Portland, OR 97035" +205026,Lightning Charging Cable,1,14.95,05/25/19 23:01,"84 West St, Los Angeles, CA 90001" +205027,AA Batteries (4-pack),1,3.84,05/05/19 12:38,"550 Park St, Los Angeles, CA 90001" +205028,27in 4K Gaming Monitor,1,389.99,05/30/19 14:46,"227 8th St, New York City, NY 10001" +,,,,, +205029,iPhone,1,700,05/20/19 12:44,"924 10th St, San Francisco, CA 94016" +205029,Wired Headphones,1,11.99,05/20/19 12:44,"924 10th St, San Francisco, CA 94016" +205030,Macbook Pro Laptop,1,1700,05/29/19 00:26,"688 Adams St, Portland, OR 97035" +205031,Bose SoundSport Headphones,1,99.99,05/28/19 09:23,"200 10th St, Los Angeles, CA 90001" +205032,Apple Airpods Headphones,1,150,05/03/19 09:56,"694 Ridge St, San Francisco, CA 94016" +205033,Macbook Pro Laptop,1,1700,05/17/19 19:27,"631 Elm St, Los Angeles, CA 90001" +205034,Apple Airpods Headphones,1,150,05/23/19 12:56,"418 9th St, Austin, TX 73301" +205035,AAA Batteries (4-pack),1,2.99,05/16/19 14:05,"41 10th St, Portland, ME 04101" +205036,Lightning Charging Cable,1,14.95,05/05/19 14:03,"890 Hill St, Austin, TX 73301" +205037,Wired Headphones,1,11.99,05/01/19 12:19,"256 Maple St, Dallas, TX 75001" +205038,ThinkPad Laptop,1,999.99,05/12/19 23:06,"254 Jackson St, Dallas, TX 75001" +205039,AAA Batteries (4-pack),1,2.99,05/07/19 04:57,"39 6th St, San Francisco, CA 94016" +205040,AA Batteries (4-pack),1,3.84,05/28/19 11:12,"76 7th St, New York City, NY 10001" +205041,Flatscreen TV,1,300,05/20/19 13:14,"405 7th St, New York City, NY 10001" +205042,Bose SoundSport Headphones,1,99.99,05/02/19 22:49,"649 Ridge St, Portland, OR 97035" +205043,Wired Headphones,1,11.99,05/25/19 21:26,"134 Elm St, San Francisco, CA 94016" +205044,Macbook Pro Laptop,1,1700,05/29/19 18:51,"539 12th St, Atlanta, GA 30301" +205045,USB-C Charging Cable,1,11.95,05/12/19 08:09,"920 7th St, New York City, NY 10001" +205046,ThinkPad Laptop,1,999.99,05/12/19 09:41,"826 North St, San Francisco, CA 94016" +205047,AA Batteries (4-pack),1,3.84,05/06/19 00:17,"35 2nd St, Atlanta, GA 30301" +205048,27in 4K Gaming Monitor,1,389.99,05/30/19 21:34,"43 Lake St, Los Angeles, CA 90001" +205049,AA Batteries (4-pack),2,3.84,05/22/19 17:37,"415 Lakeview St, Los Angeles, CA 90001" +205050,34in Ultrawide Monitor,1,379.99,05/16/19 15:51,"40 14th St, Dallas, TX 75001" +205051,AA Batteries (4-pack),3,3.84,05/26/19 17:29,"595 5th St, San Francisco, CA 94016" +205052,27in 4K Gaming Monitor,1,389.99,05/18/19 23:35,"738 Adams St, San Francisco, CA 94016" +205053,iPhone,2,700,05/31/19 23:28,"24 Hickory St, Los Angeles, CA 90001" +205054,iPhone,1,700,05/25/19 20:24,"459 11th St, San Francisco, CA 94016" +205055,USB-C Charging Cable,1,11.95,05/19/19 00:58,"697 13th St, San Francisco, CA 94016" +205056,Lightning Charging Cable,2,14.95,05/21/19 22:29,"370 Hill St, Los Angeles, CA 90001" +205057,Macbook Pro Laptop,1,1700,05/31/19 20:53,"175 9th St, San Francisco, CA 94016" +205058,AAA Batteries (4-pack),1,2.99,05/10/19 12:42,"25 Cherry St, Dallas, TX 75001" +205059,Apple Airpods Headphones,1,150,05/04/19 12:43,"393 Jefferson St, New York City, NY 10001" +205060,AA Batteries (4-pack),1,3.84,05/27/19 14:37,"990 Main St, San Francisco, CA 94016" +205061,Wired Headphones,1,11.99,05/29/19 07:12,"913 Center St, Dallas, TX 75001" +205062,27in 4K Gaming Monitor,1,389.99,05/10/19 20:48,"102 5th St, San Francisco, CA 94016" +205063,Wired Headphones,1,11.99,05/24/19 11:22,"890 Jefferson St, Los Angeles, CA 90001" +205064,USB-C Charging Cable,1,11.95,05/21/19 22:38,"636 North St, Boston, MA 02215" +205065,Lightning Charging Cable,1,14.95,05/27/19 18:31,"200 13th St, Atlanta, GA 30301" +205066,Wired Headphones,1,11.99,05/14/19 23:17,"571 Hickory St, Dallas, TX 75001" +205067,Apple Airpods Headphones,1,150,05/15/19 17:22,"946 Jefferson St, San Francisco, CA 94016" +205068,27in FHD Monitor,1,149.99,05/22/19 21:59,"401 Church St, Atlanta, GA 30301" +205069,AA Batteries (4-pack),1,3.84,05/22/19 12:11,"429 Jackson St, Portland, OR 97035" +205070,20in Monitor,1,109.99,05/18/19 11:22,"832 South St, Atlanta, GA 30301" +205071,USB-C Charging Cable,1,11.95,05/24/19 18:09,"216 7th St, San Francisco, CA 94016" +205072,AAA Batteries (4-pack),1,2.99,05/29/19 13:07,"175 Main St, Portland, OR 97035" +205073,AA Batteries (4-pack),1,3.84,05/14/19 00:13,"271 5th St, Austin, TX 73301" +205074,27in 4K Gaming Monitor,1,389.99,05/16/19 19:51,"437 Elm St, Dallas, TX 75001" +205075,Macbook Pro Laptop,1,1700,05/27/19 17:31,"105 5th St, San Francisco, CA 94016" +205076,AA Batteries (4-pack),1,3.84,05/04/19 15:50,"268 Pine St, Portland, OR 97035" +205077,Lightning Charging Cable,1,14.95,05/25/19 19:25,"708 1st St, Boston, MA 02215" +205078,Bose SoundSport Headphones,1,99.99,05/12/19 16:22,"993 North St, Portland, OR 97035" +205079,Wired Headphones,1,11.99,05/17/19 19:06,"3 Main St, Atlanta, GA 30301" +205080,20in Monitor,1,109.99,05/17/19 11:15,"169 Center St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +205081,Lightning Charging Cable,1,14.95,05/13/19 15:21,"819 2nd St, Los Angeles, CA 90001" +205082,Apple Airpods Headphones,1,150,05/12/19 18:46,"316 Hill St, Dallas, TX 75001" +205083,Bose SoundSport Headphones,1,99.99,05/21/19 07:32,"327 8th St, New York City, NY 10001" +205084,Flatscreen TV,1,300,05/12/19 11:59,"867 Spruce St, San Francisco, CA 94016" +205085,AAA Batteries (4-pack),3,2.99,05/27/19 10:27,"769 West St, San Francisco, CA 94016" +205086,Macbook Pro Laptop,1,1700,05/07/19 15:40,"800 Cherry St, Dallas, TX 75001" +205087,AA Batteries (4-pack),1,3.84,05/31/19 23:02,"106 Madison St, Boston, MA 02215" +205088,AAA Batteries (4-pack),2,2.99,05/21/19 14:23,"824 6th St, New York City, NY 10001" +205089,AAA Batteries (4-pack),1,2.99,05/11/19 13:08,"711 1st St, New York City, NY 10001" +205090,Apple Airpods Headphones,1,150,05/10/19 10:50,"272 9th St, Los Angeles, CA 90001" +205091,AA Batteries (4-pack),1,3.84,05/02/19 08:44,"688 Johnson St, New York City, NY 10001" +205092,Google Phone,1,600,05/02/19 10:14,"128 Adams St, Los Angeles, CA 90001" +205093,AAA Batteries (4-pack),3,2.99,05/27/19 16:41,"679 Hill St, Boston, MA 02215" +205094,USB-C Charging Cable,1,11.95,05/12/19 17:18,"678 Elm St, Los Angeles, CA 90001" +205095,Bose SoundSport Headphones,1,99.99,05/01/19 21:22,"627 14th St, San Francisco, CA 94016" +205096,USB-C Charging Cable,1,11.95,05/26/19 04:59,"399 2nd St, Portland, OR 97035" +205097,iPhone,1,700,05/22/19 12:51,"53 Jackson St, Atlanta, GA 30301" +205098,Lightning Charging Cable,1,14.95,05/28/19 01:26,"314 Walnut St, Atlanta, GA 30301" +205099,USB-C Charging Cable,1,11.95,05/22/19 12:30,"852 River St, Atlanta, GA 30301" +205100,34in Ultrawide Monitor,1,379.99,05/07/19 16:31,"103 Forest St, New York City, NY 10001" +205101,Macbook Pro Laptop,1,1700,05/10/19 12:21,"159 1st St, Seattle, WA 98101" +205102,Bose SoundSport Headphones,1,99.99,05/29/19 13:10,"522 Church St, San Francisco, CA 94016" +205102,USB-C Charging Cable,1,11.95,05/29/19 13:10,"522 Church St, San Francisco, CA 94016" +205103,AAA Batteries (4-pack),1,2.99,05/05/19 23:50,"524 14th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +205104,AAA Batteries (4-pack),1,2.99,05/20/19 07:04,"238 Hill St, San Francisco, CA 94016" +205105,34in Ultrawide Monitor,1,379.99,05/17/19 19:27,"574 Highland St, Atlanta, GA 30301" +205106,ThinkPad Laptop,1,999.99,05/25/19 16:55,"579 11th St, New York City, NY 10001" +205107,27in 4K Gaming Monitor,1,389.99,05/17/19 21:51,"238 14th St, San Francisco, CA 94016" +205108,AA Batteries (4-pack),1,3.84,05/08/19 17:48,"603 Elm St, Seattle, WA 98101" +205109,Macbook Pro Laptop,1,1700,05/25/19 15:12,"599 Sunset St, Dallas, TX 75001" +205110,Macbook Pro Laptop,1,1700,05/21/19 12:58,"438 6th St, San Francisco, CA 94016" +205111,Bose SoundSport Headphones,1,99.99,05/28/19 10:31,"139 2nd St, Portland, OR 97035" +205112,AA Batteries (4-pack),2,3.84,05/16/19 23:48,"876 Cherry St, Dallas, TX 75001" +205113,ThinkPad Laptop,1,999.99,05/09/19 11:45,"152 Johnson St, San Francisco, CA 94016" +205114,Lightning Charging Cable,1,14.95,05/20/19 15:01,"914 13th St, Los Angeles, CA 90001" +205115,Wired Headphones,1,11.99,05/01/19 16:02,"645 Forest St, San Francisco, CA 94016" +205116,USB-C Charging Cable,1,11.95,05/06/19 19:37,"904 Cedar St, San Francisco, CA 94016" +205117,AA Batteries (4-pack),1,3.84,05/05/19 21:01,"628 11th St, New York City, NY 10001" +205118,USB-C Charging Cable,1,11.95,05/18/19 13:43,"930 Church St, Boston, MA 02215" +205119,AA Batteries (4-pack),3,3.84,05/01/19 11:18,"769 Elm St, San Francisco, CA 94016" +205120,Lightning Charging Cable,1,14.95,05/23/19 20:31,"159 Forest St, Boston, MA 02215" +205121,USB-C Charging Cable,1,11.95,05/22/19 18:10,"299 Spruce St, Seattle, WA 98101" +205122,Bose SoundSport Headphones,1,99.99,05/10/19 16:14,"898 14th St, Seattle, WA 98101" +205123,USB-C Charging Cable,1,11.95,05/31/19 16:48,"577 13th St, Austin, TX 73301" +205124,Apple Airpods Headphones,1,150,05/12/19 09:32,"941 Jefferson St, San Francisco, CA 94016" +205125,iPhone,1,700,05/12/19 17:44,"691 Meadow St, Los Angeles, CA 90001" +205125,Lightning Charging Cable,1,14.95,05/12/19 17:44,"691 Meadow St, Los Angeles, CA 90001" +205126,27in FHD Monitor,1,149.99,05/30/19 16:19,"452 Elm St, Boston, MA 02215" +205127,34in Ultrawide Monitor,1,379.99,05/14/19 18:34,"129 7th St, Boston, MA 02215" +205128,Wired Headphones,1,11.99,05/15/19 21:31,"645 Lake St, Boston, MA 02215" +205129,Wired Headphones,1,11.99,05/20/19 23:51,"46 Main St, Austin, TX 73301" +205130,Bose SoundSport Headphones,1,99.99,05/20/19 19:11,"522 West St, Seattle, WA 98101" +205131,Lightning Charging Cable,1,14.95,05/07/19 09:32,"858 Pine St, Portland, OR 97035" +205132,AAA Batteries (4-pack),2,2.99,05/09/19 20:45,"507 12th St, Atlanta, GA 30301" +205133,AAA Batteries (4-pack),1,2.99,05/02/19 17:03,"585 Forest St, San Francisco, CA 94016" +205134,USB-C Charging Cable,1,11.95,05/18/19 14:27,"615 South St, San Francisco, CA 94016" +205135,AA Batteries (4-pack),1,3.84,05/17/19 12:43,"204 Pine St, Los Angeles, CA 90001" +205136,Flatscreen TV,1,300,05/08/19 18:17,"575 Park St, Seattle, WA 98101" +205137,AA Batteries (4-pack),2,3.84,05/20/19 14:12,"936 11th St, Austin, TX 73301" +205138,Wired Headphones,1,11.99,05/05/19 13:02,"317 14th St, San Francisco, CA 94016" +205139,AAA Batteries (4-pack),2,2.99,05/15/19 07:10,"10 Lake St, San Francisco, CA 94016" +205140,Wired Headphones,1,11.99,05/19/19 16:59,"862 Lake St, Boston, MA 02215" +205141,Wired Headphones,1,11.99,05/29/19 13:12,"892 Adams St, New York City, NY 10001" +205142,Wired Headphones,2,11.99,05/29/19 13:17,"689 6th St, Los Angeles, CA 90001" +205143,34in Ultrawide Monitor,1,379.99,05/18/19 19:19,"858 Jefferson St, Portland, OR 97035" +205144,Apple Airpods Headphones,1,150,05/03/19 13:00,"66 Main St, Los Angeles, CA 90001" +205145,Flatscreen TV,1,300,05/06/19 22:47,"820 Main St, Portland, OR 97035" +205146,AAA Batteries (4-pack),1,2.99,05/17/19 00:38,"907 Church St, San Francisco, CA 94016" +205147,27in FHD Monitor,1,149.99,05/28/19 15:28,"119 North St, New York City, NY 10001" +205148,AA Batteries (4-pack),1,3.84,05/05/19 13:43,"647 9th St, Seattle, WA 98101" +205149,Apple Airpods Headphones,1,150,05/29/19 14:51,"100 2nd St, Los Angeles, CA 90001" +205150,Lightning Charging Cable,1,14.95,05/02/19 18:36,"860 Ridge St, Boston, MA 02215" +205151,Apple Airpods Headphones,1,150,05/03/19 19:33,"256 Spruce St, San Francisco, CA 94016" +205152,Wired Headphones,1,11.99,05/06/19 18:48,"988 Jefferson St, New York City, NY 10001" +205153,Google Phone,2,600,05/31/19 13:29,"40 Center St, Dallas, TX 75001" +205154,AAA Batteries (4-pack),1,2.99,05/09/19 14:29,"780 Lake St, San Francisco, CA 94016" +205155,USB-C Charging Cable,1,11.95,05/17/19 19:01,"452 14th St, Dallas, TX 75001" +205156,Bose SoundSport Headphones,1,99.99,05/01/19 13:17,"251 14th St, Los Angeles, CA 90001" +205157,34in Ultrawide Monitor,1,379.99,05/28/19 10:57,"189 Sunset St, San Francisco, CA 94016" +205158,Wired Headphones,1,11.99,05/17/19 12:34,"690 4th St, Los Angeles, CA 90001" +205159,Bose SoundSport Headphones,1,99.99,05/19/19 09:06,"477 West St, Austin, TX 73301" +205160,Macbook Pro Laptop,1,1700,05/24/19 18:41,"73 6th St, San Francisco, CA 94016" +205161,AA Batteries (4-pack),1,3.84,05/19/19 14:44,"321 Elm St, Atlanta, GA 30301" +205162,iPhone,1,700,05/18/19 07:36,"141 Adams St, Los Angeles, CA 90001" +205162,Lightning Charging Cable,1,14.95,05/18/19 07:36,"141 Adams St, Los Angeles, CA 90001" +205163,Wired Headphones,1,11.99,05/29/19 06:51,"743 7th St, Portland, OR 97035" +205164,Wired Headphones,1,11.99,05/03/19 16:28,"415 Cherry St, Boston, MA 02215" +205165,iPhone,1,700,05/07/19 08:09,"120 Church St, Dallas, TX 75001" +205165,Lightning Charging Cable,2,14.95,05/07/19 08:09,"120 Church St, Dallas, TX 75001" +205165,Wired Headphones,1,11.99,05/07/19 08:09,"120 Church St, Dallas, TX 75001" +205166,27in 4K Gaming Monitor,1,389.99,05/29/19 22:23,"265 Park St, New York City, NY 10001" +205167,AA Batteries (4-pack),1,3.84,05/29/19 16:02,"671 Forest St, San Francisco, CA 94016" +205168,Flatscreen TV,1,300,05/22/19 13:23,"136 South St, Los Angeles, CA 90001" +205169,ThinkPad Laptop,1,999.99,05/23/19 13:29,"794 Park St, Atlanta, GA 30301" +205170,USB-C Charging Cable,1,11.95,05/02/19 19:14,"259 Washington St, Portland, OR 97035" +205171,20in Monitor,1,109.99,05/26/19 12:53,"699 Pine St, New York City, NY 10001" +205172,Apple Airpods Headphones,1,150,05/17/19 23:44,"655 Johnson St, San Francisco, CA 94016" +205173,USB-C Charging Cable,1,11.95,05/16/19 16:09,"319 9th St, Dallas, TX 75001" +205174,Bose SoundSport Headphones,1,99.99,05/18/19 12:38,"408 11th St, New York City, NY 10001" +205175,Apple Airpods Headphones,1,150,05/20/19 11:40,"442 Forest St, Los Angeles, CA 90001" +205176,Apple Airpods Headphones,1,150,05/20/19 09:50,"363 11th St, San Francisco, CA 94016" +205177,20in Monitor,1,109.99,05/20/19 11:54,"912 Willow St, New York City, NY 10001" +205178,27in 4K Gaming Monitor,1,389.99,05/04/19 09:59,"87 Jackson St, San Francisco, CA 94016" +205179,AA Batteries (4-pack),1,3.84,05/16/19 16:30,"364 9th St, San Francisco, CA 94016" +205180,ThinkPad Laptop,1,999.99,05/16/19 14:54,"896 2nd St, Seattle, WA 98101" +205181,Apple Airpods Headphones,1,150,05/20/19 17:06,"70 Hickory St, San Francisco, CA 94016" +205182,ThinkPad Laptop,1,999.99,05/29/19 16:39,"28 13th St, Dallas, TX 75001" +205183,27in FHD Monitor,1,149.99,05/17/19 10:06,"215 2nd St, Dallas, TX 75001" +205184,USB-C Charging Cable,1,11.95,05/28/19 23:14,"763 13th St, San Francisco, CA 94016" +205185,27in FHD Monitor,1,149.99,05/20/19 14:20,"811 9th St, San Francisco, CA 94016" +205186,Lightning Charging Cable,1,14.95,05/27/19 14:35,"249 10th St, Portland, OR 97035" +205187,USB-C Charging Cable,1,11.95,05/02/19 00:30,"726 Dogwood St, New York City, NY 10001" +205188,Bose SoundSport Headphones,1,99.99,05/20/19 18:19,"178 Jefferson St, Portland, OR 97035" +205189,USB-C Charging Cable,1,11.95,05/24/19 07:07,"219 Lakeview St, Seattle, WA 98101" +205190,AAA Batteries (4-pack),3,2.99,05/30/19 16:20,"798 Dogwood St, Austin, TX 73301" +205191,20in Monitor,1,109.99,05/26/19 00:51,"7 1st St, San Francisco, CA 94016" +205192,Lightning Charging Cable,1,14.95,05/11/19 22:20,"252 13th St, Dallas, TX 75001" +205193,AAA Batteries (4-pack),1,2.99,05/20/19 11:35,"557 Lakeview St, Seattle, WA 98101" +205194,27in 4K Gaming Monitor,1,389.99,05/08/19 09:11,"153 Sunset St, Austin, TX 73301" +205195,Apple Airpods Headphones,1,150,05/03/19 21:48,"796 8th St, Seattle, WA 98101" +205196,Macbook Pro Laptop,1,1700,05/04/19 22:18,"576 Hickory St, Seattle, WA 98101" +205197,AAA Batteries (4-pack),4,2.99,05/15/19 19:56,"135 Pine St, San Francisco, CA 94016" +205198,AA Batteries (4-pack),1,3.84,05/30/19 19:36,"953 Church St, Portland, OR 97035" +205199,Lightning Charging Cable,1,14.95,05/26/19 14:00,"489 Cedar St, Dallas, TX 75001" +205200,Lightning Charging Cable,1,14.95,05/18/19 23:56,"535 Hickory St, San Francisco, CA 94016" +205201,Lightning Charging Cable,1,14.95,05/22/19 18:16,"122 Meadow St, Los Angeles, CA 90001" +205202,Apple Airpods Headphones,1,150,05/01/19 19:53,"615 Jefferson St, San Francisco, CA 94016" +205203,USB-C Charging Cable,1,11.95,05/31/19 20:06,"710 Johnson St, Portland, ME 04101" +205204,AAA Batteries (4-pack),3,2.99,05/04/19 14:36,"568 12th St, Atlanta, GA 30301" +205205,Lightning Charging Cable,1,14.95,05/12/19 21:37,"646 South St, Austin, TX 73301" +205206,AA Batteries (4-pack),2,3.84,05/05/19 13:49,"523 Washington St, New York City, NY 10001" +205207,Lightning Charging Cable,1,14.95,05/30/19 13:08,"881 River St, Boston, MA 02215" +205208,USB-C Charging Cable,1,11.95,05/08/19 14:45,"797 River St, Portland, OR 97035" +205209,AAA Batteries (4-pack),1,2.99,05/03/19 16:47,"562 Maple St, San Francisco, CA 94016" +205210,27in 4K Gaming Monitor,1,389.99,05/24/19 20:33,"996 9th St, San Francisco, CA 94016" +205211,USB-C Charging Cable,1,11.95,05/21/19 14:13,"543 Johnson St, Boston, MA 02215" +205212,34in Ultrawide Monitor,1,379.99,05/11/19 16:41,"312 Highland St, Portland, OR 97035" +205213,20in Monitor,1,109.99,05/08/19 16:58,"295 Pine St, Austin, TX 73301" +205214,Flatscreen TV,1,300,05/11/19 18:00,"920 Meadow St, New York City, NY 10001" +205215,AA Batteries (4-pack),1,3.84,05/09/19 11:11,"734 7th St, Portland, ME 04101" +205216,USB-C Charging Cable,1,11.95,05/19/19 11:39,"172 7th St, Seattle, WA 98101" +205217,27in FHD Monitor,1,149.99,05/09/19 11:35,"151 Chestnut St, Portland, OR 97035" +205218,Bose SoundSport Headphones,1,99.99,05/27/19 20:13,"385 Hickory St, Los Angeles, CA 90001" +205219,Apple Airpods Headphones,1,150,05/28/19 19:52,"344 12th St, San Francisco, CA 94016" +205220,Lightning Charging Cable,1,14.95,05/02/19 10:51,"744 Washington St, New York City, NY 10001" +205221,Lightning Charging Cable,1,14.95,05/20/19 18:36,"388 14th St, San Francisco, CA 94016" +205222,Apple Airpods Headphones,1,150,05/08/19 15:58,"901 6th St, Atlanta, GA 30301" +205223,AA Batteries (4-pack),2,3.84,05/01/19 10:54,"49 9th St, Atlanta, GA 30301" +205224,LG Dryer,1,600.0,05/03/19 07:26,"167 Park St, San Francisco, CA 94016" +205225,Lightning Charging Cable,1,14.95,05/09/19 18:10,"631 Cherry St, Portland, OR 97035" +205226,Apple Airpods Headphones,1,150,05/19/19 07:36,"622 River St, Portland, OR 97035" +205227,iPhone,1,700,05/23/19 19:22,"997 Lakeview St, Portland, ME 04101" +205228,Google Phone,1,600,05/25/19 13:08,"176 Hickory St, San Francisco, CA 94016" +205228,Wired Headphones,1,11.99,05/25/19 13:08,"176 Hickory St, San Francisco, CA 94016" +205229,27in 4K Gaming Monitor,1,389.99,05/04/19 00:12,"155 8th St, Atlanta, GA 30301" +205229,Wired Headphones,1,11.99,05/04/19 00:12,"155 8th St, Atlanta, GA 30301" +205230,ThinkPad Laptop,1,999.99,05/24/19 13:46,"250 Jackson St, Atlanta, GA 30301" +205231,27in 4K Gaming Monitor,1,389.99,05/13/19 22:30,"177 Hickory St, Portland, ME 04101" +205232,Lightning Charging Cable,1,14.95,05/18/19 21:12,"119 1st St, New York City, NY 10001" +205233,USB-C Charging Cable,1,11.95,05/19/19 17:56,"833 5th St, San Francisco, CA 94016" +205234,AAA Batteries (4-pack),1,2.99,05/24/19 18:25,"404 Lake St, Boston, MA 02215" +205235,Wired Headphones,1,11.99,05/18/19 11:19,"372 13th St, Dallas, TX 75001" +205236,Macbook Pro Laptop,1,1700,05/17/19 11:53,"245 2nd St, San Francisco, CA 94016" +205237,ThinkPad Laptop,1,999.99,05/09/19 08:37,"846 Cherry St, Dallas, TX 75001" +205238,Apple Airpods Headphones,1,150,05/25/19 15:01,"658 Center St, San Francisco, CA 94016" +205239,Bose SoundSport Headphones,1,99.99,05/12/19 23:45,"208 Church St, Seattle, WA 98101" +205240,Flatscreen TV,1,300,05/06/19 14:46,"107 5th St, New York City, NY 10001" +205241,AA Batteries (4-pack),1,3.84,05/21/19 12:06,"535 South St, San Francisco, CA 94016" +205242,Bose SoundSport Headphones,1,99.99,05/09/19 01:45,"410 North St, Portland, OR 97035" +205243,34in Ultrawide Monitor,1,379.99,05/28/19 15:45,"741 Lakeview St, Boston, MA 02215" +205244,Wired Headphones,2,11.99,05/18/19 18:07,"810 North St, San Francisco, CA 94016" +205245,AAA Batteries (4-pack),5,2.99,05/18/19 10:35,"789 South St, Seattle, WA 98101" +205246,Macbook Pro Laptop,1,1700,05/17/19 09:40,"397 7th St, Boston, MA 02215" +205247,Wired Headphones,1,11.99,05/28/19 20:36,"542 Lincoln St, New York City, NY 10001" +205248,Flatscreen TV,1,300,05/17/19 17:50,"513 Dogwood St, Austin, TX 73301" +205249,Lightning Charging Cable,1,14.95,05/13/19 10:56,"871 4th St, San Francisco, CA 94016" +205250,Lightning Charging Cable,1,14.95,05/13/19 10:03,"81 14th St, Boston, MA 02215" +205251,USB-C Charging Cable,1,11.95,05/04/19 16:40,"485 2nd St, Boston, MA 02215" +205252,AAA Batteries (4-pack),1,2.99,05/07/19 13:16,"686 Adams St, San Francisco, CA 94016" +205253,ThinkPad Laptop,1,999.99,05/20/19 15:00,"341 Ridge St, Atlanta, GA 30301" +205254,USB-C Charging Cable,1,11.95,05/23/19 16:40,"646 6th St, Los Angeles, CA 90001" +205255,Google Phone,1,600,05/18/19 11:14,"612 2nd St, Portland, OR 97035" +205256,iPhone,1,700,05/09/19 15:52,"296 1st St, New York City, NY 10001" +205256,Wired Headphones,1,11.99,05/09/19 15:52,"296 1st St, New York City, NY 10001" +205257,Flatscreen TV,1,300,05/31/19 08:17,"469 Meadow St, Boston, MA 02215" +205258,20in Monitor,1,109.99,05/08/19 20:10,"101 5th St, Los Angeles, CA 90001" +205259,Bose SoundSport Headphones,1,99.99,05/04/19 20:08,"50 9th St, New York City, NY 10001" +205260,34in Ultrawide Monitor,1,379.99,05/19/19 14:41,"343 9th St, Atlanta, GA 30301" +205261,20in Monitor,1,109.99,05/07/19 22:16,"458 River St, San Francisco, CA 94016" +205262,AAA Batteries (4-pack),2,2.99,05/12/19 21:30,"560 Park St, San Francisco, CA 94016" +205263,27in FHD Monitor,1,149.99,05/18/19 19:43,"156 Highland St, Los Angeles, CA 90001" +205264,Google Phone,1,600,05/26/19 17:51,"186 Hill St, Atlanta, GA 30301" +205264,USB-C Charging Cable,1,11.95,05/26/19 17:51,"186 Hill St, Atlanta, GA 30301" +205265,27in 4K Gaming Monitor,1,389.99,05/26/19 11:35,"566 Lakeview St, New York City, NY 10001" +205266,34in Ultrawide Monitor,1,379.99,05/02/19 11:00,"101 Washington St, San Francisco, CA 94016" +205267,Google Phone,1,600,05/29/19 12:57,"879 Hickory St, Dallas, TX 75001" +205267,USB-C Charging Cable,1,11.95,05/29/19 12:57,"879 Hickory St, Dallas, TX 75001" +205268,Bose SoundSport Headphones,1,99.99,05/01/19 09:49,"468 Lake St, Boston, MA 02215" +205269,AA Batteries (4-pack),1,3.84,05/24/19 15:15,"734 River St, Portland, ME 04101" +205270,Lightning Charging Cable,1,14.95,05/06/19 14:24,"394 Spruce St, Austin, TX 73301" +205271,USB-C Charging Cable,2,11.95,05/31/19 20:17,"707 Jackson St, Austin, TX 73301" +205272,iPhone,1,700,05/07/19 10:32,"937 6th St, New York City, NY 10001" +205273,Apple Airpods Headphones,1,150,05/10/19 15:16,"368 Adams St, Los Angeles, CA 90001" +205274,Apple Airpods Headphones,1,150,05/06/19 19:43,"520 West St, Atlanta, GA 30301" +205275,USB-C Charging Cable,1,11.95,05/31/19 19:53,"19 Jackson St, Dallas, TX 75001" +205276,Wired Headphones,1,11.99,05/08/19 08:16,"39 10th St, Los Angeles, CA 90001" +205277,Wired Headphones,1,11.99,05/26/19 10:15,"10 Park St, Dallas, TX 75001" +205278,USB-C Charging Cable,1,11.95,05/30/19 08:58,"171 1st St, Portland, OR 97035" +205279,Apple Airpods Headphones,1,150,05/16/19 11:46,"275 2nd St, Dallas, TX 75001" +205280,AA Batteries (4-pack),1,3.84,05/20/19 14:03,"340 9th St, San Francisco, CA 94016" +205281,Bose SoundSport Headphones,1,99.99,05/24/19 12:01,"349 Cedar St, Austin, TX 73301" +205282,27in 4K Gaming Monitor,1,389.99,05/16/19 12:56,"81 4th St, San Francisco, CA 94016" +205283,Lightning Charging Cable,1,14.95,05/17/19 17:41,"230 Hickory St, New York City, NY 10001" +205284,Apple Airpods Headphones,1,150,05/11/19 19:03,"262 4th St, New York City, NY 10001" +205285,Google Phone,1,600,05/12/19 02:15,"588 Chestnut St, San Francisco, CA 94016" +205285,27in FHD Monitor,1,149.99,05/12/19 02:15,"588 Chestnut St, San Francisco, CA 94016" +205286,27in FHD Monitor,1,149.99,05/06/19 13:28,"77 Lakeview St, Austin, TX 73301" +205287,AA Batteries (4-pack),1,3.84,05/22/19 16:48,"632 Jackson St, Seattle, WA 98101" +205288,iPhone,1,700,05/17/19 16:50,"565 Forest St, Los Angeles, CA 90001" +205289,34in Ultrawide Monitor,1,379.99,05/22/19 00:25,"374 Sunset St, San Francisco, CA 94016" +,,,,, +205290,AAA Batteries (4-pack),2,2.99,05/13/19 16:38,"317 Lakeview St, San Francisco, CA 94016" +205291,Apple Airpods Headphones,1,150,05/17/19 14:38,"509 6th St, New York City, NY 10001" +205292,Google Phone,1,600,05/28/19 01:33,"336 9th St, Boston, MA 02215" +205293,Flatscreen TV,1,300,05/02/19 09:35,"329 4th St, New York City, NY 10001" +205294,AA Batteries (4-pack),3,3.84,05/27/19 10:17,"280 Johnson St, Dallas, TX 75001" +205295,USB-C Charging Cable,1,11.95,05/11/19 09:46,"462 Lake St, Seattle, WA 98101" +205296,Wired Headphones,1,11.99,05/23/19 01:00,"909 5th St, Atlanta, GA 30301" +205297,Apple Airpods Headphones,1,150,05/29/19 10:02,"966 Spruce St, San Francisco, CA 94016" +205298,Vareebadd Phone,1,400,05/19/19 22:44,"173 Lakeview St, San Francisco, CA 94016" +205299,Wired Headphones,1,11.99,05/15/19 23:57,"474 Madison St, New York City, NY 10001" +205300,iPhone,1,700,05/02/19 12:52,"104 10th St, New York City, NY 10001" +205300,Lightning Charging Cable,1,14.95,05/02/19 12:52,"104 10th St, New York City, NY 10001" +205301,Wired Headphones,1,11.99,05/03/19 10:26,"388 10th St, Austin, TX 73301" +205302,27in 4K Gaming Monitor,1,389.99,05/12/19 10:46,"961 Church St, New York City, NY 10001" +205303,27in 4K Gaming Monitor,1,389.99,05/31/19 14:12,"635 10th St, San Francisco, CA 94016" +205304,AA Batteries (4-pack),1,3.84,05/03/19 12:18,"476 11th St, Seattle, WA 98101" +205305,27in 4K Gaming Monitor,1,389.99,05/04/19 18:11,"336 Willow St, San Francisco, CA 94016" +205306,Wired Headphones,1,11.99,05/19/19 17:34,"165 Walnut St, Boston, MA 02215" +205307,Wired Headphones,1,11.99,05/02/19 16:40,"637 Adams St, Dallas, TX 75001" +205308,Wired Headphones,1,11.99,05/30/19 10:25,"92 14th St, Boston, MA 02215" +205309,20in Monitor,1,109.99,05/24/19 10:26,"313 Church St, Boston, MA 02215" +205310,Lightning Charging Cable,1,14.95,05/19/19 17:41,"588 Willow St, Boston, MA 02215" +205311,AAA Batteries (4-pack),1,2.99,05/31/19 13:12,"623 River St, Boston, MA 02215" +205312,USB-C Charging Cable,1,11.95,05/01/19 10:01,"273 Park St, San Francisco, CA 94016" +205313,Apple Airpods Headphones,1,150,05/21/19 09:41,"177 Hickory St, San Francisco, CA 94016" +205314,Wired Headphones,2,11.99,05/02/19 13:33,"445 Highland St, New York City, NY 10001" +205315,Lightning Charging Cable,1,14.95,05/04/19 11:51,"635 Jackson St, San Francisco, CA 94016" +205316,USB-C Charging Cable,1,11.95,05/12/19 17:34,"638 Church St, Los Angeles, CA 90001" +205317,USB-C Charging Cable,1,11.95,05/02/19 13:18,"236 North St, San Francisco, CA 94016" +205318,Wired Headphones,1,11.99,05/25/19 11:17,"806 Hickory St, San Francisco, CA 94016" +205319,iPhone,1,700,05/08/19 15:20,"845 West St, New York City, NY 10001" +205319,Lightning Charging Cable,1,14.95,05/08/19 15:20,"845 West St, New York City, NY 10001" +205320,AAA Batteries (4-pack),2,2.99,05/06/19 14:20,"236 Center St, New York City, NY 10001" +205321,USB-C Charging Cable,1,11.95,05/04/19 09:53,"797 Jackson St, Los Angeles, CA 90001" +205322,Lightning Charging Cable,1,14.95,05/29/19 12:52,"529 Lakeview St, San Francisco, CA 94016" +205323,ThinkPad Laptop,1,999.99,05/09/19 09:57,"42 Wilson St, San Francisco, CA 94016" +205324,AA Batteries (4-pack),2,3.84,05/04/19 04:42,"813 10th St, Los Angeles, CA 90001" +205325,Google Phone,1,600,05/20/19 12:35,"169 Lake St, New York City, NY 10001" +205325,Bose SoundSport Headphones,1,99.99,05/20/19 12:35,"169 Lake St, New York City, NY 10001" +205326,Wired Headphones,3,11.99,05/08/19 16:36,"614 Hill St, San Francisco, CA 94016" +205327,Google Phone,1,600,05/09/19 11:45,"72 Jefferson St, New York City, NY 10001" +205328,34in Ultrawide Monitor,1,379.99,05/25/19 14:54,"167 Highland St, New York City, NY 10001" +205329,AA Batteries (4-pack),1,3.84,05/21/19 04:11,"832 Pine St, Austin, TX 73301" +205330,Apple Airpods Headphones,1,150,05/27/19 12:15,"223 Adams St, Austin, TX 73301" +205331,Lightning Charging Cable,2,14.95,05/29/19 21:39,"497 Chestnut St, San Francisco, CA 94016" +205332,Bose SoundSport Headphones,1,99.99,05/22/19 11:36,"520 Adams St, San Francisco, CA 94016" +205333,27in FHD Monitor,1,149.99,05/06/19 20:43,"629 12th St, Dallas, TX 75001" +205334,ThinkPad Laptop,1,999.99,05/21/19 20:01,"817 Adams St, Los Angeles, CA 90001" +205335,Wired Headphones,1,11.99,05/13/19 11:56,"952 Chestnut St, New York City, NY 10001" +205336,AAA Batteries (4-pack),2,2.99,05/24/19 06:20,"291 13th St, San Francisco, CA 94016" +205337,Bose SoundSport Headphones,1,99.99,05/03/19 02:01,"196 11th St, San Francisco, CA 94016" +205338,AA Batteries (4-pack),1,3.84,05/20/19 14:39,"691 Lakeview St, San Francisco, CA 94016" +205339,USB-C Charging Cable,1,11.95,05/30/19 17:17,"75 9th St, Boston, MA 02215" +205340,AA Batteries (4-pack),1,3.84,05/23/19 06:13,"662 Jackson St, New York City, NY 10001" +205341,USB-C Charging Cable,1,11.95,05/06/19 02:08,"416 Johnson St, Los Angeles, CA 90001" +205342,34in Ultrawide Monitor,1,379.99,05/21/19 09:18,"468 Center St, Boston, MA 02215" +205343,iPhone,1,700,05/09/19 07:34,"347 North St, Austin, TX 73301" +205344,Google Phone,1,600,05/28/19 12:40,"712 4th St, San Francisco, CA 94016" +205344,USB-C Charging Cable,1,11.95,05/28/19 12:40,"712 4th St, San Francisco, CA 94016" +205345,Wired Headphones,1,11.99,05/09/19 09:47,"837 5th St, Dallas, TX 75001" +205346,Apple Airpods Headphones,1,150,05/20/19 08:55,"201 Highland St, San Francisco, CA 94016" +205347,AAA Batteries (4-pack),1,2.99,05/19/19 09:06,"52 Main St, San Francisco, CA 94016" +205348,Google Phone,1,600,05/15/19 17:21,"341 South St, Austin, TX 73301" +205348,Wired Headphones,1,11.99,05/15/19 17:21,"341 South St, Austin, TX 73301" +205349,Bose SoundSport Headphones,1,99.99,05/10/19 21:30,"87 5th St, San Francisco, CA 94016" +205350,USB-C Charging Cable,1,11.95,05/27/19 12:30,"341 Cedar St, New York City, NY 10001" +205351,Apple Airpods Headphones,1,150,05/11/19 08:17,"838 5th St, Los Angeles, CA 90001" +205352,Flatscreen TV,1,300,05/05/19 15:02,"903 Highland St, San Francisco, CA 94016" +205353,AA Batteries (4-pack),1,3.84,05/07/19 15:36,"170 Washington St, Seattle, WA 98101" +205354,Flatscreen TV,1,300,05/21/19 21:25,"425 Park St, Boston, MA 02215" +205355,AA Batteries (4-pack),1,3.84,05/17/19 20:36,"497 Adams St, Portland, ME 04101" +205356,Apple Airpods Headphones,1,150,05/03/19 19:04,"369 13th St, Portland, ME 04101" +205357,Wired Headphones,1,11.99,05/06/19 16:10,"274 2nd St, Boston, MA 02215" +205358,Wired Headphones,1,11.99,05/25/19 15:06,"819 Adams St, New York City, NY 10001" +205359,Wired Headphones,1,11.99,05/19/19 14:55,"486 2nd St, Portland, OR 97035" +205360,ThinkPad Laptop,1,999.99,05/18/19 12:51,"501 Spruce St, Portland, OR 97035" +205361,Lightning Charging Cable,1,14.95,05/08/19 19:13,"954 2nd St, Los Angeles, CA 90001" +205362,AA Batteries (4-pack),1,3.84,05/22/19 10:39,"779 Hickory St, Austin, TX 73301" +205363,Wired Headphones,1,11.99,05/02/19 23:19,"392 Jackson St, New York City, NY 10001" +205363,USB-C Charging Cable,1,11.95,05/02/19 23:19,"392 Jackson St, New York City, NY 10001" +205364,AAA Batteries (4-pack),1,2.99,05/21/19 12:29,"853 Center St, San Francisco, CA 94016" +205365,34in Ultrawide Monitor,1,379.99,05/20/19 14:58,"535 8th St, Dallas, TX 75001" +205366,AA Batteries (4-pack),1,3.84,05/26/19 11:19,"612 Sunset St, Los Angeles, CA 90001" +205367,Lightning Charging Cable,1,14.95,05/26/19 16:49,"760 Willow St, Boston, MA 02215" +205368,Lightning Charging Cable,2,14.95,05/31/19 23:25,"896 Pine St, Austin, TX 73301" +205369,Lightning Charging Cable,1,14.95,05/12/19 12:59,"47 South St, Dallas, TX 75001" +205370,USB-C Charging Cable,1,11.95,05/08/19 15:03,"480 8th St, Boston, MA 02215" +205371,Lightning Charging Cable,1,14.95,05/06/19 05:38,"589 12th St, Boston, MA 02215" +205372,AAA Batteries (4-pack),1,2.99,05/21/19 18:19,"200 Jackson St, Austin, TX 73301" +205373,iPhone,1,700,05/31/19 11:04,"839 Sunset St, San Francisco, CA 94016" +205374,Apple Airpods Headphones,1,150,05/29/19 20:58,"768 2nd St, Seattle, WA 98101" +205375,AA Batteries (4-pack),2,3.84,05/06/19 18:46,"644 Forest St, Portland, OR 97035" +205376,Lightning Charging Cable,1,14.95,05/28/19 19:51,"530 Walnut St, Los Angeles, CA 90001" +205377,USB-C Charging Cable,1,11.95,05/28/19 01:22,"707 Spruce St, New York City, NY 10001" +205378,iPhone,1,700,05/29/19 12:41,"768 River St, New York City, NY 10001" +205379,27in 4K Gaming Monitor,1,389.99,05/03/19 07:57,"669 4th St, San Francisco, CA 94016" +205380,Lightning Charging Cable,1,14.95,05/21/19 12:30,"67 Main St, San Francisco, CA 94016" +205381,Macbook Pro Laptop,1,1700,05/16/19 21:42,"945 7th St, San Francisco, CA 94016" +205382,Wired Headphones,1,11.99,05/04/19 20:51,"17 Hill St, Boston, MA 02215" +205383,Wired Headphones,1,11.99,05/21/19 11:40,"693 Elm St, Boston, MA 02215" +205384,Apple Airpods Headphones,1,150,05/22/19 09:52,"680 4th St, Portland, OR 97035" +205385,Flatscreen TV,1,300,05/22/19 21:06,"284 Jefferson St, San Francisco, CA 94016" +205386,AAA Batteries (4-pack),1,2.99,05/29/19 20:35,"356 Highland St, New York City, NY 10001" +205387,USB-C Charging Cable,1,11.95,05/03/19 16:23,"299 6th St, Los Angeles, CA 90001" +205388,Lightning Charging Cable,1,14.95,05/28/19 18:21,"665 Willow St, Atlanta, GA 30301" +205389,Wired Headphones,1,11.99,05/08/19 18:26,"459 Jackson St, New York City, NY 10001" +205390,Bose SoundSport Headphones,1,99.99,05/09/19 18:24,"860 9th St, Los Angeles, CA 90001" +205391,AAA Batteries (4-pack),1,2.99,05/28/19 10:42,"30 Cedar St, Dallas, TX 75001" +205392,Bose SoundSport Headphones,1,99.99,05/24/19 20:30,"748 13th St, San Francisco, CA 94016" +205393,USB-C Charging Cable,1,11.95,05/31/19 11:30,"221 Cedar St, Los Angeles, CA 90001" +205394,34in Ultrawide Monitor,1,379.99,05/25/19 12:22,"244 Willow St, Atlanta, GA 30301" +205395,LG Dryer,1,600.0,05/20/19 12:44,"150 Spruce St, Portland, OR 97035" +205396,34in Ultrawide Monitor,1,379.99,05/11/19 14:21,"892 7th St, Boston, MA 02215" +205397,AAA Batteries (4-pack),2,2.99,05/29/19 07:25,"648 Lake St, Boston, MA 02215" +205398,Flatscreen TV,1,300,05/12/19 21:59,"937 Center St, Dallas, TX 75001" +205399,Lightning Charging Cable,1,14.95,05/03/19 14:00,"726 Cherry St, New York City, NY 10001" +205400,Bose SoundSport Headphones,1,99.99,05/09/19 17:53,"370 Park St, New York City, NY 10001" +205401,Google Phone,1,600,05/10/19 10:51,"190 River St, San Francisco, CA 94016" +205401,USB-C Charging Cable,1,11.95,05/10/19 10:51,"190 River St, San Francisco, CA 94016" +205402,Google Phone,1,600,05/03/19 19:37,"779 Jackson St, Portland, OR 97035" +205403,Flatscreen TV,1,300,05/01/19 14:51,"304 Adams St, Los Angeles, CA 90001" +205404,AA Batteries (4-pack),1,3.84,05/14/19 13:58,"66 Maple St, Seattle, WA 98101" +205405,AAA Batteries (4-pack),1,2.99,05/02/19 11:43,"194 Wilson St, Los Angeles, CA 90001" +205406,Google Phone,1,600,05/16/19 10:57,"251 Jackson St, Austin, TX 73301" +205407,ThinkPad Laptop,1,999.99,05/15/19 18:47,"367 14th St, Boston, MA 02215" +205408,AAA Batteries (4-pack),1,2.99,05/06/19 14:54,"688 South St, San Francisco, CA 94016" +205409,Lightning Charging Cable,1,14.95,05/14/19 20:11,"971 Maple St, Portland, OR 97035" +205410,Lightning Charging Cable,1,14.95,05/03/19 09:18,"734 Forest St, San Francisco, CA 94016" +205411,Lightning Charging Cable,1,14.95,05/13/19 12:12,"862 Madison St, Los Angeles, CA 90001" +205412,USB-C Charging Cable,1,11.95,05/30/19 10:19,"473 Park St, Los Angeles, CA 90001" +205413,USB-C Charging Cable,1,11.95,05/14/19 00:51,"92 Elm St, Portland, OR 97035" +205414,USB-C Charging Cable,1,11.95,05/07/19 19:26,"518 Chestnut St, Dallas, TX 75001" +205415,AAA Batteries (4-pack),1,2.99,05/09/19 11:27,"127 4th St, New York City, NY 10001" +205416,USB-C Charging Cable,1,11.95,05/05/19 12:05,"900 Sunset St, San Francisco, CA 94016" +205417,AAA Batteries (4-pack),2,2.99,05/04/19 14:24,"774 2nd St, Seattle, WA 98101" +205418,Bose SoundSport Headphones,1,99.99,05/21/19 14:35,"702 Lincoln St, Los Angeles, CA 90001" +205419,Lightning Charging Cable,1,14.95,05/22/19 17:55,"753 West St, Los Angeles, CA 90001" +205420,34in Ultrawide Monitor,1,379.99,05/05/19 12:06,"403 Ridge St, New York City, NY 10001" +205421,Lightning Charging Cable,1,14.95,05/09/19 04:42,"477 Spruce St, San Francisco, CA 94016" +205422,Lightning Charging Cable,1,14.95,05/23/19 13:12,"500 Cedar St, Seattle, WA 98101" +205423,Vareebadd Phone,1,400,05/09/19 12:23,"627 Spruce St, New York City, NY 10001" +205424,34in Ultrawide Monitor,1,379.99,05/11/19 08:36,"829 Dogwood St, Dallas, TX 75001" +205425,AA Batteries (4-pack),1,3.84,05/21/19 19:56,"857 8th St, San Francisco, CA 94016" +205426,Google Phone,1,600,05/13/19 12:06,"709 Hickory St, Boston, MA 02215" +205427,iPhone,1,700,05/04/19 11:38,"417 Ridge St, San Francisco, CA 94016" +205428,Bose SoundSport Headphones,1,99.99,05/13/19 11:02,"343 Madison St, Portland, OR 97035" +205429,Lightning Charging Cable,1,14.95,05/20/19 20:40,"462 Lincoln St, Boston, MA 02215" +205430,Apple Airpods Headphones,1,150,05/19/19 16:10,"533 Washington St, New York City, NY 10001" +205431,Lightning Charging Cable,1,14.95,05/26/19 13:19,"851 10th St, San Francisco, CA 94016" +205432,Bose SoundSport Headphones,1,99.99,05/25/19 14:35,"35 Meadow St, Portland, OR 97035" +205433,Wired Headphones,1,11.99,05/16/19 12:21,"191 2nd St, Seattle, WA 98101" +205434,Bose SoundSport Headphones,1,99.99,05/27/19 15:50,"545 Hickory St, Portland, OR 97035" +205435,Lightning Charging Cable,1,14.95,05/15/19 13:27,"892 Ridge St, San Francisco, CA 94016" +205436,Lightning Charging Cable,1,14.95,05/05/19 17:27,"243 Dogwood St, Seattle, WA 98101" +205437,USB-C Charging Cable,1,11.95,05/18/19 17:54,"562 14th St, Seattle, WA 98101" +205438,Apple Airpods Headphones,1,150,05/31/19 15:00,"396 7th St, San Francisco, CA 94016" +205439,Apple Airpods Headphones,1,150,05/24/19 18:56,"888 Lakeview St, Los Angeles, CA 90001" +205440,USB-C Charging Cable,1,11.95,05/16/19 17:39,"959 Lakeview St, Los Angeles, CA 90001" +205441,Bose SoundSport Headphones,1,99.99,05/01/19 17:44,"723 7th St, Portland, OR 97035" +205442,Apple Airpods Headphones,1,150,05/24/19 16:43,"30 Adams St, Portland, OR 97035" +205443,Wired Headphones,1,11.99,05/24/19 16:22,"638 Lakeview St, New York City, NY 10001" +205444,Apple Airpods Headphones,1,150,05/12/19 11:28,"710 6th St, Dallas, TX 75001" +205444,AA Batteries (4-pack),1,3.84,05/12/19 11:28,"710 6th St, Dallas, TX 75001" +205445,AA Batteries (4-pack),2,3.84,05/24/19 14:32,"344 Cedar St, Dallas, TX 75001" +205446,Apple Airpods Headphones,1,150,05/11/19 20:08,"859 Meadow St, Atlanta, GA 30301" +205447,Lightning Charging Cable,1,14.95,05/13/19 00:11,"720 1st St, Atlanta, GA 30301" +205448,Lightning Charging Cable,1,14.95,05/29/19 15:09,"557 7th St, Atlanta, GA 30301" +205449,Bose SoundSport Headphones,1,99.99,05/10/19 09:47,"919 North St, Dallas, TX 75001" +205450,20in Monitor,1,109.99,05/11/19 19:28,"625 Elm St, San Francisco, CA 94016" +205451,USB-C Charging Cable,1,11.95,05/28/19 13:59,"479 5th St, Seattle, WA 98101" +205452,27in 4K Gaming Monitor,1,389.99,05/10/19 20:07,"619 Johnson St, New York City, NY 10001" +205453,27in 4K Gaming Monitor,1,389.99,05/09/19 10:48,"514 13th St, San Francisco, CA 94016" +205454,Lightning Charging Cable,1,14.95,05/13/19 17:54,"329 Jackson St, Dallas, TX 75001" +205454,Lightning Charging Cable,1,14.95,05/13/19 17:54,"329 Jackson St, Dallas, TX 75001" +205455,AA Batteries (4-pack),2,3.84,05/05/19 17:56,"18 5th St, Los Angeles, CA 90001" +205456,ThinkPad Laptop,1,999.99,05/11/19 10:32,"253 Hickory St, San Francisco, CA 94016" +205457,27in FHD Monitor,1,149.99,05/01/19 20:15,"896 Walnut St, San Francisco, CA 94016" +205458,AAA Batteries (4-pack),1,2.99,05/07/19 20:25,"853 14th St, New York City, NY 10001" +205459,Lightning Charging Cable,1,14.95,05/30/19 02:21,"548 Meadow St, Portland, OR 97035" +205460,Bose SoundSport Headphones,1,99.99,05/25/19 19:42,"491 10th St, Austin, TX 73301" +205461,Apple Airpods Headphones,1,150,05/08/19 12:44,"260 Spruce St, Los Angeles, CA 90001" +205462,27in FHD Monitor,1,149.99,05/12/19 16:00,"284 Forest St, New York City, NY 10001" +205463,Macbook Pro Laptop,1,1700,05/29/19 17:12,"208 Dogwood St, Los Angeles, CA 90001" +205464,Wired Headphones,1,11.99,05/27/19 11:24,"221 1st St, Portland, ME 04101" +205464,Macbook Pro Laptop,1,1700,05/27/19 11:24,"221 1st St, Portland, ME 04101" +205465,AAA Batteries (4-pack),1,2.99,05/31/19 00:22,"76 Highland St, Dallas, TX 75001" +205466,ThinkPad Laptop,1,999.99,05/20/19 09:37,"571 4th St, San Francisco, CA 94016" +205467,34in Ultrawide Monitor,1,379.99,05/25/19 12:24,"128 Jefferson St, San Francisco, CA 94016" +205468,Wired Headphones,1,11.99,05/02/19 10:47,"157 Madison St, New York City, NY 10001" +205469,Flatscreen TV,1,300,05/30/19 18:27,"81 North St, New York City, NY 10001" +205470,Apple Airpods Headphones,1,150,05/02/19 11:34,"849 Spruce St, San Francisco, CA 94016" +205471,AAA Batteries (4-pack),1,2.99,05/10/19 08:54,"615 Willow St, San Francisco, CA 94016" +205472,Bose SoundSport Headphones,1,99.99,05/04/19 10:48,"741 River St, Los Angeles, CA 90001" +205473,Vareebadd Phone,1,400,05/25/19 22:02,"729 7th St, Los Angeles, CA 90001" +205473,USB-C Charging Cable,1,11.95,05/25/19 22:02,"729 7th St, Los Angeles, CA 90001" +205474,USB-C Charging Cable,1,11.95,05/16/19 13:53,"131 5th St, Atlanta, GA 30301" +205475,Wired Headphones,1,11.99,05/30/19 01:07,"895 9th St, New York City, NY 10001" +205476,Wired Headphones,1,11.99,05/29/19 18:13,"42 6th St, San Francisco, CA 94016" +205477,20in Monitor,1,109.99,05/10/19 11:38,"108 Cedar St, Atlanta, GA 30301" +205478,Bose SoundSport Headphones,1,99.99,05/15/19 18:36,"39 Park St, New York City, NY 10001" +205479,iPhone,1,700,05/30/19 16:52,"50 Spruce St, San Francisco, CA 94016" +205480,USB-C Charging Cable,1,11.95,05/26/19 13:33,"194 Center St, Austin, TX 73301" +205481,34in Ultrawide Monitor,1,379.99,05/24/19 21:05,"642 Forest St, San Francisco, CA 94016" +205482,AA Batteries (4-pack),1,3.84,05/10/19 11:19,"295 2nd St, Los Angeles, CA 90001" +205483,Wired Headphones,2,11.99,05/30/19 12:54,"265 8th St, San Francisco, CA 94016" +205483,34in Ultrawide Monitor,1,379.99,05/30/19 12:54,"265 8th St, San Francisco, CA 94016" +205484,Apple Airpods Headphones,1,150,05/13/19 15:26,"445 Lakeview St, Portland, OR 97035" +205485,ThinkPad Laptop,1,999.99,05/07/19 22:34,"718 Highland St, Los Angeles, CA 90001" +205486,AA Batteries (4-pack),3,3.84,05/14/19 11:46,"704 Center St, Seattle, WA 98101" +205487,Wired Headphones,1,11.99,05/14/19 19:19,"227 Lincoln St, Atlanta, GA 30301" +205488,Apple Airpods Headphones,1,150,05/21/19 14:29,"977 Washington St, Austin, TX 73301" +205489,Vareebadd Phone,1,400,05/12/19 19:26,"549 Jefferson St, Los Angeles, CA 90001" +205490,iPhone,1,700,05/14/19 08:30,"398 Dogwood St, Los Angeles, CA 90001" +205491,AA Batteries (4-pack),3,3.84,05/05/19 23:13,"70 Sunset St, Austin, TX 73301" +205492,iPhone,1,700,05/22/19 04:33,"527 Spruce St, Atlanta, GA 30301" +205493,Google Phone,1,600,05/18/19 11:21,"307 2nd St, Los Angeles, CA 90001" +205494,AAA Batteries (4-pack),1,2.99,05/17/19 19:54,"6 1st St, New York City, NY 10001" +205495,AA Batteries (4-pack),1,3.84,05/09/19 20:01,"80 6th St, Los Angeles, CA 90001" +205496,Google Phone,1,600,05/04/19 16:58,"701 Center St, Boston, MA 02215" +205497,Apple Airpods Headphones,1,150,05/18/19 05:58,"661 7th St, San Francisco, CA 94016" +205498,34in Ultrawide Monitor,1,379.99,05/15/19 14:22,"482 Maple St, San Francisco, CA 94016" +205499,AAA Batteries (4-pack),1,2.99,05/02/19 09:02,"382 Dogwood St, Dallas, TX 75001" +205500,iPhone,1,700,05/19/19 12:37,"673 8th St, San Francisco, CA 94016" +205501,iPhone,1,700,05/09/19 13:52,"705 Johnson St, Los Angeles, CA 90001" +205502,AA Batteries (4-pack),1,3.84,05/29/19 14:44,"524 12th St, Los Angeles, CA 90001" +205503,Wired Headphones,1,11.99,05/28/19 20:42,"449 12th St, New York City, NY 10001" +205504,Apple Airpods Headphones,1,150,05/30/19 22:27,"964 11th St, Los Angeles, CA 90001" +205505,AAA Batteries (4-pack),2,2.99,05/29/19 19:29,"109 Forest St, Boston, MA 02215" +205506,AAA Batteries (4-pack),2,2.99,05/20/19 17:21,"572 Cedar St, New York City, NY 10001" +205507,Lightning Charging Cable,1,14.95,05/18/19 09:30,"846 Lake St, Seattle, WA 98101" +205508,AA Batteries (4-pack),1,3.84,05/15/19 19:07,"893 River St, San Francisco, CA 94016" +205509,ThinkPad Laptop,1,999.99,05/21/19 13:52,"939 Cherry St, Dallas, TX 75001" +205510,AA Batteries (4-pack),1,3.84,05/01/19 21:08,"854 Maple St, Los Angeles, CA 90001" +205511,USB-C Charging Cable,2,11.95,05/10/19 23:46,"7 10th St, Atlanta, GA 30301" +205512,AA Batteries (4-pack),1,3.84,05/22/19 09:22,"343 Pine St, New York City, NY 10001" +205513,AAA Batteries (4-pack),1,2.99,05/09/19 07:56,"611 10th St, San Francisco, CA 94016" +205514,27in 4K Gaming Monitor,1,389.99,05/28/19 05:26,"908 13th St, San Francisco, CA 94016" +205515,27in 4K Gaming Monitor,1,389.99,05/07/19 15:52,"219 Park St, Los Angeles, CA 90001" +205516,Macbook Pro Laptop,1,1700,05/20/19 02:43,"955 Ridge St, Austin, TX 73301" +205517,Macbook Pro Laptop,1,1700,05/24/19 17:37,"533 Maple St, Boston, MA 02215" +205518,Lightning Charging Cable,1,14.95,05/19/19 21:41,"258 Lincoln St, Atlanta, GA 30301" +205519,Flatscreen TV,1,300,05/29/19 05:41,"42 4th St, San Francisco, CA 94016" +205520,Wired Headphones,1,11.99,05/21/19 17:19,"98 Elm St, Los Angeles, CA 90001" +205521,AA Batteries (4-pack),1,3.84,05/23/19 16:21,"250 Cherry St, Austin, TX 73301" +205522,AA Batteries (4-pack),1,3.84,05/10/19 18:15,"388 Spruce St, Atlanta, GA 30301" +205523,Lightning Charging Cable,1,14.95,05/02/19 15:02,"545 Johnson St, Los Angeles, CA 90001" +205524,Bose SoundSport Headphones,1,99.99,05/07/19 19:16,"794 Sunset St, Seattle, WA 98101" +205525,27in 4K Gaming Monitor,1,389.99,05/23/19 17:27,"381 Chestnut St, Atlanta, GA 30301" +205526,AAA Batteries (4-pack),1,2.99,05/19/19 22:49,"705 Hill St, New York City, NY 10001" +205527,USB-C Charging Cable,1,11.95,05/20/19 19:11,"915 South St, San Francisco, CA 94016" +,,,,, +205528,27in 4K Gaming Monitor,1,389.99,05/26/19 15:23,"734 Hickory St, Dallas, TX 75001" +205528,USB-C Charging Cable,1,11.95,05/26/19 15:23,"734 Hickory St, Dallas, TX 75001" +205529,AAA Batteries (4-pack),1,2.99,05/13/19 12:27,"294 9th St, New York City, NY 10001" +205530,Wired Headphones,2,11.99,05/15/19 12:31,"691 7th St, New York City, NY 10001" +205531,Google Phone,1,600,05/13/19 22:04,"194 6th St, New York City, NY 10001" +205531,USB-C Charging Cable,1,11.95,05/13/19 22:04,"194 6th St, New York City, NY 10001" +205532,Bose SoundSport Headphones,1,99.99,05/20/19 14:17,"864 Pine St, New York City, NY 10001" +205533,34in Ultrawide Monitor,1,379.99,05/25/19 22:02,"580 Chestnut St, Seattle, WA 98101" +205534,Lightning Charging Cable,1,14.95,05/13/19 15:28,"18 4th St, Los Angeles, CA 90001" +205535,USB-C Charging Cable,1,11.95,05/19/19 20:08,"502 Ridge St, Boston, MA 02215" +205536,AAA Batteries (4-pack),1,2.99,05/16/19 20:03,"954 Johnson St, Los Angeles, CA 90001" +205537,20in Monitor,1,109.99,05/30/19 23:58,"171 Hill St, Los Angeles, CA 90001" +205538,Lightning Charging Cable,1,14.95,05/21/19 11:28,"803 Adams St, Dallas, TX 75001" +205539,AAA Batteries (4-pack),1,2.99,05/18/19 17:28,"527 Johnson St, Portland, OR 97035" +205540,Wired Headphones,1,11.99,05/22/19 14:36,"647 Elm St, Dallas, TX 75001" +205541,USB-C Charging Cable,1,11.95,05/02/19 12:37,"646 Spruce St, Los Angeles, CA 90001" +205542,27in 4K Gaming Monitor,1,389.99,05/16/19 10:24,"33 Center St, Los Angeles, CA 90001" +205543,AA Batteries (4-pack),1,3.84,05/20/19 20:44,"592 Adams St, Seattle, WA 98101" +205544,Apple Airpods Headphones,1,150,05/23/19 11:36,"394 Wilson St, Boston, MA 02215" +205545,Wired Headphones,1,11.99,05/28/19 22:53,"485 Meadow St, Atlanta, GA 30301" +205546,Lightning Charging Cable,1,14.95,05/23/19 09:41,"828 Madison St, Los Angeles, CA 90001" +205547,34in Ultrawide Monitor,1,379.99,05/31/19 11:23,"567 2nd St, Los Angeles, CA 90001" +205548,27in FHD Monitor,1,149.99,05/27/19 20:07,"510 Church St, San Francisco, CA 94016" +205549,Wired Headphones,1,11.99,05/22/19 10:48,"106 Jefferson St, Atlanta, GA 30301" +205550,AAA Batteries (4-pack),2,2.99,05/28/19 18:30,"480 Meadow St, Los Angeles, CA 90001" +205551,USB-C Charging Cable,1,11.95,05/11/19 15:07,"847 West St, Los Angeles, CA 90001" +205552,AAA Batteries (4-pack),2,2.99,05/02/19 14:05,"592 North St, Dallas, TX 75001" +205553,ThinkPad Laptop,1,999.99,05/26/19 18:36,"49 1st St, Los Angeles, CA 90001" +205554,34in Ultrawide Monitor,1,379.99,05/04/19 08:06,"409 8th St, Los Angeles, CA 90001" +205555,AA Batteries (4-pack),1,3.84,05/16/19 19:36,"726 Cedar St, Boston, MA 02215" +205556,34in Ultrawide Monitor,1,379.99,05/07/19 19:26,"481 10th St, Dallas, TX 75001" +205557,AAA Batteries (4-pack),1,2.99,05/14/19 13:07,"399 Sunset St, Dallas, TX 75001" +205557,AA Batteries (4-pack),1,3.84,05/14/19 13:07,"399 Sunset St, Dallas, TX 75001" +205558,Apple Airpods Headphones,1,150,05/26/19 07:58,"474 Jackson St, Dallas, TX 75001" +205559,Lightning Charging Cable,1,14.95,05/07/19 21:26,"772 Cedar St, Atlanta, GA 30301" +205560,Lightning Charging Cable,1,14.95,05/04/19 20:57,"385 2nd St, San Francisco, CA 94016" +205561,Lightning Charging Cable,1,14.95,05/06/19 23:04,"940 Wilson St, Los Angeles, CA 90001" +205562,Macbook Pro Laptop,1,1700,05/31/19 12:26,"681 Park St, New York City, NY 10001" +205563,Macbook Pro Laptop,1,1700,05/01/19 16:55,"490 Meadow St, New York City, NY 10001" +205564,AAA Batteries (4-pack),2,2.99,05/29/19 18:35,"948 Cherry St, Portland, OR 97035" +205565,34in Ultrawide Monitor,1,379.99,05/30/19 06:14,"6 Lake St, Boston, MA 02215" +205566,USB-C Charging Cable,1,11.95,05/03/19 11:06,"647 Dogwood St, Dallas, TX 75001" +205567,AA Batteries (4-pack),2,3.84,05/04/19 12:28,"3 4th St, New York City, NY 10001" +205568,Macbook Pro Laptop,1,1700,05/23/19 18:53,"487 Walnut St, Atlanta, GA 30301" +205569,USB-C Charging Cable,1,11.95,05/10/19 12:39,"345 Dogwood St, San Francisco, CA 94016" +205570,Bose SoundSport Headphones,1,99.99,05/05/19 23:47,"961 4th St, San Francisco, CA 94016" +205571,Apple Airpods Headphones,1,150,05/30/19 14:16,"614 5th St, Dallas, TX 75001" +205572,Wired Headphones,1,11.99,05/31/19 12:37,"585 Meadow St, New York City, NY 10001" +205573,Lightning Charging Cable,1,14.95,05/19/19 19:41,"552 5th St, Los Angeles, CA 90001" +205574,Google Phone,1,600,05/21/19 23:46,"119 Spruce St, Portland, OR 97035" +205574,USB-C Charging Cable,1,11.95,05/21/19 23:46,"119 Spruce St, Portland, OR 97035" +205574,USB-C Charging Cable,2,11.95,05/21/19 23:46,"119 Spruce St, Portland, OR 97035" +205575,Wired Headphones,1,11.99,05/03/19 19:33,"928 Jefferson St, San Francisco, CA 94016" +205576,20in Monitor,1,109.99,05/05/19 19:20,"926 14th St, San Francisco, CA 94016" +205577,Apple Airpods Headphones,1,150,05/31/19 22:53,"701 Center St, Portland, OR 97035" +205578,Apple Airpods Headphones,1,150,05/11/19 15:50,"559 Lake St, San Francisco, CA 94016" +205579,Lightning Charging Cable,1,14.95,05/14/19 21:51,"653 Jefferson St, Seattle, WA 98101" +205580,iPhone,1,700,05/02/19 21:16,"219 Walnut St, San Francisco, CA 94016" +205581,Google Phone,1,600,05/29/19 15:45,"519 2nd St, Dallas, TX 75001" +205582,USB-C Charging Cable,1,11.95,05/02/19 20:29,"741 Lincoln St, Los Angeles, CA 90001" +205583,iPhone,1,700,05/19/19 20:59,"670 Church St, Dallas, TX 75001" +205584,iPhone,1,700,05/28/19 13:32,"366 Johnson St, Atlanta, GA 30301" +205585,Bose SoundSport Headphones,1,99.99,05/13/19 10:19,"253 Church St, Seattle, WA 98101" +205586,AAA Batteries (4-pack),1,2.99,05/24/19 21:17,"486 Center St, Los Angeles, CA 90001" +205587,AA Batteries (4-pack),2,3.84,05/25/19 08:51,"871 Lake St, Seattle, WA 98101" +205588,USB-C Charging Cable,1,11.95,05/06/19 19:28,"505 Walnut St, San Francisco, CA 94016" +205589,AAA Batteries (4-pack),1,2.99,05/10/19 08:24,"847 Meadow St, New York City, NY 10001" +205590,Lightning Charging Cable,1,14.95,05/02/19 15:26,"463 Lake St, Atlanta, GA 30301" +205591,Lightning Charging Cable,1,14.95,05/14/19 18:25,"785 6th St, San Francisco, CA 94016" +205592,AAA Batteries (4-pack),1,2.99,05/15/19 20:39,"979 6th St, Atlanta, GA 30301" +205593,34in Ultrawide Monitor,1,379.99,05/18/19 08:43,"440 Main St, Seattle, WA 98101" +205594,Bose SoundSport Headphones,1,99.99,05/09/19 17:53,"319 Center St, San Francisco, CA 94016" +205595,iPhone,1,700,05/11/19 19:25,"998 12th St, Los Angeles, CA 90001" +205596,Apple Airpods Headphones,1,150,05/26/19 17:13,"818 8th St, Los Angeles, CA 90001" +205597,AA Batteries (4-pack),1,3.84,05/29/19 14:35,"708 Jefferson St, San Francisco, CA 94016" +205598,AAA Batteries (4-pack),1,2.99,05/12/19 15:43,"570 Washington St, San Francisco, CA 94016" +205599,Wired Headphones,1,11.99,05/27/19 16:33,"993 Washington St, Seattle, WA 98101" +205600,Apple Airpods Headphones,1,150,05/13/19 19:33,"66 Ridge St, San Francisco, CA 94016" +205601,AA Batteries (4-pack),1,3.84,05/01/19 22:37,"76 2nd St, New York City, NY 10001" +205602,LG Dryer,1,600.0,05/04/19 13:08,"435 Adams St, San Francisco, CA 94016" +205602,Apple Airpods Headphones,1,150,05/04/19 13:08,"435 Adams St, San Francisco, CA 94016" +205603,Lightning Charging Cable,1,14.95,05/11/19 11:15,"992 11th St, Seattle, WA 98101" +205604,ThinkPad Laptop,1,999.99,05/14/19 19:04,"447 Jackson St, Los Angeles, CA 90001" +205605,Bose SoundSport Headphones,1,99.99,05/13/19 15:57,"207 Cedar St, Los Angeles, CA 90001" +205606,AA Batteries (4-pack),1,3.84,05/29/19 19:05,"911 Elm St, Los Angeles, CA 90001" +205607,Macbook Pro Laptop,1,1700,05/20/19 20:17,"969 Pine St, Boston, MA 02215" +205608,Apple Airpods Headphones,1,150,05/31/19 11:57,"435 Jefferson St, San Francisco, CA 94016" +205609,AAA Batteries (4-pack),2,2.99,05/24/19 15:38,"163 Wilson St, Boston, MA 02215" +205610,Wired Headphones,1,11.99,05/15/19 19:17,"112 Lakeview St, New York City, NY 10001" +205611,AA Batteries (4-pack),2,3.84,05/03/19 12:36,"500 Cedar St, Seattle, WA 98101" +205612,Wired Headphones,1,11.99,05/02/19 12:29,"865 Dogwood St, New York City, NY 10001" +205613,34in Ultrawide Monitor,1,379.99,05/30/19 14:57,"642 1st St, Boston, MA 02215" +205614,AAA Batteries (4-pack),4,2.99,05/28/19 18:19,"376 Adams St, San Francisco, CA 94016" +205615,Flatscreen TV,1,300,05/29/19 13:58,"479 5th St, San Francisco, CA 94016" +205616,Wired Headphones,2,11.99,05/07/19 12:27,"739 11th St, Los Angeles, CA 90001" +205617,Wired Headphones,2,11.99,05/26/19 17:46,"838 Park St, San Francisco, CA 94016" +205618,Wired Headphones,1,11.99,05/18/19 21:36,"778 Hickory St, Portland, OR 97035" +205619,Bose SoundSport Headphones,1,99.99,05/15/19 21:39,"588 14th St, Los Angeles, CA 90001" +205620,LG Washing Machine,1,600.0,05/11/19 20:14,"3 South St, Boston, MA 02215" +205621,Wired Headphones,1,11.99,05/17/19 22:06,"940 Park St, Dallas, TX 75001" +205622,AA Batteries (4-pack),1,3.84,05/04/19 07:17,"791 6th St, Boston, MA 02215" +205623,Bose SoundSport Headphones,1,99.99,05/06/19 09:13,"661 River St, San Francisco, CA 94016" +205624,20in Monitor,1,109.99,05/02/19 10:50,"260 1st St, Seattle, WA 98101" +205625,iPhone,1,700,05/22/19 16:17,"756 Washington St, Boston, MA 02215" +205626,Bose SoundSport Headphones,1,99.99,05/22/19 11:36,"299 Dogwood St, Seattle, WA 98101" +205627,Apple Airpods Headphones,1,150,05/14/19 01:10,"612 10th St, Atlanta, GA 30301" +205628,Lightning Charging Cable,1,14.95,05/23/19 07:13,"554 4th St, San Francisco, CA 94016" +205629,Bose SoundSport Headphones,1,99.99,05/15/19 21:28,"526 Highland St, Austin, TX 73301" +205630,AA Batteries (4-pack),1,3.84,05/22/19 18:31,"581 Church St, Dallas, TX 75001" +205631,Wired Headphones,1,11.99,05/18/19 11:20,"828 2nd St, New York City, NY 10001" +205632,Lightning Charging Cable,1,14.95,05/08/19 20:48,"179 14th St, New York City, NY 10001" +205633,Wired Headphones,1,11.99,05/21/19 23:26,"15 Lakeview St, Los Angeles, CA 90001" +205634,Lightning Charging Cable,1,14.95,05/01/19 08:52,"708 Dogwood St, San Francisco, CA 94016" +205635,AAA Batteries (4-pack),1,2.99,05/30/19 21:28,"954 Pine St, Portland, OR 97035" +205636,Wired Headphones,1,11.99,05/07/19 13:05,"266 Center St, San Francisco, CA 94016" +205637,27in 4K Gaming Monitor,1,389.99,05/19/19 16:49,"941 Lincoln St, San Francisco, CA 94016" +205638,iPhone,1,700,05/04/19 19:50,"122 13th St, San Francisco, CA 94016" +205639,AA Batteries (4-pack),1,3.84,05/06/19 23:21,"559 Forest St, San Francisco, CA 94016" +205640,USB-C Charging Cable,1,11.95,05/09/19 11:37,"454 13th St, New York City, NY 10001" +205641,Lightning Charging Cable,1,14.95,05/02/19 23:22,"200 9th St, Los Angeles, CA 90001" +205642,Wired Headphones,1,11.99,05/13/19 10:33,"299 Church St, Atlanta, GA 30301" +205643,Lightning Charging Cable,1,14.95,05/07/19 18:53,"678 Jefferson St, San Francisco, CA 94016" +205644,Wired Headphones,1,11.99,05/04/19 12:08,"690 Elm St, Los Angeles, CA 90001" +205645,AA Batteries (4-pack),1,3.84,05/14/19 14:10,"175 Spruce St, Boston, MA 02215" +205646,AA Batteries (4-pack),1,3.84,05/06/19 19:52,"491 4th St, Portland, ME 04101" +205647,USB-C Charging Cable,1,11.95,05/16/19 01:40,"209 1st St, San Francisco, CA 94016" +205648,iPhone,1,700,05/09/19 19:47,"459 Jackson St, New York City, NY 10001" +205648,Apple Airpods Headphones,1,150,05/09/19 19:47,"459 Jackson St, New York City, NY 10001" +205649,27in FHD Monitor,1,149.99,05/25/19 20:50,"931 Maple St, Seattle, WA 98101" +205650,Wired Headphones,1,11.99,05/01/19 18:53,"363 Lake St, Portland, ME 04101" +205651,AAA Batteries (4-pack),1,2.99,05/02/19 14:49,"386 Johnson St, Seattle, WA 98101" +205652,Wired Headphones,1,11.99,05/08/19 22:17,"351 Walnut St, Los Angeles, CA 90001" +205653,USB-C Charging Cable,1,11.95,05/29/19 23:31,"975 Sunset St, Atlanta, GA 30301" +205654,USB-C Charging Cable,1,11.95,05/18/19 20:43,"875 Cedar St, Dallas, TX 75001" +205655,34in Ultrawide Monitor,1,379.99,05/11/19 11:49,"695 10th St, Portland, OR 97035" +205656,ThinkPad Laptop,1,999.99,05/14/19 14:54,"133 Forest St, Portland, ME 04101" +205657,Apple Airpods Headphones,1,150,05/02/19 18:47,"617 6th St, Boston, MA 02215" +205658,Wired Headphones,1,11.99,05/28/19 20:21,"619 West St, San Francisco, CA 94016" +205659,34in Ultrawide Monitor,1,379.99,05/31/19 19:52,"500 Spruce St, Los Angeles, CA 90001" +205660,Lightning Charging Cable,1,14.95,05/09/19 20:37,"380 Hill St, Seattle, WA 98101" +205660,USB-C Charging Cable,1,11.95,05/09/19 20:37,"380 Hill St, Seattle, WA 98101" +205661,Lightning Charging Cable,1,14.95,05/30/19 10:41,"518 14th St, Los Angeles, CA 90001" +205662,20in Monitor,1,109.99,05/06/19 20:04,"48 7th St, New York City, NY 10001" +205663,AA Batteries (4-pack),1,3.84,05/23/19 13:15,"24 10th St, Seattle, WA 98101" +205664,USB-C Charging Cable,1,11.95,05/27/19 09:35,"488 River St, Austin, TX 73301" +205665,AAA Batteries (4-pack),1,2.99,05/22/19 20:13,"546 5th St, Dallas, TX 75001" +205666,34in Ultrawide Monitor,1,379.99,05/13/19 16:31,"719 Elm St, San Francisco, CA 94016" +205667,Lightning Charging Cable,1,14.95,05/12/19 20:41,"152 Spruce St, San Francisco, CA 94016" +205668,Bose SoundSport Headphones,1,99.99,05/07/19 17:52,"990 5th St, San Francisco, CA 94016" +205669,AA Batteries (4-pack),1,3.84,05/02/19 20:52,"785 West St, Seattle, WA 98101" +205670,34in Ultrawide Monitor,1,379.99,05/28/19 09:28,"659 Main St, San Francisco, CA 94016" +205671,Wired Headphones,1,11.99,05/28/19 13:50,"364 Main St, San Francisco, CA 94016" +205672,Lightning Charging Cable,1,14.95,05/23/19 09:20,"477 Washington St, Boston, MA 02215" +205673,Lightning Charging Cable,1,14.95,05/28/19 15:19,"999 Sunset St, San Francisco, CA 94016" +205674,Bose SoundSport Headphones,1,99.99,05/31/19 17:17,"761 Sunset St, San Francisco, CA 94016" +205675,Bose SoundSport Headphones,1,99.99,05/07/19 07:47,"838 Spruce St, San Francisco, CA 94016" +205676,Lightning Charging Cable,1,14.95,05/22/19 20:58,"509 Adams St, Portland, OR 97035" +205677,Wired Headphones,1,11.99,05/31/19 17:48,"765 Madison St, San Francisco, CA 94016" +205678,USB-C Charging Cable,1,11.95,05/16/19 20:31,"344 Spruce St, Los Angeles, CA 90001" +205679,27in FHD Monitor,1,149.99,05/21/19 13:29,"897 Walnut St, Portland, OR 97035" +205680,Lightning Charging Cable,1,14.95,05/01/19 20:18,"125 2nd St, Los Angeles, CA 90001" +205681,iPhone,1,700,05/15/19 08:54,"119 Chestnut St, New York City, NY 10001" +205681,Wired Headphones,1,11.99,05/15/19 08:54,"119 Chestnut St, New York City, NY 10001" +205682,Apple Airpods Headphones,1,150,05/06/19 21:33,"527 Adams St, San Francisco, CA 94016" +205683,Bose SoundSport Headphones,1,99.99,05/07/19 23:24,"729 Highland St, San Francisco, CA 94016" +205684,AAA Batteries (4-pack),7,2.99,05/17/19 13:51,"282 Forest St, San Francisco, CA 94016" +205685,AAA Batteries (4-pack),1,2.99,05/17/19 12:03,"615 Lincoln St, Portland, OR 97035" +205686,AA Batteries (4-pack),2,3.84,05/29/19 21:14,"628 14th St, Seattle, WA 98101" +205687,Apple Airpods Headphones,1,150,05/19/19 23:12,"663 2nd St, New York City, NY 10001" +205688,Lightning Charging Cable,1,14.95,05/23/19 20:59,"447 Center St, Los Angeles, CA 90001" +205689,AAA Batteries (4-pack),1,2.99,05/14/19 11:54,"84 Elm St, San Francisco, CA 94016" +205690,AAA Batteries (4-pack),1,2.99,05/31/19 10:46,"407 North St, Portland, OR 97035" +205691,Apple Airpods Headphones,1,150,05/12/19 17:57,"184 South St, New York City, NY 10001" +205692,Apple Airpods Headphones,1,150,05/16/19 18:34,"880 7th St, San Francisco, CA 94016" +205693,Vareebadd Phone,1,400,05/04/19 11:54,"856 Adams St, New York City, NY 10001" +205694,27in FHD Monitor,1,149.99,05/15/19 19:42,"843 Adams St, Atlanta, GA 30301" +205695,Apple Airpods Headphones,1,150,05/24/19 17:21,"995 Pine St, Los Angeles, CA 90001" +205696,AA Batteries (4-pack),1,3.84,05/05/19 19:11,"985 Dogwood St, Boston, MA 02215" +205697,34in Ultrawide Monitor,1,379.99,05/28/19 16:43,"135 Johnson St, Los Angeles, CA 90001" +205698,Apple Airpods Headphones,1,150,05/19/19 16:26,"39 Willow St, San Francisco, CA 94016" +205699,Bose SoundSport Headphones,1,99.99,05/29/19 07:17,"459 Maple St, Los Angeles, CA 90001" +205700,Wired Headphones,1,11.99,05/13/19 20:30,"770 4th St, San Francisco, CA 94016" +205701,Apple Airpods Headphones,1,150,05/22/19 19:06,"419 River St, Boston, MA 02215" +205702,Vareebadd Phone,1,400,05/03/19 14:44,"749 Ridge St, Boston, MA 02215" +205703,20in Monitor,1,109.99,05/21/19 05:53,"935 North St, New York City, NY 10001" +205704,USB-C Charging Cable,1,11.95,05/18/19 19:09,"264 13th St, New York City, NY 10001" +205705,AAA Batteries (4-pack),1,2.99,05/27/19 10:47,"561 Meadow St, Portland, OR 97035" +205706,Wired Headphones,1,11.99,05/02/19 15:34,"287 Cherry St, San Francisco, CA 94016" +205707,AA Batteries (4-pack),2,3.84,05/18/19 18:22,"548 Highland St, New York City, NY 10001" +205708,iPhone,1,700,05/15/19 16:35,"222 Willow St, Los Angeles, CA 90001" +205709,AAA Batteries (4-pack),4,2.99,05/04/19 13:46,"576 Hickory St, Seattle, WA 98101" +205710,Bose SoundSport Headphones,1,99.99,05/15/19 19:30,"947 Johnson St, Portland, OR 97035" +205711,Flatscreen TV,1,300,05/22/19 20:18,"315 Johnson St, San Francisco, CA 94016" +205712,Macbook Pro Laptop,1,1700,05/22/19 23:14,"924 9th St, New York City, NY 10001" +205713,AA Batteries (4-pack),1,3.84,05/31/19 16:49,"746 Sunset St, San Francisco, CA 94016" +,,,,, +205714,Apple Airpods Headphones,1,150,05/13/19 16:04,"468 13th St, Atlanta, GA 30301" +205715,USB-C Charging Cable,1,11.95,05/10/19 20:16,"741 14th St, New York City, NY 10001" +205716,Flatscreen TV,1,300,05/12/19 09:44,"165 Hill St, Portland, OR 97035" +205717,27in FHD Monitor,1,149.99,05/01/19 18:42,"592 Chestnut St, San Francisco, CA 94016" +205718,iPhone,1,700,05/08/19 08:29,"646 1st St, New York City, NY 10001" +205719,27in FHD Monitor,1,149.99,05/20/19 16:27,"265 Hill St, New York City, NY 10001" +205720,20in Monitor,1,109.99,05/21/19 18:42,"713 Willow St, San Francisco, CA 94016" +205720,AAA Batteries (4-pack),2,2.99,05/21/19 18:42,"713 Willow St, San Francisco, CA 94016" +205721,Apple Airpods Headphones,1,150,05/08/19 14:48,"117 11th St, New York City, NY 10001" +205722,AAA Batteries (4-pack),1,2.99,05/28/19 11:07,"56 Lincoln St, Dallas, TX 75001" +205723,AA Batteries (4-pack),1,3.84,05/16/19 16:35,"730 Johnson St, Boston, MA 02215" +205724,USB-C Charging Cable,1,11.95,05/28/19 09:12,"155 5th St, San Francisco, CA 94016" +205725,Lightning Charging Cable,1,14.95,05/12/19 11:47,"302 13th St, Atlanta, GA 30301" +205726,AAA Batteries (4-pack),1,2.99,05/04/19 14:44,"908 Park St, San Francisco, CA 94016" +205727,27in 4K Gaming Monitor,1,389.99,05/20/19 15:34,"234 14th St, New York City, NY 10001" +205728,Wired Headphones,1,11.99,05/29/19 19:49,"45 Lincoln St, Boston, MA 02215" +205729,Lightning Charging Cable,2,14.95,05/11/19 20:23,"210 Spruce St, Boston, MA 02215" +205730,USB-C Charging Cable,1,11.95,05/11/19 12:31,"397 Cherry St, Los Angeles, CA 90001" +205731,Apple Airpods Headphones,1,150,05/20/19 22:21,"783 Washington St, Dallas, TX 75001" +205732,USB-C Charging Cable,2,11.95,05/13/19 20:00,"679 Dogwood St, San Francisco, CA 94016" +205733,AA Batteries (4-pack),2,3.84,05/02/19 02:15,"844 Cherry St, Atlanta, GA 30301" +205734,34in Ultrawide Monitor,1,379.99,05/14/19 20:40,"559 Hickory St, Dallas, TX 75001" +205735,Wired Headphones,1,11.99,05/11/19 13:42,"19 Lincoln St, New York City, NY 10001" +205736,20in Monitor,1,109.99,05/28/19 08:01,"466 Hill St, New York City, NY 10001" +205737,Wired Headphones,1,11.99,05/02/19 21:54,"405 Walnut St, San Francisco, CA 94016" +205738,USB-C Charging Cable,1,11.95,05/27/19 13:22,"774 Lakeview St, San Francisco, CA 94016" +205739,Lightning Charging Cable,1,14.95,05/13/19 23:25,"666 Lake St, Portland, OR 97035" +205739,AA Batteries (4-pack),5,3.84,05/13/19 23:25,"666 Lake St, Portland, OR 97035" +205740,Wired Headphones,1,11.99,05/30/19 13:55,"549 11th St, New York City, NY 10001" +205741,AAA Batteries (4-pack),3,2.99,05/28/19 09:42,"594 Jackson St, San Francisco, CA 94016" +205742,34in Ultrawide Monitor,1,379.99,05/01/19 10:04,"49 River St, Los Angeles, CA 90001" +205742,USB-C Charging Cable,1,11.95,05/01/19 10:04,"49 River St, Los Angeles, CA 90001" +205743,iPhone,1,700,05/07/19 19:35,"739 11th St, Boston, MA 02215" +205744,Lightning Charging Cable,1,14.95,05/22/19 20:29,"545 Washington St, Los Angeles, CA 90001" +205745,USB-C Charging Cable,1,11.95,05/20/19 22:19,"533 1st St, Los Angeles, CA 90001" +205746,Flatscreen TV,1,300,05/23/19 08:16,"445 Dogwood St, Atlanta, GA 30301" +205747,Lightning Charging Cable,1,14.95,05/21/19 13:44,"989 6th St, San Francisco, CA 94016" +205748,27in FHD Monitor,1,149.99,05/10/19 20:08,"155 Dogwood St, Boston, MA 02215" +205749,USB-C Charging Cable,1,11.95,05/15/19 17:19,"293 Meadow St, Los Angeles, CA 90001" +205750,20in Monitor,1,109.99,05/21/19 22:03,"676 Lincoln St, New York City, NY 10001" +205751,Vareebadd Phone,1,400,05/28/19 23:55,"435 Park St, Los Angeles, CA 90001" +205752,AAA Batteries (4-pack),2,2.99,05/07/19 10:55,"851 12th St, New York City, NY 10001" +205753,AA Batteries (4-pack),1,3.84,05/18/19 08:28,"227 Park St, Los Angeles, CA 90001" +205754,Flatscreen TV,1,300,05/18/19 00:07,"308 Maple St, Boston, MA 02215" +205755,Bose SoundSport Headphones,1,99.99,05/27/19 16:25,"727 Ridge St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +205756,Bose SoundSport Headphones,1,99.99,05/25/19 20:05,"299 5th St, Dallas, TX 75001" +205757,AA Batteries (4-pack),2,3.84,05/25/19 19:52,"693 Maple St, Atlanta, GA 30301" +205758,Bose SoundSport Headphones,1,99.99,05/10/19 17:46,"521 Jackson St, Portland, OR 97035" +205759,34in Ultrawide Monitor,1,379.99,05/10/19 11:57,"908 Center St, Atlanta, GA 30301" +205760,Apple Airpods Headphones,1,150,05/28/19 10:06,"120 Jefferson St, New York City, NY 10001" +205761,Google Phone,1,600,05/03/19 09:16,"86 Lincoln St, New York City, NY 10001" +205762,AAA Batteries (4-pack),1,2.99,05/28/19 09:17,"3 10th St, San Francisco, CA 94016" +205763,AA Batteries (4-pack),2,3.84,05/25/19 14:25,"764 7th St, San Francisco, CA 94016" +205764,USB-C Charging Cable,1,11.95,05/09/19 13:02,"98 Adams St, San Francisco, CA 94016" +205765,AAA Batteries (4-pack),1,2.99,05/30/19 13:39,"182 Lake St, Austin, TX 73301" +205766,iPhone,1,700,05/20/19 14:27,"634 8th St, New York City, NY 10001" +205766,Lightning Charging Cable,1,14.95,05/20/19 14:27,"634 8th St, New York City, NY 10001" +205767,iPhone,1,700,05/01/19 15:17,"607 Cedar St, San Francisco, CA 94016" +205768,Google Phone,1,600,05/26/19 13:24,"281 Washington St, Portland, OR 97035" +205768,USB-C Charging Cable,1,11.95,05/26/19 13:24,"281 Washington St, Portland, OR 97035" +205768,Bose SoundSport Headphones,1,99.99,05/26/19 13:24,"281 Washington St, Portland, OR 97035" +205769,34in Ultrawide Monitor,1,379.99,05/06/19 14:50,"528 4th St, San Francisco, CA 94016" +205770,AA Batteries (4-pack),1,3.84,05/02/19 14:48,"872 Willow St, Los Angeles, CA 90001" +205771,AA Batteries (4-pack),1,3.84,05/08/19 11:51,"32 Park St, Boston, MA 02215" +205772,27in 4K Gaming Monitor,1,389.99,05/22/19 12:04,"190 Meadow St, Dallas, TX 75001" +205773,20in Monitor,1,109.99,05/06/19 21:19,"499 Madison St, New York City, NY 10001" +205774,AAA Batteries (4-pack),3,2.99,05/07/19 17:46,"993 13th St, San Francisco, CA 94016" +205775,27in 4K Gaming Monitor,1,389.99,05/19/19 15:54,"799 12th St, San Francisco, CA 94016" +205776,AAA Batteries (4-pack),1,2.99,05/19/19 19:41,"598 7th St, Dallas, TX 75001" +205777,USB-C Charging Cable,2,11.95,05/27/19 15:50,"418 12th St, New York City, NY 10001" +205778,Lightning Charging Cable,1,14.95,05/14/19 07:36,"760 Jackson St, Los Angeles, CA 90001" +205779,iPhone,1,700,05/21/19 15:30,"966 Ridge St, Dallas, TX 75001" +205780,AAA Batteries (4-pack),1,2.99,05/13/19 09:23,"979 Cedar St, New York City, NY 10001" +205781,USB-C Charging Cable,1,11.95,05/16/19 08:51,"707 6th St, Atlanta, GA 30301" +205781,34in Ultrawide Monitor,1,379.99,05/16/19 08:51,"707 6th St, Atlanta, GA 30301" +205782,USB-C Charging Cable,1,11.95,05/18/19 14:37,"126 River St, Los Angeles, CA 90001" +205783,Google Phone,1,600,05/04/19 17:58,"893 Lakeview St, Los Angeles, CA 90001" +205784,Macbook Pro Laptop,1,1700,05/30/19 05:40,"98 Center St, San Francisco, CA 94016" +205785,Lightning Charging Cable,1,14.95,05/03/19 19:17,"747 Highland St, New York City, NY 10001" +205786,USB-C Charging Cable,1,11.95,05/22/19 21:53,"963 Lincoln St, New York City, NY 10001" +205787,Lightning Charging Cable,1,14.95,05/09/19 09:11,"5 Elm St, New York City, NY 10001" +205788,Wired Headphones,1,11.99,05/20/19 16:00,"233 10th St, Los Angeles, CA 90001" +205789,Wired Headphones,1,11.99,05/22/19 18:18,"548 Walnut St, San Francisco, CA 94016" +205790,Apple Airpods Headphones,1,150,05/18/19 23:54,"247 Madison St, Los Angeles, CA 90001" +205791,USB-C Charging Cable,1,11.95,05/04/19 18:40,"436 Main St, Dallas, TX 75001" +205792,Apple Airpods Headphones,1,150,05/11/19 15:06,"904 Meadow St, San Francisco, CA 94016" +205793,Wired Headphones,1,11.99,05/26/19 02:55,"981 8th St, Portland, ME 04101" +205794,Flatscreen TV,1,300,05/24/19 20:49,"494 West St, Los Angeles, CA 90001" +205795,USB-C Charging Cable,1,11.95,05/10/19 19:28,"68 13th St, Los Angeles, CA 90001" +205796,Lightning Charging Cable,2,14.95,05/13/19 10:00,"692 Sunset St, Los Angeles, CA 90001" +205797,Wired Headphones,1,11.99,05/16/19 16:21,"586 Park St, San Francisco, CA 94016" +205798,AA Batteries (4-pack),1,3.84,05/12/19 10:01,"115 6th St, Dallas, TX 75001" +205799,AAA Batteries (4-pack),2,2.99,05/10/19 21:48,"591 Lincoln St, Los Angeles, CA 90001" +205800,Lightning Charging Cable,1,14.95,05/06/19 14:52,"532 Jackson St, Seattle, WA 98101" +205801,20in Monitor,1,109.99,05/12/19 21:04,"458 North St, San Francisco, CA 94016" +205802,34in Ultrawide Monitor,1,379.99,05/12/19 07:53,"164 Hickory St, Dallas, TX 75001" +205803,AA Batteries (4-pack),3,3.84,05/06/19 12:18,"458 Meadow St, Seattle, WA 98101" +205804,Bose SoundSport Headphones,1,99.99,05/25/19 17:32,"159 Hill St, San Francisco, CA 94016" +205805,USB-C Charging Cable,1,11.95,05/24/19 21:06,"381 Church St, Boston, MA 02215" +205806,Flatscreen TV,1,300,05/14/19 11:37,"520 Jefferson St, Seattle, WA 98101" +205807,AA Batteries (4-pack),1,3.84,05/09/19 22:23,"729 Spruce St, New York City, NY 10001" +205808,Apple Airpods Headphones,1,150,05/15/19 17:06,"828 Lake St, Atlanta, GA 30301" +205809,Bose SoundSport Headphones,1,99.99,05/21/19 20:22,"683 Jackson St, San Francisco, CA 94016" +205810,Flatscreen TV,1,300,05/28/19 12:01,"776 Washington St, San Francisco, CA 94016" +205811,27in FHD Monitor,1,149.99,05/11/19 13:22,"374 10th St, San Francisco, CA 94016" +205811,USB-C Charging Cable,1,11.95,05/11/19 13:22,"374 10th St, San Francisco, CA 94016" +205812,34in Ultrawide Monitor,1,379.99,05/30/19 07:46,"752 Spruce St, Austin, TX 73301" +205813,AA Batteries (4-pack),2,3.84,05/16/19 11:21,"444 Walnut St, Seattle, WA 98101" +205814,Apple Airpods Headphones,1,150,05/06/19 17:10,"889 7th St, New York City, NY 10001" +205815,Lightning Charging Cable,1,14.95,05/09/19 18:56,"613 Hickory St, Dallas, TX 75001" +205816,USB-C Charging Cable,1,11.95,05/24/19 17:45,"405 Jackson St, Atlanta, GA 30301" +205817,AA Batteries (4-pack),1,3.84,05/11/19 01:39,"503 Adams St, Boston, MA 02215" +205818,Macbook Pro Laptop,1,1700,05/23/19 09:41,"815 Lakeview St, Atlanta, GA 30301" +205819,27in FHD Monitor,1,149.99,05/08/19 11:29,"947 Chestnut St, Dallas, TX 75001" +205820,34in Ultrawide Monitor,1,379.99,05/08/19 20:38,"978 Elm St, New York City, NY 10001" +205821,Apple Airpods Headphones,1,150,05/21/19 00:50,"646 1st St, Boston, MA 02215" +205822,Google Phone,1,600,05/28/19 12:25,"163 Maple St, San Francisco, CA 94016" +205823,iPhone,1,700,05/18/19 17:33,"615 Main St, San Francisco, CA 94016" +205824,Bose SoundSport Headphones,1,99.99,05/27/19 03:28,"579 Highland St, New York City, NY 10001" +205825,USB-C Charging Cable,1,11.95,05/29/19 20:38,"62 14th St, New York City, NY 10001" +205826,USB-C Charging Cable,1,11.95,05/21/19 07:36,"109 Willow St, Los Angeles, CA 90001" +205827,iPhone,1,700,05/21/19 19:41,"335 12th St, Los Angeles, CA 90001" +205828,ThinkPad Laptop,1,999.99,05/22/19 16:10,"989 14th St, New York City, NY 10001" +205829,27in 4K Gaming Monitor,1,389.99,05/22/19 18:05,"425 Chestnut St, New York City, NY 10001" +205830,AAA Batteries (4-pack),1,2.99,05/23/19 16:04,"746 Walnut St, Seattle, WA 98101" +205830,Flatscreen TV,1,300,05/23/19 16:04,"746 Walnut St, Seattle, WA 98101" +205831,AAA Batteries (4-pack),3,2.99,05/28/19 18:20,"717 Meadow St, Dallas, TX 75001" +205832,AAA Batteries (4-pack),1,2.99,05/23/19 13:12,"450 Washington St, Los Angeles, CA 90001" +205833,Wired Headphones,1,11.99,05/26/19 23:52,"487 14th St, New York City, NY 10001" +205834,Flatscreen TV,1,300,05/28/19 07:00,"98 Lakeview St, Los Angeles, CA 90001" +205835,27in FHD Monitor,1,149.99,05/26/19 14:23,"582 Lake St, Seattle, WA 98101" +205836,Bose SoundSport Headphones,1,99.99,05/07/19 19:04,"417 Lake St, New York City, NY 10001" +205837,Wired Headphones,1,11.99,05/19/19 06:17,"360 Wilson St, New York City, NY 10001" +205838,USB-C Charging Cable,1,11.95,05/01/19 22:46,"297 Adams St, Boston, MA 02215" +205839,AA Batteries (4-pack),1,3.84,05/24/19 19:57,"998 Jefferson St, Los Angeles, CA 90001" +205840,USB-C Charging Cable,1,11.95,05/04/19 13:33,"326 1st St, San Francisco, CA 94016" +205841,Wired Headphones,1,11.99,05/01/19 18:11,"716 10th St, New York City, NY 10001" +205842,USB-C Charging Cable,1,11.95,05/23/19 21:17,"801 Willow St, Los Angeles, CA 90001" +205843,AA Batteries (4-pack),1,3.84,05/15/19 01:05,"71 Lakeview St, Austin, TX 73301" +205844,Bose SoundSport Headphones,1,99.99,05/10/19 23:52,"112 Chestnut St, San Francisco, CA 94016" +205845,AAA Batteries (4-pack),3,2.99,05/29/19 16:18,"988 Park St, San Francisco, CA 94016" +205846,iPhone,1,700,05/18/19 12:32,"7 1st St, Los Angeles, CA 90001" +205847,AA Batteries (4-pack),1,3.84,05/06/19 13:16,"16 Sunset St, Boston, MA 02215" +205848,34in Ultrawide Monitor,1,379.99,05/06/19 01:23,"345 Jackson St, New York City, NY 10001" +205849,34in Ultrawide Monitor,1,379.99,05/16/19 22:29,"336 Madison St, Seattle, WA 98101" +205850,USB-C Charging Cable,1,11.95,05/25/19 21:12,"254 Adams St, Los Angeles, CA 90001" +205851,AAA Batteries (4-pack),2,2.99,05/17/19 11:37,"524 Dogwood St, Dallas, TX 75001" +205852,Wired Headphones,1,11.99,05/11/19 13:22,"318 Park St, San Francisco, CA 94016" +205853,USB-C Charging Cable,2,11.95,05/23/19 17:27,"726 Highland St, San Francisco, CA 94016" +205854,Lightning Charging Cable,1,14.95,05/28/19 21:29,"138 Hill St, Atlanta, GA 30301" +205855,27in FHD Monitor,1,149.99,05/11/19 20:32,"468 Forest St, Atlanta, GA 30301" +205856,34in Ultrawide Monitor,1,379.99,05/29/19 10:31,"290 Lakeview St, San Francisco, CA 94016" +205857,Apple Airpods Headphones,1,150,05/05/19 16:18,"673 Willow St, New York City, NY 10001" +205858,Lightning Charging Cable,1,14.95,05/23/19 20:52,"942 Jefferson St, San Francisco, CA 94016" +205859,AA Batteries (4-pack),1,3.84,05/16/19 19:43,"493 Lakeview St, New York City, NY 10001" +205860,Google Phone,1,600,05/25/19 18:43,"77 Jefferson St, Los Angeles, CA 90001" +205860,USB-C Charging Cable,1,11.95,05/25/19 18:43,"77 Jefferson St, Los Angeles, CA 90001" +205861,iPhone,1,700,05/10/19 12:10,"157 Church St, San Francisco, CA 94016" +205862,Macbook Pro Laptop,1,1700,05/03/19 17:07,"844 5th St, Austin, TX 73301" +205863,iPhone,1,700,05/11/19 15:42,"752 2nd St, Seattle, WA 98101" +205864,Lightning Charging Cable,2,14.95,05/11/19 04:20,"857 5th St, San Francisco, CA 94016" +205864,USB-C Charging Cable,1,11.95,05/11/19 04:20,"857 5th St, San Francisco, CA 94016" +205865,20in Monitor,1,109.99,05/21/19 11:00,"478 Adams St, Atlanta, GA 30301" +205866,27in 4K Gaming Monitor,1,389.99,05/06/19 10:24,"466 13th St, New York City, NY 10001" +205867,AAA Batteries (4-pack),2,2.99,05/11/19 09:29,"5 9th St, New York City, NY 10001" +205868,Bose SoundSport Headphones,1,99.99,05/30/19 16:43,"421 1st St, Boston, MA 02215" +205869,Lightning Charging Cable,2,14.95,05/21/19 07:32,"950 West St, Portland, OR 97035" +205870,Wired Headphones,1,11.99,05/11/19 14:26,"35 Dogwood St, Los Angeles, CA 90001" +205871,AAA Batteries (4-pack),1,2.99,05/31/19 11:32,"715 5th St, Portland, OR 97035" +205872,Wired Headphones,1,11.99,05/10/19 19:50,"147 Ridge St, New York City, NY 10001" +205872,Lightning Charging Cable,1,14.95,05/10/19 19:50,"147 Ridge St, New York City, NY 10001" +205873,Wired Headphones,1,11.99,05/03/19 17:26,"560 Elm St, New York City, NY 10001" +205874,AAA Batteries (4-pack),2,2.99,05/16/19 09:31,"4 Spruce St, San Francisco, CA 94016" +205875,AA Batteries (4-pack),1,3.84,05/30/19 00:50,"685 Forest St, Austin, TX 73301" +205876,34in Ultrawide Monitor,1,379.99,05/01/19 10:58,"519 Main St, Portland, OR 97035" +205877,Wired Headphones,1,11.99,05/27/19 18:52,"920 Adams St, Los Angeles, CA 90001" +205878,Bose SoundSport Headphones,1,99.99,05/12/19 12:41,"406 Walnut St, Seattle, WA 98101" +205879,27in 4K Gaming Monitor,1,389.99,05/14/19 15:34,"488 Adams St, Boston, MA 02215" +205880,Wired Headphones,1,11.99,05/07/19 10:23,"339 Pine St, Atlanta, GA 30301" +205881,27in FHD Monitor,1,149.99,05/17/19 17:03,"324 Sunset St, Portland, OR 97035" +205882,USB-C Charging Cable,1,11.95,05/09/19 13:05,"726 North St, Atlanta, GA 30301" +205883,27in 4K Gaming Monitor,1,389.99,05/22/19 14:00,"744 Lakeview St, Dallas, TX 75001" +205884,USB-C Charging Cable,2,11.95,05/28/19 15:56,"212 Dogwood St, Los Angeles, CA 90001" +205885,27in 4K Gaming Monitor,1,389.99,05/01/19 20:01,"703 Madison St, New York City, NY 10001" +205886,27in FHD Monitor,1,149.99,05/29/19 09:25,"522 12th St, New York City, NY 10001" +205887,Bose SoundSport Headphones,1,99.99,05/09/19 16:23,"803 11th St, Seattle, WA 98101" +205888,Wired Headphones,1,11.99,05/30/19 11:23,"757 North St, San Francisco, CA 94016" +205889,AA Batteries (4-pack),1,3.84,05/16/19 22:35,"174 12th St, Seattle, WA 98101" +205890,Apple Airpods Headphones,1,150,05/28/19 20:30,"237 Pine St, Los Angeles, CA 90001" +205891,iPhone,1,700,05/25/19 17:47,"19 11th St, Dallas, TX 75001" +205892,AA Batteries (4-pack),2,3.84,05/31/19 20:26,"756 2nd St, San Francisco, CA 94016" +205893,27in FHD Monitor,1,149.99,05/16/19 09:58,"503 Maple St, Seattle, WA 98101" +205894,Macbook Pro Laptop,1,1700,05/09/19 21:48,"661 7th St, Boston, MA 02215" +205895,AAA Batteries (4-pack),1,2.99,05/06/19 18:39,"486 Lakeview St, New York City, NY 10001" +205896,Wired Headphones,1,11.99,05/14/19 12:36,"77 Jefferson St, Dallas, TX 75001" +205897,Lightning Charging Cable,1,14.95,05/08/19 15:12,"30 Johnson St, New York City, NY 10001" +205898,Bose SoundSport Headphones,1,99.99,05/12/19 14:32,"49 Meadow St, Los Angeles, CA 90001" +205899,27in FHD Monitor,1,149.99,05/25/19 10:12,"830 Spruce St, Austin, TX 73301" +205900,Bose SoundSport Headphones,1,99.99,05/30/19 18:43,"200 Elm St, Austin, TX 73301" +205901,Bose SoundSport Headphones,1,99.99,05/05/19 11:45,"61 Cherry St, Austin, TX 73301" +205902,AAA Batteries (4-pack),1,2.99,05/16/19 12:32,"45 Jefferson St, Los Angeles, CA 90001" +205903,Google Phone,1,600,05/02/19 11:33,"650 12th St, San Francisco, CA 94016" +205904,AA Batteries (4-pack),3,3.84,05/07/19 19:06,"97 Lakeview St, Dallas, TX 75001" +205905,Lightning Charging Cable,1,14.95,05/19/19 16:54,"766 Chestnut St, Atlanta, GA 30301" +205906,34in Ultrawide Monitor,1,379.99,05/18/19 12:57,"420 Hill St, San Francisco, CA 94016" +205907,AA Batteries (4-pack),1,3.84,05/01/19 14:32,"992 Sunset St, San Francisco, CA 94016" +205908,iPhone,1,700,05/29/19 18:02,"290 4th St, Boston, MA 02215" +205909,Bose SoundSport Headphones,1,99.99,05/27/19 21:15,"526 13th St, New York City, NY 10001" +205910,Lightning Charging Cable,1,14.95,05/13/19 20:50,"408 Dogwood St, San Francisco, CA 94016" +205911,Wired Headphones,1,11.99,05/08/19 18:30,"419 Adams St, Seattle, WA 98101" +205912,Bose SoundSport Headphones,1,99.99,05/25/19 14:12,"13 Hickory St, San Francisco, CA 94016" +205912,34in Ultrawide Monitor,1,379.99,05/25/19 14:12,"13 Hickory St, San Francisco, CA 94016" +205913,Bose SoundSport Headphones,1,99.99,05/01/19 17:04,"169 Highland St, Los Angeles, CA 90001" +205914,AA Batteries (4-pack),1,3.84,05/27/19 11:03,"988 Forest St, Dallas, TX 75001" +205915,USB-C Charging Cable,1,11.95,05/13/19 20:06,"938 Walnut St, San Francisco, CA 94016" +205916,27in 4K Gaming Monitor,1,389.99,05/20/19 00:42,"402 6th St, San Francisco, CA 94016" +205917,AA Batteries (4-pack),2,3.84,05/14/19 16:43,"146 11th St, New York City, NY 10001" +205918,ThinkPad Laptop,1,999.99,05/12/19 15:10,"680 Lake St, Los Angeles, CA 90001" +205919,27in FHD Monitor,1,149.99,05/06/19 14:55,"541 11th St, Portland, OR 97035" +205920,34in Ultrawide Monitor,1,379.99,05/19/19 17:17,"63 Walnut St, Dallas, TX 75001" +205921,27in 4K Gaming Monitor,1,389.99,05/22/19 14:19,"282 4th St, New York City, NY 10001" +205922,27in 4K Gaming Monitor,1,389.99,05/03/19 16:09,"263 14th St, San Francisco, CA 94016" +205923,Wired Headphones,1,11.99,05/22/19 20:43,"484 South St, Los Angeles, CA 90001" +205924,AA Batteries (4-pack),1,3.84,05/11/19 17:33,"577 Johnson St, Seattle, WA 98101" +205925,Lightning Charging Cable,1,14.95,05/27/19 13:11,"736 Maple St, San Francisco, CA 94016" +205926,Apple Airpods Headphones,1,150,05/23/19 18:17,"180 Maple St, Dallas, TX 75001" +205927,Google Phone,1,600,05/04/19 16:03,"272 Dogwood St, Portland, OR 97035" +205928,Lightning Charging Cable,1,14.95,05/11/19 21:07,"323 12th St, San Francisco, CA 94016" +205929,AAA Batteries (4-pack),1,2.99,05/20/19 14:48,"566 8th St, Los Angeles, CA 90001" +205930,AA Batteries (4-pack),1,3.84,05/25/19 12:03,"469 River St, New York City, NY 10001" +205931,Wired Headphones,1,11.99,05/26/19 23:38,"757 North St, Boston, MA 02215" +205932,Bose SoundSport Headphones,1,99.99,05/03/19 00:18,"824 Ridge St, San Francisco, CA 94016" +205932,USB-C Charging Cable,1,11.95,05/03/19 00:18,"824 Ridge St, San Francisco, CA 94016" +205933,USB-C Charging Cable,1,11.95,05/04/19 17:12,"972 1st St, Austin, TX 73301" +205934,Lightning Charging Cable,1,14.95,05/23/19 10:35,"676 Hickory St, New York City, NY 10001" +205935,Google Phone,1,600,05/09/19 21:08,"552 11th St, Dallas, TX 75001" +205936,USB-C Charging Cable,3,11.95,05/10/19 11:40,"251 Spruce St, Dallas, TX 75001" +205937,AAA Batteries (4-pack),1,2.99,05/12/19 17:09,"988 12th St, San Francisco, CA 94016" +205938,AAA Batteries (4-pack),1,2.99,05/06/19 19:56,"259 Washington St, Los Angeles, CA 90001" +205939,Wired Headphones,1,11.99,05/12/19 22:09,"869 Park St, Dallas, TX 75001" +205940,ThinkPad Laptop,1,999.99,05/19/19 19:24,"628 12th St, Portland, OR 97035" +205941,AAA Batteries (4-pack),1,2.99,05/02/19 20:44,"298 Highland St, San Francisco, CA 94016" +205942,AAA Batteries (4-pack),1,2.99,05/14/19 18:35,"324 Jefferson St, Los Angeles, CA 90001" +205943,27in FHD Monitor,1,149.99,05/11/19 15:35,"626 Meadow St, Austin, TX 73301" +205944,Vareebadd Phone,1,400,05/21/19 19:45,"652 Elm St, Austin, TX 73301" +205945,Lightning Charging Cable,1,14.95,05/27/19 18:49,"697 9th St, New York City, NY 10001" +205946,AA Batteries (4-pack),1,3.84,05/09/19 15:22,"827 14th St, Los Angeles, CA 90001" +205947,Google Phone,1,600,05/28/19 11:20,"78 Chestnut St, San Francisco, CA 94016" +205948,USB-C Charging Cable,1,11.95,05/05/19 22:24,"569 9th St, Boston, MA 02215" +205949,AAA Batteries (4-pack),1,2.99,05/12/19 11:34,"947 Cedar St, Dallas, TX 75001" +205950,AAA Batteries (4-pack),1,2.99,05/24/19 11:39,"359 Adams St, Boston, MA 02215" +205951,Lightning Charging Cable,1,14.95,05/08/19 14:02,"952 Jackson St, San Francisco, CA 94016" +205952,AAA Batteries (4-pack),1,2.99,05/17/19 17:57,"621 Main St, New York City, NY 10001" +205953,27in FHD Monitor,1,149.99,05/13/19 23:53,"733 6th St, Boston, MA 02215" +205954,AA Batteries (4-pack),1,3.84,05/17/19 19:47,"761 Elm St, Portland, OR 97035" +205955,Bose SoundSport Headphones,1,99.99,05/04/19 11:31,"239 River St, San Francisco, CA 94016" +205956,Apple Airpods Headphones,1,150,05/14/19 22:33,"913 Highland St, Portland, OR 97035" +205956,Apple Airpods Headphones,1,150,05/14/19 22:33,"913 Highland St, Portland, OR 97035" +205957,Macbook Pro Laptop,1,1700,05/23/19 15:20,"809 Dogwood St, Atlanta, GA 30301" +205958,Macbook Pro Laptop,1,1700,05/23/19 22:44,"379 Walnut St, Dallas, TX 75001" +205959,AAA Batteries (4-pack),2,2.99,05/14/19 15:28,"86 14th St, Seattle, WA 98101" +205960,20in Monitor,1,109.99,05/25/19 19:39,"366 11th St, San Francisco, CA 94016" +205961,iPhone,1,700,05/02/19 19:21,"516 2nd St, Seattle, WA 98101" +205962,34in Ultrawide Monitor,1,379.99,05/26/19 15:52,"991 Spruce St, Austin, TX 73301" +205963,Macbook Pro Laptop,1,1700,05/15/19 20:43,"962 North St, Portland, OR 97035" +205964,USB-C Charging Cable,1,11.95,05/06/19 05:11,"878 Lake St, Seattle, WA 98101" +205965,AAA Batteries (4-pack),2,2.99,05/22/19 14:30,"692 9th St, Los Angeles, CA 90001" +205966,27in 4K Gaming Monitor,1,389.99,05/15/19 21:07,"794 Lincoln St, Los Angeles, CA 90001" +205967,27in 4K Gaming Monitor,1,389.99,05/23/19 22:34,"525 Pine St, San Francisco, CA 94016" +205968,27in FHD Monitor,1,149.99,05/22/19 15:34,"845 Maple St, Austin, TX 73301" +205969,USB-C Charging Cable,1,11.95,05/01/19 18:48,"956 Washington St, Boston, MA 02215" +205970,20in Monitor,1,109.99,05/13/19 11:12,"177 5th St, San Francisco, CA 94016" +205971,USB-C Charging Cable,1,11.95,05/24/19 10:25,"253 Maple St, Los Angeles, CA 90001" +205972,LG Dryer,1,600.0,05/22/19 18:52,"137 9th St, San Francisco, CA 94016" +205973,Macbook Pro Laptop,1,1700,05/21/19 21:59,"512 13th St, New York City, NY 10001" +205974,Apple Airpods Headphones,1,150,05/22/19 18:47,"310 North St, Dallas, TX 75001" +205975,34in Ultrawide Monitor,1,379.99,05/28/19 15:57,"80 Lakeview St, Portland, ME 04101" +205976,Apple Airpods Headphones,1,150,05/02/19 12:04,"282 Highland St, Atlanta, GA 30301" +205977,AA Batteries (4-pack),1,3.84,05/02/19 09:32,"255 West St, Austin, TX 73301" +205978,Bose SoundSport Headphones,1,99.99,05/10/19 12:51,"82 Cedar St, Boston, MA 02215" +205979,AA Batteries (4-pack),2,3.84,05/07/19 23:16,"154 Maple St, San Francisco, CA 94016" +205980,Vareebadd Phone,1,400,05/07/19 17:18,"962 11th St, Austin, TX 73301" +205981,ThinkPad Laptop,1,999.99,05/25/19 16:18,"577 8th St, San Francisco, CA 94016" +205982,AAA Batteries (4-pack),1,2.99,05/13/19 19:50,"432 Lake St, Atlanta, GA 30301" +205983,USB-C Charging Cable,1,11.95,05/17/19 09:51,"414 North St, San Francisco, CA 94016" +205984,AAA Batteries (4-pack),1,2.99,05/16/19 09:14,"960 Elm St, New York City, NY 10001" +205985,Macbook Pro Laptop,1,1700,05/09/19 21:19,"44 12th St, Dallas, TX 75001" +205986,AAA Batteries (4-pack),1,2.99,05/10/19 00:03,"901 Lakeview St, Boston, MA 02215" +205987,Wired Headphones,1,11.99,05/31/19 09:32,"525 Lincoln St, Dallas, TX 75001" +205988,Vareebadd Phone,1,400,05/11/19 13:07,"574 Hickory St, Portland, OR 97035" +205988,Bose SoundSport Headphones,1,99.99,05/11/19 13:07,"574 Hickory St, Portland, OR 97035" +205989,Bose SoundSport Headphones,1,99.99,05/27/19 19:05,"331 Washington St, San Francisco, CA 94016" +205990,USB-C Charging Cable,1,11.95,05/30/19 12:37,"654 Washington St, San Francisco, CA 94016" +205991,Wired Headphones,1,11.99,05/05/19 08:38,"894 Cherry St, Boston, MA 02215" +205992,Google Phone,1,600,05/19/19 12:22,"907 2nd St, San Francisco, CA 94016" +205993,Apple Airpods Headphones,1,150,05/14/19 23:50,"329 11th St, Dallas, TX 75001" +205994,Lightning Charging Cable,2,14.95,05/14/19 10:00,"742 Cedar St, Dallas, TX 75001" +205995,USB-C Charging Cable,1,11.95,05/24/19 09:18,"461 Highland St, New York City, NY 10001" +205995,Apple Airpods Headphones,1,150,05/24/19 09:18,"461 Highland St, New York City, NY 10001" +205996,AAA Batteries (4-pack),2,2.99,05/27/19 09:27,"14 Cedar St, Atlanta, GA 30301" +205997,27in FHD Monitor,1,149.99,05/25/19 01:48,"796 Church St, Austin, TX 73301" +205998,Lightning Charging Cable,1,14.95,05/26/19 15:57,"730 Park St, Atlanta, GA 30301" +205999,27in 4K Gaming Monitor,1,389.99,05/06/19 11:08,"496 Jefferson St, San Francisco, CA 94016" +206000,Apple Airpods Headphones,1,150,05/28/19 11:47,"334 Walnut St, Boston, MA 02215" +206001,AAA Batteries (4-pack),2,2.99,05/02/19 09:17,"119 Church St, New York City, NY 10001" +206002,27in FHD Monitor,1,149.99,05/30/19 22:18,"511 Wilson St, New York City, NY 10001" +206003,USB-C Charging Cable,1,11.95,05/01/19 15:14,"11 12th St, Los Angeles, CA 90001" +206004,27in 4K Gaming Monitor,1,389.99,05/10/19 19:44,"461 Main St, Seattle, WA 98101" +206005,27in FHD Monitor,1,149.99,05/10/19 14:04,"165 Highland St, Seattle, WA 98101" +206006,AA Batteries (4-pack),1,3.84,05/05/19 18:23,"395 Madison St, New York City, NY 10001" +206007,Wired Headphones,1,11.99,05/14/19 11:42,"818 North St, San Francisco, CA 94016" +206008,Wired Headphones,1,11.99,05/07/19 16:07,"928 West St, Boston, MA 02215" +206009,Wired Headphones,1,11.99,05/16/19 00:48,"63 Lakeview St, New York City, NY 10001" +206010,AA Batteries (4-pack),1,3.84,05/13/19 15:55,"470 2nd St, Seattle, WA 98101" +206011,AAA Batteries (4-pack),1,2.99,05/20/19 19:42,"382 Jackson St, San Francisco, CA 94016" +206012,iPhone,1,700,05/22/19 18:09,"422 Cedar St, Atlanta, GA 30301" +206013,Wired Headphones,1,11.99,05/07/19 11:24,"401 Elm St, San Francisco, CA 94016" +206014,LG Dryer,1,600.0,05/30/19 07:15,"541 4th St, San Francisco, CA 94016" +206015,AA Batteries (4-pack),1,3.84,05/20/19 22:07,"272 Hill St, Los Angeles, CA 90001" +206016,USB-C Charging Cable,1,11.95,05/10/19 23:07,"999 12th St, San Francisco, CA 94016" +206017,Lightning Charging Cable,1,14.95,05/08/19 11:27,"325 11th St, Boston, MA 02215" +206018,Apple Airpods Headphones,1,150,05/22/19 12:29,"944 Pine St, Austin, TX 73301" +206019,USB-C Charging Cable,1,11.95,05/22/19 19:15,"513 14th St, New York City, NY 10001" +206020,Wired Headphones,1,11.99,05/09/19 11:26,"931 Wilson St, Los Angeles, CA 90001" +206021,AA Batteries (4-pack),1,3.84,05/06/19 13:14,"187 Pine St, San Francisco, CA 94016" +206022,Lightning Charging Cable,1,14.95,05/04/19 13:48,"138 Park St, Los Angeles, CA 90001" +206023,Lightning Charging Cable,1,14.95,05/09/19 13:16,"798 Park St, Los Angeles, CA 90001" +206024,Lightning Charging Cable,1,14.95,05/17/19 10:43,"535 Lincoln St, Boston, MA 02215" +206025,34in Ultrawide Monitor,1,379.99,05/26/19 09:18,"439 Adams St, Atlanta, GA 30301" +206026,Google Phone,1,600,05/17/19 21:24,"449 5th St, Boston, MA 02215" +206027,ThinkPad Laptop,1,999.99,05/17/19 11:22,"463 West St, San Francisco, CA 94016" +206028,USB-C Charging Cable,1,11.95,05/29/19 23:02,"452 Meadow St, San Francisco, CA 94016" +206029,AA Batteries (4-pack),1,3.84,05/31/19 20:18,"483 Cherry St, Boston, MA 02215" +206030,Bose SoundSport Headphones,1,99.99,05/11/19 23:30,"863 River St, Seattle, WA 98101" +206031,34in Ultrawide Monitor,1,379.99,05/15/19 21:34,"602 10th St, New York City, NY 10001" +206032,Apple Airpods Headphones,1,150,05/12/19 13:17,"731 7th St, Boston, MA 02215" +206033,Lightning Charging Cable,1,14.95,05/08/19 13:11,"25 Park St, Los Angeles, CA 90001" +206034,AAA Batteries (4-pack),1,2.99,05/22/19 09:10,"75 Wilson St, San Francisco, CA 94016" +206035,27in 4K Gaming Monitor,1,389.99,05/20/19 21:12,"54 2nd St, San Francisco, CA 94016" +206036,Lightning Charging Cable,1,14.95,05/16/19 22:23,"965 Jackson St, Boston, MA 02215" +206037,Wired Headphones,1,11.99,05/06/19 12:50,"189 Maple St, Austin, TX 73301" +206038,AAA Batteries (4-pack),1,2.99,05/03/19 19:56,"156 Adams St, San Francisco, CA 94016" +206039,Lightning Charging Cable,1,14.95,05/03/19 20:10,"428 Walnut St, San Francisco, CA 94016" +206040,AAA Batteries (4-pack),1,2.99,05/12/19 20:53,"152 10th St, Los Angeles, CA 90001" +206041,AA Batteries (4-pack),3,3.84,05/12/19 16:15,"332 Center St, Seattle, WA 98101" +206042,AA Batteries (4-pack),1,3.84,05/24/19 19:25,"749 River St, Boston, MA 02215" +206043,Apple Airpods Headphones,1,150,05/22/19 15:16,"815 Willow St, Atlanta, GA 30301" +206044,USB-C Charging Cable,1,11.95,05/24/19 20:28,"448 Hill St, New York City, NY 10001" +206045,iPhone,1,700,05/26/19 01:28,"791 Elm St, Portland, OR 97035" +206045,Wired Headphones,1,11.99,05/26/19 01:28,"791 Elm St, Portland, OR 97035" +206046,AA Batteries (4-pack),2,3.84,05/24/19 13:32,"891 Madison St, San Francisco, CA 94016" +206047,ThinkPad Laptop,1,999.99,05/06/19 23:31,"784 Ridge St, Dallas, TX 75001" +206048,Bose SoundSport Headphones,1,99.99,05/20/19 14:24,"150 West St, Seattle, WA 98101" +206049,Lightning Charging Cable,1,14.95,05/03/19 22:28,"281 Jefferson St, New York City, NY 10001" +206050,Lightning Charging Cable,1,14.95,05/12/19 16:59,"900 Adams St, New York City, NY 10001" +206051,Macbook Pro Laptop,1,1700,05/24/19 14:51,"594 Jackson St, Boston, MA 02215" +206052,34in Ultrawide Monitor,1,379.99,05/26/19 11:29,"291 Hickory St, Boston, MA 02215" +206053,Apple Airpods Headphones,1,150,05/14/19 19:47,"523 Highland St, Los Angeles, CA 90001" +206054,ThinkPad Laptop,1,999.99,05/26/19 12:18,"548 Meadow St, Los Angeles, CA 90001" +206055,34in Ultrawide Monitor,1,379.99,05/11/19 20:22,"315 7th St, Austin, TX 73301" +206056,Apple Airpods Headphones,1,150,05/15/19 12:45,"408 Center St, Boston, MA 02215" +206057,Wired Headphones,1,11.99,05/11/19 19:38,"616 Hill St, San Francisco, CA 94016" +206058,AA Batteries (4-pack),1,3.84,05/20/19 18:13,"23 Church St, Atlanta, GA 30301" +206059,Flatscreen TV,1,300,05/11/19 23:20,"546 Jefferson St, San Francisco, CA 94016" +206060,Bose SoundSport Headphones,1,99.99,05/06/19 17:41,"543 Willow St, New York City, NY 10001" +206061,Bose SoundSport Headphones,1,99.99,05/29/19 13:21,"705 Cedar St, Atlanta, GA 30301" +206062,Wired Headphones,1,11.99,05/07/19 22:38,"492 Meadow St, New York City, NY 10001" +206063,Wired Headphones,1,11.99,05/11/19 08:49,"171 Walnut St, Atlanta, GA 30301" +206064,AA Batteries (4-pack),1,3.84,05/25/19 13:17,"615 Madison St, Austin, TX 73301" +206065,Wired Headphones,1,11.99,05/23/19 11:59,"296 8th St, Atlanta, GA 30301" +206066,Lightning Charging Cable,1,14.95,05/28/19 15:51,"145 Willow St, Seattle, WA 98101" +206067,Bose SoundSport Headphones,1,99.99,05/22/19 13:07,"131 7th St, Seattle, WA 98101" +206068,34in Ultrawide Monitor,1,379.99,05/22/19 07:10,"264 12th St, Portland, OR 97035" +206069,ThinkPad Laptop,1,999.99,05/22/19 21:16,"165 West St, Los Angeles, CA 90001" +206070,AA Batteries (4-pack),1,3.84,05/26/19 05:32,"276 Sunset St, Los Angeles, CA 90001" +206071,ThinkPad Laptop,1,999.99,05/06/19 16:45,"673 Highland St, Atlanta, GA 30301" +206072,Bose SoundSport Headphones,1,99.99,05/27/19 11:46,"244 Lincoln St, Boston, MA 02215" +206073,Lightning Charging Cable,1,14.95,05/21/19 23:10,"856 Park St, New York City, NY 10001" +206074,Lightning Charging Cable,1,14.95,05/21/19 17:10,"17 Hill St, Portland, OR 97035" +206075,27in 4K Gaming Monitor,1,389.99,05/30/19 10:17,"411 5th St, Los Angeles, CA 90001" +206076,Apple Airpods Headphones,1,150,05/26/19 15:58,"385 8th St, New York City, NY 10001" +206077,AAA Batteries (4-pack),1,2.99,05/18/19 21:11,"455 11th St, Boston, MA 02215" +206078,Bose SoundSport Headphones,1,99.99,05/10/19 19:15,"344 Ridge St, San Francisco, CA 94016" +206078,Lightning Charging Cable,1,14.95,05/10/19 19:15,"344 Ridge St, San Francisco, CA 94016" +206079,Lightning Charging Cable,1,14.95,05/10/19 11:09,"165 12th St, San Francisco, CA 94016" +206080,Wired Headphones,1,11.99,05/04/19 14:47,"798 Center St, New York City, NY 10001" +206081,Lightning Charging Cable,1,14.95,05/04/19 11:04,"269 1st St, Los Angeles, CA 90001" +206082,USB-C Charging Cable,1,11.95,05/01/19 13:42,"236 Church St, San Francisco, CA 94016" +206083,Bose SoundSport Headphones,1,99.99,05/09/19 13:03,"574 11th St, Portland, OR 97035" +206084,Wired Headphones,1,11.99,05/18/19 11:33,"423 Cherry St, San Francisco, CA 94016" +206085,Apple Airpods Headphones,1,150,05/29/19 20:15,"328 Main St, Austin, TX 73301" +206086,Apple Airpods Headphones,1,150,05/09/19 19:58,"833 Church St, San Francisco, CA 94016" +206087,iPhone,1,700,05/06/19 11:04,"599 6th St, Los Angeles, CA 90001" +206087,Lightning Charging Cable,1,14.95,05/06/19 11:04,"599 6th St, Los Angeles, CA 90001" +206087,Wired Headphones,1,11.99,05/06/19 11:04,"599 6th St, Los Angeles, CA 90001" +206088,USB-C Charging Cable,1,11.95,05/27/19 06:09,"779 9th St, Portland, OR 97035" +206089,Lightning Charging Cable,1,14.95,05/08/19 12:20,"911 Spruce St, New York City, NY 10001" +206090,AA Batteries (4-pack),1,3.84,05/16/19 15:25,"700 Jefferson St, Austin, TX 73301" +206091,Lightning Charging Cable,1,14.95,05/06/19 17:12,"29 10th St, Boston, MA 02215" +206092,Lightning Charging Cable,1,14.95,05/06/19 13:01,"124 South St, San Francisco, CA 94016" +206093,Apple Airpods Headphones,1,150,05/18/19 20:01,"996 Hickory St, Austin, TX 73301" +206094,AAA Batteries (4-pack),2,2.99,05/17/19 10:04,"5 Adams St, Los Angeles, CA 90001" +206095,AAA Batteries (4-pack),1,2.99,05/02/19 15:43,"32 7th St, San Francisco, CA 94016" +206096,27in 4K Gaming Monitor,1,389.99,05/08/19 23:45,"241 West St, Seattle, WA 98101" +206097,ThinkPad Laptop,1,999.99,05/06/19 15:11,"64 Maple St, Dallas, TX 75001" +206098,AA Batteries (4-pack),1,3.84,05/28/19 16:24,"365 Ridge St, San Francisco, CA 94016" +206099,AA Batteries (4-pack),1,3.84,05/07/19 21:13,"190 Highland St, Boston, MA 02215" +206100,20in Monitor,1,109.99,05/04/19 17:52,"352 West St, Atlanta, GA 30301" +206101,Vareebadd Phone,1,400,05/12/19 00:12,"553 2nd St, Atlanta, GA 30301" +206102,Macbook Pro Laptop,1,1700,05/05/19 10:57,"588 Jackson St, San Francisco, CA 94016" +206103,Lightning Charging Cable,1,14.95,05/13/19 02:48,"618 Church St, Portland, OR 97035" +206104,27in 4K Gaming Monitor,1,389.99,05/05/19 17:06,"642 Walnut St, San Francisco, CA 94016" +206105,Google Phone,1,600,05/27/19 18:37,"628 Center St, Los Angeles, CA 90001" +206106,Lightning Charging Cable,1,14.95,05/11/19 12:37,"868 7th St, San Francisco, CA 94016" +206107,AA Batteries (4-pack),1,3.84,05/19/19 17:18,"565 Jackson St, Portland, OR 97035" +206108,Wired Headphones,1,11.99,05/27/19 15:41,"740 Lakeview St, San Francisco, CA 94016" +206109,USB-C Charging Cable,1,11.95,05/12/19 18:52,"237 14th St, Atlanta, GA 30301" +206110,Wired Headphones,1,11.99,05/01/19 11:20,"101 6th St, Boston, MA 02215" +206111,Lightning Charging Cable,1,14.95,05/27/19 14:40,"197 Hickory St, Seattle, WA 98101" +206111,Lightning Charging Cable,1,14.95,05/27/19 14:40,"197 Hickory St, Seattle, WA 98101" +206112,AAA Batteries (4-pack),1,2.99,05/25/19 05:56,"217 1st St, Los Angeles, CA 90001" +206113,Google Phone,1,600,05/29/19 19:44,"442 West St, Atlanta, GA 30301" +206114,Bose SoundSport Headphones,1,99.99,05/20/19 08:07,"188 Hill St, Los Angeles, CA 90001" +206115,20in Monitor,1,109.99,05/19/19 11:44,"783 4th St, Los Angeles, CA 90001" +206116,AAA Batteries (4-pack),1,2.99,05/06/19 14:35,"309 12th St, San Francisco, CA 94016" +206117,Bose SoundSport Headphones,1,99.99,05/31/19 18:39,"491 Cherry St, Dallas, TX 75001" +206118,Macbook Pro Laptop,1,1700,05/28/19 19:05,"928 Center St, San Francisco, CA 94016" +206119,Bose SoundSport Headphones,1,99.99,05/17/19 13:00,"363 Chestnut St, Dallas, TX 75001" +206120,Apple Airpods Headphones,1,150,05/12/19 20:35,"929 7th St, Seattle, WA 98101" +206121,Wired Headphones,1,11.99,05/25/19 19:30,"267 Pine St, San Francisco, CA 94016" +206121,34in Ultrawide Monitor,1,379.99,05/25/19 19:30,"267 Pine St, San Francisco, CA 94016" +206122,LG Dryer,1,600.0,05/22/19 16:27,"65 7th St, San Francisco, CA 94016" +206123,Lightning Charging Cable,1,14.95,05/31/19 16:38,"587 9th St, Boston, MA 02215" +206124,27in FHD Monitor,1,149.99,05/07/19 20:20,"76 Ridge St, Portland, OR 97035" +206125,Wired Headphones,2,11.99,05/24/19 23:18,"865 Spruce St, San Francisco, CA 94016" +206126,AAA Batteries (4-pack),1,2.99,05/20/19 10:46,"809 8th St, Los Angeles, CA 90001" +206127,AAA Batteries (4-pack),3,2.99,05/24/19 04:18,"473 12th St, Los Angeles, CA 90001" +206128,AAA Batteries (4-pack),1,2.99,05/27/19 05:52,"467 Forest St, Seattle, WA 98101" +206129,AAA Batteries (4-pack),1,2.99,05/13/19 22:33,"202 West St, Seattle, WA 98101" +206130,Apple Airpods Headphones,1,150,05/21/19 21:46,"380 West St, San Francisco, CA 94016" +206131,Apple Airpods Headphones,1,150,05/22/19 10:13,"479 Madison St, San Francisco, CA 94016" +206132,Wired Headphones,1,11.99,05/26/19 15:09,"346 Jefferson St, San Francisco, CA 94016" +206133,AA Batteries (4-pack),1,3.84,05/26/19 21:43,"777 Center St, Boston, MA 02215" +206134,27in 4K Gaming Monitor,1,389.99,05/10/19 11:33,"893 9th St, San Francisco, CA 94016" +206135,Wired Headphones,1,11.99,05/16/19 10:09,"291 Ridge St, Seattle, WA 98101" +206136,AA Batteries (4-pack),2,3.84,05/03/19 07:23,"941 Jefferson St, San Francisco, CA 94016" +206137,Apple Airpods Headphones,1,150,05/22/19 19:27,"397 Center St, Atlanta, GA 30301" +206138,AAA Batteries (4-pack),1,2.99,05/08/19 00:30,"294 5th St, San Francisco, CA 94016" +206139,USB-C Charging Cable,1,11.95,05/04/19 00:17,"330 Lake St, Boston, MA 02215" +206140,AA Batteries (4-pack),1,3.84,05/14/19 22:56,"594 Adams St, San Francisco, CA 94016" +206141,AA Batteries (4-pack),1,3.84,05/07/19 18:56,"150 Sunset St, Los Angeles, CA 90001" +206142,Lightning Charging Cable,1,14.95,05/13/19 13:45,"498 Dogwood St, Los Angeles, CA 90001" +206143,USB-C Charging Cable,1,11.95,05/19/19 10:27,"378 4th St, New York City, NY 10001" +206144,USB-C Charging Cable,1,11.95,05/11/19 19:14,"219 Center St, Dallas, TX 75001" +206145,AA Batteries (4-pack),1,3.84,05/21/19 10:23,"481 Sunset St, Atlanta, GA 30301" +206146,Wired Headphones,1,11.99,05/02/19 10:33,"516 West St, San Francisco, CA 94016" +206147,20in Monitor,1,109.99,05/09/19 11:10,"742 1st St, San Francisco, CA 94016" +206148,Wired Headphones,1,11.99,05/02/19 23:39,"927 Walnut St, Los Angeles, CA 90001" +206149,Lightning Charging Cable,1,14.95,05/03/19 19:26,"977 8th St, San Francisco, CA 94016" +206150,USB-C Charging Cable,1,11.95,05/17/19 15:49,"277 Ridge St, Austin, TX 73301" +206151,Apple Airpods Headphones,1,150,05/13/19 22:07,"840 Main St, Atlanta, GA 30301" +206152,Flatscreen TV,1,300,05/19/19 11:14,"405 Park St, New York City, NY 10001" +206153,Lightning Charging Cable,1,14.95,05/07/19 19:31,"879 Willow St, Seattle, WA 98101" +206154,USB-C Charging Cable,1,11.95,05/02/19 21:10,"857 North St, New York City, NY 10001" +206155,iPhone,1,700,05/01/19 18:12,"721 Hickory St, San Francisco, CA 94016" +206156,Vareebadd Phone,1,400,05/05/19 02:12,"805 Lakeview St, New York City, NY 10001" +206157,iPhone,1,700,05/30/19 17:48,"128 Dogwood St, Atlanta, GA 30301" +206158,Bose SoundSport Headphones,1,99.99,05/09/19 00:21,"651 West St, Atlanta, GA 30301" +206159,iPhone,1,700,05/26/19 14:23,"814 West St, New York City, NY 10001" +206160,Lightning Charging Cable,1,14.95,05/04/19 15:58,"290 North St, San Francisco, CA 94016" +206161,Google Phone,1,600,05/03/19 16:00,"586 Sunset St, San Francisco, CA 94016" +206161,Wired Headphones,1,11.99,05/03/19 16:00,"586 Sunset St, San Francisco, CA 94016" +206161,Apple Airpods Headphones,1,150,05/03/19 16:00,"586 Sunset St, San Francisco, CA 94016" +206162,Wired Headphones,2,11.99,05/04/19 23:56,"579 Meadow St, Dallas, TX 75001" +206163,Wired Headphones,1,11.99,05/10/19 22:08,"236 14th St, Atlanta, GA 30301" +206164,AAA Batteries (4-pack),1,2.99,05/13/19 17:44,"337 6th St, Los Angeles, CA 90001" +206165,Wired Headphones,1,11.99,05/04/19 18:41,"299 Pine St, Los Angeles, CA 90001" +206166,Lightning Charging Cable,1,14.95,05/05/19 07:22,"657 Hill St, Seattle, WA 98101" +206167,Apple Airpods Headphones,1,150,05/09/19 21:38,"206 Dogwood St, Austin, TX 73301" +206168,AA Batteries (4-pack),1,3.84,05/17/19 20:23,"423 Adams St, Dallas, TX 75001" +206169,AA Batteries (4-pack),1,3.84,05/08/19 08:55,"751 Main St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +206170,Wired Headphones,1,11.99,05/13/19 11:23,"233 11th St, San Francisco, CA 94016" +206171,USB-C Charging Cable,1,11.95,05/01/19 10:56,"787 5th St, New York City, NY 10001" +206172,Google Phone,1,600,05/10/19 15:39,"909 Sunset St, Austin, TX 73301" +206173,AAA Batteries (4-pack),1,2.99,05/27/19 14:00,"342 Center St, Seattle, WA 98101" +206174,AAA Batteries (4-pack),1,2.99,05/24/19 02:12,"787 14th St, Portland, OR 97035" +206175,USB-C Charging Cable,1,11.95,05/05/19 23:42,"58 Main St, San Francisco, CA 94016" +206176,Lightning Charging Cable,1,14.95,05/01/19 18:03,"113 River St, Seattle, WA 98101" +206177,Apple Airpods Headphones,1,150,05/04/19 19:49,"660 Spruce St, Atlanta, GA 30301" +206178,Apple Airpods Headphones,1,150,05/28/19 14:42,"815 Highland St, Seattle, WA 98101" +206179,AA Batteries (4-pack),1,3.84,05/04/19 21:51,"193 Center St, Seattle, WA 98101" +206180,Wired Headphones,1,11.99,05/01/19 13:43,"58 6th St, San Francisco, CA 94016" +206181,ThinkPad Laptop,1,999.99,05/04/19 21:00,"121 Hickory St, Portland, ME 04101" +206182,Wired Headphones,1,11.99,05/15/19 00:42,"317 Spruce St, Portland, OR 97035" +206183,AAA Batteries (4-pack),2,2.99,05/10/19 01:02,"296 Wilson St, San Francisco, CA 94016" +206184,AA Batteries (4-pack),4,3.84,05/12/19 17:21,"208 10th St, Atlanta, GA 30301" +206185,Flatscreen TV,1,300,05/09/19 19:37,"29 8th St, San Francisco, CA 94016" +206186,27in FHD Monitor,1,149.99,05/29/19 11:47,"320 5th St, Los Angeles, CA 90001" +206187,Macbook Pro Laptop,1,1700,05/01/19 15:58,"897 Lakeview St, Atlanta, GA 30301" +206188,Apple Airpods Headphones,1,150,05/10/19 15:47,"390 Jackson St, Los Angeles, CA 90001" +206189,Bose SoundSport Headphones,1,99.99,05/12/19 13:21,"143 14th St, Los Angeles, CA 90001" +206190,AA Batteries (4-pack),1,3.84,05/19/19 11:36,"297 Park St, Los Angeles, CA 90001" +206191,Wired Headphones,1,11.99,05/16/19 09:33,"709 Jefferson St, San Francisco, CA 94016" +206192,34in Ultrawide Monitor,1,379.99,05/16/19 02:32,"458 North St, Seattle, WA 98101" +206193,AAA Batteries (4-pack),1,2.99,05/18/19 09:38,"338 Maple St, Boston, MA 02215" +206194,USB-C Charging Cable,1,11.95,05/15/19 15:12,"122 10th St, Seattle, WA 98101" +206195,27in FHD Monitor,1,149.99,05/24/19 21:15,"993 Dogwood St, Portland, ME 04101" +206196,Lightning Charging Cable,1,14.95,05/26/19 13:27,"373 7th St, Seattle, WA 98101" +206196,20in Monitor,1,109.99,05/26/19 13:27,"373 7th St, Seattle, WA 98101" +206197,Google Phone,1,600,05/16/19 12:25,"317 Hickory St, Austin, TX 73301" +206198,Lightning Charging Cable,2,14.95,05/10/19 14:56,"623 South St, San Francisco, CA 94016" +206199,USB-C Charging Cable,1,11.95,05/29/19 13:21,"397 Sunset St, New York City, NY 10001" +206200,Wired Headphones,1,11.99,05/23/19 14:31,"292 13th St, Dallas, TX 75001" +206201,AA Batteries (4-pack),1,3.84,05/21/19 12:24,"304 Jackson St, Atlanta, GA 30301" +206202,27in 4K Gaming Monitor,1,389.99,05/18/19 12:31,"219 14th St, Los Angeles, CA 90001" +206203,AAA Batteries (4-pack),3,2.99,05/02/19 00:33,"956 North St, Atlanta, GA 30301" +206204,Macbook Pro Laptop,1,1700,05/04/19 13:47,"983 Hickory St, New York City, NY 10001" +206205,AAA Batteries (4-pack),1,2.99,05/02/19 13:41,"282 Lincoln St, San Francisco, CA 94016" +206206,Google Phone,1,600,05/21/19 00:04,"137 River St, Dallas, TX 75001" +206207,AAA Batteries (4-pack),1,2.99,05/29/19 12:34,"358 Hill St, San Francisco, CA 94016" +206208,Lightning Charging Cable,1,14.95,05/15/19 19:07,"680 Jackson St, Seattle, WA 98101" +206209,iPhone,1,700,05/27/19 14:06,"74 Lakeview St, Los Angeles, CA 90001" +206210,AA Batteries (4-pack),1,3.84,05/06/19 10:36,"446 13th St, Atlanta, GA 30301" +206211,AA Batteries (4-pack),2,3.84,05/20/19 08:54,"212 4th St, Seattle, WA 98101" +206212,20in Monitor,1,109.99,05/25/19 16:52,"985 Johnson St, Los Angeles, CA 90001" +206213,AAA Batteries (4-pack),1,2.99,05/25/19 22:18,"921 4th St, Atlanta, GA 30301" +206214,Wired Headphones,1,11.99,05/10/19 15:25,"158 12th St, Seattle, WA 98101" +206215,Wired Headphones,1,11.99,05/15/19 09:53,"722 Lake St, San Francisco, CA 94016" +206216,Wired Headphones,1,11.99,05/24/19 18:13,"789 1st St, New York City, NY 10001" +206217,AA Batteries (4-pack),1,3.84,05/01/19 13:36,"870 Walnut St, Seattle, WA 98101" +206218,Lightning Charging Cable,1,14.95,05/31/19 16:55,"388 Sunset St, Los Angeles, CA 90001" +206219,Lightning Charging Cable,1,14.95,05/04/19 21:34,"406 Pine St, Seattle, WA 98101" +206220,USB-C Charging Cable,1,11.95,05/30/19 17:45,"702 Madison St, San Francisco, CA 94016" +206221,AAA Batteries (4-pack),1,2.99,05/10/19 18:49,"325 Adams St, San Francisco, CA 94016" +206222,Lightning Charging Cable,1,14.95,05/02/19 20:26,"758 Meadow St, Los Angeles, CA 90001" +206223,Bose SoundSport Headphones,1,99.99,05/20/19 12:52,"322 5th St, Los Angeles, CA 90001" +206224,Wired Headphones,2,11.99,05/20/19 18:05,"508 11th St, Los Angeles, CA 90001" diff --git a/sales_data/Sales_November_2019.csv b/sales_data/Sales_November_2019.csv new file mode 100644 index 0000000..766af09 --- /dev/null +++ b/sales_data/Sales_November_2019.csv @@ -0,0 +1,18391 @@ +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +280886,Google Phone,1,600.0,11/06/19 10:28,"278 Meadow St, Seattle, WA 98101" +280887,USB-C Charging Cable,1,11.95,11/19/19 15:44,"400 Johnson St, Seattle, WA 98101" +280888,27in 4K Gaming Monitor,1,389.99,11/12/19 05:34,"814 Walnut St, Boston, MA 02215" +280889,Wired Headphones,1,11.99,11/06/19 13:26,"69 Sunset St, Los Angeles, CA 90001" +280890,Apple Airpods Headphones,1,150.0,11/17/19 23:04,"935 11th St, Dallas, TX 75001" +280891,ThinkPad Laptop,1,999.99,11/25/19 11:28,"783 6th St, San Francisco, CA 94016" +280892,AA Batteries (4-pack),1,3.84,11/08/19 11:39,"100 10th St, San Francisco, CA 94016" +280893,AA Batteries (4-pack),2,3.84,11/06/19 14:31,"5 Lincoln St, Seattle, WA 98101" +280894,AA Batteries (4-pack),2,3.84,11/09/19 16:06,"240 Chestnut St, Portland, OR 97035" +280895,Wired Headphones,1,11.99,11/15/19 15:30,"455 Willow St, Los Angeles, CA 90001" +280896,USB-C Charging Cable,1,11.95,11/14/19 21:55,"454 Cedar St, Seattle, WA 98101" +280897,Apple Airpods Headphones,1,150.0,11/11/19 10:53,"177 Cedar St, Atlanta, GA 30301" +280898,Wired Headphones,1,11.99,11/24/19 10:37,"730 River St, San Francisco, CA 94016" +280899,27in 4K Gaming Monitor,1,389.99,11/22/19 10:53,"607 10th St, Atlanta, GA 30301" +280899,Google Phone,1,600.0,11/22/19 10:53,"607 10th St, Atlanta, GA 30301" +280900,AA Batteries (4-pack),1,3.84,11/16/19 23:03,"27 Main St, San Francisco, CA 94016" +280901,USB-C Charging Cable,1,11.95,11/02/19 19:30,"626 Spruce St, Portland, OR 97035" +280902,USB-C Charging Cable,1,11.95,11/20/19 14:59,"181 12th St, Boston, MA 02215" +280903,AAA Batteries (4-pack),1,2.99,11/17/19 22:47,"296 Johnson St, Atlanta, GA 30301" +280904,AAA Batteries (4-pack),3,2.99,11/27/19 11:04,"385 Maple St, San Francisco, CA 94016" +280905,AA Batteries (4-pack),1,3.84,11/25/19 21:11,"600 11th St, Los Angeles, CA 90001" +280906,Macbook Pro Laptop,1,1700.0,11/07/19 21:00,"299 Church St, Boston, MA 02215" +280907,iPhone,1,700.0,11/12/19 10:21,"971 Cherry St, Austin, TX 73301" +280908,Google Phone,1,600.0,11/07/19 10:32,"856 Hickory St, Atlanta, GA 30301" +280909,Bose SoundSport Headphones,1,99.99,11/23/19 15:29,"996 South St, San Francisco, CA 94016" +280910,Bose SoundSport Headphones,1,99.99,11/27/19 02:59,"432 Maple St, Los Angeles, CA 90001" +280911,Lightning Charging Cable,2,14.95,11/04/19 15:53,"768 Main St, San Francisco, CA 94016" +280912,Wired Headphones,1,11.99,11/05/19 16:54,"533 12th St, Austin, TX 73301" +280913,AAA Batteries (4-pack),1,2.99,11/02/19 18:52,"828 Park St, Austin, TX 73301" +280914,AA Batteries (4-pack),1,3.84,11/22/19 11:53,"450 11th St, San Francisco, CA 94016" +280915,AA Batteries (4-pack),1,3.84,11/01/19 16:10,"470 Willow St, San Francisco, CA 94016" +280916,AA Batteries (4-pack),1,3.84,11/20/19 11:48,"941 14th St, Seattle, WA 98101" +280917,Wired Headphones,1,11.99,11/08/19 19:26,"653 Cedar St, Portland, OR 97035" +280918,20in Monitor,1,109.99,11/09/19 10:44,"513 Church St, Portland, OR 97035" +280919,Bose SoundSport Headphones,1,99.99,11/27/19 12:12,"84 13th St, Austin, TX 73301" +280920,Apple Airpods Headphones,1,150.0,11/29/19 17:06,"767 Willow St, Seattle, WA 98101" +280921,Lightning Charging Cable,1,14.95,11/07/19 12:52,"727 Church St, Dallas, TX 75001" +280922,AAA Batteries (4-pack),1,2.99,11/23/19 23:11,"676 9th St, San Francisco, CA 94016" +280923,27in 4K Gaming Monitor,1,389.99,11/02/19 15:25,"441 West St, Atlanta, GA 30301" +280924,AAA Batteries (4-pack),3,2.99,11/03/19 13:25,"111 Hill St, Los Angeles, CA 90001" +280925,AAA Batteries (4-pack),2,2.99,11/27/19 02:10,"384 Hill St, San Francisco, CA 94016" +280926,Apple Airpods Headphones,1,150.0,11/15/19 08:56,"289 Forest St, New York City, NY 10001" +280927,Lightning Charging Cable,1,14.95,11/15/19 08:14,"707 Adams St, Portland, OR 97035" +280928,AAA Batteries (4-pack),1,2.99,11/22/19 07:41,"961 12th St, Portland, ME 04101" +280929,AA Batteries (4-pack),1,3.84,11/01/19 11:12,"449 Hickory St, New York City, NY 10001" +280930,AA Batteries (4-pack),1,3.84,11/04/19 07:47,"501 Meadow St, New York City, NY 10001" +280931,USB-C Charging Cable,1,11.95,11/14/19 06:49,"880 Wilson St, Los Angeles, CA 90001" +280932,LG Dryer,1,600.0,11/01/19 15:06,"28 Pine St, Seattle, WA 98101" +280933,Apple Airpods Headphones,1,150.0,11/25/19 22:31,"921 Wilson St, Atlanta, GA 30301" +280934,Wired Headphones,1,11.99,11/03/19 13:10,"458 Cedar St, San Francisco, CA 94016" +280935,Apple Airpods Headphones,1,150.0,11/21/19 09:04,"462 Meadow St, San Francisco, CA 94016" +280936,AAA Batteries (4-pack),1,2.99,11/03/19 22:05,"173 North St, Seattle, WA 98101" +280937,Macbook Pro Laptop,1,1700.0,11/16/19 17:06,"703 Lake St, San Francisco, CA 94016" +280938,Flatscreen TV,1,300.0,11/01/19 10:59,"699 Elm St, San Francisco, CA 94016" +280939,AA Batteries (4-pack),1,3.84,11/10/19 10:42,"666 4th St, Atlanta, GA 30301" +280940,Bose SoundSport Headphones,1,99.99,11/19/19 17:07,"894 1st St, New York City, NY 10001" +280941,Wired Headphones,1,11.99,11/22/19 20:20,"368 4th St, Los Angeles, CA 90001" +280942,Bose SoundSport Headphones,1,99.99,11/01/19 10:55,"852 9th St, New York City, NY 10001" +280943,USB-C Charging Cable,2,11.95,11/08/19 10:48,"246 Willow St, Boston, MA 02215" +280944,AA Batteries (4-pack),1,3.84,11/30/19 17:03,"385 Jefferson St, San Francisco, CA 94016" +280945,Macbook Pro Laptop,1,1700.0,11/07/19 17:12,"775 West St, San Francisco, CA 94016" +280946,Apple Airpods Headphones,1,150.0,11/06/19 20:35,"422 Maple St, Dallas, TX 75001" +280947,USB-C Charging Cable,1,11.95,11/21/19 07:57,"350 4th St, Austin, TX 73301" +280948,Flatscreen TV,1,300.0,11/15/19 15:20,"611 Johnson St, San Francisco, CA 94016" +280949,Vareebadd Phone,1,400.0,11/18/19 21:54,"636 Chestnut St, San Francisco, CA 94016" +280950,20in Monitor,1,109.99,11/14/19 11:03,"196 Jackson St, San Francisco, CA 94016" +280951,Apple Airpods Headphones,1,150.0,11/09/19 15:39,"866 Madison St, San Francisco, CA 94016" +280952,AAA Batteries (4-pack),1,2.99,11/15/19 18:35,"692 Center St, Boston, MA 02215" +280953,ThinkPad Laptop,1,999.99,11/01/19 23:53,"13 10th St, Boston, MA 02215" +280954,AA Batteries (4-pack),2,3.84,11/20/19 01:11,"706 Washington St, Austin, TX 73301" +280955,Bose SoundSport Headphones,1,99.99,11/16/19 09:34,"880 1st St, Los Angeles, CA 90001" +280955,USB-C Charging Cable,1,11.95,11/16/19 09:34,"880 1st St, Los Angeles, CA 90001" +280956,Google Phone,1,600.0,11/12/19 20:01,"734 Jefferson St, San Francisco, CA 94016" +280957,Bose SoundSport Headphones,1,99.99,11/30/19 10:51,"336 Wilson St, San Francisco, CA 94016" +280958,Wired Headphones,1,11.99,11/04/19 22:23,"995 Maple St, Atlanta, GA 30301" +280959,Lightning Charging Cable,1,14.95,11/27/19 20:55,"690 Forest St, Dallas, TX 75001" +280960,iPhone,1,700.0,11/15/19 19:22,"827 7th St, Boston, MA 02215" +280961,Macbook Pro Laptop,1,1700.0,11/05/19 07:41,"783 Chestnut St, Los Angeles, CA 90001" +280962,Vareebadd Phone,1,400.0,11/24/19 11:39,"519 9th St, Austin, TX 73301" +280962,AAA Batteries (4-pack),2,2.99,11/24/19 11:39,"519 9th St, Austin, TX 73301" +280963,Apple Airpods Headphones,1,150.0,11/12/19 07:21,"508 Washington St, Seattle, WA 98101" +280964,AA Batteries (4-pack),1,3.84,11/18/19 13:44,"112 Pine St, Portland, OR 97035" +280965,Macbook Pro Laptop,1,1700.0,11/22/19 19:32,"753 Hill St, Los Angeles, CA 90001" +280966,Google Phone,1,600.0,11/03/19 09:05,"60 Spruce St, Los Angeles, CA 90001" +280967,Lightning Charging Cable,1,14.95,11/11/19 14:38,"798 Jackson St, Portland, OR 97035" +280968,27in 4K Gaming Monitor,1,389.99,11/27/19 13:48,"847 West St, Portland, OR 97035" +280969,iPhone,1,700.0,11/04/19 04:05,"385 Spruce St, San Francisco, CA 94016" +280970,AA Batteries (4-pack),1,3.84,11/27/19 20:56,"989 1st St, Dallas, TX 75001" +280971,ThinkPad Laptop,1,999.99,11/10/19 14:08,"823 Pine St, Atlanta, GA 30301" +280972,AA Batteries (4-pack),2,3.84,11/10/19 14:22,"765 Lincoln St, Los Angeles, CA 90001" +280973,Wired Headphones,2,11.99,11/06/19 07:38,"914 Johnson St, San Francisco, CA 94016" +280974,Lightning Charging Cable,1,14.95,11/07/19 13:09,"986 Johnson St, Los Angeles, CA 90001" +280975,AA Batteries (4-pack),1,3.84,11/13/19 17:43,"485 North St, Los Angeles, CA 90001" +280976,Wired Headphones,2,11.99,11/10/19 21:49,"504 Main St, Seattle, WA 98101" +280977,AA Batteries (4-pack),2,3.84,11/28/19 12:40,"171 13th St, Seattle, WA 98101" +280978,Wired Headphones,1,11.99,11/12/19 19:28,"637 Ridge St, Austin, TX 73301" +280979,Lightning Charging Cable,1,14.95,11/08/19 17:16,"702 Park St, New York City, NY 10001" +280980,Lightning Charging Cable,2,14.95,11/02/19 16:35,"694 Lakeview St, Los Angeles, CA 90001" +280981,Wired Headphones,1,11.99,11/19/19 15:32,"715 2nd St, San Francisco, CA 94016" +280982,USB-C Charging Cable,1,11.95,11/30/19 18:36,"477 Dogwood St, San Francisco, CA 94016" +280983,AAA Batteries (4-pack),1,2.99,11/25/19 13:14,"425 14th St, San Francisco, CA 94016" +280984,Apple Airpods Headphones,1,150.0,11/12/19 21:12,"831 2nd St, Los Angeles, CA 90001" +280985,Bose SoundSport Headphones,1,99.99,11/30/19 08:44,"420 North St, Boston, MA 02215" +280986,AA Batteries (4-pack),1,3.84,11/09/19 20:14,"95 6th St, Dallas, TX 75001" +280987,Apple Airpods Headphones,1,150.0,11/02/19 17:37,"288 Center St, Seattle, WA 98101" +280988,34in Ultrawide Monitor,1,379.99,11/01/19 10:12,"323 River St, San Francisco, CA 94016" +280989,Apple Airpods Headphones,2,150.0,11/09/19 19:24,"697 Jackson St, Portland, OR 97035" +280990,Flatscreen TV,1,300.0,11/19/19 18:41,"465 Jefferson St, Seattle, WA 98101" +280991,Bose SoundSport Headphones,1,99.99,11/10/19 14:57,"322 Walnut St, Dallas, TX 75001" +280992,AA Batteries (4-pack),2,3.84,11/03/19 17:53,"911 Pine St, Portland, ME 04101" +280993,27in FHD Monitor,1,149.99,11/23/19 13:16,"792 Jefferson St, Boston, MA 02215" +280994,USB-C Charging Cable,1,11.95,11/13/19 00:41,"767 Lakeview St, Los Angeles, CA 90001" +280995,Apple Airpods Headphones,1,150.0,11/02/19 19:03,"655 9th St, Los Angeles, CA 90001" +280996,Bose SoundSport Headphones,1,99.99,11/19/19 10:57,"122 1st St, Dallas, TX 75001" +280997,ThinkPad Laptop,1,999.99,11/13/19 13:53,"15 Hickory St, Austin, TX 73301" +280998,34in Ultrawide Monitor,1,379.99,11/29/19 13:06,"863 Church St, Austin, TX 73301" +280999,AA Batteries (4-pack),1,3.84,11/21/19 20:34,"294 Washington St, New York City, NY 10001" +281000,AAA Batteries (4-pack),1,2.99,11/10/19 10:54,"489 7th St, Boston, MA 02215" +281001,Flatscreen TV,1,300.0,11/18/19 19:20,"722 Madison St, Dallas, TX 75001" +281002,Wired Headphones,1,11.99,11/19/19 07:36,"857 Highland St, Boston, MA 02215" +281003,AAA Batteries (4-pack),1,2.99,11/28/19 17:44,"294 Cherry St, New York City, NY 10001" +281004,AA Batteries (4-pack),1,3.84,11/16/19 00:36,"606 1st St, Austin, TX 73301" +281005,Lightning Charging Cable,1,14.95,11/07/19 05:26,"969 Adams St, San Francisco, CA 94016" +281006,iPhone,1,700.0,11/03/19 08:13,"42 Lincoln St, New York City, NY 10001" +281007,AAA Batteries (4-pack),1,2.99,11/25/19 08:27,"427 Lincoln St, San Francisco, CA 94016" +281008,AA Batteries (4-pack),1,3.84,11/24/19 20:20,"495 Pine St, San Francisco, CA 94016" +281009,Bose SoundSport Headphones,1,99.99,11/10/19 19:10,"441 Chestnut St, Los Angeles, CA 90001" +281010,27in 4K Gaming Monitor,1,389.99,11/07/19 13:08,"170 Park St, San Francisco, CA 94016" +281011,Bose SoundSport Headphones,1,99.99,11/20/19 01:11,"689 Wilson St, Portland, OR 97035" +281012,Apple Airpods Headphones,1,150.0,11/18/19 13:11,"111 Adams St, Los Angeles, CA 90001" +281013,AAA Batteries (4-pack),2,2.99,11/19/19 18:10,"146 South St, Los Angeles, CA 90001" +281014,Lightning Charging Cable,1,14.95,11/28/19 11:12,"345 North St, Seattle, WA 98101" +281015,AA Batteries (4-pack),1,3.84,11/04/19 16:30,"80 Wilson St, Boston, MA 02215" +281016,Wired Headphones,1,11.99,11/09/19 13:25,"762 Wilson St, Portland, OR 97035" +281017,Apple Airpods Headphones,1,150.0,11/08/19 13:41,"601 Dogwood St, Seattle, WA 98101" +281018,USB-C Charging Cable,1,11.95,11/21/19 00:25,"216 6th St, San Francisco, CA 94016" +281019,USB-C Charging Cable,1,11.95,11/12/19 13:24,"128 Meadow St, Boston, MA 02215" +281020,iPhone,1,700.0,11/25/19 10:16,"317 Hill St, Los Angeles, CA 90001" +281020,Apple Airpods Headphones,1,150.0,11/25/19 10:16,"317 Hill St, Los Angeles, CA 90001" +281021,iPhone,1,700.0,11/14/19 23:09,"887 South St, Boston, MA 02215" +281022,Bose SoundSport Headphones,1,99.99,11/08/19 12:37,"707 Forest St, Portland, OR 97035" +281023,Google Phone,1,600.0,11/20/19 16:47,"498 Hill St, Austin, TX 73301" +281023,Bose SoundSport Headphones,1,99.99,11/20/19 16:47,"498 Hill St, Austin, TX 73301" +281024,AA Batteries (4-pack),1,3.84,11/16/19 16:54,"851 Maple St, Dallas, TX 75001" +281025,Bose SoundSport Headphones,1,99.99,11/25/19 12:33,"268 Cedar St, San Francisco, CA 94016" +281026,Wired Headphones,1,11.99,11/21/19 17:32,"428 8th St, New York City, NY 10001" +281027,20in Monitor,1,109.99,11/14/19 22:02,"719 1st St, Los Angeles, CA 90001" +281028,iPhone,1,700.0,11/23/19 14:25,"30 Jefferson St, Atlanta, GA 30301" +281029,Google Phone,1,600.0,11/22/19 09:57,"641 Johnson St, San Francisco, CA 94016" +281030,iPhone,1,700.0,11/29/19 18:45,"464 Spruce St, San Francisco, CA 94016" +281030,Lightning Charging Cable,1,14.95,11/29/19 18:45,"464 Spruce St, San Francisco, CA 94016" +281031,USB-C Charging Cable,1,11.95,11/24/19 20:26,"583 Highland St, Portland, OR 97035" +281032,AA Batteries (4-pack),1,3.84,11/19/19 18:40,"178 South St, Los Angeles, CA 90001" +281033,Lightning Charging Cable,1,14.95,11/19/19 16:46,"466 River St, Portland, OR 97035" +281034,Lightning Charging Cable,1,14.95,11/22/19 21:33,"572 Johnson St, Atlanta, GA 30301" +281035,AA Batteries (4-pack),2,3.84,11/12/19 20:49,"283 Madison St, Portland, OR 97035" +281036,Lightning Charging Cable,3,14.95,11/28/19 16:19,"827 Hill St, Boston, MA 02215" +281037,34in Ultrawide Monitor,1,379.99,11/24/19 12:54,"899 Walnut St, Atlanta, GA 30301" +281038,USB-C Charging Cable,1,11.95,11/09/19 16:31,"592 Dogwood St, New York City, NY 10001" +281039,Flatscreen TV,1,300.0,11/28/19 13:32,"122 Main St, Austin, TX 73301" +281040,USB-C Charging Cable,1,11.95,11/19/19 18:53,"574 Cedar St, Boston, MA 02215" +281041,Macbook Pro Laptop,1,1700.0,11/09/19 19:39,"807 Wilson St, Boston, MA 02215" +281042,20in Monitor,1,109.99,11/06/19 10:54,"78 Sunset St, Los Angeles, CA 90001" +281043,USB-C Charging Cable,1,11.95,11/04/19 10:32,"787 Jackson St, Los Angeles, CA 90001" +281044,Lightning Charging Cable,1,14.95,11/05/19 10:22,"292 Cedar St, Seattle, WA 98101" +281045,Apple Airpods Headphones,1,150.0,11/24/19 12:33,"392 Jackson St, Austin, TX 73301" +281046,iPhone,1,700.0,11/13/19 23:52,"846 10th St, New York City, NY 10001" +281047,USB-C Charging Cable,1,11.95,11/18/19 17:53,"184 Dogwood St, Boston, MA 02215" +281048,USB-C Charging Cable,2,11.95,11/08/19 07:52,"33 Johnson St, Dallas, TX 75001" +281049,27in 4K Gaming Monitor,1,389.99,11/09/19 08:51,"114 13th St, Boston, MA 02215" +281050,Google Phone,1,600.0,11/20/19 00:55,"259 Lakeview St, Boston, MA 02215" +281051,AA Batteries (4-pack),1,3.84,11/07/19 10:52,"477 Chestnut St, Atlanta, GA 30301" +281052,Lightning Charging Cable,2,14.95,11/27/19 11:57,"753 Dogwood St, Dallas, TX 75001" +281053,Google Phone,1,600.0,11/22/19 21:01,"662 River St, Seattle, WA 98101" +281054,AAA Batteries (4-pack),1,2.99,11/19/19 18:36,"17 14th St, New York City, NY 10001" +281055,USB-C Charging Cable,2,11.95,11/12/19 12:14,"402 7th St, Los Angeles, CA 90001" +281056,AA Batteries (4-pack),1,3.84,11/24/19 22:00,"699 Cherry St, Boston, MA 02215" +281057,Macbook Pro Laptop,1,1700.0,11/02/19 23:23,"667 2nd St, San Francisco, CA 94016" +281058,USB-C Charging Cable,1,11.95,11/21/19 07:33,"638 4th St, San Francisco, CA 94016" +281059,iPhone,1,700.0,11/06/19 09:56,"879 Main St, San Francisco, CA 94016" +281059,Lightning Charging Cable,1,14.95,11/06/19 09:56,"879 Main St, San Francisco, CA 94016" +281060,Wired Headphones,1,11.99,11/19/19 15:29,"960 Meadow St, New York City, NY 10001" +281061,AAA Batteries (4-pack),1,2.99,11/03/19 13:39,"610 Chestnut St, Los Angeles, CA 90001" +281062,USB-C Charging Cable,1,11.95,11/11/19 16:10,"671 Adams St, New York City, NY 10001" +281063,iPhone,1,700.0,11/12/19 17:34,"35 Highland St, Boston, MA 02215" +281064,Google Phone,1,600.0,11/07/19 17:05,"802 7th St, Portland, ME 04101" +281065,27in 4K Gaming Monitor,1,389.99,11/15/19 21:14,"903 11th St, San Francisco, CA 94016" +281066,Google Phone,1,600.0,11/06/19 17:19,"304 Madison St, San Francisco, CA 94016" +281066,Wired Headphones,1,11.99,11/06/19 17:19,"304 Madison St, San Francisco, CA 94016" +281067,Wired Headphones,1,11.99,11/11/19 20:35,"250 6th St, Los Angeles, CA 90001" +281068,Apple Airpods Headphones,1,150.0,11/28/19 21:58,"429 Main St, Seattle, WA 98101" +281069,20in Monitor,1,109.99,11/01/19 14:12,"192 Lakeview St, San Francisco, CA 94016" +281070,USB-C Charging Cable,1,11.95,11/23/19 21:45,"709 Johnson St, Austin, TX 73301" +281071,AA Batteries (4-pack),1,3.84,11/17/19 09:00,"404 Cedar St, New York City, NY 10001" +281072,AA Batteries (4-pack),1,3.84,11/09/19 22:48,"61 Main St, Boston, MA 02215" +281073,AAA Batteries (4-pack),1,2.99,11/15/19 05:39,"989 4th St, Los Angeles, CA 90001" +281074,Wired Headphones,1,11.99,11/16/19 21:03,"39 Lake St, San Francisco, CA 94016" +281075,Apple Airpods Headphones,1,150.0,11/09/19 20:22,"682 6th St, San Francisco, CA 94016" +281076,iPhone,1,700.0,11/28/19 12:22,"35 South St, San Francisco, CA 94016" +281076,Wired Headphones,1,11.99,11/28/19 12:22,"35 South St, San Francisco, CA 94016" +281077,Wired Headphones,1,11.99,11/25/19 08:46,"565 Pine St, Seattle, WA 98101" +281078,Wired Headphones,1,11.99,11/23/19 19:09,"961 7th St, New York City, NY 10001" +281079,USB-C Charging Cable,1,11.95,11/09/19 00:25,"823 14th St, New York City, NY 10001" +281080,USB-C Charging Cable,1,11.95,11/12/19 02:43,"417 North St, San Francisco, CA 94016" +281081,Flatscreen TV,1,300.0,11/19/19 07:10,"17 Church St, San Francisco, CA 94016" +281082,Google Phone,1,600.0,11/14/19 20:53,"917 Lincoln St, Los Angeles, CA 90001" +281083,Apple Airpods Headphones,1,150.0,11/24/19 17:10,"413 Ridge St, Los Angeles, CA 90001" +281084,Vareebadd Phone,1,400.0,11/16/19 14:40,"615 Chestnut St, Atlanta, GA 30301" +281084,USB-C Charging Cable,1,11.95,11/16/19 14:40,"615 Chestnut St, Atlanta, GA 30301" +281085,Wired Headphones,1,11.99,11/03/19 21:12,"381 Lake St, Los Angeles, CA 90001" +281086,Apple Airpods Headphones,1,150.0,11/21/19 14:11,"193 Church St, Atlanta, GA 30301" +281087,AA Batteries (4-pack),1,3.84,11/05/19 02:12,"413 Jefferson St, Portland, OR 97035" +281088,Apple Airpods Headphones,1,150.0,11/13/19 19:41,"939 Willow St, Los Angeles, CA 90001" +281089,20in Monitor,1,109.99,11/25/19 19:56,"684 West St, San Francisco, CA 94016" +281090,Flatscreen TV,1,300.0,11/01/19 21:29,"631 6th St, Los Angeles, CA 90001" +281091,USB-C Charging Cable,1,11.95,11/08/19 06:26,"6 7th St, San Francisco, CA 94016" +281092,Apple Airpods Headphones,1,150.0,11/07/19 18:27,"829 Lakeview St, New York City, NY 10001" +281093,USB-C Charging Cable,3,11.95,11/15/19 07:58,"890 Pine St, Los Angeles, CA 90001" +281094,AAA Batteries (4-pack),1,2.99,11/24/19 08:31,"401 1st St, Austin, TX 73301" +281095,Vareebadd Phone,1,400.0,11/28/19 12:35,"161 Washington St, San Francisco, CA 94016" +281096,USB-C Charging Cable,1,11.95,11/15/19 09:31,"503 Spruce St, San Francisco, CA 94016" +281097,ThinkPad Laptop,1,999.99,11/18/19 18:03,"745 Adams St, Atlanta, GA 30301" +281098,ThinkPad Laptop,1,999.99,11/24/19 10:54,"897 Forest St, Portland, OR 97035" +281099,USB-C Charging Cable,1,11.95,11/02/19 13:29,"633 Lincoln St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +281100,Bose SoundSport Headphones,1,99.99,11/30/19 15:19,"769 4th St, San Francisco, CA 94016" +281101,iPhone,1,700,11/13/19 20:28,"70 Hickory St, New York City, NY 10001" +281102,34in Ultrawide Monitor,1,379.99,11/26/19 11:34,"765 Elm St, Dallas, TX 75001" +281103,27in 4K Gaming Monitor,1,389.99,11/02/19 06:57,"341 6th St, New York City, NY 10001" +281104,AAA Batteries (4-pack),2,2.99,11/20/19 10:31,"756 Lake St, San Francisco, CA 94016" +281105,Macbook Pro Laptop,1,1700,11/11/19 19:10,"699 4th St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +281106,27in FHD Monitor,1,149.99,11/22/19 19:55,"468 Forest St, Boston, MA 02215" +281107,USB-C Charging Cable,1,11.95,11/26/19 18:36,"768 Cedar St, Atlanta, GA 30301" +281108,Lightning Charging Cable,1,14.95,11/03/19 21:11,"467 9th St, Los Angeles, CA 90001" +281109,Bose SoundSport Headphones,1,99.99,11/24/19 16:52,"519 1st St, Austin, TX 73301" +281110,iPhone,1,700,11/11/19 10:05,"942 Jefferson St, New York City, NY 10001" +281111,Lightning Charging Cable,1,14.95,11/14/19 13:33,"154 7th St, Atlanta, GA 30301" +281112,Wired Headphones,1,11.99,11/23/19 20:26,"927 7th St, New York City, NY 10001" +281113,USB-C Charging Cable,1,11.95,11/15/19 05:32,"330 7th St, San Francisco, CA 94016" +281114,Bose SoundSport Headphones,1,99.99,11/28/19 18:20,"449 6th St, Dallas, TX 75001" +281115,Macbook Pro Laptop,1,1700,11/17/19 07:12,"798 Willow St, New York City, NY 10001" +281116,ThinkPad Laptop,1,999.99,11/09/19 18:15,"124 8th St, New York City, NY 10001" +281117,27in FHD Monitor,1,149.99,11/18/19 10:05,"459 2nd St, Dallas, TX 75001" +281118,USB-C Charging Cable,1,11.95,11/29/19 23:19,"317 Washington St, New York City, NY 10001" +281119,AAA Batteries (4-pack),8,2.99,11/23/19 18:52,"177 5th St, Dallas, TX 75001" +281120,Apple Airpods Headphones,1,150,11/08/19 10:23,"275 Center St, Los Angeles, CA 90001" +281121,34in Ultrawide Monitor,1,379.99,11/09/19 00:41,"246 West St, San Francisco, CA 94016" +281122,AAA Batteries (4-pack),5,2.99,11/12/19 15:44,"814 South St, New York City, NY 10001" +281123,Apple Airpods Headphones,1,150,11/10/19 16:54,"754 7th St, New York City, NY 10001" +281124,Lightning Charging Cable,1,14.95,11/06/19 22:44,"918 10th St, Atlanta, GA 30301" +281125,AA Batteries (4-pack),1,3.84,11/07/19 09:12,"445 Washington St, Austin, TX 73301" +281126,34in Ultrawide Monitor,1,379.99,11/18/19 12:39,"918 Church St, Dallas, TX 75001" +281127,Macbook Pro Laptop,1,1700,11/25/19 21:58,"177 6th St, Los Angeles, CA 90001" +281128,Flatscreen TV,1,300,11/18/19 17:28,"168 Hickory St, Portland, OR 97035" +281129,AAA Batteries (4-pack),2,2.99,11/22/19 11:47,"607 Lakeview St, Los Angeles, CA 90001" +281130,27in FHD Monitor,1,149.99,11/07/19 19:21,"186 13th St, Boston, MA 02215" +281130,USB-C Charging Cable,1,11.95,11/07/19 19:21,"186 13th St, Boston, MA 02215" +281131,USB-C Charging Cable,1,11.95,11/16/19 11:52,"357 Hill St, Los Angeles, CA 90001" +281132,20in Monitor,1,109.99,11/06/19 21:18,"131 Cherry St, San Francisco, CA 94016" +281133,Macbook Pro Laptop,1,1700,11/28/19 14:30,"184 Highland St, Portland, OR 97035" +281134,Flatscreen TV,1,300,11/20/19 06:21,"618 Sunset St, New York City, NY 10001" +281135,AA Batteries (4-pack),6,3.84,11/06/19 21:33,"761 Chestnut St, Portland, OR 97035" +281136,AAA Batteries (4-pack),1,2.99,11/08/19 17:51,"667 Ridge St, San Francisco, CA 94016" +281137,AA Batteries (4-pack),1,3.84,11/25/19 18:48,"42 11th St, Dallas, TX 75001" +281138,Lightning Charging Cable,2,14.95,11/05/19 16:33,"881 Highland St, Atlanta, GA 30301" +281139,Google Phone,1,600,11/29/19 16:18,"503 2nd St, San Francisco, CA 94016" +281140,ThinkPad Laptop,1,999.99,11/03/19 16:04,"284 Cherry St, Atlanta, GA 30301" +281141,Flatscreen TV,1,300,11/24/19 19:07,"199 Chestnut St, New York City, NY 10001" +281142,Apple Airpods Headphones,1,150,11/27/19 10:27,"849 Sunset St, Boston, MA 02215" +281143,Apple Airpods Headphones,1,150,11/10/19 16:30,"980 Cherry St, Atlanta, GA 30301" +281144,USB-C Charging Cable,1,11.95,11/03/19 14:24,"4 14th St, Los Angeles, CA 90001" +281145,USB-C Charging Cable,1,11.95,11/17/19 18:15,"457 6th St, New York City, NY 10001" +281145,AA Batteries (4-pack),1,3.84,11/17/19 18:15,"457 6th St, New York City, NY 10001" +281146,AAA Batteries (4-pack),2,2.99,11/12/19 16:23,"794 Park St, Portland, OR 97035" +281147,Wired Headphones,1,11.99,11/17/19 00:04,"796 Willow St, San Francisco, CA 94016" +281148,34in Ultrawide Monitor,1,379.99,11/26/19 18:29,"526 River St, Austin, TX 73301" +281149,AAA Batteries (4-pack),1,2.99,11/11/19 09:13,"495 Elm St, Dallas, TX 75001" +281150,AA Batteries (4-pack),1,3.84,11/14/19 18:35,"601 Willow St, Portland, OR 97035" +281151,Bose SoundSport Headphones,1,99.99,11/18/19 10:45,"740 Wilson St, San Francisco, CA 94016" +281152,Google Phone,1,600,11/19/19 14:57,"71 1st St, Dallas, TX 75001" +281152,USB-C Charging Cable,1,11.95,11/19/19 14:57,"71 1st St, Dallas, TX 75001" +281153,34in Ultrawide Monitor,1,379.99,11/09/19 20:15,"774 Washington St, Atlanta, GA 30301" +281154,Apple Airpods Headphones,1,150,11/04/19 10:15,"924 Jefferson St, New York City, NY 10001" +281155,USB-C Charging Cable,1,11.95,11/10/19 12:14,"556 Madison St, Dallas, TX 75001" +281156,27in 4K Gaming Monitor,1,389.99,11/25/19 15:41,"918 Walnut St, New York City, NY 10001" +281157,AA Batteries (4-pack),1,3.84,11/19/19 12:49,"259 2nd St, San Francisco, CA 94016" +281158,USB-C Charging Cable,1,11.95,11/08/19 18:35,"791 7th St, San Francisco, CA 94016" +281159,Wired Headphones,1,11.99,11/29/19 22:15,"139 Lincoln St, Boston, MA 02215" +281160,27in FHD Monitor,1,149.99,11/12/19 16:00,"368 14th St, San Francisco, CA 94016" +281161,iPhone,1,700,11/22/19 06:29,"393 Church St, Dallas, TX 75001" +281162,ThinkPad Laptop,1,999.99,11/19/19 21:28,"120 Madison St, Seattle, WA 98101" +281163,iPhone,1,700,11/06/19 10:53,"870 River St, Austin, TX 73301" +281164,Lightning Charging Cable,1,14.95,11/15/19 22:10,"153 Meadow St, Atlanta, GA 30301" +281164,USB-C Charging Cable,1,11.95,11/15/19 22:10,"153 Meadow St, Atlanta, GA 30301" +281165,Wired Headphones,1,11.99,11/20/19 16:48,"683 Washington St, New York City, NY 10001" +281166,20in Monitor,1,109.99,11/10/19 07:14,"641 Jackson St, New York City, NY 10001" +281167,Wired Headphones,1,11.99,11/12/19 19:58,"813 10th St, Austin, TX 73301" +281168,AA Batteries (4-pack),1,3.84,11/22/19 12:11,"412 Main St, Los Angeles, CA 90001" +281169,Flatscreen TV,1,300,11/21/19 18:16,"296 North St, Boston, MA 02215" +281170,ThinkPad Laptop,1,999.99,11/20/19 21:19,"467 Sunset St, New York City, NY 10001" +281171,Flatscreen TV,1,300,11/04/19 05:29,"394 Jefferson St, San Francisco, CA 94016" +281172,iPhone,1,700,11/24/19 16:37,"63 Park St, Boston, MA 02215" +281172,Wired Headphones,1,11.99,11/24/19 16:37,"63 Park St, Boston, MA 02215" +281173,34in Ultrawide Monitor,1,379.99,11/20/19 18:46,"34 8th St, Dallas, TX 75001" +281174,Lightning Charging Cable,1,14.95,11/06/19 09:58,"392 Maple St, Austin, TX 73301" +281175,Apple Airpods Headphones,1,150,11/23/19 11:14,"5 Forest St, New York City, NY 10001" +281176,iPhone,1,700,11/03/19 15:57,"544 Chestnut St, Boston, MA 02215" +281177,20in Monitor,1,109.99,11/15/19 07:32,"372 10th St, New York City, NY 10001" +281177,Flatscreen TV,1,300,11/15/19 07:32,"372 10th St, New York City, NY 10001" +281178,Lightning Charging Cable,1,14.95,11/19/19 19:09,"520 Forest St, Boston, MA 02215" +281179,Bose SoundSport Headphones,1,99.99,11/15/19 14:46,"909 7th St, San Francisco, CA 94016" +281180,Bose SoundSport Headphones,1,99.99,11/06/19 02:06,"913 Church St, New York City, NY 10001" +281181,27in 4K Gaming Monitor,1,389.99,11/27/19 00:21,"753 Adams St, Dallas, TX 75001" +281182,USB-C Charging Cable,1,11.95,11/03/19 08:43,"761 7th St, Boston, MA 02215" +281183,iPhone,1,700,11/25/19 19:27,"642 1st St, Los Angeles, CA 90001" +281183,Lightning Charging Cable,1,14.95,11/25/19 19:27,"642 1st St, Los Angeles, CA 90001" +281184,Lightning Charging Cable,1,14.95,11/10/19 11:42,"536 Main St, Portland, OR 97035" +281185,iPhone,1,700,11/05/19 11:46,"452 Wilson St, Atlanta, GA 30301" +281186,AAA Batteries (4-pack),1,2.99,11/02/19 08:18,"265 2nd St, San Francisco, CA 94016" +281187,27in FHD Monitor,1,149.99,11/29/19 09:40,"697 Cherry St, San Francisco, CA 94016" +281188,Bose SoundSport Headphones,1,99.99,11/23/19 21:27,"320 8th St, San Francisco, CA 94016" +281189,Lightning Charging Cable,1,14.95,11/26/19 18:55,"834 Pine St, Boston, MA 02215" +281190,AA Batteries (4-pack),1,3.84,11/22/19 16:09,"402 8th St, Dallas, TX 75001" +281191,AAA Batteries (4-pack),2,2.99,11/22/19 10:19,"371 Hickory St, Seattle, WA 98101" +281192,Lightning Charging Cable,1,14.95,11/02/19 12:37,"962 Main St, Los Angeles, CA 90001" +281193,AA Batteries (4-pack),2,3.84,11/19/19 14:15,"845 4th St, New York City, NY 10001" +281194,AA Batteries (4-pack),1,3.84,11/17/19 20:38,"510 Willow St, Boston, MA 02215" +281195,iPhone,1,700,11/28/19 18:53,"971 7th St, San Francisco, CA 94016" +281196,USB-C Charging Cable,1,11.95,11/18/19 19:22,"433 Lincoln St, San Francisco, CA 94016" +281197,Lightning Charging Cable,1,14.95,11/02/19 12:51,"786 Washington St, Seattle, WA 98101" +281198,Wired Headphones,1,11.99,11/11/19 12:59,"524 Hill St, Los Angeles, CA 90001" +281198,Lightning Charging Cable,1,14.95,11/11/19 12:59,"524 Hill St, Los Angeles, CA 90001" +281199,Bose SoundSport Headphones,1,99.99,11/28/19 21:50,"501 Willow St, Los Angeles, CA 90001" +281200,AA Batteries (4-pack),1,3.84,11/29/19 22:50,"997 5th St, Los Angeles, CA 90001" +281201,27in 4K Gaming Monitor,1,389.99,11/03/19 12:19,"471 Hickory St, Atlanta, GA 30301" +281202,20in Monitor,1,109.99,11/15/19 00:31,"185 Jefferson St, Boston, MA 02215" +281203,Google Phone,1,600,11/06/19 21:25,"284 1st St, San Francisco, CA 94016" +281204,34in Ultrawide Monitor,1,379.99,11/01/19 15:14,"327 9th St, Boston, MA 02215" +281205,AAA Batteries (4-pack),1,2.99,11/20/19 20:30,"273 Madison St, Atlanta, GA 30301" +281206,AA Batteries (4-pack),1,3.84,11/20/19 16:50,"874 Willow St, Seattle, WA 98101" +281207,Lightning Charging Cable,1,14.95,11/17/19 00:41,"582 River St, San Francisco, CA 94016" +281208,Apple Airpods Headphones,1,150,11/26/19 07:21,"486 Sunset St, Dallas, TX 75001" +281209,27in 4K Gaming Monitor,1,389.99,11/20/19 17:38,"448 Ridge St, Seattle, WA 98101" +281210,27in 4K Gaming Monitor,1,389.99,11/12/19 12:06,"40 Ridge St, New York City, NY 10001" +281211,Lightning Charging Cable,1,14.95,11/28/19 19:17,"719 Hill St, Boston, MA 02215" +281212,USB-C Charging Cable,1,11.95,11/06/19 09:26,"915 Wilson St, Atlanta, GA 30301" +281213,Bose SoundSport Headphones,1,99.99,11/08/19 17:08,"118 Elm St, Boston, MA 02215" +281214,Lightning Charging Cable,1,14.95,11/24/19 13:38,"500 Lincoln St, Austin, TX 73301" +281215,Bose SoundSport Headphones,1,99.99,11/04/19 18:58,"234 Dogwood St, San Francisco, CA 94016" +281216,27in FHD Monitor,1,149.99,11/01/19 18:56,"469 9th St, Los Angeles, CA 90001" +281217,Bose SoundSport Headphones,1,99.99,11/21/19 14:36,"847 Wilson St, Boston, MA 02215" +281218,Lightning Charging Cable,1,14.95,11/23/19 01:52,"60 Center St, San Francisco, CA 94016" +281219,Wired Headphones,1,11.99,11/19/19 18:51,"17 Cedar St, Atlanta, GA 30301" +281220,Lightning Charging Cable,1,14.95,11/29/19 13:58,"389 Forest St, Los Angeles, CA 90001" +281221,AAA Batteries (4-pack),3,2.99,11/12/19 17:11,"884 Sunset St, San Francisco, CA 94016" +281222,Lightning Charging Cable,2,14.95,11/20/19 15:40,"351 Hill St, Dallas, TX 75001" +281223,USB-C Charging Cable,1,11.95,11/28/19 10:53,"203 5th St, Los Angeles, CA 90001" +281224,Lightning Charging Cable,2,14.95,11/27/19 18:48,"848 River St, San Francisco, CA 94016" +281225,Apple Airpods Headphones,1,150,11/15/19 12:23,"458 Ridge St, Seattle, WA 98101" +281226,Lightning Charging Cable,2,14.95,11/21/19 12:30,"552 Jackson St, Seattle, WA 98101" +281227,AA Batteries (4-pack),1,3.84,11/28/19 21:39,"789 12th St, Los Angeles, CA 90001" +281228,AAA Batteries (4-pack),1,2.99,11/05/19 23:07,"884 Chestnut St, San Francisco, CA 94016" +281229,AA Batteries (4-pack),1,3.84,11/25/19 18:07,"670 Madison St, Seattle, WA 98101" +281230,AAA Batteries (4-pack),2,2.99,11/03/19 00:38,"283 Pine St, Los Angeles, CA 90001" +281231,Flatscreen TV,1,300,11/11/19 16:22,"324 Maple St, Boston, MA 02215" +281232,AA Batteries (4-pack),1,3.84,11/17/19 13:22,"310 7th St, Atlanta, GA 30301" +281233,Lightning Charging Cable,1,14.95,11/09/19 14:25,"359 9th St, Portland, OR 97035" +281234,USB-C Charging Cable,3,11.95,11/17/19 13:17,"520 Adams St, San Francisco, CA 94016" +281235,AA Batteries (4-pack),1,3.84,11/05/19 07:42,"396 Madison St, San Francisco, CA 94016" +281236,27in FHD Monitor,1,149.99,11/22/19 13:18,"828 Madison St, Atlanta, GA 30301" +281237,USB-C Charging Cable,1,11.95,11/10/19 15:43,"407 Willow St, Boston, MA 02215" +281238,Lightning Charging Cable,1,14.95,11/09/19 14:25,"214 Main St, Austin, TX 73301" +281239,AA Batteries (4-pack),1,3.84,11/18/19 23:23,"283 West St, Los Angeles, CA 90001" +281240,Wired Headphones,1,11.99,11/02/19 09:50,"68 Park St, New York City, NY 10001" +281241,iPhone,1,700,11/01/19 10:25,"696 Main St, Portland, OR 97035" +281241,Lightning Charging Cable,1,14.95,11/01/19 10:25,"696 Main St, Portland, OR 97035" +281242,Wired Headphones,1,11.99,11/22/19 09:39,"741 Adams St, Portland, OR 97035" +281243,27in FHD Monitor,1,149.99,11/23/19 01:31,"105 Jackson St, Los Angeles, CA 90001" +281244,Apple Airpods Headphones,1,150,11/16/19 21:49,"709 4th St, San Francisco, CA 94016" +281245,34in Ultrawide Monitor,1,379.99,11/24/19 16:43,"3 Wilson St, Portland, ME 04101" +281246,AAA Batteries (4-pack),1,2.99,11/17/19 18:09,"913 11th St, New York City, NY 10001" +281247,Bose SoundSport Headphones,1,99.99,11/25/19 05:07,"869 13th St, Atlanta, GA 30301" +281248,Apple Airpods Headphones,1,150,11/16/19 10:05,"925 North St, San Francisco, CA 94016" +281249,Bose SoundSport Headphones,1,99.99,11/28/19 07:50,"394 Jackson St, Austin, TX 73301" +281250,34in Ultrawide Monitor,1,379.99,11/09/19 19:48,"216 River St, San Francisco, CA 94016" +281251,USB-C Charging Cable,1,11.95,11/15/19 19:49,"479 4th St, Atlanta, GA 30301" +281252,iPhone,1,700,11/28/19 11:55,"130 River St, Portland, OR 97035" +281253,Lightning Charging Cable,2,14.95,11/21/19 19:06,"639 Center St, Los Angeles, CA 90001" +281254,AAA Batteries (4-pack),4,2.99,11/21/19 20:23,"557 Pine St, San Francisco, CA 94016" +281255,34in Ultrawide Monitor,1,379.99,11/27/19 16:34,"74 Highland St, Atlanta, GA 30301" +281256,USB-C Charging Cable,1,11.95,11/08/19 23:03,"174 Washington St, Atlanta, GA 30301" +281256,USB-C Charging Cable,1,11.95,11/08/19 23:03,"174 Washington St, Atlanta, GA 30301" +281257,AA Batteries (4-pack),1,3.84,11/13/19 11:43,"246 6th St, San Francisco, CA 94016" +281258,AAA Batteries (4-pack),1,2.99,11/07/19 22:39,"349 4th St, Los Angeles, CA 90001" +281259,AA Batteries (4-pack),1,3.84,11/05/19 09:53,"376 Ridge St, Portland, OR 97035" +281260,AA Batteries (4-pack),1,3.84,11/12/19 22:57,"24 8th St, Atlanta, GA 30301" +281261,USB-C Charging Cable,1,11.95,11/01/19 21:46,"513 River St, Seattle, WA 98101" +281262,Wired Headphones,1,11.99,11/07/19 19:33,"665 Madison St, Dallas, TX 75001" +281263,AA Batteries (4-pack),1,3.84,11/19/19 11:45,"279 10th St, Portland, OR 97035" +281264,Apple Airpods Headphones,1,150,11/16/19 01:31,"143 Main St, Atlanta, GA 30301" +281265,27in FHD Monitor,1,149.99,11/15/19 08:36,"277 Maple St, San Francisco, CA 94016" +281266,Wired Headphones,1,11.99,11/08/19 00:08,"452 Maple St, Boston, MA 02215" +281267,AAA Batteries (4-pack),3,2.99,12/01/19 00:04,"356 Washington St, Los Angeles, CA 90001" +281268,Bose SoundSport Headphones,1,99.99,11/23/19 19:44,"445 Willow St, Dallas, TX 75001" +281269,AA Batteries (4-pack),1,3.84,11/13/19 09:18,"927 Cherry St, Dallas, TX 75001" +281270,Flatscreen TV,1,300,11/14/19 12:27,"605 West St, Portland, ME 04101" +281271,ThinkPad Laptop,1,999.99,11/27/19 16:14,"407 Lincoln St, Boston, MA 02215" +281272,34in Ultrawide Monitor,1,379.99,11/11/19 19:12,"700 5th St, New York City, NY 10001" +281273,ThinkPad Laptop,1,999.99,11/19/19 23:00,"208 River St, Dallas, TX 75001" +281274,Flatscreen TV,1,300,11/18/19 17:06,"436 5th St, Dallas, TX 75001" +281275,Macbook Pro Laptop,1,1700,11/27/19 10:56,"883 Main St, Atlanta, GA 30301" +281276,USB-C Charging Cable,1,11.95,11/20/19 22:28,"540 Park St, San Francisco, CA 94016" +281277,AA Batteries (4-pack),1,3.84,11/17/19 12:22,"148 Washington St, San Francisco, CA 94016" +281278,USB-C Charging Cable,1,11.95,11/09/19 12:08,"824 Chestnut St, San Francisco, CA 94016" +281279,34in Ultrawide Monitor,2,379.99,11/13/19 17:47,"60 Park St, Dallas, TX 75001" +281280,Bose SoundSport Headphones,1,99.99,11/19/19 18:38,"449 Church St, New York City, NY 10001" +281281,Apple Airpods Headphones,1,150,11/19/19 21:55,"802 1st St, Boston, MA 02215" +281282,Flatscreen TV,1,300,11/14/19 14:03,"74 14th St, Boston, MA 02215" +281283,AA Batteries (4-pack),1,3.84,11/11/19 22:22,"249 Sunset St, Seattle, WA 98101" +281284,USB-C Charging Cable,1,11.95,11/09/19 14:54,"401 Pine St, Boston, MA 02215" +281285,Lightning Charging Cable,1,14.95,11/23/19 19:32,"270 South St, San Francisco, CA 94016" +281286,AA Batteries (4-pack),1,3.84,11/05/19 14:19,"755 Maple St, Dallas, TX 75001" +281287,USB-C Charging Cable,1,11.95,11/24/19 06:01,"467 12th St, Austin, TX 73301" +281288,AA Batteries (4-pack),1,3.84,11/05/19 13:10,"95 Pine St, San Francisco, CA 94016" +281289,USB-C Charging Cable,1,11.95,11/23/19 16:24,"661 Spruce St, Atlanta, GA 30301" +281290,Lightning Charging Cable,1,14.95,11/04/19 16:35,"648 Willow St, Boston, MA 02215" +281291,Lightning Charging Cable,1,14.95,11/03/19 07:35,"832 Highland St, Atlanta, GA 30301" +281292,Wired Headphones,1,11.99,11/23/19 13:37,"75 14th St, Los Angeles, CA 90001" +281293,Google Phone,1,600,11/01/19 08:39,"305 Wilson St, Portland, OR 97035" +281293,USB-C Charging Cable,2,11.95,11/01/19 08:39,"305 Wilson St, Portland, OR 97035" +281294,Wired Headphones,1,11.99,11/09/19 19:09,"468 West St, Dallas, TX 75001" +281295,Macbook Pro Laptop,1,1700,11/29/19 19:19,"607 Jackson St, Seattle, WA 98101" +281296,27in FHD Monitor,2,149.99,11/05/19 20:00,"377 Main St, Dallas, TX 75001" +281297,Lightning Charging Cable,1,14.95,11/16/19 17:58,"426 8th St, New York City, NY 10001" +281298,iPhone,1,700,11/16/19 11:57,"184 Maple St, Los Angeles, CA 90001" +281299,Wired Headphones,1,11.99,11/11/19 07:48,"211 5th St, Austin, TX 73301" +281300,USB-C Charging Cable,1,11.95,11/19/19 20:39,"700 1st St, Austin, TX 73301" +281301,Google Phone,1,600,11/07/19 01:43,"564 Forest St, San Francisco, CA 94016" +281302,USB-C Charging Cable,1,11.95,11/04/19 09:36,"632 Chestnut St, Portland, OR 97035" +281303,27in FHD Monitor,1,149.99,11/13/19 12:41,"312 Wilson St, San Francisco, CA 94016" +281304,Wired Headphones,1,11.99,11/04/19 18:06,"50 River St, Portland, OR 97035" +281305,AAA Batteries (4-pack),1,2.99,11/26/19 20:32,"991 Main St, Dallas, TX 75001" +281306,Wired Headphones,1,11.99,11/12/19 19:17,"545 Adams St, Los Angeles, CA 90001" +281307,USB-C Charging Cable,1,11.95,11/12/19 12:16,"657 Meadow St, Atlanta, GA 30301" +281308,AAA Batteries (4-pack),2,2.99,11/19/19 12:50,"196 5th St, San Francisco, CA 94016" +281309,AA Batteries (4-pack),1,3.84,11/18/19 20:29,"205 Sunset St, Los Angeles, CA 90001" +281310,Apple Airpods Headphones,1,150,11/06/19 23:26,"628 Madison St, Seattle, WA 98101" +281311,Lightning Charging Cable,1,14.95,11/15/19 14:26,"422 Highland St, San Francisco, CA 94016" +281312,Bose SoundSport Headphones,1,99.99,11/08/19 19:44,"175 1st St, Portland, OR 97035" +281313,Wired Headphones,1,11.99,11/24/19 12:02,"135 Spruce St, Atlanta, GA 30301" +281314,AAA Batteries (4-pack),1,2.99,11/16/19 02:47,"624 13th St, Boston, MA 02215" +281315,USB-C Charging Cable,1,11.95,11/08/19 17:49,"504 4th St, San Francisco, CA 94016" +281316,Apple Airpods Headphones,1,150,11/20/19 07:19,"953 Chestnut St, Austin, TX 73301" +281317,Apple Airpods Headphones,1,150,11/04/19 11:25,"429 Pine St, Boston, MA 02215" +281318,USB-C Charging Cable,1,11.95,11/09/19 11:31,"393 South St, Boston, MA 02215" +281319,AA Batteries (4-pack),1,3.84,11/06/19 14:15,"741 9th St, Boston, MA 02215" +,,,,, +281320,USB-C Charging Cable,2,11.95,11/06/19 11:05,"293 6th St, New York City, NY 10001" +281320,34in Ultrawide Monitor,1,379.99,11/06/19 11:05,"293 6th St, New York City, NY 10001" +281321,Lightning Charging Cable,1,14.95,11/03/19 17:57,"182 13th St, Atlanta, GA 30301" +281322,Google Phone,1,600,11/14/19 20:04,"42 West St, Los Angeles, CA 90001" +281323,Bose SoundSport Headphones,1,99.99,11/23/19 09:32,"228 7th St, Dallas, TX 75001" +281324,Lightning Charging Cable,1,14.95,11/02/19 18:51,"836 Center St, New York City, NY 10001" +281325,Lightning Charging Cable,1,14.95,11/09/19 00:05,"729 Johnson St, Austin, TX 73301" +281326,AA Batteries (4-pack),1,3.84,11/05/19 10:40,"900 Cedar St, Atlanta, GA 30301" +281327,Macbook Pro Laptop,1,1700,11/07/19 13:24,"202 1st St, San Francisco, CA 94016" +281328,iPhone,1,700,11/28/19 23:43,"44 North St, Atlanta, GA 30301" +281329,AA Batteries (4-pack),1,3.84,11/24/19 16:59,"521 Lakeview St, San Francisco, CA 94016" +281330,Flatscreen TV,1,300,11/09/19 23:47,"725 Madison St, Portland, OR 97035" +281331,Bose SoundSport Headphones,1,99.99,11/09/19 08:23,"974 Pine St, Los Angeles, CA 90001" +281331,34in Ultrawide Monitor,1,379.99,11/09/19 08:23,"974 Pine St, Los Angeles, CA 90001" +281332,ThinkPad Laptop,1,999.99,11/26/19 20:51,"30 Wilson St, San Francisco, CA 94016" +281333,34in Ultrawide Monitor,1,379.99,11/20/19 21:36,"552 9th St, Dallas, TX 75001" +281334,AAA Batteries (4-pack),1,2.99,11/29/19 17:23,"512 Church St, Boston, MA 02215" +281335,LG Washing Machine,1,600.0,12/01/19 01:22,"655 Willow St, Boston, MA 02215" +281336,Wired Headphones,1,11.99,11/04/19 10:53,"448 Willow St, San Francisco, CA 94016" +281337,Google Phone,1,600,11/28/19 15:22,"877 Jefferson St, Los Angeles, CA 90001" +281338,Wired Headphones,1,11.99,11/26/19 17:34,"605 Lake St, Seattle, WA 98101" +281339,AA Batteries (4-pack),2,3.84,11/19/19 09:31,"149 4th St, San Francisco, CA 94016" +281340,Wired Headphones,1,11.99,11/03/19 19:03,"488 4th St, Portland, OR 97035" +281341,Wired Headphones,1,11.99,11/06/19 16:49,"197 Hill St, San Francisco, CA 94016" +281342,20in Monitor,1,109.99,11/17/19 14:15,"317 Dogwood St, San Francisco, CA 94016" +281343,Bose SoundSport Headphones,1,99.99,11/16/19 22:28,"348 10th St, Dallas, TX 75001" +281344,AAA Batteries (4-pack),2,2.99,11/26/19 12:40,"937 Walnut St, Atlanta, GA 30301" +281345,AAA Batteries (4-pack),1,2.99,11/06/19 04:58,"33 West St, Boston, MA 02215" +281346,Google Phone,1,600,11/12/19 13:08,"355 7th St, Los Angeles, CA 90001" +281347,Lightning Charging Cable,2,14.95,11/15/19 01:25,"396 Madison St, Los Angeles, CA 90001" +281348,Apple Airpods Headphones,1,150,11/19/19 10:50,"759 Adams St, Dallas, TX 75001" +281349,USB-C Charging Cable,1,11.95,11/01/19 16:02,"584 4th St, Austin, TX 73301" +281350,AA Batteries (4-pack),1,3.84,11/29/19 06:00,"459 14th St, Los Angeles, CA 90001" +281351,Google Phone,1,600,11/11/19 10:21,"434 Adams St, Seattle, WA 98101" +281352,Lightning Charging Cable,1,14.95,11/29/19 15:54,"999 1st St, San Francisco, CA 94016" +281353,AAA Batteries (4-pack),1,2.99,11/20/19 10:32,"695 6th St, Los Angeles, CA 90001" +281354,27in 4K Gaming Monitor,1,389.99,11/17/19 23:36,"667 Pine St, New York City, NY 10001" +281355,Lightning Charging Cable,1,14.95,11/25/19 09:26,"700 South St, New York City, NY 10001" +281356,AA Batteries (4-pack),1,3.84,11/28/19 21:09,"796 5th St, Los Angeles, CA 90001" +281357,Bose SoundSport Headphones,1,99.99,11/18/19 23:19,"563 14th St, New York City, NY 10001" +281358,AA Batteries (4-pack),1,3.84,11/03/19 15:53,"173 2nd St, Los Angeles, CA 90001" +281359,34in Ultrawide Monitor,1,379.99,11/07/19 20:07,"576 Maple St, San Francisco, CA 94016" +281360,AAA Batteries (4-pack),1,2.99,11/29/19 10:22,"318 Jefferson St, San Francisco, CA 94016" +281361,Wired Headphones,1,11.99,11/20/19 19:12,"590 12th St, Los Angeles, CA 90001" +281362,AA Batteries (4-pack),1,3.84,11/19/19 10:02,"140 10th St, Atlanta, GA 30301" +281363,27in FHD Monitor,1,149.99,11/09/19 09:40,"274 5th St, Dallas, TX 75001" +281364,27in FHD Monitor,1,149.99,11/13/19 19:54,"222 Maple St, San Francisco, CA 94016" +281365,Wired Headphones,1,11.99,11/14/19 13:34,"480 14th St, Dallas, TX 75001" +281366,AA Batteries (4-pack),1,3.84,11/14/19 19:27,"641 Lakeview St, Austin, TX 73301" +281367,ThinkPad Laptop,1,999.99,11/08/19 11:09,"862 Cedar St, Los Angeles, CA 90001" +281368,ThinkPad Laptop,1,999.99,11/25/19 10:54,"825 Highland St, Seattle, WA 98101" +281369,iPhone,1,700,11/24/19 19:35,"244 Lincoln St, Los Angeles, CA 90001" +281370,AA Batteries (4-pack),1,3.84,11/14/19 22:09,"608 South St, Portland, OR 97035" +281371,34in Ultrawide Monitor,1,379.99,11/26/19 14:42,"310 Hill St, Los Angeles, CA 90001" +281372,Apple Airpods Headphones,1,150,11/10/19 17:12,"117 South St, Dallas, TX 75001" +281373,27in 4K Gaming Monitor,1,389.99,11/14/19 12:54,"367 Hill St, Atlanta, GA 30301" +281374,Lightning Charging Cable,1,14.95,11/14/19 14:16,"809 Elm St, Boston, MA 02215" +281375,27in FHD Monitor,1,149.99,11/23/19 16:19,"780 Church St, Boston, MA 02215" +281376,AA Batteries (4-pack),1,3.84,11/23/19 20:13,"931 8th St, San Francisco, CA 94016" +281377,Wired Headphones,1,11.99,11/18/19 20:31,"639 South St, Portland, OR 97035" +281378,Apple Airpods Headphones,1,150,11/11/19 10:39,"767 5th St, Austin, TX 73301" +281379,Wired Headphones,1,11.99,11/25/19 08:41,"787 7th St, New York City, NY 10001" +281380,Lightning Charging Cable,1,14.95,11/09/19 17:34,"554 14th St, San Francisco, CA 94016" +281381,AA Batteries (4-pack),1,3.84,11/22/19 11:09,"585 Park St, Seattle, WA 98101" +281382,Google Phone,1,600,11/23/19 12:32,"79 Highland St, Seattle, WA 98101" +281383,Wired Headphones,1,11.99,11/10/19 20:54,"569 Park St, Los Angeles, CA 90001" +281384,Bose SoundSport Headphones,1,99.99,11/17/19 16:34,"171 Lake St, Boston, MA 02215" +281385,AA Batteries (4-pack),1,3.84,11/06/19 00:42,"955 Spruce St, Los Angeles, CA 90001" +281386,AA Batteries (4-pack),3,3.84,11/17/19 14:06,"463 River St, Los Angeles, CA 90001" +281387,20in Monitor,1,109.99,11/18/19 17:16,"621 South St, Los Angeles, CA 90001" +281388,27in 4K Gaming Monitor,1,389.99,11/08/19 15:36,"664 Walnut St, San Francisco, CA 94016" +281389,AAA Batteries (4-pack),6,2.99,11/09/19 11:12,"297 2nd St, San Francisco, CA 94016" +281390,Macbook Pro Laptop,1,1700,11/24/19 23:13,"696 North St, Portland, OR 97035" +281391,USB-C Charging Cable,1,11.95,11/23/19 17:36,"242 Lincoln St, Austin, TX 73301" +281392,Google Phone,1,600,11/22/19 14:49,"478 South St, Seattle, WA 98101" +281393,LG Dryer,1,600.0,11/17/19 14:04,"121 Spruce St, Seattle, WA 98101" +281394,Bose SoundSport Headphones,1,99.99,11/25/19 17:15,"220 10th St, San Francisco, CA 94016" +281395,Google Phone,1,600,11/11/19 10:19,"366 2nd St, New York City, NY 10001" +281396,ThinkPad Laptop,1,999.99,11/25/19 07:57,"689 Elm St, Los Angeles, CA 90001" +281397,USB-C Charging Cable,1,11.95,11/26/19 10:38,"862 Pine St, Portland, OR 97035" +281398,34in Ultrawide Monitor,1,379.99,11/27/19 21:03,"549 Pine St, New York City, NY 10001" +281399,USB-C Charging Cable,2,11.95,11/19/19 00:28,"939 5th St, New York City, NY 10001" +281400,Apple Airpods Headphones,1,150,11/30/19 09:24,"32 Pine St, Los Angeles, CA 90001" +281401,USB-C Charging Cable,1,11.95,11/17/19 18:15,"768 Hickory St, San Francisco, CA 94016" +281402,Apple Airpods Headphones,1,150,11/18/19 07:42,"306 Main St, New York City, NY 10001" +281403,27in 4K Gaming Monitor,1,389.99,11/10/19 00:25,"313 13th St, Portland, ME 04101" +281404,Bose SoundSport Headphones,1,99.99,11/01/19 17:19,"184 13th St, Dallas, TX 75001" +281405,20in Monitor,1,109.99,11/13/19 14:49,"337 1st St, Los Angeles, CA 90001" +281406,Google Phone,1,600,11/28/19 17:20,"69 8th St, New York City, NY 10001" +281407,34in Ultrawide Monitor,1,379.99,11/12/19 11:34,"597 Washington St, San Francisco, CA 94016" +281408,AAA Batteries (4-pack),1,2.99,11/06/19 13:02,"839 11th St, Dallas, TX 75001" +281409,Wired Headphones,1,11.99,11/18/19 14:25,"265 8th St, San Francisco, CA 94016" +281410,Google Phone,1,600,11/09/19 20:21,"346 1st St, New York City, NY 10001" +281410,Wired Headphones,1,11.99,11/09/19 20:21,"346 1st St, New York City, NY 10001" +281411,27in FHD Monitor,1,149.99,11/18/19 19:42,"584 Ridge St, San Francisco, CA 94016" +281412,27in 4K Gaming Monitor,1,389.99,11/01/19 17:56,"672 Chestnut St, San Francisco, CA 94016" +281413,27in FHD Monitor,1,149.99,11/02/19 21:20,"575 9th St, San Francisco, CA 94016" +281414,iPhone,1,700,11/01/19 23:47,"832 9th St, Dallas, TX 75001" +281415,Wired Headphones,1,11.99,11/01/19 17:25,"684 Church St, Seattle, WA 98101" +281416,27in FHD Monitor,1,149.99,11/15/19 18:22,"644 Church St, Dallas, TX 75001" +281417,Apple Airpods Headphones,1,150,11/13/19 12:51,"64 Main St, New York City, NY 10001" +281418,27in FHD Monitor,1,149.99,11/06/19 12:22,"300 Walnut St, Los Angeles, CA 90001" +281419,Bose SoundSport Headphones,1,99.99,11/30/19 14:12,"670 6th St, Portland, ME 04101" +281420,AAA Batteries (4-pack),2,2.99,11/02/19 20:46,"871 10th St, New York City, NY 10001" +281421,Wired Headphones,1,11.99,11/15/19 11:59,"159 9th St, Seattle, WA 98101" +281422,Lightning Charging Cable,1,14.95,11/28/19 20:13,"352 Elm St, Boston, MA 02215" +281423,27in FHD Monitor,1,149.99,11/10/19 14:39,"808 Meadow St, Los Angeles, CA 90001" +281424,AA Batteries (4-pack),2,3.84,11/07/19 13:48,"742 12th St, Boston, MA 02215" +281425,Macbook Pro Laptop,1,1700,11/20/19 13:35,"876 Hickory St, San Francisco, CA 94016" +281426,AAA Batteries (4-pack),1,2.99,11/14/19 15:02,"186 Main St, Los Angeles, CA 90001" +281427,Wired Headphones,1,11.99,11/02/19 11:50,"523 Washington St, Atlanta, GA 30301" +281428,USB-C Charging Cable,1,11.95,11/19/19 10:50,"297 Maple St, Seattle, WA 98101" +281429,Macbook Pro Laptop,1,1700,11/14/19 10:41,"472 Forest St, Los Angeles, CA 90001" +281430,Flatscreen TV,1,300,11/12/19 23:32,"575 South St, Boston, MA 02215" +281431,AAA Batteries (4-pack),1,2.99,11/27/19 09:52,"930 Adams St, San Francisco, CA 94016" +281432,Bose SoundSport Headphones,1,99.99,11/04/19 18:18,"308 13th St, Los Angeles, CA 90001" +281433,Apple Airpods Headphones,1,150,11/02/19 15:41,"395 Lincoln St, New York City, NY 10001" +281434,Apple Airpods Headphones,1,150,11/18/19 22:36,"800 13th St, Boston, MA 02215" +281435,AA Batteries (4-pack),1,3.84,11/12/19 09:39,"124 Main St, San Francisco, CA 94016" +281436,34in Ultrawide Monitor,1,379.99,11/10/19 04:56,"352 7th St, San Francisco, CA 94016" +281437,Wired Headphones,1,11.99,11/08/19 16:04,"323 12th St, New York City, NY 10001" +281438,Google Phone,1,600,11/18/19 23:37,"207 Dogwood St, New York City, NY 10001" +281439,AAA Batteries (4-pack),1,2.99,11/29/19 12:54,"397 Cedar St, Portland, OR 97035" +281440,AAA Batteries (4-pack),3,2.99,11/05/19 13:17,"374 Pine St, Dallas, TX 75001" +281441,AAA Batteries (4-pack),2,2.99,11/03/19 11:30,"382 River St, Atlanta, GA 30301" +281442,Wired Headphones,1,11.99,11/12/19 13:21,"762 Cedar St, Dallas, TX 75001" +281443,LG Washing Machine,1,600.0,11/06/19 08:54,"922 Ridge St, New York City, NY 10001" +281444,AA Batteries (4-pack),2,3.84,11/16/19 12:41,"715 Dogwood St, Boston, MA 02215" +281445,USB-C Charging Cable,1,11.95,11/20/19 09:22,"393 River St, Los Angeles, CA 90001" +281446,AAA Batteries (4-pack),3,2.99,11/20/19 09:45,"70 Dogwood St, New York City, NY 10001" +281447,Wired Headphones,1,11.99,11/14/19 16:12,"363 13th St, San Francisco, CA 94016" +281448,Apple Airpods Headphones,1,150,11/14/19 11:33,"985 Pine St, New York City, NY 10001" +281449,Google Phone,1,600,11/30/19 21:52,"397 Highland St, Los Angeles, CA 90001" +281450,34in Ultrawide Monitor,1,379.99,11/10/19 13:19,"630 14th St, Los Angeles, CA 90001" +281451,AAA Batteries (4-pack),2,2.99,11/27/19 14:17,"273 Jefferson St, Seattle, WA 98101" +281452,Google Phone,1,600,11/08/19 22:28,"604 Adams St, Boston, MA 02215" +281452,USB-C Charging Cable,1,11.95,11/08/19 22:28,"604 Adams St, Boston, MA 02215" +281453,iPhone,1,700,11/14/19 11:12,"248 Lincoln St, New York City, NY 10001" +281454,Wired Headphones,1,11.99,11/22/19 10:51,"599 2nd St, Austin, TX 73301" +281455,Bose SoundSport Headphones,1,99.99,11/17/19 00:56,"822 Wilson St, San Francisco, CA 94016" +281456,AA Batteries (4-pack),1,3.84,11/30/19 08:35,"304 13th St, New York City, NY 10001" +281457,AA Batteries (4-pack),2,3.84,11/19/19 11:53,"245 Washington St, San Francisco, CA 94016" +281458,USB-C Charging Cable,1,11.95,11/14/19 17:56,"44 Hill St, Boston, MA 02215" +281459,AA Batteries (4-pack),2,3.84,11/13/19 21:13,"112 Spruce St, Austin, TX 73301" +281460,Apple Airpods Headphones,1,150,11/02/19 01:55,"607 Pine St, San Francisco, CA 94016" +281461,Vareebadd Phone,1,400,11/16/19 21:34,"451 Washington St, Austin, TX 73301" +281462,AA Batteries (4-pack),3,3.84,11/16/19 23:14,"926 Willow St, San Francisco, CA 94016" +281463,Flatscreen TV,1,300,11/05/19 19:52,"420 Lake St, San Francisco, CA 94016" +281464,Lightning Charging Cable,1,14.95,11/24/19 15:45,"974 Madison St, Atlanta, GA 30301" +281465,Bose SoundSport Headphones,1,99.99,11/01/19 17:50,"942 14th St, Austin, TX 73301" +281466,Lightning Charging Cable,2,14.95,11/10/19 02:56,"327 13th St, Dallas, TX 75001" +281467,AA Batteries (4-pack),1,3.84,11/08/19 23:13,"370 6th St, New York City, NY 10001" +281468,Lightning Charging Cable,1,14.95,11/12/19 15:51,"6 6th St, Dallas, TX 75001" +281469,Bose SoundSport Headphones,1,99.99,11/21/19 20:48,"951 Meadow St, Los Angeles, CA 90001" +281470,Flatscreen TV,1,300,11/07/19 18:14,"234 Walnut St, Atlanta, GA 30301" +281471,iPhone,1,700,11/22/19 20:50,"641 7th St, Dallas, TX 75001" +281472,USB-C Charging Cable,1,11.95,11/09/19 01:10,"262 5th St, Austin, TX 73301" +281473,Bose SoundSport Headphones,1,99.99,11/19/19 08:00,"543 West St, San Francisco, CA 94016" +281474,AAA Batteries (4-pack),1,2.99,11/06/19 16:13,"188 6th St, New York City, NY 10001" +281475,AA Batteries (4-pack),2,3.84,11/05/19 15:03,"479 West St, San Francisco, CA 94016" +281476,27in FHD Monitor,1,149.99,11/19/19 13:52,"12 12th St, Seattle, WA 98101" +281477,Flatscreen TV,1,300,11/26/19 15:51,"590 Hill St, Los Angeles, CA 90001" +281478,Apple Airpods Headphones,1,150,11/28/19 22:52,"798 Dogwood St, San Francisco, CA 94016" +281479,Macbook Pro Laptop,1,1700,11/13/19 12:28,"160 Cedar St, New York City, NY 10001" +281480,Wired Headphones,1,11.99,11/16/19 09:45,"742 Main St, Seattle, WA 98101" +281481,ThinkPad Laptop,1,999.99,11/10/19 14:24,"772 10th St, New York City, NY 10001" +281482,27in FHD Monitor,1,149.99,11/17/19 17:39,"275 9th St, Seattle, WA 98101" +281483,AAA Batteries (4-pack),2,2.99,11/30/19 19:10,"203 Hickory St, New York City, NY 10001" +281484,AA Batteries (4-pack),1,3.84,11/04/19 18:42,"45 Main St, Dallas, TX 75001" +281485,34in Ultrawide Monitor,1,379.99,11/08/19 11:26,"673 4th St, San Francisco, CA 94016" +281486,USB-C Charging Cable,1,11.95,11/23/19 18:23,"511 Hickory St, Los Angeles, CA 90001" +281487,AA Batteries (4-pack),1,3.84,11/14/19 01:42,"23 Adams St, Austin, TX 73301" +281488,AAA Batteries (4-pack),1,2.99,11/26/19 12:47,"999 Maple St, Seattle, WA 98101" +281489,Apple Airpods Headphones,1,150,11/05/19 16:05,"160 2nd St, New York City, NY 10001" +281490,ThinkPad Laptop,1,999.99,11/26/19 12:03,"205 Wilson St, Boston, MA 02215" +281491,AAA Batteries (4-pack),1,2.99,11/30/19 12:26,"167 12th St, Los Angeles, CA 90001" +281492,Wired Headphones,1,11.99,11/21/19 14:45,"237 Center St, Dallas, TX 75001" +281493,34in Ultrawide Monitor,1,379.99,11/27/19 14:36,"808 Meadow St, San Francisco, CA 94016" +281494,ThinkPad Laptop,1,999.99,11/02/19 11:24,"100 4th St, Los Angeles, CA 90001" +281495,Wired Headphones,1,11.99,11/22/19 13:19,"790 5th St, Portland, OR 97035" +281496,Google Phone,1,600,11/12/19 22:15,"477 Hickory St, San Francisco, CA 94016" +281497,AA Batteries (4-pack),1,3.84,11/09/19 13:12,"312 Lake St, San Francisco, CA 94016" +281498,Lightning Charging Cable,1,14.95,11/22/19 20:24,"355 Park St, New York City, NY 10001" +281499,Wired Headphones,1,11.99,11/22/19 13:25,"653 Church St, Boston, MA 02215" +281500,USB-C Charging Cable,1,11.95,11/18/19 09:16,"988 Walnut St, Seattle, WA 98101" +281501,27in 4K Gaming Monitor,1,389.99,11/01/19 17:08,"110 Jefferson St, Seattle, WA 98101" +281502,iPhone,1,700,11/19/19 18:19,"608 Main St, Los Angeles, CA 90001" +281503,AA Batteries (4-pack),1,3.84,11/03/19 12:57,"273 Elm St, San Francisco, CA 94016" +281503,AA Batteries (4-pack),4,3.84,11/03/19 12:57,"273 Elm St, San Francisco, CA 94016" +281504,Lightning Charging Cable,1,14.95,11/14/19 00:57,"445 Walnut St, Los Angeles, CA 90001" +281505,Lightning Charging Cable,2,14.95,11/25/19 06:24,"372 Meadow St, New York City, NY 10001" +281506,AA Batteries (4-pack),2,3.84,11/01/19 13:57,"808 Chestnut St, Portland, OR 97035" +281507,Lightning Charging Cable,1,14.95,11/05/19 15:48,"355 Adams St, Boston, MA 02215" +281508,AA Batteries (4-pack),1,3.84,11/14/19 11:03,"289 Spruce St, Seattle, WA 98101" +281509,AAA Batteries (4-pack),2,2.99,11/22/19 10:56,"536 Spruce St, San Francisco, CA 94016" +281510,Google Phone,1,600,11/06/19 11:31,"885 8th St, San Francisco, CA 94016" +281511,USB-C Charging Cable,1,11.95,11/28/19 21:09,"809 Highland St, San Francisco, CA 94016" +281512,USB-C Charging Cable,1,11.95,11/06/19 16:33,"2 West St, New York City, NY 10001" +281513,34in Ultrawide Monitor,1,379.99,11/28/19 13:02,"908 River St, Dallas, TX 75001" +281514,20in Monitor,1,109.99,11/09/19 22:34,"864 Lincoln St, Portland, OR 97035" +281515,AAA Batteries (4-pack),1,2.99,11/11/19 17:16,"729 Lincoln St, Portland, ME 04101" +281516,Google Phone,1,600,11/23/19 19:55,"381 10th St, Atlanta, GA 30301" +281516,USB-C Charging Cable,1,11.95,11/23/19 19:55,"381 10th St, Atlanta, GA 30301" +281517,Lightning Charging Cable,1,14.95,11/05/19 17:46,"189 Church St, Portland, OR 97035" +281518,27in FHD Monitor,1,149.99,11/29/19 07:06,"355 Ridge St, Los Angeles, CA 90001" +281519,AAA Batteries (4-pack),2,2.99,11/14/19 23:37,"576 7th St, San Francisco, CA 94016" +281520,AAA Batteries (4-pack),2,2.99,11/17/19 11:42,"359 8th St, Austin, TX 73301" +281521,USB-C Charging Cable,1,11.95,11/22/19 09:07,"517 11th St, San Francisco, CA 94016" +281522,Google Phone,1,600,11/16/19 19:04,"383 Lincoln St, San Francisco, CA 94016" +281522,Wired Headphones,2,11.99,11/16/19 19:04,"383 Lincoln St, San Francisco, CA 94016" +281523,USB-C Charging Cable,1,11.95,11/05/19 23:44,"41 9th St, Atlanta, GA 30301" +281524,AAA Batteries (4-pack),1,2.99,11/09/19 10:02,"32 4th St, Los Angeles, CA 90001" +281525,Bose SoundSport Headphones,1,99.99,11/12/19 09:26,"482 Wilson St, Los Angeles, CA 90001" +281526,34in Ultrawide Monitor,1,379.99,11/23/19 12:32,"598 Ridge St, Dallas, TX 75001" +281527,Flatscreen TV,1,300,11/16/19 09:42,"433 Walnut St, Seattle, WA 98101" +281528,Bose SoundSport Headphones,1,99.99,11/29/19 09:06,"69 8th St, Los Angeles, CA 90001" +281529,27in 4K Gaming Monitor,1,389.99,11/25/19 18:57,"11 Lake St, New York City, NY 10001" +281530,Wired Headphones,1,11.99,11/20/19 11:53,"74 Chestnut St, Atlanta, GA 30301" +281531,ThinkPad Laptop,1,999.99,11/07/19 19:48,"583 10th St, Los Angeles, CA 90001" +281532,AAA Batteries (4-pack),2,2.99,11/06/19 18:07,"657 Lake St, Dallas, TX 75001" +281533,USB-C Charging Cable,1,11.95,11/30/19 23:24,"725 7th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +281534,20in Monitor,1,109.99,11/04/19 11:01,"649 8th St, New York City, NY 10001" +281535,AA Batteries (4-pack),2,3.84,11/20/19 14:55,"884 Church St, Los Angeles, CA 90001" +281536,Apple Airpods Headphones,1,150,11/24/19 11:49,"803 2nd St, San Francisco, CA 94016" +281537,USB-C Charging Cable,2,11.95,11/19/19 13:35,"991 Lake St, New York City, NY 10001" +281538,27in 4K Gaming Monitor,1,389.99,11/01/19 16:47,"157 Lincoln St, New York City, NY 10001" +281539,AAA Batteries (4-pack),1,2.99,11/27/19 01:30,"190 Center St, Seattle, WA 98101" +281540,AAA Batteries (4-pack),1,2.99,11/21/19 11:42,"444 14th St, Los Angeles, CA 90001" +281541,AA Batteries (4-pack),1,3.84,11/09/19 11:08,"4 Jackson St, New York City, NY 10001" +281542,AAA Batteries (4-pack),1,2.99,11/25/19 22:31,"421 Main St, San Francisco, CA 94016" +281543,AAA Batteries (4-pack),1,2.99,11/01/19 18:46,"428 Willow St, Atlanta, GA 30301" +281544,Lightning Charging Cable,1,14.95,11/01/19 17:02,"646 Washington St, Los Angeles, CA 90001" +281545,Google Phone,1,600,11/27/19 22:40,"423 Johnson St, New York City, NY 10001" +281546,Lightning Charging Cable,1,14.95,11/30/19 10:47,"581 4th St, San Francisco, CA 94016" +281547,USB-C Charging Cable,1,11.95,11/20/19 12:53,"25 Dogwood St, Atlanta, GA 30301" +281548,AA Batteries (4-pack),1,3.84,11/14/19 15:13,"429 2nd St, Los Angeles, CA 90001" +281549,Google Phone,1,600,11/12/19 00:54,"529 Elm St, Boston, MA 02215" +281550,Flatscreen TV,1,300,11/11/19 15:16,"410 West St, New York City, NY 10001" +281551,27in FHD Monitor,1,149.99,11/24/19 23:06,"770 1st St, Boston, MA 02215" +281552,27in 4K Gaming Monitor,1,389.99,11/27/19 22:24,"829 Ridge St, Los Angeles, CA 90001" +281553,AAA Batteries (4-pack),1,2.99,11/05/19 11:54,"740 Lake St, Atlanta, GA 30301" +281554,USB-C Charging Cable,1,11.95,11/12/19 11:06,"152 Elm St, Atlanta, GA 30301" +281555,34in Ultrawide Monitor,1,379.99,11/07/19 11:28,"765 2nd St, Los Angeles, CA 90001" +281556,Wired Headphones,1,11.99,11/11/19 07:39,"534 Hickory St, Austin, TX 73301" +281557,ThinkPad Laptop,1,999.99,11/21/19 10:37,"532 Cherry St, Austin, TX 73301" +,,,,, +281558,AA Batteries (4-pack),1,3.84,11/22/19 12:22,"817 Chestnut St, Los Angeles, CA 90001" +281559,20in Monitor,1,109.99,11/21/19 14:03,"189 Johnson St, New York City, NY 10001" +281560,Apple Airpods Headphones,1,150,11/10/19 06:08,"873 Chestnut St, San Francisco, CA 94016" +281561,iPhone,1,700,11/10/19 20:44,"464 Lakeview St, Boston, MA 02215" +281562,USB-C Charging Cable,1,11.95,11/25/19 20:55,"917 4th St, Los Angeles, CA 90001" +281563,Wired Headphones,1,11.99,11/03/19 23:03,"455 Pine St, Seattle, WA 98101" +281564,AAA Batteries (4-pack),1,2.99,11/16/19 12:51,"797 10th St, New York City, NY 10001" +281565,USB-C Charging Cable,1,11.95,11/28/19 19:36,"818 Washington St, San Francisco, CA 94016" +281566,34in Ultrawide Monitor,1,379.99,11/02/19 11:23,"470 North St, Austin, TX 73301" +281567,Wired Headphones,1,11.99,11/16/19 21:37,"76 River St, Seattle, WA 98101" +281568,Lightning Charging Cable,1,14.95,11/10/19 13:33,"250 Hill St, Portland, OR 97035" +281569,Bose SoundSport Headphones,1,99.99,11/02/19 21:09,"448 Pine St, Austin, TX 73301" +281570,Wired Headphones,2,11.99,11/26/19 18:48,"324 Hickory St, Atlanta, GA 30301" +281571,Lightning Charging Cable,1,14.95,11/15/19 19:25,"500 West St, San Francisco, CA 94016" +281572,AA Batteries (4-pack),2,3.84,11/03/19 17:14,"756 Forest St, New York City, NY 10001" +281573,Lightning Charging Cable,1,14.95,11/09/19 09:17,"402 Cherry St, Atlanta, GA 30301" +281574,AAA Batteries (4-pack),2,2.99,11/19/19 06:56,"14 Park St, Seattle, WA 98101" +281575,USB-C Charging Cable,1,11.95,11/17/19 12:50,"237 Main St, Portland, OR 97035" +281576,USB-C Charging Cable,1,11.95,11/18/19 17:59,"860 West St, Austin, TX 73301" +281577,Apple Airpods Headphones,1,150,11/30/19 01:01,"908 North St, Dallas, TX 75001" +281578,Bose SoundSport Headphones,1,99.99,11/11/19 21:21,"708 Spruce St, Portland, OR 97035" +281579,AAA Batteries (4-pack),2,2.99,11/21/19 09:36,"592 4th St, New York City, NY 10001" +281580,AAA Batteries (4-pack),1,2.99,11/22/19 03:31,"306 Forest St, New York City, NY 10001" +281581,Wired Headphones,1,11.99,11/23/19 14:37,"858 South St, Los Angeles, CA 90001" +281582,Wired Headphones,1,11.99,11/11/19 15:10,"450 1st St, Dallas, TX 75001" +281583,iPhone,1,700,11/03/19 09:57,"770 8th St, Boston, MA 02215" +281584,34in Ultrawide Monitor,1,379.99,11/07/19 16:01,"435 Jackson St, San Francisco, CA 94016" +281585,Flatscreen TV,1,300,11/28/19 20:01,"412 Lake St, San Francisco, CA 94016" +281586,AA Batteries (4-pack),1,3.84,11/27/19 18:32,"169 14th St, Boston, MA 02215" +281587,Bose SoundSport Headphones,1,99.99,11/29/19 20:49,"945 Main St, Seattle, WA 98101" +281588,USB-C Charging Cable,1,11.95,11/28/19 10:39,"803 Walnut St, Atlanta, GA 30301" +281589,Google Phone,1,600,11/05/19 19:56,"99 Meadow St, Portland, OR 97035" +281589,USB-C Charging Cable,2,11.95,11/05/19 19:56,"99 Meadow St, Portland, OR 97035" +281590,AA Batteries (4-pack),1,3.84,11/24/19 09:54,"133 South St, Dallas, TX 75001" +281591,Lightning Charging Cable,2,14.95,11/16/19 09:21,"420 Cedar St, Boston, MA 02215" +281592,Flatscreen TV,1,300,11/22/19 15:12,"302 Cedar St, San Francisco, CA 94016" +281593,AAA Batteries (4-pack),4,2.99,11/15/19 11:09,"141 Jackson St, Boston, MA 02215" +281594,USB-C Charging Cable,1,11.95,11/20/19 19:24,"115 2nd St, New York City, NY 10001" +281595,Apple Airpods Headphones,1,150,11/28/19 10:51,"587 Main St, Portland, OR 97035" +281596,Wired Headphones,1,11.99,11/16/19 23:22,"596 Lake St, Boston, MA 02215" +281596,LG Washing Machine,1,600.0,11/16/19 23:22,"596 Lake St, Boston, MA 02215" +281597,Lightning Charging Cable,1,14.95,11/29/19 10:39,"348 Lakeview St, Dallas, TX 75001" +281598,USB-C Charging Cable,1,11.95,11/02/19 10:15,"965 9th St, Dallas, TX 75001" +281599,Wired Headphones,1,11.99,11/26/19 12:44,"587 Lake St, Los Angeles, CA 90001" +281600,Lightning Charging Cable,1,14.95,11/17/19 09:08,"715 Jefferson St, Atlanta, GA 30301" +281601,iPhone,1,700,11/25/19 19:08,"901 Dogwood St, Portland, OR 97035" +281602,iPhone,1,700,11/27/19 08:15,"252 7th St, Los Angeles, CA 90001" +281603,Flatscreen TV,1,300,11/26/19 13:06,"768 4th St, San Francisco, CA 94016" +281604,USB-C Charging Cable,1,11.95,11/09/19 01:21,"114 Elm St, Austin, TX 73301" +281605,AA Batteries (4-pack),4,3.84,11/02/19 16:53,"5 11th St, San Francisco, CA 94016" +281606,USB-C Charging Cable,1,11.95,11/24/19 17:20,"321 Hill St, Los Angeles, CA 90001" +281607,USB-C Charging Cable,1,11.95,11/27/19 17:41,"948 Jackson St, Seattle, WA 98101" +281608,USB-C Charging Cable,1,11.95,11/02/19 16:26,"685 South St, Atlanta, GA 30301" +281609,27in FHD Monitor,1,149.99,11/12/19 17:06,"265 9th St, San Francisco, CA 94016" +281610,Wired Headphones,1,11.99,11/05/19 08:10,"391 14th St, Atlanta, GA 30301" +281611,Apple Airpods Headphones,1,150,11/26/19 19:31,"372 4th St, San Francisco, CA 94016" +281612,Lightning Charging Cable,1,14.95,11/19/19 13:30,"959 Cherry St, San Francisco, CA 94016" +281613,Flatscreen TV,1,300,11/09/19 13:32,"340 Sunset St, Dallas, TX 75001" +281614,AAA Batteries (4-pack),1,2.99,11/28/19 09:48,"616 11th St, Portland, OR 97035" +281615,AAA Batteries (4-pack),2,2.99,11/24/19 10:39,"243 4th St, Seattle, WA 98101" +281616,27in FHD Monitor,1,149.99,11/28/19 17:06,"361 Lake St, Portland, OR 97035" +281617,27in FHD Monitor,1,149.99,11/05/19 19:55,"339 Ridge St, Atlanta, GA 30301" +281618,USB-C Charging Cable,1,11.95,11/19/19 23:49,"574 Park St, Atlanta, GA 30301" +281619,Wired Headphones,2,11.99,11/19/19 11:49,"640 Jefferson St, Seattle, WA 98101" +281620,Wired Headphones,1,11.99,11/30/19 22:07,"731 Lincoln St, Dallas, TX 75001" +281621,USB-C Charging Cable,1,11.95,11/07/19 13:22,"126 Hill St, San Francisco, CA 94016" +281622,27in 4K Gaming Monitor,1,389.99,11/15/19 13:26,"199 7th St, Los Angeles, CA 90001" +281623,AAA Batteries (4-pack),1,2.99,11/10/19 17:10,"822 River St, Portland, OR 97035" +281624,Google Phone,1,600,11/02/19 19:06,"140 Jefferson St, Dallas, TX 75001" +281625,USB-C Charging Cable,1,11.95,11/30/19 01:20,"171 Meadow St, Portland, OR 97035" +281626,Lightning Charging Cable,1,14.95,11/12/19 18:06,"646 Walnut St, Los Angeles, CA 90001" +281627,AAA Batteries (4-pack),1,2.99,11/10/19 13:30,"127 Center St, Los Angeles, CA 90001" +281628,Wired Headphones,2,11.99,11/25/19 21:11,"644 Washington St, Boston, MA 02215" +281629,34in Ultrawide Monitor,1,379.99,11/20/19 17:47,"292 Washington St, Atlanta, GA 30301" +281630,Lightning Charging Cable,1,14.95,11/28/19 10:12,"902 Dogwood St, Austin, TX 73301" +281631,Apple Airpods Headphones,1,150,11/21/19 16:54,"686 2nd St, New York City, NY 10001" +281632,34in Ultrawide Monitor,1,379.99,11/01/19 15:08,"686 Johnson St, San Francisco, CA 94016" +281633,AAA Batteries (4-pack),2,2.99,11/10/19 20:34,"173 River St, New York City, NY 10001" +281633,Flatscreen TV,1,300,11/10/19 20:34,"173 River St, New York City, NY 10001" +281634,USB-C Charging Cable,1,11.95,11/10/19 00:43,"835 4th St, Atlanta, GA 30301" +281635,USB-C Charging Cable,1,11.95,11/03/19 13:06,"18 Willow St, San Francisco, CA 94016" +281636,AAA Batteries (4-pack),3,2.99,11/27/19 10:36,"19 Jackson St, San Francisco, CA 94016" +281637,AA Batteries (4-pack),1,3.84,11/26/19 20:31,"589 Jackson St, Portland, OR 97035" +281638,Flatscreen TV,1,300,11/15/19 19:37,"64 Sunset St, Atlanta, GA 30301" +281639,27in 4K Gaming Monitor,1,389.99,11/28/19 12:11,"212 6th St, Los Angeles, CA 90001" +281640,Apple Airpods Headphones,1,150,11/01/19 20:31,"351 10th St, New York City, NY 10001" +281641,Bose SoundSport Headphones,1,99.99,11/01/19 18:22,"427 Maple St, Los Angeles, CA 90001" +281642,USB-C Charging Cable,1,11.95,11/06/19 11:53,"857 Ridge St, Portland, OR 97035" +281643,Bose SoundSport Headphones,1,99.99,11/08/19 07:09,"526 Chestnut St, New York City, NY 10001" +281644,Lightning Charging Cable,1,14.95,11/27/19 17:43,"964 Meadow St, San Francisco, CA 94016" +281645,AAA Batteries (4-pack),1,2.99,11/14/19 18:28,"91 9th St, Boston, MA 02215" +281646,Bose SoundSport Headphones,1,99.99,11/10/19 14:24,"676 4th St, New York City, NY 10001" +281647,AA Batteries (4-pack),1,3.84,11/01/19 11:04,"760 River St, Dallas, TX 75001" +281648,USB-C Charging Cable,1,11.95,11/26/19 20:32,"481 Chestnut St, Los Angeles, CA 90001" +281649,Apple Airpods Headphones,1,150,11/04/19 08:52,"655 14th St, Atlanta, GA 30301" +281650,Wired Headphones,1,11.99,11/22/19 06:21,"407 13th St, Boston, MA 02215" +281651,USB-C Charging Cable,1,11.95,11/28/19 06:19,"285 Highland St, Portland, OR 97035" +281652,27in FHD Monitor,1,149.99,11/28/19 01:11,"765 8th St, San Francisco, CA 94016" +281653,Lightning Charging Cable,1,14.95,11/19/19 22:32,"778 Meadow St, Dallas, TX 75001" +281654,USB-C Charging Cable,1,11.95,11/18/19 19:28,"630 Church St, Los Angeles, CA 90001" +281655,Macbook Pro Laptop,1,1700,11/04/19 18:38,"295 Hill St, Dallas, TX 75001" +281656,34in Ultrawide Monitor,1,379.99,11/07/19 07:25,"906 Forest St, Portland, OR 97035" +281657,Bose SoundSport Headphones,1,99.99,11/24/19 13:55,"34 West St, Boston, MA 02215" +281658,Apple Airpods Headphones,1,150,11/19/19 22:44,"903 Cedar St, Dallas, TX 75001" +281658,Bose SoundSport Headphones,1,99.99,11/19/19 22:44,"903 Cedar St, Dallas, TX 75001" +281659,34in Ultrawide Monitor,1,379.99,11/11/19 15:55,"720 Chestnut St, New York City, NY 10001" +281660,Apple Airpods Headphones,1,150,11/26/19 09:44,"324 North St, Austin, TX 73301" +281661,Apple Airpods Headphones,1,150,11/01/19 23:29,"953 7th St, New York City, NY 10001" +281662,Bose SoundSport Headphones,1,99.99,11/19/19 22:29,"585 Park St, Los Angeles, CA 90001" +281663,LG Washing Machine,1,600.0,11/09/19 16:56,"868 10th St, Seattle, WA 98101" +281664,27in FHD Monitor,1,149.99,11/03/19 01:38,"853 River St, Los Angeles, CA 90001" +281665,AA Batteries (4-pack),1,3.84,11/19/19 17:23,"832 Chestnut St, Dallas, TX 75001" +281666,AA Batteries (4-pack),1,3.84,11/12/19 08:19,"525 Church St, Atlanta, GA 30301" +281667,AA Batteries (4-pack),1,3.84,11/28/19 22:04,"707 West St, San Francisco, CA 94016" +281668,AA Batteries (4-pack),1,3.84,11/01/19 09:51,"54 8th St, San Francisco, CA 94016" +281669,AA Batteries (4-pack),1,3.84,11/05/19 16:01,"387 Jefferson St, San Francisco, CA 94016" +281670,27in 4K Gaming Monitor,1,389.99,11/04/19 22:55,"822 Washington St, Atlanta, GA 30301" +281671,ThinkPad Laptop,1,999.99,11/23/19 18:53,"478 South St, New York City, NY 10001" +281672,Lightning Charging Cable,1,14.95,11/15/19 11:03,"371 11th St, Portland, OR 97035" +281673,AAA Batteries (4-pack),1,2.99,11/20/19 07:14,"357 Meadow St, San Francisco, CA 94016" +281674,AA Batteries (4-pack),2,3.84,11/13/19 16:28,"189 Dogwood St, San Francisco, CA 94016" +281675,AAA Batteries (4-pack),1,2.99,11/09/19 13:41,"593 Church St, San Francisco, CA 94016" +281676,27in 4K Gaming Monitor,1,389.99,11/25/19 11:59,"624 Sunset St, Los Angeles, CA 90001" +281677,Wired Headphones,1,11.99,11/29/19 15:53,"197 Church St, Austin, TX 73301" +281678,Wired Headphones,1,11.99,11/05/19 12:08,"938 2nd St, Austin, TX 73301" +281679,Apple Airpods Headphones,1,150,11/20/19 01:19,"997 Lakeview St, Los Angeles, CA 90001" +281680,Bose SoundSport Headphones,1,99.99,11/01/19 18:13,"81 Lakeview St, Seattle, WA 98101" +281681,Apple Airpods Headphones,1,150,11/06/19 10:45,"935 Chestnut St, Los Angeles, CA 90001" +281682,AAA Batteries (4-pack),1,2.99,11/07/19 01:40,"44 11th St, Portland, OR 97035" +281683,27in FHD Monitor,1,149.99,11/06/19 10:55,"624 8th St, Portland, OR 97035" +281684,Macbook Pro Laptop,1,1700,11/08/19 14:22,"141 River St, New York City, NY 10001" +281685,AAA Batteries (4-pack),1,2.99,11/21/19 21:52,"834 Pine St, Austin, TX 73301" +281686,ThinkPad Laptop,1,999.99,11/18/19 11:31,"366 Maple St, Dallas, TX 75001" +281687,Bose SoundSport Headphones,1,99.99,11/14/19 16:25,"181 Lake St, Los Angeles, CA 90001" +281688,Wired Headphones,1,11.99,11/29/19 11:58,"449 West St, San Francisco, CA 94016" +281689,AAA Batteries (4-pack),1,2.99,11/06/19 09:37,"182 Center St, San Francisco, CA 94016" +281690,Apple Airpods Headphones,1,150,11/07/19 01:42,"458 Dogwood St, Los Angeles, CA 90001" +281691,Wired Headphones,1,11.99,11/06/19 17:41,"60 Church St, San Francisco, CA 94016" +281692,Wired Headphones,2,11.99,11/15/19 18:56,"198 Pine St, Atlanta, GA 30301" +281693,Google Phone,1,600,11/22/19 10:49,"140 Johnson St, New York City, NY 10001" +281694,AA Batteries (4-pack),1,3.84,11/09/19 18:50,"144 Maple St, Boston, MA 02215" +281695,27in FHD Monitor,1,149.99,11/09/19 17:12,"979 South St, Atlanta, GA 30301" +281696,USB-C Charging Cable,1,11.95,11/06/19 15:44,"745 Church St, Seattle, WA 98101" +281697,AAA Batteries (4-pack),1,2.99,11/27/19 12:37,"220 Elm St, New York City, NY 10001" +281698,AA Batteries (4-pack),1,3.84,11/08/19 13:34,"555 Jackson St, Seattle, WA 98101" +281699,Bose SoundSport Headphones,1,99.99,11/29/19 23:26,"812 Jefferson St, New York City, NY 10001" +281700,Wired Headphones,1,11.99,11/03/19 15:28,"129 1st St, Los Angeles, CA 90001" +281701,Wired Headphones,1,11.99,11/15/19 21:53,"340 7th St, Austin, TX 73301" +281702,Wired Headphones,1,11.99,11/19/19 20:42,"686 14th St, Los Angeles, CA 90001" +281703,Lightning Charging Cable,1,14.95,11/10/19 15:11,"336 9th St, Dallas, TX 75001" +281704,Wired Headphones,1,11.99,11/16/19 11:19,"885 7th St, New York City, NY 10001" +281705,iPhone,1,700,11/23/19 22:33,"898 Lake St, Portland, OR 97035" +281705,Lightning Charging Cable,1,14.95,11/23/19 22:33,"898 Lake St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +281706,USB-C Charging Cable,1,11.95,11/22/19 19:32,"207 Cedar St, Los Angeles, CA 90001" +281707,AAA Batteries (4-pack),1,2.99,11/13/19 10:40,"227 West St, Atlanta, GA 30301" +281708,AAA Batteries (4-pack),1,2.99,11/12/19 07:07,"89 Cherry St, Boston, MA 02215" +281709,Google Phone,1,600,11/24/19 15:41,"926 Cedar St, New York City, NY 10001" +281709,Lightning Charging Cable,1,14.95,11/24/19 15:41,"926 Cedar St, New York City, NY 10001" +281710,AA Batteries (4-pack),1,3.84,11/28/19 13:57,"70 Spruce St, San Francisco, CA 94016" +281711,ThinkPad Laptop,1,999.99,11/12/19 20:32,"713 14th St, San Francisco, CA 94016" +281712,27in 4K Gaming Monitor,1,389.99,11/01/19 21:23,"173 South St, Los Angeles, CA 90001" +281713,Flatscreen TV,1,300,11/18/19 11:07,"797 13th St, Boston, MA 02215" +281714,27in 4K Gaming Monitor,1,389.99,11/02/19 19:36,"5 Washington St, Atlanta, GA 30301" +281715,Wired Headphones,1,11.99,11/17/19 13:34,"935 Elm St, Los Angeles, CA 90001" +281716,USB-C Charging Cable,1,11.95,11/10/19 14:13,"128 Spruce St, Seattle, WA 98101" +281717,Google Phone,1,600,11/11/19 17:06,"534 8th St, San Francisco, CA 94016" +281717,USB-C Charging Cable,1,11.95,11/11/19 17:06,"534 8th St, San Francisco, CA 94016" +281718,Flatscreen TV,1,300,11/01/19 16:10,"430 South St, San Francisco, CA 94016" +281719,Apple Airpods Headphones,1,150,11/18/19 11:20,"141 South St, Austin, TX 73301" +281720,AAA Batteries (4-pack),2,2.99,11/02/19 08:03,"212 Washington St, San Francisco, CA 94016" +281721,Google Phone,1,600,11/27/19 19:24,"608 5th St, Dallas, TX 75001" +281722,34in Ultrawide Monitor,1,379.99,11/21/19 09:49,"853 10th St, San Francisco, CA 94016" +281723,USB-C Charging Cable,1,11.95,11/07/19 19:32,"806 Walnut St, Los Angeles, CA 90001" +281724,Flatscreen TV,1,300,11/10/19 14:31,"746 Forest St, San Francisco, CA 94016" +281725,USB-C Charging Cable,1,11.95,11/02/19 18:21,"942 Hickory St, New York City, NY 10001" +281726,USB-C Charging Cable,1,11.95,11/24/19 22:07,"899 Wilson St, Seattle, WA 98101" +281727,27in FHD Monitor,1,149.99,11/09/19 15:25,"766 Elm St, Los Angeles, CA 90001" +281728,Vareebadd Phone,1,400,11/25/19 10:04,"745 Cedar St, San Francisco, CA 94016" +281729,AAA Batteries (4-pack),1,2.99,11/15/19 14:34,"13 6th St, Boston, MA 02215" +281730,Lightning Charging Cable,1,14.95,11/13/19 18:11,"471 Main St, San Francisco, CA 94016" +281731,27in 4K Gaming Monitor,1,389.99,11/18/19 09:34,"692 9th St, San Francisco, CA 94016" +281732,Lightning Charging Cable,1,14.95,11/09/19 16:29,"229 6th St, Atlanta, GA 30301" +281733,AAA Batteries (4-pack),2,2.99,11/03/19 13:28,"729 Jackson St, Atlanta, GA 30301" +281734,AAA Batteries (4-pack),3,2.99,11/11/19 14:13,"777 North St, Los Angeles, CA 90001" +281735,ThinkPad Laptop,1,999.99,11/22/19 20:11,"257 Johnson St, San Francisco, CA 94016" +281736,AA Batteries (4-pack),1,3.84,11/09/19 11:03,"65 12th St, Los Angeles, CA 90001" +281737,AAA Batteries (4-pack),2,2.99,11/26/19 16:40,"564 Pine St, Seattle, WA 98101" +281738,Apple Airpods Headphones,1,150,11/09/19 18:57,"228 Adams St, Los Angeles, CA 90001" +281739,34in Ultrawide Monitor,1,379.99,11/24/19 12:04,"664 Willow St, New York City, NY 10001" +281740,AAA Batteries (4-pack),1,2.99,11/11/19 20:10,"517 Jackson St, Boston, MA 02215" +281741,Lightning Charging Cable,1,14.95,11/02/19 13:20,"22 Cedar St, San Francisco, CA 94016" +281742,ThinkPad Laptop,1,999.99,11/08/19 18:02,"779 North St, New York City, NY 10001" +281742,USB-C Charging Cable,1,11.95,11/08/19 18:02,"779 North St, New York City, NY 10001" +281743,Bose SoundSport Headphones,1,99.99,11/10/19 16:44,"922 Chestnut St, Los Angeles, CA 90001" +281744,AAA Batteries (4-pack),2,2.99,11/16/19 13:35,"877 Madison St, Austin, TX 73301" +281745,AA Batteries (4-pack),1,3.84,11/13/19 21:14,"218 River St, Austin, TX 73301" +281746,AAA Batteries (4-pack),1,2.99,11/16/19 09:34,"317 Forest St, Los Angeles, CA 90001" +281747,Wired Headphones,1,11.99,11/06/19 16:04,"127 11th St, Austin, TX 73301" +281748,Macbook Pro Laptop,1,1700,11/15/19 15:44,"569 Church St, Los Angeles, CA 90001" +281749,USB-C Charging Cable,1,11.95,11/26/19 08:33,"13 Johnson St, Dallas, TX 75001" +281750,Wired Headphones,1,11.99,11/17/19 04:00,"384 Johnson St, Boston, MA 02215" +281751,34in Ultrawide Monitor,1,379.99,11/25/19 23:06,"859 Madison St, San Francisco, CA 94016" +281752,ThinkPad Laptop,1,999.99,11/04/19 15:53,"183 12th St, New York City, NY 10001" +281753,iPhone,1,700,11/03/19 10:50,"64 5th St, San Francisco, CA 94016" +281754,AAA Batteries (4-pack),2,2.99,11/27/19 21:12,"590 Washington St, Los Angeles, CA 90001" +281755,AAA Batteries (4-pack),3,2.99,11/17/19 16:51,"182 Elm St, Austin, TX 73301" +281756,Lightning Charging Cable,1,14.95,11/24/19 09:45,"387 Elm St, Los Angeles, CA 90001" +281757,Macbook Pro Laptop,1,1700,11/08/19 12:20,"997 1st St, Boston, MA 02215" +281757,Lightning Charging Cable,1,14.95,11/08/19 12:20,"997 1st St, Boston, MA 02215" +281758,USB-C Charging Cable,1,11.95,11/18/19 21:56,"434 9th St, Los Angeles, CA 90001" +281759,Wired Headphones,1,11.99,11/03/19 07:51,"971 Lincoln St, New York City, NY 10001" +281760,USB-C Charging Cable,1,11.95,11/07/19 11:31,"549 Johnson St, New York City, NY 10001" +281761,Wired Headphones,1,11.99,11/17/19 12:53,"859 Ridge St, New York City, NY 10001" +281762,AA Batteries (4-pack),1,3.84,11/02/19 18:53,"843 Wilson St, Boston, MA 02215" +281763,AA Batteries (4-pack),1,3.84,11/09/19 16:56,"963 Walnut St, Dallas, TX 75001" +281764,AA Batteries (4-pack),1,3.84,11/28/19 11:56,"549 7th St, San Francisco, CA 94016" +281765,AAA Batteries (4-pack),1,2.99,11/26/19 09:26,"584 West St, San Francisco, CA 94016" +281766,AA Batteries (4-pack),1,3.84,11/14/19 11:19,"914 Jefferson St, Boston, MA 02215" +281767,USB-C Charging Cable,1,11.95,11/02/19 10:14,"195 Wilson St, Los Angeles, CA 90001" +281768,iPhone,1,700,11/22/19 16:04,"781 Walnut St, Boston, MA 02215" +281769,ThinkPad Laptop,1,999.99,11/26/19 15:11,"702 Jefferson St, Boston, MA 02215" +281770,27in FHD Monitor,2,149.99,11/15/19 11:16,"613 13th St, New York City, NY 10001" +281771,AA Batteries (4-pack),1,3.84,11/03/19 16:36,"225 Lincoln St, Los Angeles, CA 90001" +281772,20in Monitor,1,109.99,11/05/19 10:54,"807 Hill St, Portland, ME 04101" +281773,34in Ultrawide Monitor,1,379.99,11/03/19 17:58,"654 Lake St, Dallas, TX 75001" +281774,Apple Airpods Headphones,1,150,11/23/19 12:59,"229 Hickory St, San Francisco, CA 94016" +281775,Google Phone,1,600,11/26/19 12:46,"664 Willow St, Portland, OR 97035" +281776,34in Ultrawide Monitor,1,379.99,11/22/19 10:39,"131 11th St, Seattle, WA 98101" +281777,Bose SoundSport Headphones,1,99.99,11/30/19 18:02,"342 Johnson St, Austin, TX 73301" +281778,Wired Headphones,1,11.99,11/10/19 13:03,"161 South St, Austin, TX 73301" +281779,Lightning Charging Cable,1,14.95,11/23/19 17:16,"685 Cherry St, Los Angeles, CA 90001" +281780,USB-C Charging Cable,1,11.95,11/20/19 19:40,"183 8th St, New York City, NY 10001" +281781,AA Batteries (4-pack),1,3.84,11/11/19 10:58,"69 10th St, Atlanta, GA 30301" +281782,AA Batteries (4-pack),1,3.84,11/18/19 09:28,"823 Madison St, Dallas, TX 75001" +281783,AA Batteries (4-pack),1,3.84,11/29/19 17:09,"465 Washington St, New York City, NY 10001" +281784,Macbook Pro Laptop,1,1700,11/15/19 13:25,"795 Walnut St, San Francisco, CA 94016" +281785,USB-C Charging Cable,1,11.95,11/02/19 13:38,"521 Spruce St, San Francisco, CA 94016" +281786,Wired Headphones,1,11.99,11/10/19 14:08,"430 2nd St, Atlanta, GA 30301" +281787,AAA Batteries (4-pack),4,2.99,11/22/19 08:32,"705 Lake St, New York City, NY 10001" +281788,AAA Batteries (4-pack),2,2.99,11/08/19 13:58,"576 Washington St, Los Angeles, CA 90001" +281789,AA Batteries (4-pack),1,3.84,11/04/19 00:42,"820 7th St, Boston, MA 02215" +281790,LG Washing Machine,1,600.0,11/28/19 19:03,"11 13th St, Los Angeles, CA 90001" +281791,Bose SoundSport Headphones,1,99.99,11/25/19 15:12,"589 Highland St, Atlanta, GA 30301" +281792,Apple Airpods Headphones,1,150,11/28/19 10:49,"408 Wilson St, Los Angeles, CA 90001" +281793,USB-C Charging Cable,1,11.95,11/07/19 08:07,"18 Adams St, San Francisco, CA 94016" +281794,Bose SoundSport Headphones,1,99.99,11/17/19 19:55,"4 9th St, Los Angeles, CA 90001" +281795,LG Washing Machine,1,600.0,11/30/19 01:05,"246 10th St, Boston, MA 02215" +281796,Bose SoundSport Headphones,1,99.99,11/15/19 18:43,"763 River St, Los Angeles, CA 90001" +281797,AA Batteries (4-pack),1,3.84,11/24/19 18:16,"355 Lakeview St, Los Angeles, CA 90001" +281798,AA Batteries (4-pack),2,3.84,11/03/19 06:43,"886 1st St, San Francisco, CA 94016" +281799,Lightning Charging Cable,1,14.95,11/09/19 04:47,"989 Church St, San Francisco, CA 94016" +281800,Lightning Charging Cable,1,14.95,11/30/19 08:46,"891 Pine St, San Francisco, CA 94016" +281801,AA Batteries (4-pack),1,3.84,11/13/19 20:13,"903 Hill St, San Francisco, CA 94016" +281802,AAA Batteries (4-pack),2,2.99,11/14/19 13:11,"21 Johnson St, Seattle, WA 98101" +281803,iPhone,1,700,11/19/19 13:37,"404 Johnson St, Dallas, TX 75001" +281804,AAA Batteries (4-pack),1,2.99,11/27/19 08:39,"423 South St, Boston, MA 02215" +281805,Bose SoundSport Headphones,1,99.99,11/18/19 22:07,"262 Johnson St, Los Angeles, CA 90001" +281806,27in 4K Gaming Monitor,1,389.99,11/08/19 14:24,"559 Maple St, San Francisco, CA 94016" +281807,27in FHD Monitor,1,149.99,11/20/19 14:23,"662 10th St, Dallas, TX 75001" +281808,Wired Headphones,1,11.99,11/22/19 09:26,"351 10th St, Atlanta, GA 30301" +281809,Wired Headphones,1,11.99,11/12/19 16:46,"970 Jackson St, Boston, MA 02215" +281810,AA Batteries (4-pack),1,3.84,11/13/19 22:30,"883 1st St, Los Angeles, CA 90001" +281811,27in FHD Monitor,1,149.99,11/22/19 21:16,"972 Sunset St, San Francisco, CA 94016" +281812,Bose SoundSport Headphones,1,99.99,11/07/19 19:02,"732 5th St, Dallas, TX 75001" +281812,AAA Batteries (4-pack),1,2.99,11/07/19 19:02,"732 5th St, Dallas, TX 75001" +281813,Lightning Charging Cable,1,14.95,11/19/19 17:37,"877 12th St, Boston, MA 02215" +281814,AAA Batteries (4-pack),3,2.99,11/07/19 11:57,"433 6th St, Boston, MA 02215" +281815,AAA Batteries (4-pack),1,2.99,11/16/19 20:50,"264 West St, San Francisco, CA 94016" +281816,Lightning Charging Cable,1,14.95,11/30/19 15:35,"308 Wilson St, Atlanta, GA 30301" +281817,Wired Headphones,1,11.99,11/13/19 16:15,"262 Main St, Dallas, TX 75001" +281818,AAA Batteries (4-pack),1,2.99,11/24/19 11:51,"725 North St, Boston, MA 02215" +281819,USB-C Charging Cable,1,11.95,11/20/19 12:24,"783 Johnson St, Atlanta, GA 30301" +281820,20in Monitor,1,109.99,11/08/19 15:25,"350 Dogwood St, Austin, TX 73301" +281821,AA Batteries (4-pack),1,3.84,11/22/19 20:20,"420 Jackson St, San Francisco, CA 94016" +281822,Apple Airpods Headphones,1,150,11/30/19 09:21,"434 Center St, San Francisco, CA 94016" +281823,Apple Airpods Headphones,1,150,11/04/19 10:57,"702 Walnut St, San Francisco, CA 94016" +281824,27in 4K Gaming Monitor,1,389.99,11/24/19 10:16,"429 4th St, San Francisco, CA 94016" +281825,USB-C Charging Cable,1,11.95,11/28/19 23:01,"135 Church St, Los Angeles, CA 90001" +281826,AA Batteries (4-pack),1,3.84,11/05/19 11:33,"100 Wilson St, Boston, MA 02215" +281827,Google Phone,1,600,11/30/19 12:13,"726 Wilson St, New York City, NY 10001" +281827,USB-C Charging Cable,1,11.95,11/30/19 12:13,"726 Wilson St, New York City, NY 10001" +281828,Wired Headphones,1,11.99,11/13/19 21:00,"834 Madison St, Boston, MA 02215" +281829,Bose SoundSport Headphones,1,99.99,11/29/19 16:13,"558 Willow St, Los Angeles, CA 90001" +281830,iPhone,1,700,11/22/19 11:48,"472 7th St, Atlanta, GA 30301" +281831,Lightning Charging Cable,1,14.95,11/14/19 17:45,"285 6th St, San Francisco, CA 94016" +281832,Lightning Charging Cable,1,14.95,11/16/19 18:57,"175 Sunset St, New York City, NY 10001" +281833,Wired Headphones,1,11.99,11/26/19 08:03,"418 Main St, Austin, TX 73301" +281834,AAA Batteries (4-pack),1,2.99,11/08/19 09:29,"977 8th St, Los Angeles, CA 90001" +281835,27in FHD Monitor,1,149.99,11/13/19 09:53,"922 Lincoln St, San Francisco, CA 94016" +281836,Lightning Charging Cable,1,14.95,11/26/19 18:14,"317 Sunset St, Austin, TX 73301" +281837,AA Batteries (4-pack),2,3.84,11/27/19 13:33,"763 10th St, San Francisco, CA 94016" +281838,Wired Headphones,1,11.99,11/21/19 12:40,"997 10th St, San Francisco, CA 94016" +281839,ThinkPad Laptop,1,999.99,11/16/19 00:54,"768 Chestnut St, San Francisco, CA 94016" +281840,AA Batteries (4-pack),1,3.84,11/19/19 07:40,"631 Park St, New York City, NY 10001" +281841,Apple Airpods Headphones,1,150,11/10/19 21:36,"342 Lakeview St, Dallas, TX 75001" +281842,20in Monitor,1,109.99,11/07/19 14:10,"225 5th St, Los Angeles, CA 90001" +281843,Bose SoundSport Headphones,1,99.99,11/13/19 19:47,"748 Park St, Boston, MA 02215" +281844,Wired Headphones,1,11.99,11/03/19 12:17,"841 Willow St, Atlanta, GA 30301" +281845,iPhone,1,700,11/18/19 09:14,"724 Ridge St, New York City, NY 10001" +281845,Apple Airpods Headphones,1,150,11/18/19 09:14,"724 Ridge St, New York City, NY 10001" +281846,ThinkPad Laptop,1,999.99,11/18/19 22:23,"647 4th St, Seattle, WA 98101" +281847,Wired Headphones,1,11.99,11/20/19 13:27,"633 4th St, San Francisco, CA 94016" +281848,AAA Batteries (4-pack),1,2.99,11/27/19 16:43,"843 Lakeview St, Atlanta, GA 30301" +281849,ThinkPad Laptop,1,999.99,11/18/19 04:46,"803 Johnson St, Atlanta, GA 30301" +281850,Macbook Pro Laptop,1,1700,11/06/19 14:18,"424 Forest St, Austin, TX 73301" +281851,AAA Batteries (4-pack),1,2.99,11/11/19 17:12,"818 Jackson St, Los Angeles, CA 90001" +281852,AAA Batteries (4-pack),1,2.99,11/22/19 16:22,"705 Cedar St, Dallas, TX 75001" +281853,27in 4K Gaming Monitor,1,389.99,11/27/19 15:56,"251 Madison St, Seattle, WA 98101" +281854,Macbook Pro Laptop,1,1700,11/01/19 11:12,"491 South St, Boston, MA 02215" +281855,Apple Airpods Headphones,1,150,11/04/19 11:08,"813 Walnut St, Boston, MA 02215" +281856,Apple Airpods Headphones,1,150,11/26/19 19:09,"516 Elm St, Los Angeles, CA 90001" +281857,27in 4K Gaming Monitor,1,389.99,11/15/19 05:49,"402 8th St, Los Angeles, CA 90001" +281858,AAA Batteries (4-pack),1,2.99,11/16/19 23:03,"626 Hill St, New York City, NY 10001" +281859,AA Batteries (4-pack),1,3.84,11/13/19 16:16,"304 Cedar St, Atlanta, GA 30301" +281860,AA Batteries (4-pack),1,3.84,11/08/19 11:17,"465 Center St, Boston, MA 02215" +281861,AAA Batteries (4-pack),1,2.99,11/21/19 18:19,"174 Ridge St, Los Angeles, CA 90001" +281862,USB-C Charging Cable,1,11.95,11/19/19 19:31,"281 10th St, Los Angeles, CA 90001" +281863,AAA Batteries (4-pack),1,2.99,11/22/19 12:49,"877 Wilson St, Los Angeles, CA 90001" +281864,Google Phone,1,600,11/11/19 14:22,"476 12th St, Dallas, TX 75001" +281865,Vareebadd Phone,1,400,11/30/19 16:47,"727 Lakeview St, Los Angeles, CA 90001" +281866,Wired Headphones,1,11.99,11/05/19 17:48,"966 14th St, San Francisco, CA 94016" +281867,Lightning Charging Cable,1,14.95,11/28/19 23:37,"324 2nd St, New York City, NY 10001" +281868,AAA Batteries (4-pack),3,2.99,11/07/19 20:42,"653 2nd St, San Francisco, CA 94016" +281869,iPhone,1,700,11/25/19 09:17,"166 Pine St, New York City, NY 10001" +281869,Lightning Charging Cable,2,14.95,11/25/19 09:17,"166 Pine St, New York City, NY 10001" +281870,27in 4K Gaming Monitor,1,389.99,11/19/19 11:08,"752 6th St, San Francisco, CA 94016" +281871,AA Batteries (4-pack),1,3.84,11/27/19 09:23,"536 Jefferson St, Dallas, TX 75001" +281872,27in 4K Gaming Monitor,1,389.99,11/02/19 04:11,"698 13th St, Boston, MA 02215" +281873,LG Washing Machine,1,600.0,11/08/19 17:32,"896 4th St, Dallas, TX 75001" +281874,USB-C Charging Cable,1,11.95,11/08/19 10:35,"973 12th St, Los Angeles, CA 90001" +281875,34in Ultrawide Monitor,1,379.99,11/03/19 02:33,"871 North St, Atlanta, GA 30301" +281876,Wired Headphones,1,11.99,11/08/19 17:37,"486 Forest St, Atlanta, GA 30301" +281877,Wired Headphones,1,11.99,11/20/19 11:15,"856 12th St, Austin, TX 73301" +281878,27in 4K Gaming Monitor,1,389.99,11/07/19 12:02,"937 13th St, Atlanta, GA 30301" +281878,Macbook Pro Laptop,1,1700,11/07/19 12:02,"937 13th St, Atlanta, GA 30301" +281879,AAA Batteries (4-pack),1,2.99,11/13/19 13:29,"58 West St, Boston, MA 02215" +281880,Wired Headphones,2,11.99,11/17/19 13:57,"377 Center St, San Francisco, CA 94016" +281881,Bose SoundSport Headphones,1,99.99,11/17/19 07:51,"752 2nd St, Atlanta, GA 30301" +281882,Wired Headphones,1,11.99,11/12/19 17:15,"97 Lake St, Los Angeles, CA 90001" +281883,AAA Batteries (4-pack),3,2.99,11/25/19 10:16,"741 Adams St, New York City, NY 10001" +281884,Bose SoundSport Headphones,1,99.99,11/23/19 10:43,"70 10th St, Los Angeles, CA 90001" +281885,ThinkPad Laptop,1,999.99,11/23/19 14:02,"569 River St, Boston, MA 02215" +281886,AAA Batteries (4-pack),1,2.99,11/17/19 19:49,"118 6th St, San Francisco, CA 94016" +281887,AAA Batteries (4-pack),3,2.99,11/30/19 22:33,"983 Jefferson St, San Francisco, CA 94016" +281888,iPhone,1,700,11/13/19 22:38,"135 4th St, Boston, MA 02215" +281889,Apple Airpods Headphones,1,150,11/12/19 11:46,"409 Meadow St, Los Angeles, CA 90001" +281890,27in FHD Monitor,1,149.99,11/23/19 14:20,"16 Cedar St, Boston, MA 02215" +281891,Lightning Charging Cable,1,14.95,11/27/19 16:49,"837 Lakeview St, Boston, MA 02215" +281892,Wired Headphones,1,11.99,11/29/19 20:17,"792 Pine St, New York City, NY 10001" +281893,AAA Batteries (4-pack),1,2.99,11/15/19 23:22,"79 Washington St, Atlanta, GA 30301" +281894,USB-C Charging Cable,1,11.95,11/25/19 00:56,"984 South St, Los Angeles, CA 90001" +281895,Lightning Charging Cable,1,14.95,11/26/19 18:33,"18 Lincoln St, San Francisco, CA 94016" +281896,27in FHD Monitor,1,149.99,11/02/19 10:05,"371 Cherry St, Los Angeles, CA 90001" +281897,USB-C Charging Cable,1,11.95,11/16/19 23:47,"97 8th St, Boston, MA 02215" +281898,Wired Headphones,1,11.99,11/19/19 19:24,"873 Pine St, Austin, TX 73301" +281899,Lightning Charging Cable,1,14.95,11/01/19 10:06,"397 North St, Dallas, TX 75001" +281900,USB-C Charging Cable,2,11.95,11/08/19 19:42,"949 Cherry St, Boston, MA 02215" +281901,27in 4K Gaming Monitor,1,389.99,11/01/19 22:25,"646 12th St, Seattle, WA 98101" +281902,USB-C Charging Cable,1,11.95,11/02/19 14:37,"675 Main St, New York City, NY 10001" +281903,Wired Headphones,1,11.99,11/26/19 23:28,"788 West St, Dallas, TX 75001" +281904,AA Batteries (4-pack),1,3.84,11/29/19 09:14,"497 Spruce St, Los Angeles, CA 90001" +281905,27in 4K Gaming Monitor,1,389.99,11/13/19 15:08,"114 10th St, San Francisco, CA 94016" +281906,Lightning Charging Cable,1,14.95,11/27/19 15:08,"798 Pine St, Portland, OR 97035" +281907,Apple Airpods Headphones,1,150,11/13/19 18:06,"286 10th St, Boston, MA 02215" +281908,34in Ultrawide Monitor,1,379.99,11/10/19 16:16,"528 Willow St, Dallas, TX 75001" +281909,AAA Batteries (4-pack),1,2.99,11/03/19 15:25,"265 4th St, San Francisco, CA 94016" +281910,27in FHD Monitor,1,149.99,11/19/19 18:42,"629 13th St, Los Angeles, CA 90001" +281911,Bose SoundSport Headphones,1,99.99,11/03/19 13:00,"245 Center St, New York City, NY 10001" +,,,,, +281912,Macbook Pro Laptop,1,1700,11/21/19 11:54,"266 7th St, Seattle, WA 98101" +281913,Wired Headphones,2,11.99,11/11/19 13:18,"149 Cedar St, Los Angeles, CA 90001" +281914,Bose SoundSport Headphones,1,99.99,11/21/19 09:34,"758 13th St, New York City, NY 10001" +281915,Wired Headphones,1,11.99,11/30/19 11:45,"13 Maple St, San Francisco, CA 94016" +281916,Wired Headphones,1,11.99,11/23/19 14:19,"848 Pine St, Boston, MA 02215" +281917,USB-C Charging Cable,1,11.95,11/08/19 11:16,"13 Wilson St, Atlanta, GA 30301" +281918,USB-C Charging Cable,1,11.95,11/07/19 19:35,"215 Hill St, Atlanta, GA 30301" +281919,AA Batteries (4-pack),3,3.84,11/17/19 15:57,"24 Cedar St, Portland, OR 97035" +281920,Google Phone,1,600,11/17/19 17:50,"970 2nd St, Austin, TX 73301" +281921,Macbook Pro Laptop,1,1700,11/05/19 23:20,"146 South St, Los Angeles, CA 90001" +281922,AAA Batteries (4-pack),1,2.99,11/18/19 11:50,"980 Johnson St, Los Angeles, CA 90001" +281923,20in Monitor,1,109.99,11/23/19 15:12,"668 Highland St, Atlanta, GA 30301" +281924,AA Batteries (4-pack),2,3.84,11/18/19 16:01,"519 14th St, Portland, OR 97035" +281925,Apple Airpods Headphones,1,150,11/20/19 22:11,"758 Dogwood St, Dallas, TX 75001" +281926,Lightning Charging Cable,1,14.95,11/27/19 18:43,"458 Jackson St, New York City, NY 10001" +281927,AAA Batteries (4-pack),1,2.99,11/06/19 07:56,"359 2nd St, Los Angeles, CA 90001" +281928,Bose SoundSport Headphones,1,99.99,11/28/19 18:32,"306 Spruce St, Atlanta, GA 30301" +281929,ThinkPad Laptop,1,999.99,11/18/19 08:25,"372 9th St, Los Angeles, CA 90001" +281930,Lightning Charging Cable,1,14.95,11/17/19 21:21,"625 Meadow St, Los Angeles, CA 90001" +281931,AA Batteries (4-pack),1,3.84,11/21/19 00:30,"617 Adams St, Dallas, TX 75001" +281932,Wired Headphones,1,11.99,11/23/19 05:49,"235 Cedar St, Portland, OR 97035" +281933,USB-C Charging Cable,1,11.95,11/16/19 23:09,"609 Wilson St, Portland, OR 97035" +281934,USB-C Charging Cable,1,11.95,11/29/19 20:41,"887 Meadow St, New York City, NY 10001" +281935,34in Ultrawide Monitor,1,379.99,11/14/19 11:36,"256 Meadow St, Boston, MA 02215" +281936,USB-C Charging Cable,1,11.95,11/06/19 14:13,"113 Forest St, Atlanta, GA 30301" +281937,Lightning Charging Cable,1,14.95,11/01/19 22:59,"544 Wilson St, Dallas, TX 75001" +281938,Bose SoundSport Headphones,1,99.99,11/26/19 18:27,"117 8th St, Los Angeles, CA 90001" +281939,iPhone,1,700,11/20/19 13:29,"167 Park St, New York City, NY 10001" +281939,Apple Airpods Headphones,1,150,11/20/19 13:29,"167 Park St, New York City, NY 10001" +281940,Wired Headphones,1,11.99,11/27/19 13:26,"530 Lakeview St, Austin, TX 73301" +281941,Apple Airpods Headphones,1,150,11/23/19 19:39,"263 Maple St, Austin, TX 73301" +281942,Lightning Charging Cable,1,14.95,11/08/19 18:18,"41 Center St, Boston, MA 02215" +281943,Google Phone,1,600,11/22/19 21:25,"501 Forest St, San Francisco, CA 94016" +281944,AAA Batteries (4-pack),1,2.99,11/25/19 00:24,"270 Forest St, New York City, NY 10001" +281945,20in Monitor,1,109.99,11/06/19 14:31,"638 Forest St, Dallas, TX 75001" +281946,USB-C Charging Cable,1,11.95,11/27/19 11:54,"799 1st St, San Francisco, CA 94016" +281947,Wired Headphones,1,11.99,11/10/19 14:21,"651 Forest St, Los Angeles, CA 90001" +281948,Vareebadd Phone,1,400,11/15/19 08:26,"334 4th St, Atlanta, GA 30301" +281948,Bose SoundSport Headphones,1,99.99,11/15/19 08:26,"334 4th St, Atlanta, GA 30301" +281949,34in Ultrawide Monitor,1,379.99,11/03/19 20:22,"42 Forest St, Austin, TX 73301" +281950,USB-C Charging Cable,1,11.95,11/01/19 10:23,"454 Center St, Los Angeles, CA 90001" +281950,USB-C Charging Cable,1,11.95,11/01/19 10:23,"454 Center St, Los Angeles, CA 90001" +281951,AAA Batteries (4-pack),1,2.99,11/16/19 14:13,"934 10th St, Atlanta, GA 30301" +281952,27in 4K Gaming Monitor,1,389.99,11/21/19 22:51,"18 Center St, San Francisco, CA 94016" +281953,iPhone,1,700,11/25/19 14:41,"705 12th St, Los Angeles, CA 90001" +281954,AA Batteries (4-pack),1,3.84,11/05/19 17:32,"532 Walnut St, Portland, OR 97035" +281955,AAA Batteries (4-pack),3,2.99,11/25/19 06:19,"908 Hickory St, Seattle, WA 98101" +281956,Lightning Charging Cable,1,14.95,11/16/19 17:00,"479 Jackson St, San Francisco, CA 94016" +281957,iPhone,1,700,11/26/19 17:14,"830 11th St, Los Angeles, CA 90001" +281958,USB-C Charging Cable,1,11.95,11/22/19 09:24,"509 Pine St, San Francisco, CA 94016" +281959,Wired Headphones,1,11.99,11/05/19 09:26,"349 Lake St, Boston, MA 02215" +281960,Apple Airpods Headphones,1,150,11/04/19 11:35,"637 Lakeview St, Los Angeles, CA 90001" +281961,AAA Batteries (4-pack),1,2.99,11/30/19 12:00,"329 River St, Seattle, WA 98101" +281962,20in Monitor,1,109.99,11/23/19 21:43,"42 Wilson St, San Francisco, CA 94016" +281963,27in 4K Gaming Monitor,1,389.99,11/21/19 17:26,"985 1st St, Los Angeles, CA 90001" +281964,Wired Headphones,1,11.99,11/02/19 11:31,"781 Dogwood St, Portland, ME 04101" +281965,Apple Airpods Headphones,1,150,11/11/19 16:40,"893 Church St, New York City, NY 10001" +281966,Apple Airpods Headphones,1,150,11/30/19 13:48,"311 Hill St, New York City, NY 10001" +281967,Flatscreen TV,1,300,11/28/19 10:59,"690 Jefferson St, Austin, TX 73301" +281968,Apple Airpods Headphones,1,150,11/21/19 14:40,"351 Madison St, Atlanta, GA 30301" +281969,Bose SoundSport Headphones,1,99.99,11/27/19 23:58,"60 Center St, Boston, MA 02215" +281970,AAA Batteries (4-pack),3,2.99,11/05/19 10:42,"399 Maple St, San Francisco, CA 94016" +281971,AAA Batteries (4-pack),1,2.99,11/12/19 10:29,"784 5th St, Boston, MA 02215" +281972,27in 4K Gaming Monitor,1,389.99,11/02/19 15:04,"339 13th St, San Francisco, CA 94016" +281973,Lightning Charging Cable,1,14.95,11/29/19 10:16,"463 Center St, San Francisco, CA 94016" +281974,Wired Headphones,1,11.99,11/10/19 09:31,"447 Lakeview St, Boston, MA 02215" +281975,iPhone,1,700,12/01/19 00:53,"283 River St, Boston, MA 02215" +281976,Bose SoundSport Headphones,1,99.99,11/27/19 07:10,"909 Lincoln St, Dallas, TX 75001" +281977,AA Batteries (4-pack),1,3.84,11/16/19 10:03,"125 4th St, San Francisco, CA 94016" +281978,iPhone,1,700,11/07/19 18:03,"759 2nd St, San Francisco, CA 94016" +281979,27in 4K Gaming Monitor,1,389.99,11/29/19 14:02,"483 11th St, Los Angeles, CA 90001" +281980,AA Batteries (4-pack),2,3.84,11/03/19 09:46,"360 Forest St, San Francisco, CA 94016" +281981,Lightning Charging Cable,1,14.95,11/11/19 14:50,"936 Hill St, New York City, NY 10001" +281982,20in Monitor,1,109.99,11/28/19 19:43,"426 Jefferson St, New York City, NY 10001" +281983,iPhone,1,700,11/26/19 10:13,"331 Washington St, San Francisco, CA 94016" +281984,AA Batteries (4-pack),1,3.84,11/06/19 11:44,"83 Jackson St, Dallas, TX 75001" +281985,USB-C Charging Cable,1,11.95,11/14/19 17:45,"349 Wilson St, New York City, NY 10001" +281986,USB-C Charging Cable,1,11.95,11/10/19 15:41,"636 Highland St, Seattle, WA 98101" +281987,Wired Headphones,1,11.99,11/10/19 12:01,"493 9th St, Los Angeles, CA 90001" +281988,AAA Batteries (4-pack),1,2.99,11/25/19 10:56,"538 Jefferson St, New York City, NY 10001" +281989,Bose SoundSport Headphones,1,99.99,11/22/19 10:27,"78 1st St, Atlanta, GA 30301" +281990,20in Monitor,1,109.99,11/30/19 08:40,"277 West St, San Francisco, CA 94016" +281991,USB-C Charging Cable,1,11.95,11/24/19 19:34,"832 Cherry St, Boston, MA 02215" +281992,AA Batteries (4-pack),1,3.84,11/12/19 22:15,"770 Church St, San Francisco, CA 94016" +281993,Google Phone,1,600,11/24/19 14:26,"914 Wilson St, New York City, NY 10001" +281993,USB-C Charging Cable,1,11.95,11/24/19 14:26,"914 Wilson St, New York City, NY 10001" +281994,Macbook Pro Laptop,1,1700,11/25/19 22:22,"700 Meadow St, New York City, NY 10001" +281995,Lightning Charging Cable,1,14.95,11/02/19 21:20,"506 Sunset St, Atlanta, GA 30301" +281996,27in FHD Monitor,1,149.99,11/06/19 20:51,"275 8th St, Los Angeles, CA 90001" +281997,iPhone,1,700,11/10/19 19:55,"618 Washington St, Los Angeles, CA 90001" +281998,USB-C Charging Cable,1,11.95,11/12/19 20:38,"829 12th St, New York City, NY 10001" +281999,Apple Airpods Headphones,1,150,11/21/19 10:14,"222 Main St, Dallas, TX 75001" +282000,Wired Headphones,1,11.99,11/23/19 21:35,"560 6th St, Austin, TX 73301" +282001,USB-C Charging Cable,2,11.95,11/15/19 12:16,"751 Adams St, Atlanta, GA 30301" +282002,AAA Batteries (4-pack),1,2.99,11/09/19 22:55,"494 Meadow St, Los Angeles, CA 90001" +282003,USB-C Charging Cable,1,11.95,11/03/19 03:08,"508 1st St, San Francisco, CA 94016" +282004,Lightning Charging Cable,1,14.95,11/06/19 09:44,"743 Chestnut St, Los Angeles, CA 90001" +282005,Apple Airpods Headphones,1,150,11/22/19 12:55,"313 2nd St, Boston, MA 02215" +282006,34in Ultrawide Monitor,1,379.99,11/18/19 09:45,"497 River St, Los Angeles, CA 90001" +282007,Bose SoundSport Headphones,1,99.99,11/27/19 10:06,"254 Jefferson St, Dallas, TX 75001" +282008,Apple Airpods Headphones,1,150,11/09/19 15:58,"842 North St, San Francisco, CA 94016" +282009,Wired Headphones,1,11.99,11/01/19 19:51,"91 South St, Atlanta, GA 30301" +282010,Apple Airpods Headphones,1,150,11/17/19 20:51,"786 4th St, Portland, OR 97035" +282011,Wired Headphones,1,11.99,11/14/19 19:16,"846 8th St, San Francisco, CA 94016" +282012,USB-C Charging Cable,1,11.95,11/25/19 16:37,"271 Walnut St, Dallas, TX 75001" +282013,Lightning Charging Cable,2,14.95,11/13/19 14:09,"878 Willow St, San Francisco, CA 94016" +282014,AA Batteries (4-pack),3,3.84,11/08/19 20:53,"280 Spruce St, New York City, NY 10001" +282015,20in Monitor,1,109.99,11/22/19 18:54,"199 2nd St, Los Angeles, CA 90001" +282016,Google Phone,1,600,11/13/19 20:57,"418 4th St, Seattle, WA 98101" +282017,34in Ultrawide Monitor,1,379.99,11/05/19 18:26,"347 Sunset St, Seattle, WA 98101" +282018,Bose SoundSport Headphones,1,99.99,11/17/19 11:33,"786 Church St, San Francisco, CA 94016" +282019,Apple Airpods Headphones,1,150,11/04/19 19:46,"197 8th St, Atlanta, GA 30301" +282020,27in FHD Monitor,1,149.99,11/20/19 21:45,"84 Hickory St, New York City, NY 10001" +282021,Google Phone,1,600,11/05/19 10:26,"789 West St, Boston, MA 02215" +282021,USB-C Charging Cable,1,11.95,11/05/19 10:26,"789 West St, Boston, MA 02215" +282021,Bose SoundSport Headphones,1,99.99,11/05/19 10:26,"789 West St, Boston, MA 02215" +282022,Lightning Charging Cable,1,14.95,11/17/19 14:06,"269 11th St, Boston, MA 02215" +282023,Lightning Charging Cable,1,14.95,11/20/19 12:30,"272 12th St, San Francisco, CA 94016" +282024,iPhone,1,700,11/10/19 10:33,"566 4th St, New York City, NY 10001" +282024,Wired Headphones,1,11.99,11/10/19 10:33,"566 4th St, New York City, NY 10001" +282025,AAA Batteries (4-pack),4,2.99,11/05/19 17:42,"19 Spruce St, San Francisco, CA 94016" +282026,AAA Batteries (4-pack),1,2.99,11/05/19 16:54,"52 Adams St, San Francisco, CA 94016" +282027,AAA Batteries (4-pack),1,2.99,11/06/19 12:32,"22 Ridge St, San Francisco, CA 94016" +282028,Bose SoundSport Headphones,1,99.99,11/22/19 20:58,"502 Adams St, Portland, OR 97035" +282029,AAA Batteries (4-pack),1,2.99,11/13/19 19:19,"817 14th St, Boston, MA 02215" +282030,USB-C Charging Cable,1,11.95,11/27/19 00:49,"360 Sunset St, Portland, OR 97035" +,,,,, +282031,ThinkPad Laptop,1,999.99,11/27/19 10:13,"983 South St, Seattle, WA 98101" +282032,USB-C Charging Cable,1,11.95,11/08/19 19:35,"690 West St, Portland, ME 04101" +282033,Wired Headphones,1,11.99,11/29/19 17:39,"305 Lake St, Los Angeles, CA 90001" +282034,Wired Headphones,1,11.99,11/29/19 13:29,"665 North St, Seattle, WA 98101" +282035,iPhone,1,700,11/12/19 10:55,"738 Forest St, San Francisco, CA 94016" +282035,Wired Headphones,1,11.99,11/12/19 10:55,"738 Forest St, San Francisco, CA 94016" +282036,Wired Headphones,1,11.99,11/05/19 13:26,"396 West St, Seattle, WA 98101" +282037,Wired Headphones,1,11.99,11/16/19 11:41,"385 Jackson St, Boston, MA 02215" +282038,AAA Batteries (4-pack),2,2.99,11/10/19 08:40,"627 5th St, Portland, OR 97035" +282039,Macbook Pro Laptop,1,1700,11/15/19 12:36,"402 Hickory St, San Francisco, CA 94016" +282040,Wired Headphones,1,11.99,11/02/19 03:18,"812 Chestnut St, Austin, TX 73301" +282041,Wired Headphones,1,11.99,11/04/19 11:45,"361 Center St, Boston, MA 02215" +282042,Google Phone,1,600,11/24/19 09:36,"909 6th St, Boston, MA 02215" +282043,27in 4K Gaming Monitor,1,389.99,11/25/19 15:55,"357 West St, Los Angeles, CA 90001" +282044,27in 4K Gaming Monitor,1,389.99,11/22/19 18:11,"374 10th St, Boston, MA 02215" +282045,Apple Airpods Headphones,1,150,11/02/19 19:48,"13 Lake St, New York City, NY 10001" +282046,Apple Airpods Headphones,1,150,11/06/19 13:01,"514 Elm St, San Francisco, CA 94016" +282047,Apple Airpods Headphones,1,150,11/23/19 19:57,"556 5th St, San Francisco, CA 94016" +282048,Wired Headphones,2,11.99,11/30/19 16:26,"597 Ridge St, San Francisco, CA 94016" +282049,Apple Airpods Headphones,1,150,11/29/19 23:26,"57 2nd St, Los Angeles, CA 90001" +282050,34in Ultrawide Monitor,1,379.99,11/01/19 19:53,"55 Maple St, Dallas, TX 75001" +282051,27in 4K Gaming Monitor,1,389.99,11/07/19 18:00,"607 1st St, New York City, NY 10001" +282052,Bose SoundSport Headphones,1,99.99,11/16/19 11:49,"628 12th St, New York City, NY 10001" +282053,27in 4K Gaming Monitor,1,389.99,11/10/19 21:45,"736 8th St, San Francisco, CA 94016" +282054,AA Batteries (4-pack),3,3.84,11/05/19 21:49,"174 Cedar St, Atlanta, GA 30301" +282055,20in Monitor,1,109.99,11/13/19 12:30,"930 River St, Los Angeles, CA 90001" +282056,20in Monitor,1,109.99,11/18/19 08:58,"46 Willow St, Boston, MA 02215" +282057,Wired Headphones,1,11.99,11/11/19 15:50,"299 Jackson St, Seattle, WA 98101" +282058,27in 4K Gaming Monitor,1,389.99,11/29/19 17:17,"746 Sunset St, New York City, NY 10001" +282059,Wired Headphones,1,11.99,11/24/19 14:20,"973 12th St, Los Angeles, CA 90001" +282060,20in Monitor,1,109.99,11/10/19 20:33,"744 Sunset St, Atlanta, GA 30301" +282061,USB-C Charging Cable,1,11.95,11/01/19 20:16,"222 Meadow St, San Francisco, CA 94016" +282062,Apple Airpods Headphones,1,150,11/17/19 11:57,"831 Pine St, San Francisco, CA 94016" +282063,iPhone,1,700,11/04/19 18:28,"472 Jefferson St, Boston, MA 02215" +282064,Wired Headphones,1,11.99,11/11/19 20:11,"438 14th St, Austin, TX 73301" +282065,AA Batteries (4-pack),1,3.84,11/15/19 18:21,"719 Pine St, Los Angeles, CA 90001" +282066,Lightning Charging Cable,1,14.95,11/07/19 19:19,"760 Main St, San Francisco, CA 94016" +282067,Lightning Charging Cable,1,14.95,11/07/19 18:17,"195 Hickory St, Boston, MA 02215" +282068,Apple Airpods Headphones,1,150,11/10/19 00:33,"997 Willow St, Los Angeles, CA 90001" +282069,34in Ultrawide Monitor,1,379.99,11/04/19 20:31,"681 Maple St, Los Angeles, CA 90001" +282070,Lightning Charging Cable,1,14.95,11/01/19 21:11,"501 5th St, San Francisco, CA 94016" +282071,Bose SoundSport Headphones,1,99.99,11/10/19 21:38,"829 12th St, Los Angeles, CA 90001" +282072,Wired Headphones,1,11.99,11/03/19 22:35,"876 Jackson St, Boston, MA 02215" +282073,iPhone,1,700,11/11/19 13:36,"806 Lincoln St, New York City, NY 10001" +282073,Lightning Charging Cable,1,14.95,11/11/19 13:36,"806 Lincoln St, New York City, NY 10001" +282074,Google Phone,1,600,11/29/19 16:21,"342 Ridge St, San Francisco, CA 94016" +282075,Google Phone,1,600,11/24/19 21:53,"71 Wilson St, Los Angeles, CA 90001" +282075,USB-C Charging Cable,1,11.95,11/24/19 21:53,"71 Wilson St, Los Angeles, CA 90001" +282076,27in 4K Gaming Monitor,1,389.99,11/25/19 23:26,"531 Forest St, San Francisco, CA 94016" +282077,USB-C Charging Cable,1,11.95,11/06/19 21:10,"17 Walnut St, New York City, NY 10001" +282078,AAA Batteries (4-pack),1,2.99,11/20/19 10:55,"60 Adams St, New York City, NY 10001" +282079,Lightning Charging Cable,1,14.95,11/08/19 08:55,"889 Meadow St, Seattle, WA 98101" +282080,AA Batteries (4-pack),1,3.84,11/23/19 11:35,"172 Johnson St, New York City, NY 10001" +282081,27in FHD Monitor,1,149.99,11/09/19 09:32,"437 Washington St, San Francisco, CA 94016" +282081,Wired Headphones,1,11.99,11/09/19 09:32,"437 Washington St, San Francisco, CA 94016" +282082,Bose SoundSport Headphones,1,99.99,11/17/19 16:31,"615 Church St, Austin, TX 73301" +282083,Wired Headphones,1,11.99,11/29/19 11:20,"130 14th St, Atlanta, GA 30301" +282084,Bose SoundSport Headphones,1,99.99,11/25/19 15:39,"596 Lake St, Los Angeles, CA 90001" +282085,Wired Headphones,1,11.99,11/09/19 08:12,"655 2nd St, San Francisco, CA 94016" +282086,AAA Batteries (4-pack),2,2.99,11/13/19 10:11,"358 Jefferson St, San Francisco, CA 94016" +282087,USB-C Charging Cable,1,11.95,11/28/19 10:58,"872 Park St, San Francisco, CA 94016" +282088,AAA Batteries (4-pack),4,2.99,11/13/19 15:48,"230 North St, New York City, NY 10001" +282089,AAA Batteries (4-pack),2,2.99,11/12/19 16:43,"927 Dogwood St, Los Angeles, CA 90001" +282090,Lightning Charging Cable,1,14.95,11/06/19 19:31,"853 Pine St, San Francisco, CA 94016" +282091,Apple Airpods Headphones,1,150,11/20/19 15:09,"850 Adams St, Dallas, TX 75001" +282092,AAA Batteries (4-pack),1,2.99,11/14/19 12:32,"254 Spruce St, Dallas, TX 75001" +282093,Apple Airpods Headphones,1,150,11/22/19 11:42,"200 Washington St, San Francisco, CA 94016" +282094,Flatscreen TV,1,300,11/09/19 19:57,"32 Highland St, Atlanta, GA 30301" +282095,Wired Headphones,1,11.99,11/23/19 20:11,"994 Center St, Boston, MA 02215" +282096,Lightning Charging Cable,1,14.95,11/09/19 12:08,"584 Elm St, San Francisco, CA 94016" +282097,34in Ultrawide Monitor,1,379.99,11/28/19 23:34,"143 Church St, San Francisco, CA 94016" +282098,AAA Batteries (4-pack),2,2.99,11/11/19 11:07,"289 Park St, Atlanta, GA 30301" +282099,Macbook Pro Laptop,1,1700,11/05/19 21:14,"695 Main St, San Francisco, CA 94016" +282100,Lightning Charging Cable,1,14.95,11/27/19 19:43,"593 8th St, Dallas, TX 75001" +282101,Vareebadd Phone,1,400,11/05/19 17:38,"578 Chestnut St, Portland, ME 04101" +282102,iPhone,1,700,11/02/19 21:10,"52 Chestnut St, San Francisco, CA 94016" +282102,Lightning Charging Cable,1,14.95,11/02/19 21:10,"52 Chestnut St, San Francisco, CA 94016" +282103,27in 4K Gaming Monitor,1,389.99,11/28/19 16:52,"768 Sunset St, New York City, NY 10001" +282104,Bose SoundSport Headphones,1,99.99,11/20/19 17:24,"372 Jefferson St, Boston, MA 02215" +282105,Macbook Pro Laptop,1,1700,11/24/19 15:14,"224 11th St, Atlanta, GA 30301" +282106,20in Monitor,1,109.99,11/30/19 10:51,"111 Jackson St, Los Angeles, CA 90001" +282107,AA Batteries (4-pack),1,3.84,11/12/19 00:07,"379 Lakeview St, Portland, OR 97035" +282108,AAA Batteries (4-pack),2,2.99,11/30/19 15:45,"886 Ridge St, Boston, MA 02215" +282109,27in 4K Gaming Monitor,1,389.99,11/25/19 12:53,"574 Chestnut St, San Francisco, CA 94016" +282110,Apple Airpods Headphones,1,150,11/13/19 15:42,"349 13th St, Austin, TX 73301" +282111,Wired Headphones,2,11.99,11/10/19 18:22,"352 10th St, Seattle, WA 98101" +282112,USB-C Charging Cable,1,11.95,11/18/19 15:29,"466 Cedar St, Atlanta, GA 30301" +282113,Macbook Pro Laptop,1,1700,11/08/19 11:11,"768 Jefferson St, Seattle, WA 98101" +282114,AA Batteries (4-pack),3,3.84,11/03/19 10:48,"285 1st St, Boston, MA 02215" +282115,AA Batteries (4-pack),1,3.84,11/21/19 18:07,"603 7th St, Boston, MA 02215" +282116,USB-C Charging Cable,1,11.95,11/05/19 18:27,"350 Johnson St, San Francisco, CA 94016" +282117,Lightning Charging Cable,2,14.95,12/01/19 00:02,"257 Wilson St, San Francisco, CA 94016" +282118,AA Batteries (4-pack),1,3.84,11/25/19 15:12,"544 7th St, Dallas, TX 75001" +282119,USB-C Charging Cable,1,11.95,11/01/19 15:21,"167 6th St, New York City, NY 10001" +282120,34in Ultrawide Monitor,1,379.99,11/29/19 14:47,"465 Dogwood St, Boston, MA 02215" +282121,Lightning Charging Cable,1,14.95,11/25/19 19:22,"441 Madison St, San Francisco, CA 94016" +282122,Wired Headphones,1,11.99,11/08/19 18:41,"583 9th St, Seattle, WA 98101" +282123,Lightning Charging Cable,1,14.95,11/19/19 13:59,"535 Lake St, Boston, MA 02215" +282124,USB-C Charging Cable,1,11.95,11/27/19 09:36,"57 South St, Boston, MA 02215" +282125,27in FHD Monitor,1,149.99,11/11/19 16:13,"833 Chestnut St, Boston, MA 02215" +282126,Apple Airpods Headphones,1,150,11/20/19 11:40,"665 Park St, Los Angeles, CA 90001" +282127,34in Ultrawide Monitor,1,379.99,11/04/19 23:12,"246 Sunset St, Dallas, TX 75001" +282128,Vareebadd Phone,1,400,11/05/19 09:54,"194 Wilson St, San Francisco, CA 94016" +282129,USB-C Charging Cable,1,11.95,11/09/19 12:54,"504 Hill St, Austin, TX 73301" +282130,AA Batteries (4-pack),1,3.84,11/25/19 16:46,"543 Jefferson St, Los Angeles, CA 90001" +282131,Google Phone,1,600,11/23/19 18:06,"886 8th St, Austin, TX 73301" +282132,Bose SoundSport Headphones,1,99.99,11/05/19 15:24,"67 Jackson St, Los Angeles, CA 90001" +282133,34in Ultrawide Monitor,1,379.99,11/01/19 10:31,"806 Cherry St, New York City, NY 10001" +282134,USB-C Charging Cable,1,11.95,11/12/19 23:40,"276 2nd St, San Francisco, CA 94016" +282135,27in FHD Monitor,1,149.99,11/28/19 14:41,"622 Center St, Los Angeles, CA 90001" +282136,AAA Batteries (4-pack),1,2.99,11/18/19 10:35,"774 6th St, Boston, MA 02215" +282137,Bose SoundSport Headphones,1,99.99,11/12/19 16:52,"450 9th St, Boston, MA 02215" +282138,AA Batteries (4-pack),1,3.84,11/29/19 19:23,"111 Johnson St, Atlanta, GA 30301" +282139,Bose SoundSport Headphones,1,99.99,11/04/19 00:42,"426 Lincoln St, Los Angeles, CA 90001" +282140,USB-C Charging Cable,2,11.95,11/07/19 13:42,"294 5th St, San Francisco, CA 94016" +282141,USB-C Charging Cable,1,11.95,11/02/19 22:02,"396 Church St, San Francisco, CA 94016" +282142,iPhone,1,700,11/29/19 13:46,"475 Elm St, Portland, OR 97035" +282143,USB-C Charging Cable,2,11.95,11/01/19 22:57,"551 Lincoln St, Austin, TX 73301" +282144,AAA Batteries (4-pack),2,2.99,11/06/19 09:50,"624 West St, Dallas, TX 75001" +282145,Wired Headphones,1,11.99,11/30/19 12:56,"7 6th St, Dallas, TX 75001" +282146,27in 4K Gaming Monitor,1,389.99,11/06/19 16:06,"568 11th St, New York City, NY 10001" +282147,USB-C Charging Cable,1,11.95,11/05/19 13:43,"168 Cherry St, New York City, NY 10001" +282148,AAA Batteries (4-pack),1,2.99,11/18/19 12:03,"879 2nd St, New York City, NY 10001" +282149,Bose SoundSport Headphones,1,99.99,11/19/19 12:57,"369 Meadow St, New York City, NY 10001" +282150,AA Batteries (4-pack),1,3.84,11/01/19 09:41,"284 Park St, Boston, MA 02215" +282151,USB-C Charging Cable,1,11.95,11/10/19 08:40,"638 Chestnut St, Los Angeles, CA 90001" +282152,Wired Headphones,1,11.99,11/02/19 20:10,"859 Adams St, San Francisco, CA 94016" +282153,AAA Batteries (4-pack),2,2.99,11/17/19 10:15,"774 River St, Los Angeles, CA 90001" +282154,Lightning Charging Cable,1,14.95,11/22/19 23:08,"462 Elm St, Atlanta, GA 30301" +282155,Lightning Charging Cable,1,14.95,11/15/19 08:43,"910 7th St, Los Angeles, CA 90001" +282156,USB-C Charging Cable,1,11.95,11/07/19 21:32,"262 Main St, New York City, NY 10001" +282157,Lightning Charging Cable,1,14.95,11/20/19 15:03,"632 Lincoln St, Los Angeles, CA 90001" +282158,USB-C Charging Cable,1,11.95,11/10/19 19:39,"370 Sunset St, San Francisco, CA 94016" +282159,AA Batteries (4-pack),1,3.84,11/20/19 13:57,"474 Jackson St, Los Angeles, CA 90001" +282160,Apple Airpods Headphones,1,150,11/27/19 21:05,"503 Hickory St, Los Angeles, CA 90001" +282161,27in FHD Monitor,1,149.99,11/08/19 21:53,"102 Hill St, Portland, OR 97035" +282162,Wired Headphones,1,11.99,11/06/19 14:15,"76 Church St, New York City, NY 10001" +282163,Lightning Charging Cable,2,14.95,11/20/19 20:13,"549 Main St, San Francisco, CA 94016" +282164,Apple Airpods Headphones,1,150,11/02/19 16:00,"349 Sunset St, Los Angeles, CA 90001" +282165,Google Phone,1,600,11/21/19 11:59,"40 1st St, New York City, NY 10001" +282166,Wired Headphones,1,11.99,11/08/19 14:59,"163 Lake St, Portland, OR 97035" +282167,LG Dryer,1,600.0,11/22/19 12:51,"337 12th St, Austin, TX 73301" +282168,Lightning Charging Cable,1,14.95,11/20/19 14:07,"114 Cherry St, San Francisco, CA 94016" +282168,Apple Airpods Headphones,1,150,11/20/19 14:07,"114 Cherry St, San Francisco, CA 94016" +282169,Bose SoundSport Headphones,1,99.99,11/08/19 09:44,"938 South St, New York City, NY 10001" +282170,Lightning Charging Cable,1,14.95,11/02/19 12:30,"502 Lincoln St, Los Angeles, CA 90001" +282171,Lightning Charging Cable,1,14.95,11/26/19 08:32,"668 9th St, Los Angeles, CA 90001" +282172,Wired Headphones,2,11.99,11/13/19 00:25,"767 Johnson St, San Francisco, CA 94016" +282173,USB-C Charging Cable,1,11.95,11/14/19 18:01,"664 Forest St, Dallas, TX 75001" +282174,Bose SoundSport Headphones,1,99.99,11/02/19 06:58,"486 Jackson St, Dallas, TX 75001" +282175,AAA Batteries (4-pack),1,2.99,11/26/19 18:35,"112 Dogwood St, San Francisco, CA 94016" +282176,34in Ultrawide Monitor,1,379.99,11/14/19 19:15,"704 Jackson St, Austin, TX 73301" +282177,Wired Headphones,1,11.99,11/14/19 09:34,"406 Park St, Los Angeles, CA 90001" +282178,Lightning Charging Cable,1,14.95,11/06/19 22:01,"189 13th St, San Francisco, CA 94016" +282179,27in FHD Monitor,1,149.99,11/20/19 13:12,"696 Jackson St, New York City, NY 10001" +282180,Apple Airpods Headphones,1,150,11/16/19 19:07,"934 Highland St, Boston, MA 02215" +282181,USB-C Charging Cable,1,11.95,11/12/19 16:18,"959 14th St, Portland, OR 97035" +282182,Macbook Pro Laptop,1,1700,11/21/19 10:45,"565 Hickory St, San Francisco, CA 94016" +282183,USB-C Charging Cable,1,11.95,11/08/19 20:45,"320 West St, New York City, NY 10001" +282184,Lightning Charging Cable,1,14.95,11/01/19 12:28,"262 Cherry St, Boston, MA 02215" +282185,Bose SoundSport Headphones,1,99.99,11/27/19 19:42,"834 Wilson St, New York City, NY 10001" +282186,Lightning Charging Cable,1,14.95,11/04/19 22:33,"415 Lakeview St, Austin, TX 73301" +282187,Macbook Pro Laptop,1,1700,11/30/19 15:41,"128 12th St, San Francisco, CA 94016" +282187,AAA Batteries (4-pack),1,2.99,11/30/19 15:41,"128 12th St, San Francisco, CA 94016" +282188,20in Monitor,1,109.99,11/23/19 08:29,"237 Highland St, New York City, NY 10001" +282189,USB-C Charging Cable,1,11.95,11/01/19 08:32,"760 6th St, Atlanta, GA 30301" +282190,Bose SoundSport Headphones,1,99.99,11/18/19 12:08,"686 West St, San Francisco, CA 94016" +282191,USB-C Charging Cable,1,11.95,11/08/19 10:57,"416 Willow St, San Francisco, CA 94016" +282192,Wired Headphones,1,11.99,11/23/19 14:33,"858 Johnson St, Seattle, WA 98101" +282193,Apple Airpods Headphones,1,150,11/13/19 14:13,"203 Adams St, Los Angeles, CA 90001" +282194,USB-C Charging Cable,1,11.95,11/12/19 16:33,"818 Wilson St, San Francisco, CA 94016" +282195,Lightning Charging Cable,2,14.95,11/28/19 18:26,"759 2nd St, Boston, MA 02215" +282196,AA Batteries (4-pack),1,3.84,11/23/19 14:57,"773 Sunset St, Los Angeles, CA 90001" +282197,Apple Airpods Headphones,1,150,11/05/19 16:10,"425 12th St, Boston, MA 02215" +282198,USB-C Charging Cable,1,11.95,11/21/19 22:40,"108 Park St, Seattle, WA 98101" +282199,Bose SoundSport Headphones,1,99.99,11/25/19 13:29,"283 Jackson St, Los Angeles, CA 90001" +282200,AA Batteries (4-pack),1,3.84,11/07/19 16:09,"130 Adams St, Seattle, WA 98101" +282201,34in Ultrawide Monitor,1,379.99,11/22/19 07:44,"159 North St, New York City, NY 10001" +282202,Wired Headphones,1,11.99,11/08/19 20:54,"897 14th St, Dallas, TX 75001" +282203,Apple Airpods Headphones,1,150,11/11/19 14:53,"816 Forest St, San Francisco, CA 94016" +282204,AAA Batteries (4-pack),5,2.99,11/12/19 19:39,"944 8th St, Portland, OR 97035" +282205,USB-C Charging Cable,1,11.95,11/10/19 10:33,"907 Washington St, Los Angeles, CA 90001" +282206,ThinkPad Laptop,1,999.99,11/23/19 16:48,"908 Madison St, San Francisco, CA 94016" +282207,USB-C Charging Cable,2,11.95,11/16/19 18:02,"139 Washington St, New York City, NY 10001" +282207,Google Phone,1,600,11/16/19 18:02,"139 Washington St, New York City, NY 10001" +282208,Apple Airpods Headphones,1,150,11/26/19 12:08,"674 13th St, San Francisco, CA 94016" +282209,34in Ultrawide Monitor,1,379.99,11/26/19 09:59,"831 West St, Boston, MA 02215" +282210,Wired Headphones,1,11.99,11/15/19 12:32,"436 North St, New York City, NY 10001" +282211,Google Phone,1,600,11/02/19 12:31,"843 North St, Seattle, WA 98101" +282212,Lightning Charging Cable,1,14.95,11/09/19 21:50,"708 Walnut St, San Francisco, CA 94016" +282213,27in FHD Monitor,1,149.99,11/19/19 11:58,"996 Pine St, Atlanta, GA 30301" +282214,27in FHD Monitor,1,149.99,11/20/19 14:35,"799 Hill St, Los Angeles, CA 90001" +282215,iPhone,1,700,11/08/19 13:04,"935 Willow St, Boston, MA 02215" +282216,Wired Headphones,1,11.99,11/03/19 12:21,"527 Sunset St, Boston, MA 02215" +282217,iPhone,1,700,11/11/19 09:08,"69 6th St, Los Angeles, CA 90001" +282218,Bose SoundSport Headphones,1,99.99,11/21/19 13:16,"408 Madison St, Dallas, TX 75001" +282219,AA Batteries (4-pack),1,3.84,11/03/19 11:35,"352 Washington St, San Francisco, CA 94016" +282220,27in FHD Monitor,1,149.99,11/18/19 10:18,"993 4th St, New York City, NY 10001" +282221,AAA Batteries (4-pack),2,2.99,11/10/19 16:41,"156 9th St, Atlanta, GA 30301" +282222,34in Ultrawide Monitor,1,379.99,11/03/19 08:30,"737 Lincoln St, San Francisco, CA 94016" +282223,AAA Batteries (4-pack),1,2.99,11/25/19 23:16,"207 8th St, Portland, OR 97035" +282224,AAA Batteries (4-pack),1,2.99,11/02/19 12:14,"380 Hill St, San Francisco, CA 94016" +282225,AAA Batteries (4-pack),2,2.99,11/03/19 15:18,"85 Main St, New York City, NY 10001" +282226,Bose SoundSport Headphones,1,99.99,11/11/19 17:46,"608 12th St, Los Angeles, CA 90001" +282227,Lightning Charging Cable,1,14.95,11/21/19 20:56,"986 Elm St, Los Angeles, CA 90001" +282228,USB-C Charging Cable,1,11.95,11/28/19 11:55,"58 7th St, Los Angeles, CA 90001" +282229,Apple Airpods Headphones,1,150,11/19/19 07:32,"849 Lakeview St, Dallas, TX 75001" +282230,iPhone,1,700,11/15/19 15:21,"175 10th St, New York City, NY 10001" +282230,Lightning Charging Cable,1,14.95,11/15/19 15:21,"175 10th St, New York City, NY 10001" +282231,Apple Airpods Headphones,1,150,11/25/19 23:12,"669 Dogwood St, San Francisco, CA 94016" +282232,ThinkPad Laptop,1,999.99,11/08/19 21:52,"323 Hill St, New York City, NY 10001" +282233,Wired Headphones,1,11.99,11/09/19 12:15,"886 Meadow St, Atlanta, GA 30301" +282234,Lightning Charging Cable,1,14.95,11/02/19 10:56,"15 Lake St, Los Angeles, CA 90001" +282235,AA Batteries (4-pack),2,3.84,11/28/19 12:13,"925 Cedar St, San Francisco, CA 94016" +282236,Lightning Charging Cable,1,14.95,11/14/19 14:31,"532 1st St, Los Angeles, CA 90001" +282237,27in FHD Monitor,1,149.99,11/23/19 05:08,"698 Cherry St, San Francisco, CA 94016" +282238,Bose SoundSport Headphones,1,99.99,11/24/19 13:57,"988 Jackson St, San Francisco, CA 94016" +282239,USB-C Charging Cable,1,11.95,11/08/19 01:26,"859 14th St, San Francisco, CA 94016" +282240,Wired Headphones,1,11.99,11/22/19 10:13,"789 1st St, Seattle, WA 98101" +282240,Lightning Charging Cable,1,14.95,11/22/19 10:13,"789 1st St, Seattle, WA 98101" +282241,Lightning Charging Cable,1,14.95,11/28/19 21:34,"155 2nd St, Seattle, WA 98101" +282242,iPhone,1,700,11/21/19 14:31,"263 10th St, New York City, NY 10001" +282243,AAA Batteries (4-pack),6,2.99,11/24/19 18:35,"102 Lake St, New York City, NY 10001" +282244,Lightning Charging Cable,1,14.95,11/03/19 23:28,"222 Elm St, Boston, MA 02215" +282245,AA Batteries (4-pack),1,3.84,11/12/19 09:35,"316 7th St, New York City, NY 10001" +282246,AA Batteries (4-pack),1,3.84,11/18/19 12:08,"792 7th St, Portland, OR 97035" +282247,Macbook Pro Laptop,1,1700,11/12/19 09:52,"240 Willow St, New York City, NY 10001" +282248,27in FHD Monitor,1,149.99,11/13/19 15:42,"799 6th St, Portland, OR 97035" +282249,34in Ultrawide Monitor,1,379.99,11/17/19 21:31,"145 Washington St, San Francisco, CA 94016" +282250,AAA Batteries (4-pack),1,2.99,11/16/19 08:14,"465 11th St, Portland, OR 97035" +282251,AAA Batteries (4-pack),3,2.99,11/19/19 21:21,"130 Washington St, New York City, NY 10001" +282252,27in FHD Monitor,1,149.99,11/05/19 23:07,"464 Hill St, Boston, MA 02215" +282253,27in FHD Monitor,1,149.99,11/12/19 19:03,"983 Adams St, New York City, NY 10001" +282254,AAA Batteries (4-pack),1,2.99,11/11/19 04:33,"37 Pine St, Los Angeles, CA 90001" +282254,Bose SoundSport Headphones,1,99.99,11/11/19 04:33,"37 Pine St, Los Angeles, CA 90001" +282255,Google Phone,1,600,11/16/19 20:12,"319 Elm St, San Francisco, CA 94016" +282256,AAA Batteries (4-pack),1,2.99,11/26/19 20:02,"476 Pine St, Los Angeles, CA 90001" +282257,Apple Airpods Headphones,1,150,11/21/19 21:55,"95 Highland St, San Francisco, CA 94016" +282258,Wired Headphones,1,11.99,11/17/19 19:07,"526 5th St, Seattle, WA 98101" +282259,34in Ultrawide Monitor,1,379.99,11/21/19 23:38,"942 14th St, Austin, TX 73301" +282259,ThinkPad Laptop,1,999.99,11/21/19 23:38,"942 14th St, Austin, TX 73301" +282260,34in Ultrawide Monitor,1,379.99,11/17/19 21:05,"651 River St, Seattle, WA 98101" +282261,USB-C Charging Cable,1,11.95,11/14/19 12:22,"221 Meadow St, Portland, ME 04101" +282262,Wired Headphones,1,11.99,11/24/19 14:34,"635 Ridge St, Los Angeles, CA 90001" +282263,Lightning Charging Cable,1,14.95,11/11/19 21:22,"203 Wilson St, New York City, NY 10001" +282264,Lightning Charging Cable,1,14.95,11/03/19 18:27,"661 4th St, Los Angeles, CA 90001" +282265,Lightning Charging Cable,1,14.95,11/20/19 09:59,"402 Church St, Atlanta, GA 30301" +282266,Apple Airpods Headphones,1,150,11/30/19 00:26,"827 1st St, Los Angeles, CA 90001" +282267,34in Ultrawide Monitor,1,379.99,11/16/19 08:36,"933 Ridge St, San Francisco, CA 94016" +282268,Lightning Charging Cable,1,14.95,11/14/19 06:49,"636 6th St, Seattle, WA 98101" +282269,Lightning Charging Cable,1,14.95,11/05/19 01:35,"778 Jefferson St, San Francisco, CA 94016" +282270,Macbook Pro Laptop,1,1700,11/04/19 20:49,"502 Wilson St, San Francisco, CA 94016" +282271,Wired Headphones,1,11.99,11/18/19 01:05,"823 Jackson St, Los Angeles, CA 90001" +282272,AAA Batteries (4-pack),1,2.99,11/22/19 13:40,"903 Chestnut St, New York City, NY 10001" +282273,Apple Airpods Headphones,1,150,11/11/19 17:06,"842 Forest St, San Francisco, CA 94016" +282274,AA Batteries (4-pack),1,3.84,11/29/19 16:22,"949 2nd St, San Francisco, CA 94016" +282275,27in 4K Gaming Monitor,1,389.99,11/19/19 09:05,"418 West St, Austin, TX 73301" +282276,AAA Batteries (4-pack),3,2.99,11/24/19 11:03,"434 8th St, Austin, TX 73301" +282277,USB-C Charging Cable,1,11.95,11/01/19 09:43,"813 Hickory St, New York City, NY 10001" +,,,,, +282278,Lightning Charging Cable,1,14.95,11/27/19 10:14,"562 5th St, New York City, NY 10001" +282279,Macbook Pro Laptop,1,1700,11/20/19 19:11,"133 River St, Dallas, TX 75001" +282280,Macbook Pro Laptop,1,1700,11/01/19 21:35,"933 Church St, Los Angeles, CA 90001" +282281,Apple Airpods Headphones,1,150,11/10/19 18:57,"451 Chestnut St, Seattle, WA 98101" +282282,Apple Airpods Headphones,1,150,11/08/19 17:24,"881 7th St, Los Angeles, CA 90001" +282283,Bose SoundSport Headphones,1,99.99,11/03/19 19:04,"831 Highland St, New York City, NY 10001" +282284,AAA Batteries (4-pack),1,2.99,11/05/19 21:46,"305 8th St, San Francisco, CA 94016" +282285,iPhone,1,700,11/22/19 23:01,"774 Cedar St, Los Angeles, CA 90001" +282285,Lightning Charging Cable,1,14.95,11/22/19 23:01,"774 Cedar St, Los Angeles, CA 90001" +282286,Lightning Charging Cable,1,14.95,11/13/19 19:34,"951 1st St, New York City, NY 10001" +282287,Lightning Charging Cable,1,14.95,11/23/19 19:29,"771 6th St, San Francisco, CA 94016" +282288,iPhone,1,700,11/09/19 09:58,"567 Sunset St, Los Angeles, CA 90001" +282289,USB-C Charging Cable,1,11.95,11/26/19 13:59,"910 Elm St, Atlanta, GA 30301" +282290,27in FHD Monitor,1,149.99,11/25/19 10:21,"134 Adams St, New York City, NY 10001" +282291,USB-C Charging Cable,1,11.95,11/05/19 15:30,"771 1st St, Los Angeles, CA 90001" +282292,Wired Headphones,1,11.99,11/05/19 14:31,"101 4th St, New York City, NY 10001" +282293,Wired Headphones,1,11.99,11/12/19 18:58,"886 9th St, New York City, NY 10001" +282294,Bose SoundSport Headphones,1,99.99,11/26/19 10:15,"237 Lake St, Seattle, WA 98101" +282295,Lightning Charging Cable,1,14.95,11/25/19 11:39,"395 Lincoln St, New York City, NY 10001" +282296,Google Phone,1,600,11/08/19 21:20,"373 Ridge St, Austin, TX 73301" +282296,USB-C Charging Cable,1,11.95,11/08/19 21:20,"373 Ridge St, Austin, TX 73301" +282297,AAA Batteries (4-pack),4,2.99,11/27/19 09:51,"847 11th St, New York City, NY 10001" +282298,Google Phone,1,600,11/15/19 18:07,"994 Chestnut St, San Francisco, CA 94016" +282299,LG Dryer,1,600.0,11/16/19 09:48,"600 Sunset St, Boston, MA 02215" +282300,iPhone,1,700,11/11/19 11:23,"713 9th St, San Francisco, CA 94016" +282301,27in FHD Monitor,1,149.99,11/01/19 12:26,"695 Walnut St, Austin, TX 73301" +282302,Apple Airpods Headphones,1,150,11/18/19 06:55,"145 Spruce St, Dallas, TX 75001" +282303,Google Phone,1,600,11/26/19 14:27,"931 Washington St, New York City, NY 10001" +282303,USB-C Charging Cable,1,11.95,11/26/19 14:27,"931 Washington St, New York City, NY 10001" +282304,Lightning Charging Cable,1,14.95,11/23/19 15:42,"33 Adams St, Boston, MA 02215" +282305,USB-C Charging Cable,1,11.95,11/14/19 22:04,"344 Church St, New York City, NY 10001" +282306,AAA Batteries (4-pack),1,2.99,11/21/19 18:36,"617 Washington St, Dallas, TX 75001" +282307,LG Washing Machine,1,600.0,11/19/19 23:15,"528 West St, Los Angeles, CA 90001" +282308,Apple Airpods Headphones,1,150,11/07/19 09:22,"349 Chestnut St, San Francisco, CA 94016" +282309,Macbook Pro Laptop,1,1700,11/20/19 16:52,"845 10th St, San Francisco, CA 94016" +282310,AAA Batteries (4-pack),4,2.99,11/28/19 16:04,"22 Dogwood St, San Francisco, CA 94016" +282311,ThinkPad Laptop,1,999.99,11/04/19 12:12,"118 13th St, San Francisco, CA 94016" +282312,USB-C Charging Cable,1,11.95,11/25/19 14:39,"68 River St, San Francisco, CA 94016" +282313,20in Monitor,1,109.99,11/05/19 16:18,"343 Chestnut St, San Francisco, CA 94016" +282314,Wired Headphones,1,11.99,11/27/19 18:08,"903 Walnut St, New York City, NY 10001" +282315,Macbook Pro Laptop,1,1700,11/28/19 01:45,"352 5th St, Austin, TX 73301" +282316,Vareebadd Phone,1,400,11/24/19 22:02,"968 Hill St, Portland, OR 97035" +282317,Google Phone,1,600,11/04/19 12:35,"69 14th St, San Francisco, CA 94016" +282318,27in 4K Gaming Monitor,1,389.99,11/29/19 22:26,"775 Hickory St, San Francisco, CA 94016" +282319,AAA Batteries (4-pack),2,2.99,11/24/19 21:36,"203 Sunset St, Boston, MA 02215" +282320,Lightning Charging Cable,1,14.95,11/02/19 19:06,"12 Walnut St, San Francisco, CA 94016" +282321,USB-C Charging Cable,1,11.95,11/28/19 19:24,"234 Maple St, Los Angeles, CA 90001" +282322,Google Phone,1,600,11/20/19 01:13,"934 Spruce St, Boston, MA 02215" +282323,Bose SoundSport Headphones,1,99.99,11/05/19 13:53,"437 Sunset St, San Francisco, CA 94016" +282324,Apple Airpods Headphones,1,150,11/11/19 00:17,"180 Hickory St, Los Angeles, CA 90001" +282325,34in Ultrawide Monitor,1,379.99,11/06/19 12:17,"114 River St, Los Angeles, CA 90001" +282326,USB-C Charging Cable,1,11.95,11/26/19 20:00,"771 Chestnut St, Seattle, WA 98101" +282327,Macbook Pro Laptop,1,1700,11/08/19 15:17,"352 Lake St, Los Angeles, CA 90001" +282328,AA Batteries (4-pack),2,3.84,11/18/19 16:28,"290 Sunset St, New York City, NY 10001" +282329,Wired Headphones,1,11.99,11/17/19 18:50,"712 Cherry St, Los Angeles, CA 90001" +282330,34in Ultrawide Monitor,1,379.99,11/01/19 17:32,"360 Willow St, Seattle, WA 98101" +282331,Flatscreen TV,1,300,11/21/19 13:24,"83 Walnut St, Portland, OR 97035" +282332,Wired Headphones,1,11.99,11/24/19 14:45,"381 Lakeview St, San Francisco, CA 94016" +282333,20in Monitor,1,109.99,11/10/19 20:33,"280 Main St, San Francisco, CA 94016" +282334,AAA Batteries (4-pack),2,2.99,11/16/19 12:32,"617 Highland St, Dallas, TX 75001" +282335,Google Phone,1,600,11/15/19 11:38,"703 Willow St, Dallas, TX 75001" +282336,Flatscreen TV,1,300,11/12/19 16:26,"372 4th St, Dallas, TX 75001" +282337,AAA Batteries (4-pack),1,2.99,11/01/19 15:46,"275 Cedar St, Boston, MA 02215" +282338,AA Batteries (4-pack),1,3.84,11/28/19 18:31,"369 7th St, Portland, ME 04101" +282339,Flatscreen TV,1,300,11/01/19 14:55,"220 2nd St, Boston, MA 02215" +282340,AAA Batteries (4-pack),1,2.99,11/08/19 19:33,"970 8th St, Portland, OR 97035" +282341,27in 4K Gaming Monitor,1,389.99,11/24/19 22:10,"444 Elm St, Boston, MA 02215" +282342,LG Washing Machine,1,600.0,11/04/19 17:57,"992 Spruce St, Austin, TX 73301" +282343,AAA Batteries (4-pack),1,2.99,11/01/19 15:28,"554 11th St, Boston, MA 02215" +282344,Apple Airpods Headphones,1,150,11/23/19 23:27,"931 Adams St, New York City, NY 10001" +282345,Wired Headphones,1,11.99,11/02/19 22:13,"2 1st St, New York City, NY 10001" +282346,27in 4K Gaming Monitor,1,389.99,11/06/19 07:37,"23 Pine St, Seattle, WA 98101" +282347,USB-C Charging Cable,1,11.95,11/17/19 08:21,"461 1st St, Boston, MA 02215" +282348,Lightning Charging Cable,1,14.95,11/05/19 15:18,"184 Lake St, Seattle, WA 98101" +282349,Google Phone,1,600,11/24/19 21:11,"316 Highland St, Boston, MA 02215" +282350,34in Ultrawide Monitor,1,379.99,11/15/19 22:33,"382 Cedar St, New York City, NY 10001" +282351,USB-C Charging Cable,1,11.95,11/08/19 07:37,"346 13th St, San Francisco, CA 94016" +282352,27in 4K Gaming Monitor,1,389.99,11/13/19 08:04,"523 Cedar St, Atlanta, GA 30301" +282353,Apple Airpods Headphones,1,150,11/17/19 20:52,"861 1st St, San Francisco, CA 94016" +282354,Lightning Charging Cable,1,14.95,11/26/19 12:04,"259 River St, San Francisco, CA 94016" +282355,USB-C Charging Cable,1,11.95,11/02/19 21:45,"961 14th St, New York City, NY 10001" +282356,Google Phone,1,600,11/30/19 21:35,"985 Walnut St, Boston, MA 02215" +282356,Wired Headphones,1,11.99,11/30/19 21:35,"985 Walnut St, Boston, MA 02215" +282357,Apple Airpods Headphones,1,150,11/23/19 20:42,"623 Willow St, Los Angeles, CA 90001" +282357,Google Phone,1,600,11/23/19 20:42,"623 Willow St, Los Angeles, CA 90001" +282358,AAA Batteries (4-pack),1,2.99,11/11/19 13:30,"880 10th St, New York City, NY 10001" +282359,AAA Batteries (4-pack),1,2.99,11/12/19 21:49,"853 Hill St, Austin, TX 73301" +282360,Wired Headphones,1,11.99,11/08/19 23:08,"261 Jefferson St, San Francisco, CA 94016" +282361,20in Monitor,1,109.99,11/03/19 10:20,"657 River St, Los Angeles, CA 90001" +282362,20in Monitor,1,109.99,11/09/19 10:02,"734 Meadow St, San Francisco, CA 94016" +282363,Apple Airpods Headphones,1,150,11/15/19 11:39,"716 Pine St, Los Angeles, CA 90001" +282364,Apple Airpods Headphones,1,150,11/03/19 14:42,"690 Sunset St, Seattle, WA 98101" +282365,AAA Batteries (4-pack),1,2.99,11/06/19 17:00,"330 North St, San Francisco, CA 94016" +282366,AA Batteries (4-pack),1,3.84,11/24/19 13:37,"454 2nd St, Dallas, TX 75001" +282366,Bose SoundSport Headphones,1,99.99,11/24/19 13:37,"454 2nd St, Dallas, TX 75001" +282367,20in Monitor,1,109.99,11/27/19 12:06,"753 North St, Boston, MA 02215" +282368,AAA Batteries (4-pack),2,2.99,11/01/19 11:26,"193 Center St, Austin, TX 73301" +282369,Wired Headphones,1,11.99,11/30/19 11:04,"112 7th St, Los Angeles, CA 90001" +282370,27in FHD Monitor,1,149.99,11/17/19 09:51,"666 Church St, Boston, MA 02215" +282371,AA Batteries (4-pack),4,3.84,11/09/19 17:20,"431 Willow St, Boston, MA 02215" +282372,27in FHD Monitor,1,149.99,11/29/19 15:00,"813 Maple St, Dallas, TX 75001" +282373,AA Batteries (4-pack),1,3.84,11/06/19 22:31,"263 11th St, New York City, NY 10001" +282374,Lightning Charging Cable,1,14.95,11/21/19 08:06,"685 Spruce St, Dallas, TX 75001" +282375,USB-C Charging Cable,2,11.95,11/07/19 22:37,"466 7th St, Los Angeles, CA 90001" +282376,Apple Airpods Headphones,1,150,11/09/19 23:27,"446 Park St, Boston, MA 02215" +282377,AA Batteries (4-pack),2,3.84,11/03/19 01:43,"868 Pine St, Los Angeles, CA 90001" +282378,AA Batteries (4-pack),1,3.84,11/25/19 06:11,"999 Sunset St, Austin, TX 73301" +282379,27in FHD Monitor,1,149.99,11/19/19 23:38,"802 Walnut St, Portland, OR 97035" +282380,AAA Batteries (4-pack),1,2.99,11/09/19 20:24,"119 4th St, Atlanta, GA 30301" +282381,ThinkPad Laptop,1,999.99,11/05/19 08:21,"938 Hill St, Atlanta, GA 30301" +282382,Bose SoundSport Headphones,1,99.99,11/21/19 16:15,"24 7th St, San Francisco, CA 94016" +282383,20in Monitor,1,109.99,11/08/19 17:00,"392 South St, New York City, NY 10001" +282384,20in Monitor,1,109.99,11/14/19 10:31,"553 Highland St, New York City, NY 10001" +282385,USB-C Charging Cable,2,11.95,11/16/19 18:22,"714 Spruce St, San Francisco, CA 94016" +282386,Apple Airpods Headphones,1,150,11/14/19 13:02,"972 13th St, Los Angeles, CA 90001" +282387,iPhone,1,700,11/17/19 12:13,"910 Jackson St, Atlanta, GA 30301" +282387,Wired Headphones,1,11.99,11/17/19 12:13,"910 Jackson St, Atlanta, GA 30301" +282388,34in Ultrawide Monitor,1,379.99,11/25/19 14:02,"110 Lake St, San Francisco, CA 94016" +282389,Bose SoundSport Headphones,1,99.99,11/07/19 20:41,"828 11th St, Portland, OR 97035" +282390,Wired Headphones,1,11.99,11/28/19 08:54,"507 12th St, New York City, NY 10001" +282391,AAA Batteries (4-pack),1,2.99,11/06/19 00:09,"403 8th St, Portland, OR 97035" +282392,34in Ultrawide Monitor,1,379.99,11/20/19 21:52,"405 14th St, Seattle, WA 98101" +282393,27in 4K Gaming Monitor,1,389.99,11/06/19 08:14,"298 9th St, San Francisco, CA 94016" +282394,Apple Airpods Headphones,1,150,11/28/19 16:23,"748 1st St, San Francisco, CA 94016" +282395,20in Monitor,1,109.99,11/30/19 20:57,"375 Lincoln St, Austin, TX 73301" +282396,Bose SoundSport Headphones,1,99.99,11/18/19 13:03,"140 Lake St, Dallas, TX 75001" +282397,USB-C Charging Cable,1,11.95,11/04/19 10:48,"997 Jackson St, Dallas, TX 75001" +282398,AAA Batteries (4-pack),1,2.99,11/22/19 09:48,"242 Church St, San Francisco, CA 94016" +282399,ThinkPad Laptop,1,999.99,11/11/19 16:22,"888 Cherry St, New York City, NY 10001" +282400,Bose SoundSport Headphones,1,99.99,11/22/19 20:05,"894 North St, San Francisco, CA 94016" +282401,ThinkPad Laptop,1,999.99,11/09/19 23:31,"569 1st St, Dallas, TX 75001" +282402,34in Ultrawide Monitor,1,379.99,11/25/19 11:33,"752 Dogwood St, Portland, OR 97035" +282403,Bose SoundSport Headphones,1,99.99,11/18/19 22:37,"979 8th St, Boston, MA 02215" +282404,AAA Batteries (4-pack),3,2.99,11/13/19 18:02,"254 Adams St, New York City, NY 10001" +282405,Wired Headphones,1,11.99,11/04/19 20:55,"548 West St, Dallas, TX 75001" +282406,AAA Batteries (4-pack),1,2.99,11/06/19 19:05,"44 Spruce St, San Francisco, CA 94016" +282407,AA Batteries (4-pack),1,3.84,11/01/19 19:34,"868 8th St, Portland, OR 97035" +282408,Lightning Charging Cable,1,14.95,11/09/19 22:41,"366 2nd St, San Francisco, CA 94016" +282409,Apple Airpods Headphones,1,150,11/06/19 11:05,"607 Jefferson St, Austin, TX 73301" +282410,20in Monitor,1,109.99,11/26/19 12:43,"310 9th St, Portland, OR 97035" +282411,AAA Batteries (4-pack),1,2.99,11/20/19 21:56,"229 7th St, Seattle, WA 98101" +282412,USB-C Charging Cable,1,11.95,11/06/19 10:26,"47 West St, New York City, NY 10001" +282413,Wired Headphones,1,11.99,11/21/19 22:28,"500 Lake St, San Francisco, CA 94016" +282414,USB-C Charging Cable,1,11.95,11/08/19 20:47,"3 5th St, New York City, NY 10001" +282415,Wired Headphones,1,11.99,11/02/19 14:01,"843 12th St, Atlanta, GA 30301" +282415,20in Monitor,1,109.99,11/02/19 14:01,"843 12th St, Atlanta, GA 30301" +282416,Apple Airpods Headphones,1,150,11/11/19 06:37,"77 13th St, New York City, NY 10001" +282417,Wired Headphones,1,11.99,11/09/19 12:17,"423 Pine St, San Francisco, CA 94016" +282417,Flatscreen TV,1,300,11/09/19 12:17,"423 Pine St, San Francisco, CA 94016" +282418,Lightning Charging Cable,1,14.95,11/23/19 16:08,"390 Washington St, Los Angeles, CA 90001" +282419,AAA Batteries (4-pack),1,2.99,11/19/19 16:13,"586 Spruce St, Atlanta, GA 30301" +282420,AAA Batteries (4-pack),1,2.99,11/09/19 00:20,"810 10th St, Portland, OR 97035" +282421,AAA Batteries (4-pack),1,2.99,11/13/19 19:56,"328 Spruce St, New York City, NY 10001" +282421,USB-C Charging Cable,1,11.95,11/13/19 19:56,"328 Spruce St, New York City, NY 10001" +282422,iPhone,1,700,11/20/19 16:37,"166 Cedar St, Boston, MA 02215" +282422,Apple Airpods Headphones,1,150,11/20/19 16:37,"166 Cedar St, Boston, MA 02215" +282423,AAA Batteries (4-pack),2,2.99,11/30/19 07:52,"1 Dogwood St, Portland, OR 97035" +282424,Google Phone,1,600,11/05/19 21:54,"585 5th St, San Francisco, CA 94016" +282424,Wired Headphones,2,11.99,11/05/19 21:54,"585 5th St, San Francisco, CA 94016" +282425,USB-C Charging Cable,1,11.95,11/29/19 13:47,"798 Adams St, Atlanta, GA 30301" +282426,Macbook Pro Laptop,1,1700,11/23/19 17:42,"251 Sunset St, New York City, NY 10001" +282427,USB-C Charging Cable,1,11.95,11/23/19 14:03,"633 6th St, Los Angeles, CA 90001" +282428,Bose SoundSport Headphones,1,99.99,11/06/19 10:22,"574 Elm St, Portland, OR 97035" +282429,27in 4K Gaming Monitor,1,389.99,11/29/19 11:13,"26 13th St, Austin, TX 73301" +282430,Macbook Pro Laptop,1,1700,11/24/19 08:41,"496 Johnson St, Atlanta, GA 30301" +282431,Google Phone,1,600,11/05/19 13:34,"428 13th St, San Francisco, CA 94016" +282432,Google Phone,1,600,11/20/19 21:24,"761 Maple St, Los Angeles, CA 90001" +282433,27in 4K Gaming Monitor,1,389.99,11/11/19 21:12,"196 Jefferson St, San Francisco, CA 94016" +282434,iPhone,1,700,11/30/19 13:02,"75 Church St, Portland, OR 97035" +282435,AAA Batteries (4-pack),1,2.99,11/07/19 20:09,"440 12th St, Boston, MA 02215" +282436,27in 4K Gaming Monitor,1,389.99,11/25/19 13:26,"877 13th St, San Francisco, CA 94016" +282437,ThinkPad Laptop,1,999.99,11/04/19 12:58,"729 Lake St, Los Angeles, CA 90001" +282438,USB-C Charging Cable,1,11.95,11/29/19 11:24,"858 Jackson St, San Francisco, CA 94016" +282439,Bose SoundSport Headphones,1,99.99,11/25/19 19:18,"795 Ridge St, San Francisco, CA 94016" +282440,USB-C Charging Cable,1,11.95,11/30/19 10:24,"468 Jackson St, Boston, MA 02215" +282441,Macbook Pro Laptop,1,1700,11/20/19 16:52,"627 8th St, Seattle, WA 98101" +282442,Bose SoundSport Headphones,1,99.99,11/24/19 17:09,"478 Johnson St, Austin, TX 73301" +282443,Bose SoundSport Headphones,1,99.99,11/15/19 17:41,"953 Cedar St, Dallas, TX 75001" +282444,AA Batteries (4-pack),1,3.84,11/14/19 10:55,"522 Dogwood St, New York City, NY 10001" +282445,AA Batteries (4-pack),1,3.84,11/02/19 20:30,"962 Meadow St, San Francisco, CA 94016" +282446,AAA Batteries (4-pack),1,2.99,11/18/19 10:51,"580 10th St, Atlanta, GA 30301" +282447,Lightning Charging Cable,1,14.95,11/25/19 17:33,"859 Elm St, New York City, NY 10001" +282448,ThinkPad Laptop,1,999.99,11/21/19 18:40,"937 Forest St, San Francisco, CA 94016" +282449,Lightning Charging Cable,1,14.95,11/14/19 15:00,"748 Cedar St, Seattle, WA 98101" +282450,Wired Headphones,1,11.99,11/09/19 21:35,"351 Lakeview St, Los Angeles, CA 90001" +282451,Lightning Charging Cable,1,14.95,11/29/19 05:21,"347 10th St, San Francisco, CA 94016" +282452,Flatscreen TV,1,300,11/19/19 14:03,"983 Ridge St, Atlanta, GA 30301" +282453,Wired Headphones,2,11.99,11/29/19 18:32,"768 Madison St, Portland, OR 97035" +282454,Google Phone,1,600,11/07/19 16:58,"769 North St, Dallas, TX 75001" +282455,AA Batteries (4-pack),1,3.84,11/30/19 20:56,"488 Chestnut St, Portland, ME 04101" +282456,27in FHD Monitor,1,149.99,11/27/19 22:31,"863 Lake St, San Francisco, CA 94016" +282457,AA Batteries (4-pack),2,3.84,11/23/19 12:56,"693 North St, Boston, MA 02215" +282458,Wired Headphones,1,11.99,11/04/19 14:30,"483 Walnut St, San Francisco, CA 94016" +282459,AA Batteries (4-pack),1,3.84,11/07/19 22:06,"609 Highland St, Dallas, TX 75001" +282460,iPhone,1,700,11/04/19 13:45,"662 Johnson St, San Francisco, CA 94016" +282461,20in Monitor,1,109.99,11/26/19 13:12,"60 North St, Los Angeles, CA 90001" +282462,Lightning Charging Cable,1,14.95,11/21/19 20:33,"976 Park St, Portland, OR 97035" +282463,27in 4K Gaming Monitor,1,389.99,11/09/19 01:43,"893 13th St, San Francisco, CA 94016" +282464,Lightning Charging Cable,1,14.95,11/14/19 19:59,"473 North St, Boston, MA 02215" +282465,Lightning Charging Cable,1,14.95,11/08/19 16:14,"980 Adams St, San Francisco, CA 94016" +282466,AA Batteries (4-pack),2,3.84,11/27/19 22:30,"248 Adams St, Los Angeles, CA 90001" +282467,Google Phone,1,600,11/27/19 10:03,"918 Johnson St, New York City, NY 10001" +282468,Apple Airpods Headphones,1,150,11/15/19 19:56,"250 6th St, Seattle, WA 98101" +282469,AA Batteries (4-pack),1,3.84,11/15/19 09:43,"581 Park St, San Francisco, CA 94016" +282470,Wired Headphones,1,11.99,11/24/19 07:06,"148 13th St, Boston, MA 02215" +282471,Vareebadd Phone,1,400,11/24/19 08:28,"682 River St, Austin, TX 73301" +282472,34in Ultrawide Monitor,1,379.99,11/24/19 17:58,"473 Hill St, Portland, OR 97035" +282473,Flatscreen TV,1,300,11/27/19 14:09,"238 South St, Atlanta, GA 30301" +282474,27in FHD Monitor,1,149.99,11/05/19 22:51,"364 Dogwood St, Austin, TX 73301" +282475,AA Batteries (4-pack),1,3.84,11/17/19 09:03,"113 Cherry St, Los Angeles, CA 90001" +282476,Lightning Charging Cable,1,14.95,11/15/19 13:40,"367 Jackson St, Dallas, TX 75001" +282477,AA Batteries (4-pack),3,3.84,11/10/19 14:45,"400 Sunset St, Seattle, WA 98101" +282478,Google Phone,1,600,11/19/19 09:53,"462 8th St, New York City, NY 10001" +282479,AAA Batteries (4-pack),2,2.99,11/01/19 16:40,"810 Lincoln St, Los Angeles, CA 90001" +282480,AAA Batteries (4-pack),1,2.99,11/23/19 11:44,"905 2nd St, San Francisco, CA 94016" +282481,Bose SoundSport Headphones,1,99.99,11/10/19 21:35,"404 South St, San Francisco, CA 94016" +282482,AA Batteries (4-pack),1,3.84,11/23/19 23:07,"895 12th St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +282483,ThinkPad Laptop,1,999.99,11/18/19 19:01,"561 Pine St, San Francisco, CA 94016" +282484,Apple Airpods Headphones,1,150,11/09/19 19:17,"785 Lake St, Dallas, TX 75001" +282485,USB-C Charging Cable,2,11.95,11/01/19 15:31,"322 Sunset St, Seattle, WA 98101" +282486,USB-C Charging Cable,1,11.95,11/03/19 08:03,"612 Church St, New York City, NY 10001" +282487,Flatscreen TV,1,300,11/02/19 16:06,"720 13th St, San Francisco, CA 94016" +282488,Macbook Pro Laptop,1,1700,11/18/19 09:33,"625 11th St, Los Angeles, CA 90001" +282489,AAA Batteries (4-pack),2,2.99,11/18/19 18:05,"779 Walnut St, Los Angeles, CA 90001" +282490,iPhone,1,700,11/16/19 21:51,"850 Cherry St, Atlanta, GA 30301" +282490,Wired Headphones,1,11.99,11/16/19 21:51,"850 Cherry St, Atlanta, GA 30301" +282491,AA Batteries (4-pack),3,3.84,11/06/19 20:47,"595 Lincoln St, San Francisco, CA 94016" +282492,Apple Airpods Headphones,1,150,11/20/19 10:40,"773 13th St, San Francisco, CA 94016" +282493,AA Batteries (4-pack),1,3.84,11/16/19 22:44,"926 Hill St, San Francisco, CA 94016" +282494,USB-C Charging Cable,1,11.95,11/23/19 10:13,"599 5th St, Atlanta, GA 30301" +282495,Bose SoundSport Headphones,1,99.99,11/25/19 17:13,"653 2nd St, San Francisco, CA 94016" +282496,USB-C Charging Cable,1,11.95,11/27/19 18:13,"751 Lake St, San Francisco, CA 94016" +282497,AA Batteries (4-pack),2,3.84,11/11/19 18:58,"139 Washington St, Los Angeles, CA 90001" +282498,AA Batteries (4-pack),1,3.84,11/07/19 22:26,"610 1st St, San Francisco, CA 94016" +282499,Wired Headphones,1,11.99,11/07/19 16:39,"473 14th St, San Francisco, CA 94016" +282500,Wired Headphones,1,11.99,11/04/19 15:24,"337 North St, San Francisco, CA 94016" +282501,Flatscreen TV,1,300,11/07/19 19:55,"684 6th St, San Francisco, CA 94016" +282502,iPhone,1,700,11/25/19 22:05,"773 Jefferson St, Seattle, WA 98101" +282503,Apple Airpods Headphones,1,150,11/20/19 05:27,"603 Cedar St, San Francisco, CA 94016" +282504,AA Batteries (4-pack),4,3.84,11/25/19 10:25,"726 4th St, Portland, ME 04101" +282505,34in Ultrawide Monitor,1,379.99,11/06/19 08:48,"773 North St, San Francisco, CA 94016" +282506,Wired Headphones,1,11.99,11/13/19 22:40,"137 Johnson St, New York City, NY 10001" +282507,Macbook Pro Laptop,1,1700,11/18/19 11:24,"364 Walnut St, Dallas, TX 75001" +282508,Lightning Charging Cable,1,14.95,11/09/19 19:28,"211 2nd St, Portland, OR 97035" +282509,Lightning Charging Cable,1,14.95,11/05/19 19:00,"573 Willow St, Boston, MA 02215" +282510,Wired Headphones,1,11.99,11/22/19 18:50,"483 Elm St, Boston, MA 02215" +282511,Lightning Charging Cable,2,14.95,11/28/19 18:10,"722 Hill St, Los Angeles, CA 90001" +282512,USB-C Charging Cable,1,11.95,11/04/19 07:40,"464 Church St, San Francisco, CA 94016" +282513,iPhone,1,700,11/22/19 22:35,"326 Highland St, Los Angeles, CA 90001" +282514,USB-C Charging Cable,1,11.95,11/04/19 06:33,"48 Cedar St, Dallas, TX 75001" +282515,27in FHD Monitor,1,149.99,11/27/19 15:09,"546 Dogwood St, Boston, MA 02215" +282516,Wired Headphones,1,11.99,11/18/19 20:36,"901 Elm St, New York City, NY 10001" +282517,Wired Headphones,1,11.99,11/07/19 16:40,"223 Spruce St, New York City, NY 10001" +282518,27in FHD Monitor,1,149.99,11/29/19 09:27,"217 Main St, San Francisco, CA 94016" +282519,Macbook Pro Laptop,1,1700,11/05/19 16:55,"475 Center St, New York City, NY 10001" +282520,AAA Batteries (4-pack),1,2.99,11/17/19 20:26,"715 Madison St, New York City, NY 10001" +282521,Bose SoundSport Headphones,1,99.99,11/12/19 23:06,"239 7th St, Atlanta, GA 30301" +282522,iPhone,1,700,11/25/19 03:15,"80 Chestnut St, Dallas, TX 75001" +282523,AAA Batteries (4-pack),1,2.99,11/03/19 21:39,"932 13th St, New York City, NY 10001" +282524,Apple Airpods Headphones,1,150,11/06/19 20:20,"62 Center St, Atlanta, GA 30301" +282525,Lightning Charging Cable,1,14.95,11/09/19 14:33,"420 Dogwood St, San Francisco, CA 94016" +282526,Lightning Charging Cable,1,14.95,11/18/19 15:46,"409 Ridge St, New York City, NY 10001" +282527,iPhone,1,700,11/22/19 21:15,"647 Willow St, Atlanta, GA 30301" +282528,Lightning Charging Cable,1,14.95,11/22/19 22:56,"510 10th St, Seattle, WA 98101" +282529,Wired Headphones,1,11.99,11/09/19 12:37,"513 Washington St, San Francisco, CA 94016" +282530,AAA Batteries (4-pack),1,2.99,11/01/19 18:40,"74 Wilson St, Los Angeles, CA 90001" +282531,Google Phone,1,600,11/02/19 17:44,"215 2nd St, Seattle, WA 98101" +282531,USB-C Charging Cable,1,11.95,11/02/19 17:44,"215 2nd St, Seattle, WA 98101" +282532,iPhone,1,700,11/24/19 09:15,"423 9th St, Los Angeles, CA 90001" +282533,Wired Headphones,1,11.99,11/14/19 19:42,"683 Lakeview St, San Francisco, CA 94016" +282534,USB-C Charging Cable,1,11.95,11/03/19 19:19,"930 12th St, New York City, NY 10001" +282535,AAA Batteries (4-pack),3,2.99,11/03/19 16:35,"779 Hill St, Boston, MA 02215" +282536,USB-C Charging Cable,1,11.95,11/05/19 10:02,"24 Lake St, Seattle, WA 98101" +282537,USB-C Charging Cable,1,11.95,11/20/19 13:21,"465 8th St, Seattle, WA 98101" +282538,Apple Airpods Headphones,1,150,11/05/19 18:30,"545 Lake St, Atlanta, GA 30301" +282539,Lightning Charging Cable,1,14.95,11/22/19 21:47,"281 Elm St, San Francisco, CA 94016" +282540,Lightning Charging Cable,1,14.95,11/15/19 19:47,"766 Dogwood St, Los Angeles, CA 90001" +282541,Google Phone,1,600,11/27/19 23:14,"325 Sunset St, San Francisco, CA 94016" +282542,Lightning Charging Cable,1,14.95,11/22/19 09:17,"279 5th St, Los Angeles, CA 90001" +282543,Macbook Pro Laptop,1,1700,11/17/19 12:19,"147 13th St, New York City, NY 10001" +282544,Lightning Charging Cable,1,14.95,11/17/19 12:14,"212 Jefferson St, Atlanta, GA 30301" +282545,27in 4K Gaming Monitor,1,389.99,11/27/19 11:25,"203 Lake St, Los Angeles, CA 90001" +282546,20in Monitor,1,109.99,11/22/19 12:45,"36 Chestnut St, New York City, NY 10001" +282547,LG Dryer,1,600.0,11/11/19 17:07,"400 West St, Seattle, WA 98101" +282548,Bose SoundSport Headphones,1,99.99,11/08/19 13:16,"102 Chestnut St, San Francisco, CA 94016" +282549,Lightning Charging Cable,1,14.95,11/07/19 11:30,"123 Park St, Boston, MA 02215" +282550,AAA Batteries (4-pack),1,2.99,11/16/19 17:54,"893 Madison St, New York City, NY 10001" +282551,USB-C Charging Cable,1,11.95,11/28/19 14:37,"766 Maple St, Seattle, WA 98101" +282552,AAA Batteries (4-pack),2,2.99,11/07/19 16:39,"511 12th St, San Francisco, CA 94016" +282553,AAA Batteries (4-pack),2,2.99,11/01/19 10:31,"792 4th St, Seattle, WA 98101" +282554,USB-C Charging Cable,1,11.95,11/23/19 12:46,"980 Pine St, Boston, MA 02215" +282555,Flatscreen TV,1,300,11/17/19 21:30,"771 Jefferson St, Atlanta, GA 30301" +282556,AA Batteries (4-pack),1,3.84,11/20/19 15:12,"400 Madison St, San Francisco, CA 94016" +282557,Wired Headphones,1,11.99,11/03/19 15:54,"631 Park St, Boston, MA 02215" +282557,USB-C Charging Cable,1,11.95,11/03/19 15:54,"631 Park St, Boston, MA 02215" +282558,Apple Airpods Headphones,1,150,11/10/19 12:47,"834 Jackson St, New York City, NY 10001" +282559,Wired Headphones,1,11.99,11/21/19 23:24,"623 8th St, Los Angeles, CA 90001" +282560,LG Dryer,1,600.0,11/04/19 20:35,"381 Lake St, Los Angeles, CA 90001" +282561,27in FHD Monitor,1,149.99,11/06/19 17:11,"181 Maple St, Atlanta, GA 30301" +282562,iPhone,1,700,11/24/19 16:12,"943 Adams St, Seattle, WA 98101" +282562,Lightning Charging Cable,1,14.95,11/24/19 16:12,"943 Adams St, Seattle, WA 98101" +282563,AAA Batteries (4-pack),5,2.99,11/17/19 06:24,"614 9th St, Boston, MA 02215" +282564,USB-C Charging Cable,1,11.95,11/19/19 18:41,"172 River St, Los Angeles, CA 90001" +282565,27in FHD Monitor,1,149.99,11/12/19 14:32,"214 4th St, San Francisco, CA 94016" +282566,Bose SoundSport Headphones,1,99.99,11/04/19 17:46,"289 Ridge St, New York City, NY 10001" +282567,Wired Headphones,1,11.99,11/01/19 10:04,"929 Jackson St, San Francisco, CA 94016" +282568,Flatscreen TV,1,300,11/14/19 12:17,"109 Jackson St, Boston, MA 02215" +282569,AAA Batteries (4-pack),1,2.99,11/27/19 19:27,"144 Dogwood St, New York City, NY 10001" +282570,Apple Airpods Headphones,1,150,11/26/19 16:11,"525 Park St, San Francisco, CA 94016" +282571,iPhone,1,700,11/15/19 17:12,"453 Elm St, Boston, MA 02215" +282572,Wired Headphones,1,11.99,11/07/19 16:52,"902 2nd St, Dallas, TX 75001" +282573,AA Batteries (4-pack),1,3.84,11/10/19 15:32,"6 Jackson St, San Francisco, CA 94016" +282574,AAA Batteries (4-pack),1,2.99,11/16/19 16:05,"988 Walnut St, Seattle, WA 98101" +282575,20in Monitor,1,109.99,11/26/19 17:16,"332 9th St, San Francisco, CA 94016" +282576,iPhone,1,700,11/08/19 15:58,"549 Pine St, Dallas, TX 75001" +282577,Bose SoundSport Headphones,1,99.99,11/21/19 19:52,"127 Chestnut St, New York City, NY 10001" +282578,Lightning Charging Cable,2,14.95,11/22/19 01:14,"148 Jackson St, Boston, MA 02215" +282579,AA Batteries (4-pack),1,3.84,11/21/19 07:52,"39 Lincoln St, San Francisco, CA 94016" +282580,Macbook Pro Laptop,1,1700,11/21/19 19:13,"162 Sunset St, New York City, NY 10001" +282581,20in Monitor,1,109.99,11/14/19 21:35,"236 8th St, San Francisco, CA 94016" +282582,Wired Headphones,1,11.99,11/24/19 14:44,"450 Johnson St, San Francisco, CA 94016" +282583,Flatscreen TV,1,300,11/06/19 08:29,"587 Chestnut St, Seattle, WA 98101" +282584,Google Phone,1,600,11/14/19 12:28,"366 Dogwood St, Los Angeles, CA 90001" +282585,AA Batteries (4-pack),1,3.84,11/11/19 16:38,"450 8th St, San Francisco, CA 94016" +282586,Lightning Charging Cable,2,14.95,11/07/19 18:01,"814 Walnut St, Atlanta, GA 30301" +282587,Macbook Pro Laptop,1,1700,11/23/19 23:03,"63 13th St, Atlanta, GA 30301" +282588,AA Batteries (4-pack),1,3.84,11/08/19 11:13,"876 2nd St, Seattle, WA 98101" +282589,AAA Batteries (4-pack),1,2.99,11/03/19 21:40,"246 Meadow St, Seattle, WA 98101" +282590,Lightning Charging Cable,1,14.95,11/29/19 20:36,"591 Hill St, New York City, NY 10001" +282591,AA Batteries (4-pack),1,3.84,11/14/19 00:14,"416 Hill St, San Francisco, CA 94016" +282592,27in FHD Monitor,1,149.99,11/19/19 18:21,"863 Lincoln St, Atlanta, GA 30301" +282593,AAA Batteries (4-pack),2,2.99,11/24/19 23:25,"378 Lincoln St, Portland, OR 97035" +282594,Lightning Charging Cable,1,14.95,11/07/19 23:54,"46 9th St, Atlanta, GA 30301" +282595,27in 4K Gaming Monitor,1,389.99,11/12/19 20:06,"788 West St, San Francisco, CA 94016" +282596,AAA Batteries (4-pack),1,2.99,11/14/19 01:06,"839 Johnson St, New York City, NY 10001" +282597,AA Batteries (4-pack),1,3.84,11/16/19 07:50,"204 Washington St, Austin, TX 73301" +282598,AAA Batteries (4-pack),1,2.99,11/21/19 15:19,"769 14th St, San Francisco, CA 94016" +282599,Lightning Charging Cable,2,14.95,11/09/19 15:42,"882 Center St, Los Angeles, CA 90001" +282600,Bose SoundSport Headphones,1,99.99,11/08/19 22:42,"84 Forest St, Los Angeles, CA 90001" +282601,Macbook Pro Laptop,1,1700,11/15/19 19:51,"711 14th St, New York City, NY 10001" +282602,27in FHD Monitor,1,149.99,11/26/19 09:11,"634 Maple St, Seattle, WA 98101" +282603,Lightning Charging Cable,1,14.95,11/04/19 15:44,"99 Adams St, Boston, MA 02215" +282604,Macbook Pro Laptop,1,1700,11/18/19 17:00,"153 Dogwood St, Dallas, TX 75001" +282605,USB-C Charging Cable,2,11.95,11/14/19 15:15,"957 Lakeview St, San Francisco, CA 94016" +282605,Lightning Charging Cable,1,14.95,11/14/19 15:15,"957 Lakeview St, San Francisco, CA 94016" +282606,Bose SoundSport Headphones,1,99.99,11/03/19 14:12,"453 River St, San Francisco, CA 94016" +282607,Apple Airpods Headphones,1,150,11/24/19 14:18,"282 5th St, San Francisco, CA 94016" +282608,AAA Batteries (4-pack),1,2.99,11/06/19 16:11,"460 Hill St, Los Angeles, CA 90001" +282609,iPhone,1,700,11/21/19 11:00,"385 Center St, San Francisco, CA 94016" +282610,AA Batteries (4-pack),1,3.84,11/20/19 11:15,"992 2nd St, San Francisco, CA 94016" +282611,AA Batteries (4-pack),1,3.84,11/06/19 07:02,"967 Ridge St, Boston, MA 02215" +282612,USB-C Charging Cable,1,11.95,11/18/19 09:35,"61 1st St, San Francisco, CA 94016" +282613,Apple Airpods Headphones,1,150,11/10/19 15:18,"424 Center St, Atlanta, GA 30301" +282614,AA Batteries (4-pack),4,3.84,11/20/19 20:16,"910 Cherry St, Atlanta, GA 30301" +282615,Flatscreen TV,1,300,11/09/19 16:27,"959 Elm St, San Francisco, CA 94016" +282616,Lightning Charging Cable,1,14.95,11/27/19 23:18,"35 Meadow St, Seattle, WA 98101" +282617,Lightning Charging Cable,1,14.95,11/12/19 21:47,"373 Cedar St, San Francisco, CA 94016" +282618,ThinkPad Laptop,1,999.99,11/14/19 19:19,"660 5th St, Los Angeles, CA 90001" +282619,iPhone,1,700,11/10/19 09:35,"208 11th St, Los Angeles, CA 90001" +282620,USB-C Charging Cable,1,11.95,11/12/19 17:02,"156 Center St, New York City, NY 10001" +282621,AAA Batteries (4-pack),1,2.99,11/06/19 11:21,"494 Dogwood St, San Francisco, CA 94016" +282622,Bose SoundSport Headphones,1,99.99,11/24/19 11:49,"927 2nd St, Seattle, WA 98101" +282622,Lightning Charging Cable,1,14.95,11/24/19 11:49,"927 2nd St, Seattle, WA 98101" +282623,Wired Headphones,2,11.99,11/23/19 17:26,"987 Lincoln St, San Francisco, CA 94016" +282624,AA Batteries (4-pack),1,3.84,11/24/19 12:02,"816 Highland St, San Francisco, CA 94016" +282625,USB-C Charging Cable,1,11.95,11/16/19 12:43,"157 Washington St, Portland, OR 97035" +282626,27in 4K Gaming Monitor,1,389.99,11/06/19 13:20,"130 Cedar St, Los Angeles, CA 90001" +282627,Wired Headphones,1,11.99,11/21/19 12:01,"947 Church St, San Francisco, CA 94016" +282628,Lightning Charging Cable,1,14.95,11/16/19 16:54,"204 Spruce St, Dallas, TX 75001" +282629,Bose SoundSport Headphones,1,99.99,11/04/19 15:16,"643 8th St, San Francisco, CA 94016" +282630,Wired Headphones,1,11.99,11/16/19 17:03,"377 14th St, San Francisco, CA 94016" +282631,Lightning Charging Cable,1,14.95,11/25/19 14:08,"499 13th St, San Francisco, CA 94016" +282632,Google Phone,1,600,11/05/19 20:18,"65 Cherry St, San Francisco, CA 94016" +282633,Bose SoundSport Headphones,1,99.99,11/22/19 07:13,"329 Sunset St, New York City, NY 10001" +282634,AA Batteries (4-pack),1,3.84,11/21/19 19:27,"408 Walnut St, New York City, NY 10001" +282635,Lightning Charging Cable,1,14.95,11/10/19 12:59,"884 Madison St, San Francisco, CA 94016" +282636,Google Phone,1,600,11/02/19 11:30,"723 6th St, Atlanta, GA 30301" +282637,Apple Airpods Headphones,1,150,11/03/19 12:05,"767 6th St, Portland, OR 97035" +282638,Wired Headphones,1,11.99,12/01/19 00:01,"271 West St, Seattle, WA 98101" +282639,Apple Airpods Headphones,1,150,11/17/19 00:03,"983 Jackson St, Seattle, WA 98101" +282640,AAA Batteries (4-pack),1,2.99,11/27/19 14:22,"285 Church St, Los Angeles, CA 90001" +282641,AAA Batteries (4-pack),1,2.99,11/18/19 10:17,"683 Park St, Los Angeles, CA 90001" +282642,Lightning Charging Cable,1,14.95,11/02/19 21:39,"349 Center St, Atlanta, GA 30301" +282643,Bose SoundSport Headphones,1,99.99,11/29/19 18:37,"389 Lakeview St, New York City, NY 10001" +282644,AAA Batteries (4-pack),1,2.99,11/22/19 04:28,"424 2nd St, New York City, NY 10001" +282645,Flatscreen TV,1,300,11/10/19 17:47,"893 Lincoln St, New York City, NY 10001" +282646,USB-C Charging Cable,2,11.95,11/16/19 08:03,"614 Jefferson St, Atlanta, GA 30301" +282647,Apple Airpods Headphones,1,150,11/07/19 11:42,"44 Main St, Portland, OR 97035" +282648,Google Phone,1,600,11/14/19 07:55,"400 Church St, Seattle, WA 98101" +282649,USB-C Charging Cable,1,11.95,11/23/19 05:38,"46 4th St, San Francisco, CA 94016" +282650,USB-C Charging Cable,1,11.95,11/21/19 13:39,"500 Willow St, New York City, NY 10001" +282651,USB-C Charging Cable,1,11.95,11/15/19 16:57,"197 11th St, Los Angeles, CA 90001" +282652,Lightning Charging Cable,1,14.95,11/15/19 15:08,"1 Jefferson St, Boston, MA 02215" +282653,Lightning Charging Cable,3,14.95,11/18/19 09:26,"379 Madison St, Dallas, TX 75001" +282654,AAA Batteries (4-pack),4,2.99,11/25/19 15:11,"781 Madison St, San Francisco, CA 94016" +282655,AAA Batteries (4-pack),1,2.99,11/20/19 18:32,"377 Washington St, Los Angeles, CA 90001" +282656,iPhone,1,700,11/26/19 02:23,"130 11th St, Los Angeles, CA 90001" +282657,34in Ultrawide Monitor,1,379.99,11/07/19 21:17,"580 Washington St, San Francisco, CA 94016" +282658,USB-C Charging Cable,1,11.95,11/14/19 18:25,"430 Spruce St, Seattle, WA 98101" +282659,27in FHD Monitor,1,149.99,11/07/19 10:32,"892 11th St, Austin, TX 73301" +282660,Google Phone,1,600,11/03/19 14:29,"557 Johnson St, Los Angeles, CA 90001" +282661,iPhone,1,700,11/30/19 00:56,"722 Maple St, Atlanta, GA 30301" +282662,Apple Airpods Headphones,1,150,11/14/19 10:28,"164 Sunset St, Dallas, TX 75001" +282663,Lightning Charging Cable,1,14.95,11/13/19 20:20,"942 4th St, Los Angeles, CA 90001" +282664,Lightning Charging Cable,1,14.95,11/03/19 06:46,"237 Lake St, San Francisco, CA 94016" +282665,USB-C Charging Cable,1,11.95,11/02/19 06:52,"861 Spruce St, New York City, NY 10001" +282666,Apple Airpods Headphones,1,150,11/29/19 20:45,"808 Sunset St, Seattle, WA 98101" +282667,Lightning Charging Cable,1,14.95,11/27/19 18:37,"888 Wilson St, Los Angeles, CA 90001" +282667,AA Batteries (4-pack),1,3.84,11/27/19 18:37,"888 Wilson St, Los Angeles, CA 90001" +282668,USB-C Charging Cable,1,11.95,11/21/19 20:50,"751 Center St, San Francisco, CA 94016" +282669,ThinkPad Laptop,1,999.99,11/01/19 15:24,"331 Cedar St, Boston, MA 02215" +282670,27in 4K Gaming Monitor,1,389.99,11/20/19 02:28,"636 Park St, Los Angeles, CA 90001" +282671,AAA Batteries (4-pack),1,2.99,11/02/19 07:37,"623 10th St, San Francisco, CA 94016" +282672,USB-C Charging Cable,1,11.95,11/14/19 23:06,"588 Meadow St, New York City, NY 10001" +282673,Lightning Charging Cable,1,14.95,11/29/19 19:28,"317 Lake St, Boston, MA 02215" +282674,Apple Airpods Headphones,2,150,11/05/19 08:49,"375 9th St, Boston, MA 02215" +282675,AA Batteries (4-pack),2,3.84,11/03/19 14:57,"678 Wilson St, Boston, MA 02215" +282676,Vareebadd Phone,1,400,11/16/19 12:20,"395 Hickory St, Seattle, WA 98101" +282677,USB-C Charging Cable,1,11.95,11/26/19 13:13,"891 Wilson St, Los Angeles, CA 90001" +282678,Bose SoundSport Headphones,1,99.99,11/14/19 06:05,"15 Main St, New York City, NY 10001" +282679,27in FHD Monitor,1,149.99,11/08/19 20:46,"53 1st St, Los Angeles, CA 90001" +282680,USB-C Charging Cable,1,11.95,11/18/19 21:23,"425 Maple St, San Francisco, CA 94016" +282681,AA Batteries (4-pack),1,3.84,11/12/19 11:33,"575 Adams St, Atlanta, GA 30301" +282682,27in 4K Gaming Monitor,1,389.99,11/09/19 09:39,"275 Hickory St, San Francisco, CA 94016" +282683,Bose SoundSport Headphones,1,99.99,11/05/19 17:12,"445 Dogwood St, Portland, OR 97035" +282684,27in FHD Monitor,1,149.99,11/30/19 16:23,"251 4th St, Los Angeles, CA 90001" +282685,Lightning Charging Cable,1,14.95,11/18/19 01:24,"695 Madison St, Portland, OR 97035" +282686,Flatscreen TV,1,300,11/06/19 17:49,"16 Chestnut St, San Francisco, CA 94016" +282687,Apple Airpods Headphones,1,150,11/12/19 18:32,"92 Park St, San Francisco, CA 94016" +282688,27in FHD Monitor,2,149.99,11/03/19 18:26,"235 Wilson St, San Francisco, CA 94016" +282689,20in Monitor,1,109.99,11/01/19 23:20,"909 Pine St, Boston, MA 02215" +282690,Lightning Charging Cable,1,14.95,11/20/19 12:53,"558 14th St, Dallas, TX 75001" +282691,Lightning Charging Cable,1,14.95,11/20/19 19:29,"751 Cherry St, Seattle, WA 98101" +282692,USB-C Charging Cable,1,11.95,11/26/19 10:32,"566 Ridge St, San Francisco, CA 94016" +282693,AA Batteries (4-pack),1,3.84,11/26/19 23:35,"717 12th St, San Francisco, CA 94016" +282694,Macbook Pro Laptop,1,1700,11/21/19 12:28,"618 Pine St, New York City, NY 10001" +282695,34in Ultrawide Monitor,1,379.99,11/28/19 17:03,"854 Lake St, San Francisco, CA 94016" +282696,AAA Batteries (4-pack),1,2.99,11/24/19 20:31,"11 Jefferson St, San Francisco, CA 94016" +282697,Lightning Charging Cable,1,14.95,11/11/19 15:07,"314 9th St, Atlanta, GA 30301" +282698,USB-C Charging Cable,1,11.95,11/13/19 14:41,"206 Maple St, San Francisco, CA 94016" +282699,Flatscreen TV,1,300,11/09/19 22:25,"218 Ridge St, Austin, TX 73301" +282700,Apple Airpods Headphones,1,150,11/11/19 20:40,"727 Spruce St, San Francisco, CA 94016" +282701,AA Batteries (4-pack),1,3.84,11/11/19 14:20,"110 Pine St, Boston, MA 02215" +282702,iPhone,1,700,11/16/19 19:49,"433 Dogwood St, Los Angeles, CA 90001" +282703,ThinkPad Laptop,1,999.99,11/14/19 13:18,"34 North St, Portland, OR 97035" +282704,AAA Batteries (4-pack),1,2.99,11/09/19 20:04,"958 Cedar St, New York City, NY 10001" +282705,Apple Airpods Headphones,1,150,11/13/19 12:18,"962 Lakeview St, San Francisco, CA 94016" +282706,Flatscreen TV,1,300,11/23/19 20:31,"46 Lakeview St, San Francisco, CA 94016" +282707,AAA Batteries (4-pack),1,2.99,11/27/19 09:13,"894 Lincoln St, Atlanta, GA 30301" +282708,Wired Headphones,1,11.99,11/20/19 13:21,"983 Jefferson St, Los Angeles, CA 90001" +282709,27in FHD Monitor,1,149.99,11/18/19 19:10,"563 Willow St, Atlanta, GA 30301" +282710,ThinkPad Laptop,1,999.99,11/04/19 16:55,"450 Dogwood St, Los Angeles, CA 90001" +282711,AAA Batteries (4-pack),1,2.99,11/06/19 19:52,"386 Hickory St, Los Angeles, CA 90001" +282712,iPhone,1,700,11/24/19 23:17,"234 Cherry St, San Francisco, CA 94016" +282713,Lightning Charging Cable,1,14.95,11/13/19 14:58,"600 Meadow St, Seattle, WA 98101" +282714,USB-C Charging Cable,1,11.95,11/03/19 17:32,"266 Willow St, New York City, NY 10001" +282715,USB-C Charging Cable,1,11.95,11/13/19 06:26,"54 Church St, Portland, OR 97035" +282716,AAA Batteries (4-pack),1,2.99,11/02/19 11:22,"286 Wilson St, Austin, TX 73301" +282717,Wired Headphones,1,11.99,11/25/19 19:35,"870 6th St, San Francisco, CA 94016" +282718,Wired Headphones,1,11.99,11/30/19 17:58,"425 Elm St, San Francisco, CA 94016" +282719,USB-C Charging Cable,1,11.95,11/22/19 09:54,"192 Center St, Portland, OR 97035" +282720,AA Batteries (4-pack),3,3.84,11/15/19 01:26,"787 Highland St, Dallas, TX 75001" +282721,AAA Batteries (4-pack),1,2.99,11/05/19 22:38,"880 Adams St, Boston, MA 02215" +282721,AA Batteries (4-pack),1,3.84,11/05/19 22:38,"880 Adams St, Boston, MA 02215" +282722,27in FHD Monitor,1,149.99,11/29/19 19:03,"747 10th St, Boston, MA 02215" +282723,LG Washing Machine,1,600.0,11/22/19 14:36,"46 South St, Portland, OR 97035" +282724,Lightning Charging Cable,1,14.95,11/09/19 10:17,"555 10th St, Portland, OR 97035" +282725,USB-C Charging Cable,1,11.95,11/01/19 17:30,"909 Forest St, Dallas, TX 75001" +282726,AA Batteries (4-pack),1,3.84,11/06/19 13:38,"405 Maple St, New York City, NY 10001" +282727,AAA Batteries (4-pack),1,2.99,11/17/19 18:20,"165 Lakeview St, Portland, OR 97035" +282728,Bose SoundSport Headphones,1,99.99,11/09/19 16:13,"88 14th St, New York City, NY 10001" +282729,Wired Headphones,1,11.99,11/12/19 14:52,"965 West St, Boston, MA 02215" +282730,USB-C Charging Cable,1,11.95,11/28/19 12:15,"193 10th St, Boston, MA 02215" +282731,Wired Headphones,1,11.99,11/26/19 12:09,"626 Cedar St, Austin, TX 73301" +282732,Bose SoundSport Headphones,1,99.99,11/29/19 17:39,"505 Sunset St, Atlanta, GA 30301" +282733,20in Monitor,1,109.99,11/20/19 12:15,"585 Walnut St, San Francisco, CA 94016" +282734,Wired Headphones,1,11.99,11/21/19 10:50,"272 10th St, San Francisco, CA 94016" +282735,AAA Batteries (4-pack),1,2.99,11/25/19 21:29,"207 Cedar St, Los Angeles, CA 90001" +282736,Apple Airpods Headphones,1,150,11/06/19 02:10,"129 6th St, San Francisco, CA 94016" +282737,27in FHD Monitor,1,149.99,11/09/19 23:39,"984 Lincoln St, Atlanta, GA 30301" +282738,Wired Headphones,1,11.99,11/06/19 00:04,"177 North St, Los Angeles, CA 90001" +282739,USB-C Charging Cable,1,11.95,11/22/19 11:35,"276 River St, Los Angeles, CA 90001" +282740,USB-C Charging Cable,1,11.95,11/24/19 22:33,"143 Jackson St, San Francisco, CA 94016" +282741,Wired Headphones,1,11.99,11/26/19 12:05,"248 River St, San Francisco, CA 94016" +282742,Apple Airpods Headphones,1,150,11/29/19 18:13,"358 Willow St, Boston, MA 02215" +282743,Wired Headphones,1,11.99,11/16/19 18:56,"105 5th St, Portland, OR 97035" +282744,Wired Headphones,1,11.99,11/30/19 15:28,"231 Adams St, New York City, NY 10001" +282745,AA Batteries (4-pack),1,3.84,11/11/19 19:04,"181 Hickory St, Dallas, TX 75001" +282746,Lightning Charging Cable,1,14.95,11/05/19 10:19,"946 Church St, Los Angeles, CA 90001" +282747,Flatscreen TV,1,300,11/17/19 12:35,"290 Walnut St, Seattle, WA 98101" +282748,34in Ultrawide Monitor,1,379.99,11/21/19 14:13,"688 North St, Portland, OR 97035" +282749,Wired Headphones,1,11.99,11/26/19 16:50,"147 Chestnut St, San Francisco, CA 94016" +282750,Macbook Pro Laptop,1,1700,11/18/19 16:30,"733 10th St, Austin, TX 73301" +282751,Google Phone,1,600,11/18/19 21:46,"786 South St, Portland, OR 97035" +282751,USB-C Charging Cable,1,11.95,11/18/19 21:46,"786 South St, Portland, OR 97035" +282752,Macbook Pro Laptop,1,1700,11/24/19 09:18,"10 7th St, San Francisco, CA 94016" +282753,AA Batteries (4-pack),1,3.84,11/07/19 17:29,"687 Lincoln St, San Francisco, CA 94016" +282754,AA Batteries (4-pack),1,3.84,11/03/19 19:49,"686 1st St, Los Angeles, CA 90001" +282755,Wired Headphones,1,11.99,11/18/19 10:38,"850 14th St, Austin, TX 73301" +282756,AAA Batteries (4-pack),1,2.99,11/18/19 22:06,"402 Forest St, Los Angeles, CA 90001" +282757,27in 4K Gaming Monitor,1,389.99,11/02/19 07:49,"153 Jackson St, San Francisco, CA 94016" +282758,Wired Headphones,1,11.99,11/06/19 14:14,"607 Chestnut St, Dallas, TX 75001" +282759,LG Dryer,1,600.0,11/19/19 21:15,"564 Wilson St, Austin, TX 73301" +282760,AAA Batteries (4-pack),1,2.99,11/05/19 15:36,"465 North St, San Francisco, CA 94016" +282761,Lightning Charging Cable,1,14.95,11/28/19 21:00,"177 Maple St, San Francisco, CA 94016" +282762,AAA Batteries (4-pack),3,2.99,11/21/19 16:29,"978 Johnson St, San Francisco, CA 94016" +282763,27in 4K Gaming Monitor,1,389.99,11/17/19 06:43,"532 Main St, Dallas, TX 75001" +282764,Wired Headphones,1,11.99,11/06/19 17:56,"941 2nd St, Atlanta, GA 30301" +282765,AAA Batteries (4-pack),3,2.99,11/30/19 19:28,"980 Wilson St, San Francisco, CA 94016" +282766,Wired Headphones,1,11.99,11/10/19 14:16,"470 2nd St, Los Angeles, CA 90001" +282767,Wired Headphones,1,11.99,11/27/19 13:19,"277 Madison St, San Francisco, CA 94016" +282768,USB-C Charging Cable,1,11.95,11/13/19 14:35,"714 Maple St, Atlanta, GA 30301" +282769,Bose SoundSport Headphones,1,99.99,11/09/19 11:29,"323 Church St, Boston, MA 02215" +282770,AA Batteries (4-pack),1,3.84,11/15/19 07:57,"450 Highland St, Seattle, WA 98101" +282771,iPhone,1,700,11/17/19 22:18,"891 1st St, Austin, TX 73301" +282772,Wired Headphones,1,11.99,11/12/19 10:10,"995 Washington St, Boston, MA 02215" +282773,Wired Headphones,1,11.99,11/19/19 11:35,"158 Maple St, Atlanta, GA 30301" +282774,USB-C Charging Cable,1,11.95,11/24/19 19:54,"704 8th St, New York City, NY 10001" +282775,Apple Airpods Headphones,1,150,11/23/19 17:16,"607 10th St, Boston, MA 02215" +282776,AA Batteries (4-pack),1,3.84,11/14/19 20:30,"334 Adams St, Boston, MA 02215" +282777,AA Batteries (4-pack),1,3.84,11/14/19 02:05,"587 Pine St, Los Angeles, CA 90001" +282778,34in Ultrawide Monitor,1,379.99,11/28/19 21:08,"989 5th St, Seattle, WA 98101" +282779,AAA Batteries (4-pack),1,2.99,11/24/19 21:23,"216 Jackson St, Los Angeles, CA 90001" +282780,Apple Airpods Headphones,1,150,11/10/19 15:21,"652 Willow St, Los Angeles, CA 90001" +282781,USB-C Charging Cable,1,11.95,11/19/19 07:36,"486 Johnson St, San Francisco, CA 94016" +282782,Lightning Charging Cable,1,14.95,11/12/19 11:30,"135 13th St, Los Angeles, CA 90001" +282783,Lightning Charging Cable,1,14.95,11/26/19 07:52,"922 1st St, Los Angeles, CA 90001" +282784,USB-C Charging Cable,1,11.95,11/21/19 14:59,"793 9th St, San Francisco, CA 94016" +282785,Lightning Charging Cable,1,14.95,11/02/19 22:36,"457 Lake St, Portland, ME 04101" +282786,Lightning Charging Cable,1,14.95,11/28/19 13:29,"565 Lincoln St, San Francisco, CA 94016" +282787,AAA Batteries (4-pack),1,2.99,11/24/19 22:30,"790 8th St, Los Angeles, CA 90001" +282788,Wired Headphones,1,11.99,11/28/19 23:13,"382 13th St, San Francisco, CA 94016" +282789,iPhone,1,700,11/19/19 13:07,"769 Ridge St, New York City, NY 10001" +282790,Wired Headphones,1,11.99,11/13/19 14:30,"496 Ridge St, Los Angeles, CA 90001" +282791,AAA Batteries (4-pack),1,2.99,11/16/19 00:07,"41 Forest St, Los Angeles, CA 90001" +282792,USB-C Charging Cable,1,11.95,11/24/19 17:37,"515 Park St, Seattle, WA 98101" +282793,USB-C Charging Cable,1,11.95,11/09/19 23:05,"374 7th St, Los Angeles, CA 90001" +282794,USB-C Charging Cable,1,11.95,11/16/19 19:20,"498 Lakeview St, Los Angeles, CA 90001" +282795,USB-C Charging Cable,1,11.95,11/30/19 19:41,"372 Hill St, San Francisco, CA 94016" +282796,USB-C Charging Cable,1,11.95,11/17/19 12:14,"223 14th St, Dallas, TX 75001" +282797,Lightning Charging Cable,1,14.95,11/25/19 23:24,"482 Forest St, San Francisco, CA 94016" +282798,AA Batteries (4-pack),1,3.84,11/26/19 09:31,"990 Lake St, Boston, MA 02215" +282799,27in FHD Monitor,1,149.99,11/18/19 09:22,"233 2nd St, Los Angeles, CA 90001" +282800,USB-C Charging Cable,1,11.95,11/23/19 14:32,"551 Forest St, Austin, TX 73301" +282801,AAA Batteries (4-pack),1,2.99,11/16/19 21:13,"924 Jefferson St, Austin, TX 73301" +282802,Wired Headphones,1,11.99,11/02/19 16:41,"480 Jackson St, Atlanta, GA 30301" +282803,USB-C Charging Cable,1,11.95,11/28/19 18:26,"617 5th St, Los Angeles, CA 90001" +282804,Apple Airpods Headphones,1,150,11/02/19 17:05,"722 Hill St, Boston, MA 02215" +282805,Google Phone,1,600,11/22/19 16:13,"222 9th St, San Francisco, CA 94016" +282806,USB-C Charging Cable,1,11.95,11/28/19 21:00,"186 Highland St, Seattle, WA 98101" +282807,Lightning Charging Cable,1,14.95,11/16/19 11:35,"453 Park St, Atlanta, GA 30301" +282808,AAA Batteries (4-pack),1,2.99,11/19/19 13:18,"756 Spruce St, Boston, MA 02215" +282809,27in 4K Gaming Monitor,1,389.99,11/17/19 14:50,"280 Sunset St, San Francisco, CA 94016" +282810,Bose SoundSport Headphones,1,99.99,11/11/19 21:54,"325 5th St, New York City, NY 10001" +282811,Apple Airpods Headphones,1,150,11/29/19 21:57,"536 Jackson St, San Francisco, CA 94016" +282812,Lightning Charging Cable,1,14.95,11/28/19 11:13,"492 12th St, New York City, NY 10001" +282813,27in FHD Monitor,1,149.99,11/14/19 10:43,"333 Cedar St, Atlanta, GA 30301" +282814,AAA Batteries (4-pack),1,2.99,11/17/19 12:51,"971 Meadow St, Los Angeles, CA 90001" +282815,Lightning Charging Cable,1,14.95,11/19/19 17:55,"203 2nd St, Austin, TX 73301" +282816,Lightning Charging Cable,1,14.95,11/13/19 12:17,"813 1st St, Dallas, TX 75001" +282817,Apple Airpods Headphones,1,150,11/24/19 22:20,"657 Park St, Boston, MA 02215" +282818,34in Ultrawide Monitor,1,379.99,11/24/19 17:24,"603 Dogwood St, Dallas, TX 75001" +282819,USB-C Charging Cable,1,11.95,11/15/19 11:06,"726 Jackson St, San Francisco, CA 94016" +282820,Lightning Charging Cable,1,14.95,11/22/19 19:55,"637 9th St, Dallas, TX 75001" +282821,AAA Batteries (4-pack),1,2.99,11/10/19 10:15,"730 Lincoln St, Austin, TX 73301" +282822,AA Batteries (4-pack),1,3.84,11/30/19 13:32,"385 Elm St, Atlanta, GA 30301" +282823,Flatscreen TV,1,300,11/11/19 17:38,"247 Wilson St, San Francisco, CA 94016" +282824,Lightning Charging Cable,1,14.95,11/15/19 21:52,"918 1st St, Portland, OR 97035" +282825,USB-C Charging Cable,1,11.95,11/16/19 15:28,"367 Park St, Los Angeles, CA 90001" +282826,Apple Airpods Headphones,1,150,11/08/19 14:50,"629 2nd St, New York City, NY 10001" +282827,AA Batteries (4-pack),1,3.84,11/02/19 18:49,"493 Lake St, San Francisco, CA 94016" +282828,Google Phone,1,600,11/28/19 11:21,"677 Willow St, San Francisco, CA 94016" +282829,Wired Headphones,1,11.99,11/25/19 16:10,"646 12th St, New York City, NY 10001" +282830,AA Batteries (4-pack),2,3.84,11/03/19 16:20,"353 South St, Austin, TX 73301" +282831,Apple Airpods Headphones,1,150,11/09/19 14:02,"327 5th St, San Francisco, CA 94016" +282832,20in Monitor,1,109.99,11/21/19 16:08,"257 Spruce St, Austin, TX 73301" +282833,AA Batteries (4-pack),1,3.84,11/02/19 09:32,"619 10th St, San Francisco, CA 94016" +282834,Wired Headphones,1,11.99,11/04/19 21:32,"886 Madison St, Los Angeles, CA 90001" +282835,ThinkPad Laptop,1,999.99,11/28/19 13:31,"103 7th St, San Francisco, CA 94016" +282836,USB-C Charging Cable,1,11.95,11/05/19 09:45,"550 12th St, Boston, MA 02215" +282837,AAA Batteries (4-pack),1,2.99,11/30/19 19:57,"601 8th St, San Francisco, CA 94016" +282838,27in FHD Monitor,1,149.99,11/15/19 13:53,"623 Cherry St, San Francisco, CA 94016" +282839,Bose SoundSport Headphones,1,99.99,11/11/19 18:10,"282 Sunset St, Seattle, WA 98101" +282840,Wired Headphones,2,11.99,11/30/19 19:07,"986 Willow St, Atlanta, GA 30301" +282841,Apple Airpods Headphones,1,150,11/04/19 14:22,"967 Chestnut St, Atlanta, GA 30301" +282842,Bose SoundSport Headphones,1,99.99,11/12/19 19:43,"777 14th St, Austin, TX 73301" +282843,Lightning Charging Cable,1,14.95,11/29/19 20:22,"695 Johnson St, Seattle, WA 98101" +282844,AAA Batteries (4-pack),2,2.99,11/27/19 10:59,"782 Lake St, Atlanta, GA 30301" +282845,USB-C Charging Cable,1,11.95,11/21/19 18:52,"564 Main St, Los Angeles, CA 90001" +282846,27in 4K Gaming Monitor,1,389.99,11/10/19 16:04,"623 Willow St, New York City, NY 10001" +282847,AAA Batteries (4-pack),1,2.99,11/17/19 20:51,"495 Cherry St, Atlanta, GA 30301" +282848,USB-C Charging Cable,1,11.95,11/05/19 13:03,"973 12th St, Dallas, TX 75001" +282849,Google Phone,1,600,11/06/19 14:54,"738 Madison St, New York City, NY 10001" +282849,USB-C Charging Cable,1,11.95,11/06/19 14:54,"738 Madison St, New York City, NY 10001" +282850,AAA Batteries (4-pack),1,2.99,11/09/19 12:25,"623 Sunset St, Los Angeles, CA 90001" +282851,Apple Airpods Headphones,1,150,11/17/19 09:31,"511 Chestnut St, New York City, NY 10001" +282852,Bose SoundSport Headphones,1,99.99,11/30/19 11:16,"826 Spruce St, Atlanta, GA 30301" +282853,Google Phone,1,600,11/25/19 18:02,"356 North St, Dallas, TX 75001" +282854,27in FHD Monitor,1,149.99,11/11/19 19:52,"643 Forest St, San Francisco, CA 94016" +282855,Bose SoundSport Headphones,1,99.99,11/25/19 09:53,"680 Hickory St, Dallas, TX 75001" +282856,Wired Headphones,1,11.99,11/12/19 19:54,"644 Washington St, Portland, OR 97035" +282857,Flatscreen TV,1,300,11/06/19 21:13,"451 South St, Boston, MA 02215" +282858,27in FHD Monitor,1,149.99,11/12/19 17:47,"263 Cedar St, Dallas, TX 75001" +282859,27in FHD Monitor,1,149.99,11/14/19 11:36,"710 Forest St, Los Angeles, CA 90001" +282860,USB-C Charging Cable,1,11.95,11/25/19 18:36,"314 Lakeview St, Los Angeles, CA 90001" +282861,Apple Airpods Headphones,2,150,11/05/19 11:42,"228 Washington St, Los Angeles, CA 90001" +282862,AA Batteries (4-pack),1,3.84,11/15/19 12:00,"299 Forest St, Los Angeles, CA 90001" +282863,Wired Headphones,1,11.99,11/02/19 20:21,"197 Maple St, Seattle, WA 98101" +282864,Apple Airpods Headphones,1,150,11/21/19 13:08,"25 5th St, Dallas, TX 75001" +282865,Macbook Pro Laptop,1,1700,11/17/19 02:54,"887 Hill St, Dallas, TX 75001" +282866,AAA Batteries (4-pack),1,2.99,11/22/19 15:05,"616 Willow St, Seattle, WA 98101" +282867,Wired Headphones,1,11.99,11/12/19 21:11,"306 Cedar St, San Francisco, CA 94016" +282868,Lightning Charging Cable,1,14.95,11/13/19 09:46,"468 Madison St, Atlanta, GA 30301" +282869,Apple Airpods Headphones,1,150,11/11/19 14:53,"2 Adams St, Seattle, WA 98101" +282870,Wired Headphones,1,11.99,11/28/19 12:27,"623 4th St, Seattle, WA 98101" +282871,AA Batteries (4-pack),2,3.84,11/27/19 10:37,"710 Highland St, Los Angeles, CA 90001" +282872,34in Ultrawide Monitor,1,379.99,11/28/19 01:01,"974 8th St, Seattle, WA 98101" +282873,34in Ultrawide Monitor,1,379.99,11/26/19 10:41,"738 Church St, San Francisco, CA 94016" +282874,USB-C Charging Cable,1,11.95,11/13/19 23:04,"413 Cherry St, Portland, OR 97035" +282875,AAA Batteries (4-pack),1,2.99,11/11/19 18:45,"35 11th St, Dallas, TX 75001" +282876,Wired Headphones,1,11.99,11/05/19 19:18,"1 Wilson St, Los Angeles, CA 90001" +282877,USB-C Charging Cable,1,11.95,11/11/19 12:37,"564 4th St, New York City, NY 10001" +282878,AAA Batteries (4-pack),1,2.99,11/07/19 20:35,"111 Hickory St, Dallas, TX 75001" +282879,AA Batteries (4-pack),1,3.84,11/25/19 23:10,"564 North St, New York City, NY 10001" +282880,27in 4K Gaming Monitor,1,389.99,11/14/19 19:09,"179 8th St, Portland, OR 97035" +282881,ThinkPad Laptop,1,999.99,11/21/19 22:41,"893 Washington St, Boston, MA 02215" +282882,AAA Batteries (4-pack),2,2.99,11/23/19 21:42,"607 Cherry St, New York City, NY 10001" +282883,27in 4K Gaming Monitor,1,389.99,11/27/19 22:53,"101 5th St, Los Angeles, CA 90001" +282884,Lightning Charging Cable,1,14.95,11/06/19 09:22,"203 Dogwood St, San Francisco, CA 94016" +282885,USB-C Charging Cable,1,11.95,11/23/19 14:26,"670 Cedar St, San Francisco, CA 94016" +282886,34in Ultrawide Monitor,1,379.99,11/23/19 10:17,"784 Willow St, Los Angeles, CA 90001" +282887,ThinkPad Laptop,1,999.99,11/06/19 04:13,"502 Chestnut St, San Francisco, CA 94016" +282888,AAA Batteries (4-pack),5,2.99,11/26/19 12:25,"554 Park St, Seattle, WA 98101" +282889,Apple Airpods Headphones,1,150,11/30/19 21:01,"276 South St, Portland, OR 97035" +282890,AAA Batteries (4-pack),6,2.99,11/08/19 00:44,"996 4th St, San Francisco, CA 94016" +282891,Lightning Charging Cable,1,14.95,11/17/19 11:23,"758 Ridge St, Portland, OR 97035" +282892,iPhone,1,700,11/22/19 18:15,"443 Dogwood St, Portland, OR 97035" +282893,AAA Batteries (4-pack),1,2.99,11/21/19 20:50,"430 Washington St, Seattle, WA 98101" +282894,Wired Headphones,1,11.99,11/25/19 06:42,"414 10th St, New York City, NY 10001" +282895,AA Batteries (4-pack),1,3.84,11/25/19 21:14,"866 Jackson St, Boston, MA 02215" +282896,Apple Airpods Headphones,1,150,11/15/19 11:22,"334 River St, Boston, MA 02215" +282897,ThinkPad Laptop,1,999.99,11/04/19 21:04,"65 Hill St, Portland, OR 97035" +282898,USB-C Charging Cable,1,11.95,11/24/19 16:22,"761 Chestnut St, San Francisco, CA 94016" +282899,27in 4K Gaming Monitor,1,389.99,11/28/19 12:33,"772 Main St, New York City, NY 10001" +282900,27in FHD Monitor,1,149.99,11/01/19 22:41,"210 Willow St, Los Angeles, CA 90001" +282901,Bose SoundSport Headphones,1,99.99,11/29/19 13:36,"846 1st St, Austin, TX 73301" +282902,USB-C Charging Cable,1,11.95,11/26/19 13:47,"889 2nd St, San Francisco, CA 94016" +282903,iPhone,1,700,11/28/19 01:22,"387 Lakeview St, San Francisco, CA 94016" +282903,Lightning Charging Cable,1,14.95,11/28/19 01:22,"387 Lakeview St, San Francisco, CA 94016" +282904,AAA Batteries (4-pack),4,2.99,11/26/19 08:28,"14 River St, Boston, MA 02215" +282905,Lightning Charging Cable,1,14.95,11/15/19 13:32,"823 Main St, Seattle, WA 98101" +282906,Apple Airpods Headphones,1,150,11/05/19 23:54,"640 1st St, Boston, MA 02215" +282907,ThinkPad Laptop,1,999.99,11/04/19 20:43,"760 Lincoln St, San Francisco, CA 94016" +282908,Bose SoundSport Headphones,1,99.99,11/28/19 21:55,"578 9th St, Los Angeles, CA 90001" +282909,Apple Airpods Headphones,1,150,11/11/19 11:58,"904 8th St, Los Angeles, CA 90001" +282910,USB-C Charging Cable,1,11.95,11/02/19 12:16,"953 Dogwood St, Los Angeles, CA 90001" +282911,AAA Batteries (4-pack),1,2.99,11/07/19 15:54,"98 Washington St, Dallas, TX 75001" +282912,AAA Batteries (4-pack),1,2.99,11/15/19 17:51,"665 9th St, Portland, OR 97035" +282913,ThinkPad Laptop,1,999.99,11/16/19 21:19,"970 Walnut St, Portland, OR 97035" +282914,AA Batteries (4-pack),1,3.84,11/05/19 19:44,"427 Lincoln St, Atlanta, GA 30301" +282915,Flatscreen TV,1,300,11/19/19 23:03,"935 Highland St, San Francisco, CA 94016" +282916,Flatscreen TV,1,300,11/14/19 13:28,"324 Madison St, Atlanta, GA 30301" +282917,AA Batteries (4-pack),1,3.84,11/04/19 22:49,"55 7th St, New York City, NY 10001" +282918,iPhone,1,700,11/26/19 20:16,"774 River St, Los Angeles, CA 90001" +282919,USB-C Charging Cable,1,11.95,11/02/19 16:01,"237 North St, San Francisco, CA 94016" +282920,Apple Airpods Headphones,1,150,11/28/19 10:43,"875 Lakeview St, New York City, NY 10001" +282921,Bose SoundSport Headphones,1,99.99,11/02/19 23:39,"43 Adams St, San Francisco, CA 94016" +282921,Lightning Charging Cable,1,14.95,11/02/19 23:39,"43 Adams St, San Francisco, CA 94016" +282922,Lightning Charging Cable,1,14.95,11/02/19 16:27,"804 Spruce St, San Francisco, CA 94016" +282923,Bose SoundSport Headphones,1,99.99,11/05/19 21:07,"801 River St, San Francisco, CA 94016" +282924,AA Batteries (4-pack),2,3.84,11/20/19 17:17,"936 Willow St, Atlanta, GA 30301" +282925,ThinkPad Laptop,1,999.99,11/12/19 18:56,"85 Park St, San Francisco, CA 94016" +282926,AAA Batteries (4-pack),1,2.99,11/22/19 00:25,"79 Madison St, Seattle, WA 98101" +282927,AAA Batteries (4-pack),2,2.99,11/05/19 06:32,"514 Cherry St, Los Angeles, CA 90001" +282928,Lightning Charging Cable,1,14.95,11/30/19 10:25,"507 Dogwood St, Atlanta, GA 30301" +282929,27in FHD Monitor,1,149.99,11/05/19 09:57,"301 Pine St, San Francisco, CA 94016" +282930,Macbook Pro Laptop,1,1700,11/05/19 10:15,"806 Dogwood St, New York City, NY 10001" +282931,iPhone,1,700,11/15/19 07:48,"978 Hickory St, San Francisco, CA 94016" +282932,AAA Batteries (4-pack),1,2.99,11/17/19 13:50,"574 10th St, Los Angeles, CA 90001" +282933,Bose SoundSport Headphones,1,99.99,11/11/19 09:50,"180 Center St, Portland, OR 97035" +282934,AAA Batteries (4-pack),2,2.99,11/23/19 15:48,"980 Willow St, Los Angeles, CA 90001" +282935,Lightning Charging Cable,1,14.95,11/24/19 22:35,"308 1st St, Seattle, WA 98101" +282936,Lightning Charging Cable,1,14.95,11/19/19 15:09,"290 2nd St, Boston, MA 02215" +282937,ThinkPad Laptop,1,999.99,11/27/19 13:17,"421 Wilson St, Boston, MA 02215" +282938,ThinkPad Laptop,1,999.99,11/17/19 14:59,"733 9th St, New York City, NY 10001" +282939,iPhone,1,700,11/22/19 07:47,"798 Hickory St, Dallas, TX 75001" +282940,Wired Headphones,1,11.99,11/08/19 18:10,"24 6th St, San Francisco, CA 94016" +282941,27in 4K Gaming Monitor,1,389.99,11/01/19 08:58,"208 Madison St, Atlanta, GA 30301" +282942,Wired Headphones,1,11.99,11/03/19 19:55,"40 Sunset St, Los Angeles, CA 90001" +282943,Bose SoundSport Headphones,1,99.99,11/11/19 22:45,"138 2nd St, Los Angeles, CA 90001" +282944,AA Batteries (4-pack),1,3.84,11/16/19 08:09,"812 11th St, San Francisco, CA 94016" +282945,AAA Batteries (4-pack),3,2.99,11/10/19 14:42,"449 Walnut St, Portland, OR 97035" +282946,Lightning Charging Cable,1,14.95,11/01/19 10:37,"371 Walnut St, Boston, MA 02215" +282947,Bose SoundSport Headphones,1,99.99,11/13/19 14:11,"745 Meadow St, Atlanta, GA 30301" +282948,AA Batteries (4-pack),1,3.84,11/23/19 18:39,"57 9th St, Los Angeles, CA 90001" +282949,Lightning Charging Cable,1,14.95,11/16/19 11:05,"615 5th St, Boston, MA 02215" +282950,AA Batteries (4-pack),1,3.84,11/20/19 09:33,"883 Sunset St, Boston, MA 02215" +282951,ThinkPad Laptop,1,999.99,11/06/19 17:05,"235 1st St, San Francisco, CA 94016" +282952,Bose SoundSport Headphones,1,99.99,11/13/19 13:52,"214 Hill St, New York City, NY 10001" +282953,AAA Batteries (4-pack),2,2.99,11/19/19 12:40,"346 Church St, Boston, MA 02215" +282954,AA Batteries (4-pack),3,3.84,11/30/19 17:28,"59 Dogwood St, New York City, NY 10001" +282955,Apple Airpods Headphones,1,150,11/05/19 17:02,"488 Cherry St, Los Angeles, CA 90001" +282956,AA Batteries (4-pack),1,3.84,11/30/19 13:46,"934 Cedar St, San Francisco, CA 94016" +282957,AAA Batteries (4-pack),1,2.99,11/04/19 20:17,"794 8th St, Austin, TX 73301" +282958,Lightning Charging Cable,1,14.95,11/21/19 18:59,"381 Elm St, Dallas, TX 75001" +282959,Wired Headphones,1,11.99,11/19/19 11:53,"803 Main St, Austin, TX 73301" +282960,Lightning Charging Cable,1,14.95,11/01/19 14:38,"343 Hill St, San Francisco, CA 94016" +282961,Google Phone,1,600,11/20/19 11:20,"824 Jackson St, Boston, MA 02215" +282962,USB-C Charging Cable,1,11.95,11/01/19 12:44,"465 North St, Seattle, WA 98101" +282963,USB-C Charging Cable,1,11.95,11/11/19 13:51,"714 North St, Los Angeles, CA 90001" +282964,Macbook Pro Laptop,1,1700,11/24/19 10:43,"912 Cherry St, Boston, MA 02215" +282965,iPhone,1,700,11/02/19 05:12,"825 South St, San Francisco, CA 94016" +282966,Wired Headphones,1,11.99,11/01/19 15:11,"763 South St, San Francisco, CA 94016" +282967,Wired Headphones,2,11.99,11/28/19 15:48,"796 Meadow St, San Francisco, CA 94016" +282968,Macbook Pro Laptop,1,1700,11/04/19 23:12,"638 13th St, San Francisco, CA 94016" +282969,ThinkPad Laptop,1,999.99,11/21/19 22:28,"382 7th St, Atlanta, GA 30301" +282970,ThinkPad Laptop,1,999.99,11/08/19 19:56,"106 10th St, New York City, NY 10001" +282971,AAA Batteries (4-pack),1,2.99,11/28/19 22:56,"169 1st St, Los Angeles, CA 90001" +282972,AAA Batteries (4-pack),1,2.99,11/16/19 03:03,"741 Lincoln St, Seattle, WA 98101" +282973,AA Batteries (4-pack),1,3.84,11/14/19 07:55,"822 Dogwood St, San Francisco, CA 94016" +282974,34in Ultrawide Monitor,1,379.99,11/13/19 13:13,"477 1st St, New York City, NY 10001" +282975,Lightning Charging Cable,1,14.95,11/13/19 11:43,"346 Jefferson St, Boston, MA 02215" +282976,Google Phone,1,600,11/27/19 19:27,"738 Church St, Los Angeles, CA 90001" +282976,AAA Batteries (4-pack),1,2.99,11/27/19 19:27,"738 Church St, Los Angeles, CA 90001" +282977,USB-C Charging Cable,1,11.95,11/14/19 07:36,"129 Pine St, Seattle, WA 98101" +282978,Bose SoundSport Headphones,1,99.99,11/04/19 23:33,"33 Adams St, Los Angeles, CA 90001" +282979,Bose SoundSport Headphones,1,99.99,11/13/19 06:45,"962 13th St, Los Angeles, CA 90001" +282980,34in Ultrawide Monitor,1,379.99,11/14/19 18:48,"154 Highland St, San Francisco, CA 94016" +282981,Lightning Charging Cable,1,14.95,11/22/19 00:18,"251 2nd St, New York City, NY 10001" +282982,AA Batteries (4-pack),2,3.84,11/28/19 11:04,"343 Hill St, Boston, MA 02215" +282983,USB-C Charging Cable,1,11.95,11/23/19 15:28,"901 Willow St, Los Angeles, CA 90001" +282984,AAA Batteries (4-pack),2,2.99,11/29/19 09:01,"527 Lakeview St, Portland, OR 97035" +282985,Lightning Charging Cable,1,14.95,11/16/19 21:59,"877 River St, Dallas, TX 75001" +282986,27in 4K Gaming Monitor,1,389.99,11/20/19 11:57,"388 Forest St, Boston, MA 02215" +282987,ThinkPad Laptop,1,999.99,11/26/19 21:37,"363 Elm St, Dallas, TX 75001" +282988,27in 4K Gaming Monitor,1,389.99,11/09/19 22:27,"344 Lake St, Los Angeles, CA 90001" +282989,USB-C Charging Cable,1,11.95,11/03/19 13:03,"583 10th St, Portland, OR 97035" +282990,iPhone,1,700,11/25/19 17:50,"146 1st St, Boston, MA 02215" +282991,iPhone,1,700,11/15/19 09:59,"791 Church St, Los Angeles, CA 90001" +282992,AAA Batteries (4-pack),1,2.99,11/05/19 20:14,"194 Johnson St, New York City, NY 10001" +282993,USB-C Charging Cable,1,11.95,11/29/19 07:53,"884 Washington St, New York City, NY 10001" +282994,Lightning Charging Cable,1,14.95,11/25/19 21:09,"214 Adams St, Portland, OR 97035" +282995,27in 4K Gaming Monitor,1,389.99,11/15/19 20:17,"14 Elm St, San Francisco, CA 94016" +282996,Flatscreen TV,1,300,11/24/19 21:23,"413 10th St, San Francisco, CA 94016" +282997,Macbook Pro Laptop,1,1700,11/26/19 10:55,"273 Lakeview St, New York City, NY 10001" +282998,AAA Batteries (4-pack),1,2.99,11/05/19 10:03,"269 Forest St, Austin, TX 73301" +282999,Wired Headphones,2,11.99,11/12/19 14:09,"923 Lake St, Seattle, WA 98101" +283000,Apple Airpods Headphones,1,150,11/16/19 10:29,"378 Jefferson St, Atlanta, GA 30301" +283001,34in Ultrawide Monitor,1,379.99,11/07/19 23:48,"19 Lakeview St, Boston, MA 02215" +283002,Wired Headphones,1,11.99,11/14/19 16:15,"410 Chestnut St, Los Angeles, CA 90001" +283003,USB-C Charging Cable,1,11.95,11/07/19 21:08,"621 Center St, Portland, OR 97035" +283004,20in Monitor,1,109.99,11/15/19 16:13,"134 Hickory St, Los Angeles, CA 90001" +283005,AAA Batteries (4-pack),3,2.99,11/23/19 10:11,"889 North St, Portland, OR 97035" +283006,AA Batteries (4-pack),2,3.84,11/02/19 08:26,"252 Hill St, San Francisco, CA 94016" +283007,Lightning Charging Cable,1,14.95,11/14/19 16:15,"691 4th St, San Francisco, CA 94016" +283008,iPhone,1,700,11/17/19 00:10,"389 5th St, Portland, OR 97035" +283009,AAA Batteries (4-pack),1,2.99,11/21/19 14:08,"747 7th St, New York City, NY 10001" +283010,Wired Headphones,1,11.99,11/13/19 18:12,"504 Forest St, Atlanta, GA 30301" +283011,Wired Headphones,1,11.99,11/18/19 23:58,"439 8th St, Los Angeles, CA 90001" +283012,34in Ultrawide Monitor,1,379.99,11/19/19 07:18,"866 Ridge St, New York City, NY 10001" +283013,34in Ultrawide Monitor,1,379.99,11/07/19 21:23,"767 River St, San Francisco, CA 94016" +283014,27in 4K Gaming Monitor,1,389.99,11/25/19 14:20,"23 Meadow St, Los Angeles, CA 90001" +283015,Flatscreen TV,1,300,11/06/19 16:19,"276 Church St, Los Angeles, CA 90001" +283016,Bose SoundSport Headphones,1,99.99,11/09/19 22:00,"926 Meadow St, Seattle, WA 98101" +283017,27in 4K Gaming Monitor,1,389.99,11/09/19 07:21,"988 Wilson St, Atlanta, GA 30301" +283018,AAA Batteries (4-pack),1,2.99,11/14/19 16:13,"415 5th St, Los Angeles, CA 90001" +283019,ThinkPad Laptop,1,999.99,11/23/19 07:03,"269 Lincoln St, Los Angeles, CA 90001" +283020,Lightning Charging Cable,1,14.95,11/06/19 10:12,"886 Main St, Atlanta, GA 30301" +283021,AA Batteries (4-pack),1,3.84,11/27/19 17:34,"638 Lincoln St, San Francisco, CA 94016" +283022,Vareebadd Phone,1,400,11/27/19 22:25,"327 7th St, San Francisco, CA 94016" +283023,Lightning Charging Cable,1,14.95,11/10/19 21:11,"718 Spruce St, Atlanta, GA 30301" +283024,Wired Headphones,2,11.99,11/03/19 15:57,"194 Cedar St, Seattle, WA 98101" +283025,Lightning Charging Cable,1,14.95,11/09/19 17:15,"994 Sunset St, San Francisco, CA 94016" +283026,20in Monitor,1,109.99,11/02/19 17:35,"103 Walnut St, New York City, NY 10001" +283027,AA Batteries (4-pack),4,3.84,11/19/19 20:37,"122 Elm St, New York City, NY 10001" +283027,AAA Batteries (4-pack),2,2.99,11/19/19 20:37,"122 Elm St, New York City, NY 10001" +283028,Wired Headphones,1,11.99,11/08/19 12:29,"594 Lakeview St, San Francisco, CA 94016" +283029,AA Batteries (4-pack),1,3.84,11/16/19 21:39,"234 North St, Dallas, TX 75001" +283030,iPhone,1,700,11/25/19 20:54,"107 2nd St, San Francisco, CA 94016" +283030,Lightning Charging Cable,1,14.95,11/25/19 20:54,"107 2nd St, San Francisco, CA 94016" +283031,Wired Headphones,1,11.99,11/30/19 15:52,"139 8th St, New York City, NY 10001" +283032,Wired Headphones,1,11.99,11/13/19 06:45,"339 West St, San Francisco, CA 94016" +283033,Wired Headphones,1,11.99,11/10/19 08:48,"321 Dogwood St, San Francisco, CA 94016" +283034,AA Batteries (4-pack),2,3.84,11/04/19 14:50,"674 Sunset St, San Francisco, CA 94016" +283035,AA Batteries (4-pack),1,3.84,11/30/19 10:51,"296 Adams St, Atlanta, GA 30301" +283036,AA Batteries (4-pack),1,3.84,11/28/19 08:21,"318 Cedar St, New York City, NY 10001" +283037,USB-C Charging Cable,1,11.95,11/15/19 17:48,"569 Hickory St, Dallas, TX 75001" +283038,iPhone,1,700,11/26/19 20:24,"789 Main St, New York City, NY 10001" +283039,Bose SoundSport Headphones,1,99.99,11/16/19 08:59,"734 North St, Portland, OR 97035" +283040,USB-C Charging Cable,1,11.95,11/22/19 18:39,"998 Jackson St, Dallas, TX 75001" +283041,Apple Airpods Headphones,2,150,11/25/19 10:52,"71 West St, Boston, MA 02215" +283042,34in Ultrawide Monitor,1,379.99,11/04/19 08:53,"272 West St, Seattle, WA 98101" +283043,Vareebadd Phone,1,400,11/06/19 22:08,"35 West St, Portland, ME 04101" +283043,USB-C Charging Cable,2,11.95,11/06/19 22:08,"35 West St, Portland, ME 04101" +283044,USB-C Charging Cable,1,11.95,11/13/19 18:09,"216 Washington St, Dallas, TX 75001" +283045,AA Batteries (4-pack),1,3.84,11/19/19 23:23,"230 Chestnut St, New York City, NY 10001" +283046,20in Monitor,1,109.99,11/19/19 11:14,"241 Cedar St, Los Angeles, CA 90001" +283047,Lightning Charging Cable,1,14.95,11/10/19 07:09,"286 12th St, Los Angeles, CA 90001" +283048,Apple Airpods Headphones,1,150,11/21/19 09:29,"623 Cherry St, Los Angeles, CA 90001" +283049,Bose SoundSport Headphones,1,99.99,11/10/19 15:34,"904 13th St, New York City, NY 10001" +283050,AA Batteries (4-pack),1,3.84,11/13/19 10:58,"490 Hill St, Austin, TX 73301" +283051,Lightning Charging Cable,1,14.95,11/30/19 14:02,"409 Ridge St, Portland, OR 97035" +283052,USB-C Charging Cable,1,11.95,11/22/19 20:38,"142 Willow St, Boston, MA 02215" +283052,Flatscreen TV,1,300,11/22/19 20:38,"142 Willow St, Boston, MA 02215" +283053,Bose SoundSport Headphones,1,99.99,11/09/19 22:39,"323 Meadow St, Los Angeles, CA 90001" +283054,Google Phone,1,600,11/27/19 11:34,"445 Jefferson St, San Francisco, CA 94016" +283054,USB-C Charging Cable,1,11.95,11/27/19 11:34,"445 Jefferson St, San Francisco, CA 94016" +283055,27in FHD Monitor,1,149.99,11/22/19 09:04,"72 Johnson St, Los Angeles, CA 90001" +283056,Apple Airpods Headphones,1,150,11/06/19 05:38,"784 Ridge St, San Francisco, CA 94016" +283057,Wired Headphones,1,11.99,11/14/19 12:19,"161 Pine St, San Francisco, CA 94016" +283058,AAA Batteries (4-pack),2,2.99,11/13/19 10:44,"425 North St, Atlanta, GA 30301" +283059,AA Batteries (4-pack),1,3.84,11/24/19 22:18,"17 Washington St, New York City, NY 10001" +283060,27in FHD Monitor,1,149.99,11/28/19 20:48,"664 Spruce St, Dallas, TX 75001" +283061,34in Ultrawide Monitor,1,379.99,11/23/19 20:57,"820 Dogwood St, Seattle, WA 98101" +283061,AAA Batteries (4-pack),1,2.99,11/23/19 20:57,"820 Dogwood St, Seattle, WA 98101" +283062,Flatscreen TV,1,300,11/01/19 18:48,"26 Walnut St, Austin, TX 73301" +283063,AA Batteries (4-pack),1,3.84,11/17/19 21:51,"307 Madison St, San Francisco, CA 94016" +283064,Lightning Charging Cable,1,14.95,11/01/19 15:45,"452 Forest St, Dallas, TX 75001" +283065,AA Batteries (4-pack),2,3.84,11/25/19 21:58,"568 Wilson St, Los Angeles, CA 90001" +283066,USB-C Charging Cable,1,11.95,11/16/19 08:44,"791 Ridge St, Boston, MA 02215" +283067,Wired Headphones,1,11.99,11/13/19 14:10,"539 Madison St, Portland, OR 97035" +283068,Wired Headphones,1,11.99,11/10/19 17:13,"379 10th St, San Francisco, CA 94016" +283069,Apple Airpods Headphones,1,150,11/24/19 08:40,"812 Park St, Boston, MA 02215" +283070,AA Batteries (4-pack),1,3.84,11/13/19 14:21,"670 Washington St, San Francisco, CA 94016" +283071,Bose SoundSport Headphones,1,99.99,11/19/19 11:27,"759 Wilson St, San Francisco, CA 94016" +283072,AA Batteries (4-pack),2,3.84,11/22/19 10:39,"489 13th St, San Francisco, CA 94016" +283073,Lightning Charging Cable,1,14.95,11/17/19 13:36,"987 5th St, Boston, MA 02215" +283074,USB-C Charging Cable,1,11.95,11/14/19 16:48,"385 9th St, Portland, OR 97035" +283075,Lightning Charging Cable,1,14.95,11/04/19 16:37,"591 10th St, Portland, OR 97035" +283076,Wired Headphones,2,11.99,11/11/19 11:53,"383 10th St, Seattle, WA 98101" +283077,USB-C Charging Cable,1,11.95,11/14/19 17:02,"93 Pine St, New York City, NY 10001" +283078,USB-C Charging Cable,1,11.95,11/25/19 16:32,"864 8th St, New York City, NY 10001" +283079,Wired Headphones,1,11.99,11/26/19 10:34,"306 Church St, San Francisco, CA 94016" +283080,27in FHD Monitor,1,149.99,11/14/19 10:47,"541 Lakeview St, Boston, MA 02215" +283081,USB-C Charging Cable,1,11.95,11/24/19 02:18,"335 1st St, Atlanta, GA 30301" +283082,AA Batteries (4-pack),1,3.84,11/03/19 21:18,"334 Pine St, Los Angeles, CA 90001" +283083,27in FHD Monitor,1,149.99,11/09/19 15:42,"885 Park St, Boston, MA 02215" +283084,iPhone,1,700,11/22/19 18:29,"637 River St, San Francisco, CA 94016" +283084,Lightning Charging Cable,1,14.95,11/22/19 18:29,"637 River St, San Francisco, CA 94016" +283085,Lightning Charging Cable,1,14.95,11/04/19 19:27,"562 7th St, Austin, TX 73301" +283086,27in FHD Monitor,1,149.99,11/28/19 09:40,"854 Hickory St, New York City, NY 10001" +283087,Wired Headphones,1,11.99,11/23/19 12:08,"481 10th St, Portland, OR 97035" +283088,Wired Headphones,2,11.99,11/03/19 19:00,"643 11th St, San Francisco, CA 94016" +283089,27in 4K Gaming Monitor,1,389.99,11/23/19 20:22,"654 Johnson St, San Francisco, CA 94016" +283090,34in Ultrawide Monitor,1,379.99,11/01/19 22:35,"617 Washington St, Los Angeles, CA 90001" +283091,Lightning Charging Cable,1,14.95,11/12/19 12:34,"437 1st St, Atlanta, GA 30301" +283092,Flatscreen TV,1,300,11/06/19 10:30,"467 Willow St, Boston, MA 02215" +283093,Apple Airpods Headphones,1,150,11/02/19 09:07,"147 River St, San Francisco, CA 94016" +283094,iPhone,1,700,11/16/19 14:19,"288 Dogwood St, Boston, MA 02215" +283094,Lightning Charging Cable,1,14.95,11/16/19 14:19,"288 Dogwood St, Boston, MA 02215" +283095,Apple Airpods Headphones,1,150,11/18/19 22:03,"696 Pine St, Los Angeles, CA 90001" +283096,USB-C Charging Cable,1,11.95,11/16/19 07:43,"934 West St, New York City, NY 10001" +283097,Bose SoundSport Headphones,1,99.99,11/21/19 12:35,"765 Washington St, Dallas, TX 75001" +283098,AA Batteries (4-pack),4,3.84,11/13/19 01:14,"977 9th St, Los Angeles, CA 90001" +283099,AA Batteries (4-pack),1,3.84,11/20/19 19:00,"480 Washington St, Portland, ME 04101" +283100,USB-C Charging Cable,1,11.95,11/14/19 18:41,"203 Park St, San Francisco, CA 94016" +283101,Lightning Charging Cable,1,14.95,11/06/19 13:52,"811 Chestnut St, New York City, NY 10001" +283102,Wired Headphones,1,11.99,11/08/19 14:30,"33 Wilson St, San Francisco, CA 94016" +283103,USB-C Charging Cable,1,11.95,11/15/19 09:39,"558 Cedar St, Los Angeles, CA 90001" +283104,Lightning Charging Cable,1,14.95,11/10/19 15:16,"763 Pine St, Dallas, TX 75001" +283105,27in 4K Gaming Monitor,1,389.99,11/19/19 10:56,"196 Chestnut St, Boston, MA 02215" +283106,Lightning Charging Cable,1,14.95,11/10/19 14:36,"967 Walnut St, San Francisco, CA 94016" +283107,Wired Headphones,1,11.99,11/17/19 09:29,"170 Sunset St, Los Angeles, CA 90001" +283108,34in Ultrawide Monitor,1,379.99,11/11/19 20:52,"952 Lincoln St, Atlanta, GA 30301" +283109,AAA Batteries (4-pack),1,2.99,11/18/19 21:41,"262 11th St, Los Angeles, CA 90001" +283110,Lightning Charging Cable,1,14.95,11/24/19 00:01,"917 11th St, San Francisco, CA 94016" +283111,iPhone,1,700,11/26/19 15:40,"368 Willow St, Dallas, TX 75001" +283112,Lightning Charging Cable,1,14.95,11/09/19 19:13,"598 Center St, San Francisco, CA 94016" +283113,ThinkPad Laptop,1,999.99,11/20/19 09:54,"115 Pine St, Dallas, TX 75001" +283114,Bose SoundSport Headphones,1,99.99,11/19/19 09:14,"607 Jackson St, Portland, ME 04101" +283115,iPhone,1,700,11/25/19 13:42,"8 Hickory St, Boston, MA 02215" +283116,Macbook Pro Laptop,1,1700,11/08/19 19:20,"853 Hill St, San Francisco, CA 94016" +283117,Google Phone,1,600,11/17/19 15:59,"534 Walnut St, New York City, NY 10001" +283118,Flatscreen TV,1,300,12/01/19 00:23,"40 Park St, New York City, NY 10001" +283119,Wired Headphones,1,11.99,11/20/19 18:13,"39 Meadow St, Seattle, WA 98101" +283120,USB-C Charging Cable,1,11.95,11/06/19 22:47,"382 14th St, Boston, MA 02215" +283121,Google Phone,1,600,11/19/19 11:17,"658 Jefferson St, Portland, OR 97035" +283121,USB-C Charging Cable,1,11.95,11/19/19 11:17,"658 Jefferson St, Portland, OR 97035" +283121,Bose SoundSport Headphones,1,99.99,11/19/19 11:17,"658 Jefferson St, Portland, OR 97035" +283122,Apple Airpods Headphones,1,150,11/21/19 09:09,"813 14th St, Boston, MA 02215" +283123,Lightning Charging Cable,1,14.95,11/13/19 14:50,"223 Walnut St, Austin, TX 73301" +283124,Bose SoundSport Headphones,1,99.99,11/04/19 17:59,"116 8th St, San Francisco, CA 94016" +283124,AA Batteries (4-pack),1,3.84,11/04/19 17:59,"116 8th St, San Francisco, CA 94016" +283125,Bose SoundSport Headphones,1,99.99,11/23/19 10:24,"936 Lincoln St, Austin, TX 73301" +283126,iPhone,1,700,11/19/19 18:47,"395 Adams St, Dallas, TX 75001" +283127,27in FHD Monitor,1,149.99,11/10/19 21:35,"296 Lake St, Atlanta, GA 30301" +283128,Lightning Charging Cable,1,14.95,11/24/19 20:35,"892 Madison St, Seattle, WA 98101" +283129,AA Batteries (4-pack),1,3.84,11/01/19 20:23,"80 Adams St, San Francisco, CA 94016" +283130,Lightning Charging Cable,1,14.95,11/13/19 08:27,"260 Walnut St, San Francisco, CA 94016" +283131,Macbook Pro Laptop,1,1700,11/16/19 10:13,"39 9th St, Seattle, WA 98101" +283132,AA Batteries (4-pack),1,3.84,11/19/19 08:51,"826 Cherry St, New York City, NY 10001" +283133,USB-C Charging Cable,2,11.95,11/01/19 17:08,"201 Lake St, Los Angeles, CA 90001" +283134,27in 4K Gaming Monitor,1,389.99,11/30/19 00:48,"340 Forest St, Atlanta, GA 30301" +283135,Macbook Pro Laptop,1,1700,11/28/19 21:54,"641 4th St, Dallas, TX 75001" +283136,Macbook Pro Laptop,1,1700,11/17/19 12:40,"464 River St, San Francisco, CA 94016" +283137,AA Batteries (4-pack),1,3.84,11/13/19 17:03,"763 Main St, Portland, OR 97035" +283138,USB-C Charging Cable,1,11.95,11/01/19 15:36,"736 Center St, New York City, NY 10001" +283139,USB-C Charging Cable,1,11.95,11/23/19 13:39,"314 Spruce St, Atlanta, GA 30301" +283140,AAA Batteries (4-pack),1,2.99,11/19/19 14:16,"550 Forest St, Seattle, WA 98101" +283141,34in Ultrawide Monitor,1,379.99,11/23/19 08:30,"367 Lake St, San Francisco, CA 94016" +283142,27in FHD Monitor,1,149.99,11/18/19 23:10,"36 Hill St, Portland, OR 97035" +283142,Wired Headphones,1,11.99,11/18/19 23:10,"36 Hill St, Portland, OR 97035" +283143,Lightning Charging Cable,1,14.95,11/10/19 11:52,"925 Lincoln St, New York City, NY 10001" +283144,AAA Batteries (4-pack),1,2.99,11/01/19 06:27,"366 Park St, Atlanta, GA 30301" +283145,Flatscreen TV,1,300,11/09/19 15:55,"153 Park St, San Francisco, CA 94016" +283146,AA Batteries (4-pack),1,3.84,11/10/19 10:28,"329 Washington St, Boston, MA 02215" +283147,AAA Batteries (4-pack),1,2.99,11/27/19 22:43,"484 Cherry St, Boston, MA 02215" +283148,Wired Headphones,2,11.99,11/18/19 08:46,"786 Lakeview St, Portland, OR 97035" +283149,Lightning Charging Cable,1,14.95,11/30/19 18:02,"737 Cedar St, Dallas, TX 75001" +283150,Vareebadd Phone,1,400,11/22/19 14:49,"716 Ridge St, San Francisco, CA 94016" +283151,Wired Headphones,1,11.99,11/27/19 15:52,"272 5th St, Dallas, TX 75001" +283152,ThinkPad Laptop,1,999.99,11/22/19 21:31,"776 11th St, Portland, ME 04101" +283153,Apple Airpods Headphones,1,150,11/15/19 13:46,"20 Dogwood St, Boston, MA 02215" +283154,20in Monitor,1,109.99,11/10/19 00:25,"701 Center St, Los Angeles, CA 90001" +283155,USB-C Charging Cable,1,11.95,11/26/19 08:03,"608 Hickory St, Dallas, TX 75001" +283156,27in FHD Monitor,1,149.99,11/17/19 17:03,"879 1st St, New York City, NY 10001" +283157,Wired Headphones,1,11.99,11/06/19 19:56,"263 Johnson St, Atlanta, GA 30301" +283158,Lightning Charging Cable,1,14.95,11/14/19 16:26,"945 Hickory St, San Francisco, CA 94016" +283159,USB-C Charging Cable,1,11.95,11/19/19 11:46,"39 11th St, Los Angeles, CA 90001" +283160,Vareebadd Phone,1,400,11/12/19 07:14,"477 Lakeview St, San Francisco, CA 94016" +283161,20in Monitor,1,109.99,11/25/19 09:12,"634 Washington St, San Francisco, CA 94016" +283162,AAA Batteries (4-pack),3,2.99,11/21/19 22:42,"343 9th St, San Francisco, CA 94016" +283163,Flatscreen TV,1,300,11/29/19 19:24,"791 Maple St, Austin, TX 73301" +283164,Macbook Pro Laptop,1,1700,11/07/19 18:43,"996 Main St, Austin, TX 73301" +283165,20in Monitor,1,109.99,11/25/19 00:16,"933 12th St, Boston, MA 02215" +283166,Wired Headphones,2,11.99,11/20/19 17:52,"350 Sunset St, San Francisco, CA 94016" +283166,Lightning Charging Cable,1,14.95,11/20/19 17:52,"350 Sunset St, San Francisco, CA 94016" +283167,Wired Headphones,1,11.99,11/18/19 16:35,"550 Hill St, New York City, NY 10001" +283168,USB-C Charging Cable,1,11.95,11/09/19 12:13,"411 Willow St, San Francisco, CA 94016" +283169,Apple Airpods Headphones,1,150,11/24/19 18:15,"85 Madison St, Los Angeles, CA 90001" +283170,AA Batteries (4-pack),1,3.84,11/19/19 16:04,"368 Cherry St, San Francisco, CA 94016" +283171,Flatscreen TV,1,300,11/17/19 15:08,"600 11th St, Dallas, TX 75001" +283172,USB-C Charging Cable,1,11.95,11/08/19 10:35,"185 Lake St, Portland, OR 97035" +283173,Bose SoundSport Headphones,1,99.99,11/24/19 22:13,"462 Meadow St, Los Angeles, CA 90001" +283174,Lightning Charging Cable,1,14.95,11/06/19 06:03,"207 Chestnut St, Los Angeles, CA 90001" +283175,AAA Batteries (4-pack),2,2.99,11/09/19 08:09,"579 Dogwood St, Seattle, WA 98101" +283176,34in Ultrawide Monitor,1,379.99,11/26/19 17:56,"57 Lake St, San Francisco, CA 94016" +283176,iPhone,1,700,11/26/19 17:56,"57 Lake St, San Francisco, CA 94016" +283177,Apple Airpods Headphones,1,150,11/28/19 09:56,"153 Dogwood St, New York City, NY 10001" +283178,USB-C Charging Cable,1,11.95,11/11/19 21:14,"84 Lakeview St, Atlanta, GA 30301" +283179,Lightning Charging Cable,1,14.95,11/28/19 16:17,"936 1st St, New York City, NY 10001" +283180,USB-C Charging Cable,1,11.95,11/29/19 14:26,"296 Hill St, Los Angeles, CA 90001" +283181,Apple Airpods Headphones,1,150,11/29/19 10:18,"558 4th St, New York City, NY 10001" +283182,27in FHD Monitor,1,149.99,11/30/19 20:30,"81 2nd St, New York City, NY 10001" +283183,AA Batteries (4-pack),1,3.84,11/05/19 15:30,"566 Lake St, New York City, NY 10001" +283184,AAA Batteries (4-pack),2,2.99,11/08/19 00:26,"816 1st St, Los Angeles, CA 90001" +283185,USB-C Charging Cable,1,11.95,11/02/19 21:43,"980 Adams St, Los Angeles, CA 90001" +283186,Bose SoundSport Headphones,1,99.99,11/24/19 22:13,"724 12th St, San Francisco, CA 94016" +283187,34in Ultrawide Monitor,1,379.99,11/08/19 15:01,"301 10th St, New York City, NY 10001" +283188,AA Batteries (4-pack),1,3.84,11/13/19 08:51,"79 Maple St, Portland, OR 97035" +283189,LG Dryer,1,600.0,11/26/19 17:52,"836 13th St, San Francisco, CA 94016" +283190,Flatscreen TV,1,300,11/01/19 20:04,"264 Forest St, Atlanta, GA 30301" +283191,USB-C Charging Cable,1,11.95,11/26/19 10:29,"614 Hickory St, Atlanta, GA 30301" +283192,USB-C Charging Cable,1,11.95,11/27/19 07:12,"85 West St, San Francisco, CA 94016" +283193,Apple Airpods Headphones,1,150,11/07/19 12:46,"619 2nd St, San Francisco, CA 94016" +283194,USB-C Charging Cable,1,11.95,11/27/19 12:43,"915 Ridge St, Austin, TX 73301" +283195,Lightning Charging Cable,1,14.95,11/11/19 09:40,"850 Pine St, Portland, OR 97035" +283196,USB-C Charging Cable,2,11.95,11/29/19 18:43,"655 12th St, Los Angeles, CA 90001" +283197,AA Batteries (4-pack),3,3.84,11/29/19 20:47,"943 12th St, Atlanta, GA 30301" +283198,27in FHD Monitor,1,149.99,11/14/19 19:31,"560 8th St, San Francisco, CA 94016" +283199,Lightning Charging Cable,1,14.95,11/26/19 10:05,"216 Maple St, New York City, NY 10001" +283200,20in Monitor,1,109.99,11/23/19 00:41,"53 Wilson St, Seattle, WA 98101" +283201,Wired Headphones,1,11.99,11/26/19 08:46,"99 11th St, Dallas, TX 75001" +283202,Apple Airpods Headphones,1,150,11/02/19 21:31,"781 Lakeview St, New York City, NY 10001" +283203,AA Batteries (4-pack),1,3.84,11/12/19 21:53,"285 Spruce St, Seattle, WA 98101" +283204,Wired Headphones,1,11.99,11/10/19 17:57,"999 10th St, Los Angeles, CA 90001" +283205,Bose SoundSport Headphones,1,99.99,11/01/19 14:59,"204 Lakeview St, New York City, NY 10001" +283206,AAA Batteries (4-pack),1,2.99,11/26/19 17:18,"813 11th St, San Francisco, CA 94016" +283207,ThinkPad Laptop,1,999.99,11/14/19 09:17,"287 Wilson St, San Francisco, CA 94016" +283208,Bose SoundSport Headphones,1,99.99,11/16/19 13:12,"631 11th St, Boston, MA 02215" +283209,AAA Batteries (4-pack),1,2.99,11/19/19 13:10,"432 Pine St, San Francisco, CA 94016" +283210,USB-C Charging Cable,1,11.95,11/22/19 09:30,"657 Jefferson St, San Francisco, CA 94016" +283211,Apple Airpods Headphones,1,150,11/27/19 19:03,"705 Main St, Portland, OR 97035" +283212,Macbook Pro Laptop,1,1700,11/24/19 21:36,"517 10th St, San Francisco, CA 94016" +283213,AA Batteries (4-pack),2,3.84,11/01/19 13:41,"295 West St, New York City, NY 10001" +283214,USB-C Charging Cable,1,11.95,11/30/19 00:10,"387 2nd St, Atlanta, GA 30301" +283215,USB-C Charging Cable,1,11.95,11/01/19 08:15,"656 Forest St, New York City, NY 10001" +283216,Flatscreen TV,1,300,11/07/19 15:27,"700 13th St, San Francisco, CA 94016" +283217,Apple Airpods Headphones,1,150,11/06/19 09:32,"577 13th St, Portland, ME 04101" +283218,USB-C Charging Cable,1,11.95,11/19/19 21:15,"363 South St, Austin, TX 73301" +283219,Bose SoundSport Headphones,1,99.99,11/20/19 14:06,"750 Forest St, Los Angeles, CA 90001" +283220,Bose SoundSport Headphones,1,99.99,11/21/19 04:32,"726 10th St, Atlanta, GA 30301" +283221,Apple Airpods Headphones,1,150,11/30/19 12:47,"691 Jefferson St, Atlanta, GA 30301" +283222,AAA Batteries (4-pack),1,2.99,11/02/19 12:35,"198 Pine St, Atlanta, GA 30301" +283223,Bose SoundSport Headphones,1,99.99,11/06/19 01:28,"641 13th St, Los Angeles, CA 90001" +283224,USB-C Charging Cable,1,11.95,11/09/19 23:02,"343 West St, San Francisco, CA 94016" +283225,Wired Headphones,1,11.99,11/17/19 19:10,"274 Elm St, San Francisco, CA 94016" +283226,Flatscreen TV,1,300,11/12/19 10:30,"458 9th St, New York City, NY 10001" +283227,ThinkPad Laptop,1,999.99,11/22/19 10:39,"175 9th St, Dallas, TX 75001" +283228,Wired Headphones,2,11.99,11/02/19 13:48,"559 Highland St, New York City, NY 10001" +283229,27in FHD Monitor,1,149.99,11/11/19 11:19,"630 Center St, Dallas, TX 75001" +283230,AA Batteries (4-pack),1,3.84,11/29/19 17:20,"610 Cherry St, Los Angeles, CA 90001" +283231,27in FHD Monitor,1,149.99,11/04/19 18:56,"715 Cedar St, Portland, ME 04101" +283232,Lightning Charging Cable,1,14.95,11/15/19 20:03,"932 Hickory St, Austin, TX 73301" +283233,AAA Batteries (4-pack),1,2.99,11/17/19 13:06,"858 Lakeview St, New York City, NY 10001" +283234,34in Ultrawide Monitor,1,379.99,11/24/19 20:36,"308 Dogwood St, Los Angeles, CA 90001" +283235,AA Batteries (4-pack),2,3.84,11/22/19 11:45,"259 Church St, Los Angeles, CA 90001" +283236,Google Phone,1,600,11/15/19 23:10,"831 5th St, Atlanta, GA 30301" +283237,34in Ultrawide Monitor,1,379.99,11/16/19 11:09,"838 Pine St, San Francisco, CA 94016" +283238,Apple Airpods Headphones,1,150,11/19/19 23:03,"317 1st St, Dallas, TX 75001" +283239,Apple Airpods Headphones,1,150,11/08/19 17:32,"684 Cherry St, Boston, MA 02215" +283240,27in 4K Gaming Monitor,1,389.99,11/20/19 08:02,"112 Madison St, Austin, TX 73301" +283241,iPhone,1,700,11/27/19 13:15,"786 8th St, San Francisco, CA 94016" +283242,ThinkPad Laptop,1,999.99,11/27/19 22:21,"385 6th St, Portland, ME 04101" +283243,USB-C Charging Cable,1,11.95,11/06/19 20:49,"171 Sunset St, San Francisco, CA 94016" +283244,Macbook Pro Laptop,1,1700,11/26/19 23:13,"719 10th St, Seattle, WA 98101" +283245,USB-C Charging Cable,1,11.95,11/14/19 19:05,"755 Main St, Boston, MA 02215" +283246,Apple Airpods Headphones,1,150,11/24/19 14:34,"134 Lincoln St, Los Angeles, CA 90001" +283247,Macbook Pro Laptop,1,1700,11/16/19 11:22,"652 Walnut St, Los Angeles, CA 90001" +283248,USB-C Charging Cable,1,11.95,11/15/19 18:47,"615 Johnson St, Boston, MA 02215" +283249,iPhone,1,700,11/21/19 18:44,"171 7th St, Portland, ME 04101" +283249,Lightning Charging Cable,1,14.95,11/21/19 18:44,"171 7th St, Portland, ME 04101" +283250,Wired Headphones,1,11.99,11/12/19 09:29,"367 Main St, Seattle, WA 98101" +283251,Vareebadd Phone,1,400,11/12/19 00:17,"981 Adams St, New York City, NY 10001" +283252,AA Batteries (4-pack),1,3.84,11/26/19 15:34,"339 11th St, San Francisco, CA 94016" +283253,AA Batteries (4-pack),2,3.84,11/03/19 20:05,"39 11th St, San Francisco, CA 94016" +283254,Bose SoundSport Headphones,1,99.99,11/19/19 13:12,"716 Maple St, New York City, NY 10001" +283255,Lightning Charging Cable,1,14.95,11/05/19 11:34,"562 Center St, San Francisco, CA 94016" +283256,ThinkPad Laptop,1,999.99,11/20/19 20:01,"83 Jackson St, Los Angeles, CA 90001" +283257,34in Ultrawide Monitor,1,379.99,11/02/19 09:00,"852 Elm St, New York City, NY 10001" +283258,27in FHD Monitor,1,149.99,11/08/19 12:09,"112 5th St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +283259,Wired Headphones,1,11.99,11/08/19 12:45,"318 Adams St, Dallas, TX 75001" +283260,Bose SoundSport Headphones,1,99.99,11/16/19 13:29,"576 Chestnut St, Boston, MA 02215" +283261,Google Phone,1,600,11/24/19 21:05,"737 South St, Dallas, TX 75001" +283262,Lightning Charging Cable,2,14.95,11/02/19 21:15,"58 Church St, San Francisco, CA 94016" +283263,Lightning Charging Cable,1,14.95,11/27/19 19:22,"360 Spruce St, San Francisco, CA 94016" +283264,27in FHD Monitor,1,149.99,11/14/19 19:57,"736 Sunset St, Dallas, TX 75001" +283265,AA Batteries (4-pack),1,3.84,11/13/19 12:15,"489 9th St, Los Angeles, CA 90001" +283266,USB-C Charging Cable,2,11.95,11/19/19 10:40,"925 Washington St, San Francisco, CA 94016" +283267,Wired Headphones,1,11.99,11/09/19 09:50,"341 14th St, San Francisco, CA 94016" +283268,Google Phone,1,600,11/02/19 18:18,"590 Cedar St, San Francisco, CA 94016" +283269,Wired Headphones,1,11.99,11/02/19 00:55,"757 Walnut St, Los Angeles, CA 90001" +283270,34in Ultrawide Monitor,1,379.99,11/10/19 18:13,"757 Willow St, New York City, NY 10001" +283271,AA Batteries (4-pack),2,3.84,11/23/19 16:46,"478 Park St, Atlanta, GA 30301" +283272,Apple Airpods Headphones,1,150,11/23/19 17:34,"266 7th St, New York City, NY 10001" +283273,Wired Headphones,1,11.99,11/20/19 23:02,"64 11th St, Boston, MA 02215" +283274,Apple Airpods Headphones,1,150,11/23/19 10:12,"774 11th St, Los Angeles, CA 90001" +283275,Apple Airpods Headphones,1,150,11/12/19 16:09,"241 5th St, Dallas, TX 75001" +283276,ThinkPad Laptop,1,999.99,11/07/19 09:03,"849 14th St, Atlanta, GA 30301" +283277,27in FHD Monitor,1,149.99,11/17/19 15:42,"481 Chestnut St, San Francisco, CA 94016" +283278,USB-C Charging Cable,3,11.95,11/19/19 17:03,"369 Park St, San Francisco, CA 94016" +283279,AAA Batteries (4-pack),1,2.99,11/30/19 16:18,"769 2nd St, Boston, MA 02215" +283280,Apple Airpods Headphones,1,150,11/13/19 19:33,"788 South St, Seattle, WA 98101" +283281,iPhone,1,700,11/30/19 10:58,"761 South St, New York City, NY 10001" +283282,34in Ultrawide Monitor,1,379.99,11/21/19 23:18,"254 Cherry St, Seattle, WA 98101" +283283,Wired Headphones,1,11.99,11/27/19 09:47,"560 Adams St, Dallas, TX 75001" +283284,Wired Headphones,1,11.99,11/13/19 15:07,"329 Spruce St, San Francisco, CA 94016" +283285,Macbook Pro Laptop,1,1700,11/02/19 13:49,"911 Meadow St, San Francisco, CA 94016" +283286,AAA Batteries (4-pack),1,2.99,11/22/19 21:38,"816 7th St, Los Angeles, CA 90001" +283287,Bose SoundSport Headphones,1,99.99,11/11/19 11:14,"256 Main St, San Francisco, CA 94016" +283288,Lightning Charging Cable,1,14.95,11/30/19 23:48,"578 14th St, Dallas, TX 75001" +283289,Macbook Pro Laptop,1,1700,11/27/19 17:32,"330 Center St, Austin, TX 73301" +283290,Bose SoundSport Headphones,1,99.99,11/14/19 06:12,"473 7th St, New York City, NY 10001" +283291,USB-C Charging Cable,1,11.95,11/06/19 07:36,"769 Center St, San Francisco, CA 94016" +283292,Flatscreen TV,1,300,11/27/19 17:00,"770 North St, New York City, NY 10001" +283293,Wired Headphones,1,11.99,11/26/19 20:01,"687 13th St, Dallas, TX 75001" +283294,Wired Headphones,1,11.99,11/16/19 11:22,"385 Hill St, San Francisco, CA 94016" +283295,AAA Batteries (4-pack),2,2.99,11/28/19 23:12,"483 Willow St, San Francisco, CA 94016" +283296,34in Ultrawide Monitor,1,379.99,11/28/19 10:44,"446 Jackson St, New York City, NY 10001" +283297,Flatscreen TV,1,300,11/29/19 19:46,"596 Willow St, Atlanta, GA 30301" +283298,27in FHD Monitor,1,149.99,11/29/19 20:44,"917 9th St, Boston, MA 02215" +283299,Lightning Charging Cable,1,14.95,11/18/19 00:19,"450 13th St, Los Angeles, CA 90001" +283300,AAA Batteries (4-pack),4,2.99,11/12/19 15:23,"678 Main St, Dallas, TX 75001" +283301,Apple Airpods Headphones,1,150,11/24/19 00:16,"179 Meadow St, Austin, TX 73301" +283302,Apple Airpods Headphones,1,150,11/19/19 23:51,"790 Spruce St, Portland, ME 04101" +283303,ThinkPad Laptop,1,999.99,11/12/19 11:09,"841 4th St, Austin, TX 73301" +283304,Vareebadd Phone,1,400,11/21/19 16:52,"600 Dogwood St, San Francisco, CA 94016" +283305,USB-C Charging Cable,1,11.95,11/17/19 15:26,"218 Sunset St, San Francisco, CA 94016" +283306,Wired Headphones,2,11.99,11/13/19 17:31,"899 14th St, San Francisco, CA 94016" +283307,AA Batteries (4-pack),1,3.84,11/28/19 16:40,"317 Lakeview St, Boston, MA 02215" +283308,USB-C Charging Cable,1,11.95,11/21/19 12:24,"521 West St, Boston, MA 02215" +283309,AA Batteries (4-pack),1,3.84,11/08/19 21:53,"803 Cherry St, New York City, NY 10001" +283310,Lightning Charging Cable,1,14.95,11/30/19 17:44,"200 5th St, Dallas, TX 75001" +283311,AAA Batteries (4-pack),1,2.99,11/01/19 18:29,"46 Maple St, Boston, MA 02215" +283312,20in Monitor,1,109.99,11/09/19 12:44,"388 Dogwood St, San Francisco, CA 94016" +283313,Google Phone,1,600,11/08/19 18:04,"731 Church St, Seattle, WA 98101" +283314,Apple Airpods Headphones,1,150,11/03/19 20:03,"441 Washington St, Dallas, TX 75001" +283315,AAA Batteries (4-pack),1,2.99,11/08/19 16:13,"368 Main St, Boston, MA 02215" +283316,AAA Batteries (4-pack),1,2.99,11/11/19 19:23,"758 Highland St, Dallas, TX 75001" +283317,Macbook Pro Laptop,1,1700,11/29/19 21:00,"46 North St, Dallas, TX 75001" +283318,iPhone,1,700,11/06/19 09:02,"70 Dogwood St, Atlanta, GA 30301" +283318,Wired Headphones,1,11.99,11/06/19 09:02,"70 Dogwood St, Atlanta, GA 30301" +283319,Apple Airpods Headphones,1,150,11/09/19 09:02,"12 11th St, San Francisco, CA 94016" +283320,AA Batteries (4-pack),1,3.84,11/14/19 02:28,"895 Center St, Dallas, TX 75001" +283321,Wired Headphones,1,11.99,11/18/19 08:56,"80 Adams St, Austin, TX 73301" +283322,USB-C Charging Cable,1,11.95,11/27/19 19:01,"442 River St, Los Angeles, CA 90001" +283323,Bose SoundSport Headphones,1,99.99,11/10/19 16:57,"172 Highland St, Boston, MA 02215" +283324,27in 4K Gaming Monitor,1,389.99,11/19/19 06:12,"705 River St, Seattle, WA 98101" +283325,Bose SoundSport Headphones,1,99.99,11/22/19 11:07,"819 Pine St, Dallas, TX 75001" +283326,Lightning Charging Cable,1,14.95,11/17/19 12:41,"14 1st St, San Francisco, CA 94016" +283327,AAA Batteries (4-pack),1,2.99,11/10/19 23:03,"914 Pine St, New York City, NY 10001" +283328,Flatscreen TV,1,300,11/23/19 23:14,"243 Forest St, San Francisco, CA 94016" +283329,USB-C Charging Cable,1,11.95,11/09/19 06:23,"303 West St, Atlanta, GA 30301" +283330,iPhone,1,700,11/06/19 12:48,"273 4th St, New York City, NY 10001" +283331,Google Phone,1,600,11/02/19 16:54,"44 Hickory St, Los Angeles, CA 90001" +283332,Wired Headphones,1,11.99,11/10/19 07:39,"72 7th St, New York City, NY 10001" +283333,USB-C Charging Cable,1,11.95,11/29/19 22:10,"929 Walnut St, Seattle, WA 98101" +283334,20in Monitor,1,109.99,11/18/19 23:09,"390 Cherry St, Boston, MA 02215" +283335,Google Phone,1,600,11/08/19 15:43,"631 Washington St, Austin, TX 73301" +283336,Apple Airpods Headphones,1,150,11/11/19 18:04,"445 Lake St, San Francisco, CA 94016" +283337,AAA Batteries (4-pack),4,2.99,11/10/19 21:39,"599 Meadow St, Dallas, TX 75001" +283338,ThinkPad Laptop,1,999.99,11/26/19 23:00,"113 7th St, New York City, NY 10001" +283339,Wired Headphones,1,11.99,11/16/19 18:51,"53 4th St, Dallas, TX 75001" +283340,Apple Airpods Headphones,1,150,11/02/19 21:42,"154 West St, Seattle, WA 98101" +283341,AA Batteries (4-pack),1,3.84,11/12/19 18:01,"702 West St, Los Angeles, CA 90001" +283342,Apple Airpods Headphones,1,150,11/10/19 21:45,"244 Chestnut St, Austin, TX 73301" +283343,AAA Batteries (4-pack),1,2.99,11/08/19 11:58,"507 Madison St, Seattle, WA 98101" +283344,Apple Airpods Headphones,1,150,11/17/19 22:50,"762 Ridge St, Boston, MA 02215" +283345,Wired Headphones,1,11.99,11/19/19 23:59,"322 Lake St, Austin, TX 73301" +283346,Lightning Charging Cable,1,14.95,11/12/19 20:04,"370 9th St, New York City, NY 10001" +283347,AAA Batteries (4-pack),1,2.99,11/20/19 18:30,"539 Cedar St, New York City, NY 10001" +283348,AA Batteries (4-pack),1,3.84,11/16/19 03:57,"89 9th St, Seattle, WA 98101" +283349,AAA Batteries (4-pack),1,2.99,11/10/19 10:49,"882 10th St, Seattle, WA 98101" +283350,Lightning Charging Cable,1,14.95,11/14/19 09:58,"772 14th St, New York City, NY 10001" +283351,Lightning Charging Cable,1,14.95,11/24/19 15:44,"142 Wilson St, Los Angeles, CA 90001" +283352,AA Batteries (4-pack),1,3.84,11/19/19 11:30,"568 1st St, Seattle, WA 98101" +283352,AA Batteries (4-pack),1,3.84,11/19/19 11:30,"568 1st St, Seattle, WA 98101" +283353,iPhone,1,700,11/27/19 10:01,"526 5th St, Portland, OR 97035" +283354,USB-C Charging Cable,1,11.95,11/17/19 20:26,"798 Spruce St, San Francisco, CA 94016" +283355,AAA Batteries (4-pack),1,2.99,11/14/19 15:03,"158 Highland St, San Francisco, CA 94016" +283356,Wired Headphones,1,11.99,11/16/19 18:24,"894 11th St, Boston, MA 02215" +283357,AAA Batteries (4-pack),1,2.99,11/07/19 23:57,"497 Adams St, San Francisco, CA 94016" +283358,34in Ultrawide Monitor,1,379.99,11/02/19 14:51,"696 Lake St, Boston, MA 02215" +283359,AAA Batteries (4-pack),1,2.99,11/21/19 13:59,"490 Maple St, Los Angeles, CA 90001" +283360,Lightning Charging Cable,1,14.95,11/17/19 08:27,"614 Johnson St, Los Angeles, CA 90001" +283361,Vareebadd Phone,1,400,11/08/19 13:57,"576 Church St, Portland, OR 97035" +283361,Wired Headphones,1,11.99,11/08/19 13:57,"576 Church St, Portland, OR 97035" +283362,Wired Headphones,1,11.99,11/03/19 16:16,"232 Sunset St, Boston, MA 02215" +283363,27in 4K Gaming Monitor,1,389.99,11/11/19 22:57,"74 Spruce St, Atlanta, GA 30301" +283364,ThinkPad Laptop,1,999.99,11/23/19 10:41,"132 Hickory St, Portland, OR 97035" +283365,Apple Airpods Headphones,1,150,11/18/19 09:25,"858 Forest St, Los Angeles, CA 90001" +283366,Lightning Charging Cable,1,14.95,11/08/19 12:59,"310 North St, Seattle, WA 98101" +283367,AAA Batteries (4-pack),3,2.99,11/15/19 16:32,"565 Jefferson St, New York City, NY 10001" +283368,Apple Airpods Headphones,1,150,11/07/19 13:43,"691 Cedar St, Austin, TX 73301" +283369,Lightning Charging Cable,1,14.95,11/18/19 17:36,"324 Walnut St, San Francisco, CA 94016" +283370,Wired Headphones,1,11.99,11/04/19 14:17,"852 Elm St, Los Angeles, CA 90001" +283371,Apple Airpods Headphones,1,150,11/17/19 19:27,"370 4th St, Dallas, TX 75001" +283372,USB-C Charging Cable,1,11.95,11/27/19 08:48,"586 Willow St, Portland, OR 97035" +283373,20in Monitor,1,109.99,11/16/19 10:27,"466 Sunset St, Seattle, WA 98101" +283374,AAA Batteries (4-pack),1,2.99,11/06/19 15:53,"487 Hill St, Dallas, TX 75001" +283375,Wired Headphones,1,11.99,11/27/19 08:33,"224 Elm St, San Francisco, CA 94016" +283376,USB-C Charging Cable,1,11.95,11/14/19 21:16,"36 Meadow St, Dallas, TX 75001" +283377,27in FHD Monitor,1,149.99,11/04/19 20:19,"578 Washington St, San Francisco, CA 94016" +283378,AA Batteries (4-pack),2,3.84,11/29/19 09:52,"439 14th St, Atlanta, GA 30301" +283379,AAA Batteries (4-pack),3,2.99,11/26/19 22:36,"862 Willow St, San Francisco, CA 94016" +283380,ThinkPad Laptop,1,999.99,11/14/19 19:23,"511 Adams St, Boston, MA 02215" +283381,AAA Batteries (4-pack),1,2.99,11/10/19 23:35,"759 North St, San Francisco, CA 94016" +283382,AAA Batteries (4-pack),1,2.99,11/23/19 00:41,"793 Dogwood St, Los Angeles, CA 90001" +283383,27in FHD Monitor,1,149.99,11/28/19 07:16,"968 Elm St, Los Angeles, CA 90001" +283384,Macbook Pro Laptop,1,1700,11/29/19 10:49,"797 Spruce St, San Francisco, CA 94016" +283385,Lightning Charging Cable,1,14.95,11/03/19 13:50,"365 Washington St, Portland, OR 97035" +283386,Lightning Charging Cable,1,14.95,11/23/19 15:26,"593 14th St, San Francisco, CA 94016" +283387,Lightning Charging Cable,1,14.95,11/23/19 12:04,"894 Maple St, Boston, MA 02215" +283388,27in 4K Gaming Monitor,1,389.99,11/15/19 05:41,"898 River St, Seattle, WA 98101" +283389,Lightning Charging Cable,1,14.95,11/11/19 17:48,"99 14th St, San Francisco, CA 94016" +283390,27in FHD Monitor,1,149.99,11/26/19 10:53,"340 Park St, New York City, NY 10001" +283391,AA Batteries (4-pack),1,3.84,11/01/19 14:47,"924 Maple St, Portland, OR 97035" +283392,Bose SoundSport Headphones,1,99.99,11/01/19 08:01,"801 Lakeview St, Austin, TX 73301" +283393,AA Batteries (4-pack),1,3.84,11/14/19 23:22,"906 Jefferson St, San Francisco, CA 94016" +283394,AA Batteries (4-pack),1,3.84,11/29/19 21:57,"178 Meadow St, Dallas, TX 75001" +283395,34in Ultrawide Monitor,1,379.99,11/03/19 09:21,"681 5th St, San Francisco, CA 94016" +283396,USB-C Charging Cable,1,11.95,11/27/19 20:09,"414 Jackson St, San Francisco, CA 94016" +283397,AAA Batteries (4-pack),1,2.99,11/28/19 20:59,"705 Willow St, Boston, MA 02215" +283398,Bose SoundSport Headphones,1,99.99,11/02/19 21:09,"514 Lake St, San Francisco, CA 94016" +283399,Wired Headphones,1,11.99,11/20/19 22:04,"177 13th St, Los Angeles, CA 90001" +283400,Apple Airpods Headphones,1,150,11/13/19 19:46,"294 Hill St, Los Angeles, CA 90001" +283401,Bose SoundSport Headphones,1,99.99,11/07/19 10:28,"413 12th St, Los Angeles, CA 90001" +283402,ThinkPad Laptop,1,999.99,11/14/19 16:49,"576 Forest St, Austin, TX 73301" +283403,ThinkPad Laptop,1,999.99,11/03/19 23:37,"439 5th St, Atlanta, GA 30301" +283404,27in 4K Gaming Monitor,1,389.99,11/13/19 09:27,"531 5th St, Portland, OR 97035" +283405,Bose SoundSport Headphones,1,99.99,11/14/19 12:05,"999 Johnson St, Atlanta, GA 30301" +283406,Bose SoundSport Headphones,2,99.99,11/15/19 16:47,"153 Walnut St, San Francisco, CA 94016" +283407,Apple Airpods Headphones,1,150,11/07/19 11:50,"912 Center St, San Francisco, CA 94016" +283408,Lightning Charging Cable,1,14.95,11/28/19 15:03,"806 Pine St, San Francisco, CA 94016" +283409,AAA Batteries (4-pack),1,2.99,11/16/19 18:06,"450 Johnson St, Boston, MA 02215" +283410,Lightning Charging Cable,2,14.95,11/02/19 10:37,"72 Lake St, San Francisco, CA 94016" +283411,AA Batteries (4-pack),1,3.84,11/19/19 19:10,"550 6th St, New York City, NY 10001" +283412,Bose SoundSport Headphones,1,99.99,11/17/19 22:18,"312 6th St, New York City, NY 10001" +283413,Apple Airpods Headphones,1,150,11/16/19 10:47,"646 Hickory St, Seattle, WA 98101" +283414,Lightning Charging Cable,1,14.95,11/13/19 15:03,"571 7th St, Los Angeles, CA 90001" +283415,27in 4K Gaming Monitor,1,389.99,11/20/19 19:22,"79 Walnut St, Boston, MA 02215" +283416,27in FHD Monitor,1,149.99,11/24/19 18:00,"512 Main St, San Francisco, CA 94016" +283417,Lightning Charging Cable,1,14.95,11/26/19 20:04,"243 Lake St, Atlanta, GA 30301" +283418,Google Phone,1,600,11/29/19 16:00,"936 Lake St, San Francisco, CA 94016" +283419,Bose SoundSport Headphones,1,99.99,11/10/19 22:16,"42 Adams St, Boston, MA 02215" +283420,ThinkPad Laptop,1,999.99,11/10/19 21:39,"883 Lake St, Dallas, TX 75001" +283421,USB-C Charging Cable,1,11.95,11/18/19 12:22,"236 Highland St, San Francisco, CA 94016" +283422,Wired Headphones,2,11.99,11/15/19 11:30,"834 Hickory St, New York City, NY 10001" +283423,Apple Airpods Headphones,1,150,11/18/19 17:10,"700 Park St, San Francisco, CA 94016" +283424,Macbook Pro Laptop,1,1700,11/03/19 15:01,"421 9th St, Seattle, WA 98101" +283425,Wired Headphones,1,11.99,11/16/19 11:29,"265 Pine St, Dallas, TX 75001" +283426,Apple Airpods Headphones,1,150,11/07/19 20:43,"1 Dogwood St, Seattle, WA 98101" +283427,Wired Headphones,1,11.99,11/13/19 11:53,"33 2nd St, Atlanta, GA 30301" +283428,Apple Airpods Headphones,1,150,11/06/19 13:48,"154 8th St, Portland, ME 04101" +283429,Lightning Charging Cable,1,14.95,11/08/19 10:25,"818 Cherry St, Los Angeles, CA 90001" +283429,Apple Airpods Headphones,1,150,11/08/19 10:25,"818 Cherry St, Los Angeles, CA 90001" +283430,USB-C Charging Cable,1,11.95,11/21/19 11:20,"802 Meadow St, San Francisco, CA 94016" +283431,AAA Batteries (4-pack),1,2.99,11/17/19 10:20,"413 12th St, San Francisco, CA 94016" +283432,27in FHD Monitor,1,149.99,11/28/19 08:30,"690 West St, San Francisco, CA 94016" +283433,Vareebadd Phone,1,400,11/19/19 15:46,"668 Lake St, Portland, ME 04101" +283434,Macbook Pro Laptop,1,1700,11/08/19 16:21,"593 Jackson St, Austin, TX 73301" +283435,AA Batteries (4-pack),2,3.84,11/13/19 13:20,"753 4th St, Seattle, WA 98101" +283436,Apple Airpods Headphones,1,150,11/18/19 16:37,"851 Dogwood St, Boston, MA 02215" +283437,iPhone,1,700,11/16/19 10:30,"659 12th St, New York City, NY 10001" +283437,Bose SoundSport Headphones,1,99.99,11/16/19 10:30,"659 12th St, New York City, NY 10001" +283438,Flatscreen TV,1,300,11/09/19 22:34,"158 Lakeview St, San Francisco, CA 94016" +283439,AAA Batteries (4-pack),1,2.99,11/29/19 18:31,"159 10th St, Atlanta, GA 30301" +283440,Macbook Pro Laptop,1,1700,11/11/19 19:02,"761 Highland St, New York City, NY 10001" +283441,Macbook Pro Laptop,1,1700,11/14/19 17:08,"836 Forest St, San Francisco, CA 94016" +283441,Lightning Charging Cable,1,14.95,11/14/19 17:08,"836 Forest St, San Francisco, CA 94016" +283442,iPhone,1,700,11/23/19 23:08,"793 Elm St, Dallas, TX 75001" +283442,Wired Headphones,1,11.99,11/23/19 23:08,"793 Elm St, Dallas, TX 75001" +283443,iPhone,1,700,11/14/19 08:49,"895 Main St, Boston, MA 02215" +283444,34in Ultrawide Monitor,1,379.99,11/14/19 19:19,"615 13th St, Portland, OR 97035" +283445,AAA Batteries (4-pack),1,2.99,11/29/19 09:57,"297 Adams St, San Francisco, CA 94016" +283446,Wired Headphones,1,11.99,11/04/19 21:17,"435 Cherry St, Los Angeles, CA 90001" +283447,Lightning Charging Cable,1,14.95,11/07/19 07:44,"997 4th St, Los Angeles, CA 90001" +283448,27in FHD Monitor,1,149.99,11/07/19 13:40,"597 Maple St, New York City, NY 10001" +283449,Flatscreen TV,1,300,11/09/19 20:04,"505 Madison St, Portland, ME 04101" +283450,20in Monitor,1,109.99,11/13/19 01:17,"977 Meadow St, Los Angeles, CA 90001" +283451,ThinkPad Laptop,1,999.99,11/14/19 15:07,"51 Sunset St, San Francisco, CA 94016" +283452,AA Batteries (4-pack),1,3.84,11/08/19 13:05,"447 River St, Atlanta, GA 30301" +283453,Lightning Charging Cable,1,14.95,11/02/19 04:50,"754 11th St, Dallas, TX 75001" +283454,Vareebadd Phone,1,400,11/09/19 10:18,"123 Jackson St, Los Angeles, CA 90001" +283454,Wired Headphones,1,11.99,11/09/19 10:18,"123 Jackson St, Los Angeles, CA 90001" +283455,Wired Headphones,1,11.99,11/23/19 11:46,"683 1st St, San Francisco, CA 94016" +283456,Wired Headphones,1,11.99,11/02/19 00:29,"488 Washington St, Los Angeles, CA 90001" +283457,34in Ultrawide Monitor,1,379.99,11/06/19 10:04,"335 Lincoln St, Los Angeles, CA 90001" +283458,USB-C Charging Cable,1,11.95,11/01/19 17:16,"763 4th St, Seattle, WA 98101" +283459,Google Phone,1,600,11/11/19 23:29,"690 2nd St, San Francisco, CA 94016" +283460,AAA Batteries (4-pack),1,2.99,11/25/19 12:23,"128 Jefferson St, New York City, NY 10001" +283461,iPhone,1,700,11/28/19 18:56,"723 Jefferson St, Atlanta, GA 30301" +283461,Apple Airpods Headphones,1,150,11/28/19 18:56,"723 Jefferson St, Atlanta, GA 30301" +283462,USB-C Charging Cable,1,11.95,11/18/19 02:56,"804 Dogwood St, San Francisco, CA 94016" +283463,AAA Batteries (4-pack),5,2.99,11/05/19 13:26,"54 Lake St, Boston, MA 02215" +283464,Bose SoundSport Headphones,1,99.99,11/21/19 16:34,"571 Hickory St, Austin, TX 73301" +283465,USB-C Charging Cable,1,11.95,11/27/19 20:08,"665 Main St, Dallas, TX 75001" +283466,34in Ultrawide Monitor,1,379.99,11/05/19 15:08,"777 Adams St, Seattle, WA 98101" +283467,AA Batteries (4-pack),2,3.84,11/13/19 19:37,"902 4th St, San Francisco, CA 94016" +283468,USB-C Charging Cable,1,11.95,11/06/19 01:21,"273 7th St, Atlanta, GA 30301" +283469,ThinkPad Laptop,1,999.99,11/21/19 12:02,"86 1st St, San Francisco, CA 94016" +283470,AAA Batteries (4-pack),4,2.99,11/21/19 20:52,"725 Center St, San Francisco, CA 94016" +283471,AA Batteries (4-pack),2,3.84,11/11/19 18:52,"888 Sunset St, San Francisco, CA 94016" +283472,Wired Headphones,1,11.99,11/30/19 15:01,"712 11th St, Portland, OR 97035" +283473,Bose SoundSport Headphones,1,99.99,11/05/19 16:41,"827 Hickory St, Dallas, TX 75001" +283474,ThinkPad Laptop,1,999.99,11/29/19 21:36,"303 Cherry St, Dallas, TX 75001" +283475,USB-C Charging Cable,1,11.95,11/07/19 14:04,"43 Spruce St, Seattle, WA 98101" +283476,Wired Headphones,1,11.99,11/10/19 09:48,"137 Center St, Austin, TX 73301" +283477,AA Batteries (4-pack),2,3.84,11/26/19 12:48,"910 11th St, Austin, TX 73301" +283478,iPhone,1,700,11/30/19 18:58,"910 Wilson St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +283479,Wired Headphones,1,11.99,11/08/19 20:06,"900 Cherry St, Austin, TX 73301" +283480,Wired Headphones,1,11.99,11/22/19 17:32,"643 1st St, Boston, MA 02215" +283481,Wired Headphones,1,11.99,11/19/19 11:33,"593 Highland St, San Francisco, CA 94016" +283482,Wired Headphones,1,11.99,11/08/19 04:12,"180 North St, Austin, TX 73301" +283483,Lightning Charging Cable,1,14.95,11/29/19 13:29,"329 Pine St, Portland, ME 04101" +283484,Macbook Pro Laptop,1,1700,11/19/19 12:11,"120 12th St, Seattle, WA 98101" +283485,AAA Batteries (4-pack),1,2.99,11/21/19 16:31,"426 Elm St, Boston, MA 02215" +283486,Lightning Charging Cable,1,14.95,11/27/19 20:56,"645 Center St, Los Angeles, CA 90001" +283487,Lightning Charging Cable,2,14.95,11/28/19 11:14,"304 Lake St, San Francisco, CA 94016" +283488,AAA Batteries (4-pack),1,2.99,11/03/19 07:40,"53 Lakeview St, Los Angeles, CA 90001" +283489,AAA Batteries (4-pack),1,2.99,11/03/19 13:54,"110 South St, Atlanta, GA 30301" +283490,USB-C Charging Cable,1,11.95,11/23/19 12:59,"323 Forest St, New York City, NY 10001" +283491,AA Batteries (4-pack),2,3.84,11/04/19 12:51,"453 5th St, San Francisco, CA 94016" +283492,Apple Airpods Headphones,1,150,11/12/19 06:37,"182 Hill St, San Francisco, CA 94016" +283493,Macbook Pro Laptop,1,1700,11/15/19 21:06,"771 Willow St, San Francisco, CA 94016" +283494,AAA Batteries (4-pack),1,2.99,11/26/19 02:23,"758 4th St, Los Angeles, CA 90001" +283495,27in FHD Monitor,1,149.99,11/05/19 22:20,"19 Lakeview St, Dallas, TX 75001" +283496,Flatscreen TV,1,300,11/19/19 14:37,"433 Sunset St, Boston, MA 02215" +283497,Flatscreen TV,1,300,11/08/19 13:46,"273 Center St, Los Angeles, CA 90001" +283498,AAA Batteries (4-pack),1,2.99,11/08/19 17:25,"119 Highland St, Atlanta, GA 30301" +283499,AA Batteries (4-pack),1,3.84,11/23/19 13:06,"952 14th St, New York City, NY 10001" +283500,Bose SoundSport Headphones,2,99.99,11/25/19 16:14,"350 Sunset St, Boston, MA 02215" +283501,20in Monitor,1,109.99,11/25/19 02:02,"864 Meadow St, San Francisco, CA 94016" +283502,Flatscreen TV,1,300,11/26/19 10:34,"69 6th St, Dallas, TX 75001" +283503,AAA Batteries (4-pack),2,2.99,11/10/19 10:15,"279 Jackson St, Boston, MA 02215" +283504,Apple Airpods Headphones,1,150,11/27/19 12:33,"137 Forest St, San Francisco, CA 94016" +283505,ThinkPad Laptop,1,999.99,11/10/19 06:11,"761 Center St, New York City, NY 10001" +283506,ThinkPad Laptop,1,999.99,11/22/19 22:44,"180 South St, Portland, ME 04101" +283507,Wired Headphones,1,11.99,11/12/19 14:38,"648 Adams St, Portland, OR 97035" +283508,Bose SoundSport Headphones,1,99.99,11/12/19 17:06,"781 Willow St, Boston, MA 02215" +283509,AA Batteries (4-pack),1,3.84,11/08/19 19:33,"518 Willow St, San Francisco, CA 94016" +283510,Flatscreen TV,1,300,11/25/19 12:21,"212 Sunset St, San Francisco, CA 94016" +283511,iPhone,1,700,11/14/19 18:23,"908 West St, Seattle, WA 98101" +283511,Lightning Charging Cable,1,14.95,11/14/19 18:23,"908 West St, Seattle, WA 98101" +283512,Bose SoundSport Headphones,1,99.99,11/23/19 22:00,"974 Chestnut St, Boston, MA 02215" +283513,ThinkPad Laptop,1,999.99,11/11/19 06:41,"182 1st St, New York City, NY 10001" +283514,USB-C Charging Cable,1,11.95,11/25/19 21:20,"970 14th St, New York City, NY 10001" +283515,Lightning Charging Cable,1,14.95,11/10/19 20:09,"989 Park St, Dallas, TX 75001" +283516,AAA Batteries (4-pack),1,2.99,11/20/19 09:45,"247 Dogwood St, Dallas, TX 75001" +283517,AAA Batteries (4-pack),1,2.99,11/01/19 10:21,"72 Hill St, Atlanta, GA 30301" +283518,AA Batteries (4-pack),1,3.84,11/15/19 16:41,"406 2nd St, Seattle, WA 98101" +283519,Wired Headphones,1,11.99,11/29/19 11:52,"640 14th St, Seattle, WA 98101" +283520,Bose SoundSport Headphones,1,99.99,11/01/19 11:35,"844 Cherry St, Atlanta, GA 30301" +283521,AAA Batteries (4-pack),1,2.99,11/16/19 23:46,"76 Chestnut St, New York City, NY 10001" +283522,AA Batteries (4-pack),1,3.84,11/15/19 14:13,"368 7th St, Boston, MA 02215" +283523,Bose SoundSport Headphones,1,99.99,11/25/19 15:50,"608 4th St, Los Angeles, CA 90001" +283524,Macbook Pro Laptop,1,1700,11/05/19 10:49,"685 Johnson St, New York City, NY 10001" +283525,ThinkPad Laptop,1,999.99,11/20/19 13:11,"238 North St, San Francisco, CA 94016" +283526,AA Batteries (4-pack),1,3.84,11/30/19 09:46,"577 10th St, Austin, TX 73301" +283527,USB-C Charging Cable,1,11.95,11/16/19 21:16,"25 Meadow St, Boston, MA 02215" +283528,27in FHD Monitor,1,149.99,11/02/19 18:47,"696 Cherry St, San Francisco, CA 94016" +283529,AA Batteries (4-pack),1,3.84,11/21/19 10:50,"816 4th St, Los Angeles, CA 90001" +283530,Flatscreen TV,1,300,11/01/19 08:28,"717 West St, Dallas, TX 75001" +283531,USB-C Charging Cable,1,11.95,11/04/19 00:49,"771 Chestnut St, Dallas, TX 75001" +283532,Wired Headphones,1,11.99,11/10/19 11:21,"792 Highland St, San Francisco, CA 94016" +283533,AAA Batteries (4-pack),4,2.99,11/26/19 17:24,"884 9th St, Dallas, TX 75001" +283534,iPhone,1,700,11/12/19 19:52,"649 Cedar St, New York City, NY 10001" +283535,ThinkPad Laptop,1,999.99,11/05/19 17:52,"186 Washington St, Portland, OR 97035" +283536,AAA Batteries (4-pack),1,2.99,11/24/19 23:00,"303 10th St, Seattle, WA 98101" +283537,AAA Batteries (4-pack),1,2.99,11/22/19 13:15,"695 7th St, Austin, TX 73301" +283538,USB-C Charging Cable,1,11.95,11/23/19 23:25,"293 South St, San Francisco, CA 94016" +283539,AAA Batteries (4-pack),1,2.99,11/16/19 15:30,"23 14th St, San Francisco, CA 94016" +283540,Lightning Charging Cable,1,14.95,11/04/19 16:47,"996 Jefferson St, Dallas, TX 75001" +283541,USB-C Charging Cable,1,11.95,11/26/19 14:16,"221 Meadow St, San Francisco, CA 94016" +283542,Wired Headphones,1,11.99,11/18/19 11:54,"451 Lakeview St, Portland, OR 97035" +283543,Apple Airpods Headphones,1,150,11/22/19 22:11,"733 Lincoln St, Atlanta, GA 30301" +283543,iPhone,1,700,11/22/19 22:11,"733 Lincoln St, Atlanta, GA 30301" +283544,AA Batteries (4-pack),4,3.84,11/10/19 14:54,"486 4th St, New York City, NY 10001" +283545,Lightning Charging Cable,1,14.95,11/27/19 16:43,"787 South St, Seattle, WA 98101" +283546,Bose SoundSport Headphones,1,99.99,11/03/19 17:48,"197 North St, Seattle, WA 98101" +283547,20in Monitor,1,109.99,11/11/19 10:46,"423 Adams St, Seattle, WA 98101" +283548,Google Phone,1,600,11/19/19 10:22,"278 Madison St, Los Angeles, CA 90001" +283549,Wired Headphones,1,11.99,11/08/19 22:56,"971 2nd St, Boston, MA 02215" +283550,34in Ultrawide Monitor,1,379.99,11/08/19 16:54,"177 Center St, New York City, NY 10001" +283551,Google Phone,1,600,11/13/19 12:54,"763 4th St, Portland, OR 97035" +283552,Lightning Charging Cable,1,14.95,11/11/19 10:07,"915 2nd St, Austin, TX 73301" +283553,Bose SoundSport Headphones,1,99.99,11/19/19 22:37,"47 Church St, New York City, NY 10001" +283554,Vareebadd Phone,1,400,11/11/19 12:16,"864 West St, Portland, OR 97035" +283554,USB-C Charging Cable,2,11.95,11/11/19 12:16,"864 West St, Portland, OR 97035" +283555,27in 4K Gaming Monitor,1,389.99,11/07/19 13:02,"131 Dogwood St, San Francisco, CA 94016" +283556,Lightning Charging Cable,1,14.95,11/09/19 11:12,"483 Walnut St, Austin, TX 73301" +283557,Macbook Pro Laptop,1,1700,11/06/19 09:15,"582 Adams St, Los Angeles, CA 90001" +283558,Bose SoundSport Headphones,1,99.99,11/29/19 09:41,"493 Main St, Seattle, WA 98101" +283559,ThinkPad Laptop,1,999.99,11/21/19 16:56,"115 10th St, Dallas, TX 75001" +283560,Wired Headphones,1,11.99,11/22/19 13:19,"722 Forest St, New York City, NY 10001" +283561,AAA Batteries (4-pack),2,2.99,11/02/19 15:34,"7 1st St, Atlanta, GA 30301" +283562,Google Phone,1,600,11/07/19 04:01,"456 Johnson St, New York City, NY 10001" +283563,Wired Headphones,1,11.99,11/09/19 14:07,"188 9th St, New York City, NY 10001" +283564,iPhone,1,700,11/10/19 16:31,"838 West St, Portland, OR 97035" +283565,ThinkPad Laptop,1,999.99,11/16/19 01:05,"261 Church St, Los Angeles, CA 90001" +283566,Vareebadd Phone,1,400,11/16/19 17:37,"187 South St, Los Angeles, CA 90001" +283566,Bose SoundSport Headphones,1,99.99,11/16/19 17:37,"187 South St, Los Angeles, CA 90001" +283567,20in Monitor,1,109.99,11/07/19 10:53,"879 Main St, San Francisco, CA 94016" +283568,Apple Airpods Headphones,1,150,11/07/19 11:57,"339 14th St, San Francisco, CA 94016" +283569,34in Ultrawide Monitor,1,379.99,11/16/19 13:25,"995 10th St, Boston, MA 02215" +283570,Wired Headphones,1,11.99,11/25/19 10:30,"525 13th St, New York City, NY 10001" +283571,AA Batteries (4-pack),1,3.84,11/16/19 13:42,"54 11th St, New York City, NY 10001" +283572,iPhone,1,700,11/25/19 15:47,"870 11th St, San Francisco, CA 94016" +283573,Bose SoundSport Headphones,1,99.99,11/13/19 15:15,"975 8th St, Dallas, TX 75001" +283574,Apple Airpods Headphones,1,150,11/15/19 09:04,"90 Lincoln St, Portland, OR 97035" +283575,Wired Headphones,1,11.99,11/28/19 16:13,"515 Church St, Seattle, WA 98101" +283576,AAA Batteries (4-pack),2,2.99,11/13/19 17:46,"165 River St, Seattle, WA 98101" +283577,iPhone,1,700,11/07/19 19:56,"162 Cherry St, Boston, MA 02215" +283577,Wired Headphones,1,11.99,11/07/19 19:56,"162 Cherry St, Boston, MA 02215" +283578,AA Batteries (4-pack),1,3.84,11/12/19 11:10,"419 Jackson St, San Francisco, CA 94016" +283579,20in Monitor,1,109.99,11/19/19 07:53,"89 7th St, Boston, MA 02215" +283580,Macbook Pro Laptop,1,1700,11/30/19 16:21,"702 11th St, Los Angeles, CA 90001" +283581,AA Batteries (4-pack),1,3.84,11/21/19 15:01,"869 Cherry St, New York City, NY 10001" +283582,Wired Headphones,1,11.99,11/19/19 17:00,"890 Jackson St, San Francisco, CA 94016" +283583,USB-C Charging Cable,1,11.95,11/29/19 15:25,"582 Chestnut St, Dallas, TX 75001" +283584,AAA Batteries (4-pack),1,2.99,11/07/19 15:14,"352 Walnut St, Boston, MA 02215" +283585,iPhone,1,700,11/29/19 15:55,"215 Lincoln St, San Francisco, CA 94016" +283586,Bose SoundSport Headphones,1,99.99,11/05/19 11:25,"610 Cherry St, Seattle, WA 98101" +283587,34in Ultrawide Monitor,1,379.99,11/11/19 12:43,"928 5th St, Austin, TX 73301" +283588,Wired Headphones,1,11.99,11/29/19 22:32,"793 Hickory St, Portland, OR 97035" +283589,Macbook Pro Laptop,1,1700,11/29/19 22:25,"708 Forest St, Dallas, TX 75001" +283590,USB-C Charging Cable,1,11.95,11/18/19 21:14,"390 West St, New York City, NY 10001" +283591,USB-C Charging Cable,1,11.95,11/13/19 19:03,"245 Lakeview St, Atlanta, GA 30301" +283592,Wired Headphones,1,11.99,11/08/19 15:35,"872 South St, New York City, NY 10001" +283593,AAA Batteries (4-pack),1,2.99,11/14/19 12:39,"541 Highland St, New York City, NY 10001" +283594,USB-C Charging Cable,1,11.95,11/25/19 18:59,"838 Park St, Seattle, WA 98101" +283595,Apple Airpods Headphones,1,150,11/19/19 21:23,"133 8th St, Los Angeles, CA 90001" +283596,USB-C Charging Cable,1,11.95,11/09/19 13:45,"180 River St, Portland, OR 97035" +283597,Wired Headphones,1,11.99,11/28/19 15:33,"128 Lakeview St, Austin, TX 73301" +283598,AAA Batteries (4-pack),1,2.99,11/23/19 20:03,"488 6th St, Portland, OR 97035" +283599,Bose SoundSport Headphones,1,99.99,11/30/19 07:09,"891 Johnson St, Boston, MA 02215" +283600,USB-C Charging Cable,1,11.95,11/17/19 12:03,"186 14th St, Atlanta, GA 30301" +283601,Lightning Charging Cable,1,14.95,11/11/19 12:53,"17 Madison St, Atlanta, GA 30301" +283602,Apple Airpods Headphones,1,150,11/11/19 12:23,"287 9th St, Boston, MA 02215" +283603,Lightning Charging Cable,2,14.95,11/11/19 15:54,"531 Chestnut St, New York City, NY 10001" +283604,iPhone,1,700,11/02/19 10:10,"956 1st St, Atlanta, GA 30301" +283605,27in FHD Monitor,1,149.99,11/03/19 08:28,"95 12th St, Boston, MA 02215" +283606,USB-C Charging Cable,1,11.95,11/17/19 20:21,"178 Ridge St, San Francisco, CA 94016" +283607,USB-C Charging Cable,1,11.95,11/12/19 08:12,"146 Madison St, Seattle, WA 98101" +283608,ThinkPad Laptop,1,999.99,11/22/19 13:42,"585 West St, San Francisco, CA 94016" +283609,Wired Headphones,1,11.99,11/02/19 20:05,"588 Hill St, San Francisco, CA 94016" +283610,34in Ultrawide Monitor,1,379.99,11/06/19 10:28,"141 Madison St, San Francisco, CA 94016" +283611,USB-C Charging Cable,1,11.95,11/23/19 09:15,"465 Church St, Seattle, WA 98101" +283612,Bose SoundSport Headphones,1,99.99,11/12/19 08:10,"239 1st St, San Francisco, CA 94016" +283613,Macbook Pro Laptop,1,1700,11/07/19 18:09,"890 2nd St, Austin, TX 73301" +283614,Bose SoundSport Headphones,1,99.99,11/12/19 19:58,"798 Willow St, Portland, ME 04101" +283615,Lightning Charging Cable,1,14.95,11/13/19 12:55,"216 Jefferson St, New York City, NY 10001" +283616,20in Monitor,1,109.99,11/09/19 17:11,"606 Washington St, San Francisco, CA 94016" +283617,Google Phone,1,600,11/02/19 08:59,"907 River St, Atlanta, GA 30301" +283617,USB-C Charging Cable,1,11.95,11/02/19 08:59,"907 River St, Atlanta, GA 30301" +283618,AA Batteries (4-pack),1,3.84,11/16/19 09:26,"814 12th St, San Francisco, CA 94016" +283619,Wired Headphones,1,11.99,11/05/19 21:32,"993 Main St, Los Angeles, CA 90001" +283620,iPhone,1,700,11/15/19 16:37,"786 8th St, Dallas, TX 75001" +283621,Bose SoundSport Headphones,1,99.99,11/02/19 21:04,"446 West St, San Francisco, CA 94016" +283622,AAA Batteries (4-pack),1,2.99,11/16/19 03:26,"154 Highland St, New York City, NY 10001" +283623,USB-C Charging Cable,1,11.95,11/09/19 11:23,"201 Forest St, Dallas, TX 75001" +283624,AA Batteries (4-pack),1,3.84,11/29/19 21:28,"45 8th St, New York City, NY 10001" +283625,iPhone,1,700,11/11/19 22:53,"844 Wilson St, Boston, MA 02215" +283626,USB-C Charging Cable,1,11.95,11/20/19 17:11,"523 9th St, Boston, MA 02215" +283627,iPhone,1,700,11/06/19 11:29,"281 Lincoln St, Portland, OR 97035" +283628,AA Batteries (4-pack),1,3.84,11/09/19 20:39,"459 13th St, San Francisco, CA 94016" +283629,USB-C Charging Cable,2,11.95,11/14/19 12:52,"406 Lakeview St, Austin, TX 73301" +283630,27in FHD Monitor,1,149.99,11/25/19 07:10,"59 Madison St, Portland, ME 04101" +283631,AA Batteries (4-pack),2,3.84,11/08/19 13:47,"338 North St, San Francisco, CA 94016" +283632,Lightning Charging Cable,1,14.95,11/01/19 11:11,"727 West St, Los Angeles, CA 90001" +283633,Macbook Pro Laptop,1,1700,11/06/19 08:30,"781 Cherry St, San Francisco, CA 94016" +283634,Flatscreen TV,1,300,11/17/19 21:37,"745 South St, Los Angeles, CA 90001" +283635,Wired Headphones,1,11.99,11/02/19 14:41,"106 Pine St, Los Angeles, CA 90001" +283636,AA Batteries (4-pack),2,3.84,11/05/19 21:39,"99 Lakeview St, San Francisco, CA 94016" +283637,Lightning Charging Cable,1,14.95,11/04/19 16:15,"226 Dogwood St, Los Angeles, CA 90001" +283638,27in FHD Monitor,1,149.99,11/18/19 18:57,"27 Madison St, New York City, NY 10001" +283639,Wired Headphones,1,11.99,11/25/19 19:56,"751 Adams St, Atlanta, GA 30301" +283640,Apple Airpods Headphones,1,150,11/02/19 00:56,"923 Cherry St, Los Angeles, CA 90001" +283641,Bose SoundSport Headphones,1,99.99,11/12/19 18:32,"85 2nd St, Dallas, TX 75001" +283642,Flatscreen TV,1,300,11/07/19 10:06,"414 North St, Los Angeles, CA 90001" +283643,AAA Batteries (4-pack),1,2.99,11/13/19 09:31,"405 Main St, Portland, ME 04101" +283644,USB-C Charging Cable,1,11.95,11/29/19 12:18,"142 Lincoln St, San Francisco, CA 94016" +283645,USB-C Charging Cable,1,11.95,11/25/19 13:43,"621 Cedar St, Dallas, TX 75001" +283646,AA Batteries (4-pack),2,3.84,11/28/19 21:04,"537 Church St, Seattle, WA 98101" +283647,27in FHD Monitor,1,149.99,11/18/19 10:28,"106 Hickory St, Los Angeles, CA 90001" +283648,Flatscreen TV,1,300,11/28/19 21:36,"166 Forest St, Boston, MA 02215" +283649,AA Batteries (4-pack),2,3.84,11/06/19 11:55,"445 Jackson St, San Francisco, CA 94016" +283650,USB-C Charging Cable,1,11.95,11/06/19 14:12,"123 Forest St, New York City, NY 10001" +283651,AA Batteries (4-pack),1,3.84,11/30/19 17:52,"777 1st St, Los Angeles, CA 90001" +283652,AAA Batteries (4-pack),1,2.99,11/09/19 15:01,"854 Cedar St, Boston, MA 02215" +283653,AA Batteries (4-pack),1,3.84,11/12/19 11:51,"203 North St, Boston, MA 02215" +283654,AAA Batteries (4-pack),1,2.99,11/29/19 22:22,"835 Maple St, Seattle, WA 98101" +283655,AA Batteries (4-pack),1,3.84,11/20/19 13:36,"409 Pine St, Boston, MA 02215" +283656,20in Monitor,1,109.99,11/08/19 14:40,"96 Adams St, Los Angeles, CA 90001" +283657,AAA Batteries (4-pack),1,2.99,11/19/19 21:40,"123 Walnut St, Los Angeles, CA 90001" +283658,34in Ultrawide Monitor,1,379.99,11/27/19 18:13,"926 Cedar St, Seattle, WA 98101" +283659,Apple Airpods Headphones,1,150,11/06/19 09:12,"227 Hickory St, San Francisco, CA 94016" +283660,AAA Batteries (4-pack),1,2.99,11/18/19 22:14,"381 Center St, San Francisco, CA 94016" +283661,Apple Airpods Headphones,1,150,11/12/19 12:19,"251 6th St, Seattle, WA 98101" +283662,USB-C Charging Cable,1,11.95,11/17/19 20:37,"971 Lincoln St, Los Angeles, CA 90001" +283663,Lightning Charging Cable,1,14.95,11/04/19 18:25,"740 Hickory St, Seattle, WA 98101" +283664,34in Ultrawide Monitor,1,379.99,11/01/19 19:43,"674 12th St, Dallas, TX 75001" +283665,USB-C Charging Cable,1,11.95,11/02/19 06:40,"93 Willow St, Los Angeles, CA 90001" +283666,AAA Batteries (4-pack),1,2.99,11/22/19 00:15,"137 Maple St, San Francisco, CA 94016" +283667,Wired Headphones,2,11.99,11/22/19 20:53,"511 Washington St, Boston, MA 02215" +283668,USB-C Charging Cable,1,11.95,11/02/19 22:16,"962 Walnut St, New York City, NY 10001" +283669,USB-C Charging Cable,1,11.95,11/15/19 16:50,"215 Madison St, Los Angeles, CA 90001" +283670,Wired Headphones,1,11.99,11/10/19 23:45,"569 Church St, Austin, TX 73301" +283671,27in FHD Monitor,1,149.99,11/18/19 09:59,"741 Lakeview St, Austin, TX 73301" +283672,Wired Headphones,1,11.99,11/09/19 10:51,"448 Lakeview St, Portland, OR 97035" +283672,AAA Batteries (4-pack),1,2.99,11/09/19 10:51,"448 Lakeview St, Portland, OR 97035" +283673,Apple Airpods Headphones,1,150,11/12/19 12:54,"837 2nd St, Portland, OR 97035" +283674,AA Batteries (4-pack),2,3.84,11/07/19 15:42,"722 7th St, San Francisco, CA 94016" +283675,AA Batteries (4-pack),1,3.84,11/08/19 11:24,"33 Maple St, New York City, NY 10001" +283676,iPhone,1,700,11/16/19 16:43,"209 Spruce St, San Francisco, CA 94016" +283676,Apple Airpods Headphones,1,150,11/16/19 16:43,"209 Spruce St, San Francisco, CA 94016" +283677,Lightning Charging Cable,1,14.95,11/16/19 14:22,"332 Wilson St, San Francisco, CA 94016" +283678,AA Batteries (4-pack),1,3.84,11/29/19 09:07,"38 Lakeview St, Austin, TX 73301" +283679,27in 4K Gaming Monitor,1,389.99,11/29/19 10:21,"439 2nd St, Seattle, WA 98101" +283680,20in Monitor,1,109.99,11/26/19 12:27,"343 1st St, San Francisco, CA 94016" +283681,Wired Headphones,1,11.99,11/09/19 16:56,"690 Chestnut St, Atlanta, GA 30301" +283682,Bose SoundSport Headphones,1,99.99,11/25/19 05:06,"640 Maple St, Seattle, WA 98101" +283683,27in FHD Monitor,1,149.99,11/07/19 13:15,"681 Willow St, New York City, NY 10001" +283684,AAA Batteries (4-pack),1,2.99,11/25/19 17:35,"553 Madison St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +283685,USB-C Charging Cable,1,11.95,11/24/19 23:21,"168 Walnut St, New York City, NY 10001" +283686,AA Batteries (4-pack),3,3.84,11/04/19 20:29,"815 Elm St, Boston, MA 02215" +283687,Macbook Pro Laptop,1,1700,11/12/19 17:09,"692 12th St, San Francisco, CA 94016" +283688,Lightning Charging Cable,1,14.95,11/21/19 22:07,"534 12th St, San Francisco, CA 94016" +283689,Lightning Charging Cable,1,14.95,11/05/19 21:26,"779 Dogwood St, Los Angeles, CA 90001" +283690,AA Batteries (4-pack),1,3.84,11/14/19 10:58,"263 Willow St, Dallas, TX 75001" +283691,iPhone,1,700,11/13/19 17:42,"61 Main St, Boston, MA 02215" +283691,Lightning Charging Cable,1,14.95,11/13/19 17:42,"61 Main St, Boston, MA 02215" +283692,iPhone,1,700,11/26/19 18:49,"781 Pine St, San Francisco, CA 94016" +283693,iPhone,1,700,11/03/19 09:10,"319 8th St, Atlanta, GA 30301" +283693,Lightning Charging Cable,1,14.95,11/03/19 09:10,"319 8th St, Atlanta, GA 30301" +283694,Lightning Charging Cable,1,14.95,11/18/19 17:51,"340 11th St, Atlanta, GA 30301" +283695,34in Ultrawide Monitor,1,379.99,11/25/19 08:07,"723 South St, Boston, MA 02215" +283696,Lightning Charging Cable,2,14.95,11/22/19 16:13,"419 River St, Seattle, WA 98101" +283697,27in FHD Monitor,1,149.99,11/03/19 17:52,"16 7th St, Los Angeles, CA 90001" +283698,AAA Batteries (4-pack),1,2.99,11/30/19 12:43,"552 Maple St, New York City, NY 10001" +283699,USB-C Charging Cable,2,11.95,11/20/19 18:35,"725 Forest St, San Francisco, CA 94016" +283700,Vareebadd Phone,1,400,11/21/19 15:56,"166 Walnut St, New York City, NY 10001" +283701,Wired Headphones,1,11.99,11/14/19 19:38,"118 Sunset St, Dallas, TX 75001" +283702,AA Batteries (4-pack),1,3.84,11/12/19 07:55,"573 Jefferson St, San Francisco, CA 94016" +283703,Wired Headphones,1,11.99,11/28/19 18:21,"374 8th St, Portland, OR 97035" +283704,AAA Batteries (4-pack),2,2.99,11/20/19 14:41,"824 7th St, Austin, TX 73301" +283704,Wired Headphones,1,11.99,11/20/19 14:41,"824 7th St, Austin, TX 73301" +283705,Wired Headphones,1,11.99,11/14/19 08:45,"446 Adams St, New York City, NY 10001" +283706,Lightning Charging Cable,1,14.95,11/21/19 19:39,"771 11th St, Portland, ME 04101" +283707,Apple Airpods Headphones,1,150,11/22/19 08:32,"282 Lincoln St, Seattle, WA 98101" +283708,Apple Airpods Headphones,1,150,11/16/19 06:58,"867 13th St, San Francisco, CA 94016" +283709,USB-C Charging Cable,2,11.95,11/05/19 12:40,"870 Cedar St, San Francisco, CA 94016" +283710,Macbook Pro Laptop,1,1700,11/27/19 07:24,"608 Walnut St, Atlanta, GA 30301" +283711,Apple Airpods Headphones,1,150,11/07/19 10:06,"295 Park St, San Francisco, CA 94016" +283712,iPhone,1,700,11/26/19 05:38,"979 2nd St, Los Angeles, CA 90001" +283712,Lightning Charging Cable,1,14.95,11/26/19 05:38,"979 2nd St, Los Angeles, CA 90001" +283713,USB-C Charging Cable,2,11.95,11/15/19 11:59,"895 Main St, Portland, OR 97035" +283714,USB-C Charging Cable,1,11.95,11/21/19 15:47,"769 Walnut St, San Francisco, CA 94016" +283715,27in FHD Monitor,1,149.99,11/11/19 11:58,"645 River St, New York City, NY 10001" +283716,27in 4K Gaming Monitor,1,389.99,11/08/19 10:08,"270 North St, Austin, TX 73301" +283717,AA Batteries (4-pack),1,3.84,11/26/19 17:46,"113 Adams St, Portland, OR 97035" +283718,Wired Headphones,2,11.99,11/09/19 21:28,"922 Dogwood St, Seattle, WA 98101" +283719,Lightning Charging Cable,1,14.95,11/24/19 14:46,"769 Elm St, Los Angeles, CA 90001" +283720,Vareebadd Phone,1,400,11/01/19 11:57,"687 Madison St, San Francisco, CA 94016" +283720,USB-C Charging Cable,1,11.95,11/01/19 11:57,"687 Madison St, San Francisco, CA 94016" +283721,USB-C Charging Cable,1,11.95,11/06/19 19:19,"828 Cedar St, Boston, MA 02215" +283722,Macbook Pro Laptop,1,1700,11/30/19 13:04,"122 Lincoln St, Los Angeles, CA 90001" +283723,34in Ultrawide Monitor,1,379.99,11/06/19 20:26,"13 Spruce St, New York City, NY 10001" +283724,34in Ultrawide Monitor,1,379.99,11/22/19 11:45,"682 Lake St, New York City, NY 10001" +283725,AA Batteries (4-pack),1,3.84,11/05/19 23:51,"800 River St, New York City, NY 10001" +283726,ThinkPad Laptop,1,999.99,11/27/19 15:16,"573 Hill St, Seattle, WA 98101" +283727,ThinkPad Laptop,1,999.99,11/09/19 12:10,"866 Cherry St, San Francisco, CA 94016" +283728,AAA Batteries (4-pack),1,2.99,11/20/19 21:15,"530 Maple St, Atlanta, GA 30301" +283729,AAA Batteries (4-pack),1,2.99,11/24/19 18:31,"584 Walnut St, Los Angeles, CA 90001" +283730,27in FHD Monitor,1,149.99,11/18/19 22:06,"186 River St, Los Angeles, CA 90001" +283731,Macbook Pro Laptop,1,1700,11/02/19 20:01,"459 River St, Boston, MA 02215" +283732,Vareebadd Phone,1,400,11/09/19 08:11,"607 Chestnut St, Los Angeles, CA 90001" +283732,USB-C Charging Cable,1,11.95,11/09/19 08:11,"607 Chestnut St, Los Angeles, CA 90001" +283733,USB-C Charging Cable,1,11.95,11/27/19 14:24,"594 2nd St, Los Angeles, CA 90001" +283734,Apple Airpods Headphones,1,150,11/13/19 21:36,"162 9th St, Dallas, TX 75001" +283735,Flatscreen TV,1,300,11/20/19 06:40,"858 13th St, Seattle, WA 98101" +283736,Bose SoundSport Headphones,1,99.99,11/09/19 21:15,"232 Cedar St, Austin, TX 73301" +283737,27in FHD Monitor,1,149.99,11/13/19 17:28,"445 Center St, Portland, ME 04101" +283738,AAA Batteries (4-pack),1,2.99,11/30/19 20:39,"637 Lakeview St, Atlanta, GA 30301" +283739,Apple Airpods Headphones,1,150,11/04/19 18:34,"108 Johnson St, San Francisco, CA 94016" +283739,Lightning Charging Cable,1,14.95,11/04/19 18:34,"108 Johnson St, San Francisco, CA 94016" +283740,Wired Headphones,1,11.99,11/02/19 18:59,"560 12th St, Dallas, TX 75001" +283741,27in 4K Gaming Monitor,1,389.99,11/06/19 18:17,"895 4th St, Austin, TX 73301" +283742,AAA Batteries (4-pack),4,2.99,11/01/19 13:47,"626 Hickory St, Austin, TX 73301" +283743,20in Monitor,1,109.99,11/03/19 08:40,"855 10th St, San Francisco, CA 94016" +283744,27in FHD Monitor,1,149.99,11/19/19 21:08,"320 4th St, Seattle, WA 98101" +283745,AAA Batteries (4-pack),1,2.99,11/20/19 17:21,"11 Willow St, Los Angeles, CA 90001" +283746,34in Ultrawide Monitor,1,379.99,11/14/19 12:08,"188 Cedar St, Dallas, TX 75001" +283747,Wired Headphones,1,11.99,11/10/19 17:49,"64 2nd St, Austin, TX 73301" +283748,Google Phone,1,600,11/06/19 14:47,"89 6th St, San Francisco, CA 94016" +283749,AA Batteries (4-pack),1,3.84,11/16/19 14:21,"904 1st St, Austin, TX 73301" +283750,ThinkPad Laptop,1,999.99,11/08/19 21:04,"594 Ridge St, Atlanta, GA 30301" +283751,Bose SoundSport Headphones,1,99.99,11/19/19 03:32,"358 6th St, Boston, MA 02215" +283752,Wired Headphones,1,11.99,11/10/19 11:58,"541 Hickory St, Boston, MA 02215" +283753,Wired Headphones,1,11.99,11/27/19 14:28,"612 2nd St, Los Angeles, CA 90001" +283754,Wired Headphones,1,11.99,11/02/19 22:38,"942 Center St, Dallas, TX 75001" +283755,Apple Airpods Headphones,1,150,11/11/19 10:23,"319 10th St, Seattle, WA 98101" +283756,AA Batteries (4-pack),1,3.84,11/23/19 10:26,"917 Park St, Dallas, TX 75001" +283757,Wired Headphones,2,11.99,11/11/19 00:56,"747 Jefferson St, San Francisco, CA 94016" +283758,AA Batteries (4-pack),1,3.84,11/04/19 00:05,"915 6th St, Seattle, WA 98101" +283759,ThinkPad Laptop,1,999.99,11/25/19 14:14,"911 2nd St, San Francisco, CA 94016" +283760,Bose SoundSport Headphones,1,99.99,11/23/19 23:52,"724 Washington St, Seattle, WA 98101" +283761,27in FHD Monitor,1,149.99,11/09/19 09:41,"263 River St, Austin, TX 73301" +283762,Flatscreen TV,1,300,11/15/19 20:44,"931 Main St, Los Angeles, CA 90001" +283763,USB-C Charging Cable,1,11.95,11/11/19 20:22,"503 Jackson St, Seattle, WA 98101" +283764,AA Batteries (4-pack),1,3.84,11/14/19 10:37,"930 South St, Portland, OR 97035" +283765,34in Ultrawide Monitor,1,379.99,11/01/19 18:08,"422 4th St, San Francisco, CA 94016" +283766,Wired Headphones,1,11.99,11/27/19 20:50,"621 Pine St, Dallas, TX 75001" +283767,Apple Airpods Headphones,1,150,11/17/19 19:43,"945 Madison St, San Francisco, CA 94016" +283768,AA Batteries (4-pack),1,3.84,11/14/19 16:19,"736 Pine St, Los Angeles, CA 90001" +283769,USB-C Charging Cable,1,11.95,11/29/19 10:46,"138 13th St, Boston, MA 02215" +283770,27in 4K Gaming Monitor,1,389.99,11/25/19 00:00,"810 Maple St, Atlanta, GA 30301" +283771,Google Phone,1,600,11/02/19 15:16,"670 South St, Dallas, TX 75001" +283772,AA Batteries (4-pack),1,3.84,11/02/19 03:13,"665 Lincoln St, Seattle, WA 98101" +283773,27in 4K Gaming Monitor,1,389.99,11/18/19 20:38,"162 Sunset St, New York City, NY 10001" +283774,Lightning Charging Cable,1,14.95,11/29/19 19:08,"156 Meadow St, San Francisco, CA 94016" +283775,Flatscreen TV,1,300,11/15/19 14:39,"482 Sunset St, San Francisco, CA 94016" +283776,ThinkPad Laptop,1,999.99,11/18/19 16:16,"598 Adams St, Los Angeles, CA 90001" +283777,Flatscreen TV,1,300,11/16/19 13:34,"341 Jackson St, Seattle, WA 98101" +283778,AAA Batteries (4-pack),1,2.99,11/15/19 22:44,"969 2nd St, Los Angeles, CA 90001" +283779,AAA Batteries (4-pack),1,2.99,11/13/19 17:27,"11 10th St, Boston, MA 02215" +283780,USB-C Charging Cable,2,11.95,11/28/19 13:47,"850 12th St, Dallas, TX 75001" +283781,AA Batteries (4-pack),1,3.84,11/29/19 18:34,"14 Cherry St, San Francisco, CA 94016" +283782,27in FHD Monitor,2,149.99,11/04/19 08:50,"160 Adams St, Dallas, TX 75001" +283783,Apple Airpods Headphones,1,150,11/11/19 12:05,"26 7th St, Portland, ME 04101" +283784,Wired Headphones,1,11.99,11/23/19 17:59,"169 Meadow St, New York City, NY 10001" +283785,AAA Batteries (4-pack),1,2.99,11/27/19 19:42,"31 8th St, New York City, NY 10001" +283786,AAA Batteries (4-pack),2,2.99,11/09/19 12:38,"20 Johnson St, San Francisco, CA 94016" +283787,Bose SoundSport Headphones,1,99.99,11/13/19 11:26,"231 Hill St, Los Angeles, CA 90001" +283788,Wired Headphones,1,11.99,11/18/19 16:52,"339 10th St, San Francisco, CA 94016" +283789,USB-C Charging Cable,1,11.95,11/09/19 20:23,"954 Madison St, San Francisco, CA 94016" +283790,Lightning Charging Cable,1,14.95,11/26/19 22:29,"730 Adams St, San Francisco, CA 94016" +283791,AA Batteries (4-pack),2,3.84,11/28/19 15:03,"676 Meadow St, Austin, TX 73301" +283792,USB-C Charging Cable,1,11.95,11/10/19 08:13,"893 Madison St, Austin, TX 73301" +283793,Wired Headphones,1,11.99,11/21/19 09:18,"86 Lake St, New York City, NY 10001" +283794,USB-C Charging Cable,1,11.95,11/12/19 10:51,"713 Highland St, Boston, MA 02215" +283795,Bose SoundSport Headphones,1,99.99,11/21/19 13:51,"121 Hickory St, Boston, MA 02215" +283796,Wired Headphones,1,11.99,11/09/19 22:39,"253 Sunset St, New York City, NY 10001" +283797,Bose SoundSport Headphones,1,99.99,11/26/19 19:24,"51 4th St, San Francisco, CA 94016" +283797,AAA Batteries (4-pack),1,2.99,11/26/19 19:24,"51 4th St, San Francisco, CA 94016" +283798,20in Monitor,1,109.99,11/07/19 15:40,"444 7th St, Los Angeles, CA 90001" +283799,Apple Airpods Headphones,1,150,11/20/19 13:21,"584 Cherry St, Austin, TX 73301" +283800,AA Batteries (4-pack),1,3.84,11/11/19 22:17,"372 Maple St, San Francisco, CA 94016" +283800,Google Phone,1,600,11/11/19 22:17,"372 Maple St, San Francisco, CA 94016" +283801,20in Monitor,1,109.99,11/24/19 10:10,"794 12th St, Seattle, WA 98101" +283802,USB-C Charging Cable,1,11.95,11/01/19 11:39,"575 Adams St, Los Angeles, CA 90001" +283803,Apple Airpods Headphones,1,150,11/02/19 14:13,"307 Cherry St, Austin, TX 73301" +283804,27in 4K Gaming Monitor,1,389.99,11/03/19 15:15,"587 Lincoln St, San Francisco, CA 94016" +283805,AAA Batteries (4-pack),2,2.99,11/01/19 11:17,"5 Lakeview St, Seattle, WA 98101" +283806,34in Ultrawide Monitor,1,379.99,11/13/19 13:46,"302 Main St, Boston, MA 02215" +283807,USB-C Charging Cable,1,11.95,11/30/19 21:55,"84 11th St, Los Angeles, CA 90001" +283808,Bose SoundSport Headphones,1,99.99,11/07/19 15:33,"408 8th St, Dallas, TX 75001" +283809,Apple Airpods Headphones,1,150,11/24/19 12:42,"155 Jefferson St, San Francisco, CA 94016" +283810,27in FHD Monitor,1,149.99,11/19/19 13:44,"71 1st St, Seattle, WA 98101" +283811,USB-C Charging Cable,1,11.95,11/29/19 18:07,"593 Willow St, Dallas, TX 75001" +283812,USB-C Charging Cable,1,11.95,11/26/19 11:32,"860 Jackson St, Austin, TX 73301" +283813,27in FHD Monitor,1,149.99,11/16/19 20:08,"656 North St, New York City, NY 10001" +283814,Macbook Pro Laptop,1,1700,11/30/19 18:06,"687 4th St, San Francisco, CA 94016" +283815,Macbook Pro Laptop,1,1700,11/07/19 20:03,"823 4th St, Portland, OR 97035" +283816,27in FHD Monitor,1,149.99,11/28/19 10:59,"11 South St, San Francisco, CA 94016" +283817,Bose SoundSport Headphones,1,99.99,11/24/19 14:09,"587 Washington St, Dallas, TX 75001" +283818,Bose SoundSport Headphones,1,99.99,11/13/19 23:20,"174 11th St, Los Angeles, CA 90001" +283819,Apple Airpods Headphones,1,150,11/15/19 14:42,"138 10th St, Portland, OR 97035" +283820,Bose SoundSport Headphones,1,99.99,11/30/19 10:46,"384 Pine St, Dallas, TX 75001" +283820,Wired Headphones,1,11.99,11/30/19 10:46,"384 Pine St, Dallas, TX 75001" +283821,Apple Airpods Headphones,1,150,11/22/19 13:24,"967 1st St, Austin, TX 73301" +283822,34in Ultrawide Monitor,1,379.99,11/03/19 17:31,"222 Pine St, Portland, OR 97035" +283823,Lightning Charging Cable,1,14.95,11/16/19 12:28,"828 1st St, San Francisco, CA 94016" +283824,Macbook Pro Laptop,1,1700,11/26/19 10:35,"650 River St, Seattle, WA 98101" +283824,Apple Airpods Headphones,1,150,11/26/19 10:35,"650 River St, Seattle, WA 98101" +283825,Lightning Charging Cable,1,14.95,11/16/19 17:18,"237 Hickory St, San Francisco, CA 94016" +283826,Flatscreen TV,1,300,11/02/19 14:20,"923 8th St, Austin, TX 73301" +283827,AAA Batteries (4-pack),2,2.99,11/05/19 10:28,"238 1st St, Portland, ME 04101" +283828,Flatscreen TV,1,300,11/19/19 22:51,"478 Sunset St, Portland, OR 97035" +283829,Bose SoundSport Headphones,1,99.99,11/10/19 13:05,"80 Pine St, San Francisco, CA 94016" +283830,27in 4K Gaming Monitor,1,389.99,11/07/19 20:42,"347 Meadow St, Seattle, WA 98101" +283831,AAA Batteries (4-pack),1,2.99,11/15/19 18:53,"381 Walnut St, Seattle, WA 98101" +283832,iPhone,1,700,11/05/19 12:15,"811 Hickory St, Boston, MA 02215" +283833,Wired Headphones,1,11.99,11/26/19 10:57,"88 Pine St, Boston, MA 02215" +283834,Wired Headphones,1,11.99,11/16/19 08:21,"677 Willow St, New York City, NY 10001" +283835,AA Batteries (4-pack),1,3.84,11/10/19 09:50,"561 10th St, Portland, OR 97035" +283836,Apple Airpods Headphones,1,150,11/10/19 11:46,"910 Lake St, Portland, OR 97035" +283837,Lightning Charging Cable,1,14.95,11/12/19 22:52,"572 Cedar St, Dallas, TX 75001" +283838,Bose SoundSport Headphones,1,99.99,11/08/19 18:03,"96 Main St, Seattle, WA 98101" +283839,Bose SoundSport Headphones,1,99.99,11/17/19 20:06,"385 Madison St, Boston, MA 02215" +283840,AAA Batteries (4-pack),1,2.99,11/30/19 06:29,"979 Highland St, San Francisco, CA 94016" +283841,Flatscreen TV,1,300,11/15/19 12:59,"891 Church St, Portland, OR 97035" +283842,AA Batteries (4-pack),1,3.84,11/30/19 12:41,"887 Ridge St, San Francisco, CA 94016" +283843,27in FHD Monitor,1,149.99,11/16/19 17:24,"232 6th St, Seattle, WA 98101" +283844,AAA Batteries (4-pack),3,2.99,11/18/19 13:08,"875 Lake St, Boston, MA 02215" +283845,USB-C Charging Cable,1,11.95,11/23/19 12:28,"823 12th St, San Francisco, CA 94016" +283846,34in Ultrawide Monitor,1,379.99,11/17/19 18:36,"196 Ridge St, Seattle, WA 98101" +283847,Apple Airpods Headphones,1,150,11/04/19 21:12,"761 Dogwood St, Seattle, WA 98101" +283848,Apple Airpods Headphones,1,150,11/12/19 18:52,"922 Lincoln St, San Francisco, CA 94016" +283849,27in FHD Monitor,1,149.99,11/10/19 22:24,"357 5th St, San Francisco, CA 94016" +283850,Lightning Charging Cable,1,14.95,11/11/19 06:26,"140 8th St, San Francisco, CA 94016" +283851,Apple Airpods Headphones,1,150,11/25/19 14:33,"384 Maple St, Austin, TX 73301" +283852,Apple Airpods Headphones,1,150,11/19/19 23:01,"254 13th St, Dallas, TX 75001" +283853,Apple Airpods Headphones,1,150,11/01/19 14:02,"640 Hill St, Los Angeles, CA 90001" +283854,Lightning Charging Cable,1,14.95,11/28/19 09:55,"771 Washington St, San Francisco, CA 94016" +283855,AA Batteries (4-pack),1,3.84,11/02/19 12:34,"597 Ridge St, Dallas, TX 75001" +283856,Apple Airpods Headphones,1,150,11/21/19 20:57,"772 8th St, Los Angeles, CA 90001" +283857,AA Batteries (4-pack),1,3.84,11/17/19 19:52,"942 2nd St, Boston, MA 02215" +283857,Wired Headphones,1,11.99,11/17/19 19:52,"942 2nd St, Boston, MA 02215" +283858,20in Monitor,1,109.99,11/16/19 08:39,"380 Sunset St, Dallas, TX 75001" +283858,iPhone,1,700,11/16/19 08:39,"380 Sunset St, Dallas, TX 75001" +283859,AA Batteries (4-pack),1,3.84,11/17/19 08:17,"433 Jackson St, Los Angeles, CA 90001" +283860,Wired Headphones,1,11.99,11/13/19 12:57,"881 Lake St, Dallas, TX 75001" +283861,27in FHD Monitor,1,149.99,11/04/19 15:16,"46 Hickory St, Seattle, WA 98101" +283862,Lightning Charging Cable,1,14.95,11/23/19 22:01,"956 Cherry St, Atlanta, GA 30301" +283863,34in Ultrawide Monitor,1,379.99,11/11/19 21:40,"607 Maple St, Los Angeles, CA 90001" +283864,USB-C Charging Cable,1,11.95,11/16/19 18:45,"561 7th St, Atlanta, GA 30301" +283865,AA Batteries (4-pack),1,3.84,11/19/19 23:24,"724 Pine St, Los Angeles, CA 90001" +283866,Macbook Pro Laptop,1,1700,11/16/19 18:02,"496 Center St, Los Angeles, CA 90001" +283867,20in Monitor,1,109.99,11/29/19 10:50,"395 Forest St, Los Angeles, CA 90001" +283868,AAA Batteries (4-pack),1,2.99,11/19/19 16:59,"807 1st St, Los Angeles, CA 90001" +283869,Apple Airpods Headphones,1,150,11/10/19 18:47,"746 Hill St, Portland, OR 97035" +283870,AAA Batteries (4-pack),2,2.99,11/08/19 20:28,"794 Wilson St, Dallas, TX 75001" +283871,Wired Headphones,2,11.99,11/16/19 19:25,"633 Jackson St, Portland, OR 97035" +283872,USB-C Charging Cable,1,11.95,11/16/19 15:50,"340 Highland St, Atlanta, GA 30301" +283873,Google Phone,1,600,11/05/19 11:34,"903 Church St, Austin, TX 73301" +283873,USB-C Charging Cable,1,11.95,11/05/19 11:34,"903 Church St, Austin, TX 73301" +283874,27in 4K Gaming Monitor,1,389.99,11/05/19 12:17,"622 Wilson St, Dallas, TX 75001" +283875,Macbook Pro Laptop,1,1700,11/06/19 11:14,"237 Park St, Austin, TX 73301" +283876,Wired Headphones,1,11.99,11/20/19 09:14,"602 Highland St, Portland, OR 97035" +283877,iPhone,1,700,11/07/19 15:17,"625 West St, Portland, OR 97035" +283878,Flatscreen TV,1,300,11/09/19 19:54,"109 14th St, Seattle, WA 98101" +283879,Apple Airpods Headphones,1,150,11/15/19 13:28,"838 Lincoln St, San Francisco, CA 94016" +283880,Google Phone,1,600,11/19/19 10:57,"96 14th St, San Francisco, CA 94016" +283880,USB-C Charging Cable,1,11.95,11/19/19 10:57,"96 14th St, San Francisco, CA 94016" +283880,Wired Headphones,1,11.99,11/19/19 10:57,"96 14th St, San Francisco, CA 94016" +283881,Lightning Charging Cable,2,14.95,11/28/19 22:42,"862 South St, Atlanta, GA 30301" +283881,34in Ultrawide Monitor,1,379.99,11/28/19 22:42,"862 South St, Atlanta, GA 30301" +283882,34in Ultrawide Monitor,1,379.99,11/04/19 23:42,"426 Main St, Dallas, TX 75001" +283883,27in 4K Gaming Monitor,1,389.99,11/17/19 15:35,"772 10th St, Seattle, WA 98101" +283884,Bose SoundSport Headphones,1,99.99,11/12/19 12:41,"674 Ridge St, New York City, NY 10001" +283885,USB-C Charging Cable,1,11.95,11/16/19 16:18,"348 North St, San Francisco, CA 94016" +283886,LG Dryer,1,600.0,11/20/19 17:41,"568 Johnson St, Seattle, WA 98101" +283887,iPhone,1,700,11/30/19 08:45,"711 Washington St, New York City, NY 10001" +283888,USB-C Charging Cable,1,11.95,11/02/19 17:46,"722 Cedar St, San Francisco, CA 94016" +283889,AA Batteries (4-pack),1,3.84,11/09/19 04:43,"353 4th St, Boston, MA 02215" +283890,Wired Headphones,1,11.99,11/15/19 22:28,"530 Dogwood St, New York City, NY 10001" +283891,Lightning Charging Cable,1,14.95,11/29/19 14:38,"610 Hickory St, Portland, OR 97035" +283892,Wired Headphones,1,11.99,11/19/19 13:13,"918 Church St, Dallas, TX 75001" +283893,Wired Headphones,1,11.99,11/23/19 11:18,"119 Adams St, Portland, OR 97035" +283894,Wired Headphones,1,11.99,11/25/19 19:48,"727 7th St, Portland, OR 97035" +283895,27in FHD Monitor,1,149.99,11/02/19 16:17,"778 South St, Seattle, WA 98101" +283896,USB-C Charging Cable,1,11.95,11/03/19 11:51,"11 8th St, San Francisco, CA 94016" +283897,Wired Headphones,1,11.99,11/19/19 21:32,"339 7th St, Los Angeles, CA 90001" +283898,Wired Headphones,1,11.99,11/02/19 00:27,"809 Spruce St, Seattle, WA 98101" +283899,Apple Airpods Headphones,1,150,11/05/19 13:44,"552 13th St, Portland, OR 97035" +283900,AAA Batteries (4-pack),1,2.99,11/04/19 17:35,"965 Walnut St, San Francisco, CA 94016" +283901,Wired Headphones,1,11.99,11/13/19 21:32,"313 Pine St, Dallas, TX 75001" +283902,Apple Airpods Headphones,1,150,11/08/19 17:48,"108 Wilson St, San Francisco, CA 94016" +283903,Macbook Pro Laptop,1,1700,11/16/19 13:47,"757 Sunset St, San Francisco, CA 94016" +283904,Apple Airpods Headphones,1,150,11/16/19 22:27,"358 Dogwood St, New York City, NY 10001" +283905,Wired Headphones,1,11.99,11/02/19 17:40,"19 Jackson St, Los Angeles, CA 90001" +283906,Apple Airpods Headphones,1,150,11/10/19 01:50,"301 6th St, Boston, MA 02215" +283907,Apple Airpods Headphones,1,150,11/04/19 14:42,"949 Maple St, Dallas, TX 75001" +283908,27in 4K Gaming Monitor,1,389.99,11/21/19 20:35,"49 Maple St, Boston, MA 02215" +283909,USB-C Charging Cable,1,11.95,11/01/19 17:55,"468 Lincoln St, Dallas, TX 75001" +283910,Bose SoundSport Headphones,1,99.99,11/21/19 11:41,"597 Lincoln St, Seattle, WA 98101" +283910,Lightning Charging Cable,1,14.95,11/21/19 11:41,"597 Lincoln St, Seattle, WA 98101" +283911,AA Batteries (4-pack),1,3.84,11/14/19 12:33,"804 Center St, Boston, MA 02215" +283912,Wired Headphones,1,11.99,11/30/19 17:51,"287 Meadow St, Los Angeles, CA 90001" +283913,USB-C Charging Cable,1,11.95,11/02/19 15:19,"960 9th St, San Francisco, CA 94016" +283914,Wired Headphones,1,11.99,11/22/19 16:07,"257 Johnson St, Dallas, TX 75001" +283915,Apple Airpods Headphones,1,150,11/02/19 18:17,"839 Ridge St, Los Angeles, CA 90001" +283916,Lightning Charging Cable,2,14.95,11/15/19 19:40,"575 Jefferson St, San Francisco, CA 94016" +283917,34in Ultrawide Monitor,1,379.99,11/12/19 13:41,"768 Sunset St, Atlanta, GA 30301" +283918,Macbook Pro Laptop,1,1700,11/03/19 08:07,"138 Ridge St, Atlanta, GA 30301" +283919,AAA Batteries (4-pack),2,2.99,11/28/19 16:45,"866 North St, Portland, OR 97035" +283920,Flatscreen TV,1,300,11/14/19 15:11,"854 Cedar St, New York City, NY 10001" +283921,Google Phone,1,600,11/01/19 07:05,"90 Cherry St, Los Angeles, CA 90001" +283922,iPhone,1,700,11/19/19 16:50,"344 Maple St, Atlanta, GA 30301" +283923,Bose SoundSport Headphones,1,99.99,11/15/19 23:10,"982 Maple St, Los Angeles, CA 90001" +283924,Google Phone,1,600,11/24/19 01:37,"181 2nd St, Seattle, WA 98101" +283924,Bose SoundSport Headphones,1,99.99,11/24/19 01:37,"181 2nd St, Seattle, WA 98101" +283925,34in Ultrawide Monitor,1,379.99,11/23/19 19:03,"483 Willow St, Dallas, TX 75001" +283926,Wired Headphones,1,11.99,11/19/19 22:11,"420 9th St, Portland, OR 97035" +283927,AAA Batteries (4-pack),2,2.99,11/13/19 23:07,"412 Maple St, Dallas, TX 75001" +283928,Lightning Charging Cable,1,14.95,11/20/19 19:22,"945 North St, Los Angeles, CA 90001" +283929,Lightning Charging Cable,1,14.95,11/15/19 20:40,"983 Church St, Boston, MA 02215" +283930,AA Batteries (4-pack),1,3.84,11/16/19 14:21,"671 14th St, Los Angeles, CA 90001" +283931,USB-C Charging Cable,1,11.95,11/24/19 19:31,"899 Lincoln St, Boston, MA 02215" +283932,Google Phone,1,600,11/01/19 06:07,"406 Cedar St, San Francisco, CA 94016" +283933,ThinkPad Laptop,1,999.99,11/08/19 15:33,"852 11th St, New York City, NY 10001" +283934,AAA Batteries (4-pack),2,2.99,11/16/19 13:24,"147 Park St, Boston, MA 02215" +283935,LG Dryer,1,600.0,11/11/19 13:06,"569 Maple St, New York City, NY 10001" +283936,AAA Batteries (4-pack),1,2.99,11/17/19 11:43,"24 Jackson St, Los Angeles, CA 90001" +283937,iPhone,1,700,11/29/19 14:52,"809 Washington St, San Francisco, CA 94016" +283938,Apple Airpods Headphones,1,150,11/12/19 14:15,"517 Adams St, New York City, NY 10001" +283939,USB-C Charging Cable,1,11.95,11/30/19 18:19,"324 5th St, New York City, NY 10001" +283940,Macbook Pro Laptop,1,1700,11/15/19 20:20,"899 Cedar St, Boston, MA 02215" +283941,USB-C Charging Cable,2,11.95,11/29/19 08:41,"519 Sunset St, New York City, NY 10001" +283942,Bose SoundSport Headphones,1,99.99,11/21/19 15:23,"369 4th St, Los Angeles, CA 90001" +283943,27in FHD Monitor,1,149.99,11/01/19 15:35,"471 Spruce St, Boston, MA 02215" +283944,USB-C Charging Cable,1,11.95,11/25/19 11:48,"17 Pine St, Boston, MA 02215" +283945,AA Batteries (4-pack),1,3.84,11/27/19 19:30,"528 Lake St, New York City, NY 10001" +283946,Lightning Charging Cable,1,14.95,11/18/19 17:28,"330 Spruce St, San Francisco, CA 94016" +283947,AA Batteries (4-pack),1,3.84,11/09/19 14:55,"478 11th St, Dallas, TX 75001" +283948,iPhone,1,700,11/18/19 16:12,"537 Cherry St, Atlanta, GA 30301" +283949,Apple Airpods Headphones,1,150,11/02/19 22:12,"207 Pine St, Portland, OR 97035" +283950,iPhone,1,700,11/27/19 12:28,"838 Madison St, Los Angeles, CA 90001" +283951,Lightning Charging Cable,1,14.95,11/29/19 16:24,"429 13th St, New York City, NY 10001" +283952,LG Washing Machine,1,600.0,11/19/19 13:24,"524 2nd St, Austin, TX 73301" +283953,USB-C Charging Cable,1,11.95,11/22/19 10:07,"90 11th St, San Francisco, CA 94016" +283954,AAA Batteries (4-pack),1,2.99,11/29/19 19:05,"246 12th St, San Francisco, CA 94016" +283955,34in Ultrawide Monitor,1,379.99,11/10/19 11:49,"838 9th St, Austin, TX 73301" +283956,Google Phone,1,600,11/11/19 11:53,"367 Walnut St, Boston, MA 02215" +283957,Google Phone,1,600,11/05/19 16:39,"57 Washington St, Boston, MA 02215" +283958,AAA Batteries (4-pack),1,2.99,11/15/19 18:26,"584 12th St, Seattle, WA 98101" +283959,AAA Batteries (4-pack),1,2.99,11/09/19 08:31,"697 North St, Dallas, TX 75001" +283960,iPhone,1,700,11/06/19 17:18,"617 Spruce St, Los Angeles, CA 90001" +283961,ThinkPad Laptop,1,999.99,11/29/19 21:29,"904 Lincoln St, New York City, NY 10001" +283962,Bose SoundSport Headphones,1,99.99,11/15/19 18:18,"154 12th St, San Francisco, CA 94016" +283963,Bose SoundSport Headphones,1,99.99,11/24/19 19:23,"896 Johnson St, Dallas, TX 75001" +283964,Wired Headphones,1,11.99,11/11/19 19:52,"581 Meadow St, Dallas, TX 75001" +283965,Lightning Charging Cable,1,14.95,11/02/19 12:10,"783 10th St, San Francisco, CA 94016" +283966,AA Batteries (4-pack),1,3.84,11/28/19 10:44,"191 Lake St, Dallas, TX 75001" +283967,27in 4K Gaming Monitor,1,389.99,11/02/19 09:10,"456 Meadow St, Austin, TX 73301" +283968,iPhone,1,700,11/11/19 09:50,"529 Cherry St, San Francisco, CA 94016" +283969,AA Batteries (4-pack),2,3.84,11/22/19 15:51,"883 Hill St, Atlanta, GA 30301" +283969,Apple Airpods Headphones,1,150,11/22/19 15:51,"883 Hill St, Atlanta, GA 30301" +283970,Bose SoundSport Headphones,1,99.99,11/16/19 22:55,"734 2nd St, Portland, OR 97035" +283971,Google Phone,1,600,11/28/19 17:43,"930 Center St, Boston, MA 02215" +283972,USB-C Charging Cable,1,11.95,11/19/19 09:49,"1 Lincoln St, Atlanta, GA 30301" +283973,AA Batteries (4-pack),1,3.84,11/15/19 21:03,"56 Maple St, New York City, NY 10001" +283974,AAA Batteries (4-pack),1,2.99,11/12/19 12:44,"107 Church St, New York City, NY 10001" +283975,Lightning Charging Cable,1,14.95,11/13/19 12:12,"55 9th St, Austin, TX 73301" +283976,Macbook Pro Laptop,1,1700,11/10/19 14:43,"956 6th St, Seattle, WA 98101" +283977,USB-C Charging Cable,1,11.95,11/07/19 13:09,"425 North St, Boston, MA 02215" +283978,AA Batteries (4-pack),1,3.84,11/15/19 17:07,"860 South St, New York City, NY 10001" +283979,AA Batteries (4-pack),2,3.84,11/26/19 20:25,"24 2nd St, San Francisco, CA 94016" +283980,AA Batteries (4-pack),1,3.84,11/10/19 21:08,"427 Dogwood St, Boston, MA 02215" +283981,Vareebadd Phone,1,400,11/07/19 12:26,"713 West St, Boston, MA 02215" +283981,Wired Headphones,1,11.99,11/07/19 12:26,"713 West St, Boston, MA 02215" +283982,AAA Batteries (4-pack),1,2.99,11/12/19 12:33,"201 Jefferson St, New York City, NY 10001" +283983,Lightning Charging Cable,1,14.95,11/25/19 10:12,"540 River St, New York City, NY 10001" +283984,Bose SoundSport Headphones,1,99.99,11/22/19 17:45,"228 Lakeview St, Austin, TX 73301" +283984,Wired Headphones,1,11.99,11/22/19 17:45,"228 Lakeview St, Austin, TX 73301" +283985,Bose SoundSport Headphones,1,99.99,11/30/19 12:07,"893 North St, Seattle, WA 98101" +283986,USB-C Charging Cable,1,11.95,11/13/19 11:08,"94 11th St, Atlanta, GA 30301" +283987,Flatscreen TV,1,300,11/27/19 09:43,"79 Cedar St, Los Angeles, CA 90001" +283988,20in Monitor,1,109.99,11/06/19 20:01,"825 Highland St, Seattle, WA 98101" +283989,Bose SoundSport Headphones,1,99.99,11/28/19 14:33,"745 Main St, Atlanta, GA 30301" +283990,Vareebadd Phone,1,400,11/27/19 20:43,"537 Church St, Atlanta, GA 30301" +283991,Bose SoundSport Headphones,1,99.99,11/05/19 08:59,"978 Main St, Portland, ME 04101" +283992,USB-C Charging Cable,1,11.95,11/25/19 20:03,"977 Highland St, New York City, NY 10001" +283993,34in Ultrawide Monitor,1,379.99,11/21/19 19:20,"430 Cedar St, San Francisco, CA 94016" +283994,Wired Headphones,1,11.99,11/14/19 15:40,"193 Main St, San Francisco, CA 94016" +283995,Google Phone,1,600,11/12/19 23:39,"235 8th St, Seattle, WA 98101" +283996,USB-C Charging Cable,1,11.95,11/24/19 11:11,"470 Hill St, San Francisco, CA 94016" +283997,AA Batteries (4-pack),3,3.84,11/17/19 12:10,"656 Highland St, New York City, NY 10001" +283998,AA Batteries (4-pack),1,3.84,11/24/19 14:06,"205 Park St, Atlanta, GA 30301" +283999,Lightning Charging Cable,1,14.95,11/26/19 19:24,"331 11th St, Boston, MA 02215" +284000,AA Batteries (4-pack),1,3.84,11/24/19 14:36,"405 Forest St, Boston, MA 02215" +284001,AAA Batteries (4-pack),3,2.99,11/15/19 18:51,"127 Jackson St, San Francisco, CA 94016" +284002,Bose SoundSport Headphones,1,99.99,11/11/19 12:01,"426 Madison St, Los Angeles, CA 90001" +284003,AA Batteries (4-pack),1,3.84,11/03/19 11:47,"529 South St, San Francisco, CA 94016" +284004,AA Batteries (4-pack),1,3.84,11/07/19 13:21,"800 South St, Atlanta, GA 30301" +284005,AA Batteries (4-pack),1,3.84,11/04/19 01:26,"15 North St, Boston, MA 02215" +284006,iPhone,1,700,11/16/19 20:21,"965 Center St, Austin, TX 73301" +284007,Wired Headphones,2,11.99,11/04/19 14:46,"343 Spruce St, New York City, NY 10001" +284008,USB-C Charging Cable,1,11.95,11/23/19 21:20,"312 Jackson St, Seattle, WA 98101" +284009,AAA Batteries (4-pack),1,2.99,11/08/19 02:25,"522 Sunset St, Dallas, TX 75001" +284010,27in 4K Gaming Monitor,1,389.99,11/06/19 11:16,"869 11th St, Boston, MA 02215" +284011,USB-C Charging Cable,1,11.95,11/29/19 22:49,"565 11th St, Dallas, TX 75001" +284012,Lightning Charging Cable,1,14.95,11/20/19 11:56,"907 Lake St, Boston, MA 02215" +284013,AA Batteries (4-pack),2,3.84,11/16/19 20:32,"652 13th St, Austin, TX 73301" +284014,AA Batteries (4-pack),1,3.84,11/24/19 10:58,"148 Park St, Atlanta, GA 30301" +284015,Flatscreen TV,1,300,11/27/19 14:14,"854 1st St, Atlanta, GA 30301" +284016,Bose SoundSport Headphones,1,99.99,11/26/19 19:02,"227 North St, Los Angeles, CA 90001" +284017,USB-C Charging Cable,1,11.95,11/25/19 15:48,"284 14th St, Atlanta, GA 30301" +284018,27in FHD Monitor,1,149.99,11/22/19 10:51,"557 Maple St, Los Angeles, CA 90001" +284019,Lightning Charging Cable,1,14.95,11/18/19 13:40,"203 14th St, Boston, MA 02215" +284020,Lightning Charging Cable,2,14.95,11/19/19 06:15,"732 Lincoln St, San Francisco, CA 94016" +284021,Lightning Charging Cable,1,14.95,11/15/19 11:55,"508 13th St, New York City, NY 10001" +284022,Apple Airpods Headphones,1,150,11/05/19 19:29,"848 13th St, Atlanta, GA 30301" +284023,Lightning Charging Cable,1,14.95,11/29/19 22:39,"27 Meadow St, Atlanta, GA 30301" +284024,USB-C Charging Cable,1,11.95,11/10/19 12:08,"260 Madison St, Los Angeles, CA 90001" +284025,Bose SoundSport Headphones,1,99.99,11/05/19 00:31,"407 Johnson St, Portland, OR 97035" +284026,AA Batteries (4-pack),1,3.84,11/21/19 21:38,"62 Chestnut St, Seattle, WA 98101" +284027,Google Phone,1,600,11/28/19 03:03,"829 Willow St, Dallas, TX 75001" +284027,Wired Headphones,1,11.99,11/28/19 03:03,"829 Willow St, Dallas, TX 75001" +284028,Apple Airpods Headphones,1,150,11/17/19 18:28,"958 Main St, New York City, NY 10001" +284029,27in 4K Gaming Monitor,1,389.99,11/23/19 12:07,"834 9th St, Dallas, TX 75001" +284030,AAA Batteries (4-pack),2,2.99,11/28/19 18:30,"228 Elm St, New York City, NY 10001" +284031,AA Batteries (4-pack),1,3.84,11/12/19 21:29,"421 Willow St, Boston, MA 02215" +284032,AA Batteries (4-pack),1,3.84,11/11/19 08:00,"91 Washington St, Dallas, TX 75001" +284033,Lightning Charging Cable,1,14.95,11/08/19 17:08,"729 West St, Portland, OR 97035" +284034,AAA Batteries (4-pack),1,2.99,11/27/19 00:52,"578 Jefferson St, Seattle, WA 98101" +284035,iPhone,1,700,11/22/19 14:30,"118 Chestnut St, San Francisco, CA 94016" +284036,27in FHD Monitor,1,149.99,11/26/19 20:35,"301 Pine St, San Francisco, CA 94016" +284037,AAA Batteries (4-pack),2,2.99,11/28/19 11:48,"254 River St, Portland, ME 04101" +284038,AAA Batteries (4-pack),1,2.99,11/09/19 17:19,"66 Hill St, San Francisco, CA 94016" +284039,USB-C Charging Cable,1,11.95,11/02/19 15:46,"619 7th St, Austin, TX 73301" +284040,AAA Batteries (4-pack),1,2.99,11/27/19 12:32,"598 Main St, Atlanta, GA 30301" +284041,Wired Headphones,1,11.99,11/24/19 19:53,"317 Madison St, Boston, MA 02215" +284042,USB-C Charging Cable,1,11.95,11/08/19 09:16,"876 Forest St, Dallas, TX 75001" +284043,USB-C Charging Cable,1,11.95,11/03/19 14:09,"33 9th St, San Francisco, CA 94016" +284044,27in FHD Monitor,1,149.99,11/05/19 10:21,"458 1st St, San Francisco, CA 94016" +284045,AAA Batteries (4-pack),1,2.99,11/07/19 17:38,"146 Jackson St, Atlanta, GA 30301" +284046,Bose SoundSport Headphones,1,99.99,11/13/19 06:51,"928 10th St, New York City, NY 10001" +284047,Wired Headphones,1,11.99,11/07/19 16:04,"93 14th St, San Francisco, CA 94016" +284048,Wired Headphones,1,11.99,11/05/19 21:49,"650 Maple St, Austin, TX 73301" +284049,Lightning Charging Cable,1,14.95,11/13/19 16:07,"912 13th St, Austin, TX 73301" +284050,Apple Airpods Headphones,1,150,11/20/19 14:59,"307 1st St, San Francisco, CA 94016" +284051,USB-C Charging Cable,1,11.95,11/20/19 17:47,"798 11th St, Los Angeles, CA 90001" +284052,ThinkPad Laptop,1,999.99,11/25/19 12:09,"757 Ridge St, Boston, MA 02215" +284053,AAA Batteries (4-pack),2,2.99,11/09/19 09:11,"372 Chestnut St, San Francisco, CA 94016" +284054,AA Batteries (4-pack),2,3.84,11/24/19 00:51,"162 Church St, Seattle, WA 98101" +284055,USB-C Charging Cable,1,11.95,11/15/19 18:09,"298 Elm St, Los Angeles, CA 90001" +284056,34in Ultrawide Monitor,1,379.99,11/24/19 22:54,"66 10th St, Los Angeles, CA 90001" +284057,USB-C Charging Cable,1,11.95,11/11/19 11:27,"270 Lake St, Portland, OR 97035" +284058,Lightning Charging Cable,1,14.95,11/21/19 23:25,"499 Jefferson St, Boston, MA 02215" +284059,27in FHD Monitor,1,149.99,11/19/19 12:34,"52 Wilson St, San Francisco, CA 94016" +284060,Wired Headphones,1,11.99,11/27/19 14:44,"256 13th St, Portland, OR 97035" +284061,USB-C Charging Cable,1,11.95,11/25/19 06:23,"161 Church St, Boston, MA 02215" +284062,34in Ultrawide Monitor,1,379.99,11/26/19 17:49,"457 Lake St, Boston, MA 02215" +284063,iPhone,1,700,11/24/19 20:33,"654 Adams St, Boston, MA 02215" +284063,Wired Headphones,1,11.99,11/24/19 20:33,"654 Adams St, Boston, MA 02215" +284064,Flatscreen TV,1,300,11/01/19 15:24,"423 Walnut St, Los Angeles, CA 90001" +284065,Apple Airpods Headphones,1,150,11/21/19 10:23,"441 Dogwood St, San Francisco, CA 94016" +284066,20in Monitor,1,109.99,11/21/19 12:16,"947 Cherry St, Dallas, TX 75001" +284067,27in FHD Monitor,1,149.99,11/21/19 22:53,"46 Hickory St, Los Angeles, CA 90001" +284068,ThinkPad Laptop,1,999.99,11/23/19 14:12,"732 North St, Atlanta, GA 30301" +284069,34in Ultrawide Monitor,1,379.99,11/07/19 09:13,"382 Cedar St, Austin, TX 73301" +284070,iPhone,1,700,11/20/19 11:41,"458 Willow St, Los Angeles, CA 90001" +284071,AAA Batteries (4-pack),2,2.99,11/26/19 18:12,"773 Lincoln St, Los Angeles, CA 90001" +284072,USB-C Charging Cable,1,11.95,11/09/19 09:28,"117 Cedar St, Los Angeles, CA 90001" +284073,Wired Headphones,1,11.99,11/10/19 08:33,"392 Johnson St, Austin, TX 73301" +284074,ThinkPad Laptop,1,999.99,11/16/19 20:40,"11 Cedar St, Portland, ME 04101" +284075,Bose SoundSport Headphones,2,99.99,11/29/19 17:24,"694 Walnut St, Austin, TX 73301" +284076,27in 4K Gaming Monitor,1,389.99,11/18/19 18:17,"523 6th St, Los Angeles, CA 90001" +284077,Wired Headphones,2,11.99,11/23/19 17:20,"160 9th St, Dallas, TX 75001" +284078,USB-C Charging Cable,1,11.95,11/12/19 21:44,"766 1st St, San Francisco, CA 94016" +284079,Lightning Charging Cable,1,14.95,11/11/19 13:10,"645 14th St, Boston, MA 02215" +284080,AA Batteries (4-pack),1,3.84,11/29/19 12:25,"186 Spruce St, Atlanta, GA 30301" +284081,Google Phone,1,600,11/16/19 21:52,"561 10th St, Atlanta, GA 30301" +284082,AA Batteries (4-pack),3,3.84,11/03/19 00:13,"39 Lakeview St, Los Angeles, CA 90001" +284082,Apple Airpods Headphones,1,150,11/03/19 00:13,"39 Lakeview St, Los Angeles, CA 90001" +284083,34in Ultrawide Monitor,1,379.99,11/28/19 11:04,"548 12th St, Seattle, WA 98101" +284084,Wired Headphones,2,11.99,11/06/19 21:10,"512 Lakeview St, Los Angeles, CA 90001" +284085,Apple Airpods Headphones,1,150,11/21/19 16:11,"747 5th St, San Francisco, CA 94016" +284086,Wired Headphones,1,11.99,11/04/19 11:46,"682 Maple St, San Francisco, CA 94016" +284087,AA Batteries (4-pack),1,3.84,11/15/19 15:14,"701 North St, Austin, TX 73301" +284088,Apple Airpods Headphones,1,150,11/21/19 11:35,"143 Lakeview St, New York City, NY 10001" +284089,Bose SoundSport Headphones,1,99.99,11/03/19 13:31,"947 Madison St, San Francisco, CA 94016" +284090,USB-C Charging Cable,1,11.95,11/09/19 07:06,"417 Meadow St, San Francisco, CA 94016" +284091,iPhone,1,700,11/22/19 17:46,"683 Park St, Boston, MA 02215" +284091,Lightning Charging Cable,1,14.95,11/22/19 17:46,"683 Park St, Boston, MA 02215" +284092,AA Batteries (4-pack),2,3.84,11/05/19 13:39,"778 North St, Seattle, WA 98101" +284093,USB-C Charging Cable,1,11.95,11/17/19 07:08,"410 Meadow St, New York City, NY 10001" +284094,Lightning Charging Cable,1,14.95,11/03/19 20:37,"141 Cedar St, Atlanta, GA 30301" +284095,Lightning Charging Cable,1,14.95,11/21/19 20:57,"428 Madison St, Boston, MA 02215" +284096,AAA Batteries (4-pack),2,2.99,11/23/19 20:52,"901 Lincoln St, Boston, MA 02215" +284097,USB-C Charging Cable,1,11.95,11/29/19 14:27,"759 Adams St, New York City, NY 10001" +284098,AAA Batteries (4-pack),1,2.99,11/28/19 12:26,"93 Lakeview St, Los Angeles, CA 90001" +284099,AAA Batteries (4-pack),1,2.99,11/13/19 12:04,"272 Lake St, New York City, NY 10001" +284100,AA Batteries (4-pack),2,3.84,11/09/19 09:02,"658 Willow St, Dallas, TX 75001" +284101,Bose SoundSport Headphones,1,99.99,11/03/19 18:56,"604 Lincoln St, San Francisco, CA 94016" +284102,34in Ultrawide Monitor,1,379.99,11/30/19 14:30,"453 Forest St, Austin, TX 73301" +284103,Flatscreen TV,1,300,11/06/19 18:12,"369 Cherry St, Portland, OR 97035" +284104,USB-C Charging Cable,1,11.95,11/07/19 00:04,"340 14th St, Portland, OR 97035" +284105,27in 4K Gaming Monitor,1,389.99,11/06/19 14:16,"191 Cherry St, Los Angeles, CA 90001" +284106,AAA Batteries (4-pack),1,2.99,11/06/19 17:14,"398 River St, Atlanta, GA 30301" +284107,iPhone,1,700,11/22/19 11:47,"2 Chestnut St, New York City, NY 10001" +284108,Lightning Charging Cable,1,14.95,11/23/19 13:18,"374 Johnson St, San Francisco, CA 94016" +284108,Bose SoundSport Headphones,1,99.99,11/23/19 13:18,"374 Johnson St, San Francisco, CA 94016" +284109,AA Batteries (4-pack),2,3.84,11/06/19 21:42,"694 Hill St, Portland, ME 04101" +284110,27in 4K Gaming Monitor,1,389.99,11/22/19 04:21,"792 Elm St, San Francisco, CA 94016" +284111,Google Phone,1,600,11/22/19 16:43,"774 Spruce St, Boston, MA 02215" +284112,34in Ultrawide Monitor,1,379.99,11/14/19 12:38,"904 Ridge St, San Francisco, CA 94016" +284113,AA Batteries (4-pack),1,3.84,11/12/19 15:12,"650 13th St, San Francisco, CA 94016" +284114,USB-C Charging Cable,1,11.95,11/07/19 08:39,"789 Maple St, Boston, MA 02215" +284115,Wired Headphones,1,11.99,11/25/19 08:16,"966 Meadow St, Los Angeles, CA 90001" +284116,AA Batteries (4-pack),2,3.84,11/06/19 14:18,"297 Sunset St, Boston, MA 02215" +284117,Lightning Charging Cable,1,14.95,11/07/19 10:31,"21 Main St, Los Angeles, CA 90001" +284118,Flatscreen TV,1,300,11/23/19 15:33,"35 Meadow St, San Francisco, CA 94016" +284119,Wired Headphones,1,11.99,11/22/19 14:27,"161 West St, New York City, NY 10001" +284120,AAA Batteries (4-pack),1,2.99,11/28/19 17:26,"429 Hickory St, Dallas, TX 75001" +284121,AA Batteries (4-pack),1,3.84,11/14/19 14:15,"155 Willow St, San Francisco, CA 94016" +284122,Wired Headphones,1,11.99,11/16/19 16:18,"28 Dogwood St, San Francisco, CA 94016" +284123,27in 4K Gaming Monitor,1,389.99,11/06/19 19:17,"826 Walnut St, San Francisco, CA 94016" +284124,Bose SoundSport Headphones,1,99.99,11/08/19 13:47,"962 Madison St, San Francisco, CA 94016" +284125,Apple Airpods Headphones,1,150,11/24/19 11:24,"971 Pine St, San Francisco, CA 94016" +284126,Wired Headphones,1,11.99,11/01/19 11:34,"88 North St, San Francisco, CA 94016" +284127,Lightning Charging Cable,1,14.95,11/24/19 10:18,"910 4th St, Atlanta, GA 30301" +284128,Lightning Charging Cable,1,14.95,11/07/19 14:03,"239 Willow St, Los Angeles, CA 90001" +284129,Lightning Charging Cable,1,14.95,11/06/19 09:37,"400 Highland St, San Francisco, CA 94016" +284130,USB-C Charging Cable,1,11.95,11/11/19 16:51,"583 Willow St, Boston, MA 02215" +284131,Wired Headphones,1,11.99,11/01/19 07:17,"710 14th St, San Francisco, CA 94016" +284132,USB-C Charging Cable,1,11.95,11/20/19 16:38,"738 West St, Portland, OR 97035" +,,,,, +284133,AA Batteries (4-pack),3,3.84,11/25/19 19:37,"213 5th St, Los Angeles, CA 90001" +284134,Apple Airpods Headphones,1,150,11/18/19 13:40,"918 Lincoln St, New York City, NY 10001" +284135,34in Ultrawide Monitor,1,379.99,11/18/19 19:36,"431 West St, Austin, TX 73301" +284136,USB-C Charging Cable,1,11.95,11/11/19 23:37,"644 9th St, Dallas, TX 75001" +284137,AAA Batteries (4-pack),2,2.99,11/09/19 08:36,"714 6th St, Los Angeles, CA 90001" +284138,27in 4K Gaming Monitor,1,389.99,11/14/19 14:20,"854 Center St, Portland, OR 97035" +284139,AA Batteries (4-pack),1,3.84,11/24/19 19:01,"267 River St, Boston, MA 02215" +284140,Lightning Charging Cable,1,14.95,11/22/19 17:14,"294 Highland St, Atlanta, GA 30301" +284141,AAA Batteries (4-pack),2,2.99,11/18/19 20:29,"669 Maple St, Los Angeles, CA 90001" +284142,Wired Headphones,1,11.99,11/19/19 12:31,"690 North St, San Francisco, CA 94016" +284143,20in Monitor,1,109.99,11/23/19 17:14,"9 Ridge St, Los Angeles, CA 90001" +284144,Apple Airpods Headphones,1,150,11/26/19 23:15,"864 Cherry St, Los Angeles, CA 90001" +284145,AA Batteries (4-pack),1,3.84,11/12/19 10:13,"325 Lake St, Boston, MA 02215" +284146,Vareebadd Phone,1,400,11/30/19 08:38,"311 4th St, Los Angeles, CA 90001" +284146,Bose SoundSport Headphones,1,99.99,11/30/19 08:38,"311 4th St, Los Angeles, CA 90001" +284147,20in Monitor,1,109.99,11/16/19 18:36,"333 Dogwood St, Dallas, TX 75001" +284148,AA Batteries (4-pack),1,3.84,11/02/19 21:48,"709 Ridge St, Boston, MA 02215" +284148,Macbook Pro Laptop,1,1700,11/02/19 21:48,"709 Ridge St, Boston, MA 02215" +284149,AAA Batteries (4-pack),2,2.99,11/16/19 16:14,"685 West St, Boston, MA 02215" +284150,Lightning Charging Cable,1,14.95,11/26/19 13:12,"195 South St, Seattle, WA 98101" +284151,27in 4K Gaming Monitor,1,389.99,11/02/19 14:59,"835 4th St, Seattle, WA 98101" +284151,34in Ultrawide Monitor,1,379.99,11/02/19 14:59,"835 4th St, Seattle, WA 98101" +284152,Lightning Charging Cable,1,14.95,11/02/19 20:01,"712 4th St, Portland, OR 97035" +284153,Lightning Charging Cable,1,14.95,11/28/19 14:04,"264 Spruce St, Boston, MA 02215" +284154,Flatscreen TV,1,300,11/11/19 14:09,"681 Church St, San Francisco, CA 94016" +284155,Lightning Charging Cable,1,14.95,11/21/19 00:32,"638 Johnson St, Boston, MA 02215" +284156,AAA Batteries (4-pack),2,2.99,11/29/19 07:39,"502 Lincoln St, Boston, MA 02215" +284157,Apple Airpods Headphones,1,150,11/13/19 15:56,"153 11th St, Seattle, WA 98101" +284158,Lightning Charging Cable,1,14.95,11/27/19 16:18,"369 13th St, Portland, OR 97035" +284159,Bose SoundSport Headphones,1,99.99,11/18/19 09:15,"324 1st St, Boston, MA 02215" +284160,Apple Airpods Headphones,1,150,11/06/19 12:42,"218 Chestnut St, Dallas, TX 75001" +284161,AAA Batteries (4-pack),2,2.99,11/11/19 13:14,"376 Pine St, San Francisco, CA 94016" +284161,Google Phone,1,600,11/11/19 13:14,"376 Pine St, San Francisco, CA 94016" +284162,iPhone,1,700,11/04/19 00:07,"621 Spruce St, Portland, OR 97035" +284163,USB-C Charging Cable,1,11.95,11/22/19 21:35,"435 2nd St, San Francisco, CA 94016" +284164,Flatscreen TV,1,300,11/30/19 20:35,"179 Adams St, Austin, TX 73301" +284165,iPhone,1,700,11/06/19 11:14,"572 8th St, San Francisco, CA 94016" +284166,Macbook Pro Laptop,1,1700,11/08/19 12:41,"914 Johnson St, Boston, MA 02215" +284167,USB-C Charging Cable,1,11.95,11/28/19 12:58,"39 Chestnut St, Los Angeles, CA 90001" +284168,AAA Batteries (4-pack),1,2.99,11/14/19 22:05,"261 Church St, Los Angeles, CA 90001" +284169,AA Batteries (4-pack),3,3.84,11/27/19 18:30,"392 Jackson St, New York City, NY 10001" +284170,Wired Headphones,1,11.99,11/19/19 21:26,"710 Willow St, Boston, MA 02215" +284171,Bose SoundSport Headphones,1,99.99,11/18/19 08:29,"645 Washington St, San Francisco, CA 94016" +284172,AAA Batteries (4-pack),1,2.99,11/11/19 11:48,"362 Pine St, Los Angeles, CA 90001" +284173,Wired Headphones,1,11.99,11/28/19 13:26,"158 Dogwood St, Portland, OR 97035" +284174,iPhone,1,700,11/14/19 15:52,"404 Hickory St, San Francisco, CA 94016" +284175,Wired Headphones,1,11.99,11/30/19 09:21,"116 Spruce St, Los Angeles, CA 90001" +284176,AA Batteries (4-pack),1,3.84,11/28/19 11:08,"797 7th St, San Francisco, CA 94016" +284177,Apple Airpods Headphones,1,150,11/19/19 21:09,"437 Johnson St, New York City, NY 10001" +284178,Bose SoundSport Headphones,1,99.99,11/15/19 20:11,"702 Park St, Boston, MA 02215" +284179,AA Batteries (4-pack),1,3.84,11/01/19 16:54,"399 7th St, Portland, OR 97035" +284180,Bose SoundSport Headphones,1,99.99,11/15/19 21:24,"978 Church St, Atlanta, GA 30301" +284181,AAA Batteries (4-pack),1,2.99,11/06/19 07:14,"103 Johnson St, San Francisco, CA 94016" +284182,Wired Headphones,1,11.99,11/04/19 12:58,"699 Adams St, San Francisco, CA 94016" +284183,USB-C Charging Cable,1,11.95,11/21/19 18:10,"121 West St, Boston, MA 02215" +284184,Flatscreen TV,1,300,11/19/19 09:33,"535 Park St, Boston, MA 02215" +284185,USB-C Charging Cable,1,11.95,11/22/19 12:18,"164 West St, Los Angeles, CA 90001" +284186,iPhone,1,700,11/17/19 12:06,"537 13th St, Portland, ME 04101" +284187,ThinkPad Laptop,1,999.99,11/22/19 02:38,"329 Willow St, San Francisco, CA 94016" +284188,27in 4K Gaming Monitor,1,389.99,11/14/19 20:11,"616 13th St, San Francisco, CA 94016" +284189,USB-C Charging Cable,2,11.95,11/15/19 08:35,"836 Elm St, San Francisco, CA 94016" +284190,Lightning Charging Cable,1,14.95,11/24/19 19:24,"48 Cherry St, New York City, NY 10001" +284191,Bose SoundSport Headphones,1,99.99,11/25/19 10:08,"81 Sunset St, San Francisco, CA 94016" +284192,USB-C Charging Cable,1,11.95,11/15/19 15:46,"751 Center St, New York City, NY 10001" +284193,AAA Batteries (4-pack),2,2.99,11/08/19 23:52,"234 North St, Boston, MA 02215" +284194,iPhone,1,700,11/29/19 12:14,"858 Meadow St, Seattle, WA 98101" +284194,Lightning Charging Cable,1,14.95,11/29/19 12:14,"858 Meadow St, Seattle, WA 98101" +284195,USB-C Charging Cable,1,11.95,11/07/19 20:33,"276 Madison St, Los Angeles, CA 90001" +284196,USB-C Charging Cable,1,11.95,11/25/19 20:29,"257 Main St, Los Angeles, CA 90001" +284197,AA Batteries (4-pack),1,3.84,11/18/19 12:54,"662 Jefferson St, Los Angeles, CA 90001" +284198,Lightning Charging Cable,1,14.95,11/26/19 20:56,"785 Jefferson St, San Francisco, CA 94016" +284199,Lightning Charging Cable,1,14.95,11/04/19 19:39,"231 River St, San Francisco, CA 94016" +284200,Lightning Charging Cable,1,14.95,11/20/19 12:03,"372 13th St, San Francisco, CA 94016" +284201,Lightning Charging Cable,1,14.95,11/27/19 13:03,"782 Adams St, Boston, MA 02215" +284202,iPhone,1,700,11/19/19 23:30,"91 Walnut St, Los Angeles, CA 90001" +284203,iPhone,1,700,11/05/19 21:52,"486 Hickory St, Boston, MA 02215" +284204,AAA Batteries (4-pack),1,2.99,11/30/19 17:44,"726 9th St, San Francisco, CA 94016" +284205,USB-C Charging Cable,1,11.95,11/01/19 22:24,"908 Spruce St, New York City, NY 10001" +284206,USB-C Charging Cable,1,11.95,11/11/19 13:07,"262 Maple St, Seattle, WA 98101" +284207,Macbook Pro Laptop,1,1700,11/29/19 00:18,"606 Jackson St, Atlanta, GA 30301" +284208,USB-C Charging Cable,1,11.95,11/03/19 17:24,"43 5th St, San Francisco, CA 94016" +284209,Lightning Charging Cable,2,14.95,11/22/19 21:15,"633 Chestnut St, Los Angeles, CA 90001" +284209,Bose SoundSport Headphones,1,99.99,11/22/19 21:15,"633 Chestnut St, Los Angeles, CA 90001" +284210,AAA Batteries (4-pack),1,2.99,11/15/19 10:55,"34 Dogwood St, Dallas, TX 75001" +284211,Lightning Charging Cable,1,14.95,11/23/19 11:25,"764 Dogwood St, Boston, MA 02215" +284212,Lightning Charging Cable,1,14.95,11/06/19 16:11,"286 1st St, San Francisco, CA 94016" +284213,AAA Batteries (4-pack),1,2.99,11/23/19 20:32,"967 Pine St, Los Angeles, CA 90001" +284214,Wired Headphones,1,11.99,11/26/19 20:39,"199 Center St, San Francisco, CA 94016" +284215,Google Phone,1,600,11/18/19 10:11,"214 Wilson St, Dallas, TX 75001" +284216,USB-C Charging Cable,2,11.95,11/25/19 15:42,"170 Lake St, Los Angeles, CA 90001" +284217,Wired Headphones,1,11.99,11/26/19 16:17,"361 Highland St, Atlanta, GA 30301" +284218,AA Batteries (4-pack),1,3.84,11/16/19 02:07,"574 Church St, Los Angeles, CA 90001" +284219,USB-C Charging Cable,1,11.95,11/11/19 13:33,"618 Adams St, Atlanta, GA 30301" +284220,Lightning Charging Cable,1,14.95,11/11/19 06:54,"258 Elm St, Portland, OR 97035" +284221,AAA Batteries (4-pack),1,2.99,11/03/19 19:11,"51 Center St, San Francisco, CA 94016" +284222,Wired Headphones,1,11.99,11/16/19 12:22,"121 Hickory St, San Francisco, CA 94016" +284223,Flatscreen TV,1,300,11/15/19 19:07,"90 Madison St, New York City, NY 10001" +284224,27in FHD Monitor,1,149.99,11/07/19 14:12,"742 South St, Dallas, TX 75001" +284225,Lightning Charging Cable,1,14.95,11/27/19 21:47,"404 West St, Dallas, TX 75001" +284226,34in Ultrawide Monitor,1,379.99,11/02/19 15:50,"218 13th St, Boston, MA 02215" +284227,USB-C Charging Cable,1,11.95,11/20/19 14:47,"809 South St, San Francisco, CA 94016" +284228,Lightning Charging Cable,1,14.95,11/21/19 22:56,"85 River St, Los Angeles, CA 90001" +284229,AA Batteries (4-pack),2,3.84,11/27/19 22:43,"50 Sunset St, Dallas, TX 75001" +284230,27in FHD Monitor,1,149.99,11/03/19 20:49,"149 Madison St, Boston, MA 02215" +284231,27in FHD Monitor,1,149.99,11/26/19 19:47,"52 10th St, Los Angeles, CA 90001" +284232,Apple Airpods Headphones,1,150,11/06/19 07:18,"864 7th St, Austin, TX 73301" +284233,AAA Batteries (4-pack),3,2.99,11/14/19 14:41,"204 Elm St, San Francisco, CA 94016" +284234,Flatscreen TV,1,300,11/12/19 12:48,"762 Main St, Seattle, WA 98101" +284235,Bose SoundSport Headphones,1,99.99,11/19/19 07:59,"302 Lake St, Los Angeles, CA 90001" +284236,ThinkPad Laptop,1,999.99,11/05/19 21:26,"250 10th St, San Francisco, CA 94016" +284237,20in Monitor,1,109.99,11/02/19 15:06,"898 Elm St, Boston, MA 02215" +284238,USB-C Charging Cable,1,11.95,11/28/19 20:49,"324 Highland St, Portland, OR 97035" +284239,Flatscreen TV,1,300,11/26/19 17:47,"329 Pine St, Atlanta, GA 30301" +284240,USB-C Charging Cable,1,11.95,11/08/19 20:53,"137 Ridge St, Atlanta, GA 30301" +284241,34in Ultrawide Monitor,1,379.99,11/14/19 15:41,"312 Dogwood St, New York City, NY 10001" +284242,Apple Airpods Headphones,1,150,11/15/19 21:00,"733 Walnut St, San Francisco, CA 94016" +284243,AA Batteries (4-pack),2,3.84,11/21/19 01:25,"975 Johnson St, Austin, TX 73301" +284244,Bose SoundSport Headphones,1,99.99,11/08/19 00:35,"783 West St, Los Angeles, CA 90001" +284245,iPhone,1,700,11/19/19 11:34,"751 Elm St, Boston, MA 02215" +284246,Wired Headphones,2,11.99,11/27/19 18:04,"593 Forest St, New York City, NY 10001" +284247,AAA Batteries (4-pack),4,2.99,11/07/19 11:34,"666 Willow St, Dallas, TX 75001" +284248,Wired Headphones,1,11.99,11/24/19 12:00,"591 1st St, Seattle, WA 98101" +284249,Apple Airpods Headphones,1,150,11/19/19 13:22,"665 Washington St, Boston, MA 02215" +284250,34in Ultrawide Monitor,1,379.99,11/06/19 11:12,"303 Jefferson St, Atlanta, GA 30301" +284251,AA Batteries (4-pack),1,3.84,11/08/19 08:35,"253 North St, New York City, NY 10001" +284252,27in 4K Gaming Monitor,1,389.99,11/15/19 11:45,"283 Chestnut St, New York City, NY 10001" +284253,Apple Airpods Headphones,1,150,11/17/19 13:52,"68 Adams St, Boston, MA 02215" +284254,Bose SoundSport Headphones,1,99.99,11/28/19 15:41,"643 Walnut St, Atlanta, GA 30301" +284255,Bose SoundSport Headphones,1,99.99,11/22/19 11:59,"988 Hill St, Boston, MA 02215" +284256,34in Ultrawide Monitor,1,379.99,11/13/19 10:56,"78 Johnson St, Dallas, TX 75001" +284257,AA Batteries (4-pack),1,3.84,11/06/19 09:55,"108 Chestnut St, New York City, NY 10001" +284258,Flatscreen TV,1,300,11/03/19 01:38,"342 9th St, Atlanta, GA 30301" +284259,Lightning Charging Cable,1,14.95,11/03/19 09:34,"742 10th St, San Francisco, CA 94016" +284260,ThinkPad Laptop,1,999.99,11/30/19 09:00,"307 South St, Dallas, TX 75001" +284261,Lightning Charging Cable,1,14.95,11/18/19 12:56,"319 Washington St, Boston, MA 02215" +284262,Wired Headphones,1,11.99,11/22/19 13:33,"217 Madison St, New York City, NY 10001" +284263,Lightning Charging Cable,2,14.95,11/20/19 14:06,"249 11th St, Los Angeles, CA 90001" +284264,Bose SoundSport Headphones,1,99.99,11/13/19 18:15,"253 Johnson St, San Francisco, CA 94016" +284265,Apple Airpods Headphones,1,150,11/25/19 19:46,"887 Hill St, San Francisco, CA 94016" +284266,Lightning Charging Cable,1,14.95,11/03/19 11:58,"24 11th St, Seattle, WA 98101" +284267,Wired Headphones,1,11.99,11/25/19 21:23,"605 14th St, New York City, NY 10001" +284268,AAA Batteries (4-pack),1,2.99,11/27/19 16:58,"282 1st St, San Francisco, CA 94016" +284269,iPhone,1,700,11/29/19 19:16,"459 Highland St, Los Angeles, CA 90001" +284270,20in Monitor,1,109.99,11/09/19 11:25,"970 Meadow St, San Francisco, CA 94016" +284271,Bose SoundSport Headphones,1,99.99,11/27/19 20:20,"983 Chestnut St, New York City, NY 10001" +284271,AAA Batteries (4-pack),1,2.99,11/27/19 20:20,"983 Chestnut St, New York City, NY 10001" +284272,AAA Batteries (4-pack),1,2.99,11/15/19 06:14,"525 Washington St, New York City, NY 10001" +284273,Bose SoundSport Headphones,1,99.99,11/03/19 13:17,"185 4th St, San Francisco, CA 94016" +284274,27in FHD Monitor,1,149.99,11/18/19 21:10,"506 Dogwood St, San Francisco, CA 94016" +284275,27in FHD Monitor,1,149.99,11/15/19 19:04,"900 Sunset St, Dallas, TX 75001" +284276,Vareebadd Phone,1,400,11/30/19 22:17,"7 7th St, Portland, OR 97035" +284277,27in 4K Gaming Monitor,1,389.99,11/04/19 15:27,"467 Park St, Los Angeles, CA 90001" +284278,Lightning Charging Cable,2,14.95,11/07/19 14:29,"960 Spruce St, Dallas, TX 75001" +284279,Lightning Charging Cable,1,14.95,11/03/19 17:23,"931 Wilson St, San Francisco, CA 94016" +284280,LG Dryer,1,600.0,11/13/19 08:27,"166 9th St, Dallas, TX 75001" +284281,AA Batteries (4-pack),2,3.84,11/10/19 12:48,"253 Pine St, Dallas, TX 75001" +284282,Bose SoundSport Headphones,1,99.99,11/20/19 17:34,"793 Meadow St, Portland, OR 97035" +284283,Lightning Charging Cable,1,14.95,11/13/19 10:34,"23 Ridge St, Los Angeles, CA 90001" +284284,Wired Headphones,1,11.99,11/28/19 20:25,"60 Cedar St, Los Angeles, CA 90001" +284285,27in FHD Monitor,1,149.99,11/23/19 17:02,"728 North St, Austin, TX 73301" +284286,AAA Batteries (4-pack),1,2.99,11/25/19 01:50,"188 River St, Portland, ME 04101" +284287,USB-C Charging Cable,1,11.95,11/24/19 02:13,"701 Highland St, New York City, NY 10001" +284288,Google Phone,1,600,11/29/19 19:58,"960 Johnson St, Portland, OR 97035" +284289,Bose SoundSport Headphones,1,99.99,11/04/19 20:56,"792 Dogwood St, New York City, NY 10001" +284290,AAA Batteries (4-pack),1,2.99,11/23/19 00:40,"361 Cedar St, Austin, TX 73301" +284291,Wired Headphones,1,11.99,11/17/19 11:20,"753 5th St, Dallas, TX 75001" +284292,Wired Headphones,2,11.99,11/05/19 10:08,"676 Sunset St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +284293,34in Ultrawide Monitor,1,379.99,11/17/19 09:42,"185 Hill St, San Francisco, CA 94016" +284294,Google Phone,1,600,11/17/19 12:41,"648 Forest St, Boston, MA 02215" +284295,Flatscreen TV,1,300,11/14/19 15:23,"869 2nd St, Atlanta, GA 30301" +284296,27in 4K Gaming Monitor,1,389.99,11/26/19 19:12,"172 14th St, Boston, MA 02215" +284297,ThinkPad Laptop,1,999.99,11/23/19 07:10,"338 Washington St, Dallas, TX 75001" +284298,Google Phone,1,600,11/08/19 07:23,"311 Adams St, Los Angeles, CA 90001" +284299,AAA Batteries (4-pack),1,2.99,11/08/19 11:35,"571 12th St, Seattle, WA 98101" +284300,Bose SoundSport Headphones,1,99.99,11/26/19 15:00,"893 8th St, Los Angeles, CA 90001" +284301,Wired Headphones,1,11.99,11/15/19 22:34,"331 Spruce St, Dallas, TX 75001" +284302,AA Batteries (4-pack),5,3.84,11/18/19 19:24,"636 Adams St, Los Angeles, CA 90001" +284303,Google Phone,1,600,11/06/19 13:43,"157 11th St, Los Angeles, CA 90001" +284304,iPhone,1,700,11/03/19 22:26,"230 Cedar St, Seattle, WA 98101" +284305,Lightning Charging Cable,1,14.95,11/21/19 20:47,"775 6th St, New York City, NY 10001" +284306,AAA Batteries (4-pack),1,2.99,11/22/19 20:01,"984 Johnson St, Boston, MA 02215" +284307,Apple Airpods Headphones,1,150,11/08/19 13:30,"58 Sunset St, Austin, TX 73301" +284308,AA Batteries (4-pack),2,3.84,11/16/19 18:43,"268 Park St, San Francisco, CA 94016" +284309,Google Phone,1,600,11/04/19 21:15,"335 Pine St, Seattle, WA 98101" +284310,AAA Batteries (4-pack),1,2.99,11/04/19 19:49,"262 10th St, San Francisco, CA 94016" +284311,AA Batteries (4-pack),1,3.84,11/05/19 14:42,"916 Adams St, San Francisco, CA 94016" +284312,Flatscreen TV,1,300,11/19/19 12:57,"542 8th St, New York City, NY 10001" +284313,AA Batteries (4-pack),2,3.84,11/01/19 07:07,"457 6th St, Los Angeles, CA 90001" +284314,Google Phone,1,600,11/27/19 17:45,"691 12th St, Boston, MA 02215" +284315,Apple Airpods Headphones,1,150,11/16/19 21:48,"298 Cherry St, San Francisco, CA 94016" +284316,Apple Airpods Headphones,1,150,11/24/19 10:51,"775 Johnson St, Portland, OR 97035" +284317,AA Batteries (4-pack),2,3.84,11/08/19 22:45,"778 Jefferson St, Seattle, WA 98101" +284318,Lightning Charging Cable,1,14.95,11/12/19 19:13,"626 Johnson St, Atlanta, GA 30301" +284319,AAA Batteries (4-pack),1,2.99,11/15/19 14:27,"350 Cherry St, New York City, NY 10001" +284320,AA Batteries (4-pack),2,3.84,11/02/19 07:06,"513 10th St, San Francisco, CA 94016" +284321,AAA Batteries (4-pack),1,2.99,11/01/19 22:18,"101 1st St, Boston, MA 02215" +284322,AAA Batteries (4-pack),1,2.99,11/13/19 18:21,"848 West St, Seattle, WA 98101" +284323,Lightning Charging Cable,1,14.95,11/04/19 22:00,"912 Main St, Austin, TX 73301" +284324,AAA Batteries (4-pack),1,2.99,11/27/19 18:59,"64 5th St, San Francisco, CA 94016" +284325,ThinkPad Laptop,1,999.99,11/06/19 22:58,"393 Wilson St, Los Angeles, CA 90001" +284326,AAA Batteries (4-pack),1,2.99,11/08/19 13:03,"606 River St, New York City, NY 10001" +284327,Lightning Charging Cable,1,14.95,11/24/19 11:17,"949 Walnut St, Dallas, TX 75001" +284328,AAA Batteries (4-pack),1,2.99,11/14/19 20:35,"222 2nd St, Boston, MA 02215" +284329,iPhone,1,700,11/10/19 07:35,"706 Hill St, Austin, TX 73301" +284330,Bose SoundSport Headphones,1,99.99,11/22/19 22:04,"466 Lincoln St, Los Angeles, CA 90001" +284331,Wired Headphones,2,11.99,11/11/19 22:46,"3 Highland St, Los Angeles, CA 90001" +284332,AAA Batteries (4-pack),3,2.99,11/16/19 11:30,"830 4th St, New York City, NY 10001" +284333,USB-C Charging Cable,1,11.95,11/28/19 14:19,"582 Park St, San Francisco, CA 94016" +284334,iPhone,1,700,11/20/19 07:53,"589 1st St, Portland, OR 97035" +284335,Lightning Charging Cable,1,14.95,11/09/19 19:27,"11 Walnut St, Los Angeles, CA 90001" +284336,AAA Batteries (4-pack),1,2.99,11/22/19 21:30,"147 8th St, San Francisco, CA 94016" +284337,USB-C Charging Cable,1,11.95,11/23/19 09:27,"636 Hickory St, Boston, MA 02215" +284338,iPhone,1,700,11/01/19 16:07,"801 Spruce St, San Francisco, CA 94016" +284339,Lightning Charging Cable,1,14.95,11/15/19 21:18,"315 Elm St, Dallas, TX 75001" +284340,Google Phone,1,600,11/04/19 14:21,"417 Cedar St, Atlanta, GA 30301" +284341,20in Monitor,1,109.99,11/30/19 22:10,"843 Meadow St, Portland, OR 97035" +284342,USB-C Charging Cable,1,11.95,11/02/19 20:58,"53 Church St, San Francisco, CA 94016" +284343,Bose SoundSport Headphones,1,99.99,11/15/19 15:43,"115 Pine St, New York City, NY 10001" +284344,Apple Airpods Headphones,1,150,11/03/19 18:49,"486 1st St, New York City, NY 10001" +284345,USB-C Charging Cable,1,11.95,11/02/19 18:15,"874 Hill St, Atlanta, GA 30301" +284346,34in Ultrawide Monitor,1,379.99,11/25/19 14:47,"610 Cherry St, Atlanta, GA 30301" +284347,USB-C Charging Cable,1,11.95,11/04/19 17:32,"312 Hickory St, Boston, MA 02215" +284348,USB-C Charging Cable,1,11.95,11/20/19 16:17,"646 Lakeview St, New York City, NY 10001" +284349,Apple Airpods Headphones,1,150,11/08/19 22:56,"657 Church St, Austin, TX 73301" +284350,USB-C Charging Cable,1,11.95,11/29/19 21:16,"448 Spruce St, San Francisco, CA 94016" +284351,Lightning Charging Cable,1,14.95,11/05/19 18:52,"686 Walnut St, Portland, OR 97035" +284352,Lightning Charging Cable,1,14.95,11/26/19 17:17,"783 Cedar St, Dallas, TX 75001" +284353,AAA Batteries (4-pack),1,2.99,11/04/19 15:22,"303 Spruce St, San Francisco, CA 94016" +284354,34in Ultrawide Monitor,1,379.99,11/10/19 14:43,"194 2nd St, San Francisco, CA 94016" +284355,Macbook Pro Laptop,1,1700,11/15/19 06:03,"334 Forest St, San Francisco, CA 94016" +284356,Lightning Charging Cable,1,14.95,11/19/19 13:37,"305 Sunset St, Dallas, TX 75001" +284357,20in Monitor,1,109.99,11/06/19 23:56,"631 Highland St, Dallas, TX 75001" +284358,Wired Headphones,1,11.99,11/08/19 14:22,"298 Center St, Boston, MA 02215" +284358,USB-C Charging Cable,1,11.95,11/08/19 14:22,"298 Center St, Boston, MA 02215" +284359,AA Batteries (4-pack),1,3.84,11/23/19 12:20,"145 Hickory St, Los Angeles, CA 90001" +284360,AA Batteries (4-pack),2,3.84,11/01/19 18:13,"374 Elm St, San Francisco, CA 94016" +284361,Wired Headphones,1,11.99,11/23/19 20:02,"955 Forest St, Boston, MA 02215" +284362,USB-C Charging Cable,2,11.95,11/26/19 01:00,"749 Pine St, Atlanta, GA 30301" +284363,27in FHD Monitor,1,149.99,11/20/19 22:59,"954 Pine St, Atlanta, GA 30301" +284364,34in Ultrawide Monitor,1,379.99,11/27/19 18:36,"126 Spruce St, San Francisco, CA 94016" +284365,27in 4K Gaming Monitor,1,389.99,11/01/19 12:49,"653 Church St, Los Angeles, CA 90001" +284366,Flatscreen TV,1,300,11/07/19 21:02,"89 4th St, Boston, MA 02215" +284367,USB-C Charging Cable,1,11.95,11/25/19 11:27,"389 Walnut St, Austin, TX 73301" +284368,Lightning Charging Cable,1,14.95,11/16/19 11:50,"369 13th St, San Francisco, CA 94016" +284369,USB-C Charging Cable,1,11.95,11/17/19 22:38,"168 13th St, New York City, NY 10001" +284370,Bose SoundSport Headphones,1,99.99,11/06/19 19:47,"378 2nd St, San Francisco, CA 94016" +284371,AAA Batteries (4-pack),6,2.99,11/24/19 15:26,"901 Dogwood St, San Francisco, CA 94016" +284372,USB-C Charging Cable,1,11.95,11/29/19 12:50,"605 7th St, San Francisco, CA 94016" +284373,Macbook Pro Laptop,1,1700,11/24/19 05:40,"116 Maple St, San Francisco, CA 94016" +284374,AAA Batteries (4-pack),1,2.99,11/11/19 14:23,"326 Jefferson St, New York City, NY 10001" +284375,Bose SoundSport Headphones,1,99.99,11/24/19 19:10,"914 Chestnut St, Dallas, TX 75001" +284376,34in Ultrawide Monitor,1,379.99,11/25/19 12:33,"626 Lakeview St, San Francisco, CA 94016" +284377,Lightning Charging Cable,1,14.95,11/03/19 10:58,"209 7th St, Los Angeles, CA 90001" +284378,Wired Headphones,1,11.99,11/21/19 12:36,"729 Jefferson St, Los Angeles, CA 90001" +284379,USB-C Charging Cable,1,11.95,11/20/19 07:58,"469 4th St, Los Angeles, CA 90001" +284380,Bose SoundSport Headphones,1,99.99,11/08/19 11:14,"717 Center St, San Francisco, CA 94016" +284381,Lightning Charging Cable,1,14.95,11/18/19 11:07,"262 1st St, Boston, MA 02215" +284382,AA Batteries (4-pack),3,3.84,11/13/19 20:03,"795 11th St, Austin, TX 73301" +284383,Apple Airpods Headphones,1,150,11/26/19 11:04,"33 Center St, San Francisco, CA 94016" +284384,USB-C Charging Cable,1,11.95,11/28/19 18:11,"811 Willow St, Los Angeles, CA 90001" +284385,Google Phone,1,600,11/16/19 10:39,"448 2nd St, Los Angeles, CA 90001" +284385,USB-C Charging Cable,1,11.95,11/16/19 10:39,"448 2nd St, Los Angeles, CA 90001" +284386,USB-C Charging Cable,1,11.95,11/29/19 16:09,"38 14th St, Los Angeles, CA 90001" +284387,27in 4K Gaming Monitor,1,389.99,11/21/19 08:39,"308 Jefferson St, Los Angeles, CA 90001" +284388,USB-C Charging Cable,1,11.95,11/29/19 07:47,"234 10th St, New York City, NY 10001" +284389,Google Phone,1,600,11/15/19 15:24,"414 Center St, Dallas, TX 75001" +284390,Bose SoundSport Headphones,1,99.99,11/10/19 07:11,"118 North St, Austin, TX 73301" +284391,Lightning Charging Cable,2,14.95,11/13/19 18:15,"497 Madison St, San Francisco, CA 94016" +284392,AAA Batteries (4-pack),1,2.99,11/26/19 11:34,"506 Wilson St, Seattle, WA 98101" +284393,Lightning Charging Cable,1,14.95,11/02/19 22:14,"732 Dogwood St, New York City, NY 10001" +284394,AA Batteries (4-pack),1,3.84,11/03/19 20:55,"973 Maple St, San Francisco, CA 94016" +284395,USB-C Charging Cable,1,11.95,11/09/19 23:45,"359 Wilson St, Portland, OR 97035" +284396,Flatscreen TV,1,300,11/15/19 11:52,"751 Center St, Atlanta, GA 30301" +284397,Apple Airpods Headphones,1,150,11/19/19 11:57,"721 Willow St, Portland, OR 97035" +284398,Wired Headphones,1,11.99,11/04/19 09:22,"364 Elm St, Los Angeles, CA 90001" +284399,Apple Airpods Headphones,1,150,11/01/19 15:02,"923 Dogwood St, San Francisco, CA 94016" +284400,AAA Batteries (4-pack),3,2.99,11/17/19 10:11,"813 Center St, Seattle, WA 98101" +284401,Lightning Charging Cable,1,14.95,11/11/19 20:51,"279 13th St, Boston, MA 02215" +284402,AAA Batteries (4-pack),4,2.99,11/25/19 19:37,"623 Main St, Seattle, WA 98101" +284403,Apple Airpods Headphones,1,150,11/24/19 15:01,"298 Park St, Seattle, WA 98101" +284404,USB-C Charging Cable,1,11.95,11/21/19 06:14,"328 5th St, Portland, ME 04101" +284405,20in Monitor,1,109.99,11/21/19 19:33,"565 4th St, Seattle, WA 98101" +284406,AAA Batteries (4-pack),3,2.99,11/24/19 21:31,"961 West St, San Francisco, CA 94016" +284407,AAA Batteries (4-pack),1,2.99,11/19/19 15:50,"150 4th St, Atlanta, GA 30301" +284408,AA Batteries (4-pack),1,3.84,11/28/19 21:18,"622 Jefferson St, New York City, NY 10001" +284409,AA Batteries (4-pack),2,3.84,11/17/19 09:38,"943 Chestnut St, Seattle, WA 98101" +284410,Wired Headphones,1,11.99,11/26/19 10:47,"928 5th St, Seattle, WA 98101" +284411,AAA Batteries (4-pack),1,2.99,11/27/19 22:09,"270 Dogwood St, San Francisco, CA 94016" +284412,USB-C Charging Cable,1,11.95,11/12/19 21:04,"320 Willow St, San Francisco, CA 94016" +284413,34in Ultrawide Monitor,1,379.99,11/23/19 12:39,"335 Spruce St, New York City, NY 10001" +284414,Apple Airpods Headphones,1,150,11/18/19 08:52,"798 2nd St, San Francisco, CA 94016" +284415,20in Monitor,1,109.99,11/26/19 12:48,"123 Cherry St, Los Angeles, CA 90001" +284416,Apple Airpods Headphones,1,150,11/04/19 12:23,"686 Lincoln St, Los Angeles, CA 90001" +284417,USB-C Charging Cable,1,11.95,11/27/19 02:18,"745 10th St, Portland, OR 97035" +284418,AA Batteries (4-pack),1,3.84,11/27/19 09:41,"625 Washington St, Dallas, TX 75001" +284419,AA Batteries (4-pack),1,3.84,11/26/19 17:57,"177 4th St, San Francisco, CA 94016" +284420,27in FHD Monitor,1,149.99,11/17/19 17:22,"724 Dogwood St, San Francisco, CA 94016" +284421,USB-C Charging Cable,1,11.95,11/09/19 16:14,"72 10th St, Boston, MA 02215" +284422,Lightning Charging Cable,1,14.95,11/26/19 11:39,"40 1st St, Portland, OR 97035" +284423,Wired Headphones,1,11.99,11/20/19 22:59,"908 Spruce St, New York City, NY 10001" +284424,Apple Airpods Headphones,1,150,11/09/19 18:30,"639 Washington St, Los Angeles, CA 90001" +284425,Bose SoundSport Headphones,1,99.99,11/07/19 09:17,"547 Jefferson St, Boston, MA 02215" +,,,,, +284426,Wired Headphones,2,11.99,11/29/19 16:24,"116 Highland St, San Francisco, CA 94016" +284427,Lightning Charging Cable,1,14.95,11/19/19 05:29,"319 Church St, New York City, NY 10001" +284428,Apple Airpods Headphones,1,150,11/27/19 19:28,"349 Lake St, New York City, NY 10001" +284429,Apple Airpods Headphones,1,150,11/19/19 15:57,"683 13th St, Boston, MA 02215" +284430,ThinkPad Laptop,1,999.99,11/08/19 14:33,"120 Sunset St, Portland, ME 04101" +284431,AAA Batteries (4-pack),1,2.99,11/21/19 16:11,"877 11th St, Portland, OR 97035" +284432,AAA Batteries (4-pack),1,2.99,11/23/19 08:43,"212 Ridge St, Atlanta, GA 30301" +284433,USB-C Charging Cable,1,11.95,11/16/19 20:24,"164 Spruce St, Dallas, TX 75001" +284434,USB-C Charging Cable,1,11.95,11/24/19 09:57,"919 Hill St, Boston, MA 02215" +284435,AAA Batteries (4-pack),1,2.99,11/16/19 18:15,"901 Ridge St, Los Angeles, CA 90001" +284436,USB-C Charging Cable,1,11.95,11/12/19 10:53,"851 Center St, Seattle, WA 98101" +284437,27in FHD Monitor,1,149.99,11/28/19 23:22,"817 Elm St, Dallas, TX 75001" +284438,Bose SoundSport Headphones,1,99.99,11/02/19 23:24,"111 River St, San Francisco, CA 94016" +284439,USB-C Charging Cable,1,11.95,11/17/19 13:54,"327 Jefferson St, Atlanta, GA 30301" +284439,AA Batteries (4-pack),1,3.84,11/17/19 13:54,"327 Jefferson St, Atlanta, GA 30301" +284440,Apple Airpods Headphones,1,150,11/21/19 20:08,"261 Lake St, Dallas, TX 75001" +284441,Lightning Charging Cable,1,14.95,11/27/19 19:14,"12 Center St, Dallas, TX 75001" +284442,AAA Batteries (4-pack),3,2.99,11/29/19 09:14,"357 Ridge St, Atlanta, GA 30301" +284443,27in 4K Gaming Monitor,1,389.99,11/17/19 15:18,"109 Forest St, Seattle, WA 98101" +284444,27in FHD Monitor,1,149.99,11/06/19 17:00,"599 Center St, Los Angeles, CA 90001" +284445,Wired Headphones,1,11.99,11/05/19 13:23,"582 Spruce St, New York City, NY 10001" +284446,AA Batteries (4-pack),1,3.84,11/29/19 20:37,"551 5th St, Dallas, TX 75001" +284447,ThinkPad Laptop,1,999.99,11/27/19 07:59,"707 South St, San Francisco, CA 94016" +284448,AAA Batteries (4-pack),4,2.99,11/27/19 20:18,"305 Spruce St, Atlanta, GA 30301" +284449,Lightning Charging Cable,1,14.95,11/21/19 22:28,"676 9th St, Boston, MA 02215" +284450,Wired Headphones,1,11.99,11/17/19 16:37,"371 Elm St, Dallas, TX 75001" +284451,USB-C Charging Cable,1,11.95,11/11/19 07:22,"411 1st St, Seattle, WA 98101" +284452,Apple Airpods Headphones,1,150,11/11/19 17:24,"882 7th St, Seattle, WA 98101" +284453,27in 4K Gaming Monitor,1,389.99,11/16/19 15:12,"450 Dogwood St, New York City, NY 10001" +284454,Macbook Pro Laptop,1,1700,11/08/19 16:30,"857 Elm St, San Francisco, CA 94016" +284455,ThinkPad Laptop,1,999.99,11/19/19 08:50,"610 8th St, New York City, NY 10001" +284456,USB-C Charging Cable,1,11.95,11/29/19 12:33,"95 Lincoln St, Austin, TX 73301" +284457,Lightning Charging Cable,1,14.95,11/26/19 11:33,"473 14th St, New York City, NY 10001" +284458,USB-C Charging Cable,1,11.95,11/11/19 08:36,"75 Jackson St, Portland, ME 04101" +284459,Macbook Pro Laptop,1,1700,11/09/19 20:42,"167 Johnson St, Los Angeles, CA 90001" +284460,AA Batteries (4-pack),1,3.84,11/03/19 19:00,"845 Maple St, New York City, NY 10001" +284461,Apple Airpods Headphones,1,150,11/20/19 08:33,"759 4th St, Portland, ME 04101" +284462,Wired Headphones,1,11.99,11/26/19 14:44,"899 Wilson St, San Francisco, CA 94016" +284463,27in FHD Monitor,1,149.99,11/22/19 19:15,"172 Adams St, Los Angeles, CA 90001" +284464,AA Batteries (4-pack),2,3.84,11/08/19 05:40,"381 13th St, San Francisco, CA 94016" +284465,Vareebadd Phone,1,400,11/25/19 14:49,"169 Washington St, Atlanta, GA 30301" +284466,Apple Airpods Headphones,1,150,11/25/19 10:46,"959 7th St, San Francisco, CA 94016" +284467,27in 4K Gaming Monitor,1,389.99,11/16/19 18:49,"677 River St, Dallas, TX 75001" +284468,AAA Batteries (4-pack),2,2.99,11/03/19 18:49,"848 10th St, Austin, TX 73301" +284469,Google Phone,1,600,11/22/19 08:24,"413 6th St, Dallas, TX 75001" +284469,USB-C Charging Cable,1,11.95,11/22/19 08:24,"413 6th St, Dallas, TX 75001" +284469,Wired Headphones,1,11.99,11/22/19 08:24,"413 6th St, Dallas, TX 75001" +284470,27in FHD Monitor,1,149.99,11/18/19 15:49,"50 Forest St, Atlanta, GA 30301" +284471,Bose SoundSport Headphones,1,99.99,11/15/19 21:26,"721 6th St, San Francisco, CA 94016" +284472,Apple Airpods Headphones,1,150,11/13/19 10:24,"37 10th St, Dallas, TX 75001" +284473,Lightning Charging Cable,2,14.95,11/28/19 18:01,"827 Center St, Boston, MA 02215" +284474,34in Ultrawide Monitor,1,379.99,11/18/19 18:42,"709 Forest St, Seattle, WA 98101" +284475,USB-C Charging Cable,1,11.95,11/13/19 01:10,"933 Jackson St, Austin, TX 73301" +284476,Apple Airpods Headphones,1,150,11/27/19 21:30,"827 Lakeview St, San Francisco, CA 94016" +284477,Flatscreen TV,1,300,11/26/19 14:33,"325 Main St, Los Angeles, CA 90001" +284478,Apple Airpods Headphones,1,150,11/13/19 02:19,"275 Main St, New York City, NY 10001" +284479,Lightning Charging Cable,2,14.95,11/05/19 17:03,"124 Forest St, Atlanta, GA 30301" +284480,Google Phone,1,600,11/03/19 14:40,"586 Pine St, Seattle, WA 98101" +284481,27in 4K Gaming Monitor,1,389.99,11/18/19 10:27,"96 Elm St, Seattle, WA 98101" +284482,Wired Headphones,1,11.99,11/23/19 22:53,"247 Center St, New York City, NY 10001" +284483,Wired Headphones,1,11.99,11/15/19 19:07,"991 Meadow St, Portland, OR 97035" +284484,Bose SoundSport Headphones,1,99.99,11/07/19 17:00,"899 Park St, Atlanta, GA 30301" +284485,AA Batteries (4-pack),1,3.84,11/23/19 08:41,"624 Main St, Boston, MA 02215" +284486,27in FHD Monitor,1,149.99,11/12/19 16:07,"476 12th St, San Francisco, CA 94016" +284487,Bose SoundSport Headphones,1,99.99,11/13/19 23:46,"875 Meadow St, Los Angeles, CA 90001" +284488,Macbook Pro Laptop,1,1700,11/29/19 20:26,"877 Ridge St, Boston, MA 02215" +284489,LG Dryer,1,600.0,11/21/19 02:49,"189 Walnut St, San Francisco, CA 94016" +284490,USB-C Charging Cable,1,11.95,11/25/19 15:25,"836 Dogwood St, San Francisco, CA 94016" +284491,AAA Batteries (4-pack),1,2.99,11/15/19 01:31,"28 Lakeview St, Los Angeles, CA 90001" +284492,34in Ultrawide Monitor,1,379.99,11/17/19 11:33,"733 Spruce St, Portland, ME 04101" +284493,Lightning Charging Cable,1,14.95,11/13/19 12:22,"743 Adams St, New York City, NY 10001" +284494,USB-C Charging Cable,1,11.95,11/07/19 06:49,"942 Meadow St, New York City, NY 10001" +284495,iPhone,1,700,11/20/19 06:16,"978 Spruce St, Dallas, TX 75001" +284495,Lightning Charging Cable,1,14.95,11/20/19 06:16,"978 Spruce St, Dallas, TX 75001" +284496,AAA Batteries (4-pack),2,2.99,11/01/19 19:41,"903 Maple St, Seattle, WA 98101" +284497,USB-C Charging Cable,1,11.95,11/06/19 08:19,"331 Madison St, San Francisco, CA 94016" +284497,AA Batteries (4-pack),1,3.84,11/06/19 08:19,"331 Madison St, San Francisco, CA 94016" +284498,Apple Airpods Headphones,1,150,11/14/19 01:05,"991 8th St, New York City, NY 10001" +284499,Bose SoundSport Headphones,1,99.99,11/17/19 14:03,"328 1st St, San Francisco, CA 94016" +284500,27in FHD Monitor,1,149.99,11/18/19 15:41,"449 Hickory St, Dallas, TX 75001" +284501,27in 4K Gaming Monitor,1,389.99,11/24/19 18:38,"948 2nd St, Portland, OR 97035" +284502,USB-C Charging Cable,1,11.95,11/27/19 23:18,"127 Park St, New York City, NY 10001" +284503,ThinkPad Laptop,1,999.99,11/27/19 13:02,"407 Dogwood St, Atlanta, GA 30301" +284504,AA Batteries (4-pack),1,3.84,11/18/19 11:43,"876 North St, Boston, MA 02215" +284505,Wired Headphones,1,11.99,11/07/19 20:17,"384 Pine St, Dallas, TX 75001" +284506,Wired Headphones,1,11.99,11/29/19 13:03,"492 6th St, San Francisco, CA 94016" +284507,Google Phone,1,600,11/23/19 20:16,"151 Wilson St, New York City, NY 10001" +284507,USB-C Charging Cable,1,11.95,11/23/19 20:16,"151 Wilson St, New York City, NY 10001" +284507,Wired Headphones,1,11.99,11/23/19 20:16,"151 Wilson St, New York City, NY 10001" +284508,AAA Batteries (4-pack),1,2.99,11/02/19 10:49,"402 Meadow St, Boston, MA 02215" +284509,AA Batteries (4-pack),1,3.84,11/09/19 23:37,"471 Maple St, San Francisco, CA 94016" +284510,34in Ultrawide Monitor,1,379.99,11/30/19 19:58,"456 Ridge St, San Francisco, CA 94016" +284511,USB-C Charging Cable,2,11.95,11/02/19 13:02,"550 Lake St, Los Angeles, CA 90001" +284512,Lightning Charging Cable,1,14.95,11/02/19 22:46,"726 Hill St, New York City, NY 10001" +284513,AA Batteries (4-pack),1,3.84,11/24/19 11:19,"835 5th St, Los Angeles, CA 90001" +284514,Apple Airpods Headphones,1,150,11/25/19 14:23,"910 Chestnut St, Atlanta, GA 30301" +284515,34in Ultrawide Monitor,1,379.99,11/12/19 19:28,"894 River St, Seattle, WA 98101" +284516,AA Batteries (4-pack),1,3.84,11/10/19 17:21,"529 West St, New York City, NY 10001" +284517,Google Phone,1,600,11/18/19 10:50,"457 14th St, Boston, MA 02215" +284517,USB-C Charging Cable,1,11.95,11/18/19 10:50,"457 14th St, Boston, MA 02215" +284518,AA Batteries (4-pack),1,3.84,11/12/19 08:09,"587 13th St, Atlanta, GA 30301" +284519,Flatscreen TV,1,300,11/11/19 06:01,"539 River St, San Francisco, CA 94016" +284520,Bose SoundSport Headphones,1,99.99,11/19/19 19:11,"221 South St, San Francisco, CA 94016" +,,,,, +284521,iPhone,1,700,11/07/19 13:12,"276 Johnson St, Seattle, WA 98101" +284522,USB-C Charging Cable,1,11.95,11/21/19 17:56,"989 Spruce St, San Francisco, CA 94016" +284523,AAA Batteries (4-pack),2,2.99,11/08/19 22:56,"198 13th St, San Francisco, CA 94016" +284524,AAA Batteries (4-pack),1,2.99,11/29/19 12:47,"723 Cedar St, Portland, OR 97035" +284525,20in Monitor,1,109.99,11/19/19 14:32,"775 Cherry St, Boston, MA 02215" +284526,Bose SoundSport Headphones,1,99.99,11/28/19 06:47,"985 Lincoln St, Atlanta, GA 30301" +284527,Wired Headphones,1,11.99,11/19/19 16:16,"471 Washington St, Boston, MA 02215" +284528,Apple Airpods Headphones,1,150,11/30/19 20:41,"967 9th St, Los Angeles, CA 90001" +284529,AA Batteries (4-pack),1,3.84,11/28/19 19:43,"116 Forest St, Los Angeles, CA 90001" +284530,27in FHD Monitor,1,149.99,11/15/19 21:35,"531 Cedar St, San Francisco, CA 94016" +284531,ThinkPad Laptop,1,999.99,11/22/19 19:33,"582 4th St, Atlanta, GA 30301" +284532,Google Phone,1,600,11/14/19 22:29,"538 2nd St, New York City, NY 10001" +284533,Google Phone,1,600,11/12/19 09:01,"822 North St, Atlanta, GA 30301" +284534,iPhone,1,700,11/26/19 15:52,"372 Lake St, New York City, NY 10001" +284535,AAA Batteries (4-pack),1,2.99,11/17/19 12:05,"380 Church St, Boston, MA 02215" +284536,Wired Headphones,1,11.99,11/09/19 15:43,"45 Main St, Los Angeles, CA 90001" +284537,27in 4K Gaming Monitor,1,389.99,11/04/19 18:52,"209 8th St, New York City, NY 10001" +284538,Wired Headphones,2,11.99,11/22/19 19:21,"862 12th St, Portland, OR 97035" +284539,AA Batteries (4-pack),1,3.84,11/21/19 23:19,"473 Walnut St, Boston, MA 02215" +284540,Lightning Charging Cable,1,14.95,11/18/19 10:44,"962 Pine St, New York City, NY 10001" +284541,AAA Batteries (4-pack),1,2.99,11/07/19 18:44,"581 Forest St, Los Angeles, CA 90001" +284542,USB-C Charging Cable,1,11.95,11/04/19 00:43,"423 Sunset St, San Francisco, CA 94016" +284543,USB-C Charging Cable,1,11.95,11/10/19 23:21,"680 14th St, Boston, MA 02215" +284544,AAA Batteries (4-pack),2,2.99,11/27/19 01:19,"847 Jackson St, San Francisco, CA 94016" +284545,27in FHD Monitor,1,149.99,11/19/19 11:34,"505 Center St, Boston, MA 02215" +284546,AA Batteries (4-pack),1,3.84,11/21/19 03:58,"998 14th St, Seattle, WA 98101" +284547,AA Batteries (4-pack),2,3.84,11/18/19 22:02,"622 Church St, Boston, MA 02215" +284548,AA Batteries (4-pack),2,3.84,11/26/19 17:42,"249 Willow St, San Francisco, CA 94016" +284549,AA Batteries (4-pack),1,3.84,11/25/19 12:28,"368 Park St, Los Angeles, CA 90001" +284550,Vareebadd Phone,1,400,11/02/19 10:30,"366 Highland St, Atlanta, GA 30301" +284550,USB-C Charging Cable,1,11.95,11/02/19 10:30,"366 Highland St, Atlanta, GA 30301" +284551,Lightning Charging Cable,1,14.95,11/30/19 15:29,"826 Jackson St, Atlanta, GA 30301" +284552,AAA Batteries (4-pack),1,2.99,11/08/19 20:37,"308 River St, Atlanta, GA 30301" +284553,iPhone,1,700,11/30/19 09:27,"492 Hill St, Atlanta, GA 30301" +284554,Bose SoundSport Headphones,1,99.99,11/14/19 15:04,"98 10th St, Atlanta, GA 30301" +284555,27in 4K Gaming Monitor,1,389.99,11/08/19 19:28,"331 Johnson St, New York City, NY 10001" +284556,AA Batteries (4-pack),2,3.84,11/13/19 19:30,"556 2nd St, New York City, NY 10001" +284557,Lightning Charging Cable,1,14.95,11/21/19 11:26,"635 Madison St, Los Angeles, CA 90001" +284558,Apple Airpods Headphones,1,150,11/04/19 22:46,"311 12th St, Seattle, WA 98101" +284559,Bose SoundSport Headphones,1,99.99,11/14/19 11:35,"171 4th St, Seattle, WA 98101" +284560,34in Ultrawide Monitor,1,379.99,11/23/19 15:29,"574 West St, Portland, ME 04101" +284561,Bose SoundSport Headphones,1,99.99,11/22/19 04:46,"111 7th St, Los Angeles, CA 90001" +284562,AA Batteries (4-pack),2,3.84,11/27/19 02:32,"522 Wilson St, San Francisco, CA 94016" +284563,LG Dryer,1,600.0,11/08/19 19:09,"406 Lincoln St, San Francisco, CA 94016" +284564,Macbook Pro Laptop,1,1700,11/30/19 13:43,"7 Pine St, Portland, OR 97035" +284565,34in Ultrawide Monitor,1,379.99,11/04/19 14:45,"904 1st St, Seattle, WA 98101" +284565,Apple Airpods Headphones,1,150,11/04/19 14:45,"904 1st St, Seattle, WA 98101" +284566,ThinkPad Laptop,1,999.99,11/11/19 09:56,"537 4th St, San Francisco, CA 94016" +284567,LG Washing Machine,1,600.0,11/18/19 11:28,"266 Willow St, Los Angeles, CA 90001" +284568,AAA Batteries (4-pack),2,2.99,11/24/19 17:51,"941 5th St, Austin, TX 73301" +284569,Wired Headphones,1,11.99,11/27/19 21:25,"702 Cherry St, Seattle, WA 98101" +284570,Wired Headphones,1,11.99,11/12/19 09:57,"668 Ridge St, Seattle, WA 98101" +284571,Wired Headphones,1,11.99,11/07/19 18:24,"665 Park St, San Francisco, CA 94016" +284572,Lightning Charging Cable,1,14.95,11/18/19 23:50,"91 11th St, San Francisco, CA 94016" +284573,AA Batteries (4-pack),1,3.84,11/07/19 19:04,"173 Walnut St, San Francisco, CA 94016" +284574,AA Batteries (4-pack),1,3.84,11/29/19 15:04,"423 Sunset St, Austin, TX 73301" +284575,20in Monitor,1,109.99,11/01/19 17:56,"470 Washington St, New York City, NY 10001" +284576,AA Batteries (4-pack),1,3.84,11/23/19 11:45,"349 Pine St, Los Angeles, CA 90001" +284577,Bose SoundSport Headphones,1,99.99,11/11/19 19:32,"905 Hickory St, Los Angeles, CA 90001" +284578,Apple Airpods Headphones,1,150,11/30/19 09:43,"382 Washington St, New York City, NY 10001" +284579,USB-C Charging Cable,1,11.95,11/15/19 14:44,"173 Highland St, San Francisco, CA 94016" +284580,Wired Headphones,1,11.99,11/13/19 12:38,"438 Walnut St, Portland, OR 97035" +284581,iPhone,1,700,11/30/19 22:54,"160 Lincoln St, Los Angeles, CA 90001" +284582,Google Phone,1,600,11/12/19 08:06,"585 2nd St, Portland, OR 97035" +284582,USB-C Charging Cable,1,11.95,11/12/19 08:06,"585 2nd St, Portland, OR 97035" +284583,iPhone,1,700,11/20/19 16:46,"838 Washington St, San Francisco, CA 94016" +284583,Apple Airpods Headphones,1,150,11/20/19 16:46,"838 Washington St, San Francisco, CA 94016" +284584,Flatscreen TV,1,300,11/20/19 10:51,"379 Ridge St, Portland, OR 97035" +284585,AA Batteries (4-pack),1,3.84,11/08/19 23:02,"573 Lincoln St, New York City, NY 10001" +284586,Apple Airpods Headphones,1,150,11/02/19 20:10,"597 10th St, Los Angeles, CA 90001" +284587,AAA Batteries (4-pack),1,2.99,11/19/19 12:29,"43 Spruce St, San Francisco, CA 94016" +284588,Bose SoundSport Headphones,1,99.99,11/06/19 21:30,"37 Lakeview St, Atlanta, GA 30301" +284589,AAA Batteries (4-pack),2,2.99,11/16/19 22:53,"391 Walnut St, San Francisco, CA 94016" +284590,27in 4K Gaming Monitor,1,389.99,11/15/19 13:11,"331 7th St, Seattle, WA 98101" +284591,Google Phone,1,600,11/14/19 12:52,"190 Maple St, San Francisco, CA 94016" +284592,AA Batteries (4-pack),2,3.84,11/01/19 22:21,"565 Sunset St, New York City, NY 10001" +284593,Macbook Pro Laptop,1,1700,11/17/19 09:49,"365 Pine St, Los Angeles, CA 90001" +284594,Bose SoundSport Headphones,1,99.99,11/06/19 20:52,"892 Willow St, Boston, MA 02215" +284595,Lightning Charging Cable,1,14.95,11/27/19 21:31,"382 Ridge St, Los Angeles, CA 90001" +284596,AA Batteries (4-pack),1,3.84,11/19/19 18:18,"32 Park St, New York City, NY 10001" +284597,AAA Batteries (4-pack),1,2.99,11/19/19 15:10,"848 Hill St, San Francisco, CA 94016" +284598,Wired Headphones,1,11.99,11/29/19 15:21,"988 Sunset St, Boston, MA 02215" +284599,AA Batteries (4-pack),1,3.84,11/06/19 12:50,"855 Jefferson St, Los Angeles, CA 90001" +284600,Wired Headphones,1,11.99,11/05/19 17:03,"859 5th St, New York City, NY 10001" +284601,Macbook Pro Laptop,1,1700,11/16/19 16:31,"426 Dogwood St, Dallas, TX 75001" +284602,27in 4K Gaming Monitor,1,389.99,11/22/19 22:13,"570 Meadow St, San Francisco, CA 94016" +284603,Flatscreen TV,1,300,11/06/19 19:20,"162 Willow St, Dallas, TX 75001" +284604,34in Ultrawide Monitor,1,379.99,11/05/19 20:32,"289 West St, Boston, MA 02215" +284605,27in FHD Monitor,1,149.99,11/27/19 03:02,"434 Lake St, San Francisco, CA 94016" +284606,Bose SoundSport Headphones,1,99.99,11/23/19 18:34,"164 7th St, Los Angeles, CA 90001" +284607,27in 4K Gaming Monitor,1,389.99,11/16/19 19:33,"776 Hill St, Austin, TX 73301" +284608,Bose SoundSport Headphones,1,99.99,11/19/19 08:45,"702 Walnut St, San Francisco, CA 94016" +284609,Apple Airpods Headphones,1,150,11/10/19 17:34,"288 Cedar St, San Francisco, CA 94016" +284610,Wired Headphones,1,11.99,11/20/19 19:34,"769 Center St, Portland, OR 97035" +284611,AAA Batteries (4-pack),1,2.99,11/02/19 22:17,"609 Cherry St, Atlanta, GA 30301" +284612,Flatscreen TV,1,300,11/01/19 19:31,"159 5th St, Los Angeles, CA 90001" +284613,Google Phone,1,600,11/29/19 16:59,"21 14th St, Atlanta, GA 30301" +284614,AA Batteries (4-pack),1,3.84,11/12/19 16:28,"49 Sunset St, Portland, OR 97035" +284615,ThinkPad Laptop,1,999.99,11/09/19 09:56,"281 Johnson St, Seattle, WA 98101" +284616,Wired Headphones,1,11.99,11/08/19 17:32,"985 Willow St, New York City, NY 10001" +284617,Lightning Charging Cable,1,14.95,11/29/19 17:07,"91 Pine St, Portland, OR 97035" +284618,27in 4K Gaming Monitor,1,389.99,11/19/19 23:44,"234 Park St, Dallas, TX 75001" +284619,27in 4K Gaming Monitor,1,389.99,11/06/19 08:51,"450 Sunset St, New York City, NY 10001" +284620,AAA Batteries (4-pack),1,2.99,11/23/19 17:32,"60 Center St, San Francisco, CA 94016" +284621,34in Ultrawide Monitor,1,379.99,11/03/19 08:50,"839 Pine St, Los Angeles, CA 90001" +284622,Apple Airpods Headphones,1,150,11/12/19 12:21,"145 Main St, San Francisco, CA 94016" +284623,Bose SoundSport Headphones,1,99.99,11/25/19 19:57,"625 6th St, Los Angeles, CA 90001" +284624,USB-C Charging Cable,1,11.95,11/09/19 22:53,"948 Church St, Los Angeles, CA 90001" +284625,AAA Batteries (4-pack),2,2.99,11/27/19 20:56,"394 Maple St, Dallas, TX 75001" +284626,34in Ultrawide Monitor,1,379.99,11/18/19 19:37,"105 Dogwood St, Atlanta, GA 30301" +284627,Bose SoundSport Headphones,1,99.99,11/13/19 18:15,"683 Hill St, Boston, MA 02215" +284628,Macbook Pro Laptop,1,1700,11/15/19 18:03,"449 Main St, Boston, MA 02215" +284629,27in 4K Gaming Monitor,1,389.99,11/08/19 12:56,"132 13th St, Boston, MA 02215" +284629,AAA Batteries (4-pack),1,2.99,11/08/19 12:56,"132 13th St, Boston, MA 02215" +284630,USB-C Charging Cable,1,11.95,11/25/19 09:56,"445 Highland St, Los Angeles, CA 90001" +284631,20in Monitor,1,109.99,11/06/19 10:47,"33 Lake St, Los Angeles, CA 90001" +284632,Lightning Charging Cable,1,14.95,11/28/19 16:56,"975 Elm St, Boston, MA 02215" +284633,Apple Airpods Headphones,1,150,11/02/19 21:38,"499 Willow St, San Francisco, CA 94016" +284634,AA Batteries (4-pack),1,3.84,11/21/19 13:13,"811 Center St, San Francisco, CA 94016" +284635,34in Ultrawide Monitor,1,379.99,11/26/19 21:45,"885 Church St, Boston, MA 02215" +284636,AA Batteries (4-pack),1,3.84,11/13/19 10:59,"216 2nd St, Austin, TX 73301" +284637,Lightning Charging Cable,1,14.95,11/05/19 19:41,"360 North St, San Francisco, CA 94016" +284638,USB-C Charging Cable,2,11.95,11/27/19 16:55,"743 North St, Portland, OR 97035" +284639,USB-C Charging Cable,2,11.95,11/23/19 17:32,"763 Washington St, Los Angeles, CA 90001" +284640,AA Batteries (4-pack),1,3.84,11/06/19 14:10,"440 4th St, Boston, MA 02215" +284641,iPhone,1,700,11/07/19 14:19,"614 Pine St, New York City, NY 10001" +284641,Lightning Charging Cable,1,14.95,11/07/19 14:19,"614 Pine St, New York City, NY 10001" +284642,AAA Batteries (4-pack),1,2.99,11/27/19 20:09,"588 Johnson St, Atlanta, GA 30301" +284643,Apple Airpods Headphones,1,150,11/12/19 00:40,"647 Highland St, San Francisco, CA 94016" +284644,USB-C Charging Cable,1,11.95,11/13/19 12:16,"569 4th St, Austin, TX 73301" +284645,27in FHD Monitor,1,149.99,11/30/19 14:40,"965 South St, Los Angeles, CA 90001" +284646,Bose SoundSport Headphones,1,99.99,11/18/19 12:35,"821 Walnut St, San Francisco, CA 94016" +284647,AAA Batteries (4-pack),2,2.99,11/12/19 19:35,"327 Madison St, Dallas, TX 75001" +284648,AA Batteries (4-pack),1,3.84,11/02/19 14:51,"425 Main St, San Francisco, CA 94016" +284649,Lightning Charging Cable,1,14.95,11/27/19 14:46,"551 Sunset St, Boston, MA 02215" +284650,Wired Headphones,1,11.99,11/17/19 21:39,"539 5th St, Boston, MA 02215" +284651,Bose SoundSport Headphones,1,99.99,11/24/19 08:41,"104 Sunset St, Los Angeles, CA 90001" +284652,27in FHD Monitor,1,149.99,11/05/19 10:04,"218 Hickory St, Boston, MA 02215" +284653,Apple Airpods Headphones,1,150,11/14/19 12:59,"583 Ridge St, New York City, NY 10001" +284654,Bose SoundSport Headphones,1,99.99,11/10/19 14:45,"689 Ridge St, San Francisco, CA 94016" +284655,AAA Batteries (4-pack),2,2.99,11/20/19 22:15,"776 Hickory St, Atlanta, GA 30301" +284656,AA Batteries (4-pack),1,3.84,11/30/19 13:47,"223 12th St, San Francisco, CA 94016" +284657,AAA Batteries (4-pack),2,2.99,11/09/19 08:19,"182 Cedar St, Boston, MA 02215" +284658,34in Ultrawide Monitor,1,379.99,11/18/19 21:30,"276 Dogwood St, Atlanta, GA 30301" +284659,Apple Airpods Headphones,1,150,11/13/19 20:15,"537 12th St, Dallas, TX 75001" +284660,Wired Headphones,1,11.99,11/15/19 11:50,"57 Pine St, Los Angeles, CA 90001" +284661,Flatscreen TV,1,300,11/10/19 18:43,"741 9th St, San Francisco, CA 94016" +284662,AAA Batteries (4-pack),3,2.99,11/09/19 16:10,"404 Jefferson St, San Francisco, CA 94016" +284663,AAA Batteries (4-pack),1,2.99,11/22/19 13:44,"195 8th St, San Francisco, CA 94016" +284664,34in Ultrawide Monitor,1,379.99,11/20/19 12:01,"786 Walnut St, San Francisco, CA 94016" +284665,AA Batteries (4-pack),2,3.84,11/08/19 11:34,"444 Main St, Dallas, TX 75001" +284666,USB-C Charging Cable,1,11.95,11/23/19 21:45,"254 Forest St, Los Angeles, CA 90001" +284667,Google Phone,1,600,11/11/19 00:03,"306 Main St, New York City, NY 10001" +284668,USB-C Charging Cable,1,11.95,11/05/19 15:36,"137 7th St, New York City, NY 10001" +284669,27in FHD Monitor,1,149.99,11/26/19 13:46,"74 Madison St, Dallas, TX 75001" +284670,AAA Batteries (4-pack),2,2.99,11/19/19 11:37,"22 Highland St, San Francisco, CA 94016" +284671,AA Batteries (4-pack),1,3.84,11/20/19 20:08,"467 4th St, San Francisco, CA 94016" +284672,Wired Headphones,1,11.99,11/20/19 08:34,"918 Lake St, Dallas, TX 75001" +284673,Lightning Charging Cable,1,14.95,11/22/19 16:37,"844 Cherry St, Boston, MA 02215" +284674,Apple Airpods Headphones,1,150,11/02/19 10:44,"390 Park St, Seattle, WA 98101" +284675,AA Batteries (4-pack),1,3.84,11/17/19 20:00,"286 Church St, Portland, OR 97035" +284676,Wired Headphones,1,11.99,11/16/19 11:37,"458 South St, Dallas, TX 75001" +284677,Apple Airpods Headphones,1,150,11/11/19 20:51,"58 1st St, San Francisco, CA 94016" +284678,27in FHD Monitor,1,149.99,11/25/19 13:51,"34 Cedar St, Atlanta, GA 30301" +284679,USB-C Charging Cable,1,11.95,11/12/19 12:46,"668 2nd St, New York City, NY 10001" +284680,AAA Batteries (4-pack),1,2.99,11/26/19 15:30,"401 Walnut St, New York City, NY 10001" +284681,34in Ultrawide Monitor,1,379.99,11/12/19 22:01,"742 Johnson St, Seattle, WA 98101" +284682,ThinkPad Laptop,1,999.99,11/24/19 13:27,"547 Park St, Portland, ME 04101" +284683,27in FHD Monitor,1,149.99,11/28/19 16:37,"351 Spruce St, Los Angeles, CA 90001" +284684,Lightning Charging Cable,1,14.95,11/16/19 17:11,"422 10th St, Seattle, WA 98101" +284685,AAA Batteries (4-pack),2,2.99,11/21/19 14:04,"549 2nd St, Los Angeles, CA 90001" +284686,AAA Batteries (4-pack),1,2.99,11/13/19 14:27,"816 12th St, New York City, NY 10001" +284687,34in Ultrawide Monitor,1,379.99,11/24/19 15:02,"777 9th St, Boston, MA 02215" +284688,Wired Headphones,1,11.99,11/09/19 18:26,"962 14th St, Austin, TX 73301" +284689,Apple Airpods Headphones,1,150,11/10/19 12:53,"94 Hickory St, San Francisco, CA 94016" +284690,iPhone,1,700,11/29/19 09:25,"279 5th St, Los Angeles, CA 90001" +284691,Apple Airpods Headphones,1,150,11/07/19 18:13,"663 Chestnut St, Los Angeles, CA 90001" +284692,AA Batteries (4-pack),1,3.84,11/12/19 17:15,"850 Cherry St, Seattle, WA 98101" +284693,ThinkPad Laptop,1,999.99,11/02/19 12:58,"968 Dogwood St, New York City, NY 10001" +284694,AAA Batteries (4-pack),1,2.99,11/03/19 19:30,"998 11th St, Los Angeles, CA 90001" +284695,Bose SoundSport Headphones,1,99.99,11/28/19 16:52,"253 Pine St, Los Angeles, CA 90001" +284696,ThinkPad Laptop,1,999.99,11/21/19 20:20,"581 14th St, Los Angeles, CA 90001" +284697,Wired Headphones,2,11.99,11/17/19 13:47,"541 Hill St, San Francisco, CA 94016" +284698,AAA Batteries (4-pack),1,2.99,11/09/19 19:28,"953 Hill St, San Francisco, CA 94016" +284699,AAA Batteries (4-pack),1,2.99,11/21/19 14:11,"503 River St, Portland, OR 97035" +284700,Wired Headphones,1,11.99,11/28/19 20:14,"247 Wilson St, New York City, NY 10001" +284701,iPhone,1,700,11/29/19 23:03,"446 8th St, Boston, MA 02215" +284701,Lightning Charging Cable,1,14.95,11/29/19 23:03,"446 8th St, Boston, MA 02215" +284702,Lightning Charging Cable,1,14.95,11/03/19 18:09,"74 Lincoln St, Los Angeles, CA 90001" +284702,AA Batteries (4-pack),1,3.84,11/03/19 18:09,"74 Lincoln St, Los Angeles, CA 90001" +284703,iPhone,1,700,11/22/19 10:47,"978 Cedar St, Seattle, WA 98101" +284704,Flatscreen TV,1,300,11/20/19 13:33,"482 5th St, Los Angeles, CA 90001" +284705,Bose SoundSport Headphones,1,99.99,11/14/19 15:04,"174 4th St, New York City, NY 10001" +284706,Bose SoundSport Headphones,1,99.99,11/05/19 16:11,"643 Dogwood St, Los Angeles, CA 90001" +284707,Lightning Charging Cable,1,14.95,11/04/19 14:01,"656 12th St, Dallas, TX 75001" +284707,27in FHD Monitor,1,149.99,11/04/19 14:01,"656 12th St, Dallas, TX 75001" +284708,AA Batteries (4-pack),1,3.84,11/03/19 21:56,"721 1st St, San Francisco, CA 94016" +284709,USB-C Charging Cable,1,11.95,11/12/19 08:38,"524 Hickory St, New York City, NY 10001" +284710,27in FHD Monitor,1,149.99,11/13/19 20:13,"799 Hickory St, New York City, NY 10001" +284711,USB-C Charging Cable,1,11.95,11/12/19 11:11,"340 Sunset St, Dallas, TX 75001" +284712,Vareebadd Phone,1,400,11/04/19 01:22,"847 12th St, New York City, NY 10001" +284713,Lightning Charging Cable,2,14.95,11/04/19 14:45,"897 9th St, Los Angeles, CA 90001" +284714,Apple Airpods Headphones,1,150,11/08/19 10:50,"797 Sunset St, Atlanta, GA 30301" +284715,Wired Headphones,1,11.99,11/30/19 11:36,"944 Park St, New York City, NY 10001" +284716,Apple Airpods Headphones,1,150,11/04/19 20:33,"129 6th St, San Francisco, CA 94016" +284717,20in Monitor,1,109.99,11/14/19 17:03,"702 Lake St, New York City, NY 10001" +284718,Wired Headphones,1,11.99,11/09/19 08:28,"815 Forest St, San Francisco, CA 94016" +284719,Apple Airpods Headphones,1,150,11/21/19 10:18,"779 2nd St, Boston, MA 02215" +284720,34in Ultrawide Monitor,1,379.99,11/27/19 13:13,"95 Jackson St, San Francisco, CA 94016" +284721,Wired Headphones,1,11.99,11/27/19 10:53,"765 Jackson St, Boston, MA 02215" +284722,USB-C Charging Cable,1,11.95,11/26/19 10:07,"986 Meadow St, Austin, TX 73301" +284723,AAA Batteries (4-pack),2,2.99,11/10/19 11:31,"126 Ridge St, New York City, NY 10001" +284723,AAA Batteries (4-pack),1,2.99,11/10/19 11:31,"126 Ridge St, New York City, NY 10001" +284724,AAA Batteries (4-pack),1,2.99,11/25/19 14:05,"717 Dogwood St, Dallas, TX 75001" +284725,Apple Airpods Headphones,1,150,11/09/19 11:19,"772 Hickory St, Portland, OR 97035" +284726,Flatscreen TV,1,300,11/30/19 10:57,"704 Lakeview St, Austin, TX 73301" +284727,iPhone,1,700,11/15/19 18:53,"81 Chestnut St, Austin, TX 73301" +284727,Wired Headphones,1,11.99,11/15/19 18:53,"81 Chestnut St, Austin, TX 73301" +284728,USB-C Charging Cable,1,11.95,11/24/19 15:53,"949 Walnut St, Los Angeles, CA 90001" +284729,AA Batteries (4-pack),2,3.84,11/20/19 09:19,"339 South St, Los Angeles, CA 90001" +284730,34in Ultrawide Monitor,1,379.99,11/03/19 15:01,"9 Hill St, Seattle, WA 98101" +284731,Apple Airpods Headphones,1,150,11/18/19 06:03,"683 Lakeview St, Los Angeles, CA 90001" +284732,Lightning Charging Cable,1,14.95,11/14/19 16:15,"409 West St, San Francisco, CA 94016" +284733,Lightning Charging Cable,1,14.95,11/08/19 19:03,"787 Pine St, Los Angeles, CA 90001" +284734,AA Batteries (4-pack),2,3.84,11/03/19 18:27,"662 Lake St, San Francisco, CA 94016" +284735,Apple Airpods Headphones,1,150,11/01/19 18:55,"847 Lake St, San Francisco, CA 94016" +284736,Lightning Charging Cable,1,14.95,11/13/19 13:10,"272 West St, Los Angeles, CA 90001" +284737,Bose SoundSport Headphones,1,99.99,11/23/19 14:42,"72 13th St, Los Angeles, CA 90001" +284738,Apple Airpods Headphones,1,150,11/04/19 15:24,"754 Center St, Austin, TX 73301" +284739,Lightning Charging Cable,1,14.95,11/26/19 20:10,"50 7th St, Seattle, WA 98101" +284740,AA Batteries (4-pack),1,3.84,11/25/19 11:29,"438 Jefferson St, Seattle, WA 98101" +284741,Bose SoundSport Headphones,1,99.99,11/27/19 19:11,"786 6th St, Atlanta, GA 30301" +284742,20in Monitor,1,109.99,11/03/19 23:52,"935 Center St, San Francisco, CA 94016" +284743,Apple Airpods Headphones,1,150,11/14/19 09:48,"337 4th St, Portland, OR 97035" +284744,AA Batteries (4-pack),1,3.84,11/16/19 11:15,"256 Lincoln St, New York City, NY 10001" +284745,USB-C Charging Cable,1,11.95,11/01/19 13:00,"947 1st St, Boston, MA 02215" +284746,iPhone,1,700,11/18/19 13:06,"175 Park St, Los Angeles, CA 90001" +284747,Lightning Charging Cable,1,14.95,11/20/19 07:41,"42 Madison St, Austin, TX 73301" +284748,Lightning Charging Cable,1,14.95,11/01/19 22:13,"141 West St, Los Angeles, CA 90001" +284749,27in FHD Monitor,1,149.99,11/11/19 18:04,"821 6th St, San Francisco, CA 94016" +284750,USB-C Charging Cable,2,11.95,11/16/19 08:18,"192 Lincoln St, Los Angeles, CA 90001" +284751,Google Phone,1,600,11/07/19 19:56,"918 Meadow St, Boston, MA 02215" +284752,Bose SoundSport Headphones,1,99.99,11/19/19 15:26,"449 Center St, Los Angeles, CA 90001" +284753,27in FHD Monitor,1,149.99,11/17/19 19:03,"871 Lakeview St, Austin, TX 73301" +284754,Lightning Charging Cable,1,14.95,11/20/19 19:10,"88 14th St, New York City, NY 10001" +284755,20in Monitor,1,109.99,11/05/19 22:06,"462 Pine St, Portland, OR 97035" +284756,Wired Headphones,1,11.99,11/22/19 18:15,"496 West St, Austin, TX 73301" +284757,Apple Airpods Headphones,1,150,11/11/19 15:29,"482 Lake St, New York City, NY 10001" +284758,Apple Airpods Headphones,1,150,11/13/19 16:00,"704 14th St, Austin, TX 73301" +284759,Apple Airpods Headphones,1,150,11/26/19 19:22,"661 11th St, Boston, MA 02215" +284760,27in 4K Gaming Monitor,1,389.99,11/21/19 20:44,"159 Hickory St, Atlanta, GA 30301" +284761,AAA Batteries (4-pack),4,2.99,11/17/19 19:14,"795 12th St, Los Angeles, CA 90001" +284762,27in 4K Gaming Monitor,1,389.99,11/07/19 18:52,"133 Park St, Austin, TX 73301" +284763,Wired Headphones,1,11.99,11/14/19 10:09,"899 Highland St, New York City, NY 10001" +284764,AA Batteries (4-pack),2,3.84,11/24/19 19:19,"437 Pine St, Atlanta, GA 30301" +284765,iPhone,1,700,11/18/19 10:26,"7 1st St, San Francisco, CA 94016" +284765,Lightning Charging Cable,1,14.95,11/18/19 10:26,"7 1st St, San Francisco, CA 94016" +284766,AAA Batteries (4-pack),2,2.99,11/24/19 15:35,"433 Washington St, San Francisco, CA 94016" +284766,LG Dryer,1,600.0,11/24/19 15:35,"433 Washington St, San Francisco, CA 94016" +284767,Lightning Charging Cable,1,14.95,11/12/19 10:29,"123 Walnut St, Seattle, WA 98101" +284768,Wired Headphones,1,11.99,11/14/19 17:55,"311 Lakeview St, Seattle, WA 98101" +284769,Lightning Charging Cable,2,14.95,11/09/19 04:03,"820 5th St, San Francisco, CA 94016" +284770,AAA Batteries (4-pack),1,2.99,11/12/19 09:25,"510 Cherry St, Los Angeles, CA 90001" +284771,Wired Headphones,1,11.99,11/28/19 22:05,"912 River St, Dallas, TX 75001" +284772,34in Ultrawide Monitor,1,379.99,11/26/19 13:28,"866 Church St, Atlanta, GA 30301" +284773,27in FHD Monitor,1,149.99,11/22/19 19:08,"511 Ridge St, San Francisco, CA 94016" +284774,AAA Batteries (4-pack),1,2.99,11/21/19 16:37,"300 Wilson St, New York City, NY 10001" +284775,Vareebadd Phone,1,400,11/03/19 09:35,"478 7th St, Atlanta, GA 30301" +284775,USB-C Charging Cable,1,11.95,11/03/19 09:35,"478 7th St, Atlanta, GA 30301" +284775,Bose SoundSport Headphones,1,99.99,11/03/19 09:35,"478 7th St, Atlanta, GA 30301" +284776,Wired Headphones,1,11.99,11/30/19 19:11,"938 Main St, Los Angeles, CA 90001" +284777,34in Ultrawide Monitor,1,379.99,11/30/19 16:43,"900 Washington St, Boston, MA 02215" +284778,Apple Airpods Headphones,1,150,11/11/19 11:08,"544 South St, San Francisco, CA 94016" +284779,34in Ultrawide Monitor,1,379.99,11/21/19 09:26,"679 River St, Dallas, TX 75001" +284780,AAA Batteries (4-pack),1,2.99,11/27/19 15:36,"509 River St, Los Angeles, CA 90001" +284781,Lightning Charging Cable,1,14.95,11/03/19 12:04,"317 Wilson St, Portland, ME 04101" +284782,Apple Airpods Headphones,1,150,11/16/19 12:37,"106 2nd St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +284783,AAA Batteries (4-pack),1,2.99,11/07/19 16:17,"944 4th St, San Francisco, CA 94016" +284784,Flatscreen TV,1,300,11/12/19 19:41,"269 8th St, Atlanta, GA 30301" +284785,Wired Headphones,1,11.99,11/10/19 20:33,"986 Elm St, San Francisco, CA 94016" +284786,Google Phone,1,600,11/23/19 19:43,"443 11th St, Portland, OR 97035" +284786,USB-C Charging Cable,1,11.95,11/23/19 19:43,"443 11th St, Portland, OR 97035" +284787,AA Batteries (4-pack),2,3.84,11/23/19 16:08,"573 Lincoln St, Boston, MA 02215" +284788,27in FHD Monitor,1,149.99,11/22/19 18:28,"813 11th St, San Francisco, CA 94016" +284789,LG Washing Machine,1,600.0,11/02/19 18:18,"84 7th St, San Francisco, CA 94016" +284790,LG Dryer,1,600.0,11/16/19 22:27,"302 Wilson St, Atlanta, GA 30301" +284791,USB-C Charging Cable,1,11.95,11/17/19 08:55,"744 South St, Los Angeles, CA 90001" +284791,USB-C Charging Cable,1,11.95,11/17/19 08:55,"744 South St, Los Angeles, CA 90001" +284792,Apple Airpods Headphones,1,150,11/02/19 10:15,"376 Center St, Los Angeles, CA 90001" +284793,27in FHD Monitor,1,149.99,11/22/19 09:25,"465 2nd St, Boston, MA 02215" +284794,Bose SoundSport Headphones,1,99.99,11/07/19 20:23,"255 Lake St, New York City, NY 10001" +284795,Bose SoundSport Headphones,1,99.99,11/20/19 21:40,"251 10th St, Boston, MA 02215" +284796,Lightning Charging Cable,1,14.95,11/16/19 19:18,"877 Washington St, Los Angeles, CA 90001" +284797,Apple Airpods Headphones,1,150,11/20/19 17:16,"857 Hill St, Seattle, WA 98101" +284798,ThinkPad Laptop,1,999.99,11/12/19 10:50,"295 Lakeview St, New York City, NY 10001" +284799,Bose SoundSport Headphones,1,99.99,11/27/19 14:06,"416 Lake St, New York City, NY 10001" +284800,USB-C Charging Cable,1,11.95,11/05/19 04:05,"720 Elm St, San Francisco, CA 94016" +284801,USB-C Charging Cable,1,11.95,11/15/19 01:10,"958 Pine St, New York City, NY 10001" +284802,iPhone,1,700,11/26/19 15:33,"319 Jackson St, Boston, MA 02215" +284803,Lightning Charging Cable,2,14.95,11/24/19 10:55,"79 Highland St, Los Angeles, CA 90001" +284804,Wired Headphones,1,11.99,11/20/19 23:27,"88 11th St, San Francisco, CA 94016" +284805,USB-C Charging Cable,1,11.95,11/21/19 10:16,"836 Dogwood St, Seattle, WA 98101" +284806,AAA Batteries (4-pack),1,2.99,11/17/19 10:12,"181 10th St, New York City, NY 10001" +284807,Lightning Charging Cable,1,14.95,11/21/19 12:58,"703 Washington St, Portland, OR 97035" +284808,USB-C Charging Cable,1,11.95,11/24/19 20:55,"385 Lincoln St, New York City, NY 10001" +284809,iPhone,1,700,11/23/19 16:18,"307 Park St, San Francisco, CA 94016" +284809,Lightning Charging Cable,1,14.95,11/23/19 16:18,"307 Park St, San Francisco, CA 94016" +284810,27in 4K Gaming Monitor,1,389.99,11/08/19 13:46,"303 Lincoln St, New York City, NY 10001" +284811,USB-C Charging Cable,1,11.95,11/05/19 22:34,"308 Chestnut St, San Francisco, CA 94016" +284812,Vareebadd Phone,1,400,11/20/19 06:22,"565 Church St, Dallas, TX 75001" +284813,Apple Airpods Headphones,1,150,11/30/19 20:56,"342 9th St, Seattle, WA 98101" +284814,AAA Batteries (4-pack),1,2.99,11/15/19 08:40,"850 9th St, Austin, TX 73301" +284815,20in Monitor,1,109.99,11/28/19 14:30,"463 Spruce St, Los Angeles, CA 90001" +284816,Lightning Charging Cable,1,14.95,11/13/19 09:06,"148 Willow St, San Francisco, CA 94016" +284817,AAA Batteries (4-pack),1,2.99,11/29/19 09:33,"185 Willow St, Atlanta, GA 30301" +284818,USB-C Charging Cable,1,11.95,11/01/19 14:50,"762 Lakeview St, New York City, NY 10001" +284819,Lightning Charging Cable,1,14.95,11/05/19 20:29,"705 Madison St, Austin, TX 73301" +284820,Bose SoundSport Headphones,1,99.99,11/13/19 23:18,"754 Wilson St, Los Angeles, CA 90001" +284821,iPhone,1,700,11/02/19 02:00,"486 10th St, Atlanta, GA 30301" +284821,Lightning Charging Cable,1,14.95,11/02/19 02:00,"486 10th St, Atlanta, GA 30301" +284821,Wired Headphones,1,11.99,11/02/19 02:00,"486 10th St, Atlanta, GA 30301" +284822,27in FHD Monitor,1,149.99,11/23/19 19:15,"573 Pine St, Seattle, WA 98101" +284823,Wired Headphones,1,11.99,11/27/19 20:38,"740 Willow St, Dallas, TX 75001" +284824,ThinkPad Laptop,1,999.99,11/25/19 01:36,"258 2nd St, Dallas, TX 75001" +284825,Lightning Charging Cable,1,14.95,11/20/19 09:09,"961 Hickory St, New York City, NY 10001" +284826,AA Batteries (4-pack),1,3.84,11/01/19 23:28,"785 Dogwood St, Atlanta, GA 30301" +284827,AA Batteries (4-pack),1,3.84,11/19/19 14:21,"417 Center St, Dallas, TX 75001" +284828,Lightning Charging Cable,1,14.95,11/11/19 09:49,"885 Cherry St, Boston, MA 02215" +284829,Apple Airpods Headphones,1,150,11/26/19 12:51,"329 Forest St, New York City, NY 10001" +284830,AA Batteries (4-pack),1,3.84,11/01/19 20:26,"133 Pine St, New York City, NY 10001" +284831,USB-C Charging Cable,1,11.95,11/19/19 21:59,"745 Jackson St, Los Angeles, CA 90001" +284831,AA Batteries (4-pack),1,3.84,11/19/19 21:59,"745 Jackson St, Los Angeles, CA 90001" +284832,iPhone,1,700,11/10/19 17:36,"129 Sunset St, Portland, OR 97035" +284832,Lightning Charging Cable,1,14.95,11/10/19 17:36,"129 Sunset St, Portland, OR 97035" +284833,Macbook Pro Laptop,1,1700,11/17/19 18:18,"720 River St, Atlanta, GA 30301" +284834,Lightning Charging Cable,1,14.95,11/05/19 01:48,"805 North St, Portland, OR 97035" +284835,34in Ultrawide Monitor,1,379.99,11/26/19 17:03,"852 Dogwood St, Portland, ME 04101" +284836,AA Batteries (4-pack),1,3.84,11/07/19 09:24,"532 10th St, Dallas, TX 75001" +284837,AA Batteries (4-pack),2,3.84,11/26/19 05:24,"978 North St, San Francisco, CA 94016" +284838,AA Batteries (4-pack),1,3.84,11/02/19 14:36,"846 Cherry St, New York City, NY 10001" +284839,Macbook Pro Laptop,1,1700,11/11/19 14:27,"564 River St, San Francisco, CA 94016" +284840,AA Batteries (4-pack),2,3.84,11/02/19 23:37,"821 6th St, San Francisco, CA 94016" +284841,Lightning Charging Cable,1,14.95,11/05/19 01:14,"861 Jefferson St, San Francisco, CA 94016" +284842,Lightning Charging Cable,1,14.95,11/29/19 23:28,"5 Hickory St, New York City, NY 10001" +284843,Wired Headphones,1,11.99,11/06/19 10:13,"813 12th St, New York City, NY 10001" +284844,AAA Batteries (4-pack),2,2.99,11/21/19 20:43,"893 12th St, Boston, MA 02215" +284845,27in FHD Monitor,1,149.99,11/26/19 16:16,"444 Cherry St, San Francisco, CA 94016" +284846,Apple Airpods Headphones,1,150,11/09/19 14:00,"268 River St, Los Angeles, CA 90001" +284847,Wired Headphones,1,11.99,11/29/19 14:55,"778 Highland St, San Francisco, CA 94016" +284848,ThinkPad Laptop,1,999.99,11/18/19 00:23,"217 Chestnut St, San Francisco, CA 94016" +284849,Lightning Charging Cable,1,14.95,11/16/19 20:21,"760 Chestnut St, Boston, MA 02215" +284850,AAA Batteries (4-pack),1,2.99,11/25/19 21:18,"737 Forest St, Boston, MA 02215" +284851,ThinkPad Laptop,1,999.99,11/22/19 19:56,"142 Hill St, Seattle, WA 98101" +284852,Google Phone,1,600,11/20/19 22:27,"533 Wilson St, New York City, NY 10001" +284852,USB-C Charging Cable,1,11.95,11/20/19 22:27,"533 Wilson St, New York City, NY 10001" +284852,Bose SoundSport Headphones,1,99.99,11/20/19 22:27,"533 Wilson St, New York City, NY 10001" +284852,Wired Headphones,1,11.99,11/20/19 22:27,"533 Wilson St, New York City, NY 10001" +284853,AA Batteries (4-pack),1,3.84,11/01/19 16:09,"789 Lakeview St, Dallas, TX 75001" +284854,AA Batteries (4-pack),1,3.84,11/11/19 15:58,"687 12th St, Dallas, TX 75001" +284855,Bose SoundSport Headphones,1,99.99,11/06/19 07:13,"141 4th St, Seattle, WA 98101" +284856,AA Batteries (4-pack),1,3.84,11/27/19 14:49,"30 7th St, New York City, NY 10001" +284857,AA Batteries (4-pack),1,3.84,11/14/19 04:51,"138 Hill St, San Francisco, CA 94016" +284858,Apple Airpods Headphones,1,150,11/06/19 12:00,"267 Jefferson St, San Francisco, CA 94016" +284859,Lightning Charging Cable,1,14.95,11/14/19 18:23,"402 Center St, Los Angeles, CA 90001" +284860,Bose SoundSport Headphones,1,99.99,11/09/19 12:06,"528 1st St, Boston, MA 02215" +284861,Macbook Pro Laptop,1,1700,11/01/19 17:12,"933 Church St, San Francisco, CA 94016" +284862,Apple Airpods Headphones,1,150,11/03/19 19:43,"346 Hill St, Los Angeles, CA 90001" +284863,AA Batteries (4-pack),1,3.84,11/12/19 15:22,"77 Ridge St, New York City, NY 10001" +284864,Bose SoundSport Headphones,1,99.99,11/24/19 17:40,"847 8th St, Seattle, WA 98101" +284865,Apple Airpods Headphones,1,150,11/30/19 08:27,"69 Adams St, Seattle, WA 98101" +284866,ThinkPad Laptop,1,999.99,11/21/19 09:18,"898 Main St, Los Angeles, CA 90001" +284867,Bose SoundSport Headphones,1,99.99,11/19/19 14:55,"769 Washington St, Portland, OR 97035" +284868,Google Phone,1,600,11/11/19 15:14,"642 Wilson St, Seattle, WA 98101" +284869,AA Batteries (4-pack),2,3.84,11/04/19 13:45,"887 6th St, Seattle, WA 98101" +284870,USB-C Charging Cable,1,11.95,11/09/19 19:09,"644 Johnson St, San Francisco, CA 94016" +284871,Lightning Charging Cable,1,14.95,11/23/19 19:38,"525 Hickory St, New York City, NY 10001" +284872,Macbook Pro Laptop,1,1700,11/01/19 13:44,"42 Washington St, Dallas, TX 75001" +284873,AAA Batteries (4-pack),1,2.99,11/18/19 22:18,"357 Cherry St, Dallas, TX 75001" +284874,Wired Headphones,1,11.99,11/09/19 00:02,"907 Spruce St, New York City, NY 10001" +284875,27in 4K Gaming Monitor,1,389.99,12/01/19 01:55,"869 9th St, San Francisco, CA 94016" +284876,iPhone,1,700,11/12/19 22:15,"557 Elm St, San Francisco, CA 94016" +284877,Google Phone,1,600,11/15/19 19:44,"947 Pine St, Dallas, TX 75001" +284878,34in Ultrawide Monitor,1,379.99,11/18/19 21:15,"448 7th St, Los Angeles, CA 90001" +284879,Flatscreen TV,1,300,11/13/19 18:07,"111 1st St, Boston, MA 02215" +284880,Lightning Charging Cable,1,14.95,11/15/19 20:05,"716 2nd St, Los Angeles, CA 90001" +284881,Wired Headphones,1,11.99,11/12/19 17:14,"184 Willow St, Portland, OR 97035" +284882,USB-C Charging Cable,1,11.95,11/13/19 16:57,"642 1st St, Atlanta, GA 30301" +284883,USB-C Charging Cable,1,11.95,11/01/19 19:11,"369 Washington St, New York City, NY 10001" +284884,AA Batteries (4-pack),5,3.84,11/13/19 16:04,"359 Highland St, Los Angeles, CA 90001" +284885,Macbook Pro Laptop,1,1700,11/01/19 13:08,"870 South St, San Francisco, CA 94016" +284886,Lightning Charging Cable,1,14.95,11/30/19 19:51,"874 8th St, Atlanta, GA 30301" +284887,iPhone,1,700,11/20/19 19:24,"821 North St, Los Angeles, CA 90001" +284888,iPhone,1,700,11/23/19 16:57,"179 Church St, New York City, NY 10001" +284889,Wired Headphones,1,11.99,11/09/19 18:33,"989 Chestnut St, San Francisco, CA 94016" +284890,Wired Headphones,1,11.99,11/30/19 07:28,"293 North St, Boston, MA 02215" +284891,Flatscreen TV,1,300,11/30/19 04:44,"336 Pine St, San Francisco, CA 94016" +284892,27in FHD Monitor,1,149.99,11/16/19 22:48,"996 Hickory St, Atlanta, GA 30301" +284893,Bose SoundSport Headphones,1,99.99,11/26/19 18:41,"533 Center St, San Francisco, CA 94016" +284894,USB-C Charging Cable,1,11.95,11/01/19 15:42,"521 Forest St, Atlanta, GA 30301" +284895,USB-C Charging Cable,1,11.95,11/26/19 12:13,"965 8th St, Seattle, WA 98101" +284896,USB-C Charging Cable,1,11.95,11/24/19 21:05,"461 1st St, Boston, MA 02215" +284897,Wired Headphones,1,11.99,11/03/19 03:37,"141 Highland St, Dallas, TX 75001" +284898,Vareebadd Phone,1,400,11/23/19 06:38,"133 Maple St, Los Angeles, CA 90001" +284898,Bose SoundSport Headphones,1,99.99,11/23/19 06:38,"133 Maple St, Los Angeles, CA 90001" +284899,AA Batteries (4-pack),1,3.84,11/01/19 19:49,"771 Cedar St, New York City, NY 10001" +284900,Apple Airpods Headphones,1,150,11/27/19 20:34,"841 6th St, San Francisco, CA 94016" +284901,Wired Headphones,2,11.99,11/02/19 18:32,"554 Church St, Atlanta, GA 30301" +284902,AAA Batteries (4-pack),1,2.99,11/08/19 14:26,"644 Washington St, San Francisco, CA 94016" +284903,Vareebadd Phone,1,400,11/18/19 19:21,"428 10th St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +284904,Google Phone,1,600,11/30/19 08:48,"124 13th St, Los Angeles, CA 90001" +284904,USB-C Charging Cable,2,11.95,11/30/19 08:48,"124 13th St, Los Angeles, CA 90001" +284904,Wired Headphones,2,11.99,11/30/19 08:48,"124 13th St, Los Angeles, CA 90001" +284905,AAA Batteries (4-pack),3,2.99,11/06/19 12:48,"614 Meadow St, Seattle, WA 98101" +284906,27in FHD Monitor,1,149.99,11/01/19 15:11,"161 Meadow St, Los Angeles, CA 90001" +284907,Apple Airpods Headphones,1,150,11/08/19 14:03,"845 Pine St, Dallas, TX 75001" +284908,Wired Headphones,1,11.99,11/11/19 18:27,"665 Main St, Seattle, WA 98101" +284909,Apple Airpods Headphones,1,150,11/07/19 11:13,"203 Elm St, Los Angeles, CA 90001" +284910,Wired Headphones,1,11.99,11/30/19 12:50,"357 Wilson St, Austin, TX 73301" +284911,USB-C Charging Cable,1,11.95,11/01/19 19:48,"851 Sunset St, New York City, NY 10001" +284912,AA Batteries (4-pack),2,3.84,11/06/19 12:16,"280 Highland St, San Francisco, CA 94016" +284913,AA Batteries (4-pack),1,3.84,11/17/19 20:46,"438 Park St, New York City, NY 10001" +284914,Apple Airpods Headphones,1,150,11/17/19 16:01,"753 Hill St, San Francisco, CA 94016" +284915,Wired Headphones,1,11.99,11/02/19 22:03,"853 12th St, Boston, MA 02215" +284916,27in 4K Gaming Monitor,1,389.99,11/05/19 09:06,"150 Pine St, Seattle, WA 98101" +284917,Lightning Charging Cable,1,14.95,11/12/19 13:14,"630 Jackson St, San Francisco, CA 94016" +284918,20in Monitor,1,109.99,11/24/19 10:45,"588 10th St, Boston, MA 02215" +284919,USB-C Charging Cable,1,11.95,11/06/19 08:58,"379 Johnson St, Dallas, TX 75001" +284920,AAA Batteries (4-pack),1,2.99,11/08/19 13:58,"151 Church St, San Francisco, CA 94016" +284921,AA Batteries (4-pack),1,3.84,11/11/19 17:00,"127 Cedar St, New York City, NY 10001" +284922,AA Batteries (4-pack),1,3.84,11/24/19 22:10,"567 Meadow St, Los Angeles, CA 90001" +284923,AAA Batteries (4-pack),3,2.99,11/13/19 12:31,"373 Pine St, San Francisco, CA 94016" +284924,34in Ultrawide Monitor,1,379.99,11/17/19 13:44,"726 River St, Los Angeles, CA 90001" +284925,Wired Headphones,1,11.99,11/08/19 11:49,"24 12th St, San Francisco, CA 94016" +284926,AA Batteries (4-pack),1,3.84,11/09/19 16:06,"100 Jackson St, Atlanta, GA 30301" +284927,Bose SoundSport Headphones,1,99.99,11/19/19 10:34,"441 8th St, Los Angeles, CA 90001" +284928,AA Batteries (4-pack),1,3.84,11/25/19 20:05,"383 2nd St, Seattle, WA 98101" +284929,ThinkPad Laptop,1,999.99,11/17/19 17:51,"76 Lincoln St, Dallas, TX 75001" +284930,Vareebadd Phone,1,400,11/30/19 18:10,"986 13th St, New York City, NY 10001" +284930,USB-C Charging Cable,1,11.95,11/30/19 18:10,"986 13th St, New York City, NY 10001" +284931,Google Phone,1,600,11/15/19 19:21,"303 River St, Austin, TX 73301" +284932,USB-C Charging Cable,1,11.95,11/01/19 20:50,"53 Elm St, Dallas, TX 75001" +284933,Wired Headphones,1,11.99,11/09/19 16:35,"57 North St, New York City, NY 10001" +284934,Wired Headphones,1,11.99,11/06/19 18:40,"147 Jackson St, New York City, NY 10001" +284935,Wired Headphones,1,11.99,11/13/19 12:29,"820 River St, Boston, MA 02215" +284936,AA Batteries (4-pack),1,3.84,11/25/19 18:09,"351 Hill St, New York City, NY 10001" +284937,27in 4K Gaming Monitor,1,389.99,11/02/19 20:33,"811 South St, San Francisco, CA 94016" +284938,27in 4K Gaming Monitor,1,389.99,11/04/19 15:03,"534 Walnut St, Los Angeles, CA 90001" +284939,AA Batteries (4-pack),1,3.84,11/04/19 13:09,"938 4th St, Austin, TX 73301" +284940,Lightning Charging Cable,2,14.95,11/29/19 08:07,"553 8th St, New York City, NY 10001" +284941,27in FHD Monitor,1,149.99,11/19/19 13:59,"93 Elm St, San Francisco, CA 94016" +284942,34in Ultrawide Monitor,1,379.99,11/28/19 03:07,"614 Main St, San Francisco, CA 94016" +284943,iPhone,1,700,11/08/19 20:08,"54 Hickory St, Los Angeles, CA 90001" +284944,iPhone,1,700,11/15/19 20:43,"333 5th St, Los Angeles, CA 90001" +284944,Apple Airpods Headphones,1,150,11/15/19 20:43,"333 5th St, Los Angeles, CA 90001" +284945,Wired Headphones,2,11.99,11/29/19 12:56,"960 Pine St, Austin, TX 73301" +284946,AA Batteries (4-pack),1,3.84,11/28/19 23:48,"89 North St, New York City, NY 10001" +284947,27in FHD Monitor,1,149.99,11/15/19 13:18,"331 Wilson St, San Francisco, CA 94016" +284948,Lightning Charging Cable,1,14.95,11/27/19 13:40,"453 Elm St, Dallas, TX 75001" +284949,USB-C Charging Cable,1,11.95,11/12/19 13:39,"142 Elm St, Los Angeles, CA 90001" +284950,27in 4K Gaming Monitor,1,389.99,11/08/19 13:42,"454 Madison St, Austin, TX 73301" +284951,Flatscreen TV,1,300,11/01/19 22:45,"410 Meadow St, San Francisco, CA 94016" +284952,20in Monitor,1,109.99,11/01/19 08:43,"29 Ridge St, New York City, NY 10001" +284953,USB-C Charging Cable,1,11.95,11/27/19 20:29,"587 Adams St, Portland, OR 97035" +284954,iPhone,1,700,11/28/19 21:13,"452 10th St, Atlanta, GA 30301" +284955,Apple Airpods Headphones,1,150,11/21/19 16:54,"619 Walnut St, San Francisco, CA 94016" +284956,Bose SoundSport Headphones,1,99.99,11/07/19 19:56,"405 North St, San Francisco, CA 94016" +284957,USB-C Charging Cable,1,11.95,11/29/19 15:24,"189 Hill St, Boston, MA 02215" +284958,Flatscreen TV,1,300,11/27/19 12:05,"551 Lincoln St, Los Angeles, CA 90001" +284959,34in Ultrawide Monitor,1,379.99,11/22/19 18:42,"188 6th St, New York City, NY 10001" +284960,ThinkPad Laptop,1,999.99,11/06/19 09:54,"624 Jefferson St, San Francisco, CA 94016" +284961,Bose SoundSport Headphones,1,99.99,11/24/19 20:42,"782 Park St, Los Angeles, CA 90001" +284962,Bose SoundSport Headphones,1,99.99,11/17/19 19:28,"132 14th St, Atlanta, GA 30301" +284963,ThinkPad Laptop,1,999.99,11/26/19 14:45,"875 Jackson St, San Francisco, CA 94016" +284964,Lightning Charging Cable,1,14.95,11/18/19 18:03,"631 11th St, San Francisco, CA 94016" +284965,AAA Batteries (4-pack),1,2.99,11/12/19 11:03,"835 1st St, Los Angeles, CA 90001" +284966,USB-C Charging Cable,1,11.95,11/10/19 21:08,"735 1st St, Boston, MA 02215" +284967,27in FHD Monitor,1,149.99,11/18/19 19:01,"784 South St, Portland, OR 97035" +284968,AA Batteries (4-pack),2,3.84,11/20/19 22:35,"653 Wilson St, San Francisco, CA 94016" +284969,Apple Airpods Headphones,1,150,11/13/19 16:50,"869 Chestnut St, Los Angeles, CA 90001" +284970,34in Ultrawide Monitor,1,379.99,11/20/19 09:45,"713 Wilson St, San Francisco, CA 94016" +284971,AAA Batteries (4-pack),1,2.99,11/08/19 18:43,"195 Sunset St, Boston, MA 02215" +284972,AA Batteries (4-pack),1,3.84,11/24/19 17:04,"19 Cedar St, Los Angeles, CA 90001" +284973,Macbook Pro Laptop,1,1700,11/04/19 00:12,"584 Adams St, San Francisco, CA 94016" +284974,Flatscreen TV,1,300,11/08/19 16:14,"790 Cherry St, Los Angeles, CA 90001" +284975,iPhone,1,700,11/20/19 23:08,"744 1st St, Seattle, WA 98101" +284976,Lightning Charging Cable,1,14.95,11/21/19 10:57,"129 Maple St, Los Angeles, CA 90001" +284977,Lightning Charging Cable,1,14.95,11/03/19 22:28,"916 Hickory St, Atlanta, GA 30301" +284977,Wired Headphones,1,11.99,11/03/19 22:28,"916 Hickory St, Atlanta, GA 30301" +284978,Apple Airpods Headphones,1,150,11/06/19 00:45,"715 River St, Dallas, TX 75001" +284979,Bose SoundSport Headphones,1,99.99,11/18/19 13:36,"809 Lincoln St, Los Angeles, CA 90001" +284980,ThinkPad Laptop,1,999.99,11/24/19 10:28,"96 11th St, Boston, MA 02215" +284981,iPhone,1,700,11/19/19 08:55,"642 Ridge St, San Francisco, CA 94016" +284982,AAA Batteries (4-pack),1,2.99,11/09/19 19:37,"565 Lincoln St, San Francisco, CA 94016" +284983,USB-C Charging Cable,1,11.95,11/25/19 17:17,"395 8th St, Atlanta, GA 30301" +284984,USB-C Charging Cable,1,11.95,11/15/19 21:30,"338 Main St, New York City, NY 10001" +284985,iPhone,1,700,11/13/19 11:39,"620 9th St, New York City, NY 10001" +284986,Lightning Charging Cable,1,14.95,11/16/19 23:48,"474 Maple St, Los Angeles, CA 90001" +284987,USB-C Charging Cable,1,11.95,11/08/19 20:06,"543 Jackson St, Seattle, WA 98101" +284988,ThinkPad Laptop,1,999.99,11/11/19 10:32,"891 West St, San Francisco, CA 94016" +284989,iPhone,1,700,11/03/19 10:43,"407 Jackson St, Boston, MA 02215" +284990,27in 4K Gaming Monitor,1,389.99,11/18/19 17:35,"924 Pine St, Los Angeles, CA 90001" +284991,Bose SoundSport Headphones,1,99.99,11/12/19 15:35,"312 Pine St, Los Angeles, CA 90001" +284992,Google Phone,1,600,11/23/19 16:08,"939 Sunset St, New York City, NY 10001" +284992,USB-C Charging Cable,1,11.95,11/23/19 16:08,"939 Sunset St, New York City, NY 10001" +284993,34in Ultrawide Monitor,1,379.99,11/17/19 20:28,"501 Cedar St, Los Angeles, CA 90001" +284994,27in 4K Gaming Monitor,1,389.99,11/15/19 16:01,"20 Dogwood St, New York City, NY 10001" +284995,20in Monitor,1,109.99,11/30/19 13:01,"660 10th St, Los Angeles, CA 90001" +284996,AA Batteries (4-pack),1,3.84,11/07/19 08:34,"900 Dogwood St, San Francisco, CA 94016" +284997,AAA Batteries (4-pack),1,2.99,11/22/19 18:26,"44 Hill St, Boston, MA 02215" +284998,iPhone,1,700,11/08/19 16:38,"744 Dogwood St, Atlanta, GA 30301" +284999,AAA Batteries (4-pack),1,2.99,11/29/19 16:34,"185 Maple St, Los Angeles, CA 90001" +285000,Wired Headphones,1,11.99,11/28/19 17:02,"439 South St, New York City, NY 10001" +285001,AA Batteries (4-pack),1,3.84,11/18/19 22:39,"29 Main St, Los Angeles, CA 90001" +285002,27in 4K Gaming Monitor,1,389.99,11/11/19 19:24,"381 1st St, Los Angeles, CA 90001" +285003,USB-C Charging Cable,1,11.95,11/16/19 17:27,"975 North St, Dallas, TX 75001" +285004,Lightning Charging Cable,1,14.95,11/14/19 23:46,"345 7th St, San Francisco, CA 94016" +285005,AAA Batteries (4-pack),2,2.99,11/02/19 22:13,"569 Jackson St, San Francisco, CA 94016" +285006,Wired Headphones,1,11.99,11/07/19 19:43,"301 Park St, New York City, NY 10001" +285007,Wired Headphones,1,11.99,11/20/19 16:44,"815 River St, New York City, NY 10001" +285008,20in Monitor,1,109.99,11/26/19 19:44,"408 Elm St, New York City, NY 10001" +285009,27in FHD Monitor,1,149.99,11/17/19 15:24,"608 Park St, San Francisco, CA 94016" +285010,Flatscreen TV,1,300,11/29/19 23:21,"430 1st St, Dallas, TX 75001" +285011,AAA Batteries (4-pack),2,2.99,11/05/19 08:07,"614 9th St, Seattle, WA 98101" +285012,34in Ultrawide Monitor,1,379.99,11/23/19 16:27,"603 10th St, Los Angeles, CA 90001" +285013,USB-C Charging Cable,1,11.95,11/12/19 12:52,"949 Washington St, Austin, TX 73301" +285014,AA Batteries (4-pack),2,3.84,11/22/19 20:27,"280 Hill St, New York City, NY 10001" +285015,Apple Airpods Headphones,1,150,11/07/19 12:55,"234 West St, New York City, NY 10001" +285016,AAA Batteries (4-pack),1,2.99,11/17/19 17:42,"736 Johnson St, Los Angeles, CA 90001" +285017,AAA Batteries (4-pack),1,2.99,11/26/19 22:31,"211 Willow St, New York City, NY 10001" +285018,USB-C Charging Cable,1,11.95,11/03/19 18:18,"698 9th St, Los Angeles, CA 90001" +285019,Wired Headphones,1,11.99,11/26/19 17:34,"723 West St, Los Angeles, CA 90001" +285020,ThinkPad Laptop,1,999.99,11/11/19 10:01,"397 South St, Los Angeles, CA 90001" +285021,ThinkPad Laptop,1,999.99,11/18/19 09:55,"513 Washington St, Atlanta, GA 30301" +285022,USB-C Charging Cable,1,11.95,11/09/19 10:03,"772 5th St, San Francisco, CA 94016" +285023,Lightning Charging Cable,2,14.95,11/20/19 15:54,"330 8th St, Los Angeles, CA 90001" +285024,Lightning Charging Cable,1,14.95,11/24/19 13:53,"827 Spruce St, Boston, MA 02215" +285025,Bose SoundSport Headphones,1,99.99,11/06/19 08:03,"957 Spruce St, Los Angeles, CA 90001" +285026,Flatscreen TV,1,300,11/16/19 07:38,"643 14th St, Portland, OR 97035" +285027,USB-C Charging Cable,1,11.95,11/30/19 16:16,"746 Lincoln St, San Francisco, CA 94016" +285028,Apple Airpods Headphones,1,150,11/26/19 06:19,"410 2nd St, New York City, NY 10001" +285029,Lightning Charging Cable,1,14.95,11/19/19 00:11,"279 Madison St, San Francisco, CA 94016" +285030,Lightning Charging Cable,1,14.95,11/22/19 19:39,"45 Elm St, Los Angeles, CA 90001" +285031,Lightning Charging Cable,1,14.95,11/30/19 11:17,"332 10th St, Boston, MA 02215" +285032,20in Monitor,1,109.99,11/30/19 17:17,"342 Walnut St, Los Angeles, CA 90001" +285033,AAA Batteries (4-pack),1,2.99,11/29/19 17:01,"531 6th St, San Francisco, CA 94016" +285034,Wired Headphones,1,11.99,11/27/19 23:38,"126 Walnut St, Boston, MA 02215" +285035,AA Batteries (4-pack),1,3.84,11/13/19 01:26,"594 11th St, Boston, MA 02215" +285036,Wired Headphones,1,11.99,11/30/19 12:04,"351 Ridge St, Austin, TX 73301" +285037,20in Monitor,1,109.99,11/04/19 11:42,"614 Lincoln St, Seattle, WA 98101" +285038,Lightning Charging Cable,1,14.95,11/06/19 20:08,"322 Church St, San Francisco, CA 94016" +285039,Wired Headphones,1,11.99,11/17/19 19:40,"162 Elm St, Los Angeles, CA 90001" +285040,Google Phone,1,600,11/23/19 15:39,"134 Hill St, Seattle, WA 98101" +285040,USB-C Charging Cable,1,11.95,11/23/19 15:39,"134 Hill St, Seattle, WA 98101" +285041,20in Monitor,1,109.99,11/24/19 15:43,"673 12th St, San Francisco, CA 94016" +285042,27in FHD Monitor,2,149.99,11/08/19 15:50,"942 2nd St, Los Angeles, CA 90001" +285043,AAA Batteries (4-pack),1,2.99,11/04/19 21:13,"421 Cherry St, New York City, NY 10001" +285044,USB-C Charging Cable,1,11.95,11/30/19 12:07,"609 South St, San Francisco, CA 94016" +285045,USB-C Charging Cable,1,11.95,11/25/19 10:06,"282 13th St, Los Angeles, CA 90001" +285046,Lightning Charging Cable,1,14.95,11/13/19 22:17,"674 West St, Austin, TX 73301" +285047,AAA Batteries (4-pack),1,2.99,11/09/19 17:17,"638 Maple St, New York City, NY 10001" +285047,AAA Batteries (4-pack),1,2.99,11/09/19 17:17,"638 Maple St, New York City, NY 10001" +285048,Lightning Charging Cable,1,14.95,11/03/19 20:38,"165 10th St, Atlanta, GA 30301" +285049,34in Ultrawide Monitor,1,379.99,11/12/19 14:20,"940 8th St, Portland, OR 97035" +285050,AA Batteries (4-pack),2,3.84,11/26/19 13:41,"613 12th St, Atlanta, GA 30301" +285051,USB-C Charging Cable,1,11.95,11/19/19 12:43,"479 5th St, San Francisco, CA 94016" +285052,AA Batteries (4-pack),2,3.84,11/06/19 22:41,"118 Cedar St, Los Angeles, CA 90001" +285053,27in FHD Monitor,1,149.99,11/08/19 07:46,"93 Center St, San Francisco, CA 94016" +285054,Flatscreen TV,1,300,11/12/19 16:22,"157 6th St, San Francisco, CA 94016" +285055,Bose SoundSport Headphones,1,99.99,11/08/19 18:12,"964 Ridge St, Austin, TX 73301" +285056,Macbook Pro Laptop,1,1700,11/02/19 18:20,"906 Wilson St, Los Angeles, CA 90001" +285057,AA Batteries (4-pack),3,3.84,11/05/19 16:37,"230 West St, New York City, NY 10001" +285058,AA Batteries (4-pack),1,3.84,11/03/19 05:38,"765 Ridge St, Boston, MA 02215" +285059,Lightning Charging Cable,1,14.95,11/28/19 14:23,"498 Lake St, San Francisco, CA 94016" +285060,20in Monitor,1,109.99,11/02/19 12:37,"773 Lakeview St, Boston, MA 02215" +285061,USB-C Charging Cable,1,11.95,11/11/19 06:17,"268 12th St, Portland, ME 04101" +285062,Wired Headphones,1,11.99,11/02/19 09:42,"184 1st St, Los Angeles, CA 90001" +285063,AAA Batteries (4-pack),1,2.99,11/19/19 13:44,"347 7th St, Austin, TX 73301" +285064,20in Monitor,2,109.99,11/08/19 19:30,"574 Wilson St, Seattle, WA 98101" +285064,AA Batteries (4-pack),1,3.84,11/08/19 19:30,"574 Wilson St, Seattle, WA 98101" +285065,Apple Airpods Headphones,1,150,11/16/19 11:32,"331 Ridge St, Los Angeles, CA 90001" +285066,Macbook Pro Laptop,1,1700,11/21/19 21:36,"261 Center St, Seattle, WA 98101" +285067,Wired Headphones,1,11.99,11/08/19 09:44,"125 Elm St, Atlanta, GA 30301" +285068,Flatscreen TV,1,300,11/28/19 20:32,"421 Dogwood St, Boston, MA 02215" +285069,Wired Headphones,1,11.99,11/28/19 18:35,"959 4th St, Portland, ME 04101" +285070,Wired Headphones,1,11.99,11/01/19 11:15,"800 Lake St, Boston, MA 02215" +285071,AAA Batteries (4-pack),1,2.99,11/16/19 23:30,"369 2nd St, Atlanta, GA 30301" +285072,USB-C Charging Cable,1,11.95,11/19/19 09:14,"910 Hill St, Los Angeles, CA 90001" +285073,34in Ultrawide Monitor,1,379.99,11/28/19 08:45,"536 Cherry St, Boston, MA 02215" +285074,Wired Headphones,1,11.99,11/28/19 23:08,"530 Ridge St, San Francisco, CA 94016" +285075,Wired Headphones,1,11.99,11/08/19 19:01,"887 Washington St, Atlanta, GA 30301" +285076,34in Ultrawide Monitor,1,379.99,11/02/19 14:24,"122 North St, San Francisco, CA 94016" +285077,AAA Batteries (4-pack),3,2.99,11/01/19 12:08,"38 Highland St, San Francisco, CA 94016" +285078,Wired Headphones,1,11.99,11/01/19 19:33,"689 Adams St, San Francisco, CA 94016" +285079,Bose SoundSport Headphones,1,99.99,11/15/19 19:50,"882 Hill St, Austin, TX 73301" +285080,USB-C Charging Cable,1,11.95,11/23/19 18:36,"197 Wilson St, New York City, NY 10001" +285081,20in Monitor,1,109.99,11/13/19 15:38,"204 Johnson St, New York City, NY 10001" +285082,Flatscreen TV,1,300,11/13/19 20:12,"708 Wilson St, Los Angeles, CA 90001" +285083,USB-C Charging Cable,1,11.95,11/23/19 23:15,"891 Jefferson St, Portland, ME 04101" +285084,AAA Batteries (4-pack),1,2.99,11/05/19 16:52,"487 Lake St, Seattle, WA 98101" +285085,Bose SoundSport Headphones,1,99.99,11/25/19 17:23,"339 Lincoln St, Atlanta, GA 30301" +285086,Wired Headphones,1,11.99,11/01/19 21:13,"207 Jefferson St, Portland, OR 97035" +285087,27in FHD Monitor,1,149.99,11/07/19 06:41,"282 Elm St, Dallas, TX 75001" +285088,Bose SoundSport Headphones,1,99.99,11/08/19 17:49,"887 Madison St, Seattle, WA 98101" +285089,Apple Airpods Headphones,1,150,11/04/19 09:33,"900 North St, New York City, NY 10001" +285090,Wired Headphones,1,11.99,11/06/19 22:10,"283 Pine St, New York City, NY 10001" +285091,Apple Airpods Headphones,1,150,11/12/19 20:34,"402 Adams St, Portland, ME 04101" +285092,Bose SoundSport Headphones,1,99.99,11/05/19 13:13,"311 Pine St, Portland, OR 97035" +285093,iPhone,1,700,11/16/19 13:20,"214 Chestnut St, Boston, MA 02215" +285094,27in 4K Gaming Monitor,1,389.99,11/06/19 19:52,"197 11th St, San Francisco, CA 94016" +285095,Wired Headphones,1,11.99,11/13/19 23:45,"77 Cedar St, Seattle, WA 98101" +285096,27in FHD Monitor,1,149.99,11/08/19 11:16,"729 Lincoln St, Atlanta, GA 30301" +285097,27in FHD Monitor,1,149.99,11/11/19 09:25,"356 River St, San Francisco, CA 94016" +285098,iPhone,1,700,11/01/19 10:54,"725 River St, San Francisco, CA 94016" +285099,USB-C Charging Cable,1,11.95,11/05/19 21:52,"48 Pine St, Seattle, WA 98101" +285100,27in FHD Monitor,1,149.99,11/06/19 10:15,"848 Dogwood St, Boston, MA 02215" +285101,AAA Batteries (4-pack),2,2.99,11/30/19 18:03,"535 Highland St, Boston, MA 02215" +285102,USB-C Charging Cable,1,11.95,11/15/19 11:07,"684 Pine St, Portland, OR 97035" +285103,USB-C Charging Cable,1,11.95,11/23/19 12:01,"28 Hill St, New York City, NY 10001" +285104,Bose SoundSport Headphones,1,99.99,11/10/19 11:41,"891 Lincoln St, Boston, MA 02215" +285105,Bose SoundSport Headphones,1,99.99,11/09/19 11:42,"815 Meadow St, Atlanta, GA 30301" +285106,34in Ultrawide Monitor,1,379.99,11/21/19 16:59,"635 1st St, New York City, NY 10001" +285107,27in 4K Gaming Monitor,1,389.99,11/02/19 13:53,"505 South St, Dallas, TX 75001" +285108,Lightning Charging Cable,1,14.95,11/18/19 09:37,"626 Jefferson St, New York City, NY 10001" +285109,AAA Batteries (4-pack),1,2.99,11/04/19 11:08,"199 2nd St, Boston, MA 02215" +285110,27in FHD Monitor,1,149.99,11/11/19 12:09,"247 5th St, Boston, MA 02215" +285111,34in Ultrawide Monitor,1,379.99,11/20/19 08:58,"72 Jefferson St, New York City, NY 10001" +285112,27in FHD Monitor,1,149.99,11/27/19 11:46,"472 Walnut St, Los Angeles, CA 90001" +285113,Wired Headphones,1,11.99,11/10/19 21:30,"777 Hill St, Boston, MA 02215" +285114,Lightning Charging Cable,1,14.95,11/17/19 16:35,"15 7th St, Dallas, TX 75001" +285115,Lightning Charging Cable,1,14.95,11/13/19 18:39,"231 Church St, Dallas, TX 75001" +285116,Lightning Charging Cable,1,14.95,11/07/19 13:44,"808 7th St, Dallas, TX 75001" +285117,AAA Batteries (4-pack),2,2.99,11/07/19 15:01,"572 River St, Austin, TX 73301" +285118,AAA Batteries (4-pack),1,2.99,11/09/19 11:24,"188 12th St, Atlanta, GA 30301" +285119,USB-C Charging Cable,1,11.95,11/28/19 21:33,"72 Park St, New York City, NY 10001" +285120,Lightning Charging Cable,2,14.95,11/04/19 15:52,"511 11th St, Boston, MA 02215" +285121,Wired Headphones,1,11.99,11/14/19 17:04,"710 10th St, Dallas, TX 75001" +285122,Lightning Charging Cable,1,14.95,11/14/19 23:14,"61 12th St, San Francisco, CA 94016" +285123,27in 4K Gaming Monitor,1,389.99,11/06/19 20:02,"987 Jackson St, San Francisco, CA 94016" +285124,Bose SoundSport Headphones,1,99.99,11/30/19 23:03,"917 Forest St, Atlanta, GA 30301" +285125,34in Ultrawide Monitor,1,379.99,11/08/19 20:19,"858 Walnut St, New York City, NY 10001" +285126,USB-C Charging Cable,1,11.95,11/14/19 14:00,"253 7th St, San Francisco, CA 94016" +285127,USB-C Charging Cable,2,11.95,11/03/19 05:16,"930 Hill St, Austin, TX 73301" +285128,Wired Headphones,1,11.99,11/20/19 11:28,"914 Willow St, San Francisco, CA 94016" +285129,AA Batteries (4-pack),1,3.84,11/27/19 04:53,"426 Madison St, Los Angeles, CA 90001" +285130,LG Dryer,1,600.0,11/04/19 23:14,"723 Ridge St, Los Angeles, CA 90001" +285131,Bose SoundSport Headphones,1,99.99,11/01/19 20:03,"977 Washington St, San Francisco, CA 94016" +285132,AA Batteries (4-pack),1,3.84,11/08/19 18:20,"979 10th St, Los Angeles, CA 90001" +285133,Lightning Charging Cable,1,14.95,11/20/19 19:48,"976 Lakeview St, New York City, NY 10001" +285134,27in FHD Monitor,2,149.99,11/17/19 12:24,"964 Forest St, Seattle, WA 98101" +285135,USB-C Charging Cable,1,11.95,11/21/19 17:16,"928 Chestnut St, Austin, TX 73301" +285136,Wired Headphones,1,11.99,11/29/19 09:17,"443 6th St, Boston, MA 02215" +285137,Google Phone,1,600,11/08/19 10:31,"772 North St, Los Angeles, CA 90001" +285138,USB-C Charging Cable,1,11.95,11/17/19 10:12,"899 Walnut St, Los Angeles, CA 90001" +285139,34in Ultrawide Monitor,1,379.99,11/07/19 12:34,"471 Jefferson St, New York City, NY 10001" +285140,AAA Batteries (4-pack),3,2.99,11/26/19 15:44,"40 Walnut St, New York City, NY 10001" +285141,Bose SoundSport Headphones,1,99.99,11/12/19 08:36,"136 13th St, Los Angeles, CA 90001" +285142,USB-C Charging Cable,1,11.95,11/06/19 10:38,"395 South St, New York City, NY 10001" +285143,USB-C Charging Cable,1,11.95,11/24/19 16:40,"953 Madison St, San Francisco, CA 94016" +285144,Apple Airpods Headphones,1,150,11/01/19 11:59,"629 12th St, San Francisco, CA 94016" +285145,27in FHD Monitor,1,149.99,11/10/19 23:04,"175 14th St, San Francisco, CA 94016" +285146,Wired Headphones,1,11.99,11/20/19 18:18,"582 2nd St, Austin, TX 73301" +285147,ThinkPad Laptop,1,999.99,11/18/19 22:24,"65 7th St, Boston, MA 02215" +285148,Lightning Charging Cable,1,14.95,11/28/19 10:35,"242 Dogwood St, New York City, NY 10001" +285149,Wired Headphones,1,11.99,11/10/19 09:34,"206 6th St, Los Angeles, CA 90001" +285150,27in 4K Gaming Monitor,1,389.99,11/01/19 10:56,"513 Elm St, Los Angeles, CA 90001" +285151,Macbook Pro Laptop,1,1700,11/15/19 13:24,"491 Washington St, Dallas, TX 75001" +285152,iPhone,1,700,11/08/19 20:47,"815 Spruce St, Los Angeles, CA 90001" +285153,AA Batteries (4-pack),1,3.84,11/15/19 17:01,"483 West St, San Francisco, CA 94016" +285154,Lightning Charging Cable,1,14.95,11/07/19 18:57,"998 Madison St, Los Angeles, CA 90001" +285155,iPhone,1,700,11/17/19 18:00,"502 Forest St, New York City, NY 10001" +285156,Bose SoundSport Headphones,1,99.99,11/27/19 12:50,"974 North St, San Francisco, CA 94016" +285157,Bose SoundSport Headphones,1,99.99,11/26/19 06:38,"73 River St, San Francisco, CA 94016" +285158,AA Batteries (4-pack),1,3.84,11/05/19 15:29,"964 Forest St, Dallas, TX 75001" +285159,Bose SoundSport Headphones,1,99.99,11/02/19 12:27,"603 4th St, Dallas, TX 75001" +285160,Apple Airpods Headphones,1,150,11/11/19 12:09,"812 Walnut St, New York City, NY 10001" +285161,Bose SoundSport Headphones,1,99.99,11/28/19 17:44,"625 Hill St, Boston, MA 02215" +285162,Lightning Charging Cable,2,14.95,11/26/19 10:28,"892 Wilson St, San Francisco, CA 94016" +285163,20in Monitor,1,109.99,11/29/19 16:26,"513 North St, Dallas, TX 75001" +285164,Apple Airpods Headphones,1,150,11/22/19 19:27,"945 Dogwood St, Seattle, WA 98101" +285165,AA Batteries (4-pack),2,3.84,11/16/19 15:47,"453 14th St, New York City, NY 10001" +285166,Apple Airpods Headphones,1,150,11/21/19 16:14,"34 Main St, Los Angeles, CA 90001" +285167,AAA Batteries (4-pack),2,2.99,11/18/19 12:52,"285 Adams St, San Francisco, CA 94016" +285168,34in Ultrawide Monitor,1,379.99,11/26/19 08:07,"441 Madison St, Los Angeles, CA 90001" +285169,iPhone,1,700,11/29/19 16:06,"553 Jefferson St, New York City, NY 10001" +285169,Apple Airpods Headphones,1,150,11/29/19 16:06,"553 Jefferson St, New York City, NY 10001" +285170,Lightning Charging Cable,1,14.95,11/05/19 08:55,"136 Hickory St, New York City, NY 10001" +285171,Wired Headphones,1,11.99,11/27/19 10:23,"173 Jefferson St, Boston, MA 02215" +285172,Macbook Pro Laptop,1,1700,11/05/19 12:55,"342 Lake St, Dallas, TX 75001" +285173,Lightning Charging Cable,1,14.95,11/08/19 15:37,"88 Cherry St, Atlanta, GA 30301" +285174,20in Monitor,1,109.99,11/04/19 12:29,"990 Cherry St, Seattle, WA 98101" +285175,34in Ultrawide Monitor,1,379.99,11/16/19 11:34,"927 Madison St, San Francisco, CA 94016" +285176,Wired Headphones,1,11.99,11/22/19 22:24,"138 9th St, Seattle, WA 98101" +285177,Macbook Pro Laptop,1,1700,11/22/19 16:47,"705 South St, Portland, OR 97035" +285178,Wired Headphones,1,11.99,11/11/19 18:08,"644 Hill St, Los Angeles, CA 90001" +285179,27in FHD Monitor,1,149.99,11/24/19 23:16,"362 North St, San Francisco, CA 94016" +285180,AAA Batteries (4-pack),1,2.99,11/22/19 19:22,"285 9th St, San Francisco, CA 94016" +285181,iPhone,1,700,11/13/19 11:18,"507 Cherry St, San Francisco, CA 94016" +285181,Lightning Charging Cable,3,14.95,11/13/19 11:18,"507 Cherry St, San Francisco, CA 94016" +285182,Apple Airpods Headphones,1,150,11/22/19 21:01,"527 Washington St, San Francisco, CA 94016" +285183,Wired Headphones,1,11.99,11/24/19 16:45,"292 Chestnut St, Seattle, WA 98101" +285184,Lightning Charging Cable,1,14.95,11/08/19 11:00,"241 Main St, Austin, TX 73301" +285185,AAA Batteries (4-pack),2,2.99,11/21/19 20:13,"903 Forest St, Seattle, WA 98101" +285186,USB-C Charging Cable,1,11.95,11/07/19 14:42,"311 Wilson St, San Francisco, CA 94016" +285187,Wired Headphones,1,11.99,11/11/19 08:29,"905 Chestnut St, San Francisco, CA 94016" +285188,Apple Airpods Headphones,1,150,11/08/19 18:25,"903 Hill St, Boston, MA 02215" +285189,Wired Headphones,1,11.99,11/02/19 09:39,"189 Lincoln St, San Francisco, CA 94016" +285190,Apple Airpods Headphones,1,150,11/12/19 14:01,"92 Forest St, New York City, NY 10001" +285191,Wired Headphones,1,11.99,11/21/19 06:25,"273 11th St, Portland, ME 04101" +285192,Bose SoundSport Headphones,1,99.99,11/15/19 11:03,"485 Washington St, San Francisco, CA 94016" +285193,Lightning Charging Cable,1,14.95,11/16/19 09:45,"992 Church St, Los Angeles, CA 90001" +285194,27in FHD Monitor,1,149.99,11/13/19 16:39,"738 1st St, New York City, NY 10001" +285195,AAA Batteries (4-pack),1,2.99,11/14/19 12:15,"378 South St, San Francisco, CA 94016" +285196,27in FHD Monitor,1,149.99,11/26/19 03:19,"286 Walnut St, New York City, NY 10001" +285197,AA Batteries (4-pack),1,3.84,11/21/19 00:21,"714 Forest St, New York City, NY 10001" +285198,AAA Batteries (4-pack),1,2.99,11/25/19 06:35,"677 Johnson St, New York City, NY 10001" +285199,Apple Airpods Headphones,1,150,11/23/19 18:17,"770 Hickory St, Los Angeles, CA 90001" +285200,Bose SoundSport Headphones,1,99.99,11/28/19 13:11,"414 5th St, Atlanta, GA 30301" +285201,27in FHD Monitor,1,149.99,11/09/19 12:01,"473 Pine St, Dallas, TX 75001" +285202,Apple Airpods Headphones,1,150,11/04/19 23:46,"110 Hill St, San Francisco, CA 94016" +285203,Lightning Charging Cable,1,14.95,11/23/19 15:04,"385 Church St, San Francisco, CA 94016" +285204,Lightning Charging Cable,1,14.95,11/12/19 15:47,"307 Walnut St, Dallas, TX 75001" +285205,AA Batteries (4-pack),1,3.84,11/26/19 18:38,"973 8th St, Los Angeles, CA 90001" +285206,USB-C Charging Cable,1,11.95,11/03/19 14:49,"564 9th St, Seattle, WA 98101" +285207,Bose SoundSport Headphones,1,99.99,11/23/19 16:54,"458 14th St, New York City, NY 10001" +285208,iPhone,1,700,11/22/19 12:37,"252 Willow St, Los Angeles, CA 90001" +285209,ThinkPad Laptop,1,999.99,11/24/19 18:04,"232 7th St, Dallas, TX 75001" +285210,Bose SoundSport Headphones,1,99.99,11/30/19 02:27,"455 Highland St, Los Angeles, CA 90001" +285211,Lightning Charging Cable,1,14.95,11/24/19 11:00,"782 Lincoln St, San Francisco, CA 94016" +285212,AAA Batteries (4-pack),4,2.99,11/07/19 00:30,"649 Main St, Portland, ME 04101" +285213,27in 4K Gaming Monitor,1,389.99,11/20/19 17:00,"74 South St, Seattle, WA 98101" +285214,ThinkPad Laptop,1,999.99,11/11/19 17:53,"140 Cherry St, Austin, TX 73301" +285215,AA Batteries (4-pack),1,3.84,11/05/19 15:20,"495 Washington St, Atlanta, GA 30301" +285216,Wired Headphones,1,11.99,11/09/19 19:54,"201 5th St, Dallas, TX 75001" +285217,USB-C Charging Cable,1,11.95,11/07/19 08:41,"329 Madison St, New York City, NY 10001" +285218,Lightning Charging Cable,1,14.95,11/05/19 21:47,"182 Hill St, New York City, NY 10001" +285219,Wired Headphones,1,11.99,11/23/19 21:40,"64 1st St, Los Angeles, CA 90001" +285220,USB-C Charging Cable,1,11.95,11/24/19 05:29,"572 Elm St, Boston, MA 02215" +285221,AA Batteries (4-pack),1,3.84,11/21/19 10:41,"690 Church St, New York City, NY 10001" +285222,Wired Headphones,1,11.99,11/02/19 20:59,"620 12th St, Portland, OR 97035" +285223,Lightning Charging Cable,1,14.95,11/06/19 00:31,"446 12th St, San Francisco, CA 94016" +285224,Bose SoundSport Headphones,1,99.99,11/06/19 15:37,"816 7th St, New York City, NY 10001" +285225,Flatscreen TV,1,300,11/09/19 15:30,"309 Spruce St, Los Angeles, CA 90001" +285226,Bose SoundSport Headphones,1,99.99,11/04/19 10:03,"829 4th St, Los Angeles, CA 90001" +285227,AA Batteries (4-pack),5,3.84,11/05/19 00:33,"962 Pine St, New York City, NY 10001" +285228,34in Ultrawide Monitor,1,379.99,11/03/19 17:29,"478 Johnson St, Seattle, WA 98101" +285229,Lightning Charging Cable,1,14.95,11/22/19 12:13,"161 Forest St, San Francisco, CA 94016" +285230,Apple Airpods Headphones,1,150,11/23/19 13:25,"420 Lakeview St, Portland, OR 97035" +285231,AA Batteries (4-pack),2,3.84,11/25/19 09:24,"285 Main St, Boston, MA 02215" +285232,ThinkPad Laptop,1,999.99,11/13/19 00:01,"41 West St, San Francisco, CA 94016" +285233,Apple Airpods Headphones,1,150,11/21/19 07:27,"119 Hill St, Dallas, TX 75001" +285234,27in FHD Monitor,1,149.99,11/01/19 20:00,"612 Hickory St, San Francisco, CA 94016" +285235,Apple Airpods Headphones,1,150,11/15/19 20:46,"840 14th St, San Francisco, CA 94016" +285236,20in Monitor,1,109.99,11/21/19 16:38,"755 11th St, Boston, MA 02215" +285237,AAA Batteries (4-pack),2,2.99,11/03/19 16:33,"887 Park St, Atlanta, GA 30301" +285238,USB-C Charging Cable,1,11.95,11/10/19 09:44,"11 Sunset St, Austin, TX 73301" +285239,USB-C Charging Cable,1,11.95,11/17/19 19:49,"948 2nd St, San Francisco, CA 94016" +285240,Bose SoundSport Headphones,1,99.99,11/10/19 23:28,"214 Center St, Dallas, TX 75001" +285241,Wired Headphones,1,11.99,11/01/19 13:23,"743 Lakeview St, San Francisco, CA 94016" +285242,Bose SoundSport Headphones,1,99.99,11/26/19 23:06,"289 Sunset St, Los Angeles, CA 90001" +285243,Apple Airpods Headphones,1,150,11/26/19 18:50,"35 Jackson St, Los Angeles, CA 90001" +285244,Lightning Charging Cable,1,14.95,11/25/19 12:34,"224 Chestnut St, New York City, NY 10001" +285245,Apple Airpods Headphones,1,150,11/30/19 16:30,"994 Forest St, San Francisco, CA 94016" +285246,AA Batteries (4-pack),2,3.84,11/25/19 18:48,"335 10th St, Dallas, TX 75001" +285247,Apple Airpods Headphones,1,150,11/10/19 16:07,"732 Walnut St, New York City, NY 10001" +285248,Wired Headphones,1,11.99,11/05/19 16:22,"119 9th St, Los Angeles, CA 90001" +285249,AAA Batteries (4-pack),1,2.99,11/06/19 13:26,"593 Lincoln St, San Francisco, CA 94016" +285250,Lightning Charging Cable,1,14.95,11/24/19 11:04,"654 Walnut St, New York City, NY 10001" +285251,USB-C Charging Cable,1,11.95,11/25/19 21:32,"708 Adams St, San Francisco, CA 94016" +285252,Wired Headphones,1,11.99,11/09/19 07:55,"27 8th St, Boston, MA 02215" +285253,Wired Headphones,1,11.99,11/23/19 18:33,"951 Johnson St, San Francisco, CA 94016" +285254,Lightning Charging Cable,1,14.95,11/04/19 16:01,"107 Lincoln St, New York City, NY 10001" +285255,Bose SoundSport Headphones,1,99.99,11/22/19 13:47,"458 Hill St, Portland, OR 97035" +285256,20in Monitor,1,109.99,11/29/19 13:35,"176 4th St, Seattle, WA 98101" +285257,Apple Airpods Headphones,1,150,11/10/19 20:01,"741 4th St, San Francisco, CA 94016" +285258,AA Batteries (4-pack),1,3.84,11/13/19 16:32,"916 4th St, Boston, MA 02215" +285259,Wired Headphones,1,11.99,11/28/19 14:29,"997 Dogwood St, New York City, NY 10001" +285260,Flatscreen TV,1,300,11/12/19 10:19,"181 11th St, Dallas, TX 75001" +285261,Wired Headphones,1,11.99,11/21/19 12:15,"103 Jackson St, New York City, NY 10001" +285262,Apple Airpods Headphones,1,150,11/04/19 21:11,"736 Wilson St, Portland, OR 97035" +285263,Macbook Pro Laptop,1,1700,11/15/19 00:02,"666 Forest St, Portland, ME 04101" +285264,Wired Headphones,1,11.99,11/01/19 19:36,"756 Adams St, Dallas, TX 75001" +285265,Lightning Charging Cable,1,14.95,11/18/19 06:28,"204 Maple St, New York City, NY 10001" +285266,Apple Airpods Headphones,1,150,11/19/19 18:39,"335 Spruce St, New York City, NY 10001" +285267,AA Batteries (4-pack),2,3.84,11/11/19 12:04,"523 Church St, Portland, OR 97035" +285268,Lightning Charging Cable,1,14.95,11/07/19 17:41,"191 Johnson St, Portland, OR 97035" +285269,Google Phone,1,600,11/13/19 19:20,"754 4th St, Austin, TX 73301" +285270,27in FHD Monitor,1,149.99,11/23/19 14:18,"247 North St, Los Angeles, CA 90001" +285271,27in FHD Monitor,1,149.99,11/12/19 14:22,"440 Hill St, San Francisco, CA 94016" +285272,AAA Batteries (4-pack),1,2.99,11/05/19 12:42,"782 4th St, Boston, MA 02215" +285273,AA Batteries (4-pack),1,3.84,11/10/19 10:09,"430 Chestnut St, San Francisco, CA 94016" +285274,20in Monitor,1,109.99,11/24/19 18:36,"101 14th St, Los Angeles, CA 90001" +285275,Lightning Charging Cable,1,14.95,11/09/19 15:06,"890 Sunset St, Austin, TX 73301" +285276,AAA Batteries (4-pack),2,2.99,11/19/19 12:57,"66 Ridge St, Dallas, TX 75001" +285277,Apple Airpods Headphones,1,150,11/25/19 19:31,"246 11th St, Portland, OR 97035" +285278,27in FHD Monitor,1,149.99,11/12/19 06:17,"630 River St, Boston, MA 02215" +285279,Lightning Charging Cable,1,14.95,11/02/19 10:25,"41 Ridge St, San Francisco, CA 94016" +285280,Lightning Charging Cable,1,14.95,11/09/19 08:41,"983 Church St, Seattle, WA 98101" +285281,USB-C Charging Cable,1,11.95,11/19/19 10:00,"256 Jefferson St, San Francisco, CA 94016" +285282,Wired Headphones,1,11.99,11/14/19 20:31,"209 Maple St, Atlanta, GA 30301" +285283,AA Batteries (4-pack),1,3.84,11/12/19 17:18,"593 Dogwood St, San Francisco, CA 94016" +285284,Wired Headphones,1,11.99,11/18/19 14:45,"275 12th St, Los Angeles, CA 90001" +285285,Bose SoundSport Headphones,1,99.99,11/28/19 23:45,"242 6th St, Los Angeles, CA 90001" +285286,LG Washing Machine,1,600.0,11/14/19 14:20,"869 Jackson St, Los Angeles, CA 90001" +285287,Lightning Charging Cable,1,14.95,11/29/19 18:11,"932 Jackson St, Seattle, WA 98101" +285288,ThinkPad Laptop,1,999.99,11/23/19 03:02,"779 8th St, San Francisco, CA 94016" +285289,AAA Batteries (4-pack),1,2.99,11/06/19 21:01,"722 Lincoln St, New York City, NY 10001" +285290,USB-C Charging Cable,1,11.95,11/07/19 05:08,"305 Center St, Atlanta, GA 30301" +285291,27in FHD Monitor,1,149.99,11/15/19 13:16,"398 11th St, Los Angeles, CA 90001" +285292,AAA Batteries (4-pack),3,2.99,11/18/19 12:49,"853 Walnut St, Boston, MA 02215" +285293,27in FHD Monitor,1,149.99,11/13/19 20:59,"996 Willow St, Los Angeles, CA 90001" +285294,USB-C Charging Cable,1,11.95,11/05/19 13:45,"536 North St, Austin, TX 73301" +285295,Lightning Charging Cable,1,14.95,11/13/19 17:05,"912 Main St, San Francisco, CA 94016" +285296,Vareebadd Phone,1,400,11/24/19 16:10,"801 1st St, Atlanta, GA 30301" +285297,USB-C Charging Cable,1,11.95,11/26/19 10:50,"705 Elm St, San Francisco, CA 94016" +285298,Bose SoundSport Headphones,1,99.99,11/03/19 09:06,"55 Wilson St, Seattle, WA 98101" +285299,USB-C Charging Cable,1,11.95,11/25/19 12:48,"592 Wilson St, San Francisco, CA 94016" +285300,20in Monitor,1,109.99,11/19/19 22:23,"21 Lakeview St, Los Angeles, CA 90001" +285301,Bose SoundSport Headphones,1,99.99,11/15/19 13:46,"605 13th St, Boston, MA 02215" +285302,Apple Airpods Headphones,1,150,11/13/19 14:59,"322 6th St, San Francisco, CA 94016" +285303,20in Monitor,1,109.99,11/09/19 04:49,"799 North St, Seattle, WA 98101" +285304,Apple Airpods Headphones,2,150,11/20/19 23:41,"820 Lake St, Los Angeles, CA 90001" +285305,USB-C Charging Cable,1,11.95,11/28/19 11:43,"253 Main St, Atlanta, GA 30301" +285306,Wired Headphones,1,11.99,11/20/19 22:40,"376 Pine St, San Francisco, CA 94016" +285307,USB-C Charging Cable,1,11.95,11/04/19 11:10,"79 9th St, Los Angeles, CA 90001" +285308,Apple Airpods Headphones,1,150,11/29/19 01:05,"790 5th St, San Francisco, CA 94016" +285309,Apple Airpods Headphones,1,150,11/27/19 09:46,"656 Walnut St, Austin, TX 73301" +285310,AAA Batteries (4-pack),2,2.99,11/06/19 08:11,"316 Center St, Seattle, WA 98101" +285311,iPhone,1,700,11/21/19 22:37,"400 2nd St, Los Angeles, CA 90001" +285312,USB-C Charging Cable,1,11.95,11/21/19 19:07,"263 North St, New York City, NY 10001" +285313,AAA Batteries (4-pack),1,2.99,11/02/19 14:58,"893 8th St, Los Angeles, CA 90001" +285314,Apple Airpods Headphones,1,150,11/29/19 18:51,"535 Meadow St, Los Angeles, CA 90001" +285315,Lightning Charging Cable,1,14.95,11/25/19 08:38,"531 Johnson St, San Francisco, CA 94016" +285316,27in FHD Monitor,1,149.99,11/03/19 20:17,"872 North St, Seattle, WA 98101" +285317,AAA Batteries (4-pack),2,2.99,11/15/19 16:32,"776 Madison St, San Francisco, CA 94016" +285318,Wired Headphones,1,11.99,11/17/19 17:11,"947 South St, Los Angeles, CA 90001" +285319,AAA Batteries (4-pack),2,2.99,11/24/19 18:47,"964 West St, Portland, OR 97035" +285320,AAA Batteries (4-pack),1,2.99,11/19/19 22:24,"393 5th St, Los Angeles, CA 90001" +285321,Apple Airpods Headphones,1,150,11/27/19 17:43,"507 Elm St, New York City, NY 10001" +285322,Bose SoundSport Headphones,2,99.99,11/25/19 16:56,"415 Spruce St, San Francisco, CA 94016" +285323,AA Batteries (4-pack),1,3.84,11/26/19 16:51,"960 Lakeview St, San Francisco, CA 94016" +285324,Lightning Charging Cable,1,14.95,11/01/19 19:11,"61 4th St, New York City, NY 10001" +285325,Lightning Charging Cable,1,14.95,11/23/19 14:44,"860 Walnut St, New York City, NY 10001" +285326,27in FHD Monitor,1,149.99,11/03/19 18:23,"416 Chestnut St, Los Angeles, CA 90001" +285327,Apple Airpods Headphones,1,150,11/20/19 21:13,"126 Meadow St, Los Angeles, CA 90001" +285328,AA Batteries (4-pack),2,3.84,11/16/19 14:43,"624 Willow St, Dallas, TX 75001" +285329,Wired Headphones,1,11.99,11/25/19 18:09,"928 North St, San Francisco, CA 94016" +285330,Google Phone,1,600,11/12/19 10:08,"605 Adams St, New York City, NY 10001" +285331,Lightning Charging Cable,1,14.95,11/22/19 23:45,"284 Chestnut St, Atlanta, GA 30301" +285332,34in Ultrawide Monitor,1,379.99,11/16/19 20:57,"970 Meadow St, Los Angeles, CA 90001" +285333,27in FHD Monitor,1,149.99,11/06/19 12:57,"939 14th St, San Francisco, CA 94016" +285334,Apple Airpods Headphones,1,150,11/07/19 20:24,"947 West St, Boston, MA 02215" +285335,Macbook Pro Laptop,1,1700,11/09/19 22:06,"822 Adams St, Boston, MA 02215" +285336,Bose SoundSport Headphones,1,99.99,11/01/19 09:10,"925 8th St, Los Angeles, CA 90001" +285337,Wired Headphones,1,11.99,11/23/19 10:22,"6 8th St, Austin, TX 73301" +285338,ThinkPad Laptop,1,999.99,11/08/19 10:38,"214 Washington St, Boston, MA 02215" +285339,AA Batteries (4-pack),1,3.84,11/26/19 15:38,"268 Jefferson St, New York City, NY 10001" +285340,Flatscreen TV,1,300,11/22/19 21:48,"880 Park St, Boston, MA 02215" +285341,Bose SoundSport Headphones,1,99.99,11/03/19 18:49,"262 Madison St, Boston, MA 02215" +285342,Google Phone,1,600,11/02/19 20:15,"453 Sunset St, San Francisco, CA 94016" +285343,Wired Headphones,1,11.99,11/18/19 22:29,"118 Hickory St, Austin, TX 73301" +285344,27in FHD Monitor,1,149.99,11/22/19 14:18,"492 Lake St, Austin, TX 73301" +285345,AAA Batteries (4-pack),1,2.99,11/03/19 21:46,"299 1st St, Los Angeles, CA 90001" +285346,20in Monitor,1,109.99,11/02/19 12:09,"5 South St, San Francisco, CA 94016" +285347,Flatscreen TV,1,300,11/03/19 22:52,"625 9th St, New York City, NY 10001" +285348,iPhone,1,700,11/12/19 21:37,"353 Maple St, Los Angeles, CA 90001" +285348,Wired Headphones,1,11.99,11/12/19 21:37,"353 Maple St, Los Angeles, CA 90001" +285349,Apple Airpods Headphones,1,150,11/11/19 13:45,"549 10th St, San Francisco, CA 94016" +285350,AA Batteries (4-pack),1,3.84,11/13/19 08:53,"331 Jackson St, Los Angeles, CA 90001" +285351,27in FHD Monitor,1,149.99,11/03/19 16:42,"690 5th St, Boston, MA 02215" +285352,Apple Airpods Headphones,1,150,11/21/19 17:53,"70 Maple St, San Francisco, CA 94016" +285353,Lightning Charging Cable,1,14.95,11/08/19 17:53,"785 Chestnut St, San Francisco, CA 94016" +285354,Lightning Charging Cable,1,14.95,11/05/19 15:26,"512 Washington St, Los Angeles, CA 90001" +285355,AA Batteries (4-pack),1,3.84,11/02/19 17:05,"376 6th St, New York City, NY 10001" +285356,Bose SoundSport Headphones,1,99.99,11/04/19 11:23,"627 Jackson St, Dallas, TX 75001" +285357,34in Ultrawide Monitor,1,379.99,11/17/19 14:24,"978 Sunset St, Atlanta, GA 30301" +285358,USB-C Charging Cable,1,11.95,11/24/19 18:24,"738 Spruce St, Seattle, WA 98101" +285359,Google Phone,1,600,11/28/19 12:37,"200 Jackson St, San Francisco, CA 94016" +285360,Wired Headphones,1,11.99,11/27/19 12:49,"776 Jefferson St, Los Angeles, CA 90001" +285361,USB-C Charging Cable,1,11.95,11/14/19 10:44,"792 10th St, Boston, MA 02215" +285362,Lightning Charging Cable,1,14.95,11/17/19 19:20,"558 13th St, New York City, NY 10001" +285363,Apple Airpods Headphones,1,150,11/24/19 20:34,"514 Park St, Boston, MA 02215" +285364,Bose SoundSport Headphones,1,99.99,11/28/19 20:17,"680 Johnson St, New York City, NY 10001" +285365,Flatscreen TV,1,300,11/19/19 17:13,"141 Main St, Austin, TX 73301" +285366,ThinkPad Laptop,1,999.99,11/25/19 20:37,"369 Forest St, Austin, TX 73301" +285367,Bose SoundSport Headphones,1,99.99,11/11/19 16:52,"282 12th St, Seattle, WA 98101" +285368,27in FHD Monitor,1,149.99,11/24/19 19:32,"770 Cherry St, San Francisco, CA 94016" +285369,Wired Headphones,1,11.99,11/03/19 18:07,"655 8th St, Boston, MA 02215" +285370,LG Dryer,1,600.0,11/24/19 00:18,"663 Highland St, New York City, NY 10001" +285371,27in 4K Gaming Monitor,1,389.99,11/07/19 07:59,"405 Hill St, New York City, NY 10001" +285372,Google Phone,1,600,11/15/19 20:02,"680 14th St, Atlanta, GA 30301" +285372,USB-C Charging Cable,1,11.95,11/15/19 20:02,"680 14th St, Atlanta, GA 30301" +285372,Wired Headphones,1,11.99,11/15/19 20:02,"680 14th St, Atlanta, GA 30301" +285373,20in Monitor,1,109.99,11/01/19 08:04,"247 Park St, Dallas, TX 75001" +285374,Lightning Charging Cable,1,14.95,11/25/19 00:04,"255 Maple St, New York City, NY 10001" +285375,AA Batteries (4-pack),1,3.84,11/09/19 07:37,"936 13th St, Los Angeles, CA 90001" +285376,Lightning Charging Cable,1,14.95,11/11/19 10:35,"644 8th St, San Francisco, CA 94016" +285377,Apple Airpods Headphones,1,150,11/11/19 01:01,"306 Jefferson St, Portland, OR 97035" +285378,AAA Batteries (4-pack),2,2.99,11/08/19 16:54,"439 South St, San Francisco, CA 94016" +285379,USB-C Charging Cable,1,11.95,11/24/19 21:28,"916 North St, San Francisco, CA 94016" +285380,Google Phone,1,600,11/13/19 18:54,"670 13th St, Boston, MA 02215" +285381,ThinkPad Laptop,1,999.99,11/05/19 11:20,"246 Elm St, Portland, OR 97035" +285382,Lightning Charging Cable,1,14.95,11/30/19 21:40,"58 Adams St, Seattle, WA 98101" +285383,Wired Headphones,1,11.99,11/01/19 09:08,"875 Wilson St, Atlanta, GA 30301" +285384,Lightning Charging Cable,1,14.95,11/20/19 12:19,"746 Lakeview St, Atlanta, GA 30301" +285385,USB-C Charging Cable,1,11.95,11/13/19 08:10,"322 Sunset St, Boston, MA 02215" +285386,27in FHD Monitor,1,149.99,11/17/19 13:26,"297 4th St, San Francisco, CA 94016" +285387,Lightning Charging Cable,1,14.95,11/27/19 17:30,"999 10th St, Seattle, WA 98101" +285388,USB-C Charging Cable,2,11.95,11/15/19 14:28,"615 Pine St, Dallas, TX 75001" +285389,iPhone,1,700,11/25/19 19:20,"260 Ridge St, New York City, NY 10001" +285390,Bose SoundSport Headphones,1,99.99,11/19/19 15:39,"772 14th St, Portland, ME 04101" +285391,Lightning Charging Cable,1,14.95,11/29/19 10:40,"529 Pine St, San Francisco, CA 94016" +285392,Macbook Pro Laptop,1,1700,11/22/19 12:38,"998 Pine St, Seattle, WA 98101" +285393,USB-C Charging Cable,2,11.95,11/23/19 18:40,"200 Meadow St, Los Angeles, CA 90001" +285394,Apple Airpods Headphones,1,150,11/06/19 17:31,"364 Madison St, Boston, MA 02215" +285395,USB-C Charging Cable,1,11.95,11/08/19 14:26,"962 13th St, Dallas, TX 75001" +285396,Google Phone,1,600,11/16/19 00:44,"904 Lake St, Los Angeles, CA 90001" +285397,AA Batteries (4-pack),1,3.84,11/01/19 15:41,"521 14th St, San Francisco, CA 94016" +285398,Bose SoundSport Headphones,1,99.99,11/22/19 10:20,"160 5th St, Los Angeles, CA 90001" +285399,34in Ultrawide Monitor,1,379.99,11/02/19 15:52,"212 West St, San Francisco, CA 94016" +285400,Lightning Charging Cable,1,14.95,11/06/19 13:04,"935 Elm St, San Francisco, CA 94016" +285401,AAA Batteries (4-pack),1,2.99,11/29/19 17:59,"384 Dogwood St, Los Angeles, CA 90001" +285402,AAA Batteries (4-pack),1,2.99,11/21/19 12:59,"130 2nd St, Los Angeles, CA 90001" +285403,AAA Batteries (4-pack),2,2.99,11/13/19 11:30,"593 Lincoln St, Dallas, TX 75001" +285404,Lightning Charging Cable,1,14.95,11/18/19 21:32,"627 2nd St, Portland, OR 97035" +285405,Lightning Charging Cable,1,14.95,11/14/19 19:19,"380 Park St, Boston, MA 02215" +285406,Apple Airpods Headphones,1,150,11/01/19 18:26,"439 Pine St, Atlanta, GA 30301" +285407,Wired Headphones,1,11.99,11/09/19 16:55,"497 Lake St, Los Angeles, CA 90001" +285408,AAA Batteries (4-pack),2,2.99,11/24/19 19:34,"140 8th St, Austin, TX 73301" +285409,AAA Batteries (4-pack),1,2.99,11/30/19 22:46,"610 14th St, Austin, TX 73301" +285410,AA Batteries (4-pack),1,3.84,11/04/19 17:43,"244 Park St, Portland, OR 97035" +285411,Bose SoundSport Headphones,1,99.99,11/01/19 12:45,"758 2nd St, Los Angeles, CA 90001" +285412,Wired Headphones,1,11.99,11/26/19 20:52,"501 Maple St, Seattle, WA 98101" +285413,Lightning Charging Cable,2,14.95,11/28/19 22:49,"256 Walnut St, Los Angeles, CA 90001" +285414,20in Monitor,1,109.99,11/24/19 09:54,"241 14th St, Atlanta, GA 30301" +285415,Apple Airpods Headphones,1,150,11/12/19 16:00,"786 Ridge St, San Francisco, CA 94016" +285416,Lightning Charging Cable,1,14.95,11/06/19 22:48,"508 Church St, Atlanta, GA 30301" +285417,Lightning Charging Cable,1,14.95,11/26/19 00:33,"830 Sunset St, Dallas, TX 75001" +285418,Lightning Charging Cable,2,14.95,11/19/19 14:02,"15 Washington St, Portland, ME 04101" +285419,34in Ultrawide Monitor,1,379.99,11/22/19 18:57,"585 Hickory St, Los Angeles, CA 90001" +285420,Google Phone,1,600,11/19/19 16:35,"315 Maple St, San Francisco, CA 94016" +285421,27in FHD Monitor,1,149.99,11/14/19 19:24,"466 Lake St, Los Angeles, CA 90001" +285422,USB-C Charging Cable,1,11.95,11/26/19 15:51,"260 Center St, New York City, NY 10001" +285423,Bose SoundSport Headphones,1,99.99,11/03/19 14:31,"876 Chestnut St, New York City, NY 10001" +285424,Wired Headphones,1,11.99,11/23/19 22:07,"682 Dogwood St, Austin, TX 73301" +285425,AA Batteries (4-pack),1,3.84,11/27/19 13:20,"636 14th St, New York City, NY 10001" +285425,20in Monitor,1,109.99,11/27/19 13:20,"636 14th St, New York City, NY 10001" +285426,27in 4K Gaming Monitor,1,389.99,11/11/19 07:41,"584 Church St, Atlanta, GA 30301" +285427,AA Batteries (4-pack),2,3.84,11/21/19 18:34,"367 Park St, San Francisco, CA 94016" +285428,AAA Batteries (4-pack),1,2.99,11/30/19 13:27,"290 8th St, New York City, NY 10001" +285429,USB-C Charging Cable,1,11.95,11/16/19 08:25,"707 Hill St, San Francisco, CA 94016" +285430,Lightning Charging Cable,1,14.95,11/24/19 01:22,"147 Meadow St, Boston, MA 02215" +285431,AA Batteries (4-pack),3,3.84,11/15/19 16:33,"329 2nd St, Los Angeles, CA 90001" +285432,AA Batteries (4-pack),1,3.84,11/19/19 23:58,"627 2nd St, Boston, MA 02215" +285433,USB-C Charging Cable,4,11.95,11/30/19 23:13,"941 Meadow St, Los Angeles, CA 90001" +285434,AA Batteries (4-pack),1,3.84,11/23/19 20:28,"959 5th St, San Francisco, CA 94016" +285435,AA Batteries (4-pack),1,3.84,11/01/19 22:41,"354 Hickory St, San Francisco, CA 94016" +285436,AA Batteries (4-pack),1,3.84,11/01/19 12:41,"367 Washington St, Atlanta, GA 30301" +285437,Wired Headphones,1,11.99,11/09/19 18:32,"943 Lincoln St, Atlanta, GA 30301" +285438,AAA Batteries (4-pack),1,2.99,11/12/19 19:39,"162 Jefferson St, New York City, NY 10001" +285439,Apple Airpods Headphones,1,150,11/06/19 07:51,"678 North St, Los Angeles, CA 90001" +285440,AA Batteries (4-pack),1,3.84,11/22/19 10:57,"893 Lake St, Atlanta, GA 30301" +285441,Lightning Charging Cable,1,14.95,11/26/19 11:08,"934 1st St, Seattle, WA 98101" +285442,Lightning Charging Cable,2,14.95,11/17/19 15:47,"187 West St, San Francisco, CA 94016" +285443,USB-C Charging Cable,1,11.95,11/13/19 22:46,"736 Cedar St, San Francisco, CA 94016" +285444,Lightning Charging Cable,1,14.95,11/17/19 16:50,"543 6th St, Los Angeles, CA 90001" +285445,27in 4K Gaming Monitor,1,389.99,11/11/19 16:19,"582 Hickory St, Portland, OR 97035" +285446,iPhone,1,700,11/05/19 10:40,"703 Jefferson St, San Francisco, CA 94016" +285447,Wired Headphones,1,11.99,11/18/19 13:18,"116 10th St, San Francisco, CA 94016" +285448,Lightning Charging Cable,1,14.95,11/01/19 21:31,"806 Adams St, Dallas, TX 75001" +285449,Lightning Charging Cable,1,14.95,11/10/19 14:45,"314 West St, San Francisco, CA 94016" +285450,Lightning Charging Cable,1,14.95,11/26/19 01:04,"945 Adams St, Boston, MA 02215" +285451,AAA Batteries (4-pack),1,2.99,11/12/19 11:34,"290 14th St, Seattle, WA 98101" +285452,Lightning Charging Cable,1,14.95,11/19/19 17:57,"553 Hickory St, San Francisco, CA 94016" +285453,AA Batteries (4-pack),1,3.84,11/27/19 22:58,"419 Ridge St, Austin, TX 73301" +285454,LG Washing Machine,1,600.0,11/25/19 20:29,"623 North St, Boston, MA 02215" +285455,AAA Batteries (4-pack),2,2.99,11/06/19 17:03,"480 9th St, Los Angeles, CA 90001" +285456,Lightning Charging Cable,1,14.95,11/06/19 14:45,"990 Cherry St, San Francisco, CA 94016" +285457,AAA Batteries (4-pack),1,2.99,11/01/19 22:15,"649 Willow St, New York City, NY 10001" +285458,USB-C Charging Cable,1,11.95,11/09/19 21:14,"886 Forest St, San Francisco, CA 94016" +285459,AA Batteries (4-pack),1,3.84,11/14/19 20:00,"55 Pine St, San Francisco, CA 94016" +285460,Wired Headphones,1,11.99,11/05/19 14:56,"699 5th St, Seattle, WA 98101" +285461,Lightning Charging Cable,1,14.95,11/06/19 17:32,"688 Sunset St, Austin, TX 73301" +285462,Google Phone,1,600,11/14/19 20:48,"693 Walnut St, Dallas, TX 75001" +285463,34in Ultrawide Monitor,1,379.99,11/05/19 12:57,"148 10th St, Seattle, WA 98101" +285464,Lightning Charging Cable,1,14.95,11/04/19 17:19,"198 14th St, Austin, TX 73301" +285465,AA Batteries (4-pack),1,3.84,11/20/19 19:13,"236 8th St, New York City, NY 10001" +285466,Wired Headphones,1,11.99,11/30/19 12:15,"663 Maple St, San Francisco, CA 94016" +285467,Apple Airpods Headphones,1,150,11/06/19 08:09,"226 Forest St, Los Angeles, CA 90001" +285468,AA Batteries (4-pack),1,3.84,11/19/19 22:42,"676 Pine St, Austin, TX 73301" +285469,Wired Headphones,1,11.99,11/11/19 14:03,"773 Maple St, Boston, MA 02215" +285470,USB-C Charging Cable,1,11.95,11/10/19 08:57,"428 Willow St, San Francisco, CA 94016" +285471,AAA Batteries (4-pack),1,2.99,11/12/19 19:38,"50 Hickory St, Los Angeles, CA 90001" +285472,Lightning Charging Cable,1,14.95,11/06/19 11:59,"230 11th St, Portland, OR 97035" +285473,USB-C Charging Cable,1,11.95,11/15/19 11:25,"145 10th St, Portland, ME 04101" +285474,Lightning Charging Cable,1,14.95,11/04/19 17:39,"992 Spruce St, Seattle, WA 98101" +285475,20in Monitor,1,109.99,11/24/19 18:45,"657 1st St, Los Angeles, CA 90001" +285476,Lightning Charging Cable,1,14.95,11/01/19 13:48,"967 Washington St, San Francisco, CA 94016" +285477,AA Batteries (4-pack),1,3.84,11/04/19 13:06,"470 River St, New York City, NY 10001" +285478,USB-C Charging Cable,1,11.95,11/13/19 13:23,"435 6th St, Los Angeles, CA 90001" +285479,AA Batteries (4-pack),1,3.84,11/12/19 13:15,"306 11th St, San Francisco, CA 94016" +285480,AAA Batteries (4-pack),1,2.99,11/22/19 10:28,"546 Cherry St, Portland, OR 97035" +285481,Bose SoundSport Headphones,1,99.99,11/10/19 18:27,"717 Johnson St, Atlanta, GA 30301" +285482,Apple Airpods Headphones,1,150,11/17/19 20:36,"684 Johnson St, Portland, OR 97035" +285483,Wired Headphones,2,11.99,11/05/19 21:18,"574 8th St, San Francisco, CA 94016" +285484,Wired Headphones,1,11.99,11/23/19 17:29,"479 Chestnut St, Austin, TX 73301" +285485,USB-C Charging Cable,1,11.95,11/08/19 17:39,"86 8th St, Los Angeles, CA 90001" +285486,AAA Batteries (4-pack),2,2.99,11/26/19 19:22,"460 12th St, New York City, NY 10001" +285487,AA Batteries (4-pack),2,3.84,11/16/19 14:46,"550 Willow St, Portland, ME 04101" +285488,AA Batteries (4-pack),2,3.84,11/10/19 19:52,"693 8th St, Los Angeles, CA 90001" +285489,USB-C Charging Cable,1,11.95,11/01/19 14:49,"126 Park St, Dallas, TX 75001" +285490,Bose SoundSport Headphones,1,99.99,11/20/19 21:51,"703 Madison St, Los Angeles, CA 90001" +285491,Lightning Charging Cable,1,14.95,11/18/19 22:02,"227 5th St, New York City, NY 10001" +285492,Apple Airpods Headphones,1,150,11/02/19 21:18,"969 11th St, Atlanta, GA 30301" +285493,USB-C Charging Cable,1,11.95,11/11/19 14:53,"240 Wilson St, Dallas, TX 75001" +285494,Apple Airpods Headphones,1,150,11/04/19 00:08,"223 Spruce St, New York City, NY 10001" +285495,Macbook Pro Laptop,1,1700,11/06/19 19:03,"817 Highland St, San Francisco, CA 94016" +285496,AAA Batteries (4-pack),1,2.99,11/08/19 21:26,"606 Main St, Boston, MA 02215" +285497,USB-C Charging Cable,1,11.95,11/20/19 17:54,"125 Elm St, Austin, TX 73301" +285498,Macbook Pro Laptop,1,1700,11/13/19 11:53,"278 Madison St, Los Angeles, CA 90001" +285499,USB-C Charging Cable,1,11.95,11/17/19 19:28,"208 Lakeview St, San Francisco, CA 94016" +285500,USB-C Charging Cable,1,11.95,11/21/19 23:05,"133 Madison St, New York City, NY 10001" +285501,AAA Batteries (4-pack),1,2.99,11/06/19 19:23,"844 Main St, San Francisco, CA 94016" +285501,34in Ultrawide Monitor,1,379.99,11/06/19 19:23,"844 Main St, San Francisco, CA 94016" +285502,AA Batteries (4-pack),1,3.84,11/14/19 12:08,"467 Forest St, San Francisco, CA 94016" +285503,AA Batteries (4-pack),1,3.84,11/26/19 16:03,"658 South St, San Francisco, CA 94016" +285504,USB-C Charging Cable,1,11.95,11/21/19 19:44,"421 10th St, San Francisco, CA 94016" +285505,Bose SoundSport Headphones,1,99.99,11/03/19 20:45,"225 Madison St, New York City, NY 10001" +285506,LG Washing Machine,1,600.0,11/19/19 19:53,"400 Lake St, Atlanta, GA 30301" +285507,Lightning Charging Cable,1,14.95,11/10/19 07:51,"824 Walnut St, Boston, MA 02215" +285508,AAA Batteries (4-pack),1,2.99,11/11/19 17:32,"407 Park St, Boston, MA 02215" +285509,27in FHD Monitor,1,149.99,11/13/19 11:36,"633 Sunset St, New York City, NY 10001" +285510,Apple Airpods Headphones,1,150,11/17/19 21:54,"215 Lincoln St, San Francisco, CA 94016" +285511,AA Batteries (4-pack),1,3.84,11/15/19 15:25,"265 Cedar St, New York City, NY 10001" +285512,AA Batteries (4-pack),2,3.84,11/07/19 22:19,"794 Walnut St, Los Angeles, CA 90001" +285513,USB-C Charging Cable,1,11.95,11/20/19 11:15,"168 Hill St, New York City, NY 10001" +285514,Vareebadd Phone,1,400,11/29/19 12:50,"145 Lakeview St, Los Angeles, CA 90001" +285515,AAA Batteries (4-pack),1,2.99,11/18/19 10:16,"190 1st St, San Francisco, CA 94016" +285516,AA Batteries (4-pack),1,3.84,11/18/19 16:42,"562 Hill St, Los Angeles, CA 90001" +285517,20in Monitor,1,109.99,11/14/19 12:07,"40 Jefferson St, Los Angeles, CA 90001" +285518,USB-C Charging Cable,1,11.95,11/21/19 12:56,"459 West St, New York City, NY 10001" +285519,LG Washing Machine,1,600.0,11/24/19 09:15,"394 5th St, San Francisco, CA 94016" +285520,Apple Airpods Headphones,1,150,11/12/19 13:11,"54 Lake St, Los Angeles, CA 90001" +285521,27in FHD Monitor,1,149.99,11/05/19 11:46,"608 6th St, Atlanta, GA 30301" +285522,iPhone,1,700,11/11/19 09:24,"899 2nd St, Portland, OR 97035" +285523,AAA Batteries (4-pack),3,2.99,11/17/19 17:51,"245 Jefferson St, Boston, MA 02215" +285524,AAA Batteries (4-pack),1,2.99,11/01/19 05:04,"812 Jefferson St, Seattle, WA 98101" +285525,27in FHD Monitor,1,149.99,11/21/19 20:17,"913 Main St, Boston, MA 02215" +285526,Flatscreen TV,1,300,11/15/19 09:10,"255 Forest St, San Francisco, CA 94016" +285527,27in FHD Monitor,1,149.99,11/26/19 19:51,"239 Jefferson St, Dallas, TX 75001" +285528,AA Batteries (4-pack),1,3.84,11/24/19 21:46,"764 Washington St, Seattle, WA 98101" +285529,27in 4K Gaming Monitor,1,389.99,11/19/19 16:31,"360 Lake St, Dallas, TX 75001" +285530,USB-C Charging Cable,1,11.95,11/06/19 20:14,"46 Lakeview St, Seattle, WA 98101" +285531,AA Batteries (4-pack),3,3.84,11/24/19 14:43,"803 North St, Los Angeles, CA 90001" +285532,Bose SoundSport Headphones,1,99.99,11/12/19 15:13,"579 South St, Boston, MA 02215" +285533,Lightning Charging Cable,1,14.95,11/14/19 22:44,"117 Sunset St, Los Angeles, CA 90001" +285534,AA Batteries (4-pack),1,3.84,11/20/19 11:37,"787 North St, New York City, NY 10001" +285535,AAA Batteries (4-pack),1,2.99,11/20/19 22:24,"971 Park St, San Francisco, CA 94016" +285536,AAA Batteries (4-pack),2,2.99,11/13/19 10:07,"302 Jackson St, Atlanta, GA 30301" +285537,27in FHD Monitor,1,149.99,11/17/19 07:42,"215 Main St, Atlanta, GA 30301" +285538,Lightning Charging Cable,1,14.95,11/27/19 14:30,"55 Willow St, Boston, MA 02215" +285539,Google Phone,1,600,11/09/19 17:17,"759 Highland St, San Francisco, CA 94016" +285539,USB-C Charging Cable,1,11.95,11/09/19 17:17,"759 Highland St, San Francisco, CA 94016" +285540,Macbook Pro Laptop,1,1700,11/23/19 15:25,"395 1st St, Boston, MA 02215" +285541,Flatscreen TV,1,300,11/02/19 12:34,"147 Dogwood St, Portland, OR 97035" +285542,Bose SoundSport Headphones,1,99.99,11/06/19 22:44,"170 6th St, San Francisco, CA 94016" +285543,Lightning Charging Cable,1,14.95,11/06/19 14:29,"68 Jackson St, Boston, MA 02215" +285544,34in Ultrawide Monitor,1,379.99,11/09/19 18:03,"540 Hill St, Atlanta, GA 30301" +285545,27in FHD Monitor,1,149.99,11/15/19 10:19,"44 Elm St, San Francisco, CA 94016" +285545,Macbook Pro Laptop,1,1700,11/15/19 10:19,"44 Elm St, San Francisco, CA 94016" +285546,Apple Airpods Headphones,1,150,11/24/19 20:45,"559 Jackson St, New York City, NY 10001" +285547,USB-C Charging Cable,1,11.95,11/26/19 19:24,"891 7th St, New York City, NY 10001" +285548,Lightning Charging Cable,1,14.95,11/23/19 21:37,"476 Lincoln St, New York City, NY 10001" +285549,Lightning Charging Cable,1,14.95,11/17/19 14:05,"848 4th St, Los Angeles, CA 90001" +285550,Apple Airpods Headphones,1,150,11/15/19 22:13,"501 1st St, San Francisco, CA 94016" +285551,34in Ultrawide Monitor,1,379.99,11/07/19 09:06,"312 4th St, San Francisco, CA 94016" +285552,AAA Batteries (4-pack),1,2.99,11/21/19 14:50,"445 Hill St, Los Angeles, CA 90001" +285553,Lightning Charging Cable,1,14.95,11/14/19 13:11,"436 Hickory St, Austin, TX 73301" +285554,AA Batteries (4-pack),1,3.84,11/11/19 18:09,"548 Church St, San Francisco, CA 94016" +285555,Apple Airpods Headphones,1,150,11/10/19 03:29,"982 Madison St, Boston, MA 02215" +285556,Lightning Charging Cable,1,14.95,11/11/19 10:26,"732 West St, Boston, MA 02215" +285557,AAA Batteries (4-pack),1,2.99,11/09/19 12:03,"315 14th St, Boston, MA 02215" +285558,Bose SoundSport Headphones,1,99.99,11/14/19 09:41,"199 Spruce St, Los Angeles, CA 90001" +285559,Lightning Charging Cable,1,14.95,11/21/19 21:55,"682 Lake St, Boston, MA 02215" +285560,Wired Headphones,1,11.99,11/08/19 18:25,"547 Elm St, New York City, NY 10001" +285561,AAA Batteries (4-pack),2,2.99,11/20/19 20:09,"297 Lincoln St, San Francisco, CA 94016" +285562,Apple Airpods Headphones,1,150,11/08/19 16:18,"709 Adams St, San Francisco, CA 94016" +285563,AA Batteries (4-pack),1,3.84,11/03/19 18:13,"972 Adams St, Portland, OR 97035" +285564,AA Batteries (4-pack),2,3.84,11/23/19 21:09,"392 Wilson St, San Francisco, CA 94016" +285565,Macbook Pro Laptop,1,1700,11/08/19 08:31,"630 Maple St, Los Angeles, CA 90001" +285566,AAA Batteries (4-pack),1,2.99,11/03/19 15:00,"195 12th St, Seattle, WA 98101" +285567,Lightning Charging Cable,1,14.95,11/26/19 23:42,"470 Ridge St, Los Angeles, CA 90001" +285568,Apple Airpods Headphones,1,150,11/26/19 12:12,"85 Lakeview St, Portland, OR 97035" +285569,Lightning Charging Cable,1,14.95,11/03/19 19:12,"555 Hill St, San Francisco, CA 94016" +285570,AAA Batteries (4-pack),1,2.99,11/03/19 00:19,"678 Wilson St, San Francisco, CA 94016" +285571,27in FHD Monitor,1,149.99,11/29/19 15:21,"563 Walnut St, Los Angeles, CA 90001" +285572,AAA Batteries (4-pack),1,2.99,11/17/19 23:05,"964 Hill St, Austin, TX 73301" +285573,AA Batteries (4-pack),1,3.84,11/04/19 16:39,"657 5th St, Boston, MA 02215" +285574,Flatscreen TV,1,300,11/10/19 10:36,"182 South St, New York City, NY 10001" +285575,AAA Batteries (4-pack),1,2.99,11/22/19 15:37,"191 11th St, Dallas, TX 75001" +285576,27in 4K Gaming Monitor,1,389.99,11/03/19 22:27,"83 Wilson St, Boston, MA 02215" +285577,Macbook Pro Laptop,1,1700,11/13/19 17:32,"314 Sunset St, Dallas, TX 75001" +285578,AAA Batteries (4-pack),2,2.99,11/26/19 18:28,"856 Wilson St, Austin, TX 73301" +285579,Flatscreen TV,1,300,11/28/19 21:20,"476 Madison St, San Francisco, CA 94016" +285580,AAA Batteries (4-pack),1,2.99,11/17/19 10:41,"577 Highland St, Los Angeles, CA 90001" +285581,Bose SoundSport Headphones,1,99.99,11/06/19 20:12,"457 Cherry St, Los Angeles, CA 90001" +285582,LG Dryer,1,600.0,11/06/19 22:33,"285 Center St, New York City, NY 10001" +285583,Google Phone,1,600,11/19/19 23:33,"161 Lakeview St, New York City, NY 10001" +285584,Lightning Charging Cable,1,14.95,11/25/19 12:37,"718 5th St, San Francisco, CA 94016" +285585,Flatscreen TV,1,300,11/21/19 23:34,"555 Chestnut St, Portland, OR 97035" +285586,AA Batteries (4-pack),3,3.84,11/25/19 16:15,"139 Hill St, Austin, TX 73301" +285587,AAA Batteries (4-pack),1,2.99,11/12/19 18:18,"430 4th St, San Francisco, CA 94016" +285588,Bose SoundSport Headphones,1,99.99,11/25/19 09:12,"563 Forest St, Boston, MA 02215" +285589,Wired Headphones,1,11.99,11/20/19 15:34,"106 Main St, Dallas, TX 75001" +285590,AA Batteries (4-pack),2,3.84,11/27/19 19:43,"581 West St, Dallas, TX 75001" +285591,USB-C Charging Cable,1,11.95,11/20/19 19:37,"942 Pine St, Portland, OR 97035" +285592,Macbook Pro Laptop,1,1700,11/25/19 03:31,"922 Adams St, Los Angeles, CA 90001" +285593,Apple Airpods Headphones,1,150,11/12/19 17:46,"907 Dogwood St, Los Angeles, CA 90001" +285594,Bose SoundSport Headphones,1,99.99,11/14/19 14:51,"121 Elm St, Boston, MA 02215" +285595,AA Batteries (4-pack),1,3.84,11/09/19 11:48,"148 9th St, New York City, NY 10001" +285596,Wired Headphones,2,11.99,11/30/19 14:56,"460 Maple St, Portland, OR 97035" +285597,27in FHD Monitor,1,149.99,11/10/19 06:36,"926 9th St, Los Angeles, CA 90001" +285598,Lightning Charging Cable,1,14.95,11/21/19 16:44,"255 12th St, San Francisco, CA 94016" +285599,Wired Headphones,1,11.99,11/07/19 19:23,"903 Hickory St, San Francisco, CA 94016" +285600,AA Batteries (4-pack),1,3.84,11/01/19 16:35,"52 7th St, San Francisco, CA 94016" +285600,Google Phone,1,600,11/01/19 16:35,"52 7th St, San Francisco, CA 94016" +285601,USB-C Charging Cable,1,11.95,11/15/19 14:18,"161 West St, San Francisco, CA 94016" +285602,USB-C Charging Cable,1,11.95,11/08/19 12:18,"554 Forest St, Boston, MA 02215" +285603,Macbook Pro Laptop,1,1700,11/27/19 10:24,"537 12th St, Seattle, WA 98101" +285604,ThinkPad Laptop,1,999.99,11/03/19 12:41,"131 Madison St, San Francisco, CA 94016" +285605,Apple Airpods Headphones,1,150,11/14/19 08:59,"183 Dogwood St, Los Angeles, CA 90001" +285606,34in Ultrawide Monitor,1,379.99,11/19/19 15:23,"808 Walnut St, Dallas, TX 75001" +285607,Wired Headphones,1,11.99,11/03/19 13:20,"532 Forest St, New York City, NY 10001" +285608,27in FHD Monitor,1,149.99,11/24/19 19:38,"808 Jefferson St, Seattle, WA 98101" +285609,34in Ultrawide Monitor,1,379.99,11/04/19 08:58,"471 Spruce St, Boston, MA 02215" +285610,AA Batteries (4-pack),1,3.84,11/09/19 19:03,"446 Highland St, Boston, MA 02215" +285611,34in Ultrawide Monitor,1,379.99,11/03/19 01:57,"858 10th St, Boston, MA 02215" +285612,Lightning Charging Cable,1,14.95,11/19/19 13:51,"466 Highland St, Portland, OR 97035" +285613,Google Phone,1,600,11/14/19 05:27,"627 Elm St, Atlanta, GA 30301" +285613,USB-C Charging Cable,1,11.95,11/14/19 05:27,"627 Elm St, Atlanta, GA 30301" +285614,iPhone,1,700,11/12/19 00:14,"696 Maple St, Dallas, TX 75001" +285615,20in Monitor,1,109.99,11/14/19 22:08,"259 Pine St, San Francisco, CA 94016" +285616,Wired Headphones,1,11.99,11/07/19 15:32,"797 14th St, New York City, NY 10001" +285617,ThinkPad Laptop,1,999.99,11/21/19 10:34,"863 Jefferson St, New York City, NY 10001" +285618,20in Monitor,1,109.99,11/19/19 18:50,"456 Chestnut St, Los Angeles, CA 90001" +285619,Macbook Pro Laptop,1,1700,11/10/19 19:48,"125 Center St, New York City, NY 10001" +285620,Apple Airpods Headphones,1,150,11/25/19 08:50,"626 2nd St, San Francisco, CA 94016" +285621,Macbook Pro Laptop,1,1700,11/04/19 15:06,"564 2nd St, San Francisco, CA 94016" +285622,AA Batteries (4-pack),2,3.84,11/02/19 19:08,"100 Spruce St, Dallas, TX 75001" +285623,Wired Headphones,1,11.99,11/07/19 21:58,"984 13th St, New York City, NY 10001" +285624,AAA Batteries (4-pack),1,2.99,11/24/19 19:12,"76 West St, Austin, TX 73301" +285625,27in 4K Gaming Monitor,1,389.99,11/20/19 17:30,"876 Washington St, New York City, NY 10001" +285626,27in 4K Gaming Monitor,1,389.99,11/17/19 19:16,"557 Pine St, San Francisco, CA 94016" +285627,Lightning Charging Cable,1,14.95,11/30/19 18:28,"260 Park St, Seattle, WA 98101" +285628,USB-C Charging Cable,1,11.95,11/28/19 17:04,"92 Madison St, Los Angeles, CA 90001" +285629,34in Ultrawide Monitor,1,379.99,11/23/19 12:30,"156 Washington St, Boston, MA 02215" +285630,Lightning Charging Cable,1,14.95,11/11/19 18:07,"238 Lakeview St, Atlanta, GA 30301" +285631,AAA Batteries (4-pack),2,2.99,11/13/19 13:35,"966 2nd St, Boston, MA 02215" +285632,Lightning Charging Cable,1,14.95,11/26/19 08:11,"360 Center St, Boston, MA 02215" +285633,AAA Batteries (4-pack),1,2.99,11/02/19 14:56,"695 Lake St, Seattle, WA 98101" +285634,AA Batteries (4-pack),1,3.84,11/26/19 11:14,"238 Church St, Portland, ME 04101" +285635,USB-C Charging Cable,1,11.95,11/27/19 09:23,"20 14th St, Dallas, TX 75001" +285636,iPhone,1,700,11/06/19 06:38,"179 West St, Portland, OR 97035" +285637,Wired Headphones,1,11.99,11/13/19 13:20,"943 9th St, Dallas, TX 75001" +285638,ThinkPad Laptop,1,999.99,11/02/19 18:14,"405 Jackson St, San Francisco, CA 94016" +285639,AAA Batteries (4-pack),3,2.99,11/05/19 19:49,"753 11th St, Seattle, WA 98101" +285640,USB-C Charging Cable,1,11.95,11/13/19 23:30,"83 1st St, San Francisco, CA 94016" +285641,Wired Headphones,1,11.99,11/17/19 13:48,"640 7th St, Boston, MA 02215" +285642,AA Batteries (4-pack),1,3.84,11/10/19 07:55,"958 Park St, Seattle, WA 98101" +285642,27in FHD Monitor,1,149.99,11/10/19 07:55,"958 Park St, Seattle, WA 98101" +285643,Bose SoundSport Headphones,1,99.99,11/16/19 14:32,"316 Wilson St, San Francisco, CA 94016" +285644,Apple Airpods Headphones,1,150,11/27/19 01:38,"16 Chestnut St, San Francisco, CA 94016" +285645,Bose SoundSport Headphones,1,99.99,11/14/19 12:56,"527 8th St, San Francisco, CA 94016" +285646,iPhone,1,700,11/13/19 23:03,"774 Main St, San Francisco, CA 94016" +285647,AAA Batteries (4-pack),3,2.99,11/05/19 23:36,"495 Adams St, Austin, TX 73301" +285648,Macbook Pro Laptop,1,1700,11/26/19 09:31,"853 River St, Austin, TX 73301" +285649,AA Batteries (4-pack),3,3.84,11/18/19 13:27,"896 Madison St, San Francisco, CA 94016" +285650,Apple Airpods Headphones,1,150,11/29/19 00:38,"273 Hickory St, Austin, TX 73301" +285651,27in 4K Gaming Monitor,1,389.99,11/30/19 15:12,"156 South St, San Francisco, CA 94016" +285652,Apple Airpods Headphones,1,150,11/23/19 18:00,"299 Park St, Portland, OR 97035" +285653,Lightning Charging Cable,1,14.95,11/13/19 10:04,"972 1st St, San Francisco, CA 94016" +285654,AAA Batteries (4-pack),1,2.99,11/17/19 23:57,"736 Park St, Boston, MA 02215" +285655,27in 4K Gaming Monitor,1,389.99,11/29/19 20:41,"970 North St, Seattle, WA 98101" +285656,Wired Headphones,2,11.99,11/09/19 12:45,"204 4th St, Boston, MA 02215" +285657,Bose SoundSport Headphones,1,99.99,11/02/19 17:03,"925 Hill St, Los Angeles, CA 90001" +285658,AAA Batteries (4-pack),2,2.99,11/12/19 15:21,"266 Maple St, San Francisco, CA 94016" +285659,Wired Headphones,1,11.99,11/03/19 10:17,"842 Jackson St, Portland, OR 97035" +285660,Flatscreen TV,1,300,11/26/19 16:03,"189 Maple St, Portland, OR 97035" +285661,USB-C Charging Cable,1,11.95,11/11/19 12:11,"187 1st St, Boston, MA 02215" +285662,Apple Airpods Headphones,1,150,11/01/19 21:46,"127 12th St, Boston, MA 02215" +285663,AA Batteries (4-pack),2,3.84,11/26/19 21:42,"239 Forest St, New York City, NY 10001" +285664,AA Batteries (4-pack),1,3.84,11/11/19 22:39,"258 Main St, New York City, NY 10001" +285665,Wired Headphones,1,11.99,11/14/19 15:26,"918 Madison St, Seattle, WA 98101" +285666,AA Batteries (4-pack),3,3.84,11/23/19 13:02,"429 Dogwood St, Boston, MA 02215" +285667,Bose SoundSport Headphones,1,99.99,11/27/19 22:27,"106 Lake St, New York City, NY 10001" +285668,Lightning Charging Cable,1,14.95,11/15/19 16:59,"105 Meadow St, Los Angeles, CA 90001" +285669,Bose SoundSport Headphones,1,99.99,11/27/19 07:11,"9 5th St, New York City, NY 10001" +285670,Wired Headphones,1,11.99,11/01/19 11:48,"642 Highland St, San Francisco, CA 94016" +285671,Lightning Charging Cable,1,14.95,11/01/19 19:38,"452 Walnut St, Atlanta, GA 30301" +285672,Flatscreen TV,1,300,11/24/19 17:54,"813 Lincoln St, Austin, TX 73301" +285673,AAA Batteries (4-pack),1,2.99,11/30/19 10:22,"12 Lakeview St, Atlanta, GA 30301" +285674,Flatscreen TV,1,300,11/25/19 20:36,"879 Johnson St, San Francisco, CA 94016" +285675,Flatscreen TV,1,300,11/12/19 18:20,"904 Highland St, San Francisco, CA 94016" +285676,USB-C Charging Cable,1,11.95,11/06/19 23:29,"300 Jefferson St, San Francisco, CA 94016" +285677,34in Ultrawide Monitor,1,379.99,11/20/19 05:38,"208 North St, Los Angeles, CA 90001" +285678,34in Ultrawide Monitor,1,379.99,11/27/19 08:34,"941 Walnut St, San Francisco, CA 94016" +285679,27in FHD Monitor,1,149.99,11/01/19 15:44,"259 Adams St, Dallas, TX 75001" +285680,USB-C Charging Cable,1,11.95,11/24/19 22:12,"644 Washington St, New York City, NY 10001" +285681,USB-C Charging Cable,1,11.95,11/22/19 11:50,"861 Pine St, Austin, TX 73301" +285682,AAA Batteries (4-pack),1,2.99,11/06/19 22:18,"209 Cherry St, San Francisco, CA 94016" +285683,AA Batteries (4-pack),2,3.84,11/28/19 08:55,"170 Meadow St, Portland, OR 97035" +285684,AA Batteries (4-pack),1,3.84,11/15/19 19:36,"640 14th St, Austin, TX 73301" +285685,iPhone,1,700,11/01/19 19:03,"245 West St, San Francisco, CA 94016" +285686,Lightning Charging Cable,1,14.95,11/24/19 09:13,"528 South St, Los Angeles, CA 90001" +285687,AAA Batteries (4-pack),3,2.99,11/08/19 22:39,"834 4th St, Dallas, TX 75001" +285687,Wired Headphones,1,11.99,11/08/19 22:39,"834 4th St, Dallas, TX 75001" +285688,Apple Airpods Headphones,1,150,11/14/19 12:39,"566 10th St, Atlanta, GA 30301" +285689,Bose SoundSport Headphones,1,99.99,11/28/19 19:40,"640 Main St, New York City, NY 10001" +285690,Wired Headphones,1,11.99,11/16/19 09:48,"690 Center St, Austin, TX 73301" +285691,Wired Headphones,1,11.99,11/24/19 12:14,"352 11th St, Boston, MA 02215" +285692,AAA Batteries (4-pack),3,2.99,11/10/19 08:25,"367 Walnut St, Seattle, WA 98101" +285693,Wired Headphones,1,11.99,11/05/19 22:53,"61 Maple St, San Francisco, CA 94016" +285694,Wired Headphones,1,11.99,11/15/19 15:20,"531 Ridge St, Dallas, TX 75001" +285695,Lightning Charging Cable,1,14.95,11/17/19 19:34,"229 Wilson St, New York City, NY 10001" +285696,27in 4K Gaming Monitor,1,389.99,11/14/19 20:42,"504 Meadow St, Dallas, TX 75001" +285697,Apple Airpods Headphones,1,150,11/11/19 20:56,"168 Jackson St, Los Angeles, CA 90001" +285698,27in 4K Gaming Monitor,1,389.99,11/25/19 18:34,"238 2nd St, Atlanta, GA 30301" +285699,Lightning Charging Cable,1,14.95,11/16/19 07:44,"870 Jefferson St, Portland, OR 97035" +285700,Wired Headphones,1,11.99,11/07/19 17:51,"651 Hill St, Dallas, TX 75001" +285701,USB-C Charging Cable,1,11.95,11/25/19 09:07,"975 Highland St, Dallas, TX 75001" +285702,Lightning Charging Cable,1,14.95,11/09/19 07:47,"635 Highland St, New York City, NY 10001" +285703,Bose SoundSport Headphones,1,99.99,11/18/19 15:25,"741 12th St, Atlanta, GA 30301" +285704,20in Monitor,1,109.99,11/27/19 22:27,"873 Ridge St, Los Angeles, CA 90001" +285705,Lightning Charging Cable,1,14.95,11/24/19 07:30,"344 Spruce St, Seattle, WA 98101" +285706,ThinkPad Laptop,1,999.99,11/09/19 00:42,"948 Sunset St, New York City, NY 10001" +285707,AAA Batteries (4-pack),1,2.99,11/13/19 10:19,"530 Lakeview St, Seattle, WA 98101" +285708,Bose SoundSport Headphones,2,99.99,11/08/19 10:09,"859 9th St, Los Angeles, CA 90001" +285709,USB-C Charging Cable,1,11.95,11/21/19 21:44,"642 Lakeview St, Boston, MA 02215" +285710,iPhone,1,700,11/29/19 20:11,"477 North St, San Francisco, CA 94016" +285711,27in FHD Monitor,1,149.99,11/05/19 10:31,"884 9th St, Portland, OR 97035" +285712,Google Phone,1,600,11/24/19 13:02,"994 1st St, Portland, ME 04101" +285713,Apple Airpods Headphones,1,150,11/27/19 12:16,"952 Lincoln St, Seattle, WA 98101" +285714,AAA Batteries (4-pack),2,2.99,11/21/19 12:26,"473 4th St, Austin, TX 73301" +285715,Apple Airpods Headphones,1,150,11/23/19 20:40,"287 Lincoln St, New York City, NY 10001" +285716,AAA Batteries (4-pack),1,2.99,11/08/19 17:57,"135 Meadow St, San Francisco, CA 94016" +285717,Macbook Pro Laptop,1,1700,11/05/19 09:53,"833 Maple St, San Francisco, CA 94016" +285718,iPhone,1,700,11/30/19 10:58,"134 Johnson St, Dallas, TX 75001" +285718,Wired Headphones,1,11.99,11/30/19 10:58,"134 Johnson St, Dallas, TX 75001" +285719,AAA Batteries (4-pack),1,2.99,11/11/19 09:47,"59 Pine St, San Francisco, CA 94016" +285720,AA Batteries (4-pack),2,3.84,11/13/19 10:44,"99 14th St, Portland, OR 97035" +285721,Apple Airpods Headphones,1,150,11/29/19 16:49,"39 Lakeview St, Dallas, TX 75001" +285722,Wired Headphones,1,11.99,11/03/19 07:14,"240 13th St, Los Angeles, CA 90001" +285723,Wired Headphones,3,11.99,11/01/19 17:13,"214 West St, Atlanta, GA 30301" +285724,USB-C Charging Cable,1,11.95,11/30/19 18:19,"999 Center St, Boston, MA 02215" +285725,Macbook Pro Laptop,1,1700,11/17/19 23:45,"944 Jefferson St, New York City, NY 10001" +285726,AA Batteries (4-pack),1,3.84,11/02/19 09:01,"992 Cherry St, Seattle, WA 98101" +285727,USB-C Charging Cable,1,11.95,11/23/19 21:47,"648 Dogwood St, Boston, MA 02215" +285728,USB-C Charging Cable,1,11.95,11/09/19 20:13,"61 Elm St, Los Angeles, CA 90001" +285729,USB-C Charging Cable,2,11.95,11/09/19 00:43,"380 Church St, San Francisco, CA 94016" +285730,LG Washing Machine,1,600.0,11/09/19 23:11,"323 Park St, New York City, NY 10001" +285731,AAA Batteries (4-pack),1,2.99,11/22/19 13:18,"179 Cedar St, San Francisco, CA 94016" +285732,Apple Airpods Headphones,1,150,11/22/19 11:34,"509 Johnson St, New York City, NY 10001" +285733,Bose SoundSport Headphones,1,99.99,11/19/19 23:47,"802 Dogwood St, New York City, NY 10001" +285734,USB-C Charging Cable,1,11.95,11/15/19 06:22,"611 Elm St, Los Angeles, CA 90001" +285735,USB-C Charging Cable,1,11.95,11/23/19 21:07,"75 2nd St, Atlanta, GA 30301" +285736,20in Monitor,1,109.99,11/27/19 19:55,"696 Ridge St, San Francisco, CA 94016" +285737,USB-C Charging Cable,1,11.95,11/03/19 07:51,"779 Park St, Austin, TX 73301" +285738,Wired Headphones,1,11.99,11/12/19 18:07,"524 Pine St, Atlanta, GA 30301" +285739,Apple Airpods Headphones,1,150,11/07/19 09:29,"875 Ridge St, Dallas, TX 75001" +285740,Lightning Charging Cable,1,14.95,11/09/19 18:45,"232 Jefferson St, New York City, NY 10001" +285741,Wired Headphones,1,11.99,11/18/19 17:35,"69 Highland St, Portland, OR 97035" +285742,iPhone,1,700,11/04/19 07:12,"392 8th St, Los Angeles, CA 90001" +285742,AA Batteries (4-pack),1,3.84,11/04/19 07:12,"392 8th St, Los Angeles, CA 90001" +285743,iPhone,1,700,11/08/19 14:03,"100 Maple St, Los Angeles, CA 90001" +285743,Apple Airpods Headphones,1,150,11/08/19 14:03,"100 Maple St, Los Angeles, CA 90001" +285744,Wired Headphones,1,11.99,11/27/19 08:34,"954 Walnut St, Los Angeles, CA 90001" +285745,AAA Batteries (4-pack),1,2.99,11/07/19 13:57,"179 Jefferson St, San Francisco, CA 94016" +285746,AA Batteries (4-pack),1,3.84,11/09/19 12:36,"473 River St, Atlanta, GA 30301" +285747,USB-C Charging Cable,1,11.95,11/19/19 18:52,"371 Dogwood St, Dallas, TX 75001" +285748,AA Batteries (4-pack),1,3.84,11/01/19 13:37,"347 Ridge St, Boston, MA 02215" +285749,USB-C Charging Cable,1,11.95,11/13/19 17:46,"275 West St, Boston, MA 02215" +285750,27in FHD Monitor,1,149.99,11/11/19 21:57,"125 Highland St, San Francisco, CA 94016" +285751,Bose SoundSport Headphones,1,99.99,11/04/19 19:42,"114 Willow St, Seattle, WA 98101" +285752,AA Batteries (4-pack),1,3.84,11/06/19 21:11,"356 8th St, New York City, NY 10001" +285753,ThinkPad Laptop,1,999.99,11/09/19 19:40,"985 Hickory St, Dallas, TX 75001" +285754,AAA Batteries (4-pack),1,2.99,11/17/19 15:55,"644 Adams St, San Francisco, CA 94016" +285755,Google Phone,1,600,11/14/19 19:55,"207 Lakeview St, Dallas, TX 75001" +285756,Apple Airpods Headphones,1,150,11/28/19 13:27,"447 5th St, Dallas, TX 75001" +285757,Bose SoundSport Headphones,1,99.99,11/24/19 23:15,"688 Meadow St, New York City, NY 10001" +285758,AAA Batteries (4-pack),1,2.99,11/10/19 16:14,"623 14th St, Seattle, WA 98101" +285759,Lightning Charging Cable,1,14.95,11/12/19 14:42,"550 Highland St, San Francisco, CA 94016" +285760,USB-C Charging Cable,1,11.95,11/21/19 11:54,"176 Ridge St, San Francisco, CA 94016" +285761,Apple Airpods Headphones,1,150,11/02/19 14:39,"164 Maple St, New York City, NY 10001" +285762,Flatscreen TV,1,300,11/07/19 18:30,"150 Hill St, Seattle, WA 98101" +285763,AAA Batteries (4-pack),1,2.99,11/27/19 11:53,"102 9th St, San Francisco, CA 94016" +285764,27in FHD Monitor,1,149.99,11/23/19 10:51,"37 12th St, Dallas, TX 75001" +285765,Wired Headphones,1,11.99,11/26/19 19:56,"262 Dogwood St, Dallas, TX 75001" +285766,Flatscreen TV,1,300,11/10/19 00:13,"93 5th St, San Francisco, CA 94016" +285767,Apple Airpods Headphones,1,150,11/02/19 10:10,"756 Lakeview St, San Francisco, CA 94016" +285768,Bose SoundSport Headphones,1,99.99,11/21/19 11:55,"964 Cherry St, Dallas, TX 75001" +285769,27in 4K Gaming Monitor,1,389.99,11/07/19 19:05,"903 Hill St, New York City, NY 10001" +285770,Apple Airpods Headphones,1,150,11/18/19 11:50,"57 Willow St, Dallas, TX 75001" +285771,Bose SoundSport Headphones,1,99.99,11/14/19 13:28,"34 Park St, Los Angeles, CA 90001" +285772,Wired Headphones,1,11.99,11/01/19 09:31,"665 4th St, New York City, NY 10001" +285773,USB-C Charging Cable,1,11.95,11/09/19 11:31,"666 Hickory St, Dallas, TX 75001" +285774,AA Batteries (4-pack),1,3.84,11/04/19 16:38,"863 Johnson St, New York City, NY 10001" +285775,Flatscreen TV,1,300,11/12/19 09:11,"141 6th St, Portland, OR 97035" +285776,AAA Batteries (4-pack),1,2.99,11/05/19 11:16,"553 Adams St, San Francisco, CA 94016" +285777,USB-C Charging Cable,1,11.95,11/06/19 13:19,"52 Willow St, New York City, NY 10001" +285778,iPhone,1,700,11/17/19 21:52,"69 Center St, Seattle, WA 98101" +285779,USB-C Charging Cable,1,11.95,11/04/19 18:30,"224 11th St, San Francisco, CA 94016" +285780,Wired Headphones,1,11.99,11/15/19 22:04,"731 Madison St, New York City, NY 10001" +285781,Bose SoundSport Headphones,1,99.99,11/15/19 16:52,"427 Jefferson St, Austin, TX 73301" +285782,AA Batteries (4-pack),1,3.84,11/07/19 09:03,"282 South St, San Francisco, CA 94016" +285783,AA Batteries (4-pack),1,3.84,11/11/19 17:33,"879 Madison St, New York City, NY 10001" +285784,Wired Headphones,1,11.99,11/19/19 20:49,"809 Jackson St, San Francisco, CA 94016" +285785,27in FHD Monitor,1,149.99,11/25/19 16:29,"79 South St, Portland, OR 97035" +285786,AAA Batteries (4-pack),1,2.99,11/14/19 09:24,"286 Johnson St, San Francisco, CA 94016" +285787,ThinkPad Laptop,1,999.99,11/15/19 21:56,"898 13th St, San Francisco, CA 94016" +285788,ThinkPad Laptop,1,999.99,11/21/19 15:16,"50 10th St, Los Angeles, CA 90001" +285789,Wired Headphones,1,11.99,11/19/19 23:57,"885 Sunset St, Portland, OR 97035" +285790,USB-C Charging Cable,1,11.95,11/19/19 12:27,"616 13th St, Austin, TX 73301" +285791,Wired Headphones,1,11.99,11/08/19 09:58,"470 Wilson St, Dallas, TX 75001" +285792,USB-C Charging Cable,1,11.95,11/05/19 18:25,"318 Meadow St, Los Angeles, CA 90001" +285793,Macbook Pro Laptop,1,1700,11/13/19 13:11,"29 South St, New York City, NY 10001" +285794,USB-C Charging Cable,1,11.95,11/23/19 18:19,"717 Forest St, Los Angeles, CA 90001" +285795,Wired Headphones,1,11.99,11/27/19 00:38,"842 Cherry St, New York City, NY 10001" +285796,AAA Batteries (4-pack),2,2.99,11/06/19 12:26,"722 Wilson St, Austin, TX 73301" +285797,Bose SoundSport Headphones,1,99.99,11/29/19 16:04,"103 2nd St, Boston, MA 02215" +285798,Wired Headphones,1,11.99,11/06/19 10:09,"822 12th St, San Francisco, CA 94016" +285799,Apple Airpods Headphones,1,150,11/11/19 17:53,"731 5th St, San Francisco, CA 94016" +285800,Apple Airpods Headphones,1,150,11/01/19 20:46,"904 Jackson St, Los Angeles, CA 90001" +285801,Wired Headphones,1,11.99,11/27/19 17:29,"622 6th St, Los Angeles, CA 90001" +285802,AAA Batteries (4-pack),2,2.99,11/19/19 18:07,"631 Walnut St, Seattle, WA 98101" +285803,AA Batteries (4-pack),1,3.84,11/06/19 13:07,"746 6th St, Los Angeles, CA 90001" +285804,Lightning Charging Cable,1,14.95,11/30/19 15:07,"462 Madison St, Boston, MA 02215" +285805,USB-C Charging Cable,1,11.95,11/13/19 08:23,"249 River St, San Francisco, CA 94016" +285806,USB-C Charging Cable,1,11.95,11/10/19 21:53,"591 12th St, New York City, NY 10001" +285807,Lightning Charging Cable,1,14.95,11/15/19 09:15,"874 4th St, New York City, NY 10001" +285808,Bose SoundSport Headphones,1,99.99,11/21/19 21:03,"824 Dogwood St, San Francisco, CA 94016" +285809,Apple Airpods Headphones,1,150,11/21/19 20:06,"466 Spruce St, New York City, NY 10001" +285810,Lightning Charging Cable,1,14.95,11/22/19 11:07,"75 Ridge St, Los Angeles, CA 90001" +285811,AA Batteries (4-pack),1,3.84,11/07/19 18:11,"295 Washington St, Seattle, WA 98101" +285812,27in FHD Monitor,1,149.99,11/26/19 06:28,"888 Cherry St, Los Angeles, CA 90001" +285813,AA Batteries (4-pack),4,3.84,11/20/19 13:19,"813 Lincoln St, Portland, OR 97035" +285814,Google Phone,1,600,11/17/19 12:00,"768 Cedar St, Dallas, TX 75001" +285815,27in FHD Monitor,1,149.99,11/19/19 08:50,"863 11th St, Dallas, TX 75001" +285816,27in FHD Monitor,1,149.99,11/17/19 19:09,"661 Washington St, San Francisco, CA 94016" +285817,Lightning Charging Cable,1,14.95,11/07/19 15:59,"491 Hickory St, San Francisco, CA 94016" +285818,Lightning Charging Cable,1,14.95,11/17/19 19:26,"877 Maple St, San Francisco, CA 94016" +285819,27in FHD Monitor,1,149.99,11/21/19 14:37,"639 13th St, Boston, MA 02215" +285820,Apple Airpods Headphones,1,150,11/27/19 14:37,"617 Meadow St, Boston, MA 02215" +285821,AAA Batteries (4-pack),2,2.99,11/07/19 08:08,"574 Maple St, Boston, MA 02215" +285822,AA Batteries (4-pack),2,3.84,11/03/19 19:30,"117 Lincoln St, Atlanta, GA 30301" +285823,Wired Headphones,1,11.99,11/29/19 08:43,"392 Lakeview St, San Francisco, CA 94016" +285824,Google Phone,1,600,11/09/19 20:21,"951 Ridge St, Los Angeles, CA 90001" +285825,Google Phone,1,600,11/02/19 12:22,"102 5th St, Los Angeles, CA 90001" +285826,iPhone,1,700,11/21/19 15:21,"783 Walnut St, Seattle, WA 98101" +285827,AA Batteries (4-pack),3,3.84,11/12/19 14:15,"55 Jefferson St, Atlanta, GA 30301" +285828,Bose SoundSport Headphones,1,99.99,11/28/19 18:26,"43 North St, Boston, MA 02215" +285829,Lightning Charging Cable,1,14.95,11/01/19 06:57,"456 Lincoln St, Austin, TX 73301" +285830,Google Phone,1,600,11/15/19 23:37,"888 10th St, San Francisco, CA 94016" +285831,Lightning Charging Cable,1,14.95,11/13/19 15:32,"244 Forest St, Boston, MA 02215" +285832,USB-C Charging Cable,1,11.95,11/08/19 15:59,"836 Hill St, San Francisco, CA 94016" +285833,USB-C Charging Cable,1,11.95,11/30/19 17:45,"595 Jackson St, Portland, OR 97035" +285834,USB-C Charging Cable,2,11.95,11/09/19 20:10,"418 Adams St, Dallas, TX 75001" +285835,Lightning Charging Cable,1,14.95,11/23/19 09:23,"459 Johnson St, San Francisco, CA 94016" +285836,Wired Headphones,1,11.99,11/26/19 23:08,"607 Sunset St, Los Angeles, CA 90001" +285837,USB-C Charging Cable,1,11.95,11/20/19 13:57,"912 Jackson St, Los Angeles, CA 90001" +285838,Wired Headphones,1,11.99,11/26/19 19:59,"964 5th St, Atlanta, GA 30301" +285839,LG Washing Machine,1,600.0,11/12/19 23:14,"4 1st St, Atlanta, GA 30301" +285840,Wired Headphones,1,11.99,11/26/19 08:56,"674 2nd St, Seattle, WA 98101" +285841,27in 4K Gaming Monitor,1,389.99,11/01/19 15:35,"291 11th St, Atlanta, GA 30301" +285842,Vareebadd Phone,1,400,11/18/19 13:55,"112 Madison St, Dallas, TX 75001" +285843,27in FHD Monitor,1,149.99,11/15/19 10:05,"348 1st St, Atlanta, GA 30301" +285844,Macbook Pro Laptop,1,1700,11/16/19 19:12,"479 Elm St, San Francisco, CA 94016" +285845,Lightning Charging Cable,1,14.95,11/14/19 12:04,"663 Elm St, New York City, NY 10001" +285846,USB-C Charging Cable,1,11.95,11/27/19 16:12,"382 Spruce St, Austin, TX 73301" +285847,USB-C Charging Cable,1,11.95,11/22/19 10:58,"78 Cedar St, Portland, OR 97035" +285848,Apple Airpods Headphones,1,150,11/04/19 17:33,"579 Main St, New York City, NY 10001" +285849,AAA Batteries (4-pack),1,2.99,11/13/19 16:43,"94 Park St, Dallas, TX 75001" +285850,Bose SoundSport Headphones,1,99.99,11/02/19 23:05,"31 Pine St, San Francisco, CA 94016" +285851,AA Batteries (4-pack),1,3.84,11/03/19 08:36,"593 Church St, San Francisco, CA 94016" +285852,Google Phone,1,600,11/10/19 00:43,"963 Washington St, New York City, NY 10001" +285852,Bose SoundSport Headphones,1,99.99,11/10/19 00:43,"963 Washington St, New York City, NY 10001" +285853,USB-C Charging Cable,1,11.95,11/21/19 06:57,"719 Willow St, Portland, OR 97035" +285854,Wired Headphones,1,11.99,11/10/19 09:49,"149 North St, Los Angeles, CA 90001" +285855,USB-C Charging Cable,1,11.95,11/20/19 18:52,"561 Washington St, Austin, TX 73301" +285856,AAA Batteries (4-pack),1,2.99,11/20/19 08:30,"408 1st St, Austin, TX 73301" +285857,Apple Airpods Headphones,1,150,11/07/19 22:19,"965 Forest St, Portland, OR 97035" +285858,27in FHD Monitor,1,149.99,11/20/19 18:28,"143 Pine St, Seattle, WA 98101" +285859,Lightning Charging Cable,1,14.95,11/26/19 16:47,"840 4th St, Boston, MA 02215" +285860,ThinkPad Laptop,1,999.99,11/29/19 21:12,"452 Church St, Los Angeles, CA 90001" +285861,iPhone,1,700,11/10/19 21:12,"908 Center St, Portland, ME 04101" +285862,AA Batteries (4-pack),1,3.84,11/16/19 09:47,"963 Wilson St, San Francisco, CA 94016" +285863,Flatscreen TV,1,300,11/21/19 21:12,"733 Main St, San Francisco, CA 94016" +285864,Lightning Charging Cable,2,14.95,11/23/19 18:39,"862 Spruce St, Atlanta, GA 30301" +285865,Bose SoundSport Headphones,1,99.99,11/01/19 18:33,"987 Highland St, Boston, MA 02215" +285866,AA Batteries (4-pack),1,3.84,11/22/19 11:02,"163 Sunset St, San Francisco, CA 94016" +285867,Lightning Charging Cable,1,14.95,11/21/19 11:22,"431 Center St, San Francisco, CA 94016" +285868,27in FHD Monitor,1,149.99,11/22/19 23:19,"948 Hickory St, New York City, NY 10001" +285869,Apple Airpods Headphones,1,150,11/13/19 11:56,"255 Adams St, Boston, MA 02215" +285869,AA Batteries (4-pack),1,3.84,11/13/19 11:56,"255 Adams St, Boston, MA 02215" +285870,Apple Airpods Headphones,1,150,11/10/19 23:09,"841 South St, Los Angeles, CA 90001" +285871,Wired Headphones,1,11.99,11/25/19 10:46,"150 Lincoln St, San Francisco, CA 94016" +285872,AAA Batteries (4-pack),1,2.99,11/16/19 20:00,"99 Cherry St, San Francisco, CA 94016" +285873,AA Batteries (4-pack),1,3.84,11/01/19 09:23,"460 Forest St, Atlanta, GA 30301" +285874,AA Batteries (4-pack),1,3.84,11/05/19 16:47,"532 13th St, Los Angeles, CA 90001" +285875,Lightning Charging Cable,1,14.95,11/26/19 19:12,"173 Park St, San Francisco, CA 94016" +285876,USB-C Charging Cable,2,11.95,11/19/19 16:33,"535 Maple St, San Francisco, CA 94016" +285877,27in FHD Monitor,1,149.99,11/09/19 10:51,"832 Forest St, Seattle, WA 98101" +285878,Lightning Charging Cable,1,14.95,11/03/19 10:36,"587 13th St, Los Angeles, CA 90001" +285879,27in FHD Monitor,1,149.99,11/20/19 19:27,"286 12th St, Boston, MA 02215" +285880,20in Monitor,1,109.99,11/08/19 13:22,"938 Dogwood St, Portland, OR 97035" +285881,Apple Airpods Headphones,1,150,11/06/19 08:09,"660 11th St, Atlanta, GA 30301" +285882,USB-C Charging Cable,1,11.95,11/24/19 22:09,"136 Lakeview St, Los Angeles, CA 90001" +285883,USB-C Charging Cable,1,11.95,11/19/19 13:27,"510 10th St, Dallas, TX 75001" +285884,USB-C Charging Cable,1,11.95,11/11/19 18:50,"798 Lincoln St, New York City, NY 10001" +285885,Wired Headphones,2,11.99,11/14/19 13:36,"270 Johnson St, Seattle, WA 98101" +285886,34in Ultrawide Monitor,1,379.99,11/04/19 22:23,"98 Forest St, Boston, MA 02215" +285887,iPhone,1,700,11/08/19 16:55,"522 Lake St, Seattle, WA 98101" +285888,Lightning Charging Cable,1,14.95,11/21/19 19:01,"790 Willow St, San Francisco, CA 94016" +285889,AA Batteries (4-pack),1,3.84,11/24/19 09:41,"874 Walnut St, Portland, ME 04101" +285890,USB-C Charging Cable,2,11.95,11/20/19 19:09,"901 Meadow St, Los Angeles, CA 90001" +285891,Lightning Charging Cable,1,14.95,11/25/19 23:32,"162 7th St, Boston, MA 02215" +285892,Wired Headphones,1,11.99,11/07/19 14:14,"604 11th St, San Francisco, CA 94016" +285893,Google Phone,1,600,11/26/19 15:38,"463 1st St, Los Angeles, CA 90001" +285894,USB-C Charging Cable,1,11.95,11/21/19 14:25,"858 Park St, Portland, OR 97035" +285895,USB-C Charging Cable,1,11.95,11/02/19 09:55,"404 Hickory St, San Francisco, CA 94016" +285896,Lightning Charging Cable,1,14.95,11/28/19 18:54,"128 13th St, Los Angeles, CA 90001" +285897,27in 4K Gaming Monitor,1,389.99,11/29/19 04:37,"953 10th St, New York City, NY 10001" +285898,ThinkPad Laptop,1,999.99,11/25/19 16:14,"526 5th St, San Francisco, CA 94016" +285899,Apple Airpods Headphones,1,150,11/13/19 11:38,"179 South St, New York City, NY 10001" +285900,AAA Batteries (4-pack),2,2.99,11/09/19 14:00,"10 11th St, San Francisco, CA 94016" +285901,Lightning Charging Cable,1,14.95,11/29/19 15:11,"470 Highland St, New York City, NY 10001" +285902,Bose SoundSport Headphones,1,99.99,11/16/19 12:07,"353 Washington St, Los Angeles, CA 90001" +285903,Google Phone,1,600,11/11/19 17:25,"959 4th St, Dallas, TX 75001" +285904,Lightning Charging Cable,1,14.95,11/18/19 18:10,"434 West St, Boston, MA 02215" +285905,AA Batteries (4-pack),3,3.84,11/29/19 10:21,"541 River St, San Francisco, CA 94016" +285906,Bose SoundSport Headphones,1,99.99,11/18/19 18:57,"175 River St, San Francisco, CA 94016" +285907,Wired Headphones,1,11.99,11/06/19 08:16,"785 Sunset St, San Francisco, CA 94016" +285908,Apple Airpods Headphones,1,150,11/29/19 23:49,"285 4th St, New York City, NY 10001" +285909,Bose SoundSport Headphones,1,99.99,11/16/19 14:11,"986 6th St, Seattle, WA 98101" +285910,Lightning Charging Cable,1,14.95,11/03/19 16:25,"877 Church St, San Francisco, CA 94016" +285911,iPhone,1,700,11/22/19 09:15,"985 Cedar St, Portland, OR 97035" +285912,AAA Batteries (4-pack),1,2.99,11/10/19 21:10,"454 Church St, Los Angeles, CA 90001" +285913,Wired Headphones,1,11.99,11/13/19 15:17,"992 Maple St, Los Angeles, CA 90001" +285914,iPhone,1,700,11/16/19 13:05,"482 Lincoln St, Los Angeles, CA 90001" +285914,Wired Headphones,1,11.99,11/16/19 13:05,"482 Lincoln St, Los Angeles, CA 90001" +285915,AA Batteries (4-pack),1,3.84,11/08/19 13:13,"999 Cherry St, Dallas, TX 75001" +285916,Lightning Charging Cable,1,14.95,11/02/19 15:56,"57 Walnut St, San Francisco, CA 94016" +285917,AA Batteries (4-pack),1,3.84,11/19/19 12:13,"791 5th St, Atlanta, GA 30301" +285918,USB-C Charging Cable,1,11.95,11/15/19 08:45,"251 Sunset St, Atlanta, GA 30301" +285919,Wired Headphones,1,11.99,11/19/19 00:02,"244 Jackson St, San Francisco, CA 94016" +285920,Wired Headphones,1,11.99,11/15/19 13:58,"820 Hill St, Los Angeles, CA 90001" +285921,27in FHD Monitor,1,149.99,11/03/19 17:49,"48 Center St, Atlanta, GA 30301" +285922,USB-C Charging Cable,1,11.95,11/21/19 17:23,"404 South St, New York City, NY 10001" +285923,AAA Batteries (4-pack),1,2.99,11/14/19 11:42,"730 Lake St, Portland, ME 04101" +285924,Lightning Charging Cable,1,14.95,11/14/19 19:42,"456 Hill St, New York City, NY 10001" +285925,Lightning Charging Cable,1,14.95,11/27/19 12:47,"427 Dogwood St, Dallas, TX 75001" +285926,AA Batteries (4-pack),1,3.84,11/26/19 17:42,"798 West St, New York City, NY 10001" +285927,AA Batteries (4-pack),2,3.84,11/25/19 15:00,"133 Spruce St, Portland, OR 97035" +285928,AA Batteries (4-pack),1,3.84,11/13/19 18:50,"888 Pine St, Austin, TX 73301" +285929,Apple Airpods Headphones,1,150,11/09/19 08:42,"949 Madison St, Los Angeles, CA 90001" +285930,Apple Airpods Headphones,1,150,11/10/19 21:24,"48 Main St, Atlanta, GA 30301" +285931,AA Batteries (4-pack),1,3.84,11/09/19 07:55,"711 Adams St, San Francisco, CA 94016" +285932,Bose SoundSport Headphones,1,99.99,11/14/19 21:35,"947 Washington St, San Francisco, CA 94016" +285933,Lightning Charging Cable,1,14.95,11/22/19 21:47,"387 Chestnut St, Boston, MA 02215" +285934,AA Batteries (4-pack),2,3.84,11/09/19 16:19,"819 Jackson St, Austin, TX 73301" +285935,Lightning Charging Cable,1,14.95,11/29/19 10:02,"657 Jackson St, Atlanta, GA 30301" +285936,Bose SoundSport Headphones,1,99.99,11/17/19 19:00,"96 Lakeview St, San Francisco, CA 94016" +285937,USB-C Charging Cable,1,11.95,11/17/19 14:40,"380 11th St, San Francisco, CA 94016" +285938,USB-C Charging Cable,2,11.95,11/05/19 17:35,"956 5th St, Boston, MA 02215" +285939,Lightning Charging Cable,1,14.95,11/07/19 12:08,"825 12th St, Los Angeles, CA 90001" +285940,Bose SoundSport Headphones,1,99.99,11/07/19 01:06,"311 Park St, Los Angeles, CA 90001" +285941,20in Monitor,1,109.99,11/03/19 13:41,"167 1st St, New York City, NY 10001" +285942,27in FHD Monitor,1,149.99,11/11/19 10:40,"577 Cedar St, San Francisco, CA 94016" +,,,,, +285943,Wired Headphones,1,11.99,11/04/19 15:13,"719 Maple St, Los Angeles, CA 90001" +285944,AA Batteries (4-pack),1,3.84,11/11/19 15:23,"641 9th St, Boston, MA 02215" +285945,USB-C Charging Cable,1,11.95,11/25/19 02:47,"72 Church St, Austin, TX 73301" +285946,Lightning Charging Cable,1,14.95,11/10/19 20:14,"96 8th St, San Francisco, CA 94016" +285947,USB-C Charging Cable,1,11.95,11/18/19 10:06,"471 Adams St, Atlanta, GA 30301" +285948,Lightning Charging Cable,1,14.95,11/02/19 20:35,"351 Highland St, San Francisco, CA 94016" +285949,Lightning Charging Cable,1,14.95,11/25/19 13:17,"820 Main St, Boston, MA 02215" +285950,Apple Airpods Headphones,1,150,11/24/19 11:28,"268 Center St, Atlanta, GA 30301" +285951,AAA Batteries (4-pack),2,2.99,11/25/19 11:07,"581 Willow St, Los Angeles, CA 90001" +285952,AAA Batteries (4-pack),2,2.99,11/19/19 10:58,"576 Elm St, Dallas, TX 75001" +285953,Apple Airpods Headphones,1,150,11/04/19 09:22,"697 14th St, Austin, TX 73301" +285954,Flatscreen TV,1,300,11/08/19 09:15,"259 Spruce St, Portland, OR 97035" +285955,Lightning Charging Cable,1,14.95,11/01/19 21:54,"485 9th St, Dallas, TX 75001" +285956,34in Ultrawide Monitor,1,379.99,11/15/19 12:09,"326 6th St, Los Angeles, CA 90001" +285957,34in Ultrawide Monitor,1,379.99,11/21/19 20:00,"504 11th St, Austin, TX 73301" +285958,USB-C Charging Cable,1,11.95,11/23/19 10:27,"897 Elm St, San Francisco, CA 94016" +285959,27in 4K Gaming Monitor,1,389.99,11/17/19 13:59,"353 River St, Atlanta, GA 30301" +285960,Google Phone,1,600,11/04/19 14:37,"516 Walnut St, Los Angeles, CA 90001" +285960,USB-C Charging Cable,1,11.95,11/04/19 14:37,"516 Walnut St, Los Angeles, CA 90001" +285961,Lightning Charging Cable,1,14.95,11/18/19 14:34,"587 Lake St, Los Angeles, CA 90001" +285962,Bose SoundSport Headphones,1,99.99,11/30/19 23:50,"661 5th St, Seattle, WA 98101" +285963,Wired Headphones,1,11.99,11/25/19 03:41,"147 7th St, Atlanta, GA 30301" +285964,Bose SoundSport Headphones,1,99.99,11/02/19 13:11,"921 River St, San Francisco, CA 94016" +285965,AA Batteries (4-pack),3,3.84,11/23/19 14:48,"142 Pine St, Boston, MA 02215" +285966,AA Batteries (4-pack),2,3.84,11/12/19 10:40,"472 Spruce St, New York City, NY 10001" +285967,Apple Airpods Headphones,1,150,11/05/19 11:22,"862 Maple St, San Francisco, CA 94016" +285968,AAA Batteries (4-pack),2,2.99,11/13/19 13:57,"947 Lake St, Dallas, TX 75001" +285969,Macbook Pro Laptop,1,1700,11/01/19 18:22,"777 Chestnut St, San Francisco, CA 94016" +285970,27in 4K Gaming Monitor,1,389.99,11/02/19 12:42,"422 Walnut St, New York City, NY 10001" +285971,AA Batteries (4-pack),2,3.84,11/11/19 15:41,"836 1st St, Los Angeles, CA 90001" +285972,AAA Batteries (4-pack),1,2.99,11/05/19 22:48,"981 North St, Los Angeles, CA 90001" +285973,Wired Headphones,1,11.99,11/23/19 19:49,"370 Johnson St, Austin, TX 73301" +285974,Bose SoundSport Headphones,1,99.99,11/27/19 17:11,"904 Willow St, San Francisco, CA 94016" +285975,Apple Airpods Headphones,1,150,11/19/19 18:31,"670 Forest St, Los Angeles, CA 90001" +285976,Lightning Charging Cable,1,14.95,11/14/19 18:50,"901 Jackson St, New York City, NY 10001" +285977,Wired Headphones,1,11.99,11/24/19 11:03,"801 11th St, Austin, TX 73301" +285978,Google Phone,1,600,11/12/19 18:49,"358 Elm St, Portland, OR 97035" +285979,Apple Airpods Headphones,1,150,11/18/19 18:28,"870 Wilson St, Boston, MA 02215" +285980,Wired Headphones,1,11.99,11/04/19 23:15,"800 Pine St, New York City, NY 10001" +285980,AA Batteries (4-pack),1,3.84,11/04/19 23:15,"800 Pine St, New York City, NY 10001" +285981,ThinkPad Laptop,1,999.99,11/24/19 11:42,"192 Church St, Seattle, WA 98101" +285982,AA Batteries (4-pack),1,3.84,11/01/19 10:21,"142 Meadow St, Atlanta, GA 30301" +285983,Vareebadd Phone,1,400,11/05/19 23:20,"433 Adams St, New York City, NY 10001" +285984,Lightning Charging Cable,1,14.95,11/07/19 08:29,"121 Lincoln St, Los Angeles, CA 90001" +285985,ThinkPad Laptop,1,999.99,11/20/19 12:36,"266 Cedar St, Los Angeles, CA 90001" +285986,Lightning Charging Cable,1,14.95,11/04/19 23:18,"911 10th St, Seattle, WA 98101" +285987,27in 4K Gaming Monitor,1,389.99,11/18/19 14:50,"579 Lincoln St, New York City, NY 10001" +285988,AA Batteries (4-pack),1,3.84,11/16/19 11:57,"882 Jackson St, San Francisco, CA 94016" +285989,Bose SoundSport Headphones,1,99.99,11/20/19 19:33,"296 Park St, Seattle, WA 98101" +285990,Macbook Pro Laptop,1,1700,11/06/19 17:27,"528 Washington St, San Francisco, CA 94016" +285991,Lightning Charging Cable,1,14.95,11/11/19 22:05,"670 Wilson St, Boston, MA 02215" +285992,Flatscreen TV,1,300,11/30/19 21:48,"483 River St, San Francisco, CA 94016" +285993,USB-C Charging Cable,2,11.95,11/15/19 18:02,"970 13th St, New York City, NY 10001" +285994,Flatscreen TV,1,300,11/12/19 23:21,"193 Elm St, New York City, NY 10001" +285995,AAA Batteries (4-pack),1,2.99,11/16/19 21:10,"921 2nd St, Portland, OR 97035" +285996,AAA Batteries (4-pack),1,2.99,11/12/19 10:44,"760 Lakeview St, San Francisco, CA 94016" +285997,Vareebadd Phone,1,400,11/09/19 16:43,"999 Spruce St, San Francisco, CA 94016" +285998,AAA Batteries (4-pack),2,2.99,11/03/19 20:08,"609 Jefferson St, Portland, OR 97035" +285999,Bose SoundSport Headphones,1,99.99,11/15/19 23:25,"386 Park St, Portland, ME 04101" +286000,AAA Batteries (4-pack),1,2.99,11/07/19 11:17,"115 Madison St, Los Angeles, CA 90001" +286001,Apple Airpods Headphones,1,150,11/01/19 03:28,"694 Jefferson St, Portland, OR 97035" +286002,34in Ultrawide Monitor,1,379.99,11/01/19 13:01,"885 Wilson St, Austin, TX 73301" +286003,Lightning Charging Cable,1,14.95,11/18/19 11:11,"205 Elm St, Austin, TX 73301" +286004,Flatscreen TV,1,300,11/14/19 21:02,"283 Cherry St, Austin, TX 73301" +286005,ThinkPad Laptop,1,999.99,11/07/19 14:13,"451 9th St, Dallas, TX 75001" +286006,Apple Airpods Headphones,1,150,11/06/19 19:25,"872 Chestnut St, Los Angeles, CA 90001" +286007,Macbook Pro Laptop,1,1700,11/06/19 14:32,"278 Park St, Los Angeles, CA 90001" +286008,Bose SoundSport Headphones,1,99.99,11/21/19 17:39,"885 Forest St, San Francisco, CA 94016" +286009,ThinkPad Laptop,1,999.99,11/02/19 19:00,"831 6th St, San Francisco, CA 94016" +286010,27in FHD Monitor,1,149.99,11/07/19 13:57,"428 Willow St, New York City, NY 10001" +286011,27in FHD Monitor,1,149.99,11/23/19 15:50,"686 Cherry St, Portland, OR 97035" +286012,AA Batteries (4-pack),1,3.84,11/10/19 13:41,"15 8th St, Boston, MA 02215" +286013,USB-C Charging Cable,1,11.95,11/14/19 11:18,"189 Elm St, San Francisco, CA 94016" +286014,Bose SoundSport Headphones,1,99.99,11/04/19 02:35,"196 Center St, Boston, MA 02215" +286015,Apple Airpods Headphones,1,150,11/27/19 11:53,"301 Sunset St, Los Angeles, CA 90001" +286016,AAA Batteries (4-pack),3,2.99,11/02/19 20:19,"336 12th St, New York City, NY 10001" +286017,Lightning Charging Cable,1,14.95,11/04/19 14:17,"913 6th St, Austin, TX 73301" +286018,AA Batteries (4-pack),1,3.84,11/07/19 20:39,"19 14th St, Seattle, WA 98101" +286019,USB-C Charging Cable,1,11.95,11/18/19 14:20,"418 Wilson St, San Francisco, CA 94016" +286020,AAA Batteries (4-pack),1,2.99,11/17/19 20:54,"580 Johnson St, Atlanta, GA 30301" +286021,iPhone,1,700,11/02/19 14:59,"7 North St, Austin, TX 73301" +286022,LG Washing Machine,1,600.0,11/21/19 09:56,"381 Adams St, Atlanta, GA 30301" +286023,Lightning Charging Cable,1,14.95,11/15/19 20:36,"754 Lake St, Atlanta, GA 30301" +286024,27in FHD Monitor,1,149.99,11/07/19 18:57,"613 Park St, Boston, MA 02215" +286025,27in 4K Gaming Monitor,1,389.99,11/03/19 20:28,"283 1st St, Atlanta, GA 30301" +286026,Apple Airpods Headphones,1,150,11/05/19 18:39,"471 Forest St, San Francisco, CA 94016" +286027,iPhone,1,700,11/24/19 04:30,"886 Pine St, Atlanta, GA 30301" +286027,Apple Airpods Headphones,1,150,11/24/19 04:30,"886 Pine St, Atlanta, GA 30301" +286027,Wired Headphones,1,11.99,11/24/19 04:30,"886 Pine St, Atlanta, GA 30301" +286028,AAA Batteries (4-pack),2,2.99,11/07/19 10:50,"21 Willow St, Los Angeles, CA 90001" +286029,AAA Batteries (4-pack),1,2.99,11/12/19 13:13,"146 Forest St, Portland, OR 97035" +286030,USB-C Charging Cable,1,11.95,11/06/19 14:54,"234 Wilson St, Los Angeles, CA 90001" +286031,USB-C Charging Cable,1,11.95,11/27/19 22:25,"749 Elm St, San Francisco, CA 94016" +286032,USB-C Charging Cable,1,11.95,11/19/19 13:39,"657 Cherry St, New York City, NY 10001" +286033,USB-C Charging Cable,1,11.95,11/16/19 10:42,"120 Elm St, Los Angeles, CA 90001" +286034,AAA Batteries (4-pack),2,2.99,11/25/19 01:20,"29 Madison St, Portland, OR 97035" +286035,Wired Headphones,1,11.99,11/16/19 18:48,"624 Spruce St, Dallas, TX 75001" +286036,Lightning Charging Cable,1,14.95,11/04/19 13:00,"40 13th St, Dallas, TX 75001" +286037,27in 4K Gaming Monitor,1,389.99,11/23/19 00:14,"882 Highland St, San Francisco, CA 94016" +286038,AA Batteries (4-pack),1,3.84,11/17/19 22:49,"572 1st St, San Francisco, CA 94016" +286039,USB-C Charging Cable,1,11.95,11/12/19 16:31,"928 Willow St, Dallas, TX 75001" +286040,20in Monitor,1,109.99,11/14/19 05:07,"452 Spruce St, Boston, MA 02215" +286041,AAA Batteries (4-pack),1,2.99,11/21/19 11:51,"311 Johnson St, Los Angeles, CA 90001" +286042,Flatscreen TV,1,300,11/29/19 17:30,"906 Sunset St, Seattle, WA 98101" +286043,Apple Airpods Headphones,1,150,11/11/19 11:27,"223 Forest St, New York City, NY 10001" +286044,Apple Airpods Headphones,1,150,11/25/19 11:12,"360 2nd St, Los Angeles, CA 90001" +286045,USB-C Charging Cable,1,11.95,11/14/19 10:37,"188 Main St, New York City, NY 10001" +286046,Apple Airpods Headphones,1,150,11/08/19 23:26,"369 5th St, Dallas, TX 75001" +286047,Apple Airpods Headphones,1,150,11/18/19 08:01,"813 Chestnut St, Dallas, TX 75001" +286048,27in 4K Gaming Monitor,1,389.99,11/07/19 11:12,"192 Chestnut St, New York City, NY 10001" +286049,Google Phone,1,600,11/01/19 10:59,"633 4th St, New York City, NY 10001" +286050,Apple Airpods Headphones,1,150,11/04/19 15:53,"325 Forest St, Seattle, WA 98101" +286051,AAA Batteries (4-pack),1,2.99,11/26/19 14:24,"593 Church St, San Francisco, CA 94016" +286052,Bose SoundSport Headphones,2,99.99,11/28/19 21:38,"888 Elm St, Atlanta, GA 30301" +286053,Apple Airpods Headphones,1,150,11/01/19 15:25,"949 Sunset St, Dallas, TX 75001" +286054,AA Batteries (4-pack),1,3.84,11/16/19 16:30,"323 13th St, San Francisco, CA 94016" +286055,AA Batteries (4-pack),2,3.84,11/03/19 11:19,"782 Maple St, Dallas, TX 75001" +286056,AAA Batteries (4-pack),1,2.99,11/05/19 10:10,"39 Dogwood St, Atlanta, GA 30301" +286057,AA Batteries (4-pack),1,3.84,11/17/19 13:51,"947 Hickory St, Atlanta, GA 30301" +286058,AA Batteries (4-pack),2,3.84,11/01/19 23:45,"142 Ridge St, Los Angeles, CA 90001" +286059,Bose SoundSport Headphones,1,99.99,11/05/19 12:01,"355 14th St, Dallas, TX 75001" +286060,Lightning Charging Cable,1,14.95,11/04/19 13:50,"298 Cherry St, Boston, MA 02215" +286061,20in Monitor,1,109.99,11/02/19 19:25,"147 Walnut St, Portland, OR 97035" +286062,USB-C Charging Cable,1,11.95,11/23/19 18:42,"747 Madison St, San Francisco, CA 94016" +286063,AAA Batteries (4-pack),1,2.99,11/15/19 08:04,"664 8th St, Los Angeles, CA 90001" +286064,34in Ultrawide Monitor,1,379.99,11/28/19 19:59,"219 Hill St, Dallas, TX 75001" +286065,34in Ultrawide Monitor,1,379.99,11/26/19 00:32,"155 South St, New York City, NY 10001" +286066,USB-C Charging Cable,1,11.95,11/14/19 19:04,"218 Chestnut St, San Francisco, CA 94016" +286067,20in Monitor,1,109.99,11/10/19 10:29,"69 Maple St, Portland, ME 04101" +286068,Lightning Charging Cable,1,14.95,11/28/19 20:10,"71 Willow St, Boston, MA 02215" +286069,Flatscreen TV,1,300,11/02/19 09:59,"821 Walnut St, Portland, OR 97035" +286070,AAA Batteries (4-pack),1,2.99,11/24/19 20:20,"901 Spruce St, San Francisco, CA 94016" +286071,27in FHD Monitor,1,149.99,11/12/19 09:40,"775 Park St, Los Angeles, CA 90001" +286072,20in Monitor,1,109.99,11/29/19 19:52,"182 Walnut St, Dallas, TX 75001" +286073,iPhone,1,700,11/10/19 13:26,"885 Spruce St, San Francisco, CA 94016" +286073,Lightning Charging Cable,1,14.95,11/10/19 13:26,"885 Spruce St, San Francisco, CA 94016" +286074,Lightning Charging Cable,1,14.95,11/11/19 15:14,"501 Church St, Los Angeles, CA 90001" +286075,AA Batteries (4-pack),1,3.84,11/27/19 22:30,"316 Main St, San Francisco, CA 94016" +286076,AA Batteries (4-pack),1,3.84,11/11/19 19:45,"929 4th St, Los Angeles, CA 90001" +286077,Wired Headphones,1,11.99,11/23/19 21:09,"497 14th St, New York City, NY 10001" +286078,AAA Batteries (4-pack),1,2.99,11/10/19 17:03,"549 Johnson St, Portland, OR 97035" +286079,AA Batteries (4-pack),1,3.84,11/14/19 12:29,"424 Lake St, Los Angeles, CA 90001" +286080,Vareebadd Phone,1,400,11/15/19 03:32,"898 Highland St, Los Angeles, CA 90001" +286080,USB-C Charging Cable,1,11.95,11/15/19 03:32,"898 Highland St, Los Angeles, CA 90001" +286081,AA Batteries (4-pack),1,3.84,11/27/19 13:46,"676 Park St, San Francisco, CA 94016" +286082,AAA Batteries (4-pack),1,2.99,11/12/19 08:43,"964 North St, Austin, TX 73301" +286083,Bose SoundSport Headphones,1,99.99,11/19/19 18:25,"623 Lake St, San Francisco, CA 94016" +286084,USB-C Charging Cable,1,11.95,11/17/19 10:59,"966 Sunset St, New York City, NY 10001" +286085,iPhone,1,700,11/17/19 20:05,"485 14th St, New York City, NY 10001" +286086,Bose SoundSport Headphones,1,99.99,11/08/19 09:33,"24 River St, Boston, MA 02215" +286087,AA Batteries (4-pack),3,3.84,11/30/19 21:45,"342 Maple St, San Francisco, CA 94016" +286088,iPhone,1,700,11/09/19 15:17,"182 Church St, San Francisco, CA 94016" +286088,Apple Airpods Headphones,1,150,11/09/19 15:17,"182 Church St, San Francisco, CA 94016" +286089,Macbook Pro Laptop,1,1700,11/09/19 08:28,"962 1st St, Seattle, WA 98101" +286090,27in 4K Gaming Monitor,1,389.99,11/23/19 06:07,"269 Wilson St, Dallas, TX 75001" +286091,AA Batteries (4-pack),1,3.84,11/25/19 22:23,"682 Jefferson St, San Francisco, CA 94016" +286091,Bose SoundSport Headphones,1,99.99,11/25/19 22:23,"682 Jefferson St, San Francisco, CA 94016" +286092,USB-C Charging Cable,1,11.95,11/11/19 06:55,"383 Sunset St, New York City, NY 10001" +286093,Wired Headphones,1,11.99,11/12/19 00:09,"440 9th St, San Francisco, CA 94016" +286094,Apple Airpods Headphones,1,150,11/24/19 13:39,"237 5th St, Seattle, WA 98101" +286095,Apple Airpods Headphones,1,150,11/17/19 23:50,"712 Main St, San Francisco, CA 94016" +286096,AA Batteries (4-pack),2,3.84,11/12/19 17:48,"288 Park St, Boston, MA 02215" +286097,AAA Batteries (4-pack),1,2.99,11/12/19 18:45,"233 9th St, Atlanta, GA 30301" +286098,AAA Batteries (4-pack),1,2.99,11/02/19 11:19,"138 Center St, Boston, MA 02215" +286099,USB-C Charging Cable,1,11.95,11/11/19 21:21,"394 Park St, Portland, OR 97035" +286100,AAA Batteries (4-pack),1,2.99,11/23/19 22:23,"775 West St, Austin, TX 73301" +286101,Flatscreen TV,1,300,11/12/19 21:06,"55 Chestnut St, Austin, TX 73301" +286102,34in Ultrawide Monitor,1,379.99,11/03/19 22:08,"401 Hill St, New York City, NY 10001" +286103,iPhone,1,700,11/15/19 13:13,"217 Adams St, San Francisco, CA 94016" +286103,Lightning Charging Cable,1,14.95,11/15/19 13:13,"217 Adams St, San Francisco, CA 94016" +286103,Apple Airpods Headphones,1,150,11/15/19 13:13,"217 Adams St, San Francisco, CA 94016" +286104,USB-C Charging Cable,1,11.95,11/23/19 11:32,"942 Sunset St, Portland, OR 97035" +286105,AAA Batteries (4-pack),2,2.99,11/15/19 16:40,"531 Washington St, San Francisco, CA 94016" +286106,AA Batteries (4-pack),1,3.84,11/18/19 14:39,"385 Church St, Seattle, WA 98101" +286107,34in Ultrawide Monitor,1,379.99,11/14/19 13:52,"480 Chestnut St, San Francisco, CA 94016" +286108,AAA Batteries (4-pack),2,2.99,11/19/19 10:50,"823 6th St, Portland, OR 97035" +286109,AA Batteries (4-pack),1,3.84,11/20/19 17:21,"152 Cedar St, San Francisco, CA 94016" +286110,AAA Batteries (4-pack),2,2.99,11/06/19 19:20,"334 Maple St, Atlanta, GA 30301" +286111,AAA Batteries (4-pack),1,2.99,11/23/19 12:08,"987 8th St, Austin, TX 73301" +286112,Google Phone,1,600,11/11/19 17:12,"276 Dogwood St, Los Angeles, CA 90001" +286113,Apple Airpods Headphones,1,150,11/25/19 09:46,"33 Adams St, Portland, OR 97035" +286114,27in 4K Gaming Monitor,1,389.99,11/30/19 17:52,"524 4th St, Seattle, WA 98101" +286115,34in Ultrawide Monitor,1,379.99,11/14/19 01:07,"959 5th St, Los Angeles, CA 90001" +286116,34in Ultrawide Monitor,1,379.99,11/19/19 21:52,"119 River St, San Francisco, CA 94016" +286117,AAA Batteries (4-pack),1,2.99,11/10/19 11:10,"596 9th St, Boston, MA 02215" +286118,Wired Headphones,1,11.99,11/07/19 12:51,"600 9th St, Portland, OR 97035" +286119,Wired Headphones,1,11.99,11/27/19 09:11,"249 9th St, Atlanta, GA 30301" +286120,Wired Headphones,1,11.99,11/09/19 09:59,"453 Spruce St, New York City, NY 10001" +286121,Wired Headphones,2,11.99,11/06/19 22:49,"600 Chestnut St, New York City, NY 10001" +286122,USB-C Charging Cable,1,11.95,11/25/19 07:31,"87 Center St, San Francisco, CA 94016" +286123,AA Batteries (4-pack),1,3.84,11/13/19 08:05,"265 2nd St, Dallas, TX 75001" +286124,USB-C Charging Cable,1,11.95,11/14/19 19:31,"354 Highland St, San Francisco, CA 94016" +286125,Lightning Charging Cable,1,14.95,11/10/19 07:36,"513 Hickory St, New York City, NY 10001" +286126,Lightning Charging Cable,1,14.95,11/28/19 13:05,"769 Pine St, Portland, ME 04101" +286127,Lightning Charging Cable,1,14.95,11/07/19 16:09,"150 River St, Los Angeles, CA 90001" +286128,USB-C Charging Cable,1,11.95,11/16/19 15:08,"939 Cedar St, Los Angeles, CA 90001" +286129,Macbook Pro Laptop,1,1700,11/28/19 18:41,"446 13th St, Seattle, WA 98101" +286129,AAA Batteries (4-pack),1,2.99,11/28/19 18:41,"446 13th St, Seattle, WA 98101" +286130,AAA Batteries (4-pack),1,2.99,11/08/19 12:38,"68 Ridge St, Los Angeles, CA 90001" +286131,Google Phone,1,600,11/08/19 13:21,"884 Sunset St, San Francisco, CA 94016" +286132,AAA Batteries (4-pack),4,2.99,11/11/19 13:08,"21 Wilson St, Dallas, TX 75001" +286133,Wired Headphones,1,11.99,11/29/19 12:27,"977 Park St, New York City, NY 10001" +286134,Flatscreen TV,1,300,11/22/19 08:02,"984 Willow St, San Francisco, CA 94016" +286135,Apple Airpods Headphones,1,150,11/15/19 16:21,"789 Wilson St, Los Angeles, CA 90001" +286136,34in Ultrawide Monitor,1,379.99,11/25/19 00:53,"653 Jackson St, San Francisco, CA 94016" +286137,Lightning Charging Cable,1,14.95,11/11/19 09:31,"263 10th St, Los Angeles, CA 90001" +286138,34in Ultrawide Monitor,1,379.99,11/07/19 22:02,"349 14th St, Boston, MA 02215" +286139,Bose SoundSport Headphones,1,99.99,11/30/19 11:27,"634 Wilson St, Los Angeles, CA 90001" +286140,Flatscreen TV,1,300,11/02/19 12:21,"927 Maple St, Seattle, WA 98101" +286141,Lightning Charging Cable,1,14.95,11/23/19 14:02,"736 Chestnut St, San Francisco, CA 94016" +286142,USB-C Charging Cable,1,11.95,11/28/19 14:33,"837 Ridge St, San Francisco, CA 94016" +286143,Lightning Charging Cable,1,14.95,11/07/19 14:31,"532 Maple St, Portland, ME 04101" +,,,,, +286144,AA Batteries (4-pack),2,3.84,11/03/19 09:12,"832 Lincoln St, Dallas, TX 75001" +286145,AA Batteries (4-pack),2,3.84,11/29/19 08:06,"541 4th St, San Francisco, CA 94016" +286146,AAA Batteries (4-pack),3,2.99,11/08/19 16:49,"419 Church St, Los Angeles, CA 90001" +286147,Bose SoundSport Headphones,1,99.99,11/17/19 18:53,"208 Lakeview St, Los Angeles, CA 90001" +286148,Wired Headphones,1,11.99,11/13/19 09:26,"925 13th St, San Francisco, CA 94016" +286149,AA Batteries (4-pack),1,3.84,11/16/19 13:31,"315 Adams St, Dallas, TX 75001" +286150,34in Ultrawide Monitor,1,379.99,11/28/19 10:20,"807 2nd St, San Francisco, CA 94016" +286151,AAA Batteries (4-pack),1,2.99,11/03/19 13:25,"577 Dogwood St, San Francisco, CA 94016" +286152,USB-C Charging Cable,1,11.95,11/18/19 15:12,"485 10th St, Los Angeles, CA 90001" +286153,27in FHD Monitor,1,149.99,11/27/19 16:41,"127 Adams St, New York City, NY 10001" +286154,AA Batteries (4-pack),2,3.84,11/06/19 11:59,"998 Elm St, New York City, NY 10001" +286155,AAA Batteries (4-pack),1,2.99,11/17/19 09:10,"490 Hill St, San Francisco, CA 94016" +286156,AAA Batteries (4-pack),1,2.99,11/28/19 18:52,"365 Cherry St, New York City, NY 10001" +286157,Apple Airpods Headphones,1,150,11/26/19 18:40,"105 13th St, Los Angeles, CA 90001" +286158,Flatscreen TV,1,300,11/07/19 22:34,"895 Pine St, Los Angeles, CA 90001" +286159,USB-C Charging Cable,1,11.95,11/11/19 22:55,"562 Elm St, Atlanta, GA 30301" +286160,Apple Airpods Headphones,1,150,11/27/19 22:38,"460 8th St, Seattle, WA 98101" +286161,27in FHD Monitor,1,149.99,11/28/19 14:04,"394 Washington St, Atlanta, GA 30301" +286162,Apple Airpods Headphones,1,150,11/22/19 19:37,"740 Jackson St, San Francisco, CA 94016" +286163,AAA Batteries (4-pack),1,2.99,11/28/19 11:57,"901 Lake St, Seattle, WA 98101" +286164,USB-C Charging Cable,1,11.95,11/12/19 17:22,"325 Park St, Los Angeles, CA 90001" +286165,AAA Batteries (4-pack),2,2.99,11/01/19 13:19,"655 Cherry St, Dallas, TX 75001" +286166,Flatscreen TV,1,300,11/29/19 14:57,"903 6th St, New York City, NY 10001" +286167,Wired Headphones,1,11.99,11/12/19 12:31,"20 Church St, New York City, NY 10001" +286168,Lightning Charging Cable,1,14.95,11/25/19 10:52,"802 Elm St, San Francisco, CA 94016" +286169,Lightning Charging Cable,1,14.95,11/06/19 21:42,"533 Wilson St, San Francisco, CA 94016" +286170,USB-C Charging Cable,1,11.95,11/13/19 12:38,"423 Ridge St, New York City, NY 10001" +286171,USB-C Charging Cable,1,11.95,11/08/19 19:20,"535 Jackson St, New York City, NY 10001" +286172,AA Batteries (4-pack),1,3.84,11/27/19 10:55,"167 14th St, New York City, NY 10001" +286173,Wired Headphones,1,11.99,11/24/19 17:05,"756 Lakeview St, San Francisco, CA 94016" +286174,Google Phone,1,600,11/18/19 12:07,"886 River St, Atlanta, GA 30301" +286174,Bose SoundSport Headphones,1,99.99,11/18/19 12:07,"886 River St, Atlanta, GA 30301" +286174,Wired Headphones,1,11.99,11/18/19 12:07,"886 River St, Atlanta, GA 30301" +286175,AA Batteries (4-pack),4,3.84,11/26/19 20:26,"389 Johnson St, Seattle, WA 98101" +286176,Lightning Charging Cable,1,14.95,11/11/19 19:56,"911 Sunset St, Boston, MA 02215" +286177,AA Batteries (4-pack),1,3.84,11/06/19 06:25,"10 Main St, San Francisco, CA 94016" +286178,Wired Headphones,2,11.99,11/12/19 21:43,"844 Forest St, Dallas, TX 75001" +286179,AAA Batteries (4-pack),1,2.99,11/17/19 18:46,"169 6th St, Boston, MA 02215" +286180,Vareebadd Phone,1,400,11/12/19 22:51,"676 Lake St, Seattle, WA 98101" +286181,Google Phone,1,600,11/17/19 11:53,"949 8th St, San Francisco, CA 94016" +286182,Lightning Charging Cable,1,14.95,11/19/19 09:22,"291 Jackson St, Atlanta, GA 30301" +286183,Apple Airpods Headphones,1,150,11/18/19 19:53,"829 Johnson St, Atlanta, GA 30301" +286184,Apple Airpods Headphones,1,150,11/09/19 16:08,"279 14th St, San Francisco, CA 94016" +286185,Wired Headphones,1,11.99,11/05/19 17:54,"278 11th St, Atlanta, GA 30301" +286186,34in Ultrawide Monitor,1,379.99,11/11/19 09:53,"968 2nd St, Boston, MA 02215" +286187,Lightning Charging Cable,1,14.95,11/24/19 10:03,"197 Main St, San Francisco, CA 94016" +286188,AA Batteries (4-pack),1,3.84,11/12/19 18:29,"184 4th St, Los Angeles, CA 90001" +286189,AA Batteries (4-pack),1,3.84,11/23/19 18:25,"971 8th St, San Francisco, CA 94016" +286190,27in FHD Monitor,1,149.99,11/19/19 13:39,"132 Church St, Atlanta, GA 30301" +286191,34in Ultrawide Monitor,1,379.99,11/07/19 22:29,"477 Sunset St, San Francisco, CA 94016" +286192,27in 4K Gaming Monitor,1,389.99,11/14/19 10:14,"150 Lakeview St, New York City, NY 10001" +286193,Lightning Charging Cable,1,14.95,11/08/19 13:03,"294 South St, New York City, NY 10001" +286194,Lightning Charging Cable,1,14.95,11/01/19 09:19,"470 Jefferson St, Dallas, TX 75001" +286195,Lightning Charging Cable,1,14.95,11/05/19 13:37,"702 10th St, Dallas, TX 75001" +286196,AA Batteries (4-pack),1,3.84,11/24/19 20:14,"634 Madison St, New York City, NY 10001" +286197,Lightning Charging Cable,1,14.95,11/19/19 19:32,"443 Hickory St, San Francisco, CA 94016" +286198,AAA Batteries (4-pack),1,2.99,11/01/19 17:06,"945 14th St, San Francisco, CA 94016" +286199,Lightning Charging Cable,1,14.95,11/07/19 20:29,"325 14th St, Los Angeles, CA 90001" +286200,AA Batteries (4-pack),4,3.84,11/01/19 22:21,"586 7th St, San Francisco, CA 94016" +286201,Wired Headphones,1,11.99,11/03/19 16:08,"949 Sunset St, San Francisco, CA 94016" +286202,Apple Airpods Headphones,1,150,11/24/19 16:30,"688 Lakeview St, New York City, NY 10001" +286203,Lightning Charging Cable,1,14.95,11/07/19 16:17,"274 5th St, New York City, NY 10001" +286204,Macbook Pro Laptop,1,1700,11/28/19 10:07,"368 Main St, Boston, MA 02215" +286205,Lightning Charging Cable,1,14.95,11/26/19 07:44,"870 Madison St, Dallas, TX 75001" +286206,27in FHD Monitor,1,149.99,11/26/19 15:45,"14 Cherry St, Los Angeles, CA 90001" +286207,Bose SoundSport Headphones,1,99.99,11/07/19 21:13,"706 Madison St, Los Angeles, CA 90001" +286208,27in FHD Monitor,1,149.99,11/09/19 17:27,"736 Hill St, Atlanta, GA 30301" +286209,AAA Batteries (4-pack),4,2.99,11/04/19 15:37,"361 Park St, Boston, MA 02215" +286210,Vareebadd Phone,1,400,11/11/19 11:50,"321 4th St, Atlanta, GA 30301" +286211,Google Phone,1,600,11/26/19 18:26,"151 Park St, Austin, TX 73301" +286212,Bose SoundSport Headphones,1,99.99,11/20/19 17:04,"232 Lakeview St, New York City, NY 10001" +286213,AA Batteries (4-pack),1,3.84,11/12/19 19:08,"758 Walnut St, San Francisco, CA 94016" +286214,AA Batteries (4-pack),2,3.84,11/09/19 08:50,"636 Meadow St, Boston, MA 02215" +286215,Lightning Charging Cable,1,14.95,11/23/19 23:03,"187 Meadow St, San Francisco, CA 94016" +286216,USB-C Charging Cable,1,11.95,11/05/19 19:58,"830 Lakeview St, San Francisco, CA 94016" +286217,Macbook Pro Laptop,1,1700,11/29/19 15:06,"468 Main St, Portland, OR 97035" +286218,Apple Airpods Headphones,1,150,11/05/19 17:14,"325 14th St, Seattle, WA 98101" +286219,Bose SoundSport Headphones,1,99.99,11/17/19 13:58,"507 Johnson St, Atlanta, GA 30301" +286220,AAA Batteries (4-pack),1,2.99,11/07/19 09:04,"731 Madison St, San Francisco, CA 94016" +286221,AAA Batteries (4-pack),1,2.99,11/26/19 10:51,"304 Johnson St, San Francisco, CA 94016" +286222,Lightning Charging Cable,1,14.95,11/28/19 12:52,"960 Jefferson St, Los Angeles, CA 90001" +286223,AAA Batteries (4-pack),1,2.99,11/26/19 21:05,"34 Center St, Portland, OR 97035" +286224,Wired Headphones,1,11.99,11/24/19 13:11,"109 Walnut St, Portland, OR 97035" +286225,AA Batteries (4-pack),3,3.84,11/23/19 11:44,"950 4th St, Seattle, WA 98101" +286226,Lightning Charging Cable,1,14.95,11/29/19 00:22,"312 Pine St, New York City, NY 10001" +286227,AA Batteries (4-pack),1,3.84,11/13/19 20:33,"180 Walnut St, Austin, TX 73301" +286228,ThinkPad Laptop,1,999.99,11/02/19 08:45,"125 9th St, Boston, MA 02215" +286229,ThinkPad Laptop,1,999.99,11/07/19 12:35,"675 Washington St, San Francisco, CA 94016" +286230,Apple Airpods Headphones,1,150,11/30/19 13:41,"51 North St, Portland, OR 97035" +286231,AA Batteries (4-pack),3,3.84,11/21/19 18:48,"282 10th St, Los Angeles, CA 90001" +286232,USB-C Charging Cable,1,11.95,11/30/19 22:36,"81 Ridge St, New York City, NY 10001" +286232,iPhone,1,700,11/30/19 22:36,"81 Ridge St, New York City, NY 10001" +286233,27in 4K Gaming Monitor,1,389.99,11/21/19 17:14,"859 Lake St, New York City, NY 10001" +286234,USB-C Charging Cable,1,11.95,11/14/19 21:01,"705 Willow St, Atlanta, GA 30301" +286235,Bose SoundSport Headphones,1,99.99,11/24/19 00:10,"918 4th St, San Francisco, CA 94016" +286236,Apple Airpods Headphones,1,150,11/05/19 13:48,"422 Lincoln St, Austin, TX 73301" +286237,Macbook Pro Laptop,1,1700,11/12/19 11:13,"893 Jackson St, Los Angeles, CA 90001" +286238,Google Phone,1,600,11/19/19 19:24,"856 Washington St, Dallas, TX 75001" +286238,USB-C Charging Cable,1,11.95,11/19/19 19:24,"856 Washington St, Dallas, TX 75001" +286239,27in FHD Monitor,1,149.99,11/16/19 00:51,"866 Elm St, San Francisco, CA 94016" +286240,Bose SoundSport Headphones,1,99.99,11/29/19 10:02,"249 Cherry St, San Francisco, CA 94016" +286241,Flatscreen TV,1,300,11/23/19 13:39,"740 Elm St, Los Angeles, CA 90001" +286242,Lightning Charging Cable,1,14.95,11/04/19 14:01,"930 Cherry St, Austin, TX 73301" +286243,Wired Headphones,1,11.99,11/28/19 18:08,"709 8th St, Boston, MA 02215" +286244,Lightning Charging Cable,1,14.95,11/07/19 15:37,"622 Lake St, Los Angeles, CA 90001" +286245,AAA Batteries (4-pack),1,2.99,11/14/19 09:43,"715 1st St, Atlanta, GA 30301" +286246,Bose SoundSport Headphones,1,99.99,11/30/19 16:43,"578 12th St, Los Angeles, CA 90001" +286247,Lightning Charging Cable,1,14.95,11/04/19 07:58,"844 Washington St, New York City, NY 10001" +286248,AA Batteries (4-pack),2,3.84,11/11/19 21:36,"376 8th St, Atlanta, GA 30301" +286249,Lightning Charging Cable,1,14.95,11/20/19 17:37,"623 Highland St, Los Angeles, CA 90001" +286250,USB-C Charging Cable,2,11.95,11/03/19 18:19,"596 Meadow St, San Francisco, CA 94016" +286251,Apple Airpods Headphones,1,150,11/05/19 15:17,"58 4th St, Los Angeles, CA 90001" +286252,27in 4K Gaming Monitor,1,389.99,11/12/19 12:57,"579 Ridge St, Atlanta, GA 30301" +286253,Apple Airpods Headphones,1,150,11/18/19 14:39,"445 12th St, New York City, NY 10001" +286254,34in Ultrawide Monitor,1,379.99,11/07/19 10:52,"887 Johnson St, Los Angeles, CA 90001" +286255,20in Monitor,1,109.99,11/09/19 13:17,"489 13th St, Austin, TX 73301" +286256,USB-C Charging Cable,1,11.95,11/02/19 17:52,"565 Pine St, San Francisco, CA 94016" +286257,Apple Airpods Headphones,1,150,11/12/19 18:30,"775 1st St, Dallas, TX 75001" +286258,Wired Headphones,1,11.99,11/24/19 01:26,"353 Washington St, San Francisco, CA 94016" +286259,Wired Headphones,1,11.99,11/20/19 15:11,"491 Highland St, Portland, OR 97035" +286260,AA Batteries (4-pack),3,3.84,11/23/19 16:30,"659 2nd St, San Francisco, CA 94016" +286261,ThinkPad Laptop,1,999.99,11/07/19 16:14,"891 2nd St, Boston, MA 02215" +286262,Lightning Charging Cable,1,14.95,11/21/19 20:32,"918 2nd St, New York City, NY 10001" +286263,27in FHD Monitor,1,149.99,11/26/19 16:37,"161 12th St, Boston, MA 02215" +286264,Wired Headphones,1,11.99,11/28/19 11:36,"578 Willow St, Atlanta, GA 30301" +286265,Google Phone,1,600,11/03/19 21:03,"647 Lakeview St, Boston, MA 02215" +286266,AA Batteries (4-pack),1,3.84,11/03/19 15:12,"948 Park St, Dallas, TX 75001" +286267,Bose SoundSport Headphones,1,99.99,11/23/19 16:38,"475 1st St, Dallas, TX 75001" +286268,iPhone,1,700,11/24/19 10:36,"28 Pine St, Portland, ME 04101" +286269,Lightning Charging Cable,1,14.95,11/05/19 10:18,"929 Dogwood St, New York City, NY 10001" +286270,iPhone,1,700,11/22/19 17:06,"415 Washington St, Boston, MA 02215" +286271,27in FHD Monitor,1,149.99,11/03/19 00:41,"880 Cedar St, Los Angeles, CA 90001" +286272,Lightning Charging Cable,1,14.95,11/05/19 11:29,"806 13th St, San Francisco, CA 94016" +286273,AAA Batteries (4-pack),1,2.99,11/01/19 22:27,"745 10th St, Los Angeles, CA 90001" +286274,Apple Airpods Headphones,1,150,11/18/19 20:12,"938 Johnson St, Los Angeles, CA 90001" +286275,Bose SoundSport Headphones,1,99.99,11/19/19 22:07,"258 5th St, San Francisco, CA 94016" +286276,USB-C Charging Cable,1,11.95,11/23/19 17:41,"416 4th St, Portland, OR 97035" +286277,27in 4K Gaming Monitor,1,389.99,11/01/19 18:14,"296 Chestnut St, Atlanta, GA 30301" +286278,USB-C Charging Cable,1,11.95,11/17/19 23:00,"615 Meadow St, Atlanta, GA 30301" +286279,27in 4K Gaming Monitor,1,389.99,11/24/19 12:59,"515 Meadow St, Austin, TX 73301" +286280,Lightning Charging Cable,1,14.95,11/04/19 13:42,"841 Lincoln St, Austin, TX 73301" +286281,iPhone,1,700,11/29/19 07:53,"884 South St, Los Angeles, CA 90001" +286282,AAA Batteries (4-pack),1,2.99,11/02/19 21:16,"726 Chestnut St, Seattle, WA 98101" +286283,USB-C Charging Cable,3,11.95,11/30/19 19:04,"329 8th St, Atlanta, GA 30301" +286284,AA Batteries (4-pack),1,3.84,11/18/19 12:28,"960 Hickory St, Portland, ME 04101" +286285,27in 4K Gaming Monitor,1,389.99,11/28/19 19:39,"143 Hill St, Dallas, TX 75001" +286286,AAA Batteries (4-pack),1,2.99,11/02/19 16:50,"896 6th St, San Francisco, CA 94016" +286287,AAA Batteries (4-pack),1,2.99,11/05/19 11:59,"136 10th St, Dallas, TX 75001" +286288,Wired Headphones,1,11.99,11/14/19 11:18,"16 Maple St, Seattle, WA 98101" +286289,Macbook Pro Laptop,1,1700,11/05/19 12:55,"246 Hickory St, Los Angeles, CA 90001" +286290,AA Batteries (4-pack),1,3.84,11/03/19 17:07,"394 Jefferson St, Boston, MA 02215" +286291,20in Monitor,1,109.99,11/11/19 08:38,"381 Center St, San Francisco, CA 94016" +286292,USB-C Charging Cable,1,11.95,11/06/19 12:14,"5 4th St, Los Angeles, CA 90001" +286293,Flatscreen TV,1,300,11/07/19 10:37,"144 Forest St, Boston, MA 02215" +286294,AA Batteries (4-pack),1,3.84,11/18/19 19:39,"733 Walnut St, San Francisco, CA 94016" +286295,Lightning Charging Cable,1,14.95,11/22/19 23:28,"830 North St, Seattle, WA 98101" +286296,AAA Batteries (4-pack),1,2.99,11/06/19 19:20,"519 6th St, Boston, MA 02215" +286297,Apple Airpods Headphones,1,150,11/07/19 08:44,"846 Church St, Austin, TX 73301" +286298,AAA Batteries (4-pack),1,2.99,11/12/19 16:13,"112 Willow St, San Francisco, CA 94016" +286299,Lightning Charging Cable,1,14.95,11/04/19 22:05,"417 Cherry St, Atlanta, GA 30301" +286300,Bose SoundSport Headphones,1,99.99,11/23/19 16:34,"619 Dogwood St, Seattle, WA 98101" +286301,AAA Batteries (4-pack),5,2.99,11/09/19 09:48,"909 Spruce St, Atlanta, GA 30301" +286302,Apple Airpods Headphones,1,150,11/16/19 21:05,"909 Willow St, New York City, NY 10001" +286303,Apple Airpods Headphones,1,150,11/12/19 08:58,"375 River St, Atlanta, GA 30301" +286304,AAA Batteries (4-pack),2,2.99,11/20/19 15:35,"26 9th St, San Francisco, CA 94016" +286305,34in Ultrawide Monitor,1,379.99,11/28/19 20:28,"294 1st St, Portland, ME 04101" +286306,Lightning Charging Cable,1,14.95,11/29/19 11:37,"731 South St, San Francisco, CA 94016" +286307,USB-C Charging Cable,2,11.95,11/08/19 16:33,"638 South St, New York City, NY 10001" +286308,Apple Airpods Headphones,1,150,11/04/19 21:52,"104 Elm St, San Francisco, CA 94016" +286309,AA Batteries (4-pack),1,3.84,11/16/19 13:17,"529 Park St, Boston, MA 02215" +286310,Wired Headphones,2,11.99,11/20/19 19:45,"530 Washington St, Atlanta, GA 30301" +286311,USB-C Charging Cable,1,11.95,11/17/19 13:34,"577 Pine St, Seattle, WA 98101" +286312,Macbook Pro Laptop,1,1700,11/20/19 17:28,"363 Adams St, Los Angeles, CA 90001" +286313,Vareebadd Phone,1,400,11/28/19 11:50,"166 Wilson St, Austin, TX 73301" +286314,Lightning Charging Cable,1,14.95,11/30/19 15:49,"366 South St, Los Angeles, CA 90001" +286315,Lightning Charging Cable,1,14.95,11/08/19 11:04,"132 Lincoln St, New York City, NY 10001" +286316,AA Batteries (4-pack),1,3.84,11/07/19 10:21,"447 River St, Dallas, TX 75001" +286317,Bose SoundSport Headphones,1,99.99,11/14/19 19:57,"220 Forest St, Los Angeles, CA 90001" +286318,USB-C Charging Cable,1,11.95,11/20/19 10:54,"530 12th St, New York City, NY 10001" +286319,27in FHD Monitor,1,149.99,11/18/19 11:08,"444 North St, Portland, ME 04101" +286320,Flatscreen TV,1,300,11/20/19 11:24,"486 14th St, Los Angeles, CA 90001" +286321,20in Monitor,1,109.99,11/21/19 14:34,"73 2nd St, Los Angeles, CA 90001" +286322,Wired Headphones,1,11.99,11/03/19 11:46,"227 2nd St, New York City, NY 10001" +286323,Vareebadd Phone,1,400,11/14/19 00:06,"298 Washington St, Dallas, TX 75001" +286324,Wired Headphones,1,11.99,11/17/19 22:21,"490 Center St, Boston, MA 02215" +286325,AA Batteries (4-pack),1,3.84,11/11/19 13:17,"226 Hickory St, Austin, TX 73301" +286326,AAA Batteries (4-pack),1,2.99,11/16/19 17:23,"571 6th St, Austin, TX 73301" +286327,Bose SoundSport Headphones,1,99.99,11/14/19 18:18,"149 5th St, Boston, MA 02215" +286328,USB-C Charging Cable,1,11.95,11/18/19 04:48,"290 Chestnut St, Portland, OR 97035" +286329,Wired Headphones,1,11.99,11/19/19 13:36,"461 Dogwood St, Seattle, WA 98101" +286330,AAA Batteries (4-pack),1,2.99,11/30/19 16:37,"659 9th St, New York City, NY 10001" +286331,Bose SoundSport Headphones,1,99.99,11/03/19 11:00,"668 14th St, Los Angeles, CA 90001" +286332,Wired Headphones,1,11.99,11/13/19 11:14,"922 Walnut St, Los Angeles, CA 90001" +286333,USB-C Charging Cable,1,11.95,11/22/19 14:01,"226 14th St, Los Angeles, CA 90001" +286334,Wired Headphones,1,11.99,11/08/19 08:41,"183 Meadow St, San Francisco, CA 94016" +286335,Lightning Charging Cable,1,14.95,11/13/19 10:00,"256 Cherry St, Seattle, WA 98101" +286336,iPhone,1,700,11/26/19 23:26,"894 Spruce St, Seattle, WA 98101" +286337,27in FHD Monitor,1,149.99,11/06/19 10:05,"48 Chestnut St, Los Angeles, CA 90001" +286338,Flatscreen TV,1,300,11/10/19 13:05,"857 Adams St, Seattle, WA 98101" +286339,AA Batteries (4-pack),1,3.84,11/13/19 15:11,"524 Lincoln St, San Francisco, CA 94016" +286340,Apple Airpods Headphones,1,150,11/18/19 15:57,"430 Willow St, San Francisco, CA 94016" +286341,ThinkPad Laptop,1,999.99,11/14/19 11:33,"879 North St, Dallas, TX 75001" +286342,27in FHD Monitor,1,149.99,11/15/19 12:03,"831 Hickory St, San Francisco, CA 94016" +286343,Lightning Charging Cable,1,14.95,11/28/19 22:15,"13 Willow St, Dallas, TX 75001" +286344,27in 4K Gaming Monitor,1,389.99,11/01/19 08:21,"625 Sunset St, New York City, NY 10001" +286345,Wired Headphones,1,11.99,11/04/19 17:17,"644 Park St, Boston, MA 02215" +286346,Flatscreen TV,1,300,11/05/19 19:49,"91 River St, San Francisco, CA 94016" +286347,AA Batteries (4-pack),1,3.84,11/24/19 19:46,"770 4th St, Portland, OR 97035" +286348,USB-C Charging Cable,1,11.95,11/24/19 21:07,"136 Jackson St, San Francisco, CA 94016" +286349,Lightning Charging Cable,1,14.95,11/28/19 10:48,"97 14th St, Boston, MA 02215" +286350,Wired Headphones,1,11.99,11/24/19 09:27,"158 Willow St, Atlanta, GA 30301" +286351,USB-C Charging Cable,1,11.95,11/21/19 22:34,"867 Main St, Los Angeles, CA 90001" +286352,Apple Airpods Headphones,1,150,11/10/19 09:43,"242 Elm St, Portland, OR 97035" +286353,Apple Airpods Headphones,1,150,11/25/19 13:54,"67 Pine St, Dallas, TX 75001" +286354,Lightning Charging Cable,1,14.95,11/01/19 20:49,"376 Main St, Austin, TX 73301" +286355,Apple Airpods Headphones,1,150,11/09/19 13:00,"773 9th St, San Francisco, CA 94016" +286356,Apple Airpods Headphones,1,150,11/15/19 23:20,"656 9th St, Dallas, TX 75001" +286357,Bose SoundSport Headphones,1,99.99,11/16/19 22:39,"73 Hickory St, Seattle, WA 98101" +286358,AA Batteries (4-pack),2,3.84,11/25/19 06:07,"108 Johnson St, Dallas, TX 75001" +286359,AA Batteries (4-pack),1,3.84,11/19/19 17:28,"506 Highland St, Dallas, TX 75001" +286360,Macbook Pro Laptop,1,1700,11/27/19 11:38,"771 Jackson St, San Francisco, CA 94016" +286361,AA Batteries (4-pack),2,3.84,11/17/19 20:52,"979 Dogwood St, Los Angeles, CA 90001" +286362,Flatscreen TV,1,300,11/16/19 11:15,"690 7th St, San Francisco, CA 94016" +286363,USB-C Charging Cable,1,11.95,11/03/19 15:41,"495 Forest St, Dallas, TX 75001" +286364,LG Dryer,1,600.0,11/12/19 17:51,"468 Main St, San Francisco, CA 94016" +286365,AA Batteries (4-pack),1,3.84,11/02/19 01:36,"194 8th St, New York City, NY 10001" +286366,Bose SoundSport Headphones,1,99.99,11/25/19 17:36,"925 4th St, San Francisco, CA 94016" +286367,Apple Airpods Headphones,1,150,11/10/19 20:37,"326 Dogwood St, Seattle, WA 98101" +286368,34in Ultrawide Monitor,1,379.99,11/16/19 10:44,"97 Hickory St, Seattle, WA 98101" +286369,AA Batteries (4-pack),1,3.84,11/25/19 17:58,"332 Center St, San Francisco, CA 94016" +286370,ThinkPad Laptop,1,999.99,11/20/19 12:15,"698 11th St, New York City, NY 10001" +286371,USB-C Charging Cable,1,11.95,11/30/19 10:57,"403 North St, Los Angeles, CA 90001" +286372,USB-C Charging Cable,1,11.95,11/19/19 22:58,"405 Lincoln St, Austin, TX 73301" +286373,Apple Airpods Headphones,1,150,11/08/19 11:07,"565 Forest St, Los Angeles, CA 90001" +286374,Wired Headphones,2,11.99,11/17/19 12:56,"119 Lakeview St, Dallas, TX 75001" +286375,AA Batteries (4-pack),1,3.84,11/05/19 20:17,"211 Hill St, New York City, NY 10001" +286376,AAA Batteries (4-pack),1,2.99,11/27/19 07:50,"747 5th St, Portland, OR 97035" +286377,Google Phone,1,600,11/26/19 16:32,"777 7th St, Portland, OR 97035" +286378,Lightning Charging Cable,1,14.95,11/27/19 06:26,"242 Adams St, San Francisco, CA 94016" +286379,AA Batteries (4-pack),1,3.84,11/04/19 07:18,"49 Ridge St, Los Angeles, CA 90001" +286380,27in FHD Monitor,1,149.99,11/24/19 12:12,"689 West St, Boston, MA 02215" +286381,AAA Batteries (4-pack),1,2.99,11/04/19 13:27,"320 Adams St, San Francisco, CA 94016" +286382,iPhone,1,700,11/14/19 11:37,"25 Forest St, Seattle, WA 98101" +286383,AAA Batteries (4-pack),1,2.99,11/15/19 13:53,"331 Washington St, Atlanta, GA 30301" +286384,Lightning Charging Cable,1,14.95,11/04/19 14:03,"757 14th St, Boston, MA 02215" +286385,Wired Headphones,1,11.99,11/14/19 19:46,"996 Maple St, Portland, ME 04101" +286386,AA Batteries (4-pack),1,3.84,11/16/19 13:12,"449 Washington St, Los Angeles, CA 90001" +286387,27in 4K Gaming Monitor,1,389.99,11/04/19 17:06,"781 Spruce St, Los Angeles, CA 90001" +286388,USB-C Charging Cable,1,11.95,11/13/19 18:28,"103 Johnson St, Seattle, WA 98101" +286389,AAA Batteries (4-pack),1,2.99,11/27/19 09:24,"250 Lakeview St, San Francisco, CA 94016" +286390,USB-C Charging Cable,1,11.95,11/09/19 09:10,"696 Lakeview St, Boston, MA 02215" +286391,AA Batteries (4-pack),1,3.84,11/20/19 18:58,"219 West St, New York City, NY 10001" +286392,27in 4K Gaming Monitor,1,389.99,11/17/19 07:57,"4 14th St, Portland, OR 97035" +286393,iPhone,1,700,11/03/19 15:05,"158 Willow St, New York City, NY 10001" +286394,USB-C Charging Cable,2,11.95,11/15/19 10:40,"752 4th St, Los Angeles, CA 90001" +286394,27in FHD Monitor,1,149.99,11/15/19 10:40,"752 4th St, Los Angeles, CA 90001" +286395,34in Ultrawide Monitor,1,379.99,11/27/19 20:08,"53 Center St, Los Angeles, CA 90001" +286396,27in FHD Monitor,1,149.99,11/23/19 19:07,"473 Center St, San Francisco, CA 94016" +286397,27in 4K Gaming Monitor,1,389.99,11/14/19 21:21,"838 Ridge St, Boston, MA 02215" +286398,AAA Batteries (4-pack),1,2.99,11/08/19 13:06,"942 North St, Los Angeles, CA 90001" +286399,34in Ultrawide Monitor,1,379.99,11/13/19 11:37,"400 8th St, Los Angeles, CA 90001" +286399,Bose SoundSport Headphones,1,99.99,11/13/19 11:37,"400 8th St, Los Angeles, CA 90001" +286400,Wired Headphones,1,11.99,11/18/19 13:13,"354 9th St, Dallas, TX 75001" +286400,Flatscreen TV,1,300,11/18/19 13:13,"354 9th St, Dallas, TX 75001" +286401,Apple Airpods Headphones,1,150,11/14/19 15:10,"81 Walnut St, Atlanta, GA 30301" +286402,Wired Headphones,1,11.99,11/10/19 21:31,"332 River St, San Francisco, CA 94016" +286403,USB-C Charging Cable,1,11.95,11/25/19 20:15,"138 13th St, San Francisco, CA 94016" +286404,AAA Batteries (4-pack),1,2.99,11/03/19 16:20,"717 River St, New York City, NY 10001" +286405,AA Batteries (4-pack),1,3.84,11/28/19 17:18,"843 River St, Austin, TX 73301" +286406,AA Batteries (4-pack),2,3.84,11/30/19 22:23,"671 Cherry St, Atlanta, GA 30301" +286407,AAA Batteries (4-pack),1,2.99,11/14/19 14:42,"256 4th St, San Francisco, CA 94016" +286408,Apple Airpods Headphones,1,150,11/21/19 08:34,"659 Main St, Los Angeles, CA 90001" +286409,ThinkPad Laptop,1,999.99,11/18/19 21:20,"853 Center St, Boston, MA 02215" +286410,AA Batteries (4-pack),1,3.84,11/25/19 11:41,"597 Lake St, San Francisco, CA 94016" +286411,Wired Headphones,1,11.99,11/04/19 16:10,"493 Lakeview St, New York City, NY 10001" +286412,AA Batteries (4-pack),2,3.84,11/17/19 20:57,"343 South St, Seattle, WA 98101" +286413,AAA Batteries (4-pack),1,2.99,11/16/19 12:41,"545 Pine St, San Francisco, CA 94016" +286414,Macbook Pro Laptop,1,1700,11/01/19 12:01,"176 Adams St, San Francisco, CA 94016" +286415,27in 4K Gaming Monitor,1,389.99,11/13/19 09:59,"134 Ridge St, Seattle, WA 98101" +286416,AAA Batteries (4-pack),3,2.99,11/19/19 12:40,"7 Main St, Los Angeles, CA 90001" +286417,AA Batteries (4-pack),1,3.84,11/22/19 08:27,"300 7th St, Atlanta, GA 30301" +286418,34in Ultrawide Monitor,1,379.99,11/26/19 14:35,"203 9th St, Portland, ME 04101" +286419,27in FHD Monitor,1,149.99,11/22/19 19:10,"69 Church St, San Francisco, CA 94016" +286420,Lightning Charging Cable,1,14.95,11/23/19 08:02,"989 8th St, Boston, MA 02215" +286421,AA Batteries (4-pack),1,3.84,11/28/19 11:56,"547 Jackson St, San Francisco, CA 94016" +286422,USB-C Charging Cable,1,11.95,11/03/19 14:09,"618 Lake St, New York City, NY 10001" +286423,Vareebadd Phone,1,400,11/26/19 17:05,"588 Sunset St, Boston, MA 02215" +286423,USB-C Charging Cable,1,11.95,11/26/19 17:05,"588 Sunset St, Boston, MA 02215" +286424,AAA Batteries (4-pack),3,2.99,11/15/19 19:41,"225 10th St, San Francisco, CA 94016" +286425,USB-C Charging Cable,1,11.95,11/17/19 22:41,"8 Main St, New York City, NY 10001" +286426,Lightning Charging Cable,1,14.95,11/13/19 23:59,"451 Lake St, Boston, MA 02215" +286427,AAA Batteries (4-pack),1,2.99,11/07/19 10:47,"524 9th St, Boston, MA 02215" +286428,Lightning Charging Cable,1,14.95,11/15/19 11:10,"408 Pine St, Atlanta, GA 30301" +286429,Bose SoundSport Headphones,1,99.99,11/17/19 11:01,"976 Spruce St, San Francisco, CA 94016" +286430,Apple Airpods Headphones,1,150,11/16/19 19:56,"246 Washington St, New York City, NY 10001" +286431,iPhone,1,700,11/10/19 07:58,"239 8th St, San Francisco, CA 94016" +286431,Lightning Charging Cable,1,14.95,11/10/19 07:58,"239 8th St, San Francisco, CA 94016" +286432,Macbook Pro Laptop,1,1700,11/21/19 10:17,"110 North St, Los Angeles, CA 90001" +286433,AA Batteries (4-pack),2,3.84,11/11/19 09:41,"614 Walnut St, Dallas, TX 75001" +286434,AA Batteries (4-pack),2,3.84,11/26/19 20:17,"733 5th St, Seattle, WA 98101" +286435,Apple Airpods Headphones,1,150,11/05/19 20:14,"411 14th St, Seattle, WA 98101" +286436,Lightning Charging Cable,1,14.95,11/27/19 19:17,"770 Church St, Los Angeles, CA 90001" +286437,20in Monitor,1,109.99,11/04/19 00:14,"833 Madison St, Austin, TX 73301" +286438,Macbook Pro Laptop,1,1700,11/13/19 11:21,"670 Hill St, Seattle, WA 98101" +286439,Apple Airpods Headphones,1,150,11/03/19 12:02,"795 South St, Seattle, WA 98101" +286440,Lightning Charging Cable,1,14.95,11/30/19 17:05,"525 North St, Seattle, WA 98101" +286441,AA Batteries (4-pack),2,3.84,11/26/19 09:33,"890 12th St, Boston, MA 02215" +286442,USB-C Charging Cable,1,11.95,11/22/19 19:17,"890 14th St, Seattle, WA 98101" +286443,Lightning Charging Cable,1,14.95,11/30/19 19:15,"112 Park St, San Francisco, CA 94016" +286444,AAA Batteries (4-pack),1,2.99,11/21/19 20:40,"702 Sunset St, San Francisco, CA 94016" +286445,USB-C Charging Cable,1,11.95,11/02/19 18:45,"474 Meadow St, Dallas, TX 75001" +286446,Apple Airpods Headphones,1,150,11/26/19 11:29,"363 Ridge St, San Francisco, CA 94016" +286447,Flatscreen TV,1,300,11/17/19 12:14,"303 Chestnut St, Austin, TX 73301" +286448,Wired Headphones,1,11.99,11/12/19 13:00,"3 Lake St, Los Angeles, CA 90001" +286449,Lightning Charging Cable,1,14.95,11/30/19 19:52,"235 12th St, New York City, NY 10001" +286450,Lightning Charging Cable,1,14.95,11/07/19 14:36,"902 Meadow St, New York City, NY 10001" +286451,Apple Airpods Headphones,1,150,11/09/19 08:07,"242 11th St, New York City, NY 10001" +286452,ThinkPad Laptop,1,999.99,11/01/19 23:19,"623 12th St, San Francisco, CA 94016" +286453,Wired Headphones,1,11.99,11/17/19 11:00,"861 Meadow St, Los Angeles, CA 90001" +286454,34in Ultrawide Monitor,1,379.99,11/18/19 12:42,"514 5th St, San Francisco, CA 94016" +286455,Apple Airpods Headphones,1,150,11/15/19 09:14,"240 Chestnut St, Seattle, WA 98101" +286456,Wired Headphones,1,11.99,11/21/19 13:18,"428 Madison St, Boston, MA 02215" +286457,Lightning Charging Cable,1,14.95,11/23/19 10:46,"502 Sunset St, Atlanta, GA 30301" +286458,27in 4K Gaming Monitor,1,389.99,11/09/19 19:48,"923 9th St, Dallas, TX 75001" +286459,Vareebadd Phone,1,400,11/17/19 15:33,"609 Maple St, San Francisco, CA 94016" +286459,Wired Headphones,1,11.99,11/17/19 15:33,"609 Maple St, San Francisco, CA 94016" +286460,Wired Headphones,1,11.99,11/02/19 11:24,"865 6th St, San Francisco, CA 94016" +286461,Lightning Charging Cable,1,14.95,11/01/19 08:09,"356 5th St, San Francisco, CA 94016" +286462,USB-C Charging Cable,1,11.95,11/09/19 17:31,"76 Willow St, Los Angeles, CA 90001" +286463,Lightning Charging Cable,1,14.95,11/02/19 07:43,"517 Cedar St, Dallas, TX 75001" +286464,USB-C Charging Cable,1,11.95,11/17/19 12:59,"669 Washington St, Austin, TX 73301" +286465,Bose SoundSport Headphones,1,99.99,11/17/19 11:58,"558 Forest St, Portland, OR 97035" +286466,Bose SoundSport Headphones,1,99.99,11/11/19 12:27,"102 Elm St, Seattle, WA 98101" +286467,iPhone,1,700,11/05/19 19:04,"870 7th St, Portland, OR 97035" +286468,AAA Batteries (4-pack),4,2.99,11/08/19 12:12,"978 10th St, Austin, TX 73301" +286469,iPhone,1,700,11/05/19 00:20,"779 9th St, New York City, NY 10001" +286470,Wired Headphones,1,11.99,11/04/19 10:19,"89 Ridge St, San Francisco, CA 94016" +286471,Apple Airpods Headphones,1,150,11/24/19 20:57,"242 Cedar St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +286472,Apple Airpods Headphones,1,150,11/12/19 10:38,"847 Elm St, New York City, NY 10001" +286473,AAA Batteries (4-pack),2,2.99,11/14/19 06:57,"652 Madison St, Los Angeles, CA 90001" +286474,Apple Airpods Headphones,1,150,11/14/19 16:31,"60 Johnson St, Austin, TX 73301" +286475,Wired Headphones,1,11.99,11/07/19 20:50,"130 Jackson St, Dallas, TX 75001" +286476,27in FHD Monitor,1,149.99,11/07/19 13:43,"907 Maple St, New York City, NY 10001" +286477,Wired Headphones,1,11.99,11/26/19 14:21,"971 South St, Boston, MA 02215" +286478,Lightning Charging Cable,1,14.95,11/13/19 09:27,"622 Hill St, Dallas, TX 75001" +286479,Apple Airpods Headphones,1,150,11/07/19 17:26,"199 Lincoln St, Portland, ME 04101" +286480,AA Batteries (4-pack),1,3.84,11/01/19 18:32,"76 South St, Dallas, TX 75001" +286481,AAA Batteries (4-pack),1,2.99,11/05/19 23:19,"220 Willow St, San Francisco, CA 94016" +286482,Wired Headphones,1,11.99,11/27/19 09:11,"836 Cedar St, New York City, NY 10001" +286482,AA Batteries (4-pack),1,3.84,11/27/19 09:11,"836 Cedar St, New York City, NY 10001" +286483,27in 4K Gaming Monitor,1,389.99,11/06/19 12:04,"249 Jefferson St, New York City, NY 10001" +286484,AA Batteries (4-pack),2,3.84,11/26/19 14:17,"55 Cedar St, Atlanta, GA 30301" +286485,Lightning Charging Cable,1,14.95,11/27/19 20:39,"161 Wilson St, San Francisco, CA 94016" +286486,Apple Airpods Headphones,1,150,11/18/19 09:57,"864 Park St, Los Angeles, CA 90001" +286487,27in 4K Gaming Monitor,1,389.99,11/10/19 20:31,"329 Hill St, Los Angeles, CA 90001" +286488,34in Ultrawide Monitor,1,379.99,11/20/19 19:54,"299 13th St, Atlanta, GA 30301" +286489,Apple Airpods Headphones,1,150,11/14/19 23:59,"846 13th St, San Francisco, CA 94016" +286490,20in Monitor,1,109.99,11/18/19 23:38,"990 10th St, Austin, TX 73301" +286491,Lightning Charging Cable,1,14.95,11/10/19 07:00,"628 9th St, Portland, OR 97035" +286492,Apple Airpods Headphones,1,150,11/14/19 05:07,"728 4th St, Dallas, TX 75001" +286493,AA Batteries (4-pack),1,3.84,11/14/19 21:18,"439 Park St, Boston, MA 02215" +286494,iPhone,1,700,11/12/19 11:49,"743 Church St, San Francisco, CA 94016" +286495,USB-C Charging Cable,1,11.95,11/19/19 12:55,"961 Wilson St, Austin, TX 73301" +286496,AA Batteries (4-pack),1,3.84,11/08/19 07:22,"493 Pine St, Los Angeles, CA 90001" +286497,Lightning Charging Cable,2,14.95,11/26/19 12:43,"285 Sunset St, San Francisco, CA 94016" +286498,Bose SoundSport Headphones,1,99.99,11/14/19 09:31,"373 Walnut St, Boston, MA 02215" +286499,Bose SoundSport Headphones,1,99.99,11/11/19 08:31,"950 Church St, Atlanta, GA 30301" +286500,Apple Airpods Headphones,1,150,11/07/19 01:12,"535 Maple St, San Francisco, CA 94016" +286501,Wired Headphones,1,11.99,11/03/19 22:56,"171 Dogwood St, Austin, TX 73301" +286502,AA Batteries (4-pack),1,3.84,11/20/19 12:37,"702 Maple St, Los Angeles, CA 90001" +286503,34in Ultrawide Monitor,1,379.99,11/28/19 15:36,"924 4th St, San Francisco, CA 94016" +286504,iPhone,1,700,11/12/19 23:49,"875 Ridge St, Boston, MA 02215" +286505,ThinkPad Laptop,1,999.99,11/06/19 12:23,"337 Main St, Seattle, WA 98101" +286506,Apple Airpods Headphones,1,150,11/02/19 21:05,"212 10th St, Los Angeles, CA 90001" +286507,Flatscreen TV,1,300,11/01/19 19:19,"413 Madison St, San Francisco, CA 94016" +286508,AA Batteries (4-pack),1,3.84,11/13/19 23:24,"914 Center St, Seattle, WA 98101" +286509,AA Batteries (4-pack),1,3.84,11/28/19 20:04,"881 Church St, Los Angeles, CA 90001" +286510,AAA Batteries (4-pack),1,2.99,11/23/19 23:56,"810 Pine St, Los Angeles, CA 90001" +,,,,, +286511,AA Batteries (4-pack),1,3.84,11/27/19 07:31,"509 Johnson St, Seattle, WA 98101" +286512,iPhone,1,700,11/13/19 01:20,"395 Chestnut St, Los Angeles, CA 90001" +286513,34in Ultrawide Monitor,1,379.99,11/24/19 16:51,"89 Pine St, Seattle, WA 98101" +286514,iPhone,1,700,11/22/19 20:44,"658 14th St, New York City, NY 10001" +286515,iPhone,1,700,11/09/19 14:22,"351 Ridge St, Atlanta, GA 30301" +286515,Apple Airpods Headphones,1,150,11/09/19 14:22,"351 Ridge St, Atlanta, GA 30301" +286515,USB-C Charging Cable,1,11.95,11/09/19 14:22,"351 Ridge St, Atlanta, GA 30301" +286516,Bose SoundSport Headphones,1,99.99,11/29/19 12:58,"729 North St, New York City, NY 10001" +286517,Lightning Charging Cable,1,14.95,11/12/19 10:57,"476 Johnson St, San Francisco, CA 94016" +286518,USB-C Charging Cable,1,11.95,11/11/19 20:50,"514 South St, Atlanta, GA 30301" +286519,AA Batteries (4-pack),1,3.84,11/30/19 04:13,"876 Maple St, Seattle, WA 98101" +286520,Wired Headphones,1,11.99,11/30/19 20:50,"817 Willow St, San Francisco, CA 94016" +286521,27in 4K Gaming Monitor,1,389.99,11/03/19 21:06,"53 Sunset St, Dallas, TX 75001" +286522,Wired Headphones,1,11.99,11/02/19 18:11,"796 Church St, Atlanta, GA 30301" +286523,Bose SoundSport Headphones,1,99.99,11/05/19 19:03,"453 Meadow St, Austin, TX 73301" +286524,LG Washing Machine,1,600.0,11/28/19 09:14,"397 Johnson St, Atlanta, GA 30301" +286525,USB-C Charging Cable,1,11.95,11/11/19 09:43,"553 1st St, Los Angeles, CA 90001" +286526,34in Ultrawide Monitor,1,379.99,11/01/19 16:02,"341 Washington St, Boston, MA 02215" +286527,20in Monitor,1,109.99,11/16/19 10:33,"479 Willow St, Dallas, TX 75001" +286528,34in Ultrawide Monitor,1,379.99,11/03/19 10:52,"685 Madison St, San Francisco, CA 94016" +286529,iPhone,1,700,11/25/19 15:11,"503 14th St, Boston, MA 02215" +286530,Wired Headphones,1,11.99,11/06/19 11:19,"915 5th St, Boston, MA 02215" +286531,AA Batteries (4-pack),1,3.84,11/15/19 08:35,"592 9th St, Los Angeles, CA 90001" +286532,AAA Batteries (4-pack),1,2.99,11/13/19 10:33,"395 Spruce St, Los Angeles, CA 90001" +286533,USB-C Charging Cable,1,11.95,11/27/19 14:27,"454 Main St, San Francisco, CA 94016" +286534,LG Washing Machine,1,600.0,11/28/19 22:09,"711 Willow St, Boston, MA 02215" +286535,AA Batteries (4-pack),1,3.84,11/25/19 14:53,"252 4th St, San Francisco, CA 94016" +286536,Lightning Charging Cable,1,14.95,11/19/19 13:47,"950 Willow St, Boston, MA 02215" +286537,AAA Batteries (4-pack),1,2.99,11/30/19 11:51,"793 Center St, San Francisco, CA 94016" +286538,AA Batteries (4-pack),1,3.84,11/01/19 17:26,"715 Hill St, Seattle, WA 98101" +286539,Google Phone,1,600,11/15/19 14:21,"247 10th St, Los Angeles, CA 90001" +286540,34in Ultrawide Monitor,1,379.99,11/13/19 14:22,"74 Elm St, Portland, ME 04101" +286541,USB-C Charging Cable,1,11.95,11/28/19 10:06,"838 Meadow St, Boston, MA 02215" +286542,AAA Batteries (4-pack),1,2.99,11/20/19 16:21,"249 13th St, Seattle, WA 98101" +286543,AAA Batteries (4-pack),1,2.99,11/28/19 16:42,"233 7th St, San Francisco, CA 94016" +286544,iPhone,1,700,11/17/19 01:40,"536 11th St, Boston, MA 02215" +286545,Macbook Pro Laptop,1,1700,11/18/19 14:38,"627 Chestnut St, San Francisco, CA 94016" +286546,AA Batteries (4-pack),1,3.84,11/09/19 11:30,"240 Lincoln St, Los Angeles, CA 90001" +286547,Lightning Charging Cable,1,14.95,11/16/19 06:09,"54 Lake St, Los Angeles, CA 90001" +286548,Apple Airpods Headphones,1,150,11/21/19 10:33,"873 4th St, Atlanta, GA 30301" +286549,Google Phone,1,600,11/28/19 18:11,"654 Hickory St, Dallas, TX 75001" +286550,AAA Batteries (4-pack),1,2.99,11/23/19 02:13,"591 Jefferson St, Los Angeles, CA 90001" +286551,20in Monitor,1,109.99,11/25/19 20:58,"714 Forest St, Atlanta, GA 30301" +286552,Lightning Charging Cable,1,14.95,11/24/19 13:17,"659 Spruce St, New York City, NY 10001" +286553,AA Batteries (4-pack),1,3.84,11/27/19 16:20,"468 North St, Los Angeles, CA 90001" +286554,AA Batteries (4-pack),1,3.84,11/28/19 17:06,"25 Center St, Portland, OR 97035" +286555,iPhone,1,700,11/03/19 20:24,"363 Jefferson St, Dallas, TX 75001" +286555,Lightning Charging Cable,1,14.95,11/03/19 20:24,"363 Jefferson St, Dallas, TX 75001" +286556,Lightning Charging Cable,1,14.95,11/30/19 15:53,"215 Ridge St, Boston, MA 02215" +286557,AAA Batteries (4-pack),2,2.99,11/16/19 14:29,"910 Madison St, Los Angeles, CA 90001" +286558,AA Batteries (4-pack),1,3.84,11/28/19 00:24,"207 Walnut St, Los Angeles, CA 90001" +286559,Wired Headphones,1,11.99,11/11/19 21:39,"821 Madison St, Seattle, WA 98101" +286560,Lightning Charging Cable,1,14.95,11/17/19 23:42,"870 8th St, Dallas, TX 75001" +286561,Google Phone,1,600,11/07/19 18:58,"391 1st St, Boston, MA 02215" +286561,USB-C Charging Cable,1,11.95,11/07/19 18:58,"391 1st St, Boston, MA 02215" +,,,,, +286562,Bose SoundSport Headphones,1,99.99,11/08/19 18:19,"889 7th St, San Francisco, CA 94016" +286563,Vareebadd Phone,1,400,11/23/19 18:01,"587 Hill St, Austin, TX 73301" +286563,Wired Headphones,1,11.99,11/23/19 18:01,"587 Hill St, Austin, TX 73301" +286564,USB-C Charging Cable,1,11.95,11/12/19 16:45,"278 River St, San Francisco, CA 94016" +286565,34in Ultrawide Monitor,1,379.99,11/27/19 08:53,"584 Cedar St, San Francisco, CA 94016" +286566,AA Batteries (4-pack),2,3.84,11/01/19 22:53,"539 13th St, New York City, NY 10001" +286567,Bose SoundSport Headphones,1,99.99,11/09/19 11:41,"583 Hickory St, New York City, NY 10001" +286568,34in Ultrawide Monitor,1,379.99,11/18/19 21:48,"786 Spruce St, New York City, NY 10001" +286569,AAA Batteries (4-pack),1,2.99,11/28/19 20:13,"589 Pine St, Los Angeles, CA 90001" +286570,AA Batteries (4-pack),1,3.84,11/01/19 09:33,"484 Wilson St, Boston, MA 02215" +286571,Bose SoundSport Headphones,1,99.99,11/26/19 22:51,"348 Madison St, San Francisco, CA 94016" +286572,Lightning Charging Cable,1,14.95,11/01/19 14:36,"893 Meadow St, San Francisco, CA 94016" +286573,Apple Airpods Headphones,1,150,11/02/19 13:53,"311 Center St, Seattle, WA 98101" +286574,ThinkPad Laptop,1,999.99,11/21/19 20:57,"260 Highland St, San Francisco, CA 94016" +286575,Bose SoundSport Headphones,1,99.99,11/13/19 21:19,"873 West St, Dallas, TX 75001" +286576,USB-C Charging Cable,1,11.95,11/18/19 21:30,"129 River St, Atlanta, GA 30301" +286577,Bose SoundSport Headphones,1,99.99,11/10/19 16:08,"765 Jefferson St, San Francisco, CA 94016" +286578,USB-C Charging Cable,1,11.95,11/02/19 12:18,"952 Walnut St, San Francisco, CA 94016" +286579,Lightning Charging Cable,1,14.95,11/09/19 14:11,"746 Center St, Los Angeles, CA 90001" +286580,AAA Batteries (4-pack),2,2.99,11/07/19 18:30,"505 Adams St, San Francisco, CA 94016" +286581,Lightning Charging Cable,3,14.95,11/19/19 10:25,"214 Main St, Portland, OR 97035" +286582,Apple Airpods Headphones,1,150,11/06/19 18:45,"387 Cedar St, Portland, OR 97035" +286583,Wired Headphones,1,11.99,11/25/19 17:21,"978 Maple St, Austin, TX 73301" +286584,AA Batteries (4-pack),1,3.84,11/22/19 19:08,"649 Washington St, Los Angeles, CA 90001" +286585,Lightning Charging Cable,1,14.95,11/27/19 15:34,"681 Chestnut St, New York City, NY 10001" +286586,27in FHD Monitor,1,149.99,11/09/19 21:03,"239 River St, New York City, NY 10001" +286587,Flatscreen TV,1,300,11/10/19 14:52,"556 Ridge St, San Francisco, CA 94016" +286588,Macbook Pro Laptop,1,1700,11/30/19 19:49,"685 Sunset St, Atlanta, GA 30301" +286589,Apple Airpods Headphones,1,150,11/16/19 18:45,"173 South St, New York City, NY 10001" +286590,USB-C Charging Cable,1,11.95,11/17/19 11:52,"916 1st St, Austin, TX 73301" +286591,Bose SoundSport Headphones,1,99.99,11/12/19 21:09,"106 Jefferson St, New York City, NY 10001" +286592,20in Monitor,1,109.99,11/14/19 16:55,"67 Jackson St, Los Angeles, CA 90001" +286593,34in Ultrawide Monitor,1,379.99,11/03/19 08:35,"493 5th St, Dallas, TX 75001" +286594,34in Ultrawide Monitor,1,379.99,11/01/19 23:00,"778 7th St, San Francisco, CA 94016" +286595,Bose SoundSport Headphones,1,99.99,11/12/19 11:56,"239 Church St, Los Angeles, CA 90001" +286596,AAA Batteries (4-pack),1,2.99,11/19/19 22:31,"455 Jefferson St, Boston, MA 02215" +286597,AA Batteries (4-pack),1,3.84,11/17/19 09:56,"970 Center St, San Francisco, CA 94016" +286598,Bose SoundSport Headphones,1,99.99,11/26/19 09:25,"476 Lake St, San Francisco, CA 94016" +286599,Lightning Charging Cable,2,14.95,11/29/19 13:54,"359 Main St, Boston, MA 02215" +286600,Wired Headphones,1,11.99,11/14/19 13:05,"594 2nd St, San Francisco, CA 94016" +286601,27in FHD Monitor,1,149.99,11/07/19 19:33,"887 Jackson St, San Francisco, CA 94016" +286602,AA Batteries (4-pack),1,3.84,11/06/19 13:05,"16 Chestnut St, New York City, NY 10001" +286603,Apple Airpods Headphones,1,150,11/22/19 13:45,"401 Center St, San Francisco, CA 94016" +286604,Apple Airpods Headphones,1,150,11/24/19 21:03,"257 Jefferson St, Portland, OR 97035" +286605,Lightning Charging Cable,1,14.95,11/03/19 16:36,"963 Jackson St, Seattle, WA 98101" +286606,iPhone,1,700,11/14/19 12:13,"526 Washington St, New York City, NY 10001" +286606,Apple Airpods Headphones,1,150,11/14/19 12:13,"526 Washington St, New York City, NY 10001" +286607,Lightning Charging Cable,1,14.95,11/29/19 11:54,"934 4th St, Dallas, TX 75001" +286608,20in Monitor,1,109.99,11/04/19 16:53,"344 13th St, Portland, OR 97035" +286609,iPhone,1,700,11/27/19 16:09,"674 River St, Dallas, TX 75001" +286609,Lightning Charging Cable,1,14.95,11/27/19 16:09,"674 River St, Dallas, TX 75001" +286610,AA Batteries (4-pack),1,3.84,11/22/19 12:37,"690 Lakeview St, Atlanta, GA 30301" +286611,Apple Airpods Headphones,1,150,11/06/19 22:30,"986 Johnson St, Los Angeles, CA 90001" +286612,AAA Batteries (4-pack),1,2.99,11/03/19 01:05,"224 West St, Austin, TX 73301" +286613,USB-C Charging Cable,1,11.95,11/23/19 22:55,"16 Main St, San Francisco, CA 94016" +286614,Lightning Charging Cable,1,14.95,11/16/19 11:59,"4 Pine St, New York City, NY 10001" +286615,USB-C Charging Cable,1,11.95,11/01/19 15:21,"373 4th St, San Francisco, CA 94016" +286616,AA Batteries (4-pack),1,3.84,11/22/19 19:30,"235 Walnut St, Atlanta, GA 30301" +286617,20in Monitor,1,109.99,11/27/19 22:11,"469 Spruce St, Los Angeles, CA 90001" +286618,AA Batteries (4-pack),1,3.84,11/04/19 10:57,"931 Center St, Austin, TX 73301" +286619,Lightning Charging Cable,1,14.95,11/07/19 13:51,"625 Wilson St, Portland, OR 97035" +286620,AAA Batteries (4-pack),1,2.99,11/24/19 00:21,"856 14th St, San Francisco, CA 94016" +286621,Apple Airpods Headphones,1,150,11/21/19 20:31,"234 Chestnut St, San Francisco, CA 94016" +286622,Apple Airpods Headphones,1,150,11/09/19 10:23,"436 6th St, Los Angeles, CA 90001" +286623,Vareebadd Phone,1,400,11/04/19 21:03,"82 Madison St, San Francisco, CA 94016" +286624,AAA Batteries (4-pack),1,2.99,11/18/19 12:28,"488 Cherry St, New York City, NY 10001" +286624,Wired Headphones,1,11.99,11/18/19 12:28,"488 Cherry St, New York City, NY 10001" +286625,USB-C Charging Cable,1,11.95,11/09/19 21:04,"213 1st St, San Francisco, CA 94016" +286626,AA Batteries (4-pack),2,3.84,11/21/19 12:00,"729 North St, New York City, NY 10001" +286627,USB-C Charging Cable,1,11.95,11/09/19 17:00,"583 9th St, Atlanta, GA 30301" +286628,27in 4K Gaming Monitor,1,389.99,11/12/19 17:01,"566 Meadow St, Dallas, TX 75001" +286629,Google Phone,1,600,11/13/19 12:53,"301 Elm St, Los Angeles, CA 90001" +286630,Apple Airpods Headphones,1,150,11/09/19 09:13,"644 2nd St, San Francisco, CA 94016" +286631,20in Monitor,1,109.99,11/11/19 13:30,"867 Lakeview St, San Francisco, CA 94016" +286632,27in 4K Gaming Monitor,1,389.99,11/26/19 14:18,"595 Cherry St, Dallas, TX 75001" +286632,Macbook Pro Laptop,1,1700,11/26/19 14:18,"595 Cherry St, Dallas, TX 75001" +286633,AAA Batteries (4-pack),1,2.99,11/02/19 20:44,"41 Center St, San Francisco, CA 94016" +286634,USB-C Charging Cable,1,11.95,11/22/19 07:03,"380 7th St, Atlanta, GA 30301" +286635,Lightning Charging Cable,2,14.95,11/02/19 19:10,"977 Cedar St, Portland, OR 97035" +286636,34in Ultrawide Monitor,1,379.99,11/18/19 17:24,"297 River St, San Francisco, CA 94016" +286637,Flatscreen TV,1,300,11/04/19 22:02,"624 Center St, New York City, NY 10001" +286638,27in FHD Monitor,1,149.99,11/25/19 10:31,"106 10th St, Atlanta, GA 30301" +286639,Wired Headphones,1,11.99,11/19/19 00:15,"487 South St, Portland, ME 04101" +286640,27in FHD Monitor,1,149.99,11/15/19 22:07,"883 Washington St, San Francisco, CA 94016" +286641,USB-C Charging Cable,2,11.95,11/17/19 15:50,"103 8th St, Portland, OR 97035" +286642,27in 4K Gaming Monitor,1,389.99,11/26/19 12:43,"549 Park St, Boston, MA 02215" +286643,Bose SoundSport Headphones,1,99.99,11/21/19 18:01,"87 Elm St, Seattle, WA 98101" +286644,AAA Batteries (4-pack),1,2.99,11/11/19 16:15,"219 Washington St, New York City, NY 10001" +286645,Apple Airpods Headphones,1,150,11/24/19 19:28,"355 Elm St, Portland, OR 97035" +286646,Wired Headphones,1,11.99,11/22/19 19:16,"137 Lakeview St, Seattle, WA 98101" +286647,Bose SoundSport Headphones,1,99.99,11/23/19 20:38,"141 Sunset St, San Francisco, CA 94016" +286648,27in FHD Monitor,1,149.99,11/02/19 13:21,"491 Lincoln St, Atlanta, GA 30301" +286649,AA Batteries (4-pack),1,3.84,11/19/19 04:48,"733 Hickory St, Austin, TX 73301" +286650,Bose SoundSport Headphones,1,99.99,11/13/19 12:02,"933 Meadow St, New York City, NY 10001" +286651,Flatscreen TV,1,300,11/29/19 21:23,"962 14th St, San Francisco, CA 94016" +286652,Bose SoundSport Headphones,1,99.99,11/07/19 14:59,"45 Adams St, Los Angeles, CA 90001" +286653,LG Dryer,1,600.0,11/02/19 09:45,"371 Spruce St, Los Angeles, CA 90001" +286654,USB-C Charging Cable,1,11.95,11/30/19 09:42,"757 West St, San Francisco, CA 94016" +286655,Macbook Pro Laptop,1,1700,11/02/19 10:41,"296 Hill St, Atlanta, GA 30301" +286656,Flatscreen TV,1,300,11/19/19 09:59,"678 Maple St, Seattle, WA 98101" +286657,27in 4K Gaming Monitor,1,389.99,11/03/19 14:28,"155 Park St, Dallas, TX 75001" +286658,AAA Batteries (4-pack),1,2.99,11/11/19 12:47,"501 Chestnut St, Austin, TX 73301" +286659,AAA Batteries (4-pack),1,2.99,11/09/19 23:46,"751 South St, Dallas, TX 75001" +286660,Apple Airpods Headphones,1,150,11/16/19 18:07,"989 River St, Dallas, TX 75001" +286661,AA Batteries (4-pack),1,3.84,11/30/19 20:15,"471 9th St, Los Angeles, CA 90001" +286662,USB-C Charging Cable,1,11.95,11/26/19 10:24,"399 South St, Atlanta, GA 30301" +286663,34in Ultrawide Monitor,1,379.99,11/03/19 11:01,"456 Johnson St, Austin, TX 73301" +286664,Lightning Charging Cable,1,14.95,11/17/19 10:26,"613 Hill St, Portland, OR 97035" +286665,34in Ultrawide Monitor,1,379.99,11/12/19 15:08,"92 Main St, San Francisco, CA 94016" +286666,Lightning Charging Cable,1,14.95,11/26/19 08:00,"748 North St, San Francisco, CA 94016" +286667,Bose SoundSport Headphones,1,99.99,11/05/19 22:02,"107 Washington St, Los Angeles, CA 90001" +286668,Bose SoundSport Headphones,1,99.99,11/23/19 09:10,"558 6th St, Los Angeles, CA 90001" +286669,Apple Airpods Headphones,1,150,11/03/19 16:03,"564 Willow St, New York City, NY 10001" +286670,Bose SoundSport Headphones,1,99.99,11/08/19 19:14,"731 Wilson St, New York City, NY 10001" +286671,Apple Airpods Headphones,1,150,11/30/19 23:19,"473 Church St, Atlanta, GA 30301" +286672,34in Ultrawide Monitor,1,379.99,11/23/19 16:42,"432 Jefferson St, Atlanta, GA 30301" +286673,27in 4K Gaming Monitor,1,389.99,11/18/19 15:23,"649 Washington St, San Francisco, CA 94016" +286674,Vareebadd Phone,1,400,11/18/19 11:08,"381 Center St, Atlanta, GA 30301" +286675,Wired Headphones,1,11.99,11/24/19 10:00,"83 8th St, Seattle, WA 98101" +286676,Lightning Charging Cable,1,14.95,11/29/19 13:55,"729 9th St, Atlanta, GA 30301" +286677,Bose SoundSport Headphones,1,99.99,11/27/19 21:58,"134 Meadow St, Austin, TX 73301" +286678,USB-C Charging Cable,1,11.95,11/14/19 11:10,"431 Chestnut St, Los Angeles, CA 90001" +286679,USB-C Charging Cable,1,11.95,11/21/19 20:15,"518 Adams St, Atlanta, GA 30301" +286680,AA Batteries (4-pack),2,3.84,11/14/19 10:40,"716 West St, Los Angeles, CA 90001" +286681,AA Batteries (4-pack),1,3.84,11/29/19 10:42,"715 Main St, Dallas, TX 75001" +286682,Bose SoundSport Headphones,1,99.99,11/20/19 02:15,"224 West St, San Francisco, CA 94016" +286683,USB-C Charging Cable,1,11.95,11/10/19 13:40,"868 Washington St, San Francisco, CA 94016" +286684,AAA Batteries (4-pack),1,2.99,11/18/19 14:32,"390 Cedar St, Los Angeles, CA 90001" +286685,AA Batteries (4-pack),1,3.84,11/10/19 23:07,"256 11th St, Boston, MA 02215" +286686,27in 4K Gaming Monitor,1,389.99,11/04/19 16:09,"25 Highland St, New York City, NY 10001" +286687,USB-C Charging Cable,1,11.95,11/29/19 14:18,"135 Sunset St, Atlanta, GA 30301" +286688,AA Batteries (4-pack),1,3.84,11/07/19 17:09,"411 Spruce St, Atlanta, GA 30301" +286689,27in FHD Monitor,1,149.99,11/21/19 12:00,"281 8th St, Austin, TX 73301" +286690,ThinkPad Laptop,1,999.99,11/04/19 18:46,"352 Adams St, Portland, OR 97035" +286691,27in 4K Gaming Monitor,1,389.99,11/26/19 19:52,"183 Jefferson St, Los Angeles, CA 90001" +286692,20in Monitor,1,109.99,11/23/19 07:56,"615 10th St, Los Angeles, CA 90001" +286693,USB-C Charging Cable,1,11.95,11/10/19 21:50,"420 Washington St, Portland, ME 04101" +286694,AAA Batteries (4-pack),1,2.99,11/25/19 20:43,"936 1st St, New York City, NY 10001" +286695,Wired Headphones,1,11.99,11/06/19 13:33,"83 11th St, Dallas, TX 75001" +286696,AAA Batteries (4-pack),2,2.99,11/21/19 15:02,"529 North St, Boston, MA 02215" +286697,AAA Batteries (4-pack),4,2.99,11/28/19 19:03,"463 Lake St, Los Angeles, CA 90001" +286698,AAA Batteries (4-pack),1,2.99,11/14/19 22:26,"739 Washington St, San Francisco, CA 94016" +286699,Bose SoundSport Headphones,1,99.99,11/03/19 13:43,"463 Wilson St, San Francisco, CA 94016" +286700,Wired Headphones,1,11.99,11/14/19 20:21,"925 Highland St, San Francisco, CA 94016" +286701,Bose SoundSport Headphones,1,99.99,11/15/19 22:53,"722 5th St, San Francisco, CA 94016" +286702,AA Batteries (4-pack),2,3.84,11/15/19 12:32,"234 Cedar St, Dallas, TX 75001" +286703,USB-C Charging Cable,2,11.95,11/02/19 13:26,"63 Hickory St, San Francisco, CA 94016" +286704,Lightning Charging Cable,1,14.95,11/21/19 11:14,"978 Spruce St, San Francisco, CA 94016" +286705,AAA Batteries (4-pack),2,2.99,11/09/19 14:43,"307 10th St, New York City, NY 10001" +286706,ThinkPad Laptop,1,999.99,11/27/19 18:15,"962 Johnson St, Los Angeles, CA 90001" +286707,ThinkPad Laptop,1,999.99,11/11/19 06:57,"773 Madison St, San Francisco, CA 94016" +286708,Lightning Charging Cable,1,14.95,11/02/19 10:46,"606 8th St, New York City, NY 10001" +286709,Bose SoundSport Headphones,1,99.99,11/23/19 13:33,"290 Forest St, New York City, NY 10001" +286710,Flatscreen TV,1,300,11/27/19 19:13,"530 2nd St, Austin, TX 73301" +286711,Bose SoundSport Headphones,1,99.99,11/26/19 01:15,"783 Hickory St, San Francisco, CA 94016" +286712,20in Monitor,1,109.99,11/15/19 12:54,"405 Adams St, Austin, TX 73301" +286713,Wired Headphones,1,11.99,11/10/19 10:36,"869 Dogwood St, Portland, OR 97035" +286714,Apple Airpods Headphones,1,150,11/04/19 22:26,"426 11th St, New York City, NY 10001" +286715,AAA Batteries (4-pack),3,2.99,11/26/19 11:13,"576 10th St, Los Angeles, CA 90001" +286716,AA Batteries (4-pack),1,3.84,11/06/19 15:53,"893 Pine St, New York City, NY 10001" +286717,Lightning Charging Cable,1,14.95,11/21/19 16:20,"466 10th St, San Francisco, CA 94016" +286718,Wired Headphones,1,11.99,11/25/19 19:01,"674 Park St, San Francisco, CA 94016" +286719,AA Batteries (4-pack),1,3.84,11/01/19 11:55,"825 12th St, San Francisco, CA 94016" +286720,AA Batteries (4-pack),1,3.84,11/12/19 09:46,"33 11th St, Dallas, TX 75001" +286721,Flatscreen TV,1,300,11/02/19 07:44,"843 Main St, San Francisco, CA 94016" +286722,AA Batteries (4-pack),2,3.84,11/23/19 13:10,"868 Forest St, Austin, TX 73301" +286723,Lightning Charging Cable,1,14.95,11/23/19 17:31,"151 Ridge St, Boston, MA 02215" +286724,Wired Headphones,1,11.99,11/03/19 22:56,"239 Johnson St, Atlanta, GA 30301" +286725,Lightning Charging Cable,1,14.95,11/27/19 09:35,"71 Sunset St, Los Angeles, CA 90001" +286726,Flatscreen TV,1,300,11/25/19 15:35,"912 Jefferson St, Los Angeles, CA 90001" +286727,LG Dryer,1,600.0,11/27/19 18:47,"112 Adams St, Atlanta, GA 30301" +286728,Bose SoundSport Headphones,1,99.99,11/20/19 21:12,"473 Cedar St, Austin, TX 73301" +286729,34in Ultrawide Monitor,1,379.99,11/10/19 17:34,"778 Main St, New York City, NY 10001" +286730,34in Ultrawide Monitor,1,379.99,11/04/19 15:43,"382 Wilson St, San Francisco, CA 94016" +286731,Lightning Charging Cable,1,14.95,11/23/19 13:42,"934 River St, Atlanta, GA 30301" +286732,USB-C Charging Cable,1,11.95,11/22/19 07:58,"736 Washington St, Portland, OR 97035" +,,,,, +286733,Lightning Charging Cable,1,14.95,11/26/19 18:54,"631 Meadow St, Boston, MA 02215" +286734,iPhone,1,700,11/02/19 09:39,"610 Sunset St, San Francisco, CA 94016" +286734,Lightning Charging Cable,1,14.95,11/02/19 09:39,"610 Sunset St, San Francisco, CA 94016" +286735,Lightning Charging Cable,1,14.95,11/24/19 15:01,"888 11th St, Austin, TX 73301" +286736,AAA Batteries (4-pack),1,2.99,11/14/19 12:01,"926 Cedar St, Boston, MA 02215" +286737,AAA Batteries (4-pack),1,2.99,11/04/19 11:19,"138 Hill St, Seattle, WA 98101" +286738,Lightning Charging Cable,1,14.95,11/12/19 19:20,"680 Willow St, San Francisco, CA 94016" +286739,USB-C Charging Cable,1,11.95,11/12/19 21:52,"271 Madison St, New York City, NY 10001" +286740,Google Phone,1,600,11/11/19 09:01,"422 Pine St, San Francisco, CA 94016" +286740,USB-C Charging Cable,1,11.95,11/11/19 09:01,"422 Pine St, San Francisco, CA 94016" +286741,Bose SoundSport Headphones,1,99.99,11/25/19 11:46,"791 Adams St, Seattle, WA 98101" +286742,AAA Batteries (4-pack),1,2.99,11/14/19 13:12,"360 13th St, Austin, TX 73301" +286743,AAA Batteries (4-pack),1,2.99,11/04/19 19:21,"466 1st St, Seattle, WA 98101" +286744,USB-C Charging Cable,1,11.95,11/03/19 18:24,"542 Park St, San Francisco, CA 94016" +286745,AA Batteries (4-pack),1,3.84,11/05/19 10:57,"952 Lincoln St, Boston, MA 02215" +286746,27in 4K Gaming Monitor,1,389.99,11/29/19 22:58,"402 Meadow St, Dallas, TX 75001" +286747,Apple Airpods Headphones,1,150,11/17/19 21:01,"66 Main St, Dallas, TX 75001" +286748,Vareebadd Phone,1,400,11/22/19 19:13,"547 River St, Seattle, WA 98101" +286749,Vareebadd Phone,1,400,11/29/19 21:18,"599 Main St, Los Angeles, CA 90001" +286750,Apple Airpods Headphones,1,150,11/20/19 10:50,"289 Cherry St, New York City, NY 10001" +286751,Vareebadd Phone,1,400,11/02/19 10:47,"413 11th St, Portland, OR 97035" +286752,27in 4K Gaming Monitor,1,389.99,11/20/19 12:53,"578 North St, Boston, MA 02215" +286753,USB-C Charging Cable,1,11.95,11/23/19 09:21,"219 Adams St, Atlanta, GA 30301" +286754,Flatscreen TV,1,300,11/08/19 00:22,"657 Lake St, Atlanta, GA 30301" +286755,Lightning Charging Cable,1,14.95,11/10/19 09:07,"885 Wilson St, Dallas, TX 75001" +286756,27in FHD Monitor,1,149.99,11/09/19 21:55,"199 West St, New York City, NY 10001" +286757,Lightning Charging Cable,1,14.95,11/11/19 18:25,"551 Center St, Seattle, WA 98101" +286758,AAA Batteries (4-pack),1,2.99,11/28/19 08:20,"628 Spruce St, Los Angeles, CA 90001" +286759,USB-C Charging Cable,1,11.95,11/15/19 16:38,"260 South St, Dallas, TX 75001" +286760,USB-C Charging Cable,2,11.95,11/03/19 21:56,"100 Center St, Boston, MA 02215" +286761,USB-C Charging Cable,2,11.95,11/20/19 08:54,"353 Main St, San Francisco, CA 94016" +286762,AAA Batteries (4-pack),1,2.99,11/28/19 23:51,"519 4th St, Boston, MA 02215" +286763,Lightning Charging Cable,2,14.95,11/14/19 13:32,"674 Forest St, Los Angeles, CA 90001" +286764,Wired Headphones,1,11.99,11/01/19 22:28,"641 13th St, Los Angeles, CA 90001" +286765,Wired Headphones,1,11.99,11/10/19 14:22,"699 7th St, Boston, MA 02215" +286766,Lightning Charging Cable,1,14.95,11/30/19 11:21,"465 Main St, Portland, ME 04101" +286767,USB-C Charging Cable,1,11.95,11/12/19 11:43,"863 Wilson St, New York City, NY 10001" +286768,34in Ultrawide Monitor,1,379.99,11/23/19 23:58,"528 Sunset St, Los Angeles, CA 90001" +286769,AA Batteries (4-pack),1,3.84,11/28/19 12:30,"744 Lakeview St, Dallas, TX 75001" +286770,27in FHD Monitor,1,149.99,11/26/19 17:33,"82 4th St, San Francisco, CA 94016" +286771,Apple Airpods Headphones,1,150,11/12/19 19:30,"786 8th St, Boston, MA 02215" +286772,Apple Airpods Headphones,1,150,11/19/19 16:44,"78 Maple St, San Francisco, CA 94016" +286773,34in Ultrawide Monitor,1,379.99,11/28/19 08:45,"68 11th St, Austin, TX 73301" +286774,USB-C Charging Cable,1,11.95,11/07/19 02:06,"563 Hill St, New York City, NY 10001" +286775,27in FHD Monitor,1,149.99,11/01/19 12:48,"65 1st St, Atlanta, GA 30301" +286776,LG Washing Machine,1,600.0,11/25/19 11:27,"856 Cherry St, Los Angeles, CA 90001" +286777,Google Phone,1,600,11/12/19 11:10,"30 Cedar St, Boston, MA 02215" +286778,AA Batteries (4-pack),1,3.84,11/03/19 15:47,"822 Meadow St, Atlanta, GA 30301" +286779,Google Phone,1,600,11/23/19 10:24,"544 Willow St, San Francisco, CA 94016" +286780,Lightning Charging Cable,1,14.95,11/25/19 23:06,"617 8th St, Atlanta, GA 30301" +286781,Bose SoundSport Headphones,1,99.99,11/13/19 06:30,"430 Madison St, San Francisco, CA 94016" +286782,ThinkPad Laptop,1,999.99,11/13/19 23:26,"895 Church St, Los Angeles, CA 90001" +286783,AAA Batteries (4-pack),2,2.99,11/16/19 21:13,"273 Meadow St, Dallas, TX 75001" +286784,Wired Headphones,1,11.99,11/27/19 19:39,"441 Forest St, Boston, MA 02215" +286785,AA Batteries (4-pack),1,3.84,11/22/19 10:24,"247 2nd St, San Francisco, CA 94016" +286786,AAA Batteries (4-pack),1,2.99,11/16/19 10:23,"870 Hickory St, New York City, NY 10001" +286787,AA Batteries (4-pack),1,3.84,11/09/19 08:40,"202 Johnson St, Los Angeles, CA 90001" +286788,USB-C Charging Cable,1,11.95,11/20/19 22:03,"474 2nd St, Boston, MA 02215" +286789,AA Batteries (4-pack),2,3.84,11/27/19 15:35,"683 10th St, San Francisco, CA 94016" +286790,Lightning Charging Cable,1,14.95,11/05/19 17:35,"312 Cherry St, Portland, ME 04101" +286791,iPhone,1,700,11/16/19 19:29,"799 Church St, San Francisco, CA 94016" +286791,Lightning Charging Cable,1,14.95,11/16/19 19:29,"799 Church St, San Francisco, CA 94016" +286792,27in 4K Gaming Monitor,1,389.99,11/01/19 15:51,"964 8th St, San Francisco, CA 94016" +286793,Lightning Charging Cable,1,14.95,11/06/19 07:03,"26 Spruce St, Los Angeles, CA 90001" +286794,USB-C Charging Cable,1,11.95,11/28/19 15:02,"275 6th St, Boston, MA 02215" +286795,20in Monitor,1,109.99,11/14/19 18:44,"513 Johnson St, Los Angeles, CA 90001" +286796,Google Phone,1,600,11/11/19 15:46,"656 River St, San Francisco, CA 94016" +286797,AAA Batteries (4-pack),2,2.99,11/12/19 20:06,"999 Highland St, Boston, MA 02215" +286798,20in Monitor,1,109.99,11/06/19 15:40,"247 14th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +286799,Macbook Pro Laptop,1,1700,11/11/19 16:26,"846 River St, San Francisco, CA 94016" +286800,AAA Batteries (4-pack),2,2.99,11/28/19 14:47,"906 Willow St, San Francisco, CA 94016" +286801,AAA Batteries (4-pack),1,2.99,11/03/19 17:42,"507 8th St, Boston, MA 02215" +286802,Google Phone,1,600,11/20/19 15:16,"482 Lincoln St, San Francisco, CA 94016" +286803,Bose SoundSport Headphones,1,99.99,11/30/19 14:12,"301 6th St, New York City, NY 10001" +286804,Bose SoundSport Headphones,1,99.99,11/16/19 08:04,"253 Forest St, San Francisco, CA 94016" +,,,,, +286805,USB-C Charging Cable,1,11.95,11/22/19 20:17,"328 Cherry St, Dallas, TX 75001" +286806,USB-C Charging Cable,1,11.95,11/17/19 11:47,"930 Chestnut St, Dallas, TX 75001" +286807,USB-C Charging Cable,1,11.95,11/06/19 13:08,"112 North St, Boston, MA 02215" +286808,Wired Headphones,1,11.99,11/29/19 06:26,"269 Sunset St, Atlanta, GA 30301" +286809,Lightning Charging Cable,1,14.95,11/30/19 11:40,"549 13th St, Los Angeles, CA 90001" +286810,AAA Batteries (4-pack),1,2.99,11/23/19 10:06,"520 Willow St, Austin, TX 73301" +286811,Apple Airpods Headphones,1,150,11/23/19 12:48,"428 Spruce St, New York City, NY 10001" +286812,AAA Batteries (4-pack),1,2.99,11/20/19 10:30,"184 6th St, Seattle, WA 98101" +286813,Wired Headphones,1,11.99,11/30/19 10:17,"460 River St, New York City, NY 10001" +286814,Lightning Charging Cable,1,14.95,11/22/19 21:00,"433 9th St, San Francisco, CA 94016" +286815,Lightning Charging Cable,2,14.95,11/13/19 22:36,"876 Wilson St, San Francisco, CA 94016" +286816,27in FHD Monitor,1,149.99,11/27/19 14:37,"205 Lincoln St, San Francisco, CA 94016" +286817,USB-C Charging Cable,1,11.95,11/02/19 16:40,"538 7th St, Portland, ME 04101" +286818,Wired Headphones,3,11.99,11/14/19 19:54,"764 Park St, New York City, NY 10001" +286819,USB-C Charging Cable,1,11.95,11/29/19 04:27,"969 Elm St, Los Angeles, CA 90001" +286820,AA Batteries (4-pack),1,3.84,11/11/19 18:27,"43 Center St, Los Angeles, CA 90001" +286821,USB-C Charging Cable,1,11.95,11/23/19 22:27,"501 Lake St, Boston, MA 02215" +286822,USB-C Charging Cable,1,11.95,11/22/19 04:07,"605 Pine St, San Francisco, CA 94016" +286823,AAA Batteries (4-pack),1,2.99,11/05/19 18:11,"544 Church St, Boston, MA 02215" +286824,Macbook Pro Laptop,1,1700,11/06/19 22:21,"757 Center St, Los Angeles, CA 90001" +286825,iPhone,1,700,11/12/19 20:05,"872 11th St, Boston, MA 02215" +286826,Bose SoundSport Headphones,1,99.99,11/12/19 18:50,"943 South St, Los Angeles, CA 90001" +286827,27in FHD Monitor,1,149.99,11/23/19 21:56,"231 Church St, San Francisco, CA 94016" +286828,Lightning Charging Cable,1,14.95,11/16/19 19:53,"831 Lake St, Seattle, WA 98101" +286829,Apple Airpods Headphones,1,150,11/20/19 19:13,"380 Cherry St, Boston, MA 02215" +286829,27in 4K Gaming Monitor,1,389.99,11/20/19 19:13,"380 Cherry St, Boston, MA 02215" +286830,20in Monitor,1,109.99,11/22/19 06:14,"676 Lakeview St, New York City, NY 10001" +286831,Bose SoundSport Headphones,2,99.99,11/05/19 21:03,"213 West St, Boston, MA 02215" +286832,Macbook Pro Laptop,1,1700,11/12/19 09:54,"66 South St, Boston, MA 02215" +286833,Apple Airpods Headphones,1,150,11/12/19 14:41,"487 Meadow St, Los Angeles, CA 90001" +286834,AA Batteries (4-pack),1,3.84,11/29/19 19:04,"709 Highland St, Los Angeles, CA 90001" +286835,Wired Headphones,1,11.99,11/20/19 23:02,"51 7th St, Los Angeles, CA 90001" +286836,AAA Batteries (4-pack),2,2.99,11/13/19 20:31,"988 Ridge St, New York City, NY 10001" +286837,Lightning Charging Cable,1,14.95,11/18/19 01:39,"996 Maple St, New York City, NY 10001" +286838,AAA Batteries (4-pack),5,2.99,11/12/19 20:13,"195 Ridge St, Los Angeles, CA 90001" +286839,Wired Headphones,1,11.99,11/24/19 23:09,"855 Johnson St, Los Angeles, CA 90001" +286840,Lightning Charging Cable,1,14.95,11/08/19 10:16,"495 9th St, New York City, NY 10001" +286841,AAA Batteries (4-pack),1,2.99,11/04/19 19:20,"444 Adams St, Portland, OR 97035" +286842,Wired Headphones,1,11.99,11/08/19 19:14,"592 Forest St, San Francisco, CA 94016" +286843,Wired Headphones,1,11.99,11/05/19 08:38,"199 14th St, New York City, NY 10001" +286844,Bose SoundSport Headphones,1,99.99,11/16/19 23:03,"503 River St, Boston, MA 02215" +286845,Apple Airpods Headphones,1,150,11/10/19 19:22,"997 Madison St, New York City, NY 10001" +286846,Vareebadd Phone,1,400,11/10/19 17:21,"363 Chestnut St, Seattle, WA 98101" +286847,27in FHD Monitor,1,149.99,11/07/19 09:34,"70 West St, Dallas, TX 75001" +286848,USB-C Charging Cable,1,11.95,11/09/19 17:02,"311 Pine St, San Francisco, CA 94016" +286849,Wired Headphones,1,11.99,11/22/19 01:33,"693 Spruce St, San Francisco, CA 94016" +286850,Lightning Charging Cable,1,14.95,11/20/19 12:59,"855 6th St, New York City, NY 10001" +286851,USB-C Charging Cable,1,11.95,11/30/19 19:17,"404 North St, New York City, NY 10001" +286852,iPhone,1,700,11/23/19 21:12,"716 Washington St, Boston, MA 02215" +286853,AA Batteries (4-pack),1,3.84,11/29/19 13:04,"429 Jackson St, Austin, TX 73301" +286854,Lightning Charging Cable,1,14.95,11/15/19 23:01,"828 Jackson St, Boston, MA 02215" +286855,Macbook Pro Laptop,1,1700,11/12/19 09:25,"271 1st St, Boston, MA 02215" +286856,AA Batteries (4-pack),2,3.84,11/29/19 17:34,"443 Park St, San Francisco, CA 94016" +286857,Bose SoundSport Headphones,1,99.99,11/10/19 20:08,"969 North St, San Francisco, CA 94016" +286858,20in Monitor,1,109.99,11/16/19 19:03,"510 Ridge St, Los Angeles, CA 90001" +286859,20in Monitor,1,109.99,11/09/19 19:50,"852 Johnson St, San Francisco, CA 94016" +286860,Google Phone,1,600,11/30/19 19:01,"823 Church St, Los Angeles, CA 90001" +286861,Macbook Pro Laptop,1,1700,11/26/19 17:05,"621 River St, Boston, MA 02215" +286862,AA Batteries (4-pack),1,3.84,11/02/19 00:50,"996 Lakeview St, San Francisco, CA 94016" +286863,Apple Airpods Headphones,1,150,11/13/19 13:59,"966 6th St, New York City, NY 10001" +286864,34in Ultrawide Monitor,1,379.99,11/27/19 01:05,"389 5th St, Austin, TX 73301" +286865,USB-C Charging Cable,1,11.95,11/20/19 23:33,"281 Pine St, Seattle, WA 98101" +286866,Lightning Charging Cable,1,14.95,11/08/19 06:10,"904 Highland St, San Francisco, CA 94016" +,,,,, +286867,Bose SoundSport Headphones,1,99.99,11/20/19 13:01,"827 Adams St, San Francisco, CA 94016" +286868,USB-C Charging Cable,1,11.95,11/18/19 13:55,"73 Chestnut St, Austin, TX 73301" +286869,Lightning Charging Cable,1,14.95,11/14/19 14:07,"15 Jefferson St, Boston, MA 02215" +286870,Macbook Pro Laptop,1,1700,11/29/19 10:24,"336 Sunset St, New York City, NY 10001" +286871,Flatscreen TV,1,300,11/19/19 00:00,"195 6th St, Atlanta, GA 30301" +286872,34in Ultrawide Monitor,1,379.99,11/19/19 00:49,"410 Cherry St, Seattle, WA 98101" +286873,Wired Headphones,1,11.99,11/01/19 23:04,"532 Ridge St, San Francisco, CA 94016" +286874,Macbook Pro Laptop,1,1700,11/05/19 12:36,"931 Forest St, Austin, TX 73301" +286875,AAA Batteries (4-pack),3,2.99,11/01/19 09:24,"960 6th St, Boston, MA 02215" +286876,USB-C Charging Cable,1,11.95,11/02/19 21:12,"927 5th St, Dallas, TX 75001" +286877,Lightning Charging Cable,1,14.95,11/26/19 02:55,"429 10th St, Boston, MA 02215" +286878,Lightning Charging Cable,1,14.95,11/19/19 20:10,"687 West St, Portland, OR 97035" +286879,Lightning Charging Cable,1,14.95,11/26/19 20:44,"179 11th St, Boston, MA 02215" +286880,Apple Airpods Headphones,1,150,11/28/19 09:41,"156 Main St, New York City, NY 10001" +286881,Bose SoundSport Headphones,1,99.99,11/27/19 10:53,"945 Walnut St, San Francisco, CA 94016" +286882,AAA Batteries (4-pack),1,2.99,11/28/19 12:54,"166 Forest St, Atlanta, GA 30301" +286883,Lightning Charging Cable,1,14.95,11/27/19 13:37,"202 6th St, San Francisco, CA 94016" +286884,USB-C Charging Cable,1,11.95,11/23/19 12:20,"551 Meadow St, Atlanta, GA 30301" +286885,USB-C Charging Cable,1,11.95,11/21/19 18:44,"363 Hickory St, San Francisco, CA 94016" +286886,34in Ultrawide Monitor,1,379.99,11/21/19 20:41,"144 7th St, Seattle, WA 98101" +286887,Lightning Charging Cable,1,14.95,11/21/19 15:36,"788 Lake St, Boston, MA 02215" +286888,Lightning Charging Cable,1,14.95,11/29/19 11:56,"159 Johnson St, San Francisco, CA 94016" +286889,Bose SoundSport Headphones,1,99.99,11/20/19 19:24,"588 Highland St, Boston, MA 02215" +286890,AA Batteries (4-pack),2,3.84,11/05/19 21:33,"703 12th St, Boston, MA 02215" +286891,AAA Batteries (4-pack),3,2.99,11/16/19 19:19,"851 Hill St, San Francisco, CA 94016" +286892,USB-C Charging Cable,1,11.95,11/11/19 16:24,"262 Walnut St, Boston, MA 02215" +286893,USB-C Charging Cable,1,11.95,11/16/19 12:22,"43 2nd St, San Francisco, CA 94016" +286894,USB-C Charging Cable,1,11.95,11/28/19 15:44,"495 10th St, Los Angeles, CA 90001" +286895,Wired Headphones,1,11.99,11/06/19 14:51,"727 Madison St, Boston, MA 02215" +286896,USB-C Charging Cable,1,11.95,11/28/19 13:23,"18 Center St, Portland, OR 97035" +286897,AAA Batteries (4-pack),1,2.99,11/22/19 14:07,"789 Spruce St, Boston, MA 02215" +286898,Lightning Charging Cable,1,14.95,11/20/19 18:53,"511 5th St, Los Angeles, CA 90001" +286899,Flatscreen TV,1,300,11/23/19 10:46,"210 Main St, New York City, NY 10001" +286900,Bose SoundSport Headphones,1,99.99,11/21/19 11:58,"658 11th St, New York City, NY 10001" +286901,AAA Batteries (4-pack),1,2.99,11/30/19 07:56,"247 Johnson St, Los Angeles, CA 90001" +286902,USB-C Charging Cable,1,11.95,11/13/19 15:08,"102 Jefferson St, Los Angeles, CA 90001" +286903,USB-C Charging Cable,1,11.95,11/09/19 18:42,"298 6th St, Austin, TX 73301" +286904,AAA Batteries (4-pack),1,2.99,11/24/19 11:14,"119 Dogwood St, New York City, NY 10001" +286905,Wired Headphones,1,11.99,11/27/19 02:05,"952 Dogwood St, Los Angeles, CA 90001" +286906,Flatscreen TV,1,300,11/24/19 20:36,"428 Madison St, Portland, OR 97035" +286907,AAA Batteries (4-pack),1,2.99,11/26/19 18:18,"189 Dogwood St, San Francisco, CA 94016" +286908,27in FHD Monitor,1,149.99,11/12/19 18:08,"246 Chestnut St, San Francisco, CA 94016" +286909,Lightning Charging Cable,1,14.95,11/14/19 14:29,"921 6th St, Atlanta, GA 30301" +286910,Vareebadd Phone,1,400,11/16/19 17:30,"125 Hickory St, Seattle, WA 98101" +286911,AAA Batteries (4-pack),3,2.99,11/28/19 14:33,"724 4th St, San Francisco, CA 94016" +286912,Wired Headphones,1,11.99,11/20/19 10:32,"489 6th St, San Francisco, CA 94016" +286913,LG Washing Machine,1,600.0,11/01/19 18:23,"708 Meadow St, Los Angeles, CA 90001" +286914,Lightning Charging Cable,1,14.95,11/04/19 20:47,"12 6th St, Los Angeles, CA 90001" +286915,Flatscreen TV,1,300,11/04/19 16:40,"790 Main St, Atlanta, GA 30301" +286916,Wired Headphones,1,11.99,12/01/19 00:07,"769 5th St, Seattle, WA 98101" +286917,AA Batteries (4-pack),1,3.84,11/13/19 14:13,"525 8th St, Seattle, WA 98101" +286918,AAA Batteries (4-pack),2,2.99,11/30/19 20:57,"671 12th St, Los Angeles, CA 90001" +286919,AA Batteries (4-pack),1,3.84,11/27/19 14:25,"860 Jackson St, Los Angeles, CA 90001" +286920,Flatscreen TV,1,300,11/28/19 21:29,"377 Highland St, San Francisco, CA 94016" +286921,Bose SoundSport Headphones,1,99.99,11/04/19 11:20,"165 Lake St, Boston, MA 02215" +286922,AA Batteries (4-pack),1,3.84,11/16/19 14:44,"199 Maple St, Austin, TX 73301" +286923,Apple Airpods Headphones,1,150,11/23/19 11:45,"250 Ridge St, Boston, MA 02215" +286924,Lightning Charging Cable,2,14.95,11/20/19 05:37,"61 Park St, Seattle, WA 98101" +286925,Bose SoundSport Headphones,1,99.99,11/29/19 13:30,"59 Lake St, Portland, OR 97035" +286926,AAA Batteries (4-pack),1,2.99,11/23/19 17:30,"7 Sunset St, New York City, NY 10001" +286927,AAA Batteries (4-pack),1,2.99,11/01/19 22:52,"830 Church St, San Francisco, CA 94016" +286928,34in Ultrawide Monitor,1,379.99,11/18/19 05:55,"130 8th St, San Francisco, CA 94016" +286929,Lightning Charging Cable,1,14.95,11/01/19 13:35,"221 Ridge St, Boston, MA 02215" +286930,AA Batteries (4-pack),1,3.84,11/20/19 18:03,"328 14th St, Austin, TX 73301" +286931,34in Ultrawide Monitor,1,379.99,11/29/19 14:21,"194 7th St, Seattle, WA 98101" +286932,iPhone,1,700,11/06/19 18:13,"131 Pine St, New York City, NY 10001" +286933,Apple Airpods Headphones,1,150,11/23/19 14:32,"512 Hickory St, Atlanta, GA 30301" +286934,20in Monitor,1,109.99,11/16/19 17:33,"626 7th St, New York City, NY 10001" +286935,Flatscreen TV,1,300,11/03/19 08:59,"737 5th St, Los Angeles, CA 90001" +286936,Macbook Pro Laptop,1,1700,11/17/19 10:58,"890 Jackson St, Dallas, TX 75001" +286937,USB-C Charging Cable,1,11.95,11/17/19 13:52,"33 West St, Atlanta, GA 30301" +286938,20in Monitor,1,109.99,11/28/19 15:40,"419 2nd St, Portland, OR 97035" +286939,USB-C Charging Cable,1,11.95,11/02/19 22:55,"4 Ridge St, San Francisco, CA 94016" +286940,AA Batteries (4-pack),1,3.84,11/29/19 17:09,"89 Madison St, San Francisco, CA 94016" +286941,34in Ultrawide Monitor,1,379.99,11/28/19 07:53,"332 Chestnut St, Los Angeles, CA 90001" +286942,AA Batteries (4-pack),1,3.84,11/27/19 15:16,"665 Hickory St, Dallas, TX 75001" +286943,USB-C Charging Cable,1,11.95,11/03/19 15:13,"679 Meadow St, Atlanta, GA 30301" +286944,34in Ultrawide Monitor,1,379.99,11/18/19 16:53,"682 Dogwood St, Seattle, WA 98101" +286945,USB-C Charging Cable,1,11.95,11/07/19 21:59,"72 West St, Seattle, WA 98101" +286946,Wired Headphones,1,11.99,11/11/19 12:02,"703 2nd St, San Francisco, CA 94016" +286947,27in FHD Monitor,1,149.99,11/18/19 04:49,"900 Cedar St, Atlanta, GA 30301" +286948,34in Ultrawide Monitor,1,379.99,11/02/19 22:50,"325 Church St, Portland, OR 97035" +286949,AA Batteries (4-pack),1,3.84,11/13/19 23:02,"918 Johnson St, San Francisco, CA 94016" +286950,Flatscreen TV,1,300,11/01/19 13:48,"972 10th St, Los Angeles, CA 90001" +286951,Apple Airpods Headphones,1,150,11/30/19 20:33,"978 Jefferson St, New York City, NY 10001" +286952,Bose SoundSport Headphones,1,99.99,11/22/19 20:46,"322 1st St, Los Angeles, CA 90001" +286953,AAA Batteries (4-pack),1,2.99,11/13/19 13:34,"139 Lakeview St, New York City, NY 10001" +286954,Apple Airpods Headphones,1,150,11/03/19 21:36,"539 5th St, San Francisco, CA 94016" +286955,Lightning Charging Cable,1,14.95,11/03/19 21:05,"957 Hickory St, Atlanta, GA 30301" +286956,AA Batteries (4-pack),1,3.84,11/22/19 08:38,"601 5th St, Boston, MA 02215" +286957,Lightning Charging Cable,1,14.95,11/19/19 00:19,"240 North St, Los Angeles, CA 90001" +286958,AA Batteries (4-pack),1,3.84,11/08/19 18:40,"230 Meadow St, Boston, MA 02215" +286959,Apple Airpods Headphones,1,150,11/21/19 21:51,"438 12th St, Los Angeles, CA 90001" +286960,AAA Batteries (4-pack),2,2.99,11/21/19 23:42,"447 7th St, Los Angeles, CA 90001" +286961,Bose SoundSport Headphones,1,99.99,11/19/19 23:19,"348 10th St, Los Angeles, CA 90001" +286962,Lightning Charging Cable,1,14.95,11/02/19 20:54,"921 Pine St, Los Angeles, CA 90001" +286963,Lightning Charging Cable,1,14.95,11/28/19 17:04,"1 Meadow St, Atlanta, GA 30301" +286964,Vareebadd Phone,1,400,11/09/19 15:33,"992 West St, Dallas, TX 75001" +286965,27in FHD Monitor,1,149.99,11/28/19 05:46,"937 South St, San Francisco, CA 94016" +286966,AA Batteries (4-pack),2,3.84,11/04/19 04:40,"847 Washington St, New York City, NY 10001" +286967,Bose SoundSport Headphones,1,99.99,11/27/19 11:51,"478 8th St, Los Angeles, CA 90001" +286968,27in FHD Monitor,1,149.99,11/27/19 20:47,"742 Lake St, New York City, NY 10001" +286969,AA Batteries (4-pack),1,3.84,11/12/19 21:13,"844 Adams St, San Francisco, CA 94016" +286970,USB-C Charging Cable,1,11.95,11/05/19 18:19,"279 Walnut St, San Francisco, CA 94016" +286971,Apple Airpods Headphones,1,150,11/15/19 12:23,"456 Highland St, Los Angeles, CA 90001" +286972,Lightning Charging Cable,1,14.95,11/30/19 13:43,"44 4th St, Atlanta, GA 30301" +286973,AA Batteries (4-pack),1,3.84,11/15/19 11:18,"970 Washington St, San Francisco, CA 94016" +286974,AAA Batteries (4-pack),5,2.99,11/17/19 18:15,"422 8th St, New York City, NY 10001" +286975,Apple Airpods Headphones,1,150,11/22/19 22:52,"724 Pine St, San Francisco, CA 94016" +286976,AAA Batteries (4-pack),1,2.99,11/21/19 13:49,"220 9th St, Austin, TX 73301" +286977,Lightning Charging Cable,1,14.95,11/01/19 20:28,"497 Madison St, New York City, NY 10001" +286978,Lightning Charging Cable,1,14.95,11/19/19 00:28,"503 Dogwood St, Boston, MA 02215" +286979,Wired Headphones,1,11.99,11/09/19 12:10,"547 Highland St, San Francisco, CA 94016" +,,,,, +286980,27in FHD Monitor,1,149.99,11/18/19 13:07,"215 Park St, Portland, ME 04101" +286981,AA Batteries (4-pack),1,3.84,11/08/19 17:54,"4 Ridge St, Dallas, TX 75001" +,,,,, +286982,USB-C Charging Cable,1,11.95,11/22/19 20:28,"807 Lakeview St, San Francisco, CA 94016" +286983,AAA Batteries (4-pack),2,2.99,11/29/19 18:47,"101 South St, Atlanta, GA 30301" +286984,USB-C Charging Cable,1,11.95,11/19/19 10:06,"461 7th St, Seattle, WA 98101" +286985,USB-C Charging Cable,1,11.95,11/17/19 07:34,"33 5th St, New York City, NY 10001" +286986,AAA Batteries (4-pack),1,2.99,11/15/19 17:20,"618 4th St, Los Angeles, CA 90001" +286987,AA Batteries (4-pack),1,3.84,11/14/19 08:46,"289 Sunset St, Los Angeles, CA 90001" +286987,Wired Headphones,1,11.99,11/14/19 08:46,"289 Sunset St, Los Angeles, CA 90001" +286988,Macbook Pro Laptop,1,1700,11/13/19 01:25,"375 River St, Los Angeles, CA 90001" +286989,USB-C Charging Cable,2,11.95,11/27/19 18:08,"373 Ridge St, Austin, TX 73301" +286990,Wired Headphones,1,11.99,11/08/19 19:03,"1 8th St, New York City, NY 10001" +286991,AAA Batteries (4-pack),1,2.99,11/14/19 08:49,"323 River St, Seattle, WA 98101" +286992,Bose SoundSport Headphones,1,99.99,11/18/19 21:43,"70 Meadow St, Boston, MA 02215" +286993,Wired Headphones,1,11.99,11/24/19 12:07,"744 7th St, Los Angeles, CA 90001" +286994,AA Batteries (4-pack),2,3.84,11/04/19 01:04,"535 River St, San Francisco, CA 94016" +286995,Lightning Charging Cable,1,14.95,11/01/19 21:07,"696 Main St, Boston, MA 02215" +286996,Vareebadd Phone,1,400,11/22/19 00:46,"869 Lakeview St, New York City, NY 10001" +286997,iPhone,1,700,11/23/19 12:38,"124 Lake St, Los Angeles, CA 90001" +286998,Lightning Charging Cable,1,14.95,11/03/19 16:48,"135 Dogwood St, Atlanta, GA 30301" +286999,USB-C Charging Cable,1,11.95,11/20/19 09:22,"433 Dogwood St, San Francisco, CA 94016" +286999,AA Batteries (4-pack),3,3.84,11/20/19 09:22,"433 Dogwood St, San Francisco, CA 94016" +287000,USB-C Charging Cable,1,11.95,11/23/19 14:08,"624 10th St, San Francisco, CA 94016" +287001,Lightning Charging Cable,1,14.95,11/20/19 12:33,"657 Lincoln St, New York City, NY 10001" +287002,Vareebadd Phone,1,400,11/27/19 18:18,"977 Wilson St, San Francisco, CA 94016" +287003,Wired Headphones,1,11.99,11/07/19 16:19,"960 Jefferson St, New York City, NY 10001" +287004,27in 4K Gaming Monitor,1,389.99,11/18/19 18:29,"19 11th St, Atlanta, GA 30301" +287005,27in 4K Gaming Monitor,1,389.99,11/20/19 09:50,"317 Chestnut St, Austin, TX 73301" +287006,27in FHD Monitor,1,149.99,11/08/19 12:40,"594 West St, Boston, MA 02215" +287007,Macbook Pro Laptop,1,1700,11/09/19 22:15,"995 11th St, New York City, NY 10001" +287008,Bose SoundSport Headphones,1,99.99,11/24/19 19:09,"175 14th St, Seattle, WA 98101" +287009,AAA Batteries (4-pack),1,2.99,11/16/19 22:26,"716 Maple St, Atlanta, GA 30301" +287010,AAA Batteries (4-pack),2,2.99,11/24/19 22:26,"613 Dogwood St, Austin, TX 73301" +287011,Macbook Pro Laptop,1,1700,11/02/19 18:51,"203 Washington St, Los Angeles, CA 90001" +287012,Bose SoundSport Headphones,1,99.99,11/12/19 19:08,"595 Walnut St, San Francisco, CA 94016" +287013,Wired Headphones,1,11.99,11/27/19 20:48,"888 Hill St, Los Angeles, CA 90001" +287014,LG Dryer,1,600.0,11/19/19 12:31,"885 11th St, New York City, NY 10001" +287015,USB-C Charging Cable,1,11.95,11/16/19 22:19,"312 Pine St, San Francisco, CA 94016" +287016,Wired Headphones,1,11.99,11/17/19 15:04,"129 Sunset St, Los Angeles, CA 90001" +287017,USB-C Charging Cable,1,11.95,11/06/19 19:30,"787 Park St, San Francisco, CA 94016" +287018,27in 4K Gaming Monitor,1,389.99,11/29/19 12:20,"416 Forest St, San Francisco, CA 94016" +287018,Lightning Charging Cable,1,14.95,11/29/19 12:20,"416 Forest St, San Francisco, CA 94016" +287019,AAA Batteries (4-pack),1,2.99,11/23/19 13:25,"291 River St, Dallas, TX 75001" +287020,Apple Airpods Headphones,1,150,11/21/19 03:44,"284 River St, San Francisco, CA 94016" +287021,AAA Batteries (4-pack),1,2.99,11/24/19 23:20,"806 Lake St, Portland, OR 97035" +287022,Apple Airpods Headphones,1,150,11/09/19 08:33,"99 Madison St, New York City, NY 10001" +287023,Lightning Charging Cable,1,14.95,11/24/19 22:05,"658 Sunset St, Los Angeles, CA 90001" +287024,Lightning Charging Cable,1,14.95,11/11/19 22:41,"739 Jefferson St, Los Angeles, CA 90001" +287025,USB-C Charging Cable,1,11.95,11/03/19 14:03,"669 12th St, Seattle, WA 98101" +287026,Wired Headphones,1,11.99,11/02/19 14:06,"955 Washington St, Atlanta, GA 30301" +287027,Lightning Charging Cable,1,14.95,11/08/19 21:22,"419 Elm St, San Francisco, CA 94016" +287028,AA Batteries (4-pack),1,3.84,11/29/19 09:19,"405 Lakeview St, Los Angeles, CA 90001" +287029,USB-C Charging Cable,1,11.95,11/18/19 12:35,"94 Cherry St, New York City, NY 10001" +287030,USB-C Charging Cable,1,11.95,11/04/19 10:10,"785 North St, San Francisco, CA 94016" +287031,iPhone,1,700,11/18/19 10:26,"677 8th St, Los Angeles, CA 90001" +287032,AAA Batteries (4-pack),1,2.99,11/20/19 16:30,"987 6th St, Los Angeles, CA 90001" +287033,Apple Airpods Headphones,1,150,11/20/19 21:16,"57 Jackson St, Dallas, TX 75001" +287034,20in Monitor,1,109.99,11/03/19 19:52,"656 Forest St, Los Angeles, CA 90001" +287035,Apple Airpods Headphones,1,150,11/24/19 13:43,"896 7th St, Boston, MA 02215" +287036,34in Ultrawide Monitor,1,379.99,11/22/19 16:54,"137 Johnson St, Boston, MA 02215" +287037,Lightning Charging Cable,1,14.95,11/09/19 12:36,"927 Jackson St, San Francisco, CA 94016" +287038,Apple Airpods Headphones,1,150,11/09/19 15:47,"703 Elm St, New York City, NY 10001" +287039,AA Batteries (4-pack),1,3.84,11/09/19 21:34,"101 Cherry St, Los Angeles, CA 90001" +287040,Apple Airpods Headphones,1,150,11/05/19 01:46,"761 Hickory St, Los Angeles, CA 90001" +287041,27in 4K Gaming Monitor,1,389.99,11/24/19 18:10,"542 6th St, Los Angeles, CA 90001" +287042,20in Monitor,1,109.99,11/24/19 23:40,"795 Center St, Dallas, TX 75001" +287043,USB-C Charging Cable,1,11.95,11/18/19 17:52,"326 Wilson St, New York City, NY 10001" +287044,Apple Airpods Headphones,1,150,11/21/19 10:53,"221 Highland St, New York City, NY 10001" +287045,Wired Headphones,1,11.99,11/23/19 12:39,"702 Cedar St, Seattle, WA 98101" +287046,iPhone,1,700,11/14/19 12:29,"94 Madison St, New York City, NY 10001" +287047,AAA Batteries (4-pack),1,2.99,11/18/19 22:12,"8 Cherry St, Los Angeles, CA 90001" +287048,Bose SoundSport Headphones,1,99.99,11/18/19 19:44,"7 8th St, Boston, MA 02215" +287049,Wired Headphones,1,11.99,11/12/19 17:17,"752 4th St, Dallas, TX 75001" +287050,USB-C Charging Cable,1,11.95,11/14/19 20:01,"466 12th St, Boston, MA 02215" +287051,iPhone,1,700,11/26/19 10:14,"897 South St, Seattle, WA 98101" +287052,AAA Batteries (4-pack),1,2.99,11/28/19 07:44,"894 10th St, Los Angeles, CA 90001" +287053,ThinkPad Laptop,1,999.99,11/21/19 21:42,"350 Church St, Boston, MA 02215" +287054,USB-C Charging Cable,1,11.95,11/09/19 10:07,"6 Center St, Boston, MA 02215" +287055,USB-C Charging Cable,1,11.95,11/21/19 23:46,"206 7th St, New York City, NY 10001" +287056,USB-C Charging Cable,1,11.95,11/26/19 19:45,"306 Lincoln St, Los Angeles, CA 90001" +287057,AA Batteries (4-pack),3,3.84,11/08/19 18:43,"869 11th St, Los Angeles, CA 90001" +287058,Wired Headphones,1,11.99,11/06/19 17:57,"479 Ridge St, Atlanta, GA 30301" +287059,Wired Headphones,2,11.99,11/22/19 12:09,"880 Lincoln St, Boston, MA 02215" +287060,34in Ultrawide Monitor,1,379.99,11/04/19 12:29,"706 River St, Los Angeles, CA 90001" +287061,Wired Headphones,1,11.99,11/26/19 09:03,"648 5th St, Boston, MA 02215" +287062,Apple Airpods Headphones,1,150,11/14/19 07:16,"822 14th St, Atlanta, GA 30301" +287063,AA Batteries (4-pack),2,3.84,11/12/19 19:52,"48 North St, San Francisco, CA 94016" +287064,Macbook Pro Laptop,1,1700,11/06/19 12:35,"56 Madison St, San Francisco, CA 94016" +287065,Apple Airpods Headphones,1,150,11/10/19 21:00,"722 Wilson St, Atlanta, GA 30301" +287066,Google Phone,1,600,11/30/19 00:31,"192 9th St, San Francisco, CA 94016" +287067,Lightning Charging Cable,1,14.95,11/15/19 11:24,"599 Wilson St, Dallas, TX 75001" +287068,Bose SoundSport Headphones,1,99.99,11/18/19 20:43,"900 5th St, New York City, NY 10001" +287069,Lightning Charging Cable,1,14.95,11/24/19 13:31,"69 7th St, Boston, MA 02215" +287070,USB-C Charging Cable,1,11.95,11/25/19 08:16,"275 River St, Atlanta, GA 30301" +287071,Wired Headphones,1,11.99,11/06/19 20:46,"75 Elm St, New York City, NY 10001" +287072,Apple Airpods Headphones,1,150,11/26/19 23:19,"158 Center St, Los Angeles, CA 90001" +287073,USB-C Charging Cable,1,11.95,11/12/19 18:55,"821 2nd St, Seattle, WA 98101" +287074,iPhone,1,700,11/16/19 08:23,"839 Willow St, Seattle, WA 98101" +287075,Wired Headphones,1,11.99,11/03/19 22:19,"533 Meadow St, New York City, NY 10001" +287076,AA Batteries (4-pack),3,3.84,11/18/19 20:59,"694 Lake St, Los Angeles, CA 90001" +287077,20in Monitor,1,109.99,11/24/19 18:42,"754 Cedar St, Los Angeles, CA 90001" +287078,USB-C Charging Cable,1,11.95,11/12/19 21:38,"314 Sunset St, Los Angeles, CA 90001" +287079,Lightning Charging Cable,1,14.95,11/01/19 23:49,"544 Center St, Boston, MA 02215" +287080,AAA Batteries (4-pack),1,2.99,11/30/19 21:15,"714 Hickory St, Boston, MA 02215" +287081,AA Batteries (4-pack),1,3.84,11/20/19 22:03,"912 River St, Los Angeles, CA 90001" +287082,USB-C Charging Cable,1,11.95,11/16/19 05:50,"43 Walnut St, New York City, NY 10001" +287083,AAA Batteries (4-pack),1,2.99,11/22/19 11:31,"731 Jackson St, Atlanta, GA 30301" +287084,Lightning Charging Cable,1,14.95,11/05/19 13:06,"178 Highland St, Dallas, TX 75001" +287085,AAA Batteries (4-pack),1,2.99,11/30/19 13:46,"100 Willow St, Austin, TX 73301" +287086,Apple Airpods Headphones,1,150,11/20/19 15:41,"397 5th St, Los Angeles, CA 90001" +287087,Bose SoundSport Headphones,1,99.99,11/08/19 10:57,"265 Forest St, San Francisco, CA 94016" +287088,AA Batteries (4-pack),1,3.84,11/14/19 17:40,"208 Meadow St, Los Angeles, CA 90001" +287089,AA Batteries (4-pack),2,3.84,11/10/19 07:37,"864 Wilson St, San Francisco, CA 94016" +287090,iPhone,1,700,11/23/19 08:25,"93 Jefferson St, Seattle, WA 98101" +287090,Lightning Charging Cable,1,14.95,11/23/19 08:25,"93 Jefferson St, Seattle, WA 98101" +287091,USB-C Charging Cable,1,11.95,11/07/19 21:43,"934 Meadow St, New York City, NY 10001" +287092,USB-C Charging Cable,1,11.95,11/29/19 12:58,"104 Main St, Los Angeles, CA 90001" +287093,Wired Headphones,2,11.99,11/02/19 13:38,"819 11th St, Austin, TX 73301" +287094,Google Phone,1,600,11/06/19 14:50,"952 1st St, Boston, MA 02215" +287095,Bose SoundSport Headphones,1,99.99,11/19/19 07:56,"606 West St, Dallas, TX 75001" +287096,Apple Airpods Headphones,1,150,11/15/19 20:12,"269 11th St, Dallas, TX 75001" +287097,ThinkPad Laptop,1,999.99,11/25/19 17:29,"172 Adams St, New York City, NY 10001" +287098,27in FHD Monitor,1,149.99,11/25/19 12:56,"756 Spruce St, San Francisco, CA 94016" +287099,ThinkPad Laptop,1,999.99,11/28/19 16:12,"362 Jefferson St, San Francisco, CA 94016" +287100,27in 4K Gaming Monitor,1,389.99,11/15/19 16:07,"409 10th St, Portland, OR 97035" +287101,USB-C Charging Cable,2,11.95,11/14/19 14:53,"964 14th St, Los Angeles, CA 90001" +287102,Bose SoundSport Headphones,1,99.99,11/09/19 20:23,"633 Hickory St, Seattle, WA 98101" +287103,34in Ultrawide Monitor,1,379.99,11/28/19 23:24,"981 11th St, Dallas, TX 75001" +287104,Vareebadd Phone,1,400,11/27/19 21:42,"578 South St, Boston, MA 02215" +287105,AA Batteries (4-pack),2,3.84,11/14/19 12:00,"959 1st St, Atlanta, GA 30301" +287106,AA Batteries (4-pack),2,3.84,11/02/19 13:01,"756 13th St, Los Angeles, CA 90001" +287106,Wired Headphones,1,11.99,11/02/19 13:01,"756 13th St, Los Angeles, CA 90001" +287107,AA Batteries (4-pack),1,3.84,11/12/19 11:20,"661 Highland St, Los Angeles, CA 90001" +287108,AAA Batteries (4-pack),1,2.99,11/13/19 00:10,"17 8th St, Austin, TX 73301" +287109,USB-C Charging Cable,1,11.95,11/25/19 11:42,"164 Meadow St, Los Angeles, CA 90001" +287110,Lightning Charging Cable,1,14.95,11/27/19 01:53,"633 Lake St, Los Angeles, CA 90001" +287111,Lightning Charging Cable,1,14.95,11/29/19 00:33,"16 14th St, Los Angeles, CA 90001" +287112,Lightning Charging Cable,1,14.95,11/25/19 16:58,"187 11th St, Los Angeles, CA 90001" +287113,Wired Headphones,1,11.99,11/23/19 19:59,"37 Lincoln St, San Francisco, CA 94016" +287114,AAA Batteries (4-pack),1,2.99,11/08/19 02:41,"150 North St, Los Angeles, CA 90001" +287115,Wired Headphones,2,11.99,11/12/19 15:40,"834 Spruce St, San Francisco, CA 94016" +287116,USB-C Charging Cable,1,11.95,11/23/19 10:55,"668 Jackson St, Boston, MA 02215" +,,,,, +287117,AAA Batteries (4-pack),1,2.99,11/19/19 10:57,"341 13th St, San Francisco, CA 94016" +287118,27in FHD Monitor,1,149.99,11/25/19 21:35,"28 Adams St, Austin, TX 73301" +287119,27in 4K Gaming Monitor,1,389.99,11/27/19 09:33,"444 Ridge St, San Francisco, CA 94016" +287120,AA Batteries (4-pack),1,3.84,11/06/19 18:34,"514 Lake St, San Francisco, CA 94016" +287121,Flatscreen TV,2,300,11/02/19 13:17,"393 Lakeview St, Los Angeles, CA 90001" +287122,AAA Batteries (4-pack),1,2.99,11/18/19 18:14,"477 Washington St, New York City, NY 10001" +287123,iPhone,1,700,11/06/19 10:18,"61 7th St, New York City, NY 10001" +287124,AAA Batteries (4-pack),1,2.99,11/21/19 00:12,"366 Church St, San Francisco, CA 94016" +287125,20in Monitor,1,109.99,11/16/19 00:19,"415 Wilson St, Atlanta, GA 30301" +287126,Lightning Charging Cable,1,14.95,11/18/19 12:11,"857 Pine St, New York City, NY 10001" +287127,Apple Airpods Headphones,1,150,11/20/19 23:21,"488 Walnut St, Seattle, WA 98101" +287128,ThinkPad Laptop,1,999.99,11/25/19 03:20,"335 Washington St, New York City, NY 10001" +287129,Lightning Charging Cable,1,14.95,11/15/19 16:24,"44 Spruce St, Los Angeles, CA 90001" +287130,Wired Headphones,1,11.99,11/30/19 14:14,"986 Meadow St, Boston, MA 02215" +287131,27in 4K Gaming Monitor,1,389.99,11/30/19 20:04,"347 Dogwood St, Los Angeles, CA 90001" +287132,Wired Headphones,1,11.99,11/26/19 12:22,"372 Pine St, Portland, OR 97035" +287133,Apple Airpods Headphones,1,150,11/07/19 02:23,"382 Forest St, San Francisco, CA 94016" +287134,Macbook Pro Laptop,1,1700,11/01/19 12:01,"775 10th St, New York City, NY 10001" +287135,Bose SoundSport Headphones,1,99.99,11/25/19 21:04,"268 Washington St, Seattle, WA 98101" +287135,Lightning Charging Cable,1,14.95,11/25/19 21:04,"268 Washington St, Seattle, WA 98101" +287136,AA Batteries (4-pack),1,3.84,11/18/19 07:50,"94 1st St, Boston, MA 02215" +287137,AA Batteries (4-pack),1,3.84,11/28/19 21:59,"654 Ridge St, Boston, MA 02215" +287138,Lightning Charging Cable,1,14.95,11/02/19 08:59,"321 14th St, Los Angeles, CA 90001" +287139,27in FHD Monitor,1,149.99,11/02/19 08:58,"712 4th St, Los Angeles, CA 90001" +287140,Macbook Pro Laptop,1,1700,11/27/19 18:45,"22 2nd St, San Francisco, CA 94016" +287141,AAA Batteries (4-pack),2,2.99,11/28/19 22:53,"832 West St, Portland, OR 97035" +287142,Apple Airpods Headphones,1,150,11/19/19 17:48,"257 Lake St, Los Angeles, CA 90001" +287143,LG Dryer,1,600.0,11/14/19 07:55,"848 12th St, Atlanta, GA 30301" +287144,Apple Airpods Headphones,1,150,11/09/19 11:25,"13 River St, Dallas, TX 75001" +287145,ThinkPad Laptop,1,999.99,11/24/19 18:07,"554 Madison St, New York City, NY 10001" +287146,Bose SoundSport Headphones,1,99.99,11/29/19 23:37,"518 Cherry St, San Francisco, CA 94016" +287147,Bose SoundSport Headphones,1,99.99,11/12/19 19:42,"6 Lake St, New York City, NY 10001" +287148,Lightning Charging Cable,1,14.95,11/19/19 12:32,"825 Forest St, San Francisco, CA 94016" +287149,Wired Headphones,1,11.99,11/12/19 22:10,"550 1st St, San Francisco, CA 94016" +287150,Apple Airpods Headphones,1,150,11/09/19 20:32,"391 Walnut St, Atlanta, GA 30301" +287151,Macbook Pro Laptop,1,1700,11/03/19 13:32,"565 Park St, San Francisco, CA 94016" +287152,27in FHD Monitor,1,149.99,11/04/19 10:47,"152 Wilson St, San Francisco, CA 94016" +287153,AA Batteries (4-pack),1,3.84,11/05/19 22:52,"705 8th St, Boston, MA 02215" +287154,Macbook Pro Laptop,1,1700,11/28/19 22:39,"41 South St, San Francisco, CA 94016" +287155,AA Batteries (4-pack),2,3.84,11/20/19 22:29,"850 Dogwood St, Dallas, TX 75001" +287156,AA Batteries (4-pack),1,3.84,11/30/19 10:43,"212 2nd St, San Francisco, CA 94016" +287157,27in 4K Gaming Monitor,1,389.99,11/13/19 10:17,"928 5th St, New York City, NY 10001" +287158,Google Phone,1,600,11/02/19 07:06,"17 Pine St, San Francisco, CA 94016" +287159,Lightning Charging Cable,1,14.95,11/16/19 18:43,"31 Spruce St, Atlanta, GA 30301" +287160,Apple Airpods Headphones,1,150,11/08/19 17:04,"847 Walnut St, San Francisco, CA 94016" +287161,Bose SoundSport Headphones,1,99.99,11/28/19 08:54,"624 10th St, San Francisco, CA 94016" +287162,AA Batteries (4-pack),1,3.84,11/28/19 09:04,"807 Jefferson St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +287163,Lightning Charging Cable,1,14.95,11/03/19 07:27,"294 Center St, Boston, MA 02215" +287164,USB-C Charging Cable,1,11.95,11/20/19 19:56,"496 Adams St, Dallas, TX 75001" +287164,USB-C Charging Cable,1,11.95,11/20/19 19:56,"496 Adams St, Dallas, TX 75001" +287165,34in Ultrawide Monitor,1,379.99,11/25/19 18:24,"220 Wilson St, Portland, OR 97035" +287166,Google Phone,1,600,11/03/19 08:13,"59 Wilson St, New York City, NY 10001" +287166,USB-C Charging Cable,1,11.95,11/03/19 08:13,"59 Wilson St, New York City, NY 10001" +287167,AAA Batteries (4-pack),2,2.99,11/17/19 08:57,"659 North St, New York City, NY 10001" +287168,Wired Headphones,1,11.99,11/25/19 11:01,"159 Willow St, Seattle, WA 98101" +287169,AAA Batteries (4-pack),1,2.99,11/28/19 16:49,"762 14th St, San Francisco, CA 94016" +287170,27in 4K Gaming Monitor,1,389.99,11/13/19 17:51,"412 7th St, Dallas, TX 75001" +287171,Apple Airpods Headphones,1,150,11/29/19 01:07,"456 Ridge St, New York City, NY 10001" +287172,AAA Batteries (4-pack),1,2.99,11/03/19 16:46,"144 Spruce St, Los Angeles, CA 90001" +287173,Wired Headphones,1,11.99,11/24/19 17:22,"453 River St, New York City, NY 10001" +287174,USB-C Charging Cable,1,11.95,11/11/19 11:47,"192 Lake St, San Francisco, CA 94016" +287175,AA Batteries (4-pack),1,3.84,11/07/19 21:38,"682 Madison St, Austin, TX 73301" +287176,USB-C Charging Cable,1,11.95,11/07/19 11:36,"165 Madison St, Seattle, WA 98101" +287177,AAA Batteries (4-pack),2,2.99,11/03/19 11:53,"997 Highland St, Los Angeles, CA 90001" +287178,AA Batteries (4-pack),1,3.84,11/14/19 12:16,"487 Lake St, San Francisco, CA 94016" +287179,AA Batteries (4-pack),3,3.84,11/28/19 21:40,"123 Adams St, Boston, MA 02215" +287180,27in 4K Gaming Monitor,1,389.99,11/15/19 12:12,"91 Forest St, Atlanta, GA 30301" +287181,27in 4K Gaming Monitor,1,389.99,11/04/19 20:42,"103 Highland St, Seattle, WA 98101" +287182,AAA Batteries (4-pack),1,2.99,11/07/19 17:23,"474 Highland St, Dallas, TX 75001" +287183,USB-C Charging Cable,1,11.95,11/26/19 16:28,"386 Chestnut St, San Francisco, CA 94016" +287184,Apple Airpods Headphones,1,150,11/18/19 22:00,"717 Ridge St, San Francisco, CA 94016" +287185,Apple Airpods Headphones,1,150,11/28/19 11:49,"203 Lincoln St, Los Angeles, CA 90001" +287186,AA Batteries (4-pack),1,3.84,11/06/19 01:55,"875 7th St, San Francisco, CA 94016" +287187,AA Batteries (4-pack),1,3.84,11/04/19 13:12,"805 4th St, Los Angeles, CA 90001" +287188,Apple Airpods Headphones,1,150,11/16/19 18:50,"768 Elm St, Portland, OR 97035" +287189,Bose SoundSport Headphones,1,99.99,11/22/19 19:24,"327 10th St, Portland, OR 97035" +287189,27in FHD Monitor,1,149.99,11/22/19 19:24,"327 10th St, Portland, OR 97035" +287190,USB-C Charging Cable,1,11.95,11/02/19 16:53,"171 8th St, New York City, NY 10001" +287191,Lightning Charging Cable,1,14.95,11/09/19 03:43,"402 7th St, San Francisco, CA 94016" +287192,iPhone,1,700,11/10/19 12:49,"331 Madison St, Los Angeles, CA 90001" +287192,Apple Airpods Headphones,1,150,11/10/19 12:49,"331 Madison St, Los Angeles, CA 90001" +287193,AA Batteries (4-pack),1,3.84,11/28/19 09:56,"338 11th St, San Francisco, CA 94016" +287194,AA Batteries (4-pack),1,3.84,11/09/19 20:49,"744 Cedar St, San Francisco, CA 94016" +287194,Vareebadd Phone,1,400,11/09/19 20:49,"744 Cedar St, San Francisco, CA 94016" +287195,Lightning Charging Cable,1,14.95,11/11/19 18:45,"992 5th St, Los Angeles, CA 90001" +287196,USB-C Charging Cable,1,11.95,11/25/19 06:11,"157 Ridge St, Boston, MA 02215" +287197,AAA Batteries (4-pack),1,2.99,11/29/19 12:08,"16 14th St, Portland, OR 97035" +287198,AA Batteries (4-pack),2,3.84,11/18/19 18:30,"951 Adams St, San Francisco, CA 94016" +287199,USB-C Charging Cable,1,11.95,11/05/19 09:48,"72 South St, New York City, NY 10001" +287200,Bose SoundSport Headphones,1,99.99,11/13/19 07:12,"164 Church St, Los Angeles, CA 90001" +287201,Bose SoundSport Headphones,1,99.99,11/25/19 14:50,"186 Chestnut St, Dallas, TX 75001" +287202,AA Batteries (4-pack),1,3.84,11/09/19 14:04,"560 6th St, Los Angeles, CA 90001" +287203,iPhone,1,700,11/07/19 13:40,"542 Madison St, Boston, MA 02215" +287204,Apple Airpods Headphones,1,150,11/26/19 15:22,"678 Sunset St, New York City, NY 10001" +287205,USB-C Charging Cable,1,11.95,11/30/19 21:21,"892 North St, Austin, TX 73301" +287206,AA Batteries (4-pack),2,3.84,11/10/19 23:31,"965 North St, San Francisco, CA 94016" +287207,AAA Batteries (4-pack),1,2.99,11/09/19 12:39,"375 Adams St, Portland, ME 04101" +287208,AAA Batteries (4-pack),1,2.99,11/23/19 21:20,"767 5th St, Dallas, TX 75001" +287209,AAA Batteries (4-pack),1,2.99,11/11/19 15:23,"505 Center St, Los Angeles, CA 90001" +287210,AA Batteries (4-pack),1,3.84,11/14/19 19:41,"185 Chestnut St, Los Angeles, CA 90001" +287211,Bose SoundSport Headphones,1,99.99,11/03/19 15:27,"267 Washington St, Los Angeles, CA 90001" +287212,Vareebadd Phone,1,400,11/22/19 22:07,"54 Adams St, Portland, OR 97035" +287213,AA Batteries (4-pack),1,3.84,11/26/19 15:11,"894 8th St, Los Angeles, CA 90001" +287214,27in FHD Monitor,1,149.99,11/28/19 06:34,"941 Ridge St, San Francisco, CA 94016" +287215,Flatscreen TV,1,300,11/30/19 00:12,"308 4th St, Los Angeles, CA 90001" +287216,iPhone,1,700,11/27/19 23:04,"902 Hickory St, San Francisco, CA 94016" +287217,USB-C Charging Cable,1,11.95,11/24/19 12:01,"168 River St, San Francisco, CA 94016" +287218,AAA Batteries (4-pack),2,2.99,11/09/19 10:59,"298 Lincoln St, Portland, OR 97035" +287219,iPhone,1,700,11/08/19 20:06,"198 Elm St, San Francisco, CA 94016" +287220,Flatscreen TV,1,300,11/02/19 18:11,"831 12th St, Boston, MA 02215" +287221,USB-C Charging Cable,1,11.95,11/28/19 07:59,"888 Sunset St, New York City, NY 10001" +287222,LG Dryer,1,600.0,11/02/19 17:25,"294 Washington St, Atlanta, GA 30301" +287223,27in FHD Monitor,1,149.99,11/04/19 23:02,"710 Washington St, Atlanta, GA 30301" +287224,AAA Batteries (4-pack),1,2.99,11/05/19 11:20,"701 Maple St, San Francisco, CA 94016" +287225,34in Ultrawide Monitor,1,379.99,11/20/19 09:43,"230 Church St, Dallas, TX 75001" +287226,Lightning Charging Cable,1,14.95,11/08/19 15:25,"257 Lincoln St, New York City, NY 10001" +287227,Wired Headphones,1,11.99,11/06/19 11:38,"775 Hill St, San Francisco, CA 94016" +287228,Apple Airpods Headphones,1,150,11/04/19 23:03,"383 Dogwood St, New York City, NY 10001" +287229,USB-C Charging Cable,1,11.95,11/09/19 14:36,"568 Park St, Austin, TX 73301" +287230,Lightning Charging Cable,1,14.95,11/14/19 10:36,"693 Hickory St, Seattle, WA 98101" +287231,USB-C Charging Cable,1,11.95,11/02/19 10:44,"249 Madison St, San Francisco, CA 94016" +287232,Wired Headphones,1,11.99,11/30/19 11:49,"235 1st St, Los Angeles, CA 90001" +287233,Wired Headphones,1,11.99,11/20/19 20:03,"875 Lake St, Austin, TX 73301" +287234,27in 4K Gaming Monitor,1,389.99,11/07/19 20:31,"533 Willow St, Atlanta, GA 30301" +287235,Flatscreen TV,1,300,11/29/19 18:36,"648 Main St, San Francisco, CA 94016" +287236,Wired Headphones,1,11.99,11/15/19 18:59,"300 Washington St, Dallas, TX 75001" +287237,USB-C Charging Cable,1,11.95,11/11/19 13:58,"936 Church St, Los Angeles, CA 90001" +287238,iPhone,1,700,11/25/19 11:18,"944 Washington St, San Francisco, CA 94016" +287239,iPhone,1,700,11/08/19 10:50,"444 11th St, Portland, OR 97035" +287240,USB-C Charging Cable,1,11.95,11/27/19 13:18,"537 11th St, San Francisco, CA 94016" +287241,iPhone,1,700,11/03/19 10:24,"759 6th St, Austin, TX 73301" +287242,AAA Batteries (4-pack),1,2.99,11/08/19 10:08,"5 Forest St, San Francisco, CA 94016" +287243,AA Batteries (4-pack),1,3.84,11/05/19 18:59,"527 7th St, San Francisco, CA 94016" +287244,Bose SoundSport Headphones,1,99.99,11/02/19 16:14,"301 Sunset St, Los Angeles, CA 90001" +287245,USB-C Charging Cable,1,11.95,11/19/19 17:58,"68 Lakeview St, Dallas, TX 75001" +287246,Lightning Charging Cable,1,14.95,11/08/19 01:56,"677 Jefferson St, San Francisco, CA 94016" +287247,USB-C Charging Cable,1,11.95,11/06/19 16:47,"754 North St, San Francisco, CA 94016" +287248,AA Batteries (4-pack),2,3.84,11/17/19 17:08,"942 6th St, San Francisco, CA 94016" +287249,Apple Airpods Headphones,1,150,11/28/19 22:53,"515 Cherry St, San Francisco, CA 94016" +287250,Google Phone,1,600,11/12/19 12:29,"372 Washington St, Austin, TX 73301" +287250,USB-C Charging Cable,1,11.95,11/12/19 12:29,"372 Washington St, Austin, TX 73301" +287251,AA Batteries (4-pack),1,3.84,11/26/19 10:15,"244 1st St, Austin, TX 73301" +287252,Apple Airpods Headphones,1,150,11/17/19 12:12,"50 Pine St, San Francisco, CA 94016" +287253,Lightning Charging Cable,1,14.95,11/08/19 00:26,"392 River St, San Francisco, CA 94016" +287254,Wired Headphones,1,11.99,11/18/19 19:02,"579 Maple St, San Francisco, CA 94016" +287255,iPhone,1,700,11/21/19 20:44,"946 Meadow St, San Francisco, CA 94016" +287256,34in Ultrawide Monitor,1,379.99,11/03/19 20:44,"291 Lake St, New York City, NY 10001" +287257,Wired Headphones,1,11.99,11/10/19 19:24,"187 Lincoln St, Seattle, WA 98101" +287258,Macbook Pro Laptop,1,1700,11/23/19 19:40,"23 West St, Los Angeles, CA 90001" +287259,Lightning Charging Cable,1,14.95,11/08/19 02:33,"742 Church St, San Francisco, CA 94016" +287260,AAA Batteries (4-pack),1,2.99,11/20/19 20:20,"953 Park St, San Francisco, CA 94016" +287261,ThinkPad Laptop,1,999.99,11/22/19 10:51,"385 River St, Boston, MA 02215" +287262,Bose SoundSport Headphones,1,99.99,11/12/19 14:46,"340 14th St, Boston, MA 02215" +287263,Lightning Charging Cable,2,14.95,11/13/19 15:12,"11 Adams St, Los Angeles, CA 90001" +287264,USB-C Charging Cable,1,11.95,11/19/19 01:32,"49 Church St, Los Angeles, CA 90001" +287265,Flatscreen TV,1,300,11/20/19 10:20,"207 Forest St, New York City, NY 10001" +287266,Wired Headphones,2,11.99,11/17/19 18:51,"985 Meadow St, Dallas, TX 75001" +287267,27in 4K Gaming Monitor,1,389.99,11/08/19 20:45,"604 Cedar St, New York City, NY 10001" +287268,Bose SoundSport Headphones,1,99.99,11/09/19 10:17,"445 Lake St, Los Angeles, CA 90001" +287269,Apple Airpods Headphones,1,150,11/10/19 16:01,"780 7th St, Los Angeles, CA 90001" +287270,AAA Batteries (4-pack),2,2.99,11/19/19 20:47,"510 Elm St, Portland, ME 04101" +287271,AAA Batteries (4-pack),1,2.99,11/29/19 14:04,"560 Chestnut St, Seattle, WA 98101" +287272,AA Batteries (4-pack),1,3.84,11/17/19 18:13,"193 Spruce St, San Francisco, CA 94016" +287272,Flatscreen TV,1,300,11/17/19 18:13,"193 Spruce St, San Francisco, CA 94016" +287273,27in FHD Monitor,1,149.99,11/24/19 04:56,"562 Chestnut St, Boston, MA 02215" +287274,27in FHD Monitor,1,149.99,11/29/19 18:52,"767 10th St, Atlanta, GA 30301" +287275,AAA Batteries (4-pack),1,2.99,11/13/19 14:44,"964 Forest St, San Francisco, CA 94016" +287276,AAA Batteries (4-pack),1,2.99,11/20/19 09:18,"435 7th St, San Francisco, CA 94016" +287277,Macbook Pro Laptop,1,1700,11/22/19 22:38,"236 Madison St, Portland, ME 04101" +287278,AAA Batteries (4-pack),1,2.99,11/19/19 22:44,"709 Chestnut St, Boston, MA 02215" +287279,27in 4K Gaming Monitor,1,389.99,11/20/19 12:34,"664 Washington St, New York City, NY 10001" +287280,Bose SoundSport Headphones,1,99.99,11/08/19 22:38,"335 1st St, Seattle, WA 98101" +287281,Lightning Charging Cable,1,14.95,11/08/19 19:33,"800 7th St, San Francisco, CA 94016" +287282,Lightning Charging Cable,2,14.95,11/13/19 11:37,"342 5th St, Seattle, WA 98101" +287283,USB-C Charging Cable,1,11.95,11/18/19 18:37,"947 14th St, Portland, OR 97035" +287284,AAA Batteries (4-pack),3,2.99,11/27/19 19:57,"452 Elm St, San Francisco, CA 94016" +287285,34in Ultrawide Monitor,1,379.99,11/21/19 21:30,"140 Elm St, Dallas, TX 75001" +287286,Macbook Pro Laptop,1,1700,11/08/19 10:09,"420 Johnson St, Boston, MA 02215" +287287,USB-C Charging Cable,1,11.95,11/12/19 20:59,"451 11th St, Portland, OR 97035" +287288,USB-C Charging Cable,1,11.95,11/05/19 23:11,"321 Willow St, San Francisco, CA 94016" +287289,34in Ultrawide Monitor,1,379.99,11/28/19 20:31,"122 11th St, New York City, NY 10001" +287290,AA Batteries (4-pack),1,3.84,11/07/19 13:58,"195 5th St, Atlanta, GA 30301" +287291,27in FHD Monitor,1,149.99,11/16/19 08:33,"666 Forest St, Los Angeles, CA 90001" +287292,AAA Batteries (4-pack),2,2.99,11/19/19 18:51,"677 13th St, Dallas, TX 75001" +287293,USB-C Charging Cable,1,11.95,11/13/19 13:50,"210 Maple St, San Francisco, CA 94016" +287294,AA Batteries (4-pack),1,3.84,11/23/19 16:06,"909 Highland St, Austin, TX 73301" +287295,AA Batteries (4-pack),1,3.84,11/05/19 17:58,"972 West St, Los Angeles, CA 90001" +287296,27in 4K Gaming Monitor,1,389.99,11/06/19 16:17,"194 Meadow St, New York City, NY 10001" +287297,Bose SoundSport Headphones,1,99.99,11/09/19 18:21,"814 Lake St, Portland, OR 97035" +287298,Apple Airpods Headphones,1,150,11/05/19 20:27,"551 Spruce St, Los Angeles, CA 90001" +287299,AAA Batteries (4-pack),1,2.99,11/27/19 00:36,"487 Chestnut St, Portland, OR 97035" +287300,34in Ultrawide Monitor,1,379.99,11/18/19 15:39,"776 Jackson St, Seattle, WA 98101" +287301,Apple Airpods Headphones,1,150,11/13/19 11:47,"870 Adams St, San Francisco, CA 94016" +287302,Wired Headphones,1,11.99,11/22/19 09:04,"509 11th St, Los Angeles, CA 90001" +287303,USB-C Charging Cable,1,11.95,11/26/19 09:41,"217 Cedar St, Seattle, WA 98101" +287304,27in FHD Monitor,1,149.99,11/23/19 12:28,"263 Lake St, Atlanta, GA 30301" +287305,USB-C Charging Cable,1,11.95,11/21/19 15:05,"549 Lake St, Austin, TX 73301" +287306,27in 4K Gaming Monitor,1,389.99,11/11/19 00:04,"59 River St, San Francisco, CA 94016" +287307,Bose SoundSport Headphones,1,99.99,11/25/19 17:13,"279 Madison St, New York City, NY 10001" +287308,AAA Batteries (4-pack),1,2.99,11/18/19 10:33,"280 Forest St, Portland, OR 97035" +287309,Apple Airpods Headphones,1,150,11/15/19 18:57,"228 North St, Los Angeles, CA 90001" +287310,USB-C Charging Cable,1,11.95,11/14/19 17:26,"887 Pine St, Los Angeles, CA 90001" +287310,USB-C Charging Cable,1,11.95,11/14/19 17:26,"887 Pine St, Los Angeles, CA 90001" +287311,Wired Headphones,1,11.99,11/21/19 19:45,"98 Lincoln St, Boston, MA 02215" +287312,Wired Headphones,1,11.99,11/15/19 08:42,"927 Park St, Los Angeles, CA 90001" +287313,USB-C Charging Cable,1,11.95,11/20/19 12:00,"868 2nd St, San Francisco, CA 94016" +287314,AAA Batteries (4-pack),1,2.99,11/26/19 21:05,"20 5th St, San Francisco, CA 94016" +287315,USB-C Charging Cable,1,11.95,11/16/19 19:21,"552 South St, New York City, NY 10001" +287316,27in FHD Monitor,1,149.99,11/11/19 09:57,"566 North St, Los Angeles, CA 90001" +287317,Bose SoundSport Headphones,1,99.99,11/24/19 11:54,"908 Willow St, Los Angeles, CA 90001" +287318,iPhone,1,700,11/23/19 15:37,"119 Main St, Portland, ME 04101" +287319,Wired Headphones,1,11.99,11/21/19 23:43,"293 Chestnut St, San Francisco, CA 94016" +287320,AAA Batteries (4-pack),1,2.99,11/18/19 11:49,"726 4th St, San Francisco, CA 94016" +287321,AAA Batteries (4-pack),2,2.99,11/07/19 15:28,"100 Washington St, San Francisco, CA 94016" +287322,Apple Airpods Headphones,1,150,11/06/19 09:17,"894 Wilson St, Boston, MA 02215" +287323,27in 4K Gaming Monitor,1,389.99,11/30/19 12:07,"374 Walnut St, Boston, MA 02215" +287324,AAA Batteries (4-pack),1,2.99,11/06/19 13:22,"23 6th St, Dallas, TX 75001" +287325,USB-C Charging Cable,1,11.95,11/12/19 08:21,"284 8th St, San Francisco, CA 94016" +287326,Bose SoundSport Headphones,1,99.99,11/01/19 22:33,"454 2nd St, Seattle, WA 98101" +287327,AA Batteries (4-pack),1,3.84,11/20/19 11:18,"826 8th St, Boston, MA 02215" +287328,Lightning Charging Cable,1,14.95,11/08/19 19:11,"405 Washington St, San Francisco, CA 94016" +287329,Google Phone,1,600,11/21/19 20:54,"689 Lakeview St, San Francisco, CA 94016" +287329,Wired Headphones,1,11.99,11/21/19 20:54,"689 Lakeview St, San Francisco, CA 94016" +287330,27in 4K Gaming Monitor,1,389.99,11/13/19 20:08,"699 12th St, Austin, TX 73301" +287331,AAA Batteries (4-pack),1,2.99,11/25/19 16:27,"690 Meadow St, New York City, NY 10001" +287332,AAA Batteries (4-pack),1,2.99,11/18/19 09:48,"713 6th St, Atlanta, GA 30301" +287333,Bose SoundSport Headphones,1,99.99,11/19/19 18:59,"409 13th St, Dallas, TX 75001" +287334,Lightning Charging Cable,1,14.95,11/04/19 05:25,"655 Church St, San Francisco, CA 94016" +287335,AAA Batteries (4-pack),1,2.99,11/24/19 17:59,"395 8th St, New York City, NY 10001" +287336,34in Ultrawide Monitor,1,379.99,11/19/19 09:57,"36 Maple St, San Francisco, CA 94016" +287337,USB-C Charging Cable,1,11.95,11/16/19 09:09,"842 Center St, Portland, OR 97035" +287338,Lightning Charging Cable,1,14.95,11/04/19 13:01,"123 Sunset St, San Francisco, CA 94016" +287339,Apple Airpods Headphones,1,150,11/10/19 11:38,"811 4th St, New York City, NY 10001" +287340,27in FHD Monitor,1,149.99,11/26/19 07:25,"566 Highland St, New York City, NY 10001" +287341,Google Phone,1,600,11/21/19 19:42,"602 Lakeview St, Boston, MA 02215" +287342,Apple Airpods Headphones,1,150,11/15/19 20:19,"841 Sunset St, San Francisco, CA 94016" +287343,Bose SoundSport Headphones,1,99.99,11/25/19 14:44,"453 Adams St, San Francisco, CA 94016" +287344,Wired Headphones,1,11.99,11/18/19 16:46,"251 North St, New York City, NY 10001" +287345,Flatscreen TV,1,300,11/13/19 14:48,"101 13th St, Boston, MA 02215" +287346,USB-C Charging Cable,3,11.95,11/23/19 10:47,"878 Johnson St, Los Angeles, CA 90001" +287347,Apple Airpods Headphones,1,150,11/18/19 16:49,"71 Maple St, Dallas, TX 75001" +287347,Wired Headphones,1,11.99,11/18/19 16:49,"71 Maple St, Dallas, TX 75001" +287348,Wired Headphones,1,11.99,11/27/19 12:23,"159 Jackson St, New York City, NY 10001" +287349,Lightning Charging Cable,1,14.95,11/04/19 11:10,"81 Forest St, San Francisco, CA 94016" +287350,AAA Batteries (4-pack),1,2.99,11/19/19 20:17,"467 Jefferson St, Los Angeles, CA 90001" +287351,Apple Airpods Headphones,1,150,11/07/19 19:29,"274 5th St, New York City, NY 10001" +287352,AA Batteries (4-pack),1,3.84,11/06/19 21:58,"452 12th St, Boston, MA 02215" +287353,AA Batteries (4-pack),1,3.84,11/04/19 07:57,"116 Church St, Portland, ME 04101" +287354,Wired Headphones,1,11.99,11/14/19 23:56,"847 6th St, Seattle, WA 98101" +287355,Wired Headphones,1,11.99,11/29/19 11:54,"858 Jefferson St, Atlanta, GA 30301" +287356,Apple Airpods Headphones,1,150,11/25/19 22:32,"216 Johnson St, Seattle, WA 98101" +287357,USB-C Charging Cable,1,11.95,11/05/19 21:44,"351 Washington St, Los Angeles, CA 90001" +287358,USB-C Charging Cable,1,11.95,11/15/19 20:30,"680 6th St, Seattle, WA 98101" +287359,Google Phone,1,600,11/15/19 14:44,"302 6th St, San Francisco, CA 94016" +287359,USB-C Charging Cable,1,11.95,11/15/19 14:44,"302 6th St, San Francisco, CA 94016" +287360,Lightning Charging Cable,1,14.95,11/15/19 19:27,"197 Jackson St, Los Angeles, CA 90001" +287361,Bose SoundSport Headphones,1,99.99,11/29/19 11:33,"979 Pine St, Atlanta, GA 30301" +287362,Lightning Charging Cable,1,14.95,11/09/19 17:36,"981 Lincoln St, Boston, MA 02215" +287363,Google Phone,1,600,11/25/19 15:16,"202 Lakeview St, Boston, MA 02215" +287363,Wired Headphones,1,11.99,11/25/19 15:16,"202 Lakeview St, Boston, MA 02215" +287364,Lightning Charging Cable,1,14.95,11/16/19 14:55,"402 North St, San Francisco, CA 94016" +287365,Flatscreen TV,1,300,11/27/19 16:46,"901 North St, Los Angeles, CA 90001" +287366,27in 4K Gaming Monitor,1,389.99,11/22/19 12:44,"199 Meadow St, Austin, TX 73301" +287367,Google Phone,1,600,11/14/19 06:35,"415 Cherry St, Los Angeles, CA 90001" +287367,USB-C Charging Cable,1,11.95,11/14/19 06:35,"415 Cherry St, Los Angeles, CA 90001" +287368,AAA Batteries (4-pack),1,2.99,11/19/19 15:35,"29 Lincoln St, San Francisco, CA 94016" +287369,Wired Headphones,1,11.99,11/20/19 14:07,"284 Ridge St, Boston, MA 02215" +287370,Lightning Charging Cable,1,14.95,11/20/19 11:32,"485 Johnson St, Boston, MA 02215" +287371,AAA Batteries (4-pack),1,2.99,11/29/19 12:10,"651 Lincoln St, Los Angeles, CA 90001" +287372,Google Phone,1,600,11/23/19 19:49,"642 Lakeview St, Boston, MA 02215" +287373,USB-C Charging Cable,1,11.95,11/27/19 12:09,"71 10th St, New York City, NY 10001" +287374,Wired Headphones,1,11.99,11/29/19 23:40,"264 Chestnut St, Boston, MA 02215" +287375,27in 4K Gaming Monitor,1,389.99,11/27/19 18:53,"841 Center St, New York City, NY 10001" +287376,Lightning Charging Cable,1,14.95,11/12/19 16:11,"399 Hill St, Los Angeles, CA 90001" +287377,27in FHD Monitor,1,149.99,11/30/19 20:48,"737 Walnut St, San Francisco, CA 94016" +287378,Lightning Charging Cable,1,14.95,11/18/19 10:33,"18 8th St, San Francisco, CA 94016" +287379,27in 4K Gaming Monitor,1,389.99,11/23/19 22:30,"11 Willow St, Atlanta, GA 30301" +287380,ThinkPad Laptop,1,999.99,11/10/19 11:58,"314 West St, New York City, NY 10001" +287381,AA Batteries (4-pack),1,3.84,11/26/19 11:23,"520 12th St, San Francisco, CA 94016" +287382,AA Batteries (4-pack),2,3.84,11/25/19 14:16,"208 Main St, Boston, MA 02215" +287383,AAA Batteries (4-pack),1,2.99,11/04/19 14:01,"187 Pine St, San Francisco, CA 94016" +287384,Apple Airpods Headphones,1,150,11/12/19 22:23,"895 Meadow St, Los Angeles, CA 90001" +287385,USB-C Charging Cable,1,11.95,11/18/19 19:39,"943 1st St, Dallas, TX 75001" +287386,iPhone,1,700,11/11/19 20:03,"554 14th St, Boston, MA 02215" +287387,AAA Batteries (4-pack),2,2.99,11/10/19 15:40,"465 Lakeview St, San Francisco, CA 94016" +287388,AA Batteries (4-pack),2,3.84,11/22/19 17:53,"832 Walnut St, Portland, OR 97035" +287389,Apple Airpods Headphones,1,150,11/21/19 19:29,"255 Lakeview St, Los Angeles, CA 90001" +287390,AAA Batteries (4-pack),1,2.99,11/20/19 00:31,"722 6th St, Dallas, TX 75001" +287391,AA Batteries (4-pack),1,3.84,11/15/19 12:48,"767 Forest St, San Francisco, CA 94016" +287392,Wired Headphones,1,11.99,11/09/19 14:36,"343 Hill St, San Francisco, CA 94016" +287393,Lightning Charging Cable,1,14.95,11/22/19 21:58,"906 Elm St, Boston, MA 02215" +287394,34in Ultrawide Monitor,1,379.99,11/13/19 08:48,"593 Madison St, New York City, NY 10001" +287395,AAA Batteries (4-pack),2,2.99,11/16/19 04:12,"581 4th St, New York City, NY 10001" +287396,Apple Airpods Headphones,1,150,11/13/19 20:18,"29 5th St, San Francisco, CA 94016" +287397,AAA Batteries (4-pack),1,2.99,11/12/19 14:17,"112 Willow St, Dallas, TX 75001" +287398,AAA Batteries (4-pack),1,2.99,11/17/19 19:50,"279 Main St, San Francisco, CA 94016" +287399,USB-C Charging Cable,1,11.95,11/02/19 11:12,"57 14th St, San Francisco, CA 94016" +287400,iPhone,1,700,11/15/19 16:41,"688 5th St, San Francisco, CA 94016" +287401,34in Ultrawide Monitor,1,379.99,11/11/19 12:27,"551 14th St, Boston, MA 02215" +287402,Wired Headphones,1,11.99,11/09/19 18:40,"924 Maple St, San Francisco, CA 94016" +287403,Wired Headphones,1,11.99,11/12/19 15:23,"78 Sunset St, Atlanta, GA 30301" +287404,iPhone,1,700,11/04/19 15:30,"503 Cherry St, Los Angeles, CA 90001" +287405,27in 4K Gaming Monitor,1,389.99,11/19/19 19:03,"583 Maple St, Seattle, WA 98101" +287406,Bose SoundSport Headphones,1,99.99,11/30/19 09:44,"416 Jefferson St, Atlanta, GA 30301" +287407,Macbook Pro Laptop,1,1700,11/08/19 13:12,"295 Hickory St, San Francisco, CA 94016" +287408,Apple Airpods Headphones,1,150,11/05/19 12:49,"943 Park St, Los Angeles, CA 90001" +287409,AAA Batteries (4-pack),1,2.99,11/21/19 07:55,"572 7th St, San Francisco, CA 94016" +287410,USB-C Charging Cable,1,11.95,11/17/19 13:14,"170 Jackson St, Boston, MA 02215" +287411,Bose SoundSport Headphones,1,99.99,11/25/19 12:04,"851 Spruce St, San Francisco, CA 94016" +287412,Flatscreen TV,1,300,11/16/19 20:21,"399 14th St, Los Angeles, CA 90001" +287413,USB-C Charging Cable,2,11.95,11/19/19 18:54,"280 Cedar St, San Francisco, CA 94016" +287414,Bose SoundSport Headphones,1,99.99,11/06/19 16:33,"680 Jackson St, New York City, NY 10001" +287415,AAA Batteries (4-pack),1,2.99,11/07/19 13:52,"611 1st St, Portland, OR 97035" +287416,iPhone,1,700,11/11/19 17:40,"826 4th St, Austin, TX 73301" +287417,20in Monitor,1,109.99,11/22/19 17:32,"187 Elm St, New York City, NY 10001" +287418,Apple Airpods Headphones,1,150,11/28/19 08:55,"616 Lincoln St, San Francisco, CA 94016" +287419,27in FHD Monitor,1,149.99,11/25/19 20:39,"309 Hill St, Seattle, WA 98101" +287420,Lightning Charging Cable,1,14.95,11/04/19 23:55,"258 Spruce St, Austin, TX 73301" +287421,Vareebadd Phone,1,400,11/27/19 21:49,"175 Center St, Atlanta, GA 30301" +287422,AA Batteries (4-pack),1,3.84,11/09/19 15:31,"249 Lincoln St, Seattle, WA 98101" +287423,Wired Headphones,1,11.99,11/24/19 19:40,"868 Church St, Seattle, WA 98101" +287424,27in FHD Monitor,1,149.99,11/27/19 11:32,"906 6th St, Dallas, TX 75001" +287425,AAA Batteries (4-pack),5,2.99,11/01/19 07:40,"143 7th St, New York City, NY 10001" +287426,USB-C Charging Cable,1,11.95,11/26/19 21:20,"289 10th St, New York City, NY 10001" +287426,Bose SoundSport Headphones,1,99.99,11/26/19 21:20,"289 10th St, New York City, NY 10001" +287427,USB-C Charging Cable,2,11.95,11/24/19 11:33,"116 Cherry St, Seattle, WA 98101" +287428,AAA Batteries (4-pack),1,2.99,11/27/19 09:31,"306 Cherry St, Austin, TX 73301" +287429,Lightning Charging Cable,1,14.95,11/25/19 20:37,"355 8th St, Atlanta, GA 30301" +287430,Apple Airpods Headphones,1,150,11/09/19 12:12,"153 West St, New York City, NY 10001" +287431,USB-C Charging Cable,1,11.95,11/03/19 15:31,"448 Cedar St, New York City, NY 10001" +287432,20in Monitor,1,109.99,11/21/19 16:18,"178 Cedar St, Dallas, TX 75001" +287433,Flatscreen TV,1,300,11/07/19 23:01,"795 Cherry St, San Francisco, CA 94016" +287434,27in FHD Monitor,1,149.99,11/01/19 14:43,"651 Lincoln St, Seattle, WA 98101" +287435,Google Phone,1,600,11/05/19 22:54,"577 12th St, Los Angeles, CA 90001" +287436,USB-C Charging Cable,2,11.95,11/29/19 21:26,"345 9th St, Dallas, TX 75001" +287437,Apple Airpods Headphones,1,150,11/17/19 19:01,"495 Park St, San Francisco, CA 94016" +287438,iPhone,1,700,11/04/19 12:39,"608 Dogwood St, Boston, MA 02215" +287439,Lightning Charging Cable,1,14.95,11/23/19 16:23,"962 Willow St, Atlanta, GA 30301" +287440,Wired Headphones,1,11.99,11/06/19 14:44,"572 Main St, Austin, TX 73301" +287441,Flatscreen TV,1,300,11/16/19 13:41,"893 14th St, Dallas, TX 75001" +287442,Lightning Charging Cable,1,14.95,11/08/19 15:25,"589 River St, Seattle, WA 98101" +287443,USB-C Charging Cable,1,11.95,11/11/19 04:52,"40 Pine St, New York City, NY 10001" +287444,Bose SoundSport Headphones,1,99.99,11/10/19 17:51,"732 Lakeview St, Portland, ME 04101" +287445,Apple Airpods Headphones,1,150,11/08/19 11:07,"4 Cedar St, Dallas, TX 75001" +287446,AAA Batteries (4-pack),1,2.99,11/30/19 22:13,"198 Sunset St, Boston, MA 02215" +287447,iPhone,1,700,11/05/19 21:26,"195 Hill St, Portland, OR 97035" +287448,AAA Batteries (4-pack),1,2.99,11/14/19 22:06,"461 Main St, Austin, TX 73301" +287449,AA Batteries (4-pack),1,3.84,11/12/19 04:42,"463 2nd St, Portland, OR 97035" +287450,Lightning Charging Cable,1,14.95,11/19/19 15:49,"815 Forest St, New York City, NY 10001" +287451,Vareebadd Phone,1,400,11/11/19 11:03,"420 8th St, New York City, NY 10001" +287452,Wired Headphones,1,11.99,11/03/19 17:15,"856 Dogwood St, San Francisco, CA 94016" +287453,LG Washing Machine,1,600.0,11/02/19 14:22,"639 Hill St, New York City, NY 10001" +287454,Macbook Pro Laptop,1,1700,11/15/19 19:25,"239 Hickory St, Dallas, TX 75001" +287455,ThinkPad Laptop,1,999.99,11/25/19 16:54,"245 Elm St, San Francisco, CA 94016" +287456,Wired Headphones,1,11.99,11/08/19 10:01,"162 13th St, San Francisco, CA 94016" +287457,Wired Headphones,1,11.99,11/22/19 17:07,"484 Forest St, Atlanta, GA 30301" +287458,Bose SoundSport Headphones,1,99.99,11/10/19 12:02,"826 Lakeview St, Los Angeles, CA 90001" +287459,Wired Headphones,1,11.99,11/06/19 07:20,"254 6th St, Seattle, WA 98101" +287460,iPhone,1,700,11/21/19 16:38,"293 River St, San Francisco, CA 94016" +287461,AA Batteries (4-pack),1,3.84,11/02/19 11:30,"472 Meadow St, Los Angeles, CA 90001" +287462,Wired Headphones,1,11.99,11/23/19 16:13,"319 Wilson St, San Francisco, CA 94016" +287463,Wired Headphones,2,11.99,11/21/19 12:08,"581 12th St, Boston, MA 02215" +287464,iPhone,1,700,11/01/19 19:08,"82 2nd St, Atlanta, GA 30301" +287465,LG Washing Machine,1,600.0,11/15/19 03:14,"867 South St, Los Angeles, CA 90001" +287466,Lightning Charging Cable,1,14.95,11/05/19 19:27,"399 Meadow St, Dallas, TX 75001" +287467,Wired Headphones,1,11.99,11/18/19 16:06,"661 Jackson St, New York City, NY 10001" +287467,27in 4K Gaming Monitor,1,389.99,11/18/19 16:06,"661 Jackson St, New York City, NY 10001" +287468,Flatscreen TV,1,300,11/28/19 20:30,"292 Main St, New York City, NY 10001" +287469,Bose SoundSport Headphones,1,99.99,11/12/19 12:29,"206 1st St, Austin, TX 73301" +287470,AAA Batteries (4-pack),1,2.99,11/29/19 13:05,"655 River St, New York City, NY 10001" +287471,Bose SoundSport Headphones,1,99.99,11/29/19 17:26,"913 Madison St, Seattle, WA 98101" +287472,Lightning Charging Cable,1,14.95,11/28/19 11:27,"424 5th St, San Francisco, CA 94016" +287473,Bose SoundSport Headphones,1,99.99,11/09/19 18:48,"148 7th St, Austin, TX 73301" +287474,AA Batteries (4-pack),1,3.84,11/07/19 16:01,"676 6th St, Portland, ME 04101" +287475,Wired Headphones,1,11.99,11/11/19 13:40,"964 Elm St, Portland, ME 04101" +287476,Wired Headphones,2,11.99,11/22/19 20:29,"180 Hickory St, Dallas, TX 75001" +287477,AAA Batteries (4-pack),3,2.99,11/13/19 21:37,"814 Wilson St, San Francisco, CA 94016" +287478,Lightning Charging Cable,1,14.95,11/07/19 00:38,"621 Madison St, Los Angeles, CA 90001" +287479,iPhone,1,700,11/30/19 19:13,"938 Hickory St, Boston, MA 02215" +287480,Wired Headphones,3,11.99,11/06/19 14:06,"691 Lakeview St, Los Angeles, CA 90001" +287481,USB-C Charging Cable,1,11.95,11/08/19 17:52,"611 Pine St, Seattle, WA 98101" +287482,AAA Batteries (4-pack),2,2.99,11/06/19 00:57,"855 10th St, San Francisco, CA 94016" +287483,Lightning Charging Cable,1,14.95,11/14/19 17:50,"860 Highland St, San Francisco, CA 94016" +287484,34in Ultrawide Monitor,1,379.99,11/30/19 17:04,"237 10th St, Atlanta, GA 30301" +287485,Wired Headphones,1,11.99,11/24/19 06:11,"884 Main St, Atlanta, GA 30301" +287486,USB-C Charging Cable,1,11.95,11/22/19 21:27,"105 14th St, Seattle, WA 98101" +287487,Apple Airpods Headphones,1,150,11/13/19 12:08,"30 7th St, Austin, TX 73301" +287488,AAA Batteries (4-pack),3,2.99,11/30/19 10:32,"735 Ridge St, Seattle, WA 98101" +287489,Wired Headphones,1,11.99,11/14/19 09:14,"680 Madison St, New York City, NY 10001" +287490,Lightning Charging Cable,1,14.95,11/18/19 07:52,"787 Park St, Austin, TX 73301" +287491,AA Batteries (4-pack),1,3.84,11/13/19 19:33,"835 Wilson St, Atlanta, GA 30301" +287492,Wired Headphones,1,11.99,11/28/19 00:31,"762 Adams St, Atlanta, GA 30301" +287493,USB-C Charging Cable,1,11.95,11/30/19 09:53,"267 4th St, San Francisco, CA 94016" +287494,Macbook Pro Laptop,1,1700,11/25/19 23:38,"90 5th St, Portland, OR 97035" +287495,27in FHD Monitor,1,149.99,11/03/19 17:02,"840 Park St, Austin, TX 73301" +287496,Wired Headphones,1,11.99,11/17/19 11:56,"419 4th St, Boston, MA 02215" +287497,AA Batteries (4-pack),1,3.84,11/07/19 11:40,"288 Main St, Dallas, TX 75001" +287498,iPhone,1,700,11/01/19 17:22,"329 7th St, Dallas, TX 75001" +287498,Lightning Charging Cable,1,14.95,11/01/19 17:22,"329 7th St, Dallas, TX 75001" +287499,34in Ultrawide Monitor,1,379.99,11/28/19 20:50,"750 5th St, Boston, MA 02215" +287500,Lightning Charging Cable,1,14.95,11/19/19 19:29,"283 13th St, Portland, OR 97035" +287501,34in Ultrawide Monitor,1,379.99,11/25/19 09:36,"406 Cedar St, Los Angeles, CA 90001" +287502,USB-C Charging Cable,1,11.95,11/10/19 14:52,"764 Spruce St, San Francisco, CA 94016" +287503,34in Ultrawide Monitor,1,379.99,11/15/19 18:14,"806 South St, New York City, NY 10001" +287504,AA Batteries (4-pack),1,3.84,11/05/19 19:56,"631 6th St, San Francisco, CA 94016" +287505,Wired Headphones,1,11.99,11/30/19 15:16,"680 4th St, Seattle, WA 98101" +287506,Bose SoundSport Headphones,1,99.99,11/28/19 20:49,"604 5th St, San Francisco, CA 94016" +287507,AA Batteries (4-pack),2,3.84,11/16/19 20:13,"454 Willow St, New York City, NY 10001" +287508,AA Batteries (4-pack),1,3.84,11/03/19 16:43,"653 Cedar St, San Francisco, CA 94016" +287509,Macbook Pro Laptop,1,1700,11/24/19 17:21,"920 Meadow St, Atlanta, GA 30301" +287510,AA Batteries (4-pack),1,3.84,11/30/19 12:24,"692 Elm St, Los Angeles, CA 90001" +287511,AA Batteries (4-pack),1,3.84,11/25/19 23:38,"632 9th St, Los Angeles, CA 90001" +287512,20in Monitor,1,109.99,11/21/19 19:55,"723 Spruce St, Portland, OR 97035" +287513,AA Batteries (4-pack),1,3.84,11/06/19 12:24,"771 Cedar St, Boston, MA 02215" +287514,Lightning Charging Cable,1,14.95,11/10/19 22:51,"709 Church St, Austin, TX 73301" +287515,Macbook Pro Laptop,1,1700,11/03/19 22:17,"772 South St, San Francisco, CA 94016" +287516,Vareebadd Phone,1,400,11/28/19 18:34,"114 Main St, Boston, MA 02215" +287516,Bose SoundSport Headphones,1,99.99,11/28/19 18:34,"114 Main St, Boston, MA 02215" +287517,Wired Headphones,1,11.99,11/19/19 12:51,"119 Ridge St, Seattle, WA 98101" +287518,Google Phone,1,600,11/28/19 19:12,"497 13th St, San Francisco, CA 94016" +287519,AA Batteries (4-pack),1,3.84,11/18/19 13:08,"17 Madison St, Dallas, TX 75001" +287520,USB-C Charging Cable,1,11.95,11/16/19 22:11,"320 Chestnut St, Los Angeles, CA 90001" +287521,USB-C Charging Cable,1,11.95,11/28/19 12:00,"526 Cedar St, Boston, MA 02215" +287522,Macbook Pro Laptop,1,1700,11/26/19 22:36,"410 Lincoln St, New York City, NY 10001" +287523,Lightning Charging Cable,1,14.95,11/12/19 10:00,"104 Jefferson St, Dallas, TX 75001" +287524,Bose SoundSport Headphones,1,99.99,11/13/19 22:07,"751 2nd St, Portland, OR 97035" +287525,AAA Batteries (4-pack),2,2.99,11/05/19 09:28,"946 Walnut St, Los Angeles, CA 90001" +287526,Lightning Charging Cable,3,14.95,11/29/19 12:51,"978 Sunset St, Atlanta, GA 30301" +287527,Macbook Pro Laptop,1,1700,11/19/19 07:54,"461 9th St, Portland, ME 04101" +287528,USB-C Charging Cable,1,11.95,11/12/19 19:27,"313 Chestnut St, Atlanta, GA 30301" +287529,Bose SoundSport Headphones,1,99.99,11/15/19 12:31,"885 Ridge St, Seattle, WA 98101" +287530,AAA Batteries (4-pack),2,2.99,11/08/19 15:41,"653 2nd St, Los Angeles, CA 90001" +287531,iPhone,1,700,11/29/19 13:40,"358 Jefferson St, San Francisco, CA 94016" +287532,Apple Airpods Headphones,1,150,11/25/19 23:06,"288 Walnut St, New York City, NY 10001" +287533,AA Batteries (4-pack),2,3.84,11/27/19 12:22,"3 North St, New York City, NY 10001" +287534,Apple Airpods Headphones,1,150,11/10/19 14:21,"817 8th St, San Francisco, CA 94016" +287535,27in FHD Monitor,1,149.99,11/02/19 13:40,"310 Elm St, Portland, OR 97035" +287536,Wired Headphones,1,11.99,11/23/19 20:23,"83 Adams St, Los Angeles, CA 90001" +287537,Lightning Charging Cable,1,14.95,11/21/19 17:13,"739 6th St, San Francisco, CA 94016" +287538,Bose SoundSport Headphones,1,99.99,11/14/19 18:50,"249 South St, Los Angeles, CA 90001" +287539,AAA Batteries (4-pack),1,2.99,11/13/19 16:09,"565 Lincoln St, Los Angeles, CA 90001" +287540,AA Batteries (4-pack),1,3.84,11/28/19 07:54,"115 12th St, San Francisco, CA 94016" +287541,34in Ultrawide Monitor,1,379.99,11/22/19 11:16,"559 Ridge St, Portland, OR 97035" +287542,Apple Airpods Headphones,1,150,11/11/19 22:24,"967 Hill St, Los Angeles, CA 90001" +287543,iPhone,1,700,11/09/19 06:30,"559 11th St, Boston, MA 02215" +287544,Apple Airpods Headphones,1,150,11/26/19 13:12,"452 2nd St, Atlanta, GA 30301" +287545,Google Phone,1,600,11/14/19 11:45,"569 Maple St, Los Angeles, CA 90001" +287546,Lightning Charging Cable,1,14.95,11/09/19 23:30,"128 Elm St, San Francisco, CA 94016" +287547,USB-C Charging Cable,1,11.95,11/02/19 19:36,"869 Hickory St, Los Angeles, CA 90001" +287548,Wired Headphones,1,11.99,11/05/19 13:15,"651 Hickory St, Los Angeles, CA 90001" +287549,Lightning Charging Cable,1,14.95,11/07/19 22:47,"462 Maple St, Boston, MA 02215" +287550,Lightning Charging Cable,1,14.95,11/27/19 16:42,"943 1st St, Los Angeles, CA 90001" +287551,iPhone,1,700,11/09/19 10:13,"693 Park St, Atlanta, GA 30301" +287552,Lightning Charging Cable,1,14.95,11/17/19 20:03,"532 Chestnut St, Austin, TX 73301" +287553,LG Washing Machine,1,600.0,11/28/19 18:22,"200 5th St, New York City, NY 10001" +287554,Flatscreen TV,1,300,11/22/19 04:44,"862 Meadow St, Los Angeles, CA 90001" +287555,34in Ultrawide Monitor,1,379.99,11/08/19 12:27,"411 Hickory St, Portland, OR 97035" +287556,USB-C Charging Cable,1,11.95,11/14/19 23:25,"509 Jefferson St, Boston, MA 02215" +287557,Apple Airpods Headphones,1,150,11/20/19 09:16,"100 8th St, Dallas, TX 75001" +287558,USB-C Charging Cable,1,11.95,11/13/19 10:15,"34 Willow St, Seattle, WA 98101" +287559,Macbook Pro Laptop,1,1700,11/26/19 10:07,"911 Hickory St, San Francisco, CA 94016" +287560,iPhone,1,700,11/12/19 17:41,"318 South St, Seattle, WA 98101" +287561,AA Batteries (4-pack),2,3.84,11/29/19 14:56,"210 Lake St, New York City, NY 10001" +287562,AAA Batteries (4-pack),1,2.99,11/28/19 23:11,"192 Hill St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +287563,AAA Batteries (4-pack),2,2.99,11/09/19 15:25,"295 11th St, New York City, NY 10001" +287564,Macbook Pro Laptop,1,1700,11/13/19 21:22,"810 14th St, Portland, OR 97035" +287565,AA Batteries (4-pack),1,3.84,11/15/19 09:00,"755 2nd St, Portland, OR 97035" +287566,USB-C Charging Cable,1,11.95,11/10/19 11:11,"127 Dogwood St, Dallas, TX 75001" +287567,Lightning Charging Cable,1,14.95,11/13/19 21:11,"621 West St, San Francisco, CA 94016" +287568,Bose SoundSport Headphones,1,99.99,11/09/19 10:33,"987 River St, Portland, ME 04101" +287569,AA Batteries (4-pack),2,3.84,11/27/19 15:24,"937 Walnut St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +287570,Bose SoundSport Headphones,1,99.99,11/09/19 18:05,"523 Sunset St, Boston, MA 02215" +287571,USB-C Charging Cable,1,11.95,11/22/19 15:58,"819 6th St, New York City, NY 10001" +287572,USB-C Charging Cable,1,11.95,11/28/19 20:44,"492 Dogwood St, Los Angeles, CA 90001" +287573,27in FHD Monitor,1,149.99,11/29/19 06:57,"355 1st St, Austin, TX 73301" +287574,USB-C Charging Cable,1,11.95,11/04/19 10:32,"909 Lakeview St, Los Angeles, CA 90001" +287575,AAA Batteries (4-pack),2,2.99,11/07/19 11:38,"949 Cedar St, San Francisco, CA 94016" +287576,Macbook Pro Laptop,1,1700,11/21/19 20:49,"643 Adams St, Dallas, TX 75001" +287577,Bose SoundSport Headphones,1,99.99,11/02/19 16:06,"709 7th St, New York City, NY 10001" +287578,USB-C Charging Cable,1,11.95,11/25/19 15:48,"484 Cedar St, San Francisco, CA 94016" +287579,Bose SoundSport Headphones,2,99.99,11/24/19 18:31,"277 Lincoln St, San Francisco, CA 94016" +287580,20in Monitor,1,109.99,11/29/19 19:11,"287 Dogwood St, San Francisco, CA 94016" +287581,Wired Headphones,1,11.99,11/10/19 17:22,"841 Johnson St, New York City, NY 10001" +287582,Wired Headphones,2,11.99,11/07/19 15:36,"904 Madison St, Boston, MA 02215" +287583,34in Ultrawide Monitor,1,379.99,11/28/19 20:12,"397 Ridge St, Boston, MA 02215" +287584,AA Batteries (4-pack),1,3.84,11/10/19 08:55,"171 Lincoln St, Austin, TX 73301" +287585,Wired Headphones,1,11.99,11/26/19 16:55,"251 Lakeview St, San Francisco, CA 94016" +287586,AAA Batteries (4-pack),1,2.99,11/07/19 21:04,"757 Jackson St, Seattle, WA 98101" +287587,Apple Airpods Headphones,1,150,11/02/19 18:49,"559 Sunset St, Atlanta, GA 30301" +287588,ThinkPad Laptop,1,999.99,11/13/19 10:59,"2 Lincoln St, Los Angeles, CA 90001" +287589,27in 4K Gaming Monitor,1,389.99,11/09/19 00:01,"546 Wilson St, San Francisco, CA 94016" +287590,USB-C Charging Cable,1,11.95,11/16/19 10:46,"733 Johnson St, Portland, ME 04101" +287591,AAA Batteries (4-pack),2,2.99,11/13/19 08:12,"735 Chestnut St, Austin, TX 73301" +287592,AA Batteries (4-pack),1,3.84,11/07/19 16:34,"565 Sunset St, San Francisco, CA 94016" +287593,Flatscreen TV,1,300,11/06/19 18:45,"955 Center St, Boston, MA 02215" +287594,Vareebadd Phone,1,400,11/16/19 10:43,"540 11th St, San Francisco, CA 94016" +287595,AA Batteries (4-pack),1,3.84,11/03/19 09:17,"675 Hickory St, Dallas, TX 75001" +287596,iPhone,1,700,11/15/19 12:13,"144 8th St, Dallas, TX 75001" +287597,Lightning Charging Cable,1,14.95,11/27/19 12:12,"700 Cherry St, Dallas, TX 75001" +287598,Apple Airpods Headphones,1,150,11/29/19 21:16,"451 Park St, Dallas, TX 75001" +287599,Lightning Charging Cable,1,14.95,11/25/19 21:51,"905 10th St, Los Angeles, CA 90001" +287600,USB-C Charging Cable,1,11.95,11/10/19 11:21,"252 Meadow St, Seattle, WA 98101" +287601,AA Batteries (4-pack),1,3.84,11/26/19 19:40,"350 Highland St, Los Angeles, CA 90001" +287602,Bose SoundSport Headphones,1,99.99,11/21/19 21:53,"310 1st St, San Francisco, CA 94016" +287603,Wired Headphones,1,11.99,11/26/19 14:46,"465 4th St, San Francisco, CA 94016" +287604,Bose SoundSport Headphones,1,99.99,11/27/19 23:33,"617 Cherry St, Portland, OR 97035" +287605,Macbook Pro Laptop,1,1700,11/04/19 03:47,"232 Adams St, Portland, OR 97035" +287606,Flatscreen TV,1,300,11/13/19 14:14,"381 Jefferson St, San Francisco, CA 94016" +287607,Bose SoundSport Headphones,1,99.99,11/25/19 07:45,"78 13th St, Los Angeles, CA 90001" +287608,Bose SoundSport Headphones,1,99.99,11/16/19 21:25,"469 Elm St, San Francisco, CA 94016" +287609,Lightning Charging Cable,1,14.95,11/08/19 08:15,"37 River St, Boston, MA 02215" +287610,Wired Headphones,1,11.99,11/14/19 22:33,"119 4th St, New York City, NY 10001" +287611,Apple Airpods Headphones,1,150,11/24/19 16:38,"990 Park St, New York City, NY 10001" +287612,Lightning Charging Cable,1,14.95,11/11/19 22:49,"776 Jefferson St, New York City, NY 10001" +287613,34in Ultrawide Monitor,1,379.99,11/29/19 18:07,"579 Adams St, Los Angeles, CA 90001" +287614,Google Phone,1,600,11/01/19 05:58,"51 7th St, Portland, OR 97035" +287615,Apple Airpods Headphones,1,150,11/19/19 08:48,"172 Main St, Boston, MA 02215" +287616,AAA Batteries (4-pack),3,2.99,11/10/19 20:55,"700 12th St, San Francisco, CA 94016" +287617,Macbook Pro Laptop,1,1700,11/11/19 20:37,"497 8th St, Los Angeles, CA 90001" +287618,Bose SoundSport Headphones,1,99.99,11/08/19 21:20,"893 Walnut St, Boston, MA 02215" +287619,USB-C Charging Cable,1,11.95,11/07/19 06:32,"10 Hickory St, Seattle, WA 98101" +287620,Vareebadd Phone,1,400,11/02/19 12:28,"792 2nd St, San Francisco, CA 94016" +287620,USB-C Charging Cable,1,11.95,11/02/19 12:28,"792 2nd St, San Francisco, CA 94016" +287621,Lightning Charging Cable,1,14.95,11/30/19 20:32,"977 Sunset St, New York City, NY 10001" +287622,Wired Headphones,2,11.99,11/26/19 09:39,"926 Pine St, Boston, MA 02215" +287623,Flatscreen TV,1,300,11/16/19 12:13,"23 7th St, San Francisco, CA 94016" +287624,USB-C Charging Cable,1,11.95,11/03/19 16:10,"29 9th St, New York City, NY 10001" +287625,AA Batteries (4-pack),1,3.84,11/13/19 14:59,"846 13th St, Los Angeles, CA 90001" +287626,Apple Airpods Headphones,1,150,11/23/19 13:59,"531 9th St, Seattle, WA 98101" +287627,Lightning Charging Cable,1,14.95,11/05/19 11:15,"851 Ridge St, Los Angeles, CA 90001" +287628,USB-C Charging Cable,1,11.95,11/29/19 13:34,"537 Lakeview St, Dallas, TX 75001" +287629,USB-C Charging Cable,1,11.95,11/26/19 22:58,"401 Meadow St, San Francisco, CA 94016" +287630,27in FHD Monitor,1,149.99,11/20/19 00:47,"660 Spruce St, New York City, NY 10001" +287631,Apple Airpods Headphones,1,150,11/24/19 18:48,"857 Ridge St, Dallas, TX 75001" +287632,Wired Headphones,1,11.99,11/13/19 23:50,"865 Washington St, San Francisco, CA 94016" +287633,AA Batteries (4-pack),1,3.84,11/26/19 13:18,"791 Jefferson St, Los Angeles, CA 90001" +287634,Wired Headphones,1,11.99,11/29/19 22:08,"210 Lincoln St, Atlanta, GA 30301" +287635,Lightning Charging Cable,1,14.95,11/05/19 23:32,"815 Sunset St, New York City, NY 10001" +287636,Apple Airpods Headphones,1,150,11/15/19 09:03,"390 Adams St, Los Angeles, CA 90001" +287637,Wired Headphones,1,11.99,11/10/19 18:58,"628 West St, Los Angeles, CA 90001" +287638,Apple Airpods Headphones,1,150,11/06/19 09:18,"413 Church St, Seattle, WA 98101" +287639,AA Batteries (4-pack),1,3.84,11/02/19 12:56,"780 5th St, San Francisco, CA 94016" +287640,iPhone,1,700,11/04/19 10:42,"111 13th St, Los Angeles, CA 90001" +287640,Lightning Charging Cable,1,14.95,11/04/19 10:42,"111 13th St, Los Angeles, CA 90001" +287641,AAA Batteries (4-pack),1,2.99,11/11/19 17:24,"915 Jefferson St, Los Angeles, CA 90001" +287642,AA Batteries (4-pack),1,3.84,11/03/19 20:29,"382 Jackson St, Los Angeles, CA 90001" +287643,USB-C Charging Cable,1,11.95,11/05/19 11:16,"899 Willow St, Boston, MA 02215" +287644,Google Phone,1,600,11/10/19 12:52,"695 Church St, San Francisco, CA 94016" +287645,Apple Airpods Headphones,1,150,11/25/19 19:29,"155 12th St, New York City, NY 10001" +287646,AA Batteries (4-pack),1,3.84,11/25/19 22:21,"115 Hill St, San Francisco, CA 94016" +287647,AA Batteries (4-pack),1,3.84,11/03/19 10:08,"553 Chestnut St, New York City, NY 10001" +287648,AAA Batteries (4-pack),1,2.99,11/22/19 09:17,"919 Lincoln St, Atlanta, GA 30301" +287649,Bose SoundSport Headphones,1,99.99,11/30/19 22:18,"267 Meadow St, Boston, MA 02215" +287650,AA Batteries (4-pack),1,3.84,11/01/19 14:11,"855 1st St, San Francisco, CA 94016" +287651,Lightning Charging Cable,1,14.95,11/30/19 22:23,"445 10th St, Austin, TX 73301" +287652,USB-C Charging Cable,1,11.95,11/26/19 10:54,"66 West St, Austin, TX 73301" +287653,Wired Headphones,1,11.99,11/28/19 07:32,"155 Park St, New York City, NY 10001" +287654,Wired Headphones,1,11.99,11/19/19 17:52,"369 Dogwood St, New York City, NY 10001" +287655,Flatscreen TV,1,300,11/28/19 12:47,"905 Main St, San Francisco, CA 94016" +287655,Apple Airpods Headphones,1,150,11/28/19 12:47,"905 Main St, San Francisco, CA 94016" +287656,Apple Airpods Headphones,1,150,11/13/19 16:23,"449 12th St, Dallas, TX 75001" +287657,LG Washing Machine,1,600.0,11/29/19 20:49,"572 Maple St, New York City, NY 10001" +287658,AA Batteries (4-pack),1,3.84,11/01/19 13:05,"933 Wilson St, Atlanta, GA 30301" +287659,AA Batteries (4-pack),1,3.84,11/04/19 20:43,"648 Cherry St, New York City, NY 10001" +287660,Bose SoundSport Headphones,1,99.99,11/28/19 21:09,"124 Hickory St, Los Angeles, CA 90001" +287661,AAA Batteries (4-pack),1,2.99,11/03/19 15:19,"267 North St, Los Angeles, CA 90001" +287662,Bose SoundSport Headphones,1,99.99,11/01/19 17:07,"193 10th St, New York City, NY 10001" +287663,AAA Batteries (4-pack),1,2.99,11/09/19 12:09,"908 Lakeview St, New York City, NY 10001" +287664,Wired Headphones,1,11.99,11/12/19 11:37,"280 Willow St, San Francisco, CA 94016" +287665,Wired Headphones,1,11.99,11/14/19 12:24,"99 2nd St, Los Angeles, CA 90001" +287666,AAA Batteries (4-pack),3,2.99,11/21/19 11:49,"678 Willow St, Los Angeles, CA 90001" +287666,Apple Airpods Headphones,1,150,11/21/19 11:49,"678 Willow St, Los Angeles, CA 90001" +287667,ThinkPad Laptop,1,999.99,11/04/19 16:42,"482 West St, Los Angeles, CA 90001" +287668,AA Batteries (4-pack),1,3.84,11/27/19 12:58,"30 Maple St, San Francisco, CA 94016" +287669,Bose SoundSport Headphones,1,99.99,11/19/19 18:21,"651 1st St, San Francisco, CA 94016" +287670,Wired Headphones,1,11.99,11/29/19 12:45,"756 Wilson St, Dallas, TX 75001" +287671,USB-C Charging Cable,1,11.95,11/19/19 16:20,"439 9th St, Dallas, TX 75001" +287672,Vareebadd Phone,1,400,11/28/19 22:22,"868 6th St, Atlanta, GA 30301" +287673,AA Batteries (4-pack),1,3.84,11/06/19 10:23,"813 Hickory St, San Francisco, CA 94016" +287674,Bose SoundSport Headphones,1,99.99,11/03/19 08:45,"253 Hickory St, Los Angeles, CA 90001" +287675,AA Batteries (4-pack),1,3.84,11/16/19 09:49,"849 Cedar St, San Francisco, CA 94016" +287676,Lightning Charging Cable,1,14.95,11/25/19 13:35,"300 4th St, Los Angeles, CA 90001" +287677,34in Ultrawide Monitor,1,379.99,11/23/19 14:58,"570 9th St, Seattle, WA 98101" +287678,USB-C Charging Cable,1,11.95,11/23/19 08:33,"319 7th St, San Francisco, CA 94016" +287679,Lightning Charging Cable,1,14.95,11/04/19 21:10,"294 Forest St, New York City, NY 10001" +287680,27in FHD Monitor,1,149.99,11/16/19 13:58,"977 Walnut St, San Francisco, CA 94016" +287681,Apple Airpods Headphones,1,150,11/14/19 11:17,"921 North St, Seattle, WA 98101" +287682,AA Batteries (4-pack),1,3.84,11/02/19 13:07,"496 Walnut St, Seattle, WA 98101" +287683,Macbook Pro Laptop,1,1700,11/22/19 21:27,"616 Hickory St, San Francisco, CA 94016" +287684,Bose SoundSport Headphones,1,99.99,11/22/19 10:25,"589 Jackson St, Los Angeles, CA 90001" +287685,Lightning Charging Cable,1,14.95,11/04/19 15:09,"50 Chestnut St, New York City, NY 10001" +287686,20in Monitor,1,109.99,11/29/19 06:57,"15 South St, Los Angeles, CA 90001" +287687,USB-C Charging Cable,1,11.95,11/16/19 18:28,"740 Lincoln St, Boston, MA 02215" +287688,USB-C Charging Cable,1,11.95,11/28/19 19:58,"315 Cherry St, New York City, NY 10001" +287689,Wired Headphones,1,11.99,11/21/19 22:45,"20 Hill St, Los Angeles, CA 90001" +287690,AA Batteries (4-pack),1,3.84,11/19/19 02:03,"609 West St, Seattle, WA 98101" +287691,Lightning Charging Cable,1,14.95,11/09/19 09:27,"969 Dogwood St, Austin, TX 73301" +287692,27in FHD Monitor,1,149.99,11/22/19 10:33,"22 Ridge St, Los Angeles, CA 90001" +287693,34in Ultrawide Monitor,1,379.99,11/15/19 12:48,"600 Hill St, Atlanta, GA 30301" +287694,Macbook Pro Laptop,1,1700,11/01/19 17:27,"777 North St, Boston, MA 02215" +287695,Lightning Charging Cable,1,14.95,11/17/19 22:08,"399 Walnut St, New York City, NY 10001" +287696,ThinkPad Laptop,1,999.99,11/10/19 19:18,"51 Lake St, San Francisco, CA 94016" +287697,Wired Headphones,2,11.99,11/08/19 22:18,"173 Adams St, Portland, OR 97035" +287698,AAA Batteries (4-pack),1,2.99,11/16/19 19:41,"572 Park St, Portland, OR 97035" +287699,USB-C Charging Cable,1,11.95,11/25/19 00:01,"145 Johnson St, Dallas, TX 75001" +287700,iPhone,1,700,11/04/19 14:18,"706 Church St, New York City, NY 10001" +287701,AA Batteries (4-pack),1,3.84,11/14/19 12:15,"903 West St, Atlanta, GA 30301" +287702,Lightning Charging Cable,1,14.95,11/09/19 12:03,"634 6th St, Portland, OR 97035" +287703,27in FHD Monitor,1,149.99,11/27/19 20:22,"938 Willow St, Seattle, WA 98101" +287704,Wired Headphones,1,11.99,11/01/19 21:48,"408 6th St, Seattle, WA 98101" +287705,Bose SoundSport Headphones,1,99.99,11/19/19 19:41,"93 6th St, Portland, OR 97035" +287706,Lightning Charging Cable,1,14.95,11/08/19 09:24,"877 Lake St, Portland, OR 97035" +287707,USB-C Charging Cable,1,11.95,11/15/19 14:08,"858 6th St, Los Angeles, CA 90001" +287708,Lightning Charging Cable,1,14.95,11/02/19 16:30,"315 Lakeview St, Atlanta, GA 30301" +287709,Bose SoundSport Headphones,1,99.99,11/11/19 17:36,"275 4th St, New York City, NY 10001" +287710,34in Ultrawide Monitor,1,379.99,11/30/19 23:28,"102 Highland St, Dallas, TX 75001" +287711,USB-C Charging Cable,1,11.95,11/11/19 18:54,"907 Forest St, San Francisco, CA 94016" +287712,AAA Batteries (4-pack),2,2.99,11/14/19 12:58,"763 7th St, Los Angeles, CA 90001" +287713,AAA Batteries (4-pack),1,2.99,11/21/19 18:06,"289 Forest St, Atlanta, GA 30301" +287714,AAA Batteries (4-pack),1,2.99,11/22/19 20:15,"211 Wilson St, New York City, NY 10001" +287715,Apple Airpods Headphones,1,150,11/15/19 18:27,"971 Willow St, Boston, MA 02215" +287716,AAA Batteries (4-pack),3,2.99,11/24/19 21:31,"87 14th St, Austin, TX 73301" +287717,USB-C Charging Cable,1,11.95,11/16/19 19:13,"626 South St, San Francisco, CA 94016" +287718,USB-C Charging Cable,1,11.95,11/01/19 17:05,"244 Maple St, Los Angeles, CA 90001" +287719,AA Batteries (4-pack),1,3.84,11/01/19 21:23,"943 7th St, Seattle, WA 98101" +287720,AA Batteries (4-pack),1,3.84,11/30/19 01:02,"452 Ridge St, Seattle, WA 98101" +287721,Apple Airpods Headphones,1,150,11/12/19 12:40,"37 13th St, Atlanta, GA 30301" +287722,USB-C Charging Cable,1,11.95,11/01/19 10:47,"182 Adams St, New York City, NY 10001" +287723,Flatscreen TV,1,300,11/06/19 11:15,"60 Adams St, Los Angeles, CA 90001" +287724,AAA Batteries (4-pack),4,2.99,11/26/19 14:57,"149 Lincoln St, San Francisco, CA 94016" +287725,USB-C Charging Cable,1,11.95,11/17/19 19:27,"843 South St, San Francisco, CA 94016" +287726,27in FHD Monitor,1,149.99,11/29/19 12:36,"73 8th St, San Francisco, CA 94016" +287727,USB-C Charging Cable,1,11.95,11/01/19 09:11,"726 South St, Boston, MA 02215" +287728,Lightning Charging Cable,1,14.95,11/18/19 16:09,"451 Willow St, Atlanta, GA 30301" +287729,USB-C Charging Cable,2,11.95,11/16/19 14:44,"78 Cherry St, New York City, NY 10001" +287730,Bose SoundSport Headphones,1,99.99,11/24/19 21:36,"897 Wilson St, San Francisco, CA 94016" +287731,Lightning Charging Cable,1,14.95,11/28/19 20:24,"780 12th St, New York City, NY 10001" +287732,USB-C Charging Cable,1,11.95,11/18/19 20:44,"940 Highland St, Los Angeles, CA 90001" +287733,Wired Headphones,1,11.99,11/18/19 20:31,"373 2nd St, Boston, MA 02215" +287734,AAA Batteries (4-pack),1,2.99,11/06/19 22:15,"830 11th St, Boston, MA 02215" +287735,AAA Batteries (4-pack),2,2.99,11/20/19 21:03,"894 Lake St, Atlanta, GA 30301" +287736,Google Phone,1,600,11/13/19 16:59,"315 10th St, Austin, TX 73301" +287737,Lightning Charging Cable,1,14.95,11/26/19 13:06,"644 Jackson St, New York City, NY 10001" +287738,USB-C Charging Cable,1,11.95,11/15/19 21:42,"717 Jefferson St, New York City, NY 10001" +287739,AAA Batteries (4-pack),1,2.99,11/04/19 17:59,"912 7th St, Los Angeles, CA 90001" +287740,AA Batteries (4-pack),1,3.84,11/29/19 14:41,"798 North St, San Francisco, CA 94016" +287741,Lightning Charging Cable,1,14.95,11/08/19 11:58,"986 10th St, Portland, OR 97035" +287742,34in Ultrawide Monitor,1,379.99,11/01/19 19:28,"309 9th St, San Francisco, CA 94016" +287743,34in Ultrawide Monitor,1,379.99,11/10/19 22:50,"329 8th St, San Francisco, CA 94016" +287744,ThinkPad Laptop,1,999.99,11/09/19 13:25,"727 8th St, Dallas, TX 75001" +287745,USB-C Charging Cable,1,11.95,11/21/19 18:22,"734 2nd St, Dallas, TX 75001" +287746,iPhone,1,700,11/03/19 12:04,"626 Johnson St, New York City, NY 10001" +287747,Lightning Charging Cable,1,14.95,11/19/19 14:52,"310 Adams St, Dallas, TX 75001" +287748,AAA Batteries (4-pack),2,2.99,11/08/19 21:50,"289 Hill St, Portland, OR 97035" +287749,Lightning Charging Cable,1,14.95,11/09/19 13:38,"100 2nd St, San Francisco, CA 94016" +287750,Lightning Charging Cable,1,14.95,11/18/19 13:02,"734 Lakeview St, San Francisco, CA 94016" +287751,USB-C Charging Cable,1,11.95,11/22/19 17:07,"576 Walnut St, San Francisco, CA 94016" +287752,AA Batteries (4-pack),2,3.84,11/11/19 23:49,"731 Sunset St, Austin, TX 73301" +287753,AAA Batteries (4-pack),1,2.99,11/02/19 12:18,"853 Hickory St, Boston, MA 02215" +287754,Bose SoundSport Headphones,1,99.99,11/21/19 19:16,"225 6th St, Boston, MA 02215" +287755,Vareebadd Phone,1,400,11/12/19 10:20,"431 Church St, Atlanta, GA 30301" +287756,27in FHD Monitor,1,149.99,11/15/19 16:43,"902 Pine St, Seattle, WA 98101" +287757,Bose SoundSport Headphones,1,99.99,11/24/19 18:26,"95 Park St, Portland, OR 97035" +287758,AA Batteries (4-pack),1,3.84,11/01/19 23:54,"948 North St, Atlanta, GA 30301" +287759,USB-C Charging Cable,1,11.95,11/16/19 22:58,"939 13th St, Atlanta, GA 30301" +287759,AA Batteries (4-pack),1,3.84,11/16/19 22:58,"939 13th St, Atlanta, GA 30301" +287760,Bose SoundSport Headphones,1,99.99,11/11/19 13:41,"292 Wilson St, Boston, MA 02215" +287761,Lightning Charging Cable,1,14.95,11/07/19 10:38,"433 Jefferson St, New York City, NY 10001" +287762,LG Washing Machine,1,600.0,11/14/19 23:38,"924 Ridge St, San Francisco, CA 94016" +287763,AA Batteries (4-pack),2,3.84,11/19/19 12:41,"12 1st St, San Francisco, CA 94016" +287764,AAA Batteries (4-pack),3,2.99,11/26/19 21:07,"970 8th St, Portland, OR 97035" +287765,USB-C Charging Cable,1,11.95,11/02/19 21:25,"286 Church St, San Francisco, CA 94016" +287766,Apple Airpods Headphones,1,150,11/26/19 21:51,"874 Adams St, Seattle, WA 98101" +287767,Apple Airpods Headphones,1,150,11/30/19 14:02,"663 7th St, Boston, MA 02215" +287768,USB-C Charging Cable,1,11.95,11/04/19 00:33,"629 Spruce St, Los Angeles, CA 90001" +287769,Lightning Charging Cable,1,14.95,11/14/19 10:10,"691 Forest St, Los Angeles, CA 90001" +287770,USB-C Charging Cable,1,11.95,11/16/19 19:09,"258 Adams St, Atlanta, GA 30301" +287771,ThinkPad Laptop,1,999.99,11/20/19 23:10,"831 Sunset St, Boston, MA 02215" +287772,Macbook Pro Laptop,1,1700,11/17/19 22:15,"333 Park St, New York City, NY 10001" +287773,AAA Batteries (4-pack),1,2.99,11/03/19 08:35,"546 10th St, Boston, MA 02215" +287774,AA Batteries (4-pack),1,3.84,11/25/19 23:45,"174 Forest St, Atlanta, GA 30301" +287775,Wired Headphones,1,11.99,11/14/19 17:57,"482 Center St, Boston, MA 02215" +287776,USB-C Charging Cable,2,11.95,11/28/19 15:06,"920 9th St, San Francisco, CA 94016" +287777,AA Batteries (4-pack),1,3.84,11/04/19 22:19,"92 Pine St, Austin, TX 73301" +287778,USB-C Charging Cable,1,11.95,11/06/19 10:24,"922 9th St, San Francisco, CA 94016" +287779,20in Monitor,1,109.99,11/23/19 22:40,"177 Meadow St, Atlanta, GA 30301" +287780,AA Batteries (4-pack),1,3.84,11/16/19 20:00,"645 Cedar St, New York City, NY 10001" +287781,Wired Headphones,1,11.99,11/01/19 22:18,"336 Pine St, San Francisco, CA 94016" +287782,AAA Batteries (4-pack),1,2.99,11/07/19 12:31,"562 7th St, Dallas, TX 75001" +287783,Apple Airpods Headphones,1,150,11/18/19 13:12,"288 9th St, Austin, TX 73301" +287784,Apple Airpods Headphones,1,150,11/12/19 12:03,"553 8th St, Los Angeles, CA 90001" +287785,27in FHD Monitor,1,149.99,11/26/19 19:43,"896 Adams St, San Francisco, CA 94016" +287786,Wired Headphones,1,11.99,11/07/19 15:12,"967 Pine St, New York City, NY 10001" +287787,Macbook Pro Laptop,1,1700,11/16/19 11:18,"271 Spruce St, San Francisco, CA 94016" +287788,Google Phone,1,600,11/02/19 16:44,"96 4th St, Los Angeles, CA 90001" +287789,Bose SoundSport Headphones,1,99.99,11/25/19 20:19,"942 Elm St, Seattle, WA 98101" +287790,USB-C Charging Cable,1,11.95,11/09/19 19:17,"1 13th St, San Francisco, CA 94016" +287791,Google Phone,1,600,11/26/19 11:20,"829 Lakeview St, New York City, NY 10001" +287791,USB-C Charging Cable,1,11.95,11/26/19 11:20,"829 Lakeview St, New York City, NY 10001" +287792,Wired Headphones,1,11.99,11/11/19 23:56,"179 Spruce St, Portland, OR 97035" +287793,Apple Airpods Headphones,1,150,11/05/19 15:23,"282 Dogwood St, San Francisco, CA 94016" +287794,27in FHD Monitor,1,149.99,11/15/19 05:51,"546 Madison St, San Francisco, CA 94016" +287795,USB-C Charging Cable,1,11.95,11/09/19 20:51,"531 Highland St, Boston, MA 02215" +287796,USB-C Charging Cable,1,11.95,11/12/19 08:08,"629 7th St, Los Angeles, CA 90001" +287797,Wired Headphones,1,11.99,11/09/19 12:32,"500 Maple St, Los Angeles, CA 90001" +287798,Wired Headphones,1,11.99,11/10/19 22:08,"313 Spruce St, Austin, TX 73301" +287799,AA Batteries (4-pack),1,3.84,11/15/19 17:35,"300 9th St, Dallas, TX 75001" +287800,Wired Headphones,1,11.99,11/19/19 00:40,"439 Washington St, San Francisco, CA 94016" +287801,LG Washing Machine,1,600.0,11/21/19 20:29,"701 Jackson St, San Francisco, CA 94016" +287802,Lightning Charging Cable,1,14.95,11/04/19 20:56,"280 10th St, San Francisco, CA 94016" +287803,AA Batteries (4-pack),3,3.84,11/09/19 16:23,"303 Walnut St, San Francisco, CA 94016" +287804,AAA Batteries (4-pack),2,2.99,11/25/19 22:08,"468 12th St, New York City, NY 10001" +287805,27in 4K Gaming Monitor,1,389.99,11/15/19 18:39,"342 Madison St, New York City, NY 10001" +287806,USB-C Charging Cable,1,11.95,11/06/19 18:58,"43 9th St, Atlanta, GA 30301" +287807,USB-C Charging Cable,1,11.95,11/01/19 21:43,"790 Park St, San Francisco, CA 94016" +287808,34in Ultrawide Monitor,1,379.99,11/07/19 12:31,"782 9th St, Portland, OR 97035" +287809,Lightning Charging Cable,1,14.95,11/03/19 09:34,"966 Cedar St, Atlanta, GA 30301" +287810,AA Batteries (4-pack),1,3.84,11/24/19 22:03,"558 14th St, Dallas, TX 75001" +287811,AA Batteries (4-pack),1,3.84,11/18/19 17:04,"332 6th St, San Francisco, CA 94016" +287812,AAA Batteries (4-pack),1,2.99,11/11/19 12:08,"632 6th St, San Francisco, CA 94016" +287813,AAA Batteries (4-pack),2,2.99,11/29/19 09:55,"736 Dogwood St, San Francisco, CA 94016" +287814,Wired Headphones,1,11.99,11/04/19 06:22,"374 North St, Atlanta, GA 30301" +287815,AAA Batteries (4-pack),2,2.99,11/12/19 22:37,"986 1st St, New York City, NY 10001" +287816,ThinkPad Laptop,1,999.99,11/25/19 11:50,"123 Lake St, San Francisco, CA 94016" +287817,iPhone,1,700,11/24/19 08:27,"74 Forest St, Dallas, TX 75001" +287818,AA Batteries (4-pack),1,3.84,11/06/19 20:18,"684 Lakeview St, Boston, MA 02215" +287819,USB-C Charging Cable,1,11.95,11/02/19 16:16,"405 Jefferson St, Austin, TX 73301" +287820,USB-C Charging Cable,1,11.95,11/22/19 13:38,"747 Meadow St, Los Angeles, CA 90001" +287821,AAA Batteries (4-pack),1,2.99,11/29/19 18:05,"156 2nd St, San Francisco, CA 94016" +287822,Google Phone,1,600,11/23/19 10:38,"569 Church St, Boston, MA 02215" +287823,Lightning Charging Cable,2,14.95,11/01/19 07:00,"6 Sunset St, Austin, TX 73301" +287824,Wired Headphones,1,11.99,11/21/19 13:12,"68 South St, Boston, MA 02215" +287825,Apple Airpods Headphones,1,150,11/15/19 14:09,"370 Main St, Boston, MA 02215" +287826,Lightning Charging Cable,1,14.95,11/09/19 20:01,"57 Hickory St, San Francisco, CA 94016" +287827,USB-C Charging Cable,1,11.95,11/26/19 19:03,"235 11th St, Portland, OR 97035" +287828,Wired Headphones,1,11.99,11/08/19 13:18,"522 1st St, New York City, NY 10001" +287829,AA Batteries (4-pack),1,3.84,11/14/19 21:28,"683 Forest St, San Francisco, CA 94016" +287830,LG Washing Machine,1,600.0,11/30/19 18:11,"224 River St, New York City, NY 10001" +287831,AAA Batteries (4-pack),1,2.99,11/16/19 11:16,"205 Lake St, Atlanta, GA 30301" +287832,Vareebadd Phone,1,400,11/26/19 19:30,"156 North St, New York City, NY 10001" +287833,27in 4K Gaming Monitor,1,389.99,11/13/19 16:59,"147 Walnut St, Seattle, WA 98101" +287834,Lightning Charging Cable,1,14.95,11/10/19 09:17,"87 Lake St, Dallas, TX 75001" +287835,27in FHD Monitor,1,149.99,11/09/19 11:18,"78 South St, Dallas, TX 75001" +287836,Wired Headphones,1,11.99,11/07/19 20:19,"313 Spruce St, Boston, MA 02215" +287837,Google Phone,1,600,11/16/19 17:27,"103 Cherry St, Los Angeles, CA 90001" +287838,Lightning Charging Cable,2,14.95,11/05/19 21:42,"180 Elm St, San Francisco, CA 94016" +287839,Bose SoundSport Headphones,1,99.99,11/03/19 13:45,"684 Park St, Austin, TX 73301" +287840,AAA Batteries (4-pack),1,2.99,11/18/19 20:30,"103 Adams St, Boston, MA 02215" +287841,ThinkPad Laptop,1,999.99,11/01/19 20:29,"358 Adams St, New York City, NY 10001" +287842,USB-C Charging Cable,1,11.95,11/07/19 13:52,"15 11th St, Atlanta, GA 30301" +287843,20in Monitor,1,109.99,11/12/19 15:04,"993 Meadow St, Austin, TX 73301" +287844,Wired Headphones,1,11.99,11/29/19 14:57,"386 North St, Dallas, TX 75001" +287845,USB-C Charging Cable,1,11.95,11/09/19 12:39,"913 Highland St, Portland, ME 04101" +287846,ThinkPad Laptop,1,999.99,11/12/19 20:18,"817 Forest St, New York City, NY 10001" +287847,AAA Batteries (4-pack),1,2.99,11/24/19 23:35,"618 Cedar St, San Francisco, CA 94016" +287848,Macbook Pro Laptop,1,1700,11/17/19 21:49,"525 South St, Atlanta, GA 30301" +287849,27in FHD Monitor,1,149.99,11/05/19 12:55,"253 10th St, New York City, NY 10001" +287850,27in 4K Gaming Monitor,1,389.99,11/12/19 21:39,"543 13th St, Los Angeles, CA 90001" +287851,USB-C Charging Cable,1,11.95,11/14/19 15:28,"126 West St, San Francisco, CA 94016" +287852,USB-C Charging Cable,1,11.95,11/15/19 02:15,"179 Elm St, San Francisco, CA 94016" +287853,Wired Headphones,1,11.99,11/29/19 13:09,"782 11th St, San Francisco, CA 94016" +287854,USB-C Charging Cable,1,11.95,11/21/19 21:50,"520 7th St, San Francisco, CA 94016" +287855,AA Batteries (4-pack),1,3.84,11/14/19 10:49,"781 Jackson St, San Francisco, CA 94016" +287856,Wired Headphones,2,11.99,11/09/19 13:48,"826 Hickory St, New York City, NY 10001" +287857,AA Batteries (4-pack),1,3.84,11/23/19 12:05,"275 Adams St, Boston, MA 02215" +287858,27in 4K Gaming Monitor,1,389.99,11/24/19 08:45,"238 10th St, San Francisco, CA 94016" +287859,iPhone,1,700,11/04/19 11:21,"773 Cedar St, San Francisco, CA 94016" +287859,Wired Headphones,1,11.99,11/04/19 11:21,"773 Cedar St, San Francisco, CA 94016" +287860,Apple Airpods Headphones,1,150,11/19/19 09:58,"751 Maple St, Boston, MA 02215" +287861,Apple Airpods Headphones,1,150,11/04/19 12:08,"283 9th St, Portland, OR 97035" +287862,34in Ultrawide Monitor,1,379.99,11/08/19 21:57,"434 Church St, Austin, TX 73301" +287863,AA Batteries (4-pack),2,3.84,11/19/19 15:03,"731 Church St, Los Angeles, CA 90001" +287864,Wired Headphones,1,11.99,11/02/19 13:07,"354 Main St, Atlanta, GA 30301" +287865,AA Batteries (4-pack),2,3.84,11/24/19 15:12,"799 Forest St, Seattle, WA 98101" +287866,Lightning Charging Cable,1,14.95,11/05/19 13:09,"17 Center St, Dallas, TX 75001" +287867,Bose SoundSport Headphones,1,99.99,11/29/19 12:30,"870 Washington St, Portland, OR 97035" +287868,AA Batteries (4-pack),1,3.84,11/05/19 14:32,"965 Lakeview St, Dallas, TX 75001" +287869,AA Batteries (4-pack),3,3.84,11/08/19 19:25,"828 5th St, Atlanta, GA 30301" +287870,Lightning Charging Cable,1,14.95,11/29/19 10:37,"899 4th St, San Francisco, CA 94016" +287871,Macbook Pro Laptop,1,1700,11/21/19 03:28,"361 Hill St, New York City, NY 10001" +287872,iPhone,1,700,11/01/19 16:14,"970 5th St, Portland, ME 04101" +287873,USB-C Charging Cable,1,11.95,11/06/19 19:25,"125 14th St, Dallas, TX 75001" +287874,34in Ultrawide Monitor,1,379.99,11/14/19 14:33,"929 Chestnut St, Atlanta, GA 30301" +287875,USB-C Charging Cable,1,11.95,11/17/19 11:39,"236 Highland St, Atlanta, GA 30301" +287876,Wired Headphones,1,11.99,11/26/19 10:57,"923 9th St, San Francisco, CA 94016" +287877,USB-C Charging Cable,1,11.95,11/13/19 17:06,"828 Meadow St, San Francisco, CA 94016" +287878,Lightning Charging Cable,1,14.95,11/16/19 17:51,"383 Hickory St, Los Angeles, CA 90001" +287878,Lightning Charging Cable,1,14.95,11/16/19 17:51,"383 Hickory St, Los Angeles, CA 90001" +287879,Lightning Charging Cable,1,14.95,11/01/19 09:26,"94 7th St, San Francisco, CA 94016" +287880,Lightning Charging Cable,1,14.95,11/28/19 11:43,"646 Johnson St, Atlanta, GA 30301" +287881,Macbook Pro Laptop,1,1700,11/08/19 13:36,"748 Johnson St, Austin, TX 73301" +287882,AA Batteries (4-pack),1,3.84,11/03/19 20:55,"947 Washington St, New York City, NY 10001" +287883,AAA Batteries (4-pack),3,2.99,11/08/19 23:31,"477 Cedar St, Los Angeles, CA 90001" +287884,20in Monitor,1,109.99,11/05/19 07:59,"140 South St, San Francisco, CA 94016" +287885,AAA Batteries (4-pack),2,2.99,11/30/19 11:54,"376 North St, San Francisco, CA 94016" +287886,Macbook Pro Laptop,1,1700,11/11/19 18:50,"564 Lake St, San Francisco, CA 94016" +287887,Lightning Charging Cable,1,14.95,11/10/19 10:03,"200 8th St, Dallas, TX 75001" +287888,Google Phone,1,600,11/11/19 10:48,"802 Meadow St, New York City, NY 10001" +287889,34in Ultrawide Monitor,1,379.99,11/25/19 14:44,"388 Hill St, San Francisco, CA 94016" +287890,ThinkPad Laptop,1,999.99,11/22/19 17:23,"437 Johnson St, Dallas, TX 75001" +287891,Lightning Charging Cable,1,14.95,11/21/19 19:28,"144 Lake St, Boston, MA 02215" +287892,27in 4K Gaming Monitor,1,389.99,11/02/19 18:01,"296 Pine St, New York City, NY 10001" +287893,AAA Batteries (4-pack),1,2.99,11/04/19 20:15,"463 12th St, San Francisco, CA 94016" +287894,27in 4K Gaming Monitor,1,389.99,11/21/19 23:49,"718 Chestnut St, Los Angeles, CA 90001" +287895,Apple Airpods Headphones,1,150,11/20/19 11:09,"656 10th St, Boston, MA 02215" +287896,Wired Headphones,1,11.99,11/22/19 20:24,"907 Hill St, Dallas, TX 75001" +287897,Flatscreen TV,1,300,11/04/19 17:16,"517 6th St, San Francisco, CA 94016" +287898,Bose SoundSport Headphones,1,99.99,11/17/19 21:36,"424 Park St, San Francisco, CA 94016" +287899,AAA Batteries (4-pack),2,2.99,11/16/19 16:27,"678 Ridge St, San Francisco, CA 94016" +287900,Bose SoundSport Headphones,1,99.99,11/11/19 10:52,"87 12th St, Austin, TX 73301" +287901,AA Batteries (4-pack),2,3.84,11/22/19 12:01,"258 11th St, New York City, NY 10001" +287902,Wired Headphones,1,11.99,11/29/19 10:51,"233 West St, Dallas, TX 75001" +287903,Bose SoundSport Headphones,1,99.99,11/17/19 15:29,"326 Adams St, Los Angeles, CA 90001" +287904,AA Batteries (4-pack),1,3.84,11/05/19 21:00,"621 Maple St, Seattle, WA 98101" +287905,Lightning Charging Cable,1,14.95,11/05/19 18:35,"893 9th St, Boston, MA 02215" +287906,USB-C Charging Cable,1,11.95,11/22/19 20:39,"663 South St, New York City, NY 10001" +287907,Wired Headphones,1,11.99,11/26/19 12:19,"661 1st St, Los Angeles, CA 90001" +287908,AA Batteries (4-pack),1,3.84,11/28/19 13:23,"723 South St, San Francisco, CA 94016" +287909,AAA Batteries (4-pack),1,2.99,11/04/19 14:08,"283 South St, San Francisco, CA 94016" +287910,USB-C Charging Cable,1,11.95,11/20/19 13:43,"261 13th St, Dallas, TX 75001" +287911,27in FHD Monitor,1,149.99,12/01/19 00:43,"499 14th St, New York City, NY 10001" +287912,AAA Batteries (4-pack),2,2.99,11/24/19 18:47,"738 5th St, San Francisco, CA 94016" +287913,USB-C Charging Cable,1,11.95,11/19/19 09:30,"358 Walnut St, San Francisco, CA 94016" +287914,Apple Airpods Headphones,1,150,11/03/19 14:07,"59 Lakeview St, Seattle, WA 98101" +287915,AA Batteries (4-pack),1,3.84,11/03/19 15:12,"738 Pine St, San Francisco, CA 94016" +287916,iPhone,1,700,11/07/19 08:58,"180 Park St, Boston, MA 02215" +287917,Lightning Charging Cable,1,14.95,11/08/19 09:33,"860 Spruce St, San Francisco, CA 94016" +287918,27in 4K Gaming Monitor,1,389.99,11/28/19 14:24,"573 11th St, Portland, OR 97035" +287919,34in Ultrawide Monitor,1,379.99,11/17/19 16:14,"814 Jefferson St, Austin, TX 73301" +287920,USB-C Charging Cable,1,11.95,11/21/19 10:37,"574 Lakeview St, Atlanta, GA 30301" +287921,Bose SoundSport Headphones,1,99.99,11/21/19 10:27,"539 4th St, Seattle, WA 98101" +287922,Apple Airpods Headphones,1,150,11/24/19 13:34,"943 9th St, New York City, NY 10001" +287923,AA Batteries (4-pack),1,3.84,11/26/19 13:44,"83 Cedar St, Boston, MA 02215" +287924,Macbook Pro Laptop,1,1700,11/30/19 14:30,"606 10th St, Boston, MA 02215" +287925,AAA Batteries (4-pack),1,2.99,11/09/19 14:02,"128 Cedar St, Austin, TX 73301" +287926,AAA Batteries (4-pack),1,2.99,11/04/19 19:42,"638 Jackson St, Atlanta, GA 30301" +287927,USB-C Charging Cable,1,11.95,11/14/19 21:35,"310 Spruce St, Atlanta, GA 30301" +287928,AA Batteries (4-pack),1,3.84,11/12/19 12:09,"484 Adams St, Dallas, TX 75001" +287929,Wired Headphones,1,11.99,11/18/19 11:34,"942 Lincoln St, Austin, TX 73301" +287930,AA Batteries (4-pack),1,3.84,11/01/19 10:19,"65 Willow St, Seattle, WA 98101" +287931,27in FHD Monitor,1,149.99,11/28/19 16:13,"708 River St, Atlanta, GA 30301" +287932,Macbook Pro Laptop,1,1700,11/23/19 14:53,"60 Lincoln St, New York City, NY 10001" +287933,Lightning Charging Cable,1,14.95,11/24/19 09:40,"73 4th St, Atlanta, GA 30301" +287934,LG Dryer,1,600.0,11/26/19 18:59,"204 Sunset St, Seattle, WA 98101" +287935,Apple Airpods Headphones,1,150,11/02/19 14:47,"721 Center St, Seattle, WA 98101" +287936,ThinkPad Laptop,1,999.99,11/02/19 02:14,"481 12th St, Seattle, WA 98101" +287937,Lightning Charging Cable,1,14.95,11/13/19 21:22,"656 6th St, San Francisco, CA 94016" +287938,iPhone,1,700,11/24/19 00:17,"769 Pine St, Dallas, TX 75001" +287938,Apple Airpods Headphones,1,150,11/24/19 00:17,"769 Pine St, Dallas, TX 75001" +287938,Wired Headphones,1,11.99,11/24/19 00:17,"769 Pine St, Dallas, TX 75001" +287939,AAA Batteries (4-pack),2,2.99,11/01/19 17:38,"227 Madison St, Los Angeles, CA 90001" +287940,AA Batteries (4-pack),1,3.84,11/12/19 01:42,"932 12th St, Seattle, WA 98101" +287941,Lightning Charging Cable,1,14.95,11/20/19 19:56,"610 1st St, Dallas, TX 75001" +287942,Bose SoundSport Headphones,1,99.99,11/15/19 16:59,"744 Elm St, Austin, TX 73301" +287943,AA Batteries (4-pack),2,3.84,11/12/19 11:12,"320 2nd St, San Francisco, CA 94016" +287944,Lightning Charging Cable,1,14.95,11/09/19 12:39,"389 2nd St, Austin, TX 73301" +287945,20in Monitor,1,109.99,11/22/19 14:29,"861 Church St, San Francisco, CA 94016" +287946,iPhone,1,700,11/05/19 22:31,"712 Washington St, Dallas, TX 75001" +287947,27in FHD Monitor,1,149.99,11/08/19 21:24,"480 Main St, San Francisco, CA 94016" +287948,AA Batteries (4-pack),1,3.84,11/15/19 21:47,"542 Jefferson St, New York City, NY 10001" +287949,Flatscreen TV,1,300,11/26/19 16:19,"180 Main St, Boston, MA 02215" +287949,Lightning Charging Cable,1,14.95,11/26/19 16:19,"180 Main St, Boston, MA 02215" +287950,AAA Batteries (4-pack),2,2.99,11/24/19 12:53,"996 Center St, San Francisco, CA 94016" +287951,AA Batteries (4-pack),2,3.84,11/06/19 09:38,"634 Spruce St, Seattle, WA 98101" +287952,AA Batteries (4-pack),2,3.84,11/03/19 19:51,"965 Jefferson St, Los Angeles, CA 90001" +287953,iPhone,1,700,11/10/19 16:52,"951 Sunset St, Austin, TX 73301" +287954,Wired Headphones,1,11.99,11/22/19 00:01,"945 Pine St, San Francisco, CA 94016" +287955,AAA Batteries (4-pack),1,2.99,11/22/19 09:03,"908 West St, Los Angeles, CA 90001" +287956,USB-C Charging Cable,1,11.95,11/04/19 23:39,"168 Jackson St, San Francisco, CA 94016" +287957,27in FHD Monitor,1,149.99,11/29/19 22:09,"878 Lincoln St, San Francisco, CA 94016" +287958,AAA Batteries (4-pack),2,2.99,11/02/19 19:31,"346 Elm St, New York City, NY 10001" +287959,AAA Batteries (4-pack),1,2.99,11/18/19 12:24,"622 Hickory St, New York City, NY 10001" +287960,USB-C Charging Cable,1,11.95,11/06/19 19:30,"928 Chestnut St, San Francisco, CA 94016" +287961,Apple Airpods Headphones,1,150,11/19/19 12:19,"449 Ridge St, Boston, MA 02215" +287962,Wired Headphones,1,11.99,11/26/19 18:34,"890 4th St, Los Angeles, CA 90001" +287963,Bose SoundSport Headphones,1,99.99,11/19/19 14:06,"143 Lakeview St, San Francisco, CA 94016" +287964,Flatscreen TV,1,300,11/15/19 14:59,"703 Main St, San Francisco, CA 94016" +287965,AAA Batteries (4-pack),1,2.99,11/29/19 12:08,"371 West St, San Francisco, CA 94016" +287966,AA Batteries (4-pack),3,3.84,11/12/19 20:58,"518 Dogwood St, Portland, OR 97035" +287967,Macbook Pro Laptop,1,1700,11/16/19 08:49,"277 West St, Austin, TX 73301" +287968,27in 4K Gaming Monitor,1,389.99,11/10/19 18:39,"149 Center St, Los Angeles, CA 90001" +287969,Vareebadd Phone,1,400,11/09/19 16:25,"189 Center St, New York City, NY 10001" +287970,AAA Batteries (4-pack),1,2.99,11/10/19 07:21,"530 Sunset St, Los Angeles, CA 90001" +287971,Wired Headphones,1,11.99,11/15/19 12:36,"163 Dogwood St, New York City, NY 10001" +287972,ThinkPad Laptop,1,999.99,11/21/19 17:38,"800 River St, Seattle, WA 98101" +287973,Wired Headphones,1,11.99,11/26/19 11:43,"331 13th St, Dallas, TX 75001" +287974,34in Ultrawide Monitor,1,379.99,11/05/19 11:49,"737 8th St, San Francisco, CA 94016" +287975,27in FHD Monitor,1,149.99,11/11/19 20:16,"318 West St, Boston, MA 02215" +287976,Bose SoundSport Headphones,1,99.99,11/14/19 21:30,"948 Johnson St, Boston, MA 02215" +287977,Bose SoundSport Headphones,1,99.99,11/16/19 19:47,"172 Jackson St, Portland, OR 97035" +287978,iPhone,1,700,11/05/19 13:56,"989 Park St, Dallas, TX 75001" +287978,Lightning Charging Cable,1,14.95,11/05/19 13:56,"989 Park St, Dallas, TX 75001" +287979,AAA Batteries (4-pack),1,2.99,11/27/19 19:35,"759 Park St, New York City, NY 10001" +287980,27in 4K Gaming Monitor,1,389.99,11/12/19 21:10,"576 Washington St, Austin, TX 73301" +287981,USB-C Charging Cable,1,11.95,11/26/19 17:09,"359 Adams St, Atlanta, GA 30301" +287982,Google Phone,1,600,11/17/19 08:18,"381 Center St, San Francisco, CA 94016" +287983,AA Batteries (4-pack),2,3.84,11/11/19 20:29,"422 Dogwood St, Atlanta, GA 30301" +287984,Flatscreen TV,1,300,11/22/19 07:59,"189 7th St, Boston, MA 02215" +287985,Wired Headphones,1,11.99,11/09/19 20:01,"711 Meadow St, San Francisco, CA 94016" +287986,Lightning Charging Cable,1,14.95,11/18/19 12:33,"667 Elm St, Atlanta, GA 30301" +287987,Bose SoundSport Headphones,1,99.99,11/13/19 16:55,"81 Dogwood St, Los Angeles, CA 90001" +287988,Bose SoundSport Headphones,1,99.99,11/24/19 09:43,"15 Willow St, New York City, NY 10001" +287989,AA Batteries (4-pack),1,3.84,11/17/19 20:19,"301 14th St, San Francisco, CA 94016" +287990,iPhone,1,700,11/27/19 01:15,"353 Spruce St, New York City, NY 10001" +287991,Apple Airpods Headphones,1,150,11/26/19 16:36,"919 River St, Atlanta, GA 30301" +287992,Apple Airpods Headphones,1,150,11/26/19 16:48,"903 Willow St, Los Angeles, CA 90001" +287993,Bose SoundSport Headphones,1,99.99,11/13/19 18:17,"733 West St, New York City, NY 10001" +287994,Lightning Charging Cable,1,14.95,11/08/19 18:06,"438 North St, San Francisco, CA 94016" +287995,Lightning Charging Cable,1,14.95,11/25/19 15:25,"475 Jefferson St, San Francisco, CA 94016" +287996,Lightning Charging Cable,1,14.95,11/19/19 16:17,"519 6th St, San Francisco, CA 94016" +287997,Flatscreen TV,1,300,11/29/19 23:06,"647 Park St, Los Angeles, CA 90001" +287998,27in FHD Monitor,1,149.99,11/20/19 01:30,"557 4th St, Los Angeles, CA 90001" +287999,Apple Airpods Headphones,1,150,11/27/19 21:19,"729 Johnson St, Portland, OR 97035" +288000,USB-C Charging Cable,1,11.95,11/05/19 01:03,"892 Park St, San Francisco, CA 94016" +288001,Lightning Charging Cable,1,14.95,11/25/19 20:24,"668 14th St, Atlanta, GA 30301" +288002,USB-C Charging Cable,1,11.95,11/26/19 12:46,"403 West St, New York City, NY 10001" +288003,AA Batteries (4-pack),3,3.84,11/26/19 15:15,"775 Lake St, Boston, MA 02215" +288004,AA Batteries (4-pack),1,3.84,11/19/19 16:51,"645 14th St, Austin, TX 73301" +288005,27in 4K Gaming Monitor,1,389.99,11/07/19 18:09,"35 Walnut St, New York City, NY 10001" +288006,AAA Batteries (4-pack),2,2.99,11/20/19 13:11,"888 Highland St, Atlanta, GA 30301" +288007,AAA Batteries (4-pack),1,2.99,11/07/19 15:21,"441 North St, Los Angeles, CA 90001" +288008,Wired Headphones,1,11.99,11/07/19 14:56,"765 Chestnut St, San Francisco, CA 94016" +288009,AAA Batteries (4-pack),1,2.99,11/30/19 06:12,"525 Cherry St, Boston, MA 02215" +288010,Wired Headphones,1,11.99,11/06/19 12:24,"201 Lake St, Dallas, TX 75001" +288011,AA Batteries (4-pack),1,3.84,11/20/19 18:12,"702 11th St, Los Angeles, CA 90001" +288012,Lightning Charging Cable,1,14.95,11/21/19 17:57,"684 River St, Boston, MA 02215" +288013,Lightning Charging Cable,1,14.95,11/06/19 19:05,"422 Maple St, San Francisco, CA 94016" +288014,iPhone,1,700,11/04/19 17:57,"933 River St, San Francisco, CA 94016" +288015,AA Batteries (4-pack),1,3.84,11/10/19 14:24,"459 Willow St, San Francisco, CA 94016" +288016,Wired Headphones,1,11.99,11/28/19 18:56,"993 Forest St, New York City, NY 10001" +288017,Bose SoundSport Headphones,1,99.99,11/06/19 07:38,"951 Maple St, Boston, MA 02215" +288018,27in 4K Gaming Monitor,1,389.99,11/20/19 09:18,"957 Madison St, San Francisco, CA 94016" +288019,AAA Batteries (4-pack),1,2.99,11/04/19 16:58,"864 11th St, Seattle, WA 98101" +288020,USB-C Charging Cable,1,11.95,11/24/19 14:19,"803 8th St, Austin, TX 73301" +288021,AA Batteries (4-pack),1,3.84,11/07/19 15:06,"294 Cherry St, San Francisco, CA 94016" +288022,Lightning Charging Cable,1,14.95,11/04/19 21:42,"784 River St, Austin, TX 73301" +288023,AAA Batteries (4-pack),1,2.99,11/04/19 12:25,"622 5th St, San Francisco, CA 94016" +288023,USB-C Charging Cable,1,11.95,11/04/19 12:25,"622 5th St, San Francisco, CA 94016" +288024,AA Batteries (4-pack),1,3.84,11/15/19 16:28,"448 Church St, San Francisco, CA 94016" +288025,Lightning Charging Cable,1,14.95,11/28/19 13:00,"783 Meadow St, San Francisco, CA 94016" +288026,AA Batteries (4-pack),1,3.84,11/01/19 17:06,"523 Jackson St, Boston, MA 02215" +288027,AAA Batteries (4-pack),1,2.99,11/28/19 18:07,"970 Lake St, Los Angeles, CA 90001" +288028,Lightning Charging Cable,1,14.95,11/28/19 09:25,"687 6th St, Seattle, WA 98101" +288029,Apple Airpods Headphones,1,150,11/15/19 20:12,"243 2nd St, Atlanta, GA 30301" +288030,27in FHD Monitor,1,149.99,11/27/19 09:54,"302 Washington St, Boston, MA 02215" +288031,27in FHD Monitor,1,149.99,11/03/19 22:44,"847 11th St, Boston, MA 02215" +288032,Macbook Pro Laptop,1,1700,11/09/19 09:06,"812 13th St, Dallas, TX 75001" +288033,Lightning Charging Cable,1,14.95,11/13/19 20:13,"240 West St, San Francisco, CA 94016" +288034,AAA Batteries (4-pack),1,2.99,11/12/19 13:46,"743 14th St, San Francisco, CA 94016" +288035,Wired Headphones,1,11.99,11/15/19 21:36,"772 Lincoln St, San Francisco, CA 94016" +288036,USB-C Charging Cable,1,11.95,11/25/19 09:08,"106 Hill St, Los Angeles, CA 90001" +288037,AAA Batteries (4-pack),1,2.99,11/27/19 10:18,"545 Jefferson St, New York City, NY 10001" +288038,Apple Airpods Headphones,1,150,11/25/19 19:51,"970 Center St, New York City, NY 10001" +288039,Lightning Charging Cable,1,14.95,11/03/19 13:36,"717 9th St, Atlanta, GA 30301" +288040,AAA Batteries (4-pack),3,2.99,11/09/19 12:37,"346 Lake St, San Francisco, CA 94016" +288041,AAA Batteries (4-pack),1,2.99,11/08/19 14:12,"948 Hill St, Seattle, WA 98101" +288042,Flatscreen TV,1,300,11/03/19 11:29,"949 5th St, New York City, NY 10001" +288043,iPhone,1,700,11/11/19 06:38,"416 12th St, Los Angeles, CA 90001" +288044,Wired Headphones,1,11.99,11/28/19 10:38,"306 Johnson St, San Francisco, CA 94016" +288045,Bose SoundSport Headphones,1,99.99,11/17/19 11:07,"283 Ridge St, Los Angeles, CA 90001" +288046,AA Batteries (4-pack),1,3.84,11/04/19 16:50,"672 8th St, Los Angeles, CA 90001" +288047,27in 4K Gaming Monitor,1,389.99,11/24/19 16:33,"941 12th St, New York City, NY 10001" +288048,AAA Batteries (4-pack),4,2.99,11/28/19 19:06,"136 Elm St, Austin, TX 73301" +288049,Lightning Charging Cable,1,14.95,11/17/19 22:15,"850 South St, Dallas, TX 75001" +288050,AA Batteries (4-pack),1,3.84,11/15/19 13:24,"695 Hickory St, Los Angeles, CA 90001" +288051,Lightning Charging Cable,1,14.95,11/09/19 18:38,"942 Jefferson St, New York City, NY 10001" +288052,Apple Airpods Headphones,1,150,11/25/19 14:09,"947 Johnson St, Dallas, TX 75001" +288053,Apple Airpods Headphones,1,150,11/02/19 17:14,"270 Spruce St, Los Angeles, CA 90001" +288054,Lightning Charging Cable,1,14.95,11/22/19 11:25,"495 10th St, San Francisco, CA 94016" +288055,34in Ultrawide Monitor,1,379.99,11/29/19 09:43,"231 Forest St, Los Angeles, CA 90001" +288056,Flatscreen TV,1,300,11/24/19 06:20,"647 Walnut St, San Francisco, CA 94016" +288056,AAA Batteries (4-pack),1,2.99,11/24/19 06:20,"647 Walnut St, San Francisco, CA 94016" +288057,AA Batteries (4-pack),1,3.84,11/19/19 22:44,"940 Willow St, New York City, NY 10001" +288058,Google Phone,1,600,11/30/19 17:42,"455 Elm St, Los Angeles, CA 90001" +288059,USB-C Charging Cable,1,11.95,11/21/19 15:54,"42 North St, San Francisco, CA 94016" +288060,USB-C Charging Cable,2,11.95,11/30/19 15:56,"81 Johnson St, Los Angeles, CA 90001" +288061,Apple Airpods Headphones,1,150,11/04/19 00:53,"564 Wilson St, Los Angeles, CA 90001" +288062,27in FHD Monitor,1,149.99,11/01/19 09:47,"576 Hill St, San Francisco, CA 94016" +288063,Lightning Charging Cable,1,14.95,11/12/19 17:18,"414 Elm St, Los Angeles, CA 90001" +288064,Lightning Charging Cable,1,14.95,11/19/19 07:08,"813 North St, Portland, OR 97035" +288065,AAA Batteries (4-pack),1,2.99,11/28/19 13:28,"986 Main St, Atlanta, GA 30301" +288066,Wired Headphones,1,11.99,11/17/19 07:57,"82 Chestnut St, San Francisco, CA 94016" +288067,34in Ultrawide Monitor,1,379.99,11/23/19 17:56,"747 Main St, San Francisco, CA 94016" +288068,Lightning Charging Cable,1,14.95,11/23/19 16:17,"891 4th St, New York City, NY 10001" +288069,Apple Airpods Headphones,1,150,11/05/19 22:53,"374 Dogwood St, Dallas, TX 75001" +288070,USB-C Charging Cable,1,11.95,11/10/19 09:59,"237 11th St, Dallas, TX 75001" +288071,Bose SoundSport Headphones,1,99.99,11/25/19 10:04,"356 Church St, Los Angeles, CA 90001" +288072,iPhone,1,700,11/01/19 19:56,"228 14th St, San Francisco, CA 94016" +288072,Wired Headphones,1,11.99,11/01/19 19:56,"228 14th St, San Francisco, CA 94016" +288073,Apple Airpods Headphones,1,150,11/07/19 13:17,"479 Forest St, Boston, MA 02215" +288074,AAA Batteries (4-pack),1,2.99,11/23/19 14:46,"361 Jackson St, Boston, MA 02215" +288075,Lightning Charging Cable,1,14.95,11/18/19 09:05,"619 Jefferson St, Atlanta, GA 30301" +288076,27in FHD Monitor,1,149.99,11/12/19 10:33,"682 Main St, New York City, NY 10001" +288077,USB-C Charging Cable,1,11.95,11/06/19 18:10,"357 Lakeview St, Los Angeles, CA 90001" +288078,27in FHD Monitor,1,149.99,11/27/19 19:57,"319 Park St, Boston, MA 02215" +288079,Apple Airpods Headphones,2,150,11/19/19 20:12,"995 South St, New York City, NY 10001" +288080,AA Batteries (4-pack),2,3.84,11/22/19 13:26,"130 6th St, Dallas, TX 75001" +288081,Macbook Pro Laptop,1,1700,11/13/19 07:36,"687 10th St, New York City, NY 10001" +288082,AA Batteries (4-pack),1,3.84,11/20/19 07:05,"330 Lakeview St, Dallas, TX 75001" +288083,USB-C Charging Cable,1,11.95,11/09/19 17:16,"856 Wilson St, New York City, NY 10001" +288084,Wired Headphones,1,11.99,11/12/19 16:49,"222 1st St, Boston, MA 02215" +288085,34in Ultrawide Monitor,1,379.99,11/26/19 12:28,"581 Wilson St, Boston, MA 02215" +288086,Apple Airpods Headphones,1,150,11/17/19 09:24,"24 Adams St, San Francisco, CA 94016" +288087,Lightning Charging Cable,1,14.95,11/29/19 19:50,"493 Jackson St, Los Angeles, CA 90001" +288088,27in 4K Gaming Monitor,1,389.99,11/07/19 00:17,"444 1st St, New York City, NY 10001" +288089,USB-C Charging Cable,1,11.95,11/12/19 20:52,"428 Walnut St, Portland, OR 97035" +288090,USB-C Charging Cable,1,11.95,11/12/19 13:59,"23 Chestnut St, San Francisco, CA 94016" +288091,AA Batteries (4-pack),2,3.84,11/09/19 08:26,"429 Maple St, Atlanta, GA 30301" +288092,Bose SoundSport Headphones,1,99.99,11/13/19 11:56,"887 Dogwood St, Seattle, WA 98101" +288093,Wired Headphones,1,11.99,11/09/19 09:26,"347 Lincoln St, Seattle, WA 98101" +288094,Flatscreen TV,1,300,11/09/19 14:23,"368 Cherry St, New York City, NY 10001" +288095,Apple Airpods Headphones,1,150,11/22/19 20:19,"626 Park St, Boston, MA 02215" +288096,AA Batteries (4-pack),1,3.84,11/11/19 12:18,"815 Hill St, Atlanta, GA 30301" +288097,20in Monitor,1,109.99,11/15/19 13:07,"536 Lake St, Los Angeles, CA 90001" +288098,Lightning Charging Cable,1,14.95,11/11/19 10:20,"255 4th St, New York City, NY 10001" +288099,Wired Headphones,1,11.99,11/02/19 10:37,"633 6th St, Dallas, TX 75001" +288100,iPhone,1,700,11/26/19 15:10,"92 11th St, Boston, MA 02215" +288100,Lightning Charging Cable,1,14.95,11/26/19 15:10,"92 11th St, Boston, MA 02215" +288100,Wired Headphones,1,11.99,11/26/19 15:10,"92 11th St, Boston, MA 02215" +288101,iPhone,1,700,11/23/19 16:57,"721 Meadow St, San Francisco, CA 94016" +288101,Lightning Charging Cable,1,14.95,11/23/19 16:57,"721 Meadow St, San Francisco, CA 94016" +288102,AA Batteries (4-pack),3,3.84,11/19/19 12:50,"430 12th St, Seattle, WA 98101" +288103,Lightning Charging Cable,1,14.95,11/27/19 18:30,"583 Adams St, Dallas, TX 75001" +288104,AA Batteries (4-pack),1,3.84,11/05/19 14:48,"109 South St, San Francisco, CA 94016" +288105,Lightning Charging Cable,1,14.95,11/02/19 10:09,"329 Hickory St, San Francisco, CA 94016" +288106,27in 4K Gaming Monitor,1,389.99,11/15/19 19:57,"122 Cherry St, Boston, MA 02215" +288107,iPhone,1,700,11/11/19 12:53,"833 9th St, San Francisco, CA 94016" +288108,Lightning Charging Cable,1,14.95,11/30/19 14:46,"733 Sunset St, Seattle, WA 98101" +288109,Lightning Charging Cable,1,14.95,11/05/19 16:40,"462 Johnson St, Portland, OR 97035" +288110,27in FHD Monitor,1,149.99,11/22/19 20:51,"626 Spruce St, New York City, NY 10001" +288111,Lightning Charging Cable,1,14.95,11/21/19 09:56,"143 Jackson St, Boston, MA 02215" +288112,Bose SoundSport Headphones,1,99.99,11/15/19 16:22,"587 Sunset St, San Francisco, CA 94016" +288113,AA Batteries (4-pack),1,3.84,11/14/19 08:55,"564 14th St, Los Angeles, CA 90001" +288114,Apple Airpods Headphones,1,150,11/22/19 22:20,"863 Cherry St, San Francisco, CA 94016" +288115,Lightning Charging Cable,1,14.95,11/15/19 10:36,"786 Lake St, San Francisco, CA 94016" +288116,AAA Batteries (4-pack),2,2.99,11/01/19 23:05,"60 13th St, Seattle, WA 98101" +288117,USB-C Charging Cable,1,11.95,11/28/19 06:39,"789 Jefferson St, Los Angeles, CA 90001" +288118,AA Batteries (4-pack),1,3.84,11/25/19 18:14,"759 Cedar St, Boston, MA 02215" +288118,27in 4K Gaming Monitor,1,389.99,11/25/19 18:14,"759 Cedar St, Boston, MA 02215" +288119,AA Batteries (4-pack),1,3.84,11/14/19 13:15,"377 Ridge St, Los Angeles, CA 90001" +288120,Bose SoundSport Headphones,1,99.99,11/27/19 21:51,"840 Forest St, Dallas, TX 75001" +288121,Wired Headphones,1,11.99,11/10/19 19:39,"8 Cedar St, San Francisco, CA 94016" +288122,Google Phone,1,600,11/13/19 21:04,"623 Highland St, Seattle, WA 98101" +288123,AA Batteries (4-pack),1,3.84,11/04/19 16:20,"520 Main St, New York City, NY 10001" +288124,USB-C Charging Cable,1,11.95,11/23/19 12:47,"451 Lakeview St, San Francisco, CA 94016" +288125,Lightning Charging Cable,1,14.95,11/20/19 12:02,"605 Church St, Boston, MA 02215" +288126,Wired Headphones,1,11.99,11/18/19 20:15,"338 Johnson St, San Francisco, CA 94016" +288127,Lightning Charging Cable,1,14.95,11/05/19 12:25,"703 14th St, Boston, MA 02215" +288128,AA Batteries (4-pack),1,3.84,11/13/19 18:27,"471 1st St, Boston, MA 02215" +288129,Bose SoundSport Headphones,1,99.99,11/22/19 20:01,"668 Cedar St, Austin, TX 73301" +288130,USB-C Charging Cable,1,11.95,11/01/19 11:35,"46 South St, San Francisco, CA 94016" +288131,34in Ultrawide Monitor,1,379.99,11/18/19 21:33,"140 Sunset St, Dallas, TX 75001" +288132,Lightning Charging Cable,1,14.95,11/29/19 08:22,"800 13th St, Boston, MA 02215" +288133,USB-C Charging Cable,1,11.95,11/03/19 22:17,"553 1st St, Boston, MA 02215" +288134,Wired Headphones,1,11.99,11/11/19 06:12,"221 Lake St, San Francisco, CA 94016" +288135,USB-C Charging Cable,1,11.95,11/30/19 13:09,"237 South St, Austin, TX 73301" +288136,USB-C Charging Cable,1,11.95,11/23/19 18:22,"575 Madison St, New York City, NY 10001" +288136,Lightning Charging Cable,1,14.95,11/23/19 18:22,"575 Madison St, New York City, NY 10001" +288137,27in FHD Monitor,1,149.99,11/14/19 07:49,"3 Spruce St, Boston, MA 02215" +288138,27in FHD Monitor,1,149.99,11/19/19 18:39,"323 Cedar St, Boston, MA 02215" +288139,Wired Headphones,1,11.99,11/19/19 11:40,"711 Madison St, San Francisco, CA 94016" +288140,AAA Batteries (4-pack),1,2.99,11/29/19 11:02,"334 Chestnut St, Atlanta, GA 30301" +288141,Apple Airpods Headphones,1,150,11/26/19 13:25,"968 Elm St, San Francisco, CA 94016" +288142,Lightning Charging Cable,1,14.95,11/18/19 20:30,"861 Sunset St, Austin, TX 73301" +288143,AAA Batteries (4-pack),2,2.99,11/23/19 11:51,"470 13th St, San Francisco, CA 94016" +288144,Lightning Charging Cable,1,14.95,11/04/19 19:41,"10 Hickory St, Boston, MA 02215" +288145,27in FHD Monitor,1,149.99,11/03/19 11:05,"719 Cherry St, Boston, MA 02215" +288146,AAA Batteries (4-pack),3,2.99,11/18/19 00:18,"512 11th St, Atlanta, GA 30301" +288147,20in Monitor,1,109.99,11/04/19 22:02,"859 6th St, Atlanta, GA 30301" +288148,Lightning Charging Cable,1,14.95,11/29/19 11:51,"164 12th St, San Francisco, CA 94016" +288149,AA Batteries (4-pack),2,3.84,11/16/19 10:04,"148 2nd St, Los Angeles, CA 90001" +288150,Lightning Charging Cable,1,14.95,11/07/19 10:25,"560 11th St, Seattle, WA 98101" +288151,Google Phone,1,600,11/16/19 18:32,"818 Washington St, Los Angeles, CA 90001" +288151,USB-C Charging Cable,1,11.95,11/16/19 18:32,"818 Washington St, Los Angeles, CA 90001" +288152,Google Phone,1,600,11/23/19 23:10,"830 Lincoln St, Atlanta, GA 30301" +288153,ThinkPad Laptop,1,999.99,11/06/19 15:34,"38 Maple St, Austin, TX 73301" +288154,ThinkPad Laptop,1,999.99,11/17/19 12:51,"322 Hickory St, San Francisco, CA 94016" +288155,34in Ultrawide Monitor,1,379.99,11/16/19 15:34,"36 Main St, San Francisco, CA 94016" +288156,Lightning Charging Cable,1,14.95,11/23/19 11:46,"299 Lakeview St, Boston, MA 02215" +288157,Bose SoundSport Headphones,1,99.99,11/06/19 13:31,"218 Washington St, Boston, MA 02215" +288158,20in Monitor,1,109.99,11/20/19 19:47,"518 Center St, Austin, TX 73301" +288159,Lightning Charging Cable,1,14.95,11/14/19 15:44,"147 5th St, San Francisco, CA 94016" +288160,USB-C Charging Cable,1,11.95,11/19/19 12:54,"937 Cedar St, New York City, NY 10001" +288161,Apple Airpods Headphones,1,150,11/07/19 13:09,"662 Walnut St, Seattle, WA 98101" +288162,27in 4K Gaming Monitor,1,389.99,11/26/19 09:31,"880 Lincoln St, Atlanta, GA 30301" +288163,Bose SoundSport Headphones,1,99.99,11/02/19 11:14,"855 13th St, Boston, MA 02215" +288164,Lightning Charging Cable,2,14.95,11/25/19 21:30,"119 Willow St, Seattle, WA 98101" +288165,Wired Headphones,1,11.99,11/03/19 12:04,"30 West St, San Francisco, CA 94016" +288166,AA Batteries (4-pack),1,3.84,11/07/19 16:05,"506 Ridge St, Los Angeles, CA 90001" +288167,Lightning Charging Cable,2,14.95,11/02/19 20:18,"860 Lakeview St, San Francisco, CA 94016" +288168,27in 4K Gaming Monitor,1,389.99,11/05/19 16:21,"384 River St, San Francisco, CA 94016" +288169,Bose SoundSport Headphones,1,99.99,11/18/19 15:39,"961 Church St, Los Angeles, CA 90001" +288170,Bose SoundSport Headphones,1,99.99,11/26/19 12:40,"87 Ridge St, San Francisco, CA 94016" +288171,Wired Headphones,1,11.99,11/07/19 15:50,"315 Main St, Boston, MA 02215" +288172,Apple Airpods Headphones,1,150,11/28/19 21:59,"241 7th St, San Francisco, CA 94016" +288173,Apple Airpods Headphones,1,150,11/23/19 07:20,"846 7th St, Boston, MA 02215" +288174,Lightning Charging Cable,1,14.95,11/17/19 11:39,"491 Meadow St, Seattle, WA 98101" +288175,Bose SoundSport Headphones,1,99.99,11/05/19 08:07,"462 Willow St, Boston, MA 02215" +288176,AA Batteries (4-pack),1,3.84,11/13/19 13:33,"93 Church St, Atlanta, GA 30301" +288177,iPhone,1,700,11/07/19 20:52,"275 7th St, Dallas, TX 75001" +288178,USB-C Charging Cable,1,11.95,11/26/19 07:40,"457 Sunset St, San Francisco, CA 94016" +288179,AA Batteries (4-pack),3,3.84,11/02/19 15:14,"898 Forest St, Boston, MA 02215" +288180,AAA Batteries (4-pack),1,2.99,11/11/19 15:20,"78 13th St, San Francisco, CA 94016" +288181,Wired Headphones,1,11.99,11/10/19 17:36,"556 5th St, San Francisco, CA 94016" +288182,AAA Batteries (4-pack),1,2.99,11/02/19 11:01,"387 River St, New York City, NY 10001" +288183,USB-C Charging Cable,1,11.95,11/25/19 15:43,"994 Elm St, San Francisco, CA 94016" +288184,Wired Headphones,1,11.99,11/13/19 13:04,"496 Park St, New York City, NY 10001" +288185,Apple Airpods Headphones,1,150,11/05/19 17:29,"542 Park St, San Francisco, CA 94016" +288186,27in FHD Monitor,2,149.99,11/09/19 22:10,"216 6th St, Boston, MA 02215" +288187,Vareebadd Phone,1,400,11/22/19 11:36,"917 Main St, Boston, MA 02215" +288188,AA Batteries (4-pack),2,3.84,11/15/19 17:35,"516 Hill St, San Francisco, CA 94016" +288189,USB-C Charging Cable,1,11.95,11/29/19 21:27,"948 Highland St, San Francisco, CA 94016" +288190,AA Batteries (4-pack),1,3.84,11/02/19 23:16,"11 Pine St, San Francisco, CA 94016" +288191,AAA Batteries (4-pack),2,2.99,11/19/19 20:44,"183 10th St, New York City, NY 10001" +288192,Bose SoundSport Headphones,1,99.99,11/01/19 15:20,"636 11th St, New York City, NY 10001" +288193,Apple Airpods Headphones,1,150,11/15/19 20:03,"479 1st St, San Francisco, CA 94016" +288194,Wired Headphones,2,11.99,11/21/19 14:56,"136 Cedar St, Dallas, TX 75001" +288195,27in FHD Monitor,1,149.99,11/29/19 17:59,"916 South St, San Francisco, CA 94016" +288196,27in 4K Gaming Monitor,1,389.99,11/05/19 11:29,"941 2nd St, Los Angeles, CA 90001" +288197,LG Dryer,1,600.0,11/30/19 23:54,"668 6th St, New York City, NY 10001" +288198,27in 4K Gaming Monitor,1,389.99,11/17/19 15:44,"792 4th St, Portland, OR 97035" +288199,AAA Batteries (4-pack),1,2.99,11/21/19 06:45,"750 Cherry St, Austin, TX 73301" +288200,Bose SoundSport Headphones,1,99.99,11/05/19 15:49,"670 9th St, San Francisco, CA 94016" +288201,Flatscreen TV,1,300,11/02/19 21:33,"684 10th St, Los Angeles, CA 90001" +288202,AA Batteries (4-pack),1,3.84,11/10/19 17:40,"380 Willow St, San Francisco, CA 94016" +288203,Lightning Charging Cable,1,14.95,11/13/19 12:14,"848 Cherry St, Boston, MA 02215" +288204,27in 4K Gaming Monitor,1,389.99,11/14/19 11:01,"771 Lakeview St, Los Angeles, CA 90001" +288205,Apple Airpods Headphones,1,150,11/02/19 11:18,"490 Meadow St, Austin, TX 73301" +288206,AA Batteries (4-pack),1,3.84,11/06/19 12:06,"756 North St, Portland, OR 97035" +288207,Wired Headphones,1,11.99,11/04/19 08:50,"715 Willow St, San Francisco, CA 94016" +288208,USB-C Charging Cable,1,11.95,11/13/19 10:38,"614 Spruce St, Seattle, WA 98101" +288209,LG Washing Machine,1,600.0,11/26/19 17:58,"326 Hickory St, Los Angeles, CA 90001" +288210,Lightning Charging Cable,1,14.95,11/26/19 13:52,"963 Maple St, New York City, NY 10001" +288211,27in FHD Monitor,1,149.99,11/08/19 16:42,"634 12th St, New York City, NY 10001" +288212,AA Batteries (4-pack),2,3.84,11/15/19 19:27,"827 11th St, Dallas, TX 75001" +288213,Macbook Pro Laptop,1,1700,11/27/19 00:07,"847 Washington St, San Francisco, CA 94016" +288214,AA Batteries (4-pack),2,3.84,11/24/19 17:46,"656 Spruce St, New York City, NY 10001" +288215,USB-C Charging Cable,1,11.95,11/21/19 14:59,"822 Highland St, New York City, NY 10001" +288216,Wired Headphones,1,11.99,11/22/19 20:10,"998 9th St, Los Angeles, CA 90001" +288217,Wired Headphones,1,11.99,11/10/19 21:14,"169 Church St, Los Angeles, CA 90001" +288218,20in Monitor,1,109.99,11/11/19 13:13,"712 Pine St, Portland, ME 04101" +288219,AAA Batteries (4-pack),1,2.99,11/24/19 16:15,"564 Main St, Dallas, TX 75001" +288220,Lightning Charging Cable,1,14.95,11/08/19 21:10,"277 Park St, Atlanta, GA 30301" +288221,Apple Airpods Headphones,1,150,11/18/19 07:01,"793 Lincoln St, Portland, ME 04101" +288221,Apple Airpods Headphones,1,150,11/18/19 07:01,"793 Lincoln St, Portland, ME 04101" +288222,Wired Headphones,1,11.99,11/22/19 09:25,"494 Lake St, Boston, MA 02215" +288223,Bose SoundSport Headphones,1,99.99,11/03/19 09:01,"774 Jefferson St, San Francisco, CA 94016" +288223,USB-C Charging Cable,1,11.95,11/03/19 09:01,"774 Jefferson St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +288224,AA Batteries (4-pack),1,3.84,11/11/19 21:13,"227 South St, Boston, MA 02215" +288225,34in Ultrawide Monitor,1,379.99,11/24/19 08:18,"845 Lincoln St, Portland, OR 97035" +288226,Macbook Pro Laptop,1,1700,11/07/19 19:35,"991 Chestnut St, New York City, NY 10001" +288227,27in FHD Monitor,1,149.99,11/26/19 13:00,"5 Sunset St, Seattle, WA 98101" +288228,Bose SoundSport Headphones,1,99.99,11/20/19 17:36,"749 Cedar St, Boston, MA 02215" +288229,20in Monitor,1,109.99,11/27/19 21:31,"176 6th St, Portland, OR 97035" +288230,Bose SoundSport Headphones,1,99.99,11/12/19 21:32,"923 Cherry St, San Francisco, CA 94016" +288231,Macbook Pro Laptop,1,1700,11/07/19 07:57,"312 Madison St, San Francisco, CA 94016" +288232,27in 4K Gaming Monitor,1,389.99,11/19/19 07:47,"925 14th St, San Francisco, CA 94016" +288233,AAA Batteries (4-pack),5,2.99,11/06/19 13:14,"880 Maple St, Atlanta, GA 30301" +288234,Wired Headphones,2,11.99,11/22/19 10:04,"219 River St, Los Angeles, CA 90001" +288235,AA Batteries (4-pack),1,3.84,11/06/19 08:22,"277 Pine St, Los Angeles, CA 90001" +288236,USB-C Charging Cable,1,11.95,11/15/19 15:20,"189 Highland St, Atlanta, GA 30301" +288237,Apple Airpods Headphones,1,150,11/02/19 12:41,"354 Elm St, Atlanta, GA 30301" +288238,AAA Batteries (4-pack),1,2.99,11/06/19 16:52,"64 Highland St, New York City, NY 10001" +288239,Lightning Charging Cable,1,14.95,11/11/19 12:00,"26 10th St, New York City, NY 10001" +288240,Lightning Charging Cable,1,14.95,11/14/19 12:32,"33 Main St, Seattle, WA 98101" +288241,27in 4K Gaming Monitor,1,389.99,11/11/19 10:59,"544 Johnson St, Atlanta, GA 30301" +288241,Lightning Charging Cable,1,14.95,11/11/19 10:59,"544 Johnson St, Atlanta, GA 30301" +288242,Wired Headphones,1,11.99,11/02/19 13:35,"562 2nd St, San Francisco, CA 94016" +288243,AA Batteries (4-pack),1,3.84,11/12/19 20:55,"596 Willow St, Los Angeles, CA 90001" +288244,USB-C Charging Cable,1,11.95,11/08/19 13:04,"979 Church St, San Francisco, CA 94016" +288245,Bose SoundSport Headphones,1,99.99,11/27/19 10:19,"854 West St, San Francisco, CA 94016" +288246,Flatscreen TV,1,300,11/15/19 13:45,"39 Washington St, Dallas, TX 75001" +288247,Apple Airpods Headphones,1,150,11/06/19 18:02,"78 Main St, New York City, NY 10001" +288248,Google Phone,1,600,11/11/19 14:44,"609 Highland St, San Francisco, CA 94016" +288249,AA Batteries (4-pack),1,3.84,11/25/19 17:33,"622 Walnut St, Boston, MA 02215" +288250,AAA Batteries (4-pack),4,2.99,11/11/19 22:40,"24 Park St, Boston, MA 02215" +288251,Wired Headphones,1,11.99,11/24/19 19:58,"514 Church St, San Francisco, CA 94016" +288252,Apple Airpods Headphones,1,150,11/23/19 19:47,"937 Lakeview St, Boston, MA 02215" +288253,AA Batteries (4-pack),1,3.84,11/30/19 13:21,"938 4th St, San Francisco, CA 94016" +288253,Apple Airpods Headphones,1,150,11/30/19 13:21,"938 4th St, San Francisco, CA 94016" +288254,Macbook Pro Laptop,1,1700,11/23/19 22:29,"68 10th St, San Francisco, CA 94016" +288255,Bose SoundSport Headphones,1,99.99,11/07/19 19:59,"61 13th St, Seattle, WA 98101" +288256,AAA Batteries (4-pack),1,2.99,11/22/19 11:46,"462 10th St, San Francisco, CA 94016" +288257,27in 4K Gaming Monitor,1,389.99,11/18/19 14:01,"825 Spruce St, New York City, NY 10001" +288258,USB-C Charging Cable,1,11.95,11/08/19 16:51,"558 Walnut St, Atlanta, GA 30301" +288259,AA Batteries (4-pack),1,3.84,11/27/19 22:41,"208 Cherry St, New York City, NY 10001" +288260,AA Batteries (4-pack),1,3.84,11/25/19 18:58,"751 Chestnut St, Austin, TX 73301" +288261,27in FHD Monitor,1,149.99,11/23/19 09:25,"721 Wilson St, San Francisco, CA 94016" +288262,AAA Batteries (4-pack),1,2.99,11/10/19 15:11,"181 Washington St, Los Angeles, CA 90001" +288263,Macbook Pro Laptop,1,1700,11/28/19 16:30,"170 Meadow St, Boston, MA 02215" +288264,Apple Airpods Headphones,1,150,11/08/19 10:01,"584 Dogwood St, Boston, MA 02215" +288265,Wired Headphones,1,11.99,11/01/19 08:27,"680 River St, Los Angeles, CA 90001" +288265,Apple Airpods Headphones,1,150,11/01/19 08:27,"680 River St, Los Angeles, CA 90001" +288266,AAA Batteries (4-pack),1,2.99,11/08/19 20:52,"108 Elm St, New York City, NY 10001" +288267,AAA Batteries (4-pack),1,2.99,11/22/19 23:15,"841 North St, Austin, TX 73301" +288268,ThinkPad Laptop,1,999.99,11/08/19 17:29,"910 1st St, Seattle, WA 98101" +288269,Bose SoundSport Headphones,1,99.99,11/01/19 20:55,"938 Walnut St, Boston, MA 02215" +288270,USB-C Charging Cable,1,11.95,11/28/19 13:23,"260 Ridge St, Atlanta, GA 30301" +288271,USB-C Charging Cable,1,11.95,11/14/19 21:13,"78 10th St, San Francisco, CA 94016" +288272,AAA Batteries (4-pack),2,2.99,11/23/19 15:19,"949 Willow St, Portland, ME 04101" +288273,Lightning Charging Cable,1,14.95,11/26/19 13:01,"21 Lincoln St, Austin, TX 73301" +288274,AA Batteries (4-pack),1,3.84,11/27/19 22:13,"275 7th St, Austin, TX 73301" +288275,Flatscreen TV,1,300,11/17/19 18:16,"795 Washington St, Austin, TX 73301" +288276,Apple Airpods Headphones,1,150,11/22/19 15:00,"767 Church St, Los Angeles, CA 90001" +288277,34in Ultrawide Monitor,1,379.99,11/12/19 07:06,"741 Johnson St, New York City, NY 10001" +288278,USB-C Charging Cable,1,11.95,11/18/19 22:24,"247 Chestnut St, New York City, NY 10001" +288279,AA Batteries (4-pack),1,3.84,11/29/19 18:16,"313 Main St, Seattle, WA 98101" +288280,USB-C Charging Cable,1,11.95,11/08/19 15:19,"582 Ridge St, Dallas, TX 75001" +288281,Bose SoundSport Headphones,1,99.99,11/28/19 21:28,"128 Walnut St, San Francisco, CA 94016" +288282,Apple Airpods Headphones,1,150,11/07/19 13:26,"151 1st St, Boston, MA 02215" +288283,Bose SoundSport Headphones,1,99.99,11/05/19 19:04,"196 10th St, Seattle, WA 98101" +288284,Vareebadd Phone,1,400,11/10/19 22:31,"146 Jackson St, Los Angeles, CA 90001" +288284,USB-C Charging Cable,1,11.95,11/10/19 22:31,"146 Jackson St, Los Angeles, CA 90001" +288285,AAA Batteries (4-pack),1,2.99,11/26/19 12:39,"80 Chestnut St, Dallas, TX 75001" +288286,AAA Batteries (4-pack),1,2.99,11/10/19 14:18,"748 Willow St, New York City, NY 10001" +288287,Bose SoundSport Headphones,1,99.99,11/08/19 12:22,"157 Church St, New York City, NY 10001" +288288,Bose SoundSport Headphones,1,99.99,11/06/19 00:36,"49 Willow St, Atlanta, GA 30301" +288289,27in FHD Monitor,1,149.99,11/09/19 11:02,"488 Forest St, Seattle, WA 98101" +288290,iPhone,1,700,11/24/19 20:34,"325 Hill St, Seattle, WA 98101" +288290,Lightning Charging Cable,1,14.95,11/24/19 20:34,"325 Hill St, Seattle, WA 98101" +288291,AA Batteries (4-pack),1,3.84,11/01/19 19:36,"400 Hill St, Los Angeles, CA 90001" +288292,34in Ultrawide Monitor,1,379.99,11/11/19 10:42,"255 Hickory St, Atlanta, GA 30301" +288293,Google Phone,1,600,11/22/19 16:27,"54 Cherry St, Austin, TX 73301" +288293,USB-C Charging Cable,1,11.95,11/22/19 16:27,"54 Cherry St, Austin, TX 73301" +288294,AAA Batteries (4-pack),2,2.99,11/13/19 15:42,"795 Spruce St, Boston, MA 02215" +288295,AAA Batteries (4-pack),1,2.99,11/02/19 12:15,"166 Dogwood St, San Francisco, CA 94016" +288296,Apple Airpods Headphones,1,150,11/20/19 21:16,"938 Lake St, San Francisco, CA 94016" +288297,Lightning Charging Cable,1,14.95,11/27/19 12:02,"217 11th St, Los Angeles, CA 90001" +288298,Lightning Charging Cable,2,14.95,11/02/19 18:41,"349 Dogwood St, Los Angeles, CA 90001" +288299,27in 4K Gaming Monitor,1,389.99,11/20/19 06:39,"654 Jefferson St, San Francisco, CA 94016" +288300,27in 4K Gaming Monitor,1,389.99,11/16/19 23:21,"829 Lake St, New York City, NY 10001" +288301,USB-C Charging Cable,1,11.95,11/13/19 16:47,"916 Willow St, Dallas, TX 75001" +288302,Wired Headphones,1,11.99,11/23/19 20:59,"520 Lakeview St, San Francisco, CA 94016" +288303,iPhone,1,700,11/19/19 09:34,"922 8th St, New York City, NY 10001" +288304,AA Batteries (4-pack),3,3.84,11/20/19 21:00,"14 Cherry St, San Francisco, CA 94016" +288305,Google Phone,1,600,11/29/19 23:20,"881 10th St, Dallas, TX 75001" +288306,Macbook Pro Laptop,1,1700,11/20/19 16:10,"316 13th St, Boston, MA 02215" +288307,Apple Airpods Headphones,1,150,11/07/19 14:15,"799 Maple St, New York City, NY 10001" +288308,AAA Batteries (4-pack),1,2.99,11/22/19 15:34,"715 2nd St, New York City, NY 10001" +288309,27in FHD Monitor,1,149.99,11/06/19 08:12,"356 Maple St, Portland, ME 04101" +288310,AA Batteries (4-pack),2,3.84,11/05/19 12:51,"267 Maple St, San Francisco, CA 94016" +288311,Google Phone,1,600,11/10/19 14:26,"240 Center St, San Francisco, CA 94016" +288312,Lightning Charging Cable,1,14.95,11/30/19 14:02,"141 Main St, San Francisco, CA 94016" +288313,ThinkPad Laptop,1,999.99,11/06/19 17:04,"218 Spruce St, Seattle, WA 98101" +288314,Bose SoundSport Headphones,1,99.99,11/14/19 07:59,"760 Park St, Austin, TX 73301" +288315,AA Batteries (4-pack),2,3.84,11/04/19 20:37,"356 Chestnut St, Dallas, TX 75001" +288315,Wired Headphones,1,11.99,11/04/19 20:37,"356 Chestnut St, Dallas, TX 75001" +288316,AAA Batteries (4-pack),5,2.99,11/01/19 21:34,"526 River St, Portland, OR 97035" +288317,AAA Batteries (4-pack),1,2.99,11/19/19 14:35,"523 Hickory St, New York City, NY 10001" +288318,Wired Headphones,1,11.99,11/13/19 21:37,"275 Jefferson St, Los Angeles, CA 90001" +288319,Wired Headphones,1,11.99,11/27/19 23:01,"520 6th St, Atlanta, GA 30301" +288320,Apple Airpods Headphones,1,150,11/12/19 11:13,"15 6th St, Dallas, TX 75001" +,,,,, +288321,USB-C Charging Cable,1,11.95,11/23/19 22:03,"700 8th St, San Francisco, CA 94016" +288322,20in Monitor,1,109.99,11/02/19 09:19,"771 Highland St, Atlanta, GA 30301" +288323,USB-C Charging Cable,1,11.95,11/22/19 17:30,"994 Dogwood St, San Francisco, CA 94016" +288324,AA Batteries (4-pack),1,3.84,11/04/19 18:57,"590 Johnson St, New York City, NY 10001" +288325,Lightning Charging Cable,1,14.95,11/30/19 18:28,"217 11th St, San Francisco, CA 94016" +288326,20in Monitor,1,109.99,11/11/19 12:45,"193 Lakeview St, Seattle, WA 98101" +288327,Lightning Charging Cable,1,14.95,11/02/19 20:58,"818 Pine St, Boston, MA 02215" +288328,34in Ultrawide Monitor,1,379.99,11/19/19 13:25,"362 Wilson St, Boston, MA 02215" +288329,USB-C Charging Cable,1,11.95,11/10/19 19:17,"496 1st St, Seattle, WA 98101" +288330,Apple Airpods Headphones,1,150,11/07/19 20:02,"914 Adams St, New York City, NY 10001" +288331,AA Batteries (4-pack),2,3.84,11/18/19 12:55,"120 Adams St, Boston, MA 02215" +288332,Macbook Pro Laptop,1,1700,11/01/19 18:41,"661 Cherry St, Boston, MA 02215" +288333,Vareebadd Phone,1,400,11/17/19 18:49,"924 Ridge St, Portland, ME 04101" +288334,Lightning Charging Cable,1,14.95,11/11/19 10:18,"201 14th St, Los Angeles, CA 90001" +288335,Bose SoundSport Headphones,1,99.99,11/22/19 13:13,"424 Elm St, San Francisco, CA 94016" +288336,AA Batteries (4-pack),1,3.84,11/30/19 23:40,"621 8th St, Portland, OR 97035" +288337,USB-C Charging Cable,2,11.95,11/23/19 12:18,"259 South St, New York City, NY 10001" +288337,34in Ultrawide Monitor,1,379.99,11/23/19 12:18,"259 South St, New York City, NY 10001" +288338,iPhone,1,700,11/18/19 10:08,"397 Jackson St, San Francisco, CA 94016" +288339,Wired Headphones,1,11.99,11/15/19 19:19,"394 6th St, Austin, TX 73301" +288340,iPhone,1,700,11/09/19 19:49,"105 Forest St, New York City, NY 10001" +288341,20in Monitor,1,109.99,11/10/19 19:53,"995 Spruce St, San Francisco, CA 94016" +288342,Bose SoundSport Headphones,1,99.99,11/11/19 20:55,"947 Hill St, Portland, OR 97035" +288343,ThinkPad Laptop,1,999.99,11/29/19 17:13,"457 Maple St, San Francisco, CA 94016" +288344,AA Batteries (4-pack),1,3.84,11/28/19 09:27,"47 River St, San Francisco, CA 94016" +288345,LG Washing Machine,1,600.0,11/23/19 18:15,"74 Adams St, Portland, OR 97035" +288346,20in Monitor,1,109.99,11/06/19 11:59,"137 Meadow St, Boston, MA 02215" +288347,LG Washing Machine,1,600.0,11/12/19 14:18,"951 1st St, San Francisco, CA 94016" +288348,AAA Batteries (4-pack),2,2.99,11/15/19 13:15,"11 8th St, Los Angeles, CA 90001" +288349,Wired Headphones,1,11.99,11/30/19 22:11,"292 Hill St, Boston, MA 02215" +288350,34in Ultrawide Monitor,1,379.99,11/19/19 18:59,"662 Adams St, San Francisco, CA 94016" +288351,Lightning Charging Cable,1,14.95,11/08/19 12:40,"976 Dogwood St, New York City, NY 10001" +288352,USB-C Charging Cable,1,11.95,11/30/19 13:01,"462 Forest St, Seattle, WA 98101" +288353,Bose SoundSport Headphones,1,99.99,11/04/19 13:29,"861 14th St, San Francisco, CA 94016" +288354,AA Batteries (4-pack),1,3.84,11/02/19 09:55,"605 Jefferson St, San Francisco, CA 94016" +288355,Lightning Charging Cable,1,14.95,11/03/19 16:09,"988 Washington St, Seattle, WA 98101" +288356,27in 4K Gaming Monitor,1,389.99,11/17/19 07:24,"649 5th St, San Francisco, CA 94016" +288357,USB-C Charging Cable,1,11.95,11/23/19 21:16,"253 10th St, San Francisco, CA 94016" +288358,ThinkPad Laptop,1,999.99,11/01/19 15:52,"854 13th St, Atlanta, GA 30301" +288359,Flatscreen TV,1,300,11/06/19 04:38,"34 Wilson St, Los Angeles, CA 90001" +288360,34in Ultrawide Monitor,1,379.99,11/02/19 18:51,"151 Chestnut St, San Francisco, CA 94016" +288361,Lightning Charging Cable,1,14.95,11/22/19 18:47,"688 Center St, Atlanta, GA 30301" +288362,Lightning Charging Cable,1,14.95,11/21/19 22:20,"673 Elm St, Portland, OR 97035" +288362,Macbook Pro Laptop,1,1700,11/21/19 22:20,"673 Elm St, Portland, OR 97035" +288363,Flatscreen TV,1,300,11/28/19 19:19,"838 Chestnut St, San Francisco, CA 94016" +288364,Bose SoundSport Headphones,1,99.99,11/06/19 18:46,"130 Hickory St, New York City, NY 10001" +288365,USB-C Charging Cable,1,11.95,11/14/19 06:12,"86 8th St, Dallas, TX 75001" +288366,AA Batteries (4-pack),1,3.84,11/04/19 17:44,"769 9th St, San Francisco, CA 94016" +288367,Wired Headphones,1,11.99,11/29/19 16:45,"543 Willow St, New York City, NY 10001" +288368,USB-C Charging Cable,1,11.95,11/17/19 13:18,"15 Lakeview St, San Francisco, CA 94016" +288369,USB-C Charging Cable,1,11.95,11/12/19 11:13,"421 Johnson St, Los Angeles, CA 90001" +288370,USB-C Charging Cable,1,11.95,11/23/19 13:21,"990 Forest St, Dallas, TX 75001" +288371,AAA Batteries (4-pack),1,2.99,11/17/19 19:34,"786 Johnson St, Portland, OR 97035" +288372,AAA Batteries (4-pack),2,2.99,11/06/19 09:42,"91 13th St, Portland, OR 97035" +288373,Wired Headphones,1,11.99,11/13/19 18:37,"406 North St, Los Angeles, CA 90001" +288374,Lightning Charging Cable,1,14.95,11/28/19 09:50,"52 Lincoln St, Los Angeles, CA 90001" +288375,Bose SoundSport Headphones,1,99.99,11/30/19 12:32,"841 6th St, Dallas, TX 75001" +288376,AAA Batteries (4-pack),1,2.99,11/11/19 22:16,"855 Dogwood St, Austin, TX 73301" +288377,AAA Batteries (4-pack),1,2.99,11/19/19 11:06,"294 5th St, Los Angeles, CA 90001" +288378,27in 4K Gaming Monitor,1,389.99,11/21/19 13:34,"338 Pine St, Portland, OR 97035" +288379,AA Batteries (4-pack),1,3.84,11/15/19 22:14,"702 1st St, Los Angeles, CA 90001" +288380,Lightning Charging Cable,1,14.95,11/04/19 12:17,"377 7th St, Seattle, WA 98101" +288381,AA Batteries (4-pack),1,3.84,11/06/19 21:24,"770 Dogwood St, New York City, NY 10001" +288382,Macbook Pro Laptop,1,1700,11/14/19 22:04,"737 Meadow St, San Francisco, CA 94016" +288383,Wired Headphones,1,11.99,11/26/19 14:48,"867 South St, Atlanta, GA 30301" +288384,USB-C Charging Cable,2,11.95,11/18/19 14:44,"745 12th St, New York City, NY 10001" +288385,Apple Airpods Headphones,1,150,11/10/19 19:48,"631 1st St, Los Angeles, CA 90001" +288386,Google Phone,1,600,11/14/19 12:12,"85 Meadow St, Dallas, TX 75001" +288387,AA Batteries (4-pack),2,3.84,11/17/19 11:35,"674 Lake St, Dallas, TX 75001" +288388,AAA Batteries (4-pack),2,2.99,11/17/19 17:31,"891 Adams St, Los Angeles, CA 90001" +288389,AAA Batteries (4-pack),1,2.99,11/04/19 09:31,"286 Lake St, Seattle, WA 98101" +288390,27in 4K Gaming Monitor,1,389.99,11/17/19 18:55,"925 Madison St, San Francisco, CA 94016" +288391,AA Batteries (4-pack),1,3.84,11/11/19 08:51,"996 9th St, Atlanta, GA 30301" +288392,Lightning Charging Cable,1,14.95,11/18/19 11:14,"450 9th St, Boston, MA 02215" +288393,27in FHD Monitor,1,149.99,11/12/19 09:35,"222 Chestnut St, Los Angeles, CA 90001" +288394,Lightning Charging Cable,2,14.95,11/06/19 19:54,"811 Jefferson St, Atlanta, GA 30301" +288395,ThinkPad Laptop,1,999.99,11/14/19 01:41,"6 7th St, Los Angeles, CA 90001" +288396,Bose SoundSport Headphones,1,99.99,11/19/19 09:38,"91 Park St, New York City, NY 10001" +288397,iPhone,1,700,11/13/19 17:31,"855 Maple St, Atlanta, GA 30301" +288397,Lightning Charging Cable,1,14.95,11/13/19 17:31,"855 Maple St, Atlanta, GA 30301" +288398,AAA Batteries (4-pack),1,2.99,11/20/19 11:06,"732 Sunset St, Atlanta, GA 30301" +288399,ThinkPad Laptop,1,999.99,11/16/19 12:59,"627 Adams St, Atlanta, GA 30301" +288400,Apple Airpods Headphones,1,150,11/15/19 21:09,"681 Pine St, San Francisco, CA 94016" +288401,AA Batteries (4-pack),1,3.84,11/17/19 10:21,"927 13th St, Los Angeles, CA 90001" +288402,AA Batteries (4-pack),1,3.84,11/25/19 16:06,"81 Spruce St, San Francisco, CA 94016" +288403,USB-C Charging Cable,1,11.95,11/19/19 18:58,"321 Washington St, Seattle, WA 98101" +288404,USB-C Charging Cable,1,11.95,11/24/19 13:29,"722 Chestnut St, San Francisco, CA 94016" +288405,AA Batteries (4-pack),1,3.84,11/24/19 10:52,"547 Washington St, San Francisco, CA 94016" +288406,AA Batteries (4-pack),1,3.84,11/10/19 19:57,"344 Maple St, San Francisco, CA 94016" +288407,AAA Batteries (4-pack),1,2.99,11/24/19 09:10,"545 Adams St, Seattle, WA 98101" +288408,AAA Batteries (4-pack),1,2.99,11/07/19 11:40,"488 1st St, Atlanta, GA 30301" +288409,USB-C Charging Cable,1,11.95,11/20/19 09:16,"731 Hill St, Austin, TX 73301" +288410,AAA Batteries (4-pack),1,2.99,11/28/19 13:21,"59 North St, San Francisco, CA 94016" +288411,34in Ultrawide Monitor,1,379.99,11/07/19 09:25,"809 Willow St, San Francisco, CA 94016" +288412,Google Phone,1,600,11/23/19 18:30,"198 4th St, Boston, MA 02215" +288413,Macbook Pro Laptop,1,1700,11/20/19 11:43,"17 Church St, Seattle, WA 98101" +288414,Google Phone,1,600,11/01/19 10:10,"646 Jackson St, San Francisco, CA 94016" +288415,AAA Batteries (4-pack),3,2.99,11/15/19 17:18,"117 Main St, San Francisco, CA 94016" +288416,AA Batteries (4-pack),1,3.84,11/14/19 10:49,"3 Wilson St, Seattle, WA 98101" +288417,AAA Batteries (4-pack),2,2.99,11/05/19 01:14,"14 West St, Los Angeles, CA 90001" +288418,iPhone,1,700,11/12/19 20:43,"436 13th St, Los Angeles, CA 90001" +288419,AA Batteries (4-pack),2,3.84,11/16/19 11:49,"685 8th St, Dallas, TX 75001" +288420,USB-C Charging Cable,1,11.95,11/29/19 22:28,"712 Center St, San Francisco, CA 94016" +288421,34in Ultrawide Monitor,1,379.99,11/30/19 19:28,"553 Maple St, New York City, NY 10001" +288422,Apple Airpods Headphones,1,150,11/28/19 23:17,"303 10th St, San Francisco, CA 94016" +288423,iPhone,1,700,11/22/19 20:30,"714 Main St, Los Angeles, CA 90001" +288424,ThinkPad Laptop,1,999.99,11/19/19 21:12,"945 South St, San Francisco, CA 94016" +288425,AAA Batteries (4-pack),3,2.99,11/27/19 19:04,"460 14th St, San Francisco, CA 94016" +288426,AA Batteries (4-pack),1,3.84,11/15/19 11:13,"528 4th St, San Francisco, CA 94016" +288427,27in FHD Monitor,1,149.99,11/26/19 01:02,"339 River St, San Francisco, CA 94016" +288428,Macbook Pro Laptop,1,1700,11/17/19 21:46,"165 Madison St, Boston, MA 02215" +288429,USB-C Charging Cable,1,11.95,11/18/19 21:36,"183 Highland St, San Francisco, CA 94016" +288430,Apple Airpods Headphones,1,150,11/14/19 14:30,"561 Dogwood St, San Francisco, CA 94016" +288431,Lightning Charging Cable,2,14.95,11/22/19 16:21,"828 Forest St, Austin, TX 73301" +288432,Apple Airpods Headphones,1,150,11/27/19 07:24,"23 Spruce St, San Francisco, CA 94016" +288433,Apple Airpods Headphones,1,150,11/11/19 13:07,"753 Cherry St, New York City, NY 10001" +288434,AA Batteries (4-pack),1,3.84,11/07/19 10:43,"271 11th St, San Francisco, CA 94016" +288435,AAA Batteries (4-pack),1,2.99,11/08/19 20:51,"143 4th St, San Francisco, CA 94016" +288436,Lightning Charging Cable,1,14.95,11/27/19 10:20,"189 Hill St, Atlanta, GA 30301" +288437,Wired Headphones,1,11.99,11/23/19 21:02,"719 Maple St, Atlanta, GA 30301" +288438,AAA Batteries (4-pack),1,2.99,11/29/19 17:44,"926 Church St, Dallas, TX 75001" +288439,AAA Batteries (4-pack),1,2.99,11/28/19 19:58,"401 Forest St, San Francisco, CA 94016" +288440,34in Ultrawide Monitor,1,379.99,11/23/19 16:03,"247 Cedar St, Boston, MA 02215" +288441,20in Monitor,1,109.99,11/15/19 16:21,"114 Ridge St, Boston, MA 02215" +288442,USB-C Charging Cable,1,11.95,11/04/19 12:38,"640 Hickory St, San Francisco, CA 94016" +288443,Wired Headphones,1,11.99,11/07/19 11:58,"448 Ridge St, San Francisco, CA 94016" +288444,Apple Airpods Headphones,1,150,11/26/19 21:23,"585 Church St, Seattle, WA 98101" +288445,Macbook Pro Laptop,1,1700,11/08/19 19:51,"408 Cherry St, Atlanta, GA 30301" +288446,ThinkPad Laptop,1,999.99,11/19/19 20:56,"627 North St, New York City, NY 10001" +288446,AAA Batteries (4-pack),1,2.99,11/19/19 20:56,"627 North St, New York City, NY 10001" +288447,27in 4K Gaming Monitor,1,389.99,11/16/19 16:02,"297 Forest St, Los Angeles, CA 90001" +288448,USB-C Charging Cable,1,11.95,11/23/19 01:00,"166 Church St, Boston, MA 02215" +288449,USB-C Charging Cable,1,11.95,11/25/19 18:24,"154 5th St, Seattle, WA 98101" +288450,ThinkPad Laptop,1,999.99,11/16/19 09:33,"378 Walnut St, Boston, MA 02215" +288451,AAA Batteries (4-pack),1,2.99,11/23/19 18:04,"284 Church St, Los Angeles, CA 90001" +288452,AAA Batteries (4-pack),1,2.99,11/02/19 17:34,"828 4th St, San Francisco, CA 94016" +288453,Wired Headphones,1,11.99,11/14/19 20:00,"905 12th St, San Francisco, CA 94016" +288454,27in FHD Monitor,1,149.99,11/20/19 21:14,"466 Hill St, San Francisco, CA 94016" +288455,34in Ultrawide Monitor,1,379.99,11/29/19 13:54,"323 North St, Dallas, TX 75001" +288456,Wired Headphones,1,11.99,11/22/19 11:14,"917 4th St, Dallas, TX 75001" +288457,34in Ultrawide Monitor,1,379.99,11/28/19 10:21,"134 Johnson St, San Francisco, CA 94016" +288458,34in Ultrawide Monitor,1,379.99,11/29/19 16:09,"313 1st St, Atlanta, GA 30301" +288459,AAA Batteries (4-pack),2,2.99,11/17/19 12:33,"608 8th St, Atlanta, GA 30301" +288460,20in Monitor,1,109.99,11/04/19 18:24,"62 7th St, Portland, OR 97035" +288461,Lightning Charging Cable,1,14.95,11/02/19 12:10,"174 Meadow St, San Francisco, CA 94016" +288462,Wired Headphones,1,11.99,11/01/19 18:39,"95 2nd St, San Francisco, CA 94016" +288463,AA Batteries (4-pack),1,3.84,11/21/19 10:34,"554 12th St, Seattle, WA 98101" +288464,USB-C Charging Cable,1,11.95,11/06/19 23:55,"224 Washington St, Seattle, WA 98101" +288465,27in 4K Gaming Monitor,1,389.99,11/20/19 15:12,"268 9th St, San Francisco, CA 94016" +288466,Lightning Charging Cable,1,14.95,11/18/19 22:08,"270 Hill St, Los Angeles, CA 90001" +288467,Bose SoundSport Headphones,1,99.99,11/22/19 20:02,"792 Maple St, Seattle, WA 98101" +288468,AAA Batteries (4-pack),1,2.99,11/14/19 11:25,"764 Washington St, Seattle, WA 98101" +288469,27in 4K Gaming Monitor,1,389.99,11/30/19 15:23,"807 Elm St, Los Angeles, CA 90001" +288470,ThinkPad Laptop,1,999.99,11/03/19 12:19,"109 Ridge St, Portland, OR 97035" +288471,Wired Headphones,1,11.99,11/30/19 23:13,"925 West St, San Francisco, CA 94016" +288472,27in FHD Monitor,1,149.99,11/27/19 07:27,"97 Adams St, Portland, OR 97035" +288473,Apple Airpods Headphones,1,150,11/04/19 19:52,"590 Washington St, San Francisco, CA 94016" +288474,Wired Headphones,1,11.99,11/30/19 13:38,"898 Meadow St, Seattle, WA 98101" +288475,Wired Headphones,1,11.99,11/29/19 12:45,"590 11th St, San Francisco, CA 94016" +288476,Macbook Pro Laptop,1,1700,11/25/19 23:45,"519 Ridge St, Los Angeles, CA 90001" +288477,Apple Airpods Headphones,1,150,11/30/19 14:25,"384 Forest St, Austin, TX 73301" +288478,Vareebadd Phone,1,400,11/23/19 12:11,"98 Lakeview St, Los Angeles, CA 90001" +288478,USB-C Charging Cable,1,11.95,11/23/19 12:11,"98 Lakeview St, Los Angeles, CA 90001" +288479,AA Batteries (4-pack),1,3.84,11/12/19 22:30,"659 West St, San Francisco, CA 94016" +288480,Lightning Charging Cable,1,14.95,11/25/19 14:37,"674 Lakeview St, Seattle, WA 98101" +288481,Apple Airpods Headphones,1,150,11/10/19 20:40,"742 Center St, Austin, TX 73301" +288482,Apple Airpods Headphones,1,150,11/16/19 18:51,"205 Wilson St, Atlanta, GA 30301" +288483,Flatscreen TV,1,300,11/15/19 09:52,"498 12th St, Austin, TX 73301" +288484,Bose SoundSport Headphones,1,99.99,11/08/19 17:00,"714 4th St, Boston, MA 02215" +288485,Bose SoundSport Headphones,1,99.99,11/21/19 20:29,"193 Maple St, Seattle, WA 98101" +288486,iPhone,1,700,11/16/19 17:14,"847 6th St, Austin, TX 73301" +288487,27in FHD Monitor,1,149.99,11/23/19 23:40,"358 Main St, New York City, NY 10001" +288488,Apple Airpods Headphones,1,150,11/02/19 21:08,"414 Chestnut St, New York City, NY 10001" +288489,Apple Airpods Headphones,1,150,11/22/19 10:06,"582 Hill St, Los Angeles, CA 90001" +288490,Wired Headphones,1,11.99,11/20/19 20:05,"489 Ridge St, Boston, MA 02215" +288491,Flatscreen TV,1,300,11/16/19 19:49,"225 Hickory St, Atlanta, GA 30301" +288492,AAA Batteries (4-pack),2,2.99,11/26/19 05:04,"743 Madison St, Los Angeles, CA 90001" +288493,iPhone,1,700,11/08/19 23:07,"758 North St, Atlanta, GA 30301" +288494,Lightning Charging Cable,1,14.95,11/09/19 14:07,"647 Washington St, San Francisco, CA 94016" +288495,34in Ultrawide Monitor,1,379.99,11/22/19 00:28,"835 Meadow St, Seattle, WA 98101" +288496,AAA Batteries (4-pack),2,2.99,11/30/19 20:54,"747 6th St, New York City, NY 10001" +288497,Apple Airpods Headphones,1,150,11/12/19 22:01,"76 Lake St, Seattle, WA 98101" +288498,AAA Batteries (4-pack),1,2.99,11/18/19 23:39,"976 9th St, Los Angeles, CA 90001" +288499,27in FHD Monitor,1,149.99,11/11/19 13:25,"883 Park St, New York City, NY 10001" +288500,Apple Airpods Headphones,1,150,11/02/19 16:32,"508 Church St, New York City, NY 10001" +288501,Wired Headphones,1,11.99,11/01/19 17:51,"907 Church St, New York City, NY 10001" +288502,AAA Batteries (4-pack),2,2.99,11/26/19 04:57,"146 8th St, New York City, NY 10001" +288503,USB-C Charging Cable,1,11.95,11/15/19 09:53,"452 Chestnut St, San Francisco, CA 94016" +288504,Google Phone,1,600,11/21/19 20:02,"361 Cherry St, San Francisco, CA 94016" +288505,Apple Airpods Headphones,1,150,11/22/19 20:27,"113 Cherry St, San Francisco, CA 94016" +288506,Google Phone,1,600,11/02/19 22:04,"3 Hill St, Los Angeles, CA 90001" +288506,USB-C Charging Cable,1,11.95,11/02/19 22:04,"3 Hill St, Los Angeles, CA 90001" +288507,USB-C Charging Cable,1,11.95,11/11/19 18:46,"223 Meadow St, Seattle, WA 98101" +288508,LG Washing Machine,1,600.0,11/22/19 07:04,"458 Chestnut St, Seattle, WA 98101" +288509,Lightning Charging Cable,1,14.95,11/16/19 21:15,"853 Highland St, Austin, TX 73301" +288510,Wired Headphones,1,11.99,11/25/19 18:24,"197 9th St, San Francisco, CA 94016" +288511,Lightning Charging Cable,1,14.95,11/10/19 12:47,"394 Lincoln St, New York City, NY 10001" +288512,AAA Batteries (4-pack),3,2.99,11/29/19 12:07,"345 Walnut St, San Francisco, CA 94016" +288513,AA Batteries (4-pack),2,3.84,11/26/19 17:32,"273 Adams St, San Francisco, CA 94016" +288514,AA Batteries (4-pack),1,3.84,11/17/19 12:12,"672 Main St, New York City, NY 10001" +288515,Macbook Pro Laptop,1,1700,11/17/19 13:17,"541 5th St, San Francisco, CA 94016" +288516,27in 4K Gaming Monitor,1,389.99,11/15/19 17:43,"114 Wilson St, Austin, TX 73301" +288517,AA Batteries (4-pack),2,3.84,11/08/19 18:52,"777 14th St, Atlanta, GA 30301" +288518,Apple Airpods Headphones,1,150,11/11/19 12:56,"893 Church St, San Francisco, CA 94016" +288519,Lightning Charging Cable,1,14.95,11/29/19 10:44,"982 Washington St, San Francisco, CA 94016" +288520,27in 4K Gaming Monitor,1,389.99,11/21/19 15:59,"2 1st St, Atlanta, GA 30301" +288521,AAA Batteries (4-pack),1,2.99,11/16/19 14:30,"379 Cherry St, New York City, NY 10001" +288522,Google Phone,1,600,11/01/19 21:56,"959 Hill St, San Francisco, CA 94016" +288523,Bose SoundSport Headphones,1,99.99,11/25/19 06:39,"310 Hickory St, Boston, MA 02215" +288524,Google Phone,1,600,11/14/19 07:40,"92 River St, San Francisco, CA 94016" +288525,USB-C Charging Cable,1,11.95,11/05/19 13:10,"762 Washington St, Seattle, WA 98101" +288526,Vareebadd Phone,1,400,11/13/19 22:44,"883 Forest St, Dallas, TX 75001" +288527,Macbook Pro Laptop,1,1700,11/05/19 10:01,"444 North St, New York City, NY 10001" +288528,Lightning Charging Cable,1,14.95,11/26/19 19:12,"728 4th St, San Francisco, CA 94016" +288529,27in 4K Gaming Monitor,1,389.99,11/19/19 12:46,"709 Lake St, Dallas, TX 75001" +288530,Google Phone,1,600,11/08/19 11:36,"91 Spruce St, San Francisco, CA 94016" +288531,AAA Batteries (4-pack),2,2.99,11/30/19 21:23,"709 Willow St, San Francisco, CA 94016" +288532,AA Batteries (4-pack),1,3.84,11/10/19 08:31,"98 14th St, San Francisco, CA 94016" +288533,Bose SoundSport Headphones,1,99.99,11/09/19 21:47,"472 Meadow St, Los Angeles, CA 90001" +288534,Wired Headphones,1,11.99,11/01/19 11:20,"734 Lake St, Portland, ME 04101" +288535,AAA Batteries (4-pack),3,2.99,11/29/19 16:42,"239 11th St, Seattle, WA 98101" +288536,AA Batteries (4-pack),1,3.84,11/09/19 13:48,"250 Church St, San Francisco, CA 94016" +288537,Bose SoundSport Headphones,1,99.99,11/30/19 11:57,"62 Cedar St, Portland, OR 97035" +288538,Bose SoundSport Headphones,1,99.99,11/08/19 10:59,"23 Ridge St, Portland, ME 04101" +288539,ThinkPad Laptop,1,999.99,11/11/19 22:41,"280 Ridge St, Boston, MA 02215" +288539,AAA Batteries (4-pack),1,2.99,11/11/19 22:41,"280 Ridge St, Boston, MA 02215" +288540,ThinkPad Laptop,1,999.99,11/26/19 14:09,"310 7th St, Los Angeles, CA 90001" +288541,ThinkPad Laptop,1,999.99,11/02/19 07:13,"748 Lincoln St, Boston, MA 02215" +288542,Wired Headphones,1,11.99,11/14/19 21:19,"468 Center St, Atlanta, GA 30301" +288543,AA Batteries (4-pack),3,3.84,11/14/19 17:21,"713 West St, Seattle, WA 98101" +288544,AA Batteries (4-pack),1,3.84,11/21/19 16:39,"346 Sunset St, San Francisco, CA 94016" +288545,iPhone,1,700,11/01/19 17:47,"503 Spruce St, Boston, MA 02215" +288546,Flatscreen TV,1,300,11/14/19 15:55,"51 Hill St, Dallas, TX 75001" +288547,Apple Airpods Headphones,1,150,11/20/19 18:20,"79 Elm St, Seattle, WA 98101" +288548,USB-C Charging Cable,1,11.95,11/18/19 19:16,"809 12th St, San Francisco, CA 94016" +288549,iPhone,1,700,11/27/19 06:54,"466 Adams St, San Francisco, CA 94016" +288550,27in 4K Gaming Monitor,1,389.99,11/14/19 13:45,"391 Lakeview St, Dallas, TX 75001" +288551,Apple Airpods Headphones,1,150,11/16/19 10:41,"651 9th St, Seattle, WA 98101" +288552,Bose SoundSport Headphones,1,99.99,11/21/19 16:25,"959 West St, Los Angeles, CA 90001" +288553,Google Phone,1,600,11/28/19 11:34,"293 Meadow St, Dallas, TX 75001" +288554,Flatscreen TV,1,300,11/24/19 16:46,"832 Highland St, Austin, TX 73301" +288555,Wired Headphones,1,11.99,11/02/19 03:14,"814 Main St, Seattle, WA 98101" +288556,AAA Batteries (4-pack),1,2.99,11/29/19 11:40,"579 Johnson St, San Francisco, CA 94016" +288557,USB-C Charging Cable,1,11.95,11/07/19 19:29,"127 Elm St, Portland, OR 97035" +288558,Apple Airpods Headphones,1,150,11/09/19 00:52,"598 10th St, New York City, NY 10001" +288559,Lightning Charging Cable,1,14.95,11/05/19 16:29,"238 Washington St, San Francisco, CA 94016" +288560,Bose SoundSport Headphones,1,99.99,11/25/19 20:46,"447 13th St, Boston, MA 02215" +288561,Bose SoundSport Headphones,1,99.99,11/03/19 11:33,"548 1st St, Atlanta, GA 30301" +288562,34in Ultrawide Monitor,1,379.99,11/25/19 11:20,"431 West St, Seattle, WA 98101" +288563,Bose SoundSport Headphones,1,99.99,11/19/19 13:18,"599 11th St, Dallas, TX 75001" +288564,AA Batteries (4-pack),3,3.84,11/23/19 22:29,"308 Maple St, Austin, TX 73301" +288565,27in 4K Gaming Monitor,1,389.99,11/01/19 05:19,"409 4th St, Austin, TX 73301" +288566,Wired Headphones,1,11.99,11/13/19 19:57,"640 Washington St, Boston, MA 02215" +288567,27in FHD Monitor,1,149.99,11/18/19 12:07,"414 Washington St, New York City, NY 10001" +288568,AAA Batteries (4-pack),1,2.99,11/05/19 22:51,"643 Lakeview St, San Francisco, CA 94016" +288569,34in Ultrawide Monitor,1,379.99,11/04/19 22:42,"378 Jackson St, Boston, MA 02215" +288570,34in Ultrawide Monitor,1,379.99,11/04/19 19:34,"199 Wilson St, San Francisco, CA 94016" +288571,AAA Batteries (4-pack),2,2.99,11/29/19 18:28,"743 Sunset St, San Francisco, CA 94016" +288572,AAA Batteries (4-pack),2,2.99,11/09/19 20:14,"262 Elm St, Portland, OR 97035" +288573,AA Batteries (4-pack),1,3.84,11/05/19 18:11,"176 Johnson St, Dallas, TX 75001" +288574,AA Batteries (4-pack),1,3.84,11/27/19 07:38,"875 Jackson St, Los Angeles, CA 90001" +288575,27in 4K Gaming Monitor,1,389.99,11/20/19 16:41,"159 Jefferson St, San Francisco, CA 94016" +288576,Wired Headphones,1,11.99,11/01/19 09:04,"370 Sunset St, Seattle, WA 98101" +288577,ThinkPad Laptop,1,999.99,11/23/19 18:06,"585 Meadow St, Dallas, TX 75001" +288578,AAA Batteries (4-pack),1,2.99,11/14/19 14:00,"773 12th St, Boston, MA 02215" +288579,Bose SoundSport Headphones,1,99.99,11/08/19 17:17,"185 Jackson St, Portland, ME 04101" +288580,Google Phone,1,600,11/26/19 23:44,"686 5th St, Dallas, TX 75001" +288581,Apple Airpods Headphones,1,150,11/06/19 22:45,"295 North St, Boston, MA 02215" +288582,34in Ultrawide Monitor,1,379.99,11/11/19 11:01,"88 Adams St, Los Angeles, CA 90001" +288583,AA Batteries (4-pack),4,3.84,11/04/19 15:52,"453 River St, Dallas, TX 75001" +288584,Wired Headphones,1,11.99,11/05/19 21:11,"102 River St, Austin, TX 73301" +288585,Wired Headphones,1,11.99,11/03/19 15:08,"428 River St, Atlanta, GA 30301" +288586,Bose SoundSport Headphones,1,99.99,11/15/19 08:58,"128 10th St, Atlanta, GA 30301" +288587,Lightning Charging Cable,1,14.95,11/20/19 11:25,"531 Park St, Atlanta, GA 30301" +288588,Lightning Charging Cable,1,14.95,11/15/19 18:26,"585 Walnut St, Boston, MA 02215" +288589,27in FHD Monitor,1,149.99,11/26/19 15:59,"623 Sunset St, Dallas, TX 75001" +288590,Apple Airpods Headphones,1,150,11/02/19 18:53,"795 West St, Portland, OR 97035" +288591,Lightning Charging Cable,1,14.95,11/17/19 22:29,"694 Park St, San Francisco, CA 94016" +288592,Lightning Charging Cable,1,14.95,11/29/19 00:06,"332 Johnson St, Los Angeles, CA 90001" +288593,Apple Airpods Headphones,1,150,11/24/19 11:42,"692 Washington St, New York City, NY 10001" +288594,Wired Headphones,1,11.99,11/22/19 21:20,"497 Forest St, Atlanta, GA 30301" +288595,Apple Airpods Headphones,1,150,11/25/19 18:10,"468 Lake St, Los Angeles, CA 90001" +288596,27in FHD Monitor,1,149.99,11/24/19 08:34,"717 Sunset St, Boston, MA 02215" +288597,AAA Batteries (4-pack),4,2.99,11/05/19 14:26,"332 Walnut St, Los Angeles, CA 90001" +288598,AA Batteries (4-pack),2,3.84,11/04/19 14:08,"363 Chestnut St, Atlanta, GA 30301" +288599,Lightning Charging Cable,1,14.95,11/13/19 20:29,"887 Park St, Atlanta, GA 30301" +288600,USB-C Charging Cable,1,11.95,11/15/19 20:11,"352 Forest St, Austin, TX 73301" +288601,27in 4K Gaming Monitor,1,389.99,11/03/19 15:24,"267 Lincoln St, San Francisco, CA 94016" +288602,AAA Batteries (4-pack),2,2.99,11/02/19 15:29,"450 Spruce St, New York City, NY 10001" +288603,AAA Batteries (4-pack),2,2.99,11/16/19 19:22,"705 Willow St, San Francisco, CA 94016" +288604,27in FHD Monitor,1,149.99,11/14/19 17:54,"519 Cherry St, San Francisco, CA 94016" +288605,USB-C Charging Cable,1,11.95,11/22/19 08:02,"35 Dogwood St, Seattle, WA 98101" +288606,AA Batteries (4-pack),1,3.84,11/06/19 12:07,"710 Main St, New York City, NY 10001" +288607,Bose SoundSport Headphones,1,99.99,11/20/19 14:31,"541 Park St, Dallas, TX 75001" +288608,Wired Headphones,1,11.99,11/29/19 15:51,"965 Jefferson St, San Francisco, CA 94016" +288609,AA Batteries (4-pack),1,3.84,11/22/19 16:01,"812 2nd St, San Francisco, CA 94016" +288610,Flatscreen TV,1,300,11/08/19 17:50,"105 West St, San Francisco, CA 94016" +288611,Wired Headphones,1,11.99,11/12/19 12:55,"475 Chestnut St, New York City, NY 10001" +288612,Macbook Pro Laptop,1,1700,11/22/19 19:12,"26 Adams St, New York City, NY 10001" +288613,ThinkPad Laptop,1,999.99,11/27/19 09:43,"773 North St, San Francisco, CA 94016" +288614,AAA Batteries (4-pack),1,2.99,11/20/19 09:34,"777 Washington St, Los Angeles, CA 90001" +288615,Apple Airpods Headphones,1,150,11/10/19 14:36,"494 Johnson St, Portland, OR 97035" +288616,Wired Headphones,1,11.99,11/24/19 12:18,"61 South St, Boston, MA 02215" +288617,USB-C Charging Cable,1,11.95,11/16/19 19:33,"814 Highland St, Seattle, WA 98101" +288618,Flatscreen TV,1,300,11/10/19 11:45,"601 Washington St, Los Angeles, CA 90001" +288619,Flatscreen TV,1,300,11/13/19 22:51,"955 Meadow St, Atlanta, GA 30301" +288620,Bose SoundSport Headphones,1,99.99,11/09/19 00:44,"106 14th St, Los Angeles, CA 90001" +288621,AA Batteries (4-pack),1,3.84,11/27/19 06:22,"264 Spruce St, Seattle, WA 98101" +288622,Apple Airpods Headphones,1,150,11/15/19 19:45,"247 1st St, San Francisco, CA 94016" +288622,Google Phone,1,600,11/15/19 19:45,"247 1st St, San Francisco, CA 94016" +288623,Wired Headphones,1,11.99,11/06/19 01:01,"917 South St, New York City, NY 10001" +288624,Apple Airpods Headphones,1,150,11/21/19 21:00,"358 Lakeview St, New York City, NY 10001" +288625,USB-C Charging Cable,1,11.95,11/09/19 19:10,"521 1st St, New York City, NY 10001" +288626,Apple Airpods Headphones,1,150,11/25/19 09:31,"415 9th St, Los Angeles, CA 90001" +288627,AA Batteries (4-pack),1,3.84,11/01/19 22:06,"625 Washington St, San Francisco, CA 94016" +288628,AA Batteries (4-pack),1,3.84,11/28/19 08:06,"454 12th St, Seattle, WA 98101" +288629,Apple Airpods Headphones,1,150,11/09/19 23:27,"982 North St, Dallas, TX 75001" +288630,Google Phone,1,600,11/11/19 11:30,"654 9th St, Portland, OR 97035" +288631,Wired Headphones,1,11.99,11/17/19 11:03,"775 4th St, Dallas, TX 75001" +288632,Wired Headphones,1,11.99,11/26/19 18:27,"558 Hill St, San Francisco, CA 94016" +288633,Bose SoundSport Headphones,1,99.99,11/19/19 08:02,"474 Hickory St, San Francisco, CA 94016" +288634,AAA Batteries (4-pack),1,2.99,11/25/19 17:30,"496 4th St, Seattle, WA 98101" +288635,iPhone,1,700,11/07/19 17:05,"72 11th St, Portland, OR 97035" +288636,Wired Headphones,1,11.99,11/28/19 12:10,"281 Sunset St, Boston, MA 02215" +288637,Bose SoundSport Headphones,1,99.99,11/27/19 20:32,"726 Adams St, Atlanta, GA 30301" +288638,LG Dryer,1,600.0,11/09/19 13:08,"854 12th St, Atlanta, GA 30301" +288639,Apple Airpods Headphones,1,150,11/28/19 14:54,"475 4th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +288640,20in Monitor,1,109.99,11/02/19 00:43,"906 South St, Portland, OR 97035" +288641,USB-C Charging Cable,1,11.95,11/05/19 08:21,"638 Lakeview St, Los Angeles, CA 90001" +288642,AAA Batteries (4-pack),3,2.99,11/28/19 09:50,"532 Church St, Dallas, TX 75001" +288643,27in FHD Monitor,1,149.99,11/17/19 19:04,"724 South St, Austin, TX 73301" +288644,iPhone,1,700,11/23/19 08:55,"407 Washington St, Dallas, TX 75001" +288644,Wired Headphones,1,11.99,11/23/19 08:55,"407 Washington St, Dallas, TX 75001" +288645,AAA Batteries (4-pack),2,2.99,11/01/19 14:33,"596 Pine St, San Francisco, CA 94016" +288646,34in Ultrawide Monitor,1,379.99,11/10/19 20:39,"865 South St, Los Angeles, CA 90001" +288647,Bose SoundSport Headphones,1,99.99,11/10/19 02:02,"411 Center St, Boston, MA 02215" +288648,27in FHD Monitor,1,149.99,11/20/19 10:55,"164 Lincoln St, Seattle, WA 98101" +288648,Bose SoundSport Headphones,1,99.99,11/20/19 10:55,"164 Lincoln St, Seattle, WA 98101" +288649,Lightning Charging Cable,2,14.95,11/10/19 18:46,"699 Washington St, Atlanta, GA 30301" +288650,USB-C Charging Cable,1,11.95,11/29/19 09:32,"657 Wilson St, New York City, NY 10001" +288651,Wired Headphones,1,11.99,11/17/19 13:59,"524 Maple St, New York City, NY 10001" +288652,iPhone,1,700,11/09/19 16:46,"307 Wilson St, New York City, NY 10001" +288653,Bose SoundSport Headphones,1,99.99,11/16/19 14:14,"235 1st St, Austin, TX 73301" +288653,Google Phone,1,600,11/16/19 14:14,"235 1st St, Austin, TX 73301" +288654,Flatscreen TV,1,300,11/30/19 08:35,"9 Adams St, San Francisco, CA 94016" +288655,Google Phone,1,600,11/04/19 13:56,"40 Ridge St, San Francisco, CA 94016" +288655,USB-C Charging Cable,2,11.95,11/04/19 13:56,"40 Ridge St, San Francisco, CA 94016" +288656,AAA Batteries (4-pack),1,2.99,11/10/19 18:45,"702 South St, Los Angeles, CA 90001" +288657,Google Phone,1,600,11/07/19 12:32,"545 Park St, San Francisco, CA 94016" +288657,USB-C Charging Cable,1,11.95,11/07/19 12:32,"545 Park St, San Francisco, CA 94016" +288657,Bose SoundSport Headphones,1,99.99,11/07/19 12:32,"545 Park St, San Francisco, CA 94016" +288658,USB-C Charging Cable,1,11.95,11/05/19 01:25,"80 Chestnut St, Atlanta, GA 30301" +288659,Bose SoundSport Headphones,1,99.99,11/05/19 12:16,"569 Hill St, Portland, OR 97035" +288660,27in 4K Gaming Monitor,1,389.99,11/23/19 22:08,"791 6th St, New York City, NY 10001" +288661,34in Ultrawide Monitor,1,379.99,11/05/19 20:49,"166 4th St, Los Angeles, CA 90001" +288662,Apple Airpods Headphones,1,150,11/14/19 16:51,"394 13th St, New York City, NY 10001" +288663,Apple Airpods Headphones,1,150,11/05/19 11:54,"571 7th St, New York City, NY 10001" +288664,Bose SoundSport Headphones,1,99.99,11/21/19 11:27,"674 Ridge St, Boston, MA 02215" +288665,Apple Airpods Headphones,1,150,11/30/19 17:45,"49 Lakeview St, San Francisco, CA 94016" +288666,Vareebadd Phone,1,400,11/20/19 07:58,"281 Hickory St, Los Angeles, CA 90001" +288667,Flatscreen TV,1,300,11/26/19 17:14,"349 River St, Dallas, TX 75001" +288668,Bose SoundSport Headphones,1,99.99,11/20/19 12:54,"79 Meadow St, Boston, MA 02215" +288669,AA Batteries (4-pack),1,3.84,11/19/19 18:13,"649 Center St, Austin, TX 73301" +288670,USB-C Charging Cable,1,11.95,11/19/19 21:20,"93 Meadow St, Los Angeles, CA 90001" +288671,Bose SoundSport Headphones,1,99.99,11/06/19 22:35,"739 Highland St, San Francisco, CA 94016" +288672,Bose SoundSport Headphones,1,99.99,11/23/19 14:33,"544 Jefferson St, San Francisco, CA 94016" +288673,34in Ultrawide Monitor,1,379.99,11/21/19 20:10,"613 Forest St, Portland, ME 04101" +288674,USB-C Charging Cable,1,11.95,11/14/19 19:13,"410 Maple St, Los Angeles, CA 90001" +288675,USB-C Charging Cable,1,11.95,11/21/19 14:30,"847 13th St, New York City, NY 10001" +288676,Google Phone,1,600,11/04/19 09:07,"515 12th St, Dallas, TX 75001" +288677,Apple Airpods Headphones,1,150,11/03/19 20:09,"879 Hill St, Los Angeles, CA 90001" +288678,Bose SoundSport Headphones,1,99.99,11/26/19 07:28,"130 11th St, Seattle, WA 98101" +288679,20in Monitor,1,109.99,11/12/19 23:21,"933 8th St, Seattle, WA 98101" +288680,AA Batteries (4-pack),2,3.84,11/10/19 17:27,"771 Meadow St, Seattle, WA 98101" +288681,USB-C Charging Cable,1,11.95,11/04/19 10:22,"372 Lincoln St, New York City, NY 10001" +288682,Wired Headphones,1,11.99,11/05/19 20:02,"54 River St, Austin, TX 73301" +288683,Wired Headphones,1,11.99,11/21/19 17:06,"341 Lake St, Atlanta, GA 30301" +288684,AA Batteries (4-pack),1,3.84,11/29/19 16:38,"618 1st St, Los Angeles, CA 90001" +288685,USB-C Charging Cable,1,11.95,11/06/19 12:10,"162 Park St, Boston, MA 02215" +288686,USB-C Charging Cable,1,11.95,11/23/19 11:02,"39 Meadow St, San Francisco, CA 94016" +288687,Wired Headphones,1,11.99,11/14/19 09:27,"68 11th St, New York City, NY 10001" +288688,Apple Airpods Headphones,1,150,11/01/19 20:16,"595 Forest St, New York City, NY 10001" +288689,AA Batteries (4-pack),1,3.84,11/13/19 22:39,"156 Lakeview St, San Francisco, CA 94016" +288690,USB-C Charging Cable,1,11.95,11/05/19 15:34,"931 Meadow St, Boston, MA 02215" +288691,AAA Batteries (4-pack),1,2.99,11/02/19 00:17,"370 7th St, San Francisco, CA 94016" +288692,27in 4K Gaming Monitor,1,389.99,11/07/19 11:01,"962 Cedar St, New York City, NY 10001" +288693,Flatscreen TV,1,300,11/25/19 17:07,"133 Willow St, Los Angeles, CA 90001" +288694,Macbook Pro Laptop,1,1700,11/14/19 20:22,"725 6th St, Los Angeles, CA 90001" +288695,Macbook Pro Laptop,1,1700,11/10/19 21:36,"935 West St, San Francisco, CA 94016" +288696,Lightning Charging Cable,2,14.95,11/10/19 13:53,"48 Hill St, Dallas, TX 75001" +288697,AAA Batteries (4-pack),1,2.99,11/04/19 19:16,"549 Maple St, San Francisco, CA 94016" +288698,USB-C Charging Cable,1,11.95,11/03/19 16:35,"585 Madison St, Portland, OR 97035" +288699,USB-C Charging Cable,1,11.95,11/18/19 17:00,"560 Johnson St, San Francisco, CA 94016" +288700,USB-C Charging Cable,1,11.95,11/19/19 08:37,"615 13th St, Portland, OR 97035" +288701,ThinkPad Laptop,1,999.99,11/19/19 20:56,"941 2nd St, Seattle, WA 98101" +288702,Lightning Charging Cable,1,14.95,11/21/19 12:02,"22 2nd St, Atlanta, GA 30301" +288703,Lightning Charging Cable,1,14.95,11/27/19 13:58,"941 Elm St, Los Angeles, CA 90001" +288704,Bose SoundSport Headphones,1,99.99,11/11/19 00:10,"640 1st St, San Francisco, CA 94016" +288705,Apple Airpods Headphones,1,150,11/01/19 05:40,"543 13th St, San Francisco, CA 94016" +288706,Wired Headphones,1,11.99,11/13/19 10:59,"628 Jefferson St, Portland, OR 97035" +288707,Bose SoundSport Headphones,1,99.99,11/15/19 08:13,"495 Jackson St, Dallas, TX 75001" +288708,AA Batteries (4-pack),3,3.84,11/30/19 20:16,"206 Pine St, Boston, MA 02215" +288709,AAA Batteries (4-pack),1,2.99,11/22/19 14:47,"235 Sunset St, Los Angeles, CA 90001" +288710,USB-C Charging Cable,1,11.95,11/24/19 09:01,"740 Sunset St, New York City, NY 10001" +288711,AAA Batteries (4-pack),2,2.99,11/09/19 17:32,"833 Lakeview St, New York City, NY 10001" +288712,34in Ultrawide Monitor,1,379.99,11/16/19 23:52,"235 Washington St, Los Angeles, CA 90001" +288713,Wired Headphones,1,11.99,11/25/19 14:41,"995 8th St, Portland, OR 97035" +288714,Wired Headphones,1,11.99,11/04/19 15:57,"697 6th St, Los Angeles, CA 90001" +288715,20in Monitor,1,109.99,11/12/19 11:43,"365 9th St, San Francisco, CA 94016" +288716,Wired Headphones,1,11.99,11/01/19 19:27,"997 South St, Seattle, WA 98101" +288717,34in Ultrawide Monitor,1,379.99,11/17/19 18:51,"116 5th St, Austin, TX 73301" +288718,Wired Headphones,1,11.99,11/05/19 14:50,"613 Walnut St, Seattle, WA 98101" +288719,AA Batteries (4-pack),2,3.84,11/16/19 11:13,"393 Pine St, New York City, NY 10001" +288720,Macbook Pro Laptop,1,1700,11/11/19 03:35,"454 Spruce St, Dallas, TX 75001" +288721,27in 4K Gaming Monitor,1,389.99,11/08/19 18:55,"129 South St, New York City, NY 10001" +288722,AAA Batteries (4-pack),2,2.99,11/11/19 12:26,"265 13th St, Dallas, TX 75001" +288723,Lightning Charging Cable,1,14.95,11/18/19 21:32,"223 Maple St, San Francisco, CA 94016" +288724,Lightning Charging Cable,1,14.95,11/04/19 12:22,"719 Cedar St, Portland, OR 97035" +288725,Macbook Pro Laptop,1,1700,11/29/19 12:07,"920 8th St, Dallas, TX 75001" +288726,AA Batteries (4-pack),1,3.84,11/03/19 11:37,"931 Lake St, Dallas, TX 75001" +288727,USB-C Charging Cable,1,11.95,11/29/19 10:28,"808 West St, Austin, TX 73301" +288728,AA Batteries (4-pack),1,3.84,11/23/19 13:34,"987 North St, Portland, OR 97035" +288729,Bose SoundSport Headphones,1,99.99,11/14/19 20:19,"713 Dogwood St, New York City, NY 10001" +288730,Wired Headphones,2,11.99,11/21/19 21:49,"60 Center St, Los Angeles, CA 90001" +288731,Bose SoundSport Headphones,1,99.99,11/06/19 15:15,"654 Dogwood St, San Francisco, CA 94016" +288732,34in Ultrawide Monitor,1,379.99,11/17/19 19:12,"944 Forest St, San Francisco, CA 94016" +288733,AAA Batteries (4-pack),2,2.99,11/21/19 02:32,"467 Lake St, San Francisco, CA 94016" +288734,Wired Headphones,1,11.99,11/06/19 13:41,"537 Madison St, Boston, MA 02215" +288735,iPhone,1,700,11/01/19 20:22,"554 Washington St, San Francisco, CA 94016" +288735,Lightning Charging Cable,1,14.95,11/01/19 20:22,"554 Washington St, San Francisco, CA 94016" +288736,Lightning Charging Cable,1,14.95,11/10/19 14:08,"156 2nd St, New York City, NY 10001" +288737,Lightning Charging Cable,1,14.95,11/25/19 00:53,"672 Spruce St, Seattle, WA 98101" +288738,AA Batteries (4-pack),1,3.84,11/27/19 22:13,"973 Jefferson St, San Francisco, CA 94016" +288739,AA Batteries (4-pack),1,3.84,11/07/19 14:37,"829 Pine St, Boston, MA 02215" +288740,27in FHD Monitor,1,149.99,11/19/19 21:19,"644 Park St, Boston, MA 02215" +288741,Lightning Charging Cable,1,14.95,11/16/19 22:22,"277 Maple St, New York City, NY 10001" +288742,Google Phone,1,600,11/15/19 19:34,"87 Highland St, Atlanta, GA 30301" +288743,Lightning Charging Cable,1,14.95,11/11/19 22:41,"522 Lake St, Austin, TX 73301" +288744,Flatscreen TV,1,300,11/11/19 13:37,"785 13th St, Boston, MA 02215" +288745,ThinkPad Laptop,1,999.99,11/24/19 11:51,"169 South St, New York City, NY 10001" +288746,Apple Airpods Headphones,1,150,11/21/19 22:12,"573 12th St, San Francisco, CA 94016" +288747,Wired Headphones,1,11.99,11/18/19 11:05,"29 1st St, Los Angeles, CA 90001" +288748,Macbook Pro Laptop,1,1700,11/17/19 23:07,"566 Park St, Seattle, WA 98101" +288749,Flatscreen TV,1,300,11/27/19 11:11,"662 Spruce St, New York City, NY 10001" +288750,AAA Batteries (4-pack),1,2.99,11/11/19 22:26,"306 Elm St, New York City, NY 10001" +288751,20in Monitor,1,109.99,11/14/19 20:14,"448 8th St, Atlanta, GA 30301" +288752,34in Ultrawide Monitor,1,379.99,11/02/19 13:38,"733 4th St, Boston, MA 02215" +288753,iPhone,1,700,11/04/19 17:27,"381 Spruce St, New York City, NY 10001" +288754,Apple Airpods Headphones,1,150,11/12/19 08:20,"338 Jefferson St, Boston, MA 02215" +288755,USB-C Charging Cable,1,11.95,11/19/19 18:49,"113 Park St, Dallas, TX 75001" +288756,Wired Headphones,2,11.99,11/09/19 19:53,"441 Ridge St, Boston, MA 02215" +288757,27in FHD Monitor,1,149.99,11/17/19 10:16,"24 River St, Dallas, TX 75001" +288758,Lightning Charging Cable,1,14.95,11/10/19 15:20,"533 Dogwood St, Seattle, WA 98101" +288759,Bose SoundSport Headphones,1,99.99,11/22/19 11:39,"193 Madison St, Seattle, WA 98101" +288759,AA Batteries (4-pack),1,3.84,11/22/19 11:39,"193 Madison St, Seattle, WA 98101" +288760,USB-C Charging Cable,3,11.95,11/24/19 01:04,"109 Ridge St, Los Angeles, CA 90001" +288761,Bose SoundSport Headphones,1,99.99,11/14/19 17:13,"523 Church St, New York City, NY 10001" +288762,iPhone,1,700,11/12/19 15:12,"605 11th St, Los Angeles, CA 90001" +288763,AAA Batteries (4-pack),1,2.99,11/12/19 22:42,"887 Washington St, Portland, OR 97035" +288764,USB-C Charging Cable,1,11.95,11/22/19 18:34,"331 Forest St, New York City, NY 10001" +288765,USB-C Charging Cable,1,11.95,11/23/19 19:23,"762 Hill St, Dallas, TX 75001" +288766,AA Batteries (4-pack),1,3.84,11/02/19 18:16,"839 West St, Boston, MA 02215" +288767,USB-C Charging Cable,1,11.95,11/07/19 00:00,"737 Adams St, Boston, MA 02215" +288768,USB-C Charging Cable,1,11.95,11/13/19 20:02,"323 Meadow St, New York City, NY 10001" +288769,Bose SoundSport Headphones,1,99.99,11/26/19 10:41,"296 7th St, Atlanta, GA 30301" +288770,Vareebadd Phone,1,400,11/25/19 13:39,"234 Highland St, Seattle, WA 98101" +288771,LG Washing Machine,1,600.0,11/15/19 17:34,"86 7th St, Los Angeles, CA 90001" +288772,Bose SoundSport Headphones,1,99.99,11/16/19 17:59,"815 12th St, Los Angeles, CA 90001" +288773,AAA Batteries (4-pack),1,2.99,11/05/19 02:10,"920 Chestnut St, San Francisco, CA 94016" +288774,USB-C Charging Cable,1,11.95,11/18/19 08:09,"5 South St, New York City, NY 10001" +288775,AAA Batteries (4-pack),1,2.99,11/09/19 13:25,"903 Chestnut St, Los Angeles, CA 90001" +288776,34in Ultrawide Monitor,1,379.99,11/09/19 18:59,"678 14th St, San Francisco, CA 94016" +288777,USB-C Charging Cable,1,11.95,11/05/19 19:12,"170 Pine St, Portland, OR 97035" +288778,Macbook Pro Laptop,1,1700,11/02/19 21:24,"190 Cherry St, Dallas, TX 75001" +288779,AA Batteries (4-pack),1,3.84,11/16/19 19:37,"319 Lake St, San Francisco, CA 94016" +288780,AA Batteries (4-pack),2,3.84,11/12/19 19:04,"54 Spruce St, Austin, TX 73301" +288781,ThinkPad Laptop,1,999.99,11/08/19 14:17,"438 Maple St, New York City, NY 10001" +288782,Apple Airpods Headphones,1,150,11/03/19 18:51,"330 Lakeview St, Los Angeles, CA 90001" +288783,27in FHD Monitor,1,149.99,11/13/19 13:22,"448 Hill St, New York City, NY 10001" +288784,ThinkPad Laptop,1,999.99,11/07/19 10:41,"940 Meadow St, Austin, TX 73301" +288785,Macbook Pro Laptop,1,1700,11/22/19 20:42,"950 Madison St, Austin, TX 73301" +288786,AAA Batteries (4-pack),1,2.99,11/29/19 14:49,"996 Spruce St, New York City, NY 10001" +288787,Macbook Pro Laptop,1,1700,11/08/19 19:25,"433 12th St, San Francisco, CA 94016" +288787,Wired Headphones,1,11.99,11/08/19 19:25,"433 12th St, San Francisco, CA 94016" +288788,Lightning Charging Cable,1,14.95,11/20/19 20:12,"4 Hickory St, Dallas, TX 75001" +288789,27in FHD Monitor,1,149.99,11/21/19 19:04,"841 Madison St, Los Angeles, CA 90001" +288790,Google Phone,1,600,11/24/19 06:36,"436 Hickory St, New York City, NY 10001" +288790,USB-C Charging Cable,1,11.95,11/24/19 06:36,"436 Hickory St, New York City, NY 10001" +288791,Apple Airpods Headphones,1,150,11/15/19 18:04,"651 Ridge St, New York City, NY 10001" +288792,AAA Batteries (4-pack),1,2.99,11/07/19 07:16,"819 Wilson St, New York City, NY 10001" +288793,Lightning Charging Cable,1,14.95,11/13/19 18:34,"45 Meadow St, Los Angeles, CA 90001" +288794,ThinkPad Laptop,1,999.99,11/04/19 20:54,"253 Lincoln St, Los Angeles, CA 90001" +288795,Apple Airpods Headphones,1,150,11/18/19 15:15,"434 Highland St, Boston, MA 02215" +288796,AA Batteries (4-pack),1,3.84,11/17/19 11:04,"459 12th St, Austin, TX 73301" +288797,Apple Airpods Headphones,1,150,11/30/19 16:46,"984 Hickory St, San Francisco, CA 94016" +288798,Macbook Pro Laptop,1,1700,11/30/19 21:58,"674 4th St, Seattle, WA 98101" +288799,USB-C Charging Cable,1,11.95,11/28/19 22:21,"227 1st St, San Francisco, CA 94016" +288800,AAA Batteries (4-pack),2,2.99,11/05/19 21:42,"332 Madison St, Seattle, WA 98101" +288801,AAA Batteries (4-pack),1,2.99,11/17/19 11:22,"396 Johnson St, San Francisco, CA 94016" +288802,Apple Airpods Headphones,1,150,11/05/19 11:59,"438 Jefferson St, Los Angeles, CA 90001" +288803,Bose SoundSport Headphones,1,99.99,11/01/19 13:30,"283 11th St, Portland, ME 04101" +288804,Flatscreen TV,1,300,11/07/19 22:58,"575 Forest St, Boston, MA 02215" +288805,AAA Batteries (4-pack),1,2.99,11/12/19 16:26,"716 Adams St, San Francisco, CA 94016" +288806,27in FHD Monitor,1,149.99,11/01/19 14:56,"269 Willow St, Dallas, TX 75001" +288807,AA Batteries (4-pack),1,3.84,11/03/19 18:16,"854 Highland St, New York City, NY 10001" +288808,USB-C Charging Cable,1,11.95,11/16/19 06:47,"603 Cherry St, San Francisco, CA 94016" +288809,USB-C Charging Cable,1,11.95,11/18/19 21:02,"953 4th St, Boston, MA 02215" +288810,AA Batteries (4-pack),1,3.84,11/19/19 13:40,"661 Lake St, Dallas, TX 75001" +288811,Lightning Charging Cable,1,14.95,11/19/19 16:34,"660 North St, Atlanta, GA 30301" +288812,27in FHD Monitor,1,149.99,11/15/19 19:48,"184 Park St, Los Angeles, CA 90001" +288813,Apple Airpods Headphones,1,150,11/18/19 12:57,"396 1st St, Portland, OR 97035" +288814,USB-C Charging Cable,1,11.95,11/07/19 10:47,"810 North St, Los Angeles, CA 90001" +288815,USB-C Charging Cable,1,11.95,11/08/19 20:01,"117 South St, Seattle, WA 98101" +288816,AAA Batteries (4-pack),1,2.99,11/03/19 13:59,"188 Park St, Los Angeles, CA 90001" +288817,USB-C Charging Cable,1,11.95,11/14/19 17:22,"523 Madison St, Portland, OR 97035" +288818,Lightning Charging Cable,1,14.95,11/24/19 05:11,"956 West St, Los Angeles, CA 90001" +288819,USB-C Charging Cable,1,11.95,11/14/19 15:43,"959 Sunset St, Boston, MA 02215" +288820,Lightning Charging Cable,1,14.95,11/12/19 11:29,"789 Hickory St, Los Angeles, CA 90001" +288821,Macbook Pro Laptop,1,1700,11/19/19 14:25,"52 Jefferson St, Austin, TX 73301" +288822,27in 4K Gaming Monitor,1,389.99,11/24/19 15:26,"679 6th St, Los Angeles, CA 90001" +288823,Wired Headphones,1,11.99,11/28/19 10:57,"356 8th St, Boston, MA 02215" +288824,27in FHD Monitor,1,149.99,11/28/19 17:37,"879 8th St, Dallas, TX 75001" +288825,USB-C Charging Cable,1,11.95,11/15/19 20:30,"470 Park St, Portland, ME 04101" +288826,Lightning Charging Cable,1,14.95,11/01/19 22:11,"430 Wilson St, Portland, ME 04101" +288827,Vareebadd Phone,1,400,11/07/19 14:53,"545 12th St, Atlanta, GA 30301" +288828,Vareebadd Phone,1,400,11/14/19 19:10,"462 Forest St, Portland, OR 97035" +288829,Bose SoundSport Headphones,1,99.99,11/18/19 00:09,"194 Church St, New York City, NY 10001" +288830,Lightning Charging Cable,1,14.95,11/10/19 20:03,"915 2nd St, Dallas, TX 75001" +288831,Apple Airpods Headphones,1,150,11/29/19 13:25,"195 Pine St, San Francisco, CA 94016" +288832,Bose SoundSport Headphones,1,99.99,11/20/19 14:23,"658 Walnut St, Austin, TX 73301" +,,,,, +288833,USB-C Charging Cable,1,11.95,11/17/19 19:40,"850 1st St, Boston, MA 02215" +288834,27in FHD Monitor,1,149.99,11/16/19 16:07,"238 Meadow St, Los Angeles, CA 90001" +288835,Bose SoundSport Headphones,1,99.99,11/27/19 21:54,"956 Center St, Los Angeles, CA 90001" +288836,Wired Headphones,1,11.99,11/24/19 13:15,"952 12th St, Dallas, TX 75001" +288837,Wired Headphones,1,11.99,11/20/19 13:14,"117 6th St, New York City, NY 10001" +288838,USB-C Charging Cable,1,11.95,11/16/19 17:16,"128 13th St, Seattle, WA 98101" +288839,AAA Batteries (4-pack),1,2.99,11/09/19 21:35,"929 Chestnut St, Atlanta, GA 30301" +288840,USB-C Charging Cable,1,11.95,11/20/19 09:36,"205 Park St, San Francisco, CA 94016" +288841,Lightning Charging Cable,1,14.95,11/10/19 19:38,"757 Madison St, Seattle, WA 98101" +288842,20in Monitor,1,109.99,11/01/19 09:11,"627 Forest St, Los Angeles, CA 90001" +288843,Flatscreen TV,1,300,11/04/19 13:15,"671 14th St, Atlanta, GA 30301" +288844,20in Monitor,1,109.99,11/01/19 10:20,"978 Church St, New York City, NY 10001" +288845,Bose SoundSport Headphones,1,99.99,11/05/19 08:21,"48 Park St, New York City, NY 10001" +288846,Apple Airpods Headphones,1,150,11/19/19 14:25,"859 Johnson St, San Francisco, CA 94016" +288847,AA Batteries (4-pack),2,3.84,11/27/19 13:43,"848 5th St, San Francisco, CA 94016" +288848,Lightning Charging Cable,1,14.95,11/22/19 09:30,"573 4th St, Seattle, WA 98101" +288849,Lightning Charging Cable,1,14.95,11/01/19 10:59,"922 Park St, New York City, NY 10001" +288850,Lightning Charging Cable,1,14.95,11/04/19 20:09,"769 Center St, Dallas, TX 75001" +288851,Apple Airpods Headphones,1,150,11/08/19 11:28,"629 West St, Los Angeles, CA 90001" +288852,ThinkPad Laptop,1,999.99,11/14/19 19:17,"334 Park St, Los Angeles, CA 90001" +288853,Macbook Pro Laptop,1,1700,11/11/19 10:49,"367 North St, Los Angeles, CA 90001" +288854,AA Batteries (4-pack),1,3.84,11/21/19 21:31,"304 6th St, Boston, MA 02215" +288855,USB-C Charging Cable,1,11.95,11/21/19 11:03,"294 11th St, Atlanta, GA 30301" +288856,Macbook Pro Laptop,1,1700,11/14/19 12:20,"199 Lakeview St, New York City, NY 10001" +288857,AAA Batteries (4-pack),1,2.99,11/01/19 12:43,"246 Forest St, San Francisco, CA 94016" +288858,ThinkPad Laptop,1,999.99,11/19/19 11:04,"507 7th St, San Francisco, CA 94016" +288859,AA Batteries (4-pack),2,3.84,11/06/19 09:26,"223 12th St, San Francisco, CA 94016" +288860,AAA Batteries (4-pack),1,2.99,11/16/19 14:59,"11 Wilson St, Austin, TX 73301" +288861,Lightning Charging Cable,1,14.95,11/22/19 20:43,"356 Chestnut St, New York City, NY 10001" +288862,AA Batteries (4-pack),3,3.84,11/14/19 12:21,"671 7th St, Dallas, TX 75001" +288863,AA Batteries (4-pack),1,3.84,11/21/19 17:41,"696 Walnut St, Boston, MA 02215" +288864,AAA Batteries (4-pack),1,2.99,11/03/19 11:39,"69 7th St, San Francisco, CA 94016" +288864,Lightning Charging Cable,3,14.95,11/03/19 11:39,"69 7th St, San Francisco, CA 94016" +288865,USB-C Charging Cable,3,11.95,11/17/19 11:35,"695 South St, Atlanta, GA 30301" +288866,AA Batteries (4-pack),1,3.84,11/07/19 19:43,"665 Jackson St, Dallas, TX 75001" +288867,Flatscreen TV,1,300,11/26/19 09:53,"891 11th St, Los Angeles, CA 90001" +288868,27in FHD Monitor,1,149.99,11/30/19 11:39,"853 Spruce St, Austin, TX 73301" +288869,AAA Batteries (4-pack),2,2.99,11/28/19 16:31,"868 Lincoln St, Los Angeles, CA 90001" +288870,AAA Batteries (4-pack),1,2.99,11/26/19 14:49,"363 Center St, San Francisco, CA 94016" +288871,Apple Airpods Headphones,1,150,11/30/19 12:03,"40 Meadow St, Portland, OR 97035" +288872,Lightning Charging Cable,1,14.95,11/24/19 15:35,"968 South St, New York City, NY 10001" +,,,,, +288873,Lightning Charging Cable,1,14.95,11/21/19 11:58,"991 10th St, Atlanta, GA 30301" +288874,Wired Headphones,1,11.99,11/29/19 00:23,"129 Highland St, Dallas, TX 75001" +288875,Bose SoundSport Headphones,1,99.99,11/09/19 13:09,"866 Park St, San Francisco, CA 94016" +288876,Vareebadd Phone,1,400,11/13/19 02:39,"580 North St, Boston, MA 02215" +288876,USB-C Charging Cable,1,11.95,11/13/19 02:39,"580 North St, Boston, MA 02215" +288877,Wired Headphones,1,11.99,11/29/19 19:02,"262 Highland St, Los Angeles, CA 90001" +288878,27in FHD Monitor,1,149.99,11/28/19 15:17,"812 8th St, Seattle, WA 98101" +288879,Lightning Charging Cable,1,14.95,11/14/19 20:53,"148 2nd St, Atlanta, GA 30301" +288880,USB-C Charging Cable,1,11.95,11/27/19 12:24,"109 Adams St, Seattle, WA 98101" +288881,Apple Airpods Headphones,1,150,11/22/19 11:43,"414 Park St, Atlanta, GA 30301" +288882,USB-C Charging Cable,1,11.95,11/04/19 23:25,"513 Meadow St, Portland, OR 97035" +288883,AA Batteries (4-pack),1,3.84,11/14/19 09:29,"774 Johnson St, New York City, NY 10001" +288884,34in Ultrawide Monitor,1,379.99,11/14/19 01:47,"139 Willow St, Boston, MA 02215" +288885,34in Ultrawide Monitor,1,379.99,11/20/19 19:20,"726 Washington St, New York City, NY 10001" +288886,Wired Headphones,1,11.99,11/21/19 08:18,"459 1st St, Austin, TX 73301" +288886,34in Ultrawide Monitor,1,379.99,11/21/19 08:18,"459 1st St, Austin, TX 73301" +288887,Bose SoundSport Headphones,1,99.99,11/11/19 18:54,"692 West St, Seattle, WA 98101" +288888,Bose SoundSport Headphones,1,99.99,11/28/19 16:41,"834 Lake St, Los Angeles, CA 90001" +288889,Apple Airpods Headphones,1,150,11/09/19 07:08,"788 14th St, New York City, NY 10001" +288890,iPhone,1,700,11/30/19 23:03,"607 Meadow St, Los Angeles, CA 90001" +288891,Lightning Charging Cable,1,14.95,11/28/19 23:03,"690 Ridge St, Portland, OR 97035" +288891,Lightning Charging Cable,1,14.95,11/28/19 23:03,"690 Ridge St, Portland, OR 97035" +288892,AAA Batteries (4-pack),1,2.99,11/21/19 11:50,"287 2nd St, Los Angeles, CA 90001" +288893,Google Phone,1,600,11/12/19 17:10,"354 Forest St, Portland, OR 97035" +288893,USB-C Charging Cable,1,11.95,11/12/19 17:10,"354 Forest St, Portland, OR 97035" +288894,Wired Headphones,1,11.99,11/22/19 00:14,"492 4th St, San Francisco, CA 94016" +288895,27in 4K Gaming Monitor,1,389.99,11/28/19 13:38,"492 Wilson St, Los Angeles, CA 90001" +288896,ThinkPad Laptop,1,999.99,11/01/19 22:45,"90 Cedar St, New York City, NY 10001" +288897,Google Phone,1,600,11/24/19 22:38,"573 1st St, Dallas, TX 75001" +288898,27in 4K Gaming Monitor,1,389.99,11/27/19 16:02,"77 4th St, Seattle, WA 98101" +288899,iPhone,1,700,11/13/19 22:27,"909 Maple St, New York City, NY 10001" +288900,AAA Batteries (4-pack),1,2.99,11/30/19 15:09,"802 Center St, San Francisco, CA 94016" +288901,iPhone,1,700,11/11/19 16:04,"400 River St, Los Angeles, CA 90001" +288902,27in FHD Monitor,1,149.99,11/27/19 16:20,"453 Lakeview St, Seattle, WA 98101" +288903,Apple Airpods Headphones,1,150,11/15/19 09:01,"796 Wilson St, Seattle, WA 98101" +288904,Apple Airpods Headphones,1,150,11/17/19 10:07,"836 1st St, Boston, MA 02215" +288905,Lightning Charging Cable,1,14.95,11/19/19 14:55,"887 Highland St, Los Angeles, CA 90001" +288906,Lightning Charging Cable,1,14.95,11/15/19 06:47,"63 Lincoln St, Boston, MA 02215" +288907,20in Monitor,1,109.99,11/25/19 20:22,"832 7th St, San Francisco, CA 94016" +288908,Wired Headphones,1,11.99,11/20/19 17:54,"384 Forest St, Atlanta, GA 30301" +288909,AA Batteries (4-pack),1,3.84,11/29/19 19:42,"340 Lakeview St, Seattle, WA 98101" +288910,AAA Batteries (4-pack),1,2.99,11/13/19 14:08,"973 Sunset St, San Francisco, CA 94016" +288911,Google Phone,1,600,11/13/19 17:53,"211 Wilson St, Los Angeles, CA 90001" +288911,USB-C Charging Cable,2,11.95,11/13/19 17:53,"211 Wilson St, Los Angeles, CA 90001" +288912,27in 4K Gaming Monitor,1,389.99,11/01/19 18:31,"915 South St, New York City, NY 10001" +288913,Wired Headphones,1,11.99,11/28/19 09:12,"462 Johnson St, New York City, NY 10001" +288914,Wired Headphones,1,11.99,11/09/19 16:48,"533 Forest St, Dallas, TX 75001" +288915,Bose SoundSport Headphones,1,99.99,11/11/19 17:45,"435 Sunset St, San Francisco, CA 94016" +288915,AAA Batteries (4-pack),1,2.99,11/11/19 17:45,"435 Sunset St, San Francisco, CA 94016" +288916,Lightning Charging Cable,1,14.95,11/18/19 13:59,"365 Main St, Boston, MA 02215" +288917,Bose SoundSport Headphones,1,99.99,11/02/19 20:38,"442 Washington St, New York City, NY 10001" +288918,Bose SoundSport Headphones,1,99.99,11/14/19 03:37,"348 Church St, Boston, MA 02215" +288919,34in Ultrawide Monitor,1,379.99,11/17/19 20:47,"510 Elm St, New York City, NY 10001" +288920,iPhone,1,700,11/07/19 12:29,"526 8th St, New York City, NY 10001" +288920,Lightning Charging Cable,1,14.95,11/07/19 12:29,"526 8th St, New York City, NY 10001" +288921,Macbook Pro Laptop,1,1700,11/03/19 19:07,"389 Elm St, Portland, ME 04101" +288922,Flatscreen TV,1,300,11/04/19 14:18,"551 Lakeview St, San Francisco, CA 94016" +288923,Apple Airpods Headphones,1,150,11/27/19 13:02,"935 North St, Los Angeles, CA 90001" +288924,Bose SoundSport Headphones,1,99.99,11/18/19 15:35,"827 1st St, Dallas, TX 75001" +288925,Bose SoundSport Headphones,1,99.99,11/05/19 12:46,"701 4th St, Atlanta, GA 30301" +288926,Wired Headphones,1,11.99,11/05/19 09:15,"113 2nd St, Boston, MA 02215" +288927,34in Ultrawide Monitor,1,379.99,11/05/19 00:44,"652 Sunset St, San Francisco, CA 94016" +288928,AAA Batteries (4-pack),1,2.99,11/14/19 13:56,"57 1st St, Boston, MA 02215" +288929,Macbook Pro Laptop,1,1700,11/02/19 22:16,"842 Forest St, Boston, MA 02215" +288930,Lightning Charging Cable,2,14.95,11/10/19 22:03,"25 Cherry St, San Francisco, CA 94016" +288931,Bose SoundSport Headphones,1,99.99,11/07/19 17:32,"871 West St, San Francisco, CA 94016" +288932,LG Dryer,1,600.0,11/06/19 10:05,"564 14th St, Los Angeles, CA 90001" +288933,USB-C Charging Cable,1,11.95,11/20/19 00:04,"573 Lincoln St, San Francisco, CA 94016" +288934,27in FHD Monitor,1,149.99,11/07/19 16:51,"503 Jefferson St, Seattle, WA 98101" +288935,USB-C Charging Cable,2,11.95,11/06/19 15:23,"645 Church St, Atlanta, GA 30301" +288936,Apple Airpods Headphones,1,150,11/23/19 18:17,"328 Wilson St, Boston, MA 02215" +288937,Vareebadd Phone,1,400,11/22/19 22:24,"567 Dogwood St, San Francisco, CA 94016" +288938,ThinkPad Laptop,1,999.99,11/15/19 14:09,"505 Chestnut St, Atlanta, GA 30301" +288939,AA Batteries (4-pack),1,3.84,11/05/19 14:24,"271 Elm St, Portland, OR 97035" +288940,AAA Batteries (4-pack),1,2.99,11/24/19 10:43,"237 Ridge St, Atlanta, GA 30301" +288941,Wired Headphones,1,11.99,11/09/19 16:24,"810 12th St, Los Angeles, CA 90001" +288942,Lightning Charging Cable,1,14.95,11/09/19 12:09,"255 North St, San Francisco, CA 94016" +288943,34in Ultrawide Monitor,1,379.99,11/17/19 23:14,"685 Hill St, Portland, OR 97035" +288944,Lightning Charging Cable,1,14.95,11/01/19 19:46,"770 Lake St, Boston, MA 02215" +288945,Lightning Charging Cable,1,14.95,11/13/19 21:14,"469 South St, Austin, TX 73301" +288946,AA Batteries (4-pack),3,3.84,11/17/19 19:12,"730 Ridge St, Los Angeles, CA 90001" +288947,Flatscreen TV,1,300,11/09/19 20:24,"59 Jefferson St, San Francisco, CA 94016" +288948,Wired Headphones,1,11.99,11/02/19 20:38,"509 Park St, Seattle, WA 98101" +288949,Lightning Charging Cable,1,14.95,11/27/19 13:23,"111 9th St, San Francisco, CA 94016" +288950,Wired Headphones,2,11.99,11/08/19 16:26,"586 River St, Atlanta, GA 30301" +288951,Lightning Charging Cable,1,14.95,11/02/19 20:27,"383 8th St, Los Angeles, CA 90001" +288952,Apple Airpods Headphones,1,150,11/05/19 17:40,"748 11th St, Dallas, TX 75001" +288953,AA Batteries (4-pack),1,3.84,11/11/19 20:12,"423 Cherry St, Los Angeles, CA 90001" +288954,Bose SoundSport Headphones,1,99.99,11/04/19 09:38,"775 West St, San Francisco, CA 94016" +288955,Lightning Charging Cable,1,14.95,11/09/19 21:57,"561 Hill St, Los Angeles, CA 90001" +288956,Bose SoundSport Headphones,1,99.99,11/18/19 22:30,"628 Madison St, Atlanta, GA 30301" +288957,AA Batteries (4-pack),1,3.84,11/17/19 22:42,"909 Adams St, Portland, OR 97035" +288958,USB-C Charging Cable,2,11.95,11/22/19 18:11,"176 Dogwood St, Seattle, WA 98101" +288959,Google Phone,1,600,11/06/19 22:50,"338 Wilson St, New York City, NY 10001" +288959,USB-C Charging Cable,1,11.95,11/06/19 22:50,"338 Wilson St, New York City, NY 10001" +288960,AA Batteries (4-pack),1,3.84,11/05/19 04:31,"654 9th St, Portland, OR 97035" +288961,34in Ultrawide Monitor,1,379.99,11/18/19 19:34,"245 Washington St, Seattle, WA 98101" +288962,USB-C Charging Cable,1,11.95,11/24/19 11:50,"81 West St, Los Angeles, CA 90001" +288963,Apple Airpods Headphones,1,150,11/29/19 08:15,"793 Hickory St, San Francisco, CA 94016" +288964,AAA Batteries (4-pack),2,2.99,11/22/19 23:28,"999 6th St, Seattle, WA 98101" +288965,AA Batteries (4-pack),1,3.84,11/13/19 10:16,"647 Willow St, Los Angeles, CA 90001" +288966,Bose SoundSport Headphones,1,99.99,11/20/19 13:27,"798 Chestnut St, Atlanta, GA 30301" +288967,Flatscreen TV,1,300,11/19/19 12:45,"685 Elm St, Los Angeles, CA 90001" +288968,Wired Headphones,1,11.99,11/05/19 16:40,"41 7th St, San Francisco, CA 94016" +288969,27in FHD Monitor,1,149.99,11/07/19 19:45,"453 Lincoln St, San Francisco, CA 94016" +288970,AA Batteries (4-pack),1,3.84,11/09/19 18:29,"744 Sunset St, New York City, NY 10001" +288971,USB-C Charging Cable,1,11.95,11/02/19 01:47,"836 Spruce St, Dallas, TX 75001" +288972,Apple Airpods Headphones,1,150,11/18/19 13:14,"788 Willow St, San Francisco, CA 94016" +288973,Lightning Charging Cable,1,14.95,11/26/19 21:31,"579 Pine St, Dallas, TX 75001" +288974,AA Batteries (4-pack),1,3.84,11/23/19 22:18,"710 10th St, Portland, OR 97035" +288975,Apple Airpods Headphones,1,150,11/27/19 14:40,"594 Sunset St, New York City, NY 10001" +288976,Macbook Pro Laptop,1,1700,11/26/19 23:31,"389 Johnson St, Dallas, TX 75001" +288977,AAA Batteries (4-pack),1,2.99,11/19/19 17:42,"980 South St, Boston, MA 02215" +288978,Wired Headphones,1,11.99,11/27/19 12:52,"654 River St, New York City, NY 10001" +288979,Macbook Pro Laptop,1,1700,11/19/19 17:36,"810 South St, San Francisco, CA 94016" +288980,Bose SoundSport Headphones,1,99.99,11/22/19 20:00,"935 12th St, Seattle, WA 98101" +288981,Google Phone,1,600,11/19/19 02:08,"492 4th St, Atlanta, GA 30301" +288981,USB-C Charging Cable,1,11.95,11/19/19 02:08,"492 4th St, Atlanta, GA 30301" +288982,LG Washing Machine,1,600.0,11/29/19 14:27,"714 Center St, Seattle, WA 98101" +288983,USB-C Charging Cable,2,11.95,11/12/19 10:33,"404 Adams St, New York City, NY 10001" +288984,USB-C Charging Cable,1,11.95,11/25/19 16:20,"161 Spruce St, Los Angeles, CA 90001" +288985,AAA Batteries (4-pack),1,2.99,11/03/19 22:46,"550 Cedar St, Atlanta, GA 30301" +288986,Flatscreen TV,1,300,11/28/19 08:40,"742 Sunset St, Atlanta, GA 30301" +288987,Google Phone,1,600,11/12/19 09:30,"397 Walnut St, Seattle, WA 98101" +288987,Bose SoundSport Headphones,1,99.99,11/12/19 09:30,"397 Walnut St, Seattle, WA 98101" +288988,AA Batteries (4-pack),1,3.84,11/13/19 08:12,"397 Sunset St, New York City, NY 10001" +288988,USB-C Charging Cable,1,11.95,11/13/19 08:12,"397 Sunset St, New York City, NY 10001" +288989,Macbook Pro Laptop,1,1700,11/17/19 17:55,"531 South St, San Francisco, CA 94016" +288990,27in 4K Gaming Monitor,1,389.99,11/29/19 19:52,"761 Hill St, Boston, MA 02215" +288991,USB-C Charging Cable,1,11.95,11/04/19 08:56,"187 Wilson St, Austin, TX 73301" +288992,iPhone,1,700,11/08/19 17:26,"493 Park St, San Francisco, CA 94016" +288993,iPhone,1,700,11/12/19 19:42,"560 Lakeview St, Dallas, TX 75001" +288993,Wired Headphones,1,11.99,11/12/19 19:42,"560 Lakeview St, Dallas, TX 75001" +288994,AA Batteries (4-pack),1,3.84,11/07/19 09:15,"749 Ridge St, Boston, MA 02215" +288995,Wired Headphones,1,11.99,11/24/19 16:24,"385 Cherry St, New York City, NY 10001" +288996,AA Batteries (4-pack),1,3.84,11/21/19 19:01,"905 Hickory St, Seattle, WA 98101" +288997,AAA Batteries (4-pack),1,2.99,11/07/19 23:52,"471 Elm St, Los Angeles, CA 90001" +288998,AAA Batteries (4-pack),1,2.99,11/14/19 10:32,"62 Chestnut St, Los Angeles, CA 90001" +288999,Lightning Charging Cable,1,14.95,11/27/19 20:32,"866 Sunset St, San Francisco, CA 94016" +288999,AAA Batteries (4-pack),1,2.99,11/27/19 20:32,"866 Sunset St, San Francisco, CA 94016" +289000,Flatscreen TV,1,300,11/13/19 21:03,"124 4th St, Austin, TX 73301" +289001,27in FHD Monitor,1,149.99,11/26/19 14:53,"864 Hickory St, Dallas, TX 75001" +289002,AA Batteries (4-pack),1,3.84,11/10/19 15:04,"776 Elm St, Los Angeles, CA 90001" +289003,AA Batteries (4-pack),1,3.84,11/21/19 21:23,"895 Willow St, Los Angeles, CA 90001" +289004,27in FHD Monitor,1,149.99,11/30/19 17:01,"452 Pine St, New York City, NY 10001" +289005,Lightning Charging Cable,1,14.95,11/22/19 10:00,"357 Madison St, Austin, TX 73301" +289006,Lightning Charging Cable,1,14.95,11/12/19 16:29,"973 12th St, San Francisco, CA 94016" +289007,Macbook Pro Laptop,1,1700,11/30/19 09:40,"609 Hill St, Los Angeles, CA 90001" +289008,27in FHD Monitor,1,149.99,11/27/19 09:50,"409 South St, Portland, OR 97035" +289009,Bose SoundSport Headphones,1,99.99,11/20/19 17:24,"159 11th St, New York City, NY 10001" +289009,20in Monitor,1,109.99,11/20/19 17:24,"159 11th St, New York City, NY 10001" +289010,Lightning Charging Cable,1,14.95,11/14/19 09:40,"509 Highland St, Boston, MA 02215" +289011,Apple Airpods Headphones,1,150,11/01/19 16:42,"437 Maple St, Portland, OR 97035" +289012,Apple Airpods Headphones,1,150,11/23/19 10:42,"889 Main St, San Francisco, CA 94016" +289012,27in 4K Gaming Monitor,1,389.99,11/23/19 10:42,"889 Main St, San Francisco, CA 94016" +289013,Bose SoundSport Headphones,1,99.99,11/29/19 09:35,"790 5th St, Atlanta, GA 30301" +289014,27in 4K Gaming Monitor,1,389.99,11/16/19 12:42,"513 Park St, Seattle, WA 98101" +289015,27in FHD Monitor,1,149.99,11/10/19 16:24,"534 5th St, San Francisco, CA 94016" +289016,Apple Airpods Headphones,1,150,11/27/19 20:09,"158 Meadow St, New York City, NY 10001" +289017,Lightning Charging Cable,2,14.95,11/07/19 20:11,"911 1st St, Seattle, WA 98101" +289018,USB-C Charging Cable,1,11.95,11/03/19 10:51,"251 9th St, Atlanta, GA 30301" +289019,Lightning Charging Cable,1,14.95,11/26/19 13:21,"6 5th St, Dallas, TX 75001" +289020,Bose SoundSport Headphones,1,99.99,11/23/19 10:29,"850 Dogwood St, San Francisco, CA 94016" +289021,Google Phone,1,600,11/04/19 09:36,"65 Ridge St, New York City, NY 10001" +289022,USB-C Charging Cable,1,11.95,11/01/19 04:07,"676 Wilson St, New York City, NY 10001" +289023,27in FHD Monitor,1,149.99,11/28/19 10:03,"213 10th St, San Francisco, CA 94016" +289024,USB-C Charging Cable,1,11.95,11/03/19 11:35,"310 14th St, San Francisco, CA 94016" +289025,ThinkPad Laptop,1,999.99,11/21/19 21:30,"391 Lake St, Seattle, WA 98101" +289026,34in Ultrawide Monitor,1,379.99,11/26/19 10:56,"564 11th St, Seattle, WA 98101" +289027,Vareebadd Phone,1,400,11/15/19 22:05,"49 Willow St, Los Angeles, CA 90001" +289028,Bose SoundSport Headphones,1,99.99,11/26/19 09:12,"465 10th St, Los Angeles, CA 90001" +289029,Google Phone,1,600,11/04/19 21:08,"165 6th St, Austin, TX 73301" +289030,Bose SoundSport Headphones,1,99.99,11/11/19 19:31,"640 Center St, Los Angeles, CA 90001" +289031,AAA Batteries (4-pack),2,2.99,11/06/19 22:32,"669 4th St, New York City, NY 10001" +289032,Lightning Charging Cable,1,14.95,11/23/19 18:35,"653 Maple St, Los Angeles, CA 90001" +289033,Wired Headphones,1,11.99,11/28/19 21:23,"261 Lincoln St, Seattle, WA 98101" +289034,AA Batteries (4-pack),2,3.84,11/27/19 17:28,"374 Wilson St, San Francisco, CA 94016" +289035,Wired Headphones,1,11.99,11/19/19 18:52,"118 7th St, Seattle, WA 98101" +289036,Google Phone,1,600,11/12/19 18:42,"185 Willow St, San Francisco, CA 94016" +289037,Bose SoundSport Headphones,1,99.99,11/03/19 14:53,"71 Lincoln St, Boston, MA 02215" +289038,Wired Headphones,1,11.99,11/15/19 15:14,"262 Walnut St, San Francisco, CA 94016" +289039,20in Monitor,1,109.99,11/30/19 11:13,"765 Hill St, Los Angeles, CA 90001" +289040,AAA Batteries (4-pack),1,2.99,11/16/19 20:19,"790 Sunset St, Los Angeles, CA 90001" +289041,Google Phone,1,600,11/23/19 11:50,"754 Jefferson St, San Francisco, CA 94016" +289041,Wired Headphones,1,11.99,11/23/19 11:50,"754 Jefferson St, San Francisco, CA 94016" +289042,AA Batteries (4-pack),1,3.84,11/16/19 13:51,"237 Ridge St, San Francisco, CA 94016" +289043,Lightning Charging Cable,1,14.95,11/24/19 09:43,"746 11th St, San Francisco, CA 94016" +289044,Bose SoundSport Headphones,1,99.99,11/27/19 15:51,"953 Park St, San Francisco, CA 94016" +289045,AAA Batteries (4-pack),2,2.99,11/29/19 20:24,"295 Walnut St, San Francisco, CA 94016" +289046,Lightning Charging Cable,1,14.95,11/01/19 10:43,"650 Chestnut St, San Francisco, CA 94016" +289047,Bose SoundSport Headphones,1,99.99,11/03/19 13:58,"465 South St, Austin, TX 73301" +289048,Vareebadd Phone,1,400,11/02/19 07:03,"171 Jefferson St, Seattle, WA 98101" +289049,Apple Airpods Headphones,1,150,11/30/19 12:32,"146 13th St, New York City, NY 10001" +289050,Flatscreen TV,1,300,11/09/19 19:55,"423 Dogwood St, San Francisco, CA 94016" +289051,Bose SoundSport Headphones,1,99.99,11/15/19 23:41,"489 Spruce St, Boston, MA 02215" +289052,Lightning Charging Cable,1,14.95,11/22/19 19:03,"293 Sunset St, Los Angeles, CA 90001" +289053,Bose SoundSport Headphones,1,99.99,11/28/19 11:42,"41 6th St, Seattle, WA 98101" +289054,Wired Headphones,1,11.99,11/18/19 16:42,"668 6th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +289055,20in Monitor,1,109.99,11/05/19 10:02,"594 Lincoln St, Portland, OR 97035" +289056,Wired Headphones,1,11.99,11/23/19 20:13,"42 South St, Atlanta, GA 30301" +289057,Wired Headphones,1,11.99,11/24/19 12:36,"47 5th St, San Francisco, CA 94016" +289058,34in Ultrawide Monitor,1,379.99,11/02/19 14:30,"376 Main St, Boston, MA 02215" +289059,iPhone,1,700,11/10/19 20:51,"94 Washington St, Atlanta, GA 30301" +289060,Wired Headphones,1,11.99,11/02/19 09:58,"712 Pine St, Los Angeles, CA 90001" +289061,Lightning Charging Cable,1,14.95,11/25/19 22:34,"188 Park St, San Francisco, CA 94016" +289062,27in FHD Monitor,1,149.99,11/19/19 15:48,"216 6th St, Boston, MA 02215" +289063,AA Batteries (4-pack),2,3.84,11/06/19 08:49,"64 Willow St, Los Angeles, CA 90001" +289064,USB-C Charging Cable,1,11.95,11/09/19 17:23,"257 Lakeview St, San Francisco, CA 94016" +289065,AA Batteries (4-pack),1,3.84,11/09/19 10:43,"723 River St, New York City, NY 10001" +289066,Flatscreen TV,1,300,11/22/19 19:30,"376 13th St, Los Angeles, CA 90001" +289067,Lightning Charging Cable,1,14.95,11/09/19 11:23,"857 5th St, Atlanta, GA 30301" +289068,34in Ultrawide Monitor,1,379.99,11/19/19 15:19,"637 Wilson St, Boston, MA 02215" +289069,USB-C Charging Cable,1,11.95,11/28/19 13:10,"249 5th St, San Francisco, CA 94016" +289070,Apple Airpods Headphones,1,150,11/21/19 20:54,"956 Forest St, Boston, MA 02215" +289071,Wired Headphones,1,11.99,11/30/19 22:07,"42 River St, Seattle, WA 98101" +289072,Macbook Pro Laptop,1,1700,11/24/19 22:00,"798 North St, Austin, TX 73301" +289073,34in Ultrawide Monitor,1,379.99,11/07/19 23:41,"966 Spruce St, Los Angeles, CA 90001" +289074,Macbook Pro Laptop,1,1700,11/03/19 20:39,"494 Forest St, San Francisco, CA 94016" +289075,AAA Batteries (4-pack),2,2.99,11/22/19 15:20,"471 Center St, Dallas, TX 75001" +289076,AAA Batteries (4-pack),1,2.99,11/23/19 09:49,"567 7th St, San Francisco, CA 94016" +289077,27in FHD Monitor,1,149.99,11/20/19 08:26,"955 13th St, San Francisco, CA 94016" +289078,27in 4K Gaming Monitor,1,389.99,11/05/19 13:16,"457 Lake St, Portland, OR 97035" +289079,Lightning Charging Cable,1,14.95,11/13/19 16:53,"397 Maple St, San Francisco, CA 94016" +289080,Wired Headphones,1,11.99,11/22/19 16:17,"250 Hill St, San Francisco, CA 94016" +289081,ThinkPad Laptop,1,999.99,11/22/19 12:23,"208 Sunset St, San Francisco, CA 94016" +289082,AAA Batteries (4-pack),2,2.99,11/30/19 14:34,"256 Adams St, Dallas, TX 75001" +289083,Vareebadd Phone,1,400,11/20/19 15:39,"149 Center St, San Francisco, CA 94016" +289084,Wired Headphones,1,11.99,11/24/19 13:28,"835 Johnson St, Los Angeles, CA 90001" +289085,Wired Headphones,1,11.99,11/05/19 07:11,"362 South St, San Francisco, CA 94016" +289086,AAA Batteries (4-pack),1,2.99,11/30/19 10:07,"814 Cherry St, Atlanta, GA 30301" +289087,AA Batteries (4-pack),1,3.84,11/16/19 20:05,"155 6th St, New York City, NY 10001" +289088,Bose SoundSport Headphones,1,99.99,11/01/19 13:55,"804 Main St, San Francisco, CA 94016" +289089,Lightning Charging Cable,1,14.95,11/03/19 12:42,"678 7th St, Portland, OR 97035" +289090,20in Monitor,1,109.99,11/17/19 12:59,"527 Lakeview St, San Francisco, CA 94016" +289091,20in Monitor,1,109.99,11/30/19 17:13,"447 Cherry St, San Francisco, CA 94016" +289092,Flatscreen TV,1,300,11/21/19 18:21,"984 Lake St, New York City, NY 10001" +289093,iPhone,1,700,11/28/19 05:36,"619 5th St, Portland, OR 97035" +289093,Apple Airpods Headphones,1,150,11/28/19 05:36,"619 5th St, Portland, OR 97035" +289094,USB-C Charging Cable,1,11.95,11/16/19 18:33,"860 North St, New York City, NY 10001" +289095,20in Monitor,1,109.99,11/08/19 18:42,"811 9th St, San Francisco, CA 94016" +289096,Macbook Pro Laptop,1,1700,11/30/19 13:06,"658 Hickory St, Los Angeles, CA 90001" +289096,27in 4K Gaming Monitor,1,389.99,11/30/19 13:06,"658 Hickory St, Los Angeles, CA 90001" +289097,USB-C Charging Cable,1,11.95,11/13/19 20:20,"777 Center St, San Francisco, CA 94016" +289098,Apple Airpods Headphones,1,150,11/24/19 11:02,"83 14th St, Austin, TX 73301" +289099,ThinkPad Laptop,1,999.99,11/04/19 20:32,"187 9th St, New York City, NY 10001" +289100,Google Phone,1,600,11/18/19 19:45,"561 Highland St, Atlanta, GA 30301" +289101,Bose SoundSport Headphones,1,99.99,11/28/19 11:23,"498 Hickory St, Los Angeles, CA 90001" +289102,Wired Headphones,1,11.99,11/20/19 09:11,"283 Highland St, Seattle, WA 98101" +289103,AAA Batteries (4-pack),1,2.99,11/02/19 00:44,"576 12th St, San Francisco, CA 94016" +289104,AAA Batteries (4-pack),1,2.99,11/26/19 13:48,"494 Park St, San Francisco, CA 94016" +289105,34in Ultrawide Monitor,1,379.99,11/10/19 15:07,"840 Pine St, Seattle, WA 98101" +289106,AAA Batteries (4-pack),1,2.99,11/18/19 17:24,"313 Lake St, New York City, NY 10001" +289107,LG Washing Machine,1,600.0,11/14/19 19:05,"856 1st St, New York City, NY 10001" +289108,Lightning Charging Cable,1,14.95,11/10/19 15:35,"956 11th St, New York City, NY 10001" +289109,USB-C Charging Cable,1,11.95,11/20/19 20:23,"376 Jefferson St, Los Angeles, CA 90001" +289110,Apple Airpods Headphones,1,150,11/30/19 09:40,"572 Ridge St, San Francisco, CA 94016" +289111,USB-C Charging Cable,1,11.95,11/03/19 09:35,"412 Jackson St, Atlanta, GA 30301" +289112,AAA Batteries (4-pack),1,2.99,11/19/19 10:33,"994 9th St, Dallas, TX 75001" +289113,Wired Headphones,1,11.99,11/17/19 11:40,"7 Main St, San Francisco, CA 94016" +289113,Lightning Charging Cable,1,14.95,11/17/19 11:40,"7 Main St, San Francisco, CA 94016" +289114,iPhone,1,700,11/29/19 20:26,"684 12th St, Los Angeles, CA 90001" +289115,USB-C Charging Cable,1,11.95,11/24/19 08:02,"4 1st St, Dallas, TX 75001" +289116,Lightning Charging Cable,1,14.95,11/27/19 09:31,"580 12th St, Seattle, WA 98101" +289117,Wired Headphones,2,11.99,11/18/19 00:28,"581 Jackson St, Dallas, TX 75001" +289118,Bose SoundSport Headphones,1,99.99,11/13/19 22:03,"989 Highland St, San Francisco, CA 94016" +289119,iPhone,1,700,11/01/19 13:05,"264 Lake St, Dallas, TX 75001" +289119,Lightning Charging Cable,1,14.95,11/01/19 13:05,"264 Lake St, Dallas, TX 75001" +289120,Lightning Charging Cable,1,14.95,11/23/19 19:21,"857 10th St, New York City, NY 10001" +289121,USB-C Charging Cable,2,11.95,11/14/19 00:07,"368 Wilson St, Boston, MA 02215" +289122,USB-C Charging Cable,2,11.95,11/15/19 17:06,"524 South St, Atlanta, GA 30301" +289123,Google Phone,1,600,11/06/19 03:15,"972 Lakeview St, Los Angeles, CA 90001" +289123,Wired Headphones,1,11.99,11/06/19 03:15,"972 Lakeview St, Los Angeles, CA 90001" +289124,AAA Batteries (4-pack),1,2.99,11/03/19 16:21,"884 10th St, Dallas, TX 75001" +289125,27in FHD Monitor,1,149.99,11/17/19 16:53,"695 Walnut St, Boston, MA 02215" +289126,ThinkPad Laptop,1,999.99,11/17/19 12:32,"314 Cherry St, Dallas, TX 75001" +289127,Wired Headphones,1,11.99,11/14/19 23:50,"663 Forest St, New York City, NY 10001" +289128,AAA Batteries (4-pack),1,2.99,11/06/19 20:06,"395 Walnut St, San Francisco, CA 94016" +289129,27in 4K Gaming Monitor,1,389.99,11/01/19 11:43,"423 Lake St, San Francisco, CA 94016" +289130,USB-C Charging Cable,1,11.95,11/20/19 09:46,"917 13th St, Seattle, WA 98101" +289131,27in 4K Gaming Monitor,1,389.99,11/29/19 14:48,"656 4th St, Los Angeles, CA 90001" +289132,Flatscreen TV,1,300,11/16/19 15:04,"718 Willow St, Los Angeles, CA 90001" +289133,Lightning Charging Cable,1,14.95,11/04/19 02:27,"712 South St, San Francisco, CA 94016" +289134,27in 4K Gaming Monitor,1,389.99,11/13/19 15:17,"78 Johnson St, Seattle, WA 98101" +289135,34in Ultrawide Monitor,1,379.99,11/13/19 15:41,"120 Johnson St, Austin, TX 73301" +289136,AA Batteries (4-pack),1,3.84,11/22/19 00:07,"616 1st St, San Francisco, CA 94016" +289137,USB-C Charging Cable,1,11.95,11/17/19 09:35,"432 8th St, San Francisco, CA 94016" +289138,Bose SoundSport Headphones,1,99.99,11/03/19 20:09,"261 Dogwood St, San Francisco, CA 94016" +289139,AAA Batteries (4-pack),1,2.99,11/12/19 17:41,"436 Johnson St, New York City, NY 10001" +289140,27in FHD Monitor,1,149.99,11/16/19 12:00,"782 12th St, New York City, NY 10001" +289141,Apple Airpods Headphones,1,150,11/12/19 09:07,"261 Church St, Austin, TX 73301" +289142,AA Batteries (4-pack),2,3.84,11/22/19 14:37,"957 Chestnut St, New York City, NY 10001" +289143,AAA Batteries (4-pack),1,2.99,11/20/19 17:07,"716 1st St, Dallas, TX 75001" +289144,Lightning Charging Cable,1,14.95,11/18/19 06:11,"869 7th St, Portland, OR 97035" +289145,Wired Headphones,1,11.99,11/10/19 13:57,"798 Main St, Seattle, WA 98101" +289146,iPhone,1,700,11/03/19 22:28,"644 10th St, Los Angeles, CA 90001" +289147,Lightning Charging Cable,1,14.95,11/14/19 16:07,"229 11th St, New York City, NY 10001" +289148,AAA Batteries (4-pack),2,2.99,11/25/19 16:51,"164 North St, San Francisco, CA 94016" +289149,USB-C Charging Cable,1,11.95,11/13/19 21:45,"310 Jackson St, San Francisco, CA 94016" +289150,AAA Batteries (4-pack),2,2.99,11/20/19 20:18,"383 10th St, Los Angeles, CA 90001" +289151,Lightning Charging Cable,1,14.95,11/25/19 18:22,"526 Hickory St, Dallas, TX 75001" +289152,Lightning Charging Cable,1,14.95,11/11/19 04:58,"398 Lakeview St, San Francisco, CA 94016" +289153,AA Batteries (4-pack),1,3.84,11/11/19 09:50,"11 4th St, Seattle, WA 98101" +289154,iPhone,1,700,11/13/19 08:18,"893 Meadow St, Atlanta, GA 30301" +289155,USB-C Charging Cable,1,11.95,11/20/19 16:36,"772 Spruce St, Seattle, WA 98101" +289156,ThinkPad Laptop,1,999.99,11/13/19 23:52,"814 Meadow St, San Francisco, CA 94016" +289157,AA Batteries (4-pack),1,3.84,11/23/19 05:29,"696 Walnut St, San Francisco, CA 94016" +289158,USB-C Charging Cable,1,11.95,11/10/19 23:24,"901 Dogwood St, Los Angeles, CA 90001" +289159,34in Ultrawide Monitor,1,379.99,11/27/19 21:30,"769 7th St, Seattle, WA 98101" +289160,AA Batteries (4-pack),1,3.84,11/30/19 11:32,"156 Spruce St, San Francisco, CA 94016" +289161,AAA Batteries (4-pack),1,2.99,11/30/19 14:08,"194 Chestnut St, Dallas, TX 75001" +289162,Bose SoundSport Headphones,1,99.99,11/06/19 09:49,"445 Main St, Boston, MA 02215" +289163,Apple Airpods Headphones,1,150,11/19/19 19:57,"917 Washington St, San Francisco, CA 94016" +289164,Apple Airpods Headphones,1,150,11/21/19 14:06,"543 Highland St, San Francisco, CA 94016" +289165,Lightning Charging Cable,1,14.95,11/19/19 12:55,"936 Adams St, Dallas, TX 75001" +289166,AA Batteries (4-pack),1,3.84,11/20/19 08:31,"611 Pine St, Los Angeles, CA 90001" +289167,AA Batteries (4-pack),1,3.84,11/05/19 10:59,"537 Center St, Dallas, TX 75001" +289168,AAA Batteries (4-pack),1,2.99,11/15/19 11:48,"783 Highland St, New York City, NY 10001" +289169,Lightning Charging Cable,1,14.95,11/16/19 11:28,"188 9th St, Dallas, TX 75001" +289170,Apple Airpods Headphones,1,150,11/10/19 09:34,"70 4th St, Los Angeles, CA 90001" +289171,AA Batteries (4-pack),1,3.84,11/27/19 10:40,"541 Spruce St, Atlanta, GA 30301" +289172,Apple Airpods Headphones,1,150,11/13/19 09:23,"87 Jackson St, Los Angeles, CA 90001" +289173,USB-C Charging Cable,1,11.95,11/26/19 19:36,"234 10th St, Seattle, WA 98101" +289174,AA Batteries (4-pack),1,3.84,11/28/19 05:00,"306 Lakeview St, Los Angeles, CA 90001" +289175,34in Ultrawide Monitor,1,379.99,11/04/19 11:44,"242 North St, New York City, NY 10001" +289176,USB-C Charging Cable,1,11.95,11/18/19 03:41,"158 Johnson St, Los Angeles, CA 90001" +289177,Flatscreen TV,1,300,11/09/19 00:20,"374 2nd St, San Francisco, CA 94016" +289178,34in Ultrawide Monitor,1,379.99,11/26/19 08:49,"517 Cedar St, San Francisco, CA 94016" +289179,Google Phone,1,600,11/03/19 23:07,"235 Spruce St, Seattle, WA 98101" +289180,Apple Airpods Headphones,1,150,11/10/19 06:07,"364 Meadow St, New York City, NY 10001" +289181,AAA Batteries (4-pack),2,2.99,11/25/19 16:05,"977 Jackson St, San Francisco, CA 94016" +289182,Lightning Charging Cable,1,14.95,11/25/19 12:53,"716 Chestnut St, Boston, MA 02215" +289183,Macbook Pro Laptop,1,1700,11/17/19 01:35,"797 Ridge St, Los Angeles, CA 90001" +289184,USB-C Charging Cable,1,11.95,11/12/19 15:12,"134 Washington St, San Francisco, CA 94016" +289185,USB-C Charging Cable,1,11.95,11/19/19 15:13,"82 12th St, San Francisco, CA 94016" +289186,USB-C Charging Cable,2,11.95,11/26/19 16:19,"769 Adams St, Seattle, WA 98101" +289187,AA Batteries (4-pack),2,3.84,11/08/19 20:59,"151 1st St, San Francisco, CA 94016" +289188,Apple Airpods Headphones,1,150,11/27/19 19:04,"398 Jackson St, Austin, TX 73301" +289189,iPhone,1,700,11/09/19 09:24,"357 Johnson St, Dallas, TX 75001" +289190,Lightning Charging Cable,1,14.95,11/01/19 12:46,"398 8th St, Atlanta, GA 30301" +289191,USB-C Charging Cable,1,11.95,11/03/19 08:45,"118 13th St, Seattle, WA 98101" +289192,Wired Headphones,1,11.99,11/26/19 12:20,"121 Lake St, San Francisco, CA 94016" +289193,Bose SoundSport Headphones,1,99.99,11/20/19 21:57,"516 Walnut St, Los Angeles, CA 90001" +289194,Google Phone,1,600,11/02/19 11:42,"121 Walnut St, San Francisco, CA 94016" +289194,USB-C Charging Cable,1,11.95,11/02/19 11:42,"121 Walnut St, San Francisco, CA 94016" +289195,Macbook Pro Laptop,1,1700,11/17/19 20:42,"807 South St, Los Angeles, CA 90001" +289196,LG Washing Machine,1,600.0,11/11/19 18:31,"579 Chestnut St, Los Angeles, CA 90001" +289197,Wired Headphones,1,11.99,11/21/19 16:47,"624 Adams St, Boston, MA 02215" +289198,Bose SoundSport Headphones,1,99.99,11/25/19 08:25,"694 Johnson St, New York City, NY 10001" +289199,AA Batteries (4-pack),1,3.84,11/03/19 10:11,"231 1st St, Los Angeles, CA 90001" +289200,Lightning Charging Cable,1,14.95,11/10/19 12:13,"464 Maple St, Boston, MA 02215" +289201,Flatscreen TV,1,300,11/08/19 10:38,"453 Adams St, Los Angeles, CA 90001" +289202,Lightning Charging Cable,1,14.95,11/29/19 23:00,"812 North St, Boston, MA 02215" +289203,Apple Airpods Headphones,1,150,11/16/19 07:05,"642 6th St, New York City, NY 10001" +289204,Wired Headphones,1,11.99,11/23/19 07:50,"685 Washington St, New York City, NY 10001" +289205,Wired Headphones,1,11.99,11/12/19 17:51,"566 4th St, San Francisco, CA 94016" +289206,Apple Airpods Headphones,1,150,11/04/19 20:25,"330 12th St, Seattle, WA 98101" +289207,USB-C Charging Cable,1,11.95,11/15/19 16:07,"833 West St, Boston, MA 02215" +289208,Bose SoundSport Headphones,1,99.99,11/04/19 14:53,"123 Dogwood St, Portland, OR 97035" +289209,AAA Batteries (4-pack),1,2.99,11/28/19 09:27,"374 2nd St, Boston, MA 02215" +289210,Lightning Charging Cable,1,14.95,11/09/19 01:38,"23 Lake St, New York City, NY 10001" +289211,Apple Airpods Headphones,1,150,11/08/19 12:31,"846 Walnut St, San Francisco, CA 94016" +289212,AAA Batteries (4-pack),2,2.99,11/11/19 14:47,"558 Highland St, Atlanta, GA 30301" +289213,Lightning Charging Cable,1,14.95,11/04/19 05:21,"789 Cedar St, San Francisco, CA 94016" +289214,AA Batteries (4-pack),1,3.84,11/10/19 22:03,"615 10th St, Los Angeles, CA 90001" +289215,AAA Batteries (4-pack),1,2.99,11/01/19 08:23,"705 12th St, Atlanta, GA 30301" +289216,AA Batteries (4-pack),1,3.84,11/14/19 19:05,"235 Chestnut St, New York City, NY 10001" +289217,27in 4K Gaming Monitor,1,389.99,11/25/19 01:26,"860 Wilson St, San Francisco, CA 94016" +289218,Wired Headphones,1,11.99,11/07/19 16:57,"307 Dogwood St, New York City, NY 10001" +289219,Bose SoundSport Headphones,1,99.99,11/24/19 18:25,"63 Church St, New York City, NY 10001" +289220,Macbook Pro Laptop,1,1700,11/21/19 14:08,"906 Park St, New York City, NY 10001" +289221,Wired Headphones,1,11.99,11/16/19 15:31,"73 Wilson St, Atlanta, GA 30301" +289222,34in Ultrawide Monitor,1,379.99,11/17/19 08:14,"558 11th St, Boston, MA 02215" +289223,AAA Batteries (4-pack),1,2.99,11/17/19 08:44,"445 Jackson St, New York City, NY 10001" +289224,AA Batteries (4-pack),1,3.84,11/25/19 22:45,"82 Hill St, San Francisco, CA 94016" +289225,Bose SoundSport Headphones,1,99.99,11/24/19 12:39,"973 Jefferson St, Boston, MA 02215" +289226,Lightning Charging Cable,1,14.95,11/19/19 18:15,"25 South St, San Francisco, CA 94016" +289227,Apple Airpods Headphones,1,150,11/17/19 14:35,"916 14th St, San Francisco, CA 94016" +289228,Wired Headphones,1,11.99,11/11/19 07:52,"116 Willow St, Los Angeles, CA 90001" +289229,USB-C Charging Cable,1,11.95,11/04/19 21:02,"75 Park St, Boston, MA 02215" +289230,Apple Airpods Headphones,1,150,11/02/19 11:41,"905 Pine St, San Francisco, CA 94016" +289231,Wired Headphones,1,11.99,11/04/19 02:08,"657 Lakeview St, Boston, MA 02215" +289232,27in 4K Gaming Monitor,1,389.99,11/20/19 22:45,"389 River St, Austin, TX 73301" +289233,Apple Airpods Headphones,1,150,11/18/19 11:55,"521 2nd St, Seattle, WA 98101" +289234,USB-C Charging Cable,1,11.95,11/13/19 14:03,"58 Jackson St, Los Angeles, CA 90001" +289235,34in Ultrawide Monitor,1,379.99,11/30/19 07:58,"276 Willow St, New York City, NY 10001" +289236,AA Batteries (4-pack),1,3.84,11/16/19 18:08,"419 Walnut St, New York City, NY 10001" +289237,USB-C Charging Cable,1,11.95,11/15/19 20:42,"979 Adams St, San Francisco, CA 94016" +289238,AA Batteries (4-pack),1,3.84,11/05/19 21:03,"748 North St, San Francisco, CA 94016" +289239,AAA Batteries (4-pack),1,2.99,11/15/19 20:01,"37 Jefferson St, Portland, OR 97035" +289240,USB-C Charging Cable,1,11.95,11/20/19 10:34,"279 Cedar St, New York City, NY 10001" +289241,AAA Batteries (4-pack),1,2.99,11/16/19 11:46,"557 Hill St, Seattle, WA 98101" +289242,Wired Headphones,1,11.99,11/13/19 17:30,"566 11th St, San Francisco, CA 94016" +289243,Lightning Charging Cable,1,14.95,11/09/19 06:44,"491 Spruce St, Boston, MA 02215" +289244,Bose SoundSport Headphones,1,99.99,11/30/19 15:50,"334 12th St, Austin, TX 73301" +289245,AAA Batteries (4-pack),1,2.99,11/01/19 13:02,"516 Center St, Los Angeles, CA 90001" +289246,LG Washing Machine,1,600.0,11/22/19 15:18,"471 Maple St, New York City, NY 10001" +289247,Lightning Charging Cable,1,14.95,11/10/19 11:31,"928 Johnson St, Dallas, TX 75001" +289248,Bose SoundSport Headphones,1,99.99,11/16/19 09:58,"273 Cherry St, Los Angeles, CA 90001" +289249,34in Ultrawide Monitor,1,379.99,11/16/19 19:07,"309 Adams St, Los Angeles, CA 90001" +289250,LG Dryer,1,600.0,11/13/19 20:32,"576 4th St, Los Angeles, CA 90001" +289251,USB-C Charging Cable,1,11.95,11/21/19 19:43,"388 Wilson St, Portland, OR 97035" +289252,USB-C Charging Cable,1,11.95,11/30/19 19:31,"355 Center St, Boston, MA 02215" +289253,AAA Batteries (4-pack),1,2.99,11/22/19 12:55,"324 Forest St, Los Angeles, CA 90001" +289254,Macbook Pro Laptop,1,1700,11/12/19 20:19,"534 Wilson St, San Francisco, CA 94016" +289255,Macbook Pro Laptop,1,1700,11/20/19 16:08,"13 Chestnut St, New York City, NY 10001" +289256,27in FHD Monitor,1,149.99,11/30/19 09:02,"323 Lakeview St, San Francisco, CA 94016" +289257,Flatscreen TV,1,300,11/22/19 10:53,"429 Washington St, Boston, MA 02215" +289258,Lightning Charging Cable,1,14.95,11/27/19 22:52,"219 13th St, Boston, MA 02215" +289259,AAA Batteries (4-pack),1,2.99,11/12/19 06:51,"300 Lakeview St, Seattle, WA 98101" +289260,AAA Batteries (4-pack),1,2.99,11/19/19 09:39,"223 Church St, New York City, NY 10001" +289261,Macbook Pro Laptop,1,1700,11/25/19 08:17,"858 Lake St, Atlanta, GA 30301" +289262,iPhone,1,700,11/19/19 15:04,"699 Cherry St, Dallas, TX 75001" +289262,Lightning Charging Cable,1,14.95,11/19/19 15:04,"699 Cherry St, Dallas, TX 75001" +289263,USB-C Charging Cable,1,11.95,11/16/19 19:49,"20 Forest St, Los Angeles, CA 90001" +289264,USB-C Charging Cable,1,11.95,11/09/19 22:45,"889 7th St, San Francisco, CA 94016" +289265,ThinkPad Laptop,1,999.99,11/21/19 14:40,"627 Ridge St, San Francisco, CA 94016" +289266,Wired Headphones,2,11.99,11/20/19 22:07,"979 Johnson St, San Francisco, CA 94016" +289267,Apple Airpods Headphones,1,150,11/29/19 16:09,"515 Church St, San Francisco, CA 94016" +289268,iPhone,1,700,11/29/19 15:08,"735 11th St, San Francisco, CA 94016" +289269,Lightning Charging Cable,2,14.95,11/21/19 16:39,"626 Cedar St, Portland, OR 97035" +289270,AA Batteries (4-pack),1,3.84,11/28/19 18:23,"191 South St, San Francisco, CA 94016" +289271,Lightning Charging Cable,1,14.95,11/10/19 16:12,"266 Willow St, San Francisco, CA 94016" +289272,USB-C Charging Cable,2,11.95,11/22/19 20:20,"849 5th St, Los Angeles, CA 90001" +289273,Lightning Charging Cable,1,14.95,11/25/19 15:01,"412 11th St, Seattle, WA 98101" +289274,Lightning Charging Cable,1,14.95,11/08/19 20:06,"917 Lakeview St, San Francisco, CA 94016" +289275,Lightning Charging Cable,1,14.95,11/10/19 14:51,"378 Main St, New York City, NY 10001" +289276,iPhone,1,700,11/10/19 23:19,"217 13th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +289277,Lightning Charging Cable,1,14.95,11/11/19 16:45,"551 Jackson St, Atlanta, GA 30301" +289278,Apple Airpods Headphones,1,150,11/18/19 15:36,"38 Forest St, New York City, NY 10001" +289279,Bose SoundSport Headphones,1,99.99,11/20/19 20:39,"280 West St, Dallas, TX 75001" +289280,AAA Batteries (4-pack),2,2.99,11/10/19 12:06,"366 Lake St, Boston, MA 02215" +289281,AA Batteries (4-pack),1,3.84,11/08/19 22:12,"346 Spruce St, New York City, NY 10001" +289282,iPhone,1,700,11/03/19 16:27,"389 Center St, Los Angeles, CA 90001" +289283,AA Batteries (4-pack),1,3.84,11/12/19 14:23,"530 Church St, Atlanta, GA 30301" +289284,Wired Headphones,1,11.99,11/14/19 17:35,"132 Adams St, San Francisco, CA 94016" +289285,iPhone,1,700,11/05/19 13:26,"693 Lake St, New York City, NY 10001" +289286,Apple Airpods Headphones,1,150,11/02/19 12:09,"920 Center St, San Francisco, CA 94016" +289287,20in Monitor,1,109.99,11/21/19 14:38,"376 Meadow St, New York City, NY 10001" +289288,Bose SoundSport Headphones,1,99.99,11/27/19 19:26,"996 Lincoln St, San Francisco, CA 94016" +289289,Bose SoundSport Headphones,1,99.99,11/15/19 14:32,"792 Lincoln St, Seattle, WA 98101" +289290,Bose SoundSport Headphones,1,99.99,11/09/19 01:24,"548 4th St, Atlanta, GA 30301" +289291,Bose SoundSport Headphones,1,99.99,11/09/19 18:28,"938 12th St, Los Angeles, CA 90001" +289292,Google Phone,1,600,11/25/19 07:51,"728 North St, Dallas, TX 75001" +289293,Apple Airpods Headphones,1,150,11/15/19 11:42,"743 5th St, Los Angeles, CA 90001" +289294,AA Batteries (4-pack),1,3.84,11/19/19 13:42,"73 Spruce St, Boston, MA 02215" +289295,USB-C Charging Cable,1,11.95,11/30/19 06:48,"939 13th St, New York City, NY 10001" +289295,USB-C Charging Cable,1,11.95,11/30/19 06:48,"939 13th St, New York City, NY 10001" +289296,ThinkPad Laptop,1,999.99,11/07/19 14:58,"291 Lincoln St, Boston, MA 02215" +289297,USB-C Charging Cable,1,11.95,11/18/19 14:52,"343 12th St, New York City, NY 10001" +289298,Bose SoundSport Headphones,1,99.99,11/20/19 12:05,"800 Spruce St, San Francisco, CA 94016" +289299,Wired Headphones,1,11.99,11/22/19 20:14,"601 Meadow St, Seattle, WA 98101" +289300,USB-C Charging Cable,1,11.95,11/01/19 15:05,"984 Jefferson St, Dallas, TX 75001" +289301,USB-C Charging Cable,1,11.95,11/28/19 22:23,"316 Center St, San Francisco, CA 94016" +289302,Wired Headphones,1,11.99,11/08/19 14:57,"73 11th St, Austin, TX 73301" +289303,USB-C Charging Cable,1,11.95,11/03/19 10:59,"390 5th St, Seattle, WA 98101" +289304,Wired Headphones,1,11.99,11/28/19 11:28,"342 13th St, Austin, TX 73301" +289305,Wired Headphones,1,11.99,11/20/19 17:58,"536 Jefferson St, San Francisco, CA 94016" +289306,ThinkPad Laptop,1,999.99,11/02/19 21:12,"161 South St, San Francisco, CA 94016" +289307,USB-C Charging Cable,1,11.95,11/21/19 09:55,"702 13th St, San Francisco, CA 94016" +289308,Apple Airpods Headphones,1,150,11/06/19 20:04,"578 Spruce St, San Francisco, CA 94016" +289309,Bose SoundSport Headphones,1,99.99,11/14/19 19:50,"169 Lincoln St, Atlanta, GA 30301" +289310,Wired Headphones,1,11.99,12/01/19 01:41,"459 Wilson St, Austin, TX 73301" +289311,USB-C Charging Cable,1,11.95,11/05/19 09:45,"514 Adams St, Atlanta, GA 30301" +289312,Lightning Charging Cable,1,14.95,11/22/19 01:45,"526 Spruce St, San Francisco, CA 94016" +289313,USB-C Charging Cable,1,11.95,11/03/19 12:15,"728 Madison St, New York City, NY 10001" +289314,Wired Headphones,1,11.99,11/01/19 18:39,"369 Jefferson St, Los Angeles, CA 90001" +,,,,, +289315,AAA Batteries (4-pack),1,2.99,11/26/19 11:01,"937 Chestnut St, Dallas, TX 75001" +289316,Lightning Charging Cable,1,14.95,11/25/19 18:26,"635 6th St, Seattle, WA 98101" +289317,AA Batteries (4-pack),1,3.84,11/14/19 12:16,"652 Lakeview St, San Francisco, CA 94016" +289318,USB-C Charging Cable,1,11.95,11/04/19 10:35,"143 West St, Los Angeles, CA 90001" +289319,Lightning Charging Cable,1,14.95,11/18/19 14:52,"126 Pine St, Seattle, WA 98101" +289320,AA Batteries (4-pack),1,3.84,11/10/19 10:07,"976 Adams St, San Francisco, CA 94016" +289321,iPhone,1,700,11/14/19 14:43,"348 Hickory St, San Francisco, CA 94016" +289322,Lightning Charging Cable,1,14.95,11/04/19 09:36,"157 Dogwood St, San Francisco, CA 94016" +289323,Lightning Charging Cable,1,14.95,11/22/19 12:56,"472 Ridge St, Los Angeles, CA 90001" +289324,Lightning Charging Cable,1,14.95,11/17/19 00:33,"615 Jefferson St, Los Angeles, CA 90001" +289325,ThinkPad Laptop,1,999.99,11/18/19 21:16,"256 West St, San Francisco, CA 94016" +289326,AA Batteries (4-pack),1,3.84,11/20/19 12:22,"837 Adams St, San Francisco, CA 94016" +289327,AA Batteries (4-pack),1,3.84,11/12/19 09:16,"64 Center St, Los Angeles, CA 90001" +289328,iPhone,1,700,11/16/19 08:59,"77 Lincoln St, Los Angeles, CA 90001" +289329,Lightning Charging Cable,1,14.95,11/09/19 16:31,"376 West St, Austin, TX 73301" +289330,Macbook Pro Laptop,1,1700,11/05/19 18:50,"853 Johnson St, San Francisco, CA 94016" +289331,Wired Headphones,1,11.99,11/28/19 07:59,"414 Center St, San Francisco, CA 94016" +289332,Google Phone,1,600,11/07/19 19:50,"701 13th St, Boston, MA 02215" +289333,Apple Airpods Headphones,1,150,11/16/19 10:53,"971 Johnson St, Dallas, TX 75001" +289334,AAA Batteries (4-pack),1,2.99,11/24/19 19:59,"480 Wilson St, Los Angeles, CA 90001" +289335,AA Batteries (4-pack),1,3.84,11/18/19 00:18,"18 9th St, Boston, MA 02215" +289336,iPhone,1,700,11/03/19 14:07,"164 Chestnut St, San Francisco, CA 94016" +289336,Lightning Charging Cable,2,14.95,11/03/19 14:07,"164 Chestnut St, San Francisco, CA 94016" +289337,AAA Batteries (4-pack),1,2.99,11/30/19 20:01,"13 Jackson St, New York City, NY 10001" +289338,Wired Headphones,1,11.99,11/25/19 05:23,"623 Meadow St, San Francisco, CA 94016" +289339,AAA Batteries (4-pack),1,2.99,11/25/19 12:53,"139 Church St, San Francisco, CA 94016" +289340,27in 4K Gaming Monitor,1,389.99,11/03/19 21:23,"22 Highland St, Los Angeles, CA 90001" +289341,USB-C Charging Cable,1,11.95,11/12/19 21:10,"340 5th St, San Francisco, CA 94016" +289342,Lightning Charging Cable,1,14.95,11/17/19 15:33,"216 Maple St, New York City, NY 10001" +289343,Bose SoundSport Headphones,1,99.99,11/09/19 12:09,"768 2nd St, San Francisco, CA 94016" +289344,AA Batteries (4-pack),1,3.84,11/14/19 23:00,"324 Cedar St, Atlanta, GA 30301" +289345,AAA Batteries (4-pack),1,2.99,11/01/19 13:30,"506 Hickory St, Boston, MA 02215" +289346,AAA Batteries (4-pack),2,2.99,11/15/19 08:58,"656 Forest St, Los Angeles, CA 90001" +289347,Bose SoundSport Headphones,1,99.99,11/26/19 23:40,"774 10th St, San Francisco, CA 94016" +289348,Bose SoundSport Headphones,1,99.99,11/02/19 15:36,"21 Hill St, Los Angeles, CA 90001" +289349,27in FHD Monitor,1,149.99,11/01/19 16:39,"964 West St, Boston, MA 02215" +289350,Google Phone,1,600,11/26/19 16:32,"211 Forest St, New York City, NY 10001" +289350,USB-C Charging Cable,2,11.95,11/26/19 16:32,"211 Forest St, New York City, NY 10001" +289351,27in FHD Monitor,1,149.99,11/15/19 15:37,"77 11th St, Boston, MA 02215" +289352,Bose SoundSport Headphones,1,99.99,11/26/19 18:01,"23 12th St, New York City, NY 10001" +289353,27in 4K Gaming Monitor,1,389.99,11/06/19 12:05,"837 11th St, San Francisco, CA 94016" +289354,USB-C Charging Cable,1,11.95,11/24/19 07:53,"137 Main St, Los Angeles, CA 90001" +289355,Wired Headphones,1,11.99,11/11/19 20:24,"891 Lincoln St, Portland, OR 97035" +289356,Wired Headphones,1,11.99,11/17/19 12:13,"774 7th St, Atlanta, GA 30301" +289357,AA Batteries (4-pack),1,3.84,11/03/19 09:56,"64 9th St, San Francisco, CA 94016" +289358,USB-C Charging Cable,2,11.95,11/13/19 11:29,"165 Main St, San Francisco, CA 94016" +289359,Apple Airpods Headphones,1,150,11/10/19 08:32,"215 River St, Los Angeles, CA 90001" +289360,AA Batteries (4-pack),2,3.84,11/14/19 20:21,"103 Lake St, Portland, OR 97035" +289361,USB-C Charging Cable,2,11.95,11/22/19 15:13,"851 Lakeview St, Atlanta, GA 30301" +289362,Macbook Pro Laptop,1,1700,11/28/19 22:31,"136 North St, Seattle, WA 98101" +289363,AAA Batteries (4-pack),2,2.99,11/06/19 20:15,"871 Lake St, New York City, NY 10001" +289364,AA Batteries (4-pack),1,3.84,11/30/19 10:20,"474 Wilson St, Seattle, WA 98101" +289365,USB-C Charging Cable,1,11.95,11/25/19 12:24,"775 South St, Atlanta, GA 30301" +289366,AA Batteries (4-pack),1,3.84,11/28/19 16:36,"473 Ridge St, New York City, NY 10001" +289367,Bose SoundSport Headphones,1,99.99,11/23/19 12:27,"567 12th St, San Francisco, CA 94016" +289368,Vareebadd Phone,1,400,11/19/19 20:53,"499 Lake St, San Francisco, CA 94016" +289369,Lightning Charging Cable,1,14.95,11/05/19 11:56,"157 Johnson St, Atlanta, GA 30301" +289370,Wired Headphones,1,11.99,11/02/19 02:06,"816 Adams St, Dallas, TX 75001" +289371,Apple Airpods Headphones,1,150,11/25/19 10:12,"830 12th St, Atlanta, GA 30301" +289372,AAA Batteries (4-pack),1,2.99,11/01/19 13:55,"720 River St, Dallas, TX 75001" +289373,Lightning Charging Cable,1,14.95,11/12/19 00:46,"813 Jackson St, San Francisco, CA 94016" +289374,Wired Headphones,2,11.99,11/09/19 13:54,"486 Washington St, Seattle, WA 98101" +289375,iPhone,1,700,11/23/19 21:02,"547 Wilson St, Boston, MA 02215" +289376,Wired Headphones,1,11.99,11/05/19 18:42,"564 Main St, Dallas, TX 75001" +289377,Wired Headphones,1,11.99,11/02/19 00:13,"837 Jefferson St, Austin, TX 73301" +289378,Flatscreen TV,1,300,11/24/19 19:48,"983 8th St, Los Angeles, CA 90001" +289379,AA Batteries (4-pack),1,3.84,11/14/19 18:37,"198 2nd St, Atlanta, GA 30301" +289380,20in Monitor,1,109.99,11/03/19 19:00,"219 Church St, San Francisco, CA 94016" +289381,AA Batteries (4-pack),1,3.84,11/12/19 13:46,"996 Adams St, San Francisco, CA 94016" +289382,Apple Airpods Headphones,1,150,11/07/19 08:28,"959 Pine St, Los Angeles, CA 90001" +289383,Lightning Charging Cable,1,14.95,11/18/19 23:07,"58 14th St, San Francisco, CA 94016" +289384,Lightning Charging Cable,2,14.95,11/18/19 22:59,"356 Wilson St, Los Angeles, CA 90001" +289385,34in Ultrawide Monitor,1,379.99,11/03/19 12:24,"662 Dogwood St, San Francisco, CA 94016" +289386,Apple Airpods Headphones,1,150,11/10/19 11:22,"292 Dogwood St, Dallas, TX 75001" +289387,AAA Batteries (4-pack),1,2.99,11/17/19 21:28,"476 Lake St, Los Angeles, CA 90001" +289388,Lightning Charging Cable,1,14.95,11/21/19 19:34,"637 Jefferson St, Los Angeles, CA 90001" +289389,Apple Airpods Headphones,1,150,11/15/19 08:51,"450 1st St, San Francisco, CA 94016" +289390,AAA Batteries (4-pack),6,2.99,11/11/19 14:24,"209 2nd St, New York City, NY 10001" +289391,27in FHD Monitor,1,149.99,11/11/19 20:13,"180 Lincoln St, Seattle, WA 98101" +289392,Lightning Charging Cable,1,14.95,11/12/19 15:45,"308 Park St, New York City, NY 10001" +289393,AA Batteries (4-pack),1,3.84,11/30/19 12:14,"53 Meadow St, Portland, ME 04101" +289394,USB-C Charging Cable,1,11.95,11/16/19 20:19,"728 Jefferson St, Los Angeles, CA 90001" +289395,iPhone,1,700,11/12/19 09:07,"389 Sunset St, New York City, NY 10001" +289396,ThinkPad Laptop,1,999.99,11/30/19 19:29,"486 Lakeview St, San Francisco, CA 94016" +289396,USB-C Charging Cable,1,11.95,11/30/19 19:29,"486 Lakeview St, San Francisco, CA 94016" +289397,Bose SoundSport Headphones,1,99.99,11/14/19 17:51,"772 Madison St, Atlanta, GA 30301" +289398,USB-C Charging Cable,1,11.95,11/19/19 16:14,"736 Johnson St, Seattle, WA 98101" +289399,Apple Airpods Headphones,1,150,11/07/19 01:54,"429 7th St, San Francisco, CA 94016" +289400,AAA Batteries (4-pack),3,2.99,11/10/19 19:45,"466 Church St, San Francisco, CA 94016" +289400,Wired Headphones,1,11.99,11/10/19 19:45,"466 Church St, San Francisco, CA 94016" +289401,AA Batteries (4-pack),1,3.84,11/11/19 09:10,"216 1st St, Atlanta, GA 30301" +289402,USB-C Charging Cable,1,11.95,11/24/19 22:33,"256 7th St, Atlanta, GA 30301" +289403,USB-C Charging Cable,1,11.95,11/22/19 14:57,"432 14th St, San Francisco, CA 94016" +289404,USB-C Charging Cable,1,11.95,11/26/19 10:49,"732 Lincoln St, San Francisco, CA 94016" +289405,AAA Batteries (4-pack),1,2.99,11/05/19 16:05,"701 Cherry St, Los Angeles, CA 90001" +289406,27in 4K Gaming Monitor,1,389.99,11/16/19 19:30,"599 River St, Los Angeles, CA 90001" +289407,Wired Headphones,1,11.99,11/01/19 10:36,"48 Highland St, New York City, NY 10001" +289408,Macbook Pro Laptop,1,1700,11/02/19 14:52,"536 Jackson St, Dallas, TX 75001" +289409,AAA Batteries (4-pack),1,2.99,11/15/19 14:32,"43 9th St, San Francisco, CA 94016" +289410,Google Phone,1,600,11/19/19 01:51,"471 Spruce St, Austin, TX 73301" +289411,Lightning Charging Cable,1,14.95,11/27/19 08:05,"819 River St, Portland, OR 97035" +289412,27in 4K Gaming Monitor,1,389.99,11/13/19 16:39,"314 Lincoln St, Los Angeles, CA 90001" +289413,USB-C Charging Cable,1,11.95,11/08/19 16:32,"247 South St, Seattle, WA 98101" +289414,Wired Headphones,1,11.99,11/12/19 10:52,"494 Center St, Austin, TX 73301" +289415,Wired Headphones,1,11.99,11/24/19 20:58,"499 14th St, New York City, NY 10001" +289416,Wired Headphones,1,11.99,11/11/19 14:29,"366 8th St, Austin, TX 73301" +289417,AA Batteries (4-pack),2,3.84,11/06/19 17:45,"326 Willow St, San Francisco, CA 94016" +289418,AA Batteries (4-pack),1,3.84,11/20/19 08:56,"923 Adams St, Boston, MA 02215" +289419,Wired Headphones,1,11.99,11/04/19 10:17,"320 14th St, Seattle, WA 98101" +289420,Lightning Charging Cable,1,14.95,11/23/19 06:41,"217 West St, New York City, NY 10001" +289421,Lightning Charging Cable,1,14.95,11/02/19 15:19,"479 Ridge St, Portland, OR 97035" +289422,USB-C Charging Cable,1,11.95,11/02/19 20:44,"892 Spruce St, New York City, NY 10001" +289423,AA Batteries (4-pack),1,3.84,11/30/19 18:10,"895 6th St, Atlanta, GA 30301" +289424,Vareebadd Phone,1,400,11/06/19 15:15,"495 Park St, New York City, NY 10001" +289424,Wired Headphones,1,11.99,11/06/19 15:15,"495 Park St, New York City, NY 10001" +289425,27in FHD Monitor,1,149.99,11/02/19 19:30,"431 Pine St, Los Angeles, CA 90001" +289426,34in Ultrawide Monitor,1,379.99,11/26/19 15:27,"671 Cherry St, Seattle, WA 98101" +289427,27in FHD Monitor,1,149.99,11/26/19 14:01,"111 4th St, San Francisco, CA 94016" +289428,Apple Airpods Headphones,1,150,11/17/19 19:49,"992 Dogwood St, Los Angeles, CA 90001" +289429,AA Batteries (4-pack),2,3.84,11/27/19 00:41,"856 Jackson St, Boston, MA 02215" +289430,Lightning Charging Cable,1,14.95,11/25/19 13:40,"201 6th St, San Francisco, CA 94016" +289431,Google Phone,1,600,11/18/19 00:03,"547 Johnson St, Dallas, TX 75001" +289431,Wired Headphones,1,11.99,11/18/19 00:03,"547 Johnson St, Dallas, TX 75001" +289432,Lightning Charging Cable,1,14.95,11/13/19 10:07,"202 Park St, Austin, TX 73301" +289433,AA Batteries (4-pack),3,3.84,11/27/19 17:21,"995 North St, San Francisco, CA 94016" +289434,Bose SoundSport Headphones,1,99.99,11/09/19 18:43,"933 Walnut St, New York City, NY 10001" +289435,Lightning Charging Cable,1,14.95,11/23/19 11:04,"505 Center St, New York City, NY 10001" +289436,AA Batteries (4-pack),1,3.84,11/05/19 11:51,"433 14th St, Boston, MA 02215" +289437,ThinkPad Laptop,1,999.99,11/28/19 14:52,"2 Church St, San Francisco, CA 94016" +289438,USB-C Charging Cable,1,11.95,11/14/19 15:47,"242 Elm St, Boston, MA 02215" +289439,Wired Headphones,1,11.99,11/29/19 16:44,"710 4th St, Dallas, TX 75001" +289440,iPhone,1,700,11/18/19 22:34,"86 Sunset St, Los Angeles, CA 90001" +289441,USB-C Charging Cable,1,11.95,11/24/19 10:36,"553 Park St, San Francisco, CA 94016" +289442,Lightning Charging Cable,1,14.95,11/01/19 15:56,"227 Wilson St, Boston, MA 02215" +289443,Lightning Charging Cable,1,14.95,11/04/19 18:20,"39 Willow St, San Francisco, CA 94016" +289444,Flatscreen TV,1,300,11/08/19 09:46,"287 Lake St, Boston, MA 02215" +289445,Lightning Charging Cable,1,14.95,11/19/19 21:56,"838 5th St, Seattle, WA 98101" +289446,USB-C Charging Cable,1,11.95,11/21/19 11:47,"820 Lake St, Atlanta, GA 30301" +289447,Wired Headphones,1,11.99,11/12/19 20:43,"92 10th St, Seattle, WA 98101" +289448,Vareebadd Phone,1,400,11/23/19 15:58,"723 Maple St, Seattle, WA 98101" +289448,Wired Headphones,2,11.99,11/23/19 15:58,"723 Maple St, Seattle, WA 98101" +289449,Apple Airpods Headphones,1,150,11/20/19 22:40,"653 7th St, Los Angeles, CA 90001" +289450,Bose SoundSport Headphones,1,99.99,11/04/19 13:04,"255 Adams St, Dallas, TX 75001" +289451,AA Batteries (4-pack),1,3.84,11/14/19 09:18,"58 Hickory St, Los Angeles, CA 90001" +289452,34in Ultrawide Monitor,1,379.99,11/08/19 09:33,"41 1st St, San Francisco, CA 94016" +289453,AA Batteries (4-pack),1,3.84,11/24/19 18:47,"775 Elm St, Dallas, TX 75001" +289454,AA Batteries (4-pack),1,3.84,11/12/19 12:31,"248 4th St, San Francisco, CA 94016" +289455,Lightning Charging Cable,1,14.95,11/26/19 19:49,"414 Center St, San Francisco, CA 94016" +289456,27in FHD Monitor,1,149.99,11/27/19 23:36,"617 Meadow St, Atlanta, GA 30301" +289457,Macbook Pro Laptop,1,1700,11/01/19 17:17,"380 Wilson St, New York City, NY 10001" +289458,Google Phone,1,600,11/18/19 07:43,"676 Elm St, Portland, OR 97035" +289459,ThinkPad Laptop,1,999.99,11/23/19 12:29,"877 Park St, Austin, TX 73301" +289460,USB-C Charging Cable,1,11.95,11/08/19 02:21,"243 Elm St, New York City, NY 10001" +289461,AA Batteries (4-pack),1,3.84,11/26/19 18:55,"487 5th St, Seattle, WA 98101" +289462,AAA Batteries (4-pack),1,2.99,11/01/19 15:54,"320 Washington St, Boston, MA 02215" +289463,USB-C Charging Cable,1,11.95,11/02/19 13:50,"885 Sunset St, Dallas, TX 75001" +289464,27in FHD Monitor,1,149.99,11/28/19 09:07,"124 Church St, Boston, MA 02215" +289465,Apple Airpods Headphones,1,150,11/27/19 09:48,"377 Willow St, New York City, NY 10001" +289466,Lightning Charging Cable,1,14.95,11/16/19 19:08,"253 14th St, San Francisco, CA 94016" +289467,USB-C Charging Cable,1,11.95,11/04/19 11:59,"234 Pine St, New York City, NY 10001" +289468,ThinkPad Laptop,1,999.99,11/27/19 19:22,"446 Wilson St, San Francisco, CA 94016" +289469,Lightning Charging Cable,1,14.95,11/29/19 15:16,"413 13th St, New York City, NY 10001" +289470,Wired Headphones,2,11.99,11/21/19 19:17,"310 11th St, Portland, OR 97035" +289471,AA Batteries (4-pack),2,3.84,11/21/19 14:50,"200 12th St, New York City, NY 10001" +289472,AAA Batteries (4-pack),2,2.99,11/30/19 18:33,"705 Hickory St, Atlanta, GA 30301" +289473,Lightning Charging Cable,1,14.95,11/29/19 17:16,"236 Maple St, New York City, NY 10001" +289474,USB-C Charging Cable,1,11.95,11/26/19 23:07,"191 14th St, Los Angeles, CA 90001" +289475,Lightning Charging Cable,1,14.95,11/11/19 19:44,"311 South St, Dallas, TX 75001" +289476,AA Batteries (4-pack),1,3.84,11/07/19 20:35,"287 Elm St, Los Angeles, CA 90001" +289477,AA Batteries (4-pack),2,3.84,11/08/19 18:09,"461 Church St, Dallas, TX 75001" +289478,Google Phone,1,600,11/02/19 14:47,"777 Lincoln St, Seattle, WA 98101" +289478,USB-C Charging Cable,1,11.95,11/02/19 14:47,"777 Lincoln St, Seattle, WA 98101" +289479,AA Batteries (4-pack),1,3.84,11/20/19 11:09,"349 2nd St, Los Angeles, CA 90001" +289480,USB-C Charging Cable,1,11.95,11/09/19 22:25,"818 Willow St, Los Angeles, CA 90001" +289481,Apple Airpods Headphones,1,150,11/24/19 21:21,"917 South St, Boston, MA 02215" +289482,Bose SoundSport Headphones,1,99.99,11/04/19 08:12,"330 Hickory St, Boston, MA 02215" +289483,Flatscreen TV,1,300,11/30/19 18:52,"591 North St, Los Angeles, CA 90001" +289484,Apple Airpods Headphones,1,150,11/29/19 12:41,"735 2nd St, Seattle, WA 98101" +,,,,, +289485,AA Batteries (4-pack),2,3.84,11/25/19 13:13,"752 Sunset St, Austin, TX 73301" +289486,27in 4K Gaming Monitor,1,389.99,11/09/19 20:37,"958 Dogwood St, Seattle, WA 98101" +289487,27in 4K Gaming Monitor,1,389.99,11/15/19 22:03,"955 13th St, Austin, TX 73301" +289488,Flatscreen TV,1,300,11/09/19 19:30,"833 Church St, Atlanta, GA 30301" +289489,USB-C Charging Cable,2,11.95,11/11/19 19:30,"515 Maple St, Atlanta, GA 30301" +289490,USB-C Charging Cable,1,11.95,11/12/19 00:56,"483 Pine St, Los Angeles, CA 90001" +289491,AA Batteries (4-pack),2,3.84,11/24/19 13:33,"333 Forest St, San Francisco, CA 94016" +289492,AA Batteries (4-pack),1,3.84,11/17/19 01:56,"798 Walnut St, San Francisco, CA 94016" +289493,AA Batteries (4-pack),1,3.84,11/12/19 21:49,"578 Willow St, Dallas, TX 75001" +289494,iPhone,1,700,11/26/19 11:14,"254 Jefferson St, San Francisco, CA 94016" +289495,20in Monitor,1,109.99,11/04/19 00:35,"551 12th St, New York City, NY 10001" +289496,27in 4K Gaming Monitor,1,389.99,11/19/19 23:57,"578 12th St, Boston, MA 02215" +289497,USB-C Charging Cable,1,11.95,11/07/19 14:05,"491 Lakeview St, New York City, NY 10001" +,,,,, +289498,AA Batteries (4-pack),2,3.84,11/12/19 16:49,"541 Cherry St, Atlanta, GA 30301" +289499,Lightning Charging Cable,1,14.95,11/01/19 14:22,"865 Highland St, Dallas, TX 75001" +289500,USB-C Charging Cable,1,11.95,11/15/19 17:00,"523 Hill St, Los Angeles, CA 90001" +289501,Macbook Pro Laptop,1,1700,11/28/19 20:26,"844 West St, Los Angeles, CA 90001" +289502,Apple Airpods Headphones,1,150,11/03/19 09:38,"583 West St, Portland, OR 97035" +289503,Wired Headphones,1,11.99,11/07/19 00:06,"436 9th St, Seattle, WA 98101" +289504,iPhone,1,700,11/13/19 11:24,"905 Johnson St, San Francisco, CA 94016" +289505,34in Ultrawide Monitor,2,379.99,11/27/19 17:40,"68 North St, New York City, NY 10001" +289506,Bose SoundSport Headphones,1,99.99,11/25/19 07:12,"915 Jackson St, Dallas, TX 75001" +289507,AA Batteries (4-pack),1,3.84,11/12/19 22:11,"634 Spruce St, New York City, NY 10001" +289508,USB-C Charging Cable,1,11.95,11/28/19 21:53,"409 13th St, San Francisco, CA 94016" +289509,27in FHD Monitor,1,149.99,11/14/19 21:57,"929 7th St, Boston, MA 02215" +289510,AA Batteries (4-pack),1,3.84,11/14/19 15:22,"714 7th St, Atlanta, GA 30301" +289511,AAA Batteries (4-pack),1,2.99,11/21/19 10:53,"351 9th St, San Francisco, CA 94016" +289512,AA Batteries (4-pack),2,3.84,11/30/19 23:35,"444 Hickory St, Atlanta, GA 30301" +289513,Lightning Charging Cable,1,14.95,11/14/19 09:30,"542 South St, New York City, NY 10001" +289514,USB-C Charging Cable,1,11.95,11/30/19 10:48,"239 Main St, Atlanta, GA 30301" +289515,27in FHD Monitor,1,149.99,11/04/19 19:29,"656 Highland St, Seattle, WA 98101" +289516,USB-C Charging Cable,1,11.95,11/03/19 19:21,"429 Elm St, Los Angeles, CA 90001" +289517,27in FHD Monitor,1,149.99,11/03/19 14:22,"272 Chestnut St, San Francisco, CA 94016" +289518,27in FHD Monitor,1,149.99,11/09/19 14:58,"206 North St, Dallas, TX 75001" +289519,34in Ultrawide Monitor,1,379.99,11/04/19 21:22,"126 Park St, San Francisco, CA 94016" +289520,27in 4K Gaming Monitor,1,389.99,11/30/19 06:10,"745 9th St, Los Angeles, CA 90001" +289521,Flatscreen TV,1,300,11/05/19 13:01,"251 1st St, Portland, ME 04101" +289522,Apple Airpods Headphones,1,150,11/21/19 17:14,"170 Lincoln St, Los Angeles, CA 90001" +289523,27in FHD Monitor,1,149.99,11/15/19 20:26,"730 Lincoln St, San Francisco, CA 94016" +289524,AA Batteries (4-pack),1,3.84,11/06/19 20:49,"385 Washington St, Dallas, TX 75001" +289525,Lightning Charging Cable,1,14.95,11/12/19 11:48,"985 4th St, Los Angeles, CA 90001" +289526,AA Batteries (4-pack),1,3.84,11/25/19 22:26,"624 River St, San Francisco, CA 94016" +289527,USB-C Charging Cable,1,11.95,11/12/19 22:51,"609 12th St, Atlanta, GA 30301" +289528,AAA Batteries (4-pack),4,2.99,11/23/19 19:48,"847 Elm St, San Francisco, CA 94016" +289529,Bose SoundSport Headphones,1,99.99,11/01/19 08:25,"431 Lincoln St, Austin, TX 73301" +289530,AAA Batteries (4-pack),1,2.99,11/19/19 12:00,"471 Washington St, San Francisco, CA 94016" +289531,Bose SoundSport Headphones,1,99.99,11/25/19 22:42,"2 4th St, San Francisco, CA 94016" +289532,Flatscreen TV,1,300,11/07/19 17:58,"9 14th St, San Francisco, CA 94016" +289533,Apple Airpods Headphones,1,150,11/09/19 13:56,"819 6th St, Boston, MA 02215" +289534,Wired Headphones,1,11.99,11/09/19 12:11,"27 14th St, Dallas, TX 75001" +289535,34in Ultrawide Monitor,1,379.99,11/13/19 12:00,"887 8th St, Los Angeles, CA 90001" +289536,Vareebadd Phone,1,400,11/17/19 23:32,"471 South St, Portland, OR 97035" +289536,USB-C Charging Cable,1,11.95,11/17/19 23:32,"471 South St, Portland, OR 97035" +289536,Wired Headphones,1,11.99,11/17/19 23:32,"471 South St, Portland, OR 97035" +289537,Wired Headphones,2,11.99,11/09/19 20:38,"850 14th St, Atlanta, GA 30301" +289538,AA Batteries (4-pack),1,3.84,11/01/19 08:14,"442 Washington St, Austin, TX 73301" +289539,Apple Airpods Headphones,1,150,11/29/19 18:07,"930 South St, San Francisco, CA 94016" +289540,Macbook Pro Laptop,1,1700,11/24/19 18:23,"537 2nd St, Austin, TX 73301" +289541,AAA Batteries (4-pack),1,2.99,11/20/19 16:57,"877 Pine St, New York City, NY 10001" +289542,AAA Batteries (4-pack),1,2.99,11/17/19 15:41,"309 Lincoln St, Los Angeles, CA 90001" +289543,Lightning Charging Cable,1,14.95,11/18/19 12:57,"497 13th St, New York City, NY 10001" +289544,Lightning Charging Cable,1,14.95,11/17/19 18:49,"898 Lake St, Los Angeles, CA 90001" +289545,Wired Headphones,1,11.99,11/28/19 15:35,"191 Adams St, San Francisco, CA 94016" +289546,Lightning Charging Cable,1,14.95,11/07/19 09:51,"920 Walnut St, Austin, TX 73301" +289547,Google Phone,1,600,11/27/19 07:07,"96 Lake St, Seattle, WA 98101" +289548,Apple Airpods Headphones,1,150,11/05/19 10:54,"441 Ridge St, Boston, MA 02215" +289548,34in Ultrawide Monitor,1,379.99,11/05/19 10:54,"441 Ridge St, Boston, MA 02215" +289549,AA Batteries (4-pack),1,3.84,11/10/19 11:05,"462 Willow St, San Francisco, CA 94016" +289550,27in FHD Monitor,1,149.99,11/16/19 07:06,"970 Walnut St, Portland, OR 97035" +289551,Lightning Charging Cable,1,14.95,11/27/19 16:08,"97 5th St, Dallas, TX 75001" +289552,AAA Batteries (4-pack),1,2.99,11/21/19 17:07,"171 Lakeview St, Boston, MA 02215" +289553,Bose SoundSport Headphones,1,99.99,11/23/19 19:24,"856 Willow St, Los Angeles, CA 90001" +289554,iPhone,1,700,11/27/19 11:01,"847 Walnut St, San Francisco, CA 94016" +289555,Wired Headphones,1,11.99,11/02/19 18:23,"601 Walnut St, San Francisco, CA 94016" +289556,AAA Batteries (4-pack),2,2.99,11/05/19 06:38,"476 Jackson St, New York City, NY 10001" +289557,Lightning Charging Cable,1,14.95,11/26/19 14:56,"577 Hill St, Austin, TX 73301" +289558,USB-C Charging Cable,1,11.95,11/10/19 08:36,"470 Lake St, New York City, NY 10001" +289559,AA Batteries (4-pack),3,3.84,11/16/19 12:38,"866 Hickory St, Seattle, WA 98101" +289560,Lightning Charging Cable,1,14.95,11/19/19 13:21,"181 Adams St, Boston, MA 02215" +289561,USB-C Charging Cable,1,11.95,11/06/19 14:37,"561 Willow St, Boston, MA 02215" +289562,Bose SoundSport Headphones,1,99.99,11/13/19 05:52,"508 10th St, Portland, OR 97035" +289563,Wired Headphones,1,11.99,11/02/19 23:34,"160 Elm St, Seattle, WA 98101" +289564,Wired Headphones,1,11.99,11/25/19 22:30,"204 Lincoln St, New York City, NY 10001" +289565,AAA Batteries (4-pack),2,2.99,11/23/19 14:03,"79 Maple St, San Francisco, CA 94016" +289566,Lightning Charging Cable,1,14.95,11/10/19 17:49,"478 Madison St, San Francisco, CA 94016" +289567,Apple Airpods Headphones,1,150,11/07/19 03:42,"725 12th St, San Francisco, CA 94016" +289568,Lightning Charging Cable,1,14.95,11/16/19 09:13,"543 Jackson St, Boston, MA 02215" +289569,Apple Airpods Headphones,1,150,11/29/19 20:42,"563 Forest St, Austin, TX 73301" +289570,Lightning Charging Cable,1,14.95,11/02/19 17:22,"953 13th St, Atlanta, GA 30301" +289571,20in Monitor,1,109.99,11/19/19 17:05,"206 Johnson St, Atlanta, GA 30301" +289572,USB-C Charging Cable,1,11.95,11/03/19 05:56,"965 13th St, Los Angeles, CA 90001" +289573,USB-C Charging Cable,1,11.95,11/15/19 11:22,"763 Main St, Los Angeles, CA 90001" +289574,Lightning Charging Cable,1,14.95,11/04/19 12:55,"201 1st St, Dallas, TX 75001" +289575,Flatscreen TV,1,300,11/18/19 06:40,"787 Adams St, Seattle, WA 98101" +289576,27in FHD Monitor,1,149.99,11/04/19 13:06,"30 Pine St, Atlanta, GA 30301" +289577,AAA Batteries (4-pack),4,2.99,11/08/19 10:30,"460 River St, Dallas, TX 75001" +289578,20in Monitor,1,109.99,11/30/19 11:43,"454 Main St, San Francisco, CA 94016" +289579,AA Batteries (4-pack),1,3.84,11/26/19 09:58,"968 Cedar St, Dallas, TX 75001" +289580,Lightning Charging Cable,1,14.95,11/03/19 22:29,"330 8th St, New York City, NY 10001" +289581,Apple Airpods Headphones,1,150,11/12/19 06:44,"252 Washington St, Los Angeles, CA 90001" +289582,ThinkPad Laptop,1,999.99,11/05/19 13:55,"407 2nd St, Los Angeles, CA 90001" +289583,iPhone,1,700,11/19/19 06:32,"931 12th St, Los Angeles, CA 90001" +289584,Apple Airpods Headphones,1,150,11/16/19 23:35,"251 5th St, Seattle, WA 98101" +289585,Macbook Pro Laptop,1,1700,11/01/19 23:56,"454 4th St, Austin, TX 73301" +289586,AA Batteries (4-pack),1,3.84,11/21/19 09:39,"961 Lincoln St, Los Angeles, CA 90001" +289587,ThinkPad Laptop,1,999.99,11/08/19 09:03,"99 7th St, New York City, NY 10001" +289588,Google Phone,1,600,11/22/19 14:10,"868 Lincoln St, Dallas, TX 75001" +289589,AAA Batteries (4-pack),2,2.99,11/07/19 14:19,"456 9th St, Los Angeles, CA 90001" +289590,AA Batteries (4-pack),1,3.84,11/20/19 17:33,"495 Cedar St, Seattle, WA 98101" +289591,Wired Headphones,1,11.99,11/10/19 19:44,"197 Cedar St, San Francisco, CA 94016" +289592,AA Batteries (4-pack),1,3.84,11/23/19 11:48,"970 Lake St, Los Angeles, CA 90001" +289593,Macbook Pro Laptop,1,1700,11/07/19 22:33,"251 2nd St, San Francisco, CA 94016" +289594,Macbook Pro Laptop,1,1700,11/09/19 17:48,"281 Willow St, Los Angeles, CA 90001" +289595,USB-C Charging Cable,1,11.95,11/06/19 20:19,"798 4th St, San Francisco, CA 94016" +289596,AAA Batteries (4-pack),1,2.99,11/14/19 15:25,"142 Dogwood St, Los Angeles, CA 90001" +289597,Lightning Charging Cable,1,14.95,11/12/19 20:58,"693 Meadow St, New York City, NY 10001" +289598,Wired Headphones,1,11.99,11/01/19 12:51,"134 Washington St, Los Angeles, CA 90001" +289599,AA Batteries (4-pack),1,3.84,11/16/19 12:56,"412 Meadow St, San Francisco, CA 94016" +289600,AAA Batteries (4-pack),2,2.99,11/09/19 22:57,"950 Walnut St, Los Angeles, CA 90001" +289601,Bose SoundSport Headphones,1,99.99,11/27/19 22:45,"411 Sunset St, Seattle, WA 98101" +289602,Lightning Charging Cable,1,14.95,11/16/19 12:56,"4 Lincoln St, Atlanta, GA 30301" +289603,27in 4K Gaming Monitor,1,389.99,11/23/19 09:52,"363 South St, Los Angeles, CA 90001" +289604,AAA Batteries (4-pack),2,2.99,11/18/19 17:31,"773 Cherry St, Los Angeles, CA 90001" +289605,AAA Batteries (4-pack),2,2.99,11/30/19 00:07,"714 Hill St, Portland, OR 97035" +289606,AA Batteries (4-pack),2,3.84,11/07/19 23:20,"313 Pine St, Portland, OR 97035" +289607,USB-C Charging Cable,1,11.95,11/14/19 17:11,"761 12th St, Los Angeles, CA 90001" +289608,AA Batteries (4-pack),1,3.84,11/19/19 08:55,"298 Main St, San Francisco, CA 94016" +289609,Apple Airpods Headphones,1,150,11/21/19 09:43,"818 9th St, Atlanta, GA 30301" +289610,USB-C Charging Cable,1,11.95,11/01/19 20:33,"857 South St, San Francisco, CA 94016" +289611,AA Batteries (4-pack),3,3.84,11/02/19 17:54,"473 2nd St, Portland, OR 97035" +289612,Lightning Charging Cable,1,14.95,11/21/19 10:09,"105 11th St, Seattle, WA 98101" +289613,Apple Airpods Headphones,1,150,11/18/19 12:18,"21 9th St, San Francisco, CA 94016" +289614,20in Monitor,1,109.99,11/04/19 13:09,"776 Cedar St, Los Angeles, CA 90001" +289615,Lightning Charging Cable,1,14.95,11/19/19 08:53,"91 Elm St, New York City, NY 10001" +289616,Wired Headphones,1,11.99,11/12/19 07:31,"458 Chestnut St, New York City, NY 10001" +289617,Macbook Pro Laptop,1,1700,11/19/19 15:29,"977 Willow St, New York City, NY 10001" +289618,USB-C Charging Cable,1,11.95,11/12/19 11:27,"935 Lakeview St, Austin, TX 73301" +289619,34in Ultrawide Monitor,1,379.99,11/20/19 10:45,"407 13th St, San Francisco, CA 94016" +289620,AAA Batteries (4-pack),2,2.99,11/21/19 15:18,"903 West St, San Francisco, CA 94016" +289621,Bose SoundSport Headphones,1,99.99,11/06/19 18:36,"982 14th St, New York City, NY 10001" +289622,AAA Batteries (4-pack),1,2.99,11/30/19 20:38,"723 Hickory St, Portland, ME 04101" +289623,Bose SoundSport Headphones,1,99.99,11/16/19 17:17,"492 Cherry St, Dallas, TX 75001" +289624,AA Batteries (4-pack),1,3.84,11/17/19 19:02,"259 Adams St, Los Angeles, CA 90001" +289625,Macbook Pro Laptop,1,1700,11/02/19 12:06,"58 10th St, Dallas, TX 75001" +289626,Apple Airpods Headphones,1,150,11/12/19 14:11,"891 Willow St, Atlanta, GA 30301" +289627,iPhone,1,700,11/24/19 19:13,"719 Washington St, San Francisco, CA 94016" +289628,USB-C Charging Cable,2,11.95,11/28/19 13:59,"504 Lincoln St, Boston, MA 02215" +289629,Apple Airpods Headphones,1,150,11/21/19 18:27,"484 Madison St, San Francisco, CA 94016" +289630,Macbook Pro Laptop,1,1700,11/13/19 18:10,"139 Johnson St, Atlanta, GA 30301" +289631,Wired Headphones,1,11.99,11/10/19 23:54,"71 10th St, San Francisco, CA 94016" +289632,Bose SoundSport Headphones,1,99.99,11/11/19 23:55,"76 Jackson St, Los Angeles, CA 90001" +289633,27in 4K Gaming Monitor,1,389.99,11/11/19 05:35,"247 River St, Los Angeles, CA 90001" +289634,Bose SoundSport Headphones,1,99.99,11/19/19 22:14,"661 Cherry St, New York City, NY 10001" +289635,Apple Airpods Headphones,1,150,11/07/19 16:50,"334 Maple St, Los Angeles, CA 90001" +289636,Bose SoundSport Headphones,1,99.99,11/15/19 20:38,"339 Forest St, San Francisco, CA 94016" +289637,AA Batteries (4-pack),2,3.84,11/29/19 00:18,"841 Dogwood St, Los Angeles, CA 90001" +289638,AA Batteries (4-pack),1,3.84,11/12/19 14:29,"872 Lincoln St, New York City, NY 10001" +289639,27in 4K Gaming Monitor,1,389.99,11/23/19 15:28,"624 Jackson St, Boston, MA 02215" +289640,AAA Batteries (4-pack),1,2.99,11/14/19 19:42,"699 Maple St, Los Angeles, CA 90001" +289641,USB-C Charging Cable,1,11.95,11/26/19 09:49,"254 North St, San Francisco, CA 94016" +289642,Lightning Charging Cable,1,14.95,11/03/19 15:18,"711 6th St, San Francisco, CA 94016" +289643,Lightning Charging Cable,1,14.95,11/15/19 22:28,"595 Center St, New York City, NY 10001" +289644,Wired Headphones,1,11.99,11/06/19 08:57,"341 Lake St, New York City, NY 10001" +289645,Lightning Charging Cable,1,14.95,11/22/19 10:48,"879 Washington St, San Francisco, CA 94016" +289646,AAA Batteries (4-pack),2,2.99,11/09/19 13:58,"614 Meadow St, Boston, MA 02215" +289647,Apple Airpods Headphones,1,150,11/05/19 19:00,"963 River St, San Francisco, CA 94016" +289648,AAA Batteries (4-pack),2,2.99,11/26/19 15:46,"862 North St, Los Angeles, CA 90001" +289649,20in Monitor,1,109.99,11/09/19 12:09,"460 8th St, San Francisco, CA 94016" +289650,Apple Airpods Headphones,1,150,11/05/19 00:58,"639 Meadow St, Seattle, WA 98101" +289651,Bose SoundSport Headphones,1,99.99,11/07/19 13:43,"757 Park St, Seattle, WA 98101" +289652,Apple Airpods Headphones,1,150,11/12/19 16:25,"400 Cedar St, Atlanta, GA 30301" +289653,Lightning Charging Cable,1,14.95,11/16/19 18:33,"53 8th St, New York City, NY 10001" +289654,Lightning Charging Cable,1,14.95,11/18/19 15:14,"948 Ridge St, Boston, MA 02215" +289655,Wired Headphones,1,11.99,11/06/19 09:43,"493 Spruce St, New York City, NY 10001" +289656,Macbook Pro Laptop,1,1700,11/21/19 16:04,"931 West St, Los Angeles, CA 90001" +289657,Wired Headphones,1,11.99,11/20/19 14:46,"855 Highland St, New York City, NY 10001" +289658,AA Batteries (4-pack),1,3.84,11/26/19 11:35,"761 13th St, San Francisco, CA 94016" +289658,Macbook Pro Laptop,1,1700,11/26/19 11:35,"761 13th St, San Francisco, CA 94016" +289659,Apple Airpods Headphones,1,150,11/13/19 12:24,"205 River St, Dallas, TX 75001" +289660,Bose SoundSport Headphones,1,99.99,11/12/19 06:54,"190 9th St, Dallas, TX 75001" +289661,Flatscreen TV,1,300,11/13/19 21:46,"246 South St, Portland, OR 97035" +289662,USB-C Charging Cable,1,11.95,11/20/19 20:15,"608 13th St, New York City, NY 10001" +289663,27in FHD Monitor,1,149.99,11/14/19 16:47,"496 Johnson St, San Francisco, CA 94016" +289664,AA Batteries (4-pack),1,3.84,11/20/19 10:49,"248 Madison St, New York City, NY 10001" +289665,Lightning Charging Cable,1,14.95,11/15/19 19:16,"469 Meadow St, San Francisco, CA 94016" +289666,Flatscreen TV,1,300,11/26/19 22:02,"97 14th St, Seattle, WA 98101" +289667,Flatscreen TV,1,300,11/17/19 21:25,"816 14th St, San Francisco, CA 94016" +289668,AA Batteries (4-pack),1,3.84,11/19/19 13:48,"612 10th St, Los Angeles, CA 90001" +289669,AAA Batteries (4-pack),1,2.99,11/07/19 10:16,"888 Wilson St, San Francisco, CA 94016" +289670,Flatscreen TV,1,300,11/05/19 18:57,"616 1st St, New York City, NY 10001" +289671,27in 4K Gaming Monitor,1,389.99,11/09/19 15:59,"805 Madison St, San Francisco, CA 94016" +289672,Apple Airpods Headphones,1,150,11/20/19 20:31,"833 4th St, Los Angeles, CA 90001" +289673,Lightning Charging Cable,1,14.95,11/11/19 03:59,"665 Chestnut St, Seattle, WA 98101" +289674,Wired Headphones,1,11.99,11/07/19 22:08,"58 Lakeview St, New York City, NY 10001" +289675,AA Batteries (4-pack),1,3.84,11/26/19 17:25,"98 Willow St, Atlanta, GA 30301" +289676,AA Batteries (4-pack),1,3.84,11/01/19 12:18,"812 Pine St, New York City, NY 10001" +289677,27in FHD Monitor,1,149.99,11/24/19 14:02,"203 Chestnut St, Seattle, WA 98101" +289678,USB-C Charging Cable,1,11.95,11/18/19 22:40,"672 8th St, Los Angeles, CA 90001" +289679,AAA Batteries (4-pack),2,2.99,11/23/19 15:54,"820 Washington St, Atlanta, GA 30301" +289680,34in Ultrawide Monitor,1,379.99,11/29/19 06:50,"877 Elm St, Boston, MA 02215" +289681,AA Batteries (4-pack),1,3.84,11/22/19 07:48,"863 Pine St, Dallas, TX 75001" +289682,ThinkPad Laptop,1,999.99,11/29/19 21:20,"471 Ridge St, Dallas, TX 75001" +289683,iPhone,1,700,11/30/19 21:33,"873 Cherry St, Seattle, WA 98101" +289684,AAA Batteries (4-pack),1,2.99,11/23/19 19:12,"984 6th St, New York City, NY 10001" +289685,AA Batteries (4-pack),1,3.84,11/24/19 00:04,"801 11th St, Atlanta, GA 30301" +289686,iPhone,1,700,11/27/19 23:03,"732 Lakeview St, New York City, NY 10001" +289687,ThinkPad Laptop,1,999.99,11/06/19 14:28,"239 Highland St, Portland, ME 04101" +289688,Macbook Pro Laptop,1,1700,11/25/19 18:34,"208 Maple St, New York City, NY 10001" +289689,USB-C Charging Cable,1,11.95,11/08/19 08:00,"685 2nd St, San Francisco, CA 94016" +289690,27in 4K Gaming Monitor,1,389.99,11/08/19 15:18,"314 Jackson St, New York City, NY 10001" +289691,AAA Batteries (4-pack),1,2.99,11/21/19 15:55,"939 Hill St, New York City, NY 10001" +289692,USB-C Charging Cable,1,11.95,11/19/19 18:26,"240 Hickory St, San Francisco, CA 94016" +289693,Wired Headphones,1,11.99,11/03/19 22:08,"214 North St, Portland, OR 97035" +289694,Lightning Charging Cable,1,14.95,11/21/19 12:07,"476 Main St, San Francisco, CA 94016" +289695,Flatscreen TV,1,300,11/12/19 10:01,"306 13th St, Atlanta, GA 30301" +289696,Lightning Charging Cable,1,14.95,11/04/19 15:43,"557 Johnson St, New York City, NY 10001" +289697,USB-C Charging Cable,1,11.95,11/20/19 12:22,"899 Wilson St, Atlanta, GA 30301" +289698,AAA Batteries (4-pack),2,2.99,11/22/19 11:37,"913 Forest St, Los Angeles, CA 90001" +289699,Flatscreen TV,1,300,11/06/19 15:23,"394 Wilson St, Austin, TX 73301" +289700,Bose SoundSport Headphones,1,99.99,11/17/19 20:49,"65 Lincoln St, Los Angeles, CA 90001" +289701,AAA Batteries (4-pack),1,2.99,11/07/19 20:15,"731 Jackson St, Atlanta, GA 30301" +289702,Wired Headphones,1,11.99,11/26/19 17:00,"654 Center St, New York City, NY 10001" +289703,AA Batteries (4-pack),1,3.84,11/24/19 11:59,"346 9th St, New York City, NY 10001" +289704,AAA Batteries (4-pack),1,2.99,11/23/19 22:59,"760 Maple St, San Francisco, CA 94016" +289705,27in FHD Monitor,1,149.99,11/14/19 13:00,"537 2nd St, San Francisco, CA 94016" +289706,34in Ultrawide Monitor,1,379.99,11/12/19 02:37,"189 Lincoln St, New York City, NY 10001" +289707,Vareebadd Phone,1,400,11/23/19 14:19,"218 Park St, Boston, MA 02215" +289707,AA Batteries (4-pack),3,3.84,11/23/19 14:19,"218 Park St, Boston, MA 02215" +289708,AA Batteries (4-pack),1,3.84,11/17/19 20:17,"58 13th St, Los Angeles, CA 90001" +289709,USB-C Charging Cable,1,11.95,11/04/19 13:32,"320 Walnut St, Los Angeles, CA 90001" +289710,AAA Batteries (4-pack),2,2.99,11/13/19 17:36,"483 West St, Los Angeles, CA 90001" +289711,AA Batteries (4-pack),1,3.84,11/23/19 02:54,"586 4th St, Portland, OR 97035" +289712,Google Phone,1,600,11/30/19 10:40,"802 12th St, Dallas, TX 75001" +289713,Macbook Pro Laptop,1,1700,11/30/19 16:45,"471 South St, Boston, MA 02215" +289713,Lightning Charging Cable,1,14.95,11/30/19 16:45,"471 South St, Boston, MA 02215" +289714,Macbook Pro Laptop,1,1700,11/24/19 18:59,"31 South St, Dallas, TX 75001" +289715,ThinkPad Laptop,1,999.99,11/13/19 16:41,"633 Adams St, Boston, MA 02215" +289716,Wired Headphones,1,11.99,11/26/19 18:40,"869 Maple St, Portland, OR 97035" +289717,AA Batteries (4-pack),1,3.84,11/15/19 21:43,"997 Cedar St, Seattle, WA 98101" +289718,AAA Batteries (4-pack),1,2.99,11/15/19 17:48,"801 Meadow St, Dallas, TX 75001" +289719,27in FHD Monitor,1,149.99,11/02/19 12:00,"74 Main St, Atlanta, GA 30301" +289720,Bose SoundSport Headphones,1,99.99,11/20/19 01:40,"12 Spruce St, Los Angeles, CA 90001" +289721,USB-C Charging Cable,1,11.95,11/15/19 08:46,"151 10th St, San Francisco, CA 94016" +289722,27in FHD Monitor,1,149.99,11/25/19 17:31,"451 Wilson St, Los Angeles, CA 90001" +289723,27in FHD Monitor,1,149.99,11/24/19 18:37,"499 14th St, Los Angeles, CA 90001" +289724,Lightning Charging Cable,1,14.95,11/03/19 10:49,"725 Cherry St, Portland, OR 97035" +289725,Lightning Charging Cable,1,14.95,11/24/19 20:17,"105 River St, Seattle, WA 98101" +289726,27in 4K Gaming Monitor,1,389.99,11/14/19 18:53,"134 North St, Austin, TX 73301" +289727,Lightning Charging Cable,1,14.95,11/13/19 07:40,"573 13th St, Boston, MA 02215" +289728,Lightning Charging Cable,1,14.95,11/13/19 09:46,"613 Main St, Seattle, WA 98101" +289729,Wired Headphones,1,11.99,11/15/19 13:14,"287 Center St, Portland, OR 97035" +289730,27in 4K Gaming Monitor,1,389.99,11/15/19 11:15,"138 Madison St, Dallas, TX 75001" +289731,Wired Headphones,1,11.99,11/01/19 16:25,"47 10th St, Seattle, WA 98101" +289732,Apple Airpods Headphones,1,150,11/26/19 21:18,"467 Spruce St, Seattle, WA 98101" +289733,USB-C Charging Cable,1,11.95,11/26/19 19:56,"788 Forest St, Boston, MA 02215" +289734,Google Phone,1,600,11/28/19 18:42,"476 Ridge St, Los Angeles, CA 90001" +289735,Bose SoundSport Headphones,1,99.99,11/09/19 12:37,"450 Chestnut St, Los Angeles, CA 90001" +289736,27in FHD Monitor,1,149.99,11/14/19 11:18,"677 Washington St, Austin, TX 73301" +289737,34in Ultrawide Monitor,1,379.99,11/14/19 13:31,"356 Dogwood St, Atlanta, GA 30301" +289738,Lightning Charging Cable,1,14.95,11/07/19 08:29,"941 North St, San Francisco, CA 94016" +289739,AA Batteries (4-pack),1,3.84,11/03/19 22:24,"461 North St, Portland, OR 97035" +289740,27in FHD Monitor,1,149.99,11/12/19 12:33,"290 Highland St, San Francisco, CA 94016" +289741,Wired Headphones,1,11.99,11/05/19 08:51,"902 Madison St, Dallas, TX 75001" +289742,Lightning Charging Cable,2,14.95,11/12/19 20:07,"599 Washington St, Seattle, WA 98101" +289743,Wired Headphones,1,11.99,11/02/19 10:19,"192 Meadow St, Boston, MA 02215" +289744,34in Ultrawide Monitor,1,379.99,11/14/19 20:16,"172 10th St, Seattle, WA 98101" +289745,Google Phone,1,600,11/28/19 14:48,"253 Cherry St, San Francisco, CA 94016" +289745,USB-C Charging Cable,1,11.95,11/28/19 14:48,"253 Cherry St, San Francisco, CA 94016" +289746,Google Phone,1,600,11/20/19 04:18,"181 West St, Atlanta, GA 30301" +289747,USB-C Charging Cable,1,11.95,11/09/19 17:11,"30 Lake St, New York City, NY 10001" +289748,Lightning Charging Cable,1,14.95,11/16/19 22:39,"987 Johnson St, New York City, NY 10001" +289749,34in Ultrawide Monitor,1,379.99,11/27/19 20:07,"550 West St, Dallas, TX 75001" +289750,Flatscreen TV,1,300,11/18/19 13:34,"870 Dogwood St, Los Angeles, CA 90001" +289751,AAA Batteries (4-pack),1,2.99,11/16/19 18:38,"536 13th St, Austin, TX 73301" +289752,AA Batteries (4-pack),1,3.84,11/03/19 21:43,"968 Ridge St, Boston, MA 02215" +289753,Wired Headphones,1,11.99,11/08/19 08:33,"513 Willow St, Atlanta, GA 30301" +289754,USB-C Charging Cable,1,11.95,11/13/19 20:17,"819 Forest St, San Francisco, CA 94016" +289755,27in FHD Monitor,1,149.99,11/23/19 13:21,"363 North St, Boston, MA 02215" +289756,USB-C Charging Cable,1,11.95,11/01/19 09:57,"14 Church St, Austin, TX 73301" +289757,27in 4K Gaming Monitor,1,389.99,11/25/19 18:09,"163 Washington St, Dallas, TX 75001" +289758,Bose SoundSport Headphones,1,99.99,11/27/19 15:37,"145 Ridge St, San Francisco, CA 94016" +289759,20in Monitor,1,109.99,11/04/19 19:28,"855 Lincoln St, Seattle, WA 98101" +289760,iPhone,1,700,11/04/19 08:50,"399 2nd St, Boston, MA 02215" +289760,Wired Headphones,1,11.99,11/04/19 08:50,"399 2nd St, Boston, MA 02215" +289760,Apple Airpods Headphones,1,150,11/04/19 08:50,"399 2nd St, Boston, MA 02215" +289761,27in FHD Monitor,1,149.99,11/09/19 01:28,"105 River St, Austin, TX 73301" +289762,Apple Airpods Headphones,1,150,11/25/19 18:18,"18 13th St, Atlanta, GA 30301" +289763,Google Phone,1,600,11/19/19 17:46,"308 Cherry St, San Francisco, CA 94016" +289763,Wired Headphones,1,11.99,11/19/19 17:46,"308 Cherry St, San Francisco, CA 94016" +289764,Bose SoundSport Headphones,1,99.99,11/04/19 19:58,"746 5th St, Los Angeles, CA 90001" +289765,AAA Batteries (4-pack),1,2.99,11/10/19 16:29,"804 Spruce St, Atlanta, GA 30301" +289765,27in FHD Monitor,1,149.99,11/10/19 16:29,"804 Spruce St, Atlanta, GA 30301" +289766,Lightning Charging Cable,1,14.95,11/14/19 13:21,"639 Church St, Los Angeles, CA 90001" +289767,AAA Batteries (4-pack),1,2.99,11/08/19 11:10,"933 7th St, Boston, MA 02215" +289768,Google Phone,1,600,11/22/19 14:54,"499 Chestnut St, Atlanta, GA 30301" +289769,Vareebadd Phone,1,400,11/21/19 11:00,"956 River St, Los Angeles, CA 90001" +289770,34in Ultrawide Monitor,1,379.99,11/24/19 11:17,"760 Sunset St, Los Angeles, CA 90001" +289771,Bose SoundSport Headphones,1,99.99,11/24/19 17:53,"540 Spruce St, Dallas, TX 75001" +289772,AA Batteries (4-pack),1,3.84,11/23/19 17:30,"353 Johnson St, San Francisco, CA 94016" +289773,USB-C Charging Cable,2,11.95,11/26/19 10:05,"398 1st St, San Francisco, CA 94016" +289774,Apple Airpods Headphones,1,150,11/21/19 20:46,"190 12th St, New York City, NY 10001" +289775,iPhone,1,700,11/15/19 17:01,"259 Washington St, San Francisco, CA 94016" +289776,USB-C Charging Cable,1,11.95,11/12/19 20:35,"802 2nd St, San Francisco, CA 94016" +289777,AA Batteries (4-pack),1,3.84,11/18/19 14:39,"921 1st St, San Francisco, CA 94016" +289777,USB-C Charging Cable,1,11.95,11/18/19 14:39,"921 1st St, San Francisco, CA 94016" +289778,Lightning Charging Cable,1,14.95,11/27/19 14:16,"429 Dogwood St, San Francisco, CA 94016" +289779,USB-C Charging Cable,1,11.95,11/03/19 22:23,"833 Spruce St, Portland, ME 04101" +289780,Bose SoundSport Headphones,1,99.99,11/22/19 00:16,"294 Lakeview St, Austin, TX 73301" +289781,Wired Headphones,2,11.99,11/12/19 15:19,"262 North St, Seattle, WA 98101" +289782,20in Monitor,1,109.99,11/23/19 22:09,"748 River St, New York City, NY 10001" +289783,iPhone,1,700,11/27/19 16:14,"211 6th St, San Francisco, CA 94016" +289784,LG Dryer,1,600.0,11/27/19 14:44,"875 West St, Los Angeles, CA 90001" +289785,USB-C Charging Cable,1,11.95,11/01/19 11:10,"330 14th St, Portland, OR 97035" +289786,Apple Airpods Headphones,1,150,11/05/19 00:24,"344 Chestnut St, New York City, NY 10001" +289787,Lightning Charging Cable,1,14.95,11/10/19 18:17,"583 Lincoln St, New York City, NY 10001" +289788,ThinkPad Laptop,1,999.99,11/03/19 19:29,"630 2nd St, Los Angeles, CA 90001" +289789,20in Monitor,1,109.99,11/05/19 08:15,"889 7th St, Dallas, TX 75001" +289790,Bose SoundSport Headphones,1,99.99,11/07/19 10:10,"973 Jefferson St, San Francisco, CA 94016" +289791,Wired Headphones,1,11.99,11/28/19 21:40,"236 Main St, Portland, ME 04101" +289792,Flatscreen TV,1,300,11/17/19 13:48,"892 Hickory St, Portland, ME 04101" +289793,Flatscreen TV,1,300,11/07/19 21:26,"659 Lakeview St, Boston, MA 02215" +289794,Apple Airpods Headphones,1,150,11/06/19 19:49,"211 1st St, San Francisco, CA 94016" +289795,Apple Airpods Headphones,1,150,11/28/19 20:27,"198 13th St, Dallas, TX 75001" +289796,USB-C Charging Cable,1,11.95,11/06/19 12:04,"944 Lincoln St, Seattle, WA 98101" +289797,Google Phone,1,600,11/10/19 15:14,"476 Maple St, New York City, NY 10001" +289797,USB-C Charging Cable,1,11.95,11/10/19 15:14,"476 Maple St, New York City, NY 10001" +289798,AA Batteries (4-pack),2,3.84,11/05/19 08:09,"355 Lakeview St, Seattle, WA 98101" +289799,Bose SoundSport Headphones,1,99.99,11/10/19 14:13,"99 9th St, Seattle, WA 98101" +289800,Macbook Pro Laptop,1,1700,11/03/19 10:50,"382 2nd St, Atlanta, GA 30301" +289801,iPhone,1,700,11/02/19 08:28,"732 Church St, New York City, NY 10001" +289801,Wired Headphones,1,11.99,11/02/19 08:28,"732 Church St, New York City, NY 10001" +289802,Flatscreen TV,1,300,11/02/19 11:15,"994 Center St, Boston, MA 02215" +289803,27in FHD Monitor,1,149.99,11/16/19 10:05,"126 South St, Atlanta, GA 30301" +289804,AA Batteries (4-pack),3,3.84,11/13/19 11:49,"586 Wilson St, San Francisco, CA 94016" +289805,Lightning Charging Cable,1,14.95,11/12/19 07:06,"762 Maple St, San Francisco, CA 94016" +289806,Wired Headphones,1,11.99,11/30/19 10:56,"368 1st St, San Francisco, CA 94016" +289807,Bose SoundSport Headphones,1,99.99,11/01/19 09:16,"827 8th St, San Francisco, CA 94016" +289808,Bose SoundSport Headphones,1,99.99,11/24/19 07:19,"294 11th St, Portland, OR 97035" +289809,AAA Batteries (4-pack),2,2.99,11/06/19 19:22,"412 4th St, Austin, TX 73301" +289810,AAA Batteries (4-pack),2,2.99,11/05/19 14:48,"489 Dogwood St, Boston, MA 02215" +289811,Apple Airpods Headphones,1,150,11/12/19 13:25,"693 Church St, Los Angeles, CA 90001" +289812,Wired Headphones,1,11.99,11/20/19 15:05,"636 11th St, San Francisco, CA 94016" +289813,AA Batteries (4-pack),2,3.84,11/29/19 16:41,"716 13th St, Boston, MA 02215" +289814,Apple Airpods Headphones,1,150,11/30/19 13:09,"391 Dogwood St, Seattle, WA 98101" +289815,Lightning Charging Cable,1,14.95,11/21/19 15:12,"668 Chestnut St, Boston, MA 02215" +289816,USB-C Charging Cable,1,11.95,11/01/19 16:52,"661 Hickory St, San Francisco, CA 94016" +289817,USB-C Charging Cable,1,11.95,11/23/19 14:02,"763 West St, Portland, OR 97035" +289818,Wired Headphones,1,11.99,11/15/19 16:17,"687 River St, San Francisco, CA 94016" +289819,27in FHD Monitor,1,149.99,11/06/19 06:30,"861 Wilson St, Los Angeles, CA 90001" +289820,Google Phone,1,600,11/24/19 18:25,"765 9th St, San Francisco, CA 94016" +289821,iPhone,1,700,11/17/19 19:03,"358 Johnson St, Boston, MA 02215" +289822,Apple Airpods Headphones,1,150,11/17/19 01:12,"394 Chestnut St, San Francisco, CA 94016" +289823,Wired Headphones,1,11.99,11/15/19 07:49,"798 14th St, San Francisco, CA 94016" +289824,AA Batteries (4-pack),2,3.84,11/29/19 18:14,"729 11th St, New York City, NY 10001" +289824,iPhone,1,700,11/29/19 18:14,"729 11th St, New York City, NY 10001" +289825,Bose SoundSport Headphones,1,99.99,11/10/19 09:40,"640 5th St, San Francisco, CA 94016" +289826,Apple Airpods Headphones,1,150,11/26/19 22:29,"716 Dogwood St, Seattle, WA 98101" +289827,34in Ultrawide Monitor,1,379.99,11/21/19 17:36,"754 Hill St, San Francisco, CA 94016" +289828,USB-C Charging Cable,1,11.95,11/24/19 15:55,"204 Hickory St, San Francisco, CA 94016" +289829,iPhone,1,700,11/13/19 17:46,"953 North St, Los Angeles, CA 90001" +289830,Wired Headphones,1,11.99,11/06/19 17:26,"752 North St, San Francisco, CA 94016" +289831,Lightning Charging Cable,1,14.95,11/02/19 13:10,"875 11th St, San Francisco, CA 94016" +289832,AA Batteries (4-pack),1,3.84,11/24/19 22:14,"456 Wilson St, San Francisco, CA 94016" +289833,Macbook Pro Laptop,1,1700,11/25/19 23:29,"39 11th St, Atlanta, GA 30301" +289834,AAA Batteries (4-pack),1,2.99,11/21/19 14:01,"853 Washington St, Los Angeles, CA 90001" +289835,Lightning Charging Cable,1,14.95,11/27/19 00:14,"181 Hill St, New York City, NY 10001" +289836,Apple Airpods Headphones,1,150,11/30/19 17:58,"855 Cherry St, San Francisco, CA 94016" +289837,USB-C Charging Cable,1,11.95,11/27/19 20:26,"224 2nd St, Dallas, TX 75001" +289838,Wired Headphones,1,11.99,11/02/19 11:12,"762 Chestnut St, Atlanta, GA 30301" +289839,27in FHD Monitor,1,149.99,11/21/19 17:30,"897 Willow St, San Francisco, CA 94016" +289840,Wired Headphones,1,11.99,11/17/19 18:28,"136 8th St, Seattle, WA 98101" +289841,Wired Headphones,1,11.99,11/04/19 20:36,"359 Johnson St, Seattle, WA 98101" +289842,AAA Batteries (4-pack),2,2.99,11/26/19 07:37,"957 Willow St, Los Angeles, CA 90001" +289843,Wired Headphones,1,11.99,11/19/19 15:01,"285 Center St, San Francisco, CA 94016" +289844,iPhone,1,700,11/30/19 10:50,"753 South St, New York City, NY 10001" +289844,Lightning Charging Cable,1,14.95,11/30/19 10:50,"753 South St, New York City, NY 10001" +289845,AAA Batteries (4-pack),2,2.99,11/29/19 00:52,"158 1st St, Los Angeles, CA 90001" +289846,20in Monitor,1,109.99,11/03/19 11:47,"18 Spruce St, Austin, TX 73301" +289847,LG Washing Machine,1,600.0,11/26/19 10:54,"272 Forest St, New York City, NY 10001" +289848,20in Monitor,2,109.99,11/06/19 17:21,"389 Cherry St, Dallas, TX 75001" +289849,iPhone,1,700,11/07/19 08:35,"705 12th St, Seattle, WA 98101" +289850,Lightning Charging Cable,1,14.95,11/27/19 15:16,"193 Lakeview St, Dallas, TX 75001" +289851,Flatscreen TV,1,300,11/06/19 11:36,"497 Hickory St, Seattle, WA 98101" +289852,Flatscreen TV,1,300,11/13/19 21:40,"797 Hill St, Seattle, WA 98101" +289853,20in Monitor,1,109.99,11/27/19 22:04,"33 Wilson St, Atlanta, GA 30301" +289854,iPhone,1,700,11/15/19 19:41,"228 Main St, San Francisco, CA 94016" +289855,Lightning Charging Cable,1,14.95,11/15/19 12:59,"736 Hill St, Portland, OR 97035" +289856,iPhone,1,700,11/02/19 23:36,"20 10th St, Seattle, WA 98101" +289857,USB-C Charging Cable,1,11.95,11/18/19 13:08,"920 Cherry St, Dallas, TX 75001" +289858,iPhone,1,700,11/30/19 11:02,"811 Park St, Austin, TX 73301" +289858,Lightning Charging Cable,1,14.95,11/30/19 11:02,"811 Park St, Austin, TX 73301" +289859,AA Batteries (4-pack),1,3.84,11/04/19 13:32,"110 Wilson St, Dallas, TX 75001" +289860,Apple Airpods Headphones,1,150,11/02/19 15:49,"688 11th St, Boston, MA 02215" +289861,Lightning Charging Cable,1,14.95,11/17/19 12:27,"13 Johnson St, Dallas, TX 75001" +289862,Wired Headphones,2,11.99,11/14/19 01:05,"851 Park St, Los Angeles, CA 90001" +289863,iPhone,1,700,11/21/19 09:29,"590 Park St, Portland, OR 97035" +289864,27in 4K Gaming Monitor,1,389.99,11/04/19 18:11,"15 Highland St, San Francisco, CA 94016" +289865,Bose SoundSport Headphones,1,99.99,11/11/19 01:54,"756 Dogwood St, Dallas, TX 75001" +289866,34in Ultrawide Monitor,1,379.99,11/25/19 10:02,"353 14th St, Portland, OR 97035" +289866,20in Monitor,1,109.99,11/25/19 10:02,"353 14th St, Portland, OR 97035" +289867,27in FHD Monitor,1,149.99,11/22/19 12:29,"668 13th St, Los Angeles, CA 90001" +289868,AAA Batteries (4-pack),1,2.99,11/20/19 12:08,"85 Ridge St, San Francisco, CA 94016" +289869,27in FHD Monitor,1,149.99,11/27/19 22:09,"181 5th St, San Francisco, CA 94016" +289870,Lightning Charging Cable,1,14.95,11/17/19 16:33,"99 2nd St, Los Angeles, CA 90001" +289871,Lightning Charging Cable,1,14.95,11/23/19 16:05,"345 Jefferson St, Los Angeles, CA 90001" +289872,AAA Batteries (4-pack),1,2.99,11/08/19 22:49,"536 Ridge St, New York City, NY 10001" +289873,Macbook Pro Laptop,1,1700,11/29/19 10:01,"248 9th St, New York City, NY 10001" +289874,Macbook Pro Laptop,1,1700,11/29/19 11:59,"820 Madison St, San Francisco, CA 94016" +289875,AAA Batteries (4-pack),4,2.99,11/20/19 14:53,"388 14th St, Atlanta, GA 30301" +289876,AA Batteries (4-pack),1,3.84,11/11/19 16:09,"165 Cedar St, New York City, NY 10001" +289877,Apple Airpods Headphones,1,150,11/18/19 20:44,"917 Lakeview St, Atlanta, GA 30301" +289878,Flatscreen TV,1,300,11/27/19 11:45,"31 Main St, Los Angeles, CA 90001" +289879,AA Batteries (4-pack),1,3.84,11/22/19 21:45,"513 Johnson St, San Francisco, CA 94016" +289880,Apple Airpods Headphones,1,150,11/11/19 20:46,"344 Lake St, San Francisco, CA 94016" +289881,Bose SoundSport Headphones,1,99.99,11/24/19 15:26,"413 Hill St, Seattle, WA 98101" +289882,AAA Batteries (4-pack),2,2.99,11/03/19 17:44,"991 Cherry St, Boston, MA 02215" +289883,AAA Batteries (4-pack),1,2.99,11/06/19 17:22,"764 Jackson St, San Francisco, CA 94016" +289884,Lightning Charging Cable,1,14.95,11/17/19 16:53,"163 Center St, San Francisco, CA 94016" +289885,AA Batteries (4-pack),1,3.84,11/15/19 20:37,"377 Elm St, San Francisco, CA 94016" +289886,AA Batteries (4-pack),1,3.84,11/03/19 07:03,"32 River St, Portland, OR 97035" +289887,Bose SoundSport Headphones,1,99.99,11/11/19 18:16,"438 12th St, Atlanta, GA 30301" +289888,AAA Batteries (4-pack),1,2.99,11/21/19 01:44,"962 14th St, Austin, TX 73301" +289889,27in 4K Gaming Monitor,1,389.99,11/13/19 23:22,"387 Cherry St, New York City, NY 10001" +289890,Wired Headphones,1,11.99,11/05/19 21:46,"369 North St, Austin, TX 73301" +289891,Lightning Charging Cable,1,14.95,11/21/19 18:55,"375 Main St, Portland, ME 04101" +289892,20in Monitor,1,109.99,11/23/19 22:55,"906 Elm St, Los Angeles, CA 90001" +289893,Apple Airpods Headphones,1,150,11/17/19 09:11,"398 Pine St, Dallas, TX 75001" +289894,Lightning Charging Cable,1,14.95,11/29/19 09:43,"264 4th St, Austin, TX 73301" +289895,Wired Headphones,1,11.99,11/19/19 14:26,"880 2nd St, San Francisco, CA 94016" +289896,AAA Batteries (4-pack),2,2.99,11/02/19 12:54,"336 Ridge St, San Francisco, CA 94016" +289897,AAA Batteries (4-pack),1,2.99,11/02/19 14:12,"386 5th St, Los Angeles, CA 90001" +289898,AA Batteries (4-pack),2,3.84,11/21/19 14:50,"46 Park St, Boston, MA 02215" +289899,27in FHD Monitor,1,149.99,11/19/19 19:56,"397 12th St, San Francisco, CA 94016" +289900,Wired Headphones,1,11.99,11/29/19 11:29,"519 Adams St, San Francisco, CA 94016" +289901,Wired Headphones,1,11.99,11/11/19 15:32,"527 Cedar St, Los Angeles, CA 90001" +289902,USB-C Charging Cable,1,11.95,11/15/19 16:24,"5 Cedar St, San Francisco, CA 94016" +289903,Apple Airpods Headphones,1,150,11/18/19 11:03,"799 Center St, San Francisco, CA 94016" +289904,iPhone,1,700,11/29/19 21:38,"932 Forest St, Los Angeles, CA 90001" +289905,Flatscreen TV,1,300,11/06/19 14:16,"673 Church St, San Francisco, CA 94016" +289906,Flatscreen TV,1,300,11/02/19 11:59,"518 Chestnut St, Boston, MA 02215" +289907,Macbook Pro Laptop,1,1700,11/06/19 15:49,"581 Lake St, Atlanta, GA 30301" +289908,Bose SoundSport Headphones,1,99.99,11/29/19 10:53,"422 Cedar St, New York City, NY 10001" +289909,AA Batteries (4-pack),1,3.84,11/01/19 22:10,"121 Walnut St, Dallas, TX 75001" +289910,AA Batteries (4-pack),1,3.84,11/16/19 13:02,"110 Walnut St, Dallas, TX 75001" +289911,AAA Batteries (4-pack),1,2.99,11/19/19 11:44,"834 Elm St, New York City, NY 10001" +289912,AAA Batteries (4-pack),1,2.99,11/13/19 19:43,"301 Ridge St, San Francisco, CA 94016" +289912,USB-C Charging Cable,1,11.95,11/13/19 19:43,"301 Ridge St, San Francisco, CA 94016" +289913,USB-C Charging Cable,1,11.95,11/29/19 21:21,"976 Highland St, Dallas, TX 75001" +289914,27in 4K Gaming Monitor,1,389.99,11/14/19 19:51,"312 8th St, San Francisco, CA 94016" +289915,27in 4K Gaming Monitor,1,389.99,11/18/19 13:20,"297 Adams St, San Francisco, CA 94016" +289916,Wired Headphones,1,11.99,11/23/19 17:01,"472 Park St, Austin, TX 73301" +289917,Lightning Charging Cable,1,14.95,11/05/19 04:14,"25 Center St, San Francisco, CA 94016" +289918,Wired Headphones,2,11.99,11/14/19 22:12,"705 Spruce St, Portland, ME 04101" +289919,20in Monitor,1,109.99,11/09/19 18:42,"8 Jefferson St, San Francisco, CA 94016" +289920,Bose SoundSport Headphones,1,99.99,11/15/19 19:57,"28 Maple St, Boston, MA 02215" +289920,AAA Batteries (4-pack),1,2.99,11/15/19 19:57,"28 Maple St, Boston, MA 02215" +289921,Lightning Charging Cable,1,14.95,11/12/19 13:57,"863 Meadow St, New York City, NY 10001" +289922,AA Batteries (4-pack),1,3.84,11/08/19 18:29,"115 Lakeview St, New York City, NY 10001" +289923,AAA Batteries (4-pack),1,2.99,11/27/19 16:52,"315 Main St, Boston, MA 02215" +289924,Wired Headphones,1,11.99,11/22/19 19:51,"930 Lakeview St, San Francisco, CA 94016" +289925,Wired Headphones,2,11.99,11/03/19 15:54,"650 Cedar St, New York City, NY 10001" +289926,Lightning Charging Cable,1,14.95,11/13/19 12:32,"573 Lincoln St, Atlanta, GA 30301" +289927,AA Batteries (4-pack),1,3.84,11/09/19 22:21,"294 Pine St, Los Angeles, CA 90001" +289928,USB-C Charging Cable,1,11.95,11/01/19 15:30,"715 West St, Dallas, TX 75001" +289929,Wired Headphones,1,11.99,11/28/19 11:53,"421 Church St, San Francisco, CA 94016" +289930,Wired Headphones,1,11.99,11/28/19 10:23,"932 Cherry St, San Francisco, CA 94016" +289931,Wired Headphones,1,11.99,11/24/19 07:14,"675 13th St, Seattle, WA 98101" +289932,27in 4K Gaming Monitor,1,389.99,11/13/19 13:57,"903 5th St, Dallas, TX 75001" +289933,27in FHD Monitor,1,149.99,11/08/19 14:15,"41 Church St, Los Angeles, CA 90001" +289934,27in FHD Monitor,1,149.99,11/21/19 09:08,"446 Chestnut St, Dallas, TX 75001" +289935,27in FHD Monitor,1,149.99,11/28/19 02:46,"495 Willow St, Boston, MA 02215" +289936,AA Batteries (4-pack),1,3.84,11/30/19 08:58,"311 1st St, Boston, MA 02215" +289937,AA Batteries (4-pack),1,3.84,11/24/19 23:54,"36 Chestnut St, Seattle, WA 98101" +289938,USB-C Charging Cable,1,11.95,11/18/19 11:40,"298 Johnson St, San Francisco, CA 94016" +289939,Vareebadd Phone,1,400,11/19/19 11:45,"241 Chestnut St, Los Angeles, CA 90001" +289939,USB-C Charging Cable,2,11.95,11/19/19 11:45,"241 Chestnut St, Los Angeles, CA 90001" +289940,Bose SoundSport Headphones,1,99.99,11/21/19 15:00,"702 6th St, Austin, TX 73301" +289941,Wired Headphones,1,11.99,11/18/19 06:22,"307 North St, Los Angeles, CA 90001" +289942,AA Batteries (4-pack),2,3.84,11/16/19 09:45,"150 Forest St, San Francisco, CA 94016" +289943,Bose SoundSport Headphones,1,99.99,11/13/19 11:20,"591 5th St, San Francisco, CA 94016" +289944,34in Ultrawide Monitor,1,379.99,11/23/19 11:46,"212 Center St, San Francisco, CA 94016" +289945,AA Batteries (4-pack),1,3.84,11/15/19 23:59,"260 North St, Los Angeles, CA 90001" +289946,34in Ultrawide Monitor,1,379.99,11/08/19 22:41,"801 Adams St, Portland, ME 04101" +289947,USB-C Charging Cable,1,11.95,11/11/19 13:35,"465 Adams St, Los Angeles, CA 90001" +289948,27in FHD Monitor,1,149.99,11/04/19 23:45,"863 Wilson St, Boston, MA 02215" +289949,Lightning Charging Cable,1,14.95,11/05/19 17:34,"610 5th St, Los Angeles, CA 90001" +289950,Lightning Charging Cable,1,14.95,11/28/19 19:51,"442 9th St, Boston, MA 02215" +289951,Wired Headphones,1,11.99,11/21/19 20:55,"374 Lakeview St, San Francisco, CA 94016" +289952,Bose SoundSport Headphones,1,99.99,11/24/19 16:32,"832 4th St, Boston, MA 02215" +289953,AA Batteries (4-pack),1,3.84,11/05/19 11:35,"227 Madison St, San Francisco, CA 94016" +289954,USB-C Charging Cable,1,11.95,11/05/19 19:33,"620 Center St, Boston, MA 02215" +289955,ThinkPad Laptop,1,999.99,11/06/19 01:26,"999 12th St, Boston, MA 02215" +289956,Wired Headphones,2,11.99,11/26/19 20:26,"303 Sunset St, New York City, NY 10001" +289957,USB-C Charging Cable,1,11.95,11/01/19 23:33,"308 Cherry St, New York City, NY 10001" +289958,Wired Headphones,2,11.99,11/05/19 12:17,"265 5th St, San Francisco, CA 94016" +289959,AA Batteries (4-pack),1,3.84,11/21/19 17:15,"966 8th St, Portland, ME 04101" +289960,USB-C Charging Cable,1,11.95,11/25/19 09:58,"406 Hickory St, Atlanta, GA 30301" +289961,AA Batteries (4-pack),1,3.84,11/26/19 11:33,"63 Spruce St, San Francisco, CA 94016" +289962,Wired Headphones,1,11.99,11/25/19 14:07,"904 5th St, San Francisco, CA 94016" +289963,iPhone,1,700,11/13/19 14:52,"927 13th St, San Francisco, CA 94016" +289964,20in Monitor,1,109.99,11/03/19 09:39,"237 Sunset St, Los Angeles, CA 90001" +289965,AAA Batteries (4-pack),1,2.99,11/30/19 19:08,"243 Maple St, Los Angeles, CA 90001" +289966,Lightning Charging Cable,1,14.95,11/14/19 17:47,"674 West St, San Francisco, CA 94016" +289967,AAA Batteries (4-pack),2,2.99,11/04/19 10:18,"747 Forest St, San Francisco, CA 94016" +289968,iPhone,1,700,11/16/19 14:21,"495 Dogwood St, Austin, TX 73301" +289969,Wired Headphones,1,11.99,11/25/19 14:18,"832 Hickory St, New York City, NY 10001" +289970,Google Phone,1,600,11/03/19 12:00,"763 Forest St, Portland, OR 97035" +289971,iPhone,1,700,11/01/19 11:54,"21 West St, New York City, NY 10001" +289972,Apple Airpods Headphones,1,150,11/21/19 10:25,"281 Elm St, San Francisco, CA 94016" +289973,27in 4K Gaming Monitor,1,389.99,11/01/19 20:41,"480 Elm St, Dallas, TX 75001" +289974,Bose SoundSport Headphones,2,99.99,11/28/19 17:28,"878 11th St, San Francisco, CA 94016" +289975,AAA Batteries (4-pack),1,2.99,11/06/19 18:08,"260 8th St, Atlanta, GA 30301" +289976,Bose SoundSport Headphones,1,99.99,11/05/19 05:59,"911 Dogwood St, Boston, MA 02215" +289977,USB-C Charging Cable,1,11.95,12/01/19 00:20,"936 Church St, San Francisco, CA 94016" +289978,Lightning Charging Cable,1,14.95,11/04/19 22:42,"537 1st St, San Francisco, CA 94016" +289979,USB-C Charging Cable,1,11.95,11/16/19 17:34,"543 Center St, New York City, NY 10001" +289980,Lightning Charging Cable,1,14.95,11/15/19 20:19,"923 Church St, Atlanta, GA 30301" +289981,Lightning Charging Cable,1,14.95,11/10/19 19:30,"282 West St, San Francisco, CA 94016" +289982,Wired Headphones,2,11.99,11/28/19 11:12,"291 Main St, Los Angeles, CA 90001" +289983,Google Phone,1,600,11/05/19 11:07,"565 Chestnut St, Portland, OR 97035" +289983,Bose SoundSport Headphones,1,99.99,11/05/19 11:07,"565 Chestnut St, Portland, OR 97035" +289984,Lightning Charging Cable,1,14.95,11/09/19 21:42,"977 1st St, San Francisco, CA 94016" +289985,Wired Headphones,1,11.99,11/20/19 08:21,"732 Dogwood St, Los Angeles, CA 90001" +289986,Google Phone,1,600,11/06/19 13:24,"332 Ridge St, Seattle, WA 98101" +289986,Wired Headphones,1,11.99,11/06/19 13:24,"332 Ridge St, Seattle, WA 98101" +289987,AA Batteries (4-pack),1,3.84,11/26/19 09:57,"664 Park St, Boston, MA 02215" +289988,USB-C Charging Cable,1,11.95,11/19/19 18:21,"45 Highland St, Dallas, TX 75001" +289989,AA Batteries (4-pack),1,3.84,11/14/19 12:53,"57 North St, San Francisco, CA 94016" +289990,Wired Headphones,1,11.99,11/05/19 14:54,"547 Madison St, Los Angeles, CA 90001" +289991,LG Washing Machine,1,600.0,11/19/19 11:38,"107 North St, Atlanta, GA 30301" +289992,iPhone,1,700,11/26/19 19:03,"879 6th St, Los Angeles, CA 90001" +289992,Wired Headphones,1,11.99,11/26/19 19:03,"879 6th St, Los Angeles, CA 90001" +289993,Wired Headphones,1,11.99,11/08/19 18:55,"255 13th St, San Francisco, CA 94016" +289994,Google Phone,1,600,11/08/19 19:11,"878 West St, Los Angeles, CA 90001" +289995,Bose SoundSport Headphones,2,99.99,11/07/19 17:29,"688 Dogwood St, Boston, MA 02215" +289996,Wired Headphones,1,11.99,11/21/19 02:01,"461 Cherry St, Los Angeles, CA 90001" +289997,Wired Headphones,1,11.99,11/24/19 11:10,"541 13th St, Boston, MA 02215" +289998,Lightning Charging Cable,1,14.95,11/14/19 12:14,"894 Park St, New York City, NY 10001" +289999,Lightning Charging Cable,2,14.95,11/18/19 02:09,"61 Wilson St, Dallas, TX 75001" +290000,Apple Airpods Headphones,1,150,11/04/19 10:32,"674 Cherry St, New York City, NY 10001" +290001,34in Ultrawide Monitor,1,379.99,11/29/19 21:43,"988 8th St, San Francisco, CA 94016" +290002,Apple Airpods Headphones,1,150,11/25/19 15:27,"938 Dogwood St, Los Angeles, CA 90001" +290003,20in Monitor,1,109.99,11/23/19 11:23,"490 12th St, Atlanta, GA 30301" +290004,Lightning Charging Cable,1,14.95,11/09/19 17:35,"330 North St, Seattle, WA 98101" +290005,Wired Headphones,1,11.99,11/13/19 00:43,"442 Lakeview St, Atlanta, GA 30301" +290006,Macbook Pro Laptop,1,1700,11/25/19 19:12,"293 Dogwood St, Boston, MA 02215" +290007,AAA Batteries (4-pack),1,2.99,11/03/19 14:51,"76 Church St, San Francisco, CA 94016" +290008,Lightning Charging Cable,1,14.95,11/09/19 02:35,"107 Lake St, Seattle, WA 98101" +290009,Flatscreen TV,1,300,11/24/19 21:36,"468 Johnson St, New York City, NY 10001" +290010,Lightning Charging Cable,1,14.95,11/17/19 18:40,"629 8th St, San Francisco, CA 94016" +290011,Bose SoundSport Headphones,1,99.99,11/24/19 07:22,"979 Madison St, Portland, OR 97035" +290012,Lightning Charging Cable,1,14.95,11/27/19 14:48,"577 5th St, New York City, NY 10001" +290013,Apple Airpods Headphones,1,150,11/11/19 19:25,"5 Wilson St, Los Angeles, CA 90001" +290014,USB-C Charging Cable,2,11.95,11/03/19 18:55,"290 Lakeview St, San Francisco, CA 94016" +290015,USB-C Charging Cable,1,11.95,11/14/19 17:35,"677 8th St, San Francisco, CA 94016" +290016,Wired Headphones,1,11.99,11/12/19 19:48,"815 Hickory St, Austin, TX 73301" +290017,AA Batteries (4-pack),1,3.84,11/27/19 10:01,"48 Hill St, Los Angeles, CA 90001" +290018,AA Batteries (4-pack),1,3.84,11/30/19 19:17,"420 Chestnut St, Dallas, TX 75001" +290019,Lightning Charging Cable,1,14.95,11/16/19 18:31,"609 2nd St, Boston, MA 02215" +290020,Apple Airpods Headphones,1,150,11/20/19 23:21,"552 8th St, Los Angeles, CA 90001" +290021,Lightning Charging Cable,1,14.95,11/13/19 19:40,"688 Forest St, New York City, NY 10001" +290022,Bose SoundSport Headphones,1,99.99,11/04/19 16:32,"171 Center St, Los Angeles, CA 90001" +290023,Wired Headphones,1,11.99,11/12/19 22:24,"587 Sunset St, Seattle, WA 98101" +290024,Google Phone,1,600,11/07/19 10:48,"167 Park St, Los Angeles, CA 90001" +290024,USB-C Charging Cable,1,11.95,11/07/19 10:48,"167 Park St, Los Angeles, CA 90001" +290025,AA Batteries (4-pack),1,3.84,11/19/19 14:54,"452 7th St, San Francisco, CA 94016" +290026,Wired Headphones,1,11.99,11/23/19 11:15,"271 Jackson St, New York City, NY 10001" +290027,34in Ultrawide Monitor,1,379.99,11/14/19 21:36,"171 11th St, Dallas, TX 75001" +290028,Flatscreen TV,1,300,11/11/19 12:22,"791 Sunset St, Dallas, TX 75001" +290029,Bose SoundSport Headphones,1,99.99,11/19/19 10:25,"985 14th St, Boston, MA 02215" +290030,AA Batteries (4-pack),1,3.84,11/19/19 14:25,"432 6th St, New York City, NY 10001" +290031,AA Batteries (4-pack),1,3.84,11/06/19 16:34,"965 Forest St, Portland, OR 97035" +290032,AAA Batteries (4-pack),2,2.99,11/22/19 14:48,"448 Madison St, Los Angeles, CA 90001" +290033,AA Batteries (4-pack),1,3.84,11/21/19 22:25,"494 12th St, Atlanta, GA 30301" +290034,27in 4K Gaming Monitor,1,389.99,11/19/19 22:41,"861 Ridge St, New York City, NY 10001" +290035,AA Batteries (4-pack),1,3.84,11/24/19 13:40,"278 Cherry St, San Francisco, CA 94016" +290036,Flatscreen TV,1,300,11/26/19 16:23,"297 Lincoln St, Dallas, TX 75001" +290037,Lightning Charging Cable,1,14.95,11/22/19 21:17,"760 Hickory St, Dallas, TX 75001" +290038,Bose SoundSport Headphones,1,99.99,11/02/19 20:23,"251 Walnut St, New York City, NY 10001" +290039,iPhone,1,700,11/27/19 15:13,"918 Washington St, New York City, NY 10001" +290040,AA Batteries (4-pack),1,3.84,11/25/19 17:04,"769 7th St, New York City, NY 10001" +290041,27in 4K Gaming Monitor,1,389.99,11/06/19 17:25,"252 Pine St, San Francisco, CA 94016" +290042,AAA Batteries (4-pack),2,2.99,11/22/19 18:01,"942 Spruce St, San Francisco, CA 94016" +290043,iPhone,1,700,11/26/19 23:25,"105 5th St, Los Angeles, CA 90001" +290044,AAA Batteries (4-pack),1,2.99,11/11/19 10:44,"599 Willow St, New York City, NY 10001" +290045,Bose SoundSport Headphones,1,99.99,11/29/19 21:56,"649 7th St, Los Angeles, CA 90001" +290046,AA Batteries (4-pack),1,3.84,11/02/19 19:11,"447 12th St, Seattle, WA 98101" +290047,Lightning Charging Cable,1,14.95,11/07/19 10:56,"372 Park St, Los Angeles, CA 90001" +290048,27in FHD Monitor,1,149.99,11/26/19 22:45,"540 Meadow St, Seattle, WA 98101" +290049,Apple Airpods Headphones,1,150,11/16/19 13:27,"2 Jackson St, Atlanta, GA 30301" +290050,Google Phone,1,600,11/23/19 00:13,"38 Jackson St, Los Angeles, CA 90001" +290051,Lightning Charging Cable,1,14.95,11/21/19 23:34,"782 Ridge St, Boston, MA 02215" +290052,iPhone,1,700,11/21/19 09:14,"200 Lake St, Atlanta, GA 30301" +290053,Wired Headphones,1,11.99,11/20/19 17:22,"997 Park St, San Francisco, CA 94016" +290054,AA Batteries (4-pack),3,3.84,11/16/19 11:47,"866 2nd St, Los Angeles, CA 90001" +290055,Lightning Charging Cable,1,14.95,11/30/19 07:38,"109 Lincoln St, San Francisco, CA 94016" +290056,Lightning Charging Cable,1,14.95,11/12/19 00:45,"589 11th St, Los Angeles, CA 90001" +290057,Lightning Charging Cable,1,14.95,11/20/19 01:51,"400 West St, San Francisco, CA 94016" +290058,Wired Headphones,1,11.99,11/25/19 21:18,"754 Jefferson St, San Francisco, CA 94016" +290059,AAA Batteries (4-pack),1,2.99,11/10/19 15:01,"347 Wilson St, Boston, MA 02215" +290060,34in Ultrawide Monitor,1,379.99,11/01/19 12:35,"283 North St, Los Angeles, CA 90001" +290061,Lightning Charging Cable,1,14.95,12/01/19 00:13,"588 2nd St, Boston, MA 02215" +290062,USB-C Charging Cable,1,11.95,11/10/19 05:22,"292 Main St, Austin, TX 73301" +290063,Apple Airpods Headphones,1,150,11/08/19 12:57,"777 Church St, Portland, ME 04101" +290064,Wired Headphones,1,11.99,11/29/19 10:50,"878 12th St, San Francisco, CA 94016" +290065,AA Batteries (4-pack),2,3.84,11/23/19 20:01,"665 Jackson St, Dallas, TX 75001" +290066,AAA Batteries (4-pack),1,2.99,11/26/19 13:50,"737 6th St, San Francisco, CA 94016" +290067,27in FHD Monitor,1,149.99,11/08/19 21:43,"417 Meadow St, Portland, OR 97035" +290068,USB-C Charging Cable,1,11.95,11/02/19 20:37,"740 Maple St, Los Angeles, CA 90001" +290069,USB-C Charging Cable,1,11.95,11/29/19 19:08,"808 Wilson St, San Francisco, CA 94016" +290070,AA Batteries (4-pack),1,3.84,11/22/19 19:10,"841 Wilson St, Atlanta, GA 30301" +,,,,, +290071,Lightning Charging Cable,2,14.95,11/23/19 08:58,"607 Walnut St, San Francisco, CA 94016" +290072,AAA Batteries (4-pack),1,2.99,11/23/19 14:23,"351 5th St, Boston, MA 02215" +290073,27in FHD Monitor,1,149.99,11/02/19 20:32,"831 8th St, Boston, MA 02215" +290074,USB-C Charging Cable,1,11.95,11/13/19 15:49,"315 Spruce St, Los Angeles, CA 90001" +290075,AA Batteries (4-pack),1,3.84,11/15/19 12:52,"149 Hill St, New York City, NY 10001" +290075,Wired Headphones,1,11.99,11/15/19 12:52,"149 Hill St, New York City, NY 10001" +290076,27in FHD Monitor,1,149.99,11/26/19 16:32,"283 4th St, Seattle, WA 98101" +290077,27in FHD Monitor,1,149.99,11/12/19 16:10,"601 Main St, Boston, MA 02215" +290078,Lightning Charging Cable,1,14.95,11/23/19 12:08,"991 Hickory St, Los Angeles, CA 90001" +290079,Lightning Charging Cable,1,14.95,11/18/19 00:23,"724 8th St, Dallas, TX 75001" +290080,Lightning Charging Cable,1,14.95,11/26/19 07:42,"444 Wilson St, New York City, NY 10001" +290081,ThinkPad Laptop,1,999.99,11/08/19 14:18,"441 North St, Los Angeles, CA 90001" +290082,AA Batteries (4-pack),1,3.84,11/12/19 22:35,"3 West St, San Francisco, CA 94016" +290083,iPhone,1,700,11/19/19 10:15,"117 Chestnut St, Los Angeles, CA 90001" +290084,AA Batteries (4-pack),1,3.84,11/19/19 18:36,"381 Jackson St, San Francisco, CA 94016" +290085,Wired Headphones,1,11.99,11/19/19 18:05,"294 Washington St, San Francisco, CA 94016" +290086,34in Ultrawide Monitor,1,379.99,11/20/19 12:40,"420 North St, Atlanta, GA 30301" +290087,AA Batteries (4-pack),1,3.84,11/29/19 15:10,"944 Main St, San Francisco, CA 94016" +290088,Lightning Charging Cable,1,14.95,11/15/19 22:09,"158 Park St, San Francisco, CA 94016" +290089,27in FHD Monitor,1,149.99,11/20/19 19:57,"765 Highland St, San Francisco, CA 94016" +290090,USB-C Charging Cable,1,11.95,11/24/19 08:13,"816 Meadow St, Dallas, TX 75001" +290091,27in 4K Gaming Monitor,1,389.99,11/09/19 15:43,"419 Adams St, Dallas, TX 75001" +290092,USB-C Charging Cable,1,11.95,11/13/19 23:33,"840 12th St, Los Angeles, CA 90001" +290093,Lightning Charging Cable,1,14.95,11/26/19 11:29,"876 Maple St, Seattle, WA 98101" +290094,AA Batteries (4-pack),1,3.84,11/19/19 21:20,"405 South St, Los Angeles, CA 90001" +290095,Lightning Charging Cable,1,14.95,11/25/19 10:28,"391 Spruce St, New York City, NY 10001" +290096,Lightning Charging Cable,1,14.95,11/02/19 20:26,"20 9th St, San Francisco, CA 94016" +290097,AAA Batteries (4-pack),1,2.99,11/20/19 19:30,"617 Madison St, Los Angeles, CA 90001" +290098,AAA Batteries (4-pack),3,2.99,11/06/19 17:35,"956 Highland St, Los Angeles, CA 90001" +290099,Lightning Charging Cable,1,14.95,11/17/19 23:56,"914 River St, San Francisco, CA 94016" +290100,Wired Headphones,1,11.99,11/09/19 12:22,"600 Hickory St, Dallas, TX 75001" +290101,Bose SoundSport Headphones,1,99.99,11/10/19 10:01,"853 Jackson St, Boston, MA 02215" +290102,USB-C Charging Cable,1,11.95,11/14/19 08:33,"655 Chestnut St, New York City, NY 10001" +290103,AAA Batteries (4-pack),1,2.99,11/30/19 17:51,"506 Elm St, Portland, ME 04101" +290104,AAA Batteries (4-pack),2,2.99,11/21/19 18:27,"743 14th St, New York City, NY 10001" +290105,AAA Batteries (4-pack),1,2.99,11/09/19 17:54,"330 Dogwood St, San Francisco, CA 94016" +290106,AAA Batteries (4-pack),1,2.99,11/08/19 20:37,"499 Lincoln St, Portland, ME 04101" +290107,27in 4K Gaming Monitor,1,389.99,11/17/19 19:42,"618 10th St, Portland, OR 97035" +290108,27in 4K Gaming Monitor,1,389.99,11/03/19 10:06,"690 Walnut St, San Francisco, CA 94016" +290109,USB-C Charging Cable,1,11.95,11/15/19 19:31,"380 8th St, San Francisco, CA 94016" +290110,Flatscreen TV,1,300,11/04/19 09:37,"511 Main St, Los Angeles, CA 90001" +290111,Bose SoundSport Headphones,1,99.99,11/12/19 22:38,"684 11th St, Austin, TX 73301" +290112,Lightning Charging Cable,1,14.95,11/28/19 11:35,"845 Wilson St, Los Angeles, CA 90001" +290113,Flatscreen TV,1,300,11/01/19 20:51,"70 Ridge St, New York City, NY 10001" +290114,Bose SoundSport Headphones,1,99.99,11/23/19 09:14,"443 Spruce St, Austin, TX 73301" +290115,Vareebadd Phone,1,400,11/15/19 17:31,"989 10th St, Austin, TX 73301" +290115,USB-C Charging Cable,1,11.95,11/15/19 17:31,"989 10th St, Austin, TX 73301" +290116,Google Phone,1,600,11/04/19 18:22,"756 Jefferson St, San Francisco, CA 94016" +290117,USB-C Charging Cable,1,11.95,11/06/19 19:32,"289 Madison St, Boston, MA 02215" +290118,AAA Batteries (4-pack),3,2.99,11/14/19 10:04,"866 Jefferson St, San Francisco, CA 94016" +290119,AAA Batteries (4-pack),1,2.99,11/10/19 13:43,"789 6th St, Los Angeles, CA 90001" +290120,AAA Batteries (4-pack),1,2.99,11/23/19 17:51,"753 Ridge St, Seattle, WA 98101" +290121,ThinkPad Laptop,1,999.99,11/03/19 19:04,"430 Cedar St, Austin, TX 73301" +290122,Apple Airpods Headphones,1,150,11/13/19 12:34,"637 Pine St, Boston, MA 02215" +290123,LG Dryer,1,600.0,11/13/19 03:21,"103 Hickory St, San Francisco, CA 94016" +290124,Bose SoundSport Headphones,1,99.99,11/30/19 19:13,"977 Wilson St, San Francisco, CA 94016" +290125,Bose SoundSport Headphones,1,99.99,11/24/19 13:31,"306 6th St, New York City, NY 10001" +290126,20in Monitor,1,109.99,11/24/19 15:19,"377 11th St, San Francisco, CA 94016" +290127,Apple Airpods Headphones,1,150,11/28/19 22:56,"654 Center St, Dallas, TX 75001" +290128,AAA Batteries (4-pack),1,2.99,11/08/19 14:11,"675 Dogwood St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +290129,Apple Airpods Headphones,1,150,11/11/19 10:15,"68 Lakeview St, Portland, OR 97035" +290130,Bose SoundSport Headphones,1,99.99,11/20/19 14:22,"602 Ridge St, Atlanta, GA 30301" +290131,Lightning Charging Cable,1,14.95,11/23/19 14:56,"256 Elm St, Seattle, WA 98101" +290132,Lightning Charging Cable,1,14.95,11/04/19 17:38,"617 Hill St, San Francisco, CA 94016" +290133,Lightning Charging Cable,1,14.95,11/08/19 18:54,"933 1st St, Dallas, TX 75001" +290134,AA Batteries (4-pack),1,3.84,11/20/19 17:51,"449 5th St, Dallas, TX 75001" +290135,27in FHD Monitor,1,149.99,11/23/19 08:27,"282 West St, Los Angeles, CA 90001" +290136,Apple Airpods Headphones,1,150,11/16/19 13:46,"352 Ridge St, Austin, TX 73301" +290137,AA Batteries (4-pack),1,3.84,11/27/19 08:37,"913 Ridge St, Austin, TX 73301" +290138,27in FHD Monitor,1,149.99,11/20/19 13:30,"328 Forest St, San Francisco, CA 94016" +290139,USB-C Charging Cable,1,11.95,11/16/19 15:48,"494 Washington St, Dallas, TX 75001" +290140,Wired Headphones,1,11.99,11/06/19 18:42,"795 Adams St, Austin, TX 73301" +290141,Flatscreen TV,1,300,11/23/19 19:50,"809 Wilson St, Los Angeles, CA 90001" +290142,Bose SoundSport Headphones,1,99.99,11/25/19 16:19,"491 Ridge St, New York City, NY 10001" +290143,AA Batteries (4-pack),1,3.84,11/16/19 19:24,"468 8th St, Portland, OR 97035" +290144,Google Phone,1,600,11/25/19 13:48,"983 River St, Los Angeles, CA 90001" +290144,USB-C Charging Cable,1,11.95,11/25/19 13:48,"983 River St, Los Angeles, CA 90001" +290145,27in FHD Monitor,1,149.99,11/25/19 05:55,"493 Lake St, Dallas, TX 75001" +290146,AA Batteries (4-pack),1,3.84,11/14/19 19:56,"337 Lake St, Seattle, WA 98101" +290147,27in 4K Gaming Monitor,1,389.99,11/18/19 16:57,"795 4th St, Boston, MA 02215" +290148,AAA Batteries (4-pack),1,2.99,11/23/19 21:26,"76 4th St, New York City, NY 10001" +290149,Apple Airpods Headphones,1,150,11/22/19 18:13,"50 13th St, Atlanta, GA 30301" +290150,ThinkPad Laptop,1,999.99,11/14/19 21:05,"669 South St, Boston, MA 02215" +290151,AA Batteries (4-pack),1,3.84,11/07/19 20:21,"548 Washington St, San Francisco, CA 94016" +290152,Apple Airpods Headphones,1,150,11/02/19 18:51,"388 River St, New York City, NY 10001" +290153,USB-C Charging Cable,1,11.95,11/28/19 19:20,"108 Meadow St, Dallas, TX 75001" +290154,AAA Batteries (4-pack),1,2.99,11/06/19 18:14,"687 11th St, Atlanta, GA 30301" +290155,AAA Batteries (4-pack),1,2.99,11/11/19 12:10,"701 Madison St, Atlanta, GA 30301" +290156,AA Batteries (4-pack),2,3.84,11/24/19 17:16,"284 Highland St, Seattle, WA 98101" +290157,Bose SoundSport Headphones,1,99.99,11/09/19 15:57,"785 Highland St, New York City, NY 10001" +290158,27in FHD Monitor,1,149.99,11/19/19 10:52,"561 Cedar St, Portland, OR 97035" +290159,Apple Airpods Headphones,1,150,11/23/19 19:59,"746 Jackson St, San Francisco, CA 94016" +290160,AA Batteries (4-pack),1,3.84,11/09/19 10:27,"829 9th St, Los Angeles, CA 90001" +290161,AAA Batteries (4-pack),1,2.99,11/17/19 11:48,"978 West St, Austin, TX 73301" +290162,Wired Headphones,1,11.99,11/12/19 15:30,"37 South St, Atlanta, GA 30301" +290163,ThinkPad Laptop,1,999.99,11/15/19 20:22,"301 1st St, San Francisco, CA 94016" +290164,AA Batteries (4-pack),4,3.84,11/05/19 20:19,"400 Madison St, Dallas, TX 75001" +290165,iPhone,1,700,11/22/19 23:39,"320 Chestnut St, Portland, OR 97035" +290166,Wired Headphones,1,11.99,11/02/19 11:21,"987 Pine St, Atlanta, GA 30301" +290167,Lightning Charging Cable,1,14.95,11/26/19 14:54,"367 Forest St, New York City, NY 10001" +290168,Google Phone,1,600,11/02/19 22:11,"48 Hickory St, San Francisco, CA 94016" +290169,Lightning Charging Cable,1,14.95,11/05/19 19:47,"139 Main St, Dallas, TX 75001" +290170,iPhone,1,700,11/13/19 09:50,"559 Walnut St, New York City, NY 10001" +290171,AA Batteries (4-pack),1,3.84,11/28/19 10:43,"597 1st St, Boston, MA 02215" +290172,27in FHD Monitor,1,149.99,11/11/19 19:43,"96 South St, Boston, MA 02215" +290173,USB-C Charging Cable,1,11.95,11/29/19 14:36,"952 Wilson St, New York City, NY 10001" +290174,34in Ultrawide Monitor,1,379.99,11/28/19 18:11,"840 Maple St, New York City, NY 10001" +290175,Bose SoundSport Headphones,1,99.99,11/15/19 19:26,"830 Pine St, Los Angeles, CA 90001" +290176,Lightning Charging Cable,1,14.95,11/27/19 21:58,"458 10th St, Los Angeles, CA 90001" +290177,AA Batteries (4-pack),1,3.84,11/24/19 18:05,"31 Cedar St, Atlanta, GA 30301" +290178,Wired Headphones,1,11.99,11/22/19 10:04,"501 13th St, Los Angeles, CA 90001" +290179,Vareebadd Phone,1,400,11/21/19 13:37,"481 Ridge St, Seattle, WA 98101" +290180,AAA Batteries (4-pack),1,2.99,11/08/19 11:42,"857 Walnut St, New York City, NY 10001" +290181,Lightning Charging Cable,1,14.95,11/29/19 15:00,"739 1st St, San Francisco, CA 94016" +290182,34in Ultrawide Monitor,1,379.99,11/30/19 22:04,"274 Washington St, New York City, NY 10001" +290183,27in 4K Gaming Monitor,1,389.99,11/08/19 20:41,"621 Elm St, San Francisco, CA 94016" +290184,AAA Batteries (4-pack),1,2.99,11/07/19 12:49,"456 13th St, Boston, MA 02215" +290185,Macbook Pro Laptop,1,1700,11/13/19 22:18,"153 Johnson St, Dallas, TX 75001" +290186,AA Batteries (4-pack),1,3.84,11/22/19 23:49,"572 2nd St, New York City, NY 10001" +290187,AAA Batteries (4-pack),2,2.99,11/05/19 20:22,"165 Church St, Los Angeles, CA 90001" +290188,Macbook Pro Laptop,1,1700,11/22/19 00:00,"804 Jackson St, Atlanta, GA 30301" +290189,Vareebadd Phone,1,400,11/13/19 15:01,"116 Johnson St, Los Angeles, CA 90001" +290190,AAA Batteries (4-pack),1,2.99,11/02/19 05:58,"808 9th St, Seattle, WA 98101" +290191,Macbook Pro Laptop,1,1700,11/07/19 15:19,"262 4th St, Boston, MA 02215" +290192,USB-C Charging Cable,1,11.95,11/10/19 09:31,"665 Pine St, San Francisco, CA 94016" +290193,Apple Airpods Headphones,1,150,11/02/19 17:47,"836 4th St, Portland, OR 97035" +290194,Wired Headphones,1,11.99,11/17/19 19:24,"612 Washington St, San Francisco, CA 94016" +290195,Lightning Charging Cable,1,14.95,11/10/19 16:05,"983 8th St, San Francisco, CA 94016" +290196,AA Batteries (4-pack),2,3.84,11/04/19 19:33,"501 11th St, Seattle, WA 98101" +290197,AAA Batteries (4-pack),1,2.99,11/09/19 22:24,"777 7th St, San Francisco, CA 94016" +290198,Flatscreen TV,1,300,11/13/19 10:16,"117 Ridge St, Boston, MA 02215" +290199,Wired Headphones,1,11.99,11/02/19 23:31,"740 North St, Boston, MA 02215" +290200,Lightning Charging Cable,1,14.95,11/28/19 08:19,"592 Johnson St, New York City, NY 10001" +290201,Bose SoundSport Headphones,1,99.99,11/20/19 09:37,"831 Church St, Dallas, TX 75001" +290202,Wired Headphones,2,11.99,11/03/19 09:38,"207 10th St, New York City, NY 10001" +290203,AAA Batteries (4-pack),1,2.99,11/13/19 13:09,"923 5th St, Austin, TX 73301" +290204,Lightning Charging Cable,2,14.95,11/26/19 12:34,"451 Willow St, San Francisco, CA 94016" +290205,AA Batteries (4-pack),2,3.84,11/17/19 18:42,"884 Chestnut St, Los Angeles, CA 90001" +290206,AA Batteries (4-pack),1,3.84,11/01/19 22:02,"617 River St, San Francisco, CA 94016" +290207,Flatscreen TV,1,300,11/19/19 10:50,"899 Walnut St, New York City, NY 10001" +290208,Lightning Charging Cable,1,14.95,11/22/19 19:57,"208 Spruce St, New York City, NY 10001" +290209,Bose SoundSport Headphones,1,99.99,11/22/19 21:37,"671 Lincoln St, Los Angeles, CA 90001" +290210,iPhone,1,700,11/30/19 22:26,"568 Forest St, Boston, MA 02215" +290211,AA Batteries (4-pack),3,3.84,11/07/19 20:45,"628 Spruce St, Los Angeles, CA 90001" +290212,AAA Batteries (4-pack),2,2.99,11/06/19 18:08,"563 West St, Dallas, TX 75001" +290213,27in 4K Gaming Monitor,1,389.99,11/23/19 21:20,"214 Willow St, Los Angeles, CA 90001" +290214,Bose SoundSport Headphones,1,99.99,11/15/19 17:31,"830 Park St, New York City, NY 10001" +290215,Wired Headphones,1,11.99,11/11/19 09:02,"539 Ridge St, San Francisco, CA 94016" +290216,Lightning Charging Cable,1,14.95,11/25/19 02:57,"837 Park St, New York City, NY 10001" +290217,Apple Airpods Headphones,1,150,11/29/19 14:01,"343 13th St, Austin, TX 73301" +290218,AAA Batteries (4-pack),1,2.99,11/27/19 21:51,"426 South St, Los Angeles, CA 90001" +290219,Wired Headphones,1,11.99,11/21/19 12:32,"813 Washington St, Austin, TX 73301" +290220,Wired Headphones,1,11.99,11/10/19 19:42,"980 1st St, San Francisco, CA 94016" +290221,34in Ultrawide Monitor,1,379.99,11/10/19 12:51,"379 Church St, Boston, MA 02215" +290222,USB-C Charging Cable,1,11.95,11/26/19 22:28,"850 12th St, Atlanta, GA 30301" +290223,Wired Headphones,1,11.99,11/04/19 10:36,"200 Washington St, Seattle, WA 98101" +290224,Wired Headphones,1,11.99,11/26/19 23:26,"990 8th St, New York City, NY 10001" +290225,Bose SoundSport Headphones,1,99.99,11/19/19 07:26,"990 Pine St, Seattle, WA 98101" +290226,Wired Headphones,1,11.99,11/15/19 12:26,"366 Maple St, San Francisco, CA 94016" +290227,34in Ultrawide Monitor,1,379.99,11/22/19 17:18,"17 9th St, Austin, TX 73301" +290228,Lightning Charging Cable,1,14.95,11/08/19 13:42,"799 Lake St, Boston, MA 02215" +290228,ThinkPad Laptop,1,999.99,11/08/19 13:42,"799 Lake St, Boston, MA 02215" +290229,iPhone,1,700,11/23/19 16:28,"270 Church St, Atlanta, GA 30301" +290230,Lightning Charging Cable,1,14.95,11/15/19 08:52,"61 Jefferson St, Los Angeles, CA 90001" +290231,Bose SoundSport Headphones,1,99.99,11/23/19 19:21,"148 Meadow St, Boston, MA 02215" +290232,USB-C Charging Cable,1,11.95,11/02/19 18:16,"269 Highland St, New York City, NY 10001" +290233,USB-C Charging Cable,1,11.95,11/22/19 14:03,"211 8th St, San Francisco, CA 94016" +290234,AAA Batteries (4-pack),3,2.99,11/26/19 14:11,"445 Center St, Portland, OR 97035" +290235,AA Batteries (4-pack),1,3.84,11/24/19 18:00,"378 Washington St, Dallas, TX 75001" +290236,27in FHD Monitor,1,149.99,11/02/19 14:31,"546 Washington St, San Francisco, CA 94016" +290237,Lightning Charging Cable,1,14.95,11/17/19 11:19,"121 Lake St, Boston, MA 02215" +290238,USB-C Charging Cable,1,11.95,11/01/19 15:05,"213 Ridge St, Atlanta, GA 30301" +,,,,, +290239,Wired Headphones,2,11.99,11/12/19 19:19,"363 Madison St, San Francisco, CA 94016" +290240,Macbook Pro Laptop,1,1700,11/11/19 04:26,"759 Ridge St, San Francisco, CA 94016" +290241,AA Batteries (4-pack),1,3.84,11/03/19 10:51,"906 Pine St, Los Angeles, CA 90001" +290242,AA Batteries (4-pack),1,3.84,11/10/19 06:51,"701 Hill St, New York City, NY 10001" +290243,Wired Headphones,1,11.99,11/23/19 17:49,"975 Chestnut St, Portland, ME 04101" +290244,iPhone,1,700,11/22/19 00:38,"384 Hill St, Dallas, TX 75001" +290244,Apple Airpods Headphones,1,150,11/22/19 00:38,"384 Hill St, Dallas, TX 75001" +290245,AA Batteries (4-pack),1,3.84,11/11/19 16:34,"688 North St, Boston, MA 02215" +290246,AAA Batteries (4-pack),1,2.99,11/23/19 22:12,"309 Forest St, Austin, TX 73301" +290247,AA Batteries (4-pack),1,3.84,11/23/19 09:12,"727 13th St, San Francisco, CA 94016" +290248,USB-C Charging Cable,1,11.95,11/10/19 11:03,"482 2nd St, San Francisco, CA 94016" +290249,USB-C Charging Cable,1,11.95,11/08/19 12:12,"93 10th St, Boston, MA 02215" +290250,Flatscreen TV,1,300,11/03/19 18:49,"932 Hill St, Boston, MA 02215" +290251,Wired Headphones,1,11.99,11/13/19 11:30,"841 West St, Los Angeles, CA 90001" +290252,AA Batteries (4-pack),1,3.84,11/04/19 20:03,"585 12th St, San Francisco, CA 94016" +290253,Lightning Charging Cable,1,14.95,11/07/19 10:26,"702 Hill St, Boston, MA 02215" +290254,Lightning Charging Cable,1,14.95,11/27/19 16:25,"689 Cedar St, Boston, MA 02215" +290254,Lightning Charging Cable,1,14.95,11/27/19 16:25,"689 Cedar St, Boston, MA 02215" +290255,USB-C Charging Cable,1,11.95,11/13/19 18:38,"349 Church St, New York City, NY 10001" +290256,Lightning Charging Cable,1,14.95,11/22/19 18:28,"830 Meadow St, Los Angeles, CA 90001" +290257,Lightning Charging Cable,1,14.95,11/07/19 18:38,"371 Highland St, Los Angeles, CA 90001" +290258,Bose SoundSport Headphones,1,99.99,11/20/19 16:13,"786 Elm St, Atlanta, GA 30301" +290259,27in FHD Monitor,1,149.99,11/15/19 12:57,"637 10th St, Boston, MA 02215" +290260,20in Monitor,1,109.99,11/16/19 14:25,"699 1st St, Atlanta, GA 30301" +290261,USB-C Charging Cable,2,11.95,11/12/19 21:05,"985 Lake St, New York City, NY 10001" +290262,Apple Airpods Headphones,1,150,11/09/19 14:30,"872 9th St, Los Angeles, CA 90001" +290263,Bose SoundSport Headphones,1,99.99,11/25/19 12:04,"216 14th St, Dallas, TX 75001" +290264,27in FHD Monitor,1,149.99,11/05/19 19:36,"186 5th St, New York City, NY 10001" +290265,27in 4K Gaming Monitor,1,389.99,11/17/19 06:50,"510 Willow St, Atlanta, GA 30301" +290266,Lightning Charging Cable,1,14.95,11/25/19 10:43,"152 7th St, San Francisco, CA 94016" +290267,Lightning Charging Cable,1,14.95,11/28/19 18:09,"755 Wilson St, Seattle, WA 98101" +290268,Bose SoundSport Headphones,1,99.99,11/01/19 08:59,"808 Spruce St, Dallas, TX 75001" +290269,AAA Batteries (4-pack),4,2.99,11/03/19 19:56,"501 Cedar St, San Francisco, CA 94016" +290270,Lightning Charging Cable,1,14.95,11/29/19 03:12,"65 7th St, Boston, MA 02215" +290271,AAA Batteries (4-pack),1,2.99,11/03/19 14:02,"741 7th St, Austin, TX 73301" +290272,Wired Headphones,1,11.99,11/12/19 18:55,"790 9th St, Seattle, WA 98101" +290273,AA Batteries (4-pack),1,3.84,11/05/19 19:57,"859 11th St, Boston, MA 02215" +290274,Lightning Charging Cable,1,14.95,11/21/19 19:38,"576 Adams St, Seattle, WA 98101" +290275,Lightning Charging Cable,1,14.95,11/09/19 17:09,"262 13th St, Seattle, WA 98101" +290276,Bose SoundSport Headphones,1,99.99,11/30/19 17:55,"128 10th St, Portland, OR 97035" +290277,AAA Batteries (4-pack),1,2.99,11/08/19 20:30,"541 Walnut St, Boston, MA 02215" +290278,Apple Airpods Headphones,1,150,11/12/19 20:35,"987 Sunset St, San Francisco, CA 94016" +290279,34in Ultrawide Monitor,1,379.99,11/30/19 12:40,"345 Hickory St, New York City, NY 10001" +290280,USB-C Charging Cable,1,11.95,11/29/19 08:03,"218 Lincoln St, Dallas, TX 75001" +290281,27in FHD Monitor,1,149.99,11/25/19 08:09,"617 6th St, Los Angeles, CA 90001" +290282,Vareebadd Phone,1,400,11/11/19 23:22,"895 Hickory St, Los Angeles, CA 90001" +290283,Bose SoundSport Headphones,1,99.99,11/29/19 10:50,"424 6th St, New York City, NY 10001" +290284,AA Batteries (4-pack),3,3.84,11/05/19 17:59,"285 Hill St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +290285,20in Monitor,1,109.99,11/21/19 10:10,"702 13th St, Boston, MA 02215" +290286,27in 4K Gaming Monitor,1,389.99,11/20/19 14:14,"346 Park St, Austin, TX 73301" +290287,Flatscreen TV,1,300,11/16/19 21:10,"652 Main St, New York City, NY 10001" +290288,34in Ultrawide Monitor,1,379.99,11/21/19 16:08,"73 Forest St, Dallas, TX 75001" +290289,Apple Airpods Headphones,1,150,11/30/19 21:38,"199 Johnson St, San Francisco, CA 94016" +290290,AA Batteries (4-pack),1,3.84,11/15/19 10:31,"716 5th St, Los Angeles, CA 90001" +290291,AAA Batteries (4-pack),1,2.99,11/08/19 20:38,"606 Church St, San Francisco, CA 94016" +290292,AAA Batteries (4-pack),1,2.99,11/13/19 09:19,"250 Spruce St, Los Angeles, CA 90001" +290293,Wired Headphones,1,11.99,11/27/19 07:59,"201 Meadow St, Los Angeles, CA 90001" +290294,AA Batteries (4-pack),1,3.84,11/06/19 18:50,"318 Willow St, Boston, MA 02215" +290295,Google Phone,1,600,11/27/19 23:58,"709 14th St, Boston, MA 02215" +290295,Bose SoundSport Headphones,1,99.99,11/27/19 23:58,"709 14th St, Boston, MA 02215" +290296,AAA Batteries (4-pack),1,2.99,11/19/19 23:45,"602 Elm St, New York City, NY 10001" +290297,Bose SoundSport Headphones,1,99.99,11/07/19 05:25,"324 Lakeview St, San Francisco, CA 94016" +290298,AAA Batteries (4-pack),1,2.99,11/23/19 12:07,"276 Park St, San Francisco, CA 94016" +290299,ThinkPad Laptop,1,999.99,11/20/19 20:19,"558 14th St, New York City, NY 10001" +290300,Wired Headphones,1,11.99,11/26/19 20:28,"711 Pine St, Portland, OR 97035" +290301,USB-C Charging Cable,1,11.95,11/22/19 11:31,"73 River St, New York City, NY 10001" +290302,USB-C Charging Cable,1,11.95,11/07/19 23:33,"168 Maple St, New York City, NY 10001" +290303,iPhone,1,700,11/24/19 10:39,"254 Lake St, New York City, NY 10001" +290304,Flatscreen TV,1,300,11/06/19 10:37,"236 5th St, Los Angeles, CA 90001" +290305,Lightning Charging Cable,1,14.95,11/29/19 12:32,"921 2nd St, San Francisco, CA 94016" +290306,Flatscreen TV,1,300,11/26/19 10:45,"336 Cherry St, Austin, TX 73301" +290307,Apple Airpods Headphones,1,150,11/17/19 10:09,"608 5th St, Portland, OR 97035" +290308,34in Ultrawide Monitor,1,379.99,11/27/19 23:59,"746 8th St, San Francisco, CA 94016" +290309,Apple Airpods Headphones,1,150,11/14/19 20:44,"917 Lincoln St, Los Angeles, CA 90001" +290310,Macbook Pro Laptop,1,1700,11/02/19 19:15,"235 Madison St, San Francisco, CA 94016" +290311,USB-C Charging Cable,1,11.95,11/16/19 12:20,"251 West St, New York City, NY 10001" +290312,Apple Airpods Headphones,1,150,11/17/19 20:51,"62 Elm St, New York City, NY 10001" +290313,20in Monitor,1,109.99,11/13/19 18:45,"183 Spruce St, New York City, NY 10001" +290314,AAA Batteries (4-pack),3,2.99,11/25/19 22:46,"27 River St, Los Angeles, CA 90001" +290315,AAA Batteries (4-pack),1,2.99,11/20/19 16:46,"165 Cherry St, Austin, TX 73301" +290316,AAA Batteries (4-pack),2,2.99,11/27/19 18:15,"624 Spruce St, San Francisco, CA 94016" +290317,AAA Batteries (4-pack),2,2.99,11/18/19 20:36,"76 Main St, Dallas, TX 75001" +290318,USB-C Charging Cable,2,11.95,11/12/19 14:36,"911 Lakeview St, New York City, NY 10001" +290319,Macbook Pro Laptop,1,1700,11/22/19 19:28,"345 Dogwood St, San Francisco, CA 94016" +290320,AAA Batteries (4-pack),1,2.99,11/19/19 21:31,"189 2nd St, Los Angeles, CA 90001" +290321,Apple Airpods Headphones,1,150,11/20/19 15:32,"814 Willow St, Portland, OR 97035" +290322,Bose SoundSport Headphones,1,99.99,11/05/19 13:00,"498 Center St, San Francisco, CA 94016" +290323,Apple Airpods Headphones,1,150,11/25/19 09:31,"676 13th St, Dallas, TX 75001" +290324,20in Monitor,1,109.99,11/14/19 17:28,"758 Cedar St, New York City, NY 10001" +290325,20in Monitor,1,109.99,11/15/19 14:41,"713 Main St, Boston, MA 02215" +290326,Bose SoundSport Headphones,1,99.99,11/07/19 16:41,"762 Church St, Portland, OR 97035" +290327,Apple Airpods Headphones,1,150,11/28/19 22:37,"339 Sunset St, Seattle, WA 98101" +290328,Bose SoundSport Headphones,1,99.99,11/15/19 18:54,"468 North St, San Francisco, CA 94016" +290329,Wired Headphones,1,11.99,11/23/19 13:23,"642 River St, San Francisco, CA 94016" +290330,Bose SoundSport Headphones,1,99.99,11/16/19 18:45,"555 Spruce St, Portland, OR 97035" +290331,AA Batteries (4-pack),1,3.84,11/28/19 13:43,"807 4th St, San Francisco, CA 94016" +290332,Macbook Pro Laptop,1,1700,11/28/19 18:48,"588 Lakeview St, Los Angeles, CA 90001" +290333,AAA Batteries (4-pack),1,2.99,11/21/19 13:11,"409 Hill St, San Francisco, CA 94016" +290334,Bose SoundSport Headphones,1,99.99,11/13/19 14:31,"466 Pine St, San Francisco, CA 94016" +290335,AAA Batteries (4-pack),1,2.99,11/01/19 16:19,"862 5th St, Los Angeles, CA 90001" +290336,Bose SoundSport Headphones,1,99.99,11/07/19 09:50,"764 Hill St, San Francisco, CA 94016" +290337,ThinkPad Laptop,1,999.99,11/02/19 13:31,"573 Forest St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +290338,Wired Headphones,1,11.99,11/13/19 18:09,"756 Willow St, San Francisco, CA 94016" +290339,iPhone,1,700,11/03/19 08:44,"494 8th St, Dallas, TX 75001" +290340,AA Batteries (4-pack),1,3.84,11/21/19 20:56,"618 5th St, Boston, MA 02215" +290341,Apple Airpods Headphones,1,150,11/05/19 18:45,"708 Pine St, San Francisco, CA 94016" +290342,USB-C Charging Cable,1,11.95,11/09/19 19:06,"202 Forest St, Dallas, TX 75001" +290343,USB-C Charging Cable,1,11.95,11/25/19 14:52,"31 Spruce St, Atlanta, GA 30301" +290344,iPhone,1,700,11/16/19 11:38,"618 Jackson St, San Francisco, CA 94016" +290345,USB-C Charging Cable,1,11.95,11/08/19 19:15,"968 Maple St, San Francisco, CA 94016" +290346,Lightning Charging Cable,1,14.95,11/20/19 10:30,"713 Willow St, Boston, MA 02215" +290347,Bose SoundSport Headphones,1,99.99,11/24/19 10:37,"252 Spruce St, Los Angeles, CA 90001" +290348,USB-C Charging Cable,1,11.95,11/22/19 19:24,"415 Church St, Seattle, WA 98101" +290349,Google Phone,1,600,11/03/19 07:43,"637 Ridge St, Los Angeles, CA 90001" +290350,USB-C Charging Cable,1,11.95,11/18/19 18:31,"593 Cedar St, San Francisco, CA 94016" +290351,AAA Batteries (4-pack),1,2.99,11/02/19 21:36,"673 Pine St, Los Angeles, CA 90001" +290352,Macbook Pro Laptop,1,1700,11/11/19 12:05,"476 Ridge St, New York City, NY 10001" +290353,Wired Headphones,1,11.99,11/06/19 19:25,"363 Hickory St, San Francisco, CA 94016" +290354,iPhone,1,700,11/19/19 19:47,"257 Spruce St, Atlanta, GA 30301" +290354,Wired Headphones,1,11.99,11/19/19 19:47,"257 Spruce St, Atlanta, GA 30301" +290355,ThinkPad Laptop,1,999.99,11/05/19 10:55,"299 Lincoln St, Boston, MA 02215" +290356,20in Monitor,1,109.99,11/10/19 10:54,"29 Willow St, Dallas, TX 75001" +290357,AAA Batteries (4-pack),2,2.99,11/19/19 10:02,"929 Pine St, Boston, MA 02215" +290358,Wired Headphones,1,11.99,11/21/19 21:44,"562 Hill St, San Francisco, CA 94016" +290359,Lightning Charging Cable,1,14.95,11/16/19 14:25,"549 West St, Boston, MA 02215" +290360,AA Batteries (4-pack),1,3.84,11/13/19 20:58,"367 River St, Dallas, TX 75001" +290361,Bose SoundSport Headphones,1,99.99,11/12/19 17:57,"95 Meadow St, San Francisco, CA 94016" +290362,USB-C Charging Cable,1,11.95,11/14/19 13:13,"846 Jackson St, Los Angeles, CA 90001" +290363,Lightning Charging Cable,1,14.95,11/14/19 16:03,"765 Pine St, New York City, NY 10001" +290364,27in FHD Monitor,1,149.99,11/27/19 10:57,"659 Center St, Atlanta, GA 30301" +290365,34in Ultrawide Monitor,1,379.99,11/08/19 12:27,"192 Sunset St, San Francisco, CA 94016" +290366,Apple Airpods Headphones,1,150,11/21/19 11:51,"865 Hickory St, San Francisco, CA 94016" +290367,Lightning Charging Cable,1,14.95,11/20/19 19:34,"450 12th St, Dallas, TX 75001" +290368,Lightning Charging Cable,1,14.95,11/19/19 20:25,"839 Elm St, Los Angeles, CA 90001" +290369,iPhone,1,700,11/02/19 12:39,"948 North St, San Francisco, CA 94016" +290370,Wired Headphones,1,11.99,11/13/19 19:37,"743 Madison St, Dallas, TX 75001" +290371,Wired Headphones,1,11.99,11/02/19 13:39,"821 West St, New York City, NY 10001" +290372,USB-C Charging Cable,1,11.95,11/22/19 11:03,"640 Maple St, San Francisco, CA 94016" +290373,Lightning Charging Cable,1,14.95,11/22/19 16:17,"879 West St, Portland, OR 97035" +290374,Lightning Charging Cable,1,14.95,11/14/19 21:13,"854 8th St, San Francisco, CA 94016" +290375,Lightning Charging Cable,1,14.95,11/22/19 14:24,"456 Walnut St, Boston, MA 02215" +290376,Lightning Charging Cable,1,14.95,11/25/19 21:22,"214 10th St, Los Angeles, CA 90001" +290377,27in FHD Monitor,1,149.99,11/23/19 09:51,"202 Wilson St, New York City, NY 10001" +290378,AAA Batteries (4-pack),1,2.99,11/05/19 23:52,"516 Center St, Los Angeles, CA 90001" +290379,27in FHD Monitor,1,149.99,11/26/19 11:24,"587 Adams St, Boston, MA 02215" +290380,AA Batteries (4-pack),1,3.84,11/26/19 17:29,"66 Cherry St, Boston, MA 02215" +290381,34in Ultrawide Monitor,1,379.99,11/15/19 22:36,"311 Pine St, Austin, TX 73301" +290382,Flatscreen TV,1,300,11/23/19 21:09,"502 Spruce St, New York City, NY 10001" +290383,USB-C Charging Cable,1,11.95,11/14/19 11:01,"219 7th St, Los Angeles, CA 90001" +290384,Lightning Charging Cable,2,14.95,11/13/19 20:58,"614 12th St, Seattle, WA 98101" +290385,Macbook Pro Laptop,1,1700,11/05/19 22:35,"129 Park St, Seattle, WA 98101" +290386,Flatscreen TV,1,300,11/15/19 00:07,"988 Johnson St, Portland, OR 97035" +290387,USB-C Charging Cable,1,11.95,11/09/19 01:01,"424 River St, Atlanta, GA 30301" +290388,27in 4K Gaming Monitor,1,389.99,11/22/19 22:47,"987 Highland St, New York City, NY 10001" +290389,USB-C Charging Cable,1,11.95,11/16/19 21:44,"837 North St, Atlanta, GA 30301" +290390,27in FHD Monitor,1,149.99,11/04/19 13:47,"589 River St, Atlanta, GA 30301" +290391,Apple Airpods Headphones,1,150,11/24/19 10:36,"497 River St, Los Angeles, CA 90001" +290392,AA Batteries (4-pack),2,3.84,11/08/19 18:09,"513 Maple St, Los Angeles, CA 90001" +290393,Flatscreen TV,1,300,11/07/19 18:28,"107 North St, Atlanta, GA 30301" +290394,AA Batteries (4-pack),2,3.84,11/24/19 11:46,"824 Chestnut St, San Francisco, CA 94016" +290395,LG Dryer,1,600.0,11/09/19 11:22,"750 13th St, Seattle, WA 98101" +290396,Wired Headphones,1,11.99,11/14/19 10:37,"746 Church St, Seattle, WA 98101" +290397,Wired Headphones,1,11.99,11/25/19 19:55,"314 Elm St, San Francisco, CA 94016" +290398,LG Washing Machine,1,600.0,11/06/19 20:36,"286 South St, Atlanta, GA 30301" +290399,Wired Headphones,1,11.99,11/20/19 09:27,"324 Madison St, San Francisco, CA 94016" +290400,Flatscreen TV,1,300,11/05/19 19:22,"89 West St, Boston, MA 02215" +290401,27in FHD Monitor,1,149.99,11/06/19 15:59,"462 Pine St, San Francisco, CA 94016" +290402,AAA Batteries (4-pack),1,2.99,11/06/19 10:54,"955 11th St, Boston, MA 02215" +290403,20in Monitor,1,109.99,11/10/19 15:15,"195 13th St, Los Angeles, CA 90001" +290404,AA Batteries (4-pack),1,3.84,11/15/19 18:14,"916 4th St, Dallas, TX 75001" +290405,Apple Airpods Headphones,1,150,11/06/19 19:29,"753 7th St, San Francisco, CA 94016" +290406,AA Batteries (4-pack),1,3.84,11/10/19 11:06,"637 Wilson St, Los Angeles, CA 90001" +290407,USB-C Charging Cable,1,11.95,11/05/19 18:45,"899 Dogwood St, Los Angeles, CA 90001" +290408,AA Batteries (4-pack),2,3.84,11/04/19 10:24,"210 10th St, Portland, OR 97035" +290409,USB-C Charging Cable,1,11.95,11/09/19 01:36,"363 12th St, Dallas, TX 75001" +290410,AAA Batteries (4-pack),1,2.99,11/11/19 11:47,"495 5th St, Seattle, WA 98101" +290411,Apple Airpods Headphones,1,150,11/05/19 19:30,"569 4th St, New York City, NY 10001" +290411,AA Batteries (4-pack),1,3.84,11/05/19 19:30,"569 4th St, New York City, NY 10001" +290412,Apple Airpods Headphones,1,150,11/16/19 17:50,"483 6th St, Los Angeles, CA 90001" +290413,Lightning Charging Cable,1,14.95,11/05/19 15:24,"188 Jefferson St, Dallas, TX 75001" +290414,USB-C Charging Cable,1,11.95,11/06/19 22:00,"156 Chestnut St, San Francisco, CA 94016" +290415,Apple Airpods Headphones,1,150,11/21/19 22:10,"981 River St, Boston, MA 02215" +290416,Lightning Charging Cable,1,14.95,11/10/19 02:02,"935 2nd St, Austin, TX 73301" +290417,Wired Headphones,1,11.99,11/20/19 05:47,"882 14th St, New York City, NY 10001" +290418,34in Ultrawide Monitor,1,379.99,11/08/19 18:12,"582 River St, Atlanta, GA 30301" +290419,Apple Airpods Headphones,1,150,11/12/19 17:03,"175 Park St, Portland, OR 97035" +290420,iPhone,1,700,11/11/19 20:45,"810 Pine St, Boston, MA 02215" +290420,Apple Airpods Headphones,1,150,11/11/19 20:45,"810 Pine St, Boston, MA 02215" +290421,Wired Headphones,1,11.99,11/08/19 14:17,"542 12th St, Atlanta, GA 30301" +290422,27in FHD Monitor,1,149.99,11/26/19 22:07,"707 11th St, Boston, MA 02215" +290423,Apple Airpods Headphones,1,150,11/13/19 18:39,"290 Forest St, San Francisco, CA 94016" +290424,USB-C Charging Cable,1,11.95,11/06/19 22:32,"435 8th St, Los Angeles, CA 90001" +290425,Wired Headphones,1,11.99,11/22/19 18:51,"748 Madison St, San Francisco, CA 94016" +290426,USB-C Charging Cable,1,11.95,11/11/19 19:13,"89 7th St, Boston, MA 02215" +290427,Apple Airpods Headphones,1,150,11/18/19 19:33,"927 1st St, New York City, NY 10001" +290428,Lightning Charging Cable,1,14.95,11/29/19 16:13,"564 Adams St, Los Angeles, CA 90001" +290429,Apple Airpods Headphones,1,150,11/05/19 17:12,"842 Pine St, Boston, MA 02215" +290430,Apple Airpods Headphones,1,150,11/14/19 04:17,"522 Cedar St, Los Angeles, CA 90001" +290431,AA Batteries (4-pack),1,3.84,11/14/19 14:53,"535 13th St, Los Angeles, CA 90001" +290432,Apple Airpods Headphones,1,150,11/30/19 06:25,"461 Jackson St, San Francisco, CA 94016" +290433,Lightning Charging Cable,1,14.95,11/18/19 10:58,"746 Willow St, Atlanta, GA 30301" +290434,Apple Airpods Headphones,1,150,11/23/19 03:44,"674 Johnson St, Los Angeles, CA 90001" +290435,Wired Headphones,1,11.99,11/13/19 12:25,"657 Wilson St, New York City, NY 10001" +290436,Lightning Charging Cable,1,14.95,11/17/19 09:11,"720 14th St, Atlanta, GA 30301" +290437,AA Batteries (4-pack),1,3.84,11/24/19 19:35,"208 Lake St, Austin, TX 73301" +290438,Apple Airpods Headphones,1,150,11/14/19 08:33,"184 9th St, Portland, OR 97035" +290439,USB-C Charging Cable,1,11.95,11/30/19 15:18,"864 Adams St, San Francisco, CA 94016" +290440,iPhone,1,700,11/26/19 20:08,"730 10th St, Seattle, WA 98101" +290440,Apple Airpods Headphones,1,150,11/26/19 20:08,"730 10th St, Seattle, WA 98101" +290441,Wired Headphones,1,11.99,11/28/19 18:47,"715 Meadow St, Los Angeles, CA 90001" +290442,AA Batteries (4-pack),1,3.84,11/07/19 08:13,"236 Lakeview St, Boston, MA 02215" +290443,20in Monitor,1,109.99,11/12/19 12:30,"860 West St, San Francisco, CA 94016" +290444,AAA Batteries (4-pack),1,2.99,11/01/19 15:01,"411 7th St, Portland, OR 97035" +290445,USB-C Charging Cable,1,11.95,11/13/19 11:24,"137 Jackson St, Seattle, WA 98101" +290446,Wired Headphones,1,11.99,11/03/19 20:58,"492 Sunset St, Atlanta, GA 30301" +290447,Macbook Pro Laptop,1,1700,11/03/19 14:21,"591 River St, Seattle, WA 98101" +290448,LG Washing Machine,1,600.0,11/12/19 21:19,"635 Adams St, San Francisco, CA 94016" +290449,USB-C Charging Cable,1,11.95,11/14/19 12:17,"235 Lake St, San Francisco, CA 94016" +290450,AAA Batteries (4-pack),2,2.99,11/11/19 10:25,"123 South St, Atlanta, GA 30301" +290451,AAA Batteries (4-pack),1,2.99,11/20/19 20:43,"606 Meadow St, Seattle, WA 98101" +290452,27in 4K Gaming Monitor,1,389.99,11/21/19 13:29,"223 Lake St, San Francisco, CA 94016" +290453,Apple Airpods Headphones,1,150,11/19/19 00:36,"654 River St, New York City, NY 10001" +290454,Flatscreen TV,1,300,11/13/19 21:47,"245 Center St, New York City, NY 10001" +290455,Google Phone,1,600,11/03/19 18:31,"279 Chestnut St, Austin, TX 73301" +290456,Wired Headphones,1,11.99,11/09/19 20:12,"634 Lakeview St, Atlanta, GA 30301" +290457,Lightning Charging Cable,1,14.95,11/11/19 14:51,"285 Ridge St, Dallas, TX 75001" +290458,27in 4K Gaming Monitor,1,389.99,11/12/19 20:50,"502 Chestnut St, Dallas, TX 75001" +290459,Bose SoundSport Headphones,1,99.99,11/04/19 23:01,"436 Elm St, Boston, MA 02215" +290460,Wired Headphones,1,11.99,11/11/19 11:28,"741 Willow St, Los Angeles, CA 90001" +290461,AAA Batteries (4-pack),2,2.99,11/15/19 17:11,"609 5th St, Atlanta, GA 30301" +290462,LG Washing Machine,1,600.0,11/19/19 14:42,"688 Highland St, Dallas, TX 75001" +290463,Google Phone,1,600,11/25/19 19:59,"896 Cherry St, San Francisco, CA 94016" +290463,USB-C Charging Cable,1,11.95,11/25/19 19:59,"896 Cherry St, San Francisco, CA 94016" +290464,AAA Batteries (4-pack),2,2.99,11/21/19 20:15,"288 River St, Portland, ME 04101" +290465,USB-C Charging Cable,1,11.95,11/30/19 12:02,"558 4th St, Portland, ME 04101" +290465,AA Batteries (4-pack),2,3.84,11/30/19 12:02,"558 4th St, Portland, ME 04101" +290466,USB-C Charging Cable,1,11.95,11/17/19 17:29,"379 14th St, New York City, NY 10001" +290467,34in Ultrawide Monitor,1,379.99,11/07/19 12:21,"858 Jefferson St, New York City, NY 10001" +290468,27in 4K Gaming Monitor,1,389.99,11/16/19 17:34,"204 14th St, Boston, MA 02215" +290469,Lightning Charging Cable,1,14.95,11/19/19 00:20,"96 Lakeview St, San Francisco, CA 94016" +290470,20in Monitor,1,109.99,11/25/19 11:07,"559 Jefferson St, Boston, MA 02215" +290471,iPhone,1,700,11/30/19 18:54,"924 Washington St, Dallas, TX 75001" +290472,AA Batteries (4-pack),1,3.84,11/26/19 13:46,"335 Jefferson St, New York City, NY 10001" +290473,Flatscreen TV,1,300,11/07/19 23:29,"424 14th St, San Francisco, CA 94016" +290474,Google Phone,1,600,11/02/19 14:48,"440 6th St, Los Angeles, CA 90001" +290475,Apple Airpods Headphones,1,150,11/05/19 13:40,"695 13th St, Los Angeles, CA 90001" +290475,AAA Batteries (4-pack),1,2.99,11/05/19 13:40,"695 13th St, Los Angeles, CA 90001" +290476,Google Phone,1,600,11/15/19 21:22,"974 Dogwood St, Seattle, WA 98101" +290477,AAA Batteries (4-pack),2,2.99,11/27/19 05:41,"960 Lake St, Los Angeles, CA 90001" +290478,Flatscreen TV,1,300,11/30/19 12:40,"172 Hill St, San Francisco, CA 94016" +290479,Lightning Charging Cable,1,14.95,11/25/19 14:03,"631 Main St, Los Angeles, CA 90001" +290480,27in FHD Monitor,1,149.99,11/16/19 19:02,"138 8th St, Los Angeles, CA 90001" +290481,AA Batteries (4-pack),1,3.84,11/25/19 19:12,"708 9th St, San Francisco, CA 94016" +290482,AAA Batteries (4-pack),1,2.99,11/28/19 20:55,"489 6th St, Portland, ME 04101" +290483,Wired Headphones,1,11.99,11/27/19 21:21,"876 5th St, Los Angeles, CA 90001" +290484,20in Monitor,1,109.99,11/13/19 11:01,"105 South St, San Francisco, CA 94016" +290485,Bose SoundSport Headphones,1,99.99,11/03/19 09:16,"158 10th St, New York City, NY 10001" +290486,USB-C Charging Cable,1,11.95,11/03/19 20:33,"907 1st St, San Francisco, CA 94016" +290487,27in 4K Gaming Monitor,1,389.99,11/10/19 15:18,"903 14th St, New York City, NY 10001" +290488,Vareebadd Phone,1,400,11/10/19 22:01,"638 Hill St, New York City, NY 10001" +290489,34in Ultrawide Monitor,1,379.99,11/22/19 20:22,"850 13th St, Los Angeles, CA 90001" +290490,Wired Headphones,1,11.99,11/11/19 12:59,"872 13th St, Los Angeles, CA 90001" +290491,Lightning Charging Cable,1,14.95,11/16/19 12:36,"186 1st St, San Francisco, CA 94016" +290492,USB-C Charging Cable,1,11.95,11/05/19 14:18,"523 Hickory St, Atlanta, GA 30301" +290493,27in 4K Gaming Monitor,1,389.99,11/11/19 10:40,"737 Spruce St, Austin, TX 73301" +290494,AA Batteries (4-pack),1,3.84,11/02/19 16:48,"968 12th St, New York City, NY 10001" +290495,27in FHD Monitor,1,149.99,11/22/19 19:07,"134 Jackson St, New York City, NY 10001" +290496,Lightning Charging Cable,1,14.95,11/23/19 23:18,"465 Sunset St, Portland, OR 97035" +290497,Bose SoundSport Headphones,1,99.99,11/17/19 17:44,"692 6th St, Los Angeles, CA 90001" +290498,AAA Batteries (4-pack),1,2.99,11/19/19 01:09,"25 Highland St, San Francisco, CA 94016" +290499,Bose SoundSport Headphones,1,99.99,11/01/19 15:09,"597 Hickory St, Los Angeles, CA 90001" +290500,Lightning Charging Cable,1,14.95,11/18/19 21:42,"251 Washington St, San Francisco, CA 94016" +290501,AAA Batteries (4-pack),2,2.99,11/03/19 00:22,"384 Church St, Los Angeles, CA 90001" +290502,Google Phone,1,600,11/17/19 12:40,"961 14th St, Seattle, WA 98101" +290503,Bose SoundSport Headphones,1,99.99,11/19/19 19:54,"171 Maple St, San Francisco, CA 94016" +290504,Bose SoundSport Headphones,1,99.99,11/19/19 15:28,"150 Church St, Atlanta, GA 30301" +290505,AAA Batteries (4-pack),1,2.99,11/04/19 13:49,"850 Madison St, Boston, MA 02215" +290506,AA Batteries (4-pack),1,3.84,11/05/19 14:02,"417 2nd St, San Francisco, CA 94016" +290507,34in Ultrawide Monitor,1,379.99,11/08/19 13:05,"974 1st St, Boston, MA 02215" +290507,Wired Headphones,1,11.99,11/08/19 13:05,"974 1st St, Boston, MA 02215" +290508,27in 4K Gaming Monitor,1,389.99,11/08/19 22:28,"127 Park St, Los Angeles, CA 90001" +290509,AA Batteries (4-pack),1,3.84,11/11/19 09:31,"130 Wilson St, San Francisco, CA 94016" +290510,AA Batteries (4-pack),2,3.84,11/05/19 09:40,"106 Wilson St, Boston, MA 02215" +290511,Lightning Charging Cable,1,14.95,11/10/19 11:01,"349 Wilson St, New York City, NY 10001" +290512,Wired Headphones,1,11.99,11/16/19 12:51,"821 Center St, Los Angeles, CA 90001" +290513,iPhone,1,700,11/25/19 18:15,"34 11th St, New York City, NY 10001" +290514,AAA Batteries (4-pack),2,2.99,11/26/19 10:04,"153 11th St, New York City, NY 10001" +290515,AAA Batteries (4-pack),1,2.99,11/04/19 14:40,"465 Cherry St, San Francisco, CA 94016" +290516,Lightning Charging Cable,1,14.95,11/25/19 17:51,"514 Cedar St, Atlanta, GA 30301" +290517,Macbook Pro Laptop,1,1700,11/25/19 21:40,"505 13th St, New York City, NY 10001" +290518,Apple Airpods Headphones,1,150,11/19/19 09:04,"437 Hickory St, Los Angeles, CA 90001" +290519,USB-C Charging Cable,1,11.95,11/28/19 18:03,"4 Washington St, Boston, MA 02215" +290520,Wired Headphones,1,11.99,11/08/19 08:09,"833 8th St, New York City, NY 10001" +290521,27in FHD Monitor,1,149.99,11/23/19 15:01,"751 Cherry St, Los Angeles, CA 90001" +290522,Lightning Charging Cable,1,14.95,11/06/19 12:47,"421 Main St, San Francisco, CA 94016" +290523,Macbook Pro Laptop,1,1700,11/11/19 15:12,"353 Maple St, San Francisco, CA 94016" +290524,AAA Batteries (4-pack),1,2.99,11/12/19 21:17,"78 Madison St, Portland, OR 97035" +290525,20in Monitor,1,109.99,11/28/19 09:26,"317 Meadow St, Boston, MA 02215" +290526,Lightning Charging Cable,1,14.95,11/12/19 14:15,"522 Lakeview St, Boston, MA 02215" +290527,AAA Batteries (4-pack),3,2.99,11/20/19 20:32,"416 9th St, Atlanta, GA 30301" +290528,USB-C Charging Cable,1,11.95,11/26/19 17:48,"802 Hill St, Los Angeles, CA 90001" +290529,Apple Airpods Headphones,1,150,11/27/19 14:40,"854 Center St, Seattle, WA 98101" +290530,AAA Batteries (4-pack),2,2.99,11/06/19 16:26,"75 Main St, Atlanta, GA 30301" +290531,AAA Batteries (4-pack),1,2.99,11/20/19 13:05,"269 Chestnut St, Seattle, WA 98101" +290532,27in FHD Monitor,1,149.99,11/10/19 18:53,"650 Meadow St, San Francisco, CA 94016" +290533,Google Phone,1,600,11/21/19 11:25,"230 Wilson St, Austin, TX 73301" +290534,iPhone,1,700,11/05/19 15:55,"729 Lincoln St, San Francisco, CA 94016" +290535,Apple Airpods Headphones,1,150,11/12/19 12:05,"450 Maple St, Los Angeles, CA 90001" +290536,Google Phone,1,600,11/17/19 15:11,"131 Forest St, Los Angeles, CA 90001" +290537,20in Monitor,1,109.99,11/23/19 13:29,"139 Adams St, Austin, TX 73301" +290538,Apple Airpods Headphones,1,150,11/23/19 09:23,"768 1st St, San Francisco, CA 94016" +290539,Macbook Pro Laptop,1,1700,11/18/19 17:56,"704 Lakeview St, New York City, NY 10001" +290540,AAA Batteries (4-pack),2,2.99,11/10/19 00:15,"705 Spruce St, Boston, MA 02215" +290541,Wired Headphones,2,11.99,11/09/19 15:03,"96 Johnson St, Los Angeles, CA 90001" +290542,USB-C Charging Cable,1,11.95,11/06/19 14:36,"983 Adams St, San Francisco, CA 94016" +290543,Lightning Charging Cable,1,14.95,11/29/19 12:08,"730 Cherry St, San Francisco, CA 94016" +290544,20in Monitor,1,109.99,11/28/19 21:26,"750 Hill St, San Francisco, CA 94016" +290545,Bose SoundSport Headphones,1,99.99,11/17/19 09:13,"54 Main St, Dallas, TX 75001" +290546,Bose SoundSport Headphones,1,99.99,11/09/19 13:14,"959 5th St, Boston, MA 02215" +290547,iPhone,1,700,11/27/19 16:47,"303 12th St, San Francisco, CA 94016" +290548,AAA Batteries (4-pack),2,2.99,11/12/19 13:47,"871 Washington St, Seattle, WA 98101" +290549,27in FHD Monitor,1,149.99,11/12/19 14:08,"582 5th St, Dallas, TX 75001" +290550,AAA Batteries (4-pack),1,2.99,11/30/19 22:17,"213 Elm St, New York City, NY 10001" +290551,Apple Airpods Headphones,1,150,11/15/19 13:54,"170 Elm St, San Francisco, CA 94016" +290552,Lightning Charging Cable,1,14.95,11/15/19 06:47,"517 11th St, San Francisco, CA 94016" +290553,Bose SoundSport Headphones,1,99.99,11/19/19 18:59,"942 7th St, San Francisco, CA 94016" +290554,USB-C Charging Cable,1,11.95,11/28/19 19:54,"88 Meadow St, Atlanta, GA 30301" +290555,USB-C Charging Cable,1,11.95,11/20/19 20:17,"205 5th St, Seattle, WA 98101" +290556,Google Phone,1,600,11/12/19 12:37,"87 Pine St, Seattle, WA 98101" +290557,AAA Batteries (4-pack),1,2.99,11/26/19 14:12,"221 Madison St, Boston, MA 02215" +290558,20in Monitor,1,109.99,11/02/19 20:53,"366 Walnut St, San Francisco, CA 94016" +290559,27in FHD Monitor,1,149.99,11/07/19 11:23,"335 Ridge St, San Francisco, CA 94016" +290560,USB-C Charging Cable,2,11.95,11/18/19 11:02,"128 10th St, Austin, TX 73301" +290561,USB-C Charging Cable,2,11.95,11/04/19 23:14,"79 River St, Seattle, WA 98101" +290562,27in 4K Gaming Monitor,1,389.99,11/04/19 13:56,"537 River St, Los Angeles, CA 90001" +290563,Bose SoundSport Headphones,1,99.99,11/24/19 13:37,"197 Church St, Portland, OR 97035" +290564,AA Batteries (4-pack),2,3.84,11/14/19 15:11,"309 Center St, Boston, MA 02215" +290565,Apple Airpods Headphones,2,150,11/19/19 12:03,"944 Maple St, New York City, NY 10001" +290566,27in 4K Gaming Monitor,1,389.99,11/23/19 21:16,"849 Spruce St, San Francisco, CA 94016" +290567,Lightning Charging Cable,1,14.95,11/07/19 17:31,"714 Wilson St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +290568,Bose SoundSport Headphones,1,99.99,11/05/19 21:35,"693 Ridge St, Dallas, TX 75001" +290568,AAA Batteries (4-pack),1,2.99,11/05/19 21:35,"693 Ridge St, Dallas, TX 75001" +290569,USB-C Charging Cable,1,11.95,11/11/19 18:46,"188 2nd St, Portland, OR 97035" +290570,AA Batteries (4-pack),2,3.84,11/23/19 21:56,"941 Adams St, Los Angeles, CA 90001" +290571,Wired Headphones,2,11.99,11/10/19 13:06,"994 10th St, Austin, TX 73301" +290572,Apple Airpods Headphones,1,150,11/23/19 07:04,"33 Lincoln St, San Francisco, CA 94016" +290573,Apple Airpods Headphones,1,150,11/06/19 14:51,"176 1st St, Dallas, TX 75001" +290574,Bose SoundSport Headphones,1,99.99,11/24/19 03:06,"273 Wilson St, Atlanta, GA 30301" +290575,Apple Airpods Headphones,1,150,11/03/19 20:45,"753 Jefferson St, New York City, NY 10001" +290576,AAA Batteries (4-pack),2,2.99,11/08/19 10:05,"432 11th St, Los Angeles, CA 90001" +290577,Bose SoundSport Headphones,1,99.99,11/21/19 22:47,"386 Cedar St, Los Angeles, CA 90001" +290578,27in FHD Monitor,1,149.99,11/06/19 22:10,"217 6th St, San Francisco, CA 94016" +290579,AAA Batteries (4-pack),3,2.99,11/16/19 22:59,"558 1st St, Atlanta, GA 30301" +290580,Lightning Charging Cable,1,14.95,11/13/19 12:43,"953 Lake St, Atlanta, GA 30301" +290581,USB-C Charging Cable,1,11.95,11/26/19 19:57,"37 Main St, Los Angeles, CA 90001" +290582,20in Monitor,1,109.99,11/18/19 15:38,"115 West St, Boston, MA 02215" +290583,AAA Batteries (4-pack),4,2.99,11/14/19 09:43,"399 Church St, Boston, MA 02215" +290584,AA Batteries (4-pack),2,3.84,11/10/19 04:06,"936 Park St, San Francisco, CA 94016" +290585,AA Batteries (4-pack),1,3.84,11/09/19 17:49,"361 1st St, San Francisco, CA 94016" +290586,Google Phone,1,600,11/10/19 16:21,"482 Hickory St, San Francisco, CA 94016" +290587,Wired Headphones,1,11.99,11/10/19 11:49,"82 West St, San Francisco, CA 94016" +290588,Lightning Charging Cable,2,14.95,11/01/19 21:19,"439 Chestnut St, Los Angeles, CA 90001" +290589,Lightning Charging Cable,1,14.95,11/02/19 19:01,"73 Washington St, San Francisco, CA 94016" +290590,Flatscreen TV,1,300,11/02/19 17:08,"410 Lake St, Boston, MA 02215" +290591,AA Batteries (4-pack),1,3.84,11/25/19 11:56,"662 Lakeview St, Atlanta, GA 30301" +290592,AAA Batteries (4-pack),1,2.99,11/03/19 14:40,"423 2nd St, Los Angeles, CA 90001" +290593,Lightning Charging Cable,1,14.95,11/17/19 04:33,"829 Cherry St, New York City, NY 10001" +290594,27in 4K Gaming Monitor,1,389.99,11/17/19 10:16,"635 Maple St, Dallas, TX 75001" +290595,34in Ultrawide Monitor,1,379.99,11/11/19 12:26,"926 Jackson St, San Francisco, CA 94016" +290596,Wired Headphones,1,11.99,11/30/19 20:30,"736 Lake St, Los Angeles, CA 90001" +290597,USB-C Charging Cable,1,11.95,11/10/19 13:21,"836 Chestnut St, San Francisco, CA 94016" +290598,34in Ultrawide Monitor,1,379.99,11/16/19 15:49,"976 12th St, San Francisco, CA 94016" +290599,Apple Airpods Headphones,1,150,11/21/19 23:45,"860 Meadow St, Seattle, WA 98101" +290600,27in 4K Gaming Monitor,1,389.99,11/01/19 22:44,"361 Spruce St, San Francisco, CA 94016" +290601,Wired Headphones,1,11.99,11/24/19 11:47,"746 4th St, San Francisco, CA 94016" +290602,27in FHD Monitor,1,149.99,11/10/19 12:24,"213 Washington St, Boston, MA 02215" +290603,Apple Airpods Headphones,1,150,11/30/19 19:11,"25 11th St, Los Angeles, CA 90001" +290604,20in Monitor,1,109.99,11/03/19 17:38,"407 Park St, Los Angeles, CA 90001" +290605,27in FHD Monitor,1,149.99,11/05/19 21:44,"380 Wilson St, Los Angeles, CA 90001" +290606,Lightning Charging Cable,1,14.95,11/19/19 14:44,"312 6th St, San Francisco, CA 94016" +290607,27in FHD Monitor,1,149.99,11/10/19 11:18,"385 1st St, Atlanta, GA 30301" +290608,34in Ultrawide Monitor,1,379.99,11/30/19 22:34,"196 6th St, Austin, TX 73301" +290609,Bose SoundSport Headphones,1,99.99,11/17/19 19:52,"532 Hickory St, San Francisco, CA 94016" +290610,AA Batteries (4-pack),1,3.84,11/02/19 10:16,"426 Chestnut St, Seattle, WA 98101" +290611,27in FHD Monitor,1,149.99,11/08/19 15:36,"628 10th St, New York City, NY 10001" +290612,Wired Headphones,1,11.99,11/29/19 20:16,"140 West St, Boston, MA 02215" +290613,Wired Headphones,1,11.99,11/04/19 17:35,"105 Jackson St, Portland, OR 97035" +290614,Vareebadd Phone,1,400,11/25/19 15:59,"575 Meadow St, Los Angeles, CA 90001" +290615,Bose SoundSport Headphones,1,99.99,11/01/19 13:30,"48 South St, San Francisco, CA 94016" +290616,AA Batteries (4-pack),1,3.84,11/14/19 17:30,"34 Spruce St, Seattle, WA 98101" +290617,Apple Airpods Headphones,1,150,11/04/19 17:24,"220 Main St, San Francisco, CA 94016" +290618,Bose SoundSport Headphones,1,99.99,11/22/19 17:34,"973 Chestnut St, Seattle, WA 98101" +290619,iPhone,1,700,11/19/19 15:42,"354 Washington St, Boston, MA 02215" +290620,Lightning Charging Cable,1,14.95,11/12/19 17:22,"812 Adams St, Seattle, WA 98101" +290621,iPhone,1,700,11/11/19 21:32,"59 Park St, Los Angeles, CA 90001" +290621,Apple Airpods Headphones,1,150,11/11/19 21:32,"59 Park St, Los Angeles, CA 90001" +290622,27in FHD Monitor,1,149.99,11/21/19 03:53,"44 Madison St, Dallas, TX 75001" +290623,USB-C Charging Cable,1,11.95,11/07/19 11:20,"514 Madison St, Seattle, WA 98101" +290624,Apple Airpods Headphones,1,150,11/15/19 22:21,"530 4th St, Los Angeles, CA 90001" +290625,Lightning Charging Cable,1,14.95,11/21/19 11:08,"383 11th St, New York City, NY 10001" +290626,Flatscreen TV,1,300,11/02/19 13:38,"32 River St, Los Angeles, CA 90001" +290627,AAA Batteries (4-pack),2,2.99,11/10/19 13:28,"500 Willow St, Austin, TX 73301" +290628,AAA Batteries (4-pack),2,2.99,11/29/19 21:02,"134 4th St, San Francisco, CA 94016" +290629,ThinkPad Laptop,1,999.99,11/15/19 11:34,"104 Hill St, New York City, NY 10001" +290630,27in FHD Monitor,1,149.99,11/30/19 21:10,"749 River St, San Francisco, CA 94016" +290631,AAA Batteries (4-pack),5,2.99,11/02/19 21:48,"111 11th St, Dallas, TX 75001" +290632,Wired Headphones,1,11.99,11/22/19 20:07,"597 Lakeview St, Boston, MA 02215" +290633,iPhone,1,700,11/10/19 13:20,"261 Sunset St, San Francisco, CA 94016" +290634,Wired Headphones,1,11.99,11/27/19 10:45,"854 Spruce St, Boston, MA 02215" +290635,AAA Batteries (4-pack),2,2.99,11/07/19 14:02,"318 North St, New York City, NY 10001" +290636,Flatscreen TV,1,300,11/03/19 12:11,"701 4th St, San Francisco, CA 94016" +290637,AAA Batteries (4-pack),1,2.99,11/19/19 01:43,"591 Willow St, Seattle, WA 98101" +290638,iPhone,1,700,11/23/19 13:56,"157 Wilson St, Austin, TX 73301" +290639,ThinkPad Laptop,1,999.99,11/05/19 13:41,"992 Spruce St, San Francisco, CA 94016" +290640,Lightning Charging Cable,2,14.95,11/16/19 22:56,"452 Hickory St, Austin, TX 73301" +290641,AA Batteries (4-pack),1,3.84,11/13/19 21:41,"131 8th St, Boston, MA 02215" +290642,AA Batteries (4-pack),1,3.84,11/30/19 14:44,"626 Walnut St, Seattle, WA 98101" +290643,Lightning Charging Cable,1,14.95,11/13/19 21:55,"842 8th St, Seattle, WA 98101" +290644,Lightning Charging Cable,1,14.95,11/21/19 20:36,"166 Jackson St, San Francisco, CA 94016" +290645,iPhone,1,700,11/12/19 12:57,"436 North St, San Francisco, CA 94016" +290646,27in FHD Monitor,1,149.99,11/03/19 11:02,"866 South St, Los Angeles, CA 90001" +290647,USB-C Charging Cable,1,11.95,11/04/19 05:07,"696 14th St, Boston, MA 02215" +290648,Lightning Charging Cable,1,14.95,11/18/19 12:05,"373 Main St, San Francisco, CA 94016" +290649,27in FHD Monitor,1,149.99,11/12/19 20:32,"516 Hill St, New York City, NY 10001" +290650,Lightning Charging Cable,1,14.95,11/21/19 20:47,"436 14th St, New York City, NY 10001" +290651,Lightning Charging Cable,1,14.95,11/07/19 19:43,"774 Madison St, Los Angeles, CA 90001" +290652,27in FHD Monitor,1,149.99,11/05/19 20:41,"77 Adams St, New York City, NY 10001" +290653,Google Phone,1,600,11/24/19 09:19,"592 Jefferson St, San Francisco, CA 94016" +290654,USB-C Charging Cable,1,11.95,11/27/19 10:59,"893 North St, Atlanta, GA 30301" +290655,AA Batteries (4-pack),1,3.84,11/15/19 17:14,"486 13th St, San Francisco, CA 94016" +290656,Bose SoundSport Headphones,1,99.99,11/11/19 21:51,"498 9th St, Boston, MA 02215" +290657,Lightning Charging Cable,1,14.95,11/03/19 21:51,"935 Maple St, Los Angeles, CA 90001" +290658,Apple Airpods Headphones,1,150,11/03/19 11:59,"770 Dogwood St, Los Angeles, CA 90001" +290659,Google Phone,1,600,11/10/19 19:37,"850 West St, Dallas, TX 75001" +290659,Lightning Charging Cable,1,14.95,11/10/19 19:37,"850 West St, Dallas, TX 75001" +290660,Google Phone,1,600,11/24/19 00:13,"721 Meadow St, Los Angeles, CA 90001" +290661,Vareebadd Phone,1,400,11/06/19 09:37,"197 Pine St, Austin, TX 73301" +290661,USB-C Charging Cable,1,11.95,11/06/19 09:37,"197 Pine St, Austin, TX 73301" +290662,USB-C Charging Cable,1,11.95,11/17/19 07:50,"154 Lincoln St, Portland, OR 97035" +290663,USB-C Charging Cable,1,11.95,11/22/19 23:07,"656 Church St, Atlanta, GA 30301" +290664,Google Phone,1,600,11/06/19 18:56,"309 Willow St, San Francisco, CA 94016" +290664,USB-C Charging Cable,1,11.95,11/06/19 18:56,"309 Willow St, San Francisco, CA 94016" +290665,27in FHD Monitor,1,149.99,11/22/19 12:58,"677 North St, Seattle, WA 98101" +290666,Lightning Charging Cable,1,14.95,11/24/19 00:14,"19 11th St, Seattle, WA 98101" +290667,Google Phone,1,600,11/06/19 11:01,"630 North St, Boston, MA 02215" +290668,Flatscreen TV,1,300,11/18/19 13:21,"100 Walnut St, San Francisco, CA 94016" +290669,ThinkPad Laptop,1,999.99,11/21/19 19:06,"283 Cedar St, San Francisco, CA 94016" +290670,34in Ultrawide Monitor,1,379.99,11/25/19 14:14,"362 West St, Boston, MA 02215" +290671,Wired Headphones,1,11.99,11/22/19 17:14,"880 14th St, Los Angeles, CA 90001" +290672,Wired Headphones,1,11.99,11/23/19 17:49,"720 Wilson St, Seattle, WA 98101" +290673,Vareebadd Phone,1,400,11/14/19 20:06,"414 Chestnut St, San Francisco, CA 94016" +290674,Bose SoundSport Headphones,1,99.99,11/13/19 03:54,"978 Madison St, Dallas, TX 75001" +290675,Wired Headphones,1,11.99,11/05/19 22:43,"393 Main St, Dallas, TX 75001" +290676,AA Batteries (4-pack),1,3.84,11/04/19 10:27,"182 Meadow St, Austin, TX 73301" +290677,27in 4K Gaming Monitor,1,389.99,11/17/19 08:48,"339 Jackson St, New York City, NY 10001" +290678,ThinkPad Laptop,1,999.99,11/22/19 10:02,"631 Dogwood St, Boston, MA 02215" +290679,Wired Headphones,1,11.99,11/02/19 16:58,"939 10th St, Boston, MA 02215" +290680,Bose SoundSport Headphones,1,99.99,11/18/19 21:08,"380 South St, San Francisco, CA 94016" +290681,USB-C Charging Cable,1,11.95,11/04/19 18:07,"386 Jefferson St, Atlanta, GA 30301" +290682,Lightning Charging Cable,1,14.95,11/09/19 16:14,"865 Madison St, Boston, MA 02215" +290683,Google Phone,1,600,11/30/19 11:00,"635 2nd St, San Francisco, CA 94016" +290684,USB-C Charging Cable,1,11.95,11/09/19 14:47,"114 Sunset St, San Francisco, CA 94016" +290685,Wired Headphones,1,11.99,11/22/19 14:55,"292 Lake St, Austin, TX 73301" +290686,Lightning Charging Cable,1,14.95,11/14/19 17:06,"618 Wilson St, Dallas, TX 75001" +290687,USB-C Charging Cable,1,11.95,11/10/19 08:55,"581 Center St, Boston, MA 02215" +290688,27in 4K Gaming Monitor,1,389.99,11/28/19 11:57,"754 1st St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +290689,Apple Airpods Headphones,1,150,11/22/19 21:01,"197 Park St, San Francisco, CA 94016" +290690,LG Washing Machine,1,600.0,11/21/19 11:19,"910 Lakeview St, New York City, NY 10001" +290691,AAA Batteries (4-pack),1,2.99,11/29/19 15:40,"317 Washington St, Portland, OR 97035" +290692,Bose SoundSport Headphones,1,99.99,11/17/19 01:57,"192 Meadow St, Portland, OR 97035" +290693,Google Phone,1,600,11/03/19 12:02,"71 Wilson St, Boston, MA 02215" +290694,27in FHD Monitor,1,149.99,11/05/19 18:37,"665 Lake St, Atlanta, GA 30301" +290695,AA Batteries (4-pack),1,3.84,12/01/19 02:38,"224 Jefferson St, New York City, NY 10001" +290696,USB-C Charging Cable,1,11.95,11/22/19 20:08,"762 9th St, Boston, MA 02215" +290697,AA Batteries (4-pack),2,3.84,11/15/19 20:42,"340 7th St, New York City, NY 10001" +290698,Google Phone,1,600,11/05/19 12:52,"268 Dogwood St, Los Angeles, CA 90001" +290698,USB-C Charging Cable,1,11.95,11/05/19 12:52,"268 Dogwood St, Los Angeles, CA 90001" +290699,Lightning Charging Cable,1,14.95,11/28/19 10:58,"757 Lake St, San Francisco, CA 94016" +290700,USB-C Charging Cable,1,11.95,11/29/19 10:36,"365 Forest St, New York City, NY 10001" +290701,Wired Headphones,2,11.99,11/05/19 17:49,"481 Chestnut St, Los Angeles, CA 90001" +290702,AA Batteries (4-pack),1,3.84,11/18/19 20:58,"52 Hill St, Boston, MA 02215" +290703,AA Batteries (4-pack),2,3.84,11/19/19 20:16,"395 11th St, Boston, MA 02215" +290704,AAA Batteries (4-pack),2,2.99,11/10/19 22:40,"490 Spruce St, Los Angeles, CA 90001" +290705,Lightning Charging Cable,1,14.95,11/25/19 13:13,"780 13th St, Dallas, TX 75001" +290705,Wired Headphones,1,11.99,11/25/19 13:13,"780 13th St, Dallas, TX 75001" +290706,Lightning Charging Cable,2,14.95,11/08/19 17:21,"4 Meadow St, San Francisco, CA 94016" +290707,Lightning Charging Cable,1,14.95,11/09/19 00:29,"710 Maple St, Seattle, WA 98101" +290708,Apple Airpods Headphones,1,150,11/30/19 08:39,"913 Main St, Los Angeles, CA 90001" +290709,Apple Airpods Headphones,1,150,11/21/19 14:47,"481 Cedar St, Seattle, WA 98101" +290710,27in FHD Monitor,1,149.99,11/27/19 23:10,"657 4th St, Dallas, TX 75001" +290711,Apple Airpods Headphones,1,150,11/09/19 08:06,"885 Lincoln St, San Francisco, CA 94016" +290712,USB-C Charging Cable,1,11.95,11/29/19 14:24,"250 Wilson St, Boston, MA 02215" +290713,34in Ultrawide Monitor,1,379.99,11/17/19 09:15,"172 Center St, Dallas, TX 75001" +290714,AA Batteries (4-pack),1,3.84,11/07/19 22:30,"236 Church St, New York City, NY 10001" +290715,AAA Batteries (4-pack),1,2.99,11/30/19 11:48,"490 Walnut St, Los Angeles, CA 90001" +290716,Lightning Charging Cable,1,14.95,11/07/19 19:53,"885 West St, Seattle, WA 98101" +290717,ThinkPad Laptop,1,999.99,11/11/19 18:48,"262 12th St, New York City, NY 10001" +290718,Wired Headphones,2,11.99,11/16/19 11:45,"456 Maple St, San Francisco, CA 94016" +290719,AAA Batteries (4-pack),2,2.99,11/16/19 21:42,"289 6th St, Austin, TX 73301" +290720,27in FHD Monitor,1,149.99,11/07/19 13:48,"814 2nd St, Los Angeles, CA 90001" +290721,Lightning Charging Cable,1,14.95,11/30/19 13:08,"42 South St, Seattle, WA 98101" +290722,34in Ultrawide Monitor,1,379.99,11/27/19 06:42,"592 West St, San Francisco, CA 94016" +290723,iPhone,1,700,11/08/19 08:51,"114 Jefferson St, New York City, NY 10001" +290724,Apple Airpods Headphones,2,150,11/06/19 06:05,"272 Washington St, San Francisco, CA 94016" +290725,Wired Headphones,1,11.99,11/17/19 09:14,"739 River St, New York City, NY 10001" +290726,20in Monitor,1,109.99,11/30/19 20:55,"778 Park St, San Francisco, CA 94016" +290727,iPhone,1,700,11/12/19 16:35,"101 Forest St, Austin, TX 73301" +290728,AA Batteries (4-pack),1,3.84,11/24/19 12:14,"535 Dogwood St, San Francisco, CA 94016" +290729,Wired Headphones,1,11.99,11/05/19 18:25,"688 North St, New York City, NY 10001" +290730,Flatscreen TV,1,300,11/20/19 00:19,"55 Cedar St, Los Angeles, CA 90001" +290731,Apple Airpods Headphones,1,150,11/26/19 09:24,"698 Washington St, Dallas, TX 75001" +290732,Flatscreen TV,1,300,11/12/19 20:09,"550 Chestnut St, Dallas, TX 75001" +290733,27in 4K Gaming Monitor,1,389.99,11/02/19 19:20,"504 4th St, Atlanta, GA 30301" +290734,Wired Headphones,1,11.99,11/25/19 21:43,"371 7th St, Los Angeles, CA 90001" +290735,27in 4K Gaming Monitor,1,389.99,11/30/19 14:12,"757 Walnut St, San Francisco, CA 94016" +290736,Lightning Charging Cable,1,14.95,11/14/19 06:05,"325 1st St, San Francisco, CA 94016" +290737,AA Batteries (4-pack),1,3.84,11/09/19 00:49,"78 Jackson St, Seattle, WA 98101" +290738,USB-C Charging Cable,1,11.95,11/29/19 11:16,"656 Forest St, New York City, NY 10001" +290739,27in FHD Monitor,1,149.99,11/24/19 20:23,"571 Wilson St, Dallas, TX 75001" +290740,ThinkPad Laptop,1,999.99,11/25/19 10:30,"763 Elm St, New York City, NY 10001" +290741,AA Batteries (4-pack),1,3.84,11/20/19 11:42,"432 11th St, Austin, TX 73301" +290742,27in FHD Monitor,1,149.99,11/02/19 13:50,"655 Lincoln St, San Francisco, CA 94016" +290743,Lightning Charging Cable,1,14.95,11/04/19 21:22,"940 Meadow St, San Francisco, CA 94016" +290744,iPhone,1,700,11/24/19 09:49,"270 Center St, Los Angeles, CA 90001" +290745,AAA Batteries (4-pack),1,2.99,11/17/19 17:10,"133 North St, Portland, OR 97035" +290746,Apple Airpods Headphones,1,150,11/22/19 13:32,"257 6th St, San Francisco, CA 94016" +290747,Lightning Charging Cable,1,14.95,11/27/19 01:35,"566 West St, San Francisco, CA 94016" +290748,Lightning Charging Cable,1,14.95,11/13/19 12:14,"674 Dogwood St, New York City, NY 10001" +290748,AAA Batteries (4-pack),1,2.99,11/13/19 12:14,"674 Dogwood St, New York City, NY 10001" +290749,Vareebadd Phone,1,400,11/27/19 11:37,"195 Center St, Boston, MA 02215" +290750,Flatscreen TV,1,300,11/22/19 01:36,"201 Hill St, San Francisco, CA 94016" +290751,ThinkPad Laptop,1,999.99,11/22/19 21:52,"167 Lake St, Austin, TX 73301" +290752,USB-C Charging Cable,1,11.95,11/09/19 13:58,"282 Wilson St, New York City, NY 10001" +290753,AA Batteries (4-pack),1,3.84,11/15/19 18:20,"370 River St, San Francisco, CA 94016" +290754,Bose SoundSport Headphones,1,99.99,11/07/19 13:20,"334 Willow St, Los Angeles, CA 90001" +290755,Apple Airpods Headphones,1,150,11/22/19 20:04,"542 Center St, Atlanta, GA 30301" +290756,Lightning Charging Cable,1,14.95,11/30/19 20:25,"254 Hill St, Los Angeles, CA 90001" +290757,USB-C Charging Cable,1,11.95,11/02/19 15:01,"304 Center St, San Francisco, CA 94016" +290758,AAA Batteries (4-pack),5,2.99,11/07/19 16:50,"830 12th St, Los Angeles, CA 90001" +290759,Wired Headphones,1,11.99,11/15/19 13:33,"671 14th St, San Francisco, CA 94016" +290760,Apple Airpods Headphones,1,150,11/16/19 11:45,"899 South St, Los Angeles, CA 90001" +290761,AAA Batteries (4-pack),1,2.99,11/04/19 18:05,"850 9th St, Los Angeles, CA 90001" +290762,AAA Batteries (4-pack),1,2.99,11/05/19 09:35,"303 1st St, San Francisco, CA 94016" +290763,Google Phone,1,600,11/19/19 08:23,"475 North St, San Francisco, CA 94016" +290764,27in 4K Gaming Monitor,1,389.99,11/20/19 10:06,"855 Johnson St, Portland, ME 04101" +290765,20in Monitor,1,109.99,11/15/19 14:05,"154 Church St, Austin, TX 73301" +290766,AA Batteries (4-pack),2,3.84,11/30/19 12:31,"819 River St, Los Angeles, CA 90001" +290767,Wired Headphones,1,11.99,11/14/19 20:56,"388 Maple St, San Francisco, CA 94016" +290768,USB-C Charging Cable,1,11.95,11/26/19 12:19,"204 Cedar St, San Francisco, CA 94016" +290769,Bose SoundSport Headphones,1,99.99,11/10/19 14:36,"238 Jefferson St, Boston, MA 02215" +290770,Google Phone,1,600,11/07/19 07:31,"599 Dogwood St, San Francisco, CA 94016" +290770,Wired Headphones,1,11.99,11/07/19 07:31,"599 Dogwood St, San Francisco, CA 94016" +290771,Wired Headphones,2,11.99,11/29/19 22:37,"840 Highland St, San Francisco, CA 94016" +290772,Apple Airpods Headphones,1,150,11/29/19 14:53,"675 Madison St, Austin, TX 73301" +290773,AAA Batteries (4-pack),1,2.99,11/17/19 22:24,"857 Elm St, New York City, NY 10001" +290773,AA Batteries (4-pack),2,3.84,11/17/19 22:24,"857 Elm St, New York City, NY 10001" +290774,Bose SoundSport Headphones,1,99.99,11/15/19 04:54,"269 7th St, Seattle, WA 98101" +290774,Lightning Charging Cable,1,14.95,11/15/19 04:54,"269 7th St, Seattle, WA 98101" +290775,Apple Airpods Headphones,1,150,11/13/19 18:37,"579 1st St, New York City, NY 10001" +290776,AA Batteries (4-pack),1,3.84,11/09/19 21:06,"884 Adams St, San Francisco, CA 94016" +290777,Apple Airpods Headphones,1,150,11/29/19 22:01,"909 West St, Boston, MA 02215" +290778,AAA Batteries (4-pack),2,2.99,11/08/19 20:03,"888 Highland St, San Francisco, CA 94016" +290779,Macbook Pro Laptop,1,1700,11/13/19 14:35,"835 Spruce St, Los Angeles, CA 90001" +290780,Apple Airpods Headphones,1,150,11/28/19 20:41,"842 Sunset St, Dallas, TX 75001" +290781,AAA Batteries (4-pack),2,2.99,11/26/19 12:34,"549 Lincoln St, Boston, MA 02215" +290782,Wired Headphones,1,11.99,11/25/19 17:51,"94 10th St, New York City, NY 10001" +290783,USB-C Charging Cable,1,11.95,11/03/19 12:00,"351 Madison St, Los Angeles, CA 90001" +290784,Apple Airpods Headphones,1,150,11/03/19 12:49,"730 10th St, Boston, MA 02215" +290785,AAA Batteries (4-pack),2,2.99,11/20/19 13:06,"411 Wilson St, San Francisco, CA 94016" +290786,Apple Airpods Headphones,1,150,11/24/19 20:34,"15 2nd St, Atlanta, GA 30301" +290787,AA Batteries (4-pack),2,3.84,11/10/19 22:32,"223 Lakeview St, New York City, NY 10001" +290788,AAA Batteries (4-pack),1,2.99,11/21/19 11:05,"729 Hickory St, Dallas, TX 75001" +290789,iPhone,1,700,11/19/19 22:17,"306 Dogwood St, San Francisco, CA 94016" +290789,Apple Airpods Headphones,1,150,11/19/19 22:17,"306 Dogwood St, San Francisco, CA 94016" +290790,Lightning Charging Cable,1,14.95,11/08/19 19:30,"146 Spruce St, Los Angeles, CA 90001" +290791,USB-C Charging Cable,1,11.95,11/21/19 09:07,"263 Cherry St, Los Angeles, CA 90001" +290792,Bose SoundSport Headphones,1,99.99,11/28/19 00:35,"988 Johnson St, New York City, NY 10001" +290793,AA Batteries (4-pack),1,3.84,11/06/19 02:18,"534 South St, Dallas, TX 75001" +290794,USB-C Charging Cable,1,11.95,11/17/19 10:57,"223 Lakeview St, Atlanta, GA 30301" +290795,AA Batteries (4-pack),1,3.84,11/29/19 21:08,"797 Spruce St, New York City, NY 10001" +290796,AAA Batteries (4-pack),1,2.99,11/30/19 18:03,"595 Jefferson St, San Francisco, CA 94016" +290797,AA Batteries (4-pack),1,3.84,11/09/19 08:16,"12 Willow St, Portland, OR 97035" +290798,USB-C Charging Cable,1,11.95,11/01/19 17:59,"513 Lincoln St, Los Angeles, CA 90001" +290799,USB-C Charging Cable,1,11.95,11/26/19 02:35,"230 Chestnut St, Austin, TX 73301" +290800,34in Ultrawide Monitor,1,379.99,11/21/19 21:08,"160 Hickory St, Austin, TX 73301" +290801,Bose SoundSport Headphones,1,99.99,11/12/19 20:51,"958 Walnut St, New York City, NY 10001" +290802,Lightning Charging Cable,1,14.95,11/26/19 15:31,"882 5th St, Austin, TX 73301" +290803,Lightning Charging Cable,1,14.95,11/27/19 09:31,"782 Main St, Austin, TX 73301" +290804,Apple Airpods Headphones,1,150,11/09/19 19:10,"66 Jackson St, Seattle, WA 98101" +290805,27in FHD Monitor,1,149.99,11/26/19 08:11,"692 6th St, New York City, NY 10001" +290806,AA Batteries (4-pack),1,3.84,11/12/19 17:09,"409 Lakeview St, Austin, TX 73301" +290807,Bose SoundSport Headphones,1,99.99,11/15/19 17:56,"283 Pine St, San Francisco, CA 94016" +290808,AA Batteries (4-pack),1,3.84,11/17/19 12:52,"669 Highland St, New York City, NY 10001" +290808,Google Phone,1,600,11/17/19 12:52,"669 Highland St, New York City, NY 10001" +290809,AAA Batteries (4-pack),1,2.99,11/10/19 23:12,"823 Meadow St, New York City, NY 10001" +290810,Wired Headphones,1,11.99,11/18/19 08:16,"676 Jackson St, San Francisco, CA 94016" +,,,,, +290811,Wired Headphones,1,11.99,11/17/19 02:16,"513 Main St, San Francisco, CA 94016" +290812,AAA Batteries (4-pack),5,2.99,11/05/19 22:13,"162 Adams St, Dallas, TX 75001" +290813,AA Batteries (4-pack),1,3.84,11/14/19 17:41,"943 Forest St, Austin, TX 73301" +290814,Bose SoundSport Headphones,1,99.99,11/13/19 09:15,"863 9th St, Seattle, WA 98101" +290815,AA Batteries (4-pack),1,3.84,11/11/19 14:14,"587 9th St, Dallas, TX 75001" +290816,Bose SoundSport Headphones,1,99.99,11/04/19 00:48,"495 Washington St, Boston, MA 02215" +290817,Lightning Charging Cable,1,14.95,11/15/19 21:07,"254 Wilson St, San Francisco, CA 94016" +290818,Lightning Charging Cable,1,14.95,11/21/19 10:32,"846 Lake St, Austin, TX 73301" +290819,AA Batteries (4-pack),1,3.84,11/10/19 17:05,"72 Hickory St, New York City, NY 10001" +290820,Apple Airpods Headphones,1,150,11/20/19 11:16,"778 Elm St, Los Angeles, CA 90001" +290821,AAA Batteries (4-pack),2,2.99,11/23/19 20:48,"198 Main St, San Francisco, CA 94016" +290822,USB-C Charging Cable,1,11.95,11/26/19 20:17,"457 North St, San Francisco, CA 94016" +290823,Wired Headphones,1,11.99,11/23/19 00:01,"943 Jefferson St, San Francisco, CA 94016" +290824,Lightning Charging Cable,1,14.95,11/15/19 11:43,"307 Sunset St, Atlanta, GA 30301" +290825,Wired Headphones,1,11.99,11/26/19 13:00,"514 River St, San Francisco, CA 94016" +290826,USB-C Charging Cable,1,11.95,11/19/19 18:05,"828 Maple St, New York City, NY 10001" +290827,AA Batteries (4-pack),1,3.84,11/13/19 17:40,"484 Walnut St, Atlanta, GA 30301" +290828,USB-C Charging Cable,1,11.95,11/01/19 13:19,"475 Lincoln St, Austin, TX 73301" +290829,USB-C Charging Cable,1,11.95,11/11/19 18:50,"3 Jackson St, San Francisco, CA 94016" +290830,Flatscreen TV,1,300,11/14/19 20:05,"345 5th St, Boston, MA 02215" +290831,34in Ultrawide Monitor,1,379.99,11/28/19 04:26,"236 Hickory St, San Francisco, CA 94016" +290832,Flatscreen TV,1,300,11/02/19 19:57,"265 Willow St, New York City, NY 10001" +290833,Wired Headphones,2,11.99,11/10/19 12:24,"332 Meadow St, San Francisco, CA 94016" +290834,AAA Batteries (4-pack),2,2.99,11/22/19 20:02,"74 Walnut St, Austin, TX 73301" +290835,AA Batteries (4-pack),1,3.84,11/24/19 16:56,"986 Spruce St, Los Angeles, CA 90001" +290836,iPhone,1,700,11/12/19 03:22,"586 South St, Dallas, TX 75001" +290837,AA Batteries (4-pack),1,3.84,11/07/19 19:54,"966 Forest St, Atlanta, GA 30301" +290838,Wired Headphones,1,11.99,11/14/19 20:24,"510 Meadow St, Los Angeles, CA 90001" +290839,AAA Batteries (4-pack),4,2.99,11/28/19 16:57,"645 Meadow St, San Francisco, CA 94016" +290840,Wired Headphones,1,11.99,11/09/19 09:31,"387 8th St, San Francisco, CA 94016" +290841,AAA Batteries (4-pack),2,2.99,11/21/19 19:57,"163 Chestnut St, Los Angeles, CA 90001" +290842,Wired Headphones,1,11.99,11/03/19 18:31,"715 Lakeview St, Los Angeles, CA 90001" +290843,USB-C Charging Cable,1,11.95,11/17/19 18:29,"887 Spruce St, Los Angeles, CA 90001" +290844,AAA Batteries (4-pack),1,2.99,11/14/19 13:44,"932 9th St, San Francisco, CA 94016" +290845,AA Batteries (4-pack),1,3.84,11/03/19 02:34,"409 Jefferson St, Boston, MA 02215" +290846,AA Batteries (4-pack),1,3.84,11/30/19 16:29,"502 South St, New York City, NY 10001" +290847,AA Batteries (4-pack),1,3.84,11/17/19 18:33,"652 Cedar St, San Francisco, CA 94016" +290848,Apple Airpods Headphones,1,150,11/13/19 18:11,"961 1st St, Dallas, TX 75001" +290849,Wired Headphones,1,11.99,11/01/19 17:47,"974 Maple St, Los Angeles, CA 90001" +290850,ThinkPad Laptop,1,999.99,11/06/19 04:22,"357 Wilson St, Los Angeles, CA 90001" +290851,AA Batteries (4-pack),1,3.84,11/01/19 18:06,"813 Lincoln St, San Francisco, CA 94016" +290852,AAA Batteries (4-pack),1,2.99,11/07/19 23:37,"697 4th St, New York City, NY 10001" +290853,AAA Batteries (4-pack),1,2.99,11/25/19 17:27,"347 Spruce St, Austin, TX 73301" +290854,AA Batteries (4-pack),1,3.84,11/24/19 17:36,"452 Spruce St, Atlanta, GA 30301" +290855,AA Batteries (4-pack),1,3.84,11/05/19 21:17,"224 Ridge St, Dallas, TX 75001" +290856,Apple Airpods Headphones,1,150,11/29/19 15:36,"557 Chestnut St, Seattle, WA 98101" +290857,iPhone,1,700,11/29/19 15:21,"201 Main St, Atlanta, GA 30301" +290857,Apple Airpods Headphones,1,150,11/29/19 15:21,"201 Main St, Atlanta, GA 30301" +290858,Google Phone,1,600,11/18/19 19:27,"625 Cedar St, Los Angeles, CA 90001" +290859,Apple Airpods Headphones,1,150,11/02/19 20:19,"554 South St, Seattle, WA 98101" +290860,AAA Batteries (4-pack),1,2.99,11/21/19 12:18,"142 Highland St, Los Angeles, CA 90001" +290861,Wired Headphones,1,11.99,11/20/19 12:42,"737 Cherry St, Dallas, TX 75001" +290862,AAA Batteries (4-pack),1,2.99,11/11/19 18:34,"638 11th St, Dallas, TX 75001" +290863,AA Batteries (4-pack),1,3.84,11/26/19 08:55,"156 Jackson St, Los Angeles, CA 90001" +290864,Lightning Charging Cable,1,14.95,11/04/19 14:19,"674 Sunset St, San Francisco, CA 94016" +290865,Flatscreen TV,1,300,11/13/19 21:58,"403 Park St, New York City, NY 10001" +290866,Lightning Charging Cable,1,14.95,11/28/19 17:55,"342 Hickory St, Dallas, TX 75001" +290867,Bose SoundSport Headphones,1,99.99,11/13/19 16:43,"589 Johnson St, Dallas, TX 75001" +290868,iPhone,1,700,11/26/19 17:13,"343 9th St, New York City, NY 10001" +290869,Wired Headphones,2,11.99,11/20/19 16:19,"764 Lake St, Los Angeles, CA 90001" +290870,Wired Headphones,1,11.99,11/25/19 15:23,"688 Spruce St, New York City, NY 10001" +290871,AA Batteries (4-pack),1,3.84,11/19/19 20:26,"788 12th St, Seattle, WA 98101" +290872,Lightning Charging Cable,1,14.95,11/20/19 17:10,"690 4th St, Los Angeles, CA 90001" +290873,Wired Headphones,1,11.99,11/13/19 14:02,"277 West St, New York City, NY 10001" +290874,Google Phone,1,600,11/17/19 13:24,"149 8th St, Seattle, WA 98101" +290874,USB-C Charging Cable,1,11.95,11/17/19 13:24,"149 8th St, Seattle, WA 98101" +290875,AA Batteries (4-pack),1,3.84,11/18/19 12:41,"846 Wilson St, Austin, TX 73301" +290876,Apple Airpods Headphones,1,150,11/17/19 18:56,"225 Maple St, Boston, MA 02215" +290877,AA Batteries (4-pack),1,3.84,11/29/19 17:42,"655 Lincoln St, San Francisco, CA 94016" +290878,27in 4K Gaming Monitor,1,389.99,11/29/19 20:35,"494 Highland St, Austin, TX 73301" +290879,Vareebadd Phone,1,400,11/06/19 19:10,"638 Lakeview St, San Francisco, CA 94016" +290879,USB-C Charging Cable,1,11.95,11/06/19 19:10,"638 Lakeview St, San Francisco, CA 94016" +290880,20in Monitor,1,109.99,11/07/19 21:18,"978 South St, San Francisco, CA 94016" +290881,USB-C Charging Cable,1,11.95,11/06/19 16:47,"72 Hickory St, Los Angeles, CA 90001" +290882,Bose SoundSport Headphones,1,99.99,11/06/19 15:45,"597 Forest St, Portland, OR 97035" +290883,Wired Headphones,1,11.99,11/02/19 13:53,"31 9th St, Portland, OR 97035" +290884,AA Batteries (4-pack),1,3.84,11/06/19 21:04,"184 Center St, San Francisco, CA 94016" +290885,iPhone,1,700,11/24/19 10:18,"604 Adams St, San Francisco, CA 94016" +290885,Wired Headphones,1,11.99,11/24/19 10:18,"604 Adams St, San Francisco, CA 94016" +290886,20in Monitor,1,109.99,11/25/19 16:21,"376 Ridge St, Los Angeles, CA 90001" +290887,27in FHD Monitor,1,149.99,11/02/19 12:03,"493 Cedar St, Boston, MA 02215" +290888,AA Batteries (4-pack),1,3.84,11/18/19 12:57,"107 Walnut St, New York City, NY 10001" +290889,Lightning Charging Cable,1,14.95,11/02/19 19:27,"164 Hickory St, Austin, TX 73301" +290890,27in FHD Monitor,1,149.99,11/13/19 22:01,"986 10th St, Los Angeles, CA 90001" +290891,Google Phone,1,600,11/21/19 14:28,"77 Johnson St, Boston, MA 02215" +290892,Wired Headphones,1,11.99,11/27/19 16:37,"258 Dogwood St, San Francisco, CA 94016" +290893,ThinkPad Laptop,1,999.99,11/11/19 02:38,"406 4th St, San Francisco, CA 94016" +290894,AA Batteries (4-pack),1,3.84,11/12/19 15:14,"176 River St, Boston, MA 02215" +290895,Wired Headphones,1,11.99,11/02/19 16:12,"178 Walnut St, Los Angeles, CA 90001" +290895,USB-C Charging Cable,1,11.95,11/02/19 16:12,"178 Walnut St, Los Angeles, CA 90001" +290896,AA Batteries (4-pack),2,3.84,11/06/19 09:27,"582 5th St, San Francisco, CA 94016" +290897,27in 4K Gaming Monitor,1,389.99,11/27/19 21:55,"289 Adams St, Boston, MA 02215" +290898,USB-C Charging Cable,1,11.95,11/26/19 06:32,"496 1st St, New York City, NY 10001" +290899,AAA Batteries (4-pack),1,2.99,11/01/19 07:28,"536 Johnson St, San Francisco, CA 94016" +290900,Wired Headphones,1,11.99,11/05/19 14:50,"947 Pine St, New York City, NY 10001" +290901,AA Batteries (4-pack),1,3.84,11/16/19 16:38,"753 2nd St, San Francisco, CA 94016" +290902,Apple Airpods Headphones,1,150,11/14/19 20:04,"489 Main St, Boston, MA 02215" +290903,USB-C Charging Cable,1,11.95,11/04/19 18:09,"522 Pine St, Los Angeles, CA 90001" +290904,Macbook Pro Laptop,1,1700,11/04/19 08:40,"107 Willow St, Boston, MA 02215" +290905,Apple Airpods Headphones,1,150,11/07/19 07:42,"853 13th St, Los Angeles, CA 90001" +290906,USB-C Charging Cable,1,11.95,11/08/19 20:21,"346 Lincoln St, San Francisco, CA 94016" +290907,AAA Batteries (4-pack),2,2.99,11/30/19 18:27,"26 Cherry St, San Francisco, CA 94016" +290908,Bose SoundSport Headphones,1,99.99,11/05/19 20:02,"790 Sunset St, Dallas, TX 75001" +290909,AA Batteries (4-pack),1,3.84,11/13/19 02:04,"938 Washington St, Boston, MA 02215" +,,,,, +290910,USB-C Charging Cable,1,11.95,11/02/19 21:30,"494 Ridge St, San Francisco, CA 94016" +290911,Wired Headphones,2,11.99,11/16/19 23:48,"89 13th St, Boston, MA 02215" +290912,Apple Airpods Headphones,1,150,11/09/19 13:53,"389 9th St, San Francisco, CA 94016" +290913,USB-C Charging Cable,1,11.95,11/23/19 14:08,"815 Cherry St, San Francisco, CA 94016" +290914,Macbook Pro Laptop,1,1700,11/20/19 18:27,"966 Walnut St, New York City, NY 10001" +290915,Flatscreen TV,1,300,11/01/19 16:00,"217 South St, Dallas, TX 75001" +290916,Apple Airpods Headphones,1,150,11/27/19 13:09,"389 Adams St, Los Angeles, CA 90001" +290917,Apple Airpods Headphones,1,150,11/06/19 17:42,"355 6th St, San Francisco, CA 94016" +290918,USB-C Charging Cable,1,11.95,11/16/19 08:32,"727 9th St, San Francisco, CA 94016" +290919,Apple Airpods Headphones,1,150,11/28/19 09:08,"897 4th St, Atlanta, GA 30301" +290920,AA Batteries (4-pack),1,3.84,11/05/19 23:03,"223 4th St, New York City, NY 10001" +290921,27in FHD Monitor,1,149.99,11/29/19 21:10,"897 6th St, Los Angeles, CA 90001" +290922,27in 4K Gaming Monitor,1,389.99,11/28/19 15:11,"949 Ridge St, Austin, TX 73301" +290923,Bose SoundSport Headphones,1,99.99,11/04/19 14:37,"960 12th St, New York City, NY 10001" +290924,USB-C Charging Cable,1,11.95,11/07/19 12:48,"629 Church St, Atlanta, GA 30301" +290925,USB-C Charging Cable,1,11.95,11/12/19 16:44,"738 1st St, New York City, NY 10001" +290926,Vareebadd Phone,1,400,11/12/19 21:48,"171 Lake St, Los Angeles, CA 90001" +290927,USB-C Charging Cable,1,11.95,11/15/19 13:52,"520 Highland St, Portland, OR 97035" +290928,27in FHD Monitor,1,149.99,11/04/19 21:35,"84 7th St, New York City, NY 10001" +290929,AA Batteries (4-pack),1,3.84,11/12/19 20:52,"4 Forest St, Los Angeles, CA 90001" +290930,USB-C Charging Cable,1,11.95,11/25/19 11:58,"189 Washington St, San Francisco, CA 94016" +290931,Wired Headphones,1,11.99,11/23/19 18:43,"364 6th St, Atlanta, GA 30301" +290932,USB-C Charging Cable,1,11.95,11/03/19 22:19,"880 13th St, New York City, NY 10001" +290933,Bose SoundSport Headphones,1,99.99,11/19/19 14:32,"72 Jackson St, San Francisco, CA 94016" +290934,Lightning Charging Cable,1,14.95,11/07/19 14:09,"972 12th St, Atlanta, GA 30301" +290935,AAA Batteries (4-pack),2,2.99,11/07/19 12:57,"190 Lake St, New York City, NY 10001" +290936,27in FHD Monitor,1,149.99,11/04/19 10:39,"587 Cherry St, Portland, OR 97035" +290937,Bose SoundSport Headphones,1,99.99,11/01/19 09:35,"961 Pine St, Los Angeles, CA 90001" +290938,AA Batteries (4-pack),3,3.84,11/15/19 19:43,"777 Willow St, New York City, NY 10001" +290939,Bose SoundSport Headphones,1,99.99,11/15/19 09:04,"25 6th St, New York City, NY 10001" +290940,AAA Batteries (4-pack),1,2.99,11/29/19 10:41,"870 Washington St, Los Angeles, CA 90001" +290941,Lightning Charging Cable,1,14.95,11/11/19 11:56,"786 Wilson St, Dallas, TX 75001" +290942,Flatscreen TV,1,300,11/26/19 08:53,"909 Spruce St, San Francisco, CA 94016" +290943,Lightning Charging Cable,1,14.95,11/20/19 23:22,"970 Center St, Portland, ME 04101" +290944,Apple Airpods Headphones,1,150,11/16/19 09:28,"327 Wilson St, Boston, MA 02215" +290945,Apple Airpods Headphones,2,150,11/08/19 07:26,"763 Main St, Boston, MA 02215" +290946,20in Monitor,1,109.99,11/13/19 12:16,"912 Elm St, New York City, NY 10001" +290947,LG Washing Machine,1,600.0,11/27/19 18:07,"535 1st St, New York City, NY 10001" +290948,AA Batteries (4-pack),1,3.84,11/07/19 15:46,"388 4th St, Atlanta, GA 30301" +290949,USB-C Charging Cable,1,11.95,11/09/19 11:29,"865 12th St, Austin, TX 73301" +290950,Wired Headphones,1,11.99,11/07/19 17:28,"134 Center St, New York City, NY 10001" +290951,34in Ultrawide Monitor,1,379.99,11/08/19 15:16,"696 12th St, New York City, NY 10001" +290952,USB-C Charging Cable,1,11.95,11/04/19 18:57,"386 9th St, Los Angeles, CA 90001" +290953,AAA Batteries (4-pack),2,2.99,11/28/19 16:54,"287 West St, Austin, TX 73301" +290954,Wired Headphones,1,11.99,11/10/19 10:33,"578 Sunset St, Boston, MA 02215" +290955,Wired Headphones,1,11.99,11/04/19 10:48,"544 Center St, Los Angeles, CA 90001" +290956,AA Batteries (4-pack),1,3.84,11/21/19 20:20,"627 Cherry St, San Francisco, CA 94016" +290956,Wired Headphones,1,11.99,11/21/19 20:20,"627 Cherry St, San Francisco, CA 94016" +290957,AA Batteries (4-pack),2,3.84,11/22/19 08:26,"413 8th St, Dallas, TX 75001" +290958,20in Monitor,1,109.99,11/24/19 22:08,"213 Wilson St, Dallas, TX 75001" +290959,Wired Headphones,1,11.99,11/03/19 13:02,"205 Jackson St, San Francisco, CA 94016" +290960,20in Monitor,1,109.99,11/02/19 19:59,"584 Highland St, Los Angeles, CA 90001" +290961,LG Washing Machine,1,600.0,11/13/19 09:03,"931 Sunset St, New York City, NY 10001" +290962,Lightning Charging Cable,2,14.95,11/18/19 15:06,"749 Park St, Atlanta, GA 30301" +290963,Apple Airpods Headphones,1,150,11/21/19 07:35,"291 Maple St, Boston, MA 02215" +290964,AA Batteries (4-pack),5,3.84,11/28/19 10:03,"543 Ridge St, Boston, MA 02215" +290965,AAA Batteries (4-pack),1,2.99,11/02/19 23:15,"809 2nd St, New York City, NY 10001" +290966,Apple Airpods Headphones,1,150,11/22/19 22:20,"994 Willow St, Boston, MA 02215" +290967,AAA Batteries (4-pack),1,2.99,11/23/19 20:15,"190 Park St, Atlanta, GA 30301" +290968,USB-C Charging Cable,1,11.95,11/28/19 11:50,"242 Walnut St, Boston, MA 02215" +290969,AA Batteries (4-pack),2,3.84,11/30/19 12:28,"995 Jackson St, New York City, NY 10001" +290970,Apple Airpods Headphones,1,150,11/30/19 22:41,"791 Elm St, San Francisco, CA 94016" +290971,Google Phone,1,600,11/02/19 14:49,"925 Meadow St, San Francisco, CA 94016" +290972,Bose SoundSport Headphones,1,99.99,11/13/19 18:34,"383 6th St, San Francisco, CA 94016" +290973,AA Batteries (4-pack),1,3.84,11/19/19 18:43,"865 13th St, Los Angeles, CA 90001" +290974,Flatscreen TV,1,300,11/02/19 16:50,"732 2nd St, Boston, MA 02215" +290975,USB-C Charging Cable,2,11.95,11/10/19 14:29,"75 1st St, San Francisco, CA 94016" +290976,Macbook Pro Laptop,1,1700,11/28/19 23:56,"704 5th St, New York City, NY 10001" +290977,AA Batteries (4-pack),1,3.84,11/30/19 20:57,"785 Cedar St, Los Angeles, CA 90001" +290978,AA Batteries (4-pack),1,3.84,11/05/19 11:42,"120 North St, Portland, OR 97035" +290979,Bose SoundSport Headphones,1,99.99,11/05/19 00:11,"372 Cedar St, Seattle, WA 98101" +290980,27in 4K Gaming Monitor,1,389.99,11/20/19 18:50,"542 7th St, Dallas, TX 75001" +290981,Lightning Charging Cable,1,14.95,11/03/19 20:48,"288 Park St, New York City, NY 10001" +290982,Apple Airpods Headphones,2,150,11/10/19 18:03,"412 Spruce St, San Francisco, CA 94016" +290983,Lightning Charging Cable,1,14.95,11/24/19 19:53,"708 Chestnut St, Dallas, TX 75001" +290984,Wired Headphones,1,11.99,11/07/19 13:43,"769 Walnut St, San Francisco, CA 94016" +290985,Macbook Pro Laptop,1,1700,11/07/19 15:17,"344 Adams St, Los Angeles, CA 90001" +290986,AA Batteries (4-pack),1,3.84,11/06/19 22:57,"819 Hill St, Los Angeles, CA 90001" +290987,AAA Batteries (4-pack),1,2.99,11/25/19 17:36,"998 Dogwood St, New York City, NY 10001" +290988,Lightning Charging Cable,1,14.95,11/03/19 21:05,"972 Cherry St, San Francisco, CA 94016" +290989,AAA Batteries (4-pack),1,2.99,11/22/19 17:28,"235 Sunset St, San Francisco, CA 94016" +290990,AA Batteries (4-pack),1,3.84,11/06/19 00:06,"543 11th St, Los Angeles, CA 90001" +290990,34in Ultrawide Monitor,1,379.99,11/06/19 00:06,"543 11th St, Los Angeles, CA 90001" +290991,20in Monitor,1,109.99,11/12/19 15:48,"944 Elm St, San Francisco, CA 94016" +290992,USB-C Charging Cable,1,11.95,11/14/19 21:01,"603 Lakeview St, San Francisco, CA 94016" +290992,USB-C Charging Cable,1,11.95,11/14/19 21:01,"603 Lakeview St, San Francisco, CA 94016" +290993,Google Phone,1,600,11/23/19 12:52,"809 Hill St, Los Angeles, CA 90001" +290993,USB-C Charging Cable,1,11.95,11/23/19 12:52,"809 Hill St, Los Angeles, CA 90001" +290993,34in Ultrawide Monitor,1,379.99,11/23/19 12:52,"809 Hill St, Los Angeles, CA 90001" +290994,USB-C Charging Cable,1,11.95,11/10/19 09:00,"638 Cedar St, Boston, MA 02215" +290995,Flatscreen TV,1,300,11/09/19 06:45,"523 Dogwood St, Los Angeles, CA 90001" +290996,Wired Headphones,1,11.99,11/17/19 16:12,"478 Hickory St, New York City, NY 10001" +290997,AA Batteries (4-pack),1,3.84,11/12/19 17:40,"627 Adams St, Portland, OR 97035" +290998,USB-C Charging Cable,1,11.95,11/30/19 20:33,"12 Maple St, Atlanta, GA 30301" +290999,Lightning Charging Cable,1,14.95,11/30/19 21:17,"998 Elm St, Dallas, TX 75001" +291000,iPhone,1,700,11/23/19 18:42,"780 Forest St, Dallas, TX 75001" +291000,Apple Airpods Headphones,1,150,11/23/19 18:42,"780 Forest St, Dallas, TX 75001" +291001,Macbook Pro Laptop,1,1700,11/09/19 19:05,"293 Lakeview St, San Francisco, CA 94016" +291002,Lightning Charging Cable,1,14.95,11/02/19 07:41,"96 Cedar St, San Francisco, CA 94016" +291003,Wired Headphones,1,11.99,11/20/19 16:41,"367 Forest St, Dallas, TX 75001" +291004,AAA Batteries (4-pack),1,2.99,11/25/19 11:39,"48 Lakeview St, Los Angeles, CA 90001" +291005,AAA Batteries (4-pack),1,2.99,11/13/19 18:59,"625 Main St, San Francisco, CA 94016" +291006,Wired Headphones,1,11.99,11/03/19 11:52,"77 11th St, New York City, NY 10001" +291007,Google Phone,1,600,11/03/19 16:34,"453 Cedar St, Portland, OR 97035" +291007,USB-C Charging Cable,1,11.95,11/03/19 16:34,"453 Cedar St, Portland, OR 97035" +291008,AAA Batteries (4-pack),1,2.99,11/17/19 14:41,"614 2nd St, San Francisco, CA 94016" +291009,Apple Airpods Headphones,1,150,11/24/19 07:58,"232 Meadow St, New York City, NY 10001" +291010,Apple Airpods Headphones,1,150,11/12/19 13:25,"915 Sunset St, Dallas, TX 75001" +291011,iPhone,1,700,11/28/19 20:25,"940 7th St, Atlanta, GA 30301" +291012,20in Monitor,1,109.99,11/26/19 23:02,"718 8th St, New York City, NY 10001" +291013,AA Batteries (4-pack),1,3.84,11/12/19 09:04,"396 4th St, Los Angeles, CA 90001" +291014,34in Ultrawide Monitor,1,379.99,11/13/19 10:27,"864 4th St, San Francisco, CA 94016" +291015,Google Phone,1,600,11/14/19 21:16,"458 Main St, Seattle, WA 98101" +291016,Apple Airpods Headphones,1,150,11/14/19 17:23,"633 10th St, Los Angeles, CA 90001" +291017,iPhone,1,700,11/15/19 22:39,"221 1st St, Los Angeles, CA 90001" +291018,Apple Airpods Headphones,1,150,11/06/19 20:48,"926 10th St, San Francisco, CA 94016" +291019,27in 4K Gaming Monitor,1,389.99,11/23/19 15:10,"235 Chestnut St, Los Angeles, CA 90001" +291020,Bose SoundSport Headphones,1,99.99,11/02/19 12:15,"390 Highland St, Boston, MA 02215" +291021,Macbook Pro Laptop,1,1700,11/14/19 18:20,"565 Dogwood St, Los Angeles, CA 90001" +291022,Wired Headphones,1,11.99,11/13/19 18:15,"582 4th St, Atlanta, GA 30301" +291023,Bose SoundSport Headphones,1,99.99,11/29/19 19:21,"54 Spruce St, Boston, MA 02215" +291024,AA Batteries (4-pack),2,3.84,11/20/19 22:02,"439 5th St, Atlanta, GA 30301" +291025,Wired Headphones,1,11.99,11/25/19 20:25,"259 Dogwood St, Los Angeles, CA 90001" +291026,Google Phone,1,600,11/16/19 19:45,"134 Ridge St, New York City, NY 10001" +291027,Google Phone,1,600,11/08/19 16:11,"230 12th St, Dallas, TX 75001" +291027,Wired Headphones,1,11.99,11/08/19 16:11,"230 12th St, Dallas, TX 75001" +291028,AAA Batteries (4-pack),1,2.99,11/23/19 15:41,"526 Willow St, San Francisco, CA 94016" +291029,Lightning Charging Cable,2,14.95,11/01/19 15:15,"928 Lake St, Boston, MA 02215" +291030,Wired Headphones,2,11.99,11/08/19 15:26,"202 Meadow St, New York City, NY 10001" +291031,AA Batteries (4-pack),2,3.84,11/20/19 22:34,"863 13th St, San Francisco, CA 94016" +291032,USB-C Charging Cable,1,11.95,11/30/19 12:45,"146 Cedar St, San Francisco, CA 94016" +291033,Bose SoundSport Headphones,1,99.99,11/14/19 01:46,"907 6th St, Atlanta, GA 30301" +291034,Wired Headphones,1,11.99,11/23/19 21:39,"53 Maple St, New York City, NY 10001" +291035,AA Batteries (4-pack),1,3.84,11/14/19 11:01,"154 Church St, Boston, MA 02215" +291036,iPhone,1,700,11/06/19 13:38,"940 10th St, Seattle, WA 98101" +291036,Lightning Charging Cable,1,14.95,11/06/19 13:38,"940 10th St, Seattle, WA 98101" +291037,Lightning Charging Cable,1,14.95,11/03/19 19:22,"857 9th St, Austin, TX 73301" +291038,AAA Batteries (4-pack),1,2.99,11/21/19 14:44,"575 5th St, Portland, OR 97035" +291038,AAA Batteries (4-pack),1,2.99,11/21/19 14:44,"575 5th St, Portland, OR 97035" +291039,AA Batteries (4-pack),1,3.84,11/23/19 20:29,"266 South St, San Francisco, CA 94016" +291040,Macbook Pro Laptop,1,1700,11/06/19 21:23,"382 Highland St, Los Angeles, CA 90001" +291041,Macbook Pro Laptop,1,1700,11/23/19 11:24,"713 Lake St, Portland, ME 04101" +291042,Bose SoundSport Headphones,1,99.99,11/22/19 17:22,"371 12th St, Boston, MA 02215" +291043,AA Batteries (4-pack),1,3.84,11/15/19 18:33,"234 Cherry St, Los Angeles, CA 90001" +291044,USB-C Charging Cable,1,11.95,11/07/19 09:58,"375 Willow St, Los Angeles, CA 90001" +291045,Bose SoundSport Headphones,1,99.99,11/18/19 11:08,"658 7th St, Seattle, WA 98101" +291046,Wired Headphones,1,11.99,11/12/19 16:58,"566 Main St, Austin, TX 73301" +291047,AA Batteries (4-pack),1,3.84,11/12/19 19:33,"287 8th St, Los Angeles, CA 90001" +291048,AA Batteries (4-pack),1,3.84,11/04/19 09:39,"17 7th St, Dallas, TX 75001" +291049,AAA Batteries (4-pack),1,2.99,11/16/19 22:06,"714 Sunset St, San Francisco, CA 94016" +291050,AAA Batteries (4-pack),1,2.99,11/05/19 22:03,"69 10th St, Atlanta, GA 30301" +291051,Apple Airpods Headphones,1,150,11/29/19 16:45,"423 9th St, San Francisco, CA 94016" +291052,iPhone,1,700,11/04/19 20:16,"743 Lake St, Portland, ME 04101" +291052,Lightning Charging Cable,1,14.95,11/04/19 20:16,"743 Lake St, Portland, ME 04101" +291052,Apple Airpods Headphones,1,150,11/04/19 20:16,"743 Lake St, Portland, ME 04101" +291053,Lightning Charging Cable,2,14.95,11/27/19 14:29,"414 Elm St, Boston, MA 02215" +291054,27in FHD Monitor,1,149.99,11/19/19 10:09,"87 Jackson St, Los Angeles, CA 90001" +291055,27in 4K Gaming Monitor,1,389.99,11/30/19 14:50,"762 Walnut St, San Francisco, CA 94016" +291056,Bose SoundSport Headphones,1,99.99,11/15/19 17:41,"461 Lakeview St, San Francisco, CA 94016" +291057,Wired Headphones,1,11.99,11/01/19 15:59,"496 Hill St, New York City, NY 10001" +291058,USB-C Charging Cable,1,11.95,11/08/19 06:39,"348 Walnut St, New York City, NY 10001" +291059,Flatscreen TV,1,300,11/21/19 20:10,"749 Jefferson St, Los Angeles, CA 90001" +291060,AA Batteries (4-pack),1,3.84,11/11/19 13:52,"200 Elm St, San Francisco, CA 94016" +291061,AA Batteries (4-pack),2,3.84,11/07/19 17:51,"829 Cherry St, San Francisco, CA 94016" +291062,27in FHD Monitor,1,149.99,11/16/19 20:19,"97 Johnson St, Seattle, WA 98101" +291063,Lightning Charging Cable,2,14.95,11/14/19 20:56,"868 Elm St, New York City, NY 10001" +291064,AA Batteries (4-pack),1,3.84,11/29/19 06:35,"303 Main St, Seattle, WA 98101" +291065,AAA Batteries (4-pack),3,2.99,11/03/19 21:09,"631 1st St, Los Angeles, CA 90001" +291066,AA Batteries (4-pack),1,3.84,11/20/19 08:51,"502 Jackson St, New York City, NY 10001" +291067,Bose SoundSport Headphones,1,99.99,11/09/19 17:48,"284 2nd St, Portland, OR 97035" +291068,AAA Batteries (4-pack),1,2.99,11/30/19 13:53,"173 13th St, San Francisco, CA 94016" +291069,Bose SoundSport Headphones,1,99.99,11/21/19 19:45,"909 5th St, San Francisco, CA 94016" +291070,Wired Headphones,1,11.99,11/06/19 09:32,"862 14th St, New York City, NY 10001" +291071,USB-C Charging Cable,1,11.95,11/30/19 11:18,"737 Washington St, Los Angeles, CA 90001" +291072,AAA Batteries (4-pack),1,2.99,11/01/19 21:33,"215 10th St, New York City, NY 10001" +291073,Bose SoundSport Headphones,1,99.99,11/06/19 17:02,"173 Highland St, San Francisco, CA 94016" +291074,iPhone,1,700,11/21/19 10:16,"722 5th St, Dallas, TX 75001" +291074,Lightning Charging Cable,1,14.95,11/21/19 10:16,"722 5th St, Dallas, TX 75001" +291075,Google Phone,1,600,11/18/19 11:25,"845 14th St, Seattle, WA 98101" +291076,USB-C Charging Cable,1,11.95,11/27/19 22:15,"662 Madison St, Boston, MA 02215" +291077,Lightning Charging Cable,1,14.95,11/22/19 05:00,"795 Jackson St, Dallas, TX 75001" +291078,Bose SoundSport Headphones,1,99.99,11/01/19 17:56,"441 12th St, Los Angeles, CA 90001" +291079,USB-C Charging Cable,1,11.95,11/15/19 15:30,"728 Main St, New York City, NY 10001" +291080,Wired Headphones,1,11.99,11/02/19 18:57,"179 10th St, San Francisco, CA 94016" +291081,34in Ultrawide Monitor,1,379.99,11/26/19 16:49,"374 Cedar St, Portland, OR 97035" +291082,34in Ultrawide Monitor,1,379.99,11/05/19 20:17,"674 Sunset St, Los Angeles, CA 90001" +291083,Apple Airpods Headphones,1,150,11/11/19 07:14,"958 Lakeview St, Los Angeles, CA 90001" +291084,USB-C Charging Cable,1,11.95,11/03/19 20:00,"960 Maple St, Portland, OR 97035" +291085,Wired Headphones,2,11.99,11/06/19 17:10,"790 5th St, Dallas, TX 75001" +291086,AAA Batteries (4-pack),1,2.99,11/29/19 17:52,"11 Cedar St, San Francisco, CA 94016" +291087,AA Batteries (4-pack),1,3.84,11/16/19 16:06,"431 North St, Boston, MA 02215" +291088,AA Batteries (4-pack),2,3.84,11/10/19 13:59,"586 Hill St, San Francisco, CA 94016" +291089,Vareebadd Phone,1,400,11/04/19 11:52,"646 Center St, San Francisco, CA 94016" +291090,USB-C Charging Cable,1,11.95,11/22/19 13:21,"995 Willow St, New York City, NY 10001" +291091,Bose SoundSport Headphones,1,99.99,11/07/19 13:15,"591 Washington St, Portland, OR 97035" +291092,27in 4K Gaming Monitor,1,389.99,11/27/19 22:22,"544 4th St, Boston, MA 02215" +291093,AA Batteries (4-pack),1,3.84,11/04/19 10:51,"222 10th St, Boston, MA 02215" +291094,Bose SoundSport Headphones,1,99.99,11/07/19 17:57,"98 10th St, Portland, OR 97035" +291095,20in Monitor,1,109.99,11/14/19 07:08,"944 Cedar St, Los Angeles, CA 90001" +291096,Google Phone,1,600,11/04/19 16:28,"28 Lincoln St, Portland, ME 04101" +291097,AAA Batteries (4-pack),1,2.99,11/29/19 11:27,"734 North St, New York City, NY 10001" +291098,Bose SoundSport Headphones,1,99.99,11/08/19 07:41,"399 Main St, Seattle, WA 98101" +291099,AA Batteries (4-pack),1,3.84,11/07/19 01:11,"229 Willow St, New York City, NY 10001" +291100,iPhone,1,700,11/27/19 13:27,"744 12th St, Los Angeles, CA 90001" +291101,AAA Batteries (4-pack),6,2.99,11/19/19 16:21,"693 Jackson St, Boston, MA 02215" +291102,Apple Airpods Headphones,1,150,11/17/19 22:15,"283 7th St, Los Angeles, CA 90001" +291103,34in Ultrawide Monitor,1,379.99,11/11/19 15:07,"32 Adams St, Boston, MA 02215" +291103,AA Batteries (4-pack),1,3.84,11/11/19 15:07,"32 Adams St, Boston, MA 02215" +291104,AAA Batteries (4-pack),1,2.99,11/14/19 12:27,"986 Johnson St, San Francisco, CA 94016" +291105,AA Batteries (4-pack),1,3.84,11/01/19 23:57,"906 Maple St, Portland, OR 97035" +291106,Apple Airpods Headphones,1,150,11/10/19 15:00,"93 10th St, San Francisco, CA 94016" +291107,Wired Headphones,1,11.99,11/28/19 23:21,"829 Dogwood St, New York City, NY 10001" +291108,Wired Headphones,1,11.99,11/26/19 13:17,"362 Dogwood St, San Francisco, CA 94016" +291109,Macbook Pro Laptop,1,1700,11/04/19 10:32,"611 Madison St, Dallas, TX 75001" +291110,Wired Headphones,1,11.99,11/18/19 19:33,"396 Hickory St, Atlanta, GA 30301" +291110,AAA Batteries (4-pack),2,2.99,11/18/19 19:33,"396 Hickory St, Atlanta, GA 30301" +291111,iPhone,1,700,11/17/19 11:47,"659 Wilson St, New York City, NY 10001" +291112,USB-C Charging Cable,1,11.95,11/26/19 16:58,"191 Church St, Dallas, TX 75001" +291113,Google Phone,1,600,11/08/19 00:04,"294 8th St, Boston, MA 02215" +291114,Apple Airpods Headphones,1,150,11/19/19 17:52,"95 Walnut St, San Francisco, CA 94016" +291115,Wired Headphones,1,11.99,11/20/19 09:29,"481 West St, New York City, NY 10001" +291116,USB-C Charging Cable,1,11.95,11/30/19 22:55,"819 Ridge St, New York City, NY 10001" +291117,iPhone,1,700,11/25/19 19:47,"843 Lincoln St, San Francisco, CA 94016" +291117,Lightning Charging Cable,1,14.95,11/25/19 19:47,"843 Lincoln St, San Francisco, CA 94016" +291118,AA Batteries (4-pack),1,3.84,11/30/19 11:08,"269 Ridge St, San Francisco, CA 94016" +291119,Wired Headphones,1,11.99,11/14/19 21:04,"928 Johnson St, Boston, MA 02215" +291120,Wired Headphones,1,11.99,11/03/19 17:39,"372 Spruce St, San Francisco, CA 94016" +291121,USB-C Charging Cable,3,11.95,11/06/19 10:54,"448 6th St, San Francisco, CA 94016" +291122,Apple Airpods Headphones,1,150,11/30/19 18:40,"256 West St, San Francisco, CA 94016" +291122,Apple Airpods Headphones,1,150,11/30/19 18:40,"256 West St, San Francisco, CA 94016" +291123,Apple Airpods Headphones,1,150,11/08/19 09:04,"640 Elm St, Boston, MA 02215" +291123,Lightning Charging Cable,1,14.95,11/08/19 09:04,"640 Elm St, Boston, MA 02215" +291124,Apple Airpods Headphones,1,150,11/19/19 15:04,"12 8th St, Boston, MA 02215" +291125,AAA Batteries (4-pack),1,2.99,11/13/19 11:31,"222 Cherry St, Los Angeles, CA 90001" +291126,Lightning Charging Cable,1,14.95,11/24/19 14:08,"177 Sunset St, Atlanta, GA 30301" +291127,Lightning Charging Cable,1,14.95,11/05/19 17:52,"618 Pine St, San Francisco, CA 94016" +291128,27in FHD Monitor,1,149.99,11/05/19 11:27,"170 River St, San Francisco, CA 94016" +291129,Apple Airpods Headphones,1,150,11/26/19 23:03,"69 Chestnut St, Seattle, WA 98101" +291130,USB-C Charging Cable,1,11.95,11/02/19 11:08,"598 Adams St, Seattle, WA 98101" +291131,Lightning Charging Cable,1,14.95,11/22/19 08:01,"39 Spruce St, New York City, NY 10001" +291132,Lightning Charging Cable,1,14.95,11/17/19 01:14,"388 Hickory St, Los Angeles, CA 90001" +291133,USB-C Charging Cable,1,11.95,11/25/19 12:27,"538 Cedar St, Boston, MA 02215" +291134,Wired Headphones,1,11.99,11/27/19 05:44,"757 Walnut St, Los Angeles, CA 90001" +291135,AA Batteries (4-pack),1,3.84,11/29/19 07:46,"675 Elm St, Atlanta, GA 30301" +291136,34in Ultrawide Monitor,1,379.99,11/30/19 15:56,"861 Spruce St, New York City, NY 10001" +291137,Bose SoundSport Headphones,1,99.99,11/06/19 14:16,"928 Jackson St, San Francisco, CA 94016" +291138,Wired Headphones,1,11.99,11/02/19 21:52,"23 Cedar St, Seattle, WA 98101" +291139,Bose SoundSport Headphones,1,99.99,11/24/19 11:47,"446 11th St, San Francisco, CA 94016" +291140,USB-C Charging Cable,1,11.95,11/24/19 16:38,"618 Adams St, New York City, NY 10001" +291141,USB-C Charging Cable,2,11.95,11/17/19 17:38,"922 Elm St, San Francisco, CA 94016" +291142,iPhone,1,700,11/27/19 12:13,"945 Cedar St, San Francisco, CA 94016" +291142,Lightning Charging Cable,1,14.95,11/27/19 12:13,"945 Cedar St, San Francisco, CA 94016" +291142,Wired Headphones,1,11.99,11/27/19 12:13,"945 Cedar St, San Francisco, CA 94016" +291143,Wired Headphones,2,11.99,11/30/19 10:25,"294 6th St, Boston, MA 02215" +291144,Lightning Charging Cable,1,14.95,11/22/19 21:09,"160 Main St, Dallas, TX 75001" +291145,Lightning Charging Cable,1,14.95,11/26/19 12:04,"874 Elm St, New York City, NY 10001" +291146,AAA Batteries (4-pack),1,2.99,11/26/19 20:44,"614 Hickory St, Los Angeles, CA 90001" +291147,27in FHD Monitor,1,149.99,11/24/19 14:36,"518 Jackson St, Boston, MA 02215" +291148,AA Batteries (4-pack),1,3.84,11/10/19 00:13,"590 West St, Boston, MA 02215" +291149,USB-C Charging Cable,1,11.95,11/15/19 11:38,"795 Wilson St, Boston, MA 02215" +291150,AAA Batteries (4-pack),1,2.99,11/09/19 10:49,"758 Elm St, Los Angeles, CA 90001" +291151,Apple Airpods Headphones,1,150,11/19/19 11:50,"456 South St, Dallas, TX 75001" +291152,Lightning Charging Cable,1,14.95,11/10/19 22:57,"125 6th St, Dallas, TX 75001" +291153,Apple Airpods Headphones,1,150,11/11/19 21:42,"354 4th St, Austin, TX 73301" +291154,Lightning Charging Cable,1,14.95,11/07/19 20:18,"684 Lakeview St, San Francisco, CA 94016" +291155,Wired Headphones,1,11.99,11/06/19 14:10,"80 Wilson St, San Francisco, CA 94016" +291156,Bose SoundSport Headphones,1,99.99,11/06/19 13:52,"305 Wilson St, Los Angeles, CA 90001" +291157,Macbook Pro Laptop,1,1700,11/27/19 08:37,"781 South St, New York City, NY 10001" +291158,Apple Airpods Headphones,1,150,11/20/19 16:02,"560 Pine St, San Francisco, CA 94016" +291159,Lightning Charging Cable,1,14.95,11/30/19 23:52,"173 Elm St, Boston, MA 02215" +291160,Lightning Charging Cable,1,14.95,11/19/19 00:24,"402 Wilson St, Los Angeles, CA 90001" +291161,AA Batteries (4-pack),1,3.84,11/02/19 11:50,"423 Church St, Seattle, WA 98101" +291162,Lightning Charging Cable,1,14.95,11/16/19 13:17,"438 Lake St, Atlanta, GA 30301" +291163,AAA Batteries (4-pack),3,2.99,11/02/19 01:53,"904 11th St, Dallas, TX 75001" +291164,34in Ultrawide Monitor,1,379.99,11/20/19 16:18,"36 9th St, New York City, NY 10001" +291165,USB-C Charging Cable,1,11.95,11/02/19 20:02,"831 13th St, Atlanta, GA 30301" +291166,AAA Batteries (4-pack),2,2.99,11/09/19 11:43,"872 Main St, New York City, NY 10001" +291167,Apple Airpods Headphones,1,150,11/21/19 20:50,"106 Wilson St, Los Angeles, CA 90001" +291168,AAA Batteries (4-pack),1,2.99,11/04/19 08:54,"205 North St, San Francisco, CA 94016" +291169,AAA Batteries (4-pack),2,2.99,11/10/19 19:08,"477 South St, New York City, NY 10001" +291170,Apple Airpods Headphones,1,150,11/14/19 16:19,"975 West St, New York City, NY 10001" +291171,Google Phone,1,600,11/13/19 06:56,"570 Center St, San Francisco, CA 94016" +291172,Apple Airpods Headphones,1,150,11/21/19 01:58,"495 Ridge St, San Francisco, CA 94016" +291173,AA Batteries (4-pack),1,3.84,11/25/19 14:26,"785 Washington St, Boston, MA 02215" +291174,Lightning Charging Cable,1,14.95,11/17/19 15:05,"466 River St, San Francisco, CA 94016" +291175,27in FHD Monitor,1,149.99,11/21/19 11:54,"214 Jefferson St, San Francisco, CA 94016" +291176,Wired Headphones,3,11.99,11/02/19 19:23,"993 8th St, San Francisco, CA 94016" +291177,AAA Batteries (4-pack),1,2.99,11/08/19 20:45,"762 Washington St, Austin, TX 73301" +291178,AA Batteries (4-pack),2,3.84,11/23/19 16:45,"815 Johnson St, Portland, OR 97035" +291179,Lightning Charging Cable,1,14.95,11/28/19 16:07,"817 Hill St, New York City, NY 10001" +291180,LG Dryer,1,600.0,11/15/19 13:24,"570 Lincoln St, Seattle, WA 98101" +291181,Wired Headphones,1,11.99,11/27/19 15:38,"809 1st St, San Francisco, CA 94016" +291182,Google Phone,1,600,11/05/19 11:42,"968 North St, Atlanta, GA 30301" +291182,USB-C Charging Cable,1,11.95,11/05/19 11:42,"968 North St, Atlanta, GA 30301" +291183,USB-C Charging Cable,1,11.95,11/14/19 21:42,"789 Maple St, San Francisco, CA 94016" +291184,34in Ultrawide Monitor,1,379.99,11/14/19 16:41,"940 Cedar St, Boston, MA 02215" +291185,Macbook Pro Laptop,1,1700,11/12/19 20:10,"5 Meadow St, Portland, OR 97035" +291186,USB-C Charging Cable,1,11.95,11/20/19 13:18,"376 Hill St, Los Angeles, CA 90001" +291187,Lightning Charging Cable,1,14.95,11/27/19 14:45,"946 Hill St, New York City, NY 10001" +291188,AAA Batteries (4-pack),1,2.99,11/07/19 22:26,"436 Sunset St, New York City, NY 10001" +291189,AAA Batteries (4-pack),1,2.99,11/15/19 18:16,"768 Lincoln St, Austin, TX 73301" +291190,USB-C Charging Cable,1,11.95,11/19/19 08:37,"642 Church St, Boston, MA 02215" +291191,34in Ultrawide Monitor,1,379.99,11/01/19 15:18,"825 1st St, Boston, MA 02215" +291192,Apple Airpods Headphones,1,150,11/02/19 11:31,"708 2nd St, Boston, MA 02215" +291193,27in FHD Monitor,1,149.99,11/24/19 10:26,"26 Lake St, Los Angeles, CA 90001" +291194,AA Batteries (4-pack),1,3.84,11/11/19 11:53,"824 Dogwood St, New York City, NY 10001" +291195,iPhone,1,700,11/05/19 18:31,"419 River St, New York City, NY 10001" +291195,Lightning Charging Cable,1,14.95,11/05/19 18:31,"419 River St, New York City, NY 10001" +291196,20in Monitor,1,109.99,11/07/19 20:03,"570 Johnson St, Dallas, TX 75001" +291197,AA Batteries (4-pack),1,3.84,11/30/19 23:25,"970 Main St, San Francisco, CA 94016" +291198,AA Batteries (4-pack),1,3.84,11/27/19 22:52,"229 Adams St, New York City, NY 10001" +291199,AAA Batteries (4-pack),1,2.99,11/11/19 23:49,"23 Maple St, Los Angeles, CA 90001" +291200,AAA Batteries (4-pack),2,2.99,11/12/19 15:58,"544 Chestnut St, Seattle, WA 98101" +291201,Macbook Pro Laptop,1,1700,11/10/19 12:02,"223 Highland St, New York City, NY 10001" +291202,Lightning Charging Cable,1,14.95,11/09/19 18:08,"211 Cherry St, New York City, NY 10001" +291203,27in 4K Gaming Monitor,1,389.99,11/27/19 13:22,"824 12th St, San Francisco, CA 94016" +291204,Bose SoundSport Headphones,1,99.99,11/15/19 15:45,"539 Jefferson St, Boston, MA 02215" +291205,AAA Batteries (4-pack),1,2.99,11/15/19 20:25,"864 Cedar St, Los Angeles, CA 90001" +291206,USB-C Charging Cable,1,11.95,11/19/19 09:23,"431 Spruce St, Atlanta, GA 30301" +291207,Wired Headphones,1,11.99,11/01/19 20:55,"50 Hickory St, San Francisco, CA 94016" +291208,AAA Batteries (4-pack),1,2.99,11/07/19 22:53,"868 River St, San Francisco, CA 94016" +291209,Macbook Pro Laptop,1,1700,11/22/19 21:15,"195 West St, San Francisco, CA 94016" +291210,Lightning Charging Cable,1,14.95,11/07/19 17:59,"975 1st St, San Francisco, CA 94016" +291211,Apple Airpods Headphones,1,150,11/28/19 20:48,"614 9th St, Los Angeles, CA 90001" +291212,USB-C Charging Cable,1,11.95,11/17/19 18:17,"786 Jackson St, Seattle, WA 98101" +291213,Wired Headphones,1,11.99,11/29/19 08:38,"311 Washington St, Dallas, TX 75001" +291214,Google Phone,1,600,11/01/19 12:06,"517 Maple St, Portland, ME 04101" +291214,Wired Headphones,1,11.99,11/01/19 12:06,"517 Maple St, Portland, ME 04101" +291215,USB-C Charging Cable,1,11.95,11/29/19 19:09,"593 Adams St, Dallas, TX 75001" +291216,Bose SoundSport Headphones,1,99.99,11/23/19 11:48,"816 Highland St, Los Angeles, CA 90001" +291217,Bose SoundSport Headphones,1,99.99,11/17/19 16:52,"883 Elm St, Seattle, WA 98101" +291218,Lightning Charging Cable,1,14.95,11/23/19 21:38,"651 Willow St, Seattle, WA 98101" +291219,USB-C Charging Cable,1,11.95,11/08/19 21:37,"98 Hickory St, San Francisco, CA 94016" +291220,Lightning Charging Cable,1,14.95,11/11/19 17:35,"882 Hill St, Seattle, WA 98101" +291221,27in FHD Monitor,1,149.99,11/21/19 10:25,"742 Church St, San Francisco, CA 94016" +291222,34in Ultrawide Monitor,1,379.99,11/17/19 21:47,"547 Cherry St, Dallas, TX 75001" +291223,34in Ultrawide Monitor,1,379.99,11/12/19 11:32,"853 Church St, Dallas, TX 75001" +291224,Lightning Charging Cable,1,14.95,11/24/19 22:04,"28 7th St, Austin, TX 73301" +291224,USB-C Charging Cable,1,11.95,11/24/19 22:04,"28 7th St, Austin, TX 73301" +291225,AA Batteries (4-pack),1,3.84,11/13/19 16:00,"411 Washington St, New York City, NY 10001" +291226,34in Ultrawide Monitor,1,379.99,11/17/19 23:07,"177 Spruce St, Dallas, TX 75001" +291227,USB-C Charging Cable,1,11.95,11/16/19 17:42,"981 12th St, Boston, MA 02215" +291228,Wired Headphones,1,11.99,11/20/19 07:49,"933 Pine St, San Francisco, CA 94016" +291229,USB-C Charging Cable,1,11.95,11/10/19 11:20,"606 Sunset St, Austin, TX 73301" +291230,27in FHD Monitor,1,149.99,11/24/19 10:55,"152 13th St, Los Angeles, CA 90001" +291231,Flatscreen TV,1,300,11/17/19 20:22,"780 Adams St, Los Angeles, CA 90001" +291232,Vareebadd Phone,1,400,11/19/19 07:28,"150 Center St, New York City, NY 10001" +291233,Wired Headphones,1,11.99,11/28/19 17:31,"75 Highland St, Dallas, TX 75001" +291234,Lightning Charging Cable,1,14.95,11/01/19 13:42,"365 Jackson St, Atlanta, GA 30301" +291235,AA Batteries (4-pack),2,3.84,11/29/19 00:39,"239 Jefferson St, Seattle, WA 98101" +291236,USB-C Charging Cable,1,11.95,11/27/19 19:40,"77 Highland St, San Francisco, CA 94016" +291237,34in Ultrawide Monitor,1,379.99,11/16/19 03:56,"527 Forest St, New York City, NY 10001" +291238,AAA Batteries (4-pack),1,2.99,11/04/19 10:55,"622 12th St, Boston, MA 02215" +291239,USB-C Charging Cable,1,11.95,11/14/19 19:43,"653 Willow St, Boston, MA 02215" +291240,USB-C Charging Cable,1,11.95,11/30/19 22:09,"858 Highland St, Boston, MA 02215" +291241,USB-C Charging Cable,1,11.95,11/14/19 20:35,"646 Church St, San Francisco, CA 94016" +291242,Lightning Charging Cable,1,14.95,11/13/19 12:44,"43 Spruce St, Los Angeles, CA 90001" +291243,Apple Airpods Headphones,1,150,11/19/19 16:26,"8 South St, Dallas, TX 75001" +291244,27in FHD Monitor,1,149.99,11/27/19 08:44,"796 Dogwood St, Atlanta, GA 30301" +291245,27in FHD Monitor,1,149.99,11/07/19 11:37,"83 7th St, New York City, NY 10001" +291246,AAA Batteries (4-pack),1,2.99,11/11/19 16:08,"5 6th St, San Francisco, CA 94016" +291247,Macbook Pro Laptop,1,1700,11/15/19 13:29,"652 Chestnut St, Portland, OR 97035" +291248,Google Phone,1,600,11/25/19 14:47,"503 Maple St, Portland, OR 97035" +291249,Apple Airpods Headphones,1,150,11/03/19 19:44,"975 Center St, New York City, NY 10001" +291250,Bose SoundSport Headphones,1,99.99,11/18/19 17:57,"131 River St, Los Angeles, CA 90001" +291251,Wired Headphones,2,11.99,11/08/19 17:01,"852 Adams St, Dallas, TX 75001" +291252,Bose SoundSport Headphones,1,99.99,11/18/19 10:59,"136 Cherry St, Dallas, TX 75001" +291253,Google Phone,1,600,11/13/19 22:38,"533 Meadow St, Portland, OR 97035" +291253,USB-C Charging Cable,1,11.95,11/13/19 22:38,"533 Meadow St, Portland, OR 97035" +291254,Lightning Charging Cable,1,14.95,11/27/19 19:29,"283 Elm St, San Francisco, CA 94016" +291255,ThinkPad Laptop,1,999.99,11/24/19 23:42,"683 Jackson St, Boston, MA 02215" +291256,Bose SoundSport Headphones,1,99.99,11/13/19 20:31,"389 Madison St, New York City, NY 10001" +291257,Wired Headphones,1,11.99,11/06/19 18:43,"541 6th St, Portland, OR 97035" +291258,Apple Airpods Headphones,1,150,11/28/19 10:54,"27 Forest St, San Francisco, CA 94016" +291259,Apple Airpods Headphones,1,150,11/13/19 16:54,"651 6th St, Boston, MA 02215" +291260,Lightning Charging Cable,1,14.95,11/05/19 18:18,"391 Hickory St, San Francisco, CA 94016" +291261,Apple Airpods Headphones,1,150,11/05/19 10:50,"355 Cherry St, New York City, NY 10001" +291262,27in FHD Monitor,1,149.99,11/07/19 16:14,"740 Highland St, San Francisco, CA 94016" +291263,Apple Airpods Headphones,1,150,11/01/19 14:40,"303 Hill St, San Francisco, CA 94016" +291264,Google Phone,1,600,11/07/19 13:07,"249 14th St, New York City, NY 10001" +291265,Apple Airpods Headphones,1,150,11/26/19 07:06,"879 Meadow St, Portland, OR 97035" +291266,Vareebadd Phone,1,400,11/06/19 07:45,"377 Hill St, Portland, ME 04101" +291266,USB-C Charging Cable,1,11.95,11/06/19 07:45,"377 Hill St, Portland, ME 04101" +291267,ThinkPad Laptop,1,999.99,11/09/19 08:24,"534 West St, New York City, NY 10001" +291268,27in 4K Gaming Monitor,1,389.99,11/30/19 21:02,"387 South St, Atlanta, GA 30301" +291269,Lightning Charging Cable,1,14.95,11/15/19 11:12,"441 Madison St, Los Angeles, CA 90001" +291270,Wired Headphones,1,11.99,11/29/19 23:05,"914 West St, San Francisco, CA 94016" +291271,Flatscreen TV,1,300,11/15/19 18:05,"498 Cherry St, Portland, OR 97035" +291272,Apple Airpods Headphones,1,150,11/05/19 17:15,"942 Church St, New York City, NY 10001" +291273,AA Batteries (4-pack),1,3.84,11/13/19 19:02,"898 2nd St, Los Angeles, CA 90001" +291274,Wired Headphones,1,11.99,11/12/19 17:36,"719 11th St, New York City, NY 10001" +291275,Flatscreen TV,1,300,11/29/19 19:58,"96 Elm St, Atlanta, GA 30301" +291276,AAA Batteries (4-pack),1,2.99,12/01/19 00:13,"604 Cedar St, New York City, NY 10001" +291277,20in Monitor,1,109.99,11/29/19 05:09,"253 Church St, Portland, OR 97035" +291278,Lightning Charging Cable,1,14.95,11/20/19 14:33,"99 4th St, New York City, NY 10001" +291279,Bose SoundSport Headphones,1,99.99,11/07/19 20:44,"302 West St, Dallas, TX 75001" +291280,Wired Headphones,1,11.99,11/06/19 11:40,"413 North St, Austin, TX 73301" +291281,Lightning Charging Cable,1,14.95,11/24/19 22:53,"68 Pine St, San Francisco, CA 94016" +291282,Macbook Pro Laptop,1,1700,11/01/19 11:08,"429 Park St, San Francisco, CA 94016" +291283,Macbook Pro Laptop,1,1700,11/30/19 15:44,"877 Pine St, San Francisco, CA 94016" +291284,27in 4K Gaming Monitor,1,389.99,11/01/19 11:00,"314 Jackson St, Boston, MA 02215" +291285,20in Monitor,1,109.99,11/05/19 10:56,"997 Sunset St, Atlanta, GA 30301" +291286,Bose SoundSport Headphones,1,99.99,11/15/19 19:31,"915 Hickory St, San Francisco, CA 94016" +291287,AAA Batteries (4-pack),1,2.99,11/15/19 21:31,"997 14th St, New York City, NY 10001" +291288,Google Phone,1,600,11/29/19 12:19,"653 Sunset St, Seattle, WA 98101" +291289,Bose SoundSport Headphones,1,99.99,11/11/19 08:55,"396 7th St, Los Angeles, CA 90001" +291290,Wired Headphones,1,11.99,11/18/19 11:13,"953 River St, Los Angeles, CA 90001" +291291,Apple Airpods Headphones,1,150,11/01/19 18:13,"891 Center St, Dallas, TX 75001" +291292,Apple Airpods Headphones,1,150,11/01/19 13:16,"467 7th St, Portland, OR 97035" +291293,Apple Airpods Headphones,1,150,11/23/19 16:53,"855 Cedar St, Austin, TX 73301" +291294,34in Ultrawide Monitor,1,379.99,11/08/19 18:31,"982 Church St, San Francisco, CA 94016" +291295,Apple Airpods Headphones,1,150,11/19/19 17:29,"11 West St, New York City, NY 10001" +291296,iPhone,1,700,11/24/19 06:53,"227 4th St, San Francisco, CA 94016" +291297,20in Monitor,1,109.99,11/11/19 14:29,"257 Sunset St, Austin, TX 73301" +291298,27in FHD Monitor,1,149.99,11/20/19 20:33,"524 Washington St, Los Angeles, CA 90001" +291299,27in FHD Monitor,1,149.99,11/25/19 12:32,"50 10th St, Boston, MA 02215" +291300,USB-C Charging Cable,1,11.95,11/12/19 19:19,"5 5th St, Seattle, WA 98101" +291301,AAA Batteries (4-pack),1,2.99,11/18/19 08:59,"125 Madison St, Seattle, WA 98101" +291302,AAA Batteries (4-pack),1,2.99,11/24/19 13:12,"900 River St, San Francisco, CA 94016" +291303,AA Batteries (4-pack),2,3.84,11/14/19 13:36,"929 1st St, Portland, OR 97035" +291304,Wired Headphones,1,11.99,11/12/19 06:06,"901 South St, San Francisco, CA 94016" +291305,Macbook Pro Laptop,1,1700,11/14/19 12:58,"167 13th St, San Francisco, CA 94016" +291306,USB-C Charging Cable,2,11.95,11/20/19 12:39,"893 Meadow St, Atlanta, GA 30301" +291307,AA Batteries (4-pack),1,3.84,11/10/19 15:33,"261 Cedar St, Los Angeles, CA 90001" +291308,Google Phone,1,600,11/08/19 17:21,"512 Walnut St, Austin, TX 73301" +291309,Apple Airpods Headphones,1,150,11/15/19 18:40,"568 Park St, Los Angeles, CA 90001" +291310,Macbook Pro Laptop,1,1700,11/02/19 09:00,"652 4th St, San Francisco, CA 94016" +291311,Lightning Charging Cable,1,14.95,11/25/19 00:29,"420 Meadow St, San Francisco, CA 94016" +291312,USB-C Charging Cable,1,11.95,11/18/19 19:15,"893 14th St, San Francisco, CA 94016" +291313,34in Ultrawide Monitor,1,379.99,11/05/19 18:50,"534 River St, San Francisco, CA 94016" +291314,Lightning Charging Cable,1,14.95,11/30/19 19:22,"257 Main St, Boston, MA 02215" +291315,Lightning Charging Cable,1,14.95,11/22/19 19:32,"897 Church St, San Francisco, CA 94016" +291316,Wired Headphones,1,11.99,11/22/19 10:38,"472 Forest St, Austin, TX 73301" +291317,Wired Headphones,2,11.99,11/12/19 11:39,"144 13th St, San Francisco, CA 94016" +291318,AA Batteries (4-pack),1,3.84,11/06/19 07:57,"393 Elm St, Los Angeles, CA 90001" +291319,AAA Batteries (4-pack),1,2.99,11/17/19 20:58,"373 14th St, Los Angeles, CA 90001" +291320,Wired Headphones,1,11.99,11/19/19 09:50,"800 Madison St, Boston, MA 02215" +291321,Google Phone,1,600,11/08/19 21:15,"857 Park St, Seattle, WA 98101" +291322,Lightning Charging Cable,1,14.95,11/07/19 16:35,"963 7th St, New York City, NY 10001" +291323,USB-C Charging Cable,1,11.95,11/08/19 19:18,"828 Johnson St, New York City, NY 10001" +291324,Apple Airpods Headphones,1,150,11/26/19 18:44,"145 Dogwood St, Dallas, TX 75001" +291325,Wired Headphones,1,11.99,11/26/19 13:48,"596 Main St, San Francisco, CA 94016" +291326,Wired Headphones,1,11.99,11/24/19 15:12,"787 1st St, Los Angeles, CA 90001" +291327,ThinkPad Laptop,1,999.99,11/23/19 20:40,"494 Willow St, Boston, MA 02215" +291327,Bose SoundSport Headphones,1,99.99,11/23/19 20:40,"494 Willow St, Boston, MA 02215" +291328,Lightning Charging Cable,1,14.95,11/06/19 06:07,"187 Johnson St, San Francisco, CA 94016" +291329,AA Batteries (4-pack),1,3.84,11/09/19 21:07,"598 Lake St, San Francisco, CA 94016" +291330,Wired Headphones,1,11.99,11/01/19 06:01,"988 Lincoln St, San Francisco, CA 94016" +291331,Google Phone,1,600,11/19/19 09:21,"353 Pine St, Dallas, TX 75001" +291331,USB-C Charging Cable,1,11.95,11/19/19 09:21,"353 Pine St, Dallas, TX 75001" +291332,Lightning Charging Cable,1,14.95,11/19/19 05:09,"791 7th St, Dallas, TX 75001" +291333,Macbook Pro Laptop,1,1700,11/29/19 12:56,"837 5th St, Los Angeles, CA 90001" +291334,USB-C Charging Cable,1,11.95,11/08/19 23:57,"955 West St, San Francisco, CA 94016" +291335,ThinkPad Laptop,1,999.99,11/03/19 20:59,"24 Hill St, Portland, OR 97035" +291336,20in Monitor,1,109.99,11/14/19 21:50,"162 10th St, Los Angeles, CA 90001" +291337,Wired Headphones,1,11.99,11/30/19 11:51,"882 Elm St, Los Angeles, CA 90001" +291337,USB-C Charging Cable,1,11.95,11/30/19 11:51,"882 Elm St, Los Angeles, CA 90001" +291338,USB-C Charging Cable,2,11.95,11/08/19 11:31,"690 West St, Seattle, WA 98101" +291339,AAA Batteries (4-pack),5,2.99,11/12/19 00:43,"762 Dogwood St, Atlanta, GA 30301" +291340,AAA Batteries (4-pack),1,2.99,11/11/19 07:57,"312 Lake St, New York City, NY 10001" +291341,Wired Headphones,1,11.99,11/20/19 11:29,"717 Lakeview St, Los Angeles, CA 90001" +291342,USB-C Charging Cable,1,11.95,11/07/19 14:48,"799 Center St, Seattle, WA 98101" +291343,AA Batteries (4-pack),1,3.84,11/02/19 11:46,"952 North St, Los Angeles, CA 90001" +291344,USB-C Charging Cable,1,11.95,11/24/19 12:51,"382 Walnut St, San Francisco, CA 94016" +291345,Google Phone,1,600,11/12/19 18:44,"557 Church St, Los Angeles, CA 90001" +291345,Bose SoundSport Headphones,1,99.99,11/12/19 18:44,"557 Church St, Los Angeles, CA 90001" +291346,Flatscreen TV,1,300,11/13/19 15:10,"752 South St, San Francisco, CA 94016" +291347,27in FHD Monitor,1,149.99,11/28/19 17:42,"992 Church St, Dallas, TX 75001" +291348,Lightning Charging Cable,1,14.95,11/25/19 19:40,"554 13th St, Dallas, TX 75001" +291349,Wired Headphones,2,11.99,11/18/19 21:29,"308 Forest St, Atlanta, GA 30301" +291350,Lightning Charging Cable,1,14.95,11/07/19 12:57,"169 Main St, Austin, TX 73301" +291351,USB-C Charging Cable,2,11.95,11/09/19 07:41,"369 8th St, Portland, OR 97035" +291352,Bose SoundSport Headphones,1,99.99,11/07/19 11:48,"971 Chestnut St, Los Angeles, CA 90001" +291353,AAA Batteries (4-pack),1,2.99,11/09/19 15:20,"567 Lakeview St, Seattle, WA 98101" +291354,AA Batteries (4-pack),1,3.84,11/16/19 10:43,"699 Center St, Austin, TX 73301" +291355,27in FHD Monitor,1,149.99,11/30/19 14:30,"928 Cherry St, San Francisco, CA 94016" +291356,iPhone,1,700,11/02/19 00:06,"540 Main St, Boston, MA 02215" +291357,USB-C Charging Cable,1,11.95,11/12/19 06:39,"539 10th St, San Francisco, CA 94016" +291358,iPhone,1,700,11/06/19 13:03,"966 Ridge St, New York City, NY 10001" +291359,AAA Batteries (4-pack),2,2.99,11/24/19 17:27,"812 Hill St, Boston, MA 02215" +291360,AA Batteries (4-pack),4,3.84,11/24/19 20:47,"203 8th St, New York City, NY 10001" +291361,Bose SoundSport Headphones,1,99.99,11/25/19 14:10,"811 7th St, Boston, MA 02215" +291362,USB-C Charging Cable,1,11.95,11/27/19 12:52,"456 10th St, Austin, TX 73301" +291363,27in FHD Monitor,1,149.99,11/08/19 17:05,"64 Highland St, Atlanta, GA 30301" +291364,AAA Batteries (4-pack),2,2.99,11/19/19 20:58,"43 Jefferson St, Boston, MA 02215" +291365,Lightning Charging Cable,1,14.95,11/24/19 07:24,"490 Madison St, Los Angeles, CA 90001" +291366,Google Phone,1,600,11/28/19 13:35,"3 Sunset St, Austin, TX 73301" +291367,AAA Batteries (4-pack),1,2.99,11/02/19 13:26,"537 5th St, Los Angeles, CA 90001" +291368,USB-C Charging Cable,1,11.95,11/21/19 17:55,"249 8th St, New York City, NY 10001" +291369,Apple Airpods Headphones,1,150,11/12/19 13:11,"433 6th St, San Francisco, CA 94016" +291370,AAA Batteries (4-pack),3,2.99,11/22/19 13:21,"341 Cedar St, New York City, NY 10001" +291371,AA Batteries (4-pack),1,3.84,11/27/19 19:16,"25 Walnut St, Los Angeles, CA 90001" +291372,USB-C Charging Cable,1,11.95,11/06/19 00:27,"285 Washington St, Atlanta, GA 30301" +291373,Google Phone,1,600,11/01/19 21:41,"88 Ridge St, San Francisco, CA 94016" +291374,Bose SoundSport Headphones,1,99.99,11/17/19 17:29,"221 North St, Austin, TX 73301" +291375,27in FHD Monitor,1,149.99,11/03/19 12:40,"805 Spruce St, Seattle, WA 98101" +291376,ThinkPad Laptop,1,999.99,11/02/19 14:07,"185 14th St, Seattle, WA 98101" +291377,Lightning Charging Cable,1,14.95,11/08/19 22:24,"901 7th St, Seattle, WA 98101" +291378,iPhone,1,700,11/29/19 16:53,"140 1st St, New York City, NY 10001" +291379,USB-C Charging Cable,2,11.95,11/10/19 01:59,"447 2nd St, Seattle, WA 98101" +291380,Apple Airpods Headphones,1,150,11/24/19 10:43,"875 Spruce St, San Francisco, CA 94016" +291381,AA Batteries (4-pack),1,3.84,11/28/19 18:29,"756 Walnut St, New York City, NY 10001" +291382,AAA Batteries (4-pack),1,2.99,11/29/19 15:11,"213 Meadow St, Portland, OR 97035" +291383,Wired Headphones,1,11.99,11/16/19 12:13,"168 Walnut St, New York City, NY 10001" +291384,20in Monitor,1,109.99,11/15/19 13:50,"974 Jackson St, Boston, MA 02215" +291385,Wired Headphones,1,11.99,11/09/19 19:23,"381 Lakeview St, New York City, NY 10001" +291386,Apple Airpods Headphones,1,150,11/21/19 11:55,"152 Cedar St, Atlanta, GA 30301" +291387,27in FHD Monitor,1,149.99,11/14/19 13:41,"308 Dogwood St, New York City, NY 10001" +291388,Apple Airpods Headphones,1,150,11/10/19 13:57,"414 Adams St, New York City, NY 10001" +291389,Apple Airpods Headphones,1,150,11/14/19 18:23,"678 Dogwood St, Dallas, TX 75001" +291390,27in FHD Monitor,1,149.99,11/14/19 20:00,"861 Hill St, Dallas, TX 75001" +291391,Google Phone,1,600,11/14/19 10:58,"169 Church St, Seattle, WA 98101" +291391,Wired Headphones,1,11.99,11/14/19 10:58,"169 Church St, Seattle, WA 98101" +291392,USB-C Charging Cable,1,11.95,11/30/19 22:47,"331 8th St, New York City, NY 10001" +291393,Bose SoundSport Headphones,1,99.99,11/29/19 16:36,"386 13th St, Boston, MA 02215" +291394,27in FHD Monitor,1,149.99,11/09/19 20:20,"914 Wilson St, San Francisco, CA 94016" +291395,27in FHD Monitor,1,149.99,11/04/19 19:38,"197 Elm St, San Francisco, CA 94016" +291396,Bose SoundSport Headphones,1,99.99,11/16/19 13:37,"235 Spruce St, Seattle, WA 98101" +291397,Wired Headphones,1,11.99,11/07/19 10:59,"382 Cherry St, San Francisco, CA 94016" +291398,27in 4K Gaming Monitor,1,389.99,11/23/19 08:33,"236 Highland St, San Francisco, CA 94016" +291399,AA Batteries (4-pack),2,3.84,11/21/19 16:34,"629 Hill St, San Francisco, CA 94016" +291400,27in FHD Monitor,1,149.99,11/28/19 17:48,"66 6th St, Dallas, TX 75001" +291401,27in FHD Monitor,1,149.99,11/28/19 13:51,"547 Lincoln St, New York City, NY 10001" +291402,27in 4K Gaming Monitor,1,389.99,11/24/19 13:06,"569 Lakeview St, Dallas, TX 75001" +291403,Wired Headphones,2,11.99,11/24/19 15:05,"13 Forest St, Boston, MA 02215" +291404,USB-C Charging Cable,1,11.95,11/19/19 16:37,"593 2nd St, New York City, NY 10001" +291405,Apple Airpods Headphones,1,150,11/11/19 17:18,"900 7th St, Los Angeles, CA 90001" +291406,Macbook Pro Laptop,1,1700,11/30/19 19:17,"200 Jackson St, San Francisco, CA 94016" +291407,Lightning Charging Cable,1,14.95,11/21/19 07:15,"638 Chestnut St, New York City, NY 10001" +291407,Lightning Charging Cable,1,14.95,11/21/19 07:15,"638 Chestnut St, New York City, NY 10001" +291408,Wired Headphones,1,11.99,11/14/19 17:49,"753 Willow St, Los Angeles, CA 90001" +291409,Wired Headphones,1,11.99,11/08/19 11:39,"347 6th St, San Francisco, CA 94016" +291410,USB-C Charging Cable,1,11.95,11/16/19 15:30,"483 4th St, San Francisco, CA 94016" +291411,USB-C Charging Cable,1,11.95,11/18/19 07:57,"509 River St, Portland, OR 97035" +291412,USB-C Charging Cable,1,11.95,11/05/19 19:16,"443 Park St, San Francisco, CA 94016" +291413,Wired Headphones,1,11.99,11/06/19 20:34,"991 5th St, Los Angeles, CA 90001" +291414,Bose SoundSport Headphones,1,99.99,11/05/19 17:38,"954 Willow St, San Francisco, CA 94016" +291415,iPhone,1,700,11/13/19 19:16,"739 Adams St, San Francisco, CA 94016" +291416,LG Washing Machine,1,600.0,11/10/19 20:58,"866 Johnson St, Dallas, TX 75001" +291417,AA Batteries (4-pack),1,3.84,11/12/19 16:27,"304 13th St, San Francisco, CA 94016" +291418,34in Ultrawide Monitor,1,379.99,11/17/19 21:29,"773 Lakeview St, Los Angeles, CA 90001" +291419,Lightning Charging Cable,1,14.95,11/30/19 11:05,"809 Park St, Atlanta, GA 30301" +291419,20in Monitor,1,109.99,11/30/19 11:05,"809 Park St, Atlanta, GA 30301" +291420,27in FHD Monitor,1,149.99,11/26/19 15:29,"912 10th St, Dallas, TX 75001" +291421,Apple Airpods Headphones,1,150,11/15/19 21:38,"973 1st St, San Francisco, CA 94016" +291422,Flatscreen TV,1,300,11/18/19 21:25,"191 Forest St, Austin, TX 73301" +291423,Apple Airpods Headphones,1,150,11/15/19 01:23,"96 Elm St, Los Angeles, CA 90001" +291424,AA Batteries (4-pack),1,3.84,11/12/19 23:20,"393 Willow St, San Francisco, CA 94016" +291425,20in Monitor,1,109.99,11/21/19 15:28,"377 Elm St, San Francisco, CA 94016" +291426,Bose SoundSport Headphones,1,99.99,11/23/19 13:02,"518 Willow St, Seattle, WA 98101" +291427,USB-C Charging Cable,1,11.95,11/20/19 13:00,"606 13th St, San Francisco, CA 94016" +291428,AAA Batteries (4-pack),1,2.99,11/12/19 13:48,"921 7th St, Los Angeles, CA 90001" +291429,Lightning Charging Cable,1,14.95,11/11/19 14:50,"681 West St, Boston, MA 02215" +291430,iPhone,1,700,11/07/19 22:00,"8 Cherry St, Seattle, WA 98101" +291431,AAA Batteries (4-pack),1,2.99,11/23/19 09:25,"848 Walnut St, Boston, MA 02215" +291432,Lightning Charging Cable,2,14.95,11/21/19 08:27,"780 West St, New York City, NY 10001" +291433,AA Batteries (4-pack),1,3.84,11/28/19 10:37,"633 Ridge St, Austin, TX 73301" +291434,27in 4K Gaming Monitor,1,389.99,11/13/19 12:54,"751 South St, Los Angeles, CA 90001" +291435,27in 4K Gaming Monitor,1,389.99,11/20/19 13:41,"170 Johnson St, New York City, NY 10001" +291436,34in Ultrawide Monitor,1,379.99,11/06/19 20:07,"705 Cherry St, Boston, MA 02215" +291437,ThinkPad Laptop,1,999.99,11/12/19 11:25,"43 Cherry St, San Francisco, CA 94016" +291438,AAA Batteries (4-pack),1,2.99,11/30/19 15:02,"763 Hickory St, Boston, MA 02215" +291439,ThinkPad Laptop,1,999.99,11/22/19 19:58,"990 10th St, Atlanta, GA 30301" +291440,27in 4K Gaming Monitor,1,389.99,11/03/19 12:30,"932 North St, Dallas, TX 75001" +291441,34in Ultrawide Monitor,1,379.99,11/18/19 21:15,"139 Meadow St, San Francisco, CA 94016" +291442,Macbook Pro Laptop,1,1700,11/13/19 10:50,"225 Church St, New York City, NY 10001" +291443,Lightning Charging Cable,1,14.95,11/11/19 22:30,"588 Forest St, New York City, NY 10001" +291444,AAA Batteries (4-pack),1,2.99,11/06/19 21:31,"642 10th St, Seattle, WA 98101" +291445,Lightning Charging Cable,1,14.95,11/20/19 17:54,"356 West St, Los Angeles, CA 90001" +291446,Apple Airpods Headphones,1,150,11/06/19 15:39,"938 Wilson St, Austin, TX 73301" +291447,27in FHD Monitor,1,149.99,11/20/19 21:12,"109 9th St, San Francisco, CA 94016" +291448,Wired Headphones,1,11.99,11/10/19 11:25,"910 Adams St, Los Angeles, CA 90001" +291449,Bose SoundSport Headphones,1,99.99,11/10/19 12:51,"827 Cherry St, Boston, MA 02215" +291450,Apple Airpods Headphones,1,150,11/29/19 12:56,"981 South St, San Francisco, CA 94016" +291451,USB-C Charging Cable,1,11.95,11/29/19 18:30,"115 Highland St, San Francisco, CA 94016" +291452,20in Monitor,1,109.99,11/03/19 12:44,"896 Elm St, Los Angeles, CA 90001" +291453,27in 4K Gaming Monitor,1,389.99,11/22/19 17:00,"378 10th St, San Francisco, CA 94016" +291454,Wired Headphones,1,11.99,11/04/19 17:40,"802 Pine St, Los Angeles, CA 90001" +291455,20in Monitor,1,109.99,11/08/19 19:35,"346 Willow St, Seattle, WA 98101" +291456,Lightning Charging Cable,1,14.95,11/08/19 15:18,"958 5th St, Dallas, TX 75001" +291457,USB-C Charging Cable,1,11.95,11/04/19 17:33,"420 Lake St, Los Angeles, CA 90001" +291458,Macbook Pro Laptop,1,1700,11/21/19 20:45,"52 Spruce St, Los Angeles, CA 90001" +291459,USB-C Charging Cable,1,11.95,11/03/19 18:07,"824 River St, Dallas, TX 75001" +291459,34in Ultrawide Monitor,1,379.99,11/03/19 18:07,"824 River St, Dallas, TX 75001" +291460,LG Dryer,1,600.0,11/02/19 08:09,"820 Lakeview St, Seattle, WA 98101" +291461,Bose SoundSport Headphones,1,99.99,11/16/19 07:19,"860 9th St, Portland, OR 97035" +291462,Google Phone,1,600,11/11/19 08:33,"647 Lincoln St, Seattle, WA 98101" +291463,Bose SoundSport Headphones,1,99.99,11/18/19 14:31,"63 1st St, New York City, NY 10001" +291464,Google Phone,1,600,11/04/19 14:03,"352 14th St, San Francisco, CA 94016" +291464,USB-C Charging Cable,2,11.95,11/04/19 14:03,"352 14th St, San Francisco, CA 94016" +291465,USB-C Charging Cable,2,11.95,11/06/19 14:10,"210 Sunset St, New York City, NY 10001" +291466,LG Dryer,1,600.0,11/26/19 12:20,"945 Jefferson St, Dallas, TX 75001" +291467,Bose SoundSport Headphones,1,99.99,11/10/19 22:44,"407 Elm St, San Francisco, CA 94016" +291468,USB-C Charging Cable,1,11.95,11/25/19 11:20,"969 7th St, San Francisco, CA 94016" +291469,Lightning Charging Cable,1,14.95,11/24/19 11:22,"268 Jefferson St, San Francisco, CA 94016" +291470,iPhone,1,700,11/09/19 07:34,"964 Lake St, Boston, MA 02215" +291471,USB-C Charging Cable,1,11.95,11/28/19 13:18,"923 Jackson St, Dallas, TX 75001" +291472,Apple Airpods Headphones,1,150,11/15/19 18:50,"34 Adams St, San Francisco, CA 94016" +291473,Bose SoundSport Headphones,1,99.99,11/19/19 10:47,"727 8th St, Dallas, TX 75001" +291474,Macbook Pro Laptop,1,1700,11/21/19 11:42,"385 Meadow St, San Francisco, CA 94016" +291475,AAA Batteries (4-pack),2,2.99,11/18/19 21:35,"398 Lincoln St, Boston, MA 02215" +291476,Apple Airpods Headphones,1,150,11/01/19 08:49,"994 Cedar St, Seattle, WA 98101" +291477,27in 4K Gaming Monitor,1,389.99,11/11/19 14:45,"300 Madison St, Atlanta, GA 30301" +291478,34in Ultrawide Monitor,1,379.99,11/08/19 11:36,"629 Park St, San Francisco, CA 94016" +291479,Macbook Pro Laptop,1,1700,11/09/19 19:22,"275 Johnson St, Austin, TX 73301" +291480,Macbook Pro Laptop,1,1700,11/19/19 09:02,"993 12th St, San Francisco, CA 94016" +291481,Wired Headphones,2,11.99,11/23/19 20:38,"390 Pine St, New York City, NY 10001" +291482,Lightning Charging Cable,1,14.95,11/07/19 17:06,"350 Forest St, Austin, TX 73301" +291483,Bose SoundSport Headphones,1,99.99,11/12/19 00:56,"712 Center St, Boston, MA 02215" +291484,AAA Batteries (4-pack),1,2.99,11/29/19 23:46,"662 Meadow St, Dallas, TX 75001" +291485,Apple Airpods Headphones,1,150,11/23/19 17:21,"857 10th St, New York City, NY 10001" +291486,Lightning Charging Cable,1,14.95,11/06/19 22:15,"935 6th St, Los Angeles, CA 90001" +291487,Lightning Charging Cable,1,14.95,11/22/19 19:07,"672 Lincoln St, Atlanta, GA 30301" +291488,iPhone,1,700,11/08/19 16:20,"329 13th St, New York City, NY 10001" +291488,Lightning Charging Cable,1,14.95,11/08/19 16:20,"329 13th St, New York City, NY 10001" +291489,AAA Batteries (4-pack),1,2.99,11/20/19 21:57,"865 Maple St, Austin, TX 73301" +291490,AA Batteries (4-pack),1,3.84,11/15/19 20:24,"188 Sunset St, New York City, NY 10001" +291491,AA Batteries (4-pack),1,3.84,11/21/19 13:09,"313 Jefferson St, Dallas, TX 75001" +291492,20in Monitor,1,109.99,11/23/19 07:50,"800 South St, Dallas, TX 75001" +291493,AAA Batteries (4-pack),1,2.99,11/03/19 14:56,"688 Pine St, Austin, TX 73301" +291494,AA Batteries (4-pack),1,3.84,11/30/19 17:51,"138 Center St, Seattle, WA 98101" +291495,AA Batteries (4-pack),2,3.84,11/14/19 08:46,"668 Chestnut St, San Francisco, CA 94016" +291496,Apple Airpods Headphones,1,150,11/11/19 20:02,"449 Dogwood St, San Francisco, CA 94016" +291497,Apple Airpods Headphones,1,150,11/23/19 19:24,"978 Chestnut St, New York City, NY 10001" +291498,Lightning Charging Cable,1,14.95,11/27/19 15:16,"608 Chestnut St, Boston, MA 02215" +291499,USB-C Charging Cable,1,11.95,11/08/19 10:37,"22 North St, Atlanta, GA 30301" +291500,Wired Headphones,1,11.99,11/07/19 21:45,"555 Church St, New York City, NY 10001" +291501,Lightning Charging Cable,2,14.95,11/08/19 11:43,"890 13th St, Boston, MA 02215" +291502,Lightning Charging Cable,1,14.95,11/11/19 13:02,"119 Adams St, New York City, NY 10001" +291503,Apple Airpods Headphones,1,150,11/08/19 22:03,"875 Cherry St, San Francisco, CA 94016" +291504,34in Ultrawide Monitor,1,379.99,11/05/19 21:16,"208 Madison St, San Francisco, CA 94016" +291505,Wired Headphones,1,11.99,11/17/19 14:11,"378 Lakeview St, San Francisco, CA 94016" +291506,iPhone,1,700,11/11/19 09:27,"617 7th St, San Francisco, CA 94016" +291507,Macbook Pro Laptop,1,1700,11/28/19 18:47,"297 Jefferson St, San Francisco, CA 94016" +291508,27in FHD Monitor,1,149.99,11/11/19 18:00,"260 Walnut St, Boston, MA 02215" +291509,AAA Batteries (4-pack),1,2.99,11/03/19 11:02,"164 13th St, New York City, NY 10001" +291510,AA Batteries (4-pack),1,3.84,11/21/19 06:31,"215 12th St, San Francisco, CA 94016" +291511,Wired Headphones,1,11.99,11/24/19 19:41,"826 Spruce St, Boston, MA 02215" +291512,USB-C Charging Cable,1,11.95,11/09/19 15:08,"538 Chestnut St, Atlanta, GA 30301" +291513,AA Batteries (4-pack),2,3.84,11/16/19 00:43,"999 Sunset St, Dallas, TX 75001" +291514,Macbook Pro Laptop,1,1700,11/23/19 19:11,"691 Hill St, New York City, NY 10001" +291515,27in FHD Monitor,1,149.99,11/02/19 12:24,"288 Highland St, Atlanta, GA 30301" +291516,AAA Batteries (4-pack),5,2.99,11/18/19 21:19,"958 Walnut St, Seattle, WA 98101" +291517,Macbook Pro Laptop,1,1700,11/08/19 16:57,"711 Washington St, Austin, TX 73301" +291518,iPhone,1,700,11/14/19 14:22,"417 Cedar St, Portland, OR 97035" +291519,34in Ultrawide Monitor,1,379.99,11/20/19 15:09,"525 Dogwood St, Seattle, WA 98101" +291520,AA Batteries (4-pack),1,3.84,11/25/19 06:56,"881 Lakeview St, Los Angeles, CA 90001" +291521,AAA Batteries (4-pack),2,2.99,11/26/19 09:13,"112 Walnut St, Los Angeles, CA 90001" +291522,Lightning Charging Cable,1,14.95,11/16/19 10:47,"514 5th St, San Francisco, CA 94016" +291523,Flatscreen TV,1,300,11/27/19 08:50,"40 West St, San Francisco, CA 94016" +291524,Lightning Charging Cable,1,14.95,11/10/19 21:35,"417 14th St, Los Angeles, CA 90001" +291525,Apple Airpods Headphones,1,150,11/23/19 12:49,"612 Pine St, Los Angeles, CA 90001" +291526,USB-C Charging Cable,1,11.95,11/11/19 20:02,"160 Madison St, Los Angeles, CA 90001" +291527,AAA Batteries (4-pack),1,2.99,11/11/19 10:20,"414 Sunset St, San Francisco, CA 94016" +291528,34in Ultrawide Monitor,1,379.99,11/17/19 01:39,"485 10th St, Atlanta, GA 30301" +291529,Flatscreen TV,1,300,11/30/19 16:10,"233 Lakeview St, Los Angeles, CA 90001" +291530,Bose SoundSport Headphones,1,99.99,11/28/19 17:34,"927 7th St, Seattle, WA 98101" +291531,27in FHD Monitor,1,149.99,11/26/19 12:32,"144 13th St, San Francisco, CA 94016" +291532,AA Batteries (4-pack),1,3.84,11/24/19 13:24,"857 Dogwood St, New York City, NY 10001" +291533,27in FHD Monitor,1,149.99,11/05/19 10:56,"203 11th St, San Francisco, CA 94016" +291534,ThinkPad Laptop,1,999.99,11/25/19 22:45,"155 Highland St, Seattle, WA 98101" +291535,ThinkPad Laptop,1,999.99,11/08/19 16:09,"31 5th St, San Francisco, CA 94016" +291536,AAA Batteries (4-pack),1,2.99,11/20/19 11:25,"201 River St, San Francisco, CA 94016" +291537,Lightning Charging Cable,1,14.95,11/02/19 20:51,"316 Meadow St, Portland, OR 97035" +291538,AAA Batteries (4-pack),2,2.99,11/17/19 17:24,"626 Johnson St, Portland, OR 97035" +291539,20in Monitor,1,109.99,11/02/19 14:19,"406 12th St, San Francisco, CA 94016" +291540,Lightning Charging Cable,1,14.95,11/01/19 15:01,"249 14th St, New York City, NY 10001" +291541,Bose SoundSport Headphones,1,99.99,11/06/19 12:54,"99 1st St, San Francisco, CA 94016" +291542,USB-C Charging Cable,1,11.95,11/02/19 21:43,"363 Adams St, Portland, OR 97035" +291543,AAA Batteries (4-pack),1,2.99,11/07/19 10:30,"263 Johnson St, Boston, MA 02215" +291544,Lightning Charging Cable,1,14.95,11/30/19 07:26,"674 5th St, Seattle, WA 98101" +291545,Bose SoundSport Headphones,1,99.99,11/04/19 19:10,"941 1st St, Seattle, WA 98101" +291546,USB-C Charging Cable,2,11.95,11/12/19 13:53,"566 14th St, Portland, OR 97035" +291547,Macbook Pro Laptop,1,1700,11/25/19 23:24,"354 14th St, Seattle, WA 98101" +291548,Apple Airpods Headphones,1,150,11/24/19 20:44,"845 Chestnut St, Seattle, WA 98101" +291549,Lightning Charging Cable,1,14.95,11/13/19 20:44,"752 Johnson St, Portland, ME 04101" +291550,Bose SoundSport Headphones,1,99.99,11/20/19 21:23,"587 Hill St, San Francisco, CA 94016" +291551,Google Phone,1,600,11/02/19 21:27,"908 Ridge St, Boston, MA 02215" +291552,iPhone,1,700,11/09/19 01:20,"254 13th St, San Francisco, CA 94016" +291553,Bose SoundSport Headphones,1,99.99,11/08/19 11:59,"497 2nd St, San Francisco, CA 94016" +291554,Bose SoundSport Headphones,1,99.99,11/23/19 18:21,"564 Forest St, San Francisco, CA 94016" +291555,USB-C Charging Cable,1,11.95,11/06/19 23:12,"493 Cedar St, San Francisco, CA 94016" +291556,Apple Airpods Headphones,1,150,11/04/19 18:22,"886 Jefferson St, Dallas, TX 75001" +291557,34in Ultrawide Monitor,1,379.99,11/29/19 20:40,"81 Pine St, San Francisco, CA 94016" +291558,20in Monitor,1,109.99,11/06/19 19:02,"668 Hill St, Atlanta, GA 30301" +291559,Bose SoundSport Headphones,1,99.99,11/12/19 10:33,"960 Chestnut St, Boston, MA 02215" +291560,Wired Headphones,1,11.99,11/25/19 19:50,"791 7th St, Portland, ME 04101" +291561,AA Batteries (4-pack),1,3.84,11/05/19 13:46,"125 2nd St, San Francisco, CA 94016" +291562,USB-C Charging Cable,1,11.95,11/22/19 15:34,"56 Jackson St, San Francisco, CA 94016" +291563,Google Phone,1,600,11/10/19 15:32,"194 Cedar St, Los Angeles, CA 90001" +291564,Google Phone,1,600,11/05/19 13:12,"35 Ridge St, Boston, MA 02215" +291565,Wired Headphones,1,11.99,11/09/19 10:48,"180 12th St, Dallas, TX 75001" +291566,AA Batteries (4-pack),1,3.84,11/01/19 19:30,"465 Lakeview St, San Francisco, CA 94016" +291567,Lightning Charging Cable,1,14.95,11/26/19 16:12,"599 Ridge St, New York City, NY 10001" +291568,Wired Headphones,1,11.99,11/18/19 02:26,"250 Pine St, New York City, NY 10001" +291569,27in FHD Monitor,1,149.99,11/07/19 14:21,"70 Dogwood St, San Francisco, CA 94016" +291570,Apple Airpods Headphones,1,150,11/15/19 02:10,"32 South St, Los Angeles, CA 90001" +291571,USB-C Charging Cable,2,11.95,11/13/19 23:12,"462 Johnson St, New York City, NY 10001" +291572,Wired Headphones,1,11.99,11/18/19 21:51,"582 Lake St, San Francisco, CA 94016" +291573,Wired Headphones,1,11.99,11/05/19 15:22,"486 Adams St, New York City, NY 10001" +291574,Flatscreen TV,1,300,11/03/19 20:17,"655 Adams St, Boston, MA 02215" +291575,USB-C Charging Cable,1,11.95,11/16/19 19:26,"771 Hickory St, Austin, TX 73301" +291576,AAA Batteries (4-pack),1,2.99,11/07/19 21:56,"624 Lake St, New York City, NY 10001" +291577,Wired Headphones,1,11.99,11/01/19 21:18,"183 Dogwood St, San Francisco, CA 94016" +291578,Apple Airpods Headphones,1,150,11/16/19 22:04,"507 Highland St, Atlanta, GA 30301" +291579,Lightning Charging Cable,1,14.95,11/04/19 16:38,"721 1st St, Seattle, WA 98101" +291580,USB-C Charging Cable,1,11.95,11/17/19 07:08,"829 12th St, Los Angeles, CA 90001" +291581,Apple Airpods Headphones,1,150,11/25/19 12:48,"842 Forest St, Atlanta, GA 30301" +291582,AA Batteries (4-pack),1,3.84,11/30/19 10:35,"961 Cedar St, San Francisco, CA 94016" +291583,Bose SoundSport Headphones,1,99.99,11/05/19 15:15,"861 11th St, Atlanta, GA 30301" +291584,27in 4K Gaming Monitor,1,389.99,11/10/19 15:46,"638 Main St, Los Angeles, CA 90001" +291585,USB-C Charging Cable,1,11.95,11/22/19 13:43,"129 Spruce St, Austin, TX 73301" +291586,Wired Headphones,1,11.99,11/14/19 20:57,"825 Chestnut St, Boston, MA 02215" +291587,Wired Headphones,1,11.99,11/12/19 05:54,"200 Elm St, San Francisco, CA 94016" +291588,27in FHD Monitor,1,149.99,11/29/19 15:57,"653 Pine St, Seattle, WA 98101" +291589,Flatscreen TV,1,300,11/09/19 12:33,"240 6th St, Dallas, TX 75001" +291590,Macbook Pro Laptop,1,1700,11/04/19 19:14,"417 Hickory St, Austin, TX 73301" +291591,Wired Headphones,1,11.99,11/27/19 22:35,"927 Maple St, Los Angeles, CA 90001" +291592,AA Batteries (4-pack),1,3.84,11/02/19 22:17,"492 Hill St, New York City, NY 10001" +291593,Macbook Pro Laptop,1,1700,11/23/19 21:03,"675 10th St, San Francisco, CA 94016" +291594,Wired Headphones,1,11.99,11/23/19 16:56,"959 Lake St, New York City, NY 10001" +291595,27in 4K Gaming Monitor,1,389.99,11/26/19 19:25,"34 Washington St, San Francisco, CA 94016" +291596,Bose SoundSport Headphones,1,99.99,11/27/19 12:32,"774 Jackson St, Dallas, TX 75001" +291597,Macbook Pro Laptop,1,1700,11/07/19 18:43,"538 Highland St, Dallas, TX 75001" +291598,AA Batteries (4-pack),1,3.84,11/01/19 17:05,"450 Hickory St, San Francisco, CA 94016" +291599,34in Ultrawide Monitor,1,379.99,11/08/19 22:38,"964 Dogwood St, San Francisco, CA 94016" +291600,LG Dryer,1,600.0,11/05/19 23:08,"92 Hill St, New York City, NY 10001" +291601,Google Phone,1,600,11/11/19 21:32,"639 6th St, San Francisco, CA 94016" +291601,USB-C Charging Cable,1,11.95,11/11/19 21:32,"639 6th St, San Francisco, CA 94016" +291601,Bose SoundSport Headphones,1,99.99,11/11/19 21:32,"639 6th St, San Francisco, CA 94016" +291602,iPhone,1,700,11/27/19 22:11,"213 Johnson St, Seattle, WA 98101" +291603,Apple Airpods Headphones,1,150,11/20/19 22:18,"543 Chestnut St, New York City, NY 10001" +291604,27in FHD Monitor,1,149.99,11/29/19 09:34,"430 Church St, Austin, TX 73301" +291605,Google Phone,1,600,11/17/19 09:22,"724 Main St, Atlanta, GA 30301" +291605,USB-C Charging Cable,1,11.95,11/17/19 09:22,"724 Main St, Atlanta, GA 30301" +291606,USB-C Charging Cable,1,11.95,11/27/19 19:10,"431 Hill St, Dallas, TX 75001" +291607,AA Batteries (4-pack),1,3.84,11/16/19 17:48,"796 Spruce St, New York City, NY 10001" +291608,20in Monitor,1,109.99,11/30/19 16:51,"321 6th St, San Francisco, CA 94016" +291609,34in Ultrawide Monitor,1,379.99,11/02/19 11:23,"6 1st St, Los Angeles, CA 90001" +291610,27in FHD Monitor,1,149.99,11/01/19 16:23,"251 Lakeview St, Seattle, WA 98101" +291611,USB-C Charging Cable,1,11.95,11/16/19 21:33,"602 5th St, Atlanta, GA 30301" +291612,Lightning Charging Cable,1,14.95,11/27/19 12:00,"546 Adams St, Boston, MA 02215" +291613,AA Batteries (4-pack),1,3.84,11/16/19 21:12,"962 Wilson St, Atlanta, GA 30301" +291614,Lightning Charging Cable,1,14.95,11/08/19 11:40,"703 Willow St, Boston, MA 02215" +291615,AA Batteries (4-pack),2,3.84,11/27/19 10:55,"680 Madison St, Seattle, WA 98101" +291616,AAA Batteries (4-pack),1,2.99,11/26/19 15:46,"830 River St, San Francisco, CA 94016" +291617,Apple Airpods Headphones,1,150,11/20/19 12:31,"804 Lakeview St, San Francisco, CA 94016" +291618,AAA Batteries (4-pack),1,2.99,11/29/19 15:15,"286 Jackson St, Los Angeles, CA 90001" +291619,Flatscreen TV,1,300,11/11/19 18:00,"395 Dogwood St, New York City, NY 10001" +291620,27in 4K Gaming Monitor,1,389.99,11/26/19 22:33,"767 Meadow St, Boston, MA 02215" +291621,Apple Airpods Headphones,1,150,11/19/19 11:02,"509 7th St, Los Angeles, CA 90001" +291622,iPhone,1,700,11/27/19 10:43,"969 2nd St, New York City, NY 10001" +291623,iPhone,1,700,11/26/19 11:13,"169 Lakeview St, San Francisco, CA 94016" +291624,Apple Airpods Headphones,1,150,11/01/19 19:20,"655 Ridge St, New York City, NY 10001" +291625,Bose SoundSport Headphones,1,99.99,11/07/19 19:43,"95 Cedar St, San Francisco, CA 94016" +291625,AAA Batteries (4-pack),2,2.99,11/07/19 19:43,"95 Cedar St, San Francisco, CA 94016" +291626,27in 4K Gaming Monitor,1,389.99,11/21/19 12:20,"782 Lake St, Los Angeles, CA 90001" +291627,Bose SoundSport Headphones,1,99.99,11/02/19 20:23,"333 North St, Seattle, WA 98101" +291628,AAA Batteries (4-pack),2,2.99,11/26/19 10:33,"597 1st St, Atlanta, GA 30301" +291629,Lightning Charging Cable,1,14.95,11/19/19 06:15,"930 Sunset St, Atlanta, GA 30301" +291630,Bose SoundSport Headphones,1,99.99,11/08/19 15:51,"82 Jefferson St, Portland, OR 97035" +291631,iPhone,1,700,11/10/19 15:13,"968 Forest St, Portland, OR 97035" +291632,AAA Batteries (4-pack),2,2.99,11/22/19 09:06,"418 7th St, Atlanta, GA 30301" +291633,AA Batteries (4-pack),1,3.84,11/05/19 10:20,"766 5th St, Seattle, WA 98101" +291634,Apple Airpods Headphones,1,150,11/15/19 15:19,"418 Center St, Austin, TX 73301" +291635,20in Monitor,1,109.99,11/17/19 13:32,"830 8th St, Los Angeles, CA 90001" +291636,ThinkPad Laptop,1,999.99,11/10/19 03:43,"640 Center St, New York City, NY 10001" +291637,USB-C Charging Cable,1,11.95,11/13/19 14:53,"821 6th St, Austin, TX 73301" +291638,27in 4K Gaming Monitor,1,389.99,11/24/19 20:30,"460 South St, Seattle, WA 98101" +291639,AAA Batteries (4-pack),2,2.99,11/08/19 01:02,"116 Spruce St, Los Angeles, CA 90001" +291640,Bose SoundSport Headphones,1,99.99,11/21/19 22:22,"184 Johnson St, San Francisco, CA 94016" +291641,Vareebadd Phone,1,400,11/07/19 18:32,"922 River St, Los Angeles, CA 90001" +291642,ThinkPad Laptop,1,999.99,11/09/19 11:07,"217 10th St, Seattle, WA 98101" +291643,Wired Headphones,1,11.99,11/23/19 15:00,"732 8th St, New York City, NY 10001" +291644,Wired Headphones,1,11.99,11/04/19 21:54,"194 1st St, Portland, OR 97035" +291645,Lightning Charging Cable,1,14.95,11/26/19 15:03,"411 10th St, New York City, NY 10001" +291646,Wired Headphones,1,11.99,11/22/19 20:04,"767 Cherry St, San Francisco, CA 94016" +291647,AA Batteries (4-pack),1,3.84,11/13/19 14:33,"569 Church St, San Francisco, CA 94016" +291648,Wired Headphones,1,11.99,11/19/19 08:32,"651 6th St, Los Angeles, CA 90001" +291649,AA Batteries (4-pack),2,3.84,11/08/19 10:39,"250 South St, Austin, TX 73301" +291650,AA Batteries (4-pack),1,3.84,11/11/19 18:11,"852 8th St, Los Angeles, CA 90001" +291651,AAA Batteries (4-pack),1,2.99,11/22/19 06:56,"605 Washington St, San Francisco, CA 94016" +291652,AAA Batteries (4-pack),1,2.99,11/14/19 08:43,"620 Johnson St, New York City, NY 10001" +291653,AAA Batteries (4-pack),4,2.99,11/11/19 17:24,"581 Jefferson St, Boston, MA 02215" +291654,Wired Headphones,1,11.99,11/20/19 12:34,"852 Lincoln St, San Francisco, CA 94016" +291655,AAA Batteries (4-pack),2,2.99,11/02/19 20:33,"187 West St, New York City, NY 10001" +291656,Lightning Charging Cable,1,14.95,11/17/19 17:45,"748 Chestnut St, San Francisco, CA 94016" +291657,Wired Headphones,1,11.99,11/18/19 17:52,"776 Jefferson St, New York City, NY 10001" +291658,AAA Batteries (4-pack),1,2.99,11/22/19 09:26,"270 Ridge St, Austin, TX 73301" +291659,Wired Headphones,1,11.99,11/30/19 18:25,"664 Hickory St, San Francisco, CA 94016" +291660,27in FHD Monitor,1,149.99,11/19/19 14:14,"986 Sunset St, Los Angeles, CA 90001" +291661,34in Ultrawide Monitor,1,379.99,11/18/19 16:23,"439 7th St, Los Angeles, CA 90001" +291662,Apple Airpods Headphones,1,150,11/15/19 06:25,"452 7th St, Los Angeles, CA 90001" +291663,Apple Airpods Headphones,1,150,11/09/19 15:42,"769 6th St, San Francisco, CA 94016" +291664,AA Batteries (4-pack),1,3.84,11/25/19 08:47,"762 Highland St, Seattle, WA 98101" +291665,20in Monitor,1,109.99,11/27/19 15:16,"282 Meadow St, Portland, ME 04101" +291666,Flatscreen TV,1,300,11/07/19 08:11,"280 Adams St, San Francisco, CA 94016" +291667,AAA Batteries (4-pack),1,2.99,11/15/19 12:45,"416 Forest St, Los Angeles, CA 90001" +291668,ThinkPad Laptop,1,999.99,11/14/19 09:18,"275 1st St, Los Angeles, CA 90001" +291669,USB-C Charging Cable,1,11.95,11/18/19 16:52,"316 Dogwood St, Los Angeles, CA 90001" +291670,AA Batteries (4-pack),2,3.84,11/11/19 17:27,"607 12th St, San Francisco, CA 94016" +291671,Wired Headphones,1,11.99,11/01/19 16:57,"259 13th St, Atlanta, GA 30301" +291672,Lightning Charging Cable,1,14.95,11/23/19 16:19,"41 13th St, Dallas, TX 75001" +291673,USB-C Charging Cable,1,11.95,11/14/19 01:21,"299 Pine St, New York City, NY 10001" +291674,iPhone,1,700,11/28/19 22:45,"469 Lincoln St, Boston, MA 02215" +291675,AA Batteries (4-pack),1,3.84,11/14/19 14:12,"830 Highland St, San Francisco, CA 94016" +291676,27in 4K Gaming Monitor,1,389.99,11/17/19 21:14,"893 Highland St, Dallas, TX 75001" +291677,AA Batteries (4-pack),2,3.84,11/11/19 18:48,"878 Sunset St, Boston, MA 02215" +291678,27in 4K Gaming Monitor,1,389.99,11/22/19 20:23,"691 Hill St, Boston, MA 02215" +291679,USB-C Charging Cable,1,11.95,11/08/19 20:06,"715 Highland St, Dallas, TX 75001" +291680,20in Monitor,1,109.99,11/08/19 15:47,"317 Cherry St, Los Angeles, CA 90001" +291681,AAA Batteries (4-pack),2,2.99,11/20/19 11:29,"368 9th St, Atlanta, GA 30301" +291682,AA Batteries (4-pack),1,3.84,11/26/19 20:18,"781 11th St, Seattle, WA 98101" +291683,Apple Airpods Headphones,1,150,11/23/19 21:43,"533 Hill St, Boston, MA 02215" +291684,27in FHD Monitor,1,149.99,11/09/19 23:08,"371 9th St, New York City, NY 10001" +291685,AAA Batteries (4-pack),1,2.99,11/22/19 13:56,"655 Madison St, Seattle, WA 98101" +291686,Lightning Charging Cable,1,14.95,11/17/19 18:50,"529 Ridge St, San Francisco, CA 94016" +291687,AAA Batteries (4-pack),4,2.99,11/26/19 20:24,"422 Cherry St, Boston, MA 02215" +291688,Bose SoundSport Headphones,1,99.99,11/14/19 18:49,"831 Jefferson St, Los Angeles, CA 90001" +291689,Apple Airpods Headphones,1,150,11/25/19 12:25,"582 11th St, San Francisco, CA 94016" +291690,AAA Batteries (4-pack),1,2.99,11/19/19 22:33,"789 Johnson St, Seattle, WA 98101" +291691,AAA Batteries (4-pack),1,2.99,11/10/19 12:16,"782 Willow St, Portland, OR 97035" +291692,USB-C Charging Cable,1,11.95,11/16/19 16:51,"965 Ridge St, Austin, TX 73301" +291693,iPhone,1,700,11/05/19 23:07,"667 11th St, San Francisco, CA 94016" +291694,Vareebadd Phone,1,400,11/12/19 12:33,"387 Madison St, Los Angeles, CA 90001" +291695,AAA Batteries (4-pack),1,2.99,11/18/19 10:07,"159 North St, San Francisco, CA 94016" +291696,USB-C Charging Cable,1,11.95,11/15/19 08:16,"72 6th St, Portland, OR 97035" +291697,Vareebadd Phone,1,400,11/13/19 22:41,"945 6th St, Dallas, TX 75001" +291698,Google Phone,1,600,11/10/19 09:01,"3 Meadow St, New York City, NY 10001" +291699,Wired Headphones,1,11.99,11/25/19 14:51,"594 9th St, San Francisco, CA 94016" +291700,AA Batteries (4-pack),1,3.84,11/03/19 17:40,"751 Jackson St, Los Angeles, CA 90001" +291701,Apple Airpods Headphones,1,150,11/05/19 20:33,"83 Elm St, Los Angeles, CA 90001" +291702,27in 4K Gaming Monitor,1,389.99,11/17/19 20:08,"196 North St, Los Angeles, CA 90001" +291703,Bose SoundSport Headphones,1,99.99,11/24/19 08:11,"67 11th St, New York City, NY 10001" +291704,Apple Airpods Headphones,1,150,11/09/19 17:00,"108 Washington St, New York City, NY 10001" +291705,AA Batteries (4-pack),1,3.84,11/23/19 04:15,"422 Lakeview St, San Francisco, CA 94016" +291706,AA Batteries (4-pack),1,3.84,11/13/19 18:23,"540 Hickory St, New York City, NY 10001" +291706,Apple Airpods Headphones,1,150,11/13/19 18:23,"540 Hickory St, New York City, NY 10001" +291707,AA Batteries (4-pack),1,3.84,11/28/19 21:46,"529 2nd St, Atlanta, GA 30301" +291708,Bose SoundSport Headphones,1,99.99,11/26/19 07:43,"559 Sunset St, Seattle, WA 98101" +291709,AA Batteries (4-pack),1,3.84,11/06/19 22:14,"899 Lincoln St, Seattle, WA 98101" +291710,Wired Headphones,1,11.99,11/08/19 02:15,"733 6th St, Seattle, WA 98101" +291711,Bose SoundSport Headphones,1,99.99,11/26/19 10:15,"388 Cedar St, Seattle, WA 98101" +291712,AA Batteries (4-pack),1,3.84,11/18/19 04:51,"783 North St, Boston, MA 02215" +291713,Vareebadd Phone,1,400,11/12/19 14:53,"710 Jackson St, New York City, NY 10001" +291713,Wired Headphones,1,11.99,11/12/19 14:53,"710 Jackson St, New York City, NY 10001" +291714,34in Ultrawide Monitor,1,379.99,11/18/19 16:52,"675 Jefferson St, Portland, OR 97035" +291715,Bose SoundSport Headphones,1,99.99,11/13/19 06:58,"590 Center St, New York City, NY 10001" +291716,AAA Batteries (4-pack),1,2.99,11/08/19 20:41,"775 9th St, Seattle, WA 98101" +291717,20in Monitor,1,109.99,11/01/19 10:34,"957 Hickory St, San Francisco, CA 94016" +291718,AAA Batteries (4-pack),1,2.99,11/25/19 05:59,"882 Wilson St, Atlanta, GA 30301" +291719,27in 4K Gaming Monitor,1,389.99,11/22/19 09:31,"300 10th St, New York City, NY 10001" +291720,Lightning Charging Cable,1,14.95,11/26/19 21:49,"313 Ridge St, San Francisco, CA 94016" +291721,Wired Headphones,1,11.99,11/19/19 20:24,"803 Jackson St, Boston, MA 02215" +291722,Lightning Charging Cable,1,14.95,11/01/19 14:17,"228 Forest St, Los Angeles, CA 90001" +291723,USB-C Charging Cable,1,11.95,11/02/19 13:09,"268 Spruce St, Los Angeles, CA 90001" +291724,27in FHD Monitor,1,149.99,11/05/19 16:32,"735 Church St, Seattle, WA 98101" +291725,Vareebadd Phone,1,400,11/22/19 00:54,"920 Adams St, San Francisco, CA 94016" +291726,USB-C Charging Cable,1,11.95,11/24/19 15:24,"920 11th St, Boston, MA 02215" +291727,AA Batteries (4-pack),1,3.84,11/03/19 19:08,"489 4th St, New York City, NY 10001" +291727,Apple Airpods Headphones,1,150,11/03/19 19:08,"489 4th St, New York City, NY 10001" +291728,Bose SoundSport Headphones,1,99.99,11/15/19 23:26,"848 Lake St, Portland, OR 97035" +291729,Flatscreen TV,1,300,11/15/19 23:26,"19 Spruce St, San Francisco, CA 94016" +291730,USB-C Charging Cable,1,11.95,11/07/19 16:14,"645 Chestnut St, Seattle, WA 98101" +291731,USB-C Charging Cable,1,11.95,11/18/19 14:48,"825 Adams St, Los Angeles, CA 90001" +291732,Flatscreen TV,1,300,11/09/19 02:04,"351 Hill St, San Francisco, CA 94016" +291733,Wired Headphones,2,11.99,11/16/19 03:47,"397 Center St, Portland, OR 97035" +291734,USB-C Charging Cable,1,11.95,11/22/19 12:31,"717 Lakeview St, Portland, OR 97035" +291735,34in Ultrawide Monitor,1,379.99,11/27/19 22:25,"42 Meadow St, San Francisco, CA 94016" +291736,Bose SoundSport Headphones,1,99.99,11/15/19 12:44,"566 Walnut St, San Francisco, CA 94016" +291737,Bose SoundSport Headphones,1,99.99,11/19/19 20:09,"90 11th St, San Francisco, CA 94016" +291738,Google Phone,1,600,11/30/19 16:20,"586 14th St, San Francisco, CA 94016" +291738,USB-C Charging Cable,1,11.95,11/30/19 16:20,"586 14th St, San Francisco, CA 94016" +291739,AA Batteries (4-pack),1,3.84,11/02/19 10:50,"360 Church St, Atlanta, GA 30301" +291740,Apple Airpods Headphones,1,150,11/07/19 08:53,"164 11th St, New York City, NY 10001" +291741,Bose SoundSport Headphones,1,99.99,11/10/19 13:45,"972 Hickory St, New York City, NY 10001" +291742,Apple Airpods Headphones,1,150,11/22/19 19:04,"362 Cedar St, Boston, MA 02215" +291743,iPhone,1,700,11/30/19 18:18,"618 Ridge St, Atlanta, GA 30301" +291744,34in Ultrawide Monitor,1,379.99,11/08/19 12:52,"301 Lincoln St, Dallas, TX 75001" +291745,Bose SoundSport Headphones,1,99.99,11/14/19 13:05,"627 Johnson St, Atlanta, GA 30301" +291746,AAA Batteries (4-pack),3,2.99,11/27/19 23:00,"610 Jackson St, Portland, OR 97035" +291747,Bose SoundSport Headphones,1,99.99,11/26/19 10:32,"176 West St, Atlanta, GA 30301" +291748,AA Batteries (4-pack),1,3.84,11/04/19 22:47,"725 Washington St, Dallas, TX 75001" +291749,AA Batteries (4-pack),1,3.84,11/24/19 16:20,"692 Elm St, Dallas, TX 75001" +291750,iPhone,1,700,11/03/19 20:09,"25 Church St, Austin, TX 73301" +291751,20in Monitor,1,109.99,11/16/19 13:26,"403 Hickory St, Portland, ME 04101" +291752,USB-C Charging Cable,1,11.95,11/06/19 12:02,"980 Hill St, Portland, ME 04101" +291753,27in FHD Monitor,1,149.99,11/08/19 12:44,"13 8th St, Los Angeles, CA 90001" +291754,Google Phone,1,600,11/23/19 17:51,"852 Cherry St, Dallas, TX 75001" +291754,USB-C Charging Cable,1,11.95,11/23/19 17:51,"852 Cherry St, Dallas, TX 75001" +291755,Lightning Charging Cable,1,14.95,11/17/19 12:26,"755 Adams St, Austin, TX 73301" +291756,USB-C Charging Cable,1,11.95,11/15/19 12:14,"613 River St, Portland, OR 97035" +291757,Flatscreen TV,1,300,11/30/19 14:21,"808 Maple St, Austin, TX 73301" +291758,USB-C Charging Cable,1,11.95,11/14/19 19:21,"40 Sunset St, Boston, MA 02215" +291759,AAA Batteries (4-pack),1,2.99,11/19/19 12:40,"700 Pine St, Los Angeles, CA 90001" +291760,Lightning Charging Cable,1,14.95,11/08/19 18:18,"909 11th St, San Francisco, CA 94016" +291761,Wired Headphones,1,11.99,11/16/19 21:25,"361 Center St, Boston, MA 02215" +291762,Apple Airpods Headphones,1,150,11/28/19 14:01,"928 Ridge St, Portland, OR 97035" +291763,AA Batteries (4-pack),1,3.84,11/11/19 03:27,"510 14th St, San Francisco, CA 94016" +291764,Apple Airpods Headphones,1,150,11/19/19 23:19,"398 River St, San Francisco, CA 94016" +291765,Macbook Pro Laptop,1,1700,11/01/19 07:46,"249 Willow St, San Francisco, CA 94016" +291766,27in FHD Monitor,1,149.99,11/27/19 14:23,"421 10th St, New York City, NY 10001" +291767,20in Monitor,1,109.99,11/21/19 11:11,"877 2nd St, New York City, NY 10001" +291768,Wired Headphones,1,11.99,11/30/19 19:23,"747 Forest St, Seattle, WA 98101" +291769,Wired Headphones,1,11.99,11/05/19 17:34,"359 River St, San Francisco, CA 94016" +291770,27in FHD Monitor,1,149.99,11/01/19 12:33,"783 Madison St, San Francisco, CA 94016" +291771,Wired Headphones,1,11.99,11/12/19 22:28,"795 Wilson St, San Francisco, CA 94016" +291772,Wired Headphones,1,11.99,11/18/19 12:20,"778 Elm St, San Francisco, CA 94016" +291773,20in Monitor,1,109.99,11/26/19 17:51,"489 Highland St, Boston, MA 02215" +291774,27in 4K Gaming Monitor,1,389.99,11/09/19 16:54,"104 Church St, New York City, NY 10001" +291775,Apple Airpods Headphones,1,150,11/10/19 15:06,"441 Willow St, Los Angeles, CA 90001" +291776,AA Batteries (4-pack),1,3.84,11/22/19 14:09,"176 Meadow St, Los Angeles, CA 90001" +291777,USB-C Charging Cable,1,11.95,11/17/19 16:58,"384 Pine St, Austin, TX 73301" +291778,27in 4K Gaming Monitor,1,389.99,11/29/19 07:09,"723 1st St, Portland, ME 04101" +291779,Bose SoundSport Headphones,1,99.99,11/15/19 10:18,"711 Lake St, Portland, OR 97035" +291780,iPhone,1,700,11/11/19 00:26,"406 Pine St, Los Angeles, CA 90001" +291781,Lightning Charging Cable,1,14.95,11/11/19 09:59,"726 Forest St, San Francisco, CA 94016" +291782,USB-C Charging Cable,1,11.95,11/16/19 20:40,"395 North St, Boston, MA 02215" +291783,34in Ultrawide Monitor,1,379.99,11/29/19 00:02,"795 Park St, Boston, MA 02215" +291784,Wired Headphones,1,11.99,11/19/19 11:47,"77 Chestnut St, Seattle, WA 98101" +291785,AA Batteries (4-pack),1,3.84,11/03/19 06:27,"954 Jackson St, Portland, OR 97035" +291786,27in 4K Gaming Monitor,1,389.99,11/11/19 11:27,"831 Center St, San Francisco, CA 94016" +291787,Bose SoundSport Headphones,1,99.99,11/14/19 13:22,"530 Main St, Seattle, WA 98101" +291788,Bose SoundSport Headphones,1,99.99,11/28/19 20:43,"550 Adams St, San Francisco, CA 94016" +291789,USB-C Charging Cable,1,11.95,11/11/19 17:10,"106 Johnson St, Los Angeles, CA 90001" +291790,AA Batteries (4-pack),1,3.84,11/20/19 18:08,"103 Lincoln St, Austin, TX 73301" +291791,Lightning Charging Cable,1,14.95,11/16/19 12:49,"936 Walnut St, Atlanta, GA 30301" +291792,AA Batteries (4-pack),3,3.84,11/21/19 22:34,"526 North St, San Francisco, CA 94016" +291793,AA Batteries (4-pack),1,3.84,11/28/19 15:36,"140 13th St, San Francisco, CA 94016" +291794,Macbook Pro Laptop,1,1700,11/21/19 21:18,"76 6th St, Los Angeles, CA 90001" +291795,Apple Airpods Headphones,1,150,11/03/19 20:37,"684 Elm St, Portland, ME 04101" +291796,27in FHD Monitor,1,149.99,11/06/19 18:54,"217 Church St, Dallas, TX 75001" +291797,27in FHD Monitor,1,149.99,11/19/19 23:25,"297 Sunset St, San Francisco, CA 94016" +291798,Google Phone,1,600,11/09/19 11:05,"321 Cherry St, Atlanta, GA 30301" +291799,Wired Headphones,1,11.99,11/24/19 21:46,"870 Center St, New York City, NY 10001" +291800,Lightning Charging Cable,2,14.95,11/27/19 14:55,"146 Cedar St, Boston, MA 02215" +291801,Google Phone,1,600,11/07/19 16:39,"425 Madison St, Dallas, TX 75001" +291802,AAA Batteries (4-pack),2,2.99,11/11/19 11:05,"973 Cedar St, Portland, ME 04101" +291803,Flatscreen TV,1,300,11/26/19 15:41,"262 Sunset St, San Francisco, CA 94016" +291804,Lightning Charging Cable,2,14.95,11/07/19 15:19,"720 Wilson St, San Francisco, CA 94016" +291805,Apple Airpods Headphones,1,150,11/14/19 23:37,"848 10th St, Boston, MA 02215" +291806,Lightning Charging Cable,1,14.95,11/24/19 09:55,"491 Pine St, Boston, MA 02215" +291807,AA Batteries (4-pack),1,3.84,11/22/19 08:06,"522 Park St, Atlanta, GA 30301" +291808,27in FHD Monitor,1,149.99,11/06/19 23:45,"850 South St, San Francisco, CA 94016" +291809,AA Batteries (4-pack),1,3.84,11/20/19 21:52,"559 5th St, Dallas, TX 75001" +291810,iPhone,1,700,11/17/19 17:45,"598 Madison St, Dallas, TX 75001" +291810,Lightning Charging Cable,1,14.95,11/17/19 17:45,"598 Madison St, Dallas, TX 75001" +291811,Apple Airpods Headphones,1,150,11/28/19 16:21,"321 Lake St, Seattle, WA 98101" +291812,34in Ultrawide Monitor,1,379.99,11/07/19 00:00,"737 Jackson St, Los Angeles, CA 90001" +291813,USB-C Charging Cable,1,11.95,11/11/19 13:40,"272 Lakeview St, San Francisco, CA 94016" +291814,USB-C Charging Cable,1,11.95,11/08/19 16:25,"978 Highland St, Boston, MA 02215" +291815,Apple Airpods Headphones,1,150,11/05/19 17:39,"399 Hill St, Portland, OR 97035" +291816,iPhone,1,700,11/20/19 19:28,"631 12th St, Atlanta, GA 30301" +291816,Lightning Charging Cable,1,14.95,11/20/19 19:28,"631 12th St, Atlanta, GA 30301" +291816,Apple Airpods Headphones,1,150,11/20/19 19:28,"631 12th St, Atlanta, GA 30301" +291817,Lightning Charging Cable,1,14.95,11/21/19 14:56,"375 7th St, Seattle, WA 98101" +291818,Lightning Charging Cable,1,14.95,11/22/19 14:47,"200 4th St, Los Angeles, CA 90001" +291819,AAA Batteries (4-pack),1,2.99,11/28/19 15:12,"379 Center St, Los Angeles, CA 90001" +291820,AA Batteries (4-pack),1,3.84,11/01/19 21:03,"703 West St, Seattle, WA 98101" +291821,AA Batteries (4-pack),1,3.84,11/08/19 19:07,"483 10th St, San Francisco, CA 94016" +291822,Bose SoundSport Headphones,1,99.99,11/13/19 19:26,"723 Washington St, Dallas, TX 75001" +291823,Apple Airpods Headphones,1,150,11/22/19 19:42,"9 Madison St, Los Angeles, CA 90001" +291824,Lightning Charging Cable,1,14.95,11/07/19 13:03,"841 Forest St, Los Angeles, CA 90001" +291825,34in Ultrawide Monitor,1,379.99,11/19/19 16:05,"28 Madison St, Portland, OR 97035" +291826,AA Batteries (4-pack),2,3.84,11/30/19 08:43,"431 River St, San Francisco, CA 94016" +291827,Bose SoundSport Headphones,1,99.99,11/12/19 20:47,"560 Meadow St, Boston, MA 02215" +291828,Bose SoundSport Headphones,1,99.99,11/24/19 14:18,"91 9th St, Austin, TX 73301" +291829,AA Batteries (4-pack),2,3.84,11/06/19 18:03,"158 Dogwood St, San Francisco, CA 94016" +291830,Lightning Charging Cable,1,14.95,11/23/19 17:21,"284 Jefferson St, San Francisco, CA 94016" +291831,34in Ultrawide Monitor,1,379.99,11/18/19 00:37,"525 Center St, Los Angeles, CA 90001" +291832,AAA Batteries (4-pack),1,2.99,11/04/19 10:25,"1 Maple St, San Francisco, CA 94016" +291832,AA Batteries (4-pack),1,3.84,11/04/19 10:25,"1 Maple St, San Francisco, CA 94016" +291833,Vareebadd Phone,1,400,11/05/19 20:36,"907 Dogwood St, Atlanta, GA 30301" +291834,AAA Batteries (4-pack),2,2.99,11/19/19 14:56,"518 Pine St, Atlanta, GA 30301" +291835,USB-C Charging Cable,1,11.95,11/25/19 04:28,"917 4th St, Portland, OR 97035" +291836,Lightning Charging Cable,1,14.95,11/22/19 23:19,"350 Walnut St, Seattle, WA 98101" +291837,Bose SoundSport Headphones,1,99.99,11/15/19 12:24,"68 Ridge St, Los Angeles, CA 90001" +291838,AA Batteries (4-pack),2,3.84,11/07/19 04:58,"823 13th St, Austin, TX 73301" +291839,Flatscreen TV,1,300,11/27/19 20:18,"668 1st St, Boston, MA 02215" +291840,AAA Batteries (4-pack),2,2.99,11/21/19 13:47,"646 1st St, San Francisco, CA 94016" +291841,27in FHD Monitor,1,149.99,11/17/19 12:08,"126 9th St, Dallas, TX 75001" +291842,AA Batteries (4-pack),2,3.84,11/10/19 11:23,"279 7th St, San Francisco, CA 94016" +291843,Lightning Charging Cable,1,14.95,11/05/19 11:21,"594 River St, Dallas, TX 75001" +291844,Lightning Charging Cable,1,14.95,11/10/19 00:55,"612 Madison St, Seattle, WA 98101" +291845,AA Batteries (4-pack),1,3.84,11/15/19 08:27,"669 Dogwood St, San Francisco, CA 94016" +291846,27in FHD Monitor,1,149.99,11/08/19 23:43,"686 Madison St, San Francisco, CA 94016" +291847,Bose SoundSport Headphones,1,99.99,11/03/19 14:03,"77 Park St, Los Angeles, CA 90001" +291848,Bose SoundSport Headphones,1,99.99,11/25/19 10:34,"625 12th St, Dallas, TX 75001" +291849,Google Phone,1,600,11/30/19 01:32,"908 Lincoln St, San Francisco, CA 94016" +291849,USB-C Charging Cable,1,11.95,11/30/19 01:32,"908 Lincoln St, San Francisco, CA 94016" +291850,27in FHD Monitor,1,149.99,11/29/19 19:53,"560 11th St, San Francisco, CA 94016" +291851,20in Monitor,1,109.99,11/30/19 12:27,"162 4th St, Dallas, TX 75001" +291851,Google Phone,1,600,11/30/19 12:27,"162 4th St, Dallas, TX 75001" +291852,Apple Airpods Headphones,1,150,11/30/19 06:42,"789 Dogwood St, Los Angeles, CA 90001" +291853,AA Batteries (4-pack),3,3.84,11/24/19 09:55,"931 Main St, Portland, OR 97035" +291854,USB-C Charging Cable,1,11.95,11/06/19 07:33,"609 River St, Atlanta, GA 30301" +291855,AA Batteries (4-pack),2,3.84,11/28/19 08:21,"573 5th St, San Francisco, CA 94016" +291856,Bose SoundSport Headphones,1,99.99,11/13/19 21:19,"446 Pine St, San Francisco, CA 94016" +291857,iPhone,1,700,11/09/19 21:02,"66 Adams St, Dallas, TX 75001" +291858,iPhone,1,700,11/15/19 10:44,"151 4th St, Austin, TX 73301" +291858,Wired Headphones,1,11.99,11/15/19 10:44,"151 4th St, Austin, TX 73301" +291859,AA Batteries (4-pack),1,3.84,11/15/19 22:32,"186 2nd St, San Francisco, CA 94016" +291860,AAA Batteries (4-pack),3,2.99,11/21/19 09:45,"897 Hill St, New York City, NY 10001" +291861,Bose SoundSport Headphones,1,99.99,11/03/19 11:55,"215 2nd St, New York City, NY 10001" +291862,27in FHD Monitor,1,149.99,11/28/19 18:55,"291 South St, Boston, MA 02215" +291863,Wired Headphones,1,11.99,11/21/19 17:21,"712 2nd St, Boston, MA 02215" +291864,27in FHD Monitor,1,149.99,11/25/19 22:27,"362 Lincoln St, Los Angeles, CA 90001" +291865,AAA Batteries (4-pack),1,2.99,11/11/19 19:16,"430 2nd St, Boston, MA 02215" +291866,iPhone,1,700,11/25/19 16:57,"35 Elm St, Boston, MA 02215" +291867,AAA Batteries (4-pack),1,2.99,11/04/19 08:51,"88 Cherry St, New York City, NY 10001" +291868,Macbook Pro Laptop,1,1700,11/02/19 08:59,"529 River St, San Francisco, CA 94016" +291869,AA Batteries (4-pack),2,3.84,11/17/19 08:30,"47 Jefferson St, Los Angeles, CA 90001" +291870,27in FHD Monitor,1,149.99,11/04/19 15:21,"592 5th St, Seattle, WA 98101" +291871,AAA Batteries (4-pack),3,2.99,11/22/19 19:18,"669 Hickory St, Boston, MA 02215" +291872,iPhone,1,700,11/30/19 13:38,"270 Lake St, Los Angeles, CA 90001" +291873,Wired Headphones,1,11.99,11/30/19 17:56,"580 Hickory St, New York City, NY 10001" +291874,27in FHD Monitor,1,149.99,11/20/19 15:56,"796 Wilson St, Dallas, TX 75001" +291874,AAA Batteries (4-pack),2,2.99,11/20/19 15:56,"796 Wilson St, Dallas, TX 75001" +291875,Wired Headphones,2,11.99,11/12/19 20:36,"146 7th St, Los Angeles, CA 90001" +291876,20in Monitor,1,109.99,11/16/19 17:07,"423 Main St, Portland, ME 04101" +291877,Lightning Charging Cable,1,14.95,11/15/19 19:13,"794 11th St, San Francisco, CA 94016" +291878,Bose SoundSport Headphones,1,99.99,11/12/19 07:35,"577 Elm St, New York City, NY 10001" +291879,USB-C Charging Cable,1,11.95,11/14/19 21:50,"373 North St, San Francisco, CA 94016" +291880,Flatscreen TV,1,300,11/09/19 18:22,"453 Spruce St, San Francisco, CA 94016" +291881,AA Batteries (4-pack),1,3.84,11/28/19 07:54,"655 Lake St, Portland, ME 04101" +291882,USB-C Charging Cable,1,11.95,11/20/19 18:00,"288 Cedar St, San Francisco, CA 94016" +291883,Wired Headphones,2,11.99,11/28/19 11:21,"577 Wilson St, Boston, MA 02215" +291884,USB-C Charging Cable,1,11.95,11/22/19 16:35,"126 1st St, San Francisco, CA 94016" +291885,Bose SoundSport Headphones,1,99.99,11/26/19 15:33,"165 Church St, San Francisco, CA 94016" +291886,AA Batteries (4-pack),1,3.84,11/07/19 11:10,"554 Cherry St, Los Angeles, CA 90001" +291887,Lightning Charging Cable,1,14.95,11/01/19 13:45,"744 Maple St, Austin, TX 73301" +291888,Bose SoundSport Headphones,1,99.99,11/10/19 20:28,"910 Elm St, San Francisco, CA 94016" +291889,USB-C Charging Cable,1,11.95,11/21/19 19:43,"303 Adams St, San Francisco, CA 94016" +291890,Bose SoundSport Headphones,1,99.99,11/09/19 17:32,"792 6th St, Los Angeles, CA 90001" +291891,Vareebadd Phone,1,400,11/24/19 13:01,"159 6th St, Los Angeles, CA 90001" +291892,ThinkPad Laptop,1,999.99,11/28/19 18:10,"395 Forest St, San Francisco, CA 94016" +291893,27in 4K Gaming Monitor,1,389.99,11/24/19 09:33,"284 4th St, Atlanta, GA 30301" +291894,AAA Batteries (4-pack),1,2.99,11/11/19 11:24,"49 Jackson St, San Francisco, CA 94016" +291895,Wired Headphones,1,11.99,11/28/19 08:55,"459 8th St, San Francisco, CA 94016" +291896,AA Batteries (4-pack),1,3.84,11/14/19 15:37,"293 Meadow St, Boston, MA 02215" +291897,Wired Headphones,1,11.99,11/24/19 16:40,"564 River St, Los Angeles, CA 90001" +291898,iPhone,1,700,11/19/19 09:12,"377 Lakeview St, Dallas, TX 75001" +291898,Apple Airpods Headphones,1,150,11/19/19 09:12,"377 Lakeview St, Dallas, TX 75001" +291899,Lightning Charging Cable,1,14.95,11/10/19 09:04,"344 Spruce St, Dallas, TX 75001" +291900,AAA Batteries (4-pack),1,2.99,11/07/19 10:49,"855 12th St, New York City, NY 10001" +291901,AAA Batteries (4-pack),1,2.99,11/03/19 20:24,"802 Walnut St, San Francisco, CA 94016" +291902,AAA Batteries (4-pack),2,2.99,11/30/19 18:30,"247 Park St, Seattle, WA 98101" +291903,Wired Headphones,1,11.99,11/09/19 09:50,"590 Meadow St, Los Angeles, CA 90001" +291904,Flatscreen TV,1,300,11/05/19 08:45,"680 12th St, Los Angeles, CA 90001" +291905,27in 4K Gaming Monitor,1,389.99,11/12/19 20:43,"942 Jefferson St, Dallas, TX 75001" +291906,ThinkPad Laptop,1,999.99,11/18/19 18:39,"77 6th St, Boston, MA 02215" +291907,USB-C Charging Cable,1,11.95,11/08/19 08:43,"937 Madison St, Dallas, TX 75001" +291908,27in 4K Gaming Monitor,1,389.99,11/03/19 23:11,"411 Hickory St, San Francisco, CA 94016" +291909,Apple Airpods Headphones,1,150,11/17/19 12:33,"870 11th St, Austin, TX 73301" +291910,AAA Batteries (4-pack),1,2.99,11/23/19 19:04,"540 5th St, Austin, TX 73301" +291911,LG Washing Machine,1,600.0,11/18/19 22:17,"260 Lincoln St, Portland, OR 97035" +291912,27in 4K Gaming Monitor,1,389.99,11/14/19 16:57,"916 12th St, Portland, OR 97035" +291913,LG Washing Machine,1,600.0,11/04/19 13:09,"757 Johnson St, Boston, MA 02215" +291914,Lightning Charging Cable,1,14.95,11/10/19 14:37,"496 Ridge St, Seattle, WA 98101" +291915,Macbook Pro Laptop,1,1700,11/06/19 15:53,"24 1st St, Los Angeles, CA 90001" +291916,20in Monitor,1,109.99,11/01/19 21:33,"680 5th St, Atlanta, GA 30301" +291917,Lightning Charging Cable,1,14.95,11/27/19 19:53,"279 Sunset St, San Francisco, CA 94016" +291918,USB-C Charging Cable,1,11.95,11/03/19 00:28,"279 River St, Atlanta, GA 30301" +291919,ThinkPad Laptop,1,999.99,11/10/19 10:39,"764 North St, Boston, MA 02215" +291920,ThinkPad Laptop,1,999.99,11/14/19 10:40,"643 Main St, San Francisco, CA 94016" +291921,AAA Batteries (4-pack),1,2.99,11/17/19 06:40,"905 5th St, Los Angeles, CA 90001" +291922,Lightning Charging Cable,1,14.95,11/06/19 08:14,"545 Hill St, Portland, OR 97035" +291923,USB-C Charging Cable,1,11.95,11/06/19 21:39,"503 Chestnut St, San Francisco, CA 94016" +291924,iPhone,1,700,11/15/19 12:24,"602 Lincoln St, Austin, TX 73301" +291925,ThinkPad Laptop,1,999.99,11/15/19 22:45,"183 Maple St, New York City, NY 10001" +291926,AA Batteries (4-pack),1,3.84,11/15/19 14:52,"941 Forest St, San Francisco, CA 94016" +291927,Flatscreen TV,1,300,11/09/19 13:13,"274 11th St, Boston, MA 02215" +291928,USB-C Charging Cable,1,11.95,11/04/19 11:41,"672 Chestnut St, Dallas, TX 75001" +291929,USB-C Charging Cable,3,11.95,11/20/19 23:17,"410 7th St, Los Angeles, CA 90001" +291930,USB-C Charging Cable,1,11.95,11/08/19 18:42,"199 Forest St, San Francisco, CA 94016" +291931,Apple Airpods Headphones,1,150,11/08/19 21:58,"948 1st St, Los Angeles, CA 90001" +291932,27in FHD Monitor,1,149.99,11/16/19 21:33,"783 Elm St, Los Angeles, CA 90001" +291933,Lightning Charging Cable,1,14.95,11/16/19 19:59,"373 8th St, New York City, NY 10001" +291934,27in FHD Monitor,1,149.99,11/03/19 03:02,"353 Sunset St, Portland, OR 97035" +291935,Apple Airpods Headphones,1,150,11/15/19 12:10,"868 13th St, Austin, TX 73301" +291936,AA Batteries (4-pack),2,3.84,11/11/19 14:26,"395 Adams St, Los Angeles, CA 90001" +291937,Bose SoundSport Headphones,1,99.99,11/17/19 22:45,"883 Wilson St, Seattle, WA 98101" +291938,iPhone,1,700,11/28/19 15:22,"698 Elm St, Portland, ME 04101" +291939,AAA Batteries (4-pack),1,2.99,11/30/19 15:17,"846 Pine St, San Francisco, CA 94016" +291940,Apple Airpods Headphones,1,150,11/09/19 09:49,"699 Jackson St, Los Angeles, CA 90001" +291941,USB-C Charging Cable,1,11.95,11/19/19 17:25,"297 Jefferson St, Dallas, TX 75001" +291942,USB-C Charging Cable,1,11.95,11/30/19 14:13,"39 10th St, Portland, ME 04101" +291943,Bose SoundSport Headphones,1,99.99,11/13/19 21:35,"319 Church St, San Francisco, CA 94016" +291944,20in Monitor,1,109.99,11/10/19 13:31,"738 Main St, Atlanta, GA 30301" +291945,27in FHD Monitor,1,149.99,11/10/19 21:52,"811 14th St, San Francisco, CA 94016" +291946,Google Phone,1,600,11/21/19 10:03,"883 Center St, Seattle, WA 98101" +291947,Apple Airpods Headphones,1,150,11/27/19 14:57,"935 Madison St, Seattle, WA 98101" +291948,Google Phone,1,600,11/04/19 12:03,"245 Walnut St, Seattle, WA 98101" +291949,Lightning Charging Cable,1,14.95,11/26/19 20:46,"482 6th St, San Francisco, CA 94016" +291950,27in FHD Monitor,1,149.99,11/15/19 20:41,"914 Lincoln St, San Francisco, CA 94016" +291951,iPhone,1,700,11/08/19 11:27,"678 West St, Los Angeles, CA 90001" +291952,iPhone,1,700,11/08/19 13:42,"244 Elm St, Atlanta, GA 30301" +291953,Lightning Charging Cable,1,14.95,11/27/19 17:07,"273 Lake St, San Francisco, CA 94016" +291954,Lightning Charging Cable,1,14.95,11/27/19 16:14,"348 8th St, Portland, OR 97035" +291955,20in Monitor,1,109.99,11/05/19 22:17,"534 2nd St, Atlanta, GA 30301" +291956,AAA Batteries (4-pack),1,2.99,11/26/19 01:59,"809 Church St, Los Angeles, CA 90001" +291957,AAA Batteries (4-pack),3,2.99,11/08/19 10:34,"737 Spruce St, Portland, ME 04101" +291958,AAA Batteries (4-pack),2,2.99,11/26/19 17:46,"318 Cherry St, Dallas, TX 75001" +291959,AAA Batteries (4-pack),1,2.99,11/29/19 19:37,"152 Sunset St, Boston, MA 02215" +291960,AA Batteries (4-pack),1,3.84,11/05/19 14:34,"839 Walnut St, San Francisco, CA 94016" +291961,AA Batteries (4-pack),1,3.84,11/29/19 18:42,"886 10th St, Los Angeles, CA 90001" +291962,AA Batteries (4-pack),1,3.84,11/10/19 17:45,"759 Ridge St, Los Angeles, CA 90001" +291963,Apple Airpods Headphones,1,150,11/13/19 13:09,"495 Lincoln St, Portland, OR 97035" +291964,Macbook Pro Laptop,1,1700,11/09/19 12:21,"392 Meadow St, Boston, MA 02215" +291965,Bose SoundSport Headphones,1,99.99,11/24/19 20:00,"966 Park St, San Francisco, CA 94016" +291966,USB-C Charging Cable,1,11.95,11/30/19 19:35,"571 Main St, Atlanta, GA 30301" +291967,AA Batteries (4-pack),2,3.84,11/19/19 22:53,"950 2nd St, Atlanta, GA 30301" +291968,USB-C Charging Cable,1,11.95,11/21/19 00:06,"772 Walnut St, Los Angeles, CA 90001" +291969,Apple Airpods Headphones,1,150,11/23/19 22:20,"503 Highland St, Los Angeles, CA 90001" +291970,USB-C Charging Cable,1,11.95,11/17/19 19:16,"45 9th St, New York City, NY 10001" +291971,Wired Headphones,1,11.99,11/03/19 16:29,"22 Cherry St, Dallas, TX 75001" +291972,AA Batteries (4-pack),1,3.84,11/25/19 15:32,"253 Elm St, Boston, MA 02215" +291973,Wired Headphones,1,11.99,11/06/19 01:09,"143 Lincoln St, Austin, TX 73301" +291974,Bose SoundSport Headphones,1,99.99,11/10/19 10:00,"119 South St, San Francisco, CA 94016" +291975,iPhone,1,700,11/08/19 20:56,"421 13th St, Boston, MA 02215" +291976,AA Batteries (4-pack),2,3.84,11/21/19 12:32,"322 River St, Atlanta, GA 30301" +291977,Lightning Charging Cable,1,14.95,11/20/19 20:00,"710 Jefferson St, Los Angeles, CA 90001" +291978,Bose SoundSport Headphones,1,99.99,11/01/19 23:53,"295 Hill St, Seattle, WA 98101" +291979,Bose SoundSport Headphones,1,99.99,11/27/19 13:54,"634 1st St, Boston, MA 02215" +291980,iPhone,1,700,11/25/19 19:28,"686 Cedar St, Dallas, TX 75001" +291980,Lightning Charging Cable,1,14.95,11/25/19 19:28,"686 Cedar St, Dallas, TX 75001" +291981,Vareebadd Phone,1,400,11/17/19 10:55,"806 10th St, Boston, MA 02215" +291982,27in FHD Monitor,1,149.99,11/15/19 10:51,"126 Washington St, Los Angeles, CA 90001" +291983,AAA Batteries (4-pack),1,2.99,11/22/19 13:27,"970 Hill St, San Francisco, CA 94016" +291984,20in Monitor,1,109.99,11/02/19 19:24,"927 Maple St, Los Angeles, CA 90001" +291985,Wired Headphones,1,11.99,11/19/19 17:23,"378 Main St, Portland, OR 97035" +291986,Flatscreen TV,1,300,11/06/19 08:28,"420 Maple St, Atlanta, GA 30301" +291987,Lightning Charging Cable,1,14.95,11/18/19 21:15,"697 Church St, San Francisco, CA 94016" +291988,Apple Airpods Headphones,1,150,11/18/19 20:33,"803 Center St, Austin, TX 73301" +291989,USB-C Charging Cable,2,11.95,11/18/19 16:45,"612 West St, San Francisco, CA 94016" +291990,iPhone,1,700,11/27/19 22:34,"618 Jackson St, San Francisco, CA 94016" +291990,Lightning Charging Cable,1,14.95,11/27/19 22:34,"618 Jackson St, San Francisco, CA 94016" +291991,USB-C Charging Cable,1,11.95,11/24/19 13:49,"768 Church St, Portland, OR 97035" +291992,AAA Batteries (4-pack),2,2.99,11/12/19 17:08,"779 Sunset St, Los Angeles, CA 90001" +291993,Wired Headphones,1,11.99,11/28/19 10:28,"190 Madison St, San Francisco, CA 94016" +291994,AAA Batteries (4-pack),1,2.99,11/11/19 07:44,"316 West St, San Francisco, CA 94016" +291995,USB-C Charging Cable,1,11.95,11/01/19 22:48,"530 Cherry St, New York City, NY 10001" +291996,Bose SoundSport Headphones,1,99.99,11/21/19 15:31,"268 6th St, Los Angeles, CA 90001" +291997,Apple Airpods Headphones,1,150,11/02/19 10:11,"82 10th St, Boston, MA 02215" +291998,Apple Airpods Headphones,1,150,11/10/19 14:26,"666 Sunset St, Boston, MA 02215" +291999,Lightning Charging Cable,1,14.95,11/07/19 14:13,"937 Wilson St, New York City, NY 10001" +292000,Google Phone,1,600,11/15/19 19:30,"424 Jefferson St, San Francisco, CA 94016" +292001,AAA Batteries (4-pack),2,2.99,11/02/19 20:16,"35 Johnson St, New York City, NY 10001" +292002,AA Batteries (4-pack),1,3.84,11/17/19 11:12,"54 Madison St, San Francisco, CA 94016" +292003,27in 4K Gaming Monitor,1,389.99,11/30/19 10:32,"94 11th St, Los Angeles, CA 90001" +292004,iPhone,1,700,11/30/19 13:35,"168 Church St, Atlanta, GA 30301" +292005,AA Batteries (4-pack),1,3.84,11/20/19 12:05,"937 Center St, Los Angeles, CA 90001" +292006,ThinkPad Laptop,1,999.99,11/24/19 18:32,"280 Park St, Boston, MA 02215" +292007,Google Phone,1,600,11/23/19 09:39,"912 Lake St, Los Angeles, CA 90001" +292008,Google Phone,1,600,11/21/19 13:07,"416 Lake St, Dallas, TX 75001" +292009,Flatscreen TV,1,300,11/28/19 19:15,"440 Jackson St, San Francisco, CA 94016" +292010,AAA Batteries (4-pack),1,2.99,11/16/19 00:54,"56 Highland St, Atlanta, GA 30301" +292011,AAA Batteries (4-pack),1,2.99,11/23/19 21:18,"580 Church St, Dallas, TX 75001" +292012,27in FHD Monitor,1,149.99,11/03/19 20:52,"219 7th St, San Francisco, CA 94016" +292013,AAA Batteries (4-pack),1,2.99,11/25/19 13:25,"499 Elm St, Atlanta, GA 30301" +292014,AA Batteries (4-pack),2,3.84,11/27/19 15:55,"236 Center St, Los Angeles, CA 90001" +292015,USB-C Charging Cable,1,11.95,11/08/19 16:22,"72 Jackson St, New York City, NY 10001" +292016,Bose SoundSport Headphones,1,99.99,11/07/19 14:54,"849 11th St, Boston, MA 02215" +292017,Wired Headphones,1,11.99,11/10/19 17:21,"212 River St, San Francisco, CA 94016" +292018,Apple Airpods Headphones,1,150,11/09/19 15:05,"170 Willow St, Dallas, TX 75001" +292019,AA Batteries (4-pack),1,3.84,11/06/19 17:51,"467 9th St, Boston, MA 02215" +292020,Wired Headphones,1,11.99,11/15/19 16:45,"60 Dogwood St, Los Angeles, CA 90001" +292021,USB-C Charging Cable,1,11.95,11/26/19 10:28,"292 4th St, San Francisco, CA 94016" +292022,Flatscreen TV,1,300,11/12/19 11:33,"568 Washington St, Dallas, TX 75001" +292023,Lightning Charging Cable,1,14.95,11/15/19 23:51,"931 13th St, San Francisco, CA 94016" +292024,USB-C Charging Cable,2,11.95,11/05/19 20:53,"580 10th St, San Francisco, CA 94016" +292025,AA Batteries (4-pack),3,3.84,11/21/19 18:19,"997 Maple St, Los Angeles, CA 90001" +292026,Flatscreen TV,1,300,11/10/19 13:10,"195 Adams St, Los Angeles, CA 90001" +292027,Google Phone,1,600,11/22/19 15:36,"955 Hickory St, San Francisco, CA 94016" +292028,27in FHD Monitor,1,149.99,11/29/19 21:24,"750 8th St, Portland, OR 97035" +292029,Wired Headphones,1,11.99,11/25/19 10:53,"905 River St, Los Angeles, CA 90001" +292030,Macbook Pro Laptop,1,1700,11/01/19 14:11,"24 Church St, San Francisco, CA 94016" +292031,AA Batteries (4-pack),1,3.84,11/11/19 07:47,"396 Spruce St, New York City, NY 10001" +292032,Lightning Charging Cable,2,14.95,11/10/19 07:32,"373 7th St, Boston, MA 02215" +292033,27in FHD Monitor,1,149.99,11/24/19 11:57,"29 Elm St, Los Angeles, CA 90001" +292034,iPhone,1,700,11/16/19 00:49,"367 14th St, Portland, OR 97035" +292035,Bose SoundSport Headphones,1,99.99,11/22/19 18:08,"473 12th St, Portland, OR 97035" +292036,Apple Airpods Headphones,1,150,11/01/19 08:25,"3 Wilson St, San Francisco, CA 94016" +292037,AAA Batteries (4-pack),1,2.99,11/06/19 03:35,"80 Washington St, San Francisco, CA 94016" +292038,Flatscreen TV,1,300,11/27/19 16:01,"441 13th St, Dallas, TX 75001" +292039,27in 4K Gaming Monitor,1,389.99,11/09/19 15:34,"849 Willow St, Atlanta, GA 30301" +292040,27in FHD Monitor,1,149.99,11/26/19 17:10,"882 1st St, Boston, MA 02215" +292041,USB-C Charging Cable,2,11.95,11/12/19 07:20,"357 1st St, Atlanta, GA 30301" +292042,AA Batteries (4-pack),1,3.84,11/07/19 16:33,"523 South St, Seattle, WA 98101" +292043,27in FHD Monitor,1,149.99,11/10/19 15:56,"674 Jefferson St, San Francisco, CA 94016" +292044,Flatscreen TV,1,300,11/06/19 20:11,"133 4th St, Atlanta, GA 30301" +292045,AA Batteries (4-pack),1,3.84,11/08/19 11:15,"33 Maple St, Dallas, TX 75001" +292046,Apple Airpods Headphones,1,150,11/30/19 15:24,"131 Madison St, Austin, TX 73301" +292047,Vareebadd Phone,1,400,11/06/19 15:54,"78 Willow St, Boston, MA 02215" +292048,ThinkPad Laptop,1,999.99,11/20/19 14:28,"227 Park St, Atlanta, GA 30301" +292049,USB-C Charging Cable,1,11.95,11/14/19 14:49,"966 14th St, Seattle, WA 98101" +292049,20in Monitor,1,109.99,11/14/19 14:49,"966 14th St, Seattle, WA 98101" +292050,Wired Headphones,1,11.99,11/22/19 01:48,"746 Hickory St, Dallas, TX 75001" +292051,AA Batteries (4-pack),1,3.84,11/19/19 08:33,"353 River St, Boston, MA 02215" +292052,ThinkPad Laptop,1,999.99,11/16/19 09:39,"149 5th St, Boston, MA 02215" +292053,Apple Airpods Headphones,1,150,11/14/19 10:43,"775 1st St, New York City, NY 10001" +292054,AA Batteries (4-pack),3,3.84,11/06/19 17:26,"986 Center St, San Francisco, CA 94016" +292055,AA Batteries (4-pack),1,3.84,11/10/19 16:23,"206 Jackson St, Los Angeles, CA 90001" +292056,Lightning Charging Cable,1,14.95,11/08/19 17:25,"65 Jackson St, Seattle, WA 98101" +292057,Flatscreen TV,1,300,11/18/19 14:29,"709 12th St, San Francisco, CA 94016" +292058,iPhone,1,700,11/15/19 23:11,"980 Madison St, New York City, NY 10001" +292059,AA Batteries (4-pack),1,3.84,11/19/19 21:40,"177 Chestnut St, Los Angeles, CA 90001" +292060,27in FHD Monitor,1,149.99,11/03/19 15:25,"792 2nd St, San Francisco, CA 94016" +292061,AAA Batteries (4-pack),2,2.99,11/13/19 13:18,"807 Adams St, Seattle, WA 98101" +292062,Apple Airpods Headphones,1,150,11/20/19 04:50,"743 Park St, New York City, NY 10001" +292063,Apple Airpods Headphones,1,150,11/16/19 21:45,"356 Church St, San Francisco, CA 94016" +292064,27in FHD Monitor,1,149.99,11/13/19 10:40,"7 11th St, San Francisco, CA 94016" +292065,Flatscreen TV,1,300,11/22/19 20:58,"322 11th St, Seattle, WA 98101" +292066,20in Monitor,1,109.99,11/25/19 12:48,"688 Cedar St, San Francisco, CA 94016" +292067,USB-C Charging Cable,1,11.95,11/07/19 19:32,"304 Highland St, Portland, OR 97035" +292068,Wired Headphones,1,11.99,11/09/19 21:04,"417 12th St, Los Angeles, CA 90001" +292069,iPhone,1,700,11/29/19 09:15,"388 River St, San Francisco, CA 94016" +292070,Lightning Charging Cable,1,14.95,11/21/19 14:37,"108 14th St, San Francisco, CA 94016" +292071,Wired Headphones,1,11.99,11/05/19 02:29,"431 Main St, Seattle, WA 98101" +292072,Bose SoundSport Headphones,1,99.99,11/03/19 21:35,"435 River St, Portland, OR 97035" +292073,AA Batteries (4-pack),4,3.84,11/15/19 11:17,"616 Hickory St, Los Angeles, CA 90001" +292074,Wired Headphones,1,11.99,11/19/19 14:58,"758 Cedar St, Dallas, TX 75001" +292075,Google Phone,1,600,11/09/19 09:35,"394 Jackson St, San Francisco, CA 94016" +292075,Bose SoundSport Headphones,1,99.99,11/09/19 09:35,"394 Jackson St, San Francisco, CA 94016" +292076,Flatscreen TV,1,300,11/21/19 19:36,"394 2nd St, Los Angeles, CA 90001" +292077,Lightning Charging Cable,1,14.95,11/01/19 14:15,"850 Jefferson St, San Francisco, CA 94016" +292078,Apple Airpods Headphones,1,150,11/26/19 08:38,"754 8th St, New York City, NY 10001" +,,,,, +292079,Flatscreen TV,1,300,11/04/19 15:58,"968 Lakeview St, Los Angeles, CA 90001" +292080,AA Batteries (4-pack),2,3.84,11/08/19 23:39,"458 Cherry St, Los Angeles, CA 90001" +292081,AAA Batteries (4-pack),2,2.99,11/13/19 06:27,"189 Meadow St, Dallas, TX 75001" +292082,Apple Airpods Headphones,1,150,11/28/19 10:44,"108 South St, San Francisco, CA 94016" +292083,iPhone,1,700,11/30/19 02:16,"243 1st St, Los Angeles, CA 90001" +292084,AA Batteries (4-pack),2,3.84,11/27/19 20:29,"16 Jackson St, San Francisco, CA 94016" +292085,Wired Headphones,1,11.99,11/12/19 14:05,"804 1st St, Dallas, TX 75001" +292086,Apple Airpods Headphones,1,150,11/19/19 16:33,"427 Chestnut St, Boston, MA 02215" +292087,Wired Headphones,1,11.99,11/01/19 19:17,"405 Sunset St, San Francisco, CA 94016" +292088,27in FHD Monitor,1,149.99,11/12/19 16:55,"252 Wilson St, San Francisco, CA 94016" +292089,Bose SoundSport Headphones,1,99.99,11/12/19 18:45,"430 Forest St, San Francisco, CA 94016" +292090,Wired Headphones,1,11.99,11/16/19 20:48,"575 Spruce St, San Francisco, CA 94016" +292091,Apple Airpods Headphones,1,150,11/13/19 19:16,"87 Hickory St, Los Angeles, CA 90001" +292092,AAA Batteries (4-pack),1,2.99,11/17/19 21:38,"654 Forest St, Portland, OR 97035" +292093,Lightning Charging Cable,1,14.95,11/13/19 00:37,"125 12th St, San Francisco, CA 94016" +292094,Vareebadd Phone,1,400,11/07/19 13:57,"27 Willow St, Dallas, TX 75001" +292095,AA Batteries (4-pack),1,3.84,11/16/19 14:29,"19 Lake St, San Francisco, CA 94016" +292096,Wired Headphones,1,11.99,11/12/19 00:25,"629 Center St, San Francisco, CA 94016" +292097,20in Monitor,1,109.99,11/29/19 12:49,"614 12th St, Los Angeles, CA 90001" +292098,Bose SoundSport Headphones,1,99.99,11/07/19 13:36,"734 Dogwood St, Los Angeles, CA 90001" +292099,AA Batteries (4-pack),1,3.84,11/27/19 07:55,"116 10th St, San Francisco, CA 94016" +292100,Bose SoundSport Headphones,1,99.99,11/08/19 22:36,"140 Hill St, Portland, OR 97035" +292101,27in FHD Monitor,1,149.99,11/27/19 22:17,"125 Adams St, Boston, MA 02215" +292102,34in Ultrawide Monitor,1,379.99,11/12/19 17:23,"23 Highland St, Dallas, TX 75001" +292103,AA Batteries (4-pack),1,3.84,11/26/19 15:31,"561 South St, Boston, MA 02215" +292104,Wired Headphones,1,11.99,11/17/19 15:19,"283 2nd St, San Francisco, CA 94016" +292105,AAA Batteries (4-pack),3,2.99,11/26/19 21:39,"593 Park St, New York City, NY 10001" +292105,34in Ultrawide Monitor,1,379.99,11/26/19 21:39,"593 Park St, New York City, NY 10001" +292106,AAA Batteries (4-pack),2,2.99,11/19/19 23:53,"506 West St, Los Angeles, CA 90001" +292107,AAA Batteries (4-pack),1,2.99,11/23/19 13:31,"995 Forest St, San Francisco, CA 94016" +292108,Wired Headphones,1,11.99,11/17/19 08:14,"275 4th St, Austin, TX 73301" +292109,34in Ultrawide Monitor,1,379.99,11/15/19 13:35,"971 12th St, Dallas, TX 75001" +292110,27in 4K Gaming Monitor,1,389.99,11/02/19 11:16,"419 10th St, Dallas, TX 75001" +292111,USB-C Charging Cable,1,11.95,11/29/19 22:22,"638 Forest St, Boston, MA 02215" +292112,34in Ultrawide Monitor,1,379.99,11/11/19 05:03,"982 Highland St, Austin, TX 73301" +292113,AAA Batteries (4-pack),3,2.99,11/16/19 11:06,"464 River St, San Francisco, CA 94016" +292114,Lightning Charging Cable,1,14.95,11/14/19 19:09,"311 4th St, Seattle, WA 98101" +292115,27in 4K Gaming Monitor,1,389.99,11/14/19 14:50,"785 Ridge St, Seattle, WA 98101" +292116,Wired Headphones,1,11.99,11/08/19 18:46,"649 Park St, San Francisco, CA 94016" +292117,Bose SoundSport Headphones,1,99.99,11/25/19 08:20,"671 Hickory St, San Francisco, CA 94016" +292118,Lightning Charging Cable,1,14.95,11/21/19 19:36,"35 Park St, Los Angeles, CA 90001" +292119,USB-C Charging Cable,1,11.95,11/02/19 22:55,"630 14th St, Los Angeles, CA 90001" +292120,Bose SoundSport Headphones,1,99.99,11/27/19 19:11,"360 Jefferson St, San Francisco, CA 94016" +292121,AA Batteries (4-pack),1,3.84,11/08/19 00:45,"595 Walnut St, Dallas, TX 75001" +292122,USB-C Charging Cable,1,11.95,11/12/19 02:09,"33 Highland St, Los Angeles, CA 90001" +292123,Wired Headphones,1,11.99,11/16/19 14:09,"248 Adams St, Los Angeles, CA 90001" +292124,Apple Airpods Headphones,1,150,11/14/19 12:17,"119 10th St, Portland, OR 97035" +292125,USB-C Charging Cable,1,11.95,11/06/19 10:37,"472 South St, Boston, MA 02215" +292126,Apple Airpods Headphones,1,150,11/03/19 13:27,"59 Highland St, Austin, TX 73301" +292127,Flatscreen TV,1,300,11/18/19 10:29,"362 Spruce St, Dallas, TX 75001" +292128,AAA Batteries (4-pack),1,2.99,11/28/19 15:45,"892 Sunset St, Dallas, TX 75001" +292129,Lightning Charging Cable,1,14.95,11/26/19 19:40,"296 10th St, San Francisco, CA 94016" +292130,Wired Headphones,1,11.99,11/01/19 19:46,"662 River St, New York City, NY 10001" +292131,Wired Headphones,1,11.99,11/19/19 12:45,"600 North St, Portland, OR 97035" +292132,AAA Batteries (4-pack),2,2.99,11/03/19 18:52,"325 10th St, San Francisco, CA 94016" +292133,Apple Airpods Headphones,1,150,11/07/19 15:54,"850 Adams St, Los Angeles, CA 90001" +292134,Lightning Charging Cable,1,14.95,11/10/19 08:01,"359 Wilson St, Los Angeles, CA 90001" +292135,Apple Airpods Headphones,1,150,11/13/19 15:24,"728 12th St, Los Angeles, CA 90001" +292135,Bose SoundSport Headphones,1,99.99,11/13/19 15:24,"728 12th St, Los Angeles, CA 90001" +292136,AA Batteries (4-pack),2,3.84,11/24/19 08:42,"6 Cedar St, Los Angeles, CA 90001" +292137,Lightning Charging Cable,1,14.95,11/21/19 16:52,"70 8th St, Atlanta, GA 30301" +292138,Lightning Charging Cable,1,14.95,11/18/19 14:36,"820 4th St, Dallas, TX 75001" +292139,AA Batteries (4-pack),1,3.84,11/10/19 22:35,"152 12th St, Dallas, TX 75001" +292140,USB-C Charging Cable,1,11.95,11/29/19 08:06,"274 Lincoln St, Seattle, WA 98101" +292141,AA Batteries (4-pack),1,3.84,11/30/19 23:11,"744 Dogwood St, Dallas, TX 75001" +292142,Lightning Charging Cable,2,14.95,11/20/19 11:35,"359 Jackson St, San Francisco, CA 94016" +292143,Lightning Charging Cable,1,14.95,11/20/19 17:41,"69 Ridge St, Atlanta, GA 30301" +292144,Flatscreen TV,1,300,11/13/19 13:42,"922 10th St, Boston, MA 02215" +292145,Lightning Charging Cable,2,14.95,11/07/19 09:24,"34 8th St, Portland, OR 97035" +292146,AA Batteries (4-pack),1,3.84,11/24/19 23:09,"879 11th St, Boston, MA 02215" +292147,AA Batteries (4-pack),1,3.84,11/11/19 14:00,"898 Main St, San Francisco, CA 94016" +292148,Flatscreen TV,1,300,11/18/19 11:15,"712 Wilson St, San Francisco, CA 94016" +292149,AAA Batteries (4-pack),2,2.99,11/07/19 22:09,"818 Adams St, Dallas, TX 75001" +292150,Lightning Charging Cable,1,14.95,11/25/19 17:49,"376 9th St, San Francisco, CA 94016" +292151,AA Batteries (4-pack),1,3.84,11/16/19 20:19,"686 Hickory St, San Francisco, CA 94016" +292151,AAA Batteries (4-pack),1,2.99,11/16/19 20:19,"686 Hickory St, San Francisco, CA 94016" +292152,AA Batteries (4-pack),2,3.84,11/26/19 18:26,"831 Johnson St, Los Angeles, CA 90001" +292153,34in Ultrawide Monitor,1,379.99,11/25/19 10:33,"44 11th St, Dallas, TX 75001" +292154,27in FHD Monitor,1,149.99,11/12/19 15:15,"390 Adams St, San Francisco, CA 94016" +292155,ThinkPad Laptop,1,999.99,11/30/19 14:26,"841 14th St, Los Angeles, CA 90001" +292156,Apple Airpods Headphones,1,150,11/18/19 08:27,"846 Hickory St, Dallas, TX 75001" +292157,USB-C Charging Cable,1,11.95,11/17/19 13:23,"43 9th St, San Francisco, CA 94016" +292158,Lightning Charging Cable,1,14.95,11/07/19 19:46,"421 Chestnut St, San Francisco, CA 94016" +292159,Lightning Charging Cable,1,14.95,11/23/19 14:04,"192 Cherry St, San Francisco, CA 94016" +292160,Lightning Charging Cable,1,14.95,11/15/19 00:24,"482 4th St, Los Angeles, CA 90001" +292161,USB-C Charging Cable,1,11.95,11/14/19 08:17,"638 13th St, Boston, MA 02215" +292162,Lightning Charging Cable,1,14.95,11/30/19 19:41,"790 Washington St, Seattle, WA 98101" +292163,Lightning Charging Cable,1,14.95,11/23/19 19:36,"911 Ridge St, Dallas, TX 75001" +292164,34in Ultrawide Monitor,1,379.99,11/02/19 13:12,"80 Sunset St, Boston, MA 02215" +292165,Flatscreen TV,1,300,11/18/19 09:02,"968 Center St, Los Angeles, CA 90001" +292166,Wired Headphones,1,11.99,11/03/19 14:01,"489 10th St, Atlanta, GA 30301" +292167,Bose SoundSport Headphones,1,99.99,11/04/19 09:33,"931 7th St, Los Angeles, CA 90001" +292168,USB-C Charging Cable,1,11.95,11/11/19 09:43,"184 2nd St, Boston, MA 02215" +292169,iPhone,1,700,11/13/19 07:50,"211 Cedar St, Austin, TX 73301" +292170,Google Phone,1,600,11/08/19 14:36,"8 Jefferson St, Boston, MA 02215" +292171,Apple Airpods Headphones,1,150,11/04/19 12:39,"252 West St, Los Angeles, CA 90001" +292172,Lightning Charging Cable,1,14.95,11/23/19 08:18,"543 2nd St, Boston, MA 02215" +292173,Wired Headphones,1,11.99,11/13/19 17:47,"410 Wilson St, Los Angeles, CA 90001" +292173,LG Washing Machine,1,600.0,11/13/19 17:47,"410 Wilson St, Los Angeles, CA 90001" +292174,Lightning Charging Cable,1,14.95,11/07/19 14:20,"254 Main St, San Francisco, CA 94016" +292175,27in 4K Gaming Monitor,1,389.99,11/29/19 21:52,"237 Maple St, Portland, OR 97035" +292176,Wired Headphones,3,11.99,11/18/19 11:42,"180 Adams St, Seattle, WA 98101" +292177,USB-C Charging Cable,1,11.95,11/10/19 12:24,"796 Dogwood St, Austin, TX 73301" +292178,Lightning Charging Cable,1,14.95,11/23/19 12:15,"422 Church St, Seattle, WA 98101" +292179,USB-C Charging Cable,1,11.95,11/18/19 18:39,"930 Walnut St, Seattle, WA 98101" +292180,34in Ultrawide Monitor,1,379.99,11/07/19 23:10,"639 12th St, Boston, MA 02215" +292181,Lightning Charging Cable,1,14.95,11/17/19 19:39,"230 13th St, New York City, NY 10001" +292182,Bose SoundSport Headphones,1,99.99,11/30/19 20:51,"336 Walnut St, San Francisco, CA 94016" +292183,27in FHD Monitor,1,149.99,11/09/19 02:28,"848 Adams St, Los Angeles, CA 90001" +292184,USB-C Charging Cable,1,11.95,11/22/19 16:59,"259 Hickory St, New York City, NY 10001" +292185,Apple Airpods Headphones,1,150,11/20/19 18:33,"319 Lincoln St, Los Angeles, CA 90001" +292186,Apple Airpods Headphones,1,150,11/15/19 10:26,"925 Chestnut St, Austin, TX 73301" +292187,Flatscreen TV,1,300,11/27/19 17:36,"906 Jackson St, Portland, OR 97035" +292188,Wired Headphones,1,11.99,11/12/19 22:35,"262 Lake St, Dallas, TX 75001" +292189,Flatscreen TV,1,300,11/24/19 00:26,"975 Chestnut St, Portland, OR 97035" +292190,AAA Batteries (4-pack),3,2.99,11/23/19 10:06,"759 Meadow St, Los Angeles, CA 90001" +292191,Macbook Pro Laptop,1,1700,11/18/19 13:01,"316 7th St, New York City, NY 10001" +292192,AAA Batteries (4-pack),1,2.99,11/28/19 11:33,"599 Adams St, Los Angeles, CA 90001" +292193,Bose SoundSport Headphones,1,99.99,11/24/19 15:41,"761 Hickory St, Atlanta, GA 30301" +292194,Google Phone,1,600,11/22/19 08:01,"575 Walnut St, San Francisco, CA 94016" +292194,USB-C Charging Cable,1,11.95,11/22/19 08:01,"575 Walnut St, San Francisco, CA 94016" +292195,Wired Headphones,1,11.99,11/09/19 00:18,"894 Hickory St, Seattle, WA 98101" +292196,Macbook Pro Laptop,1,1700,11/21/19 15:55,"67 Church St, New York City, NY 10001" +292197,AAA Batteries (4-pack),1,2.99,11/17/19 10:42,"507 North St, San Francisco, CA 94016" +292197,Lightning Charging Cable,1,14.95,11/17/19 10:42,"507 North St, San Francisco, CA 94016" +292198,AA Batteries (4-pack),1,3.84,11/12/19 10:26,"948 Main St, Portland, OR 97035" +292199,34in Ultrawide Monitor,1,379.99,11/01/19 13:15,"634 Pine St, Portland, ME 04101" +292200,Bose SoundSport Headphones,1,99.99,11/18/19 08:40,"137 Cedar St, Atlanta, GA 30301" +292201,AAA Batteries (4-pack),1,2.99,11/13/19 14:25,"63 1st St, San Francisco, CA 94016" +292201,Wired Headphones,1,11.99,11/13/19 14:25,"63 1st St, San Francisco, CA 94016" +292202,AA Batteries (4-pack),1,3.84,11/14/19 11:28,"661 Adams St, Boston, MA 02215" +292203,Lightning Charging Cable,1,14.95,11/13/19 12:57,"451 Meadow St, Boston, MA 02215" +292204,AA Batteries (4-pack),1,3.84,11/30/19 13:42,"752 Walnut St, Boston, MA 02215" +292205,USB-C Charging Cable,1,11.95,11/30/19 10:21,"709 Sunset St, Seattle, WA 98101" +292206,Bose SoundSport Headphones,1,99.99,11/27/19 17:26,"127 7th St, Los Angeles, CA 90001" +292207,Wired Headphones,1,11.99,11/05/19 14:35,"160 Johnson St, Austin, TX 73301" +292208,27in 4K Gaming Monitor,1,389.99,11/06/19 09:12,"722 West St, Boston, MA 02215" +292209,Lightning Charging Cable,1,14.95,11/09/19 08:46,"435 Main St, New York City, NY 10001" +292210,AA Batteries (4-pack),1,3.84,11/21/19 08:25,"158 Walnut St, Boston, MA 02215" +292211,27in 4K Gaming Monitor,1,389.99,11/12/19 18:18,"562 12th St, New York City, NY 10001" +292212,AAA Batteries (4-pack),1,2.99,11/25/19 16:17,"964 1st St, Austin, TX 73301" +292213,Wired Headphones,1,11.99,11/11/19 18:35,"784 Lake St, Seattle, WA 98101" +292214,iPhone,1,700,11/14/19 23:17,"954 Park St, Portland, OR 97035" +292214,Lightning Charging Cable,1,14.95,11/14/19 23:17,"954 Park St, Portland, OR 97035" +292215,AAA Batteries (4-pack),4,2.99,11/24/19 10:09,"762 8th St, Austin, TX 73301" +292216,AA Batteries (4-pack),1,3.84,11/23/19 22:52,"341 Chestnut St, New York City, NY 10001" +292217,27in 4K Gaming Monitor,1,389.99,11/23/19 20:25,"550 Pine St, Dallas, TX 75001" +292218,Lightning Charging Cable,1,14.95,11/28/19 12:46,"840 North St, Seattle, WA 98101" +292219,ThinkPad Laptop,1,999.99,11/03/19 23:39,"551 North St, San Francisco, CA 94016" +292220,Lightning Charging Cable,1,14.95,11/29/19 21:20,"405 Walnut St, San Francisco, CA 94016" +292221,AA Batteries (4-pack),1,3.84,11/02/19 05:24,"768 Lakeview St, San Francisco, CA 94016" +292222,USB-C Charging Cable,1,11.95,11/13/19 14:18,"810 14th St, San Francisco, CA 94016" +292223,AA Batteries (4-pack),4,3.84,11/15/19 18:38,"877 North St, Portland, OR 97035" +292224,Bose SoundSport Headphones,1,99.99,11/13/19 09:14,"407 Jefferson St, Portland, ME 04101" +292225,Wired Headphones,1,11.99,11/11/19 10:41,"60 Willow St, Los Angeles, CA 90001" +292226,Bose SoundSport Headphones,1,99.99,11/06/19 21:25,"509 Hill St, Portland, OR 97035" +292227,iPhone,1,700,11/07/19 12:09,"244 Meadow St, Boston, MA 02215" +292228,AA Batteries (4-pack),2,3.84,11/15/19 23:26,"331 Cedar St, Los Angeles, CA 90001" +292229,Macbook Pro Laptop,1,1700,11/11/19 21:05,"534 West St, Los Angeles, CA 90001" +292230,USB-C Charging Cable,1,11.95,11/30/19 10:11,"396 Jackson St, San Francisco, CA 94016" +292231,AAA Batteries (4-pack),1,2.99,11/24/19 20:18,"525 Walnut St, San Francisco, CA 94016" +292232,27in FHD Monitor,1,149.99,11/14/19 09:35,"210 Elm St, Seattle, WA 98101" +292233,AA Batteries (4-pack),1,3.84,11/18/19 11:23,"886 4th St, Atlanta, GA 30301" +292234,Macbook Pro Laptop,1,1700,11/03/19 21:50,"917 6th St, Portland, ME 04101" +292235,20in Monitor,1,109.99,11/12/19 20:42,"506 13th St, Los Angeles, CA 90001" +292236,Lightning Charging Cable,1,14.95,11/25/19 12:23,"219 Cedar St, Los Angeles, CA 90001" +292237,34in Ultrawide Monitor,1,379.99,11/20/19 05:29,"239 Walnut St, Los Angeles, CA 90001" +292238,Wired Headphones,1,11.99,11/09/19 02:10,"692 Dogwood St, New York City, NY 10001" +292239,AAA Batteries (4-pack),1,2.99,11/21/19 12:49,"102 Chestnut St, Los Angeles, CA 90001" +292240,LG Dryer,1,600.0,11/13/19 09:16,"594 Hickory St, Seattle, WA 98101" +292241,Lightning Charging Cable,1,14.95,11/23/19 13:10,"165 Cherry St, San Francisco, CA 94016" +292242,AAA Batteries (4-pack),1,2.99,11/16/19 20:37,"924 10th St, San Francisco, CA 94016" +292243,AAA Batteries (4-pack),2,2.99,11/27/19 17:29,"491 River St, Dallas, TX 75001" +292244,Lightning Charging Cable,1,14.95,11/01/19 20:29,"595 Highland St, Austin, TX 73301" +292245,AAA Batteries (4-pack),1,2.99,11/29/19 09:50,"851 River St, San Francisco, CA 94016" +292246,USB-C Charging Cable,1,11.95,11/28/19 19:04,"724 Jackson St, Austin, TX 73301" +292247,Flatscreen TV,1,300,11/13/19 10:52,"536 Forest St, New York City, NY 10001" +292248,27in 4K Gaming Monitor,1,389.99,11/02/19 22:22,"714 Main St, San Francisco, CA 94016" +292249,Apple Airpods Headphones,1,150,11/08/19 20:56,"130 14th St, New York City, NY 10001" +292250,Apple Airpods Headphones,1,150,11/09/19 17:41,"546 4th St, Atlanta, GA 30301" +292251,Google Phone,1,600,11/06/19 13:33,"889 10th St, Boston, MA 02215" +292251,USB-C Charging Cable,1,11.95,11/06/19 13:33,"889 10th St, Boston, MA 02215" +292251,Wired Headphones,1,11.99,11/06/19 13:33,"889 10th St, Boston, MA 02215" +292252,USB-C Charging Cable,1,11.95,11/08/19 00:47,"830 Ridge St, New York City, NY 10001" +292253,Bose SoundSport Headphones,1,99.99,11/19/19 21:03,"470 Maple St, Los Angeles, CA 90001" +292254,Lightning Charging Cable,1,14.95,11/25/19 11:38,"389 9th St, Boston, MA 02215" +292255,AAA Batteries (4-pack),1,2.99,11/25/19 17:37,"309 Cedar St, San Francisco, CA 94016" +292256,Apple Airpods Headphones,1,150,11/23/19 21:07,"690 6th St, Seattle, WA 98101" +292256,Macbook Pro Laptop,1,1700,11/23/19 21:07,"690 6th St, Seattle, WA 98101" +292257,AAA Batteries (4-pack),3,2.99,11/15/19 10:12,"66 Chestnut St, Los Angeles, CA 90001" +292258,Wired Headphones,2,11.99,11/03/19 11:34,"818 5th St, Portland, OR 97035" +292259,Flatscreen TV,1,300,11/13/19 11:31,"841 River St, Portland, OR 97035" +292260,AA Batteries (4-pack),1,3.84,11/08/19 17:13,"766 Johnson St, Dallas, TX 75001" +292261,Wired Headphones,1,11.99,11/12/19 15:47,"66 Center St, San Francisco, CA 94016" +292262,AAA Batteries (4-pack),1,2.99,11/30/19 20:41,"529 9th St, Boston, MA 02215" +292263,USB-C Charging Cable,1,11.95,11/14/19 06:59,"995 Elm St, Dallas, TX 75001" +292264,34in Ultrawide Monitor,1,379.99,11/27/19 22:21,"363 Jefferson St, Portland, ME 04101" +292265,Bose SoundSport Headphones,1,99.99,11/08/19 11:36,"717 Adams St, Seattle, WA 98101" +292266,AAA Batteries (4-pack),2,2.99,11/29/19 19:26,"229 Chestnut St, Boston, MA 02215" +292267,ThinkPad Laptop,1,999.99,11/22/19 18:13,"335 8th St, Seattle, WA 98101" +292268,Apple Airpods Headphones,1,150,11/18/19 21:17,"730 Sunset St, Los Angeles, CA 90001" +292269,AA Batteries (4-pack),1,3.84,11/04/19 09:06,"610 12th St, Boston, MA 02215" +292270,27in 4K Gaming Monitor,1,389.99,11/04/19 00:09,"470 Johnson St, New York City, NY 10001" +292271,USB-C Charging Cable,1,11.95,11/09/19 10:18,"275 9th St, New York City, NY 10001" +,,,,, +292272,Macbook Pro Laptop,1,1700,11/01/19 13:36,"662 Spruce St, San Francisco, CA 94016" +292273,iPhone,1,700,11/14/19 13:47,"571 Ridge St, Atlanta, GA 30301" +292274,USB-C Charging Cable,1,11.95,11/10/19 12:28,"198 9th St, New York City, NY 10001" +292275,USB-C Charging Cable,2,11.95,11/03/19 23:40,"115 Adams St, New York City, NY 10001" +292276,USB-C Charging Cable,1,11.95,11/13/19 00:55,"219 2nd St, Portland, OR 97035" +292277,LG Dryer,1,600.0,11/22/19 19:46,"773 1st St, New York City, NY 10001" +292278,Lightning Charging Cable,1,14.95,11/27/19 22:57,"265 Highland St, Los Angeles, CA 90001" +292279,Apple Airpods Headphones,1,150,11/12/19 21:01,"669 13th St, Portland, OR 97035" +292280,iPhone,1,700,11/26/19 19:31,"382 9th St, Seattle, WA 98101" +292281,Apple Airpods Headphones,1,150,11/28/19 03:36,"662 Forest St, Los Angeles, CA 90001" +292282,Lightning Charging Cable,1,14.95,11/06/19 14:26,"431 7th St, New York City, NY 10001" +292283,20in Monitor,1,109.99,11/19/19 22:00,"749 Park St, San Francisco, CA 94016" +292284,27in 4K Gaming Monitor,1,389.99,11/20/19 13:30,"841 Ridge St, New York City, NY 10001" +292285,Wired Headphones,1,11.99,11/11/19 17:56,"818 8th St, Seattle, WA 98101" +292286,Wired Headphones,2,11.99,11/06/19 13:35,"677 Maple St, Atlanta, GA 30301" +292287,34in Ultrawide Monitor,1,379.99,11/12/19 20:03,"643 South St, New York City, NY 10001" +292288,Lightning Charging Cable,1,14.95,11/23/19 20:00,"565 5th St, Dallas, TX 75001" +292289,AA Batteries (4-pack),1,3.84,11/10/19 21:24,"969 1st St, Dallas, TX 75001" +292290,Wired Headphones,1,11.99,11/16/19 18:34,"332 2nd St, Los Angeles, CA 90001" +292291,Lightning Charging Cable,1,14.95,11/28/19 21:19,"594 Dogwood St, Seattle, WA 98101" +292292,34in Ultrawide Monitor,1,379.99,11/29/19 02:02,"169 13th St, New York City, NY 10001" +292293,Wired Headphones,1,11.99,11/08/19 22:16,"785 Cherry St, Seattle, WA 98101" +292294,Bose SoundSport Headphones,1,99.99,11/24/19 04:52,"146 Main St, Portland, ME 04101" +292295,Lightning Charging Cable,1,14.95,11/07/19 02:08,"81 Johnson St, Seattle, WA 98101" +292296,Wired Headphones,1,11.99,11/11/19 19:27,"688 Madison St, San Francisco, CA 94016" +292296,27in 4K Gaming Monitor,1,389.99,11/11/19 19:27,"688 Madison St, San Francisco, CA 94016" +292297,Bose SoundSport Headphones,1,99.99,11/16/19 19:59,"805 Lincoln St, Los Angeles, CA 90001" +292298,Apple Airpods Headphones,1,150,11/22/19 21:55,"731 Maple St, San Francisco, CA 94016" +292299,USB-C Charging Cable,1,11.95,11/18/19 07:23,"522 11th St, New York City, NY 10001" +292300,Lightning Charging Cable,2,14.95,11/24/19 18:38,"553 Hickory St, Los Angeles, CA 90001" +292301,Macbook Pro Laptop,1,1700,11/14/19 10:55,"84 Meadow St, Dallas, TX 75001" +292302,AAA Batteries (4-pack),2,2.99,11/11/19 19:42,"430 13th St, Boston, MA 02215" +292303,Lightning Charging Cable,1,14.95,11/03/19 11:46,"755 Highland St, Austin, TX 73301" +292304,AA Batteries (4-pack),1,3.84,11/15/19 10:05,"691 South St, Dallas, TX 75001" +292305,Lightning Charging Cable,1,14.95,11/07/19 17:49,"421 Highland St, Seattle, WA 98101" +292306,27in 4K Gaming Monitor,1,389.99,11/09/19 21:53,"423 10th St, Austin, TX 73301" +292307,AAA Batteries (4-pack),1,2.99,11/01/19 23:41,"635 Cherry St, Boston, MA 02215" +292307,Lightning Charging Cable,1,14.95,11/01/19 23:41,"635 Cherry St, Boston, MA 02215" +292308,AAA Batteries (4-pack),1,2.99,11/25/19 14:32,"797 6th St, Seattle, WA 98101" +292309,ThinkPad Laptop,1,999.99,11/11/19 10:03,"251 Ridge St, Dallas, TX 75001" +292310,AA Batteries (4-pack),1,3.84,11/29/19 14:42,"66 10th St, Portland, OR 97035" +292311,Lightning Charging Cable,1,14.95,11/26/19 06:01,"894 Walnut St, Los Angeles, CA 90001" +292311,Flatscreen TV,1,300,11/26/19 06:01,"894 Walnut St, Los Angeles, CA 90001" +292312,Apple Airpods Headphones,1,150,11/23/19 03:35,"962 11th St, Portland, OR 97035" +292313,Macbook Pro Laptop,1,1700,11/12/19 15:38,"378 Washington St, Austin, TX 73301" +292314,Apple Airpods Headphones,1,150,11/19/19 07:10,"654 Johnson St, Atlanta, GA 30301" +292315,LG Dryer,1,600.0,11/21/19 19:46,"911 Lake St, San Francisco, CA 94016" +292316,USB-C Charging Cable,1,11.95,11/24/19 15:28,"189 Forest St, Los Angeles, CA 90001" +292317,Wired Headphones,1,11.99,11/30/19 17:29,"183 Chestnut St, Boston, MA 02215" +292318,USB-C Charging Cable,1,11.95,11/08/19 19:08,"723 Jackson St, San Francisco, CA 94016" +292319,Apple Airpods Headphones,1,150,11/27/19 09:01,"134 South St, Boston, MA 02215" +292319,LG Dryer,1,600.0,11/27/19 09:01,"134 South St, Boston, MA 02215" +292320,Bose SoundSport Headphones,1,99.99,11/09/19 06:33,"390 Maple St, Seattle, WA 98101" +292321,Vareebadd Phone,1,400,11/19/19 11:54,"900 South St, Los Angeles, CA 90001" +292322,USB-C Charging Cable,1,11.95,11/04/19 16:27,"310 13th St, San Francisco, CA 94016" +292323,Lightning Charging Cable,2,14.95,11/09/19 06:16,"437 6th St, New York City, NY 10001" +292324,Lightning Charging Cable,1,14.95,11/22/19 14:28,"591 6th St, Los Angeles, CA 90001" +292325,Wired Headphones,1,11.99,11/27/19 09:51,"311 Elm St, Seattle, WA 98101" +292326,AAA Batteries (4-pack),1,2.99,11/25/19 20:14,"159 West St, San Francisco, CA 94016" +292327,Lightning Charging Cable,1,14.95,11/07/19 14:36,"904 Hickory St, San Francisco, CA 94016" +292328,AA Batteries (4-pack),3,3.84,11/07/19 15:41,"648 Adams St, San Francisco, CA 94016" +292329,Lightning Charging Cable,1,14.95,11/18/19 18:33,"400 4th St, New York City, NY 10001" +292330,AAA Batteries (4-pack),1,2.99,11/15/19 07:07,"891 Jefferson St, Seattle, WA 98101" +292331,Lightning Charging Cable,1,14.95,11/17/19 17:35,"16 9th St, San Francisco, CA 94016" +292332,Vareebadd Phone,1,400,11/22/19 08:56,"505 9th St, Dallas, TX 75001" +292332,USB-C Charging Cable,1,11.95,11/22/19 08:56,"505 9th St, Dallas, TX 75001" +292333,AAA Batteries (4-pack),1,2.99,11/03/19 12:27,"766 Adams St, San Francisco, CA 94016" +292334,27in FHD Monitor,1,149.99,11/25/19 01:23,"590 7th St, Portland, OR 97035" +292335,34in Ultrawide Monitor,1,379.99,11/07/19 12:48,"918 13th St, Portland, ME 04101" +292336,AA Batteries (4-pack),1,3.84,11/07/19 10:56,"485 Cherry St, Seattle, WA 98101" +292337,AA Batteries (4-pack),2,3.84,11/09/19 19:11,"998 Willow St, Boston, MA 02215" +292338,27in FHD Monitor,1,149.99,11/14/19 10:20,"277 Forest St, New York City, NY 10001" +292339,Macbook Pro Laptop,1,1700,11/21/19 15:21,"443 11th St, San Francisco, CA 94016" +292340,Bose SoundSport Headphones,1,99.99,11/13/19 11:13,"846 Lakeview St, New York City, NY 10001" +292341,USB-C Charging Cable,1,11.95,11/08/19 16:44,"334 4th St, San Francisco, CA 94016" +292342,AAA Batteries (4-pack),1,2.99,11/27/19 13:14,"302 Hill St, San Francisco, CA 94016" +292342,Bose SoundSport Headphones,1,99.99,11/27/19 13:14,"302 Hill St, San Francisco, CA 94016" +292343,Macbook Pro Laptop,1,1700,11/17/19 10:03,"640 11th St, San Francisco, CA 94016" +292344,AA Batteries (4-pack),1,3.84,11/15/19 00:26,"416 Ridge St, San Francisco, CA 94016" +292345,AAA Batteries (4-pack),2,2.99,11/28/19 23:50,"910 North St, San Francisco, CA 94016" +292346,27in 4K Gaming Monitor,1,389.99,11/30/19 11:41,"869 Church St, New York City, NY 10001" +292347,20in Monitor,3,109.99,11/29/19 11:20,"210 Forest St, Los Angeles, CA 90001" +292348,AAA Batteries (4-pack),2,2.99,11/16/19 14:31,"640 Sunset St, New York City, NY 10001" +292349,USB-C Charging Cable,1,11.95,11/11/19 19:50,"880 Madison St, Boston, MA 02215" +292350,Google Phone,1,600,11/30/19 13:06,"487 Lincoln St, New York City, NY 10001" +292351,AA Batteries (4-pack),1,3.84,11/28/19 13:28,"403 West St, San Francisco, CA 94016" +292352,AA Batteries (4-pack),1,3.84,11/11/19 14:46,"377 1st St, Boston, MA 02215" +292353,Apple Airpods Headphones,1,150,11/26/19 18:39,"398 Wilson St, Los Angeles, CA 90001" +292354,AA Batteries (4-pack),1,3.84,11/09/19 10:26,"602 8th St, Los Angeles, CA 90001" +292355,Bose SoundSport Headphones,1,99.99,11/23/19 09:24,"795 Highland St, New York City, NY 10001" +292356,Bose SoundSport Headphones,1,99.99,11/25/19 18:44,"706 13th St, San Francisco, CA 94016" +292357,Wired Headphones,1,11.99,11/30/19 20:54,"806 Jackson St, San Francisco, CA 94016" +292358,Google Phone,1,600,11/29/19 14:12,"487 7th St, Dallas, TX 75001" +292359,USB-C Charging Cable,1,11.95,11/27/19 11:15,"682 Center St, Dallas, TX 75001" +292360,Lightning Charging Cable,1,14.95,11/11/19 15:15,"602 Madison St, Los Angeles, CA 90001" +292361,iPhone,1,700,11/22/19 18:55,"226 9th St, Los Angeles, CA 90001" +292362,Wired Headphones,1,11.99,11/27/19 18:16,"100 10th St, Austin, TX 73301" +292363,Apple Airpods Headphones,1,150,11/07/19 10:23,"878 Jackson St, San Francisco, CA 94016" +292364,Apple Airpods Headphones,1,150,11/14/19 13:15,"401 Adams St, San Francisco, CA 94016" +292365,AA Batteries (4-pack),1,3.84,11/18/19 03:10,"78 Spruce St, New York City, NY 10001" +292366,Lightning Charging Cable,1,14.95,11/26/19 13:22,"100 Cedar St, Los Angeles, CA 90001" +292367,AAA Batteries (4-pack),1,2.99,11/25/19 23:27,"570 7th St, San Francisco, CA 94016" +292368,AA Batteries (4-pack),1,3.84,11/09/19 18:47,"283 Lincoln St, Austin, TX 73301" +292369,AA Batteries (4-pack),1,3.84,11/25/19 06:39,"102 South St, Boston, MA 02215" +292370,27in FHD Monitor,1,149.99,11/27/19 17:08,"842 12th St, Boston, MA 02215" +292371,USB-C Charging Cable,1,11.95,11/23/19 22:18,"884 Wilson St, Seattle, WA 98101" +292372,USB-C Charging Cable,1,11.95,11/05/19 22:38,"224 6th St, San Francisco, CA 94016" +292373,Lightning Charging Cable,1,14.95,11/08/19 11:14,"389 Walnut St, Boston, MA 02215" +292374,Wired Headphones,1,11.99,11/05/19 15:34,"775 Lake St, Boston, MA 02215" +292375,Apple Airpods Headphones,1,150,11/07/19 12:57,"974 12th St, Boston, MA 02215" +292376,AA Batteries (4-pack),1,3.84,11/08/19 16:26,"895 6th St, New York City, NY 10001" +292377,Wired Headphones,1,11.99,11/07/19 19:26,"184 Center St, Boston, MA 02215" +292378,Bose SoundSport Headphones,1,99.99,11/04/19 07:16,"972 1st St, Austin, TX 73301" +292379,AAA Batteries (4-pack),2,2.99,11/03/19 21:40,"596 Sunset St, San Francisco, CA 94016" +292380,USB-C Charging Cable,1,11.95,11/17/19 07:11,"742 Wilson St, Los Angeles, CA 90001" +292381,Apple Airpods Headphones,1,150,11/22/19 08:41,"70 9th St, Los Angeles, CA 90001" +292382,iPhone,1,700,11/18/19 16:46,"232 11th St, San Francisco, CA 94016" +292382,Apple Airpods Headphones,1,150,11/18/19 16:46,"232 11th St, San Francisco, CA 94016" +292383,27in FHD Monitor,1,149.99,11/13/19 12:22,"951 Walnut St, Atlanta, GA 30301" +292384,Lightning Charging Cable,1,14.95,11/04/19 09:14,"877 Washington St, Austin, TX 73301" +292385,Bose SoundSport Headphones,1,99.99,11/03/19 12:34,"243 Park St, Los Angeles, CA 90001" +292386,AA Batteries (4-pack),1,3.84,11/14/19 17:47,"98 Jefferson St, Portland, ME 04101" +292387,20in Monitor,1,109.99,11/01/19 06:35,"902 North St, Los Angeles, CA 90001" +292388,AAA Batteries (4-pack),1,2.99,11/05/19 12:53,"396 Forest St, Los Angeles, CA 90001" +292389,USB-C Charging Cable,1,11.95,11/19/19 08:10,"60 9th St, Los Angeles, CA 90001" +292390,Wired Headphones,1,11.99,11/17/19 14:28,"184 10th St, Los Angeles, CA 90001" +292391,Bose SoundSport Headphones,1,99.99,11/14/19 00:46,"601 Church St, Dallas, TX 75001" +292392,Bose SoundSport Headphones,1,99.99,11/05/19 20:44,"772 Lincoln St, Portland, OR 97035" +292393,Flatscreen TV,1,300,11/29/19 10:50,"463 Meadow St, Dallas, TX 75001" +292394,AA Batteries (4-pack),1,3.84,11/29/19 13:03,"91 11th St, San Francisco, CA 94016" +292395,Google Phone,1,600,11/26/19 05:48,"751 5th St, Dallas, TX 75001" +292396,27in 4K Gaming Monitor,1,389.99,11/19/19 09:04,"529 12th St, Los Angeles, CA 90001" +292397,LG Washing Machine,1,600.0,11/17/19 11:16,"50 14th St, Seattle, WA 98101" +292398,Lightning Charging Cable,1,14.95,11/22/19 10:39,"835 6th St, Portland, OR 97035" +292399,AA Batteries (4-pack),1,3.84,11/21/19 15:50,"297 Lincoln St, Austin, TX 73301" +292400,LG Washing Machine,1,600.0,11/04/19 15:03,"820 Wilson St, Los Angeles, CA 90001" +292401,AA Batteries (4-pack),1,3.84,11/07/19 14:02,"557 Lincoln St, Boston, MA 02215" +292402,Vareebadd Phone,1,400,11/10/19 21:32,"798 Ridge St, Portland, OR 97035" +292403,Lightning Charging Cable,1,14.95,11/05/19 12:15,"555 Dogwood St, San Francisco, CA 94016" +292404,USB-C Charging Cable,2,11.95,11/15/19 10:22,"518 11th St, Los Angeles, CA 90001" +292405,USB-C Charging Cable,1,11.95,11/22/19 21:13,"557 Main St, Dallas, TX 75001" +292406,USB-C Charging Cable,1,11.95,11/27/19 21:45,"716 13th St, San Francisco, CA 94016" +292407,Lightning Charging Cable,1,14.95,11/24/19 16:45,"878 10th St, Dallas, TX 75001" +292408,Apple Airpods Headphones,1,150,11/04/19 07:17,"576 Hill St, Los Angeles, CA 90001" +292409,Wired Headphones,1,11.99,11/30/19 12:21,"644 Madison St, Los Angeles, CA 90001" +292410,AAA Batteries (4-pack),3,2.99,11/08/19 05:28,"239 Adams St, Seattle, WA 98101" +292411,Bose SoundSport Headphones,1,99.99,11/09/19 11:23,"22 South St, Portland, ME 04101" +292411,Macbook Pro Laptop,1,1700,11/09/19 11:23,"22 South St, Portland, ME 04101" +292412,Wired Headphones,1,11.99,11/03/19 08:47,"600 Madison St, Los Angeles, CA 90001" +292413,27in FHD Monitor,1,149.99,11/02/19 21:00,"722 Pine St, New York City, NY 10001" +292414,27in 4K Gaming Monitor,1,389.99,11/03/19 03:17,"580 14th St, Austin, TX 73301" +292415,USB-C Charging Cable,1,11.95,11/09/19 11:19,"42 Meadow St, San Francisco, CA 94016" +292416,27in 4K Gaming Monitor,1,389.99,11/17/19 21:58,"244 Spruce St, San Francisco, CA 94016" +292417,Lightning Charging Cable,1,14.95,11/28/19 22:21,"342 Elm St, New York City, NY 10001" +292418,AAA Batteries (4-pack),1,2.99,11/13/19 19:45,"45 9th St, New York City, NY 10001" +292419,27in 4K Gaming Monitor,1,389.99,11/22/19 19:50,"616 2nd St, Dallas, TX 75001" +292420,Lightning Charging Cable,1,14.95,11/03/19 18:31,"846 4th St, Boston, MA 02215" +292421,Macbook Pro Laptop,1,1700,11/14/19 07:29,"514 Lakeview St, Los Angeles, CA 90001" +292422,USB-C Charging Cable,2,11.95,11/29/19 23:18,"815 Washington St, Dallas, TX 75001" +292423,Apple Airpods Headphones,1,150,11/08/19 19:37,"516 Center St, Seattle, WA 98101" +292424,Apple Airpods Headphones,1,150,11/26/19 09:31,"664 Forest St, Boston, MA 02215" +292425,USB-C Charging Cable,1,11.95,11/01/19 20:30,"203 North St, Boston, MA 02215" +292426,27in 4K Gaming Monitor,1,389.99,11/25/19 00:29,"802 Main St, Atlanta, GA 30301" +292427,USB-C Charging Cable,1,11.95,11/21/19 13:30,"723 Church St, Portland, OR 97035" +292428,iPhone,1,700,11/14/19 10:35,"616 Madison St, San Francisco, CA 94016" +292429,20in Monitor,1,109.99,11/16/19 11:09,"574 4th St, New York City, NY 10001" +292430,Flatscreen TV,1,300,11/11/19 15:14,"712 Center St, New York City, NY 10001" +292431,Apple Airpods Headphones,1,150,11/14/19 13:17,"746 Cherry St, Portland, OR 97035" +292432,AA Batteries (4-pack),1,3.84,11/17/19 09:21,"110 Sunset St, New York City, NY 10001" +292433,USB-C Charging Cable,1,11.95,11/24/19 02:37,"528 Church St, Atlanta, GA 30301" +292434,USB-C Charging Cable,1,11.95,11/22/19 16:08,"319 Hickory St, Los Angeles, CA 90001" +292435,Vareebadd Phone,1,400,11/14/19 18:19,"70 Forest St, San Francisco, CA 94016" +292436,Macbook Pro Laptop,1,1700,11/18/19 20:58,"694 Maple St, Boston, MA 02215" +292437,Flatscreen TV,1,300,11/18/19 14:14,"916 Pine St, San Francisco, CA 94016" +292438,USB-C Charging Cable,1,11.95,11/26/19 02:57,"118 Lake St, Boston, MA 02215" +292439,Lightning Charging Cable,1,14.95,11/05/19 16:07,"491 Walnut St, Boston, MA 02215" +292440,27in FHD Monitor,1,149.99,11/08/19 21:01,"765 Maple St, Boston, MA 02215" +292441,Google Phone,1,600,11/14/19 18:56,"327 Willow St, Los Angeles, CA 90001" +292442,34in Ultrawide Monitor,1,379.99,11/18/19 07:24,"453 Spruce St, Los Angeles, CA 90001" +292443,AA Batteries (4-pack),1,3.84,11/15/19 11:12,"408 14th St, Los Angeles, CA 90001" +292444,AAA Batteries (4-pack),1,2.99,11/15/19 14:55,"811 Washington St, Dallas, TX 75001" +292445,Lightning Charging Cable,1,14.95,11/07/19 20:22,"485 4th St, Atlanta, GA 30301" +292446,Wired Headphones,1,11.99,11/30/19 08:01,"783 4th St, San Francisco, CA 94016" +292447,AAA Batteries (4-pack),1,2.99,11/02/19 01:40,"139 6th St, Los Angeles, CA 90001" +292448,AA Batteries (4-pack),1,3.84,11/05/19 17:20,"964 Jefferson St, New York City, NY 10001" +292449,Wired Headphones,1,11.99,11/18/19 14:59,"413 Main St, New York City, NY 10001" +292450,USB-C Charging Cable,1,11.95,11/09/19 19:17,"609 14th St, San Francisco, CA 94016" +292451,USB-C Charging Cable,1,11.95,11/12/19 17:27,"124 Jackson St, Seattle, WA 98101" +292452,Bose SoundSport Headphones,1,99.99,11/25/19 11:58,"477 West St, Dallas, TX 75001" +292453,Wired Headphones,1,11.99,11/17/19 19:34,"349 River St, San Francisco, CA 94016" +292454,AA Batteries (4-pack),1,3.84,11/13/19 12:38,"58 Hill St, Los Angeles, CA 90001" +292455,Apple Airpods Headphones,1,150,11/24/19 23:28,"908 7th St, Atlanta, GA 30301" +292456,iPhone,1,700,11/30/19 06:04,"482 13th St, Portland, ME 04101" +292457,AA Batteries (4-pack),1,3.84,11/28/19 18:43,"150 Pine St, Portland, OR 97035" +292458,Macbook Pro Laptop,1,1700,11/19/19 09:21,"731 Adams St, San Francisco, CA 94016" +292459,27in FHD Monitor,1,149.99,11/17/19 17:02,"613 Meadow St, Atlanta, GA 30301" +292460,Bose SoundSport Headphones,1,99.99,11/07/19 19:41,"926 Hill St, New York City, NY 10001" +292461,AA Batteries (4-pack),1,3.84,11/19/19 14:55,"601 Maple St, San Francisco, CA 94016" +292462,Apple Airpods Headphones,1,150,11/21/19 12:09,"412 2nd St, Atlanta, GA 30301" +292463,Wired Headphones,3,11.99,11/04/19 18:41,"536 14th St, Los Angeles, CA 90001" +292464,Bose SoundSport Headphones,1,99.99,11/14/19 12:19,"810 Sunset St, Los Angeles, CA 90001" +292465,Wired Headphones,1,11.99,11/04/19 12:23,"940 Dogwood St, Los Angeles, CA 90001" +292466,iPhone,1,700,11/20/19 06:46,"951 Dogwood St, Atlanta, GA 30301" +292467,34in Ultrawide Monitor,1,379.99,11/10/19 15:35,"381 Elm St, Atlanta, GA 30301" +292468,AA Batteries (4-pack),1,3.84,11/24/19 21:39,"183 10th St, New York City, NY 10001" +292469,Wired Headphones,1,11.99,11/28/19 16:43,"813 Madison St, Portland, OR 97035" +292470,Wired Headphones,3,11.99,11/05/19 15:00,"815 Forest St, Los Angeles, CA 90001" +292471,USB-C Charging Cable,1,11.95,11/15/19 22:42,"895 6th St, New York City, NY 10001" +292472,Lightning Charging Cable,1,14.95,11/27/19 12:34,"735 Center St, Los Angeles, CA 90001" +292473,Wired Headphones,1,11.99,11/24/19 13:29,"364 Johnson St, Los Angeles, CA 90001" +292474,27in FHD Monitor,1,149.99,11/05/19 16:05,"228 South St, New York City, NY 10001" +292475,Google Phone,1,600,11/18/19 14:58,"11 Lakeview St, San Francisco, CA 94016" +292476,AA Batteries (4-pack),1,3.84,11/07/19 20:38,"260 7th St, San Francisco, CA 94016" +292477,Apple Airpods Headphones,1,150,11/22/19 18:51,"392 Maple St, Boston, MA 02215" +292478,Apple Airpods Headphones,1,150,11/05/19 20:17,"290 Madison St, Austin, TX 73301" +292479,Flatscreen TV,1,300,11/10/19 21:03,"190 13th St, San Francisco, CA 94016" +292480,27in 4K Gaming Monitor,1,389.99,11/21/19 15:27,"61 Hickory St, Dallas, TX 75001" +292481,Wired Headphones,1,11.99,11/25/19 10:18,"272 Adams St, Portland, ME 04101" +292482,AAA Batteries (4-pack),2,2.99,11/07/19 15:43,"758 Meadow St, Los Angeles, CA 90001" +292483,Lightning Charging Cable,1,14.95,11/15/19 13:14,"915 14th St, Portland, ME 04101" +292484,Google Phone,1,600,11/02/19 00:11,"336 2nd St, Portland, OR 97035" +292485,Apple Airpods Headphones,1,150,11/30/19 18:39,"234 8th St, Dallas, TX 75001" +292486,Lightning Charging Cable,1,14.95,11/02/19 15:26,"836 Hill St, San Francisco, CA 94016" +292487,iPhone,1,700,11/09/19 10:34,"32 Center St, San Francisco, CA 94016" +292487,Wired Headphones,1,11.99,11/09/19 10:34,"32 Center St, San Francisco, CA 94016" +292488,Lightning Charging Cable,1,14.95,11/16/19 00:13,"332 8th St, San Francisco, CA 94016" +292489,Flatscreen TV,1,300,11/23/19 19:39,"92 Center St, Atlanta, GA 30301" +292490,Apple Airpods Headphones,1,150,11/25/19 14:30,"569 Maple St, San Francisco, CA 94016" +292491,Lightning Charging Cable,1,14.95,11/05/19 20:45,"208 South St, Austin, TX 73301" +292492,Apple Airpods Headphones,1,150,11/21/19 16:34,"814 13th St, New York City, NY 10001" +292493,AAA Batteries (4-pack),1,2.99,11/16/19 20:55,"341 Elm St, Los Angeles, CA 90001" +292494,Google Phone,1,600,11/22/19 13:55,"874 River St, San Francisco, CA 94016" +292495,USB-C Charging Cable,1,11.95,11/02/19 09:32,"806 Meadow St, Atlanta, GA 30301" +292496,Apple Airpods Headphones,1,150,11/27/19 10:58,"297 Forest St, San Francisco, CA 94016" +292497,AAA Batteries (4-pack),1,2.99,11/05/19 06:27,"178 Jefferson St, New York City, NY 10001" +292498,Bose SoundSport Headphones,1,99.99,11/17/19 13:51,"574 Lake St, Boston, MA 02215" +292499,27in 4K Gaming Monitor,1,389.99,11/13/19 15:37,"533 Elm St, Los Angeles, CA 90001" +292500,Apple Airpods Headphones,1,150,11/02/19 15:45,"808 Dogwood St, San Francisco, CA 94016" +292501,AAA Batteries (4-pack),1,2.99,11/21/19 14:26,"649 Walnut St, San Francisco, CA 94016" +292502,Flatscreen TV,1,300,11/29/19 13:15,"996 Wilson St, San Francisco, CA 94016" +292503,Wired Headphones,1,11.99,11/18/19 10:31,"117 10th St, San Francisco, CA 94016" +292504,USB-C Charging Cable,1,11.95,11/22/19 16:05,"277 Cherry St, Los Angeles, CA 90001" +292505,Lightning Charging Cable,1,14.95,11/23/19 11:49,"50 South St, San Francisco, CA 94016" +292506,Lightning Charging Cable,1,14.95,11/11/19 18:15,"968 Adams St, New York City, NY 10001" +292507,Bose SoundSport Headphones,1,99.99,11/26/19 15:15,"499 Pine St, Boston, MA 02215" +292508,iPhone,1,700,11/11/19 21:18,"51 6th St, San Francisco, CA 94016" +292509,34in Ultrawide Monitor,1,379.99,11/13/19 12:23,"396 North St, New York City, NY 10001" +292510,20in Monitor,1,109.99,11/09/19 12:50,"52 Forest St, Atlanta, GA 30301" +292511,Lightning Charging Cable,1,14.95,11/13/19 12:57,"603 Pine St, Dallas, TX 75001" +292512,34in Ultrawide Monitor,1,379.99,11/04/19 12:00,"649 Jefferson St, Seattle, WA 98101" +292513,AAA Batteries (4-pack),1,2.99,11/03/19 09:52,"408 Forest St, Seattle, WA 98101" +292514,USB-C Charging Cable,1,11.95,11/26/19 20:40,"671 Park St, Austin, TX 73301" +292515,AA Batteries (4-pack),2,3.84,11/06/19 22:55,"224 Jackson St, San Francisco, CA 94016" +292516,USB-C Charging Cable,1,11.95,11/11/19 16:03,"356 4th St, Boston, MA 02215" +292517,Lightning Charging Cable,1,14.95,11/27/19 18:24,"837 Maple St, San Francisco, CA 94016" +292518,AAA Batteries (4-pack),1,2.99,11/30/19 10:50,"470 Main St, Los Angeles, CA 90001" +292519,ThinkPad Laptop,1,999.99,11/23/19 07:17,"437 8th St, Seattle, WA 98101" +292520,Wired Headphones,1,11.99,11/24/19 00:47,"266 10th St, San Francisco, CA 94016" +292521,Wired Headphones,1,11.99,11/21/19 14:24,"375 Dogwood St, Seattle, WA 98101" +292522,34in Ultrawide Monitor,1,379.99,11/14/19 23:25,"87 4th St, Atlanta, GA 30301" +292523,27in 4K Gaming Monitor,1,389.99,11/21/19 09:22,"924 Elm St, Boston, MA 02215" +292524,Macbook Pro Laptop,1,1700,11/15/19 16:13,"601 9th St, New York City, NY 10001" +292525,AA Batteries (4-pack),2,3.84,11/05/19 16:23,"973 13th St, Atlanta, GA 30301" +292526,AAA Batteries (4-pack),1,2.99,11/07/19 12:50,"611 2nd St, Los Angeles, CA 90001" +292527,Wired Headphones,1,11.99,11/22/19 23:23,"653 14th St, San Francisco, CA 94016" +292528,27in FHD Monitor,1,149.99,11/11/19 11:18,"509 Hill St, New York City, NY 10001" +292529,Lightning Charging Cable,1,14.95,11/09/19 14:20,"648 6th St, New York City, NY 10001" +292530,AAA Batteries (4-pack),1,2.99,11/21/19 14:47,"245 Meadow St, Boston, MA 02215" +292531,Wired Headphones,1,11.99,11/27/19 07:04,"530 5th St, Austin, TX 73301" +292531,34in Ultrawide Monitor,1,379.99,11/27/19 07:04,"530 5th St, Austin, TX 73301" +292532,AAA Batteries (4-pack),1,2.99,11/27/19 11:21,"808 Spruce St, San Francisco, CA 94016" +292533,AAA Batteries (4-pack),1,2.99,11/03/19 09:18,"90 Lakeview St, New York City, NY 10001" +292534,Bose SoundSport Headphones,1,99.99,11/14/19 15:55,"881 12th St, Portland, OR 97035" +292535,USB-C Charging Cable,1,11.95,11/14/19 16:46,"802 Chestnut St, Portland, ME 04101" +292536,34in Ultrawide Monitor,1,379.99,11/04/19 21:40,"195 Lincoln St, Los Angeles, CA 90001" +292537,AAA Batteries (4-pack),1,2.99,11/22/19 16:49,"290 Meadow St, Los Angeles, CA 90001" +292538,34in Ultrawide Monitor,1,379.99,11/17/19 08:46,"757 7th St, Los Angeles, CA 90001" +292539,USB-C Charging Cable,1,11.95,11/09/19 14:42,"749 10th St, New York City, NY 10001" +292540,Apple Airpods Headphones,1,150,11/08/19 23:23,"261 10th St, New York City, NY 10001" +292540,Google Phone,1,600,11/08/19 23:23,"261 10th St, New York City, NY 10001" +292541,34in Ultrawide Monitor,1,379.99,11/25/19 23:54,"267 Park St, San Francisco, CA 94016" +292542,Bose SoundSport Headphones,1,99.99,11/04/19 17:51,"511 6th St, San Francisco, CA 94016" +292543,AA Batteries (4-pack),1,3.84,11/02/19 19:48,"51 Elm St, Austin, TX 73301" +292544,AAA Batteries (4-pack),3,2.99,11/26/19 20:53,"780 Spruce St, San Francisco, CA 94016" +292545,Apple Airpods Headphones,1,150,11/24/19 13:54,"630 Adams St, Portland, ME 04101" +292546,Bose SoundSport Headphones,1,99.99,11/27/19 23:24,"343 14th St, Los Angeles, CA 90001" +292547,Macbook Pro Laptop,1,1700,11/08/19 12:16,"350 13th St, San Francisco, CA 94016" +292548,Wired Headphones,1,11.99,11/12/19 12:35,"403 Jackson St, Dallas, TX 75001" +292549,Google Phone,1,600,11/26/19 13:36,"741 Dogwood St, Atlanta, GA 30301" +292550,20in Monitor,1,109.99,11/04/19 16:01,"85 Center St, San Francisco, CA 94016" +292551,AAA Batteries (4-pack),1,2.99,11/19/19 19:06,"230 8th St, Atlanta, GA 30301" +292552,AAA Batteries (4-pack),1,2.99,11/10/19 09:26,"835 Meadow St, Los Angeles, CA 90001" +292553,Wired Headphones,1,11.99,11/10/19 18:19,"573 Dogwood St, Los Angeles, CA 90001" +292553,AA Batteries (4-pack),1,3.84,11/10/19 18:19,"573 Dogwood St, Los Angeles, CA 90001" +292554,AA Batteries (4-pack),2,3.84,11/10/19 17:36,"334 Spruce St, San Francisco, CA 94016" +292555,27in 4K Gaming Monitor,1,389.99,11/01/19 10:35,"723 14th St, Boston, MA 02215" +292556,27in FHD Monitor,1,149.99,11/26/19 08:53,"274 North St, San Francisco, CA 94016" +292557,LG Washing Machine,1,600.0,11/21/19 17:10,"995 South St, Portland, OR 97035" +292558,AAA Batteries (4-pack),1,2.99,11/24/19 14:54,"595 Jefferson St, Atlanta, GA 30301" +292559,AAA Batteries (4-pack),1,2.99,11/19/19 09:34,"493 Church St, Los Angeles, CA 90001" +292560,Apple Airpods Headphones,1,150,11/10/19 07:45,"589 Main St, San Francisco, CA 94016" +292561,Wired Headphones,1,11.99,11/03/19 22:03,"814 Park St, Seattle, WA 98101" +292562,AA Batteries (4-pack),2,3.84,11/30/19 17:50,"947 Madison St, Atlanta, GA 30301" +292563,AAA Batteries (4-pack),2,2.99,11/17/19 06:18,"958 9th St, Portland, OR 97035" +292564,AA Batteries (4-pack),2,3.84,11/20/19 19:47,"642 8th St, Seattle, WA 98101" +292565,AAA Batteries (4-pack),1,2.99,11/19/19 17:24,"412 Dogwood St, Los Angeles, CA 90001" +292566,20in Monitor,1,109.99,11/13/19 14:53,"553 6th St, Portland, OR 97035" +292567,Google Phone,1,600,11/10/19 00:08,"911 Lincoln St, Portland, OR 97035" +292568,Lightning Charging Cable,1,14.95,11/15/19 22:01,"579 West St, New York City, NY 10001" +292569,27in 4K Gaming Monitor,1,389.99,11/14/19 17:53,"133 Jefferson St, San Francisco, CA 94016" +292570,Vareebadd Phone,1,400,11/10/19 23:03,"651 Jackson St, Los Angeles, CA 90001" +292571,Lightning Charging Cable,1,14.95,11/02/19 02:49,"378 Forest St, San Francisco, CA 94016" +292572,USB-C Charging Cable,1,11.95,11/10/19 18:24,"832 West St, Portland, OR 97035" +292573,Macbook Pro Laptop,1,1700,11/18/19 18:38,"734 Willow St, San Francisco, CA 94016" +292574,Lightning Charging Cable,1,14.95,11/04/19 18:16,"304 Lincoln St, San Francisco, CA 94016" +292575,USB-C Charging Cable,1,11.95,11/10/19 18:27,"713 Church St, Portland, OR 97035" +292576,27in FHD Monitor,1,149.99,11/12/19 12:24,"454 Washington St, San Francisco, CA 94016" +292577,AAA Batteries (4-pack),3,2.99,11/02/19 17:22,"183 8th St, Austin, TX 73301" +292578,Google Phone,1,600,11/24/19 02:12,"431 Main St, San Francisco, CA 94016" +292578,USB-C Charging Cable,1,11.95,11/24/19 02:12,"431 Main St, San Francisco, CA 94016" +292579,AA Batteries (4-pack),1,3.84,11/13/19 00:54,"867 Hickory St, Atlanta, GA 30301" +292580,iPhone,1,700,11/27/19 08:57,"491 Meadow St, San Francisco, CA 94016" +292581,ThinkPad Laptop,1,999.99,11/19/19 21:40,"556 2nd St, San Francisco, CA 94016" +292582,AA Batteries (4-pack),1,3.84,11/14/19 21:59,"879 Chestnut St, Los Angeles, CA 90001" +292583,27in FHD Monitor,1,149.99,11/16/19 09:49,"924 1st St, San Francisco, CA 94016" +292584,AAA Batteries (4-pack),1,2.99,11/26/19 18:08,"807 Cedar St, New York City, NY 10001" +292585,27in FHD Monitor,1,149.99,11/20/19 08:04,"408 Maple St, Los Angeles, CA 90001" +292586,AA Batteries (4-pack),2,3.84,11/27/19 11:25,"716 Maple St, Boston, MA 02215" +292587,ThinkPad Laptop,1,999.99,11/30/19 11:02,"324 Adams St, Austin, TX 73301" +292588,Wired Headphones,1,11.99,11/18/19 07:32,"205 Forest St, San Francisco, CA 94016" +292589,iPhone,1,700,11/27/19 12:17,"916 10th St, Los Angeles, CA 90001" +292590,Lightning Charging Cable,1,14.95,11/14/19 17:42,"772 Hickory St, New York City, NY 10001" +292591,Lightning Charging Cable,1,14.95,11/06/19 10:29,"973 Willow St, Los Angeles, CA 90001" +292591,Wired Headphones,1,11.99,11/06/19 10:29,"973 Willow St, Los Angeles, CA 90001" +292592,AAA Batteries (4-pack),1,2.99,11/21/19 13:09,"875 Pine St, Seattle, WA 98101" +292593,Bose SoundSport Headphones,1,99.99,11/01/19 14:15,"124 10th St, Los Angeles, CA 90001" +292594,Lightning Charging Cable,2,14.95,11/18/19 10:22,"640 4th St, New York City, NY 10001" +292595,27in FHD Monitor,1,149.99,11/18/19 19:07,"458 Spruce St, San Francisco, CA 94016" +292596,iPhone,1,700,11/15/19 22:36,"102 Hill St, Dallas, TX 75001" +292596,Lightning Charging Cable,1,14.95,11/15/19 22:36,"102 Hill St, Dallas, TX 75001" +292597,Lightning Charging Cable,1,14.95,11/07/19 17:14,"2 4th St, Portland, OR 97035" +292598,AAA Batteries (4-pack),1,2.99,11/17/19 14:48,"314 4th St, Boston, MA 02215" +292599,Bose SoundSport Headphones,1,99.99,11/04/19 14:06,"759 Chestnut St, Atlanta, GA 30301" +,,,,, +292600,AAA Batteries (4-pack),1,2.99,11/10/19 21:24,"365 Maple St, Los Angeles, CA 90001" +292601,Lightning Charging Cable,1,14.95,11/09/19 19:14,"862 7th St, Austin, TX 73301" +292602,27in FHD Monitor,1,149.99,11/25/19 20:27,"986 Ridge St, New York City, NY 10001" +292603,AA Batteries (4-pack),1,3.84,11/25/19 13:22,"550 Pine St, San Francisco, CA 94016" +292604,Flatscreen TV,1,300,11/13/19 11:30,"672 Forest St, San Francisco, CA 94016" +292605,Flatscreen TV,1,300,11/01/19 18:51,"128 4th St, Portland, OR 97035" +292606,USB-C Charging Cable,1,11.95,11/02/19 17:17,"708 Center St, Seattle, WA 98101" +292607,Bose SoundSport Headphones,1,99.99,11/09/19 11:57,"2 Wilson St, New York City, NY 10001" +292608,27in FHD Monitor,1,149.99,11/01/19 11:09,"298 6th St, Portland, OR 97035" +292609,Lightning Charging Cable,1,14.95,11/28/19 11:57,"488 Forest St, San Francisco, CA 94016" +292610,Macbook Pro Laptop,1,1700,11/09/19 13:15,"620 Center St, San Francisco, CA 94016" +292611,Flatscreen TV,1,300,11/01/19 12:04,"709 Sunset St, Atlanta, GA 30301" +292612,Wired Headphones,1,11.99,11/25/19 16:13,"81 8th St, San Francisco, CA 94016" +292613,AAA Batteries (4-pack),1,2.99,11/28/19 19:01,"933 14th St, Los Angeles, CA 90001" +292614,AA Batteries (4-pack),1,3.84,11/15/19 22:52,"496 Cherry St, New York City, NY 10001" +292615,AA Batteries (4-pack),1,3.84,11/25/19 22:28,"814 Meadow St, Seattle, WA 98101" +292616,Lightning Charging Cable,1,14.95,11/21/19 19:47,"289 Adams St, Seattle, WA 98101" +292617,Bose SoundSport Headphones,1,99.99,11/07/19 15:18,"10 1st St, Dallas, TX 75001" +292618,AA Batteries (4-pack),1,3.84,11/05/19 11:40,"972 West St, Los Angeles, CA 90001" +292619,iPhone,1,700,11/16/19 18:55,"704 Forest St, Los Angeles, CA 90001" +292619,Lightning Charging Cable,1,14.95,11/16/19 18:55,"704 Forest St, Los Angeles, CA 90001" +292620,Vareebadd Phone,1,400,11/06/19 21:24,"670 Walnut St, San Francisco, CA 94016" +292620,USB-C Charging Cable,1,11.95,11/06/19 21:24,"670 Walnut St, San Francisco, CA 94016" +292621,Google Phone,1,600,11/15/19 23:38,"800 Lincoln St, Portland, OR 97035" +292622,Lightning Charging Cable,1,14.95,11/28/19 12:37,"655 Forest St, New York City, NY 10001" +292623,Wired Headphones,1,11.99,11/25/19 20:23,"481 Hickory St, New York City, NY 10001" +292624,Vareebadd Phone,1,400,11/11/19 13:02,"516 Lincoln St, San Francisco, CA 94016" +292625,AAA Batteries (4-pack),1,2.99,11/28/19 08:37,"613 7th St, San Francisco, CA 94016" +292626,Vareebadd Phone,1,400,11/16/19 13:20,"601 Park St, San Francisco, CA 94016" +292627,27in 4K Gaming Monitor,1,389.99,11/28/19 21:30,"879 North St, Atlanta, GA 30301" +292628,iPhone,1,700,11/26/19 10:15,"771 Willow St, San Francisco, CA 94016" +292629,USB-C Charging Cable,1,11.95,11/04/19 19:21,"348 Hickory St, Los Angeles, CA 90001" +292630,Apple Airpods Headphones,1,150,11/10/19 13:16,"759 Cherry St, Dallas, TX 75001" +292631,AA Batteries (4-pack),1,3.84,11/21/19 16:29,"490 Church St, Austin, TX 73301" +292632,Lightning Charging Cable,1,14.95,11/17/19 18:37,"64 Wilson St, San Francisco, CA 94016" +292633,USB-C Charging Cable,1,11.95,11/02/19 21:53,"928 7th St, Seattle, WA 98101" +292634,AAA Batteries (4-pack),2,2.99,11/11/19 12:33,"190 Sunset St, Portland, OR 97035" +292635,AAA Batteries (4-pack),1,2.99,11/22/19 20:46,"660 Lincoln St, Austin, TX 73301" +292636,27in FHD Monitor,1,149.99,11/12/19 18:24,"122 Pine St, San Francisco, CA 94016" +292637,USB-C Charging Cable,1,11.95,11/30/19 16:33,"609 Willow St, Dallas, TX 75001" +292638,Lightning Charging Cable,2,14.95,11/20/19 12:12,"32 Madison St, Portland, OR 97035" +292639,Wired Headphones,1,11.99,11/09/19 17:39,"80 Meadow St, Dallas, TX 75001" +292640,AA Batteries (4-pack),1,3.84,11/03/19 12:58,"958 Hill St, Atlanta, GA 30301" +292641,27in FHD Monitor,1,149.99,11/16/19 20:01,"102 Lake St, San Francisco, CA 94016" +292642,Wired Headphones,1,11.99,11/15/19 22:27,"7 Maple St, San Francisco, CA 94016" +292643,USB-C Charging Cable,1,11.95,11/18/19 14:33,"970 Madison St, Los Angeles, CA 90001" +292643,Wired Headphones,1,11.99,11/18/19 14:33,"970 Madison St, Los Angeles, CA 90001" +292644,AAA Batteries (4-pack),1,2.99,11/16/19 10:05,"506 Willow St, Dallas, TX 75001" +292645,Bose SoundSport Headphones,1,99.99,11/29/19 22:46,"35 1st St, Dallas, TX 75001" +292646,USB-C Charging Cable,1,11.95,11/11/19 18:40,"647 Dogwood St, San Francisco, CA 94016" +292647,AAA Batteries (4-pack),1,2.99,11/11/19 11:50,"679 7th St, Austin, TX 73301" +292648,34in Ultrawide Monitor,1,379.99,11/29/19 08:22,"749 Dogwood St, San Francisco, CA 94016" +292649,34in Ultrawide Monitor,1,379.99,11/29/19 12:26,"104 Center St, Boston, MA 02215" +292650,USB-C Charging Cable,1,11.95,11/11/19 15:24,"654 Cherry St, Boston, MA 02215" +292650,Flatscreen TV,1,300,11/11/19 15:24,"654 Cherry St, Boston, MA 02215" +292651,27in FHD Monitor,1,149.99,11/07/19 17:56,"13 Hill St, Boston, MA 02215" +292652,Wired Headphones,1,11.99,11/29/19 13:18,"570 South St, Portland, OR 97035" +292653,Wired Headphones,1,11.99,11/26/19 03:38,"972 8th St, New York City, NY 10001" +292654,Google Phone,1,600,11/10/19 18:09,"755 West St, Portland, OR 97035" +292655,AAA Batteries (4-pack),1,2.99,11/12/19 10:45,"457 Lincoln St, Dallas, TX 75001" +292656,Bose SoundSport Headphones,1,99.99,11/21/19 17:43,"570 Dogwood St, San Francisco, CA 94016" +292657,AA Batteries (4-pack),1,3.84,11/01/19 10:33,"767 7th St, San Francisco, CA 94016" +292658,AA Batteries (4-pack),1,3.84,11/24/19 12:48,"368 Ridge St, Boston, MA 02215" +292659,Apple Airpods Headphones,1,150,11/20/19 14:18,"440 Willow St, San Francisco, CA 94016" +292659,34in Ultrawide Monitor,1,379.99,11/20/19 14:18,"440 Willow St, San Francisco, CA 94016" +292660,USB-C Charging Cable,1,11.95,11/03/19 20:29,"274 Spruce St, Austin, TX 73301" +292661,Macbook Pro Laptop,1,1700,11/08/19 13:27,"16 Jackson St, Dallas, TX 75001" +292662,Apple Airpods Headphones,1,150,11/25/19 15:02,"87 7th St, New York City, NY 10001" +292662,USB-C Charging Cable,1,11.95,11/25/19 15:02,"87 7th St, New York City, NY 10001" +292663,Lightning Charging Cable,1,14.95,11/30/19 11:27,"211 13th St, San Francisco, CA 94016" +292664,Apple Airpods Headphones,1,150,11/10/19 19:14,"478 9th St, Boston, MA 02215" +292665,Lightning Charging Cable,1,14.95,11/18/19 16:01,"742 Forest St, San Francisco, CA 94016" +292666,AA Batteries (4-pack),4,3.84,11/16/19 16:35,"498 Johnson St, Portland, OR 97035" +292667,USB-C Charging Cable,1,11.95,11/25/19 22:48,"604 Jefferson St, Seattle, WA 98101" +292668,27in FHD Monitor,1,149.99,11/25/19 10:07,"318 Wilson St, Seattle, WA 98101" +292669,27in 4K Gaming Monitor,1,389.99,11/16/19 20:43,"321 12th St, Los Angeles, CA 90001" +292670,Wired Headphones,1,11.99,11/06/19 15:28,"775 13th St, Boston, MA 02215" +292671,Apple Airpods Headphones,1,150,11/22/19 15:19,"173 5th St, New York City, NY 10001" +292672,Lightning Charging Cable,1,14.95,11/09/19 11:12,"320 Wilson St, Boston, MA 02215" +292673,Vareebadd Phone,1,400,11/04/19 19:16,"196 Elm St, Boston, MA 02215" +292674,Vareebadd Phone,1,400,11/16/19 23:41,"568 1st St, San Francisco, CA 94016" +292675,AAA Batteries (4-pack),1,2.99,11/01/19 12:14,"665 1st St, New York City, NY 10001" +292676,Flatscreen TV,1,300,11/11/19 20:43,"56 Elm St, San Francisco, CA 94016" +292677,AAA Batteries (4-pack),1,2.99,11/22/19 19:32,"952 Jefferson St, Los Angeles, CA 90001" +292678,AAA Batteries (4-pack),3,2.99,11/29/19 15:06,"496 Spruce St, Los Angeles, CA 90001" +292679,AAA Batteries (4-pack),4,2.99,11/28/19 12:57,"680 Maple St, Boston, MA 02215" +292680,AA Batteries (4-pack),3,3.84,11/20/19 09:19,"650 Lakeview St, San Francisco, CA 94016" +292681,Wired Headphones,1,11.99,11/18/19 13:23,"419 Ridge St, Portland, OR 97035" +292682,AAA Batteries (4-pack),2,2.99,11/10/19 20:06,"926 Jefferson St, Atlanta, GA 30301" +292683,AA Batteries (4-pack),1,3.84,11/12/19 19:29,"906 River St, New York City, NY 10001" +292684,USB-C Charging Cable,1,11.95,11/04/19 23:05,"87 Main St, Portland, OR 97035" +292685,USB-C Charging Cable,1,11.95,11/27/19 14:47,"433 Hill St, San Francisco, CA 94016" +292686,AAA Batteries (4-pack),1,2.99,11/27/19 13:03,"432 Johnson St, Seattle, WA 98101" +292687,AAA Batteries (4-pack),4,2.99,11/26/19 19:33,"317 Cherry St, Dallas, TX 75001" +292688,Lightning Charging Cable,1,14.95,11/13/19 11:39,"168 Lakeview St, Los Angeles, CA 90001" +292689,Bose SoundSport Headphones,1,99.99,11/01/19 14:37,"317 8th St, Seattle, WA 98101" +292690,AA Batteries (4-pack),1,3.84,11/25/19 20:57,"667 Chestnut St, Atlanta, GA 30301" +292691,USB-C Charging Cable,1,11.95,11/09/19 16:17,"493 Walnut St, San Francisco, CA 94016" +292692,Apple Airpods Headphones,1,150,11/18/19 09:38,"186 6th St, New York City, NY 10001" +292693,Google Phone,1,600,11/30/19 11:38,"690 North St, Seattle, WA 98101" +292693,USB-C Charging Cable,1,11.95,11/30/19 11:38,"690 North St, Seattle, WA 98101" +292694,Lightning Charging Cable,1,14.95,11/11/19 18:50,"391 Forest St, San Francisco, CA 94016" +292695,Google Phone,1,600,11/18/19 13:55,"649 Sunset St, Los Angeles, CA 90001" +292696,Bose SoundSport Headphones,1,99.99,11/18/19 15:18,"173 Adams St, Dallas, TX 75001" +292697,USB-C Charging Cable,1,11.95,11/08/19 18:50,"674 Adams St, New York City, NY 10001" +292698,AAA Batteries (4-pack),2,2.99,11/20/19 14:52,"822 Cedar St, San Francisco, CA 94016" +292699,Wired Headphones,1,11.99,11/27/19 16:32,"434 Washington St, Portland, OR 97035" +292700,ThinkPad Laptop,1,999.99,11/09/19 15:49,"985 11th St, Los Angeles, CA 90001" +292701,Apple Airpods Headphones,1,150,11/10/19 11:00,"417 Dogwood St, San Francisco, CA 94016" +292702,AA Batteries (4-pack),1,3.84,11/03/19 15:55,"484 13th St, Atlanta, GA 30301" +292703,Google Phone,1,600,11/12/19 17:22,"961 Chestnut St, San Francisco, CA 94016" +292704,AA Batteries (4-pack),1,3.84,11/20/19 15:50,"179 Lincoln St, Los Angeles, CA 90001" +292705,Macbook Pro Laptop,1,1700,11/11/19 22:19,"225 Meadow St, Los Angeles, CA 90001" +292706,Macbook Pro Laptop,1,1700,11/26/19 09:58,"868 Highland St, Portland, OR 97035" +292707,AAA Batteries (4-pack),3,2.99,11/14/19 11:04,"427 Wilson St, San Francisco, CA 94016" +292708,20in Monitor,1,109.99,11/04/19 14:17,"672 14th St, Portland, OR 97035" +292709,Lightning Charging Cable,1,14.95,11/08/19 17:00,"55 Walnut St, Los Angeles, CA 90001" +292710,AA Batteries (4-pack),1,3.84,11/28/19 21:17,"21 Madison St, San Francisco, CA 94016" +292711,iPhone,1,700,11/17/19 07:21,"957 5th St, Portland, OR 97035" +292712,Wired Headphones,1,11.99,11/19/19 17:11,"95 8th St, Los Angeles, CA 90001" +292713,ThinkPad Laptop,1,999.99,11/07/19 11:20,"295 Ridge St, Los Angeles, CA 90001" +292714,Lightning Charging Cable,1,14.95,11/25/19 21:28,"401 1st St, Seattle, WA 98101" +292715,Flatscreen TV,1,300,11/08/19 18:37,"246 Lakeview St, New York City, NY 10001" +292716,Apple Airpods Headphones,1,150,11/16/19 14:57,"399 River St, Dallas, TX 75001" +292716,34in Ultrawide Monitor,1,379.99,11/16/19 14:57,"399 River St, Dallas, TX 75001" +292717,Wired Headphones,2,11.99,11/18/19 23:29,"107 Hill St, New York City, NY 10001" +292718,34in Ultrawide Monitor,1,379.99,11/23/19 15:49,"853 Jackson St, San Francisco, CA 94016" +292719,Wired Headphones,1,11.99,11/19/19 17:22,"883 Jefferson St, Austin, TX 73301" +292720,Lightning Charging Cable,1,14.95,11/08/19 04:24,"914 1st St, Boston, MA 02215" +292721,Lightning Charging Cable,1,14.95,11/11/19 12:40,"929 Jefferson St, Los Angeles, CA 90001" +292722,Apple Airpods Headphones,1,150,11/21/19 22:52,"829 9th St, Los Angeles, CA 90001" +292723,Wired Headphones,1,11.99,11/18/19 08:10,"321 8th St, Los Angeles, CA 90001" +292724,Apple Airpods Headphones,1,150,11/30/19 18:06,"442 Willow St, New York City, NY 10001" +292725,Apple Airpods Headphones,1,150,11/23/19 19:12,"689 River St, Boston, MA 02215" +292726,27in 4K Gaming Monitor,1,389.99,11/09/19 18:25,"331 Walnut St, Portland, OR 97035" +292727,Bose SoundSport Headphones,1,99.99,11/03/19 20:46,"490 Willow St, Atlanta, GA 30301" +292728,AA Batteries (4-pack),1,3.84,11/06/19 13:34,"448 Cherry St, San Francisco, CA 94016" +292729,AAA Batteries (4-pack),3,2.99,11/02/19 14:46,"645 Jackson St, San Francisco, CA 94016" +292730,AA Batteries (4-pack),1,3.84,11/10/19 12:54,"316 Maple St, Atlanta, GA 30301" +292731,Apple Airpods Headphones,1,150,11/29/19 22:14,"777 Hill St, Dallas, TX 75001" +292732,Wired Headphones,1,11.99,11/22/19 14:40,"388 Dogwood St, Los Angeles, CA 90001" +292733,Macbook Pro Laptop,1,1700,11/19/19 16:32,"559 Wilson St, New York City, NY 10001" +292734,USB-C Charging Cable,1,11.95,11/10/19 17:44,"261 9th St, San Francisco, CA 94016" +292735,AAA Batteries (4-pack),1,2.99,11/25/19 18:14,"869 Adams St, San Francisco, CA 94016" +292736,Lightning Charging Cable,1,14.95,11/14/19 05:20,"578 13th St, Austin, TX 73301" +292737,Apple Airpods Headphones,1,150,11/22/19 21:28,"150 12th St, Portland, ME 04101" +292738,AAA Batteries (4-pack),1,2.99,11/24/19 19:25,"137 Washington St, San Francisco, CA 94016" +292739,AAA Batteries (4-pack),1,2.99,11/24/19 10:26,"375 Dogwood St, Seattle, WA 98101" +292740,AAA Batteries (4-pack),3,2.99,11/19/19 20:27,"932 Hill St, Austin, TX 73301" +292740,27in FHD Monitor,1,149.99,11/19/19 20:27,"932 Hill St, Austin, TX 73301" +292741,Apple Airpods Headphones,1,150,11/17/19 10:49,"914 Forest St, Seattle, WA 98101" +292742,Bose SoundSport Headphones,1,99.99,11/22/19 12:24,"501 8th St, San Francisco, CA 94016" +292743,Wired Headphones,1,11.99,11/26/19 14:51,"778 8th St, Los Angeles, CA 90001" +292744,Bose SoundSport Headphones,1,99.99,11/27/19 19:26,"381 11th St, Atlanta, GA 30301" +292745,Apple Airpods Headphones,1,150,11/21/19 11:31,"338 Ridge St, San Francisco, CA 94016" +292746,USB-C Charging Cable,1,11.95,11/22/19 12:39,"318 Willow St, San Francisco, CA 94016" +292747,Wired Headphones,1,11.99,11/07/19 10:44,"181 Spruce St, New York City, NY 10001" +292748,AAA Batteries (4-pack),1,2.99,11/29/19 21:40,"225 6th St, Dallas, TX 75001" +292749,USB-C Charging Cable,1,11.95,11/27/19 13:03,"702 8th St, Los Angeles, CA 90001" +292750,Lightning Charging Cable,1,14.95,11/03/19 14:35,"221 9th St, New York City, NY 10001" +292751,AAA Batteries (4-pack),1,2.99,11/07/19 02:41,"185 Center St, Seattle, WA 98101" +292752,Lightning Charging Cable,1,14.95,11/19/19 21:30,"353 South St, New York City, NY 10001" +292753,27in 4K Gaming Monitor,1,389.99,11/16/19 19:49,"792 Cedar St, Los Angeles, CA 90001" +292754,Apple Airpods Headphones,1,150,11/30/19 13:04,"349 Wilson St, Seattle, WA 98101" +292755,Lightning Charging Cable,2,14.95,11/15/19 09:03,"717 13th St, Atlanta, GA 30301" +292756,Wired Headphones,1,11.99,11/11/19 16:30,"104 Adams St, Seattle, WA 98101" +292757,USB-C Charging Cable,1,11.95,11/19/19 16:23,"794 2nd St, Los Angeles, CA 90001" +292757,Lightning Charging Cable,1,14.95,11/19/19 16:23,"794 2nd St, Los Angeles, CA 90001" +292758,AAA Batteries (4-pack),1,2.99,11/07/19 14:24,"560 7th St, Los Angeles, CA 90001" +292759,Apple Airpods Headphones,1,150,11/29/19 16:44,"435 Maple St, Seattle, WA 98101" +292760,Lightning Charging Cable,1,14.95,11/27/19 13:24,"731 9th St, New York City, NY 10001" +292761,USB-C Charging Cable,1,11.95,11/06/19 11:11,"101 5th St, Portland, OR 97035" +292762,AA Batteries (4-pack),1,3.84,11/04/19 18:53,"421 Johnson St, Portland, ME 04101" +292763,Apple Airpods Headphones,1,150,11/25/19 13:03,"510 Highland St, San Francisco, CA 94016" +292764,Macbook Pro Laptop,1,1700,11/27/19 18:37,"77 Adams St, Los Angeles, CA 90001" +292765,Lightning Charging Cable,2,14.95,11/27/19 12:21,"800 10th St, Los Angeles, CA 90001" +292766,AAA Batteries (4-pack),1,2.99,11/09/19 19:32,"174 Park St, San Francisco, CA 94016" +292767,Wired Headphones,1,11.99,11/19/19 09:57,"606 9th St, Austin, TX 73301" +292768,USB-C Charging Cable,1,11.95,11/20/19 19:34,"349 Sunset St, San Francisco, CA 94016" +292769,Apple Airpods Headphones,1,150,11/11/19 20:24,"66 Center St, San Francisco, CA 94016" +292770,Lightning Charging Cable,1,14.95,11/02/19 13:23,"598 Willow St, Atlanta, GA 30301" +292771,Wired Headphones,1,11.99,11/29/19 11:37,"175 Dogwood St, Boston, MA 02215" +292772,27in 4K Gaming Monitor,1,389.99,11/12/19 18:00,"208 Center St, Atlanta, GA 30301" +292773,USB-C Charging Cable,1,11.95,11/14/19 20:07,"994 11th St, New York City, NY 10001" +292774,Vareebadd Phone,1,400,11/22/19 22:03,"53 West St, Seattle, WA 98101" +292775,AAA Batteries (4-pack),1,2.99,11/27/19 07:39,"436 River St, Los Angeles, CA 90001" +292776,iPhone,1,700,11/10/19 19:35,"1 Lakeview St, New York City, NY 10001" +292777,Bose SoundSport Headphones,1,99.99,11/01/19 21:21,"303 Main St, San Francisco, CA 94016" +292778,Google Phone,1,600,11/24/19 14:14,"614 Spruce St, Austin, TX 73301" +292778,USB-C Charging Cable,1,11.95,11/24/19 14:14,"614 Spruce St, Austin, TX 73301" +292779,Apple Airpods Headphones,1,150,11/22/19 15:18,"768 Wilson St, San Francisco, CA 94016" +292780,Bose SoundSport Headphones,1,99.99,11/11/19 23:40,"353 Highland St, Los Angeles, CA 90001" +292781,iPhone,1,700,11/20/19 08:12,"19 Sunset St, Boston, MA 02215" +292782,27in 4K Gaming Monitor,1,389.99,11/30/19 12:36,"860 12th St, San Francisco, CA 94016" +292783,Apple Airpods Headphones,1,150,11/30/19 22:20,"529 South St, San Francisco, CA 94016" +292784,Bose SoundSport Headphones,1,99.99,11/16/19 11:51,"664 1st St, Boston, MA 02215" +292785,AA Batteries (4-pack),2,3.84,11/20/19 20:13,"401 10th St, Boston, MA 02215" +292786,Apple Airpods Headphones,1,150,11/24/19 17:24,"575 4th St, Seattle, WA 98101" +292787,USB-C Charging Cable,1,11.95,11/17/19 18:13,"79 West St, Atlanta, GA 30301" +292788,Apple Airpods Headphones,1,150,11/25/19 22:40,"948 Washington St, Boston, MA 02215" +292789,AAA Batteries (4-pack),1,2.99,11/09/19 01:25,"839 Hickory St, Boston, MA 02215" +292790,Lightning Charging Cable,1,14.95,11/30/19 12:26,"821 Elm St, Boston, MA 02215" +292791,Macbook Pro Laptop,1,1700,11/28/19 09:21,"578 Jackson St, Boston, MA 02215" +292792,27in FHD Monitor,1,149.99,11/03/19 16:41,"867 Lake St, Seattle, WA 98101" +292793,AA Batteries (4-pack),1,3.84,11/30/19 13:40,"81 North St, San Francisco, CA 94016" +292794,27in FHD Monitor,1,149.99,11/28/19 09:49,"521 Main St, Boston, MA 02215" +292795,iPhone,1,700,11/07/19 10:36,"821 Highland St, San Francisco, CA 94016" +292795,Lightning Charging Cable,1,14.95,11/07/19 10:36,"821 Highland St, San Francisco, CA 94016" +292796,Lightning Charging Cable,1,14.95,11/25/19 14:19,"584 Johnson St, Seattle, WA 98101" +292797,Wired Headphones,1,11.99,11/25/19 11:40,"787 Meadow St, Seattle, WA 98101" +292798,AAA Batteries (4-pack),1,2.99,11/08/19 22:58,"220 Willow St, Atlanta, GA 30301" +292799,Macbook Pro Laptop,1,1700,11/13/19 10:36,"936 Hickory St, San Francisco, CA 94016" +292800,iPhone,1,700,11/13/19 20:45,"124 West St, Seattle, WA 98101" +292801,Lightning Charging Cable,1,14.95,11/27/19 09:42,"309 5th St, San Francisco, CA 94016" +292802,Wired Headphones,1,11.99,11/05/19 18:51,"400 9th St, New York City, NY 10001" +292803,Bose SoundSport Headphones,1,99.99,11/16/19 23:53,"197 Hickory St, New York City, NY 10001" +292804,27in FHD Monitor,1,149.99,11/10/19 12:49,"204 10th St, Seattle, WA 98101" +292805,USB-C Charging Cable,1,11.95,11/08/19 23:10,"896 5th St, Seattle, WA 98101" +292806,AAA Batteries (4-pack),1,2.99,11/27/19 06:24,"366 Jackson St, Seattle, WA 98101" +292807,Lightning Charging Cable,1,14.95,11/05/19 18:41,"877 Lakeview St, Los Angeles, CA 90001" +292808,34in Ultrawide Monitor,1,379.99,11/20/19 16:30,"987 12th St, San Francisco, CA 94016" +292809,Lightning Charging Cable,1,14.95,11/10/19 17:40,"26 2nd St, New York City, NY 10001" +292810,Wired Headphones,1,11.99,11/18/19 19:45,"586 Jackson St, New York City, NY 10001" +292811,ThinkPad Laptop,1,999.99,11/04/19 09:12,"861 2nd St, Los Angeles, CA 90001" +292812,AA Batteries (4-pack),1,3.84,11/14/19 15:58,"420 Spruce St, Los Angeles, CA 90001" +292813,AAA Batteries (4-pack),2,2.99,11/21/19 15:14,"113 Sunset St, Los Angeles, CA 90001" +292814,Bose SoundSport Headphones,1,99.99,11/07/19 17:39,"374 Adams St, Boston, MA 02215" +292815,Lightning Charging Cable,1,14.95,11/22/19 22:06,"416 Adams St, Austin, TX 73301" +292816,AAA Batteries (4-pack),3,2.99,11/04/19 05:42,"505 Elm St, New York City, NY 10001" +292817,AAA Batteries (4-pack),2,2.99,11/01/19 18:16,"927 10th St, Boston, MA 02215" +292818,USB-C Charging Cable,1,11.95,11/19/19 09:35,"13 11th St, Austin, TX 73301" +292819,Lightning Charging Cable,2,14.95,11/10/19 21:26,"15 13th St, Los Angeles, CA 90001" +292820,USB-C Charging Cable,1,11.95,11/20/19 05:15,"889 Elm St, Boston, MA 02215" +292821,Lightning Charging Cable,1,14.95,11/12/19 21:33,"446 Park St, Seattle, WA 98101" +292822,USB-C Charging Cable,1,11.95,11/19/19 17:38,"518 West St, San Francisco, CA 94016" +,,,,, +292823,iPhone,1,700,11/12/19 08:20,"721 Elm St, Boston, MA 02215" +292824,iPhone,1,700,11/26/19 23:07,"323 Highland St, San Francisco, CA 94016" +292825,Macbook Pro Laptop,1,1700,11/24/19 14:53,"156 5th St, Los Angeles, CA 90001" +292826,Google Phone,1,600,11/04/19 16:32,"351 9th St, Dallas, TX 75001" +292826,USB-C Charging Cable,1,11.95,11/04/19 16:32,"351 9th St, Dallas, TX 75001" +292827,Wired Headphones,1,11.99,11/09/19 19:16,"363 Meadow St, Seattle, WA 98101" +292828,LG Dryer,1,600.0,11/22/19 15:34,"731 2nd St, New York City, NY 10001" +292829,iPhone,1,700,11/28/19 14:23,"878 Lake St, Seattle, WA 98101" +292829,Wired Headphones,1,11.99,11/28/19 14:23,"878 Lake St, Seattle, WA 98101" +292830,ThinkPad Laptop,1,999.99,11/12/19 00:25,"896 Johnson St, Boston, MA 02215" +292831,Apple Airpods Headphones,1,150,11/18/19 19:21,"648 Meadow St, Seattle, WA 98101" +292832,USB-C Charging Cable,1,11.95,11/23/19 21:51,"776 Chestnut St, San Francisco, CA 94016" +292833,AA Batteries (4-pack),2,3.84,11/20/19 18:33,"278 North St, Los Angeles, CA 90001" +292834,AAA Batteries (4-pack),1,2.99,11/15/19 07:40,"89 Sunset St, San Francisco, CA 94016" +292835,Lightning Charging Cable,1,14.95,11/30/19 13:07,"601 6th St, San Francisco, CA 94016" +292836,Wired Headphones,2,11.99,11/08/19 11:29,"758 Dogwood St, New York City, NY 10001" +292837,AA Batteries (4-pack),1,3.84,11/08/19 16:53,"878 Sunset St, Dallas, TX 75001" +292838,27in FHD Monitor,1,149.99,11/20/19 21:07,"115 1st St, San Francisco, CA 94016" +292839,20in Monitor,1,109.99,11/04/19 09:46,"489 Lincoln St, Portland, OR 97035" +292840,USB-C Charging Cable,1,11.95,11/24/19 12:26,"933 9th St, Los Angeles, CA 90001" +292841,34in Ultrawide Monitor,1,379.99,11/20/19 12:02,"484 Meadow St, Los Angeles, CA 90001" +292842,Wired Headphones,1,11.99,11/21/19 23:39,"273 5th St, New York City, NY 10001" +292843,AA Batteries (4-pack),1,3.84,11/03/19 14:32,"486 Main St, San Francisco, CA 94016" +292844,Wired Headphones,1,11.99,11/16/19 08:18,"51 Jackson St, Los Angeles, CA 90001" +292845,AA Batteries (4-pack),1,3.84,11/26/19 07:46,"293 9th St, Dallas, TX 75001" +292846,20in Monitor,1,109.99,11/10/19 15:53,"110 Cedar St, New York City, NY 10001" +292847,Wired Headphones,1,11.99,11/17/19 18:41,"799 Jackson St, Boston, MA 02215" +292848,Apple Airpods Headphones,1,150,11/09/19 00:08,"492 Hickory St, Los Angeles, CA 90001" +292849,ThinkPad Laptop,1,999.99,11/21/19 11:44,"675 Johnson St, Seattle, WA 98101" +292850,iPhone,1,700,11/04/19 19:58,"393 1st St, Los Angeles, CA 90001" +292851,Bose SoundSport Headphones,1,99.99,11/30/19 18:51,"395 Johnson St, San Francisco, CA 94016" +292852,AA Batteries (4-pack),2,3.84,11/23/19 11:42,"771 Hickory St, San Francisco, CA 94016" +292853,Macbook Pro Laptop,1,1700,11/05/19 08:45,"674 Park St, New York City, NY 10001" +292854,ThinkPad Laptop,1,999.99,11/02/19 11:57,"163 South St, New York City, NY 10001" +292855,Lightning Charging Cable,1,14.95,11/04/19 21:37,"325 River St, Dallas, TX 75001" +292856,Wired Headphones,1,11.99,11/08/19 13:41,"616 Wilson St, San Francisco, CA 94016" +292857,USB-C Charging Cable,1,11.95,11/27/19 16:19,"208 Elm St, Atlanta, GA 30301" +292858,Bose SoundSport Headphones,1,99.99,11/12/19 12:59,"596 7th St, Atlanta, GA 30301" +292859,AA Batteries (4-pack),2,3.84,11/04/19 11:41,"103 Park St, Seattle, WA 98101" +292860,Lightning Charging Cable,1,14.95,11/21/19 12:19,"399 Sunset St, Los Angeles, CA 90001" +292861,27in FHD Monitor,1,149.99,11/22/19 12:10,"29 Jefferson St, Atlanta, GA 30301" +292862,USB-C Charging Cable,1,11.95,11/30/19 17:18,"152 Cherry St, San Francisco, CA 94016" +292863,AA Batteries (4-pack),3,3.84,11/17/19 12:43,"732 Spruce St, Dallas, TX 75001" +292864,Lightning Charging Cable,1,14.95,11/20/19 00:12,"509 River St, San Francisco, CA 94016" +292865,Wired Headphones,1,11.99,11/16/19 10:59,"326 Ridge St, San Francisco, CA 94016" +292866,Wired Headphones,1,11.99,11/15/19 09:08,"715 Ridge St, New York City, NY 10001" +292867,Wired Headphones,1,11.99,11/25/19 17:28,"41 Elm St, San Francisco, CA 94016" +292868,34in Ultrawide Monitor,1,379.99,11/08/19 17:30,"474 Main St, Atlanta, GA 30301" +292869,27in 4K Gaming Monitor,1,389.99,11/05/19 16:25,"855 West St, San Francisco, CA 94016" +292870,Wired Headphones,1,11.99,11/12/19 11:36,"106 Church St, San Francisco, CA 94016" +292871,Bose SoundSport Headphones,1,99.99,11/29/19 17:25,"432 11th St, Atlanta, GA 30301" +292872,AAA Batteries (4-pack),2,2.99,11/10/19 13:32,"733 13th St, New York City, NY 10001" +292873,AA Batteries (4-pack),2,3.84,11/03/19 23:18,"921 11th St, Portland, OR 97035" +292874,AA Batteries (4-pack),1,3.84,11/24/19 19:33,"973 Wilson St, Austin, TX 73301" +292875,AAA Batteries (4-pack),1,2.99,11/27/19 10:01,"119 Lakeview St, Atlanta, GA 30301" +292876,Bose SoundSport Headphones,1,99.99,11/16/19 11:53,"622 River St, San Francisco, CA 94016" +292877,iPhone,1,700,11/17/19 19:57,"626 Sunset St, Portland, ME 04101" +292878,Apple Airpods Headphones,1,150,11/09/19 20:51,"375 Highland St, Dallas, TX 75001" +292879,AA Batteries (4-pack),1,3.84,11/01/19 14:20,"435 Pine St, Los Angeles, CA 90001" +292880,Bose SoundSport Headphones,1,99.99,11/12/19 17:05,"878 Main St, San Francisco, CA 94016" +292881,ThinkPad Laptop,1,999.99,11/24/19 15:48,"771 8th St, Atlanta, GA 30301" +292882,Bose SoundSport Headphones,1,99.99,11/09/19 17:05,"447 Spruce St, Boston, MA 02215" +292883,AA Batteries (4-pack),1,3.84,11/01/19 16:12,"784 Sunset St, San Francisco, CA 94016" +292884,AA Batteries (4-pack),1,3.84,11/23/19 21:42,"255 5th St, Atlanta, GA 30301" +292885,Wired Headphones,1,11.99,11/12/19 15:15,"23 1st St, Atlanta, GA 30301" +292886,27in 4K Gaming Monitor,1,389.99,11/21/19 15:16,"827 Forest St, Seattle, WA 98101" +292887,34in Ultrawide Monitor,1,379.99,11/29/19 03:45,"457 Highland St, San Francisco, CA 94016" +292888,AAA Batteries (4-pack),3,2.99,11/23/19 20:54,"772 North St, Portland, ME 04101" +292889,Lightning Charging Cable,1,14.95,11/15/19 23:14,"511 11th St, San Francisco, CA 94016" +292890,USB-C Charging Cable,1,11.95,11/15/19 13:15,"930 Lake St, Los Angeles, CA 90001" +292891,Wired Headphones,1,11.99,11/30/19 16:41,"811 7th St, San Francisco, CA 94016" +292892,Wired Headphones,1,11.99,11/01/19 16:50,"622 Hill St, San Francisco, CA 94016" +292893,27in 4K Gaming Monitor,1,389.99,11/14/19 21:51,"123 Sunset St, New York City, NY 10001" +292894,USB-C Charging Cable,1,11.95,11/30/19 07:22,"7 Meadow St, Portland, OR 97035" +292895,Wired Headphones,1,11.99,11/04/19 11:45,"610 West St, Los Angeles, CA 90001" +292896,Lightning Charging Cable,1,14.95,11/18/19 02:54,"326 Cherry St, Boston, MA 02215" +292897,USB-C Charging Cable,1,11.95,11/29/19 13:59,"160 Adams St, San Francisco, CA 94016" +292898,AAA Batteries (4-pack),1,2.99,11/24/19 17:36,"428 Willow St, Austin, TX 73301" +292899,Bose SoundSport Headphones,1,99.99,11/26/19 15:09,"856 14th St, Dallas, TX 75001" +292900,USB-C Charging Cable,1,11.95,11/18/19 20:46,"423 Jefferson St, Dallas, TX 75001" +292901,Apple Airpods Headphones,1,150,11/24/19 15:07,"923 Adams St, Los Angeles, CA 90001" +292902,iPhone,1,700,11/09/19 09:13,"949 Center St, New York City, NY 10001" +292903,Apple Airpods Headphones,1,150,11/16/19 18:18,"160 West St, New York City, NY 10001" +292904,USB-C Charging Cable,1,11.95,11/28/19 16:54,"15 7th St, Seattle, WA 98101" +292905,AA Batteries (4-pack),3,3.84,11/24/19 22:09,"609 Lake St, New York City, NY 10001" +292906,27in 4K Gaming Monitor,1,389.99,11/11/19 10:07,"895 13th St, Boston, MA 02215" +292907,USB-C Charging Cable,1,11.95,11/05/19 02:12,"381 Walnut St, San Francisco, CA 94016" +292908,Wired Headphones,1,11.99,11/01/19 09:11,"108 2nd St, Atlanta, GA 30301" +292909,Bose SoundSport Headphones,1,99.99,11/07/19 14:26,"294 Sunset St, Portland, ME 04101" +292910,34in Ultrawide Monitor,1,379.99,11/18/19 19:07,"560 1st St, Seattle, WA 98101" +292911,Bose SoundSport Headphones,1,99.99,11/08/19 07:38,"207 Hill St, Dallas, TX 75001" +292912,Wired Headphones,1,11.99,11/07/19 13:05,"717 Johnson St, Los Angeles, CA 90001" +292913,Apple Airpods Headphones,1,150,11/06/19 06:31,"490 8th St, Los Angeles, CA 90001" +292914,20in Monitor,1,109.99,11/17/19 17:48,"330 Madison St, San Francisco, CA 94016" +292915,AAA Batteries (4-pack),1,2.99,11/05/19 14:21,"595 Forest St, San Francisco, CA 94016" +292916,USB-C Charging Cable,1,11.95,11/18/19 12:03,"728 Ridge St, Dallas, TX 75001" +292917,Apple Airpods Headphones,1,150,11/08/19 13:49,"680 Hickory St, Dallas, TX 75001" +292918,34in Ultrawide Monitor,1,379.99,11/01/19 17:12,"615 Madison St, Austin, TX 73301" +292919,Apple Airpods Headphones,1,150,11/14/19 11:44,"242 13th St, San Francisco, CA 94016" +292920,Vareebadd Phone,1,400,11/01/19 14:38,"605 10th St, Los Angeles, CA 90001" +292921,AA Batteries (4-pack),1,3.84,11/12/19 20:18,"879 Lakeview St, Atlanta, GA 30301" +292922,LG Washing Machine,1,600.0,11/26/19 09:19,"37 Pine St, Boston, MA 02215" +292923,AAA Batteries (4-pack),1,2.99,11/10/19 14:41,"158 Lake St, San Francisco, CA 94016" +292924,AAA Batteries (4-pack),3,2.99,11/08/19 22:38,"835 Johnson St, San Francisco, CA 94016" +292925,AAA Batteries (4-pack),1,2.99,11/25/19 13:17,"437 Washington St, New York City, NY 10001" +292926,Wired Headphones,1,11.99,11/30/19 09:22,"382 Sunset St, San Francisco, CA 94016" +292927,20in Monitor,1,109.99,11/15/19 19:50,"652 Johnson St, New York City, NY 10001" +292928,27in 4K Gaming Monitor,1,389.99,11/10/19 20:42,"225 11th St, Portland, OR 97035" +292929,AA Batteries (4-pack),1,3.84,11/01/19 13:36,"252 Lakeview St, San Francisco, CA 94016" +292930,27in 4K Gaming Monitor,1,389.99,11/26/19 00:01,"206 1st St, Los Angeles, CA 90001" +292931,ThinkPad Laptop,1,999.99,11/02/19 16:01,"394 Lakeview St, Portland, OR 97035" +292932,AA Batteries (4-pack),1,3.84,11/12/19 13:29,"586 Madison St, Boston, MA 02215" +292933,Wired Headphones,1,11.99,11/13/19 12:55,"936 Dogwood St, Portland, OR 97035" +292934,Lightning Charging Cable,1,14.95,11/05/19 22:28,"785 Dogwood St, Atlanta, GA 30301" +292935,AA Batteries (4-pack),1,3.84,11/29/19 20:22,"66 Church St, Atlanta, GA 30301" +292936,AAA Batteries (4-pack),2,2.99,11/24/19 10:02,"45 1st St, San Francisco, CA 94016" +292937,USB-C Charging Cable,1,11.95,11/17/19 20:12,"243 1st St, San Francisco, CA 94016" +292938,USB-C Charging Cable,1,11.95,11/24/19 10:13,"668 Meadow St, Seattle, WA 98101" +292939,AA Batteries (4-pack),1,3.84,11/12/19 21:37,"432 Chestnut St, New York City, NY 10001" +292940,USB-C Charging Cable,1,11.95,11/08/19 21:18,"640 13th St, San Francisco, CA 94016" +292941,AA Batteries (4-pack),1,3.84,11/07/19 18:39,"183 8th St, Dallas, TX 75001" +292942,AA Batteries (4-pack),1,3.84,11/10/19 21:48,"138 Johnson St, San Francisco, CA 94016" +292943,Wired Headphones,1,11.99,11/14/19 10:57,"363 South St, Atlanta, GA 30301" +292944,USB-C Charging Cable,1,11.95,11/26/19 10:38,"148 Lakeview St, New York City, NY 10001" +292945,AAA Batteries (4-pack),1,2.99,11/22/19 13:39,"867 7th St, Los Angeles, CA 90001" +292946,Apple Airpods Headphones,1,150,11/11/19 18:13,"980 Church St, Los Angeles, CA 90001" +292947,27in 4K Gaming Monitor,1,389.99,11/03/19 19:55,"501 14th St, Austin, TX 73301" +292948,AA Batteries (4-pack),1,3.84,11/11/19 19:43,"970 Lakeview St, Portland, OR 97035" +292949,USB-C Charging Cable,1,11.95,11/24/19 16:46,"797 5th St, San Francisco, CA 94016" +292950,AAA Batteries (4-pack),1,2.99,11/12/19 20:14,"729 Forest St, San Francisco, CA 94016" +292951,Apple Airpods Headphones,1,150,11/22/19 21:08,"31 6th St, Atlanta, GA 30301" +292952,27in FHD Monitor,1,149.99,11/10/19 08:17,"382 Cherry St, Atlanta, GA 30301" +292953,Bose SoundSport Headphones,1,99.99,11/16/19 00:35,"458 Cedar St, Atlanta, GA 30301" +292954,USB-C Charging Cable,1,11.95,11/18/19 21:20,"494 Spruce St, San Francisco, CA 94016" +292955,AA Batteries (4-pack),1,3.84,11/30/19 12:31,"748 10th St, Dallas, TX 75001" +292956,27in FHD Monitor,1,149.99,11/20/19 20:12,"921 9th St, Dallas, TX 75001" +292957,Wired Headphones,1,11.99,11/02/19 23:44,"984 Walnut St, New York City, NY 10001" +292958,Google Phone,1,600,11/07/19 18:27,"272 Adams St, San Francisco, CA 94016" +292959,Lightning Charging Cable,1,14.95,11/21/19 10:26,"950 West St, New York City, NY 10001" +292960,AA Batteries (4-pack),1,3.84,11/03/19 11:14,"209 2nd St, Seattle, WA 98101" +292961,USB-C Charging Cable,1,11.95,11/29/19 15:48,"659 Highland St, Dallas, TX 75001" +292962,ThinkPad Laptop,1,999.99,11/09/19 16:21,"428 4th St, New York City, NY 10001" +292963,27in FHD Monitor,1,149.99,11/23/19 08:38,"767 Dogwood St, Portland, OR 97035" +292964,AAA Batteries (4-pack),3,2.99,11/06/19 10:43,"958 7th St, Atlanta, GA 30301" +292965,Wired Headphones,1,11.99,11/25/19 07:12,"775 Park St, Seattle, WA 98101" +292966,AAA Batteries (4-pack),1,2.99,11/02/19 16:36,"959 6th St, Atlanta, GA 30301" +292967,ThinkPad Laptop,1,999.99,11/11/19 13:16,"519 12th St, Dallas, TX 75001" +292968,Lightning Charging Cable,2,14.95,11/27/19 16:59,"238 Lake St, New York City, NY 10001" +292969,34in Ultrawide Monitor,1,379.99,11/23/19 02:13,"461 North St, San Francisco, CA 94016" +292970,34in Ultrawide Monitor,1,379.99,11/07/19 21:13,"514 Jefferson St, Seattle, WA 98101" +292971,34in Ultrawide Monitor,1,379.99,11/14/19 16:00,"449 Pine St, Portland, OR 97035" +292972,Lightning Charging Cable,1,14.95,11/21/19 21:22,"816 Forest St, San Francisco, CA 94016" +292973,Bose SoundSport Headphones,1,99.99,11/06/19 02:22,"836 14th St, Los Angeles, CA 90001" +292974,ThinkPad Laptop,1,999.99,11/23/19 10:38,"74 Cedar St, Dallas, TX 75001" +292975,Apple Airpods Headphones,1,150,11/28/19 12:19,"592 Highland St, Seattle, WA 98101" +292976,Google Phone,1,600,11/04/19 21:31,"257 Dogwood St, San Francisco, CA 94016" +292977,AA Batteries (4-pack),1,3.84,11/13/19 21:10,"745 Dogwood St, San Francisco, CA 94016" +292978,AAA Batteries (4-pack),1,2.99,11/13/19 09:22,"665 Washington St, Dallas, TX 75001" +292979,USB-C Charging Cable,1,11.95,11/20/19 21:57,"998 Spruce St, New York City, NY 10001" +292980,AA Batteries (4-pack),1,3.84,11/16/19 12:45,"642 7th St, Seattle, WA 98101" +292981,Apple Airpods Headphones,1,150,11/15/19 11:01,"988 Willow St, Seattle, WA 98101" +292982,ThinkPad Laptop,1,999.99,11/24/19 20:08,"623 Pine St, San Francisco, CA 94016" +292983,34in Ultrawide Monitor,1,379.99,11/16/19 06:42,"456 Hill St, San Francisco, CA 94016" +292984,Apple Airpods Headphones,1,150,11/27/19 12:17,"354 Hill St, Los Angeles, CA 90001" +292985,27in FHD Monitor,1,149.99,11/18/19 13:15,"361 Cedar St, New York City, NY 10001" +292986,AA Batteries (4-pack),1,3.84,11/02/19 09:04,"321 Pine St, Los Angeles, CA 90001" +292987,Wired Headphones,1,11.99,11/14/19 21:57,"321 8th St, San Francisco, CA 94016" +292988,27in FHD Monitor,1,149.99,11/26/19 15:49,"190 Ridge St, Portland, OR 97035" +292989,Lightning Charging Cable,1,14.95,11/25/19 18:50,"292 Hickory St, San Francisco, CA 94016" +292990,AAA Batteries (4-pack),1,2.99,11/02/19 17:08,"204 Lakeview St, Atlanta, GA 30301" +292991,AAA Batteries (4-pack),1,2.99,11/10/19 10:11,"617 Cedar St, Austin, TX 73301" +292992,20in Monitor,1,109.99,11/23/19 23:08,"174 10th St, New York City, NY 10001" +292993,USB-C Charging Cable,1,11.95,11/18/19 10:52,"291 South St, Los Angeles, CA 90001" +292994,Apple Airpods Headphones,1,150,11/19/19 00:51,"936 Cherry St, Seattle, WA 98101" +292995,AAA Batteries (4-pack),2,2.99,11/23/19 23:15,"334 Elm St, Seattle, WA 98101" +292996,Apple Airpods Headphones,1,150,11/08/19 16:50,"478 Park St, New York City, NY 10001" +292997,AA Batteries (4-pack),1,3.84,11/08/19 17:59,"595 Lakeview St, Los Angeles, CA 90001" +292998,Wired Headphones,1,11.99,11/07/19 22:31,"451 7th St, Austin, TX 73301" +292999,27in FHD Monitor,1,149.99,11/25/19 13:17,"378 Forest St, San Francisco, CA 94016" +293000,AAA Batteries (4-pack),1,2.99,11/26/19 12:28,"649 Lincoln St, Austin, TX 73301" +293001,Lightning Charging Cable,1,14.95,11/02/19 10:14,"583 Dogwood St, Atlanta, GA 30301" +293002,Bose SoundSport Headphones,1,99.99,11/30/19 22:49,"578 Willow St, Boston, MA 02215" +293003,Flatscreen TV,1,300,11/29/19 20:10,"425 River St, Los Angeles, CA 90001" +293004,Google Phone,1,600,11/29/19 15:15,"931 1st St, San Francisco, CA 94016" +293004,USB-C Charging Cable,1,11.95,11/29/19 15:15,"931 1st St, San Francisco, CA 94016" +293005,Apple Airpods Headphones,1,150,11/20/19 23:10,"352 13th St, Portland, OR 97035" +293006,Wired Headphones,1,11.99,11/09/19 14:46,"129 Maple St, Dallas, TX 75001" +293007,AA Batteries (4-pack),3,3.84,11/07/19 21:36,"575 Center St, Atlanta, GA 30301" +293008,Lightning Charging Cable,1,14.95,11/16/19 11:15,"777 West St, Dallas, TX 75001" +293009,Lightning Charging Cable,1,14.95,11/05/19 18:47,"976 North St, San Francisco, CA 94016" +293010,Wired Headphones,2,11.99,11/06/19 10:36,"842 Pine St, San Francisco, CA 94016" +293011,Wired Headphones,1,11.99,11/07/19 17:12,"154 Elm St, San Francisco, CA 94016" +293012,Apple Airpods Headphones,1,150,11/06/19 10:39,"929 Ridge St, Los Angeles, CA 90001" +293013,Wired Headphones,1,11.99,11/03/19 13:00,"450 10th St, Austin, TX 73301" +293014,Google Phone,1,600,11/20/19 21:41,"477 10th St, San Francisco, CA 94016" +293015,Apple Airpods Headphones,1,150,11/14/19 10:11,"733 Elm St, San Francisco, CA 94016" +293016,Bose SoundSport Headphones,1,99.99,11/24/19 22:17,"155 6th St, Austin, TX 73301" +293017,USB-C Charging Cable,1,11.95,11/10/19 15:01,"3 Spruce St, Atlanta, GA 30301" +293018,AAA Batteries (4-pack),1,2.99,11/25/19 00:33,"245 11th St, San Francisco, CA 94016" +293019,Wired Headphones,1,11.99,11/13/19 23:05,"891 Walnut St, New York City, NY 10001" +293019,27in FHD Monitor,1,149.99,11/13/19 23:05,"891 Walnut St, New York City, NY 10001" +293020,27in FHD Monitor,1,149.99,11/06/19 14:01,"234 Johnson St, Portland, OR 97035" +293021,AAA Batteries (4-pack),1,2.99,11/03/19 14:55,"267 Chestnut St, Dallas, TX 75001" +293022,USB-C Charging Cable,1,11.95,11/09/19 14:24,"97 Madison St, Dallas, TX 75001" +293023,Lightning Charging Cable,1,14.95,11/19/19 15:08,"79 Sunset St, San Francisco, CA 94016" +293024,Apple Airpods Headphones,1,150,11/15/19 11:16,"556 9th St, New York City, NY 10001" +293025,27in 4K Gaming Monitor,1,389.99,11/20/19 11:28,"532 Willow St, Austin, TX 73301" +293026,Bose SoundSport Headphones,1,99.99,11/07/19 10:50,"734 4th St, Seattle, WA 98101" +293027,Lightning Charging Cable,1,14.95,11/12/19 16:09,"921 Meadow St, Boston, MA 02215" +293028,34in Ultrawide Monitor,1,379.99,11/26/19 13:58,"535 Church St, Portland, OR 97035" +293029,Bose SoundSport Headphones,1,99.99,11/02/19 10:39,"968 Lake St, New York City, NY 10001" +293030,USB-C Charging Cable,1,11.95,11/07/19 09:02,"906 Highland St, Boston, MA 02215" +293031,Wired Headphones,1,11.99,11/11/19 10:56,"413 Hill St, Portland, ME 04101" +293032,27in 4K Gaming Monitor,1,389.99,11/04/19 09:47,"221 1st St, San Francisco, CA 94016" +293033,AA Batteries (4-pack),1,3.84,11/13/19 23:10,"769 4th St, Atlanta, GA 30301" +293034,Lightning Charging Cable,1,14.95,11/14/19 09:38,"187 River St, San Francisco, CA 94016" +293035,Flatscreen TV,1,300,11/13/19 16:30,"473 West St, New York City, NY 10001" +293036,Apple Airpods Headphones,1,150,11/21/19 15:45,"862 Park St, Boston, MA 02215" +293037,USB-C Charging Cable,1,11.95,11/19/19 19:27,"347 Highland St, San Francisco, CA 94016" +293038,AAA Batteries (4-pack),1,2.99,11/28/19 20:14,"288 14th St, Dallas, TX 75001" +293039,Lightning Charging Cable,1,14.95,11/28/19 17:27,"462 10th St, Austin, TX 73301" +293040,Macbook Pro Laptop,1,1700,11/18/19 19:41,"679 South St, Atlanta, GA 30301" +293041,AA Batteries (4-pack),2,3.84,11/14/19 15:02,"421 Hickory St, Seattle, WA 98101" +293042,Lightning Charging Cable,1,14.95,11/19/19 12:40,"974 11th St, Los Angeles, CA 90001" +293043,Bose SoundSport Headphones,1,99.99,11/13/19 08:11,"21 14th St, New York City, NY 10001" +293044,Bose SoundSport Headphones,1,99.99,11/06/19 11:16,"503 Sunset St, San Francisco, CA 94016" +293045,AA Batteries (4-pack),1,3.84,11/30/19 16:29,"516 Hickory St, Boston, MA 02215" +293046,27in FHD Monitor,1,149.99,11/15/19 20:42,"706 Cherry St, San Francisco, CA 94016" +293047,AAA Batteries (4-pack),2,2.99,11/25/19 20:23,"860 Maple St, Austin, TX 73301" +293048,ThinkPad Laptop,1,999.99,11/09/19 12:55,"513 4th St, Boston, MA 02215" +293049,iPhone,1,700,11/25/19 08:16,"798 Chestnut St, Seattle, WA 98101" +293050,AA Batteries (4-pack),1,3.84,11/02/19 15:56,"675 Jefferson St, Seattle, WA 98101" +293051,20in Monitor,1,109.99,11/19/19 15:42,"254 Spruce St, San Francisco, CA 94016" +293052,Apple Airpods Headphones,1,150,11/15/19 12:51,"502 Lincoln St, New York City, NY 10001" +293053,Lightning Charging Cable,1,14.95,11/27/19 22:57,"458 Meadow St, Atlanta, GA 30301" +293054,Lightning Charging Cable,1,14.95,11/25/19 01:33,"545 11th St, Atlanta, GA 30301" +293055,Bose SoundSport Headphones,1,99.99,11/30/19 20:26,"702 Walnut St, Portland, OR 97035" +293056,Flatscreen TV,1,300,11/28/19 21:30,"881 Main St, Boston, MA 02215" +293057,27in 4K Gaming Monitor,1,389.99,11/09/19 18:39,"30 Cedar St, Los Angeles, CA 90001" +293058,27in FHD Monitor,1,149.99,11/15/19 22:30,"596 6th St, Atlanta, GA 30301" +293059,Wired Headphones,1,11.99,11/06/19 13:45,"898 11th St, Boston, MA 02215" +293060,Vareebadd Phone,1,400,11/23/19 21:01,"656 Jackson St, Boston, MA 02215" +293061,Apple Airpods Headphones,1,150,11/20/19 14:50,"17 12th St, San Francisco, CA 94016" +293062,Lightning Charging Cable,1,14.95,11/26/19 19:19,"914 Lake St, Seattle, WA 98101" +293063,USB-C Charging Cable,1,11.95,11/09/19 13:50,"277 Church St, Portland, OR 97035" +293064,Wired Headphones,1,11.99,11/14/19 17:41,"912 8th St, Seattle, WA 98101" +293065,Wired Headphones,1,11.99,11/13/19 10:28,"84 Park St, New York City, NY 10001" +293066,Wired Headphones,1,11.99,11/04/19 14:29,"855 7th St, Boston, MA 02215" +293067,Lightning Charging Cable,1,14.95,11/18/19 13:56,"609 14th St, Los Angeles, CA 90001" +293068,Bose SoundSport Headphones,1,99.99,11/22/19 23:04,"663 Forest St, New York City, NY 10001" +293069,27in FHD Monitor,1,149.99,11/20/19 17:49,"416 1st St, New York City, NY 10001" +293070,ThinkPad Laptop,1,999.99,11/29/19 20:49,"597 South St, San Francisco, CA 94016" +293071,ThinkPad Laptop,1,999.99,11/27/19 21:27,"597 Hickory St, Los Angeles, CA 90001" +293072,AAA Batteries (4-pack),1,2.99,11/02/19 19:25,"123 12th St, Seattle, WA 98101" +293073,AA Batteries (4-pack),1,3.84,11/23/19 16:45,"605 Main St, Atlanta, GA 30301" +293074,Google Phone,1,600,11/02/19 15:13,"807 Dogwood St, San Francisco, CA 94016" +293074,USB-C Charging Cable,1,11.95,11/02/19 15:13,"807 Dogwood St, San Francisco, CA 94016" +293075,Lightning Charging Cable,1,14.95,11/05/19 21:17,"959 Cedar St, Dallas, TX 75001" +293076,Bose SoundSport Headphones,1,99.99,11/14/19 18:42,"424 1st St, Boston, MA 02215" +293077,AA Batteries (4-pack),2,3.84,11/16/19 06:50,"108 Main St, Atlanta, GA 30301" +293078,Lightning Charging Cable,1,14.95,11/02/19 15:54,"987 12th St, San Francisco, CA 94016" +293079,USB-C Charging Cable,1,11.95,11/08/19 19:36,"209 Willow St, Los Angeles, CA 90001" +293080,Flatscreen TV,1,300,11/02/19 19:19,"129 North St, San Francisco, CA 94016" +293081,Bose SoundSport Headphones,1,99.99,11/01/19 17:16,"293 Lakeview St, Los Angeles, CA 90001" +293082,27in FHD Monitor,1,149.99,11/05/19 11:51,"617 Hickory St, Portland, OR 97035" +293083,Apple Airpods Headphones,1,150,11/21/19 18:28,"650 Lake St, San Francisco, CA 94016" +293084,27in 4K Gaming Monitor,1,389.99,11/03/19 12:25,"537 Adams St, San Francisco, CA 94016" +293085,Flatscreen TV,1,300,11/08/19 10:58,"411 Wilson St, New York City, NY 10001" +293086,AAA Batteries (4-pack),1,2.99,11/21/19 11:44,"321 Jefferson St, San Francisco, CA 94016" +293087,USB-C Charging Cable,1,11.95,11/09/19 16:40,"981 Washington St, Portland, OR 97035" +293088,ThinkPad Laptop,1,999.99,11/22/19 19:53,"73 13th St, Seattle, WA 98101" +293089,Lightning Charging Cable,1,14.95,11/30/19 21:53,"108 River St, Seattle, WA 98101" +293090,AA Batteries (4-pack),1,3.84,11/30/19 23:02,"461 Hill St, New York City, NY 10001" +293091,Apple Airpods Headphones,1,150,11/09/19 19:11,"85 Johnson St, San Francisco, CA 94016" +293092,Apple Airpods Headphones,1,150,11/28/19 17:39,"36 Maple St, San Francisco, CA 94016" +293093,Wired Headphones,1,11.99,11/09/19 18:33,"554 Cedar St, Boston, MA 02215" +293094,AAA Batteries (4-pack),3,2.99,11/28/19 11:44,"643 Lincoln St, Portland, ME 04101" +293095,USB-C Charging Cable,1,11.95,11/20/19 12:01,"688 Spruce St, Dallas, TX 75001" +293096,USB-C Charging Cable,1,11.95,11/01/19 20:58,"411 Park St, Boston, MA 02215" +293097,USB-C Charging Cable,1,11.95,11/13/19 19:08,"369 Cedar St, San Francisco, CA 94016" +293098,Apple Airpods Headphones,1,150,11/17/19 12:15,"65 9th St, Boston, MA 02215" +293099,27in FHD Monitor,1,149.99,11/24/19 15:46,"719 South St, San Francisco, CA 94016" +293100,Bose SoundSport Headphones,1,99.99,11/05/19 14:11,"13 Walnut St, Seattle, WA 98101" +293101,Flatscreen TV,1,300,11/27/19 07:18,"346 River St, Portland, ME 04101" +293102,Lightning Charging Cable,2,14.95,11/10/19 16:36,"841 River St, Austin, TX 73301" +293103,USB-C Charging Cable,1,11.95,11/21/19 11:48,"806 14th St, Boston, MA 02215" +,,,,, +293104,Macbook Pro Laptop,1,1700,11/28/19 22:17,"253 Highland St, San Francisco, CA 94016" +293105,USB-C Charging Cable,1,11.95,11/20/19 16:22,"153 Lincoln St, New York City, NY 10001" +293106,Bose SoundSport Headphones,1,99.99,11/10/19 18:44,"925 Ridge St, Seattle, WA 98101" +293107,Macbook Pro Laptop,1,1700,11/26/19 01:51,"114 South St, San Francisco, CA 94016" +293108,AA Batteries (4-pack),2,3.84,11/26/19 17:55,"109 Lincoln St, San Francisco, CA 94016" +293109,Flatscreen TV,1,300,11/26/19 19:49,"785 Hill St, Portland, OR 97035" +293110,Lightning Charging Cable,1,14.95,11/23/19 21:03,"272 River St, Dallas, TX 75001" +293111,USB-C Charging Cable,1,11.95,11/02/19 09:19,"399 Adams St, Dallas, TX 75001" +293112,Bose SoundSport Headphones,1,99.99,11/08/19 13:17,"141 Lakeview St, San Francisco, CA 94016" +293113,Wired Headphones,1,11.99,11/02/19 10:37,"406 Lake St, San Francisco, CA 94016" +293114,AAA Batteries (4-pack),1,2.99,11/30/19 21:43,"483 Johnson St, San Francisco, CA 94016" +293115,Apple Airpods Headphones,1,150,11/13/19 12:27,"429 Hill St, San Francisco, CA 94016" +293116,USB-C Charging Cable,1,11.95,11/25/19 12:53,"470 Lake St, Atlanta, GA 30301" +293117,ThinkPad Laptop,1,999.99,11/15/19 20:02,"667 Meadow St, Atlanta, GA 30301" +293118,27in FHD Monitor,1,149.99,11/01/19 21:33,"734 Sunset St, San Francisco, CA 94016" +293119,20in Monitor,1,109.99,11/22/19 20:59,"479 Cedar St, San Francisco, CA 94016" +293120,Lightning Charging Cable,1,14.95,11/27/19 15:38,"268 West St, Los Angeles, CA 90001" +293121,AAA Batteries (4-pack),1,2.99,11/16/19 15:18,"755 South St, Austin, TX 73301" +293122,Wired Headphones,2,11.99,11/17/19 21:47,"868 5th St, Seattle, WA 98101" +293123,Bose SoundSport Headphones,1,99.99,11/30/19 18:28,"626 Spruce St, New York City, NY 10001" +293124,Google Phone,1,600,11/18/19 20:43,"831 Forest St, San Francisco, CA 94016" +293125,AAA Batteries (4-pack),1,2.99,11/21/19 18:33,"15 Jackson St, San Francisco, CA 94016" +293126,AA Batteries (4-pack),1,3.84,11/05/19 10:49,"512 Lincoln St, Portland, OR 97035" +293127,27in FHD Monitor,1,149.99,11/14/19 10:53,"485 Walnut St, New York City, NY 10001" +293128,USB-C Charging Cable,1,11.95,11/17/19 00:22,"392 Washington St, San Francisco, CA 94016" +293129,Flatscreen TV,1,300,11/17/19 10:48,"694 Lincoln St, Boston, MA 02215" +293130,AAA Batteries (4-pack),1,2.99,11/16/19 09:31,"106 13th St, Portland, OR 97035" +293131,Apple Airpods Headphones,1,150,11/01/19 16:24,"72 2nd St, Los Angeles, CA 90001" +293131,iPhone,1,700,11/01/19 16:24,"72 2nd St, Los Angeles, CA 90001" +293132,USB-C Charging Cable,1,11.95,11/19/19 12:31,"350 Spruce St, Boston, MA 02215" +293133,Apple Airpods Headphones,1,150,11/29/19 10:58,"124 10th St, Los Angeles, CA 90001" +293133,27in 4K Gaming Monitor,1,389.99,11/29/19 10:58,"124 10th St, Los Angeles, CA 90001" +293134,Apple Airpods Headphones,1,150,11/05/19 11:19,"444 Maple St, Los Angeles, CA 90001" +293135,AAA Batteries (4-pack),2,2.99,11/25/19 14:49,"666 Meadow St, Los Angeles, CA 90001" +293136,Lightning Charging Cable,1,14.95,11/15/19 19:40,"566 Spruce St, New York City, NY 10001" +293137,Apple Airpods Headphones,1,150,11/25/19 11:32,"675 Spruce St, San Francisco, CA 94016" +293138,Lightning Charging Cable,1,14.95,11/13/19 12:06,"977 Hickory St, Portland, ME 04101" +293139,USB-C Charging Cable,1,11.95,11/24/19 10:12,"8 Walnut St, Dallas, TX 75001" +293140,Lightning Charging Cable,1,14.95,11/15/19 09:47,"22 5th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +293141,Lightning Charging Cable,1,14.95,11/23/19 00:01,"55 Washington St, Seattle, WA 98101" +293142,AAA Batteries (4-pack),1,2.99,11/03/19 11:03,"922 Lakeview St, Seattle, WA 98101" +293143,Wired Headphones,1,11.99,11/23/19 17:49,"692 12th St, San Francisco, CA 94016" +293144,Apple Airpods Headphones,1,150,11/27/19 22:58,"606 11th St, New York City, NY 10001" +293145,27in 4K Gaming Monitor,1,389.99,11/01/19 11:06,"735 Pine St, Los Angeles, CA 90001" +293146,Apple Airpods Headphones,1,150,11/28/19 14:29,"469 2nd St, Boston, MA 02215" +293147,AAA Batteries (4-pack),1,2.99,11/04/19 12:55,"937 North St, San Francisco, CA 94016" +293148,Lightning Charging Cable,1,14.95,11/10/19 06:19,"580 Church St, Boston, MA 02215" +293149,USB-C Charging Cable,1,11.95,11/09/19 12:50,"925 Maple St, Dallas, TX 75001" +293150,Lightning Charging Cable,1,14.95,11/09/19 05:41,"440 Chestnut St, Los Angeles, CA 90001" +293151,AA Batteries (4-pack),1,3.84,11/02/19 09:16,"776 Main St, Los Angeles, CA 90001" +293152,Lightning Charging Cable,1,14.95,11/30/19 21:36,"362 13th St, San Francisco, CA 94016" +293153,Wired Headphones,1,11.99,11/17/19 15:26,"882 Center St, New York City, NY 10001" +293154,AAA Batteries (4-pack),4,2.99,11/14/19 14:44,"630 Dogwood St, San Francisco, CA 94016" +293155,AA Batteries (4-pack),1,3.84,11/08/19 16:01,"916 6th St, Seattle, WA 98101" +293156,AA Batteries (4-pack),1,3.84,11/07/19 18:13,"591 Main St, San Francisco, CA 94016" +293157,Bose SoundSport Headphones,1,99.99,11/13/19 12:47,"427 Elm St, Atlanta, GA 30301" +293158,Apple Airpods Headphones,1,150,11/07/19 14:31,"187 Wilson St, Austin, TX 73301" +293159,USB-C Charging Cable,1,11.95,11/22/19 06:38,"621 Cedar St, Los Angeles, CA 90001" +293160,34in Ultrawide Monitor,1,379.99,11/23/19 20:36,"445 Dogwood St, Dallas, TX 75001" +293161,USB-C Charging Cable,1,11.95,11/23/19 14:06,"870 13th St, San Francisco, CA 94016" +293162,Apple Airpods Headphones,1,150,11/02/19 09:51,"922 7th St, Atlanta, GA 30301" +293163,AAA Batteries (4-pack),2,2.99,11/12/19 21:05,"872 10th St, Boston, MA 02215" +293164,Wired Headphones,1,11.99,11/25/19 23:39,"44 West St, San Francisco, CA 94016" +293165,USB-C Charging Cable,2,11.95,11/24/19 13:30,"184 9th St, Dallas, TX 75001" +293166,AA Batteries (4-pack),1,3.84,11/20/19 18:55,"624 Jefferson St, Austin, TX 73301" +293167,Wired Headphones,1,11.99,11/27/19 10:58,"741 Johnson St, San Francisco, CA 94016" +293168,AAA Batteries (4-pack),1,2.99,11/05/19 15:45,"135 7th St, Los Angeles, CA 90001" +293169,Bose SoundSport Headphones,2,99.99,11/23/19 13:27,"880 Forest St, Portland, OR 97035" +293170,Macbook Pro Laptop,1,1700,11/05/19 08:01,"856 4th St, Los Angeles, CA 90001" +293171,Flatscreen TV,1,300,11/18/19 14:12,"802 2nd St, Boston, MA 02215" +293171,AA Batteries (4-pack),1,3.84,11/18/19 14:12,"802 2nd St, Boston, MA 02215" +293172,AAA Batteries (4-pack),1,2.99,11/11/19 01:34,"47 Walnut St, San Francisco, CA 94016" +293173,Flatscreen TV,1,300,11/26/19 17:24,"198 Church St, Seattle, WA 98101" +293174,27in 4K Gaming Monitor,1,389.99,11/30/19 16:15,"205 Pine St, Los Angeles, CA 90001" +293175,USB-C Charging Cable,1,11.95,11/26/19 11:32,"143 Johnson St, New York City, NY 10001" +293176,Vareebadd Phone,1,400,11/12/19 14:37,"718 South St, San Francisco, CA 94016" +293177,USB-C Charging Cable,1,11.95,11/17/19 13:21,"643 Madison St, Portland, OR 97035" +293178,AAA Batteries (4-pack),1,2.99,11/24/19 13:10,"236 Cedar St, Atlanta, GA 30301" +293179,AA Batteries (4-pack),1,3.84,11/30/19 14:59,"742 Spruce St, San Francisco, CA 94016" +293180,20in Monitor,1,109.99,11/18/19 08:18,"283 8th St, New York City, NY 10001" +293181,Google Phone,1,600,11/25/19 17:04,"360 Cherry St, New York City, NY 10001" +293182,USB-C Charging Cable,1,11.95,11/19/19 20:06,"547 Church St, Boston, MA 02215" +293183,27in 4K Gaming Monitor,1,389.99,11/28/19 23:51,"666 4th St, San Francisco, CA 94016" +293184,AAA Batteries (4-pack),2,2.99,11/19/19 10:44,"554 Lake St, Los Angeles, CA 90001" +293185,34in Ultrawide Monitor,1,379.99,11/26/19 19:37,"464 Meadow St, Los Angeles, CA 90001" +293186,iPhone,1,700,11/03/19 17:38,"744 7th St, Atlanta, GA 30301" +293186,Lightning Charging Cable,1,14.95,11/03/19 17:38,"744 7th St, Atlanta, GA 30301" +293187,Macbook Pro Laptop,1,1700,11/16/19 19:54,"959 Forest St, Dallas, TX 75001" +293188,AA Batteries (4-pack),1,3.84,11/09/19 12:06,"746 Main St, Los Angeles, CA 90001" +293189,iPhone,1,700,11/12/19 17:34,"595 Lake St, New York City, NY 10001" +293190,AAA Batteries (4-pack),2,2.99,11/12/19 18:37,"662 14th St, San Francisco, CA 94016" +293191,Wired Headphones,1,11.99,11/26/19 12:46,"195 8th St, Boston, MA 02215" +293192,Wired Headphones,1,11.99,11/29/19 08:52,"543 Willow St, Austin, TX 73301" +293193,Lightning Charging Cable,1,14.95,11/18/19 18:33,"845 9th St, Dallas, TX 75001" +293194,AA Batteries (4-pack),1,3.84,11/14/19 08:18,"302 Johnson St, San Francisco, CA 94016" +293195,Lightning Charging Cable,1,14.95,11/04/19 22:47,"462 Chestnut St, Dallas, TX 75001" +293196,AAA Batteries (4-pack),1,2.99,11/13/19 16:17,"846 Lincoln St, Portland, OR 97035" +293197,iPhone,1,700,11/27/19 09:49,"247 11th St, Seattle, WA 98101" +293198,AAA Batteries (4-pack),2,2.99,11/05/19 19:38,"638 Church St, Seattle, WA 98101" +293199,Apple Airpods Headphones,1,150,11/27/19 21:26,"762 Lake St, San Francisco, CA 94016" +293199,AA Batteries (4-pack),2,3.84,11/27/19 21:26,"762 Lake St, San Francisco, CA 94016" +293200,Lightning Charging Cable,1,14.95,11/13/19 17:44,"89 5th St, San Francisco, CA 94016" +293201,AAA Batteries (4-pack),1,2.99,11/13/19 01:52,"72 River St, New York City, NY 10001" +293202,USB-C Charging Cable,1,11.95,11/22/19 16:28,"654 11th St, Los Angeles, CA 90001" +293203,Macbook Pro Laptop,1,1700,11/24/19 07:48,"805 South St, New York City, NY 10001" +293204,LG Dryer,1,600.0,11/24/19 20:55,"285 Meadow St, San Francisco, CA 94016" +293205,Lightning Charging Cable,1,14.95,11/20/19 10:34,"392 13th St, Atlanta, GA 30301" +293206,USB-C Charging Cable,1,11.95,11/28/19 11:02,"856 Hickory St, New York City, NY 10001" +293207,USB-C Charging Cable,1,11.95,11/11/19 13:47,"27 North St, Seattle, WA 98101" +293208,AA Batteries (4-pack),1,3.84,11/09/19 19:20,"369 7th St, Seattle, WA 98101" +293209,27in 4K Gaming Monitor,1,389.99,11/05/19 17:01,"270 Elm St, San Francisco, CA 94016" +293210,AAA Batteries (4-pack),1,2.99,11/01/19 14:20,"605 South St, San Francisco, CA 94016" +293211,AAA Batteries (4-pack),1,2.99,11/21/19 15:10,"117 Pine St, Portland, OR 97035" +293212,AAA Batteries (4-pack),1,2.99,11/16/19 22:11,"169 Adams St, Seattle, WA 98101" +293213,USB-C Charging Cable,1,11.95,11/18/19 18:39,"600 Hickory St, Los Angeles, CA 90001" +293214,USB-C Charging Cable,1,11.95,11/23/19 01:06,"982 Main St, Los Angeles, CA 90001" +293215,Lightning Charging Cable,1,14.95,11/26/19 10:06,"330 Washington St, Atlanta, GA 30301" +293216,Bose SoundSport Headphones,1,99.99,11/24/19 16:38,"960 Center St, Los Angeles, CA 90001" +293217,Bose SoundSport Headphones,1,99.99,11/26/19 12:52,"933 Dogwood St, San Francisco, CA 94016" +293218,AAA Batteries (4-pack),1,2.99,11/04/19 12:23,"114 Pine St, Boston, MA 02215" +293219,USB-C Charging Cable,2,11.95,11/05/19 12:50,"251 Lincoln St, Boston, MA 02215" +293220,Flatscreen TV,1,300,11/11/19 12:25,"873 Center St, San Francisco, CA 94016" +293221,AAA Batteries (4-pack),1,2.99,11/09/19 20:57,"185 Meadow St, San Francisco, CA 94016" +293222,Wired Headphones,1,11.99,11/06/19 09:23,"656 West St, New York City, NY 10001" +293223,27in FHD Monitor,1,149.99,11/10/19 18:07,"334 2nd St, Los Angeles, CA 90001" +293224,Lightning Charging Cable,1,14.95,11/01/19 10:50,"212 6th St, Portland, OR 97035" +293225,Lightning Charging Cable,1,14.95,11/16/19 21:57,"289 Main St, Los Angeles, CA 90001" +293226,Lightning Charging Cable,1,14.95,11/17/19 13:52,"591 2nd St, New York City, NY 10001" +293227,27in 4K Gaming Monitor,1,389.99,11/09/19 06:58,"855 4th St, San Francisco, CA 94016" +293228,Lightning Charging Cable,1,14.95,11/16/19 18:08,"432 Ridge St, New York City, NY 10001" +293229,Apple Airpods Headphones,1,150,11/21/19 13:20,"517 Madison St, Los Angeles, CA 90001" +293230,34in Ultrawide Monitor,1,379.99,11/06/19 12:28,"921 12th St, Portland, OR 97035" +293231,USB-C Charging Cable,1,11.95,11/11/19 19:52,"917 Madison St, Seattle, WA 98101" +293232,Bose SoundSport Headphones,1,99.99,11/26/19 19:52,"770 Maple St, Dallas, TX 75001" +293233,AAA Batteries (4-pack),1,2.99,11/16/19 15:51,"993 Sunset St, Austin, TX 73301" +293234,USB-C Charging Cable,1,11.95,11/05/19 05:19,"715 8th St, San Francisco, CA 94016" +293235,Bose SoundSport Headphones,1,99.99,11/17/19 20:30,"912 13th St, New York City, NY 10001" +293236,20in Monitor,1,109.99,11/20/19 22:32,"136 Cherry St, San Francisco, CA 94016" +293237,iPhone,1,700,11/24/19 14:31,"443 14th St, Portland, OR 97035" +293238,USB-C Charging Cable,1,11.95,11/28/19 00:05,"563 Jackson St, Atlanta, GA 30301" +293239,27in FHD Monitor,1,149.99,11/01/19 15:35,"199 Pine St, New York City, NY 10001" +293240,ThinkPad Laptop,1,999.99,11/20/19 23:36,"832 Maple St, San Francisco, CA 94016" +293241,Wired Headphones,1,11.99,11/25/19 15:05,"717 Sunset St, Portland, ME 04101" +293242,AA Batteries (4-pack),1,3.84,11/30/19 11:56,"577 Forest St, Atlanta, GA 30301" +293243,AAA Batteries (4-pack),4,2.99,11/07/19 18:07,"689 Johnson St, Dallas, TX 75001" +293244,Google Phone,1,600,11/15/19 11:32,"659 Washington St, Dallas, TX 75001" +293245,Lightning Charging Cable,1,14.95,11/03/19 10:45,"224 Hill St, Los Angeles, CA 90001" +293246,Bose SoundSport Headphones,1,99.99,11/28/19 18:02,"485 Highland St, Seattle, WA 98101" +293247,AAA Batteries (4-pack),1,2.99,11/14/19 23:18,"512 Lincoln St, Los Angeles, CA 90001" +293248,Apple Airpods Headphones,1,150,11/21/19 14:52,"983 Johnson St, San Francisco, CA 94016" +293249,AAA Batteries (4-pack),1,2.99,11/25/19 20:55,"388 8th St, Seattle, WA 98101" +293250,27in 4K Gaming Monitor,1,389.99,11/25/19 18:11,"676 Hickory St, New York City, NY 10001" +293251,Google Phone,1,600,11/14/19 22:46,"156 Willow St, Atlanta, GA 30301" +293252,20in Monitor,1,109.99,11/21/19 08:49,"530 Highland St, San Francisco, CA 94016" +293253,Lightning Charging Cable,1,14.95,11/01/19 08:59,"155 River St, Los Angeles, CA 90001" +293254,Apple Airpods Headphones,1,150,11/07/19 17:39,"112 Jackson St, Boston, MA 02215" +293255,Bose SoundSport Headphones,1,99.99,11/18/19 15:28,"347 Jefferson St, Los Angeles, CA 90001" +293256,AAA Batteries (4-pack),2,2.99,11/02/19 22:59,"807 Pine St, Atlanta, GA 30301" +293257,USB-C Charging Cable,1,11.95,11/05/19 20:54,"945 Maple St, San Francisco, CA 94016" +293257,AA Batteries (4-pack),4,3.84,11/05/19 20:54,"945 Maple St, San Francisco, CA 94016" +293258,AAA Batteries (4-pack),2,2.99,11/24/19 11:13,"818 Lincoln St, San Francisco, CA 94016" +293259,Wired Headphones,1,11.99,11/14/19 15:47,"150 Elm St, Boston, MA 02215" +293260,Lightning Charging Cable,2,14.95,11/28/19 17:00,"451 Washington St, Dallas, TX 75001" +293261,Wired Headphones,1,11.99,11/19/19 18:20,"410 Center St, Portland, OR 97035" +293262,USB-C Charging Cable,1,11.95,11/07/19 17:01,"337 6th St, Portland, ME 04101" +293263,AAA Batteries (4-pack),1,2.99,11/27/19 13:09,"157 Adams St, San Francisco, CA 94016" +293264,Wired Headphones,1,11.99,11/28/19 17:08,"919 Lake St, San Francisco, CA 94016" +293265,Lightning Charging Cable,1,14.95,11/28/19 19:04,"805 Dogwood St, Los Angeles, CA 90001" +293266,Bose SoundSport Headphones,1,99.99,11/13/19 13:13,"374 Center St, Los Angeles, CA 90001" +293267,Apple Airpods Headphones,1,150,11/29/19 14:31,"38 14th St, Portland, OR 97035" +293268,USB-C Charging Cable,1,11.95,11/26/19 11:28,"405 Hickory St, Seattle, WA 98101" +293269,Lightning Charging Cable,2,14.95,11/15/19 07:42,"515 Jackson St, Dallas, TX 75001" +293270,AA Batteries (4-pack),1,3.84,11/05/19 12:10,"248 Lake St, San Francisco, CA 94016" +293271,LG Washing Machine,1,600.0,11/18/19 14:14,"786 13th St, Seattle, WA 98101" +293272,Bose SoundSport Headphones,1,99.99,11/24/19 16:18,"102 Main St, San Francisco, CA 94016" +293273,AA Batteries (4-pack),2,3.84,11/11/19 03:23,"780 Willow St, San Francisco, CA 94016" +293274,Macbook Pro Laptop,1,1700,11/29/19 11:44,"198 Lincoln St, Seattle, WA 98101" +293275,ThinkPad Laptop,1,999.99,11/03/19 10:44,"340 South St, Seattle, WA 98101" +293276,27in FHD Monitor,1,149.99,11/01/19 16:12,"837 Madison St, Austin, TX 73301" +293277,Wired Headphones,1,11.99,11/13/19 12:33,"524 4th St, Atlanta, GA 30301" +293278,ThinkPad Laptop,1,999.99,11/27/19 20:34,"610 12th St, Boston, MA 02215" +293279,Lightning Charging Cable,1,14.95,11/18/19 23:50,"576 Hickory St, Atlanta, GA 30301" +293280,AAA Batteries (4-pack),1,2.99,11/23/19 06:10,"467 Jackson St, San Francisco, CA 94016" +293281,Apple Airpods Headphones,1,150,11/18/19 07:36,"654 Walnut St, Boston, MA 02215" +293282,Wired Headphones,1,11.99,11/28/19 12:15,"661 Center St, Dallas, TX 75001" +293283,Lightning Charging Cable,1,14.95,11/14/19 18:00,"435 Ridge St, San Francisco, CA 94016" +293284,iPhone,1,700,11/27/19 14:13,"832 5th St, Los Angeles, CA 90001" +293285,Lightning Charging Cable,1,14.95,11/05/19 19:40,"179 Chestnut St, Boston, MA 02215" +293286,ThinkPad Laptop,1,999.99,11/06/19 15:00,"9 7th St, Boston, MA 02215" +293287,AAA Batteries (4-pack),1,2.99,11/13/19 10:49,"188 Park St, Austin, TX 73301" +293288,AA Batteries (4-pack),2,3.84,11/15/19 15:02,"388 12th St, Atlanta, GA 30301" +293289,Wired Headphones,1,11.99,11/13/19 10:40,"266 7th St, Dallas, TX 75001" +293290,AA Batteries (4-pack),1,3.84,11/29/19 10:48,"664 Willow St, San Francisco, CA 94016" +293291,27in FHD Monitor,1,149.99,11/17/19 20:09,"153 Ridge St, New York City, NY 10001" +293292,Wired Headphones,1,11.99,11/04/19 11:04,"285 7th St, Boston, MA 02215" +293293,AAA Batteries (4-pack),1,2.99,11/07/19 21:43,"468 Maple St, San Francisco, CA 94016" +293294,34in Ultrawide Monitor,1,379.99,11/11/19 23:55,"998 Center St, New York City, NY 10001" +293295,USB-C Charging Cable,2,11.95,11/16/19 02:46,"78 Madison St, New York City, NY 10001" +293296,AAA Batteries (4-pack),1,2.99,11/17/19 18:33,"969 1st St, San Francisco, CA 94016" +293297,Wired Headphones,1,11.99,11/24/19 07:41,"785 12th St, New York City, NY 10001" +293298,Google Phone,1,600,11/03/19 12:02,"520 Hickory St, Seattle, WA 98101" +293299,Lightning Charging Cable,1,14.95,11/24/19 11:31,"961 Johnson St, Los Angeles, CA 90001" +293300,Lightning Charging Cable,1,14.95,11/24/19 08:07,"600 5th St, New York City, NY 10001" +293301,Bose SoundSport Headphones,1,99.99,11/19/19 20:02,"64 Lakeview St, Boston, MA 02215" +,,,,, +293302,Apple Airpods Headphones,1,150,11/11/19 07:47,"628 Lake St, New York City, NY 10001" +293303,Wired Headphones,1,11.99,11/27/19 20:35,"815 Highland St, San Francisco, CA 94016" +293304,Lightning Charging Cable,1,14.95,11/12/19 12:10,"475 Meadow St, Boston, MA 02215" +293304,34in Ultrawide Monitor,1,379.99,11/12/19 12:10,"475 Meadow St, Boston, MA 02215" +293305,Wired Headphones,2,11.99,11/19/19 07:35,"690 Lincoln St, Boston, MA 02215" +293306,USB-C Charging Cable,1,11.95,11/10/19 11:30,"170 Willow St, Boston, MA 02215" +293307,Wired Headphones,1,11.99,11/01/19 07:20,"606 Cedar St, Atlanta, GA 30301" +293308,AAA Batteries (4-pack),2,2.99,11/11/19 00:27,"305 River St, Dallas, TX 75001" +293309,AA Batteries (4-pack),1,3.84,11/23/19 13:59,"175 Ridge St, Seattle, WA 98101" +293310,Lightning Charging Cable,1,14.95,11/21/19 11:24,"616 Highland St, Austin, TX 73301" +293311,AA Batteries (4-pack),1,3.84,11/28/19 14:42,"436 Johnson St, San Francisco, CA 94016" +293312,AA Batteries (4-pack),2,3.84,11/28/19 17:20,"635 Spruce St, San Francisco, CA 94016" +293313,34in Ultrawide Monitor,1,379.99,11/28/19 16:01,"221 Lake St, Los Angeles, CA 90001" +293314,USB-C Charging Cable,1,11.95,11/15/19 20:27,"333 Johnson St, Los Angeles, CA 90001" +293315,Google Phone,1,600,11/25/19 14:03,"266 Lake St, San Francisco, CA 94016" +293316,AAA Batteries (4-pack),2,2.99,11/12/19 12:59,"16 Jackson St, New York City, NY 10001" +293317,USB-C Charging Cable,1,11.95,11/07/19 08:39,"843 Willow St, New York City, NY 10001" +293318,27in FHD Monitor,1,149.99,11/28/19 09:15,"458 Maple St, New York City, NY 10001" +293319,Lightning Charging Cable,1,14.95,11/08/19 01:53,"965 5th St, New York City, NY 10001" +293320,AA Batteries (4-pack),1,3.84,11/27/19 15:38,"297 Meadow St, San Francisco, CA 94016" +293321,USB-C Charging Cable,1,11.95,11/26/19 17:48,"639 14th St, Austin, TX 73301" +293322,Lightning Charging Cable,1,14.95,11/19/19 17:41,"371 Johnson St, San Francisco, CA 94016" +293323,Apple Airpods Headphones,1,150,11/26/19 19:50,"388 Dogwood St, New York City, NY 10001" +293324,USB-C Charging Cable,1,11.95,11/04/19 11:30,"932 Willow St, Los Angeles, CA 90001" +293325,AA Batteries (4-pack),1,3.84,11/11/19 15:54,"211 Spruce St, Portland, OR 97035" +293326,AAA Batteries (4-pack),1,2.99,11/01/19 17:26,"416 1st St, Los Angeles, CA 90001" +293327,AA Batteries (4-pack),2,3.84,11/25/19 13:32,"918 Wilson St, Portland, ME 04101" +293328,Vareebadd Phone,1,400,11/25/19 13:05,"942 Madison St, Boston, MA 02215" +293329,Google Phone,1,600,11/08/19 18:45,"768 Church St, Los Angeles, CA 90001" +293330,20in Monitor,1,109.99,11/12/19 12:06,"446 11th St, San Francisco, CA 94016" +293331,Macbook Pro Laptop,1,1700,11/01/19 18:41,"584 Hill St, San Francisco, CA 94016" +293332,20in Monitor,1,109.99,11/23/19 22:40,"757 Ridge St, Seattle, WA 98101" +293333,Bose SoundSport Headphones,1,99.99,11/08/19 10:45,"935 8th St, Dallas, TX 75001" +293334,Wired Headphones,1,11.99,11/04/19 18:20,"473 Madison St, Los Angeles, CA 90001" +293335,AA Batteries (4-pack),1,3.84,11/04/19 06:53,"561 Elm St, Los Angeles, CA 90001" +293336,Bose SoundSport Headphones,1,99.99,11/17/19 19:45,"550 11th St, Los Angeles, CA 90001" +293337,AA Batteries (4-pack),1,3.84,11/13/19 13:54,"302 Forest St, Dallas, TX 75001" +293338,27in 4K Gaming Monitor,1,389.99,11/03/19 13:02,"585 Dogwood St, Austin, TX 73301" +293339,AAA Batteries (4-pack),2,2.99,11/14/19 11:44,"435 Pine St, San Francisco, CA 94016" +293340,Bose SoundSport Headphones,1,99.99,11/03/19 20:49,"921 4th St, Seattle, WA 98101" +293341,Apple Airpods Headphones,1,150,11/27/19 14:54,"551 6th St, San Francisco, CA 94016" +293342,27in 4K Gaming Monitor,1,389.99,11/22/19 19:55,"34 Maple St, Boston, MA 02215" +293343,AAA Batteries (4-pack),2,2.99,11/27/19 06:40,"958 South St, San Francisco, CA 94016" +293344,AA Batteries (4-pack),1,3.84,11/24/19 16:01,"843 Center St, San Francisco, CA 94016" +293345,USB-C Charging Cable,1,11.95,11/24/19 22:40,"379 West St, San Francisco, CA 94016" +293346,Apple Airpods Headphones,1,150,11/26/19 19:30,"93 Lakeview St, New York City, NY 10001" +293347,AA Batteries (4-pack),1,3.84,11/20/19 19:45,"860 Walnut St, Dallas, TX 75001" +293348,ThinkPad Laptop,1,999.99,11/23/19 18:57,"143 Jefferson St, Austin, TX 73301" +293349,AA Batteries (4-pack),1,3.84,11/15/19 20:45,"206 Park St, Los Angeles, CA 90001" +293350,AAA Batteries (4-pack),1,2.99,11/18/19 18:32,"434 South St, Portland, OR 97035" +293351,AA Batteries (4-pack),1,3.84,11/04/19 11:33,"537 Lincoln St, Los Angeles, CA 90001" +293352,AAA Batteries (4-pack),2,2.99,11/09/19 15:26,"819 Lakeview St, Atlanta, GA 30301" +293353,USB-C Charging Cable,1,11.95,11/30/19 07:34,"60 13th St, San Francisco, CA 94016" +293354,27in FHD Monitor,1,149.99,11/05/19 20:06,"382 Chestnut St, San Francisco, CA 94016" +293355,Wired Headphones,1,11.99,11/12/19 12:08,"250 Walnut St, Dallas, TX 75001" +293356,AAA Batteries (4-pack),1,2.99,11/09/19 19:06,"424 1st St, Los Angeles, CA 90001" +293357,Wired Headphones,2,11.99,11/13/19 19:05,"925 Jackson St, Dallas, TX 75001" +293358,Lightning Charging Cable,1,14.95,11/14/19 22:25,"348 4th St, Seattle, WA 98101" +293359,Apple Airpods Headphones,1,150,11/27/19 13:09,"96 Cherry St, Boston, MA 02215" +293360,LG Dryer,1,600.0,11/21/19 06:08,"422 Cedar St, Austin, TX 73301" +293361,27in FHD Monitor,1,149.99,11/09/19 18:43,"874 Cherry St, Boston, MA 02215" +293362,AA Batteries (4-pack),1,3.84,11/20/19 21:34,"874 Willow St, Los Angeles, CA 90001" +293363,USB-C Charging Cable,1,11.95,11/25/19 19:57,"147 Pine St, New York City, NY 10001" +293364,Lightning Charging Cable,1,14.95,11/21/19 19:49,"840 Chestnut St, Boston, MA 02215" +293365,Lightning Charging Cable,1,14.95,11/22/19 14:03,"418 13th St, Los Angeles, CA 90001" +293366,AAA Batteries (4-pack),1,2.99,11/09/19 12:15,"709 Hill St, Boston, MA 02215" +293367,Lightning Charging Cable,1,14.95,11/18/19 03:57,"40 Park St, Boston, MA 02215" +293368,Macbook Pro Laptop,1,1700,11/27/19 18:32,"436 Cedar St, New York City, NY 10001" +293369,AA Batteries (4-pack),2,3.84,11/02/19 16:07,"909 7th St, Seattle, WA 98101" +293370,Wired Headphones,1,11.99,11/28/19 20:36,"994 Lake St, San Francisco, CA 94016" +293371,27in FHD Monitor,1,149.99,11/17/19 11:27,"49 Meadow St, Seattle, WA 98101" +293372,AAA Batteries (4-pack),1,2.99,11/29/19 20:54,"994 6th St, San Francisco, CA 94016" +293373,Flatscreen TV,1,300,12/01/19 02:04,"405 Madison St, Los Angeles, CA 90001" +293374,AAA Batteries (4-pack),1,2.99,11/29/19 20:02,"623 Madison St, Dallas, TX 75001" +293375,Google Phone,1,600,11/13/19 07:37,"296 12th St, San Francisco, CA 94016" +293376,27in 4K Gaming Monitor,1,389.99,11/07/19 17:26,"897 4th St, New York City, NY 10001" +293377,USB-C Charging Cable,1,11.95,11/20/19 10:07,"143 Johnson St, Atlanta, GA 30301" +293378,Wired Headphones,1,11.99,11/18/19 17:32,"778 4th St, San Francisco, CA 94016" +293379,Apple Airpods Headphones,1,150,11/14/19 11:16,"396 Church St, Atlanta, GA 30301" +293380,LG Washing Machine,1,600.0,11/12/19 00:23,"133 Spruce St, Atlanta, GA 30301" +293381,27in FHD Monitor,1,149.99,11/23/19 18:53,"95 Chestnut St, Boston, MA 02215" +293382,27in FHD Monitor,1,149.99,11/08/19 22:09,"561 River St, San Francisco, CA 94016" +293383,AA Batteries (4-pack),1,3.84,11/10/19 11:47,"747 10th St, Los Angeles, CA 90001" +293384,34in Ultrawide Monitor,1,379.99,11/26/19 19:56,"518 Chestnut St, San Francisco, CA 94016" +293385,iPhone,1,700,11/01/19 15:38,"621 Hickory St, Austin, TX 73301" +293385,Lightning Charging Cable,1,14.95,11/01/19 15:38,"621 Hickory St, Austin, TX 73301" +293385,Wired Headphones,1,11.99,11/01/19 15:38,"621 Hickory St, Austin, TX 73301" +293386,USB-C Charging Cable,1,11.95,11/04/19 07:52,"397 Washington St, Portland, ME 04101" +293387,Lightning Charging Cable,1,14.95,11/20/19 18:09,"218 Wilson St, San Francisco, CA 94016" +293388,Wired Headphones,1,11.99,11/13/19 22:26,"434 Maple St, Boston, MA 02215" +293389,USB-C Charging Cable,1,11.95,11/17/19 21:24,"707 Dogwood St, Seattle, WA 98101" +293390,AA Batteries (4-pack),1,3.84,11/16/19 19:34,"738 9th St, Dallas, TX 75001" +293391,34in Ultrawide Monitor,1,379.99,11/19/19 17:57,"916 Lake St, New York City, NY 10001" +293392,Wired Headphones,1,11.99,11/09/19 20:31,"688 North St, San Francisco, CA 94016" +293393,Bose SoundSport Headphones,1,99.99,11/17/19 19:28,"701 Johnson St, New York City, NY 10001" +293394,USB-C Charging Cable,1,11.95,11/28/19 12:37,"561 13th St, New York City, NY 10001" +293395,34in Ultrawide Monitor,1,379.99,11/20/19 21:38,"532 11th St, Atlanta, GA 30301" +293396,iPhone,1,700,11/24/19 11:51,"691 Lincoln St, Dallas, TX 75001" +293397,Bose SoundSport Headphones,1,99.99,11/02/19 11:12,"849 Main St, Portland, OR 97035" +293398,USB-C Charging Cable,1,11.95,11/16/19 13:08,"176 Willow St, Los Angeles, CA 90001" +293399,20in Monitor,1,109.99,11/10/19 22:05,"749 Church St, Los Angeles, CA 90001" +293399,27in 4K Gaming Monitor,1,389.99,11/10/19 22:05,"749 Church St, Los Angeles, CA 90001" +293400,ThinkPad Laptop,1,999.99,11/21/19 18:55,"170 Adams St, Los Angeles, CA 90001" +293401,Google Phone,1,600,11/24/19 21:12,"560 Ridge St, Austin, TX 73301" +293402,AAA Batteries (4-pack),2,2.99,11/16/19 09:19,"882 14th St, San Francisco, CA 94016" +293403,AA Batteries (4-pack),1,3.84,11/28/19 20:50,"203 7th St, Los Angeles, CA 90001" +293404,Wired Headphones,1,11.99,11/13/19 10:33,"172 Dogwood St, San Francisco, CA 94016" +293405,Bose SoundSport Headphones,1,99.99,11/04/19 11:55,"805 Madison St, New York City, NY 10001" +293406,AAA Batteries (4-pack),4,2.99,11/03/19 20:33,"458 6th St, New York City, NY 10001" +293407,Bose SoundSport Headphones,1,99.99,11/11/19 16:00,"820 Lakeview St, Boston, MA 02215" +293408,AA Batteries (4-pack),2,3.84,11/27/19 15:14,"979 Forest St, San Francisco, CA 94016" +293409,Apple Airpods Headphones,1,150,11/05/19 12:42,"809 Ridge St, Boston, MA 02215" +293409,Flatscreen TV,1,300,11/05/19 12:42,"809 Ridge St, Boston, MA 02215" +293410,27in FHD Monitor,1,149.99,11/02/19 18:09,"203 12th St, Boston, MA 02215" +293411,LG Dryer,1,600.0,11/02/19 18:01,"660 6th St, New York City, NY 10001" +293412,AA Batteries (4-pack),1,3.84,11/04/19 21:24,"596 Lakeview St, Boston, MA 02215" +293413,20in Monitor,1,109.99,11/29/19 04:34,"708 Cherry St, San Francisco, CA 94016" +293414,USB-C Charging Cable,2,11.95,11/02/19 23:20,"384 Spruce St, New York City, NY 10001" +293415,Apple Airpods Headphones,1,150,11/13/19 19:26,"817 Hill St, San Francisco, CA 94016" +293416,Wired Headphones,1,11.99,11/12/19 14:05,"420 South St, Austin, TX 73301" +293417,AA Batteries (4-pack),2,3.84,11/04/19 19:26,"778 10th St, San Francisco, CA 94016" +293418,Apple Airpods Headphones,1,150,11/06/19 23:23,"423 Elm St, Seattle, WA 98101" +293419,iPhone,1,700,11/08/19 19:08,"877 Cedar St, New York City, NY 10001" +293420,27in FHD Monitor,1,149.99,11/30/19 00:37,"735 Park St, Boston, MA 02215" +293421,AA Batteries (4-pack),1,3.84,11/04/19 02:36,"145 12th St, Atlanta, GA 30301" +293422,USB-C Charging Cable,1,11.95,11/25/19 14:54,"579 South St, San Francisco, CA 94016" +293423,Wired Headphones,1,11.99,11/17/19 00:15,"215 Jackson St, San Francisco, CA 94016" +293424,Lightning Charging Cable,1,14.95,11/29/19 12:18,"71 River St, Seattle, WA 98101" +293425,Macbook Pro Laptop,1,1700,11/12/19 14:47,"431 Washington St, Seattle, WA 98101" +293426,AA Batteries (4-pack),1,3.84,11/22/19 22:15,"742 14th St, San Francisco, CA 94016" +293427,20in Monitor,1,109.99,11/09/19 09:06,"334 Lincoln St, Dallas, TX 75001" +293428,AA Batteries (4-pack),1,3.84,11/17/19 00:03,"163 Lincoln St, San Francisco, CA 94016" +293429,USB-C Charging Cable,1,11.95,11/12/19 21:40,"162 Maple St, Los Angeles, CA 90001" +293430,Bose SoundSport Headphones,1,99.99,11/04/19 17:15,"497 Ridge St, San Francisco, CA 94016" +293431,AAA Batteries (4-pack),1,2.99,11/11/19 10:53,"860 South St, Dallas, TX 75001" +293432,ThinkPad Laptop,1,999.99,11/10/19 14:29,"842 Chestnut St, New York City, NY 10001" +293433,Lightning Charging Cable,1,14.95,11/13/19 10:30,"397 2nd St, Los Angeles, CA 90001" +293434,USB-C Charging Cable,1,11.95,11/23/19 03:39,"546 5th St, New York City, NY 10001" +293435,Wired Headphones,1,11.99,11/30/19 19:00,"735 Lakeview St, San Francisco, CA 94016" +293436,AAA Batteries (4-pack),2,2.99,11/04/19 13:44,"79 Meadow St, Los Angeles, CA 90001" +293437,Flatscreen TV,1,300,11/08/19 16:27,"630 Church St, Boston, MA 02215" +293438,34in Ultrawide Monitor,1,379.99,11/10/19 07:15,"822 Pine St, Dallas, TX 75001" +293439,34in Ultrawide Monitor,1,379.99,11/28/19 15:03,"895 Chestnut St, Boston, MA 02215" +293440,USB-C Charging Cable,1,11.95,11/01/19 15:07,"130 Walnut St, Boston, MA 02215" +293441,Wired Headphones,2,11.99,11/13/19 00:04,"284 North St, Boston, MA 02215" +293442,Lightning Charging Cable,2,14.95,11/01/19 10:21,"953 Meadow St, Seattle, WA 98101" +293443,Macbook Pro Laptop,1,1700,11/06/19 18:03,"679 Washington St, Atlanta, GA 30301" +293444,AAA Batteries (4-pack),1,2.99,11/25/19 19:48,"837 Church St, San Francisco, CA 94016" +293445,Wired Headphones,1,11.99,11/11/19 18:11,"293 Sunset St, San Francisco, CA 94016" +293446,Apple Airpods Headphones,1,150,11/17/19 18:47,"349 4th St, Atlanta, GA 30301" +293447,USB-C Charging Cable,2,11.95,11/16/19 18:45,"83 1st St, Boston, MA 02215" +293448,Wired Headphones,2,11.99,11/26/19 17:05,"419 Lincoln St, New York City, NY 10001" +293448,Apple Airpods Headphones,1,150,11/26/19 17:05,"419 Lincoln St, New York City, NY 10001" +293449,20in Monitor,1,109.99,11/19/19 23:54,"541 10th St, Dallas, TX 75001" +293450,Bose SoundSport Headphones,1,99.99,11/29/19 22:45,"779 Sunset St, San Francisco, CA 94016" +293450,Apple Airpods Headphones,1,150,11/29/19 22:45,"779 Sunset St, San Francisco, CA 94016" +293451,AAA Batteries (4-pack),1,2.99,11/13/19 09:03,"238 Madison St, Los Angeles, CA 90001" +293452,Macbook Pro Laptop,1,1700,11/16/19 19:23,"928 Chestnut St, Los Angeles, CA 90001" +293453,Macbook Pro Laptop,1,1700,11/05/19 17:32,"189 Center St, Dallas, TX 75001" +293454,Apple Airpods Headphones,1,150,11/03/19 14:12,"340 Main St, Portland, OR 97035" +293455,27in FHD Monitor,1,149.99,11/06/19 16:07,"822 Center St, New York City, NY 10001" +293456,AA Batteries (4-pack),1,3.84,11/21/19 18:15,"901 Willow St, Los Angeles, CA 90001" +293457,Wired Headphones,1,11.99,11/20/19 06:59,"702 5th St, Dallas, TX 75001" +293458,AAA Batteries (4-pack),1,2.99,11/30/19 21:16,"729 14th St, Portland, OR 97035" +293459,Bose SoundSport Headphones,1,99.99,11/05/19 18:01,"854 Walnut St, San Francisco, CA 94016" +293460,Apple Airpods Headphones,1,150,11/26/19 23:21,"214 7th St, New York City, NY 10001" +293461,USB-C Charging Cable,1,11.95,11/30/19 13:59,"44 Lake St, Austin, TX 73301" +293462,AA Batteries (4-pack),1,3.84,11/21/19 13:53,"283 Sunset St, Portland, OR 97035" +293463,AAA Batteries (4-pack),1,2.99,11/12/19 13:50,"793 Meadow St, San Francisco, CA 94016" +293464,Wired Headphones,1,11.99,11/20/19 10:49,"251 4th St, Atlanta, GA 30301" +293465,27in 4K Gaming Monitor,1,389.99,11/13/19 18:55,"763 Willow St, San Francisco, CA 94016" +293466,27in 4K Gaming Monitor,1,389.99,11/05/19 15:49,"617 Church St, Atlanta, GA 30301" +293467,AA Batteries (4-pack),2,3.84,11/06/19 09:18,"919 River St, San Francisco, CA 94016" +293468,Wired Headphones,1,11.99,11/26/19 22:58,"448 Hickory St, Austin, TX 73301" +293469,AAA Batteries (4-pack),2,2.99,11/07/19 11:58,"123 Ridge St, Los Angeles, CA 90001" +293470,Lightning Charging Cable,1,14.95,11/17/19 10:32,"134 13th St, Seattle, WA 98101" +293471,iPhone,1,700,11/13/19 21:21,"114 Wilson St, Atlanta, GA 30301" +293472,27in FHD Monitor,1,149.99,11/06/19 22:14,"725 7th St, New York City, NY 10001" +293473,AA Batteries (4-pack),1,3.84,11/10/19 15:10,"432 Jefferson St, Los Angeles, CA 90001" +293474,Flatscreen TV,1,300,11/02/19 20:47,"606 Willow St, Boston, MA 02215" +293475,AA Batteries (4-pack),2,3.84,11/07/19 14:40,"288 Lakeview St, Los Angeles, CA 90001" +293476,Bose SoundSport Headphones,1,99.99,11/10/19 18:06,"336 9th St, Boston, MA 02215" +293477,Macbook Pro Laptop,1,1700,11/23/19 07:20,"182 4th St, Atlanta, GA 30301" +293478,Bose SoundSport Headphones,1,99.99,11/10/19 09:54,"978 Wilson St, Boston, MA 02215" +293479,AA Batteries (4-pack),1,3.84,11/01/19 11:09,"881 Sunset St, Austin, TX 73301" +293480,Google Phone,1,600,11/30/19 09:26,"103 13th St, San Francisco, CA 94016" +293481,Lightning Charging Cable,1,14.95,11/02/19 17:36,"894 River St, Los Angeles, CA 90001" +293482,Macbook Pro Laptop,1,1700,11/10/19 23:07,"494 4th St, Atlanta, GA 30301" +293483,USB-C Charging Cable,1,11.95,11/26/19 09:53,"397 Meadow St, Seattle, WA 98101" +293484,Macbook Pro Laptop,1,1700,11/29/19 08:59,"360 5th St, Los Angeles, CA 90001" +293485,Wired Headphones,1,11.99,11/09/19 19:29,"625 Meadow St, Portland, OR 97035" +293485,USB-C Charging Cable,1,11.95,11/09/19 19:29,"625 Meadow St, Portland, OR 97035" +293486,AA Batteries (4-pack),1,3.84,11/26/19 17:40,"988 Jefferson St, Dallas, TX 75001" +293487,Apple Airpods Headphones,1,150,11/23/19 22:50,"169 Johnson St, Los Angeles, CA 90001" +293488,AA Batteries (4-pack),1,3.84,11/23/19 21:53,"949 Elm St, San Francisco, CA 94016" +293489,Wired Headphones,1,11.99,11/13/19 13:15,"137 Jackson St, San Francisco, CA 94016" +293490,Lightning Charging Cable,1,14.95,11/30/19 09:28,"968 13th St, Austin, TX 73301" +293491,Bose SoundSport Headphones,1,99.99,11/18/19 13:20,"110 River St, Portland, OR 97035" +293492,27in FHD Monitor,1,149.99,11/21/19 19:46,"166 River St, Dallas, TX 75001" +293493,Bose SoundSport Headphones,1,99.99,11/23/19 12:05,"264 13th St, Seattle, WA 98101" +293494,iPhone,1,700,11/27/19 10:35,"656 Madison St, San Francisco, CA 94016" +293495,Macbook Pro Laptop,1,1700,11/03/19 10:03,"99 Johnson St, San Francisco, CA 94016" +293496,AAA Batteries (4-pack),1,2.99,11/24/19 14:11,"83 Cedar St, New York City, NY 10001" +293497,Macbook Pro Laptop,1,1700,11/16/19 15:30,"379 8th St, New York City, NY 10001" +293498,AA Batteries (4-pack),2,3.84,11/27/19 09:19,"4 Center St, New York City, NY 10001" +293499,Bose SoundSport Headphones,1,99.99,11/20/19 08:27,"739 Jackson St, Los Angeles, CA 90001" +293500,AAA Batteries (4-pack),1,2.99,11/06/19 13:18,"53 Dogwood St, Portland, ME 04101" +293501,Bose SoundSport Headphones,1,99.99,11/28/19 10:29,"75 Highland St, San Francisco, CA 94016" +293502,AAA Batteries (4-pack),1,2.99,11/04/19 10:24,"720 Meadow St, Los Angeles, CA 90001" +293503,Lightning Charging Cable,1,14.95,11/13/19 13:45,"455 5th St, San Francisco, CA 94016" +293504,34in Ultrawide Monitor,1,379.99,11/27/19 16:30,"140 Sunset St, Los Angeles, CA 90001" +293505,Vareebadd Phone,1,400,11/23/19 15:25,"886 Pine St, Seattle, WA 98101" +293506,Wired Headphones,1,11.99,11/10/19 14:55,"629 Forest St, Los Angeles, CA 90001" +293507,AAA Batteries (4-pack),2,2.99,11/07/19 11:36,"163 Lake St, Los Angeles, CA 90001" +293508,AA Batteries (4-pack),1,3.84,11/06/19 07:47,"434 South St, San Francisco, CA 94016" +293509,LG Dryer,1,600.0,11/08/19 12:59,"994 West St, Dallas, TX 75001" +293510,Bose SoundSport Headphones,1,99.99,11/03/19 12:17,"85 Lincoln St, Los Angeles, CA 90001" +293511,27in FHD Monitor,1,149.99,11/22/19 08:24,"35 South St, San Francisco, CA 94016" +293512,34in Ultrawide Monitor,1,379.99,11/15/19 20:10,"850 6th St, San Francisco, CA 94016" +293513,Wired Headphones,2,11.99,11/13/19 18:11,"658 Park St, Boston, MA 02215" +293514,AAA Batteries (4-pack),4,2.99,11/28/19 10:36,"483 12th St, Dallas, TX 75001" +293515,AAA Batteries (4-pack),1,2.99,11/28/19 13:13,"896 Madison St, Portland, OR 97035" +293516,Flatscreen TV,1,300,11/16/19 16:53,"149 8th St, San Francisco, CA 94016" +293517,Bose SoundSport Headphones,1,99.99,11/21/19 20:37,"624 Adams St, Boston, MA 02215" +293518,ThinkPad Laptop,1,999.99,11/21/19 12:09,"37 7th St, Portland, ME 04101" +293519,Bose SoundSport Headphones,1,99.99,11/17/19 06:38,"519 6th St, New York City, NY 10001" +293520,iPhone,1,700,11/18/19 13:32,"415 Hill St, Seattle, WA 98101" +293521,iPhone,1,700,11/04/19 15:47,"178 10th St, New York City, NY 10001" +293522,AAA Batteries (4-pack),1,2.99,11/06/19 20:05,"423 Washington St, Atlanta, GA 30301" +293523,20in Monitor,1,109.99,11/02/19 17:54,"757 Maple St, Los Angeles, CA 90001" +293524,AA Batteries (4-pack),2,3.84,11/21/19 11:32,"378 Lake St, Boston, MA 02215" +293525,Wired Headphones,1,11.99,11/15/19 12:05,"390 Maple St, Atlanta, GA 30301" +293526,27in FHD Monitor,1,149.99,11/16/19 10:10,"549 5th St, San Francisco, CA 94016" +293527,27in 4K Gaming Monitor,1,389.99,11/20/19 10:49,"89 11th St, Seattle, WA 98101" +293528,Bose SoundSport Headphones,1,99.99,11/12/19 22:38,"87 Willow St, San Francisco, CA 94016" +293529,AAA Batteries (4-pack),1,2.99,11/25/19 11:22,"886 Walnut St, New York City, NY 10001" +293530,Lightning Charging Cable,1,14.95,11/23/19 13:25,"960 Adams St, Portland, OR 97035" +293531,Google Phone,1,600,11/28/19 20:36,"789 Washington St, San Francisco, CA 94016" +293531,USB-C Charging Cable,1,11.95,11/28/19 20:36,"789 Washington St, San Francisco, CA 94016" +293532,Lightning Charging Cable,1,14.95,11/27/19 11:23,"927 Park St, San Francisco, CA 94016" +293533,Lightning Charging Cable,1,14.95,11/26/19 12:49,"103 Hill St, Atlanta, GA 30301" +293534,AA Batteries (4-pack),1,3.84,11/12/19 23:10,"843 7th St, Austin, TX 73301" +293535,Lightning Charging Cable,1,14.95,11/06/19 06:02,"771 Chestnut St, Seattle, WA 98101" +293536,27in 4K Gaming Monitor,1,389.99,11/12/19 23:24,"630 Wilson St, Seattle, WA 98101" +293537,Lightning Charging Cable,1,14.95,11/09/19 17:52,"273 Madison St, Dallas, TX 75001" +293538,Apple Airpods Headphones,1,150,11/08/19 09:52,"530 13th St, San Francisco, CA 94016" +293539,iPhone,1,700,11/15/19 17:56,"555 River St, Seattle, WA 98101" +293540,34in Ultrawide Monitor,1,379.99,11/07/19 12:47,"642 4th St, Los Angeles, CA 90001" +293541,Google Phone,1,600,11/03/19 14:46,"175 Johnson St, Dallas, TX 75001" +293541,Wired Headphones,1,11.99,11/03/19 14:46,"175 Johnson St, Dallas, TX 75001" +293542,Lightning Charging Cable,1,14.95,11/12/19 14:50,"464 14th St, New York City, NY 10001" +293543,Bose SoundSport Headphones,1,99.99,11/02/19 09:08,"498 10th St, New York City, NY 10001" +293544,AAA Batteries (4-pack),1,2.99,11/26/19 15:07,"352 Spruce St, Los Angeles, CA 90001" +293545,34in Ultrawide Monitor,1,379.99,11/19/19 12:28,"735 Pine St, Portland, OR 97035" +293546,27in 4K Gaming Monitor,1,389.99,11/25/19 18:32,"825 Adams St, Atlanta, GA 30301" +293547,Lightning Charging Cable,1,14.95,11/19/19 13:36,"815 Walnut St, Los Angeles, CA 90001" +293548,Bose SoundSport Headphones,1,99.99,11/12/19 19:28,"748 4th St, Boston, MA 02215" +293549,Bose SoundSport Headphones,1,99.99,11/16/19 21:59,"61 Elm St, Los Angeles, CA 90001" +293550,USB-C Charging Cable,1,11.95,11/10/19 14:49,"73 Lake St, San Francisco, CA 94016" +293551,AA Batteries (4-pack),1,3.84,11/25/19 16:23,"501 Cedar St, Atlanta, GA 30301" +293552,27in 4K Gaming Monitor,1,389.99,11/02/19 14:39,"802 6th St, Seattle, WA 98101" +293553,ThinkPad Laptop,1,999.99,11/18/19 15:27,"491 Pine St, San Francisco, CA 94016" +293554,AA Batteries (4-pack),1,3.84,11/11/19 08:10,"435 Cedar St, Boston, MA 02215" +293555,AAA Batteries (4-pack),1,2.99,11/04/19 12:47,"641 Madison St, Los Angeles, CA 90001" +293556,Apple Airpods Headphones,1,150,11/18/19 21:35,"297 Madison St, Seattle, WA 98101" +293557,AAA Batteries (4-pack),2,2.99,11/05/19 18:10,"592 2nd St, Dallas, TX 75001" +293558,Google Phone,1,600,11/25/19 09:35,"349 6th St, Los Angeles, CA 90001" +293559,iPhone,1,700,11/01/19 12:25,"286 Jefferson St, New York City, NY 10001" +293559,Wired Headphones,1,11.99,11/01/19 12:25,"286 Jefferson St, New York City, NY 10001" +293560,USB-C Charging Cable,1,11.95,11/21/19 16:56,"413 River St, Seattle, WA 98101" +293561,iPhone,1,700,11/27/19 16:00,"620 Hickory St, Seattle, WA 98101" +293562,AA Batteries (4-pack),1,3.84,11/30/19 19:50,"164 Johnson St, San Francisco, CA 94016" +293563,27in FHD Monitor,1,149.99,11/10/19 21:29,"202 Park St, Boston, MA 02215" +293564,Bose SoundSport Headphones,1,99.99,11/05/19 09:41,"846 14th St, New York City, NY 10001" +293565,AA Batteries (4-pack),1,3.84,11/19/19 21:39,"875 South St, Los Angeles, CA 90001" +293566,USB-C Charging Cable,1,11.95,11/30/19 13:55,"464 Madison St, Seattle, WA 98101" +293567,AAA Batteries (4-pack),2,2.99,11/05/19 10:44,"986 Adams St, Los Angeles, CA 90001" +293568,Bose SoundSport Headphones,1,99.99,11/04/19 19:12,"799 Hickory St, Seattle, WA 98101" +293569,AAA Batteries (4-pack),1,2.99,11/02/19 18:26,"865 Elm St, Boston, MA 02215" +293570,27in FHD Monitor,1,149.99,11/07/19 11:39,"245 Lakeview St, San Francisco, CA 94016" +293571,AAA Batteries (4-pack),3,2.99,11/23/19 07:50,"344 Washington St, San Francisco, CA 94016" +293572,Wired Headphones,1,11.99,11/22/19 09:54,"855 7th St, New York City, NY 10001" +293573,Lightning Charging Cable,1,14.95,11/02/19 13:21,"879 Hill St, Seattle, WA 98101" +293574,AAA Batteries (4-pack),2,2.99,11/20/19 18:37,"56 4th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +293575,Lightning Charging Cable,1,14.95,11/03/19 12:14,"473 14th St, Boston, MA 02215" +293576,iPhone,1,700,11/29/19 21:05,"771 8th St, Dallas, TX 75001" +293576,Lightning Charging Cable,1,14.95,11/29/19 21:05,"771 8th St, Dallas, TX 75001" +293576,Wired Headphones,1,11.99,11/29/19 21:05,"771 8th St, Dallas, TX 75001" +293577,Bose SoundSport Headphones,1,99.99,11/01/19 07:56,"202 13th St, Seattle, WA 98101" +293578,Bose SoundSport Headphones,1,99.99,11/13/19 09:13,"520 Hill St, San Francisco, CA 94016" +293579,27in 4K Gaming Monitor,1,389.99,11/11/19 19:16,"18 Walnut St, San Francisco, CA 94016" +293580,27in 4K Gaming Monitor,1,389.99,11/19/19 09:47,"103 Walnut St, New York City, NY 10001" +293581,iPhone,1,700,11/05/19 21:49,"521 Washington St, New York City, NY 10001" +293581,Lightning Charging Cable,1,14.95,11/05/19 21:49,"521 Washington St, New York City, NY 10001" +293582,Bose SoundSport Headphones,1,99.99,11/02/19 12:21,"168 13th St, Los Angeles, CA 90001" +293583,iPhone,1,700,11/13/19 16:51,"10 West St, Los Angeles, CA 90001" +293584,USB-C Charging Cable,2,11.95,11/15/19 10:21,"837 Sunset St, San Francisco, CA 94016" +293585,USB-C Charging Cable,1,11.95,11/15/19 21:13,"221 Meadow St, San Francisco, CA 94016" +293586,34in Ultrawide Monitor,1,379.99,11/15/19 23:34,"27 Walnut St, Seattle, WA 98101" +293587,ThinkPad Laptop,1,999.99,11/05/19 15:03,"625 Center St, San Francisco, CA 94016" +293588,USB-C Charging Cable,2,11.95,11/28/19 16:17,"701 Highland St, San Francisco, CA 94016" +293589,Bose SoundSport Headphones,1,99.99,11/17/19 18:04,"855 South St, San Francisco, CA 94016" +293590,ThinkPad Laptop,1,999.99,11/19/19 11:36,"21 5th St, San Francisco, CA 94016" +293591,ThinkPad Laptop,1,999.99,11/30/19 20:46,"804 Willow St, Dallas, TX 75001" +293592,Lightning Charging Cable,1,14.95,11/28/19 21:46,"788 4th St, New York City, NY 10001" +293593,Macbook Pro Laptop,1,1700,11/09/19 00:01,"893 Pine St, San Francisco, CA 94016" +293594,Bose SoundSport Headphones,1,99.99,11/06/19 16:24,"307 Ridge St, Los Angeles, CA 90001" +293595,20in Monitor,1,109.99,11/03/19 18:31,"17 1st St, Atlanta, GA 30301" +293596,USB-C Charging Cable,1,11.95,11/06/19 18:49,"961 Lincoln St, Seattle, WA 98101" +293597,AAA Batteries (4-pack),1,2.99,11/06/19 14:10,"205 11th St, Dallas, TX 75001" +293598,ThinkPad Laptop,1,999.99,11/01/19 19:49,"77 6th St, San Francisco, CA 94016" +293599,USB-C Charging Cable,1,11.95,11/13/19 19:23,"636 Main St, Austin, TX 73301" +293600,Bose SoundSport Headphones,1,99.99,11/25/19 13:33,"920 Hickory St, New York City, NY 10001" +293601,iPhone,1,700,11/02/19 12:27,"154 Church St, Boston, MA 02215" +293601,Wired Headphones,1,11.99,11/02/19 12:27,"154 Church St, Boston, MA 02215" +293602,27in 4K Gaming Monitor,1,389.99,11/14/19 17:37,"741 Hickory St, San Francisco, CA 94016" +293603,Lightning Charging Cable,1,14.95,11/21/19 20:21,"19 Wilson St, Los Angeles, CA 90001" +293604,USB-C Charging Cable,2,11.95,11/17/19 09:14,"281 River St, Dallas, TX 75001" +293605,Lightning Charging Cable,1,14.95,11/08/19 21:15,"658 Pine St, Atlanta, GA 30301" +293606,Wired Headphones,1,11.99,11/29/19 22:37,"352 Ridge St, Boston, MA 02215" +293607,AAA Batteries (4-pack),4,2.99,11/26/19 19:10,"608 Johnson St, New York City, NY 10001" +293608,Lightning Charging Cable,1,14.95,11/07/19 17:10,"291 5th St, Austin, TX 73301" +293609,AAA Batteries (4-pack),1,2.99,11/27/19 18:33,"240 West St, Boston, MA 02215" +293610,AA Batteries (4-pack),1,3.84,11/10/19 14:55,"568 Highland St, Dallas, TX 75001" +293611,Apple Airpods Headphones,1,150,11/13/19 09:30,"352 1st St, New York City, NY 10001" +293612,Google Phone,1,600,11/04/19 11:52,"523 4th St, New York City, NY 10001" +293613,Google Phone,1,600,11/24/19 09:38,"876 Highland St, Seattle, WA 98101" +293614,Apple Airpods Headphones,1,150,11/03/19 17:57,"395 Washington St, Dallas, TX 75001" +293615,AA Batteries (4-pack),1,3.84,11/12/19 14:55,"546 Hill St, San Francisco, CA 94016" +293616,USB-C Charging Cable,1,11.95,11/01/19 19:11,"220 Dogwood St, New York City, NY 10001" +293617,20in Monitor,1,109.99,11/25/19 14:12,"732 14th St, San Francisco, CA 94016" +293618,Lightning Charging Cable,1,14.95,11/08/19 01:31,"395 9th St, Boston, MA 02215" +293619,Lightning Charging Cable,1,14.95,11/26/19 11:48,"111 Cedar St, Atlanta, GA 30301" +293620,Apple Airpods Headphones,1,150,11/06/19 17:02,"783 Ridge St, Portland, OR 97035" +293621,AA Batteries (4-pack),1,3.84,11/16/19 16:50,"796 Spruce St, Boston, MA 02215" +293622,Google Phone,1,600,11/28/19 00:04,"86 Chestnut St, New York City, NY 10001" +293623,Lightning Charging Cable,1,14.95,11/16/19 07:31,"757 Lakeview St, San Francisco, CA 94016" +293624,Bose SoundSport Headphones,1,99.99,11/13/19 16:24,"65 Church St, Atlanta, GA 30301" +293625,27in 4K Gaming Monitor,1,389.99,11/28/19 22:03,"882 9th St, Los Angeles, CA 90001" +293626,LG Dryer,1,600.0,11/23/19 20:20,"250 Jefferson St, New York City, NY 10001" +293627,Lightning Charging Cable,1,14.95,11/12/19 02:29,"797 Lincoln St, San Francisco, CA 94016" +293628,Wired Headphones,1,11.99,11/04/19 11:06,"848 8th St, New York City, NY 10001" +293629,Google Phone,1,600,11/14/19 19:19,"418 Hill St, Portland, OR 97035" +293630,Lightning Charging Cable,1,14.95,11/30/19 11:22,"752 Cedar St, Boston, MA 02215" +293631,Macbook Pro Laptop,1,1700,11/24/19 08:09,"786 Lakeview St, Boston, MA 02215" +293632,AA Batteries (4-pack),2,3.84,11/13/19 12:40,"544 Elm St, Los Angeles, CA 90001" +293633,AA Batteries (4-pack),1,3.84,11/26/19 10:02,"722 Willow St, Austin, TX 73301" +293634,AA Batteries (4-pack),1,3.84,11/08/19 19:43,"23 8th St, Boston, MA 02215" +293635,34in Ultrawide Monitor,1,379.99,11/27/19 12:29,"309 Church St, New York City, NY 10001" +293636,USB-C Charging Cable,1,11.95,11/30/19 08:47,"932 2nd St, Dallas, TX 75001" +293637,Macbook Pro Laptop,1,1700,11/23/19 15:10,"737 Hill St, Austin, TX 73301" +293638,Bose SoundSport Headphones,1,99.99,11/13/19 12:16,"586 Sunset St, Dallas, TX 75001" +293639,34in Ultrawide Monitor,1,379.99,11/29/19 19:58,"285 Washington St, San Francisco, CA 94016" +293640,20in Monitor,1,109.99,11/15/19 22:48,"523 Walnut St, San Francisco, CA 94016" +293641,Wired Headphones,1,11.99,11/27/19 19:47,"412 Adams St, Los Angeles, CA 90001" +293642,34in Ultrawide Monitor,1,379.99,11/14/19 14:28,"981 8th St, New York City, NY 10001" +293643,34in Ultrawide Monitor,1,379.99,11/12/19 14:56,"261 11th St, New York City, NY 10001" +293643,AAA Batteries (4-pack),1,2.99,11/12/19 14:56,"261 11th St, New York City, NY 10001" +293644,USB-C Charging Cable,1,11.95,11/08/19 19:15,"108 Dogwood St, Portland, OR 97035" +293645,AA Batteries (4-pack),3,3.84,11/06/19 09:30,"53 Spruce St, Los Angeles, CA 90001" +293646,iPhone,1,700,11/06/19 12:54,"563 Lake St, New York City, NY 10001" +293646,Lightning Charging Cable,1,14.95,11/06/19 12:54,"563 Lake St, New York City, NY 10001" +293647,Apple Airpods Headphones,1,150,11/25/19 14:44,"745 Washington St, Portland, ME 04101" +293648,Apple Airpods Headphones,1,150,11/14/19 08:04,"69 Pine St, Dallas, TX 75001" +293649,AA Batteries (4-pack),1,3.84,11/15/19 21:46,"925 Pine St, San Francisco, CA 94016" +293650,27in 4K Gaming Monitor,1,389.99,11/13/19 19:48,"860 Park St, Atlanta, GA 30301" +293651,USB-C Charging Cable,1,11.95,11/06/19 19:59,"65 Cherry St, Portland, OR 97035" +293652,27in 4K Gaming Monitor,1,389.99,11/21/19 17:28,"791 2nd St, Los Angeles, CA 90001" +293653,AA Batteries (4-pack),2,3.84,11/15/19 01:47,"157 River St, Boston, MA 02215" +293654,34in Ultrawide Monitor,1,379.99,11/07/19 17:02,"155 14th St, Austin, TX 73301" +293655,AA Batteries (4-pack),1,3.84,11/24/19 18:32,"439 River St, Austin, TX 73301" +293656,AAA Batteries (4-pack),1,2.99,11/07/19 00:04,"404 Maple St, Los Angeles, CA 90001" +293657,Apple Airpods Headphones,1,150,11/25/19 17:52,"955 Elm St, San Francisco, CA 94016" +293658,Macbook Pro Laptop,1,1700,11/21/19 21:41,"830 Johnson St, New York City, NY 10001" +293659,Lightning Charging Cable,1,14.95,11/09/19 22:06,"980 7th St, Seattle, WA 98101" +293660,Google Phone,1,600,11/13/19 21:34,"932 Willow St, Atlanta, GA 30301" +293661,Vareebadd Phone,1,400,11/24/19 23:27,"337 Madison St, Portland, OR 97035" +293662,AAA Batteries (4-pack),3,2.99,11/08/19 14:16,"827 Maple St, New York City, NY 10001" +293663,Wired Headphones,1,11.99,11/28/19 20:30,"52 Washington St, Boston, MA 02215" +293664,AA Batteries (4-pack),1,3.84,11/01/19 15:23,"205 10th St, San Francisco, CA 94016" +293665,Bose SoundSport Headphones,1,99.99,11/19/19 22:30,"78 South St, Seattle, WA 98101" +293665,Wired Headphones,2,11.99,11/19/19 22:30,"78 South St, Seattle, WA 98101" +293666,Bose SoundSport Headphones,1,99.99,11/24/19 17:04,"609 South St, Los Angeles, CA 90001" +293667,Lightning Charging Cable,1,14.95,11/12/19 13:40,"381 Pine St, New York City, NY 10001" +293668,USB-C Charging Cable,2,11.95,11/22/19 15:05,"674 1st St, Los Angeles, CA 90001" +293669,ThinkPad Laptop,1,999.99,11/06/19 19:30,"675 6th St, New York City, NY 10001" +293670,ThinkPad Laptop,1,999.99,11/17/19 15:56,"859 14th St, Atlanta, GA 30301" +293671,27in FHD Monitor,1,149.99,11/28/19 07:03,"658 Church St, San Francisco, CA 94016" +293672,AAA Batteries (4-pack),1,2.99,11/12/19 14:23,"937 River St, San Francisco, CA 94016" +293673,Bose SoundSport Headphones,1,99.99,11/15/19 22:24,"69 North St, Atlanta, GA 30301" +293674,AAA Batteries (4-pack),2,2.99,11/22/19 12:16,"334 Lake St, Seattle, WA 98101" +293675,Wired Headphones,1,11.99,11/23/19 14:04,"633 8th St, San Francisco, CA 94016" +293676,Bose SoundSport Headphones,1,99.99,11/23/19 09:25,"354 Cedar St, Los Angeles, CA 90001" +293677,AA Batteries (4-pack),1,3.84,11/25/19 08:41,"767 13th St, New York City, NY 10001" +293678,AAA Batteries (4-pack),1,2.99,11/29/19 11:55,"405 Park St, Portland, OR 97035" +293679,AAA Batteries (4-pack),1,2.99,11/12/19 18:04,"818 5th St, Los Angeles, CA 90001" +293680,iPhone,1,700,11/22/19 14:27,"404 River St, San Francisco, CA 94016" +293680,Apple Airpods Headphones,1,150,11/22/19 14:27,"404 River St, San Francisco, CA 94016" +293681,LG Washing Machine,1,600.0,11/12/19 12:27,"32 Highland St, Los Angeles, CA 90001" +293682,AA Batteries (4-pack),1,3.84,11/27/19 03:55,"362 Pine St, San Francisco, CA 94016" +293683,AA Batteries (4-pack),1,3.84,11/12/19 18:25,"697 Lakeview St, Seattle, WA 98101" +293684,Bose SoundSport Headphones,1,99.99,11/30/19 10:50,"138 4th St, Boston, MA 02215" +293685,iPhone,1,700,11/15/19 21:14,"288 Jackson St, Boston, MA 02215" +293686,AAA Batteries (4-pack),1,2.99,11/11/19 08:33,"746 North St, Boston, MA 02215" +293687,Google Phone,1,600,11/12/19 23:20,"606 13th St, Atlanta, GA 30301" +293688,Apple Airpods Headphones,1,150,11/05/19 13:41,"85 Wilson St, San Francisco, CA 94016" +293689,USB-C Charging Cable,2,11.95,11/16/19 09:55,"275 Highland St, New York City, NY 10001" +293690,Macbook Pro Laptop,1,1700,11/08/19 20:08,"58 Spruce St, Boston, MA 02215" +293691,AA Batteries (4-pack),1,3.84,11/19/19 12:36,"819 Johnson St, New York City, NY 10001" +293692,Lightning Charging Cable,1,14.95,11/06/19 16:03,"791 Forest St, Seattle, WA 98101" +293693,AA Batteries (4-pack),2,3.84,11/29/19 12:31,"260 Center St, Portland, OR 97035" +293694,34in Ultrawide Monitor,1,379.99,11/27/19 13:43,"731 Cedar St, Los Angeles, CA 90001" +293695,USB-C Charging Cable,1,11.95,11/25/19 21:56,"829 1st St, New York City, NY 10001" +293696,Apple Airpods Headphones,1,150,11/20/19 01:34,"257 Hill St, Atlanta, GA 30301" +293697,Wired Headphones,1,11.99,11/09/19 11:35,"708 12th St, Austin, TX 73301" +293698,Lightning Charging Cable,1,14.95,11/07/19 11:30,"152 Lincoln St, Boston, MA 02215" +293699,Lightning Charging Cable,1,14.95,11/21/19 23:20,"335 Lake St, Dallas, TX 75001" +293700,AAA Batteries (4-pack),1,2.99,11/07/19 16:04,"220 10th St, Austin, TX 73301" +293701,27in 4K Gaming Monitor,1,389.99,11/19/19 13:03,"964 Park St, Seattle, WA 98101" +293702,Bose SoundSport Headphones,1,99.99,12/01/19 02:26,"666 9th St, Boston, MA 02215" +293703,Bose SoundSport Headphones,1,99.99,11/18/19 18:50,"366 Walnut St, Seattle, WA 98101" +293704,Bose SoundSport Headphones,1,99.99,11/07/19 18:19,"236 Forest St, New York City, NY 10001" +293705,Bose SoundSport Headphones,1,99.99,11/06/19 15:04,"554 10th St, Los Angeles, CA 90001" +293706,USB-C Charging Cable,1,11.95,11/21/19 13:20,"571 9th St, Dallas, TX 75001" +293707,27in FHD Monitor,1,149.99,11/08/19 11:48,"499 Pine St, Austin, TX 73301" +293708,USB-C Charging Cable,1,11.95,11/13/19 15:29,"315 2nd St, New York City, NY 10001" +293709,Apple Airpods Headphones,1,150,11/25/19 14:04,"306 Elm St, New York City, NY 10001" +293710,USB-C Charging Cable,1,11.95,11/04/19 12:01,"32 Jackson St, San Francisco, CA 94016" +293711,AAA Batteries (4-pack),1,2.99,11/23/19 17:09,"848 South St, Los Angeles, CA 90001" +293712,AA Batteries (4-pack),3,3.84,11/29/19 18:47,"987 2nd St, Austin, TX 73301" +293713,Google Phone,1,600,11/21/19 21:29,"962 Spruce St, San Francisco, CA 94016" +293713,USB-C Charging Cable,1,11.95,11/21/19 21:29,"962 Spruce St, San Francisco, CA 94016" +293714,AAA Batteries (4-pack),1,2.99,11/21/19 16:40,"369 Jefferson St, New York City, NY 10001" +293715,27in FHD Monitor,1,149.99,11/05/19 00:30,"802 Dogwood St, San Francisco, CA 94016" +293716,USB-C Charging Cable,1,11.95,11/24/19 16:41,"346 Johnson St, San Francisco, CA 94016" +293717,AAA Batteries (4-pack),1,2.99,11/20/19 15:08,"493 Dogwood St, Los Angeles, CA 90001" +293718,20in Monitor,1,109.99,11/03/19 22:07,"451 South St, New York City, NY 10001" +293719,20in Monitor,1,109.99,11/11/19 18:32,"849 Center St, Los Angeles, CA 90001" +293720,Lightning Charging Cable,1,14.95,11/11/19 13:33,"543 9th St, Dallas, TX 75001" +293721,USB-C Charging Cable,1,11.95,11/14/19 18:43,"183 Highland St, San Francisco, CA 94016" +293721,AA Batteries (4-pack),3,3.84,11/14/19 18:43,"183 Highland St, San Francisco, CA 94016" +293722,Wired Headphones,2,11.99,11/14/19 21:21,"215 12th St, Los Angeles, CA 90001" +293723,Lightning Charging Cable,1,14.95,11/26/19 14:10,"981 4th St, Dallas, TX 75001" +293724,27in FHD Monitor,1,149.99,11/24/19 13:08,"63 Elm St, San Francisco, CA 94016" +293725,27in FHD Monitor,1,149.99,11/24/19 15:10,"343 Johnson St, Atlanta, GA 30301" +293726,AAA Batteries (4-pack),1,2.99,11/09/19 17:02,"67 Maple St, San Francisco, CA 94016" +293727,Macbook Pro Laptop,1,1700,11/03/19 15:25,"755 1st St, New York City, NY 10001" +293728,AAA Batteries (4-pack),1,2.99,11/01/19 17:42,"96 Cherry St, Boston, MA 02215" +293729,AAA Batteries (4-pack),1,2.99,11/01/19 21:19,"242 Hickory St, San Francisco, CA 94016" +293730,27in FHD Monitor,1,149.99,11/07/19 08:17,"901 Sunset St, Los Angeles, CA 90001" +293731,Macbook Pro Laptop,1,1700,11/02/19 19:30,"855 5th St, Dallas, TX 75001" +293732,Apple Airpods Headphones,1,150,11/14/19 01:30,"108 Hickory St, San Francisco, CA 94016" +293733,AAA Batteries (4-pack),1,2.99,11/14/19 19:43,"912 11th St, Dallas, TX 75001" +293734,Wired Headphones,1,11.99,11/10/19 17:47,"389 Lakeview St, New York City, NY 10001" +293735,Apple Airpods Headphones,1,150,11/27/19 20:56,"814 Elm St, San Francisco, CA 94016" +293736,Lightning Charging Cable,1,14.95,11/10/19 17:04,"755 Meadow St, Atlanta, GA 30301" +293737,iPhone,1,700,11/03/19 20:12,"831 Willow St, New York City, NY 10001" +293737,Lightning Charging Cable,1,14.95,11/03/19 20:12,"831 Willow St, New York City, NY 10001" +293738,AA Batteries (4-pack),1,3.84,11/22/19 16:09,"776 1st St, Los Angeles, CA 90001" +293739,AA Batteries (4-pack),2,3.84,11/14/19 20:30,"51 Church St, Austin, TX 73301" +293740,AA Batteries (4-pack),1,3.84,11/10/19 22:21,"568 13th St, San Francisco, CA 94016" +293741,USB-C Charging Cable,1,11.95,11/14/19 21:01,"577 Chestnut St, San Francisco, CA 94016" +293742,iPhone,1,700,11/21/19 11:27,"762 Lake St, Atlanta, GA 30301" +293743,AAA Batteries (4-pack),1,2.99,11/30/19 22:37,"899 Washington St, Los Angeles, CA 90001" +293744,AA Batteries (4-pack),2,3.84,11/01/19 12:33,"876 Johnson St, Portland, OR 97035" +293745,Wired Headphones,1,11.99,11/28/19 16:27,"516 South St, New York City, NY 10001" +293746,Lightning Charging Cable,1,14.95,11/12/19 23:19,"543 9th St, Austin, TX 73301" +293747,USB-C Charging Cable,1,11.95,11/22/19 19:54,"706 Lakeview St, San Francisco, CA 94016" +293748,AA Batteries (4-pack),2,3.84,11/05/19 14:07,"464 5th St, Dallas, TX 75001" +293749,Apple Airpods Headphones,1,150,11/01/19 11:02,"737 Highland St, Los Angeles, CA 90001" +293750,27in 4K Gaming Monitor,1,389.99,11/21/19 21:21,"204 Cherry St, San Francisco, CA 94016" +293751,iPhone,1,700,11/13/19 12:31,"655 6th St, Boston, MA 02215" +293751,Wired Headphones,1,11.99,11/13/19 12:31,"655 6th St, Boston, MA 02215" +293752,AAA Batteries (4-pack),2,2.99,11/25/19 21:04,"954 Hill St, San Francisco, CA 94016" +293753,Lightning Charging Cable,1,14.95,11/04/19 09:14,"868 Forest St, San Francisco, CA 94016" +293754,Apple Airpods Headphones,1,150,11/05/19 14:57,"740 Jackson St, Los Angeles, CA 90001" +293755,iPhone,1,700,11/08/19 19:56,"340 Walnut St, Atlanta, GA 30301" +293756,Apple Airpods Headphones,1,150,11/25/19 16:22,"918 12th St, Los Angeles, CA 90001" +293757,iPhone,1,700,11/30/19 13:33,"504 North St, San Francisco, CA 94016" +293758,Lightning Charging Cable,1,14.95,11/27/19 10:20,"586 Cherry St, San Francisco, CA 94016" +293759,27in FHD Monitor,1,149.99,11/15/19 17:19,"760 Jefferson St, Portland, OR 97035" +293760,USB-C Charging Cable,1,11.95,11/27/19 09:41,"33 6th St, New York City, NY 10001" +293761,Google Phone,1,600,11/05/19 08:53,"684 River St, Seattle, WA 98101" +293762,AA Batteries (4-pack),1,3.84,11/07/19 11:35,"382 North St, Los Angeles, CA 90001" +293763,Bose SoundSport Headphones,1,99.99,11/25/19 15:49,"176 14th St, New York City, NY 10001" +293764,27in FHD Monitor,1,149.99,11/12/19 18:39,"82 Washington St, Seattle, WA 98101" +293765,Wired Headphones,1,11.99,11/10/19 10:49,"808 7th St, San Francisco, CA 94016" +293766,AA Batteries (4-pack),2,3.84,11/16/19 19:12,"264 Forest St, Los Angeles, CA 90001" +293767,iPhone,1,700,11/16/19 18:38,"101 Spruce St, New York City, NY 10001" +293768,Google Phone,1,600,11/09/19 08:06,"459 River St, Seattle, WA 98101" +293768,USB-C Charging Cable,1,11.95,11/09/19 08:06,"459 River St, Seattle, WA 98101" +293769,34in Ultrawide Monitor,1,379.99,11/14/19 11:05,"911 11th St, Austin, TX 73301" +293770,Wired Headphones,1,11.99,11/18/19 12:01,"368 8th St, Los Angeles, CA 90001" +293771,Wired Headphones,1,11.99,11/28/19 15:20,"33 14th St, Atlanta, GA 30301" +293772,Wired Headphones,1,11.99,11/03/19 17:08,"263 Wilson St, Los Angeles, CA 90001" +293773,USB-C Charging Cable,1,11.95,11/27/19 09:24,"764 Park St, San Francisco, CA 94016" +293774,AAA Batteries (4-pack),2,2.99,11/17/19 21:49,"174 Hill St, Seattle, WA 98101" +293775,USB-C Charging Cable,1,11.95,11/11/19 11:25,"873 South St, San Francisco, CA 94016" +293776,Wired Headphones,1,11.99,11/18/19 14:17,"412 Hill St, Atlanta, GA 30301" +293777,Apple Airpods Headphones,1,150,11/28/19 10:04,"354 13th St, Seattle, WA 98101" +293778,Wired Headphones,1,11.99,11/09/19 20:57,"37 4th St, Los Angeles, CA 90001" +293779,27in FHD Monitor,1,149.99,11/18/19 20:46,"851 Church St, Boston, MA 02215" +293780,Bose SoundSport Headphones,1,99.99,11/04/19 20:20,"718 Jackson St, Boston, MA 02215" +293781,AAA Batteries (4-pack),1,2.99,11/27/19 13:34,"623 Wilson St, Boston, MA 02215" +293781,AAA Batteries (4-pack),2,2.99,11/27/19 13:34,"623 Wilson St, Boston, MA 02215" +293782,Wired Headphones,1,11.99,11/14/19 20:42,"581 Washington St, Los Angeles, CA 90001" +293783,27in FHD Monitor,1,149.99,11/18/19 14:19,"202 Main St, Dallas, TX 75001" +293784,27in FHD Monitor,1,149.99,11/03/19 13:45,"216 10th St, Portland, OR 97035" +293785,USB-C Charging Cable,1,11.95,11/09/19 10:06,"6 Church St, San Francisco, CA 94016" +293786,Apple Airpods Headphones,1,150,11/29/19 08:33,"702 Hickory St, San Francisco, CA 94016" +293787,AA Batteries (4-pack),1,3.84,11/11/19 10:49,"91 5th St, San Francisco, CA 94016" +293788,Bose SoundSport Headphones,1,99.99,11/16/19 09:09,"113 Sunset St, Los Angeles, CA 90001" +293789,USB-C Charging Cable,1,11.95,11/19/19 19:18,"15 Main St, San Francisco, CA 94016" +293790,Flatscreen TV,1,300,11/12/19 18:58,"476 Park St, New York City, NY 10001" +293791,AAA Batteries (4-pack),2,2.99,11/02/19 12:46,"570 Johnson St, San Francisco, CA 94016" +293792,LG Dryer,1,600.0,11/01/19 22:57,"314 North St, Seattle, WA 98101" +293793,AA Batteries (4-pack),1,3.84,11/20/19 16:05,"140 Main St, San Francisco, CA 94016" +293794,Wired Headphones,1,11.99,11/03/19 16:50,"473 6th St, New York City, NY 10001" +293795,Apple Airpods Headphones,1,150,11/26/19 09:30,"842 4th St, Portland, OR 97035" +293796,Lightning Charging Cable,1,14.95,11/22/19 11:57,"379 Church St, San Francisco, CA 94016" +293797,Lightning Charging Cable,1,14.95,11/30/19 19:38,"649 Walnut St, Dallas, TX 75001" +293798,USB-C Charging Cable,2,11.95,11/16/19 18:20,"318 Park St, Dallas, TX 75001" +293799,Apple Airpods Headphones,1,150,11/29/19 14:28,"19 1st St, Seattle, WA 98101" +293800,27in FHD Monitor,1,149.99,11/22/19 16:23,"707 Lakeview St, Austin, TX 73301" +293800,Flatscreen TV,1,300,11/22/19 16:23,"707 Lakeview St, Austin, TX 73301" +293801,Google Phone,1,600,11/09/19 19:51,"513 Cedar St, San Francisco, CA 94016" +293802,Wired Headphones,1,11.99,11/04/19 12:14,"356 Sunset St, Boston, MA 02215" +293803,Apple Airpods Headphones,1,150,11/18/19 11:29,"261 6th St, Dallas, TX 75001" +293804,AA Batteries (4-pack),1,3.84,11/05/19 12:33,"866 Spruce St, Atlanta, GA 30301" +293805,Macbook Pro Laptop,1,1700,11/18/19 15:27,"621 4th St, Boston, MA 02215" +293806,Apple Airpods Headphones,1,150,11/02/19 14:57,"386 Washington St, San Francisco, CA 94016" +293807,Wired Headphones,1,11.99,11/23/19 23:30,"509 6th St, New York City, NY 10001" +293808,Bose SoundSport Headphones,1,99.99,11/11/19 00:20,"196 Cherry St, Seattle, WA 98101" +293809,Bose SoundSport Headphones,1,99.99,11/28/19 19:41,"733 7th St, Los Angeles, CA 90001" +293810,Bose SoundSport Headphones,1,99.99,11/18/19 22:52,"813 Cherry St, San Francisco, CA 94016" +293811,Wired Headphones,1,11.99,11/07/19 17:07,"73 13th St, Seattle, WA 98101" +293812,AA Batteries (4-pack),1,3.84,11/26/19 15:40,"317 Johnson St, Los Angeles, CA 90001" +293813,34in Ultrawide Monitor,1,379.99,11/30/19 18:51,"954 4th St, Los Angeles, CA 90001" +293814,USB-C Charging Cable,1,11.95,11/07/19 11:16,"646 Spruce St, Los Angeles, CA 90001" +293815,Lightning Charging Cable,1,14.95,11/22/19 19:44,"23 13th St, San Francisco, CA 94016" +293816,27in 4K Gaming Monitor,1,389.99,11/13/19 17:38,"896 7th St, San Francisco, CA 94016" +293817,AA Batteries (4-pack),3,3.84,11/26/19 16:55,"694 13th St, San Francisco, CA 94016" +293818,AA Batteries (4-pack),1,3.84,11/07/19 21:08,"399 West St, Boston, MA 02215" +,,,,, +293819,USB-C Charging Cable,1,11.95,11/03/19 13:22,"131 12th St, San Francisco, CA 94016" +293820,Apple Airpods Headphones,1,150,11/15/19 15:43,"953 12th St, San Francisco, CA 94016" +293821,Apple Airpods Headphones,1,150,11/03/19 16:01,"818 Church St, San Francisco, CA 94016" +293822,Lightning Charging Cable,1,14.95,11/27/19 06:14,"983 West St, San Francisco, CA 94016" +293823,Vareebadd Phone,1,400,11/17/19 17:06,"610 9th St, Los Angeles, CA 90001" +293824,20in Monitor,1,109.99,11/27/19 16:01,"200 South St, Austin, TX 73301" +293825,Macbook Pro Laptop,1,1700,11/05/19 21:59,"945 Lincoln St, New York City, NY 10001" +293826,27in 4K Gaming Monitor,1,389.99,11/16/19 13:39,"972 Park St, San Francisco, CA 94016" +293827,Bose SoundSport Headphones,1,99.99,11/30/19 13:02,"437 Meadow St, Seattle, WA 98101" +293828,Lightning Charging Cable,1,14.95,11/15/19 22:02,"732 Cherry St, San Francisco, CA 94016" +293829,20in Monitor,1,109.99,11/22/19 09:40,"708 Pine St, San Francisco, CA 94016" +293830,Flatscreen TV,1,300,11/24/19 21:26,"919 Dogwood St, Seattle, WA 98101" +293831,Bose SoundSport Headphones,1,99.99,11/24/19 20:19,"778 10th St, New York City, NY 10001" +293831,Wired Headphones,1,11.99,11/24/19 20:19,"778 10th St, New York City, NY 10001" +293832,AA Batteries (4-pack),1,3.84,11/30/19 18:36,"646 River St, Los Angeles, CA 90001" +293833,20in Monitor,1,109.99,11/18/19 08:38,"749 Johnson St, New York City, NY 10001" +293834,USB-C Charging Cable,1,11.95,11/16/19 18:16,"965 Hickory St, Seattle, WA 98101" +293835,27in FHD Monitor,1,149.99,11/09/19 20:26,"665 5th St, Los Angeles, CA 90001" +293836,27in FHD Monitor,1,149.99,11/02/19 19:19,"663 8th St, Austin, TX 73301" +293837,27in FHD Monitor,1,149.99,11/23/19 00:52,"714 Madison St, San Francisco, CA 94016" +293838,Macbook Pro Laptop,1,1700,11/06/19 19:08,"279 River St, Portland, ME 04101" +293839,20in Monitor,1,109.99,11/02/19 23:19,"177 Pine St, Atlanta, GA 30301" +293840,Lightning Charging Cable,1,14.95,11/01/19 08:41,"206 Elm St, Austin, TX 73301" +293841,20in Monitor,1,109.99,11/15/19 23:07,"121 Highland St, San Francisco, CA 94016" +293842,Lightning Charging Cable,1,14.95,11/03/19 11:20,"577 Adams St, Boston, MA 02215" +293843,USB-C Charging Cable,1,11.95,11/15/19 00:26,"976 Forest St, San Francisco, CA 94016" +293844,20in Monitor,1,109.99,11/30/19 11:48,"50 Ridge St, Los Angeles, CA 90001" +293845,AA Batteries (4-pack),1,3.84,11/24/19 16:49,"647 Walnut St, San Francisco, CA 94016" +293846,Apple Airpods Headphones,1,150,11/09/19 18:45,"673 Sunset St, Austin, TX 73301" +293847,AAA Batteries (4-pack),1,2.99,11/02/19 07:30,"732 Cherry St, Los Angeles, CA 90001" +293848,Flatscreen TV,1,300,11/18/19 23:38,"360 Main St, San Francisco, CA 94016" +293849,iPhone,1,700,11/02/19 15:01,"189 Main St, Los Angeles, CA 90001" +293850,27in FHD Monitor,1,149.99,11/08/19 16:22,"729 7th St, Boston, MA 02215" +293851,Lightning Charging Cable,1,14.95,11/10/19 16:20,"844 Park St, San Francisco, CA 94016" +293852,USB-C Charging Cable,2,11.95,11/07/19 05:40,"158 Chestnut St, Atlanta, GA 30301" +293853,AA Batteries (4-pack),2,3.84,11/12/19 10:49,"197 2nd St, Atlanta, GA 30301" +293854,Lightning Charging Cable,1,14.95,11/28/19 08:26,"392 7th St, Los Angeles, CA 90001" +293855,Macbook Pro Laptop,1,1700,11/13/19 13:15,"188 North St, San Francisco, CA 94016" +293856,Macbook Pro Laptop,1,1700,11/27/19 12:41,"52 Dogwood St, Dallas, TX 75001" +293857,AAA Batteries (4-pack),2,2.99,11/05/19 14:19,"26 Madison St, San Francisco, CA 94016" +293858,AA Batteries (4-pack),1,3.84,11/17/19 18:57,"715 Hickory St, San Francisco, CA 94016" +293859,Wired Headphones,1,11.99,11/22/19 15:15,"746 Wilson St, Los Angeles, CA 90001" +293860,Apple Airpods Headphones,1,150,11/27/19 18:00,"97 Maple St, Los Angeles, CA 90001" +293861,AA Batteries (4-pack),2,3.84,11/14/19 23:30,"142 10th St, San Francisco, CA 94016" +293862,Google Phone,1,600,11/27/19 21:09,"844 Madison St, Los Angeles, CA 90001" +293862,USB-C Charging Cable,1,11.95,11/27/19 21:09,"844 Madison St, Los Angeles, CA 90001" +293863,Macbook Pro Laptop,1,1700,11/05/19 11:58,"898 Madison St, Boston, MA 02215" +293864,AAA Batteries (4-pack),1,2.99,11/13/19 09:58,"274 Willow St, Atlanta, GA 30301" +293865,Flatscreen TV,1,300,11/04/19 00:28,"916 11th St, Portland, OR 97035" +293866,Wired Headphones,1,11.99,11/12/19 13:42,"619 South St, Los Angeles, CA 90001" +293867,ThinkPad Laptop,1,999.99,11/04/19 16:46,"973 14th St, Los Angeles, CA 90001" +293867,USB-C Charging Cable,2,11.95,11/04/19 16:46,"973 14th St, Los Angeles, CA 90001" +293868,Bose SoundSport Headphones,1,99.99,11/04/19 17:34,"633 Ridge St, Boston, MA 02215" +293869,Bose SoundSport Headphones,2,99.99,11/29/19 22:45,"444 Jackson St, San Francisco, CA 94016" +293870,AAA Batteries (4-pack),1,2.99,11/16/19 20:44,"659 8th St, New York City, NY 10001" +293871,Lightning Charging Cable,1,14.95,11/25/19 11:33,"626 Elm St, Dallas, TX 75001" +293872,Google Phone,1,600,11/30/19 07:39,"756 Lake St, Dallas, TX 75001" +293873,Flatscreen TV,1,300,11/14/19 11:39,"918 South St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +293874,Bose SoundSport Headphones,1,99.99,11/25/19 21:06,"327 4th St, Dallas, TX 75001" +293875,Vareebadd Phone,1,400,11/09/19 13:26,"115 Johnson St, Atlanta, GA 30301" +293876,AA Batteries (4-pack),1,3.84,11/19/19 06:28,"955 Washington St, San Francisco, CA 94016" +293877,USB-C Charging Cable,1,11.95,11/15/19 00:04,"438 Park St, San Francisco, CA 94016" +293878,Vareebadd Phone,1,400,11/05/19 16:40,"414 13th St, Atlanta, GA 30301" +293879,iPhone,1,700,11/03/19 21:39,"475 Adams St, San Francisco, CA 94016" +293880,Lightning Charging Cable,1,14.95,11/29/19 17:44,"593 Maple St, Portland, OR 97035" +293881,iPhone,1,700,11/30/19 19:03,"536 Chestnut St, San Francisco, CA 94016" +293882,AA Batteries (4-pack),1,3.84,11/27/19 09:28,"462 Hill St, New York City, NY 10001" +293883,Lightning Charging Cable,1,14.95,11/13/19 17:16,"964 Elm St, Atlanta, GA 30301" +293884,Lightning Charging Cable,1,14.95,11/20/19 21:48,"328 Chestnut St, Los Angeles, CA 90001" +293885,Wired Headphones,1,11.99,11/11/19 11:17,"512 Adams St, Seattle, WA 98101" +293886,Flatscreen TV,1,300,11/07/19 09:10,"346 Washington St, Atlanta, GA 30301" +293887,AA Batteries (4-pack),1,3.84,11/06/19 11:43,"723 Jefferson St, Los Angeles, CA 90001" +293888,USB-C Charging Cable,1,11.95,11/28/19 13:44,"523 Main St, Dallas, TX 75001" +293889,Lightning Charging Cable,1,14.95,11/17/19 21:54,"475 Jefferson St, Austin, TX 73301" +293890,34in Ultrawide Monitor,1,379.99,11/22/19 11:45,"942 Elm St, Los Angeles, CA 90001" +293891,27in FHD Monitor,1,149.99,11/04/19 18:43,"107 2nd St, New York City, NY 10001" +293892,Wired Headphones,2,11.99,11/19/19 22:28,"727 Dogwood St, San Francisco, CA 94016" +293893,AA Batteries (4-pack),1,3.84,11/30/19 18:39,"37 7th St, Atlanta, GA 30301" +293894,Wired Headphones,1,11.99,11/08/19 14:30,"74 Hill St, San Francisco, CA 94016" +293895,Wired Headphones,1,11.99,11/30/19 16:42,"854 1st St, San Francisco, CA 94016" +293896,Lightning Charging Cable,1,14.95,11/08/19 00:00,"671 Hill St, Portland, ME 04101" +293897,20in Monitor,1,109.99,11/14/19 21:39,"119 Washington St, Seattle, WA 98101" +293898,Apple Airpods Headphones,1,150,11/23/19 14:46,"407 2nd St, San Francisco, CA 94016" +293899,AA Batteries (4-pack),1,3.84,11/23/19 20:29,"386 1st St, Boston, MA 02215" +293900,Wired Headphones,1,11.99,11/05/19 16:49,"425 4th St, Atlanta, GA 30301" +293901,Flatscreen TV,1,300,11/18/19 10:25,"650 River St, New York City, NY 10001" +293902,27in 4K Gaming Monitor,1,389.99,11/11/19 04:09,"894 Madison St, San Francisco, CA 94016" +293903,27in 4K Gaming Monitor,1,389.99,11/09/19 03:36,"639 Meadow St, Los Angeles, CA 90001" +293904,Lightning Charging Cable,1,14.95,11/07/19 12:10,"711 Chestnut St, New York City, NY 10001" +293905,Apple Airpods Headphones,1,150,11/29/19 13:09,"57 Main St, New York City, NY 10001" +293906,AAA Batteries (4-pack),1,2.99,11/30/19 21:16,"804 9th St, Boston, MA 02215" +293907,USB-C Charging Cable,1,11.95,11/23/19 12:10,"850 9th St, Portland, ME 04101" +293908,Flatscreen TV,1,300,11/18/19 19:45,"715 Cherry St, San Francisco, CA 94016" +293909,Wired Headphones,1,11.99,11/12/19 19:59,"634 Pine St, San Francisco, CA 94016" +293910,USB-C Charging Cable,1,11.95,11/20/19 10:33,"165 Main St, San Francisco, CA 94016" +293911,AA Batteries (4-pack),1,3.84,11/28/19 18:29,"641 Spruce St, Dallas, TX 75001" +293912,AA Batteries (4-pack),1,3.84,11/15/19 16:38,"498 8th St, Boston, MA 02215" +293913,AA Batteries (4-pack),2,3.84,11/11/19 22:21,"783 Maple St, New York City, NY 10001" +293914,27in FHD Monitor,1,149.99,11/24/19 11:06,"883 Madison St, Dallas, TX 75001" +293915,34in Ultrawide Monitor,1,379.99,11/01/19 21:24,"176 Cherry St, Los Angeles, CA 90001" +293916,Apple Airpods Headphones,1,150,11/21/19 23:16,"438 12th St, San Francisco, CA 94016" +293917,Macbook Pro Laptop,1,1700,11/02/19 09:47,"705 13th St, Atlanta, GA 30301" +293918,Lightning Charging Cable,1,14.95,11/24/19 10:07,"718 Sunset St, San Francisco, CA 94016" +293919,ThinkPad Laptop,1,999.99,11/15/19 20:39,"910 8th St, Dallas, TX 75001" +293920,27in FHD Monitor,1,149.99,11/02/19 13:51,"126 Johnson St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +293921,AAA Batteries (4-pack),1,2.99,11/22/19 12:12,"598 Church St, San Francisco, CA 94016" +293922,Bose SoundSport Headphones,1,99.99,11/27/19 08:44,"179 Cedar St, Dallas, TX 75001" +293923,27in FHD Monitor,1,149.99,11/02/19 00:31,"522 Elm St, Seattle, WA 98101" +293924,20in Monitor,1,109.99,11/29/19 17:05,"732 4th St, Los Angeles, CA 90001" +293925,27in 4K Gaming Monitor,1,389.99,11/14/19 16:51,"549 Ridge St, New York City, NY 10001" +293926,Macbook Pro Laptop,1,1700,11/24/19 10:59,"571 Lakeview St, San Francisco, CA 94016" +293927,Google Phone,1,600,11/06/19 17:49,"622 Dogwood St, New York City, NY 10001" +293928,USB-C Charging Cable,1,11.95,11/07/19 22:59,"795 Johnson St, Austin, TX 73301" +293929,Flatscreen TV,1,300,11/25/19 17:07,"566 4th St, Seattle, WA 98101" +293930,Lightning Charging Cable,1,14.95,11/27/19 16:42,"958 Johnson St, New York City, NY 10001" +293931,AAA Batteries (4-pack),1,2.99,11/08/19 17:54,"247 9th St, San Francisco, CA 94016" +293932,20in Monitor,1,109.99,11/02/19 23:32,"360 Highland St, San Francisco, CA 94016" +293933,Wired Headphones,1,11.99,11/13/19 13:13,"196 Cedar St, San Francisco, CA 94016" +293934,Bose SoundSport Headphones,1,99.99,11/22/19 13:47,"923 6th St, Los Angeles, CA 90001" +293935,Bose SoundSport Headphones,1,99.99,11/17/19 07:29,"604 Forest St, Boston, MA 02215" +293936,27in 4K Gaming Monitor,1,389.99,11/28/19 17:23,"656 Meadow St, San Francisco, CA 94016" +293937,Wired Headphones,2,11.99,11/03/19 10:45,"702 Cherry St, Austin, TX 73301" +293938,Macbook Pro Laptop,1,1700,11/11/19 16:04,"120 Elm St, Los Angeles, CA 90001" +293938,Lightning Charging Cable,1,14.95,11/11/19 16:04,"120 Elm St, Los Angeles, CA 90001" +293939,USB-C Charging Cable,1,11.95,11/27/19 09:48,"393 Willow St, San Francisco, CA 94016" +293940,Google Phone,1,600,11/18/19 13:45,"977 North St, Seattle, WA 98101" +293940,USB-C Charging Cable,1,11.95,11/18/19 13:45,"977 North St, Seattle, WA 98101" +293941,Bose SoundSport Headphones,1,99.99,11/12/19 00:40,"953 Willow St, Seattle, WA 98101" +293942,Bose SoundSport Headphones,1,99.99,11/28/19 00:42,"958 Chestnut St, Austin, TX 73301" +293943,ThinkPad Laptop,1,999.99,11/30/19 00:04,"268 Forest St, Boston, MA 02215" +293944,USB-C Charging Cable,1,11.95,11/02/19 10:14,"191 Meadow St, Austin, TX 73301" +293945,Google Phone,1,600,11/24/19 23:14,"56 6th St, San Francisco, CA 94016" +293945,USB-C Charging Cable,1,11.95,11/24/19 23:14,"56 6th St, San Francisco, CA 94016" +293946,AA Batteries (4-pack),1,3.84,11/09/19 20:46,"326 1st St, New York City, NY 10001" +293947,Lightning Charging Cable,1,14.95,11/30/19 12:01,"678 North St, Atlanta, GA 30301" +293948,Apple Airpods Headphones,1,150,11/15/19 02:44,"526 Elm St, Portland, OR 97035" +293949,Wired Headphones,1,11.99,11/16/19 01:19,"711 North St, Seattle, WA 98101" +293950,Wired Headphones,1,11.99,11/18/19 10:29,"770 Cedar St, Boston, MA 02215" +293951,Lightning Charging Cable,1,14.95,11/01/19 15:08,"760 Willow St, New York City, NY 10001" +293952,AAA Batteries (4-pack),1,2.99,11/13/19 09:00,"911 Madison St, Portland, ME 04101" +293953,27in FHD Monitor,1,149.99,11/01/19 12:14,"559 10th St, Austin, TX 73301" +293954,Vareebadd Phone,1,400,11/27/19 11:38,"94 Jackson St, New York City, NY 10001" +293955,AAA Batteries (4-pack),3,2.99,11/05/19 19:30,"614 Walnut St, Dallas, TX 75001" +293956,AAA Batteries (4-pack),1,2.99,11/13/19 11:54,"325 Sunset St, San Francisco, CA 94016" +293957,Wired Headphones,3,11.99,11/25/19 08:31,"507 11th St, San Francisco, CA 94016" +293958,AAA Batteries (4-pack),4,2.99,11/18/19 22:03,"840 6th St, Dallas, TX 75001" +293959,Macbook Pro Laptop,1,1700,11/20/19 16:55,"287 Cherry St, San Francisco, CA 94016" +293960,Lightning Charging Cable,1,14.95,11/20/19 08:06,"361 1st St, Boston, MA 02215" +293961,20in Monitor,1,109.99,11/30/19 22:44,"642 Cherry St, New York City, NY 10001" +293962,Lightning Charging Cable,1,14.95,11/07/19 09:43,"457 12th St, Atlanta, GA 30301" +293963,USB-C Charging Cable,1,11.95,11/25/19 22:22,"905 9th St, San Francisco, CA 94016" +293964,Wired Headphones,1,11.99,11/27/19 18:51,"467 Park St, Portland, OR 97035" +293965,AAA Batteries (4-pack),1,2.99,11/23/19 18:17,"417 12th St, Los Angeles, CA 90001" +293966,AAA Batteries (4-pack),1,2.99,11/14/19 11:39,"543 Jefferson St, Portland, OR 97035" +293967,ThinkPad Laptop,1,999.99,11/28/19 16:22,"977 Maple St, Atlanta, GA 30301" +293968,Wired Headphones,1,11.99,11/28/19 20:41,"374 Elm St, New York City, NY 10001" +293969,Macbook Pro Laptop,1,1700,11/08/19 18:13,"132 Jefferson St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +293970,Google Phone,1,600,11/29/19 15:40,"237 Lakeview St, Los Angeles, CA 90001" +293970,USB-C Charging Cable,1,11.95,11/29/19 15:40,"237 Lakeview St, Los Angeles, CA 90001" +293971,Vareebadd Phone,1,400,11/03/19 21:56,"121 8th St, Los Angeles, CA 90001" +293972,AAA Batteries (4-pack),1,2.99,11/21/19 20:10,"630 Wilson St, San Francisco, CA 94016" +293973,Wired Headphones,1,11.99,11/03/19 23:02,"848 Forest St, Austin, TX 73301" +293974,Apple Airpods Headphones,1,150,11/21/19 18:17,"533 Main St, San Francisco, CA 94016" +293975,Vareebadd Phone,1,400,11/20/19 09:30,"339 Maple St, New York City, NY 10001" +293976,USB-C Charging Cable,1,11.95,11/20/19 12:53,"112 North St, New York City, NY 10001" +293977,Bose SoundSport Headphones,1,99.99,11/11/19 19:08,"543 12th St, San Francisco, CA 94016" +293978,Wired Headphones,2,11.99,11/28/19 06:17,"252 Park St, Los Angeles, CA 90001" +293979,Lightning Charging Cable,1,14.95,11/21/19 09:20,"459 1st St, San Francisco, CA 94016" +293980,AAA Batteries (4-pack),3,2.99,11/11/19 22:50,"641 West St, New York City, NY 10001" +293981,AA Batteries (4-pack),1,3.84,11/08/19 09:29,"852 Lincoln St, Austin, TX 73301" +293982,Flatscreen TV,1,300,11/26/19 19:01,"556 Ridge St, Portland, OR 97035" +293983,Wired Headphones,1,11.99,11/29/19 14:11,"752 Cedar St, Los Angeles, CA 90001" +293984,Bose SoundSport Headphones,1,99.99,11/21/19 08:09,"227 Adams St, Seattle, WA 98101" +293985,Bose SoundSport Headphones,1,99.99,11/12/19 17:22,"520 Forest St, San Francisco, CA 94016" +293986,AA Batteries (4-pack),1,3.84,11/21/19 14:33,"456 8th St, Los Angeles, CA 90001" +293987,AA Batteries (4-pack),1,3.84,11/24/19 22:01,"760 6th St, Seattle, WA 98101" +293988,USB-C Charging Cable,1,11.95,11/10/19 18:05,"486 Wilson St, San Francisco, CA 94016" +293989,USB-C Charging Cable,1,11.95,11/06/19 00:09,"931 Wilson St, Atlanta, GA 30301" +293990,27in FHD Monitor,1,149.99,11/26/19 12:29,"832 Walnut St, Seattle, WA 98101" +293991,AA Batteries (4-pack),2,3.84,11/03/19 04:14,"492 North St, Los Angeles, CA 90001" +293992,Flatscreen TV,1,300,11/07/19 21:33,"339 5th St, New York City, NY 10001" +293993,27in FHD Monitor,1,149.99,11/19/19 14:29,"712 Chestnut St, Dallas, TX 75001" +293994,iPhone,1,700,11/21/19 19:57,"703 13th St, Los Angeles, CA 90001" +293994,Wired Headphones,1,11.99,11/21/19 19:57,"703 13th St, Los Angeles, CA 90001" +293995,AA Batteries (4-pack),2,3.84,11/27/19 09:58,"292 Adams St, San Francisco, CA 94016" +293996,iPhone,1,700,11/27/19 11:44,"672 Johnson St, San Francisco, CA 94016" +293997,Lightning Charging Cable,1,14.95,11/01/19 17:37,"702 Cedar St, Dallas, TX 75001" +293998,Apple Airpods Headphones,1,150,11/24/19 21:50,"830 Jefferson St, San Francisco, CA 94016" +293999,Lightning Charging Cable,1,14.95,11/18/19 18:26,"117 6th St, Atlanta, GA 30301" +294000,AA Batteries (4-pack),1,3.84,11/03/19 10:27,"42 13th St, Boston, MA 02215" +294001,AAA Batteries (4-pack),1,2.99,11/21/19 13:29,"712 Cedar St, San Francisco, CA 94016" +294002,Apple Airpods Headphones,1,150,11/05/19 16:22,"213 13th St, Seattle, WA 98101" +294003,Lightning Charging Cable,1,14.95,11/27/19 22:51,"939 River St, Atlanta, GA 30301" +294004,Lightning Charging Cable,1,14.95,11/01/19 15:07,"229 5th St, Atlanta, GA 30301" +294005,Bose SoundSport Headphones,1,99.99,11/09/19 10:35,"238 Highland St, Portland, ME 04101" +294006,Apple Airpods Headphones,1,150,11/04/19 23:05,"329 Spruce St, Seattle, WA 98101" +294006,AAA Batteries (4-pack),1,2.99,11/04/19 23:05,"329 Spruce St, Seattle, WA 98101" +294007,LG Dryer,1,600.0,11/03/19 18:33,"305 Main St, New York City, NY 10001" +294008,Wired Headphones,1,11.99,11/15/19 01:14,"123 Meadow St, Los Angeles, CA 90001" +294009,AAA Batteries (4-pack),2,2.99,11/21/19 13:41,"188 8th St, Austin, TX 73301" +294010,ThinkPad Laptop,1,999.99,11/13/19 08:08,"312 Ridge St, Los Angeles, CA 90001" +294011,AAA Batteries (4-pack),1,2.99,11/06/19 18:40,"822 Sunset St, San Francisco, CA 94016" +294012,USB-C Charging Cable,2,11.95,11/06/19 05:59,"664 Church St, Seattle, WA 98101" +294013,Google Phone,1,600,11/21/19 08:41,"652 12th St, San Francisco, CA 94016" +294014,AA Batteries (4-pack),1,3.84,11/04/19 11:08,"706 Washington St, New York City, NY 10001" +294015,Bose SoundSport Headphones,1,99.99,11/12/19 18:56,"618 4th St, San Francisco, CA 94016" +294016,AA Batteries (4-pack),1,3.84,11/24/19 17:54,"845 Elm St, San Francisco, CA 94016" +294017,Bose SoundSport Headphones,1,99.99,11/18/19 18:53,"716 Maple St, Boston, MA 02215" +294018,AA Batteries (4-pack),1,3.84,11/26/19 18:43,"687 Johnson St, San Francisco, CA 94016" +294019,20in Monitor,1,109.99,11/29/19 23:09,"793 Chestnut St, Seattle, WA 98101" +294020,34in Ultrawide Monitor,1,379.99,11/03/19 15:02,"796 Forest St, Los Angeles, CA 90001" +294020,AAA Batteries (4-pack),1,2.99,11/03/19 15:02,"796 Forest St, Los Angeles, CA 90001" +294021,AA Batteries (4-pack),1,3.84,11/18/19 10:52,"724 13th St, Boston, MA 02215" +294022,Vareebadd Phone,1,400,11/03/19 14:22,"926 Johnson St, Seattle, WA 98101" +294023,AA Batteries (4-pack),1,3.84,11/22/19 18:05,"78 Jefferson St, San Francisco, CA 94016" +294024,USB-C Charging Cable,1,11.95,11/23/19 21:50,"683 West St, Boston, MA 02215" +294025,USB-C Charging Cable,2,11.95,11/13/19 07:25,"206 Jefferson St, Boston, MA 02215" +294026,20in Monitor,1,109.99,11/25/19 11:56,"255 Forest St, Los Angeles, CA 90001" +294027,Bose SoundSport Headphones,1,99.99,11/26/19 11:21,"498 Hill St, Seattle, WA 98101" +294028,AAA Batteries (4-pack),3,2.99,11/03/19 12:53,"565 Elm St, Austin, TX 73301" +294029,AAA Batteries (4-pack),2,2.99,11/14/19 09:54,"773 North St, Austin, TX 73301" +294030,Wired Headphones,1,11.99,11/17/19 06:10,"218 11th St, New York City, NY 10001" +294031,27in 4K Gaming Monitor,1,389.99,11/07/19 21:01,"218 Walnut St, Dallas, TX 75001" +294032,USB-C Charging Cable,1,11.95,11/22/19 14:20,"956 10th St, Portland, OR 97035" +294033,Bose SoundSport Headphones,1,99.99,11/25/19 12:14,"583 Main St, San Francisco, CA 94016" +294034,AA Batteries (4-pack),1,3.84,11/02/19 17:06,"356 Elm St, Boston, MA 02215" +294035,Wired Headphones,1,11.99,11/23/19 20:22,"128 Willow St, Boston, MA 02215" +294036,AAA Batteries (4-pack),1,2.99,11/16/19 09:25,"501 1st St, Portland, OR 97035" +294037,Google Phone,1,600,11/17/19 15:49,"595 Lincoln St, Austin, TX 73301" +294038,Lightning Charging Cable,1,14.95,11/18/19 10:33,"53 Cherry St, Boston, MA 02215" +294039,USB-C Charging Cable,1,11.95,11/11/19 19:13,"597 11th St, San Francisco, CA 94016" +294040,LG Dryer,1,600.0,11/06/19 20:17,"746 2nd St, Atlanta, GA 30301" +294041,27in FHD Monitor,1,149.99,11/12/19 21:05,"59 Washington St, New York City, NY 10001" +294042,Wired Headphones,1,11.99,11/21/19 16:02,"451 West St, Boston, MA 02215" +294043,Bose SoundSport Headphones,2,99.99,11/24/19 20:19,"595 Sunset St, New York City, NY 10001" +294044,Bose SoundSport Headphones,1,99.99,11/29/19 21:50,"988 Meadow St, Austin, TX 73301" +294045,AA Batteries (4-pack),2,3.84,11/03/19 09:32,"672 Meadow St, Atlanta, GA 30301" +294045,USB-C Charging Cable,1,11.95,11/03/19 09:32,"672 Meadow St, Atlanta, GA 30301" +294046,AA Batteries (4-pack),1,3.84,11/27/19 15:22,"637 Park St, San Francisco, CA 94016" +294047,Wired Headphones,1,11.99,11/15/19 17:45,"889 Hickory St, Seattle, WA 98101" +294048,Google Phone,1,600,11/03/19 15:48,"693 Maple St, Dallas, TX 75001" +294049,ThinkPad Laptop,1,999.99,11/17/19 13:29,"576 11th St, San Francisco, CA 94016" +294050,Vareebadd Phone,1,400,11/26/19 17:04,"260 Highland St, San Francisco, CA 94016" +294051,Lightning Charging Cable,1,14.95,11/15/19 08:11,"296 Sunset St, Los Angeles, CA 90001" +294052,27in 4K Gaming Monitor,1,389.99,11/24/19 18:30,"605 5th St, New York City, NY 10001" +294053,USB-C Charging Cable,1,11.95,11/08/19 08:03,"74 River St, New York City, NY 10001" +294054,AA Batteries (4-pack),2,3.84,11/05/19 02:18,"791 Hickory St, San Francisco, CA 94016" +294055,AAA Batteries (4-pack),2,2.99,11/23/19 18:55,"855 Johnson St, Los Angeles, CA 90001" +294056,Wired Headphones,1,11.99,11/12/19 23:03,"391 Hickory St, New York City, NY 10001" +294057,27in 4K Gaming Monitor,1,389.99,11/24/19 21:48,"550 Ridge St, Boston, MA 02215" +294058,AAA Batteries (4-pack),1,2.99,11/19/19 13:17,"869 Dogwood St, Atlanta, GA 30301" +294059,Lightning Charging Cable,1,14.95,11/11/19 19:16,"968 14th St, Dallas, TX 75001" +294060,AAA Batteries (4-pack),1,2.99,11/06/19 23:25,"222 Cherry St, Boston, MA 02215" +294061,AA Batteries (4-pack),1,3.84,11/20/19 11:24,"433 10th St, San Francisco, CA 94016" +294062,34in Ultrawide Monitor,1,379.99,11/05/19 08:48,"131 8th St, San Francisco, CA 94016" +294063,Flatscreen TV,1,300,11/25/19 23:57,"381 4th St, New York City, NY 10001" +294064,Lightning Charging Cable,1,14.95,11/05/19 19:02,"888 South St, Dallas, TX 75001" +294065,AAA Batteries (4-pack),1,2.99,11/27/19 14:37,"282 Cherry St, San Francisco, CA 94016" +294066,Apple Airpods Headphones,1,150,11/13/19 10:23,"611 River St, San Francisco, CA 94016" +294067,Lightning Charging Cable,1,14.95,11/07/19 14:45,"434 Park St, Los Angeles, CA 90001" +294068,USB-C Charging Cable,1,11.95,11/17/19 20:33,"371 8th St, Portland, OR 97035" +294069,Apple Airpods Headphones,1,150,11/18/19 21:11,"352 Sunset St, Los Angeles, CA 90001" +294070,34in Ultrawide Monitor,1,379.99,11/08/19 10:07,"782 6th St, San Francisco, CA 94016" +294071,AAA Batteries (4-pack),2,2.99,11/26/19 21:41,"246 Jefferson St, Dallas, TX 75001" +294072,USB-C Charging Cable,1,11.95,11/03/19 10:05,"711 7th St, Los Angeles, CA 90001" +294073,Lightning Charging Cable,1,14.95,11/01/19 11:56,"545 10th St, Atlanta, GA 30301" +294074,Apple Airpods Headphones,1,150,11/18/19 12:52,"262 Meadow St, Boston, MA 02215" +294075,AA Batteries (4-pack),2,3.84,11/18/19 00:32,"407 Church St, Dallas, TX 75001" +294076,Macbook Pro Laptop,1,1700,11/30/19 11:39,"706 Main St, Los Angeles, CA 90001" +294077,Google Phone,1,600,11/26/19 10:31,"103 1st St, Austin, TX 73301" +294077,Bose SoundSport Headphones,1,99.99,11/26/19 10:31,"103 1st St, Austin, TX 73301" +294078,USB-C Charging Cable,1,11.95,11/13/19 12:37,"168 Sunset St, Los Angeles, CA 90001" +294079,iPhone,1,700,11/11/19 00:36,"662 Hickory St, Los Angeles, CA 90001" +294080,Lightning Charging Cable,1,14.95,11/07/19 16:49,"486 North St, Los Angeles, CA 90001" +294081,USB-C Charging Cable,1,11.95,11/10/19 15:12,"550 Meadow St, Atlanta, GA 30301" +294082,USB-C Charging Cable,1,11.95,11/15/19 20:51,"915 West St, Boston, MA 02215" +294083,20in Monitor,1,109.99,11/26/19 23:40,"367 Elm St, Los Angeles, CA 90001" +294084,USB-C Charging Cable,1,11.95,11/12/19 19:43,"367 Hill St, Atlanta, GA 30301" +294085,Wired Headphones,1,11.99,11/01/19 17:36,"288 11th St, San Francisco, CA 94016" +294086,AA Batteries (4-pack),2,3.84,11/04/19 16:07,"206 8th St, San Francisco, CA 94016" +294087,AA Batteries (4-pack),1,3.84,11/26/19 16:39,"743 Jefferson St, Portland, OR 97035" +294088,Lightning Charging Cable,2,14.95,11/08/19 08:34,"662 North St, Los Angeles, CA 90001" +294089,AAA Batteries (4-pack),2,2.99,11/19/19 01:06,"369 Hill St, New York City, NY 10001" +294090,Lightning Charging Cable,1,14.95,11/05/19 11:42,"943 Church St, San Francisco, CA 94016" +294091,AA Batteries (4-pack),1,3.84,11/21/19 20:53,"681 10th St, Seattle, WA 98101" +294092,Flatscreen TV,1,300,11/29/19 11:21,"497 Elm St, Boston, MA 02215" +294093,Wired Headphones,1,11.99,11/25/19 23:16,"119 Washington St, Portland, OR 97035" +294094,Bose SoundSport Headphones,1,99.99,11/19/19 23:15,"332 Main St, New York City, NY 10001" +294095,Apple Airpods Headphones,1,150,11/25/19 20:30,"517 Park St, San Francisco, CA 94016" +294096,Bose SoundSport Headphones,1,99.99,11/04/19 18:39,"703 11th St, Atlanta, GA 30301" +294097,AAA Batteries (4-pack),1,2.99,11/05/19 18:17,"66 11th St, San Francisco, CA 94016" +294098,27in FHD Monitor,1,149.99,11/15/19 17:40,"885 1st St, Los Angeles, CA 90001" +294099,USB-C Charging Cable,1,11.95,11/27/19 12:10,"795 Elm St, Dallas, TX 75001" +294100,AA Batteries (4-pack),2,3.84,11/19/19 08:03,"563 Maple St, New York City, NY 10001" +294101,AA Batteries (4-pack),1,3.84,11/16/19 18:33,"420 Elm St, Dallas, TX 75001" +294102,27in FHD Monitor,1,149.99,11/11/19 13:10,"698 Lake St, San Francisco, CA 94016" +294103,Flatscreen TV,1,300,11/28/19 19:33,"823 Spruce St, Atlanta, GA 30301" +294104,iPhone,1,700,11/11/19 22:50,"25 Hickory St, San Francisco, CA 94016" +294105,Lightning Charging Cable,1,14.95,11/03/19 10:47,"500 Ridge St, Boston, MA 02215" +294106,Lightning Charging Cable,1,14.95,11/09/19 21:10,"42 Church St, New York City, NY 10001" +294107,AAA Batteries (4-pack),1,2.99,11/30/19 20:42,"509 Church St, Seattle, WA 98101" +294108,AA Batteries (4-pack),1,3.84,11/13/19 08:03,"274 West St, Los Angeles, CA 90001" +294109,Bose SoundSport Headphones,1,99.99,11/19/19 19:20,"412 Chestnut St, San Francisco, CA 94016" +294110,20in Monitor,1,109.99,11/18/19 16:39,"610 Pine St, San Francisco, CA 94016" +294111,Wired Headphones,2,11.99,11/20/19 19:58,"807 Cedar St, Atlanta, GA 30301" +294112,ThinkPad Laptop,1,999.99,11/14/19 17:24,"537 Meadow St, Los Angeles, CA 90001" +294113,AA Batteries (4-pack),2,3.84,11/05/19 11:23,"939 5th St, Seattle, WA 98101" +294114,20in Monitor,1,109.99,11/06/19 21:09,"453 11th St, San Francisco, CA 94016" +294115,Lightning Charging Cable,1,14.95,11/10/19 16:53,"283 Maple St, San Francisco, CA 94016" +294116,USB-C Charging Cable,1,11.95,11/10/19 03:21,"222 5th St, Portland, OR 97035" +294117,Lightning Charging Cable,1,14.95,11/24/19 16:11,"438 Park St, Los Angeles, CA 90001" +294118,Apple Airpods Headphones,1,150,11/17/19 08:17,"360 Adams St, New York City, NY 10001" +294119,Apple Airpods Headphones,1,150,11/23/19 22:03,"561 Hickory St, Atlanta, GA 30301" +294120,USB-C Charging Cable,1,11.95,11/14/19 17:18,"470 Cedar St, New York City, NY 10001" +294121,AA Batteries (4-pack),1,3.84,11/09/19 00:28,"687 13th St, Austin, TX 73301" +294122,Wired Headphones,1,11.99,11/11/19 23:39,"591 West St, Atlanta, GA 30301" +294123,USB-C Charging Cable,1,11.95,11/09/19 18:18,"111 Wilson St, New York City, NY 10001" +294124,AA Batteries (4-pack),1,3.84,11/21/19 17:49,"506 Maple St, Seattle, WA 98101" +294125,iPhone,1,700,11/26/19 08:04,"602 Chestnut St, Los Angeles, CA 90001" +294126,Google Phone,1,600,11/05/19 20:46,"142 Lakeview St, San Francisco, CA 94016" +294126,Wired Headphones,1,11.99,11/05/19 20:46,"142 Lakeview St, San Francisco, CA 94016" +294127,Apple Airpods Headphones,1,150,11/26/19 23:46,"596 Walnut St, Portland, ME 04101" +294128,Flatscreen TV,1,300,11/17/19 20:12,"660 Spruce St, Los Angeles, CA 90001" +294129,AA Batteries (4-pack),1,3.84,11/21/19 23:58,"7 14th St, San Francisco, CA 94016" +294130,27in FHD Monitor,1,149.99,11/17/19 09:36,"576 14th St, Seattle, WA 98101" +294131,Google Phone,1,600,11/24/19 19:56,"170 Chestnut St, San Francisco, CA 94016" +294132,AA Batteries (4-pack),1,3.84,11/06/19 20:14,"172 Center St, Dallas, TX 75001" +294133,Apple Airpods Headphones,1,150,11/01/19 08:35,"529 Park St, Atlanta, GA 30301" +294134,iPhone,1,700,11/19/19 19:15,"578 West St, Los Angeles, CA 90001" +294135,20in Monitor,1,109.99,11/04/19 22:32,"27 Washington St, San Francisco, CA 94016" +294136,iPhone,1,700,11/06/19 15:29,"305 Maple St, Dallas, TX 75001" +294136,Lightning Charging Cable,1,14.95,11/06/19 15:29,"305 Maple St, Dallas, TX 75001" +294137,USB-C Charging Cable,1,11.95,11/03/19 01:20,"923 Church St, Los Angeles, CA 90001" +294138,Wired Headphones,1,11.99,11/22/19 09:11,"187 9th St, Portland, OR 97035" +294139,Bose SoundSport Headphones,1,99.99,11/23/19 09:49,"702 8th St, San Francisco, CA 94016" +294140,Lightning Charging Cable,1,14.95,11/02/19 11:08,"141 Highland St, San Francisco, CA 94016" +294141,Lightning Charging Cable,1,14.95,11/09/19 06:44,"507 Main St, San Francisco, CA 94016" +294142,USB-C Charging Cable,1,11.95,11/21/19 10:40,"750 Adams St, Los Angeles, CA 90001" +294143,Wired Headphones,1,11.99,11/09/19 16:47,"604 Walnut St, New York City, NY 10001" +294144,Apple Airpods Headphones,1,150,11/14/19 16:33,"610 Chestnut St, Atlanta, GA 30301" +294145,AAA Batteries (4-pack),3,2.99,11/18/19 01:43,"503 Lake St, Austin, TX 73301" +294146,Lightning Charging Cable,1,14.95,11/24/19 15:37,"474 Spruce St, San Francisco, CA 94016" +294147,USB-C Charging Cable,1,11.95,11/22/19 22:22,"185 Johnson St, Seattle, WA 98101" +294148,USB-C Charging Cable,1,11.95,11/09/19 11:17,"366 Highland St, New York City, NY 10001" +294149,27in 4K Gaming Monitor,1,389.99,11/29/19 22:03,"608 Jackson St, Seattle, WA 98101" +294150,27in FHD Monitor,1,149.99,11/13/19 14:24,"522 2nd St, Austin, TX 73301" +294151,Lightning Charging Cable,1,14.95,11/25/19 10:57,"741 Sunset St, New York City, NY 10001" +294152,Apple Airpods Headphones,1,150,11/03/19 19:34,"999 Hill St, San Francisco, CA 94016" +294153,34in Ultrawide Monitor,1,379.99,11/09/19 09:50,"167 2nd St, San Francisco, CA 94016" +294154,Google Phone,1,600,11/07/19 17:03,"993 Lincoln St, San Francisco, CA 94016" +294155,Lightning Charging Cable,1,14.95,11/14/19 16:13,"91 Cedar St, San Francisco, CA 94016" +294156,Wired Headphones,1,11.99,11/13/19 19:00,"616 Willow St, Los Angeles, CA 90001" +294157,27in FHD Monitor,1,149.99,11/04/19 19:08,"329 Elm St, Dallas, TX 75001" +294158,Google Phone,1,600,11/04/19 23:05,"415 Sunset St, Boston, MA 02215" +294159,Apple Airpods Headphones,1,150,11/23/19 09:17,"249 Madison St, San Francisco, CA 94016" +294160,AAA Batteries (4-pack),1,2.99,11/18/19 12:50,"830 Dogwood St, Los Angeles, CA 90001" +294161,27in FHD Monitor,1,149.99,11/02/19 14:25,"991 Johnson St, Los Angeles, CA 90001" +294162,USB-C Charging Cable,1,11.95,11/25/19 13:58,"159 Pine St, Los Angeles, CA 90001" +294163,Bose SoundSport Headphones,1,99.99,11/17/19 21:32,"375 Jefferson St, Seattle, WA 98101" +294164,Wired Headphones,1,11.99,11/21/19 05:46,"974 Elm St, Austin, TX 73301" +294165,Wired Headphones,1,11.99,11/17/19 22:02,"177 Hickory St, New York City, NY 10001" +294166,AA Batteries (4-pack),1,3.84,11/17/19 20:55,"478 6th St, Boston, MA 02215" +294167,Bose SoundSport Headphones,1,99.99,11/10/19 00:13,"936 7th St, Austin, TX 73301" +294168,AAA Batteries (4-pack),1,2.99,11/10/19 15:24,"334 Center St, San Francisco, CA 94016" +294169,Flatscreen TV,1,300,11/09/19 10:32,"769 14th St, Dallas, TX 75001" +294170,27in FHD Monitor,1,149.99,11/09/19 11:06,"356 Washington St, Los Angeles, CA 90001" +294171,AA Batteries (4-pack),1,3.84,11/27/19 22:43,"280 9th St, New York City, NY 10001" +294172,Apple Airpods Headphones,1,150,11/25/19 10:53,"41 Willow St, Boston, MA 02215" +294173,Flatscreen TV,1,300,11/29/19 10:41,"668 11th St, Austin, TX 73301" +294174,AA Batteries (4-pack),2,3.84,11/30/19 12:07,"75 Dogwood St, Dallas, TX 75001" +294175,27in FHD Monitor,1,149.99,11/19/19 19:03,"685 Washington St, Austin, TX 73301" +294176,Flatscreen TV,1,300,11/15/19 10:13,"817 Chestnut St, Los Angeles, CA 90001" +294177,ThinkPad Laptop,1,999.99,11/14/19 20:00,"31 Park St, Los Angeles, CA 90001" +294177,27in FHD Monitor,1,149.99,11/14/19 20:00,"31 Park St, Los Angeles, CA 90001" +294178,ThinkPad Laptop,1,999.99,11/09/19 21:13,"967 7th St, San Francisco, CA 94016" +294179,AA Batteries (4-pack),1,3.84,11/20/19 01:07,"11 14th St, New York City, NY 10001" +294180,AA Batteries (4-pack),1,3.84,11/16/19 20:39,"260 Wilson St, Portland, OR 97035" +294181,USB-C Charging Cable,1,11.95,11/18/19 17:02,"455 9th St, Seattle, WA 98101" +294182,34in Ultrawide Monitor,1,379.99,11/07/19 05:53,"670 Jefferson St, New York City, NY 10001" +294183,27in 4K Gaming Monitor,1,389.99,11/04/19 09:27,"524 9th St, Portland, OR 97035" +294184,AA Batteries (4-pack),1,3.84,11/14/19 11:19,"484 6th St, Los Angeles, CA 90001" +294185,Apple Airpods Headphones,1,150,11/14/19 14:09,"836 5th St, Los Angeles, CA 90001" +294186,Lightning Charging Cable,2,14.95,11/15/19 15:40,"38 Ridge St, Los Angeles, CA 90001" +294187,Wired Headphones,1,11.99,11/09/19 22:12,"327 Lakeview St, Portland, OR 97035" +294188,34in Ultrawide Monitor,1,379.99,11/15/19 14:15,"660 River St, San Francisco, CA 94016" +294189,27in 4K Gaming Monitor,1,389.99,11/27/19 10:03,"348 Dogwood St, San Francisco, CA 94016" +294190,Apple Airpods Headphones,1,150,11/20/19 17:36,"400 12th St, Seattle, WA 98101" +294191,AA Batteries (4-pack),1,3.84,11/03/19 06:32,"85 14th St, Boston, MA 02215" +294192,Apple Airpods Headphones,1,150,11/23/19 09:18,"787 Maple St, Atlanta, GA 30301" +294193,ThinkPad Laptop,1,999.99,11/28/19 20:03,"577 7th St, Seattle, WA 98101" +294194,USB-C Charging Cable,1,11.95,11/04/19 14:20,"927 Church St, Portland, ME 04101" +294195,USB-C Charging Cable,2,11.95,11/21/19 22:54,"119 Main St, Los Angeles, CA 90001" +294196,AAA Batteries (4-pack),1,2.99,11/19/19 15:52,"907 Hickory St, San Francisco, CA 94016" +294197,ThinkPad Laptop,1,999.99,11/11/19 08:13,"340 1st St, Dallas, TX 75001" +294198,AA Batteries (4-pack),1,3.84,11/30/19 22:06,"82 Walnut St, Los Angeles, CA 90001" +294199,Lightning Charging Cable,1,14.95,11/23/19 09:45,"923 6th St, Austin, TX 73301" +294200,AA Batteries (4-pack),4,3.84,11/10/19 19:51,"825 Meadow St, Boston, MA 02215" +294201,Google Phone,1,600,11/24/19 10:34,"193 Hickory St, Dallas, TX 75001" +294202,AAA Batteries (4-pack),1,2.99,11/20/19 16:40,"600 Willow St, San Francisco, CA 94016" +294203,Google Phone,1,600,11/06/19 13:47,"333 6th St, San Francisco, CA 94016" +294203,Wired Headphones,1,11.99,11/06/19 13:47,"333 6th St, San Francisco, CA 94016" +294204,AA Batteries (4-pack),1,3.84,11/19/19 22:03,"205 Center St, Boston, MA 02215" +294205,USB-C Charging Cable,2,11.95,11/21/19 19:34,"662 Adams St, San Francisco, CA 94016" +294206,AA Batteries (4-pack),1,3.84,11/21/19 13:38,"273 Hickory St, San Francisco, CA 94016" +294207,iPhone,1,700,11/30/19 09:06,"914 Spruce St, Dallas, TX 75001" +294208,iPhone,1,700,11/11/19 06:57,"803 4th St, New York City, NY 10001" +294209,Apple Airpods Headphones,1,150,11/13/19 19:27,"167 South St, New York City, NY 10001" +294210,AA Batteries (4-pack),1,3.84,11/28/19 18:45,"858 Center St, Boston, MA 02215" +294211,AA Batteries (4-pack),1,3.84,11/29/19 22:01,"14 12th St, Boston, MA 02215" +294212,USB-C Charging Cable,1,11.95,11/29/19 12:09,"586 14th St, Atlanta, GA 30301" +294213,Google Phone,1,600,11/25/19 11:48,"720 Walnut St, New York City, NY 10001" +294213,USB-C Charging Cable,1,11.95,11/25/19 11:48,"720 Walnut St, New York City, NY 10001" +294214,Wired Headphones,1,11.99,11/24/19 12:51,"443 Hill St, Atlanta, GA 30301" +294215,LG Washing Machine,1,600.0,11/04/19 15:48,"939 Willow St, Atlanta, GA 30301" +294216,AAA Batteries (4-pack),2,2.99,11/26/19 19:07,"453 Cedar St, Atlanta, GA 30301" +294217,34in Ultrawide Monitor,1,379.99,11/30/19 20:58,"339 Maple St, New York City, NY 10001" +294218,AA Batteries (4-pack),1,3.84,11/20/19 13:14,"807 Cedar St, Boston, MA 02215" +294219,Lightning Charging Cable,1,14.95,11/16/19 01:30,"139 Walnut St, Boston, MA 02215" +294220,AAA Batteries (4-pack),1,2.99,11/09/19 10:50,"661 Madison St, Austin, TX 73301" +294221,Bose SoundSport Headphones,1,99.99,11/08/19 15:29,"475 Spruce St, New York City, NY 10001" +294222,Wired Headphones,1,11.99,11/26/19 22:01,"80 12th St, Atlanta, GA 30301" +294223,Wired Headphones,1,11.99,11/02/19 21:57,"358 West St, Atlanta, GA 30301" +294224,Lightning Charging Cable,1,14.95,11/15/19 18:30,"209 2nd St, San Francisco, CA 94016" +294225,AA Batteries (4-pack),1,3.84,11/23/19 16:36,"608 6th St, Boston, MA 02215" +294226,AAA Batteries (4-pack),1,2.99,11/08/19 19:07,"349 2nd St, Portland, ME 04101" +294227,Bose SoundSport Headphones,1,99.99,11/06/19 12:16,"306 6th St, New York City, NY 10001" +294228,Lightning Charging Cable,1,14.95,11/01/19 18:57,"574 Adams St, San Francisco, CA 94016" +294229,AAA Batteries (4-pack),2,2.99,11/16/19 00:31,"381 4th St, Dallas, TX 75001" +294230,Wired Headphones,1,11.99,11/30/19 00:00,"36 Jefferson St, Atlanta, GA 30301" +294231,Lightning Charging Cable,1,14.95,11/17/19 08:03,"880 Elm St, New York City, NY 10001" +294232,USB-C Charging Cable,3,11.95,11/17/19 23:22,"277 Madison St, San Francisco, CA 94016" +294233,iPhone,1,700,11/08/19 22:52,"459 Main St, Atlanta, GA 30301" +294234,AA Batteries (4-pack),2,3.84,11/13/19 23:49,"793 Church St, Los Angeles, CA 90001" +294235,Lightning Charging Cable,2,14.95,11/10/19 16:55,"19 Lincoln St, San Francisco, CA 94016" +294236,Lightning Charging Cable,1,14.95,11/16/19 08:18,"839 Elm St, San Francisco, CA 94016" +294237,Wired Headphones,2,11.99,11/25/19 10:18,"450 4th St, Atlanta, GA 30301" +294238,Flatscreen TV,1,300,11/02/19 09:46,"497 Church St, San Francisco, CA 94016" +294239,USB-C Charging Cable,1,11.95,11/06/19 10:02,"435 Main St, New York City, NY 10001" +294240,Bose SoundSport Headphones,1,99.99,11/28/19 18:48,"564 West St, San Francisco, CA 94016" +294241,AAA Batteries (4-pack),1,2.99,11/10/19 15:17,"369 Sunset St, Dallas, TX 75001" +294242,AAA Batteries (4-pack),3,2.99,11/16/19 17:30,"736 Highland St, Los Angeles, CA 90001" +294243,Apple Airpods Headphones,1,150,11/10/19 19:57,"640 North St, Austin, TX 73301" +294244,Apple Airpods Headphones,1,150,11/10/19 10:21,"699 River St, San Francisco, CA 94016" +294245,Lightning Charging Cable,1,14.95,11/06/19 16:35,"403 Maple St, San Francisco, CA 94016" +294246,iPhone,1,700,11/15/19 16:24,"754 Ridge St, New York City, NY 10001" +294247,Apple Airpods Headphones,1,150,11/10/19 06:56,"192 Chestnut St, New York City, NY 10001" +294248,Bose SoundSport Headphones,1,99.99,11/25/19 09:34,"957 Lake St, San Francisco, CA 94016" +294249,USB-C Charging Cable,1,11.95,11/21/19 10:30,"994 Park St, New York City, NY 10001" +294250,Bose SoundSport Headphones,1,99.99,11/15/19 12:04,"782 Washington St, San Francisco, CA 94016" +294251,AA Batteries (4-pack),1,3.84,11/22/19 10:22,"816 Forest St, San Francisco, CA 94016" +294252,Lightning Charging Cable,1,14.95,11/26/19 18:05,"117 Church St, Los Angeles, CA 90001" +294253,Lightning Charging Cable,2,14.95,11/16/19 09:11,"297 Johnson St, Atlanta, GA 30301" +294254,Wired Headphones,1,11.99,11/26/19 14:21,"664 9th St, Los Angeles, CA 90001" +294255,Lightning Charging Cable,1,14.95,11/14/19 02:40,"531 Ridge St, Boston, MA 02215" +294256,iPhone,1,700,11/01/19 16:40,"914 Maple St, New York City, NY 10001" +294257,Lightning Charging Cable,1,14.95,11/17/19 22:24,"595 Meadow St, Dallas, TX 75001" +294258,ThinkPad Laptop,1,999.99,11/24/19 11:07,"870 Maple St, Los Angeles, CA 90001" +294259,AA Batteries (4-pack),1,3.84,11/16/19 20:40,"56 Madison St, San Francisco, CA 94016" +294260,ThinkPad Laptop,1,999.99,11/06/19 08:35,"492 Lakeview St, New York City, NY 10001" +294261,iPhone,1,700,11/27/19 20:46,"467 5th St, San Francisco, CA 94016" +294262,Lightning Charging Cable,1,14.95,11/26/19 22:26,"621 Park St, Dallas, TX 75001" +294263,Lightning Charging Cable,1,14.95,11/29/19 20:16,"59 Madison St, Los Angeles, CA 90001" +294264,USB-C Charging Cable,1,11.95,11/15/19 21:38,"607 Center St, Los Angeles, CA 90001" +294265,Lightning Charging Cable,1,14.95,11/29/19 14:51,"246 River St, Atlanta, GA 30301" +294266,AAA Batteries (4-pack),1,2.99,11/27/19 22:25,"473 Jackson St, Seattle, WA 98101" +294267,USB-C Charging Cable,1,11.95,11/19/19 08:27,"208 2nd St, San Francisco, CA 94016" +294268,Apple Airpods Headphones,1,150,11/30/19 12:11,"80 Jefferson St, Los Angeles, CA 90001" +294269,Lightning Charging Cable,1,14.95,11/02/19 12:32,"727 Adams St, San Francisco, CA 94016" +294270,Wired Headphones,1,11.99,11/05/19 21:29,"766 Forest St, Atlanta, GA 30301" +294271,USB-C Charging Cable,1,11.95,11/03/19 15:22,"166 5th St, New York City, NY 10001" +294272,iPhone,1,700,11/19/19 08:06,"954 7th St, San Francisco, CA 94016" +294272,Apple Airpods Headphones,1,150,11/19/19 08:06,"954 7th St, San Francisco, CA 94016" +294273,AA Batteries (4-pack),2,3.84,11/09/19 20:37,"571 Sunset St, San Francisco, CA 94016" +294274,USB-C Charging Cable,2,11.95,11/10/19 16:19,"701 Center St, New York City, NY 10001" +294275,Wired Headphones,2,11.99,11/14/19 13:34,"758 1st St, Seattle, WA 98101" +294276,USB-C Charging Cable,1,11.95,11/03/19 19:30,"687 Jackson St, New York City, NY 10001" +294277,AAA Batteries (4-pack),2,2.99,11/19/19 20:03,"402 6th St, San Francisco, CA 94016" +294278,USB-C Charging Cable,1,11.95,11/05/19 18:53,"811 Sunset St, New York City, NY 10001" +294279,AAA Batteries (4-pack),2,2.99,11/24/19 14:29,"223 Cherry St, San Francisco, CA 94016" +294280,Apple Airpods Headphones,1,150,11/17/19 11:59,"342 7th St, Boston, MA 02215" +294281,Apple Airpods Headphones,1,150,11/11/19 19:57,"972 Ridge St, New York City, NY 10001" +294282,AAA Batteries (4-pack),2,2.99,11/17/19 20:27,"935 Hickory St, San Francisco, CA 94016" +294283,AA Batteries (4-pack),1,3.84,11/21/19 21:17,"154 North St, Portland, OR 97035" +294284,AA Batteries (4-pack),1,3.84,11/11/19 10:57,"469 Jefferson St, Atlanta, GA 30301" +294285,AA Batteries (4-pack),1,3.84,11/06/19 14:19,"192 12th St, Los Angeles, CA 90001" +294286,AAA Batteries (4-pack),1,2.99,11/09/19 20:06,"859 Lakeview St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +294287,Apple Airpods Headphones,1,150,11/24/19 14:38,"364 Spruce St, New York City, NY 10001" +294288,Lightning Charging Cable,1,14.95,11/28/19 01:49,"412 4th St, Seattle, WA 98101" +294289,AAA Batteries (4-pack),1,2.99,11/20/19 15:12,"576 Ridge St, San Francisco, CA 94016" +294290,27in FHD Monitor,1,149.99,11/05/19 12:43,"686 9th St, Los Angeles, CA 90001" +294291,Apple Airpods Headphones,1,150,11/14/19 19:36,"57 Lake St, New York City, NY 10001" +294292,AA Batteries (4-pack),1,3.84,11/13/19 10:42,"846 Hickory St, New York City, NY 10001" +294293,Lightning Charging Cable,1,14.95,11/11/19 23:07,"963 Adams St, New York City, NY 10001" +294294,AA Batteries (4-pack),1,3.84,11/25/19 11:51,"976 1st St, San Francisco, CA 94016" +294295,USB-C Charging Cable,1,11.95,11/02/19 11:46,"999 Highland St, San Francisco, CA 94016" +294296,LG Washing Machine,1,600.0,11/22/19 08:58,"669 Dogwood St, Seattle, WA 98101" +294297,AAA Batteries (4-pack),1,2.99,11/17/19 19:12,"472 Dogwood St, Los Angeles, CA 90001" +294298,Wired Headphones,1,11.99,11/27/19 16:07,"737 Willow St, San Francisco, CA 94016" +294299,20in Monitor,1,109.99,11/30/19 22:51,"260 West St, San Francisco, CA 94016" +294300,Wired Headphones,1,11.99,11/28/19 00:32,"52 9th St, Los Angeles, CA 90001" +294301,34in Ultrawide Monitor,1,379.99,11/21/19 13:10,"301 Park St, San Francisco, CA 94016" +294302,USB-C Charging Cable,1,11.95,11/27/19 19:54,"946 1st St, Los Angeles, CA 90001" +294303,Apple Airpods Headphones,1,150,11/18/19 18:41,"504 Wilson St, Atlanta, GA 30301" +294304,Wired Headphones,1,11.99,11/12/19 23:28,"205 9th St, New York City, NY 10001" +294305,AAA Batteries (4-pack),1,2.99,11/20/19 10:11,"909 Jackson St, New York City, NY 10001" +294306,USB-C Charging Cable,1,11.95,11/23/19 09:56,"692 Lincoln St, Boston, MA 02215" +294307,Macbook Pro Laptop,1,1700,11/27/19 15:14,"586 Highland St, New York City, NY 10001" +294308,Apple Airpods Headphones,1,150,11/15/19 22:12,"668 Main St, Boston, MA 02215" +294309,Macbook Pro Laptop,1,1700,11/03/19 13:58,"87 Chestnut St, Portland, OR 97035" +294310,Lightning Charging Cable,1,14.95,11/23/19 08:59,"900 10th St, Austin, TX 73301" +294311,AA Batteries (4-pack),1,3.84,11/20/19 01:38,"563 Adams St, Boston, MA 02215" +294312,Bose SoundSport Headphones,1,99.99,11/18/19 19:36,"511 Cedar St, Atlanta, GA 30301" +294313,Lightning Charging Cable,1,14.95,11/27/19 16:01,"409 Jefferson St, San Francisco, CA 94016" +294314,USB-C Charging Cable,1,11.95,11/15/19 17:59,"910 9th St, San Francisco, CA 94016" +294315,USB-C Charging Cable,1,11.95,11/17/19 13:46,"547 9th St, San Francisco, CA 94016" +294316,Macbook Pro Laptop,1,1700,11/24/19 17:28,"78 Main St, Los Angeles, CA 90001" +294317,USB-C Charging Cable,1,11.95,11/06/19 19:30,"195 10th St, Dallas, TX 75001" +294318,USB-C Charging Cable,1,11.95,11/01/19 11:18,"77 Dogwood St, Portland, OR 97035" +294319,Flatscreen TV,1,300,11/05/19 12:01,"838 Lakeview St, Portland, OR 97035" +294320,Lightning Charging Cable,1,14.95,11/27/19 14:38,"707 Willow St, Seattle, WA 98101" +294321,AAA Batteries (4-pack),1,2.99,11/30/19 11:22,"570 Highland St, San Francisco, CA 94016" +294322,Bose SoundSport Headphones,1,99.99,11/29/19 15:42,"663 Jefferson St, Los Angeles, CA 90001" +294323,Lightning Charging Cable,1,14.95,11/05/19 22:55,"463 Center St, Atlanta, GA 30301" +294324,Bose SoundSport Headphones,1,99.99,11/24/19 16:03,"596 South St, Los Angeles, CA 90001" +294325,Apple Airpods Headphones,1,150,11/07/19 16:23,"789 Jackson St, Los Angeles, CA 90001" +294326,Bose SoundSport Headphones,1,99.99,11/11/19 18:04,"647 Lakeview St, Boston, MA 02215" +294327,Apple Airpods Headphones,1,150,11/03/19 15:04,"882 Wilson St, Austin, TX 73301" +294328,Wired Headphones,1,11.99,11/21/19 23:05,"630 Ridge St, Portland, OR 97035" +294329,Flatscreen TV,1,300,11/29/19 21:09,"657 Highland St, Portland, ME 04101" +294330,34in Ultrawide Monitor,1,379.99,11/13/19 09:20,"445 North St, San Francisco, CA 94016" +294331,Wired Headphones,1,11.99,11/22/19 15:04,"444 6th St, Dallas, TX 75001" +294332,Lightning Charging Cable,1,14.95,11/25/19 19:46,"400 Spruce St, Portland, ME 04101" +294333,USB-C Charging Cable,1,11.95,11/22/19 17:17,"307 6th St, Los Angeles, CA 90001" +294334,AA Batteries (4-pack),1,3.84,11/30/19 11:51,"450 Elm St, Los Angeles, CA 90001" +294335,Lightning Charging Cable,1,14.95,11/08/19 21:52,"475 Center St, Los Angeles, CA 90001" +294336,Vareebadd Phone,1,400,11/06/19 11:17,"507 1st St, Portland, OR 97035" +294337,Apple Airpods Headphones,1,150,11/03/19 12:05,"384 Forest St, San Francisco, CA 94016" +294338,AA Batteries (4-pack),3,3.84,11/03/19 06:37,"498 Dogwood St, Los Angeles, CA 90001" +294339,Apple Airpods Headphones,1,150,11/20/19 10:08,"487 5th St, Atlanta, GA 30301" +294340,AA Batteries (4-pack),1,3.84,11/24/19 05:02,"556 9th St, Boston, MA 02215" +294341,USB-C Charging Cable,1,11.95,11/20/19 21:28,"502 Madison St, Dallas, TX 75001" +294342,Apple Airpods Headphones,1,150,11/07/19 00:39,"386 Chestnut St, Austin, TX 73301" +294343,Lightning Charging Cable,1,14.95,11/19/19 17:41,"812 11th St, New York City, NY 10001" +294344,USB-C Charging Cable,1,11.95,11/14/19 11:46,"967 Spruce St, Dallas, TX 75001" +294345,Bose SoundSport Headphones,1,99.99,11/12/19 12:18,"680 Main St, Portland, OR 97035" +294346,Google Phone,1,600,11/07/19 11:37,"284 Sunset St, Los Angeles, CA 90001" +294347,Apple Airpods Headphones,1,150,11/20/19 18:17,"219 Washington St, Los Angeles, CA 90001" +294348,Wired Headphones,1,11.99,11/19/19 16:23,"972 Lake St, Austin, TX 73301" +294349,Wired Headphones,1,11.99,11/30/19 12:26,"154 Jefferson St, San Francisco, CA 94016" +294350,AA Batteries (4-pack),1,3.84,11/25/19 13:58,"6 Forest St, New York City, NY 10001" +,,,,, +294351,27in FHD Monitor,1,149.99,11/11/19 13:23,"27 Johnson St, Los Angeles, CA 90001" +294352,iPhone,1,700,11/16/19 15:22,"487 7th St, Boston, MA 02215" +294352,AAA Batteries (4-pack),2,2.99,11/16/19 15:22,"487 7th St, Boston, MA 02215" +294353,AA Batteries (4-pack),2,3.84,11/01/19 17:43,"99 Hill St, San Francisco, CA 94016" +294354,Google Phone,1,600,11/16/19 20:18,"234 Ridge St, Atlanta, GA 30301" +294355,Lightning Charging Cable,1,14.95,11/14/19 19:14,"441 Lincoln St, Atlanta, GA 30301" +294356,AA Batteries (4-pack),1,3.84,11/18/19 19:37,"977 Lincoln St, Dallas, TX 75001" +294357,Macbook Pro Laptop,1,1700,11/17/19 17:11,"431 Walnut St, New York City, NY 10001" +294358,Apple Airpods Headphones,1,150,11/04/19 22:50,"87 9th St, New York City, NY 10001" +294359,Wired Headphones,1,11.99,11/14/19 17:14,"851 Church St, Atlanta, GA 30301" +294360,Apple Airpods Headphones,1,150,11/03/19 16:58,"829 Cherry St, Atlanta, GA 30301" +294361,Google Phone,1,600,11/30/19 07:38,"791 Willow St, Austin, TX 73301" +294361,USB-C Charging Cable,1,11.95,11/30/19 07:38,"791 Willow St, Austin, TX 73301" +294362,Wired Headphones,1,11.99,11/08/19 16:59,"125 Chestnut St, Portland, OR 97035" +294363,Wired Headphones,1,11.99,11/10/19 17:20,"438 11th St, Los Angeles, CA 90001" +294364,Apple Airpods Headphones,1,150,11/22/19 09:12,"691 North St, Seattle, WA 98101" +294365,Lightning Charging Cable,1,14.95,11/29/19 15:01,"450 5th St, San Francisco, CA 94016" +294366,Lightning Charging Cable,1,14.95,11/13/19 07:27,"486 4th St, Portland, OR 97035" +294367,Apple Airpods Headphones,1,150,11/05/19 06:09,"889 7th St, Atlanta, GA 30301" +294368,27in FHD Monitor,1,149.99,11/26/19 07:23,"698 14th St, San Francisco, CA 94016" +294368,USB-C Charging Cable,1,11.95,11/26/19 07:23,"698 14th St, San Francisco, CA 94016" +294369,Apple Airpods Headphones,1,150,11/30/19 12:13,"652 Washington St, San Francisco, CA 94016" +294370,USB-C Charging Cable,1,11.95,11/09/19 16:35,"443 Spruce St, Portland, OR 97035" +294371,Apple Airpods Headphones,1,150,11/23/19 13:22,"160 Wilson St, San Francisco, CA 94016" +294371,Bose SoundSport Headphones,1,99.99,11/23/19 13:22,"160 Wilson St, San Francisco, CA 94016" +294372,AAA Batteries (4-pack),1,2.99,11/15/19 13:18,"767 Hill St, Los Angeles, CA 90001" +294373,Lightning Charging Cable,1,14.95,11/14/19 19:30,"437 Lake St, New York City, NY 10001" +294374,Wired Headphones,1,11.99,11/14/19 06:32,"387 7th St, Los Angeles, CA 90001" +294375,27in 4K Gaming Monitor,1,389.99,11/29/19 23:53,"300 Hill St, San Francisco, CA 94016" +294376,AAA Batteries (4-pack),1,2.99,11/24/19 23:24,"922 Maple St, San Francisco, CA 94016" +294377,Bose SoundSport Headphones,1,99.99,11/10/19 20:59,"151 Lakeview St, Los Angeles, CA 90001" +294378,Lightning Charging Cable,1,14.95,11/10/19 08:33,"780 12th St, Portland, OR 97035" +294379,AA Batteries (4-pack),1,3.84,11/20/19 09:37,"400 1st St, Seattle, WA 98101" +294380,Wired Headphones,1,11.99,11/27/19 16:31,"568 Willow St, Seattle, WA 98101" +294381,34in Ultrawide Monitor,1,379.99,11/16/19 13:50,"63 Lakeview St, Atlanta, GA 30301" +294382,Lightning Charging Cable,1,14.95,11/21/19 09:04,"893 Ridge St, Atlanta, GA 30301" +294383,Apple Airpods Headphones,1,150,11/17/19 18:14,"321 10th St, Boston, MA 02215" +294384,Wired Headphones,1,11.99,11/24/19 22:17,"460 Wilson St, Los Angeles, CA 90001" +294385,USB-C Charging Cable,1,11.95,11/15/19 19:14,"439 North St, Los Angeles, CA 90001" +294386,Wired Headphones,1,11.99,11/06/19 06:08,"932 South St, Los Angeles, CA 90001" +294387,Bose SoundSport Headphones,1,99.99,11/03/19 20:31,"307 Johnson St, San Francisco, CA 94016" +294388,AAA Batteries (4-pack),1,2.99,11/22/19 22:50,"230 Adams St, Los Angeles, CA 90001" +294389,Lightning Charging Cable,1,14.95,11/24/19 19:09,"909 6th St, Portland, ME 04101" +294390,Bose SoundSport Headphones,1,99.99,11/14/19 21:04,"992 Johnson St, Seattle, WA 98101" +294391,Google Phone,1,600,11/12/19 07:58,"459 Elm St, Seattle, WA 98101" +294392,AA Batteries (4-pack),1,3.84,11/14/19 20:52,"409 Dogwood St, Seattle, WA 98101" +294393,Macbook Pro Laptop,1,1700,11/13/19 08:41,"660 14th St, Los Angeles, CA 90001" +294394,34in Ultrawide Monitor,1,379.99,11/09/19 23:38,"752 River St, Dallas, TX 75001" +294395,USB-C Charging Cable,1,11.95,11/13/19 11:06,"767 Jackson St, Los Angeles, CA 90001" +294396,Apple Airpods Headphones,1,150,11/24/19 09:30,"189 1st St, Los Angeles, CA 90001" +294397,ThinkPad Laptop,1,999.99,11/07/19 18:59,"945 5th St, Los Angeles, CA 90001" +294398,Lightning Charging Cable,1,14.95,11/26/19 08:46,"957 Madison St, San Francisco, CA 94016" +294399,Bose SoundSport Headphones,1,99.99,11/06/19 16:59,"178 Church St, Los Angeles, CA 90001" +294400,Wired Headphones,1,11.99,11/12/19 22:19,"949 14th St, Portland, ME 04101" +294401,Wired Headphones,1,11.99,11/24/19 19:33,"493 Meadow St, Portland, OR 97035" +294402,Apple Airpods Headphones,1,150,11/26/19 02:58,"391 11th St, San Francisco, CA 94016" +294403,ThinkPad Laptop,1,999.99,11/22/19 23:02,"849 Lakeview St, Los Angeles, CA 90001" +294404,USB-C Charging Cable,1,11.95,11/16/19 14:18,"234 Hickory St, San Francisco, CA 94016" +294405,Lightning Charging Cable,1,14.95,11/19/19 14:18,"627 Meadow St, Boston, MA 02215" +294406,AA Batteries (4-pack),1,3.84,11/29/19 17:55,"653 Maple St, San Francisco, CA 94016" +294407,20in Monitor,1,109.99,11/10/19 08:08,"505 Willow St, Boston, MA 02215" +294408,iPhone,1,700,11/01/19 17:59,"269 Elm St, New York City, NY 10001" +294408,Lightning Charging Cable,1,14.95,11/01/19 17:59,"269 Elm St, New York City, NY 10001" +294409,AAA Batteries (4-pack),2,2.99,11/05/19 09:30,"405 6th St, New York City, NY 10001" +294410,USB-C Charging Cable,1,11.95,11/04/19 12:20,"547 Cherry St, Los Angeles, CA 90001" +294411,AAA Batteries (4-pack),1,2.99,11/21/19 22:41,"650 Lake St, Dallas, TX 75001" +294412,Wired Headphones,1,11.99,11/17/19 18:17,"446 8th St, Austin, TX 73301" +294413,27in FHD Monitor,1,149.99,11/22/19 05:24,"879 Cherry St, Portland, OR 97035" +294414,USB-C Charging Cable,1,11.95,11/29/19 21:34,"151 Ridge St, Dallas, TX 75001" +294415,AA Batteries (4-pack),1,3.84,11/24/19 22:18,"697 Willow St, Portland, OR 97035" +294416,USB-C Charging Cable,1,11.95,11/01/19 17:45,"341 10th St, San Francisco, CA 94016" +294417,Wired Headphones,1,11.99,11/17/19 08:41,"926 Spruce St, Austin, TX 73301" +294418,20in Monitor,1,109.99,11/20/19 08:14,"32 10th St, Los Angeles, CA 90001" +294418,34in Ultrawide Monitor,1,379.99,11/20/19 08:14,"32 10th St, Los Angeles, CA 90001" +294419,Apple Airpods Headphones,1,150,11/08/19 05:51,"125 Sunset St, Los Angeles, CA 90001" +294420,Lightning Charging Cable,1,14.95,11/15/19 00:46,"482 Hickory St, Seattle, WA 98101" +294421,27in FHD Monitor,1,149.99,11/24/19 21:07,"775 Pine St, Portland, OR 97035" +294422,AAA Batteries (4-pack),1,2.99,11/20/19 19:54,"820 Chestnut St, Seattle, WA 98101" +294423,AA Batteries (4-pack),2,3.84,11/09/19 21:27,"633 11th St, San Francisco, CA 94016" +294423,27in FHD Monitor,1,149.99,11/09/19 21:27,"633 11th St, San Francisco, CA 94016" +294424,USB-C Charging Cable,1,11.95,11/21/19 22:45,"302 13th St, Seattle, WA 98101" +294425,AAA Batteries (4-pack),1,2.99,11/15/19 20:48,"680 Walnut St, Los Angeles, CA 90001" +294426,Bose SoundSport Headphones,1,99.99,11/23/19 18:54,"538 Main St, San Francisco, CA 94016" +294427,AA Batteries (4-pack),1,3.84,11/16/19 17:21,"317 Johnson St, Atlanta, GA 30301" +294428,USB-C Charging Cable,1,11.95,11/03/19 12:46,"88 North St, Dallas, TX 75001" +294429,AA Batteries (4-pack),1,3.84,11/02/19 11:15,"277 Spruce St, Los Angeles, CA 90001" +294430,Wired Headphones,1,11.99,11/26/19 10:21,"669 13th St, San Francisco, CA 94016" +294431,27in 4K Gaming Monitor,1,389.99,11/05/19 11:41,"6 Washington St, New York City, NY 10001" +294432,Lightning Charging Cable,1,14.95,11/19/19 12:45,"563 Chestnut St, San Francisco, CA 94016" +294433,AAA Batteries (4-pack),1,2.99,11/07/19 14:19,"360 South St, Austin, TX 73301" +294434,USB-C Charging Cable,1,11.95,11/05/19 17:56,"79 Chestnut St, Seattle, WA 98101" +294435,Bose SoundSport Headphones,1,99.99,11/09/19 23:35,"913 Hickory St, San Francisco, CA 94016" +294436,Lightning Charging Cable,1,14.95,11/21/19 10:36,"363 Lakeview St, San Francisco, CA 94016" +294437,USB-C Charging Cable,1,11.95,11/26/19 22:28,"615 2nd St, San Francisco, CA 94016" +294438,20in Monitor,1,109.99,11/08/19 00:41,"898 10th St, Portland, ME 04101" +294439,AA Batteries (4-pack),1,3.84,11/20/19 21:36,"663 Elm St, Boston, MA 02215" +294440,AA Batteries (4-pack),1,3.84,11/01/19 10:02,"148 Hickory St, Los Angeles, CA 90001" +294441,Lightning Charging Cable,1,14.95,11/18/19 18:34,"362 River St, Los Angeles, CA 90001" +294442,USB-C Charging Cable,1,11.95,11/15/19 10:24,"791 Forest St, San Francisco, CA 94016" +294443,USB-C Charging Cable,1,11.95,11/15/19 13:31,"707 10th St, Los Angeles, CA 90001" +294444,Flatscreen TV,1,300,11/15/19 15:28,"125 Jefferson St, Dallas, TX 75001" +294445,Wired Headphones,1,11.99,11/06/19 17:43,"96 Elm St, Atlanta, GA 30301" +294446,34in Ultrawide Monitor,1,379.99,11/13/19 12:05,"404 Lakeview St, Boston, MA 02215" +294447,AA Batteries (4-pack),1,3.84,11/23/19 19:28,"596 Church St, Los Angeles, CA 90001" +294448,Apple Airpods Headphones,1,150,11/07/19 21:26,"673 Main St, San Francisco, CA 94016" +294449,Apple Airpods Headphones,1,150,11/02/19 11:37,"541 13th St, New York City, NY 10001" +294450,USB-C Charging Cable,1,11.95,11/18/19 16:13,"150 Hill St, Austin, TX 73301" +294451,Lightning Charging Cable,1,14.95,11/13/19 20:34,"86 Adams St, Los Angeles, CA 90001" +294452,AAA Batteries (4-pack),1,2.99,11/29/19 11:14,"295 South St, San Francisco, CA 94016" +294453,USB-C Charging Cable,1,11.95,11/14/19 21:14,"777 Sunset St, Boston, MA 02215" +294454,USB-C Charging Cable,1,11.95,11/26/19 11:34,"944 4th St, Boston, MA 02215" +294455,AA Batteries (4-pack),2,3.84,11/13/19 22:43,"639 11th St, Boston, MA 02215" +294456,Bose SoundSport Headphones,1,99.99,11/10/19 12:11,"885 Dogwood St, San Francisco, CA 94016" +294457,27in 4K Gaming Monitor,1,389.99,11/13/19 09:45,"154 5th St, Boston, MA 02215" +294458,iPhone,1,700,11/30/19 12:29,"249 2nd St, Seattle, WA 98101" +294459,Bose SoundSport Headphones,1,99.99,11/12/19 10:08,"834 Center St, Atlanta, GA 30301" +294460,Wired Headphones,1,11.99,11/15/19 11:31,"38 Church St, San Francisco, CA 94016" +294461,Wired Headphones,1,11.99,11/30/19 21:09,"667 Washington St, Dallas, TX 75001" +294462,Bose SoundSport Headphones,1,99.99,11/20/19 10:47,"839 Lake St, New York City, NY 10001" +294463,Wired Headphones,1,11.99,11/25/19 16:31,"334 Elm St, Dallas, TX 75001" +294464,Wired Headphones,1,11.99,11/12/19 21:44,"647 Hill St, New York City, NY 10001" +294465,34in Ultrawide Monitor,1,379.99,11/30/19 15:02,"425 Adams St, Los Angeles, CA 90001" +294466,Apple Airpods Headphones,1,150,11/11/19 14:43,"83 Lincoln St, San Francisco, CA 94016" +294467,Bose SoundSport Headphones,1,99.99,11/22/19 15:04,"259 Washington St, San Francisco, CA 94016" +294468,ThinkPad Laptop,1,999.99,11/07/19 14:29,"395 1st St, Atlanta, GA 30301" +294469,Bose SoundSport Headphones,1,99.99,11/20/19 12:15,"511 Hill St, Los Angeles, CA 90001" +294470,Lightning Charging Cable,1,14.95,11/10/19 13:35,"211 Spruce St, Boston, MA 02215" +294471,Wired Headphones,1,11.99,11/06/19 18:35,"98 11th St, San Francisco, CA 94016" +294472,Google Phone,1,600,11/18/19 19:56,"369 4th St, Dallas, TX 75001" +294473,USB-C Charging Cable,1,11.95,11/14/19 01:26,"795 Washington St, Austin, TX 73301" +294474,ThinkPad Laptop,1,999.99,11/08/19 10:09,"997 Spruce St, Dallas, TX 75001" +294474,Apple Airpods Headphones,1,150,11/08/19 10:09,"997 Spruce St, Dallas, TX 75001" +294475,USB-C Charging Cable,1,11.95,11/04/19 09:45,"910 Hickory St, Boston, MA 02215" +294476,20in Monitor,1,109.99,11/22/19 22:25,"462 Wilson St, Los Angeles, CA 90001" +294477,Bose SoundSport Headphones,1,99.99,11/02/19 17:02,"654 Forest St, Boston, MA 02215" +294478,AA Batteries (4-pack),2,3.84,11/12/19 12:35,"414 2nd St, Austin, TX 73301" +294479,34in Ultrawide Monitor,1,379.99,11/09/19 17:53,"55 Hill St, Boston, MA 02215" +294480,34in Ultrawide Monitor,1,379.99,11/11/19 20:02,"105 12th St, San Francisco, CA 94016" +294481,iPhone,1,700,11/24/19 22:56,"345 Cherry St, Los Angeles, CA 90001" +294482,AAA Batteries (4-pack),1,2.99,11/25/19 16:46,"514 2nd St, Los Angeles, CA 90001" +294483,Wired Headphones,1,11.99,11/29/19 13:03,"151 Walnut St, Portland, ME 04101" +294484,27in FHD Monitor,1,149.99,11/29/19 11:29,"443 Jefferson St, Dallas, TX 75001" +294485,34in Ultrawide Monitor,1,379.99,11/14/19 17:21,"220 Dogwood St, Atlanta, GA 30301" +294486,27in 4K Gaming Monitor,1,389.99,11/06/19 18:36,"76 10th St, Los Angeles, CA 90001" +294487,Lightning Charging Cable,1,14.95,11/04/19 22:40,"443 Center St, Atlanta, GA 30301" +294488,Wired Headphones,1,11.99,11/21/19 12:01,"389 Highland St, Austin, TX 73301" +294489,Lightning Charging Cable,1,14.95,11/12/19 11:32,"948 Ridge St, San Francisco, CA 94016" +294490,Wired Headphones,1,11.99,11/10/19 11:39,"180 4th St, New York City, NY 10001" +294491,AA Batteries (4-pack),1,3.84,11/05/19 12:58,"942 Ridge St, Portland, OR 97035" +294492,AAA Batteries (4-pack),1,2.99,11/06/19 11:21,"672 6th St, San Francisco, CA 94016" +294493,USB-C Charging Cable,1,11.95,11/12/19 22:50,"218 Madison St, Portland, OR 97035" +294494,20in Monitor,1,109.99,11/07/19 18:41,"189 Johnson St, Boston, MA 02215" +294495,AAA Batteries (4-pack),2,2.99,11/08/19 08:13,"68 Elm St, San Francisco, CA 94016" +294496,34in Ultrawide Monitor,1,379.99,11/04/19 18:39,"809 10th St, Seattle, WA 98101" +294497,27in 4K Gaming Monitor,1,389.99,11/03/19 21:28,"655 11th St, Portland, OR 97035" +294498,Google Phone,1,600,11/13/19 10:40,"776 Lincoln St, Austin, TX 73301" +294499,Macbook Pro Laptop,1,1700,11/22/19 18:15,"132 5th St, Dallas, TX 75001" +294500,AAA Batteries (4-pack),1,2.99,11/05/19 21:19,"943 Forest St, San Francisco, CA 94016" +294501,27in FHD Monitor,1,149.99,11/02/19 18:51,"263 Park St, Los Angeles, CA 90001" +294502,Wired Headphones,1,11.99,11/16/19 21:01,"459 Washington St, San Francisco, CA 94016" +294503,27in 4K Gaming Monitor,1,389.99,11/18/19 17:59,"171 Meadow St, Los Angeles, CA 90001" +294504,AA Batteries (4-pack),1,3.84,11/08/19 12:29,"812 12th St, Dallas, TX 75001" +294505,27in 4K Gaming Monitor,1,389.99,11/06/19 08:33,"835 Cherry St, San Francisco, CA 94016" +294506,AA Batteries (4-pack),1,3.84,11/19/19 09:53,"905 West St, Dallas, TX 75001" +294507,USB-C Charging Cable,1,11.95,11/25/19 21:56,"997 7th St, Los Angeles, CA 90001" +294508,USB-C Charging Cable,1,11.95,11/20/19 17:10,"230 12th St, New York City, NY 10001" +294509,Google Phone,1,600,11/06/19 11:09,"370 West St, Seattle, WA 98101" +294510,USB-C Charging Cable,1,11.95,11/04/19 12:27,"226 8th St, Seattle, WA 98101" +294511,AAA Batteries (4-pack),1,2.99,11/12/19 19:33,"516 Center St, Seattle, WA 98101" +294512,Apple Airpods Headphones,1,150,11/17/19 12:47,"669 Washington St, Atlanta, GA 30301" +294513,Macbook Pro Laptop,1,1700,11/14/19 16:46,"656 Madison St, San Francisco, CA 94016" +294514,Bose SoundSport Headphones,1,99.99,11/19/19 22:24,"166 Washington St, Dallas, TX 75001" +294515,USB-C Charging Cable,1,11.95,11/19/19 21:00,"182 5th St, Los Angeles, CA 90001" +294516,Lightning Charging Cable,1,14.95,11/20/19 18:27,"277 Main St, New York City, NY 10001" +294516,Lightning Charging Cable,1,14.95,11/20/19 18:27,"277 Main St, New York City, NY 10001" +294517,Lightning Charging Cable,1,14.95,11/05/19 13:01,"402 Lake St, New York City, NY 10001" +294518,34in Ultrawide Monitor,1,379.99,11/21/19 10:20,"348 Spruce St, Los Angeles, CA 90001" +294519,Macbook Pro Laptop,1,1700,11/10/19 19:26,"423 Park St, Boston, MA 02215" +294520,Bose SoundSport Headphones,1,99.99,11/09/19 18:50,"465 Jackson St, San Francisco, CA 94016" +294521,USB-C Charging Cable,1,11.95,11/30/19 11:23,"768 Jefferson St, San Francisco, CA 94016" +294522,Lightning Charging Cable,1,14.95,11/23/19 10:17,"399 Meadow St, San Francisco, CA 94016" +294523,AAA Batteries (4-pack),1,2.99,11/03/19 11:53,"847 North St, Boston, MA 02215" +294524,Bose SoundSport Headphones,1,99.99,11/25/19 14:58,"172 Sunset St, Dallas, TX 75001" +294525,Apple Airpods Headphones,1,150,11/18/19 21:23,"899 11th St, Dallas, TX 75001" +294526,USB-C Charging Cable,1,11.95,11/07/19 16:42,"104 River St, Los Angeles, CA 90001" +294527,34in Ultrawide Monitor,1,379.99,11/24/19 08:50,"260 Wilson St, Dallas, TX 75001" +294528,34in Ultrawide Monitor,1,379.99,11/11/19 16:16,"68 Ridge St, San Francisco, CA 94016" +294529,ThinkPad Laptop,1,999.99,11/18/19 01:01,"978 13th St, Los Angeles, CA 90001" +294530,Wired Headphones,1,11.99,11/29/19 17:47,"106 North St, Los Angeles, CA 90001" +294531,Apple Airpods Headphones,1,150,11/28/19 17:52,"174 Adams St, San Francisco, CA 94016" +294532,AAA Batteries (4-pack),2,2.99,11/17/19 11:56,"221 Madison St, Los Angeles, CA 90001" +294533,Bose SoundSport Headphones,2,99.99,11/08/19 19:21,"367 Main St, Seattle, WA 98101" +294534,AA Batteries (4-pack),2,3.84,11/03/19 11:35,"954 Forest St, San Francisco, CA 94016" +294535,Lightning Charging Cable,1,14.95,11/09/19 18:43,"417 Jefferson St, Seattle, WA 98101" +294536,iPhone,1,700,11/23/19 12:22,"583 11th St, Seattle, WA 98101" +294537,Lightning Charging Cable,1,14.95,11/14/19 08:35,"411 South St, New York City, NY 10001" +294538,Apple Airpods Headphones,2,150,11/26/19 12:09,"690 Center St, San Francisco, CA 94016" +294539,Apple Airpods Headphones,1,150,11/14/19 11:20,"619 2nd St, Los Angeles, CA 90001" +294540,Bose SoundSport Headphones,1,99.99,11/01/19 02:18,"323 Lakeview St, New York City, NY 10001" +294541,27in FHD Monitor,1,149.99,11/14/19 01:52,"978 Highland St, Boston, MA 02215" +294542,Lightning Charging Cable,1,14.95,11/19/19 01:54,"850 Chestnut St, Boston, MA 02215" +294543,AA Batteries (4-pack),1,3.84,11/01/19 16:58,"736 Willow St, Boston, MA 02215" +294544,iPhone,1,700,11/02/19 19:41,"678 4th St, New York City, NY 10001" +294545,Lightning Charging Cable,1,14.95,11/23/19 00:34,"882 Sunset St, New York City, NY 10001" +294546,USB-C Charging Cable,1,11.95,11/26/19 05:53,"130 Walnut St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +294547,iPhone,1,700,11/10/19 18:33,"709 West St, Los Angeles, CA 90001" +294547,Lightning Charging Cable,1,14.95,11/10/19 18:33,"709 West St, Los Angeles, CA 90001" +294548,Lightning Charging Cable,1,14.95,11/22/19 20:50,"935 6th St, Atlanta, GA 30301" +294549,Lightning Charging Cable,1,14.95,11/15/19 14:22,"169 Jackson St, New York City, NY 10001" +294550,AA Batteries (4-pack),2,3.84,11/20/19 18:19,"636 Lakeview St, Los Angeles, CA 90001" +294551,27in 4K Gaming Monitor,1,389.99,11/08/19 12:30,"795 Cherry St, San Francisco, CA 94016" +294552,AA Batteries (4-pack),1,3.84,11/12/19 16:48,"951 8th St, Dallas, TX 75001" +294553,Lightning Charging Cable,2,14.95,11/25/19 20:24,"960 Church St, Los Angeles, CA 90001" +,,,,, +294554,Wired Headphones,1,11.99,11/18/19 20:48,"394 Wilson St, Boston, MA 02215" +294555,27in FHD Monitor,1,149.99,11/27/19 00:21,"203 4th St, New York City, NY 10001" +294556,AA Batteries (4-pack),1,3.84,11/29/19 19:46,"270 Forest St, Atlanta, GA 30301" +294557,USB-C Charging Cable,1,11.95,11/19/19 09:27,"771 Center St, Dallas, TX 75001" +294558,iPhone,1,700,11/01/19 15:24,"401 10th St, San Francisco, CA 94016" +294558,Lightning Charging Cable,1,14.95,11/01/19 15:24,"401 10th St, San Francisco, CA 94016" +294558,Wired Headphones,1,11.99,11/01/19 15:24,"401 10th St, San Francisco, CA 94016" +294559,27in FHD Monitor,1,149.99,11/18/19 13:58,"697 8th St, New York City, NY 10001" +294560,AA Batteries (4-pack),1,3.84,11/09/19 20:06,"670 West St, Portland, OR 97035" +294561,ThinkPad Laptop,1,999.99,11/06/19 20:28,"614 Lincoln St, Dallas, TX 75001" +294562,Apple Airpods Headphones,1,150,11/05/19 17:27,"495 Jackson St, Los Angeles, CA 90001" +294563,AA Batteries (4-pack),1,3.84,11/17/19 11:32,"460 South St, New York City, NY 10001" +294564,AAA Batteries (4-pack),1,2.99,11/30/19 07:03,"658 Chestnut St, San Francisco, CA 94016" +294565,Bose SoundSport Headphones,1,99.99,11/10/19 18:59,"285 Chestnut St, Seattle, WA 98101" +294566,Macbook Pro Laptop,1,1700,11/20/19 11:43,"424 Church St, Boston, MA 02215" +294567,USB-C Charging Cable,1,11.95,11/28/19 15:29,"205 Washington St, New York City, NY 10001" +294568,Lightning Charging Cable,1,14.95,11/19/19 12:06,"942 Cherry St, Los Angeles, CA 90001" +294569,AAA Batteries (4-pack),1,2.99,11/08/19 19:04,"236 South St, San Francisco, CA 94016" +294570,27in FHD Monitor,1,149.99,11/15/19 16:04,"831 Jackson St, San Francisco, CA 94016" +294571,AAA Batteries (4-pack),3,2.99,11/16/19 14:36,"433 West St, Portland, OR 97035" +294572,Apple Airpods Headphones,1,150,11/14/19 17:43,"206 Park St, San Francisco, CA 94016" +294573,Bose SoundSport Headphones,1,99.99,11/05/19 20:41,"866 Hickory St, Atlanta, GA 30301" +294574,Bose SoundSport Headphones,1,99.99,11/16/19 16:11,"637 Lakeview St, Los Angeles, CA 90001" +294575,Bose SoundSport Headphones,1,99.99,11/30/19 16:07,"968 Madison St, San Francisco, CA 94016" +294576,USB-C Charging Cable,1,11.95,11/26/19 14:01,"513 Elm St, Dallas, TX 75001" +294577,Lightning Charging Cable,1,14.95,11/22/19 18:07,"260 Sunset St, Los Angeles, CA 90001" +294578,Lightning Charging Cable,1,14.95,11/26/19 17:02,"514 Meadow St, Los Angeles, CA 90001" +294579,Apple Airpods Headphones,1,150,11/10/19 13:56,"420 Sunset St, San Francisco, CA 94016" +294580,AAA Batteries (4-pack),1,2.99,11/18/19 18:03,"18 Pine St, Atlanta, GA 30301" +294581,Lightning Charging Cable,1,14.95,11/18/19 12:02,"428 Lake St, Los Angeles, CA 90001" +294582,20in Monitor,1,109.99,11/22/19 14:32,"214 South St, San Francisco, CA 94016" +294583,Wired Headphones,1,11.99,11/09/19 08:28,"300 Johnson St, San Francisco, CA 94016" +294584,Vareebadd Phone,1,400,11/25/19 12:41,"740 4th St, Boston, MA 02215" +294585,AAA Batteries (4-pack),1,2.99,11/05/19 13:27,"253 7th St, Boston, MA 02215" +294586,AA Batteries (4-pack),1,3.84,11/23/19 10:28,"226 2nd St, Los Angeles, CA 90001" +294587,Macbook Pro Laptop,1,1700,11/20/19 19:06,"982 Lakeview St, San Francisco, CA 94016" +294588,AAA Batteries (4-pack),1,2.99,11/22/19 02:30,"779 Lincoln St, Dallas, TX 75001" +294589,USB-C Charging Cable,1,11.95,11/25/19 07:54,"791 Lakeview St, Boston, MA 02215" +294590,20in Monitor,1,109.99,11/07/19 08:07,"488 Maple St, Los Angeles, CA 90001" +294591,27in 4K Gaming Monitor,1,389.99,11/07/19 20:43,"69 Lake St, Los Angeles, CA 90001" +294592,Bose SoundSport Headphones,1,99.99,11/19/19 19:57,"565 Jefferson St, Los Angeles, CA 90001" +294593,Wired Headphones,1,11.99,11/22/19 21:21,"564 Main St, Portland, OR 97035" +294594,AA Batteries (4-pack),1,3.84,11/23/19 13:37,"890 Church St, Los Angeles, CA 90001" +294595,Apple Airpods Headphones,1,150,11/03/19 00:42,"845 Wilson St, New York City, NY 10001" +294596,Flatscreen TV,1,300,11/30/19 12:13,"721 Walnut St, Boston, MA 02215" +294597,Lightning Charging Cable,1,14.95,11/25/19 11:48,"382 Jefferson St, Austin, TX 73301" +294598,AAA Batteries (4-pack),2,2.99,11/12/19 16:07,"986 Spruce St, Boston, MA 02215" +294599,Wired Headphones,1,11.99,11/30/19 20:12,"359 Elm St, New York City, NY 10001" +294600,AA Batteries (4-pack),1,3.84,11/21/19 17:20,"642 Hill St, New York City, NY 10001" +294601,Google Phone,1,600,11/10/19 22:19,"433 Church St, San Francisco, CA 94016" +294602,AAA Batteries (4-pack),1,2.99,11/05/19 13:29,"334 Wilson St, New York City, NY 10001" +294603,iPhone,1,700,11/24/19 12:13,"329 Dogwood St, New York City, NY 10001" +294604,Lightning Charging Cable,1,14.95,11/19/19 00:32,"826 4th St, New York City, NY 10001" +294605,AA Batteries (4-pack),2,3.84,11/06/19 18:11,"85 Maple St, Boston, MA 02215" +294606,AAA Batteries (4-pack),1,2.99,11/24/19 20:02,"55 Hickory St, Seattle, WA 98101" +294607,Bose SoundSport Headphones,1,99.99,11/02/19 19:34,"992 Adams St, New York City, NY 10001" +294608,Google Phone,1,600,11/03/19 22:56,"801 Spruce St, New York City, NY 10001" +294609,Apple Airpods Headphones,1,150,11/08/19 19:08,"858 9th St, Dallas, TX 75001" +294610,Apple Airpods Headphones,1,150,11/16/19 18:32,"216 Dogwood St, Los Angeles, CA 90001" +294611,AA Batteries (4-pack),1,3.84,11/10/19 20:14,"706 Dogwood St, Austin, TX 73301" +294612,ThinkPad Laptop,1,999.99,11/09/19 10:58,"838 Chestnut St, Los Angeles, CA 90001" +294613,Lightning Charging Cable,1,14.95,11/30/19 18:19,"165 Madison St, New York City, NY 10001" +294614,USB-C Charging Cable,1,11.95,11/07/19 16:53,"339 West St, New York City, NY 10001" +294615,Wired Headphones,1,11.99,11/24/19 22:41,"386 9th St, Los Angeles, CA 90001" +294616,Bose SoundSport Headphones,1,99.99,11/25/19 20:11,"836 Main St, Los Angeles, CA 90001" +294617,Macbook Pro Laptop,1,1700,11/24/19 08:48,"999 5th St, Boston, MA 02215" +294618,Lightning Charging Cable,1,14.95,11/13/19 12:33,"558 Cedar St, Austin, TX 73301" +294619,AAA Batteries (4-pack),2,2.99,11/24/19 09:30,"841 Willow St, Los Angeles, CA 90001" +294620,Wired Headphones,1,11.99,11/25/19 16:55,"451 Elm St, Los Angeles, CA 90001" +294621,Wired Headphones,1,11.99,11/22/19 08:35,"448 Highland St, San Francisco, CA 94016" +294622,Apple Airpods Headphones,1,150,11/25/19 13:28,"718 Wilson St, Los Angeles, CA 90001" +294623,AAA Batteries (4-pack),2,2.99,11/12/19 20:03,"896 8th St, Dallas, TX 75001" +294624,iPhone,1,700,11/27/19 17:21,"175 Jefferson St, Los Angeles, CA 90001" +294625,USB-C Charging Cable,1,11.95,11/16/19 15:54,"112 North St, Los Angeles, CA 90001" +294626,Wired Headphones,1,11.99,11/04/19 15:03,"706 Lake St, Atlanta, GA 30301" +294627,iPhone,1,700,11/20/19 20:47,"742 Hickory St, Austin, TX 73301" +294628,34in Ultrawide Monitor,1,379.99,11/15/19 17:49,"831 Wilson St, Los Angeles, CA 90001" +294629,Bose SoundSport Headphones,1,99.99,11/06/19 21:04,"920 Ridge St, Boston, MA 02215" +294630,Lightning Charging Cable,1,14.95,11/10/19 13:19,"285 Spruce St, New York City, NY 10001" +294631,Flatscreen TV,1,300,11/22/19 16:02,"822 Cedar St, New York City, NY 10001" +294632,27in FHD Monitor,1,149.99,11/02/19 12:51,"925 Jefferson St, Los Angeles, CA 90001" +294633,USB-C Charging Cable,1,11.95,11/08/19 18:20,"75 Johnson St, San Francisco, CA 94016" +294634,AA Batteries (4-pack),1,3.84,11/30/19 20:56,"936 Lincoln St, Dallas, TX 75001" +294635,Wired Headphones,1,11.99,11/04/19 22:42,"975 Meadow St, Boston, MA 02215" +294636,Apple Airpods Headphones,1,150,11/18/19 10:30,"604 4th St, Boston, MA 02215" +294637,Apple Airpods Headphones,1,150,11/28/19 11:09,"73 8th St, Seattle, WA 98101" +294638,USB-C Charging Cable,2,11.95,11/18/19 21:31,"75 West St, San Francisco, CA 94016" +294639,AAA Batteries (4-pack),2,2.99,11/08/19 09:06,"643 11th St, Los Angeles, CA 90001" +294640,Macbook Pro Laptop,1,1700,11/09/19 19:41,"392 Jefferson St, Boston, MA 02215" +294641,AAA Batteries (4-pack),1,2.99,11/04/19 23:41,"306 2nd St, Boston, MA 02215" +294642,AA Batteries (4-pack),1,3.84,11/28/19 19:02,"240 Cedar St, Boston, MA 02215" +294643,27in FHD Monitor,1,149.99,11/05/19 20:52,"29 Hill St, San Francisco, CA 94016" +294644,Wired Headphones,1,11.99,11/26/19 17:45,"964 Lincoln St, Los Angeles, CA 90001" +294645,Wired Headphones,1,11.99,11/08/19 17:56,"230 Willow St, New York City, NY 10001" +294646,USB-C Charging Cable,1,11.95,11/15/19 16:11,"409 Cedar St, New York City, NY 10001" +294647,Bose SoundSport Headphones,1,99.99,11/13/19 01:06,"981 Cedar St, Atlanta, GA 30301" +294648,AA Batteries (4-pack),2,3.84,11/29/19 19:25,"563 Maple St, Dallas, TX 75001" +294649,AA Batteries (4-pack),1,3.84,11/15/19 16:13,"115 Cherry St, Atlanta, GA 30301" +294650,Wired Headphones,1,11.99,11/15/19 17:15,"256 Meadow St, Los Angeles, CA 90001" +294651,27in FHD Monitor,1,149.99,11/14/19 11:10,"24 13th St, New York City, NY 10001" +294652,Wired Headphones,1,11.99,11/24/19 19:47,"169 Ridge St, Austin, TX 73301" +294653,Bose SoundSport Headphones,1,99.99,11/13/19 10:30,"917 10th St, Atlanta, GA 30301" +294654,Apple Airpods Headphones,1,150,11/23/19 21:12,"908 4th St, San Francisco, CA 94016" +294655,AAA Batteries (4-pack),1,2.99,11/02/19 10:37,"806 Hickory St, San Francisco, CA 94016" +294656,Lightning Charging Cable,1,14.95,11/04/19 23:00,"529 Walnut St, Atlanta, GA 30301" +294657,AA Batteries (4-pack),1,3.84,11/22/19 21:32,"133 10th St, Boston, MA 02215" +294658,Apple Airpods Headphones,1,150,11/02/19 12:41,"771 11th St, New York City, NY 10001" +294659,AAA Batteries (4-pack),2,2.99,11/07/19 11:08,"669 Jefferson St, San Francisco, CA 94016" +294660,Macbook Pro Laptop,1,1700,11/22/19 14:45,"613 South St, Los Angeles, CA 90001" +294661,USB-C Charging Cable,1,11.95,11/03/19 20:44,"395 Wilson St, Los Angeles, CA 90001" +294662,Apple Airpods Headphones,1,150,11/16/19 10:48,"366 Hill St, Los Angeles, CA 90001" +294663,Apple Airpods Headphones,1,150,11/06/19 11:37,"614 Maple St, Los Angeles, CA 90001" +294664,Lightning Charging Cable,2,14.95,11/18/19 16:37,"482 Spruce St, San Francisco, CA 94016" +294665,Flatscreen TV,1,300,11/15/19 07:32,"300 Jackson St, San Francisco, CA 94016" +294666,AAA Batteries (4-pack),3,2.99,11/11/19 22:49,"725 Wilson St, Seattle, WA 98101" +294667,AAA Batteries (4-pack),2,2.99,11/19/19 19:21,"860 12th St, San Francisco, CA 94016" +294668,Lightning Charging Cable,1,14.95,11/22/19 22:22,"849 1st St, Dallas, TX 75001" +294669,Lightning Charging Cable,1,14.95,11/21/19 21:49,"161 Sunset St, Atlanta, GA 30301" +294670,Macbook Pro Laptop,1,1700,11/27/19 15:48,"514 Ridge St, Atlanta, GA 30301" +294671,Lightning Charging Cable,1,14.95,11/28/19 14:19,"301 2nd St, Boston, MA 02215" +294672,27in 4K Gaming Monitor,1,389.99,11/12/19 20:41,"670 River St, New York City, NY 10001" +294673,USB-C Charging Cable,1,11.95,11/19/19 15:48,"564 Jefferson St, San Francisco, CA 94016" +294674,AAA Batteries (4-pack),1,2.99,11/16/19 07:14,"888 Walnut St, Seattle, WA 98101" +294675,AAA Batteries (4-pack),1,2.99,11/24/19 08:56,"760 Main St, San Francisco, CA 94016" +294676,Apple Airpods Headphones,1,150,11/09/19 08:22,"476 Jefferson St, New York City, NY 10001" +294677,Flatscreen TV,1,300,11/19/19 13:21,"731 Sunset St, Dallas, TX 75001" +294678,27in 4K Gaming Monitor,1,389.99,11/03/19 20:21,"38 Lake St, New York City, NY 10001" +294679,27in 4K Gaming Monitor,1,389.99,11/11/19 11:46,"275 Main St, Boston, MA 02215" +294680,Flatscreen TV,1,300,11/24/19 23:49,"550 Church St, Dallas, TX 75001" +294681,USB-C Charging Cable,1,11.95,11/29/19 15:47,"481 Lakeview St, New York City, NY 10001" +294682,Wired Headphones,1,11.99,11/19/19 21:03,"90 Highland St, Boston, MA 02215" +294683,Macbook Pro Laptop,1,1700,11/17/19 20:29,"799 Pine St, San Francisco, CA 94016" +294684,Apple Airpods Headphones,1,150,11/23/19 12:55,"819 Adams St, Portland, OR 97035" +294685,Google Phone,1,600,11/27/19 01:32,"607 Cherry St, Portland, OR 97035" +294685,USB-C Charging Cable,1,11.95,11/27/19 01:32,"607 Cherry St, Portland, OR 97035" +294685,Wired Headphones,1,11.99,11/27/19 01:32,"607 Cherry St, Portland, OR 97035" +294686,Bose SoundSport Headphones,1,99.99,11/17/19 20:18,"305 Park St, Boston, MA 02215" +294687,Apple Airpods Headphones,1,150,11/25/19 14:10,"621 6th St, Boston, MA 02215" +294688,27in FHD Monitor,1,149.99,11/06/19 19:22,"146 2nd St, Boston, MA 02215" +294689,Macbook Pro Laptop,1,1700,11/02/19 18:39,"317 Highland St, Atlanta, GA 30301" +294690,AAA Batteries (4-pack),1,2.99,11/04/19 22:52,"870 9th St, San Francisco, CA 94016" +294691,AAA Batteries (4-pack),1,2.99,11/05/19 12:13,"424 11th St, Los Angeles, CA 90001" +294692,USB-C Charging Cable,1,11.95,11/14/19 23:03,"822 10th St, Los Angeles, CA 90001" +294692,AA Batteries (4-pack),4,3.84,11/14/19 23:03,"822 10th St, Los Angeles, CA 90001" +294693,AA Batteries (4-pack),2,3.84,11/24/19 11:30,"938 Spruce St, Seattle, WA 98101" +294694,AAA Batteries (4-pack),1,2.99,11/18/19 17:44,"129 Maple St, New York City, NY 10001" +294695,USB-C Charging Cable,1,11.95,11/25/19 11:54,"58 10th St, Boston, MA 02215" +294696,iPhone,1,700,11/28/19 13:15,"286 Sunset St, Portland, OR 97035" +294697,iPhone,1,700,11/08/19 07:43,"319 10th St, New York City, NY 10001" +294698,AA Batteries (4-pack),1,3.84,11/06/19 17:55,"772 5th St, Seattle, WA 98101" +,,,,, +294699,USB-C Charging Cable,1,11.95,11/07/19 19:08,"939 Church St, Boston, MA 02215" +294700,Bose SoundSport Headphones,1,99.99,11/15/19 20:18,"979 Hill St, Austin, TX 73301" +294701,AAA Batteries (4-pack),1,2.99,11/02/19 09:18,"836 10th St, San Francisco, CA 94016" +294702,USB-C Charging Cable,1,11.95,11/02/19 06:00,"329 10th St, San Francisco, CA 94016" +294703,AA Batteries (4-pack),1,3.84,11/07/19 01:26,"180 Elm St, San Francisco, CA 94016" +294704,Lightning Charging Cable,1,14.95,11/18/19 14:08,"77 Hickory St, Portland, OR 97035" +294705,Lightning Charging Cable,1,14.95,11/29/19 09:34,"631 8th St, Atlanta, GA 30301" +294706,Wired Headphones,1,11.99,11/29/19 15:49,"98 14th St, San Francisco, CA 94016" +294707,Google Phone,1,600,11/07/19 14:10,"236 Pine St, San Francisco, CA 94016" +294708,Flatscreen TV,1,300,11/05/19 16:39,"616 Dogwood St, Los Angeles, CA 90001" +294709,Wired Headphones,1,11.99,11/08/19 20:45,"180 Elm St, Los Angeles, CA 90001" +294710,USB-C Charging Cable,1,11.95,11/08/19 22:45,"651 Park St, New York City, NY 10001" +294711,27in FHD Monitor,1,149.99,11/22/19 14:50,"540 South St, Portland, OR 97035" +294712,USB-C Charging Cable,1,11.95,11/18/19 18:59,"205 Hill St, Portland, OR 97035" +294713,USB-C Charging Cable,1,11.95,11/25/19 10:45,"1 Willow St, San Francisco, CA 94016" +294714,Apple Airpods Headphones,1,150,11/19/19 12:09,"408 Willow St, Dallas, TX 75001" +294715,USB-C Charging Cable,1,11.95,11/11/19 13:15,"402 West St, Dallas, TX 75001" +294716,AAA Batteries (4-pack),1,2.99,11/12/19 23:07,"925 11th St, Boston, MA 02215" +294717,Lightning Charging Cable,1,14.95,11/21/19 06:52,"497 4th St, Los Angeles, CA 90001" +294718,AAA Batteries (4-pack),1,2.99,11/03/19 16:30,"848 Jefferson St, Los Angeles, CA 90001" +294719,Wired Headphones,2,11.99,11/28/19 10:08,"734 Meadow St, Los Angeles, CA 90001" +294720,34in Ultrawide Monitor,1,379.99,11/21/19 09:44,"515 Johnson St, Boston, MA 02215" +294721,27in FHD Monitor,1,149.99,11/14/19 11:32,"472 10th St, San Francisco, CA 94016" +294722,iPhone,1,700,11/25/19 21:54,"470 Park St, Los Angeles, CA 90001" +294723,USB-C Charging Cable,1,11.95,11/21/19 22:52,"456 Lake St, New York City, NY 10001" +294724,Wired Headphones,1,11.99,11/18/19 12:07,"19 Willow St, New York City, NY 10001" +294725,USB-C Charging Cable,2,11.95,11/16/19 18:18,"721 Church St, Portland, OR 97035" +294726,AA Batteries (4-pack),2,3.84,11/18/19 07:27,"541 Park St, San Francisco, CA 94016" +294727,ThinkPad Laptop,1,999.99,11/06/19 20:57,"374 Jefferson St, New York City, NY 10001" +294728,Wired Headphones,1,11.99,11/08/19 19:16,"272 14th St, San Francisco, CA 94016" +294729,34in Ultrawide Monitor,1,379.99,11/15/19 22:05,"780 8th St, Dallas, TX 75001" +294730,USB-C Charging Cable,2,11.95,11/21/19 01:40,"567 River St, New York City, NY 10001" +294731,Bose SoundSport Headphones,1,99.99,11/24/19 13:25,"598 Main St, New York City, NY 10001" +294732,USB-C Charging Cable,1,11.95,11/10/19 17:56,"227 Meadow St, San Francisco, CA 94016" +294733,USB-C Charging Cable,1,11.95,11/18/19 14:20,"2 West St, Los Angeles, CA 90001" +294734,USB-C Charging Cable,1,11.95,11/03/19 11:02,"486 6th St, New York City, NY 10001" +294735,34in Ultrawide Monitor,1,379.99,11/10/19 21:45,"542 Sunset St, Boston, MA 02215" +294736,Macbook Pro Laptop,1,1700,11/04/19 20:49,"713 Main St, Portland, OR 97035" +294737,USB-C Charging Cable,1,11.95,11/01/19 11:15,"515 Lakeview St, Los Angeles, CA 90001" +294738,USB-C Charging Cable,1,11.95,11/24/19 13:01,"686 Spruce St, New York City, NY 10001" +294739,USB-C Charging Cable,1,11.95,11/11/19 23:08,"406 Johnson St, San Francisco, CA 94016" +294740,Bose SoundSport Headphones,1,99.99,11/18/19 23:19,"557 Jackson St, San Francisco, CA 94016" +294741,34in Ultrawide Monitor,1,379.99,11/17/19 16:52,"870 13th St, Boston, MA 02215" +294742,Wired Headphones,2,11.99,11/22/19 08:45,"239 Forest St, Seattle, WA 98101" +294743,Flatscreen TV,1,300,11/15/19 06:13,"85 Ridge St, Atlanta, GA 30301" +294744,AA Batteries (4-pack),1,3.84,11/12/19 20:12,"701 1st St, Seattle, WA 98101" +294745,AA Batteries (4-pack),2,3.84,11/02/19 08:16,"487 Spruce St, San Francisco, CA 94016" +294746,Lightning Charging Cable,1,14.95,11/22/19 17:28,"694 Adams St, Seattle, WA 98101" +,,,,, +294747,AAA Batteries (4-pack),1,2.99,11/20/19 18:21,"609 Chestnut St, San Francisco, CA 94016" +294748,Apple Airpods Headphones,1,150,11/27/19 06:57,"490 Spruce St, San Francisco, CA 94016" +294749,USB-C Charging Cable,1,11.95,11/03/19 12:20,"873 6th St, Los Angeles, CA 90001" +294750,Google Phone,1,600,11/14/19 14:39,"337 Maple St, Seattle, WA 98101" +294751,USB-C Charging Cable,1,11.95,11/10/19 18:39,"914 Hill St, Boston, MA 02215" +294752,AAA Batteries (4-pack),1,2.99,11/26/19 10:17,"56 Lincoln St, New York City, NY 10001" +294753,AA Batteries (4-pack),1,3.84,11/11/19 12:17,"143 Walnut St, New York City, NY 10001" +294754,AA Batteries (4-pack),4,3.84,11/24/19 10:29,"101 Park St, Atlanta, GA 30301" +294755,AAA Batteries (4-pack),1,2.99,11/17/19 15:34,"868 Adams St, San Francisco, CA 94016" +294756,Apple Airpods Headphones,1,150,11/22/19 09:48,"257 10th St, Austin, TX 73301" +294757,AA Batteries (4-pack),1,3.84,11/27/19 12:49,"938 14th St, Atlanta, GA 30301" +294758,Apple Airpods Headphones,1,150,11/16/19 21:13,"236 Hickory St, San Francisco, CA 94016" +294759,Vareebadd Phone,1,400,11/21/19 19:16,"999 Lake St, San Francisco, CA 94016" +294760,AAA Batteries (4-pack),1,2.99,11/04/19 18:32,"47 2nd St, San Francisco, CA 94016" +294761,Bose SoundSport Headphones,1,99.99,11/11/19 20:17,"883 13th St, Los Angeles, CA 90001" +294762,AAA Batteries (4-pack),1,2.99,11/15/19 13:16,"267 Madison St, San Francisco, CA 94016" +294763,Lightning Charging Cable,1,14.95,11/14/19 15:20,"501 Lincoln St, Seattle, WA 98101" +294764,AAA Batteries (4-pack),1,2.99,11/13/19 14:05,"559 Jefferson St, Los Angeles, CA 90001" +294765,Wired Headphones,1,11.99,11/28/19 20:43,"674 Madison St, New York City, NY 10001" +294766,Lightning Charging Cable,1,14.95,11/07/19 21:42,"159 13th St, New York City, NY 10001" +294767,Lightning Charging Cable,1,14.95,11/07/19 09:30,"295 6th St, New York City, NY 10001" +294768,Apple Airpods Headphones,1,150,11/05/19 19:21,"307 10th St, San Francisco, CA 94016" +294769,27in 4K Gaming Monitor,1,389.99,11/23/19 15:06,"35 Elm St, San Francisco, CA 94016" +294770,27in FHD Monitor,1,149.99,11/13/19 20:01,"649 Madison St, Austin, TX 73301" +294771,Lightning Charging Cable,1,14.95,11/15/19 20:35,"718 Lincoln St, New York City, NY 10001" +294772,Bose SoundSport Headphones,1,99.99,11/03/19 15:12,"597 6th St, New York City, NY 10001" +294773,27in 4K Gaming Monitor,1,389.99,11/25/19 08:17,"101 Willow St, Atlanta, GA 30301" +294774,AAA Batteries (4-pack),1,2.99,11/13/19 19:07,"188 14th St, New York City, NY 10001" +294775,AAA Batteries (4-pack),1,2.99,11/10/19 13:18,"773 Sunset St, Atlanta, GA 30301" +294776,Bose SoundSport Headphones,1,99.99,11/12/19 10:22,"763 Center St, Portland, OR 97035" +294777,Lightning Charging Cable,1,14.95,11/14/19 20:31,"65 River St, Boston, MA 02215" +294778,iPhone,1,700,11/27/19 07:14,"206 Sunset St, Austin, TX 73301" +294779,20in Monitor,1,109.99,11/19/19 22:29,"732 Park St, Seattle, WA 98101" +294780,AAA Batteries (4-pack),1,2.99,11/29/19 20:45,"630 Hickory St, Austin, TX 73301" +294781,Lightning Charging Cable,1,14.95,11/22/19 15:50,"830 9th St, Portland, OR 97035" +294782,AAA Batteries (4-pack),1,2.99,11/02/19 12:23,"309 Lakeview St, New York City, NY 10001" +294783,Flatscreen TV,1,300,11/08/19 23:18,"170 1st St, New York City, NY 10001" +294784,AA Batteries (4-pack),1,3.84,11/06/19 17:03,"100 Pine St, New York City, NY 10001" +294785,Macbook Pro Laptop,1,1700,11/27/19 06:53,"620 Spruce St, Atlanta, GA 30301" +294786,Apple Airpods Headphones,1,150,11/29/19 09:56,"655 Highland St, San Francisco, CA 94016" +294787,Lightning Charging Cable,1,14.95,11/19/19 15:11,"293 Meadow St, Boston, MA 02215" +294788,20in Monitor,1,109.99,11/23/19 22:35,"284 11th St, Atlanta, GA 30301" +294789,Wired Headphones,1,11.99,11/08/19 21:52,"22 Maple St, Seattle, WA 98101" +294790,Vareebadd Phone,1,400,11/28/19 21:13,"494 North St, Portland, OR 97035" +294791,Lightning Charging Cable,1,14.95,11/14/19 10:34,"599 Elm St, San Francisco, CA 94016" +294792,USB-C Charging Cable,1,11.95,11/06/19 14:22,"879 Meadow St, Portland, OR 97035" +294793,Wired Headphones,1,11.99,11/20/19 20:48,"603 River St, Austin, TX 73301" +294794,USB-C Charging Cable,3,11.95,11/08/19 17:55,"635 Jackson St, San Francisco, CA 94016" +294795,Flatscreen TV,1,300,11/08/19 07:22,"520 Hickory St, San Francisco, CA 94016" +294796,Wired Headphones,1,11.99,11/15/19 11:16,"886 Lakeview St, Seattle, WA 98101" +294797,Macbook Pro Laptop,1,1700,11/07/19 17:45,"597 Adams St, New York City, NY 10001" +294798,Flatscreen TV,1,300,11/07/19 13:44,"638 River St, Atlanta, GA 30301" +294799,Bose SoundSport Headphones,1,99.99,11/18/19 20:21,"12 Church St, New York City, NY 10001" +294800,AAA Batteries (4-pack),2,2.99,11/04/19 14:01,"95 Sunset St, Austin, TX 73301" +294801,Lightning Charging Cable,1,14.95,11/14/19 10:26,"911 Forest St, Atlanta, GA 30301" +294802,Flatscreen TV,1,300,11/03/19 16:52,"160 12th St, Boston, MA 02215" +294803,LG Dryer,1,600.0,11/03/19 14:21,"122 Lincoln St, San Francisco, CA 94016" +294804,ThinkPad Laptop,1,999.99,11/16/19 13:30,"762 14th St, Los Angeles, CA 90001" +294805,Flatscreen TV,1,300,11/22/19 18:31,"882 5th St, Atlanta, GA 30301" +294806,Flatscreen TV,1,300,11/24/19 09:06,"785 Willow St, Los Angeles, CA 90001" +294807,USB-C Charging Cable,1,11.95,11/20/19 18:30,"973 5th St, Boston, MA 02215" +294808,Apple Airpods Headphones,1,150,11/17/19 21:04,"959 Lincoln St, Seattle, WA 98101" +294809,20in Monitor,1,109.99,11/13/19 17:48,"211 9th St, Dallas, TX 75001" +294810,AA Batteries (4-pack),1,3.84,11/28/19 12:14,"325 Meadow St, Dallas, TX 75001" +294811,34in Ultrawide Monitor,1,379.99,11/09/19 11:44,"532 Chestnut St, Atlanta, GA 30301" +294812,Apple Airpods Headphones,1,150,11/28/19 18:02,"645 West St, Los Angeles, CA 90001" +294813,AA Batteries (4-pack),1,3.84,11/22/19 15:06,"540 South St, San Francisco, CA 94016" +294814,Bose SoundSport Headphones,1,99.99,11/20/19 13:53,"144 Highland St, Boston, MA 02215" +294815,Apple Airpods Headphones,1,150,11/30/19 22:51,"487 14th St, Atlanta, GA 30301" +294816,AAA Batteries (4-pack),1,2.99,11/30/19 16:56,"808 2nd St, New York City, NY 10001" +294817,AAA Batteries (4-pack),1,2.99,11/25/19 09:17,"240 Sunset St, Los Angeles, CA 90001" +294818,AA Batteries (4-pack),1,3.84,11/27/19 13:52,"790 Lake St, New York City, NY 10001" +294819,Apple Airpods Headphones,1,150,11/13/19 11:04,"456 South St, San Francisco, CA 94016" +294820,Wired Headphones,1,11.99,11/06/19 15:02,"858 Meadow St, San Francisco, CA 94016" +294821,Google Phone,1,600,11/09/19 21:11,"922 1st St, Atlanta, GA 30301" +294822,Wired Headphones,1,11.99,11/09/19 17:25,"29 Cedar St, Seattle, WA 98101" +294823,AA Batteries (4-pack),1,3.84,11/10/19 17:11,"23 11th St, Los Angeles, CA 90001" +294824,Lightning Charging Cable,1,14.95,11/07/19 20:04,"428 4th St, Portland, OR 97035" +294825,AAA Batteries (4-pack),1,2.99,11/15/19 11:53,"721 Forest St, Atlanta, GA 30301" +294826,AA Batteries (4-pack),1,3.84,11/21/19 19:04,"438 Maple St, San Francisco, CA 94016" +294827,Lightning Charging Cable,1,14.95,11/05/19 13:57,"476 North St, Atlanta, GA 30301" +294828,USB-C Charging Cable,1,11.95,11/07/19 12:45,"424 13th St, New York City, NY 10001" +294829,iPhone,1,700,11/08/19 11:16,"218 Center St, Dallas, TX 75001" +294830,AA Batteries (4-pack),2,3.84,11/12/19 18:24,"732 10th St, New York City, NY 10001" +294831,Wired Headphones,1,11.99,11/03/19 22:19,"130 Lincoln St, New York City, NY 10001" +294832,AA Batteries (4-pack),1,3.84,11/19/19 19:38,"826 Elm St, San Francisco, CA 94016" +294833,AA Batteries (4-pack),1,3.84,11/15/19 17:06,"758 Main St, Los Angeles, CA 90001" +294834,AAA Batteries (4-pack),2,2.99,11/10/19 13:52,"792 4th St, Portland, OR 97035" +294835,AA Batteries (4-pack),1,3.84,11/13/19 10:35,"364 Johnson St, Boston, MA 02215" +294836,USB-C Charging Cable,1,11.95,11/28/19 02:25,"254 Jefferson St, Dallas, TX 75001" +294837,Apple Airpods Headphones,1,150,11/21/19 11:45,"252 5th St, New York City, NY 10001" +294838,Wired Headphones,1,11.99,11/18/19 20:44,"513 Adams St, Seattle, WA 98101" +294839,Wired Headphones,1,11.99,11/14/19 08:22,"216 11th St, New York City, NY 10001" +294840,Apple Airpods Headphones,1,150,11/08/19 19:45,"40 8th St, San Francisco, CA 94016" +294841,USB-C Charging Cable,1,11.95,11/15/19 18:13,"620 8th St, Austin, TX 73301" +294842,iPhone,1,700,11/29/19 10:51,"559 Cherry St, Austin, TX 73301" +294843,USB-C Charging Cable,1,11.95,11/10/19 23:31,"82 Lincoln St, Austin, TX 73301" +294844,Macbook Pro Laptop,1,1700,11/06/19 10:47,"517 2nd St, Los Angeles, CA 90001" +294845,Google Phone,1,600,11/28/19 18:30,"178 North St, Atlanta, GA 30301" +294846,iPhone,1,700,11/16/19 07:06,"873 2nd St, Portland, ME 04101" +294846,Apple Airpods Headphones,1,150,11/16/19 07:06,"873 2nd St, Portland, ME 04101" +294847,USB-C Charging Cable,1,11.95,11/30/19 12:57,"221 Wilson St, Atlanta, GA 30301" +294848,34in Ultrawide Monitor,1,379.99,11/06/19 06:15,"390 10th St, Los Angeles, CA 90001" +294849,ThinkPad Laptop,1,999.99,11/13/19 16:55,"506 Pine St, Austin, TX 73301" +294850,AA Batteries (4-pack),3,3.84,11/12/19 11:32,"650 Main St, Portland, OR 97035" +294851,USB-C Charging Cable,2,11.95,11/14/19 20:55,"520 6th St, Atlanta, GA 30301" +294852,Bose SoundSport Headphones,1,99.99,11/27/19 16:26,"556 Church St, San Francisco, CA 94016" +294853,USB-C Charging Cable,1,11.95,11/07/19 15:01,"38 Lincoln St, New York City, NY 10001" +294854,Lightning Charging Cable,1,14.95,11/20/19 13:47,"187 8th St, New York City, NY 10001" +294855,AA Batteries (4-pack),1,3.84,11/02/19 12:30,"772 Elm St, Dallas, TX 75001" +294856,AAA Batteries (4-pack),2,2.99,11/27/19 10:26,"292 9th St, Los Angeles, CA 90001" +294857,AA Batteries (4-pack),1,3.84,11/28/19 14:00,"423 10th St, New York City, NY 10001" +294858,AAA Batteries (4-pack),1,2.99,11/23/19 16:03,"857 Maple St, San Francisco, CA 94016" +294859,Bose SoundSport Headphones,1,99.99,11/18/19 16:02,"610 8th St, Los Angeles, CA 90001" +294860,Bose SoundSport Headphones,1,99.99,11/04/19 15:49,"63 Meadow St, Los Angeles, CA 90001" +294861,AA Batteries (4-pack),1,3.84,11/23/19 03:14,"828 14th St, Los Angeles, CA 90001" +294862,Flatscreen TV,1,300,11/30/19 19:44,"275 Meadow St, Seattle, WA 98101" +294863,iPhone,1,700,11/03/19 07:48,"182 Church St, New York City, NY 10001" +294864,Bose SoundSport Headphones,1,99.99,11/27/19 15:37,"64 Highland St, Seattle, WA 98101" +294864,27in 4K Gaming Monitor,1,389.99,11/27/19 15:37,"64 Highland St, Seattle, WA 98101" +294865,AAA Batteries (4-pack),1,2.99,11/27/19 23:23,"963 North St, Atlanta, GA 30301" +294866,Lightning Charging Cable,1,14.95,11/16/19 12:06,"689 Meadow St, San Francisco, CA 94016" +294867,34in Ultrawide Monitor,1,379.99,11/10/19 19:58,"658 Cedar St, San Francisco, CA 94016" +294868,USB-C Charging Cable,1,11.95,11/12/19 05:45,"347 1st St, Boston, MA 02215" +294869,Bose SoundSport Headphones,1,99.99,11/15/19 14:02,"317 Walnut St, Dallas, TX 75001" +294870,Lightning Charging Cable,1,14.95,11/17/19 19:56,"850 Maple St, New York City, NY 10001" +294871,Wired Headphones,1,11.99,11/02/19 17:25,"81 Johnson St, Dallas, TX 75001" +294872,Wired Headphones,1,11.99,11/17/19 23:00,"622 Forest St, Seattle, WA 98101" +294873,AAA Batteries (4-pack),1,2.99,11/23/19 06:38,"8 Wilson St, Dallas, TX 75001" +294874,Lightning Charging Cable,1,14.95,11/03/19 16:32,"587 Wilson St, San Francisco, CA 94016" +294875,USB-C Charging Cable,1,11.95,11/17/19 11:31,"932 Wilson St, Los Angeles, CA 90001" +294876,ThinkPad Laptop,1,999.99,11/24/19 10:52,"435 South St, Los Angeles, CA 90001" +294877,AA Batteries (4-pack),1,3.84,11/20/19 01:45,"225 West St, Boston, MA 02215" +294878,Bose SoundSport Headphones,1,99.99,11/26/19 08:26,"76 6th St, Boston, MA 02215" +294879,AA Batteries (4-pack),2,3.84,11/12/19 07:05,"919 13th St, Atlanta, GA 30301" +294880,AAA Batteries (4-pack),1,2.99,11/19/19 19:44,"177 Lakeview St, San Francisco, CA 94016" +294881,Lightning Charging Cable,1,14.95,11/22/19 11:38,"665 4th St, Austin, TX 73301" +294882,34in Ultrawide Monitor,1,379.99,11/21/19 17:12,"354 12th St, San Francisco, CA 94016" +294883,AAA Batteries (4-pack),1,2.99,11/01/19 14:25,"878 Park St, Austin, TX 73301" +294884,AAA Batteries (4-pack),1,2.99,11/13/19 18:40,"377 Sunset St, Atlanta, GA 30301" +294885,Apple Airpods Headphones,1,150,11/18/19 18:11,"118 1st St, Austin, TX 73301" +294886,Wired Headphones,1,11.99,11/04/19 08:53,"385 Park St, Boston, MA 02215" +294887,Google Phone,1,600,11/18/19 18:05,"238 Maple St, Los Angeles, CA 90001" +294888,AA Batteries (4-pack),1,3.84,11/03/19 19:34,"611 12th St, Los Angeles, CA 90001" +294889,27in 4K Gaming Monitor,1,389.99,11/24/19 19:39,"941 7th St, San Francisco, CA 94016" +294890,ThinkPad Laptop,1,999.99,11/18/19 20:44,"613 11th St, San Francisco, CA 94016" +294891,USB-C Charging Cable,1,11.95,11/17/19 20:20,"876 5th St, New York City, NY 10001" +294892,34in Ultrawide Monitor,1,379.99,11/10/19 11:36,"956 Wilson St, Dallas, TX 75001" +294893,Apple Airpods Headphones,1,150,11/11/19 20:36,"927 Dogwood St, New York City, NY 10001" +294894,Google Phone,1,600,11/21/19 11:40,"508 Hickory St, New York City, NY 10001" +294895,AAA Batteries (4-pack),1,2.99,11/07/19 12:56,"935 Willow St, Dallas, TX 75001" +294896,iPhone,1,700,11/02/19 10:47,"505 Lakeview St, Seattle, WA 98101" +294896,Apple Airpods Headphones,1,150,11/02/19 10:47,"505 Lakeview St, Seattle, WA 98101" +294897,Lightning Charging Cable,1,14.95,11/13/19 20:42,"605 10th St, Boston, MA 02215" +294898,Vareebadd Phone,1,400,11/20/19 19:30,"252 7th St, San Francisco, CA 94016" +294899,Bose SoundSport Headphones,1,99.99,11/09/19 10:39,"139 2nd St, Dallas, TX 75001" +294900,Apple Airpods Headphones,1,150,11/17/19 14:24,"972 South St, Seattle, WA 98101" +294901,AA Batteries (4-pack),1,3.84,11/16/19 10:32,"628 2nd St, Boston, MA 02215" +294902,USB-C Charging Cable,1,11.95,11/13/19 15:36,"760 West St, Los Angeles, CA 90001" +294903,Macbook Pro Laptop,1,1700,11/30/19 10:45,"538 Highland St, Austin, TX 73301" +294904,Bose SoundSport Headphones,1,99.99,11/08/19 16:42,"451 Johnson St, San Francisco, CA 94016" +294905,Apple Airpods Headphones,1,150,11/06/19 09:34,"840 Hickory St, Dallas, TX 75001" +294906,Wired Headphones,1,11.99,11/05/19 09:36,"546 Adams St, Los Angeles, CA 90001" +294907,Lightning Charging Cable,1,14.95,11/02/19 16:56,"646 Adams St, San Francisco, CA 94016" +294908,Flatscreen TV,1,300,11/15/19 16:51,"416 8th St, Dallas, TX 75001" +294909,AA Batteries (4-pack),1,3.84,11/13/19 21:15,"637 Chestnut St, Los Angeles, CA 90001" +294910,AA Batteries (4-pack),2,3.84,11/28/19 14:59,"955 Chestnut St, New York City, NY 10001" +294911,USB-C Charging Cable,1,11.95,11/05/19 08:39,"863 13th St, Portland, ME 04101" +294912,Wired Headphones,1,11.99,11/15/19 22:49,"575 Cedar St, Dallas, TX 75001" +294913,Google Phone,1,600,11/27/19 13:23,"433 5th St, Austin, TX 73301" +294914,Apple Airpods Headphones,1,150,11/04/19 19:36,"609 Forest St, Boston, MA 02215" +294915,AAA Batteries (4-pack),2,2.99,11/11/19 12:32,"597 14th St, Boston, MA 02215" +294916,ThinkPad Laptop,1,999.99,11/07/19 16:47,"764 Park St, Atlanta, GA 30301" +294917,Lightning Charging Cable,1,14.95,11/20/19 15:30,"29 South St, Austin, TX 73301" +294918,AAA Batteries (4-pack),1,2.99,11/30/19 18:24,"842 Meadow St, San Francisco, CA 94016" +294919,AAA Batteries (4-pack),1,2.99,11/05/19 20:59,"868 South St, Los Angeles, CA 90001" +294920,Bose SoundSport Headphones,1,99.99,11/16/19 21:31,"616 Cedar St, Los Angeles, CA 90001" +294921,ThinkPad Laptop,1,999.99,11/01/19 23:35,"19 Meadow St, Boston, MA 02215" +294922,AAA Batteries (4-pack),2,2.99,11/19/19 16:34,"59 Dogwood St, Austin, TX 73301" +294923,Wired Headphones,1,11.99,11/02/19 15:27,"387 Cedar St, Los Angeles, CA 90001" +294924,Macbook Pro Laptop,1,1700,11/20/19 14:42,"927 Meadow St, Portland, OR 97035" +294925,iPhone,1,700,11/01/19 16:22,"436 Willow St, Seattle, WA 98101" +294925,Lightning Charging Cable,1,14.95,11/01/19 16:22,"436 Willow St, Seattle, WA 98101" +294926,Macbook Pro Laptop,1,1700,11/28/19 19:54,"521 Pine St, Dallas, TX 75001" +294927,Google Phone,1,600,11/27/19 21:46,"728 Johnson St, Boston, MA 02215" +294928,Wired Headphones,1,11.99,11/30/19 12:48,"868 Church St, Los Angeles, CA 90001" +294929,AA Batteries (4-pack),1,3.84,11/12/19 16:56,"288 Elm St, San Francisco, CA 94016" +294930,Wired Headphones,1,11.99,11/25/19 18:31,"370 Cedar St, Atlanta, GA 30301" +294931,Lightning Charging Cable,1,14.95,11/25/19 10:01,"542 Cedar St, Dallas, TX 75001" +294932,AA Batteries (4-pack),4,3.84,11/01/19 22:33,"605 11th St, Atlanta, GA 30301" +294933,Lightning Charging Cable,1,14.95,11/25/19 18:37,"385 Lakeview St, Boston, MA 02215" +294934,Wired Headphones,1,11.99,11/15/19 20:27,"228 7th St, Portland, ME 04101" +294935,Google Phone,1,600,11/18/19 10:23,"455 Pine St, San Francisco, CA 94016" +294936,Lightning Charging Cable,1,14.95,11/25/19 20:41,"867 9th St, Dallas, TX 75001" +294937,AA Batteries (4-pack),2,3.84,11/22/19 12:03,"665 Madison St, Los Angeles, CA 90001" +294938,27in 4K Gaming Monitor,1,389.99,11/17/19 11:47,"282 Hickory St, Dallas, TX 75001" +294939,Google Phone,1,600,11/27/19 17:38,"30 7th St, Austin, TX 73301" +294940,Google Phone,1,600,11/03/19 17:54,"672 Lakeview St, San Francisco, CA 94016" +294941,Wired Headphones,1,11.99,11/20/19 03:56,"457 Pine St, Portland, OR 97035" +294942,Lightning Charging Cable,1,14.95,11/14/19 18:38,"102 South St, San Francisco, CA 94016" +294943,USB-C Charging Cable,1,11.95,11/13/19 12:44,"318 14th St, New York City, NY 10001" +294944,AA Batteries (4-pack),1,3.84,11/20/19 20:17,"270 Lakeview St, New York City, NY 10001" +294945,Apple Airpods Headphones,1,150,11/04/19 09:36,"590 Park St, San Francisco, CA 94016" +294946,AA Batteries (4-pack),1,3.84,11/14/19 12:54,"36 Forest St, San Francisco, CA 94016" +294947,Bose SoundSport Headphones,1,99.99,11/26/19 03:06,"396 12th St, San Francisco, CA 94016" +294948,Lightning Charging Cable,1,14.95,11/23/19 21:14,"916 10th St, San Francisco, CA 94016" +294949,Bose SoundSport Headphones,1,99.99,11/15/19 13:27,"426 Highland St, Boston, MA 02215" +294950,Macbook Pro Laptop,1,1700,11/21/19 14:31,"826 Cherry St, Los Angeles, CA 90001" +294951,Bose SoundSport Headphones,1,99.99,11/09/19 20:29,"243 Sunset St, Seattle, WA 98101" +294952,Wired Headphones,1,11.99,11/23/19 08:11,"323 13th St, Seattle, WA 98101" +294953,AA Batteries (4-pack),2,3.84,11/22/19 17:23,"775 Dogwood St, Portland, ME 04101" +294954,Wired Headphones,1,11.99,11/06/19 10:52,"441 11th St, New York City, NY 10001" +294955,20in Monitor,1,109.99,11/14/19 23:40,"561 10th St, San Francisco, CA 94016" +294956,27in 4K Gaming Monitor,1,389.99,11/26/19 12:21,"891 Wilson St, San Francisco, CA 94016" +294957,Wired Headphones,1,11.99,11/21/19 22:23,"571 14th St, San Francisco, CA 94016" +294958,27in 4K Gaming Monitor,1,389.99,11/27/19 06:15,"732 Sunset St, New York City, NY 10001" +294959,20in Monitor,1,109.99,11/16/19 18:08,"979 7th St, Austin, TX 73301" +294960,AAA Batteries (4-pack),1,2.99,11/14/19 18:34,"259 Center St, Boston, MA 02215" +294961,Flatscreen TV,1,300,11/01/19 20:58,"678 Lincoln St, Los Angeles, CA 90001" +294962,Lightning Charging Cable,1,14.95,11/28/19 10:27,"560 Hill St, Portland, ME 04101" +294963,Lightning Charging Cable,1,14.95,11/07/19 00:13,"55 10th St, Seattle, WA 98101" +294964,20in Monitor,1,109.99,11/20/19 18:41,"856 Maple St, Atlanta, GA 30301" +294965,USB-C Charging Cable,1,11.95,11/26/19 22:20,"946 13th St, Austin, TX 73301" +294966,27in 4K Gaming Monitor,1,389.99,11/14/19 09:40,"248 Elm St, Boston, MA 02215" +294967,27in FHD Monitor,1,149.99,11/09/19 18:30,"410 Madison St, Dallas, TX 75001" +294968,Wired Headphones,1,11.99,11/09/19 11:20,"605 North St, Boston, MA 02215" +294969,Wired Headphones,2,11.99,11/05/19 15:53,"865 Lakeview St, Atlanta, GA 30301" +294970,Apple Airpods Headphones,1,150,11/22/19 22:25,"38 8th St, Seattle, WA 98101" +294971,AA Batteries (4-pack),1,3.84,11/20/19 06:11,"660 9th St, Boston, MA 02215" +294972,USB-C Charging Cable,1,11.95,11/23/19 00:23,"650 River St, Los Angeles, CA 90001" +294973,AAA Batteries (4-pack),1,2.99,11/26/19 12:37,"159 Pine St, San Francisco, CA 94016" +294973,Bose SoundSport Headphones,1,99.99,11/26/19 12:37,"159 Pine St, San Francisco, CA 94016" +294974,Wired Headphones,1,11.99,11/30/19 15:55,"908 Elm St, Los Angeles, CA 90001" +294975,Vareebadd Phone,1,400,11/27/19 07:07,"807 Lincoln St, Los Angeles, CA 90001" +294975,USB-C Charging Cable,1,11.95,11/27/19 07:07,"807 Lincoln St, Los Angeles, CA 90001" +294975,Wired Headphones,1,11.99,11/27/19 07:07,"807 Lincoln St, Los Angeles, CA 90001" +294976,USB-C Charging Cable,1,11.95,11/18/19 21:38,"942 Hickory St, Los Angeles, CA 90001" +294977,Lightning Charging Cable,1,14.95,11/03/19 09:06,"401 Walnut St, Los Angeles, CA 90001" +294978,USB-C Charging Cable,1,11.95,11/23/19 17:17,"666 Cherry St, Dallas, TX 75001" +294979,Apple Airpods Headphones,1,150,11/06/19 00:15,"364 Wilson St, Dallas, TX 75001" +294980,AA Batteries (4-pack),1,3.84,11/15/19 18:03,"204 1st St, Los Angeles, CA 90001" +294981,Wired Headphones,1,11.99,11/20/19 19:16,"98 12th St, Seattle, WA 98101" +294982,27in 4K Gaming Monitor,1,389.99,11/10/19 09:03,"77 13th St, Dallas, TX 75001" +294983,Bose SoundSport Headphones,1,99.99,11/15/19 01:38,"107 11th St, Los Angeles, CA 90001" +294984,AAA Batteries (4-pack),3,2.99,11/11/19 19:23,"558 8th St, Boston, MA 02215" +294985,Wired Headphones,1,11.99,11/09/19 16:58,"561 Forest St, New York City, NY 10001" +294986,USB-C Charging Cable,1,11.95,11/09/19 11:05,"448 Lincoln St, San Francisco, CA 94016" +294987,Lightning Charging Cable,1,14.95,11/26/19 19:14,"221 12th St, San Francisco, CA 94016" +294988,AAA Batteries (4-pack),1,2.99,11/09/19 03:14,"596 Lake St, Atlanta, GA 30301" +294989,34in Ultrawide Monitor,1,379.99,11/29/19 13:40,"920 Washington St, Portland, OR 97035" +294990,Wired Headphones,1,11.99,11/25/19 13:50,"997 9th St, Austin, TX 73301" +294991,Apple Airpods Headphones,1,150,11/09/19 13:55,"614 West St, Dallas, TX 75001" +294992,AA Batteries (4-pack),1,3.84,11/13/19 17:46,"434 Jackson St, Dallas, TX 75001" +294993,Wired Headphones,1,11.99,11/01/19 20:05,"141 Chestnut St, San Francisco, CA 94016" +294994,Google Phone,1,600,11/08/19 23:30,"133 11th St, Los Angeles, CA 90001" +294995,AAA Batteries (4-pack),3,2.99,11/06/19 17:55,"680 13th St, New York City, NY 10001" +294996,Wired Headphones,1,11.99,11/09/19 22:10,"41 Lakeview St, New York City, NY 10001" +294997,Lightning Charging Cable,1,14.95,11/08/19 10:16,"393 4th St, Boston, MA 02215" +294998,AA Batteries (4-pack),1,3.84,11/12/19 19:03,"353 River St, San Francisco, CA 94016" +294999,Bose SoundSport Headphones,1,99.99,11/17/19 00:35,"485 12th St, San Francisco, CA 94016" +295000,Wired Headphones,1,11.99,11/23/19 19:26,"489 10th St, Seattle, WA 98101" +295001,AAA Batteries (4-pack),3,2.99,11/15/19 15:55,"149 Maple St, San Francisco, CA 94016" +295002,Apple Airpods Headphones,1,150,11/18/19 22:45,"491 North St, Los Angeles, CA 90001" +295003,AAA Batteries (4-pack),1,2.99,11/15/19 13:39,"211 9th St, Los Angeles, CA 90001" +295004,iPhone,1,700,11/27/19 13:36,"23 Jefferson St, New York City, NY 10001" +295005,27in FHD Monitor,1,149.99,11/25/19 10:59,"490 Maple St, Dallas, TX 75001" +295006,Bose SoundSport Headphones,1,99.99,11/30/19 17:58,"352 Jefferson St, San Francisco, CA 94016" +295007,AA Batteries (4-pack),1,3.84,11/05/19 16:04,"327 Willow St, San Francisco, CA 94016" +295008,Google Phone,1,600,11/03/19 01:54,"376 Hickory St, San Francisco, CA 94016" +295008,USB-C Charging Cable,1,11.95,11/03/19 01:54,"376 Hickory St, San Francisco, CA 94016" +295009,20in Monitor,1,109.99,11/08/19 08:48,"642 Hill St, Seattle, WA 98101" +295010,Lightning Charging Cable,1,14.95,11/22/19 12:15,"159 Hickory St, Dallas, TX 75001" +295011,LG Dryer,1,600.0,11/02/19 10:43,"571 Main St, Los Angeles, CA 90001" +295012,ThinkPad Laptop,1,999.99,11/27/19 17:15,"777 6th St, San Francisco, CA 94016" +295013,27in FHD Monitor,1,149.99,11/04/19 09:17,"217 Lake St, Atlanta, GA 30301" +295014,Wired Headphones,1,11.99,11/16/19 15:25,"156 2nd St, Los Angeles, CA 90001" +295015,34in Ultrawide Monitor,1,379.99,11/19/19 21:12,"70 Hill St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +295016,Bose SoundSport Headphones,1,99.99,11/20/19 20:33,"167 2nd St, Portland, OR 97035" +295017,Lightning Charging Cable,1,14.95,11/09/19 21:12,"538 Spruce St, Atlanta, GA 30301" +295018,27in 4K Gaming Monitor,1,389.99,11/25/19 15:33,"766 Hill St, Dallas, TX 75001" +295019,Lightning Charging Cable,1,14.95,11/14/19 23:10,"323 Spruce St, Portland, OR 97035" +295020,Lightning Charging Cable,1,14.95,11/19/19 14:25,"558 Pine St, Portland, OR 97035" +295021,27in 4K Gaming Monitor,1,389.99,11/19/19 11:49,"691 Madison St, New York City, NY 10001" +295022,Wired Headphones,1,11.99,11/07/19 09:42,"648 Elm St, Dallas, TX 75001" +295023,Lightning Charging Cable,1,14.95,11/25/19 00:20,"235 Pine St, Austin, TX 73301" +295024,AA Batteries (4-pack),2,3.84,11/27/19 17:35,"371 Maple St, Portland, OR 97035" +295025,Bose SoundSport Headphones,1,99.99,11/18/19 19:54,"838 Wilson St, Atlanta, GA 30301" +295026,AAA Batteries (4-pack),1,2.99,11/04/19 18:33,"693 Adams St, San Francisco, CA 94016" +295027,USB-C Charging Cable,1,11.95,11/24/19 19:45,"663 13th St, San Francisco, CA 94016" +295028,Bose SoundSport Headphones,1,99.99,11/13/19 20:26,"597 Hill St, San Francisco, CA 94016" +295029,27in FHD Monitor,1,149.99,11/12/19 19:59,"296 Cherry St, Atlanta, GA 30301" +295030,USB-C Charging Cable,1,11.95,11/06/19 20:40,"225 Hickory St, Boston, MA 02215" +295031,Lightning Charging Cable,1,14.95,11/12/19 23:50,"662 13th St, Los Angeles, CA 90001" +295032,Google Phone,1,600,11/04/19 17:45,"614 Cherry St, Atlanta, GA 30301" +295033,Apple Airpods Headphones,1,150,11/25/19 10:20,"823 6th St, Seattle, WA 98101" +295034,AAA Batteries (4-pack),1,2.99,11/17/19 14:23,"533 Washington St, Boston, MA 02215" +295035,Flatscreen TV,1,300,11/15/19 20:12,"617 Forest St, Portland, OR 97035" +295036,Bose SoundSport Headphones,1,99.99,11/17/19 14:25,"233 14th St, New York City, NY 10001" +295037,Bose SoundSport Headphones,1,99.99,11/25/19 15:08,"29 Willow St, Dallas, TX 75001" +295038,Apple Airpods Headphones,1,150,11/29/19 20:56,"758 7th St, Seattle, WA 98101" +295039,AA Batteries (4-pack),2,3.84,11/23/19 12:20,"142 Adams St, Los Angeles, CA 90001" +295040,AAA Batteries (4-pack),1,2.99,11/26/19 20:59,"59 13th St, Austin, TX 73301" +295041,AA Batteries (4-pack),1,3.84,11/14/19 17:15,"965 Pine St, Dallas, TX 75001" +295042,USB-C Charging Cable,1,11.95,11/28/19 18:25,"805 10th St, Portland, OR 97035" +295043,Vareebadd Phone,1,400,11/05/19 15:58,"71 Washington St, Boston, MA 02215" +295044,AA Batteries (4-pack),2,3.84,11/04/19 15:59,"773 13th St, Atlanta, GA 30301" +295045,Lightning Charging Cable,1,14.95,11/06/19 21:55,"604 Willow St, New York City, NY 10001" +295046,iPhone,1,700,11/11/19 03:52,"580 7th St, New York City, NY 10001" +295046,Lightning Charging Cable,1,14.95,11/11/19 03:52,"580 7th St, New York City, NY 10001" +295046,Wired Headphones,1,11.99,11/11/19 03:52,"580 7th St, New York City, NY 10001" +295047,Bose SoundSport Headphones,1,99.99,11/18/19 20:01,"597 Lake St, Los Angeles, CA 90001" +295048,USB-C Charging Cable,1,11.95,11/26/19 20:49,"619 Willow St, Los Angeles, CA 90001" +295049,Wired Headphones,1,11.99,11/19/19 18:19,"998 Cherry St, San Francisco, CA 94016" +295050,Lightning Charging Cable,1,14.95,11/07/19 20:16,"284 Elm St, Los Angeles, CA 90001" +295051,Lightning Charging Cable,1,14.95,11/23/19 13:26,"434 Church St, Boston, MA 02215" +295052,Lightning Charging Cable,2,14.95,11/08/19 05:31,"846 Forest St, Los Angeles, CA 90001" +295053,AAA Batteries (4-pack),1,2.99,11/04/19 10:36,"635 Main St, New York City, NY 10001" +295054,Apple Airpods Headphones,1,150,11/17/19 11:21,"495 Elm St, New York City, NY 10001" +295055,Apple Airpods Headphones,1,150,11/20/19 22:21,"311 Maple St, New York City, NY 10001" +295055,iPhone,1,700,11/20/19 22:21,"311 Maple St, New York City, NY 10001" +295056,AA Batteries (4-pack),1,3.84,11/26/19 11:14,"660 Pine St, Boston, MA 02215" +295057,Apple Airpods Headphones,1,150,11/08/19 15:43,"148 8th St, San Francisco, CA 94016" +295058,Macbook Pro Laptop,1,1700,11/19/19 17:45,"569 West St, Austin, TX 73301" +295059,Bose SoundSport Headphones,1,99.99,11/29/19 21:48,"429 Hickory St, Atlanta, GA 30301" +295060,USB-C Charging Cable,1,11.95,11/03/19 11:37,"373 12th St, Atlanta, GA 30301" +295061,iPhone,1,700,11/04/19 13:23,"341 Lakeview St, Los Angeles, CA 90001" +295062,Flatscreen TV,1,300,11/25/19 21:20,"162 Park St, San Francisco, CA 94016" +295063,Lightning Charging Cable,1,14.95,11/21/19 20:05,"138 Elm St, Atlanta, GA 30301" +295064,Apple Airpods Headphones,1,150,11/25/19 08:54,"435 13th St, San Francisco, CA 94016" +295065,Wired Headphones,1,11.99,11/05/19 12:09,"431 Jackson St, Los Angeles, CA 90001" +295066,AA Batteries (4-pack),1,3.84,11/06/19 02:30,"688 Lakeview St, Austin, TX 73301" +295067,iPhone,1,700,11/18/19 20:52,"213 Lincoln St, Portland, OR 97035" +295068,Lightning Charging Cable,1,14.95,11/27/19 16:14,"774 Church St, Los Angeles, CA 90001" +295069,AA Batteries (4-pack),1,3.84,11/23/19 09:44,"235 2nd St, Los Angeles, CA 90001" +295070,AA Batteries (4-pack),1,3.84,11/24/19 19:15,"938 12th St, Seattle, WA 98101" +295071,27in FHD Monitor,2,149.99,11/28/19 13:32,"127 Highland St, San Francisco, CA 94016" +295072,AA Batteries (4-pack),1,3.84,11/18/19 09:07,"167 Elm St, New York City, NY 10001" +295073,ThinkPad Laptop,1,999.99,11/06/19 20:14,"335 Washington St, Atlanta, GA 30301" +295074,Apple Airpods Headphones,1,150,11/02/19 14:59,"966 6th St, Los Angeles, CA 90001" +295075,AAA Batteries (4-pack),1,2.99,11/25/19 11:05,"706 Cedar St, San Francisco, CA 94016" +295076,USB-C Charging Cable,1,11.95,11/07/19 16:57,"843 Cherry St, San Francisco, CA 94016" +295077,27in FHD Monitor,1,149.99,11/27/19 10:42,"630 13th St, Atlanta, GA 30301" +295078,iPhone,1,700,11/17/19 16:01,"772 Walnut St, Seattle, WA 98101" +295079,Macbook Pro Laptop,1,1700,11/26/19 07:46,"867 12th St, San Francisco, CA 94016" +295080,Wired Headphones,1,11.99,11/04/19 16:31,"915 6th St, Dallas, TX 75001" +295081,AAA Batteries (4-pack),1,2.99,11/09/19 07:14,"691 Center St, Austin, TX 73301" +295082,Google Phone,1,600,11/13/19 15:11,"751 7th St, San Francisco, CA 94016" +295083,AAA Batteries (4-pack),1,2.99,11/29/19 12:04,"874 Spruce St, Atlanta, GA 30301" +295084,Wired Headphones,1,11.99,11/23/19 18:48,"127 4th St, San Francisco, CA 94016" +295085,USB-C Charging Cable,2,11.95,11/08/19 15:33,"296 8th St, Dallas, TX 75001" +295086,Lightning Charging Cable,1,14.95,11/03/19 15:29,"876 13th St, Seattle, WA 98101" +295087,Lightning Charging Cable,1,14.95,11/08/19 20:50,"238 Jackson St, Los Angeles, CA 90001" +295088,Bose SoundSport Headphones,1,99.99,11/15/19 09:10,"846 Sunset St, Atlanta, GA 30301" +295089,Bose SoundSport Headphones,1,99.99,11/10/19 00:18,"881 14th St, Austin, TX 73301" +295090,Wired Headphones,1,11.99,11/08/19 18:43,"593 Cedar St, Austin, TX 73301" +295091,Google Phone,1,600,11/28/19 19:15,"169 Maple St, Boston, MA 02215" +295092,Bose SoundSport Headphones,1,99.99,11/04/19 13:45,"674 Church St, San Francisco, CA 94016" +295093,USB-C Charging Cable,1,11.95,11/26/19 14:32,"277 6th St, Los Angeles, CA 90001" +295094,iPhone,1,700,11/05/19 08:08,"480 9th St, New York City, NY 10001" +295094,Lightning Charging Cable,1,14.95,11/05/19 08:08,"480 9th St, New York City, NY 10001" +295095,Flatscreen TV,1,300,11/04/19 10:52,"110 7th St, San Francisco, CA 94016" +295096,Apple Airpods Headphones,1,150,11/02/19 19:46,"836 Ridge St, Boston, MA 02215" +295097,AAA Batteries (4-pack),1,2.99,11/07/19 16:49,"337 Johnson St, Boston, MA 02215" +295098,Lightning Charging Cable,1,14.95,11/28/19 13:11,"510 Wilson St, San Francisco, CA 94016" +295099,AAA Batteries (4-pack),1,2.99,11/20/19 09:48,"596 Cedar St, Portland, OR 97035" +295100,Lightning Charging Cable,2,14.95,11/07/19 20:38,"228 8th St, Atlanta, GA 30301" +295101,iPhone,1,700,11/04/19 16:31,"993 Forest St, Los Angeles, CA 90001" +295102,AAA Batteries (4-pack),1,2.99,11/03/19 12:54,"262 Lake St, Austin, TX 73301" +295103,USB-C Charging Cable,1,11.95,11/17/19 16:23,"863 River St, San Francisco, CA 94016" +295104,USB-C Charging Cable,1,11.95,11/27/19 12:21,"827 Lake St, Portland, OR 97035" +295105,27in 4K Gaming Monitor,1,389.99,11/12/19 11:01,"441 Elm St, San Francisco, CA 94016" +295106,Lightning Charging Cable,1,14.95,11/25/19 23:16,"153 Lakeview St, San Francisco, CA 94016" +295107,Wired Headphones,1,11.99,11/02/19 10:49,"380 River St, Boston, MA 02215" +295108,ThinkPad Laptop,1,999.99,11/25/19 20:22,"884 Elm St, Austin, TX 73301" +295109,Wired Headphones,1,11.99,11/26/19 08:55,"212 Jefferson St, Los Angeles, CA 90001" +295110,USB-C Charging Cable,1,11.95,11/18/19 14:11,"407 8th St, Los Angeles, CA 90001" +295111,USB-C Charging Cable,1,11.95,11/20/19 21:56,"428 10th St, Los Angeles, CA 90001" +295112,AA Batteries (4-pack),1,3.84,11/01/19 14:35,"486 8th St, New York City, NY 10001" +295113,Lightning Charging Cable,1,14.95,11/08/19 10:06,"885 Chestnut St, New York City, NY 10001" +295114,Apple Airpods Headphones,1,150,11/24/19 12:08,"851 Washington St, San Francisco, CA 94016" +295115,USB-C Charging Cable,1,11.95,11/26/19 09:01,"747 14th St, San Francisco, CA 94016" +295116,AAA Batteries (4-pack),2,2.99,11/16/19 17:01,"481 Hickory St, San Francisco, CA 94016" +295117,ThinkPad Laptop,1,999.99,11/05/19 11:12,"829 Cedar St, San Francisco, CA 94016" +295118,27in 4K Gaming Monitor,1,389.99,11/23/19 19:03,"262 North St, Seattle, WA 98101" +295119,Flatscreen TV,1,300,11/22/19 03:29,"583 14th St, Los Angeles, CA 90001" +295120,LG Dryer,1,600.0,11/12/19 17:09,"140 1st St, San Francisco, CA 94016" +295121,Flatscreen TV,1,300,11/16/19 13:40,"929 Adams St, Seattle, WA 98101" +295122,ThinkPad Laptop,1,999.99,11/22/19 08:58,"790 Hill St, San Francisco, CA 94016" +295123,USB-C Charging Cable,1,11.95,11/30/19 18:15,"643 Forest St, New York City, NY 10001" +295124,USB-C Charging Cable,1,11.95,11/12/19 18:56,"946 Main St, Dallas, TX 75001" +295125,Apple Airpods Headphones,1,150,11/04/19 11:34,"447 Adams St, Portland, OR 97035" +295126,AA Batteries (4-pack),1,3.84,11/24/19 14:08,"781 Maple St, Seattle, WA 98101" +295127,AA Batteries (4-pack),1,3.84,11/07/19 07:46,"812 Lincoln St, Portland, ME 04101" +295128,27in 4K Gaming Monitor,1,389.99,11/19/19 12:43,"910 Spruce St, Austin, TX 73301" +295129,Lightning Charging Cable,1,14.95,11/09/19 18:54,"910 12th St, New York City, NY 10001" +295130,AA Batteries (4-pack),1,3.84,11/17/19 08:46,"578 South St, Dallas, TX 75001" +295131,AAA Batteries (4-pack),1,2.99,11/26/19 16:14,"703 9th St, Los Angeles, CA 90001" +295132,Apple Airpods Headphones,1,150,11/23/19 12:11,"799 Lincoln St, New York City, NY 10001" +295133,Apple Airpods Headphones,1,150,11/28/19 14:25,"600 Meadow St, San Francisco, CA 94016" +295134,Apple Airpods Headphones,1,150,11/29/19 21:07,"593 Lakeview St, Dallas, TX 75001" +295135,AAA Batteries (4-pack),1,2.99,11/24/19 10:39,"815 Hill St, Dallas, TX 75001" +295136,Lightning Charging Cable,1,14.95,11/02/19 10:58,"688 Lake St, San Francisco, CA 94016" +295137,USB-C Charging Cable,1,11.95,11/07/19 11:46,"674 Adams St, New York City, NY 10001" +295138,USB-C Charging Cable,1,11.95,11/28/19 09:03,"217 Jackson St, Boston, MA 02215" +295139,Wired Headphones,1,11.99,11/15/19 18:21,"234 Hickory St, Boston, MA 02215" +295140,Lightning Charging Cable,1,14.95,11/18/19 19:46,"732 Forest St, Portland, OR 97035" +295141,Google Phone,1,600,11/01/19 20:48,"578 2nd St, Los Angeles, CA 90001" +295142,20in Monitor,1,109.99,11/21/19 17:40,"344 River St, Los Angeles, CA 90001" +295143,USB-C Charging Cable,1,11.95,11/19/19 08:30,"557 12th St, New York City, NY 10001" +295144,Bose SoundSport Headphones,1,99.99,11/25/19 14:50,"938 Johnson St, Austin, TX 73301" +295145,USB-C Charging Cable,1,11.95,11/20/19 14:12,"223 10th St, Dallas, TX 75001" +295146,27in 4K Gaming Monitor,1,389.99,11/17/19 11:30,"355 6th St, Portland, OR 97035" +295147,iPhone,1,700,11/20/19 12:23,"877 River St, Los Angeles, CA 90001" +295148,Wired Headphones,1,11.99,11/16/19 11:09,"293 7th St, Seattle, WA 98101" +295149,20in Monitor,1,109.99,11/07/19 19:21,"577 Madison St, San Francisco, CA 94016" +295150,AA Batteries (4-pack),1,3.84,11/16/19 07:52,"445 6th St, New York City, NY 10001" +295151,AAA Batteries (4-pack),1,2.99,11/22/19 22:44,"488 Chestnut St, Los Angeles, CA 90001" +295152,AA Batteries (4-pack),2,3.84,11/16/19 13:19,"396 Spruce St, Portland, OR 97035" +295153,Apple Airpods Headphones,1,150,11/19/19 21:38,"584 Lincoln St, New York City, NY 10001" +295154,AAA Batteries (4-pack),1,2.99,11/11/19 20:38,"71 Washington St, Austin, TX 73301" +295155,Macbook Pro Laptop,1,1700,11/12/19 10:10,"492 Dogwood St, Atlanta, GA 30301" +295156,20in Monitor,1,109.99,11/16/19 16:48,"144 Madison St, San Francisco, CA 94016" +295157,Apple Airpods Headphones,1,150,11/07/19 14:24,"602 North St, Portland, OR 97035" +295158,AA Batteries (4-pack),1,3.84,11/21/19 00:39,"75 12th St, New York City, NY 10001" +295159,ThinkPad Laptop,1,999.99,11/12/19 18:56,"916 North St, New York City, NY 10001" +295160,iPhone,1,700,11/14/19 22:24,"572 1st St, Boston, MA 02215" +295161,Bose SoundSport Headphones,1,99.99,11/09/19 15:54,"840 Adams St, San Francisco, CA 94016" +295162,Wired Headphones,1,11.99,11/03/19 13:08,"968 Washington St, Seattle, WA 98101" +295163,USB-C Charging Cable,1,11.95,11/25/19 19:31,"790 Lake St, San Francisco, CA 94016" +295164,Apple Airpods Headphones,1,150,11/20/19 15:15,"593 Hill St, Dallas, TX 75001" +295165,27in FHD Monitor,1,149.99,11/18/19 22:15,"293 5th St, Austin, TX 73301" +295166,AAA Batteries (4-pack),2,2.99,11/27/19 12:11,"615 11th St, New York City, NY 10001" +295167,USB-C Charging Cable,1,11.95,11/17/19 20:38,"21 Center St, San Francisco, CA 94016" +295168,ThinkPad Laptop,1,999.99,11/23/19 17:09,"465 Washington St, Seattle, WA 98101" +295169,iPhone,1,700,11/17/19 17:30,"148 Sunset St, Atlanta, GA 30301" +295170,USB-C Charging Cable,1,11.95,11/11/19 17:01,"860 5th St, San Francisco, CA 94016" +295171,Wired Headphones,1,11.99,11/28/19 09:45,"350 11th St, Los Angeles, CA 90001" +295172,Apple Airpods Headphones,1,150,11/17/19 09:05,"442 5th St, San Francisco, CA 94016" +295173,Wired Headphones,1,11.99,11/21/19 18:21,"982 Spruce St, San Francisco, CA 94016" +295174,Macbook Pro Laptop,1,1700,11/26/19 19:37,"578 North St, Boston, MA 02215" +295175,iPhone,1,700,11/04/19 01:22,"283 5th St, San Francisco, CA 94016" +295176,AA Batteries (4-pack),3,3.84,11/26/19 21:02,"535 7th St, San Francisco, CA 94016" +295177,USB-C Charging Cable,1,11.95,11/24/19 23:46,"639 Johnson St, Atlanta, GA 30301" +295178,20in Monitor,1,109.99,11/12/19 07:52,"756 Elm St, Portland, OR 97035" +295179,Lightning Charging Cable,1,14.95,11/22/19 14:08,"550 7th St, New York City, NY 10001" +295180,Apple Airpods Headphones,1,150,11/28/19 00:03,"913 6th St, San Francisco, CA 94016" +295181,Bose SoundSport Headphones,1,99.99,11/22/19 03:23,"904 Wilson St, San Francisco, CA 94016" +295182,Apple Airpods Headphones,1,150,11/29/19 14:08,"776 Adams St, San Francisco, CA 94016" +295183,Wired Headphones,1,11.99,11/16/19 17:25,"916 Adams St, Boston, MA 02215" +295184,Lightning Charging Cable,1,14.95,11/21/19 15:23,"175 5th St, San Francisco, CA 94016" +295185,Lightning Charging Cable,1,14.95,11/25/19 20:40,"470 11th St, Los Angeles, CA 90001" +295186,AA Batteries (4-pack),1,3.84,11/28/19 21:39,"609 Main St, San Francisco, CA 94016" +295187,Lightning Charging Cable,1,14.95,11/20/19 22:18,"801 Park St, San Francisco, CA 94016" +295188,AAA Batteries (4-pack),2,2.99,11/06/19 19:40,"45 West St, San Francisco, CA 94016" +295189,Bose SoundSport Headphones,1,99.99,11/05/19 11:31,"983 1st St, Portland, OR 97035" +295190,Bose SoundSport Headphones,1,99.99,11/19/19 20:01,"508 Elm St, New York City, NY 10001" +295191,Vareebadd Phone,1,400,11/18/19 13:47,"252 11th St, Los Angeles, CA 90001" +295192,AAA Batteries (4-pack),1,2.99,11/09/19 08:06,"514 Main St, San Francisco, CA 94016" +295193,Lightning Charging Cable,1,14.95,11/16/19 16:11,"933 Wilson St, Los Angeles, CA 90001" +295194,USB-C Charging Cable,1,11.95,11/05/19 08:34,"47 Jefferson St, Los Angeles, CA 90001" +295195,Macbook Pro Laptop,1,1700,11/24/19 20:39,"355 South St, San Francisco, CA 94016" +295196,AAA Batteries (4-pack),1,2.99,11/09/19 20:20,"29 Jefferson St, Los Angeles, CA 90001" +295197,Lightning Charging Cable,1,14.95,11/25/19 07:46,"130 12th St, Los Angeles, CA 90001" +295198,USB-C Charging Cable,1,11.95,11/03/19 11:12,"482 10th St, Atlanta, GA 30301" +295199,27in 4K Gaming Monitor,1,389.99,11/28/19 14:57,"270 Hill St, San Francisco, CA 94016" +295200,Apple Airpods Headphones,1,150,11/11/19 11:12,"493 14th St, Boston, MA 02215" +295201,Lightning Charging Cable,1,14.95,11/24/19 00:45,"925 8th St, Seattle, WA 98101" +295202,Apple Airpods Headphones,1,150,11/17/19 01:12,"537 9th St, Seattle, WA 98101" +295203,Macbook Pro Laptop,1,1700,11/08/19 10:47,"29 6th St, Portland, OR 97035" +295204,Google Phone,1,600,11/11/19 21:19,"918 Hill St, Austin, TX 73301" +295205,Bose SoundSport Headphones,1,99.99,11/25/19 20:09,"131 Park St, San Francisco, CA 94016" +295206,Lightning Charging Cable,1,14.95,11/09/19 14:06,"314 Meadow St, Los Angeles, CA 90001" +295207,Lightning Charging Cable,1,14.95,11/07/19 10:03,"363 Spruce St, Dallas, TX 75001" +295208,USB-C Charging Cable,1,11.95,11/24/19 20:48,"687 Sunset St, Seattle, WA 98101" +295209,AAA Batteries (4-pack),4,2.99,11/07/19 13:04,"78 Sunset St, San Francisco, CA 94016" +295210,Lightning Charging Cable,1,14.95,11/19/19 18:19,"189 Spruce St, New York City, NY 10001" +295211,Lightning Charging Cable,1,14.95,11/06/19 13:43,"949 North St, Portland, ME 04101" +295212,Google Phone,1,600,11/25/19 10:31,"831 5th St, San Francisco, CA 94016" +295212,Lightning Charging Cable,1,14.95,11/25/19 10:31,"831 5th St, San Francisco, CA 94016" +295213,27in FHD Monitor,1,149.99,11/09/19 13:53,"633 Hickory St, Seattle, WA 98101" +295213,AA Batteries (4-pack),1,3.84,11/09/19 13:53,"633 Hickory St, Seattle, WA 98101" +295214,Flatscreen TV,1,300,11/06/19 00:04,"511 Lakeview St, Boston, MA 02215" +295215,AA Batteries (4-pack),1,3.84,11/20/19 15:42,"57 Washington St, Seattle, WA 98101" +295216,27in FHD Monitor,1,149.99,11/10/19 16:11,"731 Hickory St, Atlanta, GA 30301" +295217,Wired Headphones,1,11.99,11/04/19 15:55,"806 12th St, Boston, MA 02215" +295218,Wired Headphones,1,11.99,11/04/19 06:53,"938 Maple St, Los Angeles, CA 90001" +295219,AAA Batteries (4-pack),1,2.99,11/23/19 17:51,"730 Jackson St, New York City, NY 10001" +295220,Wired Headphones,1,11.99,11/18/19 19:45,"95 Pine St, New York City, NY 10001" +295221,Wired Headphones,1,11.99,11/23/19 09:30,"752 Dogwood St, Los Angeles, CA 90001" +295222,AA Batteries (4-pack),1,3.84,11/10/19 12:39,"477 1st St, San Francisco, CA 94016" +295223,AA Batteries (4-pack),1,3.84,11/11/19 09:05,"998 Main St, San Francisco, CA 94016" +295224,AAA Batteries (4-pack),1,2.99,11/13/19 18:03,"162 Center St, Seattle, WA 98101" +295225,27in FHD Monitor,1,149.99,11/23/19 18:55,"448 6th St, Los Angeles, CA 90001" +295226,Lightning Charging Cable,1,14.95,11/27/19 07:40,"515 6th St, Los Angeles, CA 90001" +295227,27in FHD Monitor,1,149.99,11/12/19 11:48,"356 Maple St, San Francisco, CA 94016" +295228,iPhone,1,700,11/13/19 15:13,"852 Hill St, Seattle, WA 98101" +295229,AAA Batteries (4-pack),1,2.99,11/16/19 20:12,"508 Walnut St, New York City, NY 10001" +295230,Bose SoundSport Headphones,1,99.99,11/16/19 14:51,"800 Pine St, Portland, OR 97035" +295231,Flatscreen TV,1,300,11/25/19 10:12,"6 6th St, San Francisco, CA 94016" +295232,20in Monitor,1,109.99,11/20/19 18:48,"556 Forest St, Dallas, TX 75001" +295233,AA Batteries (4-pack),2,3.84,11/12/19 19:34,"833 Center St, Atlanta, GA 30301" +295234,AA Batteries (4-pack),2,3.84,11/18/19 16:59,"354 South St, San Francisco, CA 94016" +295235,Macbook Pro Laptop,1,1700,11/16/19 00:16,"346 Willow St, Boston, MA 02215" +295236,AA Batteries (4-pack),2,3.84,11/15/19 10:14,"589 Dogwood St, San Francisco, CA 94016" +295237,AAA Batteries (4-pack),1,2.99,11/23/19 22:20,"486 River St, Los Angeles, CA 90001" +295238,AA Batteries (4-pack),1,3.84,11/05/19 13:43,"569 Adams St, San Francisco, CA 94016" +295239,Bose SoundSport Headphones,1,99.99,11/06/19 14:10,"920 Ridge St, Boston, MA 02215" +295240,Wired Headphones,1,11.99,11/03/19 13:57,"393 Lake St, San Francisco, CA 94016" +295241,iPhone,1,700,11/08/19 16:27,"731 Highland St, Atlanta, GA 30301" +295242,AAA Batteries (4-pack),1,2.99,11/14/19 18:06,"103 Ridge St, Seattle, WA 98101" +295243,Lightning Charging Cable,1,14.95,11/03/19 03:59,"685 Ridge St, San Francisco, CA 94016" +295244,Lightning Charging Cable,2,14.95,11/04/19 10:03,"838 Main St, New York City, NY 10001" +295245,Apple Airpods Headphones,1,150,11/11/19 12:06,"344 Hill St, Los Angeles, CA 90001" +295246,USB-C Charging Cable,1,11.95,11/28/19 10:08,"111 Walnut St, San Francisco, CA 94016" +295247,20in Monitor,1,109.99,11/10/19 19:04,"703 Ridge St, San Francisco, CA 94016" +295248,Apple Airpods Headphones,1,150,11/16/19 11:19,"544 Ridge St, San Francisco, CA 94016" +295249,ThinkPad Laptop,1,999.99,11/27/19 20:16,"904 Madison St, Seattle, WA 98101" +295250,Apple Airpods Headphones,1,150,11/18/19 19:09,"925 8th St, Boston, MA 02215" +295251,Apple Airpods Headphones,1,150,11/05/19 19:37,"215 Lake St, Dallas, TX 75001" +295252,Wired Headphones,1,11.99,11/19/19 16:11,"389 Hill St, Austin, TX 73301" +295253,Apple Airpods Headphones,1,150,11/23/19 13:13,"895 Maple St, Los Angeles, CA 90001" +295254,Apple Airpods Headphones,1,150,11/06/19 19:13,"852 Walnut St, Seattle, WA 98101" +295255,USB-C Charging Cable,1,11.95,11/11/19 18:45,"483 Jackson St, San Francisco, CA 94016" +295256,ThinkPad Laptop,1,999.99,11/26/19 14:56,"790 River St, Boston, MA 02215" +295257,27in FHD Monitor,1,149.99,11/27/19 22:56,"237 Church St, San Francisco, CA 94016" +295258,Bose SoundSport Headphones,1,99.99,11/29/19 10:18,"287 8th St, San Francisco, CA 94016" +295259,ThinkPad Laptop,1,999.99,11/18/19 19:25,"399 7th St, Austin, TX 73301" +295260,AAA Batteries (4-pack),2,2.99,11/11/19 18:18,"313 Sunset St, San Francisco, CA 94016" +295261,Wired Headphones,2,11.99,11/16/19 18:50,"470 West St, Atlanta, GA 30301" +295262,USB-C Charging Cable,1,11.95,11/13/19 18:05,"252 Jackson St, Atlanta, GA 30301" +295263,Bose SoundSport Headphones,1,99.99,11/07/19 19:34,"580 North St, Los Angeles, CA 90001" +295263,Wired Headphones,1,11.99,11/07/19 19:34,"580 North St, Los Angeles, CA 90001" +295264,AA Batteries (4-pack),2,3.84,11/04/19 13:15,"922 Washington St, New York City, NY 10001" +295265,Lightning Charging Cable,1,14.95,11/09/19 16:25,"368 Park St, Boston, MA 02215" +295266,AAA Batteries (4-pack),1,2.99,11/27/19 09:00,"447 Chestnut St, Austin, TX 73301" +295267,Apple Airpods Headphones,1,150,11/04/19 19:48,"173 Washington St, Los Angeles, CA 90001" +295268,20in Monitor,1,109.99,11/15/19 15:34,"810 12th St, Portland, ME 04101" +295269,USB-C Charging Cable,1,11.95,11/30/19 02:51,"217 6th St, San Francisco, CA 94016" +295270,27in 4K Gaming Monitor,1,389.99,11/05/19 10:47,"358 Maple St, New York City, NY 10001" +295271,Lightning Charging Cable,1,14.95,11/04/19 13:54,"615 2nd St, Portland, ME 04101" +295271,AAA Batteries (4-pack),1,2.99,11/04/19 13:54,"615 2nd St, Portland, ME 04101" +295272,AA Batteries (4-pack),4,3.84,11/26/19 22:26,"184 Hill St, Dallas, TX 75001" +295273,USB-C Charging Cable,1,11.95,11/17/19 10:12,"903 Hill St, Dallas, TX 75001" +295274,Google Phone,1,600,11/03/19 21:28,"586 8th St, Dallas, TX 75001" +295274,Wired Headphones,2,11.99,11/03/19 21:28,"586 8th St, Dallas, TX 75001" +295275,20in Monitor,1,109.99,11/05/19 23:01,"251 4th St, Austin, TX 73301" +295276,Apple Airpods Headphones,1,150,11/09/19 17:10,"875 Hickory St, Seattle, WA 98101" +295277,Apple Airpods Headphones,1,150,11/08/19 15:18,"86 Lake St, Atlanta, GA 30301" +295278,Wired Headphones,1,11.99,11/19/19 13:59,"852 Church St, Dallas, TX 75001" +295279,AAA Batteries (4-pack),1,2.99,11/27/19 11:45,"558 Elm St, Portland, OR 97035" +295280,Wired Headphones,1,11.99,11/21/19 11:12,"9 Madison St, Los Angeles, CA 90001" +295281,USB-C Charging Cable,1,11.95,11/10/19 20:58,"691 Forest St, Los Angeles, CA 90001" +295282,Macbook Pro Laptop,1,1700,11/17/19 13:15,"371 Ridge St, San Francisco, CA 94016" +295283,Bose SoundSport Headphones,1,99.99,11/26/19 17:22,"538 Wilson St, Boston, MA 02215" +295284,AAA Batteries (4-pack),1,2.99,11/24/19 08:13,"32 Center St, Boston, MA 02215" +295285,USB-C Charging Cable,1,11.95,11/10/19 23:16,"929 Johnson St, Atlanta, GA 30301" +295286,Lightning Charging Cable,1,14.95,11/18/19 12:22,"658 Johnson St, Dallas, TX 75001" +295287,Bose SoundSport Headphones,1,99.99,11/06/19 16:11,"526 Elm St, Dallas, TX 75001" +295288,Vareebadd Phone,1,400,11/23/19 09:52,"574 Elm St, Los Angeles, CA 90001" +295289,Apple Airpods Headphones,1,150,11/19/19 17:20,"141 Sunset St, Boston, MA 02215" +295290,AAA Batteries (4-pack),1,2.99,11/27/19 09:48,"73 North St, Boston, MA 02215" +295291,Apple Airpods Headphones,1,150,11/05/19 21:45,"782 Jackson St, San Francisco, CA 94016" +295292,AAA Batteries (4-pack),1,2.99,11/25/19 09:27,"253 Wilson St, San Francisco, CA 94016" +295293,AA Batteries (4-pack),1,3.84,11/10/19 09:03,"93 Highland St, San Francisco, CA 94016" +295294,Lightning Charging Cable,1,14.95,11/07/19 14:55,"182 Forest St, San Francisco, CA 94016" +295295,Bose SoundSport Headphones,1,99.99,11/12/19 14:39,"784 Church St, New York City, NY 10001" +295296,Wired Headphones,1,11.99,11/08/19 12:56,"501 Hill St, Los Angeles, CA 90001" +295297,AAA Batteries (4-pack),2,2.99,11/18/19 16:35,"437 Highland St, Portland, OR 97035" +295298,Bose SoundSport Headphones,1,99.99,11/18/19 18:16,"789 North St, Los Angeles, CA 90001" +295299,AA Batteries (4-pack),1,3.84,11/06/19 04:57,"24 2nd St, Dallas, TX 75001" +295300,AA Batteries (4-pack),1,3.84,11/03/19 11:31,"136 Adams St, San Francisco, CA 94016" +295301,Bose SoundSport Headphones,1,99.99,11/19/19 12:08,"159 Adams St, Boston, MA 02215" +295302,Lightning Charging Cable,1,14.95,11/26/19 08:16,"155 10th St, San Francisco, CA 94016" +295303,Wired Headphones,1,11.99,11/01/19 10:07,"166 West St, Atlanta, GA 30301" +295304,27in 4K Gaming Monitor,1,389.99,11/05/19 20:55,"596 11th St, San Francisco, CA 94016" +295305,Vareebadd Phone,1,400,11/12/19 09:15,"669 4th St, San Francisco, CA 94016" +295305,USB-C Charging Cable,2,11.95,11/12/19 09:15,"669 4th St, San Francisco, CA 94016" +295306,iPhone,1,700,11/08/19 18:30,"823 South St, Dallas, TX 75001" +295307,AA Batteries (4-pack),1,3.84,11/01/19 10:34,"650 6th St, San Francisco, CA 94016" +295308,Flatscreen TV,1,300,11/23/19 09:32,"159 Cedar St, Boston, MA 02215" +295309,34in Ultrawide Monitor,1,379.99,11/25/19 14:34,"935 Wilson St, San Francisco, CA 94016" +295310,USB-C Charging Cable,1,11.95,11/13/19 20:23,"785 Cherry St, New York City, NY 10001" +295311,Lightning Charging Cable,1,14.95,11/17/19 20:31,"267 14th St, San Francisco, CA 94016" +295312,Apple Airpods Headphones,1,150,11/17/19 18:29,"52 Elm St, Boston, MA 02215" +295313,AAA Batteries (4-pack),1,2.99,11/22/19 12:46,"949 Walnut St, Los Angeles, CA 90001" +295314,27in 4K Gaming Monitor,1,389.99,11/12/19 11:12,"56 River St, Seattle, WA 98101" +295315,USB-C Charging Cable,1,11.95,11/24/19 23:15,"324 Lake St, Boston, MA 02215" +295316,Lightning Charging Cable,1,14.95,11/19/19 07:55,"324 Jackson St, Atlanta, GA 30301" +295317,iPhone,1,700,11/03/19 21:05,"878 Pine St, Atlanta, GA 30301" +295318,USB-C Charging Cable,1,11.95,11/13/19 13:15,"731 4th St, Seattle, WA 98101" +295319,AA Batteries (4-pack),1,3.84,11/07/19 07:12,"703 4th St, San Francisco, CA 94016" +295320,20in Monitor,1,109.99,11/08/19 07:39,"526 Willow St, Dallas, TX 75001" +295321,AAA Batteries (4-pack),1,2.99,11/07/19 17:48,"315 Adams St, Portland, OR 97035" +295322,Vareebadd Phone,1,400,11/08/19 16:04,"972 Jefferson St, Dallas, TX 75001" +295323,Google Phone,1,600,11/12/19 15:44,"976 Willow St, San Francisco, CA 94016" +295323,USB-C Charging Cable,1,11.95,11/12/19 15:44,"976 Willow St, San Francisco, CA 94016" +295324,Apple Airpods Headphones,1,150,11/30/19 21:03,"304 Wilson St, Los Angeles, CA 90001" +295325,AA Batteries (4-pack),1,3.84,11/11/19 12:27,"242 Park St, San Francisco, CA 94016" +295326,Apple Airpods Headphones,1,150,11/10/19 23:23,"521 10th St, San Francisco, CA 94016" +295327,ThinkPad Laptop,1,999.99,11/14/19 18:36,"721 Elm St, New York City, NY 10001" +295328,27in FHD Monitor,1,149.99,11/20/19 13:52,"875 Hill St, Seattle, WA 98101" +295329,AA Batteries (4-pack),1,3.84,11/22/19 09:30,"869 Wilson St, Los Angeles, CA 90001" +295330,Wired Headphones,1,11.99,11/03/19 14:09,"138 Highland St, Atlanta, GA 30301" +295331,iPhone,1,700,11/25/19 18:07,"971 5th St, San Francisco, CA 94016" +295332,AAA Batteries (4-pack),1,2.99,11/17/19 14:33,"666 Highland St, New York City, NY 10001" +295333,AA Batteries (4-pack),1,3.84,11/04/19 19:57,"174 South St, Los Angeles, CA 90001" +295334,Bose SoundSport Headphones,1,99.99,11/20/19 07:53,"184 Cherry St, Los Angeles, CA 90001" +295335,AAA Batteries (4-pack),2,2.99,11/15/19 23:56,"124 11th St, San Francisco, CA 94016" +295336,Bose SoundSport Headphones,1,99.99,11/14/19 04:02,"154 Chestnut St, Seattle, WA 98101" +295337,AA Batteries (4-pack),1,3.84,11/03/19 22:20,"346 Cherry St, San Francisco, CA 94016" +295338,Lightning Charging Cable,1,14.95,11/05/19 10:13,"877 Elm St, Atlanta, GA 30301" +295339,USB-C Charging Cable,1,11.95,11/04/19 18:31,"793 7th St, Atlanta, GA 30301" +295340,AAA Batteries (4-pack),2,2.99,11/16/19 01:18,"605 Cedar St, Atlanta, GA 30301" +295341,Bose SoundSport Headphones,1,99.99,11/17/19 22:20,"784 South St, Los Angeles, CA 90001" +295342,Lightning Charging Cable,1,14.95,11/27/19 20:22,"230 Maple St, Boston, MA 02215" +295343,Bose SoundSport Headphones,1,99.99,11/20/19 20:21,"744 Church St, Seattle, WA 98101" +295344,USB-C Charging Cable,1,11.95,11/01/19 10:30,"365 Maple St, Boston, MA 02215" +295345,Apple Airpods Headphones,1,150,11/17/19 12:54,"734 6th St, Boston, MA 02215" +295345,34in Ultrawide Monitor,1,379.99,11/17/19 12:54,"734 6th St, Boston, MA 02215" +295346,USB-C Charging Cable,1,11.95,11/09/19 11:24,"523 North St, Dallas, TX 75001" +295347,Bose SoundSport Headphones,1,99.99,11/06/19 00:09,"58 1st St, San Francisco, CA 94016" +295348,Wired Headphones,1,11.99,11/07/19 22:14,"441 Spruce St, New York City, NY 10001" +295349,AAA Batteries (4-pack),3,2.99,11/30/19 09:18,"485 2nd St, Portland, OR 97035" +295350,AA Batteries (4-pack),1,3.84,11/29/19 19:24,"936 2nd St, San Francisco, CA 94016" +295351,LG Dryer,1,600.0,11/06/19 19:28,"657 Adams St, Boston, MA 02215" +295352,iPhone,1,700,11/01/19 22:00,"939 13th St, Portland, ME 04101" +295352,Lightning Charging Cable,1,14.95,11/01/19 22:00,"939 13th St, Portland, ME 04101" +295353,Lightning Charging Cable,1,14.95,11/11/19 09:32,"677 Pine St, Austin, TX 73301" +295354,Lightning Charging Cable,1,14.95,11/07/19 17:27,"693 9th St, Boston, MA 02215" +295355,Lightning Charging Cable,1,14.95,11/27/19 09:09,"806 Maple St, Boston, MA 02215" +295356,Bose SoundSport Headphones,1,99.99,11/17/19 15:34,"87 Maple St, New York City, NY 10001" +295357,iPhone,1,700,11/21/19 14:27,"697 Park St, Los Angeles, CA 90001" +295358,USB-C Charging Cable,1,11.95,11/30/19 22:20,"463 Hickory St, Boston, MA 02215" +295359,Bose SoundSport Headphones,1,99.99,11/20/19 19:20,"478 Ridge St, Austin, TX 73301" +295360,Google Phone,1,600,11/14/19 18:01,"466 5th St, Los Angeles, CA 90001" +295361,USB-C Charging Cable,1,11.95,11/28/19 10:20,"644 Hill St, Seattle, WA 98101" +295362,27in FHD Monitor,1,149.99,11/27/19 19:01,"651 4th St, San Francisco, CA 94016" +295363,Lightning Charging Cable,1,14.95,11/08/19 07:30,"691 Elm St, San Francisco, CA 94016" +295364,34in Ultrawide Monitor,1,379.99,11/20/19 15:23,"784 Highland St, San Francisco, CA 94016" +295365,27in FHD Monitor,1,149.99,11/03/19 13:07,"586 Willow St, Los Angeles, CA 90001" +295366,AAA Batteries (4-pack),1,2.99,11/09/19 11:15,"663 Meadow St, Boston, MA 02215" +295367,Wired Headphones,1,11.99,11/22/19 16:55,"16 Jackson St, San Francisco, CA 94016" +295368,Macbook Pro Laptop,1,1700,11/14/19 21:52,"816 Elm St, New York City, NY 10001" +295369,AAA Batteries (4-pack),1,2.99,11/09/19 17:09,"605 Park St, San Francisco, CA 94016" +295370,AA Batteries (4-pack),2,3.84,11/21/19 19:48,"337 Madison St, Portland, ME 04101" +295371,AAA Batteries (4-pack),1,2.99,11/02/19 00:41,"711 Hickory St, San Francisco, CA 94016" +295372,Apple Airpods Headphones,1,150,11/20/19 12:43,"49 Lincoln St, Boston, MA 02215" +295373,Wired Headphones,1,11.99,11/04/19 19:29,"558 Cedar St, San Francisco, CA 94016" +295374,Lightning Charging Cable,1,14.95,11/07/19 15:57,"19 Jackson St, Los Angeles, CA 90001" +295375,Wired Headphones,1,11.99,11/10/19 11:06,"1 12th St, San Francisco, CA 94016" +295376,AAA Batteries (4-pack),3,2.99,11/08/19 16:22,"242 4th St, Seattle, WA 98101" +295377,AAA Batteries (4-pack),1,2.99,11/29/19 20:36,"256 Lakeview St, Seattle, WA 98101" +295378,USB-C Charging Cable,1,11.95,11/27/19 09:22,"487 Church St, San Francisco, CA 94016" +295379,Bose SoundSport Headphones,1,99.99,11/21/19 15:34,"587 Meadow St, Austin, TX 73301" +295380,Lightning Charging Cable,1,14.95,11/18/19 10:32,"438 8th St, New York City, NY 10001" +295381,Google Phone,1,600,11/20/19 22:37,"977 9th St, San Francisco, CA 94016" +295382,AAA Batteries (4-pack),1,2.99,11/12/19 02:22,"765 9th St, Los Angeles, CA 90001" +295383,Apple Airpods Headphones,1,150,11/10/19 18:48,"480 Park St, Dallas, TX 75001" +295384,34in Ultrawide Monitor,1,379.99,11/21/19 11:23,"660 Spruce St, Austin, TX 73301" +295385,Wired Headphones,2,11.99,11/22/19 19:14,"414 Lakeview St, Boston, MA 02215" +295386,Lightning Charging Cable,1,14.95,11/11/19 21:13,"874 Adams St, Boston, MA 02215" +295387,20in Monitor,1,109.99,11/08/19 12:35,"202 Adams St, Los Angeles, CA 90001" +295388,Google Phone,1,600,11/23/19 11:30,"942 10th St, San Francisco, CA 94016" +295388,USB-C Charging Cable,1,11.95,11/23/19 11:30,"942 10th St, San Francisco, CA 94016" +295389,AA Batteries (4-pack),1,3.84,11/04/19 19:47,"97 Pine St, San Francisco, CA 94016" +295390,Lightning Charging Cable,1,14.95,11/09/19 11:11,"103 Hickory St, San Francisco, CA 94016" +295391,USB-C Charging Cable,1,11.95,11/06/19 11:12,"840 Madison St, Dallas, TX 75001" +295392,Wired Headphones,1,11.99,11/16/19 13:13,"301 Meadow St, New York City, NY 10001" +295393,Google Phone,1,600,11/23/19 18:16,"964 Madison St, Atlanta, GA 30301" +295393,USB-C Charging Cable,1,11.95,11/23/19 18:16,"964 Madison St, Atlanta, GA 30301" +295394,AA Batteries (4-pack),1,3.84,11/27/19 10:39,"88 12th St, San Francisco, CA 94016" +295395,AAA Batteries (4-pack),2,2.99,11/06/19 19:22,"334 Lincoln St, New York City, NY 10001" +295396,AAA Batteries (4-pack),4,2.99,11/30/19 05:53,"250 Lake St, San Francisco, CA 94016" +295397,USB-C Charging Cable,1,11.95,12/01/19 01:50,"270 Elm St, Dallas, TX 75001" +295398,AA Batteries (4-pack),2,3.84,11/21/19 02:09,"831 Jefferson St, Portland, OR 97035" +295399,USB-C Charging Cable,1,11.95,11/20/19 16:06,"30 11th St, New York City, NY 10001" +295400,AAA Batteries (4-pack),1,2.99,11/14/19 19:22,"138 South St, New York City, NY 10001" +295401,Apple Airpods Headphones,1,150,11/30/19 12:49,"46 Chestnut St, San Francisco, CA 94016" +295402,Macbook Pro Laptop,1,1700,11/22/19 13:07,"432 Wilson St, Boston, MA 02215" +295403,Flatscreen TV,1,300,11/20/19 21:08,"135 12th St, New York City, NY 10001" +295404,Wired Headphones,1,11.99,11/10/19 23:12,"156 Hickory St, San Francisco, CA 94016" +295405,20in Monitor,1,109.99,11/18/19 01:52,"382 Highland St, Seattle, WA 98101" +295406,USB-C Charging Cable,1,11.95,11/18/19 17:25,"871 Sunset St, San Francisco, CA 94016" +295407,Lightning Charging Cable,1,14.95,11/13/19 12:27,"982 Cherry St, San Francisco, CA 94016" +295408,27in 4K Gaming Monitor,1,389.99,11/14/19 22:32,"567 Washington St, Dallas, TX 75001" +295409,34in Ultrawide Monitor,1,379.99,11/28/19 23:45,"405 Walnut St, New York City, NY 10001" +295410,Wired Headphones,1,11.99,11/19/19 22:21,"976 Highland St, Los Angeles, CA 90001" +295411,Lightning Charging Cable,1,14.95,11/20/19 19:51,"515 4th St, Seattle, WA 98101" +295412,iPhone,1,700,11/16/19 04:56,"59 Chestnut St, Los Angeles, CA 90001" +295412,Lightning Charging Cable,1,14.95,11/16/19 04:56,"59 Chestnut St, Los Angeles, CA 90001" +295412,Apple Airpods Headphones,1,150,11/16/19 04:56,"59 Chestnut St, Los Angeles, CA 90001" +295413,USB-C Charging Cable,1,11.95,11/01/19 11:09,"426 Park St, Los Angeles, CA 90001" +295414,USB-C Charging Cable,1,11.95,11/24/19 13:52,"882 Center St, Atlanta, GA 30301" +295415,AA Batteries (4-pack),1,3.84,11/10/19 20:40,"836 9th St, Los Angeles, CA 90001" +295416,Google Phone,1,600,11/24/19 09:54,"401 Main St, New York City, NY 10001" +295416,Bose SoundSport Headphones,1,99.99,11/24/19 09:54,"401 Main St, New York City, NY 10001" +295417,Google Phone,1,600,11/24/19 09:39,"891 Elm St, Seattle, WA 98101" +295418,Bose SoundSport Headphones,1,99.99,11/25/19 14:16,"589 Washington St, Boston, MA 02215" +295419,Macbook Pro Laptop,1,1700,11/11/19 16:02,"219 Maple St, San Francisco, CA 94016" +295420,Bose SoundSport Headphones,1,99.99,11/08/19 12:46,"857 Wilson St, Los Angeles, CA 90001" +295421,AA Batteries (4-pack),1,3.84,11/12/19 02:59,"685 Church St, Los Angeles, CA 90001" +295422,ThinkPad Laptop,1,999.99,11/11/19 11:17,"121 Wilson St, Austin, TX 73301" +295423,27in 4K Gaming Monitor,1,389.99,11/12/19 12:21,"399 11th St, Atlanta, GA 30301" +295424,AAA Batteries (4-pack),2,2.99,11/06/19 18:41,"510 Church St, Los Angeles, CA 90001" +295425,Lightning Charging Cable,1,14.95,11/01/19 10:11,"566 Cedar St, Dallas, TX 75001" +295426,27in FHD Monitor,1,149.99,11/14/19 22:27,"797 Church St, Dallas, TX 75001" +295427,Lightning Charging Cable,1,14.95,11/11/19 19:39,"154 Highland St, Los Angeles, CA 90001" +295428,20in Monitor,1,109.99,11/15/19 15:05,"419 North St, Dallas, TX 75001" +295429,Google Phone,1,600,11/20/19 20:01,"606 South St, San Francisco, CA 94016" +295430,27in FHD Monitor,1,149.99,11/15/19 16:51,"367 Ridge St, Los Angeles, CA 90001" +295431,AA Batteries (4-pack),1,3.84,11/13/19 07:49,"229 Church St, New York City, NY 10001" +295432,34in Ultrawide Monitor,1,379.99,11/08/19 17:17,"107 Lincoln St, Seattle, WA 98101" +295433,Apple Airpods Headphones,1,150,11/28/19 14:39,"327 Lincoln St, Los Angeles, CA 90001" +295434,20in Monitor,1,109.99,11/24/19 11:23,"672 Meadow St, San Francisco, CA 94016" +295435,27in 4K Gaming Monitor,1,389.99,11/25/19 20:19,"455 10th St, Boston, MA 02215" +295436,USB-C Charging Cable,1,11.95,11/04/19 18:40,"863 River St, New York City, NY 10001" +295437,Lightning Charging Cable,1,14.95,11/10/19 17:24,"362 Spruce St, Seattle, WA 98101" +295438,AAA Batteries (4-pack),1,2.99,11/17/19 19:47,"416 Cedar St, San Francisco, CA 94016" +295439,ThinkPad Laptop,1,999.99,11/24/19 21:35,"492 Dogwood St, Atlanta, GA 30301" +295440,Wired Headphones,1,11.99,11/18/19 23:12,"977 5th St, San Francisco, CA 94016" +295441,Bose SoundSport Headphones,1,99.99,11/22/19 20:01,"763 Cedar St, Los Angeles, CA 90001" +295442,AAA Batteries (4-pack),1,2.99,11/03/19 14:48,"165 Elm St, Dallas, TX 75001" +295443,Bose SoundSport Headphones,1,99.99,11/09/19 18:55,"297 6th St, Boston, MA 02215" +295444,Lightning Charging Cable,1,14.95,11/07/19 18:11,"58 Elm St, Dallas, TX 75001" +295445,Bose SoundSport Headphones,1,99.99,11/16/19 18:30,"436 West St, Los Angeles, CA 90001" +295446,AA Batteries (4-pack),1,3.84,11/02/19 00:22,"92 Cedar St, Boston, MA 02215" +295447,Bose SoundSport Headphones,1,99.99,11/24/19 14:31,"517 North St, Boston, MA 02215" +295448,ThinkPad Laptop,1,999.99,11/29/19 14:52,"545 6th St, San Francisco, CA 94016" +295449,Macbook Pro Laptop,1,1700,11/17/19 17:12,"525 Lakeview St, Boston, MA 02215" +295450,Bose SoundSport Headphones,1,99.99,11/28/19 14:52,"10 6th St, San Francisco, CA 94016" +295451,34in Ultrawide Monitor,1,379.99,11/10/19 18:40,"928 Hickory St, Atlanta, GA 30301" +295452,34in Ultrawide Monitor,1,379.99,11/29/19 16:25,"484 Washington St, Dallas, TX 75001" +295453,AA Batteries (4-pack),1,3.84,11/18/19 19:36,"335 Dogwood St, San Francisco, CA 94016" +295454,27in FHD Monitor,1,149.99,11/10/19 08:11,"470 Maple St, San Francisco, CA 94016" +295455,Apple Airpods Headphones,1,150,11/13/19 15:13,"534 Willow St, San Francisco, CA 94016" +295456,AAA Batteries (4-pack),2,2.99,11/01/19 09:59,"957 10th St, Seattle, WA 98101" +295457,Google Phone,1,600,11/25/19 12:46,"731 7th St, San Francisco, CA 94016" +295458,Lightning Charging Cable,1,14.95,11/29/19 20:14,"654 Forest St, San Francisco, CA 94016" +295459,Lightning Charging Cable,1,14.95,11/11/19 21:20,"142 Highland St, Austin, TX 73301" +295460,AAA Batteries (4-pack),2,2.99,11/07/19 19:50,"524 13th St, Austin, TX 73301" +295461,34in Ultrawide Monitor,1,379.99,11/12/19 13:13,"657 13th St, San Francisco, CA 94016" +295461,Macbook Pro Laptop,1,1700,11/12/19 13:13,"657 13th St, San Francisco, CA 94016" +295462,AAA Batteries (4-pack),1,2.99,11/20/19 14:22,"879 Wilson St, Boston, MA 02215" +295463,Flatscreen TV,1,300,11/15/19 12:18,"418 Forest St, Los Angeles, CA 90001" +295464,USB-C Charging Cable,1,11.95,11/17/19 19:10,"708 Jefferson St, San Francisco, CA 94016" +295465,USB-C Charging Cable,2,11.95,11/03/19 17:32,"999 Jefferson St, Portland, OR 97035" +295466,20in Monitor,1,109.99,11/28/19 15:19,"771 Elm St, Atlanta, GA 30301" +295467,ThinkPad Laptop,1,999.99,11/09/19 20:06,"114 Cherry St, Austin, TX 73301" +295468,20in Monitor,1,109.99,11/24/19 13:38,"869 Dogwood St, Boston, MA 02215" +295469,Bose SoundSport Headphones,1,99.99,11/05/19 19:01,"180 5th St, San Francisco, CA 94016" +295470,Apple Airpods Headphones,1,150,11/29/19 23:14,"987 Hickory St, Boston, MA 02215" +295471,Wired Headphones,1,11.99,11/10/19 10:49,"35 Meadow St, Los Angeles, CA 90001" +295472,Google Phone,1,600,11/12/19 08:37,"244 Forest St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +295473,Bose SoundSport Headphones,1,99.99,11/17/19 11:35,"430 Pine St, Portland, OR 97035" +295474,Apple Airpods Headphones,1,150,11/11/19 14:29,"668 North St, Los Angeles, CA 90001" +295475,34in Ultrawide Monitor,1,379.99,11/26/19 07:30,"542 Wilson St, San Francisco, CA 94016" +295476,USB-C Charging Cable,1,11.95,11/20/19 10:03,"700 Meadow St, Atlanta, GA 30301" +295477,Wired Headphones,2,11.99,11/04/19 16:48,"850 9th St, Atlanta, GA 30301" +295478,ThinkPad Laptop,1,999.99,11/13/19 09:26,"555 Meadow St, Portland, OR 97035" +295479,AA Batteries (4-pack),2,3.84,11/19/19 18:41,"870 South St, New York City, NY 10001" +295480,Lightning Charging Cable,1,14.95,11/19/19 13:04,"716 Sunset St, New York City, NY 10001" +295480,27in 4K Gaming Monitor,1,389.99,11/19/19 13:04,"716 Sunset St, New York City, NY 10001" +295481,Bose SoundSport Headphones,1,99.99,11/18/19 22:47,"648 5th St, New York City, NY 10001" +295482,Apple Airpods Headphones,1,150,11/10/19 12:54,"672 Hickory St, New York City, NY 10001" +295483,AAA Batteries (4-pack),1,2.99,11/06/19 15:46,"811 Willow St, Dallas, TX 75001" +295484,ThinkPad Laptop,1,999.99,11/20/19 16:31,"760 Main St, New York City, NY 10001" +295485,Vareebadd Phone,1,400,11/04/19 12:43,"399 Cherry St, Los Angeles, CA 90001" +295486,Wired Headphones,1,11.99,11/19/19 16:50,"515 River St, Los Angeles, CA 90001" +295487,Wired Headphones,1,11.99,11/24/19 04:29,"467 14th St, Austin, TX 73301" +295488,USB-C Charging Cable,1,11.95,11/30/19 10:13,"253 Maple St, Seattle, WA 98101" +295489,Apple Airpods Headphones,1,150,11/11/19 00:59,"730 5th St, San Francisco, CA 94016" +295490,20in Monitor,1,109.99,11/16/19 19:02,"690 Maple St, New York City, NY 10001" +295491,ThinkPad Laptop,1,999.99,11/22/19 16:44,"541 Lake St, Austin, TX 73301" +295492,Bose SoundSport Headphones,1,99.99,11/18/19 18:07,"811 Dogwood St, New York City, NY 10001" +295492,LG Washing Machine,1,600.0,11/18/19 18:07,"811 Dogwood St, New York City, NY 10001" +295493,Wired Headphones,1,11.99,11/23/19 14:45,"417 Highland St, Dallas, TX 75001" +295494,AA Batteries (4-pack),2,3.84,11/23/19 17:05,"248 Walnut St, Boston, MA 02215" +295495,Lightning Charging Cable,1,14.95,11/16/19 21:07,"954 Hill St, San Francisco, CA 94016" +295496,AA Batteries (4-pack),1,3.84,11/25/19 19:34,"473 Walnut St, Los Angeles, CA 90001" +295497,Wired Headphones,1,11.99,11/08/19 18:08,"925 Forest St, San Francisco, CA 94016" +295498,AA Batteries (4-pack),1,3.84,11/20/19 12:16,"507 Cedar St, San Francisco, CA 94016" +295499,Macbook Pro Laptop,1,1700,11/18/19 17:50,"419 7th St, New York City, NY 10001" +295500,AAA Batteries (4-pack),1,2.99,11/30/19 21:23,"274 Lincoln St, Los Angeles, CA 90001" +295501,AA Batteries (4-pack),1,3.84,11/21/19 19:49,"658 River St, San Francisco, CA 94016" +295502,Lightning Charging Cable,1,14.95,11/16/19 10:34,"824 Dogwood St, Dallas, TX 75001" +295503,Lightning Charging Cable,1,14.95,11/08/19 12:20,"161 11th St, Atlanta, GA 30301" +295504,Lightning Charging Cable,1,14.95,11/09/19 14:58,"698 Church St, San Francisco, CA 94016" +295505,iPhone,1,700,11/15/19 17:01,"739 Walnut St, Dallas, TX 75001" +295506,Wired Headphones,1,11.99,11/21/19 11:16,"847 10th St, Dallas, TX 75001" +295507,Bose SoundSport Headphones,1,99.99,11/04/19 11:21,"397 Hickory St, New York City, NY 10001" +295508,Wired Headphones,1,11.99,11/30/19 05:16,"298 North St, Dallas, TX 75001" +295509,Wired Headphones,2,11.99,11/11/19 11:44,"117 Lake St, Boston, MA 02215" +295510,ThinkPad Laptop,1,999.99,11/08/19 22:20,"265 Hill St, New York City, NY 10001" +295511,Google Phone,1,600,11/24/19 21:22,"682 Willow St, San Francisco, CA 94016" +295512,Wired Headphones,1,11.99,11/29/19 06:56,"777 Maple St, San Francisco, CA 94016" +295513,USB-C Charging Cable,1,11.95,11/14/19 18:34,"654 River St, Atlanta, GA 30301" +295514,Bose SoundSport Headphones,1,99.99,11/04/19 10:36,"836 Church St, New York City, NY 10001" +295515,USB-C Charging Cable,1,11.95,11/01/19 13:58,"484 South St, Boston, MA 02215" +295516,AAA Batteries (4-pack),1,2.99,11/25/19 16:33,"618 Hickory St, San Francisco, CA 94016" +295517,AA Batteries (4-pack),1,3.84,11/20/19 13:13,"912 5th St, Portland, ME 04101" +295518,27in FHD Monitor,1,149.99,11/14/19 12:52,"939 Spruce St, Dallas, TX 75001" +295519,Apple Airpods Headphones,1,150,11/17/19 13:15,"837 Church St, San Francisco, CA 94016" +295520,AAA Batteries (4-pack),1,2.99,11/24/19 16:49,"664 Hill St, Austin, TX 73301" +295521,AA Batteries (4-pack),1,3.84,11/21/19 09:42,"310 Adams St, New York City, NY 10001" +295522,Apple Airpods Headphones,1,150,11/04/19 13:47,"119 Willow St, Dallas, TX 75001" +295523,27in FHD Monitor,1,149.99,11/07/19 20:51,"646 8th St, Boston, MA 02215" +295524,34in Ultrawide Monitor,1,379.99,11/27/19 09:49,"399 4th St, Los Angeles, CA 90001" +295525,Lightning Charging Cable,1,14.95,11/23/19 10:11,"730 Ridge St, San Francisco, CA 94016" +295526,AAA Batteries (4-pack),1,2.99,11/02/19 10:30,"967 Lake St, Portland, OR 97035" +295527,AA Batteries (4-pack),3,3.84,11/13/19 23:55,"60 Spruce St, New York City, NY 10001" +295528,Wired Headphones,1,11.99,11/08/19 20:22,"477 Church St, San Francisco, CA 94016" +295529,iPhone,1,700,11/25/19 19:45,"994 Park St, Boston, MA 02215" +295530,Apple Airpods Headphones,1,150,11/12/19 00:03,"275 Lakeview St, Atlanta, GA 30301" +295531,Wired Headphones,1,11.99,11/02/19 12:23,"502 Spruce St, Austin, TX 73301" +295532,Wired Headphones,1,11.99,11/20/19 11:53,"190 Park St, Los Angeles, CA 90001" +295533,AA Batteries (4-pack),1,3.84,11/19/19 11:31,"500 6th St, New York City, NY 10001" +295534,USB-C Charging Cable,1,11.95,11/30/19 15:09,"967 11th St, Boston, MA 02215" +295535,AA Batteries (4-pack),2,3.84,11/27/19 21:30,"859 Willow St, Los Angeles, CA 90001" +295536,Apple Airpods Headphones,1,150,11/20/19 16:23,"324 Ridge St, Seattle, WA 98101" +295537,Vareebadd Phone,1,400,11/28/19 13:00,"742 9th St, Boston, MA 02215" +295538,Apple Airpods Headphones,1,150,11/25/19 15:52,"18 Jefferson St, Los Angeles, CA 90001" +295539,AA Batteries (4-pack),2,3.84,11/27/19 10:40,"774 14th St, Boston, MA 02215" +295540,Apple Airpods Headphones,1,150,11/28/19 12:21,"343 13th St, New York City, NY 10001" +295541,27in FHD Monitor,1,149.99,11/30/19 21:14,"149 Jackson St, San Francisco, CA 94016" +295542,27in 4K Gaming Monitor,1,389.99,11/25/19 22:16,"209 Johnson St, San Francisco, CA 94016" +295543,Lightning Charging Cable,2,14.95,11/03/19 15:09,"456 Church St, Los Angeles, CA 90001" +295544,Lightning Charging Cable,1,14.95,11/17/19 14:19,"805 Forest St, San Francisco, CA 94016" +295545,AAA Batteries (4-pack),2,2.99,11/27/19 19:00,"746 Spruce St, Dallas, TX 75001" +295546,Wired Headphones,1,11.99,11/26/19 09:46,"653 Jefferson St, Los Angeles, CA 90001" +295547,USB-C Charging Cable,1,11.95,11/12/19 21:47,"851 4th St, Los Angeles, CA 90001" +295548,Lightning Charging Cable,1,14.95,11/08/19 02:10,"137 Park St, Austin, TX 73301" +295549,AA Batteries (4-pack),1,3.84,11/08/19 21:12,"378 Highland St, San Francisco, CA 94016" +295550,Wired Headphones,1,11.99,11/09/19 13:54,"287 Forest St, Dallas, TX 75001" +295551,AA Batteries (4-pack),1,3.84,11/03/19 10:42,"224 Pine St, San Francisco, CA 94016" +295552,AA Batteries (4-pack),1,3.84,11/14/19 22:05,"289 Ridge St, Dallas, TX 75001" +295553,Wired Headphones,1,11.99,11/03/19 13:40,"968 Adams St, New York City, NY 10001" +295554,Bose SoundSport Headphones,1,99.99,11/14/19 15:00,"612 Highland St, Austin, TX 73301" +295555,Lightning Charging Cable,1,14.95,11/17/19 14:44,"787 Lakeview St, San Francisco, CA 94016" +295556,Lightning Charging Cable,2,14.95,11/17/19 18:28,"756 North St, New York City, NY 10001" +295557,Lightning Charging Cable,1,14.95,11/28/19 11:14,"119 Adams St, Atlanta, GA 30301" +295558,Apple Airpods Headphones,1,150,11/23/19 08:47,"77 1st St, San Francisco, CA 94016" +295559,AA Batteries (4-pack),1,3.84,11/14/19 22:26,"80 Hill St, Portland, ME 04101" +295560,Google Phone,1,600,11/06/19 18:48,"41 11th St, Boston, MA 02215" +295561,Flatscreen TV,1,300,11/15/19 09:10,"593 Jackson St, San Francisco, CA 94016" +295562,Apple Airpods Headphones,1,150,11/18/19 15:20,"934 Jackson St, Dallas, TX 75001" +295563,USB-C Charging Cable,1,11.95,11/14/19 18:28,"528 Willow St, Los Angeles, CA 90001" +295564,Wired Headphones,1,11.99,11/25/19 13:08,"683 6th St, San Francisco, CA 94016" +295565,Flatscreen TV,1,300,11/07/19 19:51,"416 Spruce St, Portland, OR 97035" +295566,27in 4K Gaming Monitor,1,389.99,11/27/19 06:48,"47 13th St, New York City, NY 10001" +295567,AA Batteries (4-pack),1,3.84,11/23/19 17:25,"122 Willow St, Atlanta, GA 30301" +295568,27in FHD Monitor,1,149.99,11/24/19 22:31,"876 Church St, Atlanta, GA 30301" +295569,Bose SoundSport Headphones,1,99.99,11/15/19 18:03,"195 4th St, San Francisco, CA 94016" +295570,USB-C Charging Cable,1,11.95,11/18/19 17:10,"224 Hill St, Boston, MA 02215" +295571,USB-C Charging Cable,1,11.95,11/08/19 13:35,"959 Adams St, San Francisco, CA 94016" +295572,AAA Batteries (4-pack),2,2.99,11/19/19 22:33,"970 Walnut St, Los Angeles, CA 90001" +295573,USB-C Charging Cable,1,11.95,11/10/19 15:57,"690 Cedar St, San Francisco, CA 94016" +295574,AA Batteries (4-pack),1,3.84,11/22/19 09:40,"606 Highland St, New York City, NY 10001" +295575,USB-C Charging Cable,1,11.95,11/17/19 23:54,"659 12th St, San Francisco, CA 94016" +295576,AA Batteries (4-pack),3,3.84,11/07/19 12:52,"377 12th St, Boston, MA 02215" +295577,27in 4K Gaming Monitor,1,389.99,11/28/19 15:50,"945 11th St, San Francisco, CA 94016" +295578,27in 4K Gaming Monitor,1,389.99,11/12/19 21:54,"301 4th St, San Francisco, CA 94016" +295579,20in Monitor,1,109.99,11/18/19 22:09,"869 5th St, Los Angeles, CA 90001" +295580,Flatscreen TV,1,300,11/21/19 21:07,"268 Highland St, San Francisco, CA 94016" +295581,Lightning Charging Cable,1,14.95,11/29/19 22:12,"964 West St, San Francisco, CA 94016" +295582,ThinkPad Laptop,1,999.99,11/10/19 10:53,"581 6th St, New York City, NY 10001" +295583,Bose SoundSport Headphones,1,99.99,11/07/19 12:36,"674 Lakeview St, San Francisco, CA 94016" +295584,AA Batteries (4-pack),2,3.84,11/02/19 19:58,"999 South St, New York City, NY 10001" +295584,27in 4K Gaming Monitor,1,389.99,11/02/19 19:58,"999 South St, New York City, NY 10001" +295585,27in FHD Monitor,1,149.99,11/23/19 10:17,"274 Madison St, Boston, MA 02215" +295586,iPhone,1,700,11/22/19 21:52,"417 14th St, San Francisco, CA 94016" +295587,Apple Airpods Headphones,1,150,11/21/19 12:02,"514 13th St, Los Angeles, CA 90001" +295588,AAA Batteries (4-pack),2,2.99,11/18/19 08:37,"703 Lincoln St, New York City, NY 10001" +295589,Wired Headphones,1,11.99,11/22/19 12:11,"227 1st St, San Francisco, CA 94016" +295590,AAA Batteries (4-pack),3,2.99,11/23/19 16:43,"882 Center St, San Francisco, CA 94016" +295591,Lightning Charging Cable,1,14.95,11/19/19 00:40,"68 Meadow St, Boston, MA 02215" +295592,AAA Batteries (4-pack),1,2.99,11/27/19 13:38,"266 Meadow St, San Francisco, CA 94016" +295593,34in Ultrawide Monitor,1,379.99,11/03/19 10:57,"966 12th St, Austin, TX 73301" +295594,Wired Headphones,1,11.99,11/26/19 20:35,"924 Cherry St, Austin, TX 73301" +295595,Wired Headphones,1,11.99,11/17/19 18:31,"488 Willow St, Seattle, WA 98101" +295596,iPhone,1,700,11/23/19 08:34,"502 Elm St, Portland, OR 97035" +295597,Wired Headphones,1,11.99,11/19/19 08:11,"62 Center St, San Francisco, CA 94016" +295598,Apple Airpods Headphones,1,150,11/02/19 13:28,"566 Dogwood St, San Francisco, CA 94016" +295599,20in Monitor,1,109.99,11/06/19 07:58,"92 Dogwood St, Los Angeles, CA 90001" +295600,Bose SoundSport Headphones,1,99.99,11/12/19 00:05,"784 Johnson St, Los Angeles, CA 90001" +295601,27in FHD Monitor,1,149.99,11/26/19 12:17,"72 2nd St, Boston, MA 02215" +295602,Lightning Charging Cable,1,14.95,11/30/19 14:09,"847 5th St, San Francisco, CA 94016" +295603,Lightning Charging Cable,1,14.95,11/16/19 16:06,"603 River St, Portland, OR 97035" +295604,Lightning Charging Cable,2,14.95,11/23/19 17:01,"832 Park St, Dallas, TX 75001" +295604,USB-C Charging Cable,1,11.95,11/23/19 17:01,"832 Park St, Dallas, TX 75001" +295605,Apple Airpods Headphones,1,150,11/02/19 22:38,"368 Lake St, Boston, MA 02215" +295606,Flatscreen TV,1,300,11/15/19 12:27,"407 Hickory St, San Francisco, CA 94016" +295607,Vareebadd Phone,1,400,11/29/19 19:05,"44 Lakeview St, Boston, MA 02215" +295608,Wired Headphones,1,11.99,11/03/19 16:50,"352 Sunset St, Boston, MA 02215" +295609,AAA Batteries (4-pack),1,2.99,11/10/19 22:16,"351 11th St, New York City, NY 10001" +295610,USB-C Charging Cable,1,11.95,11/30/19 08:32,"114 2nd St, San Francisco, CA 94016" +295611,Macbook Pro Laptop,1,1700,11/11/19 13:31,"345 Jackson St, Portland, ME 04101" +295612,iPhone,1,700,11/02/19 16:44,"484 Washington St, Boston, MA 02215" +295613,AA Batteries (4-pack),1,3.84,11/07/19 10:41,"102 12th St, San Francisco, CA 94016" +295614,Lightning Charging Cable,1,14.95,11/11/19 18:15,"780 River St, Boston, MA 02215" +295615,Wired Headphones,1,11.99,11/05/19 23:27,"592 Dogwood St, San Francisco, CA 94016" +295616,ThinkPad Laptop,1,999.99,11/13/19 19:42,"921 Lake St, Seattle, WA 98101" +295617,34in Ultrawide Monitor,1,379.99,11/04/19 11:58,"623 11th St, Los Angeles, CA 90001" +295618,Apple Airpods Headphones,1,150,11/18/19 14:53,"12 8th St, San Francisco, CA 94016" +295619,27in 4K Gaming Monitor,1,389.99,11/14/19 08:00,"45 4th St, San Francisco, CA 94016" +295620,Lightning Charging Cable,1,14.95,11/13/19 21:35,"956 1st St, San Francisco, CA 94016" +295621,Vareebadd Phone,1,400,11/15/19 16:13,"829 Center St, Boston, MA 02215" +295622,iPhone,1,700,11/08/19 23:29,"444 Maple St, San Francisco, CA 94016" +295622,Lightning Charging Cable,1,14.95,11/08/19 23:29,"444 Maple St, San Francisco, CA 94016" +295623,27in 4K Gaming Monitor,1,389.99,11/29/19 18:58,"842 Willow St, Los Angeles, CA 90001" +295624,Wired Headphones,1,11.99,11/28/19 10:29,"826 Center St, Seattle, WA 98101" +295625,20in Monitor,1,109.99,11/27/19 20:11,"301 Walnut St, Los Angeles, CA 90001" +295626,Apple Airpods Headphones,1,150,11/15/19 10:49,"437 Spruce St, San Francisco, CA 94016" +295627,Bose SoundSport Headphones,1,99.99,11/22/19 11:59,"874 River St, San Francisco, CA 94016" +295628,AA Batteries (4-pack),1,3.84,11/07/19 17:25,"534 Hill St, Portland, OR 97035" +295629,AA Batteries (4-pack),1,3.84,11/11/19 15:05,"180 Sunset St, Atlanta, GA 30301" +295630,iPhone,1,700,11/23/19 19:46,"21 Meadow St, Atlanta, GA 30301" +295631,20in Monitor,1,109.99,11/15/19 17:23,"943 11th St, San Francisco, CA 94016" +295632,Wired Headphones,1,11.99,11/13/19 15:17,"245 Pine St, New York City, NY 10001" +295633,Apple Airpods Headphones,1,150,11/20/19 14:04,"54 River St, Dallas, TX 75001" +295634,USB-C Charging Cable,1,11.95,11/19/19 15:50,"128 Willow St, New York City, NY 10001" +295635,AA Batteries (4-pack),1,3.84,11/30/19 20:54,"249 Main St, San Francisco, CA 94016" +295636,AAA Batteries (4-pack),1,2.99,11/20/19 16:50,"507 Pine St, New York City, NY 10001" +295637,USB-C Charging Cable,1,11.95,11/15/19 17:01,"745 Johnson St, Los Angeles, CA 90001" +295638,AA Batteries (4-pack),2,3.84,11/11/19 07:51,"819 Walnut St, San Francisco, CA 94016" +295639,34in Ultrawide Monitor,1,379.99,11/14/19 17:15,"69 Center St, Boston, MA 02215" +295640,Lightning Charging Cable,1,14.95,11/10/19 00:39,"156 Park St, Boston, MA 02215" +295641,USB-C Charging Cable,1,11.95,11/27/19 11:34,"962 13th St, Dallas, TX 75001" +295642,AAA Batteries (4-pack),1,2.99,11/28/19 12:56,"166 12th St, San Francisco, CA 94016" +295643,Google Phone,1,600,11/26/19 13:52,"508 Main St, Los Angeles, CA 90001" +295643,USB-C Charging Cable,1,11.95,11/26/19 13:52,"508 Main St, Los Angeles, CA 90001" +295644,iPhone,1,700,11/26/19 16:33,"862 Sunset St, San Francisco, CA 94016" +295645,Apple Airpods Headphones,1,150,11/07/19 21:39,"554 Willow St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +295646,Flatscreen TV,1,300,11/28/19 18:26,"783 5th St, San Francisco, CA 94016" +295646,Apple Airpods Headphones,1,150,11/28/19 18:26,"783 5th St, San Francisco, CA 94016" +295647,27in FHD Monitor,1,149.99,11/04/19 23:07,"548 Highland St, Boston, MA 02215" +295648,27in FHD Monitor,1,149.99,11/14/19 19:12,"929 South St, San Francisco, CA 94016" +295649,AA Batteries (4-pack),1,3.84,11/27/19 14:12,"27 Ridge St, New York City, NY 10001" +295650,27in FHD Monitor,1,149.99,11/24/19 17:39,"666 Wilson St, Los Angeles, CA 90001" +295651,Apple Airpods Headphones,1,150,11/02/19 16:12,"517 Spruce St, San Francisco, CA 94016" +295652,Lightning Charging Cable,1,14.95,11/30/19 18:32,"914 Lincoln St, San Francisco, CA 94016" +295653,Bose SoundSport Headphones,1,99.99,11/17/19 00:49,"188 Jackson St, San Francisco, CA 94016" +295654,AA Batteries (4-pack),1,3.84,11/21/19 17:14,"786 Maple St, Los Angeles, CA 90001" +295655,USB-C Charging Cable,1,11.95,11/05/19 11:16,"810 Madison St, Los Angeles, CA 90001" +295656,Bose SoundSport Headphones,1,99.99,11/16/19 11:00,"951 10th St, Dallas, TX 75001" +295657,USB-C Charging Cable,1,11.95,11/21/19 12:57,"705 Madison St, San Francisco, CA 94016" +295658,Wired Headphones,1,11.99,11/25/19 20:53,"603 Madison St, Portland, OR 97035" +295659,USB-C Charging Cable,1,11.95,11/25/19 18:35,"23 Lakeview St, San Francisco, CA 94016" +295660,AA Batteries (4-pack),1,3.84,11/28/19 22:20,"690 Main St, Seattle, WA 98101" +295661,Lightning Charging Cable,1,14.95,11/26/19 21:41,"680 13th St, Seattle, WA 98101" +295662,LG Washing Machine,1,600.0,11/23/19 14:51,"783 Spruce St, New York City, NY 10001" +295663,AA Batteries (4-pack),1,3.84,11/06/19 19:57,"36 Lake St, Dallas, TX 75001" +295664,27in FHD Monitor,1,149.99,11/26/19 19:06,"555 6th St, Boston, MA 02215" +295665,ThinkPad Laptop,1,999.99,11/12/19 01:16,"666 Meadow St, Los Angeles, CA 90001" +295665,USB-C Charging Cable,1,11.95,11/12/19 01:16,"666 Meadow St, Los Angeles, CA 90001" +295666,Apple Airpods Headphones,1,150,11/23/19 20:37,"196 4th St, Portland, OR 97035" +295667,AA Batteries (4-pack),2,3.84,11/21/19 21:10,"900 Wilson St, New York City, NY 10001" +295668,Bose SoundSport Headphones,1,99.99,11/06/19 12:38,"685 Hill St, Seattle, WA 98101" +295669,Bose SoundSport Headphones,1,99.99,11/10/19 11:06,"651 Jackson St, Seattle, WA 98101" +295670,ThinkPad Laptop,1,999.99,11/28/19 11:37,"672 Cherry St, San Francisco, CA 94016" +295671,AAA Batteries (4-pack),2,2.99,11/27/19 20:55,"565 Cedar St, New York City, NY 10001" +295672,27in 4K Gaming Monitor,1,389.99,11/02/19 18:48,"166 6th St, New York City, NY 10001" +295673,27in 4K Gaming Monitor,1,389.99,11/05/19 16:30,"55 Dogwood St, New York City, NY 10001" +295674,Wired Headphones,2,11.99,11/20/19 19:59,"544 Cherry St, New York City, NY 10001" +295675,AAA Batteries (4-pack),2,2.99,11/22/19 14:42,"686 Main St, Los Angeles, CA 90001" +295676,Macbook Pro Laptop,1,1700,11/07/19 21:01,"234 Jackson St, Dallas, TX 75001" +295677,Bose SoundSport Headphones,1,99.99,11/07/19 16:42,"965 Johnson St, Boston, MA 02215" +295678,27in FHD Monitor,1,149.99,11/18/19 15:40,"11 West St, Los Angeles, CA 90001" +295679,27in 4K Gaming Monitor,1,389.99,11/30/19 15:16,"692 Spruce St, San Francisco, CA 94016" +295680,USB-C Charging Cable,1,11.95,11/29/19 10:44,"428 7th St, Portland, ME 04101" +295681,Apple Airpods Headphones,1,150,11/27/19 15:02,"78 4th St, San Francisco, CA 94016" +,,,,, +295682,Bose SoundSport Headphones,1,99.99,11/08/19 19:02,"131 Forest St, Boston, MA 02215" +295683,34in Ultrawide Monitor,1,379.99,11/29/19 11:37,"438 Willow St, San Francisco, CA 94016" +295684,Apple Airpods Headphones,1,150,11/19/19 09:59,"472 Jefferson St, Austin, TX 73301" +295685,AA Batteries (4-pack),1,3.84,11/21/19 16:48,"290 Cedar St, Los Angeles, CA 90001" +295686,Lightning Charging Cable,1,14.95,11/05/19 21:36,"732 Lincoln St, Dallas, TX 75001" +295687,AAA Batteries (4-pack),1,2.99,11/16/19 14:00,"56 Hickory St, Boston, MA 02215" +295688,27in FHD Monitor,1,149.99,11/20/19 16:53,"536 12th St, Los Angeles, CA 90001" +295689,20in Monitor,1,109.99,11/18/19 22:12,"681 Maple St, New York City, NY 10001" +295690,iPhone,1,700,11/07/19 15:48,"480 10th St, Seattle, WA 98101" +295690,Lightning Charging Cable,2,14.95,11/07/19 15:48,"480 10th St, Seattle, WA 98101" +295691,27in FHD Monitor,1,149.99,11/16/19 18:23,"289 Lake St, San Francisco, CA 94016" +295692,27in 4K Gaming Monitor,1,389.99,11/11/19 08:22,"853 Maple St, Austin, TX 73301" +295693,Google Phone,1,600,11/04/19 14:05,"232 12th St, Seattle, WA 98101" +295694,Wired Headphones,1,11.99,11/10/19 15:13,"63 Elm St, Boston, MA 02215" +295695,Lightning Charging Cable,1,14.95,11/11/19 06:12,"387 Washington St, Los Angeles, CA 90001" +295696,27in FHD Monitor,1,149.99,11/07/19 15:29,"776 Cherry St, Austin, TX 73301" +295697,Wired Headphones,1,11.99,11/25/19 14:40,"649 9th St, New York City, NY 10001" +295698,USB-C Charging Cable,1,11.95,11/20/19 08:30,"203 Lincoln St, Austin, TX 73301" +295699,27in FHD Monitor,1,149.99,11/03/19 21:19,"703 West St, New York City, NY 10001" +295700,Macbook Pro Laptop,1,1700,11/28/19 22:52,"293 Hill St, Boston, MA 02215" +295701,AAA Batteries (4-pack),2,2.99,11/03/19 13:59,"800 Maple St, Seattle, WA 98101" +295702,Lightning Charging Cable,1,14.95,11/21/19 10:34,"994 Ridge St, San Francisco, CA 94016" +295703,Lightning Charging Cable,1,14.95,11/04/19 19:35,"974 Cedar St, San Francisco, CA 94016" +295704,iPhone,1,700,11/25/19 12:13,"839 Madison St, San Francisco, CA 94016" +295705,USB-C Charging Cable,1,11.95,11/26/19 00:08,"723 Forest St, San Francisco, CA 94016" +295706,Lightning Charging Cable,1,14.95,11/29/19 10:37,"645 10th St, Portland, OR 97035" +295707,USB-C Charging Cable,1,11.95,11/26/19 00:42,"895 Jackson St, New York City, NY 10001" +295708,USB-C Charging Cable,1,11.95,11/28/19 20:16,"728 Lincoln St, Seattle, WA 98101" +295709,Wired Headphones,1,11.99,11/07/19 17:11,"858 5th St, Dallas, TX 75001" +295710,Lightning Charging Cable,1,14.95,11/24/19 12:28,"216 Johnson St, Los Angeles, CA 90001" +295711,iPhone,1,700,11/06/19 17:03,"394 Adams St, New York City, NY 10001" +295712,27in FHD Monitor,1,149.99,11/06/19 11:19,"437 Jefferson St, Portland, ME 04101" +295713,Lightning Charging Cable,1,14.95,11/07/19 14:38,"160 Highland St, San Francisco, CA 94016" +295714,Bose SoundSport Headphones,1,99.99,11/23/19 10:18,"918 Willow St, Seattle, WA 98101" +295715,Lightning Charging Cable,1,14.95,11/07/19 14:01,"391 Lincoln St, Seattle, WA 98101" +295716,Macbook Pro Laptop,1,1700,11/22/19 02:47,"54 12th St, San Francisco, CA 94016" +295717,Apple Airpods Headphones,1,150,11/21/19 16:12,"58 9th St, Portland, ME 04101" +295718,Macbook Pro Laptop,1,1700,11/20/19 17:10,"233 Madison St, Atlanta, GA 30301" +295719,Apple Airpods Headphones,1,150,11/20/19 22:07,"348 7th St, Atlanta, GA 30301" +295720,Bose SoundSport Headphones,1,99.99,11/23/19 18:53,"715 Johnson St, Seattle, WA 98101" +295721,USB-C Charging Cable,1,11.95,11/18/19 18:18,"938 Adams St, Atlanta, GA 30301" +295722,AAA Batteries (4-pack),4,2.99,11/08/19 07:54,"871 Cedar St, Austin, TX 73301" +295723,Apple Airpods Headphones,1,150,11/15/19 18:36,"569 Center St, Austin, TX 73301" +295724,Lightning Charging Cable,1,14.95,11/27/19 10:11,"102 Pine St, San Francisco, CA 94016" +295725,Wired Headphones,1,11.99,11/10/19 15:35,"16 Dogwood St, Los Angeles, CA 90001" +295726,Lightning Charging Cable,1,14.95,11/04/19 21:59,"353 9th St, Los Angeles, CA 90001" +295726,Bose SoundSport Headphones,1,99.99,11/04/19 21:59,"353 9th St, Los Angeles, CA 90001" +295727,Wired Headphones,1,11.99,11/22/19 11:24,"380 Lake St, Dallas, TX 75001" +295728,USB-C Charging Cable,2,11.95,11/13/19 02:36,"41 River St, San Francisco, CA 94016" +295729,AAA Batteries (4-pack),1,2.99,11/23/19 09:29,"843 Lake St, San Francisco, CA 94016" +295730,AA Batteries (4-pack),1,3.84,11/18/19 17:41,"902 7th St, Austin, TX 73301" +295731,Flatscreen TV,1,300,11/23/19 10:23,"3 Adams St, New York City, NY 10001" +295732,Wired Headphones,1,11.99,11/25/19 13:04,"621 Lincoln St, New York City, NY 10001" +295733,AA Batteries (4-pack),2,3.84,11/23/19 14:52,"992 Elm St, New York City, NY 10001" +295734,AAA Batteries (4-pack),1,2.99,11/20/19 12:35,"213 North St, San Francisco, CA 94016" +295735,AAA Batteries (4-pack),2,2.99,11/06/19 19:12,"938 Park St, Boston, MA 02215" +295736,USB-C Charging Cable,2,11.95,11/16/19 00:15,"698 Spruce St, New York City, NY 10001" +295736,AA Batteries (4-pack),1,3.84,11/16/19 00:15,"698 Spruce St, New York City, NY 10001" +295737,AA Batteries (4-pack),1,3.84,11/24/19 23:39,"468 Center St, San Francisco, CA 94016" +295738,AAA Batteries (4-pack),1,2.99,11/05/19 19:19,"228 Wilson St, Dallas, TX 75001" +295739,AA Batteries (4-pack),1,3.84,11/28/19 07:51,"122 Highland St, Atlanta, GA 30301" +295740,AA Batteries (4-pack),1,3.84,11/26/19 12:04,"801 Park St, Dallas, TX 75001" +295741,AAA Batteries (4-pack),1,2.99,11/11/19 10:18,"10 8th St, New York City, NY 10001" +295742,Lightning Charging Cable,1,14.95,11/01/19 16:56,"795 7th St, New York City, NY 10001" +295743,Lightning Charging Cable,1,14.95,11/03/19 19:41,"940 River St, Dallas, TX 75001" +295744,Lightning Charging Cable,1,14.95,11/05/19 12:56,"306 North St, Seattle, WA 98101" +295745,27in 4K Gaming Monitor,1,389.99,11/25/19 08:39,"329 13th St, Portland, OR 97035" +295746,20in Monitor,1,109.99,11/25/19 11:20,"828 Maple St, San Francisco, CA 94016" +295747,Apple Airpods Headphones,1,150,11/27/19 15:22,"568 1st St, New York City, NY 10001" +295748,AA Batteries (4-pack),3,3.84,11/26/19 09:44,"155 North St, San Francisco, CA 94016" +295749,AA Batteries (4-pack),1,3.84,11/13/19 19:03,"999 Wilson St, Boston, MA 02215" +295750,27in FHD Monitor,1,149.99,11/04/19 17:47,"222 Chestnut St, Atlanta, GA 30301" +295751,AA Batteries (4-pack),1,3.84,11/12/19 11:44,"32 Main St, San Francisco, CA 94016" +295752,iPhone,1,700,11/27/19 14:32,"748 Chestnut St, Boston, MA 02215" +295753,AAA Batteries (4-pack),2,2.99,11/27/19 22:16,"201 Maple St, San Francisco, CA 94016" +295754,AA Batteries (4-pack),2,3.84,11/09/19 01:29,"134 Park St, Los Angeles, CA 90001" +295755,Bose SoundSport Headphones,1,99.99,11/11/19 11:30,"677 Jefferson St, Atlanta, GA 30301" +295756,AA Batteries (4-pack),1,3.84,11/03/19 23:55,"939 Walnut St, Dallas, TX 75001" +295757,Google Phone,1,600,11/21/19 14:44,"605 River St, Dallas, TX 75001" +295758,AAA Batteries (4-pack),1,2.99,11/15/19 18:50,"505 Sunset St, Los Angeles, CA 90001" +295759,Lightning Charging Cable,1,14.95,11/08/19 17:36,"959 Cherry St, San Francisco, CA 94016" +295760,Lightning Charging Cable,1,14.95,11/18/19 00:58,"740 Madison St, San Francisco, CA 94016" +295761,Bose SoundSport Headphones,1,99.99,11/19/19 17:25,"609 North St, San Francisco, CA 94016" +295762,USB-C Charging Cable,1,11.95,11/05/19 07:35,"614 Dogwood St, Atlanta, GA 30301" +295763,USB-C Charging Cable,1,11.95,11/06/19 22:00,"30 13th St, Boston, MA 02215" +295764,iPhone,1,700,11/26/19 13:06,"893 Madison St, Portland, OR 97035" +295765,AA Batteries (4-pack),1,3.84,11/14/19 13:36,"409 12th St, New York City, NY 10001" +295766,Lightning Charging Cable,1,14.95,11/14/19 03:27,"17 Hill St, Boston, MA 02215" +295767,27in FHD Monitor,1,149.99,11/27/19 13:17,"124 Spruce St, Boston, MA 02215" +295768,USB-C Charging Cable,1,11.95,11/12/19 16:37,"921 Cherry St, Los Angeles, CA 90001" +295769,Wired Headphones,1,11.99,11/25/19 12:10,"430 Forest St, Boston, MA 02215" +295770,AAA Batteries (4-pack),1,2.99,11/15/19 16:40,"720 Sunset St, San Francisco, CA 94016" +295771,Bose SoundSport Headphones,1,99.99,11/12/19 14:12,"550 Lincoln St, New York City, NY 10001" +295772,Bose SoundSport Headphones,1,99.99,11/17/19 22:18,"70 Park St, Los Angeles, CA 90001" +295773,34in Ultrawide Monitor,1,379.99,11/26/19 14:04,"500 9th St, Portland, OR 97035" +295774,20in Monitor,1,109.99,11/01/19 19:23,"327 Wilson St, San Francisco, CA 94016" +295775,Apple Airpods Headphones,1,150,11/26/19 14:06,"25 Wilson St, Austin, TX 73301" +295776,Bose SoundSport Headphones,1,99.99,11/12/19 03:07,"176 Hickory St, Dallas, TX 75001" +295777,Lightning Charging Cable,1,14.95,11/17/19 18:21,"847 8th St, Seattle, WA 98101" +295778,AAA Batteries (4-pack),2,2.99,11/30/19 13:45,"449 9th St, Los Angeles, CA 90001" +295779,Wired Headphones,1,11.99,11/10/19 15:18,"248 South St, Boston, MA 02215" +295780,AAA Batteries (4-pack),1,2.99,11/20/19 10:06,"581 Cherry St, San Francisco, CA 94016" +295781,USB-C Charging Cable,1,11.95,11/08/19 20:07,"170 Cedar St, San Francisco, CA 94016" +295782,27in 4K Gaming Monitor,1,389.99,11/01/19 12:36,"844 Lincoln St, New York City, NY 10001" +295783,USB-C Charging Cable,1,11.95,11/19/19 11:28,"273 Forest St, Portland, OR 97035" +295784,AA Batteries (4-pack),1,3.84,11/09/19 13:04,"499 River St, Los Angeles, CA 90001" +295785,Wired Headphones,1,11.99,11/19/19 09:29,"282 1st St, San Francisco, CA 94016" +295786,Lightning Charging Cable,1,14.95,11/05/19 22:05,"369 14th St, Atlanta, GA 30301" +295787,AAA Batteries (4-pack),2,2.99,11/01/19 16:36,"136 Cherry St, Los Angeles, CA 90001" +295788,USB-C Charging Cable,1,11.95,11/28/19 15:19,"278 6th St, Los Angeles, CA 90001" +295789,ThinkPad Laptop,1,999.99,11/20/19 15:38,"66 8th St, Dallas, TX 75001" +295790,Apple Airpods Headphones,1,150,11/30/19 08:46,"338 Dogwood St, New York City, NY 10001" +295791,iPhone,1,700,11/06/19 14:35,"51 Elm St, San Francisco, CA 94016" +295792,Lightning Charging Cable,1,14.95,11/06/19 14:57,"240 12th St, San Francisco, CA 94016" +295793,USB-C Charging Cable,2,11.95,11/08/19 17:03,"631 4th St, San Francisco, CA 94016" +295794,Lightning Charging Cable,1,14.95,11/08/19 23:37,"320 9th St, Atlanta, GA 30301" +295795,USB-C Charging Cable,1,11.95,11/13/19 13:48,"945 5th St, Seattle, WA 98101" +295796,Lightning Charging Cable,1,14.95,11/01/19 22:13,"63 14th St, San Francisco, CA 94016" +295797,AA Batteries (4-pack),1,3.84,11/07/19 08:21,"252 10th St, Los Angeles, CA 90001" +295798,34in Ultrawide Monitor,1,379.99,11/12/19 11:16,"659 Madison St, San Francisco, CA 94016" +295799,AAA Batteries (4-pack),1,2.99,11/04/19 14:35,"635 8th St, Boston, MA 02215" +295800,AA Batteries (4-pack),1,3.84,11/16/19 14:57,"102 2nd St, Dallas, TX 75001" +295801,Flatscreen TV,1,300,11/04/19 20:37,"51 River St, San Francisco, CA 94016" +295802,AAA Batteries (4-pack),4,2.99,11/17/19 20:23,"589 Dogwood St, Portland, OR 97035" +295803,Lightning Charging Cable,1,14.95,11/17/19 12:32,"112 South St, San Francisco, CA 94016" +295804,Apple Airpods Headphones,1,150,11/18/19 21:40,"549 Adams St, San Francisco, CA 94016" +295805,AAA Batteries (4-pack),1,2.99,11/25/19 14:40,"309 Jefferson St, New York City, NY 10001" +295806,27in FHD Monitor,1,149.99,11/02/19 15:11,"816 Washington St, San Francisco, CA 94016" +295807,27in 4K Gaming Monitor,1,389.99,11/20/19 22:14,"14 10th St, Seattle, WA 98101" +295808,Lightning Charging Cable,1,14.95,11/07/19 23:23,"930 Dogwood St, New York City, NY 10001" +295809,Lightning Charging Cable,1,14.95,11/21/19 14:47,"287 7th St, San Francisco, CA 94016" +295810,Apple Airpods Headphones,1,150,11/24/19 05:40,"978 12th St, Portland, OR 97035" +295811,Flatscreen TV,1,300,11/28/19 10:35,"963 1st St, Seattle, WA 98101" +295812,Apple Airpods Headphones,1,150,11/23/19 21:10,"770 Chestnut St, New York City, NY 10001" +295813,Apple Airpods Headphones,1,150,11/29/19 08:17,"976 Washington St, Portland, OR 97035" +295814,AAA Batteries (4-pack),1,2.99,11/30/19 17:26,"151 6th St, San Francisco, CA 94016" +295815,Google Phone,1,600,11/04/19 22:37,"560 Cherry St, Portland, OR 97035" +295816,Lightning Charging Cable,1,14.95,11/30/19 17:58,"937 Maple St, Boston, MA 02215" +295817,AAA Batteries (4-pack),2,2.99,11/23/19 20:35,"418 1st St, Los Angeles, CA 90001" +295818,Bose SoundSport Headphones,1,99.99,11/20/19 09:54,"689 Lake St, Los Angeles, CA 90001" +295819,Wired Headphones,1,11.99,11/17/19 08:37,"205 6th St, Los Angeles, CA 90001" +295820,Bose SoundSport Headphones,1,99.99,11/30/19 19:54,"325 5th St, San Francisco, CA 94016" +295821,AA Batteries (4-pack),1,3.84,11/20/19 12:18,"213 South St, Seattle, WA 98101" +295822,Lightning Charging Cable,1,14.95,11/10/19 11:32,"187 Lincoln St, Portland, OR 97035" +295823,Wired Headphones,1,11.99,11/20/19 22:28,"399 5th St, Atlanta, GA 30301" +295824,Flatscreen TV,1,300,11/29/19 12:03,"253 10th St, New York City, NY 10001" +295825,Flatscreen TV,1,300,11/14/19 15:13,"553 Adams St, Atlanta, GA 30301" +295826,Bose SoundSport Headphones,1,99.99,11/05/19 01:57,"474 Ridge St, San Francisco, CA 94016" +295827,USB-C Charging Cable,2,11.95,11/01/19 20:41,"553 8th St, Atlanta, GA 30301" +295828,Bose SoundSport Headphones,1,99.99,11/30/19 13:26,"277 Willow St, New York City, NY 10001" +295829,27in 4K Gaming Monitor,1,389.99,11/08/19 10:50,"735 12th St, Seattle, WA 98101" +295830,USB-C Charging Cable,1,11.95,11/29/19 18:18,"586 Walnut St, Boston, MA 02215" +295831,Apple Airpods Headphones,1,150,11/11/19 11:38,"20 4th St, Atlanta, GA 30301" +295832,Bose SoundSport Headphones,1,99.99,11/01/19 09:27,"586 10th St, San Francisco, CA 94016" +295833,AA Batteries (4-pack),1,3.84,11/09/19 01:44,"356 Pine St, Boston, MA 02215" +295834,USB-C Charging Cable,1,11.95,11/24/19 09:33,"996 Main St, San Francisco, CA 94016" +295835,Apple Airpods Headphones,1,150,11/05/19 18:45,"344 Lincoln St, Boston, MA 02215" +295836,Google Phone,1,600,11/18/19 00:10,"604 Johnson St, Los Angeles, CA 90001" +295836,USB-C Charging Cable,2,11.95,11/18/19 00:10,"604 Johnson St, Los Angeles, CA 90001" +295837,Lightning Charging Cable,1,14.95,11/18/19 17:41,"957 Meadow St, Boston, MA 02215" +295838,Bose SoundSport Headphones,1,99.99,11/29/19 10:30,"901 11th St, Seattle, WA 98101" +295839,AA Batteries (4-pack),2,3.84,11/05/19 18:44,"625 Center St, Portland, OR 97035" +295840,Lightning Charging Cable,1,14.95,11/26/19 07:30,"570 Main St, San Francisco, CA 94016" +295841,Bose SoundSport Headphones,1,99.99,11/02/19 16:50,"832 Elm St, Portland, OR 97035" +295842,Google Phone,1,600,11/27/19 18:28,"438 South St, San Francisco, CA 94016" +295842,USB-C Charging Cable,1,11.95,11/27/19 18:28,"438 South St, San Francisco, CA 94016" +295843,Bose SoundSport Headphones,1,99.99,11/01/19 12:22,"752 River St, San Francisco, CA 94016" +295844,USB-C Charging Cable,1,11.95,11/23/19 18:10,"999 Center St, Los Angeles, CA 90001" +295845,AAA Batteries (4-pack),1,2.99,11/23/19 17:52,"287 Maple St, Seattle, WA 98101" +295846,Wired Headphones,1,11.99,11/25/19 15:26,"269 4th St, Seattle, WA 98101" +295847,USB-C Charging Cable,1,11.95,11/09/19 10:12,"629 4th St, New York City, NY 10001" +295847,AA Batteries (4-pack),2,3.84,11/09/19 10:12,"629 4th St, New York City, NY 10001" +295848,iPhone,1,700,11/07/19 16:18,"281 Cedar St, Boston, MA 02215" +295848,Lightning Charging Cable,1,14.95,11/07/19 16:18,"281 Cedar St, Boston, MA 02215" +295849,USB-C Charging Cable,1,11.95,11/15/19 21:25,"672 4th St, Boston, MA 02215" +295850,USB-C Charging Cable,1,11.95,11/30/19 19:39,"720 Maple St, Dallas, TX 75001" +295851,Google Phone,1,600,11/10/19 12:23,"9 13th St, Seattle, WA 98101" +295851,Wired Headphones,1,11.99,11/10/19 12:23,"9 13th St, Seattle, WA 98101" +295852,Lightning Charging Cable,1,14.95,11/25/19 21:55,"93 4th St, San Francisco, CA 94016" +295853,AAA Batteries (4-pack),1,2.99,11/08/19 17:19,"194 Hill St, Los Angeles, CA 90001" +295854,Bose SoundSport Headphones,1,99.99,11/21/19 21:53,"870 River St, San Francisco, CA 94016" +295855,Wired Headphones,1,11.99,11/20/19 22:45,"342 Johnson St, Austin, TX 73301" +295856,AAA Batteries (4-pack),1,2.99,11/26/19 20:24,"571 Cherry St, Boston, MA 02215" +295857,Lightning Charging Cable,1,14.95,11/05/19 16:07,"456 Ridge St, San Francisco, CA 94016" +295858,Wired Headphones,1,11.99,11/13/19 14:59,"9 13th St, Seattle, WA 98101" +295858,USB-C Charging Cable,1,11.95,11/13/19 14:59,"9 13th St, Seattle, WA 98101" +295859,ThinkPad Laptop,1,999.99,11/01/19 12:26,"971 Johnson St, Portland, OR 97035" +295860,Lightning Charging Cable,1,14.95,11/06/19 19:37,"65 Adams St, San Francisco, CA 94016" +295861,AA Batteries (4-pack),4,3.84,11/25/19 13:25,"943 Hill St, Boston, MA 02215" +295862,ThinkPad Laptop,1,999.99,11/26/19 19:14,"639 Cedar St, Los Angeles, CA 90001" +295863,USB-C Charging Cable,1,11.95,11/26/19 08:50,"816 Main St, Atlanta, GA 30301" +295864,Apple Airpods Headphones,1,150,11/19/19 20:36,"851 Maple St, San Francisco, CA 94016" +295865,27in FHD Monitor,1,149.99,11/02/19 18:41,"108 6th St, Los Angeles, CA 90001" +295866,Wired Headphones,1,11.99,11/07/19 16:09,"995 8th St, Dallas, TX 75001" +295867,AAA Batteries (4-pack),2,2.99,11/14/19 18:09,"388 5th St, San Francisco, CA 94016" +295868,USB-C Charging Cable,1,11.95,11/10/19 21:35,"517 Dogwood St, Los Angeles, CA 90001" +295869,USB-C Charging Cable,3,11.95,11/08/19 17:57,"526 Sunset St, San Francisco, CA 94016" +295870,Lightning Charging Cable,1,14.95,11/22/19 10:35,"233 North St, Portland, OR 97035" +295871,iPhone,1,700,11/29/19 00:05,"774 1st St, Los Angeles, CA 90001" +295872,Wired Headphones,2,11.99,11/22/19 18:16,"515 Johnson St, Dallas, TX 75001" +295873,AA Batteries (4-pack),1,3.84,11/29/19 23:25,"941 13th St, Boston, MA 02215" +295874,Lightning Charging Cable,1,14.95,11/03/19 21:27,"571 Jackson St, Austin, TX 73301" +295875,Lightning Charging Cable,1,14.95,11/19/19 17:29,"714 2nd St, San Francisco, CA 94016" +295876,Apple Airpods Headphones,1,150,11/23/19 17:43,"938 Spruce St, San Francisco, CA 94016" +295877,USB-C Charging Cable,1,11.95,11/04/19 02:07,"933 Sunset St, San Francisco, CA 94016" +295878,Bose SoundSport Headphones,1,99.99,11/23/19 08:32,"466 Maple St, Portland, OR 97035" +295879,AA Batteries (4-pack),1,3.84,11/12/19 16:37,"11 Madison St, San Francisco, CA 94016" +295880,Bose SoundSport Headphones,1,99.99,11/01/19 19:04,"555 Elm St, San Francisco, CA 94016" +295881,AAA Batteries (4-pack),1,2.99,11/06/19 15:42,"76 Cherry St, Dallas, TX 75001" +295882,Wired Headphones,1,11.99,11/28/19 20:20,"754 Ridge St, San Francisco, CA 94016" +295883,AAA Batteries (4-pack),2,2.99,11/30/19 20:47,"656 Adams St, San Francisco, CA 94016" +295884,USB-C Charging Cable,1,11.95,11/09/19 20:37,"258 Madison St, Los Angeles, CA 90001" +295885,Wired Headphones,1,11.99,11/27/19 08:07,"547 8th St, San Francisco, CA 94016" +295885,USB-C Charging Cable,1,11.95,11/27/19 08:07,"547 8th St, San Francisco, CA 94016" +295886,Bose SoundSport Headphones,1,99.99,11/16/19 11:11,"83 Jackson St, Boston, MA 02215" +295887,Bose SoundSport Headphones,1,99.99,11/14/19 21:05,"404 South St, Seattle, WA 98101" +295888,Wired Headphones,1,11.99,11/23/19 14:05,"210 Jackson St, New York City, NY 10001" +295889,27in FHD Monitor,1,149.99,11/05/19 18:34,"574 11th St, Austin, TX 73301" +295890,Wired Headphones,1,11.99,11/10/19 12:42,"840 13th St, Seattle, WA 98101" +295891,iPhone,1,700,11/12/19 16:32,"371 Church St, San Francisco, CA 94016" +295892,AA Batteries (4-pack),1,3.84,11/20/19 16:59,"841 Main St, Atlanta, GA 30301" +295893,Wired Headphones,1,11.99,11/11/19 15:43,"809 Forest St, San Francisco, CA 94016" +295894,USB-C Charging Cable,1,11.95,11/23/19 13:58,"166 Wilson St, Dallas, TX 75001" +295895,iPhone,1,700,11/04/19 11:40,"679 Main St, Los Angeles, CA 90001" +295896,Wired Headphones,1,11.99,11/11/19 11:29,"340 Meadow St, Los Angeles, CA 90001" +295897,USB-C Charging Cable,1,11.95,11/28/19 17:30,"980 14th St, Boston, MA 02215" +295898,AA Batteries (4-pack),1,3.84,11/07/19 18:15,"206 5th St, Los Angeles, CA 90001" +295899,iPhone,1,700,11/27/19 21:34,"911 Lake St, Dallas, TX 75001" +295900,Flatscreen TV,1,300,11/22/19 15:26,"163 Cedar St, Los Angeles, CA 90001" +295901,Bose SoundSport Headphones,1,99.99,11/29/19 19:35,"534 Dogwood St, Portland, OR 97035" +295902,Bose SoundSport Headphones,1,99.99,11/22/19 10:38,"276 Main St, San Francisco, CA 94016" +295903,USB-C Charging Cable,1,11.95,11/19/19 16:20,"302 5th St, San Francisco, CA 94016" +295904,Lightning Charging Cable,1,14.95,11/18/19 01:23,"387 Pine St, Dallas, TX 75001" +295905,Wired Headphones,1,11.99,11/19/19 17:50,"98 Hickory St, San Francisco, CA 94016" +295906,Wired Headphones,1,11.99,11/21/19 08:27,"204 Johnson St, Seattle, WA 98101" +295907,AA Batteries (4-pack),1,3.84,11/27/19 13:37,"660 Madison St, Dallas, TX 75001" +295908,Macbook Pro Laptop,1,1700,11/16/19 18:06,"583 Jefferson St, Boston, MA 02215" +295909,AAA Batteries (4-pack),1,2.99,11/20/19 12:15,"976 Willow St, San Francisco, CA 94016" +295910,Apple Airpods Headphones,1,150,11/22/19 13:48,"715 13th St, Los Angeles, CA 90001" +295911,USB-C Charging Cable,1,11.95,11/10/19 17:08,"586 Highland St, Los Angeles, CA 90001" +295912,AA Batteries (4-pack),3,3.84,11/18/19 01:19,"635 Willow St, Los Angeles, CA 90001" +295913,27in FHD Monitor,1,149.99,11/13/19 01:08,"472 10th St, Los Angeles, CA 90001" +295914,AAA Batteries (4-pack),5,2.99,11/15/19 20:32,"948 6th St, San Francisco, CA 94016" +295915,Bose SoundSport Headphones,1,99.99,11/13/19 09:41,"858 Washington St, Los Angeles, CA 90001" +295916,Wired Headphones,1,11.99,11/11/19 22:43,"587 Jefferson St, Portland, OR 97035" +295917,USB-C Charging Cable,1,11.95,11/15/19 15:55,"152 5th St, Seattle, WA 98101" +295918,USB-C Charging Cable,1,11.95,12/01/19 01:29,"701 8th St, Austin, TX 73301" +295919,AAA Batteries (4-pack),3,2.99,11/16/19 19:05,"314 Pine St, Los Angeles, CA 90001" +295920,27in FHD Monitor,1,149.99,11/23/19 12:21,"889 Wilson St, San Francisco, CA 94016" +295921,27in FHD Monitor,1,149.99,11/14/19 12:04,"473 5th St, Los Angeles, CA 90001" +295922,USB-C Charging Cable,1,11.95,11/18/19 12:54,"603 7th St, Los Angeles, CA 90001" +295923,Macbook Pro Laptop,1,1700,11/29/19 18:56,"659 Park St, Atlanta, GA 30301" +295924,USB-C Charging Cable,2,11.95,11/03/19 20:28,"329 Meadow St, Austin, TX 73301" +295925,27in 4K Gaming Monitor,1,389.99,11/08/19 11:43,"134 Walnut St, Los Angeles, CA 90001" +295926,Apple Airpods Headphones,1,150,11/15/19 18:11,"642 12th St, San Francisco, CA 94016" +295927,Bose SoundSport Headphones,1,99.99,11/21/19 17:38,"626 Hickory St, San Francisco, CA 94016" +295928,27in 4K Gaming Monitor,1,389.99,11/19/19 08:48,"747 Cedar St, Seattle, WA 98101" +295929,AAA Batteries (4-pack),2,2.99,11/14/19 20:24,"290 10th St, New York City, NY 10001" +295930,AA Batteries (4-pack),1,3.84,11/09/19 21:33,"194 Madison St, New York City, NY 10001" +295931,Bose SoundSport Headphones,2,99.99,11/09/19 17:31,"60 Elm St, San Francisco, CA 94016" +295932,AA Batteries (4-pack),1,3.84,11/11/19 07:41,"980 12th St, Dallas, TX 75001" +295933,Apple Airpods Headphones,1,150,11/30/19 17:47,"777 12th St, San Francisco, CA 94016" +295934,Bose SoundSport Headphones,1,99.99,11/22/19 12:52,"70 4th St, Austin, TX 73301" +295935,Bose SoundSport Headphones,1,99.99,11/23/19 09:17,"175 Elm St, Portland, OR 97035" +295936,Lightning Charging Cable,1,14.95,11/17/19 23:24,"383 Spruce St, New York City, NY 10001" +295937,USB-C Charging Cable,1,11.95,11/18/19 07:51,"682 Jackson St, Dallas, TX 75001" +295938,AAA Batteries (4-pack),1,2.99,11/09/19 21:53,"723 6th St, New York City, NY 10001" +295939,Wired Headphones,1,11.99,11/25/19 23:55,"194 Chestnut St, Los Angeles, CA 90001" +295940,Bose SoundSport Headphones,1,99.99,11/12/19 21:41,"248 Willow St, New York City, NY 10001" +295941,AA Batteries (4-pack),1,3.84,11/01/19 18:18,"348 Wilson St, Los Angeles, CA 90001" +295942,iPhone,1,700,11/05/19 20:27,"8 Dogwood St, New York City, NY 10001" +295942,Wired Headphones,1,11.99,11/05/19 20:27,"8 Dogwood St, New York City, NY 10001" +295943,LG Washing Machine,1,600.0,11/13/19 17:43,"136 14th St, Portland, OR 97035" +295944,Lightning Charging Cable,1,14.95,11/03/19 19:55,"495 6th St, Dallas, TX 75001" +295945,iPhone,1,700,11/14/19 12:45,"202 11th St, Atlanta, GA 30301" +295946,27in FHD Monitor,1,149.99,11/06/19 15:32,"18 Lakeview St, Atlanta, GA 30301" +295947,Apple Airpods Headphones,1,150,11/21/19 11:40,"35 6th St, Los Angeles, CA 90001" +295948,Lightning Charging Cable,1,14.95,11/20/19 13:16,"436 10th St, San Francisco, CA 94016" +295949,Wired Headphones,1,11.99,11/19/19 09:10,"724 11th St, San Francisco, CA 94016" +295950,USB-C Charging Cable,1,11.95,11/20/19 09:38,"615 Ridge St, San Francisco, CA 94016" +295951,Wired Headphones,1,11.99,11/01/19 12:14,"977 Cedar St, Seattle, WA 98101" +295952,Bose SoundSport Headphones,1,99.99,11/26/19 15:48,"601 North St, San Francisco, CA 94016" +295953,Macbook Pro Laptop,1,1700,11/24/19 19:56,"625 10th St, Seattle, WA 98101" +295954,27in 4K Gaming Monitor,1,389.99,11/12/19 23:30,"875 Washington St, Seattle, WA 98101" +295955,iPhone,1,700,11/09/19 17:36,"252 2nd St, New York City, NY 10001" +295956,Macbook Pro Laptop,1,1700,11/20/19 14:11,"495 Spruce St, Portland, OR 97035" +295957,AA Batteries (4-pack),1,3.84,11/28/19 20:16,"338 Forest St, Dallas, TX 75001" +295958,Bose SoundSport Headphones,1,99.99,11/19/19 18:26,"213 Main St, Austin, TX 73301" +295959,ThinkPad Laptop,1,999.99,11/17/19 11:22,"701 North St, New York City, NY 10001" +295960,USB-C Charging Cable,1,11.95,11/14/19 12:46,"661 1st St, Los Angeles, CA 90001" +295961,Lightning Charging Cable,1,14.95,11/26/19 18:19,"688 Ridge St, San Francisco, CA 94016" +295962,27in 4K Gaming Monitor,1,389.99,11/22/19 11:36,"135 Cedar St, Austin, TX 73301" +295963,Lightning Charging Cable,1,14.95,11/22/19 10:35,"450 Center St, Portland, OR 97035" +295964,Apple Airpods Headphones,1,150,11/18/19 10:56,"557 Highland St, San Francisco, CA 94016" +295965,USB-C Charging Cable,1,11.95,11/27/19 12:19,"457 10th St, New York City, NY 10001" +295966,Wired Headphones,1,11.99,11/10/19 23:11,"647 14th St, San Francisco, CA 94016" +295967,AAA Batteries (4-pack),1,2.99,11/11/19 22:29,"172 Spruce St, Boston, MA 02215" +295968,Bose SoundSport Headphones,1,99.99,11/28/19 16:45,"133 River St, San Francisco, CA 94016" +295969,Lightning Charging Cable,2,14.95,11/24/19 15:04,"473 Church St, Austin, TX 73301" +295970,USB-C Charging Cable,1,11.95,11/27/19 10:31,"826 Meadow St, San Francisco, CA 94016" +295971,Bose SoundSport Headphones,1,99.99,11/15/19 09:46,"597 Willow St, San Francisco, CA 94016" +295972,34in Ultrawide Monitor,1,379.99,11/22/19 10:55,"682 Adams St, Los Angeles, CA 90001" +295973,Wired Headphones,1,11.99,11/08/19 19:39,"102 Meadow St, San Francisco, CA 94016" +295974,AAA Batteries (4-pack),2,2.99,11/29/19 10:13,"519 Walnut St, San Francisco, CA 94016" +295975,Wired Headphones,1,11.99,11/14/19 05:02,"69 West St, San Francisco, CA 94016" +295976,AA Batteries (4-pack),1,3.84,11/20/19 19:11,"530 4th St, Austin, TX 73301" +295977,Bose SoundSport Headphones,1,99.99,11/16/19 23:13,"991 Pine St, San Francisco, CA 94016" +295978,AA Batteries (4-pack),1,3.84,11/03/19 06:23,"605 10th St, Seattle, WA 98101" +295979,Lightning Charging Cable,1,14.95,11/12/19 16:09,"968 Elm St, Boston, MA 02215" +295980,USB-C Charging Cable,1,11.95,11/12/19 17:37,"466 Dogwood St, San Francisco, CA 94016" +295981,AAA Batteries (4-pack),2,2.99,11/13/19 10:26,"239 Dogwood St, Austin, TX 73301" +295982,USB-C Charging Cable,1,11.95,11/02/19 16:44,"668 10th St, Los Angeles, CA 90001" +295983,AAA Batteries (4-pack),1,2.99,11/15/19 18:44,"594 8th St, New York City, NY 10001" +295984,Macbook Pro Laptop,1,1700,11/17/19 10:30,"74 Washington St, New York City, NY 10001" +295985,Bose SoundSport Headphones,1,99.99,11/13/19 12:21,"818 8th St, Dallas, TX 75001" +295986,AAA Batteries (4-pack),4,2.99,11/17/19 17:03,"656 Dogwood St, Boston, MA 02215" +,,,,, +295987,Lightning Charging Cable,1,14.95,11/27/19 20:29,"909 Forest St, Dallas, TX 75001" +295988,USB-C Charging Cable,1,11.95,11/16/19 15:56,"410 Willow St, Atlanta, GA 30301" +295989,27in FHD Monitor,1,149.99,11/03/19 17:35,"889 Hill St, Atlanta, GA 30301" +295990,Apple Airpods Headphones,1,150,11/02/19 07:38,"607 Hill St, New York City, NY 10001" +295991,USB-C Charging Cable,1,11.95,11/30/19 10:23,"576 Willow St, New York City, NY 10001" +295992,Bose SoundSport Headphones,1,99.99,11/15/19 21:49,"325 Elm St, Los Angeles, CA 90001" +295993,Bose SoundSport Headphones,1,99.99,11/20/19 12:43,"456 Walnut St, Seattle, WA 98101" +295994,Lightning Charging Cable,1,14.95,11/05/19 10:05,"182 9th St, Seattle, WA 98101" +295995,USB-C Charging Cable,1,11.95,11/08/19 12:55,"17 10th St, Atlanta, GA 30301" +295996,USB-C Charging Cable,1,11.95,11/24/19 12:26,"116 1st St, Los Angeles, CA 90001" +295997,iPhone,1,700,11/06/19 18:55,"192 Cedar St, Portland, OR 97035" +295998,Lightning Charging Cable,1,14.95,11/18/19 21:15,"701 7th St, Boston, MA 02215" +295999,Apple Airpods Headphones,1,150,11/18/19 20:05,"774 4th St, New York City, NY 10001" +296000,Wired Headphones,1,11.99,11/01/19 12:31,"817 5th St, Los Angeles, CA 90001" +296001,Google Phone,1,600,11/22/19 20:33,"976 Sunset St, New York City, NY 10001" +296002,USB-C Charging Cable,1,11.95,11/20/19 12:52,"569 Lakeview St, San Francisco, CA 94016" +296003,Lightning Charging Cable,1,14.95,11/04/19 05:03,"666 12th St, San Francisco, CA 94016" +296004,USB-C Charging Cable,1,11.95,11/15/19 22:31,"840 12th St, San Francisco, CA 94016" +296005,27in FHD Monitor,1,149.99,11/10/19 22:56,"716 Highland St, Atlanta, GA 30301" +296006,Wired Headphones,1,11.99,11/11/19 07:27,"697 Jackson St, Boston, MA 02215" +296007,20in Monitor,1,109.99,11/08/19 06:58,"181 7th St, Austin, TX 73301" +296008,AAA Batteries (4-pack),2,2.99,11/16/19 16:54,"228 Spruce St, Los Angeles, CA 90001" +296009,20in Monitor,1,109.99,11/03/19 16:34,"319 Johnson St, San Francisco, CA 94016" +296009,Bose SoundSport Headphones,1,99.99,11/03/19 16:34,"319 Johnson St, San Francisco, CA 94016" +296010,Lightning Charging Cable,1,14.95,11/07/19 12:43,"918 7th St, Atlanta, GA 30301" +296011,AA Batteries (4-pack),1,3.84,11/14/19 11:18,"913 Meadow St, San Francisco, CA 94016" +,,,,, +296012,Google Phone,1,600,11/14/19 14:39,"56 Pine St, San Francisco, CA 94016" +296013,Wired Headphones,2,11.99,11/24/19 11:09,"394 River St, New York City, NY 10001" +296014,AAA Batteries (4-pack),1,2.99,11/07/19 12:20,"442 4th St, Atlanta, GA 30301" +296015,AA Batteries (4-pack),1,3.84,11/08/19 08:38,"416 West St, Portland, OR 97035" +296016,Bose SoundSport Headphones,1,99.99,11/21/19 15:12,"684 Jackson St, Los Angeles, CA 90001" +296017,Wired Headphones,1,11.99,11/18/19 20:27,"16 Church St, Boston, MA 02215" +296018,USB-C Charging Cable,1,11.95,11/11/19 12:39,"120 10th St, Los Angeles, CA 90001" +296019,Flatscreen TV,1,300,11/18/19 09:42,"857 14th St, Los Angeles, CA 90001" +296020,Macbook Pro Laptop,1,1700,11/05/19 10:01,"671 River St, New York City, NY 10001" +296021,USB-C Charging Cable,1,11.95,11/21/19 15:42,"946 Cherry St, New York City, NY 10001" +296022,AAA Batteries (4-pack),5,2.99,11/07/19 08:21,"497 Cedar St, Los Angeles, CA 90001" +296023,Lightning Charging Cable,1,14.95,11/26/19 19:21,"175 North St, New York City, NY 10001" +296024,USB-C Charging Cable,1,11.95,11/05/19 10:49,"919 Ridge St, San Francisco, CA 94016" +296025,Lightning Charging Cable,1,14.95,11/23/19 09:26,"636 Ridge St, Boston, MA 02215" +296026,USB-C Charging Cable,1,11.95,11/18/19 10:54,"457 1st St, Austin, TX 73301" +296027,Lightning Charging Cable,1,14.95,11/01/19 17:55,"573 Ridge St, San Francisco, CA 94016" +296028,Lightning Charging Cable,1,14.95,11/27/19 23:21,"696 10th St, Los Angeles, CA 90001" +296029,Lightning Charging Cable,1,14.95,11/29/19 17:44,"523 Lake St, New York City, NY 10001" +296030,USB-C Charging Cable,1,11.95,11/19/19 22:04,"718 10th St, New York City, NY 10001" +,,,,, +296031,iPhone,1,700,11/20/19 15:39,"473 Willow St, San Francisco, CA 94016" +296032,27in FHD Monitor,1,149.99,11/26/19 09:12,"744 13th St, Boston, MA 02215" +296033,AAA Batteries (4-pack),2,2.99,11/25/19 12:21,"424 Johnson St, Boston, MA 02215" +296034,AA Batteries (4-pack),1,3.84,11/24/19 19:31,"389 7th St, Atlanta, GA 30301" +296035,Apple Airpods Headphones,1,150,11/16/19 18:59,"173 River St, Seattle, WA 98101" +296036,Wired Headphones,1,11.99,11/08/19 18:01,"578 Jackson St, Los Angeles, CA 90001" +296037,Vareebadd Phone,1,400,11/23/19 22:32,"387 Hickory St, Boston, MA 02215" +296038,Lightning Charging Cable,1,14.95,11/10/19 10:51,"549 4th St, San Francisco, CA 94016" +296039,iPhone,1,700,11/01/19 12:25,"320 8th St, Atlanta, GA 30301" +296040,AAA Batteries (4-pack),1,2.99,11/19/19 14:09,"439 14th St, Los Angeles, CA 90001" +296041,USB-C Charging Cable,1,11.95,11/17/19 00:40,"312 Madison St, Dallas, TX 75001" +296042,Wired Headphones,1,11.99,11/06/19 12:33,"806 4th St, San Francisco, CA 94016" +296043,34in Ultrawide Monitor,1,379.99,11/15/19 15:24,"686 12th St, Portland, OR 97035" +296044,Wired Headphones,1,11.99,11/28/19 10:37,"285 Hickory St, Los Angeles, CA 90001" +296045,iPhone,1,700,11/25/19 14:24,"730 Sunset St, San Francisco, CA 94016" +296046,27in FHD Monitor,1,149.99,11/19/19 15:08,"684 Washington St, Dallas, TX 75001" +296047,Apple Airpods Headphones,1,150,11/25/19 20:04,"125 Johnson St, Los Angeles, CA 90001" +296048,AAA Batteries (4-pack),2,2.99,11/14/19 15:51,"860 Main St, New York City, NY 10001" +296049,USB-C Charging Cable,1,11.95,11/03/19 16:59,"326 Lakeview St, San Francisco, CA 94016" +296050,Bose SoundSport Headphones,1,99.99,11/18/19 12:07,"366 14th St, San Francisco, CA 94016" +296051,Flatscreen TV,1,300,11/07/19 20:10,"941 Jackson St, Dallas, TX 75001" +296052,iPhone,1,700,11/25/19 01:31,"945 Dogwood St, Dallas, TX 75001" +296053,Bose SoundSport Headphones,1,99.99,11/22/19 22:58,"753 Lincoln St, San Francisco, CA 94016" +296054,Bose SoundSport Headphones,1,99.99,11/27/19 11:12,"350 Main St, San Francisco, CA 94016" +296055,Apple Airpods Headphones,1,150,11/12/19 18:21,"294 Walnut St, New York City, NY 10001" +296056,34in Ultrawide Monitor,1,379.99,11/01/19 16:06,"484 Sunset St, San Francisco, CA 94016" +296057,Wired Headphones,1,11.99,11/29/19 13:56,"742 Jefferson St, Austin, TX 73301" +296058,LG Dryer,1,600.0,11/12/19 07:53,"770 River St, Los Angeles, CA 90001" +296059,iPhone,1,700,11/24/19 18:02,"699 Ridge St, Austin, TX 73301" +296060,AA Batteries (4-pack),1,3.84,11/05/19 08:13,"394 9th St, Los Angeles, CA 90001" +296061,USB-C Charging Cable,1,11.95,11/19/19 15:11,"255 Johnson St, Seattle, WA 98101" +296062,Wired Headphones,1,11.99,11/11/19 14:20,"454 9th St, Austin, TX 73301" +296063,Bose SoundSport Headphones,1,99.99,11/04/19 14:13,"749 Highland St, Dallas, TX 75001" +296064,Bose SoundSport Headphones,1,99.99,11/02/19 18:01,"676 Highland St, Los Angeles, CA 90001" +296065,Lightning Charging Cable,1,14.95,11/26/19 15:24,"785 10th St, Los Angeles, CA 90001" +296066,Lightning Charging Cable,1,14.95,11/17/19 20:13,"89 South St, Austin, TX 73301" +296067,Vareebadd Phone,1,400,11/02/19 10:50,"417 Washington St, Portland, OR 97035" +296068,AA Batteries (4-pack),1,3.84,11/03/19 09:50,"160 Cherry St, Seattle, WA 98101" +296069,Bose SoundSport Headphones,1,99.99,11/28/19 07:00,"904 Lakeview St, Atlanta, GA 30301" +296070,AA Batteries (4-pack),1,3.84,11/28/19 21:10,"680 Jefferson St, Los Angeles, CA 90001" +296071,20in Monitor,1,109.99,11/01/19 21:45,"175 Pine St, San Francisco, CA 94016" +296072,Vareebadd Phone,1,400,11/20/19 06:02,"589 Adams St, Portland, OR 97035" +296072,Wired Headphones,1,11.99,11/20/19 06:02,"589 Adams St, Portland, OR 97035" +296073,Google Phone,1,600,11/27/19 15:39,"714 Cedar St, Portland, OR 97035" +296073,AA Batteries (4-pack),1,3.84,11/27/19 15:39,"714 Cedar St, Portland, OR 97035" +296074,Apple Airpods Headphones,1,150,11/23/19 12:59,"971 Adams St, Boston, MA 02215" +296075,Lightning Charging Cable,1,14.95,11/13/19 10:50,"677 Madison St, Dallas, TX 75001" +296076,Flatscreen TV,1,300,11/07/19 10:14,"84 8th St, Seattle, WA 98101" +296077,Lightning Charging Cable,1,14.95,11/04/19 22:59,"923 Washington St, Los Angeles, CA 90001" +296078,Flatscreen TV,1,300,11/04/19 09:39,"807 Church St, San Francisco, CA 94016" +296079,USB-C Charging Cable,1,11.95,11/14/19 11:37,"774 Highland St, Seattle, WA 98101" +296080,Wired Headphones,1,11.99,11/10/19 21:15,"832 Hill St, San Francisco, CA 94016" +296081,Apple Airpods Headphones,1,150,11/19/19 20:11,"305 Willow St, San Francisco, CA 94016" +296082,Flatscreen TV,1,300,11/06/19 09:55,"779 2nd St, San Francisco, CA 94016" +296083,Lightning Charging Cable,1,14.95,11/16/19 18:19,"432 Elm St, Boston, MA 02215" +296084,Lightning Charging Cable,1,14.95,11/10/19 22:49,"21 Chestnut St, Dallas, TX 75001" +296085,USB-C Charging Cable,1,11.95,11/28/19 11:30,"830 South St, Los Angeles, CA 90001" +296086,Flatscreen TV,1,300,11/26/19 10:13,"673 10th St, Boston, MA 02215" +296087,Wired Headphones,1,11.99,11/01/19 15:04,"989 6th St, San Francisco, CA 94016" +296088,AAA Batteries (4-pack),1,2.99,11/29/19 16:11,"229 Church St, New York City, NY 10001" +296089,20in Monitor,1,109.99,11/11/19 20:38,"177 13th St, San Francisco, CA 94016" +296090,iPhone,1,700,11/23/19 21:45,"410 Spruce St, San Francisco, CA 94016" +296091,iPhone,1,700,11/15/19 16:52,"749 Highland St, New York City, NY 10001" +296092,27in FHD Monitor,1,149.99,11/21/19 21:16,"108 Chestnut St, San Francisco, CA 94016" +296093,20in Monitor,1,109.99,11/10/19 12:00,"52 Meadow St, Los Angeles, CA 90001" +296094,Bose SoundSport Headphones,1,99.99,11/24/19 13:00,"719 Church St, Atlanta, GA 30301" +296095,AA Batteries (4-pack),1,3.84,11/07/19 17:15,"356 Spruce St, San Francisco, CA 94016" +296096,Google Phone,1,600,11/02/19 10:44,"827 2nd St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +296097,Bose SoundSport Headphones,1,99.99,11/13/19 21:17,"565 Johnson St, San Francisco, CA 94016" +296098,Lightning Charging Cable,1,14.95,11/19/19 21:23,"462 Forest St, Austin, TX 73301" +296099,Wired Headphones,1,11.99,11/05/19 19:18,"756 Ridge St, New York City, NY 10001" +296100,AAA Batteries (4-pack),1,2.99,11/06/19 12:24,"637 1st St, San Francisco, CA 94016" +296101,Lightning Charging Cable,1,14.95,11/21/19 18:49,"89 Willow St, Los Angeles, CA 90001" +296102,USB-C Charging Cable,1,11.95,11/23/19 13:15,"80 Center St, Seattle, WA 98101" +296103,Bose SoundSport Headphones,1,99.99,11/25/19 19:30,"901 Jackson St, Dallas, TX 75001" +296104,27in FHD Monitor,1,149.99,11/05/19 18:11,"711 Jefferson St, Seattle, WA 98101" +296105,Bose SoundSport Headphones,1,99.99,11/08/19 23:25,"47 Hill St, San Francisco, CA 94016" +296106,USB-C Charging Cable,1,11.95,11/16/19 11:39,"979 South St, New York City, NY 10001" +296107,Google Phone,1,600,11/22/19 08:58,"682 Meadow St, Seattle, WA 98101" +296108,ThinkPad Laptop,1,999.99,11/02/19 12:50,"85 Elm St, Portland, OR 97035" +296109,AAA Batteries (4-pack),1,2.99,11/27/19 16:59,"3 5th St, San Francisco, CA 94016" +296110,Lightning Charging Cable,1,14.95,11/02/19 16:49,"991 Sunset St, San Francisco, CA 94016" +296111,Macbook Pro Laptop,1,1700,11/12/19 21:02,"874 Elm St, Los Angeles, CA 90001" +296112,Lightning Charging Cable,1,14.95,11/11/19 16:07,"78 2nd St, Los Angeles, CA 90001" +296113,Google Phone,1,600,11/12/19 19:26,"148 Cedar St, Portland, OR 97035" +296113,USB-C Charging Cable,1,11.95,11/12/19 19:26,"148 Cedar St, Portland, OR 97035" +296114,Bose SoundSport Headphones,1,99.99,11/26/19 11:36,"214 River St, Los Angeles, CA 90001" +296115,iPhone,1,700,11/03/19 13:47,"348 Lincoln St, New York City, NY 10001" +296116,34in Ultrawide Monitor,1,379.99,11/29/19 09:27,"607 10th St, Los Angeles, CA 90001" +296117,iPhone,1,700,11/23/19 10:40,"88 Jefferson St, San Francisco, CA 94016" +296118,Bose SoundSport Headphones,1,99.99,11/19/19 16:20,"943 9th St, Portland, ME 04101" +296119,AAA Batteries (4-pack),1,2.99,11/06/19 20:17,"74 North St, New York City, NY 10001" +,,,,, +296120,LG Washing Machine,1,600.0,11/14/19 13:44,"767 Lake St, Seattle, WA 98101" +296121,Lightning Charging Cable,1,14.95,11/25/19 18:22,"314 10th St, Portland, OR 97035" +296122,iPhone,1,700,11/06/19 08:09,"826 12th St, Atlanta, GA 30301" +296123,20in Monitor,1,109.99,11/12/19 08:57,"371 Maple St, Austin, TX 73301" +296124,Bose SoundSport Headphones,1,99.99,11/13/19 21:13,"742 Dogwood St, Boston, MA 02215" +296125,Bose SoundSport Headphones,1,99.99,11/05/19 15:17,"609 Jackson St, San Francisco, CA 94016" +296126,Google Phone,1,600,11/19/19 12:24,"296 Pine St, New York City, NY 10001" +296127,Lightning Charging Cable,1,14.95,11/11/19 09:56,"80 Lincoln St, Los Angeles, CA 90001" +296128,Macbook Pro Laptop,1,1700,11/18/19 15:32,"929 North St, Los Angeles, CA 90001" +296129,Bose SoundSport Headphones,1,99.99,11/23/19 19:19,"830 Lake St, Dallas, TX 75001" +296130,Flatscreen TV,1,300,11/27/19 11:21,"907 Lake St, San Francisco, CA 94016" +296131,AAA Batteries (4-pack),1,2.99,11/15/19 18:13,"597 Spruce St, Seattle, WA 98101" +296131,Lightning Charging Cable,1,14.95,11/15/19 18:13,"597 Spruce St, Seattle, WA 98101" +296132,USB-C Charging Cable,1,11.95,11/29/19 13:06,"565 Meadow St, Boston, MA 02215" +296133,USB-C Charging Cable,1,11.95,11/17/19 13:41,"158 Lake St, Seattle, WA 98101" +296134,Apple Airpods Headphones,1,150,11/02/19 16:33,"799 13th St, Atlanta, GA 30301" +296135,iPhone,1,700,11/20/19 21:26,"747 Willow St, San Francisco, CA 94016" +296135,Lightning Charging Cable,1,14.95,11/20/19 21:26,"747 Willow St, San Francisco, CA 94016" +296136,AAA Batteries (4-pack),1,2.99,11/29/19 23:48,"683 Jefferson St, Seattle, WA 98101" +296137,Lightning Charging Cable,1,14.95,11/08/19 15:21,"300 Lincoln St, Los Angeles, CA 90001" +296138,Lightning Charging Cable,1,14.95,11/27/19 15:56,"321 2nd St, Dallas, TX 75001" +296139,AA Batteries (4-pack),2,3.84,11/04/19 17:16,"227 Highland St, Portland, OR 97035" +296140,iPhone,1,700,11/29/19 08:22,"956 Sunset St, San Francisco, CA 94016" +296141,USB-C Charging Cable,1,11.95,11/16/19 11:06,"360 13th St, New York City, NY 10001" +296142,Bose SoundSport Headphones,1,99.99,11/21/19 21:15,"474 Pine St, Boston, MA 02215" +296143,Lightning Charging Cable,1,14.95,11/09/19 09:56,"632 Pine St, Boston, MA 02215" +296144,iPhone,1,700,11/04/19 22:47,"156 2nd St, Boston, MA 02215" +296144,Lightning Charging Cable,2,14.95,11/04/19 22:47,"156 2nd St, Boston, MA 02215" +296145,Bose SoundSport Headphones,1,99.99,11/02/19 19:56,"429 Maple St, Boston, MA 02215" +296146,Macbook Pro Laptop,1,1700,11/15/19 17:49,"35 Lakeview St, Dallas, TX 75001" +296147,Wired Headphones,1,11.99,11/29/19 20:54,"245 Hill St, Boston, MA 02215" +296148,Flatscreen TV,1,300,11/25/19 10:06,"479 Adams St, New York City, NY 10001" +296149,Wired Headphones,1,11.99,11/04/19 00:51,"355 9th St, Boston, MA 02215" +296150,20in Monitor,1,109.99,11/07/19 14:08,"3 Elm St, Boston, MA 02215" +296151,AAA Batteries (4-pack),1,2.99,11/23/19 19:03,"348 North St, San Francisco, CA 94016" +296152,AAA Batteries (4-pack),4,2.99,11/09/19 08:38,"213 Center St, Austin, TX 73301" +296153,20in Monitor,2,109.99,11/07/19 15:10,"963 Walnut St, Los Angeles, CA 90001" +296154,AAA Batteries (4-pack),1,2.99,11/23/19 02:43,"97 Highland St, Austin, TX 73301" +296154,Lightning Charging Cable,1,14.95,11/23/19 02:43,"97 Highland St, Austin, TX 73301" +296155,27in FHD Monitor,1,149.99,11/26/19 23:29,"96 Willow St, Dallas, TX 75001" +296156,Bose SoundSport Headphones,1,99.99,11/24/19 14:32,"900 River St, San Francisco, CA 94016" +296157,27in FHD Monitor,1,149.99,11/26/19 19:43,"820 9th St, Atlanta, GA 30301" +296158,Lightning Charging Cable,1,14.95,11/15/19 08:34,"644 Sunset St, New York City, NY 10001" +296159,27in FHD Monitor,1,149.99,11/17/19 17:00,"271 Chestnut St, New York City, NY 10001" +296160,27in 4K Gaming Monitor,1,389.99,11/03/19 10:50,"417 Spruce St, San Francisco, CA 94016" +296161,USB-C Charging Cable,1,11.95,11/03/19 18:51,"366 Cherry St, Los Angeles, CA 90001" +296162,Bose SoundSport Headphones,1,99.99,11/07/19 19:10,"838 Pine St, Los Angeles, CA 90001" +296163,AAA Batteries (4-pack),3,2.99,11/17/19 10:19,"299 12th St, Los Angeles, CA 90001" +296164,Bose SoundSport Headphones,1,99.99,11/13/19 19:21,"718 Jefferson St, Los Angeles, CA 90001" +296165,AAA Batteries (4-pack),1,2.99,11/08/19 21:26,"949 Ridge St, San Francisco, CA 94016" +296166,AA Batteries (4-pack),3,3.84,11/16/19 11:27,"701 South St, Boston, MA 02215" +296167,Lightning Charging Cable,1,14.95,11/11/19 21:38,"502 Highland St, Los Angeles, CA 90001" +296168,AAA Batteries (4-pack),2,2.99,11/08/19 16:42,"856 1st St, New York City, NY 10001" +296169,ThinkPad Laptop,1,999.99,11/10/19 11:40,"488 Jackson St, Los Angeles, CA 90001" +296170,Wired Headphones,1,11.99,11/23/19 11:05,"50 Spruce St, Portland, OR 97035" +296171,USB-C Charging Cable,1,11.95,11/24/19 08:17,"490 11th St, San Francisco, CA 94016" +296172,AAA Batteries (4-pack),1,2.99,11/24/19 14:57,"467 14th St, Dallas, TX 75001" +296173,AAA Batteries (4-pack),1,2.99,11/15/19 12:29,"776 8th St, Los Angeles, CA 90001" +296174,USB-C Charging Cable,1,11.95,11/05/19 01:03,"507 Jackson St, Los Angeles, CA 90001" +296175,Lightning Charging Cable,1,14.95,11/06/19 20:56,"207 Main St, San Francisco, CA 94016" +296176,Macbook Pro Laptop,1,1700,11/24/19 19:45,"740 Maple St, San Francisco, CA 94016" +296177,Wired Headphones,1,11.99,11/28/19 10:49,"183 Walnut St, Atlanta, GA 30301" +296178,34in Ultrawide Monitor,1,379.99,11/03/19 19:08,"104 Willow St, Boston, MA 02215" +296179,USB-C Charging Cable,1,11.95,11/13/19 22:34,"514 Madison St, Boston, MA 02215" +296180,AAA Batteries (4-pack),2,2.99,11/15/19 20:13,"285 6th St, San Francisco, CA 94016" +296181,USB-C Charging Cable,1,11.95,11/16/19 08:22,"565 Willow St, Boston, MA 02215" +296182,AAA Batteries (4-pack),1,2.99,11/01/19 19:36,"97 Church St, Los Angeles, CA 90001" +296183,AAA Batteries (4-pack),2,2.99,11/06/19 21:18,"659 Chestnut St, New York City, NY 10001" +296184,20in Monitor,1,109.99,11/28/19 20:03,"434 Main St, Dallas, TX 75001" +296185,AAA Batteries (4-pack),1,2.99,11/17/19 19:37,"273 Park St, San Francisco, CA 94016" +296186,USB-C Charging Cable,1,11.95,11/12/19 21:01,"442 Willow St, Austin, TX 73301" +296187,Wired Headphones,1,11.99,11/28/19 09:24,"117 Park St, Boston, MA 02215" +296188,Wired Headphones,1,11.99,11/22/19 10:06,"837 7th St, San Francisco, CA 94016" +296189,AA Batteries (4-pack),2,3.84,11/13/19 14:43,"671 Walnut St, Los Angeles, CA 90001" +296190,AA Batteries (4-pack),2,3.84,11/04/19 20:53,"179 11th St, Atlanta, GA 30301" +296191,Lightning Charging Cable,1,14.95,11/16/19 12:16,"71 Pine St, New York City, NY 10001" +296192,AA Batteries (4-pack),1,3.84,11/09/19 21:49,"825 5th St, Atlanta, GA 30301" +296193,Apple Airpods Headphones,1,150,11/22/19 11:30,"805 Highland St, Dallas, TX 75001" +296194,ThinkPad Laptop,1,999.99,11/30/19 13:54,"837 11th St, San Francisco, CA 94016" +296195,27in FHD Monitor,1,149.99,11/25/19 20:00,"135 Cherry St, New York City, NY 10001" +296196,USB-C Charging Cable,1,11.95,11/27/19 19:13,"912 Cedar St, Seattle, WA 98101" +296197,AAA Batteries (4-pack),1,2.99,11/21/19 17:59,"688 Washington St, Atlanta, GA 30301" +296198,ThinkPad Laptop,1,999.99,11/27/19 19:17,"622 Jefferson St, San Francisco, CA 94016" +296199,Macbook Pro Laptop,1,1700,11/07/19 11:33,"251 Willow St, Boston, MA 02215" +296200,Apple Airpods Headphones,1,150,11/23/19 15:59,"333 7th St, Boston, MA 02215" +296201,Apple Airpods Headphones,1,150,11/28/19 09:31,"861 13th St, Atlanta, GA 30301" +296202,AA Batteries (4-pack),1,3.84,11/30/19 14:45,"336 Hill St, San Francisco, CA 94016" +296203,Wired Headphones,1,11.99,11/11/19 12:20,"688 Chestnut St, San Francisco, CA 94016" +296204,USB-C Charging Cable,1,11.95,11/10/19 09:22,"737 North St, Boston, MA 02215" +296205,34in Ultrawide Monitor,1,379.99,11/02/19 15:17,"351 North St, Seattle, WA 98101" +296206,Wired Headphones,1,11.99,11/13/19 15:53,"196 Church St, New York City, NY 10001" +296207,Apple Airpods Headphones,1,150,11/12/19 16:14,"255 Jefferson St, San Francisco, CA 94016" +296208,iPhone,1,700,11/29/19 10:29,"283 Pine St, San Francisco, CA 94016" +296209,AA Batteries (4-pack),1,3.84,11/17/19 13:16,"266 Ridge St, Portland, OR 97035" +296210,AAA Batteries (4-pack),1,2.99,11/23/19 17:08,"984 Spruce St, San Francisco, CA 94016" +296211,Wired Headphones,1,11.99,11/25/19 23:54,"456 Lincoln St, Los Angeles, CA 90001" +296212,iPhone,1,700,11/20/19 18:33,"321 Lakeview St, Los Angeles, CA 90001" +296213,Lightning Charging Cable,1,14.95,11/13/19 19:23,"999 Highland St, San Francisco, CA 94016" +296214,AA Batteries (4-pack),3,3.84,11/28/19 11:53,"510 Lincoln St, Los Angeles, CA 90001" +296215,Bose SoundSport Headphones,1,99.99,11/20/19 18:02,"282 Pine St, New York City, NY 10001" +296216,34in Ultrawide Monitor,1,379.99,11/01/19 13:29,"661 Dogwood St, Los Angeles, CA 90001" +296217,27in FHD Monitor,1,149.99,11/30/19 07:01,"731 13th St, Seattle, WA 98101" +296218,AAA Batteries (4-pack),1,2.99,11/21/19 23:00,"794 Pine St, Austin, TX 73301" +296219,AA Batteries (4-pack),1,3.84,11/12/19 21:16,"758 North St, Los Angeles, CA 90001" +296220,LG Dryer,1,600.0,11/26/19 13:21,"407 Maple St, San Francisco, CA 94016" +296221,AA Batteries (4-pack),2,3.84,11/17/19 09:51,"624 11th St, Los Angeles, CA 90001" +296222,Google Phone,1,600,11/02/19 17:11,"566 Main St, New York City, NY 10001" +296223,Wired Headphones,2,11.99,11/20/19 12:31,"388 River St, Portland, OR 97035" +296224,Lightning Charging Cable,1,14.95,11/18/19 23:32,"903 7th St, Portland, OR 97035" +296225,iPhone,1,700,11/05/19 01:35,"690 Lincoln St, San Francisco, CA 94016" +296226,Lightning Charging Cable,1,14.95,11/21/19 00:26,"646 Madison St, San Francisco, CA 94016" +296227,iPhone,1,700,11/10/19 10:17,"272 Walnut St, Atlanta, GA 30301" +296227,Lightning Charging Cable,1,14.95,11/10/19 10:17,"272 Walnut St, Atlanta, GA 30301" +296228,27in FHD Monitor,1,149.99,11/27/19 13:11,"134 13th St, San Francisco, CA 94016" +296229,USB-C Charging Cable,1,11.95,11/26/19 18:55,"496 14th St, New York City, NY 10001" +296230,AA Batteries (4-pack),1,3.84,11/17/19 18:13,"732 Meadow St, Dallas, TX 75001" +296231,Wired Headphones,1,11.99,11/12/19 09:35,"12 North St, Los Angeles, CA 90001" +296232,AAA Batteries (4-pack),1,2.99,11/27/19 16:15,"549 Wilson St, Los Angeles, CA 90001" +296233,USB-C Charging Cable,1,11.95,11/14/19 16:34,"427 West St, Atlanta, GA 30301" +296234,AAA Batteries (4-pack),1,2.99,11/13/19 19:06,"739 Jackson St, Seattle, WA 98101" +296235,Lightning Charging Cable,1,14.95,11/04/19 17:52,"904 Cherry St, San Francisco, CA 94016" +296236,Bose SoundSport Headphones,1,99.99,11/12/19 19:07,"629 West St, New York City, NY 10001" +296237,AAA Batteries (4-pack),1,2.99,11/16/19 11:24,"575 Washington St, Los Angeles, CA 90001" +296238,Lightning Charging Cable,1,14.95,11/23/19 13:02,"490 Lincoln St, Boston, MA 02215" +296239,AAA Batteries (4-pack),2,2.99,11/20/19 18:36,"301 Highland St, San Francisco, CA 94016" +296240,Vareebadd Phone,1,400,11/17/19 12:38,"547 9th St, Seattle, WA 98101" +296241,AA Batteries (4-pack),1,3.84,11/22/19 13:45,"297 Park St, Los Angeles, CA 90001" +296242,USB-C Charging Cable,1,11.95,11/27/19 20:22,"857 River St, Los Angeles, CA 90001" +296243,20in Monitor,1,109.99,11/13/19 15:05,"458 West St, Boston, MA 02215" +296244,34in Ultrawide Monitor,1,379.99,11/04/19 20:55,"997 Sunset St, Portland, OR 97035" +296245,AA Batteries (4-pack),1,3.84,11/16/19 21:41,"41 Dogwood St, Portland, OR 97035" +296246,USB-C Charging Cable,2,11.95,11/12/19 21:25,"821 North St, San Francisco, CA 94016" +296247,AA Batteries (4-pack),3,3.84,11/24/19 12:25,"395 Ridge St, Los Angeles, CA 90001" +296248,AAA Batteries (4-pack),2,2.99,11/18/19 12:12,"218 Lincoln St, Atlanta, GA 30301" +296249,AA Batteries (4-pack),1,3.84,11/06/19 13:39,"972 14th St, Boston, MA 02215" +296250,34in Ultrawide Monitor,1,379.99,11/10/19 19:44,"170 Spruce St, New York City, NY 10001" +296251,iPhone,1,700,11/01/19 11:05,"179 Highland St, Portland, OR 97035" +296252,Apple Airpods Headphones,1,150,11/21/19 19:39,"522 River St, San Francisco, CA 94016" +296253,Flatscreen TV,1,300,11/27/19 23:30,"606 1st St, Seattle, WA 98101" +296254,34in Ultrawide Monitor,1,379.99,11/14/19 10:34,"794 14th St, Los Angeles, CA 90001" +296255,Bose SoundSport Headphones,1,99.99,11/09/19 20:25,"684 1st St, New York City, NY 10001" +296256,USB-C Charging Cable,1,11.95,11/22/19 22:16,"468 Jackson St, Los Angeles, CA 90001" +296257,Bose SoundSport Headphones,1,99.99,11/23/19 13:04,"652 14th St, Los Angeles, CA 90001" +296258,AA Batteries (4-pack),1,3.84,11/20/19 12:28,"442 Willow St, New York City, NY 10001" +296259,Bose SoundSport Headphones,1,99.99,11/20/19 15:29,"439 Washington St, Seattle, WA 98101" +296260,Google Phone,1,600,11/03/19 14:25,"257 Willow St, San Francisco, CA 94016" +296261,Apple Airpods Headphones,1,150,11/28/19 15:24,"808 Jefferson St, Los Angeles, CA 90001" +296262,iPhone,1,700,11/13/19 22:49,"486 Elm St, Dallas, TX 75001" +296263,USB-C Charging Cable,1,11.95,11/30/19 08:59,"34 Madison St, San Francisco, CA 94016" +296264,Apple Airpods Headphones,1,150,11/26/19 16:48,"788 Cherry St, New York City, NY 10001" +296265,AA Batteries (4-pack),1,3.84,11/13/19 13:47,"158 8th St, Los Angeles, CA 90001" +296266,Bose SoundSport Headphones,1,99.99,11/09/19 13:29,"148 Maple St, Los Angeles, CA 90001" +296267,Google Phone,1,600,11/30/19 07:05,"904 Sunset St, Dallas, TX 75001" +296268,27in 4K Gaming Monitor,1,389.99,11/19/19 16:58,"290 North St, Atlanta, GA 30301" +296269,AAA Batteries (4-pack),4,2.99,11/25/19 13:26,"408 Maple St, Dallas, TX 75001" +296270,AAA Batteries (4-pack),3,2.99,11/28/19 19:31,"572 Chestnut St, New York City, NY 10001" +296271,Flatscreen TV,1,300,11/18/19 13:48,"522 Lake St, San Francisco, CA 94016" +296272,AA Batteries (4-pack),4,3.84,11/14/19 15:18,"151 Wilson St, New York City, NY 10001" +296273,USB-C Charging Cable,1,11.95,11/07/19 19:15,"567 Jefferson St, Atlanta, GA 30301" +296274,Bose SoundSport Headphones,1,99.99,11/18/19 00:04,"346 Ridge St, Boston, MA 02215" +296275,ThinkPad Laptop,1,999.99,11/07/19 17:35,"709 1st St, San Francisco, CA 94016" +296276,USB-C Charging Cable,1,11.95,11/21/19 14:07,"232 5th St, Los Angeles, CA 90001" +296277,Wired Headphones,1,11.99,11/26/19 06:19,"694 Forest St, Austin, TX 73301" +296278,AA Batteries (4-pack),1,3.84,11/08/19 23:41,"781 River St, New York City, NY 10001" +296279,27in 4K Gaming Monitor,1,389.99,11/14/19 10:21,"639 North St, Seattle, WA 98101" +296280,AAA Batteries (4-pack),1,2.99,11/23/19 08:33,"605 Chestnut St, Seattle, WA 98101" +296281,Bose SoundSport Headphones,1,99.99,11/08/19 22:38,"572 South St, Dallas, TX 75001" +296282,27in 4K Gaming Monitor,1,389.99,11/03/19 18:12,"269 Jefferson St, Seattle, WA 98101" +296283,USB-C Charging Cable,2,11.95,11/18/19 23:22,"903 Lake St, San Francisco, CA 94016" +296284,Apple Airpods Headphones,1,150,11/20/19 02:36,"784 Sunset St, New York City, NY 10001" +296285,Lightning Charging Cable,1,14.95,11/11/19 21:07,"495 2nd St, San Francisco, CA 94016" +296286,Wired Headphones,1,11.99,11/21/19 07:57,"596 Main St, New York City, NY 10001" +296287,Lightning Charging Cable,1,14.95,11/13/19 13:16,"715 West St, Seattle, WA 98101" +296288,USB-C Charging Cable,1,11.95,11/07/19 23:01,"925 Adams St, Los Angeles, CA 90001" +296289,Wired Headphones,1,11.99,11/28/19 18:56,"612 Church St, Dallas, TX 75001" +296290,AA Batteries (4-pack),1,3.84,11/11/19 00:37,"517 Meadow St, Los Angeles, CA 90001" +296291,27in 4K Gaming Monitor,1,389.99,11/13/19 10:08,"293 5th St, Los Angeles, CA 90001" +296292,Google Phone,1,600,11/05/19 10:37,"984 Center St, Seattle, WA 98101" +296292,USB-C Charging Cable,1,11.95,11/05/19 10:37,"984 Center St, Seattle, WA 98101" +296293,Bose SoundSport Headphones,1,99.99,11/26/19 15:54,"61 Wilson St, Los Angeles, CA 90001" +296293,USB-C Charging Cable,1,11.95,11/26/19 15:54,"61 Wilson St, Los Angeles, CA 90001" +296294,AA Batteries (4-pack),1,3.84,11/20/19 23:40,"193 Johnson St, Austin, TX 73301" +296295,AAA Batteries (4-pack),1,2.99,11/25/19 08:47,"270 6th St, New York City, NY 10001" +296296,USB-C Charging Cable,1,11.95,11/25/19 19:03,"110 10th St, Los Angeles, CA 90001" +296297,iPhone,1,700,11/04/19 17:43,"859 14th St, Los Angeles, CA 90001" +296298,ThinkPad Laptop,1,999.99,11/27/19 22:19,"3 Pine St, San Francisco, CA 94016" +296299,USB-C Charging Cable,1,11.95,11/29/19 13:16,"594 14th St, Los Angeles, CA 90001" +296300,USB-C Charging Cable,1,11.95,11/28/19 11:25,"768 Center St, Austin, TX 73301" +296301,AA Batteries (4-pack),1,3.84,11/23/19 22:17,"974 4th St, San Francisco, CA 94016" +296302,27in FHD Monitor,1,149.99,11/28/19 20:04,"583 Cherry St, New York City, NY 10001" +296303,27in FHD Monitor,1,149.99,11/02/19 15:42,"217 Cedar St, Atlanta, GA 30301" +296304,Lightning Charging Cable,1,14.95,11/07/19 13:05,"932 13th St, Atlanta, GA 30301" +296305,USB-C Charging Cable,1,11.95,11/28/19 20:44,"43 Hickory St, Los Angeles, CA 90001" +296306,AA Batteries (4-pack),1,3.84,11/17/19 14:03,"205 Elm St, San Francisco, CA 94016" +296307,USB-C Charging Cable,1,11.95,11/08/19 14:21,"695 Washington St, New York City, NY 10001" +296308,Lightning Charging Cable,1,14.95,11/14/19 20:17,"369 Highland St, Austin, TX 73301" +296309,iPhone,1,700,11/12/19 11:40,"146 North St, Los Angeles, CA 90001" +296309,Lightning Charging Cable,1,14.95,11/12/19 11:40,"146 North St, Los Angeles, CA 90001" +296310,Wired Headphones,1,11.99,11/26/19 08:04,"136 Lincoln St, Seattle, WA 98101" +296311,Lightning Charging Cable,1,14.95,11/01/19 13:14,"970 Maple St, Austin, TX 73301" +296312,ThinkPad Laptop,1,999.99,11/24/19 21:29,"190 5th St, Boston, MA 02215" +296313,iPhone,1,700,11/27/19 07:08,"171 Church St, Boston, MA 02215" +296314,Lightning Charging Cable,1,14.95,11/17/19 15:57,"329 Maple St, San Francisco, CA 94016" +296315,AAA Batteries (4-pack),3,2.99,11/09/19 16:49,"818 11th St, New York City, NY 10001" +296316,Lightning Charging Cable,1,14.95,11/01/19 18:42,"335 Maple St, Los Angeles, CA 90001" +296317,Wired Headphones,1,11.99,11/10/19 09:30,"220 Willow St, Austin, TX 73301" +296318,Flatscreen TV,1,300,11/27/19 20:45,"46 Center St, Boston, MA 02215" +296319,Lightning Charging Cable,1,14.95,11/08/19 22:08,"902 Center St, Austin, TX 73301" +296320,Apple Airpods Headphones,1,150,11/30/19 18:25,"713 Lakeview St, Portland, OR 97035" +296321,iPhone,1,700,11/07/19 11:45,"608 5th St, Los Angeles, CA 90001" +296322,Apple Airpods Headphones,1,150,11/20/19 22:11,"403 Wilson St, Dallas, TX 75001" +296323,Bose SoundSport Headphones,1,99.99,11/22/19 16:26,"685 River St, Dallas, TX 75001" +296324,Wired Headphones,1,11.99,11/26/19 18:33,"312 Meadow St, San Francisco, CA 94016" +296325,USB-C Charging Cable,1,11.95,11/16/19 08:00,"126 5th St, Atlanta, GA 30301" +296326,27in FHD Monitor,1,149.99,11/16/19 20:14,"474 North St, Boston, MA 02215" +296327,USB-C Charging Cable,1,11.95,11/10/19 17:35,"824 Park St, Los Angeles, CA 90001" +296328,AAA Batteries (4-pack),1,2.99,11/13/19 12:15,"242 7th St, San Francisco, CA 94016" +296329,USB-C Charging Cable,1,11.95,11/21/19 21:33,"893 12th St, Dallas, TX 75001" +296330,Wired Headphones,1,11.99,11/21/19 19:39,"958 Walnut St, Boston, MA 02215" +296331,Bose SoundSport Headphones,1,99.99,11/15/19 22:18,"307 Cedar St, San Francisco, CA 94016" +296332,AA Batteries (4-pack),3,3.84,11/23/19 19:01,"642 4th St, Boston, MA 02215" +296333,Wired Headphones,1,11.99,11/11/19 00:21,"360 Jefferson St, San Francisco, CA 94016" +296334,AAA Batteries (4-pack),1,2.99,11/16/19 20:28,"573 6th St, New York City, NY 10001" +296335,AAA Batteries (4-pack),1,2.99,11/29/19 09:26,"199 Madison St, Los Angeles, CA 90001" +296336,Flatscreen TV,1,300,11/01/19 20:43,"691 Spruce St, New York City, NY 10001" +296337,AAA Batteries (4-pack),1,2.99,11/12/19 22:17,"686 1st St, Seattle, WA 98101" +296338,20in Monitor,1,109.99,11/04/19 00:30,"384 4th St, Dallas, TX 75001" +296339,27in 4K Gaming Monitor,1,389.99,11/17/19 21:53,"174 Chestnut St, San Francisco, CA 94016" +296340,USB-C Charging Cable,1,11.95,11/08/19 17:24,"735 Elm St, San Francisco, CA 94016" +296341,iPhone,1,700,11/02/19 16:34,"968 Pine St, Austin, TX 73301" +296342,Wired Headphones,1,11.99,11/30/19 20:45,"233 Lake St, Dallas, TX 75001" +296343,Flatscreen TV,1,300,11/12/19 15:19,"500 4th St, Los Angeles, CA 90001" +296344,Wired Headphones,1,11.99,11/07/19 06:33,"122 Cherry St, San Francisco, CA 94016" +296345,USB-C Charging Cable,1,11.95,11/24/19 02:59,"493 4th St, Dallas, TX 75001" +296346,Lightning Charging Cable,1,14.95,11/10/19 02:22,"652 Walnut St, Atlanta, GA 30301" +296347,Lightning Charging Cable,1,14.95,11/27/19 16:47,"70 Highland St, New York City, NY 10001" +296348,Lightning Charging Cable,2,14.95,11/03/19 19:58,"966 14th St, San Francisco, CA 94016" +296349,27in FHD Monitor,1,149.99,11/22/19 19:36,"406 Lakeview St, Atlanta, GA 30301" +296350,Wired Headphones,1,11.99,11/09/19 16:21,"662 Cherry St, New York City, NY 10001" +296351,Apple Airpods Headphones,1,150,11/02/19 14:11,"527 7th St, San Francisco, CA 94016" +296352,USB-C Charging Cable,3,11.95,11/19/19 16:12,"667 9th St, Dallas, TX 75001" +296353,LG Washing Machine,1,600.0,11/23/19 21:26,"325 Ridge St, Seattle, WA 98101" +296354,AAA Batteries (4-pack),5,2.99,11/28/19 22:54,"722 Lincoln St, San Francisco, CA 94016" +296355,AA Batteries (4-pack),2,3.84,11/09/19 14:03,"854 Madison St, Seattle, WA 98101" +296356,Lightning Charging Cable,1,14.95,11/01/19 20:26,"701 Elm St, Atlanta, GA 30301" +296357,20in Monitor,1,109.99,11/21/19 00:30,"953 South St, San Francisco, CA 94016" +296358,Apple Airpods Headphones,1,150,11/04/19 14:08,"627 West St, San Francisco, CA 94016" +296359,Lightning Charging Cable,1,14.95,11/14/19 19:53,"369 Forest St, Seattle, WA 98101" +296360,Lightning Charging Cable,1,14.95,11/13/19 08:06,"945 Cedar St, Seattle, WA 98101" +296361,USB-C Charging Cable,1,11.95,11/30/19 01:34,"929 Center St, Portland, OR 97035" +296362,iPhone,1,700,11/04/19 13:05,"661 2nd St, New York City, NY 10001" +296363,AA Batteries (4-pack),1,3.84,11/28/19 19:17,"188 7th St, San Francisco, CA 94016" +296364,ThinkPad Laptop,1,999.99,11/19/19 13:37,"889 Highland St, Los Angeles, CA 90001" +296365,AAA Batteries (4-pack),2,2.99,11/16/19 15:54,"737 13th St, New York City, NY 10001" +296366,AAA Batteries (4-pack),1,2.99,11/26/19 13:18,"320 Washington St, Los Angeles, CA 90001" +296367,Bose SoundSport Headphones,1,99.99,11/08/19 17:42,"212 Hill St, Los Angeles, CA 90001" +296368,Apple Airpods Headphones,1,150,11/20/19 03:10,"896 Ridge St, San Francisco, CA 94016" +296369,AAA Batteries (4-pack),1,2.99,11/19/19 09:34,"725 12th St, San Francisco, CA 94016" +296370,Apple Airpods Headphones,1,150,11/22/19 03:06,"579 Jefferson St, New York City, NY 10001" +296371,Flatscreen TV,1,300,11/03/19 22:38,"651 Adams St, Boston, MA 02215" +296372,Wired Headphones,1,11.99,11/24/19 20:19,"712 Jefferson St, New York City, NY 10001" +296373,27in FHD Monitor,1,149.99,11/01/19 09:36,"140 Madison St, Los Angeles, CA 90001" +296374,AA Batteries (4-pack),2,3.84,11/26/19 00:13,"994 Jefferson St, Atlanta, GA 30301" +296375,AAA Batteries (4-pack),1,2.99,11/23/19 22:03,"777 10th St, Los Angeles, CA 90001" +296376,USB-C Charging Cable,1,11.95,11/05/19 22:07,"648 14th St, San Francisco, CA 94016" +296377,27in FHD Monitor,1,149.99,11/11/19 01:50,"372 8th St, San Francisco, CA 94016" +296378,Macbook Pro Laptop,1,1700,11/07/19 15:10,"396 1st St, New York City, NY 10001" +296379,34in Ultrawide Monitor,1,379.99,11/09/19 10:16,"365 Park St, Austin, TX 73301" +296380,Vareebadd Phone,1,400,11/25/19 14:27,"986 Madison St, Portland, OR 97035" +296381,34in Ultrawide Monitor,1,379.99,11/14/19 12:09,"358 Lake St, New York City, NY 10001" +296382,Bose SoundSport Headphones,1,99.99,11/14/19 22:46,"514 Center St, Portland, OR 97035" +296383,USB-C Charging Cable,1,11.95,11/05/19 12:12,"417 North St, New York City, NY 10001" +296384,AA Batteries (4-pack),1,3.84,11/08/19 17:30,"563 Jackson St, Los Angeles, CA 90001" +296385,iPhone,1,700,11/18/19 13:31,"356 4th St, Boston, MA 02215" +296385,Lightning Charging Cable,1,14.95,11/18/19 13:31,"356 4th St, Boston, MA 02215" +296386,Apple Airpods Headphones,1,150,11/07/19 15:44,"536 West St, Seattle, WA 98101" +296387,Macbook Pro Laptop,1,1700,11/04/19 18:22,"997 Center St, Seattle, WA 98101" +296388,AAA Batteries (4-pack),1,2.99,11/09/19 18:20,"710 Church St, Portland, ME 04101" +296389,iPhone,1,700,11/19/19 08:48,"339 Elm St, Los Angeles, CA 90001" +296389,Lightning Charging Cable,1,14.95,11/19/19 08:48,"339 Elm St, Los Angeles, CA 90001" +296390,Google Phone,1,600,11/15/19 09:13,"349 Park St, San Francisco, CA 94016" +296391,USB-C Charging Cable,1,11.95,11/21/19 16:08,"297 Cherry St, Atlanta, GA 30301" +296392,AA Batteries (4-pack),1,3.84,11/23/19 11:11,"72 Chestnut St, Seattle, WA 98101" +296393,Vareebadd Phone,1,400,11/08/19 19:06,"749 8th St, Dallas, TX 75001" +296394,AA Batteries (4-pack),1,3.84,11/24/19 04:25,"870 Jefferson St, Atlanta, GA 30301" +296395,iPhone,1,700,11/27/19 10:06,"344 Cherry St, San Francisco, CA 94016" +296396,Lightning Charging Cable,1,14.95,11/15/19 18:36,"533 Johnson St, Atlanta, GA 30301" +296397,Google Phone,1,600,11/12/19 21:22,"175 Ridge St, Atlanta, GA 30301" +296398,34in Ultrawide Monitor,1,379.99,11/15/19 23:08,"690 1st St, San Francisco, CA 94016" +296399,LG Dryer,1,600.0,11/17/19 21:52,"936 12th St, San Francisco, CA 94016" +296400,iPhone,1,700,11/02/19 20:33,"429 7th St, Los Angeles, CA 90001" +296401,AA Batteries (4-pack),1,3.84,11/10/19 16:51,"564 14th St, Seattle, WA 98101" +296402,Lightning Charging Cable,1,14.95,11/17/19 10:32,"860 Willow St, Atlanta, GA 30301" +296403,Lightning Charging Cable,1,14.95,11/22/19 02:04,"125 South St, Seattle, WA 98101" +296404,Lightning Charging Cable,1,14.95,11/10/19 22:23,"22 Adams St, Boston, MA 02215" +296405,Lightning Charging Cable,1,14.95,11/20/19 19:13,"859 Madison St, Los Angeles, CA 90001" +296406,AA Batteries (4-pack),1,3.84,11/30/19 22:05,"526 Cedar St, Boston, MA 02215" +296407,ThinkPad Laptop,1,999.99,11/11/19 18:58,"365 Hill St, Dallas, TX 75001" +296408,ThinkPad Laptop,1,999.99,11/15/19 08:31,"661 North St, Portland, OR 97035" +296409,AA Batteries (4-pack),2,3.84,11/19/19 15:27,"652 8th St, Austin, TX 73301" +296410,34in Ultrawide Monitor,1,379.99,11/07/19 18:12,"735 South St, San Francisco, CA 94016" +296411,AA Batteries (4-pack),1,3.84,11/17/19 17:38,"990 Church St, San Francisco, CA 94016" +296412,Macbook Pro Laptop,1,1700,11/01/19 02:59,"919 Center St, San Francisco, CA 94016" +296413,Google Phone,1,600,11/02/19 11:39,"410 South St, Boston, MA 02215" +296414,AA Batteries (4-pack),1,3.84,11/29/19 18:09,"741 1st St, San Francisco, CA 94016" +296415,34in Ultrawide Monitor,1,379.99,11/07/19 02:57,"127 North St, Boston, MA 02215" +296416,Macbook Pro Laptop,1,1700,11/10/19 21:37,"925 Hickory St, Austin, TX 73301" +296417,AAA Batteries (4-pack),2,2.99,11/26/19 11:49,"984 Washington St, San Francisco, CA 94016" +296418,USB-C Charging Cable,1,11.95,11/29/19 10:56,"103 Chestnut St, Los Angeles, CA 90001" +296419,27in 4K Gaming Monitor,1,389.99,11/25/19 18:08,"505 South St, New York City, NY 10001" +296420,AA Batteries (4-pack),2,3.84,11/27/19 11:06,"240 Walnut St, Los Angeles, CA 90001" +296421,ThinkPad Laptop,1,999.99,11/04/19 15:00,"366 9th St, Portland, OR 97035" +296422,27in 4K Gaming Monitor,1,389.99,11/03/19 09:02,"235 Lakeview St, Seattle, WA 98101" +296423,34in Ultrawide Monitor,1,379.99,11/08/19 12:44,"950 11th St, Dallas, TX 75001" +296424,AA Batteries (4-pack),1,3.84,11/17/19 00:15,"742 Lake St, New York City, NY 10001" +296425,Macbook Pro Laptop,1,1700,11/02/19 08:55,"171 Lakeview St, San Francisco, CA 94016" +296426,AAA Batteries (4-pack),2,2.99,11/13/19 07:35,"926 1st St, San Francisco, CA 94016" +296427,Bose SoundSport Headphones,1,99.99,11/06/19 12:40,"188 Pine St, Austin, TX 73301" +296428,AA Batteries (4-pack),1,3.84,11/22/19 00:42,"363 10th St, San Francisco, CA 94016" +296429,Lightning Charging Cable,1,14.95,11/03/19 12:44,"987 Wilson St, Seattle, WA 98101" +296430,27in 4K Gaming Monitor,1,389.99,11/27/19 12:54,"449 Ridge St, Atlanta, GA 30301" +296431,AAA Batteries (4-pack),3,2.99,11/24/19 21:41,"338 North St, New York City, NY 10001" +296432,iPhone,1,700,11/12/19 08:46,"994 South St, San Francisco, CA 94016" +296433,USB-C Charging Cable,1,11.95,11/24/19 22:03,"334 Church St, New York City, NY 10001" +296434,Apple Airpods Headphones,1,150,11/20/19 09:33,"728 Meadow St, Portland, OR 97035" +296435,Lightning Charging Cable,1,14.95,11/29/19 18:24,"121 Cedar St, San Francisco, CA 94016" +296436,Wired Headphones,1,11.99,11/30/19 23:04,"956 Adams St, Los Angeles, CA 90001" +296437,Lightning Charging Cable,1,14.95,11/05/19 16:30,"726 Pine St, Seattle, WA 98101" +296438,Lightning Charging Cable,1,14.95,11/13/19 09:40,"891 Hickory St, Atlanta, GA 30301" +296439,Macbook Pro Laptop,1,1700,11/06/19 21:44,"533 Forest St, Los Angeles, CA 90001" +296440,Apple Airpods Headphones,1,150,11/20/19 12:34,"519 Sunset St, New York City, NY 10001" +296441,Flatscreen TV,1,300,11/14/19 13:11,"243 Elm St, New York City, NY 10001" +296442,Lightning Charging Cable,1,14.95,11/06/19 09:05,"315 13th St, Portland, OR 97035" +296443,AA Batteries (4-pack),1,3.84,11/03/19 18:12,"13 Spruce St, New York City, NY 10001" +296444,Bose SoundSport Headphones,1,99.99,11/01/19 14:26,"949 North St, Atlanta, GA 30301" +296445,Flatscreen TV,1,300,11/26/19 06:59,"35 Pine St, Austin, TX 73301" +296446,Wired Headphones,1,11.99,11/02/19 23:41,"374 Lake St, Dallas, TX 75001" +296447,Wired Headphones,1,11.99,11/16/19 10:25,"655 Johnson St, San Francisco, CA 94016" +296448,USB-C Charging Cable,1,11.95,11/19/19 23:32,"773 Jackson St, New York City, NY 10001" +296449,Macbook Pro Laptop,1,1700,11/28/19 23:08,"279 4th St, Seattle, WA 98101" +296450,AAA Batteries (4-pack),1,2.99,11/04/19 10:42,"629 Cedar St, San Francisco, CA 94016" +296451,AAA Batteries (4-pack),2,2.99,11/25/19 09:03,"109 Lake St, San Francisco, CA 94016" +296452,Lightning Charging Cable,1,14.95,11/23/19 11:37,"691 Spruce St, Seattle, WA 98101" +296453,USB-C Charging Cable,1,11.95,11/13/19 13:35,"50 5th St, New York City, NY 10001" +296454,AA Batteries (4-pack),2,3.84,11/03/19 19:29,"569 Cherry St, Dallas, TX 75001" +296455,Lightning Charging Cable,1,14.95,11/11/19 15:50,"276 Jefferson St, San Francisco, CA 94016" +296456,Wired Headphones,1,11.99,11/12/19 17:49,"343 Johnson St, Seattle, WA 98101" +296457,Lightning Charging Cable,1,14.95,11/16/19 08:20,"682 Walnut St, San Francisco, CA 94016" +296458,AAA Batteries (4-pack),1,2.99,11/27/19 18:35,"626 Johnson St, Seattle, WA 98101" +296459,Google Phone,1,600,11/22/19 18:00,"904 Lakeview St, San Francisco, CA 94016" +296460,27in FHD Monitor,1,149.99,11/25/19 06:29,"699 1st St, San Francisco, CA 94016" +296461,Flatscreen TV,1,300,11/28/19 12:59,"212 7th St, New York City, NY 10001" +296462,Google Phone,1,600,11/05/19 19:52,"137 West St, Austin, TX 73301" +296463,AAA Batteries (4-pack),1,2.99,11/12/19 11:08,"358 Lake St, San Francisco, CA 94016" +296464,USB-C Charging Cable,1,11.95,11/06/19 10:17,"689 4th St, Boston, MA 02215" +296465,Lightning Charging Cable,1,14.95,11/28/19 20:23,"716 River St, San Francisco, CA 94016" +296466,Bose SoundSport Headphones,1,99.99,11/03/19 12:20,"26 4th St, San Francisco, CA 94016" +296467,USB-C Charging Cable,1,11.95,11/06/19 12:11,"158 8th St, Los Angeles, CA 90001" +296468,27in 4K Gaming Monitor,1,389.99,11/11/19 17:06,"825 Church St, Boston, MA 02215" +296469,20in Monitor,1,109.99,11/19/19 11:46,"517 Adams St, San Francisco, CA 94016" +296470,USB-C Charging Cable,1,11.95,11/25/19 13:29,"879 Jefferson St, Boston, MA 02215" +296471,AAA Batteries (4-pack),2,2.99,11/23/19 13:37,"166 Wilson St, Austin, TX 73301" +296472,Macbook Pro Laptop,1,1700,11/16/19 11:04,"682 Sunset St, San Francisco, CA 94016" +296473,AAA Batteries (4-pack),1,2.99,11/03/19 13:18,"187 Adams St, New York City, NY 10001" +296474,USB-C Charging Cable,1,11.95,11/04/19 20:07,"196 North St, New York City, NY 10001" +296475,27in 4K Gaming Monitor,1,389.99,11/07/19 16:55,"265 Cedar St, San Francisco, CA 94016" +296476,Bose SoundSport Headphones,1,99.99,11/09/19 15:04,"745 10th St, San Francisco, CA 94016" +296477,34in Ultrawide Monitor,1,379.99,11/18/19 09:02,"284 13th St, San Francisco, CA 94016" +296478,Wired Headphones,1,11.99,11/17/19 23:17,"387 Lakeview St, Atlanta, GA 30301" +296479,27in FHD Monitor,1,149.99,11/19/19 20:11,"995 9th St, Los Angeles, CA 90001" +296480,AAA Batteries (4-pack),1,2.99,11/17/19 17:53,"146 Lakeview St, Portland, OR 97035" +296481,Apple Airpods Headphones,1,150,11/01/19 22:58,"897 5th St, New York City, NY 10001" +296482,Apple Airpods Headphones,1,150,11/04/19 14:32,"764 8th St, Austin, TX 73301" +296483,Lightning Charging Cable,1,14.95,11/29/19 16:49,"470 South St, San Francisco, CA 94016" +296484,Lightning Charging Cable,1,14.95,11/18/19 13:22,"851 13th St, Los Angeles, CA 90001" +296485,USB-C Charging Cable,1,11.95,11/07/19 17:54,"841 Washington St, Dallas, TX 75001" +296486,Wired Headphones,2,11.99,11/17/19 07:16,"598 Hill St, Seattle, WA 98101" +296486,ThinkPad Laptop,1,999.99,11/17/19 07:16,"598 Hill St, Seattle, WA 98101" +296487,AA Batteries (4-pack),1,3.84,11/21/19 20:58,"865 Forest St, New York City, NY 10001" +296488,Lightning Charging Cable,1,14.95,11/15/19 15:28,"601 Lincoln St, Seattle, WA 98101" +296489,USB-C Charging Cable,1,11.95,11/10/19 12:41,"124 8th St, Portland, OR 97035" +296490,Lightning Charging Cable,2,14.95,11/13/19 08:34,"314 Johnson St, San Francisco, CA 94016" +296491,27in FHD Monitor,1,149.99,11/29/19 10:55,"98 Washington St, Los Angeles, CA 90001" +296492,USB-C Charging Cable,1,11.95,11/23/19 08:32,"628 Washington St, Los Angeles, CA 90001" +296493,Lightning Charging Cable,1,14.95,11/06/19 22:17,"751 Meadow St, Austin, TX 73301" +296494,USB-C Charging Cable,1,11.95,11/12/19 00:27,"424 Cedar St, Austin, TX 73301" +296495,Lightning Charging Cable,1,14.95,11/18/19 13:55,"54 2nd St, San Francisco, CA 94016" +296496,Wired Headphones,1,11.99,11/06/19 21:09,"762 6th St, Boston, MA 02215" +296497,Apple Airpods Headphones,1,150,11/19/19 22:05,"476 12th St, Los Angeles, CA 90001" +296498,AA Batteries (4-pack),1,3.84,11/26/19 18:23,"673 Highland St, Seattle, WA 98101" +296499,34in Ultrawide Monitor,1,379.99,11/23/19 14:05,"749 Chestnut St, Boston, MA 02215" +296500,AA Batteries (4-pack),2,3.84,11/02/19 23:59,"251 Wilson St, Atlanta, GA 30301" +296501,AAA Batteries (4-pack),1,2.99,11/12/19 17:06,"236 Spruce St, New York City, NY 10001" +296502,ThinkPad Laptop,1,999.99,11/07/19 17:08,"539 8th St, Atlanta, GA 30301" +296503,AA Batteries (4-pack),1,3.84,11/23/19 19:02,"899 River St, Atlanta, GA 30301" +296504,AA Batteries (4-pack),1,3.84,11/08/19 15:25,"939 Washington St, New York City, NY 10001" +296504,USB-C Charging Cable,1,11.95,11/08/19 15:25,"939 Washington St, New York City, NY 10001" +296505,27in 4K Gaming Monitor,1,389.99,11/20/19 00:19,"36 Wilson St, Boston, MA 02215" +296506,27in 4K Gaming Monitor,1,389.99,11/11/19 13:44,"898 6th St, Portland, OR 97035" +296507,27in 4K Gaming Monitor,1,389.99,11/13/19 11:33,"711 5th St, Seattle, WA 98101" +296508,27in 4K Gaming Monitor,1,389.99,11/13/19 12:47,"110 West St, Dallas, TX 75001" +296509,AAA Batteries (4-pack),4,2.99,11/01/19 09:33,"621 Chestnut St, Portland, OR 97035" +296510,Lightning Charging Cable,1,14.95,11/26/19 16:46,"924 Adams St, San Francisco, CA 94016" +296511,Lightning Charging Cable,1,14.95,11/01/19 18:51,"144 Meadow St, New York City, NY 10001" +296511,USB-C Charging Cable,1,11.95,11/01/19 18:51,"144 Meadow St, New York City, NY 10001" +296512,Lightning Charging Cable,1,14.95,11/20/19 10:38,"856 Forest St, San Francisco, CA 94016" +296513,Bose SoundSport Headphones,1,99.99,11/30/19 15:53,"71 Cedar St, San Francisco, CA 94016" +296514,34in Ultrawide Monitor,1,379.99,11/21/19 14:20,"544 Lincoln St, Los Angeles, CA 90001" +296515,Bose SoundSport Headphones,1,99.99,11/08/19 21:37,"534 Willow St, Dallas, TX 75001" +296516,Lightning Charging Cable,1,14.95,11/25/19 19:40,"820 Meadow St, San Francisco, CA 94016" +296517,AAA Batteries (4-pack),1,2.99,11/14/19 12:36,"992 Park St, New York City, NY 10001" +296518,Apple Airpods Headphones,1,150,11/03/19 11:35,"276 Lakeview St, New York City, NY 10001" +296519,AA Batteries (4-pack),1,3.84,11/02/19 17:22,"759 2nd St, Los Angeles, CA 90001" +296520,Wired Headphones,1,11.99,11/13/19 20:24,"126 Sunset St, New York City, NY 10001" +296521,27in FHD Monitor,1,149.99,11/14/19 20:50,"292 10th St, New York City, NY 10001" +296522,AAA Batteries (4-pack),2,2.99,11/02/19 12:10,"862 Hill St, San Francisco, CA 94016" +296523,USB-C Charging Cable,1,11.95,11/11/19 10:25,"821 6th St, Los Angeles, CA 90001" +296524,Bose SoundSport Headphones,1,99.99,11/10/19 19:37,"177 Sunset St, Atlanta, GA 30301" +296525,34in Ultrawide Monitor,1,379.99,11/04/19 09:18,"927 13th St, Los Angeles, CA 90001" +296526,Lightning Charging Cable,1,14.95,11/13/19 20:05,"78 Walnut St, Dallas, TX 75001" +296527,Lightning Charging Cable,1,14.95,11/17/19 11:00,"39 2nd St, San Francisco, CA 94016" +296528,ThinkPad Laptop,1,999.99,11/20/19 12:29,"947 8th St, Los Angeles, CA 90001" +296529,AA Batteries (4-pack),1,3.84,11/09/19 17:46,"598 Sunset St, San Francisco, CA 94016" +296530,20in Monitor,1,109.99,11/11/19 15:45,"766 Lincoln St, Los Angeles, CA 90001" +296531,Apple Airpods Headphones,1,150,11/03/19 00:44,"881 Lake St, Atlanta, GA 30301" +296532,AA Batteries (4-pack),1,3.84,11/07/19 11:00,"56 12th St, Los Angeles, CA 90001" +296533,LG Washing Machine,1,600.0,11/26/19 17:15,"949 Walnut St, Boston, MA 02215" +296533,Bose SoundSport Headphones,1,99.99,11/26/19 17:15,"949 Walnut St, Boston, MA 02215" +296534,34in Ultrawide Monitor,1,379.99,11/07/19 01:15,"730 River St, Atlanta, GA 30301" +296535,Lightning Charging Cable,1,14.95,11/20/19 09:09,"408 Willow St, Los Angeles, CA 90001" +296536,Lightning Charging Cable,1,14.95,11/20/19 10:18,"624 4th St, Los Angeles, CA 90001" +296537,27in FHD Monitor,1,149.99,11/11/19 20:28,"632 Madison St, Los Angeles, CA 90001" +296538,Wired Headphones,1,11.99,11/04/19 10:53,"675 Washington St, New York City, NY 10001" +296539,27in 4K Gaming Monitor,1,389.99,11/01/19 18:12,"778 11th St, Boston, MA 02215" +296540,USB-C Charging Cable,1,11.95,11/25/19 20:19,"351 Jefferson St, New York City, NY 10001" +296541,Vareebadd Phone,1,400,11/06/19 14:13,"293 Sunset St, San Francisco, CA 94016" +296541,Wired Headphones,1,11.99,11/06/19 14:13,"293 Sunset St, San Francisco, CA 94016" +296542,Apple Airpods Headphones,1,150,11/26/19 09:34,"823 Jackson St, Boston, MA 02215" +296543,Apple Airpods Headphones,1,150,11/07/19 14:34,"834 Madison St, San Francisco, CA 94016" +296544,Macbook Pro Laptop,1,1700,11/14/19 18:23,"860 14th St, Atlanta, GA 30301" +296545,USB-C Charging Cable,1,11.95,11/06/19 13:21,"815 Main St, Seattle, WA 98101" +296546,Lightning Charging Cable,1,14.95,11/27/19 17:45,"501 Ridge St, Los Angeles, CA 90001" +296547,Apple Airpods Headphones,1,150,11/26/19 18:37,"488 11th St, New York City, NY 10001" +296548,AAA Batteries (4-pack),2,2.99,11/24/19 14:07,"983 14th St, San Francisco, CA 94016" +296549,Wired Headphones,1,11.99,11/03/19 15:13,"926 14th St, Atlanta, GA 30301" +296550,Wired Headphones,1,11.99,11/07/19 13:17,"974 Highland St, San Francisco, CA 94016" +296551,27in 4K Gaming Monitor,1,389.99,11/23/19 22:47,"579 Maple St, New York City, NY 10001" +296551,Lightning Charging Cable,1,14.95,11/23/19 22:47,"579 Maple St, New York City, NY 10001" +296552,Lightning Charging Cable,1,14.95,11/10/19 20:20,"529 Elm St, Austin, TX 73301" +296553,AAA Batteries (4-pack),1,2.99,11/10/19 23:27,"892 Forest St, New York City, NY 10001" +296554,USB-C Charging Cable,1,11.95,11/03/19 15:31,"714 9th St, Boston, MA 02215" +296555,iPhone,1,700,11/11/19 15:32,"805 Adams St, Austin, TX 73301" +296556,AAA Batteries (4-pack),1,2.99,11/02/19 15:47,"529 Sunset St, Atlanta, GA 30301" +296557,USB-C Charging Cable,1,11.95,11/23/19 09:50,"639 Park St, Seattle, WA 98101" +296558,Flatscreen TV,1,300,11/29/19 15:41,"159 Hickory St, Los Angeles, CA 90001" +296559,AA Batteries (4-pack),1,3.84,11/01/19 19:32,"811 4th St, Atlanta, GA 30301" +296560,Apple Airpods Headphones,1,150,11/18/19 07:03,"597 West St, San Francisco, CA 94016" +296561,LG Washing Machine,1,600.0,11/03/19 13:06,"842 Center St, San Francisco, CA 94016" +296562,Macbook Pro Laptop,1,1700,11/04/19 11:49,"947 9th St, Portland, OR 97035" +296563,Google Phone,1,600,11/29/19 15:04,"77 North St, Atlanta, GA 30301" +296564,Flatscreen TV,1,300,11/02/19 13:08,"684 Hickory St, Seattle, WA 98101" +296565,Wired Headphones,1,11.99,11/18/19 11:24,"218 West St, San Francisco, CA 94016" +296566,AAA Batteries (4-pack),1,2.99,11/28/19 21:39,"761 Maple St, Dallas, TX 75001" +296567,Bose SoundSport Headphones,1,99.99,11/09/19 15:53,"188 6th St, Los Angeles, CA 90001" +296568,Wired Headphones,1,11.99,11/06/19 22:21,"323 11th St, Boston, MA 02215" +296569,iPhone,1,700,11/22/19 21:05,"27 Spruce St, Seattle, WA 98101" +296570,AA Batteries (4-pack),1,3.84,11/20/19 12:32,"256 Chestnut St, Austin, TX 73301" +296571,27in FHD Monitor,1,149.99,11/04/19 08:06,"308 Pine St, Boston, MA 02215" +296572,USB-C Charging Cable,2,11.95,11/26/19 13:21,"278 Hickory St, Atlanta, GA 30301" +296573,USB-C Charging Cable,1,11.95,11/20/19 10:52,"5 Hickory St, Boston, MA 02215" +296574,Bose SoundSport Headphones,1,99.99,11/21/19 12:09,"345 Wilson St, San Francisco, CA 94016" +296575,AAA Batteries (4-pack),2,2.99,11/19/19 10:28,"135 14th St, San Francisco, CA 94016" +296576,Apple Airpods Headphones,1,150,11/06/19 20:14,"299 8th St, Dallas, TX 75001" +296577,Macbook Pro Laptop,1,1700,11/07/19 21:12,"840 West St, New York City, NY 10001" +296578,iPhone,1,700,11/04/19 14:54,"167 South St, San Francisco, CA 94016" +296578,Wired Headphones,1,11.99,11/04/19 14:54,"167 South St, San Francisco, CA 94016" +296579,Lightning Charging Cable,1,14.95,11/12/19 06:12,"95 Lincoln St, Boston, MA 02215" +296580,Lightning Charging Cable,1,14.95,11/28/19 14:12,"771 Wilson St, Austin, TX 73301" +296581,Macbook Pro Laptop,1,1700,11/22/19 12:02,"873 Hill St, New York City, NY 10001" +296582,Google Phone,1,600,11/12/19 15:05,"645 Chestnut St, Boston, MA 02215" +296582,Wired Headphones,1,11.99,11/12/19 15:05,"645 Chestnut St, Boston, MA 02215" +296583,AA Batteries (4-pack),1,3.84,11/15/19 14:09,"45 Washington St, Seattle, WA 98101" +296584,Apple Airpods Headphones,1,150,11/24/19 22:52,"921 11th St, Los Angeles, CA 90001" +296585,Flatscreen TV,1,300,11/18/19 09:03,"429 13th St, Boston, MA 02215" +296586,Bose SoundSport Headphones,1,99.99,11/16/19 18:42,"416 Chestnut St, San Francisco, CA 94016" +296587,Apple Airpods Headphones,1,150,11/28/19 23:27,"306 14th St, New York City, NY 10001" +296588,AAA Batteries (4-pack),1,2.99,11/27/19 21:01,"96 Church St, San Francisco, CA 94016" +296589,27in FHD Monitor,1,149.99,11/19/19 10:10,"321 Chestnut St, Seattle, WA 98101" +296590,Wired Headphones,1,11.99,11/10/19 09:49,"452 1st St, New York City, NY 10001" +296591,iPhone,1,700,11/28/19 22:08,"959 Maple St, Austin, TX 73301" +296592,Wired Headphones,1,11.99,11/26/19 11:14,"727 14th St, Los Angeles, CA 90001" +296593,AA Batteries (4-pack),2,3.84,11/02/19 11:57,"309 14th St, Los Angeles, CA 90001" +296594,AA Batteries (4-pack),1,3.84,11/03/19 11:47,"211 Meadow St, Seattle, WA 98101" +296595,Apple Airpods Headphones,1,150,11/19/19 18:09,"627 Jackson St, Seattle, WA 98101" +296596,AAA Batteries (4-pack),2,2.99,11/18/19 15:49,"637 Dogwood St, San Francisco, CA 94016" +296597,Lightning Charging Cable,1,14.95,11/09/19 09:35,"994 Lake St, San Francisco, CA 94016" +296598,AAA Batteries (4-pack),1,2.99,11/25/19 21:59,"488 River St, Seattle, WA 98101" +296599,27in 4K Gaming Monitor,1,389.99,11/11/19 20:34,"782 Jefferson St, Boston, MA 02215" +296600,Lightning Charging Cable,1,14.95,11/26/19 17:30,"505 Forest St, Seattle, WA 98101" +296601,AA Batteries (4-pack),1,3.84,11/17/19 12:24,"239 9th St, Los Angeles, CA 90001" +296602,34in Ultrawide Monitor,1,379.99,11/21/19 22:22,"493 1st St, Dallas, TX 75001" +296603,ThinkPad Laptop,1,999.99,11/11/19 19:45,"484 2nd St, Los Angeles, CA 90001" +296604,27in 4K Gaming Monitor,1,389.99,11/25/19 21:32,"942 Wilson St, Seattle, WA 98101" +296605,27in 4K Gaming Monitor,1,389.99,11/06/19 13:00,"368 Main St, Los Angeles, CA 90001" +296606,Lightning Charging Cable,1,14.95,11/11/19 10:29,"236 Main St, Portland, OR 97035" +296607,Bose SoundSport Headphones,1,99.99,11/23/19 23:44,"652 14th St, Los Angeles, CA 90001" +296608,Apple Airpods Headphones,1,150,11/18/19 21:42,"427 Adams St, Atlanta, GA 30301" +296609,AA Batteries (4-pack),2,3.84,11/20/19 01:57,"444 Spruce St, Seattle, WA 98101" +296610,Apple Airpods Headphones,1,150,12/01/19 00:48,"567 Park St, New York City, NY 10001" +296611,AAA Batteries (4-pack),2,2.99,11/20/19 12:34,"809 Forest St, Austin, TX 73301" +296612,Wired Headphones,1,11.99,11/27/19 19:37,"966 Center St, San Francisco, CA 94016" +296613,Apple Airpods Headphones,1,150,11/26/19 09:12,"70 Cedar St, Austin, TX 73301" +296614,USB-C Charging Cable,1,11.95,11/14/19 23:17,"253 Lincoln St, San Francisco, CA 94016" +296615,Flatscreen TV,1,300,11/28/19 10:13,"74 14th St, Portland, OR 97035" +296616,AA Batteries (4-pack),1,3.84,11/26/19 14:25,"501 Maple St, Atlanta, GA 30301" +296617,ThinkPad Laptop,1,999.99,11/22/19 18:41,"584 Hill St, Seattle, WA 98101" +296618,Wired Headphones,1,11.99,11/30/19 09:52,"960 10th St, San Francisco, CA 94016" +296619,Wired Headphones,1,11.99,11/23/19 23:25,"789 South St, Dallas, TX 75001" +296620,20in Monitor,1,109.99,11/10/19 18:07,"600 7th St, San Francisco, CA 94016" +296621,27in FHD Monitor,1,149.99,11/13/19 15:27,"108 Sunset St, Dallas, TX 75001" +296622,Lightning Charging Cable,1,14.95,11/03/19 16:01,"33 5th St, Atlanta, GA 30301" +296623,AAA Batteries (4-pack),1,2.99,11/12/19 07:43,"450 Jefferson St, San Francisco, CA 94016" +296624,AAA Batteries (4-pack),2,2.99,11/01/19 12:02,"669 Forest St, Los Angeles, CA 90001" +296625,34in Ultrawide Monitor,1,379.99,11/23/19 07:06,"694 Wilson St, Boston, MA 02215" +296626,Google Phone,1,600,11/15/19 12:53,"206 Dogwood St, Atlanta, GA 30301" +296627,USB-C Charging Cable,1,11.95,11/17/19 12:15,"947 Jackson St, Seattle, WA 98101" +296627,AAA Batteries (4-pack),1,2.99,11/17/19 12:15,"947 Jackson St, Seattle, WA 98101" +296628,Wired Headphones,1,11.99,11/08/19 20:52,"284 Adams St, Portland, OR 97035" +296629,34in Ultrawide Monitor,1,379.99,11/02/19 18:38,"933 Ridge St, Atlanta, GA 30301" +296630,Apple Airpods Headphones,1,150,11/18/19 19:23,"950 West St, Los Angeles, CA 90001" +296631,Apple Airpods Headphones,1,150,11/12/19 12:08,"729 Cherry St, Los Angeles, CA 90001" +296632,USB-C Charging Cable,1,11.95,11/19/19 19:59,"785 7th St, New York City, NY 10001" +296633,iPhone,1,700,11/20/19 10:17,"814 Cedar St, Atlanta, GA 30301" +296634,AA Batteries (4-pack),1,3.84,11/17/19 18:27,"444 Dogwood St, Seattle, WA 98101" +296635,AAA Batteries (4-pack),1,2.99,11/26/19 07:55,"939 6th St, Seattle, WA 98101" +296636,AA Batteries (4-pack),1,3.84,11/11/19 10:25,"756 Chestnut St, Atlanta, GA 30301" +296637,20in Monitor,1,109.99,11/14/19 01:33,"259 Washington St, Dallas, TX 75001" +296638,AA Batteries (4-pack),1,3.84,11/29/19 14:11,"423 Jefferson St, Atlanta, GA 30301" +296639,AAA Batteries (4-pack),3,2.99,11/21/19 13:55,"339 5th St, Atlanta, GA 30301" +296640,Google Phone,1,600,11/16/19 21:26,"291 Jefferson St, Austin, TX 73301" +296641,20in Monitor,1,109.99,11/11/19 22:26,"107 Meadow St, Seattle, WA 98101" +296642,AAA Batteries (4-pack),4,2.99,11/16/19 21:11,"606 Walnut St, New York City, NY 10001" +296643,ThinkPad Laptop,1,999.99,11/05/19 10:44,"257 Meadow St, Los Angeles, CA 90001" +296644,Wired Headphones,1,11.99,11/01/19 11:13,"863 Jackson St, San Francisco, CA 94016" +296645,Bose SoundSport Headphones,1,99.99,11/25/19 20:04,"882 Walnut St, Austin, TX 73301" +296646,AAA Batteries (4-pack),1,2.99,11/29/19 18:37,"224 Johnson St, Boston, MA 02215" +296647,Apple Airpods Headphones,1,150,11/18/19 19:07,"447 Pine St, Seattle, WA 98101" +296648,Wired Headphones,1,11.99,11/09/19 09:50,"911 Chestnut St, San Francisco, CA 94016" +296649,34in Ultrawide Monitor,1,379.99,11/23/19 18:16,"30 Lakeview St, New York City, NY 10001" +296650,AAA Batteries (4-pack),2,2.99,11/04/19 19:09,"949 8th St, New York City, NY 10001" +296651,USB-C Charging Cable,1,11.95,11/21/19 17:41,"405 9th St, New York City, NY 10001" +296652,AA Batteries (4-pack),1,3.84,11/17/19 18:28,"289 Madison St, San Francisco, CA 94016" +296653,Apple Airpods Headphones,1,150,11/10/19 17:03,"155 Madison St, Seattle, WA 98101" +296654,AA Batteries (4-pack),1,3.84,11/23/19 10:25,"977 Washington St, Boston, MA 02215" +296655,USB-C Charging Cable,1,11.95,11/01/19 10:13,"85 Main St, Boston, MA 02215" +296656,Wired Headphones,2,11.99,11/14/19 19:36,"807 Lincoln St, Atlanta, GA 30301" +296657,20in Monitor,1,109.99,11/23/19 15:40,"677 Spruce St, Atlanta, GA 30301" +296658,USB-C Charging Cable,2,11.95,11/05/19 13:37,"359 14th St, San Francisco, CA 94016" +296659,AAA Batteries (4-pack),1,2.99,11/03/19 14:42,"29 Lincoln St, Los Angeles, CA 90001" +296660,Macbook Pro Laptop,1,1700,11/09/19 20:17,"533 Lincoln St, Atlanta, GA 30301" +296661,AAA Batteries (4-pack),1,2.99,11/08/19 14:41,"940 West St, Portland, OR 97035" +296662,AAA Batteries (4-pack),1,2.99,11/14/19 20:50,"186 1st St, Atlanta, GA 30301" +296663,Wired Headphones,2,11.99,11/28/19 15:25,"481 Willow St, New York City, NY 10001" +296664,ThinkPad Laptop,1,999.99,11/10/19 23:23,"666 11th St, Austin, TX 73301" +296665,Google Phone,1,600,11/06/19 10:18,"227 Walnut St, San Francisco, CA 94016" +296666,AAA Batteries (4-pack),1,2.99,11/18/19 19:30,"117 9th St, Dallas, TX 75001" +296667,USB-C Charging Cable,1,11.95,11/24/19 13:43,"461 Elm St, Atlanta, GA 30301" +296668,Lightning Charging Cable,1,14.95,11/17/19 09:00,"151 4th St, Dallas, TX 75001" +296669,Bose SoundSport Headphones,1,99.99,11/22/19 21:29,"391 13th St, New York City, NY 10001" +296670,27in FHD Monitor,1,149.99,11/14/19 18:45,"64 9th St, San Francisco, CA 94016" +296671,Apple Airpods Headphones,1,150,11/21/19 12:06,"953 Willow St, Dallas, TX 75001" +296672,AA Batteries (4-pack),2,3.84,11/30/19 09:46,"665 River St, San Francisco, CA 94016" +296673,USB-C Charging Cable,1,11.95,11/15/19 02:56,"364 13th St, Atlanta, GA 30301" +296674,20in Monitor,1,109.99,11/27/19 14:43,"415 4th St, Boston, MA 02215" +296675,Bose SoundSport Headphones,1,99.99,11/08/19 13:12,"162 Adams St, Dallas, TX 75001" +296676,AAA Batteries (4-pack),1,2.99,11/15/19 00:47,"804 Chestnut St, Atlanta, GA 30301" +296677,Wired Headphones,1,11.99,11/30/19 14:20,"452 Adams St, Austin, TX 73301" +296678,USB-C Charging Cable,1,11.95,11/19/19 17:51,"48 2nd St, San Francisco, CA 94016" +296679,USB-C Charging Cable,1,11.95,11/03/19 16:27,"480 Madison St, Los Angeles, CA 90001" +296680,Lightning Charging Cable,1,14.95,11/19/19 07:08,"300 Forest St, Boston, MA 02215" +296681,Bose SoundSport Headphones,1,99.99,11/29/19 16:47,"491 Cherry St, New York City, NY 10001" +296681,Apple Airpods Headphones,1,150,11/29/19 16:47,"491 Cherry St, New York City, NY 10001" +296682,Wired Headphones,1,11.99,11/19/19 21:02,"281 6th St, Austin, TX 73301" +296683,Bose SoundSport Headphones,1,99.99,11/15/19 06:19,"476 Sunset St, New York City, NY 10001" +296684,27in FHD Monitor,1,149.99,11/29/19 13:57,"723 Church St, Seattle, WA 98101" +296685,AA Batteries (4-pack),4,3.84,11/30/19 01:21,"418 11th St, Portland, OR 97035" +296686,Lightning Charging Cable,2,14.95,11/05/19 23:28,"787 Lake St, San Francisco, CA 94016" +296687,Flatscreen TV,1,300,11/19/19 05:15,"291 North St, New York City, NY 10001" +296688,Vareebadd Phone,1,400,11/29/19 15:27,"712 Jackson St, San Francisco, CA 94016" +296689,AA Batteries (4-pack),2,3.84,11/27/19 17:44,"415 Main St, Los Angeles, CA 90001" +296690,34in Ultrawide Monitor,1,379.99,11/16/19 16:53,"755 6th St, Boston, MA 02215" +296691,Vareebadd Phone,1,400,11/17/19 08:02,"539 Church St, Dallas, TX 75001" +296692,Lightning Charging Cable,1,14.95,11/03/19 16:46,"762 Ridge St, Portland, OR 97035" +296693,20in Monitor,1,109.99,11/16/19 07:54,"151 14th St, San Francisco, CA 94016" +296694,USB-C Charging Cable,2,11.95,11/18/19 14:56,"866 Cedar St, Dallas, TX 75001" +296695,Bose SoundSport Headphones,1,99.99,11/03/19 14:04,"121 Jefferson St, Dallas, TX 75001" +296696,Apple Airpods Headphones,1,150,11/15/19 18:10,"278 Church St, Boston, MA 02215" +296697,34in Ultrawide Monitor,1,379.99,11/06/19 16:50,"590 North St, Austin, TX 73301" +296698,Wired Headphones,1,11.99,11/16/19 11:53,"164 Jackson St, Dallas, TX 75001" +296699,USB-C Charging Cable,1,11.95,11/17/19 08:57,"915 Lake St, Portland, ME 04101" +296700,AA Batteries (4-pack),1,3.84,11/22/19 17:37,"875 Cedar St, Atlanta, GA 30301" +296701,AAA Batteries (4-pack),2,2.99,11/12/19 11:04,"791 Highland St, Seattle, WA 98101" +296702,USB-C Charging Cable,1,11.95,11/11/19 17:24,"896 9th St, Portland, OR 97035" +296703,USB-C Charging Cable,1,11.95,11/14/19 22:43,"437 Forest St, San Francisco, CA 94016" +296704,Apple Airpods Headphones,1,150,11/10/19 16:10,"220 Chestnut St, New York City, NY 10001" +296705,Bose SoundSport Headphones,1,99.99,11/16/19 13:41,"946 Lincoln St, New York City, NY 10001" +296706,Apple Airpods Headphones,1,150,11/06/19 15:28,"784 Forest St, San Francisco, CA 94016" +296707,Apple Airpods Headphones,1,150,11/15/19 11:57,"523 8th St, New York City, NY 10001" +296708,Bose SoundSport Headphones,1,99.99,11/17/19 13:12,"250 Highland St, Seattle, WA 98101" +296709,Lightning Charging Cable,1,14.95,11/09/19 20:00,"960 Hickory St, Seattle, WA 98101" +296710,20in Monitor,1,109.99,11/03/19 23:47,"118 Cherry St, Austin, TX 73301" +296711,AA Batteries (4-pack),1,3.84,11/10/19 21:08,"392 Jefferson St, Dallas, TX 75001" +296712,ThinkPad Laptop,1,999.99,11/07/19 12:23,"699 Elm St, Atlanta, GA 30301" +296713,USB-C Charging Cable,1,11.95,11/28/19 18:47,"298 Hickory St, Dallas, TX 75001" +296714,34in Ultrawide Monitor,1,379.99,11/19/19 15:09,"414 West St, Atlanta, GA 30301" +296715,Bose SoundSport Headphones,1,99.99,11/17/19 11:31,"219 Cedar St, Los Angeles, CA 90001" +296716,Apple Airpods Headphones,1,150,11/21/19 22:19,"784 9th St, New York City, NY 10001" +296717,Wired Headphones,1,11.99,11/17/19 08:19,"299 Hickory St, Los Angeles, CA 90001" +296718,iPhone,1,700,11/23/19 19:12,"87 Sunset St, Austin, TX 73301" +296718,Lightning Charging Cable,1,14.95,11/23/19 19:12,"87 Sunset St, Austin, TX 73301" +296719,AA Batteries (4-pack),1,3.84,11/06/19 05:21,"907 4th St, Los Angeles, CA 90001" +296720,27in FHD Monitor,1,149.99,11/03/19 21:50,"271 Hill St, San Francisco, CA 94016" +296721,27in FHD Monitor,1,149.99,11/02/19 18:06,"262 Lake St, San Francisco, CA 94016" +296722,USB-C Charging Cable,1,11.95,11/08/19 13:39,"680 Cedar St, Los Angeles, CA 90001" +296723,20in Monitor,1,109.99,11/06/19 19:32,"962 Forest St, Los Angeles, CA 90001" +296724,Lightning Charging Cable,1,14.95,11/07/19 18:29,"135 Lake St, Los Angeles, CA 90001" +296725,AA Batteries (4-pack),1,3.84,11/15/19 11:02,"433 Highland St, Los Angeles, CA 90001" +296726,Lightning Charging Cable,1,14.95,11/28/19 21:35,"309 Cherry St, San Francisco, CA 94016" +296727,Macbook Pro Laptop,1,1700,11/04/19 20:22,"311 Cherry St, Seattle, WA 98101" +296728,AAA Batteries (4-pack),5,2.99,11/05/19 19:37,"40 Wilson St, Los Angeles, CA 90001" +296729,AAA Batteries (4-pack),4,2.99,11/26/19 18:10,"230 River St, Portland, OR 97035" +296730,Google Phone,1,600,11/23/19 18:50,"624 Spruce St, Los Angeles, CA 90001" +296731,USB-C Charging Cable,1,11.95,11/18/19 12:03,"304 Madison St, New York City, NY 10001" +296732,Bose SoundSport Headphones,1,99.99,11/24/19 01:30,"844 8th St, Atlanta, GA 30301" +296733,20in Monitor,1,109.99,11/23/19 06:21,"231 Forest St, Boston, MA 02215" +296734,Apple Airpods Headphones,1,150,11/26/19 16:10,"727 14th St, Dallas, TX 75001" +296735,AAA Batteries (4-pack),2,2.99,11/10/19 16:45,"217 Wilson St, Portland, OR 97035" +296736,ThinkPad Laptop,1,999.99,11/14/19 17:09,"767 Lake St, San Francisco, CA 94016" +296737,27in 4K Gaming Monitor,1,389.99,11/19/19 20:27,"286 11th St, Austin, TX 73301" +296738,AAA Batteries (4-pack),1,2.99,11/18/19 09:43,"606 Wilson St, Dallas, TX 75001" +296739,Apple Airpods Headphones,1,150,11/17/19 01:26,"999 South St, Los Angeles, CA 90001" +296740,Bose SoundSport Headphones,1,99.99,11/25/19 10:00,"856 Walnut St, Seattle, WA 98101" +296741,AA Batteries (4-pack),1,3.84,11/24/19 09:32,"683 Chestnut St, San Francisco, CA 94016" +296742,AA Batteries (4-pack),1,3.84,11/05/19 08:20,"316 13th St, Seattle, WA 98101" +296743,Flatscreen TV,1,300,11/21/19 11:38,"210 Walnut St, New York City, NY 10001" +296744,USB-C Charging Cable,1,11.95,11/06/19 10:53,"310 Lakeview St, Los Angeles, CA 90001" +296745,USB-C Charging Cable,1,11.95,11/05/19 16:15,"403 Washington St, Boston, MA 02215" +296746,Wired Headphones,1,11.99,11/28/19 17:54,"542 Walnut St, San Francisco, CA 94016" +296747,AA Batteries (4-pack),1,3.84,11/12/19 15:23,"794 Meadow St, Atlanta, GA 30301" +296748,Wired Headphones,1,11.99,11/29/19 12:37,"930 Sunset St, San Francisco, CA 94016" +296749,ThinkPad Laptop,1,999.99,11/21/19 20:31,"450 Adams St, Seattle, WA 98101" +296750,iPhone,1,700,11/18/19 16:32,"619 Park St, Portland, OR 97035" +296751,Macbook Pro Laptop,1,1700,11/18/19 10:53,"240 Park St, San Francisco, CA 94016" +296752,AAA Batteries (4-pack),1,2.99,11/01/19 13:35,"675 Wilson St, Portland, OR 97035" +296753,Wired Headphones,1,11.99,11/01/19 10:13,"411 13th St, Los Angeles, CA 90001" +296754,USB-C Charging Cable,1,11.95,11/14/19 20:00,"165 Center St, New York City, NY 10001" +296755,AAA Batteries (4-pack),2,2.99,11/13/19 15:17,"68 Adams St, Boston, MA 02215" +296756,AA Batteries (4-pack),1,3.84,11/02/19 09:06,"893 Lincoln St, Dallas, TX 75001" +296757,Lightning Charging Cable,1,14.95,11/17/19 07:49,"453 Wilson St, New York City, NY 10001" +296758,AA Batteries (4-pack),1,3.84,11/13/19 12:18,"726 Cedar St, Portland, ME 04101" +296759,AA Batteries (4-pack),1,3.84,11/10/19 23:37,"553 Wilson St, San Francisco, CA 94016" +296760,27in 4K Gaming Monitor,1,389.99,11/17/19 14:32,"994 Jefferson St, Portland, ME 04101" +296761,USB-C Charging Cable,1,11.95,11/26/19 13:52,"404 Church St, San Francisco, CA 94016" +296762,Apple Airpods Headphones,1,150,11/03/19 08:35,"579 Jefferson St, Dallas, TX 75001" +296763,Flatscreen TV,1,300,11/13/19 15:36,"220 7th St, San Francisco, CA 94016" +296764,Wired Headphones,1,11.99,11/24/19 13:17,"316 7th St, San Francisco, CA 94016" +296765,Bose SoundSport Headphones,1,99.99,11/05/19 17:45,"519 13th St, Portland, ME 04101" +296766,AAA Batteries (4-pack),1,2.99,11/20/19 17:50,"771 Dogwood St, Los Angeles, CA 90001" +296767,Lightning Charging Cable,1,14.95,12/01/19 03:42,"696 Wilson St, San Francisco, CA 94016" +296768,Bose SoundSport Headphones,1,99.99,11/12/19 09:38,"239 Sunset St, San Francisco, CA 94016" +296769,Google Phone,1,600,11/25/19 10:38,"730 Jefferson St, Dallas, TX 75001" +296770,Apple Airpods Headphones,1,150,11/26/19 08:28,"801 Cherry St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +296771,AA Batteries (4-pack),2,3.84,11/28/19 06:58,"327 2nd St, New York City, NY 10001" +296772,AA Batteries (4-pack),2,3.84,11/24/19 09:36,"521 Chestnut St, Los Angeles, CA 90001" +296773,27in 4K Gaming Monitor,1,389.99,11/28/19 14:35,"263 Park St, Seattle, WA 98101" +296774,Wired Headphones,1,11.99,11/10/19 22:42,"429 Park St, New York City, NY 10001" +296775,Bose SoundSport Headphones,1,99.99,11/25/19 10:44,"396 South St, New York City, NY 10001" +296776,27in FHD Monitor,1,149.99,11/22/19 15:19,"792 Madison St, Portland, OR 97035" +296777,AAA Batteries (4-pack),1,2.99,11/24/19 20:25,"175 River St, San Francisco, CA 94016" +296778,27in FHD Monitor,1,149.99,11/29/19 17:41,"791 Walnut St, Seattle, WA 98101" +296779,AA Batteries (4-pack),1,3.84,11/29/19 08:44,"913 Ridge St, Austin, TX 73301" +296780,Apple Airpods Headphones,1,150,11/18/19 12:24,"796 Johnson St, Atlanta, GA 30301" +296781,iPhone,1,700,11/21/19 14:11,"757 River St, Portland, OR 97035" +296782,USB-C Charging Cable,1,11.95,11/10/19 14:00,"265 7th St, Boston, MA 02215" +296783,Wired Headphones,1,11.99,11/13/19 11:40,"323 5th St, Dallas, TX 75001" +296784,Bose SoundSport Headphones,1,99.99,11/26/19 14:12,"272 Church St, New York City, NY 10001" +296785,AAA Batteries (4-pack),2,2.99,11/27/19 10:10,"260 West St, San Francisco, CA 94016" +296786,AA Batteries (4-pack),2,3.84,11/15/19 20:35,"694 Jackson St, Atlanta, GA 30301" +296787,AA Batteries (4-pack),1,3.84,11/02/19 14:27,"622 Pine St, San Francisco, CA 94016" +296788,AAA Batteries (4-pack),2,2.99,11/25/19 03:03,"441 Maple St, Boston, MA 02215" +296789,Lightning Charging Cable,1,14.95,11/26/19 03:43,"269 Madison St, Los Angeles, CA 90001" +296789,AAA Batteries (4-pack),5,2.99,11/26/19 03:43,"269 Madison St, Los Angeles, CA 90001" +296790,Macbook Pro Laptop,1,1700,11/14/19 16:15,"116 Adams St, Dallas, TX 75001" +296791,AAA Batteries (4-pack),1,2.99,11/28/19 18:37,"785 Spruce St, New York City, NY 10001" +296792,Wired Headphones,1,11.99,11/07/19 23:04,"906 Park St, New York City, NY 10001" +296793,USB-C Charging Cable,1,11.95,11/20/19 18:42,"502 Chestnut St, Boston, MA 02215" +296794,AA Batteries (4-pack),3,3.84,11/25/19 12:41,"634 6th St, Boston, MA 02215" +296795,Wired Headphones,1,11.99,11/07/19 15:38,"354 Willow St, Austin, TX 73301" +296796,AA Batteries (4-pack),1,3.84,11/13/19 16:16,"469 North St, Portland, OR 97035" +296797,AAA Batteries (4-pack),2,2.99,11/10/19 10:06,"217 Meadow St, San Francisco, CA 94016" +296798,Macbook Pro Laptop,1,1700,11/23/19 14:16,"814 Walnut St, Boston, MA 02215" +296799,Apple Airpods Headphones,1,150,11/29/19 16:28,"211 Cedar St, Boston, MA 02215" +296800,Bose SoundSport Headphones,1,99.99,11/07/19 16:49,"314 River St, New York City, NY 10001" +296801,AA Batteries (4-pack),1,3.84,11/30/19 14:20,"327 9th St, San Francisco, CA 94016" +296802,iPhone,1,700,11/19/19 21:29,"732 7th St, Los Angeles, CA 90001" +296803,AAA Batteries (4-pack),1,2.99,11/12/19 13:23,"738 7th St, Los Angeles, CA 90001" +296804,Apple Airpods Headphones,1,150,11/03/19 02:07,"248 Center St, New York City, NY 10001" +296804,Lightning Charging Cable,1,14.95,11/03/19 02:07,"248 Center St, New York City, NY 10001" +296805,AAA Batteries (4-pack),1,2.99,11/25/19 13:27,"159 Main St, San Francisco, CA 94016" +296806,Flatscreen TV,1,300,11/10/19 14:54,"351 River St, Dallas, TX 75001" +296807,AA Batteries (4-pack),2,3.84,11/12/19 11:58,"514 Ridge St, Dallas, TX 75001" +296808,Lightning Charging Cable,1,14.95,11/26/19 17:54,"472 7th St, Portland, OR 97035" +296809,AA Batteries (4-pack),1,3.84,11/19/19 21:32,"891 Forest St, Los Angeles, CA 90001" +296810,AAA Batteries (4-pack),1,2.99,11/25/19 08:51,"96 Main St, New York City, NY 10001" +296811,ThinkPad Laptop,1,999.99,11/15/19 10:45,"727 Wilson St, San Francisco, CA 94016" +296812,27in FHD Monitor,1,149.99,11/27/19 10:19,"431 4th St, Dallas, TX 75001" +296813,AAA Batteries (4-pack),2,2.99,11/18/19 22:45,"930 Cherry St, San Francisco, CA 94016" +296814,Apple Airpods Headphones,1,150,11/15/19 12:03,"19 Spruce St, New York City, NY 10001" +296815,Apple Airpods Headphones,1,150,11/30/19 10:43,"99 9th St, San Francisco, CA 94016" +296816,USB-C Charging Cable,1,11.95,11/14/19 11:52,"934 7th St, New York City, NY 10001" +296817,AA Batteries (4-pack),1,3.84,11/09/19 21:34,"757 Lake St, Los Angeles, CA 90001" +296818,Flatscreen TV,1,300,11/26/19 18:56,"918 Lakeview St, San Francisco, CA 94016" +296819,AA Batteries (4-pack),1,3.84,11/13/19 18:20,"266 Willow St, Portland, OR 97035" +296820,Lightning Charging Cable,1,14.95,11/10/19 10:15,"729 Lincoln St, New York City, NY 10001" +296821,Lightning Charging Cable,1,14.95,11/02/19 09:10,"181 Wilson St, San Francisco, CA 94016" +296822,Macbook Pro Laptop,1,1700,11/29/19 15:33,"970 12th St, Austin, TX 73301" +296823,iPhone,1,700,11/03/19 00:38,"112 Wilson St, Boston, MA 02215" +296824,ThinkPad Laptop,1,999.99,11/19/19 19:13,"811 Highland St, Portland, OR 97035" +296825,20in Monitor,1,109.99,11/19/19 18:33,"219 4th St, San Francisco, CA 94016" +296826,iPhone,1,700,11/28/19 19:34,"371 5th St, San Francisco, CA 94016" +296827,AAA Batteries (4-pack),1,2.99,11/25/19 07:20,"510 North St, San Francisco, CA 94016" +296828,27in 4K Gaming Monitor,1,389.99,11/16/19 18:23,"330 4th St, New York City, NY 10001" +296829,Flatscreen TV,1,300,11/26/19 18:00,"338 Meadow St, San Francisco, CA 94016" +296830,USB-C Charging Cable,1,11.95,11/02/19 10:07,"41 West St, Los Angeles, CA 90001" +296831,27in FHD Monitor,1,149.99,11/24/19 17:36,"810 4th St, Boston, MA 02215" +296832,Lightning Charging Cable,1,14.95,11/27/19 19:42,"201 Madison St, Los Angeles, CA 90001" +296833,Lightning Charging Cable,2,14.95,11/07/19 06:49,"218 Meadow St, Seattle, WA 98101" +296834,AAA Batteries (4-pack),1,2.99,11/06/19 18:15,"843 Madison St, San Francisco, CA 94016" +296835,USB-C Charging Cable,1,11.95,11/05/19 08:45,"67 Park St, San Francisco, CA 94016" +296836,AA Batteries (4-pack),2,3.84,11/12/19 14:22,"392 10th St, Los Angeles, CA 90001" +296837,AAA Batteries (4-pack),2,2.99,11/27/19 14:29,"938 Johnson St, Seattle, WA 98101" +296838,Wired Headphones,1,11.99,11/10/19 21:30,"178 Lincoln St, San Francisco, CA 94016" +296839,Bose SoundSport Headphones,1,99.99,11/28/19 14:30,"621 Hill St, San Francisco, CA 94016" +296840,AAA Batteries (4-pack),1,2.99,11/02/19 11:05,"227 Chestnut St, Atlanta, GA 30301" +296841,Lightning Charging Cable,1,14.95,11/26/19 16:58,"216 Main St, Portland, OR 97035" +296842,Lightning Charging Cable,1,14.95,11/18/19 00:00,"557 Meadow St, San Francisco, CA 94016" +296843,AAA Batteries (4-pack),1,2.99,11/04/19 00:10,"949 Cedar St, San Francisco, CA 94016" +296844,27in FHD Monitor,1,149.99,11/27/19 18:58,"706 Meadow St, Boston, MA 02215" +296845,Lightning Charging Cable,1,14.95,11/23/19 18:26,"495 Church St, Portland, OR 97035" +296846,Apple Airpods Headphones,1,150,11/11/19 18:25,"172 Center St, Dallas, TX 75001" +296847,USB-C Charging Cable,1,11.95,11/25/19 20:55,"311 6th St, New York City, NY 10001" +296848,Bose SoundSport Headphones,1,99.99,11/07/19 10:46,"277 South St, Atlanta, GA 30301" +296849,Flatscreen TV,1,300,11/15/19 11:52,"994 Park St, Los Angeles, CA 90001" +296850,AAA Batteries (4-pack),2,2.99,11/09/19 15:12,"321 Chestnut St, Seattle, WA 98101" +296851,USB-C Charging Cable,1,11.95,11/09/19 20:19,"985 River St, Atlanta, GA 30301" +296852,AAA Batteries (4-pack),1,2.99,11/02/19 13:19,"642 Jackson St, Austin, TX 73301" +296853,Wired Headphones,1,11.99,11/22/19 20:10,"676 Main St, Los Angeles, CA 90001" +296854,Apple Airpods Headphones,1,150,11/02/19 10:13,"807 Wilson St, Los Angeles, CA 90001" +296855,Flatscreen TV,1,300,11/26/19 09:44,"186 Willow St, San Francisco, CA 94016" +296856,Lightning Charging Cable,1,14.95,11/09/19 18:24,"18 14th St, Atlanta, GA 30301" +296857,Wired Headphones,1,11.99,11/07/19 19:57,"892 Lake St, New York City, NY 10001" +296858,AAA Batteries (4-pack),2,2.99,11/20/19 20:11,"109 Washington St, Los Angeles, CA 90001" +296859,20in Monitor,1,109.99,11/26/19 16:07,"202 4th St, Atlanta, GA 30301" +296860,Lightning Charging Cable,1,14.95,11/22/19 09:03,"62 Madison St, San Francisco, CA 94016" +296861,AAA Batteries (4-pack),1,2.99,11/22/19 10:32,"33 Highland St, San Francisco, CA 94016" +296862,Wired Headphones,1,11.99,11/13/19 14:38,"114 14th St, Boston, MA 02215" +296863,Apple Airpods Headphones,1,150,11/14/19 10:46,"655 Elm St, Boston, MA 02215" +296864,Macbook Pro Laptop,1,1700,11/15/19 22:49,"8 Lake St, Los Angeles, CA 90001" +296865,27in FHD Monitor,1,149.99,11/01/19 21:35,"298 Walnut St, Los Angeles, CA 90001" +296866,USB-C Charging Cable,1,11.95,11/19/19 21:05,"871 Cedar St, Dallas, TX 75001" +296867,USB-C Charging Cable,1,11.95,11/02/19 12:31,"601 Main St, Portland, ME 04101" +296868,Bose SoundSport Headphones,1,99.99,11/25/19 06:13,"230 14th St, Boston, MA 02215" +296869,AAA Batteries (4-pack),1,2.99,11/16/19 15:56,"680 Park St, Los Angeles, CA 90001" +296870,USB-C Charging Cable,1,11.95,11/14/19 00:14,"498 River St, Los Angeles, CA 90001" +296871,Lightning Charging Cable,1,14.95,11/14/19 23:20,"923 Spruce St, San Francisco, CA 94016" +296872,27in FHD Monitor,1,149.99,11/14/19 16:33,"130 Madison St, Atlanta, GA 30301" +296873,AA Batteries (4-pack),1,3.84,11/11/19 12:03,"595 Chestnut St, Seattle, WA 98101" +296874,Apple Airpods Headphones,1,150,11/22/19 09:42,"953 Chestnut St, Boston, MA 02215" +296875,ThinkPad Laptop,1,999.99,11/11/19 10:36,"649 Elm St, Portland, OR 97035" +296876,AA Batteries (4-pack),1,3.84,11/04/19 20:40,"683 5th St, Atlanta, GA 30301" +296877,Macbook Pro Laptop,1,1700,11/20/19 13:31,"655 Madison St, Dallas, TX 75001" +296878,Bose SoundSport Headphones,1,99.99,11/24/19 02:00,"683 Hickory St, Atlanta, GA 30301" +296879,Wired Headphones,2,11.99,11/25/19 15:11,"173 Adams St, Seattle, WA 98101" +296880,20in Monitor,1,109.99,11/27/19 12:59,"570 5th St, Los Angeles, CA 90001" +296881,27in FHD Monitor,1,149.99,11/09/19 08:47,"580 Church St, Portland, ME 04101" +296882,Lightning Charging Cable,1,14.95,11/16/19 23:06,"385 13th St, New York City, NY 10001" +296883,Lightning Charging Cable,1,14.95,11/26/19 15:41,"358 10th St, Los Angeles, CA 90001" +296884,USB-C Charging Cable,1,11.95,11/21/19 07:15,"797 Lakeview St, Portland, OR 97035" +296885,AA Batteries (4-pack),1,3.84,11/03/19 17:17,"976 9th St, Los Angeles, CA 90001" +296886,Wired Headphones,1,11.99,11/11/19 19:49,"663 14th St, San Francisco, CA 94016" +296887,27in FHD Monitor,1,149.99,11/26/19 12:46,"854 11th St, Los Angeles, CA 90001" +296888,ThinkPad Laptop,1,999.99,11/09/19 11:37,"101 9th St, Dallas, TX 75001" +296889,USB-C Charging Cable,3,11.95,11/21/19 20:04,"337 South St, San Francisco, CA 94016" +296890,Wired Headphones,1,11.99,11/03/19 23:11,"228 14th St, Los Angeles, CA 90001" +296891,Lightning Charging Cable,1,14.95,11/14/19 11:14,"643 Forest St, Boston, MA 02215" +296892,Apple Airpods Headphones,1,150,11/21/19 21:54,"848 14th St, San Francisco, CA 94016" +296893,Wired Headphones,1,11.99,11/20/19 21:01,"801 West St, New York City, NY 10001" +296894,AA Batteries (4-pack),1,3.84,11/26/19 15:06,"147 10th St, Atlanta, GA 30301" +296895,AAA Batteries (4-pack),6,2.99,11/06/19 20:24,"657 Johnson St, Los Angeles, CA 90001" +296896,Lightning Charging Cable,1,14.95,11/22/19 19:33,"625 Church St, San Francisco, CA 94016" +296897,AAA Batteries (4-pack),2,2.99,11/12/19 15:51,"67 West St, San Francisco, CA 94016" +296898,AAA Batteries (4-pack),2,2.99,11/18/19 13:55,"689 8th St, Seattle, WA 98101" +296899,Wired Headphones,1,11.99,11/23/19 19:00,"791 Dogwood St, San Francisco, CA 94016" +296900,Bose SoundSport Headphones,1,99.99,11/13/19 13:11,"56 River St, Los Angeles, CA 90001" +296901,AAA Batteries (4-pack),2,2.99,11/18/19 19:16,"399 Hill St, Boston, MA 02215" +296902,34in Ultrawide Monitor,1,379.99,11/27/19 17:51,"250 6th St, Dallas, TX 75001" +296903,27in FHD Monitor,1,149.99,11/24/19 12:52,"340 Main St, Boston, MA 02215" +296904,Wired Headphones,2,11.99,11/19/19 18:08,"185 South St, New York City, NY 10001" +296905,AA Batteries (4-pack),1,3.84,11/20/19 20:41,"941 1st St, San Francisco, CA 94016" +296906,Bose SoundSport Headphones,1,99.99,11/19/19 10:19,"334 Lakeview St, Boston, MA 02215" +296907,iPhone,1,700,11/02/19 20:45,"732 9th St, New York City, NY 10001" +296908,Wired Headphones,1,11.99,11/21/19 10:53,"141 2nd St, New York City, NY 10001" +296909,AA Batteries (4-pack),3,3.84,11/04/19 19:29,"418 River St, San Francisco, CA 94016" +296910,AA Batteries (4-pack),1,3.84,11/11/19 18:47,"837 1st St, Atlanta, GA 30301" +296911,iPhone,1,700,11/20/19 18:03,"857 Hill St, Austin, TX 73301" +296912,Bose SoundSport Headphones,1,99.99,11/12/19 19:13,"564 Lake St, Boston, MA 02215" +296913,AAA Batteries (4-pack),1,2.99,11/05/19 07:47,"65 Highland St, San Francisco, CA 94016" +296914,USB-C Charging Cable,1,11.95,11/02/19 20:24,"623 Hill St, Dallas, TX 75001" +296915,USB-C Charging Cable,1,11.95,11/17/19 17:54,"908 4th St, Austin, TX 73301" +296916,AA Batteries (4-pack),2,3.84,11/30/19 00:43,"198 Ridge St, San Francisco, CA 94016" +296917,Bose SoundSport Headphones,1,99.99,11/06/19 20:09,"303 Washington St, New York City, NY 10001" +296918,Bose SoundSport Headphones,1,99.99,11/06/19 10:00,"696 Church St, San Francisco, CA 94016" +296919,iPhone,1,700,11/05/19 10:24,"899 Park St, Los Angeles, CA 90001" +296920,Lightning Charging Cable,1,14.95,11/10/19 10:04,"512 North St, San Francisco, CA 94016" +296921,Wired Headphones,1,11.99,11/28/19 15:29,"875 13th St, New York City, NY 10001" +296922,Lightning Charging Cable,1,14.95,11/06/19 14:57,"815 West St, Dallas, TX 75001" +296923,Bose SoundSport Headphones,1,99.99,11/07/19 12:38,"197 Highland St, New York City, NY 10001" +296924,iPhone,1,700,11/11/19 18:04,"930 Cherry St, Boston, MA 02215" +296925,AAA Batteries (4-pack),2,2.99,11/27/19 19:48,"619 Forest St, Boston, MA 02215" +296926,Bose SoundSport Headphones,1,99.99,11/22/19 19:03,"176 Maple St, San Francisco, CA 94016" +296927,Macbook Pro Laptop,1,1700,11/02/19 13:47,"811 South St, New York City, NY 10001" +296928,Wired Headphones,1,11.99,11/28/19 11:58,"865 Hill St, Dallas, TX 75001" +296929,AA Batteries (4-pack),1,3.84,11/07/19 11:54,"199 5th St, Los Angeles, CA 90001" +296930,Bose SoundSport Headphones,1,99.99,11/24/19 07:43,"539 Adams St, New York City, NY 10001" +296931,Bose SoundSport Headphones,1,99.99,11/20/19 08:30,"569 Main St, New York City, NY 10001" +296932,Lightning Charging Cable,1,14.95,11/23/19 15:16,"688 Forest St, Seattle, WA 98101" +296933,AA Batteries (4-pack),2,3.84,11/18/19 06:17,"489 Cedar St, San Francisco, CA 94016" +296934,AA Batteries (4-pack),2,3.84,11/23/19 09:28,"56 6th St, Portland, ME 04101" +296935,Wired Headphones,1,11.99,11/01/19 14:22,"428 Lake St, San Francisco, CA 94016" +296936,Lightning Charging Cable,1,14.95,11/18/19 11:15,"694 14th St, Dallas, TX 75001" +296937,Wired Headphones,1,11.99,11/03/19 14:41,"552 Lake St, New York City, NY 10001" +296938,Wired Headphones,1,11.99,11/16/19 17:55,"550 River St, San Francisco, CA 94016" +296939,Flatscreen TV,1,300,11/15/19 19:50,"835 Dogwood St, Portland, OR 97035" +296940,27in 4K Gaming Monitor,1,389.99,11/12/19 09:12,"541 Adams St, San Francisco, CA 94016" +296941,AAA Batteries (4-pack),1,2.99,11/25/19 15:14,"298 Jefferson St, Portland, OR 97035" +296942,AA Batteries (4-pack),1,3.84,11/16/19 15:53,"388 5th St, New York City, NY 10001" +296943,Apple Airpods Headphones,1,150,11/10/19 10:38,"803 Spruce St, San Francisco, CA 94016" +296944,USB-C Charging Cable,1,11.95,11/20/19 01:52,"682 Spruce St, Los Angeles, CA 90001" +296945,Apple Airpods Headphones,1,150,11/09/19 15:43,"194 Walnut St, Atlanta, GA 30301" +296946,ThinkPad Laptop,1,999.99,11/19/19 20:45,"322 Main St, Los Angeles, CA 90001" +296947,Apple Airpods Headphones,1,150,11/20/19 12:46,"329 Elm St, Boston, MA 02215" +296948,Macbook Pro Laptop,1,1700,11/13/19 16:26,"403 Dogwood St, Los Angeles, CA 90001" +296949,Macbook Pro Laptop,1,1700,11/10/19 15:02,"478 Center St, Seattle, WA 98101" +296950,AAA Batteries (4-pack),1,2.99,11/12/19 22:54,"2 Willow St, Boston, MA 02215" +296951,USB-C Charging Cable,1,11.95,11/19/19 20:52,"391 Washington St, Dallas, TX 75001" +296952,Lightning Charging Cable,1,14.95,11/15/19 22:09,"36 Lakeview St, Boston, MA 02215" +296953,Lightning Charging Cable,1,14.95,11/20/19 00:47,"753 South St, San Francisco, CA 94016" +296954,27in 4K Gaming Monitor,1,389.99,11/12/19 15:43,"157 Pine St, New York City, NY 10001" +296955,Bose SoundSport Headphones,1,99.99,11/17/19 18:10,"856 Ridge St, Boston, MA 02215" +296956,Apple Airpods Headphones,1,150,11/03/19 16:10,"961 4th St, Boston, MA 02215" +296957,27in 4K Gaming Monitor,1,389.99,11/11/19 15:02,"55 River St, Los Angeles, CA 90001" +296958,Bose SoundSport Headphones,1,99.99,11/19/19 14:17,"83 Cedar St, New York City, NY 10001" +296959,34in Ultrawide Monitor,1,379.99,11/12/19 19:22,"672 Highland St, San Francisco, CA 94016" +296960,USB-C Charging Cable,1,11.95,11/29/19 11:26,"321 South St, Los Angeles, CA 90001" +296961,27in 4K Gaming Monitor,1,389.99,11/24/19 17:58,"298 Hill St, Los Angeles, CA 90001" +296962,Lightning Charging Cable,1,14.95,11/01/19 17:15,"37 Pine St, New York City, NY 10001" +296963,USB-C Charging Cable,1,11.95,11/15/19 15:02,"489 Maple St, Portland, OR 97035" +296964,Apple Airpods Headphones,1,150,11/17/19 22:12,"902 Park St, Atlanta, GA 30301" +296965,Macbook Pro Laptop,1,1700,11/30/19 14:25,"646 Main St, Atlanta, GA 30301" +296966,Wired Headphones,1,11.99,11/22/19 16:40,"864 Adams St, Boston, MA 02215" +296967,AA Batteries (4-pack),1,3.84,11/24/19 20:12,"336 12th St, San Francisco, CA 94016" +296968,Lightning Charging Cable,1,14.95,11/21/19 17:12,"575 Adams St, New York City, NY 10001" +296969,20in Monitor,1,109.99,11/30/19 13:05,"649 Sunset St, Atlanta, GA 30301" +296970,34in Ultrawide Monitor,1,379.99,11/19/19 21:32,"682 8th St, Austin, TX 73301" +296971,Apple Airpods Headphones,1,150,11/24/19 22:50,"818 Lakeview St, Los Angeles, CA 90001" +296972,Google Phone,1,600,11/09/19 12:39,"530 Meadow St, Los Angeles, CA 90001" +296973,USB-C Charging Cable,1,11.95,11/09/19 10:11,"854 1st St, Boston, MA 02215" +296974,AAA Batteries (4-pack),1,2.99,11/28/19 00:27,"90 Cedar St, San Francisco, CA 94016" +,,,,, +296975,ThinkPad Laptop,1,999.99,11/11/19 21:19,"291 Johnson St, San Francisco, CA 94016" +296976,Wired Headphones,1,11.99,11/22/19 10:24,"21 River St, San Francisco, CA 94016" +296977,Wired Headphones,1,11.99,11/13/19 07:34,"223 Main St, San Francisco, CA 94016" +296978,AA Batteries (4-pack),1,3.84,11/06/19 10:17,"568 Center St, Portland, OR 97035" +296979,Google Phone,1,600,11/29/19 21:11,"179 Elm St, Portland, OR 97035" +296979,USB-C Charging Cable,1,11.95,11/29/19 21:11,"179 Elm St, Portland, OR 97035" +296980,20in Monitor,1,109.99,11/28/19 20:43,"909 Lincoln St, San Francisco, CA 94016" +296981,USB-C Charging Cable,1,11.95,11/11/19 18:41,"835 Walnut St, San Francisco, CA 94016" +296982,Wired Headphones,1,11.99,11/05/19 15:57,"964 Center St, Los Angeles, CA 90001" +296983,Bose SoundSport Headphones,1,99.99,11/14/19 21:54,"850 Adams St, Boston, MA 02215" +296984,AAA Batteries (4-pack),1,2.99,11/03/19 17:18,"703 Sunset St, San Francisco, CA 94016" +296985,Wired Headphones,1,11.99,11/11/19 16:45,"300 Highland St, San Francisco, CA 94016" +296986,Bose SoundSport Headphones,1,99.99,11/01/19 15:36,"380 Lake St, Boston, MA 02215" +296987,34in Ultrawide Monitor,1,379.99,11/02/19 15:20,"654 Jefferson St, Los Angeles, CA 90001" +296988,Bose SoundSport Headphones,1,99.99,11/18/19 16:39,"727 Hickory St, New York City, NY 10001" +296989,34in Ultrawide Monitor,1,379.99,11/25/19 11:17,"896 Hill St, New York City, NY 10001" +296990,AA Batteries (4-pack),1,3.84,11/20/19 11:27,"434 Forest St, New York City, NY 10001" +296991,Lightning Charging Cable,1,14.95,11/15/19 11:12,"118 Meadow St, Los Angeles, CA 90001" +296992,20in Monitor,1,109.99,11/02/19 14:42,"197 Maple St, Los Angeles, CA 90001" +296993,27in 4K Gaming Monitor,1,389.99,11/20/19 20:19,"188 Ridge St, New York City, NY 10001" +296994,Vareebadd Phone,1,400,11/03/19 13:33,"12 14th St, Portland, OR 97035" +296995,iPhone,1,700,11/18/19 18:41,"64 Center St, Atlanta, GA 30301" +296996,Wired Headphones,1,11.99,11/01/19 05:43,"981 Spruce St, Boston, MA 02215" +296997,Bose SoundSport Headphones,1,99.99,11/12/19 19:25,"131 Lake St, New York City, NY 10001" +296998,Lightning Charging Cable,1,14.95,11/04/19 20:28,"42 4th St, Dallas, TX 75001" +296999,Bose SoundSport Headphones,1,99.99,11/30/19 14:34,"285 Walnut St, Boston, MA 02215" +297000,Lightning Charging Cable,1,14.95,11/30/19 23:27,"596 8th St, San Francisco, CA 94016" +297001,Lightning Charging Cable,1,14.95,11/05/19 18:15,"539 South St, San Francisco, CA 94016" +297002,Lightning Charging Cable,1,14.95,11/19/19 19:54,"642 Park St, San Francisco, CA 94016" +297003,AAA Batteries (4-pack),1,2.99,11/01/19 20:20,"118 Lake St, San Francisco, CA 94016" +297004,Wired Headphones,2,11.99,11/04/19 13:37,"784 Meadow St, New York City, NY 10001" +297005,USB-C Charging Cable,1,11.95,11/15/19 06:46,"877 South St, Los Angeles, CA 90001" +297006,27in FHD Monitor,1,149.99,11/28/19 00:25,"934 Pine St, Seattle, WA 98101" +297007,Flatscreen TV,1,300,11/06/19 12:52,"966 10th St, San Francisco, CA 94016" +297008,USB-C Charging Cable,1,11.95,11/23/19 02:18,"594 9th St, Boston, MA 02215" +297009,iPhone,1,700,11/22/19 11:59,"569 Lake St, New York City, NY 10001" +297009,Wired Headphones,1,11.99,11/22/19 11:59,"569 Lake St, New York City, NY 10001" +297010,Macbook Pro Laptop,1,1700,11/14/19 11:52,"113 2nd St, Portland, OR 97035" +297011,Apple Airpods Headphones,1,150,11/02/19 12:39,"213 West St, Los Angeles, CA 90001" +297012,AA Batteries (4-pack),1,3.84,11/05/19 15:15,"229 Elm St, San Francisco, CA 94016" +297013,Wired Headphones,1,11.99,11/30/19 21:44,"414 10th St, Boston, MA 02215" +297014,Bose SoundSport Headphones,1,99.99,11/30/19 12:11,"409 Meadow St, Boston, MA 02215" +297015,27in FHD Monitor,1,149.99,11/15/19 14:29,"319 Park St, Austin, TX 73301" +297016,LG Dryer,1,600.0,11/20/19 13:51,"252 12th St, Los Angeles, CA 90001" +297017,27in FHD Monitor,1,149.99,11/12/19 19:29,"606 13th St, San Francisco, CA 94016" +297018,Lightning Charging Cable,1,14.95,11/04/19 13:40,"408 4th St, San Francisco, CA 94016" +297019,Google Phone,1,600,11/10/19 20:03,"193 12th St, Dallas, TX 75001" +297020,USB-C Charging Cable,1,11.95,11/10/19 10:47,"398 10th St, Dallas, TX 75001" +297021,AAA Batteries (4-pack),1,2.99,11/06/19 13:16,"990 6th St, Boston, MA 02215" +297022,Flatscreen TV,1,300,11/19/19 08:06,"404 Spruce St, Austin, TX 73301" +297023,Flatscreen TV,1,300,11/18/19 01:06,"265 River St, Atlanta, GA 30301" +297024,AAA Batteries (4-pack),1,2.99,11/17/19 10:47,"279 Lincoln St, San Francisco, CA 94016" +297025,20in Monitor,1,109.99,11/21/19 06:41,"129 Center St, San Francisco, CA 94016" +297026,Wired Headphones,1,11.99,11/29/19 16:23,"210 2nd St, Portland, OR 97035" +297027,Wired Headphones,1,11.99,11/16/19 09:03,"180 11th St, Los Angeles, CA 90001" +297028,Bose SoundSport Headphones,1,99.99,11/02/19 12:52,"610 Willow St, Boston, MA 02215" +297029,ThinkPad Laptop,1,999.99,11/03/19 19:41,"942 12th St, San Francisco, CA 94016" +297030,USB-C Charging Cable,1,11.95,11/19/19 19:59,"74 Hickory St, Boston, MA 02215" +297030,USB-C Charging Cable,1,11.95,11/19/19 19:59,"74 Hickory St, Boston, MA 02215" +297031,Lightning Charging Cable,1,14.95,11/22/19 18:38,"557 Pine St, San Francisco, CA 94016" +297032,Wired Headphones,1,11.99,11/17/19 22:28,"330 10th St, Los Angeles, CA 90001" +297033,AAA Batteries (4-pack),1,2.99,11/28/19 19:39,"290 Jefferson St, Dallas, TX 75001" +297034,AAA Batteries (4-pack),1,2.99,11/27/19 19:06,"295 Church St, Boston, MA 02215" +297035,34in Ultrawide Monitor,1,379.99,11/26/19 21:06,"701 Madison St, Los Angeles, CA 90001" +297036,AA Batteries (4-pack),2,3.84,11/12/19 14:56,"41 2nd St, San Francisco, CA 94016" +297037,27in FHD Monitor,1,149.99,11/30/19 20:11,"130 Main St, New York City, NY 10001" +297038,Flatscreen TV,1,300,11/03/19 23:39,"966 Cherry St, San Francisco, CA 94016" +297039,Wired Headphones,1,11.99,11/20/19 18:48,"780 Church St, Los Angeles, CA 90001" +297040,AA Batteries (4-pack),1,3.84,11/02/19 19:10,"618 Meadow St, Los Angeles, CA 90001" +297041,AA Batteries (4-pack),1,3.84,11/22/19 00:38,"225 Elm St, Los Angeles, CA 90001" +297042,Bose SoundSport Headphones,1,99.99,11/20/19 09:57,"499 River St, Boston, MA 02215" +297043,iPhone,1,700,11/24/19 20:35,"536 4th St, San Francisco, CA 94016" +297044,USB-C Charging Cable,1,11.95,11/08/19 00:03,"900 Johnson St, San Francisco, CA 94016" +297045,27in FHD Monitor,1,149.99,11/29/19 10:17,"139 Wilson St, Boston, MA 02215" +297046,Lightning Charging Cable,1,14.95,11/28/19 09:46,"759 Center St, Atlanta, GA 30301" +297047,Wired Headphones,1,11.99,11/27/19 08:37,"706 7th St, San Francisco, CA 94016" +297048,AAA Batteries (4-pack),1,2.99,11/08/19 10:38,"747 Johnson St, San Francisco, CA 94016" +297049,27in 4K Gaming Monitor,1,389.99,11/17/19 13:39,"656 North St, Atlanta, GA 30301" +297050,27in 4K Gaming Monitor,1,389.99,11/04/19 06:29,"814 North St, San Francisco, CA 94016" +297051,27in 4K Gaming Monitor,1,389.99,11/19/19 17:02,"467 Main St, Los Angeles, CA 90001" +297052,Flatscreen TV,1,300,11/27/19 19:35,"143 Cherry St, New York City, NY 10001" +297053,Apple Airpods Headphones,1,150,11/20/19 11:14,"703 Jackson St, Atlanta, GA 30301" +297054,Wired Headphones,1,11.99,11/27/19 00:31,"809 Jackson St, Boston, MA 02215" +297055,Lightning Charging Cable,1,14.95,11/14/19 07:40,"898 Pine St, Los Angeles, CA 90001" +297056,AAA Batteries (4-pack),1,2.99,11/21/19 14:57,"34 Center St, Boston, MA 02215" +297057,AA Batteries (4-pack),3,3.84,11/16/19 17:35,"210 Sunset St, Portland, OR 97035" +297058,Wired Headphones,1,11.99,11/14/19 10:18,"578 Jefferson St, San Francisco, CA 94016" +297059,USB-C Charging Cable,2,11.95,11/07/19 01:11,"760 Meadow St, Austin, TX 73301" +297060,USB-C Charging Cable,1,11.95,11/08/19 12:20,"897 Main St, Dallas, TX 75001" +297061,Lightning Charging Cable,1,14.95,11/27/19 09:45,"65 Lake St, Boston, MA 02215" +297062,AA Batteries (4-pack),1,3.84,11/26/19 05:29,"884 6th St, Seattle, WA 98101" +297063,Google Phone,1,600,11/04/19 13:01,"129 Main St, Atlanta, GA 30301" +297063,Bose SoundSport Headphones,1,99.99,11/04/19 13:01,"129 Main St, Atlanta, GA 30301" +297064,AAA Batteries (4-pack),1,2.99,11/03/19 20:02,"422 Jackson St, Dallas, TX 75001" +297065,20in Monitor,1,109.99,11/04/19 19:03,"122 Elm St, San Francisco, CA 94016" +297066,Wired Headphones,1,11.99,11/05/19 12:04,"453 Ridge St, San Francisco, CA 94016" +297067,27in 4K Gaming Monitor,1,389.99,11/02/19 00:29,"159 Washington St, Boston, MA 02215" +297068,Lightning Charging Cable,1,14.95,11/24/19 10:04,"898 Meadow St, Los Angeles, CA 90001" +297069,Bose SoundSport Headphones,1,99.99,11/06/19 10:01,"574 Madison St, San Francisco, CA 94016" +297070,ThinkPad Laptop,1,999.99,11/29/19 20:24,"158 13th St, San Francisco, CA 94016" +297071,Wired Headphones,1,11.99,11/23/19 00:04,"291 Chestnut St, Boston, MA 02215" +297072,USB-C Charging Cable,1,11.95,11/25/19 00:12,"258 Main St, Los Angeles, CA 90001" +297072,Apple Airpods Headphones,1,150,11/25/19 00:12,"258 Main St, Los Angeles, CA 90001" +297073,USB-C Charging Cable,1,11.95,11/07/19 12:54,"752 Hill St, Dallas, TX 75001" +297074,Apple Airpods Headphones,1,150,11/09/19 05:31,"9 Adams St, Boston, MA 02215" +297075,Wired Headphones,1,11.99,11/12/19 13:29,"506 Cherry St, San Francisco, CA 94016" +297076,27in 4K Gaming Monitor,1,389.99,11/07/19 20:59,"438 Jackson St, Atlanta, GA 30301" +297077,Apple Airpods Headphones,1,150,11/10/19 23:11,"456 Park St, New York City, NY 10001" +297078,Lightning Charging Cable,1,14.95,11/17/19 10:50,"462 Madison St, Seattle, WA 98101" +297079,Flatscreen TV,1,300,11/05/19 17:34,"278 14th St, Atlanta, GA 30301" +297080,Wired Headphones,2,11.99,11/12/19 20:06,"508 Lake St, New York City, NY 10001" +297081,Apple Airpods Headphones,1,150,11/30/19 18:51,"216 5th St, Seattle, WA 98101" +297082,ThinkPad Laptop,1,999.99,11/22/19 14:29,"38 11th St, San Francisco, CA 94016" +297083,Apple Airpods Headphones,1,150,11/08/19 15:25,"533 Cherry St, Los Angeles, CA 90001" +297084,Apple Airpods Headphones,1,150,11/01/19 18:05,"159 Wilson St, Austin, TX 73301" +297085,USB-C Charging Cable,1,11.95,11/20/19 19:00,"719 Spruce St, Los Angeles, CA 90001" +297086,AA Batteries (4-pack),1,3.84,11/09/19 22:18,"310 Walnut St, Boston, MA 02215" +297087,USB-C Charging Cable,1,11.95,11/28/19 13:33,"804 Lakeview St, Seattle, WA 98101" +297088,Lightning Charging Cable,2,14.95,11/25/19 14:00,"721 Main St, Atlanta, GA 30301" +297089,Lightning Charging Cable,1,14.95,11/14/19 22:36,"767 11th St, San Francisco, CA 94016" +297090,AAA Batteries (4-pack),1,2.99,11/20/19 08:45,"452 Park St, Dallas, TX 75001" +297091,USB-C Charging Cable,1,11.95,11/29/19 04:02,"916 Pine St, San Francisco, CA 94016" +297092,27in 4K Gaming Monitor,1,389.99,11/04/19 19:29,"690 Wilson St, Portland, OR 97035" +297093,34in Ultrawide Monitor,1,379.99,11/17/19 11:18,"141 Pine St, Los Angeles, CA 90001" +297094,Lightning Charging Cable,1,14.95,11/28/19 21:49,"617 Pine St, San Francisco, CA 94016" +297095,Bose SoundSport Headphones,1,99.99,11/14/19 16:56,"835 River St, San Francisco, CA 94016" +297096,iPhone,1,700,11/18/19 17:23,"852 Pine St, Boston, MA 02215" +297096,Lightning Charging Cable,1,14.95,11/18/19 17:23,"852 Pine St, Boston, MA 02215" +297097,Lightning Charging Cable,1,14.95,11/02/19 15:58,"808 Dogwood St, Los Angeles, CA 90001" +297098,Google Phone,1,600,11/13/19 11:20,"973 River St, San Francisco, CA 94016" +297099,Lightning Charging Cable,1,14.95,11/17/19 09:28,"151 Dogwood St, Atlanta, GA 30301" +297100,Lightning Charging Cable,1,14.95,11/15/19 19:32,"274 Washington St, Los Angeles, CA 90001" +297101,27in 4K Gaming Monitor,1,389.99,11/14/19 03:51,"744 Wilson St, Boston, MA 02215" +297102,Lightning Charging Cable,1,14.95,12/01/19 03:51,"786 Chestnut St, Boston, MA 02215" +297103,USB-C Charging Cable,1,11.95,11/22/19 01:16,"986 Jefferson St, New York City, NY 10001" +297104,Wired Headphones,1,11.99,11/22/19 11:45,"706 Maple St, Los Angeles, CA 90001" +297105,Wired Headphones,1,11.99,11/11/19 15:45,"123 North St, Seattle, WA 98101" +297106,Lightning Charging Cable,1,14.95,11/06/19 23:54,"989 Jackson St, New York City, NY 10001" +297107,AA Batteries (4-pack),1,3.84,11/27/19 18:28,"222 Church St, San Francisco, CA 94016" +297108,20in Monitor,1,109.99,11/11/19 13:08,"804 Main St, San Francisco, CA 94016" +297109,AAA Batteries (4-pack),1,2.99,11/15/19 18:58,"542 Elm St, San Francisco, CA 94016" +297110,Lightning Charging Cable,1,14.95,11/19/19 21:17,"681 2nd St, San Francisco, CA 94016" +297111,AA Batteries (4-pack),2,3.84,11/11/19 17:37,"791 11th St, San Francisco, CA 94016" +297112,AAA Batteries (4-pack),2,2.99,11/23/19 07:55,"320 Elm St, Boston, MA 02215" +297113,Apple Airpods Headphones,1,150,11/16/19 17:42,"249 Dogwood St, Dallas, TX 75001" +,,,,, +297114,Lightning Charging Cable,1,14.95,11/15/19 16:03,"682 Walnut St, Seattle, WA 98101" +297115,AAA Batteries (4-pack),3,2.99,11/06/19 01:35,"617 Maple St, San Francisco, CA 94016" +297116,AA Batteries (4-pack),1,3.84,11/15/19 08:00,"157 Jackson St, New York City, NY 10001" +297117,Lightning Charging Cable,1,14.95,11/24/19 01:14,"361 Forest St, Dallas, TX 75001" +297118,Lightning Charging Cable,1,14.95,11/05/19 19:27,"422 2nd St, Boston, MA 02215" +297119,Bose SoundSport Headphones,1,99.99,11/20/19 13:11,"926 Lincoln St, San Francisco, CA 94016" +297120,Wired Headphones,1,11.99,11/26/19 00:32,"256 Elm St, Dallas, TX 75001" +297121,Flatscreen TV,1,300,11/24/19 17:45,"120 1st St, San Francisco, CA 94016" +297122,Bose SoundSport Headphones,1,99.99,11/12/19 17:25,"229 South St, Seattle, WA 98101" +297123,27in FHD Monitor,1,149.99,11/14/19 03:05,"561 Lake St, Dallas, TX 75001" +297124,Flatscreen TV,1,300,11/21/19 11:52,"350 Wilson St, San Francisco, CA 94016" +297125,AA Batteries (4-pack),1,3.84,11/04/19 17:17,"925 2nd St, Los Angeles, CA 90001" +297126,AAA Batteries (4-pack),2,2.99,11/16/19 15:45,"368 Chestnut St, Los Angeles, CA 90001" +297127,AAA Batteries (4-pack),1,2.99,11/04/19 23:27,"579 North St, New York City, NY 10001" +297128,Macbook Pro Laptop,1,1700,11/01/19 17:35,"856 Park St, Atlanta, GA 30301" +297128,Apple Airpods Headphones,1,150,11/01/19 17:35,"856 Park St, Atlanta, GA 30301" +297129,27in FHD Monitor,1,149.99,11/14/19 18:33,"40 Walnut St, Portland, OR 97035" +297130,AAA Batteries (4-pack),2,2.99,11/21/19 20:19,"619 9th St, San Francisco, CA 94016" +297131,20in Monitor,1,109.99,11/30/19 13:35,"529 14th St, New York City, NY 10001" +297132,USB-C Charging Cable,1,11.95,11/09/19 08:35,"158 South St, Los Angeles, CA 90001" +297133,AAA Batteries (4-pack),2,2.99,11/10/19 11:53,"366 Lincoln St, Seattle, WA 98101" +297134,AA Batteries (4-pack),3,3.84,11/03/19 23:09,"388 Main St, Los Angeles, CA 90001" +297135,AAA Batteries (4-pack),1,2.99,11/19/19 13:29,"626 Cherry St, Los Angeles, CA 90001" +297136,Lightning Charging Cable,1,14.95,11/08/19 11:17,"358 River St, Los Angeles, CA 90001" +297137,Macbook Pro Laptop,1,1700,11/23/19 16:14,"603 Elm St, Dallas, TX 75001" +297138,AAA Batteries (4-pack),4,2.99,11/26/19 12:52,"798 River St, San Francisco, CA 94016" +297139,AA Batteries (4-pack),1,3.84,11/13/19 11:08,"969 10th St, Seattle, WA 98101" +297140,Apple Airpods Headphones,1,150,11/23/19 13:20,"99 Pine St, San Francisco, CA 94016" +297141,USB-C Charging Cable,1,11.95,11/27/19 13:41,"670 Lincoln St, Portland, ME 04101" +297142,Bose SoundSport Headphones,1,99.99,11/11/19 10:02,"466 Jefferson St, Seattle, WA 98101" +297143,AAA Batteries (4-pack),2,2.99,11/15/19 07:07,"245 Maple St, Dallas, TX 75001" +297144,AA Batteries (4-pack),2,3.84,11/15/19 19:11,"871 Jefferson St, San Francisco, CA 94016" +297145,Apple Airpods Headphones,1,150,11/08/19 06:48,"376 1st St, Portland, OR 97035" +297146,34in Ultrawide Monitor,1,379.99,11/17/19 05:32,"805 Adams St, San Francisco, CA 94016" +297147,Bose SoundSport Headphones,1,99.99,11/16/19 08:35,"68 Lake St, San Francisco, CA 94016" +297148,34in Ultrawide Monitor,1,379.99,11/23/19 08:00,"831 Elm St, Boston, MA 02215" +297149,USB-C Charging Cable,2,11.95,11/12/19 19:31,"867 Cherry St, Atlanta, GA 30301" +297149,USB-C Charging Cable,1,11.95,11/12/19 19:31,"867 Cherry St, Atlanta, GA 30301" +297150,USB-C Charging Cable,1,11.95,11/18/19 20:46,"977 9th St, San Francisco, CA 94016" +297151,AA Batteries (4-pack),2,3.84,11/09/19 22:04,"751 Forest St, Seattle, WA 98101" +297152,AAA Batteries (4-pack),1,2.99,11/17/19 15:50,"267 Cedar St, Los Angeles, CA 90001" +297153,Wired Headphones,1,11.99,11/23/19 07:41,"532 14th St, San Francisco, CA 94016" +297154,iPhone,1,700,11/23/19 09:34,"182 Madison St, San Francisco, CA 94016" +297154,Wired Headphones,1,11.99,11/23/19 09:34,"182 Madison St, San Francisco, CA 94016" +297155,Flatscreen TV,1,300,11/09/19 13:24,"742 14th St, Portland, OR 97035" +297156,AAA Batteries (4-pack),2,2.99,11/08/19 17:50,"260 14th St, Atlanta, GA 30301" +297157,iPhone,1,700,11/18/19 23:35,"674 Johnson St, San Francisco, CA 94016" +297158,Flatscreen TV,1,300,11/04/19 15:10,"472 13th St, Los Angeles, CA 90001" +297159,27in 4K Gaming Monitor,1,389.99,11/13/19 01:50,"115 9th St, San Francisco, CA 94016" +297160,AA Batteries (4-pack),2,3.84,11/03/19 10:44,"444 Lincoln St, Dallas, TX 75001" +297161,ThinkPad Laptop,1,999.99,11/17/19 10:34,"898 Cedar St, Los Angeles, CA 90001" +297162,27in 4K Gaming Monitor,1,389.99,11/12/19 08:40,"809 South St, Los Angeles, CA 90001" +297163,27in FHD Monitor,1,149.99,11/03/19 14:30,"723 Chestnut St, San Francisco, CA 94016" +297164,27in 4K Gaming Monitor,1,389.99,11/09/19 20:02,"145 Sunset St, New York City, NY 10001" +297165,Lightning Charging Cable,1,14.95,11/10/19 10:41,"905 6th St, Atlanta, GA 30301" +297166,AAA Batteries (4-pack),1,2.99,11/28/19 23:41,"203 7th St, Portland, ME 04101" +297167,Bose SoundSport Headphones,1,99.99,11/20/19 16:15,"806 Jefferson St, New York City, NY 10001" +297168,AA Batteries (4-pack),1,3.84,11/19/19 19:49,"646 Cedar St, Boston, MA 02215" +297169,Apple Airpods Headphones,1,150,11/19/19 11:06,"856 Jefferson St, New York City, NY 10001" +297170,20in Monitor,1,109.99,11/09/19 14:09,"851 Pine St, New York City, NY 10001" +297171,20in Monitor,1,109.99,11/22/19 21:18,"455 13th St, Dallas, TX 75001" +297172,Wired Headphones,1,11.99,11/23/19 11:30,"392 Walnut St, Los Angeles, CA 90001" +297173,Lightning Charging Cable,1,14.95,11/19/19 13:19,"574 Wilson St, Dallas, TX 75001" +297174,34in Ultrawide Monitor,1,379.99,11/11/19 18:51,"268 Meadow St, San Francisco, CA 94016" +297175,LG Washing Machine,1,600.0,11/29/19 18:33,"715 14th St, Los Angeles, CA 90001" +297176,Google Phone,1,600,11/04/19 21:47,"250 Dogwood St, San Francisco, CA 94016" +297177,Apple Airpods Headphones,1,150,11/26/19 13:43,"905 8th St, Portland, OR 97035" +297178,USB-C Charging Cable,1,11.95,11/30/19 04:23,"44 Lakeview St, Los Angeles, CA 90001" +297179,AAA Batteries (4-pack),1,2.99,11/02/19 17:29,"68 Jackson St, Dallas, TX 75001" +297180,AAA Batteries (4-pack),1,2.99,11/30/19 02:57,"532 Johnson St, Seattle, WA 98101" +297181,Bose SoundSport Headphones,1,99.99,11/28/19 23:08,"18 1st St, San Francisco, CA 94016" +297182,Wired Headphones,1,11.99,11/21/19 16:11,"610 Sunset St, Los Angeles, CA 90001" +297183,AAA Batteries (4-pack),3,2.99,11/20/19 02:02,"499 Willow St, New York City, NY 10001" +297184,USB-C Charging Cable,1,11.95,11/20/19 01:33,"370 Adams St, Los Angeles, CA 90001" +297185,Flatscreen TV,1,300,11/30/19 09:59,"114 13th St, San Francisco, CA 94016" +297186,Lightning Charging Cable,1,14.95,11/07/19 07:45,"511 4th St, Dallas, TX 75001" +297187,AA Batteries (4-pack),2,3.84,11/28/19 11:57,"294 Elm St, New York City, NY 10001" +297188,AA Batteries (4-pack),1,3.84,11/25/19 17:19,"265 North St, Boston, MA 02215" +297189,iPhone,1,700,11/08/19 10:08,"590 11th St, Austin, TX 73301" +297190,Apple Airpods Headphones,1,150,11/12/19 09:42,"669 11th St, New York City, NY 10001" +297191,27in FHD Monitor,1,149.99,11/16/19 15:36,"334 5th St, Atlanta, GA 30301" +297192,Flatscreen TV,1,300,11/18/19 22:27,"561 Forest St, San Francisco, CA 94016" +297193,USB-C Charging Cable,1,11.95,11/29/19 09:41,"45 Cedar St, Los Angeles, CA 90001" +297194,USB-C Charging Cable,1,11.95,11/17/19 14:10,"425 11th St, Los Angeles, CA 90001" +297195,USB-C Charging Cable,1,11.95,11/01/19 17:25,"73 Cherry St, Dallas, TX 75001" +297196,AAA Batteries (4-pack),1,2.99,11/04/19 06:37,"116 Main St, Atlanta, GA 30301" +,,,,, +297197,USB-C Charging Cable,1,11.95,11/04/19 08:17,"982 2nd St, Atlanta, GA 30301" +297198,Flatscreen TV,1,300,11/01/19 11:30,"766 13th St, New York City, NY 10001" +297199,AA Batteries (4-pack),2,3.84,11/24/19 15:52,"981 Forest St, New York City, NY 10001" +297200,Lightning Charging Cable,1,14.95,11/24/19 09:49,"706 13th St, San Francisco, CA 94016" +297201,AA Batteries (4-pack),4,3.84,11/02/19 17:24,"430 6th St, Austin, TX 73301" +297202,Apple Airpods Headphones,1,150,11/21/19 20:39,"922 Willow St, San Francisco, CA 94016" +297203,Apple Airpods Headphones,1,150,11/13/19 15:58,"490 Sunset St, San Francisco, CA 94016" +297204,USB-C Charging Cable,1,11.95,11/17/19 14:44,"241 Hickory St, Los Angeles, CA 90001" +297205,USB-C Charging Cable,1,11.95,11/17/19 13:31,"983 Center St, Boston, MA 02215" +297206,Wired Headphones,1,11.99,11/25/19 10:46,"905 11th St, Boston, MA 02215" +297207,34in Ultrawide Monitor,1,379.99,11/01/19 07:17,"323 Madison St, Dallas, TX 75001" +297208,Flatscreen TV,1,300,11/29/19 16:42,"62 Adams St, New York City, NY 10001" +297209,27in FHD Monitor,1,149.99,11/23/19 13:18,"103 6th St, San Francisco, CA 94016" +297210,27in FHD Monitor,1,149.99,11/16/19 14:10,"624 7th St, Seattle, WA 98101" +297211,AA Batteries (4-pack),2,3.84,11/22/19 19:19,"505 Cedar St, New York City, NY 10001" +297212,Bose SoundSport Headphones,1,99.99,11/07/19 08:32,"276 Cedar St, New York City, NY 10001" +297213,Bose SoundSport Headphones,1,99.99,11/09/19 19:08,"659 Sunset St, Boston, MA 02215" +297214,AAA Batteries (4-pack),1,2.99,11/08/19 09:33,"851 5th St, Seattle, WA 98101" +297215,Lightning Charging Cable,1,14.95,11/15/19 15:38,"862 Lakeview St, Los Angeles, CA 90001" +297216,34in Ultrawide Monitor,1,379.99,11/10/19 19:50,"268 Sunset St, Seattle, WA 98101" +297217,AAA Batteries (4-pack),1,2.99,11/23/19 13:08,"368 7th St, San Francisco, CA 94016" +297218,Macbook Pro Laptop,1,1700,11/25/19 14:16,"574 14th St, Seattle, WA 98101" +297219,Wired Headphones,1,11.99,11/03/19 17:19,"495 Hickory St, Los Angeles, CA 90001" +297220,AAA Batteries (4-pack),1,2.99,11/23/19 18:15,"56 Forest St, Los Angeles, CA 90001" +297221,AAA Batteries (4-pack),1,2.99,11/10/19 18:50,"775 4th St, Seattle, WA 98101" +297222,Wired Headphones,1,11.99,11/09/19 17:05,"473 Pine St, New York City, NY 10001" +,,,,, +297223,AA Batteries (4-pack),2,3.84,11/19/19 09:50,"755 Lake St, New York City, NY 10001" +297224,AAA Batteries (4-pack),1,2.99,11/19/19 17:19,"990 Meadow St, Los Angeles, CA 90001" +297225,Apple Airpods Headphones,1,150,11/18/19 11:31,"945 Cherry St, Seattle, WA 98101" +297225,Apple Airpods Headphones,1,150,11/18/19 11:31,"945 Cherry St, Seattle, WA 98101" +297226,Wired Headphones,1,11.99,11/25/19 11:01,"257 4th St, San Francisco, CA 94016" +297227,Wired Headphones,1,11.99,11/22/19 09:56,"50 13th St, Atlanta, GA 30301" +297228,Flatscreen TV,1,300,11/23/19 17:16,"50 Ridge St, San Francisco, CA 94016" +297229,AAA Batteries (4-pack),2,2.99,11/13/19 23:48,"185 1st St, Los Angeles, CA 90001" +297230,27in 4K Gaming Monitor,1,389.99,11/10/19 10:26,"187 Lakeview St, Los Angeles, CA 90001" +297231,Flatscreen TV,1,300,11/13/19 09:45,"655 2nd St, Los Angeles, CA 90001" +297232,Apple Airpods Headphones,1,150,11/24/19 19:20,"383 Hickory St, Atlanta, GA 30301" +297233,27in FHD Monitor,1,149.99,11/20/19 12:48,"705 Spruce St, San Francisco, CA 94016" +297234,AA Batteries (4-pack),1,3.84,11/02/19 10:46,"192 Cedar St, San Francisco, CA 94016" +297234,AAA Batteries (4-pack),1,2.99,11/02/19 10:46,"192 Cedar St, San Francisco, CA 94016" +297235,iPhone,1,700,11/29/19 16:26,"659 Willow St, New York City, NY 10001" +297236,Apple Airpods Headphones,1,150,11/01/19 22:46,"528 Chestnut St, San Francisco, CA 94016" +297237,Vareebadd Phone,1,400,11/02/19 10:35,"425 Church St, New York City, NY 10001" +297238,AA Batteries (4-pack),1,3.84,11/07/19 09:48,"998 6th St, Seattle, WA 98101" +297239,Flatscreen TV,1,300,11/09/19 11:47,"658 Walnut St, New York City, NY 10001" +297240,Bose SoundSport Headphones,1,99.99,11/25/19 19:51,"121 8th St, Atlanta, GA 30301" +297241,AAA Batteries (4-pack),2,2.99,11/09/19 20:42,"252 13th St, Dallas, TX 75001" +297242,27in 4K Gaming Monitor,1,389.99,11/17/19 11:02,"350 River St, Los Angeles, CA 90001" +297243,iPhone,1,700,11/10/19 14:38,"785 Wilson St, Dallas, TX 75001" +297243,Lightning Charging Cable,1,14.95,11/10/19 14:38,"785 Wilson St, Dallas, TX 75001" +297244,USB-C Charging Cable,1,11.95,11/20/19 01:00,"2 Forest St, San Francisco, CA 94016" +297245,AAA Batteries (4-pack),3,2.99,11/01/19 17:37,"966 Adams St, Atlanta, GA 30301" +297246,AAA Batteries (4-pack),2,2.99,11/15/19 17:51,"292 Spruce St, New York City, NY 10001" +297247,LG Dryer,1,600.0,11/12/19 21:20,"137 5th St, Atlanta, GA 30301" +297248,AA Batteries (4-pack),1,3.84,11/26/19 13:00,"233 Walnut St, Seattle, WA 98101" +297249,Bose SoundSport Headphones,1,99.99,11/22/19 13:07,"258 Pine St, Los Angeles, CA 90001" +297250,USB-C Charging Cable,1,11.95,11/27/19 13:37,"41 4th St, Portland, OR 97035" +297251,USB-C Charging Cable,1,11.95,11/25/19 12:09,"455 Center St, Dallas, TX 75001" +297252,Bose SoundSport Headphones,1,99.99,11/19/19 21:24,"252 Jefferson St, Boston, MA 02215" +297253,AAA Batteries (4-pack),3,2.99,11/09/19 18:06,"362 13th St, New York City, NY 10001" +297254,Wired Headphones,1,11.99,11/21/19 22:04,"625 13th St, Dallas, TX 75001" +297255,Macbook Pro Laptop,1,1700,11/04/19 09:34,"738 Cherry St, Dallas, TX 75001" +297256,AA Batteries (4-pack),1,3.84,11/26/19 17:31,"299 Willow St, Portland, OR 97035" +297257,Lightning Charging Cable,2,14.95,11/03/19 20:45,"881 Highland St, San Francisco, CA 94016" +297258,iPhone,1,700,11/12/19 06:01,"83 5th St, Dallas, TX 75001" +297259,USB-C Charging Cable,1,11.95,11/16/19 19:49,"638 Pine St, Austin, TX 73301" +297260,Wired Headphones,1,11.99,11/17/19 13:08,"585 Chestnut St, Atlanta, GA 30301" +297261,Flatscreen TV,1,300,11/11/19 13:55,"67 Lincoln St, San Francisco, CA 94016" +297262,ThinkPad Laptop,1,999.99,11/03/19 22:10,"38 14th St, Portland, OR 97035" +297263,iPhone,1,700,11/15/19 14:07,"689 Forest St, Los Angeles, CA 90001" +297264,AAA Batteries (4-pack),1,2.99,11/05/19 00:38,"940 Madison St, Boston, MA 02215" +297265,34in Ultrawide Monitor,1,379.99,11/12/19 13:06,"801 Johnson St, Los Angeles, CA 90001" +297266,Flatscreen TV,1,300,11/29/19 15:08,"965 North St, New York City, NY 10001" +297267,Vareebadd Phone,1,400,11/02/19 18:17,"517 11th St, Dallas, TX 75001" +297268,AAA Batteries (4-pack),1,2.99,11/22/19 10:43,"97 Walnut St, Boston, MA 02215" +297269,Lightning Charging Cable,1,14.95,11/21/19 11:13,"378 Lake St, Boston, MA 02215" +297270,Wired Headphones,1,11.99,11/29/19 23:41,"332 Maple St, Atlanta, GA 30301" +297271,Flatscreen TV,1,300,11/10/19 19:36,"923 Spruce St, Seattle, WA 98101" +297271,iPhone,1,700,11/10/19 19:36,"923 Spruce St, Seattle, WA 98101" +297272,USB-C Charging Cable,1,11.95,11/06/19 22:35,"384 Lake St, San Francisco, CA 94016" +297273,USB-C Charging Cable,1,11.95,11/16/19 16:05,"134 9th St, Dallas, TX 75001" +297274,Bose SoundSport Headphones,1,99.99,11/04/19 12:26,"416 Park St, Boston, MA 02215" +297275,AA Batteries (4-pack),1,3.84,11/03/19 11:10,"741 River St, Seattle, WA 98101" +297276,34in Ultrawide Monitor,1,379.99,11/08/19 14:36,"44 Jefferson St, New York City, NY 10001" +297277,Bose SoundSport Headphones,1,99.99,11/11/19 20:49,"493 2nd St, Los Angeles, CA 90001" +297278,AA Batteries (4-pack),1,3.84,11/14/19 21:22,"562 Main St, New York City, NY 10001" +297279,Bose SoundSport Headphones,2,99.99,11/15/19 16:44,"758 Forest St, Los Angeles, CA 90001" +297280,Bose SoundSport Headphones,1,99.99,11/15/19 21:57,"121 9th St, Seattle, WA 98101" +297281,AA Batteries (4-pack),2,3.84,11/24/19 17:58,"650 Lincoln St, Los Angeles, CA 90001" +297282,Lightning Charging Cable,1,14.95,11/30/19 12:07,"173 Wilson St, San Francisco, CA 94016" +297283,AA Batteries (4-pack),1,3.84,11/24/19 10:36,"174 River St, San Francisco, CA 94016" +297284,Bose SoundSport Headphones,1,99.99,11/03/19 22:11,"655 Elm St, San Francisco, CA 94016" +297285,Bose SoundSport Headphones,1,99.99,11/04/19 15:25,"312 2nd St, Los Angeles, CA 90001" +297286,27in FHD Monitor,1,149.99,11/25/19 00:33,"365 Forest St, Dallas, TX 75001" +297287,34in Ultrawide Monitor,1,379.99,11/23/19 19:41,"943 8th St, San Francisco, CA 94016" +297288,AAA Batteries (4-pack),1,2.99,11/10/19 18:23,"548 12th St, Los Angeles, CA 90001" +297289,AAA Batteries (4-pack),1,2.99,11/11/19 09:47,"150 Adams St, Seattle, WA 98101" +297290,iPhone,1,700,11/10/19 11:48,"870 Cedar St, San Francisco, CA 94016" +297290,Lightning Charging Cable,1,14.95,11/10/19 11:48,"870 Cedar St, San Francisco, CA 94016" +297290,Apple Airpods Headphones,1,150,11/10/19 11:48,"870 Cedar St, San Francisco, CA 94016" +297290,Wired Headphones,1,11.99,11/10/19 11:48,"870 Cedar St, San Francisco, CA 94016" +297291,Wired Headphones,1,11.99,11/22/19 15:13,"571 Highland St, Los Angeles, CA 90001" +297292,AAA Batteries (4-pack),2,2.99,11/04/19 13:15,"631 13th St, New York City, NY 10001" +297293,AA Batteries (4-pack),1,3.84,11/30/19 00:12,"235 Hill St, Seattle, WA 98101" +297294,Lightning Charging Cable,1,14.95,11/01/19 09:12,"500 12th St, San Francisco, CA 94016" +297295,Lightning Charging Cable,1,14.95,11/17/19 22:06,"727 Willow St, Portland, OR 97035" +297296,Wired Headphones,1,11.99,11/05/19 19:01,"288 1st St, New York City, NY 10001" +297297,ThinkPad Laptop,1,999.99,11/14/19 08:17,"20 Cedar St, Austin, TX 73301" +297298,ThinkPad Laptop,1,999.99,11/15/19 23:31,"496 Elm St, Atlanta, GA 30301" +297299,27in FHD Monitor,1,149.99,11/28/19 13:37,"815 Lincoln St, New York City, NY 10001" +297300,27in 4K Gaming Monitor,1,389.99,11/26/19 13:40,"348 Chestnut St, Los Angeles, CA 90001" +297301,USB-C Charging Cable,1,11.95,11/13/19 20:10,"882 14th St, Austin, TX 73301" +297302,Lightning Charging Cable,2,14.95,11/24/19 17:55,"711 Madison St, Atlanta, GA 30301" +297303,AAA Batteries (4-pack),2,2.99,11/01/19 10:38,"397 9th St, Los Angeles, CA 90001" +297304,AAA Batteries (4-pack),1,2.99,11/15/19 21:53,"800 Jefferson St, San Francisco, CA 94016" +297305,Lightning Charging Cable,1,14.95,11/01/19 04:52,"467 Washington St, New York City, NY 10001" +297306,Apple Airpods Headphones,1,150,11/19/19 01:23,"967 Meadow St, San Francisco, CA 94016" +297307,Lightning Charging Cable,1,14.95,11/26/19 07:20,"486 Main St, Austin, TX 73301" +297308,Apple Airpods Headphones,1,150,11/13/19 19:58,"599 12th St, Dallas, TX 75001" +297309,Wired Headphones,2,11.99,11/28/19 18:49,"883 Spruce St, Austin, TX 73301" +297310,AA Batteries (4-pack),1,3.84,11/05/19 12:47,"122 6th St, Dallas, TX 75001" +297311,27in 4K Gaming Monitor,1,389.99,11/23/19 19:19,"221 9th St, Atlanta, GA 30301" +297312,Lightning Charging Cable,1,14.95,11/24/19 18:29,"557 Lincoln St, San Francisco, CA 94016" +297313,AAA Batteries (4-pack),2,2.99,11/21/19 12:03,"500 5th St, New York City, NY 10001" +297314,AAA Batteries (4-pack),1,2.99,11/24/19 17:46,"46 Hill St, Los Angeles, CA 90001" +297315,AA Batteries (4-pack),1,3.84,11/12/19 01:08,"653 7th St, Seattle, WA 98101" +297316,USB-C Charging Cable,1,11.95,11/19/19 15:46,"359 Forest St, Seattle, WA 98101" +297317,Wired Headphones,1,11.99,11/07/19 20:44,"941 Washington St, Atlanta, GA 30301" +297318,Apple Airpods Headphones,1,150,11/05/19 23:43,"565 Lincoln St, Boston, MA 02215" +297319,AAA Batteries (4-pack),1,2.99,11/13/19 18:34,"736 Church St, New York City, NY 10001" +297320,USB-C Charging Cable,1,11.95,11/09/19 10:23,"204 Meadow St, Boston, MA 02215" +297321,AAA Batteries (4-pack),2,2.99,11/28/19 15:12,"232 4th St, San Francisco, CA 94016" +297322,Apple Airpods Headphones,1,150,11/29/19 22:16,"819 Pine St, New York City, NY 10001" +297323,Lightning Charging Cable,1,14.95,11/14/19 19:13,"224 Elm St, San Francisco, CA 94016" +297324,Lightning Charging Cable,2,14.95,11/25/19 18:25,"470 9th St, New York City, NY 10001" +297325,Bose SoundSport Headphones,1,99.99,11/01/19 05:32,"930 Ridge St, Boston, MA 02215" +297326,Wired Headphones,2,11.99,11/16/19 11:51,"458 Spruce St, Seattle, WA 98101" +297327,Macbook Pro Laptop,1,1700,11/02/19 21:39,"220 Adams St, Atlanta, GA 30301" +297328,ThinkPad Laptop,1,999.99,11/17/19 19:25,"642 Willow St, Portland, OR 97035" +297329,Lightning Charging Cable,1,14.95,11/21/19 14:07,"124 4th St, San Francisco, CA 94016" +297330,Wired Headphones,1,11.99,11/12/19 02:13,"671 Highland St, San Francisco, CA 94016" +297331,Wired Headphones,1,11.99,11/17/19 21:40,"707 Ridge St, New York City, NY 10001" +297332,USB-C Charging Cable,1,11.95,11/17/19 19:04,"993 Sunset St, Los Angeles, CA 90001" +297333,Google Phone,1,600,11/04/19 17:56,"930 Hill St, New York City, NY 10001" +297333,Wired Headphones,1,11.99,11/04/19 17:56,"930 Hill St, New York City, NY 10001" +297334,Wired Headphones,1,11.99,11/24/19 07:29,"539 Spruce St, Portland, ME 04101" +297335,Apple Airpods Headphones,1,150,11/23/19 22:59,"762 4th St, Dallas, TX 75001" +297336,27in FHD Monitor,1,149.99,11/28/19 16:06,"688 Adams St, Seattle, WA 98101" +297337,Macbook Pro Laptop,1,1700,11/22/19 01:34,"774 9th St, Austin, TX 73301" +297338,AA Batteries (4-pack),1,3.84,11/12/19 21:22,"384 Meadow St, Portland, OR 97035" +297339,AAA Batteries (4-pack),1,2.99,11/28/19 14:06,"277 Ridge St, Los Angeles, CA 90001" +297340,Apple Airpods Headphones,1,150,11/24/19 21:33,"393 8th St, San Francisco, CA 94016" +297341,Lightning Charging Cable,1,14.95,11/08/19 20:50,"77 Lincoln St, Seattle, WA 98101" +297342,AAA Batteries (4-pack),1,2.99,11/16/19 20:11,"70 2nd St, Austin, TX 73301" +297343,Google Phone,1,600,11/05/19 20:25,"363 North St, Boston, MA 02215" +297344,Apple Airpods Headphones,1,150,11/28/19 14:45,"638 Spruce St, Dallas, TX 75001" +297345,AA Batteries (4-pack),2,3.84,11/08/19 04:12,"17 12th St, Boston, MA 02215" +297346,iPhone,1,700,11/23/19 07:43,"795 West St, Seattle, WA 98101" +297347,AAA Batteries (4-pack),1,2.99,11/29/19 01:09,"550 Lake St, San Francisco, CA 94016" +297348,iPhone,1,700,11/06/19 19:13,"168 Johnson St, New York City, NY 10001" +297349,27in 4K Gaming Monitor,1,389.99,11/11/19 07:13,"455 Lake St, Los Angeles, CA 90001" +297350,AAA Batteries (4-pack),2,2.99,11/12/19 12:30,"3 North St, Atlanta, GA 30301" +297351,USB-C Charging Cable,1,11.95,11/25/19 04:28,"75 2nd St, Los Angeles, CA 90001" +297352,AA Batteries (4-pack),1,3.84,11/15/19 13:27,"125 Wilson St, Seattle, WA 98101" +297353,AAA Batteries (4-pack),1,2.99,11/19/19 21:14,"500 Johnson St, Portland, OR 97035" +297354,Apple Airpods Headphones,1,150,11/16/19 14:53,"170 River St, Seattle, WA 98101" +297355,iPhone,1,700,11/09/19 13:54,"673 11th St, Austin, TX 73301" +297356,Flatscreen TV,1,300,11/06/19 19:09,"756 Wilson St, New York City, NY 10001" +297357,Wired Headphones,1,11.99,11/24/19 17:17,"755 Maple St, San Francisco, CA 94016" +297358,AA Batteries (4-pack),1,3.84,11/16/19 19:46,"128 Cedar St, New York City, NY 10001" +297359,USB-C Charging Cable,1,11.95,11/05/19 13:22,"576 Dogwood St, San Francisco, CA 94016" +297360,27in 4K Gaming Monitor,1,389.99,11/02/19 15:13,"820 Chestnut St, Los Angeles, CA 90001" +297361,Lightning Charging Cable,1,14.95,11/11/19 14:10,"848 West St, Atlanta, GA 30301" +297362,iPhone,1,700,11/08/19 19:51,"279 Pine St, Dallas, TX 75001" +297363,USB-C Charging Cable,1,11.95,11/27/19 16:52,"343 7th St, San Francisco, CA 94016" +297363,Wired Headphones,1,11.99,11/27/19 16:52,"343 7th St, San Francisco, CA 94016" +297364,ThinkPad Laptop,1,999.99,11/02/19 16:09,"593 West St, Dallas, TX 75001" +297365,27in 4K Gaming Monitor,1,389.99,11/13/19 19:15,"685 North St, San Francisco, CA 94016" +297366,ThinkPad Laptop,1,999.99,11/24/19 10:10,"276 Lake St, Seattle, WA 98101" +297367,Wired Headphones,1,11.99,11/02/19 20:38,"183 Madison St, San Francisco, CA 94016" +297368,27in FHD Monitor,1,149.99,11/22/19 11:00,"134 Adams St, Los Angeles, CA 90001" +297369,AAA Batteries (4-pack),3,2.99,11/08/19 17:04,"21 Main St, Los Angeles, CA 90001" +297370,Apple Airpods Headphones,1,150,11/04/19 22:48,"865 Jefferson St, Los Angeles, CA 90001" +297371,AAA Batteries (4-pack),4,2.99,11/13/19 11:46,"246 4th St, Boston, MA 02215" +297372,USB-C Charging Cable,2,11.95,11/01/19 07:56,"607 Wilson St, Boston, MA 02215" +297373,20in Monitor,1,109.99,11/27/19 17:41,"268 Church St, San Francisco, CA 94016" +297374,Lightning Charging Cable,1,14.95,11/06/19 10:54,"308 13th St, Atlanta, GA 30301" +297375,34in Ultrawide Monitor,1,379.99,11/01/19 23:00,"188 6th St, Boston, MA 02215" +297376,27in FHD Monitor,1,149.99,11/25/19 10:59,"546 Adams St, San Francisco, CA 94016" +297377,Apple Airpods Headphones,1,150,11/06/19 11:59,"381 Cedar St, New York City, NY 10001" +297378,Wired Headphones,1,11.99,11/24/19 11:11,"346 Washington St, Portland, ME 04101" +297379,27in FHD Monitor,1,149.99,11/02/19 12:00,"445 North St, San Francisco, CA 94016" +297380,AAA Batteries (4-pack),1,2.99,11/16/19 21:23,"31 1st St, Los Angeles, CA 90001" +297381,iPhone,1,700,11/23/19 12:47,"125 Adams St, New York City, NY 10001" +297381,Lightning Charging Cable,2,14.95,11/23/19 12:47,"125 Adams St, New York City, NY 10001" +297381,Wired Headphones,1,11.99,11/23/19 12:47,"125 Adams St, New York City, NY 10001" +297382,34in Ultrawide Monitor,1,379.99,11/01/19 13:05,"746 13th St, Dallas, TX 75001" +297383,AAA Batteries (4-pack),3,2.99,11/24/19 22:04,"246 Wilson St, San Francisco, CA 94016" +297384,Google Phone,1,600,11/27/19 13:26,"716 14th St, San Francisco, CA 94016" +297385,Bose SoundSport Headphones,1,99.99,11/07/19 05:08,"736 Madison St, New York City, NY 10001" +297386,AA Batteries (4-pack),1,3.84,11/18/19 18:31,"11 12th St, Los Angeles, CA 90001" +297387,Apple Airpods Headphones,1,150,11/24/19 22:43,"414 Wilson St, Atlanta, GA 30301" +297388,Wired Headphones,2,11.99,11/06/19 21:42,"791 Madison St, Boston, MA 02215" +297389,AA Batteries (4-pack),1,3.84,11/30/19 23:04,"587 4th St, Atlanta, GA 30301" +297390,Wired Headphones,1,11.99,11/16/19 09:00,"782 Walnut St, Los Angeles, CA 90001" +297391,AA Batteries (4-pack),1,3.84,11/09/19 19:36,"411 West St, Seattle, WA 98101" +297392,USB-C Charging Cable,1,11.95,11/25/19 14:45,"592 Washington St, San Francisco, CA 94016" +297393,Vareebadd Phone,1,400,11/26/19 13:17,"203 South St, Atlanta, GA 30301" +297394,AA Batteries (4-pack),1,3.84,11/11/19 12:37,"76 Cedar St, Los Angeles, CA 90001" +297395,Macbook Pro Laptop,1,1700,11/11/19 14:33,"599 Park St, Austin, TX 73301" +297396,USB-C Charging Cable,1,11.95,11/28/19 09:44,"358 9th St, Dallas, TX 75001" +297397,27in FHD Monitor,1,149.99,11/23/19 23:35,"168 11th St, Seattle, WA 98101" +297398,AAA Batteries (4-pack),2,2.99,11/07/19 19:40,"361 Madison St, Atlanta, GA 30301" +297399,AA Batteries (4-pack),1,3.84,11/03/19 13:10,"963 Lakeview St, Austin, TX 73301" +297400,USB-C Charging Cable,1,11.95,11/01/19 10:24,"654 Lincoln St, New York City, NY 10001" +297401,Bose SoundSport Headphones,1,99.99,11/17/19 22:33,"195 Church St, San Francisco, CA 94016" +297402,Flatscreen TV,1,300,11/06/19 17:41,"524 9th St, Dallas, TX 75001" +297403,AA Batteries (4-pack),1,3.84,11/07/19 22:23,"817 Dogwood St, Boston, MA 02215" +297404,Apple Airpods Headphones,1,150,11/09/19 17:17,"108 Elm St, San Francisco, CA 94016" +297405,Lightning Charging Cable,1,14.95,11/12/19 08:07,"458 12th St, Dallas, TX 75001" +297406,Lightning Charging Cable,1,14.95,11/05/19 12:59,"422 Church St, Austin, TX 73301" +297407,USB-C Charging Cable,1,11.95,11/21/19 19:20,"844 Dogwood St, Dallas, TX 75001" +297408,ThinkPad Laptop,1,999.99,11/25/19 12:34,"497 Jefferson St, Los Angeles, CA 90001" +297409,AAA Batteries (4-pack),1,2.99,11/02/19 15:34,"997 4th St, Seattle, WA 98101" +297410,27in FHD Monitor,1,149.99,11/30/19 23:41,"548 Madison St, Los Angeles, CA 90001" +297411,Wired Headphones,1,11.99,11/29/19 19:11,"432 Pine St, New York City, NY 10001" +297412,Google Phone,1,600,11/11/19 17:52,"634 10th St, Boston, MA 02215" +297412,USB-C Charging Cable,1,11.95,11/11/19 17:52,"634 10th St, Boston, MA 02215" +297413,Lightning Charging Cable,1,14.95,11/25/19 21:02,"827 2nd St, Austin, TX 73301" +297414,iPhone,1,700,11/25/19 17:10,"41 South St, Portland, OR 97035" +297414,Lightning Charging Cable,1,14.95,11/25/19 17:10,"41 South St, Portland, OR 97035" +297414,USB-C Charging Cable,1,11.95,11/25/19 17:10,"41 South St, Portland, OR 97035" +297415,AAA Batteries (4-pack),2,2.99,11/22/19 18:10,"837 2nd St, Dallas, TX 75001" +297416,Wired Headphones,1,11.99,11/20/19 07:15,"997 Wilson St, Austin, TX 73301" +297417,Wired Headphones,1,11.99,11/11/19 12:37,"92 8th St, San Francisco, CA 94016" +297417,AAA Batteries (4-pack),3,2.99,11/11/19 12:37,"92 8th St, San Francisco, CA 94016" +297418,ThinkPad Laptop,1,999.99,11/16/19 10:30,"719 River St, San Francisco, CA 94016" +297419,Lightning Charging Cable,1,14.95,11/24/19 21:07,"360 Hill St, Portland, ME 04101" +297420,AA Batteries (4-pack),3,3.84,11/08/19 11:11,"872 Wilson St, Atlanta, GA 30301" +297421,iPhone,1,700,11/19/19 13:52,"132 Main St, New York City, NY 10001" +297422,USB-C Charging Cable,1,11.95,11/28/19 09:01,"556 Jefferson St, Atlanta, GA 30301" +297423,Lightning Charging Cable,1,14.95,11/05/19 22:58,"654 Hill St, San Francisco, CA 94016" +297424,34in Ultrawide Monitor,1,379.99,11/22/19 19:15,"26 Meadow St, San Francisco, CA 94016" +297425,Lightning Charging Cable,1,14.95,11/23/19 17:05,"533 Willow St, Los Angeles, CA 90001" +,,,,, +297426,AA Batteries (4-pack),1,3.84,11/06/19 18:33,"146 Washington St, San Francisco, CA 94016" +297427,27in 4K Gaming Monitor,1,389.99,11/02/19 17:49,"314 West St, Atlanta, GA 30301" +297428,iPhone,1,700,11/20/19 12:47,"261 Park St, Dallas, TX 75001" +297429,Bose SoundSport Headphones,1,99.99,11/22/19 11:10,"617 9th St, Portland, OR 97035" +297430,AA Batteries (4-pack),1,3.84,11/08/19 20:56,"434 Chestnut St, New York City, NY 10001" +297430,Wired Headphones,1,11.99,11/08/19 20:56,"434 Chestnut St, New York City, NY 10001" +297431,Wired Headphones,1,11.99,11/25/19 09:21,"920 Highland St, Seattle, WA 98101" +297432,Lightning Charging Cable,1,14.95,11/11/19 13:06,"142 Cherry St, Boston, MA 02215" +297433,Lightning Charging Cable,1,14.95,11/24/19 10:08,"31 Jefferson St, Los Angeles, CA 90001" +297434,34in Ultrawide Monitor,1,379.99,11/10/19 22:15,"818 2nd St, Dallas, TX 75001" +297435,Apple Airpods Headphones,1,150,11/16/19 18:28,"372 Walnut St, Los Angeles, CA 90001" +297436,AA Batteries (4-pack),1,3.84,11/24/19 17:11,"631 5th St, New York City, NY 10001" +297437,AAA Batteries (4-pack),1,2.99,11/22/19 08:27,"900 Jackson St, Los Angeles, CA 90001" +297438,iPhone,1,700,11/30/19 18:43,"744 North St, San Francisco, CA 94016" +297439,Lightning Charging Cable,1,14.95,11/03/19 17:24,"609 2nd St, New York City, NY 10001" +297440,Flatscreen TV,1,300,11/21/19 21:41,"555 Jackson St, San Francisco, CA 94016" +297441,34in Ultrawide Monitor,1,379.99,11/02/19 18:28,"632 Church St, Seattle, WA 98101" +297442,Apple Airpods Headphones,1,150,11/26/19 08:09,"556 Wilson St, Boston, MA 02215" +297443,Bose SoundSport Headphones,1,99.99,11/09/19 09:12,"50 Jackson St, Austin, TX 73301" +297444,Vareebadd Phone,1,400,11/16/19 15:03,"311 Spruce St, Austin, TX 73301" +297445,Bose SoundSport Headphones,1,99.99,11/27/19 11:05,"3 Hill St, Seattle, WA 98101" +297446,Apple Airpods Headphones,1,150,11/12/19 13:41,"439 Maple St, Los Angeles, CA 90001" +297447,Wired Headphones,1,11.99,11/20/19 19:22,"29 Cherry St, Los Angeles, CA 90001" +297448,USB-C Charging Cable,1,11.95,11/08/19 22:18,"5 7th St, Los Angeles, CA 90001" +297449,Lightning Charging Cable,1,14.95,11/06/19 12:10,"629 Center St, Seattle, WA 98101" +297450,iPhone,1,700,11/20/19 22:14,"17 7th St, New York City, NY 10001" +297451,27in 4K Gaming Monitor,1,389.99,11/16/19 11:19,"169 Hill St, San Francisco, CA 94016" +297452,27in FHD Monitor,1,149.99,11/04/19 18:39,"53 Highland St, San Francisco, CA 94016" +297453,Lightning Charging Cable,2,14.95,11/19/19 18:58,"351 Willow St, Atlanta, GA 30301" +297454,AAA Batteries (4-pack),4,2.99,11/15/19 10:42,"668 12th St, Atlanta, GA 30301" +297455,Bose SoundSport Headphones,1,99.99,11/09/19 14:16,"576 Lincoln St, Los Angeles, CA 90001" +297456,Apple Airpods Headphones,1,150,11/14/19 09:42,"679 Walnut St, Los Angeles, CA 90001" +297457,Bose SoundSport Headphones,1,99.99,11/13/19 11:30,"393 River St, Portland, OR 97035" +297458,USB-C Charging Cable,1,11.95,11/24/19 19:46,"94 Wilson St, Portland, OR 97035" +297459,AA Batteries (4-pack),1,3.84,11/30/19 18:03,"229 14th St, Los Angeles, CA 90001" +297460,Apple Airpods Headphones,1,150,11/29/19 21:00,"591 Walnut St, New York City, NY 10001" +297461,Wired Headphones,1,11.99,11/01/19 13:57,"71 5th St, New York City, NY 10001" +297462,Bose SoundSport Headphones,1,99.99,11/08/19 16:37,"219 Highland St, Portland, OR 97035" +297463,Wired Headphones,1,11.99,11/16/19 20:59,"157 Hickory St, San Francisco, CA 94016" +297464,27in 4K Gaming Monitor,1,389.99,11/17/19 10:11,"866 4th St, San Francisco, CA 94016" +297465,USB-C Charging Cable,1,11.95,11/06/19 03:34,"355 8th St, Los Angeles, CA 90001" +297466,Google Phone,1,600,11/07/19 15:42,"975 Hickory St, San Francisco, CA 94016" +297467,20in Monitor,1,109.99,11/05/19 14:34,"146 Jackson St, Seattle, WA 98101" +297468,AA Batteries (4-pack),1,3.84,11/28/19 07:52,"707 1st St, San Francisco, CA 94016" +297469,AA Batteries (4-pack),1,3.84,11/18/19 19:26,"880 Sunset St, Boston, MA 02215" +297470,Wired Headphones,1,11.99,11/05/19 11:08,"576 Chestnut St, San Francisco, CA 94016" +297471,AAA Batteries (4-pack),1,2.99,11/24/19 18:20,"397 Johnson St, San Francisco, CA 94016" +297472,iPhone,1,700,11/11/19 16:16,"380 Pine St, San Francisco, CA 94016" +297473,USB-C Charging Cable,1,11.95,11/01/19 12:20,"336 Meadow St, San Francisco, CA 94016" +297474,Apple Airpods Headphones,1,150,11/16/19 13:12,"750 Spruce St, Portland, OR 97035" +297475,Bose SoundSport Headphones,1,99.99,11/05/19 17:06,"745 6th St, Boston, MA 02215" +297476,AA Batteries (4-pack),1,3.84,11/04/19 08:29,"396 Main St, Boston, MA 02215" +297477,AA Batteries (4-pack),1,3.84,11/07/19 17:59,"701 Cedar St, San Francisco, CA 94016" +297478,iPhone,1,700,11/12/19 09:29,"728 Washington St, San Francisco, CA 94016" +297479,AAA Batteries (4-pack),3,2.99,11/16/19 13:33,"840 Wilson St, Atlanta, GA 30301" +297480,AA Batteries (4-pack),1,3.84,11/21/19 20:59,"831 Dogwood St, New York City, NY 10001" +297481,AA Batteries (4-pack),2,3.84,11/25/19 19:03,"84 West St, Atlanta, GA 30301" +297482,Bose SoundSport Headphones,1,99.99,11/25/19 21:11,"37 7th St, Los Angeles, CA 90001" +297483,Lightning Charging Cable,1,14.95,11/02/19 20:18,"873 8th St, Los Angeles, CA 90001" +297484,Lightning Charging Cable,1,14.95,11/09/19 18:13,"349 Lake St, Los Angeles, CA 90001" +297485,Wired Headphones,1,11.99,11/05/19 19:01,"937 South St, San Francisco, CA 94016" +297486,Bose SoundSport Headphones,1,99.99,11/20/19 11:33,"878 Washington St, Dallas, TX 75001" +297487,Vareebadd Phone,1,400,11/15/19 13:00,"625 North St, Los Angeles, CA 90001" +297488,Macbook Pro Laptop,1,1700,11/23/19 18:50,"868 Main St, Portland, OR 97035" +297489,ThinkPad Laptop,1,999.99,11/13/19 10:45,"129 Cherry St, Austin, TX 73301" +297490,USB-C Charging Cable,1,11.95,11/07/19 15:39,"954 Cherry St, San Francisco, CA 94016" +297491,Apple Airpods Headphones,1,150,11/20/19 16:31,"549 Wilson St, San Francisco, CA 94016" +297492,Lightning Charging Cable,1,14.95,11/02/19 14:54,"629 2nd St, Atlanta, GA 30301" +297493,Google Phone,1,600,11/19/19 18:15,"20 13th St, Dallas, TX 75001" +297494,AAA Batteries (4-pack),1,2.99,11/30/19 13:17,"633 Adams St, San Francisco, CA 94016" +297495,AA Batteries (4-pack),1,3.84,11/20/19 18:06,"905 West St, San Francisco, CA 94016" +297496,AA Batteries (4-pack),1,3.84,11/08/19 17:18,"486 River St, Los Angeles, CA 90001" +297497,Lightning Charging Cable,1,14.95,11/03/19 16:01,"940 Adams St, Los Angeles, CA 90001" +297498,27in FHD Monitor,1,149.99,11/03/19 13:42,"622 Washington St, San Francisco, CA 94016" +297499,Lightning Charging Cable,1,14.95,11/13/19 18:02,"754 4th St, New York City, NY 10001" +297500,Macbook Pro Laptop,1,1700,11/15/19 09:41,"711 Wilson St, Austin, TX 73301" +297501,Macbook Pro Laptop,1,1700,11/21/19 09:13,"164 4th St, San Francisco, CA 94016" +297502,Apple Airpods Headphones,1,150,11/13/19 20:09,"944 Hickory St, Seattle, WA 98101" +297503,34in Ultrawide Monitor,1,379.99,11/10/19 18:02,"926 Maple St, Los Angeles, CA 90001" +297504,Bose SoundSport Headphones,1,99.99,11/04/19 21:35,"828 Lake St, Atlanta, GA 30301" +297505,Wired Headphones,1,11.99,11/20/19 22:39,"144 Park St, San Francisco, CA 94016" +297506,Google Phone,1,600,11/22/19 13:29,"153 Hickory St, San Francisco, CA 94016" +297507,Lightning Charging Cable,1,14.95,11/27/19 06:56,"423 Adams St, Boston, MA 02215" +297508,AA Batteries (4-pack),1,3.84,11/09/19 14:54,"446 1st St, Austin, TX 73301" +297509,Bose SoundSport Headphones,1,99.99,11/22/19 09:27,"409 Chestnut St, Los Angeles, CA 90001" +297510,USB-C Charging Cable,1,11.95,11/23/19 23:57,"546 Church St, Boston, MA 02215" +297511,Bose SoundSport Headphones,1,99.99,11/02/19 10:58,"874 Wilson St, New York City, NY 10001" +297512,USB-C Charging Cable,1,11.95,11/28/19 16:14,"233 9th St, Los Angeles, CA 90001" +297513,USB-C Charging Cable,1,11.95,11/02/19 08:41,"636 Jefferson St, Portland, OR 97035" +297514,27in 4K Gaming Monitor,1,389.99,11/13/19 15:42,"968 14th St, Los Angeles, CA 90001" +297515,USB-C Charging Cable,1,11.95,11/04/19 06:52,"983 Sunset St, Boston, MA 02215" +297516,Apple Airpods Headphones,1,150,11/16/19 17:29,"67 5th St, New York City, NY 10001" +297517,Wired Headphones,1,11.99,11/23/19 22:01,"588 11th St, San Francisco, CA 94016" +297518,Bose SoundSport Headphones,1,99.99,11/28/19 10:29,"11 Lakeview St, Portland, OR 97035" +297519,27in 4K Gaming Monitor,1,389.99,11/13/19 13:25,"709 2nd St, San Francisco, CA 94016" +297520,iPhone,1,700,11/26/19 00:15,"896 5th St, New York City, NY 10001" +297521,Lightning Charging Cable,1,14.95,11/21/19 09:30,"187 Pine St, Los Angeles, CA 90001" +297522,Wired Headphones,1,11.99,11/13/19 09:27,"965 9th St, Boston, MA 02215" +297523,Macbook Pro Laptop,1,1700,11/02/19 16:00,"388 Center St, Dallas, TX 75001" +297524,Lightning Charging Cable,1,14.95,11/14/19 17:56,"299 Jackson St, Boston, MA 02215" +297525,USB-C Charging Cable,1,11.95,11/11/19 01:31,"246 Lake St, Atlanta, GA 30301" +297526,Bose SoundSport Headphones,1,99.99,11/06/19 11:36,"435 10th St, Los Angeles, CA 90001" +297527,Apple Airpods Headphones,1,150,11/10/19 17:59,"931 Highland St, Boston, MA 02215" +297528,AAA Batteries (4-pack),1,2.99,11/07/19 10:07,"414 Lincoln St, Atlanta, GA 30301" +297529,AA Batteries (4-pack),1,3.84,11/25/19 19:53,"943 Jefferson St, Atlanta, GA 30301" +297530,USB-C Charging Cable,1,11.95,11/14/19 11:11,"736 1st St, Los Angeles, CA 90001" +297531,USB-C Charging Cable,1,11.95,11/04/19 22:00,"286 Jefferson St, San Francisco, CA 94016" +297532,Flatscreen TV,1,300,11/24/19 11:27,"408 Walnut St, Portland, ME 04101" +297533,AAA Batteries (4-pack),1,2.99,11/30/19 16:35,"172 11th St, San Francisco, CA 94016" +297534,Apple Airpods Headphones,1,150,11/15/19 22:16,"619 Pine St, San Francisco, CA 94016" +297535,USB-C Charging Cable,1,11.95,11/07/19 20:23,"215 Park St, San Francisco, CA 94016" +297536,Wired Headphones,1,11.99,11/28/19 18:26,"242 13th St, Austin, TX 73301" +297537,AA Batteries (4-pack),1,3.84,11/16/19 21:11,"690 North St, Los Angeles, CA 90001" +297538,Wired Headphones,2,11.99,11/04/19 11:15,"248 Hickory St, New York City, NY 10001" +297539,Google Phone,1,600,11/30/19 01:19,"469 River St, Boston, MA 02215" +297540,AA Batteries (4-pack),1,3.84,11/04/19 11:58,"96 South St, San Francisco, CA 94016" +297541,20in Monitor,1,109.99,11/19/19 00:18,"457 Jackson St, San Francisco, CA 94016" +297542,Apple Airpods Headphones,1,150,11/15/19 22:04,"788 Elm St, Austin, TX 73301" +297543,20in Monitor,1,109.99,11/21/19 22:17,"471 11th St, Dallas, TX 75001" +297544,AA Batteries (4-pack),1,3.84,11/07/19 10:14,"708 Lincoln St, Portland, ME 04101" +297545,Wired Headphones,1,11.99,11/28/19 10:21,"333 Highland St, Boston, MA 02215" +297546,27in FHD Monitor,1,149.99,11/07/19 11:34,"8 Madison St, Austin, TX 73301" +297547,Bose SoundSport Headphones,1,99.99,11/24/19 10:05,"712 1st St, San Francisco, CA 94016" +297548,Vareebadd Phone,1,400,11/08/19 21:24,"120 Madison St, Los Angeles, CA 90001" +297548,USB-C Charging Cable,1,11.95,11/08/19 21:24,"120 Madison St, Los Angeles, CA 90001" +297549,Lightning Charging Cable,1,14.95,11/28/19 16:03,"836 Chestnut St, San Francisco, CA 94016" +297549,Vareebadd Phone,1,400,11/28/19 16:03,"836 Chestnut St, San Francisco, CA 94016" +297550,Wired Headphones,1,11.99,11/12/19 22:52,"742 6th St, Portland, OR 97035" +297550,34in Ultrawide Monitor,1,379.99,11/12/19 22:52,"742 6th St, Portland, OR 97035" +297551,AAA Batteries (4-pack),1,2.99,11/02/19 13:37,"178 Cherry St, Los Angeles, CA 90001" +297552,AAA Batteries (4-pack),2,2.99,11/26/19 07:04,"620 Elm St, New York City, NY 10001" +297553,Lightning Charging Cable,1,14.95,11/03/19 20:27,"710 Cherry St, Seattle, WA 98101" +297554,AA Batteries (4-pack),1,3.84,11/10/19 08:39,"162 Lakeview St, Seattle, WA 98101" +297555,Bose SoundSport Headphones,1,99.99,11/04/19 10:51,"193 Wilson St, New York City, NY 10001" +297556,Lightning Charging Cable,1,14.95,11/22/19 10:59,"536 North St, Los Angeles, CA 90001" +297557,20in Monitor,1,109.99,11/04/19 16:15,"191 Jefferson St, San Francisco, CA 94016" +297558,AA Batteries (4-pack),2,3.84,11/03/19 19:53,"671 14th St, Boston, MA 02215" +297559,Lightning Charging Cable,1,14.95,11/13/19 22:40,"520 Lake St, Los Angeles, CA 90001" +297560,Wired Headphones,1,11.99,11/12/19 19:16,"815 Highland St, Dallas, TX 75001" +297561,Wired Headphones,1,11.99,11/08/19 13:15,"435 14th St, Austin, TX 73301" +297562,Apple Airpods Headphones,1,150,11/19/19 15:08,"833 Madison St, San Francisco, CA 94016" +297563,AAA Batteries (4-pack),1,2.99,11/27/19 21:54,"328 Main St, San Francisco, CA 94016" +297564,34in Ultrawide Monitor,1,379.99,11/26/19 10:58,"860 Ridge St, Atlanta, GA 30301" +297565,Wired Headphones,1,11.99,11/22/19 17:16,"301 Sunset St, New York City, NY 10001" +297566,Google Phone,1,600,11/21/19 11:39,"858 Maple St, Seattle, WA 98101" +297566,USB-C Charging Cable,1,11.95,11/21/19 11:39,"858 Maple St, Seattle, WA 98101" +297567,AA Batteries (4-pack),3,3.84,11/10/19 02:55,"44 2nd St, Seattle, WA 98101" +297568,Wired Headphones,1,11.99,11/08/19 12:19,"748 Jefferson St, Seattle, WA 98101" +297569,27in 4K Gaming Monitor,1,389.99,11/13/19 01:40,"493 Walnut St, Los Angeles, CA 90001" +297570,AAA Batteries (4-pack),1,2.99,11/22/19 00:57,"415 2nd St, San Francisco, CA 94016" +297571,AA Batteries (4-pack),1,3.84,11/20/19 22:29,"160 Church St, Dallas, TX 75001" +297572,Wired Headphones,1,11.99,11/30/19 23:59,"249 Spruce St, Seattle, WA 98101" +297573,AA Batteries (4-pack),1,3.84,11/18/19 06:28,"260 13th St, Atlanta, GA 30301" +297573,Wired Headphones,1,11.99,11/18/19 06:28,"260 13th St, Atlanta, GA 30301" +297574,iPhone,1,700,11/18/19 08:47,"435 Forest St, Boston, MA 02215" +297575,AAA Batteries (4-pack),3,2.99,11/07/19 15:17,"192 Walnut St, San Francisco, CA 94016" +297576,Wired Headphones,2,11.99,11/15/19 18:49,"204 10th St, Los Angeles, CA 90001" +297577,AA Batteries (4-pack),1,3.84,11/15/19 12:52,"444 Hill St, Seattle, WA 98101" +297578,34in Ultrawide Monitor,1,379.99,11/17/19 17:18,"911 Spruce St, Portland, OR 97035" +297579,27in FHD Monitor,1,149.99,11/04/19 10:21,"531 Pine St, Dallas, TX 75001" +297580,Wired Headphones,1,11.99,11/06/19 15:42,"199 1st St, San Francisco, CA 94016" +297581,27in FHD Monitor,1,149.99,11/24/19 12:37,"912 Highland St, New York City, NY 10001" +297582,20in Monitor,1,109.99,11/23/19 23:13,"508 Willow St, San Francisco, CA 94016" +297583,Lightning Charging Cable,1,14.95,11/07/19 10:16,"679 Hill St, New York City, NY 10001" +297584,AAA Batteries (4-pack),2,2.99,11/17/19 11:42,"698 12th St, Seattle, WA 98101" +297585,AAA Batteries (4-pack),2,2.99,11/13/19 17:03,"380 1st St, Boston, MA 02215" +297586,AA Batteries (4-pack),1,3.84,11/25/19 23:08,"26 Wilson St, San Francisco, CA 94016" +297587,AA Batteries (4-pack),1,3.84,11/22/19 19:50,"150 Jackson St, Los Angeles, CA 90001" +297588,AAA Batteries (4-pack),1,2.99,11/02/19 18:31,"285 Main St, Seattle, WA 98101" +297589,AA Batteries (4-pack),1,3.84,11/24/19 18:02,"82 14th St, Los Angeles, CA 90001" +297590,Apple Airpods Headphones,1,150,11/25/19 13:24,"869 14th St, Atlanta, GA 30301" +297591,AA Batteries (4-pack),4,3.84,11/03/19 10:51,"922 Madison St, Los Angeles, CA 90001" +297592,Bose SoundSport Headphones,1,99.99,11/06/19 18:30,"275 Elm St, New York City, NY 10001" +297593,Lightning Charging Cable,1,14.95,11/16/19 16:52,"414 Center St, Seattle, WA 98101" +297594,ThinkPad Laptop,1,999.99,11/04/19 10:48,"807 6th St, San Francisco, CA 94016" +297595,iPhone,1,700,11/14/19 15:18,"145 Chestnut St, Dallas, TX 75001" +297595,Lightning Charging Cable,2,14.95,11/14/19 15:18,"145 Chestnut St, Dallas, TX 75001" +297596,iPhone,1,700,11/27/19 16:54,"946 14th St, New York City, NY 10001" +297597,Apple Airpods Headphones,1,150,11/02/19 17:45,"325 Walnut St, Boston, MA 02215" +297598,AAA Batteries (4-pack),1,2.99,11/15/19 16:43,"415 11th St, Portland, OR 97035" +297599,AA Batteries (4-pack),1,3.84,11/06/19 11:41,"165 Center St, San Francisco, CA 94016" +297600,AAA Batteries (4-pack),1,2.99,11/24/19 13:41,"277 Meadow St, San Francisco, CA 94016" +297601,AA Batteries (4-pack),1,3.84,11/18/19 16:49,"46 Spruce St, Seattle, WA 98101" +297602,Bose SoundSport Headphones,1,99.99,11/12/19 19:48,"922 North St, San Francisco, CA 94016" +297603,20in Monitor,1,109.99,11/10/19 15:11,"815 Main St, Seattle, WA 98101" +297604,AA Batteries (4-pack),2,3.84,11/24/19 20:38,"347 Johnson St, Los Angeles, CA 90001" +297605,Macbook Pro Laptop,1,1700,11/15/19 19:13,"323 2nd St, Atlanta, GA 30301" +297606,Apple Airpods Headphones,1,150,11/22/19 19:21,"422 7th St, Boston, MA 02215" +297607,ThinkPad Laptop,1,999.99,11/08/19 13:16,"214 6th St, New York City, NY 10001" +297608,Lightning Charging Cable,1,14.95,11/30/19 16:16,"772 2nd St, Boston, MA 02215" +297609,Google Phone,1,600,11/05/19 11:17,"366 5th St, San Francisco, CA 94016" +297609,Wired Headphones,1,11.99,11/05/19 11:17,"366 5th St, San Francisco, CA 94016" +297610,LG Dryer,1,600.0,11/25/19 07:49,"495 4th St, Atlanta, GA 30301" +297611,AA Batteries (4-pack),1,3.84,11/12/19 13:20,"13 Center St, New York City, NY 10001" +297612,AA Batteries (4-pack),1,3.84,11/08/19 19:57,"282 6th St, Atlanta, GA 30301" +297613,USB-C Charging Cable,1,11.95,11/14/19 13:57,"43 Center St, New York City, NY 10001" +297614,Lightning Charging Cable,1,14.95,11/11/19 13:22,"784 Chestnut St, Boston, MA 02215" +297615,AAA Batteries (4-pack),3,2.99,11/17/19 18:50,"780 Dogwood St, New York City, NY 10001" +297616,AA Batteries (4-pack),1,3.84,11/01/19 20:25,"645 Center St, Los Angeles, CA 90001" +297617,Wired Headphones,1,11.99,11/30/19 00:10,"586 Spruce St, Boston, MA 02215" +297618,USB-C Charging Cable,1,11.95,11/01/19 18:35,"572 Pine St, New York City, NY 10001" +297619,AA Batteries (4-pack),2,3.84,11/24/19 23:48,"193 Forest St, San Francisco, CA 94016" +297620,AA Batteries (4-pack),1,3.84,11/24/19 14:16,"714 Wilson St, Boston, MA 02215" +297621,AA Batteries (4-pack),1,3.84,11/22/19 15:35,"165 Pine St, Seattle, WA 98101" +297622,USB-C Charging Cable,1,11.95,11/13/19 12:08,"457 Cherry St, Atlanta, GA 30301" +297623,Apple Airpods Headphones,1,150,11/08/19 17:06,"66 Lakeview St, San Francisco, CA 94016" +297624,USB-C Charging Cable,1,11.95,11/10/19 10:26,"248 8th St, New York City, NY 10001" +297625,Wired Headphones,1,11.99,11/03/19 13:13,"857 Lakeview St, San Francisco, CA 94016" +297626,Wired Headphones,1,11.99,11/24/19 22:53,"284 Forest St, Los Angeles, CA 90001" +297627,AAA Batteries (4-pack),1,2.99,11/29/19 23:33,"482 8th St, Los Angeles, CA 90001" +297628,Wired Headphones,1,11.99,11/22/19 15:03,"586 Sunset St, Seattle, WA 98101" +297629,Apple Airpods Headphones,1,150,11/27/19 17:04,"589 Park St, Atlanta, GA 30301" +297630,Flatscreen TV,1,300,11/23/19 20:55,"522 Willow St, Atlanta, GA 30301" +297631,AAA Batteries (4-pack),1,2.99,11/15/19 15:13,"264 5th St, San Francisco, CA 94016" +297632,USB-C Charging Cable,1,11.95,11/09/19 16:42,"75 Center St, Dallas, TX 75001" +297632,iPhone,1,700,11/09/19 16:42,"75 Center St, Dallas, TX 75001" +297633,USB-C Charging Cable,2,11.95,11/12/19 18:14,"728 Lincoln St, Portland, OR 97035" +297634,USB-C Charging Cable,1,11.95,11/13/19 15:23,"126 Washington St, New York City, NY 10001" +297635,Vareebadd Phone,1,400,11/06/19 15:55,"575 Lincoln St, Boston, MA 02215" +297636,Lightning Charging Cable,1,14.95,11/26/19 14:47,"229 Chestnut St, Boston, MA 02215" +297637,Lightning Charging Cable,1,14.95,11/04/19 09:36,"851 Sunset St, Boston, MA 02215" +297638,Wired Headphones,1,11.99,11/13/19 14:49,"535 12th St, Los Angeles, CA 90001" +297639,Lightning Charging Cable,1,14.95,11/28/19 19:16,"964 Lakeview St, San Francisco, CA 94016" +297640,USB-C Charging Cable,2,11.95,11/19/19 22:19,"798 Hickory St, San Francisco, CA 94016" +297641,Bose SoundSport Headphones,1,99.99,11/03/19 12:21,"581 Highland St, San Francisco, CA 94016" +297642,27in 4K Gaming Monitor,1,389.99,11/15/19 21:51,"51 6th St, Los Angeles, CA 90001" +297643,Wired Headphones,1,11.99,11/17/19 12:21,"268 Church St, San Francisco, CA 94016" +297644,Lightning Charging Cable,1,14.95,11/07/19 09:44,"508 Cherry St, Dallas, TX 75001" +297645,Lightning Charging Cable,1,14.95,11/05/19 20:31,"192 Dogwood St, Seattle, WA 98101" +297646,USB-C Charging Cable,1,11.95,11/04/19 11:04,"678 8th St, Dallas, TX 75001" +297647,AA Batteries (4-pack),1,3.84,11/29/19 11:55,"534 West St, San Francisco, CA 94016" +297648,Lightning Charging Cable,1,14.95,11/05/19 23:04,"638 Willow St, New York City, NY 10001" +297649,iPhone,1,700,11/12/19 18:00,"582 Pine St, Boston, MA 02215" +297650,Wired Headphones,1,11.99,11/07/19 18:43,"923 Forest St, Seattle, WA 98101" +297651,USB-C Charging Cable,1,11.95,11/04/19 18:32,"75 7th St, Los Angeles, CA 90001" +297651,iPhone,1,700,11/04/19 18:32,"75 7th St, Los Angeles, CA 90001" +297652,Flatscreen TV,1,300,11/23/19 13:51,"851 Church St, San Francisco, CA 94016" +297653,Macbook Pro Laptop,1,1700,11/01/19 20:20,"449 Spruce St, New York City, NY 10001" +297654,Lightning Charging Cable,1,14.95,11/18/19 13:46,"426 Meadow St, New York City, NY 10001" +297655,USB-C Charging Cable,1,11.95,11/08/19 21:00,"28 Main St, Los Angeles, CA 90001" +297656,Lightning Charging Cable,1,14.95,11/13/19 12:29,"953 Walnut St, Boston, MA 02215" +297656,USB-C Charging Cable,1,11.95,11/13/19 12:29,"953 Walnut St, Boston, MA 02215" +297657,Lightning Charging Cable,1,14.95,11/18/19 09:26,"522 Cedar St, Los Angeles, CA 90001" +297658,Apple Airpods Headphones,1,150,11/18/19 15:28,"874 Madison St, Atlanta, GA 30301" +297659,AA Batteries (4-pack),2,3.84,11/28/19 15:48,"705 Jackson St, Seattle, WA 98101" +297660,ThinkPad Laptop,1,999.99,11/04/19 16:19,"857 Lake St, New York City, NY 10001" +297661,AA Batteries (4-pack),2,3.84,11/03/19 15:32,"949 Forest St, Portland, OR 97035" +297662,27in FHD Monitor,1,149.99,11/07/19 00:53,"102 Hill St, Austin, TX 73301" +297663,Wired Headphones,1,11.99,11/24/19 16:25,"644 Meadow St, San Francisco, CA 94016" +297664,Apple Airpods Headphones,1,150,11/09/19 14:17,"656 Madison St, San Francisco, CA 94016" +297665,LG Dryer,1,600.0,11/07/19 23:34,"949 1st St, San Francisco, CA 94016" +297666,Apple Airpods Headphones,1,150,11/28/19 07:38,"755 9th St, Boston, MA 02215" +297667,AAA Batteries (4-pack),1,2.99,11/30/19 13:58,"342 5th St, Los Angeles, CA 90001" +297668,AA Batteries (4-pack),1,3.84,11/23/19 20:02,"692 Main St, Atlanta, GA 30301" +297669,AAA Batteries (4-pack),1,2.99,11/28/19 21:19,"736 6th St, San Francisco, CA 94016" +297670,Wired Headphones,1,11.99,11/14/19 17:45,"299 9th St, Seattle, WA 98101" +297671,Flatscreen TV,1,300,11/27/19 21:44,"801 Dogwood St, San Francisco, CA 94016" +297672,Wired Headphones,1,11.99,11/22/19 22:01,"557 13th St, Boston, MA 02215" +297673,Lightning Charging Cable,1,14.95,11/09/19 23:08,"427 Adams St, Atlanta, GA 30301" +297674,Macbook Pro Laptop,1,1700,11/03/19 23:49,"317 Main St, Los Angeles, CA 90001" +297675,Lightning Charging Cable,1,14.95,11/30/19 00:11,"243 Highland St, Seattle, WA 98101" +297676,Wired Headphones,1,11.99,11/03/19 20:34,"724 Madison St, Los Angeles, CA 90001" +297677,27in 4K Gaming Monitor,1,389.99,11/16/19 09:48,"602 Lincoln St, New York City, NY 10001" +297678,iPhone,1,700,11/02/19 11:02,"72 Cherry St, Portland, OR 97035" +297678,Lightning Charging Cable,1,14.95,11/02/19 11:02,"72 Cherry St, Portland, OR 97035" +297679,AAA Batteries (4-pack),2,2.99,11/02/19 14:32,"277 Meadow St, Los Angeles, CA 90001" +297680,Bose SoundSport Headphones,1,99.99,11/16/19 17:27,"569 Center St, New York City, NY 10001" +297681,34in Ultrawide Monitor,1,379.99,11/16/19 14:40,"899 Walnut St, New York City, NY 10001" +297682,Wired Headphones,1,11.99,11/12/19 14:02,"455 Sunset St, Los Angeles, CA 90001" +297683,Wired Headphones,1,11.99,11/20/19 20:23,"274 Sunset St, San Francisco, CA 94016" +297684,Bose SoundSport Headphones,1,99.99,11/08/19 15:43,"994 River St, San Francisco, CA 94016" +297685,AA Batteries (4-pack),1,3.84,11/02/19 14:33,"776 Cherry St, Seattle, WA 98101" +297686,27in 4K Gaming Monitor,1,389.99,11/17/19 11:36,"176 Willow St, San Francisco, CA 94016" +297687,USB-C Charging Cable,1,11.95,11/08/19 17:21,"11 South St, Dallas, TX 75001" +297688,USB-C Charging Cable,2,11.95,11/26/19 13:38,"829 Madison St, Seattle, WA 98101" +297689,USB-C Charging Cable,1,11.95,11/21/19 22:11,"769 Spruce St, Boston, MA 02215" +297690,Wired Headphones,1,11.99,11/27/19 20:58,"176 8th St, San Francisco, CA 94016" +297691,AAA Batteries (4-pack),1,2.99,11/29/19 21:15,"612 Lincoln St, San Francisco, CA 94016" +297692,27in FHD Monitor,1,149.99,11/15/19 23:05,"545 5th St, New York City, NY 10001" +297693,Lightning Charging Cable,1,14.95,11/22/19 18:23,"406 11th St, San Francisco, CA 94016" +297694,Bose SoundSport Headphones,1,99.99,11/02/19 19:14,"577 Pine St, Los Angeles, CA 90001" +297695,USB-C Charging Cable,1,11.95,11/12/19 13:29,"908 Center St, Portland, OR 97035" +297696,AA Batteries (4-pack),1,3.84,11/18/19 06:22,"687 Lake St, New York City, NY 10001" +297697,Lightning Charging Cable,1,14.95,11/30/19 17:48,"370 West St, Austin, TX 73301" +297698,AAA Batteries (4-pack),1,2.99,11/05/19 20:37,"696 Pine St, New York City, NY 10001" +297699,Lightning Charging Cable,1,14.95,11/03/19 16:30,"762 Jefferson St, San Francisco, CA 94016" +297700,34in Ultrawide Monitor,1,379.99,11/06/19 03:02,"898 Madison St, Seattle, WA 98101" +297701,Bose SoundSport Headphones,1,99.99,11/11/19 11:51,"396 9th St, San Francisco, CA 94016" +297702,Apple Airpods Headphones,1,150,11/15/19 14:14,"968 Hickory St, Dallas, TX 75001" +297703,ThinkPad Laptop,1,999.99,11/22/19 17:59,"177 Cherry St, Los Angeles, CA 90001" +297704,Wired Headphones,1,11.99,11/26/19 10:01,"395 Ridge St, San Francisco, CA 94016" +297705,27in FHD Monitor,1,149.99,11/27/19 19:52,"123 Jefferson St, San Francisco, CA 94016" +297706,Bose SoundSport Headphones,1,99.99,11/07/19 21:43,"538 Church St, Los Angeles, CA 90001" +297707,ThinkPad Laptop,1,999.99,11/19/19 19:09,"462 Jefferson St, Dallas, TX 75001" +297708,USB-C Charging Cable,1,11.95,11/04/19 21:20,"652 Church St, New York City, NY 10001" +297709,Google Phone,1,600,11/28/19 10:31,"730 Ridge St, Atlanta, GA 30301" +297710,ThinkPad Laptop,1,999.99,11/06/19 13:23,"277 Pine St, New York City, NY 10001" +297711,Flatscreen TV,1,300,11/01/19 11:38,"488 8th St, Atlanta, GA 30301" +297712,27in 4K Gaming Monitor,1,389.99,11/22/19 11:27,"584 Lake St, San Francisco, CA 94016" +297713,27in FHD Monitor,1,149.99,11/04/19 08:56,"582 Pine St, New York City, NY 10001" +297714,iPhone,1,700,11/02/19 18:46,"597 9th St, San Francisco, CA 94016" +297715,Wired Headphones,1,11.99,11/26/19 19:56,"702 Main St, Boston, MA 02215" +297716,USB-C Charging Cable,3,11.95,11/15/19 14:36,"900 West St, Atlanta, GA 30301" +297717,AA Batteries (4-pack),2,3.84,11/12/19 16:54,"26 Ridge St, Boston, MA 02215" +297718,Bose SoundSport Headphones,1,99.99,11/11/19 13:20,"442 Park St, New York City, NY 10001" +297719,AAA Batteries (4-pack),1,2.99,11/02/19 10:48,"546 Spruce St, Seattle, WA 98101" +297720,Apple Airpods Headphones,1,150,11/08/19 15:53,"296 13th St, Atlanta, GA 30301" +297721,Lightning Charging Cable,1,14.95,11/27/19 10:50,"926 Ridge St, New York City, NY 10001" +297722,Lightning Charging Cable,1,14.95,11/04/19 08:32,"16 Park St, Los Angeles, CA 90001" +297723,USB-C Charging Cable,1,11.95,11/27/19 14:10,"563 Sunset St, Boston, MA 02215" +297724,Apple Airpods Headphones,1,150,11/04/19 22:56,"265 4th St, Dallas, TX 75001" +297725,Lightning Charging Cable,1,14.95,11/25/19 10:57,"1 10th St, Seattle, WA 98101" +297725,iPhone,1,700,11/25/19 10:57,"1 10th St, Seattle, WA 98101" +297726,AA Batteries (4-pack),1,3.84,11/27/19 13:27,"522 Wilson St, San Francisco, CA 94016" +297727,USB-C Charging Cable,1,11.95,11/14/19 19:41,"355 4th St, Atlanta, GA 30301" +297728,34in Ultrawide Monitor,1,379.99,11/26/19 18:43,"511 Johnson St, Atlanta, GA 30301" +297729,Lightning Charging Cable,1,14.95,11/09/19 06:08,"889 North St, Los Angeles, CA 90001" +297730,iPhone,1,700,11/17/19 19:14,"688 Meadow St, San Francisco, CA 94016" +297731,Wired Headphones,1,11.99,11/18/19 17:21,"543 12th St, San Francisco, CA 94016" +297732,USB-C Charging Cable,1,11.95,11/20/19 12:31,"807 10th St, San Francisco, CA 94016" +297733,iPhone,1,700,11/03/19 12:36,"553 Main St, New York City, NY 10001" +297734,Lightning Charging Cable,1,14.95,11/13/19 22:08,"940 10th St, Seattle, WA 98101" +297735,Bose SoundSport Headphones,1,99.99,11/16/19 12:38,"134 Cedar St, Dallas, TX 75001" +297735,AA Batteries (4-pack),1,3.84,11/16/19 12:38,"134 Cedar St, Dallas, TX 75001" +297736,27in FHD Monitor,1,149.99,11/21/19 16:26,"449 Hickory St, Los Angeles, CA 90001" +297737,USB-C Charging Cable,1,11.95,11/18/19 01:46,"609 Ridge St, New York City, NY 10001" +297737,USB-C Charging Cable,1,11.95,11/18/19 01:46,"609 Ridge St, New York City, NY 10001" +297738,USB-C Charging Cable,1,11.95,11/20/19 16:20,"990 1st St, Austin, TX 73301" +297739,27in FHD Monitor,1,149.99,11/29/19 23:30,"563 Pine St, Los Angeles, CA 90001" +297740,AAA Batteries (4-pack),3,2.99,11/23/19 13:16,"921 Lakeview St, San Francisco, CA 94016" +297741,AAA Batteries (4-pack),1,2.99,11/09/19 16:28,"286 11th St, Atlanta, GA 30301" +297742,Apple Airpods Headphones,1,150,11/16/19 13:19,"746 Cherry St, San Francisco, CA 94016" +297743,iPhone,1,700,11/18/19 12:39,"636 Sunset St, Seattle, WA 98101" +297744,Apple Airpods Headphones,1,150,11/22/19 07:49,"467 Forest St, Boston, MA 02215" +297745,34in Ultrawide Monitor,1,379.99,11/12/19 23:02,"541 Cedar St, Seattle, WA 98101" +297746,Apple Airpods Headphones,1,150,11/13/19 11:47,"834 10th St, San Francisco, CA 94016" +297747,Lightning Charging Cable,1,14.95,11/08/19 08:44,"689 Walnut St, Austin, TX 73301" +297748,iPhone,1,700,11/30/19 20:15,"745 Forest St, Boston, MA 02215" +297749,Lightning Charging Cable,1,14.95,11/06/19 18:46,"759 9th St, New York City, NY 10001" +297750,AAA Batteries (4-pack),3,2.99,11/25/19 19:10,"745 2nd St, Boston, MA 02215" +297751,Apple Airpods Headphones,1,150,11/26/19 11:55,"103 Forest St, Dallas, TX 75001" +297752,ThinkPad Laptop,1,999.99,11/13/19 20:08,"373 Adams St, Boston, MA 02215" +297753,27in FHD Monitor,1,149.99,11/19/19 19:32,"89 Church St, Atlanta, GA 30301" +297754,AA Batteries (4-pack),2,3.84,11/20/19 11:12,"145 Lakeview St, Austin, TX 73301" +297755,AAA Batteries (4-pack),2,2.99,11/18/19 15:39,"118 Meadow St, San Francisco, CA 94016" +297756,AAA Batteries (4-pack),2,2.99,11/15/19 07:56,"775 Chestnut St, Los Angeles, CA 90001" +297757,Lightning Charging Cable,2,14.95,11/07/19 16:55,"805 6th St, New York City, NY 10001" +297758,Lightning Charging Cable,1,14.95,11/11/19 14:14,"609 7th St, Los Angeles, CA 90001" +297759,ThinkPad Laptop,1,999.99,11/17/19 23:57,"142 1st St, Dallas, TX 75001" +297759,LG Dryer,1,600.0,11/17/19 23:57,"142 1st St, Dallas, TX 75001" +297760,Lightning Charging Cable,1,14.95,11/04/19 20:50,"407 8th St, San Francisco, CA 94016" +297761,Lightning Charging Cable,1,14.95,11/29/19 22:33,"454 Highland St, Boston, MA 02215" +297762,AA Batteries (4-pack),1,3.84,11/25/19 19:49,"941 14th St, New York City, NY 10001" +297763,Lightning Charging Cable,1,14.95,11/16/19 13:02,"850 River St, Los Angeles, CA 90001" +297764,AAA Batteries (4-pack),1,2.99,11/04/19 15:24,"657 Adams St, Atlanta, GA 30301" +297765,Apple Airpods Headphones,1,150,11/26/19 18:56,"406 Cherry St, Atlanta, GA 30301" +297766,AAA Batteries (4-pack),2,2.99,11/13/19 19:39,"448 Highland St, San Francisco, CA 94016" +297767,AA Batteries (4-pack),1,3.84,11/01/19 18:13,"316 Cherry St, Portland, OR 97035" +297768,Wired Headphones,1,11.99,11/12/19 19:02,"784 Church St, Austin, TX 73301" +297769,ThinkPad Laptop,1,999.99,11/30/19 17:09,"230 14th St, Dallas, TX 75001" +297770,Apple Airpods Headphones,1,150,11/23/19 21:30,"406 Willow St, Dallas, TX 75001" +297771,AA Batteries (4-pack),1,3.84,11/05/19 16:01,"615 Walnut St, Boston, MA 02215" +297772,Google Phone,1,600,11/05/19 17:45,"121 2nd St, New York City, NY 10001" +297772,USB-C Charging Cable,2,11.95,11/05/19 17:45,"121 2nd St, New York City, NY 10001" +297773,Bose SoundSport Headphones,1,99.99,11/14/19 21:28,"59 Lakeview St, San Francisco, CA 94016" +297774,Google Phone,1,600,11/28/19 12:47,"521 Pine St, Dallas, TX 75001" +297775,Apple Airpods Headphones,1,150,11/25/19 10:48,"712 Cedar St, Dallas, TX 75001" +297776,Wired Headphones,1,11.99,11/13/19 11:41,"788 Park St, Atlanta, GA 30301" +297777,USB-C Charging Cable,1,11.95,11/16/19 14:18,"746 6th St, San Francisco, CA 94016" +297778,AA Batteries (4-pack),3,3.84,11/17/19 19:53,"255 Maple St, New York City, NY 10001" +297779,AA Batteries (4-pack),1,3.84,11/01/19 17:40,"513 Jackson St, Seattle, WA 98101" +297780,Wired Headphones,1,11.99,11/15/19 18:05,"22 Highland St, San Francisco, CA 94016" +297781,AAA Batteries (4-pack),1,2.99,11/27/19 20:22,"367 Meadow St, Los Angeles, CA 90001" +297782,Apple Airpods Headphones,1,150,11/29/19 21:50,"917 Forest St, Los Angeles, CA 90001" +297783,Google Phone,1,600,11/04/19 20:27,"269 7th St, San Francisco, CA 94016" +297784,Bose SoundSport Headphones,1,99.99,11/22/19 00:22,"799 Hickory St, Boston, MA 02215" +297785,Bose SoundSport Headphones,1,99.99,11/30/19 16:44,"536 Meadow St, San Francisco, CA 94016" +297786,Lightning Charging Cable,1,14.95,11/17/19 20:29,"99 Johnson St, Seattle, WA 98101" +297787,iPhone,1,700,11/12/19 10:39,"672 Willow St, Seattle, WA 98101" +297788,iPhone,1,700,11/12/19 22:54,"131 Cedar St, Atlanta, GA 30301" +297788,Apple Airpods Headphones,1,150,11/12/19 22:54,"131 Cedar St, Atlanta, GA 30301" +297789,AAA Batteries (4-pack),1,2.99,11/02/19 09:08,"972 South St, Portland, ME 04101" +297790,27in 4K Gaming Monitor,1,389.99,11/30/19 14:22,"517 South St, San Francisco, CA 94016" +297791,AAA Batteries (4-pack),3,2.99,11/22/19 15:00,"278 6th St, Portland, OR 97035" +297792,Macbook Pro Laptop,1,1700,11/12/19 10:55,"408 7th St, Dallas, TX 75001" +297793,Wired Headphones,1,11.99,11/04/19 19:16,"95 1st St, Los Angeles, CA 90001" +297794,Wired Headphones,1,11.99,11/02/19 18:27,"802 Elm St, Seattle, WA 98101" +297795,USB-C Charging Cable,1,11.95,11/06/19 08:39,"683 Madison St, Boston, MA 02215" +297796,USB-C Charging Cable,2,11.95,11/16/19 18:43,"982 Wilson St, New York City, NY 10001" +297797,iPhone,1,700,11/12/19 17:05,"285 West St, Dallas, TX 75001" +297798,AA Batteries (4-pack),1,3.84,11/27/19 10:40,"216 Forest St, San Francisco, CA 94016" +297799,27in 4K Gaming Monitor,1,389.99,11/08/19 11:27,"234 Walnut St, Atlanta, GA 30301" +297800,Lightning Charging Cable,2,14.95,11/10/19 18:49,"671 South St, Dallas, TX 75001" +297800,Bose SoundSport Headphones,1,99.99,11/10/19 18:49,"671 South St, Dallas, TX 75001" +297801,AAA Batteries (4-pack),2,2.99,11/07/19 19:02,"301 Johnson St, San Francisco, CA 94016" +297802,27in FHD Monitor,1,149.99,11/13/19 06:56,"287 Lincoln St, New York City, NY 10001" +297803,Lightning Charging Cable,1,14.95,11/28/19 13:02,"583 7th St, Los Angeles, CA 90001" +297804,USB-C Charging Cable,1,11.95,11/19/19 11:53,"193 Lakeview St, Seattle, WA 98101" +297805,iPhone,1,700,11/22/19 22:33,"506 Lakeview St, Boston, MA 02215" +297806,27in 4K Gaming Monitor,1,389.99,11/29/19 14:24,"576 2nd St, Los Angeles, CA 90001" +297807,USB-C Charging Cable,1,11.95,11/02/19 10:02,"261 10th St, Dallas, TX 75001" +297808,Bose SoundSport Headphones,1,99.99,11/16/19 19:02,"79 Lake St, San Francisco, CA 94016" +297809,AA Batteries (4-pack),1,3.84,11/27/19 11:07,"229 Elm St, Los Angeles, CA 90001" +297810,Wired Headphones,1,11.99,11/06/19 21:50,"855 Pine St, Atlanta, GA 30301" +297811,ThinkPad Laptop,1,999.99,11/23/19 15:56,"805 Center St, San Francisco, CA 94016" +297812,AA Batteries (4-pack),1,3.84,11/15/19 06:12,"438 Willow St, Los Angeles, CA 90001" +297813,Lightning Charging Cable,1,14.95,11/24/19 11:34,"955 Ridge St, Los Angeles, CA 90001" +297814,Lightning Charging Cable,1,14.95,11/19/19 01:25,"436 South St, Atlanta, GA 30301" +297814,USB-C Charging Cable,1,11.95,11/19/19 01:25,"436 South St, Atlanta, GA 30301" +297815,27in 4K Gaming Monitor,1,389.99,11/17/19 00:22,"724 Forest St, Boston, MA 02215" +297816,USB-C Charging Cable,1,11.95,11/29/19 13:45,"63 Elm St, Austin, TX 73301" +297817,Wired Headphones,1,11.99,11/14/19 19:22,"420 Meadow St, San Francisco, CA 94016" +297818,AA Batteries (4-pack),1,3.84,11/11/19 18:10,"221 9th St, San Francisco, CA 94016" +297819,AAA Batteries (4-pack),1,2.99,11/06/19 22:39,"363 Jackson St, Portland, OR 97035" +297820,Bose SoundSport Headphones,1,99.99,11/12/19 14:55,"112 14th St, Austin, TX 73301" +297821,ThinkPad Laptop,1,999.99,11/01/19 13:15,"81 7th St, Atlanta, GA 30301" +297822,Lightning Charging Cable,1,14.95,11/13/19 06:51,"465 Willow St, Dallas, TX 75001" +297823,27in 4K Gaming Monitor,1,389.99,11/17/19 11:50,"698 Pine St, Atlanta, GA 30301" +297824,27in FHD Monitor,1,149.99,11/18/19 19:42,"835 River St, New York City, NY 10001" +297825,AAA Batteries (4-pack),1,2.99,11/20/19 17:44,"530 13th St, New York City, NY 10001" +297826,Lightning Charging Cable,1,14.95,11/07/19 05:18,"445 2nd St, Portland, OR 97035" +297827,Vareebadd Phone,1,400,11/10/19 09:29,"856 1st St, Los Angeles, CA 90001" +297828,iPhone,1,700,11/28/19 13:42,"630 Jefferson St, Dallas, TX 75001" +297828,Lightning Charging Cable,1,14.95,11/28/19 13:42,"630 Jefferson St, Dallas, TX 75001" +297829,27in 4K Gaming Monitor,1,389.99,11/12/19 18:53,"781 Jackson St, Los Angeles, CA 90001" +297830,AA Batteries (4-pack),5,3.84,11/30/19 18:35,"959 10th St, San Francisco, CA 94016" +297831,AA Batteries (4-pack),1,3.84,11/13/19 21:44,"761 Dogwood St, Boston, MA 02215" +297832,USB-C Charging Cable,1,11.95,11/16/19 10:29,"932 Park St, Boston, MA 02215" +297833,Apple Airpods Headphones,1,150,11/25/19 09:41,"995 6th St, San Francisco, CA 94016" +297834,AAA Batteries (4-pack),1,2.99,11/18/19 10:55,"77 Park St, San Francisco, CA 94016" +297835,ThinkPad Laptop,1,999.99,11/14/19 11:29,"247 Sunset St, Los Angeles, CA 90001" +297836,Wired Headphones,1,11.99,11/14/19 14:20,"8 1st St, New York City, NY 10001" +297837,27in FHD Monitor,1,149.99,11/25/19 19:36,"575 11th St, Portland, OR 97035" +297838,27in FHD Monitor,1,149.99,11/22/19 14:14,"185 South St, Atlanta, GA 30301" +297839,Macbook Pro Laptop,1,1700,11/16/19 11:02,"208 Cedar St, San Francisco, CA 94016" +297840,Bose SoundSport Headphones,1,99.99,11/10/19 23:12,"799 Lincoln St, Portland, OR 97035" +297841,Bose SoundSport Headphones,1,99.99,11/01/19 11:42,"818 13th St, Boston, MA 02215" +297842,Wired Headphones,1,11.99,11/27/19 12:25,"628 Cherry St, San Francisco, CA 94016" +297843,Wired Headphones,1,11.99,11/05/19 23:03,"694 Highland St, Atlanta, GA 30301" +297844,Lightning Charging Cable,1,14.95,11/01/19 17:42,"605 Jefferson St, Boston, MA 02215" +297845,Lightning Charging Cable,1,14.95,11/04/19 17:23,"392 Madison St, San Francisco, CA 94016" +297846,AA Batteries (4-pack),1,3.84,11/19/19 13:07,"432 Sunset St, San Francisco, CA 94016" +297847,27in 4K Gaming Monitor,1,389.99,11/14/19 18:19,"458 Wilson St, Portland, OR 97035" +297848,Wired Headphones,1,11.99,11/24/19 18:08,"73 Elm St, San Francisco, CA 94016" +297849,USB-C Charging Cable,1,11.95,11/02/19 18:40,"569 Meadow St, San Francisco, CA 94016" +297850,Bose SoundSport Headphones,1,99.99,11/20/19 21:50,"656 River St, Seattle, WA 98101" +297851,Macbook Pro Laptop,1,1700,11/10/19 00:28,"878 14th St, New York City, NY 10001" +297852,Flatscreen TV,1,300,11/06/19 19:59,"612 Adams St, Dallas, TX 75001" +297853,20in Monitor,1,109.99,11/30/19 18:17,"115 8th St, San Francisco, CA 94016" +297854,ThinkPad Laptop,1,999.99,11/19/19 19:25,"496 2nd St, New York City, NY 10001" +297855,Google Phone,1,600,11/06/19 20:37,"45 Pine St, Seattle, WA 98101" +297856,iPhone,1,700,11/07/19 18:12,"614 12th St, San Francisco, CA 94016" +297856,Wired Headphones,1,11.99,11/07/19 18:12,"614 12th St, San Francisco, CA 94016" +297857,Bose SoundSport Headphones,1,99.99,11/30/19 12:59,"160 11th St, San Francisco, CA 94016" +297858,USB-C Charging Cable,1,11.95,11/21/19 00:41,"948 4th St, San Francisco, CA 94016" +297859,Macbook Pro Laptop,1,1700,11/30/19 14:25,"272 Jackson St, San Francisco, CA 94016" +297860,Wired Headphones,1,11.99,11/02/19 22:18,"645 Jackson St, Atlanta, GA 30301" +297861,Apple Airpods Headphones,1,150,11/23/19 00:35,"845 4th St, San Francisco, CA 94016" +297862,Bose SoundSport Headphones,1,99.99,11/14/19 19:33,"594 Walnut St, Los Angeles, CA 90001" +297863,AA Batteries (4-pack),1,3.84,11/09/19 18:49,"119 Wilson St, Los Angeles, CA 90001" +297864,AA Batteries (4-pack),1,3.84,11/30/19 17:22,"228 Wilson St, Seattle, WA 98101" +297865,Bose SoundSport Headphones,1,99.99,11/13/19 22:00,"154 9th St, Austin, TX 73301" +297866,Lightning Charging Cable,1,14.95,11/27/19 18:45,"662 Spruce St, Boston, MA 02215" +297867,Lightning Charging Cable,1,14.95,11/06/19 17:15,"176 Maple St, San Francisco, CA 94016" +297868,Wired Headphones,1,11.99,11/03/19 19:43,"598 Willow St, Los Angeles, CA 90001" +297869,ThinkPad Laptop,1,999.99,11/18/19 10:49,"112 Washington St, Los Angeles, CA 90001" +297870,Wired Headphones,1,11.99,11/25/19 23:34,"429 9th St, San Francisco, CA 94016" +297871,Bose SoundSport Headphones,1,99.99,11/28/19 21:11,"887 Church St, Atlanta, GA 30301" +297872,Lightning Charging Cable,1,14.95,11/22/19 08:59,"261 Cedar St, New York City, NY 10001" +297873,AA Batteries (4-pack),1,3.84,11/21/19 20:56,"773 Church St, Seattle, WA 98101" +297874,AA Batteries (4-pack),1,3.84,11/21/19 16:04,"137 Walnut St, San Francisco, CA 94016" +297875,27in FHD Monitor,1,149.99,11/26/19 12:34,"4 Washington St, Atlanta, GA 30301" +297876,Wired Headphones,1,11.99,11/12/19 13:29,"4 Hill St, New York City, NY 10001" +297877,27in FHD Monitor,1,149.99,11/06/19 09:37,"889 Johnson St, New York City, NY 10001" +297878,AA Batteries (4-pack),1,3.84,11/27/19 07:15,"913 Walnut St, New York City, NY 10001" +297879,Macbook Pro Laptop,1,1700,11/16/19 10:36,"963 Center St, Los Angeles, CA 90001" +297880,Lightning Charging Cable,1,14.95,11/23/19 23:26,"757 4th St, Seattle, WA 98101" +297881,USB-C Charging Cable,1,11.95,11/29/19 21:28,"279 Forest St, San Francisco, CA 94016" +297882,Macbook Pro Laptop,1,1700,11/06/19 21:13,"276 North St, New York City, NY 10001" +297883,Wired Headphones,1,11.99,11/03/19 11:36,"749 Pine St, Dallas, TX 75001" +297884,27in 4K Gaming Monitor,1,389.99,11/07/19 12:06,"916 6th St, New York City, NY 10001" +297885,AAA Batteries (4-pack),1,2.99,11/26/19 21:02,"410 5th St, Los Angeles, CA 90001" +297886,Apple Airpods Headphones,1,150,11/15/19 23:09,"684 Park St, San Francisco, CA 94016" +297887,USB-C Charging Cable,1,11.95,11/24/19 20:44,"365 Johnson St, New York City, NY 10001" +297888,AAA Batteries (4-pack),2,2.99,11/18/19 18:16,"342 South St, Portland, OR 97035" +297889,USB-C Charging Cable,3,11.95,11/03/19 11:07,"503 14th St, San Francisco, CA 94016" +297890,AAA Batteries (4-pack),2,2.99,11/17/19 03:49,"915 Ridge St, San Francisco, CA 94016" +297891,Lightning Charging Cable,1,14.95,11/10/19 09:20,"779 Wilson St, Dallas, TX 75001" +297892,Apple Airpods Headphones,1,150,11/23/19 18:09,"525 Park St, New York City, NY 10001" +297893,AAA Batteries (4-pack),1,2.99,11/17/19 09:52,"808 Elm St, New York City, NY 10001" +297894,27in FHD Monitor,1,149.99,11/18/19 16:13,"682 Willow St, San Francisco, CA 94016" +297895,27in 4K Gaming Monitor,1,389.99,11/04/19 19:28,"131 Sunset St, Seattle, WA 98101" +297896,20in Monitor,1,109.99,11/14/19 19:35,"905 Johnson St, Dallas, TX 75001" +297897,27in FHD Monitor,1,149.99,11/22/19 11:27,"404 River St, San Francisco, CA 94016" +297898,USB-C Charging Cable,1,11.95,11/14/19 06:57,"462 Lake St, Austin, TX 73301" +297899,USB-C Charging Cable,1,11.95,11/02/19 15:55,"529 Sunset St, New York City, NY 10001" +297900,Lightning Charging Cable,1,14.95,11/10/19 16:38,"645 1st St, Atlanta, GA 30301" +297901,AAA Batteries (4-pack),1,2.99,11/07/19 14:14,"350 6th St, Portland, OR 97035" +297902,USB-C Charging Cable,1,11.95,11/20/19 18:14,"117 Cedar St, Seattle, WA 98101" +297903,Wired Headphones,1,11.99,11/19/19 17:32,"991 1st St, San Francisco, CA 94016" +297904,Lightning Charging Cable,3,14.95,11/05/19 20:19,"581 13th St, San Francisco, CA 94016" +297905,Apple Airpods Headphones,1,150,11/05/19 18:06,"60 9th St, Seattle, WA 98101" +297906,Google Phone,1,600,11/27/19 15:16,"541 12th St, Boston, MA 02215" +297906,USB-C Charging Cable,1,11.95,11/27/19 15:16,"541 12th St, Boston, MA 02215" +297907,AA Batteries (4-pack),1,3.84,11/28/19 12:52,"200 Hickory St, Atlanta, GA 30301" +297908,Flatscreen TV,1,300,11/05/19 08:01,"929 4th St, Boston, MA 02215" +297909,USB-C Charging Cable,1,11.95,11/01/19 15:20,"898 Elm St, Los Angeles, CA 90001" +297910,34in Ultrawide Monitor,1,379.99,11/26/19 18:57,"65 Main St, Seattle, WA 98101" +297911,USB-C Charging Cable,1,11.95,11/22/19 13:45,"698 North St, San Francisco, CA 94016" +297912,AAA Batteries (4-pack),1,2.99,11/02/19 23:01,"843 Main St, New York City, NY 10001" +297913,AAA Batteries (4-pack),2,2.99,11/28/19 16:21,"549 Church St, Portland, OR 97035" +297914,AAA Batteries (4-pack),1,2.99,11/28/19 01:16,"735 14th St, New York City, NY 10001" +297915,34in Ultrawide Monitor,1,379.99,11/10/19 16:07,"734 Elm St, Dallas, TX 75001" +297916,AA Batteries (4-pack),1,3.84,11/02/19 16:12,"481 Johnson St, San Francisco, CA 94016" +297917,iPhone,1,700,11/02/19 16:45,"853 Ridge St, Dallas, TX 75001" +297917,Wired Headphones,1,11.99,11/02/19 16:45,"853 Ridge St, Dallas, TX 75001" +297918,Lightning Charging Cable,1,14.95,11/02/19 10:34,"168 Wilson St, Los Angeles, CA 90001" +297919,Flatscreen TV,1,300,11/02/19 17:32,"45 Cherry St, San Francisco, CA 94016" +297920,AAA Batteries (4-pack),1,2.99,11/08/19 22:49,"338 Washington St, Portland, OR 97035" +297921,Wired Headphones,1,11.99,11/16/19 03:34,"821 6th St, Atlanta, GA 30301" +297922,USB-C Charging Cable,1,11.95,11/29/19 14:24,"6 Forest St, Portland, OR 97035" +297923,Google Phone,1,600,11/02/19 12:48,"395 Madison St, Boston, MA 02215" +297924,34in Ultrawide Monitor,1,379.99,11/09/19 13:42,"20 2nd St, Seattle, WA 98101" +297925,AA Batteries (4-pack),1,3.84,11/26/19 10:38,"981 6th St, New York City, NY 10001" +297925,AAA Batteries (4-pack),3,2.99,11/26/19 10:38,"981 6th St, New York City, NY 10001" +297926,AAA Batteries (4-pack),2,2.99,11/24/19 18:07,"162 North St, San Francisco, CA 94016" +297927,34in Ultrawide Monitor,1,379.99,11/12/19 23:48,"385 Park St, Seattle, WA 98101" +297928,Google Phone,1,600,11/12/19 14:20,"743 Meadow St, New York City, NY 10001" +297929,USB-C Charging Cable,1,11.95,11/29/19 07:08,"721 Chestnut St, San Francisco, CA 94016" +297930,USB-C Charging Cable,1,11.95,11/08/19 20:30,"543 Center St, Portland, ME 04101" +297931,Apple Airpods Headphones,1,150,11/27/19 14:04,"612 1st St, New York City, NY 10001" +,,,,, +297932,Wired Headphones,1,11.99,11/11/19 17:05,"31 Madison St, Los Angeles, CA 90001" +297933,AAA Batteries (4-pack),1,2.99,11/08/19 21:57,"309 South St, Dallas, TX 75001" +297934,Apple Airpods Headphones,1,150,11/28/19 20:19,"881 Cedar St, New York City, NY 10001" +297935,20in Monitor,1,109.99,11/17/19 20:11,"645 Jefferson St, Atlanta, GA 30301" +297936,USB-C Charging Cable,1,11.95,11/12/19 20:32,"292 Main St, Austin, TX 73301" +297937,27in FHD Monitor,1,149.99,11/21/19 20:49,"882 North St, San Francisco, CA 94016" +297938,AA Batteries (4-pack),1,3.84,11/10/19 22:35,"305 11th St, Boston, MA 02215" +297939,Apple Airpods Headphones,1,150,11/08/19 17:28,"798 Park St, Los Angeles, CA 90001" +297940,AAA Batteries (4-pack),1,2.99,11/06/19 15:01,"114 11th St, San Francisco, CA 94016" +297941,Bose SoundSport Headphones,1,99.99,11/08/19 21:16,"910 Church St, San Francisco, CA 94016" +297942,27in 4K Gaming Monitor,1,389.99,11/04/19 07:53,"466 West St, Boston, MA 02215" +297943,27in FHD Monitor,1,149.99,11/26/19 20:12,"29 Church St, Dallas, TX 75001" +297944,Flatscreen TV,1,300,11/27/19 20:39,"740 Madison St, Boston, MA 02215" +297945,Apple Airpods Headphones,1,150,11/01/19 19:41,"344 Lakeview St, Austin, TX 73301" +297946,AAA Batteries (4-pack),2,2.99,11/20/19 19:58,"355 7th St, San Francisco, CA 94016" +297947,27in FHD Monitor,1,149.99,11/24/19 15:34,"293 Jackson St, Boston, MA 02215" +297948,Bose SoundSport Headphones,1,99.99,11/16/19 02:30,"401 8th St, Los Angeles, CA 90001" +297949,Google Phone,1,600,11/04/19 19:41,"781 South St, Boston, MA 02215" +297950,34in Ultrawide Monitor,1,379.99,11/03/19 09:20,"500 Meadow St, Dallas, TX 75001" +297951,Bose SoundSport Headphones,1,99.99,11/16/19 23:30,"336 Dogwood St, San Francisco, CA 94016" +297952,27in FHD Monitor,1,149.99,11/19/19 23:40,"607 Ridge St, Boston, MA 02215" +297953,AAA Batteries (4-pack),1,2.99,11/05/19 21:21,"746 Jefferson St, New York City, NY 10001" +297954,Bose SoundSport Headphones,1,99.99,11/21/19 15:15,"452 Dogwood St, Dallas, TX 75001" +297955,USB-C Charging Cable,1,11.95,11/20/19 19:52,"528 North St, Seattle, WA 98101" +297956,Lightning Charging Cable,1,14.95,11/29/19 09:53,"917 North St, Austin, TX 73301" +297957,LG Washing Machine,1,600.0,11/25/19 02:02,"354 Maple St, New York City, NY 10001" +297958,Bose SoundSport Headphones,1,99.99,11/25/19 09:19,"314 1st St, San Francisco, CA 94016" +297959,AAA Batteries (4-pack),1,2.99,11/12/19 21:19,"851 14th St, San Francisco, CA 94016" +297960,AAA Batteries (4-pack),1,2.99,11/16/19 14:07,"687 Dogwood St, Dallas, TX 75001" +297961,27in FHD Monitor,1,149.99,11/12/19 17:53,"606 West St, San Francisco, CA 94016" +297962,Wired Headphones,1,11.99,11/06/19 09:58,"731 Main St, Los Angeles, CA 90001" +297963,Lightning Charging Cable,1,14.95,11/06/19 12:29,"465 7th St, Portland, OR 97035" +297964,AAA Batteries (4-pack),1,2.99,11/29/19 21:20,"293 Hill St, San Francisco, CA 94016" +297965,USB-C Charging Cable,1,11.95,12/01/19 01:39,"252 Lakeview St, Dallas, TX 75001" +297966,AAA Batteries (4-pack),2,2.99,11/28/19 13:46,"509 Wilson St, Dallas, TX 75001" +297967,Wired Headphones,1,11.99,11/18/19 14:53,"783 Willow St, Seattle, WA 98101" +297968,Flatscreen TV,1,300,11/13/19 15:22,"195 8th St, Austin, TX 73301" +297969,Macbook Pro Laptop,1,1700,11/20/19 13:48,"673 Chestnut St, Los Angeles, CA 90001" +297970,AAA Batteries (4-pack),1,2.99,11/18/19 15:49,"527 Walnut St, New York City, NY 10001" +297971,USB-C Charging Cable,1,11.95,11/23/19 22:05,"791 6th St, San Francisco, CA 94016" +297972,Flatscreen TV,1,300,11/05/19 23:22,"194 10th St, Los Angeles, CA 90001" +297973,Wired Headphones,1,11.99,11/12/19 21:07,"485 Wilson St, Boston, MA 02215" +297974,Bose SoundSport Headphones,1,99.99,11/07/19 22:54,"431 South St, Austin, TX 73301" +297975,Apple Airpods Headphones,1,150,11/10/19 15:09,"514 Wilson St, San Francisco, CA 94016" +297976,Apple Airpods Headphones,1,150,11/15/19 11:36,"480 Center St, Los Angeles, CA 90001" +297977,USB-C Charging Cable,1,11.95,11/20/19 11:53,"592 Chestnut St, Los Angeles, CA 90001" +297978,20in Monitor,1,109.99,11/07/19 09:57,"299 Adams St, Boston, MA 02215" +297979,20in Monitor,2,109.99,11/03/19 15:31,"927 Dogwood St, New York City, NY 10001" +297980,Lightning Charging Cable,1,14.95,11/28/19 12:50,"718 5th St, San Francisco, CA 94016" +297981,Wired Headphones,2,11.99,11/06/19 17:18,"396 9th St, Los Angeles, CA 90001" +297982,AAA Batteries (4-pack),2,2.99,11/01/19 15:01,"793 Park St, Portland, OR 97035" +297983,USB-C Charging Cable,1,11.95,11/25/19 09:35,"150 13th St, San Francisco, CA 94016" +297984,iPhone,1,700,11/27/19 22:51,"390 Washington St, New York City, NY 10001" +297985,AAA Batteries (4-pack),1,2.99,11/09/19 14:51,"496 Wilson St, New York City, NY 10001" +297986,Flatscreen TV,1,300,11/29/19 12:10,"688 Cedar St, Boston, MA 02215" +297987,Flatscreen TV,1,300,11/30/19 15:46,"4 Park St, San Francisco, CA 94016" +297988,Vareebadd Phone,1,400,11/11/19 16:43,"934 Ridge St, Seattle, WA 98101" +297989,Wired Headphones,1,11.99,11/01/19 14:35,"396 Dogwood St, San Francisco, CA 94016" +297990,20in Monitor,1,109.99,11/26/19 20:52,"718 Elm St, Atlanta, GA 30301" +297991,USB-C Charging Cable,1,11.95,11/20/19 12:16,"60 Walnut St, San Francisco, CA 94016" +297992,Apple Airpods Headphones,1,150,11/24/19 13:50,"589 1st St, Portland, OR 97035" +297993,27in FHD Monitor,1,149.99,11/11/19 08:08,"268 Sunset St, San Francisco, CA 94016" +297994,Wired Headphones,1,11.99,11/17/19 10:12,"807 9th St, Boston, MA 02215" +297995,USB-C Charging Cable,1,11.95,11/02/19 11:35,"35 13th St, Los Angeles, CA 90001" +297996,34in Ultrawide Monitor,1,379.99,11/19/19 16:14,"809 Hickory St, Boston, MA 02215" +297997,AAA Batteries (4-pack),1,2.99,11/21/19 10:33,"224 South St, Los Angeles, CA 90001" +297998,USB-C Charging Cable,2,11.95,11/03/19 19:56,"469 Chestnut St, Portland, OR 97035" +297999,27in 4K Gaming Monitor,1,389.99,11/19/19 22:10,"308 Hickory St, Boston, MA 02215" +298000,AAA Batteries (4-pack),2,2.99,11/05/19 20:09,"553 Pine St, Los Angeles, CA 90001" +298001,ThinkPad Laptop,1,999.99,11/29/19 07:36,"119 4th St, Boston, MA 02215" +298002,Lightning Charging Cable,1,14.95,11/20/19 23:13,"193 8th St, Boston, MA 02215" +298003,AAA Batteries (4-pack),4,2.99,11/19/19 10:35,"497 Forest St, San Francisco, CA 94016" +298004,20in Monitor,1,109.99,11/23/19 16:25,"457 Madison St, Boston, MA 02215" +298005,Bose SoundSport Headphones,1,99.99,11/11/19 17:13,"628 12th St, Seattle, WA 98101" +298006,Wired Headphones,1,11.99,11/04/19 13:27,"587 13th St, San Francisco, CA 94016" +298007,27in FHD Monitor,1,149.99,11/08/19 20:41,"126 Main St, San Francisco, CA 94016" +298007,Lightning Charging Cable,2,14.95,11/08/19 20:41,"126 Main St, San Francisco, CA 94016" +298008,USB-C Charging Cable,1,11.95,11/03/19 00:07,"413 North St, New York City, NY 10001" +298009,27in FHD Monitor,1,149.99,11/15/19 14:36,"807 Forest St, Los Angeles, CA 90001" +298010,Apple Airpods Headphones,1,150,11/10/19 08:23,"671 Lake St, Los Angeles, CA 90001" +298011,Apple Airpods Headphones,1,150,11/06/19 10:52,"371 Dogwood St, San Francisco, CA 94016" +298012,USB-C Charging Cable,2,11.95,11/10/19 05:39,"792 5th St, Dallas, TX 75001" +298013,Vareebadd Phone,1,400,11/18/19 23:15,"556 8th St, Seattle, WA 98101" +298013,Wired Headphones,1,11.99,11/18/19 23:15,"556 8th St, Seattle, WA 98101" +298014,USB-C Charging Cable,2,11.95,11/28/19 12:10,"163 7th St, San Francisco, CA 94016" +298015,USB-C Charging Cable,1,11.95,11/15/19 18:09,"375 Chestnut St, Seattle, WA 98101" +298015,AA Batteries (4-pack),2,3.84,11/15/19 18:09,"375 Chestnut St, Seattle, WA 98101" +298016,Wired Headphones,1,11.99,11/13/19 17:25,"865 13th St, Seattle, WA 98101" +298017,Lightning Charging Cable,1,14.95,11/29/19 22:05,"969 Highland St, San Francisco, CA 94016" +298017,iPhone,1,700,11/29/19 22:05,"969 Highland St, San Francisco, CA 94016" +298018,27in FHD Monitor,1,149.99,11/14/19 22:54,"564 8th St, San Francisco, CA 94016" +298019,Apple Airpods Headphones,1,150,11/01/19 22:41,"736 1st St, Boston, MA 02215" +298020,Apple Airpods Headphones,1,150,11/12/19 18:08,"101 Main St, Boston, MA 02215" +298021,Wired Headphones,1,11.99,11/17/19 07:55,"642 Main St, San Francisco, CA 94016" +298022,iPhone,1,700,11/30/19 10:11,"877 Adams St, San Francisco, CA 94016" +298023,AAA Batteries (4-pack),1,2.99,11/09/19 22:24,"609 Forest St, Boston, MA 02215" +298024,USB-C Charging Cable,1,11.95,11/15/19 04:09,"590 Jackson St, Austin, TX 73301" +298025,Apple Airpods Headphones,1,150,11/17/19 20:26,"986 Spruce St, Los Angeles, CA 90001" +298026,AA Batteries (4-pack),1,3.84,11/05/19 22:04,"898 7th St, Seattle, WA 98101" +298027,34in Ultrawide Monitor,1,379.99,11/04/19 06:54,"639 Lake St, Seattle, WA 98101" +298028,USB-C Charging Cable,1,11.95,11/21/19 12:46,"213 South St, New York City, NY 10001" +298029,Macbook Pro Laptop,1,1700,11/30/19 18:17,"503 6th St, New York City, NY 10001" +298030,27in FHD Monitor,1,149.99,11/29/19 18:48,"422 Lincoln St, Atlanta, GA 30301" +298030,AAA Batteries (4-pack),1,2.99,11/29/19 18:48,"422 Lincoln St, Atlanta, GA 30301" +298031,AAA Batteries (4-pack),1,2.99,11/18/19 21:23,"774 10th St, San Francisco, CA 94016" +298032,AA Batteries (4-pack),1,3.84,11/03/19 18:46,"763 Elm St, Los Angeles, CA 90001" +298032,Apple Airpods Headphones,1,150,11/03/19 18:46,"763 Elm St, Los Angeles, CA 90001" +298033,Lightning Charging Cable,1,14.95,11/09/19 10:05,"237 10th St, Portland, OR 97035" +298034,Bose SoundSport Headphones,1,99.99,11/29/19 21:29,"821 Hickory St, New York City, NY 10001" +298035,27in FHD Monitor,1,149.99,11/13/19 17:35,"466 Willow St, San Francisco, CA 94016" +298036,Wired Headphones,1,11.99,11/16/19 12:25,"610 Hickory St, San Francisco, CA 94016" +298037,34in Ultrawide Monitor,1,379.99,11/27/19 21:07,"862 11th St, San Francisco, CA 94016" +298038,34in Ultrawide Monitor,1,379.99,11/29/19 17:48,"515 Meadow St, New York City, NY 10001" +298039,AA Batteries (4-pack),1,3.84,11/01/19 11:49,"605 West St, San Francisco, CA 94016" +298040,20in Monitor,1,109.99,11/26/19 22:40,"236 River St, New York City, NY 10001" +298041,Lightning Charging Cable,1,14.95,11/25/19 18:36,"7 Hickory St, New York City, NY 10001" +298042,USB-C Charging Cable,1,11.95,11/23/19 19:17,"454 Forest St, Seattle, WA 98101" +298043,Lightning Charging Cable,2,14.95,11/02/19 03:24,"209 14th St, Los Angeles, CA 90001" +298044,USB-C Charging Cable,1,11.95,11/05/19 18:24,"418 North St, Boston, MA 02215" +298045,iPhone,1,700,11/21/19 10:48,"236 Pine St, New York City, NY 10001" +298046,Apple Airpods Headphones,1,150,11/14/19 00:00,"303 South St, Austin, TX 73301" +298047,27in FHD Monitor,1,149.99,11/22/19 23:16,"553 River St, Los Angeles, CA 90001" +298048,Wired Headphones,1,11.99,11/11/19 10:48,"262 South St, Los Angeles, CA 90001" +298049,Wired Headphones,1,11.99,11/05/19 07:51,"164 Hill St, New York City, NY 10001" +298050,Lightning Charging Cable,1,14.95,11/25/19 12:05,"468 Jefferson St, Los Angeles, CA 90001" +298051,Lightning Charging Cable,2,14.95,11/14/19 20:25,"569 10th St, New York City, NY 10001" +298052,Apple Airpods Headphones,1,150,11/21/19 11:43,"80 Willow St, New York City, NY 10001" +298053,ThinkPad Laptop,1,999.99,11/25/19 17:55,"60 Lakeview St, Dallas, TX 75001" +298054,Google Phone,1,600,11/06/19 21:00,"285 1st St, Dallas, TX 75001" +298054,USB-C Charging Cable,1,11.95,11/06/19 21:00,"285 1st St, Dallas, TX 75001" +298055,27in 4K Gaming Monitor,1,389.99,11/28/19 19:08,"352 Cedar St, Dallas, TX 75001" +298056,Bose SoundSport Headphones,1,99.99,11/23/19 23:48,"273 Sunset St, Atlanta, GA 30301" +298057,AA Batteries (4-pack),1,3.84,11/25/19 01:53,"218 Forest St, Dallas, TX 75001" +298058,Apple Airpods Headphones,1,150,11/18/19 11:57,"439 Willow St, Boston, MA 02215" +298059,USB-C Charging Cable,1,11.95,11/29/19 15:21,"303 Main St, New York City, NY 10001" +298060,Wired Headphones,1,11.99,11/23/19 19:17,"682 Hill St, San Francisco, CA 94016" +298061,USB-C Charging Cable,1,11.95,11/28/19 16:21,"70 Walnut St, San Francisco, CA 94016" +298062,34in Ultrawide Monitor,1,379.99,11/12/19 17:18,"253 11th St, San Francisco, CA 94016" +298063,AA Batteries (4-pack),2,3.84,11/19/19 01:53,"728 Walnut St, Seattle, WA 98101" +298064,Apple Airpods Headphones,1,150,11/05/19 06:24,"467 Forest St, Los Angeles, CA 90001" +298065,Lightning Charging Cable,1,14.95,11/09/19 05:32,"395 1st St, San Francisco, CA 94016" +298066,AA Batteries (4-pack),1,3.84,11/03/19 17:57,"644 Lincoln St, San Francisco, CA 94016" +298067,AAA Batteries (4-pack),1,2.99,11/09/19 21:06,"80 12th St, Boston, MA 02215" +298068,USB-C Charging Cable,1,11.95,11/30/19 20:29,"558 Johnson St, Los Angeles, CA 90001" +298069,iPhone,1,700,11/04/19 21:20,"464 South St, Dallas, TX 75001" +298070,Flatscreen TV,1,300,11/07/19 01:36,"419 Hill St, Austin, TX 73301" +298071,27in FHD Monitor,1,149.99,11/26/19 18:58,"805 Forest St, Los Angeles, CA 90001" +298072,Flatscreen TV,1,300,11/15/19 20:37,"542 Washington St, San Francisco, CA 94016" +298073,27in FHD Monitor,1,149.99,11/24/19 20:01,"771 Highland St, Seattle, WA 98101" +298074,AAA Batteries (4-pack),1,2.99,11/15/19 09:23,"249 Adams St, Los Angeles, CA 90001" +298075,AAA Batteries (4-pack),1,2.99,11/04/19 16:32,"198 Jackson St, Boston, MA 02215" +298076,Lightning Charging Cable,1,14.95,11/29/19 11:23,"830 Willow St, Los Angeles, CA 90001" +298077,Lightning Charging Cable,3,14.95,11/15/19 12:49,"638 Walnut St, Atlanta, GA 30301" +298078,AA Batteries (4-pack),1,3.84,11/18/19 10:16,"540 9th St, Seattle, WA 98101" +298079,iPhone,1,700,11/11/19 18:19,"395 7th St, Boston, MA 02215" +298080,Lightning Charging Cable,1,14.95,11/01/19 21:08,"156 6th St, San Francisco, CA 94016" +298081,Lightning Charging Cable,1,14.95,11/14/19 20:30,"80 10th St, San Francisco, CA 94016" +298082,Wired Headphones,1,11.99,11/08/19 18:44,"591 Hill St, Portland, OR 97035" +298083,AA Batteries (4-pack),2,3.84,11/08/19 21:08,"725 Lake St, New York City, NY 10001" +298084,Google Phone,1,600,11/07/19 18:19,"542 West St, Portland, ME 04101" +298085,USB-C Charging Cable,1,11.95,11/30/19 20:32,"975 Forest St, Portland, OR 97035" +298086,Wired Headphones,1,11.99,11/22/19 12:45,"682 Walnut St, San Francisco, CA 94016" +298087,27in 4K Gaming Monitor,1,389.99,11/01/19 15:55,"246 12th St, San Francisco, CA 94016" +298088,AA Batteries (4-pack),1,3.84,11/16/19 07:11,"804 South St, Austin, TX 73301" +298089,Bose SoundSport Headphones,1,99.99,11/13/19 10:08,"299 Madison St, San Francisco, CA 94016" +298090,Lightning Charging Cable,1,14.95,11/18/19 10:43,"969 Pine St, Dallas, TX 75001" +298091,Google Phone,1,600,11/02/19 10:36,"416 River St, New York City, NY 10001" +298092,Apple Airpods Headphones,1,150,11/25/19 14:06,"581 Cherry St, San Francisco, CA 94016" +298093,Bose SoundSport Headphones,1,99.99,11/22/19 13:03,"114 13th St, Los Angeles, CA 90001" +298094,Bose SoundSport Headphones,1,99.99,11/06/19 15:04,"282 West St, Seattle, WA 98101" +298095,iPhone,1,700,11/24/19 14:57,"124 10th St, Los Angeles, CA 90001" +298095,Wired Headphones,1,11.99,11/24/19 14:57,"124 10th St, Los Angeles, CA 90001" +298096,AAA Batteries (4-pack),1,2.99,11/20/19 12:15,"229 6th St, San Francisco, CA 94016" +298097,AAA Batteries (4-pack),3,2.99,11/30/19 17:40,"827 Madison St, San Francisco, CA 94016" +298098,AAA Batteries (4-pack),2,2.99,11/10/19 17:39,"849 Dogwood St, Atlanta, GA 30301" +298099,AA Batteries (4-pack),2,3.84,11/24/19 12:56,"855 Spruce St, Los Angeles, CA 90001" +298100,AA Batteries (4-pack),1,3.84,11/25/19 14:41,"514 Dogwood St, Los Angeles, CA 90001" +298101,Wired Headphones,2,11.99,11/25/19 09:41,"827 Walnut St, San Francisco, CA 94016" +298102,Apple Airpods Headphones,1,150,11/15/19 18:07,"465 Chestnut St, Los Angeles, CA 90001" +298103,Lightning Charging Cable,1,14.95,11/17/19 09:27,"202 Hickory St, Los Angeles, CA 90001" +298104,34in Ultrawide Monitor,1,379.99,12/01/19 00:03,"633 Pine St, Seattle, WA 98101" +298105,34in Ultrawide Monitor,1,379.99,11/18/19 12:48,"676 Walnut St, Atlanta, GA 30301" +298106,USB-C Charging Cable,2,11.95,11/19/19 00:37,"252 11th St, San Francisco, CA 94016" +298107,iPhone,1,700,11/04/19 17:54,"6 8th St, New York City, NY 10001" +298107,Lightning Charging Cable,1,14.95,11/04/19 17:54,"6 8th St, New York City, NY 10001" +298108,27in 4K Gaming Monitor,1,389.99,11/08/19 08:46,"933 Forest St, Boston, MA 02215" +298109,Google Phone,1,600,11/01/19 08:57,"155 Main St, San Francisco, CA 94016" +298110,USB-C Charging Cable,1,11.95,11/08/19 12:55,"728 Meadow St, Boston, MA 02215" +298111,USB-C Charging Cable,1,11.95,11/01/19 20:49,"594 Madison St, Los Angeles, CA 90001" +298112,Apple Airpods Headphones,1,150,11/14/19 11:41,"100 13th St, New York City, NY 10001" +298113,AA Batteries (4-pack),2,3.84,11/16/19 19:31,"861 Chestnut St, Seattle, WA 98101" +298114,USB-C Charging Cable,1,11.95,11/09/19 20:32,"836 13th St, San Francisco, CA 94016" +298115,Wired Headphones,2,11.99,11/12/19 18:20,"382 6th St, Seattle, WA 98101" +298116,Lightning Charging Cable,1,14.95,11/09/19 10:00,"597 Forest St, Portland, OR 97035" +298117,34in Ultrawide Monitor,1,379.99,11/02/19 16:06,"222 Church St, Los Angeles, CA 90001" +298118,Wired Headphones,1,11.99,11/11/19 11:54,"560 Madison St, Boston, MA 02215" +298119,AAA Batteries (4-pack),1,2.99,11/19/19 12:51,"862 13th St, San Francisco, CA 94016" +298120,ThinkPad Laptop,1,999.99,11/29/19 12:09,"314 Lake St, Dallas, TX 75001" +298121,AA Batteries (4-pack),1,3.84,11/11/19 20:03,"787 Johnson St, Portland, OR 97035" +298122,AA Batteries (4-pack),1,3.84,11/26/19 00:37,"833 4th St, Atlanta, GA 30301" +298123,USB-C Charging Cable,1,11.95,11/29/19 22:30,"499 6th St, New York City, NY 10001" +298124,USB-C Charging Cable,1,11.95,11/12/19 15:11,"660 13th St, Dallas, TX 75001" +298125,USB-C Charging Cable,1,11.95,11/08/19 13:41,"209 South St, San Francisco, CA 94016" +298126,Bose SoundSport Headphones,1,99.99,11/09/19 22:50,"728 Adams St, Atlanta, GA 30301" +298127,27in FHD Monitor,1,149.99,11/07/19 09:57,"859 5th St, Los Angeles, CA 90001" +298128,20in Monitor,1,109.99,11/20/19 20:58,"683 Elm St, Los Angeles, CA 90001" +298129,27in FHD Monitor,1,149.99,11/21/19 20:51,"771 Highland St, Portland, OR 97035" +298130,AAA Batteries (4-pack),1,2.99,11/25/19 18:33,"764 1st St, New York City, NY 10001" +298131,Lightning Charging Cable,1,14.95,11/14/19 01:14,"183 7th St, Los Angeles, CA 90001" +298132,Vareebadd Phone,1,400,11/30/19 14:26,"323 South St, Atlanta, GA 30301" +298133,AAA Batteries (4-pack),2,2.99,11/04/19 19:24,"664 Wilson St, Boston, MA 02215" +298134,AAA Batteries (4-pack),1,2.99,11/09/19 16:31,"234 Church St, Seattle, WA 98101" +298135,ThinkPad Laptop,1,999.99,11/16/19 13:58,"971 Dogwood St, Atlanta, GA 30301" +298136,Google Phone,1,600,11/23/19 19:19,"974 Johnson St, Atlanta, GA 30301" +298137,AA Batteries (4-pack),1,3.84,11/17/19 20:39,"949 Main St, Los Angeles, CA 90001" +298138,Vareebadd Phone,1,400,11/13/19 20:08,"526 Meadow St, Boston, MA 02215" +298138,USB-C Charging Cable,1,11.95,11/13/19 20:08,"526 Meadow St, Boston, MA 02215" +298139,Lightning Charging Cable,1,14.95,11/25/19 15:12,"973 8th St, Atlanta, GA 30301" +298140,Flatscreen TV,1,300,11/27/19 16:22,"374 9th St, Portland, OR 97035" +298141,AA Batteries (4-pack),1,3.84,11/25/19 16:54,"575 Johnson St, Austin, TX 73301" +298142,AA Batteries (4-pack),1,3.84,11/10/19 04:52,"1 Jackson St, San Francisco, CA 94016" +298143,34in Ultrawide Monitor,1,379.99,11/04/19 13:27,"447 Wilson St, San Francisco, CA 94016" +298144,27in FHD Monitor,1,149.99,11/14/19 22:14,"209 Maple St, Dallas, TX 75001" +298145,iPhone,1,700,11/14/19 22:21,"615 Cedar St, Boston, MA 02215" +298146,Bose SoundSport Headphones,1,99.99,11/19/19 12:41,"805 Meadow St, San Francisco, CA 94016" +298147,27in FHD Monitor,1,149.99,11/29/19 13:43,"422 8th St, Austin, TX 73301" +298148,Lightning Charging Cable,1,14.95,11/24/19 16:38,"236 Meadow St, San Francisco, CA 94016" +298149,Lightning Charging Cable,1,14.95,11/18/19 21:47,"223 Chestnut St, Dallas, TX 75001" +298150,Wired Headphones,1,11.99,11/09/19 20:18,"930 Center St, Atlanta, GA 30301" +298151,AAA Batteries (4-pack),1,2.99,11/01/19 16:29,"455 Johnson St, Los Angeles, CA 90001" +298152,AA Batteries (4-pack),1,3.84,11/01/19 11:22,"881 11th St, Dallas, TX 75001" +298153,Wired Headphones,1,11.99,11/09/19 11:41,"490 Hickory St, Boston, MA 02215" +298154,Bose SoundSport Headphones,1,99.99,11/27/19 14:56,"997 Spruce St, San Francisco, CA 94016" +298155,34in Ultrawide Monitor,1,379.99,11/19/19 14:13,"266 4th St, Atlanta, GA 30301" +298156,34in Ultrawide Monitor,1,379.99,11/22/19 12:41,"842 4th St, Atlanta, GA 30301" +298157,Wired Headphones,1,11.99,11/13/19 10:39,"470 Maple St, San Francisco, CA 94016" +298158,ThinkPad Laptop,1,999.99,11/07/19 15:10,"600 Park St, New York City, NY 10001" +298159,Lightning Charging Cable,1,14.95,11/14/19 21:34,"501 Madison St, Dallas, TX 75001" +298160,AAA Batteries (4-pack),1,2.99,11/27/19 20:59,"332 Park St, Portland, OR 97035" +298161,27in FHD Monitor,1,149.99,11/27/19 12:23,"295 1st St, Boston, MA 02215" +298162,AA Batteries (4-pack),1,3.84,11/01/19 16:36,"998 Lake St, San Francisco, CA 94016" +298163,AA Batteries (4-pack),1,3.84,11/27/19 09:32,"301 Cherry St, New York City, NY 10001" +298164,27in FHD Monitor,1,149.99,11/09/19 17:45,"84 Center St, San Francisco, CA 94016" +298165,LG Washing Machine,1,600.0,11/06/19 17:52,"671 Main St, New York City, NY 10001" +298166,AA Batteries (4-pack),1,3.84,11/09/19 10:37,"161 Elm St, Los Angeles, CA 90001" +298167,Lightning Charging Cable,1,14.95,11/08/19 11:02,"781 Lincoln St, San Francisco, CA 94016" +298168,Wired Headphones,1,11.99,11/14/19 14:52,"692 1st St, Los Angeles, CA 90001" +298169,USB-C Charging Cable,1,11.95,11/24/19 12:08,"292 9th St, Los Angeles, CA 90001" +298170,AA Batteries (4-pack),1,3.84,11/28/19 17:13,"669 Sunset St, Boston, MA 02215" +298171,Wired Headphones,1,11.99,11/11/19 18:16,"812 Madison St, San Francisco, CA 94016" +298172,AAA Batteries (4-pack),1,2.99,11/27/19 00:48,"196 Main St, Los Angeles, CA 90001" +298173,AAA Batteries (4-pack),1,2.99,11/21/19 10:35,"810 Lake St, San Francisco, CA 94016" +298174,34in Ultrawide Monitor,1,379.99,11/20/19 12:22,"663 Main St, New York City, NY 10001" +298175,Wired Headphones,1,11.99,11/01/19 13:54,"953 Elm St, Atlanta, GA 30301" +298176,AAA Batteries (4-pack),1,2.99,11/30/19 23:38,"627 River St, Seattle, WA 98101" +298177,34in Ultrawide Monitor,1,379.99,11/08/19 18:01,"975 Elm St, Los Angeles, CA 90001" +298178,USB-C Charging Cable,1,11.95,11/19/19 18:39,"30 4th St, New York City, NY 10001" +298179,34in Ultrawide Monitor,1,379.99,11/06/19 14:20,"292 Washington St, Seattle, WA 98101" +298180,AAA Batteries (4-pack),3,2.99,11/03/19 00:27,"244 Wilson St, San Francisco, CA 94016" +298181,AAA Batteries (4-pack),2,2.99,11/05/19 23:33,"924 Dogwood St, Atlanta, GA 30301" +298182,Bose SoundSport Headphones,1,99.99,11/01/19 08:52,"602 7th St, San Francisco, CA 94016" +298183,Lightning Charging Cable,1,14.95,11/17/19 12:19,"465 Spruce St, Seattle, WA 98101" +298184,iPhone,1,700,11/05/19 11:29,"299 Jackson St, Portland, OR 97035" +298185,Lightning Charging Cable,1,14.95,11/21/19 11:51,"109 Washington St, Boston, MA 02215" +298186,Flatscreen TV,1,300,11/03/19 11:39,"576 Lakeview St, Los Angeles, CA 90001" +298187,27in FHD Monitor,1,149.99,11/23/19 13:15,"521 Madison St, Seattle, WA 98101" +298188,Wired Headphones,2,11.99,11/13/19 07:55,"341 11th St, Austin, TX 73301" +298189,AAA Batteries (4-pack),2,2.99,11/26/19 16:34,"71 South St, Los Angeles, CA 90001" +298190,Google Phone,1,600,11/11/19 14:59,"133 Lakeview St, Atlanta, GA 30301" +298191,AA Batteries (4-pack),4,3.84,11/20/19 21:06,"617 4th St, Seattle, WA 98101" +298192,Bose SoundSport Headphones,1,99.99,11/19/19 23:22,"985 Center St, Portland, OR 97035" +298193,USB-C Charging Cable,1,11.95,11/23/19 23:09,"406 9th St, Seattle, WA 98101" +298194,USB-C Charging Cable,1,11.95,11/01/19 22:47,"600 Park St, San Francisco, CA 94016" +298195,AAA Batteries (4-pack),1,2.99,11/22/19 16:42,"935 North St, San Francisco, CA 94016" +298196,USB-C Charging Cable,1,11.95,11/18/19 13:59,"40 8th St, San Francisco, CA 94016" +298197,AAA Batteries (4-pack),1,2.99,11/11/19 11:15,"941 Forest St, Atlanta, GA 30301" +298198,Flatscreen TV,1,300,11/28/19 20:12,"927 Highland St, Dallas, TX 75001" +298199,Wired Headphones,1,11.99,11/12/19 19:11,"690 Forest St, New York City, NY 10001" +298200,Google Phone,1,600,11/13/19 13:11,"10 Lincoln St, Atlanta, GA 30301" +298201,Apple Airpods Headphones,1,150,11/30/19 10:12,"601 Spruce St, Los Angeles, CA 90001" +298202,Lightning Charging Cable,1,14.95,11/10/19 15:05,"756 Madison St, San Francisco, CA 94016" +298203,Lightning Charging Cable,1,14.95,11/10/19 14:28,"587 Highland St, Los Angeles, CA 90001" +298204,USB-C Charging Cable,1,11.95,11/07/19 13:02,"497 South St, San Francisco, CA 94016" +298205,Wired Headphones,1,11.99,11/27/19 18:39,"648 Meadow St, San Francisco, CA 94016" +298206,Apple Airpods Headphones,1,150,11/12/19 19:15,"660 Main St, Seattle, WA 98101" +298207,34in Ultrawide Monitor,1,379.99,11/10/19 08:57,"938 Walnut St, San Francisco, CA 94016" +298208,Apple Airpods Headphones,1,150,11/05/19 20:02,"330 Sunset St, Austin, TX 73301" +298209,Wired Headphones,1,11.99,11/15/19 13:57,"797 Sunset St, Dallas, TX 75001" +298210,USB-C Charging Cable,1,11.95,11/20/19 09:06,"148 Wilson St, Los Angeles, CA 90001" +298211,Apple Airpods Headphones,1,150,11/06/19 14:23,"493 7th St, Los Angeles, CA 90001" +298212,Google Phone,1,600,11/12/19 22:33,"186 Sunset St, New York City, NY 10001" +298213,Macbook Pro Laptop,1,1700,11/29/19 19:53,"273 Lakeview St, Los Angeles, CA 90001" +298214,AA Batteries (4-pack),2,3.84,11/22/19 16:30,"689 Walnut St, New York City, NY 10001" +298215,Apple Airpods Headphones,1,150,11/29/19 09:59,"920 Walnut St, Los Angeles, CA 90001" +298216,ThinkPad Laptop,1,999.99,11/24/19 12:43,"487 13th St, Atlanta, GA 30301" +298217,Wired Headphones,1,11.99,11/27/19 17:17,"388 West St, Portland, OR 97035" +298218,27in FHD Monitor,1,149.99,11/05/19 10:38,"264 Jefferson St, San Francisco, CA 94016" +298219,AA Batteries (4-pack),1,3.84,11/08/19 21:02,"678 Park St, Atlanta, GA 30301" +298220,Bose SoundSport Headphones,1,99.99,11/18/19 17:54,"977 9th St, Los Angeles, CA 90001" +298221,Lightning Charging Cable,1,14.95,11/26/19 08:01,"447 Washington St, Austin, TX 73301" +298222,USB-C Charging Cable,1,11.95,11/04/19 15:12,"622 Lake St, Portland, OR 97035" +298223,USB-C Charging Cable,1,11.95,11/04/19 18:24,"613 Spruce St, Los Angeles, CA 90001" +298224,USB-C Charging Cable,1,11.95,11/14/19 09:42,"869 Willow St, San Francisco, CA 94016" +298225,AA Batteries (4-pack),1,3.84,11/14/19 09:03,"483 8th St, Boston, MA 02215" +298226,20in Monitor,1,109.99,11/26/19 17:40,"177 6th St, San Francisco, CA 94016" +298227,Vareebadd Phone,1,400,11/08/19 19:47,"710 West St, Portland, OR 97035" +298228,Bose SoundSport Headphones,1,99.99,11/16/19 18:07,"295 8th St, New York City, NY 10001" +298229,AAA Batteries (4-pack),2,2.99,11/27/19 22:07,"667 Lincoln St, San Francisco, CA 94016" +298230,Apple Airpods Headphones,1,150,11/04/19 00:38,"480 North St, Atlanta, GA 30301" +298231,Wired Headphones,1,11.99,11/28/19 18:59,"617 Main St, Los Angeles, CA 90001" +298232,Apple Airpods Headphones,1,150,11/16/19 08:08,"544 Meadow St, Austin, TX 73301" +298233,34in Ultrawide Monitor,1,379.99,11/23/19 11:01,"378 Elm St, San Francisco, CA 94016" +298234,Lightning Charging Cable,1,14.95,11/11/19 17:21,"903 West St, San Francisco, CA 94016" +298235,AA Batteries (4-pack),2,3.84,11/12/19 21:10,"681 North St, Dallas, TX 75001" +298236,Flatscreen TV,1,300,11/27/19 19:07,"112 Cherry St, Los Angeles, CA 90001" +298237,Bose SoundSport Headphones,1,99.99,11/27/19 14:11,"254 Pine St, Los Angeles, CA 90001" +298238,Wired Headphones,1,11.99,11/24/19 11:13,"89 Dogwood St, San Francisco, CA 94016" +298239,Lightning Charging Cable,1,14.95,11/03/19 08:03,"994 Park St, New York City, NY 10001" +298240,Apple Airpods Headphones,1,150,11/12/19 18:04,"159 Park St, San Francisco, CA 94016" +298241,iPhone,1,700,11/14/19 15:23,"321 Washington St, Austin, TX 73301" +298242,USB-C Charging Cable,1,11.95,11/21/19 08:47,"323 6th St, Atlanta, GA 30301" +298243,Flatscreen TV,1,300,11/15/19 10:22,"64 2nd St, Seattle, WA 98101" +298244,AAA Batteries (4-pack),1,2.99,11/25/19 20:23,"262 Wilson St, Los Angeles, CA 90001" +298245,AA Batteries (4-pack),1,3.84,11/08/19 19:36,"710 Pine St, New York City, NY 10001" +298246,Google Phone,1,600,11/21/19 10:57,"316 West St, San Francisco, CA 94016" +298246,Wired Headphones,1,11.99,11/21/19 10:57,"316 West St, San Francisco, CA 94016" +298247,USB-C Charging Cable,1,11.95,11/24/19 22:34,"675 Cherry St, San Francisco, CA 94016" +298248,Wired Headphones,1,11.99,11/16/19 15:39,"833 Adams St, Austin, TX 73301" +298249,27in 4K Gaming Monitor,1,389.99,11/17/19 13:36,"659 Washington St, Boston, MA 02215" +298250,Apple Airpods Headphones,1,150,11/13/19 08:57,"394 6th St, Portland, OR 97035" +298251,Wired Headphones,1,11.99,11/24/19 10:10,"934 Johnson St, New York City, NY 10001" +298252,Apple Airpods Headphones,1,150,11/24/19 22:36,"96 Main St, Boston, MA 02215" +298253,AAA Batteries (4-pack),3,2.99,11/12/19 09:02,"849 Lincoln St, San Francisco, CA 94016" +298254,AAA Batteries (4-pack),4,2.99,11/01/19 11:02,"676 8th St, Dallas, TX 75001" +298255,Apple Airpods Headphones,1,150,11/12/19 17:54,"351 Lincoln St, Dallas, TX 75001" +298256,Wired Headphones,1,11.99,11/24/19 19:02,"502 Lincoln St, Los Angeles, CA 90001" +298257,Bose SoundSport Headphones,1,99.99,11/22/19 16:21,"691 Lakeview St, New York City, NY 10001" +298258,AA Batteries (4-pack),2,3.84,11/23/19 13:13,"886 Lakeview St, Los Angeles, CA 90001" +298259,27in FHD Monitor,1,149.99,11/05/19 23:14,"377 Center St, New York City, NY 10001" +298260,Lightning Charging Cable,1,14.95,11/28/19 21:20,"371 Pine St, Los Angeles, CA 90001" +298261,Wired Headphones,1,11.99,11/22/19 16:58,"388 Main St, Atlanta, GA 30301" +298262,Bose SoundSport Headphones,1,99.99,11/08/19 20:20,"535 10th St, San Francisco, CA 94016" +298263,Lightning Charging Cable,1,14.95,11/16/19 19:25,"501 Wilson St, Seattle, WA 98101" +298264,USB-C Charging Cable,1,11.95,11/23/19 12:50,"507 14th St, Atlanta, GA 30301" +298265,USB-C Charging Cable,1,11.95,11/08/19 12:24,"707 Forest St, Dallas, TX 75001" +298266,AA Batteries (4-pack),1,3.84,11/07/19 19:49,"712 Cherry St, San Francisco, CA 94016" +298267,AAA Batteries (4-pack),1,2.99,11/28/19 19:52,"307 Hill St, Dallas, TX 75001" +298268,27in 4K Gaming Monitor,1,389.99,11/07/19 10:26,"128 Willow St, San Francisco, CA 94016" +298269,Flatscreen TV,1,300,11/29/19 00:01,"973 South St, Austin, TX 73301" +298270,Lightning Charging Cable,1,14.95,11/03/19 16:22,"258 Cedar St, Dallas, TX 75001" +298271,Wired Headphones,1,11.99,11/20/19 17:42,"467 Chestnut St, Los Angeles, CA 90001" +298272,Bose SoundSport Headphones,1,99.99,11/28/19 16:11,"749 Cedar St, San Francisco, CA 94016" +298273,AAA Batteries (4-pack),2,2.99,11/08/19 16:47,"219 Ridge St, Dallas, TX 75001" +298274,Bose SoundSport Headphones,1,99.99,11/25/19 13:35,"542 Lake St, Los Angeles, CA 90001" +298275,Lightning Charging Cable,1,14.95,11/21/19 18:48,"965 Elm St, Atlanta, GA 30301" +298276,20in Monitor,1,109.99,11/14/19 11:47,"860 Willow St, Austin, TX 73301" +298277,Apple Airpods Headphones,1,150,11/10/19 14:16,"88 Maple St, New York City, NY 10001" +298278,Lightning Charging Cable,1,14.95,11/16/19 11:48,"346 Washington St, Atlanta, GA 30301" +298279,Apple Airpods Headphones,2,150,11/16/19 20:44,"378 10th St, New York City, NY 10001" +298280,Bose SoundSport Headphones,1,99.99,11/12/19 15:10,"254 4th St, San Francisco, CA 94016" +298281,AAA Batteries (4-pack),2,2.99,11/25/19 17:44,"693 12th St, Boston, MA 02215" +298282,Bose SoundSport Headphones,1,99.99,11/12/19 15:28,"512 12th St, San Francisco, CA 94016" +298283,iPhone,1,700,11/06/19 11:59,"144 Willow St, Dallas, TX 75001" +298284,34in Ultrawide Monitor,1,379.99,11/19/19 16:47,"712 Lincoln St, Boston, MA 02215" +298285,AA Batteries (4-pack),3,3.84,11/04/19 12:49,"843 West St, New York City, NY 10001" +298286,AAA Batteries (4-pack),1,2.99,11/05/19 10:37,"480 Maple St, Los Angeles, CA 90001" +298287,Wired Headphones,2,11.99,11/02/19 22:20,"467 Chestnut St, Austin, TX 73301" +298288,AAA Batteries (4-pack),1,2.99,11/06/19 11:04,"862 Center St, Dallas, TX 75001" +298289,27in FHD Monitor,1,149.99,11/05/19 20:14,"623 Adams St, Boston, MA 02215" +298290,Apple Airpods Headphones,1,150,11/11/19 17:23,"815 Dogwood St, Portland, OR 97035" +298291,Apple Airpods Headphones,1,150,11/04/19 12:00,"882 South St, San Francisco, CA 94016" +298292,34in Ultrawide Monitor,1,379.99,11/23/19 13:08,"501 14th St, San Francisco, CA 94016" +298293,AAA Batteries (4-pack),1,2.99,11/09/19 08:31,"954 Walnut St, Los Angeles, CA 90001" +298294,34in Ultrawide Monitor,1,379.99,11/20/19 12:13,"540 Willow St, Dallas, TX 75001" +298295,AA Batteries (4-pack),1,3.84,11/12/19 14:26,"444 Hill St, Los Angeles, CA 90001" +298296,AA Batteries (4-pack),1,3.84,11/09/19 05:56,"427 Forest St, San Francisco, CA 94016" +298297,Bose SoundSport Headphones,1,99.99,11/24/19 22:55,"152 Willow St, New York City, NY 10001" +298298,AAA Batteries (4-pack),3,2.99,11/17/19 15:16,"836 7th St, San Francisco, CA 94016" +298299,Wired Headphones,1,11.99,11/07/19 10:56,"716 Spruce St, Portland, OR 97035" +298300,34in Ultrawide Monitor,1,379.99,11/28/19 14:08,"446 13th St, Dallas, TX 75001" +298300,AAA Batteries (4-pack),2,2.99,11/28/19 14:08,"446 13th St, Dallas, TX 75001" +298301,Lightning Charging Cable,1,14.95,11/04/19 19:07,"116 Lakeview St, Dallas, TX 75001" +298302,USB-C Charging Cable,1,11.95,11/21/19 20:29,"647 Chestnut St, San Francisco, CA 94016" +298303,USB-C Charging Cable,1,11.95,11/23/19 14:46,"394 Forest St, Portland, OR 97035" +298304,Google Phone,1,600,11/17/19 12:59,"114 River St, Portland, OR 97035" +298305,Lightning Charging Cable,1,14.95,11/15/19 19:50,"740 Washington St, Boston, MA 02215" +298306,Bose SoundSport Headphones,1,99.99,11/01/19 12:12,"564 7th St, Los Angeles, CA 90001" +298307,Lightning Charging Cable,1,14.95,11/25/19 15:57,"797 6th St, New York City, NY 10001" +298308,USB-C Charging Cable,1,11.95,11/11/19 14:42,"124 Johnson St, Austin, TX 73301" +298309,Vareebadd Phone,1,400,11/02/19 18:12,"91 Maple St, Portland, ME 04101" +298310,USB-C Charging Cable,1,11.95,11/05/19 13:52,"840 Spruce St, Boston, MA 02215" +298311,AAA Batteries (4-pack),1,2.99,11/09/19 14:40,"300 1st St, Boston, MA 02215" +298312,Wired Headphones,1,11.99,11/29/19 17:01,"17 West St, Boston, MA 02215" +298313,AAA Batteries (4-pack),2,2.99,11/23/19 23:47,"419 Lincoln St, Los Angeles, CA 90001" +298314,AA Batteries (4-pack),2,3.84,11/15/19 23:03,"922 Forest St, San Francisco, CA 94016" +298315,USB-C Charging Cable,1,11.95,11/20/19 10:59,"919 Lake St, Los Angeles, CA 90001" +298316,27in FHD Monitor,1,149.99,11/24/19 09:43,"179 13th St, Los Angeles, CA 90001" +298317,Wired Headphones,1,11.99,11/30/19 11:10,"535 Highland St, Los Angeles, CA 90001" +298318,20in Monitor,1,109.99,11/26/19 15:35,"703 Lake St, Austin, TX 73301" +298319,Google Phone,1,600,11/03/19 16:23,"426 Meadow St, San Francisco, CA 94016" +298320,Flatscreen TV,1,300,11/12/19 21:00,"914 Spruce St, San Francisco, CA 94016" +298321,Apple Airpods Headphones,1,150,11/13/19 09:16,"246 1st St, Dallas, TX 75001" +298322,AA Batteries (4-pack),1,3.84,11/28/19 19:33,"58 Johnson St, Seattle, WA 98101" +298323,Lightning Charging Cable,1,14.95,11/14/19 22:01,"1 Washington St, Boston, MA 02215" +298324,Wired Headphones,2,11.99,11/07/19 12:09,"342 Hill St, Seattle, WA 98101" +298325,Apple Airpods Headphones,1,150,11/05/19 13:26,"739 Sunset St, Portland, OR 97035" +298326,AA Batteries (4-pack),1,3.84,11/24/19 12:55,"743 West St, Dallas, TX 75001" +298327,AA Batteries (4-pack),1,3.84,11/08/19 09:00,"961 Main St, San Francisco, CA 94016" +298328,20in Monitor,1,109.99,11/22/19 16:13,"165 Spruce St, Dallas, TX 75001" +298329,Apple Airpods Headphones,1,150,11/24/19 11:24,"62 Center St, Atlanta, GA 30301" +298330,34in Ultrawide Monitor,1,379.99,11/08/19 16:07,"505 Chestnut St, San Francisco, CA 94016" +298331,USB-C Charging Cable,1,11.95,11/30/19 12:49,"550 Adams St, San Francisco, CA 94016" +298332,Lightning Charging Cable,1,14.95,11/20/19 22:17,"472 Hickory St, Atlanta, GA 30301" +298333,USB-C Charging Cable,3,11.95,11/27/19 19:22,"544 Pine St, San Francisco, CA 94016" +298334,AA Batteries (4-pack),1,3.84,11/20/19 20:23,"724 Lincoln St, Los Angeles, CA 90001" +298335,iPhone,1,700,11/20/19 15:40,"253 7th St, Atlanta, GA 30301" +298336,AAA Batteries (4-pack),1,2.99,11/04/19 14:53,"587 9th St, Seattle, WA 98101" +298337,Bose SoundSport Headphones,1,99.99,11/29/19 10:15,"732 4th St, Portland, ME 04101" +298338,AAA Batteries (4-pack),3,2.99,11/09/19 19:42,"165 Sunset St, Los Angeles, CA 90001" +298339,27in FHD Monitor,1,149.99,11/19/19 19:59,"265 14th St, Los Angeles, CA 90001" +298340,34in Ultrawide Monitor,1,379.99,11/14/19 09:55,"719 North St, Austin, TX 73301" +298341,USB-C Charging Cable,1,11.95,11/21/19 11:04,"338 Madison St, Boston, MA 02215" +298342,AAA Batteries (4-pack),1,2.99,11/16/19 20:44,"767 Lincoln St, San Francisco, CA 94016" +298343,USB-C Charging Cable,1,11.95,11/06/19 07:58,"867 11th St, San Francisco, CA 94016" +298344,AA Batteries (4-pack),1,3.84,11/18/19 12:46,"924 Lake St, Austin, TX 73301" +298345,Lightning Charging Cable,1,14.95,11/16/19 08:53,"655 5th St, Boston, MA 02215" +298346,27in FHD Monitor,1,149.99,11/04/19 00:00,"344 6th St, Atlanta, GA 30301" +298347,AA Batteries (4-pack),1,3.84,11/12/19 17:16,"957 Lake St, New York City, NY 10001" +298348,Lightning Charging Cable,1,14.95,11/26/19 19:23,"330 5th St, San Francisco, CA 94016" +298349,Macbook Pro Laptop,1,1700,11/18/19 21:31,"842 Lake St, Dallas, TX 75001" +298350,Lightning Charging Cable,1,14.95,11/25/19 15:37,"409 Church St, New York City, NY 10001" +298351,20in Monitor,1,109.99,11/01/19 15:34,"809 Pine St, New York City, NY 10001" +298352,AA Batteries (4-pack),2,3.84,11/24/19 20:57,"697 2nd St, Dallas, TX 75001" +298353,27in FHD Monitor,1,149.99,11/19/19 11:57,"935 West St, San Francisco, CA 94016" +298354,27in 4K Gaming Monitor,1,389.99,11/16/19 04:35,"319 North St, Los Angeles, CA 90001" +298355,20in Monitor,1,109.99,11/15/19 19:45,"315 13th St, Los Angeles, CA 90001" +298356,Flatscreen TV,1,300,11/18/19 12:08,"807 Center St, Atlanta, GA 30301" +298357,Google Phone,1,600,11/06/19 21:25,"886 10th St, New York City, NY 10001" +298357,USB-C Charging Cable,1,11.95,11/06/19 21:25,"886 10th St, New York City, NY 10001" +298358,AAA Batteries (4-pack),1,2.99,11/01/19 13:58,"681 Lincoln St, Portland, ME 04101" +298359,Lightning Charging Cable,1,14.95,11/11/19 08:28,"304 9th St, Dallas, TX 75001" +298360,AA Batteries (4-pack),1,3.84,11/25/19 22:14,"236 Walnut St, Atlanta, GA 30301" +298361,Wired Headphones,1,11.99,11/30/19 18:27,"476 Pine St, Portland, OR 97035" +298362,27in 4K Gaming Monitor,1,389.99,11/22/19 21:33,"55 Jackson St, Atlanta, GA 30301" +298363,AAA Batteries (4-pack),1,2.99,11/10/19 12:08,"916 14th St, Los Angeles, CA 90001" +298364,AAA Batteries (4-pack),1,2.99,11/05/19 18:20,"679 Maple St, Los Angeles, CA 90001" +298365,USB-C Charging Cable,2,11.95,11/24/19 17:59,"994 7th St, Austin, TX 73301" +298366,Wired Headphones,1,11.99,11/03/19 21:33,"189 Forest St, Dallas, TX 75001" +298367,AAA Batteries (4-pack),2,2.99,11/12/19 13:14,"34 Ridge St, San Francisco, CA 94016" +298368,34in Ultrawide Monitor,1,379.99,11/18/19 14:23,"344 7th St, Boston, MA 02215" +298369,Bose SoundSport Headphones,1,99.99,11/23/19 22:40,"300 Hill St, Seattle, WA 98101" +298370,iPhone,1,700,11/19/19 17:20,"259 14th St, New York City, NY 10001" +298371,27in 4K Gaming Monitor,1,389.99,11/03/19 22:32,"365 12th St, New York City, NY 10001" +298372,Lightning Charging Cable,1,14.95,11/24/19 14:09,"473 Center St, San Francisco, CA 94016" +298373,AAA Batteries (4-pack),1,2.99,11/29/19 16:11,"442 Cherry St, Seattle, WA 98101" +298374,USB-C Charging Cable,1,11.95,11/25/19 20:09,"45 Dogwood St, San Francisco, CA 94016" +298375,USB-C Charging Cable,1,11.95,11/21/19 13:50,"222 Sunset St, Atlanta, GA 30301" +298376,USB-C Charging Cable,1,11.95,11/18/19 20:13,"934 Spruce St, San Francisco, CA 94016" +298377,iPhone,1,700,11/27/19 18:32,"585 Dogwood St, San Francisco, CA 94016" +298377,Lightning Charging Cable,1,14.95,11/27/19 18:32,"585 Dogwood St, San Francisco, CA 94016" +298378,Bose SoundSport Headphones,1,99.99,11/01/19 20:52,"201 14th St, New York City, NY 10001" +298379,Lightning Charging Cable,2,14.95,11/15/19 10:21,"9 2nd St, San Francisco, CA 94016" +298380,iPhone,1,700,11/22/19 12:05,"481 Hickory St, Portland, ME 04101" +298380,Lightning Charging Cable,1,14.95,11/22/19 12:05,"481 Hickory St, Portland, ME 04101" +298381,AAA Batteries (4-pack),1,2.99,11/07/19 20:02,"933 Meadow St, Austin, TX 73301" +298382,Apple Airpods Headphones,1,150,11/12/19 20:17,"776 North St, Dallas, TX 75001" +298383,Vareebadd Phone,1,400,11/12/19 12:21,"862 Forest St, Dallas, TX 75001" +298384,AA Batteries (4-pack),2,3.84,11/06/19 01:59,"221 Sunset St, Los Angeles, CA 90001" +298385,AA Batteries (4-pack),2,3.84,11/13/19 15:45,"538 Madison St, Portland, OR 97035" +298386,Bose SoundSport Headphones,1,99.99,11/16/19 16:42,"534 Hickory St, San Francisco, CA 94016" +298387,27in 4K Gaming Monitor,1,389.99,11/09/19 20:09,"536 2nd St, Boston, MA 02215" +298388,ThinkPad Laptop,1,999.99,11/03/19 05:53,"786 Jefferson St, San Francisco, CA 94016" +298389,AA Batteries (4-pack),2,3.84,11/17/19 12:56,"200 10th St, Dallas, TX 75001" +298390,LG Dryer,1,600.0,11/07/19 10:24,"697 11th St, San Francisco, CA 94016" +298391,AA Batteries (4-pack),2,3.84,11/09/19 00:00,"556 Madison St, New York City, NY 10001" +298392,27in FHD Monitor,1,149.99,11/10/19 20:12,"712 Washington St, Boston, MA 02215" +298393,AAA Batteries (4-pack),1,2.99,11/18/19 17:23,"621 Main St, San Francisco, CA 94016" +298394,AA Batteries (4-pack),1,3.84,11/10/19 00:27,"990 Main St, Dallas, TX 75001" +298395,AAA Batteries (4-pack),2,2.99,11/25/19 11:00,"262 West St, Dallas, TX 75001" +298396,Wired Headphones,2,11.99,11/01/19 19:09,"472 Park St, Boston, MA 02215" +298397,USB-C Charging Cable,1,11.95,11/08/19 11:18,"258 Cedar St, San Francisco, CA 94016" +298398,34in Ultrawide Monitor,1,379.99,11/03/19 08:11,"37 Ridge St, Atlanta, GA 30301" +298399,AA Batteries (4-pack),1,3.84,11/10/19 08:23,"780 2nd St, San Francisco, CA 94016" +298400,AA Batteries (4-pack),1,3.84,11/09/19 14:17,"844 Church St, Atlanta, GA 30301" +298401,34in Ultrawide Monitor,1,379.99,11/18/19 01:18,"810 6th St, Dallas, TX 75001" +298402,USB-C Charging Cable,1,11.95,11/24/19 18:25,"851 10th St, Boston, MA 02215" +298403,ThinkPad Laptop,1,999.99,11/13/19 22:50,"494 9th St, Dallas, TX 75001" +298404,USB-C Charging Cable,1,11.95,11/23/19 16:35,"136 Lake St, San Francisco, CA 94016" +298405,AA Batteries (4-pack),1,3.84,11/17/19 09:35,"604 Maple St, San Francisco, CA 94016" +298406,Wired Headphones,1,11.99,11/25/19 13:22,"715 1st St, New York City, NY 10001" +298407,Apple Airpods Headphones,1,150,11/03/19 12:51,"749 Adams St, San Francisco, CA 94016" +298408,Bose SoundSport Headphones,1,99.99,11/14/19 00:13,"557 West St, San Francisco, CA 94016" +298409,AAA Batteries (4-pack),1,2.99,11/21/19 00:06,"312 Lake St, Atlanta, GA 30301" +298410,Google Phone,1,600,11/18/19 00:02,"599 Hill St, San Francisco, CA 94016" +298410,Wired Headphones,1,11.99,11/18/19 00:02,"599 Hill St, San Francisco, CA 94016" +298411,Lightning Charging Cable,1,14.95,11/01/19 06:14,"258 Jefferson St, New York City, NY 10001" +298412,ThinkPad Laptop,1,999.99,11/07/19 19:56,"296 North St, Los Angeles, CA 90001" +298413,Apple Airpods Headphones,1,150,11/14/19 11:40,"165 Lincoln St, San Francisco, CA 94016" +298414,AA Batteries (4-pack),1,3.84,11/19/19 23:16,"991 Washington St, San Francisco, CA 94016" +298415,20in Monitor,1,109.99,11/08/19 14:13,"720 Lakeview St, San Francisco, CA 94016" +298416,Bose SoundSport Headphones,1,99.99,11/22/19 00:53,"482 Park St, Boston, MA 02215" +298417,Lightning Charging Cable,1,14.95,11/15/19 01:55,"633 Cedar St, Los Angeles, CA 90001" +298418,27in FHD Monitor,1,149.99,11/01/19 12:34,"816 Main St, Austin, TX 73301" +298419,Bose SoundSport Headphones,1,99.99,11/03/19 16:11,"76 Center St, Atlanta, GA 30301" +298420,27in 4K Gaming Monitor,1,389.99,11/02/19 14:58,"109 Jefferson St, Dallas, TX 75001" +298421,AAA Batteries (4-pack),1,2.99,11/12/19 12:10,"723 7th St, San Francisco, CA 94016" +298422,Google Phone,1,600,11/06/19 11:41,"537 Johnson St, Atlanta, GA 30301" +298422,USB-C Charging Cable,2,11.95,11/06/19 11:41,"537 Johnson St, Atlanta, GA 30301" +298423,Bose SoundSport Headphones,1,99.99,11/01/19 15:41,"754 4th St, Austin, TX 73301" +298424,AAA Batteries (4-pack),2,2.99,11/07/19 07:52,"847 6th St, Atlanta, GA 30301" +298425,AAA Batteries (4-pack),1,2.99,11/20/19 22:09,"422 Hickory St, San Francisco, CA 94016" +298425,AA Batteries (4-pack),1,3.84,11/20/19 22:09,"422 Hickory St, San Francisco, CA 94016" +298426,iPhone,1,700,11/04/19 13:25,"601 Sunset St, Portland, ME 04101" +298427,20in Monitor,1,109.99,11/23/19 18:53,"743 Lakeview St, Los Angeles, CA 90001" +298428,Apple Airpods Headphones,1,150,11/04/19 22:48,"331 11th St, San Francisco, CA 94016" +298429,AAA Batteries (4-pack),2,2.99,11/14/19 18:06,"333 Lincoln St, Austin, TX 73301" +298430,Lightning Charging Cable,1,14.95,11/05/19 11:14,"390 Main St, Seattle, WA 98101" +298431,AA Batteries (4-pack),2,3.84,11/07/19 21:20,"91 8th St, San Francisco, CA 94016" +298432,USB-C Charging Cable,1,11.95,11/02/19 14:04,"967 River St, New York City, NY 10001" +298433,Macbook Pro Laptop,1,1700,11/01/19 20:18,"578 Wilson St, New York City, NY 10001" +298434,34in Ultrawide Monitor,1,379.99,11/14/19 15:46,"783 Ridge St, Seattle, WA 98101" +298435,Apple Airpods Headphones,1,150,11/15/19 12:34,"8 South St, Boston, MA 02215" +298436,AAA Batteries (4-pack),1,2.99,11/28/19 09:52,"629 Church St, New York City, NY 10001" +298437,AA Batteries (4-pack),1,3.84,11/29/19 15:10,"276 6th St, Los Angeles, CA 90001" +298438,Bose SoundSport Headphones,1,99.99,11/04/19 18:44,"149 Spruce St, Atlanta, GA 30301" +298439,Bose SoundSport Headphones,1,99.99,11/17/19 05:00,"18 Cherry St, Boston, MA 02215" +298440,ThinkPad Laptop,1,999.99,11/20/19 12:48,"172 Lincoln St, Seattle, WA 98101" +298441,iPhone,1,700,11/29/19 19:14,"747 7th St, New York City, NY 10001" +298441,Lightning Charging Cable,1,14.95,11/29/19 19:14,"747 7th St, New York City, NY 10001" +298441,Apple Airpods Headphones,1,150,11/29/19 19:14,"747 7th St, New York City, NY 10001" +298442,Wired Headphones,1,11.99,11/25/19 06:14,"788 Madison St, New York City, NY 10001" +298443,Lightning Charging Cable,1,14.95,11/07/19 07:23,"626 Park St, San Francisco, CA 94016" +298444,AAA Batteries (4-pack),1,2.99,11/14/19 12:22,"491 River St, Seattle, WA 98101" +298445,Flatscreen TV,1,300,11/10/19 12:29,"638 Jefferson St, San Francisco, CA 94016" +298446,Lightning Charging Cable,1,14.95,11/22/19 17:24,"690 Washington St, Portland, OR 97035" +298447,34in Ultrawide Monitor,1,379.99,11/16/19 09:31,"629 Maple St, San Francisco, CA 94016" +298448,Lightning Charging Cable,1,14.95,11/09/19 23:26,"218 8th St, Los Angeles, CA 90001" +298449,Apple Airpods Headphones,1,150,11/23/19 18:00,"235 Maple St, New York City, NY 10001" +298450,Apple Airpods Headphones,1,150,11/26/19 19:30,"335 Dogwood St, Portland, OR 97035" +298451,Apple Airpods Headphones,1,150,11/07/19 22:07,"223 Willow St, New York City, NY 10001" +298452,Wired Headphones,1,11.99,11/13/19 16:26,"873 13th St, Los Angeles, CA 90001" +298453,Google Phone,1,600,11/07/19 17:58,"458 Church St, Boston, MA 02215" +298453,USB-C Charging Cable,1,11.95,11/07/19 17:58,"458 Church St, Boston, MA 02215" +298454,Bose SoundSport Headphones,1,99.99,11/09/19 00:11,"286 Church St, Los Angeles, CA 90001" +298455,27in FHD Monitor,1,149.99,11/03/19 13:58,"90 Hill St, New York City, NY 10001" +298456,Apple Airpods Headphones,1,150,11/16/19 12:41,"129 Washington St, Los Angeles, CA 90001" +298457,Flatscreen TV,1,300,11/07/19 21:25,"300 Church St, San Francisco, CA 94016" +298458,27in 4K Gaming Monitor,1,389.99,11/01/19 13:51,"587 West St, San Francisco, CA 94016" +298459,ThinkPad Laptop,1,999.99,11/15/19 09:54,"173 Meadow St, New York City, NY 10001" +298460,USB-C Charging Cable,1,11.95,11/14/19 14:11,"605 Madison St, Los Angeles, CA 90001" +298461,Lightning Charging Cable,1,14.95,11/15/19 17:30,"435 9th St, Atlanta, GA 30301" +298462,Google Phone,1,600,11/09/19 12:01,"622 Lake St, Boston, MA 02215" +298463,iPhone,1,700,11/28/19 12:37,"12 6th St, Boston, MA 02215" +298464,iPhone,1,700,11/19/19 11:17,"248 Maple St, Boston, MA 02215" +298465,Google Phone,1,600,11/06/19 15:50,"33 Walnut St, New York City, NY 10001" +298466,AAA Batteries (4-pack),4,2.99,11/23/19 16:07,"458 Ridge St, San Francisco, CA 94016" diff --git a/sales_data/Sales_October_2019.csv b/sales_data/Sales_October_2019.csv new file mode 100644 index 0000000..9723e93 --- /dev/null +++ b/sales_data/Sales_October_2019.csv @@ -0,0 +1,16844 @@ +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +264780,Vareebadd Phone,1,400.0,10/22/19 20:51,"109 Pine St, San Francisco, CA 94016" +264781,Apple Airpods Headphones,1,150.0,10/10/19 18:25,"72 Main St, Los Angeles, CA 90001" +264782,Bose SoundSport Headphones,1,99.99,10/06/19 20:51,"957 Lake St, Seattle, WA 98101" +264783,AA Batteries (4-pack),1,3.84,10/12/19 23:16,"520 12th St, Seattle, WA 98101" +264784,AAA Batteries (4-pack),1,2.99,10/06/19 13:24,"367 6th St, Dallas, TX 75001" +264785,AAA Batteries (4-pack),1,2.99,10/21/19 12:10,"339 Meadow St, Seattle, WA 98101" +264786,27in FHD Monitor,1,149.99,10/11/19 21:29,"917 6th St, San Francisco, CA 94016" +264787,AAA Batteries (4-pack),2,2.99,10/23/19 21:44,"875 North St, Austin, TX 73301" +264788,Bose SoundSport Headphones,1,99.99,10/10/19 10:57,"447 Washington St, San Francisco, CA 94016" +264789,ThinkPad Laptop,1,999.99,10/10/19 13:46,"551 10th St, San Francisco, CA 94016" +264790,USB-C Charging Cable,2,11.95,10/08/19 10:39,"244 South St, Boston, MA 02215" +264791,AA Batteries (4-pack),1,3.84,10/28/19 23:02,"533 8th St, New York City, NY 10001" +264792,Macbook Pro Laptop,1,1700.0,11/01/19 00:21,"239 Forest St, New York City, NY 10001" +264793,Lightning Charging Cable,1,14.95,10/14/19 00:04,"939 5th St, Portland, OR 97035" +264794,Wired Headphones,1,11.99,10/04/19 20:02,"221 Cedar St, Austin, TX 73301" +264794,Lightning Charging Cable,1,14.95,10/04/19 20:02,"221 Cedar St, Austin, TX 73301" +264795,Bose SoundSport Headphones,1,99.99,10/08/19 17:54,"543 Wilson St, Dallas, TX 75001" +264796,AAA Batteries (4-pack),1,2.99,10/03/19 09:30,"213 Lakeview St, San Francisco, CA 94016" +264797,Wired Headphones,1,11.99,10/08/19 14:59,"857 Church St, Los Angeles, CA 90001" +264798,Macbook Pro Laptop,1,1700.0,10/28/19 14:24,"845 Cherry St, San Francisco, CA 94016" +264799,Macbook Pro Laptop,1,1700.0,10/08/19 09:17,"268 Main St, Boston, MA 02215" +264800,Wired Headphones,1,11.99,10/20/19 19:37,"75 Ridge St, New York City, NY 10001" +264801,AAA Batteries (4-pack),1,2.99,10/02/19 18:53,"258 13th St, Los Angeles, CA 90001" +264802,Wired Headphones,1,11.99,10/27/19 15:24,"405 Dogwood St, New York City, NY 10001" +264803,AAA Batteries (4-pack),2,2.99,10/20/19 19:56,"431 13th St, Boston, MA 02215" +264804,ThinkPad Laptop,1,999.99,10/22/19 18:17,"833 Elm St, San Francisco, CA 94016" +264805,AAA Batteries (4-pack),1,2.99,10/17/19 13:03,"815 13th St, Austin, TX 73301" +264806,Google Phone,1,600.0,10/06/19 08:36,"829 Lakeview St, Los Angeles, CA 90001" +264807,USB-C Charging Cable,1,11.95,10/31/19 01:03,"189 Jefferson St, San Francisco, CA 94016" +264808,Lightning Charging Cable,1,14.95,10/20/19 20:34,"406 Johnson St, San Francisco, CA 94016" +264809,USB-C Charging Cable,1,11.95,10/13/19 16:19,"690 River St, Portland, OR 97035" +264810,27in FHD Monitor,1,149.99,10/31/19 00:40,"637 West St, Seattle, WA 98101" +264811,Lightning Charging Cable,1,14.95,10/26/19 20:36,"457 Hill St, Portland, OR 97035" +264812,Wired Headphones,1,11.99,10/25/19 13:28,"224 Highland St, New York City, NY 10001" +264813,AAA Batteries (4-pack),1,2.99,10/17/19 16:04,"869 Spruce St, Los Angeles, CA 90001" +264814,Lightning Charging Cable,2,14.95,10/02/19 21:26,"542 7th St, Austin, TX 73301" +264815,LG Dryer,1,600.0,10/08/19 09:17,"444 Center St, New York City, NY 10001" +264816,Bose SoundSport Headphones,1,99.99,10/08/19 14:45,"535 Elm St, New York City, NY 10001" +264817,Bose SoundSport Headphones,1,99.99,10/23/19 20:17,"148 Chestnut St, New York City, NY 10001" +264818,ThinkPad Laptop,1,999.99,10/04/19 16:29,"552 10th St, Boston, MA 02215" +264819,Wired Headphones,1,11.99,10/28/19 23:34,"636 Jackson St, Seattle, WA 98101" +264820,AAA Batteries (4-pack),2,2.99,10/01/19 21:45,"533 North St, Los Angeles, CA 90001" +264821,Wired Headphones,2,11.99,10/12/19 17:44,"915 Forest St, San Francisco, CA 94016" +264822,Wired Headphones,1,11.99,10/18/19 20:08,"178 Center St, San Francisco, CA 94016" +264823,Google Phone,1,600.0,10/12/19 18:32,"571 Cedar St, Austin, TX 73301" +264824,Wired Headphones,1,11.99,10/06/19 08:41,"816 Highland St, New York City, NY 10001" +264825,AA Batteries (4-pack),1,3.84,10/20/19 03:26,"136 Chestnut St, San Francisco, CA 94016" +264826,Flatscreen TV,1,300.0,10/05/19 21:30,"766 Cherry St, Boston, MA 02215" +264827,Lightning Charging Cable,1,14.95,10/24/19 08:26,"221 11th St, Los Angeles, CA 90001" +264828,Wired Headphones,1,11.99,10/18/19 11:24,"943 Park St, Seattle, WA 98101" +264829,AA Batteries (4-pack),1,3.84,10/28/19 18:48,"220 Maple St, New York City, NY 10001" +264830,AAA Batteries (4-pack),1,2.99,10/02/19 21:15,"835 Church St, Boston, MA 02215" +264831,27in FHD Monitor,1,149.99,10/11/19 14:59,"354 Church St, Boston, MA 02215" +264832,Wired Headphones,1,11.99,10/09/19 19:56,"133 2nd St, Austin, TX 73301" +264833,USB-C Charging Cable,1,11.95,10/16/19 00:56,"248 North St, Los Angeles, CA 90001" +264834,Wired Headphones,1,11.99,10/11/19 12:11,"677 Hickory St, Seattle, WA 98101" +264835,Bose SoundSport Headphones,1,99.99,10/23/19 15:48,"606 11th St, New York City, NY 10001" +264836,Lightning Charging Cable,1,14.95,10/07/19 20:06,"178 Wilson St, Los Angeles, CA 90001" +264837,20in Monitor,1,109.99,10/23/19 21:14,"881 Center St, Dallas, TX 75001" +264838,USB-C Charging Cable,1,11.95,10/30/19 20:56,"826 Hill St, San Francisco, CA 94016" +264839,Flatscreen TV,1,300.0,10/05/19 22:00,"178 Church St, New York City, NY 10001" +264840,Flatscreen TV,1,300.0,10/18/19 09:56,"854 Sunset St, Austin, TX 73301" +264841,Bose SoundSport Headphones,1,99.99,10/04/19 21:51,"312 7th St, Portland, OR 97035" +264842,27in FHD Monitor,1,149.99,10/08/19 18:38,"848 Jefferson St, Los Angeles, CA 90001" +264843,Apple Airpods Headphones,1,150.0,10/09/19 12:12,"804 Walnut St, New York City, NY 10001" +264844,AA Batteries (4-pack),1,3.84,10/02/19 14:53,"572 West St, Boston, MA 02215" +264845,USB-C Charging Cable,1,11.95,10/12/19 17:44,"759 Washington St, Dallas, TX 75001" +264846,AA Batteries (4-pack),1,3.84,10/01/19 14:04,"98 Dogwood St, New York City, NY 10001" +264847,Apple Airpods Headphones,1,150.0,10/22/19 23:51,"790 1st St, Boston, MA 02215" +264848,Lightning Charging Cable,2,14.95,10/08/19 16:44,"981 Cherry St, Austin, TX 73301" +264849,27in 4K Gaming Monitor,1,389.99,10/12/19 05:42,"504 South St, New York City, NY 10001" +264850,27in FHD Monitor,1,149.99,10/23/19 17:53,"712 River St, Seattle, WA 98101" +264851,AA Batteries (4-pack),1,3.84,10/06/19 01:20,"608 Lakeview St, Portland, OR 97035" +264852,Lightning Charging Cable,1,14.95,10/29/19 01:00,"550 River St, Seattle, WA 98101" +264853,Wired Headphones,1,11.99,10/02/19 17:33,"892 Sunset St, Seattle, WA 98101" +264854,AA Batteries (4-pack),1,3.84,10/17/19 17:43,"544 Johnson St, Los Angeles, CA 90001" +264855,Macbook Pro Laptop,1,1700.0,10/13/19 20:20,"278 Ridge St, Atlanta, GA 30301" +264856,34in Ultrawide Monitor,1,379.99,10/09/19 20:08,"642 Madison St, Los Angeles, CA 90001" +264857,AA Batteries (4-pack),1,3.84,10/09/19 06:13,"470 Main St, Portland, OR 97035" +264858,USB-C Charging Cable,1,11.95,10/08/19 18:48,"230 Forest St, San Francisco, CA 94016" +264859,USB-C Charging Cable,2,11.95,10/14/19 01:40,"979 12th St, Atlanta, GA 30301" +264860,Apple Airpods Headphones,1,150.0,10/11/19 23:33,"371 Washington St, Seattle, WA 98101" +264861,Wired Headphones,1,11.99,10/25/19 23:08,"778 Jefferson St, Boston, MA 02215" +264862,Lightning Charging Cable,1,14.95,11/01/19 00:40,"19 1st St, Boston, MA 02215" +264863,Bose SoundSport Headphones,1,99.99,10/22/19 15:15,"815 Spruce St, Austin, TX 73301" +264864,AAA Batteries (4-pack),1,2.99,10/07/19 13:16,"256 5th St, New York City, NY 10001" +264865,Google Phone,1,600.0,10/30/19 17:43,"406 Ridge St, San Francisco, CA 94016" +264866,Lightning Charging Cable,1,14.95,10/31/19 04:38,"859 Jackson St, Boston, MA 02215" +264867,ThinkPad Laptop,1,999.99,10/30/19 11:52,"818 9th St, Atlanta, GA 30301" +264868,Apple Airpods Headphones,1,150.0,10/09/19 08:33,"650 10th St, San Francisco, CA 94016" +264869,USB-C Charging Cable,1,11.95,10/02/19 21:42,"6 Highland St, San Francisco, CA 94016" +264870,Lightning Charging Cable,3,14.95,10/13/19 21:44,"159 Lincoln St, Los Angeles, CA 90001" +264871,ThinkPad Laptop,1,999.99,10/10/19 20:26,"358 Lake St, Los Angeles, CA 90001" +264872,iPhone,1,700.0,10/02/19 18:45,"676 13th St, Seattle, WA 98101" +264872,Wired Headphones,1,11.99,10/02/19 18:45,"676 13th St, Seattle, WA 98101" +264873,USB-C Charging Cable,1,11.95,10/05/19 21:41,"158 5th St, New York City, NY 10001" +264874,Flatscreen TV,1,300.0,10/02/19 19:21,"178 7th St, San Francisco, CA 94016" +264875,AAA Batteries (4-pack),1,2.99,10/24/19 15:44,"215 2nd St, Austin, TX 73301" +264876,Wired Headphones,1,11.99,10/01/19 21:30,"2 West St, Seattle, WA 98101" +264877,AA Batteries (4-pack),1,3.84,10/17/19 21:18,"876 14th St, Atlanta, GA 30301" +264878,Apple Airpods Headphones,1,150.0,10/06/19 13:36,"285 Lake St, Boston, MA 02215" +264879,Apple Airpods Headphones,1,150.0,10/28/19 19:05,"618 Sunset St, Los Angeles, CA 90001" +264880,Lightning Charging Cable,1,14.95,10/19/19 00:16,"561 Church St, Boston, MA 02215" +264881,USB-C Charging Cable,1,11.95,10/04/19 14:21,"376 Cherry St, San Francisco, CA 94016" +264882,Apple Airpods Headphones,1,150.0,10/01/19 10:55,"244 Highland St, San Francisco, CA 94016" +264883,Bose SoundSport Headphones,1,99.99,10/02/19 14:19,"664 2nd St, San Francisco, CA 94016" +264884,27in 4K Gaming Monitor,1,389.99,10/16/19 13:02,"205 Cherry St, Los Angeles, CA 90001" +264885,Wired Headphones,1,11.99,10/05/19 22:52,"51 Willow St, Seattle, WA 98101" +264886,Lightning Charging Cable,1,14.95,10/18/19 07:25,"573 Forest St, Los Angeles, CA 90001" +264887,Macbook Pro Laptop,1,1700.0,10/18/19 00:08,"22 13th St, Boston, MA 02215" +264888,iPhone,1,700.0,10/15/19 17:36,"440 1st St, Boston, MA 02215" +264889,Lightning Charging Cable,1,14.95,10/10/19 00:50,"163 Jefferson St, Atlanta, GA 30301" +264890,Lightning Charging Cable,1,14.95,10/25/19 20:15,"998 11th St, Seattle, WA 98101" +264891,AA Batteries (4-pack),2,3.84,10/12/19 18:10,"798 5th St, Austin, TX 73301" +264892,Google Phone,1,600.0,10/24/19 20:32,"12 Chestnut St, New York City, NY 10001" +264892,USB-C Charging Cable,1,11.95,10/24/19 20:32,"12 Chestnut St, New York City, NY 10001" +264893,34in Ultrawide Monitor,1,379.99,10/20/19 22:07,"880 Elm St, Portland, OR 97035" +264894,Wired Headphones,1,11.99,10/17/19 05:59,"43 12th St, Boston, MA 02215" +264895,Lightning Charging Cable,1,14.95,10/10/19 17:40,"228 1st St, Seattle, WA 98101" +264896,Bose SoundSport Headphones,1,99.99,10/19/19 11:04,"842 Maple St, Seattle, WA 98101" +264897,AA Batteries (4-pack),3,3.84,10/06/19 18:32,"601 6th St, Portland, OR 97035" +264898,Wired Headphones,1,11.99,10/23/19 18:57,"763 13th St, Austin, TX 73301" +264899,Lightning Charging Cable,1,14.95,10/31/19 20:35,"578 6th St, Seattle, WA 98101" +264900,USB-C Charging Cable,1,11.95,10/13/19 12:43,"954 Lincoln St, Dallas, TX 75001" +264901,AAA Batteries (4-pack),1,2.99,10/18/19 20:21,"289 Madison St, Austin, TX 73301" +264902,Macbook Pro Laptop,1,1700.0,10/26/19 19:59,"147 Walnut St, San Francisco, CA 94016" +264903,Lightning Charging Cable,1,14.95,10/23/19 10:10,"650 Lake St, San Francisco, CA 94016" +264904,AAA Batteries (4-pack),2,2.99,10/18/19 14:31,"986 West St, Boston, MA 02215" +264905,Wired Headphones,1,11.99,10/26/19 13:46,"372 Maple St, Atlanta, GA 30301" +264906,AAA Batteries (4-pack),1,2.99,10/09/19 12:01,"128 2nd St, Portland, OR 97035" +264907,AA Batteries (4-pack),1,3.84,10/15/19 18:16,"649 6th St, Seattle, WA 98101" +264908,USB-C Charging Cable,1,11.95,10/27/19 16:38,"995 Ridge St, Dallas, TX 75001" +264909,Wired Headphones,1,11.99,10/08/19 18:09,"31 West St, San Francisco, CA 94016" +264910,27in FHD Monitor,1,149.99,10/08/19 07:44,"377 Madison St, San Francisco, CA 94016" +264911,AA Batteries (4-pack),1,3.84,10/05/19 17:23,"575 11th St, Seattle, WA 98101" +264912,USB-C Charging Cable,1,11.95,10/17/19 22:18,"961 Spruce St, Boston, MA 02215" +264913,Lightning Charging Cable,1,14.95,10/05/19 20:01,"226 Wilson St, Boston, MA 02215" +264914,Apple Airpods Headphones,1,150.0,10/08/19 09:55,"662 Hill St, Los Angeles, CA 90001" +264915,Bose SoundSport Headphones,1,99.99,10/30/19 22:57,"364 River St, Seattle, WA 98101" +264916,Macbook Pro Laptop,1,1700.0,10/02/19 19:57,"440 Cedar St, San Francisco, CA 94016" +264917,34in Ultrawide Monitor,1,379.99,10/13/19 17:54,"672 Willow St, San Francisco, CA 94016" +264918,27in 4K Gaming Monitor,1,389.99,10/15/19 22:31,"459 Ridge St, Seattle, WA 98101" +264919,ThinkPad Laptop,1,999.99,10/18/19 15:23,"756 7th St, Los Angeles, CA 90001" +264920,Flatscreen TV,1,300.0,10/24/19 19:22,"174 Center St, San Francisco, CA 94016" +264921,34in Ultrawide Monitor,1,379.99,10/08/19 09:56,"219 Hickory St, Seattle, WA 98101" +264922,AA Batteries (4-pack),1,3.84,10/15/19 16:04,"190 5th St, Dallas, TX 75001" +264923,USB-C Charging Cable,1,11.95,10/09/19 14:09,"340 Forest St, San Francisco, CA 94016" +264924,iPhone,1,700.0,10/04/19 09:38,"550 Lincoln St, Atlanta, GA 30301" +264925,27in FHD Monitor,1,149.99,10/02/19 11:15,"278 5th St, San Francisco, CA 94016" +264926,Apple Airpods Headphones,1,150.0,10/31/19 18:24,"576 Elm St, Austin, TX 73301" +264926,USB-C Charging Cable,1,11.95,10/31/19 18:24,"576 Elm St, Austin, TX 73301" +264927,AAA Batteries (4-pack),1,2.99,10/12/19 12:02,"89 Willow St, Austin, TX 73301" +264928,AAA Batteries (4-pack),1,2.99,10/22/19 15:52,"291 Elm St, San Francisco, CA 94016" +264929,AAA Batteries (4-pack),1,2.99,10/09/19 21:15,"941 North St, Austin, TX 73301" +264930,34in Ultrawide Monitor,1,379.99,10/04/19 19:16,"137 Washington St, New York City, NY 10001" +264931,ThinkPad Laptop,1,999.99,10/25/19 19:14,"350 Lakeview St, Boston, MA 02215" +264932,Flatscreen TV,1,300.0,10/09/19 23:42,"378 Jackson St, Los Angeles, CA 90001" +264933,Macbook Pro Laptop,1,1700.0,10/26/19 09:37,"675 South St, Atlanta, GA 30301" +264934,iPhone,1,700.0,10/03/19 19:22,"138 Willow St, Atlanta, GA 30301" +264935,34in Ultrawide Monitor,1,379.99,10/27/19 01:11,"938 Adams St, San Francisco, CA 94016" +264936,34in Ultrawide Monitor,1,379.99,10/13/19 18:14,"19 North St, San Francisco, CA 94016" +264937,Flatscreen TV,1,300.0,10/03/19 21:58,"501 River St, New York City, NY 10001" +264938,iPhone,1,700.0,10/06/19 20:29,"2 8th St, Los Angeles, CA 90001" +264939,Wired Headphones,1,11.99,10/14/19 00:04,"260 Wilson St, Dallas, TX 75001" +264940,AA Batteries (4-pack),1,3.84,10/05/19 10:35,"42 Dogwood St, San Francisco, CA 94016" +264941,USB-C Charging Cable,1,11.95,10/14/19 18:00,"842 Main St, Atlanta, GA 30301" +264942,Apple Airpods Headphones,1,150.0,10/28/19 17:17,"718 Meadow St, Seattle, WA 98101" +264943,Bose SoundSport Headphones,1,99.99,10/05/19 18:25,"60 Willow St, San Francisco, CA 94016" +264944,AAA Batteries (4-pack),1,2.99,10/19/19 12:32,"93 Lincoln St, Seattle, WA 98101" +264945,Bose SoundSport Headphones,1,99.99,10/01/19 10:29,"511 Adams St, Boston, MA 02215" +264946,27in FHD Monitor,1,149.99,10/31/19 21:57,"777 12th St, Los Angeles, CA 90001" +264947,AAA Batteries (4-pack),1,2.99,10/30/19 20:00,"7 13th St, San Francisco, CA 94016" +264948,Apple Airpods Headphones,1,150.0,10/28/19 16:14,"12 Washington St, Atlanta, GA 30301" +264949,27in 4K Gaming Monitor,1,389.99,10/22/19 15:09,"916 Ridge St, Dallas, TX 75001" +264950,Bose SoundSport Headphones,1,99.99,10/04/19 16:45,"394 13th St, San Francisco, CA 94016" +264951,ThinkPad Laptop,1,999.99,10/24/19 21:20,"732 Forest St, Austin, TX 73301" +264952,ThinkPad Laptop,1,999.99,10/10/19 19:21,"536 North St, Portland, OR 97035" +264953,Macbook Pro Laptop,1,1700.0,10/11/19 19:51,"691 Cherry St, Boston, MA 02215" +264954,Google Phone,1,600.0,10/03/19 23:52,"821 Elm St, Boston, MA 02215" +264955,AA Batteries (4-pack),1,3.84,10/07/19 10:29,"599 West St, Los Angeles, CA 90001" +264956,AA Batteries (4-pack),1,3.84,10/06/19 17:00,"661 14th St, Atlanta, GA 30301" +264957,Macbook Pro Laptop,1,1700.0,10/01/19 13:23,"863 12th St, Los Angeles, CA 90001" +264958,AA Batteries (4-pack),1,3.84,10/05/19 19:10,"609 Walnut St, San Francisco, CA 94016" +264959,AA Batteries (4-pack),1,3.84,10/30/19 22:34,"147 River St, Portland, OR 97035" +264960,Lightning Charging Cable,1,14.95,10/27/19 13:50,"697 6th St, Austin, TX 73301" +264961,34in Ultrawide Monitor,1,379.99,10/18/19 11:02,"618 5th St, Portland, OR 97035" +264962,AA Batteries (4-pack),1,3.84,10/16/19 09:54,"346 8th St, Boston, MA 02215" +264963,Apple Airpods Headphones,1,150.0,10/30/19 00:29,"209 Cedar St, New York City, NY 10001" +264964,Wired Headphones,1,11.99,10/18/19 20:31,"256 Maple St, Los Angeles, CA 90001" +264965,AA Batteries (4-pack),1,3.84,10/25/19 15:17,"449 Hill St, Boston, MA 02215" +264966,AA Batteries (4-pack),1,3.84,10/30/19 05:42,"192 South St, Seattle, WA 98101" +264967,27in 4K Gaming Monitor,1,389.99,10/01/19 23:08,"511 4th St, San Francisco, CA 94016" +264968,Wired Headphones,1,11.99,10/19/19 13:42,"976 Wilson St, Seattle, WA 98101" +264969,AAA Batteries (4-pack),2,2.99,10/09/19 09:46,"984 Lake St, Atlanta, GA 30301" +264970,Wired Headphones,1,11.99,10/03/19 22:09,"941 Elm St, Austin, TX 73301" +264971,AAA Batteries (4-pack),1,2.99,10/19/19 08:57,"589 9th St, Boston, MA 02215" +264972,Google Phone,1,600.0,10/03/19 16:42,"679 Johnson St, Seattle, WA 98101" +264973,AA Batteries (4-pack),1,3.84,10/05/19 12:42,"234 Chestnut St, San Francisco, CA 94016" +264974,Lightning Charging Cable,1,14.95,10/08/19 20:08,"127 Johnson St, Atlanta, GA 30301" +264975,ThinkPad Laptop,1,999.99,10/27/19 17:03,"878 North St, Boston, MA 02215" +264976,Lightning Charging Cable,1,14.95,10/17/19 14:22,"725 1st St, Dallas, TX 75001" +264977,Wired Headphones,1,11.99,10/28/19 13:36,"709 South St, San Francisco, CA 94016" +264978,USB-C Charging Cable,1,11.95,10/04/19 11:50,"630 4th St, Atlanta, GA 30301" +264979,Wired Headphones,1,11.99,10/20/19 10:47,"839 8th St, San Francisco, CA 94016" +264980,Apple Airpods Headphones,1,150.0,10/28/19 22:27,"227 Center St, Boston, MA 02215" +264981,Flatscreen TV,1,300.0,10/18/19 10:05,"831 Highland St, San Francisco, CA 94016" +264982,USB-C Charging Cable,1,11.95,10/11/19 20:21,"443 1st St, Atlanta, GA 30301" +264983,AAA Batteries (4-pack),3,2.99,10/28/19 23:54,"849 Lakeview St, Atlanta, GA 30301" +264984,Bose SoundSport Headphones,1,99.99,10/22/19 19:03,"512 7th St, San Francisco, CA 94016" +264985,Lightning Charging Cable,2,14.95,10/23/19 09:00,"853 12th St, Dallas, TX 75001" +264986,27in FHD Monitor,1,149.99,10/15/19 19:02,"474 6th St, New York City, NY 10001" +264987,Wired Headphones,1,11.99,10/04/19 21:06,"200 Elm St, Seattle, WA 98101" +264988,USB-C Charging Cable,1,11.95,10/29/19 18:44,"520 Highland St, Portland, OR 97035" +264989,ThinkPad Laptop,1,999.99,10/18/19 10:03,"53 Pine St, Atlanta, GA 30301" +264990,Lightning Charging Cable,1,14.95,10/11/19 11:46,"13 12th St, Seattle, WA 98101" +264991,Wired Headphones,1,11.99,10/19/19 12:05,"831 Jackson St, Austin, TX 73301" +264992,Wired Headphones,1,11.99,10/02/19 10:30,"796 North St, Dallas, TX 75001" +264993,Wired Headphones,1,11.99,10/04/19 10:37,"363 Elm St, New York City, NY 10001" +264994,Google Phone,1,600.0,10/09/19 20:28,"881 12th St, San Francisco, CA 94016" +264995,USB-C Charging Cable,1,11.95,10/29/19 15:18,"12 Cedar St, Los Angeles, CA 90001" +264996,Vareebadd Phone,1,400.0,10/01/19 08:33,"812 2nd St, San Francisco, CA 94016" +264997,Lightning Charging Cable,1,14.95,10/23/19 13:09,"121 Madison St, Boston, MA 02215" +264998,Wired Headphones,1,11.99,10/31/19 10:14,"522 Elm St, Los Angeles, CA 90001" +264999,Wired Headphones,1,11.99,10/08/19 12:06,"777 4th St, San Francisco, CA 94016" +265000,AA Batteries (4-pack),1,3.84,10/25/19 12:29,"62 Highland St, New York City, NY 10001" +265001,27in 4K Gaming Monitor,1,389.99,10/24/19 16:56,"194 Adams St, San Francisco, CA 94016" +265002,Macbook Pro Laptop,1,1700.0,10/10/19 10:15,"376 Park St, San Francisco, CA 94016" +265003,34in Ultrawide Monitor,1,379.99,10/22/19 19:41,"88 Willow St, New York City, NY 10001" +265004,Lightning Charging Cable,1,14.95,10/27/19 15:02,"938 4th St, Austin, TX 73301" +265005,Wired Headphones,1,11.99,10/21/19 17:22,"691 8th St, Dallas, TX 75001" +265006,Wired Headphones,1,11.99,10/18/19 18:33,"45 Meadow St, San Francisco, CA 94016" +265007,Apple Airpods Headphones,2,150.0,10/11/19 19:22,"535 Hickory St, Los Angeles, CA 90001" +265008,Bose SoundSport Headphones,1,99.99,10/30/19 14:51,"901 5th St, Los Angeles, CA 90001" +265009,Wired Headphones,1,11.99,10/22/19 13:38,"530 Willow St, San Francisco, CA 94016" +265010,AA Batteries (4-pack),1,3.84,10/14/19 18:50,"143 Cedar St, New York City, NY 10001" +265011,AA Batteries (4-pack),1,3.84,10/06/19 15:26,"686 Walnut St, San Francisco, CA 94016" +265012,AAA Batteries (4-pack),1,2.99,10/13/19 00:49,"366 Walnut St, Seattle, WA 98101" +265013,AA Batteries (4-pack),1,3.84,10/08/19 20:18,"831 4th St, Portland, ME 04101" +265014,27in FHD Monitor,1,149.99,10/15/19 11:36,"675 Cedar St, San Francisco, CA 94016" +265015,AAA Batteries (4-pack),1,2.99,10/26/19 12:13,"794 Center St, Austin, TX 73301" +265016,USB-C Charging Cable,1,11.95,10/10/19 15:15,"783 4th St, Boston, MA 02215" +265017,AAA Batteries (4-pack),2,2.99,10/12/19 21:08,"6 6th St, New York City, NY 10001" +265018,USB-C Charging Cable,1,11.95,10/11/19 12:11,"458 11th St, Dallas, TX 75001" +265019,AAA Batteries (4-pack),1,2.99,10/27/19 21:11,"273 10th St, Austin, TX 73301" +265020,AA Batteries (4-pack),2,3.84,10/24/19 19:10,"999 14th St, Boston, MA 02215" +265021,AAA Batteries (4-pack),1,2.99,10/17/19 20:47,"513 6th St, New York City, NY 10001" +265022,AA Batteries (4-pack),1,3.84,10/02/19 14:41,"476 Cherry St, Boston, MA 02215" +265023,AA Batteries (4-pack),1,3.84,10/26/19 01:50,"401 Adams St, San Francisco, CA 94016" +265024,AAA Batteries (4-pack),3,2.99,10/17/19 03:27,"535 Willow St, Seattle, WA 98101" +265025,Lightning Charging Cable,1,14.95,10/31/19 17:14,"377 Jefferson St, Los Angeles, CA 90001" +265026,27in FHD Monitor,1,149.99,10/19/19 15:48,"893 Park St, Dallas, TX 75001" +265027,Wired Headphones,2,11.99,10/06/19 09:34,"242 10th St, San Francisco, CA 94016" +265028,27in FHD Monitor,1,149.99,10/20/19 18:53,"665 10th St, Atlanta, GA 30301" +265029,Wired Headphones,1,11.99,10/26/19 07:31,"735 Washington St, Portland, OR 97035" +265030,Bose SoundSport Headphones,1,99.99,10/16/19 05:51,"52 Pine St, San Francisco, CA 94016" +265031,27in FHD Monitor,1,149.99,10/20/19 13:43,"845 Church St, Los Angeles, CA 90001" +265032,Apple Airpods Headphones,1,150.0,10/08/19 21:10,"1 13th St, Portland, OR 97035" +265033,Flatscreen TV,1,300.0,10/21/19 10:55,"989 1st St, San Francisco, CA 94016" +265034,Google Phone,1,600.0,10/08/19 09:43,"253 Dogwood St, Los Angeles, CA 90001" +265035,27in 4K Gaming Monitor,1,389.99,10/24/19 00:24,"7 Hill St, Boston, MA 02215" +265036,27in FHD Monitor,1,149.99,10/09/19 11:16,"179 Spruce St, San Francisco, CA 94016" +265037,AA Batteries (4-pack),1,3.84,10/06/19 11:47,"5 Hill St, Los Angeles, CA 90001" +265038,AAA Batteries (4-pack),1,2.99,10/27/19 19:08,"519 8th St, Boston, MA 02215" +265039,27in 4K Gaming Monitor,1,389.99,10/02/19 08:48,"837 Sunset St, San Francisco, CA 94016" +265040,AAA Batteries (4-pack),1,2.99,10/22/19 12:30,"242 Wilson St, New York City, NY 10001" +265041,34in Ultrawide Monitor,1,379.99,10/30/19 15:04,"342 Lakeview St, Seattle, WA 98101" +265042,27in FHD Monitor,1,149.99,10/04/19 08:29,"879 Pine St, Portland, OR 97035" +265043,Google Phone,1,600.0,10/15/19 11:43,"272 West St, San Francisco, CA 94016" +265044,Apple Airpods Headphones,1,150.0,10/25/19 14:20,"145 Pine St, Seattle, WA 98101" +265045,Wired Headphones,1,11.99,10/18/19 22:29,"586 Wilson St, Boston, MA 02215" +265046,Wired Headphones,1,11.99,10/26/19 08:08,"865 2nd St, Seattle, WA 98101" +265047,Apple Airpods Headphones,1,150.0,10/21/19 13:48,"600 13th St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +265048,27in FHD Monitor,1,149.99,10/21/19 17:53,"643 Jefferson St, Boston, MA 02215" +265048,AAA Batteries (4-pack),1,2.99,10/21/19 17:53,"643 Jefferson St, Boston, MA 02215" +265049,Flatscreen TV,1,300,10/09/19 12:15,"880 Hill St, Dallas, TX 75001" +265050,Lightning Charging Cable,1,14.95,10/25/19 11:22,"999 Cedar St, Los Angeles, CA 90001" +265051,AAA Batteries (4-pack),2,2.99,10/22/19 19:56,"264 Cherry St, Atlanta, GA 30301" +265052,Apple Airpods Headphones,1,150,10/23/19 13:07,"4 Lakeview St, Los Angeles, CA 90001" +265053,Wired Headphones,1,11.99,10/25/19 10:10,"714 Ridge St, Los Angeles, CA 90001" +265054,AAA Batteries (4-pack),1,2.99,10/21/19 18:14,"645 Wilson St, Austin, TX 73301" +265054,iPhone,1,700,10/21/19 18:14,"645 Wilson St, Austin, TX 73301" +265055,AA Batteries (4-pack),2,3.84,10/16/19 23:54,"348 Elm St, New York City, NY 10001" +265055,Macbook Pro Laptop,1,1700,10/16/19 23:54,"348 Elm St, New York City, NY 10001" +265056,Wired Headphones,1,11.99,10/02/19 13:07,"357 Cherry St, Austin, TX 73301" +265057,USB-C Charging Cable,1,11.95,10/20/19 12:35,"203 Willow St, New York City, NY 10001" +265058,Google Phone,1,600,10/03/19 18:45,"447 7th St, Los Angeles, CA 90001" +265059,34in Ultrawide Monitor,1,379.99,10/26/19 21:01,"308 South St, Atlanta, GA 30301" +265060,Wired Headphones,1,11.99,10/28/19 18:40,"912 West St, New York City, NY 10001" +265061,AA Batteries (4-pack),2,3.84,10/09/19 11:52,"745 1st St, New York City, NY 10001" +265062,iPhone,1,700,10/20/19 22:52,"91 1st St, San Francisco, CA 94016" +265062,Lightning Charging Cable,2,14.95,10/20/19 22:52,"91 1st St, San Francisco, CA 94016" +265063,Lightning Charging Cable,1,14.95,10/22/19 13:11,"997 1st St, Boston, MA 02215" +265064,USB-C Charging Cable,1,11.95,10/27/19 11:04,"194 4th St, Seattle, WA 98101" +265065,AAA Batteries (4-pack),1,2.99,10/06/19 10:24,"189 Elm St, San Francisco, CA 94016" +265066,AA Batteries (4-pack),1,3.84,10/07/19 19:27,"52 Willow St, New York City, NY 10001" +265067,USB-C Charging Cable,1,11.95,10/13/19 20:19,"74 Dogwood St, Dallas, TX 75001" +265068,AAA Batteries (4-pack),1,2.99,10/08/19 22:48,"74 Sunset St, Portland, OR 97035" +265069,Vareebadd Phone,1,400,10/27/19 21:09,"6 6th St, Boston, MA 02215" +265070,AA Batteries (4-pack),1,3.84,10/30/19 22:42,"111 Dogwood St, San Francisco, CA 94016" +265071,Bose SoundSport Headphones,1,99.99,10/20/19 12:43,"905 South St, Portland, OR 97035" +265072,Wired Headphones,1,11.99,10/30/19 19:50,"975 Lakeview St, Atlanta, GA 30301" +265073,AA Batteries (4-pack),1,3.84,10/24/19 20:15,"785 North St, Austin, TX 73301" +265074,iPhone,1,700,10/21/19 06:20,"283 2nd St, Seattle, WA 98101" +265075,LG Washing Machine,1,600.0,10/29/19 22:49,"645 Johnson St, Seattle, WA 98101" +265076,AA Batteries (4-pack),1,3.84,10/15/19 00:28,"219 14th St, Boston, MA 02215" +265077,Wired Headphones,1,11.99,10/11/19 22:56,"265 14th St, Boston, MA 02215" +265078,AA Batteries (4-pack),5,3.84,10/08/19 19:24,"477 5th St, San Francisco, CA 94016" +265079,Lightning Charging Cable,1,14.95,10/30/19 03:35,"133 Ridge St, Los Angeles, CA 90001" +265080,AA Batteries (4-pack),1,3.84,10/04/19 18:16,"770 Forest St, Boston, MA 02215" +265081,AA Batteries (4-pack),2,3.84,10/17/19 15:51,"394 River St, San Francisco, CA 94016" +265082,LG Washing Machine,1,600.0,10/08/19 19:52,"584 Johnson St, Los Angeles, CA 90001" +265083,Wired Headphones,1,11.99,10/10/19 18:23,"272 7th St, Los Angeles, CA 90001" +265084,Wired Headphones,1,11.99,10/13/19 09:17,"199 South St, Portland, OR 97035" +265085,Lightning Charging Cable,2,14.95,10/08/19 08:13,"867 Walnut St, Atlanta, GA 30301" +265086,Lightning Charging Cable,1,14.95,10/28/19 13:06,"213 Walnut St, Portland, OR 97035" +265087,20in Monitor,1,109.99,10/14/19 11:47,"761 5th St, Los Angeles, CA 90001" +265088,20in Monitor,1,109.99,10/30/19 07:45,"390 11th St, Los Angeles, CA 90001" +265089,Bose SoundSport Headphones,1,99.99,10/03/19 18:41,"584 Walnut St, Seattle, WA 98101" +265090,Apple Airpods Headphones,1,150,10/29/19 12:30,"392 10th St, San Francisco, CA 94016" +265091,Apple Airpods Headphones,1,150,10/06/19 18:15,"356 Dogwood St, San Francisco, CA 94016" +265092,27in 4K Gaming Monitor,1,389.99,10/04/19 18:11,"661 Meadow St, New York City, NY 10001" +265093,AAA Batteries (4-pack),3,2.99,10/25/19 11:44,"271 Meadow St, Seattle, WA 98101" +265094,Bose SoundSport Headphones,1,99.99,10/08/19 17:48,"836 Sunset St, Portland, OR 97035" +265095,AAA Batteries (4-pack),1,2.99,10/27/19 15:58,"876 Maple St, Boston, MA 02215" +265096,AA Batteries (4-pack),1,3.84,10/29/19 18:42,"82 Hickory St, Boston, MA 02215" +265097,Lightning Charging Cable,1,14.95,10/27/19 12:37,"736 Pine St, San Francisco, CA 94016" +265098,Wired Headphones,1,11.99,10/25/19 12:59,"107 Sunset St, Boston, MA 02215" +265099,Bose SoundSport Headphones,1,99.99,10/28/19 15:19,"822 Spruce St, New York City, NY 10001" +265100,Macbook Pro Laptop,1,1700,10/26/19 10:52,"382 Cherry St, San Francisco, CA 94016" +265101,Apple Airpods Headphones,1,150,10/13/19 10:04,"228 2nd St, New York City, NY 10001" +265102,AA Batteries (4-pack),1,3.84,10/27/19 15:52,"687 5th St, San Francisco, CA 94016" +265103,Bose SoundSport Headphones,1,99.99,10/06/19 19:16,"544 Chestnut St, Austin, TX 73301" +265104,AAA Batteries (4-pack),1,2.99,10/02/19 18:22,"961 4th St, San Francisco, CA 94016" +265105,Wired Headphones,1,11.99,10/02/19 17:48,"98 Walnut St, Portland, ME 04101" +265106,Bose SoundSport Headphones,1,99.99,10/07/19 13:26,"660 Adams St, San Francisco, CA 94016" +265107,AAA Batteries (4-pack),1,2.99,10/08/19 10:42,"659 Elm St, Portland, OR 97035" +265108,Lightning Charging Cable,1,14.95,10/25/19 13:08,"848 Highland St, Atlanta, GA 30301" +265109,AAA Batteries (4-pack),2,2.99,10/03/19 15:12,"154 Dogwood St, San Francisco, CA 94016" +265110,Flatscreen TV,1,300,10/01/19 13:07,"150 13th St, Los Angeles, CA 90001" +265111,USB-C Charging Cable,1,11.95,10/13/19 09:49,"9 Jackson St, San Francisco, CA 94016" +265112,USB-C Charging Cable,1,11.95,10/20/19 21:10,"972 Cherry St, Dallas, TX 75001" +265113,Google Phone,1,600,10/13/19 21:28,"100 8th St, Seattle, WA 98101" +265114,USB-C Charging Cable,1,11.95,10/07/19 21:29,"949 Wilson St, Los Angeles, CA 90001" +265115,ThinkPad Laptop,1,999.99,10/31/19 21:54,"77 Sunset St, San Francisco, CA 94016" +265116,Wired Headphones,1,11.99,10/12/19 12:52,"891 Wilson St, Boston, MA 02215" +265117,iPhone,1,700,10/04/19 17:28,"748 4th St, Los Angeles, CA 90001" +265117,Apple Airpods Headphones,1,150,10/04/19 17:28,"748 4th St, Los Angeles, CA 90001" +265118,Bose SoundSport Headphones,1,99.99,10/28/19 20:48,"577 Dogwood St, Dallas, TX 75001" +265119,AA Batteries (4-pack),1,3.84,10/01/19 11:24,"221 13th St, Atlanta, GA 30301" +265120,AA Batteries (4-pack),1,3.84,10/23/19 09:50,"984 Madison St, Seattle, WA 98101" +265121,Bose SoundSport Headphones,1,99.99,10/18/19 12:51,"566 Pine St, Los Angeles, CA 90001" +265122,27in FHD Monitor,1,149.99,10/03/19 15:43,"194 Spruce St, Los Angeles, CA 90001" +265123,AA Batteries (4-pack),1,3.84,10/28/19 00:19,"685 7th St, Atlanta, GA 30301" +265124,AAA Batteries (4-pack),4,2.99,10/12/19 22:25,"443 14th St, Seattle, WA 98101" +265125,Lightning Charging Cable,1,14.95,10/13/19 20:45,"911 Lakeview St, San Francisco, CA 94016" +265126,Flatscreen TV,1,300,10/03/19 19:22,"655 Jefferson St, Los Angeles, CA 90001" +265127,20in Monitor,1,109.99,10/27/19 13:06,"992 Cherry St, Atlanta, GA 30301" +265128,AA Batteries (4-pack),1,3.84,10/03/19 22:28,"157 Hill St, Austin, TX 73301" +265129,AA Batteries (4-pack),1,3.84,10/19/19 17:53,"40 Elm St, New York City, NY 10001" +265130,Vareebadd Phone,1,400,10/23/19 10:08,"310 Forest St, Portland, OR 97035" +265130,Wired Headphones,1,11.99,10/23/19 10:08,"310 Forest St, Portland, OR 97035" +265131,AAA Batteries (4-pack),2,2.99,10/12/19 19:34,"49 6th St, Los Angeles, CA 90001" +265132,AAA Batteries (4-pack),2,2.99,10/24/19 09:34,"802 8th St, San Francisco, CA 94016" +265133,USB-C Charging Cable,1,11.95,10/20/19 19:53,"723 Pine St, San Francisco, CA 94016" +265133,Wired Headphones,1,11.99,10/20/19 19:53,"723 Pine St, San Francisco, CA 94016" +265134,Macbook Pro Laptop,1,1700,10/11/19 16:48,"595 River St, Boston, MA 02215" +265135,Wired Headphones,1,11.99,10/31/19 22:35,"224 Dogwood St, Los Angeles, CA 90001" +265136,USB-C Charging Cable,1,11.95,10/22/19 14:22,"478 7th St, Los Angeles, CA 90001" +265137,AA Batteries (4-pack),1,3.84,10/27/19 16:30,"38 7th St, Dallas, TX 75001" +265138,20in Monitor,1,109.99,10/31/19 18:03,"594 Spruce St, San Francisco, CA 94016" +265139,27in 4K Gaming Monitor,1,389.99,10/25/19 09:43,"318 7th St, Los Angeles, CA 90001" +265140,Lightning Charging Cable,1,14.95,10/22/19 15:38,"764 5th St, Atlanta, GA 30301" +265141,ThinkPad Laptop,1,999.99,10/20/19 19:17,"56 South St, Boston, MA 02215" +265142,Apple Airpods Headphones,1,150,10/22/19 15:09,"587 Cedar St, Los Angeles, CA 90001" +265143,Bose SoundSport Headphones,1,99.99,10/02/19 15:21,"572 10th St, New York City, NY 10001" +265144,USB-C Charging Cable,1,11.95,10/07/19 15:12,"724 2nd St, New York City, NY 10001" +265145,AAA Batteries (4-pack),1,2.99,10/09/19 22:04,"281 South St, Los Angeles, CA 90001" +265145,Apple Airpods Headphones,1,150,10/09/19 22:04,"281 South St, Los Angeles, CA 90001" +265146,ThinkPad Laptop,1,999.99,10/05/19 23:21,"786 Maple St, Boston, MA 02215" +265147,USB-C Charging Cable,1,11.95,10/12/19 15:33,"851 6th St, Atlanta, GA 30301" +265147,34in Ultrawide Monitor,1,379.99,10/12/19 15:33,"851 6th St, Atlanta, GA 30301" +265148,Bose SoundSport Headphones,1,99.99,10/02/19 09:44,"451 Hickory St, San Francisco, CA 94016" +265149,AAA Batteries (4-pack),1,2.99,10/18/19 12:48,"994 Main St, San Francisco, CA 94016" +265150,27in FHD Monitor,1,149.99,10/18/19 18:52,"652 Pine St, Boston, MA 02215" +265151,AAA Batteries (4-pack),2,2.99,10/21/19 10:41,"175 Maple St, New York City, NY 10001" +265152,Apple Airpods Headphones,1,150,10/26/19 10:43,"970 Jackson St, Boston, MA 02215" +265153,Apple Airpods Headphones,1,150,10/09/19 16:31,"991 Main St, New York City, NY 10001" +265154,Lightning Charging Cable,1,14.95,10/21/19 21:55,"438 Johnson St, San Francisco, CA 94016" +265155,AAA Batteries (4-pack),1,2.99,10/13/19 14:01,"494 Wilson St, San Francisco, CA 94016" +265156,Apple Airpods Headphones,1,150,10/05/19 21:09,"833 Madison St, Boston, MA 02215" +265157,Google Phone,1,600,10/03/19 20:37,"60 2nd St, Boston, MA 02215" +265158,Apple Airpods Headphones,1,150,10/13/19 13:32,"716 Jackson St, San Francisco, CA 94016" +265159,Wired Headphones,1,11.99,10/05/19 19:48,"794 Meadow St, New York City, NY 10001" +265160,USB-C Charging Cable,1,11.95,10/17/19 19:40,"312 9th St, Portland, OR 97035" +265161,Wired Headphones,1,11.99,10/13/19 13:30,"740 Center St, San Francisco, CA 94016" +265162,20in Monitor,1,109.99,10/19/19 18:32,"291 Ridge St, New York City, NY 10001" +265163,34in Ultrawide Monitor,1,379.99,10/14/19 11:21,"595 Jefferson St, Seattle, WA 98101" +265164,Bose SoundSport Headphones,1,99.99,10/16/19 23:19,"148 4th St, San Francisco, CA 94016" +265165,iPhone,1,700,10/31/19 07:49,"187 5th St, Portland, OR 97035" +265166,AAA Batteries (4-pack),1,2.99,10/02/19 11:22,"756 Hickory St, San Francisco, CA 94016" +265167,AAA Batteries (4-pack),1,2.99,10/14/19 23:21,"803 8th St, Portland, OR 97035" +265168,AAA Batteries (4-pack),1,2.99,10/08/19 19:09,"971 Hickory St, Atlanta, GA 30301" +265168,Wired Headphones,1,11.99,10/08/19 19:09,"971 Hickory St, Atlanta, GA 30301" +265169,Bose SoundSport Headphones,1,99.99,10/28/19 20:36,"490 1st St, New York City, NY 10001" +265170,AAA Batteries (4-pack),2,2.99,10/08/19 10:21,"425 Spruce St, Seattle, WA 98101" +265171,Wired Headphones,1,11.99,10/31/19 12:57,"154 14th St, San Francisco, CA 94016" +265172,Wired Headphones,1,11.99,10/24/19 17:03,"942 Washington St, Seattle, WA 98101" +265173,AAA Batteries (4-pack),1,2.99,10/24/19 12:28,"613 Pine St, New York City, NY 10001" +265174,34in Ultrawide Monitor,1,379.99,10/15/19 15:29,"258 9th St, Atlanta, GA 30301" +265175,iPhone,1,700,10/06/19 09:08,"724 Madison St, Portland, OR 97035" +265176,AAA Batteries (4-pack),2,2.99,10/12/19 07:31,"41 4th St, Dallas, TX 75001" +265177,USB-C Charging Cable,1,11.95,10/13/19 14:09,"59 Walnut St, Los Angeles, CA 90001" +265178,USB-C Charging Cable,1,11.95,10/10/19 04:38,"686 Spruce St, San Francisco, CA 94016" +265179,Lightning Charging Cable,1,14.95,10/30/19 09:13,"348 Willow St, San Francisco, CA 94016" +265180,USB-C Charging Cable,1,11.95,10/29/19 00:32,"547 Spruce St, Boston, MA 02215" +265181,Bose SoundSport Headphones,1,99.99,10/01/19 18:39,"160 Church St, Atlanta, GA 30301" +265182,27in 4K Gaming Monitor,1,389.99,10/05/19 21:39,"883 Forest St, Los Angeles, CA 90001" +265183,Bose SoundSport Headphones,1,99.99,10/24/19 18:58,"819 Highland St, Dallas, TX 75001" +265184,Bose SoundSport Headphones,1,99.99,10/20/19 12:15,"709 Park St, San Francisco, CA 94016" +265185,Bose SoundSport Headphones,1,99.99,10/22/19 15:16,"820 River St, San Francisco, CA 94016" +265186,Lightning Charging Cable,1,14.95,10/08/19 18:38,"409 11th St, Boston, MA 02215" +265187,Lightning Charging Cable,2,14.95,10/06/19 06:44,"521 Willow St, San Francisco, CA 94016" +265188,AAA Batteries (4-pack),1,2.99,10/28/19 21:58,"34 Willow St, Austin, TX 73301" +265189,34in Ultrawide Monitor,1,379.99,10/20/19 00:42,"738 Hickory St, San Francisco, CA 94016" +265190,Apple Airpods Headphones,1,150,10/15/19 13:29,"945 Washington St, Austin, TX 73301" +265191,Wired Headphones,1,11.99,10/24/19 22:55,"493 Washington St, Boston, MA 02215" +265192,27in FHD Monitor,1,149.99,10/24/19 20:20,"883 8th St, New York City, NY 10001" +265193,LG Dryer,1,600.0,10/02/19 17:42,"441 Adams St, New York City, NY 10001" +265194,ThinkPad Laptop,1,999.99,10/07/19 15:40,"903 Chestnut St, Boston, MA 02215" +265195,27in 4K Gaming Monitor,1,389.99,10/03/19 12:10,"284 Lake St, San Francisco, CA 94016" +265196,AA Batteries (4-pack),1,3.84,10/10/19 11:19,"164 1st St, Los Angeles, CA 90001" +265197,Flatscreen TV,1,300,10/03/19 18:20,"724 Cherry St, Los Angeles, CA 90001" +265198,Apple Airpods Headphones,1,150,10/16/19 14:51,"629 9th St, Dallas, TX 75001" +265199,AA Batteries (4-pack),1,3.84,10/04/19 20:14,"708 13th St, Boston, MA 02215" +265200,AA Batteries (4-pack),1,3.84,10/01/19 20:58,"334 Meadow St, New York City, NY 10001" +265201,Apple Airpods Headphones,1,150,10/11/19 22:13,"37 Church St, Atlanta, GA 30301" +265202,Apple Airpods Headphones,1,150,10/11/19 15:37,"830 Hill St, Boston, MA 02215" +265203,Wired Headphones,2,11.99,10/09/19 21:12,"873 Lake St, Boston, MA 02215" +265204,iPhone,1,700,10/01/19 22:58,"420 4th St, San Francisco, CA 94016" +265205,USB-C Charging Cable,1,11.95,10/04/19 19:08,"727 Wilson St, San Francisco, CA 94016" +265206,AA Batteries (4-pack),1,3.84,10/06/19 18:28,"940 Cedar St, Portland, OR 97035" +265207,Google Phone,1,600,10/19/19 17:30,"206 Lakeview St, Dallas, TX 75001" +265208,AAA Batteries (4-pack),3,2.99,10/08/19 21:52,"285 Washington St, Austin, TX 73301" +265209,LG Dryer,1,600.0,10/04/19 09:50,"290 West St, Austin, TX 73301" +265210,Lightning Charging Cable,1,14.95,10/21/19 17:22,"308 Lakeview St, Seattle, WA 98101" +265211,27in FHD Monitor,1,149.99,10/03/19 21:57,"187 Pine St, Boston, MA 02215" +265212,27in FHD Monitor,1,149.99,10/09/19 13:34,"506 Hickory St, San Francisco, CA 94016" +265213,27in 4K Gaming Monitor,1,389.99,10/29/19 17:11,"534 13th St, New York City, NY 10001" +265214,Google Phone,1,600,10/04/19 06:53,"672 1st St, New York City, NY 10001" +265214,Wired Headphones,1,11.99,10/04/19 06:53,"672 1st St, New York City, NY 10001" +265215,ThinkPad Laptop,1,999.99,10/02/19 19:30,"705 Cedar St, Portland, ME 04101" +265216,Lightning Charging Cable,1,14.95,10/24/19 16:33,"539 Spruce St, Los Angeles, CA 90001" +265217,USB-C Charging Cable,1,11.95,10/18/19 13:41,"500 Main St, Portland, OR 97035" +265218,AA Batteries (4-pack),3,3.84,10/10/19 22:39,"336 North St, Boston, MA 02215" +265219,Lightning Charging Cable,1,14.95,10/01/19 10:48,"746 Walnut St, Boston, MA 02215" +265220,34in Ultrawide Monitor,1,379.99,10/24/19 11:47,"481 6th St, San Francisco, CA 94016" +265221,USB-C Charging Cable,1,11.95,10/21/19 22:26,"20 Ridge St, Boston, MA 02215" +265222,AAA Batteries (4-pack),1,2.99,10/14/19 13:42,"714 Ridge St, San Francisco, CA 94016" +265222,Apple Airpods Headphones,1,150,10/14/19 13:42,"714 Ridge St, San Francisco, CA 94016" +265223,Lightning Charging Cable,1,14.95,10/17/19 15:54,"392 12th St, San Francisco, CA 94016" +265224,Wired Headphones,1,11.99,10/23/19 13:04,"313 Spruce St, New York City, NY 10001" +265225,iPhone,1,700,10/02/19 14:53,"853 Main St, Austin, TX 73301" +265226,Bose SoundSport Headphones,1,99.99,10/26/19 12:28,"964 10th St, Boston, MA 02215" +265227,USB-C Charging Cable,1,11.95,10/09/19 12:21,"805 Wilson St, Dallas, TX 75001" +265228,27in FHD Monitor,1,149.99,10/23/19 12:05,"329 12th St, Atlanta, GA 30301" +265229,ThinkPad Laptop,1,999.99,10/18/19 20:47,"459 13th St, San Francisco, CA 94016" +265230,27in FHD Monitor,1,149.99,10/13/19 15:07,"388 Elm St, San Francisco, CA 94016" +265230,Lightning Charging Cable,1,14.95,10/13/19 15:07,"388 Elm St, San Francisco, CA 94016" +265231,ThinkPad Laptop,1,999.99,10/11/19 08:37,"671 Lakeview St, Seattle, WA 98101" +265232,Macbook Pro Laptop,1,1700,10/06/19 19:08,"679 11th St, New York City, NY 10001" +265233,Apple Airpods Headphones,1,150,10/18/19 10:09,"641 Cherry St, San Francisco, CA 94016" +265234,Lightning Charging Cable,1,14.95,10/15/19 14:18,"606 7th St, New York City, NY 10001" +265235,USB-C Charging Cable,1,11.95,10/26/19 22:39,"116 Adams St, San Francisco, CA 94016" +265236,AAA Batteries (4-pack),3,2.99,10/21/19 08:32,"250 Lake St, Boston, MA 02215" +265237,AAA Batteries (4-pack),1,2.99,10/07/19 10:57,"468 Jefferson St, New York City, NY 10001" +265238,Apple Airpods Headphones,1,150,10/21/19 20:56,"321 Willow St, Los Angeles, CA 90001" +265239,Bose SoundSport Headphones,1,99.99,10/03/19 09:02,"894 Madison St, Los Angeles, CA 90001" +265240,Wired Headphones,1,11.99,10/28/19 13:33,"225 West St, Seattle, WA 98101" +265241,Apple Airpods Headphones,1,150,10/07/19 10:50,"22 Adams St, New York City, NY 10001" +265242,AAA Batteries (4-pack),1,2.99,10/07/19 11:39,"860 12th St, Los Angeles, CA 90001" +265243,ThinkPad Laptop,1,999.99,10/31/19 22:16,"753 1st St, San Francisco, CA 94016" +265244,Bose SoundSport Headphones,1,99.99,10/23/19 12:34,"610 West St, Austin, TX 73301" +265245,Lightning Charging Cable,1,14.95,10/12/19 15:09,"159 Church St, Boston, MA 02215" +265246,Flatscreen TV,1,300,10/06/19 16:29,"946 Madison St, New York City, NY 10001" +265247,27in 4K Gaming Monitor,1,389.99,10/07/19 14:23,"863 Chestnut St, San Francisco, CA 94016" +265248,AA Batteries (4-pack),1,3.84,10/31/19 01:10,"389 Maple St, Los Angeles, CA 90001" +265249,27in FHD Monitor,1,149.99,10/25/19 23:45,"220 Jackson St, Boston, MA 02215" +265250,Wired Headphones,1,11.99,10/09/19 19:50,"688 14th St, Boston, MA 02215" +265251,Bose SoundSport Headphones,1,99.99,10/01/19 18:00,"167 11th St, New York City, NY 10001" +265252,Bose SoundSport Headphones,1,99.99,10/19/19 15:11,"543 12th St, San Francisco, CA 94016" +265253,iPhone,1,700,10/12/19 10:19,"660 2nd St, Los Angeles, CA 90001" +265254,Wired Headphones,1,11.99,10/22/19 17:23,"558 Church St, Seattle, WA 98101" +265255,Apple Airpods Headphones,1,150,10/02/19 11:32,"515 Center St, New York City, NY 10001" +265256,Lightning Charging Cable,1,14.95,10/03/19 00:21,"185 Forest St, Portland, OR 97035" +265257,Lightning Charging Cable,1,14.95,10/05/19 04:52,"525 7th St, Los Angeles, CA 90001" +265258,USB-C Charging Cable,1,11.95,10/24/19 18:59,"862 Spruce St, Los Angeles, CA 90001" +265259,Wired Headphones,1,11.99,10/09/19 16:21,"574 Lake St, Atlanta, GA 30301" +265260,Lightning Charging Cable,1,14.95,10/16/19 12:41,"467 West St, Atlanta, GA 30301" +265261,AA Batteries (4-pack),1,3.84,10/29/19 17:02,"827 Madison St, San Francisco, CA 94016" +265262,Bose SoundSport Headphones,1,99.99,10/12/19 09:18,"437 6th St, Los Angeles, CA 90001" +265263,Lightning Charging Cable,1,14.95,10/09/19 11:30,"987 Willow St, Boston, MA 02215" +265264,AAA Batteries (4-pack),2,2.99,10/15/19 04:55,"942 Willow St, Portland, OR 97035" +265265,AA Batteries (4-pack),1,3.84,10/09/19 20:03,"289 Highland St, Seattle, WA 98101" +265266,Wired Headphones,1,11.99,10/20/19 23:02,"167 Hill St, San Francisco, CA 94016" +265267,27in 4K Gaming Monitor,1,389.99,10/06/19 02:56,"115 West St, Los Angeles, CA 90001" +265268,iPhone,1,700,10/05/19 15:47,"983 12th St, Atlanta, GA 30301" +265269,Apple Airpods Headphones,1,150,10/21/19 19:45,"126 Adams St, San Francisco, CA 94016" +265270,USB-C Charging Cable,1,11.95,10/02/19 21:37,"574 Elm St, Portland, OR 97035" +265271,AAA Batteries (4-pack),2,2.99,10/02/19 12:52,"574 Hickory St, San Francisco, CA 94016" +265272,Lightning Charging Cable,1,14.95,10/06/19 18:21,"985 11th St, San Francisco, CA 94016" +265273,AA Batteries (4-pack),2,3.84,10/31/19 10:52,"108 7th St, New York City, NY 10001" +265273,iPhone,1,700,10/31/19 10:52,"108 7th St, New York City, NY 10001" +265274,USB-C Charging Cable,1,11.95,10/16/19 12:11,"986 Lincoln St, New York City, NY 10001" +265275,Bose SoundSport Headphones,1,99.99,10/01/19 10:39,"821 8th St, San Francisco, CA 94016" +265276,Wired Headphones,1,11.99,10/12/19 09:03,"419 Church St, Dallas, TX 75001" +265277,AAA Batteries (4-pack),1,2.99,10/22/19 08:50,"161 Church St, New York City, NY 10001" +265277,Google Phone,1,600,10/22/19 08:50,"161 Church St, New York City, NY 10001" +265278,Lightning Charging Cable,1,14.95,10/13/19 21:41,"130 4th St, Seattle, WA 98101" +265279,Flatscreen TV,1,300,10/08/19 06:51,"830 Pine St, New York City, NY 10001" +265280,27in 4K Gaming Monitor,1,389.99,10/09/19 11:36,"535 Forest St, Los Angeles, CA 90001" +265281,AA Batteries (4-pack),2,3.84,10/31/19 07:24,"312 North St, San Francisco, CA 94016" +265282,27in FHD Monitor,1,149.99,10/03/19 17:32,"865 8th St, Boston, MA 02215" +265283,Flatscreen TV,1,300,10/27/19 13:49,"842 13th St, San Francisco, CA 94016" +265284,Lightning Charging Cable,2,14.95,10/11/19 12:36,"584 1st St, Los Angeles, CA 90001" +265285,AA Batteries (4-pack),1,3.84,10/02/19 14:49,"913 Elm St, Boston, MA 02215" +265286,Apple Airpods Headphones,1,150,10/08/19 18:15,"919 Forest St, New York City, NY 10001" +265287,AAA Batteries (4-pack),1,2.99,10/17/19 20:11,"580 Jefferson St, San Francisco, CA 94016" +265288,34in Ultrawide Monitor,1,379.99,10/12/19 07:22,"930 Adams St, Boston, MA 02215" +265289,USB-C Charging Cable,1,11.95,10/08/19 17:33,"694 6th St, San Francisco, CA 94016" +265290,Wired Headphones,1,11.99,10/23/19 18:57,"811 6th St, Seattle, WA 98101" +265291,Lightning Charging Cable,1,14.95,10/03/19 00:11,"591 Cherry St, Los Angeles, CA 90001" +265292,Wired Headphones,1,11.99,10/16/19 21:11,"351 Jackson St, New York City, NY 10001" +265293,Google Phone,1,600,10/17/19 17:39,"393 South St, Los Angeles, CA 90001" +265293,USB-C Charging Cable,1,11.95,10/17/19 17:39,"393 South St, Los Angeles, CA 90001" +265294,Wired Headphones,1,11.99,10/15/19 17:48,"672 Lincoln St, San Francisco, CA 94016" +265295,20in Monitor,1,109.99,10/06/19 17:11,"388 Hill St, Atlanta, GA 30301" +265296,AAA Batteries (4-pack),1,2.99,10/15/19 14:33,"307 Spruce St, Portland, OR 97035" +265297,AA Batteries (4-pack),1,3.84,10/19/19 18:30,"844 12th St, Austin, TX 73301" +265298,USB-C Charging Cable,1,11.95,10/17/19 02:20,"655 14th St, Seattle, WA 98101" +265299,AAA Batteries (4-pack),2,2.99,10/07/19 00:18,"627 Ridge St, Los Angeles, CA 90001" +265300,Bose SoundSport Headphones,1,99.99,10/19/19 15:42,"827 1st St, New York City, NY 10001" +265301,USB-C Charging Cable,1,11.95,10/06/19 17:28,"100 11th St, Los Angeles, CA 90001" +265302,Bose SoundSport Headphones,1,99.99,10/29/19 17:30,"548 Johnson St, New York City, NY 10001" +265303,Bose SoundSport Headphones,1,99.99,10/06/19 07:55,"130 Park St, San Francisco, CA 94016" +265304,Apple Airpods Headphones,1,150,10/30/19 08:23,"892 Walnut St, Los Angeles, CA 90001" +265305,AAA Batteries (4-pack),2,2.99,10/29/19 11:37,"316 Willow St, New York City, NY 10001" +265306,34in Ultrawide Monitor,1,379.99,10/11/19 21:59,"430 Jackson St, Austin, TX 73301" +265307,USB-C Charging Cable,1,11.95,10/21/19 20:54,"268 Ridge St, Dallas, TX 75001" +265308,AAA Batteries (4-pack),1,2.99,10/11/19 19:29,"224 7th St, Boston, MA 02215" +265309,AA Batteries (4-pack),2,3.84,10/19/19 14:50,"185 Chestnut St, Los Angeles, CA 90001" +265310,Wired Headphones,1,11.99,10/18/19 20:27,"763 Madison St, San Francisco, CA 94016" +265311,Wired Headphones,1,11.99,10/01/19 19:41,"872 12th St, New York City, NY 10001" +265312,Apple Airpods Headphones,1,150,10/05/19 16:44,"86 Elm St, Los Angeles, CA 90001" +265313,Lightning Charging Cable,1,14.95,10/15/19 14:48,"834 Walnut St, Boston, MA 02215" +265314,27in 4K Gaming Monitor,1,389.99,10/02/19 18:23,"179 Johnson St, Seattle, WA 98101" +265315,LG Washing Machine,1,600.0,10/20/19 08:47,"310 Washington St, New York City, NY 10001" +265316,ThinkPad Laptop,1,999.99,10/16/19 07:19,"203 Highland St, Dallas, TX 75001" +265317,Lightning Charging Cable,1,14.95,10/30/19 07:55,"859 Lakeview St, Seattle, WA 98101" +265318,Lightning Charging Cable,1,14.95,10/01/19 13:45,"110 14th St, San Francisco, CA 94016" +265319,27in FHD Monitor,2,149.99,10/10/19 10:31,"749 Meadow St, Los Angeles, CA 90001" +265320,34in Ultrawide Monitor,1,379.99,10/31/19 21:34,"334 Johnson St, Seattle, WA 98101" +265321,iPhone,1,700,10/17/19 08:05,"328 Elm St, Los Angeles, CA 90001" +265322,iPhone,1,700,10/04/19 20:22,"17 10th St, San Francisco, CA 94016" +265323,Google Phone,1,600,10/05/19 14:08,"914 Jackson St, San Francisco, CA 94016" +265324,AA Batteries (4-pack),1,3.84,10/04/19 07:27,"36 Chestnut St, Seattle, WA 98101" +265325,Wired Headphones,1,11.99,10/29/19 10:35,"665 11th St, Los Angeles, CA 90001" +265326,Lightning Charging Cable,1,14.95,10/12/19 13:18,"655 Jefferson St, Austin, TX 73301" +265326,Google Phone,1,600,10/12/19 13:18,"655 Jefferson St, Austin, TX 73301" +265327,iPhone,1,700,10/13/19 21:08,"560 Spruce St, Los Angeles, CA 90001" +265328,AA Batteries (4-pack),1,3.84,10/07/19 16:17,"880 Center St, Boston, MA 02215" +265329,Apple Airpods Headphones,1,150,10/09/19 11:24,"433 Adams St, Austin, TX 73301" +265330,USB-C Charging Cable,1,11.95,10/18/19 11:20,"474 Wilson St, New York City, NY 10001" +265331,Lightning Charging Cable,1,14.95,10/31/19 21:40,"641 Cedar St, Dallas, TX 75001" +265332,Lightning Charging Cable,1,14.95,10/24/19 11:39,"802 Johnson St, San Francisco, CA 94016" +265333,Lightning Charging Cable,1,14.95,10/02/19 10:51,"366 Hill St, San Francisco, CA 94016" +265334,ThinkPad Laptop,1,999.99,10/23/19 19:41,"51 9th St, Portland, ME 04101" +265335,Lightning Charging Cable,1,14.95,10/01/19 18:35,"251 Lincoln St, Austin, TX 73301" +265336,27in FHD Monitor,1,149.99,10/11/19 09:53,"281 Hill St, San Francisco, CA 94016" +265337,Lightning Charging Cable,1,14.95,10/01/19 10:22,"767 River St, New York City, NY 10001" +265338,Lightning Charging Cable,1,14.95,10/02/19 10:56,"752 8th St, Atlanta, GA 30301" +265339,Apple Airpods Headphones,1,150,10/31/19 17:28,"94 Dogwood St, San Francisco, CA 94016" +265340,20in Monitor,1,109.99,10/01/19 22:40,"199 Elm St, San Francisco, CA 94016" +265341,Lightning Charging Cable,1,14.95,10/30/19 10:32,"175 5th St, Dallas, TX 75001" +265342,Lightning Charging Cable,1,14.95,10/11/19 14:33,"23 Hill St, San Francisco, CA 94016" +265343,Lightning Charging Cable,1,14.95,10/23/19 21:11,"415 Sunset St, New York City, NY 10001" +265344,Bose SoundSport Headphones,1,99.99,10/21/19 13:00,"938 Ridge St, Los Angeles, CA 90001" +265345,USB-C Charging Cable,1,11.95,10/29/19 16:33,"137 Chestnut St, Los Angeles, CA 90001" +265346,Lightning Charging Cable,1,14.95,10/11/19 23:22,"369 Lakeview St, San Francisco, CA 94016" +265347,Lightning Charging Cable,1,14.95,10/11/19 15:10,"672 5th St, Seattle, WA 98101" +265348,Wired Headphones,1,11.99,10/19/19 21:12,"264 Ridge St, San Francisco, CA 94016" +265349,Apple Airpods Headphones,1,150,10/25/19 18:22,"462 Johnson St, San Francisco, CA 94016" +265350,USB-C Charging Cable,2,11.95,10/04/19 01:54,"144 Pine St, Atlanta, GA 30301" +265351,USB-C Charging Cable,1,11.95,10/14/19 00:15,"448 9th St, Austin, TX 73301" +265352,Bose SoundSport Headphones,1,99.99,10/23/19 12:11,"392 Pine St, Dallas, TX 75001" +265353,Apple Airpods Headphones,1,150,10/15/19 12:26,"151 6th St, New York City, NY 10001" +265354,Bose SoundSport Headphones,1,99.99,10/16/19 17:45,"906 Lakeview St, Los Angeles, CA 90001" +265355,Lightning Charging Cable,1,14.95,10/24/19 20:05,"329 West St, San Francisco, CA 94016" +265355,AAA Batteries (4-pack),1,2.99,10/24/19 20:05,"329 West St, San Francisco, CA 94016" +265356,Vareebadd Phone,1,400,10/19/19 15:49,"933 9th St, Austin, TX 73301" +265357,USB-C Charging Cable,1,11.95,10/05/19 18:29,"888 Jackson St, Austin, TX 73301" +265358,AA Batteries (4-pack),2,3.84,10/09/19 08:50,"164 West St, New York City, NY 10001" +265359,USB-C Charging Cable,1,11.95,10/20/19 12:43,"745 6th St, San Francisco, CA 94016" +265360,AAA Batteries (4-pack),1,2.99,10/24/19 07:20,"651 8th St, Boston, MA 02215" +265361,USB-C Charging Cable,1,11.95,10/05/19 21:14,"437 Wilson St, San Francisco, CA 94016" +265362,Wired Headphones,1,11.99,10/08/19 15:22,"537 Lincoln St, Seattle, WA 98101" +265363,27in FHD Monitor,1,149.99,10/21/19 22:51,"456 10th St, Austin, TX 73301" +265364,USB-C Charging Cable,1,11.95,10/16/19 12:34,"401 Center St, Dallas, TX 75001" +265365,USB-C Charging Cable,1,11.95,10/12/19 18:52,"2 Spruce St, New York City, NY 10001" +265366,Apple Airpods Headphones,1,150,10/29/19 14:39,"275 6th St, Boston, MA 02215" +265367,Bose SoundSport Headphones,1,99.99,10/31/19 12:50,"831 Dogwood St, San Francisco, CA 94016" +265368,AAA Batteries (4-pack),2,2.99,10/28/19 09:29,"358 Madison St, New York City, NY 10001" +265369,Google Phone,1,600,10/31/19 22:56,"432 13th St, Seattle, WA 98101" +265369,USB-C Charging Cable,2,11.95,10/31/19 22:56,"432 13th St, Seattle, WA 98101" +265370,USB-C Charging Cable,1,11.95,10/19/19 18:44,"194 Adams St, San Francisco, CA 94016" +265371,Lightning Charging Cable,1,14.95,10/30/19 13:27,"276 Meadow St, San Francisco, CA 94016" +265372,AAA Batteries (4-pack),5,2.99,10/25/19 10:10,"286 West St, Seattle, WA 98101" +265373,20in Monitor,1,109.99,10/15/19 10:13,"502 Jefferson St, San Francisco, CA 94016" +265374,AAA Batteries (4-pack),2,2.99,10/24/19 09:16,"701 13th St, San Francisco, CA 94016" +265375,34in Ultrawide Monitor,1,379.99,10/30/19 13:52,"260 Adams St, San Francisco, CA 94016" +265376,Flatscreen TV,1,300,10/01/19 22:20,"863 Spruce St, Seattle, WA 98101" +265377,Lightning Charging Cable,1,14.95,10/19/19 12:45,"606 7th St, Austin, TX 73301" +265378,AA Batteries (4-pack),1,3.84,10/20/19 22:57,"613 Highland St, San Francisco, CA 94016" +265379,AA Batteries (4-pack),1,3.84,10/09/19 18:49,"796 1st St, Los Angeles, CA 90001" +265380,iPhone,1,700,10/24/19 11:51,"641 1st St, Atlanta, GA 30301" +265381,USB-C Charging Cable,1,11.95,10/24/19 16:58,"394 Lincoln St, New York City, NY 10001" +265382,AAA Batteries (4-pack),1,2.99,10/25/19 16:11,"214 1st St, Seattle, WA 98101" +265383,Lightning Charging Cable,1,14.95,10/05/19 09:00,"813 6th St, New York City, NY 10001" +265384,Bose SoundSport Headphones,1,99.99,10/20/19 22:55,"803 Highland St, San Francisco, CA 94016" +265385,27in FHD Monitor,1,149.99,10/20/19 16:08,"216 Maple St, San Francisco, CA 94016" +265386,AA Batteries (4-pack),1,3.84,10/11/19 11:44,"117 Washington St, Boston, MA 02215" +265387,Lightning Charging Cable,1,14.95,10/31/19 00:29,"341 4th St, Los Angeles, CA 90001" +265388,Lightning Charging Cable,1,14.95,10/19/19 09:02,"996 Forest St, New York City, NY 10001" +265389,34in Ultrawide Monitor,1,379.99,10/24/19 09:37,"777 Jefferson St, San Francisco, CA 94016" +265390,Lightning Charging Cable,1,14.95,10/23/19 08:43,"27 Adams St, Boston, MA 02215" +265391,Wired Headphones,1,11.99,10/09/19 21:26,"152 South St, New York City, NY 10001" +265392,Wired Headphones,1,11.99,10/24/19 01:36,"560 Jefferson St, Los Angeles, CA 90001" +265393,Wired Headphones,2,11.99,10/19/19 15:49,"165 13th St, San Francisco, CA 94016" +265394,Wired Headphones,1,11.99,10/09/19 13:38,"473 Forest St, Atlanta, GA 30301" +265395,Wired Headphones,1,11.99,10/14/19 21:18,"281 Jackson St, San Francisco, CA 94016" +265396,USB-C Charging Cable,1,11.95,10/22/19 19:30,"321 Cherry St, New York City, NY 10001" +265397,27in 4K Gaming Monitor,1,389.99,10/28/19 14:13,"669 7th St, San Francisco, CA 94016" +265398,USB-C Charging Cable,1,11.95,10/18/19 17:55,"830 Jefferson St, San Francisco, CA 94016" +265399,USB-C Charging Cable,1,11.95,10/17/19 16:14,"392 Lake St, New York City, NY 10001" +265400,AA Batteries (4-pack),1,3.84,10/03/19 10:41,"332 Hill St, Seattle, WA 98101" +265401,Bose SoundSport Headphones,1,99.99,10/25/19 23:18,"884 Lakeview St, New York City, NY 10001" +265402,Macbook Pro Laptop,1,1700,10/29/19 22:15,"755 Walnut St, San Francisco, CA 94016" +265403,Wired Headphones,1,11.99,10/31/19 23:41,"649 Elm St, New York City, NY 10001" +265404,Bose SoundSport Headphones,1,99.99,10/27/19 10:58,"294 5th St, Portland, OR 97035" +265405,Wired Headphones,1,11.99,10/31/19 19:44,"870 Main St, San Francisco, CA 94016" +265406,AAA Batteries (4-pack),1,2.99,10/01/19 11:29,"468 Chestnut St, San Francisco, CA 94016" +265407,Bose SoundSport Headphones,1,99.99,10/21/19 22:18,"467 Walnut St, Atlanta, GA 30301" +265408,AA Batteries (4-pack),1,3.84,10/05/19 13:32,"885 West St, San Francisco, CA 94016" +265409,Wired Headphones,1,11.99,10/27/19 15:08,"557 Washington St, Dallas, TX 75001" +265410,Flatscreen TV,1,300,10/05/19 10:53,"39 Dogwood St, Austin, TX 73301" +265411,Google Phone,1,600,10/02/19 08:48,"303 Meadow St, Boston, MA 02215" +265412,AA Batteries (4-pack),1,3.84,10/30/19 13:56,"347 Ridge St, New York City, NY 10001" +265413,ThinkPad Laptop,1,999.99,10/19/19 19:31,"408 11th St, Portland, ME 04101" +265414,AAA Batteries (4-pack),1,2.99,10/08/19 23:07,"530 Cedar St, San Francisco, CA 94016" +265415,Apple Airpods Headphones,1,150,10/31/19 20:18,"487 North St, Boston, MA 02215" +265416,AAA Batteries (4-pack),2,2.99,10/30/19 19:15,"929 14th St, Dallas, TX 75001" +265417,Apple Airpods Headphones,1,150,10/09/19 16:52,"241 1st St, Boston, MA 02215" +265418,AA Batteries (4-pack),1,3.84,10/20/19 13:20,"346 Hill St, San Francisco, CA 94016" +265419,iPhone,1,700,10/18/19 08:06,"861 Cherry St, Los Angeles, CA 90001" +265419,Wired Headphones,1,11.99,10/18/19 08:06,"861 Cherry St, Los Angeles, CA 90001" +265420,Lightning Charging Cable,1,14.95,10/16/19 20:40,"320 Lakeview St, Atlanta, GA 30301" +265421,Bose SoundSport Headphones,1,99.99,10/01/19 09:04,"503 Madison St, New York City, NY 10001" +265422,Wired Headphones,1,11.99,10/18/19 09:23,"985 9th St, Dallas, TX 75001" +265423,27in 4K Gaming Monitor,1,389.99,10/10/19 16:07,"841 1st St, Los Angeles, CA 90001" +265424,Wired Headphones,2,11.99,10/30/19 00:05,"376 Chestnut St, New York City, NY 10001" +265425,Bose SoundSport Headphones,1,99.99,10/04/19 23:07,"590 Center St, Dallas, TX 75001" +265426,Lightning Charging Cable,1,14.95,10/28/19 10:48,"895 Jefferson St, San Francisco, CA 94016" +265427,Macbook Pro Laptop,1,1700,10/23/19 10:32,"464 Sunset St, San Francisco, CA 94016" +265428,Wired Headphones,1,11.99,10/01/19 09:34,"686 5th St, Portland, OR 97035" +265429,AA Batteries (4-pack),1,3.84,10/14/19 07:54,"67 North St, Dallas, TX 75001" +265430,Apple Airpods Headphones,1,150,10/05/19 07:38,"276 Johnson St, Seattle, WA 98101" +265431,27in 4K Gaming Monitor,1,389.99,10/01/19 18:03,"851 Center St, Austin, TX 73301" +265432,Lightning Charging Cable,1,14.95,10/31/19 07:29,"539 8th St, New York City, NY 10001" +265433,Lightning Charging Cable,2,14.95,10/27/19 15:12,"492 14th St, Atlanta, GA 30301" +265434,Apple Airpods Headphones,1,150,10/27/19 11:35,"203 Cedar St, San Francisco, CA 94016" +265435,AA Batteries (4-pack),1,3.84,10/22/19 08:41,"974 West St, Portland, ME 04101" +265436,Wired Headphones,1,11.99,10/10/19 06:16,"549 11th St, Los Angeles, CA 90001" +265437,Macbook Pro Laptop,1,1700,10/26/19 13:39,"79 6th St, San Francisco, CA 94016" +265438,Bose SoundSport Headphones,1,99.99,10/04/19 14:17,"168 Pine St, San Francisco, CA 94016" +265439,27in FHD Monitor,1,149.99,10/03/19 20:46,"200 Wilson St, Los Angeles, CA 90001" +265440,Wired Headphones,1,11.99,10/21/19 11:25,"288 Dogwood St, Seattle, WA 98101" +265441,Google Phone,1,600,10/25/19 12:04,"79 8th St, Seattle, WA 98101" +265442,Bose SoundSport Headphones,1,99.99,10/25/19 10:09,"980 6th St, New York City, NY 10001" +265443,20in Monitor,1,109.99,10/30/19 18:05,"954 Church St, Seattle, WA 98101" +265444,Wired Headphones,1,11.99,10/12/19 11:20,"196 Lake St, Seattle, WA 98101" +265445,Bose SoundSport Headphones,1,99.99,10/16/19 11:51,"915 Hill St, Austin, TX 73301" +265446,27in 4K Gaming Monitor,1,389.99,10/07/19 14:06,"536 Church St, San Francisco, CA 94016" +265447,ThinkPad Laptop,1,999.99,10/22/19 11:51,"563 13th St, New York City, NY 10001" +265448,USB-C Charging Cable,1,11.95,10/06/19 15:59,"33 Main St, New York City, NY 10001" +265449,USB-C Charging Cable,1,11.95,10/21/19 22:42,"81 Forest St, San Francisco, CA 94016" +265450,Lightning Charging Cable,1,14.95,10/07/19 14:27,"161 Hickory St, Dallas, TX 75001" +265451,Apple Airpods Headphones,1,150,10/26/19 12:10,"232 Lakeview St, Los Angeles, CA 90001" +265452,Apple Airpods Headphones,1,150,10/30/19 11:31,"398 Highland St, Austin, TX 73301" +265453,AAA Batteries (4-pack),1,2.99,10/28/19 12:36,"105 Hill St, San Francisco, CA 94016" +265454,AA Batteries (4-pack),1,3.84,10/14/19 11:39,"635 Dogwood St, New York City, NY 10001" +265455,Wired Headphones,1,11.99,10/12/19 04:52,"9 Church St, Atlanta, GA 30301" +265456,27in FHD Monitor,1,149.99,10/04/19 17:06,"974 Highland St, Atlanta, GA 30301" +265457,Wired Headphones,1,11.99,10/27/19 16:07,"508 Adams St, Boston, MA 02215" +265458,Bose SoundSport Headphones,1,99.99,10/20/19 13:59,"662 River St, San Francisco, CA 94016" +265459,AAA Batteries (4-pack),1,2.99,10/13/19 19:09,"418 Cedar St, New York City, NY 10001" +265460,Wired Headphones,1,11.99,10/24/19 08:58,"568 Spruce St, San Francisco, CA 94016" +265461,ThinkPad Laptop,1,999.99,10/14/19 12:16,"903 Lake St, Los Angeles, CA 90001" +265462,Lightning Charging Cable,1,14.95,10/18/19 23:17,"330 Madison St, Los Angeles, CA 90001" +265463,AA Batteries (4-pack),1,3.84,10/03/19 01:37,"486 Chestnut St, Portland, OR 97035" +265464,Apple Airpods Headphones,1,150,10/16/19 14:11,"926 Walnut St, San Francisco, CA 94016" +265465,Wired Headphones,1,11.99,10/29/19 23:35,"397 Willow St, San Francisco, CA 94016" +265466,Google Phone,1,600,10/13/19 11:27,"247 13th St, New York City, NY 10001" +265467,Apple Airpods Headphones,1,150,10/07/19 12:48,"237 14th St, Atlanta, GA 30301" +265468,Vareebadd Phone,1,400,10/31/19 14:15,"271 Ridge St, New York City, NY 10001" +265469,iPhone,1,700,10/24/19 07:39,"57 Church St, Los Angeles, CA 90001" +265470,Apple Airpods Headphones,1,150,10/09/19 09:09,"80 Elm St, Seattle, WA 98101" +265471,Bose SoundSport Headphones,1,99.99,10/10/19 16:49,"754 Jackson St, Atlanta, GA 30301" +265472,Apple Airpods Headphones,1,150,10/16/19 05:20,"867 Church St, Los Angeles, CA 90001" +265473,ThinkPad Laptop,1,999.99,10/23/19 12:45,"765 South St, Dallas, TX 75001" +265474,27in FHD Monitor,1,149.99,10/30/19 18:50,"765 4th St, Portland, ME 04101" +265475,Lightning Charging Cable,2,14.95,10/19/19 22:08,"476 Jefferson St, Dallas, TX 75001" +265476,27in FHD Monitor,1,149.99,10/06/19 23:21,"580 Church St, Los Angeles, CA 90001" +265477,Apple Airpods Headphones,1,150,10/25/19 17:34,"651 Ridge St, New York City, NY 10001" +265478,Wired Headphones,1,11.99,10/21/19 00:13,"570 6th St, Dallas, TX 75001" +265479,USB-C Charging Cable,1,11.95,11/01/19 01:33,"166 West St, San Francisco, CA 94016" +265480,AA Batteries (4-pack),1,3.84,10/15/19 19:37,"257 7th St, New York City, NY 10001" +265481,Macbook Pro Laptop,1,1700,10/07/19 15:19,"788 Hill St, Los Angeles, CA 90001" +265482,Google Phone,1,600,10/06/19 13:25,"990 Madison St, Seattle, WA 98101" +265482,USB-C Charging Cable,1,11.95,10/06/19 13:25,"990 Madison St, Seattle, WA 98101" +265483,Apple Airpods Headphones,1,150,10/21/19 13:31,"221 Hill St, Boston, MA 02215" +265484,34in Ultrawide Monitor,1,379.99,10/19/19 21:51,"568 8th St, Boston, MA 02215" +265485,27in FHD Monitor,1,149.99,10/18/19 13:12,"306 Spruce St, New York City, NY 10001" +265486,AA Batteries (4-pack),1,3.84,10/10/19 18:46,"162 12th St, New York City, NY 10001" +265487,USB-C Charging Cable,1,11.95,10/08/19 03:09,"791 6th St, Los Angeles, CA 90001" +265488,USB-C Charging Cable,1,11.95,10/14/19 13:43,"284 4th St, Los Angeles, CA 90001" +265489,AA Batteries (4-pack),1,3.84,10/11/19 01:38,"241 Maple St, Los Angeles, CA 90001" +265490,Lightning Charging Cable,1,14.95,10/26/19 10:12,"824 Elm St, Los Angeles, CA 90001" +265491,Bose SoundSport Headphones,1,99.99,10/10/19 08:00,"712 Spruce St, San Francisco, CA 94016" +265492,AAA Batteries (4-pack),1,2.99,10/18/19 18:13,"460 Dogwood St, Portland, OR 97035" +265493,Lightning Charging Cable,1,14.95,10/31/19 22:55,"276 Center St, Los Angeles, CA 90001" +265494,AA Batteries (4-pack),1,3.84,10/30/19 12:28,"388 7th St, Boston, MA 02215" +265495,Google Phone,1,600,10/13/19 10:46,"104 Walnut St, Boston, MA 02215" +265496,Apple Airpods Headphones,1,150,10/10/19 20:18,"614 Wilson St, Boston, MA 02215" +265497,USB-C Charging Cable,2,11.95,10/08/19 20:12,"348 Main St, Portland, OR 97035" +265498,Wired Headphones,1,11.99,10/14/19 08:05,"912 Washington St, Austin, TX 73301" +265499,34in Ultrawide Monitor,1,379.99,10/17/19 12:57,"2 Walnut St, Los Angeles, CA 90001" +265500,Lightning Charging Cable,1,14.95,10/05/19 16:58,"277 10th St, Boston, MA 02215" +265501,USB-C Charging Cable,1,11.95,10/25/19 16:53,"140 Church St, Atlanta, GA 30301" +265502,AAA Batteries (4-pack),1,2.99,10/12/19 13:59,"125 Main St, San Francisco, CA 94016" +265503,AA Batteries (4-pack),2,3.84,10/28/19 17:37,"81 Ridge St, Boston, MA 02215" +265504,ThinkPad Laptop,1,999.99,10/18/19 16:15,"800 Lincoln St, San Francisco, CA 94016" +265505,ThinkPad Laptop,1,999.99,10/09/19 21:34,"949 9th St, Austin, TX 73301" +265506,USB-C Charging Cable,1,11.95,10/07/19 16:12,"993 Cherry St, Atlanta, GA 30301" +265507,AAA Batteries (4-pack),1,2.99,10/24/19 07:18,"231 4th St, Los Angeles, CA 90001" +265508,34in Ultrawide Monitor,1,379.99,10/13/19 19:10,"984 10th St, Atlanta, GA 30301" +265509,USB-C Charging Cable,1,11.95,10/22/19 16:47,"812 2nd St, New York City, NY 10001" +265510,USB-C Charging Cable,1,11.95,10/22/19 12:42,"633 Wilson St, San Francisco, CA 94016" +265511,USB-C Charging Cable,1,11.95,10/11/19 16:13,"563 Highland St, New York City, NY 10001" +265512,AA Batteries (4-pack),2,3.84,10/13/19 17:24,"208 Lincoln St, Austin, TX 73301" +265513,Google Phone,1,600,10/15/19 12:54,"281 4th St, San Francisco, CA 94016" +265513,USB-C Charging Cable,1,11.95,10/15/19 12:54,"281 4th St, San Francisco, CA 94016" +265513,27in 4K Gaming Monitor,1,389.99,10/15/19 12:54,"281 4th St, San Francisco, CA 94016" +265514,Wired Headphones,1,11.99,10/14/19 16:53,"784 Center St, San Francisco, CA 94016" +265515,Lightning Charging Cable,1,14.95,10/29/19 17:19,"755 11th St, Portland, OR 97035" +265516,Wired Headphones,1,11.99,10/14/19 22:26,"11 Wilson St, Portland, ME 04101" +265517,AA Batteries (4-pack),1,3.84,10/17/19 05:15,"774 Lincoln St, Dallas, TX 75001" +265518,AAA Batteries (4-pack),1,2.99,10/24/19 23:55,"806 9th St, Boston, MA 02215" +265519,27in FHD Monitor,1,149.99,10/19/19 13:57,"312 7th St, New York City, NY 10001" +265520,AAA Batteries (4-pack),1,2.99,10/18/19 02:57,"239 Main St, Portland, OR 97035" +265521,Wired Headphones,1,11.99,10/14/19 13:11,"386 North St, Boston, MA 02215" +265522,Vareebadd Phone,1,400,10/26/19 10:23,"84 Park St, Portland, OR 97035" +265523,iPhone,1,700,10/29/19 10:35,"518 Meadow St, New York City, NY 10001" +265524,Macbook Pro Laptop,1,1700,10/01/19 19:24,"97 Center St, San Francisco, CA 94016" +265525,Bose SoundSport Headphones,1,99.99,10/02/19 23:58,"973 Center St, Dallas, TX 75001" +265526,Wired Headphones,1,11.99,10/01/19 07:40,"92 West St, Dallas, TX 75001" +265527,Wired Headphones,1,11.99,10/03/19 20:29,"811 North St, Boston, MA 02215" +265528,USB-C Charging Cable,1,11.95,10/17/19 20:55,"676 Willow St, Boston, MA 02215" +265529,Apple Airpods Headphones,1,150,10/07/19 18:55,"492 Adams St, Portland, OR 97035" +265530,Apple Airpods Headphones,1,150,10/03/19 20:35,"743 Johnson St, Dallas, TX 75001" +265531,iPhone,1,700,10/16/19 20:41,"545 Pine St, Portland, OR 97035" +265532,27in FHD Monitor,1,149.99,10/10/19 13:05,"744 Park St, New York City, NY 10001" +265533,34in Ultrawide Monitor,1,379.99,10/08/19 12:25,"967 7th St, San Francisco, CA 94016" +265534,Bose SoundSport Headphones,1,99.99,10/03/19 20:23,"306 Chestnut St, San Francisco, CA 94016" +265535,iPhone,1,700,10/13/19 16:49,"168 Highland St, New York City, NY 10001" +265536,34in Ultrawide Monitor,1,379.99,10/03/19 13:09,"312 Lincoln St, Los Angeles, CA 90001" +265537,Apple Airpods Headphones,1,150,10/14/19 13:23,"387 Lincoln St, Atlanta, GA 30301" +265538,Wired Headphones,1,11.99,10/08/19 10:57,"197 Sunset St, Los Angeles, CA 90001" +265539,20in Monitor,1,109.99,10/24/19 21:07,"681 Cedar St, Atlanta, GA 30301" +265540,AAA Batteries (4-pack),3,2.99,10/19/19 20:34,"157 Center St, Seattle, WA 98101" +265541,34in Ultrawide Monitor,1,379.99,10/04/19 04:14,"515 Hill St, San Francisco, CA 94016" +265542,27in FHD Monitor,1,149.99,10/25/19 14:00,"176 Jefferson St, Seattle, WA 98101" +265543,Wired Headphones,1,11.99,10/05/19 19:24,"978 Meadow St, Portland, OR 97035" +265544,Bose SoundSport Headphones,1,99.99,10/06/19 12:10,"696 Willow St, New York City, NY 10001" +265545,Wired Headphones,1,11.99,10/24/19 01:32,"827 Jefferson St, San Francisco, CA 94016" +265546,Lightning Charging Cable,1,14.95,10/23/19 17:26,"796 2nd St, Boston, MA 02215" +265547,Apple Airpods Headphones,1,150,10/25/19 15:24,"960 Main St, New York City, NY 10001" +265548,27in 4K Gaming Monitor,1,389.99,10/30/19 17:27,"572 11th St, Atlanta, GA 30301" +265549,Lightning Charging Cable,1,14.95,10/25/19 14:46,"451 South St, Portland, ME 04101" +265550,Wired Headphones,1,11.99,10/22/19 14:51,"872 Cherry St, Portland, ME 04101" +265551,Bose SoundSport Headphones,1,99.99,10/11/19 17:41,"293 Spruce St, Boston, MA 02215" +265552,AAA Batteries (4-pack),1,2.99,10/04/19 13:22,"183 Lakeview St, San Francisco, CA 94016" +265553,Lightning Charging Cable,1,14.95,10/24/19 10:08,"847 5th St, New York City, NY 10001" +265554,USB-C Charging Cable,1,11.95,10/04/19 15:45,"177 Lincoln St, New York City, NY 10001" +265555,Wired Headphones,1,11.99,10/20/19 19:52,"191 Elm St, Los Angeles, CA 90001" +265556,Lightning Charging Cable,1,14.95,10/21/19 09:49,"462 Johnson St, Boston, MA 02215" +265557,Macbook Pro Laptop,1,1700,10/04/19 13:49,"574 Meadow St, San Francisco, CA 94016" +265558,27in FHD Monitor,1,149.99,10/18/19 00:34,"909 Hill St, Boston, MA 02215" +265559,Wired Headphones,2,11.99,10/25/19 11:12,"437 Hickory St, Los Angeles, CA 90001" +265560,USB-C Charging Cable,1,11.95,10/28/19 00:36,"711 5th St, Dallas, TX 75001" +265561,Bose SoundSport Headphones,1,99.99,10/19/19 14:37,"674 Wilson St, New York City, NY 10001" +265562,Apple Airpods Headphones,1,150,10/06/19 13:33,"118 Park St, San Francisco, CA 94016" +265563,AA Batteries (4-pack),1,3.84,10/29/19 11:36,"563 Jackson St, San Francisco, CA 94016" +265564,Flatscreen TV,1,300,10/06/19 21:03,"131 Madison St, Los Angeles, CA 90001" +265565,27in 4K Gaming Monitor,1,389.99,10/07/19 18:54,"535 River St, Boston, MA 02215" +265566,Lightning Charging Cable,1,14.95,10/03/19 08:41,"376 Jefferson St, Seattle, WA 98101" +265567,iPhone,1,700,10/17/19 23:50,"346 6th St, San Francisco, CA 94016" +265568,USB-C Charging Cable,2,11.95,10/11/19 21:20,"831 Lake St, San Francisco, CA 94016" +265569,USB-C Charging Cable,1,11.95,10/19/19 21:06,"699 6th St, San Francisco, CA 94016" +265570,Bose SoundSport Headphones,1,99.99,10/08/19 07:33,"94 Jefferson St, San Francisco, CA 94016" +265571,AAA Batteries (4-pack),1,2.99,10/17/19 10:45,"461 4th St, New York City, NY 10001" +265572,USB-C Charging Cable,1,11.95,10/05/19 06:10,"602 4th St, San Francisco, CA 94016" +265573,USB-C Charging Cable,1,11.95,10/21/19 15:43,"523 Church St, Seattle, WA 98101" +265574,AA Batteries (4-pack),2,3.84,10/07/19 17:26,"437 Elm St, San Francisco, CA 94016" +265575,AAA Batteries (4-pack),1,2.99,10/04/19 16:49,"51 Chestnut St, Atlanta, GA 30301" +265576,Lightning Charging Cable,1,14.95,10/26/19 17:25,"18 Willow St, Los Angeles, CA 90001" +265577,Lightning Charging Cable,1,14.95,10/11/19 21:54,"344 5th St, Portland, OR 97035" +265578,Flatscreen TV,1,300,10/22/19 19:50,"377 Madison St, Los Angeles, CA 90001" +265579,Apple Airpods Headphones,1,150,10/23/19 18:59,"514 Sunset St, Los Angeles, CA 90001" +265580,Macbook Pro Laptop,1,1700,10/02/19 08:43,"458 5th St, Los Angeles, CA 90001" +265581,Wired Headphones,1,11.99,10/27/19 20:55,"838 Highland St, Dallas, TX 75001" +265582,Wired Headphones,1,11.99,10/26/19 13:22,"608 Willow St, Boston, MA 02215" +265583,Apple Airpods Headphones,1,150,10/24/19 11:11,"349 Jackson St, San Francisco, CA 94016" +265584,Flatscreen TV,1,300,10/24/19 15:29,"990 Jackson St, New York City, NY 10001" +265585,Lightning Charging Cable,1,14.95,10/01/19 11:09,"977 Madison St, Seattle, WA 98101" +265586,ThinkPad Laptop,1,999.99,10/26/19 16:46,"796 Willow St, Los Angeles, CA 90001" +265587,Bose SoundSport Headphones,1,99.99,10/17/19 13:02,"136 Sunset St, Austin, TX 73301" +265588,Bose SoundSport Headphones,1,99.99,10/05/19 19:57,"638 4th St, Atlanta, GA 30301" +265589,Bose SoundSport Headphones,1,99.99,10/27/19 09:45,"864 Forest St, Los Angeles, CA 90001" +265590,AAA Batteries (4-pack),1,2.99,10/23/19 20:46,"869 Johnson St, New York City, NY 10001" +265591,Lightning Charging Cable,1,14.95,10/27/19 09:30,"559 Spruce St, San Francisco, CA 94016" +265592,AAA Batteries (4-pack),1,2.99,10/01/19 13:37,"135 Center St, San Francisco, CA 94016" +265593,AAA Batteries (4-pack),1,2.99,10/29/19 20:30,"422 Willow St, New York City, NY 10001" +265594,Lightning Charging Cable,1,14.95,10/13/19 08:12,"875 Highland St, Atlanta, GA 30301" +265595,Google Phone,1,600,10/20/19 18:29,"848 12th St, Seattle, WA 98101" +265596,Apple Airpods Headphones,1,150,10/23/19 22:05,"70 11th St, New York City, NY 10001" +265597,Wired Headphones,1,11.99,10/23/19 19:28,"517 Lake St, Austin, TX 73301" +265598,Lightning Charging Cable,1,14.95,10/16/19 18:55,"818 Willow St, San Francisco, CA 94016" +265599,USB-C Charging Cable,1,11.95,10/08/19 20:00,"283 Pine St, New York City, NY 10001" +265600,AA Batteries (4-pack),1,3.84,10/11/19 10:31,"679 7th St, New York City, NY 10001" +265601,27in FHD Monitor,1,149.99,10/29/19 22:46,"50 Jefferson St, Boston, MA 02215" +265602,AAA Batteries (4-pack),1,2.99,10/10/19 17:13,"960 Cherry St, Austin, TX 73301" +265603,iPhone,1,700,10/18/19 11:50,"822 Park St, Los Angeles, CA 90001" +265603,Apple Airpods Headphones,1,150,10/18/19 11:50,"822 Park St, Los Angeles, CA 90001" +265604,27in FHD Monitor,1,149.99,10/02/19 18:32,"839 Wilson St, Los Angeles, CA 90001" +265605,Vareebadd Phone,1,400,10/24/19 20:26,"523 Elm St, New York City, NY 10001" +265606,AAA Batteries (4-pack),5,2.99,10/02/19 12:35,"704 West St, San Francisco, CA 94016" +265607,Bose SoundSport Headphones,1,99.99,10/01/19 10:16,"491 Washington St, Los Angeles, CA 90001" +265608,Bose SoundSport Headphones,1,99.99,10/25/19 16:15,"431 West St, Boston, MA 02215" +265608,27in FHD Monitor,1,149.99,10/25/19 16:15,"431 West St, Boston, MA 02215" +265609,Apple Airpods Headphones,1,150,10/29/19 23:28,"774 Lakeview St, San Francisco, CA 94016" +265610,AAA Batteries (4-pack),1,2.99,10/04/19 11:32,"165 Maple St, Los Angeles, CA 90001" +265611,AA Batteries (4-pack),2,3.84,10/11/19 20:07,"877 2nd St, Dallas, TX 75001" +265612,Macbook Pro Laptop,1,1700,10/09/19 22:56,"776 Cherry St, Boston, MA 02215" +265613,iPhone,1,700,10/19/19 18:59,"92 Church St, San Francisco, CA 94016" +265614,AA Batteries (4-pack),2,3.84,10/16/19 09:51,"987 Jackson St, San Francisco, CA 94016" +265615,AAA Batteries (4-pack),3,2.99,10/12/19 20:36,"19 South St, Atlanta, GA 30301" +265616,AAA Batteries (4-pack),1,2.99,10/06/19 18:24,"240 Madison St, New York City, NY 10001" +265617,USB-C Charging Cable,1,11.95,10/24/19 12:16,"423 North St, Dallas, TX 75001" +265617,Apple Airpods Headphones,1,150,10/24/19 12:16,"423 North St, Dallas, TX 75001" +265618,ThinkPad Laptop,1,999.99,10/19/19 12:48,"744 Sunset St, Dallas, TX 75001" +265619,AAA Batteries (4-pack),1,2.99,10/06/19 19:37,"714 River St, Boston, MA 02215" +265620,27in 4K Gaming Monitor,1,389.99,10/06/19 20:32,"845 Willow St, Seattle, WA 98101" +265621,AA Batteries (4-pack),1,3.84,10/18/19 09:15,"536 Forest St, New York City, NY 10001" +265622,Bose SoundSport Headphones,1,99.99,10/24/19 07:12,"596 Meadow St, Austin, TX 73301" +265623,Wired Headphones,1,11.99,10/06/19 19:31,"998 Lake St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +265624,Bose SoundSport Headphones,1,99.99,10/26/19 15:23,"980 11th St, Dallas, TX 75001" +265625,Wired Headphones,1,11.99,10/08/19 20:36,"336 11th St, Los Angeles, CA 90001" +265626,Lightning Charging Cable,1,14.95,10/26/19 20:23,"830 7th St, Portland, OR 97035" +265627,AAA Batteries (4-pack),3,2.99,10/04/19 19:57,"836 7th St, Austin, TX 73301" +265628,20in Monitor,1,109.99,10/01/19 14:37,"919 Hill St, Los Angeles, CA 90001" +265629,Lightning Charging Cable,1,14.95,10/06/19 18:53,"436 Pine St, San Francisco, CA 94016" +265630,Flatscreen TV,1,300,10/25/19 08:32,"517 4th St, Los Angeles, CA 90001" +265631,34in Ultrawide Monitor,1,379.99,10/19/19 21:40,"725 12th St, San Francisco, CA 94016" +265632,iPhone,1,700,10/29/19 10:16,"154 West St, Dallas, TX 75001" +265633,Wired Headphones,1,11.99,10/24/19 23:50,"253 4th St, San Francisco, CA 94016" +265634,AAA Batteries (4-pack),1,2.99,10/25/19 09:22,"714 9th St, Austin, TX 73301" +265635,AA Batteries (4-pack),1,3.84,10/20/19 15:47,"313 Meadow St, New York City, NY 10001" +265636,27in FHD Monitor,1,149.99,10/07/19 23:07,"741 4th St, Boston, MA 02215" +265637,Lightning Charging Cable,1,14.95,10/06/19 10:00,"204 South St, Atlanta, GA 30301" +265638,Apple Airpods Headphones,1,150,10/31/19 20:24,"486 Dogwood St, Atlanta, GA 30301" +265639,Wired Headphones,1,11.99,10/01/19 19:56,"55 11th St, San Francisco, CA 94016" +265640,AA Batteries (4-pack),1,3.84,10/23/19 12:48,"410 Lakeview St, New York City, NY 10001" +265641,Apple Airpods Headphones,1,150,10/27/19 13:03,"74 7th St, Dallas, TX 75001" +265642,Bose SoundSport Headphones,1,99.99,10/15/19 10:01,"366 South St, New York City, NY 10001" +265643,AA Batteries (4-pack),1,3.84,10/06/19 18:23,"53 Spruce St, Boston, MA 02215" +265644,34in Ultrawide Monitor,1,379.99,10/02/19 17:26,"533 South St, San Francisco, CA 94016" +265645,Google Phone,1,600,10/01/19 12:47,"744 Ridge St, New York City, NY 10001" +265646,AAA Batteries (4-pack),2,2.99,10/08/19 04:13,"345 Sunset St, Boston, MA 02215" +265647,Lightning Charging Cable,1,14.95,10/12/19 22:22,"24 Chestnut St, Dallas, TX 75001" +265648,27in FHD Monitor,2,149.99,10/20/19 18:29,"172 12th St, Seattle, WA 98101" +265649,Wired Headphones,1,11.99,10/29/19 21:53,"925 Hickory St, Boston, MA 02215" +265650,AAA Batteries (4-pack),1,2.99,10/09/19 13:48,"104 Meadow St, Los Angeles, CA 90001" +265651,Lightning Charging Cable,1,14.95,10/01/19 11:27,"749 Sunset St, Austin, TX 73301" +265652,27in FHD Monitor,1,149.99,10/29/19 12:54,"122 Park St, Atlanta, GA 30301" +265653,27in FHD Monitor,1,149.99,10/27/19 14:22,"51 Maple St, San Francisco, CA 94016" +265654,AA Batteries (4-pack),1,3.84,10/27/19 10:37,"551 Highland St, Los Angeles, CA 90001" +265655,Lightning Charging Cable,1,14.95,10/27/19 20:18,"384 6th St, Dallas, TX 75001" +265656,USB-C Charging Cable,1,11.95,10/24/19 23:45,"843 11th St, Dallas, TX 75001" +265657,Apple Airpods Headphones,1,150,10/13/19 10:21,"212 Ridge St, San Francisco, CA 94016" +265658,USB-C Charging Cable,1,11.95,10/17/19 12:10,"970 Madison St, Los Angeles, CA 90001" +265659,34in Ultrawide Monitor,1,379.99,10/10/19 10:30,"584 7th St, New York City, NY 10001" +265660,34in Ultrawide Monitor,1,379.99,10/23/19 18:40,"74 Maple St, Los Angeles, CA 90001" +265661,Lightning Charging Cable,1,14.95,10/14/19 15:00,"689 Lincoln St, San Francisco, CA 94016" +265661,Lightning Charging Cable,1,14.95,10/14/19 15:00,"689 Lincoln St, San Francisco, CA 94016" +265662,AA Batteries (4-pack),2,3.84,10/02/19 12:14,"26 2nd St, Dallas, TX 75001" +265663,Google Phone,1,600,10/23/19 22:54,"107 14th St, San Francisco, CA 94016" +265664,AA Batteries (4-pack),1,3.84,10/06/19 19:18,"674 Meadow St, Seattle, WA 98101" +265665,USB-C Charging Cable,1,11.95,10/26/19 21:30,"181 8th St, New York City, NY 10001" +265666,AAA Batteries (4-pack),2,2.99,10/24/19 12:48,"604 Pine St, New York City, NY 10001" +265667,Lightning Charging Cable,1,14.95,10/09/19 17:58,"256 Spruce St, Atlanta, GA 30301" +265668,27in 4K Gaming Monitor,1,389.99,10/01/19 20:29,"727 14th St, Los Angeles, CA 90001" +265668,AA Batteries (4-pack),1,3.84,10/01/19 20:29,"727 14th St, Los Angeles, CA 90001" +265669,iPhone,1,700,10/01/19 11:13,"793 4th St, Atlanta, GA 30301" +265670,ThinkPad Laptop,1,999.99,10/10/19 13:01,"184 Dogwood St, Boston, MA 02215" +265671,34in Ultrawide Monitor,1,379.99,10/22/19 20:10,"503 Elm St, Los Angeles, CA 90001" +265672,27in FHD Monitor,1,149.99,10/16/19 14:24,"805 1st St, Boston, MA 02215" +265673,Lightning Charging Cable,1,14.95,10/19/19 22:10,"99 Willow St, San Francisco, CA 94016" +265674,Lightning Charging Cable,1,14.95,10/24/19 13:50,"830 Pine St, Los Angeles, CA 90001" +265674,Bose SoundSport Headphones,1,99.99,10/24/19 13:50,"830 Pine St, Los Angeles, CA 90001" +265675,Wired Headphones,1,11.99,10/19/19 19:06,"586 Chestnut St, New York City, NY 10001" +265676,USB-C Charging Cable,1,11.95,10/02/19 18:09,"173 Madison St, San Francisco, CA 94016" +265677,USB-C Charging Cable,2,11.95,10/27/19 21:06,"267 7th St, Boston, MA 02215" +265678,Apple Airpods Headphones,1,150,10/25/19 11:14,"921 6th St, Dallas, TX 75001" +265679,Google Phone,1,600,10/27/19 22:36,"117 Forest St, San Francisco, CA 94016" +265680,Macbook Pro Laptop,1,1700,10/15/19 21:21,"74 4th St, Los Angeles, CA 90001" +265681,AAA Batteries (4-pack),1,2.99,10/23/19 14:17,"82 South St, San Francisco, CA 94016" +265682,27in 4K Gaming Monitor,1,389.99,10/26/19 13:17,"321 9th St, New York City, NY 10001" +265683,Lightning Charging Cable,1,14.95,10/23/19 06:10,"252 River St, Austin, TX 73301" +265684,Apple Airpods Headphones,1,150,10/22/19 16:39,"539 Park St, Atlanta, GA 30301" +265685,AA Batteries (4-pack),1,3.84,10/13/19 04:48,"65 2nd St, New York City, NY 10001" +265686,AAA Batteries (4-pack),2,2.99,10/31/19 15:15,"24 Wilson St, San Francisco, CA 94016" +265687,AAA Batteries (4-pack),1,2.99,10/15/19 21:47,"356 Hill St, San Francisco, CA 94016" +265688,27in FHD Monitor,1,149.99,10/10/19 12:58,"38 Dogwood St, Portland, ME 04101" +265689,Bose SoundSport Headphones,1,99.99,10/05/19 19:03,"623 Adams St, San Francisco, CA 94016" +265690,AAA Batteries (4-pack),1,2.99,10/19/19 15:02,"446 Cedar St, San Francisco, CA 94016" +265691,Apple Airpods Headphones,1,150,10/31/19 17:39,"428 Spruce St, San Francisco, CA 94016" +265692,AAA Batteries (4-pack),1,2.99,10/08/19 20:07,"867 Dogwood St, Portland, OR 97035" +265693,Wired Headphones,1,11.99,10/28/19 21:13,"492 11th St, Seattle, WA 98101" +265694,Bose SoundSport Headphones,1,99.99,10/09/19 22:02,"575 North St, Austin, TX 73301" +265695,AA Batteries (4-pack),1,3.84,10/14/19 20:27,"44 7th St, Dallas, TX 75001" +265696,iPhone,1,700,10/15/19 13:22,"608 4th St, New York City, NY 10001" +265697,Vareebadd Phone,1,400,10/15/19 00:19,"719 North St, Los Angeles, CA 90001" +265698,AA Batteries (4-pack),1,3.84,10/12/19 18:48,"66 Sunset St, Seattle, WA 98101" +265699,iPhone,1,700,10/18/19 18:31,"616 Jackson St, San Francisco, CA 94016" +265699,Apple Airpods Headphones,1,150,10/18/19 18:31,"616 Jackson St, San Francisco, CA 94016" +265700,USB-C Charging Cable,2,11.95,10/13/19 12:54,"466 Highland St, Los Angeles, CA 90001" +265701,AA Batteries (4-pack),1,3.84,10/10/19 22:24,"555 Walnut St, Atlanta, GA 30301" +265702,27in 4K Gaming Monitor,1,389.99,10/18/19 23:11,"540 Pine St, San Francisco, CA 94016" +265703,Lightning Charging Cable,1,14.95,10/31/19 10:31,"572 Walnut St, Los Angeles, CA 90001" +265704,27in 4K Gaming Monitor,1,389.99,10/05/19 14:26,"821 10th St, Portland, OR 97035" +265705,Bose SoundSport Headphones,1,99.99,10/15/19 15:36,"910 Dogwood St, San Francisco, CA 94016" +265706,AA Batteries (4-pack),1,3.84,10/21/19 21:29,"247 Park St, New York City, NY 10001" +265707,Wired Headphones,1,11.99,10/05/19 11:52,"811 Spruce St, Dallas, TX 75001" +265708,Google Phone,1,600,10/24/19 20:30,"669 Lake St, Portland, OR 97035" +265709,AAA Batteries (4-pack),2,2.99,10/19/19 12:20,"161 4th St, New York City, NY 10001" +265709,Lightning Charging Cable,1,14.95,10/19/19 12:20,"161 4th St, New York City, NY 10001" +265710,Lightning Charging Cable,1,14.95,10/25/19 20:23,"176 Meadow St, New York City, NY 10001" +265711,Bose SoundSport Headphones,1,99.99,10/03/19 12:57,"10 Jefferson St, San Francisco, CA 94016" +265712,Apple Airpods Headphones,1,150,10/04/19 18:35,"446 6th St, San Francisco, CA 94016" +265713,Lightning Charging Cable,2,14.95,10/31/19 11:26,"639 Willow St, Portland, OR 97035" +265714,AA Batteries (4-pack),1,3.84,10/03/19 13:20,"210 Cherry St, Boston, MA 02215" +265715,Bose SoundSport Headphones,1,99.99,10/13/19 22:46,"658 Hickory St, New York City, NY 10001" +265716,AA Batteries (4-pack),2,3.84,10/07/19 14:30,"679 2nd St, Los Angeles, CA 90001" +265717,27in FHD Monitor,1,149.99,10/04/19 20:21,"607 6th St, Seattle, WA 98101" +265718,27in 4K Gaming Monitor,1,389.99,10/09/19 19:11,"985 9th St, San Francisco, CA 94016" +265719,ThinkPad Laptop,1,999.99,10/07/19 11:10,"221 Dogwood St, San Francisco, CA 94016" +265720,Bose SoundSport Headphones,1,99.99,10/23/19 09:06,"233 Cherry St, Seattle, WA 98101" +265721,USB-C Charging Cable,1,11.95,10/02/19 16:28,"640 Adams St, San Francisco, CA 94016" +265722,Bose SoundSport Headphones,1,99.99,10/28/19 19:06,"48 Lincoln St, Los Angeles, CA 90001" +265723,Bose SoundSport Headphones,1,99.99,10/24/19 19:44,"239 Adams St, San Francisco, CA 94016" +265724,Flatscreen TV,1,300,10/12/19 12:54,"544 Madison St, Boston, MA 02215" +265725,iPhone,1,700,10/03/19 21:23,"75 Cherry St, Los Angeles, CA 90001" +265725,Wired Headphones,1,11.99,10/03/19 21:23,"75 Cherry St, Los Angeles, CA 90001" +265726,Lightning Charging Cable,1,14.95,10/14/19 20:49,"351 River St, San Francisco, CA 94016" +265727,Lightning Charging Cable,1,14.95,10/29/19 00:00,"305 Hickory St, Los Angeles, CA 90001" +265728,Apple Airpods Headphones,1,150,10/20/19 18:14,"640 Center St, Los Angeles, CA 90001" +265729,AA Batteries (4-pack),1,3.84,10/06/19 17:29,"580 Wilson St, Atlanta, GA 30301" +265730,Wired Headphones,1,11.99,10/13/19 18:58,"788 2nd St, Los Angeles, CA 90001" +265731,iPhone,1,700,10/30/19 09:50,"973 Meadow St, Los Angeles, CA 90001" +265731,Wired Headphones,1,11.99,10/30/19 09:50,"973 Meadow St, Los Angeles, CA 90001" +265732,USB-C Charging Cable,1,11.95,10/04/19 09:21,"862 Cherry St, Atlanta, GA 30301" +265733,USB-C Charging Cable,1,11.95,10/16/19 18:15,"727 Spruce St, New York City, NY 10001" +265734,Wired Headphones,1,11.99,10/31/19 19:43,"122 5th St, San Francisco, CA 94016" +265735,34in Ultrawide Monitor,1,379.99,10/31/19 11:43,"859 Forest St, Boston, MA 02215" +265736,AAA Batteries (4-pack),1,2.99,10/23/19 20:11,"868 14th St, Atlanta, GA 30301" +265737,Wired Headphones,1,11.99,10/16/19 06:57,"577 Madison St, Los Angeles, CA 90001" +265738,USB-C Charging Cable,1,11.95,10/13/19 13:56,"932 Elm St, San Francisco, CA 94016" +265739,LG Dryer,1,600.0,10/09/19 09:21,"553 Sunset St, Los Angeles, CA 90001" +265740,34in Ultrawide Monitor,1,379.99,10/22/19 19:59,"804 Park St, Los Angeles, CA 90001" +265741,Lightning Charging Cable,1,14.95,10/17/19 07:15,"480 14th St, San Francisco, CA 94016" +265742,Apple Airpods Headphones,1,150,10/27/19 20:30,"757 Johnson St, New York City, NY 10001" +265743,AA Batteries (4-pack),2,3.84,10/01/19 17:42,"115 Center St, Los Angeles, CA 90001" +265744,Bose SoundSport Headphones,1,99.99,10/26/19 15:26,"476 Dogwood St, Portland, OR 97035" +265745,Macbook Pro Laptop,1,1700,10/07/19 19:05,"313 Lakeview St, New York City, NY 10001" +265746,Bose SoundSport Headphones,1,99.99,10/23/19 14:16,"633 Jefferson St, Atlanta, GA 30301" +265747,Bose SoundSport Headphones,1,99.99,10/29/19 19:27,"205 9th St, San Francisco, CA 94016" +265748,USB-C Charging Cable,1,11.95,10/30/19 08:34,"464 Madison St, San Francisco, CA 94016" +265749,AA Batteries (4-pack),2,3.84,10/02/19 14:47,"333 Sunset St, Boston, MA 02215" +265750,AA Batteries (4-pack),1,3.84,10/25/19 19:41,"955 North St, Atlanta, GA 30301" +265751,Wired Headphones,1,11.99,10/01/19 20:42,"511 Madison St, Los Angeles, CA 90001" +265752,Wired Headphones,1,11.99,10/10/19 17:57,"910 Pine St, Portland, OR 97035" +265753,Wired Headphones,2,11.99,10/02/19 23:09,"986 14th St, New York City, NY 10001" +265754,AA Batteries (4-pack),1,3.84,10/30/19 13:46,"911 13th St, Los Angeles, CA 90001" +265755,LG Washing Machine,1,600.0,10/23/19 21:50,"886 4th St, Atlanta, GA 30301" +265756,Apple Airpods Headphones,1,150,10/30/19 21:35,"123 2nd St, Boston, MA 02215" +265757,Apple Airpods Headphones,1,150,10/02/19 19:18,"447 Park St, New York City, NY 10001" +265758,27in 4K Gaming Monitor,1,389.99,10/28/19 20:15,"447 Lakeview St, San Francisco, CA 94016" +265759,USB-C Charging Cable,1,11.95,10/10/19 14:52,"623 Madison St, Seattle, WA 98101" +265760,27in FHD Monitor,1,149.99,10/18/19 18:48,"524 Johnson St, Austin, TX 73301" +265761,AAA Batteries (4-pack),2,2.99,10/11/19 12:17,"23 Walnut St, New York City, NY 10001" +265762,AAA Batteries (4-pack),1,2.99,10/25/19 21:32,"887 Chestnut St, Portland, ME 04101" +265763,Google Phone,1,600,10/29/19 13:53,"869 Park St, Seattle, WA 98101" +265764,AAA Batteries (4-pack),1,2.99,10/26/19 19:42,"360 Hickory St, Atlanta, GA 30301" +265765,Wired Headphones,2,11.99,10/16/19 13:37,"315 Spruce St, Seattle, WA 98101" +265766,27in 4K Gaming Monitor,1,389.99,10/07/19 21:39,"408 Cedar St, Dallas, TX 75001" +265767,AAA Batteries (4-pack),1,2.99,10/19/19 11:02,"575 Highland St, Los Angeles, CA 90001" +265768,Flatscreen TV,1,300,10/01/19 10:27,"731 Johnson St, Portland, ME 04101" +265769,AAA Batteries (4-pack),1,2.99,10/31/19 16:24,"777 Maple St, Boston, MA 02215" +265770,20in Monitor,1,109.99,10/07/19 08:24,"648 South St, Boston, MA 02215" +265771,Apple Airpods Headphones,1,150,10/28/19 07:59,"250 Pine St, San Francisco, CA 94016" +265772,USB-C Charging Cable,1,11.95,10/14/19 23:18,"930 Park St, Los Angeles, CA 90001" +265773,USB-C Charging Cable,1,11.95,10/17/19 13:49,"538 Hickory St, New York City, NY 10001" +265774,iPhone,1,700,10/08/19 18:50,"980 Washington St, San Francisco, CA 94016" +265775,AAA Batteries (4-pack),1,2.99,10/29/19 14:02,"282 Lincoln St, New York City, NY 10001" +265776,Apple Airpods Headphones,1,150,10/04/19 16:44,"550 Washington St, Boston, MA 02215" +265777,AA Batteries (4-pack),3,3.84,10/12/19 18:18,"470 5th St, San Francisco, CA 94016" +265778,USB-C Charging Cable,1,11.95,10/01/19 16:08,"990 Elm St, San Francisco, CA 94016" +265779,USB-C Charging Cable,1,11.95,10/12/19 12:51,"208 Jackson St, Seattle, WA 98101" +265780,Apple Airpods Headphones,1,150,10/25/19 12:37,"492 West St, San Francisco, CA 94016" +265781,Bose SoundSport Headphones,1,99.99,10/17/19 17:59,"466 2nd St, Portland, OR 97035" +265782,AAA Batteries (4-pack),1,2.99,10/05/19 12:09,"557 6th St, Boston, MA 02215" +265783,AAA Batteries (4-pack),1,2.99,10/17/19 14:57,"928 Center St, Los Angeles, CA 90001" +265784,iPhone,1,700,10/12/19 13:56,"703 12th St, Austin, TX 73301" +265785,Lightning Charging Cable,1,14.95,10/18/19 11:26,"731 Dogwood St, Portland, OR 97035" +265786,Google Phone,1,600,10/13/19 22:00,"195 Main St, New York City, NY 10001" +265787,Wired Headphones,1,11.99,10/19/19 16:23,"628 Hill St, Dallas, TX 75001" +265788,AA Batteries (4-pack),2,3.84,10/13/19 11:38,"705 Cherry St, Seattle, WA 98101" +265789,AAA Batteries (4-pack),1,2.99,10/08/19 14:19,"211 Hickory St, Atlanta, GA 30301" +265790,Lightning Charging Cable,1,14.95,10/25/19 07:37,"720 10th St, Los Angeles, CA 90001" +265791,Flatscreen TV,1,300,10/13/19 21:58,"856 Chestnut St, Portland, OR 97035" +265792,AA Batteries (4-pack),1,3.84,10/23/19 00:47,"280 10th St, New York City, NY 10001" +265793,Wired Headphones,1,11.99,10/10/19 22:47,"360 Chestnut St, Seattle, WA 98101" +265794,AA Batteries (4-pack),2,3.84,10/08/19 18:53,"641 10th St, San Francisco, CA 94016" +265795,Lightning Charging Cable,1,14.95,10/23/19 22:25,"616 Hickory St, San Francisco, CA 94016" +265796,Google Phone,1,600,10/06/19 16:23,"424 North St, Portland, OR 97035" +265797,AAA Batteries (4-pack),2,2.99,10/03/19 08:45,"898 6th St, New York City, NY 10001" +265798,AAA Batteries (4-pack),1,2.99,10/27/19 16:08,"569 Johnson St, San Francisco, CA 94016" +265799,USB-C Charging Cable,2,11.95,10/30/19 20:30,"237 Jackson St, Los Angeles, CA 90001" +265800,Apple Airpods Headphones,1,150,10/12/19 09:51,"822 Adams St, Boston, MA 02215" +265801,Wired Headphones,1,11.99,10/05/19 22:52,"918 Hill St, Dallas, TX 75001" +265802,Wired Headphones,1,11.99,10/20/19 16:31,"571 10th St, Austin, TX 73301" +265803,27in 4K Gaming Monitor,1,389.99,10/30/19 18:01,"615 Park St, San Francisco, CA 94016" +265804,Wired Headphones,1,11.99,10/11/19 02:12,"727 Ridge St, Los Angeles, CA 90001" +265805,Wired Headphones,1,11.99,10/05/19 16:13,"167 South St, San Francisco, CA 94016" +265806,Wired Headphones,1,11.99,10/27/19 21:10,"255 Adams St, Los Angeles, CA 90001" +265807,27in 4K Gaming Monitor,1,389.99,10/17/19 21:33,"355 7th St, San Francisco, CA 94016" +265808,USB-C Charging Cable,1,11.95,10/25/19 15:39,"585 Cedar St, San Francisco, CA 94016" +265809,Wired Headphones,1,11.99,10/08/19 18:05,"583 Chestnut St, Los Angeles, CA 90001" +265810,Lightning Charging Cable,1,14.95,10/27/19 15:47,"323 13th St, New York City, NY 10001" +265811,AA Batteries (4-pack),1,3.84,10/28/19 09:04,"346 Jackson St, San Francisco, CA 94016" +265812,AAA Batteries (4-pack),1,2.99,10/08/19 23:31,"538 Forest St, San Francisco, CA 94016" +265813,AA Batteries (4-pack),1,3.84,10/11/19 20:21,"706 Maple St, Dallas, TX 75001" +265814,USB-C Charging Cable,1,11.95,10/13/19 23:02,"414 10th St, Austin, TX 73301" +265815,Lightning Charging Cable,1,14.95,10/19/19 20:14,"394 14th St, San Francisco, CA 94016" +265816,AA Batteries (4-pack),1,3.84,10/31/19 10:05,"673 5th St, New York City, NY 10001" +265817,AAA Batteries (4-pack),1,2.99,10/22/19 16:09,"828 Spruce St, Atlanta, GA 30301" +265818,AA Batteries (4-pack),1,3.84,10/15/19 16:38,"258 9th St, Dallas, TX 75001" +265819,AA Batteries (4-pack),1,3.84,10/30/19 13:02,"488 Lincoln St, Los Angeles, CA 90001" +265820,AAA Batteries (4-pack),1,2.99,10/21/19 20:50,"668 Lincoln St, Boston, MA 02215" +265821,USB-C Charging Cable,1,11.95,10/25/19 12:26,"332 10th St, Seattle, WA 98101" +265822,USB-C Charging Cable,1,11.95,10/20/19 14:15,"47 Elm St, San Francisco, CA 94016" +265823,Flatscreen TV,1,300,10/07/19 17:06,"775 Forest St, Portland, ME 04101" +265824,Apple Airpods Headphones,1,150,10/17/19 20:25,"170 Walnut St, Portland, OR 97035" +265825,ThinkPad Laptop,1,999.99,10/28/19 16:08,"345 9th St, Atlanta, GA 30301" +265826,Wired Headphones,1,11.99,10/03/19 22:11,"674 Highland St, New York City, NY 10001" +265827,34in Ultrawide Monitor,1,379.99,10/03/19 06:38,"207 Adams St, Los Angeles, CA 90001" +265828,Lightning Charging Cable,1,14.95,10/20/19 13:55,"972 Highland St, San Francisco, CA 94016" +265829,Lightning Charging Cable,1,14.95,10/20/19 10:15,"614 Lincoln St, Atlanta, GA 30301" +265830,Apple Airpods Headphones,1,150,10/12/19 16:59,"906 1st St, Los Angeles, CA 90001" +265831,AAA Batteries (4-pack),1,2.99,10/28/19 13:22,"621 Lakeview St, New York City, NY 10001" +265832,34in Ultrawide Monitor,1,379.99,10/07/19 21:45,"319 Dogwood St, San Francisco, CA 94016" +265833,Apple Airpods Headphones,1,150,10/01/19 09:38,"823 14th St, Los Angeles, CA 90001" +265834,Macbook Pro Laptop,1,1700,10/26/19 13:31,"288 5th St, Boston, MA 02215" +265835,Flatscreen TV,1,300,10/10/19 19:32,"853 Lakeview St, Los Angeles, CA 90001" +265836,USB-C Charging Cable,1,11.95,10/18/19 22:10,"703 Church St, Los Angeles, CA 90001" +265837,AAA Batteries (4-pack),1,2.99,10/16/19 02:05,"678 Wilson St, New York City, NY 10001" +265838,Lightning Charging Cable,1,14.95,10/04/19 13:13,"885 13th St, San Francisco, CA 94016" +265839,iPhone,1,700,10/07/19 21:03,"123 9th St, Los Angeles, CA 90001" +265840,Google Phone,1,600,10/23/19 05:40,"813 North St, New York City, NY 10001" +265840,USB-C Charging Cable,1,11.95,10/23/19 05:40,"813 North St, New York City, NY 10001" +265841,AA Batteries (4-pack),2,3.84,10/14/19 10:35,"401 Cherry St, New York City, NY 10001" +265842,ThinkPad Laptop,1,999.99,10/03/19 13:23,"100 Cedar St, San Francisco, CA 94016" +265843,AAA Batteries (4-pack),1,2.99,10/09/19 19:57,"106 Meadow St, Seattle, WA 98101" +265844,34in Ultrawide Monitor,1,379.99,10/24/19 21:27,"132 Church St, New York City, NY 10001" +265845,34in Ultrawide Monitor,1,379.99,10/18/19 16:38,"360 Johnson St, Austin, TX 73301" +265846,Bose SoundSport Headphones,1,99.99,10/28/19 11:27,"437 Main St, Boston, MA 02215" +265847,AAA Batteries (4-pack),1,2.99,10/14/19 19:38,"597 Sunset St, San Francisco, CA 94016" +265848,Flatscreen TV,1,300,10/07/19 18:41,"343 10th St, San Francisco, CA 94016" +265849,Apple Airpods Headphones,1,150,10/04/19 14:35,"661 Ridge St, Seattle, WA 98101" +265850,AAA Batteries (4-pack),5,2.99,10/27/19 12:30,"762 Lakeview St, Los Angeles, CA 90001" +265851,USB-C Charging Cable,2,11.95,10/10/19 17:58,"385 Hill St, Los Angeles, CA 90001" +265852,AA Batteries (4-pack),4,3.84,10/19/19 10:56,"830 Walnut St, Los Angeles, CA 90001" +265853,ThinkPad Laptop,1,999.99,10/15/19 19:16,"440 Cedar St, New York City, NY 10001" +265854,34in Ultrawide Monitor,1,379.99,10/28/19 13:46,"665 Lincoln St, Atlanta, GA 30301" +265855,AAA Batteries (4-pack),2,2.99,10/02/19 06:39,"621 Madison St, Los Angeles, CA 90001" +265856,USB-C Charging Cable,1,11.95,10/08/19 10:27,"13 Walnut St, New York City, NY 10001" +265857,USB-C Charging Cable,1,11.95,10/27/19 13:25,"915 Ridge St, Dallas, TX 75001" +265858,AAA Batteries (4-pack),1,2.99,10/02/19 14:32,"201 5th St, San Francisco, CA 94016" +265859,AAA Batteries (4-pack),1,2.99,10/29/19 08:50,"384 7th St, New York City, NY 10001" +265860,Apple Airpods Headphones,1,150,10/27/19 11:21,"467 Highland St, Boston, MA 02215" +265861,Apple Airpods Headphones,1,150,10/29/19 15:54,"636 Pine St, Los Angeles, CA 90001" +265862,27in FHD Monitor,1,149.99,10/02/19 23:05,"667 Church St, San Francisco, CA 94016" +265863,AAA Batteries (4-pack),1,2.99,10/17/19 11:33,"983 5th St, San Francisco, CA 94016" +265864,Apple Airpods Headphones,1,150,10/20/19 14:19,"997 Lake St, Portland, OR 97035" +265865,20in Monitor,1,109.99,10/08/19 13:37,"352 Lakeview St, Los Angeles, CA 90001" +265866,Wired Headphones,1,11.99,10/22/19 15:47,"529 Elm St, Boston, MA 02215" +265867,AAA Batteries (4-pack),2,2.99,10/27/19 19:16,"603 River St, San Francisco, CA 94016" +265868,AAA Batteries (4-pack),2,2.99,10/28/19 21:30,"466 Sunset St, Los Angeles, CA 90001" +265869,AAA Batteries (4-pack),1,2.99,10/26/19 18:34,"826 Church St, Atlanta, GA 30301" +265870,27in FHD Monitor,1,149.99,10/30/19 20:28,"532 2nd St, Portland, OR 97035" +265871,iPhone,1,700,10/16/19 22:55,"976 Church St, Seattle, WA 98101" +265872,Apple Airpods Headphones,1,150,10/30/19 08:50,"562 4th St, Dallas, TX 75001" +265873,AA Batteries (4-pack),2,3.84,10/27/19 09:56,"416 14th St, Dallas, TX 75001" +265874,USB-C Charging Cable,1,11.95,10/25/19 19:56,"460 Cherry St, Boston, MA 02215" +265875,AAA Batteries (4-pack),1,2.99,10/27/19 21:02,"222 Adams St, Austin, TX 73301" +265876,Google Phone,1,600,10/31/19 16:09,"551 Willow St, Austin, TX 73301" +265877,USB-C Charging Cable,1,11.95,10/20/19 13:05,"979 6th St, Dallas, TX 75001" +265878,USB-C Charging Cable,1,11.95,10/21/19 08:41,"146 12th St, Los Angeles, CA 90001" +265879,AA Batteries (4-pack),1,3.84,10/24/19 15:30,"438 Wilson St, Portland, OR 97035" +265880,Bose SoundSport Headphones,1,99.99,10/23/19 13:12,"176 Hill St, Dallas, TX 75001" +265881,Wired Headphones,1,11.99,10/22/19 12:04,"889 13th St, San Francisco, CA 94016" +265882,Wired Headphones,1,11.99,10/17/19 13:54,"665 Hill St, Dallas, TX 75001" +265883,Macbook Pro Laptop,1,1700,10/11/19 21:49,"350 Park St, Los Angeles, CA 90001" +265884,Wired Headphones,1,11.99,10/16/19 04:55,"34 8th St, San Francisco, CA 94016" +265885,20in Monitor,1,109.99,10/22/19 21:11,"759 South St, Los Angeles, CA 90001" +265886,iPhone,1,700,10/01/19 12:24,"378 Lakeview St, San Francisco, CA 94016" +265887,27in FHD Monitor,1,149.99,10/28/19 12:12,"364 Lincoln St, Los Angeles, CA 90001" +265888,AAA Batteries (4-pack),1,2.99,10/22/19 20:52,"327 13th St, Portland, OR 97035" +265889,Apple Airpods Headphones,1,150,10/12/19 15:14,"16 Maple St, Seattle, WA 98101" +265890,Apple Airpods Headphones,1,150,10/18/19 11:25,"140 Meadow St, New York City, NY 10001" +265891,27in FHD Monitor,1,149.99,10/11/19 12:51,"335 Wilson St, Austin, TX 73301" +265892,34in Ultrawide Monitor,1,379.99,10/01/19 15:31,"337 Madison St, New York City, NY 10001" +265893,Wired Headphones,1,11.99,10/10/19 16:37,"27 Lake St, Seattle, WA 98101" +265894,Macbook Pro Laptop,1,1700,10/17/19 10:28,"124 4th St, Portland, OR 97035" +,,,,, +265895,Wired Headphones,2,11.99,10/27/19 19:39,"59 Jefferson St, San Francisco, CA 94016" +265896,AAA Batteries (4-pack),1,2.99,10/23/19 08:34,"717 Park St, Boston, MA 02215" +265897,Lightning Charging Cable,1,14.95,10/31/19 12:51,"515 Sunset St, Portland, OR 97035" +265898,Bose SoundSport Headphones,1,99.99,10/30/19 12:16,"471 Adams St, Portland, ME 04101" +265899,Lightning Charging Cable,1,14.95,10/30/19 22:34,"810 Highland St, New York City, NY 10001" +265900,Bose SoundSport Headphones,1,99.99,10/16/19 14:11,"202 Adams St, San Francisco, CA 94016" +265901,AA Batteries (4-pack),2,3.84,10/14/19 21:46,"565 Madison St, Los Angeles, CA 90001" +265902,27in FHD Monitor,1,149.99,10/02/19 17:49,"614 Jefferson St, Atlanta, GA 30301" +265903,Bose SoundSport Headphones,1,99.99,10/31/19 13:10,"967 North St, Portland, OR 97035" +265904,Bose SoundSport Headphones,1,99.99,10/06/19 10:44,"847 Adams St, San Francisco, CA 94016" +265905,27in FHD Monitor,1,149.99,10/25/19 06:18,"648 Jackson St, San Francisco, CA 94016" +265906,USB-C Charging Cable,1,11.95,10/01/19 18:58,"651 4th St, Atlanta, GA 30301" +265907,Google Phone,1,600,10/13/19 01:17,"204 Hill St, Atlanta, GA 30301" +265907,USB-C Charging Cable,2,11.95,10/13/19 01:17,"204 Hill St, Atlanta, GA 30301" +265908,Apple Airpods Headphones,1,150,10/11/19 19:14,"87 Chestnut St, Los Angeles, CA 90001" +265909,Apple Airpods Headphones,1,150,10/28/19 16:33,"473 Lakeview St, Seattle, WA 98101" +265910,AA Batteries (4-pack),1,3.84,10/18/19 14:17,"244 6th St, Dallas, TX 75001" +265911,20in Monitor,1,109.99,10/20/19 08:28,"358 9th St, San Francisco, CA 94016" +265912,USB-C Charging Cable,1,11.95,10/21/19 09:51,"807 6th St, Boston, MA 02215" +265913,Wired Headphones,2,11.99,10/07/19 13:28,"631 Highland St, Atlanta, GA 30301" +265914,27in 4K Gaming Monitor,1,389.99,10/23/19 11:11,"119 Lakeview St, Atlanta, GA 30301" +265915,USB-C Charging Cable,1,11.95,10/25/19 13:50,"812 Park St, San Francisco, CA 94016" +265916,Apple Airpods Headphones,1,150,10/12/19 18:52,"957 10th St, Seattle, WA 98101" +265917,AA Batteries (4-pack),1,3.84,10/04/19 12:42,"380 Highland St, San Francisco, CA 94016" +265918,AAA Batteries (4-pack),1,2.99,10/13/19 14:47,"372 2nd St, San Francisco, CA 94016" +265919,ThinkPad Laptop,1,999.99,10/16/19 16:11,"95 Johnson St, Los Angeles, CA 90001" +265920,Lightning Charging Cable,1,14.95,10/02/19 09:33,"854 Jefferson St, Dallas, TX 75001" +265921,AA Batteries (4-pack),1,3.84,10/14/19 19:38,"245 Church St, Los Angeles, CA 90001" +265922,AA Batteries (4-pack),2,3.84,10/07/19 09:26,"915 North St, Los Angeles, CA 90001" +265923,Lightning Charging Cable,3,14.95,10/27/19 18:14,"965 Dogwood St, Atlanta, GA 30301" +265924,Apple Airpods Headphones,1,150,10/17/19 21:00,"377 5th St, Boston, MA 02215" +265925,Google Phone,1,600,10/31/19 22:46,"993 Chestnut St, Boston, MA 02215" +265925,AAA Batteries (4-pack),1,2.99,10/31/19 22:46,"993 Chestnut St, Boston, MA 02215" +265926,USB-C Charging Cable,1,11.95,10/04/19 06:40,"525 Hickory St, San Francisco, CA 94016" +265927,AA Batteries (4-pack),1,3.84,10/01/19 21:26,"545 Jackson St, Boston, MA 02215" +265928,Flatscreen TV,1,300,10/15/19 21:48,"640 Center St, Austin, TX 73301" +265929,Wired Headphones,1,11.99,10/06/19 20:30,"213 North St, Portland, OR 97035" +265930,27in 4K Gaming Monitor,1,389.99,10/10/19 14:26,"593 Willow St, Dallas, TX 75001" +265931,34in Ultrawide Monitor,1,379.99,10/05/19 10:24,"20 11th St, New York City, NY 10001" +265932,AAA Batteries (4-pack),4,2.99,10/21/19 21:46,"598 8th St, San Francisco, CA 94016" +265933,Apple Airpods Headphones,1,150,10/06/19 21:45,"161 Meadow St, Los Angeles, CA 90001" +265934,AA Batteries (4-pack),1,3.84,10/30/19 13:16,"368 2nd St, Los Angeles, CA 90001" +265935,Flatscreen TV,1,300,10/15/19 21:14,"977 Ridge St, Los Angeles, CA 90001" +265936,ThinkPad Laptop,1,999.99,10/13/19 10:17,"257 Main St, Austin, TX 73301" +265937,Bose SoundSport Headphones,1,99.99,10/19/19 20:12,"921 Hickory St, Los Angeles, CA 90001" +265938,Lightning Charging Cable,1,14.95,10/19/19 13:28,"760 Jackson St, Dallas, TX 75001" +265939,27in FHD Monitor,1,149.99,10/06/19 12:39,"701 Ridge St, San Francisco, CA 94016" +265940,AAA Batteries (4-pack),3,2.99,10/21/19 11:06,"191 Lake St, New York City, NY 10001" +265941,USB-C Charging Cable,1,11.95,10/11/19 18:07,"495 Cherry St, San Francisco, CA 94016" +265942,Wired Headphones,1,11.99,10/28/19 21:32,"308 4th St, Seattle, WA 98101" +265943,Bose SoundSport Headphones,1,99.99,10/20/19 20:20,"312 Jefferson St, Los Angeles, CA 90001" +265944,Lightning Charging Cable,1,14.95,10/05/19 23:09,"67 6th St, Seattle, WA 98101" +265945,USB-C Charging Cable,1,11.95,10/09/19 18:45,"110 1st St, San Francisco, CA 94016" +265945,USB-C Charging Cable,2,11.95,10/09/19 18:45,"110 1st St, San Francisco, CA 94016" +265946,USB-C Charging Cable,1,11.95,10/25/19 20:28,"401 South St, San Francisco, CA 94016" +265947,AA Batteries (4-pack),1,3.84,10/17/19 12:38,"177 Pine St, Seattle, WA 98101" +265948,34in Ultrawide Monitor,1,379.99,10/27/19 00:26,"472 Adams St, Austin, TX 73301" +265949,Flatscreen TV,1,300,10/22/19 16:49,"124 Dogwood St, Atlanta, GA 30301" +265950,AAA Batteries (4-pack),1,2.99,10/31/19 09:34,"16 11th St, New York City, NY 10001" +265951,Lightning Charging Cable,1,14.95,10/22/19 19:44,"697 14th St, Los Angeles, CA 90001" +265952,Lightning Charging Cable,1,14.95,10/04/19 18:31,"870 10th St, New York City, NY 10001" +265953,AA Batteries (4-pack),1,3.84,10/31/19 05:25,"836 Jackson St, Boston, MA 02215" +265954,AA Batteries (4-pack),2,3.84,10/01/19 22:45,"132 Center St, New York City, NY 10001" +265955,iPhone,1,700,10/19/19 11:29,"111 Maple St, San Francisco, CA 94016" +265955,Wired Headphones,1,11.99,10/19/19 11:29,"111 Maple St, San Francisco, CA 94016" +265956,27in 4K Gaming Monitor,1,389.99,10/18/19 19:36,"365 Jackson St, San Francisco, CA 94016" +265957,USB-C Charging Cable,1,11.95,10/17/19 23:41,"928 1st St, Los Angeles, CA 90001" +265958,AA Batteries (4-pack),1,3.84,10/11/19 17:47,"341 Jefferson St, New York City, NY 10001" +265959,Bose SoundSport Headphones,1,99.99,10/20/19 11:03,"267 Jackson St, Seattle, WA 98101" +265960,Google Phone,1,600,10/07/19 12:49,"64 8th St, San Francisco, CA 94016" +265961,Wired Headphones,2,11.99,10/30/19 13:22,"30 10th St, Austin, TX 73301" +265962,Bose SoundSport Headphones,1,99.99,10/23/19 21:18,"427 Forest St, San Francisco, CA 94016" +265963,ThinkPad Laptop,1,999.99,10/16/19 11:07,"511 Lincoln St, Boston, MA 02215" +265964,AAA Batteries (4-pack),2,2.99,10/10/19 12:48,"358 Center St, New York City, NY 10001" +265965,AAA Batteries (4-pack),2,2.99,10/12/19 23:53,"252 Park St, Austin, TX 73301" +265966,Wired Headphones,1,11.99,10/05/19 17:04,"522 11th St, San Francisco, CA 94016" +265967,Lightning Charging Cable,1,14.95,10/02/19 00:38,"424 Jackson St, Boston, MA 02215" +265968,Lightning Charging Cable,1,14.95,10/20/19 23:19,"415 Forest St, San Francisco, CA 94016" +265969,USB-C Charging Cable,1,11.95,10/23/19 20:22,"554 Center St, Los Angeles, CA 90001" +265970,AA Batteries (4-pack),1,3.84,10/18/19 09:20,"315 Elm St, San Francisco, CA 94016" +265971,Bose SoundSport Headphones,1,99.99,10/03/19 14:58,"644 13th St, San Francisco, CA 94016" +265972,34in Ultrawide Monitor,1,379.99,10/21/19 23:31,"828 Lincoln St, New York City, NY 10001" +265973,34in Ultrawide Monitor,1,379.99,10/20/19 12:21,"903 Center St, Portland, OR 97035" +265974,Google Phone,1,600,10/16/19 10:05,"777 Jackson St, Los Angeles, CA 90001" +265975,Lightning Charging Cable,1,14.95,10/01/19 18:02,"268 13th St, Portland, OR 97035" +265976,Bose SoundSport Headphones,1,99.99,10/18/19 14:18,"132 Chestnut St, Boston, MA 02215" +265977,AA Batteries (4-pack),1,3.84,10/30/19 14:39,"763 Ridge St, Boston, MA 02215" +265978,AAA Batteries (4-pack),2,2.99,10/19/19 22:50,"447 Washington St, Portland, OR 97035" +265979,34in Ultrawide Monitor,1,379.99,10/01/19 21:22,"493 Adams St, San Francisco, CA 94016" +265980,Bose SoundSport Headphones,1,99.99,10/24/19 18:05,"53 11th St, San Francisco, CA 94016" +265981,Macbook Pro Laptop,1,1700,10/23/19 19:24,"692 Sunset St, Los Angeles, CA 90001" +265982,Google Phone,1,600,10/15/19 19:51,"986 12th St, Austin, TX 73301" +265982,Wired Headphones,1,11.99,10/15/19 19:51,"986 12th St, Austin, TX 73301" +265983,27in 4K Gaming Monitor,1,389.99,10/08/19 15:12,"202 Walnut St, San Francisco, CA 94016" +265984,27in 4K Gaming Monitor,1,389.99,10/17/19 13:45,"498 Lincoln St, Atlanta, GA 30301" +265985,Wired Headphones,1,11.99,10/18/19 22:30,"773 Maple St, San Francisco, CA 94016" +265986,Apple Airpods Headphones,1,150,10/05/19 16:02,"753 Spruce St, Austin, TX 73301" +265987,Lightning Charging Cable,1,14.95,10/27/19 10:49,"648 Washington St, Dallas, TX 75001" +265988,Apple Airpods Headphones,1,150,10/12/19 13:50,"986 Center St, San Francisco, CA 94016" +265989,Wired Headphones,1,11.99,10/03/19 18:57,"447 1st St, San Francisco, CA 94016" +265990,AA Batteries (4-pack),1,3.84,10/03/19 20:45,"804 Center St, Atlanta, GA 30301" +265991,AAA Batteries (4-pack),1,2.99,10/21/19 06:15,"813 13th St, San Francisco, CA 94016" +265992,USB-C Charging Cable,1,11.95,10/30/19 16:18,"527 13th St, San Francisco, CA 94016" +265993,USB-C Charging Cable,2,11.95,10/20/19 19:46,"584 Lakeview St, San Francisco, CA 94016" +265994,AA Batteries (4-pack),1,3.84,10/09/19 10:53,"173 10th St, San Francisco, CA 94016" +265995,Google Phone,1,600,10/10/19 18:42,"703 1st St, Atlanta, GA 30301" +265996,Wired Headphones,1,11.99,10/27/19 07:40,"915 Johnson St, San Francisco, CA 94016" +265997,Lightning Charging Cable,1,14.95,10/26/19 20:34,"171 2nd St, Boston, MA 02215" +265998,Apple Airpods Headphones,1,150,10/20/19 04:06,"177 Washington St, Boston, MA 02215" +265999,Wired Headphones,1,11.99,10/30/19 20:36,"364 10th St, Seattle, WA 98101" +266000,20in Monitor,1,109.99,10/18/19 17:59,"843 Adams St, Los Angeles, CA 90001" +266001,Wired Headphones,1,11.99,10/27/19 13:48,"518 Lincoln St, San Francisco, CA 94016" +266002,Google Phone,1,600,10/23/19 21:27,"776 Wilson St, Los Angeles, CA 90001" +266003,USB-C Charging Cable,1,11.95,10/01/19 20:37,"275 7th St, San Francisco, CA 94016" +266004,AAA Batteries (4-pack),1,2.99,10/03/19 21:41,"543 Main St, Austin, TX 73301" +266005,Macbook Pro Laptop,1,1700,10/18/19 13:08,"297 13th St, Dallas, TX 75001" +266006,Flatscreen TV,1,300,10/31/19 16:11,"67 Dogwood St, San Francisco, CA 94016" +266007,USB-C Charging Cable,1,11.95,10/11/19 06:53,"717 Lake St, Los Angeles, CA 90001" +266008,USB-C Charging Cable,1,11.95,10/12/19 23:37,"871 Maple St, Dallas, TX 75001" +266009,34in Ultrawide Monitor,1,379.99,10/27/19 18:47,"920 Johnson St, Dallas, TX 75001" +266010,Apple Airpods Headphones,1,150,10/23/19 08:50,"684 1st St, Dallas, TX 75001" +266011,USB-C Charging Cable,1,11.95,10/21/19 16:27,"29 Jefferson St, Los Angeles, CA 90001" +266012,Apple Airpods Headphones,1,150,10/08/19 12:44,"847 Highland St, Los Angeles, CA 90001" +266013,20in Monitor,1,109.99,10/01/19 20:04,"234 River St, New York City, NY 10001" +266014,20in Monitor,1,109.99,10/25/19 09:53,"490 Jackson St, San Francisco, CA 94016" +266015,Flatscreen TV,1,300,10/09/19 21:30,"795 Cedar St, New York City, NY 10001" +266016,Lightning Charging Cable,1,14.95,10/19/19 22:29,"692 Church St, Los Angeles, CA 90001" +266017,Apple Airpods Headphones,1,150,10/28/19 13:56,"86 5th St, San Francisco, CA 94016" +266018,Apple Airpods Headphones,1,150,10/11/19 23:01,"913 Lake St, San Francisco, CA 94016" +266019,USB-C Charging Cable,1,11.95,10/16/19 23:50,"427 Madison St, Seattle, WA 98101" +266020,Lightning Charging Cable,1,14.95,10/11/19 20:12,"849 Center St, San Francisco, CA 94016" +266021,Bose SoundSport Headphones,1,99.99,10/05/19 01:35,"883 11th St, San Francisco, CA 94016" +266022,27in FHD Monitor,1,149.99,10/16/19 17:29,"578 Hickory St, San Francisco, CA 94016" +266023,34in Ultrawide Monitor,1,379.99,10/02/19 20:32,"737 Sunset St, New York City, NY 10001" +266024,AAA Batteries (4-pack),2,2.99,10/12/19 19:55,"481 Cedar St, San Francisco, CA 94016" +266025,Wired Headphones,1,11.99,10/17/19 05:40,"930 12th St, Boston, MA 02215" +266026,Wired Headphones,1,11.99,10/23/19 17:00,"760 River St, Los Angeles, CA 90001" +266027,27in 4K Gaming Monitor,1,389.99,10/22/19 19:19,"329 2nd St, Boston, MA 02215" +266028,Lightning Charging Cable,1,14.95,10/30/19 12:23,"561 Jefferson St, Dallas, TX 75001" +266029,Wired Headphones,1,11.99,10/08/19 17:36,"384 Sunset St, Boston, MA 02215" +266030,27in FHD Monitor,1,149.99,10/15/19 09:11,"800 Walnut St, Dallas, TX 75001" +266031,AAA Batteries (4-pack),1,2.99,10/03/19 14:54,"848 Forest St, Portland, OR 97035" +266032,Apple Airpods Headphones,1,150,10/30/19 18:58,"927 Center St, San Francisco, CA 94016" +266033,Wired Headphones,1,11.99,10/24/19 12:39,"598 10th St, San Francisco, CA 94016" +266034,AA Batteries (4-pack),1,3.84,10/10/19 02:05,"673 Dogwood St, Portland, OR 97035" +266035,AAA Batteries (4-pack),2,2.99,10/22/19 20:29,"183 North St, San Francisco, CA 94016" +266036,USB-C Charging Cable,1,11.95,10/19/19 08:42,"739 Walnut St, Los Angeles, CA 90001" +266037,Wired Headphones,1,11.99,10/06/19 09:16,"47 Main St, Seattle, WA 98101" +266038,27in FHD Monitor,1,149.99,10/19/19 17:16,"737 13th St, Boston, MA 02215" +266039,Bose SoundSport Headphones,1,99.99,10/07/19 17:58,"599 South St, Los Angeles, CA 90001" +266040,27in 4K Gaming Monitor,1,389.99,10/10/19 14:17,"696 Ridge St, Boston, MA 02215" +266041,iPhone,1,700,10/07/19 19:39,"831 River St, Seattle, WA 98101" +266041,Lightning Charging Cable,1,14.95,10/07/19 19:39,"831 River St, Seattle, WA 98101" +266042,27in FHD Monitor,1,149.99,10/01/19 19:16,"176 14th St, Seattle, WA 98101" +266043,AA Batteries (4-pack),2,3.84,10/04/19 01:27,"331 Church St, San Francisco, CA 94016" +266044,AA Batteries (4-pack),1,3.84,10/24/19 20:05,"653 11th St, San Francisco, CA 94016" +266045,Apple Airpods Headphones,1,150,10/10/19 13:38,"62 Forest St, Portland, OR 97035" +266046,Bose SoundSport Headphones,1,99.99,10/24/19 11:33,"326 Center St, Los Angeles, CA 90001" +266047,AAA Batteries (4-pack),2,2.99,10/18/19 12:58,"347 Cedar St, Los Angeles, CA 90001" +266048,Apple Airpods Headphones,1,150,10/24/19 22:05,"764 Chestnut St, San Francisco, CA 94016" +266049,Bose SoundSport Headphones,1,99.99,10/11/19 14:20,"105 Lincoln St, Boston, MA 02215" +266050,iPhone,1,700,10/12/19 08:33,"634 Forest St, Dallas, TX 75001" +266051,Wired Headphones,1,11.99,10/08/19 09:49,"478 Adams St, San Francisco, CA 94016" +266052,Lightning Charging Cable,1,14.95,10/05/19 14:07,"354 South St, Boston, MA 02215" +266053,Macbook Pro Laptop,1,1700,10/03/19 09:32,"825 Johnson St, Seattle, WA 98101" +266054,ThinkPad Laptop,1,999.99,10/05/19 12:55,"451 Center St, San Francisco, CA 94016" +266055,Bose SoundSport Headphones,1,99.99,10/28/19 18:59,"841 Johnson St, Boston, MA 02215" +266056,USB-C Charging Cable,1,11.95,10/31/19 21:20,"708 Lincoln St, Los Angeles, CA 90001" +266057,AAA Batteries (4-pack),1,2.99,10/22/19 11:54,"120 Hill St, San Francisco, CA 94016" +266058,USB-C Charging Cable,1,11.95,10/18/19 18:06,"363 Wilson St, San Francisco, CA 94016" +266059,AAA Batteries (4-pack),1,2.99,10/05/19 01:20,"845 6th St, New York City, NY 10001" +266060,Apple Airpods Headphones,1,150,10/21/19 21:14,"861 Jackson St, Los Angeles, CA 90001" +266061,AA Batteries (4-pack),1,3.84,10/13/19 22:47,"120 Meadow St, San Francisco, CA 94016" +266062,AAA Batteries (4-pack),1,2.99,10/20/19 12:31,"688 Walnut St, Seattle, WA 98101" +266063,Flatscreen TV,1,300,10/30/19 00:55,"939 Johnson St, San Francisco, CA 94016" +266064,ThinkPad Laptop,1,999.99,10/25/19 21:52,"202 9th St, Seattle, WA 98101" +266065,34in Ultrawide Monitor,1,379.99,10/05/19 12:44,"465 13th St, Austin, TX 73301" +266066,Wired Headphones,1,11.99,10/20/19 20:54,"97 Washington St, Los Angeles, CA 90001" +266067,Google Phone,1,600,10/02/19 12:21,"521 13th St, San Francisco, CA 94016" +266068,27in FHD Monitor,1,149.99,10/29/19 14:20,"942 Lakeview St, Atlanta, GA 30301" +266069,34in Ultrawide Monitor,1,379.99,10/12/19 17:41,"134 12th St, Atlanta, GA 30301" +266070,Lightning Charging Cable,1,14.95,10/25/19 09:34,"39 Hickory St, Seattle, WA 98101" +266070,Wired Headphones,1,11.99,10/25/19 09:34,"39 Hickory St, Seattle, WA 98101" +266071,Wired Headphones,1,11.99,10/16/19 03:51,"755 Adams St, Portland, OR 97035" +266072,AA Batteries (4-pack),1,3.84,10/12/19 23:20,"81 Elm St, Portland, OR 97035" +266073,AAA Batteries (4-pack),1,2.99,10/29/19 14:03,"288 6th St, New York City, NY 10001" +266074,AA Batteries (4-pack),1,3.84,10/18/19 14:04,"581 13th St, Boston, MA 02215" +266075,AAA Batteries (4-pack),1,2.99,10/19/19 22:51,"484 South St, Seattle, WA 98101" +266076,27in FHD Monitor,1,149.99,10/18/19 09:13,"989 Johnson St, Atlanta, GA 30301" +266077,iPhone,1,700,10/02/19 12:10,"154 Elm St, New York City, NY 10001" +266078,AAA Batteries (4-pack),2,2.99,10/30/19 13:25,"332 Ridge St, Austin, TX 73301" +266079,AA Batteries (4-pack),1,3.84,10/21/19 21:08,"788 West St, Dallas, TX 75001" +266080,Bose SoundSport Headphones,1,99.99,10/28/19 17:45,"471 Jackson St, Austin, TX 73301" +266081,27in 4K Gaming Monitor,1,389.99,10/25/19 13:13,"209 8th St, Los Angeles, CA 90001" +266082,Wired Headphones,1,11.99,10/04/19 10:04,"914 Elm St, New York City, NY 10001" +266083,27in FHD Monitor,1,149.99,10/04/19 19:33,"506 10th St, San Francisco, CA 94016" +266084,AAA Batteries (4-pack),2,2.99,10/13/19 21:21,"845 Willow St, New York City, NY 10001" +266085,34in Ultrawide Monitor,1,379.99,10/26/19 21:37,"453 South St, Atlanta, GA 30301" +266086,Apple Airpods Headphones,1,150,10/17/19 10:54,"63 Main St, New York City, NY 10001" +266087,Apple Airpods Headphones,1,150,10/20/19 13:48,"679 Lincoln St, Los Angeles, CA 90001" +266088,Wired Headphones,1,11.99,10/26/19 18:06,"326 13th St, San Francisco, CA 94016" +266089,USB-C Charging Cable,1,11.95,10/26/19 11:24,"573 Washington St, San Francisco, CA 94016" +266090,Bose SoundSport Headphones,1,99.99,10/07/19 19:09,"995 Adams St, Dallas, TX 75001" +266091,AAA Batteries (4-pack),2,2.99,10/05/19 17:29,"991 Lakeview St, San Francisco, CA 94016" +266092,Bose SoundSport Headphones,1,99.99,10/24/19 22:11,"40 Madison St, Boston, MA 02215" +266093,ThinkPad Laptop,1,999.99,10/15/19 13:27,"681 Hickory St, New York City, NY 10001" +266094,Apple Airpods Headphones,1,150,10/15/19 14:17,"751 Maple St, Los Angeles, CA 90001" +266095,iPhone,1,700,10/06/19 12:35,"276 Spruce St, Seattle, WA 98101" +266096,AAA Batteries (4-pack),1,2.99,10/17/19 17:49,"270 Hill St, Seattle, WA 98101" +266097,Wired Headphones,1,11.99,10/25/19 01:25,"947 Lincoln St, San Francisco, CA 94016" +266098,Vareebadd Phone,1,400,10/16/19 01:31,"632 Center St, Los Angeles, CA 90001" +266099,Lightning Charging Cable,1,14.95,10/30/19 12:04,"10 7th St, San Francisco, CA 94016" +266100,USB-C Charging Cable,1,11.95,10/25/19 10:39,"939 Cedar St, Seattle, WA 98101" +266101,Flatscreen TV,1,300,10/05/19 14:31,"520 Adams St, Portland, OR 97035" +266102,27in FHD Monitor,1,149.99,10/24/19 12:01,"856 2nd St, Dallas, TX 75001" +266103,USB-C Charging Cable,1,11.95,10/07/19 08:30,"210 4th St, New York City, NY 10001" +266104,Bose SoundSport Headphones,1,99.99,10/29/19 21:41,"753 Willow St, Atlanta, GA 30301" +266105,AAA Batteries (4-pack),1,2.99,10/12/19 17:52,"603 5th St, Dallas, TX 75001" +266106,ThinkPad Laptop,1,999.99,10/19/19 09:46,"722 Cedar St, Boston, MA 02215" +266107,Lightning Charging Cable,1,14.95,10/07/19 13:25,"316 Lakeview St, Dallas, TX 75001" +266108,Vareebadd Phone,1,400,10/23/19 23:35,"165 Lincoln St, Seattle, WA 98101" +266108,USB-C Charging Cable,1,11.95,10/23/19 23:35,"165 Lincoln St, Seattle, WA 98101" +266109,AAA Batteries (4-pack),1,2.99,10/02/19 10:54,"771 10th St, Boston, MA 02215" +266110,27in FHD Monitor,1,149.99,10/31/19 08:24,"356 Lake St, Atlanta, GA 30301" +266111,USB-C Charging Cable,1,11.95,10/09/19 22:29,"9 Lincoln St, Portland, OR 97035" +266112,AAA Batteries (4-pack),1,2.99,10/13/19 16:21,"950 Wilson St, Los Angeles, CA 90001" +266113,Flatscreen TV,1,300,10/04/19 19:20,"48 Dogwood St, Dallas, TX 75001" +266114,iPhone,1,700,10/08/19 11:42,"407 6th St, Los Angeles, CA 90001" +266115,27in 4K Gaming Monitor,1,389.99,10/17/19 20:06,"745 12th St, Dallas, TX 75001" +266116,Wired Headphones,1,11.99,10/12/19 20:47,"101 5th St, Austin, TX 73301" +266117,USB-C Charging Cable,1,11.95,10/04/19 17:20,"391 5th St, Boston, MA 02215" +266118,AA Batteries (4-pack),1,3.84,10/26/19 14:41,"282 12th St, Boston, MA 02215" +266119,AA Batteries (4-pack),1,3.84,10/07/19 12:55,"340 7th St, San Francisco, CA 94016" +266120,USB-C Charging Cable,1,11.95,10/14/19 23:47,"834 13th St, San Francisco, CA 94016" +266121,Lightning Charging Cable,1,14.95,10/26/19 12:29,"262 Adams St, San Francisco, CA 94016" +266122,Apple Airpods Headphones,1,150,10/05/19 07:09,"306 8th St, Boston, MA 02215" +266123,Flatscreen TV,1,300,10/31/19 23:31,"634 Hickory St, Austin, TX 73301" +266124,USB-C Charging Cable,1,11.95,10/22/19 15:35,"671 Madison St, San Francisco, CA 94016" +266125,LG Dryer,1,600.0,10/11/19 12:09,"980 Dogwood St, Dallas, TX 75001" +266126,AA Batteries (4-pack),3,3.84,10/16/19 12:46,"686 8th St, San Francisco, CA 94016" +266127,Lightning Charging Cable,1,14.95,10/23/19 15:12,"68 6th St, Portland, OR 97035" +266128,34in Ultrawide Monitor,1,379.99,10/25/19 23:56,"799 Pine St, San Francisco, CA 94016" +266129,Lightning Charging Cable,1,14.95,10/26/19 14:17,"681 Lincoln St, San Francisco, CA 94016" +266130,Flatscreen TV,1,300,10/31/19 01:19,"637 Wilson St, San Francisco, CA 94016" +266131,Wired Headphones,1,11.99,10/12/19 19:33,"995 Walnut St, Austin, TX 73301" +266132,Apple Airpods Headphones,1,150,10/07/19 21:18,"275 Washington St, New York City, NY 10001" +266133,Macbook Pro Laptop,1,1700,10/11/19 07:04,"928 14th St, Los Angeles, CA 90001" +266134,Apple Airpods Headphones,1,150,10/03/19 19:21,"601 6th St, Boston, MA 02215" +266135,Bose SoundSport Headphones,1,99.99,10/20/19 13:32,"686 Pine St, New York City, NY 10001" +266136,USB-C Charging Cable,1,11.95,10/31/19 10:04,"161 13th St, San Francisco, CA 94016" +266137,Lightning Charging Cable,1,14.95,10/03/19 10:33,"38 6th St, Boston, MA 02215" +266138,Wired Headphones,1,11.99,10/14/19 11:09,"588 Cherry St, Atlanta, GA 30301" +266139,Flatscreen TV,1,300,10/17/19 07:44,"898 Adams St, Los Angeles, CA 90001" +266140,Apple Airpods Headphones,1,150,10/01/19 08:35,"638 14th St, Portland, OR 97035" +266141,USB-C Charging Cable,1,11.95,10/23/19 09:38,"541 Ridge St, San Francisco, CA 94016" +266142,AAA Batteries (4-pack),1,2.99,10/18/19 22:52,"345 Wilson St, San Francisco, CA 94016" +266143,AAA Batteries (4-pack),1,2.99,10/23/19 17:07,"708 7th St, Los Angeles, CA 90001" +266144,Wired Headphones,1,11.99,10/13/19 13:33,"720 Willow St, San Francisco, CA 94016" +266145,AAA Batteries (4-pack),3,2.99,10/02/19 19:35,"426 Madison St, Los Angeles, CA 90001" +266146,AAA Batteries (4-pack),1,2.99,10/17/19 17:53,"813 Main St, San Francisco, CA 94016" +266147,AA Batteries (4-pack),1,3.84,10/27/19 17:59,"272 Maple St, San Francisco, CA 94016" +266148,USB-C Charging Cable,1,11.95,10/02/19 14:54,"975 South St, San Francisco, CA 94016" +266149,AA Batteries (4-pack),1,3.84,10/18/19 17:16,"15 6th St, Los Angeles, CA 90001" +266150,AA Batteries (4-pack),1,3.84,11/01/19 00:09,"789 Willow St, New York City, NY 10001" +266151,20in Monitor,1,109.99,10/12/19 17:49,"937 Main St, Los Angeles, CA 90001" +266152,AA Batteries (4-pack),3,3.84,10/03/19 18:46,"853 12th St, Boston, MA 02215" +266153,AAA Batteries (4-pack),2,2.99,10/13/19 22:36,"646 Sunset St, San Francisco, CA 94016" +266154,AAA Batteries (4-pack),2,2.99,10/22/19 08:50,"832 9th St, Dallas, TX 75001" +266155,Apple Airpods Headphones,1,150,10/18/19 11:38,"279 9th St, San Francisco, CA 94016" +266156,USB-C Charging Cable,1,11.95,10/16/19 15:22,"641 Highland St, San Francisco, CA 94016" +266157,AA Batteries (4-pack),2,3.84,10/12/19 12:55,"995 12th St, Los Angeles, CA 90001" +266158,27in 4K Gaming Monitor,1,389.99,10/14/19 12:39,"764 Spruce St, Boston, MA 02215" +266159,Wired Headphones,1,11.99,10/11/19 00:40,"829 10th St, San Francisco, CA 94016" +266160,Lightning Charging Cable,1,14.95,10/18/19 12:13,"545 Walnut St, Seattle, WA 98101" +266161,Bose SoundSport Headphones,1,99.99,10/30/19 20:34,"993 Adams St, Dallas, TX 75001" +266162,USB-C Charging Cable,1,11.95,10/28/19 10:37,"450 Walnut St, Los Angeles, CA 90001" +266163,AAA Batteries (4-pack),1,2.99,10/07/19 08:38,"579 2nd St, Portland, ME 04101" +266164,Apple Airpods Headphones,1,150,10/16/19 21:28,"866 9th St, Boston, MA 02215" +266165,Wired Headphones,1,11.99,10/03/19 01:36,"260 4th St, New York City, NY 10001" +266166,Bose SoundSport Headphones,1,99.99,10/07/19 13:46,"545 North St, Los Angeles, CA 90001" +266167,iPhone,1,700,10/02/19 11:22,"36 11th St, Los Angeles, CA 90001" +266168,AA Batteries (4-pack),2,3.84,10/11/19 13:25,"74 6th St, Portland, OR 97035" +266169,Wired Headphones,1,11.99,10/14/19 22:14,"470 Lake St, Boston, MA 02215" +266170,USB-C Charging Cable,2,11.95,10/06/19 16:27,"645 7th St, Dallas, TX 75001" +266171,AAA Batteries (4-pack),1,2.99,10/11/19 09:24,"677 Pine St, Austin, TX 73301" +266172,Apple Airpods Headphones,1,150,10/09/19 22:02,"282 5th St, San Francisco, CA 94016" +266173,Apple Airpods Headphones,1,150,10/15/19 07:05,"685 Center St, Los Angeles, CA 90001" +266174,Wired Headphones,1,11.99,10/30/19 19:24,"595 Lincoln St, Atlanta, GA 30301" +266175,34in Ultrawide Monitor,1,379.99,10/24/19 06:36,"877 Johnson St, Seattle, WA 98101" +266176,Bose SoundSport Headphones,1,99.99,10/11/19 11:16,"896 6th St, San Francisco, CA 94016" +266177,Wired Headphones,1,11.99,10/20/19 19:22,"609 6th St, Los Angeles, CA 90001" +266178,USB-C Charging Cable,1,11.95,10/15/19 13:05,"294 10th St, Seattle, WA 98101" +266179,ThinkPad Laptop,1,999.99,10/09/19 07:49,"137 14th St, Boston, MA 02215" +266180,iPhone,1,700,10/29/19 14:19,"40 Hickory St, Los Angeles, CA 90001" +266180,Apple Airpods Headphones,1,150,10/29/19 14:19,"40 Hickory St, Los Angeles, CA 90001" +266181,USB-C Charging Cable,1,11.95,10/09/19 16:18,"597 4th St, Los Angeles, CA 90001" +266182,27in 4K Gaming Monitor,1,389.99,10/28/19 06:35,"37 Chestnut St, Dallas, TX 75001" +266183,USB-C Charging Cable,1,11.95,10/08/19 22:33,"995 South St, Dallas, TX 75001" +266184,Bose SoundSport Headphones,1,99.99,10/26/19 12:51,"121 Pine St, San Francisco, CA 94016" +266185,20in Monitor,1,109.99,10/09/19 10:21,"467 Main St, San Francisco, CA 94016" +266186,Apple Airpods Headphones,1,150,10/04/19 08:10,"854 River St, Los Angeles, CA 90001" +266187,iPhone,1,700,10/25/19 16:52,"660 Dogwood St, Austin, TX 73301" +266187,Wired Headphones,1,11.99,10/25/19 16:52,"660 Dogwood St, Austin, TX 73301" +266188,AAA Batteries (4-pack),3,2.99,10/11/19 11:34,"281 4th St, Boston, MA 02215" +266189,USB-C Charging Cable,1,11.95,10/03/19 15:27,"37 Maple St, Boston, MA 02215" +266190,Macbook Pro Laptop,1,1700,10/11/19 10:55,"343 Spruce St, Austin, TX 73301" +266191,AAA Batteries (4-pack),1,2.99,10/17/19 23:17,"938 6th St, Austin, TX 73301" +266192,Wired Headphones,1,11.99,10/23/19 17:58,"792 Washington St, Boston, MA 02215" +266193,Flatscreen TV,1,300,10/25/19 10:28,"185 7th St, Austin, TX 73301" +266194,Macbook Pro Laptop,1,1700,10/08/19 09:59,"633 Meadow St, Portland, OR 97035" +266195,27in 4K Gaming Monitor,1,389.99,10/08/19 18:19,"455 Church St, Dallas, TX 75001" +266196,27in 4K Gaming Monitor,1,389.99,10/01/19 22:34,"920 1st St, Los Angeles, CA 90001" +266197,Bose SoundSport Headphones,1,99.99,10/11/19 14:38,"857 1st St, New York City, NY 10001" +266198,Apple Airpods Headphones,1,150,10/19/19 20:13,"614 Lake St, Austin, TX 73301" +266199,AAA Batteries (4-pack),2,2.99,10/18/19 11:25,"731 North St, Portland, ME 04101" +266200,34in Ultrawide Monitor,1,379.99,10/02/19 11:23,"594 River St, San Francisco, CA 94016" +266201,Apple Airpods Headphones,1,150,10/17/19 11:23,"364 Church St, Boston, MA 02215" +266202,AA Batteries (4-pack),3,3.84,10/11/19 13:40,"859 Dogwood St, San Francisco, CA 94016" +266203,27in 4K Gaming Monitor,1,389.99,10/23/19 11:56,"481 Highland St, Boston, MA 02215" +266204,USB-C Charging Cable,1,11.95,10/06/19 21:43,"938 8th St, Portland, ME 04101" +266205,USB-C Charging Cable,1,11.95,10/18/19 10:29,"623 12th St, Atlanta, GA 30301" +266206,Flatscreen TV,1,300,10/28/19 21:25,"535 Walnut St, San Francisco, CA 94016" +266207,Wired Headphones,1,11.99,10/29/19 20:40,"392 River St, Dallas, TX 75001" +266208,USB-C Charging Cable,1,11.95,10/27/19 23:14,"592 Pine St, New York City, NY 10001" +266209,Apple Airpods Headphones,1,150,10/11/19 11:19,"690 Lakeview St, San Francisco, CA 94016" +266210,Lightning Charging Cable,2,14.95,10/16/19 13:16,"797 Jackson St, Dallas, TX 75001" +266211,Lightning Charging Cable,1,14.95,10/20/19 21:52,"240 Elm St, New York City, NY 10001" +266212,34in Ultrawide Monitor,1,379.99,10/22/19 07:07,"403 11th St, Austin, TX 73301" +266213,27in 4K Gaming Monitor,1,389.99,10/30/19 17:56,"314 1st St, Los Angeles, CA 90001" +266214,AAA Batteries (4-pack),1,2.99,10/17/19 16:52,"546 North St, Seattle, WA 98101" +266215,Lightning Charging Cable,1,14.95,10/16/19 17:18,"437 Pine St, San Francisco, CA 94016" +266216,Lightning Charging Cable,1,14.95,10/19/19 15:06,"884 Elm St, Atlanta, GA 30301" +266216,Wired Headphones,1,11.99,10/19/19 15:06,"884 Elm St, Atlanta, GA 30301" +266217,Lightning Charging Cable,1,14.95,10/10/19 16:16,"388 Cherry St, Portland, OR 97035" +266218,Macbook Pro Laptop,1,1700,10/03/19 01:28,"548 Willow St, San Francisco, CA 94016" +266219,Lightning Charging Cable,1,14.95,10/16/19 20:15,"186 North St, San Francisco, CA 94016" +266220,20in Monitor,1,109.99,10/10/19 13:18,"358 Hill St, New York City, NY 10001" +266221,iPhone,1,700,10/26/19 13:49,"341 Madison St, San Francisco, CA 94016" +266222,Bose SoundSport Headphones,1,99.99,10/10/19 13:07,"410 Lake St, San Francisco, CA 94016" +266223,AA Batteries (4-pack),2,3.84,10/19/19 13:20,"799 Highland St, San Francisco, CA 94016" +266224,AA Batteries (4-pack),1,3.84,10/07/19 21:12,"826 6th St, Boston, MA 02215" +266225,AA Batteries (4-pack),1,3.84,10/29/19 13:33,"780 River St, San Francisco, CA 94016" +266226,ThinkPad Laptop,1,999.99,10/10/19 14:40,"357 Meadow St, New York City, NY 10001" +266227,27in 4K Gaming Monitor,1,389.99,10/15/19 08:27,"843 Chestnut St, New York City, NY 10001" +266228,34in Ultrawide Monitor,1,379.99,10/05/19 12:31,"765 Walnut St, New York City, NY 10001" +266229,Bose SoundSport Headphones,1,99.99,10/06/19 05:35,"561 Cherry St, Atlanta, GA 30301" +266230,Flatscreen TV,1,300,10/07/19 21:39,"205 Lake St, San Francisco, CA 94016" +266231,iPhone,1,700,10/30/19 17:12,"58 Madison St, San Francisco, CA 94016" +266231,Apple Airpods Headphones,1,150,10/30/19 17:12,"58 Madison St, San Francisco, CA 94016" +266232,AA Batteries (4-pack),2,3.84,10/09/19 20:35,"527 10th St, Dallas, TX 75001" +266233,USB-C Charging Cable,1,11.95,10/08/19 23:23,"425 Jackson St, New York City, NY 10001" +266234,Lightning Charging Cable,1,14.95,10/10/19 05:45,"8 Lakeview St, New York City, NY 10001" +266235,USB-C Charging Cable,1,11.95,10/15/19 11:13,"358 Forest St, Los Angeles, CA 90001" +266236,Bose SoundSport Headphones,1,99.99,10/23/19 13:44,"374 10th St, New York City, NY 10001" +266237,iPhone,1,700,10/28/19 16:05,"574 Dogwood St, Los Angeles, CA 90001" +266238,Macbook Pro Laptop,1,1700,10/01/19 10:19,"500 13th St, Dallas, TX 75001" +266239,USB-C Charging Cable,1,11.95,10/10/19 10:20,"504 Hickory St, Los Angeles, CA 90001" +266240,34in Ultrawide Monitor,1,379.99,10/15/19 23:15,"314 Church St, Los Angeles, CA 90001" +266241,Bose SoundSport Headphones,1,99.99,10/06/19 18:25,"868 Center St, Atlanta, GA 30301" +266242,iPhone,1,700,10/18/19 21:42,"195 Walnut St, Atlanta, GA 30301" +266242,Lightning Charging Cable,1,14.95,10/18/19 21:42,"195 Walnut St, Atlanta, GA 30301" +266243,Lightning Charging Cable,2,14.95,10/06/19 02:43,"125 Willow St, Los Angeles, CA 90001" +266244,AAA Batteries (4-pack),1,2.99,10/01/19 22:34,"308 Willow St, Atlanta, GA 30301" +266245,iPhone,1,700,10/12/19 19:24,"701 Church St, San Francisco, CA 94016" +266245,Lightning Charging Cable,1,14.95,10/12/19 19:24,"701 Church St, San Francisco, CA 94016" +266246,AA Batteries (4-pack),3,3.84,10/18/19 00:35,"478 Willow St, Austin, TX 73301" +266247,34in Ultrawide Monitor,1,379.99,10/01/19 20:01,"268 Jackson St, New York City, NY 10001" +266248,Bose SoundSport Headphones,1,99.99,10/04/19 21:39,"645 9th St, Boston, MA 02215" +266249,Flatscreen TV,1,300,10/19/19 07:19,"963 Main St, San Francisco, CA 94016" +266250,27in 4K Gaming Monitor,1,389.99,10/06/19 18:26,"834 Washington St, San Francisco, CA 94016" +266251,Bose SoundSport Headphones,1,99.99,10/26/19 09:48,"145 Lakeview St, Dallas, TX 75001" +266252,USB-C Charging Cable,1,11.95,10/18/19 09:59,"674 Chestnut St, Portland, OR 97035" +266253,27in FHD Monitor,1,149.99,10/24/19 22:33,"726 5th St, Los Angeles, CA 90001" +266254,Lightning Charging Cable,1,14.95,10/13/19 18:18,"969 Washington St, San Francisco, CA 94016" +266255,AA Batteries (4-pack),1,3.84,10/10/19 19:11,"815 Dogwood St, New York City, NY 10001" +266256,Lightning Charging Cable,1,14.95,10/09/19 18:33,"336 Washington St, San Francisco, CA 94016" +266257,AA Batteries (4-pack),1,3.84,10/09/19 18:04,"944 Johnson St, San Francisco, CA 94016" +266258,Apple Airpods Headphones,1,150,10/06/19 20:12,"990 Madison St, San Francisco, CA 94016" +266259,USB-C Charging Cable,1,11.95,10/14/19 21:38,"61 11th St, Boston, MA 02215" +266260,27in FHD Monitor,1,149.99,10/07/19 20:57,"94 Forest St, Portland, OR 97035" +266261,Wired Headphones,1,11.99,10/06/19 13:55,"926 Madison St, San Francisco, CA 94016" +266262,Wired Headphones,1,11.99,10/16/19 10:52,"927 South St, Los Angeles, CA 90001" +266263,20in Monitor,1,109.99,10/17/19 03:25,"150 Elm St, Dallas, TX 75001" +266264,Wired Headphones,1,11.99,10/01/19 19:56,"700 Cherry St, Boston, MA 02215" +266265,iPhone,1,700,10/24/19 13:01,"775 Elm St, Austin, TX 73301" +266265,Lightning Charging Cable,1,14.95,10/24/19 13:01,"775 Elm St, Austin, TX 73301" +266266,Google Phone,1,600,10/13/19 19:17,"333 13th St, San Francisco, CA 94016" +266267,USB-C Charging Cable,1,11.95,10/18/19 11:37,"876 8th St, Austin, TX 73301" +266268,Lightning Charging Cable,1,14.95,10/28/19 10:30,"374 Lincoln St, Atlanta, GA 30301" +266269,20in Monitor,1,109.99,10/24/19 17:08,"714 River St, San Francisco, CA 94016" +266270,iPhone,1,700,10/31/19 12:21,"770 9th St, Los Angeles, CA 90001" +266271,Apple Airpods Headphones,1,150,10/05/19 17:41,"306 Lincoln St, New York City, NY 10001" +266272,Lightning Charging Cable,1,14.95,10/27/19 02:48,"356 Maple St, Boston, MA 02215" +266273,Lightning Charging Cable,1,14.95,10/27/19 17:37,"187 7th St, Dallas, TX 75001" +266274,Bose SoundSport Headphones,1,99.99,10/03/19 15:24,"111 Park St, New York City, NY 10001" +266275,AAA Batteries (4-pack),1,2.99,10/28/19 15:56,"268 1st St, San Francisco, CA 94016" +266276,AA Batteries (4-pack),3,3.84,10/28/19 17:26,"825 Spruce St, Seattle, WA 98101" +266276,Wired Headphones,1,11.99,10/28/19 17:26,"825 Spruce St, Seattle, WA 98101" +266277,AA Batteries (4-pack),2,3.84,10/31/19 17:48,"688 Maple St, San Francisco, CA 94016" +266278,AA Batteries (4-pack),1,3.84,10/29/19 17:32,"416 Hickory St, Portland, OR 97035" +266279,USB-C Charging Cable,1,11.95,10/02/19 19:04,"861 13th St, New York City, NY 10001" +266280,AA Batteries (4-pack),1,3.84,10/31/19 10:57,"807 Willow St, Austin, TX 73301" +266281,AAA Batteries (4-pack),1,2.99,10/31/19 19:45,"660 Lincoln St, New York City, NY 10001" +266282,Lightning Charging Cable,1,14.95,10/06/19 18:03,"891 9th St, Atlanta, GA 30301" +266283,USB-C Charging Cable,1,11.95,10/21/19 11:42,"778 Center St, Los Angeles, CA 90001" +266284,Google Phone,1,600,10/23/19 22:33,"616 South St, Austin, TX 73301" +266285,AA Batteries (4-pack),1,3.84,10/12/19 10:11,"142 7th St, Atlanta, GA 30301" +266286,20in Monitor,1,109.99,10/13/19 18:51,"688 Main St, San Francisco, CA 94016" +266287,ThinkPad Laptop,1,999.99,10/21/19 14:11,"54 12th St, Seattle, WA 98101" +266288,Lightning Charging Cable,1,14.95,10/22/19 08:40,"78 Forest St, Portland, OR 97035" +266289,AA Batteries (4-pack),1,3.84,10/11/19 10:22,"600 Adams St, New York City, NY 10001" +266290,AA Batteries (4-pack),3,3.84,10/13/19 22:20,"851 Center St, New York City, NY 10001" +266291,USB-C Charging Cable,1,11.95,10/29/19 11:42,"512 Madison St, San Francisco, CA 94016" +266292,USB-C Charging Cable,1,11.95,10/26/19 12:29,"18 Lake St, Los Angeles, CA 90001" +266293,Wired Headphones,1,11.99,10/27/19 12:14,"243 4th St, Atlanta, GA 30301" +266294,AAA Batteries (4-pack),2,2.99,10/26/19 08:23,"959 Washington St, Seattle, WA 98101" +266295,Apple Airpods Headphones,1,150,10/14/19 08:17,"178 Lakeview St, San Francisco, CA 94016" +266296,USB-C Charging Cable,1,11.95,10/09/19 20:50,"995 Hill St, Austin, TX 73301" +266297,27in FHD Monitor,1,149.99,10/21/19 21:49,"585 West St, Los Angeles, CA 90001" +266298,Apple Airpods Headphones,1,150,10/10/19 15:35,"29 Park St, Los Angeles, CA 90001" +266299,USB-C Charging Cable,1,11.95,10/09/19 17:18,"381 Lakeview St, San Francisco, CA 94016" +266300,27in FHD Monitor,1,149.99,10/05/19 12:43,"648 5th St, San Francisco, CA 94016" +266301,LG Dryer,1,600.0,10/18/19 11:44,"964 Ridge St, Atlanta, GA 30301" +266302,ThinkPad Laptop,1,999.99,10/14/19 22:33,"60 2nd St, Los Angeles, CA 90001" +266302,USB-C Charging Cable,1,11.95,10/14/19 22:33,"60 2nd St, Los Angeles, CA 90001" +266303,USB-C Charging Cable,1,11.95,10/12/19 11:35,"47 Willow St, Boston, MA 02215" +266304,Apple Airpods Headphones,1,150,10/12/19 16:54,"483 Center St, Austin, TX 73301" +266305,USB-C Charging Cable,1,11.95,10/22/19 12:23,"58 Johnson St, New York City, NY 10001" +266306,AAA Batteries (4-pack),2,2.99,10/26/19 20:45,"344 Elm St, Dallas, TX 75001" +266307,Lightning Charging Cable,1,14.95,10/19/19 17:33,"561 Lincoln St, Austin, TX 73301" +266308,USB-C Charging Cable,1,11.95,10/06/19 20:16,"841 13th St, Dallas, TX 75001" +266309,Flatscreen TV,1,300,10/01/19 16:50,"935 Church St, San Francisco, CA 94016" +266310,Wired Headphones,1,11.99,10/29/19 13:41,"495 Spruce St, San Francisco, CA 94016" +266311,Wired Headphones,1,11.99,10/23/19 22:13,"596 6th St, New York City, NY 10001" +266312,LG Dryer,1,600.0,10/20/19 20:18,"296 Madison St, Los Angeles, CA 90001" +266313,Wired Headphones,1,11.99,10/21/19 12:08,"254 9th St, Los Angeles, CA 90001" +266314,AA Batteries (4-pack),2,3.84,10/22/19 15:46,"944 6th St, Seattle, WA 98101" +266315,AA Batteries (4-pack),1,3.84,10/27/19 18:42,"919 9th St, San Francisco, CA 94016" +266316,Google Phone,1,600,10/19/19 08:22,"531 Forest St, Austin, TX 73301" +266317,AA Batteries (4-pack),2,3.84,10/26/19 18:35,"396 Wilson St, New York City, NY 10001" +266318,Flatscreen TV,1,300,10/18/19 13:40,"308 5th St, New York City, NY 10001" +266319,Wired Headphones,1,11.99,10/13/19 12:22,"963 South St, San Francisco, CA 94016" +266320,AA Batteries (4-pack),1,3.84,10/30/19 18:38,"158 Washington St, San Francisco, CA 94016" +266321,34in Ultrawide Monitor,1,379.99,10/12/19 00:33,"245 Chestnut St, Los Angeles, CA 90001" +266322,AA Batteries (4-pack),1,3.84,10/24/19 10:44,"786 North St, New York City, NY 10001" +266323,27in FHD Monitor,1,149.99,10/30/19 17:45,"338 Church St, Boston, MA 02215" +266324,27in FHD Monitor,1,149.99,10/23/19 22:03,"763 11th St, Dallas, TX 75001" +266325,Vareebadd Phone,1,400,10/26/19 13:08,"384 Forest St, Los Angeles, CA 90001" +266326,27in FHD Monitor,1,149.99,10/02/19 19:25,"834 Church St, Austin, TX 73301" +266327,AAA Batteries (4-pack),2,2.99,10/17/19 22:04,"669 2nd St, Atlanta, GA 30301" +266328,Apple Airpods Headphones,1,150,10/18/19 22:40,"459 Cedar St, San Francisco, CA 94016" +266329,AA Batteries (4-pack),2,3.84,10/12/19 20:25,"256 Cedar St, Seattle, WA 98101" +266330,AAA Batteries (4-pack),1,2.99,10/26/19 22:27,"48 7th St, Dallas, TX 75001" +266331,Lightning Charging Cable,2,14.95,10/13/19 15:28,"482 Dogwood St, San Francisco, CA 94016" +266332,Apple Airpods Headphones,1,150,10/02/19 08:55,"960 Meadow St, Boston, MA 02215" +266333,Bose SoundSport Headphones,1,99.99,10/09/19 16:07,"336 Madison St, San Francisco, CA 94016" +266334,AA Batteries (4-pack),1,3.84,10/04/19 20:33,"249 Main St, San Francisco, CA 94016" +266335,Macbook Pro Laptop,1,1700,10/15/19 10:24,"317 South St, New York City, NY 10001" +266336,AA Batteries (4-pack),1,3.84,10/08/19 06:04,"754 2nd St, Portland, OR 97035" +266337,Lightning Charging Cable,1,14.95,10/22/19 11:45,"732 11th St, San Francisco, CA 94016" +266337,Wired Headphones,1,11.99,10/22/19 11:45,"732 11th St, San Francisco, CA 94016" +266338,Bose SoundSport Headphones,1,99.99,10/21/19 17:41,"370 14th St, New York City, NY 10001" +266339,AAA Batteries (4-pack),1,2.99,10/03/19 16:19,"23 Ridge St, Los Angeles, CA 90001" +266340,AA Batteries (4-pack),2,3.84,10/07/19 17:33,"674 Madison St, New York City, NY 10001" +266341,Apple Airpods Headphones,1,150,10/19/19 05:22,"393 Adams St, Boston, MA 02215" +266342,27in FHD Monitor,1,149.99,10/21/19 14:54,"775 14th St, Atlanta, GA 30301" +266343,Macbook Pro Laptop,1,1700,10/24/19 22:50,"315 Ridge St, Seattle, WA 98101" +266344,Apple Airpods Headphones,1,150,10/06/19 01:39,"423 North St, Los Angeles, CA 90001" +266345,AAA Batteries (4-pack),1,2.99,10/26/19 15:54,"670 13th St, Los Angeles, CA 90001" +266346,Flatscreen TV,1,300,10/30/19 19:39,"836 14th St, San Francisco, CA 94016" +266347,Lightning Charging Cable,1,14.95,10/15/19 15:11,"820 Lake St, Los Angeles, CA 90001" +266348,27in 4K Gaming Monitor,1,389.99,10/01/19 20:12,"230 Ridge St, Los Angeles, CA 90001" +266349,Flatscreen TV,1,300,10/25/19 19:25,"329 Madison St, Portland, OR 97035" +266350,iPhone,1,700,10/05/19 19:11,"518 Cedar St, Los Angeles, CA 90001" +266350,Wired Headphones,1,11.99,10/05/19 19:11,"518 Cedar St, Los Angeles, CA 90001" +266351,Lightning Charging Cable,1,14.95,10/16/19 17:24,"828 Lincoln St, San Francisco, CA 94016" +266352,Lightning Charging Cable,1,14.95,10/31/19 18:16,"302 Lakeview St, Los Angeles, CA 90001" +266353,Wired Headphones,1,11.99,10/04/19 08:03,"906 Jefferson St, Dallas, TX 75001" +266354,AAA Batteries (4-pack),1,2.99,10/19/19 11:13,"258 Walnut St, Atlanta, GA 30301" +266355,Bose SoundSport Headphones,1,99.99,10/31/19 12:02,"270 14th St, Boston, MA 02215" +266356,AA Batteries (4-pack),1,3.84,10/20/19 14:31,"604 Ridge St, Seattle, WA 98101" +266357,AA Batteries (4-pack),2,3.84,10/24/19 21:49,"885 Jackson St, Los Angeles, CA 90001" +266358,Wired Headphones,1,11.99,10/11/19 13:13,"594 6th St, Boston, MA 02215" +266359,Wired Headphones,1,11.99,10/05/19 09:05,"378 Washington St, San Francisco, CA 94016" +266360,iPhone,1,700,10/21/19 14:45,"410 Cherry St, Boston, MA 02215" +266361,AAA Batteries (4-pack),1,2.99,10/01/19 22:33,"279 Wilson St, San Francisco, CA 94016" +266362,Apple Airpods Headphones,1,150,10/06/19 21:44,"329 North St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +266363,Wired Headphones,1,11.99,10/14/19 17:18,"385 Adams St, Portland, OR 97035" +266364,Wired Headphones,1,11.99,10/06/19 14:30,"579 Walnut St, San Francisco, CA 94016" +266365,Bose SoundSport Headphones,1,99.99,10/11/19 21:01,"294 Pine St, Los Angeles, CA 90001" +266366,AA Batteries (4-pack),2,3.84,10/16/19 13:59,"320 5th St, Seattle, WA 98101" +266367,Lightning Charging Cable,1,14.95,10/08/19 18:18,"723 Ridge St, Boston, MA 02215" +266368,Google Phone,1,600,10/23/19 14:55,"698 8th St, Boston, MA 02215" +266369,Apple Airpods Headphones,1,150,10/22/19 22:14,"815 Jefferson St, San Francisco, CA 94016" +266370,Wired Headphones,1,11.99,10/18/19 07:58,"486 9th St, Dallas, TX 75001" +266371,27in FHD Monitor,1,149.99,10/29/19 19:06,"305 Adams St, San Francisco, CA 94016" +266372,Flatscreen TV,1,300,10/19/19 01:45,"637 Maple St, Portland, ME 04101" +266373,iPhone,1,700,10/01/19 12:02,"874 Walnut St, Dallas, TX 75001" +266374,Google Phone,1,600,11/01/19 01:32,"117 2nd St, San Francisco, CA 94016" +266374,Wired Headphones,2,11.99,11/01/19 01:32,"117 2nd St, San Francisco, CA 94016" +266375,AA Batteries (4-pack),1,3.84,10/07/19 16:14,"919 Center St, Boston, MA 02215" +266376,AA Batteries (4-pack),1,3.84,10/26/19 05:53,"344 Highland St, Portland, OR 97035" +266377,AAA Batteries (4-pack),1,2.99,10/26/19 14:23,"975 Wilson St, Seattle, WA 98101" +266378,AAA Batteries (4-pack),2,2.99,10/31/19 18:17,"643 6th St, New York City, NY 10001" +266379,AA Batteries (4-pack),1,3.84,10/28/19 18:40,"742 Sunset St, Seattle, WA 98101" +266380,20in Monitor,1,109.99,10/29/19 20:25,"635 Wilson St, Portland, OR 97035" +266381,AAA Batteries (4-pack),1,2.99,10/11/19 14:22,"771 South St, San Francisco, CA 94016" +266382,USB-C Charging Cable,1,11.95,10/19/19 22:45,"365 Spruce St, Portland, OR 97035" +266383,ThinkPad Laptop,1,999.99,10/02/19 18:36,"753 West St, San Francisco, CA 94016" +266384,Bose SoundSport Headphones,1,99.99,10/25/19 19:49,"472 Meadow St, New York City, NY 10001" +266385,AA Batteries (4-pack),2,3.84,10/15/19 15:32,"268 West St, New York City, NY 10001" +266386,Wired Headphones,1,11.99,10/31/19 12:57,"626 North St, Atlanta, GA 30301" +266387,Wired Headphones,1,11.99,10/10/19 21:59,"986 Walnut St, Austin, TX 73301" +266388,Lightning Charging Cable,1,14.95,10/12/19 23:42,"356 1st St, San Francisco, CA 94016" +266389,Lightning Charging Cable,1,14.95,10/18/19 18:51,"286 13th St, New York City, NY 10001" +266390,27in FHD Monitor,1,149.99,10/04/19 10:41,"661 Johnson St, Dallas, TX 75001" +266391,Flatscreen TV,1,300,10/22/19 05:19,"33 Johnson St, Los Angeles, CA 90001" +266392,20in Monitor,1,109.99,10/16/19 16:50,"40 Wilson St, Atlanta, GA 30301" +266392,27in FHD Monitor,1,149.99,10/16/19 16:50,"40 Wilson St, Atlanta, GA 30301" +266393,Flatscreen TV,1,300,10/12/19 01:57,"184 Forest St, Austin, TX 73301" +266394,Lightning Charging Cable,1,14.95,10/31/19 14:35,"618 Cherry St, Atlanta, GA 30301" +266395,AA Batteries (4-pack),1,3.84,10/19/19 21:56,"30 Wilson St, Boston, MA 02215" +266396,Wired Headphones,1,11.99,10/05/19 17:40,"868 Pine St, Los Angeles, CA 90001" +266397,iPhone,1,700,10/04/19 16:59,"591 Lakeview St, San Francisco, CA 94016" +266398,Wired Headphones,1,11.99,10/29/19 06:31,"539 11th St, San Francisco, CA 94016" +266399,iPhone,1,700,10/13/19 16:33,"512 Elm St, Atlanta, GA 30301" +266399,Lightning Charging Cable,1,14.95,10/13/19 16:33,"512 Elm St, Atlanta, GA 30301" +266399,Apple Airpods Headphones,1,150,10/13/19 16:33,"512 Elm St, Atlanta, GA 30301" +266399,Wired Headphones,1,11.99,10/13/19 16:33,"512 Elm St, Atlanta, GA 30301" +266400,Bose SoundSport Headphones,1,99.99,10/18/19 14:44,"34 Cherry St, Los Angeles, CA 90001" +266401,Apple Airpods Headphones,1,150,10/05/19 08:43,"388 Park St, New York City, NY 10001" +266402,Apple Airpods Headphones,1,150,10/24/19 23:22,"954 11th St, San Francisco, CA 94016" +266403,Apple Airpods Headphones,1,150,10/09/19 13:44,"406 10th St, Dallas, TX 75001" +266404,Lightning Charging Cable,1,14.95,10/29/19 07:15,"742 Lakeview St, New York City, NY 10001" +266405,Wired Headphones,1,11.99,10/06/19 04:42,"678 Washington St, Los Angeles, CA 90001" +266406,Bose SoundSport Headphones,1,99.99,10/04/19 16:16,"242 North St, Los Angeles, CA 90001" +266407,USB-C Charging Cable,1,11.95,10/03/19 07:39,"12 Cedar St, Seattle, WA 98101" +266408,AA Batteries (4-pack),1,3.84,10/02/19 12:41,"244 Elm St, New York City, NY 10001" +266409,Lightning Charging Cable,1,14.95,10/12/19 14:39,"849 West St, Los Angeles, CA 90001" +266410,AAA Batteries (4-pack),1,2.99,10/30/19 19:56,"623 10th St, Atlanta, GA 30301" +266411,27in FHD Monitor,1,149.99,10/16/19 20:53,"837 Walnut St, Portland, OR 97035" +266412,Vareebadd Phone,1,400,10/17/19 12:08,"686 Adams St, San Francisco, CA 94016" +266412,USB-C Charging Cable,1,11.95,10/17/19 12:08,"686 Adams St, San Francisco, CA 94016" +266413,Apple Airpods Headphones,1,150,10/30/19 18:24,"252 River St, San Francisco, CA 94016" +266414,Apple Airpods Headphones,1,150,10/12/19 19:24,"853 Main St, Austin, TX 73301" +266415,AAA Batteries (4-pack),3,2.99,10/01/19 18:25,"856 Lincoln St, Atlanta, GA 30301" +266416,34in Ultrawide Monitor,1,379.99,10/12/19 18:47,"816 Lincoln St, Seattle, WA 98101" +266417,Wired Headphones,1,11.99,10/19/19 17:09,"739 Wilson St, Dallas, TX 75001" +266418,iPhone,1,700,10/12/19 20:46,"605 4th St, Atlanta, GA 30301" +266419,Flatscreen TV,1,300,10/01/19 08:23,"200 2nd St, New York City, NY 10001" +266420,Lightning Charging Cable,1,14.95,10/18/19 07:17,"325 Wilson St, Austin, TX 73301" +266421,Wired Headphones,1,11.99,10/30/19 18:11,"316 Chestnut St, San Francisco, CA 94016" +266422,AA Batteries (4-pack),1,3.84,10/23/19 17:14,"648 Elm St, Los Angeles, CA 90001" +266423,Wired Headphones,1,11.99,11/01/19 02:18,"953 North St, Seattle, WA 98101" +266424,Apple Airpods Headphones,1,150,10/16/19 06:58,"264 5th St, Atlanta, GA 30301" +266425,Wired Headphones,2,11.99,10/28/19 18:06,"895 7th St, Portland, OR 97035" +266426,Lightning Charging Cable,1,14.95,10/06/19 20:17,"456 Lakeview St, Portland, OR 97035" +266427,20in Monitor,1,109.99,10/04/19 22:29,"880 Center St, Los Angeles, CA 90001" +266428,20in Monitor,1,109.99,10/07/19 11:27,"942 5th St, Portland, OR 97035" +266429,AA Batteries (4-pack),1,3.84,10/30/19 12:34,"601 5th St, San Francisco, CA 94016" +266430,Bose SoundSport Headphones,1,99.99,10/30/19 10:23,"902 6th St, New York City, NY 10001" +266431,USB-C Charging Cable,1,11.95,10/25/19 16:16,"594 Church St, Los Angeles, CA 90001" +266432,AA Batteries (4-pack),1,3.84,10/16/19 16:57,"763 Park St, Seattle, WA 98101" +266433,Apple Airpods Headphones,1,150,10/28/19 23:12,"542 Lakeview St, Seattle, WA 98101" +266434,Flatscreen TV,1,300,10/02/19 09:17,"402 11th St, Atlanta, GA 30301" +266435,20in Monitor,1,109.99,10/29/19 14:53,"384 11th St, Los Angeles, CA 90001" +266436,Wired Headphones,1,11.99,10/23/19 21:12,"767 Forest St, Atlanta, GA 30301" +266437,AAA Batteries (4-pack),4,2.99,10/02/19 20:18,"17 Forest St, San Francisco, CA 94016" +266438,Wired Headphones,1,11.99,10/10/19 14:00,"188 Jefferson St, Los Angeles, CA 90001" +266439,AAA Batteries (4-pack),1,2.99,10/18/19 11:38,"107 Lincoln St, Los Angeles, CA 90001" +266440,Wired Headphones,1,11.99,10/04/19 20:08,"267 6th St, Boston, MA 02215" +266441,AAA Batteries (4-pack),2,2.99,10/17/19 14:13,"249 Willow St, Seattle, WA 98101" +266442,Flatscreen TV,1,300,10/19/19 09:48,"674 Ridge St, Dallas, TX 75001" +266443,Wired Headphones,1,11.99,10/01/19 12:37,"260 Church St, Portland, OR 97035" +266444,Flatscreen TV,1,300,10/15/19 22:28,"40 Sunset St, Boston, MA 02215" +266445,27in 4K Gaming Monitor,1,389.99,10/22/19 20:52,"151 South St, New York City, NY 10001" +266446,Wired Headphones,1,11.99,10/20/19 01:19,"635 Maple St, Seattle, WA 98101" +266447,Lightning Charging Cable,1,14.95,10/13/19 18:06,"384 Hickory St, Seattle, WA 98101" +266448,USB-C Charging Cable,1,11.95,10/18/19 19:24,"854 2nd St, Boston, MA 02215" +266449,Apple Airpods Headphones,1,150,10/19/19 19:55,"791 Dogwood St, San Francisco, CA 94016" +266450,Wired Headphones,1,11.99,10/14/19 21:39,"717 Adams St, Los Angeles, CA 90001" +266451,Apple Airpods Headphones,1,150,10/14/19 11:01,"547 8th St, Atlanta, GA 30301" +266452,Lightning Charging Cable,1,14.95,10/02/19 20:38,"482 Church St, Los Angeles, CA 90001" +266453,27in FHD Monitor,1,149.99,10/22/19 18:36,"31 11th St, Atlanta, GA 30301" +266454,Lightning Charging Cable,1,14.95,10/29/19 09:58,"755 Elm St, New York City, NY 10001" +266455,Apple Airpods Headphones,1,150,10/21/19 11:48,"2 Walnut St, San Francisco, CA 94016" +266456,Apple Airpods Headphones,1,150,10/12/19 17:02,"367 7th St, Atlanta, GA 30301" +266457,Vareebadd Phone,1,400,10/08/19 00:54,"236 Lake St, Seattle, WA 98101" +266457,Bose SoundSport Headphones,1,99.99,10/08/19 00:54,"236 Lake St, Seattle, WA 98101" +266458,20in Monitor,1,109.99,10/10/19 08:50,"178 10th St, San Francisco, CA 94016" +266459,LG Dryer,1,600.0,10/20/19 02:01,"88 Hickory St, Seattle, WA 98101" +266460,AA Batteries (4-pack),1,3.84,10/31/19 19:01,"86 6th St, Portland, OR 97035" +266461,Flatscreen TV,1,300,10/07/19 08:16,"693 Center St, Los Angeles, CA 90001" +266462,27in FHD Monitor,1,149.99,10/28/19 09:01,"333 Hill St, Portland, OR 97035" +266463,Lightning Charging Cable,1,14.95,10/17/19 15:35,"730 Ridge St, New York City, NY 10001" +266464,Google Phone,1,600,10/28/19 11:25,"490 1st St, San Francisco, CA 94016" +266465,USB-C Charging Cable,1,11.95,10/30/19 14:45,"522 Elm St, New York City, NY 10001" +266466,Wired Headphones,1,11.99,10/17/19 19:48,"767 8th St, Portland, OR 97035" +266467,iPhone,1,700,10/11/19 23:17,"214 Forest St, New York City, NY 10001" +266467,Apple Airpods Headphones,1,150,10/11/19 23:17,"214 Forest St, New York City, NY 10001" +266468,Lightning Charging Cable,1,14.95,10/02/19 00:19,"873 River St, San Francisco, CA 94016" +266469,USB-C Charging Cable,1,11.95,10/21/19 09:20,"762 Hill St, San Francisco, CA 94016" +266470,27in FHD Monitor,1,149.99,10/11/19 11:19,"862 10th St, San Francisco, CA 94016" +266471,Wired Headphones,1,11.99,10/13/19 21:40,"685 Chestnut St, New York City, NY 10001" +266472,Flatscreen TV,1,300,10/29/19 13:31,"673 1st St, Los Angeles, CA 90001" +266473,Apple Airpods Headphones,1,150,10/14/19 19:05,"289 5th St, Boston, MA 02215" +266474,27in 4K Gaming Monitor,1,389.99,10/03/19 11:32,"709 Elm St, New York City, NY 10001" +266475,USB-C Charging Cable,1,11.95,10/13/19 12:20,"349 Hickory St, New York City, NY 10001" +266476,AAA Batteries (4-pack),2,2.99,10/04/19 13:38,"700 Church St, San Francisco, CA 94016" +266477,USB-C Charging Cable,1,11.95,10/16/19 19:20,"52 Forest St, Atlanta, GA 30301" +266478,Apple Airpods Headphones,1,150,10/01/19 16:09,"176 Jackson St, Dallas, TX 75001" +266479,AAA Batteries (4-pack),1,2.99,10/01/19 09:03,"117 5th St, San Francisco, CA 94016" +266480,Vareebadd Phone,1,400,10/13/19 13:12,"338 8th St, Los Angeles, CA 90001" +266480,USB-C Charging Cable,1,11.95,10/13/19 13:12,"338 8th St, Los Angeles, CA 90001" +266481,AA Batteries (4-pack),1,3.84,10/03/19 07:49,"185 Lakeview St, Seattle, WA 98101" +266482,20in Monitor,1,109.99,10/23/19 22:45,"476 Hill St, San Francisco, CA 94016" +266483,34in Ultrawide Monitor,1,379.99,10/22/19 22:20,"840 10th St, San Francisco, CA 94016" +266484,AA Batteries (4-pack),3,3.84,10/02/19 16:26,"555 Adams St, Boston, MA 02215" +266485,USB-C Charging Cable,1,11.95,10/30/19 17:59,"703 Wilson St, Portland, OR 97035" +266486,AA Batteries (4-pack),1,3.84,10/11/19 14:39,"558 Ridge St, San Francisco, CA 94016" +266487,USB-C Charging Cable,1,11.95,10/08/19 08:39,"648 Madison St, San Francisco, CA 94016" +266488,Lightning Charging Cable,2,14.95,10/31/19 13:58,"174 North St, San Francisco, CA 94016" +266489,Lightning Charging Cable,1,14.95,10/11/19 22:23,"370 Pine St, Atlanta, GA 30301" +266490,Vareebadd Phone,1,400,10/03/19 14:42,"223 Pine St, Seattle, WA 98101" +266490,USB-C Charging Cable,1,11.95,10/03/19 14:42,"223 Pine St, Seattle, WA 98101" +266491,Lightning Charging Cable,1,14.95,10/27/19 12:17,"937 Cedar St, New York City, NY 10001" +266492,Apple Airpods Headphones,1,150,10/20/19 09:35,"108 4th St, Portland, OR 97035" +266493,AA Batteries (4-pack),1,3.84,10/23/19 10:38,"565 8th St, Dallas, TX 75001" +266494,AAA Batteries (4-pack),1,2.99,10/21/19 13:05,"670 Jackson St, Dallas, TX 75001" +266495,ThinkPad Laptop,1,999.99,10/29/19 20:47,"494 Lincoln St, Austin, TX 73301" +266496,AA Batteries (4-pack),1,3.84,10/27/19 17:42,"776 Church St, New York City, NY 10001" +266497,Apple Airpods Headphones,1,150,10/28/19 19:50,"743 8th St, Dallas, TX 75001" +266498,Apple Airpods Headphones,1,150,10/05/19 13:36,"395 Madison St, New York City, NY 10001" +266499,Apple Airpods Headphones,1,150,10/13/19 17:49,"479 Elm St, Austin, TX 73301" +266500,Apple Airpods Headphones,1,150,10/29/19 13:30,"164 Wilson St, Dallas, TX 75001" +266501,27in FHD Monitor,1,149.99,10/11/19 17:56,"365 Washington St, Portland, OR 97035" +266502,USB-C Charging Cable,1,11.95,10/12/19 16:30,"565 Cedar St, Dallas, TX 75001" +266503,AAA Batteries (4-pack),2,2.99,10/23/19 19:54,"290 Ridge St, Boston, MA 02215" +266504,Wired Headphones,1,11.99,10/12/19 20:44,"863 North St, Seattle, WA 98101" +266505,AAA Batteries (4-pack),1,2.99,10/29/19 20:44,"901 4th St, San Francisco, CA 94016" +266506,Bose SoundSport Headphones,1,99.99,10/19/19 09:00,"957 Cherry St, Dallas, TX 75001" +266507,Lightning Charging Cable,1,14.95,10/08/19 17:30,"445 Madison St, Dallas, TX 75001" +266508,USB-C Charging Cable,1,11.95,10/27/19 17:05,"393 Meadow St, Los Angeles, CA 90001" +266509,AAA Batteries (4-pack),1,2.99,10/12/19 16:25,"140 West St, Seattle, WA 98101" +266510,LG Washing Machine,1,600.0,10/18/19 18:53,"404 8th St, Los Angeles, CA 90001" +266511,Wired Headphones,1,11.99,10/22/19 11:20,"169 Elm St, San Francisco, CA 94016" +266512,AA Batteries (4-pack),1,3.84,10/09/19 15:43,"100 Meadow St, Seattle, WA 98101" +266513,Wired Headphones,1,11.99,10/18/19 14:08,"132 Center St, Los Angeles, CA 90001" +266514,27in 4K Gaming Monitor,1,389.99,10/20/19 18:09,"421 6th St, San Francisco, CA 94016" +266515,27in FHD Monitor,1,149.99,10/24/19 15:03,"668 12th St, New York City, NY 10001" +266516,Wired Headphones,1,11.99,10/21/19 11:52,"940 Willow St, Los Angeles, CA 90001" +266517,USB-C Charging Cable,1,11.95,10/10/19 19:45,"629 Lincoln St, Los Angeles, CA 90001" +266518,Lightning Charging Cable,1,14.95,10/29/19 15:20,"780 Main St, San Francisco, CA 94016" +266519,AAA Batteries (4-pack),1,2.99,10/05/19 21:22,"740 Center St, Atlanta, GA 30301" +266520,Wired Headphones,1,11.99,10/29/19 11:50,"645 8th St, Seattle, WA 98101" +266521,USB-C Charging Cable,1,11.95,10/20/19 15:48,"620 4th St, San Francisco, CA 94016" +266522,Macbook Pro Laptop,1,1700,10/18/19 20:18,"775 Johnson St, Boston, MA 02215" +266523,Lightning Charging Cable,1,14.95,10/13/19 23:21,"883 Johnson St, San Francisco, CA 94016" +266524,Wired Headphones,1,11.99,10/16/19 12:12,"892 Lakeview St, Boston, MA 02215" +266525,AA Batteries (4-pack),1,3.84,10/30/19 10:21,"419 Hill St, Austin, TX 73301" +266526,AAA Batteries (4-pack),1,2.99,10/12/19 15:16,"759 Madison St, New York City, NY 10001" +266527,Google Phone,1,600,10/01/19 13:01,"700 6th St, San Francisco, CA 94016" +266527,Wired Headphones,2,11.99,10/01/19 13:01,"700 6th St, San Francisco, CA 94016" +266528,AA Batteries (4-pack),1,3.84,10/03/19 06:16,"984 Chestnut St, Boston, MA 02215" +266529,AAA Batteries (4-pack),1,2.99,10/21/19 20:58,"823 Lakeview St, New York City, NY 10001" +266530,Bose SoundSport Headphones,1,99.99,10/29/19 22:26,"83 Elm St, Dallas, TX 75001" +266531,AAA Batteries (4-pack),1,2.99,10/14/19 17:54,"27 8th St, San Francisco, CA 94016" +266532,Bose SoundSport Headphones,1,99.99,10/24/19 08:23,"700 South St, New York City, NY 10001" +266533,Lightning Charging Cable,1,14.95,10/08/19 14:59,"666 Elm St, Seattle, WA 98101" +266534,Google Phone,1,600,10/16/19 15:40,"710 Forest St, Los Angeles, CA 90001" +266534,USB-C Charging Cable,1,11.95,10/16/19 15:40,"710 Forest St, Los Angeles, CA 90001" +266535,Bose SoundSport Headphones,1,99.99,10/24/19 11:39,"55 Elm St, Los Angeles, CA 90001" +266535,Wired Headphones,1,11.99,10/24/19 11:39,"55 Elm St, Los Angeles, CA 90001" +266536,Lightning Charging Cable,1,14.95,10/05/19 16:24,"661 Dogwood St, San Francisco, CA 94016" +266537,AA Batteries (4-pack),2,3.84,10/04/19 11:17,"762 7th St, San Francisco, CA 94016" +266538,AA Batteries (4-pack),2,3.84,10/16/19 16:28,"638 Ridge St, Portland, OR 97035" +266539,Wired Headphones,1,11.99,10/09/19 14:02,"603 Hickory St, Los Angeles, CA 90001" +266540,27in 4K Gaming Monitor,1,389.99,10/06/19 08:01,"469 Forest St, Portland, OR 97035" +266541,USB-C Charging Cable,1,11.95,10/03/19 05:27,"275 Chestnut St, Atlanta, GA 30301" +266542,27in 4K Gaming Monitor,1,389.99,10/28/19 18:46,"75 Cherry St, San Francisco, CA 94016" +266543,Google Phone,1,600,10/10/19 18:35,"178 10th St, Atlanta, GA 30301" +266544,AAA Batteries (4-pack),1,2.99,10/11/19 17:03,"409 Lakeview St, New York City, NY 10001" +266545,Wired Headphones,2,11.99,10/29/19 16:12,"525 Jefferson St, Seattle, WA 98101" +266546,Lightning Charging Cable,1,14.95,10/03/19 08:35,"74 Jefferson St, Seattle, WA 98101" +266547,Wired Headphones,1,11.99,10/29/19 12:08,"273 Chestnut St, San Francisco, CA 94016" +266548,Macbook Pro Laptop,1,1700,10/31/19 19:52,"608 Walnut St, Los Angeles, CA 90001" +266549,AAA Batteries (4-pack),3,2.99,10/05/19 22:05,"981 West St, Los Angeles, CA 90001" +266550,27in 4K Gaming Monitor,1,389.99,10/05/19 14:08,"983 11th St, Dallas, TX 75001" +266551,27in 4K Gaming Monitor,1,389.99,10/10/19 09:33,"930 Adams St, Dallas, TX 75001" +266552,AAA Batteries (4-pack),1,2.99,10/13/19 18:27,"243 Wilson St, Dallas, TX 75001" +266553,Bose SoundSport Headphones,1,99.99,10/02/19 10:04,"925 13th St, New York City, NY 10001" +266554,Bose SoundSport Headphones,1,99.99,10/20/19 01:54,"1 Johnson St, Dallas, TX 75001" +266555,27in 4K Gaming Monitor,1,389.99,10/02/19 18:07,"153 Sunset St, San Francisco, CA 94016" +266556,iPhone,1,700,10/22/19 20:42,"2 Highland St, New York City, NY 10001" +266557,USB-C Charging Cable,1,11.95,10/06/19 13:50,"359 9th St, Seattle, WA 98101" +266558,iPhone,1,700,10/24/19 20:50,"795 2nd St, Los Angeles, CA 90001" +266559,USB-C Charging Cable,1,11.95,10/15/19 08:38,"18 10th St, Los Angeles, CA 90001" +266560,27in 4K Gaming Monitor,1,389.99,10/16/19 12:38,"69 Lincoln St, San Francisco, CA 94016" +266561,USB-C Charging Cable,2,11.95,10/16/19 11:04,"402 Chestnut St, San Francisco, CA 94016" +266561,Apple Airpods Headphones,1,150,10/16/19 11:04,"402 Chestnut St, San Francisco, CA 94016" +266562,Bose SoundSport Headphones,1,99.99,10/25/19 17:58,"792 Cedar St, Austin, TX 73301" +266563,Flatscreen TV,1,300,10/07/19 21:26,"134 Dogwood St, New York City, NY 10001" +266564,USB-C Charging Cable,2,11.95,10/23/19 16:36,"458 Sunset St, Atlanta, GA 30301" +266565,AAA Batteries (4-pack),1,2.99,10/05/19 18:48,"512 Lake St, Los Angeles, CA 90001" +266566,iPhone,1,700,10/31/19 19:16,"456 4th St, Los Angeles, CA 90001" +266566,Lightning Charging Cable,1,14.95,10/31/19 19:16,"456 4th St, Los Angeles, CA 90001" +266566,Wired Headphones,1,11.99,10/31/19 19:16,"456 4th St, Los Angeles, CA 90001" +266567,Macbook Pro Laptop,1,1700,10/20/19 17:23,"878 Jackson St, Boston, MA 02215" +266568,USB-C Charging Cable,1,11.95,10/01/19 18:41,"635 Dogwood St, Portland, OR 97035" +266569,AA Batteries (4-pack),1,3.84,10/01/19 20:56,"99 Hickory St, Austin, TX 73301" +266570,AAA Batteries (4-pack),2,2.99,10/08/19 21:21,"940 West St, San Francisco, CA 94016" +266571,iPhone,1,700,10/02/19 20:11,"448 Pine St, Dallas, TX 75001" +266571,Wired Headphones,1,11.99,10/02/19 20:11,"448 Pine St, Dallas, TX 75001" +266572,Macbook Pro Laptop,1,1700,10/22/19 23:03,"815 Park St, Portland, OR 97035" +266573,Lightning Charging Cable,1,14.95,10/04/19 10:23,"882 2nd St, Portland, OR 97035" +266574,Apple Airpods Headphones,1,150,10/25/19 09:18,"836 Johnson St, San Francisco, CA 94016" +266575,27in 4K Gaming Monitor,1,389.99,10/14/19 11:10,"738 Cedar St, Dallas, TX 75001" +266576,Bose SoundSport Headphones,1,99.99,10/05/19 17:39,"187 2nd St, New York City, NY 10001" +266577,USB-C Charging Cable,2,11.95,10/27/19 18:57,"568 Hill St, New York City, NY 10001" +266578,AAA Batteries (4-pack),1,2.99,10/12/19 10:17,"704 Jackson St, San Francisco, CA 94016" +266579,27in FHD Monitor,1,149.99,10/30/19 07:03,"876 14th St, Portland, OR 97035" +266580,27in FHD Monitor,1,149.99,10/28/19 17:38,"119 4th St, New York City, NY 10001" +266581,Wired Headphones,1,11.99,10/05/19 17:48,"392 Sunset St, Los Angeles, CA 90001" +266582,Wired Headphones,2,11.99,10/29/19 06:23,"12 Spruce St, Los Angeles, CA 90001" +266583,USB-C Charging Cable,1,11.95,10/31/19 01:12,"292 Elm St, New York City, NY 10001" +266584,Lightning Charging Cable,1,14.95,10/07/19 08:02,"294 9th St, Los Angeles, CA 90001" +266585,Google Phone,1,600,10/14/19 09:17,"399 5th St, Boston, MA 02215" +266586,Lightning Charging Cable,1,14.95,10/17/19 10:16,"940 12th St, San Francisco, CA 94016" +266587,AAA Batteries (4-pack),4,2.99,10/29/19 12:27,"750 Jackson St, Boston, MA 02215" +266588,Wired Headphones,1,11.99,10/21/19 14:14,"651 6th St, Los Angeles, CA 90001" +266589,AA Batteries (4-pack),1,3.84,10/08/19 20:40,"562 Madison St, Dallas, TX 75001" +266590,AA Batteries (4-pack),1,3.84,10/10/19 04:51,"186 8th St, San Francisco, CA 94016" +266591,AA Batteries (4-pack),1,3.84,10/23/19 11:57,"323 5th St, Los Angeles, CA 90001" +266592,27in FHD Monitor,1,149.99,10/05/19 12:32,"586 West St, Los Angeles, CA 90001" +266593,AA Batteries (4-pack),2,3.84,10/30/19 13:16,"497 Lakeview St, Seattle, WA 98101" +266594,Lightning Charging Cable,1,14.95,10/02/19 03:23,"474 Spruce St, Boston, MA 02215" +266595,AAA Batteries (4-pack),2,2.99,10/06/19 00:22,"620 13th St, New York City, NY 10001" +266596,AAA Batteries (4-pack),1,2.99,10/05/19 17:45,"87 Hickory St, Los Angeles, CA 90001" +266597,AAA Batteries (4-pack),1,2.99,10/07/19 18:23,"400 Willow St, San Francisco, CA 94016" +266598,AAA Batteries (4-pack),2,2.99,10/06/19 08:55,"976 Cedar St, Los Angeles, CA 90001" +266599,Bose SoundSport Headphones,1,99.99,10/29/19 15:32,"853 9th St, San Francisco, CA 94016" +266600,Flatscreen TV,1,300,10/23/19 01:19,"551 6th St, New York City, NY 10001" +266601,20in Monitor,1,109.99,10/05/19 09:23,"538 Chestnut St, Boston, MA 02215" +266602,Wired Headphones,1,11.99,10/10/19 17:08,"991 Hill St, Dallas, TX 75001" +266603,Lightning Charging Cable,1,14.95,10/14/19 10:37,"204 Adams St, Austin, TX 73301" +266604,Apple Airpods Headphones,1,150,10/24/19 14:37,"109 1st St, Atlanta, GA 30301" +266605,Bose SoundSport Headphones,1,99.99,10/16/19 23:21,"525 Lakeview St, Portland, OR 97035" +266606,AA Batteries (4-pack),2,3.84,10/25/19 07:53,"625 River St, San Francisco, CA 94016" +266607,Wired Headphones,1,11.99,10/31/19 15:29,"260 Sunset St, Boston, MA 02215" +266608,Lightning Charging Cable,1,14.95,10/14/19 20:15,"942 Madison St, Los Angeles, CA 90001" +266609,ThinkPad Laptop,1,999.99,10/27/19 14:04,"318 Cherry St, Atlanta, GA 30301" +266610,27in FHD Monitor,1,149.99,10/23/19 00:19,"649 2nd St, San Francisco, CA 94016" +266611,USB-C Charging Cable,1,11.95,10/10/19 13:23,"813 5th St, San Francisco, CA 94016" +266612,Lightning Charging Cable,1,14.95,10/20/19 19:39,"204 7th St, San Francisco, CA 94016" +266613,AA Batteries (4-pack),1,3.84,10/14/19 12:16,"659 10th St, Los Angeles, CA 90001" +266614,Bose SoundSport Headphones,1,99.99,10/10/19 09:18,"857 Ridge St, Seattle, WA 98101" +266615,USB-C Charging Cable,1,11.95,10/13/19 10:20,"668 South St, Los Angeles, CA 90001" +266616,Bose SoundSport Headphones,1,99.99,10/17/19 20:10,"120 Johnson St, San Francisco, CA 94016" +266617,Bose SoundSport Headphones,1,99.99,10/27/19 18:32,"20 Willow St, Atlanta, GA 30301" +266618,Lightning Charging Cable,1,14.95,10/22/19 10:29,"63 Ridge St, Portland, OR 97035" +266619,Wired Headphones,1,11.99,10/25/19 10:03,"738 Jackson St, Los Angeles, CA 90001" +266620,34in Ultrawide Monitor,1,379.99,10/02/19 16:10,"148 Church St, Portland, OR 97035" +266621,27in 4K Gaming Monitor,1,389.99,10/02/19 09:58,"109 Pine St, Los Angeles, CA 90001" +266622,Apple Airpods Headphones,1,150,10/27/19 13:32,"205 Jackson St, Portland, ME 04101" +266623,Wired Headphones,1,11.99,10/02/19 21:03,"982 Sunset St, San Francisco, CA 94016" +266624,USB-C Charging Cable,1,11.95,10/23/19 11:47,"653 Chestnut St, Portland, ME 04101" +266625,AA Batteries (4-pack),1,3.84,10/01/19 09:28,"144 Pine St, San Francisco, CA 94016" +266626,AA Batteries (4-pack),1,3.84,10/15/19 23:48,"489 Spruce St, Los Angeles, CA 90001" +266627,Flatscreen TV,1,300,10/24/19 20:21,"419 North St, Portland, OR 97035" +266628,Apple Airpods Headphones,1,150,10/01/19 12:08,"629 Church St, San Francisco, CA 94016" +266629,USB-C Charging Cable,1,11.95,10/29/19 18:47,"786 Ridge St, San Francisco, CA 94016" +266630,34in Ultrawide Monitor,1,379.99,10/30/19 15:14,"426 5th St, San Francisco, CA 94016" +266631,Wired Headphones,1,11.99,10/26/19 21:27,"792 5th St, New York City, NY 10001" +266632,Lightning Charging Cable,1,14.95,10/24/19 21:08,"987 Pine St, Portland, OR 97035" +266633,Apple Airpods Headphones,1,150,10/19/19 16:34,"202 Lincoln St, San Francisco, CA 94016" +266634,Macbook Pro Laptop,1,1700,10/27/19 04:53,"597 Willow St, San Francisco, CA 94016" +266635,USB-C Charging Cable,1,11.95,10/21/19 11:33,"283 4th St, Dallas, TX 75001" +266636,Wired Headphones,2,11.99,10/03/19 16:14,"144 Washington St, Portland, ME 04101" +266637,USB-C Charging Cable,1,11.95,10/20/19 11:09,"953 Chestnut St, New York City, NY 10001" +266638,AAA Batteries (4-pack),1,2.99,10/12/19 16:05,"769 North St, New York City, NY 10001" +266639,Lightning Charging Cable,2,14.95,10/23/19 16:16,"522 11th St, San Francisco, CA 94016" +266640,Bose SoundSport Headphones,1,99.99,10/29/19 01:56,"355 Ridge St, Boston, MA 02215" +266641,Lightning Charging Cable,1,14.95,10/19/19 00:01,"333 Walnut St, San Francisco, CA 94016" +266642,iPhone,1,700,10/02/19 18:06,"917 Dogwood St, Atlanta, GA 30301" +266643,Bose SoundSport Headphones,1,99.99,10/16/19 17:19,"735 North St, Boston, MA 02215" +266644,AAA Batteries (4-pack),1,2.99,10/30/19 20:23,"387 Church St, Boston, MA 02215" +266645,USB-C Charging Cable,1,11.95,10/18/19 19:03,"58 Spruce St, Los Angeles, CA 90001" +266646,27in 4K Gaming Monitor,1,389.99,10/17/19 21:20,"326 Cedar St, Atlanta, GA 30301" +266647,34in Ultrawide Monitor,1,379.99,10/27/19 13:22,"709 7th St, Austin, TX 73301" +266648,Flatscreen TV,1,300,10/03/19 15:07,"163 1st St, San Francisco, CA 94016" +266649,34in Ultrawide Monitor,1,379.99,10/19/19 22:31,"230 Ridge St, San Francisco, CA 94016" +266650,Wired Headphones,1,11.99,10/17/19 14:40,"65 11th St, Atlanta, GA 30301" +266651,Bose SoundSport Headphones,1,99.99,10/14/19 14:38,"536 13th St, San Francisco, CA 94016" +266652,Bose SoundSport Headphones,1,99.99,10/28/19 18:36,"970 Lakeview St, Los Angeles, CA 90001" +266653,AAA Batteries (4-pack),1,2.99,10/05/19 13:54,"863 Hickory St, Austin, TX 73301" +266654,LG Dryer,1,600.0,10/16/19 06:27,"259 Spruce St, Dallas, TX 75001" +266655,AAA Batteries (4-pack),3,2.99,10/13/19 05:14,"519 Hill St, Boston, MA 02215" +266656,USB-C Charging Cable,1,11.95,10/01/19 17:05,"284 Lakeview St, New York City, NY 10001" +266657,AAA Batteries (4-pack),1,2.99,10/11/19 03:16,"628 1st St, Portland, OR 97035" +266658,AA Batteries (4-pack),2,3.84,10/17/19 16:53,"360 Pine St, San Francisco, CA 94016" +266659,AA Batteries (4-pack),1,3.84,10/29/19 16:32,"505 Lincoln St, Dallas, TX 75001" +266660,AAA Batteries (4-pack),1,2.99,10/31/19 06:30,"861 14th St, Boston, MA 02215" +266661,Macbook Pro Laptop,1,1700,10/09/19 17:06,"876 Walnut St, San Francisco, CA 94016" +266662,AA Batteries (4-pack),2,3.84,10/29/19 12:03,"208 Maple St, Los Angeles, CA 90001" +266663,USB-C Charging Cable,1,11.95,10/29/19 15:16,"376 Adams St, Los Angeles, CA 90001" +266664,Lightning Charging Cable,1,14.95,10/14/19 18:26,"812 Washington St, New York City, NY 10001" +266665,Apple Airpods Headphones,1,150,10/24/19 14:09,"827 Wilson St, Portland, OR 97035" +266666,iPhone,1,700,10/10/19 10:36,"783 Willow St, Portland, OR 97035" +266667,Lightning Charging Cable,1,14.95,10/08/19 20:06,"773 Willow St, New York City, NY 10001" +266668,AA Batteries (4-pack),2,3.84,10/06/19 15:59,"912 Willow St, San Francisco, CA 94016" +266669,27in FHD Monitor,1,149.99,11/01/19 01:17,"29 Pine St, San Francisco, CA 94016" +266670,Google Phone,1,600,10/15/19 16:52,"16 North St, Boston, MA 02215" +266671,AA Batteries (4-pack),1,3.84,10/02/19 20:49,"160 Cedar St, San Francisco, CA 94016" +266672,Bose SoundSport Headphones,1,99.99,10/15/19 22:13,"520 Sunset St, Boston, MA 02215" +266673,Apple Airpods Headphones,1,150,10/25/19 06:50,"418 River St, Los Angeles, CA 90001" +266674,AAA Batteries (4-pack),1,2.99,10/13/19 19:00,"967 14th St, San Francisco, CA 94016" +266675,Lightning Charging Cable,1,14.95,10/03/19 01:49,"637 River St, San Francisco, CA 94016" +266676,Apple Airpods Headphones,1,150,10/18/19 10:57,"61 Walnut St, Los Angeles, CA 90001" +266677,AAA Batteries (4-pack),2,2.99,10/16/19 10:37,"171 13th St, Seattle, WA 98101" +266678,Bose SoundSport Headphones,1,99.99,10/24/19 11:05,"620 Lake St, New York City, NY 10001" +266679,Bose SoundSport Headphones,1,99.99,10/20/19 22:16,"188 Madison St, Los Angeles, CA 90001" +266680,USB-C Charging Cable,1,11.95,10/12/19 14:06,"314 Hickory St, New York City, NY 10001" +266681,AAA Batteries (4-pack),2,2.99,10/10/19 18:22,"760 4th St, Portland, OR 97035" +266682,Lightning Charging Cable,1,14.95,10/16/19 13:57,"185 Walnut St, San Francisco, CA 94016" +266683,20in Monitor,1,109.99,10/15/19 11:14,"913 Dogwood St, Boston, MA 02215" +266684,Bose SoundSport Headphones,1,99.99,10/14/19 10:06,"767 14th St, Dallas, TX 75001" +266685,Apple Airpods Headphones,1,150,10/04/19 21:16,"232 Jackson St, Los Angeles, CA 90001" +266686,AA Batteries (4-pack),2,3.84,10/09/19 07:57,"491 Church St, Los Angeles, CA 90001" +266687,AA Batteries (4-pack),2,3.84,10/29/19 12:36,"810 8th St, Dallas, TX 75001" +266688,20in Monitor,1,109.99,10/14/19 11:50,"612 Ridge St, Dallas, TX 75001" +266689,AA Batteries (4-pack),1,3.84,10/24/19 20:06,"140 South St, Los Angeles, CA 90001" +266690,AA Batteries (4-pack),1,3.84,10/27/19 20:32,"524 14th St, San Francisco, CA 94016" +266691,iPhone,1,700,10/31/19 13:42,"40 5th St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +266692,Flatscreen TV,1,300,10/08/19 20:44,"444 Spruce St, San Francisco, CA 94016" +266693,USB-C Charging Cable,1,11.95,10/08/19 17:35,"695 Lincoln St, New York City, NY 10001" +266694,Apple Airpods Headphones,1,150,10/20/19 14:52,"613 Main St, San Francisco, CA 94016" +266695,iPhone,1,700,10/08/19 20:48,"853 Elm St, San Francisco, CA 94016" +266695,Wired Headphones,1,11.99,10/08/19 20:48,"853 Elm St, San Francisco, CA 94016" +266696,Wired Headphones,2,11.99,10/05/19 16:10,"563 North St, Dallas, TX 75001" +266697,Lightning Charging Cable,1,14.95,10/23/19 17:43,"471 Elm St, New York City, NY 10001" +266698,Wired Headphones,1,11.99,10/17/19 23:04,"545 Spruce St, Los Angeles, CA 90001" +266699,27in FHD Monitor,1,149.99,10/24/19 18:01,"211 Lake St, Los Angeles, CA 90001" +266700,AA Batteries (4-pack),2,3.84,10/24/19 07:46,"327 8th St, Los Angeles, CA 90001" +266701,Apple Airpods Headphones,1,150,10/23/19 18:06,"944 Wilson St, Boston, MA 02215" +266702,AAA Batteries (4-pack),1,2.99,10/20/19 13:52,"233 11th St, Los Angeles, CA 90001" +266703,AA Batteries (4-pack),2,3.84,10/04/19 21:50,"4 Ridge St, San Francisco, CA 94016" +266703,Google Phone,1,600,10/04/19 21:50,"4 Ridge St, San Francisco, CA 94016" +266704,AAA Batteries (4-pack),1,2.99,10/10/19 20:28,"567 4th St, Seattle, WA 98101" +266705,Apple Airpods Headphones,1,150,10/25/19 14:21,"977 North St, Dallas, TX 75001" +266706,iPhone,1,700,10/03/19 13:19,"425 Center St, New York City, NY 10001" +266707,Lightning Charging Cable,1,14.95,10/31/19 15:09,"828 River St, New York City, NY 10001" +266708,Apple Airpods Headphones,1,150,10/30/19 23:05,"55 12th St, New York City, NY 10001" +266709,AA Batteries (4-pack),1,3.84,10/19/19 09:28,"78 Hickory St, San Francisco, CA 94016" +266710,AAA Batteries (4-pack),1,2.99,10/22/19 11:33,"688 Adams St, Dallas, TX 75001" +266711,Macbook Pro Laptop,1,1700,10/18/19 10:28,"621 6th St, Seattle, WA 98101" +266712,AAA Batteries (4-pack),3,2.99,10/23/19 14:14,"707 Walnut St, Boston, MA 02215" +266713,Google Phone,1,600,10/17/19 22:27,"610 Hickory St, Atlanta, GA 30301" +266714,Wired Headphones,2,11.99,10/12/19 10:26,"520 Spruce St, San Francisco, CA 94016" +266715,Bose SoundSport Headphones,1,99.99,10/01/19 19:25,"828 2nd St, Austin, TX 73301" +266716,Flatscreen TV,1,300,10/06/19 09:38,"985 Church St, Boston, MA 02215" +266717,Apple Airpods Headphones,1,150,10/18/19 14:21,"728 10th St, New York City, NY 10001" +266718,Wired Headphones,1,11.99,10/08/19 15:33,"906 4th St, Seattle, WA 98101" +266719,20in Monitor,1,109.99,10/20/19 22:13,"704 14th St, Boston, MA 02215" +266720,AA Batteries (4-pack),1,3.84,10/18/19 16:56,"95 Main St, Atlanta, GA 30301" +266721,Lightning Charging Cable,1,14.95,10/01/19 14:10,"676 Pine St, Los Angeles, CA 90001" +266722,Bose SoundSport Headphones,1,99.99,10/22/19 05:16,"146 8th St, Austin, TX 73301" +266723,27in 4K Gaming Monitor,1,389.99,10/09/19 16:35,"754 4th St, Austin, TX 73301" +266724,Wired Headphones,1,11.99,10/09/19 20:12,"167 Ridge St, Los Angeles, CA 90001" +266725,Wired Headphones,1,11.99,10/28/19 16:44,"311 5th St, Atlanta, GA 30301" +266726,Wired Headphones,1,11.99,10/16/19 18:22,"987 Lake St, Los Angeles, CA 90001" +266727,USB-C Charging Cable,1,11.95,10/29/19 18:25,"485 13th St, Los Angeles, CA 90001" +266728,Apple Airpods Headphones,1,150,10/29/19 15:15,"615 6th St, San Francisco, CA 94016" +266729,Wired Headphones,1,11.99,10/22/19 20:15,"367 Lincoln St, Los Angeles, CA 90001" +266730,USB-C Charging Cable,1,11.95,10/17/19 13:19,"912 Washington St, Portland, OR 97035" +266731,ThinkPad Laptop,1,999.99,10/10/19 15:26,"569 Madison St, Seattle, WA 98101" +266732,USB-C Charging Cable,1,11.95,10/18/19 20:36,"174 Cherry St, New York City, NY 10001" +266733,Lightning Charging Cable,1,14.95,10/25/19 10:58,"247 Forest St, Austin, TX 73301" +266734,Google Phone,1,600,10/24/19 12:49,"701 10th St, Los Angeles, CA 90001" +266735,AAA Batteries (4-pack),1,2.99,10/24/19 19:56,"322 Pine St, Dallas, TX 75001" +266736,27in 4K Gaming Monitor,1,389.99,10/15/19 15:53,"794 Madison St, Portland, OR 97035" +266737,Apple Airpods Headphones,1,150,10/09/19 11:43,"178 7th St, Los Angeles, CA 90001" +266738,AA Batteries (4-pack),1,3.84,10/17/19 18:06,"63 10th St, San Francisco, CA 94016" +266739,34in Ultrawide Monitor,1,379.99,10/18/19 18:58,"590 2nd St, San Francisco, CA 94016" +266740,AA Batteries (4-pack),1,3.84,10/28/19 10:50,"504 Pine St, San Francisco, CA 94016" +266741,AA Batteries (4-pack),3,3.84,10/24/19 18:23,"898 10th St, Boston, MA 02215" +266742,Lightning Charging Cable,1,14.95,10/25/19 17:33,"815 Center St, Dallas, TX 75001" +266743,27in FHD Monitor,1,149.99,10/23/19 08:39,"980 Washington St, San Francisco, CA 94016" +266744,Wired Headphones,2,11.99,10/31/19 11:05,"506 Hill St, San Francisco, CA 94016" +266745,27in 4K Gaming Monitor,1,389.99,10/16/19 10:31,"638 6th St, New York City, NY 10001" +266746,Apple Airpods Headphones,2,150,10/22/19 00:01,"511 Madison St, Seattle, WA 98101" +266747,AA Batteries (4-pack),1,3.84,10/12/19 20:31,"809 Maple St, New York City, NY 10001" +266748,AAA Batteries (4-pack),1,2.99,10/15/19 10:48,"976 Johnson St, Dallas, TX 75001" +266749,Lightning Charging Cable,1,14.95,10/06/19 13:05,"315 9th St, New York City, NY 10001" +266750,Wired Headphones,1,11.99,10/19/19 16:50,"608 Center St, Boston, MA 02215" +266751,USB-C Charging Cable,1,11.95,10/13/19 19:07,"730 Lakeview St, Boston, MA 02215" +266752,ThinkPad Laptop,1,999.99,10/17/19 14:54,"886 Lake St, San Francisco, CA 94016" +266753,AAA Batteries (4-pack),1,2.99,10/24/19 09:25,"241 Center St, San Francisco, CA 94016" +266754,Lightning Charging Cable,1,14.95,10/04/19 19:26,"713 Ridge St, New York City, NY 10001" +266755,Lightning Charging Cable,1,14.95,10/24/19 16:31,"590 12th St, Los Angeles, CA 90001" +266756,Lightning Charging Cable,1,14.95,10/18/19 18:20,"965 6th St, Boston, MA 02215" +266757,34in Ultrawide Monitor,1,379.99,10/11/19 15:17,"164 Ridge St, San Francisco, CA 94016" +266758,Apple Airpods Headphones,1,150,10/06/19 12:27,"595 5th St, San Francisco, CA 94016" +266759,Bose SoundSport Headphones,1,99.99,10/13/19 15:37,"290 11th St, Atlanta, GA 30301" +266760,AAA Batteries (4-pack),2,2.99,10/13/19 12:57,"840 2nd St, Seattle, WA 98101" +266761,34in Ultrawide Monitor,1,379.99,10/19/19 11:56,"559 Willow St, San Francisco, CA 94016" +266762,Lightning Charging Cable,1,14.95,10/14/19 17:09,"682 Center St, Seattle, WA 98101" +266763,AAA Batteries (4-pack),2,2.99,10/28/19 09:30,"938 Church St, Los Angeles, CA 90001" +266763,Wired Headphones,1,11.99,10/28/19 09:30,"938 Church St, Los Angeles, CA 90001" +266764,USB-C Charging Cable,1,11.95,10/04/19 07:26,"496 Jackson St, Seattle, WA 98101" +266765,27in FHD Monitor,1,149.99,10/19/19 16:10,"171 West St, Boston, MA 02215" +266766,AAA Batteries (4-pack),1,2.99,10/01/19 10:52,"675 Pine St, Boston, MA 02215" +266767,34in Ultrawide Monitor,1,379.99,10/30/19 09:37,"649 7th St, San Francisco, CA 94016" +266768,USB-C Charging Cable,1,11.95,10/25/19 16:33,"800 Jackson St, Seattle, WA 98101" +266769,34in Ultrawide Monitor,1,379.99,10/12/19 13:32,"509 Washington St, Los Angeles, CA 90001" +266770,USB-C Charging Cable,1,11.95,10/18/19 17:30,"241 Madison St, Atlanta, GA 30301" +266771,27in 4K Gaming Monitor,1,389.99,10/15/19 11:14,"85 Highland St, Los Angeles, CA 90001" +266772,Google Phone,1,600,10/01/19 19:42,"368 Ridge St, New York City, NY 10001" +266773,AA Batteries (4-pack),1,3.84,10/13/19 12:22,"325 Walnut St, Los Angeles, CA 90001" +266774,Vareebadd Phone,1,400,10/01/19 17:42,"684 Walnut St, Portland, OR 97035" +266775,Wired Headphones,1,11.99,10/08/19 09:44,"527 Spruce St, New York City, NY 10001" +266776,34in Ultrawide Monitor,1,379.99,10/16/19 19:41,"383 9th St, New York City, NY 10001" +266777,27in 4K Gaming Monitor,1,389.99,10/24/19 14:05,"853 2nd St, Austin, TX 73301" +266778,AA Batteries (4-pack),1,3.84,10/18/19 14:47,"924 Willow St, San Francisco, CA 94016" +266779,USB-C Charging Cable,1,11.95,10/31/19 09:07,"737 13th St, San Francisco, CA 94016" +266780,Google Phone,1,600,10/07/19 21:31,"351 13th St, Austin, TX 73301" +266781,USB-C Charging Cable,1,11.95,10/21/19 22:22,"822 6th St, New York City, NY 10001" +266782,USB-C Charging Cable,1,11.95,10/19/19 14:07,"798 Center St, Seattle, WA 98101" +266783,Apple Airpods Headphones,1,150,10/21/19 09:25,"268 Walnut St, Atlanta, GA 30301" +266784,AAA Batteries (4-pack),1,2.99,10/03/19 15:09,"662 Hickory St, San Francisco, CA 94016" +266785,Bose SoundSport Headphones,1,99.99,10/24/19 21:03,"148 Maple St, Dallas, TX 75001" +266786,USB-C Charging Cable,1,11.95,10/28/19 10:20,"429 Church St, San Francisco, CA 94016" +266787,LG Washing Machine,1,600.0,10/25/19 14:55,"459 Washington St, Atlanta, GA 30301" +266788,AAA Batteries (4-pack),2,2.99,10/10/19 11:54,"895 11th St, Atlanta, GA 30301" +266789,Lightning Charging Cable,1,14.95,10/25/19 10:58,"364 12th St, San Francisco, CA 94016" +266790,Apple Airpods Headphones,1,150,10/16/19 07:58,"254 Park St, Portland, OR 97035" +266791,AAA Batteries (4-pack),1,2.99,10/16/19 15:47,"20 Chestnut St, Los Angeles, CA 90001" +266792,iPhone,1,700,10/29/19 11:27,"636 Main St, Los Angeles, CA 90001" +266793,ThinkPad Laptop,1,999.99,10/18/19 23:23,"462 Lake St, Dallas, TX 75001" +266794,Bose SoundSport Headphones,1,99.99,10/07/19 20:25,"394 South St, San Francisco, CA 94016" +266795,AA Batteries (4-pack),2,3.84,10/20/19 00:17,"378 Jefferson St, Austin, TX 73301" +266796,Apple Airpods Headphones,1,150,10/15/19 12:52,"835 13th St, San Francisco, CA 94016" +266797,Lightning Charging Cable,1,14.95,10/09/19 17:56,"829 13th St, San Francisco, CA 94016" +266797,Wired Headphones,1,11.99,10/09/19 17:56,"829 13th St, San Francisco, CA 94016" +266798,AA Batteries (4-pack),1,3.84,10/19/19 20:37,"98 2nd St, Boston, MA 02215" +266799,Apple Airpods Headphones,1,150,10/12/19 20:13,"26 Center St, Los Angeles, CA 90001" +266800,Apple Airpods Headphones,1,150,10/26/19 18:56,"652 12th St, Portland, OR 97035" +266801,Lightning Charging Cable,1,14.95,10/31/19 18:03,"361 Washington St, New York City, NY 10001" +266802,Google Phone,1,600,10/16/19 11:06,"351 Hickory St, New York City, NY 10001" +266803,Bose SoundSport Headphones,1,99.99,10/22/19 11:37,"941 Lincoln St, San Francisco, CA 94016" +266804,20in Monitor,1,109.99,10/08/19 17:58,"834 South St, Portland, OR 97035" +266805,Bose SoundSport Headphones,1,99.99,10/23/19 12:57,"237 12th St, Portland, OR 97035" +266806,27in 4K Gaming Monitor,1,389.99,10/18/19 10:18,"132 Church St, San Francisco, CA 94016" +266807,Wired Headphones,1,11.99,10/05/19 17:17,"619 5th St, Los Angeles, CA 90001" +266808,Bose SoundSport Headphones,1,99.99,10/18/19 02:48,"314 Jackson St, Atlanta, GA 30301" +266809,iPhone,1,700,10/05/19 09:40,"911 9th St, Los Angeles, CA 90001" +266810,AA Batteries (4-pack),1,3.84,10/11/19 20:03,"39 West St, Portland, OR 97035" +266811,Macbook Pro Laptop,1,1700,10/26/19 11:01,"282 4th St, San Francisco, CA 94016" +266812,20in Monitor,1,109.99,10/02/19 13:42,"576 Elm St, Dallas, TX 75001" +266813,Lightning Charging Cable,1,14.95,10/03/19 12:41,"740 Washington St, Los Angeles, CA 90001" +266814,Apple Airpods Headphones,1,150,10/18/19 21:55,"454 4th St, Boston, MA 02215" +266815,AAA Batteries (4-pack),1,2.99,10/30/19 13:27,"137 Highland St, New York City, NY 10001" +266816,Vareebadd Phone,1,400,10/30/19 19:57,"745 6th St, New York City, NY 10001" +266817,Apple Airpods Headphones,1,150,10/22/19 13:48,"752 Hill St, New York City, NY 10001" +266818,Lightning Charging Cable,1,14.95,10/14/19 11:23,"299 Forest St, Los Angeles, CA 90001" +266819,AA Batteries (4-pack),1,3.84,10/19/19 20:41,"275 North St, Boston, MA 02215" +266820,AA Batteries (4-pack),1,3.84,10/09/19 17:05,"130 Cherry St, San Francisco, CA 94016" +266821,27in 4K Gaming Monitor,1,389.99,10/09/19 07:03,"617 12th St, Atlanta, GA 30301" +266822,USB-C Charging Cable,1,11.95,10/04/19 10:23,"545 13th St, San Francisco, CA 94016" +266823,USB-C Charging Cable,1,11.95,10/18/19 18:40,"564 Hickory St, Dallas, TX 75001" +266824,Bose SoundSport Headphones,1,99.99,10/26/19 20:04,"361 Cherry St, San Francisco, CA 94016" +266825,iPhone,1,700,10/30/19 12:05,"858 Lincoln St, Seattle, WA 98101" +266825,Lightning Charging Cable,1,14.95,10/30/19 12:05,"858 Lincoln St, Seattle, WA 98101" +266826,Apple Airpods Headphones,1,150,10/28/19 12:18,"46 Spruce St, Los Angeles, CA 90001" +266827,AA Batteries (4-pack),1,3.84,10/19/19 07:55,"830 Johnson St, Seattle, WA 98101" +266828,Bose SoundSport Headphones,2,99.99,10/24/19 18:25,"453 11th St, Boston, MA 02215" +266829,27in FHD Monitor,1,149.99,10/07/19 19:28,"116 Center St, San Francisco, CA 94016" +266830,27in 4K Gaming Monitor,1,389.99,10/02/19 16:30,"245 Center St, New York City, NY 10001" +266831,AAA Batteries (4-pack),1,2.99,10/13/19 20:42,"893 Jackson St, Portland, OR 97035" +266832,Apple Airpods Headphones,1,150,10/20/19 15:00,"167 Adams St, Los Angeles, CA 90001" +266833,iPhone,1,700,10/25/19 23:06,"821 12th St, Seattle, WA 98101" +266833,Lightning Charging Cable,1,14.95,10/25/19 23:06,"821 12th St, Seattle, WA 98101" +266834,AAA Batteries (4-pack),4,2.99,10/16/19 09:41,"752 Highland St, San Francisco, CA 94016" +266835,Lightning Charging Cable,1,14.95,10/14/19 14:17,"327 Meadow St, Boston, MA 02215" +266836,Bose SoundSport Headphones,1,99.99,10/20/19 09:51,"308 Cherry St, San Francisco, CA 94016" +266837,Lightning Charging Cable,1,14.95,10/19/19 00:41,"660 6th St, Dallas, TX 75001" +266838,ThinkPad Laptop,1,999.99,10/08/19 21:26,"1 Lake St, Dallas, TX 75001" +266839,Google Phone,1,600,10/18/19 15:52,"214 Dogwood St, Boston, MA 02215" +266840,AAA Batteries (4-pack),1,2.99,10/22/19 19:36,"789 Maple St, San Francisco, CA 94016" +266841,AAA Batteries (4-pack),1,2.99,10/28/19 14:52,"305 Sunset St, San Francisco, CA 94016" +266842,AA Batteries (4-pack),1,3.84,10/03/19 09:20,"822 5th St, San Francisco, CA 94016" +266843,Lightning Charging Cable,1,14.95,10/15/19 14:17,"336 Center St, San Francisco, CA 94016" +266844,Wired Headphones,1,11.99,10/21/19 12:24,"643 14th St, Austin, TX 73301" +266845,AA Batteries (4-pack),1,3.84,10/27/19 18:23,"789 9th St, San Francisco, CA 94016" +266846,AAA Batteries (4-pack),1,2.99,10/23/19 11:42,"457 5th St, New York City, NY 10001" +266847,20in Monitor,1,109.99,10/03/19 10:36,"52 1st St, Los Angeles, CA 90001" +266848,AAA Batteries (4-pack),1,2.99,10/22/19 16:54,"564 Main St, Boston, MA 02215" +266849,Apple Airpods Headphones,1,150,10/29/19 13:38,"137 Lake St, Boston, MA 02215" +266850,USB-C Charging Cable,1,11.95,10/07/19 00:32,"179 Adams St, San Francisco, CA 94016" +266851,Bose SoundSport Headphones,1,99.99,10/12/19 14:26,"599 Adams St, Dallas, TX 75001" +266852,AAA Batteries (4-pack),1,2.99,10/03/19 12:39,"284 Hill St, Dallas, TX 75001" +266853,Apple Airpods Headphones,1,150,10/14/19 12:54,"961 Walnut St, Atlanta, GA 30301" +266854,AAA Batteries (4-pack),5,2.99,10/30/19 21:15,"748 Ridge St, Boston, MA 02215" +266855,Wired Headphones,1,11.99,10/03/19 01:10,"530 14th St, Atlanta, GA 30301" +266856,20in Monitor,1,109.99,10/06/19 20:25,"742 Spruce St, Dallas, TX 75001" +266857,AA Batteries (4-pack),1,3.84,10/01/19 14:33,"790 Park St, New York City, NY 10001" +266858,Wired Headphones,1,11.99,10/30/19 10:28,"891 River St, San Francisco, CA 94016" +266859,Apple Airpods Headphones,1,150,10/13/19 16:46,"651 2nd St, Portland, OR 97035" +266860,Wired Headphones,1,11.99,10/24/19 20:13,"894 7th St, Portland, OR 97035" +266861,Apple Airpods Headphones,1,150,10/20/19 16:20,"561 1st St, San Francisco, CA 94016" +266862,Flatscreen TV,1,300,10/30/19 08:04,"274 8th St, Portland, OR 97035" +266863,Bose SoundSport Headphones,1,99.99,10/21/19 11:55,"152 1st St, Dallas, TX 75001" +266864,Macbook Pro Laptop,1,1700,10/29/19 01:16,"278 7th St, Atlanta, GA 30301" +266865,AAA Batteries (4-pack),1,2.99,10/01/19 10:46,"278 Cedar St, Seattle, WA 98101" +266866,Wired Headphones,1,11.99,10/01/19 19:41,"788 Lincoln St, Portland, OR 97035" +266867,20in Monitor,1,109.99,10/16/19 14:21,"355 Chestnut St, Austin, TX 73301" +266868,Wired Headphones,1,11.99,10/21/19 08:24,"307 Adams St, Los Angeles, CA 90001" +266869,Bose SoundSport Headphones,1,99.99,10/08/19 16:56,"963 13th St, Portland, ME 04101" +266870,27in FHD Monitor,1,149.99,10/13/19 01:32,"326 Park St, San Francisco, CA 94016" +266871,27in 4K Gaming Monitor,1,389.99,10/02/19 17:32,"90 6th St, San Francisco, CA 94016" +266872,34in Ultrawide Monitor,1,379.99,10/30/19 07:19,"137 6th St, New York City, NY 10001" +266873,Lightning Charging Cable,1,14.95,10/21/19 09:09,"219 Lincoln St, Dallas, TX 75001" +266874,Apple Airpods Headphones,1,150,10/03/19 11:52,"95 7th St, San Francisco, CA 94016" +266875,Wired Headphones,1,11.99,10/22/19 16:00,"581 Sunset St, Austin, TX 73301" +266876,USB-C Charging Cable,1,11.95,10/21/19 10:56,"824 West St, San Francisco, CA 94016" +266877,Bose SoundSport Headphones,1,99.99,10/22/19 15:38,"250 Washington St, Dallas, TX 75001" +266878,Lightning Charging Cable,1,14.95,10/26/19 16:04,"136 Johnson St, New York City, NY 10001" +266879,Lightning Charging Cable,1,14.95,10/19/19 11:20,"619 8th St, Portland, OR 97035" +266880,Flatscreen TV,1,300,10/13/19 21:31,"461 13th St, San Francisco, CA 94016" +266881,Lightning Charging Cable,1,14.95,10/31/19 08:37,"323 13th St, Atlanta, GA 30301" +266882,AA Batteries (4-pack),1,3.84,10/21/19 12:29,"977 South St, New York City, NY 10001" +266883,27in FHD Monitor,1,149.99,10/03/19 17:00,"404 2nd St, San Francisco, CA 94016" +266884,AA Batteries (4-pack),1,3.84,10/09/19 23:58,"227 10th St, Dallas, TX 75001" +266885,Lightning Charging Cable,1,14.95,10/20/19 10:50,"296 6th St, New York City, NY 10001" +266886,USB-C Charging Cable,1,11.95,10/14/19 11:47,"517 Madison St, Los Angeles, CA 90001" +266886,USB-C Charging Cable,1,11.95,10/14/19 11:47,"517 Madison St, Los Angeles, CA 90001" +266887,Bose SoundSport Headphones,1,99.99,10/31/19 21:40,"103 Cedar St, New York City, NY 10001" +266888,Apple Airpods Headphones,1,150,10/09/19 08:31,"867 Lincoln St, New York City, NY 10001" +266889,Lightning Charging Cable,1,14.95,10/24/19 11:01,"883 Pine St, Los Angeles, CA 90001" +266890,Google Phone,1,600,10/30/19 13:24,"442 Church St, San Francisco, CA 94016" +266890,Wired Headphones,1,11.99,10/30/19 13:24,"442 Church St, San Francisco, CA 94016" +266891,27in 4K Gaming Monitor,1,389.99,10/11/19 15:44,"151 River St, Portland, OR 97035" +266892,Wired Headphones,1,11.99,10/17/19 10:44,"850 4th St, Seattle, WA 98101" +266893,Bose SoundSport Headphones,1,99.99,10/28/19 11:15,"548 Hickory St, Dallas, TX 75001" +266894,Lightning Charging Cable,1,14.95,10/01/19 22:32,"31 Spruce St, Boston, MA 02215" +266895,27in FHD Monitor,1,149.99,10/18/19 07:16,"171 8th St, San Francisco, CA 94016" +266896,USB-C Charging Cable,1,11.95,10/29/19 19:19,"979 North St, San Francisco, CA 94016" +266897,AAA Batteries (4-pack),1,2.99,10/20/19 20:50,"32 14th St, New York City, NY 10001" +266898,AA Batteries (4-pack),1,3.84,10/16/19 10:06,"895 2nd St, Seattle, WA 98101" +266899,AA Batteries (4-pack),2,3.84,10/01/19 07:43,"545 Main St, San Francisco, CA 94016" +266900,Flatscreen TV,1,300,10/12/19 11:14,"981 Lakeview St, Los Angeles, CA 90001" +266901,Lightning Charging Cable,1,14.95,10/24/19 17:38,"665 North St, Atlanta, GA 30301" +266902,27in 4K Gaming Monitor,1,389.99,10/24/19 00:01,"168 Lakeview St, Atlanta, GA 30301" +266903,Wired Headphones,1,11.99,10/31/19 13:03,"270 Jefferson St, Los Angeles, CA 90001" +266904,Lightning Charging Cable,1,14.95,10/02/19 01:21,"108 Church St, San Francisco, CA 94016" +266905,AAA Batteries (4-pack),1,2.99,10/17/19 08:11,"929 Dogwood St, San Francisco, CA 94016" +266906,AAA Batteries (4-pack),2,2.99,10/20/19 12:13,"896 4th St, New York City, NY 10001" +266907,Lightning Charging Cable,1,14.95,10/30/19 20:56,"469 Elm St, Boston, MA 02215" +266908,AA Batteries (4-pack),2,3.84,10/10/19 09:40,"208 Madison St, Los Angeles, CA 90001" +266909,Wired Headphones,1,11.99,10/12/19 07:15,"181 14th St, Seattle, WA 98101" +266910,Flatscreen TV,1,300,10/07/19 20:31,"648 South St, Los Angeles, CA 90001" +266911,AA Batteries (4-pack),3,3.84,10/19/19 09:14,"349 Highland St, Seattle, WA 98101" +266912,AA Batteries (4-pack),2,3.84,10/14/19 00:04,"316 Maple St, Los Angeles, CA 90001" +266913,AAA Batteries (4-pack),4,2.99,10/25/19 11:38,"659 14th St, Portland, OR 97035" +266914,Wired Headphones,1,11.99,10/26/19 10:37,"258 Lakeview St, San Francisco, CA 94016" +266915,Wired Headphones,2,11.99,10/13/19 14:29,"717 Adams St, New York City, NY 10001" +266916,Apple Airpods Headphones,1,150,10/14/19 13:41,"916 Washington St, Boston, MA 02215" +266917,Lightning Charging Cable,1,14.95,10/31/19 16:28,"675 Pine St, Los Angeles, CA 90001" +266918,Apple Airpods Headphones,1,150,10/01/19 22:37,"735 Madison St, Austin, TX 73301" +266919,Lightning Charging Cable,1,14.95,10/07/19 12:15,"592 Main St, Seattle, WA 98101" +266920,USB-C Charging Cable,1,11.95,10/16/19 08:36,"414 River St, Portland, OR 97035" +266921,Lightning Charging Cable,1,14.95,10/21/19 13:52,"985 South St, San Francisco, CA 94016" +266922,20in Monitor,1,109.99,10/07/19 13:31,"369 Dogwood St, Austin, TX 73301" +266923,Lightning Charging Cable,1,14.95,10/23/19 01:03,"85 Main St, Atlanta, GA 30301" +266923,Lightning Charging Cable,1,14.95,10/23/19 01:03,"85 Main St, Atlanta, GA 30301" +266924,AAA Batteries (4-pack),1,2.99,10/19/19 17:33,"668 Lake St, Austin, TX 73301" +266925,27in FHD Monitor,1,149.99,10/12/19 19:06,"534 Center St, New York City, NY 10001" +266926,Bose SoundSport Headphones,1,99.99,10/30/19 03:48,"120 10th St, Austin, TX 73301" +266927,AAA Batteries (4-pack),2,2.99,10/23/19 09:08,"763 Elm St, Atlanta, GA 30301" +266928,USB-C Charging Cable,1,11.95,10/15/19 13:05,"842 12th St, San Francisco, CA 94016" +266929,USB-C Charging Cable,1,11.95,10/30/19 14:12,"608 Ridge St, San Francisco, CA 94016" +266930,Macbook Pro Laptop,1,1700,10/23/19 18:15,"529 14th St, Austin, TX 73301" +266931,27in 4K Gaming Monitor,1,389.99,10/01/19 14:22,"636 5th St, New York City, NY 10001" +266932,Flatscreen TV,1,300,10/14/19 23:29,"901 9th St, San Francisco, CA 94016" +266933,USB-C Charging Cable,1,11.95,10/29/19 22:39,"637 Maple St, Seattle, WA 98101" +266934,Lightning Charging Cable,1,14.95,10/16/19 00:58,"412 Lincoln St, Boston, MA 02215" +266935,Bose SoundSport Headphones,1,99.99,10/14/19 13:55,"804 11th St, New York City, NY 10001" +266936,Wired Headphones,1,11.99,10/13/19 14:26,"561 Jackson St, Los Angeles, CA 90001" +266937,Macbook Pro Laptop,1,1700,10/26/19 17:48,"74 Lake St, Dallas, TX 75001" +266938,AA Batteries (4-pack),1,3.84,10/02/19 15:58,"124 North St, Los Angeles, CA 90001" +266939,USB-C Charging Cable,1,11.95,10/14/19 02:11,"864 Forest St, New York City, NY 10001" +266940,USB-C Charging Cable,1,11.95,10/29/19 21:05,"931 11th St, San Francisco, CA 94016" +266941,Apple Airpods Headphones,1,150,10/22/19 14:05,"503 1st St, Seattle, WA 98101" +266942,27in FHD Monitor,1,149.99,10/04/19 15:42,"388 Hickory St, San Francisco, CA 94016" +266943,AAA Batteries (4-pack),2,2.99,10/31/19 14:06,"902 South St, New York City, NY 10001" +266943,Lightning Charging Cable,1,14.95,10/31/19 14:06,"902 South St, New York City, NY 10001" +266944,AA Batteries (4-pack),1,3.84,10/26/19 14:36,"542 Hill St, Los Angeles, CA 90001" +266945,AA Batteries (4-pack),1,3.84,10/31/19 09:54,"386 4th St, Dallas, TX 75001" +266946,Apple Airpods Headphones,1,150,10/24/19 10:13,"343 Highland St, Portland, OR 97035" +266947,AA Batteries (4-pack),2,3.84,10/27/19 23:52,"977 7th St, Portland, OR 97035" +266948,AA Batteries (4-pack),1,3.84,10/17/19 09:46,"475 Sunset St, Dallas, TX 75001" +266949,AAA Batteries (4-pack),1,2.99,10/28/19 11:21,"695 South St, Los Angeles, CA 90001" +266949,Wired Headphones,1,11.99,10/28/19 11:21,"695 South St, Los Angeles, CA 90001" +266950,Flatscreen TV,1,300,10/09/19 11:30,"783 Center St, Seattle, WA 98101" +266951,Bose SoundSport Headphones,1,99.99,10/26/19 12:28,"315 Maple St, Los Angeles, CA 90001" +266952,Flatscreen TV,1,300,10/08/19 19:20,"17 11th St, Boston, MA 02215" +266953,34in Ultrawide Monitor,1,379.99,10/15/19 19:40,"624 Forest St, Los Angeles, CA 90001" +266954,Wired Headphones,1,11.99,10/18/19 13:47,"266 12th St, San Francisco, CA 94016" +266955,Bose SoundSport Headphones,1,99.99,10/09/19 20:59,"442 Walnut St, San Francisco, CA 94016" +266956,AAA Batteries (4-pack),1,2.99,10/29/19 07:24,"223 Meadow St, Boston, MA 02215" +266957,AAA Batteries (4-pack),1,2.99,10/13/19 19:40,"77 Elm St, Portland, ME 04101" +266958,USB-C Charging Cable,1,11.95,10/08/19 09:32,"594 Cherry St, Boston, MA 02215" +266959,Bose SoundSport Headphones,1,99.99,10/18/19 10:21,"416 Ridge St, San Francisco, CA 94016" +266960,27in 4K Gaming Monitor,1,389.99,10/03/19 20:15,"840 Cherry St, Dallas, TX 75001" +266961,Wired Headphones,2,11.99,10/13/19 13:22,"322 Hickory St, Austin, TX 73301" +266962,Bose SoundSport Headphones,1,99.99,10/06/19 20:09,"729 Chestnut St, San Francisco, CA 94016" +266963,Macbook Pro Laptop,1,1700,10/21/19 19:45,"36 9th St, Seattle, WA 98101" +266964,ThinkPad Laptop,1,999.99,10/27/19 07:56,"690 Forest St, Austin, TX 73301" +266965,27in 4K Gaming Monitor,1,389.99,10/08/19 17:59,"406 Hickory St, San Francisco, CA 94016" +266966,Apple Airpods Headphones,1,150,10/30/19 21:40,"8 Spruce St, New York City, NY 10001" +266967,Wired Headphones,1,11.99,10/17/19 22:28,"588 Jackson St, New York City, NY 10001" +266968,Bose SoundSport Headphones,1,99.99,11/01/19 00:57,"125 Hickory St, Los Angeles, CA 90001" +266969,34in Ultrawide Monitor,1,379.99,10/04/19 12:55,"699 6th St, Portland, OR 97035" +266970,Apple Airpods Headphones,1,150,10/08/19 18:32,"632 Johnson St, Atlanta, GA 30301" +266971,USB-C Charging Cable,1,11.95,10/19/19 19:44,"923 Adams St, Los Angeles, CA 90001" +266972,Wired Headphones,1,11.99,10/24/19 00:01,"204 Adams St, Boston, MA 02215" +266973,AA Batteries (4-pack),1,3.84,10/23/19 12:59,"352 Chestnut St, Seattle, WA 98101" +266974,Lightning Charging Cable,1,14.95,10/31/19 09:26,"813 1st St, San Francisco, CA 94016" +266975,Apple Airpods Headphones,1,150,10/22/19 00:17,"191 North St, Austin, TX 73301" +266976,Apple Airpods Headphones,1,150,10/22/19 19:49,"589 1st St, New York City, NY 10001" +266977,iPhone,1,700,10/05/19 00:26,"590 Forest St, Seattle, WA 98101" +266977,Apple Airpods Headphones,1,150,10/05/19 00:26,"590 Forest St, Seattle, WA 98101" +266978,AAA Batteries (4-pack),7,2.99,10/14/19 20:58,"437 6th St, Atlanta, GA 30301" +266979,Lightning Charging Cable,1,14.95,10/04/19 16:24,"856 Jefferson St, San Francisco, CA 94016" +266980,AA Batteries (4-pack),1,3.84,10/29/19 15:50,"756 Main St, Los Angeles, CA 90001" +266981,Apple Airpods Headphones,1,150,10/03/19 22:00,"914 Willow St, Los Angeles, CA 90001" +266982,Bose SoundSport Headphones,1,99.99,10/16/19 18:11,"74 7th St, San Francisco, CA 94016" +266983,Lightning Charging Cable,1,14.95,10/17/19 21:22,"823 Cedar St, Portland, OR 97035" +266984,ThinkPad Laptop,1,999.99,10/30/19 14:46,"788 14th St, New York City, NY 10001" +266985,Lightning Charging Cable,1,14.95,10/22/19 12:56,"60 Madison St, San Francisco, CA 94016" +266986,ThinkPad Laptop,1,999.99,10/17/19 07:40,"632 Center St, New York City, NY 10001" +266987,Macbook Pro Laptop,1,1700,10/17/19 20:12,"783 South St, Atlanta, GA 30301" +266988,Wired Headphones,1,11.99,10/27/19 16:25,"446 Cedar St, Boston, MA 02215" +266989,Wired Headphones,1,11.99,10/08/19 04:48,"62 Church St, Seattle, WA 98101" +266990,Apple Airpods Headphones,1,150,10/09/19 14:03,"403 8th St, San Francisco, CA 94016" +266991,AAA Batteries (4-pack),1,2.99,10/20/19 21:49,"726 Cherry St, Los Angeles, CA 90001" +266992,AAA Batteries (4-pack),1,2.99,10/17/19 13:44,"755 12th St, New York City, NY 10001" +266993,Wired Headphones,1,11.99,10/16/19 11:18,"151 10th St, San Francisco, CA 94016" +266994,AAA Batteries (4-pack),2,2.99,10/03/19 12:04,"948 Pine St, San Francisco, CA 94016" +266994,Google Phone,1,600,10/03/19 12:04,"948 Pine St, San Francisco, CA 94016" +266995,Bose SoundSport Headphones,1,99.99,10/01/19 09:57,"759 5th St, Boston, MA 02215" +266996,iPhone,1,700,10/13/19 21:14,"572 10th St, Boston, MA 02215" +266997,Wired Headphones,1,11.99,10/04/19 16:53,"995 Hill St, Portland, OR 97035" +266998,34in Ultrawide Monitor,1,379.99,10/17/19 20:13,"750 Highland St, Boston, MA 02215" +266999,AA Batteries (4-pack),1,3.84,10/24/19 15:09,"447 Church St, Boston, MA 02215" +267000,USB-C Charging Cable,1,11.95,10/02/19 12:40,"929 Pine St, Boston, MA 02215" +267001,USB-C Charging Cable,1,11.95,10/16/19 11:09,"632 Lincoln St, Los Angeles, CA 90001" +,,,,, +267002,USB-C Charging Cable,2,11.95,10/26/19 13:59,"113 Chestnut St, Portland, ME 04101" +267003,USB-C Charging Cable,1,11.95,10/09/19 17:07,"584 Cherry St, New York City, NY 10001" +267004,Apple Airpods Headphones,1,150,10/05/19 15:39,"514 Washington St, Atlanta, GA 30301" +267005,AA Batteries (4-pack),1,3.84,10/27/19 12:41,"936 Church St, Dallas, TX 75001" +267006,34in Ultrawide Monitor,1,379.99,10/11/19 13:16,"427 5th St, San Francisco, CA 94016" +267007,USB-C Charging Cable,1,11.95,10/14/19 15:17,"195 Lincoln St, Los Angeles, CA 90001" +267008,AA Batteries (4-pack),1,3.84,10/04/19 12:47,"174 Highland St, Seattle, WA 98101" +267009,USB-C Charging Cable,1,11.95,10/09/19 10:13,"372 Sunset St, Los Angeles, CA 90001" +267010,Google Phone,1,600,10/20/19 10:49,"303 14th St, New York City, NY 10001" +267011,Apple Airpods Headphones,1,150,10/24/19 18:38,"560 Highland St, Austin, TX 73301" +267012,Macbook Pro Laptop,1,1700,10/28/19 03:26,"33 Center St, Atlanta, GA 30301" +267013,AA Batteries (4-pack),1,3.84,10/05/19 13:06,"707 Maple St, San Francisco, CA 94016" +267014,AA Batteries (4-pack),1,3.84,10/02/19 12:12,"572 Main St, Boston, MA 02215" +267015,27in FHD Monitor,1,149.99,10/08/19 23:14,"76 Forest St, Boston, MA 02215" +267016,Bose SoundSport Headphones,1,99.99,10/21/19 15:29,"435 Wilson St, Seattle, WA 98101" +267017,Bose SoundSport Headphones,1,99.99,10/18/19 13:15,"330 Cedar St, Dallas, TX 75001" +267018,Apple Airpods Headphones,1,150,10/08/19 17:07,"236 Dogwood St, Dallas, TX 75001" +267019,Apple Airpods Headphones,1,150,10/25/19 01:01,"46 5th St, Seattle, WA 98101" +267020,Flatscreen TV,1,300,10/26/19 10:16,"328 River St, Seattle, WA 98101" +267021,AA Batteries (4-pack),2,3.84,10/06/19 06:06,"125 Washington St, New York City, NY 10001" +267022,AAA Batteries (4-pack),1,2.99,10/06/19 22:59,"573 Elm St, Austin, TX 73301" +267023,Lightning Charging Cable,1,14.95,10/19/19 09:08,"379 Cherry St, Atlanta, GA 30301" +267024,Lightning Charging Cable,1,14.95,10/12/19 16:57,"534 Lincoln St, Dallas, TX 75001" +267025,Lightning Charging Cable,1,14.95,10/14/19 16:37,"963 Ridge St, Boston, MA 02215" +267026,Flatscreen TV,1,300,11/01/19 01:41,"241 Spruce St, San Francisco, CA 94016" +267027,AA Batteries (4-pack),1,3.84,10/19/19 19:24,"592 Jackson St, New York City, NY 10001" +267028,AA Batteries (4-pack),1,3.84,10/11/19 08:28,"763 1st St, Boston, MA 02215" +267029,Apple Airpods Headphones,1,150,10/15/19 05:08,"189 Jackson St, Los Angeles, CA 90001" +267029,Apple Airpods Headphones,1,150,10/15/19 05:08,"189 Jackson St, Los Angeles, CA 90001" +267030,Bose SoundSport Headphones,1,99.99,10/29/19 09:28,"775 Lake St, San Francisco, CA 94016" +267031,Wired Headphones,1,11.99,10/07/19 11:27,"448 Adams St, Boston, MA 02215" +267032,AA Batteries (4-pack),1,3.84,10/21/19 01:24,"594 Madison St, Portland, OR 97035" +267033,AAA Batteries (4-pack),2,2.99,10/23/19 07:50,"490 Center St, New York City, NY 10001" +267034,Wired Headphones,1,11.99,10/25/19 09:32,"711 Lakeview St, Los Angeles, CA 90001" +267035,Apple Airpods Headphones,1,150,10/17/19 13:28,"144 West St, Atlanta, GA 30301" +267036,AAA Batteries (4-pack),3,2.99,10/31/19 10:56,"911 8th St, New York City, NY 10001" +267037,Lightning Charging Cable,1,14.95,10/11/19 18:05,"767 Park St, Dallas, TX 75001" +267038,Lightning Charging Cable,1,14.95,10/28/19 19:10,"654 Hickory St, Los Angeles, CA 90001" +267039,Vareebadd Phone,1,400,10/27/19 14:23,"312 13th St, San Francisco, CA 94016" +267040,Wired Headphones,1,11.99,10/14/19 07:09,"932 13th St, Atlanta, GA 30301" +267041,USB-C Charging Cable,1,11.95,10/03/19 11:51,"757 13th St, Austin, TX 73301" +267042,Wired Headphones,1,11.99,10/09/19 20:55,"191 North St, San Francisco, CA 94016" +267043,Google Phone,1,600,10/25/19 21:54,"486 Park St, Atlanta, GA 30301" +267044,34in Ultrawide Monitor,1,379.99,10/10/19 23:03,"494 Jefferson St, Dallas, TX 75001" +267045,AA Batteries (4-pack),4,3.84,10/29/19 15:48,"978 Church St, Los Angeles, CA 90001" +267046,USB-C Charging Cable,1,11.95,10/22/19 13:39,"505 Main St, Los Angeles, CA 90001" +267047,USB-C Charging Cable,1,11.95,10/17/19 21:02,"524 Lake St, Seattle, WA 98101" +267048,Bose SoundSport Headphones,1,99.99,10/19/19 13:02,"672 11th St, San Francisco, CA 94016" +267049,Wired Headphones,1,11.99,10/25/19 12:21,"369 Jackson St, San Francisco, CA 94016" +267050,Google Phone,1,600,10/19/19 14:11,"924 5th St, Dallas, TX 75001" +267050,USB-C Charging Cable,2,11.95,10/19/19 14:11,"924 5th St, Dallas, TX 75001" +267051,Apple Airpods Headphones,1,150,10/06/19 13:01,"939 Willow St, Seattle, WA 98101" +267052,27in 4K Gaming Monitor,1,389.99,10/29/19 14:03,"207 Lake St, New York City, NY 10001" +267053,AAA Batteries (4-pack),2,2.99,10/16/19 20:13,"379 Meadow St, New York City, NY 10001" +267054,Bose SoundSport Headphones,1,99.99,10/28/19 23:41,"578 Forest St, Austin, TX 73301" +267055,AAA Batteries (4-pack),2,2.99,10/22/19 10:38,"3 Elm St, Dallas, TX 75001" +267056,Wired Headphones,1,11.99,10/28/19 11:49,"971 Walnut St, San Francisco, CA 94016" +267057,27in FHD Monitor,1,149.99,10/25/19 15:05,"382 Hickory St, New York City, NY 10001" +267058,Wired Headphones,1,11.99,10/01/19 17:00,"36 6th St, Atlanta, GA 30301" +267059,AA Batteries (4-pack),1,3.84,10/20/19 11:50,"475 Chestnut St, Atlanta, GA 30301" +267060,Apple Airpods Headphones,1,150,10/15/19 11:00,"852 Forest St, Seattle, WA 98101" +267061,Lightning Charging Cable,1,14.95,10/12/19 18:44,"770 West St, Boston, MA 02215" +267062,Wired Headphones,1,11.99,10/10/19 15:16,"871 Dogwood St, Seattle, WA 98101" +267063,Apple Airpods Headphones,1,150,10/20/19 22:06,"20 Lakeview St, Los Angeles, CA 90001" +267064,Lightning Charging Cable,1,14.95,10/15/19 15:16,"750 Cherry St, Seattle, WA 98101" +267065,Flatscreen TV,1,300,10/14/19 21:50,"775 4th St, San Francisco, CA 94016" +267066,Apple Airpods Headphones,1,150,10/26/19 23:09,"730 8th St, Dallas, TX 75001" +267067,AA Batteries (4-pack),2,3.84,10/19/19 06:14,"549 Spruce St, Boston, MA 02215" +267068,AAA Batteries (4-pack),1,2.99,10/17/19 12:02,"364 Madison St, Atlanta, GA 30301" +267069,27in 4K Gaming Monitor,1,389.99,10/18/19 19:08,"168 8th St, Los Angeles, CA 90001" +267070,Wired Headphones,1,11.99,10/18/19 21:17,"148 Chestnut St, San Francisco, CA 94016" +267071,AA Batteries (4-pack),1,3.84,10/13/19 19:36,"654 Maple St, San Francisco, CA 94016" +267072,Macbook Pro Laptop,1,1700,10/12/19 20:39,"415 Washington St, Los Angeles, CA 90001" +267073,Wired Headphones,1,11.99,10/18/19 18:38,"406 Meadow St, Seattle, WA 98101" +267074,USB-C Charging Cable,2,11.95,10/12/19 19:11,"267 Church St, Seattle, WA 98101" +267075,Wired Headphones,1,11.99,10/05/19 03:54,"359 5th St, San Francisco, CA 94016" +267076,27in FHD Monitor,1,149.99,10/03/19 13:55,"134 River St, Boston, MA 02215" +267077,Bose SoundSport Headphones,1,99.99,10/17/19 15:03,"850 Lincoln St, Los Angeles, CA 90001" +267078,Bose SoundSport Headphones,1,99.99,10/26/19 19:02,"884 11th St, Los Angeles, CA 90001" +267079,34in Ultrawide Monitor,1,379.99,10/25/19 12:21,"209 13th St, Dallas, TX 75001" +267080,USB-C Charging Cable,1,11.95,10/11/19 22:49,"392 Hickory St, Atlanta, GA 30301" +267081,ThinkPad Laptop,1,999.99,10/11/19 20:55,"499 North St, San Francisco, CA 94016" +267082,Flatscreen TV,1,300,10/16/19 17:37,"594 Main St, San Francisco, CA 94016" +267083,Apple Airpods Headphones,1,150,10/11/19 17:39,"981 South St, Portland, OR 97035" +267084,Flatscreen TV,1,300,10/11/19 12:56,"551 South St, Dallas, TX 75001" +267085,Google Phone,1,600,10/12/19 17:05,"596 9th St, Austin, TX 73301" +267086,Lightning Charging Cable,1,14.95,10/01/19 11:27,"64 1st St, Los Angeles, CA 90001" +267087,Google Phone,1,600,10/31/19 07:40,"574 9th St, Portland, OR 97035" +267088,USB-C Charging Cable,1,11.95,10/19/19 14:48,"441 Adams St, San Francisco, CA 94016" +267089,Bose SoundSport Headphones,1,99.99,10/18/19 11:59,"952 Elm St, New York City, NY 10001" +267090,34in Ultrawide Monitor,1,379.99,10/28/19 00:44,"673 Forest St, San Francisco, CA 94016" +267091,Lightning Charging Cable,1,14.95,10/01/19 10:47,"1 Willow St, Austin, TX 73301" +267092,ThinkPad Laptop,1,999.99,10/18/19 16:15,"443 Walnut St, Portland, OR 97035" +267093,AAA Batteries (4-pack),2,2.99,10/09/19 19:01,"676 Sunset St, Portland, OR 97035" +267094,Lightning Charging Cable,2,14.95,10/18/19 18:52,"456 Cedar St, Portland, ME 04101" +267095,ThinkPad Laptop,1,999.99,10/10/19 02:01,"382 Johnson St, Seattle, WA 98101" +267096,Wired Headphones,1,11.99,10/22/19 12:47,"876 7th St, San Francisco, CA 94016" +267097,AA Batteries (4-pack),3,3.84,10/11/19 10:08,"550 Ridge St, Austin, TX 73301" +267098,AAA Batteries (4-pack),1,2.99,10/14/19 05:30,"412 Dogwood St, Austin, TX 73301" +267099,Wired Headphones,1,11.99,10/03/19 17:20,"165 6th St, Austin, TX 73301" +267100,Apple Airpods Headphones,1,150,10/31/19 14:21,"7 Washington St, Los Angeles, CA 90001" +267101,USB-C Charging Cable,1,11.95,10/08/19 11:06,"699 Forest St, San Francisco, CA 94016" +267102,Lightning Charging Cable,1,14.95,10/13/19 13:03,"551 Adams St, Los Angeles, CA 90001" +267103,Wired Headphones,1,11.99,10/11/19 12:16,"473 Walnut St, Boston, MA 02215" +267104,USB-C Charging Cable,1,11.95,10/14/19 12:14,"917 7th St, Los Angeles, CA 90001" +267105,Bose SoundSport Headphones,1,99.99,10/22/19 10:06,"440 Cherry St, Dallas, TX 75001" +267106,AAA Batteries (4-pack),1,2.99,10/30/19 20:10,"188 North St, Los Angeles, CA 90001" +267107,Bose SoundSport Headphones,1,99.99,10/22/19 19:32,"223 13th St, New York City, NY 10001" +267108,Lightning Charging Cable,1,14.95,10/09/19 00:08,"860 12th St, Atlanta, GA 30301" +267109,27in 4K Gaming Monitor,1,389.99,10/24/19 16:44,"994 Johnson St, San Francisco, CA 94016" +267110,Apple Airpods Headphones,1,150,10/02/19 11:09,"196 Chestnut St, Dallas, TX 75001" +267111,20in Monitor,1,109.99,10/17/19 07:19,"820 West St, New York City, NY 10001" +267112,Lightning Charging Cable,1,14.95,10/25/19 12:35,"317 14th St, San Francisco, CA 94016" +267113,Flatscreen TV,1,300,10/16/19 13:43,"995 Lakeview St, Boston, MA 02215" +267114,Apple Airpods Headphones,1,150,10/19/19 18:38,"72 9th St, San Francisco, CA 94016" +267115,Lightning Charging Cable,1,14.95,10/23/19 10:03,"363 Highland St, Boston, MA 02215" +267116,27in FHD Monitor,1,149.99,10/06/19 23:16,"662 Meadow St, San Francisco, CA 94016" +267117,34in Ultrawide Monitor,1,379.99,10/02/19 18:32,"511 Spruce St, New York City, NY 10001" +267118,Apple Airpods Headphones,1,150,10/28/19 20:54,"593 Main St, Austin, TX 73301" +267119,AAA Batteries (4-pack),1,2.99,10/22/19 17:32,"441 9th St, Dallas, TX 75001" +267120,Apple Airpods Headphones,1,150,10/23/19 11:47,"855 14th St, Atlanta, GA 30301" +267121,27in 4K Gaming Monitor,1,389.99,10/02/19 11:43,"867 North St, Dallas, TX 75001" +267122,USB-C Charging Cable,1,11.95,10/05/19 16:09,"930 Wilson St, Seattle, WA 98101" +267123,AA Batteries (4-pack),1,3.84,10/10/19 18:53,"4 12th St, Los Angeles, CA 90001" +267124,AA Batteries (4-pack),2,3.84,10/09/19 00:28,"378 Walnut St, New York City, NY 10001" +267125,AAA Batteries (4-pack),3,2.99,10/26/19 09:20,"629 1st St, San Francisco, CA 94016" +267126,AAA Batteries (4-pack),1,2.99,10/22/19 19:40,"893 Park St, Los Angeles, CA 90001" +267127,USB-C Charging Cable,1,11.95,10/05/19 23:52,"649 1st St, Los Angeles, CA 90001" +267128,Bose SoundSport Headphones,1,99.99,10/11/19 18:01,"250 Pine St, Dallas, TX 75001" +267129,USB-C Charging Cable,1,11.95,10/26/19 14:07,"580 West St, San Francisco, CA 94016" +267130,iPhone,1,700,10/20/19 11:50,"828 10th St, San Francisco, CA 94016" +267131,Wired Headphones,1,11.99,10/13/19 14:34,"673 Jefferson St, Los Angeles, CA 90001" +267132,Wired Headphones,1,11.99,10/02/19 19:39,"321 Cedar St, Portland, OR 97035" +267133,AA Batteries (4-pack),1,3.84,10/03/19 14:32,"995 Jefferson St, Seattle, WA 98101" +267134,Wired Headphones,1,11.99,10/19/19 10:43,"196 Chestnut St, Los Angeles, CA 90001" +267135,Flatscreen TV,1,300,10/31/19 11:38,"332 8th St, Dallas, TX 75001" +267136,Google Phone,1,600,10/21/19 10:09,"204 Highland St, Atlanta, GA 30301" +267137,USB-C Charging Cable,1,11.95,10/10/19 19:19,"600 10th St, Dallas, TX 75001" +267138,Bose SoundSport Headphones,1,99.99,10/05/19 16:15,"117 River St, Portland, OR 97035" +267139,27in 4K Gaming Monitor,1,389.99,10/13/19 16:18,"726 6th St, Austin, TX 73301" +267140,Bose SoundSport Headphones,1,99.99,10/10/19 18:18,"128 Lakeview St, Boston, MA 02215" +267141,Google Phone,1,600,10/08/19 08:27,"993 13th St, Los Angeles, CA 90001" +267141,USB-C Charging Cable,1,11.95,10/08/19 08:27,"993 13th St, Los Angeles, CA 90001" +267142,iPhone,1,700,10/14/19 17:46,"191 Walnut St, San Francisco, CA 94016" +267143,AA Batteries (4-pack),1,3.84,10/15/19 19:21,"783 Pine St, Los Angeles, CA 90001" +267144,Apple Airpods Headphones,1,150,10/09/19 08:39,"458 Madison St, Dallas, TX 75001" +267145,Wired Headphones,1,11.99,10/30/19 10:37,"448 6th St, San Francisco, CA 94016" +267146,Vareebadd Phone,1,400,10/02/19 12:16,"398 North St, San Francisco, CA 94016" +267147,AAA Batteries (4-pack),1,2.99,10/01/19 12:52,"572 Sunset St, Seattle, WA 98101" +267148,AA Batteries (4-pack),1,3.84,10/05/19 11:03,"302 Sunset St, Los Angeles, CA 90001" +267149,iPhone,1,700,10/05/19 22:21,"705 Chestnut St, Seattle, WA 98101" +267150,ThinkPad Laptop,1,999.99,10/09/19 13:00,"592 Willow St, Boston, MA 02215" +267151,Wired Headphones,2,11.99,10/20/19 12:39,"743 Lincoln St, New York City, NY 10001" +267152,AA Batteries (4-pack),1,3.84,10/07/19 01:19,"857 Ridge St, Los Angeles, CA 90001" +267153,Lightning Charging Cable,1,14.95,10/21/19 14:10,"740 Adams St, New York City, NY 10001" +267154,Wired Headphones,1,11.99,10/09/19 16:39,"268 7th St, Los Angeles, CA 90001" +267155,iPhone,1,700,10/04/19 12:24,"691 Forest St, Portland, OR 97035" +267156,Bose SoundSport Headphones,1,99.99,10/03/19 12:06,"418 2nd St, Boston, MA 02215" +267157,Wired Headphones,1,11.99,10/04/19 01:21,"379 South St, Boston, MA 02215" +267158,AAA Batteries (4-pack),1,2.99,10/07/19 14:55,"436 River St, Los Angeles, CA 90001" +267159,27in 4K Gaming Monitor,1,389.99,10/15/19 19:34,"350 Spruce St, San Francisco, CA 94016" +267160,iPhone,1,700,10/23/19 09:29,"605 Park St, New York City, NY 10001" +267161,Lightning Charging Cable,1,14.95,10/09/19 18:39,"648 6th St, Portland, ME 04101" +267162,AAA Batteries (4-pack),1,2.99,10/16/19 08:26,"812 Willow St, Portland, OR 97035" +267163,27in 4K Gaming Monitor,1,389.99,10/12/19 14:27,"516 5th St, San Francisco, CA 94016" +267164,Wired Headphones,1,11.99,10/14/19 11:00,"608 Washington St, San Francisco, CA 94016" +267165,Flatscreen TV,1,300,10/15/19 07:50,"681 Willow St, Los Angeles, CA 90001" +267166,Lightning Charging Cable,1,14.95,10/19/19 15:38,"146 Elm St, San Francisco, CA 94016" +267167,Lightning Charging Cable,1,14.95,10/30/19 16:03,"828 Cedar St, New York City, NY 10001" +267168,Apple Airpods Headphones,1,150,10/13/19 20:16,"290 North St, Dallas, TX 75001" +267169,Lightning Charging Cable,1,14.95,10/03/19 09:37,"674 Cedar St, Los Angeles, CA 90001" +267170,AA Batteries (4-pack),1,3.84,10/14/19 21:26,"100 Spruce St, San Francisco, CA 94016" +267171,Google Phone,1,600,10/14/19 11:38,"418 Adams St, San Francisco, CA 94016" +267172,Google Phone,1,600,10/01/19 16:04,"78 4th St, Austin, TX 73301" +267173,Wired Headphones,1,11.99,10/16/19 17:13,"201 14th St, Boston, MA 02215" +267174,20in Monitor,1,109.99,10/30/19 07:39,"66 South St, Atlanta, GA 30301" +267175,Bose SoundSport Headphones,1,99.99,10/04/19 14:56,"666 Madison St, Boston, MA 02215" +267176,AAA Batteries (4-pack),1,2.99,10/31/19 18:35,"728 Dogwood St, San Francisco, CA 94016" +267177,AA Batteries (4-pack),1,3.84,10/26/19 07:59,"470 North St, Portland, OR 97035" +267178,Wired Headphones,1,11.99,10/22/19 17:02,"723 14th St, Los Angeles, CA 90001" +267179,Lightning Charging Cable,1,14.95,10/10/19 22:19,"651 7th St, Boston, MA 02215" +267180,Flatscreen TV,1,300,10/18/19 09:49,"282 Church St, Austin, TX 73301" +267181,Apple Airpods Headphones,1,150,10/13/19 11:47,"629 West St, New York City, NY 10001" +267182,AAA Batteries (4-pack),3,2.99,10/31/19 14:09,"312 South St, Dallas, TX 75001" +267183,34in Ultrawide Monitor,1,379.99,10/31/19 22:24,"420 Adams St, Los Angeles, CA 90001" +267184,Lightning Charging Cable,2,14.95,10/27/19 01:02,"656 Madison St, Seattle, WA 98101" +267185,USB-C Charging Cable,1,11.95,10/14/19 12:18,"49 Spruce St, Boston, MA 02215" +267186,Vareebadd Phone,1,400,10/29/19 13:00,"651 13th St, Seattle, WA 98101" +267187,USB-C Charging Cable,1,11.95,10/22/19 09:03,"889 5th St, Dallas, TX 75001" +267188,34in Ultrawide Monitor,1,379.99,10/12/19 19:54,"971 Maple St, New York City, NY 10001" +267189,USB-C Charging Cable,1,11.95,10/14/19 19:48,"428 5th St, Los Angeles, CA 90001" +267190,Flatscreen TV,1,300,10/20/19 15:10,"297 12th St, Dallas, TX 75001" +267191,Macbook Pro Laptop,1,1700,10/07/19 13:51,"775 Park St, Dallas, TX 75001" +267192,34in Ultrawide Monitor,1,379.99,10/22/19 03:12,"437 2nd St, Dallas, TX 75001" +267193,AAA Batteries (4-pack),2,2.99,10/18/19 12:35,"150 Ridge St, Dallas, TX 75001" +267194,ThinkPad Laptop,1,999.99,10/23/19 20:19,"884 2nd St, Los Angeles, CA 90001" +267195,iPhone,1,700,10/14/19 13:07,"80 Ridge St, New York City, NY 10001" +267196,20in Monitor,1,109.99,10/05/19 22:19,"971 River St, Los Angeles, CA 90001" +267197,Lightning Charging Cable,1,14.95,10/13/19 00:41,"904 River St, San Francisco, CA 94016" +267198,27in FHD Monitor,1,149.99,10/13/19 08:57,"960 Lakeview St, Boston, MA 02215" +267199,USB-C Charging Cable,1,11.95,10/11/19 10:03,"382 Madison St, Dallas, TX 75001" +267200,AA Batteries (4-pack),1,3.84,10/03/19 12:48,"606 Jefferson St, Los Angeles, CA 90001" +267201,Lightning Charging Cable,1,14.95,10/07/19 15:47,"77 Main St, Portland, ME 04101" +267202,AA Batteries (4-pack),1,3.84,10/09/19 16:07,"908 Washington St, Los Angeles, CA 90001" +267203,34in Ultrawide Monitor,1,379.99,10/21/19 10:09,"359 Church St, Portland, ME 04101" +267204,AAA Batteries (4-pack),1,2.99,10/02/19 23:39,"36 Center St, Seattle, WA 98101" +267205,USB-C Charging Cable,1,11.95,10/24/19 18:19,"885 Hickory St, Los Angeles, CA 90001" +267206,Apple Airpods Headphones,1,150,10/24/19 10:27,"602 Dogwood St, San Francisco, CA 94016" +267207,Wired Headphones,1,11.99,10/27/19 14:37,"703 Forest St, Boston, MA 02215" +267208,Apple Airpods Headphones,1,150,10/12/19 17:06,"427 Church St, San Francisco, CA 94016" +267209,Bose SoundSport Headphones,1,99.99,10/01/19 17:15,"213 Lake St, Portland, OR 97035" +267210,LG Dryer,1,600.0,10/12/19 10:11,"273 Willow St, New York City, NY 10001" +267211,Wired Headphones,1,11.99,10/14/19 14:32,"49 Highland St, Seattle, WA 98101" +267212,AA Batteries (4-pack),1,3.84,10/16/19 01:33,"687 Wilson St, Seattle, WA 98101" +267213,27in 4K Gaming Monitor,1,389.99,10/31/19 19:26,"292 Highland St, San Francisco, CA 94016" +267214,Lightning Charging Cable,1,14.95,10/10/19 12:14,"543 Jackson St, San Francisco, CA 94016" +267215,AAA Batteries (4-pack),1,2.99,10/31/19 11:06,"880 Maple St, Portland, OR 97035" +267216,Wired Headphones,1,11.99,10/30/19 20:24,"543 Main St, Seattle, WA 98101" +267217,20in Monitor,1,109.99,10/30/19 19:45,"677 Meadow St, New York City, NY 10001" +267218,34in Ultrawide Monitor,1,379.99,10/01/19 17:27,"17 West St, New York City, NY 10001" +267219,Lightning Charging Cable,1,14.95,10/23/19 19:29,"270 Pine St, Seattle, WA 98101" +267220,iPhone,1,700,10/30/19 20:08,"872 Sunset St, New York City, NY 10001" +267221,Apple Airpods Headphones,1,150,10/05/19 13:34,"61 Main St, Los Angeles, CA 90001" +267222,USB-C Charging Cable,1,11.95,10/06/19 00:28,"659 10th St, Dallas, TX 75001" +267223,iPhone,1,700,10/15/19 09:28,"127 8th St, San Francisco, CA 94016" +267224,34in Ultrawide Monitor,1,379.99,10/29/19 10:08,"55 Madison St, Dallas, TX 75001" +267225,AAA Batteries (4-pack),2,2.99,10/26/19 13:46,"832 Willow St, Dallas, TX 75001" +267226,27in FHD Monitor,1,149.99,10/25/19 12:02,"336 7th St, San Francisco, CA 94016" +267227,AA Batteries (4-pack),1,3.84,10/04/19 10:11,"831 Chestnut St, San Francisco, CA 94016" +267228,Flatscreen TV,1,300,10/16/19 15:03,"768 Lincoln St, Dallas, TX 75001" +267229,Wired Headphones,1,11.99,10/24/19 20:46,"952 Washington St, Los Angeles, CA 90001" +267230,27in 4K Gaming Monitor,1,389.99,10/26/19 12:08,"894 4th St, Seattle, WA 98101" +267231,ThinkPad Laptop,1,999.99,10/29/19 06:32,"957 10th St, New York City, NY 10001" +267232,AAA Batteries (4-pack),1,2.99,10/03/19 12:01,"399 13th St, San Francisco, CA 94016" +267233,AAA Batteries (4-pack),1,2.99,10/23/19 14:57,"626 Dogwood St, New York City, NY 10001" +267234,USB-C Charging Cable,1,11.95,10/29/19 17:21,"189 West St, Boston, MA 02215" +267235,AA Batteries (4-pack),1,3.84,10/18/19 08:04,"121 River St, Boston, MA 02215" +267236,USB-C Charging Cable,1,11.95,10/17/19 11:55,"380 North St, New York City, NY 10001" +267237,USB-C Charging Cable,1,11.95,10/24/19 07:43,"750 Main St, San Francisco, CA 94016" +267238,Google Phone,1,600,10/28/19 10:56,"944 9th St, Boston, MA 02215" +267239,34in Ultrawide Monitor,1,379.99,10/30/19 19:33,"413 Dogwood St, Austin, TX 73301" +267240,Flatscreen TV,1,300,10/23/19 12:58,"114 Madison St, San Francisco, CA 94016" +267241,AAA Batteries (4-pack),1,2.99,10/15/19 16:16,"627 Hickory St, San Francisco, CA 94016" +267241,iPhone,1,700,10/15/19 16:16,"627 Hickory St, San Francisco, CA 94016" +267242,AAA Batteries (4-pack),2,2.99,10/28/19 20:05,"18 9th St, San Francisco, CA 94016" +267243,27in 4K Gaming Monitor,1,389.99,10/13/19 10:18,"733 12th St, Austin, TX 73301" +267244,AAA Batteries (4-pack),5,2.99,10/24/19 22:02,"550 9th St, San Francisco, CA 94016" +267245,Apple Airpods Headphones,1,150,10/04/19 21:15,"369 Forest St, Los Angeles, CA 90001" +267246,USB-C Charging Cable,1,11.95,10/27/19 19:51,"331 Park St, New York City, NY 10001" +267247,AAA Batteries (4-pack),4,2.99,10/14/19 14:35,"53 Highland St, Austin, TX 73301" +267248,Apple Airpods Headphones,1,150,10/06/19 15:26,"222 Park St, San Francisco, CA 94016" +267249,USB-C Charging Cable,1,11.95,10/30/19 02:30,"689 Chestnut St, Portland, OR 97035" +267250,USB-C Charging Cable,1,11.95,10/11/19 22:10,"543 Elm St, San Francisco, CA 94016" +267251,Lightning Charging Cable,1,14.95,10/30/19 17:47,"558 Cherry St, Los Angeles, CA 90001" +267252,ThinkPad Laptop,1,999.99,10/06/19 22:55,"552 South St, San Francisco, CA 94016" +267253,Flatscreen TV,1,300,10/26/19 13:42,"529 South St, New York City, NY 10001" +267254,Wired Headphones,1,11.99,10/05/19 12:03,"859 Dogwood St, Los Angeles, CA 90001" +267255,USB-C Charging Cable,2,11.95,10/01/19 17:13,"556 12th St, Dallas, TX 75001" +267256,Google Phone,1,600,10/05/19 19:52,"195 Highland St, Boston, MA 02215" +267257,Wired Headphones,1,11.99,10/27/19 00:03,"808 Maple St, New York City, NY 10001" +267258,34in Ultrawide Monitor,1,379.99,10/27/19 01:03,"95 Jackson St, Portland, OR 97035" +267259,Lightning Charging Cable,2,14.95,10/24/19 19:42,"293 1st St, Portland, OR 97035" +267260,AAA Batteries (4-pack),1,2.99,10/26/19 18:07,"69 River St, San Francisco, CA 94016" +267261,USB-C Charging Cable,1,11.95,10/19/19 00:03,"829 Lakeview St, Seattle, WA 98101" +267262,27in 4K Gaming Monitor,1,389.99,10/12/19 00:44,"567 13th St, Los Angeles, CA 90001" +267263,Lightning Charging Cable,1,14.95,10/28/19 16:36,"553 River St, Austin, TX 73301" +267264,AAA Batteries (4-pack),1,2.99,10/27/19 15:00,"87 Church St, San Francisco, CA 94016" +267265,Wired Headphones,2,11.99,10/13/19 10:37,"884 Willow St, San Francisco, CA 94016" +267266,27in 4K Gaming Monitor,1,389.99,10/10/19 21:25,"330 Johnson St, Los Angeles, CA 90001" +267267,Flatscreen TV,1,300,10/31/19 12:58,"873 Pine St, Los Angeles, CA 90001" +267268,AAA Batteries (4-pack),1,2.99,10/14/19 18:40,"261 4th St, Seattle, WA 98101" +267269,ThinkPad Laptop,1,999.99,10/26/19 08:06,"877 Highland St, Atlanta, GA 30301" +267270,USB-C Charging Cable,1,11.95,10/27/19 08:41,"774 Forest St, New York City, NY 10001" +267271,USB-C Charging Cable,1,11.95,10/04/19 07:54,"919 Hill St, Boston, MA 02215" +267272,USB-C Charging Cable,1,11.95,10/16/19 09:00,"60 Jefferson St, Los Angeles, CA 90001" +267273,Lightning Charging Cable,1,14.95,10/16/19 00:02,"105 Pine St, Atlanta, GA 30301" +267274,USB-C Charging Cable,1,11.95,10/14/19 19:37,"345 South St, Atlanta, GA 30301" +267275,Bose SoundSport Headphones,1,99.99,10/29/19 19:49,"944 Dogwood St, San Francisco, CA 94016" +267276,Vareebadd Phone,1,400,10/23/19 08:42,"530 Washington St, Austin, TX 73301" +267277,LG Washing Machine,1,600.0,10/18/19 19:12,"546 Washington St, New York City, NY 10001" +267278,AAA Batteries (4-pack),1,2.99,10/01/19 07:50,"58 Church St, San Francisco, CA 94016" +267279,USB-C Charging Cable,1,11.95,10/08/19 11:03,"679 Sunset St, Seattle, WA 98101" +267280,Lightning Charging Cable,1,14.95,10/10/19 13:01,"691 Wilson St, San Francisco, CA 94016" +267281,LG Dryer,1,600.0,10/30/19 19:36,"989 4th St, Dallas, TX 75001" +267282,AAA Batteries (4-pack),1,2.99,10/03/19 18:19,"75 West St, Portland, OR 97035" +267283,Lightning Charging Cable,1,14.95,10/16/19 10:52,"675 13th St, San Francisco, CA 94016" +267284,27in 4K Gaming Monitor,1,389.99,10/29/19 17:21,"838 Dogwood St, Atlanta, GA 30301" +267285,34in Ultrawide Monitor,1,379.99,10/22/19 11:06,"949 Willow St, Dallas, TX 75001" +267286,AA Batteries (4-pack),1,3.84,10/13/19 09:02,"503 1st St, San Francisco, CA 94016" +267287,27in 4K Gaming Monitor,1,389.99,10/17/19 13:24,"885 Jefferson St, Boston, MA 02215" +267288,Google Phone,1,600,10/26/19 16:59,"153 Sunset St, New York City, NY 10001" +267289,Bose SoundSport Headphones,1,99.99,10/15/19 12:46,"616 North St, Boston, MA 02215" +267290,Google Phone,1,600,10/01/19 15:06,"911 9th St, Portland, ME 04101" +267290,USB-C Charging Cable,1,11.95,10/01/19 15:06,"911 9th St, Portland, ME 04101" +267291,Google Phone,1,600,10/05/19 10:34,"678 Dogwood St, San Francisco, CA 94016" +267292,20in Monitor,1,109.99,10/22/19 12:53,"824 Lake St, Austin, TX 73301" +267293,Lightning Charging Cable,1,14.95,10/04/19 12:58,"615 Jefferson St, Los Angeles, CA 90001" +267294,USB-C Charging Cable,1,11.95,10/26/19 18:55,"535 Lakeview St, Seattle, WA 98101" +267295,Lightning Charging Cable,1,14.95,10/29/19 09:24,"6 Lakeview St, Boston, MA 02215" +267296,AAA Batteries (4-pack),1,2.99,10/27/19 18:52,"283 Hill St, Seattle, WA 98101" +267297,ThinkPad Laptop,1,999.99,10/05/19 20:19,"223 2nd St, Atlanta, GA 30301" +267298,Lightning Charging Cable,1,14.95,10/17/19 19:15,"918 Spruce St, Boston, MA 02215" +267299,USB-C Charging Cable,2,11.95,10/11/19 20:52,"363 Lake St, Los Angeles, CA 90001" +267300,Bose SoundSport Headphones,1,99.99,10/03/19 21:48,"38 4th St, San Francisco, CA 94016" +267301,AAA Batteries (4-pack),1,2.99,10/17/19 14:21,"21 Hickory St, Seattle, WA 98101" +267302,Vareebadd Phone,1,400,10/06/19 09:07,"200 Jefferson St, Portland, OR 97035" +267303,Google Phone,1,600,10/15/19 11:19,"774 Highland St, New York City, NY 10001" +267303,USB-C Charging Cable,1,11.95,10/15/19 11:19,"774 Highland St, New York City, NY 10001" +267304,AA Batteries (4-pack),1,3.84,10/03/19 15:02,"175 5th St, San Francisco, CA 94016" +267305,Bose SoundSport Headphones,1,99.99,10/04/19 22:10,"734 Ridge St, Austin, TX 73301" +267306,Lightning Charging Cable,1,14.95,10/19/19 12:54,"316 10th St, San Francisco, CA 94016" +267307,AA Batteries (4-pack),1,3.84,10/08/19 21:55,"819 North St, Los Angeles, CA 90001" +267308,Bose SoundSport Headphones,1,99.99,10/16/19 21:05,"642 Sunset St, Boston, MA 02215" +267309,Apple Airpods Headphones,1,150,10/17/19 01:12,"793 6th St, San Francisco, CA 94016" +267310,USB-C Charging Cable,2,11.95,10/30/19 19:30,"186 Meadow St, Los Angeles, CA 90001" +267310,Wired Headphones,1,11.99,10/30/19 19:30,"186 Meadow St, Los Angeles, CA 90001" +267311,20in Monitor,1,109.99,10/13/19 12:23,"41 14th St, San Francisco, CA 94016" +267312,Bose SoundSport Headphones,1,99.99,10/21/19 13:52,"236 Adams St, New York City, NY 10001" +267313,27in FHD Monitor,1,149.99,10/13/19 08:49,"786 Lincoln St, San Francisco, CA 94016" +267314,AA Batteries (4-pack),1,3.84,10/18/19 12:37,"291 13th St, Seattle, WA 98101" +267315,Lightning Charging Cable,1,14.95,10/28/19 19:48,"327 12th St, Atlanta, GA 30301" +267316,iPhone,1,700,10/07/19 22:25,"753 7th St, New York City, NY 10001" +267317,AAA Batteries (4-pack),2,2.99,10/07/19 11:54,"882 Adams St, New York City, NY 10001" +267318,27in FHD Monitor,1,149.99,10/08/19 12:28,"712 Jackson St, San Francisco, CA 94016" +267319,Flatscreen TV,1,300,10/11/19 21:39,"486 Lincoln St, Los Angeles, CA 90001" +267320,Bose SoundSport Headphones,1,99.99,10/11/19 16:25,"61 9th St, Portland, OR 97035" +267321,27in FHD Monitor,1,149.99,10/08/19 07:05,"628 Dogwood St, Seattle, WA 98101" +267322,27in 4K Gaming Monitor,1,389.99,10/01/19 18:54,"976 South St, San Francisco, CA 94016" +267323,Apple Airpods Headphones,1,150,10/09/19 12:02,"417 10th St, Los Angeles, CA 90001" +267323,AA Batteries (4-pack),1,3.84,10/09/19 12:02,"417 10th St, Los Angeles, CA 90001" +267324,ThinkPad Laptop,1,999.99,10/12/19 15:17,"408 Walnut St, Boston, MA 02215" +267325,Lightning Charging Cable,1,14.95,10/31/19 19:12,"379 9th St, Portland, ME 04101" +267326,ThinkPad Laptop,1,999.99,10/04/19 09:15,"488 12th St, Boston, MA 02215" +267327,Wired Headphones,1,11.99,10/18/19 14:56,"582 6th St, Seattle, WA 98101" +267328,Lightning Charging Cable,1,14.95,10/19/19 09:23,"992 2nd St, Atlanta, GA 30301" +267329,USB-C Charging Cable,1,11.95,10/09/19 21:33,"639 6th St, San Francisco, CA 94016" +267330,AA Batteries (4-pack),2,3.84,10/26/19 13:23,"642 Johnson St, Portland, OR 97035" +267331,USB-C Charging Cable,1,11.95,10/03/19 11:19,"303 Jefferson St, Atlanta, GA 30301" +267332,Macbook Pro Laptop,1,1700,10/02/19 21:42,"995 Wilson St, Los Angeles, CA 90001" +267333,Lightning Charging Cable,1,14.95,10/08/19 16:26,"319 Sunset St, Portland, ME 04101" +267334,ThinkPad Laptop,1,999.99,10/30/19 12:58,"75 8th St, New York City, NY 10001" +267335,20in Monitor,2,109.99,10/04/19 16:41,"964 14th St, New York City, NY 10001" +267336,Wired Headphones,1,11.99,10/06/19 02:24,"211 13th St, Austin, TX 73301" +267337,AAA Batteries (4-pack),1,2.99,10/31/19 20:35,"271 Wilson St, Atlanta, GA 30301" +267338,27in 4K Gaming Monitor,1,389.99,10/15/19 18:18,"381 Hickory St, San Francisco, CA 94016" +267339,27in 4K Gaming Monitor,1,389.99,10/21/19 15:33,"227 6th St, Portland, OR 97035" +267340,Macbook Pro Laptop,1,1700,10/01/19 20:51,"47 Lakeview St, Austin, TX 73301" +267341,USB-C Charging Cable,1,11.95,10/07/19 20:23,"357 West St, New York City, NY 10001" +267342,27in FHD Monitor,1,149.99,10/29/19 15:01,"949 5th St, Los Angeles, CA 90001" +267343,27in 4K Gaming Monitor,1,389.99,10/23/19 23:22,"935 Elm St, Atlanta, GA 30301" +267344,Apple Airpods Headphones,1,150,10/28/19 23:10,"563 8th St, Atlanta, GA 30301" +267345,Bose SoundSport Headphones,1,99.99,10/09/19 21:04,"878 Dogwood St, Los Angeles, CA 90001" +267346,USB-C Charging Cable,1,11.95,10/21/19 21:43,"826 10th St, Boston, MA 02215" +267347,Bose SoundSport Headphones,1,99.99,10/05/19 12:51,"78 Meadow St, Austin, TX 73301" +267348,AA Batteries (4-pack),1,3.84,10/10/19 21:10,"665 Center St, San Francisco, CA 94016" +267349,Wired Headphones,1,11.99,10/30/19 21:40,"963 14th St, Los Angeles, CA 90001" +267350,27in 4K Gaming Monitor,1,389.99,10/31/19 14:56,"104 14th St, Seattle, WA 98101" +267351,Lightning Charging Cable,1,14.95,10/25/19 00:28,"135 West St, San Francisco, CA 94016" +267352,Lightning Charging Cable,1,14.95,10/01/19 21:11,"426 Park St, Austin, TX 73301" +267353,Lightning Charging Cable,1,14.95,10/03/19 03:07,"141 Walnut St, New York City, NY 10001" +267354,LG Washing Machine,1,600.0,10/23/19 11:20,"35 12th St, Dallas, TX 75001" +267355,Lightning Charging Cable,2,14.95,10/30/19 14:14,"647 Cherry St, New York City, NY 10001" +267356,27in FHD Monitor,1,149.99,10/01/19 20:10,"889 Johnson St, Dallas, TX 75001" +267357,USB-C Charging Cable,1,11.95,10/29/19 08:29,"844 13th St, San Francisco, CA 94016" +267358,Flatscreen TV,1,300,10/07/19 07:17,"321 Wilson St, Boston, MA 02215" +267359,AAA Batteries (4-pack),1,2.99,10/09/19 10:01,"790 Willow St, Seattle, WA 98101" +267360,Lightning Charging Cable,1,14.95,10/20/19 13:50,"517 North St, San Francisco, CA 94016" +267361,AA Batteries (4-pack),1,3.84,10/08/19 17:28,"828 4th St, San Francisco, CA 94016" +267362,27in FHD Monitor,1,149.99,10/17/19 13:44,"299 Church St, Los Angeles, CA 90001" +267363,Bose SoundSport Headphones,1,99.99,10/01/19 21:48,"562 Walnut St, Portland, OR 97035" +267364,AAA Batteries (4-pack),1,2.99,10/18/19 19:21,"391 Main St, New York City, NY 10001" +267365,27in FHD Monitor,1,149.99,10/27/19 17:35,"523 Madison St, Atlanta, GA 30301" +267366,Bose SoundSport Headphones,1,99.99,10/15/19 09:11,"47 Meadow St, San Francisco, CA 94016" +267367,Flatscreen TV,1,300,10/04/19 02:17,"867 13th St, Los Angeles, CA 90001" +267368,AAA Batteries (4-pack),2,2.99,10/10/19 19:40,"295 River St, Los Angeles, CA 90001" +267369,34in Ultrawide Monitor,1,379.99,10/04/19 11:01,"97 8th St, New York City, NY 10001" +267370,Bose SoundSport Headphones,2,99.99,10/25/19 21:22,"832 Hill St, San Francisco, CA 94016" +267371,Bose SoundSport Headphones,1,99.99,10/28/19 17:23,"462 Main St, Los Angeles, CA 90001" +267372,Lightning Charging Cable,1,14.95,10/27/19 08:22,"205 Cherry St, San Francisco, CA 94016" +267373,Wired Headphones,1,11.99,10/14/19 23:04,"314 Washington St, New York City, NY 10001" +267374,Lightning Charging Cable,1,14.95,10/09/19 04:36,"656 Chestnut St, Portland, OR 97035" +267375,Google Phone,1,600,10/10/19 08:42,"421 Pine St, New York City, NY 10001" +267376,iPhone,1,700,10/30/19 19:32,"561 Lincoln St, San Francisco, CA 94016" +267377,Wired Headphones,1,11.99,10/25/19 10:48,"551 Johnson St, San Francisco, CA 94016" +267378,Wired Headphones,1,11.99,10/02/19 13:21,"704 14th St, Portland, OR 97035" +267379,Lightning Charging Cable,1,14.95,10/14/19 08:14,"511 Lake St, Dallas, TX 75001" +267380,Wired Headphones,1,11.99,10/29/19 19:34,"898 Church St, Dallas, TX 75001" +267381,USB-C Charging Cable,1,11.95,10/28/19 08:51,"565 Pine St, San Francisco, CA 94016" +267382,Lightning Charging Cable,1,14.95,10/07/19 08:06,"819 Ridge St, Los Angeles, CA 90001" +267383,AA Batteries (4-pack),1,3.84,10/02/19 13:01,"11 Hill St, Boston, MA 02215" +267384,iPhone,1,700,10/07/19 12:44,"948 Ridge St, Boston, MA 02215" +267384,Lightning Charging Cable,1,14.95,10/07/19 12:44,"948 Ridge St, Boston, MA 02215" +267385,Lightning Charging Cable,1,14.95,10/21/19 08:40,"741 Johnson St, Atlanta, GA 30301" +267386,AA Batteries (4-pack),2,3.84,10/06/19 13:11,"488 Lincoln St, Los Angeles, CA 90001" +267387,27in FHD Monitor,1,149.99,10/31/19 18:12,"198 11th St, Seattle, WA 98101" +267388,Bose SoundSport Headphones,1,99.99,10/30/19 10:51,"456 Lakeview St, Dallas, TX 75001" +267389,Apple Airpods Headphones,1,150,10/24/19 18:38,"674 8th St, Los Angeles, CA 90001" +267390,27in FHD Monitor,1,149.99,10/11/19 21:10,"434 10th St, New York City, NY 10001" +267391,Google Phone,1,600,10/06/19 09:00,"202 Wilson St, Boston, MA 02215" +267391,Bose SoundSport Headphones,1,99.99,10/06/19 09:00,"202 Wilson St, Boston, MA 02215" +267391,Wired Headphones,1,11.99,10/06/19 09:00,"202 Wilson St, Boston, MA 02215" +267392,AAA Batteries (4-pack),1,2.99,11/01/19 02:07,"291 Highland St, San Francisco, CA 94016" +267393,AA Batteries (4-pack),1,3.84,10/19/19 19:34,"498 Walnut St, Boston, MA 02215" +267394,AA Batteries (4-pack),1,3.84,10/28/19 22:39,"234 14th St, Boston, MA 02215" +267395,Bose SoundSport Headphones,1,99.99,10/30/19 11:23,"877 Sunset St, Boston, MA 02215" +267396,Wired Headphones,1,11.99,10/09/19 13:09,"854 Lake St, Seattle, WA 98101" +267397,AA Batteries (4-pack),1,3.84,10/30/19 09:55,"845 6th St, Boston, MA 02215" +267398,27in FHD Monitor,1,149.99,10/13/19 13:46,"486 14th St, New York City, NY 10001" +267399,Vareebadd Phone,1,400,10/16/19 19:23,"257 Willow St, Seattle, WA 98101" +267399,USB-C Charging Cable,2,11.95,10/16/19 19:23,"257 Willow St, Seattle, WA 98101" +267399,Bose SoundSport Headphones,1,99.99,10/16/19 19:23,"257 Willow St, Seattle, WA 98101" +267400,Bose SoundSport Headphones,1,99.99,10/20/19 13:14,"135 Pine St, Austin, TX 73301" +267401,AAA Batteries (4-pack),2,2.99,10/18/19 09:37,"937 Walnut St, San Francisco, CA 94016" +267402,AA Batteries (4-pack),1,3.84,11/01/19 00:51,"726 9th St, New York City, NY 10001" +267403,34in Ultrawide Monitor,1,379.99,10/08/19 20:09,"792 Elm St, Los Angeles, CA 90001" +267404,AAA Batteries (4-pack),2,2.99,10/14/19 20:30,"468 Adams St, San Francisco, CA 94016" +267405,27in FHD Monitor,1,149.99,10/25/19 12:50,"659 Park St, San Francisco, CA 94016" +267406,Wired Headphones,1,11.99,10/11/19 20:39,"21 Chestnut St, San Francisco, CA 94016" +267407,Google Phone,1,600,10/24/19 20:34,"925 Hill St, Portland, OR 97035" +267407,Wired Headphones,1,11.99,10/24/19 20:34,"925 Hill St, Portland, OR 97035" +267408,Flatscreen TV,1,300,10/29/19 22:45,"730 Adams St, Portland, ME 04101" +267409,AA Batteries (4-pack),1,3.84,10/13/19 19:37,"438 Church St, Portland, ME 04101" +267410,Google Phone,1,600,10/24/19 12:09,"422 11th St, Los Angeles, CA 90001" +267411,AAA Batteries (4-pack),1,2.99,10/21/19 14:43,"672 Meadow St, San Francisco, CA 94016" +267412,ThinkPad Laptop,1,999.99,10/26/19 20:30,"120 13th St, Los Angeles, CA 90001" +267413,USB-C Charging Cable,1,11.95,10/05/19 20:28,"355 8th St, Los Angeles, CA 90001" +267414,Lightning Charging Cable,1,14.95,10/01/19 15:22,"180 10th St, Atlanta, GA 30301" +267415,Wired Headphones,1,11.99,10/31/19 23:15,"724 River St, San Francisco, CA 94016" +267416,20in Monitor,1,109.99,10/31/19 17:21,"606 Main St, Seattle, WA 98101" +267417,Apple Airpods Headphones,1,150,10/29/19 20:53,"751 Cedar St, New York City, NY 10001" +267418,27in 4K Gaming Monitor,1,389.99,10/26/19 17:55,"783 8th St, San Francisco, CA 94016" +267419,Flatscreen TV,1,300,10/15/19 18:07,"669 Cedar St, Seattle, WA 98101" +267420,Wired Headphones,1,11.99,10/07/19 23:23,"136 Center St, Seattle, WA 98101" +267421,AAA Batteries (4-pack),2,2.99,10/02/19 23:52,"814 4th St, Los Angeles, CA 90001" +267422,Lightning Charging Cable,1,14.95,10/21/19 09:41,"541 Lakeview St, San Francisco, CA 94016" +267423,Wired Headphones,1,11.99,10/18/19 20:48,"64 12th St, San Francisco, CA 94016" +267424,Apple Airpods Headphones,1,150,10/09/19 11:54,"878 Meadow St, Portland, OR 97035" +267425,Lightning Charging Cable,2,14.95,10/31/19 22:00,"260 Adams St, Austin, TX 73301" +267426,AA Batteries (4-pack),1,3.84,10/18/19 08:42,"129 11th St, New York City, NY 10001" +267427,USB-C Charging Cable,1,11.95,10/09/19 15:37,"544 Sunset St, Seattle, WA 98101" +267428,Wired Headphones,1,11.99,10/22/19 21:41,"63 West St, Los Angeles, CA 90001" +267429,AAA Batteries (4-pack),1,2.99,10/21/19 12:40,"831 Elm St, San Francisco, CA 94016" +267430,ThinkPad Laptop,1,999.99,10/31/19 22:07,"896 Chestnut St, Portland, OR 97035" +267431,27in 4K Gaming Monitor,1,389.99,10/18/19 18:02,"827 Lakeview St, Dallas, TX 75001" +267432,Apple Airpods Headphones,1,150,10/21/19 09:40,"457 Highland St, San Francisco, CA 94016" +267433,Bose SoundSport Headphones,1,99.99,10/31/19 14:31,"30 Forest St, Boston, MA 02215" +267434,Apple Airpods Headphones,1,150,10/30/19 09:02,"476 Lakeview St, San Francisco, CA 94016" +267435,34in Ultrawide Monitor,1,379.99,10/28/19 23:31,"87 Church St, Los Angeles, CA 90001" +267436,Google Phone,1,600,10/18/19 16:02,"196 Lake St, San Francisco, CA 94016" +267437,AA Batteries (4-pack),1,3.84,10/18/19 00:29,"100 Hickory St, Boston, MA 02215" +267438,USB-C Charging Cable,1,11.95,10/29/19 21:47,"463 Hickory St, Los Angeles, CA 90001" +267439,Lightning Charging Cable,1,14.95,10/19/19 15:15,"994 Maple St, Seattle, WA 98101" +267440,USB-C Charging Cable,1,11.95,10/15/19 00:22,"541 Park St, Atlanta, GA 30301" +267441,Wired Headphones,2,11.99,10/26/19 10:28,"827 Meadow St, Atlanta, GA 30301" +267442,Lightning Charging Cable,1,14.95,10/17/19 14:43,"640 Sunset St, Portland, OR 97035" +267443,USB-C Charging Cable,1,11.95,10/22/19 17:23,"819 Madison St, Portland, OR 97035" +267444,iPhone,1,700,10/30/19 17:22,"313 Meadow St, Seattle, WA 98101" +267445,20in Monitor,1,109.99,10/30/19 21:25,"603 14th St, Atlanta, GA 30301" +267446,20in Monitor,1,109.99,10/16/19 13:32,"440 Adams St, Dallas, TX 75001" +267447,Wired Headphones,1,11.99,10/26/19 22:08,"533 Ridge St, Boston, MA 02215" +267448,AA Batteries (4-pack),1,3.84,10/17/19 12:49,"861 Sunset St, San Francisco, CA 94016" +267449,Apple Airpods Headphones,2,150,10/14/19 13:35,"369 Center St, San Francisco, CA 94016" +267450,Bose SoundSport Headphones,1,99.99,10/04/19 10:27,"974 Johnson St, Los Angeles, CA 90001" +267451,Wired Headphones,1,11.99,10/22/19 06:29,"788 Ridge St, Dallas, TX 75001" +267452,Apple Airpods Headphones,1,150,10/29/19 18:56,"336 Hill St, Los Angeles, CA 90001" +267453,USB-C Charging Cable,1,11.95,10/24/19 10:59,"878 14th St, Dallas, TX 75001" +267454,AAA Batteries (4-pack),1,2.99,10/04/19 11:37,"510 Center St, San Francisco, CA 94016" +267455,USB-C Charging Cable,1,11.95,10/03/19 19:02,"785 Washington St, Los Angeles, CA 90001" +267456,AA Batteries (4-pack),1,3.84,10/25/19 09:28,"991 7th St, Los Angeles, CA 90001" +267457,Wired Headphones,3,11.99,10/14/19 18:04,"852 Meadow St, Atlanta, GA 30301" +267458,Vareebadd Phone,1,400,10/27/19 22:25,"550 4th St, New York City, NY 10001" +267459,Bose SoundSport Headphones,1,99.99,10/04/19 13:36,"628 Jefferson St, Seattle, WA 98101" +267460,Wired Headphones,1,11.99,10/31/19 17:56,"571 Washington St, New York City, NY 10001" +267461,34in Ultrawide Monitor,1,379.99,10/24/19 16:46,"148 Lincoln St, Dallas, TX 75001" +267462,Vareebadd Phone,1,400,10/21/19 18:49,"968 River St, Boston, MA 02215" +267463,AAA Batteries (4-pack),1,2.99,10/15/19 14:22,"174 Park St, San Francisco, CA 94016" +267463,AA Batteries (4-pack),1,3.84,10/15/19 14:22,"174 Park St, San Francisco, CA 94016" +267464,AAA Batteries (4-pack),4,2.99,10/03/19 20:43,"783 Elm St, Atlanta, GA 30301" +267465,USB-C Charging Cable,1,11.95,10/01/19 11:26,"91 Pine St, New York City, NY 10001" +267466,AAA Batteries (4-pack),3,2.99,10/10/19 08:58,"661 Wilson St, San Francisco, CA 94016" +267467,AAA Batteries (4-pack),1,2.99,10/05/19 20:55,"497 Cherry St, Austin, TX 73301" +267468,Vareebadd Phone,1,400,10/13/19 19:46,"523 12th St, Seattle, WA 98101" +267469,Lightning Charging Cable,1,14.95,10/18/19 17:17,"894 Cherry St, Boston, MA 02215" +267470,USB-C Charging Cable,1,11.95,10/23/19 09:51,"499 Lincoln St, Boston, MA 02215" +267471,iPhone,1,700,10/19/19 18:51,"387 Johnson St, New York City, NY 10001" +267471,Wired Headphones,1,11.99,10/19/19 18:51,"387 Johnson St, New York City, NY 10001" +267472,Lightning Charging Cable,1,14.95,10/09/19 15:58,"94 4th St, Atlanta, GA 30301" +267473,AA Batteries (4-pack),1,3.84,10/31/19 18:40,"308 9th St, Seattle, WA 98101" +267474,34in Ultrawide Monitor,1,379.99,10/30/19 14:21,"976 Chestnut St, New York City, NY 10001" +267475,Lightning Charging Cable,1,14.95,10/03/19 12:44,"779 Cedar St, Atlanta, GA 30301" +267476,Wired Headphones,1,11.99,10/05/19 09:14,"318 Jackson St, Los Angeles, CA 90001" +267477,AAA Batteries (4-pack),1,2.99,10/23/19 11:39,"387 Forest St, Seattle, WA 98101" +267478,AAA Batteries (4-pack),1,2.99,10/22/19 14:27,"992 Park St, San Francisco, CA 94016" +267479,Wired Headphones,1,11.99,10/01/19 19:46,"836 Lake St, San Francisco, CA 94016" +267480,Google Phone,1,600,10/18/19 14:16,"785 8th St, San Francisco, CA 94016" +267481,AAA Batteries (4-pack),2,2.99,10/14/19 20:23,"356 9th St, Boston, MA 02215" +267482,Apple Airpods Headphones,1,150,10/13/19 16:06,"701 Lincoln St, Los Angeles, CA 90001" +267483,AAA Batteries (4-pack),1,2.99,10/16/19 19:47,"533 Jefferson St, San Francisco, CA 94016" +267484,Lightning Charging Cable,1,14.95,10/29/19 19:20,"133 River St, Seattle, WA 98101" +267485,USB-C Charging Cable,1,11.95,10/16/19 22:07,"169 Hill St, New York City, NY 10001" +267486,27in 4K Gaming Monitor,1,389.99,10/18/19 20:08,"28 Jefferson St, New York City, NY 10001" +267487,Apple Airpods Headphones,1,150,10/31/19 20:56,"533 Sunset St, Los Angeles, CA 90001" +267488,Wired Headphones,1,11.99,10/26/19 12:18,"139 Hill St, Atlanta, GA 30301" +267489,27in 4K Gaming Monitor,1,389.99,10/22/19 23:26,"612 Johnson St, San Francisco, CA 94016" +267490,Lightning Charging Cable,1,14.95,10/02/19 20:54,"323 7th St, Seattle, WA 98101" +267491,AA Batteries (4-pack),1,3.84,10/20/19 13:13,"404 Cherry St, San Francisco, CA 94016" +267492,34in Ultrawide Monitor,1,379.99,10/01/19 07:19,"531 Main St, Los Angeles, CA 90001" +267493,AA Batteries (4-pack),1,3.84,10/14/19 23:29,"161 Dogwood St, San Francisco, CA 94016" +267494,AA Batteries (4-pack),1,3.84,10/28/19 17:50,"846 5th St, Atlanta, GA 30301" +267495,Lightning Charging Cable,1,14.95,10/27/19 00:03,"971 Park St, San Francisco, CA 94016" +267496,Lightning Charging Cable,1,14.95,10/19/19 07:33,"24 Dogwood St, Austin, TX 73301" +267497,20in Monitor,1,109.99,10/23/19 15:02,"437 Cedar St, Los Angeles, CA 90001" +267498,USB-C Charging Cable,1,11.95,10/07/19 15:48,"90 River St, Dallas, TX 75001" +267499,USB-C Charging Cable,1,11.95,10/16/19 12:16,"244 Jefferson St, Austin, TX 73301" +267500,Apple Airpods Headphones,1,150,10/12/19 16:07,"907 Washington St, Los Angeles, CA 90001" +267501,27in 4K Gaming Monitor,1,389.99,10/04/19 22:02,"142 Wilson St, San Francisco, CA 94016" +267502,Apple Airpods Headphones,1,150,10/07/19 17:20,"72 4th St, Seattle, WA 98101" +267503,AAA Batteries (4-pack),4,2.99,10/28/19 18:50,"84 Main St, New York City, NY 10001" +267503,AAA Batteries (4-pack),2,2.99,10/28/19 18:50,"84 Main St, New York City, NY 10001" +267504,AA Batteries (4-pack),1,3.84,10/17/19 20:22,"142 River St, San Francisco, CA 94016" +267505,34in Ultrawide Monitor,1,379.99,10/14/19 11:31,"20 Maple St, San Francisco, CA 94016" +267506,Bose SoundSport Headphones,1,99.99,10/29/19 14:11,"141 Ridge St, Dallas, TX 75001" +267507,USB-C Charging Cable,1,11.95,10/26/19 12:57,"12 11th St, Seattle, WA 98101" +267508,AA Batteries (4-pack),1,3.84,10/19/19 21:13,"180 Maple St, Boston, MA 02215" +267509,27in FHD Monitor,1,149.99,10/21/19 09:20,"689 Spruce St, Boston, MA 02215" +267510,Wired Headphones,1,11.99,10/14/19 08:34,"392 Lake St, Portland, OR 97035" +267511,Wired Headphones,1,11.99,10/02/19 19:17,"756 Dogwood St, Los Angeles, CA 90001" +267512,Wired Headphones,1,11.99,10/09/19 15:05,"363 Forest St, Los Angeles, CA 90001" +267513,Flatscreen TV,1,300,10/02/19 19:34,"860 7th St, New York City, NY 10001" +267514,Bose SoundSport Headphones,1,99.99,10/20/19 03:03,"181 7th St, Boston, MA 02215" +267515,Wired Headphones,1,11.99,10/30/19 19:24,"227 Sunset St, Austin, TX 73301" +267516,27in FHD Monitor,1,149.99,10/20/19 12:13,"250 Ridge St, San Francisco, CA 94016" +267517,Wired Headphones,1,11.99,10/31/19 12:58,"564 Cedar St, San Francisco, CA 94016" +267518,27in FHD Monitor,1,149.99,10/22/19 10:39,"841 Madison St, Los Angeles, CA 90001" +267519,USB-C Charging Cable,1,11.95,10/24/19 18:57,"25 Ridge St, San Francisco, CA 94016" +267520,Google Phone,1,600,10/07/19 19:43,"876 Highland St, San Francisco, CA 94016" +267521,AA Batteries (4-pack),1,3.84,10/07/19 13:56,"616 Dogwood St, Boston, MA 02215" +267522,27in FHD Monitor,1,149.99,10/15/19 22:43,"869 Hill St, Boston, MA 02215" +267523,Apple Airpods Headphones,1,150,10/11/19 14:30,"440 Sunset St, New York City, NY 10001" +267524,Macbook Pro Laptop,1,1700,10/08/19 21:06,"119 11th St, Austin, TX 73301" +267524,AAA Batteries (4-pack),2,2.99,10/08/19 21:06,"119 11th St, Austin, TX 73301" +267525,Wired Headphones,1,11.99,10/23/19 16:58,"691 Jefferson St, New York City, NY 10001" +267526,Apple Airpods Headphones,1,150,10/05/19 09:04,"543 Highland St, Portland, OR 97035" +267527,Apple Airpods Headphones,1,150,10/13/19 11:09,"293 Cedar St, Atlanta, GA 30301" +267528,Lightning Charging Cable,1,14.95,10/21/19 15:42,"470 14th St, Portland, OR 97035" +267529,Google Phone,1,600,10/10/19 11:50,"316 6th St, Austin, TX 73301" +267529,USB-C Charging Cable,1,11.95,10/10/19 11:50,"316 6th St, Austin, TX 73301" +267530,Lightning Charging Cable,1,14.95,10/14/19 13:38,"436 Highland St, Atlanta, GA 30301" +267531,ThinkPad Laptop,1,999.99,10/15/19 13:24,"774 Johnson St, Boston, MA 02215" +267532,iPhone,1,700,10/18/19 21:00,"765 10th St, Dallas, TX 75001" +267532,Lightning Charging Cable,1,14.95,10/18/19 21:00,"765 10th St, Dallas, TX 75001" +267533,Apple Airpods Headphones,1,150,10/28/19 12:31,"586 Cedar St, Los Angeles, CA 90001" +267534,LG Washing Machine,1,600.0,10/19/19 11:16,"16 Lake St, New York City, NY 10001" +267535,34in Ultrawide Monitor,1,379.99,10/04/19 08:32,"729 Hickory St, San Francisco, CA 94016" +267536,ThinkPad Laptop,1,999.99,10/12/19 12:32,"166 West St, San Francisco, CA 94016" +267537,USB-C Charging Cable,1,11.95,10/07/19 12:30,"646 2nd St, San Francisco, CA 94016" +267538,Wired Headphones,1,11.99,10/01/19 16:15,"55 4th St, Dallas, TX 75001" +267539,USB-C Charging Cable,2,11.95,10/19/19 18:31,"767 North St, New York City, NY 10001" +267540,USB-C Charging Cable,1,11.95,10/17/19 12:18,"722 Adams St, Seattle, WA 98101" +267541,USB-C Charging Cable,1,11.95,10/19/19 19:01,"353 Maple St, Dallas, TX 75001" +267542,AA Batteries (4-pack),1,3.84,10/25/19 18:06,"680 Adams St, Los Angeles, CA 90001" +267543,USB-C Charging Cable,1,11.95,10/04/19 21:32,"921 Ridge St, Los Angeles, CA 90001" +267544,20in Monitor,1,109.99,10/18/19 15:10,"835 Lake St, Austin, TX 73301" +267545,34in Ultrawide Monitor,1,379.99,10/31/19 22:42,"378 Ridge St, Dallas, TX 75001" +267546,Bose SoundSport Headphones,1,99.99,10/28/19 19:13,"149 North St, Los Angeles, CA 90001" +267547,AAA Batteries (4-pack),1,2.99,10/08/19 11:10,"91 Maple St, Austin, TX 73301" +267548,AA Batteries (4-pack),1,3.84,10/17/19 08:55,"827 Hill St, Seattle, WA 98101" +267549,Wired Headphones,1,11.99,10/14/19 16:52,"564 Hickory St, Portland, OR 97035" +267550,AA Batteries (4-pack),1,3.84,10/19/19 13:09,"848 5th St, Boston, MA 02215" +267551,Apple Airpods Headphones,1,150,10/29/19 23:08,"932 13th St, Los Angeles, CA 90001" +267552,ThinkPad Laptop,1,999.99,10/22/19 21:42,"20 Highland St, New York City, NY 10001" +267553,AAA Batteries (4-pack),2,2.99,10/12/19 20:12,"133 Highland St, Boston, MA 02215" +267554,27in 4K Gaming Monitor,1,389.99,10/11/19 18:16,"764 Adams St, Seattle, WA 98101" +267555,27in FHD Monitor,1,149.99,10/10/19 12:10,"212 2nd St, Boston, MA 02215" +267556,34in Ultrawide Monitor,1,379.99,10/30/19 20:21,"595 Sunset St, Boston, MA 02215" +267557,Google Phone,1,600,10/18/19 10:04,"503 Maple St, San Francisco, CA 94016" +267558,Flatscreen TV,1,300,10/01/19 13:20,"753 Cherry St, Portland, OR 97035" +267559,Wired Headphones,1,11.99,10/10/19 20:13,"743 Johnson St, Seattle, WA 98101" +267560,20in Monitor,1,109.99,10/12/19 11:28,"341 Jackson St, New York City, NY 10001" +267561,Wired Headphones,1,11.99,10/05/19 12:09,"330 Pine St, San Francisco, CA 94016" +267562,USB-C Charging Cable,1,11.95,10/10/19 08:13,"563 Wilson St, Dallas, TX 75001" +267563,Lightning Charging Cable,1,14.95,10/23/19 19:59,"152 West St, New York City, NY 10001" +267564,Bose SoundSport Headphones,1,99.99,10/26/19 11:37,"682 Madison St, San Francisco, CA 94016" +267565,Wired Headphones,1,11.99,10/25/19 23:20,"777 Lakeview St, San Francisco, CA 94016" +267566,27in 4K Gaming Monitor,1,389.99,10/09/19 07:24,"606 7th St, Los Angeles, CA 90001" +267567,Vareebadd Phone,1,400,10/21/19 11:22,"87 13th St, San Francisco, CA 94016" +267567,USB-C Charging Cable,1,11.95,10/21/19 11:22,"87 13th St, San Francisco, CA 94016" +267568,Lightning Charging Cable,1,14.95,10/12/19 13:41,"286 Maple St, Los Angeles, CA 90001" +267569,Lightning Charging Cable,1,14.95,10/11/19 19:44,"684 North St, New York City, NY 10001" +267570,AAA Batteries (4-pack),2,2.99,10/23/19 17:11,"12 Chestnut St, New York City, NY 10001" +267571,USB-C Charging Cable,1,11.95,10/07/19 20:10,"216 Madison St, Austin, TX 73301" +267572,Lightning Charging Cable,1,14.95,10/02/19 13:05,"550 7th St, Los Angeles, CA 90001" +267573,27in FHD Monitor,1,149.99,10/17/19 09:10,"818 Lake St, San Francisco, CA 94016" +267574,27in 4K Gaming Monitor,1,389.99,10/05/19 11:46,"570 Park St, Boston, MA 02215" +267575,27in FHD Monitor,1,149.99,10/12/19 14:24,"343 Park St, San Francisco, CA 94016" +267576,Lightning Charging Cable,1,14.95,10/16/19 15:38,"196 Spruce St, Atlanta, GA 30301" +267577,Bose SoundSport Headphones,1,99.99,10/06/19 11:52,"563 Park St, Dallas, TX 75001" +267578,AAA Batteries (4-pack),1,2.99,10/04/19 19:04,"743 2nd St, Atlanta, GA 30301" +267579,Wired Headphones,1,11.99,10/08/19 12:07,"222 Dogwood St, San Francisco, CA 94016" +267580,Apple Airpods Headphones,1,150,10/25/19 23:38,"805 12th St, Seattle, WA 98101" +267581,AAA Batteries (4-pack),1,2.99,10/03/19 20:53,"680 Dogwood St, San Francisco, CA 94016" +267582,USB-C Charging Cable,1,11.95,10/31/19 09:32,"645 Lincoln St, Los Angeles, CA 90001" +267583,Macbook Pro Laptop,1,1700,10/19/19 22:15,"940 Cedar St, Dallas, TX 75001" +267584,USB-C Charging Cable,1,11.95,10/27/19 18:09,"212 Church St, Los Angeles, CA 90001" +267585,AA Batteries (4-pack),2,3.84,10/22/19 10:09,"928 West St, Los Angeles, CA 90001" +267586,27in 4K Gaming Monitor,1,389.99,10/28/19 16:54,"915 River St, Austin, TX 73301" +267587,USB-C Charging Cable,1,11.95,10/05/19 09:23,"42 North St, Boston, MA 02215" +267588,Flatscreen TV,1,300,10/21/19 08:59,"307 Lakeview St, New York City, NY 10001" +267589,Bose SoundSport Headphones,1,99.99,10/13/19 20:22,"443 11th St, Boston, MA 02215" +267590,34in Ultrawide Monitor,1,379.99,10/02/19 20:13,"341 Church St, San Francisco, CA 94016" +267591,34in Ultrawide Monitor,1,379.99,10/29/19 22:19,"678 Lake St, New York City, NY 10001" +267592,Wired Headphones,1,11.99,10/16/19 15:11,"25 Forest St, San Francisco, CA 94016" +267593,USB-C Charging Cable,1,11.95,10/06/19 19:27,"789 1st St, San Francisco, CA 94016" +267594,LG Washing Machine,1,600.0,10/02/19 09:18,"408 5th St, Los Angeles, CA 90001" +267595,AAA Batteries (4-pack),1,2.99,10/27/19 19:40,"490 5th St, New York City, NY 10001" +267596,20in Monitor,1,109.99,10/15/19 20:13,"169 Adams St, Los Angeles, CA 90001" +267597,Apple Airpods Headphones,1,150,10/14/19 12:14,"452 Washington St, Los Angeles, CA 90001" +267598,AAA Batteries (4-pack),1,2.99,10/16/19 17:54,"840 Pine St, Austin, TX 73301" +267599,20in Monitor,1,109.99,10/28/19 07:11,"970 Hill St, San Francisco, CA 94016" +267600,Google Phone,1,600,10/19/19 13:04,"493 Cedar St, San Francisco, CA 94016" +267601,Lightning Charging Cable,1,14.95,10/09/19 16:38,"623 Wilson St, Boston, MA 02215" +267602,Google Phone,1,600,10/25/19 23:32,"189 Park St, Seattle, WA 98101" +267603,Lightning Charging Cable,1,14.95,10/05/19 21:31,"262 Center St, New York City, NY 10001" +267604,AAA Batteries (4-pack),1,2.99,10/03/19 07:19,"18 10th St, New York City, NY 10001" +267605,Lightning Charging Cable,1,14.95,10/14/19 08:20,"646 Elm St, Dallas, TX 75001" +267606,AA Batteries (4-pack),1,3.84,10/26/19 00:49,"628 7th St, Austin, TX 73301" +267607,Wired Headphones,2,11.99,10/31/19 23:27,"279 River St, San Francisco, CA 94016" +267608,34in Ultrawide Monitor,1,379.99,10/28/19 21:10,"906 Pine St, San Francisco, CA 94016" +267609,34in Ultrawide Monitor,1,379.99,10/19/19 16:11,"630 Center St, Seattle, WA 98101" +267610,Wired Headphones,2,11.99,10/01/19 15:44,"295 Sunset St, New York City, NY 10001" +267611,AA Batteries (4-pack),1,3.84,10/10/19 15:10,"766 Pine St, Seattle, WA 98101" +267612,Macbook Pro Laptop,1,1700,10/29/19 16:10,"957 Ridge St, Seattle, WA 98101" +267613,Wired Headphones,1,11.99,10/12/19 00:27,"500 Cherry St, Dallas, TX 75001" +267614,USB-C Charging Cable,1,11.95,10/05/19 20:33,"776 12th St, Atlanta, GA 30301" +267615,Wired Headphones,2,11.99,10/14/19 14:53,"406 Chestnut St, Boston, MA 02215" +267616,USB-C Charging Cable,1,11.95,10/03/19 13:45,"641 Park St, San Francisco, CA 94016" +267617,Lightning Charging Cable,1,14.95,10/02/19 21:25,"141 Maple St, San Francisco, CA 94016" +267618,Lightning Charging Cable,1,14.95,10/26/19 11:27,"37 1st St, Boston, MA 02215" +267619,20in Monitor,1,109.99,10/07/19 14:10,"852 6th St, Atlanta, GA 30301" +267620,AAA Batteries (4-pack),1,2.99,10/23/19 17:32,"143 Hill St, Portland, OR 97035" +267621,Lightning Charging Cable,1,14.95,10/26/19 16:17,"235 11th St, Los Angeles, CA 90001" +267622,Macbook Pro Laptop,1,1700,10/27/19 18:26,"547 14th St, San Francisco, CA 94016" +267623,Apple Airpods Headphones,1,150,10/21/19 21:06,"589 West St, Atlanta, GA 30301" +267624,AAA Batteries (4-pack),1,2.99,10/29/19 14:18,"24 Park St, New York City, NY 10001" +267625,Bose SoundSport Headphones,1,99.99,10/15/19 21:04,"469 Ridge St, Atlanta, GA 30301" +267626,USB-C Charging Cable,1,11.95,10/07/19 17:05,"685 River St, Los Angeles, CA 90001" +267627,34in Ultrawide Monitor,1,379.99,10/03/19 14:08,"604 West St, San Francisco, CA 94016" +267628,AAA Batteries (4-pack),2,2.99,10/05/19 12:11,"526 4th St, New York City, NY 10001" +267629,AAA Batteries (4-pack),2,2.99,10/30/19 10:14,"485 Madison St, Portland, OR 97035" +267630,iPhone,1,700,10/07/19 21:08,"213 1st St, San Francisco, CA 94016" +267631,Google Phone,1,600,10/19/19 12:40,"368 Main St, Dallas, TX 75001" +267632,Bose SoundSport Headphones,1,99.99,10/03/19 11:16,"940 4th St, Dallas, TX 75001" +267633,AAA Batteries (4-pack),4,2.99,10/09/19 12:41,"842 Spruce St, Los Angeles, CA 90001" +267634,USB-C Charging Cable,2,11.95,10/23/19 13:17,"735 Main St, Atlanta, GA 30301" +267635,Apple Airpods Headphones,1,150,10/10/19 11:54,"539 Ridge St, Dallas, TX 75001" +267636,27in 4K Gaming Monitor,1,389.99,10/08/19 13:38,"676 Maple St, Los Angeles, CA 90001" +267637,Bose SoundSport Headphones,1,99.99,10/23/19 16:01,"796 Park St, Atlanta, GA 30301" +267638,AAA Batteries (4-pack),2,2.99,10/10/19 07:53,"941 West St, Atlanta, GA 30301" +267639,27in FHD Monitor,1,149.99,10/21/19 08:29,"178 South St, Los Angeles, CA 90001" +267640,AA Batteries (4-pack),1,3.84,10/05/19 10:25,"672 10th St, Portland, OR 97035" +267641,27in FHD Monitor,1,149.99,10/06/19 08:14,"978 Lakeview St, New York City, NY 10001" +267642,34in Ultrawide Monitor,1,379.99,10/14/19 20:52,"568 River St, Seattle, WA 98101" +267643,AAA Batteries (4-pack),1,2.99,10/02/19 12:50,"690 Washington St, Boston, MA 02215" +267644,Lightning Charging Cable,1,14.95,10/22/19 18:36,"365 Hickory St, Los Angeles, CA 90001" +267645,34in Ultrawide Monitor,1,379.99,10/17/19 11:44,"262 Chestnut St, San Francisco, CA 94016" +267646,AAA Batteries (4-pack),1,2.99,10/13/19 10:09,"963 5th St, Dallas, TX 75001" +267647,Flatscreen TV,1,300,10/19/19 00:16,"456 Lincoln St, Los Angeles, CA 90001" +267648,20in Monitor,1,109.99,10/17/19 23:11,"341 Spruce St, Austin, TX 73301" +267649,Wired Headphones,1,11.99,10/19/19 19:49,"168 Forest St, San Francisco, CA 94016" +267650,USB-C Charging Cable,1,11.95,10/24/19 11:52,"263 6th St, Dallas, TX 75001" +267651,USB-C Charging Cable,1,11.95,10/02/19 12:18,"541 Adams St, Boston, MA 02215" +267652,AA Batteries (4-pack),1,3.84,10/04/19 13:36,"165 Jackson St, Seattle, WA 98101" +267653,Apple Airpods Headphones,1,150,10/27/19 15:36,"492 Elm St, San Francisco, CA 94016" +267654,AA Batteries (4-pack),1,3.84,10/30/19 11:49,"775 North St, Seattle, WA 98101" +267655,AAA Batteries (4-pack),1,2.99,10/16/19 10:32,"879 Center St, Boston, MA 02215" +267656,AAA Batteries (4-pack),1,2.99,10/16/19 10:48,"375 Pine St, Los Angeles, CA 90001" +267657,ThinkPad Laptop,1,999.99,10/17/19 14:59,"226 Pine St, Atlanta, GA 30301" +267658,USB-C Charging Cable,1,11.95,10/04/19 23:20,"355 Meadow St, Boston, MA 02215" +267659,Bose SoundSport Headphones,1,99.99,10/20/19 17:13,"227 6th St, San Francisco, CA 94016" +267660,Apple Airpods Headphones,1,150,10/03/19 15:52,"910 11th St, New York City, NY 10001" +267661,AAA Batteries (4-pack),1,2.99,10/06/19 14:31,"604 Ridge St, Portland, ME 04101" +267662,Macbook Pro Laptop,1,1700,10/22/19 11:26,"705 Jackson St, Seattle, WA 98101" +267663,AA Batteries (4-pack),2,3.84,10/02/19 16:52,"769 Madison St, San Francisco, CA 94016" +267664,Lightning Charging Cable,1,14.95,10/26/19 20:56,"538 8th St, New York City, NY 10001" +267665,Lightning Charging Cable,1,14.95,10/20/19 05:40,"541 8th St, San Francisco, CA 94016" +267666,AA Batteries (4-pack),1,3.84,10/02/19 22:13,"251 Spruce St, Portland, OR 97035" +267667,Flatscreen TV,1,300,10/22/19 20:23,"527 Jackson St, San Francisco, CA 94016" +267668,Wired Headphones,1,11.99,10/28/19 16:12,"420 11th St, Atlanta, GA 30301" +267669,Bose SoundSport Headphones,1,99.99,10/15/19 19:35,"294 Maple St, New York City, NY 10001" +267670,Lightning Charging Cable,1,14.95,10/06/19 19:43,"387 Cherry St, Boston, MA 02215" +267671,27in 4K Gaming Monitor,1,389.99,10/20/19 22:36,"494 River St, Austin, TX 73301" +267672,Bose SoundSport Headphones,1,99.99,10/18/19 14:46,"28 Cherry St, Seattle, WA 98101" +267673,Lightning Charging Cable,1,14.95,10/12/19 20:49,"756 9th St, Atlanta, GA 30301" +267674,Flatscreen TV,1,300,10/03/19 14:23,"591 Lakeview St, Portland, OR 97035" +267675,Bose SoundSport Headphones,1,99.99,10/31/19 17:45,"959 West St, New York City, NY 10001" +267676,USB-C Charging Cable,1,11.95,10/12/19 20:27,"521 12th St, New York City, NY 10001" +267677,AAA Batteries (4-pack),1,2.99,10/05/19 15:02,"457 8th St, Atlanta, GA 30301" +267678,Bose SoundSport Headphones,1,99.99,10/01/19 10:37,"910 9th St, Seattle, WA 98101" +267678,Bose SoundSport Headphones,1,99.99,10/01/19 10:37,"910 9th St, Seattle, WA 98101" +267679,Apple Airpods Headphones,1,150,10/19/19 18:20,"505 Pine St, San Francisco, CA 94016" +267679,Apple Airpods Headphones,1,150,10/19/19 18:20,"505 Pine St, San Francisco, CA 94016" +267680,USB-C Charging Cable,1,11.95,10/05/19 04:13,"230 Maple St, Atlanta, GA 30301" +267681,20in Monitor,1,109.99,10/09/19 20:09,"407 1st St, San Francisco, CA 94016" +267682,Apple Airpods Headphones,1,150,10/29/19 19:07,"190 Forest St, Boston, MA 02215" +267683,Macbook Pro Laptop,1,1700,10/15/19 19:38,"463 Maple St, Los Angeles, CA 90001" +267684,iPhone,1,700,10/16/19 13:33,"952 North St, New York City, NY 10001" +267685,iPhone,1,700,10/07/19 22:16,"432 Cedar St, Austin, TX 73301" +267686,Lightning Charging Cable,1,14.95,10/29/19 19:19,"805 Hickory St, Boston, MA 02215" +267687,Apple Airpods Headphones,1,150,10/03/19 21:00,"315 Madison St, New York City, NY 10001" +267688,AA Batteries (4-pack),2,3.84,10/12/19 12:33,"490 6th St, San Francisco, CA 94016" +267689,34in Ultrawide Monitor,1,379.99,10/08/19 06:07,"621 Park St, Austin, TX 73301" +267690,AA Batteries (4-pack),1,3.84,10/26/19 17:32,"352 Walnut St, Atlanta, GA 30301" +267691,Lightning Charging Cable,1,14.95,10/29/19 10:23,"147 6th St, Austin, TX 73301" +267692,Bose SoundSport Headphones,1,99.99,10/20/19 19:52,"256 Wilson St, Atlanta, GA 30301" +267693,34in Ultrawide Monitor,1,379.99,10/03/19 10:17,"50 4th St, Austin, TX 73301" +267694,Bose SoundSport Headphones,1,99.99,10/19/19 11:19,"594 1st St, San Francisco, CA 94016" +267695,USB-C Charging Cable,1,11.95,10/06/19 05:08,"197 North St, Los Angeles, CA 90001" +267696,AA Batteries (4-pack),1,3.84,10/12/19 19:35,"436 14th St, Portland, OR 97035" +267697,Wired Headphones,1,11.99,10/02/19 18:12,"647 Church St, Seattle, WA 98101" +267698,AAA Batteries (4-pack),4,2.99,10/31/19 19:08,"319 Lincoln St, Atlanta, GA 30301" +267699,Apple Airpods Headphones,1,150,10/19/19 00:45,"41 1st St, Portland, OR 97035" +267700,ThinkPad Laptop,1,999.99,10/24/19 15:14,"594 River St, San Francisco, CA 94016" +267701,USB-C Charging Cable,1,11.95,10/17/19 15:50,"680 Washington St, Boston, MA 02215" +267702,AA Batteries (4-pack),3,3.84,10/21/19 12:32,"701 Forest St, Austin, TX 73301" +267703,USB-C Charging Cable,1,11.95,10/23/19 15:30,"554 Wilson St, Los Angeles, CA 90001" +267704,Lightning Charging Cable,1,14.95,10/24/19 10:44,"449 Lincoln St, Los Angeles, CA 90001" +267705,34in Ultrawide Monitor,1,379.99,10/30/19 17:16,"195 Church St, New York City, NY 10001" +267706,Apple Airpods Headphones,1,150,10/22/19 10:05,"868 Maple St, Boston, MA 02215" +267707,Macbook Pro Laptop,1,1700,10/21/19 20:37,"528 North St, New York City, NY 10001" +267708,Apple Airpods Headphones,1,150,10/09/19 11:20,"193 4th St, Dallas, TX 75001" +267709,ThinkPad Laptop,1,999.99,10/12/19 16:54,"908 Center St, Portland, ME 04101" +267710,AAA Batteries (4-pack),1,2.99,10/19/19 20:30,"782 Park St, Portland, ME 04101" +267711,Lightning Charging Cable,1,14.95,10/08/19 20:19,"427 2nd St, Austin, TX 73301" +267712,AA Batteries (4-pack),1,3.84,10/28/19 22:15,"884 8th St, Los Angeles, CA 90001" +267713,Apple Airpods Headphones,1,150,10/19/19 20:27,"115 Willow St, Boston, MA 02215" +267714,34in Ultrawide Monitor,1,379.99,10/16/19 08:15,"554 North St, New York City, NY 10001" +267715,Bose SoundSport Headphones,1,99.99,10/16/19 15:45,"878 Madison St, Los Angeles, CA 90001" +267716,Wired Headphones,1,11.99,11/01/19 00:06,"966 Pine St, Seattle, WA 98101" +267717,Bose SoundSport Headphones,1,99.99,10/03/19 14:11,"771 2nd St, San Francisco, CA 94016" +267718,20in Monitor,1,109.99,10/09/19 18:50,"684 Main St, Los Angeles, CA 90001" +267719,Vareebadd Phone,1,400,10/26/19 01:03,"504 North St, Seattle, WA 98101" +267720,27in FHD Monitor,1,149.99,10/12/19 17:52,"902 Chestnut St, Dallas, TX 75001" +267721,iPhone,1,700,10/26/19 21:22,"919 River St, Los Angeles, CA 90001" +267722,27in FHD Monitor,1,149.99,10/20/19 23:26,"686 Main St, Dallas, TX 75001" +267723,Apple Airpods Headphones,1,150,10/31/19 22:24,"215 1st St, New York City, NY 10001" +267724,Wired Headphones,1,11.99,10/13/19 19:37,"91 8th St, New York City, NY 10001" +267725,USB-C Charging Cable,1,11.95,10/01/19 21:59,"591 Lakeview St, Los Angeles, CA 90001" +267726,Lightning Charging Cable,1,14.95,10/07/19 11:41,"667 Hickory St, San Francisco, CA 94016" +267727,ThinkPad Laptop,1,999.99,10/05/19 10:10,"659 Elm St, San Francisco, CA 94016" +267728,Lightning Charging Cable,1,14.95,10/12/19 18:16,"692 Hickory St, San Francisco, CA 94016" +267729,Macbook Pro Laptop,1,1700,10/13/19 20:25,"323 Lake St, New York City, NY 10001" +267730,Wired Headphones,1,11.99,10/11/19 12:44,"82 Chestnut St, Los Angeles, CA 90001" +267731,Apple Airpods Headphones,1,150,10/30/19 00:59,"651 Madison St, Seattle, WA 98101" +267732,Apple Airpods Headphones,1,150,10/20/19 16:20,"654 9th St, Los Angeles, CA 90001" +267733,AAA Batteries (4-pack),1,2.99,10/08/19 10:28,"819 Cedar St, New York City, NY 10001" +267734,AA Batteries (4-pack),1,3.84,10/08/19 18:26,"23 Park St, San Francisco, CA 94016" +267735,Bose SoundSport Headphones,1,99.99,10/10/19 10:34,"377 Walnut St, San Francisco, CA 94016" +267736,27in FHD Monitor,1,149.99,10/14/19 08:27,"934 8th St, Dallas, TX 75001" +267737,Apple Airpods Headphones,1,150,10/31/19 18:39,"782 Ridge St, San Francisco, CA 94016" +267738,Wired Headphones,1,11.99,10/28/19 23:33,"108 5th St, New York City, NY 10001" +267739,20in Monitor,1,109.99,10/18/19 12:26,"517 South St, Austin, TX 73301" +267740,Wired Headphones,2,11.99,10/02/19 16:49,"45 Dogwood St, San Francisco, CA 94016" +267741,34in Ultrawide Monitor,1,379.99,10/27/19 17:11,"892 Willow St, San Francisco, CA 94016" +267742,ThinkPad Laptop,1,999.99,10/04/19 18:27,"85 11th St, New York City, NY 10001" +267743,AA Batteries (4-pack),1,3.84,10/18/19 13:53,"831 Cherry St, New York City, NY 10001" +267744,USB-C Charging Cable,1,11.95,10/17/19 12:28,"117 10th St, Los Angeles, CA 90001" +267745,AAA Batteries (4-pack),2,2.99,10/05/19 20:45,"224 Walnut St, Boston, MA 02215" +267746,27in 4K Gaming Monitor,1,389.99,10/31/19 13:07,"30 Hickory St, San Francisco, CA 94016" +267747,AAA Batteries (4-pack),3,2.99,10/17/19 23:57,"957 12th St, Atlanta, GA 30301" +267748,Wired Headphones,1,11.99,10/13/19 22:46,"92 Jefferson St, Los Angeles, CA 90001" +267749,Lightning Charging Cable,1,14.95,10/12/19 14:16,"397 Meadow St, Portland, OR 97035" +267750,Bose SoundSport Headphones,1,99.99,10/10/19 10:05,"509 Hickory St, San Francisco, CA 94016" +267751,AAA Batteries (4-pack),1,2.99,10/06/19 12:35,"356 Lakeview St, New York City, NY 10001" +267752,USB-C Charging Cable,1,11.95,10/28/19 20:06,"958 12th St, Austin, TX 73301" +267753,Wired Headphones,1,11.99,10/01/19 12:02,"384 Dogwood St, Los Angeles, CA 90001" +267754,AAA Batteries (4-pack),1,2.99,10/11/19 19:53,"683 12th St, Portland, OR 97035" +267755,27in FHD Monitor,1,149.99,10/21/19 12:33,"410 Chestnut St, San Francisco, CA 94016" +267756,34in Ultrawide Monitor,1,379.99,10/21/19 18:23,"361 Forest St, New York City, NY 10001" +267757,Vareebadd Phone,1,400,10/24/19 14:32,"435 4th St, New York City, NY 10001" +267758,Apple Airpods Headphones,1,150,10/10/19 12:24,"560 9th St, Portland, OR 97035" +267759,Vareebadd Phone,1,400,10/29/19 17:32,"731 Sunset St, New York City, NY 10001" +267760,AA Batteries (4-pack),2,3.84,10/28/19 19:17,"231 11th St, New York City, NY 10001" +267761,Lightning Charging Cable,1,14.95,10/28/19 20:58,"379 11th St, Los Angeles, CA 90001" +267762,Google Phone,1,600,10/07/19 14:04,"713 Johnson St, Austin, TX 73301" +267763,Macbook Pro Laptop,1,1700,10/04/19 14:09,"80 Walnut St, New York City, NY 10001" +267764,Lightning Charging Cable,1,14.95,10/14/19 08:51,"173 7th St, Dallas, TX 75001" +267765,AAA Batteries (4-pack),2,2.99,10/03/19 19:26,"700 14th St, Los Angeles, CA 90001" +267766,Apple Airpods Headphones,1,150,10/22/19 16:57,"827 Park St, Boston, MA 02215" +267767,Google Phone,1,600,10/22/19 12:08,"772 14th St, Austin, TX 73301" +267768,27in FHD Monitor,1,149.99,10/16/19 13:34,"684 1st St, Portland, OR 97035" +267769,34in Ultrawide Monitor,1,379.99,10/31/19 16:42,"409 12th St, Los Angeles, CA 90001" +267770,Wired Headphones,1,11.99,10/10/19 13:27,"680 Willow St, Los Angeles, CA 90001" +267770,Bose SoundSport Headphones,1,99.99,10/10/19 13:27,"680 Willow St, Los Angeles, CA 90001" +267771,Lightning Charging Cable,1,14.95,10/03/19 18:02,"974 Highland St, San Francisco, CA 94016" +267772,34in Ultrawide Monitor,1,379.99,10/08/19 22:44,"321 Jackson St, Seattle, WA 98101" +267773,USB-C Charging Cable,2,11.95,10/29/19 16:57,"982 Dogwood St, San Francisco, CA 94016" +267774,LG Dryer,1,600.0,10/05/19 12:06,"849 Center St, Atlanta, GA 30301" +267775,AAA Batteries (4-pack),1,2.99,10/24/19 07:05,"442 Church St, Dallas, TX 75001" +267776,LG Dryer,1,600.0,10/07/19 13:03,"623 Washington St, San Francisco, CA 94016" +267777,Wired Headphones,1,11.99,10/19/19 11:10,"857 5th St, Atlanta, GA 30301" +267778,Google Phone,1,600,10/17/19 13:28,"958 Jefferson St, Los Angeles, CA 90001" +267779,Lightning Charging Cable,1,14.95,10/27/19 10:57,"286 12th St, New York City, NY 10001" +267780,Google Phone,1,600,10/25/19 08:42,"469 Church St, Austin, TX 73301" +267781,Lightning Charging Cable,1,14.95,10/06/19 02:17,"95 Sunset St, New York City, NY 10001" +267782,iPhone,1,700,10/04/19 17:48,"257 7th St, Atlanta, GA 30301" +267782,Lightning Charging Cable,1,14.95,10/04/19 17:48,"257 7th St, Atlanta, GA 30301" +267782,Wired Headphones,1,11.99,10/04/19 17:48,"257 7th St, Atlanta, GA 30301" +267783,Wired Headphones,1,11.99,10/30/19 17:46,"603 Elm St, San Francisco, CA 94016" +267784,Wired Headphones,1,11.99,10/20/19 18:14,"356 North St, San Francisco, CA 94016" +267785,Bose SoundSport Headphones,1,99.99,10/24/19 12:06,"679 1st St, San Francisco, CA 94016" +267786,Google Phone,1,600,10/01/19 07:30,"359 14th St, Los Angeles, CA 90001" +267787,AA Batteries (4-pack),1,3.84,10/26/19 08:02,"720 11th St, Los Angeles, CA 90001" +267788,AAA Batteries (4-pack),1,2.99,10/14/19 09:52,"267 Lakeview St, New York City, NY 10001" +267789,Google Phone,1,600,10/09/19 00:35,"411 Jefferson St, Atlanta, GA 30301" +267789,USB-C Charging Cable,1,11.95,10/09/19 00:35,"411 Jefferson St, Atlanta, GA 30301" +267790,AA Batteries (4-pack),1,3.84,10/06/19 14:54,"511 River St, Boston, MA 02215" +267791,Apple Airpods Headphones,1,150,10/29/19 12:58,"178 11th St, Atlanta, GA 30301" +267792,Google Phone,1,600,10/27/19 12:53,"800 Park St, Boston, MA 02215" +267792,USB-C Charging Cable,1,11.95,10/27/19 12:53,"800 Park St, Boston, MA 02215" +267793,USB-C Charging Cable,2,11.95,10/31/19 21:03,"374 Cedar St, Austin, TX 73301" +267794,Wired Headphones,1,11.99,10/10/19 20:11,"880 Hickory St, New York City, NY 10001" +267795,ThinkPad Laptop,1,999.99,10/02/19 13:30,"918 Lakeview St, Portland, OR 97035" +267796,Wired Headphones,2,11.99,10/31/19 23:33,"436 Ridge St, Atlanta, GA 30301" +267797,Bose SoundSport Headphones,1,99.99,10/13/19 09:24,"279 12th St, Boston, MA 02215" +267798,Wired Headphones,1,11.99,10/08/19 14:16,"113 Hickory St, Los Angeles, CA 90001" +267799,Lightning Charging Cable,1,14.95,10/30/19 00:05,"274 Hickory St, Seattle, WA 98101" +267800,Lightning Charging Cable,1,14.95,10/25/19 14:49,"612 Lake St, New York City, NY 10001" +267801,Bose SoundSport Headphones,1,99.99,10/05/19 22:38,"75 9th St, San Francisco, CA 94016" +267802,AAA Batteries (4-pack),1,2.99,10/15/19 11:55,"715 14th St, Boston, MA 02215" +267803,Lightning Charging Cable,2,14.95,10/15/19 22:39,"879 9th St, Los Angeles, CA 90001" +267804,Google Phone,1,600,10/10/19 18:02,"840 Maple St, Los Angeles, CA 90001" +267804,USB-C Charging Cable,1,11.95,10/10/19 18:02,"840 Maple St, Los Angeles, CA 90001" +267805,Lightning Charging Cable,1,14.95,10/02/19 09:25,"70 Main St, New York City, NY 10001" +267806,AA Batteries (4-pack),1,3.84,10/15/19 18:32,"555 4th St, Dallas, TX 75001" +267807,AAA Batteries (4-pack),3,2.99,10/21/19 17:09,"208 1st St, San Francisco, CA 94016" +267808,27in FHD Monitor,1,149.99,10/06/19 00:18,"974 Lincoln St, Atlanta, GA 30301" +267809,USB-C Charging Cable,1,11.95,10/05/19 15:16,"33 West St, San Francisco, CA 94016" +267810,27in FHD Monitor,1,149.99,10/12/19 18:57,"902 Forest St, Dallas, TX 75001" +267811,Bose SoundSport Headphones,1,99.99,10/21/19 17:46,"838 Highland St, Dallas, TX 75001" +267812,Apple Airpods Headphones,1,150,10/03/19 20:34,"901 Lake St, Seattle, WA 98101" +267813,27in 4K Gaming Monitor,1,389.99,10/31/19 17:35,"800 12th St, Boston, MA 02215" +267814,Apple Airpods Headphones,1,150,10/20/19 15:32,"151 Pine St, Dallas, TX 75001" +267815,AAA Batteries (4-pack),2,2.99,10/16/19 12:30,"846 North St, Dallas, TX 75001" +267816,AAA Batteries (4-pack),3,2.99,10/17/19 07:16,"421 Willow St, Los Angeles, CA 90001" +267817,AA Batteries (4-pack),1,3.84,10/12/19 12:45,"477 Sunset St, Boston, MA 02215" +267818,Wired Headphones,1,11.99,10/17/19 16:42,"44 Cherry St, Dallas, TX 75001" +267819,27in FHD Monitor,1,149.99,10/22/19 11:26,"321 River St, Los Angeles, CA 90001" +267820,AAA Batteries (4-pack),2,2.99,10/02/19 13:21,"949 Madison St, New York City, NY 10001" +267821,Lightning Charging Cable,1,14.95,10/03/19 01:04,"143 Center St, Boston, MA 02215" +267822,Apple Airpods Headphones,1,150,10/04/19 12:43,"765 Meadow St, Los Angeles, CA 90001" +267823,USB-C Charging Cable,2,11.95,10/05/19 15:21,"776 8th St, Boston, MA 02215" +267824,Bose SoundSport Headphones,1,99.99,10/14/19 20:59,"889 Adams St, Los Angeles, CA 90001" +267825,Wired Headphones,1,11.99,10/08/19 08:53,"63 Cedar St, Atlanta, GA 30301" +267826,AAA Batteries (4-pack),2,2.99,10/04/19 13:01,"625 6th St, Los Angeles, CA 90001" +267827,Lightning Charging Cable,1,14.95,10/10/19 02:50,"375 Lakeview St, Dallas, TX 75001" +267828,Macbook Pro Laptop,1,1700,10/27/19 18:34,"545 North St, San Francisco, CA 94016" +267829,Lightning Charging Cable,1,14.95,10/05/19 09:02,"687 Center St, New York City, NY 10001" +267830,Google Phone,1,600,10/08/19 15:32,"505 Park St, Boston, MA 02215" +267831,Google Phone,1,600,10/05/19 11:45,"292 Walnut St, Los Angeles, CA 90001" +267831,USB-C Charging Cable,1,11.95,10/05/19 11:45,"292 Walnut St, Los Angeles, CA 90001" +267831,Wired Headphones,1,11.99,10/05/19 11:45,"292 Walnut St, Los Angeles, CA 90001" +267832,Wired Headphones,1,11.99,10/11/19 17:36,"735 Madison St, Los Angeles, CA 90001" +267833,Bose SoundSport Headphones,1,99.99,10/07/19 00:46,"303 13th St, Austin, TX 73301" +267834,AAA Batteries (4-pack),2,2.99,10/13/19 07:17,"459 10th St, Atlanta, GA 30301" +267835,Apple Airpods Headphones,1,150,10/21/19 09:05,"901 Park St, Los Angeles, CA 90001" +267836,AAA Batteries (4-pack),2,2.99,10/25/19 19:27,"21 River St, New York City, NY 10001" +267837,Lightning Charging Cable,1,14.95,10/13/19 20:29,"983 Johnson St, Portland, OR 97035" +267838,34in Ultrawide Monitor,1,379.99,10/17/19 15:35,"567 Maple St, San Francisco, CA 94016" +267839,Apple Airpods Headphones,1,150,10/17/19 02:20,"984 11th St, Seattle, WA 98101" +267840,Lightning Charging Cable,1,14.95,10/26/19 23:48,"522 4th St, Atlanta, GA 30301" +267841,AA Batteries (4-pack),1,3.84,10/02/19 11:49,"316 Cherry St, San Francisco, CA 94016" +267842,34in Ultrawide Monitor,1,379.99,10/12/19 08:49,"501 Chestnut St, San Francisco, CA 94016" +267843,Wired Headphones,1,11.99,10/22/19 15:18,"348 Highland St, San Francisco, CA 94016" +267844,Apple Airpods Headphones,1,150,10/10/19 20:04,"346 Sunset St, San Francisco, CA 94016" +267845,iPhone,1,700,10/03/19 17:04,"30 13th St, New York City, NY 10001" +267846,Wired Headphones,1,11.99,10/18/19 11:52,"654 Hill St, San Francisco, CA 94016" +267847,Macbook Pro Laptop,1,1700,10/27/19 23:36,"990 2nd St, Atlanta, GA 30301" +267848,AA Batteries (4-pack),3,3.84,10/01/19 19:38,"537 8th St, Atlanta, GA 30301" +267849,AAA Batteries (4-pack),1,2.99,10/03/19 15:34,"842 Adams St, Los Angeles, CA 90001" +267850,USB-C Charging Cable,1,11.95,10/18/19 09:02,"434 11th St, Boston, MA 02215" +267851,USB-C Charging Cable,1,11.95,10/24/19 18:53,"185 1st St, San Francisco, CA 94016" +267852,27in 4K Gaming Monitor,1,389.99,10/05/19 18:19,"99 Johnson St, New York City, NY 10001" +267853,USB-C Charging Cable,1,11.95,10/23/19 22:32,"802 Park St, San Francisco, CA 94016" +267854,20in Monitor,1,109.99,10/08/19 11:17,"232 10th St, Boston, MA 02215" +267855,USB-C Charging Cable,1,11.95,10/21/19 17:22,"398 14th St, San Francisco, CA 94016" +267856,Lightning Charging Cable,1,14.95,10/03/19 10:00,"32 Forest St, Dallas, TX 75001" +267857,27in FHD Monitor,1,149.99,10/08/19 15:15,"520 8th St, Dallas, TX 75001" +267858,AAA Batteries (4-pack),1,2.99,10/06/19 14:24,"761 Willow St, Los Angeles, CA 90001" +267859,AAA Batteries (4-pack),1,2.99,10/31/19 09:23,"427 Hickory St, New York City, NY 10001" +267860,USB-C Charging Cable,1,11.95,10/05/19 22:51,"790 Hickory St, San Francisco, CA 94016" +267861,AAA Batteries (4-pack),1,2.99,10/25/19 21:10,"734 6th St, Seattle, WA 98101" +267862,AA Batteries (4-pack),1,3.84,10/17/19 10:41,"857 Hickory St, Boston, MA 02215" +267863,Google Phone,1,600,10/10/19 06:03,"773 Chestnut St, Los Angeles, CA 90001" +267864,Flatscreen TV,1,300,10/28/19 17:32,"127 Johnson St, Seattle, WA 98101" +267865,AAA Batteries (4-pack),1,2.99,10/22/19 15:22,"362 North St, New York City, NY 10001" +267866,iPhone,1,700,10/05/19 11:05,"837 Johnson St, San Francisco, CA 94016" +267867,ThinkPad Laptop,1,999.99,10/20/19 05:42,"324 Hickory St, Seattle, WA 98101" +267868,Lightning Charging Cable,1,14.95,10/03/19 00:09,"908 Washington St, Seattle, WA 98101" +267869,AAA Batteries (4-pack),1,2.99,10/13/19 18:16,"522 Hickory St, San Francisco, CA 94016" +267870,USB-C Charging Cable,1,11.95,10/02/19 22:29,"528 Main St, Portland, OR 97035" +267871,AA Batteries (4-pack),1,3.84,10/07/19 06:31,"615 Madison St, San Francisco, CA 94016" +267872,AAA Batteries (4-pack),1,2.99,10/18/19 00:30,"83 Forest St, Boston, MA 02215" +267873,Lightning Charging Cable,1,14.95,10/19/19 21:22,"21 Lakeview St, New York City, NY 10001" +267874,Macbook Pro Laptop,1,1700,10/01/19 16:51,"622 4th St, Dallas, TX 75001" +267875,AAA Batteries (4-pack),1,2.99,10/20/19 16:57,"290 Willow St, New York City, NY 10001" +267876,LG Dryer,1,600.0,10/25/19 11:21,"977 Main St, Los Angeles, CA 90001" +267877,Lightning Charging Cable,1,14.95,10/24/19 14:07,"213 Madison St, San Francisco, CA 94016" +267878,27in 4K Gaming Monitor,1,389.99,10/12/19 18:44,"215 River St, Boston, MA 02215" +267879,AAA Batteries (4-pack),2,2.99,10/23/19 14:57,"719 Lake St, Los Angeles, CA 90001" +267880,Google Phone,1,600,10/12/19 14:42,"166 Center St, Seattle, WA 98101" +267881,AA Batteries (4-pack),1,3.84,10/13/19 13:36,"169 8th St, Los Angeles, CA 90001" +267882,Bose SoundSport Headphones,1,99.99,10/06/19 09:59,"263 Cedar St, Los Angeles, CA 90001" +267883,Bose SoundSport Headphones,1,99.99,10/02/19 00:17,"903 Cherry St, Los Angeles, CA 90001" +267884,AAA Batteries (4-pack),1,2.99,10/23/19 08:47,"3 14th St, Los Angeles, CA 90001" +267885,Lightning Charging Cable,1,14.95,10/02/19 14:46,"671 Spruce St, Los Angeles, CA 90001" +267886,USB-C Charging Cable,1,11.95,10/07/19 20:09,"196 Elm St, Dallas, TX 75001" +267887,Apple Airpods Headphones,1,150,10/26/19 17:01,"479 Chestnut St, San Francisco, CA 94016" +267888,27in FHD Monitor,1,149.99,10/12/19 06:51,"898 Lakeview St, Boston, MA 02215" +267889,Macbook Pro Laptop,1,1700,10/07/19 23:51,"834 8th St, Austin, TX 73301" +267890,Wired Headphones,1,11.99,10/12/19 20:03,"450 Hill St, Los Angeles, CA 90001" +267891,iPhone,1,700,10/31/19 13:14,"376 Washington St, Boston, MA 02215" +267892,27in FHD Monitor,1,149.99,10/14/19 16:11,"41 Spruce St, Atlanta, GA 30301" +267892,AAA Batteries (4-pack),1,2.99,10/14/19 16:11,"41 Spruce St, Atlanta, GA 30301" +267893,USB-C Charging Cable,1,11.95,10/22/19 14:49,"615 6th St, Atlanta, GA 30301" +267894,iPhone,1,700,10/30/19 09:09,"84 11th St, San Francisco, CA 94016" +267894,Wired Headphones,1,11.99,10/30/19 09:09,"84 11th St, San Francisco, CA 94016" +267895,Lightning Charging Cable,1,14.95,10/18/19 09:14,"353 6th St, Dallas, TX 75001" +267896,Lightning Charging Cable,1,14.95,10/20/19 12:22,"263 Johnson St, New York City, NY 10001" +267897,AA Batteries (4-pack),1,3.84,10/08/19 15:06,"576 4th St, San Francisco, CA 94016" +,,,,, +267898,Flatscreen TV,1,300,10/28/19 07:49,"234 Washington St, Dallas, TX 75001" +267899,USB-C Charging Cable,1,11.95,10/15/19 19:09,"774 13th St, Boston, MA 02215" +267900,AAA Batteries (4-pack),2,2.99,10/23/19 17:03,"593 Johnson St, Los Angeles, CA 90001" +267901,AAA Batteries (4-pack),1,2.99,10/18/19 22:50,"648 2nd St, Dallas, TX 75001" +267902,27in FHD Monitor,1,149.99,10/29/19 11:51,"482 South St, Los Angeles, CA 90001" +267903,LG Washing Machine,1,600.0,10/15/19 12:10,"15 7th St, Boston, MA 02215" +267904,20in Monitor,1,109.99,10/01/19 08:31,"45 5th St, San Francisco, CA 94016" +267905,Lightning Charging Cable,1,14.95,10/31/19 22:29,"249 Chestnut St, San Francisco, CA 94016" +267906,AA Batteries (4-pack),1,3.84,10/27/19 19:40,"540 Jefferson St, Los Angeles, CA 90001" +267907,Apple Airpods Headphones,1,150,10/08/19 10:28,"553 Church St, Boston, MA 02215" +267908,Wired Headphones,1,11.99,10/21/19 05:34,"786 Walnut St, Boston, MA 02215" +267909,Google Phone,1,600,10/27/19 21:32,"326 Willow St, New York City, NY 10001" +267910,Apple Airpods Headphones,1,150,10/01/19 09:00,"130 Dogwood St, Los Angeles, CA 90001" +267911,LG Dryer,1,600.0,10/20/19 18:57,"566 Ridge St, Dallas, TX 75001" +267912,20in Monitor,1,109.99,10/14/19 21:34,"240 Highland St, Los Angeles, CA 90001" +267913,Apple Airpods Headphones,1,150,10/11/19 18:03,"890 12th St, Atlanta, GA 30301" +267914,Macbook Pro Laptop,1,1700,10/08/19 06:46,"345 Dogwood St, Portland, OR 97035" +267915,Flatscreen TV,1,300,10/05/19 19:36,"312 Hickory St, Los Angeles, CA 90001" +267916,Wired Headphones,1,11.99,10/06/19 13:11,"970 Park St, Los Angeles, CA 90001" +267917,Lightning Charging Cable,1,14.95,10/13/19 18:45,"783 Chestnut St, Dallas, TX 75001" +267918,Bose SoundSport Headphones,1,99.99,10/07/19 08:32,"627 Highland St, Atlanta, GA 30301" +267919,Vareebadd Phone,1,400,10/25/19 19:55,"645 Wilson St, San Francisco, CA 94016" +267920,20in Monitor,1,109.99,10/19/19 13:18,"555 Wilson St, New York City, NY 10001" +267921,AAA Batteries (4-pack),2,2.99,10/24/19 15:02,"737 Pine St, Portland, OR 97035" +267922,Apple Airpods Headphones,1,150,10/18/19 20:03,"79 9th St, New York City, NY 10001" +267923,27in FHD Monitor,1,149.99,10/12/19 18:50,"801 2nd St, Portland, OR 97035" +267924,34in Ultrawide Monitor,1,379.99,10/07/19 11:56,"797 South St, Los Angeles, CA 90001" +267925,AAA Batteries (4-pack),1,2.99,10/14/19 13:22,"13 Willow St, Boston, MA 02215" +267926,Wired Headphones,2,11.99,10/07/19 12:53,"841 Maple St, San Francisco, CA 94016" +267927,34in Ultrawide Monitor,1,379.99,10/13/19 16:39,"444 Jackson St, Los Angeles, CA 90001" +267928,AA Batteries (4-pack),1,3.84,10/09/19 19:19,"809 Main St, Atlanta, GA 30301" +267929,Bose SoundSport Headphones,1,99.99,10/16/19 07:46,"792 Jackson St, Atlanta, GA 30301" +267930,AA Batteries (4-pack),1,3.84,10/15/19 00:19,"987 Lake St, San Francisco, CA 94016" +267931,Flatscreen TV,1,300,10/06/19 15:25,"549 Hickory St, San Francisco, CA 94016" +267932,USB-C Charging Cable,1,11.95,10/27/19 07:40,"604 Lincoln St, San Francisco, CA 94016" +267933,iPhone,1,700,10/05/19 18:47,"999 West St, Los Angeles, CA 90001" +267934,USB-C Charging Cable,1,11.95,10/21/19 12:15,"103 8th St, San Francisco, CA 94016" +267935,LG Dryer,1,600.0,10/14/19 10:57,"890 Hill St, New York City, NY 10001" +267936,AAA Batteries (4-pack),3,2.99,10/09/19 18:28,"101 Washington St, San Francisco, CA 94016" +267937,Bose SoundSport Headphones,1,99.99,10/17/19 10:03,"65 Church St, San Francisco, CA 94016" +267938,Apple Airpods Headphones,1,150,10/22/19 22:55,"286 8th St, San Francisco, CA 94016" +267939,27in 4K Gaming Monitor,1,389.99,10/06/19 16:15,"366 Cedar St, Atlanta, GA 30301" +267940,27in FHD Monitor,1,149.99,10/31/19 11:44,"221 Wilson St, San Francisco, CA 94016" +267941,Lightning Charging Cable,2,14.95,10/19/19 16:02,"206 Chestnut St, Dallas, TX 75001" +267942,Wired Headphones,1,11.99,10/31/19 11:27,"845 Walnut St, Boston, MA 02215" +267943,USB-C Charging Cable,1,11.95,10/29/19 23:05,"196 Johnson St, San Francisco, CA 94016" +267944,Apple Airpods Headphones,1,150,10/13/19 13:17,"182 Ridge St, Dallas, TX 75001" +267945,27in FHD Monitor,1,149.99,10/15/19 11:39,"758 10th St, New York City, NY 10001" +267946,Lightning Charging Cable,1,14.95,10/02/19 10:56,"557 Spruce St, Atlanta, GA 30301" +267947,AAA Batteries (4-pack),1,2.99,10/10/19 18:21,"563 South St, Los Angeles, CA 90001" +267948,USB-C Charging Cable,1,11.95,10/05/19 16:50,"687 6th St, San Francisco, CA 94016" +267949,USB-C Charging Cable,2,11.95,10/11/19 19:40,"43 Cherry St, Atlanta, GA 30301" +267950,AAA Batteries (4-pack),2,2.99,10/25/19 16:23,"241 Highland St, New York City, NY 10001" +267951,27in 4K Gaming Monitor,1,389.99,10/04/19 19:52,"459 West St, Dallas, TX 75001" +267952,Apple Airpods Headphones,1,150,10/14/19 12:53,"597 4th St, Dallas, TX 75001" +267953,AA Batteries (4-pack),2,3.84,10/07/19 21:27,"633 5th St, New York City, NY 10001" +267954,USB-C Charging Cable,1,11.95,10/07/19 17:07,"607 Main St, Dallas, TX 75001" +267955,27in FHD Monitor,1,149.99,10/16/19 20:27,"847 Highland St, New York City, NY 10001" +267956,Wired Headphones,1,11.99,10/19/19 21:01,"701 Chestnut St, San Francisco, CA 94016" +267957,27in 4K Gaming Monitor,1,389.99,10/27/19 16:17,"309 14th St, San Francisco, CA 94016" +267957,Wired Headphones,1,11.99,10/27/19 16:17,"309 14th St, San Francisco, CA 94016" +267958,Bose SoundSport Headphones,1,99.99,10/29/19 17:17,"862 13th St, Los Angeles, CA 90001" +267959,AAA Batteries (4-pack),1,2.99,10/19/19 21:54,"229 14th St, Los Angeles, CA 90001" +267960,LG Dryer,1,600.0,10/26/19 12:43,"860 Highland St, San Francisco, CA 94016" +267961,Google Phone,1,600,10/17/19 10:57,"423 Highland St, Boston, MA 02215" +267961,Wired Headphones,1,11.99,10/17/19 10:57,"423 Highland St, Boston, MA 02215" +267962,LG Dryer,1,600.0,10/26/19 20:40,"398 Church St, Seattle, WA 98101" +267963,Flatscreen TV,1,300,10/27/19 10:21,"454 7th St, Seattle, WA 98101" +267963,Lightning Charging Cable,1,14.95,10/27/19 10:21,"454 7th St, Seattle, WA 98101" +267964,Bose SoundSport Headphones,1,99.99,10/07/19 18:49,"103 River St, Seattle, WA 98101" +267965,Lightning Charging Cable,1,14.95,10/25/19 08:53,"474 Madison St, San Francisco, CA 94016" +267966,AAA Batteries (4-pack),3,2.99,10/15/19 19:05,"565 5th St, Seattle, WA 98101" +267966,AA Batteries (4-pack),1,3.84,10/15/19 19:05,"565 5th St, Seattle, WA 98101" +267967,27in FHD Monitor,1,149.99,10/27/19 22:31,"191 Main St, Dallas, TX 75001" +267968,Apple Airpods Headphones,1,150,10/19/19 16:48,"160 13th St, Los Angeles, CA 90001" +267969,AAA Batteries (4-pack),1,2.99,10/21/19 11:14,"404 Madison St, Atlanta, GA 30301" +267970,AA Batteries (4-pack),1,3.84,10/22/19 14:50,"973 Willow St, Boston, MA 02215" +267971,AAA Batteries (4-pack),1,2.99,10/06/19 21:13,"364 Highland St, New York City, NY 10001" +267972,Apple Airpods Headphones,1,150,10/19/19 16:21,"603 1st St, San Francisco, CA 94016" +267973,Flatscreen TV,1,300,10/01/19 16:32,"861 Adams St, San Francisco, CA 94016" +267974,Wired Headphones,1,11.99,10/30/19 19:16,"322 Church St, Seattle, WA 98101" +267975,Flatscreen TV,1,300,10/28/19 18:10,"838 Johnson St, Austin, TX 73301" +267976,ThinkPad Laptop,1,999.99,10/12/19 12:04,"755 Elm St, San Francisco, CA 94016" +267977,Lightning Charging Cable,1,14.95,10/28/19 18:43,"844 Ridge St, San Francisco, CA 94016" +267978,USB-C Charging Cable,1,11.95,10/23/19 21:00,"247 Johnson St, New York City, NY 10001" +267979,34in Ultrawide Monitor,1,379.99,10/10/19 19:38,"919 River St, New York City, NY 10001" +267980,Apple Airpods Headphones,1,150,10/19/19 10:54,"494 Cedar St, Atlanta, GA 30301" +267981,Google Phone,1,600,10/10/19 13:46,"356 8th St, New York City, NY 10001" +267982,27in 4K Gaming Monitor,1,389.99,10/16/19 09:55,"332 Johnson St, New York City, NY 10001" +267983,USB-C Charging Cable,1,11.95,10/11/19 18:56,"793 North St, Boston, MA 02215" +267984,iPhone,1,700,10/17/19 19:09,"819 Meadow St, Los Angeles, CA 90001" +267985,Lightning Charging Cable,1,14.95,10/05/19 07:02,"626 Pine St, San Francisco, CA 94016" +267986,27in FHD Monitor,1,149.99,10/27/19 08:41,"805 Adams St, Austin, TX 73301" +267987,Macbook Pro Laptop,1,1700,10/03/19 08:46,"204 Elm St, Dallas, TX 75001" +267988,USB-C Charging Cable,1,11.95,10/16/19 18:37,"346 Elm St, Boston, MA 02215" +267989,AA Batteries (4-pack),1,3.84,10/05/19 21:15,"379 Meadow St, Dallas, TX 75001" +267990,Apple Airpods Headphones,1,150,10/08/19 17:05,"577 Forest St, Portland, ME 04101" +267991,AAA Batteries (4-pack),1,2.99,10/05/19 19:03,"389 8th St, San Francisco, CA 94016" +267992,AA Batteries (4-pack),1,3.84,10/18/19 16:26,"558 Lincoln St, San Francisco, CA 94016" +267993,AA Batteries (4-pack),1,3.84,10/11/19 00:27,"645 Cherry St, San Francisco, CA 94016" +267994,AA Batteries (4-pack),1,3.84,10/29/19 22:21,"781 4th St, Los Angeles, CA 90001" +267995,Wired Headphones,1,11.99,10/21/19 20:33,"583 Adams St, Dallas, TX 75001" +267996,Google Phone,1,600,10/22/19 10:55,"779 13th St, San Francisco, CA 94016" +267997,27in FHD Monitor,1,149.99,10/24/19 21:19,"664 12th St, Seattle, WA 98101" +267998,iPhone,1,700,10/02/19 09:27,"220 Jackson St, Atlanta, GA 30301" +267999,AAA Batteries (4-pack),1,2.99,10/16/19 10:32,"849 Hill St, San Francisco, CA 94016" +268000,27in FHD Monitor,1,149.99,10/24/19 19:26,"25 Chestnut St, Atlanta, GA 30301" +268001,Google Phone,1,600,10/04/19 23:21,"782 Pine St, Dallas, TX 75001" +268002,Apple Airpods Headphones,1,150,10/25/19 11:25,"852 Cherry St, San Francisco, CA 94016" +268003,AA Batteries (4-pack),2,3.84,10/14/19 11:27,"577 8th St, San Francisco, CA 94016" +268004,Bose SoundSport Headphones,1,99.99,10/28/19 14:57,"694 Highland St, Seattle, WA 98101" +268005,AAA Batteries (4-pack),3,2.99,10/09/19 09:26,"555 Jackson St, Atlanta, GA 30301" +268006,USB-C Charging Cable,1,11.95,10/31/19 23:13,"906 10th St, San Francisco, CA 94016" +268007,Wired Headphones,1,11.99,10/02/19 13:12,"535 Highland St, Portland, ME 04101" +268008,USB-C Charging Cable,1,11.95,10/11/19 00:59,"106 4th St, Boston, MA 02215" +268009,Apple Airpods Headphones,1,150,10/15/19 10:37,"8 Madison St, San Francisco, CA 94016" +268010,Macbook Pro Laptop,1,1700,10/17/19 06:11,"864 14th St, New York City, NY 10001" +268011,AAA Batteries (4-pack),1,2.99,10/31/19 09:45,"215 Elm St, Atlanta, GA 30301" +268012,Wired Headphones,1,11.99,10/16/19 20:08,"843 Forest St, Atlanta, GA 30301" +268013,ThinkPad Laptop,1,999.99,10/01/19 12:07,"562 Wilson St, Los Angeles, CA 90001" +268014,ThinkPad Laptop,1,999.99,10/28/19 23:14,"568 Jackson St, San Francisco, CA 94016" +268015,AA Batteries (4-pack),2,3.84,10/29/19 14:23,"445 Church St, Portland, OR 97035" +268016,AAA Batteries (4-pack),1,2.99,10/25/19 16:41,"296 North St, Austin, TX 73301" +268017,AA Batteries (4-pack),1,3.84,10/15/19 12:58,"470 Elm St, San Francisco, CA 94016" +268018,Wired Headphones,1,11.99,10/20/19 11:46,"800 Lake St, Los Angeles, CA 90001" +268019,AA Batteries (4-pack),3,3.84,10/11/19 17:30,"204 4th St, New York City, NY 10001" +268020,Google Phone,1,600,10/11/19 06:44,"801 Lakeview St, Los Angeles, CA 90001" +268021,AA Batteries (4-pack),1,3.84,10/18/19 23:55,"76 Lakeview St, San Francisco, CA 94016" +268022,AA Batteries (4-pack),1,3.84,10/24/19 09:09,"343 Cherry St, Boston, MA 02215" +268023,Flatscreen TV,1,300,10/17/19 10:22,"111 13th St, San Francisco, CA 94016" +268024,Apple Airpods Headphones,1,150,10/08/19 10:43,"436 1st St, Dallas, TX 75001" +268025,Lightning Charging Cable,1,14.95,10/18/19 18:55,"385 Church St, Atlanta, GA 30301" +268026,Bose SoundSport Headphones,2,99.99,10/10/19 11:46,"559 Adams St, Seattle, WA 98101" +268027,Apple Airpods Headphones,1,150,10/31/19 13:17,"594 12th St, San Francisco, CA 94016" +268028,AA Batteries (4-pack),1,3.84,10/10/19 00:06,"667 Elm St, San Francisco, CA 94016" +268029,Lightning Charging Cable,1,14.95,10/28/19 06:19,"722 Hill St, San Francisco, CA 94016" +268030,USB-C Charging Cable,1,11.95,10/17/19 12:58,"946 Spruce St, Dallas, TX 75001" +268031,Wired Headphones,2,11.99,10/19/19 22:18,"829 Highland St, San Francisco, CA 94016" +268032,27in 4K Gaming Monitor,1,389.99,10/07/19 22:07,"861 9th St, Dallas, TX 75001" +268033,AAA Batteries (4-pack),1,2.99,10/11/19 21:32,"587 Jackson St, Boston, MA 02215" +268034,Wired Headphones,1,11.99,10/25/19 18:56,"784 Washington St, San Francisco, CA 94016" +268035,AA Batteries (4-pack),1,3.84,10/06/19 20:55,"844 Willow St, Dallas, TX 75001" +268035,USB-C Charging Cable,1,11.95,10/06/19 20:55,"844 Willow St, Dallas, TX 75001" +268036,Bose SoundSport Headphones,1,99.99,10/31/19 10:22,"588 Lincoln St, Seattle, WA 98101" +268037,USB-C Charging Cable,1,11.95,10/19/19 19:31,"336 13th St, Atlanta, GA 30301" +268038,Flatscreen TV,1,300,10/13/19 09:50,"889 Lake St, Los Angeles, CA 90001" +268039,34in Ultrawide Monitor,1,379.99,10/27/19 00:37,"936 5th St, Los Angeles, CA 90001" +268040,iPhone,1,700,10/06/19 11:44,"156 Hickory St, New York City, NY 10001" +268041,Lightning Charging Cable,1,14.95,10/02/19 17:35,"429 Ridge St, Atlanta, GA 30301" +268042,Wired Headphones,1,11.99,10/11/19 00:23,"595 Ridge St, Boston, MA 02215" +268043,27in FHD Monitor,1,149.99,10/26/19 12:34,"925 Center St, Los Angeles, CA 90001" +268044,Lightning Charging Cable,1,14.95,10/16/19 20:39,"524 Cedar St, New York City, NY 10001" +268045,Bose SoundSport Headphones,1,99.99,10/05/19 14:47,"470 Jackson St, Dallas, TX 75001" +268046,ThinkPad Laptop,1,999.99,10/03/19 15:33,"679 Cedar St, Austin, TX 73301" +268047,USB-C Charging Cable,1,11.95,10/24/19 21:16,"835 1st St, Los Angeles, CA 90001" +268048,Wired Headphones,2,11.99,10/14/19 14:00,"346 Adams St, Boston, MA 02215" +268049,AA Batteries (4-pack),1,3.84,10/09/19 16:56,"836 Hickory St, San Francisco, CA 94016" +268050,Bose SoundSport Headphones,1,99.99,10/28/19 20:35,"434 6th St, New York City, NY 10001" +268051,USB-C Charging Cable,2,11.95,10/30/19 19:42,"734 Forest St, San Francisco, CA 94016" +268052,USB-C Charging Cable,1,11.95,10/30/19 12:26,"913 Hickory St, New York City, NY 10001" +268053,Vareebadd Phone,1,400,10/28/19 20:00,"258 5th St, San Francisco, CA 94016" +268054,Google Phone,1,600,10/21/19 21:47,"878 Wilson St, Dallas, TX 75001" +268055,AAA Batteries (4-pack),1,2.99,10/02/19 16:50,"113 Sunset St, New York City, NY 10001" +268056,Bose SoundSport Headphones,1,99.99,10/05/19 17:54,"99 14th St, Los Angeles, CA 90001" +268057,USB-C Charging Cable,2,11.95,10/18/19 13:43,"712 Chestnut St, San Francisco, CA 94016" +268058,AA Batteries (4-pack),1,3.84,10/25/19 15:12,"829 Chestnut St, Seattle, WA 98101" +268059,AA Batteries (4-pack),1,3.84,10/26/19 16:51,"879 10th St, San Francisco, CA 94016" +268060,Apple Airpods Headphones,1,150,10/21/19 13:45,"344 Dogwood St, Boston, MA 02215" +268061,Wired Headphones,1,11.99,10/13/19 08:31,"373 Pine St, Austin, TX 73301" +268062,USB-C Charging Cable,1,11.95,10/13/19 18:23,"155 Center St, San Francisco, CA 94016" +268063,AAA Batteries (4-pack),2,2.99,10/21/19 15:29,"343 Sunset St, San Francisco, CA 94016" +268064,Lightning Charging Cable,2,14.95,10/07/19 19:16,"839 Adams St, Atlanta, GA 30301" +268065,Bose SoundSport Headphones,1,99.99,10/06/19 23:06,"113 Jefferson St, Los Angeles, CA 90001" +268066,Apple Airpods Headphones,1,150,10/03/19 05:13,"2 11th St, Boston, MA 02215" +268067,Wired Headphones,2,11.99,10/24/19 20:18,"117 13th St, Seattle, WA 98101" +268068,Apple Airpods Headphones,1,150,10/30/19 18:29,"362 14th St, San Francisco, CA 94016" +268069,AAA Batteries (4-pack),3,2.99,10/06/19 09:35,"527 Jefferson St, Portland, OR 97035" +268070,USB-C Charging Cable,2,11.95,10/25/19 13:01,"551 10th St, San Francisco, CA 94016" +268071,Macbook Pro Laptop,1,1700,10/08/19 19:12,"613 Main St, Los Angeles, CA 90001" +268072,USB-C Charging Cable,1,11.95,10/23/19 00:37,"100 Church St, New York City, NY 10001" +268073,27in FHD Monitor,1,149.99,10/05/19 00:09,"407 Wilson St, New York City, NY 10001" +268074,Lightning Charging Cable,1,14.95,10/28/19 08:51,"508 Ridge St, Los Angeles, CA 90001" +268075,Lightning Charging Cable,1,14.95,10/29/19 20:58,"541 Pine St, Austin, TX 73301" +268076,AAA Batteries (4-pack),3,2.99,10/08/19 20:12,"15 8th St, Portland, ME 04101" +268077,AA Batteries (4-pack),3,3.84,10/03/19 08:25,"649 Hill St, New York City, NY 10001" +268078,Wired Headphones,1,11.99,10/16/19 11:17,"962 Highland St, San Francisco, CA 94016" +268079,AA Batteries (4-pack),1,3.84,10/31/19 16:20,"942 Washington St, Boston, MA 02215" +268080,AAA Batteries (4-pack),2,2.99,10/31/19 12:53,"222 Dogwood St, San Francisco, CA 94016" +268081,AAA Batteries (4-pack),2,2.99,10/13/19 18:23,"884 2nd St, Dallas, TX 75001" +268082,Wired Headphones,1,11.99,10/05/19 15:30,"706 Spruce St, Dallas, TX 75001" +268083,Flatscreen TV,1,300,10/30/19 16:48,"327 West St, Boston, MA 02215" +268084,Wired Headphones,1,11.99,10/27/19 17:47,"409 Lakeview St, New York City, NY 10001" +268085,27in FHD Monitor,1,149.99,10/26/19 08:40,"315 Church St, Boston, MA 02215" +268086,AAA Batteries (4-pack),1,2.99,10/02/19 11:08,"935 Forest St, Atlanta, GA 30301" +268087,USB-C Charging Cable,2,11.95,10/03/19 20:21,"421 Dogwood St, Boston, MA 02215" +268088,USB-C Charging Cable,1,11.95,10/04/19 10:28,"487 7th St, Boston, MA 02215" +268089,27in FHD Monitor,1,149.99,10/24/19 21:31,"583 Chestnut St, Los Angeles, CA 90001" +268090,USB-C Charging Cable,1,11.95,10/17/19 09:08,"489 Highland St, New York City, NY 10001" +268091,iPhone,1,700,10/02/19 06:36,"540 12th St, San Francisco, CA 94016" +268092,Wired Headphones,1,11.99,10/02/19 16:42,"862 10th St, Austin, TX 73301" +268093,USB-C Charging Cable,1,11.95,10/17/19 18:28,"839 Main St, Los Angeles, CA 90001" +268094,Bose SoundSport Headphones,1,99.99,10/22/19 19:58,"555 North St, Los Angeles, CA 90001" +268095,USB-C Charging Cable,1,11.95,10/27/19 13:00,"999 Chestnut St, Boston, MA 02215" +268096,Lightning Charging Cable,1,14.95,10/05/19 01:46,"168 Park St, Dallas, TX 75001" +268097,27in FHD Monitor,1,149.99,10/26/19 17:48,"854 West St, New York City, NY 10001" +268098,USB-C Charging Cable,1,11.95,10/14/19 15:21,"722 Wilson St, Dallas, TX 75001" +268099,27in FHD Monitor,1,149.99,10/31/19 21:37,"309 Maple St, Atlanta, GA 30301" +268100,20in Monitor,1,109.99,10/14/19 15:31,"326 12th St, Boston, MA 02215" +268101,Macbook Pro Laptop,1,1700,10/23/19 12:01,"475 West St, Seattle, WA 98101" +268102,ThinkPad Laptop,1,999.99,10/29/19 02:34,"763 2nd St, Seattle, WA 98101" +268103,Apple Airpods Headphones,1,150,10/11/19 22:46,"348 Church St, San Francisco, CA 94016" +268104,AA Batteries (4-pack),1,3.84,10/03/19 17:25,"174 Jefferson St, Austin, TX 73301" +268105,Lightning Charging Cable,1,14.95,10/19/19 20:03,"5 14th St, San Francisco, CA 94016" +268106,Wired Headphones,1,11.99,10/22/19 17:57,"855 4th St, Portland, OR 97035" +268107,AAA Batteries (4-pack),2,2.99,10/21/19 16:09,"654 Cedar St, Los Angeles, CA 90001" +268108,AAA Batteries (4-pack),1,2.99,10/04/19 12:37,"19 8th St, Boston, MA 02215" +268109,27in 4K Gaming Monitor,1,389.99,10/04/19 20:40,"445 River St, San Francisco, CA 94016" +268110,27in 4K Gaming Monitor,1,389.99,10/21/19 10:00,"374 Hill St, New York City, NY 10001" +268111,27in FHD Monitor,1,149.99,10/24/19 22:51,"187 6th St, San Francisco, CA 94016" +268112,27in 4K Gaming Monitor,1,389.99,10/03/19 11:51,"738 Madison St, San Francisco, CA 94016" +268113,Apple Airpods Headphones,1,150,10/23/19 09:33,"857 Ridge St, Portland, OR 97035" +268114,Wired Headphones,1,11.99,10/10/19 14:00,"401 1st St, New York City, NY 10001" +268115,Lightning Charging Cable,1,14.95,10/18/19 17:23,"69 Elm St, San Francisco, CA 94016" +268116,USB-C Charging Cable,1,11.95,10/25/19 16:06,"726 1st St, Boston, MA 02215" +268117,27in 4K Gaming Monitor,1,389.99,10/18/19 09:19,"506 Lincoln St, Boston, MA 02215" +268118,27in 4K Gaming Monitor,1,389.99,10/19/19 23:45,"123 Jackson St, Dallas, TX 75001" +268119,iPhone,1,700,10/07/19 21:23,"809 13th St, Seattle, WA 98101" +268120,Lightning Charging Cable,1,14.95,10/19/19 11:05,"44 West St, Los Angeles, CA 90001" +268121,27in FHD Monitor,1,149.99,10/11/19 22:45,"295 7th St, Seattle, WA 98101" +268122,Bose SoundSport Headphones,1,99.99,10/26/19 15:36,"300 8th St, San Francisco, CA 94016" +268123,Lightning Charging Cable,1,14.95,10/28/19 12:01,"165 10th St, New York City, NY 10001" +268124,34in Ultrawide Monitor,1,379.99,10/28/19 05:24,"612 4th St, New York City, NY 10001" +268125,Apple Airpods Headphones,1,150,10/01/19 10:34,"4 Church St, San Francisco, CA 94016" +268126,Lightning Charging Cable,1,14.95,10/19/19 20:12,"39 8th St, Los Angeles, CA 90001" +268127,27in FHD Monitor,1,149.99,10/14/19 15:00,"808 Hill St, Los Angeles, CA 90001" +268128,USB-C Charging Cable,2,11.95,10/20/19 21:55,"241 Hickory St, Los Angeles, CA 90001" +268129,AA Batteries (4-pack),1,3.84,10/27/19 20:47,"283 Hill St, Portland, OR 97035" +268130,Google Phone,1,600,10/12/19 12:59,"13 7th St, San Francisco, CA 94016" +268130,Wired Headphones,1,11.99,10/12/19 12:59,"13 7th St, San Francisco, CA 94016" +268131,27in FHD Monitor,1,149.99,10/18/19 23:45,"156 Meadow St, Austin, TX 73301" +268131,Flatscreen TV,1,300,10/18/19 23:45,"156 Meadow St, Austin, TX 73301" +268132,Lightning Charging Cable,1,14.95,10/28/19 19:56,"263 Meadow St, San Francisco, CA 94016" +268133,34in Ultrawide Monitor,1,379.99,10/12/19 09:53,"211 South St, Los Angeles, CA 90001" +268134,AAA Batteries (4-pack),1,2.99,10/24/19 14:49,"577 Hickory St, Seattle, WA 98101" +268135,AA Batteries (4-pack),1,3.84,10/24/19 16:56,"395 Ridge St, New York City, NY 10001" +268136,AA Batteries (4-pack),2,3.84,10/30/19 12:22,"181 Chestnut St, New York City, NY 10001" +268137,USB-C Charging Cable,1,11.95,10/24/19 12:29,"264 Park St, Boston, MA 02215" +268138,Wired Headphones,1,11.99,10/15/19 12:48,"416 Walnut St, New York City, NY 10001" +268139,Apple Airpods Headphones,1,150,10/08/19 21:03,"120 7th St, Los Angeles, CA 90001" +268140,Apple Airpods Headphones,1,150,10/27/19 19:47,"623 7th St, Los Angeles, CA 90001" +268141,ThinkPad Laptop,1,999.99,10/29/19 17:40,"118 Pine St, San Francisco, CA 94016" +268142,iPhone,1,700,10/17/19 17:41,"121 Washington St, Boston, MA 02215" +268143,USB-C Charging Cable,1,11.95,10/26/19 10:44,"965 Cedar St, Portland, ME 04101" +268144,AAA Batteries (4-pack),1,2.99,10/22/19 03:19,"37 13th St, Seattle, WA 98101" +268145,USB-C Charging Cable,1,11.95,10/03/19 17:01,"16 Church St, Los Angeles, CA 90001" +268146,34in Ultrawide Monitor,1,379.99,10/23/19 10:28,"887 South St, Atlanta, GA 30301" +268147,Apple Airpods Headphones,1,150,10/11/19 16:22,"309 Hickory St, Los Angeles, CA 90001" +268147,Google Phone,1,600,10/11/19 16:22,"309 Hickory St, Los Angeles, CA 90001" +268148,Lightning Charging Cable,1,14.95,10/17/19 20:48,"661 Meadow St, Boston, MA 02215" +268149,27in 4K Gaming Monitor,1,389.99,10/11/19 15:10,"889 Hill St, Los Angeles, CA 90001" +268149,Wired Headphones,1,11.99,10/11/19 15:10,"889 Hill St, Los Angeles, CA 90001" +268150,Bose SoundSport Headphones,1,99.99,10/16/19 12:13,"786 2nd St, San Francisco, CA 94016" +268151,Apple Airpods Headphones,1,150,10/17/19 01:45,"183 7th St, Portland, OR 97035" +268152,Apple Airpods Headphones,1,150,10/09/19 17:47,"288 9th St, Los Angeles, CA 90001" +268153,Apple Airpods Headphones,1,150,10/13/19 21:00,"383 7th St, Austin, TX 73301" +268154,Apple Airpods Headphones,1,150,10/04/19 10:17,"894 14th St, San Francisco, CA 94016" +268155,AAA Batteries (4-pack),1,2.99,10/10/19 15:38,"548 Meadow St, New York City, NY 10001" +268156,20in Monitor,1,109.99,10/24/19 18:18,"584 11th St, Los Angeles, CA 90001" +268157,Lightning Charging Cable,1,14.95,10/18/19 07:55,"749 Chestnut St, New York City, NY 10001" +268158,Wired Headphones,2,11.99,10/14/19 00:07,"515 Lakeview St, Atlanta, GA 30301" +268159,USB-C Charging Cable,1,11.95,10/23/19 10:19,"610 Lincoln St, New York City, NY 10001" +268160,AA Batteries (4-pack),1,3.84,10/23/19 13:49,"663 Forest St, Dallas, TX 75001" +268161,iPhone,1,700,10/20/19 11:39,"765 Lakeview St, Seattle, WA 98101" +268162,AA Batteries (4-pack),1,3.84,10/14/19 12:55,"881 Dogwood St, San Francisco, CA 94016" +268163,Apple Airpods Headphones,1,150,10/11/19 06:18,"75 Willow St, Boston, MA 02215" +268164,AA Batteries (4-pack),2,3.84,10/16/19 20:43,"89 13th St, New York City, NY 10001" +268165,Bose SoundSport Headphones,1,99.99,10/19/19 10:46,"880 Washington St, New York City, NY 10001" +268166,AAA Batteries (4-pack),3,2.99,10/09/19 12:25,"385 Chestnut St, Portland, OR 97035" +268167,Wired Headphones,1,11.99,10/24/19 08:35,"150 Walnut St, Los Angeles, CA 90001" +268168,USB-C Charging Cable,1,11.95,10/17/19 15:07,"417 Sunset St, Boston, MA 02215" +268169,iPhone,1,700,10/02/19 19:13,"692 7th St, Los Angeles, CA 90001" +268170,Lightning Charging Cable,1,14.95,10/06/19 13:57,"176 Forest St, Atlanta, GA 30301" +268171,Wired Headphones,2,11.99,10/14/19 21:39,"742 Forest St, Dallas, TX 75001" +268172,Wired Headphones,1,11.99,10/25/19 21:36,"176 Church St, Boston, MA 02215" +268173,ThinkPad Laptop,1,999.99,10/11/19 14:07,"474 River St, Seattle, WA 98101" +268174,27in 4K Gaming Monitor,1,389.99,10/27/19 19:47,"447 Hill St, San Francisco, CA 94016" +268175,Lightning Charging Cable,1,14.95,10/25/19 07:21,"873 Dogwood St, Austin, TX 73301" +268176,AA Batteries (4-pack),2,3.84,10/15/19 18:10,"641 6th St, Dallas, TX 75001" +268177,AA Batteries (4-pack),1,3.84,10/08/19 09:24,"766 Cedar St, Dallas, TX 75001" +268178,Wired Headphones,1,11.99,10/11/19 06:19,"544 6th St, San Francisco, CA 94016" +268179,AAA Batteries (4-pack),1,2.99,10/02/19 21:05,"931 Johnson St, Seattle, WA 98101" +268180,Wired Headphones,1,11.99,10/22/19 14:09,"994 Johnson St, Boston, MA 02215" +268181,Bose SoundSport Headphones,1,99.99,10/18/19 05:12,"303 Hill St, Los Angeles, CA 90001" +268182,27in FHD Monitor,1,149.99,10/03/19 15:22,"186 7th St, San Francisco, CA 94016" +268183,iPhone,1,700,10/09/19 12:20,"180 Cherry St, Seattle, WA 98101" +268184,Wired Headphones,1,11.99,10/11/19 13:31,"296 Lincoln St, Atlanta, GA 30301" +268185,iPhone,1,700,10/06/19 19:49,"528 5th St, San Francisco, CA 94016" +268186,Google Phone,1,600,10/25/19 12:26,"237 14th St, Los Angeles, CA 90001" +268186,USB-C Charging Cable,1,11.95,10/25/19 12:26,"237 14th St, Los Angeles, CA 90001" +,,,,, +268187,USB-C Charging Cable,1,11.95,10/29/19 06:01,"286 Meadow St, San Francisco, CA 94016" +268188,27in FHD Monitor,1,149.99,10/24/19 00:37,"538 Washington St, San Francisco, CA 94016" +268189,Wired Headphones,1,11.99,10/03/19 20:04,"942 Johnson St, Los Angeles, CA 90001" +268190,20in Monitor,1,109.99,10/02/19 15:15,"659 12th St, Los Angeles, CA 90001" +268191,20in Monitor,1,109.99,10/03/19 12:22,"598 North St, Boston, MA 02215" +268192,iPhone,1,700,10/27/19 21:37,"181 Lincoln St, Austin, TX 73301" +268193,Lightning Charging Cable,1,14.95,10/23/19 21:18,"298 Spruce St, Boston, MA 02215" +268194,Bose SoundSport Headphones,1,99.99,10/24/19 09:35,"53 2nd St, San Francisco, CA 94016" +268195,34in Ultrawide Monitor,1,379.99,10/01/19 22:35,"808 Cedar St, New York City, NY 10001" +268196,AA Batteries (4-pack),3,3.84,10/15/19 22:40,"744 Maple St, Boston, MA 02215" +268197,USB-C Charging Cable,1,11.95,10/30/19 01:59,"243 Willow St, San Francisco, CA 94016" +268198,27in 4K Gaming Monitor,1,389.99,10/31/19 20:49,"442 14th St, Austin, TX 73301" +268199,USB-C Charging Cable,1,11.95,10/05/19 07:31,"869 West St, Los Angeles, CA 90001" +268200,USB-C Charging Cable,1,11.95,10/25/19 22:23,"323 8th St, New York City, NY 10001" +268201,Bose SoundSport Headphones,1,99.99,10/07/19 22:48,"941 Lincoln St, Los Angeles, CA 90001" +268202,Flatscreen TV,1,300,10/10/19 12:10,"650 Sunset St, Boston, MA 02215" +268203,27in 4K Gaming Monitor,1,389.99,10/12/19 18:55,"800 Lakeview St, Atlanta, GA 30301" +268204,Google Phone,1,600,10/30/19 14:20,"953 6th St, Los Angeles, CA 90001" +268204,USB-C Charging Cable,1,11.95,10/30/19 14:20,"953 6th St, Los Angeles, CA 90001" +268205,Macbook Pro Laptop,1,1700,10/13/19 12:29,"314 Meadow St, Dallas, TX 75001" +268206,Wired Headphones,1,11.99,10/13/19 22:24,"485 Elm St, Los Angeles, CA 90001" +268207,Lightning Charging Cable,1,14.95,10/31/19 11:45,"156 Madison St, Atlanta, GA 30301" +268208,Google Phone,1,600,10/02/19 21:43,"335 Forest St, New York City, NY 10001" +268209,27in FHD Monitor,1,149.99,10/26/19 13:45,"479 9th St, New York City, NY 10001" +268210,Macbook Pro Laptop,1,1700,10/03/19 09:15,"721 Cherry St, Boston, MA 02215" +268211,Bose SoundSport Headphones,1,99.99,10/23/19 16:31,"243 5th St, San Francisco, CA 94016" +268212,20in Monitor,1,109.99,10/28/19 19:20,"148 8th St, Dallas, TX 75001" +268213,AA Batteries (4-pack),2,3.84,10/23/19 20:15,"814 Spruce St, New York City, NY 10001" +268214,Wired Headphones,1,11.99,10/18/19 07:36,"503 Hill St, New York City, NY 10001" +268215,AA Batteries (4-pack),2,3.84,10/18/19 21:06,"636 Highland St, San Francisco, CA 94016" +268216,Bose SoundSport Headphones,1,99.99,10/17/19 09:33,"11 8th St, Los Angeles, CA 90001" +268217,Apple Airpods Headphones,1,150,10/13/19 21:28,"171 10th St, Austin, TX 73301" +268218,USB-C Charging Cable,1,11.95,10/27/19 22:50,"352 6th St, Los Angeles, CA 90001" +268219,Macbook Pro Laptop,1,1700,10/06/19 20:44,"824 Jackson St, San Francisco, CA 94016" +268220,ThinkPad Laptop,1,999.99,10/25/19 19:23,"125 Meadow St, New York City, NY 10001" +268221,Macbook Pro Laptop,1,1700,10/05/19 22:53,"299 Walnut St, Boston, MA 02215" +268222,27in FHD Monitor,1,149.99,10/17/19 16:32,"550 Lakeview St, Dallas, TX 75001" +268223,27in FHD Monitor,1,149.99,10/19/19 17:01,"651 Willow St, San Francisco, CA 94016" +268224,Apple Airpods Headphones,1,150,10/08/19 16:51,"944 Willow St, San Francisco, CA 94016" +268225,Wired Headphones,1,11.99,10/09/19 21:29,"785 13th St, Los Angeles, CA 90001" +268226,USB-C Charging Cable,1,11.95,10/24/19 19:32,"201 Church St, Portland, OR 97035" +268227,AA Batteries (4-pack),2,3.84,10/03/19 10:35,"779 Main St, Dallas, TX 75001" +268228,Lightning Charging Cable,1,14.95,10/22/19 19:21,"698 7th St, San Francisco, CA 94016" +268229,Lightning Charging Cable,1,14.95,10/16/19 17:29,"32 13th St, Los Angeles, CA 90001" +268230,Lightning Charging Cable,1,14.95,10/22/19 00:24,"833 7th St, New York City, NY 10001" +268231,Apple Airpods Headphones,1,150,10/05/19 16:26,"307 Lincoln St, New York City, NY 10001" +268232,Lightning Charging Cable,1,14.95,10/29/19 16:57,"837 Dogwood St, Boston, MA 02215" +268233,USB-C Charging Cable,1,11.95,10/04/19 07:53,"900 4th St, New York City, NY 10001" +268234,AAA Batteries (4-pack),2,2.99,10/31/19 21:54,"850 Hill St, Boston, MA 02215" +268235,AAA Batteries (4-pack),2,2.99,10/13/19 19:01,"446 Madison St, San Francisco, CA 94016" +268236,AA Batteries (4-pack),1,3.84,10/04/19 18:24,"75 Jefferson St, Boston, MA 02215" +268237,Lightning Charging Cable,1,14.95,10/12/19 23:56,"584 Adams St, Los Angeles, CA 90001" +268238,USB-C Charging Cable,1,11.95,10/23/19 15:44,"479 9th St, San Francisco, CA 94016" +268239,ThinkPad Laptop,1,999.99,10/31/19 13:50,"336 Pine St, Los Angeles, CA 90001" +268240,Vareebadd Phone,1,400,10/24/19 21:31,"26 Adams St, Boston, MA 02215" +268241,USB-C Charging Cable,1,11.95,10/30/19 18:19,"126 Forest St, Boston, MA 02215" +268242,Google Phone,1,600,10/06/19 13:38,"332 Sunset St, Seattle, WA 98101" +268243,AA Batteries (4-pack),1,3.84,10/10/19 11:59,"982 West St, Seattle, WA 98101" +268244,USB-C Charging Cable,2,11.95,10/23/19 10:02,"111 Cedar St, Los Angeles, CA 90001" +268245,ThinkPad Laptop,1,999.99,10/09/19 11:36,"65 Park St, San Francisco, CA 94016" +268246,Wired Headphones,1,11.99,10/30/19 21:06,"395 Lincoln St, Atlanta, GA 30301" +268247,27in FHD Monitor,1,149.99,10/27/19 03:56,"493 Meadow St, San Francisco, CA 94016" +268248,Lightning Charging Cable,1,14.95,10/08/19 14:39,"998 13th St, Austin, TX 73301" +268249,27in FHD Monitor,1,149.99,10/20/19 10:52,"236 Lake St, Seattle, WA 98101" +268250,AAA Batteries (4-pack),1,2.99,10/12/19 10:41,"246 North St, Los Angeles, CA 90001" +268251,Lightning Charging Cable,1,14.95,10/23/19 11:17,"597 Pine St, Boston, MA 02215" +268252,AAA Batteries (4-pack),1,2.99,10/17/19 10:57,"347 6th St, Boston, MA 02215" +268253,Wired Headphones,1,11.99,10/01/19 15:11,"297 Lake St, New York City, NY 10001" +268254,ThinkPad Laptop,1,999.99,10/01/19 19:18,"816 Jackson St, Boston, MA 02215" +268255,USB-C Charging Cable,1,11.95,10/26/19 07:17,"648 West St, Seattle, WA 98101" +268256,Bose SoundSport Headphones,1,99.99,10/31/19 19:26,"882 Chestnut St, Los Angeles, CA 90001" +268257,27in FHD Monitor,1,149.99,10/18/19 20:25,"434 9th St, San Francisco, CA 94016" +268258,AAA Batteries (4-pack),2,2.99,10/13/19 21:36,"816 Church St, San Francisco, CA 94016" +268259,AA Batteries (4-pack),2,3.84,10/25/19 15:23,"810 2nd St, San Francisco, CA 94016" +268260,USB-C Charging Cable,1,11.95,10/02/19 18:47,"896 9th St, Boston, MA 02215" +268261,AAA Batteries (4-pack),2,2.99,10/18/19 17:48,"205 Spruce St, San Francisco, CA 94016" +268262,iPhone,1,700,10/26/19 19:56,"206 South St, Boston, MA 02215" +268263,Lightning Charging Cable,1,14.95,10/04/19 02:58,"884 South St, Dallas, TX 75001" +268264,AA Batteries (4-pack),1,3.84,10/08/19 14:49,"387 7th St, Atlanta, GA 30301" +268265,AA Batteries (4-pack),2,3.84,10/11/19 14:55,"24 South St, Austin, TX 73301" +268266,USB-C Charging Cable,1,11.95,10/21/19 22:20,"387 Center St, Boston, MA 02215" +268267,Macbook Pro Laptop,1,1700,10/16/19 00:56,"68 Willow St, New York City, NY 10001" +268268,AAA Batteries (4-pack),1,2.99,10/19/19 21:09,"984 Wilson St, San Francisco, CA 94016" +268269,Lightning Charging Cable,1,14.95,10/26/19 22:35,"790 Walnut St, San Francisco, CA 94016" +268270,AA Batteries (4-pack),1,3.84,10/10/19 01:51,"242 Adams St, New York City, NY 10001" +268271,Wired Headphones,1,11.99,10/23/19 05:39,"980 2nd St, San Francisco, CA 94016" +268272,Apple Airpods Headphones,1,150,10/10/19 19:11,"536 7th St, Portland, ME 04101" +268273,USB-C Charging Cable,1,11.95,10/06/19 14:34,"825 10th St, Boston, MA 02215" +268274,AA Batteries (4-pack),1,3.84,10/02/19 21:10,"227 Lake St, Boston, MA 02215" +268275,AAA Batteries (4-pack),1,2.99,10/18/19 14:23,"99 Maple St, Atlanta, GA 30301" +268276,Apple Airpods Headphones,1,150,10/31/19 21:50,"272 7th St, New York City, NY 10001" +268277,Lightning Charging Cable,1,14.95,10/01/19 10:21,"107 River St, San Francisco, CA 94016" +268278,AA Batteries (4-pack),1,3.84,10/08/19 17:24,"251 Johnson St, Austin, TX 73301" +268279,Google Phone,1,600,10/28/19 17:28,"348 8th St, Portland, ME 04101" +268280,Google Phone,1,600,10/10/19 13:39,"877 Lakeview St, Los Angeles, CA 90001" +268280,USB-C Charging Cable,1,11.95,10/10/19 13:39,"877 Lakeview St, Los Angeles, CA 90001" +268281,iPhone,1,700,10/11/19 10:22,"483 Lincoln St, Boston, MA 02215" +268282,Lightning Charging Cable,1,14.95,10/16/19 12:34,"39 Maple St, Seattle, WA 98101" +268283,AA Batteries (4-pack),1,3.84,10/05/19 16:39,"235 Jackson St, Boston, MA 02215" +268284,27in FHD Monitor,1,149.99,10/31/19 17:41,"988 Lake St, Seattle, WA 98101" +268285,Wired Headphones,1,11.99,10/18/19 09:45,"89 Center St, Atlanta, GA 30301" +268286,Lightning Charging Cable,1,14.95,10/04/19 20:42,"59 Maple St, San Francisco, CA 94016" +268287,AAA Batteries (4-pack),2,2.99,10/07/19 12:20,"147 Ridge St, Los Angeles, CA 90001" +268288,AA Batteries (4-pack),1,3.84,10/08/19 15:45,"859 Madison St, Seattle, WA 98101" +268289,AA Batteries (4-pack),1,3.84,10/09/19 15:14,"947 Lincoln St, New York City, NY 10001" +268290,Apple Airpods Headphones,1,150,10/11/19 20:28,"235 Washington St, San Francisco, CA 94016" +268291,iPhone,1,700,10/28/19 17:27,"185 10th St, San Francisco, CA 94016" +268292,34in Ultrawide Monitor,1,379.99,10/07/19 21:56,"292 2nd St, New York City, NY 10001" +268293,AAA Batteries (4-pack),1,2.99,10/04/19 15:20,"101 West St, San Francisco, CA 94016" +268294,Bose SoundSport Headphones,1,99.99,10/25/19 20:02,"125 Chestnut St, Boston, MA 02215" +268295,34in Ultrawide Monitor,1,379.99,10/06/19 21:17,"464 Spruce St, San Francisco, CA 94016" +268296,Apple Airpods Headphones,1,150,10/19/19 14:07,"117 River St, Portland, OR 97035" +268297,34in Ultrawide Monitor,1,379.99,10/04/19 16:24,"933 Ridge St, Dallas, TX 75001" +268298,Vareebadd Phone,1,400,10/22/19 20:39,"294 Ridge St, Los Angeles, CA 90001" +268299,Wired Headphones,1,11.99,10/19/19 12:41,"635 Walnut St, San Francisco, CA 94016" +268300,20in Monitor,1,109.99,10/27/19 16:10,"938 River St, San Francisco, CA 94016" +268301,AAA Batteries (4-pack),1,2.99,10/23/19 15:03,"228 5th St, Boston, MA 02215" +268302,Apple Airpods Headphones,1,150,10/10/19 10:56,"835 Washington St, San Francisco, CA 94016" +268303,27in 4K Gaming Monitor,1,389.99,10/02/19 17:57,"384 West St, Los Angeles, CA 90001" +268304,Lightning Charging Cable,1,14.95,10/07/19 17:02,"596 West St, Portland, OR 97035" +268305,Google Phone,1,600,10/02/19 19:18,"209 Lake St, Los Angeles, CA 90001" +268306,USB-C Charging Cable,1,11.95,10/01/19 07:45,"661 Jefferson St, Seattle, WA 98101" +268307,27in FHD Monitor,1,149.99,10/20/19 16:20,"717 Highland St, San Francisco, CA 94016" +268308,AA Batteries (4-pack),3,3.84,10/06/19 10:04,"741 1st St, Los Angeles, CA 90001" +268309,AA Batteries (4-pack),1,3.84,10/16/19 14:28,"383 Park St, Los Angeles, CA 90001" +268310,iPhone,1,700,10/22/19 19:10,"343 Jackson St, New York City, NY 10001" +268311,Wired Headphones,1,11.99,10/26/19 19:59,"48 Spruce St, San Francisco, CA 94016" +268312,AAA Batteries (4-pack),1,2.99,10/20/19 21:36,"458 River St, Atlanta, GA 30301" +268313,AA Batteries (4-pack),1,3.84,10/30/19 13:10,"996 Willow St, Boston, MA 02215" +268314,Vareebadd Phone,1,400,10/03/19 18:48,"477 14th St, New York City, NY 10001" +268315,Apple Airpods Headphones,1,150,10/23/19 12:59,"729 4th St, San Francisco, CA 94016" +268316,AAA Batteries (4-pack),3,2.99,10/10/19 13:21,"423 Wilson St, Atlanta, GA 30301" +268317,AAA Batteries (4-pack),3,2.99,10/09/19 06:54,"517 Highland St, New York City, NY 10001" +268318,27in 4K Gaming Monitor,1,389.99,10/09/19 11:23,"427 Cherry St, San Francisco, CA 94016" +268319,Apple Airpods Headphones,1,150,10/28/19 22:50,"399 Walnut St, Portland, OR 97035" +268320,34in Ultrawide Monitor,1,379.99,10/15/19 19:17,"405 Dogwood St, Austin, TX 73301" +268321,Lightning Charging Cable,1,14.95,10/31/19 21:30,"749 Sunset St, San Francisco, CA 94016" +268322,Bose SoundSport Headphones,1,99.99,10/31/19 17:39,"597 Ridge St, San Francisco, CA 94016" +268323,Wired Headphones,2,11.99,10/24/19 12:56,"863 Willow St, Dallas, TX 75001" +268324,AA Batteries (4-pack),1,3.84,10/01/19 18:09,"88 Spruce St, San Francisco, CA 94016" +268325,AAA Batteries (4-pack),1,2.99,10/05/19 14:40,"279 Forest St, San Francisco, CA 94016" +268326,AA Batteries (4-pack),1,3.84,10/27/19 21:18,"664 7th St, Portland, OR 97035" +268327,USB-C Charging Cable,1,11.95,10/14/19 19:20,"157 7th St, New York City, NY 10001" +268328,Bose SoundSport Headphones,1,99.99,10/11/19 17:37,"453 9th St, Boston, MA 02215" +268329,USB-C Charging Cable,2,11.95,10/22/19 21:36,"689 Willow St, Seattle, WA 98101" +268330,20in Monitor,1,109.99,10/19/19 19:40,"267 Hickory St, New York City, NY 10001" +268331,Wired Headphones,2,11.99,10/30/19 10:24,"418 12th St, San Francisco, CA 94016" +268332,Bose SoundSport Headphones,1,99.99,10/08/19 15:48,"611 Park St, San Francisco, CA 94016" +268333,20in Monitor,1,109.99,10/31/19 15:33,"530 12th St, Los Angeles, CA 90001" +268334,34in Ultrawide Monitor,1,379.99,10/28/19 16:43,"325 6th St, Los Angeles, CA 90001" +268334,Lightning Charging Cable,1,14.95,10/28/19 16:43,"325 6th St, Los Angeles, CA 90001" +268335,ThinkPad Laptop,1,999.99,10/30/19 00:34,"518 Cherry St, Los Angeles, CA 90001" +268336,27in 4K Gaming Monitor,1,389.99,10/03/19 22:53,"161 6th St, Atlanta, GA 30301" +268337,AA Batteries (4-pack),1,3.84,10/28/19 11:48,"940 Madison St, San Francisco, CA 94016" +268338,Vareebadd Phone,1,400,10/06/19 12:18,"767 Madison St, Portland, OR 97035" +268339,Apple Airpods Headphones,1,150,10/31/19 08:47,"773 River St, Atlanta, GA 30301" +268340,Apple Airpods Headphones,1,150,10/03/19 15:26,"528 Elm St, Dallas, TX 75001" +268341,Lightning Charging Cable,1,14.95,10/07/19 17:46,"674 Jackson St, San Francisco, CA 94016" +268342,Bose SoundSport Headphones,1,99.99,10/21/19 06:01,"998 Johnson St, Boston, MA 02215" +268343,27in 4K Gaming Monitor,1,389.99,10/19/19 17:28,"579 Lincoln St, Los Angeles, CA 90001" +268344,USB-C Charging Cable,1,11.95,10/01/19 14:02,"25 2nd St, San Francisco, CA 94016" +268345,USB-C Charging Cable,1,11.95,10/07/19 09:17,"120 Park St, San Francisco, CA 94016" +268346,USB-C Charging Cable,1,11.95,10/09/19 19:58,"443 Washington St, Portland, ME 04101" +268347,AA Batteries (4-pack),2,3.84,10/29/19 20:16,"845 Washington St, New York City, NY 10001" +268348,AAA Batteries (4-pack),3,2.99,10/02/19 12:43,"937 Dogwood St, Los Angeles, CA 90001" +268349,Lightning Charging Cable,1,14.95,10/05/19 13:03,"339 Wilson St, San Francisco, CA 94016" +268350,AA Batteries (4-pack),1,3.84,10/01/19 20:36,"501 Washington St, San Francisco, CA 94016" +268351,Lightning Charging Cable,1,14.95,10/28/19 21:14,"304 Sunset St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +268352,USB-C Charging Cable,1,11.95,10/28/19 15:38,"572 Maple St, San Francisco, CA 94016" +268353,Lightning Charging Cable,1,14.95,10/26/19 14:26,"715 South St, Atlanta, GA 30301" +268354,iPhone,1,700,10/21/19 12:02,"683 Willow St, Portland, OR 97035" +268355,27in FHD Monitor,1,149.99,10/13/19 19:18,"471 Highland St, San Francisco, CA 94016" +268356,Wired Headphones,1,11.99,10/08/19 19:25,"726 12th St, Seattle, WA 98101" +268357,Apple Airpods Headphones,1,150,10/01/19 23:39,"108 Main St, San Francisco, CA 94016" +268358,Apple Airpods Headphones,1,150,10/04/19 14:36,"765 Cherry St, Los Angeles, CA 90001" +268359,Apple Airpods Headphones,1,150,10/12/19 10:56,"487 Church St, Los Angeles, CA 90001" +268360,AAA Batteries (4-pack),1,2.99,10/30/19 15:05,"419 Hickory St, San Francisco, CA 94016" +268361,AA Batteries (4-pack),2,3.84,10/04/19 19:09,"946 Park St, Seattle, WA 98101" +268362,AAA Batteries (4-pack),3,2.99,10/14/19 18:37,"280 10th St, Portland, OR 97035" +268363,Bose SoundSport Headphones,1,99.99,10/06/19 00:16,"465 Spruce St, Austin, TX 73301" +268363,Bose SoundSport Headphones,1,99.99,10/06/19 00:16,"465 Spruce St, Austin, TX 73301" +268364,Wired Headphones,1,11.99,10/28/19 08:29,"26 Cedar St, New York City, NY 10001" +268365,Wired Headphones,1,11.99,10/02/19 07:11,"308 10th St, Portland, OR 97035" +268366,AA Batteries (4-pack),3,3.84,10/18/19 18:28,"16 Elm St, Dallas, TX 75001" +268367,Apple Airpods Headphones,1,150,10/05/19 19:45,"696 Washington St, Boston, MA 02215" +268368,USB-C Charging Cable,1,11.95,10/28/19 21:32,"314 Forest St, Dallas, TX 75001" +268369,Apple Airpods Headphones,1,150,10/12/19 17:30,"82 Dogwood St, New York City, NY 10001" +268370,Bose SoundSport Headphones,1,99.99,10/12/19 10:45,"230 Meadow St, Los Angeles, CA 90001" +,,,,, +268371,Bose SoundSport Headphones,1,99.99,10/11/19 10:42,"463 Lakeview St, Boston, MA 02215" +268372,Bose SoundSport Headphones,1,99.99,10/03/19 00:41,"570 Cherry St, Atlanta, GA 30301" +268373,Wired Headphones,1,11.99,10/30/19 16:39,"64 8th St, San Francisco, CA 94016" +268374,AA Batteries (4-pack),3,3.84,10/15/19 23:56,"491 2nd St, San Francisco, CA 94016" +268375,iPhone,1,700,10/03/19 14:27,"837 5th St, San Francisco, CA 94016" +268375,Wired Headphones,1,11.99,10/03/19 14:27,"837 5th St, San Francisco, CA 94016" +268376,USB-C Charging Cable,1,11.95,10/24/19 16:50,"931 Lakeview St, San Francisco, CA 94016" +268377,ThinkPad Laptop,1,999.99,10/28/19 11:40,"808 6th St, Los Angeles, CA 90001" +268378,27in FHD Monitor,1,149.99,10/19/19 17:23,"971 Lincoln St, Dallas, TX 75001" +268379,AA Batteries (4-pack),2,3.84,10/11/19 15:59,"191 Chestnut St, New York City, NY 10001" +268380,iPhone,1,700,10/24/19 13:16,"330 Main St, San Francisco, CA 94016" +268381,AAA Batteries (4-pack),1,2.99,10/24/19 21:26,"372 4th St, Austin, TX 73301" +268382,AA Batteries (4-pack),1,3.84,10/07/19 13:34,"702 Cedar St, San Francisco, CA 94016" +268383,USB-C Charging Cable,2,11.95,10/09/19 20:05,"33 Lake St, Los Angeles, CA 90001" +268384,Apple Airpods Headphones,1,150,10/20/19 13:05,"804 10th St, Dallas, TX 75001" +268385,27in FHD Monitor,1,149.99,10/31/19 11:56,"667 11th St, Dallas, TX 75001" +268386,Bose SoundSport Headphones,1,99.99,10/10/19 14:33,"881 Main St, Boston, MA 02215" +268387,34in Ultrawide Monitor,1,379.99,10/20/19 00:31,"187 Maple St, Los Angeles, CA 90001" +268388,Apple Airpods Headphones,1,150,10/26/19 23:04,"154 Madison St, San Francisco, CA 94016" +268389,20in Monitor,1,109.99,10/10/19 10:29,"430 Elm St, Atlanta, GA 30301" +268390,Lightning Charging Cable,1,14.95,10/12/19 04:17,"967 Jackson St, Seattle, WA 98101" +268391,27in FHD Monitor,1,149.99,10/29/19 10:53,"483 5th St, Los Angeles, CA 90001" +268392,AAA Batteries (4-pack),2,2.99,10/21/19 22:46,"446 Lakeview St, San Francisco, CA 94016" +268393,AA Batteries (4-pack),1,3.84,10/01/19 21:07,"819 Wilson St, Boston, MA 02215" +268394,iPhone,1,700,10/30/19 21:00,"732 Jackson St, Los Angeles, CA 90001" +268394,Lightning Charging Cable,3,14.95,10/30/19 21:00,"732 Jackson St, Los Angeles, CA 90001" +268395,Google Phone,1,600,10/03/19 13:41,"948 Pine St, Los Angeles, CA 90001" +268396,Macbook Pro Laptop,1,1700,10/30/19 18:49,"360 Jackson St, New York City, NY 10001" +268397,iPhone,1,700,10/11/19 01:05,"572 6th St, Los Angeles, CA 90001" +268398,AA Batteries (4-pack),1,3.84,10/17/19 15:29,"152 Highland St, Los Angeles, CA 90001" +268399,Bose SoundSport Headphones,1,99.99,10/09/19 10:31,"517 Spruce St, Boston, MA 02215" +268400,27in 4K Gaming Monitor,1,389.99,10/03/19 21:36,"203 Park St, San Francisco, CA 94016" +268401,Apple Airpods Headphones,1,150,10/29/19 18:40,"900 South St, Boston, MA 02215" +268402,Lightning Charging Cable,1,14.95,10/06/19 21:16,"758 4th St, Boston, MA 02215" +268403,Bose SoundSport Headphones,1,99.99,10/06/19 21:41,"127 Cedar St, Seattle, WA 98101" +268404,AAA Batteries (4-pack),2,2.99,10/11/19 00:35,"679 10th St, Portland, ME 04101" +268405,ThinkPad Laptop,1,999.99,10/03/19 19:56,"549 Cherry St, Boston, MA 02215" +268406,Flatscreen TV,1,300,10/22/19 09:15,"965 10th St, Boston, MA 02215" +268407,AA Batteries (4-pack),2,3.84,10/17/19 11:50,"674 Hill St, San Francisco, CA 94016" +268407,Google Phone,1,600,10/17/19 11:50,"674 Hill St, San Francisco, CA 94016" +268408,27in FHD Monitor,1,149.99,10/31/19 20:39,"564 Church St, Los Angeles, CA 90001" +268409,AA Batteries (4-pack),1,3.84,10/09/19 11:25,"14 Center St, Los Angeles, CA 90001" +268410,USB-C Charging Cable,2,11.95,10/26/19 23:10,"257 Hickory St, Los Angeles, CA 90001" +268411,Lightning Charging Cable,1,14.95,10/18/19 16:13,"894 Chestnut St, Dallas, TX 75001" +268412,AA Batteries (4-pack),2,3.84,10/11/19 15:52,"20 Center St, San Francisco, CA 94016" +268413,Wired Headphones,1,11.99,10/13/19 22:21,"693 West St, San Francisco, CA 94016" +268414,AAA Batteries (4-pack),1,2.99,10/25/19 16:56,"235 10th St, San Francisco, CA 94016" +268415,20in Monitor,1,109.99,10/22/19 22:48,"254 9th St, Boston, MA 02215" +268416,Google Phone,1,600,10/23/19 12:44,"283 Pine St, Dallas, TX 75001" +268417,34in Ultrawide Monitor,1,379.99,10/11/19 20:22,"745 River St, San Francisco, CA 94016" +268418,Flatscreen TV,1,300,10/10/19 23:52,"323 Main St, San Francisco, CA 94016" +268419,AAA Batteries (4-pack),1,2.99,10/23/19 17:20,"45 11th St, Los Angeles, CA 90001" +268420,27in 4K Gaming Monitor,1,389.99,10/13/19 15:57,"548 5th St, Seattle, WA 98101" +268421,AA Batteries (4-pack),1,3.84,10/30/19 20:09,"153 Spruce St, Atlanta, GA 30301" +268422,20in Monitor,1,109.99,10/06/19 16:00,"98 Jefferson St, San Francisco, CA 94016" +268423,AA Batteries (4-pack),1,3.84,10/22/19 19:46,"566 4th St, Portland, ME 04101" +268424,AA Batteries (4-pack),1,3.84,10/16/19 15:05,"722 Cherry St, Seattle, WA 98101" +268425,Apple Airpods Headphones,1,150,10/30/19 21:48,"612 2nd St, Austin, TX 73301" +268426,AAA Batteries (4-pack),1,2.99,10/19/19 19:14,"461 Highland St, Seattle, WA 98101" +268427,AA Batteries (4-pack),2,3.84,10/17/19 20:12,"119 Walnut St, Los Angeles, CA 90001" +268428,AAA Batteries (4-pack),1,2.99,10/03/19 16:38,"228 7th St, Austin, TX 73301" +268429,Wired Headphones,1,11.99,10/02/19 18:37,"779 Sunset St, Seattle, WA 98101" +268430,iPhone,1,700,10/04/19 11:36,"401 Madison St, New York City, NY 10001" +268431,USB-C Charging Cable,1,11.95,10/01/19 11:01,"377 12th St, San Francisco, CA 94016" +268432,Apple Airpods Headphones,1,150,10/13/19 16:48,"471 7th St, New York City, NY 10001" +268433,Lightning Charging Cable,1,14.95,10/15/19 12:41,"919 North St, Austin, TX 73301" +268434,AA Batteries (4-pack),1,3.84,10/30/19 09:32,"897 Jefferson St, Seattle, WA 98101" +268435,Wired Headphones,1,11.99,10/09/19 11:22,"266 13th St, New York City, NY 10001" +268436,Wired Headphones,1,11.99,10/31/19 20:17,"830 Church St, Seattle, WA 98101" +268437,AA Batteries (4-pack),1,3.84,10/27/19 13:25,"104 Meadow St, San Francisco, CA 94016" +268438,Bose SoundSport Headphones,2,99.99,10/20/19 13:54,"801 Jackson St, San Francisco, CA 94016" +268439,27in 4K Gaming Monitor,1,389.99,10/12/19 12:39,"990 South St, Austin, TX 73301" +268440,34in Ultrawide Monitor,1,379.99,10/27/19 14:07,"119 Jefferson St, San Francisco, CA 94016" +268441,34in Ultrawide Monitor,1,379.99,10/22/19 23:32,"973 Dogwood St, Austin, TX 73301" +268442,Wired Headphones,1,11.99,10/02/19 13:41,"635 6th St, Los Angeles, CA 90001" +268443,AA Batteries (4-pack),1,3.84,10/02/19 21:24,"627 13th St, New York City, NY 10001" +268444,Bose SoundSport Headphones,1,99.99,10/19/19 19:28,"271 Church St, San Francisco, CA 94016" +268445,Flatscreen TV,1,300,10/21/19 12:27,"786 Forest St, San Francisco, CA 94016" +268446,Vareebadd Phone,1,400,10/05/19 13:42,"328 2nd St, San Francisco, CA 94016" +268447,AAA Batteries (4-pack),1,2.99,10/02/19 12:18,"748 9th St, Los Angeles, CA 90001" +268448,Google Phone,1,600,10/11/19 07:31,"863 Washington St, Seattle, WA 98101" +268449,27in FHD Monitor,1,149.99,10/23/19 14:50,"69 Dogwood St, Los Angeles, CA 90001" +268450,Bose SoundSport Headphones,1,99.99,10/12/19 18:36,"616 South St, New York City, NY 10001" +268451,Google Phone,1,600,10/10/19 21:03,"956 North St, San Francisco, CA 94016" +268452,AAA Batteries (4-pack),1,2.99,10/26/19 22:08,"500 South St, Los Angeles, CA 90001" +268453,34in Ultrawide Monitor,1,379.99,10/26/19 12:40,"522 10th St, Atlanta, GA 30301" +268454,Lightning Charging Cable,1,14.95,10/08/19 07:33,"440 Sunset St, Portland, OR 97035" +268455,ThinkPad Laptop,1,999.99,10/29/19 19:48,"351 6th St, New York City, NY 10001" +268456,27in FHD Monitor,1,149.99,10/20/19 00:49,"376 Highland St, San Francisco, CA 94016" +268457,Lightning Charging Cable,1,14.95,10/06/19 09:15,"579 9th St, San Francisco, CA 94016" +268458,AA Batteries (4-pack),1,3.84,10/15/19 21:52,"30 Maple St, Los Angeles, CA 90001" +268459,iPhone,1,700,10/25/19 14:24,"50 Pine St, Boston, MA 02215" +268460,AA Batteries (4-pack),1,3.84,10/12/19 08:39,"613 Elm St, San Francisco, CA 94016" +268461,Bose SoundSport Headphones,1,99.99,10/14/19 12:49,"330 Lake St, San Francisco, CA 94016" +268462,ThinkPad Laptop,1,999.99,10/05/19 19:47,"435 7th St, Dallas, TX 75001" +268463,Wired Headphones,2,11.99,10/17/19 23:45,"844 Willow St, Dallas, TX 75001" +268464,USB-C Charging Cable,1,11.95,10/15/19 20:02,"433 Wilson St, Atlanta, GA 30301" +268465,Lightning Charging Cable,1,14.95,10/29/19 23:45,"711 Jefferson St, Los Angeles, CA 90001" +268466,AA Batteries (4-pack),1,3.84,10/26/19 14:49,"556 Ridge St, Los Angeles, CA 90001" +268467,USB-C Charging Cable,1,11.95,10/01/19 16:33,"642 13th St, San Francisco, CA 94016" +268468,Lightning Charging Cable,1,14.95,10/31/19 22:01,"818 Forest St, Austin, TX 73301" +268469,Lightning Charging Cable,4,14.95,10/30/19 14:01,"898 Lincoln St, San Francisco, CA 94016" +268470,LG Dryer,1,600.0,10/23/19 17:52,"836 Chestnut St, San Francisco, CA 94016" +268471,Bose SoundSport Headphones,1,99.99,10/11/19 21:24,"481 Wilson St, Boston, MA 02215" +268472,34in Ultrawide Monitor,1,379.99,10/15/19 20:46,"577 Chestnut St, Los Angeles, CA 90001" +268473,Wired Headphones,1,11.99,10/14/19 09:13,"725 Jackson St, Boston, MA 02215" +268474,27in 4K Gaming Monitor,1,389.99,10/05/19 18:42,"644 Highland St, San Francisco, CA 94016" +268475,Macbook Pro Laptop,1,1700,10/11/19 00:07,"361 Forest St, New York City, NY 10001" +268476,USB-C Charging Cable,2,11.95,10/31/19 18:16,"234 Lake St, San Francisco, CA 94016" +268477,34in Ultrawide Monitor,1,379.99,10/25/19 11:53,"170 14th St, New York City, NY 10001" +268478,iPhone,1,700,10/06/19 11:50,"818 Johnson St, New York City, NY 10001" +268479,ThinkPad Laptop,1,999.99,10/11/19 11:23,"854 11th St, Los Angeles, CA 90001" +268480,Lightning Charging Cable,1,14.95,10/13/19 13:19,"390 11th St, Los Angeles, CA 90001" +268481,LG Washing Machine,1,600.0,10/23/19 14:48,"896 14th St, Dallas, TX 75001" +268482,ThinkPad Laptop,1,999.99,10/09/19 10:55,"835 12th St, Seattle, WA 98101" +268483,Wired Headphones,1,11.99,10/16/19 10:20,"972 9th St, San Francisco, CA 94016" +268484,Bose SoundSport Headphones,1,99.99,10/19/19 17:45,"694 7th St, Dallas, TX 75001" +268485,27in FHD Monitor,1,149.99,10/25/19 22:33,"470 Meadow St, Atlanta, GA 30301" +268485,Flatscreen TV,1,300,10/25/19 22:33,"470 Meadow St, Atlanta, GA 30301" +268486,Lightning Charging Cable,1,14.95,10/15/19 14:48,"251 North St, New York City, NY 10001" +268487,iPhone,1,700,10/05/19 09:35,"444 9th St, San Francisco, CA 94016" +268488,AAA Batteries (4-pack),1,2.99,10/10/19 14:15,"911 North St, Los Angeles, CA 90001" +268489,Lightning Charging Cable,1,14.95,10/03/19 17:36,"678 Church St, New York City, NY 10001" +268490,Lightning Charging Cable,1,14.95,10/20/19 09:01,"790 Hickory St, Atlanta, GA 30301" +268491,AAA Batteries (4-pack),1,2.99,10/18/19 23:02,"701 Madison St, Atlanta, GA 30301" +268492,AAA Batteries (4-pack),8,2.99,10/27/19 16:12,"270 5th St, San Francisco, CA 94016" +268493,AA Batteries (4-pack),1,3.84,10/31/19 17:34,"940 West St, Portland, OR 97035" +268494,20in Monitor,1,109.99,10/06/19 15:49,"148 Lakeview St, Dallas, TX 75001" +268495,Apple Airpods Headphones,1,150,10/01/19 12:22,"700 Maple St, Dallas, TX 75001" +268496,Vareebadd Phone,1,400,10/06/19 18:35,"804 West St, Austin, TX 73301" +268497,USB-C Charging Cable,1,11.95,10/09/19 08:50,"583 Center St, Los Angeles, CA 90001" +,,,,, +268498,Bose SoundSport Headphones,1,99.99,10/31/19 18:47,"483 Jefferson St, Boston, MA 02215" +268499,Apple Airpods Headphones,1,150,10/23/19 19:00,"75 Wilson St, Los Angeles, CA 90001" +268500,Apple Airpods Headphones,1,150,10/11/19 10:49,"875 13th St, New York City, NY 10001" +268501,Wired Headphones,1,11.99,10/09/19 09:44,"514 River St, Los Angeles, CA 90001" +268502,iPhone,1,700,10/07/19 16:42,"527 Highland St, San Francisco, CA 94016" +268502,Apple Airpods Headphones,1,150,10/07/19 16:42,"527 Highland St, San Francisco, CA 94016" +268503,AAA Batteries (4-pack),2,2.99,10/15/19 17:52,"185 1st St, Los Angeles, CA 90001" +268504,Lightning Charging Cable,1,14.95,10/25/19 18:38,"47 South St, Seattle, WA 98101" +268505,Wired Headphones,1,11.99,10/07/19 20:48,"833 5th St, New York City, NY 10001" +268506,USB-C Charging Cable,1,11.95,10/02/19 22:15,"993 4th St, San Francisco, CA 94016" +268507,AAA Batteries (4-pack),1,2.99,10/31/19 18:34,"780 Lakeview St, Los Angeles, CA 90001" +268508,Apple Airpods Headphones,1,150,10/11/19 19:46,"102 Johnson St, Los Angeles, CA 90001" +268509,Wired Headphones,1,11.99,10/07/19 18:03,"38 8th St, Los Angeles, CA 90001" +268510,Wired Headphones,1,11.99,10/02/19 12:10,"327 Cedar St, Seattle, WA 98101" +268511,Wired Headphones,1,11.99,10/16/19 12:48,"789 Jefferson St, New York City, NY 10001" +268512,Lightning Charging Cable,1,14.95,10/03/19 18:19,"842 Hill St, New York City, NY 10001" +268513,Flatscreen TV,1,300,10/21/19 17:33,"962 Cherry St, Boston, MA 02215" +268514,AA Batteries (4-pack),2,3.84,10/21/19 13:56,"461 7th St, Los Angeles, CA 90001" +268515,Lightning Charging Cable,1,14.95,10/28/19 22:13,"17 Hickory St, San Francisco, CA 94016" +268516,ThinkPad Laptop,1,999.99,10/26/19 15:07,"731 Lake St, Boston, MA 02215" +268517,AAA Batteries (4-pack),2,2.99,10/12/19 19:08,"994 Elm St, Atlanta, GA 30301" +268518,USB-C Charging Cable,1,11.95,10/21/19 22:35,"544 Wilson St, Dallas, TX 75001" +268519,Lightning Charging Cable,1,14.95,10/03/19 12:16,"978 Walnut St, Los Angeles, CA 90001" +268520,Bose SoundSport Headphones,1,99.99,10/07/19 10:49,"384 Jefferson St, Dallas, TX 75001" +268521,Macbook Pro Laptop,1,1700,10/13/19 22:47,"141 Meadow St, Dallas, TX 75001" +268522,USB-C Charging Cable,2,11.95,10/05/19 11:55,"887 Madison St, San Francisco, CA 94016" +268523,Google Phone,1,600,10/22/19 15:53,"865 Lake St, San Francisco, CA 94016" +268524,USB-C Charging Cable,2,11.95,10/31/19 05:46,"525 Chestnut St, San Francisco, CA 94016" +268525,Wired Headphones,1,11.99,10/15/19 15:50,"269 Ridge St, Portland, OR 97035" +268526,AA Batteries (4-pack),1,3.84,10/15/19 12:01,"4 River St, Los Angeles, CA 90001" +268527,34in Ultrawide Monitor,1,379.99,10/11/19 19:12,"807 Ridge St, San Francisco, CA 94016" +268528,AA Batteries (4-pack),2,3.84,10/07/19 11:53,"843 8th St, Los Angeles, CA 90001" +268529,20in Monitor,1,109.99,10/02/19 19:15,"404 Madison St, Atlanta, GA 30301" +268530,AAA Batteries (4-pack),1,2.99,10/26/19 11:43,"611 13th St, Portland, OR 97035" +268531,Lightning Charging Cable,1,14.95,10/18/19 16:40,"156 4th St, Austin, TX 73301" +268532,iPhone,1,700,10/25/19 19:31,"764 8th St, Los Angeles, CA 90001" +268532,Apple Airpods Headphones,1,150,10/25/19 19:31,"764 8th St, Los Angeles, CA 90001" +268533,iPhone,1,700,10/15/19 19:55,"509 Hill St, Los Angeles, CA 90001" +268533,Lightning Charging Cable,1,14.95,10/15/19 19:55,"509 Hill St, Los Angeles, CA 90001" +268534,AA Batteries (4-pack),2,3.84,10/26/19 10:12,"625 8th St, New York City, NY 10001" +268535,ThinkPad Laptop,1,999.99,10/19/19 15:06,"994 Lakeview St, Atlanta, GA 30301" +268536,AA Batteries (4-pack),1,3.84,10/22/19 17:14,"449 Lincoln St, New York City, NY 10001" +268537,USB-C Charging Cable,1,11.95,10/15/19 15:51,"894 Highland St, Dallas, TX 75001" +268538,Google Phone,1,600,10/05/19 15:27,"290 7th St, Austin, TX 73301" +268539,Wired Headphones,1,11.99,10/17/19 09:20,"202 Forest St, Austin, TX 73301" +268540,Wired Headphones,1,11.99,10/06/19 08:59,"589 14th St, San Francisco, CA 94016" +268541,AAA Batteries (4-pack),2,2.99,10/23/19 06:03,"875 Hickory St, Austin, TX 73301" +268542,Apple Airpods Headphones,1,150,10/18/19 01:07,"52 Elm St, Los Angeles, CA 90001" +268543,Wired Headphones,1,11.99,10/09/19 18:49,"204 5th St, Los Angeles, CA 90001" +268544,AA Batteries (4-pack),1,3.84,10/12/19 21:32,"294 Center St, San Francisco, CA 94016" +268545,Lightning Charging Cable,1,14.95,10/04/19 11:22,"159 River St, Seattle, WA 98101" +268546,Flatscreen TV,1,300,10/13/19 09:26,"664 Park St, Los Angeles, CA 90001" +268547,ThinkPad Laptop,1,999.99,10/31/19 11:43,"589 Lake St, Boston, MA 02215" +268548,Lightning Charging Cable,1,14.95,10/27/19 18:47,"611 7th St, Portland, ME 04101" +268549,Lightning Charging Cable,1,14.95,10/26/19 11:12,"586 Church St, San Francisco, CA 94016" +268550,Wired Headphones,2,11.99,10/23/19 06:24,"135 Hill St, Boston, MA 02215" +268551,AA Batteries (4-pack),1,3.84,10/13/19 19:19,"128 8th St, San Francisco, CA 94016" +268552,Bose SoundSport Headphones,1,99.99,10/16/19 17:21,"930 5th St, Los Angeles, CA 90001" +268553,Lightning Charging Cable,1,14.95,10/15/19 18:17,"113 Chestnut St, San Francisco, CA 94016" +268554,Google Phone,1,600,10/30/19 16:21,"372 Highland St, Seattle, WA 98101" +268554,USB-C Charging Cable,1,11.95,10/30/19 16:21,"372 Highland St, Seattle, WA 98101" +268555,USB-C Charging Cable,1,11.95,10/08/19 19:48,"156 Jackson St, Seattle, WA 98101" +268556,USB-C Charging Cable,1,11.95,10/16/19 16:08,"438 Highland St, Portland, OR 97035" +268557,27in FHD Monitor,1,149.99,10/12/19 19:31,"337 Johnson St, New York City, NY 10001" +268558,USB-C Charging Cable,1,11.95,10/17/19 19:53,"491 Main St, Seattle, WA 98101" +268559,USB-C Charging Cable,1,11.95,10/08/19 11:11,"330 11th St, Dallas, TX 75001" +268560,Google Phone,1,600,10/30/19 21:17,"302 Sunset St, San Francisco, CA 94016" +268560,Wired Headphones,1,11.99,10/30/19 21:17,"302 Sunset St, San Francisco, CA 94016" +268561,27in 4K Gaming Monitor,1,389.99,10/17/19 15:05,"806 Sunset St, Dallas, TX 75001" +268562,34in Ultrawide Monitor,1,379.99,10/12/19 13:57,"143 Highland St, Los Angeles, CA 90001" +268563,Vareebadd Phone,1,400,10/27/19 20:04,"183 6th St, San Francisco, CA 94016" +268564,Lightning Charging Cable,1,14.95,10/10/19 12:21,"130 2nd St, New York City, NY 10001" +268565,Bose SoundSport Headphones,1,99.99,10/22/19 20:07,"696 5th St, Seattle, WA 98101" +268566,Lightning Charging Cable,1,14.95,10/02/19 20:26,"7 Forest St, Boston, MA 02215" +268567,AA Batteries (4-pack),2,3.84,10/09/19 19:16,"703 Washington St, San Francisco, CA 94016" +268568,AAA Batteries (4-pack),3,2.99,10/10/19 22:12,"921 11th St, San Francisco, CA 94016" +268569,AAA Batteries (4-pack),1,2.99,10/01/19 11:37,"324 Center St, San Francisco, CA 94016" +268570,AA Batteries (4-pack),1,3.84,10/27/19 09:45,"614 North St, Los Angeles, CA 90001" +268571,Bose SoundSport Headphones,1,99.99,10/12/19 17:09,"219 6th St, Dallas, TX 75001" +268572,Wired Headphones,1,11.99,10/27/19 11:51,"713 Forest St, San Francisco, CA 94016" +268573,Bose SoundSport Headphones,1,99.99,10/27/19 20:54,"582 6th St, Seattle, WA 98101" +268574,Lightning Charging Cable,1,14.95,10/12/19 12:40,"201 Pine St, Los Angeles, CA 90001" +268575,Macbook Pro Laptop,1,1700,10/05/19 11:57,"687 1st St, Los Angeles, CA 90001" +268576,iPhone,1,700,10/14/19 19:05,"953 Lincoln St, Atlanta, GA 30301" +268576,Lightning Charging Cable,1,14.95,10/14/19 19:05,"953 Lincoln St, Atlanta, GA 30301" +268577,Lightning Charging Cable,1,14.95,10/31/19 22:16,"642 South St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +268578,Macbook Pro Laptop,1,1700,10/20/19 10:00,"604 Meadow St, Dallas, TX 75001" +268579,USB-C Charging Cable,1,11.95,10/19/19 10:32,"420 4th St, Seattle, WA 98101" +268580,Bose SoundSport Headphones,1,99.99,10/17/19 19:17,"713 Lake St, New York City, NY 10001" +268581,USB-C Charging Cable,4,11.95,10/24/19 18:15,"979 Cherry St, New York City, NY 10001" +268582,Apple Airpods Headphones,1,150,10/18/19 08:46,"206 Lincoln St, Los Angeles, CA 90001" +268583,Bose SoundSport Headphones,1,99.99,10/05/19 12:08,"861 4th St, Boston, MA 02215" +268584,Macbook Pro Laptop,1,1700,10/25/19 20:56,"471 Lincoln St, Boston, MA 02215" +268585,USB-C Charging Cable,1,11.95,10/16/19 09:44,"46 Lake St, Seattle, WA 98101" +268586,Apple Airpods Headphones,1,150,10/24/19 09:20,"136 Ridge St, San Francisco, CA 94016" +268587,27in FHD Monitor,1,149.99,10/07/19 22:06,"335 7th St, San Francisco, CA 94016" +268588,USB-C Charging Cable,1,11.95,10/31/19 13:32,"797 Jefferson St, Portland, OR 97035" +268589,AA Batteries (4-pack),1,3.84,10/02/19 12:08,"384 Elm St, Los Angeles, CA 90001" +268590,USB-C Charging Cable,1,11.95,10/06/19 21:49,"761 Jackson St, New York City, NY 10001" +268591,27in FHD Monitor,1,149.99,10/02/19 16:06,"529 Ridge St, New York City, NY 10001" +268592,Flatscreen TV,1,300,10/13/19 02:48,"45 South St, Los Angeles, CA 90001" +268592,ThinkPad Laptop,1,999.99,10/13/19 02:48,"45 South St, Los Angeles, CA 90001" +268593,27in 4K Gaming Monitor,1,389.99,10/29/19 11:31,"771 Lincoln St, Austin, TX 73301" +268594,20in Monitor,1,109.99,10/26/19 17:58,"174 Jackson St, Atlanta, GA 30301" +268595,Flatscreen TV,1,300,10/28/19 18:25,"830 2nd St, San Francisco, CA 94016" +268595,AA Batteries (4-pack),1,3.84,10/28/19 18:25,"830 2nd St, San Francisco, CA 94016" +268596,AAA Batteries (4-pack),3,2.99,10/17/19 22:25,"301 Willow St, Portland, ME 04101" +268597,Wired Headphones,1,11.99,10/10/19 23:04,"670 Park St, Seattle, WA 98101" +268598,USB-C Charging Cable,1,11.95,10/27/19 02:41,"365 Lakeview St, Austin, TX 73301" +268599,Wired Headphones,1,11.99,10/20/19 11:45,"415 Pine St, Seattle, WA 98101" +268600,AA Batteries (4-pack),1,3.84,10/23/19 15:22,"973 12th St, Dallas, TX 75001" +268600,Wired Headphones,2,11.99,10/23/19 15:22,"973 12th St, Dallas, TX 75001" +268601,AA Batteries (4-pack),1,3.84,10/08/19 21:38,"14 Chestnut St, Boston, MA 02215" +268602,iPhone,1,700,10/10/19 09:39,"932 1st St, San Francisco, CA 94016" +268602,Wired Headphones,1,11.99,10/10/19 09:39,"932 1st St, San Francisco, CA 94016" +268603,Lightning Charging Cable,1,14.95,10/01/19 11:31,"79 Wilson St, Austin, TX 73301" +268604,Apple Airpods Headphones,1,150,10/25/19 18:00,"762 2nd St, Boston, MA 02215" +268605,USB-C Charging Cable,1,11.95,10/25/19 19:03,"523 9th St, Boston, MA 02215" +268606,USB-C Charging Cable,1,11.95,10/19/19 20:25,"164 Johnson St, Dallas, TX 75001" +268607,20in Monitor,1,109.99,10/31/19 18:26,"389 South St, Dallas, TX 75001" +268608,iPhone,1,700,10/20/19 16:03,"988 2nd St, Boston, MA 02215" +268608,Wired Headphones,1,11.99,10/20/19 16:03,"988 2nd St, Boston, MA 02215" +268609,34in Ultrawide Monitor,1,379.99,10/02/19 20:33,"331 West St, New York City, NY 10001" +268610,Lightning Charging Cable,1,14.95,10/02/19 20:42,"82 Park St, Seattle, WA 98101" +268611,USB-C Charging Cable,1,11.95,10/11/19 18:07,"259 West St, Atlanta, GA 30301" +268612,34in Ultrawide Monitor,1,379.99,10/12/19 00:22,"540 Meadow St, New York City, NY 10001" +268613,Vareebadd Phone,1,400,10/22/19 13:25,"645 Park St, Atlanta, GA 30301" +268614,Lightning Charging Cable,2,14.95,10/26/19 14:45,"419 Wilson St, Atlanta, GA 30301" +268615,20in Monitor,1,109.99,10/06/19 10:40,"542 Lincoln St, Austin, TX 73301" +268616,USB-C Charging Cable,1,11.95,10/18/19 20:17,"437 Willow St, Austin, TX 73301" +268617,20in Monitor,1,109.99,10/03/19 18:58,"754 Madison St, Los Angeles, CA 90001" +268618,Lightning Charging Cable,1,14.95,10/18/19 18:27,"208 River St, San Francisco, CA 94016" +268619,Apple Airpods Headphones,1,150,10/04/19 16:11,"63 Elm St, New York City, NY 10001" +268620,AA Batteries (4-pack),1,3.84,10/02/19 19:28,"362 Walnut St, Boston, MA 02215" +268621,AAA Batteries (4-pack),2,2.99,10/03/19 13:05,"47 Jefferson St, Seattle, WA 98101" +268622,USB-C Charging Cable,1,11.95,10/25/19 21:47,"475 Dogwood St, San Francisco, CA 94016" +268623,AAA Batteries (4-pack),1,2.99,10/25/19 22:43,"837 Cherry St, New York City, NY 10001" +268624,Macbook Pro Laptop,1,1700,10/18/19 18:32,"887 Hickory St, New York City, NY 10001" +268625,Wired Headphones,1,11.99,10/22/19 20:03,"884 Park St, Atlanta, GA 30301" +268626,Macbook Pro Laptop,1,1700,10/18/19 07:24,"639 Jefferson St, Dallas, TX 75001" +268627,USB-C Charging Cable,1,11.95,10/10/19 15:24,"741 Willow St, San Francisco, CA 94016" +268628,Flatscreen TV,1,300,10/12/19 09:16,"125 Walnut St, Los Angeles, CA 90001" +268629,USB-C Charging Cable,1,11.95,10/27/19 12:24,"750 Jefferson St, San Francisco, CA 94016" +268630,Lightning Charging Cable,1,14.95,10/15/19 08:49,"517 Chestnut St, San Francisco, CA 94016" +268631,Wired Headphones,1,11.99,10/06/19 11:58,"156 14th St, Austin, TX 73301" +268632,Lightning Charging Cable,1,14.95,10/22/19 11:00,"587 Meadow St, Austin, TX 73301" +268633,ThinkPad Laptop,1,999.99,10/24/19 10:38,"703 7th St, Dallas, TX 75001" +268634,Bose SoundSport Headphones,1,99.99,10/14/19 21:54,"703 Ridge St, Los Angeles, CA 90001" +268635,Apple Airpods Headphones,1,150,10/04/19 02:28,"976 Dogwood St, Los Angeles, CA 90001" +268636,Wired Headphones,2,11.99,10/21/19 15:50,"150 Ridge St, Dallas, TX 75001" +268637,AA Batteries (4-pack),1,3.84,10/25/19 04:38,"764 Hill St, Seattle, WA 98101" +268637,iPhone,1,700,10/25/19 04:38,"764 Hill St, Seattle, WA 98101" +268638,Flatscreen TV,1,300,10/03/19 20:01,"806 Forest St, Portland, OR 97035" +268639,Lightning Charging Cable,2,14.95,10/13/19 17:41,"801 Madison St, San Francisco, CA 94016" +268640,Wired Headphones,1,11.99,10/20/19 10:34,"336 10th St, Los Angeles, CA 90001" +268641,Flatscreen TV,1,300,10/07/19 12:30,"726 Lincoln St, San Francisco, CA 94016" +268642,USB-C Charging Cable,1,11.95,10/17/19 22:37,"168 Hill St, San Francisco, CA 94016" +268643,AA Batteries (4-pack),1,3.84,10/12/19 19:48,"943 Madison St, San Francisco, CA 94016" +268644,AA Batteries (4-pack),1,3.84,10/18/19 22:50,"780 13th St, New York City, NY 10001" +268645,20in Monitor,1,109.99,10/20/19 15:26,"88 Ridge St, Dallas, TX 75001" +268646,AA Batteries (4-pack),1,3.84,10/18/19 19:04,"750 Center St, Los Angeles, CA 90001" +268647,USB-C Charging Cable,1,11.95,10/15/19 19:27,"670 4th St, San Francisco, CA 94016" +268648,27in 4K Gaming Monitor,1,389.99,10/05/19 18:13,"850 7th St, Atlanta, GA 30301" +268649,Apple Airpods Headphones,1,150,10/06/19 14:29,"372 River St, Atlanta, GA 30301" +268650,Google Phone,1,600,10/08/19 08:28,"612 Pine St, Austin, TX 73301" +268651,USB-C Charging Cable,1,11.95,10/17/19 19:48,"653 Jackson St, New York City, NY 10001" +268652,AAA Batteries (4-pack),3,2.99,10/17/19 18:21,"837 Lincoln St, Austin, TX 73301" +268653,AAA Batteries (4-pack),1,2.99,10/16/19 23:04,"77 2nd St, Los Angeles, CA 90001" +268654,Apple Airpods Headphones,1,150,10/26/19 15:07,"842 Ridge St, Portland, OR 97035" +268655,Apple Airpods Headphones,1,150,10/06/19 19:44,"16 4th St, New York City, NY 10001" +268656,Apple Airpods Headphones,1,150,10/05/19 12:35,"249 Dogwood St, New York City, NY 10001" +268657,34in Ultrawide Monitor,1,379.99,10/19/19 18:41,"349 Highland St, Los Angeles, CA 90001" +268658,AAA Batteries (4-pack),2,2.99,10/24/19 13:19,"881 8th St, New York City, NY 10001" +268659,Apple Airpods Headphones,1,150,10/24/19 13:07,"711 Highland St, San Francisco, CA 94016" +268660,Bose SoundSport Headphones,1,99.99,10/28/19 00:16,"513 4th St, San Francisco, CA 94016" +268661,USB-C Charging Cable,1,11.95,10/09/19 22:31,"140 Washington St, Seattle, WA 98101" +268661,LG Dryer,1,600.0,10/09/19 22:31,"140 Washington St, Seattle, WA 98101" +268662,USB-C Charging Cable,1,11.95,10/12/19 21:06,"764 Forest St, Dallas, TX 75001" +268663,34in Ultrawide Monitor,1,379.99,10/20/19 15:51,"649 Sunset St, Dallas, TX 75001" +268664,AAA Batteries (4-pack),1,2.99,10/27/19 12:07,"26 Wilson St, New York City, NY 10001" +268665,AAA Batteries (4-pack),2,2.99,10/22/19 22:02,"955 Madison St, San Francisco, CA 94016" +268666,AA Batteries (4-pack),2,3.84,10/02/19 20:50,"295 Spruce St, Boston, MA 02215" +268667,ThinkPad Laptop,1,999.99,10/24/19 11:14,"136 Main St, San Francisco, CA 94016" +268668,27in 4K Gaming Monitor,1,389.99,10/19/19 22:13,"868 13th St, Los Angeles, CA 90001" +268669,USB-C Charging Cable,1,11.95,10/18/19 14:24,"287 12th St, San Francisco, CA 94016" +268670,USB-C Charging Cable,1,11.95,10/27/19 08:07,"811 Lincoln St, Austin, TX 73301" +268671,AA Batteries (4-pack),1,3.84,10/25/19 11:25,"688 Lakeview St, New York City, NY 10001" +268672,iPhone,1,700,10/16/19 22:19,"786 Sunset St, Boston, MA 02215" +268673,Google Phone,1,600,10/16/19 11:12,"612 Johnson St, New York City, NY 10001" +268674,AAA Batteries (4-pack),4,2.99,10/21/19 16:59,"230 North St, Los Angeles, CA 90001" +268675,Lightning Charging Cable,1,14.95,10/21/19 14:23,"870 Pine St, San Francisco, CA 94016" +268676,Lightning Charging Cable,1,14.95,10/16/19 15:59,"573 South St, Boston, MA 02215" +268677,Vareebadd Phone,1,400,10/29/19 15:53,"685 Highland St, Dallas, TX 75001" +268677,Wired Headphones,1,11.99,10/29/19 15:53,"685 Highland St, Dallas, TX 75001" +268678,Wired Headphones,1,11.99,10/10/19 23:13,"674 Dogwood St, San Francisco, CA 94016" +268679,Bose SoundSport Headphones,1,99.99,10/30/19 19:20,"350 Church St, San Francisco, CA 94016" +268680,Wired Headphones,1,11.99,10/12/19 10:13,"205 Walnut St, Los Angeles, CA 90001" +268681,AA Batteries (4-pack),1,3.84,10/12/19 11:38,"659 Park St, San Francisco, CA 94016" +268682,Macbook Pro Laptop,1,1700,10/06/19 15:51,"582 Hill St, San Francisco, CA 94016" +268683,AA Batteries (4-pack),1,3.84,10/26/19 19:00,"415 South St, Seattle, WA 98101" +268684,Wired Headphones,1,11.99,10/19/19 10:16,"313 11th St, New York City, NY 10001" +268685,20in Monitor,1,109.99,10/04/19 20:10,"152 Lakeview St, Los Angeles, CA 90001" +268686,iPhone,1,700,10/31/19 11:42,"940 Forest St, San Francisco, CA 94016" +268686,Lightning Charging Cable,1,14.95,10/31/19 11:42,"940 Forest St, San Francisco, CA 94016" +268687,Apple Airpods Headphones,1,150,10/17/19 18:28,"836 Highland St, Portland, ME 04101" +268688,AAA Batteries (4-pack),1,2.99,10/13/19 08:14,"759 North St, Seattle, WA 98101" +268689,Apple Airpods Headphones,1,150,10/14/19 07:46,"777 Spruce St, San Francisco, CA 94016" +268690,AA Batteries (4-pack),2,3.84,10/17/19 11:13,"138 Jefferson St, Dallas, TX 75001" +268691,34in Ultrawide Monitor,1,379.99,10/17/19 16:13,"482 Washington St, San Francisco, CA 94016" +268692,USB-C Charging Cable,1,11.95,10/09/19 00:06,"441 Pine St, San Francisco, CA 94016" +268693,27in FHD Monitor,1,149.99,10/18/19 18:43,"121 Johnson St, Los Angeles, CA 90001" +268694,Wired Headphones,1,11.99,10/06/19 11:03,"774 Forest St, Atlanta, GA 30301" +268695,Lightning Charging Cable,1,14.95,10/12/19 14:51,"570 Walnut St, Dallas, TX 75001" +268696,27in 4K Gaming Monitor,1,389.99,10/01/19 11:39,"236 Ridge St, New York City, NY 10001" +268697,Wired Headphones,1,11.99,10/16/19 20:19,"85 9th St, Atlanta, GA 30301" +268698,27in FHD Monitor,1,149.99,10/28/19 05:29,"173 Highland St, San Francisco, CA 94016" +268699,ThinkPad Laptop,1,999.99,10/31/19 16:49,"575 13th St, New York City, NY 10001" +268700,AA Batteries (4-pack),1,3.84,10/17/19 17:58,"302 9th St, Atlanta, GA 30301" +268701,Apple Airpods Headphones,1,150,10/07/19 21:58,"329 Pine St, New York City, NY 10001" +268702,27in 4K Gaming Monitor,1,389.99,10/09/19 15:52,"795 Washington St, San Francisco, CA 94016" +268703,27in FHD Monitor,1,149.99,10/20/19 14:06,"442 Maple St, Boston, MA 02215" +268704,Lightning Charging Cable,1,14.95,10/17/19 09:44,"940 North St, Atlanta, GA 30301" +268705,USB-C Charging Cable,1,11.95,10/09/19 09:51,"263 Sunset St, Dallas, TX 75001" +268706,27in 4K Gaming Monitor,1,389.99,10/14/19 11:32,"482 Park St, Dallas, TX 75001" +268707,Wired Headphones,1,11.99,10/22/19 19:11,"50 10th St, Boston, MA 02215" +268708,27in 4K Gaming Monitor,1,389.99,10/13/19 17:07,"730 Cedar St, Los Angeles, CA 90001" +268709,Bose SoundSport Headphones,1,99.99,10/18/19 12:46,"249 Chestnut St, San Francisco, CA 94016" +268710,Apple Airpods Headphones,1,150,10/19/19 18:23,"996 Park St, Portland, OR 97035" +268711,Flatscreen TV,1,300,10/28/19 06:09,"206 Elm St, Dallas, TX 75001" +268712,Macbook Pro Laptop,1,1700,10/25/19 10:08,"107 Hill St, Boston, MA 02215" +268713,Apple Airpods Headphones,1,150,10/11/19 07:44,"590 Jackson St, San Francisco, CA 94016" +268714,USB-C Charging Cable,1,11.95,10/28/19 21:45,"6 Meadow St, San Francisco, CA 94016" +268715,Apple Airpods Headphones,1,150,10/16/19 15:00,"389 8th St, San Francisco, CA 94016" +268716,AA Batteries (4-pack),1,3.84,10/22/19 12:30,"795 Hill St, Boston, MA 02215" +268717,AA Batteries (4-pack),2,3.84,10/27/19 18:17,"881 Walnut St, Dallas, TX 75001" +268718,AA Batteries (4-pack),1,3.84,10/16/19 17:39,"815 10th St, Austin, TX 73301" +268719,AAA Batteries (4-pack),2,2.99,10/30/19 16:16,"176 Dogwood St, San Francisco, CA 94016" +268720,Wired Headphones,1,11.99,10/09/19 13:59,"378 Cedar St, Boston, MA 02215" +268721,USB-C Charging Cable,1,11.95,10/27/19 18:57,"663 Elm St, San Francisco, CA 94016" +268722,Bose SoundSport Headphones,1,99.99,10/11/19 20:48,"354 Forest St, New York City, NY 10001" +268723,Bose SoundSport Headphones,1,99.99,10/07/19 14:00,"79 Highland St, Seattle, WA 98101" +268724,27in FHD Monitor,1,149.99,10/06/19 18:14,"632 13th St, Dallas, TX 75001" +268725,20in Monitor,1,109.99,10/05/19 18:09,"946 Jackson St, Austin, TX 73301" +268725,Google Phone,1,600,10/05/19 18:09,"946 Jackson St, Austin, TX 73301" +268726,Wired Headphones,1,11.99,10/06/19 13:06,"556 Jackson St, New York City, NY 10001" +268727,AA Batteries (4-pack),3,3.84,10/12/19 18:01,"908 Meadow St, San Francisco, CA 94016" +268728,AA Batteries (4-pack),1,3.84,10/25/19 16:47,"701 5th St, Los Angeles, CA 90001" +268729,Lightning Charging Cable,1,14.95,10/08/19 11:41,"73 Lake St, Austin, TX 73301" +268730,AAA Batteries (4-pack),1,2.99,10/07/19 22:17,"760 Johnson St, San Francisco, CA 94016" +268731,USB-C Charging Cable,1,11.95,10/16/19 19:25,"934 West St, Boston, MA 02215" +268732,AAA Batteries (4-pack),1,2.99,10/19/19 12:44,"146 North St, Seattle, WA 98101" +268733,Lightning Charging Cable,1,14.95,10/23/19 20:58,"196 West St, New York City, NY 10001" +268734,USB-C Charging Cable,1,11.95,10/20/19 18:07,"980 River St, Los Angeles, CA 90001" +268735,Apple Airpods Headphones,1,150,10/11/19 20:49,"445 Willow St, Seattle, WA 98101" +268736,iPhone,1,700,10/08/19 19:45,"165 4th St, New York City, NY 10001" +268737,27in 4K Gaming Monitor,1,389.99,10/17/19 21:05,"925 14th St, Boston, MA 02215" +268738,AA Batteries (4-pack),1,3.84,10/15/19 19:54,"895 2nd St, Austin, TX 73301" +268739,Apple Airpods Headphones,1,150,10/12/19 13:27,"452 7th St, Los Angeles, CA 90001" +268740,iPhone,1,700,10/27/19 18:33,"378 Madison St, Dallas, TX 75001" +268741,AA Batteries (4-pack),2,3.84,10/27/19 11:07,"497 Ridge St, Los Angeles, CA 90001" +268742,Flatscreen TV,1,300,10/04/19 18:31,"445 Cedar St, Boston, MA 02215" +268743,Apple Airpods Headphones,1,150,10/03/19 00:48,"7 Lake St, Boston, MA 02215" +268744,AA Batteries (4-pack),1,3.84,10/12/19 20:31,"593 Willow St, Los Angeles, CA 90001" +268745,27in 4K Gaming Monitor,1,389.99,10/29/19 02:05,"269 Wilson St, New York City, NY 10001" +268746,Lightning Charging Cable,1,14.95,10/09/19 12:16,"61 Lincoln St, Dallas, TX 75001" +268747,Apple Airpods Headphones,1,150,10/29/19 21:24,"708 9th St, New York City, NY 10001" +268748,AAA Batteries (4-pack),2,2.99,10/01/19 12:36,"884 10th St, San Francisco, CA 94016" +268749,USB-C Charging Cable,1,11.95,10/14/19 17:43,"984 South St, Los Angeles, CA 90001" +268750,ThinkPad Laptop,1,999.99,10/11/19 19:58,"977 Lake St, Seattle, WA 98101" +268751,Flatscreen TV,1,300,10/26/19 09:20,"570 12th St, Portland, OR 97035" +268752,20in Monitor,1,109.99,10/04/19 14:02,"813 5th St, San Francisco, CA 94016" +268753,Bose SoundSport Headphones,1,99.99,10/24/19 22:02,"66 Dogwood St, Boston, MA 02215" +268754,Macbook Pro Laptop,1,1700,10/28/19 10:13,"657 Chestnut St, Austin, TX 73301" +268755,iPhone,1,700,10/24/19 12:04,"377 6th St, Atlanta, GA 30301" +268756,Apple Airpods Headphones,1,150,10/10/19 14:39,"674 Lakeview St, Atlanta, GA 30301" +268757,AA Batteries (4-pack),1,3.84,10/04/19 11:21,"121 Madison St, Dallas, TX 75001" +268758,Apple Airpods Headphones,1,150,10/27/19 08:27,"412 1st St, Austin, TX 73301" +268759,Vareebadd Phone,1,400,10/10/19 18:55,"865 Jefferson St, New York City, NY 10001" +268760,AAA Batteries (4-pack),1,2.99,10/19/19 20:42,"415 7th St, San Francisco, CA 94016" +268761,Lightning Charging Cable,1,14.95,10/01/19 18:47,"338 Jackson St, San Francisco, CA 94016" +268762,Flatscreen TV,1,300,10/03/19 19:08,"406 11th St, Dallas, TX 75001" +268763,Lightning Charging Cable,1,14.95,10/25/19 11:47,"173 Center St, San Francisco, CA 94016" +268764,Wired Headphones,2,11.99,10/11/19 18:14,"904 South St, Dallas, TX 75001" +268765,27in FHD Monitor,1,149.99,10/14/19 12:02,"808 Forest St, Los Angeles, CA 90001" +268766,34in Ultrawide Monitor,1,379.99,10/04/19 22:17,"416 10th St, Boston, MA 02215" +268767,AAA Batteries (4-pack),1,2.99,10/15/19 08:06,"226 Main St, Atlanta, GA 30301" +268768,iPhone,1,700,10/24/19 12:44,"587 Madison St, Los Angeles, CA 90001" +268769,AAA Batteries (4-pack),1,2.99,10/30/19 06:40,"830 1st St, Boston, MA 02215" +268770,Lightning Charging Cable,1,14.95,10/24/19 14:27,"954 Lincoln St, Dallas, TX 75001" +268771,AA Batteries (4-pack),1,3.84,10/27/19 05:57,"727 Lake St, Los Angeles, CA 90001" +268772,AA Batteries (4-pack),1,3.84,10/01/19 19:02,"974 Johnson St, Boston, MA 02215" +268773,USB-C Charging Cable,1,11.95,10/19/19 17:34,"508 River St, New York City, NY 10001" +268774,Wired Headphones,1,11.99,10/24/19 18:56,"587 Spruce St, Los Angeles, CA 90001" +268775,USB-C Charging Cable,1,11.95,10/30/19 08:18,"269 Adams St, Dallas, TX 75001" +268776,AAA Batteries (4-pack),1,2.99,10/01/19 12:47,"587 Park St, Dallas, TX 75001" +268777,Bose SoundSport Headphones,1,99.99,10/20/19 21:01,"675 13th St, San Francisco, CA 94016" +268778,Lightning Charging Cable,1,14.95,10/07/19 20:46,"772 West St, San Francisco, CA 94016" +268779,Google Phone,1,600,10/23/19 02:09,"174 14th St, Los Angeles, CA 90001" +268779,USB-C Charging Cable,2,11.95,10/23/19 02:09,"174 14th St, Los Angeles, CA 90001" +268780,20in Monitor,1,109.99,10/07/19 17:59,"401 Willow St, New York City, NY 10001" +268781,AA Batteries (4-pack),1,3.84,10/17/19 10:03,"472 Madison St, San Francisco, CA 94016" +268782,Wired Headphones,2,11.99,10/18/19 07:51,"358 Ridge St, Portland, OR 97035" +268783,AAA Batteries (4-pack),1,2.99,10/31/19 10:17,"586 Maple St, Seattle, WA 98101" +268784,USB-C Charging Cable,1,11.95,10/19/19 13:00,"327 Johnson St, San Francisco, CA 94016" +268785,AA Batteries (4-pack),1,3.84,10/07/19 11:28,"142 Lake St, Atlanta, GA 30301" +268786,Lightning Charging Cable,1,14.95,10/22/19 15:22,"581 Dogwood St, Los Angeles, CA 90001" +268787,USB-C Charging Cable,1,11.95,10/25/19 12:23,"368 Lincoln St, Los Angeles, CA 90001" +268788,iPhone,1,700,10/27/19 03:09,"129 Johnson St, San Francisco, CA 94016" +268788,Apple Airpods Headphones,1,150,10/27/19 03:09,"129 Johnson St, San Francisco, CA 94016" +268789,AAA Batteries (4-pack),1,2.99,10/04/19 20:38,"174 Park St, Dallas, TX 75001" +268790,Wired Headphones,1,11.99,10/22/19 18:50,"197 Cherry St, Los Angeles, CA 90001" +268791,AAA Batteries (4-pack),1,2.99,10/14/19 15:41,"616 Highland St, Atlanta, GA 30301" +268792,ThinkPad Laptop,1,999.99,10/11/19 11:07,"365 Walnut St, Dallas, TX 75001" +268793,ThinkPad Laptop,1,999.99,10/31/19 15:55,"962 Washington St, Austin, TX 73301" +268794,27in 4K Gaming Monitor,1,389.99,10/23/19 19:52,"966 10th St, Dallas, TX 75001" +268795,AAA Batteries (4-pack),3,2.99,10/27/19 20:35,"975 Lincoln St, Boston, MA 02215" +268796,Wired Headphones,1,11.99,10/06/19 18:34,"398 10th St, Dallas, TX 75001" +268797,Google Phone,1,600,10/02/19 09:56,"90 Johnson St, San Francisco, CA 94016" +268797,AA Batteries (4-pack),2,3.84,10/02/19 09:56,"90 Johnson St, San Francisco, CA 94016" +268798,Macbook Pro Laptop,1,1700,10/14/19 18:16,"243 River St, Austin, TX 73301" +268799,Bose SoundSport Headphones,1,99.99,10/09/19 22:31,"998 West St, New York City, NY 10001" +268800,AA Batteries (4-pack),2,3.84,10/17/19 15:49,"18 9th St, San Francisco, CA 94016" +268801,AAA Batteries (4-pack),1,2.99,10/24/19 18:35,"427 Adams St, Dallas, TX 75001" +268802,USB-C Charging Cable,1,11.95,10/04/19 13:58,"993 11th St, Seattle, WA 98101" +268803,AA Batteries (4-pack),2,3.84,10/08/19 21:15,"244 Spruce St, Boston, MA 02215" +268804,Macbook Pro Laptop,1,1700,10/09/19 01:35,"731 Church St, San Francisco, CA 94016" +268805,Apple Airpods Headphones,1,150,10/15/19 11:00,"966 6th St, New York City, NY 10001" +268806,USB-C Charging Cable,1,11.95,10/16/19 10:58,"12 8th St, Dallas, TX 75001" +268807,20in Monitor,1,109.99,10/07/19 17:54,"490 4th St, Dallas, TX 75001" +268808,Wired Headphones,1,11.99,10/19/19 23:48,"81 14th St, New York City, NY 10001" +268809,AAA Batteries (4-pack),2,2.99,10/11/19 20:23,"906 Highland St, San Francisco, CA 94016" +268810,Lightning Charging Cable,1,14.95,10/10/19 23:13,"490 Pine St, Boston, MA 02215" +268811,USB-C Charging Cable,1,11.95,10/09/19 17:45,"762 13th St, New York City, NY 10001" +268812,USB-C Charging Cable,2,11.95,10/28/19 19:38,"671 Hickory St, San Francisco, CA 94016" +268813,AAA Batteries (4-pack),1,2.99,10/27/19 19:17,"794 Forest St, Seattle, WA 98101" +268814,27in 4K Gaming Monitor,1,389.99,10/13/19 15:16,"186 7th St, Los Angeles, CA 90001" +268815,USB-C Charging Cable,2,11.95,10/04/19 18:34,"580 13th St, Los Angeles, CA 90001" +268816,Lightning Charging Cable,1,14.95,10/23/19 16:03,"284 9th St, New York City, NY 10001" +268817,ThinkPad Laptop,1,999.99,10/13/19 12:57,"453 Main St, Portland, OR 97035" +268817,Wired Headphones,1,11.99,10/13/19 12:57,"453 Main St, Portland, OR 97035" +268818,27in FHD Monitor,1,149.99,10/22/19 15:43,"897 West St, Boston, MA 02215" +268819,27in FHD Monitor,1,149.99,10/01/19 20:25,"175 Lincoln St, New York City, NY 10001" +268820,AAA Batteries (4-pack),1,2.99,10/27/19 12:06,"851 Lake St, San Francisco, CA 94016" +268821,Bose SoundSport Headphones,1,99.99,10/09/19 16:55,"202 6th St, Los Angeles, CA 90001" +268822,USB-C Charging Cable,1,11.95,10/26/19 10:28,"959 Willow St, San Francisco, CA 94016" +268823,Macbook Pro Laptop,1,1700,10/05/19 19:43,"501 North St, San Francisco, CA 94016" +268824,Apple Airpods Headphones,1,150,10/29/19 16:21,"475 12th St, Boston, MA 02215" +268825,27in 4K Gaming Monitor,1,389.99,10/23/19 14:35,"779 Jackson St, Seattle, WA 98101" +268826,Apple Airpods Headphones,1,150,10/27/19 14:33,"116 Washington St, San Francisco, CA 94016" +268827,AAA Batteries (4-pack),1,2.99,10/04/19 14:19,"418 Willow St, San Francisco, CA 94016" +268828,AA Batteries (4-pack),1,3.84,10/01/19 07:26,"936 Highland St, Los Angeles, CA 90001" +268829,27in 4K Gaming Monitor,1,389.99,10/12/19 14:12,"880 Spruce St, Portland, OR 97035" +268830,AAA Batteries (4-pack),1,2.99,10/08/19 20:54,"539 Sunset St, New York City, NY 10001" +268831,AA Batteries (4-pack),1,3.84,10/24/19 15:04,"59 Jackson St, Portland, OR 97035" +268832,27in 4K Gaming Monitor,1,389.99,10/07/19 15:42,"73 Lincoln St, Atlanta, GA 30301" +268833,USB-C Charging Cable,1,11.95,10/02/19 22:47,"206 Highland St, New York City, NY 10001" +268833,Bose SoundSport Headphones,1,99.99,10/02/19 22:47,"206 Highland St, New York City, NY 10001" +268834,USB-C Charging Cable,1,11.95,10/15/19 21:00,"223 6th St, Boston, MA 02215" +268835,Wired Headphones,1,11.99,10/19/19 16:20,"2 Hickory St, San Francisco, CA 94016" +268836,AAA Batteries (4-pack),2,2.99,10/03/19 12:04,"988 Walnut St, Los Angeles, CA 90001" +268836,Wired Headphones,1,11.99,10/03/19 12:04,"988 Walnut St, Los Angeles, CA 90001" +268837,Lightning Charging Cable,1,14.95,10/10/19 20:50,"776 7th St, San Francisco, CA 94016" +268838,Flatscreen TV,1,300,10/31/19 17:23,"839 4th St, Los Angeles, CA 90001" +268839,Bose SoundSport Headphones,1,99.99,10/08/19 04:43,"812 7th St, Austin, TX 73301" +268840,Flatscreen TV,1,300,10/22/19 11:32,"143 Forest St, Boston, MA 02215" +268841,Lightning Charging Cable,1,14.95,10/09/19 12:51,"434 South St, New York City, NY 10001" +268842,27in FHD Monitor,1,149.99,10/05/19 19:29,"462 8th St, San Francisco, CA 94016" +268843,Apple Airpods Headphones,1,150,10/12/19 18:44,"579 Jefferson St, Portland, OR 97035" +268844,AAA Batteries (4-pack),1,2.99,10/11/19 10:19,"211 Pine St, Los Angeles, CA 90001" +268845,Apple Airpods Headphones,1,150,10/25/19 06:29,"747 Cherry St, Atlanta, GA 30301" +268846,AA Batteries (4-pack),1,3.84,10/13/19 11:03,"333 11th St, Boston, MA 02215" +268847,27in FHD Monitor,1,149.99,10/26/19 14:19,"723 River St, San Francisco, CA 94016" +268848,Lightning Charging Cable,1,14.95,10/13/19 13:45,"541 Washington St, Atlanta, GA 30301" +268849,Lightning Charging Cable,2,14.95,10/26/19 01:34,"690 South St, New York City, NY 10001" +268850,AAA Batteries (4-pack),2,2.99,10/19/19 23:51,"488 Church St, Austin, TX 73301" +268851,Apple Airpods Headphones,1,150,10/05/19 19:01,"823 Washington St, San Francisco, CA 94016" +268852,27in FHD Monitor,1,149.99,10/24/19 22:04,"125 Cedar St, Dallas, TX 75001" +268853,Wired Headphones,1,11.99,10/12/19 12:47,"419 Lake St, Portland, OR 97035" +268854,Wired Headphones,1,11.99,10/11/19 15:57,"521 7th St, Los Angeles, CA 90001" +268855,iPhone,1,700,10/16/19 21:04,"58 Willow St, San Francisco, CA 94016" +268856,ThinkPad Laptop,1,999.99,10/31/19 14:05,"708 Church St, New York City, NY 10001" +268857,Lightning Charging Cable,1,14.95,10/18/19 00:47,"259 8th St, San Francisco, CA 94016" +268858,Lightning Charging Cable,1,14.95,10/06/19 09:07,"223 Church St, Austin, TX 73301" +268859,Apple Airpods Headphones,1,150,10/04/19 16:34,"829 7th St, San Francisco, CA 94016" +268860,Lightning Charging Cable,1,14.95,10/30/19 14:22,"209 14th St, San Francisco, CA 94016" +268861,27in FHD Monitor,1,149.99,10/27/19 17:38,"641 South St, New York City, NY 10001" +268862,Lightning Charging Cable,1,14.95,10/02/19 12:21,"498 Cherry St, Atlanta, GA 30301" +268863,20in Monitor,1,109.99,10/20/19 17:25,"457 10th St, San Francisco, CA 94016" +268864,Bose SoundSport Headphones,1,99.99,10/28/19 14:40,"178 Maple St, Austin, TX 73301" +268865,AA Batteries (4-pack),3,3.84,10/11/19 22:27,"226 6th St, Los Angeles, CA 90001" +268866,27in FHD Monitor,1,149.99,10/19/19 15:46,"959 Cedar St, New York City, NY 10001" +268867,LG Washing Machine,1,600.0,10/08/19 15:06,"376 Dogwood St, San Francisco, CA 94016" +268868,USB-C Charging Cable,1,11.95,10/22/19 10:14,"253 Ridge St, Los Angeles, CA 90001" +268869,Lightning Charging Cable,1,14.95,10/06/19 23:06,"519 6th St, Austin, TX 73301" +268870,Lightning Charging Cable,1,14.95,10/25/19 10:24,"592 Elm St, New York City, NY 10001" +268871,USB-C Charging Cable,1,11.95,10/07/19 22:44,"978 Willow St, New York City, NY 10001" +268872,Apple Airpods Headphones,1,150,10/30/19 16:52,"224 Lincoln St, Austin, TX 73301" +268873,27in 4K Gaming Monitor,1,389.99,10/04/19 10:21,"42 14th St, Dallas, TX 75001" +268874,Apple Airpods Headphones,1,150,10/11/19 13:53,"195 River St, Boston, MA 02215" +268875,USB-C Charging Cable,1,11.95,10/22/19 10:06,"855 Adams St, San Francisco, CA 94016" +268876,AA Batteries (4-pack),2,3.84,10/13/19 18:51,"771 Walnut St, Los Angeles, CA 90001" +268877,Macbook Pro Laptop,1,1700,10/05/19 09:32,"555 Meadow St, San Francisco, CA 94016" +268878,iPhone,1,700,10/11/19 18:43,"31 Cedar St, Seattle, WA 98101" +268878,Apple Airpods Headphones,1,150,10/11/19 18:43,"31 Cedar St, Seattle, WA 98101" +268879,27in 4K Gaming Monitor,1,389.99,10/03/19 22:54,"921 Maple St, Boston, MA 02215" +268880,USB-C Charging Cable,1,11.95,10/30/19 01:16,"522 2nd St, Los Angeles, CA 90001" +268881,AAA Batteries (4-pack),1,2.99,10/28/19 16:03,"944 Willow St, Los Angeles, CA 90001" +268882,Bose SoundSport Headphones,1,99.99,10/16/19 10:16,"914 South St, San Francisco, CA 94016" +268883,USB-C Charging Cable,2,11.95,10/02/19 11:28,"895 Dogwood St, Dallas, TX 75001" +268884,AA Batteries (4-pack),1,3.84,10/24/19 09:49,"329 7th St, Seattle, WA 98101" +268885,USB-C Charging Cable,1,11.95,10/03/19 04:42,"761 14th St, Austin, TX 73301" +268886,Lightning Charging Cable,1,14.95,10/12/19 11:21,"999 Maple St, San Francisco, CA 94016" +268887,27in FHD Monitor,1,149.99,10/21/19 14:33,"810 14th St, Portland, OR 97035" +268888,Apple Airpods Headphones,1,150,10/07/19 10:13,"917 Forest St, Los Angeles, CA 90001" +268889,AAA Batteries (4-pack),1,2.99,10/29/19 07:03,"936 Elm St, San Francisco, CA 94016" +268890,Flatscreen TV,1,300,10/23/19 19:00,"533 Jefferson St, Los Angeles, CA 90001" +268891,Macbook Pro Laptop,1,1700,10/18/19 20:41,"769 9th St, Portland, ME 04101" +268892,AA Batteries (4-pack),1,3.84,10/27/19 12:40,"965 Hill St, Austin, TX 73301" +268893,AA Batteries (4-pack),1,3.84,10/07/19 01:45,"433 Willow St, Seattle, WA 98101" +268894,AA Batteries (4-pack),1,3.84,10/26/19 23:45,"45 Lakeview St, Boston, MA 02215" +268895,Lightning Charging Cable,1,14.95,10/27/19 20:16,"862 Highland St, Los Angeles, CA 90001" +268896,Apple Airpods Headphones,1,150,10/04/19 17:26,"757 North St, San Francisco, CA 94016" +268897,AAA Batteries (4-pack),3,2.99,10/17/19 16:21,"933 Lincoln St, San Francisco, CA 94016" +268898,Apple Airpods Headphones,1,150,10/17/19 16:48,"110 Lakeview St, Seattle, WA 98101" +268899,20in Monitor,1,109.99,10/02/19 13:28,"223 4th St, Dallas, TX 75001" +268900,Wired Headphones,1,11.99,10/10/19 14:24,"260 Chestnut St, San Francisco, CA 94016" +268901,27in 4K Gaming Monitor,1,389.99,10/29/19 14:45,"244 River St, San Francisco, CA 94016" +268902,USB-C Charging Cable,1,11.95,10/06/19 13:19,"286 Hill St, Portland, OR 97035" +268903,Bose SoundSport Headphones,1,99.99,10/30/19 18:49,"133 6th St, Seattle, WA 98101" +268903,27in FHD Monitor,1,149.99,10/30/19 18:49,"133 6th St, Seattle, WA 98101" +268904,Lightning Charging Cable,1,14.95,10/02/19 22:40,"421 12th St, Boston, MA 02215" +268905,AAA Batteries (4-pack),2,2.99,10/18/19 20:15,"521 4th St, Seattle, WA 98101" +268906,Flatscreen TV,1,300,10/12/19 08:57,"321 Wilson St, Boston, MA 02215" +268907,Wired Headphones,1,11.99,10/01/19 13:00,"475 West St, San Francisco, CA 94016" +268908,Wired Headphones,1,11.99,10/29/19 14:29,"165 11th St, Boston, MA 02215" +268909,Bose SoundSport Headphones,1,99.99,10/29/19 16:25,"203 Washington St, San Francisco, CA 94016" +268910,Lightning Charging Cable,1,14.95,10/02/19 17:36,"833 7th St, Dallas, TX 75001" +268911,ThinkPad Laptop,1,999.99,10/27/19 16:27,"849 River St, Atlanta, GA 30301" +268912,USB-C Charging Cable,1,11.95,10/06/19 20:59,"872 North St, Boston, MA 02215" +268913,iPhone,1,700,10/27/19 23:06,"146 Church St, Seattle, WA 98101" +268914,AA Batteries (4-pack),1,3.84,10/14/19 13:51,"616 Ridge St, San Francisco, CA 94016" +268915,AAA Batteries (4-pack),4,2.99,10/07/19 21:31,"237 6th St, Portland, OR 97035" +268916,Lightning Charging Cable,1,14.95,10/14/19 09:51,"454 14th St, San Francisco, CA 94016" +268917,Macbook Pro Laptop,1,1700,10/31/19 09:47,"89 13th St, Atlanta, GA 30301" +268918,AAA Batteries (4-pack),1,2.99,10/24/19 19:32,"765 Church St, Atlanta, GA 30301" +268919,Apple Airpods Headphones,1,150,10/12/19 21:52,"586 10th St, New York City, NY 10001" +268920,AA Batteries (4-pack),1,3.84,10/26/19 12:24,"983 Wilson St, Los Angeles, CA 90001" +268921,AAA Batteries (4-pack),1,2.99,10/25/19 10:48,"561 Cedar St, Boston, MA 02215" +268922,USB-C Charging Cable,1,11.95,10/23/19 18:19,"327 Sunset St, Seattle, WA 98101" +268923,Flatscreen TV,1,300,10/07/19 21:53,"970 Dogwood St, Dallas, TX 75001" +268924,Lightning Charging Cable,1,14.95,10/07/19 12:28,"615 Hickory St, San Francisco, CA 94016" +268925,27in 4K Gaming Monitor,1,389.99,10/23/19 13:30,"251 Church St, Boston, MA 02215" +268926,Google Phone,1,600,10/17/19 02:11,"216 8th St, Boston, MA 02215" +268926,USB-C Charging Cable,1,11.95,10/17/19 02:11,"216 8th St, Boston, MA 02215" +268927,Google Phone,1,600,10/15/19 15:38,"301 Dogwood St, Boston, MA 02215" +268928,Bose SoundSport Headphones,1,99.99,10/26/19 12:37,"980 12th St, San Francisco, CA 94016" +268929,USB-C Charging Cable,1,11.95,10/24/19 21:32,"874 Wilson St, San Francisco, CA 94016" +268930,Wired Headphones,1,11.99,10/13/19 12:39,"613 West St, San Francisco, CA 94016" +268931,Bose SoundSport Headphones,1,99.99,10/24/19 15:37,"931 Chestnut St, Boston, MA 02215" +268932,AA Batteries (4-pack),1,3.84,10/31/19 01:19,"69 5th St, Los Angeles, CA 90001" +268933,AA Batteries (4-pack),2,3.84,10/30/19 06:33,"598 Dogwood St, Austin, TX 73301" +268934,27in 4K Gaming Monitor,1,389.99,10/31/19 22:34,"909 Spruce St, San Francisco, CA 94016" +268935,AA Batteries (4-pack),1,3.84,10/25/19 23:32,"976 11th St, New York City, NY 10001" +268936,USB-C Charging Cable,1,11.95,10/15/19 12:18,"178 5th St, San Francisco, CA 94016" +268937,AAA Batteries (4-pack),1,2.99,10/12/19 12:37,"543 Forest St, Seattle, WA 98101" +268938,Apple Airpods Headphones,1,150,10/19/19 18:36,"288 8th St, San Francisco, CA 94016" +268939,20in Monitor,1,109.99,10/21/19 19:20,"806 5th St, Seattle, WA 98101" +268940,AA Batteries (4-pack),1,3.84,10/10/19 14:52,"284 Madison St, Los Angeles, CA 90001" +268941,Apple Airpods Headphones,1,150,10/23/19 22:27,"708 Madison St, New York City, NY 10001" +268942,AA Batteries (4-pack),3,3.84,10/18/19 18:01,"26 Washington St, Portland, ME 04101" +268943,Lightning Charging Cable,1,14.95,10/19/19 00:53,"771 Jackson St, New York City, NY 10001" +268944,iPhone,1,700,10/13/19 09:27,"363 2nd St, Los Angeles, CA 90001" +268945,27in FHD Monitor,1,149.99,10/08/19 17:02,"86 West St, San Francisco, CA 94016" +268946,AAA Batteries (4-pack),1,2.99,10/10/19 20:35,"289 6th St, San Francisco, CA 94016" +268947,Bose SoundSport Headphones,1,99.99,10/01/19 18:43,"807 Center St, Dallas, TX 75001" +268948,AAA Batteries (4-pack),1,2.99,10/09/19 18:56,"41 Church St, Los Angeles, CA 90001" +268949,27in FHD Monitor,1,149.99,10/25/19 17:59,"798 Johnson St, Atlanta, GA 30301" +268950,20in Monitor,1,109.99,10/09/19 15:11,"78 14th St, Los Angeles, CA 90001" +268951,Lightning Charging Cable,1,14.95,10/25/19 11:38,"966 4th St, San Francisco, CA 94016" +268952,Wired Headphones,1,11.99,10/08/19 17:40,"574 North St, Boston, MA 02215" +268953,Wired Headphones,2,11.99,10/13/19 13:32,"456 Jefferson St, San Francisco, CA 94016" +268954,27in FHD Monitor,1,149.99,10/24/19 17:56,"695 Forest St, Austin, TX 73301" +268954,Lightning Charging Cable,1,14.95,10/24/19 17:56,"695 Forest St, Austin, TX 73301" +268955,AAA Batteries (4-pack),4,2.99,10/06/19 13:27,"472 Walnut St, Dallas, TX 75001" +268956,Lightning Charging Cable,1,14.95,10/21/19 15:49,"454 North St, San Francisco, CA 94016" +268957,Apple Airpods Headphones,1,150,10/21/19 15:55,"141 River St, San Francisco, CA 94016" +268958,AAA Batteries (4-pack),1,2.99,10/18/19 11:47,"260 8th St, Los Angeles, CA 90001" +268959,AAA Batteries (4-pack),1,2.99,10/30/19 22:15,"259 14th St, San Francisco, CA 94016" +268960,AAA Batteries (4-pack),1,2.99,10/08/19 09:44,"23 North St, Los Angeles, CA 90001" +268961,Lightning Charging Cable,1,14.95,10/04/19 16:15,"434 9th St, Dallas, TX 75001" +268962,Google Phone,1,600,10/04/19 12:14,"302 13th St, New York City, NY 10001" +268963,Apple Airpods Headphones,1,150,10/18/19 11:47,"331 8th St, Boston, MA 02215" +268964,AAA Batteries (4-pack),1,2.99,10/12/19 18:12,"536 Jackson St, San Francisco, CA 94016" +268965,USB-C Charging Cable,1,11.95,10/29/19 08:53,"471 Lakeview St, San Francisco, CA 94016" +268966,AA Batteries (4-pack),1,3.84,10/27/19 04:24,"158 Hill St, Boston, MA 02215" +268967,AA Batteries (4-pack),1,3.84,10/22/19 20:57,"350 Elm St, Dallas, TX 75001" +268968,Bose SoundSport Headphones,1,99.99,10/03/19 15:41,"298 12th St, New York City, NY 10001" +268969,AA Batteries (4-pack),1,3.84,10/07/19 13:04,"785 Willow St, Boston, MA 02215" +268970,Wired Headphones,1,11.99,10/24/19 09:53,"874 Meadow St, Dallas, TX 75001" +268971,AA Batteries (4-pack),2,3.84,10/19/19 12:48,"617 River St, New York City, NY 10001" +268972,Bose SoundSport Headphones,1,99.99,10/12/19 12:43,"657 5th St, Los Angeles, CA 90001" +268973,Lightning Charging Cable,1,14.95,10/29/19 09:32,"441 Meadow St, Seattle, WA 98101" +268974,iPhone,1,700,10/30/19 16:59,"164 Park St, Boston, MA 02215" +268975,34in Ultrawide Monitor,1,379.99,10/01/19 22:45,"131 Jackson St, San Francisco, CA 94016" +268976,AAA Batteries (4-pack),1,2.99,10/03/19 04:59,"928 Lincoln St, Los Angeles, CA 90001" +268977,27in 4K Gaming Monitor,1,389.99,10/29/19 12:45,"257 Adams St, Boston, MA 02215" +268978,Bose SoundSport Headphones,1,99.99,10/06/19 18:34,"623 9th St, Los Angeles, CA 90001" +268978,Wired Headphones,1,11.99,10/06/19 18:34,"623 9th St, Los Angeles, CA 90001" +268979,Wired Headphones,1,11.99,10/16/19 16:18,"198 10th St, Austin, TX 73301" +268980,Wired Headphones,1,11.99,10/21/19 14:42,"775 Jefferson St, New York City, NY 10001" +268981,Google Phone,1,600,10/27/19 07:21,"662 10th St, Dallas, TX 75001" +268982,34in Ultrawide Monitor,1,379.99,10/18/19 20:25,"614 Maple St, Los Angeles, CA 90001" +268983,AA Batteries (4-pack),1,3.84,10/31/19 20:15,"703 Chestnut St, Los Angeles, CA 90001" +268984,Apple Airpods Headphones,1,150,10/25/19 11:23,"207 Lakeview St, New York City, NY 10001" +268985,AAA Batteries (4-pack),1,2.99,10/26/19 16:41,"745 Hill St, Portland, ME 04101" +268986,Apple Airpods Headphones,1,150,10/10/19 00:11,"90 West St, Dallas, TX 75001" +268987,Lightning Charging Cable,1,14.95,10/12/19 10:40,"32 Center St, San Francisco, CA 94016" +268988,AA Batteries (4-pack),1,3.84,10/13/19 10:19,"912 11th St, Los Angeles, CA 90001" +268989,iPhone,1,700,10/14/19 18:32,"620 Church St, San Francisco, CA 94016" +268990,AAA Batteries (4-pack),1,2.99,10/25/19 19:48,"779 9th St, Seattle, WA 98101" +268991,Bose SoundSport Headphones,1,99.99,10/09/19 09:39,"905 11th St, Dallas, TX 75001" +268992,iPhone,1,700,10/18/19 12:55,"889 Church St, Austin, TX 73301" +268992,Lightning Charging Cable,1,14.95,10/18/19 12:55,"889 Church St, Austin, TX 73301" +268993,USB-C Charging Cable,1,11.95,10/11/19 16:07,"861 Johnson St, Seattle, WA 98101" +268994,Apple Airpods Headphones,1,150,10/10/19 09:59,"405 4th St, Atlanta, GA 30301" +268995,Wired Headphones,1,11.99,10/04/19 20:09,"879 1st St, Dallas, TX 75001" +268996,Lightning Charging Cable,1,14.95,10/27/19 16:34,"469 Pine St, New York City, NY 10001" +268997,AA Batteries (4-pack),1,3.84,10/22/19 08:36,"268 Adams St, Dallas, TX 75001" +268998,AAA Batteries (4-pack),1,2.99,10/09/19 22:45,"369 Lake St, San Francisco, CA 94016" +268999,Wired Headphones,1,11.99,10/14/19 10:56,"811 Madison St, Boston, MA 02215" +269000,AAA Batteries (4-pack),1,2.99,10/02/19 08:12,"266 North St, Los Angeles, CA 90001" +269001,27in FHD Monitor,1,149.99,10/08/19 17:32,"362 10th St, New York City, NY 10001" +269002,AAA Batteries (4-pack),1,2.99,10/02/19 16:41,"108 Walnut St, San Francisco, CA 94016" +269003,Bose SoundSport Headphones,1,99.99,10/02/19 20:40,"27 Chestnut St, Dallas, TX 75001" +269004,Lightning Charging Cable,1,14.95,10/29/19 22:42,"138 Cedar St, San Francisco, CA 94016" +269005,34in Ultrawide Monitor,1,379.99,10/05/19 18:25,"186 Adams St, San Francisco, CA 94016" +269006,USB-C Charging Cable,1,11.95,10/03/19 22:55,"986 Jackson St, Seattle, WA 98101" +269007,27in 4K Gaming Monitor,1,389.99,10/09/19 23:14,"194 Hickory St, Atlanta, GA 30301" +269008,Bose SoundSport Headphones,1,99.99,10/29/19 18:43,"201 Johnson St, Seattle, WA 98101" +269009,AAA Batteries (4-pack),1,2.99,10/20/19 08:57,"373 12th St, Seattle, WA 98101" +269010,Lightning Charging Cable,1,14.95,10/28/19 11:58,"411 12th St, Los Angeles, CA 90001" +269011,Bose SoundSport Headphones,1,99.99,10/06/19 15:42,"450 River St, Seattle, WA 98101" +269012,Apple Airpods Headphones,1,150,10/30/19 14:45,"779 4th St, San Francisco, CA 94016" +269013,Bose SoundSport Headphones,1,99.99,10/27/19 10:11,"871 River St, New York City, NY 10001" +269014,AA Batteries (4-pack),1,3.84,10/07/19 21:53,"506 8th St, San Francisco, CA 94016" +269015,Google Phone,1,600,10/16/19 18:05,"762 8th St, San Francisco, CA 94016" +269015,USB-C Charging Cable,1,11.95,10/16/19 18:05,"762 8th St, San Francisco, CA 94016" +269016,Apple Airpods Headphones,1,150,10/16/19 15:08,"642 Spruce St, Atlanta, GA 30301" +269017,ThinkPad Laptop,1,999.99,10/29/19 10:31,"464 Park St, Atlanta, GA 30301" +269017,USB-C Charging Cable,1,11.95,10/29/19 10:31,"464 Park St, Atlanta, GA 30301" +269018,27in FHD Monitor,1,149.99,10/04/19 12:48,"57 Maple St, Los Angeles, CA 90001" +269019,Flatscreen TV,1,300,10/29/19 21:35,"768 River St, Atlanta, GA 30301" +269020,Lightning Charging Cable,1,14.95,10/10/19 12:18,"465 Pine St, Los Angeles, CA 90001" +269021,Lightning Charging Cable,1,14.95,10/28/19 23:02,"410 Meadow St, Los Angeles, CA 90001" +269021,AA Batteries (4-pack),1,3.84,10/28/19 23:02,"410 Meadow St, Los Angeles, CA 90001" +269022,USB-C Charging Cable,1,11.95,10/09/19 09:05,"592 South St, San Francisco, CA 94016" +269023,ThinkPad Laptop,1,999.99,10/16/19 20:08,"954 6th St, New York City, NY 10001" +269024,USB-C Charging Cable,1,11.95,10/19/19 11:12,"763 Church St, Portland, OR 97035" +269025,Wired Headphones,1,11.99,10/06/19 15:34,"425 Hickory St, San Francisco, CA 94016" +269026,AA Batteries (4-pack),1,3.84,10/03/19 13:32,"217 West St, Los Angeles, CA 90001" +269027,AA Batteries (4-pack),1,3.84,10/13/19 14:27,"603 Sunset St, New York City, NY 10001" +269028,AA Batteries (4-pack),1,3.84,10/21/19 08:14,"667 Chestnut St, San Francisco, CA 94016" +269029,AA Batteries (4-pack),1,3.84,10/24/19 09:34,"807 Chestnut St, Seattle, WA 98101" +269030,Apple Airpods Headphones,1,150,10/07/19 21:36,"865 Church St, Los Angeles, CA 90001" +269031,27in FHD Monitor,1,149.99,10/06/19 20:05,"848 Wilson St, New York City, NY 10001" +269032,USB-C Charging Cable,1,11.95,10/11/19 16:57,"508 Elm St, Dallas, TX 75001" +269033,AAA Batteries (4-pack),1,2.99,10/08/19 21:21,"692 Willow St, San Francisco, CA 94016" +269034,iPhone,1,700,10/11/19 18:10,"382 6th St, Portland, ME 04101" +269034,Lightning Charging Cable,1,14.95,10/11/19 18:10,"382 6th St, Portland, ME 04101" +269034,Apple Airpods Headphones,1,150,10/11/19 18:10,"382 6th St, Portland, ME 04101" +269035,AAA Batteries (4-pack),1,2.99,10/15/19 04:30,"620 Center St, Atlanta, GA 30301" +269036,Wired Headphones,1,11.99,10/25/19 20:17,"535 13th St, Atlanta, GA 30301" +269037,AA Batteries (4-pack),4,3.84,10/14/19 09:07,"675 Jackson St, New York City, NY 10001" +269038,Lightning Charging Cable,1,14.95,10/10/19 21:22,"471 12th St, San Francisco, CA 94016" +269039,Apple Airpods Headphones,1,150,10/08/19 17:22,"751 Ridge St, Atlanta, GA 30301" +269040,34in Ultrawide Monitor,1,379.99,10/02/19 12:39,"977 River St, Los Angeles, CA 90001" +269041,Bose SoundSport Headphones,1,99.99,10/19/19 11:21,"805 Elm St, Seattle, WA 98101" +269042,Wired Headphones,1,11.99,10/14/19 23:36,"507 13th St, San Francisco, CA 94016" +269043,Wired Headphones,1,11.99,10/13/19 10:56,"320 Willow St, San Francisco, CA 94016" +269044,AA Batteries (4-pack),2,3.84,10/09/19 09:42,"217 Lakeview St, San Francisco, CA 94016" +269045,ThinkPad Laptop,1,999.99,10/27/19 17:56,"368 7th St, Atlanta, GA 30301" +269046,Lightning Charging Cable,1,14.95,10/28/19 02:22,"488 Lake St, San Francisco, CA 94016" +269047,Apple Airpods Headphones,1,150,10/01/19 16:30,"602 Cherry St, Los Angeles, CA 90001" +269048,Wired Headphones,1,11.99,10/19/19 15:36,"636 Sunset St, New York City, NY 10001" +269049,Flatscreen TV,1,300,10/22/19 08:30,"405 Church St, Seattle, WA 98101" +269050,Wired Headphones,2,11.99,10/21/19 15:12,"819 Sunset St, Los Angeles, CA 90001" +269051,AAA Batteries (4-pack),1,2.99,10/07/19 20:56,"584 Church St, Portland, ME 04101" +269052,Lightning Charging Cable,1,14.95,10/27/19 12:19,"611 7th St, Los Angeles, CA 90001" +269053,AAA Batteries (4-pack),1,2.99,10/28/19 01:07,"372 Highland St, San Francisco, CA 94016" +269054,Bose SoundSport Headphones,1,99.99,10/21/19 21:45,"928 Chestnut St, Boston, MA 02215" +269054,iPhone,1,700,10/21/19 21:45,"928 Chestnut St, Boston, MA 02215" +269055,AAA Batteries (4-pack),2,2.99,10/20/19 13:12,"683 Pine St, Boston, MA 02215" +269056,AA Batteries (4-pack),2,3.84,10/10/19 18:31,"646 South St, Los Angeles, CA 90001" +269057,Google Phone,1,600,10/26/19 07:11,"125 11th St, Atlanta, GA 30301" +269058,USB-C Charging Cable,1,11.95,10/15/19 17:54,"895 Park St, Seattle, WA 98101" +269059,27in FHD Monitor,1,149.99,10/22/19 19:03,"693 West St, Dallas, TX 75001" +269060,Google Phone,1,600,10/21/19 14:25,"969 Forest St, Dallas, TX 75001" +269061,27in 4K Gaming Monitor,1,389.99,10/27/19 14:24,"549 Adams St, New York City, NY 10001" +269062,ThinkPad Laptop,1,999.99,10/11/19 21:51,"639 Lincoln St, San Francisco, CA 94016" +269063,Apple Airpods Headphones,1,150,10/01/19 17:02,"206 Walnut St, Los Angeles, CA 90001" +269064,USB-C Charging Cable,1,11.95,10/16/19 17:51,"479 Elm St, New York City, NY 10001" +269065,AA Batteries (4-pack),1,3.84,10/19/19 12:30,"421 11th St, New York City, NY 10001" +269066,AAA Batteries (4-pack),2,2.99,10/24/19 08:30,"940 13th St, Boston, MA 02215" +269067,AA Batteries (4-pack),1,3.84,10/20/19 21:42,"507 Center St, San Francisco, CA 94016" +269068,USB-C Charging Cable,1,11.95,10/21/19 16:25,"275 Cherry St, Seattle, WA 98101" +269069,Macbook Pro Laptop,1,1700,10/02/19 22:15,"444 Hickory St, Austin, TX 73301" +269070,Wired Headphones,1,11.99,10/04/19 08:54,"884 Pine St, New York City, NY 10001" +269071,20in Monitor,1,109.99,10/13/19 13:33,"419 Washington St, Boston, MA 02215" +269072,Vareebadd Phone,1,400,10/11/19 19:04,"976 2nd St, Boston, MA 02215" +269073,27in FHD Monitor,1,149.99,10/20/19 23:50,"735 North St, Portland, OR 97035" +269074,Lightning Charging Cable,1,14.95,10/23/19 11:58,"452 Cedar St, Los Angeles, CA 90001" +269075,AA Batteries (4-pack),1,3.84,10/10/19 07:58,"374 6th St, Portland, OR 97035" +269076,27in 4K Gaming Monitor,1,389.99,10/02/19 21:53,"227 Jefferson St, San Francisco, CA 94016" +269076,AAA Batteries (4-pack),1,2.99,10/02/19 21:53,"227 Jefferson St, San Francisco, CA 94016" +269077,Lightning Charging Cable,1,14.95,10/17/19 16:53,"383 Cedar St, New York City, NY 10001" +269078,Lightning Charging Cable,1,14.95,10/18/19 10:08,"931 Lake St, San Francisco, CA 94016" +269079,Apple Airpods Headphones,1,150,10/11/19 18:40,"469 Washington St, Atlanta, GA 30301" +269080,AAA Batteries (4-pack),2,2.99,10/27/19 14:54,"803 West St, Los Angeles, CA 90001" +269081,20in Monitor,1,109.99,10/18/19 19:44,"471 7th St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +269082,AAA Batteries (4-pack),1,2.99,10/29/19 15:06,"527 10th St, Portland, ME 04101" +269083,AAA Batteries (4-pack),1,2.99,10/31/19 00:47,"244 Johnson St, San Francisco, CA 94016" +269084,AA Batteries (4-pack),1,3.84,10/25/19 21:43,"377 4th St, San Francisco, CA 94016" +269085,Macbook Pro Laptop,1,1700,10/23/19 19:26,"89 Spruce St, Los Angeles, CA 90001" +269086,Lightning Charging Cable,1,14.95,10/10/19 17:41,"928 Washington St, Portland, OR 97035" +269087,AA Batteries (4-pack),1,3.84,10/23/19 15:33,"549 Chestnut St, San Francisco, CA 94016" +269088,Wired Headphones,1,11.99,10/29/19 03:07,"322 Cedar St, Boston, MA 02215" +269089,USB-C Charging Cable,1,11.95,10/27/19 17:10,"199 Adams St, Los Angeles, CA 90001" +269090,Lightning Charging Cable,1,14.95,10/22/19 14:01,"295 Highland St, San Francisco, CA 94016" +269091,Lightning Charging Cable,1,14.95,10/28/19 18:13,"972 2nd St, New York City, NY 10001" +269092,Lightning Charging Cable,1,14.95,10/16/19 12:43,"837 Hickory St, San Francisco, CA 94016" +269093,Google Phone,1,600,10/11/19 22:25,"222 Spruce St, San Francisco, CA 94016" +269094,iPhone,1,700,10/28/19 11:57,"381 Spruce St, San Francisco, CA 94016" +269095,27in 4K Gaming Monitor,1,389.99,10/20/19 22:10,"142 8th St, Boston, MA 02215" +269096,Flatscreen TV,1,300,10/25/19 04:30,"171 7th St, San Francisco, CA 94016" +269097,Wired Headphones,1,11.99,10/18/19 18:39,"201 Willow St, Boston, MA 02215" +269098,Bose SoundSport Headphones,1,99.99,10/18/19 07:44,"722 Adams St, Austin, TX 73301" +269099,Bose SoundSport Headphones,1,99.99,10/14/19 11:29,"931 Elm St, San Francisco, CA 94016" +269100,LG Dryer,1,600.0,10/14/19 10:12,"264 Adams St, San Francisco, CA 94016" +269101,AA Batteries (4-pack),1,3.84,10/01/19 20:03,"781 Adams St, Seattle, WA 98101" +269102,AAA Batteries (4-pack),2,2.99,10/09/19 23:16,"165 Church St, New York City, NY 10001" +269103,Wired Headphones,1,11.99,10/03/19 20:32,"523 Johnson St, New York City, NY 10001" +269104,AAA Batteries (4-pack),2,2.99,10/27/19 12:11,"405 South St, Boston, MA 02215" +269105,Bose SoundSport Headphones,1,99.99,10/23/19 13:11,"349 Washington St, Dallas, TX 75001" +269106,Bose SoundSport Headphones,1,99.99,10/06/19 10:49,"938 Johnson St, Austin, TX 73301" +269107,USB-C Charging Cable,1,11.95,10/08/19 19:16,"624 11th St, Los Angeles, CA 90001" +269108,ThinkPad Laptop,1,999.99,10/20/19 22:28,"93 South St, Atlanta, GA 30301" +269109,Apple Airpods Headphones,1,150,10/25/19 20:07,"549 Elm St, Portland, OR 97035" +269110,34in Ultrawide Monitor,1,379.99,10/11/19 12:37,"796 Pine St, Los Angeles, CA 90001" +269111,iPhone,1,700,10/27/19 10:48,"536 Willow St, Dallas, TX 75001" +269112,27in 4K Gaming Monitor,1,389.99,10/10/19 17:27,"980 Willow St, Portland, ME 04101" +269113,Apple Airpods Headphones,1,150,10/18/19 06:14,"214 Jackson St, San Francisco, CA 94016" +269114,iPhone,1,700,10/29/19 10:12,"921 8th St, Seattle, WA 98101" +269115,USB-C Charging Cable,1,11.95,10/24/19 10:06,"116 Lincoln St, San Francisco, CA 94016" +269116,34in Ultrawide Monitor,1,379.99,10/30/19 09:04,"636 Sunset St, Portland, OR 97035" +269117,Apple Airpods Headphones,1,150,10/15/19 08:39,"126 Walnut St, Dallas, TX 75001" +269118,Apple Airpods Headphones,1,150,10/09/19 10:44,"853 Wilson St, San Francisco, CA 94016" +269119,AA Batteries (4-pack),1,3.84,10/31/19 19:09,"487 9th St, Atlanta, GA 30301" +269120,AA Batteries (4-pack),1,3.84,10/02/19 20:34,"450 Church St, San Francisco, CA 94016" +269120,34in Ultrawide Monitor,1,379.99,10/02/19 20:34,"450 Church St, San Francisco, CA 94016" +269121,Apple Airpods Headphones,1,150,10/31/19 10:21,"996 Jackson St, Boston, MA 02215" +269122,Lightning Charging Cable,1,14.95,10/03/19 04:08,"831 Chestnut St, New York City, NY 10001" +269123,Vareebadd Phone,1,400,10/16/19 08:37,"168 Sunset St, Dallas, TX 75001" +269124,Lightning Charging Cable,1,14.95,10/14/19 20:10,"43 Adams St, New York City, NY 10001" +269125,AAA Batteries (4-pack),1,2.99,10/13/19 11:23,"884 11th St, San Francisco, CA 94016" +269126,AAA Batteries (4-pack),1,2.99,10/17/19 06:17,"79 Church St, New York City, NY 10001" +269127,Vareebadd Phone,1,400,10/10/19 18:22,"263 Ridge St, Los Angeles, CA 90001" +269127,Wired Headphones,1,11.99,10/10/19 18:22,"263 Ridge St, Los Angeles, CA 90001" +269128,Apple Airpods Headphones,1,150,10/24/19 14:03,"524 9th St, San Francisco, CA 94016" +269129,20in Monitor,1,109.99,10/01/19 08:32,"272 Lincoln St, San Francisco, CA 94016" +269130,Macbook Pro Laptop,1,1700,10/04/19 12:48,"469 Hill St, New York City, NY 10001" +269131,Bose SoundSport Headphones,1,99.99,10/09/19 14:53,"924 Jefferson St, Boston, MA 02215" +269132,USB-C Charging Cable,1,11.95,10/02/19 19:17,"928 Spruce St, Seattle, WA 98101" +269133,AAA Batteries (4-pack),5,2.99,10/06/19 21:10,"351 Park St, Los Angeles, CA 90001" +269134,ThinkPad Laptop,1,999.99,10/12/19 16:37,"347 10th St, Seattle, WA 98101" +269135,Wired Headphones,1,11.99,10/20/19 11:01,"746 Wilson St, New York City, NY 10001" +269136,Flatscreen TV,1,300,10/09/19 19:38,"287 River St, Los Angeles, CA 90001" +269137,USB-C Charging Cable,1,11.95,10/14/19 14:31,"823 Cedar St, San Francisco, CA 94016" +269138,USB-C Charging Cable,1,11.95,10/21/19 06:27,"616 Chestnut St, Seattle, WA 98101" +269139,Bose SoundSport Headphones,1,99.99,10/19/19 13:08,"781 River St, New York City, NY 10001" +269140,USB-C Charging Cable,1,11.95,10/18/19 14:00,"666 Pine St, Los Angeles, CA 90001" +269141,Lightning Charging Cable,1,14.95,10/11/19 12:46,"141 6th St, Boston, MA 02215" +269142,Wired Headphones,1,11.99,10/11/19 21:30,"575 5th St, Dallas, TX 75001" +269143,Google Phone,1,600,10/26/19 17:58,"685 River St, Austin, TX 73301" +269143,USB-C Charging Cable,1,11.95,10/26/19 17:58,"685 River St, Austin, TX 73301" +269144,Wired Headphones,1,11.99,10/26/19 17:18,"275 5th St, New York City, NY 10001" +269145,Vareebadd Phone,1,400,10/11/19 16:31,"249 4th St, Los Angeles, CA 90001" +269145,USB-C Charging Cable,1,11.95,10/11/19 16:31,"249 4th St, Los Angeles, CA 90001" +269146,Bose SoundSport Headphones,1,99.99,10/28/19 20:59,"826 5th St, San Francisco, CA 94016" +269147,ThinkPad Laptop,1,999.99,10/21/19 12:11,"104 Jefferson St, New York City, NY 10001" +269148,USB-C Charging Cable,1,11.95,10/21/19 13:56,"989 7th St, Atlanta, GA 30301" +269149,ThinkPad Laptop,1,999.99,10/26/19 12:26,"83 Lincoln St, Dallas, TX 75001" +269149,Lightning Charging Cable,1,14.95,10/26/19 12:26,"83 Lincoln St, Dallas, TX 75001" +269150,27in 4K Gaming Monitor,1,389.99,10/27/19 17:46,"657 Willow St, New York City, NY 10001" +269151,Flatscreen TV,1,300,10/21/19 22:03,"282 Jackson St, San Francisco, CA 94016" +269152,Lightning Charging Cable,1,14.95,10/26/19 12:16,"532 Church St, Portland, ME 04101" +269153,AAA Batteries (4-pack),1,2.99,10/28/19 17:29,"473 Forest St, Portland, OR 97035" +269154,AA Batteries (4-pack),1,3.84,10/17/19 09:49,"685 11th St, Boston, MA 02215" +269155,AA Batteries (4-pack),1,3.84,10/02/19 13:54,"432 Jefferson St, San Francisco, CA 94016" +269156,Bose SoundSport Headphones,1,99.99,10/20/19 18:59,"706 Meadow St, Seattle, WA 98101" +269157,27in 4K Gaming Monitor,1,389.99,10/14/19 20:04,"345 Cedar St, Portland, OR 97035" +269158,USB-C Charging Cable,1,11.95,10/19/19 19:57,"139 Jefferson St, Boston, MA 02215" +269159,Wired Headphones,1,11.99,10/29/19 22:45,"123 10th St, Los Angeles, CA 90001" +269160,Lightning Charging Cable,3,14.95,10/02/19 13:40,"360 Willow St, Seattle, WA 98101" +269161,Flatscreen TV,1,300,10/08/19 09:09,"155 Elm St, San Francisco, CA 94016" +269162,20in Monitor,1,109.99,10/13/19 14:38,"562 Lakeview St, Atlanta, GA 30301" +269163,Lightning Charging Cable,1,14.95,10/17/19 10:56,"705 River St, Los Angeles, CA 90001" +269164,Bose SoundSport Headphones,1,99.99,10/29/19 23:37,"323 Center St, Atlanta, GA 30301" +269165,27in FHD Monitor,1,149.99,10/28/19 17:47,"354 Dogwood St, Boston, MA 02215" +269166,Lightning Charging Cable,1,14.95,10/06/19 16:47,"621 13th St, San Francisco, CA 94016" +269167,LG Dryer,1,600.0,10/21/19 18:38,"689 9th St, Los Angeles, CA 90001" +269168,27in 4K Gaming Monitor,1,389.99,10/14/19 05:52,"165 Spruce St, Boston, MA 02215" +269169,Bose SoundSport Headphones,1,99.99,10/22/19 11:12,"96 Lake St, San Francisco, CA 94016" +269170,iPhone,1,700,10/27/19 20:09,"233 South St, San Francisco, CA 94016" +269171,Apple Airpods Headphones,1,150,10/12/19 13:34,"103 Forest St, San Francisco, CA 94016" +269172,Lightning Charging Cable,1,14.95,10/01/19 20:25,"660 Chestnut St, Los Angeles, CA 90001" +269173,Apple Airpods Headphones,1,150,10/05/19 10:58,"8 Park St, Portland, OR 97035" +269174,AAA Batteries (4-pack),4,2.99,10/30/19 14:08,"538 Elm St, Boston, MA 02215" +269175,Apple Airpods Headphones,1,150,10/02/19 11:58,"677 Forest St, San Francisco, CA 94016" +269176,AA Batteries (4-pack),1,3.84,10/01/19 13:16,"520 Willow St, Portland, OR 97035" +269177,Lightning Charging Cable,1,14.95,10/31/19 08:00,"91 Willow St, New York City, NY 10001" +269178,Flatscreen TV,1,300,10/10/19 12:12,"153 2nd St, Los Angeles, CA 90001" +269179,Wired Headphones,1,11.99,10/07/19 15:12,"124 Adams St, Dallas, TX 75001" +269180,USB-C Charging Cable,1,11.95,10/27/19 15:07,"601 Church St, Atlanta, GA 30301" +269181,Google Phone,1,600,10/24/19 13:48,"674 13th St, Austin, TX 73301" +269181,USB-C Charging Cable,1,11.95,10/24/19 13:48,"674 13th St, Austin, TX 73301" +269182,USB-C Charging Cable,1,11.95,10/21/19 07:23,"240 14th St, Los Angeles, CA 90001" +269183,Wired Headphones,1,11.99,10/21/19 21:16,"531 11th St, Seattle, WA 98101" +269184,Lightning Charging Cable,1,14.95,10/28/19 03:32,"532 11th St, Boston, MA 02215" +269185,AA Batteries (4-pack),1,3.84,10/17/19 10:26,"529 Lake St, San Francisco, CA 94016" +269186,AA Batteries (4-pack),1,3.84,10/17/19 11:09,"699 South St, Los Angeles, CA 90001" +269187,Lightning Charging Cable,1,14.95,10/07/19 12:18,"941 10th St, New York City, NY 10001" +269188,AA Batteries (4-pack),2,3.84,10/18/19 05:18,"108 Lake St, San Francisco, CA 94016" +269189,ThinkPad Laptop,1,999.99,10/16/19 14:04,"208 Elm St, Los Angeles, CA 90001" +269190,Wired Headphones,1,11.99,10/05/19 16:13,"337 North St, Boston, MA 02215" +269191,Lightning Charging Cable,1,14.95,10/12/19 10:50,"231 Jefferson St, San Francisco, CA 94016" +269192,Google Phone,1,600,10/24/19 10:16,"683 Ridge St, Los Angeles, CA 90001" +269192,USB-C Charging Cable,1,11.95,10/24/19 10:16,"683 Ridge St, Los Angeles, CA 90001" +269193,AA Batteries (4-pack),1,3.84,10/28/19 13:52,"425 Maple St, San Francisco, CA 94016" +269194,USB-C Charging Cable,1,11.95,10/25/19 19:55,"110 Dogwood St, Dallas, TX 75001" +269195,Lightning Charging Cable,1,14.95,10/23/19 12:23,"255 8th St, San Francisco, CA 94016" +269196,Lightning Charging Cable,1,14.95,10/31/19 07:06,"939 Cedar St, Los Angeles, CA 90001" +269197,AA Batteries (4-pack),1,3.84,10/29/19 15:36,"87 Park St, Dallas, TX 75001" +269198,Apple Airpods Headphones,1,150,10/24/19 12:08,"193 11th St, San Francisco, CA 94016" +269199,Lightning Charging Cable,1,14.95,10/14/19 20:48,"476 Jackson St, Austin, TX 73301" +269200,Lightning Charging Cable,1,14.95,10/10/19 12:00,"121 Dogwood St, Atlanta, GA 30301" +269201,27in FHD Monitor,1,149.99,10/11/19 20:49,"587 Elm St, Austin, TX 73301" +269202,Wired Headphones,1,11.99,10/18/19 17:00,"758 Park St, San Francisco, CA 94016" +269203,ThinkPad Laptop,1,999.99,10/16/19 13:32,"849 Hickory St, Dallas, TX 75001" +269203,34in Ultrawide Monitor,1,379.99,10/16/19 13:32,"849 Hickory St, Dallas, TX 75001" +269204,27in 4K Gaming Monitor,1,389.99,10/14/19 12:25,"324 11th St, Dallas, TX 75001" +269205,USB-C Charging Cable,1,11.95,10/26/19 20:09,"175 Lake St, San Francisco, CA 94016" +269206,USB-C Charging Cable,3,11.95,10/08/19 11:17,"975 Pine St, Dallas, TX 75001" +269207,Bose SoundSport Headphones,1,99.99,10/22/19 12:56,"735 Willow St, Los Angeles, CA 90001" +269208,AA Batteries (4-pack),1,3.84,10/11/19 13:06,"801 Wilson St, San Francisco, CA 94016" +269209,AA Batteries (4-pack),1,3.84,10/31/19 12:01,"37 West St, San Francisco, CA 94016" +269210,27in FHD Monitor,1,149.99,10/08/19 10:37,"694 Pine St, Los Angeles, CA 90001" +269211,Bose SoundSport Headphones,1,99.99,10/01/19 18:27,"891 North St, New York City, NY 10001" +269212,AA Batteries (4-pack),1,3.84,10/05/19 09:48,"50 South St, Atlanta, GA 30301" +269213,20in Monitor,1,109.99,10/28/19 21:37,"585 13th St, Portland, OR 97035" +269214,Lightning Charging Cable,1,14.95,10/01/19 09:09,"215 Cedar St, Boston, MA 02215" +269215,Lightning Charging Cable,1,14.95,10/13/19 19:36,"281 Madison St, Dallas, TX 75001" +269216,Apple Airpods Headphones,1,150,10/08/19 19:44,"372 Ridge St, Seattle, WA 98101" +269217,Apple Airpods Headphones,1,150,10/09/19 14:11,"756 Johnson St, Portland, OR 97035" +269218,Lightning Charging Cable,2,14.95,10/11/19 23:27,"262 Washington St, Seattle, WA 98101" +269219,Wired Headphones,1,11.99,10/13/19 21:06,"915 9th St, San Francisco, CA 94016" +269220,Lightning Charging Cable,1,14.95,10/01/19 13:49,"458 Washington St, New York City, NY 10001" +269221,27in FHD Monitor,1,149.99,10/14/19 10:42,"787 7th St, Los Angeles, CA 90001" +269222,USB-C Charging Cable,1,11.95,10/27/19 17:20,"785 Cherry St, San Francisco, CA 94016" +269223,Apple Airpods Headphones,1,150,10/25/19 18:48,"38 Washington St, San Francisco, CA 94016" +269224,USB-C Charging Cable,2,11.95,10/08/19 20:08,"844 10th St, Portland, OR 97035" +269225,Wired Headphones,1,11.99,10/25/19 11:08,"453 Maple St, Los Angeles, CA 90001" +269226,AA Batteries (4-pack),1,3.84,10/12/19 14:42,"504 Church St, Boston, MA 02215" +269227,27in FHD Monitor,1,149.99,10/26/19 17:38,"618 Dogwood St, Seattle, WA 98101" +269228,iPhone,1,700,10/28/19 13:22,"362 10th St, New York City, NY 10001" +269229,USB-C Charging Cable,1,11.95,10/12/19 10:13,"66 Main St, San Francisco, CA 94016" +269230,AA Batteries (4-pack),1,3.84,10/06/19 02:57,"189 Sunset St, Dallas, TX 75001" +269231,Lightning Charging Cable,1,14.95,10/25/19 17:28,"724 Cedar St, San Francisco, CA 94016" +269232,AA Batteries (4-pack),4,3.84,10/09/19 09:33,"993 1st St, Portland, OR 97035" +269233,Lightning Charging Cable,1,14.95,10/14/19 21:51,"820 Forest St, Boston, MA 02215" +269234,USB-C Charging Cable,1,11.95,10/27/19 20:12,"430 North St, San Francisco, CA 94016" +269235,AA Batteries (4-pack),1,3.84,10/18/19 18:24,"964 Madison St, Boston, MA 02215" +269236,USB-C Charging Cable,1,11.95,10/30/19 11:35,"43 Washington St, Boston, MA 02215" +269236,AA Batteries (4-pack),2,3.84,10/30/19 11:35,"43 Washington St, Boston, MA 02215" +269237,Google Phone,1,600,10/26/19 16:15,"995 Main St, Portland, OR 97035" +269238,Apple Airpods Headphones,1,150,10/12/19 13:58,"620 Cedar St, Atlanta, GA 30301" +269239,Lightning Charging Cable,1,14.95,10/11/19 15:50,"879 River St, Portland, OR 97035" +269240,AA Batteries (4-pack),2,3.84,10/03/19 12:22,"131 Hickory St, San Francisco, CA 94016" +269241,Wired Headphones,1,11.99,10/17/19 16:25,"52 Johnson St, Dallas, TX 75001" +269242,USB-C Charging Cable,1,11.95,10/30/19 09:06,"431 Center St, New York City, NY 10001" +269243,34in Ultrawide Monitor,1,379.99,10/12/19 15:33,"229 Hill St, Dallas, TX 75001" +269244,AAA Batteries (4-pack),1,2.99,10/06/19 09:24,"308 Willow St, Austin, TX 73301" +269245,AAA Batteries (4-pack),1,2.99,10/31/19 08:18,"927 11th St, Portland, OR 97035" +269246,Bose SoundSport Headphones,1,99.99,10/13/19 10:01,"833 5th St, Portland, OR 97035" +269247,Wired Headphones,1,11.99,10/25/19 17:47,"248 Hill St, San Francisco, CA 94016" +269248,AAA Batteries (4-pack),1,2.99,10/02/19 08:46,"920 6th St, New York City, NY 10001" +269249,USB-C Charging Cable,2,11.95,10/18/19 08:48,"416 5th St, San Francisco, CA 94016" +269250,USB-C Charging Cable,1,11.95,10/02/19 13:53,"333 Chestnut St, Boston, MA 02215" +269251,USB-C Charging Cable,2,11.95,10/18/19 07:33,"546 Church St, Portland, OR 97035" +269252,Apple Airpods Headphones,1,150,10/10/19 17:37,"855 Highland St, New York City, NY 10001" +269253,Vareebadd Phone,1,400,10/08/19 05:13,"649 1st St, San Francisco, CA 94016" +269253,USB-C Charging Cable,2,11.95,10/08/19 05:13,"649 1st St, San Francisco, CA 94016" +269254,27in 4K Gaming Monitor,1,389.99,10/26/19 21:25,"42 Willow St, Dallas, TX 75001" +269255,AA Batteries (4-pack),1,3.84,10/10/19 18:36,"78 Johnson St, Seattle, WA 98101" +269256,Apple Airpods Headphones,1,150,10/07/19 13:20,"180 Elm St, Dallas, TX 75001" +269257,Macbook Pro Laptop,1,1700,10/16/19 18:18,"114 Adams St, Portland, OR 97035" +269258,Lightning Charging Cable,1,14.95,10/20/19 12:06,"209 Washington St, Atlanta, GA 30301" +269259,Bose SoundSport Headphones,1,99.99,10/22/19 18:29,"293 11th St, Los Angeles, CA 90001" +269260,Bose SoundSport Headphones,1,99.99,10/21/19 19:26,"242 Willow St, San Francisco, CA 94016" +269261,Lightning Charging Cable,1,14.95,10/16/19 10:38,"442 7th St, New York City, NY 10001" +269262,Apple Airpods Headphones,1,150,10/26/19 08:15,"320 South St, San Francisco, CA 94016" +269263,20in Monitor,1,109.99,10/08/19 09:14,"602 Sunset St, Portland, OR 97035" +269264,USB-C Charging Cable,1,11.95,10/09/19 09:42,"752 12th St, Boston, MA 02215" +269265,27in FHD Monitor,1,149.99,10/13/19 18:56,"529 Adams St, Seattle, WA 98101" +269266,Apple Airpods Headphones,1,150,10/04/19 08:48,"470 5th St, San Francisco, CA 94016" +269267,Macbook Pro Laptop,1,1700,10/28/19 18:21,"57 Park St, Seattle, WA 98101" +269268,USB-C Charging Cable,1,11.95,10/19/19 15:01,"710 Ridge St, Boston, MA 02215" +269269,Apple Airpods Headphones,1,150,10/22/19 20:11,"73 Walnut St, Atlanta, GA 30301" +269270,27in 4K Gaming Monitor,1,389.99,10/21/19 13:03,"185 Johnson St, Boston, MA 02215" +269271,AAA Batteries (4-pack),3,2.99,10/24/19 03:46,"358 West St, New York City, NY 10001" +269272,Google Phone,1,600,10/08/19 13:29,"765 Hill St, Austin, TX 73301" +269272,USB-C Charging Cable,1,11.95,10/08/19 13:29,"765 Hill St, Austin, TX 73301" +269273,Lightning Charging Cable,1,14.95,10/09/19 10:39,"193 Cedar St, Austin, TX 73301" +269274,20in Monitor,1,109.99,10/04/19 16:29,"414 North St, Atlanta, GA 30301" +269275,Lightning Charging Cable,1,14.95,10/29/19 10:31,"992 6th St, Los Angeles, CA 90001" +269276,Macbook Pro Laptop,1,1700,10/06/19 22:36,"397 Cherry St, San Francisco, CA 94016" +269277,27in 4K Gaming Monitor,1,389.99,10/15/19 13:28,"553 8th St, Dallas, TX 75001" +269278,Google Phone,1,600,10/11/19 21:06,"836 Main St, Dallas, TX 75001" +269278,USB-C Charging Cable,1,11.95,10/11/19 21:06,"836 Main St, Dallas, TX 75001" +269279,ThinkPad Laptop,1,999.99,10/03/19 19:59,"359 8th St, Atlanta, GA 30301" +269280,USB-C Charging Cable,1,11.95,10/03/19 10:47,"155 Main St, San Francisco, CA 94016" +269281,AA Batteries (4-pack),2,3.84,10/21/19 11:38,"702 Sunset St, Portland, OR 97035" +269282,Flatscreen TV,1,300,10/19/19 00:31,"836 4th St, Dallas, TX 75001" +269283,Apple Airpods Headphones,1,150,10/29/19 11:53,"286 8th St, San Francisco, CA 94016" +269284,Lightning Charging Cable,1,14.95,10/24/19 10:41,"159 Meadow St, Los Angeles, CA 90001" +269285,27in 4K Gaming Monitor,1,389.99,10/20/19 20:49,"945 Hill St, Los Angeles, CA 90001" +269286,AAA Batteries (4-pack),1,2.99,10/13/19 10:36,"404 Willow St, New York City, NY 10001" +269287,27in 4K Gaming Monitor,1,389.99,10/27/19 20:47,"988 South St, New York City, NY 10001" +269288,Google Phone,1,600,10/31/19 21:17,"404 Lake St, Los Angeles, CA 90001" +269289,AA Batteries (4-pack),1,3.84,10/15/19 17:00,"557 12th St, Los Angeles, CA 90001" +269290,USB-C Charging Cable,1,11.95,10/29/19 22:39,"938 Sunset St, New York City, NY 10001" +269291,USB-C Charging Cable,1,11.95,10/13/19 19:16,"585 7th St, San Francisco, CA 94016" +269292,USB-C Charging Cable,1,11.95,10/14/19 11:35,"388 7th St, Atlanta, GA 30301" +269293,AAA Batteries (4-pack),1,2.99,10/30/19 13:29,"890 Dogwood St, New York City, NY 10001" +269294,Apple Airpods Headphones,1,150,10/29/19 18:08,"721 Hill St, Portland, OR 97035" +269295,Lightning Charging Cable,1,14.95,10/10/19 19:20,"886 11th St, New York City, NY 10001" +269296,LG Washing Machine,1,600.0,10/11/19 09:01,"803 Meadow St, Los Angeles, CA 90001" +269297,Flatscreen TV,1,300,10/17/19 07:29,"77 5th St, Dallas, TX 75001" +269298,Apple Airpods Headphones,1,150,10/29/19 14:55,"198 Washington St, Los Angeles, CA 90001" +269299,Lightning Charging Cable,1,14.95,10/27/19 14:45,"515 6th St, Boston, MA 02215" +269299,iPhone,1,700,10/27/19 14:45,"515 6th St, Boston, MA 02215" +269300,USB-C Charging Cable,1,11.95,10/16/19 20:03,"263 Jefferson St, San Francisco, CA 94016" +269301,ThinkPad Laptop,1,999.99,10/29/19 10:47,"629 13th St, Los Angeles, CA 90001" +269302,Lightning Charging Cable,1,14.95,10/22/19 08:12,"40 Washington St, Austin, TX 73301" +269303,ThinkPad Laptop,1,999.99,10/13/19 19:34,"943 9th St, Boston, MA 02215" +269304,ThinkPad Laptop,1,999.99,10/03/19 14:18,"238 River St, Los Angeles, CA 90001" +269305,Macbook Pro Laptop,1,1700,10/11/19 11:10,"585 7th St, Los Angeles, CA 90001" +269306,20in Monitor,1,109.99,10/01/19 14:08,"955 14th St, San Francisco, CA 94016" +269307,27in FHD Monitor,1,149.99,10/08/19 09:05,"972 Adams St, Boston, MA 02215" +269308,AA Batteries (4-pack),1,3.84,10/19/19 08:05,"237 7th St, Dallas, TX 75001" +269309,AAA Batteries (4-pack),3,2.99,10/28/19 19:52,"618 1st St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +269310,20in Monitor,1,109.99,10/25/19 20:14,"805 Church St, Portland, OR 97035" +269311,Bose SoundSport Headphones,1,99.99,10/15/19 12:06,"940 Cherry St, Dallas, TX 75001" +269312,AA Batteries (4-pack),1,3.84,10/17/19 19:06,"855 7th St, Atlanta, GA 30301" +269313,34in Ultrawide Monitor,1,379.99,10/08/19 17:23,"518 West St, Portland, OR 97035" +269314,AA Batteries (4-pack),1,3.84,10/28/19 22:52,"140 Lake St, Austin, TX 73301" +269315,20in Monitor,1,109.99,10/20/19 20:04,"864 Meadow St, Seattle, WA 98101" +269316,AAA Batteries (4-pack),1,2.99,10/31/19 19:34,"648 Pine St, New York City, NY 10001" +269317,20in Monitor,1,109.99,10/03/19 18:33,"381 Hickory St, San Francisco, CA 94016" +269318,Wired Headphones,1,11.99,10/01/19 13:03,"575 Highland St, Atlanta, GA 30301" +269319,AA Batteries (4-pack),2,3.84,10/05/19 06:55,"22 Lake St, Austin, TX 73301" +269320,ThinkPad Laptop,1,999.99,10/06/19 15:29,"587 6th St, New York City, NY 10001" +269321,Lightning Charging Cable,1,14.95,10/04/19 13:25,"150 Johnson St, New York City, NY 10001" +269322,Wired Headphones,1,11.99,10/28/19 21:32,"394 South St, Atlanta, GA 30301" +269323,Wired Headphones,1,11.99,10/21/19 15:24,"552 Meadow St, Boston, MA 02215" +269324,34in Ultrawide Monitor,1,379.99,10/02/19 09:34,"323 Jackson St, New York City, NY 10001" +269325,Apple Airpods Headphones,1,150,10/10/19 11:31,"854 Johnson St, Portland, ME 04101" +269326,USB-C Charging Cable,1,11.95,10/13/19 22:57,"710 Park St, New York City, NY 10001" +269327,iPhone,1,700,10/06/19 15:39,"123 Highland St, New York City, NY 10001" +269327,Lightning Charging Cable,1,14.95,10/06/19 15:39,"123 Highland St, New York City, NY 10001" +269328,LG Dryer,1,600.0,10/28/19 22:51,"712 8th St, Boston, MA 02215" +269329,Lightning Charging Cable,1,14.95,10/25/19 19:28,"165 River St, Portland, OR 97035" +269330,Wired Headphones,1,11.99,10/25/19 14:21,"477 North St, New York City, NY 10001" +269331,USB-C Charging Cable,1,11.95,10/02/19 10:15,"688 Meadow St, Boston, MA 02215" +269332,Bose SoundSport Headphones,1,99.99,10/04/19 16:18,"544 7th St, San Francisco, CA 94016" +269333,27in 4K Gaming Monitor,1,389.99,10/10/19 22:36,"483 9th St, San Francisco, CA 94016" +269334,AA Batteries (4-pack),1,3.84,10/13/19 11:44,"775 10th St, Portland, OR 97035" +269335,Wired Headphones,1,11.99,10/28/19 23:31,"701 10th St, Boston, MA 02215" +269336,Apple Airpods Headphones,1,150,10/29/19 12:01,"129 Lincoln St, New York City, NY 10001" +269337,27in FHD Monitor,1,149.99,10/31/19 12:11,"104 Spruce St, San Francisco, CA 94016" +269338,AA Batteries (4-pack),1,3.84,10/24/19 22:02,"167 Walnut St, Seattle, WA 98101" +269339,Wired Headphones,1,11.99,10/14/19 18:27,"973 10th St, San Francisco, CA 94016" +269340,Flatscreen TV,1,300,10/27/19 18:43,"720 South St, Dallas, TX 75001" +269341,Wired Headphones,1,11.99,10/03/19 18:48,"318 7th St, Atlanta, GA 30301" +269342,Apple Airpods Headphones,1,150,10/24/19 13:55,"712 Spruce St, San Francisco, CA 94016" +269343,USB-C Charging Cable,1,11.95,10/19/19 23:20,"351 7th St, New York City, NY 10001" +269344,Apple Airpods Headphones,1,150,10/23/19 17:58,"518 Park St, New York City, NY 10001" +269345,USB-C Charging Cable,2,11.95,10/26/19 01:21,"163 Elm St, Portland, OR 97035" +269346,Wired Headphones,1,11.99,10/19/19 18:37,"118 Walnut St, San Francisco, CA 94016" +269347,Bose SoundSport Headphones,1,99.99,10/31/19 11:30,"230 Washington St, New York City, NY 10001" +269348,Lightning Charging Cable,1,14.95,10/21/19 12:31,"502 11th St, Los Angeles, CA 90001" +269349,Lightning Charging Cable,1,14.95,10/02/19 03:19,"784 Hill St, Dallas, TX 75001" +269350,Wired Headphones,1,11.99,10/13/19 08:20,"69 8th St, San Francisco, CA 94016" +269351,USB-C Charging Cable,1,11.95,10/11/19 15:23,"27 Lake St, Atlanta, GA 30301" +269352,Lightning Charging Cable,1,14.95,10/02/19 12:45,"61 West St, San Francisco, CA 94016" +269353,AA Batteries (4-pack),1,3.84,10/28/19 11:31,"26 Elm St, San Francisco, CA 94016" +269354,AAA Batteries (4-pack),2,2.99,10/05/19 07:46,"161 Church St, Atlanta, GA 30301" +269355,AA Batteries (4-pack),1,3.84,10/25/19 17:26,"365 1st St, New York City, NY 10001" +269356,Lightning Charging Cable,1,14.95,10/02/19 08:50,"943 Park St, New York City, NY 10001" +269357,LG Dryer,1,600.0,10/14/19 11:24,"789 West St, New York City, NY 10001" +269358,Macbook Pro Laptop,1,1700,10/27/19 22:44,"196 Sunset St, Portland, OR 97035" +269359,AAA Batteries (4-pack),1,2.99,10/11/19 16:13,"262 1st St, Dallas, TX 75001" +269360,Wired Headphones,1,11.99,10/25/19 23:37,"133 Church St, San Francisco, CA 94016" +269361,AAA Batteries (4-pack),1,2.99,10/28/19 08:29,"438 5th St, Atlanta, GA 30301" +269362,Wired Headphones,1,11.99,10/21/19 16:18,"475 7th St, New York City, NY 10001" +269363,AA Batteries (4-pack),3,3.84,10/16/19 23:33,"314 Spruce St, Boston, MA 02215" +269364,Bose SoundSport Headphones,1,99.99,10/07/19 10:40,"561 9th St, San Francisco, CA 94016" +269365,Bose SoundSport Headphones,1,99.99,10/11/19 20:13,"689 Maple St, Los Angeles, CA 90001" +269366,Macbook Pro Laptop,1,1700,10/09/19 12:14,"377 10th St, Seattle, WA 98101" +269367,Lightning Charging Cable,1,14.95,10/09/19 10:36,"799 West St, San Francisco, CA 94016" +269368,Flatscreen TV,1,300,10/06/19 18:33,"741 Cherry St, Atlanta, GA 30301" +269369,27in FHD Monitor,1,149.99,10/15/19 23:44,"501 Forest St, Seattle, WA 98101" +269370,Flatscreen TV,1,300,10/01/19 11:24,"374 Adams St, San Francisco, CA 94016" +269371,Bose SoundSport Headphones,1,99.99,10/06/19 11:43,"78 1st St, Los Angeles, CA 90001" +269372,27in FHD Monitor,1,149.99,10/20/19 11:16,"65 West St, San Francisco, CA 94016" +269373,34in Ultrawide Monitor,1,379.99,10/05/19 20:23,"101 Dogwood St, San Francisco, CA 94016" +269374,USB-C Charging Cable,1,11.95,10/30/19 15:34,"781 Washington St, Dallas, TX 75001" +269375,Flatscreen TV,1,300,10/30/19 09:48,"534 Willow St, New York City, NY 10001" +269376,iPhone,1,700,10/16/19 12:53,"234 Cedar St, Portland, OR 97035" +269377,Wired Headphones,1,11.99,10/08/19 00:36,"246 12th St, Seattle, WA 98101" +269378,Lightning Charging Cable,1,14.95,10/23/19 10:49,"634 Church St, New York City, NY 10001" +269379,27in FHD Monitor,1,149.99,10/04/19 13:04,"983 10th St, Boston, MA 02215" +269380,AA Batteries (4-pack),2,3.84,10/25/19 10:18,"554 Dogwood St, Atlanta, GA 30301" +269381,Apple Airpods Headphones,1,150,10/28/19 18:53,"245 1st St, Portland, OR 97035" +269382,Flatscreen TV,1,300,10/31/19 17:52,"68 13th St, San Francisco, CA 94016" +269383,AA Batteries (4-pack),1,3.84,10/23/19 18:29,"982 2nd St, San Francisco, CA 94016" +269384,USB-C Charging Cable,1,11.95,10/09/19 13:44,"230 Wilson St, Atlanta, GA 30301" +269384,Macbook Pro Laptop,1,1700,10/09/19 13:44,"230 Wilson St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +269385,Flatscreen TV,1,300,10/22/19 19:27,"143 South St, San Francisco, CA 94016" +269386,Bose SoundSport Headphones,1,99.99,10/24/19 12:05,"695 13th St, Los Angeles, CA 90001" +269387,Bose SoundSport Headphones,1,99.99,10/05/19 15:12,"994 Jackson St, Portland, OR 97035" +269388,Bose SoundSport Headphones,1,99.99,10/07/19 21:45,"502 Dogwood St, New York City, NY 10001" +269389,USB-C Charging Cable,1,11.95,10/31/19 11:28,"254 11th St, Seattle, WA 98101" +269390,Macbook Pro Laptop,1,1700,10/04/19 10:21,"228 5th St, Boston, MA 02215" +269391,27in 4K Gaming Monitor,1,389.99,10/18/19 09:18,"345 Walnut St, Austin, TX 73301" +269392,27in FHD Monitor,1,149.99,10/21/19 01:02,"409 Main St, New York City, NY 10001" +269393,USB-C Charging Cable,1,11.95,10/15/19 09:07,"430 14th St, Atlanta, GA 30301" +269394,Lightning Charging Cable,1,14.95,10/21/19 22:06,"838 Center St, Los Angeles, CA 90001" +269395,ThinkPad Laptop,1,999.99,10/30/19 11:06,"459 Main St, San Francisco, CA 94016" +269396,AAA Batteries (4-pack),1,2.99,10/14/19 13:46,"262 Spruce St, San Francisco, CA 94016" +269397,Lightning Charging Cable,1,14.95,10/26/19 12:51,"833 Johnson St, Portland, OR 97035" +269398,USB-C Charging Cable,1,11.95,10/19/19 12:52,"482 Adams St, Boston, MA 02215" +269399,AA Batteries (4-pack),1,3.84,10/28/19 20:21,"222 Center St, Atlanta, GA 30301" +269400,AAA Batteries (4-pack),1,2.99,10/05/19 09:47,"40 4th St, San Francisco, CA 94016" +269401,AA Batteries (4-pack),1,3.84,10/09/19 22:55,"178 Jackson St, Los Angeles, CA 90001" +269402,Lightning Charging Cable,1,14.95,10/31/19 08:14,"1 Walnut St, San Francisco, CA 94016" +269403,27in 4K Gaming Monitor,1,389.99,10/26/19 14:34,"511 Ridge St, Los Angeles, CA 90001" +269404,Lightning Charging Cable,1,14.95,10/11/19 21:21,"798 Jefferson St, Los Angeles, CA 90001" +269405,Wired Headphones,1,11.99,10/08/19 09:13,"576 12th St, New York City, NY 10001" +269406,USB-C Charging Cable,1,11.95,10/29/19 20:08,"611 Washington St, Boston, MA 02215" +269407,Apple Airpods Headphones,1,150,10/20/19 16:38,"524 South St, Dallas, TX 75001" +269408,Lightning Charging Cable,1,14.95,10/13/19 19:55,"649 9th St, Los Angeles, CA 90001" +269409,Wired Headphones,1,11.99,10/06/19 09:46,"43 Johnson St, Boston, MA 02215" +269410,AAA Batteries (4-pack),1,2.99,10/05/19 18:38,"572 Church St, Atlanta, GA 30301" +269411,Vareebadd Phone,1,400,10/15/19 08:48,"539 Walnut St, Los Angeles, CA 90001" +269412,Lightning Charging Cable,1,14.95,10/13/19 12:56,"93 Highland St, Los Angeles, CA 90001" +269413,Lightning Charging Cable,1,14.95,10/02/19 16:59,"137 Main St, San Francisco, CA 94016" +269414,Wired Headphones,1,11.99,10/19/19 14:04,"523 Park St, New York City, NY 10001" +269415,34in Ultrawide Monitor,1,379.99,10/22/19 11:35,"93 5th St, San Francisco, CA 94016" +269416,27in 4K Gaming Monitor,1,389.99,10/02/19 11:12,"475 6th St, San Francisco, CA 94016" +269417,34in Ultrawide Monitor,1,379.99,10/30/19 17:29,"913 6th St, San Francisco, CA 94016" +269418,34in Ultrawide Monitor,1,379.99,10/27/19 14:13,"606 9th St, Atlanta, GA 30301" +269419,Bose SoundSport Headphones,1,99.99,10/13/19 20:41,"171 North St, Los Angeles, CA 90001" +269420,20in Monitor,1,109.99,10/17/19 11:59,"742 Forest St, Atlanta, GA 30301" +269421,Vareebadd Phone,1,400,10/18/19 21:04,"310 7th St, New York City, NY 10001" +269422,Wired Headphones,1,11.99,10/03/19 11:15,"417 11th St, Los Angeles, CA 90001" +269423,34in Ultrawide Monitor,1,379.99,10/13/19 15:45,"937 Madison St, Boston, MA 02215" +269424,27in 4K Gaming Monitor,1,389.99,10/18/19 18:44,"345 Dogwood St, Seattle, WA 98101" +269425,Apple Airpods Headphones,1,150,10/31/19 19:18,"36 Church St, Portland, ME 04101" +269426,AAA Batteries (4-pack),4,2.99,10/21/19 15:36,"801 Maple St, Atlanta, GA 30301" +269427,Apple Airpods Headphones,1,150,10/18/19 21:24,"976 Church St, San Francisco, CA 94016" +269428,Lightning Charging Cable,1,14.95,10/11/19 09:27,"214 Spruce St, San Francisco, CA 94016" +269429,34in Ultrawide Monitor,1,379.99,10/07/19 10:18,"319 9th St, New York City, NY 10001" +269430,AAA Batteries (4-pack),2,2.99,10/18/19 16:45,"689 Pine St, San Francisco, CA 94016" +269431,Bose SoundSport Headphones,1,99.99,10/30/19 20:56,"54 Lake St, San Francisco, CA 94016" +269432,ThinkPad Laptop,1,999.99,10/08/19 10:04,"150 River St, Atlanta, GA 30301" +269433,AA Batteries (4-pack),2,3.84,10/18/19 21:25,"213 Church St, Austin, TX 73301" +269434,AA Batteries (4-pack),1,3.84,10/26/19 23:43,"363 Walnut St, San Francisco, CA 94016" +269435,USB-C Charging Cable,1,11.95,10/13/19 17:35,"561 Hickory St, San Francisco, CA 94016" +269436,27in FHD Monitor,1,149.99,10/03/19 22:20,"676 Walnut St, Austin, TX 73301" +269437,USB-C Charging Cable,1,11.95,10/22/19 12:30,"351 Sunset St, Seattle, WA 98101" +269438,Apple Airpods Headphones,1,150,10/07/19 14:49,"466 Elm St, Seattle, WA 98101" +269439,AAA Batteries (4-pack),3,2.99,10/19/19 10:10,"464 Park St, Los Angeles, CA 90001" +269440,iPhone,1,700,10/29/19 14:16,"912 Highland St, Dallas, TX 75001" +269441,AAA Batteries (4-pack),1,2.99,10/16/19 13:18,"586 West St, San Francisco, CA 94016" +269442,Google Phone,1,600,10/10/19 19:17,"707 Ridge St, Boston, MA 02215" +269443,Bose SoundSport Headphones,1,99.99,10/21/19 14:21,"885 Wilson St, San Francisco, CA 94016" +269444,AAA Batteries (4-pack),1,2.99,10/27/19 15:05,"457 Pine St, Boston, MA 02215" +269445,Wired Headphones,1,11.99,10/24/19 10:48,"199 5th St, Los Angeles, CA 90001" +269446,Lightning Charging Cable,1,14.95,10/22/19 19:01,"390 Forest St, San Francisco, CA 94016" +269447,USB-C Charging Cable,1,11.95,10/17/19 00:44,"812 Johnson St, Los Angeles, CA 90001" +269448,AA Batteries (4-pack),2,3.84,10/03/19 15:27,"211 Madison St, Atlanta, GA 30301" +269449,AA Batteries (4-pack),2,3.84,10/15/19 22:20,"328 Adams St, San Francisco, CA 94016" +269449,AA Batteries (4-pack),1,3.84,10/15/19 22:20,"328 Adams St, San Francisco, CA 94016" +269450,AAA Batteries (4-pack),1,2.99,10/07/19 14:37,"262 West St, Los Angeles, CA 90001" +269451,AAA Batteries (4-pack),1,2.99,10/23/19 12:25,"270 2nd St, New York City, NY 10001" +269452,Apple Airpods Headphones,1,150,10/22/19 13:05,"784 2nd St, San Francisco, CA 94016" +269453,27in 4K Gaming Monitor,1,389.99,10/02/19 10:02,"110 Chestnut St, Atlanta, GA 30301" +269454,Apple Airpods Headphones,1,150,10/01/19 16:10,"998 7th St, New York City, NY 10001" +269455,Apple Airpods Headphones,1,150,10/20/19 18:07,"401 12th St, San Francisco, CA 94016" +269456,Bose SoundSport Headphones,1,99.99,10/05/19 19:46,"579 Madison St, Portland, OR 97035" +269457,Lightning Charging Cable,1,14.95,10/01/19 18:08,"232 Sunset St, San Francisco, CA 94016" +269458,iPhone,1,700,10/12/19 20:12,"461 Hill St, Atlanta, GA 30301" +269459,Lightning Charging Cable,1,14.95,10/09/19 11:18,"358 4th St, Dallas, TX 75001" +269460,Apple Airpods Headphones,1,150,10/16/19 09:18,"722 Lake St, Los Angeles, CA 90001" +269460,AA Batteries (4-pack),1,3.84,10/16/19 09:18,"722 Lake St, Los Angeles, CA 90001" +269461,Wired Headphones,1,11.99,10/22/19 09:21,"493 Elm St, Portland, OR 97035" +269462,Lightning Charging Cable,1,14.95,10/14/19 19:41,"200 14th St, Los Angeles, CA 90001" +269463,Google Phone,1,600,10/17/19 07:56,"681 14th St, San Francisco, CA 94016" +269464,Bose SoundSport Headphones,1,99.99,10/27/19 13:00,"823 Meadow St, San Francisco, CA 94016" +269465,Bose SoundSport Headphones,1,99.99,10/22/19 12:34,"450 Cherry St, New York City, NY 10001" +269466,Bose SoundSport Headphones,1,99.99,10/31/19 10:56,"351 River St, Dallas, TX 75001" +269467,AA Batteries (4-pack),1,3.84,10/03/19 10:00,"773 Hill St, San Francisco, CA 94016" +269468,27in FHD Monitor,1,149.99,10/03/19 16:11,"746 River St, New York City, NY 10001" +269469,Bose SoundSport Headphones,1,99.99,10/24/19 10:16,"77 Sunset St, Los Angeles, CA 90001" +269470,27in FHD Monitor,1,149.99,10/04/19 16:10,"80 Park St, San Francisco, CA 94016" +269471,AAA Batteries (4-pack),1,2.99,10/01/19 18:03,"907 7th St, Dallas, TX 75001" +269472,USB-C Charging Cable,2,11.95,11/01/19 00:22,"405 Adams St, San Francisco, CA 94016" +269473,USB-C Charging Cable,1,11.95,10/23/19 12:42,"829 South St, Seattle, WA 98101" +,,,,, +269474,27in FHD Monitor,1,149.99,10/03/19 22:11,"648 West St, New York City, NY 10001" +269475,Apple Airpods Headphones,1,150,10/06/19 11:47,"301 West St, San Francisco, CA 94016" +269476,AA Batteries (4-pack),1,3.84,10/28/19 14:26,"874 7th St, Los Angeles, CA 90001" +269477,27in 4K Gaming Monitor,1,389.99,10/23/19 09:11,"804 1st St, New York City, NY 10001" +269478,Vareebadd Phone,1,400,10/17/19 17:26,"882 Adams St, San Francisco, CA 94016" +269479,Lightning Charging Cable,1,14.95,10/31/19 20:32,"82 Hickory St, Seattle, WA 98101" +269480,Bose SoundSport Headphones,1,99.99,10/04/19 19:21,"844 North St, Boston, MA 02215" +269481,Lightning Charging Cable,1,14.95,10/15/19 21:51,"571 Hill St, Los Angeles, CA 90001" +269482,AA Batteries (4-pack),1,3.84,10/03/19 18:24,"243 Washington St, Atlanta, GA 30301" +269483,USB-C Charging Cable,1,11.95,10/18/19 15:38,"207 Adams St, Boston, MA 02215" +269484,AA Batteries (4-pack),3,3.84,10/29/19 19:54,"445 Dogwood St, Seattle, WA 98101" +269485,iPhone,1,700,10/07/19 16:33,"340 Wilson St, Austin, TX 73301" +269486,34in Ultrawide Monitor,1,379.99,10/04/19 21:40,"458 Dogwood St, Los Angeles, CA 90001" +269487,AA Batteries (4-pack),1,3.84,10/20/19 10:21,"407 Walnut St, San Francisco, CA 94016" +269488,Bose SoundSport Headphones,1,99.99,10/28/19 14:02,"209 Park St, New York City, NY 10001" +269489,Lightning Charging Cable,1,14.95,10/20/19 14:26,"80 1st St, Seattle, WA 98101" +269490,AA Batteries (4-pack),1,3.84,10/07/19 16:00,"286 11th St, Los Angeles, CA 90001" +269491,Lightning Charging Cable,1,14.95,10/29/19 14:09,"864 Center St, San Francisco, CA 94016" +269492,AAA Batteries (4-pack),1,2.99,10/25/19 03:12,"870 Maple St, Dallas, TX 75001" +269493,27in FHD Monitor,1,149.99,10/08/19 21:27,"178 Cedar St, Los Angeles, CA 90001" +269494,Bose SoundSport Headphones,1,99.99,10/23/19 13:26,"126 Lakeview St, New York City, NY 10001" +269495,iPhone,1,700,10/19/19 16:57,"293 10th St, San Francisco, CA 94016" +269496,USB-C Charging Cable,1,11.95,10/30/19 12:04,"746 Park St, New York City, NY 10001" +269497,Flatscreen TV,1,300,10/20/19 22:42,"581 7th St, Seattle, WA 98101" +269497,USB-C Charging Cable,1,11.95,10/20/19 22:42,"581 7th St, Seattle, WA 98101" +269498,iPhone,1,700,10/11/19 15:16,"498 5th St, Dallas, TX 75001" +269499,AA Batteries (4-pack),1,3.84,10/03/19 18:28,"181 Walnut St, New York City, NY 10001" +269500,USB-C Charging Cable,1,11.95,10/05/19 20:14,"97 Willow St, New York City, NY 10001" +269501,34in Ultrawide Monitor,1,379.99,10/17/19 16:51,"940 13th St, New York City, NY 10001" +269502,34in Ultrawide Monitor,1,379.99,10/30/19 22:32,"222 7th St, Los Angeles, CA 90001" +269503,AA Batteries (4-pack),1,3.84,10/30/19 22:21,"810 14th St, San Francisco, CA 94016" +269504,Lightning Charging Cable,1,14.95,10/18/19 16:47,"200 North St, San Francisco, CA 94016" +269505,USB-C Charging Cable,1,11.95,10/24/19 08:38,"831 West St, Los Angeles, CA 90001" +269505,AA Batteries (4-pack),2,3.84,10/24/19 08:38,"831 West St, Los Angeles, CA 90001" +269506,Wired Headphones,1,11.99,10/01/19 21:58,"463 9th St, Los Angeles, CA 90001" +269507,AA Batteries (4-pack),3,3.84,10/17/19 10:41,"999 Willow St, San Francisco, CA 94016" +269508,AAA Batteries (4-pack),2,2.99,10/19/19 11:50,"153 4th St, San Francisco, CA 94016" +269509,USB-C Charging Cable,1,11.95,10/09/19 21:55,"919 Forest St, Dallas, TX 75001" +269510,Macbook Pro Laptop,1,1700,10/27/19 09:46,"911 Ridge St, Seattle, WA 98101" +269511,AAA Batteries (4-pack),1,2.99,10/01/19 18:30,"123 Ridge St, Los Angeles, CA 90001" +269512,AA Batteries (4-pack),1,3.84,10/27/19 14:38,"849 Hickory St, Dallas, TX 75001" +269513,Apple Airpods Headphones,1,150,10/24/19 14:51,"54 Church St, San Francisco, CA 94016" +269514,34in Ultrawide Monitor,1,379.99,10/23/19 19:12,"875 Pine St, New York City, NY 10001" +269515,Lightning Charging Cable,1,14.95,10/25/19 10:42,"347 Jefferson St, Austin, TX 73301" +269516,AA Batteries (4-pack),2,3.84,10/05/19 01:38,"386 Dogwood St, Los Angeles, CA 90001" +269517,Apple Airpods Headphones,1,150,10/20/19 12:15,"733 10th St, San Francisco, CA 94016" +269518,AA Batteries (4-pack),1,3.84,10/17/19 22:38,"916 1st St, New York City, NY 10001" +269519,Apple Airpods Headphones,1,150,10/05/19 20:17,"610 1st St, Atlanta, GA 30301" +269520,Apple Airpods Headphones,1,150,10/27/19 12:38,"792 Lincoln St, Atlanta, GA 30301" +269521,Google Phone,1,600,10/24/19 07:14,"243 Forest St, Boston, MA 02215" +269522,Bose SoundSport Headphones,1,99.99,10/17/19 16:36,"206 7th St, Atlanta, GA 30301" +269523,iPhone,1,700,10/30/19 12:37,"28 Highland St, Portland, OR 97035" +269524,Macbook Pro Laptop,1,1700,10/15/19 16:34,"657 Adams St, New York City, NY 10001" +269525,Wired Headphones,1,11.99,10/19/19 19:35,"411 Lakeview St, San Francisco, CA 94016" +269526,Wired Headphones,1,11.99,10/05/19 20:39,"456 Elm St, Seattle, WA 98101" +269527,Lightning Charging Cable,1,14.95,10/17/19 19:06,"188 West St, Dallas, TX 75001" +269528,USB-C Charging Cable,1,11.95,10/12/19 14:45,"784 Meadow St, Boston, MA 02215" +269529,20in Monitor,1,109.99,10/20/19 00:36,"105 Hickory St, San Francisco, CA 94016" +269530,AA Batteries (4-pack),1,3.84,10/06/19 12:06,"229 7th St, Los Angeles, CA 90001" +269531,AA Batteries (4-pack),1,3.84,10/01/19 15:59,"184 Jackson St, Los Angeles, CA 90001" +269532,AAA Batteries (4-pack),3,2.99,10/04/19 21:22,"402 Madison St, Los Angeles, CA 90001" +269533,AA Batteries (4-pack),1,3.84,10/18/19 13:05,"456 Center St, San Francisco, CA 94016" +269534,Bose SoundSport Headphones,1,99.99,10/02/19 19:20,"902 Forest St, Dallas, TX 75001" +269535,Wired Headphones,2,11.99,10/19/19 13:03,"987 Dogwood St, Seattle, WA 98101" +269536,USB-C Charging Cable,1,11.95,10/16/19 16:30,"245 7th St, Los Angeles, CA 90001" +269537,Apple Airpods Headphones,1,150,10/18/19 14:30,"817 8th St, San Francisco, CA 94016" +269538,Wired Headphones,1,11.99,10/22/19 10:57,"956 Wilson St, Atlanta, GA 30301" +269539,Lightning Charging Cable,1,14.95,10/16/19 12:41,"319 Main St, Seattle, WA 98101" +269540,Lightning Charging Cable,1,14.95,10/08/19 20:14,"220 Elm St, San Francisco, CA 94016" +269541,Macbook Pro Laptop,1,1700,10/30/19 21:45,"349 Lincoln St, Austin, TX 73301" +269542,27in FHD Monitor,1,149.99,10/29/19 10:55,"702 11th St, San Francisco, CA 94016" +269543,USB-C Charging Cable,1,11.95,10/29/19 21:50,"172 Johnson St, Atlanta, GA 30301" +269544,Lightning Charging Cable,1,14.95,10/23/19 16:44,"153 12th St, Dallas, TX 75001" +269545,Wired Headphones,1,11.99,10/30/19 21:22,"71 Lake St, Dallas, TX 75001" +269546,Apple Airpods Headphones,1,150,10/12/19 10:37,"5 Lake St, New York City, NY 10001" +269547,AAA Batteries (4-pack),1,2.99,10/29/19 14:09,"950 7th St, Los Angeles, CA 90001" +269548,27in FHD Monitor,1,149.99,10/14/19 06:46,"148 8th St, New York City, NY 10001" +269549,Lightning Charging Cable,1,14.95,10/28/19 10:53,"406 Cedar St, San Francisco, CA 94016" +269550,AA Batteries (4-pack),1,3.84,10/25/19 23:07,"545 Cherry St, Austin, TX 73301" +269551,AA Batteries (4-pack),2,3.84,10/06/19 14:40,"347 9th St, Los Angeles, CA 90001" +269552,34in Ultrawide Monitor,1,379.99,10/14/19 22:35,"489 Jackson St, San Francisco, CA 94016" +269553,USB-C Charging Cable,1,11.95,10/18/19 22:09,"264 Forest St, New York City, NY 10001" +269554,USB-C Charging Cable,1,11.95,10/15/19 20:50,"21 10th St, Dallas, TX 75001" +269555,iPhone,1,700,10/30/19 09:27,"687 Meadow St, Los Angeles, CA 90001" +269556,Wired Headphones,2,11.99,10/01/19 07:48,"458 13th St, San Francisco, CA 94016" +269557,USB-C Charging Cable,1,11.95,10/31/19 09:36,"650 Sunset St, Los Angeles, CA 90001" +269558,Apple Airpods Headphones,1,150,10/25/19 20:04,"780 Lakeview St, Los Angeles, CA 90001" +269559,AAA Batteries (4-pack),2,2.99,10/15/19 12:39,"937 4th St, San Francisco, CA 94016" +269560,Bose SoundSport Headphones,1,99.99,10/04/19 12:09,"101 Adams St, Portland, OR 97035" +269561,Apple Airpods Headphones,1,150,10/10/19 17:49,"669 Main St, New York City, NY 10001" +269562,Bose SoundSport Headphones,1,99.99,10/05/19 00:13,"581 Hickory St, Portland, OR 97035" +269563,AA Batteries (4-pack),1,3.84,10/02/19 11:40,"972 6th St, San Francisco, CA 94016" +269564,Macbook Pro Laptop,1,1700,10/18/19 10:49,"89 Adams St, San Francisco, CA 94016" +269565,LG Washing Machine,1,600.0,10/18/19 13:09,"272 Adams St, New York City, NY 10001" +269566,Lightning Charging Cable,1,14.95,10/12/19 12:11,"368 Willow St, Seattle, WA 98101" +269567,Wired Headphones,2,11.99,10/13/19 04:35,"176 Hill St, Atlanta, GA 30301" +269568,iPhone,1,700,10/19/19 13:05,"340 9th St, Austin, TX 73301" +269569,Flatscreen TV,1,300,10/18/19 11:28,"434 Johnson St, Los Angeles, CA 90001" +269570,Google Phone,1,600,10/08/19 22:15,"250 Cedar St, San Francisco, CA 94016" +269571,Macbook Pro Laptop,1,1700,10/20/19 16:26,"857 Walnut St, Atlanta, GA 30301" +269572,27in 4K Gaming Monitor,1,389.99,10/26/19 11:38,"924 West St, New York City, NY 10001" +269573,USB-C Charging Cable,1,11.95,10/21/19 20:24,"94 Hill St, Seattle, WA 98101" +269574,Lightning Charging Cable,1,14.95,10/01/19 13:25,"956 10th St, San Francisco, CA 94016" +269575,Google Phone,1,600,10/05/19 23:26,"518 Dogwood St, Atlanta, GA 30301" +269575,USB-C Charging Cable,1,11.95,10/05/19 23:26,"518 Dogwood St, Atlanta, GA 30301" +269576,Lightning Charging Cable,1,14.95,10/07/19 21:13,"654 Elm St, Austin, TX 73301" +269577,27in 4K Gaming Monitor,1,389.99,10/30/19 17:13,"232 Jackson St, Atlanta, GA 30301" +269578,27in 4K Gaming Monitor,1,389.99,10/12/19 21:03,"135 7th St, Los Angeles, CA 90001" +269579,iPhone,1,700,10/30/19 12:15,"297 11th St, Seattle, WA 98101" +269580,Bose SoundSport Headphones,1,99.99,10/10/19 17:49,"939 Hickory St, San Francisco, CA 94016" +269581,AAA Batteries (4-pack),1,2.99,10/11/19 00:20,"223 Wilson St, New York City, NY 10001" +269582,AAA Batteries (4-pack),1,2.99,10/24/19 17:06,"896 Church St, San Francisco, CA 94016" +269583,Bose SoundSport Headphones,1,99.99,10/07/19 18:09,"281 Walnut St, Seattle, WA 98101" +269584,Lightning Charging Cable,1,14.95,10/07/19 18:05,"670 12th St, Portland, OR 97035" +269585,27in 4K Gaming Monitor,1,389.99,10/03/19 11:17,"650 Ridge St, Los Angeles, CA 90001" +269586,iPhone,1,700,10/02/19 20:35,"317 Park St, San Francisco, CA 94016" +269587,USB-C Charging Cable,1,11.95,10/09/19 21:49,"500 Chestnut St, Dallas, TX 75001" +269588,AA Batteries (4-pack),2,3.84,10/26/19 07:12,"27 Wilson St, Los Angeles, CA 90001" +269589,AAA Batteries (4-pack),1,2.99,10/06/19 09:28,"388 5th St, Los Angeles, CA 90001" +269590,Apple Airpods Headphones,1,150,10/14/19 19:39,"256 4th St, New York City, NY 10001" +269591,Google Phone,1,600,10/29/19 10:05,"329 Madison St, Dallas, TX 75001" +269592,Google Phone,1,600,10/22/19 17:28,"95 Meadow St, Atlanta, GA 30301" +269592,USB-C Charging Cable,1,11.95,10/22/19 17:28,"95 Meadow St, Atlanta, GA 30301" +269593,AA Batteries (4-pack),1,3.84,10/07/19 17:59,"560 Ridge St, Los Angeles, CA 90001" +269594,34in Ultrawide Monitor,1,379.99,10/30/19 23:45,"520 Washington St, San Francisco, CA 94016" +269595,Flatscreen TV,1,300,10/15/19 10:52,"798 Pine St, Atlanta, GA 30301" +269596,AAA Batteries (4-pack),1,2.99,10/31/19 22:32,"218 Lakeview St, New York City, NY 10001" +269597,ThinkPad Laptop,1,999.99,10/22/19 17:43,"932 Jefferson St, Portland, ME 04101" +269598,Bose SoundSport Headphones,1,99.99,10/17/19 17:13,"170 Wilson St, Austin, TX 73301" +269598,ThinkPad Laptop,1,999.99,10/17/19 17:13,"170 Wilson St, Austin, TX 73301" +269599,Lightning Charging Cable,1,14.95,10/03/19 16:42,"492 10th St, Seattle, WA 98101" +269600,27in 4K Gaming Monitor,1,389.99,11/01/19 00:26,"121 5th St, Seattle, WA 98101" +269601,Apple Airpods Headphones,1,150,10/02/19 21:38,"796 Cherry St, Seattle, WA 98101" +269602,USB-C Charging Cable,1,11.95,10/20/19 23:41,"671 11th St, Austin, TX 73301" +269603,27in FHD Monitor,1,149.99,10/18/19 22:26,"83 14th St, San Francisco, CA 94016" +269604,Google Phone,1,600,10/13/19 17:39,"902 12th St, San Francisco, CA 94016" +269605,Apple Airpods Headphones,1,150,10/26/19 19:12,"491 Cedar St, Portland, OR 97035" +269606,Google Phone,1,600,10/17/19 16:00,"855 Dogwood St, San Francisco, CA 94016" +269607,iPhone,1,700,10/08/19 19:06,"769 Lake St, Los Angeles, CA 90001" +269608,AAA Batteries (4-pack),2,2.99,10/29/19 12:35,"754 Cherry St, San Francisco, CA 94016" +269609,USB-C Charging Cable,2,11.95,10/26/19 14:42,"959 Adams St, New York City, NY 10001" +269610,Wired Headphones,1,11.99,10/10/19 23:37,"469 7th St, Boston, MA 02215" +269611,iPhone,1,700,10/19/19 09:41,"520 12th St, San Francisco, CA 94016" +269612,USB-C Charging Cable,1,11.95,10/09/19 14:50,"891 2nd St, Los Angeles, CA 90001" +269613,Lightning Charging Cable,2,14.95,10/18/19 13:03,"210 Cherry St, New York City, NY 10001" +269614,Vareebadd Phone,1,400,10/10/19 12:42,"554 Jackson St, Boston, MA 02215" +269615,27in FHD Monitor,1,149.99,10/28/19 16:00,"781 Sunset St, Austin, TX 73301" +269616,27in FHD Monitor,1,149.99,10/24/19 01:12,"202 Jefferson St, New York City, NY 10001" +269617,iPhone,1,700,10/29/19 12:11,"565 Hickory St, Portland, ME 04101" +269618,Bose SoundSport Headphones,1,99.99,10/28/19 13:37,"446 11th St, Boston, MA 02215" +269619,Lightning Charging Cable,1,14.95,10/22/19 21:07,"895 North St, Boston, MA 02215" +269620,Lightning Charging Cable,1,14.95,10/12/19 18:54,"526 Park St, Los Angeles, CA 90001" +269621,Bose SoundSport Headphones,1,99.99,10/27/19 17:15,"179 Willow St, Seattle, WA 98101" +269622,Lightning Charging Cable,1,14.95,10/04/19 11:57,"656 Dogwood St, Los Angeles, CA 90001" +269623,AA Batteries (4-pack),2,3.84,10/09/19 10:16,"443 Washington St, San Francisco, CA 94016" +269624,USB-C Charging Cable,1,11.95,10/15/19 08:57,"196 Madison St, San Francisco, CA 94016" +269625,Vareebadd Phone,1,400,10/06/19 13:08,"884 Spruce St, San Francisco, CA 94016" +269625,USB-C Charging Cable,1,11.95,10/06/19 13:08,"884 Spruce St, San Francisco, CA 94016" +269626,iPhone,1,700,10/27/19 14:14,"778 Madison St, San Francisco, CA 94016" +269627,Lightning Charging Cable,1,14.95,10/19/19 19:30,"990 Maple St, Los Angeles, CA 90001" +269628,Wired Headphones,1,11.99,10/27/19 16:23,"408 Jackson St, Boston, MA 02215" +269629,AAA Batteries (4-pack),1,2.99,10/27/19 14:22,"29 1st St, Seattle, WA 98101" +269630,USB-C Charging Cable,1,11.95,10/29/19 06:41,"713 10th St, Boston, MA 02215" +269631,AA Batteries (4-pack),1,3.84,10/21/19 19:05,"506 Spruce St, Portland, OR 97035" +269632,Bose SoundSport Headphones,1,99.99,10/07/19 02:14,"65 1st St, Dallas, TX 75001" +269633,USB-C Charging Cable,1,11.95,10/26/19 12:04,"991 Maple St, San Francisco, CA 94016" +269634,iPhone,1,700,10/31/19 11:53,"268 10th St, New York City, NY 10001" +269634,Lightning Charging Cable,1,14.95,10/31/19 11:53,"268 10th St, New York City, NY 10001" +269635,Bose SoundSport Headphones,1,99.99,10/30/19 12:23,"797 Willow St, Dallas, TX 75001" +269636,AA Batteries (4-pack),1,3.84,10/31/19 20:27,"672 Park St, San Francisco, CA 94016" +269637,Wired Headphones,1,11.99,10/21/19 19:21,"425 Washington St, Portland, OR 97035" +269638,27in 4K Gaming Monitor,1,389.99,10/04/19 18:20,"374 Spruce St, Los Angeles, CA 90001" +269639,Flatscreen TV,1,300,10/26/19 20:46,"378 Johnson St, Los Angeles, CA 90001" +269640,Apple Airpods Headphones,1,150,10/03/19 09:11,"76 Lakeview St, San Francisco, CA 94016" +269641,USB-C Charging Cable,1,11.95,10/21/19 11:53,"235 13th St, Los Angeles, CA 90001" +269642,AA Batteries (4-pack),1,3.84,10/21/19 09:25,"621 Johnson St, San Francisco, CA 94016" +269643,27in FHD Monitor,1,149.99,10/14/19 20:15,"674 River St, Los Angeles, CA 90001" +269644,AAA Batteries (4-pack),1,2.99,10/24/19 13:43,"706 11th St, Atlanta, GA 30301" +269645,Bose SoundSport Headphones,1,99.99,10/30/19 20:21,"39 Lincoln St, Austin, TX 73301" +269646,20in Monitor,1,109.99,10/17/19 09:35,"531 Lake St, Los Angeles, CA 90001" +269647,USB-C Charging Cable,1,11.95,10/29/19 08:53,"526 West St, Boston, MA 02215" +269648,AAA Batteries (4-pack),1,2.99,10/05/19 15:43,"31 4th St, San Francisco, CA 94016" +269649,Wired Headphones,1,11.99,10/11/19 21:38,"506 Cedar St, Austin, TX 73301" +269650,34in Ultrawide Monitor,1,379.99,10/20/19 21:37,"824 6th St, Los Angeles, CA 90001" +269651,Bose SoundSport Headphones,1,99.99,10/05/19 18:38,"419 10th St, Austin, TX 73301" +269652,AAA Batteries (4-pack),1,2.99,10/07/19 09:51,"439 West St, New York City, NY 10001" +269653,AA Batteries (4-pack),1,3.84,10/03/19 10:06,"481 Dogwood St, Dallas, TX 75001" +269654,AAA Batteries (4-pack),1,2.99,10/13/19 12:26,"562 West St, Boston, MA 02215" +269655,USB-C Charging Cable,2,11.95,10/05/19 11:46,"173 Lincoln St, San Francisco, CA 94016" +269656,USB-C Charging Cable,1,11.95,10/22/19 18:04,"29 Forest St, San Francisco, CA 94016" +269657,Bose SoundSport Headphones,1,99.99,10/23/19 19:32,"793 Jackson St, Dallas, TX 75001" +269658,Apple Airpods Headphones,1,150,10/01/19 13:35,"580 Pine St, Atlanta, GA 30301" +269659,Bose SoundSport Headphones,1,99.99,10/23/19 20:50,"748 4th St, Boston, MA 02215" +269660,USB-C Charging Cable,1,11.95,10/18/19 08:55,"122 South St, Los Angeles, CA 90001" +269661,Macbook Pro Laptop,1,1700,10/19/19 12:13,"859 8th St, Los Angeles, CA 90001" +269662,ThinkPad Laptop,1,999.99,10/03/19 21:26,"876 Spruce St, Seattle, WA 98101" +269663,Bose SoundSport Headphones,1,99.99,10/04/19 16:54,"407 Sunset St, New York City, NY 10001" +269664,Lightning Charging Cable,1,14.95,10/06/19 16:19,"323 Adams St, Los Angeles, CA 90001" +269665,iPhone,1,700,10/07/19 16:03,"967 South St, Boston, MA 02215" +269665,Lightning Charging Cable,1,14.95,10/07/19 16:03,"967 South St, Boston, MA 02215" +269666,27in FHD Monitor,1,149.99,10/22/19 18:45,"899 Adams St, New York City, NY 10001" +269667,Apple Airpods Headphones,1,150,10/29/19 19:49,"694 Church St, Los Angeles, CA 90001" +269668,ThinkPad Laptop,1,999.99,10/14/19 10:01,"126 12th St, New York City, NY 10001" +269669,AA Batteries (4-pack),1,3.84,10/31/19 19:43,"231 Wilson St, Dallas, TX 75001" +269670,Macbook Pro Laptop,1,1700,10/11/19 19:17,"700 Forest St, San Francisco, CA 94016" +269671,AAA Batteries (4-pack),1,2.99,10/26/19 15:02,"110 Forest St, San Francisco, CA 94016" +269672,Lightning Charging Cable,1,14.95,10/14/19 12:43,"934 Adams St, New York City, NY 10001" +269673,AAA Batteries (4-pack),1,2.99,10/07/19 01:05,"269 Lake St, New York City, NY 10001" +269674,AA Batteries (4-pack),2,3.84,10/27/19 14:51,"179 10th St, San Francisco, CA 94016" +269675,AAA Batteries (4-pack),1,2.99,10/31/19 21:22,"835 8th St, Dallas, TX 75001" +269676,Wired Headphones,1,11.99,10/24/19 17:33,"629 4th St, Dallas, TX 75001" +269677,AA Batteries (4-pack),1,3.84,10/16/19 10:28,"475 Highland St, Los Angeles, CA 90001" +269678,AAA Batteries (4-pack),1,2.99,10/22/19 15:33,"748 Jackson St, San Francisco, CA 94016" +269679,27in FHD Monitor,1,149.99,10/10/19 15:12,"791 Main St, San Francisco, CA 94016" +269680,Google Phone,1,600,10/25/19 14:59,"557 West St, Dallas, TX 75001" +269681,AAA Batteries (4-pack),1,2.99,10/27/19 13:19,"484 9th St, Seattle, WA 98101" +269682,Lightning Charging Cable,1,14.95,10/23/19 19:56,"442 Adams St, Atlanta, GA 30301" +269683,Bose SoundSport Headphones,1,99.99,10/22/19 22:04,"75 Meadow St, Dallas, TX 75001" +269684,34in Ultrawide Monitor,1,379.99,10/25/19 18:19,"76 14th St, San Francisco, CA 94016" +269685,Flatscreen TV,1,300,10/16/19 11:29,"826 2nd St, Dallas, TX 75001" +269686,Apple Airpods Headphones,1,150,10/12/19 18:47,"2 12th St, Boston, MA 02215" +269687,Google Phone,1,600,10/07/19 07:25,"547 Lake St, Atlanta, GA 30301" +269687,Wired Headphones,1,11.99,10/07/19 07:25,"547 Lake St, Atlanta, GA 30301" +269688,Google Phone,1,600,10/31/19 11:46,"782 Johnson St, Atlanta, GA 30301" +269688,Bose SoundSport Headphones,1,99.99,10/31/19 11:46,"782 Johnson St, Atlanta, GA 30301" +269689,27in FHD Monitor,1,149.99,10/07/19 12:04,"179 Washington St, San Francisco, CA 94016" +269690,AA Batteries (4-pack),2,3.84,10/11/19 21:50,"504 North St, Seattle, WA 98101" +269691,Lightning Charging Cable,1,14.95,10/26/19 14:05,"913 12th St, Atlanta, GA 30301" +269692,27in FHD Monitor,1,149.99,10/03/19 17:49,"30 14th St, San Francisco, CA 94016" +269693,AAA Batteries (4-pack),1,2.99,10/31/19 15:02,"918 Park St, Los Angeles, CA 90001" +269694,Macbook Pro Laptop,1,1700,10/15/19 09:55,"796 Meadow St, Los Angeles, CA 90001" +,,,,, +269695,Wired Headphones,1,11.99,10/27/19 23:49,"397 7th St, Boston, MA 02215" +269696,Lightning Charging Cable,2,14.95,10/08/19 22:44,"277 Adams St, Dallas, TX 75001" +269697,Apple Airpods Headphones,1,150,10/15/19 13:43,"997 Washington St, Los Angeles, CA 90001" +269698,iPhone,1,700,10/14/19 15:02,"233 Lakeview St, New York City, NY 10001" +269698,Lightning Charging Cable,1,14.95,10/14/19 15:02,"233 Lakeview St, New York City, NY 10001" +269698,Apple Airpods Headphones,1,150,10/14/19 15:02,"233 Lakeview St, New York City, NY 10001" +269699,Macbook Pro Laptop,1,1700,10/13/19 07:57,"651 Sunset St, Los Angeles, CA 90001" +269700,27in 4K Gaming Monitor,1,389.99,10/23/19 17:47,"448 Chestnut St, New York City, NY 10001" +269700,Lightning Charging Cable,1,14.95,10/23/19 17:47,"448 Chestnut St, New York City, NY 10001" +269701,AAA Batteries (4-pack),1,2.99,10/14/19 17:02,"757 Forest St, Los Angeles, CA 90001" +269702,27in FHD Monitor,1,149.99,10/22/19 19:58,"499 Spruce St, Portland, OR 97035" +269703,AAA Batteries (4-pack),2,2.99,10/18/19 15:42,"696 12th St, San Francisco, CA 94016" +269704,Flatscreen TV,1,300,10/30/19 10:45,"387 West St, Austin, TX 73301" +269705,Wired Headphones,1,11.99,10/18/19 11:30,"109 Walnut St, San Francisco, CA 94016" +269706,Flatscreen TV,1,300,10/30/19 16:19,"999 Maple St, Austin, TX 73301" +269707,Apple Airpods Headphones,1,150,10/28/19 14:28,"776 River St, Austin, TX 73301" +269708,AAA Batteries (4-pack),1,2.99,10/08/19 11:52,"637 10th St, San Francisco, CA 94016" +269709,USB-C Charging Cable,1,11.95,10/12/19 18:41,"783 Hill St, San Francisco, CA 94016" +269710,Google Phone,1,600,10/31/19 23:06,"660 Elm St, Boston, MA 02215" +269710,USB-C Charging Cable,1,11.95,10/31/19 23:06,"660 Elm St, Boston, MA 02215" +269711,Google Phone,1,600,10/17/19 14:42,"992 14th St, Seattle, WA 98101" +269712,Wired Headphones,1,11.99,10/20/19 20:40,"456 5th St, Seattle, WA 98101" +269713,34in Ultrawide Monitor,1,379.99,10/18/19 15:21,"338 Hill St, New York City, NY 10001" +269714,Wired Headphones,1,11.99,10/12/19 19:24,"601 2nd St, New York City, NY 10001" +269715,Flatscreen TV,1,300,10/20/19 10:05,"942 West St, New York City, NY 10001" +269716,USB-C Charging Cable,1,11.95,10/10/19 20:23,"413 10th St, Los Angeles, CA 90001" +269717,Apple Airpods Headphones,1,150,10/01/19 10:01,"740 9th St, Dallas, TX 75001" +269718,AAA Batteries (4-pack),1,2.99,10/17/19 20:45,"683 Spruce St, Portland, OR 97035" +269719,27in FHD Monitor,1,149.99,10/27/19 00:23,"820 8th St, Los Angeles, CA 90001" +269720,Wired Headphones,1,11.99,10/05/19 21:42,"266 11th St, Portland, OR 97035" +269721,Apple Airpods Headphones,1,150,10/07/19 21:19,"501 6th St, Seattle, WA 98101" +269722,Bose SoundSport Headphones,1,99.99,10/13/19 19:56,"88 Park St, San Francisco, CA 94016" +269723,AA Batteries (4-pack),2,3.84,10/13/19 10:19,"445 Sunset St, Boston, MA 02215" +269724,AA Batteries (4-pack),1,3.84,10/22/19 17:07,"55 Elm St, New York City, NY 10001" +269725,Apple Airpods Headphones,1,150,10/04/19 19:23,"817 Forest St, Los Angeles, CA 90001" +269726,AA Batteries (4-pack),1,3.84,10/30/19 12:05,"87 Pine St, San Francisco, CA 94016" +269727,AAA Batteries (4-pack),3,2.99,10/16/19 17:40,"710 Hill St, Seattle, WA 98101" +269728,iPhone,1,700,10/16/19 19:59,"112 9th St, New York City, NY 10001" +269728,Apple Airpods Headphones,1,150,10/16/19 19:59,"112 9th St, New York City, NY 10001" +269729,Apple Airpods Headphones,1,150,10/13/19 16:26,"169 Wilson St, Boston, MA 02215" +269730,Bose SoundSport Headphones,1,99.99,10/06/19 20:03,"937 West St, Boston, MA 02215" +269731,USB-C Charging Cable,1,11.95,10/22/19 10:55,"767 4th St, San Francisco, CA 94016" +269732,Lightning Charging Cable,1,14.95,10/16/19 18:34,"425 Chestnut St, New York City, NY 10001" +269733,27in FHD Monitor,1,149.99,10/24/19 13:49,"80 Walnut St, San Francisco, CA 94016" +269734,Apple Airpods Headphones,1,150,10/05/19 16:32,"846 9th St, Austin, TX 73301" +269735,AA Batteries (4-pack),1,3.84,10/11/19 19:30,"709 12th St, San Francisco, CA 94016" +269736,Macbook Pro Laptop,1,1700,10/16/19 16:26,"821 Madison St, Seattle, WA 98101" +269737,34in Ultrawide Monitor,1,379.99,10/16/19 18:03,"238 14th St, Los Angeles, CA 90001" +269738,USB-C Charging Cable,1,11.95,10/18/19 11:22,"84 Lake St, Boston, MA 02215" +269739,LG Washing Machine,1,600.0,10/26/19 14:12,"663 Lakeview St, San Francisco, CA 94016" +269740,Bose SoundSport Headphones,1,99.99,10/03/19 16:38,"387 1st St, Boston, MA 02215" +269741,USB-C Charging Cable,1,11.95,10/21/19 22:11,"257 5th St, San Francisco, CA 94016" +269742,Lightning Charging Cable,1,14.95,10/27/19 13:58,"836 12th St, New York City, NY 10001" +269743,Lightning Charging Cable,1,14.95,10/13/19 23:28,"392 Elm St, Boston, MA 02215" +269744,Lightning Charging Cable,1,14.95,10/29/19 15:48,"59 North St, Los Angeles, CA 90001" +269745,Apple Airpods Headphones,1,150,10/17/19 12:07,"703 11th St, Austin, TX 73301" +269746,AAA Batteries (4-pack),2,2.99,10/06/19 13:06,"706 Lakeview St, Los Angeles, CA 90001" +269747,AAA Batteries (4-pack),1,2.99,10/28/19 22:07,"820 1st St, Dallas, TX 75001" +269748,27in FHD Monitor,1,149.99,10/15/19 02:42,"314 Wilson St, Boston, MA 02215" +269749,Wired Headphones,1,11.99,10/31/19 14:41,"954 Lake St, New York City, NY 10001" +269749,34in Ultrawide Monitor,1,379.99,10/31/19 14:41,"954 Lake St, New York City, NY 10001" +269750,Lightning Charging Cable,1,14.95,10/28/19 18:58,"894 Hill St, Los Angeles, CA 90001" +269751,AAA Batteries (4-pack),2,2.99,10/19/19 18:56,"755 6th St, Seattle, WA 98101" +269752,27in 4K Gaming Monitor,1,389.99,10/07/19 09:22,"476 Cedar St, San Francisco, CA 94016" +269753,Flatscreen TV,1,300,10/21/19 20:26,"541 Jackson St, Austin, TX 73301" +269754,27in 4K Gaming Monitor,1,389.99,10/28/19 22:31,"263 Jackson St, New York City, NY 10001" +269755,USB-C Charging Cable,1,11.95,10/25/19 22:11,"402 Hickory St, Austin, TX 73301" +269756,USB-C Charging Cable,1,11.95,10/22/19 10:17,"590 Washington St, San Francisco, CA 94016" +269757,Bose SoundSport Headphones,1,99.99,10/21/19 13:01,"650 Elm St, New York City, NY 10001" +269758,iPhone,1,700,10/14/19 11:22,"273 River St, Austin, TX 73301" +269759,Vareebadd Phone,1,400,10/19/19 08:41,"11 Madison St, San Francisco, CA 94016" +269760,AAA Batteries (4-pack),1,2.99,10/07/19 19:44,"831 South St, San Francisco, CA 94016" +269761,Flatscreen TV,1,300,10/27/19 14:09,"481 Highland St, Los Angeles, CA 90001" +269762,20in Monitor,1,109.99,10/24/19 18:15,"231 Elm St, San Francisco, CA 94016" +269763,AAA Batteries (4-pack),2,2.99,10/14/19 10:53,"934 5th St, Los Angeles, CA 90001" +269764,Lightning Charging Cable,1,14.95,10/25/19 05:52,"703 North St, Portland, OR 97035" +269765,LG Dryer,1,600.0,10/29/19 21:24,"813 Maple St, Dallas, TX 75001" +269766,Lightning Charging Cable,1,14.95,10/01/19 23:50,"279 Lake St, Dallas, TX 75001" +269767,Apple Airpods Headphones,1,150,10/25/19 18:55,"763 Ridge St, San Francisco, CA 94016" +269768,AA Batteries (4-pack),1,3.84,10/21/19 00:52,"365 Hickory St, Dallas, TX 75001" +269769,USB-C Charging Cable,1,11.95,10/10/19 13:25,"945 Hill St, San Francisco, CA 94016" +269770,AAA Batteries (4-pack),1,2.99,10/20/19 18:40,"173 Spruce St, New York City, NY 10001" +269771,27in FHD Monitor,1,149.99,10/06/19 01:19,"526 12th St, San Francisco, CA 94016" +269772,Lightning Charging Cable,1,14.95,10/09/19 08:58,"575 5th St, New York City, NY 10001" +269773,USB-C Charging Cable,2,11.95,10/02/19 19:06,"184 Cedar St, Austin, TX 73301" +269774,AAA Batteries (4-pack),1,2.99,10/11/19 13:10,"581 Lincoln St, San Francisco, CA 94016" +269775,AA Batteries (4-pack),4,3.84,10/25/19 19:20,"177 Johnson St, Atlanta, GA 30301" +269776,Bose SoundSport Headphones,1,99.99,10/25/19 14:54,"272 Spruce St, San Francisco, CA 94016" +269777,ThinkPad Laptop,1,999.99,10/24/19 19:44,"824 Meadow St, Boston, MA 02215" +269778,Apple Airpods Headphones,1,150,10/12/19 18:53,"680 Lake St, Atlanta, GA 30301" +269779,Macbook Pro Laptop,1,1700,10/10/19 14:57,"281 West St, Atlanta, GA 30301" +269780,Google Phone,1,600,10/16/19 18:15,"288 6th St, New York City, NY 10001" +269781,AAA Batteries (4-pack),2,2.99,10/27/19 13:20,"374 Dogwood St, Boston, MA 02215" +269782,27in 4K Gaming Monitor,1,389.99,10/04/19 14:27,"526 Meadow St, San Francisco, CA 94016" +269783,USB-C Charging Cable,1,11.95,10/21/19 13:01,"190 West St, New York City, NY 10001" +269784,AA Batteries (4-pack),1,3.84,10/06/19 07:02,"690 13th St, Austin, TX 73301" +269785,USB-C Charging Cable,1,11.95,10/30/19 12:32,"356 Cherry St, Dallas, TX 75001" +269786,Apple Airpods Headphones,1,150,10/20/19 06:28,"25 Wilson St, Seattle, WA 98101" +269787,Flatscreen TV,1,300,10/27/19 20:39,"581 River St, Atlanta, GA 30301" +269788,Bose SoundSport Headphones,1,99.99,10/29/19 06:38,"203 Park St, San Francisco, CA 94016" +269789,Google Phone,1,600,10/09/19 10:48,"419 Lake St, Atlanta, GA 30301" +269790,iPhone,1,700,10/28/19 17:19,"774 Cedar St, Portland, OR 97035" +269791,Wired Headphones,1,11.99,10/09/19 20:37,"541 Dogwood St, San Francisco, CA 94016" +269792,iPhone,1,700,10/03/19 12:04,"326 Highland St, San Francisco, CA 94016" +269793,USB-C Charging Cable,1,11.95,10/14/19 21:18,"861 Adams St, Seattle, WA 98101" +269794,Macbook Pro Laptop,1,1700,10/04/19 12:36,"325 Chestnut St, Boston, MA 02215" +269795,USB-C Charging Cable,1,11.95,10/14/19 19:40,"820 Dogwood St, Atlanta, GA 30301" +269796,Apple Airpods Headphones,1,150,10/01/19 10:19,"572 South St, Los Angeles, CA 90001" +269797,20in Monitor,1,109.99,10/29/19 13:44,"199 13th St, Atlanta, GA 30301" +269798,Wired Headphones,1,11.99,10/20/19 13:38,"725 Willow St, Boston, MA 02215" +269799,Flatscreen TV,1,300,10/01/19 13:09,"83 Meadow St, San Francisco, CA 94016" +269800,USB-C Charging Cable,1,11.95,10/03/19 16:19,"961 Ridge St, Los Angeles, CA 90001" +269801,AA Batteries (4-pack),2,3.84,10/22/19 12:19,"334 13th St, Atlanta, GA 30301" +269802,Macbook Pro Laptop,1,1700,10/09/19 12:20,"816 Lincoln St, San Francisco, CA 94016" +269803,20in Monitor,1,109.99,10/12/19 07:46,"279 Madison St, Dallas, TX 75001" +269804,Wired Headphones,1,11.99,10/22/19 13:37,"466 8th St, Austin, TX 73301" +269805,AAA Batteries (4-pack),1,2.99,10/02/19 13:04,"52 Adams St, Seattle, WA 98101" +269806,iPhone,1,700,10/30/19 15:53,"3 North St, Dallas, TX 75001" +269807,27in 4K Gaming Monitor,1,389.99,10/22/19 15:29,"165 Maple St, New York City, NY 10001" +269808,Apple Airpods Headphones,1,150,10/17/19 16:39,"818 Washington St, San Francisco, CA 94016" +269809,Flatscreen TV,1,300,10/26/19 16:28,"791 Sunset St, New York City, NY 10001" +269810,Macbook Pro Laptop,1,1700,10/16/19 20:20,"967 10th St, San Francisco, CA 94016" +269811,AAA Batteries (4-pack),1,2.99,10/27/19 11:07,"664 Center St, San Francisco, CA 94016" +269812,27in FHD Monitor,1,149.99,10/20/19 21:44,"353 9th St, Seattle, WA 98101" +269813,AA Batteries (4-pack),1,3.84,10/12/19 17:03,"455 10th St, Boston, MA 02215" +269814,Macbook Pro Laptop,1,1700,10/08/19 23:17,"781 12th St, Los Angeles, CA 90001" +269815,AA Batteries (4-pack),1,3.84,10/08/19 07:40,"305 6th St, Boston, MA 02215" +269816,Macbook Pro Laptop,1,1700,10/15/19 21:42,"171 Hill St, Atlanta, GA 30301" +269817,Macbook Pro Laptop,1,1700,10/25/19 13:52,"666 Ridge St, Boston, MA 02215" +269818,Lightning Charging Cable,1,14.95,10/03/19 19:18,"565 7th St, Los Angeles, CA 90001" +269819,Lightning Charging Cable,1,14.95,10/25/19 09:21,"25 Highland St, Seattle, WA 98101" +269820,USB-C Charging Cable,2,11.95,10/16/19 12:59,"496 7th St, San Francisco, CA 94016" +269821,AAA Batteries (4-pack),1,2.99,10/28/19 22:10,"145 Cherry St, Dallas, TX 75001" +269822,Bose SoundSport Headphones,1,99.99,10/27/19 07:41,"688 Chestnut St, Boston, MA 02215" +269823,AA Batteries (4-pack),2,3.84,10/11/19 14:28,"999 Main St, San Francisco, CA 94016" +269824,Wired Headphones,1,11.99,10/20/19 16:00,"993 5th St, Los Angeles, CA 90001" +269825,Flatscreen TV,1,300,10/13/19 17:05,"769 12th St, San Francisco, CA 94016" +269826,34in Ultrawide Monitor,1,379.99,10/15/19 10:22,"141 Wilson St, Austin, TX 73301" +269827,Vareebadd Phone,1,400,10/13/19 17:31,"811 4th St, Boston, MA 02215" +269828,Wired Headphones,1,11.99,10/09/19 19:45,"984 5th St, Portland, ME 04101" +269829,27in FHD Monitor,1,149.99,10/29/19 14:02,"263 5th St, Los Angeles, CA 90001" +269830,20in Monitor,1,109.99,10/24/19 22:55,"637 Forest St, New York City, NY 10001" +269831,Macbook Pro Laptop,1,1700,10/17/19 02:22,"215 Madison St, San Francisco, CA 94016" +269832,USB-C Charging Cable,1,11.95,10/10/19 16:39,"686 River St, Seattle, WA 98101" +269833,Wired Headphones,1,11.99,10/26/19 11:53,"973 8th St, Portland, ME 04101" +269833,Vareebadd Phone,1,400,10/26/19 11:53,"973 8th St, Portland, ME 04101" +269834,Bose SoundSport Headphones,1,99.99,10/25/19 14:22,"557 Pine St, New York City, NY 10001" +269835,USB-C Charging Cable,2,11.95,10/06/19 20:43,"377 Dogwood St, Los Angeles, CA 90001" +269836,Lightning Charging Cable,1,14.95,10/25/19 08:06,"158 Church St, Austin, TX 73301" +269837,27in FHD Monitor,1,149.99,10/24/19 16:18,"550 2nd St, Los Angeles, CA 90001" +269838,Macbook Pro Laptop,1,1700,10/05/19 12:32,"885 10th St, Los Angeles, CA 90001" +269839,Apple Airpods Headphones,1,150,10/07/19 13:08,"234 Elm St, New York City, NY 10001" +269840,AAA Batteries (4-pack),4,2.99,10/26/19 09:56,"41 Walnut St, New York City, NY 10001" +269841,Google Phone,1,600,10/24/19 23:21,"720 Park St, San Francisco, CA 94016" +269842,27in 4K Gaming Monitor,1,389.99,10/28/19 13:39,"607 Walnut St, New York City, NY 10001" +269843,Apple Airpods Headphones,1,150,10/01/19 23:09,"26 North St, Atlanta, GA 30301" +269844,AAA Batteries (4-pack),3,2.99,10/25/19 18:56,"608 Madison St, Dallas, TX 75001" +269845,Lightning Charging Cable,1,14.95,10/02/19 17:43,"288 10th St, Boston, MA 02215" +269846,Google Phone,1,600,10/30/19 15:53,"194 Ridge St, Atlanta, GA 30301" +269847,USB-C Charging Cable,1,11.95,10/20/19 18:26,"378 Wilson St, San Francisco, CA 94016" +269848,iPhone,1,700,10/02/19 00:26,"980 Jackson St, Boston, MA 02215" +269849,AAA Batteries (4-pack),2,2.99,10/29/19 08:37,"135 Dogwood St, Portland, OR 97035" +269850,Wired Headphones,1,11.99,10/04/19 21:44,"704 Adams St, San Francisco, CA 94016" +269851,27in FHD Monitor,1,149.99,10/09/19 22:06,"249 Sunset St, Los Angeles, CA 90001" +269852,Lightning Charging Cable,1,14.95,10/08/19 17:09,"442 Wilson St, Portland, OR 97035" +269853,USB-C Charging Cable,1,11.95,10/19/19 12:17,"903 Spruce St, Atlanta, GA 30301" +269854,Wired Headphones,1,11.99,10/22/19 12:38,"847 6th St, San Francisco, CA 94016" +269855,34in Ultrawide Monitor,1,379.99,10/21/19 21:14,"127 Willow St, San Francisco, CA 94016" +269856,34in Ultrawide Monitor,1,379.99,10/03/19 11:45,"160 Elm St, New York City, NY 10001" +269857,USB-C Charging Cable,1,11.95,10/06/19 00:38,"813 Adams St, Austin, TX 73301" +269858,Apple Airpods Headphones,1,150,10/08/19 11:29,"627 14th St, Los Angeles, CA 90001" +269859,Wired Headphones,1,11.99,10/29/19 00:16,"489 Johnson St, Boston, MA 02215" +269860,34in Ultrawide Monitor,1,379.99,10/10/19 17:17,"452 Sunset St, Seattle, WA 98101" +269861,AAA Batteries (4-pack),1,2.99,10/10/19 20:15,"366 Lake St, San Francisco, CA 94016" +269862,USB-C Charging Cable,1,11.95,10/19/19 11:17,"879 Lincoln St, Boston, MA 02215" +269863,AAA Batteries (4-pack),1,2.99,10/03/19 18:42,"159 Lake St, San Francisco, CA 94016" +269864,AA Batteries (4-pack),2,3.84,10/18/19 17:55,"396 Lincoln St, Los Angeles, CA 90001" +269865,USB-C Charging Cable,1,11.95,10/10/19 19:54,"187 Lakeview St, San Francisco, CA 94016" +269866,AAA Batteries (4-pack),1,2.99,10/20/19 22:54,"984 1st St, Dallas, TX 75001" +269867,Google Phone,1,600,10/20/19 22:47,"503 Willow St, San Francisco, CA 94016" +269868,AAA Batteries (4-pack),1,2.99,10/26/19 19:15,"881 2nd St, Boston, MA 02215" +269869,iPhone,1,700,10/05/19 22:45,"451 9th St, San Francisco, CA 94016" +269870,AA Batteries (4-pack),1,3.84,10/06/19 19:41,"912 Dogwood St, Portland, OR 97035" +269871,AAA Batteries (4-pack),2,2.99,10/09/19 21:17,"306 Forest St, Los Angeles, CA 90001" +269872,AA Batteries (4-pack),1,3.84,10/25/19 19:36,"863 Maple St, Atlanta, GA 30301" +269873,iPhone,1,700,10/22/19 16:03,"971 1st St, New York City, NY 10001" +269874,Lightning Charging Cable,1,14.95,10/17/19 09:23,"425 Elm St, Boston, MA 02215" +269875,20in Monitor,1,109.99,10/30/19 09:44,"192 Madison St, San Francisco, CA 94016" +269876,Bose SoundSport Headphones,1,99.99,10/09/19 13:11,"980 Park St, Los Angeles, CA 90001" +269877,27in FHD Monitor,1,149.99,10/22/19 15:51,"87 Park St, New York City, NY 10001" +269878,27in FHD Monitor,1,149.99,10/18/19 06:53,"219 10th St, San Francisco, CA 94016" +269879,AA Batteries (4-pack),1,3.84,10/27/19 14:38,"957 Ridge St, Portland, OR 97035" +269880,Flatscreen TV,1,300,10/27/19 12:53,"467 Highland St, Seattle, WA 98101" +269881,Wired Headphones,2,11.99,10/19/19 08:08,"995 Church St, New York City, NY 10001" +269882,iPhone,1,700,10/18/19 08:50,"780 Park St, Dallas, TX 75001" +269883,Apple Airpods Headphones,1,150,10/05/19 16:25,"205 Main St, Dallas, TX 75001" +269884,Apple Airpods Headphones,1,150,10/21/19 18:16,"865 Jefferson St, Boston, MA 02215" +269885,Bose SoundSport Headphones,1,99.99,10/23/19 10:37,"307 Maple St, Atlanta, GA 30301" +269886,Apple Airpods Headphones,1,150,10/29/19 13:16,"110 Park St, Austin, TX 73301" +269887,34in Ultrawide Monitor,1,379.99,10/07/19 11:18,"623 Hickory St, San Francisco, CA 94016" +269888,USB-C Charging Cable,1,11.95,10/16/19 13:12,"360 7th St, Dallas, TX 75001" +269889,34in Ultrawide Monitor,1,379.99,10/20/19 13:10,"532 Cherry St, San Francisco, CA 94016" +269890,Macbook Pro Laptop,1,1700,10/04/19 09:15,"882 Ridge St, Portland, OR 97035" +269891,Google Phone,1,600,10/24/19 12:55,"259 Lake St, San Francisco, CA 94016" +269892,AAA Batteries (4-pack),2,2.99,10/25/19 15:03,"62 9th St, Seattle, WA 98101" +269893,AA Batteries (4-pack),1,3.84,10/24/19 11:22,"215 9th St, San Francisco, CA 94016" +269894,iPhone,1,700,10/16/19 14:34,"828 7th St, San Francisco, CA 94016" +269894,Lightning Charging Cable,1,14.95,10/16/19 14:34,"828 7th St, San Francisco, CA 94016" +269895,USB-C Charging Cable,1,11.95,10/29/19 13:25,"25 Madison St, Boston, MA 02215" +269896,Wired Headphones,1,11.99,10/22/19 17:48,"209 Hickory St, Austin, TX 73301" +269897,AA Batteries (4-pack),2,3.84,10/07/19 12:19,"268 South St, Los Angeles, CA 90001" +269898,Lightning Charging Cable,1,14.95,10/16/19 08:08,"907 11th St, Los Angeles, CA 90001" +269899,Wired Headphones,1,11.99,10/07/19 13:50,"724 Spruce St, San Francisco, CA 94016" +269900,Wired Headphones,1,11.99,10/30/19 21:09,"191 Willow St, Atlanta, GA 30301" +269901,Bose SoundSport Headphones,1,99.99,10/29/19 11:36,"818 Washington St, Boston, MA 02215" +269902,Wired Headphones,3,11.99,10/27/19 07:42,"444 River St, San Francisco, CA 94016" +269903,AAA Batteries (4-pack),1,2.99,10/14/19 20:02,"613 7th St, New York City, NY 10001" +269904,27in FHD Monitor,1,149.99,10/20/19 17:49,"575 Park St, San Francisco, CA 94016" +269905,Wired Headphones,1,11.99,10/12/19 07:42,"407 Lincoln St, Atlanta, GA 30301" +269906,Lightning Charging Cable,1,14.95,10/12/19 19:37,"582 Madison St, Seattle, WA 98101" +269907,27in FHD Monitor,1,149.99,10/21/19 10:38,"605 Maple St, Los Angeles, CA 90001" +269908,Wired Headphones,1,11.99,10/31/19 15:16,"254 Spruce St, New York City, NY 10001" +269909,AA Batteries (4-pack),3,3.84,10/23/19 21:03,"983 South St, San Francisco, CA 94016" +269910,Bose SoundSport Headphones,1,99.99,10/18/19 20:51,"649 Center St, Atlanta, GA 30301" +269911,27in 4K Gaming Monitor,1,389.99,10/12/19 12:40,"86 Ridge St, Austin, TX 73301" +269912,Wired Headphones,1,11.99,10/25/19 15:45,"301 Washington St, Dallas, TX 75001" +269913,27in FHD Monitor,1,149.99,10/04/19 10:05,"226 Madison St, San Francisco, CA 94016" +269914,Macbook Pro Laptop,1,1700,10/24/19 17:44,"278 North St, San Francisco, CA 94016" +269915,Flatscreen TV,1,300,10/25/19 00:03,"512 Wilson St, Los Angeles, CA 90001" +269916,Google Phone,1,600,10/09/19 13:48,"355 8th St, Los Angeles, CA 90001" +269917,Wired Headphones,1,11.99,10/17/19 00:45,"955 10th St, San Francisco, CA 94016" +269918,ThinkPad Laptop,1,999.99,10/31/19 07:25,"999 7th St, Austin, TX 73301" +269919,34in Ultrawide Monitor,1,379.99,10/14/19 14:54,"959 Willow St, Portland, OR 97035" +269920,iPhone,1,700,10/13/19 13:30,"385 11th St, San Francisco, CA 94016" +269920,Lightning Charging Cable,1,14.95,10/13/19 13:30,"385 11th St, San Francisco, CA 94016" +269921,AAA Batteries (4-pack),3,2.99,10/04/19 11:06,"294 Lakeview St, Dallas, TX 75001" +269922,AA Batteries (4-pack),1,3.84,10/21/19 09:18,"177 10th St, San Francisco, CA 94016" +269923,AA Batteries (4-pack),2,3.84,10/20/19 22:01,"909 9th St, Austin, TX 73301" +269924,Wired Headphones,1,11.99,10/09/19 13:19,"413 Dogwood St, Boston, MA 02215" +269925,Apple Airpods Headphones,1,150,10/26/19 10:33,"999 West St, Los Angeles, CA 90001" +269926,Wired Headphones,1,11.99,10/17/19 15:37,"280 11th St, Austin, TX 73301" +269927,Vareebadd Phone,1,400,10/11/19 23:39,"166 Washington St, Boston, MA 02215" +269928,Lightning Charging Cable,1,14.95,10/05/19 13:37,"599 Forest St, San Francisco, CA 94016" +269929,Macbook Pro Laptop,1,1700,10/18/19 20:49,"713 Spruce St, San Francisco, CA 94016" +269930,Bose SoundSport Headphones,1,99.99,10/14/19 11:18,"440 1st St, San Francisco, CA 94016" +269930,Wired Headphones,1,11.99,10/14/19 11:18,"440 1st St, San Francisco, CA 94016" +269931,Bose SoundSport Headphones,1,99.99,10/30/19 12:34,"397 Hickory St, Atlanta, GA 30301" +269932,USB-C Charging Cable,1,11.95,10/05/19 11:19,"942 Lake St, Boston, MA 02215" +269933,34in Ultrawide Monitor,1,379.99,10/26/19 20:44,"408 4th St, New York City, NY 10001" +269934,USB-C Charging Cable,2,11.95,10/05/19 00:48,"393 5th St, Dallas, TX 75001" +269935,Apple Airpods Headphones,1,150,10/24/19 21:11,"950 Jackson St, Atlanta, GA 30301" +269936,ThinkPad Laptop,1,999.99,10/27/19 12:50,"493 Pine St, New York City, NY 10001" +269937,Wired Headphones,1,11.99,10/23/19 18:42,"972 10th St, San Francisco, CA 94016" +269938,AA Batteries (4-pack),1,3.84,10/28/19 09:22,"49 Spruce St, San Francisco, CA 94016" +269939,27in FHD Monitor,1,149.99,10/07/19 12:25,"383 4th St, San Francisco, CA 94016" +269940,USB-C Charging Cable,1,11.95,10/23/19 07:45,"630 Walnut St, San Francisco, CA 94016" +269941,27in 4K Gaming Monitor,1,389.99,10/30/19 14:51,"594 Cedar St, New York City, NY 10001" +269942,AAA Batteries (4-pack),2,2.99,10/15/19 12:39,"193 Willow St, San Francisco, CA 94016" +269943,Bose SoundSport Headphones,1,99.99,10/15/19 13:26,"954 Jackson St, Los Angeles, CA 90001" +269944,Apple Airpods Headphones,1,150,10/06/19 20:34,"845 Main St, San Francisco, CA 94016" +269945,USB-C Charging Cable,1,11.95,10/27/19 18:06,"847 Willow St, Los Angeles, CA 90001" +269946,27in 4K Gaming Monitor,1,389.99,10/03/19 17:03,"21 Pine St, Seattle, WA 98101" +269947,Wired Headphones,1,11.99,10/17/19 19:18,"629 5th St, San Francisco, CA 94016" +269948,34in Ultrawide Monitor,1,379.99,10/04/19 18:04,"556 Walnut St, Boston, MA 02215" +269949,Flatscreen TV,1,300,10/26/19 03:14,"127 Cherry St, Austin, TX 73301" +269950,AAA Batteries (4-pack),1,2.99,10/26/19 20:53,"235 Center St, Dallas, TX 75001" +269951,AAA Batteries (4-pack),2,2.99,10/12/19 11:50,"58 Forest St, San Francisco, CA 94016" +269952,Apple Airpods Headphones,1,150,10/18/19 21:17,"216 Lincoln St, San Francisco, CA 94016" +269953,iPhone,1,700,10/05/19 17:38,"188 West St, Los Angeles, CA 90001" +269954,AA Batteries (4-pack),1,3.84,10/27/19 09:43,"43 River St, Dallas, TX 75001" +269955,Lightning Charging Cable,2,14.95,11/01/19 01:05,"906 6th St, Los Angeles, CA 90001" +269956,AAA Batteries (4-pack),2,2.99,10/01/19 02:59,"538 Wilson St, New York City, NY 10001" +269957,Wired Headphones,1,11.99,10/07/19 12:14,"199 River St, Portland, OR 97035" +269958,Bose SoundSport Headphones,1,99.99,10/22/19 16:39,"1 14th St, Seattle, WA 98101" +269959,LG Washing Machine,1,600.0,10/18/19 00:14,"923 14th St, Portland, OR 97035" +269960,Bose SoundSport Headphones,1,99.99,10/19/19 11:40,"310 Pine St, Atlanta, GA 30301" +269961,Bose SoundSport Headphones,1,99.99,10/20/19 07:33,"79 Highland St, San Francisco, CA 94016" +269962,Macbook Pro Laptop,1,1700,10/11/19 21:09,"684 Spruce St, San Francisco, CA 94016" +269963,Apple Airpods Headphones,1,150,10/16/19 11:11,"875 Walnut St, New York City, NY 10001" +269963,Lightning Charging Cable,1,14.95,10/16/19 11:11,"875 Walnut St, New York City, NY 10001" +269964,Vareebadd Phone,1,400,10/01/19 15:17,"634 Dogwood St, Portland, OR 97035" +269965,AAA Batteries (4-pack),1,2.99,10/13/19 07:02,"196 Hickory St, Dallas, TX 75001" +269966,Lightning Charging Cable,1,14.95,10/04/19 12:47,"686 7th St, Atlanta, GA 30301" +269967,Wired Headphones,1,11.99,10/05/19 21:19,"170 14th St, Los Angeles, CA 90001" +269968,AAA Batteries (4-pack),1,2.99,10/12/19 10:53,"341 West St, Seattle, WA 98101" +269969,Google Phone,1,600,10/14/19 18:18,"174 Sunset St, San Francisco, CA 94016" +269969,USB-C Charging Cable,1,11.95,10/14/19 18:18,"174 Sunset St, San Francisco, CA 94016" +269970,Apple Airpods Headphones,1,150,10/11/19 10:22,"78 Jefferson St, Portland, OR 97035" +269971,Bose SoundSport Headphones,1,99.99,10/18/19 22:22,"110 Church St, San Francisco, CA 94016" +269972,Lightning Charging Cable,1,14.95,10/13/19 12:52,"977 Elm St, Boston, MA 02215" +269973,USB-C Charging Cable,1,11.95,10/29/19 15:49,"193 Elm St, Dallas, TX 75001" +269974,Lightning Charging Cable,1,14.95,10/30/19 23:15,"919 6th St, Austin, TX 73301" +269975,27in 4K Gaming Monitor,1,389.99,10/25/19 14:39,"227 Washington St, Los Angeles, CA 90001" +269976,Google Phone,1,600,10/22/19 08:34,"753 West St, Los Angeles, CA 90001" +269977,Wired Headphones,1,11.99,10/29/19 20:40,"821 Park St, Los Angeles, CA 90001" +269978,USB-C Charging Cable,2,11.95,10/30/19 21:37,"194 Lakeview St, Los Angeles, CA 90001" +269979,Lightning Charging Cable,1,14.95,10/30/19 18:24,"134 Madison St, Seattle, WA 98101" +269980,Vareebadd Phone,1,400,10/03/19 14:38,"252 1st St, Austin, TX 73301" +269980,Wired Headphones,1,11.99,10/03/19 14:38,"252 1st St, Austin, TX 73301" +269981,USB-C Charging Cable,1,11.95,10/10/19 20:28,"765 Main St, New York City, NY 10001" +269982,Apple Airpods Headphones,1,150,10/19/19 16:26,"548 Madison St, New York City, NY 10001" +269983,Apple Airpods Headphones,1,150,10/30/19 22:11,"618 Main St, Portland, OR 97035" +269984,iPhone,1,700,10/04/19 13:59,"837 Forest St, Los Angeles, CA 90001" +269985,Wired Headphones,1,11.99,10/11/19 10:23,"268 Center St, Dallas, TX 75001" +269986,Lightning Charging Cable,1,14.95,10/21/19 10:11,"523 Maple St, Seattle, WA 98101" +269987,27in FHD Monitor,1,149.99,10/06/19 10:05,"58 Wilson St, New York City, NY 10001" +269988,Bose SoundSport Headphones,1,99.99,10/14/19 22:04,"634 Lakeview St, Los Angeles, CA 90001" +269989,Google Phone,1,600,10/12/19 09:27,"793 9th St, Seattle, WA 98101" +269989,USB-C Charging Cable,1,11.95,10/12/19 09:27,"793 9th St, Seattle, WA 98101" +269990,34in Ultrawide Monitor,1,379.99,10/26/19 10:33,"200 Church St, New York City, NY 10001" +269991,Apple Airpods Headphones,1,150,10/18/19 10:09,"869 Center St, New York City, NY 10001" +269992,AAA Batteries (4-pack),1,2.99,10/29/19 18:38,"71 Jackson St, Atlanta, GA 30301" +269993,Apple Airpods Headphones,1,150,10/09/19 08:19,"446 North St, San Francisco, CA 94016" +269994,USB-C Charging Cable,1,11.95,10/27/19 12:00,"419 Ridge St, Dallas, TX 75001" +269995,AA Batteries (4-pack),1,3.84,10/21/19 15:54,"259 7th St, San Francisco, CA 94016" +269996,AAA Batteries (4-pack),1,2.99,10/09/19 21:01,"308 River St, Los Angeles, CA 90001" +269997,USB-C Charging Cable,1,11.95,10/15/19 11:48,"361 10th St, San Francisco, CA 94016" +269998,Apple Airpods Headphones,1,150,10/08/19 12:17,"484 Highland St, San Francisco, CA 94016" +269999,iPhone,1,700,10/11/19 13:59,"607 Lincoln St, Boston, MA 02215" +270000,Bose SoundSport Headphones,1,99.99,10/22/19 23:37,"761 Jackson St, Portland, OR 97035" +270001,Google Phone,1,600,10/03/19 08:52,"623 9th St, San Francisco, CA 94016" +270002,Lightning Charging Cable,1,14.95,10/07/19 11:32,"106 Lakeview St, Boston, MA 02215" +270003,iPhone,1,700,10/11/19 19:01,"202 Jackson St, Dallas, TX 75001" +270004,34in Ultrawide Monitor,1,379.99,10/12/19 15:31,"916 Ridge St, Los Angeles, CA 90001" +270005,Apple Airpods Headphones,1,150,10/15/19 01:25,"698 Lake St, Los Angeles, CA 90001" +270006,Wired Headphones,1,11.99,10/18/19 14:39,"947 6th St, Los Angeles, CA 90001" +270007,Wired Headphones,2,11.99,10/22/19 14:30,"764 8th St, San Francisco, CA 94016" +270008,ThinkPad Laptop,1,999.99,10/23/19 08:02,"341 Hill St, Los Angeles, CA 90001" +270009,USB-C Charging Cable,1,11.95,10/15/19 23:33,"618 Forest St, Los Angeles, CA 90001" +270010,AA Batteries (4-pack),1,3.84,10/29/19 10:15,"129 Hickory St, San Francisco, CA 94016" +270011,Google Phone,1,600,10/17/19 18:22,"767 Washington St, New York City, NY 10001" +270011,USB-C Charging Cable,1,11.95,10/17/19 18:22,"767 Washington St, New York City, NY 10001" +270012,27in 4K Gaming Monitor,1,389.99,10/23/19 15:28,"615 Hill St, New York City, NY 10001" +270012,USB-C Charging Cable,2,11.95,10/23/19 15:28,"615 Hill St, New York City, NY 10001" +270013,Flatscreen TV,1,300,10/29/19 22:39,"687 10th St, New York City, NY 10001" +270014,Lightning Charging Cable,1,14.95,10/20/19 17:02,"592 West St, Atlanta, GA 30301" +270015,Bose SoundSport Headphones,1,99.99,10/18/19 14:27,"311 Lake St, San Francisco, CA 94016" +270016,Lightning Charging Cable,1,14.95,10/31/19 22:52,"516 Meadow St, San Francisco, CA 94016" +270017,Apple Airpods Headphones,1,150,10/19/19 20:56,"575 South St, Austin, TX 73301" +270018,Lightning Charging Cable,1,14.95,10/10/19 06:28,"95 11th St, Seattle, WA 98101" +270019,USB-C Charging Cable,1,11.95,10/06/19 07:04,"489 Hill St, Boston, MA 02215" +270020,AA Batteries (4-pack),1,3.84,10/14/19 07:41,"283 Lake St, San Francisco, CA 94016" +270021,AA Batteries (4-pack),1,3.84,10/04/19 13:00,"141 Lake St, San Francisco, CA 94016" +270022,Google Phone,1,600,10/11/19 20:41,"88 Wilson St, San Francisco, CA 94016" +270023,USB-C Charging Cable,1,11.95,10/12/19 11:03,"604 7th St, Los Angeles, CA 90001" +270024,AA Batteries (4-pack),1,3.84,10/11/19 16:46,"12 Center St, Los Angeles, CA 90001" +270025,Wired Headphones,1,11.99,10/31/19 00:34,"365 Park St, Portland, OR 97035" +270026,Lightning Charging Cable,1,14.95,10/29/19 01:18,"288 Elm St, San Francisco, CA 94016" +270027,AA Batteries (4-pack),1,3.84,10/29/19 21:31,"222 6th St, Los Angeles, CA 90001" +270028,AA Batteries (4-pack),3,3.84,10/12/19 16:16,"159 10th St, New York City, NY 10001" +270029,AAA Batteries (4-pack),1,2.99,10/11/19 20:29,"101 Adams St, San Francisco, CA 94016" +270030,AAA Batteries (4-pack),3,2.99,10/15/19 15:53,"952 Hickory St, San Francisco, CA 94016" +270031,USB-C Charging Cable,1,11.95,10/30/19 21:01,"688 South St, Boston, MA 02215" +270032,Wired Headphones,1,11.99,10/05/19 16:29,"171 Lakeview St, Boston, MA 02215" +270033,iPhone,1,700,10/27/19 17:05,"293 5th St, San Francisco, CA 94016" +270033,Wired Headphones,1,11.99,10/27/19 17:05,"293 5th St, San Francisco, CA 94016" +270034,Wired Headphones,1,11.99,10/20/19 04:25,"383 Forest St, San Francisco, CA 94016" +270035,Macbook Pro Laptop,1,1700,10/11/19 22:49,"540 Meadow St, Dallas, TX 75001" +270036,Macbook Pro Laptop,1,1700,10/02/19 16:02,"736 Hickory St, Dallas, TX 75001" +270037,Macbook Pro Laptop,1,1700,10/18/19 13:24,"13 Pine St, New York City, NY 10001" +270038,34in Ultrawide Monitor,1,379.99,10/09/19 20:49,"88 Maple St, Dallas, TX 75001" +270039,USB-C Charging Cable,1,11.95,10/19/19 11:02,"399 Meadow St, Los Angeles, CA 90001" +270040,USB-C Charging Cable,1,11.95,10/15/19 13:53,"376 4th St, Portland, OR 97035" +270041,Lightning Charging Cable,1,14.95,10/12/19 11:03,"970 Sunset St, Dallas, TX 75001" +270042,USB-C Charging Cable,1,11.95,10/28/19 18:46,"761 14th St, Los Angeles, CA 90001" +270043,Apple Airpods Headphones,1,150,10/18/19 16:38,"613 Main St, Seattle, WA 98101" +270044,Flatscreen TV,1,300,10/08/19 22:09,"801 Pine St, Los Angeles, CA 90001" +270045,Wired Headphones,2,11.99,10/01/19 13:44,"940 Ridge St, Austin, TX 73301" +270046,ThinkPad Laptop,1,999.99,10/28/19 11:07,"809 Chestnut St, New York City, NY 10001" +270047,Wired Headphones,1,11.99,10/28/19 19:34,"203 8th St, San Francisco, CA 94016" +270048,LG Dryer,1,600.0,10/16/19 22:56,"76 Willow St, Dallas, TX 75001" +270049,AAA Batteries (4-pack),4,2.99,10/11/19 18:06,"40 1st St, New York City, NY 10001" +270050,Wired Headphones,1,11.99,10/03/19 13:14,"493 Hickory St, San Francisco, CA 94016" +270051,27in 4K Gaming Monitor,1,389.99,10/28/19 19:40,"765 Meadow St, Atlanta, GA 30301" +270052,iPhone,1,700,10/08/19 19:46,"841 Hill St, Seattle, WA 98101" +270052,Lightning Charging Cable,1,14.95,10/08/19 19:46,"841 Hill St, Seattle, WA 98101" +270053,27in FHD Monitor,1,149.99,10/13/19 10:59,"541 Chestnut St, Atlanta, GA 30301" +270054,AAA Batteries (4-pack),1,2.99,10/21/19 20:00,"317 Johnson St, Los Angeles, CA 90001" +270055,Wired Headphones,1,11.99,10/01/19 16:17,"634 Hill St, Atlanta, GA 30301" +270056,27in FHD Monitor,1,149.99,10/07/19 10:16,"854 Washington St, Seattle, WA 98101" +270057,20in Monitor,1,109.99,10/06/19 19:14,"586 11th St, New York City, NY 10001" +270058,Lightning Charging Cable,1,14.95,10/28/19 22:25,"141 Center St, Los Angeles, CA 90001" +270059,AAA Batteries (4-pack),2,2.99,10/24/19 15:04,"705 Johnson St, Atlanta, GA 30301" +270060,27in FHD Monitor,1,149.99,10/08/19 19:58,"885 Cedar St, Austin, TX 73301" +270061,27in 4K Gaming Monitor,1,389.99,10/01/19 20:17,"512 Church St, New York City, NY 10001" +270062,Wired Headphones,1,11.99,10/13/19 11:53,"980 Washington St, Seattle, WA 98101" +270063,AA Batteries (4-pack),1,3.84,10/03/19 14:24,"820 Hill St, New York City, NY 10001" +270064,iPhone,1,700,10/11/19 16:27,"685 Ridge St, San Francisco, CA 94016" +270065,27in FHD Monitor,1,149.99,10/30/19 22:20,"967 Spruce St, New York City, NY 10001" +270066,27in FHD Monitor,1,149.99,10/21/19 11:05,"964 12th St, Boston, MA 02215" +270067,20in Monitor,1,109.99,10/15/19 16:55,"826 Hickory St, San Francisco, CA 94016" +270067,Lightning Charging Cable,1,14.95,10/15/19 16:55,"826 Hickory St, San Francisco, CA 94016" +270068,USB-C Charging Cable,1,11.95,10/06/19 10:10,"737 12th St, San Francisco, CA 94016" +270069,AA Batteries (4-pack),1,3.84,10/07/19 16:59,"313 Adams St, San Francisco, CA 94016" +270070,AAA Batteries (4-pack),1,2.99,10/20/19 12:35,"196 Dogwood St, Los Angeles, CA 90001" +270071,ThinkPad Laptop,1,999.99,10/18/19 13:41,"714 South St, Portland, OR 97035" +270072,Wired Headphones,1,11.99,10/02/19 19:48,"673 6th St, Los Angeles, CA 90001" +270073,AA Batteries (4-pack),1,3.84,10/07/19 19:51,"49 Madison St, Atlanta, GA 30301" +270074,Wired Headphones,1,11.99,10/30/19 19:04,"356 Church St, Los Angeles, CA 90001" +270075,27in 4K Gaming Monitor,1,389.99,10/21/19 22:07,"448 Church St, San Francisco, CA 94016" +270076,Macbook Pro Laptop,1,1700,10/05/19 11:15,"385 Elm St, Los Angeles, CA 90001" +270077,Wired Headphones,1,11.99,10/31/19 00:45,"307 Chestnut St, Seattle, WA 98101" +270078,AAA Batteries (4-pack),4,2.99,10/08/19 06:47,"927 6th St, San Francisco, CA 94016" +270078,AAA Batteries (4-pack),1,2.99,10/08/19 06:47,"927 6th St, San Francisco, CA 94016" +270079,Lightning Charging Cable,1,14.95,10/24/19 00:47,"481 Main St, San Francisco, CA 94016" +270080,ThinkPad Laptop,1,999.99,10/18/19 18:28,"806 Meadow St, Austin, TX 73301" +270081,AAA Batteries (4-pack),1,2.99,10/17/19 06:46,"587 9th St, Seattle, WA 98101" +270082,Bose SoundSport Headphones,1,99.99,10/02/19 12:10,"815 Sunset St, Los Angeles, CA 90001" +270083,ThinkPad Laptop,1,999.99,10/17/19 14:17,"234 6th St, Austin, TX 73301" +270084,Apple Airpods Headphones,1,150,10/01/19 06:08,"339 Lakeview St, Portland, OR 97035" +270085,20in Monitor,1,109.99,10/25/19 02:25,"696 14th St, San Francisco, CA 94016" +270086,iPhone,1,700,10/12/19 14:41,"789 Pine St, Boston, MA 02215" +270087,Wired Headphones,1,11.99,10/23/19 15:33,"68 Lincoln St, San Francisco, CA 94016" +270088,20in Monitor,1,109.99,10/29/19 19:12,"240 Highland St, Los Angeles, CA 90001" +270089,27in FHD Monitor,1,149.99,10/20/19 17:44,"593 8th St, New York City, NY 10001" +270090,20in Monitor,1,109.99,10/17/19 15:10,"45 West St, New York City, NY 10001" +270090,Lightning Charging Cable,1,14.95,10/17/19 15:10,"45 West St, New York City, NY 10001" +270091,20in Monitor,1,109.99,10/06/19 18:21,"61 Highland St, San Francisco, CA 94016" +270092,Bose SoundSport Headphones,1,99.99,10/27/19 03:54,"959 Jefferson St, San Francisco, CA 94016" +270093,Lightning Charging Cable,1,14.95,10/28/19 21:34,"171 8th St, New York City, NY 10001" +270094,Lightning Charging Cable,1,14.95,10/15/19 11:28,"711 1st St, Atlanta, GA 30301" +270095,Macbook Pro Laptop,1,1700,10/10/19 14:07,"715 Chestnut St, San Francisco, CA 94016" +270096,iPhone,1,700,10/07/19 11:31,"794 Wilson St, New York City, NY 10001" +270097,AA Batteries (4-pack),4,3.84,10/05/19 00:35,"437 Center St, San Francisco, CA 94016" +270098,27in FHD Monitor,1,149.99,10/28/19 10:43,"81 5th St, Portland, OR 97035" +270099,Lightning Charging Cable,1,14.95,10/31/19 11:39,"710 Adams St, San Francisco, CA 94016" +270100,Lightning Charging Cable,1,14.95,10/08/19 09:04,"877 14th St, Austin, TX 73301" +270101,iPhone,1,700,10/12/19 08:36,"767 Johnson St, New York City, NY 10001" +270101,Lightning Charging Cable,1,14.95,10/12/19 08:36,"767 Johnson St, New York City, NY 10001" +270102,Wired Headphones,1,11.99,10/17/19 11:31,"354 11th St, San Francisco, CA 94016" +270103,Macbook Pro Laptop,1,1700,10/05/19 15:55,"898 Wilson St, Portland, OR 97035" +270104,AA Batteries (4-pack),1,3.84,10/05/19 13:36,"938 Center St, Los Angeles, CA 90001" +270105,AA Batteries (4-pack),1,3.84,10/05/19 12:23,"604 Wilson St, Austin, TX 73301" +270106,Flatscreen TV,1,300,10/20/19 21:35,"409 14th St, Seattle, WA 98101" +270107,Macbook Pro Laptop,1,1700,10/02/19 15:58,"327 Cherry St, New York City, NY 10001" +270108,Macbook Pro Laptop,1,1700,10/10/19 14:37,"95 Main St, Los Angeles, CA 90001" +270109,Google Phone,1,600,10/01/19 14:48,"353 Madison St, Atlanta, GA 30301" +270110,27in 4K Gaming Monitor,1,389.99,10/26/19 00:44,"867 Jackson St, Los Angeles, CA 90001" +270111,Lightning Charging Cable,1,14.95,10/10/19 09:48,"511 Elm St, Portland, ME 04101" +270112,Bose SoundSport Headphones,1,99.99,10/02/19 19:37,"390 Jackson St, Boston, MA 02215" +270113,AAA Batteries (4-pack),2,2.99,10/28/19 09:10,"275 12th St, San Francisco, CA 94016" +270114,AA Batteries (4-pack),1,3.84,10/15/19 21:08,"324 Ridge St, Portland, OR 97035" +270115,Bose SoundSport Headphones,1,99.99,10/19/19 21:37,"994 Madison St, New York City, NY 10001" +270116,AAA Batteries (4-pack),3,2.99,10/26/19 13:29,"789 River St, Boston, MA 02215" +270117,USB-C Charging Cable,1,11.95,10/18/19 13:30,"178 Lincoln St, San Francisco, CA 94016" +270118,27in 4K Gaming Monitor,1,389.99,10/17/19 12:24,"125 Lincoln St, Atlanta, GA 30301" +270119,Apple Airpods Headphones,1,150,10/03/19 12:15,"18 Dogwood St, New York City, NY 10001" +270120,Lightning Charging Cable,1,14.95,10/21/19 09:44,"707 9th St, Los Angeles, CA 90001" +270121,AAA Batteries (4-pack),2,2.99,10/31/19 18:56,"938 Jackson St, Austin, TX 73301" +270122,AAA Batteries (4-pack),1,2.99,10/17/19 21:11,"576 Lake St, Portland, OR 97035" +270123,AAA Batteries (4-pack),1,2.99,10/02/19 17:26,"764 14th St, Austin, TX 73301" +270124,USB-C Charging Cable,1,11.95,10/01/19 20:20,"600 Highland St, Los Angeles, CA 90001" +270125,USB-C Charging Cable,1,11.95,10/25/19 09:32,"886 Forest St, New York City, NY 10001" +270126,Lightning Charging Cable,1,14.95,10/04/19 11:20,"693 6th St, Seattle, WA 98101" +270127,AA Batteries (4-pack),1,3.84,10/19/19 14:16,"376 4th St, New York City, NY 10001" +270128,Bose SoundSport Headphones,1,99.99,10/27/19 18:33,"619 Sunset St, Boston, MA 02215" +270129,Macbook Pro Laptop,1,1700,10/11/19 21:00,"866 6th St, New York City, NY 10001" +270130,USB-C Charging Cable,1,11.95,10/17/19 19:26,"453 Cherry St, New York City, NY 10001" +270131,27in 4K Gaming Monitor,1,389.99,10/15/19 15:46,"369 Washington St, Seattle, WA 98101" +270132,Wired Headphones,2,11.99,10/04/19 10:46,"666 Dogwood St, Austin, TX 73301" +270133,AAA Batteries (4-pack),1,2.99,10/27/19 22:21,"323 Johnson St, Los Angeles, CA 90001" +270134,27in FHD Monitor,1,149.99,10/18/19 18:46,"299 2nd St, San Francisco, CA 94016" +270135,USB-C Charging Cable,1,11.95,10/25/19 22:55,"959 Adams St, New York City, NY 10001" +270136,Apple Airpods Headphones,1,150,10/05/19 13:56,"428 Washington St, Boston, MA 02215" +270137,Bose SoundSport Headphones,1,99.99,10/21/19 03:47,"576 Cedar St, Seattle, WA 98101" +270138,Bose SoundSport Headphones,1,99.99,10/12/19 11:13,"428 13th St, Dallas, TX 75001" +270139,ThinkPad Laptop,1,999.99,10/15/19 10:43,"161 Meadow St, New York City, NY 10001" +270140,AAA Batteries (4-pack),1,2.99,10/24/19 07:35,"366 Sunset St, Seattle, WA 98101" +270141,Lightning Charging Cable,1,14.95,10/05/19 08:42,"643 Meadow St, San Francisco, CA 94016" +270142,Flatscreen TV,1,300,10/29/19 21:37,"193 Washington St, New York City, NY 10001" +270143,20in Monitor,1,109.99,10/19/19 16:42,"605 Center St, Dallas, TX 75001" +270144,Wired Headphones,1,11.99,10/25/19 17:49,"199 Pine St, San Francisco, CA 94016" +270145,AAA Batteries (4-pack),2,2.99,10/04/19 10:11,"541 Spruce St, Austin, TX 73301" +270146,AA Batteries (4-pack),1,3.84,10/12/19 23:50,"894 River St, San Francisco, CA 94016" +270147,AAA Batteries (4-pack),2,2.99,10/20/19 01:57,"733 7th St, Seattle, WA 98101" +270148,USB-C Charging Cable,1,11.95,10/15/19 13:13,"257 Highland St, San Francisco, CA 94016" +270149,Lightning Charging Cable,1,14.95,10/07/19 13:25,"974 1st St, Boston, MA 02215" +270150,AA Batteries (4-pack),2,3.84,10/26/19 14:05,"459 Hickory St, Portland, OR 97035" +270151,27in 4K Gaming Monitor,1,389.99,10/21/19 13:48,"826 6th St, Los Angeles, CA 90001" +270152,Flatscreen TV,1,300,10/27/19 12:14,"903 Dogwood St, New York City, NY 10001" +270153,USB-C Charging Cable,1,11.95,10/07/19 14:04,"368 Meadow St, Portland, OR 97035" +270154,AAA Batteries (4-pack),1,2.99,10/15/19 20:39,"612 6th St, San Francisco, CA 94016" +270155,Lightning Charging Cable,1,14.95,10/21/19 11:14,"659 North St, Atlanta, GA 30301" +270156,27in FHD Monitor,1,149.99,10/09/19 13:06,"774 Main St, New York City, NY 10001" +270157,AA Batteries (4-pack),1,3.84,10/23/19 12:52,"154 14th St, New York City, NY 10001" +270158,Apple Airpods Headphones,1,150,10/22/19 16:13,"148 North St, San Francisco, CA 94016" +270159,Google Phone,1,600,10/20/19 21:12,"347 Washington St, Seattle, WA 98101" +270160,27in 4K Gaming Monitor,1,389.99,10/05/19 15:34,"709 Spruce St, Los Angeles, CA 90001" +270161,Wired Headphones,1,11.99,10/27/19 12:11,"675 Hill St, Portland, OR 97035" +270162,Wired Headphones,1,11.99,10/04/19 11:57,"863 Lakeview St, New York City, NY 10001" +270163,Wired Headphones,1,11.99,10/22/19 12:50,"622 Sunset St, San Francisco, CA 94016" +270164,AAA Batteries (4-pack),1,2.99,10/02/19 13:37,"31 2nd St, Austin, TX 73301" +270165,USB-C Charging Cable,1,11.95,10/23/19 13:24,"852 9th St, New York City, NY 10001" +270166,USB-C Charging Cable,1,11.95,10/07/19 12:09,"856 9th St, Los Angeles, CA 90001" +270167,AA Batteries (4-pack),1,3.84,10/14/19 21:15,"141 4th St, Los Angeles, CA 90001" +270168,iPhone,1,700,10/24/19 17:49,"542 Center St, New York City, NY 10001" +270169,27in FHD Monitor,1,149.99,10/04/19 13:16,"425 8th St, Los Angeles, CA 90001" +270170,ThinkPad Laptop,1,999.99,10/12/19 18:21,"305 Center St, Los Angeles, CA 90001" +270171,Apple Airpods Headphones,1,150,10/05/19 00:28,"9 Forest St, Atlanta, GA 30301" +270172,Wired Headphones,1,11.99,10/05/19 11:36,"372 Lakeview St, Boston, MA 02215" +270173,LG Dryer,1,600.0,10/29/19 11:11,"969 2nd St, Austin, TX 73301" +270174,Lightning Charging Cable,1,14.95,10/30/19 16:34,"159 Wilson St, New York City, NY 10001" +270175,Wired Headphones,1,11.99,10/09/19 17:31,"105 13th St, Seattle, WA 98101" +270176,USB-C Charging Cable,1,11.95,10/14/19 22:42,"627 Hill St, Portland, OR 97035" +270177,Apple Airpods Headphones,1,150,10/21/19 10:37,"114 Johnson St, Seattle, WA 98101" +270178,USB-C Charging Cable,1,11.95,10/08/19 16:26,"846 Jackson St, Dallas, TX 75001" +270179,USB-C Charging Cable,1,11.95,10/03/19 09:24,"843 12th St, Dallas, TX 75001" +270180,27in 4K Gaming Monitor,1,389.99,10/13/19 17:30,"20 Ridge St, Atlanta, GA 30301" +270181,USB-C Charging Cable,1,11.95,10/10/19 17:07,"871 Lakeview St, San Francisco, CA 94016" +270182,Wired Headphones,1,11.99,10/13/19 00:22,"160 13th St, Atlanta, GA 30301" +270183,Apple Airpods Headphones,1,150,10/13/19 10:34,"897 Walnut St, Seattle, WA 98101" +270184,USB-C Charging Cable,1,11.95,10/04/19 22:12,"281 Cedar St, San Francisco, CA 94016" +270185,Apple Airpods Headphones,1,150,10/06/19 08:31,"921 6th St, New York City, NY 10001" +270185,27in FHD Monitor,1,149.99,10/06/19 08:31,"921 6th St, New York City, NY 10001" +270186,Flatscreen TV,1,300,10/03/19 21:42,"556 1st St, San Francisco, CA 94016" +270187,AA Batteries (4-pack),1,3.84,10/05/19 11:30,"750 Sunset St, San Francisco, CA 94016" +270188,iPhone,1,700,10/12/19 10:56,"874 River St, Dallas, TX 75001" +270189,Lightning Charging Cable,1,14.95,10/10/19 16:41,"586 South St, Portland, OR 97035" +270190,Lightning Charging Cable,1,14.95,10/10/19 19:51,"223 Park St, Los Angeles, CA 90001" +270191,Apple Airpods Headphones,1,150,10/16/19 19:54,"564 River St, San Francisco, CA 94016" +270192,20in Monitor,1,109.99,10/21/19 05:48,"308 Jackson St, Austin, TX 73301" +270193,AAA Batteries (4-pack),1,2.99,10/25/19 18:31,"204 6th St, Austin, TX 73301" +270194,Apple Airpods Headphones,1,150,10/11/19 20:33,"71 Pine St, Boston, MA 02215" +270195,Bose SoundSport Headphones,1,99.99,10/31/19 17:38,"170 Dogwood St, Portland, OR 97035" +270196,iPhone,1,700,10/13/19 13:40,"143 West St, Portland, ME 04101" +270197,AAA Batteries (4-pack),1,2.99,10/11/19 07:53,"885 Adams St, San Francisco, CA 94016" +270198,Lightning Charging Cable,1,14.95,10/05/19 18:38,"543 Lakeview St, San Francisco, CA 94016" +270199,27in FHD Monitor,1,149.99,10/22/19 13:13,"469 Pine St, Los Angeles, CA 90001" +270200,Lightning Charging Cable,1,14.95,10/09/19 17:27,"750 10th St, New York City, NY 10001" +270201,Google Phone,1,600,10/26/19 11:08,"266 6th St, Los Angeles, CA 90001" +270202,Lightning Charging Cable,2,14.95,10/10/19 10:41,"958 Hill St, Boston, MA 02215" +270203,USB-C Charging Cable,1,11.95,10/04/19 10:21,"593 11th St, Atlanta, GA 30301" +270204,iPhone,1,700,10/11/19 13:15,"765 9th St, Atlanta, GA 30301" +270204,Lightning Charging Cable,1,14.95,10/11/19 13:15,"765 9th St, Atlanta, GA 30301" +270205,ThinkPad Laptop,1,999.99,10/07/19 11:54,"284 Cherry St, Boston, MA 02215" +270206,AAA Batteries (4-pack),1,2.99,10/03/19 21:18,"974 Church St, Portland, ME 04101" +270207,AAA Batteries (4-pack),1,2.99,10/06/19 18:13,"516 Main St, New York City, NY 10001" +270208,20in Monitor,1,109.99,10/25/19 01:20,"949 Spruce St, San Francisco, CA 94016" +270209,ThinkPad Laptop,1,999.99,10/24/19 12:01,"508 Dogwood St, San Francisco, CA 94016" +270210,27in FHD Monitor,1,149.99,10/09/19 07:47,"528 Cherry St, Austin, TX 73301" +270211,AAA Batteries (4-pack),2,2.99,10/21/19 09:14,"712 Cherry St, Atlanta, GA 30301" +270212,USB-C Charging Cable,1,11.95,10/05/19 19:54,"446 Church St, Los Angeles, CA 90001" +270213,Apple Airpods Headphones,1,150,10/09/19 18:02,"83 Sunset St, Portland, OR 97035" +270214,27in FHD Monitor,1,149.99,10/27/19 10:41,"968 Jefferson St, Seattle, WA 98101" +270215,Apple Airpods Headphones,1,150,10/20/19 15:38,"345 River St, Los Angeles, CA 90001" +270216,Google Phone,1,600,10/17/19 06:05,"918 Cedar St, Dallas, TX 75001" +270217,Lightning Charging Cable,1,14.95,10/28/19 21:25,"554 Park St, New York City, NY 10001" +270218,34in Ultrawide Monitor,1,379.99,10/09/19 19:16,"199 Johnson St, San Francisco, CA 94016" +270219,Macbook Pro Laptop,1,1700,10/04/19 20:07,"915 Highland St, Boston, MA 02215" +270220,AAA Batteries (4-pack),2,2.99,10/04/19 00:02,"937 Highland St, Los Angeles, CA 90001" +270221,Wired Headphones,1,11.99,10/15/19 11:54,"220 Hickory St, San Francisco, CA 94016" +270222,34in Ultrawide Monitor,1,379.99,10/14/19 18:48,"739 Adams St, San Francisco, CA 94016" +270223,Lightning Charging Cable,1,14.95,10/27/19 19:57,"614 Cherry St, New York City, NY 10001" +270224,Lightning Charging Cable,1,14.95,10/18/19 12:22,"519 Pine St, Austin, TX 73301" +270224,Flatscreen TV,1,300,10/18/19 12:22,"519 Pine St, Austin, TX 73301" +270225,Lightning Charging Cable,1,14.95,10/06/19 18:18,"322 Chestnut St, Boston, MA 02215" +270226,iPhone,1,700,10/23/19 16:48,"194 11th St, New York City, NY 10001" +270226,Lightning Charging Cable,1,14.95,10/23/19 16:48,"194 11th St, New York City, NY 10001" +270227,USB-C Charging Cable,1,11.95,10/16/19 10:09,"401 Cherry St, San Francisco, CA 94016" +270228,Lightning Charging Cable,1,14.95,10/06/19 15:18,"304 Forest St, Boston, MA 02215" +270229,27in FHD Monitor,1,149.99,10/07/19 14:09,"416 Spruce St, Dallas, TX 75001" +270230,AA Batteries (4-pack),1,3.84,10/26/19 16:54,"825 Lake St, Boston, MA 02215" +270231,USB-C Charging Cable,1,11.95,10/19/19 22:09,"667 8th St, San Francisco, CA 94016" +270232,Bose SoundSport Headphones,1,99.99,10/13/19 13:31,"72 Jackson St, Portland, OR 97035" +270233,Apple Airpods Headphones,1,150,10/27/19 20:00,"237 14th St, New York City, NY 10001" +270234,ThinkPad Laptop,1,999.99,10/17/19 01:01,"874 Willow St, Los Angeles, CA 90001" +270235,27in 4K Gaming Monitor,1,389.99,10/01/19 07:03,"117 Maple St, Boston, MA 02215" +270236,USB-C Charging Cable,1,11.95,10/20/19 20:39,"66 Wilson St, New York City, NY 10001" +270237,AAA Batteries (4-pack),1,2.99,10/26/19 17:11,"293 1st St, Los Angeles, CA 90001" +270238,AAA Batteries (4-pack),1,2.99,10/30/19 19:11,"538 8th St, Dallas, TX 75001" +270239,Wired Headphones,1,11.99,10/18/19 21:09,"799 4th St, New York City, NY 10001" +270240,Bose SoundSport Headphones,1,99.99,10/26/19 12:24,"736 Forest St, Los Angeles, CA 90001" +270241,Wired Headphones,1,11.99,10/19/19 18:17,"245 Walnut St, Los Angeles, CA 90001" +270242,Lightning Charging Cable,1,14.95,10/07/19 20:48,"339 Ridge St, Los Angeles, CA 90001" +270243,34in Ultrawide Monitor,1,379.99,10/10/19 17:59,"893 Meadow St, Atlanta, GA 30301" +270244,34in Ultrawide Monitor,1,379.99,10/21/19 15:03,"722 Forest St, Atlanta, GA 30301" +270245,USB-C Charging Cable,1,11.95,10/22/19 17:55,"301 Main St, New York City, NY 10001" +270246,AAA Batteries (4-pack),1,2.99,10/09/19 14:37,"657 Church St, New York City, NY 10001" +270247,Flatscreen TV,1,300,10/31/19 12:47,"196 Chestnut St, Boston, MA 02215" +270248,34in Ultrawide Monitor,1,379.99,10/14/19 00:06,"9 13th St, Atlanta, GA 30301" +270249,USB-C Charging Cable,1,11.95,10/05/19 09:23,"384 Washington St, Boston, MA 02215" +270250,Apple Airpods Headphones,1,150,10/22/19 07:18,"132 9th St, New York City, NY 10001" +270251,27in FHD Monitor,1,149.99,10/30/19 20:35,"526 11th St, Los Angeles, CA 90001" +270252,Lightning Charging Cable,1,14.95,10/12/19 19:51,"63 Church St, Boston, MA 02215" +270253,Macbook Pro Laptop,1,1700,10/03/19 20:35,"20 Church St, Boston, MA 02215" +270254,Apple Airpods Headphones,1,150,10/29/19 08:55,"914 North St, New York City, NY 10001" +270255,27in FHD Monitor,1,149.99,10/12/19 10:45,"70 Pine St, San Francisco, CA 94016" +270256,Wired Headphones,1,11.99,10/11/19 19:07,"475 Cherry St, San Francisco, CA 94016" +270257,AAA Batteries (4-pack),2,2.99,10/14/19 15:31,"909 Willow St, Los Angeles, CA 90001" +270258,Lightning Charging Cable,1,14.95,10/04/19 12:39,"647 Adams St, New York City, NY 10001" +270259,Bose SoundSport Headphones,1,99.99,10/04/19 00:13,"202 Lakeview St, San Francisco, CA 94016" +270260,USB-C Charging Cable,2,11.95,10/18/19 15:36,"488 6th St, Dallas, TX 75001" +270261,AAA Batteries (4-pack),1,2.99,10/27/19 14:26,"960 Pine St, San Francisco, CA 94016" +270262,Vareebadd Phone,1,400,10/18/19 14:12,"766 Jackson St, Seattle, WA 98101" +270262,USB-C Charging Cable,1,11.95,10/18/19 14:12,"766 Jackson St, Seattle, WA 98101" +270263,Wired Headphones,1,11.99,10/09/19 18:06,"675 Hickory St, Los Angeles, CA 90001" +270264,Google Phone,1,600,10/27/19 20:07,"808 Highland St, Dallas, TX 75001" +270265,Apple Airpods Headphones,1,150,10/08/19 19:21,"902 Lincoln St, Boston, MA 02215" +270266,AA Batteries (4-pack),1,3.84,10/15/19 01:17,"38 1st St, Seattle, WA 98101" +270267,Apple Airpods Headphones,1,150,10/17/19 18:28,"886 South St, Portland, OR 97035" +270268,AA Batteries (4-pack),1,3.84,10/01/19 20:58,"80 River St, Los Angeles, CA 90001" +270269,AA Batteries (4-pack),2,3.84,10/13/19 13:43,"503 Maple St, New York City, NY 10001" +270270,USB-C Charging Cable,1,11.95,10/28/19 11:51,"857 Cedar St, Boston, MA 02215" +270271,27in 4K Gaming Monitor,1,389.99,10/16/19 21:17,"324 River St, Austin, TX 73301" +270272,iPhone,1,700,10/10/19 19:43,"714 Center St, Boston, MA 02215" +270273,AAA Batteries (4-pack),2,2.99,10/16/19 20:51,"598 Forest St, San Francisco, CA 94016" +270274,iPhone,1,700,10/18/19 18:22,"333 Wilson St, Seattle, WA 98101" +270274,Lightning Charging Cable,1,14.95,10/18/19 18:22,"333 Wilson St, Seattle, WA 98101" +270274,Apple Airpods Headphones,1,150,10/18/19 18:22,"333 Wilson St, Seattle, WA 98101" +270275,AA Batteries (4-pack),1,3.84,10/17/19 14:38,"549 Park St, Boston, MA 02215" +270276,AAA Batteries (4-pack),1,2.99,10/25/19 20:10,"161 Willow St, Los Angeles, CA 90001" +270277,AA Batteries (4-pack),2,3.84,10/19/19 02:05,"975 Wilson St, Boston, MA 02215" +270278,AA Batteries (4-pack),1,3.84,10/09/19 06:20,"855 Park St, New York City, NY 10001" +270279,Apple Airpods Headphones,1,150,10/09/19 16:12,"474 11th St, Los Angeles, CA 90001" +270280,AAA Batteries (4-pack),1,2.99,10/04/19 21:06,"840 1st St, San Francisco, CA 94016" +270281,Lightning Charging Cable,1,14.95,10/30/19 19:29,"161 Jackson St, San Francisco, CA 94016" +270282,Bose SoundSport Headphones,1,99.99,10/31/19 19:12,"640 Madison St, San Francisco, CA 94016" +270283,iPhone,1,700,10/23/19 18:54,"632 Lincoln St, Los Angeles, CA 90001" +270284,USB-C Charging Cable,1,11.95,10/24/19 15:29,"267 1st St, Boston, MA 02215" +270285,Apple Airpods Headphones,1,150,10/27/19 12:12,"277 Lincoln St, Seattle, WA 98101" +270286,USB-C Charging Cable,1,11.95,10/23/19 18:53,"337 Lakeview St, Los Angeles, CA 90001" +270287,Vareebadd Phone,1,400,10/12/19 21:02,"287 2nd St, Portland, ME 04101" +270287,USB-C Charging Cable,1,11.95,10/12/19 21:02,"287 2nd St, Portland, ME 04101" +270287,AAA Batteries (4-pack),1,2.99,10/12/19 21:02,"287 2nd St, Portland, ME 04101" +270288,Lightning Charging Cable,1,14.95,10/09/19 20:50,"497 Cedar St, New York City, NY 10001" +270289,AA Batteries (4-pack),1,3.84,10/20/19 22:56,"305 9th St, Seattle, WA 98101" +270290,20in Monitor,1,109.99,10/31/19 15:26,"235 Elm St, Dallas, TX 75001" +270291,iPhone,1,700,10/14/19 12:48,"389 9th St, Atlanta, GA 30301" +270292,27in 4K Gaming Monitor,1,389.99,10/16/19 15:14,"345 Hill St, Boston, MA 02215" +270293,AAA Batteries (4-pack),1,2.99,10/21/19 13:42,"237 Park St, Atlanta, GA 30301" +270294,Wired Headphones,1,11.99,10/15/19 12:04,"346 1st St, Los Angeles, CA 90001" +270295,AAA Batteries (4-pack),1,2.99,10/15/19 15:32,"489 River St, New York City, NY 10001" +270296,AAA Batteries (4-pack),1,2.99,10/01/19 14:57,"866 2nd St, Dallas, TX 75001" +270297,Lightning Charging Cable,1,14.95,10/13/19 16:54,"942 11th St, San Francisco, CA 94016" +270298,AA Batteries (4-pack),2,3.84,10/24/19 09:13,"276 Elm St, Seattle, WA 98101" +270299,27in 4K Gaming Monitor,1,389.99,10/15/19 21:20,"239 7th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +270300,Lightning Charging Cable,2,14.95,10/27/19 13:47,"596 Walnut St, San Francisco, CA 94016" +270301,iPhone,1,700,10/02/19 11:22,"823 Willow St, New York City, NY 10001" +270302,Wired Headphones,1,11.99,10/02/19 20:31,"534 14th St, Dallas, TX 75001" +270303,AA Batteries (4-pack),1,3.84,10/10/19 15:18,"641 6th St, Austin, TX 73301" +270304,Apple Airpods Headphones,1,150,10/25/19 12:33,"521 Elm St, Dallas, TX 75001" +270305,AA Batteries (4-pack),1,3.84,10/31/19 01:06,"212 10th St, Seattle, WA 98101" +270306,Macbook Pro Laptop,1,1700,10/10/19 07:01,"878 Jefferson St, New York City, NY 10001" +270307,AAA Batteries (4-pack),1,2.99,10/25/19 19:03,"961 Church St, Los Angeles, CA 90001" +270308,USB-C Charging Cable,1,11.95,10/10/19 19:36,"63 Dogwood St, San Francisco, CA 94016" +270309,iPhone,1,700,10/07/19 16:51,"46 11th St, Dallas, TX 75001" +270310,AA Batteries (4-pack),1,3.84,10/03/19 21:51,"705 Cherry St, Dallas, TX 75001" +270311,27in 4K Gaming Monitor,1,389.99,10/07/19 12:34,"492 North St, Seattle, WA 98101" +270312,Wired Headphones,1,11.99,10/07/19 13:03,"553 Wilson St, Seattle, WA 98101" +270313,USB-C Charging Cable,1,11.95,10/05/19 14:19,"615 Maple St, Portland, OR 97035" +270314,iPhone,1,700,10/03/19 22:18,"318 South St, San Francisco, CA 94016" +270315,USB-C Charging Cable,1,11.95,10/27/19 08:05,"443 South St, Los Angeles, CA 90001" +270316,AA Batteries (4-pack),1,3.84,10/08/19 06:05,"134 Chestnut St, Los Angeles, CA 90001" +270317,Macbook Pro Laptop,1,1700,10/31/19 22:13,"375 Washington St, New York City, NY 10001" +270318,Wired Headphones,1,11.99,10/08/19 20:00,"300 Madison St, Los Angeles, CA 90001" +270319,Apple Airpods Headphones,1,150,10/02/19 22:17,"200 Willow St, New York City, NY 10001" +270320,iPhone,1,700,10/17/19 21:33,"138 1st St, Atlanta, GA 30301" +270320,Lightning Charging Cable,2,14.95,10/17/19 21:33,"138 1st St, Atlanta, GA 30301" +270321,AAA Batteries (4-pack),1,2.99,10/20/19 10:23,"630 14th St, Portland, ME 04101" +270322,Wired Headphones,1,11.99,10/12/19 21:38,"965 Center St, San Francisco, CA 94016" +270323,Apple Airpods Headphones,1,150,10/19/19 07:48,"196 1st St, New York City, NY 10001" +270324,27in 4K Gaming Monitor,1,389.99,10/10/19 19:03,"207 Johnson St, Los Angeles, CA 90001" +270325,AAA Batteries (4-pack),1,2.99,10/27/19 16:16,"324 Maple St, Dallas, TX 75001" +270326,Wired Headphones,1,11.99,10/05/19 15:15,"246 Washington St, San Francisco, CA 94016" +,,,,, +270327,Apple Airpods Headphones,1,150,10/09/19 13:18,"234 5th St, Los Angeles, CA 90001" +270328,Apple Airpods Headphones,1,150,10/02/19 16:02,"778 2nd St, Austin, TX 73301" +270329,27in FHD Monitor,1,149.99,10/24/19 15:07,"453 Elm St, Los Angeles, CA 90001" +270330,AA Batteries (4-pack),1,3.84,10/02/19 20:32,"706 Ridge St, Atlanta, GA 30301" +270331,AA Batteries (4-pack),2,3.84,10/09/19 14:18,"111 Meadow St, Los Angeles, CA 90001" +270332,Lightning Charging Cable,1,14.95,10/27/19 21:33,"73 Meadow St, Portland, OR 97035" +270333,Wired Headphones,1,11.99,10/31/19 10:35,"95 7th St, Austin, TX 73301" +270334,Flatscreen TV,1,300,10/21/19 22:14,"675 Chestnut St, Seattle, WA 98101" +270335,27in FHD Monitor,1,149.99,10/29/19 20:47,"161 Sunset St, Los Angeles, CA 90001" +270336,Apple Airpods Headphones,1,150,10/07/19 14:41,"144 1st St, Dallas, TX 75001" +270337,Wired Headphones,1,11.99,10/15/19 11:38,"787 Washington St, Dallas, TX 75001" +270338,USB-C Charging Cable,1,11.95,10/03/19 09:13,"800 Washington St, Seattle, WA 98101" +270339,Wired Headphones,1,11.99,10/31/19 18:06,"301 Lakeview St, San Francisco, CA 94016" +270340,ThinkPad Laptop,1,999.99,10/19/19 13:15,"950 Hill St, Boston, MA 02215" +270341,Macbook Pro Laptop,1,1700,10/09/19 13:13,"771 6th St, New York City, NY 10001" +270342,Lightning Charging Cable,1,14.95,10/04/19 07:19,"251 Maple St, Los Angeles, CA 90001" +270343,Vareebadd Phone,1,400,10/07/19 19:28,"364 Meadow St, San Francisco, CA 94016" +270344,Flatscreen TV,1,300,10/14/19 18:13,"199 4th St, Atlanta, GA 30301" +270345,USB-C Charging Cable,1,11.95,10/09/19 19:49,"582 Meadow St, Boston, MA 02215" +270346,iPhone,1,700,10/12/19 20:46,"797 Jackson St, Los Angeles, CA 90001" +270347,27in 4K Gaming Monitor,1,389.99,10/08/19 14:43,"451 Jackson St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +270348,USB-C Charging Cable,1,11.95,10/27/19 09:04,"582 Lake St, Portland, OR 97035" +270349,AAA Batteries (4-pack),1,2.99,10/17/19 19:43,"604 Church St, Los Angeles, CA 90001" +270350,Lightning Charging Cable,1,14.95,10/05/19 11:59,"109 Johnson St, Los Angeles, CA 90001" +270350,Flatscreen TV,1,300,10/05/19 11:59,"109 Johnson St, Los Angeles, CA 90001" +270351,27in 4K Gaming Monitor,1,389.99,10/29/19 18:07,"519 Walnut St, New York City, NY 10001" +270352,AAA Batteries (4-pack),2,2.99,10/13/19 17:26,"977 Meadow St, Boston, MA 02215" +270353,USB-C Charging Cable,1,11.95,10/28/19 09:24,"142 Jefferson St, Los Angeles, CA 90001" +270354,Lightning Charging Cable,1,14.95,10/01/19 18:33,"365 5th St, Seattle, WA 98101" +270355,AA Batteries (4-pack),2,3.84,10/10/19 15:01,"135 Highland St, New York City, NY 10001" +270355,AA Batteries (4-pack),2,3.84,10/10/19 15:01,"135 Highland St, New York City, NY 10001" +270356,Wired Headphones,1,11.99,10/05/19 21:18,"576 Main St, Dallas, TX 75001" +270357,34in Ultrawide Monitor,1,379.99,10/24/19 22:09,"236 Lakeview St, Los Angeles, CA 90001" +270358,USB-C Charging Cable,1,11.95,10/31/19 23:33,"405 Cedar St, Portland, OR 97035" +270359,Vareebadd Phone,1,400,10/22/19 15:06,"626 Willow St, San Francisco, CA 94016" +270360,Google Phone,1,600,10/06/19 09:29,"129 Johnson St, San Francisco, CA 94016" +270360,AAA Batteries (4-pack),1,2.99,10/06/19 09:29,"129 Johnson St, San Francisco, CA 94016" +270361,27in 4K Gaming Monitor,1,389.99,10/21/19 21:16,"580 Highland St, New York City, NY 10001" +270362,USB-C Charging Cable,1,11.95,10/31/19 13:03,"634 Johnson St, San Francisco, CA 94016" +270363,AAA Batteries (4-pack),1,2.99,10/26/19 11:52,"526 Dogwood St, San Francisco, CA 94016" +270364,AAA Batteries (4-pack),1,2.99,10/13/19 11:46,"937 Jefferson St, Portland, OR 97035" +270365,AAA Batteries (4-pack),1,2.99,10/13/19 18:39,"483 Highland St, San Francisco, CA 94016" +270366,Lightning Charging Cable,1,14.95,10/23/19 14:41,"387 River St, Los Angeles, CA 90001" +270367,Lightning Charging Cable,1,14.95,10/09/19 14:14,"21 Center St, Atlanta, GA 30301" +270368,20in Monitor,1,109.99,10/18/19 10:13,"382 Lake St, Austin, TX 73301" +270369,Lightning Charging Cable,2,14.95,10/18/19 11:01,"870 Hickory St, San Francisco, CA 94016" +270370,27in 4K Gaming Monitor,1,389.99,10/12/19 09:46,"29 Pine St, Los Angeles, CA 90001" +270371,USB-C Charging Cable,1,11.95,10/16/19 21:58,"36 Maple St, San Francisco, CA 94016" +270372,ThinkPad Laptop,1,999.99,10/04/19 17:59,"931 8th St, Atlanta, GA 30301" +270373,Bose SoundSport Headphones,1,99.99,10/05/19 11:58,"308 Cherry St, Boston, MA 02215" +270374,Lightning Charging Cable,1,14.95,10/23/19 09:44,"7 Lincoln St, Boston, MA 02215" +270375,Wired Headphones,1,11.99,10/08/19 20:55,"554 4th St, Los Angeles, CA 90001" +270376,AA Batteries (4-pack),1,3.84,10/20/19 20:44,"493 5th St, San Francisco, CA 94016" +270377,AA Batteries (4-pack),5,3.84,10/26/19 17:00,"91 Sunset St, San Francisco, CA 94016" +270378,27in 4K Gaming Monitor,1,389.99,10/11/19 18:56,"359 Main St, Austin, TX 73301" +270379,Lightning Charging Cable,1,14.95,10/22/19 13:58,"601 10th St, San Francisco, CA 94016" +270380,Wired Headphones,1,11.99,10/13/19 14:08,"38 14th St, Austin, TX 73301" +270381,Flatscreen TV,1,300,10/21/19 14:41,"581 Main St, Atlanta, GA 30301" +270382,Bose SoundSport Headphones,1,99.99,10/13/19 09:13,"120 Walnut St, Boston, MA 02215" +270383,Wired Headphones,1,11.99,10/30/19 09:13,"962 Spruce St, Atlanta, GA 30301" +270384,Wired Headphones,1,11.99,10/20/19 18:57,"815 Sunset St, San Francisco, CA 94016" +270385,AAA Batteries (4-pack),2,2.99,10/08/19 22:34,"719 Wilson St, Los Angeles, CA 90001" +270386,27in FHD Monitor,1,149.99,10/01/19 11:18,"917 Wilson St, Seattle, WA 98101" +270387,Bose SoundSport Headphones,1,99.99,10/01/19 19:08,"707 Johnson St, Los Angeles, CA 90001" +270388,Lightning Charging Cable,1,14.95,10/18/19 15:17,"611 Pine St, Boston, MA 02215" +270389,Lightning Charging Cable,1,14.95,10/25/19 12:47,"163 North St, Los Angeles, CA 90001" +270390,Wired Headphones,1,11.99,10/12/19 11:46,"728 13th St, Dallas, TX 75001" +270391,AA Batteries (4-pack),1,3.84,10/30/19 12:32,"701 5th St, Dallas, TX 75001" +270392,AAA Batteries (4-pack),1,2.99,10/31/19 09:45,"88 Forest St, Boston, MA 02215" +270393,Bose SoundSport Headphones,1,99.99,10/13/19 18:06,"622 Lakeview St, Atlanta, GA 30301" +270394,Apple Airpods Headphones,1,150,10/16/19 20:03,"879 10th St, Boston, MA 02215" +270395,USB-C Charging Cable,1,11.95,10/01/19 22:40,"453 Washington St, San Francisco, CA 94016" +270396,AA Batteries (4-pack),1,3.84,10/22/19 10:42,"102 Elm St, Dallas, TX 75001" +270397,Bose SoundSport Headphones,1,99.99,10/13/19 17:21,"916 Lake St, New York City, NY 10001" +270398,27in 4K Gaming Monitor,1,389.99,10/26/19 21:48,"390 11th St, Seattle, WA 98101" +270399,34in Ultrawide Monitor,1,379.99,10/19/19 14:44,"89 Church St, Los Angeles, CA 90001" +270400,AAA Batteries (4-pack),1,2.99,10/22/19 23:46,"334 9th St, Atlanta, GA 30301" +270401,AAA Batteries (4-pack),1,2.99,10/25/19 17:57,"162 Center St, Los Angeles, CA 90001" +270402,AAA Batteries (4-pack),2,2.99,10/13/19 07:50,"1 Willow St, Dallas, TX 75001" +270403,AAA Batteries (4-pack),1,2.99,10/07/19 13:50,"793 7th St, San Francisco, CA 94016" +270404,20in Monitor,1,109.99,10/04/19 16:00,"600 Walnut St, San Francisco, CA 94016" +270405,Lightning Charging Cable,1,14.95,10/19/19 19:37,"911 Lake St, Los Angeles, CA 90001" +270406,AAA Batteries (4-pack),3,2.99,10/16/19 02:04,"963 8th St, Austin, TX 73301" +270407,AAA Batteries (4-pack),3,2.99,10/04/19 12:20,"848 Church St, Portland, OR 97035" +270408,Bose SoundSport Headphones,1,99.99,10/12/19 13:07,"74 Church St, Atlanta, GA 30301" +270409,AA Batteries (4-pack),1,3.84,10/03/19 14:52,"301 2nd St, San Francisco, CA 94016" +270410,Lightning Charging Cable,1,14.95,10/29/19 09:57,"212 Wilson St, San Francisco, CA 94016" +270411,Apple Airpods Headphones,1,150,10/02/19 08:53,"546 West St, Seattle, WA 98101" +270412,AA Batteries (4-pack),2,3.84,10/20/19 18:14,"400 5th St, San Francisco, CA 94016" +270413,Bose SoundSport Headphones,1,99.99,10/22/19 11:53,"818 Hill St, San Francisco, CA 94016" +270414,Wired Headphones,1,11.99,10/04/19 12:17,"443 4th St, Los Angeles, CA 90001" +270415,Lightning Charging Cable,1,14.95,10/16/19 21:24,"148 1st St, Seattle, WA 98101" +270416,Wired Headphones,1,11.99,10/24/19 20:04,"324 Chestnut St, San Francisco, CA 94016" +270417,Flatscreen TV,1,300,10/26/19 13:09,"623 Sunset St, Los Angeles, CA 90001" +270418,ThinkPad Laptop,1,999.99,10/03/19 11:59,"808 West St, Seattle, WA 98101" +270419,34in Ultrawide Monitor,1,379.99,10/27/19 13:31,"565 West St, Boston, MA 02215" +270420,Wired Headphones,1,11.99,10/30/19 17:27,"175 River St, New York City, NY 10001" +270421,Apple Airpods Headphones,1,150,10/10/19 11:49,"622 Maple St, New York City, NY 10001" +270422,Wired Headphones,1,11.99,10/23/19 22:08,"41 14th St, Los Angeles, CA 90001" +270423,AA Batteries (4-pack),1,3.84,10/26/19 13:43,"492 1st St, Portland, OR 97035" +270424,27in FHD Monitor,1,149.99,10/27/19 11:21,"137 Washington St, Boston, MA 02215" +270425,Google Phone,1,600,10/26/19 20:20,"951 Pine St, Boston, MA 02215" +270425,USB-C Charging Cable,1,11.95,10/26/19 20:20,"951 Pine St, Boston, MA 02215" +270426,34in Ultrawide Monitor,1,379.99,10/15/19 21:45,"939 1st St, San Francisco, CA 94016" +270427,AA Batteries (4-pack),1,3.84,10/02/19 14:01,"11 10th St, New York City, NY 10001" +270428,Wired Headphones,1,11.99,10/18/19 23:10,"359 Jefferson St, San Francisco, CA 94016" +270429,AA Batteries (4-pack),1,3.84,10/13/19 23:00,"566 Lake St, San Francisco, CA 94016" +270430,Wired Headphones,1,11.99,10/28/19 22:29,"712 9th St, Dallas, TX 75001" +270431,27in FHD Monitor,1,149.99,10/29/19 13:22,"671 1st St, San Francisco, CA 94016" +270432,USB-C Charging Cable,1,11.95,10/24/19 02:49,"738 Ridge St, Atlanta, GA 30301" +270433,Apple Airpods Headphones,1,150,10/21/19 12:41,"164 South St, San Francisco, CA 94016" +270434,USB-C Charging Cable,1,11.95,10/21/19 15:44,"130 Jackson St, Atlanta, GA 30301" +270435,27in FHD Monitor,1,149.99,10/15/19 10:42,"619 Hill St, Austin, TX 73301" +270436,20in Monitor,1,109.99,10/27/19 08:01,"937 Adams St, Boston, MA 02215" +270437,Apple Airpods Headphones,1,150,10/04/19 13:39,"343 14th St, Dallas, TX 75001" +270438,Lightning Charging Cable,1,14.95,10/12/19 14:53,"793 Washington St, Boston, MA 02215" +270439,Apple Airpods Headphones,1,150,10/27/19 16:44,"403 12th St, New York City, NY 10001" +270440,20in Monitor,1,109.99,10/08/19 14:57,"305 Park St, Seattle, WA 98101" +270441,Bose SoundSport Headphones,1,99.99,10/15/19 08:17,"61 Main St, Seattle, WA 98101" +270442,Wired Headphones,1,11.99,10/12/19 11:17,"835 13th St, Boston, MA 02215" +270443,ThinkPad Laptop,1,999.99,10/14/19 13:00,"533 Lakeview St, Seattle, WA 98101" +270444,Lightning Charging Cable,1,14.95,10/14/19 14:46,"763 Sunset St, Los Angeles, CA 90001" +270445,Vareebadd Phone,1,400,10/31/19 12:41,"537 2nd St, San Francisco, CA 94016" +270446,Bose SoundSport Headphones,1,99.99,10/27/19 21:34,"669 11th St, Portland, OR 97035" +270447,Wired Headphones,1,11.99,10/15/19 19:09,"345 2nd St, Dallas, TX 75001" +270448,AAA Batteries (4-pack),1,2.99,10/07/19 18:43,"325 River St, Dallas, TX 75001" +270449,Wired Headphones,1,11.99,10/08/19 12:26,"251 Wilson St, New York City, NY 10001" +270450,Wired Headphones,1,11.99,10/01/19 11:41,"108 Adams St, Los Angeles, CA 90001" +270451,USB-C Charging Cable,1,11.95,10/06/19 11:00,"865 Sunset St, San Francisco, CA 94016" +270452,20in Monitor,1,109.99,10/11/19 20:28,"423 Willow St, San Francisco, CA 94016" +270453,Wired Headphones,1,11.99,10/02/19 13:36,"90 South St, San Francisco, CA 94016" +270454,27in 4K Gaming Monitor,1,389.99,10/22/19 15:31,"965 Willow St, Dallas, TX 75001" +270455,Flatscreen TV,1,300,10/14/19 21:12,"342 Chestnut St, Los Angeles, CA 90001" +270456,AAA Batteries (4-pack),3,2.99,10/25/19 16:57,"522 14th St, Portland, ME 04101" +270457,AAA Batteries (4-pack),1,2.99,10/24/19 14:02,"77 North St, Portland, OR 97035" +270458,AAA Batteries (4-pack),3,2.99,10/09/19 09:11,"667 Highland St, Dallas, TX 75001" +270459,AAA Batteries (4-pack),1,2.99,10/21/19 21:35,"877 5th St, Portland, OR 97035" +270460,Lightning Charging Cable,1,14.95,10/22/19 09:44,"197 Center St, Dallas, TX 75001" +270461,Apple Airpods Headphones,1,150,10/07/19 21:20,"417 Elm St, Seattle, WA 98101" +270462,AA Batteries (4-pack),1,3.84,10/18/19 18:23,"275 Meadow St, Boston, MA 02215" +270463,Apple Airpods Headphones,1,150,10/03/19 08:54,"36 Hickory St, Boston, MA 02215" +270464,AAA Batteries (4-pack),2,2.99,10/05/19 14:00,"447 8th St, Boston, MA 02215" +270465,USB-C Charging Cable,1,11.95,10/31/19 14:07,"170 Sunset St, San Francisco, CA 94016" +270466,Wired Headphones,1,11.99,10/29/19 15:04,"33 Lincoln St, Atlanta, GA 30301" +270467,Apple Airpods Headphones,1,150,10/06/19 05:53,"659 12th St, San Francisco, CA 94016" +270468,Lightning Charging Cable,1,14.95,10/16/19 04:57,"539 10th St, San Francisco, CA 94016" +270469,AAA Batteries (4-pack),1,2.99,10/20/19 15:29,"140 14th St, Los Angeles, CA 90001" +270470,27in 4K Gaming Monitor,1,389.99,10/02/19 16:34,"422 South St, Austin, TX 73301" +270471,USB-C Charging Cable,1,11.95,10/12/19 08:11,"544 Dogwood St, Dallas, TX 75001" +270472,34in Ultrawide Monitor,1,379.99,10/30/19 18:54,"148 Madison St, Portland, OR 97035" +270473,AA Batteries (4-pack),1,3.84,10/19/19 11:08,"595 Hickory St, Austin, TX 73301" +270474,USB-C Charging Cable,2,11.95,10/26/19 11:12,"205 North St, Austin, TX 73301" +270475,Lightning Charging Cable,1,14.95,10/05/19 16:38,"119 Jackson St, San Francisco, CA 94016" +270476,Wired Headphones,1,11.99,10/29/19 19:25,"898 Main St, San Francisco, CA 94016" +270477,Apple Airpods Headphones,1,150,10/05/19 16:39,"870 Spruce St, New York City, NY 10001" +270478,AA Batteries (4-pack),1,3.84,10/27/19 14:39,"304 Highland St, Boston, MA 02215" +270479,AAA Batteries (4-pack),1,2.99,10/02/19 13:37,"959 Jackson St, Atlanta, GA 30301" +270480,AAA Batteries (4-pack),1,2.99,10/04/19 12:02,"781 Spruce St, Austin, TX 73301" +270481,Vareebadd Phone,1,400,10/01/19 10:04,"662 Cedar St, Atlanta, GA 30301" +270482,AAA Batteries (4-pack),1,2.99,10/08/19 20:20,"654 Forest St, Los Angeles, CA 90001" +270483,Lightning Charging Cable,1,14.95,10/25/19 10:25,"863 South St, Austin, TX 73301" +270484,27in FHD Monitor,1,149.99,10/06/19 10:38,"958 Lakeview St, New York City, NY 10001" +270485,AAA Batteries (4-pack),2,2.99,10/28/19 16:28,"271 Hickory St, New York City, NY 10001" +270486,USB-C Charging Cable,1,11.95,10/08/19 13:56,"394 Madison St, Dallas, TX 75001" +270487,Lightning Charging Cable,1,14.95,10/30/19 13:10,"282 1st St, Boston, MA 02215" +270488,Flatscreen TV,1,300,10/31/19 23:42,"926 Cherry St, Dallas, TX 75001" +270489,Lightning Charging Cable,1,14.95,10/27/19 09:39,"136 River St, Seattle, WA 98101" +270490,AA Batteries (4-pack),1,3.84,10/09/19 13:24,"853 8th St, Los Angeles, CA 90001" +270491,Bose SoundSport Headphones,1,99.99,10/15/19 09:10,"110 Church St, Seattle, WA 98101" +270491,Vareebadd Phone,1,400,10/15/19 09:10,"110 Church St, Seattle, WA 98101" +270492,USB-C Charging Cable,1,11.95,10/24/19 13:21,"202 Johnson St, Los Angeles, CA 90001" +270493,AAA Batteries (4-pack),2,2.99,10/07/19 07:17,"304 14th St, San Francisco, CA 94016" +270494,Wired Headphones,1,11.99,10/02/19 19:18,"884 Main St, Los Angeles, CA 90001" +270495,ThinkPad Laptop,1,999.99,10/02/19 23:37,"236 Cedar St, Los Angeles, CA 90001" +270496,Flatscreen TV,1,300,10/08/19 19:34,"194 Adams St, San Francisco, CA 94016" +270497,Wired Headphones,1,11.99,10/15/19 14:19,"390 7th St, San Francisco, CA 94016" +270498,Lightning Charging Cable,1,14.95,10/22/19 10:16,"450 Washington St, New York City, NY 10001" +270499,Bose SoundSport Headphones,1,99.99,10/01/19 11:39,"633 Johnson St, Dallas, TX 75001" +270500,27in FHD Monitor,1,149.99,10/31/19 11:35,"214 Park St, Los Angeles, CA 90001" +270500,Lightning Charging Cable,1,14.95,10/31/19 11:35,"214 Park St, Los Angeles, CA 90001" +270501,Macbook Pro Laptop,1,1700,10/09/19 16:53,"650 Cherry St, Boston, MA 02215" +270502,ThinkPad Laptop,1,999.99,10/08/19 13:52,"468 6th St, Boston, MA 02215" +270503,AAA Batteries (4-pack),2,2.99,10/18/19 22:27,"963 Jackson St, New York City, NY 10001" +270504,Apple Airpods Headphones,1,150,10/31/19 06:48,"51 Highland St, New York City, NY 10001" +270505,AAA Batteries (4-pack),3,2.99,10/30/19 19:39,"799 Wilson St, Atlanta, GA 30301" +270506,Apple Airpods Headphones,1,150,10/17/19 23:49,"587 14th St, Seattle, WA 98101" +270507,Lightning Charging Cable,1,14.95,10/04/19 19:29,"926 Jefferson St, Los Angeles, CA 90001" +270508,AA Batteries (4-pack),2,3.84,10/10/19 20:19,"203 Lake St, Los Angeles, CA 90001" +270509,Apple Airpods Headphones,1,150,10/16/19 21:51,"884 Elm St, Los Angeles, CA 90001" +270510,Macbook Pro Laptop,1,1700,10/26/19 20:05,"183 Maple St, San Francisco, CA 94016" +270511,USB-C Charging Cable,1,11.95,10/16/19 14:44,"817 2nd St, Seattle, WA 98101" +270512,AA Batteries (4-pack),1,3.84,10/21/19 01:20,"825 9th St, Austin, TX 73301" +270513,USB-C Charging Cable,1,11.95,10/20/19 23:09,"814 Cedar St, Seattle, WA 98101" +270514,Wired Headphones,1,11.99,10/02/19 16:09,"408 Willow St, New York City, NY 10001" +270515,AA Batteries (4-pack),1,3.84,10/26/19 19:59,"436 Park St, Seattle, WA 98101" +270516,Flatscreen TV,1,300,10/19/19 20:37,"598 Willow St, San Francisco, CA 94016" +270517,AAA Batteries (4-pack),1,2.99,10/21/19 22:10,"557 South St, Boston, MA 02215" +270518,Bose SoundSport Headphones,1,99.99,10/07/19 15:05,"553 Cedar St, Boston, MA 02215" +270519,AAA Batteries (4-pack),1,2.99,10/03/19 15:44,"818 Willow St, New York City, NY 10001" +270520,Bose SoundSport Headphones,1,99.99,10/05/19 18:28,"584 River St, Seattle, WA 98101" +270521,AA Batteries (4-pack),1,3.84,10/03/19 22:06,"488 Cherry St, Portland, OR 97035" +270522,Vareebadd Phone,1,400,10/07/19 00:43,"199 7th St, San Francisco, CA 94016" +270523,AA Batteries (4-pack),1,3.84,10/29/19 11:21,"128 Lincoln St, San Francisco, CA 94016" +270524,AAA Batteries (4-pack),1,2.99,10/07/19 20:57,"10 Lake St, Portland, OR 97035" +270525,Wired Headphones,1,11.99,10/24/19 14:11,"684 Church St, Los Angeles, CA 90001" +270526,Wired Headphones,1,11.99,10/05/19 12:11,"528 North St, New York City, NY 10001" +270527,Apple Airpods Headphones,1,150,10/25/19 12:24,"159 4th St, San Francisco, CA 94016" +270528,Macbook Pro Laptop,1,1700,10/17/19 14:06,"832 Maple St, Los Angeles, CA 90001" +270529,AAA Batteries (4-pack),1,2.99,10/03/19 13:16,"466 West St, Los Angeles, CA 90001" +270530,USB-C Charging Cable,1,11.95,10/24/19 17:35,"691 West St, Seattle, WA 98101" +270531,LG Dryer,1,600.0,10/08/19 20:15,"880 West St, Boston, MA 02215" +270532,Flatscreen TV,1,300,10/05/19 11:13,"26 Maple St, New York City, NY 10001" +270533,AA Batteries (4-pack),2,3.84,10/13/19 10:38,"126 Walnut St, Seattle, WA 98101" +270534,Bose SoundSport Headphones,1,99.99,10/02/19 15:11,"448 Church St, Atlanta, GA 30301" +270535,Apple Airpods Headphones,1,150,10/14/19 20:38,"820 11th St, New York City, NY 10001" +270536,USB-C Charging Cable,1,11.95,10/31/19 12:00,"394 Willow St, San Francisco, CA 94016" +270537,AAA Batteries (4-pack),1,2.99,10/06/19 19:36,"833 Meadow St, New York City, NY 10001" +270538,Bose SoundSport Headphones,1,99.99,10/09/19 11:32,"401 Ridge St, San Francisco, CA 94016" +270539,Lightning Charging Cable,1,14.95,10/31/19 22:08,"466 2nd St, San Francisco, CA 94016" +270540,USB-C Charging Cable,1,11.95,10/11/19 20:54,"636 Dogwood St, San Francisco, CA 94016" +270541,34in Ultrawide Monitor,1,379.99,10/17/19 19:29,"2 Walnut St, San Francisco, CA 94016" +270542,Apple Airpods Headphones,1,150,10/22/19 10:49,"110 7th St, San Francisco, CA 94016" +270543,Apple Airpods Headphones,1,150,10/21/19 13:33,"629 Sunset St, Seattle, WA 98101" +270544,AA Batteries (4-pack),1,3.84,10/29/19 16:21,"115 14th St, New York City, NY 10001" +270545,Lightning Charging Cable,2,14.95,10/30/19 19:08,"544 Elm St, Boston, MA 02215" +270546,AAA Batteries (4-pack),1,2.99,10/17/19 10:19,"36 South St, San Francisco, CA 94016" +270547,AAA Batteries (4-pack),1,2.99,10/31/19 22:10,"940 South St, Seattle, WA 98101" +270547,Lightning Charging Cable,1,14.95,10/31/19 22:10,"940 South St, Seattle, WA 98101" +270548,AAA Batteries (4-pack),1,2.99,10/07/19 17:24,"407 Walnut St, Seattle, WA 98101" +270549,AA Batteries (4-pack),1,3.84,10/29/19 19:53,"599 7th St, Portland, OR 97035" +270550,Bose SoundSport Headphones,1,99.99,10/10/19 14:39,"780 Cedar St, San Francisco, CA 94016" +270551,34in Ultrawide Monitor,1,379.99,10/21/19 22:18,"687 Cherry St, San Francisco, CA 94016" +270552,AAA Batteries (4-pack),1,2.99,10/25/19 14:09,"921 Lake St, New York City, NY 10001" +270553,34in Ultrawide Monitor,1,379.99,10/20/19 14:26,"751 4th St, Dallas, TX 75001" +270554,Macbook Pro Laptop,1,1700,10/12/19 07:56,"126 12th St, Los Angeles, CA 90001" +270555,USB-C Charging Cable,2,11.95,10/14/19 00:32,"791 11th St, Seattle, WA 98101" +270556,Wired Headphones,1,11.99,10/08/19 14:50,"106 Lake St, Los Angeles, CA 90001" +270557,AA Batteries (4-pack),1,3.84,10/30/19 11:07,"705 Forest St, Seattle, WA 98101" +270558,AA Batteries (4-pack),1,3.84,10/27/19 22:34,"183 Jefferson St, Portland, OR 97035" +270559,Apple Airpods Headphones,1,150,10/09/19 20:12,"230 West St, Dallas, TX 75001" +270560,27in 4K Gaming Monitor,1,389.99,10/02/19 17:45,"338 Washington St, Seattle, WA 98101" +270561,Macbook Pro Laptop,1,1700,10/03/19 21:52,"665 Highland St, Seattle, WA 98101" +270562,AAA Batteries (4-pack),1,2.99,10/30/19 16:12,"713 1st St, Seattle, WA 98101" +270563,Lightning Charging Cable,1,14.95,10/01/19 08:56,"360 Cedar St, Portland, OR 97035" +270564,AAA Batteries (4-pack),1,2.99,10/11/19 11:06,"282 1st St, Austin, TX 73301" +270565,AAA Batteries (4-pack),1,2.99,10/12/19 13:07,"382 Johnson St, Seattle, WA 98101" +270566,Wired Headphones,1,11.99,10/18/19 15:43,"584 Washington St, Los Angeles, CA 90001" +270567,27in FHD Monitor,1,149.99,10/29/19 15:48,"842 Cedar St, Portland, OR 97035" +270568,20in Monitor,1,109.99,10/22/19 11:55,"943 Lakeview St, Atlanta, GA 30301" +270569,Google Phone,1,600,10/12/19 21:46,"497 14th St, Los Angeles, CA 90001" +270570,ThinkPad Laptop,1,999.99,10/18/19 12:45,"713 Main St, San Francisco, CA 94016" +270571,Lightning Charging Cable,1,14.95,10/09/19 14:39,"72 Park St, Boston, MA 02215" +270572,27in 4K Gaming Monitor,1,389.99,10/07/19 10:52,"549 11th St, Dallas, TX 75001" +270573,Apple Airpods Headphones,1,150,10/15/19 12:39,"203 Walnut St, New York City, NY 10001" +270574,27in FHD Monitor,1,149.99,10/26/19 11:21,"844 West St, Austin, TX 73301" +270575,USB-C Charging Cable,1,11.95,10/26/19 21:59,"705 Sunset St, Los Angeles, CA 90001" +270576,Bose SoundSport Headphones,1,99.99,10/25/19 13:22,"596 7th St, San Francisco, CA 94016" +270577,AAA Batteries (4-pack),1,2.99,10/18/19 15:50,"9 4th St, San Francisco, CA 94016" +270578,Macbook Pro Laptop,1,1700,10/14/19 11:30,"108 Forest St, Boston, MA 02215" +270579,USB-C Charging Cable,2,11.95,10/15/19 20:52,"926 Pine St, Austin, TX 73301" +270580,AAA Batteries (4-pack),1,2.99,10/31/19 12:00,"842 1st St, San Francisco, CA 94016" +270581,USB-C Charging Cable,1,11.95,10/28/19 14:44,"434 12th St, Portland, OR 97035" +270582,USB-C Charging Cable,1,11.95,10/19/19 08:39,"593 13th St, New York City, NY 10001" +270583,34in Ultrawide Monitor,1,379.99,10/21/19 05:36,"464 Wilson St, San Francisco, CA 94016" +270584,LG Dryer,1,600.0,10/09/19 11:37,"938 7th St, San Francisco, CA 94016" +270585,AA Batteries (4-pack),1,3.84,10/06/19 14:37,"102 Johnson St, Boston, MA 02215" +270586,Apple Airpods Headphones,1,150,10/30/19 22:35,"948 Elm St, Boston, MA 02215" +270587,Apple Airpods Headphones,1,150,10/08/19 09:19,"839 Center St, Dallas, TX 75001" +270588,USB-C Charging Cable,1,11.95,10/11/19 23:36,"807 13th St, Seattle, WA 98101" +270589,Bose SoundSport Headphones,1,99.99,10/25/19 10:02,"162 7th St, Los Angeles, CA 90001" +270590,AA Batteries (4-pack),1,3.84,10/29/19 10:30,"701 West St, Seattle, WA 98101" +270591,Wired Headphones,1,11.99,10/04/19 16:37,"664 South St, Portland, OR 97035" +270592,Apple Airpods Headphones,1,150,10/21/19 16:07,"252 Walnut St, Dallas, TX 75001" +270593,Bose SoundSport Headphones,1,99.99,10/09/19 23:00,"764 Cedar St, Los Angeles, CA 90001" +270594,Bose SoundSport Headphones,1,99.99,10/28/19 19:21,"284 Jefferson St, Seattle, WA 98101" +270595,Bose SoundSport Headphones,1,99.99,10/05/19 22:17,"281 Maple St, New York City, NY 10001" +270596,AA Batteries (4-pack),1,3.84,10/26/19 17:55,"356 10th St, San Francisco, CA 94016" +270596,USB-C Charging Cable,1,11.95,10/26/19 17:55,"356 10th St, San Francisco, CA 94016" +270597,Macbook Pro Laptop,1,1700,10/20/19 22:41,"644 River St, Atlanta, GA 30301" +270598,USB-C Charging Cable,1,11.95,10/09/19 07:01,"114 Church St, San Francisco, CA 94016" +270599,Apple Airpods Headphones,1,150,10/03/19 22:51,"932 9th St, Boston, MA 02215" +270600,AA Batteries (4-pack),1,3.84,10/10/19 19:38,"731 Jefferson St, Boston, MA 02215" +270601,Lightning Charging Cable,1,14.95,10/09/19 20:11,"546 Center St, Portland, OR 97035" +270602,AAA Batteries (4-pack),2,2.99,10/19/19 20:04,"491 Chestnut St, Austin, TX 73301" +270603,ThinkPad Laptop,1,999.99,10/19/19 22:44,"966 Johnson St, Portland, OR 97035" +270604,USB-C Charging Cable,1,11.95,10/29/19 18:04,"893 Forest St, Portland, OR 97035" +270605,Wired Headphones,1,11.99,10/29/19 17:06,"976 8th St, Dallas, TX 75001" +270606,ThinkPad Laptop,1,999.99,10/07/19 11:52,"599 Maple St, Portland, OR 97035" +270607,AAA Batteries (4-pack),1,2.99,10/31/19 17:27,"212 North St, San Francisco, CA 94016" +270608,iPhone,1,700,10/20/19 10:44,"128 Main St, San Francisco, CA 94016" +270609,USB-C Charging Cable,1,11.95,10/31/19 12:01,"727 Park St, Portland, OR 97035" +270610,Apple Airpods Headphones,1,150,10/31/19 14:52,"251 Hill St, Boston, MA 02215" +270611,Wired Headphones,2,11.99,10/08/19 14:01,"164 Dogwood St, Los Angeles, CA 90001" +270612,ThinkPad Laptop,1,999.99,10/06/19 00:24,"670 Forest St, Dallas, TX 75001" +270613,27in FHD Monitor,1,149.99,10/29/19 16:04,"893 Lakeview St, Boston, MA 02215" +270614,Lightning Charging Cable,1,14.95,10/03/19 22:38,"780 13th St, San Francisco, CA 94016" +270615,USB-C Charging Cable,2,11.95,10/28/19 16:23,"659 Main St, San Francisco, CA 94016" +270616,AAA Batteries (4-pack),2,2.99,10/07/19 20:04,"467 Hill St, Los Angeles, CA 90001" +270617,27in FHD Monitor,1,149.99,10/30/19 14:59,"556 Walnut St, Portland, ME 04101" +270618,Lightning Charging Cable,1,14.95,10/31/19 13:58,"392 Elm St, Los Angeles, CA 90001" +270619,AA Batteries (4-pack),2,3.84,10/13/19 20:44,"380 River St, Seattle, WA 98101" +270620,Lightning Charging Cable,1,14.95,10/14/19 08:50,"113 Maple St, Boston, MA 02215" +270621,AA Batteries (4-pack),2,3.84,10/15/19 09:58,"983 River St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +270622,Bose SoundSport Headphones,1,99.99,10/31/19 07:54,"45 Hickory St, New York City, NY 10001" +270623,Lightning Charging Cable,1,14.95,10/15/19 13:27,"227 Sunset St, San Francisco, CA 94016" +270624,ThinkPad Laptop,1,999.99,10/09/19 08:19,"159 10th St, Atlanta, GA 30301" +270625,Google Phone,1,600,10/11/19 16:55,"803 Ridge St, Dallas, TX 75001" +270626,Apple Airpods Headphones,1,150,10/01/19 17:41,"872 Washington St, Portland, OR 97035" +270627,Wired Headphones,2,11.99,10/09/19 00:22,"947 8th St, Boston, MA 02215" +270628,USB-C Charging Cable,1,11.95,10/21/19 12:59,"719 12th St, New York City, NY 10001" +270629,27in 4K Gaming Monitor,1,389.99,10/06/19 09:01,"774 4th St, Boston, MA 02215" +270630,Bose SoundSport Headphones,1,99.99,10/09/19 15:09,"270 Meadow St, Austin, TX 73301" +270631,34in Ultrawide Monitor,1,379.99,10/26/19 12:19,"317 14th St, Los Angeles, CA 90001" +270632,Apple Airpods Headphones,1,150,10/29/19 21:29,"976 Washington St, Austin, TX 73301" +270633,Bose SoundSport Headphones,1,99.99,10/17/19 21:19,"977 4th St, Atlanta, GA 30301" +270634,Bose SoundSport Headphones,1,99.99,10/23/19 19:13,"260 Spruce St, San Francisco, CA 94016" +270635,Lightning Charging Cable,1,14.95,10/23/19 11:33,"155 Forest St, Atlanta, GA 30301" +270636,Google Phone,1,600,10/09/19 06:39,"795 7th St, Los Angeles, CA 90001" +270637,AA Batteries (4-pack),2,3.84,10/18/19 23:47,"256 West St, Portland, OR 97035" +270638,Google Phone,1,600,10/24/19 12:38,"142 12th St, Dallas, TX 75001" +270639,AAA Batteries (4-pack),1,2.99,10/25/19 14:17,"890 Center St, San Francisco, CA 94016" +270640,27in 4K Gaming Monitor,1,389.99,10/13/19 17:24,"855 5th St, San Francisco, CA 94016" +270641,Wired Headphones,1,11.99,10/14/19 09:56,"911 Pine St, Seattle, WA 98101" +270642,Lightning Charging Cable,1,14.95,10/11/19 20:11,"263 Willow St, New York City, NY 10001" +270643,AA Batteries (4-pack),1,3.84,10/04/19 20:27,"603 Adams St, Atlanta, GA 30301" +270644,USB-C Charging Cable,1,11.95,10/08/19 18:47,"472 Wilson St, San Francisco, CA 94016" +270644,LG Washing Machine,1,600.0,10/08/19 18:47,"472 Wilson St, San Francisco, CA 94016" +270645,AAA Batteries (4-pack),1,2.99,10/01/19 13:42,"839 Jefferson St, New York City, NY 10001" +270646,AAA Batteries (4-pack),1,2.99,10/11/19 12:01,"601 Elm St, Los Angeles, CA 90001" +270647,Apple Airpods Headphones,1,150,10/20/19 20:33,"540 Highland St, San Francisco, CA 94016" +270648,ThinkPad Laptop,1,999.99,10/09/19 15:59,"328 River St, San Francisco, CA 94016" +270649,27in 4K Gaming Monitor,1,389.99,10/29/19 10:20,"334 Maple St, Los Angeles, CA 90001" +270650,AA Batteries (4-pack),1,3.84,10/22/19 17:28,"691 Johnson St, Atlanta, GA 30301" +270651,Wired Headphones,1,11.99,10/28/19 21:48,"636 Lake St, Boston, MA 02215" +270652,USB-C Charging Cable,1,11.95,10/05/19 17:08,"16 Hickory St, San Francisco, CA 94016" +270653,Flatscreen TV,1,300,10/29/19 16:07,"817 1st St, San Francisco, CA 94016" +270654,LG Washing Machine,1,600.0,10/30/19 15:48,"572 Hill St, Portland, OR 97035" +270655,Wired Headphones,1,11.99,10/08/19 21:37,"794 2nd St, Los Angeles, CA 90001" +270656,Apple Airpods Headphones,1,150,10/10/19 20:19,"205 Johnson St, New York City, NY 10001" +270657,iPhone,1,700,10/18/19 12:21,"261 12th St, San Francisco, CA 94016" +270657,Lightning Charging Cable,1,14.95,10/18/19 12:21,"261 12th St, San Francisco, CA 94016" +270658,ThinkPad Laptop,1,999.99,10/29/19 18:04,"499 6th St, Los Angeles, CA 90001" +270659,AA Batteries (4-pack),1,3.84,10/19/19 12:12,"299 Meadow St, Dallas, TX 75001" +270660,LG Dryer,1,600.0,10/03/19 00:13,"688 Madison St, Los Angeles, CA 90001" +270661,Apple Airpods Headphones,1,150,10/09/19 16:11,"584 8th St, Austin, TX 73301" +270662,Lightning Charging Cable,2,14.95,10/01/19 20:16,"944 Maple St, Boston, MA 02215" +270663,27in FHD Monitor,1,149.99,10/19/19 07:52,"697 6th St, San Francisco, CA 94016" +270664,Lightning Charging Cable,1,14.95,10/22/19 18:54,"183 River St, Atlanta, GA 30301" +270665,Wired Headphones,1,11.99,10/03/19 19:28,"731 Ridge St, New York City, NY 10001" +270666,AAA Batteries (4-pack),1,2.99,10/26/19 20:42,"158 Dogwood St, New York City, NY 10001" +270667,27in FHD Monitor,1,149.99,10/27/19 09:18,"441 Sunset St, San Francisco, CA 94016" +270668,34in Ultrawide Monitor,1,379.99,10/11/19 14:40,"595 Walnut St, Dallas, TX 75001" +270669,iPhone,1,700,10/24/19 14:21,"337 Pine St, San Francisco, CA 94016" +270669,iPhone,1,700,10/24/19 14:21,"337 Pine St, San Francisco, CA 94016" +270670,20in Monitor,1,109.99,10/14/19 09:26,"413 South St, Dallas, TX 75001" +270671,Apple Airpods Headphones,1,150,10/06/19 15:53,"690 Hickory St, Portland, OR 97035" +270672,ThinkPad Laptop,1,999.99,10/06/19 12:28,"713 South St, Atlanta, GA 30301" +270673,USB-C Charging Cable,1,11.95,10/13/19 12:44,"565 Elm St, Dallas, TX 75001" +270673,USB-C Charging Cable,2,11.95,10/13/19 12:44,"565 Elm St, Dallas, TX 75001" +270674,Bose SoundSport Headphones,1,99.99,10/27/19 19:46,"512 8th St, Dallas, TX 75001" +270675,27in FHD Monitor,1,149.99,10/16/19 20:24,"600 Madison St, Los Angeles, CA 90001" +270676,AAA Batteries (4-pack),1,2.99,10/15/19 17:24,"110 Johnson St, Dallas, TX 75001" +270677,AA Batteries (4-pack),1,3.84,10/13/19 20:57,"792 River St, New York City, NY 10001" +270678,USB-C Charging Cable,1,11.95,10/27/19 20:03,"727 Pine St, Dallas, TX 75001" +270679,USB-C Charging Cable,1,11.95,10/17/19 08:06,"433 River St, Boston, MA 02215" +270680,Wired Headphones,1,11.99,10/25/19 21:57,"750 South St, Boston, MA 02215" +270681,34in Ultrawide Monitor,1,379.99,10/30/19 08:20,"289 Elm St, San Francisco, CA 94016" +270682,Wired Headphones,1,11.99,10/11/19 15:43,"748 13th St, Seattle, WA 98101" +270683,34in Ultrawide Monitor,1,379.99,10/18/19 12:12,"126 13th St, Los Angeles, CA 90001" +270684,AA Batteries (4-pack),1,3.84,10/27/19 09:49,"959 Hill St, Seattle, WA 98101" +270685,Apple Airpods Headphones,1,150,10/08/19 12:31,"733 2nd St, Dallas, TX 75001" +270686,Bose SoundSport Headphones,1,99.99,10/28/19 16:51,"51 11th St, Seattle, WA 98101" +270687,USB-C Charging Cable,1,11.95,10/22/19 21:35,"966 Spruce St, Portland, OR 97035" +270688,AAA Batteries (4-pack),1,2.99,10/02/19 18:35,"958 Pine St, Seattle, WA 98101" +270689,AAA Batteries (4-pack),2,2.99,10/31/19 12:42,"275 Maple St, San Francisco, CA 94016" +270690,34in Ultrawide Monitor,1,379.99,10/26/19 21:12,"40 North St, New York City, NY 10001" +270691,Wired Headphones,1,11.99,10/21/19 02:24,"660 Elm St, San Francisco, CA 94016" +270692,AA Batteries (4-pack),1,3.84,10/28/19 15:18,"610 Pine St, Los Angeles, CA 90001" +270693,Macbook Pro Laptop,1,1700,10/27/19 08:41,"495 Lake St, San Francisco, CA 94016" +270694,Flatscreen TV,1,300,10/27/19 09:35,"186 Adams St, New York City, NY 10001" +270695,AAA Batteries (4-pack),1,2.99,10/23/19 05:20,"899 9th St, Seattle, WA 98101" +270696,AAA Batteries (4-pack),1,2.99,10/20/19 09:17,"784 Johnson St, San Francisco, CA 94016" +270697,Bose SoundSport Headphones,1,99.99,10/05/19 22:10,"850 Sunset St, Portland, OR 97035" +270698,Bose SoundSport Headphones,1,99.99,10/02/19 17:04,"809 13th St, Portland, OR 97035" +270699,Apple Airpods Headphones,1,150,10/23/19 12:24,"520 4th St, San Francisco, CA 94016" +270700,iPhone,1,700,10/03/19 19:58,"260 Dogwood St, San Francisco, CA 94016" +270700,Apple Airpods Headphones,1,150,10/03/19 19:58,"260 Dogwood St, San Francisco, CA 94016" +270701,USB-C Charging Cable,1,11.95,10/18/19 12:05,"259 4th St, San Francisco, CA 94016" +270702,USB-C Charging Cable,1,11.95,10/06/19 16:05,"75 Spruce St, New York City, NY 10001" +270703,Bose SoundSport Headphones,1,99.99,10/24/19 21:17,"198 Hill St, Los Angeles, CA 90001" +270704,27in FHD Monitor,1,149.99,10/28/19 16:17,"809 Center St, San Francisco, CA 94016" +270705,Lightning Charging Cable,1,14.95,10/27/19 23:23,"778 Johnson St, New York City, NY 10001" +270706,27in FHD Monitor,1,149.99,10/10/19 13:11,"43 Willow St, Atlanta, GA 30301" +270707,34in Ultrawide Monitor,1,379.99,10/16/19 21:41,"712 Forest St, Atlanta, GA 30301" +270708,AA Batteries (4-pack),1,3.84,10/21/19 21:38,"73 Hill St, San Francisco, CA 94016" +270709,Apple Airpods Headphones,1,150,10/07/19 22:51,"457 Main St, Seattle, WA 98101" +270710,Wired Headphones,1,11.99,10/24/19 13:28,"190 7th St, Seattle, WA 98101" +270711,Lightning Charging Cable,1,14.95,10/04/19 17:05,"344 Walnut St, San Francisco, CA 94016" +270712,Vareebadd Phone,1,400,10/12/19 07:24,"583 Washington St, Dallas, TX 75001" +270712,USB-C Charging Cable,1,11.95,10/12/19 07:24,"583 Washington St, Dallas, TX 75001" +270713,Apple Airpods Headphones,1,150,10/09/19 08:34,"490 River St, Portland, ME 04101" +270714,AA Batteries (4-pack),1,3.84,10/29/19 15:33,"978 Jefferson St, Atlanta, GA 30301" +270715,AAA Batteries (4-pack),1,2.99,10/13/19 20:37,"388 Sunset St, Los Angeles, CA 90001" +270716,Bose SoundSport Headphones,1,99.99,10/09/19 08:14,"868 Pine St, Los Angeles, CA 90001" +270717,AA Batteries (4-pack),1,3.84,10/28/19 18:00,"517 River St, Los Angeles, CA 90001" +270718,Lightning Charging Cable,1,14.95,10/29/19 18:14,"935 6th St, New York City, NY 10001" +270719,AA Batteries (4-pack),1,3.84,10/07/19 16:04,"319 Spruce St, Boston, MA 02215" +270720,Lightning Charging Cable,1,14.95,10/20/19 18:40,"154 Lake St, New York City, NY 10001" +270721,Macbook Pro Laptop,1,1700,10/09/19 19:31,"827 9th St, Dallas, TX 75001" +270722,27in 4K Gaming Monitor,1,389.99,10/13/19 23:50,"375 Church St, New York City, NY 10001" +270723,Bose SoundSport Headphones,1,99.99,10/22/19 07:43,"187 Madison St, Dallas, TX 75001" +270724,Lightning Charging Cable,1,14.95,10/04/19 16:31,"8 Jackson St, San Francisco, CA 94016" +270725,AA Batteries (4-pack),1,3.84,10/04/19 14:41,"242 2nd St, San Francisco, CA 94016" +270726,Bose SoundSport Headphones,1,99.99,10/31/19 12:45,"203 Main St, Portland, OR 97035" +270727,Bose SoundSport Headphones,1,99.99,10/31/19 06:43,"701 Center St, San Francisco, CA 94016" +270728,Lightning Charging Cable,1,14.95,10/21/19 15:56,"516 Hickory St, Portland, OR 97035" +270729,Lightning Charging Cable,1,14.95,10/17/19 17:14,"589 14th St, Boston, MA 02215" +270730,AA Batteries (4-pack),1,3.84,10/16/19 05:26,"125 11th St, San Francisco, CA 94016" +270731,Lightning Charging Cable,1,14.95,10/02/19 21:11,"430 North St, San Francisco, CA 94016" +270732,Wired Headphones,1,11.99,10/24/19 00:34,"890 North St, New York City, NY 10001" +270733,AAA Batteries (4-pack),1,2.99,10/16/19 22:18,"465 Ridge St, New York City, NY 10001" +270734,Lightning Charging Cable,1,14.95,10/12/19 09:59,"299 Pine St, San Francisco, CA 94016" +270735,USB-C Charging Cable,2,11.95,10/19/19 17:02,"770 Meadow St, New York City, NY 10001" +270736,Bose SoundSport Headphones,1,99.99,10/12/19 11:19,"219 Ridge St, New York City, NY 10001" +270737,ThinkPad Laptop,1,999.99,10/13/19 12:52,"80 Main St, San Francisco, CA 94016" +270738,Lightning Charging Cable,1,14.95,10/31/19 18:48,"61 Johnson St, Los Angeles, CA 90001" +270739,AAA Batteries (4-pack),1,2.99,10/07/19 15:10,"704 Washington St, San Francisco, CA 94016" +270740,Apple Airpods Headphones,1,150,10/26/19 19:54,"640 Dogwood St, San Francisco, CA 94016" +270741,Google Phone,1,600,10/29/19 23:32,"64 Forest St, Los Angeles, CA 90001" +270742,USB-C Charging Cable,1,11.95,10/13/19 09:09,"747 10th St, Dallas, TX 75001" +270743,LG Washing Machine,1,600.0,10/18/19 09:09,"699 Highland St, New York City, NY 10001" +270744,ThinkPad Laptop,1,999.99,10/14/19 09:48,"787 Cedar St, San Francisco, CA 94016" +270745,AA Batteries (4-pack),1,3.84,10/06/19 12:03,"757 Madison St, Portland, OR 97035" +270746,Apple Airpods Headphones,1,150,10/14/19 06:32,"860 West St, New York City, NY 10001" +270747,27in 4K Gaming Monitor,1,389.99,10/31/19 13:05,"981 Main St, Atlanta, GA 30301" +270748,Lightning Charging Cable,1,14.95,10/09/19 14:10,"838 Johnson St, Boston, MA 02215" +270749,Bose SoundSport Headphones,1,99.99,10/19/19 22:22,"380 Madison St, Austin, TX 73301" +270750,Apple Airpods Headphones,1,150,10/22/19 08:46,"951 Maple St, Boston, MA 02215" +270751,27in 4K Gaming Monitor,1,389.99,10/24/19 18:08,"125 7th St, San Francisco, CA 94016" +270752,Bose SoundSport Headphones,1,99.99,10/24/19 19:46,"640 10th St, Los Angeles, CA 90001" +270753,Flatscreen TV,1,300,10/16/19 13:54,"302 Adams St, Dallas, TX 75001" +270753,USB-C Charging Cable,1,11.95,10/16/19 13:54,"302 Adams St, Dallas, TX 75001" +270754,Wired Headphones,1,11.99,10/12/19 14:54,"705 4th St, Boston, MA 02215" +270755,AA Batteries (4-pack),3,3.84,10/03/19 22:40,"707 River St, San Francisco, CA 94016" +270756,Bose SoundSport Headphones,1,99.99,10/11/19 21:25,"756 Lincoln St, Boston, MA 02215" +270757,Wired Headphones,1,11.99,10/18/19 09:12,"350 7th St, San Francisco, CA 94016" +270758,LG Washing Machine,1,600.0,10/08/19 11:27,"398 Hill St, San Francisco, CA 94016" +270759,Google Phone,1,600,10/28/19 13:02,"450 Cherry St, Portland, OR 97035" +270760,Wired Headphones,1,11.99,10/23/19 21:50,"817 Meadow St, New York City, NY 10001" +270761,AA Batteries (4-pack),1,3.84,10/03/19 12:06,"18 4th St, Los Angeles, CA 90001" +270762,USB-C Charging Cable,1,11.95,10/17/19 21:41,"398 Lake St, Los Angeles, CA 90001" +270763,AAA Batteries (4-pack),1,2.99,10/08/19 13:25,"644 Jefferson St, San Francisco, CA 94016" +270764,AA Batteries (4-pack),2,3.84,10/23/19 20:43,"433 1st St, Atlanta, GA 30301" +270765,27in FHD Monitor,1,149.99,10/11/19 21:54,"970 Lake St, San Francisco, CA 94016" +270766,AAA Batteries (4-pack),2,2.99,10/10/19 08:14,"281 Jefferson St, Boston, MA 02215" +270767,Lightning Charging Cable,1,14.95,10/20/19 11:35,"413 Hickory St, Dallas, TX 75001" +270768,Apple Airpods Headphones,1,150,10/16/19 17:06,"987 Maple St, San Francisco, CA 94016" +270769,Wired Headphones,1,11.99,10/12/19 14:11,"349 River St, Dallas, TX 75001" +270770,Flatscreen TV,1,300,10/04/19 04:18,"464 Maple St, Los Angeles, CA 90001" +270771,Lightning Charging Cable,1,14.95,10/27/19 16:56,"362 Wilson St, Boston, MA 02215" +270772,27in 4K Gaming Monitor,1,389.99,10/28/19 10:20,"376 12th St, Boston, MA 02215" +270773,AA Batteries (4-pack),1,3.84,10/14/19 16:08,"208 Wilson St, Los Angeles, CA 90001" +270774,iPhone,1,700,10/01/19 18:46,"711 Maple St, Boston, MA 02215" +270774,Lightning Charging Cable,1,14.95,10/01/19 18:46,"711 Maple St, Boston, MA 02215" +270775,34in Ultrawide Monitor,1,379.99,10/27/19 00:33,"571 Madison St, Atlanta, GA 30301" +270776,34in Ultrawide Monitor,1,379.99,10/30/19 11:57,"390 Spruce St, San Francisco, CA 94016" +270777,Apple Airpods Headphones,1,150,10/21/19 12:30,"706 Center St, Dallas, TX 75001" +270778,AAA Batteries (4-pack),1,2.99,10/31/19 16:43,"143 7th St, Boston, MA 02215" +270779,27in 4K Gaming Monitor,1,389.99,10/22/19 10:38,"474 Lincoln St, Austin, TX 73301" +270780,20in Monitor,1,109.99,10/06/19 14:25,"251 Wilson St, Los Angeles, CA 90001" +270781,27in 4K Gaming Monitor,1,389.99,10/16/19 17:55,"327 Cedar St, New York City, NY 10001" +270782,AAA Batteries (4-pack),1,2.99,10/28/19 23:37,"124 Johnson St, Austin, TX 73301" +270783,20in Monitor,1,109.99,10/15/19 18:41,"383 River St, Los Angeles, CA 90001" +270784,Macbook Pro Laptop,1,1700,10/08/19 16:35,"631 Park St, Austin, TX 73301" +270785,AAA Batteries (4-pack),1,2.99,10/08/19 00:15,"414 13th St, New York City, NY 10001" +270786,27in FHD Monitor,1,149.99,10/23/19 08:30,"184 Jefferson St, San Francisco, CA 94016" +270787,Lightning Charging Cable,1,14.95,10/09/19 22:17,"134 West St, Los Angeles, CA 90001" +270788,20in Monitor,1,109.99,10/13/19 18:10,"974 Wilson St, Los Angeles, CA 90001" +270789,Apple Airpods Headphones,1,150,10/11/19 08:53,"288 Spruce St, Dallas, TX 75001" +270790,AAA Batteries (4-pack),1,2.99,10/28/19 18:12,"104 6th St, Boston, MA 02215" +270791,AA Batteries (4-pack),2,3.84,10/13/19 13:15,"558 10th St, Dallas, TX 75001" +270792,27in FHD Monitor,1,149.99,10/24/19 11:07,"38 West St, Dallas, TX 75001" +270793,Bose SoundSport Headphones,1,99.99,10/08/19 14:47,"941 Meadow St, New York City, NY 10001" +270794,Wired Headphones,1,11.99,10/04/19 21:56,"409 Meadow St, Boston, MA 02215" +270795,iPhone,1,700,10/11/19 23:01,"17 1st St, Atlanta, GA 30301" +270796,USB-C Charging Cable,1,11.95,10/05/19 23:33,"688 Forest St, Austin, TX 73301" +270797,AA Batteries (4-pack),1,3.84,10/12/19 12:44,"503 River St, San Francisco, CA 94016" +270798,AAA Batteries (4-pack),1,2.99,10/14/19 06:10,"15 Forest St, Los Angeles, CA 90001" +270799,27in FHD Monitor,1,149.99,10/29/19 21:37,"217 8th St, New York City, NY 10001" +270800,Bose SoundSport Headphones,1,99.99,10/27/19 23:13,"97 Forest St, San Francisco, CA 94016" +270801,USB-C Charging Cable,1,11.95,10/18/19 03:48,"273 14th St, Seattle, WA 98101" +270802,Vareebadd Phone,1,400,10/18/19 11:25,"507 Wilson St, Los Angeles, CA 90001" +270803,20in Monitor,1,109.99,10/26/19 23:10,"848 West St, New York City, NY 10001" +270804,AA Batteries (4-pack),4,3.84,10/05/19 16:10,"259 Lake St, New York City, NY 10001" +270805,Apple Airpods Headphones,1,150,10/28/19 12:36,"953 Sunset St, San Francisco, CA 94016" +270806,USB-C Charging Cable,1,11.95,10/21/19 16:37,"893 Cedar St, Austin, TX 73301" +270807,20in Monitor,1,109.99,10/16/19 12:46,"588 2nd St, Los Angeles, CA 90001" +270808,27in 4K Gaming Monitor,1,389.99,10/04/19 19:23,"768 Center St, Seattle, WA 98101" +270809,Bose SoundSport Headphones,1,99.99,10/22/19 19:26,"121 9th St, Los Angeles, CA 90001" +270810,USB-C Charging Cable,1,11.95,10/16/19 17:47,"194 Jackson St, Atlanta, GA 30301" +270811,USB-C Charging Cable,1,11.95,10/02/19 12:49,"608 Washington St, Seattle, WA 98101" +270812,iPhone,1,700,10/23/19 17:19,"301 Lake St, Los Angeles, CA 90001" +270813,Wired Headphones,1,11.99,10/05/19 12:35,"176 9th St, Dallas, TX 75001" +270814,AA Batteries (4-pack),1,3.84,10/29/19 17:21,"375 South St, Boston, MA 02215" +270815,Google Phone,1,600,10/25/19 23:25,"643 West St, Austin, TX 73301" +270816,AA Batteries (4-pack),1,3.84,10/15/19 10:47,"682 7th St, San Francisco, CA 94016" +270817,Wired Headphones,1,11.99,10/23/19 19:48,"981 8th St, Portland, ME 04101" +270818,Google Phone,1,600,10/06/19 19:57,"644 River St, Boston, MA 02215" +270818,Apple Airpods Headphones,1,150,10/06/19 19:57,"644 River St, Boston, MA 02215" +270819,Apple Airpods Headphones,1,150,10/04/19 18:58,"411 Cherry St, San Francisco, CA 94016" +270820,USB-C Charging Cable,1,11.95,10/18/19 15:16,"86 Hill St, New York City, NY 10001" +270821,Wired Headphones,2,11.99,10/05/19 08:00,"887 Park St, Dallas, TX 75001" +270822,USB-C Charging Cable,1,11.95,10/27/19 21:27,"48 Willow St, Los Angeles, CA 90001" +270823,iPhone,1,700,10/28/19 18:26,"929 5th St, San Francisco, CA 94016" +270824,USB-C Charging Cable,1,11.95,10/10/19 11:44,"306 Maple St, New York City, NY 10001" +270825,Flatscreen TV,1,300,10/11/19 16:54,"752 Spruce St, Los Angeles, CA 90001" +270826,Wired Headphones,1,11.99,10/09/19 07:40,"297 Hill St, Dallas, TX 75001" +270827,Wired Headphones,1,11.99,10/01/19 21:26,"833 Elm St, New York City, NY 10001" +270828,AA Batteries (4-pack),1,3.84,10/13/19 23:19,"412 Walnut St, San Francisco, CA 94016" +270829,Google Phone,1,600,10/24/19 23:25,"888 South St, Austin, TX 73301" +270830,Bose SoundSport Headphones,1,99.99,10/20/19 19:02,"532 Center St, Portland, OR 97035" +270831,Macbook Pro Laptop,1,1700,10/30/19 21:54,"474 Washington St, Atlanta, GA 30301" +270832,USB-C Charging Cable,1,11.95,10/14/19 09:46,"961 Wilson St, Los Angeles, CA 90001" +270833,AA Batteries (4-pack),2,3.84,10/09/19 02:18,"947 Center St, Los Angeles, CA 90001" +270834,27in 4K Gaming Monitor,1,389.99,10/10/19 13:50,"40 Walnut St, Atlanta, GA 30301" +270835,USB-C Charging Cable,1,11.95,10/20/19 01:09,"325 13th St, San Francisco, CA 94016" +270836,AAA Batteries (4-pack),1,2.99,10/29/19 09:19,"52 12th St, San Francisco, CA 94016" +270837,USB-C Charging Cable,1,11.95,10/06/19 00:45,"804 Hickory St, Los Angeles, CA 90001" +270838,Wired Headphones,1,11.99,10/26/19 16:48,"767 Maple St, Seattle, WA 98101" +270839,ThinkPad Laptop,1,999.99,10/10/19 12:56,"245 8th St, Austin, TX 73301" +270840,USB-C Charging Cable,1,11.95,10/15/19 20:32,"155 Elm St, Dallas, TX 75001" +270841,Lightning Charging Cable,1,14.95,10/23/19 16:36,"678 Wilson St, Austin, TX 73301" +270841,AA Batteries (4-pack),1,3.84,10/23/19 16:36,"678 Wilson St, Austin, TX 73301" +270842,iPhone,1,700,10/06/19 18:46,"680 Dogwood St, Boston, MA 02215" +270842,Lightning Charging Cable,1,14.95,10/06/19 18:46,"680 Dogwood St, Boston, MA 02215" +270842,Apple Airpods Headphones,1,150,10/06/19 18:46,"680 Dogwood St, Boston, MA 02215" +270843,Apple Airpods Headphones,1,150,10/22/19 11:18,"65 11th St, Portland, OR 97035" +270844,Apple Airpods Headphones,1,150,10/31/19 20:42,"61 Johnson St, San Francisco, CA 94016" +270845,AAA Batteries (4-pack),1,2.99,10/11/19 17:58,"737 Hickory St, San Francisco, CA 94016" +270846,27in FHD Monitor,1,149.99,10/02/19 09:36,"947 2nd St, San Francisco, CA 94016" +270847,Flatscreen TV,1,300,10/16/19 22:40,"831 Walnut St, Los Angeles, CA 90001" +270848,Flatscreen TV,1,300,10/27/19 09:21,"721 North St, Los Angeles, CA 90001" +270849,Bose SoundSport Headphones,1,99.99,10/12/19 12:04,"993 2nd St, Los Angeles, CA 90001" +270850,Apple Airpods Headphones,1,150,10/18/19 23:49,"393 4th St, San Francisco, CA 94016" +270851,AAA Batteries (4-pack),1,2.99,10/11/19 10:41,"877 Dogwood St, Seattle, WA 98101" +270852,Wired Headphones,1,11.99,10/20/19 22:21,"141 Church St, New York City, NY 10001" +270853,Bose SoundSport Headphones,1,99.99,10/19/19 11:30,"713 14th St, Seattle, WA 98101" +270854,iPhone,1,700,10/22/19 18:55,"637 Chestnut St, San Francisco, CA 94016" +270855,Lightning Charging Cable,1,14.95,10/12/19 17:55,"959 Chestnut St, Los Angeles, CA 90001" +270856,Apple Airpods Headphones,1,150,10/02/19 16:08,"85 Madison St, Dallas, TX 75001" +270857,USB-C Charging Cable,1,11.95,10/09/19 14:10,"966 13th St, Portland, OR 97035" +270858,Apple Airpods Headphones,1,150,10/22/19 20:50,"76 Maple St, Atlanta, GA 30301" +270859,AAA Batteries (4-pack),1,2.99,10/09/19 19:28,"974 Lakeview St, San Francisco, CA 94016" +270860,Apple Airpods Headphones,1,150,10/24/19 18:17,"269 13th St, Austin, TX 73301" +270861,Bose SoundSport Headphones,1,99.99,10/02/19 09:32,"986 Spruce St, San Francisco, CA 94016" +270862,USB-C Charging Cable,1,11.95,10/08/19 21:25,"338 5th St, Boston, MA 02215" +270863,Wired Headphones,1,11.99,10/11/19 17:54,"168 Ridge St, Atlanta, GA 30301" +270864,AAA Batteries (4-pack),1,2.99,10/08/19 09:57,"404 11th St, Los Angeles, CA 90001" +270865,34in Ultrawide Monitor,1,379.99,10/14/19 18:02,"127 Chestnut St, Austin, TX 73301" +270866,Flatscreen TV,1,300,10/11/19 16:53,"606 Hill St, Seattle, WA 98101" +270867,AA Batteries (4-pack),1,3.84,10/12/19 12:41,"139 North St, Portland, ME 04101" +270868,iPhone,1,700,10/18/19 10:03,"469 Main St, San Francisco, CA 94016" +270869,AAA Batteries (4-pack),1,2.99,10/03/19 10:16,"739 13th St, Seattle, WA 98101" +270870,USB-C Charging Cable,1,11.95,10/31/19 19:24,"406 Hill St, San Francisco, CA 94016" +270871,USB-C Charging Cable,1,11.95,10/10/19 07:01,"701 Hickory St, Portland, OR 97035" +270872,Bose SoundSport Headphones,1,99.99,10/27/19 13:56,"437 Elm St, Los Angeles, CA 90001" +270873,27in 4K Gaming Monitor,1,389.99,10/03/19 08:29,"611 Highland St, New York City, NY 10001" +270874,Lightning Charging Cable,1,14.95,10/14/19 13:14,"2 2nd St, San Francisco, CA 94016" +270875,Lightning Charging Cable,1,14.95,10/13/19 21:30,"716 Spruce St, San Francisco, CA 94016" +270876,AA Batteries (4-pack),1,3.84,10/01/19 09:47,"66 Madison St, Los Angeles, CA 90001" +270877,AAA Batteries (4-pack),1,2.99,10/19/19 13:30,"133 Willow St, Atlanta, GA 30301" +270878,AAA Batteries (4-pack),1,2.99,10/16/19 15:56,"124 5th St, Boston, MA 02215" +270879,AA Batteries (4-pack),1,3.84,10/14/19 13:47,"619 Cedar St, San Francisco, CA 94016" +270880,USB-C Charging Cable,1,11.95,10/20/19 01:39,"25 13th St, New York City, NY 10001" +270881,Lightning Charging Cable,1,14.95,10/04/19 19:53,"415 Elm St, Portland, OR 97035" +270882,Bose SoundSport Headphones,1,99.99,10/18/19 15:01,"218 14th St, Boston, MA 02215" +270883,Apple Airpods Headphones,1,150,10/23/19 12:44,"108 Dogwood St, Los Angeles, CA 90001" +270884,Bose SoundSport Headphones,1,99.99,10/06/19 18:18,"318 Meadow St, San Francisco, CA 94016" +270885,iPhone,1,700,10/31/19 08:50,"592 Forest St, San Francisco, CA 94016" +270885,Lightning Charging Cable,1,14.95,10/31/19 08:50,"592 Forest St, San Francisco, CA 94016" +270886,Vareebadd Phone,1,400,10/24/19 17:47,"486 Maple St, San Francisco, CA 94016" +270887,Wired Headphones,1,11.99,10/26/19 10:22,"275 West St, Dallas, TX 75001" +270888,Flatscreen TV,1,300,10/24/19 12:50,"147 Spruce St, Austin, TX 73301" +270889,iPhone,1,700,10/02/19 18:50,"798 Jackson St, Portland, OR 97035" +270890,Vareebadd Phone,1,400,10/15/19 22:22,"503 Johnson St, San Francisco, CA 94016" +270891,34in Ultrawide Monitor,1,379.99,10/17/19 21:38,"93 7th St, San Francisco, CA 94016" +270892,AAA Batteries (4-pack),2,2.99,10/27/19 08:07,"929 Willow St, San Francisco, CA 94016" +270893,Macbook Pro Laptop,1,1700,10/12/19 11:18,"271 2nd St, Atlanta, GA 30301" +270894,27in 4K Gaming Monitor,1,389.99,10/13/19 22:41,"380 1st St, Los Angeles, CA 90001" +270895,ThinkPad Laptop,1,999.99,10/09/19 18:48,"524 Spruce St, Boston, MA 02215" +270896,Lightning Charging Cable,1,14.95,10/16/19 23:07,"246 River St, San Francisco, CA 94016" +270897,Lightning Charging Cable,1,14.95,10/29/19 22:24,"840 8th St, Los Angeles, CA 90001" +270898,Macbook Pro Laptop,1,1700,10/17/19 11:43,"988 Pine St, New York City, NY 10001" +270899,AAA Batteries (4-pack),1,2.99,10/05/19 07:02,"498 6th St, Boston, MA 02215" +270900,Apple Airpods Headphones,1,150,10/29/19 22:18,"386 Center St, Atlanta, GA 30301" +270901,Flatscreen TV,1,300,10/23/19 13:21,"37 5th St, Portland, OR 97035" +270902,Google Phone,1,600,10/25/19 05:08,"91 Hill St, Dallas, TX 75001" +270903,AA Batteries (4-pack),1,3.84,10/07/19 18:03,"149 Ridge St, San Francisco, CA 94016" +270904,Apple Airpods Headphones,1,150,10/30/19 10:50,"78 Chestnut St, San Francisco, CA 94016" +270905,Lightning Charging Cable,2,14.95,10/07/19 22:12,"741 14th St, Portland, OR 97035" +270906,AAA Batteries (4-pack),3,2.99,10/17/19 12:47,"632 Johnson St, New York City, NY 10001" +270907,Lightning Charging Cable,1,14.95,10/06/19 05:39,"56 Cherry St, Los Angeles, CA 90001" +270908,AAA Batteries (4-pack),1,2.99,10/23/19 18:23,"32 Lincoln St, San Francisco, CA 94016" +270909,Lightning Charging Cable,1,14.95,10/29/19 22:57,"321 Cedar St, San Francisco, CA 94016" +270910,Lightning Charging Cable,1,14.95,10/10/19 17:26,"78 Main St, Seattle, WA 98101" +270911,AA Batteries (4-pack),1,3.84,10/12/19 12:51,"870 Jefferson St, Seattle, WA 98101" +270912,Vareebadd Phone,1,400,10/22/19 16:22,"26 7th St, Seattle, WA 98101" +270913,AA Batteries (4-pack),1,3.84,10/15/19 22:11,"604 Madison St, Atlanta, GA 30301" +270914,Lightning Charging Cable,1,14.95,10/17/19 12:16,"852 Cedar St, Portland, OR 97035" +270915,27in 4K Gaming Monitor,1,389.99,10/11/19 17:18,"288 7th St, Los Angeles, CA 90001" +270916,Wired Headphones,1,11.99,10/09/19 13:37,"114 Dogwood St, New York City, NY 10001" +270917,AAA Batteries (4-pack),2,2.99,10/02/19 12:42,"778 6th St, Seattle, WA 98101" +270918,Apple Airpods Headphones,1,150,10/07/19 12:53,"615 Adams St, Portland, OR 97035" +270919,USB-C Charging Cable,1,11.95,10/18/19 16:18,"437 River St, Portland, OR 97035" +270920,Flatscreen TV,1,300,10/26/19 12:22,"865 11th St, New York City, NY 10001" +270921,Apple Airpods Headphones,1,150,10/07/19 17:50,"795 South St, Seattle, WA 98101" +270922,Lightning Charging Cable,1,14.95,10/12/19 16:30,"728 Wilson St, Boston, MA 02215" +270923,27in FHD Monitor,1,149.99,10/09/19 19:27,"700 12th St, New York City, NY 10001" +270924,Wired Headphones,1,11.99,10/15/19 18:49,"759 4th St, Seattle, WA 98101" +270925,Google Phone,1,600,10/31/19 19:19,"569 6th St, Boston, MA 02215" +270926,AA Batteries (4-pack),1,3.84,10/06/19 15:27,"264 Jefferson St, Dallas, TX 75001" +270927,USB-C Charging Cable,1,11.95,10/29/19 07:40,"153 8th St, New York City, NY 10001" +270928,Macbook Pro Laptop,1,1700,10/03/19 16:37,"387 River St, New York City, NY 10001" +270929,USB-C Charging Cable,2,11.95,10/01/19 13:43,"803 South St, San Francisco, CA 94016" +270930,USB-C Charging Cable,1,11.95,10/30/19 19:17,"716 Main St, Austin, TX 73301" +270931,Lightning Charging Cable,1,14.95,10/07/19 21:37,"934 5th St, Seattle, WA 98101" +270932,USB-C Charging Cable,1,11.95,10/12/19 14:54,"701 Maple St, New York City, NY 10001" +270933,Apple Airpods Headphones,1,150,10/27/19 10:51,"995 Sunset St, New York City, NY 10001" +270934,Vareebadd Phone,1,400,10/01/19 06:26,"343 Maple St, Los Angeles, CA 90001" +270935,AAA Batteries (4-pack),1,2.99,10/28/19 19:23,"507 8th St, New York City, NY 10001" +270936,27in 4K Gaming Monitor,1,389.99,10/19/19 13:16,"451 Lincoln St, Portland, OR 97035" +270937,Bose SoundSport Headphones,1,99.99,10/19/19 07:42,"587 West St, Los Angeles, CA 90001" +270938,USB-C Charging Cable,1,11.95,10/15/19 17:02,"88 2nd St, Austin, TX 73301" +270939,Wired Headphones,1,11.99,10/14/19 09:18,"910 Hill St, Los Angeles, CA 90001" +270940,Apple Airpods Headphones,1,150,10/23/19 08:46,"82 Madison St, Dallas, TX 75001" +270941,AAA Batteries (4-pack),4,2.99,10/19/19 20:33,"616 South St, Boston, MA 02215" +270942,iPhone,1,700,10/27/19 11:52,"739 Hill St, Atlanta, GA 30301" +270943,AA Batteries (4-pack),2,3.84,10/15/19 14:20,"140 Church St, Los Angeles, CA 90001" +270944,Apple Airpods Headphones,1,150,10/01/19 21:11,"468 Wilson St, San Francisco, CA 94016" +270945,ThinkPad Laptop,1,999.99,10/20/19 15:05,"941 Chestnut St, Dallas, TX 75001" +270946,Lightning Charging Cable,1,14.95,10/27/19 23:50,"132 Johnson St, New York City, NY 10001" +270947,iPhone,1,700,10/08/19 20:44,"874 South St, New York City, NY 10001" +270948,AA Batteries (4-pack),2,3.84,10/26/19 16:20,"13 Washington St, Atlanta, GA 30301" +270949,AA Batteries (4-pack),2,3.84,10/08/19 21:17,"765 Washington St, San Francisco, CA 94016" +270950,Wired Headphones,1,11.99,10/14/19 08:08,"959 Center St, Los Angeles, CA 90001" +,,,,, +270951,USB-C Charging Cable,1,11.95,10/04/19 10:47,"913 Hill St, Portland, OR 97035" +270952,AA Batteries (4-pack),1,3.84,10/07/19 17:25,"223 Hill St, Portland, OR 97035" +270953,USB-C Charging Cable,1,11.95,10/04/19 09:08,"281 10th St, San Francisco, CA 94016" +270954,AAA Batteries (4-pack),1,2.99,10/10/19 18:53,"467 Cedar St, Los Angeles, CA 90001" +270955,AAA Batteries (4-pack),1,2.99,10/23/19 11:43,"161 River St, Portland, OR 97035" +270956,AAA Batteries (4-pack),1,2.99,10/24/19 22:12,"492 Church St, San Francisco, CA 94016" +270957,Lightning Charging Cable,2,14.95,10/13/19 11:03,"920 Church St, Boston, MA 02215" +270958,Wired Headphones,1,11.99,10/31/19 13:52,"705 Dogwood St, Atlanta, GA 30301" +270959,27in FHD Monitor,1,149.99,10/06/19 14:59,"620 6th St, Atlanta, GA 30301" +270960,Apple Airpods Headphones,1,150,10/16/19 19:03,"680 Center St, Austin, TX 73301" +270961,ThinkPad Laptop,1,999.99,10/26/19 01:45,"834 Cedar St, Los Angeles, CA 90001" +270962,AAA Batteries (4-pack),1,2.99,10/20/19 16:57,"545 Adams St, New York City, NY 10001" +270963,27in 4K Gaming Monitor,1,389.99,10/19/19 22:04,"153 2nd St, San Francisco, CA 94016" +270964,USB-C Charging Cable,1,11.95,10/06/19 14:40,"686 12th St, Los Angeles, CA 90001" +270965,Apple Airpods Headphones,1,150,10/17/19 01:05,"502 Cherry St, Seattle, WA 98101" +270966,20in Monitor,1,109.99,10/26/19 11:27,"935 Jackson St, Boston, MA 02215" +270967,Flatscreen TV,1,300,10/03/19 17:09,"381 Hill St, Portland, OR 97035" +270968,Wired Headphones,1,11.99,10/16/19 10:47,"637 8th St, Portland, OR 97035" +270969,Wired Headphones,1,11.99,10/09/19 00:22,"617 Wilson St, Los Angeles, CA 90001" +270970,Lightning Charging Cable,1,14.95,10/10/19 11:11,"694 Sunset St, San Francisco, CA 94016" +270971,AAA Batteries (4-pack),3,2.99,10/05/19 20:29,"339 West St, Los Angeles, CA 90001" +270972,AAA Batteries (4-pack),1,2.99,10/10/19 14:08,"129 Spruce St, San Francisco, CA 94016" +270973,Lightning Charging Cable,1,14.95,10/12/19 04:46,"466 North St, Los Angeles, CA 90001" +270974,Flatscreen TV,1,300,10/27/19 13:45,"419 Center St, Dallas, TX 75001" +270975,ThinkPad Laptop,1,999.99,10/12/19 14:23,"179 11th St, Boston, MA 02215" +270976,USB-C Charging Cable,1,11.95,10/06/19 07:20,"345 South St, Dallas, TX 75001" +270977,USB-C Charging Cable,1,11.95,10/04/19 18:45,"998 Pine St, New York City, NY 10001" +270978,AA Batteries (4-pack),1,3.84,10/28/19 12:09,"495 South St, Austin, TX 73301" +270979,27in 4K Gaming Monitor,1,389.99,10/11/19 17:58,"107 1st St, Los Angeles, CA 90001" +270980,USB-C Charging Cable,2,11.95,10/01/19 10:03,"711 Johnson St, Seattle, WA 98101" +270980,AA Batteries (4-pack),1,3.84,10/01/19 10:03,"711 Johnson St, Seattle, WA 98101" +270981,USB-C Charging Cable,1,11.95,10/31/19 12:55,"505 Lincoln St, Portland, OR 97035" +270982,AA Batteries (4-pack),2,3.84,10/19/19 11:44,"186 Johnson St, Portland, OR 97035" +270983,Google Phone,1,600,10/26/19 20:41,"784 Jackson St, Atlanta, GA 30301" +270983,USB-C Charging Cable,1,11.95,10/26/19 20:41,"784 Jackson St, Atlanta, GA 30301" +270984,Lightning Charging Cable,1,14.95,10/23/19 19:34,"476 Sunset St, San Francisco, CA 94016" +270985,ThinkPad Laptop,1,999.99,10/24/19 20:49,"592 Maple St, New York City, NY 10001" +270986,AA Batteries (4-pack),3,3.84,10/20/19 15:52,"611 Cherry St, Seattle, WA 98101" +270987,AA Batteries (4-pack),2,3.84,10/22/19 21:05,"673 Walnut St, Seattle, WA 98101" +270988,USB-C Charging Cable,1,11.95,10/05/19 12:58,"890 Elm St, Dallas, TX 75001" +270989,Lightning Charging Cable,1,14.95,10/05/19 11:20,"805 Walnut St, San Francisco, CA 94016" +270990,27in 4K Gaming Monitor,1,389.99,10/20/19 18:51,"841 5th St, Los Angeles, CA 90001" +270991,Lightning Charging Cable,1,14.95,10/27/19 22:38,"283 Ridge St, San Francisco, CA 94016" +270992,AA Batteries (4-pack),2,3.84,10/29/19 16:26,"306 Jackson St, Seattle, WA 98101" +270993,AAA Batteries (4-pack),1,2.99,10/07/19 12:01,"30 Jefferson St, Dallas, TX 75001" +270994,Wired Headphones,1,11.99,10/24/19 21:03,"33 Adams St, New York City, NY 10001" +270995,Lightning Charging Cable,1,14.95,10/08/19 12:18,"340 Chestnut St, Seattle, WA 98101" +270996,Bose SoundSport Headphones,1,99.99,10/12/19 11:46,"799 South St, Los Angeles, CA 90001" +270997,ThinkPad Laptop,1,999.99,10/19/19 21:21,"869 Dogwood St, Boston, MA 02215" +270998,Apple Airpods Headphones,1,150,10/09/19 21:48,"481 11th St, Atlanta, GA 30301" +270999,AA Batteries (4-pack),1,3.84,10/28/19 23:23,"997 Lakeview St, Seattle, WA 98101" +271000,USB-C Charging Cable,3,11.95,10/20/19 07:29,"211 Center St, New York City, NY 10001" +271001,Macbook Pro Laptop,1,1700,10/30/19 09:22,"812 Lincoln St, Boston, MA 02215" +271002,USB-C Charging Cable,1,11.95,10/16/19 20:52,"338 Forest St, Austin, TX 73301" +271003,Bose SoundSport Headphones,1,99.99,10/07/19 20:42,"980 Willow St, Los Angeles, CA 90001" +271003,34in Ultrawide Monitor,1,379.99,10/07/19 20:42,"980 Willow St, Los Angeles, CA 90001" +271004,AA Batteries (4-pack),1,3.84,10/15/19 20:26,"169 Spruce St, Los Angeles, CA 90001" +271005,AAA Batteries (4-pack),1,2.99,10/28/19 20:23,"553 9th St, San Francisco, CA 94016" +271006,AA Batteries (4-pack),1,3.84,10/23/19 10:17,"174 Cherry St, San Francisco, CA 94016" +271007,Macbook Pro Laptop,1,1700,10/21/19 09:09,"972 5th St, Los Angeles, CA 90001" +271008,AA Batteries (4-pack),4,3.84,10/18/19 07:17,"49 Adams St, San Francisco, CA 94016" +271009,ThinkPad Laptop,1,999.99,10/19/19 11:05,"318 Cedar St, Austin, TX 73301" +271010,Macbook Pro Laptop,1,1700,10/09/19 17:53,"424 Cedar St, New York City, NY 10001" +271011,AA Batteries (4-pack),1,3.84,10/25/19 18:00,"317 5th St, Atlanta, GA 30301" +271012,Wired Headphones,1,11.99,10/13/19 17:09,"787 9th St, Boston, MA 02215" +271013,Lightning Charging Cable,1,14.95,10/13/19 20:50,"601 Madison St, Atlanta, GA 30301" +271014,AAA Batteries (4-pack),1,2.99,10/04/19 16:27,"128 Sunset St, San Francisco, CA 94016" +271015,AA Batteries (4-pack),1,3.84,10/01/19 22:05,"357 Madison St, Los Angeles, CA 90001" +271016,27in FHD Monitor,1,149.99,10/13/19 18:55,"401 Main St, Austin, TX 73301" +271017,USB-C Charging Cable,1,11.95,10/26/19 11:48,"617 Park St, Portland, ME 04101" +271018,USB-C Charging Cable,2,11.95,10/15/19 18:15,"969 9th St, Los Angeles, CA 90001" +271018,Macbook Pro Laptop,1,1700,10/15/19 18:15,"969 9th St, Los Angeles, CA 90001" +271019,USB-C Charging Cable,1,11.95,10/21/19 11:56,"203 Jackson St, New York City, NY 10001" +271020,ThinkPad Laptop,1,999.99,10/13/19 18:11,"109 2nd St, Portland, OR 97035" +271021,LG Dryer,1,600.0,10/26/19 20:14,"586 Ridge St, Austin, TX 73301" +271022,Lightning Charging Cable,1,14.95,10/16/19 11:56,"544 11th St, Portland, ME 04101" +271023,Flatscreen TV,1,300,10/07/19 20:21,"74 2nd St, San Francisco, CA 94016" +271024,27in FHD Monitor,1,149.99,10/14/19 09:48,"907 Dogwood St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +271025,USB-C Charging Cable,1,11.95,10/03/19 16:11,"745 Cedar St, Seattle, WA 98101" +271026,AA Batteries (4-pack),1,3.84,10/11/19 21:55,"522 Willow St, Portland, OR 97035" +271027,Lightning Charging Cable,1,14.95,10/26/19 22:08,"3 Hickory St, Dallas, TX 75001" +271028,Lightning Charging Cable,1,14.95,10/28/19 15:35,"517 6th St, Los Angeles, CA 90001" +271029,Bose SoundSport Headphones,1,99.99,10/15/19 14:09,"684 Elm St, New York City, NY 10001" +271030,AA Batteries (4-pack),2,3.84,10/05/19 13:34,"817 Chestnut St, Boston, MA 02215" +271031,Wired Headphones,1,11.99,10/22/19 12:14,"187 Hickory St, Dallas, TX 75001" +271032,AAA Batteries (4-pack),1,2.99,10/14/19 18:43,"629 Lincoln St, Los Angeles, CA 90001" +271033,Lightning Charging Cable,1,14.95,10/07/19 09:52,"521 Washington St, Los Angeles, CA 90001" +271034,AA Batteries (4-pack),1,3.84,10/25/19 20:30,"395 11th St, San Francisco, CA 94016" +271035,AA Batteries (4-pack),1,3.84,10/10/19 07:55,"266 13th St, San Francisco, CA 94016" +271036,34in Ultrawide Monitor,1,379.99,10/01/19 21:33,"915 Madison St, Los Angeles, CA 90001" +271037,Google Phone,1,600,10/20/19 11:31,"769 1st St, San Francisco, CA 94016" +271037,USB-C Charging Cable,1,11.95,10/20/19 11:31,"769 1st St, San Francisco, CA 94016" +271038,Apple Airpods Headphones,1,150,10/10/19 06:52,"917 Park St, Los Angeles, CA 90001" +271039,34in Ultrawide Monitor,1,379.99,10/27/19 12:59,"333 Washington St, San Francisco, CA 94016" +271040,AAA Batteries (4-pack),1,2.99,10/15/19 10:37,"528 Elm St, Atlanta, GA 30301" +271041,AAA Batteries (4-pack),2,2.99,10/16/19 12:53,"136 Forest St, San Francisco, CA 94016" +271042,Wired Headphones,1,11.99,10/10/19 11:43,"244 14th St, San Francisco, CA 94016" +271043,ThinkPad Laptop,1,999.99,10/18/19 01:16,"765 Ridge St, Portland, OR 97035" +271044,Lightning Charging Cable,1,14.95,10/11/19 13:08,"180 Washington St, Atlanta, GA 30301" +271045,Google Phone,1,600,10/19/19 16:13,"425 Park St, New York City, NY 10001" +271045,USB-C Charging Cable,1,11.95,10/19/19 16:13,"425 Park St, New York City, NY 10001" +271046,Bose SoundSport Headphones,1,99.99,10/12/19 21:33,"787 Adams St, Los Angeles, CA 90001" +271047,AA Batteries (4-pack),1,3.84,10/08/19 09:39,"751 Lakeview St, San Francisco, CA 94016" +271048,34in Ultrawide Monitor,1,379.99,10/05/19 18:45,"764 Hickory St, Portland, OR 97035" +271049,Lightning Charging Cable,1,14.95,10/01/19 12:09,"65 West St, New York City, NY 10001" +271050,Apple Airpods Headphones,1,150,10/13/19 12:11,"880 11th St, Portland, ME 04101" +271051,Lightning Charging Cable,1,14.95,10/20/19 15:22,"512 Highland St, Austin, TX 73301" +271052,Lightning Charging Cable,1,14.95,10/04/19 23:47,"111 Washington St, Dallas, TX 75001" +271053,AAA Batteries (4-pack),2,2.99,10/22/19 17:03,"627 Cedar St, New York City, NY 10001" +271054,Google Phone,1,600,10/12/19 11:44,"394 Lincoln St, Portland, OR 97035" +271054,USB-C Charging Cable,1,11.95,10/12/19 11:44,"394 Lincoln St, Portland, OR 97035" +271055,Bose SoundSport Headphones,1,99.99,10/14/19 22:24,"569 Cedar St, San Francisco, CA 94016" +271056,AAA Batteries (4-pack),1,2.99,10/04/19 14:51,"75 6th St, Austin, TX 73301" +271057,AA Batteries (4-pack),2,3.84,10/21/19 12:26,"899 4th St, Los Angeles, CA 90001" +271058,AAA Batteries (4-pack),1,2.99,10/08/19 09:26,"607 Willow St, Boston, MA 02215" +271059,Lightning Charging Cable,1,14.95,10/17/19 13:46,"80 Jackson St, San Francisco, CA 94016" +271060,Apple Airpods Headphones,1,150,10/14/19 15:25,"741 9th St, Los Angeles, CA 90001" +271061,Apple Airpods Headphones,1,150,10/08/19 23:53,"151 Main St, San Francisco, CA 94016" +271062,Lightning Charging Cable,1,14.95,10/22/19 16:33,"621 South St, Boston, MA 02215" +271063,Bose SoundSport Headphones,1,99.99,10/08/19 05:04,"604 West St, Los Angeles, CA 90001" +271064,Lightning Charging Cable,2,14.95,10/21/19 16:42,"334 7th St, Los Angeles, CA 90001" +271065,27in FHD Monitor,1,149.99,10/05/19 20:41,"718 Pine St, Boston, MA 02215" +271066,Apple Airpods Headphones,1,150,10/24/19 16:01,"66 Cherry St, Los Angeles, CA 90001" +271067,AA Batteries (4-pack),1,3.84,10/30/19 06:43,"191 Church St, San Francisco, CA 94016" +271068,27in FHD Monitor,1,149.99,10/03/19 12:31,"808 Sunset St, Atlanta, GA 30301" +271069,AA Batteries (4-pack),1,3.84,10/09/19 06:29,"81 4th St, San Francisco, CA 94016" +271070,Wired Headphones,1,11.99,10/03/19 08:40,"628 Maple St, San Francisco, CA 94016" +271071,AAA Batteries (4-pack),2,2.99,10/31/19 05:01,"145 Maple St, Boston, MA 02215" +271072,Wired Headphones,1,11.99,10/28/19 21:31,"103 Maple St, New York City, NY 10001" +271073,Apple Airpods Headphones,1,150,10/19/19 11:07,"373 Jefferson St, New York City, NY 10001" +271074,Lightning Charging Cable,1,14.95,10/22/19 11:47,"563 Willow St, Los Angeles, CA 90001" +271075,Bose SoundSport Headphones,1,99.99,10/15/19 19:32,"56 Meadow St, San Francisco, CA 94016" +271076,AA Batteries (4-pack),1,3.84,10/26/19 11:43,"788 9th St, Dallas, TX 75001" +271077,USB-C Charging Cable,1,11.95,10/16/19 17:14,"750 Jefferson St, Los Angeles, CA 90001" +271078,Lightning Charging Cable,1,14.95,10/22/19 10:11,"407 10th St, Los Angeles, CA 90001" +271079,20in Monitor,1,109.99,10/21/19 05:46,"882 Center St, Boston, MA 02215" +271080,Bose SoundSport Headphones,1,99.99,10/27/19 13:32,"416 West St, Atlanta, GA 30301" +271080,Wired Headphones,1,11.99,10/27/19 13:32,"416 West St, Atlanta, GA 30301" +271081,AA Batteries (4-pack),1,3.84,10/16/19 14:01,"700 11th St, Dallas, TX 75001" +271082,AA Batteries (4-pack),1,3.84,10/28/19 17:36,"164 Jefferson St, Los Angeles, CA 90001" +271083,Wired Headphones,1,11.99,10/15/19 00:24,"627 5th St, San Francisco, CA 94016" +271084,AAA Batteries (4-pack),1,2.99,10/25/19 21:07,"161 Forest St, Seattle, WA 98101" +271085,27in 4K Gaming Monitor,1,389.99,10/27/19 18:22,"504 Main St, Los Angeles, CA 90001" +271086,USB-C Charging Cable,2,11.95,10/03/19 13:16,"548 Cedar St, New York City, NY 10001" +271087,USB-C Charging Cable,1,11.95,10/16/19 18:58,"70 Highland St, Austin, TX 73301" +271088,Wired Headphones,1,11.99,10/26/19 15:02,"315 Pine St, Portland, OR 97035" +271088,Wired Headphones,1,11.99,10/26/19 15:02,"315 Pine St, Portland, OR 97035" +271089,Lightning Charging Cable,1,14.95,10/05/19 18:46,"677 Wilson St, San Francisco, CA 94016" +271090,Lightning Charging Cable,1,14.95,10/21/19 14:29,"950 13th St, New York City, NY 10001" +271091,Wired Headphones,1,11.99,10/02/19 18:50,"348 Elm St, Boston, MA 02215" +271092,Lightning Charging Cable,1,14.95,10/11/19 16:43,"184 Jefferson St, Atlanta, GA 30301" +271093,Apple Airpods Headphones,1,150,10/13/19 14:24,"385 Washington St, Dallas, TX 75001" +271094,AA Batteries (4-pack),1,3.84,10/08/19 09:09,"102 Spruce St, New York City, NY 10001" +271095,27in FHD Monitor,1,149.99,10/10/19 05:38,"176 Washington St, San Francisco, CA 94016" +271096,20in Monitor,1,109.99,10/11/19 19:39,"478 9th St, Los Angeles, CA 90001" +271097,34in Ultrawide Monitor,1,379.99,10/16/19 10:19,"27 12th St, Seattle, WA 98101" +271098,Bose SoundSport Headphones,1,99.99,10/17/19 11:07,"791 Sunset St, San Francisco, CA 94016" +271099,Vareebadd Phone,1,400,10/09/19 12:54,"610 13th St, Seattle, WA 98101" +271099,Bose SoundSport Headphones,1,99.99,10/09/19 12:54,"610 13th St, Seattle, WA 98101" +271100,Macbook Pro Laptop,1,1700,10/24/19 22:04,"405 Johnson St, San Francisco, CA 94016" +271101,AA Batteries (4-pack),1,3.84,10/12/19 17:18,"462 6th St, Dallas, TX 75001" +271102,Lightning Charging Cable,1,14.95,10/12/19 21:56,"717 Hill St, San Francisco, CA 94016" +271103,Flatscreen TV,1,300,10/07/19 19:22,"696 West St, San Francisco, CA 94016" +271104,AA Batteries (4-pack),1,3.84,10/10/19 17:01,"158 Lake St, San Francisco, CA 94016" +271105,AAA Batteries (4-pack),1,2.99,10/18/19 12:40,"306 Chestnut St, Atlanta, GA 30301" +271106,USB-C Charging Cable,1,11.95,10/29/19 09:09,"597 Meadow St, Dallas, TX 75001" +271107,LG Dryer,1,600.0,10/17/19 20:59,"55 Forest St, San Francisco, CA 94016" +271108,Bose SoundSport Headphones,1,99.99,10/04/19 13:16,"696 Highland St, San Francisco, CA 94016" +271109,Wired Headphones,1,11.99,10/27/19 10:39,"711 Cherry St, San Francisco, CA 94016" +271110,Wired Headphones,1,11.99,10/02/19 18:28,"764 Adams St, San Francisco, CA 94016" +271111,AA Batteries (4-pack),1,3.84,10/07/19 09:13,"143 Elm St, Portland, OR 97035" +271112,Lightning Charging Cable,1,14.95,10/23/19 14:58,"667 10th St, Los Angeles, CA 90001" +271113,20in Monitor,1,109.99,10/10/19 19:07,"281 Dogwood St, Los Angeles, CA 90001" +271114,USB-C Charging Cable,1,11.95,10/22/19 10:34,"215 8th St, Austin, TX 73301" +271115,Wired Headphones,1,11.99,10/15/19 14:50,"960 West St, New York City, NY 10001" +271116,AAA Batteries (4-pack),5,2.99,10/07/19 17:06,"461 Hill St, Dallas, TX 75001" +271117,Wired Headphones,1,11.99,10/05/19 20:32,"16 10th St, Seattle, WA 98101" +271118,Wired Headphones,1,11.99,10/01/19 20:43,"386 8th St, New York City, NY 10001" +271119,AAA Batteries (4-pack),1,2.99,10/12/19 15:11,"33 Sunset St, New York City, NY 10001" +271120,Lightning Charging Cable,1,14.95,10/17/19 14:31,"712 Spruce St, San Francisco, CA 94016" +271121,USB-C Charging Cable,1,11.95,10/13/19 10:06,"408 River St, Atlanta, GA 30301" +271122,Apple Airpods Headphones,1,150,10/19/19 14:03,"534 Jefferson St, Dallas, TX 75001" +271123,USB-C Charging Cable,1,11.95,10/04/19 14:14,"573 10th St, Seattle, WA 98101" +271124,Bose SoundSport Headphones,1,99.99,10/27/19 13:31,"999 Adams St, New York City, NY 10001" +271125,AAA Batteries (4-pack),1,2.99,10/20/19 17:18,"150 Johnson St, Los Angeles, CA 90001" +271126,USB-C Charging Cable,1,11.95,10/07/19 13:00,"866 Jackson St, Boston, MA 02215" +271127,AA Batteries (4-pack),1,3.84,10/31/19 17:01,"660 Johnson St, Los Angeles, CA 90001" +271128,27in 4K Gaming Monitor,1,389.99,10/15/19 17:54,"519 2nd St, Boston, MA 02215" +271129,AAA Batteries (4-pack),2,2.99,10/10/19 15:37,"532 2nd St, San Francisco, CA 94016" +271130,AAA Batteries (4-pack),1,2.99,10/06/19 22:31,"198 North St, Los Angeles, CA 90001" +271131,Lightning Charging Cable,1,14.95,10/05/19 09:10,"545 7th St, Dallas, TX 75001" +271132,Flatscreen TV,1,300,10/25/19 21:37,"648 8th St, Atlanta, GA 30301" +271133,AA Batteries (4-pack),1,3.84,10/12/19 12:44,"278 9th St, Portland, OR 97035" +271134,Macbook Pro Laptop,1,1700,10/31/19 04:04,"759 Center St, New York City, NY 10001" +271135,Bose SoundSport Headphones,1,99.99,10/23/19 09:58,"123 Jackson St, Seattle, WA 98101" +271136,AA Batteries (4-pack),1,3.84,10/27/19 07:22,"97 13th St, San Francisco, CA 94016" +271137,Lightning Charging Cable,1,14.95,10/20/19 00:47,"328 South St, Seattle, WA 98101" +271138,27in 4K Gaming Monitor,1,389.99,10/13/19 23:48,"299 1st St, San Francisco, CA 94016" +271139,Apple Airpods Headphones,1,150,10/13/19 10:28,"780 6th St, Austin, TX 73301" +271140,Apple Airpods Headphones,1,150,10/05/19 15:22,"294 North St, New York City, NY 10001" +271141,Google Phone,1,600,10/04/19 19:14,"769 Hickory St, San Francisco, CA 94016" +271141,USB-C Charging Cable,1,11.95,10/04/19 19:14,"769 Hickory St, San Francisco, CA 94016" +271142,Wired Headphones,1,11.99,10/19/19 08:31,"114 14th St, San Francisco, CA 94016" +271143,AAA Batteries (4-pack),1,2.99,10/15/19 19:34,"185 2nd St, New York City, NY 10001" +271144,ThinkPad Laptop,1,999.99,10/15/19 15:20,"457 Adams St, Atlanta, GA 30301" +271145,AAA Batteries (4-pack),1,2.99,10/14/19 09:39,"235 Lake St, Dallas, TX 75001" +271146,Google Phone,1,600,10/23/19 11:52,"12 Adams St, Boston, MA 02215" +271147,Vareebadd Phone,1,400,10/11/19 20:34,"699 6th St, New York City, NY 10001" +271148,AA Batteries (4-pack),2,3.84,10/14/19 10:22,"217 10th St, Atlanta, GA 30301" +271149,Macbook Pro Laptop,1,1700,10/05/19 13:27,"394 Dogwood St, Portland, ME 04101" +271150,AA Batteries (4-pack),1,3.84,10/23/19 00:54,"960 Wilson St, San Francisco, CA 94016" +271151,AAA Batteries (4-pack),1,2.99,10/26/19 11:06,"563 13th St, Los Angeles, CA 90001" +271152,Apple Airpods Headphones,1,150,10/31/19 21:27,"557 Johnson St, Los Angeles, CA 90001" +271153,AAA Batteries (4-pack),1,2.99,10/28/19 18:58,"523 Lincoln St, San Francisco, CA 94016" +271154,Apple Airpods Headphones,1,150,10/12/19 11:55,"579 11th St, New York City, NY 10001" +271155,USB-C Charging Cable,1,11.95,10/04/19 22:17,"456 Spruce St, New York City, NY 10001" +271156,Macbook Pro Laptop,1,1700,10/24/19 04:37,"92 Park St, New York City, NY 10001" +271157,USB-C Charging Cable,1,11.95,10/22/19 16:40,"342 6th St, Austin, TX 73301" +271158,AAA Batteries (4-pack),1,2.99,10/03/19 11:17,"189 Dogwood St, Atlanta, GA 30301" +271159,USB-C Charging Cable,1,11.95,10/22/19 20:52,"410 Elm St, San Francisco, CA 94016" +271160,AAA Batteries (4-pack),1,2.99,10/11/19 17:21,"940 Wilson St, San Francisco, CA 94016" +271161,Lightning Charging Cable,1,14.95,10/04/19 16:55,"751 North St, New York City, NY 10001" +271162,AA Batteries (4-pack),6,3.84,10/07/19 19:43,"507 Lincoln St, Atlanta, GA 30301" +271163,Apple Airpods Headphones,1,150,10/28/19 08:16,"204 Church St, San Francisco, CA 94016" +271164,AAA Batteries (4-pack),3,2.99,10/02/19 10:30,"358 Hickory St, Seattle, WA 98101" +271165,USB-C Charging Cable,1,11.95,10/16/19 22:37,"482 Jefferson St, Boston, MA 02215" +271166,20in Monitor,1,109.99,10/15/19 19:54,"674 Meadow St, Atlanta, GA 30301" +271167,20in Monitor,1,109.99,10/13/19 20:29,"742 10th St, Dallas, TX 75001" +271168,Wired Headphones,1,11.99,10/13/19 19:31,"834 Park St, Portland, OR 97035" +271169,USB-C Charging Cable,1,11.95,10/19/19 20:38,"893 4th St, San Francisco, CA 94016" +271170,AAA Batteries (4-pack),1,2.99,10/11/19 16:33,"198 Cedar St, Seattle, WA 98101" +271171,27in 4K Gaming Monitor,1,389.99,10/25/19 06:21,"683 South St, Los Angeles, CA 90001" +271172,AAA Batteries (4-pack),2,2.99,10/31/19 23:14,"23 Washington St, Atlanta, GA 30301" +271173,Lightning Charging Cable,1,14.95,10/10/19 13:04,"18 1st St, San Francisco, CA 94016" +271174,AA Batteries (4-pack),2,3.84,10/16/19 07:27,"509 Highland St, Boston, MA 02215" +271175,Lightning Charging Cable,1,14.95,10/02/19 20:21,"745 8th St, Portland, OR 97035" +271176,Wired Headphones,1,11.99,10/20/19 12:53,"87 13th St, New York City, NY 10001" +271177,34in Ultrawide Monitor,1,379.99,10/24/19 09:54,"999 Dogwood St, Atlanta, GA 30301" +271178,USB-C Charging Cable,1,11.95,10/27/19 09:26,"567 River St, Atlanta, GA 30301" +271179,AAA Batteries (4-pack),1,2.99,10/30/19 11:41,"274 Church St, Los Angeles, CA 90001" +271180,Bose SoundSport Headphones,1,99.99,10/31/19 11:25,"943 Hill St, New York City, NY 10001" +271181,LG Washing Machine,1,600.0,10/22/19 11:48,"203 Wilson St, Los Angeles, CA 90001" +271182,USB-C Charging Cable,1,11.95,10/17/19 08:53,"204 Lake St, Atlanta, GA 30301" +271183,Lightning Charging Cable,1,14.95,10/21/19 23:19,"307 West St, Portland, OR 97035" +271184,AAA Batteries (4-pack),3,2.99,10/09/19 11:14,"806 River St, San Francisco, CA 94016" +271185,27in 4K Gaming Monitor,1,389.99,10/24/19 17:24,"923 Chestnut St, San Francisco, CA 94016" +271186,Bose SoundSport Headphones,1,99.99,10/27/19 11:32,"99 Forest St, Los Angeles, CA 90001" +271187,Apple Airpods Headphones,1,150,10/08/19 12:36,"832 Lake St, San Francisco, CA 94016" +271188,Lightning Charging Cable,1,14.95,10/25/19 12:29,"605 Center St, Los Angeles, CA 90001" +271189,USB-C Charging Cable,1,11.95,10/03/19 14:02,"831 13th St, San Francisco, CA 94016" +271190,Lightning Charging Cable,1,14.95,10/15/19 12:08,"984 Lakeview St, Atlanta, GA 30301" +271191,AA Batteries (4-pack),1,3.84,10/15/19 18:22,"720 Adams St, Boston, MA 02215" +271192,AA Batteries (4-pack),3,3.84,10/08/19 23:02,"185 Park St, San Francisco, CA 94016" +271193,27in FHD Monitor,1,149.99,10/01/19 12:02,"714 Lake St, Seattle, WA 98101" +271194,AA Batteries (4-pack),2,3.84,10/31/19 12:05,"618 6th St, Seattle, WA 98101" +271195,iPhone,1,700,10/08/19 21:50,"973 5th St, Seattle, WA 98101" +271196,Apple Airpods Headphones,1,150,10/27/19 19:32,"903 Pine St, Austin, TX 73301" +271197,Wired Headphones,1,11.99,10/24/19 11:30,"406 West St, Portland, OR 97035" +271198,Apple Airpods Headphones,1,150,10/21/19 22:14,"815 Hill St, Atlanta, GA 30301" +271199,Macbook Pro Laptop,1,1700,10/10/19 11:12,"224 14th St, Portland, OR 97035" +271200,AAA Batteries (4-pack),1,2.99,10/22/19 19:29,"67 Pine St, Los Angeles, CA 90001" +271201,AA Batteries (4-pack),1,3.84,10/20/19 09:35,"249 Park St, San Francisco, CA 94016" +271202,AAA Batteries (4-pack),1,2.99,10/19/19 12:36,"866 Dogwood St, San Francisco, CA 94016" +271203,Lightning Charging Cable,1,14.95,10/15/19 13:56,"690 Madison St, Los Angeles, CA 90001" +271204,USB-C Charging Cable,1,11.95,10/08/19 17:38,"910 6th St, Seattle, WA 98101" +271205,Google Phone,1,600,10/14/19 13:50,"779 4th St, Dallas, TX 75001" +271206,AA Batteries (4-pack),1,3.84,10/21/19 22:38,"837 Hill St, Los Angeles, CA 90001" +271207,USB-C Charging Cable,1,11.95,10/15/19 00:09,"948 8th St, San Francisco, CA 94016" +271208,AA Batteries (4-pack),1,3.84,10/31/19 12:18,"381 Center St, New York City, NY 10001" +271209,AA Batteries (4-pack),2,3.84,10/14/19 19:41,"650 Cedar St, San Francisco, CA 94016" +271210,AAA Batteries (4-pack),2,2.99,10/27/19 17:56,"618 5th St, New York City, NY 10001" +271211,Wired Headphones,1,11.99,10/18/19 21:17,"309 7th St, Los Angeles, CA 90001" +271212,AAA Batteries (4-pack),1,2.99,10/09/19 20:09,"531 Adams St, Seattle, WA 98101" +271213,Flatscreen TV,1,300,10/11/19 12:39,"578 Main St, San Francisco, CA 94016" +271213,Google Phone,1,600,10/11/19 12:39,"578 Main St, San Francisco, CA 94016" +271214,Google Phone,1,600,10/18/19 12:39,"298 Johnson St, New York City, NY 10001" +271215,AA Batteries (4-pack),1,3.84,10/21/19 12:12,"339 Walnut St, San Francisco, CA 94016" +271215,USB-C Charging Cable,1,11.95,10/21/19 12:12,"339 Walnut St, San Francisco, CA 94016" +271216,USB-C Charging Cable,1,11.95,10/05/19 00:06,"752 Madison St, Atlanta, GA 30301" +271217,Lightning Charging Cable,1,14.95,10/27/19 08:36,"726 Hickory St, New York City, NY 10001" +271218,AAA Batteries (4-pack),1,2.99,10/14/19 14:41,"212 8th St, Austin, TX 73301" +271219,Wired Headphones,1,11.99,10/04/19 23:14,"987 West St, San Francisco, CA 94016" +271220,AA Batteries (4-pack),2,3.84,10/11/19 18:40,"106 Hickory St, San Francisco, CA 94016" +271221,Lightning Charging Cable,1,14.95,10/29/19 20:40,"59 Park St, San Francisco, CA 94016" +271222,Flatscreen TV,1,300,10/20/19 21:43,"65 8th St, Atlanta, GA 30301" +271223,Flatscreen TV,1,300,10/29/19 16:14,"955 13th St, Boston, MA 02215" +271224,USB-C Charging Cable,1,11.95,10/11/19 13:02,"532 Meadow St, Seattle, WA 98101" +271225,AA Batteries (4-pack),1,3.84,10/01/19 12:18,"755 Maple St, Portland, OR 97035" +271226,iPhone,1,700,10/21/19 04:52,"349 1st St, Los Angeles, CA 90001" +271227,20in Monitor,1,109.99,10/22/19 18:52,"29 Spruce St, San Francisco, CA 94016" +271228,AAA Batteries (4-pack),1,2.99,10/28/19 12:59,"30 Forest St, Boston, MA 02215" +271229,Wired Headphones,1,11.99,10/24/19 18:19,"720 10th St, San Francisco, CA 94016" +271230,USB-C Charging Cable,1,11.95,10/09/19 07:51,"301 5th St, Dallas, TX 75001" +271231,34in Ultrawide Monitor,1,379.99,10/03/19 21:52,"445 Lakeview St, New York City, NY 10001" +271232,AAA Batteries (4-pack),3,2.99,10/28/19 22:58,"149 4th St, Seattle, WA 98101" +271233,27in FHD Monitor,1,149.99,10/27/19 12:46,"1 Meadow St, San Francisco, CA 94016" +271234,Apple Airpods Headphones,1,150,10/03/19 18:05,"903 11th St, Los Angeles, CA 90001" +271235,34in Ultrawide Monitor,1,379.99,10/07/19 21:50,"121 Cherry St, San Francisco, CA 94016" +271236,AAA Batteries (4-pack),1,2.99,10/22/19 17:58,"495 7th St, San Francisco, CA 94016" +271237,Vareebadd Phone,1,400,10/07/19 23:23,"94 Meadow St, Seattle, WA 98101" +271238,34in Ultrawide Monitor,1,379.99,10/25/19 19:58,"721 Washington St, Dallas, TX 75001" +271239,Apple Airpods Headphones,1,150,10/31/19 20:09,"875 12th St, San Francisco, CA 94016" +271240,34in Ultrawide Monitor,1,379.99,10/05/19 14:35,"228 Chestnut St, Dallas, TX 75001" +271241,AA Batteries (4-pack),1,3.84,10/24/19 20:33,"693 Lakeview St, New York City, NY 10001" +271242,iPhone,1,700,10/07/19 21:00,"127 Church St, Dallas, TX 75001" +271243,iPhone,1,700,10/19/19 14:01,"729 8th St, Boston, MA 02215" +271244,AAA Batteries (4-pack),1,2.99,10/03/19 09:29,"659 Main St, Dallas, TX 75001" +271245,Lightning Charging Cable,1,14.95,10/26/19 18:46,"975 Meadow St, Seattle, WA 98101" +271246,AAA Batteries (4-pack),1,2.99,10/22/19 23:14,"941 Madison St, Portland, OR 97035" +271247,Bose SoundSport Headphones,1,99.99,10/12/19 20:26,"880 Elm St, San Francisco, CA 94016" +271248,AA Batteries (4-pack),1,3.84,10/13/19 10:05,"588 Maple St, San Francisco, CA 94016" +271249,Apple Airpods Headphones,1,150,10/28/19 20:53,"621 13th St, Austin, TX 73301" +271250,Wired Headphones,1,11.99,10/03/19 22:39,"310 Meadow St, San Francisco, CA 94016" +271251,34in Ultrawide Monitor,1,379.99,10/02/19 13:26,"367 5th St, New York City, NY 10001" +271252,Lightning Charging Cable,1,14.95,10/19/19 09:37,"53 River St, Dallas, TX 75001" +271253,Wired Headphones,3,11.99,10/16/19 18:08,"584 Cherry St, Seattle, WA 98101" +271254,Wired Headphones,1,11.99,10/31/19 14:04,"2 Johnson St, Dallas, TX 75001" +271255,Wired Headphones,1,11.99,10/03/19 22:44,"405 Adams St, Portland, ME 04101" +271256,USB-C Charging Cable,2,11.95,10/26/19 22:42,"262 Spruce St, Los Angeles, CA 90001" +271257,USB-C Charging Cable,1,11.95,10/28/19 23:03,"417 2nd St, Seattle, WA 98101" +271258,ThinkPad Laptop,1,999.99,10/23/19 13:00,"410 Church St, New York City, NY 10001" +271259,ThinkPad Laptop,1,999.99,10/08/19 13:37,"348 Dogwood St, Dallas, TX 75001" +271260,Lightning Charging Cable,1,14.95,10/06/19 11:13,"817 Madison St, New York City, NY 10001" +271261,Lightning Charging Cable,1,14.95,10/03/19 14:27,"223 Elm St, New York City, NY 10001" +271262,AAA Batteries (4-pack),1,2.99,10/17/19 14:57,"804 Wilson St, San Francisco, CA 94016" +271263,AA Batteries (4-pack),1,3.84,10/22/19 20:35,"966 Lake St, Austin, TX 73301" +271264,Apple Airpods Headphones,1,150,10/13/19 17:28,"258 River St, Los Angeles, CA 90001" +271265,Apple Airpods Headphones,1,150,10/25/19 20:15,"952 11th St, Seattle, WA 98101" +271266,27in FHD Monitor,1,149.99,10/23/19 21:47,"94 12th St, Boston, MA 02215" +271267,Lightning Charging Cable,1,14.95,10/05/19 16:50,"219 4th St, Portland, OR 97035" +271268,AA Batteries (4-pack),1,3.84,10/02/19 17:47,"626 Church St, Austin, TX 73301" +271269,Macbook Pro Laptop,1,1700,10/02/19 19:38,"900 Church St, Austin, TX 73301" +271270,27in FHD Monitor,1,149.99,10/12/19 00:13,"80 Dogwood St, Austin, TX 73301" +271271,Apple Airpods Headphones,1,150,10/17/19 18:48,"803 11th St, Los Angeles, CA 90001" +271272,Lightning Charging Cable,1,14.95,10/21/19 11:48,"725 9th St, Boston, MA 02215" +271273,Apple Airpods Headphones,1,150,10/24/19 21:09,"167 1st St, San Francisco, CA 94016" +271274,USB-C Charging Cable,1,11.95,10/04/19 16:15,"752 Forest St, Dallas, TX 75001" +271275,Wired Headphones,1,11.99,10/01/19 10:05,"298 Highland St, San Francisco, CA 94016" +271276,USB-C Charging Cable,1,11.95,10/08/19 20:06,"446 Jefferson St, Austin, TX 73301" +271277,AAA Batteries (4-pack),1,2.99,10/31/19 14:10,"468 Church St, Seattle, WA 98101" +271278,AA Batteries (4-pack),1,3.84,10/26/19 13:48,"92 Lake St, San Francisco, CA 94016" +271279,AAA Batteries (4-pack),2,2.99,10/28/19 12:45,"209 Washington St, San Francisco, CA 94016" +271280,AA Batteries (4-pack),1,3.84,10/15/19 20:05,"785 Elm St, Los Angeles, CA 90001" +271281,Vareebadd Phone,1,400,10/14/19 15:04,"853 7th St, New York City, NY 10001" +271282,AA Batteries (4-pack),2,3.84,10/26/19 18:02,"615 Lincoln St, Boston, MA 02215" +271283,34in Ultrawide Monitor,1,379.99,10/12/19 18:15,"469 Lake St, Los Angeles, CA 90001" +271284,Google Phone,1,600,10/14/19 13:03,"471 13th St, San Francisco, CA 94016" +271285,Apple Airpods Headphones,1,150,10/04/19 10:48,"788 Jackson St, Dallas, TX 75001" +271286,iPhone,1,700,10/03/19 14:32,"106 Maple St, San Francisco, CA 94016" +271287,Lightning Charging Cable,1,14.95,10/09/19 15:29,"951 Hill St, Austin, TX 73301" +271288,20in Monitor,1,109.99,10/28/19 11:13,"554 Maple St, Austin, TX 73301" +271289,USB-C Charging Cable,1,11.95,10/18/19 15:07,"138 Cherry St, Boston, MA 02215" +271290,AAA Batteries (4-pack),2,2.99,10/29/19 06:44,"160 Johnson St, San Francisco, CA 94016" +271291,AA Batteries (4-pack),1,3.84,10/08/19 14:07,"321 Wilson St, Seattle, WA 98101" +271292,AAA Batteries (4-pack),1,2.99,10/12/19 20:59,"435 Hill St, San Francisco, CA 94016" +271293,Apple Airpods Headphones,1,150,10/13/19 21:50,"787 Main St, New York City, NY 10001" +271294,27in 4K Gaming Monitor,1,389.99,10/21/19 12:36,"196 Washington St, Boston, MA 02215" +271295,AA Batteries (4-pack),1,3.84,10/29/19 09:25,"3 1st St, Boston, MA 02215" +271296,Apple Airpods Headphones,1,150,10/07/19 16:55,"115 Wilson St, San Francisco, CA 94016" +271297,ThinkPad Laptop,1,999.99,10/21/19 10:01,"668 11th St, Seattle, WA 98101" +271298,Lightning Charging Cable,1,14.95,10/11/19 17:44,"918 Cedar St, Boston, MA 02215" +271299,AAA Batteries (4-pack),1,2.99,10/08/19 09:50,"540 10th St, Atlanta, GA 30301" +271300,AAA Batteries (4-pack),1,2.99,10/06/19 12:37,"514 Chestnut St, New York City, NY 10001" +271301,AAA Batteries (4-pack),2,2.99,10/19/19 15:05,"529 Jackson St, Los Angeles, CA 90001" +271302,USB-C Charging Cable,1,11.95,10/22/19 17:03,"279 13th St, Los Angeles, CA 90001" +271303,USB-C Charging Cable,1,11.95,10/20/19 20:46,"510 South St, Los Angeles, CA 90001" +271304,AAA Batteries (4-pack),1,2.99,10/30/19 10:44,"298 Jackson St, Portland, OR 97035" +271305,AAA Batteries (4-pack),1,2.99,10/28/19 12:28,"566 Adams St, San Francisco, CA 94016" +271306,Google Phone,1,600,10/31/19 21:57,"893 Cedar St, New York City, NY 10001" +271307,Bose SoundSport Headphones,1,99.99,10/12/19 12:57,"336 4th St, New York City, NY 10001" +271308,AA Batteries (4-pack),1,3.84,10/29/19 09:21,"347 Dogwood St, San Francisco, CA 94016" +271309,27in 4K Gaming Monitor,1,389.99,10/09/19 14:51,"719 West St, Atlanta, GA 30301" +271310,Wired Headphones,1,11.99,10/30/19 20:13,"12 Main St, Atlanta, GA 30301" +271311,AA Batteries (4-pack),1,3.84,10/03/19 17:22,"585 Hill St, Portland, OR 97035" +271312,USB-C Charging Cable,1,11.95,10/23/19 19:44,"442 Madison St, Los Angeles, CA 90001" +271313,Bose SoundSport Headphones,1,99.99,10/25/19 19:19,"966 Jackson St, New York City, NY 10001" +271314,AA Batteries (4-pack),1,3.84,10/23/19 15:43,"830 Wilson St, Seattle, WA 98101" +271315,Vareebadd Phone,1,400,10/19/19 16:11,"254 6th St, New York City, NY 10001" +271316,USB-C Charging Cable,1,11.95,10/19/19 10:35,"193 Forest St, Los Angeles, CA 90001" +271317,AA Batteries (4-pack),1,3.84,10/18/19 02:51,"919 12th St, Boston, MA 02215" +271318,Lightning Charging Cable,1,14.95,10/24/19 12:41,"879 South St, Seattle, WA 98101" +271319,USB-C Charging Cable,1,11.95,10/05/19 19:07,"3 Center St, Portland, OR 97035" +271320,Wired Headphones,1,11.99,10/14/19 20:14,"404 Lincoln St, New York City, NY 10001" +271321,iPhone,1,700,10/15/19 12:04,"423 Park St, Portland, ME 04101" +271321,Lightning Charging Cable,1,14.95,10/15/19 12:04,"423 Park St, Portland, ME 04101" +271322,Bose SoundSport Headphones,1,99.99,10/18/19 21:19,"274 Dogwood St, Seattle, WA 98101" +271323,AA Batteries (4-pack),2,3.84,10/07/19 15:53,"442 North St, Atlanta, GA 30301" +271324,USB-C Charging Cable,1,11.95,10/08/19 12:02,"98 Church St, New York City, NY 10001" +271325,Bose SoundSport Headphones,1,99.99,10/21/19 21:03,"21 13th St, Boston, MA 02215" +271326,Lightning Charging Cable,1,14.95,10/01/19 10:57,"187 Meadow St, New York City, NY 10001" +271327,Lightning Charging Cable,1,14.95,10/13/19 20:51,"757 2nd St, Boston, MA 02215" +271328,20in Monitor,1,109.99,10/03/19 22:17,"619 Park St, Portland, OR 97035" +271329,USB-C Charging Cable,1,11.95,10/18/19 19:12,"166 West St, New York City, NY 10001" +271330,Wired Headphones,1,11.99,10/22/19 16:22,"437 5th St, Los Angeles, CA 90001" +271331,AA Batteries (4-pack),2,3.84,10/24/19 13:12,"880 4th St, Dallas, TX 75001" +271332,AAA Batteries (4-pack),2,2.99,10/03/19 20:11,"966 10th St, Austin, TX 73301" +271333,20in Monitor,1,109.99,10/24/19 00:14,"372 Dogwood St, Portland, OR 97035" +271334,AA Batteries (4-pack),1,3.84,10/18/19 15:39,"233 Cherry St, Austin, TX 73301" +271335,Apple Airpods Headphones,1,150,10/26/19 17:06,"465 Maple St, Seattle, WA 98101" +271335,AA Batteries (4-pack),3,3.84,10/26/19 17:06,"465 Maple St, Seattle, WA 98101" +271336,Apple Airpods Headphones,1,150,10/11/19 14:20,"906 Church St, San Francisco, CA 94016" +271337,USB-C Charging Cable,1,11.95,10/20/19 00:55,"384 Sunset St, Los Angeles, CA 90001" +271338,27in FHD Monitor,1,149.99,10/16/19 20:10,"102 River St, Los Angeles, CA 90001" +271339,USB-C Charging Cable,1,11.95,10/12/19 18:31,"697 6th St, Los Angeles, CA 90001" +271340,Lightning Charging Cable,1,14.95,10/05/19 16:14,"949 West St, San Francisco, CA 94016" +271341,AA Batteries (4-pack),2,3.84,10/31/19 21:47,"785 Elm St, Dallas, TX 75001" +271342,Bose SoundSport Headphones,1,99.99,10/09/19 12:33,"210 Park St, Seattle, WA 98101" +271343,Apple Airpods Headphones,1,150,10/11/19 15:47,"463 Washington St, Los Angeles, CA 90001" +271344,Macbook Pro Laptop,1,1700,10/05/19 09:30,"951 2nd St, Seattle, WA 98101" +271345,27in 4K Gaming Monitor,1,389.99,10/13/19 14:54,"608 1st St, Dallas, TX 75001" +271346,ThinkPad Laptop,1,999.99,10/07/19 09:20,"334 River St, San Francisco, CA 94016" +271347,AA Batteries (4-pack),1,3.84,10/06/19 19:50,"267 Hill St, San Francisco, CA 94016" +271348,Apple Airpods Headphones,1,150,10/29/19 12:35,"841 West St, Dallas, TX 75001" +271349,AAA Batteries (4-pack),4,2.99,10/29/19 16:50,"667 Johnson St, Los Angeles, CA 90001" +271350,Wired Headphones,1,11.99,10/02/19 22:15,"511 Center St, New York City, NY 10001" +271351,27in FHD Monitor,1,149.99,10/19/19 20:28,"679 Jefferson St, San Francisco, CA 94016" +271352,Lightning Charging Cable,1,14.95,10/04/19 15:45,"616 Center St, Boston, MA 02215" +271353,34in Ultrawide Monitor,1,379.99,10/01/19 21:03,"327 Jefferson St, San Francisco, CA 94016" +271354,Bose SoundSport Headphones,1,99.99,10/29/19 21:31,"421 Hickory St, New York City, NY 10001" +271355,Lightning Charging Cable,1,14.95,10/15/19 14:11,"598 10th St, San Francisco, CA 94016" +271356,Wired Headphones,1,11.99,10/01/19 13:42,"69 13th St, San Francisco, CA 94016" +271357,Bose SoundSport Headphones,1,99.99,10/23/19 22:58,"314 Jackson St, Los Angeles, CA 90001" +271358,USB-C Charging Cable,1,11.95,10/04/19 17:32,"476 Lincoln St, Boston, MA 02215" +271359,iPhone,1,700,10/10/19 18:44,"618 Pine St, Seattle, WA 98101" +271360,Apple Airpods Headphones,1,150,10/15/19 19:09,"675 Hickory St, San Francisco, CA 94016" +271361,Google Phone,1,600,10/20/19 18:50,"592 Willow St, New York City, NY 10001" +271362,Google Phone,1,600,10/16/19 15:20,"127 Jackson St, Los Angeles, CA 90001" +271362,USB-C Charging Cable,1,11.95,10/16/19 15:20,"127 Jackson St, Los Angeles, CA 90001" +271363,LG Washing Machine,1,600.0,10/26/19 21:50,"695 Meadow St, Austin, TX 73301" +271364,Apple Airpods Headphones,1,150,10/17/19 15:58,"492 Maple St, New York City, NY 10001" +271365,Apple Airpods Headphones,1,150,10/02/19 09:44,"196 Willow St, New York City, NY 10001" +271366,Flatscreen TV,1,300,10/12/19 16:53,"801 8th St, San Francisco, CA 94016" +271367,Wired Headphones,2,11.99,10/13/19 17:33,"455 12th St, San Francisco, CA 94016" +271368,27in FHD Monitor,1,149.99,10/13/19 18:12,"927 13th St, Boston, MA 02215" +271369,27in FHD Monitor,1,149.99,10/08/19 18:29,"312 West St, Dallas, TX 75001" +271370,Wired Headphones,1,11.99,10/31/19 19:36,"160 Johnson St, Boston, MA 02215" +271371,27in 4K Gaming Monitor,1,389.99,10/02/19 13:52,"403 Jackson St, Austin, TX 73301" +271372,AAA Batteries (4-pack),1,2.99,10/09/19 17:59,"691 Lakeview St, Portland, OR 97035" +271373,USB-C Charging Cable,1,11.95,10/22/19 01:34,"67 5th St, Dallas, TX 75001" +271373,Google Phone,1,600,10/22/19 01:34,"67 5th St, Dallas, TX 75001" +271374,Flatscreen TV,1,300,10/15/19 16:15,"550 Willow St, San Francisco, CA 94016" +271375,34in Ultrawide Monitor,1,379.99,10/22/19 19:06,"519 Madison St, San Francisco, CA 94016" +271376,AAA Batteries (4-pack),1,2.99,10/15/19 11:06,"963 6th St, Dallas, TX 75001" +271377,Google Phone,1,600,10/26/19 15:56,"449 Washington St, Los Angeles, CA 90001" +271378,USB-C Charging Cable,1,11.95,10/03/19 10:41,"321 Willow St, Dallas, TX 75001" +271379,AA Batteries (4-pack),1,3.84,10/16/19 21:25,"693 8th St, Seattle, WA 98101" +271380,Google Phone,1,600,10/12/19 09:43,"692 2nd St, San Francisco, CA 94016" +271381,27in FHD Monitor,1,149.99,10/22/19 20:44,"89 7th St, New York City, NY 10001" +271382,27in 4K Gaming Monitor,1,389.99,10/24/19 23:15,"789 Elm St, Seattle, WA 98101" +271383,ThinkPad Laptop,1,999.99,10/17/19 17:15,"228 Chestnut St, Boston, MA 02215" +271384,Apple Airpods Headphones,1,150,10/20/19 19:10,"419 Sunset St, Boston, MA 02215" +271385,Lightning Charging Cable,1,14.95,10/29/19 11:37,"949 11th St, San Francisco, CA 94016" +271386,USB-C Charging Cable,1,11.95,10/08/19 15:31,"346 1st St, Los Angeles, CA 90001" +271387,Macbook Pro Laptop,1,1700,10/06/19 18:23,"281 North St, Los Angeles, CA 90001" +271388,Lightning Charging Cable,1,14.95,10/16/19 15:26,"198 Willow St, San Francisco, CA 94016" +271389,AA Batteries (4-pack),1,3.84,10/25/19 15:26,"481 Pine St, San Francisco, CA 94016" +271390,AAA Batteries (4-pack),1,2.99,10/25/19 16:44,"136 Elm St, San Francisco, CA 94016" +271391,AAA Batteries (4-pack),1,2.99,10/25/19 21:12,"610 Hickory St, New York City, NY 10001" +271392,Apple Airpods Headphones,1,150,10/14/19 23:58,"173 Adams St, Atlanta, GA 30301" +271393,Apple Airpods Headphones,1,150,10/30/19 07:43,"944 1st St, Los Angeles, CA 90001" +271394,Google Phone,1,600,10/24/19 22:05,"312 Maple St, Los Angeles, CA 90001" +271394,Wired Headphones,1,11.99,10/24/19 22:05,"312 Maple St, Los Angeles, CA 90001" +271395,Apple Airpods Headphones,1,150,10/10/19 22:55,"70 Maple St, Portland, OR 97035" +271396,AAA Batteries (4-pack),1,2.99,10/20/19 13:28,"646 6th St, Boston, MA 02215" +271397,AA Batteries (4-pack),1,3.84,10/29/19 02:10,"850 Park St, Austin, TX 73301" +271398,USB-C Charging Cable,1,11.95,10/07/19 17:42,"921 Spruce St, San Francisco, CA 94016" +271399,AAA Batteries (4-pack),2,2.99,10/19/19 13:24,"558 Chestnut St, San Francisco, CA 94016" +271400,27in FHD Monitor,1,149.99,10/02/19 14:28,"57 Walnut St, San Francisco, CA 94016" +271401,Apple Airpods Headphones,1,150,10/03/19 17:52,"941 Elm St, Seattle, WA 98101" +271402,USB-C Charging Cable,1,11.95,10/04/19 19:58,"322 11th St, New York City, NY 10001" +271403,Macbook Pro Laptop,1,1700,10/02/19 15:59,"42 Spruce St, San Francisco, CA 94016" +271404,Apple Airpods Headphones,1,150,10/25/19 16:02,"946 Meadow St, San Francisco, CA 94016" +271405,27in FHD Monitor,1,149.99,10/07/19 14:55,"740 Adams St, Dallas, TX 75001" +271406,Apple Airpods Headphones,1,150,10/08/19 18:54,"321 Adams St, San Francisco, CA 94016" +271407,iPhone,1,700,10/01/19 09:53,"400 Cherry St, Los Angeles, CA 90001" +271408,AAA Batteries (4-pack),1,2.99,10/06/19 12:16,"808 Church St, New York City, NY 10001" +271409,Vareebadd Phone,1,400,10/31/19 09:49,"411 Hickory St, Dallas, TX 75001" +271409,27in FHD Monitor,1,149.99,10/31/19 09:49,"411 Hickory St, Dallas, TX 75001" +271410,Lightning Charging Cable,1,14.95,10/08/19 20:07,"200 Maple St, San Francisco, CA 94016" +271411,Lightning Charging Cable,1,14.95,10/20/19 08:38,"412 Lincoln St, Seattle, WA 98101" +271412,Wired Headphones,1,11.99,10/27/19 18:27,"883 Hill St, San Francisco, CA 94016" +271413,Wired Headphones,1,11.99,10/28/19 18:08,"119 10th St, New York City, NY 10001" +271414,Lightning Charging Cable,1,14.95,10/28/19 14:13,"413 10th St, San Francisco, CA 94016" +271415,AAA Batteries (4-pack),1,2.99,10/08/19 15:42,"606 Cedar St, San Francisco, CA 94016" +271416,Wired Headphones,1,11.99,10/04/19 12:09,"343 West St, Seattle, WA 98101" +271417,Apple Airpods Headphones,1,150,10/04/19 18:11,"523 West St, New York City, NY 10001" +271418,USB-C Charging Cable,1,11.95,10/31/19 20:26,"885 9th St, New York City, NY 10001" +271419,34in Ultrawide Monitor,1,379.99,10/09/19 07:41,"448 Hickory St, Seattle, WA 98101" +271420,USB-C Charging Cable,1,11.95,10/29/19 19:53,"60 Jackson St, Atlanta, GA 30301" +271421,USB-C Charging Cable,1,11.95,10/18/19 18:24,"259 Cedar St, Boston, MA 02215" +271422,Apple Airpods Headphones,1,150,10/27/19 16:25,"311 Maple St, New York City, NY 10001" +271423,27in 4K Gaming Monitor,1,389.99,10/21/19 05:11,"595 Jackson St, Los Angeles, CA 90001" +271424,AA Batteries (4-pack),1,3.84,10/08/19 19:47,"966 South St, New York City, NY 10001" +271425,Lightning Charging Cable,1,14.95,10/14/19 08:56,"445 Wilson St, Los Angeles, CA 90001" +271426,Lightning Charging Cable,1,14.95,10/06/19 19:51,"371 Center St, San Francisco, CA 94016" +271427,USB-C Charging Cable,1,11.95,10/07/19 13:59,"488 12th St, Atlanta, GA 30301" +271428,AAA Batteries (4-pack),1,2.99,10/16/19 20:59,"410 10th St, Atlanta, GA 30301" +271429,Vareebadd Phone,1,400,10/25/19 18:50,"755 Ridge St, Boston, MA 02215" +271430,Wired Headphones,1,11.99,10/22/19 23:53,"659 Lakeview St, Portland, OR 97035" +271431,AA Batteries (4-pack),1,3.84,10/03/19 17:07,"880 Cherry St, San Francisco, CA 94016" +271432,Lightning Charging Cable,1,14.95,10/05/19 10:15,"878 Lake St, Boston, MA 02215" +271433,Bose SoundSport Headphones,1,99.99,10/27/19 13:16,"388 Walnut St, San Francisco, CA 94016" +271434,USB-C Charging Cable,2,11.95,10/12/19 12:04,"859 Jefferson St, Dallas, TX 75001" +271435,Wired Headphones,1,11.99,10/23/19 09:15,"241 Sunset St, Los Angeles, CA 90001" +271436,AAA Batteries (4-pack),2,2.99,10/25/19 12:33,"999 Meadow St, New York City, NY 10001" +271437,AA Batteries (4-pack),1,3.84,10/09/19 19:19,"699 Lincoln St, Boston, MA 02215" +271438,Wired Headphones,1,11.99,10/14/19 19:24,"888 Cedar St, San Francisco, CA 94016" +271439,Lightning Charging Cable,1,14.95,10/21/19 18:17,"595 Jefferson St, San Francisco, CA 94016" +271440,Apple Airpods Headphones,1,150,10/25/19 18:56,"532 River St, San Francisco, CA 94016" +271441,AA Batteries (4-pack),1,3.84,10/13/19 12:26,"316 Chestnut St, Portland, OR 97035" +271442,USB-C Charging Cable,1,11.95,10/15/19 11:21,"771 14th St, New York City, NY 10001" +271443,Lightning Charging Cable,1,14.95,10/06/19 12:05,"959 Sunset St, Boston, MA 02215" +271444,USB-C Charging Cable,1,11.95,10/03/19 12:30,"332 Pine St, Boston, MA 02215" +271445,Lightning Charging Cable,1,14.95,10/24/19 15:59,"396 5th St, Austin, TX 73301" +271446,Lightning Charging Cable,1,14.95,10/04/19 12:59,"953 Jefferson St, San Francisco, CA 94016" +271447,ThinkPad Laptop,1,999.99,10/02/19 16:07,"471 Chestnut St, San Francisco, CA 94016" +,,,,, +271448,27in 4K Gaming Monitor,1,389.99,10/28/19 22:32,"500 Maple St, Seattle, WA 98101" +271449,34in Ultrawide Monitor,1,379.99,10/31/19 19:06,"842 Walnut St, San Francisco, CA 94016" +271450,34in Ultrawide Monitor,1,379.99,10/11/19 05:18,"831 Walnut St, Boston, MA 02215" +271451,34in Ultrawide Monitor,1,379.99,10/09/19 22:30,"842 Spruce St, Los Angeles, CA 90001" +271452,Lightning Charging Cable,1,14.95,10/03/19 09:05,"97 Dogwood St, Atlanta, GA 30301" +271453,Wired Headphones,1,11.99,10/11/19 18:30,"703 Spruce St, Portland, OR 97035" +271454,Bose SoundSport Headphones,1,99.99,10/05/19 21:42,"290 Lincoln St, New York City, NY 10001" +271455,iPhone,1,700,10/25/19 16:36,"504 Ridge St, Boston, MA 02215" +271456,AAA Batteries (4-pack),1,2.99,10/12/19 12:57,"229 Spruce St, San Francisco, CA 94016" +271457,Wired Headphones,1,11.99,10/24/19 12:28,"551 Cedar St, Boston, MA 02215" +271458,AAA Batteries (4-pack),3,2.99,10/03/19 19:58,"702 Spruce St, Los Angeles, CA 90001" +271459,34in Ultrawide Monitor,1,379.99,10/27/19 16:59,"811 12th St, Boston, MA 02215" +271460,Wired Headphones,1,11.99,10/18/19 12:26,"887 Jefferson St, New York City, NY 10001" +271461,Apple Airpods Headphones,1,150,10/13/19 11:56,"23 Meadow St, New York City, NY 10001" +271462,Bose SoundSport Headphones,1,99.99,10/27/19 12:59,"605 6th St, New York City, NY 10001" +271463,27in FHD Monitor,1,149.99,10/17/19 18:19,"249 Cherry St, Austin, TX 73301" +271464,ThinkPad Laptop,1,999.99,10/30/19 23:58,"626 West St, San Francisco, CA 94016" +271465,Lightning Charging Cable,1,14.95,10/12/19 11:12,"41 Ridge St, Seattle, WA 98101" +271466,AA Batteries (4-pack),2,3.84,10/21/19 13:22,"757 Chestnut St, Seattle, WA 98101" +271467,Lightning Charging Cable,1,14.95,10/01/19 14:38,"144 Park St, Dallas, TX 75001" +271468,Apple Airpods Headphones,1,150,10/12/19 10:25,"161 5th St, Dallas, TX 75001" +271469,Apple Airpods Headphones,1,150,10/05/19 13:49,"776 Willow St, Seattle, WA 98101" +271470,Wired Headphones,1,11.99,10/18/19 15:11,"498 11th St, Seattle, WA 98101" +271471,USB-C Charging Cable,1,11.95,10/31/19 21:14,"966 Center St, Dallas, TX 75001" +271472,Lightning Charging Cable,2,14.95,10/07/19 19:24,"270 11th St, Dallas, TX 75001" +271473,Lightning Charging Cable,1,14.95,10/01/19 14:08,"927 13th St, Atlanta, GA 30301" +271474,27in FHD Monitor,1,149.99,10/22/19 15:53,"963 Ridge St, San Francisco, CA 94016" +271475,34in Ultrawide Monitor,1,379.99,10/09/19 18:11,"157 1st St, Los Angeles, CA 90001" +271476,Vareebadd Phone,1,400,10/30/19 19:16,"982 Dogwood St, Boston, MA 02215" +271477,Apple Airpods Headphones,1,150,10/25/19 23:12,"320 Forest St, New York City, NY 10001" +271478,Wired Headphones,1,11.99,10/24/19 21:57,"516 Center St, San Francisco, CA 94016" +271479,20in Monitor,1,109.99,10/18/19 16:30,"62 North St, Boston, MA 02215" +271480,27in 4K Gaming Monitor,1,389.99,10/13/19 15:41,"910 Maple St, New York City, NY 10001" +271481,20in Monitor,1,109.99,10/02/19 04:24,"923 West St, Boston, MA 02215" +271482,AA Batteries (4-pack),1,3.84,10/22/19 13:46,"959 Lincoln St, New York City, NY 10001" +271483,Apple Airpods Headphones,1,150,10/25/19 10:48,"866 Jefferson St, San Francisco, CA 94016" +271484,LG Washing Machine,1,600.0,10/03/19 19:17,"615 11th St, Los Angeles, CA 90001" +271485,Lightning Charging Cable,1,14.95,10/23/19 10:31,"656 Walnut St, Atlanta, GA 30301" +271486,USB-C Charging Cable,1,11.95,10/02/19 03:12,"626 4th St, Austin, TX 73301" +271487,Wired Headphones,1,11.99,10/20/19 16:30,"285 9th St, San Francisco, CA 94016" +271488,Bose SoundSport Headphones,1,99.99,10/05/19 23:05,"84 Park St, San Francisco, CA 94016" +271489,27in FHD Monitor,1,149.99,10/30/19 20:51,"289 11th St, Austin, TX 73301" +271490,AAA Batteries (4-pack),1,2.99,10/29/19 21:07,"879 Main St, San Francisco, CA 94016" +271491,AA Batteries (4-pack),3,3.84,10/03/19 14:25,"448 Adams St, San Francisco, CA 94016" +271492,Wired Headphones,1,11.99,10/28/19 11:38,"313 Highland St, Boston, MA 02215" +271493,Bose SoundSport Headphones,1,99.99,10/14/19 12:22,"582 River St, New York City, NY 10001" +271494,iPhone,1,700,10/27/19 01:57,"286 Washington St, Dallas, TX 75001" +271495,USB-C Charging Cable,1,11.95,10/05/19 07:29,"969 Lakeview St, San Francisco, CA 94016" +271496,Google Phone,1,600,10/06/19 09:22,"463 South St, Dallas, TX 75001" +271497,AA Batteries (4-pack),2,3.84,10/28/19 23:10,"486 7th St, San Francisco, CA 94016" +271498,Apple Airpods Headphones,1,150,10/03/19 12:08,"8 Adams St, Boston, MA 02215" +271499,Flatscreen TV,1,300,10/07/19 17:27,"342 Madison St, New York City, NY 10001" +271500,Vareebadd Phone,1,400,10/19/19 16:12,"953 Sunset St, Boston, MA 02215" +271501,34in Ultrawide Monitor,1,379.99,10/11/19 20:03,"864 Johnson St, Austin, TX 73301" +271502,Wired Headphones,1,11.99,10/03/19 17:20,"703 10th St, San Francisco, CA 94016" +271503,Apple Airpods Headphones,1,150,10/24/19 23:06,"187 Washington St, Seattle, WA 98101" +271504,Apple Airpods Headphones,1,150,10/04/19 14:20,"251 Cherry St, Dallas, TX 75001" +271505,AA Batteries (4-pack),1,3.84,10/02/19 10:31,"315 Wilson St, Boston, MA 02215" +271506,LG Washing Machine,1,600.0,10/05/19 09:38,"532 Willow St, Boston, MA 02215" +271507,Lightning Charging Cable,1,14.95,10/11/19 01:29,"232 Ridge St, Atlanta, GA 30301" +271508,Bose SoundSport Headphones,1,99.99,10/14/19 19:33,"685 Pine St, Dallas, TX 75001" +271508,ThinkPad Laptop,1,999.99,10/14/19 19:33,"685 Pine St, Dallas, TX 75001" +271509,Google Phone,1,600,10/28/19 14:29,"214 Cedar St, Los Angeles, CA 90001" +271510,AA Batteries (4-pack),1,3.84,10/19/19 10:38,"210 2nd St, San Francisco, CA 94016" +271511,Lightning Charging Cable,1,14.95,10/25/19 23:32,"897 Lincoln St, Los Angeles, CA 90001" +271512,Bose SoundSport Headphones,1,99.99,10/20/19 15:22,"993 Sunset St, Los Angeles, CA 90001" +271513,Bose SoundSport Headphones,1,99.99,10/09/19 21:56,"853 Center St, Portland, OR 97035" +271514,Lightning Charging Cable,1,14.95,10/22/19 22:12,"325 Adams St, Los Angeles, CA 90001" +271515,AAA Batteries (4-pack),1,2.99,10/24/19 12:36,"672 4th St, Los Angeles, CA 90001" +271516,USB-C Charging Cable,1,11.95,10/31/19 09:18,"204 Ridge St, San Francisco, CA 94016" +271517,Flatscreen TV,1,300,10/07/19 17:07,"964 Church St, San Francisco, CA 94016" +271518,AAA Batteries (4-pack),1,2.99,10/09/19 21:37,"702 Walnut St, Boston, MA 02215" +271519,34in Ultrawide Monitor,1,379.99,10/22/19 10:48,"656 Park St, Atlanta, GA 30301" +271520,USB-C Charging Cable,1,11.95,10/06/19 07:19,"705 11th St, San Francisco, CA 94016" +271521,AAA Batteries (4-pack),1,2.99,10/06/19 17:45,"630 Washington St, Dallas, TX 75001" +271522,AA Batteries (4-pack),1,3.84,10/02/19 08:51,"789 11th St, Seattle, WA 98101" +271523,Apple Airpods Headphones,1,150,10/06/19 19:19,"487 Adams St, Seattle, WA 98101" +271524,AA Batteries (4-pack),1,3.84,10/04/19 19:09,"22 10th St, Los Angeles, CA 90001" +271525,27in FHD Monitor,1,149.99,10/14/19 21:19,"181 Cedar St, Atlanta, GA 30301" +271526,USB-C Charging Cable,1,11.95,10/20/19 10:08,"713 2nd St, Dallas, TX 75001" +271527,Apple Airpods Headphones,1,150,10/20/19 15:36,"603 Cherry St, San Francisco, CA 94016" +271528,USB-C Charging Cable,2,11.95,10/18/19 18:33,"851 Jefferson St, Los Angeles, CA 90001" +271529,Lightning Charging Cable,1,14.95,10/04/19 13:46,"827 Hickory St, Boston, MA 02215" +271530,AAA Batteries (4-pack),1,2.99,10/14/19 20:48,"546 11th St, Boston, MA 02215" +271531,27in 4K Gaming Monitor,1,389.99,10/19/19 11:27,"574 4th St, New York City, NY 10001" +271532,Google Phone,1,600,10/09/19 12:31,"239 1st St, Atlanta, GA 30301" +271532,Bose SoundSport Headphones,1,99.99,10/09/19 12:31,"239 1st St, Atlanta, GA 30301" +271533,AA Batteries (4-pack),1,3.84,10/23/19 11:31,"190 Madison St, San Francisco, CA 94016" +271534,Lightning Charging Cable,1,14.95,10/07/19 17:54,"882 Maple St, San Francisco, CA 94016" +271535,27in FHD Monitor,1,149.99,10/20/19 22:58,"96 9th St, Portland, OR 97035" +271536,USB-C Charging Cable,1,11.95,10/11/19 16:59,"804 Forest St, New York City, NY 10001" +271537,AAA Batteries (4-pack),1,2.99,10/14/19 17:10,"541 Spruce St, Seattle, WA 98101" +271538,Apple Airpods Headphones,1,150,10/28/19 06:03,"605 5th St, Austin, TX 73301" +271539,Lightning Charging Cable,1,14.95,10/17/19 12:20,"191 Maple St, Los Angeles, CA 90001" +271540,Macbook Pro Laptop,1,1700,10/20/19 13:37,"340 Park St, Atlanta, GA 30301" +271541,AA Batteries (4-pack),1,3.84,10/10/19 18:48,"177 1st St, Boston, MA 02215" +271542,27in 4K Gaming Monitor,1,389.99,10/16/19 12:39,"62 Walnut St, Atlanta, GA 30301" +271543,AA Batteries (4-pack),2,3.84,10/03/19 08:00,"402 Walnut St, Boston, MA 02215" +271544,USB-C Charging Cable,1,11.95,10/21/19 21:25,"912 South St, Boston, MA 02215" +271545,Lightning Charging Cable,1,14.95,10/23/19 21:26,"55 4th St, Austin, TX 73301" +271546,Bose SoundSport Headphones,1,99.99,10/23/19 21:37,"986 Park St, New York City, NY 10001" +271547,USB-C Charging Cable,1,11.95,10/09/19 21:09,"218 South St, New York City, NY 10001" +271548,Apple Airpods Headphones,1,150,10/27/19 08:09,"654 Elm St, Seattle, WA 98101" +271549,Google Phone,1,600,10/18/19 15:39,"714 10th St, San Francisco, CA 94016" +271550,Lightning Charging Cable,1,14.95,10/27/19 10:53,"896 Cedar St, New York City, NY 10001" +271551,Apple Airpods Headphones,1,150,10/11/19 11:24,"134 Meadow St, Los Angeles, CA 90001" +271552,Lightning Charging Cable,1,14.95,10/29/19 18:19,"30 10th St, Los Angeles, CA 90001" +271553,Lightning Charging Cable,1,14.95,10/17/19 20:47,"623 4th St, Portland, OR 97035" +271554,Wired Headphones,2,11.99,10/02/19 20:24,"268 6th St, Seattle, WA 98101" +271554,Wired Headphones,1,11.99,10/02/19 20:24,"268 6th St, Seattle, WA 98101" +271555,AAA Batteries (4-pack),1,2.99,10/23/19 08:31,"205 Church St, Dallas, TX 75001" +271556,AA Batteries (4-pack),2,3.84,10/30/19 16:30,"554 7th St, Boston, MA 02215" +271557,Lightning Charging Cable,2,14.95,10/16/19 19:51,"659 2nd St, Atlanta, GA 30301" +271558,Apple Airpods Headphones,1,150,10/29/19 20:20,"854 8th St, San Francisco, CA 94016" +271559,27in 4K Gaming Monitor,1,389.99,10/05/19 12:20,"154 Sunset St, San Francisco, CA 94016" +271560,AAA Batteries (4-pack),1,2.99,10/22/19 17:27,"775 Johnson St, Boston, MA 02215" +271561,Wired Headphones,2,11.99,10/03/19 21:11,"2 Lake St, New York City, NY 10001" +271562,AA Batteries (4-pack),1,3.84,10/20/19 08:56,"117 Cedar St, San Francisco, CA 94016" +271563,AA Batteries (4-pack),2,3.84,10/30/19 12:36,"3 Lakeview St, San Francisco, CA 94016" +271564,iPhone,2,700,10/27/19 08:57,"736 Hill St, San Francisco, CA 94016" +271565,USB-C Charging Cable,2,11.95,10/19/19 19:36,"999 7th St, New York City, NY 10001" +271566,Lightning Charging Cable,1,14.95,10/19/19 21:40,"377 6th St, Austin, TX 73301" +271567,AAA Batteries (4-pack),2,2.99,10/18/19 21:42,"528 Forest St, Dallas, TX 75001" +271568,Wired Headphones,1,11.99,10/02/19 10:09,"298 Chestnut St, Seattle, WA 98101" +271569,iPhone,1,700,10/09/19 10:21,"841 Adams St, Austin, TX 73301" +271570,Lightning Charging Cable,1,14.95,10/22/19 16:27,"816 Willow St, Seattle, WA 98101" +271571,iPhone,1,700,10/27/19 22:02,"539 Cedar St, New York City, NY 10001" +271571,Wired Headphones,1,11.99,10/27/19 22:02,"539 Cedar St, New York City, NY 10001" +271572,USB-C Charging Cable,1,11.95,10/07/19 12:09,"304 Hill St, New York City, NY 10001" +271573,USB-C Charging Cable,1,11.95,10/05/19 08:38,"847 Sunset St, Boston, MA 02215" +271574,Bose SoundSport Headphones,1,99.99,10/12/19 18:24,"269 Sunset St, Seattle, WA 98101" +271575,Bose SoundSport Headphones,1,99.99,10/15/19 23:27,"487 5th St, Atlanta, GA 30301" +271576,27in FHD Monitor,1,149.99,10/04/19 08:02,"276 Chestnut St, Dallas, TX 75001" +271577,AA Batteries (4-pack),1,3.84,10/30/19 20:47,"173 8th St, Seattle, WA 98101" +271578,USB-C Charging Cable,1,11.95,10/24/19 17:27,"171 Maple St, San Francisco, CA 94016" +271579,AA Batteries (4-pack),2,3.84,10/08/19 21:16,"747 Pine St, San Francisco, CA 94016" +271580,USB-C Charging Cable,1,11.95,10/30/19 21:34,"748 Main St, Seattle, WA 98101" +271581,27in FHD Monitor,1,149.99,10/16/19 14:32,"319 Main St, Seattle, WA 98101" +271582,27in 4K Gaming Monitor,1,389.99,10/05/19 20:14,"852 Lincoln St, New York City, NY 10001" +271583,Bose SoundSport Headphones,1,99.99,10/12/19 21:25,"245 Park St, Los Angeles, CA 90001" +271584,USB-C Charging Cable,1,11.95,10/24/19 23:17,"778 12th St, Seattle, WA 98101" +271585,Wired Headphones,1,11.99,10/12/19 17:03,"572 Jefferson St, Atlanta, GA 30301" +271586,AA Batteries (4-pack),1,3.84,10/18/19 08:14,"976 Ridge St, Austin, TX 73301" +271587,AA Batteries (4-pack),2,3.84,10/15/19 12:33,"372 North St, San Francisco, CA 94016" +271588,Wired Headphones,1,11.99,10/23/19 16:36,"614 River St, Boston, MA 02215" +271589,Vareebadd Phone,1,400,10/04/19 15:27,"517 Pine St, San Francisco, CA 94016" +271590,Apple Airpods Headphones,1,150,10/21/19 22:49,"53 Jackson St, New York City, NY 10001" +271591,20in Monitor,1,109.99,10/05/19 20:03,"292 5th St, Seattle, WA 98101" +271592,iPhone,1,700,10/20/19 15:02,"59 Willow St, Los Angeles, CA 90001" +271592,Apple Airpods Headphones,1,150,10/20/19 15:02,"59 Willow St, Los Angeles, CA 90001" +271593,AAA Batteries (4-pack),1,2.99,10/24/19 18:30,"825 Adams St, Seattle, WA 98101" +271594,USB-C Charging Cable,1,11.95,10/15/19 12:01,"321 5th St, Boston, MA 02215" +271595,AAA Batteries (4-pack),2,2.99,10/29/19 00:39,"825 Hill St, New York City, NY 10001" +271596,Apple Airpods Headphones,1,150,10/15/19 15:19,"910 Park St, Portland, OR 97035" +271597,AA Batteries (4-pack),1,3.84,10/12/19 12:35,"554 River St, Austin, TX 73301" +271598,iPhone,1,700,10/21/19 19:15,"755 Dogwood St, San Francisco, CA 94016" +271599,Lightning Charging Cable,1,14.95,10/13/19 12:26,"687 8th St, San Francisco, CA 94016" +271600,27in 4K Gaming Monitor,1,389.99,10/03/19 23:06,"915 Chestnut St, San Francisco, CA 94016" +,,,,, +271601,iPhone,1,700,10/28/19 22:18,"482 Meadow St, Los Angeles, CA 90001" +271601,Lightning Charging Cable,1,14.95,10/28/19 22:18,"482 Meadow St, Los Angeles, CA 90001" +271601,Wired Headphones,1,11.99,10/28/19 22:18,"482 Meadow St, Los Angeles, CA 90001" +271602,Wired Headphones,1,11.99,10/29/19 12:46,"282 Jackson St, Portland, OR 97035" +271603,iPhone,1,700,10/23/19 12:57,"176 9th St, San Francisco, CA 94016" +271603,Lightning Charging Cable,2,14.95,10/23/19 12:57,"176 9th St, San Francisco, CA 94016" +271604,USB-C Charging Cable,1,11.95,10/25/19 18:15,"915 10th St, Los Angeles, CA 90001" +271605,Bose SoundSport Headphones,1,99.99,10/11/19 15:04,"616 Forest St, Dallas, TX 75001" +271606,27in 4K Gaming Monitor,1,389.99,10/27/19 18:33,"759 12th St, Los Angeles, CA 90001" +271607,USB-C Charging Cable,1,11.95,10/15/19 15:01,"257 9th St, Dallas, TX 75001" +271608,USB-C Charging Cable,1,11.95,10/31/19 21:25,"804 West St, San Francisco, CA 94016" +271609,iPhone,1,700,10/06/19 08:49,"912 7th St, San Francisco, CA 94016" +271610,USB-C Charging Cable,1,11.95,10/02/19 11:13,"866 Hickory St, Boston, MA 02215" +271611,Lightning Charging Cable,1,14.95,10/14/19 10:46,"399 7th St, New York City, NY 10001" +271612,27in FHD Monitor,1,149.99,10/14/19 12:35,"879 Elm St, Dallas, TX 75001" +271613,AAA Batteries (4-pack),3,2.99,10/01/19 19:19,"717 Walnut St, Portland, OR 97035" +271614,Wired Headphones,1,11.99,10/28/19 16:35,"363 Lakeview St, Dallas, TX 75001" +,,,,, +271615,AA Batteries (4-pack),1,3.84,10/23/19 13:10,"293 9th St, Los Angeles, CA 90001" +271616,AAA Batteries (4-pack),1,2.99,10/18/19 13:50,"412 Johnson St, San Francisco, CA 94016" +271617,AAA Batteries (4-pack),1,2.99,10/08/19 13:27,"252 River St, Boston, MA 02215" +271618,USB-C Charging Cable,1,11.95,10/08/19 09:24,"808 Highland St, Austin, TX 73301" +271619,Bose SoundSport Headphones,1,99.99,10/14/19 19:15,"963 West St, Dallas, TX 75001" +271620,34in Ultrawide Monitor,1,379.99,10/24/19 19:31,"750 11th St, Austin, TX 73301" +271621,AAA Batteries (4-pack),1,2.99,10/14/19 19:49,"357 Dogwood St, New York City, NY 10001" +271622,Macbook Pro Laptop,1,1700,10/02/19 18:26,"576 Cherry St, San Francisco, CA 94016" +271623,AA Batteries (4-pack),2,3.84,10/13/19 19:27,"727 Highland St, Austin, TX 73301" +271624,Apple Airpods Headphones,1,150,10/22/19 16:46,"287 Lakeview St, Dallas, TX 75001" +271625,Wired Headphones,1,11.99,10/12/19 11:18,"124 River St, San Francisco, CA 94016" +271626,Google Phone,1,600,10/16/19 21:13,"184 Johnson St, Boston, MA 02215" +271626,USB-C Charging Cable,1,11.95,10/16/19 21:13,"184 Johnson St, Boston, MA 02215" +271626,Wired Headphones,1,11.99,10/16/19 21:13,"184 Johnson St, Boston, MA 02215" +271627,27in FHD Monitor,1,149.99,10/21/19 13:25,"351 Park St, Boston, MA 02215" +271628,Apple Airpods Headphones,1,150,10/23/19 13:29,"516 Madison St, Los Angeles, CA 90001" +271629,20in Monitor,1,109.99,10/29/19 12:09,"950 Sunset St, San Francisco, CA 94016" +271630,AA Batteries (4-pack),1,3.84,10/22/19 17:13,"831 8th St, Dallas, TX 75001" +271631,Lightning Charging Cable,1,14.95,10/13/19 00:07,"111 Walnut St, San Francisco, CA 94016" +271632,Macbook Pro Laptop,1,1700,10/29/19 10:54,"376 5th St, San Francisco, CA 94016" +271633,USB-C Charging Cable,1,11.95,10/14/19 17:16,"598 Washington St, New York City, NY 10001" +271634,Lightning Charging Cable,1,14.95,10/03/19 22:58,"623 Cherry St, San Francisco, CA 94016" +271635,AAA Batteries (4-pack),1,2.99,10/13/19 17:01,"226 Walnut St, Dallas, TX 75001" +271636,Apple Airpods Headphones,1,150,10/26/19 20:55,"244 Johnson St, Boston, MA 02215" +271637,27in 4K Gaming Monitor,1,389.99,10/15/19 15:14,"200 Elm St, Portland, OR 97035" +271637,Apple Airpods Headphones,1,150,10/15/19 15:14,"200 Elm St, Portland, OR 97035" +271638,AAA Batteries (4-pack),1,2.99,10/25/19 10:50,"375 Main St, Los Angeles, CA 90001" +271639,Lightning Charging Cable,1,14.95,10/11/19 23:46,"763 Highland St, Seattle, WA 98101" +271640,Apple Airpods Headphones,1,150,10/11/19 13:18,"216 Jackson St, Dallas, TX 75001" +271641,Wired Headphones,1,11.99,10/07/19 17:01,"295 9th St, Portland, OR 97035" +271642,AA Batteries (4-pack),1,3.84,10/30/19 13:51,"361 Sunset St, San Francisco, CA 94016" +271643,Flatscreen TV,1,300,10/05/19 18:43,"745 6th St, San Francisco, CA 94016" +271644,Bose SoundSport Headphones,1,99.99,10/10/19 17:36,"985 2nd St, Portland, OR 97035" +271645,AA Batteries (4-pack),4,3.84,10/07/19 12:42,"949 Jackson St, Boston, MA 02215" +271646,USB-C Charging Cable,1,11.95,10/21/19 10:30,"231 Jefferson St, San Francisco, CA 94016" +271647,USB-C Charging Cable,1,11.95,10/15/19 23:48,"543 Adams St, Seattle, WA 98101" +271648,Wired Headphones,1,11.99,10/25/19 07:50,"437 Jefferson St, New York City, NY 10001" +271649,27in FHD Monitor,1,149.99,10/05/19 20:37,"315 Hill St, Atlanta, GA 30301" +271650,Lightning Charging Cable,1,14.95,10/09/19 00:36,"265 Adams St, Dallas, TX 75001" +271651,Lightning Charging Cable,4,14.95,11/01/19 00:23,"697 Elm St, San Francisco, CA 94016" +271652,AAA Batteries (4-pack),1,2.99,10/16/19 19:44,"493 Hill St, Atlanta, GA 30301" +271653,iPhone,1,700,10/18/19 20:05,"81 Jefferson St, Seattle, WA 98101" +271653,Wired Headphones,1,11.99,10/18/19 20:05,"81 Jefferson St, Seattle, WA 98101" +271654,Wired Headphones,1,11.99,10/01/19 09:24,"710 Madison St, San Francisco, CA 94016" +271655,Bose SoundSport Headphones,1,99.99,10/08/19 16:29,"489 Sunset St, San Francisco, CA 94016" +271656,Macbook Pro Laptop,1,1700,10/03/19 18:52,"815 Washington St, Boston, MA 02215" +271657,20in Monitor,1,109.99,10/30/19 02:22,"525 Wilson St, Atlanta, GA 30301" +271658,Lightning Charging Cable,1,14.95,10/18/19 20:47,"305 Jackson St, Seattle, WA 98101" +271659,Apple Airpods Headphones,1,150,10/20/19 19:18,"678 North St, Seattle, WA 98101" +271660,Lightning Charging Cable,1,14.95,10/17/19 08:41,"878 Cherry St, Dallas, TX 75001" +271661,AA Batteries (4-pack),1,3.84,10/31/19 09:35,"569 8th St, Seattle, WA 98101" +271662,iPhone,1,700,10/29/19 11:13,"247 Center St, Portland, OR 97035" +271663,Wired Headphones,1,11.99,10/02/19 09:46,"790 Park St, Dallas, TX 75001" +271664,AAA Batteries (4-pack),1,2.99,10/24/19 18:35,"170 Washington St, Portland, OR 97035" +271665,Macbook Pro Laptop,1,1700,10/16/19 17:10,"799 Lake St, San Francisco, CA 94016" +271666,Bose SoundSport Headphones,1,99.99,10/29/19 07:33,"279 Hill St, Seattle, WA 98101" +271667,iPhone,1,700,10/29/19 13:17,"617 Main St, Seattle, WA 98101" +271668,Macbook Pro Laptop,1,1700,10/09/19 11:56,"320 5th St, Dallas, TX 75001" +271669,Lightning Charging Cable,1,14.95,10/28/19 08:54,"364 14th St, San Francisco, CA 94016" +271670,USB-C Charging Cable,1,11.95,10/26/19 21:08,"987 7th St, San Francisco, CA 94016" +271671,Bose SoundSport Headphones,2,99.99,10/26/19 23:09,"348 1st St, New York City, NY 10001" +271672,USB-C Charging Cable,1,11.95,10/08/19 18:41,"209 Hickory St, Los Angeles, CA 90001" +271673,ThinkPad Laptop,1,999.99,10/07/19 05:16,"596 Ridge St, New York City, NY 10001" +271674,AAA Batteries (4-pack),1,2.99,10/10/19 18:06,"689 Madison St, New York City, NY 10001" +271675,Apple Airpods Headphones,1,150,10/22/19 15:16,"498 5th St, Austin, TX 73301" +271676,27in FHD Monitor,1,149.99,10/18/19 23:19,"501 Hickory St, San Francisco, CA 94016" +271677,Lightning Charging Cable,1,14.95,10/14/19 11:21,"278 Wilson St, Los Angeles, CA 90001" +271678,Apple Airpods Headphones,1,150,10/05/19 10:07,"943 Wilson St, New York City, NY 10001" +271679,iPhone,1,700,10/30/19 16:08,"241 Ridge St, Dallas, TX 75001" +271680,Lightning Charging Cable,1,14.95,10/20/19 22:22,"152 Lake St, San Francisco, CA 94016" +271681,27in FHD Monitor,2,149.99,10/16/19 12:10,"587 Meadow St, Dallas, TX 75001" +271682,AAA Batteries (4-pack),1,2.99,10/20/19 18:16,"302 5th St, Austin, TX 73301" +271683,Bose SoundSport Headphones,1,99.99,10/27/19 19:13,"788 Wilson St, San Francisco, CA 94016" +271684,Macbook Pro Laptop,1,1700,10/16/19 16:16,"303 8th St, Los Angeles, CA 90001" +271685,27in 4K Gaming Monitor,1,389.99,10/27/19 12:33,"32 Maple St, Los Angeles, CA 90001" +271686,Lightning Charging Cable,1,14.95,10/02/19 10:20,"231 Adams St, San Francisco, CA 94016" +271687,Bose SoundSport Headphones,1,99.99,10/29/19 18:16,"260 Wilson St, Boston, MA 02215" +271688,Apple Airpods Headphones,1,150,10/12/19 17:38,"627 Sunset St, San Francisco, CA 94016" +271689,AA Batteries (4-pack),1,3.84,10/04/19 12:28,"477 Johnson St, San Francisco, CA 94016" +271690,27in 4K Gaming Monitor,1,389.99,10/27/19 07:30,"705 Church St, Los Angeles, CA 90001" +271691,27in FHD Monitor,1,149.99,10/30/19 15:25,"748 Jefferson St, Dallas, TX 75001" +271692,27in 4K Gaming Monitor,1,389.99,10/04/19 10:43,"484 12th St, New York City, NY 10001" +271693,20in Monitor,1,109.99,10/15/19 20:21,"406 Washington St, Seattle, WA 98101" +271694,USB-C Charging Cable,1,11.95,10/30/19 19:19,"666 Highland St, Seattle, WA 98101" +271695,USB-C Charging Cable,1,11.95,10/04/19 12:47,"581 Hickory St, Portland, OR 97035" +271696,USB-C Charging Cable,1,11.95,10/22/19 14:33,"521 10th St, Dallas, TX 75001" +271697,AAA Batteries (4-pack),1,2.99,10/20/19 17:27,"325 Park St, San Francisco, CA 94016" +271698,iPhone,1,700,10/24/19 18:01,"557 North St, San Francisco, CA 94016" +271699,AA Batteries (4-pack),1,3.84,10/27/19 15:00,"410 11th St, San Francisco, CA 94016" +271700,AA Batteries (4-pack),1,3.84,10/17/19 17:49,"219 Center St, Dallas, TX 75001" +271701,Lightning Charging Cable,1,14.95,10/07/19 17:30,"702 10th St, Seattle, WA 98101" +271702,AA Batteries (4-pack),1,3.84,10/23/19 15:31,"677 Spruce St, Los Angeles, CA 90001" +271703,Wired Headphones,1,11.99,10/18/19 15:16,"839 9th St, New York City, NY 10001" +271704,LG Dryer,1,600.0,10/12/19 15:45,"23 Jackson St, San Francisco, CA 94016" +271705,27in 4K Gaming Monitor,1,389.99,10/20/19 14:53,"945 Lakeview St, Los Angeles, CA 90001" +271706,Bose SoundSport Headphones,1,99.99,10/30/19 22:24,"607 Walnut St, Los Angeles, CA 90001" +271707,20in Monitor,1,109.99,10/26/19 21:52,"936 Meadow St, Dallas, TX 75001" +271708,AAA Batteries (4-pack),4,2.99,10/22/19 19:55,"509 Hickory St, Atlanta, GA 30301" +271709,27in FHD Monitor,1,149.99,10/28/19 14:28,"647 Johnson St, Boston, MA 02215" +271710,Wired Headphones,1,11.99,10/26/19 10:15,"505 Lincoln St, San Francisco, CA 94016" +271711,Bose SoundSport Headphones,1,99.99,10/09/19 12:20,"70 2nd St, Dallas, TX 75001" +271712,USB-C Charging Cable,1,11.95,10/17/19 10:54,"124 Washington St, Boston, MA 02215" +271713,Google Phone,1,600,10/22/19 17:55,"888 10th St, Portland, OR 97035" +271714,Lightning Charging Cable,1,14.95,10/16/19 16:29,"82 South St, Seattle, WA 98101" +271715,USB-C Charging Cable,1,11.95,10/02/19 08:26,"593 Spruce St, New York City, NY 10001" +271716,USB-C Charging Cable,1,11.95,10/31/19 21:32,"232 Johnson St, San Francisco, CA 94016" +271717,Lightning Charging Cable,1,14.95,10/19/19 14:13,"398 6th St, San Francisco, CA 94016" +271718,Apple Airpods Headphones,1,150,10/20/19 14:47,"587 Church St, Los Angeles, CA 90001" +271719,AA Batteries (4-pack),1,3.84,10/07/19 21:43,"786 10th St, New York City, NY 10001" +271720,Macbook Pro Laptop,1,1700,10/08/19 19:54,"403 Jefferson St, San Francisco, CA 94016" +271721,iPhone,1,700,10/05/19 11:14,"375 13th St, Seattle, WA 98101" +271722,Lightning Charging Cable,1,14.95,10/21/19 11:52,"181 Cedar St, Dallas, TX 75001" +271723,USB-C Charging Cable,1,11.95,10/09/19 21:15,"194 Ridge St, San Francisco, CA 94016" +271724,Bose SoundSport Headphones,1,99.99,10/26/19 17:28,"527 2nd St, Austin, TX 73301" +271725,Lightning Charging Cable,1,14.95,10/13/19 15:13,"769 12th St, New York City, NY 10001" +271726,USB-C Charging Cable,1,11.95,10/21/19 15:14,"419 North St, Dallas, TX 75001" +271727,USB-C Charging Cable,1,11.95,10/20/19 07:26,"539 2nd St, Dallas, TX 75001" +271728,Bose SoundSport Headphones,1,99.99,10/22/19 21:33,"29 Dogwood St, Seattle, WA 98101" +271729,27in 4K Gaming Monitor,1,389.99,10/03/19 19:39,"250 Lake St, San Francisco, CA 94016" +271730,27in 4K Gaming Monitor,1,389.99,10/11/19 22:13,"40 Dogwood St, New York City, NY 10001" +271731,Macbook Pro Laptop,1,1700,10/06/19 20:07,"94 West St, Atlanta, GA 30301" +271732,USB-C Charging Cable,1,11.95,10/18/19 16:48,"55 Jackson St, Los Angeles, CA 90001" +271733,iPhone,1,700,10/20/19 17:55,"791 Cherry St, San Francisco, CA 94016" +271733,Lightning Charging Cable,1,14.95,10/20/19 17:55,"791 Cherry St, San Francisco, CA 94016" +271734,27in 4K Gaming Monitor,1,389.99,10/05/19 08:01,"626 South St, Los Angeles, CA 90001" +271735,Apple Airpods Headphones,1,150,10/23/19 08:49,"862 South St, Boston, MA 02215" +271736,34in Ultrawide Monitor,1,379.99,10/07/19 06:34,"788 Cedar St, Los Angeles, CA 90001" +271737,AAA Batteries (4-pack),1,2.99,10/04/19 21:12,"802 North St, Atlanta, GA 30301" +271738,AAA Batteries (4-pack),2,2.99,10/11/19 21:31,"952 6th St, Portland, ME 04101" +271739,Wired Headphones,1,11.99,10/18/19 11:32,"972 Hickory St, Los Angeles, CA 90001" +271739,Bose SoundSport Headphones,1,99.99,10/18/19 11:32,"972 Hickory St, Los Angeles, CA 90001" +271740,Wired Headphones,1,11.99,10/10/19 22:25,"528 12th St, Portland, ME 04101" +271741,AAA Batteries (4-pack),3,2.99,10/24/19 14:03,"375 Main St, Boston, MA 02215" +271742,AAA Batteries (4-pack),4,2.99,10/16/19 17:24,"113 Spruce St, Los Angeles, CA 90001" +271743,Wired Headphones,1,11.99,10/15/19 19:59,"100 Chestnut St, Los Angeles, CA 90001" +271744,AA Batteries (4-pack),1,3.84,10/19/19 08:05,"635 Adams St, Dallas, TX 75001" +271744,USB-C Charging Cable,1,11.95,10/19/19 08:05,"635 Adams St, Dallas, TX 75001" +271745,AAA Batteries (4-pack),2,2.99,10/15/19 12:53,"718 8th St, New York City, NY 10001" +271746,AA Batteries (4-pack),1,3.84,10/18/19 15:02,"232 11th St, San Francisco, CA 94016" +271747,Flatscreen TV,1,300,10/30/19 13:06,"580 Cherry St, San Francisco, CA 94016" +271747,Apple Airpods Headphones,1,150,10/30/19 13:06,"580 Cherry St, San Francisco, CA 94016" +271748,Apple Airpods Headphones,1,150,10/05/19 10:21,"571 Forest St, San Francisco, CA 94016" +271749,Apple Airpods Headphones,1,150,10/18/19 16:11,"573 Forest St, Portland, OR 97035" +271750,Macbook Pro Laptop,1,1700,10/11/19 11:08,"347 West St, San Francisco, CA 94016" +271751,AAA Batteries (4-pack),1,2.99,10/06/19 11:57,"582 12th St, San Francisco, CA 94016" +271752,27in FHD Monitor,1,149.99,10/20/19 18:00,"322 Lake St, Dallas, TX 75001" +271753,20in Monitor,1,109.99,10/24/19 17:51,"69 Jefferson St, Seattle, WA 98101" +271754,USB-C Charging Cable,1,11.95,10/08/19 16:58,"72 Hickory St, Dallas, TX 75001" +271755,USB-C Charging Cable,1,11.95,10/17/19 05:19,"918 6th St, San Francisco, CA 94016" +271756,Lightning Charging Cable,1,14.95,10/06/19 11:49,"820 Pine St, San Francisco, CA 94016" +271757,Wired Headphones,1,11.99,10/27/19 12:02,"223 Pine St, Portland, OR 97035" +271758,USB-C Charging Cable,2,11.95,10/05/19 12:00,"579 10th St, San Francisco, CA 94016" +271759,AAA Batteries (4-pack),1,2.99,10/09/19 14:47,"707 Main St, New York City, NY 10001" +271760,Apple Airpods Headphones,1,150,10/08/19 21:38,"569 Hill St, Seattle, WA 98101" +271761,AA Batteries (4-pack),1,3.84,10/28/19 13:55,"292 Highland St, Los Angeles, CA 90001" +271762,Macbook Pro Laptop,1,1700,10/18/19 22:16,"689 West St, San Francisco, CA 94016" +271763,AA Batteries (4-pack),2,3.84,10/28/19 10:55,"199 Cherry St, Los Angeles, CA 90001" +271764,Apple Airpods Headphones,1,150,10/10/19 21:38,"581 Pine St, San Francisco, CA 94016" +271765,AAA Batteries (4-pack),2,2.99,10/14/19 20:15,"830 Park St, Atlanta, GA 30301" +271766,Google Phone,1,600,10/20/19 19:01,"649 9th St, Atlanta, GA 30301" +271767,Lightning Charging Cable,1,14.95,10/09/19 02:43,"362 Lakeview St, Los Angeles, CA 90001" +271768,Wired Headphones,1,11.99,10/11/19 19:48,"714 6th St, San Francisco, CA 94016" +271769,iPhone,1,700,10/05/19 01:16,"269 Jackson St, Seattle, WA 98101" +271770,AAA Batteries (4-pack),1,2.99,10/05/19 12:06,"203 North St, Los Angeles, CA 90001" +271771,Macbook Pro Laptop,1,1700,10/24/19 20:03,"682 Church St, San Francisco, CA 94016" +271772,Google Phone,1,600,10/28/19 18:48,"259 River St, Seattle, WA 98101" +271773,Bose SoundSport Headphones,1,99.99,10/07/19 21:48,"651 14th St, Seattle, WA 98101" +271774,Google Phone,1,600,10/05/19 22:33,"253 Center St, Seattle, WA 98101" +271775,Bose SoundSport Headphones,1,99.99,10/04/19 21:02,"625 7th St, Portland, ME 04101" +271776,Google Phone,1,600,10/12/19 20:30,"730 Lake St, New York City, NY 10001" +271777,Lightning Charging Cable,1,14.95,10/28/19 23:31,"506 10th St, Portland, OR 97035" +271778,27in FHD Monitor,1,149.99,10/28/19 11:00,"911 West St, San Francisco, CA 94016" +271779,Apple Airpods Headphones,1,150,10/10/19 16:39,"366 1st St, San Francisco, CA 94016" +271780,USB-C Charging Cable,1,11.95,10/02/19 23:12,"452 Cedar St, Dallas, TX 75001" +271781,Wired Headphones,1,11.99,10/24/19 07:19,"983 Dogwood St, San Francisco, CA 94016" +271782,USB-C Charging Cable,1,11.95,10/23/19 10:32,"308 Elm St, New York City, NY 10001" +271783,27in 4K Gaming Monitor,1,389.99,10/26/19 14:19,"819 Wilson St, Portland, OR 97035" +271784,Lightning Charging Cable,1,14.95,10/21/19 12:22,"145 8th St, Austin, TX 73301" +271785,AA Batteries (4-pack),1,3.84,10/02/19 15:46,"730 8th St, Seattle, WA 98101" +271786,LG Dryer,1,600.0,10/08/19 10:51,"907 South St, Portland, OR 97035" +271787,Bose SoundSport Headphones,1,99.99,10/16/19 16:22,"137 Lake St, Seattle, WA 98101" +271788,Apple Airpods Headphones,1,150,10/13/19 14:44,"824 Walnut St, Boston, MA 02215" +271789,AAA Batteries (4-pack),1,2.99,10/01/19 23:06,"305 4th St, San Francisco, CA 94016" +271790,Apple Airpods Headphones,1,150,10/12/19 13:19,"389 South St, New York City, NY 10001" +271791,Apple Airpods Headphones,1,150,10/29/19 20:49,"43 Main St, Atlanta, GA 30301" +271792,Bose SoundSport Headphones,1,99.99,10/20/19 12:43,"792 Ridge St, San Francisco, CA 94016" +271793,USB-C Charging Cable,1,11.95,10/17/19 16:41,"231 Cherry St, San Francisco, CA 94016" +271794,Wired Headphones,1,11.99,10/07/19 17:50,"658 Wilson St, San Francisco, CA 94016" +271795,27in 4K Gaming Monitor,1,389.99,10/11/19 14:56,"159 Lake St, Boston, MA 02215" +271796,AAA Batteries (4-pack),1,2.99,10/03/19 13:13,"521 Johnson St, Atlanta, GA 30301" +271797,AA Batteries (4-pack),1,3.84,10/05/19 12:56,"8 Church St, Seattle, WA 98101" +271798,27in 4K Gaming Monitor,1,389.99,10/10/19 17:59,"597 8th St, Atlanta, GA 30301" +271799,AAA Batteries (4-pack),1,2.99,10/19/19 13:52,"855 Hickory St, Dallas, TX 75001" +271800,AAA Batteries (4-pack),1,2.99,10/17/19 19:16,"134 Elm St, Los Angeles, CA 90001" +271801,Apple Airpods Headphones,1,150,10/22/19 15:02,"840 West St, Dallas, TX 75001" +271802,Lightning Charging Cable,1,14.95,10/17/19 21:53,"943 Washington St, Dallas, TX 75001" +271803,AAA Batteries (4-pack),4,2.99,10/22/19 20:37,"340 Sunset St, Atlanta, GA 30301" +271804,Wired Headphones,1,11.99,10/08/19 21:33,"278 4th St, Los Angeles, CA 90001" +271805,Wired Headphones,1,11.99,10/09/19 12:33,"760 12th St, San Francisco, CA 94016" +271806,27in FHD Monitor,1,149.99,10/09/19 22:42,"668 Madison St, Atlanta, GA 30301" +271807,AAA Batteries (4-pack),1,2.99,10/13/19 19:11,"628 Chestnut St, Seattle, WA 98101" +271808,Wired Headphones,1,11.99,10/27/19 16:08,"682 Lake St, Seattle, WA 98101" +271809,Google Phone,1,600,10/13/19 11:49,"178 South St, Los Angeles, CA 90001" +271810,USB-C Charging Cable,1,11.95,10/19/19 00:26,"764 10th St, San Francisco, CA 94016" +271811,AA Batteries (4-pack),1,3.84,10/19/19 17:53,"359 Adams St, Los Angeles, CA 90001" +271812,USB-C Charging Cable,1,11.95,10/22/19 21:23,"948 Main St, New York City, NY 10001" +271813,USB-C Charging Cable,1,11.95,10/27/19 22:12,"865 Willow St, Los Angeles, CA 90001" +271814,Bose SoundSport Headphones,1,99.99,10/27/19 08:28,"518 Cedar St, San Francisco, CA 94016" +271815,iPhone,1,700,10/29/19 11:49,"690 Center St, New York City, NY 10001" +271816,AA Batteries (4-pack),1,3.84,10/19/19 14:11,"39 Meadow St, Atlanta, GA 30301" +271816,Lightning Charging Cable,1,14.95,10/19/19 14:11,"39 Meadow St, Atlanta, GA 30301" +271817,Apple Airpods Headphones,1,150,10/26/19 23:42,"692 Lincoln St, Portland, OR 97035" +271818,AAA Batteries (4-pack),1,2.99,10/16/19 08:42,"117 Hill St, Portland, OR 97035" +271819,Wired Headphones,1,11.99,10/26/19 13:10,"478 Dogwood St, Boston, MA 02215" +271820,Lightning Charging Cable,1,14.95,10/27/19 21:31,"770 Maple St, Atlanta, GA 30301" +271821,27in 4K Gaming Monitor,1,389.99,10/02/19 15:32,"566 South St, Portland, OR 97035" +271822,Wired Headphones,1,11.99,10/02/19 23:32,"701 Dogwood St, San Francisco, CA 94016" +271823,Wired Headphones,1,11.99,10/08/19 21:18,"927 South St, San Francisco, CA 94016" +271824,AAA Batteries (4-pack),1,2.99,10/19/19 01:09,"220 Chestnut St, San Francisco, CA 94016" +271825,ThinkPad Laptop,1,999.99,10/28/19 11:27,"993 Johnson St, Austin, TX 73301" +271826,Apple Airpods Headphones,1,150,10/09/19 05:46,"422 4th St, New York City, NY 10001" +271827,Wired Headphones,1,11.99,10/31/19 14:06,"706 Spruce St, New York City, NY 10001" +271828,27in FHD Monitor,1,149.99,10/25/19 18:15,"367 River St, Boston, MA 02215" +271829,Bose SoundSport Headphones,1,99.99,10/23/19 21:41,"92 Walnut St, Portland, OR 97035" +271830,Bose SoundSport Headphones,1,99.99,10/28/19 09:46,"871 Lakeview St, Seattle, WA 98101" +271831,Lightning Charging Cable,1,14.95,10/03/19 19:22,"618 Madison St, Seattle, WA 98101" +271832,USB-C Charging Cable,1,11.95,10/01/19 12:54,"20 9th St, San Francisco, CA 94016" +271833,USB-C Charging Cable,1,11.95,10/29/19 20:31,"603 10th St, San Francisco, CA 94016" +271834,Apple Airpods Headphones,1,150,10/08/19 21:55,"193 Johnson St, Portland, OR 97035" +271835,iPhone,1,700,10/19/19 22:30,"97 Johnson St, Austin, TX 73301" +271835,Wired Headphones,1,11.99,10/19/19 22:30,"97 Johnson St, Austin, TX 73301" +271836,USB-C Charging Cable,1,11.95,10/29/19 12:52,"213 Hickory St, Portland, ME 04101" +271837,Wired Headphones,1,11.99,10/23/19 19:30,"457 14th St, San Francisco, CA 94016" +271837,Wired Headphones,1,11.99,10/23/19 19:30,"457 14th St, San Francisco, CA 94016" +271838,USB-C Charging Cable,1,11.95,10/31/19 19:13,"232 Church St, Atlanta, GA 30301" +271839,AAA Batteries (4-pack),3,2.99,10/23/19 09:36,"571 Johnson St, Boston, MA 02215" +271840,Lightning Charging Cable,1,14.95,10/23/19 16:58,"235 Maple St, San Francisco, CA 94016" +271841,Wired Headphones,1,11.99,10/12/19 15:45,"391 Willow St, New York City, NY 10001" +271842,Lightning Charging Cable,1,14.95,10/07/19 15:45,"465 River St, Portland, OR 97035" +271843,Flatscreen TV,1,300,10/04/19 08:07,"882 Jefferson St, San Francisco, CA 94016" +271844,Lightning Charging Cable,1,14.95,10/25/19 02:19,"874 Jackson St, New York City, NY 10001" +271845,AAA Batteries (4-pack),3,2.99,10/06/19 11:29,"519 10th St, San Francisco, CA 94016" +271846,Wired Headphones,1,11.99,10/31/19 20:48,"633 Washington St, San Francisco, CA 94016" +271847,Apple Airpods Headphones,1,150,10/27/19 23:39,"609 6th St, Seattle, WA 98101" +271848,Wired Headphones,1,11.99,10/18/19 00:41,"644 Center St, Dallas, TX 75001" +271849,Wired Headphones,1,11.99,10/11/19 21:43,"322 Main St, Portland, OR 97035" +271850,iPhone,1,700,10/28/19 16:13,"98 Forest St, Los Angeles, CA 90001" +271850,Lightning Charging Cable,1,14.95,10/28/19 16:13,"98 Forest St, Los Angeles, CA 90001" +271850,Apple Airpods Headphones,1,150,10/28/19 16:13,"98 Forest St, Los Angeles, CA 90001" +271851,iPhone,1,700,10/18/19 13:22,"609 Jefferson St, San Francisco, CA 94016" +271851,Lightning Charging Cable,1,14.95,10/18/19 13:22,"609 Jefferson St, San Francisco, CA 94016" +271852,27in 4K Gaming Monitor,1,389.99,10/31/19 23:41,"837 Lake St, Los Angeles, CA 90001" +271853,USB-C Charging Cable,1,11.95,10/04/19 12:10,"49 Hill St, Austin, TX 73301" +271854,Flatscreen TV,1,300,10/03/19 13:06,"446 Main St, Seattle, WA 98101" +271855,Wired Headphones,1,11.99,10/09/19 17:41,"885 14th St, New York City, NY 10001" +271856,ThinkPad Laptop,1,999.99,10/23/19 21:50,"242 Spruce St, Portland, OR 97035" +271857,iPhone,1,700,10/04/19 06:10,"379 Ridge St, Atlanta, GA 30301" +271857,Wired Headphones,1,11.99,10/04/19 06:10,"379 Ridge St, Atlanta, GA 30301" +271858,AA Batteries (4-pack),1,3.84,10/05/19 19:15,"328 Lakeview St, New York City, NY 10001" +271859,AAA Batteries (4-pack),1,2.99,10/09/19 16:10,"365 Ridge St, Portland, OR 97035" +271860,ThinkPad Laptop,1,999.99,10/31/19 19:53,"526 West St, San Francisco, CA 94016" +271861,AA Batteries (4-pack),2,3.84,10/22/19 21:40,"576 Spruce St, Boston, MA 02215" +271862,Bose SoundSport Headphones,1,99.99,10/31/19 18:13,"95 Park St, Portland, OR 97035" +271863,Wired Headphones,1,11.99,10/23/19 22:31,"774 11th St, Los Angeles, CA 90001" +271864,27in FHD Monitor,1,149.99,10/14/19 10:01,"224 Lake St, Portland, OR 97035" +271865,Vareebadd Phone,1,400,10/24/19 20:29,"483 Cedar St, Atlanta, GA 30301" +271865,Wired Headphones,1,11.99,10/24/19 20:29,"483 Cedar St, Atlanta, GA 30301" +271866,Lightning Charging Cable,1,14.95,10/19/19 09:34,"223 Chestnut St, New York City, NY 10001" +271867,USB-C Charging Cable,1,11.95,10/12/19 09:54,"703 North St, New York City, NY 10001" +271868,AA Batteries (4-pack),2,3.84,10/18/19 16:19,"705 Chestnut St, New York City, NY 10001" +271869,ThinkPad Laptop,1,999.99,10/16/19 11:46,"741 13th St, Boston, MA 02215" +271870,Bose SoundSport Headphones,1,99.99,10/10/19 18:19,"443 1st St, New York City, NY 10001" +271871,Flatscreen TV,1,300,10/04/19 23:40,"204 Walnut St, Atlanta, GA 30301" +271872,Apple Airpods Headphones,1,150,10/14/19 07:53,"955 Chestnut St, San Francisco, CA 94016" +271873,AA Batteries (4-pack),1,3.84,10/25/19 20:20,"350 Lake St, New York City, NY 10001" +271874,Google Phone,1,600,10/28/19 17:12,"338 14th St, Seattle, WA 98101" +271875,AA Batteries (4-pack),1,3.84,10/26/19 09:45,"28 South St, Los Angeles, CA 90001" +271876,Lightning Charging Cable,1,14.95,10/07/19 11:31,"435 River St, Los Angeles, CA 90001" +271877,iPhone,1,700,10/14/19 20:10,"977 Hickory St, San Francisco, CA 94016" +271878,Lightning Charging Cable,1,14.95,10/19/19 10:56,"461 West St, Seattle, WA 98101" +271879,34in Ultrawide Monitor,1,379.99,10/12/19 11:15,"959 Hickory St, Seattle, WA 98101" +271880,Wired Headphones,2,11.99,10/04/19 21:27,"209 Wilson St, Portland, OR 97035" +271881,USB-C Charging Cable,1,11.95,10/25/19 14:06,"35 Ridge St, San Francisco, CA 94016" +271882,Apple Airpods Headphones,1,150,10/12/19 09:03,"667 Lakeview St, San Francisco, CA 94016" +271883,Bose SoundSport Headphones,1,99.99,10/07/19 10:36,"614 Cherry St, Boston, MA 02215" +271884,Apple Airpods Headphones,1,150,10/01/19 20:07,"478 1st St, Austin, TX 73301" +271885,Lightning Charging Cable,1,14.95,10/26/19 16:28,"299 13th St, Dallas, TX 75001" +271886,Lightning Charging Cable,2,14.95,10/24/19 09:59,"772 Highland St, Los Angeles, CA 90001" +271887,Bose SoundSport Headphones,1,99.99,10/19/19 14:39,"995 2nd St, New York City, NY 10001" +271888,34in Ultrawide Monitor,1,379.99,10/26/19 18:30,"439 5th St, Austin, TX 73301" +271889,Apple Airpods Headphones,1,150,10/21/19 19:55,"466 6th St, Los Angeles, CA 90001" +271890,USB-C Charging Cable,1,11.95,10/31/19 15:43,"657 10th St, San Francisco, CA 94016" +271891,AA Batteries (4-pack),1,3.84,10/13/19 16:33,"21 Pine St, San Francisco, CA 94016" +271892,Flatscreen TV,1,300,10/10/19 19:12,"798 Jefferson St, New York City, NY 10001" +271893,ThinkPad Laptop,1,999.99,10/06/19 21:15,"824 Sunset St, San Francisco, CA 94016" +271894,Wired Headphones,1,11.99,10/18/19 19:13,"720 6th St, Boston, MA 02215" +271895,Wired Headphones,1,11.99,10/30/19 13:00,"337 Dogwood St, Dallas, TX 75001" +271896,Apple Airpods Headphones,1,150,10/28/19 09:45,"113 Lakeview St, San Francisco, CA 94016" +271897,AAA Batteries (4-pack),2,2.99,10/16/19 15:29,"89 Main St, Austin, TX 73301" +271898,Wired Headphones,1,11.99,10/24/19 20:13,"749 Willow St, New York City, NY 10001" +271899,Wired Headphones,1,11.99,10/02/19 09:01,"513 Spruce St, San Francisco, CA 94016" +271900,iPhone,1,700,10/28/19 20:42,"361 10th St, Seattle, WA 98101" +271901,AA Batteries (4-pack),1,3.84,10/10/19 17:17,"72 River St, New York City, NY 10001" +271902,Apple Airpods Headphones,1,150,10/20/19 11:09,"593 River St, Dallas, TX 75001" +271903,AAA Batteries (4-pack),1,2.99,10/12/19 21:40,"775 South St, San Francisco, CA 94016" +271904,AAA Batteries (4-pack),2,2.99,10/03/19 06:06,"601 Elm St, San Francisco, CA 94016" +271905,Macbook Pro Laptop,1,1700,10/25/19 07:44,"295 Cherry St, Los Angeles, CA 90001" +271906,Apple Airpods Headphones,1,150,10/06/19 13:01,"691 Hickory St, Los Angeles, CA 90001" +271907,AA Batteries (4-pack),3,3.84,10/23/19 16:49,"1 Lakeview St, San Francisco, CA 94016" +271908,Wired Headphones,1,11.99,10/05/19 12:19,"578 Cedar St, Dallas, TX 75001" +271909,AAA Batteries (4-pack),1,2.99,10/28/19 10:10,"228 Highland St, New York City, NY 10001" +271910,Apple Airpods Headphones,2,150,10/11/19 10:15,"695 4th St, Los Angeles, CA 90001" +271911,AA Batteries (4-pack),1,3.84,10/27/19 10:04,"442 Hill St, San Francisco, CA 94016" +271912,AAA Batteries (4-pack),1,2.99,10/30/19 11:52,"366 Hickory St, San Francisco, CA 94016" +271913,Lightning Charging Cable,1,14.95,10/03/19 10:50,"828 Maple St, Boston, MA 02215" +271914,AAA Batteries (4-pack),1,2.99,10/25/19 17:34,"867 Sunset St, San Francisco, CA 94016" +271915,Apple Airpods Headphones,1,150,10/26/19 13:11,"302 Park St, San Francisco, CA 94016" +271916,Lightning Charging Cable,1,14.95,10/08/19 11:37,"382 West St, San Francisco, CA 94016" +271917,Bose SoundSport Headphones,1,99.99,10/04/19 10:34,"420 13th St, New York City, NY 10001" +271918,AAA Batteries (4-pack),1,2.99,10/16/19 16:35,"526 12th St, Los Angeles, CA 90001" +271919,AA Batteries (4-pack),1,3.84,10/29/19 11:14,"449 Meadow St, Dallas, TX 75001" +271920,34in Ultrawide Monitor,1,379.99,10/05/19 03:46,"392 Maple St, Austin, TX 73301" +271921,Apple Airpods Headphones,1,150,10/24/19 08:17,"578 Maple St, San Francisco, CA 94016" +,,,,, +271922,LG Dryer,1,600.0,10/08/19 23:33,"802 Lincoln St, New York City, NY 10001" +271923,27in 4K Gaming Monitor,1,389.99,10/09/19 12:31,"869 Center St, Seattle, WA 98101" +271924,Wired Headphones,1,11.99,10/03/19 09:43,"309 Walnut St, Atlanta, GA 30301" +271925,Bose SoundSport Headphones,1,99.99,10/09/19 12:33,"692 Hill St, Portland, OR 97035" +271926,USB-C Charging Cable,1,11.95,10/04/19 21:26,"493 Elm St, Los Angeles, CA 90001" +271927,USB-C Charging Cable,2,11.95,10/04/19 08:56,"287 Park St, San Francisco, CA 94016" +271928,Macbook Pro Laptop,1,1700,10/07/19 20:35,"5 Maple St, Los Angeles, CA 90001" +271929,Flatscreen TV,1,300,10/02/19 12:34,"131 Lincoln St, Portland, OR 97035" +271930,USB-C Charging Cable,1,11.95,10/08/19 13:41,"577 Hill St, New York City, NY 10001" +271931,Lightning Charging Cable,1,14.95,10/07/19 20:09,"471 Cedar St, San Francisco, CA 94016" +271932,USB-C Charging Cable,1,11.95,10/29/19 23:17,"199 2nd St, San Francisco, CA 94016" +271933,27in 4K Gaming Monitor,1,389.99,10/22/19 01:37,"525 14th St, Atlanta, GA 30301" +271934,34in Ultrawide Monitor,1,379.99,10/29/19 14:26,"57 Adams St, San Francisco, CA 94016" +271935,AAA Batteries (4-pack),1,2.99,10/10/19 01:19,"173 Sunset St, Boston, MA 02215" +271936,Bose SoundSport Headphones,1,99.99,10/08/19 08:18,"867 Highland St, Boston, MA 02215" +271937,Wired Headphones,1,11.99,10/10/19 12:45,"984 4th St, San Francisco, CA 94016" +271938,AAA Batteries (4-pack),1,2.99,10/17/19 11:21,"828 Cherry St, Los Angeles, CA 90001" +271939,Apple Airpods Headphones,1,150,10/08/19 23:23,"480 Park St, San Francisco, CA 94016" +271940,AAA Batteries (4-pack),1,2.99,10/14/19 14:17,"667 2nd St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +271941,iPhone,1,700,10/25/19 19:43,"126 Spruce St, Boston, MA 02215" +271941,Lightning Charging Cable,1,14.95,10/25/19 19:43,"126 Spruce St, Boston, MA 02215" +271942,USB-C Charging Cable,1,11.95,10/27/19 17:40,"953 Meadow St, Portland, OR 97035" +271943,AAA Batteries (4-pack),1,2.99,10/01/19 19:58,"155 Cedar St, Seattle, WA 98101" +271944,Wired Headphones,1,11.99,10/31/19 08:57,"891 11th St, New York City, NY 10001" +271945,Wired Headphones,1,11.99,10/24/19 22:25,"124 12th St, New York City, NY 10001" +271946,Flatscreen TV,1,300,10/03/19 12:34,"594 Forest St, Seattle, WA 98101" +271947,AAA Batteries (4-pack),4,2.99,10/06/19 12:39,"641 Pine St, Boston, MA 02215" +271948,Lightning Charging Cable,1,14.95,10/17/19 10:37,"470 Center St, Portland, OR 97035" +271949,USB-C Charging Cable,2,11.95,10/04/19 22:18,"571 Lincoln St, Los Angeles, CA 90001" +271950,AAA Batteries (4-pack),2,2.99,10/13/19 18:30,"467 Dogwood St, Seattle, WA 98101" +271951,Bose SoundSport Headphones,1,99.99,10/24/19 05:52,"789 2nd St, Seattle, WA 98101" +271952,Lightning Charging Cable,1,14.95,10/23/19 12:18,"329 Washington St, Boston, MA 02215" +271953,USB-C Charging Cable,1,11.95,10/24/19 14:23,"451 Park St, San Francisco, CA 94016" +271954,Wired Headphones,1,11.99,10/01/19 13:57,"461 5th St, New York City, NY 10001" +271955,Google Phone,1,600,10/05/19 18:20,"730 10th St, Los Angeles, CA 90001" +271955,USB-C Charging Cable,1,11.95,10/05/19 18:20,"730 10th St, Los Angeles, CA 90001" +271956,AAA Batteries (4-pack),1,2.99,10/28/19 10:27,"835 1st St, Los Angeles, CA 90001" +271957,Apple Airpods Headphones,1,150,10/09/19 11:31,"472 Jackson St, Los Angeles, CA 90001" +271958,27in FHD Monitor,1,149.99,10/19/19 14:08,"356 11th St, Atlanta, GA 30301" +271959,LG Dryer,1,600.0,10/20/19 17:23,"273 Wilson St, Atlanta, GA 30301" +271960,USB-C Charging Cable,1,11.95,10/28/19 10:47,"667 Ridge St, Los Angeles, CA 90001" +271961,Apple Airpods Headphones,1,150,10/12/19 08:37,"260 Pine St, San Francisco, CA 94016" +271962,Lightning Charging Cable,1,14.95,10/06/19 08:36,"293 Elm St, Austin, TX 73301" +271963,Apple Airpods Headphones,1,150,10/22/19 15:17,"726 Hickory St, San Francisco, CA 94016" +271964,Lightning Charging Cable,1,14.95,10/26/19 06:58,"242 2nd St, Austin, TX 73301" +271965,AAA Batteries (4-pack),1,2.99,10/11/19 10:11,"454 Spruce St, New York City, NY 10001" +271966,AAA Batteries (4-pack),1,2.99,10/09/19 15:54,"704 Spruce St, New York City, NY 10001" +271967,Bose SoundSport Headphones,1,99.99,10/14/19 09:00,"254 Jackson St, Austin, TX 73301" +271968,Lightning Charging Cable,1,14.95,10/22/19 14:07,"742 Hickory St, Dallas, TX 75001" +271969,AAA Batteries (4-pack),1,2.99,10/13/19 21:27,"480 North St, Los Angeles, CA 90001" +271970,Bose SoundSport Headphones,1,99.99,10/09/19 22:00,"340 Jackson St, New York City, NY 10001" +271971,Apple Airpods Headphones,1,150,10/12/19 11:55,"840 Jackson St, San Francisco, CA 94016" +271972,20in Monitor,1,109.99,10/06/19 10:52,"885 7th St, Los Angeles, CA 90001" +271973,AAA Batteries (4-pack),1,2.99,10/20/19 10:51,"686 Hill St, San Francisco, CA 94016" +271974,USB-C Charging Cable,1,11.95,10/29/19 16:35,"413 Pine St, Los Angeles, CA 90001" +271975,AA Batteries (4-pack),1,3.84,10/28/19 12:52,"767 Madison St, Dallas, TX 75001" +271976,Lightning Charging Cable,1,14.95,10/22/19 16:52,"592 Center St, San Francisco, CA 94016" +271977,20in Monitor,1,109.99,10/20/19 01:09,"804 Elm St, Seattle, WA 98101" +271978,AA Batteries (4-pack),1,3.84,10/22/19 23:24,"322 Sunset St, San Francisco, CA 94016" +271979,Apple Airpods Headphones,1,150,10/15/19 15:44,"390 Lakeview St, Los Angeles, CA 90001" +271980,27in 4K Gaming Monitor,1,389.99,10/24/19 11:02,"567 Wilson St, San Francisco, CA 94016" +271981,ThinkPad Laptop,1,999.99,10/09/19 13:28,"809 River St, San Francisco, CA 94016" +271982,USB-C Charging Cable,1,11.95,10/09/19 13:14,"624 10th St, Boston, MA 02215" +271983,Bose SoundSport Headphones,1,99.99,10/06/19 19:29,"750 Wilson St, Dallas, TX 75001" +271984,Google Phone,1,600,10/14/19 12:12,"840 Main St, San Francisco, CA 94016" +271985,Flatscreen TV,1,300,10/05/19 06:32,"428 Meadow St, Seattle, WA 98101" +271986,AAA Batteries (4-pack),3,2.99,10/16/19 13:33,"215 2nd St, New York City, NY 10001" +271987,Apple Airpods Headphones,1,150,10/24/19 12:59,"790 2nd St, San Francisco, CA 94016" +271988,27in FHD Monitor,1,149.99,10/11/19 17:04,"227 Park St, New York City, NY 10001" +271989,AAA Batteries (4-pack),1,2.99,10/09/19 16:08,"755 Chestnut St, Seattle, WA 98101" +271990,AAA Batteries (4-pack),1,2.99,10/05/19 11:57,"619 6th St, Los Angeles, CA 90001" +271991,Apple Airpods Headphones,1,150,10/08/19 00:42,"587 Highland St, Portland, ME 04101" +271992,Macbook Pro Laptop,1,1700,10/12/19 12:33,"260 4th St, San Francisco, CA 94016" +271993,Lightning Charging Cable,1,14.95,10/12/19 13:28,"917 Lake St, Los Angeles, CA 90001" +271994,27in FHD Monitor,1,149.99,10/19/19 11:01,"850 14th St, New York City, NY 10001" +271994,LG Dryer,1,600.0,10/19/19 11:01,"850 14th St, New York City, NY 10001" +271995,AAA Batteries (4-pack),1,2.99,10/17/19 20:12,"438 Wilson St, Austin, TX 73301" +271996,USB-C Charging Cable,1,11.95,10/22/19 01:13,"506 Cedar St, Seattle, WA 98101" +271997,Bose SoundSport Headphones,1,99.99,10/11/19 01:59,"852 Forest St, San Francisco, CA 94016" +271998,Wired Headphones,1,11.99,10/15/19 09:53,"588 Chestnut St, San Francisco, CA 94016" +271999,Google Phone,1,600,10/27/19 21:34,"278 Lake St, Austin, TX 73301" +271999,USB-C Charging Cable,1,11.95,10/27/19 21:34,"278 Lake St, Austin, TX 73301" +272000,Lightning Charging Cable,1,14.95,10/07/19 12:05,"908 Washington St, Atlanta, GA 30301" +272001,Bose SoundSport Headphones,1,99.99,10/03/19 12:36,"800 Cedar St, San Francisco, CA 94016" +272002,Lightning Charging Cable,1,14.95,10/07/19 00:22,"196 Lakeview St, Seattle, WA 98101" +272003,Wired Headphones,1,11.99,10/04/19 19:30,"734 Adams St, New York City, NY 10001" +272004,Bose SoundSport Headphones,1,99.99,10/31/19 21:38,"518 Sunset St, Portland, OR 97035" +272005,Apple Airpods Headphones,1,150,10/19/19 13:09,"81 5th St, Seattle, WA 98101" +272006,USB-C Charging Cable,1,11.95,10/27/19 20:38,"237 Ridge St, Austin, TX 73301" +272007,AA Batteries (4-pack),1,3.84,10/05/19 18:49,"543 Lincoln St, Atlanta, GA 30301" +272008,Wired Headphones,1,11.99,10/01/19 14:24,"191 Hickory St, Boston, MA 02215" +272009,20in Monitor,1,109.99,10/13/19 20:19,"184 North St, Atlanta, GA 30301" +272010,Google Phone,1,600,10/31/19 18:23,"110 12th St, New York City, NY 10001" +272011,Apple Airpods Headphones,1,150,10/20/19 16:57,"331 Hickory St, Seattle, WA 98101" +272012,Lightning Charging Cable,1,14.95,10/27/19 16:48,"866 Highland St, San Francisco, CA 94016" +272013,34in Ultrawide Monitor,1,379.99,10/21/19 22:50,"938 Dogwood St, Boston, MA 02215" +272014,AA Batteries (4-pack),5,3.84,10/28/19 08:58,"380 12th St, Dallas, TX 75001" +272015,USB-C Charging Cable,1,11.95,10/30/19 01:37,"175 Highland St, Seattle, WA 98101" +272016,Google Phone,1,600,10/14/19 16:23,"697 6th St, New York City, NY 10001" +272017,Apple Airpods Headphones,1,150,10/10/19 13:25,"731 Meadow St, Los Angeles, CA 90001" +272018,27in FHD Monitor,1,149.99,10/26/19 03:47,"266 9th St, San Francisco, CA 94016" +272019,Bose SoundSport Headphones,1,99.99,10/16/19 23:39,"937 Lakeview St, Seattle, WA 98101" +272020,AAA Batteries (4-pack),2,2.99,10/19/19 21:37,"952 Lakeview St, Seattle, WA 98101" +272021,27in FHD Monitor,1,149.99,10/16/19 00:45,"413 West St, Los Angeles, CA 90001" +272022,Bose SoundSport Headphones,1,99.99,10/06/19 09:38,"332 Sunset St, New York City, NY 10001" +272023,AAA Batteries (4-pack),1,2.99,10/06/19 15:56,"574 Center St, Seattle, WA 98101" +272024,Vareebadd Phone,1,400,10/27/19 13:40,"430 8th St, San Francisco, CA 94016" +272025,Macbook Pro Laptop,1,1700,10/29/19 18:41,"397 12th St, San Francisco, CA 94016" +272026,AAA Batteries (4-pack),1,2.99,10/10/19 08:22,"251 Hill St, New York City, NY 10001" +272027,Macbook Pro Laptop,1,1700,10/18/19 22:40,"989 Lincoln St, Dallas, TX 75001" +272028,Google Phone,1,600,10/09/19 18:05,"115 Johnson St, San Francisco, CA 94016" +272029,USB-C Charging Cable,1,11.95,10/31/19 10:33,"246 Forest St, New York City, NY 10001" +272030,AA Batteries (4-pack),1,3.84,10/21/19 12:21,"69 Forest St, Atlanta, GA 30301" +272031,Wired Headphones,1,11.99,10/01/19 22:30,"102 Washington St, New York City, NY 10001" +272032,AA Batteries (4-pack),1,3.84,10/03/19 20:16,"923 7th St, Los Angeles, CA 90001" +272033,27in FHD Monitor,1,149.99,10/08/19 19:27,"496 North St, Atlanta, GA 30301" +272034,Lightning Charging Cable,1,14.95,10/20/19 20:33,"29 Hill St, San Francisco, CA 94016" +272035,Apple Airpods Headphones,1,150,10/23/19 16:05,"293 6th St, New York City, NY 10001" +272036,AAA Batteries (4-pack),1,2.99,10/13/19 20:17,"71 2nd St, San Francisco, CA 94016" +272037,Flatscreen TV,1,300,10/22/19 15:27,"571 Park St, Seattle, WA 98101" +272038,Lightning Charging Cable,1,14.95,10/29/19 12:08,"660 2nd St, New York City, NY 10001" +272039,Flatscreen TV,1,300,10/13/19 22:08,"960 Hickory St, San Francisco, CA 94016" +272040,Vareebadd Phone,1,400,10/31/19 10:01,"221 Cherry St, Atlanta, GA 30301" +272041,Google Phone,1,600,10/28/19 12:18,"91 Hill St, San Francisco, CA 94016" +272042,AA Batteries (4-pack),1,3.84,10/18/19 16:21,"989 Highland St, Los Angeles, CA 90001" +272043,Lightning Charging Cable,1,14.95,10/15/19 19:29,"420 Cedar St, Portland, ME 04101" +272044,Lightning Charging Cable,1,14.95,10/06/19 14:31,"543 Sunset St, San Francisco, CA 94016" +272045,USB-C Charging Cable,1,11.95,10/08/19 19:44,"587 Ridge St, Seattle, WA 98101" +272046,USB-C Charging Cable,1,11.95,10/20/19 22:44,"467 Center St, San Francisco, CA 94016" +272047,AAA Batteries (4-pack),1,2.99,10/09/19 10:12,"331 Willow St, Atlanta, GA 30301" +272048,Apple Airpods Headphones,1,150,10/01/19 21:11,"530 Cherry St, Boston, MA 02215" +272049,Bose SoundSport Headphones,1,99.99,10/06/19 15:51,"870 2nd St, San Francisco, CA 94016" +272050,27in FHD Monitor,1,149.99,10/04/19 16:22,"286 1st St, San Francisco, CA 94016" +272051,Lightning Charging Cable,1,14.95,10/13/19 21:24,"598 Hickory St, San Francisco, CA 94016" +272052,Google Phone,1,600,10/05/19 19:39,"753 Pine St, San Francisco, CA 94016" +272053,27in 4K Gaming Monitor,1,389.99,10/22/19 11:25,"566 Madison St, New York City, NY 10001" +272054,20in Monitor,1,109.99,10/05/19 19:04,"228 Hickory St, San Francisco, CA 94016" +272055,Wired Headphones,1,11.99,10/01/19 16:02,"763 1st St, San Francisco, CA 94016" +272056,Apple Airpods Headphones,1,150,10/16/19 09:24,"999 9th St, New York City, NY 10001" +272057,AAA Batteries (4-pack),1,2.99,10/21/19 12:24,"548 Forest St, Los Angeles, CA 90001" +272057,Lightning Charging Cable,1,14.95,10/21/19 12:24,"548 Forest St, Los Angeles, CA 90001" +272058,20in Monitor,1,109.99,10/31/19 10:49,"616 Hickory St, New York City, NY 10001" +272059,Lightning Charging Cable,1,14.95,10/25/19 12:40,"791 4th St, Portland, OR 97035" +272060,LG Washing Machine,1,600.0,10/14/19 07:29,"661 Adams St, Portland, OR 97035" +272061,ThinkPad Laptop,1,999.99,10/10/19 11:51,"271 Park St, New York City, NY 10001" +272062,AAA Batteries (4-pack),1,2.99,10/02/19 19:00,"205 2nd St, Boston, MA 02215" +272063,Apple Airpods Headphones,1,150,10/18/19 19:09,"107 14th St, New York City, NY 10001" +272064,Bose SoundSport Headphones,1,99.99,10/05/19 13:55,"509 Ridge St, Portland, OR 97035" +272065,27in FHD Monitor,1,149.99,10/19/19 14:17,"881 Pine St, San Francisco, CA 94016" +272066,USB-C Charging Cable,1,11.95,10/27/19 16:07,"216 Forest St, Boston, MA 02215" +272067,AA Batteries (4-pack),1,3.84,10/02/19 23:39,"447 River St, Los Angeles, CA 90001" +272068,ThinkPad Laptop,1,999.99,10/16/19 19:47,"361 1st St, New York City, NY 10001" +272069,Bose SoundSport Headphones,1,99.99,10/24/19 21:58,"451 Church St, New York City, NY 10001" +272070,Wired Headphones,1,11.99,10/05/19 15:44,"265 8th St, Seattle, WA 98101" +272071,27in FHD Monitor,1,149.99,10/28/19 12:02,"639 Forest St, Boston, MA 02215" +272072,27in 4K Gaming Monitor,1,389.99,10/06/19 11:39,"107 Elm St, New York City, NY 10001" +272073,AA Batteries (4-pack),1,3.84,10/06/19 01:28,"918 Walnut St, San Francisco, CA 94016" +272074,20in Monitor,1,109.99,10/30/19 10:43,"86 Forest St, San Francisco, CA 94016" +272075,Bose SoundSport Headphones,1,99.99,10/28/19 07:23,"528 River St, Dallas, TX 75001" +272076,27in FHD Monitor,1,149.99,10/30/19 08:34,"13 8th St, Atlanta, GA 30301" +272077,34in Ultrawide Monitor,1,379.99,10/21/19 21:07,"961 South St, Los Angeles, CA 90001" +272078,Google Phone,1,600,10/14/19 04:55,"287 13th St, Portland, OR 97035" +272079,USB-C Charging Cable,1,11.95,10/17/19 14:41,"328 North St, New York City, NY 10001" +272080,Bose SoundSport Headphones,1,99.99,10/12/19 10:18,"187 Chestnut St, Boston, MA 02215" +272081,Bose SoundSport Headphones,1,99.99,10/11/19 22:11,"308 Church St, New York City, NY 10001" +272082,Lightning Charging Cable,1,14.95,10/28/19 00:10,"76 12th St, Dallas, TX 75001" +272083,USB-C Charging Cable,1,11.95,10/12/19 11:09,"853 Spruce St, Portland, OR 97035" +272084,AAA Batteries (4-pack),1,2.99,10/09/19 12:53,"889 Hickory St, Boston, MA 02215" +272085,AA Batteries (4-pack),2,3.84,10/19/19 23:43,"980 Park St, Seattle, WA 98101" +272086,AAA Batteries (4-pack),1,2.99,10/18/19 19:47,"990 Elm St, Los Angeles, CA 90001" +272087,Wired Headphones,1,11.99,10/29/19 17:49,"196 Ridge St, San Francisco, CA 94016" +272088,Bose SoundSport Headphones,1,99.99,10/08/19 10:22,"878 14th St, San Francisco, CA 94016" +272089,iPhone,1,700,10/25/19 09:32,"407 5th St, Los Angeles, CA 90001" +272090,Apple Airpods Headphones,1,150,10/25/19 10:26,"313 Walnut St, Seattle, WA 98101" +272091,Wired Headphones,1,11.99,10/20/19 16:22,"625 Walnut St, Atlanta, GA 30301" +272092,AA Batteries (4-pack),1,3.84,10/04/19 13:28,"883 Meadow St, Dallas, TX 75001" +272093,Lightning Charging Cable,1,14.95,10/23/19 05:27,"606 Hickory St, San Francisco, CA 94016" +272094,Bose SoundSport Headphones,1,99.99,10/30/19 20:33,"845 Washington St, New York City, NY 10001" +272095,Wired Headphones,1,11.99,10/31/19 13:04,"836 1st St, Seattle, WA 98101" +272096,Flatscreen TV,1,300,10/27/19 10:31,"264 Spruce St, Dallas, TX 75001" +272097,ThinkPad Laptop,1,999.99,10/25/19 10:44,"591 Lakeview St, San Francisco, CA 94016" +272098,AAA Batteries (4-pack),2,2.99,10/19/19 18:27,"927 River St, Los Angeles, CA 90001" +272099,Macbook Pro Laptop,1,1700,10/13/19 12:25,"287 North St, New York City, NY 10001" +272100,Wired Headphones,1,11.99,10/06/19 21:11,"5 Spruce St, New York City, NY 10001" +272101,Lightning Charging Cable,1,14.95,10/12/19 18:32,"438 Maple St, Dallas, TX 75001" +272102,27in 4K Gaming Monitor,1,389.99,10/21/19 16:58,"896 Wilson St, Los Angeles, CA 90001" +272103,Macbook Pro Laptop,1,1700,10/20/19 13:05,"978 4th St, New York City, NY 10001" +272104,AA Batteries (4-pack),1,3.84,10/26/19 11:00,"727 Lincoln St, Los Angeles, CA 90001" +272105,Wired Headphones,1,11.99,10/12/19 08:33,"73 Center St, Atlanta, GA 30301" +272106,Apple Airpods Headphones,1,150,10/16/19 16:32,"866 South St, Boston, MA 02215" +272107,USB-C Charging Cable,1,11.95,10/12/19 21:53,"106 Johnson St, San Francisco, CA 94016" +272108,34in Ultrawide Monitor,1,379.99,10/07/19 14:15,"860 10th St, Atlanta, GA 30301" +272109,20in Monitor,1,109.99,10/23/19 19:06,"478 9th St, New York City, NY 10001" +272110,Bose SoundSport Headphones,1,99.99,10/15/19 06:38,"921 Wilson St, Los Angeles, CA 90001" +272111,Lightning Charging Cable,1,14.95,10/21/19 12:02,"60 Highland St, New York City, NY 10001" +272112,AA Batteries (4-pack),2,3.84,10/25/19 16:07,"539 Lake St, San Francisco, CA 94016" +272113,AA Batteries (4-pack),1,3.84,10/01/19 20:28,"633 Willow St, Dallas, TX 75001" +272114,20in Monitor,1,109.99,10/05/19 19:36,"294 Cedar St, Los Angeles, CA 90001" +272115,AA Batteries (4-pack),1,3.84,10/16/19 21:28,"163 Spruce St, Atlanta, GA 30301" +272116,USB-C Charging Cable,1,11.95,10/31/19 13:05,"529 Maple St, New York City, NY 10001" +272117,AA Batteries (4-pack),1,3.84,10/31/19 12:21,"966 10th St, Boston, MA 02215" +272118,USB-C Charging Cable,1,11.95,10/31/19 08:35,"441 Washington St, San Francisco, CA 94016" +272119,ThinkPad Laptop,1,999.99,10/23/19 22:44,"315 Sunset St, Los Angeles, CA 90001" +272120,AAA Batteries (4-pack),1,2.99,10/04/19 13:32,"854 Maple St, San Francisco, CA 94016" +272121,Flatscreen TV,1,300,10/21/19 12:24,"179 Lakeview St, Seattle, WA 98101" +272122,Bose SoundSport Headphones,1,99.99,10/10/19 17:39,"582 Pine St, San Francisco, CA 94016" +272123,Lightning Charging Cable,1,14.95,10/24/19 21:22,"74 Cedar St, Atlanta, GA 30301" +272124,Bose SoundSport Headphones,1,99.99,10/17/19 23:38,"54 Spruce St, Atlanta, GA 30301" +272125,USB-C Charging Cable,1,11.95,10/21/19 23:05,"29 Meadow St, New York City, NY 10001" +272126,Apple Airpods Headphones,1,150,10/09/19 07:13,"229 Park St, Dallas, TX 75001" +272127,Apple Airpods Headphones,1,150,10/26/19 14:03,"109 Ridge St, Portland, OR 97035" +272128,AAA Batteries (4-pack),1,2.99,10/13/19 16:24,"894 Elm St, New York City, NY 10001" +272129,27in FHD Monitor,1,149.99,10/30/19 09:01,"905 Dogwood St, Los Angeles, CA 90001" +272130,AAA Batteries (4-pack),1,2.99,10/04/19 12:09,"903 4th St, San Francisco, CA 94016" +272131,USB-C Charging Cable,1,11.95,10/17/19 14:48,"809 Johnson St, Boston, MA 02215" +272132,Lightning Charging Cable,1,14.95,10/06/19 17:13,"860 Ridge St, Los Angeles, CA 90001" +272133,34in Ultrawide Monitor,1,379.99,10/16/19 17:38,"224 Johnson St, San Francisco, CA 94016" +272134,Wired Headphones,1,11.99,10/27/19 17:15,"340 Chestnut St, San Francisco, CA 94016" +272135,Wired Headphones,1,11.99,10/04/19 17:47,"386 Johnson St, Portland, ME 04101" +272136,AA Batteries (4-pack),3,3.84,10/02/19 17:12,"77 Main St, Dallas, TX 75001" +272137,USB-C Charging Cable,1,11.95,10/11/19 19:18,"960 Johnson St, Seattle, WA 98101" +272138,Bose SoundSport Headphones,1,99.99,10/23/19 16:34,"635 Park St, San Francisco, CA 94016" +272139,AA Batteries (4-pack),1,3.84,10/30/19 23:42,"887 Elm St, Austin, TX 73301" +272140,AAA Batteries (4-pack),1,2.99,10/21/19 10:31,"410 North St, Seattle, WA 98101" +272141,27in FHD Monitor,1,149.99,10/28/19 10:56,"791 Cherry St, San Francisco, CA 94016" +272142,Bose SoundSport Headphones,1,99.99,10/06/19 18:06,"495 Walnut St, Los Angeles, CA 90001" +272143,Lightning Charging Cable,1,14.95,10/30/19 14:33,"938 Adams St, San Francisco, CA 94016" +272144,Wired Headphones,1,11.99,10/03/19 12:10,"656 Lakeview St, Los Angeles, CA 90001" +272145,iPhone,1,700,10/02/19 03:54,"802 13th St, New York City, NY 10001" +272146,AA Batteries (4-pack),1,3.84,10/29/19 18:56,"750 Hickory St, Dallas, TX 75001" +272147,Wired Headphones,1,11.99,10/09/19 00:13,"760 Forest St, Boston, MA 02215" +272148,Wired Headphones,2,11.99,10/23/19 11:45,"401 Adams St, San Francisco, CA 94016" +272149,AA Batteries (4-pack),1,3.84,10/24/19 08:31,"793 Park St, San Francisco, CA 94016" +272150,34in Ultrawide Monitor,1,379.99,10/11/19 15:08,"78 Ridge St, Los Angeles, CA 90001" +272151,Wired Headphones,1,11.99,10/28/19 19:51,"592 12th St, New York City, NY 10001" +272152,20in Monitor,1,109.99,10/22/19 21:55,"784 Main St, New York City, NY 10001" +272153,ThinkPad Laptop,1,999.99,10/29/19 22:00,"548 Johnson St, New York City, NY 10001" +272154,AAA Batteries (4-pack),4,2.99,10/23/19 21:32,"362 Highland St, Atlanta, GA 30301" +272155,Apple Airpods Headphones,1,150,10/20/19 22:53,"667 12th St, Austin, TX 73301" +272156,27in 4K Gaming Monitor,1,389.99,10/16/19 19:51,"892 Johnson St, Boston, MA 02215" +272157,Lightning Charging Cable,1,14.95,10/27/19 20:42,"156 12th St, San Francisco, CA 94016" +272158,AA Batteries (4-pack),1,3.84,10/08/19 19:44,"250 1st St, Boston, MA 02215" +272159,Lightning Charging Cable,1,14.95,10/16/19 10:48,"682 Cedar St, Portland, OR 97035" +272160,USB-C Charging Cable,2,11.95,10/20/19 12:07,"286 Maple St, Los Angeles, CA 90001" +272161,Apple Airpods Headphones,1,150,10/02/19 17:44,"365 South St, Seattle, WA 98101" +272162,Lightning Charging Cable,1,14.95,10/20/19 22:27,"703 Hill St, Austin, TX 73301" +272163,Flatscreen TV,1,300,10/28/19 13:28,"427 South St, Dallas, TX 75001" +272164,USB-C Charging Cable,1,11.95,10/10/19 17:25,"866 West St, San Francisco, CA 94016" +272165,27in FHD Monitor,1,149.99,10/31/19 01:16,"711 Jackson St, Boston, MA 02215" +272166,Wired Headphones,1,11.99,10/15/19 09:12,"264 13th St, San Francisco, CA 94016" +272167,USB-C Charging Cable,1,11.95,10/05/19 20:43,"310 Meadow St, Los Angeles, CA 90001" +272168,USB-C Charging Cable,1,11.95,10/24/19 07:40,"693 2nd St, Atlanta, GA 30301" +272169,27in 4K Gaming Monitor,1,389.99,10/23/19 10:04,"95 Walnut St, San Francisco, CA 94016" +272170,Wired Headphones,1,11.99,10/04/19 13:56,"755 Meadow St, Dallas, TX 75001" +272171,USB-C Charging Cable,1,11.95,10/24/19 08:36,"55 9th St, Los Angeles, CA 90001" +272172,Macbook Pro Laptop,1,1700,10/15/19 03:43,"445 10th St, San Francisco, CA 94016" +272173,AAA Batteries (4-pack),1,2.99,10/13/19 23:33,"10 2nd St, San Francisco, CA 94016" +272174,Bose SoundSport Headphones,1,99.99,10/25/19 20:58,"187 Jefferson St, Boston, MA 02215" +272175,AAA Batteries (4-pack),1,2.99,10/01/19 12:30,"98 Hill St, San Francisco, CA 94016" +272176,AAA Batteries (4-pack),1,2.99,10/06/19 20:30,"163 Washington St, Los Angeles, CA 90001" +272177,Wired Headphones,1,11.99,10/20/19 08:47,"467 Elm St, San Francisco, CA 94016" +272178,27in 4K Gaming Monitor,1,389.99,10/24/19 11:45,"626 Sunset St, San Francisco, CA 94016" +272179,Bose SoundSport Headphones,1,99.99,10/04/19 10:54,"648 Hickory St, Los Angeles, CA 90001" +272180,27in FHD Monitor,1,149.99,10/16/19 12:05,"933 Cherry St, New York City, NY 10001" +272181,20in Monitor,1,109.99,10/22/19 19:16,"731 Maple St, Boston, MA 02215" +272182,Flatscreen TV,1,300,10/08/19 08:47,"399 1st St, Atlanta, GA 30301" +272183,Apple Airpods Headphones,1,150,10/23/19 12:25,"307 Pine St, Boston, MA 02215" +272184,Wired Headphones,1,11.99,10/30/19 22:01,"215 Jackson St, New York City, NY 10001" +272185,Wired Headphones,1,11.99,10/10/19 18:19,"970 10th St, Atlanta, GA 30301" +272186,iPhone,1,700,10/28/19 15:15,"911 7th St, Dallas, TX 75001" +272187,27in 4K Gaming Monitor,1,389.99,10/21/19 23:17,"963 12th St, Portland, OR 97035" +272188,AA Batteries (4-pack),1,3.84,10/04/19 13:36,"829 Madison St, San Francisco, CA 94016" +272189,AA Batteries (4-pack),1,3.84,10/23/19 12:10,"543 11th St, Boston, MA 02215" +272190,iPhone,1,700,10/15/19 11:51,"82 Lakeview St, Austin, TX 73301" +272190,Wired Headphones,1,11.99,10/15/19 11:51,"82 Lakeview St, Austin, TX 73301" +272191,34in Ultrawide Monitor,1,379.99,10/05/19 19:43,"202 Cedar St, San Francisco, CA 94016" +272192,USB-C Charging Cable,1,11.95,10/30/19 12:10,"874 Washington St, Los Angeles, CA 90001" +272193,AAA Batteries (4-pack),1,2.99,10/05/19 22:29,"595 South St, Atlanta, GA 30301" +272194,Apple Airpods Headphones,1,150,10/02/19 10:31,"190 9th St, Portland, OR 97035" +272195,AAA Batteries (4-pack),3,2.99,10/12/19 20:31,"409 Elm St, Los Angeles, CA 90001" +272196,Bose SoundSport Headphones,1,99.99,10/19/19 10:33,"513 4th St, San Francisco, CA 94016" +272197,USB-C Charging Cable,1,11.95,10/26/19 13:57,"756 Highland St, Boston, MA 02215" +272198,AA Batteries (4-pack),1,3.84,10/24/19 12:21,"281 Ridge St, San Francisco, CA 94016" +272199,AAA Batteries (4-pack),1,2.99,10/08/19 16:43,"95 Lincoln St, Portland, ME 04101" +272200,27in 4K Gaming Monitor,1,389.99,10/07/19 11:27,"918 Jackson St, Los Angeles, CA 90001" +272201,Lightning Charging Cable,1,14.95,10/17/19 17:26,"660 Walnut St, Los Angeles, CA 90001" +272202,AAA Batteries (4-pack),2,2.99,10/26/19 19:17,"217 Lincoln St, San Francisco, CA 94016" +272203,Lightning Charging Cable,1,14.95,10/23/19 21:00,"339 Cherry St, San Francisco, CA 94016" +272204,Google Phone,1,600,10/11/19 11:14,"325 Sunset St, Portland, OR 97035" +272205,Lightning Charging Cable,1,14.95,10/09/19 23:39,"529 Park St, Los Angeles, CA 90001" +272206,Apple Airpods Headphones,1,150,10/27/19 10:20,"46 Hill St, San Francisco, CA 94016" +272206,Lightning Charging Cable,1,14.95,10/27/19 10:20,"46 Hill St, San Francisco, CA 94016" +272207,Apple Airpods Headphones,1,150,10/16/19 12:59,"760 Cedar St, Atlanta, GA 30301" +272208,AAA Batteries (4-pack),1,2.99,10/21/19 20:23,"71 Lake St, Boston, MA 02215" +272209,Bose SoundSport Headphones,1,99.99,10/24/19 13:17,"986 Highland St, Portland, OR 97035" +272210,Google Phone,1,600,10/05/19 22:17,"76 12th St, San Francisco, CA 94016" +272211,34in Ultrawide Monitor,1,379.99,10/09/19 11:22,"82 River St, Seattle, WA 98101" +272212,USB-C Charging Cable,1,11.95,10/07/19 14:54,"748 Johnson St, Austin, TX 73301" +272213,Lightning Charging Cable,1,14.95,10/04/19 16:38,"954 Wilson St, Seattle, WA 98101" +272214,Wired Headphones,1,11.99,10/25/19 10:57,"996 River St, San Francisco, CA 94016" +272215,Wired Headphones,1,11.99,10/23/19 12:26,"960 1st St, Atlanta, GA 30301" +272216,Flatscreen TV,1,300,10/21/19 16:54,"781 Madison St, Los Angeles, CA 90001" +272217,Google Phone,1,600,10/15/19 15:15,"846 13th St, San Francisco, CA 94016" +272217,Wired Headphones,1,11.99,10/15/19 15:15,"846 13th St, San Francisco, CA 94016" +272218,27in 4K Gaming Monitor,1,389.99,10/09/19 18:02,"613 North St, San Francisco, CA 94016" +272219,USB-C Charging Cable,2,11.95,10/09/19 11:14,"184 Highland St, San Francisco, CA 94016" +272220,USB-C Charging Cable,1,11.95,10/20/19 06:37,"583 6th St, Boston, MA 02215" +272221,Macbook Pro Laptop,1,1700,10/19/19 14:20,"889 Center St, Los Angeles, CA 90001" +272222,AAA Batteries (4-pack),2,2.99,10/03/19 23:13,"407 South St, San Francisco, CA 94016" +272223,AA Batteries (4-pack),3,3.84,10/20/19 21:00,"82 2nd St, San Francisco, CA 94016" +272224,AAA Batteries (4-pack),1,2.99,10/16/19 21:26,"422 11th St, Austin, TX 73301" +272225,Bose SoundSport Headphones,1,99.99,10/29/19 17:37,"415 South St, New York City, NY 10001" +272226,Wired Headphones,1,11.99,10/25/19 17:38,"481 West St, Austin, TX 73301" +272227,Lightning Charging Cable,1,14.95,10/14/19 12:47,"886 10th St, Austin, TX 73301" +272228,USB-C Charging Cable,1,11.95,10/03/19 23:34,"418 Cherry St, San Francisco, CA 94016" +272229,Lightning Charging Cable,1,14.95,10/01/19 14:31,"813 1st St, Atlanta, GA 30301" +272230,Bose SoundSport Headphones,1,99.99,10/25/19 05:40,"697 Chestnut St, San Francisco, CA 94016" +272231,Bose SoundSport Headphones,1,99.99,10/07/19 08:52,"607 Jefferson St, Los Angeles, CA 90001" +272232,USB-C Charging Cable,2,11.95,10/05/19 09:12,"266 Forest St, Seattle, WA 98101" +272233,AA Batteries (4-pack),1,3.84,10/18/19 22:25,"743 River St, San Francisco, CA 94016" +272234,Bose SoundSport Headphones,1,99.99,10/16/19 23:48,"782 Adams St, Portland, OR 97035" +272235,iPhone,1,700,10/29/19 01:12,"581 Main St, Austin, TX 73301" +272236,USB-C Charging Cable,1,11.95,10/15/19 08:27,"105 12th St, Boston, MA 02215" +272237,Wired Headphones,1,11.99,10/22/19 10:32,"50 South St, San Francisco, CA 94016" +272238,Wired Headphones,1,11.99,10/06/19 20:54,"382 8th St, Dallas, TX 75001" +272239,USB-C Charging Cable,1,11.95,10/20/19 20:53,"425 Forest St, San Francisco, CA 94016" +272240,Apple Airpods Headphones,1,150,10/03/19 17:30,"152 12th St, Austin, TX 73301" +272241,AA Batteries (4-pack),1,3.84,10/10/19 18:17,"626 Highland St, Portland, OR 97035" +272242,Bose SoundSport Headphones,1,99.99,10/20/19 19:13,"35 Spruce St, Boston, MA 02215" +272243,Lightning Charging Cable,2,14.95,10/08/19 15:28,"84 Chestnut St, Seattle, WA 98101" +272244,iPhone,1,700,10/18/19 19:29,"192 Madison St, New York City, NY 10001" +272245,USB-C Charging Cable,1,11.95,10/27/19 17:53,"555 2nd St, Portland, OR 97035" +272246,AAA Batteries (4-pack),1,2.99,10/13/19 23:35,"573 North St, New York City, NY 10001" +272247,AA Batteries (4-pack),2,3.84,10/01/19 19:17,"739 Main St, Atlanta, GA 30301" +272248,Lightning Charging Cable,1,14.95,10/14/19 11:48,"721 5th St, San Francisco, CA 94016" +272249,ThinkPad Laptop,1,999.99,10/22/19 10:43,"904 5th St, San Francisco, CA 94016" +272250,AA Batteries (4-pack),1,3.84,10/08/19 08:11,"749 Highland St, San Francisco, CA 94016" +272251,Bose SoundSport Headphones,1,99.99,10/22/19 13:36,"900 8th St, Boston, MA 02215" +272252,USB-C Charging Cable,1,11.95,10/12/19 10:19,"121 Lincoln St, San Francisco, CA 94016" +272253,Bose SoundSport Headphones,1,99.99,10/28/19 01:29,"738 Maple St, Dallas, TX 75001" +272254,Wired Headphones,2,11.99,10/06/19 13:10,"353 1st St, Seattle, WA 98101" +272255,Apple Airpods Headphones,1,150,10/19/19 21:27,"989 11th St, Portland, OR 97035" +272256,Apple Airpods Headphones,1,150,10/26/19 21:20,"238 Hickory St, Boston, MA 02215" +272257,27in FHD Monitor,1,149.99,10/29/19 15:51,"906 8th St, Seattle, WA 98101" +272258,Apple Airpods Headphones,1,150,10/22/19 20:22,"753 Pine St, Dallas, TX 75001" +272259,Google Phone,1,600,10/13/19 13:57,"128 Park St, New York City, NY 10001" +272260,Apple Airpods Headphones,1,150,10/24/19 23:37,"313 1st St, Austin, TX 73301" +272261,AA Batteries (4-pack),2,3.84,10/03/19 08:25,"790 Lakeview St, Los Angeles, CA 90001" +272262,Apple Airpods Headphones,1,150,10/01/19 13:13,"638 4th St, San Francisco, CA 94016" +272263,AAA Batteries (4-pack),1,2.99,10/10/19 14:01,"246 Main St, Seattle, WA 98101" +272264,Bose SoundSport Headphones,1,99.99,10/23/19 19:23,"824 Dogwood St, San Francisco, CA 94016" +272265,AA Batteries (4-pack),1,3.84,10/04/19 01:49,"709 Jackson St, Seattle, WA 98101" +272266,Wired Headphones,1,11.99,10/12/19 18:23,"462 Highland St, Seattle, WA 98101" +272267,Lightning Charging Cable,1,14.95,10/13/19 21:30,"486 South St, Los Angeles, CA 90001" +272268,Bose SoundSport Headphones,1,99.99,10/23/19 08:57,"757 Maple St, New York City, NY 10001" +272269,AAA Batteries (4-pack),1,2.99,10/31/19 09:21,"884 8th St, Portland, OR 97035" +272270,Apple Airpods Headphones,1,150,10/18/19 20:36,"100 Main St, Dallas, TX 75001" +272271,Macbook Pro Laptop,1,1700,10/21/19 19:51,"439 Spruce St, New York City, NY 10001" +272272,AAA Batteries (4-pack),2,2.99,10/07/19 22:32,"402 10th St, San Francisco, CA 94016" +272272,20in Monitor,1,109.99,10/07/19 22:32,"402 10th St, San Francisco, CA 94016" +272273,Apple Airpods Headphones,1,150,10/26/19 22:01,"797 Church St, Dallas, TX 75001" +272274,AAA Batteries (4-pack),3,2.99,10/02/19 11:07,"641 2nd St, Portland, OR 97035" +272275,iPhone,1,700,10/03/19 13:30,"465 Hickory St, Boston, MA 02215" +272276,AA Batteries (4-pack),1,3.84,10/08/19 20:49,"707 8th St, Austin, TX 73301" +272277,AA Batteries (4-pack),1,3.84,10/31/19 17:41,"500 14th St, San Francisco, CA 94016" +272278,USB-C Charging Cable,1,11.95,10/13/19 20:08,"189 Cedar St, San Francisco, CA 94016" +272279,AA Batteries (4-pack),1,3.84,10/20/19 12:42,"935 Adams St, Seattle, WA 98101" +272280,AA Batteries (4-pack),3,3.84,10/17/19 10:38,"851 Park St, San Francisco, CA 94016" +272281,AA Batteries (4-pack),3,3.84,10/31/19 20:17,"151 6th St, Portland, OR 97035" +272282,20in Monitor,1,109.99,10/24/19 19:37,"117 Main St, Los Angeles, CA 90001" +272283,Bose SoundSport Headphones,1,99.99,10/14/19 22:28,"390 Sunset St, Los Angeles, CA 90001" +272284,Flatscreen TV,1,300,10/04/19 18:30,"269 Adams St, San Francisco, CA 94016" +272285,27in FHD Monitor,1,149.99,10/20/19 06:18,"227 Spruce St, Dallas, TX 75001" +272285,Wired Headphones,1,11.99,10/20/19 06:18,"227 Spruce St, Dallas, TX 75001" +272286,Wired Headphones,1,11.99,10/02/19 13:07,"847 Main St, Austin, TX 73301" +272287,Apple Airpods Headphones,1,150,10/08/19 15:54,"46 Maple St, San Francisco, CA 94016" +272288,iPhone,1,700,10/20/19 13:28,"484 Maple St, Seattle, WA 98101" +272289,AAA Batteries (4-pack),1,2.99,10/25/19 19:54,"297 Willow St, New York City, NY 10001" +272290,AA Batteries (4-pack),2,3.84,10/07/19 23:09,"927 Meadow St, San Francisco, CA 94016" +272291,Macbook Pro Laptop,1,1700,10/16/19 16:33,"290 Cherry St, Dallas, TX 75001" +272292,AA Batteries (4-pack),1,3.84,10/12/19 15:21,"381 Willow St, New York City, NY 10001" +272293,Lightning Charging Cable,1,14.95,10/02/19 20:57,"674 Lake St, Boston, MA 02215" +272294,27in 4K Gaming Monitor,1,389.99,10/18/19 01:28,"416 Madison St, New York City, NY 10001" +272295,AAA Batteries (4-pack),2,2.99,10/04/19 10:33,"979 Jackson St, Boston, MA 02215" +272296,Lightning Charging Cable,1,14.95,10/06/19 23:36,"782 5th St, New York City, NY 10001" +272297,27in 4K Gaming Monitor,1,389.99,10/02/19 17:35,"808 Wilson St, Austin, TX 73301" +272298,USB-C Charging Cable,1,11.95,10/18/19 05:41,"142 2nd St, Portland, ME 04101" +272299,AA Batteries (4-pack),2,3.84,10/24/19 18:32,"472 Walnut St, New York City, NY 10001" +272300,Wired Headphones,1,11.99,10/24/19 19:44,"862 9th St, New York City, NY 10001" +272301,Wired Headphones,1,11.99,10/29/19 10:10,"386 Hickory St, Portland, OR 97035" +272302,20in Monitor,1,109.99,10/30/19 06:27,"538 Pine St, San Francisco, CA 94016" +272303,Flatscreen TV,1,300,10/12/19 18:56,"3 Cherry St, Los Angeles, CA 90001" +272304,Wired Headphones,1,11.99,10/26/19 19:29,"339 11th St, Los Angeles, CA 90001" +272305,iPhone,1,700,10/10/19 20:29,"15 Pine St, San Francisco, CA 94016" +272305,Wired Headphones,1,11.99,10/10/19 20:29,"15 Pine St, San Francisco, CA 94016" +272306,Bose SoundSport Headphones,1,99.99,10/12/19 13:29,"241 Washington St, Seattle, WA 98101" +272307,Apple Airpods Headphones,1,150,10/01/19 18:51,"546 Lake St, Boston, MA 02215" +272308,AA Batteries (4-pack),1,3.84,10/07/19 11:42,"333 River St, Boston, MA 02215" +272309,Bose SoundSport Headphones,1,99.99,10/12/19 21:42,"390 Walnut St, Austin, TX 73301" +272310,USB-C Charging Cable,1,11.95,10/10/19 13:39,"637 2nd St, Boston, MA 02215" +272311,Google Phone,1,600,10/26/19 09:58,"128 Walnut St, San Francisco, CA 94016" +272312,Macbook Pro Laptop,1,1700,10/14/19 18:54,"228 South St, Boston, MA 02215" +272313,AA Batteries (4-pack),1,3.84,10/30/19 08:56,"474 Pine St, Portland, ME 04101" +272314,AAA Batteries (4-pack),3,2.99,10/31/19 19:22,"440 Sunset St, Seattle, WA 98101" +272315,iPhone,1,700,10/05/19 19:33,"727 14th St, New York City, NY 10001" +272316,Apple Airpods Headphones,1,150,10/22/19 08:46,"674 River St, Los Angeles, CA 90001" +272317,USB-C Charging Cable,1,11.95,10/31/19 15:23,"527 12th St, San Francisco, CA 94016" +272318,Apple Airpods Headphones,1,150,10/28/19 22:50,"644 Elm St, San Francisco, CA 94016" +272319,Apple Airpods Headphones,1,150,10/28/19 12:43,"330 Jackson St, Dallas, TX 75001" +272320,AAA Batteries (4-pack),2,2.99,10/29/19 02:24,"378 7th St, New York City, NY 10001" +272321,Macbook Pro Laptop,1,1700,10/05/19 06:56,"48 Park St, Boston, MA 02215" +272322,ThinkPad Laptop,1,999.99,10/31/19 17:39,"942 4th St, Austin, TX 73301" +272323,Wired Headphones,1,11.99,10/22/19 11:30,"456 River St, Dallas, TX 75001" +272324,27in 4K Gaming Monitor,1,389.99,10/19/19 14:38,"351 5th St, Los Angeles, CA 90001" +272325,AAA Batteries (4-pack),1,2.99,10/10/19 20:22,"154 Johnson St, Portland, ME 04101" +272326,27in 4K Gaming Monitor,1,389.99,10/10/19 18:48,"164 River St, Seattle, WA 98101" +272327,Lightning Charging Cable,1,14.95,10/12/19 10:26,"149 Main St, Dallas, TX 75001" +272328,Wired Headphones,1,11.99,10/10/19 11:03,"684 Pine St, Dallas, TX 75001" +272329,USB-C Charging Cable,1,11.95,10/10/19 15:02,"585 9th St, Boston, MA 02215" +272330,Macbook Pro Laptop,1,1700,10/11/19 12:01,"929 Wilson St, San Francisco, CA 94016" +272331,USB-C Charging Cable,2,11.95,10/28/19 05:11,"507 10th St, Seattle, WA 98101" +272332,AAA Batteries (4-pack),2,2.99,10/14/19 13:17,"956 Pine St, Boston, MA 02215" +272333,27in 4K Gaming Monitor,1,389.99,10/26/19 18:20,"854 Highland St, New York City, NY 10001" +272334,27in FHD Monitor,1,149.99,10/31/19 05:15,"19 Cedar St, Los Angeles, CA 90001" +272335,Apple Airpods Headphones,1,150,10/02/19 09:16,"988 Lakeview St, San Francisco, CA 94016" +272336,AAA Batteries (4-pack),1,2.99,10/07/19 09:20,"258 9th St, Los Angeles, CA 90001" +272337,AAA Batteries (4-pack),1,2.99,10/30/19 00:42,"139 Meadow St, Los Angeles, CA 90001" +272338,USB-C Charging Cable,1,11.95,10/28/19 03:20,"528 Center St, Portland, OR 97035" +272338,27in FHD Monitor,1,149.99,10/28/19 03:20,"528 Center St, Portland, OR 97035" +272339,ThinkPad Laptop,1,999.99,10/06/19 15:52,"366 7th St, Boston, MA 02215" +272340,27in 4K Gaming Monitor,1,389.99,10/23/19 21:55,"705 Hickory St, Austin, TX 73301" +272341,Lightning Charging Cable,1,14.95,10/12/19 20:15,"694 Walnut St, Atlanta, GA 30301" +272342,Apple Airpods Headphones,1,150,10/28/19 22:29,"19 14th St, Los Angeles, CA 90001" +272343,AAA Batteries (4-pack),1,2.99,10/11/19 15:21,"733 11th St, Portland, ME 04101" +272344,Wired Headphones,1,11.99,10/29/19 13:56,"973 Walnut St, Dallas, TX 75001" +272345,Macbook Pro Laptop,1,1700,10/11/19 21:20,"853 Park St, Portland, ME 04101" +272346,27in FHD Monitor,1,149.99,10/19/19 11:38,"153 Meadow St, Los Angeles, CA 90001" +272347,USB-C Charging Cable,1,11.95,10/31/19 20:29,"49 11th St, Los Angeles, CA 90001" +272348,USB-C Charging Cable,2,11.95,10/29/19 12:44,"736 Main St, San Francisco, CA 94016" +272349,USB-C Charging Cable,1,11.95,10/17/19 00:30,"462 Spruce St, Austin, TX 73301" +272350,AA Batteries (4-pack),1,3.84,10/16/19 22:26,"529 South St, Dallas, TX 75001" +272351,iPhone,1,700,10/29/19 18:51,"91 Maple St, Atlanta, GA 30301" +272351,Lightning Charging Cable,1,14.95,10/29/19 18:51,"91 Maple St, Atlanta, GA 30301" +272352,ThinkPad Laptop,1,999.99,10/01/19 20:58,"859 Madison St, Boston, MA 02215" +272353,27in FHD Monitor,1,149.99,10/19/19 10:51,"924 8th St, Atlanta, GA 30301" +272354,USB-C Charging Cable,1,11.95,10/19/19 10:25,"799 Sunset St, Austin, TX 73301" +272355,AA Batteries (4-pack),2,3.84,10/20/19 21:01,"708 Park St, Boston, MA 02215" +272356,Apple Airpods Headphones,1,150,10/12/19 13:32,"124 Elm St, San Francisco, CA 94016" +272357,20in Monitor,1,109.99,10/08/19 19:56,"589 Walnut St, San Francisco, CA 94016" +272358,AA Batteries (4-pack),2,3.84,10/15/19 20:31,"752 10th St, Dallas, TX 75001" +272359,Lightning Charging Cable,1,14.95,10/08/19 11:37,"856 7th St, Atlanta, GA 30301" +272360,USB-C Charging Cable,1,11.95,10/24/19 13:20,"859 South St, San Francisco, CA 94016" +272361,Google Phone,1,600,10/17/19 09:25,"865 Hickory St, New York City, NY 10001" +272362,AA Batteries (4-pack),2,3.84,10/31/19 06:04,"574 Meadow St, Dallas, TX 75001" +272363,Apple Airpods Headphones,1,150,10/16/19 00:24,"558 1st St, San Francisco, CA 94016" +272364,iPhone,1,700,10/09/19 19:21,"374 Jefferson St, San Francisco, CA 94016" +272365,USB-C Charging Cable,1,11.95,10/15/19 15:12,"750 Madison St, San Francisco, CA 94016" +272366,AAA Batteries (4-pack),1,2.99,10/21/19 08:45,"695 Main St, Austin, TX 73301" +272367,Lightning Charging Cable,1,14.95,10/28/19 09:37,"377 Lakeview St, Boston, MA 02215" +272368,27in FHD Monitor,1,149.99,10/09/19 18:35,"655 Jefferson St, San Francisco, CA 94016" +272369,Apple Airpods Headphones,1,150,10/21/19 20:21,"525 West St, Seattle, WA 98101" +272370,USB-C Charging Cable,1,11.95,10/28/19 16:14,"248 Walnut St, Portland, ME 04101" +272371,Wired Headphones,1,11.99,10/31/19 09:07,"932 Madison St, Seattle, WA 98101" +272372,Bose SoundSport Headphones,1,99.99,10/19/19 20:21,"780 Willow St, Austin, TX 73301" +272373,27in 4K Gaming Monitor,1,389.99,10/01/19 13:20,"763 Adams St, San Francisco, CA 94016" +272374,AA Batteries (4-pack),4,3.84,10/02/19 21:00,"467 Hickory St, New York City, NY 10001" +272375,20in Monitor,1,109.99,10/10/19 12:50,"540 Adams St, Austin, TX 73301" +272376,Bose SoundSport Headphones,2,99.99,10/01/19 13:02,"140 South St, Portland, OR 97035" +272377,20in Monitor,1,109.99,10/12/19 09:43,"904 South St, Seattle, WA 98101" +272378,Lightning Charging Cable,1,14.95,10/26/19 12:33,"612 Meadow St, New York City, NY 10001" +272379,iPhone,1,700,10/21/19 11:53,"100 Adams St, Los Angeles, CA 90001" +272380,27in 4K Gaming Monitor,1,389.99,10/17/19 14:36,"239 Ridge St, San Francisco, CA 94016" +272381,AA Batteries (4-pack),1,3.84,10/23/19 22:01,"111 Wilson St, Atlanta, GA 30301" +272382,Macbook Pro Laptop,1,1700,10/24/19 01:03,"723 North St, Atlanta, GA 30301" +272383,Vareebadd Phone,1,400,10/21/19 10:43,"472 Church St, Boston, MA 02215" +272384,Vareebadd Phone,1,400,10/26/19 23:35,"461 Sunset St, Dallas, TX 75001" +272385,Lightning Charging Cable,1,14.95,10/08/19 23:54,"230 Wilson St, New York City, NY 10001" +272386,AA Batteries (4-pack),1,3.84,10/03/19 07:59,"114 7th St, Boston, MA 02215" +272387,Apple Airpods Headphones,1,150,10/29/19 07:28,"820 5th St, Dallas, TX 75001" +272388,Lightning Charging Cable,1,14.95,10/05/19 17:43,"556 North St, Boston, MA 02215" +272389,Vareebadd Phone,1,400,10/30/19 13:36,"765 Lakeview St, Los Angeles, CA 90001" +272389,USB-C Charging Cable,1,11.95,10/30/19 13:36,"765 Lakeview St, Los Angeles, CA 90001" +272389,Bose SoundSport Headphones,1,99.99,10/30/19 13:36,"765 Lakeview St, Los Angeles, CA 90001" +272390,AAA Batteries (4-pack),1,2.99,10/12/19 09:00,"484 7th St, Dallas, TX 75001" +272391,Vareebadd Phone,1,400,10/16/19 13:56,"327 Lakeview St, San Francisco, CA 94016" +272391,USB-C Charging Cable,1,11.95,10/16/19 13:56,"327 Lakeview St, San Francisco, CA 94016" +272391,USB-C Charging Cable,1,11.95,10/16/19 13:56,"327 Lakeview St, San Francisco, CA 94016" +272392,Wired Headphones,1,11.99,10/19/19 20:53,"545 Lincoln St, Seattle, WA 98101" +272393,Bose SoundSport Headphones,1,99.99,10/18/19 14:59,"42 Cherry St, Seattle, WA 98101" +272394,Bose SoundSport Headphones,1,99.99,10/20/19 18:28,"433 7th St, Austin, TX 73301" +272395,27in FHD Monitor,1,149.99,10/04/19 21:52,"470 Lake St, San Francisco, CA 94016" +272396,LG Washing Machine,1,600.0,10/22/19 17:16,"848 8th St, Los Angeles, CA 90001" +272396,USB-C Charging Cable,1,11.95,10/22/19 17:16,"848 8th St, Los Angeles, CA 90001" +272397,Bose SoundSport Headphones,1,99.99,10/14/19 15:41,"509 4th St, Los Angeles, CA 90001" +272398,AAA Batteries (4-pack),3,2.99,10/23/19 20:58,"672 1st St, New York City, NY 10001" +272399,USB-C Charging Cable,1,11.95,10/12/19 10:53,"230 10th St, Dallas, TX 75001" +272400,27in FHD Monitor,1,149.99,10/13/19 20:19,"468 Lakeview St, Atlanta, GA 30301" +272401,Wired Headphones,1,11.99,10/27/19 17:44,"801 Cherry St, San Francisco, CA 94016" +272402,USB-C Charging Cable,1,11.95,10/12/19 18:05,"711 South St, San Francisco, CA 94016" +272403,iPhone,1,700,10/29/19 11:32,"840 4th St, Los Angeles, CA 90001" +272404,Vareebadd Phone,1,400,10/18/19 16:06,"811 4th St, New York City, NY 10001" +272404,USB-C Charging Cable,1,11.95,10/18/19 16:06,"811 4th St, New York City, NY 10001" +272405,Lightning Charging Cable,1,14.95,10/15/19 12:15,"110 Park St, San Francisco, CA 94016" +272406,Wired Headphones,1,11.99,10/15/19 20:42,"854 Ridge St, San Francisco, CA 94016" +272407,Apple Airpods Headphones,1,150,10/14/19 13:55,"12 13th St, Boston, MA 02215" +272408,AA Batteries (4-pack),1,3.84,10/09/19 19:24,"225 5th St, Los Angeles, CA 90001" +272409,27in FHD Monitor,1,149.99,10/10/19 12:07,"468 Center St, Dallas, TX 75001" +272410,Vareebadd Phone,1,400,10/27/19 09:18,"896 Cedar St, Atlanta, GA 30301" +272411,Wired Headphones,1,11.99,10/18/19 18:58,"719 Cherry St, San Francisco, CA 94016" +272412,Apple Airpods Headphones,1,150,10/23/19 10:38,"906 Adams St, Los Angeles, CA 90001" +272413,27in FHD Monitor,1,149.99,10/26/19 21:01,"920 Wilson St, Atlanta, GA 30301" +272414,Flatscreen TV,1,300,10/14/19 13:30,"577 Willow St, Dallas, TX 75001" +272415,34in Ultrawide Monitor,1,379.99,10/03/19 19:15,"291 Forest St, Austin, TX 73301" +272416,USB-C Charging Cable,2,11.95,10/31/19 07:12,"55 Willow St, New York City, NY 10001" +272417,AAA Batteries (4-pack),1,2.99,10/28/19 19:21,"895 Pine St, San Francisco, CA 94016" +272418,Wired Headphones,1,11.99,10/25/19 19:18,"349 River St, Austin, TX 73301" +272419,Vareebadd Phone,1,400,10/15/19 11:03,"427 Willow St, Los Angeles, CA 90001" +272420,Wired Headphones,1,11.99,10/26/19 15:08,"928 Jackson St, Los Angeles, CA 90001" +272421,Apple Airpods Headphones,1,150,10/03/19 18:50,"923 7th St, San Francisco, CA 94016" +272422,USB-C Charging Cable,1,11.95,10/15/19 19:17,"980 4th St, San Francisco, CA 94016" +272423,AAA Batteries (4-pack),1,2.99,10/26/19 15:32,"833 Ridge St, New York City, NY 10001" +272424,USB-C Charging Cable,1,11.95,10/03/19 12:33,"226 Forest St, New York City, NY 10001" +272425,AA Batteries (4-pack),3,3.84,10/30/19 18:46,"132 Jefferson St, San Francisco, CA 94016" +272426,AA Batteries (4-pack),1,3.84,10/19/19 17:56,"21 Main St, Seattle, WA 98101" +272427,Wired Headphones,1,11.99,10/13/19 13:57,"441 Lakeview St, Portland, ME 04101" +272428,27in FHD Monitor,1,149.99,10/12/19 17:53,"943 Ridge St, San Francisco, CA 94016" +272429,34in Ultrawide Monitor,1,379.99,10/30/19 14:54,"123 5th St, San Francisco, CA 94016" +272430,AAA Batteries (4-pack),1,2.99,10/03/19 12:30,"968 11th St, Seattle, WA 98101" +272431,Bose SoundSport Headphones,1,99.99,10/04/19 14:07,"210 West St, San Francisco, CA 94016" +272432,Lightning Charging Cable,1,14.95,10/10/19 19:18,"414 Cherry St, San Francisco, CA 94016" +272433,Lightning Charging Cable,1,14.95,10/22/19 13:33,"813 11th St, Los Angeles, CA 90001" +272434,Vareebadd Phone,1,400,10/09/19 16:34,"443 Lake St, Los Angeles, CA 90001" +272435,Bose SoundSport Headphones,1,99.99,10/19/19 10:57,"54 Lincoln St, Boston, MA 02215" +272436,Wired Headphones,1,11.99,10/07/19 23:35,"909 Pine St, Los Angeles, CA 90001" +272437,27in FHD Monitor,1,149.99,10/03/19 17:13,"336 11th St, San Francisco, CA 94016" +272438,AAA Batteries (4-pack),1,2.99,10/17/19 20:58,"308 Washington St, Los Angeles, CA 90001" +272439,Flatscreen TV,1,300,10/12/19 15:09,"775 Center St, Los Angeles, CA 90001" +272440,AAA Batteries (4-pack),1,2.99,10/15/19 15:39,"731 12th St, Atlanta, GA 30301" +272441,AA Batteries (4-pack),1,3.84,10/05/19 00:27,"414 9th St, Portland, OR 97035" +272442,27in FHD Monitor,1,149.99,10/15/19 23:40,"636 Lakeview St, San Francisco, CA 94016" +272443,iPhone,1,700,10/24/19 07:19,"411 Center St, San Francisco, CA 94016" +272444,Wired Headphones,1,11.99,10/28/19 19:02,"442 Hill St, New York City, NY 10001" +272445,Apple Airpods Headphones,1,150,10/14/19 14:28,"484 14th St, Boston, MA 02215" +272446,iPhone,1,700,10/28/19 21:51,"534 Adams St, San Francisco, CA 94016" +272447,AA Batteries (4-pack),3,3.84,10/05/19 18:22,"827 Hill St, Dallas, TX 75001" +272448,ThinkPad Laptop,1,999.99,10/02/19 19:29,"781 Wilson St, Atlanta, GA 30301" +272449,AA Batteries (4-pack),2,3.84,10/25/19 16:26,"15 2nd St, Boston, MA 02215" +272450,AAA Batteries (4-pack),2,2.99,10/29/19 15:07,"272 Wilson St, San Francisco, CA 94016" +272451,Google Phone,1,600,10/02/19 13:30,"114 1st St, New York City, NY 10001" +272451,Wired Headphones,1,11.99,10/02/19 13:30,"114 1st St, New York City, NY 10001" +272452,Lightning Charging Cable,1,14.95,10/01/19 13:37,"735 4th St, New York City, NY 10001" +272453,Lightning Charging Cable,1,14.95,10/30/19 19:33,"434 6th St, Dallas, TX 75001" +272454,USB-C Charging Cable,1,11.95,10/17/19 19:18,"72 Cedar St, Los Angeles, CA 90001" +272455,Wired Headphones,1,11.99,10/18/19 10:31,"785 4th St, San Francisco, CA 94016" +272456,AAA Batteries (4-pack),1,2.99,10/07/19 10:41,"221 Walnut St, Los Angeles, CA 90001" +272457,Apple Airpods Headphones,1,150,10/23/19 13:30,"321 Maple St, New York City, NY 10001" +272458,AA Batteries (4-pack),2,3.84,10/27/19 09:52,"937 Johnson St, Portland, OR 97035" +272459,Wired Headphones,1,11.99,10/10/19 20:20,"774 14th St, Boston, MA 02215" +272460,Bose SoundSport Headphones,1,99.99,10/01/19 08:51,"76 Hickory St, Dallas, TX 75001" +272461,Bose SoundSport Headphones,1,99.99,10/31/19 10:04,"336 Cedar St, Boston, MA 02215" +272462,AAA Batteries (4-pack),2,2.99,10/01/19 09:35,"175 Johnson St, Seattle, WA 98101" +272463,AA Batteries (4-pack),1,3.84,10/10/19 19:27,"147 Main St, San Francisco, CA 94016" +272464,27in FHD Monitor,1,149.99,10/06/19 22:15,"814 Church St, Seattle, WA 98101" +272465,Lightning Charging Cable,1,14.95,10/18/19 21:47,"72 14th St, New York City, NY 10001" +272465,27in 4K Gaming Monitor,1,389.99,10/18/19 21:47,"72 14th St, New York City, NY 10001" +272466,USB-C Charging Cable,1,11.95,10/09/19 18:31,"968 Park St, Los Angeles, CA 90001" +272467,Vareebadd Phone,1,400,10/03/19 18:52,"26 4th St, Seattle, WA 98101" +272468,Lightning Charging Cable,1,14.95,10/17/19 13:37,"880 Jackson St, Portland, OR 97035" +272469,Wired Headphones,1,11.99,10/04/19 23:20,"365 Lakeview St, San Francisco, CA 94016" +272470,Google Phone,1,600,10/29/19 15:10,"61 Wilson St, San Francisco, CA 94016" +272471,AAA Batteries (4-pack),1,2.99,10/31/19 20:05,"820 10th St, Dallas, TX 75001" +272472,AA Batteries (4-pack),1,3.84,10/29/19 09:15,"772 11th St, Austin, TX 73301" +272473,AA Batteries (4-pack),1,3.84,10/31/19 20:25,"708 13th St, Seattle, WA 98101" +272474,34in Ultrawide Monitor,1,379.99,10/17/19 13:29,"732 Washington St, Seattle, WA 98101" +272475,AAA Batteries (4-pack),1,2.99,10/10/19 12:33,"59 Center St, San Francisco, CA 94016" +272476,Lightning Charging Cable,1,14.95,10/06/19 16:31,"508 Church St, Seattle, WA 98101" +272477,Wired Headphones,1,11.99,10/28/19 17:11,"269 10th St, Boston, MA 02215" +272478,AAA Batteries (4-pack),1,2.99,10/08/19 05:36,"815 Walnut St, San Francisco, CA 94016" +272479,34in Ultrawide Monitor,1,379.99,10/22/19 18:48,"595 Chestnut St, Los Angeles, CA 90001" +272480,Bose SoundSport Headphones,1,99.99,10/23/19 15:20,"944 Main St, Seattle, WA 98101" +272481,iPhone,1,700,10/09/19 17:05,"204 7th St, Atlanta, GA 30301" +272482,Google Phone,1,600,10/28/19 06:53,"808 Meadow St, Atlanta, GA 30301" +272483,27in 4K Gaming Monitor,1,389.99,10/25/19 19:50,"829 Meadow St, New York City, NY 10001" +272484,AAA Batteries (4-pack),2,2.99,10/13/19 23:28,"649 West St, San Francisco, CA 94016" +272485,34in Ultrawide Monitor,1,379.99,10/13/19 10:00,"704 14th St, Dallas, TX 75001" +272486,20in Monitor,1,109.99,10/27/19 22:46,"87 6th St, New York City, NY 10001" +272487,Wired Headphones,1,11.99,10/28/19 16:33,"997 2nd St, Los Angeles, CA 90001" +272488,AA Batteries (4-pack),1,3.84,10/10/19 07:34,"140 2nd St, New York City, NY 10001" +272489,Lightning Charging Cable,1,14.95,10/03/19 13:13,"39 Center St, Boston, MA 02215" +272490,Bose SoundSport Headphones,1,99.99,10/08/19 21:43,"259 Sunset St, Dallas, TX 75001" +272491,USB-C Charging Cable,1,11.95,10/31/19 21:05,"94 13th St, San Francisco, CA 94016" +272491,27in 4K Gaming Monitor,1,389.99,10/31/19 21:05,"94 13th St, San Francisco, CA 94016" +272492,AAA Batteries (4-pack),2,2.99,10/19/19 21:17,"647 Adams St, Portland, OR 97035" +272493,Google Phone,1,600,10/30/19 02:22,"545 Lake St, New York City, NY 10001" +272494,20in Monitor,1,109.99,10/21/19 04:26,"296 14th St, Los Angeles, CA 90001" +272495,27in 4K Gaming Monitor,1,389.99,10/11/19 15:38,"745 Sunset St, San Francisco, CA 94016" +272496,AAA Batteries (4-pack),1,2.99,10/08/19 17:15,"458 11th St, Portland, OR 97035" +272497,AA Batteries (4-pack),1,3.84,10/25/19 19:10,"430 Main St, Los Angeles, CA 90001" +272498,AA Batteries (4-pack),1,3.84,10/29/19 20:50,"607 Center St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +272499,ThinkPad Laptop,1,999.99,10/27/19 20:02,"277 Pine St, Los Angeles, CA 90001" +272500,AAA Batteries (4-pack),2,2.99,10/11/19 14:46,"527 West St, Los Angeles, CA 90001" +272501,34in Ultrawide Monitor,1,379.99,10/31/19 20:38,"831 Elm St, Boston, MA 02215" +272502,Lightning Charging Cable,1,14.95,10/07/19 10:15,"50 Main St, Dallas, TX 75001" +272503,LG Washing Machine,1,600.0,10/22/19 17:25,"1 Main St, New York City, NY 10001" +272504,27in FHD Monitor,1,149.99,10/02/19 20:15,"25 Jackson St, New York City, NY 10001" +272505,AAA Batteries (4-pack),2,2.99,10/30/19 21:29,"815 Main St, San Francisco, CA 94016" +272506,ThinkPad Laptop,1,999.99,10/09/19 08:42,"14 Pine St, Boston, MA 02215" +272507,27in 4K Gaming Monitor,1,389.99,10/04/19 23:53,"68 River St, San Francisco, CA 94016" +272508,27in 4K Gaming Monitor,1,389.99,10/18/19 11:28,"593 Chestnut St, Boston, MA 02215" +272509,AAA Batteries (4-pack),4,2.99,10/28/19 21:33,"32 Forest St, Dallas, TX 75001" +272510,USB-C Charging Cable,3,11.95,10/12/19 10:53,"359 Washington St, Boston, MA 02215" +272511,USB-C Charging Cable,1,11.95,10/30/19 12:20,"222 1st St, San Francisco, CA 94016" +272512,AA Batteries (4-pack),2,3.84,10/13/19 19:14,"326 Church St, San Francisco, CA 94016" +272513,Apple Airpods Headphones,1,150,10/23/19 11:06,"347 Willow St, Seattle, WA 98101" +272514,USB-C Charging Cable,1,11.95,10/29/19 14:12,"457 13th St, Portland, ME 04101" +272515,Lightning Charging Cable,1,14.95,10/13/19 00:42,"261 Madison St, San Francisco, CA 94016" +272516,USB-C Charging Cable,1,11.95,10/22/19 18:01,"16 Lincoln St, Seattle, WA 98101" +272517,20in Monitor,1,109.99,10/22/19 14:20,"704 Meadow St, New York City, NY 10001" +272518,Wired Headphones,1,11.99,10/17/19 17:13,"84 7th St, San Francisco, CA 94016" +272519,Wired Headphones,1,11.99,10/23/19 19:11,"550 Maple St, Los Angeles, CA 90001" +272520,Apple Airpods Headphones,1,150,10/22/19 06:53,"995 Johnson St, San Francisco, CA 94016" +272521,Apple Airpods Headphones,1,150,10/13/19 02:09,"967 Walnut St, San Francisco, CA 94016" +272522,Apple Airpods Headphones,1,150,10/29/19 17:32,"672 11th St, Atlanta, GA 30301" +272523,27in 4K Gaming Monitor,1,389.99,10/09/19 14:57,"812 Church St, New York City, NY 10001" +272524,Macbook Pro Laptop,1,1700,10/15/19 21:25,"262 13th St, New York City, NY 10001" +272525,Wired Headphones,1,11.99,10/04/19 15:59,"933 Willow St, Los Angeles, CA 90001" +272526,Wired Headphones,1,11.99,10/22/19 17:58,"792 2nd St, Seattle, WA 98101" +272527,USB-C Charging Cable,1,11.95,10/27/19 09:53,"67 Sunset St, Atlanta, GA 30301" +272528,Bose SoundSport Headphones,1,99.99,10/11/19 09:25,"695 Center St, Los Angeles, CA 90001" +272529,AAA Batteries (4-pack),2,2.99,10/28/19 18:32,"221 8th St, Boston, MA 02215" +272530,iPhone,1,700,10/17/19 14:06,"971 8th St, Seattle, WA 98101" +272531,Lightning Charging Cable,1,14.95,10/10/19 11:45,"346 Hickory St, San Francisco, CA 94016" +272532,Wired Headphones,1,11.99,10/03/19 13:04,"63 8th St, San Francisco, CA 94016" +272533,AA Batteries (4-pack),1,3.84,10/20/19 10:15,"145 Johnson St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +272534,Lightning Charging Cable,1,14.95,10/17/19 21:50,"859 Madison St, San Francisco, CA 94016" +272535,Apple Airpods Headphones,1,150,10/30/19 01:28,"338 Forest St, Atlanta, GA 30301" +272536,AA Batteries (4-pack),1,3.84,10/26/19 18:38,"71 13th St, Portland, OR 97035" +272537,Lightning Charging Cable,1,14.95,10/25/19 18:26,"283 Spruce St, San Francisco, CA 94016" +272538,Lightning Charging Cable,1,14.95,10/12/19 15:14,"447 14th St, Portland, OR 97035" +272539,Wired Headphones,1,11.99,10/25/19 17:51,"73 Elm St, San Francisco, CA 94016" +272540,AA Batteries (4-pack),1,3.84,10/29/19 12:07,"445 Pine St, San Francisco, CA 94016" +272541,AA Batteries (4-pack),1,3.84,10/14/19 18:34,"141 Cherry St, Austin, TX 73301" +272542,iPhone,1,700,10/28/19 17:43,"402 Wilson St, San Francisco, CA 94016" +272543,Flatscreen TV,1,300,10/15/19 13:06,"461 Main St, Boston, MA 02215" +272544,Apple Airpods Headphones,1,150,10/13/19 22:32,"860 Pine St, Los Angeles, CA 90001" +272545,34in Ultrawide Monitor,1,379.99,10/08/19 17:59,"333 1st St, Boston, MA 02215" +272546,USB-C Charging Cable,1,11.95,10/21/19 14:03,"114 Highland St, Boston, MA 02215" +272547,Bose SoundSport Headphones,1,99.99,10/05/19 05:13,"688 Sunset St, New York City, NY 10001" +272548,Apple Airpods Headphones,1,150,10/03/19 13:58,"427 2nd St, Portland, OR 97035" +272549,Google Phone,1,600,10/29/19 07:09,"894 Jackson St, San Francisco, CA 94016" +272550,USB-C Charging Cable,1,11.95,10/03/19 10:02,"967 Chestnut St, New York City, NY 10001" +272551,AAA Batteries (4-pack),2,2.99,10/09/19 21:35,"687 12th St, Portland, OR 97035" +272551,USB-C Charging Cable,1,11.95,10/09/19 21:35,"687 12th St, Portland, OR 97035" +272552,USB-C Charging Cable,1,11.95,10/12/19 17:42,"340 Church St, Los Angeles, CA 90001" +272553,AA Batteries (4-pack),2,3.84,10/10/19 07:06,"388 Cherry St, New York City, NY 10001" +272554,AA Batteries (4-pack),1,3.84,10/06/19 14:45,"247 Cherry St, Atlanta, GA 30301" +272555,ThinkPad Laptop,1,999.99,10/13/19 20:26,"584 6th St, San Francisco, CA 94016" +272556,AAA Batteries (4-pack),1,2.99,10/29/19 23:28,"510 Johnson St, Boston, MA 02215" +272557,Wired Headphones,1,11.99,10/11/19 15:19,"86 11th St, San Francisco, CA 94016" +272558,Bose SoundSport Headphones,1,99.99,10/28/19 13:30,"652 Maple St, Austin, TX 73301" +272559,27in FHD Monitor,1,149.99,10/13/19 17:02,"701 Willow St, San Francisco, CA 94016" +272560,Wired Headphones,1,11.99,10/06/19 09:08,"69 10th St, San Francisco, CA 94016" +272560,USB-C Charging Cable,2,11.95,10/06/19 09:08,"69 10th St, San Francisco, CA 94016" +272561,Wired Headphones,2,11.99,10/28/19 15:17,"678 Madison St, New York City, NY 10001" +272562,Lightning Charging Cable,1,14.95,10/15/19 17:53,"10 Cherry St, San Francisco, CA 94016" +272563,AA Batteries (4-pack),1,3.84,10/15/19 12:42,"862 Cedar St, Boston, MA 02215" +272564,Lightning Charging Cable,1,14.95,10/14/19 18:13,"321 13th St, Los Angeles, CA 90001" +272565,Wired Headphones,1,11.99,10/01/19 15:57,"237 Walnut St, San Francisco, CA 94016" +272566,Apple Airpods Headphones,1,150,10/26/19 16:19,"340 6th St, San Francisco, CA 94016" +272567,Apple Airpods Headphones,1,150,10/08/19 21:48,"346 Willow St, Atlanta, GA 30301" +272568,AA Batteries (4-pack),1,3.84,10/14/19 08:24,"344 Hill St, Atlanta, GA 30301" +272569,Apple Airpods Headphones,1,150,10/06/19 15:41,"666 Maple St, New York City, NY 10001" +272570,27in FHD Monitor,1,149.99,10/06/19 19:48,"773 Jefferson St, New York City, NY 10001" +272571,27in 4K Gaming Monitor,1,389.99,10/30/19 14:35,"684 1st St, Seattle, WA 98101" +272572,AAA Batteries (4-pack),3,2.99,10/16/19 02:30,"617 14th St, San Francisco, CA 94016" +272573,27in FHD Monitor,1,149.99,10/17/19 18:52,"990 6th St, San Francisco, CA 94016" +272573,iPhone,1,700,10/17/19 18:52,"990 6th St, San Francisco, CA 94016" +272574,Bose SoundSport Headphones,1,99.99,10/25/19 02:28,"619 Spruce St, Austin, TX 73301" +272575,AAA Batteries (4-pack),2,2.99,10/22/19 09:35,"477 Spruce St, Seattle, WA 98101" +272576,Lightning Charging Cable,2,14.95,10/09/19 09:12,"863 Jefferson St, Boston, MA 02215" +272577,USB-C Charging Cable,1,11.95,10/21/19 20:56,"112 Sunset St, New York City, NY 10001" +272578,Bose SoundSport Headphones,1,99.99,10/05/19 15:51,"730 Main St, Los Angeles, CA 90001" +272579,27in FHD Monitor,1,149.99,10/15/19 00:00,"726 Lake St, San Francisco, CA 94016" +272580,ThinkPad Laptop,1,999.99,10/15/19 08:13,"674 Highland St, Atlanta, GA 30301" +272581,Bose SoundSport Headphones,1,99.99,10/31/19 19:58,"608 Park St, Dallas, TX 75001" +272582,AAA Batteries (4-pack),1,2.99,10/25/19 14:08,"739 2nd St, Atlanta, GA 30301" +272583,USB-C Charging Cable,1,11.95,10/20/19 15:14,"892 10th St, New York City, NY 10001" +272584,USB-C Charging Cable,1,11.95,10/07/19 00:03,"166 Pine St, Dallas, TX 75001" +272585,USB-C Charging Cable,2,11.95,10/21/19 12:48,"808 Jefferson St, New York City, NY 10001" +272586,USB-C Charging Cable,1,11.95,10/27/19 14:11,"603 Maple St, Los Angeles, CA 90001" +272587,Apple Airpods Headphones,1,150,10/23/19 21:06,"687 Madison St, Austin, TX 73301" +272588,Wired Headphones,1,11.99,10/02/19 22:36,"846 Dogwood St, Seattle, WA 98101" +272589,Macbook Pro Laptop,1,1700,10/07/19 18:32,"783 13th St, Los Angeles, CA 90001" +272590,USB-C Charging Cable,1,11.95,10/08/19 14:08,"199 Pine St, Dallas, TX 75001" +272591,Apple Airpods Headphones,1,150,10/25/19 18:38,"131 Spruce St, Los Angeles, CA 90001" +272592,ThinkPad Laptop,1,999.99,10/01/19 13:34,"945 Sunset St, New York City, NY 10001" +272593,AAA Batteries (4-pack),1,2.99,10/12/19 20:48,"249 Chestnut St, Austin, TX 73301" +272594,Lightning Charging Cable,1,14.95,10/29/19 01:27,"863 Adams St, New York City, NY 10001" +272595,27in 4K Gaming Monitor,1,389.99,10/26/19 00:07,"289 5th St, San Francisco, CA 94016" +272596,Apple Airpods Headphones,1,150,10/23/19 19:31,"526 Jefferson St, Atlanta, GA 30301" +272597,AA Batteries (4-pack),1,3.84,10/01/19 12:22,"905 Maple St, Boston, MA 02215" +272598,ThinkPad Laptop,1,999.99,10/21/19 17:17,"49 Jefferson St, Boston, MA 02215" +272599,Wired Headphones,1,11.99,10/10/19 13:51,"498 2nd St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +272600,iPhone,1,700,10/10/19 18:50,"893 Chestnut St, Portland, OR 97035" +272600,Lightning Charging Cable,1,14.95,10/10/19 18:50,"893 Chestnut St, Portland, OR 97035" +272601,Apple Airpods Headphones,1,150,10/30/19 10:13,"106 Elm St, Dallas, TX 75001" +272602,Apple Airpods Headphones,1,150,10/06/19 09:27,"26 Willow St, Austin, TX 73301" +272603,Wired Headphones,1,11.99,10/05/19 14:27,"818 Highland St, Los Angeles, CA 90001" +272604,Lightning Charging Cable,1,14.95,10/01/19 08:40,"261 Chestnut St, New York City, NY 10001" +272605,Apple Airpods Headphones,1,150,10/25/19 17:54,"508 Park St, San Francisco, CA 94016" +272606,Google Phone,1,600,10/29/19 10:48,"805 North St, Los Angeles, CA 90001" +272606,USB-C Charging Cable,1,11.95,10/29/19 10:48,"805 North St, Los Angeles, CA 90001" +272607,Lightning Charging Cable,1,14.95,10/24/19 10:40,"712 Main St, Austin, TX 73301" +272608,34in Ultrawide Monitor,1,379.99,10/29/19 14:22,"15 Lakeview St, Boston, MA 02215" +272609,Google Phone,1,600,10/04/19 19:31,"583 Church St, New York City, NY 10001" +272610,AA Batteries (4-pack),1,3.84,10/16/19 16:55,"277 Cedar St, New York City, NY 10001" +272611,Bose SoundSport Headphones,1,99.99,10/20/19 16:56,"164 Meadow St, New York City, NY 10001" +272612,USB-C Charging Cable,1,11.95,10/21/19 18:17,"910 Walnut St, Portland, OR 97035" +272613,USB-C Charging Cable,2,11.95,10/16/19 19:26,"174 Maple St, Boston, MA 02215" +272614,34in Ultrawide Monitor,1,379.99,10/09/19 16:19,"17 Willow St, Portland, OR 97035" +272615,Bose SoundSport Headphones,1,99.99,10/15/19 17:12,"31 Walnut St, Boston, MA 02215" +272616,34in Ultrawide Monitor,1,379.99,10/12/19 11:13,"878 9th St, New York City, NY 10001" +272617,Wired Headphones,1,11.99,10/10/19 09:27,"129 6th St, New York City, NY 10001" +272618,AAA Batteries (4-pack),1,2.99,10/07/19 14:22,"965 West St, New York City, NY 10001" +272619,20in Monitor,2,109.99,10/02/19 09:48,"125 Lake St, Austin, TX 73301" +272620,AA Batteries (4-pack),1,3.84,10/18/19 09:16,"383 6th St, Seattle, WA 98101" +272621,Bose SoundSport Headphones,1,99.99,10/17/19 05:14,"853 Spruce St, New York City, NY 10001" +272622,Wired Headphones,1,11.99,10/09/19 10:31,"772 Jefferson St, Los Angeles, CA 90001" +272623,Wired Headphones,1,11.99,10/22/19 13:49,"355 Lincoln St, Atlanta, GA 30301" +272624,Lightning Charging Cable,1,14.95,10/13/19 12:49,"265 Park St, Portland, OR 97035" +272625,iPhone,1,700,10/10/19 11:21,"534 11th St, Boston, MA 02215" +272626,ThinkPad Laptop,1,999.99,10/29/19 19:57,"134 Pine St, New York City, NY 10001" +272627,Wired Headphones,1,11.99,10/18/19 19:46,"994 Adams St, Los Angeles, CA 90001" +272628,Apple Airpods Headphones,1,150,10/17/19 20:01,"445 West St, San Francisco, CA 94016" +272629,Wired Headphones,1,11.99,10/25/19 12:55,"918 Highland St, Los Angeles, CA 90001" +272630,Lightning Charging Cable,1,14.95,10/30/19 17:26,"615 Lincoln St, New York City, NY 10001" +272631,Apple Airpods Headphones,1,150,10/06/19 10:40,"814 Chestnut St, Seattle, WA 98101" +272632,20in Monitor,1,109.99,10/16/19 14:10,"85 10th St, Austin, TX 73301" +272633,Flatscreen TV,1,300,10/15/19 04:21,"863 7th St, Boston, MA 02215" +272634,27in FHD Monitor,1,149.99,10/17/19 18:08,"391 Park St, San Francisco, CA 94016" +272634,Flatscreen TV,1,300,10/17/19 18:08,"391 Park St, San Francisco, CA 94016" +272635,27in 4K Gaming Monitor,1,389.99,10/22/19 17:37,"857 Cherry St, Seattle, WA 98101" +272636,USB-C Charging Cable,1,11.95,10/14/19 17:19,"60 Cherry St, Dallas, TX 75001" +272637,AA Batteries (4-pack),1,3.84,10/05/19 00:19,"256 9th St, Los Angeles, CA 90001" +272638,34in Ultrawide Monitor,1,379.99,10/30/19 13:32,"521 Jackson St, Los Angeles, CA 90001" +272639,27in 4K Gaming Monitor,1,389.99,10/24/19 15:34,"33 Cedar St, Portland, OR 97035" +272640,Lightning Charging Cable,1,14.95,10/12/19 11:46,"186 Jackson St, Boston, MA 02215" +272641,USB-C Charging Cable,1,11.95,10/20/19 22:00,"729 Spruce St, New York City, NY 10001" +272642,Vareebadd Phone,1,400,10/07/19 19:47,"271 Spruce St, Portland, OR 97035" +272643,USB-C Charging Cable,2,11.95,10/10/19 19:41,"494 North St, Boston, MA 02215" +272644,USB-C Charging Cable,1,11.95,10/26/19 20:25,"129 Meadow St, Boston, MA 02215" +272645,USB-C Charging Cable,1,11.95,10/18/19 10:09,"920 Hickory St, Los Angeles, CA 90001" +272646,Bose SoundSport Headphones,1,99.99,10/10/19 12:48,"318 Maple St, Atlanta, GA 30301" +272647,Wired Headphones,1,11.99,10/30/19 17:41,"692 Lakeview St, Austin, TX 73301" +272648,Bose SoundSport Headphones,1,99.99,10/18/19 13:17,"668 Lakeview St, Portland, ME 04101" +272649,Lightning Charging Cable,1,14.95,10/04/19 07:43,"54 5th St, Los Angeles, CA 90001" +272650,USB-C Charging Cable,1,11.95,10/06/19 14:35,"934 Washington St, Boston, MA 02215" +272651,AA Batteries (4-pack),2,3.84,10/29/19 00:56,"663 12th St, Boston, MA 02215" +272652,27in 4K Gaming Monitor,1,389.99,10/26/19 19:40,"859 Main St, Los Angeles, CA 90001" +272653,27in FHD Monitor,1,149.99,10/21/19 11:01,"913 5th St, Seattle, WA 98101" +272654,27in FHD Monitor,1,149.99,10/21/19 19:14,"707 10th St, Seattle, WA 98101" +272655,AA Batteries (4-pack),1,3.84,10/26/19 18:58,"58 Jackson St, Boston, MA 02215" +272656,iPhone,1,700,10/07/19 23:53,"956 Highland St, Atlanta, GA 30301" +272657,Lightning Charging Cable,1,14.95,10/12/19 09:28,"911 River St, Atlanta, GA 30301" +272658,Wired Headphones,1,11.99,10/26/19 15:04,"312 9th St, San Francisco, CA 94016" +272659,Lightning Charging Cable,1,14.95,10/16/19 10:17,"17 Walnut St, Portland, OR 97035" +272660,27in FHD Monitor,1,149.99,10/01/19 22:33,"558 Pine St, New York City, NY 10001" +272661,Google Phone,1,600,10/29/19 19:06,"523 Park St, San Francisco, CA 94016" +272662,Wired Headphones,1,11.99,10/15/19 11:19,"594 14th St, New York City, NY 10001" +272663,34in Ultrawide Monitor,1,379.99,10/19/19 08:29,"233 River St, New York City, NY 10001" +272664,AA Batteries (4-pack),1,3.84,10/10/19 23:21,"313 4th St, Boston, MA 02215" +272665,34in Ultrawide Monitor,1,379.99,10/10/19 09:59,"989 4th St, Portland, OR 97035" +272666,Apple Airpods Headphones,1,150,10/27/19 22:45,"197 Willow St, San Francisco, CA 94016" +272667,AA Batteries (4-pack),1,3.84,10/02/19 17:13,"332 Main St, San Francisco, CA 94016" +272668,Lightning Charging Cable,1,14.95,10/27/19 12:05,"799 6th St, Los Angeles, CA 90001" +272669,Bose SoundSport Headphones,1,99.99,10/20/19 11:19,"867 Pine St, Los Angeles, CA 90001" +272670,Apple Airpods Headphones,1,150,10/29/19 20:05,"455 Pine St, New York City, NY 10001" +272671,Google Phone,1,600,10/10/19 13:35,"586 Church St, Atlanta, GA 30301" +272672,Bose SoundSport Headphones,1,99.99,10/07/19 15:25,"847 2nd St, San Francisco, CA 94016" +272673,Bose SoundSport Headphones,1,99.99,10/26/19 11:22,"827 Madison St, San Francisco, CA 94016" +272674,AAA Batteries (4-pack),1,2.99,10/23/19 20:30,"199 Hickory St, Dallas, TX 75001" +272675,Google Phone,1,600,10/20/19 12:29,"19 Lake St, San Francisco, CA 94016" +272676,20in Monitor,1,109.99,10/18/19 00:29,"653 Elm St, Los Angeles, CA 90001" +272677,AA Batteries (4-pack),1,3.84,10/04/19 21:08,"855 6th St, New York City, NY 10001" +272678,Apple Airpods Headphones,1,150,10/24/19 23:46,"999 6th St, Seattle, WA 98101" +272679,Wired Headphones,1,11.99,10/10/19 22:31,"792 6th St, Atlanta, GA 30301" +272680,34in Ultrawide Monitor,1,379.99,10/04/19 19:16,"37 8th St, Austin, TX 73301" +272681,20in Monitor,1,109.99,10/08/19 19:44,"861 Spruce St, Atlanta, GA 30301" +272682,Lightning Charging Cable,1,14.95,10/26/19 05:26,"773 Johnson St, Boston, MA 02215" +272683,AAA Batteries (4-pack),2,2.99,10/17/19 13:24,"429 1st St, Los Angeles, CA 90001" +272684,Wired Headphones,1,11.99,10/03/19 12:36,"904 Highland St, Boston, MA 02215" +272685,Wired Headphones,1,11.99,10/31/19 15:29,"270 Lincoln St, Los Angeles, CA 90001" +272686,Bose SoundSport Headphones,1,99.99,10/12/19 16:45,"852 Willow St, Atlanta, GA 30301" +272687,AAA Batteries (4-pack),2,2.99,10/12/19 10:12,"171 Pine St, Los Angeles, CA 90001" +272688,AAA Batteries (4-pack),2,2.99,10/18/19 21:36,"392 Dogwood St, Los Angeles, CA 90001" +272689,27in 4K Gaming Monitor,1,389.99,10/19/19 23:23,"346 Walnut St, Portland, OR 97035" +272690,Lightning Charging Cable,1,14.95,10/20/19 11:25,"484 10th St, Boston, MA 02215" +272691,Apple Airpods Headphones,1,150,10/22/19 12:29,"809 Madison St, New York City, NY 10001" +272692,AAA Batteries (4-pack),1,2.99,10/11/19 21:05,"996 Jefferson St, San Francisco, CA 94016" +272693,Bose SoundSport Headphones,1,99.99,10/20/19 00:50,"852 9th St, Los Angeles, CA 90001" +272694,Wired Headphones,1,11.99,10/18/19 13:47,"792 Maple St, Portland, OR 97035" +272695,Lightning Charging Cable,1,14.95,10/29/19 09:33,"182 Elm St, Portland, OR 97035" +272696,USB-C Charging Cable,1,11.95,10/28/19 08:13,"26 Chestnut St, Atlanta, GA 30301" +272697,AA Batteries (4-pack),1,3.84,10/29/19 18:33,"503 Sunset St, San Francisco, CA 94016" +272698,USB-C Charging Cable,2,11.95,10/23/19 20:39,"246 Elm St, Los Angeles, CA 90001" +272699,USB-C Charging Cable,1,11.95,10/26/19 15:06,"86 8th St, New York City, NY 10001" +272700,AAA Batteries (4-pack),1,2.99,10/08/19 09:23,"486 Washington St, Los Angeles, CA 90001" +272700,AAA Batteries (4-pack),1,2.99,10/08/19 09:23,"486 Washington St, Los Angeles, CA 90001" +272701,AA Batteries (4-pack),1,3.84,10/10/19 01:25,"850 14th St, Dallas, TX 75001" +272702,Lightning Charging Cable,1,14.95,10/14/19 18:15,"19 1st St, Atlanta, GA 30301" +272703,iPhone,1,700,10/25/19 16:46,"828 North St, Boston, MA 02215" +272703,Lightning Charging Cable,1,14.95,10/25/19 16:46,"828 North St, Boston, MA 02215" +272704,Bose SoundSport Headphones,1,99.99,10/25/19 21:33,"594 Wilson St, San Francisco, CA 94016" +272705,AAA Batteries (4-pack),4,2.99,10/31/19 12:10,"552 Walnut St, Dallas, TX 75001" +272706,Apple Airpods Headphones,1,150,10/05/19 16:22,"477 Elm St, Los Angeles, CA 90001" +272707,Flatscreen TV,1,300,10/28/19 18:58,"66 Forest St, Los Angeles, CA 90001" +272708,Bose SoundSport Headphones,1,99.99,10/18/19 09:47,"364 Sunset St, Los Angeles, CA 90001" +272709,Lightning Charging Cable,1,14.95,10/14/19 23:25,"491 Dogwood St, San Francisco, CA 94016" +272710,AA Batteries (4-pack),1,3.84,10/14/19 04:11,"653 Walnut St, San Francisco, CA 94016" +272711,AA Batteries (4-pack),1,3.84,10/10/19 18:21,"971 Adams St, Dallas, TX 75001" +272712,27in 4K Gaming Monitor,1,389.99,10/11/19 22:25,"106 1st St, San Francisco, CA 94016" +272713,Apple Airpods Headphones,1,150,10/31/19 16:30,"900 Washington St, Seattle, WA 98101" +272714,iPhone,1,700,10/13/19 17:40,"771 Highland St, Austin, TX 73301" +272714,Lightning Charging Cable,2,14.95,10/13/19 17:40,"771 Highland St, Austin, TX 73301" +272715,Apple Airpods Headphones,1,150,10/02/19 14:29,"346 Cherry St, San Francisco, CA 94016" +272716,Google Phone,1,600,10/02/19 09:51,"701 South St, Los Angeles, CA 90001" +272717,iPhone,1,700,10/06/19 21:26,"254 Center St, Boston, MA 02215" +272717,ThinkPad Laptop,1,999.99,10/06/19 21:26,"254 Center St, Boston, MA 02215" +272718,27in FHD Monitor,1,149.99,10/15/19 08:58,"63 Washington St, San Francisco, CA 94016" +272719,Apple Airpods Headphones,1,150,10/17/19 10:52,"354 Elm St, Los Angeles, CA 90001" +272720,AA Batteries (4-pack),1,3.84,10/31/19 20:08,"767 Center St, Austin, TX 73301" +272721,Lightning Charging Cable,1,14.95,10/18/19 06:26,"956 Jackson St, Los Angeles, CA 90001" +272722,iPhone,1,700,10/14/19 15:35,"659 Hickory St, New York City, NY 10001" +272722,Apple Airpods Headphones,1,150,10/14/19 15:35,"659 Hickory St, New York City, NY 10001" +272723,Apple Airpods Headphones,1,150,10/19/19 18:19,"112 Hickory St, San Francisco, CA 94016" +272724,Wired Headphones,1,11.99,10/25/19 19:52,"619 11th St, Austin, TX 73301" +272725,LG Dryer,1,600.0,10/21/19 21:01,"213 West St, Los Angeles, CA 90001" +272726,34in Ultrawide Monitor,1,379.99,10/15/19 10:21,"388 8th St, Seattle, WA 98101" +272727,Lightning Charging Cable,1,14.95,10/24/19 17:21,"352 Pine St, San Francisco, CA 94016" +272728,Vareebadd Phone,1,400,10/17/19 14:39,"900 13th St, Portland, ME 04101" +272728,USB-C Charging Cable,1,11.95,10/17/19 14:39,"900 13th St, Portland, ME 04101" +272729,Bose SoundSport Headphones,1,99.99,10/16/19 12:44,"355 4th St, Boston, MA 02215" +272730,Lightning Charging Cable,1,14.95,10/02/19 13:30,"627 Maple St, Los Angeles, CA 90001" +272731,iPhone,1,700,10/09/19 17:51,"112 Chestnut St, San Francisco, CA 94016" +272732,AA Batteries (4-pack),2,3.84,10/24/19 01:53,"837 14th St, Dallas, TX 75001" +272733,iPhone,1,700,10/15/19 13:02,"805 6th St, Boston, MA 02215" +272734,USB-C Charging Cable,1,11.95,10/07/19 07:49,"220 13th St, Los Angeles, CA 90001" +272735,USB-C Charging Cable,1,11.95,10/07/19 20:51,"534 Sunset St, San Francisco, CA 94016" +272736,ThinkPad Laptop,1,999.99,10/15/19 23:27,"699 9th St, Atlanta, GA 30301" +272737,Bose SoundSport Headphones,1,99.99,10/14/19 00:16,"458 Cedar St, New York City, NY 10001" +272738,Google Phone,1,600,10/14/19 16:03,"817 Adams St, Dallas, TX 75001" +272738,USB-C Charging Cable,1,11.95,10/14/19 16:03,"817 Adams St, Dallas, TX 75001" +272739,AA Batteries (4-pack),1,3.84,10/08/19 15:15,"182 Meadow St, Atlanta, GA 30301" +272740,USB-C Charging Cable,2,11.95,10/19/19 22:15,"795 West St, Boston, MA 02215" +,,,,, +272741,Google Phone,1,600,10/01/19 20:46,"779 Highland St, Los Angeles, CA 90001" +272742,Wired Headphones,1,11.99,10/05/19 07:28,"841 Johnson St, New York City, NY 10001" +272743,AA Batteries (4-pack),1,3.84,10/26/19 16:23,"684 Lakeview St, Boston, MA 02215" +272744,Macbook Pro Laptop,1,1700,10/16/19 20:39,"193 1st St, Austin, TX 73301" +272745,Lightning Charging Cable,1,14.95,10/17/19 13:43,"666 Cherry St, Atlanta, GA 30301" +272746,Lightning Charging Cable,2,14.95,10/08/19 16:36,"295 1st St, San Francisco, CA 94016" +272747,Lightning Charging Cable,1,14.95,10/26/19 19:23,"137 Park St, Los Angeles, CA 90001" +272748,34in Ultrawide Monitor,1,379.99,10/16/19 10:03,"664 Elm St, San Francisco, CA 94016" +272749,AAA Batteries (4-pack),1,2.99,10/09/19 15:46,"951 6th St, San Francisco, CA 94016" +272750,AA Batteries (4-pack),1,3.84,10/14/19 15:21,"956 5th St, New York City, NY 10001" +272751,USB-C Charging Cable,1,11.95,10/09/19 11:31,"56 Wilson St, Austin, TX 73301" +272752,Wired Headphones,1,11.99,10/27/19 07:26,"861 7th St, Dallas, TX 75001" +272753,AA Batteries (4-pack),1,3.84,10/12/19 16:42,"70 14th St, Dallas, TX 75001" +272754,iPhone,1,700,10/22/19 16:04,"161 Main St, San Francisco, CA 94016" +272754,Lightning Charging Cable,1,14.95,10/22/19 16:04,"161 Main St, San Francisco, CA 94016" +272754,Apple Airpods Headphones,1,150,10/22/19 16:04,"161 Main St, San Francisco, CA 94016" +272755,iPhone,1,700,10/23/19 15:23,"377 6th St, Dallas, TX 75001" +272755,Wired Headphones,1,11.99,10/23/19 15:23,"377 6th St, Dallas, TX 75001" +272756,Flatscreen TV,1,300,10/22/19 14:03,"617 Church St, Dallas, TX 75001" +272757,Flatscreen TV,1,300,10/03/19 09:38,"156 Cherry St, Boston, MA 02215" +272758,AAA Batteries (4-pack),2,2.99,10/18/19 12:28,"354 River St, Atlanta, GA 30301" +272759,Lightning Charging Cable,1,14.95,10/09/19 19:35,"652 River St, San Francisco, CA 94016" +272760,Wired Headphones,1,11.99,10/11/19 22:48,"104 Johnson St, Atlanta, GA 30301" +272761,AAA Batteries (4-pack),1,2.99,10/04/19 22:13,"65 Maple St, Dallas, TX 75001" +272762,Flatscreen TV,1,300,10/27/19 19:24,"291 10th St, Portland, OR 97035" +272763,27in 4K Gaming Monitor,1,389.99,10/31/19 20:19,"840 Lake St, Los Angeles, CA 90001" +272764,Lightning Charging Cable,1,14.95,10/20/19 19:30,"428 Dogwood St, New York City, NY 10001" +272765,ThinkPad Laptop,1,999.99,10/14/19 10:42,"94 Hill St, Atlanta, GA 30301" +272766,Google Phone,1,600,10/02/19 12:33,"948 Center St, Los Angeles, CA 90001" +272767,Google Phone,1,600,10/19/19 15:24,"904 8th St, Los Angeles, CA 90001" +272768,USB-C Charging Cable,1,11.95,10/26/19 21:01,"434 14th St, San Francisco, CA 94016" +272769,Wired Headphones,1,11.99,10/09/19 17:11,"715 Church St, New York City, NY 10001" +272770,Bose SoundSport Headphones,1,99.99,10/15/19 20:28,"923 Cherry St, New York City, NY 10001" +272771,Lightning Charging Cable,1,14.95,10/06/19 03:28,"962 Main St, San Francisco, CA 94016" +272772,Wired Headphones,1,11.99,10/23/19 10:51,"214 14th St, New York City, NY 10001" +272773,AA Batteries (4-pack),1,3.84,10/24/19 11:15,"833 West St, Seattle, WA 98101" +272774,Bose SoundSport Headphones,1,99.99,10/26/19 08:33,"20 West St, New York City, NY 10001" +272775,Wired Headphones,1,11.99,10/04/19 23:23,"351 West St, Los Angeles, CA 90001" +272776,AAA Batteries (4-pack),1,2.99,10/09/19 10:54,"158 Hickory St, Seattle, WA 98101" +272777,AAA Batteries (4-pack),2,2.99,10/01/19 07:25,"382 Main St, San Francisco, CA 94016" +272778,AA Batteries (4-pack),1,3.84,10/21/19 12:06,"333 Elm St, Los Angeles, CA 90001" +272779,USB-C Charging Cable,1,11.95,10/21/19 13:49,"229 South St, Austin, TX 73301" +272780,Lightning Charging Cable,1,14.95,10/19/19 17:41,"298 Jackson St, Dallas, TX 75001" +272781,Bose SoundSport Headphones,1,99.99,10/04/19 17:16,"519 Park St, San Francisco, CA 94016" +272782,AAA Batteries (4-pack),1,2.99,10/13/19 12:06,"548 Lincoln St, Boston, MA 02215" +272783,AAA Batteries (4-pack),1,2.99,10/01/19 20:31,"380 12th St, Portland, OR 97035" +272784,Google Phone,1,600,10/04/19 17:55,"73 Cherry St, Los Angeles, CA 90001" +272785,ThinkPad Laptop,1,999.99,10/18/19 19:33,"265 Dogwood St, Atlanta, GA 30301" +272786,ThinkPad Laptop,1,999.99,10/10/19 09:21,"108 14th St, Boston, MA 02215" +272787,Macbook Pro Laptop,1,1700,10/23/19 20:25,"942 Willow St, Atlanta, GA 30301" +272788,Lightning Charging Cable,1,14.95,10/03/19 13:56,"364 Lake St, San Francisco, CA 94016" +272789,AA Batteries (4-pack),1,3.84,10/03/19 07:56,"34 Chestnut St, San Francisco, CA 94016" +272790,LG Washing Machine,1,600.0,10/23/19 11:30,"975 Lakeview St, Austin, TX 73301" +272791,Flatscreen TV,1,300,10/14/19 20:35,"255 Jackson St, Dallas, TX 75001" +272792,AA Batteries (4-pack),1,3.84,10/09/19 12:25,"460 Lakeview St, Dallas, TX 75001" +272793,Apple Airpods Headphones,1,150,10/15/19 16:02,"635 Elm St, Atlanta, GA 30301" +272794,Apple Airpods Headphones,1,150,10/30/19 20:38,"473 South St, San Francisco, CA 94016" +272795,USB-C Charging Cable,2,11.95,10/02/19 12:55,"519 9th St, Atlanta, GA 30301" +272796,AA Batteries (4-pack),2,3.84,10/27/19 13:41,"135 Johnson St, Seattle, WA 98101" +272797,USB-C Charging Cable,1,11.95,10/17/19 22:38,"227 Main St, San Francisco, CA 94016" +272798,34in Ultrawide Monitor,1,379.99,10/13/19 05:31,"653 Church St, Seattle, WA 98101" +272799,Lightning Charging Cable,2,14.95,10/30/19 08:43,"926 Adams St, San Francisco, CA 94016" +272800,Bose SoundSport Headphones,1,99.99,10/31/19 21:41,"207 12th St, Los Angeles, CA 90001" +272801,AA Batteries (4-pack),3,3.84,10/03/19 13:40,"313 Johnson St, San Francisco, CA 94016" +272802,Vareebadd Phone,1,400,10/15/19 00:19,"828 9th St, San Francisco, CA 94016" +272803,27in 4K Gaming Monitor,1,389.99,10/13/19 22:00,"237 Willow St, Portland, OR 97035" +272804,Bose SoundSport Headphones,1,99.99,10/20/19 18:53,"982 Pine St, Los Angeles, CA 90001" +272805,Macbook Pro Laptop,1,1700,10/15/19 12:56,"927 Pine St, Los Angeles, CA 90001" +272806,Macbook Pro Laptop,1,1700,10/17/19 19:43,"24 Chestnut St, Portland, OR 97035" +272807,Wired Headphones,2,11.99,10/22/19 12:42,"601 Johnson St, San Francisco, CA 94016" +272808,USB-C Charging Cable,1,11.95,10/23/19 16:07,"929 West St, Los Angeles, CA 90001" +272809,Apple Airpods Headphones,1,150,10/30/19 02:03,"280 9th St, San Francisco, CA 94016" +272810,34in Ultrawide Monitor,1,379.99,10/09/19 17:37,"358 Cherry St, Dallas, TX 75001" +272811,Lightning Charging Cable,1,14.95,10/25/19 07:38,"908 North St, New York City, NY 10001" +272812,Bose SoundSport Headphones,1,99.99,10/25/19 13:59,"861 Ridge St, San Francisco, CA 94016" +272813,27in 4K Gaming Monitor,1,389.99,10/31/19 06:55,"453 13th St, Portland, OR 97035" +272814,AAA Batteries (4-pack),1,2.99,10/11/19 20:32,"677 Church St, New York City, NY 10001" +272815,AA Batteries (4-pack),1,3.84,10/01/19 17:51,"761 Elm St, Los Angeles, CA 90001" +272816,Lightning Charging Cable,1,14.95,10/15/19 19:00,"694 7th St, Boston, MA 02215" +272817,USB-C Charging Cable,1,11.95,10/16/19 08:59,"950 Main St, Atlanta, GA 30301" +272818,AA Batteries (4-pack),2,3.84,10/14/19 10:30,"958 14th St, San Francisco, CA 94016" +272819,Wired Headphones,1,11.99,10/26/19 17:02,"573 West St, New York City, NY 10001" +272820,AA Batteries (4-pack),1,3.84,10/08/19 11:55,"282 10th St, San Francisco, CA 94016" +272821,iPhone,1,700,10/27/19 18:17,"476 10th St, San Francisco, CA 94016" +272822,Flatscreen TV,1,300,10/23/19 12:28,"133 Washington St, Atlanta, GA 30301" +272823,Lightning Charging Cable,1,14.95,10/19/19 18:47,"557 11th St, Austin, TX 73301" +272824,27in 4K Gaming Monitor,1,389.99,10/11/19 18:20,"514 Maple St, Los Angeles, CA 90001" +272825,USB-C Charging Cable,1,11.95,10/03/19 14:34,"431 5th St, Boston, MA 02215" +272826,Apple Airpods Headphones,1,150,10/18/19 14:04,"105 West St, New York City, NY 10001" +272827,Flatscreen TV,1,300,10/26/19 17:44,"996 Pine St, San Francisco, CA 94016" +272828,USB-C Charging Cable,1,11.95,10/13/19 00:46,"534 13th St, Los Angeles, CA 90001" +272829,USB-C Charging Cable,1,11.95,10/02/19 14:45,"499 Cherry St, Atlanta, GA 30301" +272830,Wired Headphones,1,11.99,10/31/19 20:43,"578 River St, San Francisco, CA 94016" +272831,Bose SoundSport Headphones,1,99.99,10/24/19 13:07,"313 10th St, Dallas, TX 75001" +272832,27in FHD Monitor,1,149.99,10/06/19 08:01,"563 1st St, Seattle, WA 98101" +272833,Wired Headphones,1,11.99,10/23/19 13:59,"461 Washington St, Los Angeles, CA 90001" +272834,Lightning Charging Cable,1,14.95,10/03/19 11:48,"941 Spruce St, Boston, MA 02215" +272835,Google Phone,1,600,10/17/19 16:27,"755 Willow St, New York City, NY 10001" +272836,AA Batteries (4-pack),1,3.84,10/01/19 13:06,"670 North St, Los Angeles, CA 90001" +272837,AA Batteries (4-pack),2,3.84,10/11/19 18:48,"921 2nd St, Los Angeles, CA 90001" +272838,Lightning Charging Cable,1,14.95,10/16/19 16:51,"871 Lakeview St, Dallas, TX 75001" +272839,Bose SoundSport Headphones,1,99.99,10/25/19 18:57,"94 Ridge St, Boston, MA 02215" +272840,Lightning Charging Cable,1,14.95,10/22/19 19:19,"273 Pine St, Los Angeles, CA 90001" +272841,iPhone,1,700,10/02/19 21:43,"493 Sunset St, Boston, MA 02215" +272842,AA Batteries (4-pack),2,3.84,10/08/19 13:09,"666 Hickory St, Seattle, WA 98101" +272843,AAA Batteries (4-pack),2,2.99,10/13/19 12:28,"758 4th St, San Francisco, CA 94016" +272844,USB-C Charging Cable,1,11.95,10/18/19 02:19,"227 13th St, Seattle, WA 98101" +272845,AAA Batteries (4-pack),1,2.99,10/22/19 19:42,"476 1st St, Atlanta, GA 30301" +272846,AA Batteries (4-pack),3,3.84,10/04/19 19:45,"927 Lakeview St, San Francisco, CA 94016" +272847,Wired Headphones,1,11.99,10/22/19 04:43,"104 Lakeview St, Dallas, TX 75001" +272848,AA Batteries (4-pack),1,3.84,10/11/19 22:19,"571 River St, Atlanta, GA 30301" +272849,AAA Batteries (4-pack),1,2.99,10/05/19 19:29,"564 1st St, Los Angeles, CA 90001" +272850,Lightning Charging Cable,1,14.95,10/31/19 16:58,"482 Main St, San Francisco, CA 94016" +272851,Wired Headphones,1,11.99,10/31/19 15:25,"932 Cedar St, Los Angeles, CA 90001" +272852,AA Batteries (4-pack),1,3.84,10/05/19 11:06,"883 2nd St, Boston, MA 02215" +272853,Bose SoundSport Headphones,1,99.99,10/13/19 17:40,"642 Johnson St, Portland, OR 97035" +272854,AA Batteries (4-pack),3,3.84,10/24/19 16:17,"91 Cherry St, Los Angeles, CA 90001" +272855,USB-C Charging Cable,1,11.95,10/02/19 21:55,"943 Spruce St, New York City, NY 10001" +272856,AA Batteries (4-pack),1,3.84,10/18/19 12:53,"36 Lakeview St, Austin, TX 73301" +272857,Wired Headphones,1,11.99,10/31/19 11:00,"115 Sunset St, New York City, NY 10001" +272858,Flatscreen TV,1,300,10/21/19 22:29,"446 Highland St, Dallas, TX 75001" +272859,AA Batteries (4-pack),2,3.84,10/06/19 02:22,"542 Dogwood St, Dallas, TX 75001" +272860,AAA Batteries (4-pack),1,2.99,10/30/19 18:44,"323 Elm St, Atlanta, GA 30301" +272861,Flatscreen TV,1,300,10/21/19 21:02,"961 6th St, San Francisco, CA 94016" +272862,AAA Batteries (4-pack),2,2.99,10/12/19 16:05,"420 11th St, Seattle, WA 98101" +272863,Wired Headphones,1,11.99,10/21/19 07:23,"882 Center St, New York City, NY 10001" +272864,Bose SoundSport Headphones,1,99.99,10/20/19 11:10,"602 Cedar St, Dallas, TX 75001" +272865,Lightning Charging Cable,1,14.95,10/07/19 08:01,"42 12th St, Los Angeles, CA 90001" +272866,AA Batteries (4-pack),1,3.84,10/28/19 05:31,"812 Ridge St, Los Angeles, CA 90001" +272867,USB-C Charging Cable,1,11.95,10/31/19 05:45,"465 Jefferson St, Los Angeles, CA 90001" +272868,iPhone,1,700,10/05/19 23:07,"412 Forest St, Los Angeles, CA 90001" +272868,Lightning Charging Cable,1,14.95,10/05/19 23:07,"412 Forest St, Los Angeles, CA 90001" +272868,Apple Airpods Headphones,1,150,10/05/19 23:07,"412 Forest St, Los Angeles, CA 90001" +272869,27in 4K Gaming Monitor,1,389.99,10/26/19 12:12,"482 Willow St, Seattle, WA 98101" +272870,Bose SoundSport Headphones,1,99.99,10/30/19 22:13,"726 Sunset St, Boston, MA 02215" +272871,USB-C Charging Cable,1,11.95,10/27/19 15:01,"420 5th St, New York City, NY 10001" +272872,AA Batteries (4-pack),1,3.84,10/15/19 17:14,"176 Lincoln St, San Francisco, CA 94016" +272873,Apple Airpods Headphones,1,150,10/03/19 01:01,"378 Johnson St, Atlanta, GA 30301" +272874,USB-C Charging Cable,1,11.95,10/22/19 15:05,"307 Madison St, Dallas, TX 75001" +272875,27in FHD Monitor,1,149.99,10/28/19 22:12,"883 North St, Boston, MA 02215" +272876,Macbook Pro Laptop,1,1700,10/17/19 15:55,"98 Lakeview St, San Francisco, CA 94016" +272877,Apple Airpods Headphones,1,150,10/10/19 20:06,"778 Main St, Dallas, TX 75001" +272878,AA Batteries (4-pack),1,3.84,10/19/19 21:40,"648 1st St, Austin, TX 73301" +272879,34in Ultrawide Monitor,1,379.99,10/28/19 13:09,"909 River St, Boston, MA 02215" +272880,USB-C Charging Cable,1,11.95,10/27/19 14:14,"348 Adams St, San Francisco, CA 94016" +272881,AAA Batteries (4-pack),2,2.99,10/13/19 20:04,"517 Highland St, Seattle, WA 98101" +272882,27in FHD Monitor,1,149.99,10/24/19 10:19,"465 Adams St, Boston, MA 02215" +272883,Apple Airpods Headphones,1,150,10/05/19 12:47,"94 Ridge St, Boston, MA 02215" +272884,Apple Airpods Headphones,1,150,10/22/19 15:12,"113 Sunset St, San Francisco, CA 94016" +272885,Lightning Charging Cable,1,14.95,10/15/19 21:01,"623 Adams St, San Francisco, CA 94016" +272886,34in Ultrawide Monitor,1,379.99,10/05/19 08:54,"96 2nd St, San Francisco, CA 94016" +272887,Bose SoundSport Headphones,1,99.99,10/04/19 02:00,"385 Chestnut St, San Francisco, CA 94016" +272888,Lightning Charging Cable,2,14.95,10/11/19 10:34,"120 Lincoln St, Austin, TX 73301" +272889,AAA Batteries (4-pack),5,2.99,10/16/19 21:02,"414 Church St, Dallas, TX 75001" +272890,Bose SoundSport Headphones,1,99.99,10/16/19 07:50,"5 Pine St, Austin, TX 73301" +272891,Lightning Charging Cable,1,14.95,10/29/19 19:47,"685 Meadow St, Los Angeles, CA 90001" +272892,27in 4K Gaming Monitor,1,389.99,10/23/19 16:12,"171 Sunset St, Boston, MA 02215" +272893,AAA Batteries (4-pack),3,2.99,10/08/19 17:40,"889 1st St, San Francisco, CA 94016" +272894,AAA Batteries (4-pack),1,2.99,10/30/19 12:32,"691 Washington St, Los Angeles, CA 90001" +272895,Lightning Charging Cable,1,14.95,10/15/19 14:29,"211 13th St, Los Angeles, CA 90001" +272896,USB-C Charging Cable,1,11.95,10/05/19 17:37,"287 8th St, San Francisco, CA 94016" +272897,34in Ultrawide Monitor,1,379.99,10/15/19 21:18,"293 1st St, San Francisco, CA 94016" +272898,34in Ultrawide Monitor,1,379.99,10/19/19 11:25,"689 Main St, San Francisco, CA 94016" +272899,AAA Batteries (4-pack),1,2.99,10/12/19 00:23,"491 South St, San Francisco, CA 94016" +272900,AA Batteries (4-pack),1,3.84,10/25/19 15:58,"921 Adams St, San Francisco, CA 94016" +272901,AA Batteries (4-pack),2,3.84,10/03/19 12:57,"140 Washington St, San Francisco, CA 94016" +272902,AAA Batteries (4-pack),1,2.99,10/03/19 20:50,"827 Adams St, San Francisco, CA 94016" +272903,Macbook Pro Laptop,1,1700,10/01/19 14:52,"808 Hill St, San Francisco, CA 94016" +272904,27in FHD Monitor,1,149.99,10/13/19 20:43,"368 Wilson St, Seattle, WA 98101" +272905,27in 4K Gaming Monitor,1,389.99,10/28/19 11:47,"377 6th St, San Francisco, CA 94016" +272906,Lightning Charging Cable,1,14.95,10/09/19 19:47,"286 Hickory St, Portland, OR 97035" +272907,USB-C Charging Cable,1,11.95,10/16/19 19:38,"750 Cedar St, Boston, MA 02215" +,,,,, +272908,USB-C Charging Cable,1,11.95,10/24/19 19:27,"544 Johnson St, San Francisco, CA 94016" +272909,AA Batteries (4-pack),2,3.84,10/02/19 20:34,"261 Washington St, Boston, MA 02215" +272910,AAA Batteries (4-pack),1,2.99,10/17/19 22:20,"407 Washington St, Dallas, TX 75001" +272911,iPhone,1,700,10/30/19 17:18,"164 Dogwood St, San Francisco, CA 94016" +272912,AAA Batteries (4-pack),1,2.99,10/06/19 16:21,"863 2nd St, Los Angeles, CA 90001" +272913,USB-C Charging Cable,1,11.95,10/18/19 18:01,"337 Sunset St, San Francisco, CA 94016" +272914,Lightning Charging Cable,1,14.95,10/16/19 17:45,"718 9th St, San Francisco, CA 94016" +272915,iPhone,1,700,10/17/19 12:06,"962 Lakeview St, Portland, OR 97035" +272916,Wired Headphones,1,11.99,10/16/19 22:27,"319 Lakeview St, Dallas, TX 75001" +272917,AA Batteries (4-pack),2,3.84,10/28/19 02:54,"341 Wilson St, New York City, NY 10001" +272918,AA Batteries (4-pack),1,3.84,10/28/19 18:17,"618 7th St, Seattle, WA 98101" +272919,Lightning Charging Cable,1,14.95,10/24/19 13:59,"436 11th St, Atlanta, GA 30301" +272920,Lightning Charging Cable,1,14.95,10/19/19 11:46,"795 Adams St, Atlanta, GA 30301" +272921,AAA Batteries (4-pack),1,2.99,10/03/19 07:04,"935 Washington St, San Francisco, CA 94016" +272922,AAA Batteries (4-pack),2,2.99,10/27/19 15:46,"638 Spruce St, San Francisco, CA 94016" +272923,ThinkPad Laptop,1,999.99,10/17/19 20:19,"246 11th St, San Francisco, CA 94016" +272924,27in 4K Gaming Monitor,1,389.99,10/05/19 21:40,"285 Cedar St, New York City, NY 10001" +272925,iPhone,1,700,10/02/19 17:31,"190 12th St, Seattle, WA 98101" +272926,Lightning Charging Cable,2,14.95,10/18/19 12:10,"365 10th St, San Francisco, CA 94016" +272927,AAA Batteries (4-pack),1,2.99,10/08/19 21:10,"149 9th St, Atlanta, GA 30301" +272928,Macbook Pro Laptop,1,1700,10/18/19 01:04,"523 Jefferson St, San Francisco, CA 94016" +272929,Lightning Charging Cable,1,14.95,10/23/19 15:29,"472 Main St, Dallas, TX 75001" +272930,Wired Headphones,1,11.99,10/09/19 23:24,"918 Meadow St, San Francisco, CA 94016" +272931,AAA Batteries (4-pack),1,2.99,10/09/19 20:03,"918 Park St, Los Angeles, CA 90001" +272932,27in FHD Monitor,1,149.99,10/18/19 09:43,"566 Jefferson St, Portland, OR 97035" +272933,27in FHD Monitor,1,149.99,10/19/19 22:16,"740 Forest St, New York City, NY 10001" +272934,Lightning Charging Cable,1,14.95,10/05/19 12:36,"160 Jackson St, San Francisco, CA 94016" +272935,Wired Headphones,1,11.99,10/22/19 09:21,"841 Walnut St, San Francisco, CA 94016" +272936,USB-C Charging Cable,1,11.95,10/07/19 16:01,"761 13th St, Boston, MA 02215" +272937,Lightning Charging Cable,1,14.95,10/17/19 18:20,"558 13th St, New York City, NY 10001" +272938,USB-C Charging Cable,1,11.95,10/23/19 13:08,"787 Sunset St, Dallas, TX 75001" +272939,AAA Batteries (4-pack),1,2.99,10/29/19 14:37,"973 Willow St, San Francisco, CA 94016" +272940,USB-C Charging Cable,2,11.95,10/26/19 09:43,"705 8th St, Atlanta, GA 30301" +272941,AAA Batteries (4-pack),2,2.99,10/11/19 21:29,"913 7th St, Seattle, WA 98101" +272942,AA Batteries (4-pack),3,3.84,10/16/19 11:56,"739 West St, Boston, MA 02215" +272943,Wired Headphones,1,11.99,10/04/19 09:32,"95 6th St, San Francisco, CA 94016" +272944,iPhone,1,700,10/25/19 08:14,"107 Lakeview St, Dallas, TX 75001" +272944,Lightning Charging Cable,1,14.95,10/25/19 08:14,"107 Lakeview St, Dallas, TX 75001" +272945,AAA Batteries (4-pack),1,2.99,10/30/19 21:32,"240 River St, Portland, OR 97035" +272946,iPhone,1,700,10/09/19 11:35,"235 West St, New York City, NY 10001" +272947,AAA Batteries (4-pack),1,2.99,10/17/19 23:41,"425 8th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +272948,Lightning Charging Cable,1,14.95,10/22/19 13:44,"891 Church St, San Francisco, CA 94016" +272949,ThinkPad Laptop,1,999.99,10/06/19 14:35,"677 Adams St, San Francisco, CA 94016" +272950,USB-C Charging Cable,1,11.95,10/21/19 19:25,"938 River St, San Francisco, CA 94016" +272951,USB-C Charging Cable,1,11.95,10/21/19 19:24,"925 Cherry St, Los Angeles, CA 90001" +272952,iPhone,1,700,10/25/19 20:55,"848 Center St, Boston, MA 02215" +272952,Apple Airpods Headphones,1,150,10/25/19 20:55,"848 Center St, Boston, MA 02215" +272953,Apple Airpods Headphones,1,150,10/17/19 12:33,"331 Lakeview St, San Francisco, CA 94016" +272954,LG Dryer,1,600.0,10/22/19 08:45,"897 Walnut St, Los Angeles, CA 90001" +272955,27in 4K Gaming Monitor,1,389.99,10/08/19 15:13,"824 Hickory St, Boston, MA 02215" +272956,Flatscreen TV,1,300,10/30/19 12:45,"729 4th St, Los Angeles, CA 90001" +272957,Lightning Charging Cable,1,14.95,10/22/19 14:34,"518 Park St, San Francisco, CA 94016" +272958,AAA Batteries (4-pack),6,2.99,10/12/19 00:15,"846 11th St, Portland, OR 97035" +272959,Bose SoundSport Headphones,1,99.99,10/26/19 21:54,"92 Lake St, Los Angeles, CA 90001" +272960,Macbook Pro Laptop,1,1700,10/16/19 13:43,"27 Pine St, Atlanta, GA 30301" +272961,Wired Headphones,1,11.99,10/03/19 09:45,"161 Chestnut St, Portland, OR 97035" +272962,Lightning Charging Cable,1,14.95,10/10/19 09:51,"453 Spruce St, New York City, NY 10001" +272963,Wired Headphones,1,11.99,10/09/19 20:47,"489 Madison St, Dallas, TX 75001" +272964,27in FHD Monitor,1,149.99,10/09/19 11:19,"431 Dogwood St, Atlanta, GA 30301" +272965,AA Batteries (4-pack),1,3.84,10/23/19 14:18,"220 Park St, San Francisco, CA 94016" +272966,34in Ultrawide Monitor,1,379.99,10/03/19 23:40,"254 Lake St, Los Angeles, CA 90001" +272967,iPhone,1,700,10/27/19 21:09,"659 Park St, New York City, NY 10001" +272968,Macbook Pro Laptop,1,1700,10/24/19 19:23,"185 Elm St, Dallas, TX 75001" +272969,AAA Batteries (4-pack),2,2.99,10/07/19 21:12,"971 Center St, Seattle, WA 98101" +272970,Flatscreen TV,1,300,10/29/19 21:55,"158 Ridge St, Los Angeles, CA 90001" +272971,Bose SoundSport Headphones,1,99.99,10/27/19 09:18,"263 Church St, New York City, NY 10001" +272972,Apple Airpods Headphones,1,150,10/02/19 10:03,"197 10th St, Portland, OR 97035" +272973,Wired Headphones,1,11.99,10/22/19 18:35,"790 5th St, New York City, NY 10001" +272974,Apple Airpods Headphones,1,150,10/26/19 12:28,"130 North St, Los Angeles, CA 90001" +272975,AA Batteries (4-pack),1,3.84,10/21/19 05:36,"162 5th St, Los Angeles, CA 90001" +272976,Vareebadd Phone,1,400,10/01/19 18:58,"58 Meadow St, San Francisco, CA 94016" +272976,USB-C Charging Cable,1,11.95,10/01/19 18:58,"58 Meadow St, San Francisco, CA 94016" +272976,Bose SoundSport Headphones,1,99.99,10/01/19 18:58,"58 Meadow St, San Francisco, CA 94016" +272977,34in Ultrawide Monitor,1,379.99,10/12/19 21:29,"95 Ridge St, New York City, NY 10001" +272978,Lightning Charging Cable,1,14.95,10/30/19 16:35,"621 Lake St, Seattle, WA 98101" +272979,iPhone,1,700,10/09/19 23:29,"19 Dogwood St, Austin, TX 73301" +272980,Flatscreen TV,1,300,10/09/19 12:10,"910 Lakeview St, Boston, MA 02215" +272981,Apple Airpods Headphones,1,150,10/23/19 23:05,"469 Lincoln St, Dallas, TX 75001" +272982,Lightning Charging Cable,1,14.95,10/08/19 14:22,"793 Main St, Atlanta, GA 30301" +272983,iPhone,1,700,10/17/19 12:50,"706 Cherry St, San Francisco, CA 94016" +272984,Wired Headphones,1,11.99,10/28/19 16:07,"408 West St, New York City, NY 10001" +272985,Wired Headphones,1,11.99,10/19/19 19:14,"316 Cedar St, San Francisco, CA 94016" +272986,Lightning Charging Cable,1,14.95,10/31/19 23:41,"10 Maple St, Portland, OR 97035" +272987,27in 4K Gaming Monitor,1,389.99,10/10/19 10:34,"358 Forest St, Los Angeles, CA 90001" +272988,Apple Airpods Headphones,1,150,10/01/19 17:54,"172 Adams St, Los Angeles, CA 90001" +272989,Apple Airpods Headphones,1,150,10/30/19 17:45,"378 Hickory St, New York City, NY 10001" +272990,AA Batteries (4-pack),1,3.84,10/18/19 17:27,"227 Ridge St, Boston, MA 02215" +272991,34in Ultrawide Monitor,1,379.99,10/29/19 10:13,"233 Washington St, New York City, NY 10001" +272992,Wired Headphones,1,11.99,10/09/19 10:53,"235 Cherry St, New York City, NY 10001" +272993,AA Batteries (4-pack),2,3.84,10/17/19 21:14,"300 Lakeview St, Austin, TX 73301" +272994,Flatscreen TV,1,300,10/06/19 18:41,"178 Ridge St, Seattle, WA 98101" +272995,Bose SoundSport Headphones,1,99.99,10/23/19 15:38,"562 Park St, Los Angeles, CA 90001" +272996,Apple Airpods Headphones,1,150,10/19/19 15:12,"746 4th St, Dallas, TX 75001" +272997,AA Batteries (4-pack),1,3.84,10/25/19 18:23,"110 Pine St, New York City, NY 10001" +272998,AA Batteries (4-pack),1,3.84,10/07/19 15:45,"257 Jackson St, Austin, TX 73301" +272999,Apple Airpods Headphones,1,150,10/07/19 20:45,"761 Highland St, Los Angeles, CA 90001" +273000,AAA Batteries (4-pack),1,2.99,10/01/19 11:33,"397 12th St, Los Angeles, CA 90001" +273000,Wired Headphones,1,11.99,10/01/19 11:33,"397 12th St, Los Angeles, CA 90001" +273001,AA Batteries (4-pack),1,3.84,10/14/19 00:23,"392 River St, Austin, TX 73301" +273002,USB-C Charging Cable,1,11.95,10/31/19 18:01,"13 Lincoln St, San Francisco, CA 94016" +273003,27in 4K Gaming Monitor,1,389.99,10/04/19 21:00,"312 Hickory St, Dallas, TX 75001" +273004,AAA Batteries (4-pack),1,2.99,10/28/19 15:25,"516 6th St, New York City, NY 10001" +273005,Lightning Charging Cable,1,14.95,10/14/19 13:41,"679 Hickory St, San Francisco, CA 94016" +273006,Bose SoundSport Headphones,1,99.99,10/06/19 08:06,"321 9th St, Boston, MA 02215" +273007,Lightning Charging Cable,1,14.95,10/31/19 12:53,"27 6th St, Dallas, TX 75001" +273008,AA Batteries (4-pack),2,3.84,10/28/19 15:04,"817 Church St, San Francisco, CA 94016" +273009,27in 4K Gaming Monitor,1,389.99,10/25/19 22:37,"613 11th St, Austin, TX 73301" +273010,Vareebadd Phone,1,400,10/22/19 00:21,"41 Cedar St, New York City, NY 10001" +273010,USB-C Charging Cable,1,11.95,10/22/19 00:21,"41 Cedar St, New York City, NY 10001" +273010,iPhone,1,700,10/22/19 00:21,"41 Cedar St, New York City, NY 10001" +273011,Apple Airpods Headphones,1,150,10/25/19 10:54,"122 10th St, Seattle, WA 98101" +273012,Google Phone,1,600,10/12/19 19:50,"942 Jefferson St, Boston, MA 02215" +273013,AA Batteries (4-pack),1,3.84,10/08/19 13:11,"279 South St, Boston, MA 02215" +273014,USB-C Charging Cable,1,11.95,10/14/19 17:06,"314 1st St, Los Angeles, CA 90001" +273015,Wired Headphones,1,11.99,10/08/19 06:11,"780 10th St, San Francisco, CA 94016" +273016,USB-C Charging Cable,2,11.95,10/13/19 18:13,"189 7th St, Los Angeles, CA 90001" +273017,20in Monitor,1,109.99,10/16/19 18:34,"713 Lincoln St, Seattle, WA 98101" +273018,Macbook Pro Laptop,1,1700,10/26/19 09:35,"959 14th St, San Francisco, CA 94016" +273019,AAA Batteries (4-pack),4,2.99,10/21/19 21:46,"432 Park St, New York City, NY 10001" +273020,AA Batteries (4-pack),1,3.84,10/13/19 10:28,"237 Forest St, Atlanta, GA 30301" +273021,27in 4K Gaming Monitor,1,389.99,10/03/19 18:18,"369 Washington St, New York City, NY 10001" +273022,27in 4K Gaming Monitor,1,389.99,10/24/19 11:43,"496 7th St, San Francisco, CA 94016" +273023,Flatscreen TV,1,300,10/16/19 10:42,"701 Center St, San Francisco, CA 94016" +273024,Vareebadd Phone,1,400,10/05/19 06:11,"924 Madison St, San Francisco, CA 94016" +273025,Wired Headphones,1,11.99,10/24/19 14:07,"823 Center St, New York City, NY 10001" +273026,Apple Airpods Headphones,1,150,10/06/19 18:54,"573 Hickory St, Dallas, TX 75001" +273027,34in Ultrawide Monitor,1,379.99,10/14/19 12:58,"127 9th St, Seattle, WA 98101" +273028,AA Batteries (4-pack),1,3.84,10/08/19 20:59,"172 Jackson St, Dallas, TX 75001" +273029,Lightning Charging Cable,1,14.95,10/21/19 13:06,"658 Lincoln St, San Francisco, CA 94016" +273030,Wired Headphones,1,11.99,10/19/19 18:28,"950 Meadow St, New York City, NY 10001" +273031,USB-C Charging Cable,1,11.95,10/19/19 17:20,"394 Forest St, San Francisco, CA 94016" +273032,AAA Batteries (4-pack),1,2.99,10/11/19 18:22,"321 Elm St, Dallas, TX 75001" +273033,AAA Batteries (4-pack),1,2.99,10/31/19 15:27,"98 Center St, San Francisco, CA 94016" +273034,USB-C Charging Cable,1,11.95,10/16/19 16:49,"631 Adams St, Atlanta, GA 30301" +273035,AA Batteries (4-pack),2,3.84,10/11/19 16:48,"462 Church St, New York City, NY 10001" +273036,Apple Airpods Headphones,1,150,10/03/19 13:07,"893 Forest St, New York City, NY 10001" +273037,USB-C Charging Cable,1,11.95,10/18/19 06:50,"647 Wilson St, Portland, ME 04101" +273038,Macbook Pro Laptop,1,1700,10/17/19 12:18,"522 8th St, New York City, NY 10001" +273039,iPhone,1,700,10/27/19 13:29,"28 4th St, Los Angeles, CA 90001" +273039,Wired Headphones,1,11.99,10/27/19 13:29,"28 4th St, Los Angeles, CA 90001" +273040,USB-C Charging Cable,1,11.95,10/24/19 21:02,"958 6th St, San Francisco, CA 94016" +273041,AA Batteries (4-pack),1,3.84,10/20/19 17:57,"193 Forest St, Dallas, TX 75001" +273042,AAA Batteries (4-pack),2,2.99,10/12/19 01:25,"368 8th St, Dallas, TX 75001" +273043,34in Ultrawide Monitor,1,379.99,10/14/19 21:59,"455 Ridge St, San Francisco, CA 94016" +273044,Google Phone,1,600,10/28/19 15:52,"472 Lincoln St, New York City, NY 10001" +273044,Wired Headphones,1,11.99,10/28/19 15:52,"472 Lincoln St, New York City, NY 10001" +273045,AA Batteries (4-pack),2,3.84,10/29/19 15:27,"812 Hickory St, Portland, OR 97035" +273046,Bose SoundSport Headphones,1,99.99,10/01/19 18:56,"918 Madison St, San Francisco, CA 94016" +273047,AA Batteries (4-pack),1,3.84,10/23/19 17:47,"317 9th St, San Francisco, CA 94016" +273048,AA Batteries (4-pack),1,3.84,10/07/19 17:52,"454 4th St, San Francisco, CA 94016" +273049,USB-C Charging Cable,1,11.95,10/17/19 21:17,"602 Wilson St, Seattle, WA 98101" +273050,34in Ultrawide Monitor,1,379.99,10/03/19 14:25,"346 4th St, San Francisco, CA 94016" +273051,Google Phone,1,600,10/23/19 04:46,"198 Main St, Los Angeles, CA 90001" +273051,USB-C Charging Cable,2,11.95,10/23/19 04:46,"198 Main St, Los Angeles, CA 90001" +273052,AA Batteries (4-pack),1,3.84,10/27/19 19:40,"534 1st St, Los Angeles, CA 90001" +273053,34in Ultrawide Monitor,1,379.99,10/31/19 19:32,"409 13th St, San Francisco, CA 94016" +273054,AA Batteries (4-pack),1,3.84,10/26/19 18:11,"298 Main St, Los Angeles, CA 90001" +273055,Bose SoundSport Headphones,1,99.99,10/01/19 12:24,"295 Sunset St, Atlanta, GA 30301" +273056,Lightning Charging Cable,1,14.95,10/24/19 12:09,"806 West St, Los Angeles, CA 90001" +273057,Lightning Charging Cable,1,14.95,10/15/19 11:57,"823 Main St, Boston, MA 02215" +273058,USB-C Charging Cable,1,11.95,10/30/19 23:08,"915 Center St, Atlanta, GA 30301" +273059,27in 4K Gaming Monitor,1,389.99,10/08/19 20:19,"359 Willow St, Los Angeles, CA 90001" +273060,Bose SoundSport Headphones,1,99.99,10/01/19 11:17,"570 Jackson St, San Francisco, CA 94016" +273061,Apple Airpods Headphones,1,150,10/06/19 20:57,"943 Lake St, Los Angeles, CA 90001" +273062,AA Batteries (4-pack),1,3.84,10/16/19 06:24,"730 Pine St, San Francisco, CA 94016" +273063,AA Batteries (4-pack),2,3.84,10/19/19 17:37,"451 5th St, Los Angeles, CA 90001" +273064,AA Batteries (4-pack),1,3.84,10/05/19 23:14,"877 Elm St, Austin, TX 73301" +273065,Lightning Charging Cable,4,14.95,10/27/19 11:29,"695 River St, New York City, NY 10001" +273066,Bose SoundSport Headphones,1,99.99,10/20/19 15:06,"949 Center St, Austin, TX 73301" +273067,Apple Airpods Headphones,1,150,10/30/19 19:47,"917 Adams St, Portland, OR 97035" +273068,Lightning Charging Cable,1,14.95,10/09/19 21:09,"845 2nd St, Seattle, WA 98101" +273069,AA Batteries (4-pack),1,3.84,10/06/19 11:38,"736 Wilson St, Los Angeles, CA 90001" +273070,iPhone,1,700,10/26/19 01:33,"624 Pine St, Los Angeles, CA 90001" +273071,Wired Headphones,1,11.99,10/22/19 13:10,"122 Ridge St, New York City, NY 10001" +273072,AA Batteries (4-pack),1,3.84,10/30/19 19:28,"664 Hickory St, San Francisco, CA 94016" +273073,AA Batteries (4-pack),2,3.84,10/30/19 16:03,"288 Maple St, Los Angeles, CA 90001" +273074,27in FHD Monitor,1,149.99,10/29/19 18:50,"860 2nd St, New York City, NY 10001" +273075,Vareebadd Phone,1,400,10/05/19 20:59,"692 12th St, Atlanta, GA 30301" +273075,USB-C Charging Cable,1,11.95,10/05/19 20:59,"692 12th St, Atlanta, GA 30301" +273076,ThinkPad Laptop,1,999.99,10/20/19 21:06,"964 Forest St, San Francisco, CA 94016" +273077,Flatscreen TV,1,300,10/03/19 15:20,"398 Highland St, Dallas, TX 75001" +273078,Vareebadd Phone,1,400,10/09/19 06:37,"662 14th St, Dallas, TX 75001" +273078,Bose SoundSport Headphones,1,99.99,10/09/19 06:37,"662 14th St, Dallas, TX 75001" +273079,AA Batteries (4-pack),1,3.84,10/23/19 03:46,"411 Wilson St, Dallas, TX 75001" +273080,Bose SoundSport Headphones,1,99.99,10/13/19 13:18,"146 Cedar St, New York City, NY 10001" +273081,AA Batteries (4-pack),1,3.84,10/03/19 21:15,"355 8th St, San Francisco, CA 94016" +273082,Macbook Pro Laptop,1,1700,10/24/19 21:17,"762 Wilson St, San Francisco, CA 94016" +273083,Lightning Charging Cable,1,14.95,10/10/19 10:14,"661 Maple St, Boston, MA 02215" +273084,Lightning Charging Cable,1,14.95,10/21/19 15:58,"681 Johnson St, Dallas, TX 75001" +273085,AAA Batteries (4-pack),2,2.99,10/25/19 08:12,"991 Cedar St, Portland, ME 04101" +273086,Wired Headphones,1,11.99,10/19/19 00:01,"578 10th St, Dallas, TX 75001" +273087,AA Batteries (4-pack),1,3.84,10/31/19 07:24,"446 Walnut St, Dallas, TX 75001" +273088,AAA Batteries (4-pack),2,2.99,10/13/19 21:42,"485 11th St, Seattle, WA 98101" +273089,Bose SoundSport Headphones,1,99.99,10/13/19 18:52,"147 7th St, Boston, MA 02215" +273090,Lightning Charging Cable,1,14.95,10/14/19 10:57,"73 Hill St, Los Angeles, CA 90001" +273091,Lightning Charging Cable,1,14.95,10/20/19 18:38,"167 Jefferson St, Boston, MA 02215" +273092,AA Batteries (4-pack),1,3.84,10/29/19 13:41,"947 4th St, New York City, NY 10001" +273093,34in Ultrawide Monitor,1,379.99,10/09/19 16:06,"582 Highland St, Boston, MA 02215" +273094,Apple Airpods Headphones,1,150,10/21/19 10:11,"277 Ridge St, New York City, NY 10001" +273095,Google Phone,1,600,10/09/19 23:13,"389 Washington St, Los Angeles, CA 90001" +273096,Bose SoundSport Headphones,1,99.99,10/09/19 10:33,"396 Cherry St, Portland, OR 97035" +273097,Vareebadd Phone,1,400,10/24/19 21:08,"100 River St, New York City, NY 10001" +273098,AAA Batteries (4-pack),1,2.99,10/02/19 16:08,"684 Walnut St, Boston, MA 02215" +273099,34in Ultrawide Monitor,1,379.99,10/29/19 06:46,"791 North St, Atlanta, GA 30301" +273100,Flatscreen TV,1,300,10/27/19 18:32,"869 1st St, Austin, TX 73301" +273101,27in 4K Gaming Monitor,1,389.99,10/09/19 13:15,"6 Chestnut St, Portland, OR 97035" +273102,Lightning Charging Cable,2,14.95,10/21/19 16:30,"809 North St, Los Angeles, CA 90001" +273103,Vareebadd Phone,1,400,10/15/19 17:28,"721 Wilson St, Atlanta, GA 30301" +273103,USB-C Charging Cable,1,11.95,10/15/19 17:28,"721 Wilson St, Atlanta, GA 30301" +273104,Flatscreen TV,1,300,10/01/19 08:27,"671 South St, Los Angeles, CA 90001" +273105,AAA Batteries (4-pack),1,2.99,10/26/19 11:51,"308 11th St, San Francisco, CA 94016" +273106,Apple Airpods Headphones,1,150,10/20/19 11:30,"514 Spruce St, Boston, MA 02215" +273107,Bose SoundSport Headphones,1,99.99,10/01/19 11:50,"817 Highland St, San Francisco, CA 94016" +273108,AAA Batteries (4-pack),1,2.99,10/15/19 12:24,"731 6th St, Los Angeles, CA 90001" +273109,USB-C Charging Cable,1,11.95,10/21/19 03:47,"733 8th St, Atlanta, GA 30301" +273110,Wired Headphones,1,11.99,10/22/19 20:23,"541 8th St, San Francisco, CA 94016" +273111,Macbook Pro Laptop,1,1700,10/19/19 17:33,"195 6th St, Los Angeles, CA 90001" +273112,Bose SoundSport Headphones,1,99.99,10/13/19 19:46,"129 Elm St, Austin, TX 73301" +273113,Lightning Charging Cable,1,14.95,10/29/19 18:58,"719 Dogwood St, New York City, NY 10001" +273114,USB-C Charging Cable,1,11.95,10/09/19 17:22,"245 Hickory St, Portland, OR 97035" +273115,AA Batteries (4-pack),2,3.84,10/02/19 01:21,"901 Ridge St, Portland, OR 97035" +273116,Lightning Charging Cable,1,14.95,10/18/19 21:51,"536 North St, Dallas, TX 75001" +273117,ThinkPad Laptop,1,999.99,10/14/19 11:49,"922 Elm St, Seattle, WA 98101" +273118,AA Batteries (4-pack),2,3.84,10/23/19 11:58,"537 1st St, New York City, NY 10001" +273119,AA Batteries (4-pack),1,3.84,10/18/19 09:00,"365 Lakeview St, San Francisco, CA 94016" +273120,Lightning Charging Cable,1,14.95,10/25/19 18:11,"575 13th St, Seattle, WA 98101" +273121,LG Washing Machine,1,600.0,10/13/19 08:27,"755 Madison St, San Francisco, CA 94016" +273122,Flatscreen TV,1,300,10/08/19 18:08,"766 14th St, Los Angeles, CA 90001" +273123,Bose SoundSport Headphones,1,99.99,10/13/19 17:58,"123 Park St, New York City, NY 10001" +273124,34in Ultrawide Monitor,1,379.99,10/27/19 22:40,"716 South St, Dallas, TX 75001" +273125,Apple Airpods Headphones,1,150,10/16/19 16:27,"772 Hill St, Dallas, TX 75001" +273126,34in Ultrawide Monitor,1,379.99,10/20/19 18:28,"321 Dogwood St, Atlanta, GA 30301" +273127,AA Batteries (4-pack),1,3.84,10/22/19 10:29,"191 River St, Boston, MA 02215" +273128,Lightning Charging Cable,1,14.95,10/15/19 12:29,"470 Meadow St, Atlanta, GA 30301" +273129,AAA Batteries (4-pack),2,2.99,10/20/19 14:36,"822 Hill St, Portland, OR 97035" +273130,27in 4K Gaming Monitor,1,389.99,10/13/19 10:27,"631 Meadow St, Atlanta, GA 30301" +273131,Lightning Charging Cable,1,14.95,10/14/19 01:33,"188 Elm St, Dallas, TX 75001" +273131,Wired Headphones,1,11.99,10/14/19 01:33,"188 Elm St, Dallas, TX 75001" +273132,AAA Batteries (4-pack),2,2.99,10/24/19 19:30,"678 5th St, Dallas, TX 75001" +273133,USB-C Charging Cable,1,11.95,10/13/19 20:18,"592 10th St, San Francisco, CA 94016" +273134,USB-C Charging Cable,1,11.95,10/30/19 19:36,"408 North St, San Francisco, CA 94016" +273135,AA Batteries (4-pack),1,3.84,10/01/19 11:44,"962 Main St, San Francisco, CA 94016" +273136,Bose SoundSport Headphones,1,99.99,10/20/19 10:01,"170 Jefferson St, San Francisco, CA 94016" +273136,USB-C Charging Cable,1,11.95,10/20/19 10:01,"170 Jefferson St, San Francisco, CA 94016" +273137,27in 4K Gaming Monitor,1,389.99,10/19/19 12:48,"925 4th St, Atlanta, GA 30301" +273138,AA Batteries (4-pack),1,3.84,10/06/19 23:01,"995 Willow St, Atlanta, GA 30301" +273139,AA Batteries (4-pack),1,3.84,10/22/19 00:24,"18 South St, San Francisco, CA 94016" +273140,AAA Batteries (4-pack),1,2.99,10/11/19 20:15,"942 10th St, San Francisco, CA 94016" +273141,Bose SoundSport Headphones,1,99.99,10/14/19 13:52,"72 Jackson St, Dallas, TX 75001" +273142,Google Phone,1,600,10/27/19 17:11,"534 Forest St, San Francisco, CA 94016" +273143,USB-C Charging Cable,1,11.95,10/07/19 19:22,"617 Walnut St, Dallas, TX 75001" +273144,Bose SoundSport Headphones,1,99.99,10/16/19 15:53,"505 Center St, Austin, TX 73301" +273145,Bose SoundSport Headphones,1,99.99,10/13/19 20:15,"547 Ridge St, Seattle, WA 98101" +273146,Apple Airpods Headphones,1,150,10/15/19 18:44,"4 Walnut St, San Francisco, CA 94016" +273147,AAA Batteries (4-pack),2,2.99,10/29/19 22:35,"773 1st St, New York City, NY 10001" +273148,USB-C Charging Cable,2,11.95,10/29/19 09:48,"627 Lincoln St, Austin, TX 73301" +273149,iPhone,1,700,10/23/19 07:43,"91 7th St, Los Angeles, CA 90001" +273150,iPhone,1,700,10/15/19 11:40,"93 6th St, Boston, MA 02215" +273151,USB-C Charging Cable,1,11.95,10/27/19 21:51,"777 West St, Seattle, WA 98101" +,,,,, +273152,Apple Airpods Headphones,1,150,10/02/19 07:30,"983 9th St, San Francisco, CA 94016" +273152,Bose SoundSport Headphones,1,99.99,10/02/19 07:30,"983 9th St, San Francisco, CA 94016" +273153,Apple Airpods Headphones,1,150,10/03/19 18:53,"511 7th St, Atlanta, GA 30301" +273154,AAA Batteries (4-pack),1,2.99,10/23/19 00:02,"598 Johnson St, Los Angeles, CA 90001" +273155,Lightning Charging Cable,1,14.95,10/26/19 16:48,"515 1st St, San Francisco, CA 94016" +273156,AAA Batteries (4-pack),1,2.99,10/10/19 12:55,"729 Willow St, Dallas, TX 75001" +273157,Wired Headphones,1,11.99,10/14/19 19:07,"22 4th St, Los Angeles, CA 90001" +273158,Apple Airpods Headphones,1,150,10/01/19 18:15,"855 2nd St, Dallas, TX 75001" +273159,27in 4K Gaming Monitor,1,389.99,10/13/19 10:31,"494 Center St, Austin, TX 73301" +273160,Macbook Pro Laptop,1,1700,10/19/19 19:12,"863 4th St, San Francisco, CA 94016" +273161,ThinkPad Laptop,1,999.99,10/08/19 11:45,"20 Meadow St, Austin, TX 73301" +273162,AAA Batteries (4-pack),2,2.99,10/18/19 14:09,"882 Willow St, San Francisco, CA 94016" +273163,27in 4K Gaming Monitor,1,389.99,10/06/19 14:59,"781 Wilson St, Portland, OR 97035" +273164,USB-C Charging Cable,1,11.95,10/21/19 16:22,"876 4th St, Boston, MA 02215" +273165,AA Batteries (4-pack),1,3.84,10/21/19 17:28,"550 West St, Dallas, TX 75001" +273166,Apple Airpods Headphones,1,150,10/16/19 13:45,"295 River St, Los Angeles, CA 90001" +273167,Bose SoundSport Headphones,1,99.99,10/31/19 12:42,"424 9th St, Seattle, WA 98101" +273168,27in FHD Monitor,1,149.99,10/13/19 12:45,"151 Maple St, Atlanta, GA 30301" +273169,Wired Headphones,1,11.99,10/04/19 11:38,"655 South St, Dallas, TX 75001" +273170,20in Monitor,1,109.99,10/29/19 18:19,"436 9th St, Los Angeles, CA 90001" +273171,ThinkPad Laptop,1,999.99,10/10/19 03:55,"410 Maple St, Atlanta, GA 30301" +273172,Apple Airpods Headphones,1,150,10/19/19 10:00,"244 Madison St, San Francisco, CA 94016" +273173,Google Phone,1,600,10/03/19 09:56,"532 9th St, Dallas, TX 75001" +273173,Wired Headphones,1,11.99,10/03/19 09:56,"532 9th St, Dallas, TX 75001" +273174,AAA Batteries (4-pack),3,2.99,10/02/19 21:54,"35 Wilson St, Austin, TX 73301" +273175,USB-C Charging Cable,1,11.95,10/19/19 22:11,"698 Hickory St, Dallas, TX 75001" +273176,USB-C Charging Cable,1,11.95,10/05/19 18:43,"994 Ridge St, San Francisco, CA 94016" +273177,ThinkPad Laptop,1,999.99,10/12/19 20:46,"256 5th St, San Francisco, CA 94016" +273178,AAA Batteries (4-pack),1,2.99,10/31/19 16:52,"695 9th St, San Francisco, CA 94016" +273179,Lightning Charging Cable,1,14.95,10/01/19 16:02,"528 5th St, Dallas, TX 75001" +273180,Wired Headphones,1,11.99,10/19/19 17:07,"532 Johnson St, Los Angeles, CA 90001" +273181,Bose SoundSport Headphones,1,99.99,10/20/19 15:40,"778 Spruce St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +273182,Macbook Pro Laptop,1,1700,11/01/19 00:43,"743 11th St, Boston, MA 02215" +273183,Wired Headphones,1,11.99,10/09/19 16:48,"329 4th St, Los Angeles, CA 90001" +273184,AAA Batteries (4-pack),1,2.99,10/03/19 13:08,"692 Hill St, Portland, OR 97035" +273185,Flatscreen TV,1,300,10/20/19 22:35,"278 7th St, San Francisco, CA 94016" +273186,AA Batteries (4-pack),1,3.84,10/09/19 22:36,"848 North St, San Francisco, CA 94016" +273186,34in Ultrawide Monitor,1,379.99,10/09/19 22:36,"848 North St, San Francisco, CA 94016" +273187,USB-C Charging Cable,1,11.95,10/01/19 19:38,"979 North St, New York City, NY 10001" +273188,Lightning Charging Cable,1,14.95,10/06/19 11:14,"488 Washington St, Austin, TX 73301" +273189,20in Monitor,1,109.99,10/15/19 18:48,"784 Walnut St, Atlanta, GA 30301" +273190,USB-C Charging Cable,1,11.95,10/25/19 16:02,"759 Park St, Atlanta, GA 30301" +273191,Bose SoundSport Headphones,1,99.99,10/04/19 21:21,"761 Main St, Atlanta, GA 30301" +273192,Apple Airpods Headphones,1,150,10/29/19 09:10,"492 Madison St, Dallas, TX 75001" +273193,Flatscreen TV,1,300,10/23/19 09:00,"430 Johnson St, Boston, MA 02215" +273194,34in Ultrawide Monitor,1,379.99,10/23/19 19:42,"938 Highland St, Portland, ME 04101" +273195,Flatscreen TV,1,300,10/10/19 22:05,"703 Lincoln St, San Francisco, CA 94016" +273196,iPhone,1,700,10/12/19 20:45,"33 West St, Portland, OR 97035" +273196,Lightning Charging Cable,1,14.95,10/12/19 20:45,"33 West St, Portland, OR 97035" +273197,Apple Airpods Headphones,1,150,10/11/19 21:14,"38 11th St, San Francisco, CA 94016" +273198,Lightning Charging Cable,1,14.95,10/16/19 17:26,"911 Wilson St, San Francisco, CA 94016" +273199,iPhone,1,700,10/07/19 05:37,"695 Elm St, San Francisco, CA 94016" +273199,Wired Headphones,1,11.99,10/07/19 05:37,"695 Elm St, San Francisco, CA 94016" +273200,AAA Batteries (4-pack),1,2.99,10/05/19 11:36,"437 Lakeview St, New York City, NY 10001" +273201,27in FHD Monitor,1,149.99,10/19/19 19:15,"492 Wilson St, Atlanta, GA 30301" +273202,Bose SoundSport Headphones,1,99.99,10/21/19 17:52,"102 Willow St, Atlanta, GA 30301" +273203,Wired Headphones,1,11.99,10/17/19 23:34,"199 10th St, New York City, NY 10001" +273204,Wired Headphones,1,11.99,10/11/19 09:50,"455 5th St, Los Angeles, CA 90001" +273205,Flatscreen TV,1,300,10/27/19 17:04,"896 Park St, San Francisco, CA 94016" +273206,AAA Batteries (4-pack),1,2.99,10/25/19 15:57,"326 Lincoln St, New York City, NY 10001" +273207,27in FHD Monitor,1,149.99,10/18/19 06:23,"71 North St, San Francisco, CA 94016" +273208,Apple Airpods Headphones,1,150,10/01/19 17:27,"943 Lakeview St, San Francisco, CA 94016" +273209,Flatscreen TV,1,300,10/26/19 17:05,"233 1st St, Boston, MA 02215" +273210,Macbook Pro Laptop,1,1700,10/20/19 18:58,"673 Meadow St, San Francisco, CA 94016" +273211,USB-C Charging Cable,1,11.95,10/02/19 17:38,"586 Pine St, Atlanta, GA 30301" +273212,Lightning Charging Cable,1,14.95,10/09/19 11:18,"508 River St, San Francisco, CA 94016" +273213,Lightning Charging Cable,1,14.95,10/14/19 17:40,"56 Spruce St, New York City, NY 10001" +273214,Wired Headphones,2,11.99,10/11/19 20:30,"845 North St, Boston, MA 02215" +273215,Wired Headphones,1,11.99,10/15/19 18:10,"356 Dogwood St, Boston, MA 02215" +273216,AAA Batteries (4-pack),2,2.99,10/18/19 17:30,"518 14th St, Dallas, TX 75001" +273217,Wired Headphones,2,11.99,10/17/19 14:21,"218 Maple St, Dallas, TX 75001" +273218,LG Dryer,1,600.0,10/07/19 20:26,"17 5th St, New York City, NY 10001" +273219,Lightning Charging Cable,1,14.95,10/21/19 19:55,"435 Spruce St, San Francisco, CA 94016" +273220,34in Ultrawide Monitor,1,379.99,10/15/19 11:53,"470 Adams St, New York City, NY 10001" +273221,27in FHD Monitor,1,149.99,10/23/19 06:49,"823 Main St, Los Angeles, CA 90001" +273222,AAA Batteries (4-pack),1,2.99,10/26/19 08:14,"457 River St, Atlanta, GA 30301" +273223,Lightning Charging Cable,1,14.95,10/30/19 14:53,"47 Church St, Los Angeles, CA 90001" +273224,34in Ultrawide Monitor,1,379.99,10/05/19 08:01,"633 Pine St, New York City, NY 10001" +273225,USB-C Charging Cable,1,11.95,10/17/19 20:53,"872 Lakeview St, New York City, NY 10001" +273226,AA Batteries (4-pack),1,3.84,10/30/19 12:48,"600 Madison St, New York City, NY 10001" +273227,USB-C Charging Cable,1,11.95,10/10/19 12:47,"823 Johnson St, Atlanta, GA 30301" +273228,Bose SoundSport Headphones,1,99.99,10/27/19 18:42,"378 Wilson St, Boston, MA 02215" +273229,Wired Headphones,1,11.99,10/10/19 07:11,"896 10th St, New York City, NY 10001" +273230,Google Phone,1,600,10/21/19 11:48,"56 Highland St, Atlanta, GA 30301" +273231,AAA Batteries (4-pack),2,2.99,10/29/19 15:16,"670 Hill St, Portland, OR 97035" +273232,Apple Airpods Headphones,1,150,10/30/19 04:09,"410 Hill St, Austin, TX 73301" +273233,Bose SoundSport Headphones,1,99.99,10/12/19 14:44,"515 6th St, Seattle, WA 98101" +273234,Bose SoundSport Headphones,1,99.99,10/04/19 08:58,"953 Wilson St, San Francisco, CA 94016" +273235,AA Batteries (4-pack),1,3.84,10/01/19 16:28,"756 Lakeview St, Atlanta, GA 30301" +273236,LG Washing Machine,1,600.0,10/29/19 13:31,"908 Main St, Dallas, TX 75001" +273237,USB-C Charging Cable,1,11.95,10/19/19 20:42,"341 Pine St, Los Angeles, CA 90001" +273238,27in 4K Gaming Monitor,1,389.99,10/11/19 20:45,"676 Madison St, Los Angeles, CA 90001" +273239,USB-C Charging Cable,1,11.95,10/08/19 21:10,"609 Center St, Los Angeles, CA 90001" +273240,USB-C Charging Cable,1,11.95,10/27/19 13:22,"864 8th St, Seattle, WA 98101" +273240,Vareebadd Phone,1,400,10/27/19 13:22,"864 8th St, Seattle, WA 98101" +273241,27in 4K Gaming Monitor,1,389.99,10/16/19 23:04,"197 Dogwood St, San Francisco, CA 94016" +273241,Vareebadd Phone,1,400,10/16/19 23:04,"197 Dogwood St, San Francisco, CA 94016" +273242,USB-C Charging Cable,1,11.95,10/02/19 22:22,"817 13th St, Los Angeles, CA 90001" +273243,AAA Batteries (4-pack),3,2.99,10/11/19 19:08,"852 Lakeview St, Los Angeles, CA 90001" +273244,34in Ultrawide Monitor,1,379.99,10/19/19 13:26,"447 Jefferson St, Los Angeles, CA 90001" +273245,Lightning Charging Cable,1,14.95,10/02/19 17:33,"648 Park St, Austin, TX 73301" +273246,Lightning Charging Cable,3,14.95,10/29/19 12:31,"972 13th St, New York City, NY 10001" +273247,AAA Batteries (4-pack),2,2.99,10/20/19 07:58,"514 Center St, Atlanta, GA 30301" +273248,AAA Batteries (4-pack),1,2.99,10/21/19 11:28,"313 9th St, Boston, MA 02215" +273249,20in Monitor,1,109.99,10/27/19 22:25,"429 6th St, San Francisco, CA 94016" +273250,iPhone,1,700,10/25/19 17:35,"300 Maple St, New York City, NY 10001" +273250,Wired Headphones,1,11.99,10/25/19 17:35,"300 Maple St, New York City, NY 10001" +273251,Wired Headphones,1,11.99,10/18/19 14:31,"935 Willow St, Los Angeles, CA 90001" +273252,Apple Airpods Headphones,1,150,10/06/19 17:12,"64 South St, Los Angeles, CA 90001" +273253,USB-C Charging Cable,1,11.95,10/28/19 10:10,"267 5th St, Atlanta, GA 30301" +273254,AAA Batteries (4-pack),1,2.99,10/16/19 17:16,"851 Main St, Portland, OR 97035" +273255,Apple Airpods Headphones,1,150,10/23/19 15:20,"179 Johnson St, San Francisco, CA 94016" +273256,AAA Batteries (4-pack),5,2.99,10/17/19 21:03,"989 Sunset St, Los Angeles, CA 90001" +273257,Lightning Charging Cable,1,14.95,10/22/19 00:42,"971 5th St, New York City, NY 10001" +273258,Lightning Charging Cable,1,14.95,10/09/19 10:37,"542 Meadow St, San Francisco, CA 94016" +273259,20in Monitor,1,109.99,10/11/19 17:16,"582 9th St, Los Angeles, CA 90001" +273260,AA Batteries (4-pack),3,3.84,10/25/19 11:55,"388 Meadow St, New York City, NY 10001" +273261,AA Batteries (4-pack),2,3.84,10/02/19 22:34,"817 Dogwood St, New York City, NY 10001" +273262,Wired Headphones,1,11.99,10/20/19 13:18,"704 Walnut St, Los Angeles, CA 90001" +273263,Bose SoundSport Headphones,1,99.99,10/20/19 17:01,"408 Sunset St, San Francisco, CA 94016" +273264,34in Ultrawide Monitor,1,379.99,10/16/19 08:23,"121 North St, San Francisco, CA 94016" +273265,Apple Airpods Headphones,1,150,10/21/19 11:25,"266 Jefferson St, Atlanta, GA 30301" +273266,20in Monitor,1,109.99,10/22/19 00:37,"285 Center St, New York City, NY 10001" +273267,Apple Airpods Headphones,1,150,10/15/19 06:53,"766 Wilson St, New York City, NY 10001" +273268,Bose SoundSport Headphones,1,99.99,10/19/19 18:02,"923 Madison St, New York City, NY 10001" +273269,Lightning Charging Cable,1,14.95,10/18/19 12:35,"455 Elm St, Atlanta, GA 30301" +273270,ThinkPad Laptop,1,999.99,10/23/19 23:03,"195 Forest St, New York City, NY 10001" +273271,34in Ultrawide Monitor,1,379.99,10/06/19 18:50,"669 9th St, Boston, MA 02215" +273272,Google Phone,1,600,10/25/19 19:52,"23 14th St, Seattle, WA 98101" +273272,27in 4K Gaming Monitor,1,389.99,10/25/19 19:52,"23 14th St, Seattle, WA 98101" +273273,AA Batteries (4-pack),1,3.84,10/29/19 14:18,"714 Highland St, Atlanta, GA 30301" +273274,Wired Headphones,1,11.99,10/30/19 15:16,"723 Johnson St, San Francisco, CA 94016" +273275,Lightning Charging Cable,1,14.95,10/06/19 13:14,"534 Maple St, New York City, NY 10001" +273276,USB-C Charging Cable,1,11.95,10/26/19 09:09,"610 12th St, Los Angeles, CA 90001" +273277,USB-C Charging Cable,1,11.95,10/19/19 15:07,"845 South St, New York City, NY 10001" +273278,AA Batteries (4-pack),1,3.84,10/22/19 15:50,"516 Johnson St, Austin, TX 73301" +273279,ThinkPad Laptop,1,999.99,10/16/19 12:34,"218 Willow St, Austin, TX 73301" +273280,Bose SoundSport Headphones,1,99.99,10/31/19 15:08,"249 West St, San Francisco, CA 94016" +273281,Flatscreen TV,1,300,10/24/19 11:22,"599 11th St, Austin, TX 73301" +273282,27in 4K Gaming Monitor,1,389.99,10/11/19 17:07,"362 12th St, San Francisco, CA 94016" +273283,USB-C Charging Cable,2,11.95,10/23/19 21:20,"955 Elm St, Dallas, TX 75001" +273284,USB-C Charging Cable,1,11.95,10/26/19 19:50,"50 Wilson St, Seattle, WA 98101" +273285,AA Batteries (4-pack),1,3.84,10/30/19 13:17,"204 1st St, New York City, NY 10001" +273286,AA Batteries (4-pack),1,3.84,10/27/19 09:14,"132 7th St, New York City, NY 10001" +273287,27in FHD Monitor,1,149.99,10/09/19 13:15,"862 7th St, San Francisco, CA 94016" +273288,Bose SoundSport Headphones,1,99.99,10/06/19 21:01,"989 Wilson St, Austin, TX 73301" +273289,Google Phone,1,600,10/30/19 10:15,"852 Ridge St, Dallas, TX 75001" +273290,Google Phone,1,600,10/17/19 19:11,"700 10th St, Atlanta, GA 30301" +273291,Lightning Charging Cable,1,14.95,10/26/19 23:44,"401 Adams St, Boston, MA 02215" +273292,Apple Airpods Headphones,1,150,10/28/19 14:35,"934 North St, Seattle, WA 98101" +273293,USB-C Charging Cable,1,11.95,10/03/19 07:22,"23 Church St, Dallas, TX 75001" +273294,Lightning Charging Cable,1,14.95,10/27/19 14:24,"952 11th St, Dallas, TX 75001" +273295,27in 4K Gaming Monitor,1,389.99,10/16/19 16:01,"437 West St, Los Angeles, CA 90001" +273296,Google Phone,1,600,10/31/19 20:06,"755 West St, San Francisco, CA 94016" +273297,Apple Airpods Headphones,1,150,10/10/19 08:11,"945 South St, Atlanta, GA 30301" +273298,Lightning Charging Cable,1,14.95,10/06/19 06:15,"866 Spruce St, Los Angeles, CA 90001" +273299,Wired Headphones,1,11.99,10/24/19 14:18,"945 Church St, Boston, MA 02215" +273300,AAA Batteries (4-pack),1,2.99,10/26/19 12:44,"457 Spruce St, Dallas, TX 75001" +273301,USB-C Charging Cable,1,11.95,10/21/19 20:05,"644 Johnson St, Boston, MA 02215" +273302,AA Batteries (4-pack),1,3.84,10/03/19 11:44,"385 Center St, New York City, NY 10001" +273303,AA Batteries (4-pack),1,3.84,10/11/19 16:15,"337 Madison St, Boston, MA 02215" +273304,AAA Batteries (4-pack),1,2.99,10/28/19 03:37,"417 Lincoln St, New York City, NY 10001" +273305,Wired Headphones,1,11.99,10/07/19 11:57,"934 Forest St, San Francisco, CA 94016" +273306,34in Ultrawide Monitor,1,379.99,10/14/19 20:28,"527 South St, Austin, TX 73301" +273307,20in Monitor,1,109.99,10/04/19 17:09,"221 Meadow St, San Francisco, CA 94016" +273308,Apple Airpods Headphones,1,150,10/23/19 13:02,"230 Center St, Austin, TX 73301" +273309,Apple Airpods Headphones,1,150,10/18/19 10:08,"978 Maple St, New York City, NY 10001" +273310,USB-C Charging Cable,1,11.95,10/20/19 13:47,"763 Dogwood St, Atlanta, GA 30301" +273311,Wired Headphones,1,11.99,10/08/19 14:57,"235 Dogwood St, Seattle, WA 98101" +273312,27in 4K Gaming Monitor,1,389.99,10/18/19 16:38,"35 Maple St, Portland, OR 97035" +273313,AAA Batteries (4-pack),3,2.99,10/05/19 07:44,"588 Dogwood St, Atlanta, GA 30301" +273314,Bose SoundSport Headphones,1,99.99,10/15/19 19:50,"907 4th St, New York City, NY 10001" +273315,Macbook Pro Laptop,1,1700,10/12/19 15:32,"630 Cedar St, Portland, ME 04101" +273316,iPhone,1,700,10/14/19 14:29,"436 South St, Atlanta, GA 30301" +273317,AAA Batteries (4-pack),1,2.99,10/24/19 23:34,"235 Wilson St, San Francisco, CA 94016" +273318,Lightning Charging Cable,2,14.95,10/19/19 05:41,"555 13th St, San Francisco, CA 94016" +273319,USB-C Charging Cable,1,11.95,10/29/19 11:42,"617 14th St, New York City, NY 10001" +273320,AA Batteries (4-pack),2,3.84,10/22/19 21:57,"262 Hill St, Los Angeles, CA 90001" +273321,20in Monitor,1,109.99,10/27/19 21:51,"886 Ridge St, Austin, TX 73301" +273322,Macbook Pro Laptop,1,1700,10/21/19 14:55,"391 1st St, New York City, NY 10001" +273323,Flatscreen TV,1,300,10/08/19 12:49,"110 Park St, San Francisco, CA 94016" +273324,Lightning Charging Cable,1,14.95,10/31/19 15:49,"384 12th St, Boston, MA 02215" +273325,Lightning Charging Cable,1,14.95,10/10/19 09:37,"383 Highland St, Los Angeles, CA 90001" +273326,Apple Airpods Headphones,1,150,10/06/19 08:17,"66 6th St, New York City, NY 10001" +273327,Apple Airpods Headphones,1,150,10/19/19 18:53,"239 Spruce St, San Francisco, CA 94016" +273328,Apple Airpods Headphones,1,150,10/27/19 07:08,"281 Lake St, San Francisco, CA 94016" +273329,USB-C Charging Cable,1,11.95,10/09/19 17:21,"127 Meadow St, San Francisco, CA 94016" +273330,Bose SoundSport Headphones,1,99.99,10/15/19 14:35,"365 9th St, Boston, MA 02215" +273331,Lightning Charging Cable,1,14.95,10/02/19 07:56,"400 9th St, Portland, OR 97035" +273332,Wired Headphones,1,11.99,10/21/19 22:39,"579 11th St, San Francisco, CA 94016" +273333,27in FHD Monitor,1,149.99,10/04/19 00:08,"462 Park St, Dallas, TX 75001" +273334,USB-C Charging Cable,1,11.95,10/25/19 16:51,"39 Elm St, Boston, MA 02215" +273335,Lightning Charging Cable,1,14.95,10/17/19 00:31,"275 Jefferson St, San Francisco, CA 94016" +273336,Wired Headphones,2,11.99,10/12/19 21:25,"408 North St, Los Angeles, CA 90001" +273337,Macbook Pro Laptop,1,1700,10/01/19 12:08,"428 Jackson St, San Francisco, CA 94016" +273338,Wired Headphones,1,11.99,10/31/19 19:11,"435 Elm St, San Francisco, CA 94016" +273339,34in Ultrawide Monitor,1,379.99,10/27/19 08:17,"734 West St, Boston, MA 02215" +273340,USB-C Charging Cable,1,11.95,10/18/19 18:03,"849 Cedar St, Portland, OR 97035" +273341,34in Ultrawide Monitor,1,379.99,10/03/19 16:59,"430 Washington St, Atlanta, GA 30301" +273342,Bose SoundSport Headphones,1,99.99,10/27/19 14:37,"686 Church St, New York City, NY 10001" +273343,Macbook Pro Laptop,1,1700,10/06/19 14:17,"598 Center St, San Francisco, CA 94016" +273344,Apple Airpods Headphones,1,150,10/26/19 23:04,"642 12th St, San Francisco, CA 94016" +273345,USB-C Charging Cable,1,11.95,10/22/19 22:46,"733 West St, San Francisco, CA 94016" +273346,27in 4K Gaming Monitor,1,389.99,10/05/19 17:30,"202 Walnut St, Austin, TX 73301" +273347,USB-C Charging Cable,2,11.95,10/20/19 18:27,"996 2nd St, San Francisco, CA 94016" +273348,USB-C Charging Cable,2,11.95,10/13/19 10:57,"639 Meadow St, New York City, NY 10001" +273349,Apple Airpods Headphones,1,150,10/06/19 13:28,"902 Washington St, Los Angeles, CA 90001" +273350,LG Washing Machine,1,600.0,10/26/19 10:33,"220 Jefferson St, New York City, NY 10001" +273350,Apple Airpods Headphones,1,150,10/26/19 10:33,"220 Jefferson St, New York City, NY 10001" +273351,iPhone,1,700,10/22/19 10:32,"780 7th St, San Francisco, CA 94016" +273352,AA Batteries (4-pack),2,3.84,10/05/19 11:28,"889 West St, Dallas, TX 75001" +273353,USB-C Charging Cable,2,11.95,10/23/19 09:49,"212 4th St, New York City, NY 10001" +273354,Wired Headphones,1,11.99,10/25/19 22:49,"230 Elm St, San Francisco, CA 94016" +273355,AAA Batteries (4-pack),1,2.99,10/03/19 12:02,"213 Ridge St, Seattle, WA 98101" +273356,AA Batteries (4-pack),2,3.84,10/01/19 08:58,"251 8th St, San Francisco, CA 94016" +273357,Bose SoundSport Headphones,1,99.99,10/08/19 15:56,"930 Hill St, San Francisco, CA 94016" +273358,USB-C Charging Cable,1,11.95,10/30/19 09:49,"758 Hickory St, New York City, NY 10001" +273359,iPhone,1,700,10/16/19 15:40,"501 4th St, New York City, NY 10001" +273360,LG Dryer,1,600.0,10/11/19 11:19,"533 7th St, New York City, NY 10001" +273361,Lightning Charging Cable,1,14.95,10/19/19 00:15,"723 Pine St, Austin, TX 73301" +273362,USB-C Charging Cable,1,11.95,10/19/19 17:01,"131 Ridge St, Boston, MA 02215" +273363,Bose SoundSport Headphones,1,99.99,10/16/19 15:40,"478 Elm St, New York City, NY 10001" +273364,USB-C Charging Cable,1,11.95,10/02/19 07:11,"796 Ridge St, Atlanta, GA 30301" +273365,Apple Airpods Headphones,1,150,10/17/19 01:09,"435 2nd St, New York City, NY 10001" +273366,20in Monitor,1,109.99,10/25/19 16:46,"673 11th St, Los Angeles, CA 90001" +273367,Wired Headphones,1,11.99,10/19/19 08:15,"91 Ridge St, Portland, OR 97035" +273368,27in 4K Gaming Monitor,1,389.99,10/22/19 11:02,"328 Johnson St, Los Angeles, CA 90001" +273369,20in Monitor,1,109.99,10/27/19 22:31,"745 Dogwood St, New York City, NY 10001" +273370,Apple Airpods Headphones,1,150,10/29/19 20:06,"449 South St, Atlanta, GA 30301" +273371,Wired Headphones,2,11.99,10/02/19 12:17,"810 Hickory St, New York City, NY 10001" +273372,Apple Airpods Headphones,1,150,10/27/19 20:30,"401 Park St, New York City, NY 10001" +273373,USB-C Charging Cable,1,11.95,10/17/19 18:42,"360 Church St, San Francisco, CA 94016" +273374,Bose SoundSport Headphones,1,99.99,10/12/19 14:37,"922 14th St, Seattle, WA 98101" +273375,AA Batteries (4-pack),1,3.84,10/31/19 16:03,"977 Cedar St, Los Angeles, CA 90001" +273376,Apple Airpods Headphones,1,150,10/21/19 09:25,"811 Hill St, Boston, MA 02215" +273377,Wired Headphones,2,11.99,10/08/19 13:08,"724 2nd St, New York City, NY 10001" +273378,Apple Airpods Headphones,1,150,10/10/19 16:06,"487 Main St, New York City, NY 10001" +273379,27in FHD Monitor,1,149.99,10/12/19 16:18,"420 Ridge St, New York City, NY 10001" +273380,USB-C Charging Cable,1,11.95,10/08/19 01:36,"376 14th St, Atlanta, GA 30301" +273381,USB-C Charging Cable,1,11.95,10/26/19 20:07,"205 Chestnut St, New York City, NY 10001" +273382,USB-C Charging Cable,1,11.95,10/30/19 10:19,"193 Chestnut St, Atlanta, GA 30301" +273383,USB-C Charging Cable,1,11.95,10/25/19 22:03,"290 1st St, Los Angeles, CA 90001" +273384,27in FHD Monitor,1,149.99,10/05/19 11:00,"86 West St, San Francisco, CA 94016" +273385,USB-C Charging Cable,1,11.95,10/17/19 18:34,"5 Lincoln St, New York City, NY 10001" +273386,AA Batteries (4-pack),2,3.84,10/02/19 22:19,"97 Ridge St, Austin, TX 73301" +273387,USB-C Charging Cable,1,11.95,10/16/19 12:58,"575 2nd St, Portland, OR 97035" +273388,27in FHD Monitor,1,149.99,10/05/19 00:47,"528 Chestnut St, San Francisco, CA 94016" +273389,Lightning Charging Cable,1,14.95,10/12/19 10:30,"710 13th St, San Francisco, CA 94016" +273390,Bose SoundSport Headphones,1,99.99,10/12/19 15:50,"946 River St, San Francisco, CA 94016" +273391,34in Ultrawide Monitor,1,379.99,10/14/19 08:54,"441 Spruce St, Dallas, TX 75001" +273392,34in Ultrawide Monitor,1,379.99,10/20/19 07:42,"34 Chestnut St, San Francisco, CA 94016" +273393,AAA Batteries (4-pack),1,2.99,10/01/19 10:40,"93 Spruce St, Dallas, TX 75001" +273394,Apple Airpods Headphones,1,150,10/09/19 18:55,"104 Hickory St, Austin, TX 73301" +273395,Google Phone,1,600,10/12/19 07:25,"700 Lincoln St, Portland, OR 97035" +273395,Wired Headphones,1,11.99,10/12/19 07:25,"700 Lincoln St, Portland, OR 97035" +273396,27in FHD Monitor,1,149.99,10/31/19 12:34,"261 Dogwood St, Los Angeles, CA 90001" +273397,Apple Airpods Headphones,1,150,10/30/19 14:37,"364 Park St, Los Angeles, CA 90001" +273398,Google Phone,1,600,10/13/19 12:06,"945 Jackson St, Atlanta, GA 30301" +273398,Wired Headphones,2,11.99,10/13/19 12:06,"945 Jackson St, Atlanta, GA 30301" +273399,Google Phone,1,600,10/16/19 19:15,"310 Maple St, Boston, MA 02215" +273400,34in Ultrawide Monitor,1,379.99,10/21/19 13:23,"769 Meadow St, San Francisco, CA 94016" +273401,AA Batteries (4-pack),1,3.84,10/25/19 23:37,"88 North St, New York City, NY 10001" +273402,AA Batteries (4-pack),1,3.84,10/26/19 09:44,"48 2nd St, Los Angeles, CA 90001" +273403,AA Batteries (4-pack),2,3.84,10/12/19 14:06,"976 4th St, Los Angeles, CA 90001" +273403,Apple Airpods Headphones,1,150,10/12/19 14:06,"976 4th St, Los Angeles, CA 90001" +273404,Apple Airpods Headphones,1,150,10/30/19 09:49,"752 Adams St, San Francisco, CA 94016" +273405,27in 4K Gaming Monitor,1,389.99,10/02/19 19:53,"803 9th St, New York City, NY 10001" +273406,Wired Headphones,1,11.99,10/06/19 12:32,"433 Lincoln St, Portland, OR 97035" +273407,27in FHD Monitor,1,149.99,10/11/19 21:07,"541 Dogwood St, Portland, ME 04101" +273408,USB-C Charging Cable,2,11.95,10/23/19 11:03,"753 Adams St, San Francisco, CA 94016" +273409,Bose SoundSport Headphones,1,99.99,10/24/19 16:34,"543 Washington St, Seattle, WA 98101" +273410,AAA Batteries (4-pack),1,2.99,10/31/19 10:02,"150 Hill St, San Francisco, CA 94016" +273411,Bose SoundSport Headphones,1,99.99,10/05/19 16:35,"63 North St, Dallas, TX 75001" +273412,Apple Airpods Headphones,1,150,10/28/19 22:43,"107 Hickory St, Portland, OR 97035" +273413,Apple Airpods Headphones,1,150,10/08/19 19:30,"355 Pine St, New York City, NY 10001" +273414,USB-C Charging Cable,1,11.95,10/12/19 16:38,"871 River St, San Francisco, CA 94016" +273415,Macbook Pro Laptop,1,1700,10/22/19 20:18,"252 10th St, Dallas, TX 75001" +273416,Wired Headphones,1,11.99,10/22/19 19:03,"816 4th St, Dallas, TX 75001" +273417,Bose SoundSport Headphones,1,99.99,10/08/19 20:47,"402 Wilson St, San Francisco, CA 94016" +273418,Wired Headphones,1,11.99,10/21/19 21:32,"276 12th St, San Francisco, CA 94016" +273419,AA Batteries (4-pack),1,3.84,10/30/19 10:02,"221 9th St, Portland, ME 04101" +273420,USB-C Charging Cable,1,11.95,10/28/19 11:37,"939 14th St, Dallas, TX 75001" +273421,Bose SoundSport Headphones,1,99.99,10/29/19 07:42,"360 Spruce St, San Francisco, CA 94016" +273422,USB-C Charging Cable,1,11.95,10/20/19 13:06,"767 Lincoln St, Los Angeles, CA 90001" +273423,Apple Airpods Headphones,1,150,10/02/19 17:45,"975 Jefferson St, New York City, NY 10001" +273424,34in Ultrawide Monitor,1,379.99,10/31/19 13:03,"401 13th St, Dallas, TX 75001" +273425,AAA Batteries (4-pack),4,2.99,10/07/19 19:54,"596 River St, Atlanta, GA 30301" +273426,Google Phone,1,600,10/27/19 21:54,"961 River St, Austin, TX 73301" +273427,27in 4K Gaming Monitor,1,389.99,10/22/19 19:52,"450 Wilson St, Dallas, TX 75001" +273428,iPhone,1,700,10/25/19 19:42,"633 14th St, San Francisco, CA 94016" +273429,Macbook Pro Laptop,1,1700,10/11/19 11:52,"932 Center St, New York City, NY 10001" +273430,AAA Batteries (4-pack),1,2.99,10/10/19 12:03,"602 8th St, Portland, OR 97035" +273431,Apple Airpods Headphones,1,150,10/30/19 21:32,"27 Dogwood St, San Francisco, CA 94016" +273432,iPhone,1,700,10/18/19 15:09,"158 North St, New York City, NY 10001" +273432,Lightning Charging Cable,1,14.95,10/18/19 15:09,"158 North St, New York City, NY 10001" +273433,Macbook Pro Laptop,1,1700,10/20/19 15:32,"715 Wilson St, Los Angeles, CA 90001" +273434,Lightning Charging Cable,1,14.95,10/24/19 19:34,"777 Madison St, Dallas, TX 75001" +273435,ThinkPad Laptop,1,999.99,10/06/19 15:02,"891 Willow St, San Francisco, CA 94016" +273436,Apple Airpods Headphones,1,150,10/02/19 14:31,"861 Johnson St, San Francisco, CA 94016" +273437,AA Batteries (4-pack),2,3.84,10/11/19 13:20,"414 2nd St, San Francisco, CA 94016" +273438,USB-C Charging Cable,2,11.95,10/27/19 16:22,"496 8th St, Atlanta, GA 30301" +273439,27in FHD Monitor,1,149.99,10/08/19 16:46,"505 Elm St, San Francisco, CA 94016" +273440,AAA Batteries (4-pack),1,2.99,10/02/19 19:07,"551 5th St, Dallas, TX 75001" +273441,Google Phone,1,600,10/27/19 10:32,"976 Willow St, Atlanta, GA 30301" +273441,USB-C Charging Cable,2,11.95,10/27/19 10:32,"976 Willow St, Atlanta, GA 30301" +273442,AAA Batteries (4-pack),3,2.99,10/02/19 05:25,"876 Forest St, San Francisco, CA 94016" +273443,Vareebadd Phone,1,400,10/23/19 23:25,"739 Hill St, Dallas, TX 75001" +273444,34in Ultrawide Monitor,1,379.99,10/09/19 10:46,"995 Walnut St, Austin, TX 73301" +273445,Apple Airpods Headphones,1,150,10/21/19 13:16,"209 Sunset St, San Francisco, CA 94016" +273446,AA Batteries (4-pack),5,3.84,10/22/19 15:09,"785 Main St, San Francisco, CA 94016" +273447,34in Ultrawide Monitor,1,379.99,10/27/19 21:47,"743 Adams St, Dallas, TX 75001" +273448,Wired Headphones,1,11.99,10/07/19 20:44,"341 Washington St, San Francisco, CA 94016" +273449,27in FHD Monitor,1,149.99,10/27/19 20:11,"497 4th St, San Francisco, CA 94016" +273450,Wired Headphones,1,11.99,10/13/19 11:07,"129 South St, San Francisco, CA 94016" +273451,Macbook Pro Laptop,1,1700,10/16/19 11:08,"889 West St, Los Angeles, CA 90001" +273452,USB-C Charging Cable,1,11.95,10/27/19 08:42,"629 Hickory St, San Francisco, CA 94016" +273453,Apple Airpods Headphones,1,150,10/26/19 21:01,"855 14th St, New York City, NY 10001" +273454,Lightning Charging Cable,1,14.95,10/02/19 06:18,"685 Johnson St, Portland, OR 97035" +273455,Bose SoundSport Headphones,1,99.99,10/20/19 22:54,"395 Cherry St, Dallas, TX 75001" +273456,AAA Batteries (4-pack),2,2.99,10/28/19 11:28,"932 12th St, Portland, OR 97035" +273456,AA Batteries (4-pack),3,3.84,10/28/19 11:28,"932 12th St, Portland, OR 97035" +273457,Lightning Charging Cable,1,14.95,10/17/19 12:50,"631 Chestnut St, Seattle, WA 98101" +273458,AAA Batteries (4-pack),4,2.99,10/19/19 20:31,"637 10th St, Los Angeles, CA 90001" +273459,iPhone,1,700,10/11/19 00:02,"737 Meadow St, New York City, NY 10001" +273460,20in Monitor,1,109.99,10/29/19 12:22,"498 Adams St, New York City, NY 10001" +273461,USB-C Charging Cable,1,11.95,10/23/19 17:54,"983 Johnson St, San Francisco, CA 94016" +273462,27in FHD Monitor,1,149.99,10/15/19 13:04,"162 Church St, Boston, MA 02215" +273463,AA Batteries (4-pack),1,3.84,10/19/19 11:40,"76 14th St, Dallas, TX 75001" +273464,Wired Headphones,1,11.99,10/21/19 05:23,"495 Meadow St, San Francisco, CA 94016" +273464,AAA Batteries (4-pack),2,2.99,10/21/19 05:23,"495 Meadow St, San Francisco, CA 94016" +273465,iPhone,1,700,10/25/19 20:52,"170 14th St, Seattle, WA 98101" +273466,iPhone,1,700,10/17/19 19:56,"431 Lincoln St, New York City, NY 10001" +273466,Lightning Charging Cable,1,14.95,10/17/19 19:56,"431 Lincoln St, New York City, NY 10001" +273467,27in 4K Gaming Monitor,1,389.99,10/11/19 20:03,"115 8th St, Dallas, TX 75001" +273468,USB-C Charging Cable,1,11.95,10/23/19 17:15,"602 River St, Dallas, TX 75001" +273469,AA Batteries (4-pack),2,3.84,10/06/19 17:14,"184 West St, San Francisco, CA 94016" +273470,Lightning Charging Cable,1,14.95,10/28/19 23:18,"756 10th St, Los Angeles, CA 90001" +273471,Lightning Charging Cable,1,14.95,10/23/19 19:21,"747 Washington St, San Francisco, CA 94016" +273472,34in Ultrawide Monitor,1,379.99,10/25/19 10:55,"179 Church St, Los Angeles, CA 90001" +273473,AA Batteries (4-pack),1,3.84,10/31/19 10:45,"594 Hickory St, San Francisco, CA 94016" +273474,Macbook Pro Laptop,1,1700,10/09/19 22:16,"368 Highland St, San Francisco, CA 94016" +273475,Lightning Charging Cable,1,14.95,10/28/19 20:01,"795 Lincoln St, Los Angeles, CA 90001" +273475,USB-C Charging Cable,1,11.95,10/28/19 20:01,"795 Lincoln St, Los Angeles, CA 90001" +273476,Wired Headphones,1,11.99,10/02/19 16:20,"910 4th St, Portland, OR 97035" +273477,Apple Airpods Headphones,1,150,10/30/19 22:42,"373 Dogwood St, New York City, NY 10001" +273478,USB-C Charging Cable,1,11.95,10/08/19 08:19,"984 Lincoln St, New York City, NY 10001" +273479,Lightning Charging Cable,1,14.95,10/18/19 19:11,"901 Lake St, Austin, TX 73301" +273480,34in Ultrawide Monitor,1,379.99,10/17/19 22:59,"57 West St, Seattle, WA 98101" +273481,Lightning Charging Cable,1,14.95,10/18/19 17:21,"959 Walnut St, San Francisco, CA 94016" +273482,Apple Airpods Headphones,1,150,10/04/19 00:29,"800 11th St, Austin, TX 73301" +273483,AA Batteries (4-pack),2,3.84,10/31/19 17:21,"379 Pine St, Los Angeles, CA 90001" +273484,34in Ultrawide Monitor,1,379.99,10/10/19 13:01,"803 Madison St, San Francisco, CA 94016" +273485,Wired Headphones,1,11.99,10/09/19 11:35,"179 Willow St, New York City, NY 10001" +273486,Bose SoundSport Headphones,1,99.99,10/24/19 16:25,"447 11th St, San Francisco, CA 94016" +273487,Apple Airpods Headphones,1,150,10/17/19 18:59,"998 Jackson St, Atlanta, GA 30301" +273488,AA Batteries (4-pack),1,3.84,10/08/19 13:24,"392 8th St, San Francisco, CA 94016" +273489,iPhone,1,700,10/29/19 17:41,"422 14th St, Portland, OR 97035" +273490,20in Monitor,1,109.99,10/18/19 15:02,"203 Center St, San Francisco, CA 94016" +273491,Vareebadd Phone,1,400,10/09/19 18:00,"468 8th St, Los Angeles, CA 90001" +273491,USB-C Charging Cable,1,11.95,10/09/19 18:00,"468 8th St, Los Angeles, CA 90001" +273491,Wired Headphones,1,11.99,10/09/19 18:00,"468 8th St, Los Angeles, CA 90001" +273492,AAA Batteries (4-pack),1,2.99,10/15/19 19:58,"857 Lake St, Dallas, TX 75001" +273493,AA Batteries (4-pack),1,3.84,10/27/19 10:11,"88 Meadow St, Portland, OR 97035" +273494,USB-C Charging Cable,1,11.95,10/15/19 22:05,"857 South St, Boston, MA 02215" +273495,20in Monitor,1,109.99,10/21/19 18:20,"563 Center St, San Francisco, CA 94016" +273496,Apple Airpods Headphones,1,150,10/28/19 01:18,"479 Park St, San Francisco, CA 94016" +273497,AAA Batteries (4-pack),5,2.99,10/20/19 22:22,"591 Meadow St, New York City, NY 10001" +273498,iPhone,1,700,10/24/19 00:06,"874 9th St, New York City, NY 10001" +273499,iPhone,1,700,10/17/19 12:37,"135 Sunset St, New York City, NY 10001" +273500,Wired Headphones,1,11.99,10/07/19 15:33,"800 Park St, Los Angeles, CA 90001" +273501,AA Batteries (4-pack),2,3.84,10/13/19 17:24,"394 Church St, Austin, TX 73301" +273502,AAA Batteries (4-pack),2,2.99,10/18/19 09:07,"577 Madison St, Austin, TX 73301" +273503,Wired Headphones,1,11.99,10/15/19 14:35,"209 Wilson St, San Francisco, CA 94016" +273504,Lightning Charging Cable,1,14.95,10/08/19 11:56,"42 Adams St, Portland, OR 97035" +273505,AAA Batteries (4-pack),1,2.99,10/31/19 23:02,"864 1st St, New York City, NY 10001" +273506,Bose SoundSport Headphones,1,99.99,10/15/19 04:38,"492 7th St, Dallas, TX 75001" +273506,Bose SoundSport Headphones,1,99.99,10/15/19 04:38,"492 7th St, Dallas, TX 75001" +273507,USB-C Charging Cable,1,11.95,10/15/19 15:07,"44 Cedar St, Los Angeles, CA 90001" +273508,ThinkPad Laptop,1,999.99,10/15/19 12:18,"206 Lake St, Dallas, TX 75001" +273509,USB-C Charging Cable,1,11.95,10/25/19 19:41,"148 Washington St, Los Angeles, CA 90001" +273510,Vareebadd Phone,1,400,10/26/19 19:01,"715 Elm St, Los Angeles, CA 90001" +273511,Apple Airpods Headphones,1,150,10/14/19 19:39,"287 Hill St, New York City, NY 10001" +273512,USB-C Charging Cable,2,11.95,10/11/19 19:29,"275 Jackson St, Boston, MA 02215" +273513,Lightning Charging Cable,1,14.95,10/16/19 11:33,"953 Cedar St, Los Angeles, CA 90001" +273514,Macbook Pro Laptop,1,1700,10/17/19 18:27,"898 West St, San Francisco, CA 94016" +273515,Bose SoundSport Headphones,1,99.99,10/10/19 23:37,"940 Maple St, San Francisco, CA 94016" +273516,Bose SoundSport Headphones,1,99.99,10/05/19 17:33,"849 6th St, Atlanta, GA 30301" +273517,AAA Batteries (4-pack),1,2.99,10/03/19 10:45,"356 Park St, Dallas, TX 75001" +273518,AA Batteries (4-pack),1,3.84,10/27/19 12:53,"331 Madison St, Austin, TX 73301" +273519,iPhone,1,700,10/25/19 19:23,"409 Spruce St, New York City, NY 10001" +273519,Wired Headphones,1,11.99,10/25/19 19:23,"409 Spruce St, New York City, NY 10001" +273520,Wired Headphones,1,11.99,10/25/19 13:17,"677 14th St, Dallas, TX 75001" +273521,AA Batteries (4-pack),2,3.84,10/26/19 14:44,"661 Highland St, Seattle, WA 98101" +273522,Macbook Pro Laptop,1,1700,10/15/19 16:22,"773 9th St, Austin, TX 73301" +273523,27in FHD Monitor,1,149.99,10/19/19 12:00,"302 10th St, Boston, MA 02215" +273524,Wired Headphones,1,11.99,10/18/19 07:01,"108 11th St, San Francisco, CA 94016" +273525,ThinkPad Laptop,1,999.99,10/04/19 09:05,"955 7th St, Dallas, TX 75001" +273526,Google Phone,1,600,10/23/19 19:42,"15 13th St, Dallas, TX 75001" +273526,Wired Headphones,1,11.99,10/23/19 19:42,"15 13th St, Dallas, TX 75001" +273527,Flatscreen TV,1,300,10/19/19 10:04,"253 Jefferson St, Boston, MA 02215" +273528,Wired Headphones,1,11.99,10/04/19 17:22,"720 Center St, New York City, NY 10001" +273529,27in FHD Monitor,1,149.99,10/12/19 12:41,"59 Ridge St, Dallas, TX 75001" +273530,AAA Batteries (4-pack),1,2.99,10/21/19 11:24,"67 1st St, Portland, OR 97035" +273531,Wired Headphones,1,11.99,10/20/19 12:02,"663 Lakeview St, San Francisco, CA 94016" +273532,Lightning Charging Cable,1,14.95,10/04/19 12:17,"409 Madison St, Los Angeles, CA 90001" +273533,27in 4K Gaming Monitor,1,389.99,10/31/19 13:32,"362 Jefferson St, Boston, MA 02215" +273534,27in FHD Monitor,1,149.99,10/30/19 21:45,"775 Park St, Boston, MA 02215" +273535,Bose SoundSport Headphones,1,99.99,10/17/19 11:07,"203 Forest St, Los Angeles, CA 90001" +273536,AA Batteries (4-pack),3,3.84,10/12/19 11:08,"97 6th St, Austin, TX 73301" +273537,27in 4K Gaming Monitor,1,389.99,10/14/19 06:14,"197 River St, Portland, OR 97035" +273538,iPhone,1,700,10/15/19 18:39,"493 Meadow St, Austin, TX 73301" +273539,USB-C Charging Cable,1,11.95,10/26/19 11:26,"973 North St, Dallas, TX 75001" +273540,Lightning Charging Cable,1,14.95,10/20/19 15:10,"927 Spruce St, New York City, NY 10001" +273541,AAA Batteries (4-pack),1,2.99,10/05/19 07:16,"303 10th St, New York City, NY 10001" +273542,LG Washing Machine,1,600.0,10/15/19 08:39,"784 13th St, Boston, MA 02215" +273543,Apple Airpods Headphones,1,150,10/21/19 22:51,"892 Lincoln St, Atlanta, GA 30301" +273544,Lightning Charging Cable,1,14.95,10/12/19 07:38,"338 Walnut St, San Francisco, CA 94016" +273545,AA Batteries (4-pack),1,3.84,10/17/19 00:48,"913 Washington St, Seattle, WA 98101" +273546,Vareebadd Phone,1,400,10/02/19 04:53,"703 Elm St, New York City, NY 10001" +273547,Apple Airpods Headphones,1,150,10/13/19 22:33,"531 10th St, Portland, OR 97035" +273548,USB-C Charging Cable,1,11.95,10/23/19 23:44,"984 Forest St, Atlanta, GA 30301" +273549,AAA Batteries (4-pack),1,2.99,10/01/19 23:51,"288 Spruce St, San Francisco, CA 94016" +273550,iPhone,1,700,10/17/19 18:47,"209 Main St, Los Angeles, CA 90001" +273550,Wired Headphones,1,11.99,10/17/19 18:47,"209 Main St, Los Angeles, CA 90001" +273551,27in 4K Gaming Monitor,1,389.99,10/07/19 15:48,"15 River St, Los Angeles, CA 90001" +273552,Wired Headphones,1,11.99,10/05/19 14:18,"330 Church St, Seattle, WA 98101" +273553,USB-C Charging Cable,1,11.95,10/22/19 15:32,"51 Johnson St, San Francisco, CA 94016" +273554,AA Batteries (4-pack),1,3.84,10/10/19 12:04,"282 Lakeview St, San Francisco, CA 94016" +273555,AAA Batteries (4-pack),2,2.99,10/01/19 21:23,"587 13th St, Austin, TX 73301" +273556,20in Monitor,1,109.99,10/10/19 13:09,"692 Hill St, San Francisco, CA 94016" +273557,Bose SoundSport Headphones,1,99.99,10/26/19 16:07,"62 1st St, New York City, NY 10001" +273558,AA Batteries (4-pack),2,3.84,10/28/19 16:16,"933 West St, Los Angeles, CA 90001" +273559,Bose SoundSport Headphones,1,99.99,10/01/19 13:03,"749 Washington St, San Francisco, CA 94016" +273560,Bose SoundSport Headphones,1,99.99,10/20/19 18:46,"729 Madison St, Dallas, TX 75001" +273561,27in FHD Monitor,1,149.99,10/10/19 16:45,"280 Pine St, Austin, TX 73301" +273562,27in 4K Gaming Monitor,1,389.99,10/07/19 20:52,"812 South St, San Francisco, CA 94016" +273563,27in FHD Monitor,1,149.99,11/01/19 03:39,"292 Church St, San Francisco, CA 94016" +273564,Bose SoundSport Headphones,1,99.99,10/05/19 15:17,"467 Lincoln St, Portland, OR 97035" +273565,Wired Headphones,1,11.99,10/02/19 17:25,"495 South St, San Francisco, CA 94016" +273566,LG Dryer,1,600.0,10/20/19 15:42,"707 5th St, Atlanta, GA 30301" +273567,Lightning Charging Cable,1,14.95,10/19/19 21:32,"800 Maple St, Austin, TX 73301" +273568,iPhone,1,700,10/06/19 15:22,"696 14th St, Seattle, WA 98101" +273568,Wired Headphones,1,11.99,10/06/19 15:22,"696 14th St, Seattle, WA 98101" +273569,AAA Batteries (4-pack),1,2.99,10/21/19 19:04,"973 Elm St, New York City, NY 10001" +273570,34in Ultrawide Monitor,1,379.99,10/26/19 20:50,"321 Meadow St, Seattle, WA 98101" +273571,iPhone,1,700,10/24/19 11:24,"820 West St, Austin, TX 73301" +273572,Lightning Charging Cable,1,14.95,10/08/19 20:41,"79 Maple St, Los Angeles, CA 90001" +273573,Bose SoundSport Headphones,1,99.99,10/06/19 12:15,"122 Wilson St, Seattle, WA 98101" +273574,USB-C Charging Cable,2,11.95,10/16/19 14:23,"833 7th St, Portland, ME 04101" +273575,USB-C Charging Cable,1,11.95,10/16/19 10:36,"661 10th St, San Francisco, CA 94016" +273576,USB-C Charging Cable,1,11.95,10/20/19 21:54,"727 8th St, Boston, MA 02215" +273577,ThinkPad Laptop,1,999.99,10/24/19 10:40,"242 Hickory St, Boston, MA 02215" +273578,AA Batteries (4-pack),1,3.84,10/09/19 08:10,"511 4th St, San Francisco, CA 94016" +273579,iPhone,1,700,10/24/19 17:43,"99 8th St, Atlanta, GA 30301" +273580,AA Batteries (4-pack),1,3.84,10/04/19 16:32,"177 Spruce St, San Francisco, CA 94016" +273581,Lightning Charging Cable,1,14.95,10/09/19 19:50,"310 8th St, Los Angeles, CA 90001" +273582,ThinkPad Laptop,1,999.99,10/08/19 18:15,"837 Chestnut St, New York City, NY 10001" +273583,34in Ultrawide Monitor,1,379.99,10/28/19 13:08,"350 9th St, Boston, MA 02215" +273584,27in FHD Monitor,1,149.99,10/31/19 13:50,"699 Washington St, Seattle, WA 98101" +273585,Macbook Pro Laptop,1,1700,10/31/19 16:25,"387 Lakeview St, Boston, MA 02215" +273586,Lightning Charging Cable,1,14.95,10/15/19 11:16,"319 Johnson St, San Francisco, CA 94016" +273587,USB-C Charging Cable,1,11.95,10/10/19 13:47,"999 5th St, Boston, MA 02215" +273588,Lightning Charging Cable,1,14.95,10/26/19 07:46,"70 Dogwood St, Los Angeles, CA 90001" +273589,Lightning Charging Cable,1,14.95,10/07/19 20:13,"2 Sunset St, Boston, MA 02215" +273590,Apple Airpods Headphones,1,150,10/30/19 16:00,"143 4th St, Portland, OR 97035" +273591,AAA Batteries (4-pack),1,2.99,10/12/19 12:37,"462 1st St, Los Angeles, CA 90001" +273592,Apple Airpods Headphones,1,150,10/16/19 12:18,"60 Meadow St, San Francisco, CA 94016" +273593,ThinkPad Laptop,1,999.99,10/04/19 18:29,"711 Hill St, Atlanta, GA 30301" +273594,27in FHD Monitor,1,149.99,10/14/19 13:42,"343 1st St, Austin, TX 73301" +273595,Google Phone,1,600,10/16/19 21:08,"923 Forest St, Seattle, WA 98101" +273595,USB-C Charging Cable,1,11.95,10/16/19 21:08,"923 Forest St, Seattle, WA 98101" +273596,AA Batteries (4-pack),2,3.84,10/18/19 11:07,"595 6th St, Dallas, TX 75001" +273597,USB-C Charging Cable,2,11.95,10/21/19 15:29,"966 Main St, Atlanta, GA 30301" +273598,USB-C Charging Cable,1,11.95,10/30/19 08:07,"699 Forest St, Los Angeles, CA 90001" +273599,USB-C Charging Cable,1,11.95,10/21/19 17:45,"949 Lake St, San Francisco, CA 94016" +273600,Wired Headphones,1,11.99,10/10/19 12:30,"788 Wilson St, Portland, ME 04101" +273601,USB-C Charging Cable,1,11.95,10/19/19 05:59,"790 Lake St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +273602,Lightning Charging Cable,1,14.95,10/05/19 16:49,"231 Meadow St, New York City, NY 10001" +273603,Lightning Charging Cable,1,14.95,10/14/19 07:21,"868 Elm St, Seattle, WA 98101" +273604,Macbook Pro Laptop,1,1700,10/16/19 14:52,"292 Madison St, San Francisco, CA 94016" +273605,Google Phone,1,600,10/12/19 15:25,"472 7th St, Los Angeles, CA 90001" +273606,AA Batteries (4-pack),2,3.84,10/10/19 09:14,"693 Hickory St, San Francisco, CA 94016" +273607,Bose SoundSport Headphones,1,99.99,10/23/19 11:55,"560 Maple St, Atlanta, GA 30301" +273608,27in FHD Monitor,1,149.99,10/25/19 21:51,"786 Wilson St, San Francisco, CA 94016" +273609,AA Batteries (4-pack),2,3.84,10/01/19 18:49,"952 14th St, New York City, NY 10001" +273610,Wired Headphones,1,11.99,10/10/19 06:36,"831 North St, New York City, NY 10001" +273611,AA Batteries (4-pack),1,3.84,10/12/19 13:39,"470 Sunset St, Los Angeles, CA 90001" +273612,ThinkPad Laptop,1,999.99,10/02/19 12:54,"893 7th St, San Francisco, CA 94016" +273613,AA Batteries (4-pack),1,3.84,10/13/19 12:54,"5 14th St, Boston, MA 02215" +273614,Macbook Pro Laptop,1,1700,10/03/19 21:10,"331 2nd St, Atlanta, GA 30301" +273615,iPhone,1,700,10/30/19 18:34,"758 Jackson St, San Francisco, CA 94016" +273615,Wired Headphones,1,11.99,10/30/19 18:34,"758 Jackson St, San Francisco, CA 94016" +273616,USB-C Charging Cable,1,11.95,10/26/19 16:37,"277 4th St, Atlanta, GA 30301" +273617,27in FHD Monitor,1,149.99,10/18/19 09:41,"352 9th St, San Francisco, CA 94016" +273618,Bose SoundSport Headphones,1,99.99,10/26/19 19:08,"245 Hill St, Portland, ME 04101" +273619,AAA Batteries (4-pack),1,2.99,10/03/19 01:32,"699 Center St, Los Angeles, CA 90001" +273620,AAA Batteries (4-pack),3,2.99,10/28/19 06:18,"883 Walnut St, New York City, NY 10001" +273621,Lightning Charging Cable,1,14.95,10/06/19 17:12,"360 Lincoln St, New York City, NY 10001" +273622,Flatscreen TV,1,300,10/01/19 16:16,"227 Highland St, Atlanta, GA 30301" +273623,Lightning Charging Cable,1,14.95,10/13/19 22:09,"180 Pine St, New York City, NY 10001" +273624,Google Phone,1,600,10/06/19 14:17,"133 Johnson St, New York City, NY 10001" +273625,20in Monitor,1,109.99,10/15/19 07:27,"260 Chestnut St, Austin, TX 73301" +273626,AAA Batteries (4-pack),1,2.99,10/10/19 14:31,"853 South St, Boston, MA 02215" +273627,AAA Batteries (4-pack),1,2.99,10/10/19 19:54,"563 Spruce St, Atlanta, GA 30301" +273628,27in FHD Monitor,1,149.99,10/08/19 13:23,"221 6th St, Boston, MA 02215" +273629,Google Phone,1,600,10/26/19 16:52,"102 River St, San Francisco, CA 94016" +273630,Wired Headphones,1,11.99,10/31/19 21:18,"355 Willow St, Los Angeles, CA 90001" +273631,Wired Headphones,1,11.99,10/11/19 22:26,"691 Walnut St, Boston, MA 02215" +273632,AAA Batteries (4-pack),1,2.99,10/04/19 17:39,"207 Adams St, Boston, MA 02215" +273633,AA Batteries (4-pack),1,3.84,10/10/19 14:36,"323 Cherry St, Dallas, TX 75001" +273634,Bose SoundSport Headphones,1,99.99,10/21/19 12:05,"921 Maple St, Los Angeles, CA 90001" +273635,Lightning Charging Cable,1,14.95,10/10/19 15:31,"497 Pine St, San Francisco, CA 94016" +273636,27in FHD Monitor,1,149.99,10/24/19 21:54,"62 River St, Dallas, TX 75001" +273637,Bose SoundSport Headphones,1,99.99,10/27/19 13:07,"276 Highland St, New York City, NY 10001" +273638,27in FHD Monitor,1,149.99,10/27/19 10:00,"552 10th St, San Francisco, CA 94016" +273639,iPhone,1,700,10/27/19 13:34,"999 6th St, San Francisco, CA 94016" +273640,AA Batteries (4-pack),1,3.84,10/14/19 10:51,"959 Main St, Los Angeles, CA 90001" +273641,AA Batteries (4-pack),1,3.84,10/24/19 18:12,"899 Johnson St, Los Angeles, CA 90001" +273642,Bose SoundSport Headphones,1,99.99,10/22/19 13:34,"519 6th St, San Francisco, CA 94016" +273643,34in Ultrawide Monitor,1,379.99,10/20/19 19:24,"413 Dogwood St, Portland, OR 97035" +273644,Wired Headphones,1,11.99,10/24/19 17:23,"875 6th St, Seattle, WA 98101" +273645,Lightning Charging Cable,1,14.95,10/17/19 09:30,"526 Lincoln St, Seattle, WA 98101" +273646,27in FHD Monitor,1,149.99,10/07/19 15:57,"43 Sunset St, Los Angeles, CA 90001" +273647,Wired Headphones,1,11.99,10/16/19 12:57,"505 Madison St, Portland, OR 97035" +273648,Lightning Charging Cable,1,14.95,10/12/19 15:27,"39 Dogwood St, New York City, NY 10001" +273649,27in 4K Gaming Monitor,1,389.99,10/04/19 19:50,"833 Madison St, Dallas, TX 75001" +273650,Lightning Charging Cable,1,14.95,10/24/19 22:35,"853 Park St, Seattle, WA 98101" +273651,AA Batteries (4-pack),1,3.84,10/19/19 18:27,"936 6th St, New York City, NY 10001" +273652,Wired Headphones,1,11.99,10/09/19 12:32,"764 Church St, New York City, NY 10001" +273653,Lightning Charging Cable,1,14.95,10/20/19 19:58,"320 Highland St, Boston, MA 02215" +273654,Lightning Charging Cable,1,14.95,10/16/19 20:31,"583 8th St, Los Angeles, CA 90001" +273655,AA Batteries (4-pack),2,3.84,10/13/19 14:36,"506 Lake St, Los Angeles, CA 90001" +273656,Wired Headphones,1,11.99,10/04/19 20:56,"394 Ridge St, Boston, MA 02215" +273657,AA Batteries (4-pack),1,3.84,10/20/19 21:35,"143 Church St, New York City, NY 10001" +273658,Apple Airpods Headphones,1,150,10/20/19 06:07,"34 Johnson St, New York City, NY 10001" +273659,USB-C Charging Cable,1,11.95,10/13/19 19:50,"508 Jefferson St, San Francisco, CA 94016" +273660,27in FHD Monitor,1,149.99,10/06/19 17:04,"323 Meadow St, Los Angeles, CA 90001" +273661,USB-C Charging Cable,1,11.95,10/28/19 16:52,"946 Hill St, Los Angeles, CA 90001" +273662,Lightning Charging Cable,1,14.95,10/01/19 07:21,"524 9th St, Los Angeles, CA 90001" +273663,Apple Airpods Headphones,1,150,10/13/19 11:06,"994 1st St, Los Angeles, CA 90001" +273664,20in Monitor,1,109.99,10/31/19 21:03,"460 6th St, New York City, NY 10001" +273665,Wired Headphones,2,11.99,10/14/19 22:35,"279 River St, Los Angeles, CA 90001" +273666,USB-C Charging Cable,1,11.95,10/15/19 19:28,"801 Jefferson St, Dallas, TX 75001" +273667,AAA Batteries (4-pack),1,2.99,10/28/19 06:01,"613 Main St, Seattle, WA 98101" +273668,iPhone,1,700,10/14/19 21:13,"745 10th St, Seattle, WA 98101" +273669,Flatscreen TV,1,300,10/06/19 10:08,"829 Church St, Los Angeles, CA 90001" +273670,iPhone,1,700,10/05/19 12:40,"578 Jefferson St, Portland, OR 97035" +273670,Lightning Charging Cable,1,14.95,10/05/19 12:40,"578 Jefferson St, Portland, OR 97035" +273671,Lightning Charging Cable,1,14.95,10/13/19 15:58,"894 Ridge St, Atlanta, GA 30301" +273672,Apple Airpods Headphones,1,150,10/02/19 14:35,"83 10th St, Los Angeles, CA 90001" +273673,Flatscreen TV,1,300,10/09/19 19:20,"329 5th St, San Francisco, CA 94016" +273674,34in Ultrawide Monitor,1,379.99,10/25/19 17:42,"248 Park St, Portland, OR 97035" +273675,Google Phone,1,600,10/26/19 19:44,"954 River St, Boston, MA 02215" +273676,27in FHD Monitor,1,149.99,10/25/19 13:10,"300 Lake St, Los Angeles, CA 90001" +273677,AA Batteries (4-pack),1,3.84,10/24/19 21:07,"459 Chestnut St, Boston, MA 02215" +273678,AA Batteries (4-pack),2,3.84,10/09/19 23:05,"860 4th St, Dallas, TX 75001" +273679,iPhone,1,700,10/02/19 11:20,"911 West St, Boston, MA 02215" +273680,20in Monitor,1,109.99,10/11/19 16:00,"728 2nd St, San Francisco, CA 94016" +273681,Wired Headphones,1,11.99,10/09/19 07:57,"301 Forest St, Los Angeles, CA 90001" +273682,Macbook Pro Laptop,1,1700,10/10/19 00:21,"106 Cedar St, Boston, MA 02215" +273683,27in 4K Gaming Monitor,1,389.99,10/19/19 23:02,"608 Elm St, Los Angeles, CA 90001" +273684,Google Phone,1,600,10/31/19 12:22,"849 Jackson St, San Francisco, CA 94016" +273685,Lightning Charging Cable,1,14.95,10/26/19 10:30,"108 5th St, Los Angeles, CA 90001" +273686,ThinkPad Laptop,1,999.99,10/20/19 16:03,"695 Hickory St, Los Angeles, CA 90001" +273687,iPhone,1,700,10/16/19 13:19,"477 7th St, Boston, MA 02215" +273688,USB-C Charging Cable,1,11.95,10/20/19 10:08,"455 9th St, Portland, OR 97035" +273689,Wired Headphones,1,11.99,10/13/19 20:28,"702 11th St, Dallas, TX 75001" +273690,USB-C Charging Cable,1,11.95,10/11/19 14:30,"516 West St, Boston, MA 02215" +273691,USB-C Charging Cable,1,11.95,10/17/19 14:19,"496 8th St, New York City, NY 10001" +273692,34in Ultrawide Monitor,1,379.99,10/15/19 20:18,"371 Washington St, Dallas, TX 75001" +273693,Wired Headphones,1,11.99,10/10/19 19:44,"935 7th St, San Francisco, CA 94016" +273694,Lightning Charging Cable,1,14.95,10/08/19 20:41,"867 Ridge St, San Francisco, CA 94016" +273695,iPhone,1,700,10/13/19 12:26,"711 1st St, San Francisco, CA 94016" +273696,Lightning Charging Cable,1,14.95,10/17/19 11:42,"981 Maple St, San Francisco, CA 94016" +273697,Apple Airpods Headphones,1,150,10/02/19 11:20,"610 Chestnut St, Seattle, WA 98101" +273698,Apple Airpods Headphones,1,150,10/14/19 12:46,"800 Elm St, Los Angeles, CA 90001" +273699,AA Batteries (4-pack),2,3.84,10/31/19 12:30,"954 Maple St, Portland, OR 97035" +273700,20in Monitor,1,109.99,10/25/19 10:44,"744 North St, Dallas, TX 75001" +273701,AAA Batteries (4-pack),3,2.99,10/31/19 08:37,"885 8th St, Atlanta, GA 30301" +273702,Wired Headphones,1,11.99,10/01/19 21:36,"537 Wilson St, Austin, TX 73301" +273703,USB-C Charging Cable,1,11.95,10/08/19 16:19,"843 6th St, New York City, NY 10001" +273704,Wired Headphones,1,11.99,10/06/19 13:27,"4 Walnut St, Portland, OR 97035" +273705,ThinkPad Laptop,1,999.99,10/08/19 10:18,"39 Ridge St, New York City, NY 10001" +273706,Bose SoundSport Headphones,1,99.99,10/17/19 01:18,"766 Lake St, Los Angeles, CA 90001" +273707,Lightning Charging Cable,2,14.95,10/27/19 22:05,"950 Main St, Austin, TX 73301" +273708,Lightning Charging Cable,1,14.95,10/19/19 22:07,"997 14th St, San Francisco, CA 94016" +273709,AA Batteries (4-pack),1,3.84,10/12/19 14:09,"309 Hill St, Dallas, TX 75001" +273710,Apple Airpods Headphones,1,150,10/29/19 10:15,"62 Church St, Boston, MA 02215" +273711,Wired Headphones,1,11.99,10/05/19 23:15,"237 10th St, San Francisco, CA 94016" +273712,Wired Headphones,1,11.99,10/23/19 19:28,"62 Lincoln St, Portland, ME 04101" +273713,Google Phone,1,600,10/11/19 02:05,"825 Highland St, Austin, TX 73301" +273713,USB-C Charging Cable,1,11.95,10/11/19 02:05,"825 Highland St, Austin, TX 73301" +273714,USB-C Charging Cable,1,11.95,10/24/19 10:00,"70 West St, Boston, MA 02215" +273715,Bose SoundSport Headphones,1,99.99,10/05/19 20:13,"760 Willow St, Dallas, TX 75001" +273716,Apple Airpods Headphones,1,150,10/05/19 10:47,"82 Forest St, San Francisco, CA 94016" +273717,iPhone,1,700,10/20/19 19:50,"136 9th St, New York City, NY 10001" +273718,27in 4K Gaming Monitor,1,389.99,10/26/19 01:37,"625 5th St, Boston, MA 02215" +273719,Lightning Charging Cable,1,14.95,10/12/19 13:16,"392 10th St, Austin, TX 73301" +273720,Macbook Pro Laptop,1,1700,10/28/19 19:52,"15 Jackson St, Seattle, WA 98101" +273721,USB-C Charging Cable,1,11.95,10/17/19 22:45,"846 Ridge St, New York City, NY 10001" +273722,27in FHD Monitor,1,149.99,10/15/19 21:09,"692 Forest St, San Francisco, CA 94016" +273723,Lightning Charging Cable,1,14.95,10/28/19 07:48,"766 Park St, San Francisco, CA 94016" +273724,Google Phone,1,600,10/24/19 11:29,"749 Hill St, Los Angeles, CA 90001" +273725,Wired Headphones,1,11.99,10/01/19 17:22,"563 Jackson St, San Francisco, CA 94016" +273726,Apple Airpods Headphones,1,150,10/15/19 09:46,"872 Pine St, New York City, NY 10001" +273727,Lightning Charging Cable,1,14.95,10/18/19 12:02,"109 Elm St, Dallas, TX 75001" +273728,ThinkPad Laptop,1,999.99,10/07/19 12:39,"440 Maple St, Los Angeles, CA 90001" +273729,Lightning Charging Cable,1,14.95,10/09/19 19:02,"737 Dogwood St, Boston, MA 02215" +273730,Lightning Charging Cable,1,14.95,10/19/19 08:26,"454 9th St, Los Angeles, CA 90001" +273731,20in Monitor,1,109.99,10/04/19 19:36,"793 6th St, Los Angeles, CA 90001" +273732,AA Batteries (4-pack),2,3.84,10/24/19 10:55,"281 Maple St, Boston, MA 02215" +273733,AAA Batteries (4-pack),3,2.99,10/13/19 20:02,"533 11th St, New York City, NY 10001" +273734,27in 4K Gaming Monitor,1,389.99,10/03/19 18:08,"767 6th St, Atlanta, GA 30301" +273735,Apple Airpods Headphones,1,150,10/21/19 14:47,"310 Cedar St, New York City, NY 10001" +273736,Bose SoundSport Headphones,1,99.99,10/26/19 19:19,"781 2nd St, Boston, MA 02215" +273737,USB-C Charging Cable,1,11.95,10/14/19 19:16,"309 Johnson St, Atlanta, GA 30301" +273738,Bose SoundSport Headphones,1,99.99,10/18/19 21:20,"352 Spruce St, Portland, ME 04101" +273739,Apple Airpods Headphones,1,150,10/23/19 10:08,"928 North St, Seattle, WA 98101" +273740,AAA Batteries (4-pack),1,2.99,10/01/19 12:22,"954 Dogwood St, Seattle, WA 98101" +273741,Flatscreen TV,1,300,10/06/19 19:39,"229 5th St, Boston, MA 02215" +273741,Wired Headphones,1,11.99,10/06/19 19:39,"229 5th St, Boston, MA 02215" +273742,AA Batteries (4-pack),1,3.84,10/23/19 10:33,"511 Church St, Boston, MA 02215" +273743,ThinkPad Laptop,1,999.99,10/04/19 10:05,"964 Lincoln St, Boston, MA 02215" +273744,Bose SoundSport Headphones,1,99.99,10/12/19 11:54,"656 Dogwood St, San Francisco, CA 94016" +273745,Flatscreen TV,1,300,10/31/19 19:09,"453 Forest St, Boston, MA 02215" +273746,AA Batteries (4-pack),1,3.84,10/23/19 14:28,"726 12th St, New York City, NY 10001" +273747,27in 4K Gaming Monitor,1,389.99,10/05/19 09:46,"43 Jackson St, San Francisco, CA 94016" +273748,27in 4K Gaming Monitor,1,389.99,10/30/19 21:28,"552 5th St, Los Angeles, CA 90001" +273749,27in FHD Monitor,1,149.99,10/25/19 13:41,"835 5th St, New York City, NY 10001" +273750,AAA Batteries (4-pack),1,2.99,10/24/19 13:29,"560 8th St, Los Angeles, CA 90001" +273751,20in Monitor,1,109.99,10/13/19 19:57,"364 4th St, New York City, NY 10001" +273752,AAA Batteries (4-pack),1,2.99,10/06/19 09:27,"545 12th St, Los Angeles, CA 90001" +273753,27in FHD Monitor,1,149.99,10/20/19 13:28,"924 Cherry St, New York City, NY 10001" +273754,Lightning Charging Cable,1,14.95,10/04/19 14:13,"872 Elm St, San Francisco, CA 94016" +273755,27in 4K Gaming Monitor,1,389.99,10/16/19 22:45,"17 Sunset St, Austin, TX 73301" +273756,27in 4K Gaming Monitor,1,389.99,10/06/19 18:42,"856 Highland St, Dallas, TX 75001" +273757,Wired Headphones,1,11.99,10/21/19 17:17,"386 12th St, New York City, NY 10001" +273758,AAA Batteries (4-pack),4,2.99,10/17/19 00:07,"205 10th St, Los Angeles, CA 90001" +273759,Flatscreen TV,1,300,10/19/19 10:58,"419 Center St, Atlanta, GA 30301" +273760,Lightning Charging Cable,1,14.95,10/06/19 14:21,"66 Forest St, San Francisco, CA 94016" +273761,AA Batteries (4-pack),2,3.84,10/24/19 09:03,"432 Center St, New York City, NY 10001" +273762,Lightning Charging Cable,1,14.95,10/28/19 18:58,"814 Cherry St, San Francisco, CA 94016" +273763,Lightning Charging Cable,1,14.95,10/10/19 16:32,"834 Highland St, Atlanta, GA 30301" +273764,Lightning Charging Cable,1,14.95,10/02/19 11:12,"681 9th St, Seattle, WA 98101" +273765,AA Batteries (4-pack),1,3.84,10/26/19 15:03,"454 Wilson St, Austin, TX 73301" +273766,Apple Airpods Headphones,1,150,10/31/19 19:08,"96 Forest St, San Francisco, CA 94016" +273767,Wired Headphones,1,11.99,10/09/19 09:42,"81 7th St, San Francisco, CA 94016" +273768,Macbook Pro Laptop,1,1700,10/17/19 14:09,"564 Madison St, Los Angeles, CA 90001" +273769,AA Batteries (4-pack),1,3.84,10/31/19 17:25,"845 Madison St, Los Angeles, CA 90001" +273770,USB-C Charging Cable,1,11.95,10/18/19 16:43,"147 Main St, Boston, MA 02215" +273771,AAA Batteries (4-pack),3,2.99,10/14/19 20:06,"425 Pine St, Atlanta, GA 30301" +273772,AA Batteries (4-pack),1,3.84,10/24/19 13:22,"995 11th St, Portland, ME 04101" +273773,Macbook Pro Laptop,1,1700,10/18/19 17:36,"522 Washington St, Seattle, WA 98101" +273774,Lightning Charging Cable,1,14.95,10/26/19 17:01,"444 Hickory St, New York City, NY 10001" +273775,34in Ultrawide Monitor,1,379.99,10/31/19 10:18,"469 Hill St, Los Angeles, CA 90001" +273776,USB-C Charging Cable,1,11.95,10/30/19 14:40,"662 9th St, Dallas, TX 75001" +273777,USB-C Charging Cable,1,11.95,10/12/19 14:48,"492 11th St, San Francisco, CA 94016" +273778,Wired Headphones,1,11.99,10/27/19 23:28,"912 Johnson St, San Francisco, CA 94016" +273779,Flatscreen TV,1,300,10/14/19 12:12,"770 12th St, Dallas, TX 75001" +273780,Lightning Charging Cable,1,14.95,10/25/19 12:14,"587 Cherry St, New York City, NY 10001" +273781,Wired Headphones,1,11.99,10/15/19 18:56,"751 Sunset St, Portland, OR 97035" +273782,34in Ultrawide Monitor,1,379.99,10/07/19 11:02,"820 Cherry St, Seattle, WA 98101" +273783,27in FHD Monitor,1,149.99,10/23/19 19:23,"45 Main St, Los Angeles, CA 90001" +273784,Apple Airpods Headphones,1,150,10/17/19 06:13,"539 Wilson St, Atlanta, GA 30301" +273785,AAA Batteries (4-pack),3,2.99,10/10/19 08:54,"287 1st St, Atlanta, GA 30301" +273786,AAA Batteries (4-pack),1,2.99,10/08/19 14:59,"213 Pine St, San Francisco, CA 94016" +,,,,, +273787,Lightning Charging Cable,1,14.95,10/31/19 11:48,"13 Wilson St, San Francisco, CA 94016" +273788,Wired Headphones,1,11.99,10/10/19 15:51,"227 Ridge St, Seattle, WA 98101" +273789,Bose SoundSport Headphones,1,99.99,10/03/19 11:00,"937 Jackson St, San Francisco, CA 94016" +273790,AAA Batteries (4-pack),4,2.99,10/23/19 22:13,"486 Sunset St, San Francisco, CA 94016" +273791,USB-C Charging Cable,1,11.95,10/19/19 14:42,"318 Hill St, Dallas, TX 75001" +273792,USB-C Charging Cable,1,11.95,10/07/19 12:56,"862 Dogwood St, San Francisco, CA 94016" +273793,Lightning Charging Cable,1,14.95,10/03/19 11:57,"92 Pine St, New York City, NY 10001" +273794,Lightning Charging Cable,1,14.95,10/10/19 16:47,"813 4th St, San Francisco, CA 94016" +273795,Lightning Charging Cable,1,14.95,10/19/19 21:50,"928 North St, Dallas, TX 75001" +273796,Apple Airpods Headphones,1,150,10/12/19 10:13,"773 Forest St, Dallas, TX 75001" +273797,Apple Airpods Headphones,1,150,10/21/19 14:07,"914 1st St, New York City, NY 10001" +273798,Bose SoundSport Headphones,1,99.99,10/12/19 07:15,"57 Washington St, New York City, NY 10001" +273799,USB-C Charging Cable,1,11.95,10/19/19 11:29,"562 8th St, Dallas, TX 75001" +273800,USB-C Charging Cable,1,11.95,10/23/19 12:07,"750 Lakeview St, New York City, NY 10001" +273801,Lightning Charging Cable,1,14.95,10/08/19 20:13,"308 Jefferson St, Los Angeles, CA 90001" +273802,AAA Batteries (4-pack),1,2.99,10/20/19 16:45,"764 Wilson St, Boston, MA 02215" +273803,AAA Batteries (4-pack),3,2.99,10/29/19 23:12,"982 Meadow St, Portland, OR 97035" +273804,iPhone,1,700,10/26/19 22:31,"399 Forest St, Seattle, WA 98101" +273805,Apple Airpods Headphones,1,150,10/03/19 08:35,"630 2nd St, Boston, MA 02215" +273806,Bose SoundSport Headphones,1,99.99,10/25/19 22:36,"802 Spruce St, Portland, OR 97035" +273807,AAA Batteries (4-pack),1,2.99,10/27/19 12:50,"756 Wilson St, Atlanta, GA 30301" +273808,Bose SoundSport Headphones,1,99.99,10/16/19 02:36,"635 Jefferson St, New York City, NY 10001" +273809,Wired Headphones,1,11.99,10/01/19 18:13,"978 Lake St, New York City, NY 10001" +273810,iPhone,1,700,10/27/19 15:41,"644 5th St, San Francisco, CA 94016" +273811,Wired Headphones,2,11.99,10/25/19 11:50,"865 4th St, Dallas, TX 75001" +273812,Apple Airpods Headphones,1,150,10/26/19 20:26,"638 Hill St, Seattle, WA 98101" +273813,Flatscreen TV,1,300,10/22/19 13:15,"773 Jackson St, Austin, TX 73301" +273814,Lightning Charging Cable,1,14.95,10/21/19 21:01,"248 Lake St, San Francisco, CA 94016" +273815,34in Ultrawide Monitor,1,379.99,10/24/19 12:31,"448 Pine St, San Francisco, CA 94016" +273816,Lightning Charging Cable,1,14.95,10/06/19 18:49,"158 Cherry St, Portland, OR 97035" +273817,USB-C Charging Cable,2,11.95,10/02/19 18:10,"233 5th St, New York City, NY 10001" +273818,Lightning Charging Cable,1,14.95,10/06/19 12:47,"731 Church St, Los Angeles, CA 90001" +273819,ThinkPad Laptop,1,999.99,10/24/19 17:44,"129 4th St, Boston, MA 02215" +273820,27in FHD Monitor,1,149.99,10/20/19 12:37,"394 1st St, New York City, NY 10001" +273821,Apple Airpods Headphones,1,150,10/31/19 14:31,"438 12th St, New York City, NY 10001" +273822,ThinkPad Laptop,1,999.99,10/29/19 22:51,"677 West St, Portland, OR 97035" +273823,LG Dryer,1,600.0,10/18/19 19:38,"564 2nd St, Portland, OR 97035" +273824,AAA Batteries (4-pack),1,2.99,10/31/19 18:08,"328 Willow St, Boston, MA 02215" +273825,Flatscreen TV,1,300,10/19/19 21:28,"671 Washington St, San Francisco, CA 94016" +273826,AAA Batteries (4-pack),1,2.99,10/11/19 18:40,"490 Cedar St, San Francisco, CA 94016" +273827,LG Dryer,1,600.0,10/17/19 18:52,"957 1st St, San Francisco, CA 94016" +273828,Lightning Charging Cable,1,14.95,11/01/19 00:36,"164 North St, Los Angeles, CA 90001" +273829,Bose SoundSport Headphones,1,99.99,10/13/19 00:12,"135 Park St, Portland, OR 97035" +273830,Wired Headphones,1,11.99,10/09/19 08:47,"255 12th St, Boston, MA 02215" +273831,AA Batteries (4-pack),2,3.84,10/14/19 21:26,"77 11th St, Atlanta, GA 30301" +273832,Lightning Charging Cable,1,14.95,10/27/19 12:20,"963 Park St, Boston, MA 02215" +273833,Lightning Charging Cable,1,14.95,10/07/19 18:06,"232 5th St, Boston, MA 02215" +273834,Apple Airpods Headphones,1,150,10/27/19 11:35,"645 13th St, Atlanta, GA 30301" +273835,AAA Batteries (4-pack),1,2.99,10/04/19 05:00,"806 Meadow St, Dallas, TX 75001" +273836,USB-C Charging Cable,1,11.95,10/13/19 13:16,"492 Pine St, Atlanta, GA 30301" +273837,Macbook Pro Laptop,1,1700,10/27/19 21:46,"188 South St, San Francisco, CA 94016" +273838,Lightning Charging Cable,1,14.95,10/18/19 16:31,"387 Lake St, San Francisco, CA 94016" +273839,Bose SoundSport Headphones,1,99.99,10/30/19 19:06,"735 West St, San Francisco, CA 94016" +273840,27in FHD Monitor,1,149.99,10/13/19 08:40,"238 6th St, San Francisco, CA 94016" +273841,Lightning Charging Cable,2,14.95,10/21/19 15:09,"251 Lincoln St, San Francisco, CA 94016" +273842,AAA Batteries (4-pack),2,2.99,10/03/19 11:19,"789 Highland St, New York City, NY 10001" +273843,20in Monitor,1,109.99,10/05/19 11:05,"549 Lakeview St, Los Angeles, CA 90001" +273844,ThinkPad Laptop,1,999.99,10/11/19 08:53,"447 Forest St, New York City, NY 10001" +273845,AAA Batteries (4-pack),2,2.99,10/04/19 03:01,"379 12th St, Los Angeles, CA 90001" +273846,Apple Airpods Headphones,1,150,10/05/19 17:51,"829 West St, New York City, NY 10001" +273847,Wired Headphones,1,11.99,10/11/19 13:15,"762 Ridge St, San Francisco, CA 94016" +273847,Lightning Charging Cable,1,14.95,10/11/19 13:15,"762 Ridge St, San Francisco, CA 94016" +273848,Wired Headphones,1,11.99,10/30/19 20:29,"862 Church St, New York City, NY 10001" +273849,Apple Airpods Headphones,1,150,10/04/19 15:37,"969 13th St, Dallas, TX 75001" +273850,Bose SoundSport Headphones,1,99.99,10/25/19 12:47,"24 Cherry St, Dallas, TX 75001" +273851,iPhone,1,700,10/06/19 14:12,"111 12th St, San Francisco, CA 94016" +273852,Lightning Charging Cable,1,14.95,10/07/19 15:18,"348 Forest St, San Francisco, CA 94016" +273853,Flatscreen TV,1,300,10/22/19 16:26,"905 West St, San Francisco, CA 94016" +273854,AA Batteries (4-pack),2,3.84,10/22/19 14:05,"878 Ridge St, Los Angeles, CA 90001" +273855,USB-C Charging Cable,1,11.95,10/14/19 09:00,"77 12th St, Dallas, TX 75001" +273856,Macbook Pro Laptop,1,1700,10/11/19 13:19,"786 Lincoln St, Austin, TX 73301" +273857,AA Batteries (4-pack),1,3.84,10/08/19 19:33,"458 Adams St, Boston, MA 02215" +273858,Lightning Charging Cable,1,14.95,10/07/19 12:40,"68 9th St, Austin, TX 73301" +273859,AAA Batteries (4-pack),1,2.99,10/02/19 15:46,"394 Ridge St, Dallas, TX 75001" +273860,iPhone,1,700,10/05/19 22:40,"922 4th St, Austin, TX 73301" +273861,Lightning Charging Cable,1,14.95,10/02/19 20:04,"667 Main St, Atlanta, GA 30301" +273862,Lightning Charging Cable,1,14.95,10/01/19 18:29,"991 11th St, San Francisco, CA 94016" +273863,Apple Airpods Headphones,1,150,10/14/19 13:24,"149 Sunset St, Los Angeles, CA 90001" +273864,AA Batteries (4-pack),1,3.84,10/22/19 10:38,"263 4th St, Boston, MA 02215" +273865,Bose SoundSport Headphones,1,99.99,10/14/19 11:11,"747 West St, Seattle, WA 98101" +273866,Flatscreen TV,1,300,10/31/19 00:48,"535 Forest St, Atlanta, GA 30301" +273867,Google Phone,1,600,10/29/19 12:40,"861 Jefferson St, San Francisco, CA 94016" +273867,USB-C Charging Cable,1,11.95,10/29/19 12:40,"861 Jefferson St, San Francisco, CA 94016" +273868,AA Batteries (4-pack),3,3.84,10/25/19 23:19,"594 Jefferson St, Los Angeles, CA 90001" +273869,AA Batteries (4-pack),2,3.84,10/14/19 18:57,"15 Maple St, San Francisco, CA 94016" +273870,USB-C Charging Cable,1,11.95,10/20/19 09:59,"611 13th St, Seattle, WA 98101" +273871,Wired Headphones,1,11.99,10/21/19 10:04,"741 6th St, Boston, MA 02215" +273872,27in FHD Monitor,1,149.99,10/12/19 23:14,"601 River St, San Francisco, CA 94016" +273873,USB-C Charging Cable,2,11.95,10/07/19 01:57,"536 Ridge St, Seattle, WA 98101" +273874,USB-C Charging Cable,1,11.95,10/26/19 09:21,"219 North St, San Francisco, CA 94016" +273875,AAA Batteries (4-pack),1,2.99,10/08/19 16:24,"842 Center St, Austin, TX 73301" +273876,AAA Batteries (4-pack),1,2.99,10/13/19 11:58,"13 Chestnut St, Atlanta, GA 30301" +273877,AA Batteries (4-pack),1,3.84,10/01/19 14:14,"477 West St, San Francisco, CA 94016" +273878,Apple Airpods Headphones,1,150,10/21/19 00:47,"458 Highland St, Portland, OR 97035" +273879,20in Monitor,1,109.99,10/26/19 15:46,"137 Cedar St, New York City, NY 10001" +273880,Bose SoundSport Headphones,1,99.99,10/23/19 14:32,"485 Chestnut St, San Francisco, CA 94016" +,,,,, +273881,iPhone,1,700,10/30/19 19:02,"986 West St, Seattle, WA 98101" +273882,Lightning Charging Cable,1,14.95,10/08/19 14:40,"701 14th St, Atlanta, GA 30301" +273883,Apple Airpods Headphones,1,150,10/20/19 20:00,"951 8th St, Los Angeles, CA 90001" +273884,AA Batteries (4-pack),1,3.84,10/15/19 16:28,"543 Adams St, Atlanta, GA 30301" +273885,USB-C Charging Cable,1,11.95,10/24/19 10:11,"304 5th St, Austin, TX 73301" +273886,20in Monitor,1,109.99,10/16/19 08:45,"295 7th St, Boston, MA 02215" +273887,Lightning Charging Cable,1,14.95,10/29/19 17:10,"643 West St, Seattle, WA 98101" +273888,AAA Batteries (4-pack),1,2.99,10/13/19 15:01,"779 Jefferson St, San Francisco, CA 94016" +273889,USB-C Charging Cable,1,11.95,10/19/19 14:31,"500 Willow St, Los Angeles, CA 90001" +273890,Apple Airpods Headphones,1,150,10/31/19 18:36,"362 North St, New York City, NY 10001" +273891,Bose SoundSport Headphones,1,99.99,10/02/19 05:41,"581 1st St, San Francisco, CA 94016" +273892,Lightning Charging Cable,1,14.95,10/26/19 22:05,"554 River St, Portland, OR 97035" +273893,Apple Airpods Headphones,1,150,10/31/19 11:02,"186 Meadow St, San Francisco, CA 94016" +273894,Macbook Pro Laptop,1,1700,10/16/19 14:19,"5 7th St, Los Angeles, CA 90001" +273895,USB-C Charging Cable,1,11.95,10/03/19 12:22,"244 8th St, New York City, NY 10001" +273896,Wired Headphones,1,11.99,10/26/19 16:45,"913 Willow St, San Francisco, CA 94016" +273897,AAA Batteries (4-pack),1,2.99,10/30/19 18:42,"660 Jefferson St, Dallas, TX 75001" +273898,AAA Batteries (4-pack),2,2.99,10/05/19 10:18,"766 10th St, New York City, NY 10001" +273899,Wired Headphones,1,11.99,10/28/19 15:50,"37 West St, New York City, NY 10001" +273900,Google Phone,1,600,10/16/19 12:29,"701 Lake St, San Francisco, CA 94016" +273901,USB-C Charging Cable,1,11.95,10/01/19 19:43,"528 10th St, San Francisco, CA 94016" +273902,AA Batteries (4-pack),1,3.84,10/20/19 19:50,"140 1st St, Austin, TX 73301" +273903,Wired Headphones,1,11.99,10/05/19 20:55,"811 Cedar St, Atlanta, GA 30301" +273904,Apple Airpods Headphones,1,150,10/19/19 16:09,"483 Pine St, Dallas, TX 75001" +273905,Lightning Charging Cable,1,14.95,10/11/19 11:33,"8 5th St, Los Angeles, CA 90001" +273906,USB-C Charging Cable,1,11.95,10/05/19 09:14,"677 11th St, Seattle, WA 98101" +273907,Lightning Charging Cable,1,14.95,10/21/19 23:29,"208 4th St, Los Angeles, CA 90001" +273908,AA Batteries (4-pack),1,3.84,10/09/19 20:44,"87 Maple St, New York City, NY 10001" +273909,AA Batteries (4-pack),1,3.84,10/25/19 11:19,"458 Pine St, San Francisco, CA 94016" +273910,34in Ultrawide Monitor,1,379.99,10/30/19 17:59,"277 Hickory St, Seattle, WA 98101" +273911,Lightning Charging Cable,1,14.95,10/26/19 12:39,"922 River St, San Francisco, CA 94016" +273912,USB-C Charging Cable,2,11.95,10/11/19 04:14,"195 Madison St, Atlanta, GA 30301" +273913,27in 4K Gaming Monitor,1,389.99,11/01/19 00:50,"101 Adams St, San Francisco, CA 94016" +273914,Bose SoundSport Headphones,1,99.99,10/31/19 15:17,"442 Pine St, San Francisco, CA 94016" +273915,AA Batteries (4-pack),2,3.84,10/14/19 07:41,"758 14th St, San Francisco, CA 94016" +273916,AA Batteries (4-pack),1,3.84,10/22/19 17:48,"683 Main St, Boston, MA 02215" +273917,34in Ultrawide Monitor,1,379.99,10/17/19 22:23,"918 11th St, San Francisco, CA 94016" +273918,iPhone,1,700,10/28/19 21:31,"941 Jackson St, San Francisco, CA 94016" +273919,AAA Batteries (4-pack),2,2.99,10/26/19 11:22,"965 Center St, Seattle, WA 98101" +273920,USB-C Charging Cable,1,11.95,10/07/19 12:24,"65 Ridge St, San Francisco, CA 94016" +273921,Apple Airpods Headphones,1,150,10/23/19 16:44,"761 Dogwood St, New York City, NY 10001" +273922,27in FHD Monitor,1,149.99,10/09/19 18:13,"264 Church St, San Francisco, CA 94016" +273923,34in Ultrawide Monitor,1,379.99,10/09/19 15:55,"93 South St, Austin, TX 73301" +273924,AAA Batteries (4-pack),2,2.99,10/08/19 11:31,"880 Cherry St, Los Angeles, CA 90001" +273925,Lightning Charging Cable,1,14.95,10/12/19 21:37,"827 Forest St, Atlanta, GA 30301" +273926,Flatscreen TV,1,300,10/15/19 19:54,"886 Center St, San Francisco, CA 94016" +273927,Bose SoundSport Headphones,1,99.99,10/20/19 19:25,"848 8th St, New York City, NY 10001" +273928,Flatscreen TV,1,300,10/27/19 00:42,"154 6th St, Los Angeles, CA 90001" +273929,27in FHD Monitor,1,149.99,10/03/19 16:16,"223 Lakeview St, Austin, TX 73301" +273930,Wired Headphones,1,11.99,10/09/19 18:28,"184 8th St, Portland, OR 97035" +273931,Macbook Pro Laptop,1,1700,10/11/19 06:26,"871 Chestnut St, Austin, TX 73301" +273932,AAA Batteries (4-pack),1,2.99,10/08/19 19:12,"682 Elm St, New York City, NY 10001" +273933,Apple Airpods Headphones,1,150,10/24/19 18:48,"700 Hill St, New York City, NY 10001" +273934,AA Batteries (4-pack),1,3.84,10/13/19 18:00,"552 Dogwood St, Atlanta, GA 30301" +273935,Bose SoundSport Headphones,1,99.99,10/08/19 18:49,"385 Center St, San Francisco, CA 94016" +273936,Wired Headphones,1,11.99,10/17/19 16:37,"296 Hill St, Seattle, WA 98101" +273937,Apple Airpods Headphones,1,150,10/26/19 20:17,"679 Madison St, Atlanta, GA 30301" +273938,AA Batteries (4-pack),2,3.84,10/01/19 19:06,"123 Dogwood St, Boston, MA 02215" +273939,34in Ultrawide Monitor,1,379.99,10/13/19 23:50,"439 Center St, San Francisco, CA 94016" +273940,ThinkPad Laptop,1,999.99,10/14/19 00:04,"556 Maple St, New York City, NY 10001" +273941,Flatscreen TV,1,300,10/12/19 19:03,"376 Wilson St, Atlanta, GA 30301" +273942,Apple Airpods Headphones,1,150,10/11/19 19:04,"798 5th St, Los Angeles, CA 90001" +273943,27in FHD Monitor,1,149.99,10/14/19 18:19,"185 Lakeview St, Boston, MA 02215" +273944,Bose SoundSport Headphones,1,99.99,10/11/19 19:35,"328 Elm St, San Francisco, CA 94016" +273945,Bose SoundSport Headphones,1,99.99,10/28/19 11:46,"885 5th St, Los Angeles, CA 90001" +273946,Macbook Pro Laptop,1,1700,10/08/19 11:45,"861 Washington St, Los Angeles, CA 90001" +273947,AA Batteries (4-pack),1,3.84,10/05/19 13:54,"102 Willow St, Los Angeles, CA 90001" +273948,34in Ultrawide Monitor,1,379.99,10/14/19 13:03,"315 Meadow St, San Francisco, CA 94016" +273949,AA Batteries (4-pack),2,3.84,10/17/19 15:01,"142 Highland St, San Francisco, CA 94016" +273950,Macbook Pro Laptop,1,1700,10/12/19 11:43,"709 8th St, Los Angeles, CA 90001" +273951,Bose SoundSport Headphones,1,99.99,10/25/19 12:36,"983 Willow St, San Francisco, CA 94016" +273952,Google Phone,1,600,10/05/19 20:54,"948 Church St, Dallas, TX 75001" +273952,Wired Headphones,1,11.99,10/05/19 20:54,"948 Church St, Dallas, TX 75001" +273953,AAA Batteries (4-pack),1,2.99,10/25/19 11:58,"154 Main St, Portland, OR 97035" +273954,Lightning Charging Cable,2,14.95,10/29/19 11:04,"98 North St, Boston, MA 02215" +273955,Wired Headphones,1,11.99,10/15/19 16:53,"644 Spruce St, Boston, MA 02215" +273956,Bose SoundSport Headphones,1,99.99,10/06/19 20:12,"784 Dogwood St, Atlanta, GA 30301" +273957,27in FHD Monitor,1,149.99,10/19/19 22:42,"94 South St, Boston, MA 02215" +273958,Bose SoundSport Headphones,1,99.99,10/29/19 17:44,"415 5th St, San Francisco, CA 94016" +273959,AA Batteries (4-pack),1,3.84,10/17/19 09:47,"766 Forest St, Los Angeles, CA 90001" +273960,USB-C Charging Cable,2,11.95,10/02/19 09:24,"411 1st St, San Francisco, CA 94016" +273961,Vareebadd Phone,1,400,10/18/19 02:29,"100 6th St, Portland, OR 97035" +273961,Bose SoundSport Headphones,1,99.99,10/18/19 02:29,"100 6th St, Portland, OR 97035" +273962,Wired Headphones,1,11.99,10/12/19 11:59,"838 West St, Portland, ME 04101" +273963,Wired Headphones,1,11.99,10/10/19 15:22,"88 River St, San Francisco, CA 94016" +273964,LG Dryer,1,600.0,10/11/19 16:05,"602 Elm St, San Francisco, CA 94016" +273965,Apple Airpods Headphones,1,150,10/07/19 13:24,"56 South St, Los Angeles, CA 90001" +273966,27in 4K Gaming Monitor,1,389.99,10/07/19 16:21,"819 Washington St, Boston, MA 02215" +273967,AAA Batteries (4-pack),1,2.99,10/17/19 04:56,"825 Highland St, Dallas, TX 75001" +273968,Wired Headphones,1,11.99,10/20/19 12:38,"148 Meadow St, San Francisco, CA 94016" +273969,AA Batteries (4-pack),1,3.84,10/04/19 09:11,"639 Cherry St, Los Angeles, CA 90001" +273970,Apple Airpods Headphones,1,150,10/02/19 04:28,"971 Washington St, Portland, OR 97035" +273971,USB-C Charging Cable,2,11.95,10/21/19 11:24,"380 Adams St, Seattle, WA 98101" +273972,Wired Headphones,1,11.99,10/02/19 10:57,"70 Maple St, Atlanta, GA 30301" +,,,,, +273973,Apple Airpods Headphones,1,150,10/18/19 17:39,"919 West St, Dallas, TX 75001" +273974,Lightning Charging Cable,1,14.95,10/15/19 05:54,"258 Ridge St, Los Angeles, CA 90001" +273975,Bose SoundSport Headphones,1,99.99,10/15/19 14:21,"812 7th St, Dallas, TX 75001" +273976,AA Batteries (4-pack),1,3.84,10/04/19 20:44,"363 Adams St, Dallas, TX 75001" +273977,Bose SoundSport Headphones,1,99.99,10/09/19 06:36,"815 5th St, San Francisco, CA 94016" +273978,Apple Airpods Headphones,1,150,10/03/19 16:00,"856 Sunset St, Seattle, WA 98101" +273979,27in FHD Monitor,1,149.99,10/09/19 21:39,"457 Chestnut St, Los Angeles, CA 90001" +273980,iPhone,1,700,10/11/19 12:37,"291 Lincoln St, San Francisco, CA 94016" +273981,AAA Batteries (4-pack),2,2.99,10/19/19 21:59,"229 West St, Portland, OR 97035" +273982,USB-C Charging Cable,1,11.95,10/14/19 12:05,"768 Highland St, Seattle, WA 98101" +273983,iPhone,1,700,10/24/19 12:36,"936 Park St, San Francisco, CA 94016" +273983,Lightning Charging Cable,1,14.95,10/24/19 12:36,"936 Park St, San Francisco, CA 94016" +273983,Wired Headphones,1,11.99,10/24/19 12:36,"936 Park St, San Francisco, CA 94016" +273984,Wired Headphones,1,11.99,10/08/19 20:00,"98 Elm St, Atlanta, GA 30301" +273985,Google Phone,1,600,10/02/19 14:11,"733 South St, San Francisco, CA 94016" +273986,USB-C Charging Cable,1,11.95,10/03/19 16:41,"511 Adams St, Portland, OR 97035" +273987,USB-C Charging Cable,1,11.95,10/17/19 08:05,"711 Ridge St, Los Angeles, CA 90001" +273988,AA Batteries (4-pack),1,3.84,10/02/19 14:26,"780 Meadow St, Dallas, TX 75001" +273989,34in Ultrawide Monitor,1,379.99,10/04/19 19:40,"888 Jefferson St, Seattle, WA 98101" +273990,27in 4K Gaming Monitor,1,389.99,10/16/19 10:43,"359 Washington St, Seattle, WA 98101" +273991,ThinkPad Laptop,1,999.99,10/21/19 23:49,"328 Jackson St, Boston, MA 02215" +273992,Lightning Charging Cable,1,14.95,10/01/19 14:47,"72 North St, Dallas, TX 75001" +273993,34in Ultrawide Monitor,1,379.99,10/25/19 12:47,"264 Lakeview St, San Francisco, CA 94016" +273994,Bose SoundSport Headphones,2,99.99,10/02/19 12:47,"44 Ridge St, Atlanta, GA 30301" +273995,27in 4K Gaming Monitor,1,389.99,10/09/19 18:04,"475 10th St, San Francisco, CA 94016" +273996,Wired Headphones,2,11.99,10/19/19 18:49,"346 Pine St, San Francisco, CA 94016" +273997,Flatscreen TV,1,300,10/24/19 16:19,"354 13th St, Portland, OR 97035" +273998,iPhone,1,700,10/23/19 14:27,"349 Cherry St, New York City, NY 10001" +273998,Apple Airpods Headphones,1,150,10/23/19 14:27,"349 Cherry St, New York City, NY 10001" +273999,AA Batteries (4-pack),2,3.84,10/14/19 21:26,"829 Lakeview St, Los Angeles, CA 90001" +274000,USB-C Charging Cable,1,11.95,10/07/19 10:10,"823 South St, San Francisco, CA 94016" +274001,AAA Batteries (4-pack),1,2.99,10/08/19 22:08,"460 West St, Austin, TX 73301" +274002,AA Batteries (4-pack),1,3.84,10/24/19 14:49,"335 12th St, Boston, MA 02215" +274003,27in 4K Gaming Monitor,1,389.99,10/17/19 13:02,"798 Chestnut St, Seattle, WA 98101" +274004,USB-C Charging Cable,1,11.95,10/24/19 19:53,"282 North St, Dallas, TX 75001" +274005,AA Batteries (4-pack),2,3.84,10/26/19 21:11,"901 14th St, Dallas, TX 75001" +274006,Lightning Charging Cable,1,14.95,10/20/19 00:28,"973 9th St, San Francisco, CA 94016" +274007,USB-C Charging Cable,1,11.95,10/21/19 17:25,"761 Pine St, San Francisco, CA 94016" +274008,AAA Batteries (4-pack),1,2.99,10/31/19 18:51,"776 North St, San Francisco, CA 94016" +274009,Lightning Charging Cable,1,14.95,10/25/19 18:47,"758 Adams St, San Francisco, CA 94016" +274010,Bose SoundSport Headphones,1,99.99,10/04/19 17:28,"579 Park St, New York City, NY 10001" +274011,Flatscreen TV,1,300,10/02/19 17:19,"832 Chestnut St, San Francisco, CA 94016" +274012,Bose SoundSport Headphones,1,99.99,10/16/19 20:18,"853 River St, Boston, MA 02215" +274013,Wired Headphones,1,11.99,10/04/19 19:23,"852 Cherry St, Seattle, WA 98101" +274014,27in FHD Monitor,1,149.99,10/25/19 14:03,"548 Maple St, Los Angeles, CA 90001" +274015,AA Batteries (4-pack),2,3.84,10/07/19 01:19,"143 Hickory St, Los Angeles, CA 90001" +274016,USB-C Charging Cable,1,11.95,10/26/19 16:45,"461 8th St, Atlanta, GA 30301" +274017,34in Ultrawide Monitor,1,379.99,10/27/19 15:51,"689 Madison St, Los Angeles, CA 90001" +274018,Wired Headphones,1,11.99,10/28/19 01:17,"362 Cherry St, Austin, TX 73301" +274019,Lightning Charging Cable,2,14.95,10/15/19 20:23,"270 Park St, Los Angeles, CA 90001" +274020,AA Batteries (4-pack),1,3.84,10/16/19 08:40,"871 Highland St, New York City, NY 10001" +274021,Lightning Charging Cable,1,14.95,10/01/19 20:32,"480 Adams St, Los Angeles, CA 90001" +274022,Apple Airpods Headphones,1,150,10/12/19 13:03,"750 South St, San Francisco, CA 94016" +274023,Vareebadd Phone,1,400,10/29/19 18:05,"874 4th St, Seattle, WA 98101" +274024,Vareebadd Phone,1,400,10/06/19 10:07,"725 Highland St, Seattle, WA 98101" +274024,Wired Headphones,1,11.99,10/06/19 10:07,"725 Highland St, Seattle, WA 98101" +274025,Wired Headphones,1,11.99,10/14/19 18:26,"956 Meadow St, Atlanta, GA 30301" +274026,Bose SoundSport Headphones,1,99.99,10/19/19 17:35,"785 12th St, New York City, NY 10001" +274027,Flatscreen TV,1,300,10/04/19 12:49,"243 11th St, Austin, TX 73301" +274028,27in FHD Monitor,1,149.99,10/04/19 15:26,"573 River St, San Francisco, CA 94016" +274029,34in Ultrawide Monitor,1,379.99,10/25/19 19:34,"503 South St, Dallas, TX 75001" +274030,Google Phone,1,600,10/10/19 07:01,"323 Hill St, Los Angeles, CA 90001" +274031,27in 4K Gaming Monitor,1,389.99,10/01/19 15:20,"641 Cherry St, Dallas, TX 75001" +274032,Wired Headphones,1,11.99,10/18/19 10:26,"184 Jackson St, San Francisco, CA 94016" +274033,Wired Headphones,1,11.99,10/16/19 11:43,"69 Ridge St, Austin, TX 73301" +274034,AAA Batteries (4-pack),1,2.99,10/17/19 09:27,"746 6th St, Atlanta, GA 30301" +274035,ThinkPad Laptop,1,999.99,10/07/19 17:52,"70 Jackson St, Seattle, WA 98101" +274036,27in FHD Monitor,1,149.99,10/06/19 14:00,"727 5th St, New York City, NY 10001" +274037,Lightning Charging Cable,1,14.95,10/10/19 20:07,"898 Park St, San Francisco, CA 94016" +274038,USB-C Charging Cable,1,11.95,10/25/19 13:50,"269 Main St, San Francisco, CA 94016" +274039,Wired Headphones,1,11.99,10/26/19 20:00,"875 13th St, New York City, NY 10001" +274040,USB-C Charging Cable,1,11.95,10/04/19 10:25,"563 Adams St, Seattle, WA 98101" +274041,Google Phone,1,600,10/07/19 23:10,"900 Meadow St, Portland, OR 97035" +274042,27in FHD Monitor,1,149.99,10/03/19 20:30,"871 Spruce St, Boston, MA 02215" +274043,Lightning Charging Cable,1,14.95,10/25/19 21:39,"566 Hill St, Los Angeles, CA 90001" +274044,Apple Airpods Headphones,1,150,10/23/19 21:50,"764 Madison St, Los Angeles, CA 90001" +274045,Wired Headphones,2,11.99,10/11/19 18:34,"897 Lake St, Austin, TX 73301" +274046,Wired Headphones,2,11.99,10/13/19 13:40,"938 Hill St, San Francisco, CA 94016" +274047,Bose SoundSport Headphones,1,99.99,10/27/19 16:23,"128 Willow St, San Francisco, CA 94016" +274048,Lightning Charging Cable,1,14.95,10/11/19 21:38,"293 Madison St, Los Angeles, CA 90001" +274049,AA Batteries (4-pack),2,3.84,10/23/19 20:57,"708 9th St, Boston, MA 02215" +274050,Flatscreen TV,1,300,10/31/19 19:34,"563 2nd St, Portland, ME 04101" +274051,Lightning Charging Cable,1,14.95,10/16/19 00:58,"961 Sunset St, Atlanta, GA 30301" +274052,Wired Headphones,1,11.99,10/14/19 15:59,"299 14th St, Portland, OR 97035" +274053,AA Batteries (4-pack),1,3.84,10/05/19 12:11,"849 West St, Seattle, WA 98101" +274054,Flatscreen TV,1,300,10/24/19 19:01,"225 Highland St, San Francisco, CA 94016" +274055,AA Batteries (4-pack),1,3.84,10/31/19 00:20,"982 West St, Portland, OR 97035" +274056,iPhone,1,700,10/28/19 13:08,"189 Highland St, Boston, MA 02215" +274057,Apple Airpods Headphones,1,150,10/13/19 13:39,"704 Willow St, San Francisco, CA 94016" +274058,Wired Headphones,1,11.99,10/14/19 09:21,"206 Lincoln St, Los Angeles, CA 90001" +274059,Wired Headphones,1,11.99,10/21/19 14:57,"318 Park St, Dallas, TX 75001" +274060,USB-C Charging Cable,1,11.95,10/23/19 10:01,"292 Dogwood St, Atlanta, GA 30301" +274061,USB-C Charging Cable,1,11.95,10/12/19 16:05,"755 Main St, San Francisco, CA 94016" +274062,Google Phone,1,600,10/12/19 07:11,"483 Sunset St, San Francisco, CA 94016" +274063,ThinkPad Laptop,1,999.99,10/21/19 19:09,"945 Walnut St, San Francisco, CA 94016" +274064,Lightning Charging Cable,1,14.95,10/27/19 15:29,"575 9th St, Atlanta, GA 30301" +274065,Flatscreen TV,1,300,10/17/19 23:49,"493 Highland St, New York City, NY 10001" +274066,Apple Airpods Headphones,1,150,10/25/19 00:13,"905 14th St, San Francisco, CA 94016" +274067,27in FHD Monitor,1,149.99,10/09/19 22:41,"126 Ridge St, Seattle, WA 98101" +274068,iPhone,1,700,10/23/19 09:37,"53 Walnut St, Los Angeles, CA 90001" +274069,Wired Headphones,1,11.99,10/04/19 14:14,"313 South St, San Francisco, CA 94016" +274070,AAA Batteries (4-pack),1,2.99,10/03/19 20:56,"77 Cedar St, Los Angeles, CA 90001" +274071,AA Batteries (4-pack),1,3.84,10/14/19 14:24,"150 South St, Los Angeles, CA 90001" +274072,34in Ultrawide Monitor,1,379.99,10/08/19 13:14,"388 Washington St, Los Angeles, CA 90001" +274073,USB-C Charging Cable,1,11.95,10/29/19 18:00,"672 North St, Boston, MA 02215" +274074,Lightning Charging Cable,1,14.95,10/28/19 10:33,"185 Spruce St, Boston, MA 02215" +274075,USB-C Charging Cable,2,11.95,10/09/19 19:46,"950 Elm St, Boston, MA 02215" +274076,Wired Headphones,1,11.99,10/16/19 00:25,"637 8th St, Los Angeles, CA 90001" +274077,Macbook Pro Laptop,1,1700,10/13/19 22:46,"339 Madison St, Dallas, TX 75001" +274078,USB-C Charging Cable,1,11.95,10/28/19 14:13,"944 Wilson St, New York City, NY 10001" +274079,Wired Headphones,1,11.99,10/29/19 14:09,"808 14th St, San Francisco, CA 94016" +274080,Lightning Charging Cable,1,14.95,10/29/19 21:20,"210 Wilson St, San Francisco, CA 94016" +274081,AAA Batteries (4-pack),1,2.99,10/20/19 16:53,"573 Ridge St, Atlanta, GA 30301" +274082,Lightning Charging Cable,1,14.95,10/09/19 17:26,"369 Adams St, Boston, MA 02215" +274083,AAA Batteries (4-pack),1,2.99,10/06/19 19:34,"329 North St, Dallas, TX 75001" +274084,34in Ultrawide Monitor,1,379.99,10/12/19 10:01,"149 Willow St, Dallas, TX 75001" +274085,Wired Headphones,1,11.99,10/18/19 12:40,"575 Lake St, Los Angeles, CA 90001" +274085,Lightning Charging Cable,1,14.95,10/18/19 12:40,"575 Lake St, Los Angeles, CA 90001" +274086,AAA Batteries (4-pack),1,2.99,10/27/19 20:46,"453 Meadow St, New York City, NY 10001" +274087,USB-C Charging Cable,1,11.95,10/24/19 15:51,"905 Hickory St, San Francisco, CA 94016" +274088,AAA Batteries (4-pack),2,2.99,10/10/19 19:33,"480 Pine St, Boston, MA 02215" +274089,Bose SoundSport Headphones,1,99.99,10/12/19 20:23,"626 9th St, Los Angeles, CA 90001" +274090,AA Batteries (4-pack),1,3.84,10/23/19 22:35,"628 Wilson St, San Francisco, CA 94016" +274091,Apple Airpods Headphones,1,150,10/16/19 15:56,"942 6th St, Los Angeles, CA 90001" +274092,Apple Airpods Headphones,1,150,10/10/19 13:12,"915 West St, New York City, NY 10001" +274093,Macbook Pro Laptop,1,1700,10/20/19 21:22,"302 Washington St, San Francisco, CA 94016" +274093,Lightning Charging Cable,1,14.95,10/20/19 21:22,"302 Washington St, San Francisco, CA 94016" +274094,USB-C Charging Cable,1,11.95,10/31/19 19:22,"985 Chestnut St, New York City, NY 10001" +274095,AAA Batteries (4-pack),2,2.99,10/25/19 19:52,"523 Wilson St, New York City, NY 10001" +274096,Macbook Pro Laptop,1,1700,10/24/19 09:40,"373 Church St, Los Angeles, CA 90001" +274097,iPhone,1,700,10/22/19 23:12,"997 River St, Los Angeles, CA 90001" +274098,34in Ultrawide Monitor,1,379.99,10/28/19 17:24,"546 Elm St, San Francisco, CA 94016" +274099,AA Batteries (4-pack),1,3.84,10/25/19 21:15,"505 Main St, Dallas, TX 75001" +274100,USB-C Charging Cable,1,11.95,10/06/19 13:55,"575 Jefferson St, New York City, NY 10001" +274101,Macbook Pro Laptop,1,1700,10/06/19 20:31,"662 Chestnut St, San Francisco, CA 94016" +274102,Lightning Charging Cable,1,14.95,10/26/19 07:35,"876 South St, Boston, MA 02215" +274103,Flatscreen TV,1,300,10/04/19 09:47,"399 Madison St, Boston, MA 02215" +274104,27in 4K Gaming Monitor,1,389.99,10/07/19 09:21,"309 Lake St, San Francisco, CA 94016" +274105,Bose SoundSport Headphones,1,99.99,10/31/19 18:11,"650 Lincoln St, San Francisco, CA 94016" +274106,AAA Batteries (4-pack),1,2.99,10/26/19 17:13,"151 5th St, Portland, OR 97035" +274106,34in Ultrawide Monitor,1,379.99,10/26/19 17:13,"151 5th St, Portland, OR 97035" +274107,34in Ultrawide Monitor,1,379.99,10/16/19 22:54,"829 Park St, San Francisco, CA 94016" +274108,Bose SoundSport Headphones,1,99.99,10/31/19 19:42,"960 Madison St, Boston, MA 02215" +274109,27in 4K Gaming Monitor,1,389.99,10/15/19 19:41,"256 12th St, Seattle, WA 98101" +274110,AA Batteries (4-pack),1,3.84,10/11/19 21:22,"303 Spruce St, Los Angeles, CA 90001" +274111,Wired Headphones,1,11.99,10/29/19 19:55,"308 Dogwood St, Boston, MA 02215" +274112,Wired Headphones,1,11.99,10/16/19 12:49,"522 Washington St, Dallas, TX 75001" +274113,USB-C Charging Cable,1,11.95,10/03/19 16:23,"253 Hill St, Los Angeles, CA 90001" +274114,USB-C Charging Cable,1,11.95,10/30/19 17:09,"321 Lincoln St, San Francisco, CA 94016" +274115,Bose SoundSport Headphones,1,99.99,10/15/19 22:32,"380 North St, Boston, MA 02215" +274116,Macbook Pro Laptop,1,1700,10/01/19 21:44,"49 5th St, Los Angeles, CA 90001" +274117,Wired Headphones,2,11.99,10/31/19 21:42,"80 Chestnut St, New York City, NY 10001" +274118,USB-C Charging Cable,1,11.95,10/23/19 18:10,"678 Johnson St, Austin, TX 73301" +274119,Lightning Charging Cable,1,14.95,10/23/19 09:57,"265 1st St, Atlanta, GA 30301" +274120,USB-C Charging Cable,1,11.95,10/24/19 10:47,"537 11th St, New York City, NY 10001" +274121,Lightning Charging Cable,1,14.95,10/21/19 18:21,"467 Center St, San Francisco, CA 94016" +274122,Lightning Charging Cable,1,14.95,10/28/19 16:04,"860 Forest St, Austin, TX 73301" +274123,20in Monitor,1,109.99,10/28/19 11:53,"718 Adams St, Austin, TX 73301" +274124,AAA Batteries (4-pack),1,2.99,10/12/19 11:09,"808 Highland St, San Francisco, CA 94016" +274125,Apple Airpods Headphones,1,150,10/22/19 12:20,"869 West St, Austin, TX 73301" +274126,27in 4K Gaming Monitor,1,389.99,10/21/19 20:51,"828 1st St, Los Angeles, CA 90001" +274127,USB-C Charging Cable,1,11.95,10/08/19 22:24,"983 Washington St, Boston, MA 02215" +274128,Lightning Charging Cable,1,14.95,10/23/19 12:09,"178 12th St, San Francisco, CA 94016" +274129,AA Batteries (4-pack),2,3.84,10/14/19 12:31,"552 6th St, San Francisco, CA 94016" +274130,20in Monitor,1,109.99,10/06/19 20:53,"768 Highland St, Portland, OR 97035" +274131,Bose SoundSport Headphones,1,99.99,10/09/19 11:39,"215 8th St, Seattle, WA 98101" +274132,Lightning Charging Cable,1,14.95,10/05/19 21:41,"293 Dogwood St, Portland, ME 04101" +274133,iPhone,1,700,10/04/19 14:16,"190 Forest St, San Francisco, CA 94016" +274134,34in Ultrawide Monitor,1,379.99,10/26/19 19:54,"868 North St, New York City, NY 10001" +274135,USB-C Charging Cable,1,11.95,10/21/19 10:48,"333 Park St, Austin, TX 73301" +274136,iPhone,1,700,10/13/19 17:32,"540 6th St, Seattle, WA 98101" +274137,Wired Headphones,1,11.99,10/08/19 13:04,"31 Main St, Portland, OR 97035" +274138,AA Batteries (4-pack),1,3.84,10/10/19 17:48,"99 Cedar St, Boston, MA 02215" +274139,Bose SoundSport Headphones,1,99.99,10/07/19 00:01,"510 Highland St, San Francisco, CA 94016" +274140,AAA Batteries (4-pack),2,2.99,10/04/19 20:49,"572 Lakeview St, Los Angeles, CA 90001" +274141,AA Batteries (4-pack),1,3.84,10/27/19 23:32,"586 11th St, Los Angeles, CA 90001" +274142,Lightning Charging Cable,2,14.95,10/20/19 22:16,"166 West St, Los Angeles, CA 90001" +274143,AA Batteries (4-pack),1,3.84,10/16/19 20:33,"638 Center St, New York City, NY 10001" +274144,Lightning Charging Cable,1,14.95,10/05/19 12:52,"507 Ridge St, New York City, NY 10001" +274145,Lightning Charging Cable,1,14.95,10/20/19 07:36,"887 Washington St, Los Angeles, CA 90001" +274146,Vareebadd Phone,1,400,10/06/19 19:29,"581 Washington St, Austin, TX 73301" +274146,USB-C Charging Cable,1,11.95,10/06/19 19:29,"581 Washington St, Austin, TX 73301" +274147,27in 4K Gaming Monitor,1,389.99,10/17/19 11:39,"353 Wilson St, New York City, NY 10001" +274148,USB-C Charging Cable,1,11.95,10/28/19 15:22,"755 Washington St, Portland, OR 97035" +274149,USB-C Charging Cable,1,11.95,10/31/19 17:06,"696 Elm St, Austin, TX 73301" +274150,Apple Airpods Headphones,1,150,10/07/19 13:00,"485 Sunset St, Portland, OR 97035" +274151,USB-C Charging Cable,1,11.95,10/22/19 20:18,"144 Lake St, San Francisco, CA 94016" +274152,USB-C Charging Cable,1,11.95,10/11/19 10:38,"838 8th St, Boston, MA 02215" +274153,Apple Airpods Headphones,1,150,10/31/19 00:56,"282 Pine St, New York City, NY 10001" +274153,Bose SoundSport Headphones,1,99.99,10/31/19 00:56,"282 Pine St, New York City, NY 10001" +274154,Bose SoundSport Headphones,1,99.99,10/23/19 16:50,"573 10th St, Atlanta, GA 30301" +274155,Lightning Charging Cable,1,14.95,10/24/19 18:16,"137 West St, Dallas, TX 75001" +274156,Google Phone,1,600,10/28/19 17:19,"952 Chestnut St, San Francisco, CA 94016" +274157,Lightning Charging Cable,1,14.95,10/14/19 11:15,"695 Church St, Seattle, WA 98101" +274157,20in Monitor,1,109.99,10/14/19 11:15,"695 Church St, Seattle, WA 98101" +274158,Wired Headphones,1,11.99,10/14/19 13:47,"596 Hill St, Portland, OR 97035" +274159,Wired Headphones,1,11.99,10/26/19 18:32,"589 Willow St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +274160,USB-C Charging Cable,1,11.95,10/16/19 09:17,"168 Church St, Seattle, WA 98101" +274161,27in FHD Monitor,1,149.99,10/08/19 10:51,"211 Wilson St, Los Angeles, CA 90001" +274162,34in Ultrawide Monitor,1,379.99,10/16/19 22:12,"301 Meadow St, Boston, MA 02215" +274163,AAA Batteries (4-pack),1,2.99,10/09/19 10:41,"844 Hickory St, Atlanta, GA 30301" +274164,Flatscreen TV,1,300,10/22/19 14:32,"924 Dogwood St, New York City, NY 10001" +274165,Flatscreen TV,1,300,10/22/19 04:19,"151 Spruce St, New York City, NY 10001" +274166,USB-C Charging Cable,1,11.95,10/12/19 20:16,"186 Wilson St, New York City, NY 10001" +274167,Wired Headphones,1,11.99,10/07/19 15:58,"805 River St, Austin, TX 73301" +274168,Flatscreen TV,1,300,10/09/19 13:25,"216 12th St, Boston, MA 02215" +274169,AAA Batteries (4-pack),2,2.99,10/21/19 11:10,"804 14th St, Los Angeles, CA 90001" +274170,Apple Airpods Headphones,1,150,10/02/19 20:39,"241 6th St, Los Angeles, CA 90001" +274171,Lightning Charging Cable,1,14.95,10/24/19 14:22,"466 14th St, Portland, OR 97035" +274172,Wired Headphones,1,11.99,10/07/19 01:15,"911 Hickory St, Los Angeles, CA 90001" +274173,20in Monitor,1,109.99,10/23/19 11:14,"434 Chestnut St, San Francisco, CA 94016" +274174,Google Phone,1,600,10/03/19 13:21,"881 9th St, Boston, MA 02215" +274175,Apple Airpods Headphones,1,150,10/13/19 17:51,"663 Dogwood St, Portland, OR 97035" +274176,Wired Headphones,1,11.99,10/20/19 07:24,"270 Elm St, Los Angeles, CA 90001" +274177,AAA Batteries (4-pack),1,2.99,10/27/19 13:56,"863 Spruce St, New York City, NY 10001" +274178,Wired Headphones,1,11.99,10/15/19 00:27,"60 Madison St, New York City, NY 10001" +274179,AAA Batteries (4-pack),2,2.99,10/23/19 01:12,"152 Hill St, Seattle, WA 98101" +274180,AA Batteries (4-pack),1,3.84,10/19/19 10:25,"185 Washington St, New York City, NY 10001" +274181,AA Batteries (4-pack),1,3.84,10/10/19 22:38,"190 5th St, Dallas, TX 75001" +274182,AAA Batteries (4-pack),2,2.99,10/12/19 16:45,"183 5th St, San Francisco, CA 94016" +274183,USB-C Charging Cable,1,11.95,10/31/19 14:33,"248 Main St, New York City, NY 10001" +274184,AA Batteries (4-pack),1,3.84,10/31/19 09:57,"17 Johnson St, Dallas, TX 75001" +274185,AAA Batteries (4-pack),1,2.99,10/25/19 09:03,"68 13th St, Los Angeles, CA 90001" +274186,27in FHD Monitor,1,149.99,10/29/19 09:41,"349 Meadow St, Seattle, WA 98101" +274187,Bose SoundSport Headphones,1,99.99,10/03/19 16:16,"913 Lincoln St, Dallas, TX 75001" +274188,Apple Airpods Headphones,1,150,10/15/19 21:49,"386 Johnson St, San Francisco, CA 94016" +274189,AAA Batteries (4-pack),1,2.99,10/05/19 21:45,"412 4th St, New York City, NY 10001" +274190,20in Monitor,1,109.99,10/18/19 18:17,"745 14th St, San Francisco, CA 94016" +,,,,, +274191,Wired Headphones,2,11.99,10/28/19 22:06,"395 Chestnut St, New York City, NY 10001" +274192,27in 4K Gaming Monitor,1,389.99,10/22/19 14:17,"690 Church St, New York City, NY 10001" +274193,AAA Batteries (4-pack),2,2.99,10/06/19 07:33,"568 Willow St, Boston, MA 02215" +274194,AAA Batteries (4-pack),1,2.99,10/04/19 18:43,"539 Highland St, Portland, OR 97035" +274195,AA Batteries (4-pack),1,3.84,10/06/19 11:14,"166 Hickory St, Los Angeles, CA 90001" +274196,USB-C Charging Cable,1,11.95,10/21/19 17:11,"589 South St, Austin, TX 73301" +274197,AAA Batteries (4-pack),1,2.99,10/14/19 18:00,"202 Meadow St, New York City, NY 10001" +274198,20in Monitor,1,109.99,10/09/19 19:45,"96 Center St, Boston, MA 02215" +274199,USB-C Charging Cable,1,11.95,10/08/19 18:20,"721 Hickory St, San Francisco, CA 94016" +274200,Flatscreen TV,1,300,10/11/19 14:53,"432 Cedar St, Los Angeles, CA 90001" +274201,Apple Airpods Headphones,1,150,10/29/19 19:59,"443 Johnson St, San Francisco, CA 94016" +274202,27in FHD Monitor,1,149.99,10/28/19 09:51,"404 Cherry St, Dallas, TX 75001" +274203,AAA Batteries (4-pack),1,2.99,10/17/19 20:02,"666 River St, San Francisco, CA 94016" +274204,Apple Airpods Headphones,1,150,10/31/19 03:34,"758 Maple St, San Francisco, CA 94016" +274205,Bose SoundSport Headphones,1,99.99,10/31/19 18:13,"470 10th St, San Francisco, CA 94016" +274206,ThinkPad Laptop,1,999.99,10/16/19 18:07,"642 Lincoln St, Boston, MA 02215" +274207,Apple Airpods Headphones,1,150,10/03/19 16:15,"569 Forest St, Boston, MA 02215" +274208,Bose SoundSport Headphones,1,99.99,10/26/19 09:58,"738 10th St, Los Angeles, CA 90001" +274209,USB-C Charging Cable,1,11.95,10/18/19 02:01,"352 Lincoln St, Atlanta, GA 30301" +274210,USB-C Charging Cable,1,11.95,10/28/19 11:35,"682 Wilson St, Seattle, WA 98101" +274211,27in FHD Monitor,1,149.99,10/11/19 17:02,"572 Madison St, San Francisco, CA 94016" +274212,27in 4K Gaming Monitor,1,389.99,10/13/19 19:09,"995 Walnut St, Portland, OR 97035" +274213,ThinkPad Laptop,1,999.99,10/18/19 09:45,"511 9th St, Seattle, WA 98101" +274213,Wired Headphones,2,11.99,10/18/19 09:45,"511 9th St, Seattle, WA 98101" +274214,Apple Airpods Headphones,1,150,10/13/19 13:59,"959 West St, New York City, NY 10001" +274215,USB-C Charging Cable,1,11.95,10/02/19 11:38,"783 West St, Los Angeles, CA 90001" +274216,Apple Airpods Headphones,1,150,10/06/19 13:44,"183 2nd St, San Francisco, CA 94016" +274217,20in Monitor,1,109.99,10/26/19 16:46,"324 Wilson St, Los Angeles, CA 90001" +274218,Lightning Charging Cable,1,14.95,10/08/19 15:38,"333 Adams St, Atlanta, GA 30301" +274219,USB-C Charging Cable,1,11.95,10/27/19 07:33,"363 Cedar St, Los Angeles, CA 90001" +274220,27in FHD Monitor,1,149.99,10/04/19 16:53,"420 8th St, New York City, NY 10001" +274221,Wired Headphones,1,11.99,10/26/19 01:35,"745 Johnson St, Dallas, TX 75001" +274222,Google Phone,1,600,10/17/19 15:52,"432 Wilson St, Boston, MA 02215" +274222,Wired Headphones,1,11.99,10/17/19 15:52,"432 Wilson St, Boston, MA 02215" +,,,,, +274223,20in Monitor,1,109.99,10/26/19 15:32,"923 Johnson St, Atlanta, GA 30301" +274224,AAA Batteries (4-pack),1,2.99,10/14/19 16:07,"949 Madison St, Atlanta, GA 30301" +274225,USB-C Charging Cable,1,11.95,10/08/19 12:52,"275 Jackson St, New York City, NY 10001" +274226,Bose SoundSport Headphones,1,99.99,10/04/19 21:48,"93 2nd St, Boston, MA 02215" +274227,AA Batteries (4-pack),1,3.84,10/23/19 07:53,"766 11th St, Los Angeles, CA 90001" +274228,27in FHD Monitor,1,149.99,10/10/19 15:01,"749 Johnson St, Seattle, WA 98101" +274229,Lightning Charging Cable,3,14.95,10/14/19 10:06,"577 6th St, San Francisco, CA 94016" +274230,iPhone,1,700,10/19/19 14:09,"683 11th St, San Francisco, CA 94016" +274231,iPhone,1,700,10/03/19 21:05,"841 Main St, Boston, MA 02215" +274232,Lightning Charging Cable,1,14.95,10/09/19 10:54,"720 Willow St, Dallas, TX 75001" +274233,27in 4K Gaming Monitor,1,389.99,10/16/19 09:07,"906 Main St, San Francisco, CA 94016" +274234,Lightning Charging Cable,1,14.95,10/14/19 16:34,"588 West St, Los Angeles, CA 90001" +274235,Lightning Charging Cable,1,14.95,10/15/19 10:01,"913 Washington St, Seattle, WA 98101" +274236,AA Batteries (4-pack),1,3.84,10/05/19 22:15,"259 Sunset St, New York City, NY 10001" +274237,iPhone,1,700,10/27/19 21:02,"187 Jackson St, Atlanta, GA 30301" +274238,USB-C Charging Cable,1,11.95,10/26/19 12:55,"335 Cherry St, Boston, MA 02215" +274239,Lightning Charging Cable,1,14.95,10/12/19 15:04,"355 Lake St, San Francisco, CA 94016" +274240,27in 4K Gaming Monitor,1,389.99,10/10/19 22:09,"546 Sunset St, Los Angeles, CA 90001" +274241,Apple Airpods Headphones,1,150,10/08/19 22:51,"589 1st St, San Francisco, CA 94016" +274242,Macbook Pro Laptop,1,1700,10/14/19 19:29,"362 Center St, New York City, NY 10001" +274243,AAA Batteries (4-pack),1,2.99,10/31/19 12:54,"408 Church St, Boston, MA 02215" +274244,Lightning Charging Cable,1,14.95,10/16/19 15:03,"513 Hill St, Seattle, WA 98101" +274245,Wired Headphones,1,11.99,10/12/19 13:41,"575 Center St, Dallas, TX 75001" +274246,Wired Headphones,1,11.99,10/25/19 22:49,"803 Center St, San Francisco, CA 94016" +274247,USB-C Charging Cable,1,11.95,10/12/19 19:35,"753 10th St, San Francisco, CA 94016" +274248,AA Batteries (4-pack),2,3.84,10/12/19 18:10,"693 Washington St, San Francisco, CA 94016" +274249,USB-C Charging Cable,1,11.95,10/10/19 20:43,"579 Cedar St, Los Angeles, CA 90001" +274250,27in 4K Gaming Monitor,1,389.99,10/28/19 11:52,"980 West St, San Francisco, CA 94016" +274251,Vareebadd Phone,1,400,10/24/19 09:12,"265 Meadow St, Dallas, TX 75001" +274252,AAA Batteries (4-pack),1,2.99,10/30/19 17:23,"970 Madison St, Portland, OR 97035" +274253,Vareebadd Phone,1,400,10/27/19 19:23,"876 Spruce St, Atlanta, GA 30301" +274254,AA Batteries (4-pack),1,3.84,10/08/19 10:09,"24 Lake St, Los Angeles, CA 90001" +274255,Lightning Charging Cable,2,14.95,10/25/19 13:16,"113 Willow St, New York City, NY 10001" +274256,Bose SoundSport Headphones,1,99.99,10/25/19 12:21,"622 Cedar St, Los Angeles, CA 90001" +274257,Apple Airpods Headphones,1,150,10/15/19 12:38,"164 Maple St, Los Angeles, CA 90001" +274258,AAA Batteries (4-pack),3,2.99,10/30/19 09:59,"175 Wilson St, Los Angeles, CA 90001" +274259,USB-C Charging Cable,1,11.95,10/13/19 09:26,"715 12th St, Los Angeles, CA 90001" +274260,Flatscreen TV,1,300,10/07/19 18:54,"465 Lake St, Seattle, WA 98101" +274261,Wired Headphones,1,11.99,10/04/19 18:18,"593 South St, San Francisco, CA 94016" +274262,Bose SoundSport Headphones,1,99.99,10/17/19 20:33,"312 9th St, Los Angeles, CA 90001" +274263,Bose SoundSport Headphones,1,99.99,10/07/19 12:50,"597 Johnson St, Los Angeles, CA 90001" +274264,27in FHD Monitor,1,149.99,10/07/19 07:27,"804 Washington St, Portland, OR 97035" +274265,Bose SoundSport Headphones,1,99.99,10/05/19 11:43,"523 Adams St, San Francisco, CA 94016" +274266,Wired Headphones,1,11.99,10/01/19 10:07,"887 Highland St, San Francisco, CA 94016" +274267,AA Batteries (4-pack),1,3.84,10/21/19 23:14,"596 6th St, Boston, MA 02215" +274268,AA Batteries (4-pack),1,3.84,10/21/19 14:12,"948 Ridge St, Seattle, WA 98101" +274269,USB-C Charging Cable,2,11.95,10/04/19 12:15,"896 Lake St, San Francisco, CA 94016" +274270,Lightning Charging Cable,1,14.95,10/02/19 23:30,"624 8th St, Dallas, TX 75001" +274271,AAA Batteries (4-pack),3,2.99,10/04/19 15:59,"567 Adams St, Dallas, TX 75001" +274272,USB-C Charging Cable,1,11.95,10/06/19 15:05,"266 Forest St, Atlanta, GA 30301" +274273,Lightning Charging Cable,1,14.95,10/30/19 21:45,"403 Ridge St, Boston, MA 02215" +274274,ThinkPad Laptop,1,999.99,10/17/19 14:45,"889 7th St, Los Angeles, CA 90001" +274275,34in Ultrawide Monitor,1,379.99,10/21/19 14:05,"516 Highland St, San Francisco, CA 94016" +274276,USB-C Charging Cable,1,11.95,10/03/19 16:02,"177 Forest St, Los Angeles, CA 90001" +274277,iPhone,1,700,10/12/19 11:54,"434 4th St, San Francisco, CA 94016" +274278,AA Batteries (4-pack),1,3.84,10/16/19 18:51,"282 Hill St, San Francisco, CA 94016" +274279,34in Ultrawide Monitor,1,379.99,10/27/19 11:34,"513 Johnson St, New York City, NY 10001" +274280,27in 4K Gaming Monitor,1,389.99,10/20/19 02:30,"996 Sunset St, New York City, NY 10001" +274281,AAA Batteries (4-pack),1,2.99,10/31/19 15:22,"980 5th St, Atlanta, GA 30301" +274282,Google Phone,1,600,10/02/19 17:39,"470 Highland St, Austin, TX 73301" +274283,USB-C Charging Cable,1,11.95,10/07/19 18:41,"782 Elm St, San Francisco, CA 94016" +274284,AA Batteries (4-pack),1,3.84,10/06/19 00:34,"158 Meadow St, Portland, OR 97035" +274285,Google Phone,1,600,10/01/19 11:02,"820 Johnson St, Los Angeles, CA 90001" +274286,AAA Batteries (4-pack),2,2.99,10/28/19 09:39,"147 West St, San Francisco, CA 94016" +274287,Lightning Charging Cable,1,14.95,10/06/19 03:35,"726 14th St, San Francisco, CA 94016" +274288,Flatscreen TV,1,300,10/13/19 22:54,"6 6th St, San Francisco, CA 94016" +274288,LG Washing Machine,1,600.0,10/13/19 22:54,"6 6th St, San Francisco, CA 94016" +274289,USB-C Charging Cable,1,11.95,10/22/19 15:44,"175 13th St, Portland, ME 04101" +274290,iPhone,1,700,10/25/19 13:23,"903 Elm St, Austin, TX 73301" +274291,Google Phone,1,600,10/16/19 14:22,"503 Ridge St, Portland, OR 97035" +274292,AAA Batteries (4-pack),3,2.99,10/25/19 16:16,"265 Cedar St, Atlanta, GA 30301" +274293,AA Batteries (4-pack),1,3.84,10/01/19 12:56,"626 Forest St, Atlanta, GA 30301" +274294,Lightning Charging Cable,1,14.95,10/19/19 18:13,"263 Hill St, New York City, NY 10001" +274295,ThinkPad Laptop,1,999.99,10/24/19 10:04,"404 Lake St, Austin, TX 73301" +274296,Google Phone,1,600,10/04/19 09:51,"710 Main St, Los Angeles, CA 90001" +274296,USB-C Charging Cable,1,11.95,10/04/19 09:51,"710 Main St, Los Angeles, CA 90001" +274297,AA Batteries (4-pack),1,3.84,10/30/19 16:03,"264 Pine St, Atlanta, GA 30301" +274298,Lightning Charging Cable,1,14.95,10/17/19 16:44,"923 8th St, New York City, NY 10001" +274299,Apple Airpods Headphones,1,150,10/12/19 04:09,"271 Walnut St, New York City, NY 10001" +274300,Google Phone,1,600,10/21/19 15:52,"261 West St, San Francisco, CA 94016" +274300,Wired Headphones,1,11.99,10/21/19 15:52,"261 West St, San Francisco, CA 94016" +274301,Macbook Pro Laptop,1,1700,10/10/19 16:30,"979 Highland St, Dallas, TX 75001" +274302,Wired Headphones,1,11.99,10/03/19 12:22,"196 12th St, Dallas, TX 75001" +274303,Wired Headphones,1,11.99,10/10/19 04:00,"898 14th St, Dallas, TX 75001" +274304,Google Phone,1,600,10/24/19 17:22,"134 Meadow St, Boston, MA 02215" +274305,Lightning Charging Cable,1,14.95,10/01/19 13:38,"178 Jefferson St, San Francisco, CA 94016" +274306,Vareebadd Phone,1,400,10/23/19 18:36,"110 Park St, New York City, NY 10001" +274307,27in 4K Gaming Monitor,1,389.99,10/02/19 15:31,"769 14th St, San Francisco, CA 94016" +274308,Bose SoundSport Headphones,1,99.99,10/10/19 15:28,"225 Wilson St, Dallas, TX 75001" +274309,USB-C Charging Cable,2,11.95,10/06/19 11:41,"911 Forest St, San Francisco, CA 94016" +274310,Macbook Pro Laptop,1,1700,10/05/19 12:37,"395 Washington St, Austin, TX 73301" +274311,Flatscreen TV,1,300,10/09/19 11:58,"784 7th St, Los Angeles, CA 90001" +274312,Lightning Charging Cable,1,14.95,10/04/19 10:07,"354 Cedar St, Boston, MA 02215" +274313,AA Batteries (4-pack),2,3.84,10/22/19 16:04,"601 River St, New York City, NY 10001" +274314,USB-C Charging Cable,1,11.95,10/25/19 18:59,"878 Walnut St, Atlanta, GA 30301" +274315,Google Phone,1,600,10/29/19 11:01,"465 4th St, Dallas, TX 75001" +274316,AA Batteries (4-pack),2,3.84,10/09/19 22:31,"235 Spruce St, Atlanta, GA 30301" +274317,27in FHD Monitor,1,149.99,10/05/19 15:05,"741 Ridge St, Austin, TX 73301" +274318,AA Batteries (4-pack),1,3.84,10/07/19 06:50,"880 Madison St, New York City, NY 10001" +274319,AA Batteries (4-pack),1,3.84,10/02/19 00:58,"125 Jefferson St, Los Angeles, CA 90001" +274319,Flatscreen TV,1,300,10/02/19 00:58,"125 Jefferson St, Los Angeles, CA 90001" +274320,ThinkPad Laptop,1,999.99,10/21/19 11:28,"620 Park St, San Francisco, CA 94016" +274321,Wired Headphones,1,11.99,10/29/19 14:07,"303 Johnson St, Los Angeles, CA 90001" +274322,AA Batteries (4-pack),1,3.84,10/04/19 13:51,"665 Madison St, Portland, ME 04101" +274323,USB-C Charging Cable,1,11.95,10/22/19 17:24,"808 10th St, Atlanta, GA 30301" +274324,27in 4K Gaming Monitor,1,389.99,10/29/19 12:53,"778 11th St, Dallas, TX 75001" +274325,Wired Headphones,1,11.99,10/13/19 20:44,"995 6th St, New York City, NY 10001" +274326,USB-C Charging Cable,1,11.95,10/09/19 11:23,"68 Lake St, Seattle, WA 98101" +274327,34in Ultrawide Monitor,1,379.99,10/29/19 17:14,"223 Church St, Boston, MA 02215" +274328,AA Batteries (4-pack),1,3.84,10/25/19 13:10,"350 Wilson St, New York City, NY 10001" +274329,Apple Airpods Headphones,1,150,10/29/19 00:19,"714 11th St, San Francisco, CA 94016" +274330,Apple Airpods Headphones,1,150,10/18/19 05:40,"837 Cherry St, Portland, OR 97035" +274331,AA Batteries (4-pack),1,3.84,10/17/19 21:46,"232 Lincoln St, San Francisco, CA 94016" +274332,USB-C Charging Cable,1,11.95,10/08/19 19:39,"413 Pine St, Atlanta, GA 30301" +274333,USB-C Charging Cable,1,11.95,10/17/19 23:58,"218 4th St, Dallas, TX 75001" +274334,AA Batteries (4-pack),1,3.84,10/09/19 19:38,"681 Dogwood St, Los Angeles, CA 90001" +274335,Wired Headphones,1,11.99,10/29/19 11:43,"35 11th St, New York City, NY 10001" +274336,Apple Airpods Headphones,1,150,10/04/19 23:18,"674 Johnson St, New York City, NY 10001" +274337,27in FHD Monitor,1,149.99,10/29/19 20:47,"434 Cedar St, Los Angeles, CA 90001" +274338,AA Batteries (4-pack),1,3.84,10/23/19 22:06,"630 Wilson St, Los Angeles, CA 90001" +274339,Apple Airpods Headphones,1,150,10/30/19 22:20,"916 Wilson St, Austin, TX 73301" +274340,AAA Batteries (4-pack),1,2.99,10/13/19 18:32,"890 1st St, San Francisco, CA 94016" +274341,Lightning Charging Cable,1,14.95,10/04/19 23:10,"337 Dogwood St, San Francisco, CA 94016" +274342,27in FHD Monitor,1,149.99,10/04/19 11:06,"924 Main St, New York City, NY 10001" +274343,Lightning Charging Cable,1,14.95,10/05/19 15:46,"406 Highland St, Portland, OR 97035" +274344,Lightning Charging Cable,2,14.95,10/11/19 10:05,"752 Meadow St, New York City, NY 10001" +274345,34in Ultrawide Monitor,1,379.99,10/04/19 07:26,"783 1st St, San Francisco, CA 94016" +274346,Apple Airpods Headphones,1,150,10/24/19 18:39,"385 5th St, New York City, NY 10001" +274347,Lightning Charging Cable,1,14.95,10/29/19 12:40,"4 4th St, San Francisco, CA 94016" +274348,AA Batteries (4-pack),3,3.84,10/28/19 18:48,"96 Willow St, Los Angeles, CA 90001" +274349,Apple Airpods Headphones,1,150,10/08/19 17:51,"256 9th St, Portland, OR 97035" +274350,Wired Headphones,1,11.99,10/23/19 13:46,"590 9th St, New York City, NY 10001" +274351,20in Monitor,1,109.99,10/15/19 17:38,"219 7th St, Los Angeles, CA 90001" +274352,AAA Batteries (4-pack),1,2.99,10/05/19 19:51,"446 Church St, New York City, NY 10001" +274353,AAA Batteries (4-pack),2,2.99,10/22/19 13:48,"778 Hill St, Los Angeles, CA 90001" +274354,Apple Airpods Headphones,1,150,10/04/19 21:24,"886 14th St, Los Angeles, CA 90001" +274355,AA Batteries (4-pack),1,3.84,10/12/19 12:16,"432 Pine St, Seattle, WA 98101" +274356,AAA Batteries (4-pack),1,2.99,10/22/19 21:32,"766 North St, Los Angeles, CA 90001" +274357,Vareebadd Phone,1,400,10/13/19 12:05,"36 Spruce St, San Francisco, CA 94016" +274358,AA Batteries (4-pack),1,3.84,10/01/19 18:08,"619 Pine St, New York City, NY 10001" +274359,Lightning Charging Cable,1,14.95,10/12/19 10:32,"922 Hill St, Los Angeles, CA 90001" +274360,Bose SoundSport Headphones,1,99.99,10/20/19 21:36,"855 4th St, Atlanta, GA 30301" +274361,AA Batteries (4-pack),3,3.84,10/27/19 14:19,"549 11th St, Los Angeles, CA 90001" +274362,Wired Headphones,1,11.99,10/29/19 13:20,"200 5th St, San Francisco, CA 94016" +274363,AA Batteries (4-pack),1,3.84,10/14/19 17:11,"9 5th St, Los Angeles, CA 90001" +274364,Bose SoundSport Headphones,1,99.99,10/15/19 21:18,"148 Maple St, Boston, MA 02215" +274365,AA Batteries (4-pack),3,3.84,10/26/19 07:43,"380 12th St, Boston, MA 02215" +274366,AA Batteries (4-pack),2,3.84,10/26/19 11:47,"232 Dogwood St, New York City, NY 10001" +274366,AA Batteries (4-pack),4,3.84,10/26/19 11:47,"232 Dogwood St, New York City, NY 10001" +274367,Wired Headphones,1,11.99,10/20/19 20:55,"466 8th St, New York City, NY 10001" +274368,ThinkPad Laptop,1,999.99,10/10/19 10:10,"890 Wilson St, San Francisco, CA 94016" +274369,27in 4K Gaming Monitor,1,389.99,10/31/19 16:18,"335 11th St, Seattle, WA 98101" +274370,AA Batteries (4-pack),1,3.84,10/09/19 17:03,"60 6th St, Los Angeles, CA 90001" +274371,Lightning Charging Cable,1,14.95,10/08/19 12:57,"169 Wilson St, Atlanta, GA 30301" +274372,34in Ultrawide Monitor,1,379.99,10/18/19 18:48,"461 8th St, San Francisco, CA 94016" +274373,Flatscreen TV,1,300,10/05/19 14:55,"629 Lake St, Portland, OR 97035" +274374,27in 4K Gaming Monitor,1,389.99,10/05/19 16:34,"524 Jackson St, Seattle, WA 98101" +274375,Lightning Charging Cable,1,14.95,10/04/19 20:50,"264 Meadow St, Portland, OR 97035" +274376,AAA Batteries (4-pack),1,2.99,10/20/19 14:25,"496 8th St, San Francisco, CA 94016" +274377,Bose SoundSport Headphones,1,99.99,10/26/19 13:19,"585 8th St, San Francisco, CA 94016" +274378,Macbook Pro Laptop,1,1700,10/16/19 19:36,"508 14th St, San Francisco, CA 94016" +274379,USB-C Charging Cable,1,11.95,10/14/19 12:42,"287 West St, Portland, OR 97035" +274380,27in 4K Gaming Monitor,1,389.99,10/07/19 12:01,"808 Dogwood St, Boston, MA 02215" +274381,Flatscreen TV,1,300,10/20/19 17:32,"344 Adams St, Los Angeles, CA 90001" +274382,iPhone,1,700,10/04/19 07:31,"524 Lakeview St, Boston, MA 02215" +274382,Lightning Charging Cable,1,14.95,10/04/19 07:31,"524 Lakeview St, Boston, MA 02215" +274383,Lightning Charging Cable,1,14.95,10/06/19 19:10,"699 Hill St, San Francisco, CA 94016" +274384,USB-C Charging Cable,1,11.95,10/15/19 23:57,"249 Center St, Boston, MA 02215" +274385,Lightning Charging Cable,1,14.95,10/17/19 22:49,"427 Hickory St, Boston, MA 02215" +274386,AA Batteries (4-pack),2,3.84,10/29/19 13:56,"39 14th St, Los Angeles, CA 90001" +274387,20in Monitor,1,109.99,10/19/19 16:27,"652 South St, San Francisco, CA 94016" +274388,Vareebadd Phone,1,400,10/23/19 14:20,"42 Lincoln St, New York City, NY 10001" +274388,USB-C Charging Cable,1,11.95,10/23/19 14:20,"42 Lincoln St, New York City, NY 10001" +274389,ThinkPad Laptop,1,999.99,10/17/19 23:53,"880 Cedar St, San Francisco, CA 94016" +274390,AAA Batteries (4-pack),1,2.99,10/14/19 14:00,"610 4th St, Seattle, WA 98101" +274391,AA Batteries (4-pack),1,3.84,10/21/19 10:57,"827 Sunset St, New York City, NY 10001" +274392,34in Ultrawide Monitor,1,379.99,10/20/19 16:50,"53 River St, Seattle, WA 98101" +274393,Apple Airpods Headphones,1,150,10/05/19 15:38,"418 Jackson St, San Francisco, CA 94016" +274394,Flatscreen TV,1,300,10/21/19 11:25,"836 Jackson St, New York City, NY 10001" +274395,AA Batteries (4-pack),1,3.84,10/28/19 14:15,"231 12th St, San Francisco, CA 94016" +274396,20in Monitor,1,109.99,10/08/19 13:07,"891 7th St, Dallas, TX 75001" +274397,Wired Headphones,1,11.99,10/07/19 18:29,"488 10th St, San Francisco, CA 94016" +274398,iPhone,1,700,10/21/19 14:32,"832 10th St, New York City, NY 10001" +274399,Lightning Charging Cable,1,14.95,10/23/19 12:00,"672 Adams St, Atlanta, GA 30301" +274400,Lightning Charging Cable,1,14.95,10/10/19 23:37,"297 Main St, New York City, NY 10001" +274401,AA Batteries (4-pack),1,3.84,10/06/19 19:06,"40 4th St, San Francisco, CA 94016" +274402,Wired Headphones,1,11.99,10/27/19 11:43,"237 4th St, Los Angeles, CA 90001" +274403,AAA Batteries (4-pack),1,2.99,10/30/19 17:57,"201 Wilson St, Dallas, TX 75001" +274404,34in Ultrawide Monitor,1,379.99,10/31/19 00:42,"607 7th St, Los Angeles, CA 90001" +274405,Lightning Charging Cable,1,14.95,10/18/19 15:14,"908 Sunset St, Los Angeles, CA 90001" +274406,Wired Headphones,1,11.99,10/08/19 12:04,"262 Main St, New York City, NY 10001" +274407,Lightning Charging Cable,1,14.95,10/14/19 18:35,"751 2nd St, New York City, NY 10001" +274408,Google Phone,1,600,10/28/19 17:31,"692 Maple St, Seattle, WA 98101" +274409,Macbook Pro Laptop,1,1700,10/30/19 14:35,"592 10th St, New York City, NY 10001" +274410,Wired Headphones,1,11.99,10/16/19 13:57,"445 Madison St, San Francisco, CA 94016" +274411,Bose SoundSport Headphones,1,99.99,10/31/19 12:13,"190 4th St, Dallas, TX 75001" +274412,AAA Batteries (4-pack),1,2.99,10/23/19 18:17,"25 6th St, San Francisco, CA 94016" +274413,Flatscreen TV,1,300,10/20/19 19:54,"870 Cedar St, Boston, MA 02215" +274414,AAA Batteries (4-pack),3,2.99,10/04/19 14:43,"302 Cherry St, New York City, NY 10001" +274415,Flatscreen TV,1,300,10/20/19 22:44,"283 Jackson St, Seattle, WA 98101" +274416,USB-C Charging Cable,1,11.95,10/30/19 12:52,"493 Dogwood St, Los Angeles, CA 90001" +274417,Bose SoundSport Headphones,1,99.99,10/27/19 18:37,"591 Chestnut St, New York City, NY 10001" +274418,Vareebadd Phone,1,400,10/19/19 12:16,"429 Adams St, New York City, NY 10001" +274419,Google Phone,1,600,10/21/19 13:49,"673 Park St, New York City, NY 10001" +274420,Apple Airpods Headphones,1,150,10/10/19 15:55,"293 14th St, Austin, TX 73301" +274421,AAA Batteries (4-pack),4,2.99,10/28/19 20:46,"69 Lakeview St, Portland, OR 97035" +274422,AAA Batteries (4-pack),1,2.99,10/01/19 15:05,"821 Pine St, Los Angeles, CA 90001" +274423,AA Batteries (4-pack),1,3.84,10/08/19 20:39,"964 4th St, San Francisco, CA 94016" +274424,Lightning Charging Cable,1,14.95,10/07/19 19:34,"311 Lake St, Los Angeles, CA 90001" +274425,ThinkPad Laptop,1,999.99,10/19/19 18:22,"686 Lakeview St, San Francisco, CA 94016" +274426,27in FHD Monitor,1,149.99,10/02/19 17:32,"835 Maple St, Seattle, WA 98101" +274427,Apple Airpods Headphones,1,150,10/06/19 14:46,"924 Spruce St, San Francisco, CA 94016" +274428,AAA Batteries (4-pack),2,2.99,10/13/19 12:54,"29 Church St, Atlanta, GA 30301" +274429,Apple Airpods Headphones,1,150,10/24/19 00:17,"338 Washington St, Seattle, WA 98101" +274430,27in FHD Monitor,1,149.99,10/10/19 16:28,"174 9th St, Boston, MA 02215" +274431,AA Batteries (4-pack),1,3.84,10/03/19 18:23,"835 14th St, Los Angeles, CA 90001" +274432,Apple Airpods Headphones,1,150,10/26/19 12:55,"338 Hill St, San Francisco, CA 94016" +274433,AA Batteries (4-pack),2,3.84,10/23/19 12:11,"571 Walnut St, Atlanta, GA 30301" +274434,AA Batteries (4-pack),3,3.84,10/31/19 19:12,"499 13th St, New York City, NY 10001" +274435,Lightning Charging Cable,1,14.95,10/10/19 11:18,"816 Lincoln St, San Francisco, CA 94016" +274436,AA Batteries (4-pack),2,3.84,10/07/19 13:26,"391 Forest St, Dallas, TX 75001" +274437,AA Batteries (4-pack),1,3.84,10/23/19 10:29,"694 Park St, San Francisco, CA 94016" +274438,AAA Batteries (4-pack),1,2.99,10/08/19 13:26,"791 Main St, Boston, MA 02215" +274439,Bose SoundSport Headphones,1,99.99,10/05/19 13:14,"650 Walnut St, Dallas, TX 75001" +274440,Wired Headphones,1,11.99,10/30/19 20:46,"987 South St, Seattle, WA 98101" +274441,AAA Batteries (4-pack),2,2.99,10/06/19 08:55,"374 14th St, Atlanta, GA 30301" +274442,27in FHD Monitor,1,149.99,10/30/19 12:31,"631 6th St, Atlanta, GA 30301" +274443,AAA Batteries (4-pack),3,2.99,10/17/19 16:31,"108 Highland St, San Francisco, CA 94016" +274444,AAA Batteries (4-pack),1,2.99,10/27/19 00:03,"698 8th St, Seattle, WA 98101" +274445,27in 4K Gaming Monitor,1,389.99,10/02/19 07:26,"43 Center St, Atlanta, GA 30301" +274446,27in FHD Monitor,1,149.99,10/16/19 13:02,"892 Meadow St, Los Angeles, CA 90001" +274447,27in 4K Gaming Monitor,1,389.99,10/09/19 11:56,"597 4th St, Atlanta, GA 30301" +274448,27in 4K Gaming Monitor,1,389.99,10/12/19 20:17,"994 Willow St, Austin, TX 73301" +274449,AAA Batteries (4-pack),2,2.99,10/10/19 08:15,"487 Cedar St, New York City, NY 10001" +274450,AAA Batteries (4-pack),1,2.99,10/26/19 17:02,"195 Willow St, Atlanta, GA 30301" +274451,AAA Batteries (4-pack),1,2.99,10/12/19 06:55,"211 13th St, Seattle, WA 98101" +274452,Bose SoundSport Headphones,1,99.99,10/15/19 09:24,"789 Highland St, New York City, NY 10001" +274453,USB-C Charging Cable,1,11.95,10/28/19 12:58,"767 14th St, San Francisco, CA 94016" +274454,Macbook Pro Laptop,1,1700,10/22/19 23:41,"150 Center St, San Francisco, CA 94016" +274455,Bose SoundSport Headphones,1,99.99,10/28/19 09:58,"483 Chestnut St, San Francisco, CA 94016" +274456,Apple Airpods Headphones,1,150,10/04/19 21:19,"983 Elm St, Seattle, WA 98101" +274457,Macbook Pro Laptop,1,1700,10/01/19 13:55,"548 Maple St, New York City, NY 10001" +274458,27in 4K Gaming Monitor,1,389.99,10/31/19 11:37,"541 6th St, New York City, NY 10001" +274459,27in 4K Gaming Monitor,1,389.99,10/24/19 12:25,"485 Main St, Seattle, WA 98101" +274460,Bose SoundSport Headphones,1,99.99,10/04/19 17:51,"866 Cedar St, Austin, TX 73301" +274461,Wired Headphones,1,11.99,10/09/19 10:25,"819 12th St, Dallas, TX 75001" +274462,27in FHD Monitor,1,149.99,10/23/19 09:27,"221 Willow St, Los Angeles, CA 90001" +274463,ThinkPad Laptop,1,999.99,10/14/19 17:45,"894 Pine St, Los Angeles, CA 90001" +274464,27in FHD Monitor,1,149.99,10/31/19 10:22,"812 Chestnut St, Atlanta, GA 30301" +274465,AA Batteries (4-pack),1,3.84,10/09/19 15:14,"859 West St, Atlanta, GA 30301" +274466,Bose SoundSport Headphones,1,99.99,10/09/19 20:20,"753 Center St, Austin, TX 73301" +274467,AAA Batteries (4-pack),1,2.99,10/26/19 13:16,"350 Highland St, Portland, OR 97035" +274468,Lightning Charging Cable,1,14.95,10/25/19 12:56,"602 8th St, Dallas, TX 75001" +274469,AAA Batteries (4-pack),1,2.99,10/03/19 22:58,"462 1st St, San Francisco, CA 94016" +274470,Wired Headphones,1,11.99,10/09/19 13:19,"883 11th St, New York City, NY 10001" +274471,Wired Headphones,1,11.99,10/31/19 11:07,"344 Lincoln St, Portland, ME 04101" +274472,AA Batteries (4-pack),1,3.84,10/01/19 10:09,"483 Walnut St, Los Angeles, CA 90001" +274473,Lightning Charging Cable,1,14.95,10/29/19 14:27,"459 Johnson St, Dallas, TX 75001" +274474,AAA Batteries (4-pack),2,2.99,10/13/19 18:56,"397 Lakeview St, Dallas, TX 75001" +274475,Bose SoundSport Headphones,1,99.99,10/20/19 10:03,"89 Jackson St, Boston, MA 02215" +274476,AA Batteries (4-pack),1,3.84,10/29/19 01:34,"473 Main St, San Francisco, CA 94016" +274477,AAA Batteries (4-pack),1,2.99,10/17/19 20:42,"630 Washington St, Los Angeles, CA 90001" +274478,AA Batteries (4-pack),1,3.84,10/25/19 11:36,"765 North St, Austin, TX 73301" +274479,Apple Airpods Headphones,1,150,10/09/19 15:22,"438 Jackson St, Los Angeles, CA 90001" +274480,AA Batteries (4-pack),1,3.84,10/25/19 16:39,"137 North St, San Francisco, CA 94016" +274481,LG Dryer,1,600.0,10/28/19 19:55,"566 Wilson St, New York City, NY 10001" +274481,AAA Batteries (4-pack),2,2.99,10/28/19 19:55,"566 Wilson St, New York City, NY 10001" +274482,AA Batteries (4-pack),2,3.84,10/07/19 12:11,"428 Cedar St, San Francisco, CA 94016" +274483,AAA Batteries (4-pack),1,2.99,10/04/19 10:27,"534 14th St, San Francisco, CA 94016" +274484,Bose SoundSport Headphones,1,99.99,10/15/19 00:22,"185 Pine St, Boston, MA 02215" +274485,Bose SoundSport Headphones,1,99.99,10/14/19 20:26,"384 Wilson St, New York City, NY 10001" +274486,Flatscreen TV,1,300,10/26/19 21:19,"76 Madison St, San Francisco, CA 94016" +274487,AA Batteries (4-pack),1,3.84,10/06/19 21:22,"483 Spruce St, Atlanta, GA 30301" +274488,Bose SoundSport Headphones,1,99.99,10/14/19 12:58,"222 West St, New York City, NY 10001" +274489,Wired Headphones,1,11.99,10/10/19 18:45,"219 Jackson St, Los Angeles, CA 90001" +274490,ThinkPad Laptop,1,999.99,10/01/19 22:41,"97 Walnut St, San Francisco, CA 94016" +274491,USB-C Charging Cable,1,11.95,10/07/19 12:15,"309 Lakeview St, Dallas, TX 75001" +274492,27in FHD Monitor,1,149.99,10/01/19 18:33,"767 Dogwood St, San Francisco, CA 94016" +274493,27in FHD Monitor,1,149.99,10/21/19 14:25,"114 Walnut St, New York City, NY 10001" +274494,27in FHD Monitor,1,149.99,10/12/19 12:52,"880 7th St, Austin, TX 73301" +274495,Google Phone,1,600,10/17/19 08:48,"907 11th St, San Francisco, CA 94016" +274496,USB-C Charging Cable,1,11.95,10/26/19 05:49,"980 Spruce St, New York City, NY 10001" +274497,27in FHD Monitor,1,149.99,10/31/19 18:44,"672 Elm St, San Francisco, CA 94016" +274498,AA Batteries (4-pack),1,3.84,10/11/19 19:41,"481 1st St, New York City, NY 10001" +274499,Apple Airpods Headphones,1,150,10/02/19 23:31,"505 Johnson St, San Francisco, CA 94016" +274500,iPhone,1,700,10/29/19 13:41,"146 Jackson St, Boston, MA 02215" +274501,USB-C Charging Cable,1,11.95,10/14/19 16:29,"486 North St, Dallas, TX 75001" +274502,AAA Batteries (4-pack),1,2.99,10/29/19 18:28,"133 Hickory St, Los Angeles, CA 90001" +274503,Wired Headphones,1,11.99,10/31/19 14:56,"681 Pine St, Los Angeles, CA 90001" +274504,27in FHD Monitor,1,149.99,10/24/19 08:49,"897 Adams St, Atlanta, GA 30301" +274505,LG Dryer,1,600.0,10/31/19 21:30,"317 Cherry St, Seattle, WA 98101" +274506,Macbook Pro Laptop,1,1700,10/03/19 21:53,"414 Lake St, Dallas, TX 75001" +274507,20in Monitor,1,109.99,10/11/19 22:49,"517 Walnut St, Dallas, TX 75001" +274508,USB-C Charging Cable,2,11.95,10/19/19 06:08,"965 Lincoln St, Portland, OR 97035" +274509,27in FHD Monitor,1,149.99,10/23/19 17:15,"915 Walnut St, Boston, MA 02215" +274510,Lightning Charging Cable,1,14.95,10/08/19 10:38,"133 Dogwood St, Boston, MA 02215" +274510,Wired Headphones,1,11.99,10/08/19 10:38,"133 Dogwood St, Boston, MA 02215" +274511,Lightning Charging Cable,1,14.95,10/17/19 09:45,"419 Elm St, Los Angeles, CA 90001" +274512,AAA Batteries (4-pack),2,2.99,10/13/19 21:37,"580 14th St, Boston, MA 02215" +274513,AAA Batteries (4-pack),1,2.99,10/31/19 21:59,"812 Maple St, Boston, MA 02215" +274514,34in Ultrawide Monitor,1,379.99,10/03/19 16:37,"638 North St, Los Angeles, CA 90001" +274515,Apple Airpods Headphones,1,150,10/19/19 23:08,"845 14th St, Portland, OR 97035" +274516,Apple Airpods Headphones,1,150,10/26/19 07:44,"788 Lakeview St, Portland, OR 97035" +274517,Wired Headphones,1,11.99,10/28/19 20:40,"253 Johnson St, Los Angeles, CA 90001" +274518,USB-C Charging Cable,1,11.95,10/13/19 17:08,"36 Highland St, Los Angeles, CA 90001" +274519,ThinkPad Laptop,1,999.99,10/05/19 10:46,"171 Adams St, San Francisco, CA 94016" +274520,Google Phone,1,600,10/19/19 20:33,"689 Pine St, San Francisco, CA 94016" +274520,USB-C Charging Cable,1,11.95,10/19/19 20:33,"689 Pine St, San Francisco, CA 94016" +274520,Bose SoundSport Headphones,1,99.99,10/19/19 20:33,"689 Pine St, San Francisco, CA 94016" +274521,Wired Headphones,1,11.99,10/01/19 13:45,"37 West St, New York City, NY 10001" +274522,Lightning Charging Cable,1,14.95,10/01/19 19:28,"248 2nd St, San Francisco, CA 94016" +274523,Macbook Pro Laptop,1,1700,10/29/19 18:18,"36 Willow St, New York City, NY 10001" +274524,34in Ultrawide Monitor,1,379.99,10/23/19 23:02,"143 9th St, San Francisco, CA 94016" +274525,Lightning Charging Cable,1,14.95,10/02/19 08:32,"862 Center St, San Francisco, CA 94016" +274525,Google Phone,1,600,10/02/19 08:32,"862 Center St, San Francisco, CA 94016" +274526,Apple Airpods Headphones,1,150,10/07/19 11:25,"891 Center St, San Francisco, CA 94016" +274527,USB-C Charging Cable,1,11.95,10/07/19 00:17,"859 14th St, San Francisco, CA 94016" +274527,Apple Airpods Headphones,1,150,10/07/19 00:17,"859 14th St, San Francisco, CA 94016" +274528,Flatscreen TV,1,300,10/27/19 11:22,"657 Church St, Seattle, WA 98101" +274529,AAA Batteries (4-pack),1,2.99,10/04/19 07:17,"868 Hill St, Boston, MA 02215" +274530,27in FHD Monitor,1,149.99,10/11/19 15:10,"189 Spruce St, San Francisco, CA 94016" +274531,27in FHD Monitor,1,149.99,10/17/19 02:23,"648 Church St, New York City, NY 10001" +274532,Bose SoundSport Headphones,1,99.99,10/30/19 11:26,"403 13th St, Dallas, TX 75001" +274533,Wired Headphones,1,11.99,10/10/19 13:40,"369 Jefferson St, Dallas, TX 75001" +274534,AA Batteries (4-pack),3,3.84,10/09/19 00:11,"135 Madison St, Seattle, WA 98101" +274535,34in Ultrawide Monitor,1,379.99,10/01/19 16:23,"912 Chestnut St, Seattle, WA 98101" +274536,Lightning Charging Cable,1,14.95,10/30/19 19:40,"783 13th St, Los Angeles, CA 90001" +274537,Vareebadd Phone,1,400,10/02/19 07:31,"677 Lincoln St, New York City, NY 10001" +274538,Lightning Charging Cable,1,14.95,10/25/19 15:18,"24 Jackson St, Boston, MA 02215" +274539,Wired Headphones,1,11.99,10/20/19 17:04,"105 North St, Los Angeles, CA 90001" +274540,Wired Headphones,1,11.99,10/29/19 09:39,"746 Jefferson St, Los Angeles, CA 90001" +274541,34in Ultrawide Monitor,1,379.99,10/27/19 20:14,"728 9th St, Los Angeles, CA 90001" +274542,AAA Batteries (4-pack),2,2.99,10/09/19 10:00,"390 1st St, Portland, OR 97035" +274543,AA Batteries (4-pack),1,3.84,10/23/19 15:54,"747 Lake St, San Francisco, CA 94016" +274544,27in FHD Monitor,1,149.99,10/28/19 18:56,"19 2nd St, Los Angeles, CA 90001" +274545,AA Batteries (4-pack),1,3.84,10/05/19 18:48,"689 Chestnut St, Boston, MA 02215" +274546,USB-C Charging Cable,1,11.95,10/12/19 02:11,"954 4th St, Los Angeles, CA 90001" +274547,27in 4K Gaming Monitor,1,389.99,10/23/19 21:07,"503 12th St, Portland, ME 04101" +274548,AAA Batteries (4-pack),1,2.99,10/29/19 14:01,"792 5th St, San Francisco, CA 94016" +274549,Bose SoundSport Headphones,1,99.99,10/01/19 15:06,"791 Maple St, San Francisco, CA 94016" +274550,34in Ultrawide Monitor,1,379.99,10/22/19 12:04,"264 6th St, Atlanta, GA 30301" +274551,USB-C Charging Cable,1,11.95,10/13/19 20:52,"600 Sunset St, New York City, NY 10001" +274552,Bose SoundSport Headphones,1,99.99,10/15/19 12:21,"977 10th St, San Francisco, CA 94016" +274553,Flatscreen TV,1,300,10/08/19 11:49,"641 Lincoln St, Austin, TX 73301" +274554,Wired Headphones,1,11.99,10/29/19 09:25,"726 Adams St, Boston, MA 02215" +274555,Wired Headphones,1,11.99,10/29/19 14:32,"782 Ridge St, Austin, TX 73301" +274556,Wired Headphones,1,11.99,10/30/19 08:29,"381 Center St, Los Angeles, CA 90001" +274557,34in Ultrawide Monitor,1,379.99,10/23/19 18:31,"862 Maple St, Los Angeles, CA 90001" +274558,USB-C Charging Cable,1,11.95,10/27/19 14:50,"864 Willow St, Seattle, WA 98101" +274559,Apple Airpods Headphones,1,150,10/25/19 12:01,"334 Lincoln St, Dallas, TX 75001" +274560,Lightning Charging Cable,1,14.95,10/01/19 14:20,"757 9th St, New York City, NY 10001" +274561,Wired Headphones,1,11.99,10/31/19 20:42,"89 Walnut St, Portland, OR 97035" +274562,Macbook Pro Laptop,1,1700,10/30/19 21:35,"825 River St, Boston, MA 02215" +274563,AAA Batteries (4-pack),1,2.99,10/17/19 11:58,"512 11th St, San Francisco, CA 94016" +274564,Wired Headphones,1,11.99,10/27/19 16:40,"544 8th St, San Francisco, CA 94016" +274565,LG Washing Machine,1,600.0,10/21/19 18:46,"542 Madison St, San Francisco, CA 94016" +274566,Bose SoundSport Headphones,1,99.99,10/10/19 19:33,"55 14th St, San Francisco, CA 94016" +274567,Wired Headphones,1,11.99,10/30/19 15:51,"835 Madison St, Seattle, WA 98101" +274568,AAA Batteries (4-pack),1,2.99,10/14/19 15:56,"1 Highland St, New York City, NY 10001" +274569,Bose SoundSport Headphones,1,99.99,10/22/19 13:40,"427 Lakeview St, Dallas, TX 75001" +274570,27in 4K Gaming Monitor,1,389.99,10/18/19 10:32,"966 10th St, San Francisco, CA 94016" +274571,AA Batteries (4-pack),1,3.84,10/16/19 22:02,"737 4th St, Dallas, TX 75001" +274572,iPhone,1,700,10/27/19 12:47,"69 Cherry St, New York City, NY 10001" +274573,AAA Batteries (4-pack),1,2.99,10/28/19 09:54,"21 River St, Boston, MA 02215" +274574,AA Batteries (4-pack),1,3.84,10/19/19 13:56,"635 13th St, Boston, MA 02215" +274575,AA Batteries (4-pack),2,3.84,10/10/19 23:07,"127 Spruce St, San Francisco, CA 94016" +274576,Macbook Pro Laptop,1,1700,10/10/19 23:35,"891 Highland St, Dallas, TX 75001" +274577,USB-C Charging Cable,1,11.95,10/15/19 10:32,"728 Hickory St, Los Angeles, CA 90001" +274578,Lightning Charging Cable,1,14.95,10/17/19 19:44,"695 South St, San Francisco, CA 94016" +274579,AAA Batteries (4-pack),1,2.99,10/27/19 09:59,"117 Willow St, Dallas, TX 75001" +274580,USB-C Charging Cable,1,11.95,10/23/19 20:14,"438 Lincoln St, San Francisco, CA 94016" +274581,Bose SoundSport Headphones,1,99.99,10/27/19 13:55,"967 Church St, Los Angeles, CA 90001" +274582,Apple Airpods Headphones,1,150,10/04/19 21:13,"229 Walnut St, Los Angeles, CA 90001" +274583,AAA Batteries (4-pack),3,2.99,10/03/19 19:26,"615 Cedar St, Los Angeles, CA 90001" +274584,Lightning Charging Cable,1,14.95,10/15/19 18:56,"212 Forest St, Boston, MA 02215" +274585,Lightning Charging Cable,1,14.95,10/20/19 19:31,"340 Wilson St, Atlanta, GA 30301" +274586,Google Phone,1,600,10/03/19 10:40,"480 Lincoln St, Austin, TX 73301" +274587,Wired Headphones,1,11.99,10/11/19 18:09,"843 1st St, New York City, NY 10001" +274588,USB-C Charging Cable,1,11.95,10/22/19 18:46,"773 Willow St, San Francisco, CA 94016" +274589,Bose SoundSport Headphones,1,99.99,10/15/19 12:22,"385 14th St, San Francisco, CA 94016" +274590,AA Batteries (4-pack),1,3.84,10/08/19 11:11,"902 Spruce St, Atlanta, GA 30301" +274591,ThinkPad Laptop,1,999.99,10/21/19 10:51,"781 Jefferson St, San Francisco, CA 94016" +274592,27in 4K Gaming Monitor,1,389.99,10/03/19 13:49,"494 Highland St, New York City, NY 10001" +274593,iPhone,1,700,10/11/19 18:15,"189 West St, San Francisco, CA 94016" +274594,Lightning Charging Cable,1,14.95,10/23/19 09:48,"919 Sunset St, Portland, OR 97035" +274595,Bose SoundSport Headphones,1,99.99,10/20/19 21:37,"845 8th St, Boston, MA 02215" +274596,Bose SoundSport Headphones,1,99.99,10/12/19 12:18,"823 Center St, New York City, NY 10001" +274597,Vareebadd Phone,1,400,10/18/19 09:12,"879 Forest St, San Francisco, CA 94016" +274598,USB-C Charging Cable,1,11.95,10/17/19 21:18,"970 Hickory St, Los Angeles, CA 90001" +274599,Wired Headphones,1,11.99,10/04/19 00:27,"671 Hickory St, Seattle, WA 98101" +274600,AA Batteries (4-pack),1,3.84,10/13/19 14:59,"87 Cherry St, Atlanta, GA 30301" +274601,ThinkPad Laptop,1,999.99,10/18/19 14:55,"483 West St, San Francisco, CA 94016" +274602,Apple Airpods Headphones,1,150,10/12/19 10:22,"937 Walnut St, New York City, NY 10001" +274603,34in Ultrawide Monitor,1,379.99,10/29/19 20:40,"827 10th St, New York City, NY 10001" +274604,Lightning Charging Cable,1,14.95,10/30/19 10:47,"546 13th St, San Francisco, CA 94016" +274605,Bose SoundSport Headphones,1,99.99,10/10/19 15:41,"984 Jackson St, Austin, TX 73301" +274606,Lightning Charging Cable,1,14.95,10/28/19 19:26,"589 Lake St, Dallas, TX 75001" +274607,Apple Airpods Headphones,1,150,10/11/19 09:18,"46 West St, Boston, MA 02215" +274608,LG Dryer,1,600.0,10/16/19 22:53,"617 Wilson St, Atlanta, GA 30301" +274609,Wired Headphones,1,11.99,10/21/19 21:26,"881 Wilson St, Dallas, TX 75001" +274610,Apple Airpods Headphones,1,150,10/09/19 12:35,"468 Lakeview St, New York City, NY 10001" +274611,ThinkPad Laptop,1,999.99,10/15/19 20:41,"348 1st St, San Francisco, CA 94016" +274612,Lightning Charging Cable,1,14.95,10/04/19 18:02,"996 West St, San Francisco, CA 94016" +274613,34in Ultrawide Monitor,1,379.99,10/08/19 13:10,"167 7th St, Los Angeles, CA 90001" +274614,AA Batteries (4-pack),2,3.84,10/09/19 14:51,"165 Cherry St, San Francisco, CA 94016" +274615,Lightning Charging Cable,1,14.95,10/02/19 20:06,"411 Adams St, Dallas, TX 75001" +274616,Google Phone,1,600,10/14/19 22:28,"935 Pine St, San Francisco, CA 94016" +274617,Wired Headphones,1,11.99,10/15/19 17:56,"333 Adams St, Austin, TX 73301" +274618,Apple Airpods Headphones,1,150,10/01/19 17:25,"567 Highland St, Los Angeles, CA 90001" +274619,Apple Airpods Headphones,1,150,10/10/19 20:22,"875 8th St, Boston, MA 02215" +274620,iPhone,1,700,10/23/19 19:11,"840 5th St, Dallas, TX 75001" +274620,Lightning Charging Cable,1,14.95,10/23/19 19:11,"840 5th St, Dallas, TX 75001" +274621,USB-C Charging Cable,1,11.95,10/17/19 09:24,"446 Jefferson St, Portland, ME 04101" +274622,Apple Airpods Headphones,1,150,10/31/19 11:47,"231 Ridge St, San Francisco, CA 94016" +274623,27in FHD Monitor,1,149.99,10/20/19 12:14,"994 Washington St, San Francisco, CA 94016" +274624,Lightning Charging Cable,1,14.95,10/03/19 18:59,"492 Chestnut St, Boston, MA 02215" +274625,iPhone,1,700,10/21/19 12:19,"197 Jackson St, Seattle, WA 98101" +274626,Lightning Charging Cable,1,14.95,10/18/19 19:25,"298 11th St, San Francisco, CA 94016" +274627,Lightning Charging Cable,1,14.95,10/04/19 21:17,"78 Madison St, Boston, MA 02215" +274628,Google Phone,1,600,10/23/19 17:34,"99 Chestnut St, Atlanta, GA 30301" +274629,Bose SoundSport Headphones,1,99.99,10/10/19 16:02,"50 Hickory St, Seattle, WA 98101" +274630,USB-C Charging Cable,1,11.95,10/10/19 21:31,"570 River St, San Francisco, CA 94016" +274631,Bose SoundSport Headphones,1,99.99,10/20/19 05:47,"942 Madison St, Dallas, TX 75001" +274632,20in Monitor,1,109.99,10/17/19 20:42,"594 8th St, Portland, ME 04101" +274633,Apple Airpods Headphones,1,150,10/04/19 08:12,"619 6th St, Boston, MA 02215" +274634,27in FHD Monitor,1,149.99,10/10/19 08:59,"984 Jefferson St, Portland, OR 97035" +274635,AAA Batteries (4-pack),1,2.99,10/10/19 08:49,"53 Main St, Atlanta, GA 30301" +274636,Wired Headphones,2,11.99,10/26/19 17:20,"18 Johnson St, Boston, MA 02215" +274637,AAA Batteries (4-pack),1,2.99,10/17/19 19:46,"727 Meadow St, San Francisco, CA 94016" +274638,AAA Batteries (4-pack),1,2.99,10/12/19 09:36,"846 Elm St, San Francisco, CA 94016" +274639,Macbook Pro Laptop,1,1700,10/08/19 20:52,"758 Elm St, New York City, NY 10001" +274640,USB-C Charging Cable,1,11.95,10/28/19 00:19,"247 Chestnut St, San Francisco, CA 94016" +274641,Macbook Pro Laptop,1,1700,10/15/19 12:07,"239 Adams St, Seattle, WA 98101" +274642,Bose SoundSport Headphones,1,99.99,10/21/19 12:57,"694 River St, New York City, NY 10001" +274643,AA Batteries (4-pack),1,3.84,10/24/19 21:46,"118 Dogwood St, Los Angeles, CA 90001" +274644,Bose SoundSport Headphones,1,99.99,10/27/19 07:53,"213 Spruce St, Seattle, WA 98101" +274645,Apple Airpods Headphones,1,150,10/03/19 13:18,"514 Church St, Austin, TX 73301" +274646,AAA Batteries (4-pack),1,2.99,10/08/19 16:55,"491 Main St, Seattle, WA 98101" +274647,Google Phone,1,600,10/22/19 17:09,"340 Jackson St, San Francisco, CA 94016" +274648,27in FHD Monitor,1,149.99,10/31/19 17:22,"394 Hill St, Atlanta, GA 30301" +274649,Apple Airpods Headphones,1,150,10/10/19 10:12,"748 Willow St, Boston, MA 02215" +274650,AAA Batteries (4-pack),1,2.99,10/28/19 14:16,"695 Hill St, Austin, TX 73301" +274651,Flatscreen TV,1,300,10/31/19 16:24,"727 1st St, Portland, ME 04101" +274652,AAA Batteries (4-pack),1,2.99,10/21/19 01:32,"767 4th St, New York City, NY 10001" +274653,34in Ultrawide Monitor,1,379.99,10/26/19 23:30,"168 Church St, Los Angeles, CA 90001" +274654,Lightning Charging Cable,1,14.95,10/08/19 20:56,"994 Hickory St, Portland, OR 97035" +274655,Bose SoundSport Headphones,1,99.99,10/14/19 11:16,"97 7th St, San Francisco, CA 94016" +274656,iPhone,1,700,10/13/19 11:31,"119 Washington St, New York City, NY 10001" +274657,Macbook Pro Laptop,1,1700,10/18/19 21:58,"9 South St, Boston, MA 02215" +274658,ThinkPad Laptop,1,999.99,10/08/19 10:11,"334 7th St, San Francisco, CA 94016" +274659,USB-C Charging Cable,1,11.95,10/17/19 13:17,"720 4th St, Austin, TX 73301" +274660,Lightning Charging Cable,1,14.95,10/04/19 13:08,"854 8th St, San Francisco, CA 94016" +274661,Apple Airpods Headphones,1,150,10/02/19 17:27,"319 Wilson St, Seattle, WA 98101" +274662,27in FHD Monitor,1,149.99,10/10/19 11:41,"607 7th St, Seattle, WA 98101" +274663,AA Batteries (4-pack),1,3.84,10/27/19 21:04,"885 10th St, Los Angeles, CA 90001" +274664,34in Ultrawide Monitor,1,379.99,10/16/19 13:37,"474 Washington St, San Francisco, CA 94016" +274665,iPhone,1,700,10/19/19 09:01,"581 Meadow St, New York City, NY 10001" +274666,Lightning Charging Cable,1,14.95,10/05/19 22:27,"351 North St, New York City, NY 10001" +274667,Flatscreen TV,1,300,10/19/19 10:07,"546 Lincoln St, New York City, NY 10001" +274668,Apple Airpods Headphones,1,150,10/19/19 18:44,"576 Willow St, Seattle, WA 98101" +274669,Lightning Charging Cable,1,14.95,10/25/19 11:49,"344 Dogwood St, Portland, OR 97035" +274670,AA Batteries (4-pack),2,3.84,10/21/19 19:08,"958 13th St, Boston, MA 02215" +274671,USB-C Charging Cable,1,11.95,10/17/19 11:28,"207 9th St, Boston, MA 02215" +274672,AA Batteries (4-pack),1,3.84,10/08/19 12:53,"627 Main St, Boston, MA 02215" +274673,20in Monitor,1,109.99,10/19/19 21:22,"294 South St, Seattle, WA 98101" +274674,USB-C Charging Cable,1,11.95,10/17/19 19:22,"737 9th St, Los Angeles, CA 90001" +274675,USB-C Charging Cable,1,11.95,10/10/19 09:57,"459 1st St, Los Angeles, CA 90001" +274676,Lightning Charging Cable,1,14.95,10/20/19 10:15,"258 Walnut St, San Francisco, CA 94016" +274677,Wired Headphones,1,11.99,10/14/19 17:12,"748 Main St, Atlanta, GA 30301" +274678,27in 4K Gaming Monitor,1,389.99,10/06/19 15:00,"775 Cherry St, Seattle, WA 98101" +274679,Wired Headphones,1,11.99,10/14/19 13:42,"36 Park St, Austin, TX 73301" +274680,AAA Batteries (4-pack),1,2.99,10/30/19 10:58,"886 Forest St, New York City, NY 10001" +274681,Bose SoundSport Headphones,1,99.99,10/24/19 15:18,"56 Lincoln St, Atlanta, GA 30301" +274682,USB-C Charging Cable,2,11.95,10/18/19 05:32,"680 North St, Dallas, TX 75001" +274682,Bose SoundSport Headphones,1,99.99,10/18/19 05:32,"680 North St, Dallas, TX 75001" +274683,AA Batteries (4-pack),1,3.84,10/11/19 11:28,"141 Adams St, Los Angeles, CA 90001" +274684,USB-C Charging Cable,1,11.95,10/23/19 06:54,"661 Elm St, San Francisco, CA 94016" +274685,Lightning Charging Cable,1,14.95,10/25/19 00:30,"607 1st St, Portland, OR 97035" +274686,USB-C Charging Cable,1,11.95,10/20/19 09:24,"355 14th St, Atlanta, GA 30301" +274687,iPhone,1,700,10/28/19 14:45,"198 Lincoln St, Seattle, WA 98101" +274688,AAA Batteries (4-pack),1,2.99,10/23/19 15:26,"159 Johnson St, San Francisco, CA 94016" +274689,AA Batteries (4-pack),1,3.84,10/24/19 19:51,"99 Adams St, Boston, MA 02215" +274690,iPhone,1,700,10/19/19 16:31,"267 Meadow St, New York City, NY 10001" +274691,Lightning Charging Cable,1,14.95,10/01/19 21:02,"896 Dogwood St, New York City, NY 10001" +274692,Apple Airpods Headphones,1,150,10/21/19 22:22,"882 North St, Boston, MA 02215" +274693,AAA Batteries (4-pack),2,2.99,10/11/19 17:13,"906 Jefferson St, Los Angeles, CA 90001" +274694,Google Phone,1,600,10/06/19 21:55,"721 Park St, San Francisco, CA 94016" +274695,AAA Batteries (4-pack),1,2.99,10/10/19 20:54,"748 Pine St, Dallas, TX 75001" +274696,Lightning Charging Cable,1,14.95,10/19/19 16:04,"999 Church St, San Francisco, CA 94016" +274697,Vareebadd Phone,1,400,10/15/19 10:24,"171 Lincoln St, Boston, MA 02215" +274698,AAA Batteries (4-pack),2,2.99,11/01/19 03:25,"12 14th St, Los Angeles, CA 90001" +274699,iPhone,1,700,10/22/19 10:06,"856 Pine St, San Francisco, CA 94016" +274700,34in Ultrawide Monitor,1,379.99,10/16/19 17:47,"282 North St, Atlanta, GA 30301" +274701,27in 4K Gaming Monitor,1,389.99,10/09/19 22:08,"648 South St, Dallas, TX 75001" +274702,Bose SoundSport Headphones,1,99.99,10/20/19 12:27,"858 West St, San Francisco, CA 94016" +274703,USB-C Charging Cable,1,11.95,10/25/19 13:43,"450 North St, Portland, OR 97035" +274704,34in Ultrawide Monitor,1,379.99,10/06/19 16:47,"860 Johnson St, San Francisco, CA 94016" +274705,USB-C Charging Cable,1,11.95,10/30/19 21:17,"785 Adams St, Boston, MA 02215" +274706,Bose SoundSport Headphones,1,99.99,10/28/19 14:55,"897 South St, Portland, OR 97035" +274707,Lightning Charging Cable,1,14.95,10/29/19 16:47,"68 Lake St, New York City, NY 10001" +274708,AA Batteries (4-pack),1,3.84,10/21/19 17:14,"349 2nd St, Dallas, TX 75001" +274709,iPhone,1,700,10/02/19 13:22,"247 9th St, San Francisco, CA 94016" +274709,Apple Airpods Headphones,1,150,10/02/19 13:22,"247 9th St, San Francisco, CA 94016" +274710,AAA Batteries (4-pack),2,2.99,10/05/19 10:37,"577 10th St, Austin, TX 73301" +274711,27in FHD Monitor,1,149.99,10/15/19 14:53,"647 Park St, Los Angeles, CA 90001" +274712,Vareebadd Phone,1,400,10/04/19 18:02,"402 Highland St, Seattle, WA 98101" +274713,USB-C Charging Cable,1,11.95,10/06/19 22:37,"975 Maple St, Dallas, TX 75001" +274714,AAA Batteries (4-pack),4,2.99,10/03/19 20:09,"699 Wilson St, Los Angeles, CA 90001" +274715,AA Batteries (4-pack),1,3.84,10/23/19 21:22,"407 Washington St, Portland, OR 97035" +274716,Bose SoundSport Headphones,1,99.99,10/10/19 11:53,"271 Washington St, Atlanta, GA 30301" +274717,Lightning Charging Cable,1,14.95,10/17/19 10:58,"523 Adams St, New York City, NY 10001" +274718,AAA Batteries (4-pack),3,2.99,10/07/19 15:55,"684 Church St, Atlanta, GA 30301" +274719,Bose SoundSport Headphones,1,99.99,10/19/19 17:38,"6 North St, Dallas, TX 75001" +274720,27in 4K Gaming Monitor,1,389.99,10/12/19 20:22,"953 6th St, San Francisco, CA 94016" +274721,AAA Batteries (4-pack),1,2.99,10/19/19 15:42,"474 10th St, Austin, TX 73301" +274722,USB-C Charging Cable,1,11.95,10/18/19 07:10,"866 11th St, Seattle, WA 98101" +274723,AAA Batteries (4-pack),1,2.99,10/30/19 10:20,"778 Center St, Boston, MA 02215" +274724,AAA Batteries (4-pack),1,2.99,10/17/19 14:06,"97 Johnson St, San Francisco, CA 94016" +274725,Wired Headphones,1,11.99,10/20/19 11:13,"61 River St, Portland, OR 97035" +274726,Bose SoundSport Headphones,1,99.99,10/07/19 13:20,"934 North St, Dallas, TX 75001" +274727,Google Phone,1,600,10/30/19 23:06,"253 9th St, Los Angeles, CA 90001" +274728,Apple Airpods Headphones,1,150,10/19/19 01:00,"142 Willow St, Dallas, TX 75001" +274729,20in Monitor,1,109.99,10/08/19 10:29,"760 Cherry St, New York City, NY 10001" +274730,Wired Headphones,1,11.99,10/20/19 10:18,"665 Elm St, San Francisco, CA 94016" +274731,Bose SoundSport Headphones,1,99.99,10/03/19 12:24,"465 Church St, Austin, TX 73301" +274732,Bose SoundSport Headphones,2,99.99,10/25/19 19:00,"900 West St, San Francisco, CA 94016" +274733,Wired Headphones,1,11.99,10/09/19 16:46,"579 6th St, San Francisco, CA 94016" +274734,USB-C Charging Cable,1,11.95,10/17/19 21:24,"288 Madison St, Portland, ME 04101" +274735,iPhone,1,700,10/07/19 10:39,"18 1st St, Austin, TX 73301" +274735,Wired Headphones,1,11.99,10/07/19 10:39,"18 1st St, Austin, TX 73301" +274736,AA Batteries (4-pack),1,3.84,10/23/19 09:57,"631 Jackson St, San Francisco, CA 94016" +274737,AAA Batteries (4-pack),2,2.99,10/31/19 20:22,"436 7th St, Los Angeles, CA 90001" +274738,27in FHD Monitor,1,149.99,10/30/19 14:42,"48 4th St, Austin, TX 73301" +274739,34in Ultrawide Monitor,1,379.99,10/27/19 12:52,"500 4th St, Los Angeles, CA 90001" +274740,Apple Airpods Headphones,1,150,10/02/19 17:31,"848 Elm St, Seattle, WA 98101" +274741,27in 4K Gaming Monitor,1,389.99,10/21/19 18:32,"594 9th St, Atlanta, GA 30301" +274742,Apple Airpods Headphones,1,150,10/03/19 20:05,"92 Hill St, San Francisco, CA 94016" +274743,AAA Batteries (4-pack),1,2.99,10/01/19 18:06,"942 5th St, Austin, TX 73301" +274744,Macbook Pro Laptop,1,1700,10/24/19 18:54,"184 Wilson St, San Francisco, CA 94016" +274745,Vareebadd Phone,1,400,10/23/19 00:05,"856 11th St, Los Angeles, CA 90001" +274746,AAA Batteries (4-pack),1,2.99,10/23/19 13:03,"498 Dogwood St, Boston, MA 02215" +274747,AAA Batteries (4-pack),1,2.99,10/09/19 21:30,"187 Sunset St, San Francisco, CA 94016" +274748,Lightning Charging Cable,1,14.95,10/14/19 12:41,"109 Church St, New York City, NY 10001" +274749,Macbook Pro Laptop,1,1700,10/18/19 20:55,"345 Spruce St, New York City, NY 10001" +274750,ThinkPad Laptop,1,999.99,10/10/19 14:18,"502 Forest St, San Francisco, CA 94016" +274751,Apple Airpods Headphones,1,150,10/09/19 07:43,"819 Wilson St, Boston, MA 02215" +274752,AA Batteries (4-pack),1,3.84,10/07/19 16:30,"903 13th St, Boston, MA 02215" +274753,Lightning Charging Cable,1,14.95,10/27/19 09:35,"843 Highland St, New York City, NY 10001" +274754,AAA Batteries (4-pack),2,2.99,10/27/19 16:46,"42 Madison St, San Francisco, CA 94016" +274755,AAA Batteries (4-pack),3,2.99,10/05/19 19:21,"644 Maple St, Dallas, TX 75001" +274755,Macbook Pro Laptop,1,1700,10/05/19 19:21,"644 Maple St, Dallas, TX 75001" +274756,Lightning Charging Cable,1,14.95,10/12/19 05:41,"966 1st St, Seattle, WA 98101" +274757,Apple Airpods Headphones,1,150,10/02/19 14:41,"493 Adams St, San Francisco, CA 94016" +274758,Wired Headphones,1,11.99,10/19/19 13:37,"113 4th St, Boston, MA 02215" +274759,Bose SoundSport Headphones,1,99.99,10/15/19 09:06,"726 Adams St, San Francisco, CA 94016" +274760,USB-C Charging Cable,2,11.95,10/07/19 22:42,"767 River St, Los Angeles, CA 90001" +274761,USB-C Charging Cable,1,11.95,10/20/19 10:20,"368 8th St, New York City, NY 10001" +274762,AAA Batteries (4-pack),1,2.99,10/13/19 16:19,"720 Highland St, Atlanta, GA 30301" +274763,Apple Airpods Headphones,1,150,10/31/19 21:46,"628 North St, San Francisco, CA 94016" +274764,AAA Batteries (4-pack),1,2.99,10/25/19 15:33,"109 Lincoln St, Dallas, TX 75001" +274765,Bose SoundSport Headphones,1,99.99,10/22/19 10:50,"77 Madison St, Seattle, WA 98101" +274766,AA Batteries (4-pack),1,3.84,10/01/19 07:26,"242 Center St, Atlanta, GA 30301" +274767,AA Batteries (4-pack),1,3.84,10/11/19 18:17,"945 Lake St, New York City, NY 10001" +274768,Wired Headphones,1,11.99,10/28/19 17:17,"923 Maple St, Boston, MA 02215" +274769,Apple Airpods Headphones,1,150,10/01/19 20:50,"179 Church St, New York City, NY 10001" +274770,USB-C Charging Cable,1,11.95,10/09/19 21:38,"964 Wilson St, Boston, MA 02215" +274771,27in 4K Gaming Monitor,1,389.99,10/11/19 22:56,"392 11th St, San Francisco, CA 94016" +274772,Apple Airpods Headphones,1,150,10/06/19 20:50,"329 Adams St, San Francisco, CA 94016" +274773,Lightning Charging Cable,1,14.95,10/06/19 13:46,"460 2nd St, Los Angeles, CA 90001" +274774,Wired Headphones,1,11.99,10/10/19 13:25,"936 2nd St, Portland, ME 04101" +274775,Flatscreen TV,1,300,10/03/19 18:41,"624 Center St, Portland, ME 04101" +274776,34in Ultrawide Monitor,1,379.99,10/11/19 10:04,"226 Lincoln St, Portland, OR 97035" +274777,Wired Headphones,1,11.99,10/21/19 10:07,"544 10th St, Los Angeles, CA 90001" +274778,AA Batteries (4-pack),1,3.84,10/27/19 14:14,"376 Cherry St, Los Angeles, CA 90001" +274779,Google Phone,1,600,10/03/19 11:32,"939 Wilson St, Atlanta, GA 30301" +274780,USB-C Charging Cable,1,11.95,10/22/19 17:47,"856 Church St, New York City, NY 10001" +274781,AAA Batteries (4-pack),1,2.99,10/10/19 10:28,"413 1st St, Boston, MA 02215" +274782,Vareebadd Phone,1,400,10/23/19 08:41,"430 Spruce St, New York City, NY 10001" +274783,Bose SoundSport Headphones,1,99.99,10/23/19 22:11,"14 Elm St, New York City, NY 10001" +274784,AAA Batteries (4-pack),1,2.99,10/19/19 10:05,"974 Forest St, Los Angeles, CA 90001" +274785,Bose SoundSport Headphones,1,99.99,10/18/19 11:08,"108 Hickory St, New York City, NY 10001" +274786,Lightning Charging Cable,1,14.95,10/22/19 15:38,"315 Park St, Los Angeles, CA 90001" +274787,Lightning Charging Cable,1,14.95,10/14/19 12:42,"843 Highland St, Seattle, WA 98101" +274788,USB-C Charging Cable,1,11.95,10/14/19 13:57,"177 13th St, Boston, MA 02215" +274789,Apple Airpods Headphones,1,150,10/07/19 11:28,"850 Chestnut St, Boston, MA 02215" +274790,Wired Headphones,1,11.99,10/04/19 17:20,"490 Park St, Los Angeles, CA 90001" +274791,Lightning Charging Cable,1,14.95,10/28/19 13:42,"910 7th St, San Francisco, CA 94016" +274792,Google Phone,1,600,10/26/19 17:58,"624 8th St, Boston, MA 02215" +274793,AAA Batteries (4-pack),1,2.99,10/29/19 18:53,"655 Walnut St, Atlanta, GA 30301" +274794,AA Batteries (4-pack),1,3.84,10/24/19 15:55,"704 Adams St, Dallas, TX 75001" +274795,AAA Batteries (4-pack),1,2.99,10/07/19 10:37,"861 Jackson St, Boston, MA 02215" +274796,Lightning Charging Cable,1,14.95,10/22/19 12:07,"37 Willow St, Dallas, TX 75001" +274797,Wired Headphones,1,11.99,10/30/19 05:09,"717 8th St, Portland, OR 97035" +274798,AAA Batteries (4-pack),2,2.99,10/17/19 10:08,"960 Madison St, New York City, NY 10001" +274799,Flatscreen TV,1,300,10/25/19 19:21,"726 Washington St, Los Angeles, CA 90001" +274800,AA Batteries (4-pack),3,3.84,10/13/19 13:58,"304 Ridge St, Dallas, TX 75001" +274801,Google Phone,1,600,10/02/19 12:04,"454 Johnson St, San Francisco, CA 94016" +274801,USB-C Charging Cable,1,11.95,10/02/19 12:04,"454 Johnson St, San Francisco, CA 94016" +274802,USB-C Charging Cable,1,11.95,10/29/19 08:56,"279 Maple St, Dallas, TX 75001" +274803,iPhone,1,700,10/03/19 21:08,"737 Hickory St, Boston, MA 02215" +274804,Wired Headphones,1,11.99,10/05/19 07:56,"638 Center St, San Francisco, CA 94016" +274805,Bose SoundSport Headphones,1,99.99,10/20/19 21:57,"303 Washington St, Atlanta, GA 30301" +274806,USB-C Charging Cable,1,11.95,10/08/19 09:21,"392 11th St, Portland, ME 04101" +274807,Google Phone,1,600,10/16/19 16:05,"259 6th St, San Francisco, CA 94016" +274808,AA Batteries (4-pack),1,3.84,10/08/19 18:30,"164 4th St, San Francisco, CA 94016" +274809,AAA Batteries (4-pack),1,2.99,10/11/19 21:23,"325 Willow St, Seattle, WA 98101" +274810,Apple Airpods Headphones,1,150,10/27/19 21:10,"980 Madison St, San Francisco, CA 94016" +274811,AAA Batteries (4-pack),1,2.99,10/25/19 13:12,"648 Pine St, Atlanta, GA 30301" +274812,Lightning Charging Cable,1,14.95,10/15/19 04:47,"513 Meadow St, Seattle, WA 98101" +274813,AAA Batteries (4-pack),1,2.99,10/09/19 07:28,"228 6th St, San Francisco, CA 94016" +274814,34in Ultrawide Monitor,1,379.99,10/26/19 20:25,"1 4th St, Atlanta, GA 30301" +274815,Lightning Charging Cable,1,14.95,10/28/19 09:01,"11 Willow St, Dallas, TX 75001" +274816,27in 4K Gaming Monitor,1,389.99,10/18/19 20:01,"501 Lincoln St, Austin, TX 73301" +274817,27in 4K Gaming Monitor,1,389.99,10/22/19 13:02,"6 Willow St, New York City, NY 10001" +274818,USB-C Charging Cable,1,11.95,10/02/19 13:37,"854 North St, San Francisco, CA 94016" +274819,ThinkPad Laptop,1,999.99,10/18/19 15:19,"983 Madison St, Atlanta, GA 30301" +274820,Bose SoundSport Headphones,1,99.99,10/29/19 14:04,"454 13th St, Dallas, TX 75001" +274821,27in FHD Monitor,1,149.99,10/24/19 19:41,"433 Park St, New York City, NY 10001" +274822,Bose SoundSport Headphones,1,99.99,10/04/19 12:17,"408 Washington St, Dallas, TX 75001" +274823,Flatscreen TV,1,300,10/08/19 23:04,"863 Church St, San Francisco, CA 94016" +274824,Wired Headphones,1,11.99,10/22/19 19:43,"404 12th St, Dallas, TX 75001" +274825,Macbook Pro Laptop,1,1700,10/07/19 23:04,"920 Elm St, San Francisco, CA 94016" +274826,USB-C Charging Cable,1,11.95,10/07/19 22:42,"38 Dogwood St, Dallas, TX 75001" +274827,Apple Airpods Headphones,1,150,10/08/19 22:48,"91 9th St, Boston, MA 02215" +274828,ThinkPad Laptop,1,999.99,10/05/19 20:38,"788 Cherry St, San Francisco, CA 94016" +274829,27in 4K Gaming Monitor,1,389.99,10/23/19 16:10,"50 2nd St, Seattle, WA 98101" +274830,Wired Headphones,1,11.99,10/26/19 20:29,"324 14th St, Dallas, TX 75001" +274831,27in 4K Gaming Monitor,1,389.99,10/27/19 13:34,"670 Highland St, San Francisco, CA 94016" +274832,Apple Airpods Headphones,1,150,10/19/19 12:40,"869 Cedar St, San Francisco, CA 94016" +274833,AAA Batteries (4-pack),1,2.99,10/05/19 18:21,"741 Highland St, New York City, NY 10001" +,,,,, +274834,Bose SoundSport Headphones,1,99.99,10/17/19 17:29,"631 Willow St, San Francisco, CA 94016" +274835,AA Batteries (4-pack),1,3.84,10/20/19 00:10,"250 Adams St, Boston, MA 02215" +274836,Lightning Charging Cable,1,14.95,10/04/19 15:35,"238 11th St, Seattle, WA 98101" +274837,Lightning Charging Cable,1,14.95,10/10/19 14:07,"547 Lake St, Seattle, WA 98101" +274838,USB-C Charging Cable,1,11.95,10/07/19 18:07,"945 Elm St, San Francisco, CA 94016" +274839,Macbook Pro Laptop,1,1700,10/09/19 15:12,"53 7th St, Seattle, WA 98101" +274840,20in Monitor,1,109.99,10/20/19 09:42,"13 Lakeview St, San Francisco, CA 94016" +274841,27in FHD Monitor,1,149.99,10/14/19 19:42,"45 Maple St, San Francisco, CA 94016" +274842,AAA Batteries (4-pack),1,2.99,10/07/19 21:14,"113 Lakeview St, Austin, TX 73301" +274843,Wired Headphones,1,11.99,10/26/19 07:54,"980 2nd St, Atlanta, GA 30301" +274844,USB-C Charging Cable,1,11.95,10/24/19 05:07,"7 River St, Los Angeles, CA 90001" +274845,Lightning Charging Cable,1,14.95,10/28/19 19:01,"417 West St, San Francisco, CA 94016" +274846,USB-C Charging Cable,1,11.95,10/15/19 22:16,"480 12th St, New York City, NY 10001" +274847,Bose SoundSport Headphones,2,99.99,10/28/19 23:33,"260 9th St, Boston, MA 02215" +274848,Apple Airpods Headphones,1,150,10/26/19 21:53,"98 Washington St, Boston, MA 02215" +274849,Flatscreen TV,1,300,10/20/19 14:04,"935 Cherry St, San Francisco, CA 94016" +274850,Lightning Charging Cable,1,14.95,10/30/19 15:33,"816 Main St, Boston, MA 02215" +274851,Bose SoundSport Headphones,1,99.99,10/02/19 11:30,"693 Main St, San Francisco, CA 94016" +274852,USB-C Charging Cable,2,11.95,10/01/19 10:06,"514 North St, San Francisco, CA 94016" +274853,Lightning Charging Cable,1,14.95,10/06/19 12:05,"461 11th St, Portland, ME 04101" +274854,USB-C Charging Cable,1,11.95,10/19/19 21:33,"122 Chestnut St, New York City, NY 10001" +274855,Bose SoundSport Headphones,1,99.99,10/26/19 14:13,"804 Park St, New York City, NY 10001" +274856,AA Batteries (4-pack),1,3.84,10/18/19 12:52,"919 Walnut St, Boston, MA 02215" +274857,USB-C Charging Cable,1,11.95,10/09/19 17:35,"880 Maple St, San Francisco, CA 94016" +274858,27in FHD Monitor,1,149.99,10/08/19 20:21,"767 Lincoln St, Boston, MA 02215" +274859,Bose SoundSport Headphones,1,99.99,10/26/19 00:33,"785 8th St, New York City, NY 10001" +274860,Wired Headphones,1,11.99,10/30/19 14:02,"616 Sunset St, Dallas, TX 75001" +274861,AA Batteries (4-pack),1,3.84,10/10/19 18:05,"567 Walnut St, Los Angeles, CA 90001" +274862,Apple Airpods Headphones,1,150,10/11/19 15:00,"371 River St, Los Angeles, CA 90001" +274863,Flatscreen TV,1,300,10/04/19 21:58,"63 13th St, Dallas, TX 75001" +274864,USB-C Charging Cable,2,11.95,10/25/19 01:03,"302 7th St, Los Angeles, CA 90001" +274865,27in 4K Gaming Monitor,1,389.99,10/03/19 16:19,"723 Chestnut St, San Francisco, CA 94016" +274866,USB-C Charging Cable,1,11.95,10/17/19 20:51,"126 4th St, San Francisco, CA 94016" +274867,AA Batteries (4-pack),1,3.84,10/08/19 22:26,"396 Sunset St, Seattle, WA 98101" +274868,Google Phone,1,600,10/02/19 21:05,"413 1st St, New York City, NY 10001" +274869,AAA Batteries (4-pack),1,2.99,10/11/19 11:29,"255 Lakeview St, Boston, MA 02215" +274870,iPhone,1,700,10/10/19 22:39,"579 14th St, San Francisco, CA 94016" +274871,Apple Airpods Headphones,1,150,10/09/19 16:22,"931 Cherry St, San Francisco, CA 94016" +274872,34in Ultrawide Monitor,1,379.99,10/12/19 10:52,"390 Lake St, New York City, NY 10001" +274873,USB-C Charging Cable,1,11.95,10/29/19 21:02,"851 Park St, San Francisco, CA 94016" +274874,AAA Batteries (4-pack),2,2.99,10/01/19 17:42,"698 Wilson St, New York City, NY 10001" +274875,AA Batteries (4-pack),2,3.84,10/14/19 11:32,"466 8th St, San Francisco, CA 94016" +,,,,, +274876,27in FHD Monitor,1,149.99,10/26/19 21:32,"156 Forest St, New York City, NY 10001" +274877,Flatscreen TV,1,300,10/17/19 00:06,"304 Center St, Boston, MA 02215" +274878,Wired Headphones,1,11.99,10/08/19 16:36,"490 West St, San Francisco, CA 94016" +274879,AAA Batteries (4-pack),1,2.99,10/13/19 06:30,"213 Center St, Boston, MA 02215" +274880,Bose SoundSport Headphones,1,99.99,10/29/19 15:42,"765 Pine St, New York City, NY 10001" +274881,AAA Batteries (4-pack),3,2.99,10/31/19 22:54,"863 Dogwood St, Portland, OR 97035" +274882,27in 4K Gaming Monitor,1,389.99,10/02/19 00:06,"197 Jefferson St, San Francisco, CA 94016" +274883,USB-C Charging Cable,1,11.95,10/01/19 12:27,"139 Lakeview St, San Francisco, CA 94016" +274884,Wired Headphones,1,11.99,10/22/19 21:04,"675 9th St, San Francisco, CA 94016" +274885,Bose SoundSport Headphones,1,99.99,10/13/19 18:25,"913 7th St, San Francisco, CA 94016" +274886,AAA Batteries (4-pack),7,2.99,10/25/19 20:57,"735 Lincoln St, San Francisco, CA 94016" +274887,Bose SoundSport Headphones,1,99.99,10/27/19 19:05,"378 Maple St, San Francisco, CA 94016" +274888,27in FHD Monitor,1,149.99,10/12/19 13:13,"197 Washington St, Seattle, WA 98101" +274889,Wired Headphones,1,11.99,10/11/19 20:36,"781 Cedar St, Atlanta, GA 30301" +274890,AA Batteries (4-pack),1,3.84,10/23/19 09:56,"627 10th St, San Francisco, CA 94016" +274891,Flatscreen TV,1,300,10/04/19 07:55,"646 Meadow St, Atlanta, GA 30301" +274892,Google Phone,1,600,10/17/19 13:39,"561 River St, San Francisco, CA 94016" +274892,Wired Headphones,1,11.99,10/17/19 13:39,"561 River St, San Francisco, CA 94016" +274893,Apple Airpods Headphones,1,150,10/09/19 18:57,"821 Ridge St, Boston, MA 02215" +274894,iPhone,1,700,10/09/19 06:27,"81 Ridge St, Boston, MA 02215" +274895,AA Batteries (4-pack),1,3.84,10/29/19 13:45,"565 West St, Los Angeles, CA 90001" +274896,Wired Headphones,1,11.99,10/18/19 10:26,"659 Dogwood St, Seattle, WA 98101" +274897,Wired Headphones,1,11.99,10/22/19 02:30,"587 Highland St, Los Angeles, CA 90001" +274898,Wired Headphones,2,11.99,10/21/19 14:15,"78 Hill St, Seattle, WA 98101" +274899,AAA Batteries (4-pack),2,2.99,10/23/19 09:38,"87 Sunset St, Los Angeles, CA 90001" +274900,Lightning Charging Cable,1,14.95,10/22/19 23:53,"452 Lake St, Los Angeles, CA 90001" +274901,iPhone,1,700,10/13/19 09:05,"318 Adams St, San Francisco, CA 94016" +274901,Lightning Charging Cable,1,14.95,10/13/19 09:05,"318 Adams St, San Francisco, CA 94016" +274902,USB-C Charging Cable,2,11.95,10/26/19 14:04,"597 12th St, Boston, MA 02215" +274903,USB-C Charging Cable,1,11.95,10/18/19 12:47,"454 11th St, Austin, TX 73301" +274904,Macbook Pro Laptop,1,1700,10/23/19 10:07,"829 12th St, San Francisco, CA 94016" +274905,Macbook Pro Laptop,1,1700,10/15/19 21:23,"467 11th St, New York City, NY 10001" +274906,Apple Airpods Headphones,1,150,10/15/19 19:53,"274 North St, Austin, TX 73301" +274907,Apple Airpods Headphones,1,150,10/15/19 19:55,"424 South St, Atlanta, GA 30301" +274908,34in Ultrawide Monitor,1,379.99,10/09/19 03:38,"407 Dogwood St, Los Angeles, CA 90001" +274909,34in Ultrawide Monitor,1,379.99,10/07/19 11:44,"235 West St, San Francisco, CA 94016" +274910,Lightning Charging Cable,1,14.95,10/13/19 12:42,"481 Maple St, Los Angeles, CA 90001" +274911,Wired Headphones,1,11.99,10/27/19 01:23,"947 4th St, San Francisco, CA 94016" +274912,27in 4K Gaming Monitor,1,389.99,10/17/19 06:30,"715 6th St, Boston, MA 02215" +274913,AAA Batteries (4-pack),2,2.99,10/16/19 10:52,"263 Dogwood St, Austin, TX 73301" +274914,AA Batteries (4-pack),1,3.84,10/17/19 11:37,"517 13th St, San Francisco, CA 94016" +274915,iPhone,1,700,10/20/19 02:17,"99 North St, Portland, ME 04101" +274916,iPhone,1,700,10/24/19 19:21,"79 6th St, Dallas, TX 75001" +274916,Lightning Charging Cable,1,14.95,10/24/19 19:21,"79 6th St, Dallas, TX 75001" +274917,Apple Airpods Headphones,1,150,10/31/19 10:06,"567 12th St, Los Angeles, CA 90001" +274918,Apple Airpods Headphones,1,150,10/17/19 10:33,"978 8th St, New York City, NY 10001" +274919,27in 4K Gaming Monitor,1,389.99,10/27/19 23:16,"453 Johnson St, Los Angeles, CA 90001" +274920,AAA Batteries (4-pack),1,2.99,10/26/19 18:41,"44 10th St, San Francisco, CA 94016" +274921,USB-C Charging Cable,1,11.95,10/26/19 20:22,"778 4th St, Atlanta, GA 30301" +274922,27in FHD Monitor,1,149.99,10/20/19 00:35,"403 Spruce St, Seattle, WA 98101" +274923,Google Phone,1,600,10/28/19 21:21,"966 Jefferson St, Austin, TX 73301" +274924,Lightning Charging Cable,1,14.95,10/05/19 16:46,"398 Dogwood St, Boston, MA 02215" +274925,AAA Batteries (4-pack),1,2.99,10/09/19 11:12,"284 Park St, Dallas, TX 75001" +274926,USB-C Charging Cable,1,11.95,10/22/19 12:26,"842 Dogwood St, Los Angeles, CA 90001" +274927,27in 4K Gaming Monitor,1,389.99,10/07/19 21:44,"396 Willow St, San Francisco, CA 94016" +274928,Bose SoundSport Headphones,1,99.99,10/02/19 21:24,"397 9th St, New York City, NY 10001" +274929,USB-C Charging Cable,1,11.95,10/05/19 11:31,"692 Johnson St, Boston, MA 02215" +274930,Vareebadd Phone,1,400,10/27/19 15:22,"580 9th St, San Francisco, CA 94016" +274931,27in FHD Monitor,1,149.99,10/05/19 11:40,"185 Wilson St, Portland, OR 97035" +274932,34in Ultrawide Monitor,1,379.99,10/17/19 14:07,"303 Sunset St, Boston, MA 02215" +274933,ThinkPad Laptop,1,999.99,10/14/19 22:28,"277 Highland St, San Francisco, CA 94016" +274934,Lightning Charging Cable,1,14.95,10/04/19 11:55,"644 Wilson St, Dallas, TX 75001" +274935,Apple Airpods Headphones,1,150,10/20/19 20:39,"281 2nd St, Atlanta, GA 30301" +274936,Wired Headphones,1,11.99,10/05/19 02:20,"107 Ridge St, Dallas, TX 75001" +274937,Wired Headphones,2,11.99,10/18/19 17:20,"786 2nd St, San Francisco, CA 94016" +274938,Wired Headphones,1,11.99,10/04/19 15:05,"714 Cedar St, Portland, OR 97035" +274939,USB-C Charging Cable,1,11.95,10/27/19 23:47,"762 Lakeview St, Los Angeles, CA 90001" +274940,Lightning Charging Cable,1,14.95,10/22/19 20:07,"139 Ridge St, San Francisco, CA 94016" +274941,Wired Headphones,1,11.99,10/04/19 08:05,"146 Jackson St, Boston, MA 02215" +274942,Lightning Charging Cable,1,14.95,10/15/19 01:12,"23 West St, Atlanta, GA 30301" +274943,Wired Headphones,2,11.99,10/19/19 17:37,"188 Pine St, Boston, MA 02215" +274944,AAA Batteries (4-pack),1,2.99,10/11/19 17:10,"905 Meadow St, New York City, NY 10001" +274945,AA Batteries (4-pack),2,3.84,10/30/19 18:21,"419 4th St, Dallas, TX 75001" +274946,AAA Batteries (4-pack),1,2.99,10/23/19 22:55,"731 12th St, Seattle, WA 98101" +274947,27in FHD Monitor,1,149.99,10/30/19 21:46,"958 Sunset St, New York City, NY 10001" +274948,Bose SoundSport Headphones,1,99.99,10/08/19 18:08,"234 Johnson St, San Francisco, CA 94016" +274949,Vareebadd Phone,1,400,10/05/19 11:34,"672 River St, San Francisco, CA 94016" +274950,iPhone,1,700,10/03/19 23:04,"612 Lincoln St, Seattle, WA 98101" +274951,34in Ultrawide Monitor,1,379.99,10/21/19 21:21,"800 River St, Boston, MA 02215" +274952,Lightning Charging Cable,1,14.95,10/22/19 21:53,"174 10th St, Portland, ME 04101" +274953,Wired Headphones,1,11.99,10/25/19 15:25,"202 River St, New York City, NY 10001" +274954,Wired Headphones,1,11.99,10/21/19 18:53,"788 Dogwood St, New York City, NY 10001" +274955,AAA Batteries (4-pack),2,2.99,10/14/19 13:57,"122 8th St, Boston, MA 02215" +274956,Wired Headphones,1,11.99,10/14/19 11:25,"439 Johnson St, Austin, TX 73301" +274957,Flatscreen TV,1,300,10/19/19 13:47,"206 River St, San Francisco, CA 94016" +274958,Lightning Charging Cable,1,14.95,10/13/19 19:09,"343 Church St, New York City, NY 10001" +274959,Wired Headphones,1,11.99,10/07/19 13:42,"768 Pine St, Portland, OR 97035" +274960,34in Ultrawide Monitor,1,379.99,10/11/19 13:16,"426 Ridge St, Austin, TX 73301" +274961,Vareebadd Phone,1,400,10/05/19 12:13,"877 Jefferson St, New York City, NY 10001" +274962,Macbook Pro Laptop,1,1700,10/27/19 19:56,"457 Maple St, Atlanta, GA 30301" +274963,Wired Headphones,1,11.99,10/09/19 19:31,"198 Highland St, Los Angeles, CA 90001" +274964,AAA Batteries (4-pack),1,2.99,10/14/19 20:59,"781 6th St, Austin, TX 73301" +274965,USB-C Charging Cable,1,11.95,10/19/19 22:28,"907 Park St, Austin, TX 73301" +274966,LG Washing Machine,1,600.0,10/27/19 01:32,"624 Elm St, Los Angeles, CA 90001" +274967,Bose SoundSport Headphones,1,99.99,10/17/19 15:05,"609 12th St, Los Angeles, CA 90001" +274968,Apple Airpods Headphones,1,150,10/10/19 23:06,"252 Adams St, New York City, NY 10001" +274969,AA Batteries (4-pack),1,3.84,10/22/19 18:06,"244 Meadow St, New York City, NY 10001" +274970,AAA Batteries (4-pack),1,2.99,10/08/19 04:26,"483 Cedar St, Seattle, WA 98101" +274971,Macbook Pro Laptop,1,1700,10/19/19 17:37,"351 7th St, Dallas, TX 75001" +274972,Wired Headphones,1,11.99,10/09/19 14:31,"7 Ridge St, San Francisco, CA 94016" +274973,27in FHD Monitor,1,149.99,10/23/19 17:25,"284 South St, New York City, NY 10001" +274974,Apple Airpods Headphones,1,150,10/13/19 22:20,"952 11th St, Boston, MA 02215" +274975,LG Dryer,1,600.0,10/14/19 22:29,"984 Adams St, New York City, NY 10001" +,,,,, +274976,20in Monitor,1,109.99,10/03/19 22:14,"860 Main St, San Francisco, CA 94016" +274977,AAA Batteries (4-pack),1,2.99,10/27/19 19:27,"910 13th St, Austin, TX 73301" +274978,Wired Headphones,1,11.99,10/31/19 10:00,"247 Walnut St, Atlanta, GA 30301" +274979,34in Ultrawide Monitor,2,379.99,10/18/19 17:47,"598 Church St, Seattle, WA 98101" +274980,Google Phone,1,600,10/07/19 11:46,"943 Center St, Los Angeles, CA 90001" +274981,27in FHD Monitor,1,149.99,10/06/19 23:36,"632 Walnut St, New York City, NY 10001" +274982,Lightning Charging Cable,1,14.95,10/23/19 21:20,"800 9th St, San Francisco, CA 94016" +274983,AA Batteries (4-pack),1,3.84,10/21/19 15:46,"362 Madison St, Dallas, TX 75001" +274984,AA Batteries (4-pack),1,3.84,10/18/19 08:08,"353 Meadow St, San Francisco, CA 94016" +274985,Lightning Charging Cable,1,14.95,10/09/19 18:14,"503 4th St, Atlanta, GA 30301" +274986,iPhone,1,700,10/05/19 20:52,"683 Lake St, Austin, TX 73301" +274987,Wired Headphones,1,11.99,10/25/19 20:15,"748 Lake St, San Francisco, CA 94016" +274988,AA Batteries (4-pack),1,3.84,10/05/19 07:08,"890 Jefferson St, Boston, MA 02215" +274989,Lightning Charging Cable,1,14.95,10/16/19 19:21,"272 Hill St, Los Angeles, CA 90001" +274990,AAA Batteries (4-pack),1,2.99,10/13/19 15:51,"726 Wilson St, Los Angeles, CA 90001" +274991,Wired Headphones,1,11.99,10/06/19 12:05,"394 6th St, Boston, MA 02215" +274992,Apple Airpods Headphones,1,150,10/18/19 13:50,"349 6th St, Seattle, WA 98101" +274993,AA Batteries (4-pack),1,3.84,10/04/19 15:36,"232 Wilson St, New York City, NY 10001" +274994,Macbook Pro Laptop,1,1700,10/09/19 17:13,"861 Adams St, San Francisco, CA 94016" +274995,USB-C Charging Cable,1,11.95,10/15/19 12:28,"793 5th St, New York City, NY 10001" +274996,AAA Batteries (4-pack),1,2.99,10/07/19 19:04,"609 8th St, Los Angeles, CA 90001" +274997,AAA Batteries (4-pack),1,2.99,10/06/19 01:12,"963 West St, Portland, ME 04101" +274998,Apple Airpods Headphones,1,150,10/07/19 17:15,"375 Washington St, Seattle, WA 98101" +274999,Lightning Charging Cable,1,14.95,10/02/19 16:19,"499 Forest St, Los Angeles, CA 90001" +275000,Macbook Pro Laptop,1,1700,10/27/19 21:49,"35 Forest St, Los Angeles, CA 90001" +275001,USB-C Charging Cable,1,11.95,10/08/19 13:36,"283 13th St, Seattle, WA 98101" +275002,AAA Batteries (4-pack),1,2.99,10/05/19 18:21,"740 Forest St, Los Angeles, CA 90001" +275003,AA Batteries (4-pack),1,3.84,10/21/19 12:41,"380 Hickory St, Austin, TX 73301" +275004,20in Monitor,1,109.99,10/21/19 11:54,"723 Hill St, Atlanta, GA 30301" +275005,27in FHD Monitor,1,149.99,10/06/19 17:56,"861 Jefferson St, Atlanta, GA 30301" +275006,AA Batteries (4-pack),2,3.84,10/08/19 17:38,"446 2nd St, Boston, MA 02215" +275007,USB-C Charging Cable,1,11.95,10/01/19 13:49,"352 Walnut St, New York City, NY 10001" +275008,AAA Batteries (4-pack),1,2.99,11/01/19 00:57,"826 4th St, San Francisco, CA 94016" +275009,34in Ultrawide Monitor,1,379.99,10/21/19 14:39,"805 Lincoln St, San Francisco, CA 94016" +275010,Wired Headphones,1,11.99,10/04/19 03:04,"391 8th St, San Francisco, CA 94016" +275011,AAA Batteries (4-pack),2,2.99,10/28/19 17:54,"958 7th St, Los Angeles, CA 90001" +275012,AAA Batteries (4-pack),1,2.99,10/14/19 10:32,"217 Hickory St, Austin, TX 73301" +275013,Google Phone,1,600,10/28/19 23:45,"777 Madison St, Atlanta, GA 30301" +275013,USB-C Charging Cable,1,11.95,10/28/19 23:45,"777 Madison St, Atlanta, GA 30301" +275014,34in Ultrawide Monitor,1,379.99,10/28/19 08:57,"858 6th St, Atlanta, GA 30301" +275015,AA Batteries (4-pack),2,3.84,10/18/19 21:47,"574 Lincoln St, Atlanta, GA 30301" +275016,iPhone,1,700,10/13/19 09:31,"631 North St, New York City, NY 10001" +275017,USB-C Charging Cable,1,11.95,10/24/19 23:12,"507 Wilson St, Los Angeles, CA 90001" +275018,iPhone,1,700,10/28/19 13:05,"33 Madison St, San Francisco, CA 94016" +275018,Lightning Charging Cable,1,14.95,10/28/19 13:05,"33 Madison St, San Francisco, CA 94016" +275019,AAA Batteries (4-pack),2,2.99,10/09/19 22:46,"854 Lakeview St, Seattle, WA 98101" +275020,iPhone,1,700,10/14/19 13:13,"878 Chestnut St, San Francisco, CA 94016" +275021,AA Batteries (4-pack),3,3.84,10/06/19 12:49,"811 Elm St, San Francisco, CA 94016" +275022,AAA Batteries (4-pack),1,2.99,10/05/19 15:41,"16 Meadow St, Boston, MA 02215" +275023,Bose SoundSport Headphones,1,99.99,10/30/19 21:53,"878 Main St, San Francisco, CA 94016" +275024,AAA Batteries (4-pack),1,2.99,10/17/19 15:27,"480 North St, Boston, MA 02215" +275025,ThinkPad Laptop,1,999.99,10/05/19 22:20,"30 11th St, New York City, NY 10001" +275026,Google Phone,1,600,10/01/19 19:57,"687 14th St, San Francisco, CA 94016" +275026,Wired Headphones,1,11.99,10/01/19 19:57,"687 14th St, San Francisco, CA 94016" +275027,Flatscreen TV,1,300,10/24/19 20:02,"611 Church St, San Francisco, CA 94016" +275028,Apple Airpods Headphones,1,150,10/28/19 19:33,"301 Spruce St, Atlanta, GA 30301" +275029,Wired Headphones,1,11.99,10/28/19 11:26,"520 Park St, San Francisco, CA 94016" +275030,Apple Airpods Headphones,1,150,10/20/19 15:16,"13 14th St, Boston, MA 02215" +275031,USB-C Charging Cable,2,11.95,10/09/19 21:15,"328 7th St, New York City, NY 10001" +275032,iPhone,1,700,10/09/19 13:03,"879 Willow St, Los Angeles, CA 90001" +275033,20in Monitor,1,109.99,10/27/19 18:44,"859 Dogwood St, Dallas, TX 75001" +275034,Apple Airpods Headphones,1,150,10/11/19 20:19,"953 Chestnut St, Boston, MA 02215" +275035,Lightning Charging Cable,1,14.95,10/27/19 16:08,"931 1st St, Boston, MA 02215" +275036,27in FHD Monitor,1,149.99,10/23/19 22:17,"351 Ridge St, Los Angeles, CA 90001" +275037,Lightning Charging Cable,1,14.95,10/14/19 16:31,"964 Ridge St, San Francisco, CA 94016" +275038,USB-C Charging Cable,1,11.95,10/11/19 08:48,"543 13th St, Los Angeles, CA 90001" +275039,USB-C Charging Cable,1,11.95,10/08/19 20:33,"54 Hill St, San Francisco, CA 94016" +275040,34in Ultrawide Monitor,1,379.99,10/26/19 10:00,"435 Spruce St, Austin, TX 73301" +275041,USB-C Charging Cable,1,11.95,10/06/19 21:41,"357 Elm St, Dallas, TX 75001" +275042,27in FHD Monitor,1,149.99,10/16/19 12:27,"353 Spruce St, San Francisco, CA 94016" +275043,27in FHD Monitor,1,149.99,10/21/19 00:53,"407 Jackson St, Los Angeles, CA 90001" +275044,Bose SoundSport Headphones,1,99.99,10/24/19 07:43,"583 Center St, Los Angeles, CA 90001" +275045,27in FHD Monitor,1,149.99,10/24/19 17:57,"124 1st St, Boston, MA 02215" +275046,AA Batteries (4-pack),1,3.84,10/01/19 13:06,"250 Washington St, Los Angeles, CA 90001" +275047,34in Ultrawide Monitor,1,379.99,10/11/19 23:49,"892 Sunset St, Seattle, WA 98101" +275048,Lightning Charging Cable,1,14.95,10/13/19 08:13,"584 North St, San Francisco, CA 94016" +275049,AA Batteries (4-pack),1,3.84,10/09/19 06:36,"320 Madison St, Los Angeles, CA 90001" +275050,Lightning Charging Cable,1,14.95,10/03/19 18:08,"741 Adams St, San Francisco, CA 94016" +275051,20in Monitor,1,109.99,10/07/19 20:17,"91 Pine St, New York City, NY 10001" +275052,Bose SoundSport Headphones,1,99.99,10/13/19 17:19,"12 Jackson St, Portland, OR 97035" +275052,Wired Headphones,2,11.99,10/13/19 17:19,"12 Jackson St, Portland, OR 97035" +275053,AAA Batteries (4-pack),1,2.99,10/13/19 12:53,"622 Park St, Boston, MA 02215" +275054,ThinkPad Laptop,1,999.99,10/22/19 16:23,"97 Cedar St, San Francisco, CA 94016" +275055,Lightning Charging Cable,1,14.95,10/31/19 13:22,"881 Adams St, Los Angeles, CA 90001" +275056,Lightning Charging Cable,1,14.95,10/23/19 14:15,"796 12th St, Atlanta, GA 30301" +275057,USB-C Charging Cable,1,11.95,10/29/19 21:58,"633 4th St, Seattle, WA 98101" +275058,USB-C Charging Cable,1,11.95,10/08/19 11:30,"857 Lincoln St, Boston, MA 02215" +275059,Lightning Charging Cable,1,14.95,10/11/19 18:23,"164 River St, San Francisco, CA 94016" +275060,Apple Airpods Headphones,1,150,10/07/19 13:37,"918 Johnson St, Portland, OR 97035" +275061,Wired Headphones,2,11.99,10/09/19 08:09,"748 8th St, Los Angeles, CA 90001" +,,,,, +275062,Macbook Pro Laptop,1,1700,10/30/19 19:13,"717 1st St, New York City, NY 10001" +275063,Lightning Charging Cable,1,14.95,10/28/19 12:45,"603 Spruce St, Portland, OR 97035" +275064,Wired Headphones,1,11.99,10/10/19 14:52,"12 10th St, Boston, MA 02215" +275065,Apple Airpods Headphones,1,150,10/26/19 18:00,"568 Spruce St, New York City, NY 10001" +275066,Lightning Charging Cable,1,14.95,10/31/19 20:08,"47 8th St, New York City, NY 10001" +275067,AAA Batteries (4-pack),1,2.99,10/18/19 16:51,"566 Spruce St, Portland, OR 97035" +275068,27in FHD Monitor,1,149.99,10/25/19 12:26,"86 Willow St, Los Angeles, CA 90001" +275069,AA Batteries (4-pack),1,3.84,10/25/19 20:24,"493 South St, Atlanta, GA 30301" +275070,USB-C Charging Cable,1,11.95,10/15/19 13:53,"249 9th St, New York City, NY 10001" +275071,Wired Headphones,1,11.99,10/02/19 22:01,"121 10th St, San Francisco, CA 94016" +275072,Apple Airpods Headphones,1,150,10/02/19 18:41,"934 Ridge St, Portland, OR 97035" +275073,Wired Headphones,1,11.99,10/23/19 15:49,"364 Johnson St, Portland, OR 97035" +275074,AAA Batteries (4-pack),1,2.99,10/27/19 00:52,"722 8th St, Boston, MA 02215" +275075,Apple Airpods Headphones,1,150,10/27/19 23:28,"850 12th St, San Francisco, CA 94016" +275076,Lightning Charging Cable,1,14.95,10/28/19 08:30,"789 5th St, Los Angeles, CA 90001" +275077,Apple Airpods Headphones,1,150,10/25/19 18:19,"679 Sunset St, New York City, NY 10001" +275078,AA Batteries (4-pack),1,3.84,10/27/19 22:28,"312 Spruce St, Austin, TX 73301" +275079,Lightning Charging Cable,1,14.95,10/22/19 09:02,"586 Cedar St, Boston, MA 02215" +275080,Wired Headphones,1,11.99,10/15/19 21:48,"605 West St, New York City, NY 10001" +275081,27in FHD Monitor,1,149.99,10/29/19 09:01,"296 Lake St, New York City, NY 10001" +275082,Wired Headphones,1,11.99,10/12/19 17:22,"190 8th St, New York City, NY 10001" +275083,Bose SoundSport Headphones,1,99.99,10/19/19 19:45,"710 10th St, Los Angeles, CA 90001" +275084,Bose SoundSport Headphones,1,99.99,10/15/19 21:14,"800 Adams St, San Francisco, CA 94016" +275085,USB-C Charging Cable,1,11.95,10/10/19 11:34,"533 Lake St, Los Angeles, CA 90001" +275086,Wired Headphones,1,11.99,10/05/19 07:45,"489 Maple St, San Francisco, CA 94016" +275087,Apple Airpods Headphones,1,150,10/21/19 12:57,"417 Chestnut St, San Francisco, CA 94016" +275088,Lightning Charging Cable,1,14.95,10/26/19 08:27,"514 7th St, San Francisco, CA 94016" +275089,USB-C Charging Cable,1,11.95,10/26/19 20:00,"380 2nd St, New York City, NY 10001" +275090,Bose SoundSport Headphones,1,99.99,10/15/19 18:58,"655 5th St, San Francisco, CA 94016" +275091,Bose SoundSport Headphones,1,99.99,10/28/19 17:34,"190 Johnson St, Dallas, TX 75001" +275092,Bose SoundSport Headphones,1,99.99,10/22/19 21:46,"46 Elm St, New York City, NY 10001" +275093,Apple Airpods Headphones,1,150,10/24/19 18:35,"192 Ridge St, Portland, OR 97035" +275094,AA Batteries (4-pack),1,3.84,10/17/19 19:04,"142 Dogwood St, Los Angeles, CA 90001" +275095,Macbook Pro Laptop,1,1700,10/24/19 16:18,"621 11th St, Atlanta, GA 30301" +275096,Lightning Charging Cable,1,14.95,10/02/19 18:36,"729 South St, Los Angeles, CA 90001" +275097,USB-C Charging Cable,1,11.95,10/22/19 16:20,"117 North St, Seattle, WA 98101" +275098,Bose SoundSport Headphones,1,99.99,10/29/19 20:06,"759 Hill St, Boston, MA 02215" +275099,Apple Airpods Headphones,1,150,10/09/19 13:54,"729 Willow St, Dallas, TX 75001" +275100,Bose SoundSport Headphones,1,99.99,10/31/19 11:23,"620 4th St, Dallas, TX 75001" +275101,USB-C Charging Cable,1,11.95,10/17/19 14:30,"558 4th St, Boston, MA 02215" +275102,Lightning Charging Cable,1,14.95,10/31/19 18:55,"718 South St, Los Angeles, CA 90001" +275103,Vareebadd Phone,1,400,10/04/19 14:20,"143 Cedar St, Austin, TX 73301" +275103,USB-C Charging Cable,1,11.95,10/04/19 14:20,"143 Cedar St, Austin, TX 73301" +275104,Vareebadd Phone,1,400,10/12/19 14:58,"571 1st St, Seattle, WA 98101" +275104,ThinkPad Laptop,1,999.99,10/12/19 14:58,"571 1st St, Seattle, WA 98101" +275105,AA Batteries (4-pack),2,3.84,10/26/19 15:38,"533 West St, Austin, TX 73301" +275106,AA Batteries (4-pack),2,3.84,10/14/19 12:25,"721 8th St, Los Angeles, CA 90001" +275107,iPhone,1,700,10/31/19 04:45,"329 9th St, Los Angeles, CA 90001" +275107,USB-C Charging Cable,1,11.95,10/31/19 04:45,"329 9th St, Los Angeles, CA 90001" +275108,20in Monitor,1,109.99,10/31/19 17:58,"517 Meadow St, Portland, ME 04101" +275109,USB-C Charging Cable,1,11.95,10/30/19 15:34,"357 Washington St, San Francisco, CA 94016" +275110,AAA Batteries (4-pack),1,2.99,10/14/19 15:14,"933 13th St, Los Angeles, CA 90001" +275111,Wired Headphones,2,11.99,10/28/19 16:46,"30 Chestnut St, Boston, MA 02215" +275112,USB-C Charging Cable,1,11.95,10/29/19 01:25,"468 Lake St, Dallas, TX 75001" +275113,Apple Airpods Headphones,1,150,10/03/19 16:50,"798 Jackson St, Atlanta, GA 30301" +275114,ThinkPad Laptop,1,999.99,10/02/19 09:41,"59 Center St, Dallas, TX 75001" +275115,Wired Headphones,1,11.99,10/09/19 13:59,"148 Elm St, San Francisco, CA 94016" +275116,Lightning Charging Cable,1,14.95,10/22/19 18:18,"538 Meadow St, San Francisco, CA 94016" +275117,27in FHD Monitor,1,149.99,10/17/19 20:39,"865 Forest St, New York City, NY 10001" +275118,Bose SoundSport Headphones,1,99.99,10/30/19 15:02,"156 Adams St, Boston, MA 02215" +275119,Macbook Pro Laptop,1,1700,10/11/19 15:19,"415 South St, New York City, NY 10001" +275120,AAA Batteries (4-pack),1,2.99,10/11/19 12:12,"210 River St, San Francisco, CA 94016" +275121,Apple Airpods Headphones,1,150,10/30/19 15:21,"812 Wilson St, Los Angeles, CA 90001" +275122,USB-C Charging Cable,1,11.95,10/15/19 12:25,"163 Lake St, San Francisco, CA 94016" +275123,USB-C Charging Cable,1,11.95,10/10/19 08:55,"122 2nd St, Austin, TX 73301" +275124,iPhone,1,700,10/17/19 15:51,"307 Lake St, Dallas, TX 75001" +275124,Lightning Charging Cable,1,14.95,10/17/19 15:51,"307 Lake St, Dallas, TX 75001" +275125,Macbook Pro Laptop,1,1700,10/28/19 22:10,"727 Chestnut St, New York City, NY 10001" +275126,Lightning Charging Cable,1,14.95,10/14/19 00:20,"379 Center St, Austin, TX 73301" +275127,Lightning Charging Cable,1,14.95,10/15/19 12:13,"583 11th St, New York City, NY 10001" +275128,27in 4K Gaming Monitor,1,389.99,10/23/19 10:25,"311 5th St, Atlanta, GA 30301" +275129,Vareebadd Phone,1,400,10/04/19 18:55,"450 Church St, Los Angeles, CA 90001" +275130,ThinkPad Laptop,1,999.99,10/05/19 16:59,"841 Lakeview St, New York City, NY 10001" +275131,AA Batteries (4-pack),1,3.84,10/26/19 18:32,"744 Madison St, New York City, NY 10001" +275132,USB-C Charging Cable,1,11.95,10/26/19 17:07,"241 Hickory St, Los Angeles, CA 90001" +275133,Bose SoundSport Headphones,1,99.99,10/21/19 08:25,"807 Highland St, Seattle, WA 98101" +275134,Wired Headphones,1,11.99,10/24/19 20:30,"90 7th St, San Francisco, CA 94016" +275135,AAA Batteries (4-pack),1,2.99,10/31/19 12:09,"611 Jefferson St, Austin, TX 73301" +275136,27in FHD Monitor,1,149.99,10/20/19 09:15,"630 8th St, San Francisco, CA 94016" +275137,Apple Airpods Headphones,1,150,10/26/19 21:02,"607 14th St, Portland, ME 04101" +275138,AA Batteries (4-pack),1,3.84,10/27/19 12:02,"73 11th St, Los Angeles, CA 90001" +275139,USB-C Charging Cable,1,11.95,10/19/19 16:52,"447 Madison St, Seattle, WA 98101" +275140,Wired Headphones,1,11.99,10/23/19 19:52,"472 7th St, Atlanta, GA 30301" +275141,AA Batteries (4-pack),1,3.84,10/29/19 12:09,"693 Lincoln St, Austin, TX 73301" +275142,AA Batteries (4-pack),1,3.84,10/24/19 18:42,"572 Highland St, San Francisco, CA 94016" +275143,Google Phone,1,600,10/12/19 12:05,"835 Highland St, Austin, TX 73301" +275144,Wired Headphones,1,11.99,10/18/19 20:40,"403 Main St, Atlanta, GA 30301" +275145,Macbook Pro Laptop,1,1700,10/01/19 22:58,"951 Cedar St, Boston, MA 02215" +275146,Vareebadd Phone,1,400,10/21/19 13:37,"335 11th St, Atlanta, GA 30301" +275147,Wired Headphones,1,11.99,10/19/19 12:28,"504 Walnut St, Boston, MA 02215" +275148,AA Batteries (4-pack),1,3.84,10/16/19 20:00,"947 1st St, Los Angeles, CA 90001" +275149,Lightning Charging Cable,1,14.95,10/13/19 00:00,"72 Jefferson St, New York City, NY 10001" +275150,Lightning Charging Cable,1,14.95,10/30/19 17:50,"181 5th St, Boston, MA 02215" +275151,iPhone,1,700,10/17/19 09:21,"598 Johnson St, San Francisco, CA 94016" +275152,Lightning Charging Cable,1,14.95,10/25/19 23:39,"195 Jefferson St, Portland, OR 97035" +275153,AA Batteries (4-pack),2,3.84,10/17/19 07:56,"580 Pine St, San Francisco, CA 94016" +275154,20in Monitor,1,109.99,10/18/19 17:05,"256 Ridge St, Seattle, WA 98101" +275155,AA Batteries (4-pack),1,3.84,10/09/19 19:31,"271 Elm St, San Francisco, CA 94016" +275156,AAA Batteries (4-pack),1,2.99,10/25/19 09:55,"691 Park St, Atlanta, GA 30301" +275157,USB-C Charging Cable,1,11.95,10/15/19 18:03,"593 South St, San Francisco, CA 94016" +275157,Wired Headphones,1,11.99,10/15/19 18:03,"593 South St, San Francisco, CA 94016" +275158,27in 4K Gaming Monitor,1,389.99,10/21/19 13:21,"246 Hickory St, New York City, NY 10001" +275159,Lightning Charging Cable,1,14.95,10/18/19 21:10,"637 4th St, Atlanta, GA 30301" +275160,iPhone,1,700,10/26/19 19:48,"868 Jackson St, San Francisco, CA 94016" +275161,Bose SoundSport Headphones,1,99.99,10/10/19 14:25,"108 12th St, Austin, TX 73301" +275162,ThinkPad Laptop,1,999.99,10/30/19 17:50,"277 Main St, Los Angeles, CA 90001" +275163,Lightning Charging Cable,1,14.95,10/06/19 17:51,"680 River St, Los Angeles, CA 90001" +275163,AA Batteries (4-pack),1,3.84,10/06/19 17:51,"680 River St, Los Angeles, CA 90001" +275164,AAA Batteries (4-pack),1,2.99,10/17/19 14:55,"177 West St, San Francisco, CA 94016" +275165,AAA Batteries (4-pack),1,2.99,10/13/19 11:23,"575 Main St, Boston, MA 02215" +275166,Google Phone,1,600,10/08/19 21:01,"257 Madison St, Los Angeles, CA 90001" +275167,Macbook Pro Laptop,1,1700,10/06/19 19:21,"573 Forest St, New York City, NY 10001" +275168,USB-C Charging Cable,1,11.95,10/03/19 00:16,"898 13th St, San Francisco, CA 94016" +275169,AA Batteries (4-pack),1,3.84,10/01/19 19:21,"147 Jackson St, Boston, MA 02215" +275170,Lightning Charging Cable,1,14.95,10/31/19 03:11,"639 Sunset St, Austin, TX 73301" +275171,AA Batteries (4-pack),1,3.84,10/03/19 09:00,"453 Pine St, Los Angeles, CA 90001" +275172,Lightning Charging Cable,1,14.95,10/06/19 20:33,"312 Jackson St, Los Angeles, CA 90001" +275173,AA Batteries (4-pack),1,3.84,10/28/19 19:30,"588 Dogwood St, Boston, MA 02215" +275174,ThinkPad Laptop,1,999.99,10/16/19 16:02,"299 Main St, San Francisco, CA 94016" +275175,LG Dryer,1,600.0,10/09/19 12:02,"120 North St, Atlanta, GA 30301" +275176,AA Batteries (4-pack),1,3.84,10/22/19 15:54,"270 10th St, Los Angeles, CA 90001" +275177,Wired Headphones,1,11.99,10/05/19 15:53,"166 Hickory St, Los Angeles, CA 90001" +275178,AA Batteries (4-pack),2,3.84,10/30/19 20:25,"26 Main St, New York City, NY 10001" +275179,USB-C Charging Cable,1,11.95,10/25/19 15:35,"206 6th St, San Francisco, CA 94016" +275180,AAA Batteries (4-pack),3,2.99,10/17/19 15:52,"217 13th St, Seattle, WA 98101" +275181,Lightning Charging Cable,1,14.95,10/19/19 04:03,"473 4th St, Los Angeles, CA 90001" +275182,Bose SoundSport Headphones,1,99.99,10/28/19 19:05,"78 9th St, New York City, NY 10001" +275183,Lightning Charging Cable,1,14.95,10/21/19 21:14,"366 8th St, Los Angeles, CA 90001" +275184,ThinkPad Laptop,1,999.99,10/01/19 19:44,"892 River St, San Francisco, CA 94016" +275185,34in Ultrawide Monitor,1,379.99,10/14/19 21:56,"727 Hill St, Portland, ME 04101" +275185,Macbook Pro Laptop,1,1700,10/14/19 21:56,"727 Hill St, Portland, ME 04101" +275186,AA Batteries (4-pack),1,3.84,10/16/19 08:54,"94 Main St, Los Angeles, CA 90001" +275187,20in Monitor,1,109.99,10/30/19 14:56,"274 Meadow St, Boston, MA 02215" +275188,iPhone,1,700,10/29/19 13:14,"98 Sunset St, San Francisco, CA 94016" +275189,Wired Headphones,1,11.99,10/31/19 22:07,"580 Church St, Dallas, TX 75001" +275190,AAA Batteries (4-pack),1,2.99,10/16/19 20:37,"229 Adams St, San Francisco, CA 94016" +275191,AAA Batteries (4-pack),3,2.99,10/15/19 00:46,"532 North St, Seattle, WA 98101" +275192,iPhone,1,700,10/14/19 19:51,"493 Cedar St, New York City, NY 10001" +275192,Lightning Charging Cable,1,14.95,10/14/19 19:51,"493 Cedar St, New York City, NY 10001" +275193,34in Ultrawide Monitor,1,379.99,10/22/19 13:40,"165 8th St, Los Angeles, CA 90001" +275194,Bose SoundSport Headphones,1,99.99,10/10/19 07:52,"317 Walnut St, New York City, NY 10001" +275195,Lightning Charging Cable,1,14.95,10/30/19 14:10,"330 North St, New York City, NY 10001" +275196,Google Phone,1,600,10/15/19 17:16,"983 14th St, Seattle, WA 98101" +275197,iPhone,1,700,10/14/19 22:34,"989 Pine St, New York City, NY 10001" +275198,27in 4K Gaming Monitor,1,389.99,10/17/19 16:19,"22 11th St, New York City, NY 10001" +275199,Wired Headphones,1,11.99,10/25/19 15:52,"323 Chestnut St, Dallas, TX 75001" +275200,AAA Batteries (4-pack),1,2.99,10/15/19 17:13,"419 Elm St, Los Angeles, CA 90001" +275201,AAA Batteries (4-pack),2,2.99,10/09/19 14:59,"933 14th St, New York City, NY 10001" +275202,AAA Batteries (4-pack),2,2.99,10/25/19 04:01,"38 5th St, Seattle, WA 98101" +275203,AAA Batteries (4-pack),1,2.99,10/30/19 21:52,"299 Cedar St, Atlanta, GA 30301" +275204,USB-C Charging Cable,1,11.95,10/29/19 12:51,"666 Cedar St, Los Angeles, CA 90001" +275205,AAA Batteries (4-pack),1,2.99,10/30/19 11:41,"787 Cedar St, Atlanta, GA 30301" +275206,27in FHD Monitor,1,149.99,10/22/19 13:59,"436 9th St, Portland, OR 97035" +275207,Lightning Charging Cable,1,14.95,10/10/19 11:57,"130 Jefferson St, Dallas, TX 75001" +275208,34in Ultrawide Monitor,1,379.99,10/17/19 13:22,"231 Jefferson St, Boston, MA 02215" +275209,Apple Airpods Headphones,1,150,10/18/19 10:14,"691 Lakeview St, Atlanta, GA 30301" +275210,AAA Batteries (4-pack),3,2.99,10/04/19 16:51,"173 West St, Los Angeles, CA 90001" +275211,iPhone,1,700,10/19/19 00:06,"101 Washington St, Boston, MA 02215" +275212,Lightning Charging Cable,1,14.95,10/30/19 10:29,"473 5th St, San Francisco, CA 94016" +275213,34in Ultrawide Monitor,1,379.99,10/01/19 21:03,"25 Adams St, Austin, TX 73301" +275214,Vareebadd Phone,1,400,10/30/19 20:21,"473 Cherry St, San Francisco, CA 94016" +275215,Apple Airpods Headphones,1,150,10/25/19 09:37,"503 Main St, San Francisco, CA 94016" +275216,AA Batteries (4-pack),1,3.84,10/12/19 13:20,"469 Walnut St, San Francisco, CA 94016" +275217,Lightning Charging Cable,1,14.95,10/01/19 21:22,"89 5th St, San Francisco, CA 94016" +275218,AAA Batteries (4-pack),1,2.99,10/10/19 12:47,"755 Jackson St, Los Angeles, CA 90001" +275219,Wired Headphones,1,11.99,10/14/19 10:10,"23 West St, New York City, NY 10001" +275220,USB-C Charging Cable,1,11.95,10/18/19 20:45,"908 Hickory St, New York City, NY 10001" +275221,Google Phone,1,600,10/05/19 20:23,"592 North St, Los Angeles, CA 90001" +275222,Google Phone,1,600,10/29/19 12:14,"339 Lake St, New York City, NY 10001" +275223,Macbook Pro Laptop,1,1700,10/17/19 18:48,"68 Dogwood St, Los Angeles, CA 90001" +275224,Macbook Pro Laptop,1,1700,10/01/19 21:40,"299 13th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +275225,iPhone,1,700,10/01/19 19:01,"406 Dogwood St, New York City, NY 10001" +275226,AAA Batteries (4-pack),3,2.99,10/19/19 14:15,"743 10th St, Dallas, TX 75001" +275227,AA Batteries (4-pack),2,3.84,10/24/19 14:25,"622 Madison St, Boston, MA 02215" +275228,iPhone,1,700,10/03/19 00:11,"707 8th St, Los Angeles, CA 90001" +275229,Flatscreen TV,1,300,10/28/19 12:18,"926 Ridge St, Los Angeles, CA 90001" +275230,AAA Batteries (4-pack),1,2.99,10/13/19 09:33,"85 Park St, Boston, MA 02215" +275231,iPhone,1,700,10/25/19 21:59,"934 Washington St, Los Angeles, CA 90001" +275231,Wired Headphones,1,11.99,10/25/19 21:59,"934 Washington St, Los Angeles, CA 90001" +275232,USB-C Charging Cable,1,11.95,10/18/19 17:03,"209 Wilson St, San Francisco, CA 94016" +275233,Google Phone,1,600,10/31/19 15:28,"921 Lake St, Los Angeles, CA 90001" +275233,Wired Headphones,1,11.99,10/31/19 15:28,"921 Lake St, Los Angeles, CA 90001" +275234,Wired Headphones,1,11.99,10/23/19 19:21,"887 North St, San Francisco, CA 94016" +275235,AAA Batteries (4-pack),2,2.99,10/24/19 11:41,"283 Ridge St, New York City, NY 10001" +275236,Apple Airpods Headphones,1,150,10/29/19 00:15,"51 13th St, Dallas, TX 75001" +275237,Bose SoundSport Headphones,1,99.99,10/17/19 11:53,"614 North St, Austin, TX 73301" +275238,AAA Batteries (4-pack),2,2.99,10/03/19 09:35,"686 5th St, Los Angeles, CA 90001" +275239,ThinkPad Laptop,1,999.99,10/19/19 11:39,"733 Cherry St, New York City, NY 10001" +275240,Apple Airpods Headphones,1,150,10/17/19 09:42,"34 Center St, Atlanta, GA 30301" +275241,AA Batteries (4-pack),1,3.84,10/08/19 14:02,"425 Washington St, Boston, MA 02215" +275242,USB-C Charging Cable,1,11.95,10/09/19 20:36,"892 North St, New York City, NY 10001" +275243,Lightning Charging Cable,1,14.95,10/30/19 07:41,"784 Center St, Los Angeles, CA 90001" +275244,Bose SoundSport Headphones,1,99.99,10/24/19 11:47,"409 Spruce St, New York City, NY 10001" +275245,Lightning Charging Cable,1,14.95,10/28/19 10:04,"675 2nd St, Los Angeles, CA 90001" +275246,ThinkPad Laptop,1,999.99,10/16/19 11:44,"969 Dogwood St, New York City, NY 10001" +275247,AA Batteries (4-pack),3,3.84,10/16/19 08:01,"108 6th St, San Francisco, CA 94016" +275248,Lightning Charging Cable,1,14.95,10/05/19 19:13,"668 Hickory St, Atlanta, GA 30301" +275249,Bose SoundSport Headphones,1,99.99,10/09/19 21:10,"396 Johnson St, Los Angeles, CA 90001" +275250,Flatscreen TV,1,300,10/29/19 10:32,"147 1st St, Boston, MA 02215" +275251,ThinkPad Laptop,1,999.99,10/16/19 00:07,"25 Highland St, San Francisco, CA 94016" +275252,Macbook Pro Laptop,1,1700,10/15/19 15:39,"116 Ridge St, Austin, TX 73301" +275253,AAA Batteries (4-pack),1,2.99,10/25/19 10:16,"767 Jefferson St, Portland, OR 97035" +275254,Lightning Charging Cable,1,14.95,10/11/19 17:53,"582 Madison St, Atlanta, GA 30301" +275255,Bose SoundSport Headphones,1,99.99,10/05/19 22:55,"405 Pine St, San Francisco, CA 94016" +275256,Lightning Charging Cable,1,14.95,10/04/19 08:49,"839 5th St, Boston, MA 02215" +275257,Lightning Charging Cable,1,14.95,10/19/19 21:46,"344 Meadow St, New York City, NY 10001" +275258,Bose SoundSport Headphones,1,99.99,10/12/19 11:16,"936 7th St, New York City, NY 10001" +275259,Wired Headphones,1,11.99,10/21/19 09:31,"415 11th St, San Francisco, CA 94016" +275260,AA Batteries (4-pack),1,3.84,10/20/19 18:06,"885 7th St, Los Angeles, CA 90001" +275261,Lightning Charging Cable,1,14.95,10/23/19 13:05,"642 Washington St, San Francisco, CA 94016" +275262,Wired Headphones,1,11.99,10/05/19 21:28,"641 4th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +275263,Lightning Charging Cable,1,14.95,10/27/19 08:19,"635 5th St, Boston, MA 02215" +275264,AA Batteries (4-pack),1,3.84,10/16/19 20:28,"751 Highland St, Portland, OR 97035" +275265,Lightning Charging Cable,1,14.95,10/25/19 13:55,"835 Highland St, San Francisco, CA 94016" +275266,USB-C Charging Cable,1,11.95,10/10/19 06:40,"117 10th St, Los Angeles, CA 90001" +275267,Wired Headphones,1,11.99,10/07/19 12:16,"700 South St, Los Angeles, CA 90001" +275268,AAA Batteries (4-pack),2,2.99,10/19/19 23:03,"46 1st St, San Francisco, CA 94016" +275269,Bose SoundSport Headphones,1,99.99,10/08/19 12:39,"274 Wilson St, Los Angeles, CA 90001" +275270,34in Ultrawide Monitor,1,379.99,10/12/19 22:29,"101 13th St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +275271,Wired Headphones,1,11.99,10/02/19 07:26,"81 Forest St, San Francisco, CA 94016" +275272,ThinkPad Laptop,1,999.99,10/20/19 15:21,"793 North St, Los Angeles, CA 90001" +275273,USB-C Charging Cable,1,11.95,10/14/19 05:39,"857 10th St, San Francisco, CA 94016" +275274,34in Ultrawide Monitor,1,379.99,10/20/19 14:59,"726 8th St, San Francisco, CA 94016" +275275,AAA Batteries (4-pack),2,2.99,10/09/19 13:57,"264 Sunset St, Dallas, TX 75001" +275276,Vareebadd Phone,1,400,10/17/19 10:14,"463 Maple St, Atlanta, GA 30301" +275276,Bose SoundSport Headphones,1,99.99,10/17/19 10:14,"463 Maple St, Atlanta, GA 30301" +275277,AAA Batteries (4-pack),2,2.99,10/20/19 03:47,"278 7th St, Atlanta, GA 30301" +275278,AAA Batteries (4-pack),3,2.99,10/03/19 14:32,"410 5th St, New York City, NY 10001" +275279,USB-C Charging Cable,1,11.95,10/05/19 22:07,"622 11th St, Los Angeles, CA 90001" +275280,Google Phone,1,600,10/14/19 18:34,"317 7th St, Boston, MA 02215" +275281,ThinkPad Laptop,1,999.99,10/11/19 20:51,"322 Lincoln St, Seattle, WA 98101" +275282,Wired Headphones,1,11.99,10/19/19 13:43,"142 Cherry St, San Francisco, CA 94016" +275283,Apple Airpods Headphones,1,150,10/13/19 23:11,"437 13th St, San Francisco, CA 94016" +275284,AA Batteries (4-pack),1,3.84,10/17/19 14:22,"742 Jefferson St, New York City, NY 10001" +275285,20in Monitor,1,109.99,10/29/19 11:34,"292 2nd St, Seattle, WA 98101" +275286,27in FHD Monitor,1,149.99,10/20/19 13:07,"191 Maple St, Seattle, WA 98101" +275287,Bose SoundSport Headphones,1,99.99,10/08/19 14:28,"522 11th St, New York City, NY 10001" +275288,Google Phone,1,600,10/23/19 23:08,"546 Willow St, Boston, MA 02215" +275289,ThinkPad Laptop,1,999.99,10/17/19 10:04,"362 12th St, Los Angeles, CA 90001" +275290,AA Batteries (4-pack),2,3.84,10/02/19 20:26,"820 Ridge St, Atlanta, GA 30301" +275290,Wired Headphones,2,11.99,10/02/19 20:26,"820 Ridge St, Atlanta, GA 30301" +275291,Wired Headphones,1,11.99,10/13/19 14:57,"307 4th St, San Francisco, CA 94016" +275292,USB-C Charging Cable,1,11.95,10/17/19 15:22,"401 9th St, Los Angeles, CA 90001" +275293,USB-C Charging Cable,3,11.95,10/14/19 15:54,"614 Park St, Atlanta, GA 30301" +275294,AA Batteries (4-pack),1,3.84,10/15/19 13:31,"934 Jefferson St, Los Angeles, CA 90001" +275295,AAA Batteries (4-pack),1,2.99,10/17/19 12:32,"872 River St, Seattle, WA 98101" +275296,ThinkPad Laptop,1,999.99,10/17/19 08:30,"639 11th St, Dallas, TX 75001" +275297,Lightning Charging Cable,1,14.95,10/07/19 21:20,"727 Forest St, New York City, NY 10001" +275298,Macbook Pro Laptop,1,1700,10/22/19 20:46,"219 Chestnut St, Los Angeles, CA 90001" +275299,Apple Airpods Headphones,1,150,10/13/19 21:03,"669 2nd St, Boston, MA 02215" +275300,Bose SoundSport Headphones,1,99.99,10/12/19 18:02,"672 13th St, Portland, OR 97035" +275301,27in 4K Gaming Monitor,1,389.99,10/17/19 20:25,"445 Ridge St, San Francisco, CA 94016" +275302,Bose SoundSport Headphones,1,99.99,10/14/19 15:27,"699 12th St, Los Angeles, CA 90001" +275303,AA Batteries (4-pack),1,3.84,10/06/19 17:13,"446 North St, San Francisco, CA 94016" +275304,USB-C Charging Cable,1,11.95,10/06/19 10:27,"766 10th St, Dallas, TX 75001" +275305,iPhone,1,700,10/09/19 11:22,"354 4th St, Los Angeles, CA 90001" +275306,AAA Batteries (4-pack),6,2.99,10/19/19 23:15,"484 Walnut St, Seattle, WA 98101" +275307,Bose SoundSport Headphones,1,99.99,10/10/19 19:46,"492 Church St, San Francisco, CA 94016" +275308,AA Batteries (4-pack),1,3.84,10/07/19 20:54,"66 12th St, San Francisco, CA 94016" +275309,Google Phone,1,600,10/07/19 11:13,"569 Spruce St, Boston, MA 02215" +275310,USB-C Charging Cable,1,11.95,10/15/19 08:05,"156 Spruce St, Portland, ME 04101" +275311,AAA Batteries (4-pack),1,2.99,10/21/19 13:21,"797 Pine St, San Francisco, CA 94016" +275312,USB-C Charging Cable,1,11.95,10/14/19 23:47,"130 Main St, San Francisco, CA 94016" +275313,LG Washing Machine,1,600.0,10/25/19 23:54,"32 Lakeview St, Atlanta, GA 30301" +275314,Apple Airpods Headphones,1,150,10/15/19 04:51,"104 12th St, Portland, OR 97035" +275315,Wired Headphones,1,11.99,10/07/19 11:26,"937 Sunset St, Austin, TX 73301" +275316,iPhone,1,700,10/17/19 13:39,"59 11th St, San Francisco, CA 94016" +275316,Lightning Charging Cable,1,14.95,10/17/19 13:39,"59 11th St, San Francisco, CA 94016" +275316,Wired Headphones,1,11.99,10/17/19 13:39,"59 11th St, San Francisco, CA 94016" +275317,AA Batteries (4-pack),1,3.84,10/18/19 08:50,"726 Center St, Dallas, TX 75001" +275318,AAA Batteries (4-pack),3,2.99,10/05/19 14:13,"841 Lincoln St, San Francisco, CA 94016" +275319,Wired Headphones,1,11.99,10/12/19 18:16,"792 Main St, Dallas, TX 75001" +275320,Bose SoundSport Headphones,1,99.99,10/25/19 00:31,"937 Adams St, San Francisco, CA 94016" +275321,AAA Batteries (4-pack),1,2.99,10/24/19 20:04,"758 Walnut St, Dallas, TX 75001" +275322,Macbook Pro Laptop,1,1700,10/31/19 18:47,"167 13th St, Dallas, TX 75001" +275323,USB-C Charging Cable,2,11.95,10/03/19 08:48,"30 10th St, Boston, MA 02215" +275324,27in 4K Gaming Monitor,1,389.99,10/17/19 14:35,"509 Hill St, Los Angeles, CA 90001" +275325,AAA Batteries (4-pack),3,2.99,10/22/19 17:56,"135 Main St, Los Angeles, CA 90001" +275326,ThinkPad Laptop,1,999.99,10/06/19 03:35,"69 Johnson St, New York City, NY 10001" +275327,USB-C Charging Cable,1,11.95,10/21/19 18:53,"900 North St, Los Angeles, CA 90001" +275328,Lightning Charging Cable,1,14.95,10/05/19 14:49,"576 Madison St, Dallas, TX 75001" +275329,Vareebadd Phone,1,400,10/16/19 06:13,"940 Adams St, San Francisco, CA 94016" +275330,Wired Headphones,1,11.99,10/10/19 19:22,"419 Jefferson St, Portland, ME 04101" +275331,Apple Airpods Headphones,1,150,10/31/19 08:32,"339 Madison St, New York City, NY 10001" +275332,Apple Airpods Headphones,1,150,10/21/19 15:39,"653 Ridge St, Los Angeles, CA 90001" +275333,AA Batteries (4-pack),1,3.84,10/12/19 13:06,"207 5th St, Boston, MA 02215" +275334,Wired Headphones,1,11.99,10/06/19 18:50,"537 Cedar St, Atlanta, GA 30301" +275335,27in 4K Gaming Monitor,1,389.99,10/26/19 16:45,"879 11th St, Boston, MA 02215" +275336,AA Batteries (4-pack),1,3.84,10/06/19 12:18,"512 13th St, San Francisco, CA 94016" +275337,Apple Airpods Headphones,1,150,10/22/19 11:52,"919 Cedar St, Austin, TX 73301" +275338,Flatscreen TV,1,300,10/02/19 11:13,"674 Hill St, New York City, NY 10001" +275339,Wired Headphones,2,11.99,10/09/19 08:58,"509 South St, Dallas, TX 75001" +275340,AA Batteries (4-pack),1,3.84,10/28/19 14:24,"851 Madison St, Atlanta, GA 30301" +275341,AA Batteries (4-pack),1,3.84,10/10/19 20:16,"547 Jackson St, Boston, MA 02215" +275342,Lightning Charging Cable,1,14.95,10/13/19 11:01,"514 Pine St, San Francisco, CA 94016" +275343,Wired Headphones,1,11.99,10/04/19 10:28,"276 14th St, Los Angeles, CA 90001" +275344,Wired Headphones,1,11.99,10/03/19 10:57,"646 North St, Dallas, TX 75001" +275345,Lightning Charging Cable,1,14.95,10/09/19 05:39,"110 Adams St, Portland, OR 97035" +275346,27in FHD Monitor,1,149.99,10/12/19 13:26,"81 Center St, San Francisco, CA 94016" +275347,USB-C Charging Cable,2,11.95,10/06/19 00:13,"971 1st St, Atlanta, GA 30301" +275348,AAA Batteries (4-pack),1,2.99,10/24/19 16:26,"657 Hill St, Boston, MA 02215" +275349,AA Batteries (4-pack),1,3.84,10/01/19 21:02,"702 Maple St, Los Angeles, CA 90001" +275350,iPhone,1,700,10/18/19 21:49,"753 4th St, Atlanta, GA 30301" +275351,Macbook Pro Laptop,1,1700,10/27/19 08:24,"284 Main St, Los Angeles, CA 90001" +275352,USB-C Charging Cable,1,11.95,10/05/19 18:10,"28 Madison St, Los Angeles, CA 90001" +275353,AAA Batteries (4-pack),2,2.99,10/21/19 12:17,"337 Highland St, Portland, OR 97035" +275354,Bose SoundSport Headphones,1,99.99,10/10/19 17:49,"703 10th St, San Francisco, CA 94016" +275355,Bose SoundSport Headphones,1,99.99,10/15/19 20:00,"652 Sunset St, Boston, MA 02215" +275356,Vareebadd Phone,1,400,10/21/19 20:48,"140 Willow St, Los Angeles, CA 90001" +275356,USB-C Charging Cable,1,11.95,10/21/19 20:48,"140 Willow St, Los Angeles, CA 90001" +275357,USB-C Charging Cable,1,11.95,10/05/19 08:44,"924 Cherry St, Seattle, WA 98101" +275358,Wired Headphones,1,11.99,10/17/19 12:20,"574 7th St, Los Angeles, CA 90001" +275359,27in 4K Gaming Monitor,1,389.99,10/28/19 09:15,"356 Adams St, Los Angeles, CA 90001" +275360,27in FHD Monitor,1,149.99,10/17/19 14:23,"228 River St, New York City, NY 10001" +275361,Lightning Charging Cable,1,14.95,10/24/19 09:20,"799 West St, New York City, NY 10001" +275362,Bose SoundSport Headphones,1,99.99,10/04/19 09:45,"64 Spruce St, Portland, OR 97035" +275363,iPhone,1,700,10/07/19 13:20,"819 4th St, Boston, MA 02215" +275364,Apple Airpods Headphones,1,150,10/06/19 20:25,"917 West St, Seattle, WA 98101" +275365,iPhone,1,700,10/10/19 10:02,"410 8th St, Boston, MA 02215" +275365,Lightning Charging Cable,1,14.95,10/10/19 10:02,"410 8th St, Boston, MA 02215" +275366,AAA Batteries (4-pack),1,2.99,10/10/19 23:10,"109 Maple St, Boston, MA 02215" +275367,Bose SoundSport Headphones,1,99.99,10/26/19 14:00,"828 Lakeview St, Dallas, TX 75001" +275368,AAA Batteries (4-pack),1,2.99,10/01/19 11:45,"505 Main St, Portland, OR 97035" +275369,AA Batteries (4-pack),2,3.84,10/28/19 21:24,"83 North St, San Francisco, CA 94016" +275370,Apple Airpods Headphones,1,150,10/01/19 15:18,"83 Sunset St, San Francisco, CA 94016" +275371,20in Monitor,1,109.99,10/17/19 13:46,"553 Chestnut St, New York City, NY 10001" +275372,Lightning Charging Cable,1,14.95,10/11/19 06:50,"926 South St, Dallas, TX 75001" +275373,ThinkPad Laptop,1,999.99,10/31/19 16:58,"230 Jackson St, Los Angeles, CA 90001" +275374,AAA Batteries (4-pack),1,2.99,10/20/19 23:46,"989 South St, Boston, MA 02215" +275375,AA Batteries (4-pack),3,3.84,10/16/19 09:50,"181 Church St, Austin, TX 73301" +275376,Wired Headphones,1,11.99,10/11/19 20:07,"233 Highland St, New York City, NY 10001" +275377,AA Batteries (4-pack),1,3.84,10/12/19 22:43,"121 West St, Boston, MA 02215" +275378,34in Ultrawide Monitor,1,379.99,10/21/19 12:14,"516 Forest St, Portland, OR 97035" +275379,AAA Batteries (4-pack),3,2.99,10/19/19 17:35,"669 1st St, Portland, OR 97035" +275380,ThinkPad Laptop,1,999.99,10/18/19 09:07,"436 Johnson St, Boston, MA 02215" +275381,iPhone,1,700,10/05/19 09:51,"860 Park St, Boston, MA 02215" +275381,Lightning Charging Cable,1,14.95,10/05/19 09:51,"860 Park St, Boston, MA 02215" +275382,AA Batteries (4-pack),1,3.84,10/17/19 18:20,"92 Sunset St, San Francisco, CA 94016" +275383,Macbook Pro Laptop,1,1700,10/31/19 15:13,"863 4th St, San Francisco, CA 94016" +275384,34in Ultrawide Monitor,1,379.99,10/05/19 14:37,"46 Chestnut St, San Francisco, CA 94016" +275385,AAA Batteries (4-pack),3,2.99,10/11/19 10:55,"118 12th St, Los Angeles, CA 90001" +275386,Wired Headphones,1,11.99,10/25/19 20:59,"915 9th St, Dallas, TX 75001" +275387,Bose SoundSport Headphones,1,99.99,10/30/19 16:16,"845 6th St, Dallas, TX 75001" +275388,USB-C Charging Cable,1,11.95,10/16/19 21:22,"789 8th St, San Francisco, CA 94016" +275389,USB-C Charging Cable,1,11.95,10/04/19 07:58,"272 South St, Los Angeles, CA 90001" +275390,Lightning Charging Cable,1,14.95,10/24/19 09:56,"420 Lincoln St, San Francisco, CA 94016" +275391,Flatscreen TV,1,300,10/29/19 11:39,"970 River St, Dallas, TX 75001" +275392,27in FHD Monitor,1,149.99,10/07/19 18:49,"508 8th St, San Francisco, CA 94016" +275393,AAA Batteries (4-pack),2,2.99,10/23/19 15:54,"396 Jackson St, Boston, MA 02215" +275394,27in 4K Gaming Monitor,1,389.99,10/17/19 11:24,"673 Church St, San Francisco, CA 94016" +275395,Wired Headphones,1,11.99,10/02/19 14:48,"629 Lincoln St, Seattle, WA 98101" +275396,27in 4K Gaming Monitor,1,389.99,10/26/19 09:30,"253 Hill St, San Francisco, CA 94016" +275397,AA Batteries (4-pack),1,3.84,10/08/19 10:17,"600 Main St, Dallas, TX 75001" +275398,27in FHD Monitor,1,149.99,10/19/19 19:19,"912 12th St, Portland, OR 97035" +275399,AAA Batteries (4-pack),3,2.99,10/03/19 10:54,"642 Madison St, New York City, NY 10001" +275400,Wired Headphones,1,11.99,10/18/19 16:52,"643 4th St, San Francisco, CA 94016" +275401,Wired Headphones,1,11.99,10/23/19 12:09,"506 10th St, Seattle, WA 98101" +275402,iPhone,1,700,10/29/19 13:59,"926 6th St, Los Angeles, CA 90001" +275402,Wired Headphones,1,11.99,10/29/19 13:59,"926 6th St, Los Angeles, CA 90001" +275403,USB-C Charging Cable,1,11.95,10/25/19 16:31,"831 Maple St, San Francisco, CA 94016" +275404,Vareebadd Phone,1,400,10/13/19 13:54,"126 Spruce St, San Francisco, CA 94016" +275405,27in 4K Gaming Monitor,1,389.99,10/30/19 18:37,"105 14th St, Los Angeles, CA 90001" +275406,Bose SoundSport Headphones,1,99.99,10/07/19 14:21,"521 Elm St, Seattle, WA 98101" +275407,34in Ultrawide Monitor,1,379.99,10/11/19 07:26,"645 Meadow St, San Francisco, CA 94016" +275408,Wired Headphones,1,11.99,10/10/19 06:39,"580 Willow St, Boston, MA 02215" +275409,AA Batteries (4-pack),1,3.84,10/26/19 21:58,"20 Church St, Boston, MA 02215" +275410,AA Batteries (4-pack),1,3.84,10/27/19 12:42,"758 13th St, Dallas, TX 75001" +275411,27in FHD Monitor,1,149.99,10/13/19 01:56,"791 Maple St, Atlanta, GA 30301" +275412,AAA Batteries (4-pack),1,2.99,10/12/19 01:58,"666 2nd St, Los Angeles, CA 90001" +275413,iPhone,1,700,10/02/19 23:20,"922 West St, Atlanta, GA 30301" +275413,Wired Headphones,2,11.99,10/02/19 23:20,"922 West St, Atlanta, GA 30301" +275414,AAA Batteries (4-pack),1,2.99,10/28/19 14:13,"267 Jefferson St, Boston, MA 02215" +275415,Bose SoundSport Headphones,1,99.99,10/16/19 19:22,"56 Ridge St, Dallas, TX 75001" +275416,USB-C Charging Cable,1,11.95,10/31/19 23:58,"864 West St, Los Angeles, CA 90001" +275417,Bose SoundSport Headphones,1,99.99,10/12/19 09:14,"978 Hill St, Dallas, TX 75001" +275418,34in Ultrawide Monitor,1,379.99,10/31/19 09:49,"128 River St, New York City, NY 10001" +275419,AAA Batteries (4-pack),1,2.99,10/02/19 21:43,"870 8th St, San Francisco, CA 94016" +275420,USB-C Charging Cable,1,11.95,10/01/19 22:20,"998 2nd St, Portland, OR 97035" +275421,AA Batteries (4-pack),1,3.84,10/28/19 23:37,"533 Hill St, San Francisco, CA 94016" +275422,Bose SoundSport Headphones,1,99.99,10/29/19 23:29,"477 Lincoln St, San Francisco, CA 94016" +275423,Vareebadd Phone,1,400,10/07/19 12:49,"263 Church St, New York City, NY 10001" +275423,USB-C Charging Cable,1,11.95,10/07/19 12:49,"263 Church St, New York City, NY 10001" +275424,Apple Airpods Headphones,1,150,10/20/19 12:51,"386 2nd St, New York City, NY 10001" +275425,Wired Headphones,1,11.99,10/15/19 06:56,"834 Wilson St, Seattle, WA 98101" +275426,Bose SoundSport Headphones,1,99.99,10/11/19 00:12,"97 12th St, Boston, MA 02215" +275427,AAA Batteries (4-pack),1,2.99,10/25/19 19:30,"892 South St, San Francisco, CA 94016" +275428,Wired Headphones,1,11.99,10/08/19 23:30,"933 Jackson St, Los Angeles, CA 90001" +275429,USB-C Charging Cable,1,11.95,10/04/19 10:24,"583 Washington St, Boston, MA 02215" +275430,USB-C Charging Cable,1,11.95,10/30/19 16:52,"102 9th St, San Francisco, CA 94016" +275431,AAA Batteries (4-pack),1,2.99,10/16/19 11:49,"935 5th St, Atlanta, GA 30301" +275432,Lightning Charging Cable,1,14.95,10/20/19 11:23,"778 Lake St, Portland, OR 97035" +275433,27in 4K Gaming Monitor,1,389.99,10/16/19 14:41,"843 Adams St, Portland, ME 04101" +275434,Wired Headphones,1,11.99,10/14/19 14:03,"944 5th St, Los Angeles, CA 90001" +275435,iPhone,1,700,10/19/19 18:53,"273 Highland St, New York City, NY 10001" +275436,Lightning Charging Cable,1,14.95,10/29/19 18:57,"547 Ridge St, Atlanta, GA 30301" +275437,27in 4K Gaming Monitor,1,389.99,10/08/19 02:30,"498 Washington St, Austin, TX 73301" +275438,Lightning Charging Cable,1,14.95,10/23/19 14:10,"73 Jackson St, Boston, MA 02215" +275439,Flatscreen TV,1,300,10/18/19 18:46,"21 Meadow St, Seattle, WA 98101" +275440,Lightning Charging Cable,1,14.95,10/07/19 13:38,"30 South St, Los Angeles, CA 90001" +275441,Wired Headphones,1,11.99,10/29/19 10:34,"157 Chestnut St, San Francisco, CA 94016" +275442,Google Phone,1,600,10/13/19 18:43,"64 Cherry St, Seattle, WA 98101" +275443,Apple Airpods Headphones,1,150,10/31/19 17:47,"220 Park St, Boston, MA 02215" +275444,Google Phone,1,600,10/11/19 12:15,"216 Jefferson St, Los Angeles, CA 90001" +275445,AA Batteries (4-pack),3,3.84,10/24/19 20:06,"52 Ridge St, New York City, NY 10001" +275446,USB-C Charging Cable,1,11.95,10/25/19 14:35,"78 Center St, Austin, TX 73301" +275447,Bose SoundSport Headphones,1,99.99,10/24/19 06:41,"232 Cherry St, Portland, OR 97035" +275448,Apple Airpods Headphones,1,150,10/04/19 17:13,"989 Sunset St, San Francisco, CA 94016" +275449,USB-C Charging Cable,1,11.95,10/13/19 13:37,"511 Washington St, San Francisco, CA 94016" +275450,AA Batteries (4-pack),1,3.84,10/30/19 13:25,"83 Chestnut St, Dallas, TX 75001" +275451,Lightning Charging Cable,1,14.95,10/09/19 19:30,"596 13th St, Los Angeles, CA 90001" +275452,Apple Airpods Headphones,1,150,10/27/19 13:11,"840 Chestnut St, Portland, ME 04101" +275453,Lightning Charging Cable,1,14.95,10/30/19 09:20,"314 Sunset St, San Francisco, CA 94016" +275454,Apple Airpods Headphones,1,150,10/08/19 16:51,"664 Chestnut St, Atlanta, GA 30301" +275455,Google Phone,1,600,10/09/19 12:49,"579 2nd St, Los Angeles, CA 90001" +275456,Macbook Pro Laptop,1,1700,10/17/19 00:11,"976 5th St, Boston, MA 02215" +275457,Apple Airpods Headphones,1,150,10/25/19 12:54,"79 10th St, New York City, NY 10001" +275458,USB-C Charging Cable,1,11.95,10/10/19 17:12,"213 9th St, San Francisco, CA 94016" +275459,Lightning Charging Cable,2,14.95,10/10/19 17:57,"101 11th St, Seattle, WA 98101" +275460,Lightning Charging Cable,1,14.95,10/24/19 10:14,"823 North St, Los Angeles, CA 90001" +275461,ThinkPad Laptop,1,999.99,10/12/19 18:13,"585 Pine St, New York City, NY 10001" +275462,Wired Headphones,1,11.99,10/27/19 06:58,"110 14th St, San Francisco, CA 94016" +275463,27in 4K Gaming Monitor,1,389.99,10/07/19 13:52,"292 7th St, Austin, TX 73301" +275464,USB-C Charging Cable,1,11.95,10/12/19 12:38,"701 River St, Boston, MA 02215" +275465,34in Ultrawide Monitor,1,379.99,10/08/19 19:43,"400 Johnson St, San Francisco, CA 94016" +275466,Wired Headphones,1,11.99,10/19/19 10:48,"651 1st St, Boston, MA 02215" +275467,Apple Airpods Headphones,1,150,10/31/19 08:12,"963 Adams St, New York City, NY 10001" +275468,Google Phone,1,600,10/01/19 14:01,"208 Ridge St, Seattle, WA 98101" +275469,USB-C Charging Cable,1,11.95,10/23/19 13:23,"943 Madison St, New York City, NY 10001" +275470,Macbook Pro Laptop,1,1700,10/11/19 20:57,"549 10th St, Boston, MA 02215" +275471,Wired Headphones,1,11.99,10/02/19 20:21,"94 12th St, Atlanta, GA 30301" +275472,USB-C Charging Cable,1,11.95,10/09/19 13:06,"975 Lakeview St, San Francisco, CA 94016" +275473,AAA Batteries (4-pack),1,2.99,10/13/19 10:33,"874 West St, New York City, NY 10001" +275474,USB-C Charging Cable,1,11.95,10/01/19 23:06,"72 Cedar St, Los Angeles, CA 90001" +275475,Apple Airpods Headphones,1,150,10/05/19 20:33,"760 Ridge St, Atlanta, GA 30301" +275476,Wired Headphones,1,11.99,10/19/19 11:12,"467 Jackson St, Portland, OR 97035" +275477,LG Dryer,1,600.0,10/25/19 13:32,"221 Spruce St, Los Angeles, CA 90001" +275478,USB-C Charging Cable,1,11.95,10/26/19 18:25,"428 Dogwood St, San Francisco, CA 94016" +275479,Wired Headphones,1,11.99,10/25/19 23:45,"413 Cedar St, Los Angeles, CA 90001" +275480,USB-C Charging Cable,1,11.95,10/17/19 09:53,"301 Johnson St, Dallas, TX 75001" +275481,USB-C Charging Cable,1,11.95,10/06/19 16:43,"940 12th St, Atlanta, GA 30301" +275482,AA Batteries (4-pack),1,3.84,10/30/19 12:25,"332 Maple St, Los Angeles, CA 90001" +275483,27in FHD Monitor,1,149.99,10/16/19 22:42,"25 Walnut St, New York City, NY 10001" +275484,AAA Batteries (4-pack),1,2.99,10/05/19 14:37,"689 Park St, Dallas, TX 75001" +275485,Lightning Charging Cable,1,14.95,10/04/19 10:38,"427 Pine St, Boston, MA 02215" +275486,USB-C Charging Cable,2,11.95,10/25/19 19:46,"468 Madison St, Dallas, TX 75001" +275487,34in Ultrawide Monitor,1,379.99,10/30/19 14:46,"205 Washington St, Dallas, TX 75001" +275488,AA Batteries (4-pack),1,3.84,10/04/19 14:16,"628 Center St, Seattle, WA 98101" +275489,Wired Headphones,1,11.99,10/20/19 22:05,"534 Ridge St, Seattle, WA 98101" +275490,Apple Airpods Headphones,1,150,10/01/19 18:53,"377 Lakeview St, San Francisco, CA 94016" +275491,AAA Batteries (4-pack),3,2.99,10/03/19 18:50,"895 Adams St, Los Angeles, CA 90001" +275492,ThinkPad Laptop,1,999.99,10/10/19 20:50,"516 Cedar St, Atlanta, GA 30301" +275493,USB-C Charging Cable,1,11.95,10/18/19 17:35,"770 Cedar St, Los Angeles, CA 90001" +275494,Google Phone,1,600,10/05/19 02:38,"573 6th St, Atlanta, GA 30301" +275495,Apple Airpods Headphones,1,150,10/31/19 17:01,"104 Hickory St, San Francisco, CA 94016" +275496,AA Batteries (4-pack),1,3.84,10/19/19 19:52,"324 Chestnut St, Seattle, WA 98101" +275497,AAA Batteries (4-pack),4,2.99,10/13/19 10:54,"849 4th St, Austin, TX 73301" +275498,Apple Airpods Headphones,1,150,10/23/19 21:15,"543 South St, Los Angeles, CA 90001" +275499,Apple Airpods Headphones,1,150,10/06/19 09:59,"259 West St, Portland, OR 97035" +275500,34in Ultrawide Monitor,1,379.99,10/11/19 20:42,"667 Dogwood St, Los Angeles, CA 90001" +275501,Apple Airpods Headphones,1,150,10/27/19 11:18,"505 Chestnut St, San Francisco, CA 94016" +275502,AAA Batteries (4-pack),1,2.99,10/24/19 16:20,"396 14th St, San Francisco, CA 94016" +275502,AA Batteries (4-pack),2,3.84,10/24/19 16:20,"396 14th St, San Francisco, CA 94016" +275503,AA Batteries (4-pack),1,3.84,10/27/19 10:16,"33 Highland St, Seattle, WA 98101" +275504,ThinkPad Laptop,1,999.99,10/13/19 09:48,"718 5th St, New York City, NY 10001" +275505,Wired Headphones,1,11.99,10/20/19 01:44,"857 Pine St, Dallas, TX 75001" +275506,USB-C Charging Cable,1,11.95,10/29/19 15:23,"595 Lincoln St, Dallas, TX 75001" +275507,Apple Airpods Headphones,1,150,10/22/19 14:04,"600 14th St, San Francisco, CA 94016" +275508,Macbook Pro Laptop,1,1700,10/04/19 22:36,"778 Spruce St, San Francisco, CA 94016" +275509,AA Batteries (4-pack),1,3.84,10/22/19 15:39,"493 Madison St, New York City, NY 10001" +275510,USB-C Charging Cable,1,11.95,10/18/19 17:46,"59 North St, New York City, NY 10001" +275511,Lightning Charging Cable,1,14.95,10/17/19 17:34,"741 Center St, Austin, TX 73301" +275511,Wired Headphones,1,11.99,10/17/19 17:34,"741 Center St, Austin, TX 73301" +275512,Lightning Charging Cable,1,14.95,10/09/19 22:37,"780 Lake St, Boston, MA 02215" +275512,ThinkPad Laptop,1,999.99,10/09/19 22:37,"780 Lake St, Boston, MA 02215" +275513,27in FHD Monitor,1,149.99,10/28/19 17:49,"245 Washington St, San Francisco, CA 94016" +275514,Apple Airpods Headphones,1,150,10/14/19 18:53,"668 Cherry St, Los Angeles, CA 90001" +275515,AAA Batteries (4-pack),1,2.99,10/30/19 18:14,"704 9th St, Los Angeles, CA 90001" +275516,Apple Airpods Headphones,1,150,10/13/19 14:47,"645 Main St, San Francisco, CA 94016" +275517,LG Washing Machine,1,600.0,10/30/19 22:44,"854 Park St, San Francisco, CA 94016" +275518,AAA Batteries (4-pack),1,2.99,10/15/19 00:51,"780 9th St, San Francisco, CA 94016" +275519,AAA Batteries (4-pack),1,2.99,10/31/19 05:38,"387 14th St, Austin, TX 73301" +275520,AA Batteries (4-pack),1,3.84,10/20/19 23:57,"875 Chestnut St, Dallas, TX 75001" +275521,27in FHD Monitor,1,149.99,10/23/19 11:02,"898 14th St, Boston, MA 02215" +275522,USB-C Charging Cable,1,11.95,10/31/19 14:35,"269 9th St, Los Angeles, CA 90001" +275523,Wired Headphones,1,11.99,10/19/19 21:31,"118 Wilson St, New York City, NY 10001" +275524,20in Monitor,1,109.99,10/24/19 10:02,"284 Sunset St, Los Angeles, CA 90001" +275525,Bose SoundSport Headphones,1,99.99,10/19/19 22:01,"703 Forest St, Los Angeles, CA 90001" +275526,USB-C Charging Cable,1,11.95,10/10/19 11:20,"563 River St, Boston, MA 02215" +275527,Bose SoundSport Headphones,1,99.99,10/06/19 17:09,"629 Lake St, Dallas, TX 75001" +275528,Wired Headphones,1,11.99,10/08/19 17:29,"896 Cedar St, Atlanta, GA 30301" +275529,Lightning Charging Cable,1,14.95,10/01/19 22:50,"453 14th St, Dallas, TX 75001" +275530,USB-C Charging Cable,1,11.95,10/20/19 15:44,"604 9th St, Atlanta, GA 30301" +275531,USB-C Charging Cable,1,11.95,10/23/19 02:35,"693 Hickory St, San Francisco, CA 94016" +275532,AAA Batteries (4-pack),2,2.99,10/03/19 21:31,"729 Lakeview St, Atlanta, GA 30301" +275533,27in FHD Monitor,1,149.99,10/13/19 10:30,"467 8th St, Boston, MA 02215" +275534,27in 4K Gaming Monitor,1,389.99,10/26/19 19:08,"417 10th St, Seattle, WA 98101" +275535,USB-C Charging Cable,1,11.95,10/01/19 15:19,"268 Hill St, Atlanta, GA 30301" +275536,27in 4K Gaming Monitor,1,389.99,10/09/19 14:12,"7 Main St, New York City, NY 10001" +275537,iPhone,1,700,10/26/19 09:30,"148 9th St, Los Angeles, CA 90001" +275538,27in FHD Monitor,1,149.99,10/22/19 12:20,"330 2nd St, Portland, OR 97035" +275539,34in Ultrawide Monitor,1,379.99,10/03/19 17:24,"3 Lake St, Los Angeles, CA 90001" +275540,Lightning Charging Cable,1,14.95,10/14/19 04:13,"354 Walnut St, Boston, MA 02215" +275541,Bose SoundSport Headphones,1,99.99,10/20/19 20:25,"780 Meadow St, Boston, MA 02215" +275542,Lightning Charging Cable,1,14.95,10/12/19 09:18,"572 1st St, Boston, MA 02215" +275543,Lightning Charging Cable,1,14.95,10/26/19 10:15,"806 2nd St, Boston, MA 02215" +275544,USB-C Charging Cable,1,11.95,10/03/19 22:34,"50 Jefferson St, Boston, MA 02215" +275545,Google Phone,1,600,10/02/19 14:40,"250 Jefferson St, New York City, NY 10001" +275545,USB-C Charging Cable,1,11.95,10/02/19 14:40,"250 Jefferson St, New York City, NY 10001" +275546,AAA Batteries (4-pack),1,2.99,10/07/19 19:42,"361 North St, Dallas, TX 75001" +275547,Wired Headphones,1,11.99,10/22/19 19:43,"63 Maple St, New York City, NY 10001" +275548,27in FHD Monitor,1,149.99,10/05/19 17:05,"79 Center St, San Francisco, CA 94016" +275549,AA Batteries (4-pack),1,3.84,10/16/19 12:55,"420 6th St, Los Angeles, CA 90001" +275550,AA Batteries (4-pack),1,3.84,10/04/19 18:12,"860 Wilson St, Boston, MA 02215" +275551,AA Batteries (4-pack),1,3.84,10/03/19 15:34,"490 12th St, Portland, OR 97035" +275552,Vareebadd Phone,1,400,10/08/19 14:10,"814 6th St, San Francisco, CA 94016" +275552,Wired Headphones,1,11.99,10/08/19 14:10,"814 6th St, San Francisco, CA 94016" +275553,AA Batteries (4-pack),2,3.84,10/15/19 20:30,"363 River St, New York City, NY 10001" +275554,AAA Batteries (4-pack),2,2.99,10/17/19 11:31,"358 Elm St, Dallas, TX 75001" +275555,Wired Headphones,1,11.99,10/25/19 09:52,"528 Spruce St, Seattle, WA 98101" +275556,Wired Headphones,1,11.99,10/12/19 16:16,"371 Cherry St, San Francisco, CA 94016" +275557,AAA Batteries (4-pack),1,2.99,10/20/19 07:44,"313 North St, Los Angeles, CA 90001" +275558,27in FHD Monitor,1,149.99,10/25/19 23:55,"625 Center St, Atlanta, GA 30301" +275559,USB-C Charging Cable,1,11.95,10/31/19 13:36,"531 Willow St, San Francisco, CA 94016" +275560,Macbook Pro Laptop,1,1700,10/22/19 07:21,"321 2nd St, Seattle, WA 98101" +275561,27in FHD Monitor,1,149.99,10/12/19 15:01,"877 Madison St, Seattle, WA 98101" +275562,AA Batteries (4-pack),2,3.84,10/22/19 13:12,"795 Adams St, Los Angeles, CA 90001" +275563,ThinkPad Laptop,1,999.99,10/24/19 21:13,"961 Cherry St, Boston, MA 02215" +275564,27in 4K Gaming Monitor,1,389.99,10/15/19 12:18,"472 Forest St, Atlanta, GA 30301" +275565,Wired Headphones,1,11.99,10/26/19 17:34,"532 Pine St, New York City, NY 10001" +275566,AAA Batteries (4-pack),1,2.99,10/29/19 20:39,"343 Cherry St, Portland, ME 04101" +275567,Google Phone,1,600,10/02/19 08:53,"656 Madison St, Boston, MA 02215" +275567,USB-C Charging Cable,1,11.95,10/02/19 08:53,"656 Madison St, Boston, MA 02215" +275568,Apple Airpods Headphones,1,150,10/19/19 14:05,"549 11th St, Los Angeles, CA 90001" +275569,Lightning Charging Cable,1,14.95,10/25/19 21:05,"177 Jefferson St, Boston, MA 02215" +275570,Google Phone,1,600,10/15/19 14:25,"975 Lakeview St, San Francisco, CA 94016" +275571,27in FHD Monitor,1,149.99,10/04/19 22:14,"881 Lincoln St, Atlanta, GA 30301" +275572,Lightning Charging Cable,1,14.95,10/07/19 17:37,"873 1st St, Dallas, TX 75001" +275573,Lightning Charging Cable,1,14.95,10/15/19 21:32,"879 11th St, San Francisco, CA 94016" +275574,34in Ultrawide Monitor,1,379.99,10/10/19 00:25,"602 West St, New York City, NY 10001" +275575,AAA Batteries (4-pack),1,2.99,10/15/19 20:37,"922 West St, San Francisco, CA 94016" +275575,Lightning Charging Cable,1,14.95,10/15/19 20:37,"922 West St, San Francisco, CA 94016" +275576,USB-C Charging Cable,1,11.95,10/01/19 23:57,"511 1st St, San Francisco, CA 94016" +275577,Flatscreen TV,1,300,10/14/19 17:22,"779 Highland St, Seattle, WA 98101" +275578,Lightning Charging Cable,1,14.95,10/26/19 23:04,"966 Main St, Dallas, TX 75001" +275579,Bose SoundSport Headphones,1,99.99,10/24/19 11:10,"440 Madison St, Seattle, WA 98101" +275580,Wired Headphones,1,11.99,10/14/19 06:43,"380 Jefferson St, Los Angeles, CA 90001" +275581,27in 4K Gaming Monitor,1,389.99,10/24/19 22:17,"187 West St, San Francisco, CA 94016" +275582,AAA Batteries (4-pack),1,2.99,10/23/19 02:12,"423 Adams St, Austin, TX 73301" +275583,Bose SoundSport Headphones,1,99.99,10/22/19 09:31,"518 West St, Dallas, TX 75001" +275584,Lightning Charging Cable,1,14.95,10/03/19 18:44,"546 North St, San Francisco, CA 94016" +275585,Wired Headphones,1,11.99,10/27/19 20:12,"575 Highland St, New York City, NY 10001" +275586,Lightning Charging Cable,1,14.95,10/13/19 07:36,"921 Jefferson St, Boston, MA 02215" +275587,Apple Airpods Headphones,1,150,10/25/19 23:30,"615 Jackson St, San Francisco, CA 94016" +275588,Bose SoundSport Headphones,1,99.99,10/03/19 07:34,"662 Church St, Atlanta, GA 30301" +275589,Wired Headphones,1,11.99,10/11/19 12:54,"470 Maple St, Seattle, WA 98101" +275590,Bose SoundSport Headphones,1,99.99,10/03/19 18:19,"683 Main St, San Francisco, CA 94016" +275591,Apple Airpods Headphones,1,150,10/31/19 16:10,"424 Washington St, Atlanta, GA 30301" +275592,27in FHD Monitor,1,149.99,10/22/19 11:02,"201 Pine St, New York City, NY 10001" +275593,20in Monitor,1,109.99,10/10/19 16:42,"222 Pine St, San Francisco, CA 94016" +275594,USB-C Charging Cable,2,11.95,10/21/19 06:19,"101 South St, Atlanta, GA 30301" +275595,Wired Headphones,1,11.99,10/11/19 22:10,"721 Pine St, New York City, NY 10001" +275596,Macbook Pro Laptop,1,1700,10/22/19 21:06,"501 Hill St, San Francisco, CA 94016" +275597,Apple Airpods Headphones,1,150,10/01/19 12:46,"230 4th St, New York City, NY 10001" +275598,AAA Batteries (4-pack),2,2.99,10/24/19 23:47,"594 Wilson St, Los Angeles, CA 90001" +275599,27in 4K Gaming Monitor,1,389.99,10/11/19 15:18,"6 Adams St, Atlanta, GA 30301" +275600,iPhone,1,700,10/08/19 15:55,"539 4th St, Dallas, TX 75001" +275601,AAA Batteries (4-pack),1,2.99,10/16/19 14:05,"986 Cedar St, Atlanta, GA 30301" +275602,Lightning Charging Cable,1,14.95,10/11/19 17:59,"782 Hickory St, Portland, OR 97035" +275603,USB-C Charging Cable,1,11.95,10/18/19 19:34,"66 4th St, Austin, TX 73301" +275604,Wired Headphones,2,11.99,10/10/19 22:23,"283 Church St, New York City, NY 10001" +275605,Lightning Charging Cable,1,14.95,10/30/19 11:41,"180 West St, Boston, MA 02215" +275606,Wired Headphones,1,11.99,10/09/19 17:51,"73 Hickory St, San Francisco, CA 94016" +275607,Wired Headphones,1,11.99,10/03/19 11:49,"46 Lakeview St, San Francisco, CA 94016" +275608,Flatscreen TV,1,300,10/27/19 15:40,"282 Meadow St, New York City, NY 10001" +275609,Lightning Charging Cable,1,14.95,10/07/19 18:48,"428 Meadow St, Boston, MA 02215" +275610,Lightning Charging Cable,1,14.95,10/05/19 12:44,"835 Lake St, San Francisco, CA 94016" +275611,Bose SoundSport Headphones,1,99.99,10/01/19 12:58,"670 Main St, Boston, MA 02215" +275612,Wired Headphones,1,11.99,10/14/19 11:26,"430 Meadow St, Seattle, WA 98101" +275613,AAA Batteries (4-pack),1,2.99,10/15/19 10:15,"581 Center St, Atlanta, GA 30301" +275614,Vareebadd Phone,1,400,10/16/19 13:55,"604 North St, Los Angeles, CA 90001" +275614,USB-C Charging Cable,1,11.95,10/16/19 13:55,"604 North St, Los Angeles, CA 90001" +275615,AAA Batteries (4-pack),1,2.99,10/29/19 15:00,"243 1st St, Boston, MA 02215" +275616,27in FHD Monitor,1,149.99,10/31/19 07:11,"910 Church St, San Francisco, CA 94016" +275617,Apple Airpods Headphones,1,150,10/22/19 06:44,"977 West St, San Francisco, CA 94016" +275618,Apple Airpods Headphones,1,150,10/06/19 18:57,"562 Willow St, New York City, NY 10001" +275619,Flatscreen TV,1,300,10/29/19 18:43,"31 6th St, Seattle, WA 98101" +275620,USB-C Charging Cable,1,11.95,10/15/19 19:48,"664 8th St, Boston, MA 02215" +275621,USB-C Charging Cable,1,11.95,10/24/19 08:13,"120 Adams St, Los Angeles, CA 90001" +275622,Apple Airpods Headphones,1,150,10/30/19 12:01,"967 Elm St, Los Angeles, CA 90001" +275623,AAA Batteries (4-pack),1,2.99,10/12/19 13:46,"751 North St, San Francisco, CA 94016" +275624,27in 4K Gaming Monitor,1,389.99,10/16/19 20:13,"761 10th St, New York City, NY 10001" +275625,USB-C Charging Cable,1,11.95,10/22/19 09:03,"481 9th St, San Francisco, CA 94016" +275626,34in Ultrawide Monitor,1,379.99,10/22/19 22:54,"966 Wilson St, Boston, MA 02215" +275627,Apple Airpods Headphones,1,150,10/27/19 10:11,"975 11th St, Los Angeles, CA 90001" +275628,Wired Headphones,1,11.99,10/19/19 22:06,"428 Park St, San Francisco, CA 94016" +275629,AAA Batteries (4-pack),1,2.99,10/30/19 14:57,"5 8th St, San Francisco, CA 94016" +275630,27in 4K Gaming Monitor,1,389.99,10/02/19 12:07,"267 Hickory St, Boston, MA 02215" +275631,AAA Batteries (4-pack),2,2.99,10/25/19 17:27,"292 Sunset St, Boston, MA 02215" +275632,Lightning Charging Cable,1,14.95,10/26/19 17:20,"645 Lakeview St, San Francisco, CA 94016" +275633,Lightning Charging Cable,1,14.95,10/06/19 14:57,"730 Highland St, San Francisco, CA 94016" +275634,Apple Airpods Headphones,1,150,10/05/19 18:20,"519 1st St, Seattle, WA 98101" +275635,27in 4K Gaming Monitor,1,389.99,10/18/19 15:15,"502 9th St, Austin, TX 73301" +275636,Wired Headphones,1,11.99,10/23/19 14:41,"330 Wilson St, Atlanta, GA 30301" +275637,27in FHD Monitor,1,149.99,10/19/19 21:07,"670 Spruce St, Portland, OR 97035" +275638,27in 4K Gaming Monitor,1,389.99,10/17/19 04:06,"57 West St, Austin, TX 73301" +275639,ThinkPad Laptop,1,999.99,10/14/19 17:16,"641 5th St, San Francisco, CA 94016" +275640,27in FHD Monitor,1,149.99,10/21/19 09:52,"440 Willow St, Boston, MA 02215" +275641,Flatscreen TV,1,300,10/30/19 17:09,"863 Meadow St, New York City, NY 10001" +275642,34in Ultrawide Monitor,1,379.99,10/12/19 11:30,"818 4th St, New York City, NY 10001" +275643,AA Batteries (4-pack),2,3.84,10/21/19 19:35,"665 South St, Dallas, TX 75001" +275644,Apple Airpods Headphones,1,150,10/13/19 13:31,"655 10th St, San Francisco, CA 94016" +275645,AAA Batteries (4-pack),2,2.99,10/15/19 22:11,"803 14th St, Los Angeles, CA 90001" +275646,Lightning Charging Cable,2,14.95,10/22/19 14:15,"864 Highland St, New York City, NY 10001" +275647,USB-C Charging Cable,2,11.95,10/30/19 17:47,"347 Main St, Atlanta, GA 30301" +275648,AA Batteries (4-pack),1,3.84,10/22/19 07:45,"940 2nd St, Los Angeles, CA 90001" +275649,Apple Airpods Headphones,1,150,10/01/19 19:02,"723 River St, San Francisco, CA 94016" +275650,20in Monitor,1,109.99,10/11/19 21:15,"85 10th St, Atlanta, GA 30301" +275651,USB-C Charging Cable,1,11.95,10/14/19 15:14,"807 South St, Boston, MA 02215" +275652,Lightning Charging Cable,1,14.95,10/29/19 13:30,"446 Church St, Seattle, WA 98101" +275653,USB-C Charging Cable,1,11.95,10/09/19 12:15,"694 Jefferson St, New York City, NY 10001" +275654,27in FHD Monitor,1,149.99,10/28/19 15:30,"653 Hickory St, Atlanta, GA 30301" +275655,iPhone,1,700,10/29/19 10:37,"202 9th St, Atlanta, GA 30301" +275656,Lightning Charging Cable,1,14.95,10/20/19 14:20,"450 7th St, Seattle, WA 98101" +275657,Macbook Pro Laptop,1,1700,10/16/19 15:14,"13 Sunset St, San Francisco, CA 94016" +275658,Apple Airpods Headphones,1,150,10/23/19 22:14,"519 South St, San Francisco, CA 94016" +275659,27in 4K Gaming Monitor,1,389.99,10/18/19 00:07,"744 Meadow St, Los Angeles, CA 90001" +275660,ThinkPad Laptop,1,999.99,10/26/19 11:21,"957 Jackson St, Seattle, WA 98101" +275661,Lightning Charging Cable,1,14.95,10/26/19 22:41,"594 Lincoln St, Los Angeles, CA 90001" +275662,Bose SoundSport Headphones,1,99.99,10/09/19 06:22,"238 Cedar St, Austin, TX 73301" +275663,AA Batteries (4-pack),1,3.84,10/03/19 13:17,"850 13th St, Los Angeles, CA 90001" +275664,AAA Batteries (4-pack),1,2.99,10/09/19 21:19,"812 Willow St, San Francisco, CA 94016" +275665,Flatscreen TV,1,300,10/15/19 11:30,"115 Lake St, Atlanta, GA 30301" +275666,Lightning Charging Cable,1,14.95,10/28/19 20:45,"336 11th St, Dallas, TX 75001" +275667,34in Ultrawide Monitor,1,379.99,10/23/19 19:34,"508 Hill St, Portland, OR 97035" +275668,LG Washing Machine,1,600.0,10/04/19 13:53,"244 1st St, Atlanta, GA 30301" +275669,iPhone,1,700,10/05/19 13:12,"162 Cherry St, New York City, NY 10001" +275670,AAA Batteries (4-pack),2,2.99,10/02/19 15:03,"643 Johnson St, Los Angeles, CA 90001" +275671,Wired Headphones,1,11.99,10/27/19 11:52,"664 River St, Atlanta, GA 30301" +275672,LG Washing Machine,1,600.0,10/04/19 13:30,"630 River St, Dallas, TX 75001" +275673,AAA Batteries (4-pack),1,2.99,10/07/19 15:05,"943 Sunset St, New York City, NY 10001" +275674,Bose SoundSport Headphones,1,99.99,10/09/19 18:35,"147 South St, San Francisco, CA 94016" +275675,Lightning Charging Cable,1,14.95,10/22/19 20:24,"153 6th St, Boston, MA 02215" +275676,27in 4K Gaming Monitor,1,389.99,10/29/19 22:28,"467 Lincoln St, Atlanta, GA 30301" +275677,AA Batteries (4-pack),1,3.84,10/16/19 14:27,"988 South St, Los Angeles, CA 90001" +275678,USB-C Charging Cable,1,11.95,10/13/19 13:17,"403 12th St, Boston, MA 02215" +275679,Apple Airpods Headphones,1,150,10/21/19 19:53,"283 Highland St, San Francisco, CA 94016" +275680,AA Batteries (4-pack),2,3.84,10/14/19 08:40,"233 Ridge St, Dallas, TX 75001" +275681,Lightning Charging Cable,1,14.95,10/18/19 05:45,"127 Maple St, San Francisco, CA 94016" +275682,AAA Batteries (4-pack),1,2.99,10/29/19 07:23,"812 Hickory St, San Francisco, CA 94016" +275683,Bose SoundSport Headphones,1,99.99,10/02/19 21:59,"192 Dogwood St, Los Angeles, CA 90001" +275684,Lightning Charging Cable,2,14.95,10/13/19 17:17,"991 1st St, San Francisco, CA 94016" +275685,Bose SoundSport Headphones,1,99.99,10/02/19 12:26,"195 13th St, San Francisco, CA 94016" +275686,AA Batteries (4-pack),1,3.84,10/09/19 11:33,"321 11th St, Seattle, WA 98101" +275687,20in Monitor,1,109.99,10/26/19 17:54,"816 8th St, San Francisco, CA 94016" +275688,AA Batteries (4-pack),1,3.84,10/20/19 14:49,"925 Highland St, New York City, NY 10001" +275689,Wired Headphones,2,11.99,10/31/19 12:34,"547 9th St, New York City, NY 10001" +275690,AAA Batteries (4-pack),2,2.99,10/16/19 14:47,"877 Lakeview St, Boston, MA 02215" +275690,AA Batteries (4-pack),1,3.84,10/16/19 14:47,"877 Lakeview St, Boston, MA 02215" +275691,Wired Headphones,1,11.99,10/04/19 20:10,"953 Sunset St, San Francisco, CA 94016" +275692,AA Batteries (4-pack),2,3.84,10/23/19 10:52,"880 Johnson St, New York City, NY 10001" +275693,34in Ultrawide Monitor,1,379.99,10/11/19 09:27,"147 8th St, Los Angeles, CA 90001" +275694,iPhone,1,700,10/10/19 09:40,"47 North St, New York City, NY 10001" +275694,Lightning Charging Cable,1,14.95,10/10/19 09:40,"47 North St, New York City, NY 10001" +275695,AA Batteries (4-pack),1,3.84,10/06/19 13:45,"554 Church St, Seattle, WA 98101" +275696,Wired Headphones,1,11.99,10/18/19 10:05,"10 Johnson St, San Francisco, CA 94016" +275697,Lightning Charging Cable,1,14.95,10/31/19 16:49,"845 Sunset St, Portland, ME 04101" +275698,ThinkPad Laptop,1,999.99,10/08/19 21:17,"711 Church St, New York City, NY 10001" +275699,Bose SoundSport Headphones,1,99.99,10/23/19 09:38,"789 9th St, New York City, NY 10001" +275700,Google Phone,1,600,10/24/19 16:55,"115 Main St, Los Angeles, CA 90001" +275701,Lightning Charging Cable,1,14.95,10/22/19 14:14,"28 Cedar St, New York City, NY 10001" +275702,34in Ultrawide Monitor,1,379.99,10/16/19 16:59,"609 Dogwood St, Boston, MA 02215" +275703,ThinkPad Laptop,1,999.99,10/26/19 13:49,"762 Willow St, San Francisco, CA 94016" +275704,20in Monitor,1,109.99,10/17/19 20:45,"931 8th St, New York City, NY 10001" +275705,ThinkPad Laptop,1,999.99,10/27/19 17:08,"429 Meadow St, Atlanta, GA 30301" +275706,Wired Headphones,2,11.99,10/03/19 23:32,"816 River St, Atlanta, GA 30301" +275707,Bose SoundSport Headphones,1,99.99,10/21/19 21:32,"390 Cedar St, Seattle, WA 98101" +275708,Wired Headphones,1,11.99,10/17/19 20:12,"864 Wilson St, San Francisco, CA 94016" +275709,34in Ultrawide Monitor,1,379.99,10/22/19 07:32,"828 12th St, New York City, NY 10001" +275710,AA Batteries (4-pack),1,3.84,10/06/19 22:42,"739 10th St, Dallas, TX 75001" +275711,USB-C Charging Cable,2,11.95,10/12/19 17:14,"247 Walnut St, San Francisco, CA 94016" +275712,AA Batteries (4-pack),2,3.84,10/01/19 16:03,"577 North St, New York City, NY 10001" +275712,Flatscreen TV,1,300,10/01/19 16:03,"577 North St, New York City, NY 10001" +275713,Apple Airpods Headphones,1,150,10/22/19 07:44,"535 River St, Seattle, WA 98101" +275714,AA Batteries (4-pack),1,3.84,10/07/19 13:20,"955 Jackson St, San Francisco, CA 94016" +275715,Wired Headphones,1,11.99,10/06/19 16:07,"707 13th St, Boston, MA 02215" +275716,27in FHD Monitor,1,149.99,10/20/19 02:51,"88 9th St, Boston, MA 02215" +275717,USB-C Charging Cable,1,11.95,10/24/19 02:59,"830 Park St, Portland, OR 97035" +275718,AAA Batteries (4-pack),1,2.99,10/14/19 12:14,"474 Hickory St, Los Angeles, CA 90001" +275719,Lightning Charging Cable,1,14.95,10/04/19 02:59,"631 8th St, San Francisco, CA 94016" +275720,USB-C Charging Cable,1,11.95,10/21/19 18:40,"757 Dogwood St, San Francisco, CA 94016" +275721,Lightning Charging Cable,1,14.95,10/12/19 23:02,"270 14th St, Seattle, WA 98101" +275722,Bose SoundSport Headphones,1,99.99,10/20/19 20:11,"153 Cherry St, Seattle, WA 98101" +275723,Bose SoundSport Headphones,1,99.99,10/27/19 22:57,"853 Center St, San Francisco, CA 94016" +275724,Apple Airpods Headphones,1,150,10/06/19 20:03,"940 Hill St, Portland, OR 97035" +275725,AA Batteries (4-pack),3,3.84,10/12/19 08:14,"218 Elm St, Los Angeles, CA 90001" +275726,Macbook Pro Laptop,1,1700,10/04/19 12:26,"315 Sunset St, Los Angeles, CA 90001" +275727,Wired Headphones,1,11.99,10/04/19 21:24,"75 Adams St, Dallas, TX 75001" +275728,Lightning Charging Cable,1,14.95,10/10/19 11:06,"930 Main St, New York City, NY 10001" +275729,AA Batteries (4-pack),1,3.84,10/25/19 11:08,"999 Elm St, Boston, MA 02215" +275730,27in FHD Monitor,1,149.99,10/02/19 13:47,"280 River St, Portland, OR 97035" +275731,AAA Batteries (4-pack),1,2.99,10/05/19 21:59,"848 Elm St, Boston, MA 02215" +275732,Apple Airpods Headphones,1,150,10/22/19 09:41,"132 Hill St, Atlanta, GA 30301" +275733,AAA Batteries (4-pack),1,2.99,10/12/19 18:55,"760 13th St, Los Angeles, CA 90001" +275734,AAA Batteries (4-pack),1,2.99,10/16/19 18:21,"391 Lake St, Boston, MA 02215" +275735,Wired Headphones,1,11.99,10/30/19 03:48,"134 Center St, Atlanta, GA 30301" +275736,34in Ultrawide Monitor,1,379.99,10/27/19 02:52,"977 Lincoln St, Portland, OR 97035" +275737,Lightning Charging Cable,1,14.95,10/23/19 13:05,"161 7th St, San Francisco, CA 94016" +275738,AAA Batteries (4-pack),1,2.99,10/24/19 12:53,"870 Forest St, San Francisco, CA 94016" +275739,Bose SoundSport Headphones,1,99.99,10/18/19 21:42,"818 Maple St, Portland, OR 97035" +275740,AA Batteries (4-pack),1,3.84,10/31/19 17:58,"295 Lake St, Portland, OR 97035" +275741,USB-C Charging Cable,1,11.95,10/29/19 18:04,"636 1st St, Boston, MA 02215" +275742,Lightning Charging Cable,1,14.95,10/03/19 09:47,"853 1st St, Boston, MA 02215" +275743,Apple Airpods Headphones,1,150,10/08/19 17:33,"835 1st St, Austin, TX 73301" +275744,34in Ultrawide Monitor,1,379.99,10/04/19 23:17,"930 Lakeview St, Dallas, TX 75001" +275745,Wired Headphones,1,11.99,10/16/19 21:21,"915 11th St, Atlanta, GA 30301" +275746,AAA Batteries (4-pack),1,2.99,10/28/19 05:11,"333 South St, Atlanta, GA 30301" +275747,Bose SoundSport Headphones,1,99.99,10/17/19 00:09,"419 Adams St, New York City, NY 10001" +275748,Apple Airpods Headphones,1,150,10/29/19 08:39,"972 4th St, Portland, OR 97035" +275749,Vareebadd Phone,1,400,10/11/19 14:56,"98 Dogwood St, Dallas, TX 75001" +275750,Wired Headphones,1,11.99,10/25/19 08:39,"582 North St, Los Angeles, CA 90001" +275751,AAA Batteries (4-pack),1,2.99,10/25/19 16:51,"502 Spruce St, San Francisco, CA 94016" +275752,Apple Airpods Headphones,1,150,10/20/19 11:08,"201 Chestnut St, Boston, MA 02215" +275753,Wired Headphones,2,11.99,10/16/19 23:35,"980 Washington St, San Francisco, CA 94016" +275754,Wired Headphones,2,11.99,10/04/19 15:18,"141 Lincoln St, San Francisco, CA 94016" +275755,27in FHD Monitor,1,149.99,10/17/19 07:04,"657 West St, San Francisco, CA 94016" +275756,Lightning Charging Cable,1,14.95,10/19/19 16:20,"701 Adams St, San Francisco, CA 94016" +275757,27in FHD Monitor,1,149.99,10/06/19 11:18,"593 Jackson St, New York City, NY 10001" +275758,Lightning Charging Cable,1,14.95,10/18/19 10:51,"935 9th St, Los Angeles, CA 90001" +275759,USB-C Charging Cable,1,11.95,10/20/19 19:40,"106 6th St, Los Angeles, CA 90001" +275760,Google Phone,1,600,10/16/19 19:41,"784 Dogwood St, Dallas, TX 75001" +,,,,, +275761,34in Ultrawide Monitor,1,379.99,10/22/19 02:47,"139 Lincoln St, San Francisco, CA 94016" +275762,Apple Airpods Headphones,1,150,10/02/19 00:35,"918 Lake St, San Francisco, CA 94016" +275763,AA Batteries (4-pack),1,3.84,10/12/19 13:27,"460 Main St, Portland, OR 97035" +275764,27in FHD Monitor,1,149.99,10/27/19 11:38,"381 1st St, New York City, NY 10001" +275765,Wired Headphones,1,11.99,10/25/19 10:32,"461 Lincoln St, Atlanta, GA 30301" +275766,Lightning Charging Cable,1,14.95,10/06/19 13:36,"764 7th St, Boston, MA 02215" +275767,Wired Headphones,1,11.99,10/17/19 23:13,"241 Adams St, Los Angeles, CA 90001" +275768,Lightning Charging Cable,1,14.95,10/13/19 12:20,"999 River St, Dallas, TX 75001" +275769,Bose SoundSport Headphones,1,99.99,10/09/19 18:20,"961 Pine St, Los Angeles, CA 90001" +275770,Lightning Charging Cable,1,14.95,10/05/19 13:40,"242 Park St, San Francisco, CA 94016" +275771,20in Monitor,2,109.99,10/16/19 11:12,"567 Spruce St, Boston, MA 02215" +275772,USB-C Charging Cable,1,11.95,10/28/19 06:08,"508 Lake St, Atlanta, GA 30301" +275773,Bose SoundSport Headphones,1,99.99,10/12/19 01:39,"156 Cedar St, San Francisco, CA 94016" +275774,iPhone,1,700,10/06/19 00:43,"803 Center St, San Francisco, CA 94016" +275774,Lightning Charging Cable,1,14.95,10/06/19 00:43,"803 Center St, San Francisco, CA 94016" +275774,Wired Headphones,1,11.99,10/06/19 00:43,"803 Center St, San Francisco, CA 94016" +275775,AAA Batteries (4-pack),1,2.99,10/31/19 10:39,"344 Cherry St, New York City, NY 10001" +275776,27in FHD Monitor,1,149.99,10/21/19 10:56,"214 Elm St, Dallas, TX 75001" +275777,USB-C Charging Cable,1,11.95,10/29/19 09:30,"160 6th St, San Francisco, CA 94016" +275778,AA Batteries (4-pack),3,3.84,10/20/19 10:36,"331 8th St, Boston, MA 02215" +275779,AA Batteries (4-pack),2,3.84,10/02/19 16:37,"990 14th St, San Francisco, CA 94016" +275780,AAA Batteries (4-pack),1,2.99,10/04/19 23:47,"783 Cherry St, Los Angeles, CA 90001" +275781,AAA Batteries (4-pack),2,2.99,10/16/19 17:44,"696 12th St, Boston, MA 02215" +275782,Bose SoundSport Headphones,1,99.99,10/20/19 06:42,"71 6th St, San Francisco, CA 94016" +275783,27in FHD Monitor,1,149.99,10/20/19 12:04,"164 13th St, San Francisco, CA 94016" +275784,Wired Headphones,1,11.99,10/21/19 18:14,"171 Spruce St, Dallas, TX 75001" +275785,AAA Batteries (4-pack),1,2.99,10/05/19 15:54,"381 Ridge St, Portland, OR 97035" +275786,iPhone,1,700,10/22/19 01:20,"670 Pine St, San Francisco, CA 94016" +275786,Lightning Charging Cable,1,14.95,10/22/19 01:20,"670 Pine St, San Francisco, CA 94016" +275787,AAA Batteries (4-pack),1,2.99,10/21/19 12:59,"620 Pine St, Los Angeles, CA 90001" +275788,Macbook Pro Laptop,1,1700,10/07/19 00:51,"862 7th St, Boston, MA 02215" +275789,27in FHD Monitor,1,149.99,10/15/19 03:47,"517 Highland St, Los Angeles, CA 90001" +275790,Apple Airpods Headphones,1,150,10/26/19 11:08,"310 5th St, Los Angeles, CA 90001" +275790,AAA Batteries (4-pack),1,2.99,10/26/19 11:08,"310 5th St, Los Angeles, CA 90001" +275791,USB-C Charging Cable,1,11.95,10/20/19 13:13,"542 Johnson St, San Francisco, CA 94016" +275792,Bose SoundSport Headphones,1,99.99,10/07/19 10:59,"116 Dogwood St, Los Angeles, CA 90001" +275793,AA Batteries (4-pack),1,3.84,10/11/19 16:07,"463 Elm St, Austin, TX 73301" +275794,Bose SoundSport Headphones,1,99.99,10/07/19 11:31,"364 6th St, Atlanta, GA 30301" +275795,AA Batteries (4-pack),1,3.84,10/25/19 19:19,"259 River St, Los Angeles, CA 90001" +275796,20in Monitor,1,109.99,10/14/19 00:27,"56 9th St, Los Angeles, CA 90001" +275796,AA Batteries (4-pack),1,3.84,10/14/19 00:27,"56 9th St, Los Angeles, CA 90001" +275797,AA Batteries (4-pack),2,3.84,10/24/19 17:59,"758 9th St, Dallas, TX 75001" +275798,Wired Headphones,1,11.99,10/19/19 15:31,"839 1st St, Dallas, TX 75001" +275799,Flatscreen TV,1,300,10/16/19 13:18,"720 West St, San Francisco, CA 94016" +275800,USB-C Charging Cable,1,11.95,10/24/19 17:30,"397 1st St, New York City, NY 10001" +275801,AA Batteries (4-pack),2,3.84,10/03/19 20:03,"32 13th St, Dallas, TX 75001" +275802,Wired Headphones,1,11.99,10/03/19 16:34,"341 West St, Austin, TX 73301" +275803,USB-C Charging Cable,1,11.95,10/06/19 19:19,"549 2nd St, Boston, MA 02215" +275804,Bose SoundSport Headphones,1,99.99,10/31/19 16:58,"424 14th St, San Francisco, CA 94016" +275805,27in 4K Gaming Monitor,1,389.99,10/05/19 15:25,"583 Meadow St, Portland, OR 97035" +275806,AA Batteries (4-pack),2,3.84,10/04/19 17:46,"697 8th St, New York City, NY 10001" +275807,Apple Airpods Headphones,1,150,10/02/19 12:03,"727 Cherry St, Dallas, TX 75001" +275808,Google Phone,1,600,10/09/19 01:52,"768 Highland St, San Francisco, CA 94016" +275809,Lightning Charging Cable,1,14.95,10/16/19 00:08,"205 Madison St, San Francisco, CA 94016" +275810,27in 4K Gaming Monitor,1,389.99,10/01/19 17:12,"467 12th St, Austin, TX 73301" +275811,Bose SoundSport Headphones,1,99.99,10/02/19 21:31,"392 Elm St, Los Angeles, CA 90001" +275812,Macbook Pro Laptop,1,1700,10/02/19 07:45,"545 14th St, San Francisco, CA 94016" +275813,Lightning Charging Cable,1,14.95,10/26/19 16:01,"113 11th St, New York City, NY 10001" +275814,27in FHD Monitor,1,149.99,10/22/19 12:21,"189 Lincoln St, Boston, MA 02215" +275815,Apple Airpods Headphones,1,150,10/23/19 08:28,"186 Sunset St, San Francisco, CA 94016" +275816,USB-C Charging Cable,1,11.95,10/13/19 11:22,"945 Lake St, Dallas, TX 75001" +275817,Apple Airpods Headphones,1,150,10/21/19 14:03,"930 Johnson St, Los Angeles, CA 90001" +275818,AAA Batteries (4-pack),3,2.99,10/01/19 13:46,"284 Sunset St, Los Angeles, CA 90001" +275819,USB-C Charging Cable,1,11.95,10/01/19 17:25,"29 Hickory St, Boston, MA 02215" +275820,AA Batteries (4-pack),1,3.84,10/20/19 22:19,"950 Cedar St, San Francisco, CA 94016" +275821,Wired Headphones,1,11.99,10/30/19 20:08,"469 Willow St, Los Angeles, CA 90001" +275822,34in Ultrawide Monitor,1,379.99,10/22/19 14:16,"948 Cherry St, San Francisco, CA 94016" +275823,Lightning Charging Cable,1,14.95,10/19/19 21:32,"417 Walnut St, Dallas, TX 75001" +275824,AA Batteries (4-pack),1,3.84,10/30/19 12:20,"797 9th St, San Francisco, CA 94016" +275825,Macbook Pro Laptop,1,1700,10/15/19 20:11,"178 12th St, Dallas, TX 75001" +275826,USB-C Charging Cable,2,11.95,10/08/19 12:24,"962 5th St, Los Angeles, CA 90001" +275827,USB-C Charging Cable,1,11.95,10/07/19 13:50,"43 Church St, San Francisco, CA 94016" +275828,AA Batteries (4-pack),1,3.84,10/20/19 06:58,"736 Lincoln St, Seattle, WA 98101" +275829,Bose SoundSport Headphones,1,99.99,10/20/19 11:32,"65 Dogwood St, New York City, NY 10001" +275830,USB-C Charging Cable,1,11.95,10/14/19 12:08,"445 Dogwood St, Los Angeles, CA 90001" +275831,Lightning Charging Cable,1,14.95,10/19/19 15:35,"934 Lincoln St, Boston, MA 02215" +275832,Lightning Charging Cable,1,14.95,10/31/19 00:27,"994 4th St, San Francisco, CA 94016" +275833,Lightning Charging Cable,1,14.95,10/17/19 13:25,"170 12th St, San Francisco, CA 94016" +275834,Wired Headphones,1,11.99,10/05/19 09:19,"34 8th St, Austin, TX 73301" +275835,Lightning Charging Cable,1,14.95,10/04/19 14:49,"962 14th St, New York City, NY 10001" +275836,Bose SoundSport Headphones,1,99.99,10/19/19 17:22,"495 Lincoln St, Dallas, TX 75001" +275837,Wired Headphones,1,11.99,10/27/19 23:24,"764 2nd St, San Francisco, CA 94016" +275838,Lightning Charging Cable,1,14.95,10/20/19 12:18,"602 Hickory St, New York City, NY 10001" +275839,Lightning Charging Cable,1,14.95,10/06/19 12:57,"190 Wilson St, Boston, MA 02215" +275840,AA Batteries (4-pack),2,3.84,10/31/19 16:23,"764 Chestnut St, Los Angeles, CA 90001" +275841,AAA Batteries (4-pack),4,2.99,10/16/19 10:02,"457 Main St, Austin, TX 73301" +275842,AAA Batteries (4-pack),4,2.99,10/30/19 22:34,"9 Sunset St, Dallas, TX 75001" +275843,Lightning Charging Cable,1,14.95,10/31/19 07:06,"22 5th St, Los Angeles, CA 90001" +275844,Apple Airpods Headphones,1,150,10/24/19 21:16,"547 Washington St, Dallas, TX 75001" +275845,27in 4K Gaming Monitor,1,389.99,10/02/19 00:15,"286 Highland St, Seattle, WA 98101" +275846,Wired Headphones,1,11.99,10/27/19 10:05,"83 Lincoln St, Dallas, TX 75001" +275847,USB-C Charging Cable,1,11.95,10/12/19 13:18,"458 14th St, San Francisco, CA 94016" +275848,Wired Headphones,1,11.99,10/16/19 08:30,"401 Hickory St, San Francisco, CA 94016" +275849,Bose SoundSport Headphones,1,99.99,10/24/19 23:48,"117 Walnut St, Atlanta, GA 30301" +275850,Apple Airpods Headphones,1,150,10/05/19 08:57,"608 Maple St, New York City, NY 10001" +275851,Bose SoundSport Headphones,1,99.99,10/02/19 11:51,"918 Ridge St, Los Angeles, CA 90001" +275852,27in FHD Monitor,1,149.99,10/09/19 03:14,"900 West St, New York City, NY 10001" +275853,Lightning Charging Cable,1,14.95,10/31/19 13:19,"284 Lake St, Boston, MA 02215" +275854,Lightning Charging Cable,1,14.95,10/20/19 10:44,"337 7th St, Seattle, WA 98101" +275855,ThinkPad Laptop,1,999.99,10/19/19 09:06,"463 9th St, San Francisco, CA 94016" +275856,34in Ultrawide Monitor,1,379.99,10/13/19 17:51,"485 Spruce St, San Francisco, CA 94016" +275857,AAA Batteries (4-pack),2,2.99,10/11/19 14:48,"431 Johnson St, Dallas, TX 75001" +275858,Lightning Charging Cable,1,14.95,10/15/19 21:33,"876 Center St, New York City, NY 10001" +275859,AAA Batteries (4-pack),1,2.99,10/23/19 08:39,"374 4th St, Boston, MA 02215" +275860,Lightning Charging Cable,1,14.95,10/15/19 16:16,"714 Highland St, Los Angeles, CA 90001" +275861,Bose SoundSport Headphones,1,99.99,10/27/19 05:53,"525 Lakeview St, New York City, NY 10001" +275862,Lightning Charging Cable,1,14.95,10/30/19 20:39,"446 13th St, San Francisco, CA 94016" +275863,Lightning Charging Cable,1,14.95,10/07/19 01:56,"227 Wilson St, Portland, OR 97035" +275864,AAA Batteries (4-pack),2,2.99,10/05/19 13:30,"633 Hickory St, Boston, MA 02215" +275865,Google Phone,1,600,10/24/19 09:47,"371 1st St, Boston, MA 02215" +275866,Wired Headphones,1,11.99,10/02/19 22:37,"112 Wilson St, Dallas, TX 75001" +275867,Bose SoundSport Headphones,1,99.99,10/08/19 09:39,"157 11th St, San Francisco, CA 94016" +275868,Apple Airpods Headphones,1,150,10/22/19 10:17,"875 Elm St, San Francisco, CA 94016" +275869,USB-C Charging Cable,1,11.95,10/30/19 12:51,"326 Highland St, Dallas, TX 75001" +275870,27in 4K Gaming Monitor,1,389.99,10/23/19 21:20,"795 Center St, Atlanta, GA 30301" +275871,Lightning Charging Cable,2,14.95,10/01/19 08:33,"585 North St, Los Angeles, CA 90001" +275872,Macbook Pro Laptop,1,1700,10/23/19 10:50,"556 Walnut St, San Francisco, CA 94016" +275873,Lightning Charging Cable,1,14.95,10/11/19 08:41,"808 Hill St, Los Angeles, CA 90001" +275874,AAA Batteries (4-pack),2,2.99,10/30/19 14:44,"505 1st St, Portland, ME 04101" +275875,27in FHD Monitor,1,149.99,10/25/19 11:38,"246 South St, San Francisco, CA 94016" +275876,27in 4K Gaming Monitor,1,389.99,10/20/19 00:17,"338 North St, Los Angeles, CA 90001" +275877,Apple Airpods Headphones,1,150,10/16/19 14:42,"939 Cherry St, Austin, TX 73301" +275878,USB-C Charging Cable,1,11.95,10/02/19 18:15,"307 Dogwood St, Seattle, WA 98101" +275879,20in Monitor,1,109.99,10/21/19 17:37,"899 8th St, Boston, MA 02215" +275880,ThinkPad Laptop,1,999.99,10/20/19 11:23,"194 Wilson St, Dallas, TX 75001" +275881,Apple Airpods Headphones,1,150,10/24/19 12:06,"458 Pine St, Portland, OR 97035" +275882,Lightning Charging Cable,1,14.95,10/16/19 17:38,"407 7th St, Atlanta, GA 30301" +275883,AA Batteries (4-pack),1,3.84,10/21/19 13:58,"798 South St, Portland, OR 97035" +275884,Bose SoundSport Headphones,1,99.99,10/29/19 11:44,"843 Lincoln St, Los Angeles, CA 90001" +275885,AA Batteries (4-pack),2,3.84,10/13/19 18:10,"247 Madison St, Dallas, TX 75001" +275886,ThinkPad Laptop,1,999.99,10/25/19 21:31,"659 Pine St, Dallas, TX 75001" +275887,USB-C Charging Cable,1,11.95,10/06/19 21:38,"173 Highland St, Austin, TX 73301" +275888,AA Batteries (4-pack),1,3.84,10/09/19 19:18,"995 Dogwood St, Boston, MA 02215" +275889,Google Phone,1,600,10/22/19 17:49,"303 Church St, Atlanta, GA 30301" +275890,Bose SoundSport Headphones,1,99.99,10/22/19 14:33,"60 8th St, Atlanta, GA 30301" +275891,Lightning Charging Cable,1,14.95,10/24/19 09:53,"736 10th St, Los Angeles, CA 90001" +275892,USB-C Charging Cable,1,11.95,10/27/19 16:43,"616 Jefferson St, Boston, MA 02215" +275893,34in Ultrawide Monitor,1,379.99,10/11/19 18:15,"323 Walnut St, San Francisco, CA 94016" +275894,Lightning Charging Cable,1,14.95,10/18/19 14:21,"851 Center St, Los Angeles, CA 90001" +275895,Wired Headphones,1,11.99,10/21/19 00:12,"408 Elm St, Portland, OR 97035" +275896,Macbook Pro Laptop,1,1700,10/14/19 18:18,"309 Lakeview St, Boston, MA 02215" +275897,AA Batteries (4-pack),1,3.84,10/30/19 19:33,"479 Washington St, Boston, MA 02215" +275898,AAA Batteries (4-pack),1,2.99,10/11/19 22:49,"365 South St, Dallas, TX 75001" +275899,Wired Headphones,1,11.99,10/15/19 12:13,"803 13th St, Boston, MA 02215" +275900,Wired Headphones,1,11.99,10/01/19 14:13,"811 Sunset St, San Francisco, CA 94016" +275901,AAA Batteries (4-pack),1,2.99,10/06/19 13:32,"431 West St, New York City, NY 10001" +275902,Macbook Pro Laptop,1,1700,10/08/19 23:07,"489 11th St, New York City, NY 10001" +275903,AAA Batteries (4-pack),1,2.99,10/20/19 11:35,"676 9th St, Dallas, TX 75001" +275904,AAA Batteries (4-pack),4,2.99,10/12/19 18:45,"112 12th St, San Francisco, CA 94016" +275905,27in FHD Monitor,1,149.99,10/29/19 22:18,"736 1st St, Atlanta, GA 30301" +275906,Apple Airpods Headphones,1,150,10/02/19 21:49,"825 Pine St, Portland, OR 97035" +275907,USB-C Charging Cable,3,11.95,10/28/19 23:41,"156 Hill St, Atlanta, GA 30301" +275908,Flatscreen TV,1,300,10/10/19 12:09,"389 14th St, Boston, MA 02215" +275909,Wired Headphones,1,11.99,10/13/19 14:04,"453 Madison St, Seattle, WA 98101" +275910,iPhone,1,700,10/10/19 10:05,"345 Forest St, San Francisco, CA 94016" +275911,Lightning Charging Cable,1,14.95,10/04/19 14:00,"344 Highland St, San Francisco, CA 94016" +275912,Wired Headphones,1,11.99,10/20/19 13:17,"196 8th St, San Francisco, CA 94016" +275913,Apple Airpods Headphones,1,150,10/07/19 17:27,"101 Chestnut St, San Francisco, CA 94016" +275914,AAA Batteries (4-pack),1,2.99,10/24/19 09:24,"448 Main St, Dallas, TX 75001" +275915,Flatscreen TV,1,300,10/29/19 11:00,"296 West St, San Francisco, CA 94016" +275916,Bose SoundSport Headphones,1,99.99,10/18/19 11:31,"836 8th St, Los Angeles, CA 90001" +275917,AAA Batteries (4-pack),1,2.99,10/04/19 14:46,"589 Main St, San Francisco, CA 94016" +275918,USB-C Charging Cable,1,11.95,10/26/19 13:54,"746 7th St, New York City, NY 10001" +275919,Macbook Pro Laptop,1,1700,10/03/19 16:28,"991 Cedar St, Los Angeles, CA 90001" +275920,Lightning Charging Cable,1,14.95,10/22/19 13:14,"6 River St, Atlanta, GA 30301" +275921,AA Batteries (4-pack),1,3.84,10/29/19 22:43,"700 Sunset St, Seattle, WA 98101" +275922,AA Batteries (4-pack),1,3.84,10/09/19 23:06,"929 Washington St, Los Angeles, CA 90001" +275923,Bose SoundSport Headphones,1,99.99,10/20/19 19:26,"614 Center St, Boston, MA 02215" +275924,Macbook Pro Laptop,1,1700,10/04/19 11:36,"178 9th St, Seattle, WA 98101" +275925,AAA Batteries (4-pack),1,2.99,10/31/19 08:20,"342 7th St, Atlanta, GA 30301" +275926,USB-C Charging Cable,1,11.95,10/30/19 23:55,"224 Lincoln St, Dallas, TX 75001" +275927,Apple Airpods Headphones,1,150,10/08/19 19:17,"118 10th St, Austin, TX 73301" +275928,USB-C Charging Cable,1,11.95,10/15/19 18:16,"7 Church St, Dallas, TX 75001" +275929,Lightning Charging Cable,1,14.95,10/27/19 09:44,"259 Jefferson St, Los Angeles, CA 90001" +275930,AAA Batteries (4-pack),3,2.99,10/24/19 09:05,"745 8th St, Portland, OR 97035" +275931,Lightning Charging Cable,1,14.95,10/18/19 10:30,"380 5th St, San Francisco, CA 94016" +275932,Wired Headphones,1,11.99,10/19/19 01:00,"92 Center St, New York City, NY 10001" +275933,USB-C Charging Cable,1,11.95,10/09/19 09:50,"718 6th St, San Francisco, CA 94016" +275934,27in 4K Gaming Monitor,1,389.99,10/08/19 23:39,"738 Cedar St, New York City, NY 10001" +275935,AA Batteries (4-pack),1,3.84,10/31/19 14:44,"673 Chestnut St, Los Angeles, CA 90001" +275936,Lightning Charging Cable,1,14.95,10/09/19 19:52,"275 Wilson St, New York City, NY 10001" +275937,Flatscreen TV,1,300,10/01/19 11:09,"808 Center St, Los Angeles, CA 90001" +275938,USB-C Charging Cable,1,11.95,10/15/19 06:07,"269 Walnut St, Atlanta, GA 30301" +275939,Apple Airpods Headphones,1,150,10/15/19 01:32,"377 Maple St, Seattle, WA 98101" +275940,AA Batteries (4-pack),1,3.84,10/16/19 12:07,"838 9th St, San Francisco, CA 94016" +275941,Lightning Charging Cable,1,14.95,10/23/19 19:51,"120 Lake St, San Francisco, CA 94016" +275942,AA Batteries (4-pack),2,3.84,10/26/19 13:53,"300 11th St, Seattle, WA 98101" +275943,Macbook Pro Laptop,1,1700,10/10/19 18:26,"981 Jackson St, San Francisco, CA 94016" +275944,iPhone,1,700,10/10/19 00:44,"433 Spruce St, San Francisco, CA 94016" +275945,20in Monitor,1,109.99,10/22/19 21:17,"554 2nd St, Atlanta, GA 30301" +275946,AAA Batteries (4-pack),3,2.99,10/18/19 08:58,"224 South St, Atlanta, GA 30301" +275947,Flatscreen TV,1,300,10/25/19 19:28,"958 Walnut St, Austin, TX 73301" +275948,AAA Batteries (4-pack),1,2.99,10/02/19 21:03,"248 Lincoln St, San Francisco, CA 94016" +275949,AA Batteries (4-pack),1,3.84,10/13/19 20:21,"283 Forest St, Dallas, TX 75001" +275950,AA Batteries (4-pack),1,3.84,10/11/19 13:36,"552 North St, San Francisco, CA 94016" +275951,Wired Headphones,1,11.99,10/30/19 14:15,"171 7th St, Boston, MA 02215" +275952,Apple Airpods Headphones,1,150,10/21/19 21:03,"793 Elm St, Dallas, TX 75001" +275953,iPhone,1,700,10/07/19 14:33,"522 Dogwood St, San Francisco, CA 94016" +275954,AA Batteries (4-pack),1,3.84,10/29/19 20:32,"709 Main St, Los Angeles, CA 90001" +275955,Google Phone,1,600,10/28/19 09:25,"164 9th St, New York City, NY 10001" +275956,Bose SoundSport Headphones,1,99.99,10/01/19 15:03,"620 4th St, New York City, NY 10001" +275957,Macbook Pro Laptop,1,1700,10/01/19 21:45,"478 North St, San Francisco, CA 94016" +275958,Lightning Charging Cable,1,14.95,10/08/19 12:44,"817 Lincoln St, New York City, NY 10001" +275959,27in FHD Monitor,1,149.99,10/04/19 23:21,"818 6th St, San Francisco, CA 94016" +275960,Lightning Charging Cable,1,14.95,10/10/19 22:53,"329 Washington St, San Francisco, CA 94016" +275961,Wired Headphones,1,11.99,10/31/19 17:41,"479 Forest St, Boston, MA 02215" +275962,Wired Headphones,1,11.99,10/05/19 12:42,"19 Center St, Los Angeles, CA 90001" +275963,Lightning Charging Cable,1,14.95,10/22/19 22:05,"620 West St, Portland, OR 97035" +275964,Wired Headphones,1,11.99,10/22/19 13:19,"543 Washington St, San Francisco, CA 94016" +275965,27in FHD Monitor,1,149.99,10/28/19 16:16,"578 8th St, San Francisco, CA 94016" +275966,Lightning Charging Cable,1,14.95,10/21/19 16:04,"616 Cedar St, Dallas, TX 75001" +275967,Lightning Charging Cable,1,14.95,10/03/19 10:08,"238 Meadow St, San Francisco, CA 94016" +275968,Bose SoundSport Headphones,1,99.99,10/20/19 01:18,"468 Park St, New York City, NY 10001" +275969,AAA Batteries (4-pack),1,2.99,10/21/19 13:50,"547 Spruce St, Los Angeles, CA 90001" +275970,USB-C Charging Cable,1,11.95,10/25/19 12:38,"332 Forest St, Portland, ME 04101" +275971,27in 4K Gaming Monitor,1,389.99,10/09/19 11:39,"794 Meadow St, Austin, TX 73301" +275972,Wired Headphones,2,11.99,10/29/19 20:27,"283 1st St, New York City, NY 10001" +275973,Apple Airpods Headphones,1,150,10/04/19 10:39,"433 Hickory St, Boston, MA 02215" +275974,USB-C Charging Cable,1,11.95,10/08/19 11:16,"912 Wilson St, Los Angeles, CA 90001" +275975,USB-C Charging Cable,1,11.95,10/11/19 08:45,"765 Maple St, Dallas, TX 75001" +275976,AAA Batteries (4-pack),1,2.99,10/01/19 14:58,"441 Jefferson St, Portland, OR 97035" +275977,AA Batteries (4-pack),1,3.84,10/24/19 19:31,"693 7th St, Dallas, TX 75001" +275978,AA Batteries (4-pack),5,3.84,10/20/19 16:04,"618 5th St, New York City, NY 10001" +275979,34in Ultrawide Monitor,1,379.99,10/31/19 12:04,"168 Ridge St, San Francisco, CA 94016" +275980,Apple Airpods Headphones,1,150,10/05/19 15:11,"517 Ridge St, New York City, NY 10001" +275981,USB-C Charging Cable,1,11.95,10/14/19 07:06,"729 Park St, Dallas, TX 75001" +275982,AAA Batteries (4-pack),1,2.99,10/31/19 16:56,"3 Jefferson St, Los Angeles, CA 90001" +275983,USB-C Charging Cable,1,11.95,10/29/19 14:07,"133 River St, Los Angeles, CA 90001" +275984,USB-C Charging Cable,2,11.95,10/13/19 11:54,"756 Adams St, Los Angeles, CA 90001" +275985,AA Batteries (4-pack),1,3.84,10/20/19 14:49,"148 Hickory St, Austin, TX 73301" +275986,AAA Batteries (4-pack),1,2.99,10/20/19 00:20,"172 West St, Portland, OR 97035" +275987,Bose SoundSport Headphones,1,99.99,10/15/19 16:06,"87 Spruce St, Portland, ME 04101" +275988,AAA Batteries (4-pack),1,2.99,10/10/19 11:56,"289 2nd St, New York City, NY 10001" +275989,AAA Batteries (4-pack),3,2.99,10/03/19 11:16,"928 11th St, New York City, NY 10001" +275990,Flatscreen TV,1,300,10/21/19 19:29,"511 Elm St, Portland, OR 97035" +275991,Bose SoundSport Headphones,1,99.99,10/27/19 19:51,"104 Madison St, San Francisco, CA 94016" +275992,AAA Batteries (4-pack),1,2.99,10/21/19 11:24,"706 Adams St, Seattle, WA 98101" +275993,Lightning Charging Cable,1,14.95,10/08/19 16:16,"179 Hill St, Seattle, WA 98101" +275994,Lightning Charging Cable,1,14.95,10/17/19 17:04,"283 Hill St, New York City, NY 10001" +275995,Apple Airpods Headphones,1,150,10/18/19 19:21,"938 Church St, Los Angeles, CA 90001" +275996,AA Batteries (4-pack),1,3.84,10/07/19 10:06,"743 Cedar St, New York City, NY 10001" +275997,AA Batteries (4-pack),1,3.84,10/06/19 16:38,"142 Ridge St, Portland, OR 97035" +275998,USB-C Charging Cable,1,11.95,10/06/19 12:23,"879 Jefferson St, Boston, MA 02215" +275999,Lightning Charging Cable,1,14.95,10/24/19 06:42,"63 North St, Boston, MA 02215" +276000,AA Batteries (4-pack),1,3.84,10/01/19 10:51,"249 7th St, Portland, OR 97035" +276001,Wired Headphones,3,11.99,10/30/19 22:26,"250 9th St, Boston, MA 02215" +276002,iPhone,1,700,10/29/19 15:14,"770 Forest St, Atlanta, GA 30301" +276002,Lightning Charging Cable,1,14.95,10/29/19 15:14,"770 Forest St, Atlanta, GA 30301" +276003,AA Batteries (4-pack),2,3.84,10/02/19 07:27,"368 9th St, San Francisco, CA 94016" +276004,Bose SoundSport Headphones,1,99.99,10/08/19 19:14,"662 Cedar St, Boston, MA 02215" +276005,USB-C Charging Cable,1,11.95,10/29/19 08:14,"954 Madison St, Dallas, TX 75001" +276006,Lightning Charging Cable,1,14.95,10/06/19 00:15,"786 Johnson St, San Francisco, CA 94016" +276007,AA Batteries (4-pack),1,3.84,10/24/19 21:52,"721 Park St, Los Angeles, CA 90001" +276008,27in FHD Monitor,1,149.99,10/13/19 09:48,"772 Dogwood St, Austin, TX 73301" +276009,Bose SoundSport Headphones,1,99.99,10/09/19 21:59,"972 Center St, New York City, NY 10001" +276010,AAA Batteries (4-pack),4,2.99,10/05/19 13:56,"639 Madison St, Seattle, WA 98101" +276011,Wired Headphones,1,11.99,10/25/19 19:27,"894 Johnson St, Los Angeles, CA 90001" +276012,iPhone,1,700,10/17/19 20:17,"944 Jackson St, San Francisco, CA 94016" +276013,USB-C Charging Cable,1,11.95,10/16/19 21:57,"983 8th St, Dallas, TX 75001" +276014,ThinkPad Laptop,1,999.99,10/18/19 00:29,"6 Main St, New York City, NY 10001" +276015,Apple Airpods Headphones,1,150,10/01/19 21:09,"912 6th St, Los Angeles, CA 90001" +276016,AAA Batteries (4-pack),1,2.99,10/17/19 09:37,"278 4th St, Los Angeles, CA 90001" +276017,AA Batteries (4-pack),2,3.84,10/18/19 22:42,"603 Cedar St, Dallas, TX 75001" +276018,Flatscreen TV,1,300,10/11/19 12:37,"308 Willow St, New York City, NY 10001" +276019,Lightning Charging Cable,1,14.95,10/06/19 17:03,"390 Maple St, San Francisco, CA 94016" +276020,27in 4K Gaming Monitor,1,389.99,10/26/19 19:51,"433 Adams St, Seattle, WA 98101" +276021,Apple Airpods Headphones,1,150,10/27/19 09:18,"411 Jackson St, San Francisco, CA 94016" +276022,34in Ultrawide Monitor,1,379.99,10/26/19 13:20,"304 Spruce St, Seattle, WA 98101" +276023,AAA Batteries (4-pack),1,2.99,10/11/19 15:12,"641 River St, Boston, MA 02215" +276024,Lightning Charging Cable,1,14.95,10/02/19 18:09,"286 5th St, Boston, MA 02215" +276025,Apple Airpods Headphones,1,150,10/21/19 14:11,"131 South St, Los Angeles, CA 90001" +276026,Lightning Charging Cable,1,14.95,10/14/19 11:10,"250 Madison St, San Francisco, CA 94016" +276027,AAA Batteries (4-pack),1,2.99,10/17/19 15:47,"614 5th St, Dallas, TX 75001" +276028,AA Batteries (4-pack),1,3.84,10/13/19 09:39,"582 Park St, Boston, MA 02215" +276029,AA Batteries (4-pack),1,3.84,10/22/19 09:55,"74 Ridge St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +276030,Google Phone,1,600,10/24/19 20:59,"232 Willow St, San Francisco, CA 94016" +276031,Apple Airpods Headphones,1,150,10/07/19 13:41,"29 7th St, Seattle, WA 98101" +276032,27in 4K Gaming Monitor,1,389.99,10/25/19 15:54,"830 Willow St, San Francisco, CA 94016" +276033,Apple Airpods Headphones,1,150,10/17/19 13:01,"430 Lakeview St, Atlanta, GA 30301" +276034,Lightning Charging Cable,1,14.95,10/20/19 19:32,"199 Cedar St, Austin, TX 73301" +276035,iPhone,1,700,10/12/19 06:35,"685 Wilson St, San Francisco, CA 94016" +276036,AAA Batteries (4-pack),1,2.99,10/22/19 12:05,"928 9th St, San Francisco, CA 94016" +276037,27in FHD Monitor,1,149.99,10/17/19 12:08,"876 Washington St, Boston, MA 02215" +276038,USB-C Charging Cable,1,11.95,10/03/19 14:58,"678 11th St, Boston, MA 02215" +276039,Wired Headphones,1,11.99,10/03/19 16:08,"156 6th St, Dallas, TX 75001" +276040,Wired Headphones,1,11.99,10/31/19 00:47,"701 Chestnut St, Boston, MA 02215" +276041,iPhone,1,700,10/01/19 12:20,"891 Jackson St, Los Angeles, CA 90001" +276041,Apple Airpods Headphones,1,150,10/01/19 12:20,"891 Jackson St, Los Angeles, CA 90001" +276042,USB-C Charging Cable,1,11.95,10/08/19 19:31,"721 Adams St, San Francisco, CA 94016" +276043,Bose SoundSport Headphones,1,99.99,10/09/19 22:06,"139 Chestnut St, Atlanta, GA 30301" +276044,Wired Headphones,1,11.99,10/28/19 22:29,"999 Main St, Atlanta, GA 30301" +276045,Wired Headphones,2,11.99,10/02/19 15:08,"478 Lakeview St, New York City, NY 10001" +276045,Bose SoundSport Headphones,1,99.99,10/02/19 15:08,"478 Lakeview St, New York City, NY 10001" +276046,AAA Batteries (4-pack),1,2.99,10/22/19 11:32,"65 Park St, San Francisco, CA 94016" +276047,Bose SoundSport Headphones,1,99.99,10/28/19 11:25,"862 12th St, Portland, OR 97035" +276048,Bose SoundSport Headphones,1,99.99,10/04/19 14:58,"847 Johnson St, New York City, NY 10001" +276049,20in Monitor,1,109.99,10/15/19 13:45,"890 12th St, Los Angeles, CA 90001" +276050,34in Ultrawide Monitor,1,379.99,10/06/19 11:02,"902 Sunset St, Atlanta, GA 30301" +276051,Flatscreen TV,1,300,10/21/19 19:32,"364 10th St, Los Angeles, CA 90001" +276052,AAA Batteries (4-pack),1,2.99,10/05/19 16:42,"240 Maple St, Dallas, TX 75001" +276053,Lightning Charging Cable,1,14.95,10/27/19 17:47,"372 Dogwood St, Portland, OR 97035" +276054,Macbook Pro Laptop,1,1700,10/08/19 21:21,"236 Church St, San Francisco, CA 94016" +276055,Lightning Charging Cable,1,14.95,10/21/19 10:03,"405 8th St, Seattle, WA 98101" +276056,Lightning Charging Cable,1,14.95,10/28/19 20:39,"925 Lake St, Austin, TX 73301" +276056,Apple Airpods Headphones,1,150,10/28/19 20:39,"925 Lake St, Austin, TX 73301" +276057,Bose SoundSport Headphones,1,99.99,10/09/19 14:24,"309 Forest St, San Francisco, CA 94016" +276058,Apple Airpods Headphones,1,150,10/01/19 19:43,"619 Cherry St, New York City, NY 10001" +276059,AA Batteries (4-pack),1,3.84,10/03/19 17:14,"296 Madison St, San Francisco, CA 94016" +276060,Apple Airpods Headphones,1,150,10/31/19 15:10,"291 Sunset St, Dallas, TX 75001" +276061,ThinkPad Laptop,1,999.99,10/02/19 13:17,"547 West St, Portland, OR 97035" +276062,AA Batteries (4-pack),1,3.84,10/03/19 12:49,"923 Maple St, San Francisco, CA 94016" +276063,USB-C Charging Cable,1,11.95,10/20/19 15:34,"282 Madison St, Los Angeles, CA 90001" +276064,Wired Headphones,1,11.99,10/03/19 21:08,"608 13th St, Dallas, TX 75001" +276065,Apple Airpods Headphones,1,150,10/26/19 16:09,"70 Hickory St, San Francisco, CA 94016" +276066,AA Batteries (4-pack),1,3.84,10/20/19 13:26,"384 Cherry St, Dallas, TX 75001" +276067,USB-C Charging Cable,1,11.95,10/12/19 13:57,"714 11th St, San Francisco, CA 94016" +276068,iPhone,1,700,10/26/19 06:55,"184 Jackson St, San Francisco, CA 94016" +276068,Lightning Charging Cable,1,14.95,10/26/19 06:55,"184 Jackson St, San Francisco, CA 94016" +276069,AA Batteries (4-pack),3,3.84,10/15/19 09:36,"5 Cedar St, Austin, TX 73301" +276070,AA Batteries (4-pack),1,3.84,10/31/19 12:07,"767 Willow St, Los Angeles, CA 90001" +276071,Lightning Charging Cable,1,14.95,10/13/19 20:10,"681 9th St, San Francisco, CA 94016" +276072,Bose SoundSport Headphones,1,99.99,10/31/19 21:26,"321 Lincoln St, New York City, NY 10001" +276073,Wired Headphones,1,11.99,10/02/19 00:45,"939 Willow St, New York City, NY 10001" +276074,Lightning Charging Cable,1,14.95,10/25/19 11:46,"271 Ridge St, San Francisco, CA 94016" +276075,Wired Headphones,1,11.99,10/15/19 23:26,"917 Lakeview St, Los Angeles, CA 90001" +276076,Bose SoundSport Headphones,1,99.99,10/25/19 10:08,"38 Forest St, Los Angeles, CA 90001" +276077,Wired Headphones,1,11.99,10/18/19 17:03,"838 14th St, Los Angeles, CA 90001" +276078,USB-C Charging Cable,1,11.95,10/29/19 08:32,"881 8th St, Seattle, WA 98101" +276079,USB-C Charging Cable,1,11.95,10/22/19 14:03,"873 Center St, Boston, MA 02215" +276080,AAA Batteries (4-pack),1,2.99,10/25/19 09:56,"796 Sunset St, Portland, ME 04101" +276081,27in FHD Monitor,1,149.99,10/17/19 19:16,"839 Madison St, Dallas, TX 75001" +276082,USB-C Charging Cable,1,11.95,10/20/19 15:06,"35 Chestnut St, Los Angeles, CA 90001" +276083,Wired Headphones,1,11.99,10/26/19 13:21,"919 Hickory St, New York City, NY 10001" +276084,USB-C Charging Cable,1,11.95,10/08/19 07:32,"918 River St, San Francisco, CA 94016" +276085,Bose SoundSport Headphones,1,99.99,10/05/19 16:57,"893 5th St, New York City, NY 10001" +276086,Wired Headphones,1,11.99,10/30/19 12:36,"298 9th St, Atlanta, GA 30301" +276087,USB-C Charging Cable,1,11.95,10/22/19 19:04,"223 Dogwood St, Atlanta, GA 30301" +276088,AA Batteries (4-pack),1,3.84,10/07/19 17:18,"522 Walnut St, Dallas, TX 75001" +276089,AA Batteries (4-pack),1,3.84,10/15/19 18:08,"771 Jackson St, Atlanta, GA 30301" +276090,Bose SoundSport Headphones,1,99.99,10/20/19 09:01,"229 Center St, Portland, OR 97035" +276091,Lightning Charging Cable,1,14.95,10/09/19 18:13,"823 Park St, San Francisco, CA 94016" +276092,iPhone,1,700,10/05/19 19:35,"411 Ridge St, San Francisco, CA 94016" +276092,Apple Airpods Headphones,1,150,10/05/19 19:35,"411 Ridge St, San Francisco, CA 94016" +276093,Apple Airpods Headphones,1,150,10/08/19 14:24,"566 Willow St, San Francisco, CA 94016" +276094,AAA Batteries (4-pack),1,2.99,10/27/19 00:10,"622 Walnut St, New York City, NY 10001" +276095,Bose SoundSport Headphones,1,99.99,10/02/19 08:55,"22 Washington St, New York City, NY 10001" +276096,Macbook Pro Laptop,1,1700,10/10/19 19:52,"908 11th St, Los Angeles, CA 90001" +276097,AAA Batteries (4-pack),1,2.99,10/01/19 10:34,"382 Wilson St, Portland, OR 97035" +276098,Apple Airpods Headphones,1,150,10/05/19 09:07,"723 Willow St, San Francisco, CA 94016" +276099,AAA Batteries (4-pack),3,2.99,10/13/19 23:18,"988 Dogwood St, San Francisco, CA 94016" +276100,Lightning Charging Cable,1,14.95,10/08/19 20:32,"531 13th St, New York City, NY 10001" +276101,Apple Airpods Headphones,1,150,10/21/19 19:26,"494 11th St, Boston, MA 02215" +276102,Bose SoundSport Headphones,1,99.99,10/25/19 01:33,"100 Washington St, New York City, NY 10001" +276103,Lightning Charging Cable,1,14.95,10/29/19 17:21,"954 Jefferson St, Los Angeles, CA 90001" +276104,USB-C Charging Cable,1,11.95,10/27/19 05:47,"670 6th St, Los Angeles, CA 90001" +276105,Lightning Charging Cable,1,14.95,10/29/19 12:02,"891 Highland St, Seattle, WA 98101" +276106,27in 4K Gaming Monitor,1,389.99,10/09/19 14:37,"257 Hickory St, Atlanta, GA 30301" +276107,27in 4K Gaming Monitor,1,389.99,10/31/19 20:46,"323 Park St, New York City, NY 10001" +276108,Wired Headphones,1,11.99,10/04/19 12:54,"698 Forest St, Los Angeles, CA 90001" +276109,Bose SoundSport Headphones,1,99.99,10/29/19 20:14,"390 5th St, Boston, MA 02215" +276110,AA Batteries (4-pack),2,3.84,10/04/19 16:22,"335 Cherry St, Boston, MA 02215" +276111,Lightning Charging Cable,1,14.95,10/15/19 09:47,"406 Chestnut St, Seattle, WA 98101" +276112,Wired Headphones,2,11.99,10/03/19 12:08,"504 11th St, New York City, NY 10001" +276113,USB-C Charging Cable,2,11.95,10/07/19 19:41,"957 North St, San Francisco, CA 94016" +276114,Lightning Charging Cable,1,14.95,10/13/19 16:42,"993 14th St, Los Angeles, CA 90001" +276115,Wired Headphones,1,11.99,10/21/19 23:41,"679 Cedar St, Boston, MA 02215" +276116,Bose SoundSport Headphones,1,99.99,10/01/19 12:03,"862 Park St, San Francisco, CA 94016" +276117,AA Batteries (4-pack),1,3.84,10/02/19 20:10,"629 Pine St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +276118,iPhone,1,700,10/07/19 14:02,"415 Park St, New York City, NY 10001" +276119,Lightning Charging Cable,1,14.95,10/09/19 13:46,"72 South St, Austin, TX 73301" +276120,Lightning Charging Cable,1,14.95,10/31/19 19:07,"222 Pine St, Dallas, TX 75001" +276121,Lightning Charging Cable,1,14.95,10/30/19 12:23,"49 River St, San Francisco, CA 94016" +276122,USB-C Charging Cable,1,11.95,10/05/19 13:36,"43 Lakeview St, Los Angeles, CA 90001" +276123,Apple Airpods Headphones,1,150,10/31/19 20:33,"125 Main St, Austin, TX 73301" +276124,Lightning Charging Cable,1,14.95,10/07/19 12:57,"380 River St, Seattle, WA 98101" +276125,Wired Headphones,1,11.99,10/21/19 21:54,"668 Washington St, Atlanta, GA 30301" +276126,USB-C Charging Cable,1,11.95,10/29/19 20:24,"996 Park St, San Francisco, CA 94016" +276127,Lightning Charging Cable,1,14.95,10/21/19 10:30,"908 Washington St, Boston, MA 02215" +276128,iPhone,1,700,10/20/19 11:46,"313 Hill St, New York City, NY 10001" +276129,Apple Airpods Headphones,1,150,10/03/19 23:26,"465 Cedar St, Boston, MA 02215" +276130,Wired Headphones,1,11.99,10/11/19 12:19,"903 1st St, Atlanta, GA 30301" +276131,Vareebadd Phone,1,400,10/04/19 11:19,"934 Center St, Atlanta, GA 30301" +276131,USB-C Charging Cable,1,11.95,10/04/19 11:19,"934 Center St, Atlanta, GA 30301" +276132,27in FHD Monitor,1,149.99,10/04/19 15:44,"971 Elm St, San Francisco, CA 94016" +276133,AA Batteries (4-pack),1,3.84,10/10/19 07:41,"212 Lake St, Los Angeles, CA 90001" +276134,Lightning Charging Cable,1,14.95,10/18/19 21:15,"772 Church St, Seattle, WA 98101" +276135,AA Batteries (4-pack),2,3.84,10/18/19 07:28,"112 Dogwood St, San Francisco, CA 94016" +276136,AA Batteries (4-pack),1,3.84,10/26/19 22:33,"225 Hill St, Boston, MA 02215" +276137,Flatscreen TV,1,300,10/04/19 09:23,"391 Madison St, San Francisco, CA 94016" +276138,Bose SoundSport Headphones,1,99.99,10/16/19 16:02,"889 Jefferson St, San Francisco, CA 94016" +276139,USB-C Charging Cable,1,11.95,10/23/19 09:08,"999 6th St, Los Angeles, CA 90001" +276140,20in Monitor,1,109.99,10/04/19 16:36,"233 2nd St, Los Angeles, CA 90001" +276141,Bose SoundSport Headphones,1,99.99,10/14/19 13:56,"821 River St, Dallas, TX 75001" +276142,AAA Batteries (4-pack),1,2.99,10/28/19 15:21,"165 7th St, San Francisco, CA 94016" +276143,AA Batteries (4-pack),2,3.84,10/29/19 21:11,"817 Lakeview St, Boston, MA 02215" +276144,AAA Batteries (4-pack),1,2.99,10/29/19 17:55,"154 12th St, San Francisco, CA 94016" +276145,Macbook Pro Laptop,1,1700,10/30/19 18:40,"98 Wilson St, Los Angeles, CA 90001" +276146,Wired Headphones,1,11.99,10/02/19 13:20,"903 Adams St, San Francisco, CA 94016" +276147,AAA Batteries (4-pack),2,2.99,10/13/19 21:17,"548 10th St, Los Angeles, CA 90001" +276148,USB-C Charging Cable,1,11.95,10/06/19 14:57,"719 Washington St, Atlanta, GA 30301" +276149,Flatscreen TV,1,300,10/24/19 16:28,"625 5th St, San Francisco, CA 94016" +276150,Apple Airpods Headphones,1,150,10/24/19 21:59,"319 North St, New York City, NY 10001" +276151,USB-C Charging Cable,1,11.95,10/13/19 10:11,"179 2nd St, Seattle, WA 98101" +276152,Lightning Charging Cable,1,14.95,10/03/19 09:20,"565 North St, Boston, MA 02215" +276153,AAA Batteries (4-pack),2,2.99,10/27/19 14:38,"38 Main St, New York City, NY 10001" +276154,Lightning Charging Cable,2,14.95,10/22/19 13:39,"80 Lakeview St, San Francisco, CA 94016" +276155,Lightning Charging Cable,1,14.95,10/31/19 11:31,"997 11th St, Boston, MA 02215" +276156,iPhone,1,700,10/01/19 15:04,"855 Adams St, San Francisco, CA 94016" +276156,Lightning Charging Cable,1,14.95,10/01/19 15:04,"855 Adams St, San Francisco, CA 94016" +276157,ThinkPad Laptop,1,999.99,10/14/19 12:29,"502 Ridge St, San Francisco, CA 94016" +276158,Apple Airpods Headphones,1,150,10/29/19 17:09,"590 West St, San Francisco, CA 94016" +276159,iPhone,1,700,10/08/19 18:39,"112 12th St, Boston, MA 02215" +276160,Lightning Charging Cable,2,14.95,10/29/19 07:26,"730 Lincoln St, San Francisco, CA 94016" +276161,AA Batteries (4-pack),1,3.84,10/29/19 09:22,"893 Church St, Portland, OR 97035" +276162,iPhone,1,700,10/03/19 09:29,"268 Jackson St, Seattle, WA 98101" +276163,USB-C Charging Cable,2,11.95,10/23/19 09:31,"55 Center St, Boston, MA 02215" +276164,AA Batteries (4-pack),1,3.84,10/22/19 11:48,"912 6th St, Seattle, WA 98101" +276165,AA Batteries (4-pack),1,3.84,10/05/19 16:46,"1 Lakeview St, Los Angeles, CA 90001" +276166,USB-C Charging Cable,1,11.95,10/04/19 14:08,"165 North St, Seattle, WA 98101" +276167,Google Phone,1,600,10/23/19 12:19,"420 South St, New York City, NY 10001" +276168,Bose SoundSport Headphones,1,99.99,10/27/19 10:46,"270 Jackson St, San Francisco, CA 94016" +276169,Apple Airpods Headphones,1,150,10/03/19 22:26,"589 Park St, Atlanta, GA 30301" +276170,Bose SoundSport Headphones,1,99.99,10/04/19 21:47,"308 River St, Boston, MA 02215" +276171,USB-C Charging Cable,1,11.95,10/09/19 19:59,"692 9th St, Boston, MA 02215" +276172,AA Batteries (4-pack),1,3.84,10/06/19 21:36,"553 North St, Los Angeles, CA 90001" +276173,Apple Airpods Headphones,1,150,10/14/19 15:25,"244 2nd St, Austin, TX 73301" +276174,Google Phone,1,600,10/30/19 16:49,"593 Sunset St, Los Angeles, CA 90001" +276175,Apple Airpods Headphones,1,150,10/08/19 08:26,"46 Wilson St, New York City, NY 10001" +276176,Macbook Pro Laptop,1,1700,10/01/19 09:48,"150 Park St, Los Angeles, CA 90001" +276177,AAA Batteries (4-pack),1,2.99,10/10/19 12:56,"706 South St, San Francisco, CA 94016" +276178,34in Ultrawide Monitor,1,379.99,10/24/19 23:58,"322 Cedar St, Portland, ME 04101" +276179,Bose SoundSport Headphones,1,99.99,10/20/19 07:32,"426 Washington St, Portland, OR 97035" +276180,USB-C Charging Cable,2,11.95,10/23/19 23:53,"110 Dogwood St, Dallas, TX 75001" +276181,AA Batteries (4-pack),1,3.84,10/01/19 11:46,"709 1st St, Dallas, TX 75001" +276182,USB-C Charging Cable,1,11.95,10/28/19 20:56,"79 Cedar St, Portland, OR 97035" +276183,USB-C Charging Cable,1,11.95,10/14/19 18:28,"459 Jackson St, San Francisco, CA 94016" +276184,Google Phone,1,600,10/22/19 12:57,"675 14th St, Boston, MA 02215" +276185,Lightning Charging Cable,1,14.95,10/22/19 17:16,"684 10th St, New York City, NY 10001" +276186,USB-C Charging Cable,1,11.95,10/05/19 21:24,"963 9th St, New York City, NY 10001" +276187,Google Phone,1,600,10/31/19 08:04,"646 7th St, Seattle, WA 98101" +276188,Apple Airpods Headphones,1,150,10/22/19 15:41,"232 Madison St, Los Angeles, CA 90001" +276189,Lightning Charging Cable,1,14.95,10/24/19 19:20,"457 Elm St, Portland, OR 97035" +276190,Flatscreen TV,1,300,10/30/19 12:25,"668 14th St, San Francisco, CA 94016" +276191,Bose SoundSport Headphones,1,99.99,10/25/19 18:52,"516 Lakeview St, Austin, TX 73301" +276192,iPhone,1,700,10/10/19 08:31,"303 Elm St, Los Angeles, CA 90001" +276193,Lightning Charging Cable,1,14.95,10/10/19 14:17,"80 River St, Los Angeles, CA 90001" +276194,Lightning Charging Cable,1,14.95,10/03/19 15:41,"313 Park St, Los Angeles, CA 90001" +276195,USB-C Charging Cable,1,11.95,10/16/19 23:55,"775 2nd St, Dallas, TX 75001" +276196,iPhone,1,700,10/01/19 20:17,"483 Elm St, Dallas, TX 75001" +276197,Lightning Charging Cable,1,14.95,10/20/19 19:39,"785 Washington St, Los Angeles, CA 90001" +276198,USB-C Charging Cable,1,11.95,10/02/19 18:27,"847 Wilson St, New York City, NY 10001" +276199,AAA Batteries (4-pack),6,2.99,10/07/19 20:13,"740 Madison St, Boston, MA 02215" +276200,Wired Headphones,1,11.99,10/05/19 14:40,"177 Walnut St, New York City, NY 10001" +276201,Apple Airpods Headphones,1,150,10/04/19 09:06,"144 Highland St, Portland, ME 04101" +276202,USB-C Charging Cable,1,11.95,10/06/19 19:58,"796 Main St, Seattle, WA 98101" +276203,iPhone,1,700,10/20/19 18:35,"704 Spruce St, Boston, MA 02215" +276204,Apple Airpods Headphones,1,150,10/03/19 23:53,"685 Spruce St, San Francisco, CA 94016" +276205,AA Batteries (4-pack),1,3.84,10/10/19 20:06,"770 North St, Austin, TX 73301" +276206,USB-C Charging Cable,1,11.95,10/27/19 14:13,"62 Elm St, Los Angeles, CA 90001" +276207,Google Phone,1,600,10/23/19 22:10,"269 Cedar St, Atlanta, GA 30301" +276208,Bose SoundSport Headphones,1,99.99,10/27/19 16:55,"128 Cherry St, Austin, TX 73301" +276209,Google Phone,1,600,10/04/19 19:48,"719 5th St, Portland, OR 97035" +276210,AA Batteries (4-pack),1,3.84,10/17/19 17:49,"19 2nd St, Austin, TX 73301" +276211,Apple Airpods Headphones,1,150,10/09/19 19:17,"247 Johnson St, New York City, NY 10001" +276212,Google Phone,1,600,10/23/19 19:33,"133 10th St, San Francisco, CA 94016" +276213,Lightning Charging Cable,1,14.95,10/23/19 17:28,"750 Maple St, Seattle, WA 98101" +276214,iPhone,1,700,10/20/19 16:12,"3 7th St, Austin, TX 73301" +276215,AA Batteries (4-pack),1,3.84,10/22/19 23:27,"8 Forest St, Los Angeles, CA 90001" +276216,AA Batteries (4-pack),3,3.84,10/05/19 12:27,"713 Lincoln St, Portland, OR 97035" +276217,Wired Headphones,1,11.99,10/02/19 20:04,"12 Cedar St, Dallas, TX 75001" +276218,Apple Airpods Headphones,1,150,10/06/19 10:57,"109 Main St, Boston, MA 02215" +276219,Google Phone,1,600,10/18/19 12:16,"618 Church St, Atlanta, GA 30301" +276220,Google Phone,1,600,10/29/19 10:45,"562 Wilson St, Portland, OR 97035" +276221,Bose SoundSport Headphones,1,99.99,10/02/19 14:06,"512 Hickory St, San Francisco, CA 94016" +276222,USB-C Charging Cable,1,11.95,10/23/19 14:25,"24 Madison St, Boston, MA 02215" +276223,Bose SoundSport Headphones,1,99.99,10/19/19 17:10,"984 South St, San Francisco, CA 94016" +276223,Lightning Charging Cable,1,14.95,10/19/19 17:10,"984 South St, San Francisco, CA 94016" +276224,Wired Headphones,1,11.99,10/17/19 12:47,"57 Cherry St, Los Angeles, CA 90001" +276225,34in Ultrawide Monitor,1,379.99,10/01/19 17:17,"95 Johnson St, Los Angeles, CA 90001" +276226,Wired Headphones,1,11.99,10/08/19 21:01,"101 Sunset St, San Francisco, CA 94016" +276227,USB-C Charging Cable,1,11.95,10/03/19 18:36,"345 14th St, Portland, OR 97035" +276228,27in 4K Gaming Monitor,1,389.99,10/29/19 08:12,"443 Forest St, San Francisco, CA 94016" +276229,USB-C Charging Cable,1,11.95,10/08/19 14:26,"169 Chestnut St, Los Angeles, CA 90001" +276230,Macbook Pro Laptop,1,1700,10/22/19 20:49,"6 6th St, Los Angeles, CA 90001" +276231,27in 4K Gaming Monitor,1,389.99,10/06/19 09:44,"317 Forest St, San Francisco, CA 94016" +276232,USB-C Charging Cable,1,11.95,10/14/19 17:00,"962 Washington St, San Francisco, CA 94016" +276233,USB-C Charging Cable,1,11.95,10/04/19 18:40,"138 11th St, San Francisco, CA 94016" +276234,Flatscreen TV,1,300,10/22/19 15:14,"340 12th St, Portland, ME 04101" +276235,AAA Batteries (4-pack),3,2.99,10/03/19 21:46,"214 Elm St, Boston, MA 02215" +276236,Wired Headphones,1,11.99,10/21/19 06:04,"804 Church St, Boston, MA 02215" +276237,USB-C Charging Cable,1,11.95,10/23/19 12:16,"46 11th St, Portland, OR 97035" +276238,Wired Headphones,1,11.99,10/24/19 18:23,"978 Willow St, San Francisco, CA 94016" +276239,Wired Headphones,1,11.99,10/26/19 16:03,"761 Forest St, San Francisco, CA 94016" +,,,,, +276240,Wired Headphones,1,11.99,10/26/19 10:42,"710 Hickory St, San Francisco, CA 94016" +276241,AA Batteries (4-pack),1,3.84,10/02/19 22:14,"187 Cedar St, Los Angeles, CA 90001" +276242,USB-C Charging Cable,1,11.95,10/25/19 20:32,"555 Park St, Seattle, WA 98101" +276243,AAA Batteries (4-pack),1,2.99,10/10/19 22:14,"269 Jackson St, Atlanta, GA 30301" +276244,AAA Batteries (4-pack),1,2.99,10/16/19 12:02,"906 Hickory St, San Francisco, CA 94016" +276245,Flatscreen TV,1,300,10/21/19 00:59,"197 4th St, Seattle, WA 98101" +276246,AAA Batteries (4-pack),1,2.99,10/20/19 11:30,"945 11th St, Los Angeles, CA 90001" +276247,LG Washing Machine,1,600.0,10/18/19 12:10,"679 2nd St, Atlanta, GA 30301" +276248,AA Batteries (4-pack),1,3.84,10/19/19 11:18,"582 Jackson St, Los Angeles, CA 90001" +276249,AA Batteries (4-pack),1,3.84,10/13/19 11:25,"195 Park St, San Francisco, CA 94016" +276250,Google Phone,1,600,10/04/19 20:26,"577 Lake St, San Francisco, CA 94016" +276251,iPhone,1,700,10/12/19 11:22,"791 Walnut St, Portland, OR 97035" +276252,iPhone,1,700,10/15/19 17:55,"365 Highland St, New York City, NY 10001" +276253,iPhone,1,700,10/03/19 08:32,"93 Park St, New York City, NY 10001" +276254,Google Phone,1,600,10/29/19 19:52,"124 4th St, New York City, NY 10001" +276254,USB-C Charging Cable,1,11.95,10/29/19 19:52,"124 4th St, New York City, NY 10001" +276255,20in Monitor,1,109.99,10/21/19 08:02,"747 Meadow St, Boston, MA 02215" +276256,iPhone,1,700,10/03/19 23:21,"601 12th St, Los Angeles, CA 90001" +276257,AA Batteries (4-pack),1,3.84,10/22/19 23:18,"852 Ridge St, Boston, MA 02215" +276258,Apple Airpods Headphones,1,150,10/01/19 16:08,"875 Sunset St, Austin, TX 73301" +276259,Lightning Charging Cable,1,14.95,10/11/19 07:52,"216 Cherry St, Dallas, TX 75001" +276260,27in FHD Monitor,1,149.99,10/19/19 19:08,"750 Ridge St, Los Angeles, CA 90001" +276261,Flatscreen TV,1,300,10/03/19 15:20,"653 Elm St, New York City, NY 10001" +276262,AA Batteries (4-pack),1,3.84,10/18/19 17:55,"864 West St, Los Angeles, CA 90001" +276263,Google Phone,1,600,10/23/19 20:12,"292 Church St, Atlanta, GA 30301" +276263,Wired Headphones,1,11.99,10/23/19 20:12,"292 Church St, Atlanta, GA 30301" +276264,20in Monitor,1,109.99,10/19/19 21:15,"266 Spruce St, Los Angeles, CA 90001" +276265,Bose SoundSport Headphones,1,99.99,10/15/19 13:44,"808 Dogwood St, New York City, NY 10001" +276266,AAA Batteries (4-pack),4,2.99,10/24/19 09:10,"808 Maple St, San Francisco, CA 94016" +276267,AAA Batteries (4-pack),1,2.99,10/31/19 11:33,"38 Walnut St, San Francisco, CA 94016" +,,,,, +276268,Bose SoundSport Headphones,1,99.99,10/06/19 12:52,"410 Elm St, Portland, OR 97035" +276269,AAA Batteries (4-pack),1,2.99,10/08/19 21:01,"487 Wilson St, Dallas, TX 75001" +276270,Macbook Pro Laptop,1,1700,10/06/19 21:43,"806 Cedar St, San Francisco, CA 94016" +276271,Flatscreen TV,1,300,10/11/19 12:23,"580 Meadow St, San Francisco, CA 94016" +276272,AAA Batteries (4-pack),1,2.99,10/18/19 09:49,"152 South St, Los Angeles, CA 90001" +276273,20in Monitor,1,109.99,10/30/19 10:36,"971 Maple St, San Francisco, CA 94016" +276274,Lightning Charging Cable,1,14.95,10/10/19 18:45,"289 Jackson St, Austin, TX 73301" +276275,Lightning Charging Cable,1,14.95,10/22/19 11:03,"727 Main St, Dallas, TX 75001" +276276,Google Phone,1,600,10/13/19 12:59,"153 Elm St, Portland, OR 97035" +276276,Bose SoundSport Headphones,1,99.99,10/13/19 12:59,"153 Elm St, Portland, OR 97035" +276277,AA Batteries (4-pack),1,3.84,10/19/19 14:00,"771 Walnut St, San Francisco, CA 94016" +276278,USB-C Charging Cable,2,11.95,10/03/19 15:03,"556 Church St, New York City, NY 10001" +276279,AAA Batteries (4-pack),5,2.99,10/28/19 18:39,"645 Madison St, San Francisco, CA 94016" +276280,Wired Headphones,1,11.99,10/06/19 20:58,"201 13th St, Los Angeles, CA 90001" +276281,ThinkPad Laptop,1,999.99,10/12/19 13:59,"378 Main St, San Francisco, CA 94016" +276282,27in FHD Monitor,1,149.99,10/02/19 13:31,"22 Hill St, Los Angeles, CA 90001" +276283,Macbook Pro Laptop,1,1700,10/30/19 09:43,"937 9th St, San Francisco, CA 94016" +276284,AA Batteries (4-pack),2,3.84,10/31/19 21:37,"860 Spruce St, Los Angeles, CA 90001" +276285,Apple Airpods Headphones,1,150,10/15/19 11:08,"720 Cherry St, San Francisco, CA 94016" +276286,Bose SoundSport Headphones,1,99.99,10/24/19 19:43,"334 1st St, San Francisco, CA 94016" +276287,AA Batteries (4-pack),3,3.84,10/03/19 13:24,"841 Lake St, New York City, NY 10001" +276288,Wired Headphones,1,11.99,10/27/19 11:42,"359 Cherry St, San Francisco, CA 94016" +276289,Google Phone,1,600,10/22/19 09:55,"819 1st St, Atlanta, GA 30301" +276290,AAA Batteries (4-pack),1,2.99,10/11/19 09:49,"9 Spruce St, Dallas, TX 75001" +,,,,, +276291,AAA Batteries (4-pack),2,2.99,10/22/19 23:44,"863 12th St, Austin, TX 73301" +276292,27in 4K Gaming Monitor,1,389.99,10/16/19 23:31,"823 Hill St, Portland, OR 97035" +276293,USB-C Charging Cable,1,11.95,10/27/19 16:50,"12 Hickory St, New York City, NY 10001" +276294,AA Batteries (4-pack),1,3.84,10/18/19 15:39,"460 Highland St, New York City, NY 10001" +276295,27in FHD Monitor,1,149.99,10/04/19 19:00,"485 South St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +276296,AAA Batteries (4-pack),1,2.99,10/18/19 11:02,"770 West St, San Francisco, CA 94016" +276297,iPhone,1,700,10/02/19 11:18,"678 2nd St, New York City, NY 10001" +276298,AA Batteries (4-pack),1,3.84,10/07/19 12:58,"263 5th St, San Francisco, CA 94016" +276299,iPhone,1,700,10/18/19 13:27,"941 11th St, Los Angeles, CA 90001" +276299,Apple Airpods Headphones,1,150,10/18/19 13:27,"941 11th St, Los Angeles, CA 90001" +276300,Lightning Charging Cable,1,14.95,10/09/19 22:50,"960 Park St, Los Angeles, CA 90001" +276301,AAA Batteries (4-pack),1,2.99,10/23/19 21:12,"22 7th St, Portland, OR 97035" +276302,Apple Airpods Headphones,1,150,10/07/19 21:36,"403 Jackson St, New York City, NY 10001" +276303,34in Ultrawide Monitor,1,379.99,10/07/19 20:43,"548 Madison St, Portland, OR 97035" +276304,Lightning Charging Cable,1,14.95,10/15/19 06:32,"444 Highland St, Austin, TX 73301" +276305,Bose SoundSport Headphones,1,99.99,10/14/19 23:23,"296 13th St, Austin, TX 73301" +276306,Wired Headphones,1,11.99,10/05/19 09:11,"687 Hill St, San Francisco, CA 94016" +276307,Bose SoundSport Headphones,1,99.99,10/01/19 19:09,"770 Forest St, San Francisco, CA 94016" +276308,AAA Batteries (4-pack),1,2.99,10/13/19 09:44,"566 River St, Los Angeles, CA 90001" +276309,Apple Airpods Headphones,1,150,10/11/19 19:47,"15 Cedar St, Los Angeles, CA 90001" +276310,iPhone,1,700,10/11/19 14:22,"489 Elm St, Austin, TX 73301" +276311,Lightning Charging Cable,1,14.95,10/04/19 20:32,"610 9th St, San Francisco, CA 94016" +276312,Macbook Pro Laptop,1,1700,10/12/19 17:51,"14 Meadow St, Boston, MA 02215" +276313,Lightning Charging Cable,1,14.95,10/16/19 16:55,"453 River St, New York City, NY 10001" +276314,Wired Headphones,1,11.99,10/30/19 19:45,"743 Washington St, San Francisco, CA 94016" +276315,Lightning Charging Cable,1,14.95,10/06/19 17:55,"537 South St, Austin, TX 73301" +276316,Apple Airpods Headphones,1,150,10/01/19 18:02,"350 Cherry St, New York City, NY 10001" +276316,Wired Headphones,1,11.99,10/01/19 18:02,"350 Cherry St, New York City, NY 10001" +276317,20in Monitor,1,109.99,10/17/19 06:10,"163 Johnson St, New York City, NY 10001" +276318,Bose SoundSport Headphones,1,99.99,10/07/19 21:36,"772 Center St, New York City, NY 10001" +276319,Wired Headphones,1,11.99,10/29/19 13:49,"551 Meadow St, Seattle, WA 98101" +276320,ThinkPad Laptop,1,999.99,10/14/19 22:27,"252 14th St, Dallas, TX 75001" +276321,Wired Headphones,1,11.99,10/31/19 20:04,"908 Jefferson St, Los Angeles, CA 90001" +276322,USB-C Charging Cable,1,11.95,10/10/19 19:07,"714 Chestnut St, Seattle, WA 98101" +276323,Lightning Charging Cable,1,14.95,10/24/19 14:39,"724 Jackson St, Seattle, WA 98101" +276324,Flatscreen TV,1,300,10/10/19 17:33,"369 12th St, Los Angeles, CA 90001" +276325,Bose SoundSport Headphones,1,99.99,10/19/19 18:43,"155 Johnson St, Boston, MA 02215" +276326,USB-C Charging Cable,1,11.95,10/01/19 15:51,"457 Park St, San Francisco, CA 94016" +276327,USB-C Charging Cable,1,11.95,10/12/19 20:58,"659 13th St, Boston, MA 02215" +276328,Apple Airpods Headphones,1,150,10/20/19 12:48,"91 Jefferson St, Los Angeles, CA 90001" +276329,Apple Airpods Headphones,1,150,10/10/19 22:58,"503 Madison St, Seattle, WA 98101" +276330,Apple Airpods Headphones,1,150,10/05/19 17:18,"474 Center St, Dallas, TX 75001" +276331,AA Batteries (4-pack),1,3.84,10/06/19 11:37,"490 Adams St, Atlanta, GA 30301" +276332,Wired Headphones,1,11.99,10/31/19 14:23,"282 6th St, New York City, NY 10001" +276333,USB-C Charging Cable,1,11.95,10/20/19 11:53,"664 Meadow St, Austin, TX 73301" +276334,Wired Headphones,1,11.99,10/19/19 10:34,"560 Hill St, Seattle, WA 98101" +276335,Apple Airpods Headphones,1,150,10/20/19 12:54,"290 Cedar St, New York City, NY 10001" +276336,Lightning Charging Cable,1,14.95,10/30/19 15:04,"545 13th St, Atlanta, GA 30301" +276337,Lightning Charging Cable,1,14.95,10/22/19 22:15,"847 Meadow St, Los Angeles, CA 90001" +276338,Apple Airpods Headphones,1,150,10/05/19 17:53,"187 Forest St, Atlanta, GA 30301" +276339,27in FHD Monitor,1,149.99,10/10/19 01:11,"690 Madison St, Boston, MA 02215" +276340,Bose SoundSport Headphones,1,99.99,10/23/19 16:51,"2 Cedar St, Austin, TX 73301" +276341,Apple Airpods Headphones,1,150,10/18/19 18:07,"181 9th St, New York City, NY 10001" +276342,Wired Headphones,1,11.99,10/16/19 17:54,"68 2nd St, San Francisco, CA 94016" +276343,Apple Airpods Headphones,1,150,10/11/19 11:27,"906 North St, Los Angeles, CA 90001" +276344,Macbook Pro Laptop,1,1700,10/05/19 16:32,"212 Sunset St, San Francisco, CA 94016" +276345,Apple Airpods Headphones,1,150,10/22/19 09:56,"276 1st St, Boston, MA 02215" +276346,Bose SoundSport Headphones,1,99.99,10/25/19 11:52,"540 14th St, Portland, OR 97035" +276347,Lightning Charging Cable,1,14.95,10/02/19 13:22,"15 14th St, San Francisco, CA 94016" +276348,Flatscreen TV,1,300,10/14/19 01:05,"917 Chestnut St, Atlanta, GA 30301" +276349,AA Batteries (4-pack),1,3.84,10/11/19 09:11,"482 Church St, Los Angeles, CA 90001" +276350,AAA Batteries (4-pack),1,2.99,10/26/19 23:32,"671 South St, Los Angeles, CA 90001" +276350,Google Phone,1,600,10/26/19 23:32,"671 South St, Los Angeles, CA 90001" +276351,AA Batteries (4-pack),1,3.84,10/29/19 11:21,"783 Lakeview St, San Francisco, CA 94016" +276352,AA Batteries (4-pack),1,3.84,10/23/19 00:45,"567 7th St, Seattle, WA 98101" +276353,Lightning Charging Cable,1,14.95,10/23/19 11:56,"667 Hill St, Boston, MA 02215" +276354,Lightning Charging Cable,1,14.95,10/30/19 11:20,"836 Willow St, Seattle, WA 98101" +276355,Lightning Charging Cable,1,14.95,10/06/19 21:57,"87 10th St, Los Angeles, CA 90001" +276356,27in FHD Monitor,1,149.99,10/04/19 11:38,"562 Madison St, San Francisco, CA 94016" +276357,34in Ultrawide Monitor,1,379.99,10/17/19 07:28,"952 Jackson St, San Francisco, CA 94016" +276358,iPhone,1,700,10/26/19 00:45,"677 Elm St, Atlanta, GA 30301" +276359,Apple Airpods Headphones,1,150,10/10/19 18:40,"192 10th St, Portland, OR 97035" +276360,Bose SoundSport Headphones,1,99.99,10/20/19 23:30,"291 8th St, Atlanta, GA 30301" +276361,Bose SoundSport Headphones,1,99.99,10/27/19 20:28,"784 13th St, San Francisco, CA 94016" +276362,Flatscreen TV,1,300,10/19/19 09:35,"768 Maple St, Seattle, WA 98101" +276363,AA Batteries (4-pack),2,3.84,10/15/19 10:59,"976 Dogwood St, Los Angeles, CA 90001" +276364,AA Batteries (4-pack),2,3.84,10/18/19 19:25,"132 6th St, San Francisco, CA 94016" +276365,Vareebadd Phone,1,400,10/04/19 15:57,"727 Maple St, San Francisco, CA 94016" +276366,34in Ultrawide Monitor,1,379.99,10/04/19 20:25,"836 Lakeview St, Los Angeles, CA 90001" +276367,iPhone,1,700,10/20/19 22:26,"774 Washington St, Boston, MA 02215" +276368,Apple Airpods Headphones,1,150,10/01/19 16:01,"144 11th St, San Francisco, CA 94016" +276369,20in Monitor,1,109.99,10/29/19 22:09,"442 Center St, Los Angeles, CA 90001" +276370,Bose SoundSport Headphones,1,99.99,10/22/19 13:32,"708 Park St, Dallas, TX 75001" +276371,Bose SoundSport Headphones,1,99.99,10/12/19 07:52,"837 Ridge St, New York City, NY 10001" +276372,Wired Headphones,1,11.99,10/06/19 13:03,"409 8th St, San Francisco, CA 94016" +276373,Wired Headphones,1,11.99,10/26/19 11:12,"395 Pine St, San Francisco, CA 94016" +276374,AAA Batteries (4-pack),1,2.99,10/08/19 08:24,"639 South St, Los Angeles, CA 90001" +276375,20in Monitor,1,109.99,10/28/19 19:06,"100 Highland St, Los Angeles, CA 90001" +276376,Lightning Charging Cable,1,14.95,10/11/19 19:45,"965 Pine St, Dallas, TX 75001" +276377,AA Batteries (4-pack),2,3.84,10/21/19 15:09,"498 River St, New York City, NY 10001" +276378,Apple Airpods Headphones,1,150,10/02/19 15:09,"2 Center St, Austin, TX 73301" +276379,Lightning Charging Cable,1,14.95,10/04/19 20:52,"836 Spruce St, San Francisco, CA 94016" +276380,Bose SoundSport Headphones,1,99.99,10/04/19 21:45,"471 11th St, Dallas, TX 75001" +276381,AA Batteries (4-pack),2,3.84,10/20/19 15:51,"239 Elm St, Boston, MA 02215" +276382,Macbook Pro Laptop,1,1700,10/04/19 15:56,"484 14th St, Seattle, WA 98101" +276383,USB-C Charging Cable,1,11.95,10/19/19 09:54,"458 Church St, Los Angeles, CA 90001" +276384,Flatscreen TV,1,300,10/23/19 06:20,"242 Washington St, Los Angeles, CA 90001" +276385,AA Batteries (4-pack),1,3.84,10/03/19 16:49,"948 Lakeview St, San Francisco, CA 94016" +276385,Lightning Charging Cable,1,14.95,10/03/19 16:49,"948 Lakeview St, San Francisco, CA 94016" +276386,AAA Batteries (4-pack),1,2.99,10/16/19 14:46,"405 9th St, New York City, NY 10001" +276387,AAA Batteries (4-pack),1,2.99,10/10/19 23:53,"378 10th St, Los Angeles, CA 90001" +276388,Bose SoundSport Headphones,1,99.99,10/25/19 06:57,"362 Maple St, Boston, MA 02215" +276389,AAA Batteries (4-pack),1,2.99,10/23/19 14:07,"621 8th St, San Francisco, CA 94016" +276390,27in 4K Gaming Monitor,1,389.99,10/20/19 12:28,"970 6th St, San Francisco, CA 94016" +276391,AAA Batteries (4-pack),2,2.99,10/30/19 21:24,"95 River St, Los Angeles, CA 90001" +276392,Lightning Charging Cable,1,14.95,10/20/19 14:25,"378 Washington St, Los Angeles, CA 90001" +276393,ThinkPad Laptop,1,999.99,10/29/19 21:11,"280 Adams St, San Francisco, CA 94016" +276394,AA Batteries (4-pack),1,3.84,10/20/19 18:39,"761 Highland St, San Francisco, CA 94016" +276395,AAA Batteries (4-pack),1,2.99,10/27/19 21:17,"391 West St, San Francisco, CA 94016" +276396,AA Batteries (4-pack),1,3.84,10/01/19 21:07,"696 Meadow St, San Francisco, CA 94016" +276396,Macbook Pro Laptop,1,1700,10/01/19 21:07,"696 Meadow St, San Francisco, CA 94016" +276397,Apple Airpods Headphones,1,150,10/23/19 07:06,"174 Meadow St, New York City, NY 10001" +276398,AA Batteries (4-pack),1,3.84,10/06/19 11:28,"467 Washington St, San Francisco, CA 94016" +276399,ThinkPad Laptop,1,999.99,10/13/19 10:23,"657 Chestnut St, San Francisco, CA 94016" +276400,Wired Headphones,1,11.99,10/24/19 20:32,"385 10th St, Los Angeles, CA 90001" +276401,Flatscreen TV,1,300,10/21/19 22:39,"622 6th St, San Francisco, CA 94016" +276402,ThinkPad Laptop,1,999.99,10/21/19 05:53,"161 9th St, Portland, OR 97035" +276403,ThinkPad Laptop,1,999.99,10/24/19 19:48,"711 14th St, Los Angeles, CA 90001" +276404,USB-C Charging Cable,1,11.95,10/18/19 14:34,"676 Hickory St, Los Angeles, CA 90001" +276405,LG Washing Machine,1,600.0,10/12/19 07:58,"171 South St, San Francisco, CA 94016" +276406,Wired Headphones,1,11.99,10/02/19 11:39,"563 Center St, Boston, MA 02215" +276407,ThinkPad Laptop,1,999.99,10/22/19 15:59,"900 Sunset St, San Francisco, CA 94016" +276408,AAA Batteries (4-pack),2,2.99,10/14/19 10:18,"674 Hill St, Seattle, WA 98101" +276409,Wired Headphones,1,11.99,10/15/19 14:25,"894 11th St, New York City, NY 10001" +276410,Lightning Charging Cable,1,14.95,10/11/19 09:33,"591 10th St, Los Angeles, CA 90001" +276411,Apple Airpods Headphones,1,150,10/23/19 17:06,"640 Jefferson St, New York City, NY 10001" +276412,Bose SoundSport Headphones,1,99.99,10/09/19 08:39,"571 Forest St, San Francisco, CA 94016" +276413,Lightning Charging Cable,1,14.95,10/27/19 20:42,"401 Spruce St, Portland, OR 97035" +276414,Wired Headphones,1,11.99,10/31/19 21:06,"538 8th St, Portland, OR 97035" +276415,AAA Batteries (4-pack),1,2.99,10/15/19 18:50,"529 Forest St, Atlanta, GA 30301" +276416,Macbook Pro Laptop,1,1700,10/29/19 11:22,"217 North St, Austin, TX 73301" +276417,AA Batteries (4-pack),1,3.84,10/14/19 23:06,"819 Forest St, Los Angeles, CA 90001" +276418,Wired Headphones,1,11.99,10/25/19 15:10,"194 Cherry St, San Francisco, CA 94016" +276419,Wired Headphones,1,11.99,10/17/19 16:34,"615 Elm St, Austin, TX 73301" +276420,AAA Batteries (4-pack),1,2.99,10/20/19 22:54,"382 Wilson St, San Francisco, CA 94016" +276421,AA Batteries (4-pack),1,3.84,10/01/19 10:27,"700 Meadow St, Austin, TX 73301" +276422,Lightning Charging Cable,1,14.95,10/01/19 21:09,"435 Cedar St, Los Angeles, CA 90001" +276423,iPhone,2,700,10/24/19 10:05,"865 5th St, Portland, OR 97035" +276423,Lightning Charging Cable,1,14.95,10/24/19 10:05,"865 5th St, Portland, OR 97035" +276424,Flatscreen TV,1,300,10/31/19 15:25,"60 Chestnut St, New York City, NY 10001" +276425,AAA Batteries (4-pack),1,2.99,10/30/19 08:13,"806 Wilson St, Boston, MA 02215" +276426,AA Batteries (4-pack),1,3.84,10/02/19 18:15,"914 Dogwood St, Atlanta, GA 30301" +276427,Apple Airpods Headphones,1,150,10/30/19 19:34,"367 Hickory St, Los Angeles, CA 90001" +276428,AA Batteries (4-pack),1,3.84,10/31/19 13:16,"75 14th St, Boston, MA 02215" +276429,Wired Headphones,1,11.99,10/07/19 08:52,"936 6th St, Los Angeles, CA 90001" +276430,AA Batteries (4-pack),2,3.84,10/30/19 01:09,"232 Church St, Boston, MA 02215" +276431,USB-C Charging Cable,1,11.95,10/22/19 11:25,"702 Hickory St, New York City, NY 10001" +276432,USB-C Charging Cable,2,11.95,10/26/19 17:06,"491 14th St, Dallas, TX 75001" +276433,Lightning Charging Cable,1,14.95,10/08/19 05:11,"903 Madison St, San Francisco, CA 94016" +276434,Google Phone,1,600,10/28/19 21:30,"1 Jefferson St, Dallas, TX 75001" +276434,Apple Airpods Headphones,2,150,10/28/19 21:30,"1 Jefferson St, Dallas, TX 75001" +276435,Bose SoundSport Headphones,1,99.99,10/30/19 15:26,"915 Willow St, Dallas, TX 75001" +276436,Bose SoundSport Headphones,1,99.99,10/11/19 22:15,"346 Adams St, New York City, NY 10001" +276437,AAA Batteries (4-pack),1,2.99,10/12/19 12:06,"668 Johnson St, Seattle, WA 98101" +276438,AAA Batteries (4-pack),3,2.99,10/09/19 20:28,"753 Willow St, Atlanta, GA 30301" +276439,Apple Airpods Headphones,1,150,10/23/19 08:09,"820 Jackson St, New York City, NY 10001" +276440,27in 4K Gaming Monitor,1,389.99,10/16/19 17:59,"325 Elm St, New York City, NY 10001" +276441,34in Ultrawide Monitor,1,379.99,10/27/19 12:12,"406 Adams St, New York City, NY 10001" +276442,AA Batteries (4-pack),1,3.84,10/30/19 21:47,"944 Elm St, Seattle, WA 98101" +276443,Apple Airpods Headphones,1,150,10/24/19 12:41,"443 Maple St, San Francisco, CA 94016" +276444,iPhone,1,700,10/04/19 12:30,"181 West St, Portland, OR 97035" +276445,USB-C Charging Cable,1,11.95,10/01/19 09:10,"161 Washington St, San Francisco, CA 94016" +276445,Macbook Pro Laptop,1,1700,10/01/19 09:10,"161 Washington St, San Francisco, CA 94016" +276446,Lightning Charging Cable,1,14.95,10/25/19 01:17,"185 1st St, San Francisco, CA 94016" +276447,27in FHD Monitor,1,149.99,10/18/19 16:55,"249 West St, Atlanta, GA 30301" +276448,Lightning Charging Cable,1,14.95,10/05/19 11:24,"181 Spruce St, San Francisco, CA 94016" +276449,AAA Batteries (4-pack),1,2.99,10/02/19 19:20,"118 Pine St, Portland, OR 97035" +276450,27in 4K Gaming Monitor,1,389.99,10/21/19 20:47,"650 Church St, Boston, MA 02215" +276451,34in Ultrawide Monitor,1,379.99,10/12/19 18:42,"528 Lake St, Los Angeles, CA 90001" +276452,20in Monitor,1,109.99,10/02/19 12:49,"516 Church St, Atlanta, GA 30301" +276453,27in FHD Monitor,1,149.99,10/22/19 05:45,"334 13th St, San Francisco, CA 94016" +276454,AAA Batteries (4-pack),1,2.99,10/07/19 13:19,"213 8th St, Los Angeles, CA 90001" +276455,Bose SoundSport Headphones,1,99.99,10/13/19 23:20,"146 Meadow St, Boston, MA 02215" +276456,Lightning Charging Cable,1,14.95,10/07/19 07:40,"66 1st St, Dallas, TX 75001" +276457,USB-C Charging Cable,2,11.95,10/12/19 23:50,"949 North St, San Francisco, CA 94016" +276458,AA Batteries (4-pack),1,3.84,10/19/19 17:39,"589 Walnut St, San Francisco, CA 94016" +276459,LG Dryer,1,600.0,10/31/19 17:34,"674 Park St, New York City, NY 10001" +276460,Macbook Pro Laptop,1,1700,10/30/19 19:37,"807 Church St, New York City, NY 10001" +276461,Macbook Pro Laptop,1,1700,10/27/19 20:40,"910 10th St, Boston, MA 02215" +276461,AA Batteries (4-pack),3,3.84,10/27/19 20:40,"910 10th St, Boston, MA 02215" +276462,AA Batteries (4-pack),2,3.84,10/24/19 12:47,"43 Spruce St, Austin, TX 73301" +276463,27in 4K Gaming Monitor,1,389.99,10/26/19 17:54,"704 2nd St, Boston, MA 02215" +276464,USB-C Charging Cable,1,11.95,10/25/19 21:32,"13 13th St, Los Angeles, CA 90001" +276465,Wired Headphones,2,11.99,10/10/19 18:34,"64 South St, Los Angeles, CA 90001" +276466,ThinkPad Laptop,1,999.99,10/15/19 19:39,"490 Main St, Boston, MA 02215" +276467,20in Monitor,1,109.99,10/15/19 09:53,"602 Willow St, Seattle, WA 98101" +276468,AAA Batteries (4-pack),1,2.99,10/26/19 16:50,"169 Jackson St, Seattle, WA 98101" +276469,Flatscreen TV,1,300,10/16/19 23:41,"618 Pine St, Los Angeles, CA 90001" +,,,,, +276470,Vareebadd Phone,1,400,10/31/19 19:38,"591 Lake St, San Francisco, CA 94016" +276471,Apple Airpods Headphones,1,150,10/17/19 15:29,"806 8th St, Portland, ME 04101" +276472,Google Phone,1,600,10/23/19 17:47,"43 10th St, San Francisco, CA 94016" +276473,Wired Headphones,1,11.99,10/24/19 12:28,"94 Meadow St, Los Angeles, CA 90001" +276474,Apple Airpods Headphones,1,150,10/16/19 17:55,"807 Chestnut St, San Francisco, CA 94016" +276474,Apple Airpods Headphones,1,150,10/16/19 17:55,"807 Chestnut St, San Francisco, CA 94016" +276475,34in Ultrawide Monitor,1,379.99,10/15/19 16:51,"426 Wilson St, New York City, NY 10001" +276476,AA Batteries (4-pack),1,3.84,10/04/19 13:06,"612 North St, San Francisco, CA 94016" +276477,34in Ultrawide Monitor,1,379.99,10/09/19 08:48,"43 5th St, New York City, NY 10001" +276478,Apple Airpods Headphones,1,150,10/19/19 17:04,"568 River St, Los Angeles, CA 90001" +276479,ThinkPad Laptop,1,999.99,10/21/19 14:00,"551 9th St, Dallas, TX 75001" +276480,AAA Batteries (4-pack),3,2.99,10/02/19 13:59,"250 Johnson St, Austin, TX 73301" +276481,Lightning Charging Cable,1,14.95,10/30/19 16:01,"700 Wilson St, Los Angeles, CA 90001" +276482,Google Phone,1,600,10/29/19 14:44,"839 Church St, New York City, NY 10001" +276483,Flatscreen TV,1,300,10/03/19 18:08,"402 9th St, Los Angeles, CA 90001" +276484,34in Ultrawide Monitor,1,379.99,10/31/19 18:27,"693 10th St, Boston, MA 02215" +276485,AAA Batteries (4-pack),2,2.99,10/07/19 10:36,"69 9th St, Portland, OR 97035" +276486,USB-C Charging Cable,2,11.95,10/09/19 13:06,"524 14th St, Los Angeles, CA 90001" +276486,Wired Headphones,1,11.99,10/09/19 13:06,"524 14th St, Los Angeles, CA 90001" +276487,USB-C Charging Cable,1,11.95,10/23/19 15:14,"923 1st St, Atlanta, GA 30301" +276488,Lightning Charging Cable,1,14.95,10/28/19 11:45,"50 Sunset St, San Francisco, CA 94016" +,,,,, +276489,AAA Batteries (4-pack),1,2.99,10/06/19 17:23,"888 Elm St, Portland, OR 97035" +276490,AA Batteries (4-pack),1,3.84,10/30/19 15:52,"982 8th St, San Francisco, CA 94016" +276491,USB-C Charging Cable,1,11.95,10/22/19 14:45,"41 Wilson St, Portland, ME 04101" +276492,USB-C Charging Cable,1,11.95,10/03/19 19:47,"292 Center St, Boston, MA 02215" +276493,USB-C Charging Cable,1,11.95,10/16/19 13:08,"379 Lakeview St, Austin, TX 73301" +276494,Google Phone,1,600,10/22/19 19:04,"32 10th St, Atlanta, GA 30301" +276494,USB-C Charging Cable,1,11.95,10/22/19 19:04,"32 10th St, Atlanta, GA 30301" +276495,USB-C Charging Cable,1,11.95,10/01/19 12:06,"796 Elm St, Los Angeles, CA 90001" +276496,iPhone,1,700,10/08/19 19:21,"548 Dogwood St, Portland, OR 97035" +276497,34in Ultrawide Monitor,1,379.99,10/25/19 18:51,"274 Ridge St, San Francisco, CA 94016" +276498,USB-C Charging Cable,1,11.95,10/02/19 13:46,"370 Elm St, New York City, NY 10001" +276499,Lightning Charging Cable,1,14.95,10/18/19 17:41,"553 Johnson St, Boston, MA 02215" +276500,USB-C Charging Cable,1,11.95,10/27/19 16:36,"577 River St, Austin, TX 73301" +276501,Apple Airpods Headphones,1,150,10/14/19 13:07,"809 Cherry St, Los Angeles, CA 90001" +276502,34in Ultrawide Monitor,1,379.99,10/05/19 17:43,"158 North St, New York City, NY 10001" +276503,Apple Airpods Headphones,1,150,10/16/19 00:39,"595 Washington St, Los Angeles, CA 90001" +276504,AAA Batteries (4-pack),1,2.99,10/30/19 16:24,"103 Forest St, San Francisco, CA 94016" +276505,AAA Batteries (4-pack),3,2.99,10/06/19 22:05,"91 7th St, Austin, TX 73301" +276506,Wired Headphones,1,11.99,10/18/19 18:31,"884 Sunset St, Boston, MA 02215" +276507,AA Batteries (4-pack),1,3.84,10/28/19 20:10,"367 Madison St, Atlanta, GA 30301" +276508,Apple Airpods Headphones,1,150,10/31/19 21:16,"790 Pine St, Dallas, TX 75001" +276508,Apple Airpods Headphones,1,150,10/31/19 21:16,"790 Pine St, Dallas, TX 75001" +276509,Apple Airpods Headphones,1,150,10/14/19 08:27,"985 North St, Boston, MA 02215" +276510,Apple Airpods Headphones,1,150,10/28/19 15:09,"886 Adams St, Los Angeles, CA 90001" +276511,AA Batteries (4-pack),2,3.84,10/20/19 05:30,"976 Lakeview St, Atlanta, GA 30301" +276512,AA Batteries (4-pack),1,3.84,10/16/19 01:31,"987 Meadow St, Boston, MA 02215" +276513,USB-C Charging Cable,1,11.95,10/15/19 17:58,"799 12th St, Los Angeles, CA 90001" +276514,AA Batteries (4-pack),1,3.84,10/21/19 11:11,"754 Willow St, Boston, MA 02215" +276515,AA Batteries (4-pack),2,3.84,10/25/19 11:45,"905 Ridge St, Austin, TX 73301" +276516,AAA Batteries (4-pack),1,2.99,10/02/19 14:40,"798 Main St, San Francisco, CA 94016" +276517,Apple Airpods Headphones,1,150,10/20/19 14:33,"999 Spruce St, New York City, NY 10001" +276518,Wired Headphones,1,11.99,10/07/19 14:02,"708 Lakeview St, New York City, NY 10001" +276519,Bose SoundSport Headphones,1,99.99,10/30/19 10:29,"647 Dogwood St, New York City, NY 10001" +276520,AA Batteries (4-pack),1,3.84,10/29/19 15:33,"277 Lincoln St, New York City, NY 10001" +276521,27in FHD Monitor,1,149.99,10/03/19 20:02,"927 Madison St, Los Angeles, CA 90001" +276522,AA Batteries (4-pack),2,3.84,10/12/19 15:46,"456 Walnut St, Portland, OR 97035" +276523,ThinkPad Laptop,1,999.99,10/14/19 19:32,"186 Forest St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +276524,Wired Headphones,1,11.99,10/12/19 16:19,"129 Johnson St, Portland, OR 97035" +276525,20in Monitor,1,109.99,10/02/19 22:47,"85 14th St, San Francisco, CA 94016" +276526,USB-C Charging Cable,2,11.95,10/13/19 14:37,"581 9th St, San Francisco, CA 94016" +276527,Google Phone,1,600,10/10/19 13:39,"625 Washington St, Dallas, TX 75001" +276527,USB-C Charging Cable,1,11.95,10/10/19 13:39,"625 Washington St, Dallas, TX 75001" +276528,Bose SoundSport Headphones,1,99.99,10/07/19 20:18,"777 14th St, New York City, NY 10001" +276528,USB-C Charging Cable,1,11.95,10/07/19 20:18,"777 14th St, New York City, NY 10001" +276529,Google Phone,1,600,10/30/19 14:48,"818 Sunset St, Atlanta, GA 30301" +276530,USB-C Charging Cable,1,11.95,10/21/19 20:43,"31 5th St, Los Angeles, CA 90001" +276531,Vareebadd Phone,1,400,10/23/19 14:12,"824 Willow St, Dallas, TX 75001" +276532,20in Monitor,1,109.99,10/10/19 11:49,"517 9th St, San Francisco, CA 94016" +276533,iPhone,1,700,10/02/19 05:55,"859 Hill St, San Francisco, CA 94016" +276533,Wired Headphones,1,11.99,10/02/19 05:55,"859 Hill St, San Francisco, CA 94016" +276534,27in FHD Monitor,1,149.99,10/22/19 16:39,"444 Jefferson St, Atlanta, GA 30301" +276535,LG Dryer,1,600.0,10/08/19 08:05,"308 Highland St, Los Angeles, CA 90001" +276536,AA Batteries (4-pack),1,3.84,10/02/19 11:56,"734 Washington St, Dallas, TX 75001" +276537,ThinkPad Laptop,1,999.99,10/12/19 14:46,"185 Forest St, Seattle, WA 98101" +276538,Lightning Charging Cable,1,14.95,10/11/19 07:30,"349 Madison St, New York City, NY 10001" +276539,USB-C Charging Cable,1,11.95,10/27/19 13:49,"187 Johnson St, San Francisco, CA 94016" +276540,27in 4K Gaming Monitor,1,389.99,10/05/19 13:51,"464 10th St, Seattle, WA 98101" +276541,Google Phone,1,600,10/25/19 22:41,"53 2nd St, San Francisco, CA 94016" +276542,Apple Airpods Headphones,1,150,10/11/19 15:39,"89 South St, Boston, MA 02215" +276543,Lightning Charging Cable,2,14.95,10/18/19 20:26,"955 Center St, Austin, TX 73301" +276544,27in 4K Gaming Monitor,1,389.99,10/03/19 23:06,"613 Walnut St, Atlanta, GA 30301" +276545,iPhone,1,700,10/14/19 14:57,"215 13th St, New York City, NY 10001" +276546,AAA Batteries (4-pack),1,2.99,10/17/19 16:43,"65 Hickory St, San Francisco, CA 94016" +276547,34in Ultrawide Monitor,1,379.99,10/21/19 21:57,"723 13th St, Dallas, TX 75001" +276548,20in Monitor,1,109.99,10/23/19 01:08,"671 West St, San Francisco, CA 94016" +276549,Wired Headphones,1,11.99,10/29/19 22:30,"156 13th St, Seattle, WA 98101" +276550,Lightning Charging Cable,1,14.95,10/08/19 15:34,"683 7th St, Boston, MA 02215" +276551,Apple Airpods Headphones,1,150,10/29/19 11:04,"929 Jefferson St, Dallas, TX 75001" +276552,Lightning Charging Cable,2,14.95,10/14/19 10:23,"993 Forest St, Atlanta, GA 30301" +276553,27in FHD Monitor,1,149.99,10/23/19 00:45,"38 14th St, Boston, MA 02215" +276554,ThinkPad Laptop,1,999.99,10/13/19 16:03,"232 Church St, Seattle, WA 98101" +276555,USB-C Charging Cable,1,11.95,10/27/19 16:11,"649 Adams St, Boston, MA 02215" +276556,Lightning Charging Cable,1,14.95,10/01/19 10:38,"927 Church St, Los Angeles, CA 90001" +276557,Flatscreen TV,1,300,10/28/19 07:30,"772 6th St, Los Angeles, CA 90001" +276558,Flatscreen TV,1,300,10/14/19 09:32,"142 River St, Austin, TX 73301" +276559,Wired Headphones,1,11.99,10/01/19 15:53,"12 Cedar St, Austin, TX 73301" +276560,AA Batteries (4-pack),1,3.84,10/24/19 12:11,"450 12th St, Los Angeles, CA 90001" +276561,Wired Headphones,1,11.99,10/14/19 17:39,"61 Hill St, New York City, NY 10001" +276562,LG Washing Machine,1,600.0,10/05/19 18:15,"315 4th St, San Francisco, CA 94016" +276563,AA Batteries (4-pack),2,3.84,10/04/19 11:03,"245 Highland St, Seattle, WA 98101" +276564,Apple Airpods Headphones,1,150,10/27/19 18:56,"170 9th St, San Francisco, CA 94016" +276564,27in FHD Monitor,1,149.99,10/27/19 18:56,"170 9th St, San Francisco, CA 94016" +276565,Lightning Charging Cable,1,14.95,10/11/19 12:40,"955 Madison St, Boston, MA 02215" +276566,20in Monitor,1,109.99,10/08/19 22:37,"787 10th St, Austin, TX 73301" +276567,Lightning Charging Cable,1,14.95,10/14/19 09:06,"38 Dogwood St, Boston, MA 02215" +276568,AAA Batteries (4-pack),1,2.99,10/02/19 18:15,"59 Walnut St, Los Angeles, CA 90001" +276569,Apple Airpods Headphones,1,150,10/21/19 14:09,"643 6th St, San Francisco, CA 94016" +276570,27in 4K Gaming Monitor,1,389.99,10/16/19 23:01,"721 11th St, Los Angeles, CA 90001" +276571,AAA Batteries (4-pack),1,2.99,10/09/19 10:38,"456 West St, Atlanta, GA 30301" +276572,Lightning Charging Cable,1,14.95,10/29/19 20:40,"676 Walnut St, Austin, TX 73301" +276573,Wired Headphones,1,11.99,10/28/19 13:22,"517 5th St, Los Angeles, CA 90001" +276574,AA Batteries (4-pack),1,3.84,10/06/19 17:07,"597 Church St, Dallas, TX 75001" +276575,Apple Airpods Headphones,1,150,10/17/19 11:04,"388 Spruce St, Boston, MA 02215" +276576,ThinkPad Laptop,1,999.99,10/23/19 10:16,"32 Washington St, Boston, MA 02215" +276577,AAA Batteries (4-pack),1,2.99,10/01/19 12:49,"738 Main St, Los Angeles, CA 90001" +276578,AA Batteries (4-pack),1,3.84,10/20/19 16:10,"569 Park St, New York City, NY 10001" +276579,Flatscreen TV,1,300,10/12/19 11:33,"150 5th St, San Francisco, CA 94016" +276580,USB-C Charging Cable,1,11.95,10/10/19 19:42,"189 5th St, Atlanta, GA 30301" +276581,AA Batteries (4-pack),2,3.84,10/18/19 13:29,"375 Johnson St, San Francisco, CA 94016" +276582,Wired Headphones,1,11.99,10/24/19 15:39,"925 Main St, Atlanta, GA 30301" +276583,Flatscreen TV,1,300,10/17/19 12:37,"692 Jackson St, San Francisco, CA 94016" +276584,iPhone,1,700,10/12/19 12:36,"863 Johnson St, New York City, NY 10001" +276585,AA Batteries (4-pack),2,3.84,10/08/19 13:51,"256 Jefferson St, Los Angeles, CA 90001" +276586,AA Batteries (4-pack),1,3.84,10/31/19 15:18,"356 Lake St, Atlanta, GA 30301" +276587,Lightning Charging Cable,3,14.95,10/14/19 18:40,"416 Willow St, New York City, NY 10001" +276588,AA Batteries (4-pack),1,3.84,10/02/19 21:47,"945 7th St, San Francisco, CA 94016" +276589,Wired Headphones,1,11.99,10/08/19 18:33,"312 Washington St, New York City, NY 10001" +276590,Lightning Charging Cable,1,14.95,10/09/19 14:43,"441 1st St, Seattle, WA 98101" +276591,27in FHD Monitor,1,149.99,10/19/19 13:27,"144 11th St, Los Angeles, CA 90001" +276592,AAA Batteries (4-pack),1,2.99,10/05/19 20:21,"641 10th St, Seattle, WA 98101" +276593,USB-C Charging Cable,1,11.95,10/30/19 14:47,"799 Spruce St, Atlanta, GA 30301" +276594,AAA Batteries (4-pack),1,2.99,10/07/19 13:56,"338 14th St, San Francisco, CA 94016" +276595,Apple Airpods Headphones,1,150,10/23/19 06:36,"955 North St, New York City, NY 10001" +276596,AA Batteries (4-pack),1,3.84,10/12/19 09:23,"535 Johnson St, New York City, NY 10001" +276597,Bose SoundSport Headphones,1,99.99,10/03/19 15:10,"343 Cedar St, Dallas, TX 75001" +276598,Bose SoundSport Headphones,1,99.99,10/08/19 19:59,"598 Johnson St, Dallas, TX 75001" +276599,Lightning Charging Cable,1,14.95,10/13/19 09:51,"754 Highland St, Boston, MA 02215" +276600,Macbook Pro Laptop,1,1700,10/24/19 23:17,"648 7th St, Atlanta, GA 30301" +276601,27in 4K Gaming Monitor,1,389.99,10/19/19 20:44,"734 Washington St, Portland, OR 97035" +276602,Bose SoundSport Headphones,1,99.99,10/20/19 16:08,"734 2nd St, Boston, MA 02215" +276603,AA Batteries (4-pack),1,3.84,10/06/19 11:50,"872 Washington St, San Francisco, CA 94016" +276604,34in Ultrawide Monitor,1,379.99,10/19/19 14:49,"532 Sunset St, Boston, MA 02215" +276605,34in Ultrawide Monitor,1,379.99,10/15/19 14:15,"347 4th St, Portland, OR 97035" +276606,AA Batteries (4-pack),1,3.84,10/08/19 17:11,"467 Willow St, Austin, TX 73301" +276607,Bose SoundSport Headphones,1,99.99,10/23/19 21:40,"982 7th St, Austin, TX 73301" +276608,Google Phone,1,600,10/12/19 05:19,"143 Meadow St, Atlanta, GA 30301" +276609,AAA Batteries (4-pack),3,2.99,10/11/19 01:24,"864 Meadow St, Boston, MA 02215" +276610,Apple Airpods Headphones,1,150,10/26/19 20:10,"489 Hill St, Austin, TX 73301" +276611,ThinkPad Laptop,1,999.99,10/06/19 14:18,"296 River St, Los Angeles, CA 90001" +276612,Lightning Charging Cable,1,14.95,10/07/19 16:21,"537 Jackson St, Boston, MA 02215" +276613,AAA Batteries (4-pack),1,2.99,10/08/19 21:49,"868 Elm St, New York City, NY 10001" +276614,Wired Headphones,1,11.99,10/20/19 18:54,"400 North St, Atlanta, GA 30301" +276615,Lightning Charging Cable,1,14.95,10/14/19 12:04,"985 14th St, Los Angeles, CA 90001" +276616,AAA Batteries (4-pack),1,2.99,10/15/19 14:51,"854 South St, Los Angeles, CA 90001" +276617,Bose SoundSport Headphones,1,99.99,10/24/19 13:49,"512 Hickory St, Portland, OR 97035" +276618,USB-C Charging Cable,2,11.95,10/26/19 11:38,"143 Highland St, Austin, TX 73301" +276619,27in 4K Gaming Monitor,1,389.99,10/11/19 23:13,"749 13th St, Seattle, WA 98101" +276620,AAA Batteries (4-pack),1,2.99,10/15/19 17:01,"612 Johnson St, Austin, TX 73301" +276621,Apple Airpods Headphones,1,150,10/07/19 21:37,"584 Jefferson St, Portland, OR 97035" +276622,AAA Batteries (4-pack),4,2.99,10/21/19 00:45,"693 Johnson St, Boston, MA 02215" +276623,Wired Headphones,1,11.99,10/17/19 11:09,"814 14th St, San Francisco, CA 94016" +276624,27in FHD Monitor,1,149.99,10/22/19 18:50,"165 Forest St, Seattle, WA 98101" +276625,AA Batteries (4-pack),1,3.84,10/04/19 19:00,"787 Hill St, Portland, OR 97035" +276626,Wired Headphones,1,11.99,10/29/19 16:22,"473 Forest St, Atlanta, GA 30301" +276627,Bose SoundSport Headphones,1,99.99,10/20/19 18:17,"621 Park St, San Francisco, CA 94016" +276628,AAA Batteries (4-pack),1,2.99,10/10/19 18:47,"653 Forest St, Los Angeles, CA 90001" +276629,Wired Headphones,1,11.99,10/27/19 20:04,"622 12th St, New York City, NY 10001" +276630,Lightning Charging Cable,1,14.95,10/20/19 21:57,"584 Wilson St, San Francisco, CA 94016" +276631,27in 4K Gaming Monitor,1,389.99,10/03/19 10:53,"390 North St, Los Angeles, CA 90001" +276632,Wired Headphones,1,11.99,10/16/19 12:36,"737 Walnut St, New York City, NY 10001" +276633,AAA Batteries (4-pack),1,2.99,10/17/19 09:06,"571 10th St, Dallas, TX 75001" +276634,Wired Headphones,1,11.99,10/31/19 11:20,"454 Jefferson St, New York City, NY 10001" +276635,Lightning Charging Cable,1,14.95,10/19/19 15:18,"179 10th St, San Francisco, CA 94016" +276636,AA Batteries (4-pack),1,3.84,10/31/19 16:00,"321 6th St, San Francisco, CA 94016" +276637,Macbook Pro Laptop,1,1700,10/29/19 14:30,"356 13th St, Los Angeles, CA 90001" +276638,Wired Headphones,1,11.99,10/11/19 12:01,"274 Forest St, New York City, NY 10001" +276639,Bose SoundSport Headphones,1,99.99,10/08/19 13:57,"762 Johnson St, Los Angeles, CA 90001" +276639,USB-C Charging Cable,1,11.95,10/08/19 13:57,"762 Johnson St, Los Angeles, CA 90001" +276640,Bose SoundSport Headphones,2,99.99,10/28/19 22:51,"638 Sunset St, San Francisco, CA 94016" +276641,27in FHD Monitor,1,149.99,10/13/19 07:07,"475 Jackson St, San Francisco, CA 94016" +276642,USB-C Charging Cable,1,11.95,10/31/19 15:52,"215 Ridge St, San Francisco, CA 94016" +276643,USB-C Charging Cable,1,11.95,10/24/19 10:43,"963 Jackson St, New York City, NY 10001" +276644,Macbook Pro Laptop,1,1700,10/03/19 20:15,"286 Chestnut St, Los Angeles, CA 90001" +276645,27in 4K Gaming Monitor,1,389.99,10/06/19 11:30,"281 Wilson St, Portland, OR 97035" +276646,AA Batteries (4-pack),3,3.84,10/09/19 22:12,"693 11th St, Dallas, TX 75001" +276647,27in 4K Gaming Monitor,1,389.99,10/13/19 09:58,"102 North St, San Francisco, CA 94016" +276648,Flatscreen TV,1,300,10/24/19 11:48,"140 Lincoln St, New York City, NY 10001" +276649,AA Batteries (4-pack),1,3.84,10/07/19 09:45,"948 Cedar St, San Francisco, CA 94016" +276650,ThinkPad Laptop,1,999.99,10/31/19 14:28,"808 Church St, New York City, NY 10001" +276651,Apple Airpods Headphones,1,150,10/11/19 20:00,"373 Church St, Dallas, TX 75001" +276652,Bose SoundSport Headphones,1,99.99,10/28/19 17:40,"354 Maple St, Los Angeles, CA 90001" +276653,AA Batteries (4-pack),1,3.84,10/07/19 06:32,"20 Center St, Dallas, TX 75001" +276654,AA Batteries (4-pack),1,3.84,10/18/19 15:55,"630 Pine St, Los Angeles, CA 90001" +276655,Bose SoundSport Headphones,1,99.99,10/27/19 22:31,"465 1st St, Los Angeles, CA 90001" +276656,AAA Batteries (4-pack),1,2.99,10/14/19 13:34,"531 Adams St, Los Angeles, CA 90001" +276657,27in FHD Monitor,1,149.99,10/10/19 10:39,"819 Pine St, Boston, MA 02215" +276658,34in Ultrawide Monitor,1,379.99,10/06/19 06:10,"183 Center St, Boston, MA 02215" +276659,USB-C Charging Cable,1,11.95,10/26/19 21:17,"950 Ridge St, Portland, OR 97035" +276660,34in Ultrawide Monitor,1,379.99,10/26/19 12:55,"584 River St, Atlanta, GA 30301" +276661,LG Washing Machine,1,600.0,10/03/19 23:25,"990 Adams St, New York City, NY 10001" +276662,27in FHD Monitor,1,149.99,10/07/19 09:44,"780 Madison St, San Francisco, CA 94016" +276663,Lightning Charging Cable,1,14.95,10/29/19 20:46,"37 9th St, New York City, NY 10001" +276664,AAA Batteries (4-pack),2,2.99,10/25/19 20:36,"267 13th St, Los Angeles, CA 90001" +276665,Bose SoundSport Headphones,1,99.99,10/06/19 19:59,"170 Main St, Portland, ME 04101" +276666,Wired Headphones,1,11.99,10/29/19 09:56,"349 Lakeview St, San Francisco, CA 94016" +276667,USB-C Charging Cable,1,11.95,10/11/19 08:51,"337 Dogwood St, San Francisco, CA 94016" +276668,Macbook Pro Laptop,1,1700,10/13/19 17:36,"676 Walnut St, Los Angeles, CA 90001" +276669,Bose SoundSport Headphones,1,99.99,10/16/19 12:42,"905 Elm St, New York City, NY 10001" +276670,27in FHD Monitor,1,149.99,10/07/19 15:43,"414 5th St, San Francisco, CA 94016" +276671,AA Batteries (4-pack),1,3.84,10/15/19 10:34,"979 6th St, Los Angeles, CA 90001" +276672,Apple Airpods Headphones,1,150,10/25/19 13:31,"204 9th St, Seattle, WA 98101" +276673,AA Batteries (4-pack),2,3.84,10/22/19 17:16,"64 11th St, Seattle, WA 98101" +276674,Apple Airpods Headphones,1,150,10/09/19 00:46,"308 Cedar St, Seattle, WA 98101" +276675,USB-C Charging Cable,1,11.95,10/10/19 22:02,"342 Washington St, Boston, MA 02215" +276676,Apple Airpods Headphones,1,150,10/10/19 17:32,"625 West St, New York City, NY 10001" +276677,Bose SoundSport Headphones,1,99.99,10/31/19 12:30,"652 Washington St, Los Angeles, CA 90001" +276678,USB-C Charging Cable,1,11.95,10/31/19 15:09,"699 14th St, San Francisco, CA 94016" +276679,AAA Batteries (4-pack),1,2.99,10/14/19 17:37,"67 Hickory St, Boston, MA 02215" +276680,Apple Airpods Headphones,1,150,10/14/19 14:39,"674 Main St, Los Angeles, CA 90001" +276681,AA Batteries (4-pack),1,3.84,10/17/19 14:19,"13 Jackson St, New York City, NY 10001" +276682,USB-C Charging Cable,1,11.95,10/02/19 11:02,"873 Main St, San Francisco, CA 94016" +276683,AAA Batteries (4-pack),1,2.99,10/09/19 21:11,"222 Lake St, San Francisco, CA 94016" +276684,Wired Headphones,1,11.99,10/05/19 06:42,"256 6th St, Boston, MA 02215" +276685,Lightning Charging Cable,1,14.95,10/07/19 12:24,"464 Washington St, Los Angeles, CA 90001" +276686,Wired Headphones,1,11.99,10/16/19 11:40,"189 Dogwood St, Seattle, WA 98101" +276687,Lightning Charging Cable,1,14.95,10/23/19 20:45,"97 11th St, New York City, NY 10001" +276688,USB-C Charging Cable,1,11.95,10/10/19 14:43,"868 4th St, New York City, NY 10001" +276689,Wired Headphones,1,11.99,10/07/19 00:43,"409 Madison St, San Francisco, CA 94016" +276690,Apple Airpods Headphones,1,150,10/27/19 13:39,"363 Jefferson St, San Francisco, CA 94016" +276691,AAA Batteries (4-pack),1,2.99,10/19/19 09:38,"170 Adams St, Los Angeles, CA 90001" +276692,iPhone,1,700,10/18/19 18:43,"124 Cherry St, New York City, NY 10001" +276693,AA Batteries (4-pack),1,3.84,10/17/19 21:57,"735 West St, New York City, NY 10001" +276694,Wired Headphones,1,11.99,10/14/19 20:32,"712 8th St, Boston, MA 02215" +276695,iPhone,1,700,10/01/19 04:34,"53 Sunset St, Atlanta, GA 30301" +276696,27in FHD Monitor,1,149.99,10/08/19 14:15,"631 Adams St, Portland, OR 97035" +276696,Wired Headphones,1,11.99,10/08/19 14:15,"631 Adams St, Portland, OR 97035" +276697,Lightning Charging Cable,1,14.95,10/08/19 09:33,"886 Lincoln St, New York City, NY 10001" +276698,Bose SoundSport Headphones,1,99.99,10/21/19 21:11,"706 Hickory St, San Francisco, CA 94016" +276699,Lightning Charging Cable,1,14.95,10/05/19 15:52,"639 River St, Dallas, TX 75001" +276700,27in FHD Monitor,1,149.99,10/28/19 16:23,"801 Ridge St, San Francisco, CA 94016" +276701,Apple Airpods Headphones,1,150,10/23/19 23:03,"3 Park St, Dallas, TX 75001" +276702,Apple Airpods Headphones,1,150,10/09/19 10:58,"260 Cedar St, New York City, NY 10001" +276703,Wired Headphones,1,11.99,10/10/19 23:27,"403 Maple St, San Francisco, CA 94016" +276704,USB-C Charging Cable,1,11.95,10/14/19 17:42,"531 Sunset St, Portland, OR 97035" +276705,USB-C Charging Cable,1,11.95,10/24/19 21:52,"888 Lincoln St, Dallas, TX 75001" +276706,Lightning Charging Cable,1,14.95,10/21/19 12:53,"349 11th St, San Francisco, CA 94016" +276707,Wired Headphones,1,11.99,10/10/19 14:46,"953 1st St, New York City, NY 10001" +276708,USB-C Charging Cable,1,11.95,10/28/19 17:50,"963 6th St, Los Angeles, CA 90001" +276709,27in FHD Monitor,1,149.99,10/25/19 22:35,"634 Highland St, Boston, MA 02215" +276710,AAA Batteries (4-pack),3,2.99,10/26/19 00:07,"837 Cherry St, Los Angeles, CA 90001" +276711,Wired Headphones,1,11.99,10/31/19 14:23,"368 Maple St, San Francisco, CA 94016" +276712,LG Washing Machine,1,600.0,10/13/19 21:50,"600 South St, Portland, ME 04101" +276713,AAA Batteries (4-pack),1,2.99,10/31/19 11:57,"87 Hickory St, Dallas, TX 75001" +276714,AA Batteries (4-pack),1,3.84,10/01/19 13:26,"895 Adams St, San Francisco, CA 94016" +276715,Bose SoundSport Headphones,1,99.99,10/30/19 09:33,"302 7th St, Boston, MA 02215" +276716,USB-C Charging Cable,1,11.95,10/22/19 09:44,"777 Lake St, New York City, NY 10001" +276717,AAA Batteries (4-pack),1,2.99,10/26/19 21:44,"979 9th St, Atlanta, GA 30301" +276718,Apple Airpods Headphones,1,150,10/06/19 20:14,"451 Church St, Dallas, TX 75001" +276719,20in Monitor,1,109.99,10/17/19 11:07,"48 4th St, Seattle, WA 98101" +276720,USB-C Charging Cable,1,11.95,10/18/19 10:25,"982 Willow St, San Francisco, CA 94016" +276721,iPhone,1,700,10/30/19 10:40,"792 Willow St, Dallas, TX 75001" +276721,Lightning Charging Cable,1,14.95,10/30/19 10:40,"792 Willow St, Dallas, TX 75001" +276722,Bose SoundSport Headphones,1,99.99,10/25/19 20:31,"659 Spruce St, Dallas, TX 75001" +276723,AAA Batteries (4-pack),1,2.99,10/08/19 16:30,"709 Lake St, Los Angeles, CA 90001" +276724,Google Phone,1,600,10/27/19 22:48,"176 West St, Atlanta, GA 30301" +276724,USB-C Charging Cable,1,11.95,10/27/19 22:48,"176 West St, Atlanta, GA 30301" +276725,27in FHD Monitor,1,149.99,10/30/19 10:55,"848 South St, New York City, NY 10001" +276726,AAA Batteries (4-pack),1,2.99,10/13/19 20:08,"77 Spruce St, Los Angeles, CA 90001" +276727,AA Batteries (4-pack),1,3.84,10/28/19 10:12,"687 7th St, Portland, OR 97035" +276728,Macbook Pro Laptop,1,1700,10/17/19 01:00,"899 West St, San Francisco, CA 94016" +276729,AAA Batteries (4-pack),1,2.99,10/20/19 15:09,"552 14th St, Boston, MA 02215" +276730,Bose SoundSport Headphones,1,99.99,10/28/19 21:57,"794 4th St, New York City, NY 10001" +276731,USB-C Charging Cable,1,11.95,10/14/19 19:16,"299 Jackson St, Boston, MA 02215" +276732,Lightning Charging Cable,1,14.95,10/04/19 11:14,"362 Spruce St, Atlanta, GA 30301" +276733,Wired Headphones,1,11.99,10/10/19 11:31,"6 10th St, New York City, NY 10001" +276734,Lightning Charging Cable,2,14.95,10/11/19 20:35,"557 Willow St, Los Angeles, CA 90001" +276735,USB-C Charging Cable,1,11.95,10/17/19 10:50,"836 10th St, Boston, MA 02215" +276736,Bose SoundSport Headphones,1,99.99,10/15/19 07:14,"570 10th St, San Francisco, CA 94016" +276737,AA Batteries (4-pack),1,3.84,10/26/19 00:01,"362 Ridge St, Austin, TX 73301" +276738,AAA Batteries (4-pack),2,2.99,10/22/19 18:27,"782 9th St, Dallas, TX 75001" +276739,AAA Batteries (4-pack),2,2.99,10/18/19 00:41,"885 Church St, New York City, NY 10001" +276740,AA Batteries (4-pack),2,3.84,10/06/19 13:34,"417 North St, San Francisco, CA 94016" +276741,Wired Headphones,1,11.99,10/12/19 15:21,"365 Johnson St, San Francisco, CA 94016" +276742,Lightning Charging Cable,1,14.95,10/10/19 22:20,"234 Lakeview St, San Francisco, CA 94016" +276743,USB-C Charging Cable,1,11.95,10/02/19 13:04,"330 South St, New York City, NY 10001" +276744,AAA Batteries (4-pack),1,2.99,10/18/19 20:41,"386 River St, Austin, TX 73301" +276745,34in Ultrawide Monitor,1,379.99,10/30/19 21:22,"842 2nd St, Austin, TX 73301" +276746,Flatscreen TV,1,300,10/15/19 11:35,"174 Park St, New York City, NY 10001" +276747,Lightning Charging Cable,2,14.95,10/02/19 20:36,"780 Lake St, New York City, NY 10001" +276748,Lightning Charging Cable,1,14.95,10/11/19 08:03,"845 Forest St, Seattle, WA 98101" +276749,Lightning Charging Cable,1,14.95,10/16/19 01:07,"881 Jefferson St, San Francisco, CA 94016" +276750,ThinkPad Laptop,1,999.99,10/10/19 21:23,"268 7th St, San Francisco, CA 94016" +276751,USB-C Charging Cable,1,11.95,10/18/19 10:08,"768 Chestnut St, San Francisco, CA 94016" +276752,USB-C Charging Cable,1,11.95,10/02/19 01:38,"73 11th St, Atlanta, GA 30301" +276753,Flatscreen TV,1,300,10/17/19 12:54,"482 10th St, Los Angeles, CA 90001" +276754,LG Washing Machine,1,600.0,10/07/19 12:50,"603 Highland St, Portland, ME 04101" +276755,Lightning Charging Cable,1,14.95,10/27/19 17:08,"651 Madison St, San Francisco, CA 94016" +276756,USB-C Charging Cable,1,11.95,10/10/19 09:20,"928 Church St, San Francisco, CA 94016" +276757,27in 4K Gaming Monitor,1,389.99,10/05/19 15:31,"59 Madison St, Los Angeles, CA 90001" +276758,Lightning Charging Cable,1,14.95,10/11/19 16:27,"916 Meadow St, Dallas, TX 75001" +276759,Bose SoundSport Headphones,1,99.99,10/07/19 18:45,"170 Wilson St, Boston, MA 02215" +276760,Wired Headphones,1,11.99,10/31/19 23:02,"383 Cherry St, Boston, MA 02215" +276761,Flatscreen TV,1,300,10/31/19 08:40,"440 Hickory St, Los Angeles, CA 90001" +276762,AA Batteries (4-pack),2,3.84,10/02/19 22:10,"701 Dogwood St, Los Angeles, CA 90001" +276763,Wired Headphones,1,11.99,10/15/19 12:14,"404 Park St, Austin, TX 73301" +276764,iPhone,1,700,10/08/19 19:07,"889 Forest St, San Francisco, CA 94016" +276765,AAA Batteries (4-pack),1,2.99,10/10/19 15:28,"775 Washington St, New York City, NY 10001" +276766,Wired Headphones,1,11.99,10/05/19 13:34,"861 Jackson St, Atlanta, GA 30301" +276767,27in FHD Monitor,1,149.99,10/18/19 18:36,"722 North St, Seattle, WA 98101" +276768,AAA Batteries (4-pack),2,2.99,10/26/19 10:30,"313 Hickory St, San Francisco, CA 94016" +276768,Wired Headphones,1,11.99,10/26/19 10:30,"313 Hickory St, San Francisco, CA 94016" +276769,Google Phone,1,600,10/12/19 20:17,"28 Main St, Atlanta, GA 30301" +276770,27in FHD Monitor,1,149.99,10/30/19 20:15,"35 Pine St, Atlanta, GA 30301" +276771,Apple Airpods Headphones,1,150,10/31/19 19:08,"779 Elm St, Atlanta, GA 30301" +276772,Wired Headphones,1,11.99,10/31/19 09:17,"186 4th St, Boston, MA 02215" +276773,AAA Batteries (4-pack),2,2.99,10/07/19 04:39,"294 Sunset St, Los Angeles, CA 90001" +276774,AAA Batteries (4-pack),1,2.99,10/23/19 23:10,"145 Lakeview St, Los Angeles, CA 90001" +276775,Macbook Pro Laptop,1,1700,10/04/19 01:36,"487 Park St, Boston, MA 02215" +276776,Wired Headphones,1,11.99,10/20/19 12:55,"318 14th St, Seattle, WA 98101" +276777,Wired Headphones,1,11.99,10/18/19 10:29,"466 Lincoln St, Atlanta, GA 30301" +276778,27in FHD Monitor,1,149.99,10/18/19 22:37,"299 South St, New York City, NY 10001" +276779,Apple Airpods Headphones,1,150,10/28/19 16:40,"17 Maple St, Atlanta, GA 30301" +276780,Lightning Charging Cable,1,14.95,10/10/19 16:58,"339 13th St, Dallas, TX 75001" +276781,Lightning Charging Cable,1,14.95,10/09/19 12:49,"609 10th St, Seattle, WA 98101" +276782,Lightning Charging Cable,1,14.95,10/31/19 15:14,"13 10th St, San Francisco, CA 94016" +276783,Lightning Charging Cable,1,14.95,10/03/19 21:13,"113 13th St, Portland, OR 97035" +276784,iPhone,1,700,10/01/19 11:26,"614 Lake St, New York City, NY 10001" +276784,Lightning Charging Cable,1,14.95,10/01/19 11:26,"614 Lake St, New York City, NY 10001" +276785,Lightning Charging Cable,1,14.95,10/27/19 17:50,"807 Cedar St, Los Angeles, CA 90001" +276786,Flatscreen TV,1,300,10/08/19 02:24,"872 West St, Los Angeles, CA 90001" +276787,27in 4K Gaming Monitor,1,389.99,10/24/19 18:13,"874 Hickory St, San Francisco, CA 94016" +276788,AA Batteries (4-pack),1,3.84,10/31/19 20:29,"381 4th St, New York City, NY 10001" +276789,34in Ultrawide Monitor,1,379.99,10/03/19 20:40,"596 Pine St, San Francisco, CA 94016" +276790,Lightning Charging Cable,1,14.95,10/26/19 20:20,"739 Wilson St, Boston, MA 02215" +276790,27in 4K Gaming Monitor,1,389.99,10/26/19 20:20,"739 Wilson St, Boston, MA 02215" +276791,AA Batteries (4-pack),1,3.84,10/24/19 17:01,"151 5th St, Austin, TX 73301" +276792,27in FHD Monitor,1,149.99,10/28/19 08:54,"878 Main St, Atlanta, GA 30301" +276793,AAA Batteries (4-pack),1,2.99,10/10/19 08:14,"687 Lakeview St, San Francisco, CA 94016" +276794,Wired Headphones,1,11.99,10/14/19 00:55,"586 8th St, Portland, OR 97035" +276795,Bose SoundSport Headphones,1,99.99,10/25/19 20:09,"73 Forest St, Boston, MA 02215" +276796,Flatscreen TV,1,300,10/26/19 13:35,"361 Hickory St, San Francisco, CA 94016" +276797,Apple Airpods Headphones,1,150,10/12/19 14:56,"52 Johnson St, Austin, TX 73301" +276798,ThinkPad Laptop,1,999.99,10/05/19 13:26,"943 7th St, Seattle, WA 98101" +276799,AAA Batteries (4-pack),2,2.99,10/15/19 13:15,"299 Cherry St, Portland, OR 97035" +276800,Wired Headphones,1,11.99,10/06/19 10:58,"573 South St, San Francisco, CA 94016" +276801,Macbook Pro Laptop,1,1700,10/09/19 14:22,"339 Hickory St, New York City, NY 10001" +276802,Google Phone,1,600,10/17/19 20:43,"760 Chestnut St, Los Angeles, CA 90001" +276803,Lightning Charging Cable,1,14.95,10/05/19 21:13,"672 Lakeview St, Atlanta, GA 30301" +276804,Bose SoundSport Headphones,1,99.99,10/27/19 12:04,"931 Center St, Dallas, TX 75001" +276805,27in FHD Monitor,1,149.99,10/09/19 14:35,"742 8th St, Los Angeles, CA 90001" +276806,Macbook Pro Laptop,1,1700,10/18/19 12:16,"97 North St, Portland, OR 97035" +276806,AA Batteries (4-pack),1,3.84,10/18/19 12:16,"97 North St, Portland, OR 97035" +276807,USB-C Charging Cable,1,11.95,10/15/19 14:45,"961 Hill St, Boston, MA 02215" +276808,USB-C Charging Cable,2,11.95,10/18/19 08:18,"601 Madison St, Boston, MA 02215" +276809,Flatscreen TV,1,300,10/02/19 20:48,"115 Meadow St, Boston, MA 02215" +276810,Lightning Charging Cable,1,14.95,10/07/19 20:16,"86 Johnson St, Los Angeles, CA 90001" +276811,20in Monitor,1,109.99,10/12/19 15:11,"911 10th St, Los Angeles, CA 90001" +276812,AA Batteries (4-pack),2,3.84,10/19/19 23:15,"845 4th St, Boston, MA 02215" +276813,Flatscreen TV,1,300,10/25/19 15:25,"972 Park St, Atlanta, GA 30301" +276814,iPhone,1,700,10/31/19 09:44,"413 8th St, Atlanta, GA 30301" +276815,AA Batteries (4-pack),1,3.84,10/12/19 14:25,"777 West St, Dallas, TX 75001" +276816,Bose SoundSport Headphones,1,99.99,10/11/19 18:48,"527 Church St, San Francisco, CA 94016" +276817,AA Batteries (4-pack),4,3.84,10/20/19 08:06,"598 6th St, San Francisco, CA 94016" +276818,AAA Batteries (4-pack),2,2.99,10/21/19 13:23,"499 Highland St, Seattle, WA 98101" +276819,USB-C Charging Cable,1,11.95,10/10/19 22:36,"742 Highland St, Dallas, TX 75001" +276820,Macbook Pro Laptop,1,1700,10/04/19 20:36,"652 9th St, Dallas, TX 75001" +276821,27in 4K Gaming Monitor,1,389.99,10/06/19 19:25,"695 Ridge St, Los Angeles, CA 90001" +276822,AA Batteries (4-pack),1,3.84,10/06/19 12:46,"42 Lincoln St, San Francisco, CA 94016" +276823,AAA Batteries (4-pack),1,2.99,10/08/19 12:50,"785 Center St, Dallas, TX 75001" +276824,Flatscreen TV,1,300,10/22/19 10:15,"838 Dogwood St, San Francisco, CA 94016" +276825,Wired Headphones,1,11.99,10/07/19 08:13,"308 2nd St, Austin, TX 73301" +276826,AA Batteries (4-pack),2,3.84,10/11/19 23:09,"100 Elm St, New York City, NY 10001" +276827,Google Phone,1,600,10/15/19 23:27,"602 5th St, San Francisco, CA 94016" +276828,34in Ultrawide Monitor,1,379.99,10/24/19 15:10,"948 4th St, Boston, MA 02215" +276829,iPhone,1,700,10/15/19 00:48,"23 8th St, Boston, MA 02215" +276830,AAA Batteries (4-pack),1,2.99,10/26/19 00:33,"24 Forest St, San Francisco, CA 94016" +276831,34in Ultrawide Monitor,1,379.99,10/19/19 09:49,"560 Forest St, New York City, NY 10001" +276832,Wired Headphones,1,11.99,10/01/19 15:54,"799 Main St, Los Angeles, CA 90001" +276833,USB-C Charging Cable,1,11.95,10/07/19 17:59,"207 Center St, New York City, NY 10001" +276834,Lightning Charging Cable,1,14.95,10/11/19 20:44,"752 South St, Dallas, TX 75001" +276835,Wired Headphones,1,11.99,10/31/19 12:07,"374 4th St, Austin, TX 73301" +276836,Wired Headphones,1,11.99,10/03/19 22:01,"930 Madison St, New York City, NY 10001" +276837,Wired Headphones,1,11.99,10/30/19 20:19,"844 Meadow St, New York City, NY 10001" +276838,Google Phone,1,600,10/12/19 20:57,"438 River St, Boston, MA 02215" +276839,AAA Batteries (4-pack),1,2.99,10/22/19 12:56,"145 Johnson St, New York City, NY 10001" +276840,Macbook Pro Laptop,1,1700,10/24/19 19:48,"75 6th St, Dallas, TX 75001" +276841,27in 4K Gaming Monitor,1,389.99,10/29/19 15:58,"839 North St, Atlanta, GA 30301" +276842,USB-C Charging Cable,1,11.95,10/18/19 21:52,"749 Cherry St, New York City, NY 10001" +276843,AA Batteries (4-pack),1,3.84,10/12/19 23:31,"720 West St, Atlanta, GA 30301" +276844,AA Batteries (4-pack),4,3.84,10/16/19 17:56,"981 Hickory St, San Francisco, CA 94016" +276845,Bose SoundSport Headphones,1,99.99,10/21/19 11:49,"739 Meadow St, New York City, NY 10001" +,,,,, +276846,Lightning Charging Cable,1,14.95,10/23/19 15:26,"858 Center St, Austin, TX 73301" +276847,USB-C Charging Cable,1,11.95,10/15/19 19:39,"753 Lakeview St, Austin, TX 73301" +276848,Macbook Pro Laptop,1,1700,10/19/19 14:59,"757 Jefferson St, San Francisco, CA 94016" +276849,AAA Batteries (4-pack),2,2.99,10/19/19 10:11,"73 7th St, New York City, NY 10001" +276850,AAA Batteries (4-pack),1,2.99,10/15/19 15:07,"40 5th St, Los Angeles, CA 90001" +276851,Apple Airpods Headphones,1,150,10/23/19 19:51,"866 Jackson St, Seattle, WA 98101" +276852,Lightning Charging Cable,1,14.95,10/05/19 11:04,"919 Dogwood St, New York City, NY 10001" +276853,USB-C Charging Cable,1,11.95,10/22/19 09:56,"504 Johnson St, Atlanta, GA 30301" +276854,Flatscreen TV,1,300,10/13/19 16:55,"673 11th St, Dallas, TX 75001" +276855,LG Washing Machine,1,600.0,10/20/19 14:37,"812 Madison St, New York City, NY 10001" +276856,Apple Airpods Headphones,1,150,10/04/19 08:47,"59 2nd St, San Francisco, CA 94016" +276856,AAA Batteries (4-pack),2,2.99,10/04/19 08:47,"59 2nd St, San Francisco, CA 94016" +276857,Lightning Charging Cable,1,14.95,10/07/19 18:31,"535 Madison St, Boston, MA 02215" +276858,Bose SoundSport Headphones,1,99.99,10/08/19 09:58,"48 Lincoln St, Seattle, WA 98101" +276859,Lightning Charging Cable,1,14.95,10/31/19 23:59,"931 Meadow St, San Francisco, CA 94016" +276860,Lightning Charging Cable,1,14.95,10/31/19 22:30,"212 Spruce St, Portland, OR 97035" +276861,Lightning Charging Cable,1,14.95,10/25/19 18:13,"131 5th St, Los Angeles, CA 90001" +276862,Bose SoundSport Headphones,1,99.99,10/03/19 01:55,"631 Ridge St, New York City, NY 10001" +276863,Lightning Charging Cable,1,14.95,10/11/19 19:46,"851 Dogwood St, San Francisco, CA 94016" +276864,Lightning Charging Cable,1,14.95,10/30/19 11:25,"890 10th St, San Francisco, CA 94016" +276865,AAA Batteries (4-pack),1,2.99,10/02/19 07:23,"646 Church St, Los Angeles, CA 90001" +276866,Bose SoundSport Headphones,1,99.99,10/05/19 10:33,"807 Adams St, Los Angeles, CA 90001" +276867,Lightning Charging Cable,2,14.95,10/18/19 20:27,"92 2nd St, Austin, TX 73301" +276867,AAA Batteries (4-pack),1,2.99,10/18/19 20:27,"92 2nd St, Austin, TX 73301" +276868,Lightning Charging Cable,1,14.95,10/28/19 13:23,"469 Forest St, New York City, NY 10001" +276869,AAA Batteries (4-pack),1,2.99,10/12/19 13:30,"44 Cedar St, Portland, ME 04101" +276870,ThinkPad Laptop,1,999.99,10/03/19 19:46,"577 Johnson St, Portland, ME 04101" +276870,27in FHD Monitor,1,149.99,10/03/19 19:46,"577 Johnson St, Portland, ME 04101" +276871,Google Phone,1,600,10/27/19 19:22,"171 South St, Los Angeles, CA 90001" +276871,USB-C Charging Cable,1,11.95,10/27/19 19:22,"171 South St, Los Angeles, CA 90001" +276872,Wired Headphones,1,11.99,10/11/19 08:01,"690 6th St, San Francisco, CA 94016" +276873,Apple Airpods Headphones,1,150,10/23/19 18:32,"372 2nd St, Atlanta, GA 30301" +276874,27in FHD Monitor,1,149.99,10/10/19 12:58,"853 Adams St, Austin, TX 73301" +276875,Bose SoundSport Headphones,1,99.99,10/08/19 14:24,"885 River St, Los Angeles, CA 90001" +276876,AAA Batteries (4-pack),2,2.99,10/29/19 08:59,"194 Walnut St, Boston, MA 02215" +276877,Apple Airpods Headphones,1,150,10/08/19 12:50,"638 14th St, New York City, NY 10001" +276878,USB-C Charging Cable,1,11.95,10/12/19 16:32,"347 Spruce St, Boston, MA 02215" +276879,AAA Batteries (4-pack),1,2.99,10/09/19 09:36,"395 13th St, Los Angeles, CA 90001" +276880,USB-C Charging Cable,3,11.95,10/24/19 20:26,"347 Sunset St, New York City, NY 10001" +276881,Wired Headphones,2,11.99,10/22/19 20:07,"250 Highland St, San Francisco, CA 94016" +276882,Lightning Charging Cable,1,14.95,10/12/19 11:24,"457 Lakeview St, Portland, OR 97035" +276883,AAA Batteries (4-pack),4,2.99,10/01/19 10:33,"298 1st St, Boston, MA 02215" +276884,27in 4K Gaming Monitor,1,389.99,10/31/19 09:26,"985 Wilson St, Los Angeles, CA 90001" +276885,Bose SoundSport Headphones,1,99.99,10/29/19 21:52,"3 Johnson St, Los Angeles, CA 90001" +276886,USB-C Charging Cable,1,11.95,10/30/19 11:46,"8 Cherry St, New York City, NY 10001" +276887,Vareebadd Phone,1,400,10/16/19 01:15,"834 7th St, New York City, NY 10001" +276888,Bose SoundSport Headphones,1,99.99,10/29/19 19:53,"857 9th St, San Francisco, CA 94016" +276889,AAA Batteries (4-pack),2,2.99,10/24/19 21:35,"516 Meadow St, Los Angeles, CA 90001" +276890,27in 4K Gaming Monitor,1,389.99,10/19/19 18:23,"797 Willow St, San Francisco, CA 94016" +276891,20in Monitor,1,109.99,10/09/19 19:26,"65 Spruce St, Los Angeles, CA 90001" +276892,AA Batteries (4-pack),1,3.84,10/15/19 07:16,"869 Lakeview St, Dallas, TX 75001" +276893,AAA Batteries (4-pack),1,2.99,10/28/19 19:37,"486 1st St, New York City, NY 10001" +276894,Wired Headphones,2,11.99,10/24/19 11:30,"688 12th St, Portland, OR 97035" +276895,Apple Airpods Headphones,1,150,10/10/19 17:56,"321 13th St, Boston, MA 02215" +276896,Apple Airpods Headphones,1,150,10/30/19 17:35,"139 Spruce St, Austin, TX 73301" +276897,27in FHD Monitor,1,149.99,10/14/19 19:39,"882 Hickory St, Seattle, WA 98101" +276898,Macbook Pro Laptop,1,1700,10/27/19 15:37,"842 1st St, New York City, NY 10001" +276898,Bose SoundSport Headphones,1,99.99,10/27/19 15:37,"842 1st St, New York City, NY 10001" +276899,ThinkPad Laptop,1,999.99,10/13/19 10:45,"899 11th St, San Francisco, CA 94016" +276900,Bose SoundSport Headphones,1,99.99,10/24/19 12:57,"531 Highland St, Seattle, WA 98101" +276901,USB-C Charging Cable,1,11.95,10/06/19 09:32,"155 12th St, Atlanta, GA 30301" +276902,USB-C Charging Cable,1,11.95,10/28/19 10:09,"973 Main St, Los Angeles, CA 90001" +276903,Apple Airpods Headphones,1,150,10/29/19 16:22,"306 Sunset St, Boston, MA 02215" +276904,Lightning Charging Cable,1,14.95,10/03/19 22:02,"969 Jefferson St, San Francisco, CA 94016" +276905,AAA Batteries (4-pack),1,2.99,10/23/19 21:47,"249 Walnut St, Seattle, WA 98101" +276906,Apple Airpods Headphones,1,150,10/08/19 15:38,"54 10th St, Austin, TX 73301" +276907,Apple Airpods Headphones,1,150,10/12/19 09:28,"57 Park St, Los Angeles, CA 90001" +276908,Lightning Charging Cable,1,14.95,10/06/19 11:52,"127 Sunset St, San Francisco, CA 94016" +276909,Lightning Charging Cable,1,14.95,10/04/19 21:59,"64 Main St, San Francisco, CA 94016" +276910,AA Batteries (4-pack),1,3.84,10/08/19 13:20,"769 7th St, San Francisco, CA 94016" +276911,AAA Batteries (4-pack),1,2.99,10/18/19 16:40,"384 South St, New York City, NY 10001" +276912,Lightning Charging Cable,1,14.95,10/27/19 20:13,"896 River St, Atlanta, GA 30301" +276913,27in 4K Gaming Monitor,1,389.99,10/26/19 17:58,"120 Elm St, San Francisco, CA 94016" +276914,LG Dryer,1,600.0,10/24/19 09:28,"824 2nd St, Los Angeles, CA 90001" +276915,AA Batteries (4-pack),2,3.84,10/01/19 12:48,"219 Maple St, Seattle, WA 98101" +276916,34in Ultrawide Monitor,1,379.99,10/30/19 19:01,"195 4th St, Atlanta, GA 30301" +276917,27in 4K Gaming Monitor,1,389.99,10/02/19 11:18,"250 Ridge St, New York City, NY 10001" +276918,Bose SoundSport Headphones,1,99.99,10/10/19 16:57,"943 Cedar St, San Francisco, CA 94016" +276919,USB-C Charging Cable,1,11.95,10/21/19 06:36,"644 10th St, Dallas, TX 75001" +276920,AA Batteries (4-pack),1,3.84,10/23/19 19:12,"221 Johnson St, Portland, OR 97035" +276921,AA Batteries (4-pack),1,3.84,10/15/19 22:09,"43 Maple St, Austin, TX 73301" +276922,LG Dryer,1,600.0,10/07/19 20:37,"655 Meadow St, New York City, NY 10001" +276923,Apple Airpods Headphones,1,150,10/22/19 18:29,"23 14th St, New York City, NY 10001" +276924,Google Phone,1,600,10/23/19 15:57,"25 10th St, Boston, MA 02215" +276925,Flatscreen TV,1,300,10/28/19 17:46,"216 2nd St, San Francisco, CA 94016" +276926,Apple Airpods Headphones,1,150,10/04/19 12:41,"390 12th St, San Francisco, CA 94016" +276927,Wired Headphones,1,11.99,10/08/19 22:31,"675 10th St, San Francisco, CA 94016" +276928,Apple Airpods Headphones,1,150,10/13/19 15:44,"568 Hill St, Portland, OR 97035" +276929,Wired Headphones,1,11.99,10/10/19 12:51,"109 9th St, Seattle, WA 98101" +276930,AAA Batteries (4-pack),1,2.99,10/22/19 21:20,"142 Cedar St, Dallas, TX 75001" +276931,AAA Batteries (4-pack),4,2.99,10/10/19 19:02,"335 Sunset St, Los Angeles, CA 90001" +276932,Vareebadd Phone,1,400,10/11/19 14:26,"544 Ridge St, Boston, MA 02215" +276933,Apple Airpods Headphones,1,150,10/01/19 14:21,"996 Cedar St, New York City, NY 10001" +276934,Bose SoundSport Headphones,1,99.99,10/31/19 20:02,"653 Walnut St, New York City, NY 10001" +276935,Wired Headphones,1,11.99,10/16/19 17:11,"460 West St, San Francisco, CA 94016" +276936,USB-C Charging Cable,1,11.95,10/26/19 13:42,"664 North St, Atlanta, GA 30301" +276937,Wired Headphones,1,11.99,10/03/19 17:01,"820 Highland St, Austin, TX 73301" +276938,Apple Airpods Headphones,1,150,10/23/19 21:39,"12 West St, Portland, OR 97035" +276939,Bose SoundSport Headphones,1,99.99,10/28/19 19:44,"680 14th St, Atlanta, GA 30301" +276940,AAA Batteries (4-pack),1,2.99,10/03/19 23:37,"203 Center St, San Francisco, CA 94016" +276941,Bose SoundSport Headphones,1,99.99,10/07/19 23:52,"499 River St, San Francisco, CA 94016" +276942,Apple Airpods Headphones,1,150,10/14/19 20:33,"959 Adams St, Boston, MA 02215" +276943,Wired Headphones,1,11.99,10/13/19 18:20,"954 Elm St, Boston, MA 02215" +276944,AA Batteries (4-pack),1,3.84,10/05/19 15:25,"968 14th St, Boston, MA 02215" +276945,Lightning Charging Cable,1,14.95,10/11/19 12:29,"430 Pine St, Seattle, WA 98101" +276946,USB-C Charging Cable,1,11.95,10/12/19 20:43,"26 Forest St, Dallas, TX 75001" +276947,27in FHD Monitor,1,149.99,10/19/19 13:29,"192 Hickory St, New York City, NY 10001" +276948,USB-C Charging Cable,2,11.95,10/23/19 18:19,"301 Elm St, Atlanta, GA 30301" +276949,Macbook Pro Laptop,1,1700,10/27/19 11:11,"60 1st St, Portland, OR 97035" +276950,Wired Headphones,1,11.99,10/21/19 21:38,"132 5th St, Seattle, WA 98101" +276951,AA Batteries (4-pack),1,3.84,10/28/19 20:43,"617 8th St, San Francisco, CA 94016" +276952,Bose SoundSport Headphones,1,99.99,10/25/19 14:00,"921 Lincoln St, San Francisco, CA 94016" +276953,27in FHD Monitor,1,149.99,10/01/19 11:20,"744 11th St, San Francisco, CA 94016" +276954,Wired Headphones,1,11.99,10/26/19 18:02,"777 Chestnut St, Los Angeles, CA 90001" +276955,20in Monitor,1,109.99,10/29/19 13:33,"827 Chestnut St, San Francisco, CA 94016" +276956,Wired Headphones,1,11.99,10/17/19 15:05,"280 6th St, Los Angeles, CA 90001" +276957,27in FHD Monitor,1,149.99,10/13/19 20:56,"168 8th St, Atlanta, GA 30301" +276958,USB-C Charging Cable,1,11.95,10/14/19 16:23,"159 Lincoln St, Dallas, TX 75001" +276959,AAA Batteries (4-pack),1,2.99,10/17/19 14:32,"867 North St, Los Angeles, CA 90001" +276960,Apple Airpods Headphones,1,150,10/15/19 18:35,"849 6th St, Portland, OR 97035" +276961,Lightning Charging Cable,1,14.95,10/13/19 19:27,"617 Forest St, Boston, MA 02215" +276962,USB-C Charging Cable,1,11.95,10/13/19 12:02,"322 Lincoln St, San Francisco, CA 94016" +276963,USB-C Charging Cable,1,11.95,10/20/19 16:05,"997 Lake St, Boston, MA 02215" +276964,ThinkPad Laptop,1,999.99,10/28/19 19:37,"208 Ridge St, Austin, TX 73301" +276965,Lightning Charging Cable,1,14.95,10/21/19 11:48,"482 Madison St, Los Angeles, CA 90001" +276966,Lightning Charging Cable,1,14.95,10/12/19 14:26,"519 Madison St, San Francisco, CA 94016" +276967,AAA Batteries (4-pack),1,2.99,10/12/19 22:59,"281 Ridge St, San Francisco, CA 94016" +276968,AAA Batteries (4-pack),3,2.99,10/28/19 23:17,"370 West St, San Francisco, CA 94016" +276969,34in Ultrawide Monitor,1,379.99,10/24/19 14:22,"438 4th St, New York City, NY 10001" +276970,Google Phone,1,600,10/22/19 07:54,"262 Hickory St, San Francisco, CA 94016" +276971,USB-C Charging Cable,1,11.95,10/16/19 20:31,"115 Main St, Atlanta, GA 30301" +276972,AA Batteries (4-pack),2,3.84,10/15/19 09:20,"465 Spruce St, New York City, NY 10001" +276973,iPhone,1,700,10/02/19 15:50,"643 11th St, Atlanta, GA 30301" +276974,Bose SoundSport Headphones,1,99.99,10/11/19 14:58,"236 Walnut St, San Francisco, CA 94016" +276975,Wired Headphones,1,11.99,10/28/19 22:33,"322 Lincoln St, San Francisco, CA 94016" +276976,AA Batteries (4-pack),2,3.84,10/19/19 14:40,"370 14th St, Portland, OR 97035" +276977,AA Batteries (4-pack),2,3.84,10/05/19 16:22,"119 Wilson St, San Francisco, CA 94016" +276978,Apple Airpods Headphones,1,150,10/10/19 09:36,"109 Adams St, San Francisco, CA 94016" +276979,Macbook Pro Laptop,1,1700,10/14/19 08:35,"690 8th St, San Francisco, CA 94016" +276980,AAA Batteries (4-pack),1,2.99,10/01/19 08:19,"40 Johnson St, Austin, TX 73301" +276981,27in FHD Monitor,1,149.99,10/20/19 14:13,"830 South St, Seattle, WA 98101" +276982,AA Batteries (4-pack),2,3.84,10/06/19 20:33,"77 Adams St, Portland, OR 97035" +276983,AA Batteries (4-pack),1,3.84,10/08/19 07:53,"98 Lakeview St, Boston, MA 02215" +276984,USB-C Charging Cable,1,11.95,10/25/19 19:36,"591 Cherry St, Dallas, TX 75001" +276985,Macbook Pro Laptop,1,1700,10/07/19 22:08,"841 7th St, Dallas, TX 75001" +276986,Lightning Charging Cable,1,14.95,10/13/19 12:51,"924 Church St, Los Angeles, CA 90001" +276987,Apple Airpods Headphones,1,150,10/03/19 12:14,"166 Maple St, Atlanta, GA 30301" +276988,34in Ultrawide Monitor,1,379.99,10/17/19 20:23,"440 Willow St, Dallas, TX 75001" +276989,Bose SoundSport Headphones,1,99.99,10/08/19 14:46,"483 Cherry St, Seattle, WA 98101" +276990,Wired Headphones,1,11.99,10/12/19 14:59,"845 Walnut St, New York City, NY 10001" +276991,Macbook Pro Laptop,1,1700,10/03/19 23:33,"76 Hickory St, Dallas, TX 75001" +276992,AAA Batteries (4-pack),1,2.99,10/06/19 10:19,"321 Dogwood St, Los Angeles, CA 90001" +276993,Lightning Charging Cable,1,14.95,10/24/19 22:07,"694 Walnut St, San Francisco, CA 94016" +276994,Wired Headphones,1,11.99,10/22/19 16:29,"163 14th St, Atlanta, GA 30301" +276995,Apple Airpods Headphones,1,150,10/02/19 20:14,"515 Jefferson St, San Francisco, CA 94016" +276996,Lightning Charging Cable,1,14.95,10/11/19 16:29,"995 Ridge St, Seattle, WA 98101" +276997,AA Batteries (4-pack),1,3.84,10/11/19 22:42,"786 Lincoln St, Seattle, WA 98101" +276998,Wired Headphones,1,11.99,10/28/19 22:33,"389 Center St, Portland, OR 97035" +276999,Lightning Charging Cable,1,14.95,10/08/19 02:04,"13 8th St, Boston, MA 02215" +277000,27in 4K Gaming Monitor,1,389.99,10/06/19 22:31,"831 Madison St, Los Angeles, CA 90001" +277001,AA Batteries (4-pack),1,3.84,10/04/19 11:35,"620 Meadow St, Portland, OR 97035" +277002,27in FHD Monitor,1,149.99,10/26/19 21:11,"370 Main St, New York City, NY 10001" +277003,Wired Headphones,1,11.99,10/28/19 10:59,"246 Dogwood St, Atlanta, GA 30301" +277004,Apple Airpods Headphones,1,150,10/18/19 12:31,"49 13th St, Los Angeles, CA 90001" +277005,Vareebadd Phone,1,400,10/24/19 13:31,"149 14th St, Seattle, WA 98101" +277006,Lightning Charging Cable,1,14.95,10/12/19 13:39,"184 Hickory St, Dallas, TX 75001" +277007,20in Monitor,1,109.99,10/05/19 16:06,"77 6th St, Atlanta, GA 30301" +277008,Wired Headphones,1,11.99,10/27/19 15:06,"512 9th St, San Francisco, CA 94016" +277009,Apple Airpods Headphones,1,150,10/18/19 14:22,"185 Park St, Los Angeles, CA 90001" +277010,Google Phone,1,600,10/23/19 12:32,"693 Wilson St, San Francisco, CA 94016" +277011,Lightning Charging Cable,1,14.95,10/19/19 19:11,"519 Jackson St, Los Angeles, CA 90001" +277012,Vareebadd Phone,1,400,10/24/19 18:54,"124 River St, Boston, MA 02215" +277013,USB-C Charging Cable,1,11.95,10/31/19 11:58,"592 5th St, San Francisco, CA 94016" +277014,iPhone,1,700,10/14/19 13:22,"832 Washington St, Portland, OR 97035" +277014,Lightning Charging Cable,1,14.95,10/14/19 13:22,"832 Washington St, Portland, OR 97035" +277015,Apple Airpods Headphones,1,150,10/16/19 06:43,"498 Jefferson St, San Francisco, CA 94016" +277015,USB-C Charging Cable,1,11.95,10/16/19 06:43,"498 Jefferson St, San Francisco, CA 94016" +277016,Lightning Charging Cable,1,14.95,10/23/19 18:27,"840 7th St, San Francisco, CA 94016" +277017,Apple Airpods Headphones,1,150,10/12/19 11:31,"778 Main St, Los Angeles, CA 90001" +277018,27in FHD Monitor,1,149.99,10/01/19 13:16,"340 Johnson St, Seattle, WA 98101" +277019,Vareebadd Phone,1,400,10/05/19 11:51,"421 Walnut St, Portland, ME 04101" +277020,USB-C Charging Cable,1,11.95,10/30/19 20:40,"848 5th St, New York City, NY 10001" +277021,iPhone,1,700,10/21/19 12:09,"488 Spruce St, Seattle, WA 98101" +277022,AA Batteries (4-pack),1,3.84,10/21/19 22:04,"445 9th St, New York City, NY 10001" +277023,Flatscreen TV,1,300,10/20/19 14:23,"298 Wilson St, Los Angeles, CA 90001" +277024,Lightning Charging Cable,1,14.95,10/01/19 21:49,"29 Forest St, Dallas, TX 75001" +277025,Flatscreen TV,1,300,10/27/19 20:50,"698 Church St, Los Angeles, CA 90001" +277026,27in 4K Gaming Monitor,1,389.99,10/13/19 00:26,"709 Jefferson St, San Francisco, CA 94016" +277027,20in Monitor,1,109.99,10/25/19 06:22,"843 North St, Los Angeles, CA 90001" +277028,AAA Batteries (4-pack),1,2.99,10/03/19 10:38,"151 Johnson St, Dallas, TX 75001" +277029,iPhone,1,700,10/15/19 21:59,"109 Spruce St, Los Angeles, CA 90001" +277029,Lightning Charging Cable,1,14.95,10/15/19 21:59,"109 Spruce St, Los Angeles, CA 90001" +277030,20in Monitor,1,109.99,10/04/19 15:20,"434 Chestnut St, Los Angeles, CA 90001" +277031,Lightning Charging Cable,1,14.95,10/30/19 13:34,"766 Cherry St, Los Angeles, CA 90001" +277032,Apple Airpods Headphones,1,150,10/07/19 07:01,"729 4th St, Austin, TX 73301" +277033,AAA Batteries (4-pack),1,2.99,10/10/19 18:22,"457 Sunset St, Boston, MA 02215" +277034,34in Ultrawide Monitor,1,379.99,10/02/19 07:08,"780 Church St, Boston, MA 02215" +277035,27in FHD Monitor,1,149.99,10/23/19 15:00,"437 Pine St, Atlanta, GA 30301" +277036,Bose SoundSport Headphones,1,99.99,10/17/19 15:55,"119 Pine St, New York City, NY 10001" +277037,Apple Airpods Headphones,1,150,10/14/19 19:45,"29 Ridge St, Portland, OR 97035" +277038,Lightning Charging Cable,1,14.95,10/01/19 14:09,"411 1st St, Boston, MA 02215" +277039,AAA Batteries (4-pack),1,2.99,10/09/19 00:42,"35 Hill St, Atlanta, GA 30301" +277040,AA Batteries (4-pack),1,3.84,10/01/19 20:50,"944 7th St, Portland, OR 97035" +277041,AAA Batteries (4-pack),1,2.99,10/15/19 09:41,"244 Wilson St, Los Angeles, CA 90001" +277042,Macbook Pro Laptop,1,1700,10/13/19 17:05,"180 Chestnut St, Los Angeles, CA 90001" +277043,AAA Batteries (4-pack),1,2.99,10/24/19 18:40,"388 Church St, San Francisco, CA 94016" +277044,USB-C Charging Cable,1,11.95,10/27/19 17:37,"949 Maple St, Seattle, WA 98101" +277045,34in Ultrawide Monitor,1,379.99,10/19/19 19:20,"508 7th St, Dallas, TX 75001" +277046,Lightning Charging Cable,2,14.95,10/13/19 18:08,"829 Maple St, Atlanta, GA 30301" +277047,Bose SoundSport Headphones,1,99.99,10/11/19 18:27,"545 Hill St, Los Angeles, CA 90001" +277048,Wired Headphones,1,11.99,10/12/19 08:33,"753 Highland St, Los Angeles, CA 90001" +277049,Apple Airpods Headphones,1,150,10/01/19 11:08,"740 Hill St, San Francisco, CA 94016" +277050,27in FHD Monitor,1,149.99,10/06/19 13:16,"112 Main St, Dallas, TX 75001" +277051,Lightning Charging Cable,1,14.95,10/10/19 18:30,"314 Johnson St, Atlanta, GA 30301" +277052,Flatscreen TV,1,300,10/07/19 15:33,"108 Lincoln St, Portland, OR 97035" +277053,Apple Airpods Headphones,1,150,10/31/19 12:39,"892 Willow St, Boston, MA 02215" +277054,27in 4K Gaming Monitor,1,389.99,10/15/19 19:52,"829 Lake St, Portland, ME 04101" +277055,Lightning Charging Cable,1,14.95,10/27/19 23:40,"854 Washington St, Los Angeles, CA 90001" +277056,AAA Batteries (4-pack),1,2.99,10/28/19 09:23,"135 4th St, Seattle, WA 98101" +277057,Macbook Pro Laptop,1,1700,10/13/19 11:27,"779 Highland St, San Francisco, CA 94016" +277058,Wired Headphones,1,11.99,10/17/19 12:02,"59 Church St, Los Angeles, CA 90001" +277059,LG Dryer,1,600.0,10/05/19 10:50,"6 Johnson St, San Francisco, CA 94016" +277060,Lightning Charging Cable,1,14.95,10/01/19 18:59,"389 Johnson St, Boston, MA 02215" +277061,Google Phone,1,600,10/10/19 22:47,"500 Lakeview St, San Francisco, CA 94016" +277062,AA Batteries (4-pack),1,3.84,10/17/19 16:17,"509 Wilson St, San Francisco, CA 94016" +277063,AA Batteries (4-pack),2,3.84,10/19/19 18:12,"442 North St, New York City, NY 10001" +277064,AA Batteries (4-pack),1,3.84,10/11/19 08:43,"142 Highland St, San Francisco, CA 94016" +277065,Apple Airpods Headphones,1,150,10/14/19 07:16,"633 Dogwood St, Dallas, TX 75001" +277066,Apple Airpods Headphones,1,150,10/02/19 14:25,"700 West St, Portland, OR 97035" +277067,Apple Airpods Headphones,1,150,10/22/19 13:07,"437 6th St, San Francisco, CA 94016" +277068,Lightning Charging Cable,1,14.95,10/29/19 22:29,"752 Sunset St, Seattle, WA 98101" +277069,AA Batteries (4-pack),1,3.84,10/17/19 21:32,"37 10th St, Los Angeles, CA 90001" +277070,Apple Airpods Headphones,1,150,10/29/19 21:32,"102 West St, San Francisco, CA 94016" +277071,Wired Headphones,1,11.99,10/05/19 21:01,"252 Main St, Portland, OR 97035" +277072,Lightning Charging Cable,1,14.95,10/15/19 19:45,"127 Lincoln St, San Francisco, CA 94016" +277073,Lightning Charging Cable,3,14.95,10/23/19 16:46,"635 Jackson St, Boston, MA 02215" +277074,Macbook Pro Laptop,1,1700,10/29/19 20:46,"844 12th St, Los Angeles, CA 90001" +277075,Lightning Charging Cable,1,14.95,10/07/19 07:51,"254 West St, San Francisco, CA 94016" +277076,Bose SoundSport Headphones,1,99.99,10/25/19 13:19,"43 Maple St, San Francisco, CA 94016" +277077,Wired Headphones,1,11.99,10/10/19 18:41,"974 Church St, Los Angeles, CA 90001" +277078,Macbook Pro Laptop,1,1700,10/30/19 11:59,"80 Highland St, Los Angeles, CA 90001" +277079,Wired Headphones,1,11.99,10/28/19 20:34,"316 Ridge St, San Francisco, CA 94016" +277080,ThinkPad Laptop,1,999.99,10/08/19 16:33,"921 Lakeview St, Austin, TX 73301" +277081,AAA Batteries (4-pack),1,2.99,10/20/19 15:29,"994 Hill St, Los Angeles, CA 90001" +277082,Wired Headphones,1,11.99,10/24/19 20:51,"314 5th St, New York City, NY 10001" +277083,27in FHD Monitor,1,149.99,10/30/19 12:03,"822 Chestnut St, San Francisco, CA 94016" +277084,USB-C Charging Cable,1,11.95,10/17/19 16:56,"938 Church St, Los Angeles, CA 90001" +277085,34in Ultrawide Monitor,1,379.99,10/31/19 13:42,"172 Highland St, Portland, OR 97035" +277086,Apple Airpods Headphones,1,150,10/31/19 17:32,"808 Jackson St, San Francisco, CA 94016" +277087,AAA Batteries (4-pack),1,2.99,10/17/19 16:03,"864 Lakeview St, San Francisco, CA 94016" +277088,Flatscreen TV,1,300,10/06/19 14:08,"941 Lake St, Los Angeles, CA 90001" +277089,Flatscreen TV,1,300,10/11/19 00:24,"77 Pine St, Dallas, TX 75001" +277090,Bose SoundSport Headphones,1,99.99,10/27/19 19:18,"977 Elm St, Dallas, TX 75001" +277091,Vareebadd Phone,1,400,10/21/19 11:17,"367 Main St, Los Angeles, CA 90001" +277092,27in 4K Gaming Monitor,1,389.99,10/10/19 15:40,"689 7th St, New York City, NY 10001" +277093,Lightning Charging Cable,1,14.95,10/10/19 12:57,"763 13th St, Boston, MA 02215" +277093,USB-C Charging Cable,1,11.95,10/10/19 12:57,"763 13th St, Boston, MA 02215" +277094,iPhone,1,700,10/07/19 12:37,"730 Madison St, Los Angeles, CA 90001" +277095,Lightning Charging Cable,2,14.95,10/28/19 17:45,"455 Sunset St, Boston, MA 02215" +277096,Flatscreen TV,1,300,10/23/19 10:32,"64 Cherry St, New York City, NY 10001" +277097,AA Batteries (4-pack),1,3.84,10/12/19 14:40,"893 8th St, San Francisco, CA 94016" +277098,Lightning Charging Cable,1,14.95,10/28/19 09:10,"379 Washington St, Los Angeles, CA 90001" +277099,Lightning Charging Cable,1,14.95,10/18/19 15:24,"133 Hill St, Atlanta, GA 30301" +277100,USB-C Charging Cable,1,11.95,10/11/19 16:12,"464 Johnson St, San Francisco, CA 94016" +277101,LG Dryer,1,600.0,10/04/19 13:04,"443 Maple St, San Francisco, CA 94016" +277102,Flatscreen TV,1,300,10/03/19 18:02,"537 Forest St, San Francisco, CA 94016" +277103,USB-C Charging Cable,1,11.95,10/17/19 18:42,"531 Lakeview St, San Francisco, CA 94016" +277104,ThinkPad Laptop,1,999.99,10/16/19 11:54,"481 Pine St, San Francisco, CA 94016" +277105,AA Batteries (4-pack),1,3.84,10/18/19 10:01,"43 Elm St, Dallas, TX 75001" +277106,Flatscreen TV,1,300,10/20/19 12:14,"738 Highland St, Seattle, WA 98101" +277107,AA Batteries (4-pack),2,3.84,10/30/19 10:45,"93 Lake St, Los Angeles, CA 90001" +277108,Lightning Charging Cable,2,14.95,10/13/19 14:48,"972 Spruce St, Dallas, TX 75001" +277109,ThinkPad Laptop,1,999.99,10/07/19 15:03,"207 Willow St, San Francisco, CA 94016" +277110,27in FHD Monitor,1,149.99,10/03/19 19:30,"324 Cedar St, Los Angeles, CA 90001" +277111,USB-C Charging Cable,1,11.95,10/08/19 20:54,"761 Pine St, Los Angeles, CA 90001" +277112,AA Batteries (4-pack),1,3.84,10/14/19 11:04,"33 Willow St, Seattle, WA 98101" +277113,USB-C Charging Cable,1,11.95,10/23/19 12:30,"89 Maple St, San Francisco, CA 94016" +277114,Lightning Charging Cable,1,14.95,10/19/19 12:15,"96 Jefferson St, Portland, OR 97035" +277115,USB-C Charging Cable,1,11.95,10/10/19 13:36,"197 Center St, Los Angeles, CA 90001" +277116,Lightning Charging Cable,1,14.95,10/18/19 12:24,"511 Wilson St, Portland, OR 97035" +277117,Wired Headphones,1,11.99,10/17/19 18:42,"512 12th St, San Francisco, CA 94016" +277117,27in 4K Gaming Monitor,1,389.99,10/17/19 18:42,"512 12th St, San Francisco, CA 94016" +277118,27in 4K Gaming Monitor,1,389.99,10/23/19 11:38,"808 Maple St, Dallas, TX 75001" +277119,AAA Batteries (4-pack),1,2.99,10/20/19 21:41,"898 Cherry St, San Francisco, CA 94016" +277120,Flatscreen TV,1,300,10/24/19 20:37,"876 2nd St, Boston, MA 02215" +277121,Lightning Charging Cable,1,14.95,10/09/19 00:42,"386 Main St, Seattle, WA 98101" +277122,Lightning Charging Cable,1,14.95,10/28/19 16:28,"681 North St, Los Angeles, CA 90001" +277123,USB-C Charging Cable,1,11.95,10/21/19 15:43,"795 Main St, Atlanta, GA 30301" +277124,Apple Airpods Headphones,1,150,10/11/19 20:02,"46 Wilson St, San Francisco, CA 94016" +277125,Apple Airpods Headphones,1,150,10/03/19 18:49,"802 Wilson St, San Francisco, CA 94016" +277126,27in 4K Gaming Monitor,1,389.99,10/18/19 22:44,"381 Meadow St, Los Angeles, CA 90001" +277127,USB-C Charging Cable,1,11.95,10/29/19 09:20,"625 6th St, Los Angeles, CA 90001" +277128,AAA Batteries (4-pack),3,2.99,10/22/19 18:49,"999 Cedar St, New York City, NY 10001" +277129,Bose SoundSport Headphones,1,99.99,10/06/19 10:51,"221 Center St, Los Angeles, CA 90001" +277130,USB-C Charging Cable,1,11.95,10/19/19 12:53,"945 Park St, San Francisco, CA 94016" +277131,27in 4K Gaming Monitor,1,389.99,10/08/19 16:15,"672 14th St, San Francisco, CA 94016" +277132,USB-C Charging Cable,1,11.95,10/22/19 16:59,"302 River St, Portland, ME 04101" +277133,AA Batteries (4-pack),1,3.84,10/27/19 01:43,"353 Hill St, Los Angeles, CA 90001" +277134,Lightning Charging Cable,1,14.95,10/16/19 13:45,"610 2nd St, San Francisco, CA 94016" +277135,iPhone,1,700,10/27/19 11:44,"232 Pine St, Austin, TX 73301" +277136,Wired Headphones,1,11.99,10/18/19 14:52,"996 1st St, Dallas, TX 75001" +277137,27in FHD Monitor,1,149.99,10/01/19 11:54,"645 10th St, Dallas, TX 75001" +277138,AA Batteries (4-pack),1,3.84,10/01/19 10:59,"794 Walnut St, Dallas, TX 75001" +277139,Bose SoundSport Headphones,1,99.99,10/24/19 19:51,"54 Lake St, Los Angeles, CA 90001" +277140,USB-C Charging Cable,1,11.95,10/07/19 06:43,"137 6th St, Portland, OR 97035" +277141,iPhone,1,700,10/21/19 21:29,"917 Lake St, Portland, OR 97035" +277141,Apple Airpods Headphones,1,150,10/21/19 21:29,"917 Lake St, Portland, OR 97035" +277142,Lightning Charging Cable,1,14.95,10/29/19 23:12,"101 Center St, New York City, NY 10001" +277143,Macbook Pro Laptop,1,1700,10/22/19 20:05,"412 7th St, Atlanta, GA 30301" +277144,27in FHD Monitor,1,149.99,10/11/19 16:04,"403 Willow St, Los Angeles, CA 90001" +277145,27in FHD Monitor,1,149.99,10/04/19 20:09,"439 Cherry St, Los Angeles, CA 90001" +277146,Flatscreen TV,1,300,10/17/19 19:59,"969 Center St, Dallas, TX 75001" +277147,Flatscreen TV,1,300,10/29/19 13:42,"586 Washington St, San Francisco, CA 94016" +277148,Google Phone,1,600,10/09/19 22:01,"636 Dogwood St, Los Angeles, CA 90001" +277149,AAA Batteries (4-pack),1,2.99,10/19/19 16:26,"975 Hill St, Los Angeles, CA 90001" +277150,AA Batteries (4-pack),1,3.84,10/03/19 00:05,"474 Park St, Seattle, WA 98101" +277151,Lightning Charging Cable,1,14.95,10/19/19 18:26,"12 Maple St, Atlanta, GA 30301" +277152,USB-C Charging Cable,1,11.95,10/30/19 17:54,"595 Cherry St, San Francisco, CA 94016" +277153,AAA Batteries (4-pack),3,2.99,10/07/19 15:35,"502 Spruce St, New York City, NY 10001" +277154,27in 4K Gaming Monitor,1,389.99,10/23/19 16:51,"495 Washington St, Atlanta, GA 30301" +277155,ThinkPad Laptop,1,999.99,10/09/19 20:41,"255 Highland St, San Francisco, CA 94016" +277156,Lightning Charging Cable,1,14.95,10/14/19 07:52,"87 4th St, Seattle, WA 98101" +277157,Wired Headphones,1,11.99,10/17/19 14:54,"807 11th St, New York City, NY 10001" +277158,Google Phone,1,600,10/31/19 13:51,"190 Willow St, Austin, TX 73301" +277159,Lightning Charging Cable,1,14.95,10/05/19 19:10,"39 Lincoln St, New York City, NY 10001" +277160,AA Batteries (4-pack),1,3.84,10/20/19 07:52,"232 Adams St, Dallas, TX 75001" +277161,Macbook Pro Laptop,1,1700,10/03/19 10:23,"229 Maple St, New York City, NY 10001" +277162,USB-C Charging Cable,1,11.95,10/05/19 19:29,"957 Highland St, Los Angeles, CA 90001" +277163,iPhone,1,700,10/07/19 13:36,"768 Chestnut St, Los Angeles, CA 90001" +277164,USB-C Charging Cable,1,11.95,10/26/19 06:17,"170 9th St, Austin, TX 73301" +277165,Wired Headphones,1,11.99,10/14/19 19:15,"430 North St, Boston, MA 02215" +277166,AAA Batteries (4-pack),4,2.99,10/15/19 14:33,"80 Willow St, Los Angeles, CA 90001" +277167,Wired Headphones,1,11.99,10/22/19 11:20,"745 Park St, Boston, MA 02215" +277168,iPhone,1,700,10/11/19 14:48,"139 Wilson St, Boston, MA 02215" +277169,AAA Batteries (4-pack),3,2.99,10/12/19 15:44,"30 8th St, New York City, NY 10001" +277170,Wired Headphones,1,11.99,10/01/19 15:07,"511 Lake St, Atlanta, GA 30301" +277171,Lightning Charging Cable,1,14.95,10/04/19 12:11,"176 Meadow St, Portland, ME 04101" +277172,Lightning Charging Cable,2,14.95,10/28/19 14:01,"49 8th St, Portland, OR 97035" +277173,Bose SoundSport Headphones,1,99.99,10/05/19 22:56,"774 6th St, Portland, OR 97035" +277174,iPhone,1,700,10/26/19 00:34,"888 Cedar St, San Francisco, CA 94016" +277175,USB-C Charging Cable,2,11.95,10/16/19 17:53,"262 Johnson St, Atlanta, GA 30301" +277176,AAA Batteries (4-pack),1,2.99,10/19/19 20:24,"413 13th St, Austin, TX 73301" +277177,20in Monitor,1,109.99,10/01/19 19:38,"672 10th St, Los Angeles, CA 90001" +277178,Wired Headphones,1,11.99,10/06/19 11:17,"788 River St, San Francisco, CA 94016" +277179,USB-C Charging Cable,1,11.95,10/28/19 17:26,"579 Chestnut St, San Francisco, CA 94016" +277180,Wired Headphones,1,11.99,10/02/19 19:17,"383 13th St, Seattle, WA 98101" +277181,Flatscreen TV,1,300,10/03/19 09:05,"493 7th St, Dallas, TX 75001" +277182,USB-C Charging Cable,1,11.95,10/19/19 16:06,"17 West St, Atlanta, GA 30301" +277183,AAA Batteries (4-pack),2,2.99,10/19/19 21:08,"69 Lincoln St, Dallas, TX 75001" +277184,USB-C Charging Cable,1,11.95,10/01/19 18:26,"70 9th St, Portland, OR 97035" +277185,AA Batteries (4-pack),3,3.84,10/13/19 19:36,"75 4th St, Los Angeles, CA 90001" +277186,34in Ultrawide Monitor,1,379.99,10/18/19 23:21,"555 10th St, San Francisco, CA 94016" +277187,Bose SoundSport Headphones,1,99.99,10/15/19 10:43,"192 Pine St, Portland, OR 97035" +277188,Apple Airpods Headphones,1,150,10/02/19 14:32,"624 Johnson St, Los Angeles, CA 90001" +277189,Macbook Pro Laptop,1,1700,10/20/19 12:06,"798 Lake St, Atlanta, GA 30301" +277190,AAA Batteries (4-pack),1,2.99,10/04/19 10:18,"813 Elm St, New York City, NY 10001" +277191,AAA Batteries (4-pack),2,2.99,10/07/19 12:02,"323 6th St, New York City, NY 10001" +277192,AAA Batteries (4-pack),1,2.99,10/17/19 15:38,"508 Jefferson St, San Francisco, CA 94016" +277193,AA Batteries (4-pack),1,3.84,10/04/19 01:13,"347 Ridge St, Austin, TX 73301" +277194,AA Batteries (4-pack),2,3.84,10/10/19 11:01,"740 Washington St, San Francisco, CA 94016" +277195,USB-C Charging Cable,1,11.95,10/31/19 20:37,"862 Hickory St, Austin, TX 73301" +277196,iPhone,1,700,10/09/19 15:05,"721 Lakeview St, Austin, TX 73301" +277197,Bose SoundSport Headphones,1,99.99,10/28/19 15:39,"376 Lincoln St, Los Angeles, CA 90001" +277198,AAA Batteries (4-pack),2,2.99,10/18/19 23:16,"813 Meadow St, Los Angeles, CA 90001" +277199,Wired Headphones,1,11.99,10/20/19 08:13,"170 5th St, Dallas, TX 75001" +277200,Apple Airpods Headphones,1,150,10/03/19 09:05,"441 North St, Portland, OR 97035" +277201,ThinkPad Laptop,1,999.99,10/17/19 18:49,"472 8th St, Dallas, TX 75001" +277202,AAA Batteries (4-pack),1,2.99,10/30/19 11:44,"89 2nd St, Atlanta, GA 30301" +277203,AAA Batteries (4-pack),1,2.99,10/09/19 07:21,"209 Adams St, Dallas, TX 75001" +277204,Bose SoundSport Headphones,1,99.99,10/17/19 15:03,"116 River St, San Francisco, CA 94016" +277205,ThinkPad Laptop,1,999.99,10/28/19 21:51,"224 10th St, Dallas, TX 75001" +277206,AA Batteries (4-pack),1,3.84,10/04/19 22:02,"521 14th St, San Francisco, CA 94016" +277207,Apple Airpods Headphones,1,150,10/17/19 14:06,"994 Elm St, San Francisco, CA 94016" +277208,AAA Batteries (4-pack),1,2.99,10/22/19 20:51,"47 10th St, Atlanta, GA 30301" +277209,USB-C Charging Cable,1,11.95,10/01/19 08:32,"657 South St, Seattle, WA 98101" +277210,USB-C Charging Cable,1,11.95,10/01/19 13:05,"398 River St, San Francisco, CA 94016" +277211,Google Phone,1,600,10/12/19 19:50,"105 2nd St, New York City, NY 10001" +277211,USB-C Charging Cable,1,11.95,10/12/19 19:50,"105 2nd St, New York City, NY 10001" +277212,Apple Airpods Headphones,1,150,10/01/19 15:37,"903 Madison St, San Francisco, CA 94016" +277213,Apple Airpods Headphones,1,150,10/02/19 01:27,"370 South St, Dallas, TX 75001" +277214,USB-C Charging Cable,2,11.95,10/08/19 09:46,"799 Johnson St, Seattle, WA 98101" +277215,Wired Headphones,1,11.99,10/23/19 19:58,"755 10th St, New York City, NY 10001" +277216,Wired Headphones,1,11.99,10/18/19 10:27,"107 Washington St, Dallas, TX 75001" +277217,Bose SoundSport Headphones,1,99.99,10/15/19 11:59,"798 Hickory St, New York City, NY 10001" +277218,LG Dryer,1,600.0,10/20/19 15:54,"786 Church St, Seattle, WA 98101" +277219,Wired Headphones,1,11.99,10/10/19 12:35,"366 Main St, Los Angeles, CA 90001" +277220,Bose SoundSport Headphones,1,99.99,10/08/19 16:43,"188 Church St, Dallas, TX 75001" +277221,Bose SoundSport Headphones,1,99.99,10/22/19 15:47,"579 Lakeview St, Boston, MA 02215" +277222,Apple Airpods Headphones,1,150,10/09/19 17:03,"76 8th St, New York City, NY 10001" +277223,AA Batteries (4-pack),1,3.84,10/19/19 20:37,"175 Madison St, Boston, MA 02215" +277224,AAA Batteries (4-pack),3,2.99,10/15/19 23:23,"758 Hickory St, New York City, NY 10001" +277225,Flatscreen TV,1,300,10/25/19 23:57,"477 11th St, New York City, NY 10001" +277226,AAA Batteries (4-pack),5,2.99,10/07/19 19:22,"366 Adams St, San Francisco, CA 94016" +277227,Lightning Charging Cable,1,14.95,10/05/19 21:06,"143 West St, Dallas, TX 75001" +277228,Apple Airpods Headphones,1,150,10/19/19 13:30,"653 8th St, Atlanta, GA 30301" +277229,Apple Airpods Headphones,1,150,10/31/19 13:07,"725 Ridge St, Austin, TX 73301" +277230,AAA Batteries (4-pack),1,2.99,10/17/19 15:29,"197 4th St, San Francisco, CA 94016" +277231,iPhone,1,700,10/14/19 23:46,"566 Forest St, San Francisco, CA 94016" +277232,34in Ultrawide Monitor,1,379.99,10/14/19 23:06,"206 Hickory St, San Francisco, CA 94016" +277233,Lightning Charging Cable,1,14.95,10/03/19 14:19,"650 Sunset St, Los Angeles, CA 90001" +277234,AAA Batteries (4-pack),3,2.99,10/18/19 13:21,"386 Johnson St, Los Angeles, CA 90001" +,,,,, +277235,USB-C Charging Cable,1,11.95,10/16/19 12:54,"621 6th St, Portland, OR 97035" +277236,Wired Headphones,1,11.99,10/22/19 10:49,"223 Johnson St, Los Angeles, CA 90001" +277237,Apple Airpods Headphones,1,150,10/31/19 10:24,"210 Elm St, San Francisco, CA 94016" +277238,AA Batteries (4-pack),1,3.84,10/07/19 07:03,"901 10th St, San Francisco, CA 94016" +277239,Apple Airpods Headphones,1,150,10/18/19 12:17,"601 North St, Los Angeles, CA 90001" +277240,USB-C Charging Cable,1,11.95,10/23/19 20:17,"272 Center St, Boston, MA 02215" +277241,USB-C Charging Cable,1,11.95,10/03/19 19:05,"277 West St, Dallas, TX 75001" +277242,AA Batteries (4-pack),1,3.84,10/16/19 22:05,"157 Johnson St, Seattle, WA 98101" +277243,Wired Headphones,2,11.99,10/13/19 16:11,"879 Chestnut St, San Francisco, CA 94016" +277244,Bose SoundSport Headphones,1,99.99,10/06/19 11:12,"821 Center St, San Francisco, CA 94016" +277245,AA Batteries (4-pack),1,3.84,10/26/19 20:10,"961 Maple St, Boston, MA 02215" +277246,Wired Headphones,1,11.99,10/18/19 22:21,"774 Lakeview St, New York City, NY 10001" +277247,Wired Headphones,1,11.99,10/18/19 10:33,"226 Church St, San Francisco, CA 94016" +277248,Lightning Charging Cable,1,14.95,10/11/19 21:28,"348 Forest St, San Francisco, CA 94016" +277249,Wired Headphones,1,11.99,10/27/19 17:44,"633 Elm St, Portland, OR 97035" +277250,Wired Headphones,2,11.99,10/07/19 16:01,"749 Maple St, Dallas, TX 75001" +277251,Google Phone,1,600,10/15/19 23:06,"776 Church St, Portland, OR 97035" +277252,AAA Batteries (4-pack),2,2.99,10/14/19 12:23,"146 North St, San Francisco, CA 94016" +277253,Bose SoundSport Headphones,1,99.99,10/09/19 17:39,"259 8th St, New York City, NY 10001" +277254,Lightning Charging Cable,1,14.95,10/23/19 20:53,"678 5th St, Austin, TX 73301" +277255,Bose SoundSport Headphones,1,99.99,10/17/19 11:19,"308 Willow St, New York City, NY 10001" +277256,AA Batteries (4-pack),1,3.84,10/29/19 21:09,"503 Main St, San Francisco, CA 94016" +277257,AAA Batteries (4-pack),1,2.99,10/21/19 11:25,"611 Wilson St, San Francisco, CA 94016" +277258,AAA Batteries (4-pack),1,2.99,10/19/19 15:08,"889 Highland St, New York City, NY 10001" +277259,Bose SoundSport Headphones,1,99.99,10/22/19 20:00,"606 Hickory St, Seattle, WA 98101" +277260,Lightning Charging Cable,1,14.95,10/21/19 23:36,"49 Johnson St, Portland, ME 04101" +277261,AA Batteries (4-pack),1,3.84,10/19/19 00:11,"641 14th St, Boston, MA 02215" +277262,USB-C Charging Cable,1,11.95,10/30/19 06:09,"868 Hill St, Boston, MA 02215" +277263,Wired Headphones,1,11.99,10/16/19 14:41,"621 2nd St, Boston, MA 02215" +277264,ThinkPad Laptop,1,999.99,10/29/19 15:43,"149 Highland St, Los Angeles, CA 90001" +277265,AA Batteries (4-pack),2,3.84,10/27/19 13:26,"639 Chestnut St, San Francisco, CA 94016" +277266,Lightning Charging Cable,1,14.95,10/26/19 18:44,"839 2nd St, Seattle, WA 98101" +277267,Wired Headphones,1,11.99,10/12/19 21:56,"390 Wilson St, New York City, NY 10001" +277268,USB-C Charging Cable,1,11.95,10/13/19 15:08,"722 12th St, Portland, ME 04101" +277269,AAA Batteries (4-pack),3,2.99,10/25/19 11:03,"40 Wilson St, New York City, NY 10001" +277270,USB-C Charging Cable,1,11.95,10/01/19 10:38,"672 Meadow St, Atlanta, GA 30301" +277271,USB-C Charging Cable,1,11.95,10/13/19 20:54,"32 Meadow St, New York City, NY 10001" +277272,USB-C Charging Cable,1,11.95,10/10/19 10:11,"46 Washington St, San Francisco, CA 94016" +277273,Flatscreen TV,1,300,10/31/19 21:16,"365 Pine St, Portland, OR 97035" +277274,USB-C Charging Cable,1,11.95,10/05/19 15:01,"548 Spruce St, Boston, MA 02215" +277275,USB-C Charging Cable,1,11.95,10/26/19 16:32,"198 Johnson St, Dallas, TX 75001" +277276,Wired Headphones,2,11.99,10/22/19 11:57,"961 Dogwood St, Portland, OR 97035" +277277,Macbook Pro Laptop,1,1700,10/18/19 21:36,"551 Cedar St, Atlanta, GA 30301" +277278,Lightning Charging Cable,1,14.95,10/25/19 20:20,"491 Lincoln St, San Francisco, CA 94016" +277279,Flatscreen TV,1,300,10/29/19 12:04,"121 Main St, New York City, NY 10001" +277280,AAA Batteries (4-pack),1,2.99,10/06/19 19:47,"233 Main St, New York City, NY 10001" +277281,iPhone,1,700,10/23/19 12:47,"838 West St, San Francisco, CA 94016" +277282,Lightning Charging Cable,1,14.95,10/26/19 22:00,"124 Wilson St, Atlanta, GA 30301" +277283,AA Batteries (4-pack),1,3.84,10/28/19 15:52,"685 South St, Atlanta, GA 30301" +277284,Bose SoundSport Headphones,1,99.99,10/30/19 09:35,"512 Jefferson St, Portland, OR 97035" +277285,USB-C Charging Cable,1,11.95,10/01/19 10:48,"665 7th St, Dallas, TX 75001" +277286,AA Batteries (4-pack),2,3.84,10/19/19 10:46,"437 Hill St, New York City, NY 10001" +277287,AA Batteries (4-pack),1,3.84,10/02/19 01:00,"442 Dogwood St, New York City, NY 10001" +277288,27in FHD Monitor,1,149.99,10/26/19 17:12,"871 Cedar St, Boston, MA 02215" +277289,iPhone,1,700,10/17/19 22:15,"283 Maple St, Dallas, TX 75001" +277289,Lightning Charging Cable,1,14.95,10/17/19 22:15,"283 Maple St, Dallas, TX 75001" +277290,Bose SoundSport Headphones,1,99.99,10/04/19 08:37,"911 Hill St, Los Angeles, CA 90001" +277291,AA Batteries (4-pack),1,3.84,10/02/19 11:15,"262 Wilson St, Boston, MA 02215" +277292,Wired Headphones,1,11.99,10/05/19 13:17,"679 Forest St, Boston, MA 02215" +277293,Bose SoundSport Headphones,1,99.99,10/09/19 19:31,"678 Cedar St, Atlanta, GA 30301" +277294,Lightning Charging Cable,1,14.95,10/09/19 09:23,"7 Center St, Dallas, TX 75001" +277295,Apple Airpods Headphones,1,150,10/07/19 08:47,"898 6th St, Boston, MA 02215" +277296,Lightning Charging Cable,1,14.95,10/31/19 09:56,"645 6th St, Dallas, TX 75001" +277297,Bose SoundSport Headphones,1,99.99,10/16/19 10:09,"725 Pine St, San Francisco, CA 94016" +277298,Wired Headphones,1,11.99,10/13/19 00:18,"564 Lincoln St, Portland, OR 97035" +277299,Wired Headphones,1,11.99,10/19/19 21:22,"64 Pine St, San Francisco, CA 94016" +277300,Lightning Charging Cable,1,14.95,10/28/19 17:51,"275 Pine St, San Francisco, CA 94016" +277301,Wired Headphones,1,11.99,11/01/19 00:16,"828 Johnson St, Boston, MA 02215" +277302,27in FHD Monitor,1,149.99,10/07/19 19:10,"269 8th St, Seattle, WA 98101" +277303,34in Ultrawide Monitor,1,379.99,10/19/19 10:24,"811 13th St, San Francisco, CA 94016" +277304,AA Batteries (4-pack),3,3.84,10/24/19 12:50,"951 7th St, New York City, NY 10001" +277305,27in FHD Monitor,1,149.99,10/28/19 19:15,"334 South St, Seattle, WA 98101" +277306,USB-C Charging Cable,1,11.95,10/28/19 13:36,"13 Church St, New York City, NY 10001" +277307,AA Batteries (4-pack),1,3.84,10/14/19 14:44,"220 Dogwood St, Los Angeles, CA 90001" +277308,27in FHD Monitor,1,149.99,10/19/19 21:00,"390 Lake St, Boston, MA 02215" +277309,USB-C Charging Cable,1,11.95,10/04/19 11:05,"813 Wilson St, Austin, TX 73301" +277310,AAA Batteries (4-pack),1,2.99,10/21/19 23:36,"265 Lakeview St, Los Angeles, CA 90001" +277311,Apple Airpods Headphones,1,150,10/05/19 11:17,"22 Washington St, Seattle, WA 98101" +277312,Lightning Charging Cable,1,14.95,10/09/19 13:33,"688 Park St, Seattle, WA 98101" +277313,Macbook Pro Laptop,1,1700,10/09/19 14:15,"860 5th St, Boston, MA 02215" +277314,20in Monitor,1,109.99,10/13/19 21:48,"580 10th St, San Francisco, CA 94016" +277315,AA Batteries (4-pack),2,3.84,10/11/19 08:06,"884 11th St, Los Angeles, CA 90001" +277316,AA Batteries (4-pack),3,3.84,10/17/19 12:07,"517 Ridge St, Atlanta, GA 30301" +277317,Wired Headphones,1,11.99,10/23/19 08:31,"290 5th St, Dallas, TX 75001" +277318,Apple Airpods Headphones,1,150,10/23/19 12:13,"30 Jefferson St, New York City, NY 10001" +277319,34in Ultrawide Monitor,1,379.99,10/31/19 11:54,"606 Willow St, San Francisco, CA 94016" +277320,Apple Airpods Headphones,1,150,10/25/19 12:07,"870 Ridge St, Los Angeles, CA 90001" +277321,AAA Batteries (4-pack),1,2.99,10/26/19 17:53,"792 Chestnut St, Seattle, WA 98101" +277322,Wired Headphones,1,11.99,10/06/19 17:46,"541 6th St, New York City, NY 10001" +277323,Lightning Charging Cable,1,14.95,10/14/19 13:41,"587 10th St, San Francisco, CA 94016" +277324,AAA Batteries (4-pack),1,2.99,10/07/19 09:50,"220 Maple St, Los Angeles, CA 90001" +277325,Wired Headphones,2,11.99,10/08/19 13:53,"493 Pine St, New York City, NY 10001" +277326,Bose SoundSport Headphones,1,99.99,10/31/19 09:05,"359 Wilson St, New York City, NY 10001" +277327,AAA Batteries (4-pack),1,2.99,10/08/19 23:23,"417 Walnut St, Seattle, WA 98101" +277328,AA Batteries (4-pack),1,3.84,10/05/19 13:12,"978 Cherry St, San Francisco, CA 94016" +277329,AAA Batteries (4-pack),6,2.99,10/09/19 12:27,"808 Hickory St, Los Angeles, CA 90001" +277330,Wired Headphones,1,11.99,10/10/19 16:30,"709 Forest St, Los Angeles, CA 90001" +277331,Lightning Charging Cable,1,14.95,10/17/19 12:59,"894 Main St, Boston, MA 02215" +277332,Bose SoundSport Headphones,1,99.99,10/04/19 17:37,"565 9th St, Boston, MA 02215" +277333,Google Phone,1,600,10/20/19 10:27,"354 Johnson St, New York City, NY 10001" +277334,Apple Airpods Headphones,1,150,10/23/19 18:33,"69 1st St, Los Angeles, CA 90001" +277335,Apple Airpods Headphones,1,150,10/14/19 11:34,"598 South St, Los Angeles, CA 90001" +277336,USB-C Charging Cable,1,11.95,10/11/19 14:38,"960 Main St, New York City, NY 10001" +277337,Vareebadd Phone,1,400,10/30/19 08:33,"304 Cedar St, Dallas, TX 75001" +277338,Lightning Charging Cable,1,14.95,10/13/19 15:12,"699 Forest St, Austin, TX 73301" +277339,AA Batteries (4-pack),1,3.84,10/04/19 10:30,"103 Spruce St, Boston, MA 02215" +277340,USB-C Charging Cable,1,11.95,10/27/19 19:20,"915 Wilson St, San Francisco, CA 94016" +277341,Apple Airpods Headphones,1,150,10/24/19 14:18,"824 Cherry St, Seattle, WA 98101" +277342,Bose SoundSport Headphones,1,99.99,10/12/19 20:59,"638 1st St, New York City, NY 10001" +277343,Lightning Charging Cable,1,14.95,10/24/19 18:47,"952 Meadow St, Seattle, WA 98101" +277344,Wired Headphones,1,11.99,10/04/19 16:05,"72 Center St, Portland, ME 04101" +277345,USB-C Charging Cable,1,11.95,10/29/19 17:38,"499 Forest St, Atlanta, GA 30301" +277346,27in FHD Monitor,1,149.99,10/24/19 07:34,"107 Church St, Boston, MA 02215" +277347,27in FHD Monitor,1,149.99,10/12/19 19:30,"692 8th St, Los Angeles, CA 90001" +277348,USB-C Charging Cable,1,11.95,10/02/19 21:52,"850 8th St, San Francisco, CA 94016" +277349,USB-C Charging Cable,1,11.95,10/28/19 14:43,"360 12th St, Dallas, TX 75001" +277350,AA Batteries (4-pack),2,3.84,10/14/19 13:47,"392 Cherry St, Atlanta, GA 30301" +277351,Wired Headphones,2,11.99,10/09/19 20:13,"849 River St, Atlanta, GA 30301" +277352,USB-C Charging Cable,1,11.95,10/10/19 16:26,"872 13th St, Los Angeles, CA 90001" +277353,Wired Headphones,1,11.99,10/05/19 12:55,"279 Hickory St, Los Angeles, CA 90001" +277354,Wired Headphones,1,11.99,10/31/19 18:40,"205 11th St, Los Angeles, CA 90001" +277355,27in FHD Monitor,1,149.99,10/06/19 08:23,"363 Maple St, Boston, MA 02215" +277356,AA Batteries (4-pack),1,3.84,10/27/19 06:23,"166 11th St, San Francisco, CA 94016" +277357,Apple Airpods Headphones,1,150,10/09/19 21:49,"722 Sunset St, New York City, NY 10001" +277358,USB-C Charging Cable,1,11.95,10/30/19 12:55,"72 Dogwood St, Portland, OR 97035" +277359,27in 4K Gaming Monitor,1,389.99,10/15/19 17:22,"684 5th St, New York City, NY 10001" +277360,AAA Batteries (4-pack),2,2.99,10/06/19 20:22,"282 Madison St, San Francisco, CA 94016" +277361,Bose SoundSport Headphones,1,99.99,10/05/19 19:39,"861 Ridge St, San Francisco, CA 94016" +277362,AA Batteries (4-pack),1,3.84,10/26/19 21:45,"845 Lake St, Boston, MA 02215" +277363,Wired Headphones,1,11.99,10/20/19 18:08,"833 Jackson St, New York City, NY 10001" +277364,USB-C Charging Cable,1,11.95,10/15/19 10:19,"425 Ridge St, Atlanta, GA 30301" +277365,Google Phone,1,600,10/20/19 17:11,"692 South St, Atlanta, GA 30301" +277366,AAA Batteries (4-pack),2,2.99,10/30/19 06:09,"464 6th St, Boston, MA 02215" +277367,Macbook Pro Laptop,1,1700,10/03/19 11:52,"249 Main St, San Francisco, CA 94016" +277368,Wired Headphones,1,11.99,10/05/19 21:16,"252 Chestnut St, San Francisco, CA 94016" +277369,ThinkPad Laptop,1,999.99,10/24/19 18:35,"261 10th St, Dallas, TX 75001" +277370,AA Batteries (4-pack),1,3.84,10/21/19 09:28,"900 1st St, San Francisco, CA 94016" +277371,USB-C Charging Cable,1,11.95,10/02/19 13:39,"692 Maple St, New York City, NY 10001" +277372,Bose SoundSport Headphones,1,99.99,10/16/19 07:54,"457 Lake St, Boston, MA 02215" +277373,ThinkPad Laptop,1,999.99,10/13/19 17:26,"955 South St, New York City, NY 10001" +277374,Bose SoundSport Headphones,1,99.99,10/28/19 10:44,"852 Lake St, San Francisco, CA 94016" +277375,Apple Airpods Headphones,1,150,10/16/19 19:13,"469 6th St, Portland, OR 97035" +277376,Bose SoundSport Headphones,1,99.99,10/13/19 19:11,"95 11th St, San Francisco, CA 94016" +277377,USB-C Charging Cable,1,11.95,10/08/19 09:29,"104 Park St, New York City, NY 10001" +277378,USB-C Charging Cable,1,11.95,10/22/19 17:10,"516 1st St, New York City, NY 10001" +277379,USB-C Charging Cable,1,11.95,10/08/19 20:21,"648 9th St, Portland, OR 97035" +277380,Wired Headphones,2,11.99,10/09/19 18:03,"244 Forest St, Boston, MA 02215" +277381,AAA Batteries (4-pack),4,2.99,10/28/19 15:39,"312 Forest St, Seattle, WA 98101" +277382,Apple Airpods Headphones,1,150,10/04/19 20:24,"695 Sunset St, San Francisco, CA 94016" +277383,Bose SoundSport Headphones,1,99.99,10/14/19 15:21,"719 Washington St, Portland, ME 04101" +277384,Wired Headphones,1,11.99,10/15/19 13:11,"84 Lake St, Portland, ME 04101" +277385,Lightning Charging Cable,1,14.95,10/20/19 11:10,"127 11th St, Los Angeles, CA 90001" +277386,Vareebadd Phone,1,400,10/07/19 19:39,"406 Madison St, Atlanta, GA 30301" +277386,USB-C Charging Cable,1,11.95,10/07/19 19:39,"406 Madison St, Atlanta, GA 30301" +277387,Lightning Charging Cable,1,14.95,10/28/19 09:38,"573 2nd St, Portland, OR 97035" +277388,AAA Batteries (4-pack),1,2.99,10/17/19 16:12,"711 Lake St, Los Angeles, CA 90001" +277389,20in Monitor,1,109.99,10/13/19 22:16,"861 Center St, Atlanta, GA 30301" +277390,Wired Headphones,1,11.99,10/19/19 17:34,"817 13th St, Los Angeles, CA 90001" +277391,AAA Batteries (4-pack),1,2.99,10/29/19 19:30,"855 Park St, New York City, NY 10001" +277392,Wired Headphones,1,11.99,10/14/19 14:39,"255 Washington St, Los Angeles, CA 90001" +277393,Macbook Pro Laptop,1,1700,10/13/19 17:42,"500 4th St, San Francisco, CA 94016" +277394,Wired Headphones,1,11.99,10/13/19 16:47,"464 4th St, Boston, MA 02215" +277395,Vareebadd Phone,1,400,10/26/19 09:01,"701 Dogwood St, Austin, TX 73301" +277396,Apple Airpods Headphones,1,150,10/29/19 12:44,"773 7th St, Boston, MA 02215" +277397,27in 4K Gaming Monitor,1,389.99,10/26/19 22:58,"885 Cedar St, Seattle, WA 98101" +277398,27in 4K Gaming Monitor,1,389.99,10/06/19 08:45,"759 Meadow St, San Francisco, CA 94016" +277399,AAA Batteries (4-pack),1,2.99,10/10/19 11:00,"409 2nd St, San Francisco, CA 94016" +277400,USB-C Charging Cable,1,11.95,10/10/19 18:41,"388 Lake St, San Francisco, CA 94016" +277401,AA Batteries (4-pack),1,3.84,10/08/19 23:24,"259 Johnson St, Boston, MA 02215" +277402,AAA Batteries (4-pack),1,2.99,10/18/19 17:03,"817 Sunset St, New York City, NY 10001" +277403,27in FHD Monitor,1,149.99,10/08/19 20:45,"234 12th St, San Francisco, CA 94016" +277404,AAA Batteries (4-pack),2,2.99,10/12/19 23:23,"34 Center St, New York City, NY 10001" +277405,AA Batteries (4-pack),1,3.84,10/11/19 16:48,"257 Church St, San Francisco, CA 94016" +277406,USB-C Charging Cable,1,11.95,10/13/19 00:32,"810 Maple St, Portland, OR 97035" +277407,Wired Headphones,1,11.99,10/24/19 23:32,"757 12th St, New York City, NY 10001" +277408,AAA Batteries (4-pack),1,2.99,10/22/19 21:27,"557 Spruce St, Los Angeles, CA 90001" +277409,AAA Batteries (4-pack),1,2.99,10/08/19 08:54,"144 Center St, San Francisco, CA 94016" +277410,Lightning Charging Cable,1,14.95,10/31/19 09:10,"948 Dogwood St, New York City, NY 10001" +277411,Google Phone,1,600,10/05/19 17:56,"256 Chestnut St, Los Angeles, CA 90001" +277412,Google Phone,1,600,10/14/19 19:45,"200 Hill St, Los Angeles, CA 90001" +277413,Apple Airpods Headphones,1,150,10/25/19 11:54,"214 Dogwood St, Atlanta, GA 30301" +277414,AA Batteries (4-pack),1,3.84,10/31/19 16:29,"311 4th St, Austin, TX 73301" +277415,AA Batteries (4-pack),1,3.84,10/27/19 11:02,"973 Chestnut St, San Francisco, CA 94016" +277416,AA Batteries (4-pack),2,3.84,11/01/19 01:26,"568 Washington St, San Francisco, CA 94016" +277417,iPhone,1,700,10/20/19 07:18,"193 Jefferson St, Los Angeles, CA 90001" +277418,AAA Batteries (4-pack),1,2.99,10/10/19 10:31,"471 North St, Boston, MA 02215" +277419,34in Ultrawide Monitor,1,379.99,10/05/19 03:56,"377 Adams St, Dallas, TX 75001" +277420,AA Batteries (4-pack),3,3.84,10/25/19 20:23,"303 Cedar St, Dallas, TX 75001" +277421,Wired Headphones,1,11.99,10/21/19 20:16,"721 5th St, Seattle, WA 98101" +277422,iPhone,1,700,10/03/19 13:37,"333 8th St, Austin, TX 73301" +277422,Apple Airpods Headphones,1,150,10/03/19 13:37,"333 8th St, Austin, TX 73301" +277423,Macbook Pro Laptop,1,1700,10/22/19 10:53,"424 12th St, San Francisco, CA 94016" +277424,Apple Airpods Headphones,1,150,10/14/19 16:42,"70 Church St, San Francisco, CA 94016" +277425,AAA Batteries (4-pack),1,2.99,10/07/19 10:14,"5 13th St, San Francisco, CA 94016" +277426,USB-C Charging Cable,1,11.95,10/13/19 14:52,"364 7th St, Seattle, WA 98101" +277427,AA Batteries (4-pack),1,3.84,10/25/19 13:54,"400 12th St, Los Angeles, CA 90001" +277427,27in FHD Monitor,1,149.99,10/25/19 13:54,"400 12th St, Los Angeles, CA 90001" +277428,Flatscreen TV,1,300,10/21/19 17:23,"295 Jefferson St, San Francisco, CA 94016" +277429,Wired Headphones,1,11.99,10/14/19 18:35,"569 Elm St, Boston, MA 02215" +277430,ThinkPad Laptop,1,999.99,10/18/19 15:28,"646 Lakeview St, San Francisco, CA 94016" +277431,Lightning Charging Cable,2,14.95,10/13/19 21:57,"163 12th St, San Francisco, CA 94016" +277432,ThinkPad Laptop,1,999.99,10/21/19 17:22,"474 Spruce St, San Francisco, CA 94016" +277433,AAA Batteries (4-pack),3,2.99,10/05/19 11:23,"612 8th St, San Francisco, CA 94016" +277434,USB-C Charging Cable,1,11.95,10/07/19 22:54,"836 South St, San Francisco, CA 94016" +277435,20in Monitor,1,109.99,10/26/19 13:49,"820 Hill St, Portland, OR 97035" +277436,USB-C Charging Cable,1,11.95,10/18/19 14:08,"353 Hickory St, Boston, MA 02215" +277437,20in Monitor,1,109.99,10/28/19 20:46,"742 Elm St, San Francisco, CA 94016" +277438,Bose SoundSport Headphones,1,99.99,10/03/19 18:37,"913 North St, Los Angeles, CA 90001" +277439,Bose SoundSport Headphones,1,99.99,10/20/19 00:54,"574 Forest St, San Francisco, CA 94016" +277440,USB-C Charging Cable,1,11.95,10/28/19 14:44,"803 14th St, San Francisco, CA 94016" +277441,AAA Batteries (4-pack),2,2.99,10/14/19 15:19,"933 9th St, Atlanta, GA 30301" +277442,AA Batteries (4-pack),1,3.84,10/09/19 21:51,"827 Wilson St, Los Angeles, CA 90001" +277443,AAA Batteries (4-pack),1,2.99,10/09/19 14:18,"140 Chestnut St, San Francisco, CA 94016" +277444,Vareebadd Phone,1,400,10/13/19 12:18,"637 Cedar St, Dallas, TX 75001" +277445,Wired Headphones,1,11.99,10/20/19 15:29,"303 Johnson St, Austin, TX 73301" +277445,USB-C Charging Cable,1,11.95,10/20/19 15:29,"303 Johnson St, Austin, TX 73301" +277446,Lightning Charging Cable,1,14.95,10/08/19 20:13,"934 Hickory St, Boston, MA 02215" +277447,AAA Batteries (4-pack),1,2.99,10/16/19 11:37,"897 Maple St, New York City, NY 10001" +277448,20in Monitor,1,109.99,10/12/19 19:40,"953 Meadow St, Seattle, WA 98101" +277449,USB-C Charging Cable,1,11.95,10/29/19 20:07,"464 8th St, Los Angeles, CA 90001" +277450,20in Monitor,1,109.99,10/22/19 17:49,"275 Lake St, Atlanta, GA 30301" +277451,AA Batteries (4-pack),1,3.84,10/11/19 10:27,"60 Ridge St, Los Angeles, CA 90001" +277452,27in 4K Gaming Monitor,1,389.99,10/30/19 19:13,"758 8th St, New York City, NY 10001" +277453,USB-C Charging Cable,1,11.95,10/24/19 00:38,"679 North St, Boston, MA 02215" +277454,Wired Headphones,1,11.99,10/07/19 16:46,"41 Forest St, Los Angeles, CA 90001" +277455,27in FHD Monitor,1,149.99,10/16/19 10:45,"620 Highland St, New York City, NY 10001" +277456,AAA Batteries (4-pack),2,2.99,10/07/19 07:27,"767 River St, San Francisco, CA 94016" +277457,Apple Airpods Headphones,1,150,10/22/19 12:22,"429 Jackson St, San Francisco, CA 94016" +277458,Vareebadd Phone,1,400,10/03/19 12:57,"74 10th St, San Francisco, CA 94016" +277459,AA Batteries (4-pack),1,3.84,10/10/19 23:15,"552 14th St, Los Angeles, CA 90001" +277460,Wired Headphones,2,11.99,10/28/19 12:16,"268 Chestnut St, San Francisco, CA 94016" +277461,iPhone,1,700,10/26/19 11:26,"311 Jackson St, New York City, NY 10001" +277462,AA Batteries (4-pack),2,3.84,10/05/19 12:40,"371 Ridge St, San Francisco, CA 94016" +277463,Bose SoundSport Headphones,1,99.99,10/21/19 12:48,"900 Cherry St, San Francisco, CA 94016" +277464,Apple Airpods Headphones,1,150,10/08/19 19:02,"27 9th St, Boston, MA 02215" +277465,AAA Batteries (4-pack),1,2.99,10/15/19 19:49,"860 Center St, Atlanta, GA 30301" +277466,AAA Batteries (4-pack),1,2.99,10/06/19 11:14,"330 Park St, San Francisco, CA 94016" +277467,AA Batteries (4-pack),1,3.84,10/18/19 12:26,"375 11th St, Los Angeles, CA 90001" +277468,AAA Batteries (4-pack),1,2.99,10/10/19 00:54,"907 11th St, San Francisco, CA 94016" +277469,Wired Headphones,1,11.99,10/26/19 13:21,"367 14th St, Los Angeles, CA 90001" +277470,AA Batteries (4-pack),1,3.84,10/15/19 15:48,"628 Center St, Austin, TX 73301" +277471,Bose SoundSport Headphones,1,99.99,10/17/19 11:46,"744 Spruce St, Los Angeles, CA 90001" +277472,Flatscreen TV,1,300,10/24/19 05:34,"232 Cherry St, Seattle, WA 98101" +277473,AA Batteries (4-pack),1,3.84,10/16/19 02:00,"524 5th St, Portland, OR 97035" +277474,AA Batteries (4-pack),5,3.84,10/24/19 10:34,"929 Wilson St, San Francisco, CA 94016" +277475,Apple Airpods Headphones,1,150,10/31/19 13:11,"108 Center St, Austin, TX 73301" +277476,AAA Batteries (4-pack),1,2.99,10/31/19 20:34,"827 2nd St, Seattle, WA 98101" +277477,Flatscreen TV,1,300,10/14/19 14:58,"254 Forest St, Seattle, WA 98101" +277478,Wired Headphones,1,11.99,10/09/19 09:53,"221 Lake St, San Francisco, CA 94016" +277479,AA Batteries (4-pack),1,3.84,10/19/19 21:18,"398 Lake St, San Francisco, CA 94016" +277480,Lightning Charging Cable,1,14.95,10/28/19 19:57,"104 14th St, New York City, NY 10001" +277481,USB-C Charging Cable,1,11.95,10/07/19 06:25,"657 9th St, Boston, MA 02215" +277482,Vareebadd Phone,1,400,10/14/19 16:30,"18 5th St, San Francisco, CA 94016" +277482,USB-C Charging Cable,1,11.95,10/14/19 16:30,"18 5th St, San Francisco, CA 94016" +277483,ThinkPad Laptop,1,999.99,10/09/19 14:01,"382 Willow St, Seattle, WA 98101" +277484,20in Monitor,1,109.99,10/29/19 16:24,"358 Jefferson St, Portland, ME 04101" +277485,Lightning Charging Cable,1,14.95,10/17/19 10:59,"427 6th St, San Francisco, CA 94016" +277486,Lightning Charging Cable,1,14.95,10/31/19 14:14,"258 North St, New York City, NY 10001" +277487,AAA Batteries (4-pack),1,2.99,10/27/19 20:39,"581 Adams St, Los Angeles, CA 90001" +277488,AA Batteries (4-pack),1,3.84,10/22/19 11:19,"36 Hill St, San Francisco, CA 94016" +277488,34in Ultrawide Monitor,2,379.99,10/22/19 11:19,"36 Hill St, San Francisco, CA 94016" +277489,Macbook Pro Laptop,1,1700,10/16/19 18:08,"968 Cherry St, Dallas, TX 75001" +277490,27in FHD Monitor,1,149.99,10/22/19 18:21,"453 Jackson St, New York City, NY 10001" +277491,Wired Headphones,1,11.99,10/05/19 22:05,"58 South St, Atlanta, GA 30301" +277492,AA Batteries (4-pack),1,3.84,10/02/19 20:07,"727 Elm St, Seattle, WA 98101" +277493,27in FHD Monitor,1,149.99,10/14/19 13:18,"565 4th St, Boston, MA 02215" +277494,USB-C Charging Cable,1,11.95,10/28/19 08:44,"381 Spruce St, San Francisco, CA 94016" +277495,AAA Batteries (4-pack),4,2.99,10/11/19 19:08,"51 13th St, New York City, NY 10001" +277496,34in Ultrawide Monitor,1,379.99,10/01/19 20:08,"103 Park St, Dallas, TX 75001" +277497,AA Batteries (4-pack),1,3.84,10/23/19 10:47,"724 Maple St, San Francisco, CA 94016" +277498,Wired Headphones,1,11.99,10/20/19 15:19,"844 Jackson St, Dallas, TX 75001" +277499,USB-C Charging Cable,1,11.95,10/12/19 11:22,"764 1st St, New York City, NY 10001" +277500,AA Batteries (4-pack),1,3.84,10/03/19 12:27,"579 West St, New York City, NY 10001" +277501,Bose SoundSport Headphones,1,99.99,10/01/19 09:26,"996 Cedar St, San Francisco, CA 94016" +277502,Flatscreen TV,1,300,10/01/19 19:15,"102 Jackson St, Seattle, WA 98101" +277503,Lightning Charging Cable,1,14.95,10/29/19 11:56,"960 11th St, Boston, MA 02215" +277504,Apple Airpods Headphones,1,150,10/03/19 08:13,"652 Hill St, San Francisco, CA 94016" +277505,Macbook Pro Laptop,1,1700,10/20/19 20:32,"594 Lakeview St, San Francisco, CA 94016" +277506,AAA Batteries (4-pack),2,2.99,10/15/19 09:27,"344 Lake St, New York City, NY 10001" +277507,Apple Airpods Headphones,1,150,10/09/19 15:10,"704 8th St, Seattle, WA 98101" +277508,USB-C Charging Cable,1,11.95,10/06/19 12:13,"5 1st St, Dallas, TX 75001" +277509,ThinkPad Laptop,1,999.99,10/09/19 11:33,"837 Meadow St, New York City, NY 10001" +277510,Wired Headphones,1,11.99,10/05/19 21:30,"141 7th St, San Francisco, CA 94016" +277511,Lightning Charging Cable,1,14.95,10/03/19 11:21,"723 Sunset St, Boston, MA 02215" +277512,34in Ultrawide Monitor,1,379.99,10/22/19 19:29,"631 Cedar St, Boston, MA 02215" +277513,USB-C Charging Cable,1,11.95,10/15/19 16:34,"350 2nd St, Dallas, TX 75001" +277514,AA Batteries (4-pack),2,3.84,10/30/19 00:23,"207 12th St, San Francisco, CA 94016" +277515,Vareebadd Phone,1,400,10/19/19 07:52,"765 Jefferson St, New York City, NY 10001" +277516,34in Ultrawide Monitor,1,379.99,10/22/19 13:02,"891 10th St, Atlanta, GA 30301" +277517,Wired Headphones,1,11.99,10/10/19 14:47,"535 Park St, New York City, NY 10001" +277518,Lightning Charging Cable,1,14.95,10/18/19 00:49,"593 Center St, New York City, NY 10001" +277519,Google Phone,1,600,10/11/19 00:53,"824 Willow St, New York City, NY 10001" +277519,USB-C Charging Cable,1,11.95,10/11/19 00:53,"824 Willow St, New York City, NY 10001" +277520,USB-C Charging Cable,1,11.95,10/29/19 22:32,"487 Adams St, San Francisco, CA 94016" +277521,iPhone,1,700,10/01/19 19:36,"34 Main St, San Francisco, CA 94016" +277522,Lightning Charging Cable,1,14.95,10/01/19 13:07,"468 Highland St, New York City, NY 10001" +277523,27in 4K Gaming Monitor,1,389.99,10/24/19 12:27,"456 North St, San Francisco, CA 94016" +277524,ThinkPad Laptop,1,999.99,10/13/19 21:48,"149 13th St, Los Angeles, CA 90001" +277525,Bose SoundSport Headphones,1,99.99,10/20/19 20:59,"792 Spruce St, New York City, NY 10001" +277526,AA Batteries (4-pack),2,3.84,10/11/19 12:26,"265 14th St, Boston, MA 02215" +277527,AA Batteries (4-pack),1,3.84,10/01/19 23:22,"835 Highland St, San Francisco, CA 94016" +277528,AA Batteries (4-pack),1,3.84,10/15/19 16:29,"495 Wilson St, San Francisco, CA 94016" +277529,AAA Batteries (4-pack),1,2.99,10/21/19 20:24,"126 Center St, San Francisco, CA 94016" +277530,AA Batteries (4-pack),1,3.84,10/08/19 17:50,"181 North St, New York City, NY 10001" +277531,Bose SoundSport Headphones,1,99.99,10/30/19 10:49,"685 Adams St, Los Angeles, CA 90001" +277532,AAA Batteries (4-pack),1,2.99,10/17/19 13:03,"959 6th St, San Francisco, CA 94016" +277533,USB-C Charging Cable,1,11.95,10/10/19 02:40,"718 Washington St, San Francisco, CA 94016" +277534,USB-C Charging Cable,1,11.95,10/07/19 01:37,"242 14th St, Austin, TX 73301" +277535,USB-C Charging Cable,1,11.95,10/16/19 09:32,"518 Chestnut St, San Francisco, CA 94016" +277536,AAA Batteries (4-pack),2,2.99,10/24/19 12:17,"971 Wilson St, Dallas, TX 75001" +277537,34in Ultrawide Monitor,1,379.99,10/18/19 08:35,"386 4th St, Los Angeles, CA 90001" +277538,ThinkPad Laptop,1,999.99,10/23/19 12:01,"714 Elm St, San Francisco, CA 94016" +277539,USB-C Charging Cable,1,11.95,10/23/19 23:12,"403 Adams St, Boston, MA 02215" +277540,Lightning Charging Cable,1,14.95,10/28/19 10:11,"189 4th St, Los Angeles, CA 90001" +277541,27in FHD Monitor,1,149.99,10/09/19 16:35,"258 Willow St, Portland, OR 97035" +277542,Bose SoundSport Headphones,1,99.99,10/08/19 15:39,"204 South St, San Francisco, CA 94016" +277543,AAA Batteries (4-pack),1,2.99,10/23/19 17:18,"399 1st St, San Francisco, CA 94016" +277544,Lightning Charging Cable,1,14.95,10/02/19 20:33,"429 Center St, New York City, NY 10001" +277545,Lightning Charging Cable,1,14.95,10/07/19 10:14,"482 Adams St, Portland, ME 04101" +277546,34in Ultrawide Monitor,1,379.99,10/16/19 03:00,"175 Dogwood St, New York City, NY 10001" +277547,Apple Airpods Headphones,1,150,10/29/19 07:35,"487 Willow St, Atlanta, GA 30301" +277548,AA Batteries (4-pack),3,3.84,10/09/19 20:08,"262 4th St, New York City, NY 10001" +277549,Vareebadd Phone,1,400,10/11/19 12:17,"35 Park St, Boston, MA 02215" +277550,27in 4K Gaming Monitor,1,389.99,10/24/19 07:03,"116 Cedar St, San Francisco, CA 94016" +277551,Bose SoundSport Headphones,1,99.99,10/31/19 12:20,"442 Park St, Dallas, TX 75001" +277552,AA Batteries (4-pack),1,3.84,10/14/19 17:38,"242 1st St, New York City, NY 10001" +277553,AAA Batteries (4-pack),1,2.99,10/14/19 09:23,"785 West St, Dallas, TX 75001" +277554,iPhone,1,700,10/17/19 08:39,"814 8th St, Portland, OR 97035" +277555,Apple Airpods Headphones,1,150,10/02/19 07:42,"803 12th St, New York City, NY 10001" +277556,USB-C Charging Cable,1,11.95,10/20/19 20:25,"239 Cherry St, Los Angeles, CA 90001" +277557,AA Batteries (4-pack),1,3.84,10/19/19 11:31,"31 6th St, Atlanta, GA 30301" +277558,Apple Airpods Headphones,1,150,10/01/19 19:38,"336 6th St, Portland, ME 04101" +277559,USB-C Charging Cable,1,11.95,10/01/19 22:49,"575 11th St, Dallas, TX 75001" +277560,AA Batteries (4-pack),1,3.84,10/17/19 17:06,"851 Lakeview St, San Francisco, CA 94016" +277561,AA Batteries (4-pack),1,3.84,10/27/19 10:01,"658 Pine St, San Francisco, CA 94016" +277562,27in 4K Gaming Monitor,1,389.99,10/28/19 22:47,"870 Dogwood St, New York City, NY 10001" +277563,20in Monitor,1,109.99,10/01/19 23:29,"370 5th St, Dallas, TX 75001" +277564,Wired Headphones,1,11.99,10/23/19 10:07,"251 West St, Seattle, WA 98101" +277565,LG Washing Machine,1,600.0,10/03/19 16:57,"77 Hill St, Boston, MA 02215" +277566,27in FHD Monitor,1,149.99,10/11/19 19:30,"807 Johnson St, San Francisco, CA 94016" +277566,20in Monitor,1,109.99,10/11/19 19:30,"807 Johnson St, San Francisco, CA 94016" +277567,Bose SoundSport Headphones,1,99.99,10/03/19 14:06,"942 Cherry St, San Francisco, CA 94016" +277568,Lightning Charging Cable,1,14.95,10/30/19 00:11,"434 Hill St, San Francisco, CA 94016" +277569,Lightning Charging Cable,1,14.95,10/25/19 19:44,"253 Center St, Portland, OR 97035" +277570,Lightning Charging Cable,1,14.95,10/27/19 20:57,"574 Lincoln St, Dallas, TX 75001" +277571,Google Phone,1,600,10/30/19 17:37,"137 Pine St, Los Angeles, CA 90001" +277572,AA Batteries (4-pack),1,3.84,10/26/19 15:20,"109 Cherry St, Los Angeles, CA 90001" +277573,AA Batteries (4-pack),2,3.84,10/19/19 16:23,"92 1st St, New York City, NY 10001" +277574,20in Monitor,1,109.99,10/20/19 22:48,"793 Washington St, Boston, MA 02215" +277575,AA Batteries (4-pack),2,3.84,10/24/19 12:54,"679 River St, Atlanta, GA 30301" +277576,AA Batteries (4-pack),1,3.84,10/08/19 16:46,"443 Maple St, Boston, MA 02215" +277577,27in 4K Gaming Monitor,1,389.99,10/13/19 18:29,"918 Maple St, Los Angeles, CA 90001" +277578,Bose SoundSport Headphones,1,99.99,10/04/19 10:26,"599 Main St, Boston, MA 02215" +277579,Apple Airpods Headphones,1,150,10/19/19 02:44,"185 Lakeview St, Atlanta, GA 30301" +277580,USB-C Charging Cable,1,11.95,10/31/19 10:36,"768 Dogwood St, Boston, MA 02215" +277581,Bose SoundSport Headphones,1,99.99,10/04/19 21:21,"11 Hill St, San Francisco, CA 94016" +277582,27in 4K Gaming Monitor,1,389.99,10/25/19 20:07,"726 Jackson St, Atlanta, GA 30301" +277583,iPhone,1,700,10/10/19 08:17,"982 Madison St, Los Angeles, CA 90001" +277584,Apple Airpods Headphones,1,150,10/12/19 09:44,"305 Elm St, San Francisco, CA 94016" +277585,AAA Batteries (4-pack),1,2.99,10/15/19 17:43,"145 12th St, Seattle, WA 98101" +277586,Wired Headphones,1,11.99,10/07/19 14:17,"95 Hickory St, San Francisco, CA 94016" +277587,AA Batteries (4-pack),1,3.84,10/31/19 11:05,"254 River St, San Francisco, CA 94016" +277588,AA Batteries (4-pack),1,3.84,10/11/19 09:45,"661 Washington St, Atlanta, GA 30301" +277589,USB-C Charging Cable,1,11.95,10/06/19 18:34,"763 Jackson St, Seattle, WA 98101" +277590,AAA Batteries (4-pack),1,2.99,10/28/19 23:21,"393 Johnson St, Dallas, TX 75001" +277591,Wired Headphones,1,11.99,10/25/19 19:39,"67 Adams St, Portland, OR 97035" +277592,AAA Batteries (4-pack),2,2.99,10/10/19 14:37,"845 Walnut St, New York City, NY 10001" +277593,27in FHD Monitor,1,149.99,10/30/19 14:22,"920 11th St, Los Angeles, CA 90001" +277594,AAA Batteries (4-pack),4,2.99,10/21/19 14:56,"598 12th St, Austin, TX 73301" +277595,Flatscreen TV,1,300,10/01/19 20:37,"929 Willow St, Portland, OR 97035" +277596,34in Ultrawide Monitor,1,379.99,10/11/19 12:19,"975 14th St, New York City, NY 10001" +277597,Macbook Pro Laptop,1,1700,10/12/19 19:45,"425 13th St, New York City, NY 10001" +277598,Wired Headphones,1,11.99,10/12/19 11:18,"283 Center St, Seattle, WA 98101" +277599,Vareebadd Phone,1,400,10/27/19 07:59,"98 Spruce St, San Francisco, CA 94016" +277600,34in Ultrawide Monitor,1,379.99,10/26/19 17:43,"49 Walnut St, Los Angeles, CA 90001" +277601,27in 4K Gaming Monitor,1,389.99,10/08/19 19:49,"324 1st St, Los Angeles, CA 90001" +277602,Flatscreen TV,1,300,10/11/19 16:08,"569 Maple St, New York City, NY 10001" +277603,AAA Batteries (4-pack),1,2.99,10/29/19 10:41,"530 11th St, Los Angeles, CA 90001" +277604,AA Batteries (4-pack),1,3.84,10/15/19 13:42,"231 Church St, Boston, MA 02215" +277605,Lightning Charging Cable,1,14.95,10/08/19 14:49,"943 North St, Austin, TX 73301" +277606,Apple Airpods Headphones,1,150,10/12/19 08:51,"884 Ridge St, San Francisco, CA 94016" +277607,USB-C Charging Cable,1,11.95,10/27/19 15:23,"303 Park St, Los Angeles, CA 90001" +277608,Bose SoundSport Headphones,1,99.99,10/17/19 18:25,"631 1st St, Atlanta, GA 30301" +277609,AA Batteries (4-pack),1,3.84,10/31/19 02:27,"207 Chestnut St, Austin, TX 73301" +277610,20in Monitor,1,109.99,10/03/19 12:46,"259 Chestnut St, Seattle, WA 98101" +277611,USB-C Charging Cable,1,11.95,10/14/19 12:03,"339 Elm St, Los Angeles, CA 90001" +277612,AAA Batteries (4-pack),1,2.99,10/31/19 15:52,"299 Park St, Dallas, TX 75001" +277613,Lightning Charging Cable,1,14.95,10/12/19 21:53,"939 Church St, Seattle, WA 98101" +277614,27in FHD Monitor,1,149.99,10/21/19 19:13,"381 Center St, Boston, MA 02215" +277615,iPhone,1,700,10/12/19 18:08,"28 Pine St, Los Angeles, CA 90001" +277616,AA Batteries (4-pack),1,3.84,10/06/19 21:43,"777 Jefferson St, Los Angeles, CA 90001" +277617,Wired Headphones,1,11.99,10/19/19 14:14,"733 Hill St, San Francisco, CA 94016" +277618,iPhone,1,700,10/23/19 17:45,"304 Elm St, San Francisco, CA 94016" +277619,Wired Headphones,1,11.99,10/17/19 23:03,"8 Lakeview St, New York City, NY 10001" +277620,AA Batteries (4-pack),1,3.84,10/07/19 04:49,"517 Johnson St, Dallas, TX 75001" +277621,Apple Airpods Headphones,1,150,10/12/19 00:47,"839 Church St, Seattle, WA 98101" +277622,Wired Headphones,1,11.99,10/21/19 16:10,"793 Jefferson St, Portland, OR 97035" +277623,Lightning Charging Cable,1,14.95,10/18/19 17:50,"145 2nd St, San Francisco, CA 94016" +277624,27in FHD Monitor,1,149.99,10/19/19 18:10,"867 Jefferson St, San Francisco, CA 94016" +277625,Wired Headphones,1,11.99,10/04/19 11:47,"880 Elm St, Los Angeles, CA 90001" +277626,AAA Batteries (4-pack),6,2.99,10/28/19 17:26,"927 Pine St, Seattle, WA 98101" +277627,Wired Headphones,1,11.99,10/15/19 20:48,"684 14th St, Austin, TX 73301" +277628,AA Batteries (4-pack),4,3.84,10/27/19 20:20,"46 Spruce St, Boston, MA 02215" +277629,Flatscreen TV,1,300,10/02/19 23:05,"581 11th St, Boston, MA 02215" +277630,Bose SoundSport Headphones,1,99.99,10/06/19 13:11,"693 Jefferson St, Atlanta, GA 30301" +277631,Google Phone,1,600,10/01/19 16:05,"211 Hill St, San Francisco, CA 94016" +277631,USB-C Charging Cable,1,11.95,10/01/19 16:05,"211 Hill St, San Francisco, CA 94016" +277632,USB-C Charging Cable,1,11.95,10/19/19 09:31,"438 Meadow St, New York City, NY 10001" +277633,34in Ultrawide Monitor,1,379.99,10/13/19 19:50,"790 4th St, Seattle, WA 98101" +277634,ThinkPad Laptop,1,999.99,10/14/19 22:26,"852 Jefferson St, Boston, MA 02215" +277635,20in Monitor,1,109.99,10/15/19 19:47,"291 Park St, Los Angeles, CA 90001" +277636,Bose SoundSport Headphones,1,99.99,10/08/19 13:38,"330 Hill St, Seattle, WA 98101" +277637,Lightning Charging Cable,1,14.95,10/30/19 15:54,"209 Jackson St, Boston, MA 02215" +277638,Vareebadd Phone,1,400,10/09/19 08:38,"278 2nd St, Los Angeles, CA 90001" +277639,Wired Headphones,1,11.99,10/21/19 14:58,"315 Park St, San Francisco, CA 94016" +277640,34in Ultrawide Monitor,1,379.99,10/12/19 10:12,"337 Elm St, Portland, OR 97035" +277641,Flatscreen TV,1,300,10/03/19 12:37,"742 Elm St, Dallas, TX 75001" +277642,AA Batteries (4-pack),1,3.84,10/16/19 08:19,"73 Church St, Los Angeles, CA 90001" +277643,USB-C Charging Cable,1,11.95,10/28/19 10:43,"797 Chestnut St, San Francisco, CA 94016" +277644,27in FHD Monitor,1,149.99,10/19/19 12:33,"816 Dogwood St, Dallas, TX 75001" +277645,Lightning Charging Cable,1,14.95,10/05/19 23:24,"102 Forest St, Boston, MA 02215" +277646,Bose SoundSport Headphones,1,99.99,10/21/19 21:52,"137 Spruce St, New York City, NY 10001" +277647,Lightning Charging Cable,1,14.95,10/19/19 14:29,"343 Center St, San Francisco, CA 94016" +277648,Vareebadd Phone,1,400,10/19/19 18:12,"606 Elm St, Boston, MA 02215" +277649,Apple Airpods Headphones,1,150,10/09/19 21:21,"153 Park St, Atlanta, GA 30301" +277650,Google Phone,1,600,10/03/19 22:22,"274 Center St, New York City, NY 10001" +277650,Wired Headphones,2,11.99,10/03/19 22:22,"274 Center St, New York City, NY 10001" +277651,27in FHD Monitor,1,149.99,10/26/19 10:18,"6 Hickory St, Los Angeles, CA 90001" +277652,AA Batteries (4-pack),6,3.84,10/16/19 16:36,"680 Meadow St, Los Angeles, CA 90001" +277653,USB-C Charging Cable,1,11.95,10/31/19 17:26,"966 14th St, Austin, TX 73301" +277653,AAA Batteries (4-pack),1,2.99,10/31/19 17:26,"966 14th St, Austin, TX 73301" +277654,Lightning Charging Cable,2,14.95,10/13/19 20:30,"288 Maple St, Los Angeles, CA 90001" +277655,AAA Batteries (4-pack),1,2.99,10/22/19 11:36,"553 Lake St, Dallas, TX 75001" +277656,AA Batteries (4-pack),2,3.84,10/15/19 23:53,"515 Lakeview St, San Francisco, CA 94016" +277657,ThinkPad Laptop,1,999.99,10/06/19 16:50,"787 Madison St, Dallas, TX 75001" +277658,Wired Headphones,1,11.99,10/03/19 13:36,"981 6th St, Boston, MA 02215" +277659,USB-C Charging Cable,1,11.95,10/13/19 22:42,"190 South St, Boston, MA 02215" +277659,AA Batteries (4-pack),1,3.84,10/13/19 22:42,"190 South St, Boston, MA 02215" +277660,Apple Airpods Headphones,1,150,10/04/19 15:06,"909 12th St, Dallas, TX 75001" +277661,ThinkPad Laptop,1,999.99,11/01/19 00:59,"5 Chestnut St, Austin, TX 73301" +277662,Lightning Charging Cable,1,14.95,10/01/19 13:03,"36 Lake St, Dallas, TX 75001" +277663,USB-C Charging Cable,1,11.95,10/09/19 12:03,"168 Park St, New York City, NY 10001" +277664,AAA Batteries (4-pack),2,2.99,10/11/19 13:05,"695 6th St, San Francisco, CA 94016" +277665,27in FHD Monitor,1,149.99,10/27/19 10:52,"209 Dogwood St, New York City, NY 10001" +277666,AAA Batteries (4-pack),1,2.99,10/18/19 16:09,"101 12th St, San Francisco, CA 94016" +277667,Lightning Charging Cable,1,14.95,10/27/19 18:37,"726 Adams St, Dallas, TX 75001" +277668,Lightning Charging Cable,1,14.95,10/24/19 01:07,"18 Lincoln St, San Francisco, CA 94016" +277669,Apple Airpods Headphones,1,150,10/22/19 12:55,"887 Highland St, New York City, NY 10001" +277670,Apple Airpods Headphones,1,150,10/31/19 20:22,"208 Maple St, Seattle, WA 98101" +277671,Wired Headphones,1,11.99,10/30/19 15:04,"477 Johnson St, Austin, TX 73301" +277672,Wired Headphones,2,11.99,10/24/19 23:48,"320 6th St, New York City, NY 10001" +277673,Lightning Charging Cable,1,14.95,10/17/19 14:18,"918 Hill St, San Francisco, CA 94016" +277674,27in 4K Gaming Monitor,1,389.99,10/28/19 19:19,"505 10th St, San Francisco, CA 94016" +277675,iPhone,1,700,10/26/19 07:23,"123 Center St, Atlanta, GA 30301" +277676,AAA Batteries (4-pack),2,2.99,10/20/19 20:29,"372 Main St, San Francisco, CA 94016" +277677,AA Batteries (4-pack),2,3.84,10/17/19 10:36,"970 Maple St, Los Angeles, CA 90001" +277678,27in 4K Gaming Monitor,1,389.99,10/10/19 11:11,"858 12th St, New York City, NY 10001" +277679,Lightning Charging Cable,1,14.95,10/07/19 13:11,"835 5th St, San Francisco, CA 94016" +277680,USB-C Charging Cable,1,11.95,10/15/19 19:53,"335 Walnut St, San Francisco, CA 94016" +277681,Macbook Pro Laptop,1,1700,10/09/19 12:22,"191 10th St, Los Angeles, CA 90001" +277682,Lightning Charging Cable,1,14.95,10/05/19 02:14,"329 10th St, New York City, NY 10001" +277683,Bose SoundSport Headphones,1,99.99,10/13/19 11:07,"653 Pine St, Austin, TX 73301" +277684,AA Batteries (4-pack),1,3.84,10/23/19 19:00,"812 7th St, Austin, TX 73301" +277685,AA Batteries (4-pack),1,3.84,10/01/19 13:56,"351 Cherry St, Austin, TX 73301" +277686,AA Batteries (4-pack),2,3.84,10/19/19 22:19,"491 Wilson St, Boston, MA 02215" +277687,Macbook Pro Laptop,1,1700,10/26/19 14:59,"975 5th St, San Francisco, CA 94016" +277688,34in Ultrawide Monitor,1,379.99,10/02/19 12:28,"622 Jefferson St, Los Angeles, CA 90001" +277689,34in Ultrawide Monitor,1,379.99,10/03/19 17:15,"807 North St, Los Angeles, CA 90001" +277690,Macbook Pro Laptop,1,1700,10/02/19 17:30,"572 11th St, Los Angeles, CA 90001" +277691,Lightning Charging Cable,1,14.95,10/15/19 20:45,"824 Hickory St, New York City, NY 10001" +277692,Lightning Charging Cable,1,14.95,10/25/19 12:58,"980 8th St, Austin, TX 73301" +277693,Bose SoundSport Headphones,1,99.99,10/12/19 18:45,"742 8th St, Los Angeles, CA 90001" +277694,34in Ultrawide Monitor,1,379.99,10/01/19 16:21,"382 Meadow St, Austin, TX 73301" +277695,Macbook Pro Laptop,1,1700,10/14/19 19:21,"440 River St, San Francisco, CA 94016" +277696,USB-C Charging Cable,1,11.95,10/06/19 14:14,"940 Highland St, New York City, NY 10001" +277697,Bose SoundSport Headphones,1,99.99,10/12/19 12:41,"130 Maple St, Atlanta, GA 30301" +277698,AA Batteries (4-pack),1,3.84,10/03/19 21:04,"377 West St, New York City, NY 10001" +277699,Bose SoundSport Headphones,1,99.99,10/03/19 09:44,"411 Center St, Austin, TX 73301" +277700,AA Batteries (4-pack),1,3.84,10/19/19 14:20,"436 Willow St, Los Angeles, CA 90001" +277701,AA Batteries (4-pack),2,3.84,10/09/19 17:28,"51 14th St, Atlanta, GA 30301" +277702,AA Batteries (4-pack),1,3.84,10/06/19 21:00,"749 6th St, Seattle, WA 98101" +277703,Bose SoundSport Headphones,1,99.99,10/12/19 19:30,"745 North St, San Francisco, CA 94016" +277704,Wired Headphones,1,11.99,10/25/19 10:06,"814 12th St, San Francisco, CA 94016" +277705,Apple Airpods Headphones,1,150,10/20/19 23:38,"550 Pine St, New York City, NY 10001" +277706,AA Batteries (4-pack),1,3.84,10/03/19 17:07,"313 Lincoln St, San Francisco, CA 94016" +277707,AAA Batteries (4-pack),1,2.99,10/21/19 23:02,"369 Lake St, Seattle, WA 98101" +277708,iPhone,1,700,10/01/19 15:09,"480 7th St, Austin, TX 73301" +277709,AA Batteries (4-pack),2,3.84,10/17/19 17:36,"274 Adams St, San Francisco, CA 94016" +277710,20in Monitor,1,109.99,10/10/19 13:11,"786 South St, Austin, TX 73301" +277711,Apple Airpods Headphones,1,150,10/28/19 00:15,"472 Sunset St, New York City, NY 10001" +277712,USB-C Charging Cable,1,11.95,10/16/19 19:42,"784 Willow St, Seattle, WA 98101" +277712,Macbook Pro Laptop,1,1700,10/16/19 19:42,"784 Willow St, Seattle, WA 98101" +277713,USB-C Charging Cable,1,11.95,10/04/19 11:51,"695 Washington St, New York City, NY 10001" +277714,Wired Headphones,1,11.99,10/22/19 18:30,"371 West St, Portland, OR 97035" +277715,Lightning Charging Cable,1,14.95,10/04/19 19:25,"87 Madison St, Seattle, WA 98101" +277716,Lightning Charging Cable,1,14.95,10/06/19 23:12,"286 Hickory St, Austin, TX 73301" +277717,AAA Batteries (4-pack),1,2.99,10/17/19 14:22,"363 North St, San Francisco, CA 94016" +277718,iPhone,1,700,10/09/19 13:11,"845 11th St, Los Angeles, CA 90001" +277719,USB-C Charging Cable,1,11.95,10/30/19 17:07,"340 Hickory St, San Francisco, CA 94016" +277720,AAA Batteries (4-pack),1,2.99,10/26/19 15:59,"644 Lincoln St, Seattle, WA 98101" +277721,USB-C Charging Cable,1,11.95,10/19/19 16:23,"712 Elm St, San Francisco, CA 94016" +277722,ThinkPad Laptop,1,999.99,10/22/19 07:59,"15 Park St, Seattle, WA 98101" +277723,Apple Airpods Headphones,1,150,10/28/19 20:13,"732 4th St, Dallas, TX 75001" +277724,ThinkPad Laptop,1,999.99,10/29/19 18:21,"470 Adams St, Atlanta, GA 30301" +277725,USB-C Charging Cable,1,11.95,10/03/19 00:00,"691 Lakeview St, New York City, NY 10001" +277726,Bose SoundSport Headphones,1,99.99,10/13/19 21:40,"133 South St, New York City, NY 10001" +277727,Wired Headphones,1,11.99,10/11/19 15:40,"123 Elm St, Atlanta, GA 30301" +277728,AA Batteries (4-pack),1,3.84,10/25/19 11:41,"162 Madison St, San Francisco, CA 94016" +277729,Google Phone,1,600,10/04/19 11:32,"373 Church St, Dallas, TX 75001" +277729,Bose SoundSport Headphones,1,99.99,10/04/19 11:32,"373 Church St, Dallas, TX 75001" +277730,Wired Headphones,1,11.99,10/25/19 15:04,"771 Ridge St, Los Angeles, CA 90001" +277731,Lightning Charging Cable,1,14.95,10/28/19 18:43,"473 Walnut St, San Francisco, CA 94016" +277732,AAA Batteries (4-pack),1,2.99,10/10/19 11:00,"686 Adams St, San Francisco, CA 94016" +277733,Wired Headphones,1,11.99,10/05/19 14:47,"488 Park St, Los Angeles, CA 90001" +277734,USB-C Charging Cable,1,11.95,10/11/19 17:40,"493 1st St, Boston, MA 02215" +277735,Lightning Charging Cable,2,14.95,10/02/19 21:28,"348 Park St, New York City, NY 10001" +277736,Bose SoundSport Headphones,1,99.99,10/04/19 20:55,"532 Lincoln St, New York City, NY 10001" +277737,Apple Airpods Headphones,1,150,10/22/19 14:32,"218 2nd St, San Francisco, CA 94016" +277738,34in Ultrawide Monitor,1,379.99,10/02/19 10:58,"906 6th St, Boston, MA 02215" +277739,Apple Airpods Headphones,1,150,10/19/19 10:06,"876 Main St, Boston, MA 02215" +277740,USB-C Charging Cable,1,11.95,10/22/19 12:44,"318 9th St, Seattle, WA 98101" +277741,Google Phone,1,600,10/14/19 10:28,"495 12th St, San Francisco, CA 94016" +277742,Apple Airpods Headphones,1,150,10/21/19 18:53,"471 West St, New York City, NY 10001" +277743,AAA Batteries (4-pack),2,2.99,10/04/19 17:17,"225 North St, San Francisco, CA 94016" +277743,AA Batteries (4-pack),1,3.84,10/04/19 17:17,"225 North St, San Francisco, CA 94016" +277744,Bose SoundSport Headphones,1,99.99,10/23/19 16:15,"792 Maple St, Portland, OR 97035" +277745,Apple Airpods Headphones,1,150,10/13/19 21:41,"346 Church St, Austin, TX 73301" +277746,Bose SoundSport Headphones,1,99.99,10/07/19 23:23,"370 11th St, Portland, OR 97035" +277747,Lightning Charging Cable,1,14.95,10/04/19 08:58,"394 Hickory St, Atlanta, GA 30301" +277748,Lightning Charging Cable,1,14.95,10/30/19 11:45,"284 Park St, Atlanta, GA 30301" +277749,USB-C Charging Cable,1,11.95,10/11/19 13:17,"923 Lincoln St, Portland, ME 04101" +277750,Lightning Charging Cable,1,14.95,10/07/19 10:45,"414 Wilson St, San Francisco, CA 94016" +277751,AA Batteries (4-pack),1,3.84,10/31/19 18:04,"944 Jefferson St, Los Angeles, CA 90001" +277752,Apple Airpods Headphones,1,150,10/28/19 16:37,"665 6th St, Boston, MA 02215" +277753,iPhone,1,700,10/18/19 20:27,"514 4th St, Atlanta, GA 30301" +277754,Apple Airpods Headphones,1,150,10/09/19 13:30,"963 Adams St, Los Angeles, CA 90001" +277755,USB-C Charging Cable,1,11.95,10/25/19 10:33,"647 West St, Seattle, WA 98101" +277756,AAA Batteries (4-pack),2,2.99,10/08/19 17:49,"260 Wilson St, Los Angeles, CA 90001" +277757,USB-C Charging Cable,1,11.95,10/13/19 14:17,"588 Walnut St, Seattle, WA 98101" +277758,20in Monitor,1,109.99,10/27/19 18:14,"215 13th St, New York City, NY 10001" +277759,27in 4K Gaming Monitor,1,389.99,10/19/19 08:27,"894 Cherry St, Los Angeles, CA 90001" +277760,USB-C Charging Cable,1,11.95,10/30/19 02:26,"895 South St, Atlanta, GA 30301" +277761,USB-C Charging Cable,1,11.95,10/09/19 15:57,"288 6th St, Atlanta, GA 30301" +277762,Bose SoundSport Headphones,1,99.99,10/23/19 21:02,"32 Elm St, Dallas, TX 75001" +277763,27in 4K Gaming Monitor,1,389.99,10/23/19 17:31,"430 Highland St, Seattle, WA 98101" +277764,Apple Airpods Headphones,1,150,10/23/19 10:12,"981 1st St, Boston, MA 02215" +277765,Apple Airpods Headphones,1,150,10/29/19 10:13,"739 Sunset St, Los Angeles, CA 90001" +277766,AAA Batteries (4-pack),1,2.99,10/20/19 00:22,"601 Hickory St, Boston, MA 02215" +277767,Lightning Charging Cable,1,14.95,10/06/19 00:40,"347 7th St, Dallas, TX 75001" +277768,34in Ultrawide Monitor,1,379.99,10/26/19 22:21,"649 1st St, Dallas, TX 75001" +277769,iPhone,1,700,10/06/19 23:22,"766 2nd St, Austin, TX 73301" +277769,Lightning Charging Cable,1,14.95,10/06/19 23:22,"766 2nd St, Austin, TX 73301" +277770,Lightning Charging Cable,1,14.95,10/22/19 07:04,"67 Lake St, Dallas, TX 75001" +277771,AAA Batteries (4-pack),1,2.99,10/23/19 23:15,"676 North St, Los Angeles, CA 90001" +277772,Apple Airpods Headphones,1,150,10/23/19 16:08,"2 Lake St, New York City, NY 10001" +277773,Google Phone,1,600,10/27/19 20:45,"551 13th St, San Francisco, CA 94016" +277774,27in FHD Monitor,1,149.99,11/01/19 01:09,"982 Forest St, San Francisco, CA 94016" +277775,Flatscreen TV,1,300,10/22/19 15:47,"715 Madison St, San Francisco, CA 94016" +277776,iPhone,1,700,10/10/19 11:25,"460 Park St, Boston, MA 02215" +277777,USB-C Charging Cable,1,11.95,10/03/19 08:44,"749 Hickory St, Portland, OR 97035" +277778,Lightning Charging Cable,2,14.95,10/27/19 20:41,"964 5th St, Austin, TX 73301" +277779,AA Batteries (4-pack),2,3.84,10/04/19 18:31,"998 14th St, Boston, MA 02215" +277780,Google Phone,1,600,10/07/19 19:22,"341 South St, Atlanta, GA 30301" +277781,Lightning Charging Cable,1,14.95,10/26/19 10:52,"335 Spruce St, Seattle, WA 98101" +277782,USB-C Charging Cable,1,11.95,10/07/19 22:59,"164 Lakeview St, Atlanta, GA 30301" +277783,USB-C Charging Cable,1,11.95,10/03/19 22:29,"695 Hill St, San Francisco, CA 94016" +277784,Wired Headphones,1,11.99,10/19/19 20:37,"804 Forest St, San Francisco, CA 94016" +277785,AAA Batteries (4-pack),1,2.99,10/12/19 05:18,"128 Main St, San Francisco, CA 94016" +277786,Bose SoundSport Headphones,1,99.99,10/21/19 17:09,"496 Washington St, New York City, NY 10001" +277787,Lightning Charging Cable,1,14.95,10/02/19 13:51,"727 Ridge St, Dallas, TX 75001" +277788,iPhone,1,700,10/10/19 20:57,"662 Sunset St, San Francisco, CA 94016" +277789,Macbook Pro Laptop,1,1700,10/25/19 23:13,"219 North St, Portland, OR 97035" +,,,,, +277790,AA Batteries (4-pack),1,3.84,10/12/19 16:02,"449 10th St, Atlanta, GA 30301" +277791,34in Ultrawide Monitor,1,379.99,10/06/19 12:23,"997 Adams St, San Francisco, CA 94016" +277792,AAA Batteries (4-pack),2,2.99,10/17/19 19:47,"956 Ridge St, New York City, NY 10001" +277793,Lightning Charging Cable,1,14.95,10/14/19 07:18,"610 Center St, Austin, TX 73301" +277794,USB-C Charging Cable,1,11.95,10/12/19 13:20,"378 Meadow St, Los Angeles, CA 90001" +277795,iPhone,1,700,10/22/19 21:11,"632 Forest St, Los Angeles, CA 90001" +277796,Google Phone,1,600,10/17/19 21:05,"229 14th St, Seattle, WA 98101" +277797,Bose SoundSport Headphones,1,99.99,10/03/19 23:32,"191 Wilson St, New York City, NY 10001" +277798,iPhone,1,700,10/28/19 18:32,"747 Lake St, New York City, NY 10001" +277798,Lightning Charging Cable,1,14.95,10/28/19 18:32,"747 Lake St, New York City, NY 10001" +277799,Bose SoundSport Headphones,1,99.99,10/09/19 21:59,"447 Adams St, Seattle, WA 98101" +277800,Apple Airpods Headphones,1,150,10/05/19 20:38,"131 Jefferson St, Los Angeles, CA 90001" +277801,27in 4K Gaming Monitor,1,389.99,10/25/19 21:40,"421 Main St, Atlanta, GA 30301" +277802,34in Ultrawide Monitor,1,379.99,10/07/19 17:46,"499 Madison St, Boston, MA 02215" +277802,Wired Headphones,1,11.99,10/07/19 17:46,"499 Madison St, Boston, MA 02215" +277803,27in 4K Gaming Monitor,1,389.99,10/27/19 11:21,"512 Dogwood St, Austin, TX 73301" +277804,20in Monitor,1,109.99,10/06/19 11:48,"796 Spruce St, New York City, NY 10001" +277805,Wired Headphones,1,11.99,10/06/19 20:08,"109 Center St, Seattle, WA 98101" +277806,27in FHD Monitor,1,149.99,10/26/19 20:22,"308 North St, Boston, MA 02215" +277807,USB-C Charging Cable,1,11.95,10/01/19 12:45,"957 Park St, Los Angeles, CA 90001" +277808,USB-C Charging Cable,1,11.95,10/04/19 18:29,"519 Meadow St, New York City, NY 10001" +277809,AA Batteries (4-pack),1,3.84,10/29/19 09:05,"738 Wilson St, Atlanta, GA 30301" +277810,AA Batteries (4-pack),1,3.84,10/18/19 18:31,"723 Willow St, San Francisco, CA 94016" +277811,Lightning Charging Cable,1,14.95,10/11/19 16:54,"324 Jefferson St, Seattle, WA 98101" +277812,USB-C Charging Cable,1,11.95,10/05/19 11:52,"892 Main St, Dallas, TX 75001" +277813,AA Batteries (4-pack),1,3.84,10/22/19 11:55,"796 North St, Boston, MA 02215" +277814,27in FHD Monitor,1,149.99,10/20/19 07:45,"390 Elm St, Boston, MA 02215" +277815,Bose SoundSport Headphones,1,99.99,10/13/19 14:54,"547 Jefferson St, Los Angeles, CA 90001" +277816,Apple Airpods Headphones,1,150,10/28/19 14:26,"146 9th St, Seattle, WA 98101" +277817,AAA Batteries (4-pack),3,2.99,10/02/19 12:58,"21 Dogwood St, New York City, NY 10001" +277818,Vareebadd Phone,1,400,10/10/19 02:14,"62 Willow St, New York City, NY 10001" +277818,Bose SoundSport Headphones,1,99.99,10/10/19 02:14,"62 Willow St, New York City, NY 10001" +277819,AA Batteries (4-pack),1,3.84,10/21/19 20:25,"906 Chestnut St, Austin, TX 73301" +277820,Apple Airpods Headphones,1,150,10/01/19 15:59,"489 8th St, Dallas, TX 75001" +277821,USB-C Charging Cable,1,11.95,10/30/19 03:02,"249 Cedar St, Portland, OR 97035" +277822,Flatscreen TV,1,300,10/21/19 23:02,"618 1st St, Los Angeles, CA 90001" +277823,AAA Batteries (4-pack),1,2.99,10/06/19 08:40,"314 Jackson St, Seattle, WA 98101" +277824,Macbook Pro Laptop,1,1700,10/12/19 11:19,"940 North St, New York City, NY 10001" +277825,20in Monitor,1,109.99,10/03/19 10:29,"423 Cedar St, Boston, MA 02215" +277826,27in FHD Monitor,1,149.99,10/05/19 19:29,"752 Cedar St, New York City, NY 10001" +277827,Macbook Pro Laptop,1,1700,10/02/19 16:32,"607 West St, Los Angeles, CA 90001" +277828,Bose SoundSport Headphones,1,99.99,10/20/19 21:21,"255 8th St, San Francisco, CA 94016" +277829,Lightning Charging Cable,1,14.95,10/18/19 00:16,"29 Elm St, Boston, MA 02215" +277830,Google Phone,1,600,10/29/19 21:26,"68 4th St, San Francisco, CA 94016" +277830,USB-C Charging Cable,1,11.95,10/29/19 21:26,"68 4th St, San Francisco, CA 94016" +277831,USB-C Charging Cable,1,11.95,10/15/19 10:52,"147 6th St, Los Angeles, CA 90001" +277832,34in Ultrawide Monitor,1,379.99,10/13/19 16:19,"449 Main St, Austin, TX 73301" +277833,AAA Batteries (4-pack),1,2.99,10/29/19 09:13,"968 Cherry St, Boston, MA 02215" +277834,20in Monitor,1,109.99,10/19/19 22:07,"604 Walnut St, Seattle, WA 98101" +277835,AA Batteries (4-pack),1,3.84,10/02/19 21:35,"457 11th St, Los Angeles, CA 90001" +277836,iPhone,1,700,10/08/19 01:56,"882 South St, Boston, MA 02215" +277837,Apple Airpods Headphones,1,150,10/22/19 18:20,"319 4th St, San Francisco, CA 94016" +277838,Apple Airpods Headphones,1,150,10/04/19 14:19,"193 Johnson St, Boston, MA 02215" +277839,AA Batteries (4-pack),2,3.84,10/28/19 21:32,"454 5th St, Boston, MA 02215" +277840,ThinkPad Laptop,1,999.99,10/16/19 08:52,"824 2nd St, Los Angeles, CA 90001" +277841,AA Batteries (4-pack),1,3.84,10/03/19 16:38,"460 14th St, San Francisco, CA 94016" +277842,AAA Batteries (4-pack),1,2.99,10/25/19 11:09,"500 Wilson St, Los Angeles, CA 90001" +277843,AA Batteries (4-pack),1,3.84,10/13/19 23:05,"257 Washington St, New York City, NY 10001" +277844,Lightning Charging Cable,1,14.95,10/05/19 20:51,"605 Highland St, San Francisco, CA 94016" +277845,ThinkPad Laptop,1,999.99,10/26/19 20:06,"468 Hickory St, Austin, TX 73301" +277846,Lightning Charging Cable,1,14.95,10/01/19 18:28,"276 Lake St, San Francisco, CA 94016" +277847,AAA Batteries (4-pack),1,2.99,10/04/19 19:50,"72 Church St, San Francisco, CA 94016" +277848,Wired Headphones,1,11.99,10/22/19 14:02,"194 Walnut St, Atlanta, GA 30301" +277849,Lightning Charging Cable,1,14.95,10/20/19 09:05,"554 6th St, San Francisco, CA 94016" +277850,USB-C Charging Cable,1,11.95,10/11/19 20:13,"204 Johnson St, San Francisco, CA 94016" +277851,AA Batteries (4-pack),1,3.84,10/14/19 20:21,"300 8th St, Austin, TX 73301" +277852,Macbook Pro Laptop,1,1700,10/13/19 16:52,"372 Church St, San Francisco, CA 94016" +277853,Lightning Charging Cable,1,14.95,10/11/19 18:54,"569 8th St, New York City, NY 10001" +277854,AAA Batteries (4-pack),1,2.99,10/09/19 13:19,"344 6th St, Los Angeles, CA 90001" +277855,27in FHD Monitor,1,149.99,10/18/19 12:30,"153 Lincoln St, San Francisco, CA 94016" +277856,Lightning Charging Cable,1,14.95,10/26/19 19:28,"583 Jackson St, San Francisco, CA 94016" +277857,AA Batteries (4-pack),1,3.84,10/09/19 19:44,"512 Church St, San Francisco, CA 94016" +277858,34in Ultrawide Monitor,1,379.99,10/28/19 19:58,"221 Lakeview St, Seattle, WA 98101" +277859,AAA Batteries (4-pack),1,2.99,10/07/19 10:58,"569 Center St, Los Angeles, CA 90001" +277860,AAA Batteries (4-pack),1,2.99,10/16/19 20:15,"719 1st St, San Francisco, CA 94016" +277861,27in 4K Gaming Monitor,1,389.99,10/04/19 23:47,"915 Dogwood St, Los Angeles, CA 90001" +277862,USB-C Charging Cable,1,11.95,10/04/19 21:19,"955 Sunset St, Atlanta, GA 30301" +277863,USB-C Charging Cable,1,11.95,10/20/19 08:09,"985 Wilson St, Seattle, WA 98101" +277864,Bose SoundSport Headphones,1,99.99,10/23/19 08:56,"506 Ridge St, Portland, OR 97035" +277865,USB-C Charging Cable,1,11.95,10/31/19 21:00,"612 South St, Seattle, WA 98101" +277866,Wired Headphones,1,11.99,10/17/19 18:51,"312 Lake St, Portland, OR 97035" +277867,Macbook Pro Laptop,1,1700,10/22/19 14:22,"708 8th St, Los Angeles, CA 90001" +277868,AA Batteries (4-pack),1,3.84,10/28/19 16:46,"548 Jackson St, New York City, NY 10001" +277869,USB-C Charging Cable,1,11.95,10/09/19 11:41,"551 Meadow St, New York City, NY 10001" +277870,Lightning Charging Cable,1,14.95,10/08/19 13:33,"254 Meadow St, San Francisco, CA 94016" +277871,Apple Airpods Headphones,1,150,10/21/19 19:59,"745 13th St, Boston, MA 02215" +277872,Lightning Charging Cable,1,14.95,10/08/19 22:52,"462 West St, San Francisco, CA 94016" +277873,AAA Batteries (4-pack),1,2.99,10/19/19 07:11,"339 Meadow St, New York City, NY 10001" +277874,20in Monitor,1,109.99,10/17/19 20:22,"391 Dogwood St, San Francisco, CA 94016" +277875,AA Batteries (4-pack),1,3.84,10/08/19 20:04,"56 Main St, Los Angeles, CA 90001" +277876,Bose SoundSport Headphones,1,99.99,10/20/19 15:32,"195 River St, San Francisco, CA 94016" +277877,Flatscreen TV,1,300,10/02/19 15:37,"173 Jefferson St, Boston, MA 02215" +277878,Bose SoundSport Headphones,1,99.99,10/07/19 14:10,"794 Sunset St, Austin, TX 73301" +277879,iPhone,1,700,10/02/19 10:50,"418 Cedar St, Portland, OR 97035" +277880,USB-C Charging Cable,1,11.95,10/19/19 17:06,"151 Hickory St, San Francisco, CA 94016" +277880,USB-C Charging Cable,1,11.95,10/19/19 17:06,"151 Hickory St, San Francisco, CA 94016" +277881,ThinkPad Laptop,1,999.99,10/31/19 22:06,"402 Church St, New York City, NY 10001" +277882,Apple Airpods Headphones,1,150,10/23/19 22:11,"881 Hickory St, San Francisco, CA 94016" +277883,20in Monitor,1,109.99,10/09/19 09:20,"262 8th St, Los Angeles, CA 90001" +277884,Wired Headphones,1,11.99,10/15/19 15:23,"21 Wilson St, Portland, OR 97035" +277885,AA Batteries (4-pack),1,3.84,10/10/19 21:43,"221 Spruce St, Austin, TX 73301" +277886,20in Monitor,1,109.99,10/25/19 19:20,"979 1st St, San Francisco, CA 94016" +277887,Flatscreen TV,1,300,10/16/19 07:15,"347 River St, Los Angeles, CA 90001" +277888,iPhone,1,700,10/29/19 13:29,"513 Lake St, San Francisco, CA 94016" +277889,27in 4K Gaming Monitor,1,389.99,10/08/19 23:33,"919 Johnson St, New York City, NY 10001" +277890,USB-C Charging Cable,1,11.95,10/18/19 17:22,"759 Adams St, Portland, OR 97035" +277891,Wired Headphones,1,11.99,10/04/19 20:48,"628 6th St, Atlanta, GA 30301" +277892,27in 4K Gaming Monitor,1,389.99,10/27/19 19:36,"772 Ridge St, Seattle, WA 98101" +277892,USB-C Charging Cable,1,11.95,10/27/19 19:36,"772 Ridge St, Seattle, WA 98101" +277893,Wired Headphones,1,11.99,10/25/19 08:25,"731 Chestnut St, San Francisco, CA 94016" +277894,AAA Batteries (4-pack),1,2.99,10/23/19 17:21,"145 9th St, Los Angeles, CA 90001" +277895,Macbook Pro Laptop,1,1700,10/21/19 11:39,"189 Johnson St, San Francisco, CA 94016" +277896,AA Batteries (4-pack),1,3.84,10/14/19 08:51,"356 8th St, New York City, NY 10001" +277897,AA Batteries (4-pack),1,3.84,10/12/19 15:46,"544 2nd St, New York City, NY 10001" +277898,AAA Batteries (4-pack),2,2.99,10/17/19 21:14,"805 Wilson St, San Francisco, CA 94016" +277898,Lightning Charging Cable,1,14.95,10/17/19 21:14,"805 Wilson St, San Francisco, CA 94016" +277899,Flatscreen TV,1,300,10/13/19 08:10,"951 Madison St, Seattle, WA 98101" +277900,USB-C Charging Cable,1,11.95,10/13/19 16:40,"398 Ridge St, New York City, NY 10001" +277901,Flatscreen TV,1,300,10/30/19 10:07,"652 Highland St, Dallas, TX 75001" +277902,Apple Airpods Headphones,1,150,10/07/19 16:07,"74 12th St, Boston, MA 02215" +277903,USB-C Charging Cable,1,11.95,10/20/19 17:58,"296 Cedar St, Seattle, WA 98101" +277904,AAA Batteries (4-pack),1,2.99,10/11/19 13:45,"876 Highland St, Seattle, WA 98101" +277905,Lightning Charging Cable,1,14.95,10/27/19 22:02,"379 6th St, San Francisco, CA 94016" +277906,USB-C Charging Cable,1,11.95,10/05/19 14:29,"438 Pine St, Seattle, WA 98101" +277907,Google Phone,1,600,10/02/19 16:30,"570 West St, San Francisco, CA 94016" +277908,Google Phone,1,600,10/16/19 09:03,"100 Lincoln St, Boston, MA 02215" +277908,Apple Airpods Headphones,1,150,10/16/19 09:03,"100 Lincoln St, Boston, MA 02215" +277909,USB-C Charging Cable,1,11.95,10/13/19 21:42,"294 2nd St, San Francisco, CA 94016" +277910,AAA Batteries (4-pack),1,2.99,10/13/19 12:34,"908 Jackson St, San Francisco, CA 94016" +277911,USB-C Charging Cable,1,11.95,10/01/19 19:06,"941 Walnut St, San Francisco, CA 94016" +277912,Lightning Charging Cable,1,14.95,10/24/19 01:27,"651 Dogwood St, New York City, NY 10001" +277913,Lightning Charging Cable,1,14.95,10/28/19 16:16,"520 West St, Seattle, WA 98101" +277913,Wired Headphones,1,11.99,10/28/19 16:16,"520 West St, Seattle, WA 98101" +277914,LG Washing Machine,1,600.0,10/01/19 15:01,"256 Park St, Los Angeles, CA 90001" +277915,Apple Airpods Headphones,1,150,10/19/19 14:08,"809 Church St, Boston, MA 02215" +277916,Vareebadd Phone,1,400,10/10/19 14:17,"766 14th St, San Francisco, CA 94016" +277917,USB-C Charging Cable,1,11.95,10/13/19 11:15,"155 Adams St, San Francisco, CA 94016" +277918,AAA Batteries (4-pack),1,2.99,10/21/19 10:59,"53 Cedar St, San Francisco, CA 94016" +277919,Vareebadd Phone,1,400,10/22/19 19:00,"693 Park St, Portland, ME 04101" +277919,Wired Headphones,1,11.99,10/22/19 19:00,"693 Park St, Portland, ME 04101" +277920,iPhone,1,700,10/10/19 22:04,"601 Jackson St, Los Angeles, CA 90001" +277920,Wired Headphones,1,11.99,10/10/19 22:04,"601 Jackson St, Los Angeles, CA 90001" +277921,AAA Batteries (4-pack),3,2.99,10/31/19 09:14,"712 Madison St, New York City, NY 10001" +277922,AA Batteries (4-pack),2,3.84,10/06/19 12:31,"87 Park St, Los Angeles, CA 90001" +277923,Wired Headphones,1,11.99,10/24/19 17:25,"431 Lincoln St, Seattle, WA 98101" +277924,AAA Batteries (4-pack),1,2.99,10/29/19 11:32,"23 Madison St, New York City, NY 10001" +277925,Lightning Charging Cable,1,14.95,10/26/19 11:09,"619 Lincoln St, Portland, OR 97035" +277926,Apple Airpods Headphones,1,150,10/08/19 12:38,"443 Spruce St, New York City, NY 10001" +277927,Wired Headphones,2,11.99,10/13/19 19:24,"194 2nd St, San Francisco, CA 94016" +277928,27in 4K Gaming Monitor,1,389.99,10/17/19 11:15,"476 Elm St, San Francisco, CA 94016" +277929,USB-C Charging Cable,1,11.95,10/05/19 06:55,"151 Chestnut St, San Francisco, CA 94016" +277930,Wired Headphones,1,11.99,10/09/19 13:05,"671 Hickory St, Seattle, WA 98101" +277931,Vareebadd Phone,1,400,10/21/19 22:15,"869 South St, Austin, TX 73301" +277931,Wired Headphones,1,11.99,10/21/19 22:15,"869 South St, Austin, TX 73301" +277932,Apple Airpods Headphones,1,150,10/30/19 19:53,"604 Chestnut St, Boston, MA 02215" +277933,AA Batteries (4-pack),3,3.84,10/18/19 11:11,"675 Highland St, Los Angeles, CA 90001" +277934,Apple Airpods Headphones,1,150,10/09/19 18:21,"808 12th St, Los Angeles, CA 90001" +277935,AAA Batteries (4-pack),1,2.99,10/13/19 08:35,"468 12th St, San Francisco, CA 94016" +277936,34in Ultrawide Monitor,1,379.99,10/02/19 17:33,"158 Meadow St, San Francisco, CA 94016" +277937,ThinkPad Laptop,1,999.99,10/07/19 12:00,"963 Lake St, Los Angeles, CA 90001" +277938,Apple Airpods Headphones,1,150,10/06/19 19:05,"675 8th St, Los Angeles, CA 90001" +277939,Lightning Charging Cable,1,14.95,10/07/19 14:40,"59 North St, Boston, MA 02215" +277940,Lightning Charging Cable,1,14.95,10/04/19 20:31,"771 Cedar St, New York City, NY 10001" +277941,Macbook Pro Laptop,1,1700,10/24/19 15:16,"250 8th St, Los Angeles, CA 90001" +277942,Wired Headphones,1,11.99,10/01/19 13:04,"970 2nd St, San Francisco, CA 94016" +277943,AA Batteries (4-pack),1,3.84,10/21/19 01:18,"991 Walnut St, Los Angeles, CA 90001" +277944,34in Ultrawide Monitor,1,379.99,10/26/19 10:48,"84 Cherry St, Portland, OR 97035" +277945,USB-C Charging Cable,1,11.95,10/27/19 08:47,"866 Wilson St, Boston, MA 02215" +277946,USB-C Charging Cable,1,11.95,10/31/19 14:29,"840 Jackson St, New York City, NY 10001" +277947,Macbook Pro Laptop,1,1700,10/31/19 12:14,"489 Forest St, San Francisco, CA 94016" +277948,27in 4K Gaming Monitor,1,389.99,10/13/19 12:51,"652 8th St, Portland, OR 97035" +277949,USB-C Charging Cable,1,11.95,10/04/19 10:23,"510 Meadow St, Boston, MA 02215" +,,,,, +277950,AA Batteries (4-pack),1,3.84,10/18/19 22:13,"281 Lakeview St, San Francisco, CA 94016" +277951,Apple Airpods Headphones,1,150,10/09/19 15:36,"298 Lakeview St, Atlanta, GA 30301" +277952,USB-C Charging Cable,1,11.95,10/22/19 13:04,"97 Ridge St, Atlanta, GA 30301" +277953,27in FHD Monitor,1,149.99,10/03/19 21:22,"981 Jefferson St, San Francisco, CA 94016" +277954,Apple Airpods Headphones,1,150,10/18/19 13:53,"15 1st St, Atlanta, GA 30301" +277955,27in 4K Gaming Monitor,1,389.99,10/26/19 22:14,"423 Hill St, Dallas, TX 75001" +277956,27in FHD Monitor,1,149.99,10/11/19 17:19,"185 Walnut St, Seattle, WA 98101" +277957,USB-C Charging Cable,1,11.95,10/11/19 12:31,"762 Washington St, Los Angeles, CA 90001" +277958,Vareebadd Phone,1,400,10/07/19 17:21,"4 2nd St, Los Angeles, CA 90001" +277959,Lightning Charging Cable,1,14.95,10/12/19 15:33,"941 Chestnut St, Seattle, WA 98101" +277960,Apple Airpods Headphones,1,150,10/12/19 19:54,"901 5th St, San Francisco, CA 94016" +277961,Flatscreen TV,1,300,10/04/19 17:05,"751 12th St, Atlanta, GA 30301" +277962,Wired Headphones,1,11.99,10/27/19 12:24,"492 2nd St, Seattle, WA 98101" +277963,Macbook Pro Laptop,1,1700,10/18/19 19:02,"405 13th St, Los Angeles, CA 90001" +277964,Bose SoundSport Headphones,1,99.99,10/07/19 10:28,"71 Sunset St, Seattle, WA 98101" +277965,LG Washing Machine,1,600.0,10/17/19 15:51,"409 14th St, New York City, NY 10001" +277966,27in 4K Gaming Monitor,1,389.99,10/26/19 18:36,"250 8th St, New York City, NY 10001" +277967,iPhone,1,700,10/21/19 17:02,"83 8th St, San Francisco, CA 94016" +277967,Lightning Charging Cable,1,14.95,10/21/19 17:02,"83 8th St, San Francisco, CA 94016" +277968,USB-C Charging Cable,2,11.95,10/18/19 16:15,"87 Lincoln St, Austin, TX 73301" +277969,USB-C Charging Cable,1,11.95,10/24/19 15:10,"669 Jackson St, Austin, TX 73301" +277970,Apple Airpods Headphones,1,150,10/14/19 10:28,"754 Cherry St, New York City, NY 10001" +277971,27in FHD Monitor,1,149.99,10/28/19 09:39,"615 8th St, Seattle, WA 98101" +277972,34in Ultrawide Monitor,1,379.99,10/19/19 06:50,"788 Dogwood St, Atlanta, GA 30301" +277973,27in FHD Monitor,1,149.99,10/01/19 12:04,"594 1st St, Seattle, WA 98101" +277974,Macbook Pro Laptop,1,1700,10/10/19 15:04,"925 North St, Seattle, WA 98101" +277975,Wired Headphones,1,11.99,10/07/19 22:52,"503 Jackson St, Los Angeles, CA 90001" +277976,AAA Batteries (4-pack),1,2.99,10/23/19 01:02,"242 Lakeview St, San Francisco, CA 94016" +277977,USB-C Charging Cable,1,11.95,10/09/19 22:21,"887 Cherry St, San Francisco, CA 94016" +277978,Bose SoundSport Headphones,1,99.99,10/07/19 17:19,"842 11th St, New York City, NY 10001" +277979,Wired Headphones,1,11.99,10/29/19 06:43,"604 4th St, Boston, MA 02215" +277980,ThinkPad Laptop,1,999.99,10/05/19 10:35,"989 River St, Los Angeles, CA 90001" +277981,Bose SoundSport Headphones,1,99.99,10/21/19 13:44,"911 Meadow St, Boston, MA 02215" +277982,AAA Batteries (4-pack),1,2.99,10/04/19 14:45,"459 River St, San Francisco, CA 94016" +277983,34in Ultrawide Monitor,1,379.99,10/22/19 10:40,"447 Willow St, Atlanta, GA 30301" +277984,USB-C Charging Cable,1,11.95,10/13/19 12:32,"20 Washington St, Seattle, WA 98101" +277985,AA Batteries (4-pack),2,3.84,10/26/19 18:37,"166 Lincoln St, Los Angeles, CA 90001" +277986,Bose SoundSport Headphones,1,99.99,10/13/19 10:42,"594 Park St, San Francisco, CA 94016" +277987,Lightning Charging Cable,1,14.95,10/14/19 06:41,"835 River St, Portland, OR 97035" +277988,Bose SoundSport Headphones,1,99.99,10/25/19 20:22,"894 Ridge St, San Francisco, CA 94016" +277989,ThinkPad Laptop,1,999.99,10/27/19 22:28,"367 Sunset St, Dallas, TX 75001" +277990,USB-C Charging Cable,1,11.95,10/27/19 15:42,"65 Center St, Boston, MA 02215" +277991,Apple Airpods Headphones,1,150,10/16/19 23:16,"305 Park St, San Francisco, CA 94016" +277992,27in FHD Monitor,1,149.99,10/12/19 08:29,"668 12th St, Atlanta, GA 30301" +277992,Flatscreen TV,1,300,10/12/19 08:29,"668 12th St, Atlanta, GA 30301" +277993,Bose SoundSport Headphones,1,99.99,10/07/19 04:22,"874 2nd St, Portland, OR 97035" +277994,iPhone,1,700,10/14/19 14:40,"158 10th St, Dallas, TX 75001" +277995,Lightning Charging Cable,1,14.95,10/09/19 14:30,"856 Forest St, Seattle, WA 98101" +277996,AA Batteries (4-pack),2,3.84,10/11/19 14:26,"690 River St, New York City, NY 10001" +277997,Bose SoundSport Headphones,1,99.99,10/18/19 20:53,"509 10th St, San Francisco, CA 94016" +277998,USB-C Charging Cable,1,11.95,10/04/19 13:24,"236 Park St, San Francisco, CA 94016" +277999,AAA Batteries (4-pack),1,2.99,10/03/19 21:57,"724 Lincoln St, Portland, OR 97035" +278000,Lightning Charging Cable,1,14.95,10/13/19 18:53,"868 Park St, New York City, NY 10001" +278001,Apple Airpods Headphones,1,150,10/29/19 11:37,"675 Dogwood St, San Francisco, CA 94016" +278002,Lightning Charging Cable,2,14.95,10/19/19 17:31,"6 Highland St, San Francisco, CA 94016" +278003,27in FHD Monitor,1,149.99,10/06/19 14:56,"776 10th St, Austin, TX 73301" +278004,27in 4K Gaming Monitor,1,389.99,10/11/19 08:09,"889 1st St, New York City, NY 10001" +278005,Apple Airpods Headphones,1,150,10/15/19 19:16,"808 11th St, Portland, OR 97035" +278006,USB-C Charging Cable,1,11.95,10/10/19 19:17,"999 Johnson St, San Francisco, CA 94016" +278007,20in Monitor,1,109.99,10/10/19 14:23,"769 Willow St, Seattle, WA 98101" +278008,Wired Headphones,1,11.99,10/11/19 17:40,"657 Wilson St, Boston, MA 02215" +278009,AA Batteries (4-pack),1,3.84,10/24/19 14:27,"934 Hickory St, San Francisco, CA 94016" +278010,Bose SoundSport Headphones,1,99.99,10/28/19 14:29,"275 Forest St, Los Angeles, CA 90001" +278011,Lightning Charging Cable,1,14.95,10/14/19 11:40,"48 10th St, Portland, ME 04101" +278012,Wired Headphones,1,11.99,10/30/19 22:33,"871 Lakeview St, Austin, TX 73301" +278013,Google Phone,1,600,10/05/19 09:47,"657 8th St, Boston, MA 02215" +278014,Google Phone,1,600,10/06/19 11:10,"534 South St, San Francisco, CA 94016" +278015,Lightning Charging Cable,1,14.95,10/13/19 17:32,"539 5th St, San Francisco, CA 94016" +278016,USB-C Charging Cable,1,11.95,10/16/19 20:56,"837 2nd St, Portland, OR 97035" +278017,Wired Headphones,1,11.99,10/28/19 19:17,"242 9th St, Dallas, TX 75001" +278018,AAA Batteries (4-pack),1,2.99,10/14/19 21:48,"704 Meadow St, Boston, MA 02215" +278019,Apple Airpods Headphones,1,150,10/04/19 08:01,"163 Church St, San Francisco, CA 94016" +278020,AAA Batteries (4-pack),3,2.99,10/07/19 14:06,"277 Madison St, Boston, MA 02215" +278021,AAA Batteries (4-pack),1,2.99,10/14/19 16:46,"943 Cedar St, San Francisco, CA 94016" +278022,AAA Batteries (4-pack),1,2.99,10/26/19 22:08,"451 8th St, Los Angeles, CA 90001" +278023,Wired Headphones,1,11.99,10/26/19 21:22,"356 Forest St, Boston, MA 02215" +278024,Apple Airpods Headphones,1,150,10/30/19 03:37,"261 8th St, Los Angeles, CA 90001" +278025,iPhone,1,700,10/11/19 14:35,"792 Lincoln St, Los Angeles, CA 90001" +278026,AA Batteries (4-pack),1,3.84,10/27/19 02:40,"883 River St, New York City, NY 10001" +278027,Lightning Charging Cable,1,14.95,10/14/19 21:55,"526 Main St, Los Angeles, CA 90001" +278028,Bose SoundSport Headphones,1,99.99,10/12/19 12:45,"311 14th St, New York City, NY 10001" +278029,27in FHD Monitor,1,149.99,10/31/19 00:36,"783 Walnut St, Los Angeles, CA 90001" +278030,Apple Airpods Headphones,1,150,10/04/19 15:48,"567 12th St, Los Angeles, CA 90001" +278031,USB-C Charging Cable,1,11.95,10/03/19 09:42,"90 9th St, Los Angeles, CA 90001" +278032,Apple Airpods Headphones,1,150,10/18/19 07:49,"667 North St, Portland, OR 97035" +278033,iPhone,1,700,10/03/19 22:27,"981 Center St, Austin, TX 73301" +278034,Apple Airpods Headphones,1,150,10/31/19 05:46,"10 Lakeview St, San Francisco, CA 94016" +278035,27in 4K Gaming Monitor,1,389.99,10/03/19 17:21,"533 Ridge St, Los Angeles, CA 90001" +278036,27in FHD Monitor,2,149.99,10/03/19 18:06,"895 Jackson St, Portland, ME 04101" +278037,AA Batteries (4-pack),1,3.84,10/08/19 09:39,"337 Jefferson St, Atlanta, GA 30301" +278038,Lightning Charging Cable,1,14.95,10/01/19 14:53,"858 Adams St, Dallas, TX 75001" +278039,Wired Headphones,1,11.99,10/08/19 02:59,"142 12th St, Dallas, TX 75001" +278040,27in FHD Monitor,1,149.99,10/02/19 15:02,"254 Elm St, Los Angeles, CA 90001" +278041,AAA Batteries (4-pack),1,2.99,10/18/19 00:34,"263 6th St, Portland, ME 04101" +278042,Macbook Pro Laptop,1,1700,10/07/19 21:23,"954 Chestnut St, Boston, MA 02215" +278043,LG Dryer,1,600.0,10/14/19 09:43,"437 Maple St, Boston, MA 02215" +278044,27in FHD Monitor,1,149.99,10/06/19 18:04,"443 1st St, Austin, TX 73301" +278045,Wired Headphones,1,11.99,10/23/19 13:50,"341 Wilson St, Boston, MA 02215" +278046,Wired Headphones,1,11.99,10/23/19 18:43,"759 Adams St, Portland, OR 97035" +278047,AAA Batteries (4-pack),1,2.99,10/28/19 09:48,"331 8th St, Atlanta, GA 30301" +278048,Lightning Charging Cable,1,14.95,10/04/19 19:17,"595 Hill St, San Francisco, CA 94016" +278049,Lightning Charging Cable,1,14.95,10/16/19 19:09,"39 Highland St, Dallas, TX 75001" +278050,27in FHD Monitor,1,149.99,10/27/19 15:21,"514 Ridge St, Boston, MA 02215" +278051,AAA Batteries (4-pack),1,2.99,10/11/19 09:54,"911 13th St, San Francisco, CA 94016" +278052,AAA Batteries (4-pack),2,2.99,10/11/19 17:16,"145 Dogwood St, Los Angeles, CA 90001" +278053,USB-C Charging Cable,1,11.95,10/24/19 14:56,"498 Jackson St, Dallas, TX 75001" +278054,Vareebadd Phone,1,400,10/28/19 19:34,"987 Cherry St, Seattle, WA 98101" +278054,USB-C Charging Cable,1,11.95,10/28/19 19:34,"987 Cherry St, Seattle, WA 98101" +278054,Wired Headphones,1,11.99,10/28/19 19:34,"987 Cherry St, Seattle, WA 98101" +278055,AA Batteries (4-pack),1,3.84,10/02/19 14:15,"185 Willow St, New York City, NY 10001" +278056,Google Phone,1,600,10/15/19 18:40,"522 Madison St, San Francisco, CA 94016" +278057,Lightning Charging Cable,1,14.95,10/23/19 21:36,"905 Spruce St, New York City, NY 10001" +278058,AAA Batteries (4-pack),1,2.99,10/16/19 12:23,"231 9th St, New York City, NY 10001" +278059,Lightning Charging Cable,1,14.95,10/20/19 15:52,"106 Elm St, San Francisco, CA 94016" +278060,Bose SoundSport Headphones,1,99.99,10/05/19 12:53,"108 Sunset St, Los Angeles, CA 90001" +278061,Wired Headphones,1,11.99,10/06/19 12:10,"290 7th St, New York City, NY 10001" +278062,Wired Headphones,1,11.99,10/26/19 17:24,"682 Johnson St, Seattle, WA 98101" +278063,USB-C Charging Cable,1,11.95,10/07/19 10:31,"291 Pine St, Seattle, WA 98101" +278064,27in FHD Monitor,1,149.99,10/31/19 17:51,"778 Jackson St, Los Angeles, CA 90001" +278065,Macbook Pro Laptop,1,1700,10/23/19 08:40,"412 Ridge St, Los Angeles, CA 90001" +278066,Wired Headphones,1,11.99,10/01/19 15:59,"90 Hickory St, Los Angeles, CA 90001" +278067,Wired Headphones,2,11.99,10/18/19 16:12,"441 4th St, Atlanta, GA 30301" +278068,Wired Headphones,1,11.99,10/16/19 11:36,"402 Elm St, San Francisco, CA 94016" +278069,Wired Headphones,1,11.99,10/04/19 11:02,"744 Pine St, New York City, NY 10001" +278070,AA Batteries (4-pack),1,3.84,10/13/19 11:30,"374 West St, Los Angeles, CA 90001" +278071,Google Phone,1,600,10/06/19 15:07,"824 Jefferson St, Portland, OR 97035" +278072,Wired Headphones,1,11.99,10/24/19 21:12,"253 Main St, Dallas, TX 75001" +278073,AAA Batteries (4-pack),1,2.99,10/20/19 16:36,"50 Johnson St, Los Angeles, CA 90001" +278074,USB-C Charging Cable,2,11.95,10/19/19 16:28,"917 1st St, Atlanta, GA 30301" +278075,AAA Batteries (4-pack),2,2.99,10/03/19 12:54,"521 Cherry St, Dallas, TX 75001" +278076,AA Batteries (4-pack),1,3.84,10/29/19 10:20,"461 Cedar St, Portland, OR 97035" +278077,AAA Batteries (4-pack),1,2.99,10/27/19 13:37,"448 Elm St, Los Angeles, CA 90001" +278078,AA Batteries (4-pack),1,3.84,10/07/19 00:31,"318 8th St, Atlanta, GA 30301" +278079,ThinkPad Laptop,1,999.99,10/23/19 23:17,"997 Lincoln St, Seattle, WA 98101" +278080,Bose SoundSport Headphones,1,99.99,10/08/19 17:44,"636 Washington St, Austin, TX 73301" +278081,AAA Batteries (4-pack),1,2.99,10/16/19 17:04,"688 Elm St, Boston, MA 02215" +278082,USB-C Charging Cable,1,11.95,10/23/19 19:38,"934 Hill St, San Francisco, CA 94016" +278083,Bose SoundSport Headphones,1,99.99,10/25/19 09:02,"377 4th St, Austin, TX 73301" +278084,AAA Batteries (4-pack),1,2.99,10/07/19 09:36,"595 13th St, San Francisco, CA 94016" +278085,AAA Batteries (4-pack),1,2.99,10/30/19 12:08,"310 Dogwood St, Seattle, WA 98101" +278086,USB-C Charging Cable,1,11.95,10/21/19 14:55,"320 Lincoln St, New York City, NY 10001" +278087,Bose SoundSport Headphones,1,99.99,10/10/19 02:58,"327 8th St, Boston, MA 02215" +278088,AAA Batteries (4-pack),1,2.99,10/05/19 19:39,"280 South St, Seattle, WA 98101" +278089,AA Batteries (4-pack),1,3.84,10/10/19 17:03,"237 Jefferson St, Dallas, TX 75001" +278090,AA Batteries (4-pack),1,3.84,10/29/19 22:05,"163 2nd St, Los Angeles, CA 90001" +278091,Wired Headphones,1,11.99,10/16/19 07:09,"603 2nd St, Boston, MA 02215" +278092,AA Batteries (4-pack),1,3.84,10/12/19 03:57,"531 Pine St, San Francisco, CA 94016" +278093,Google Phone,1,600,10/09/19 17:53,"652 Forest St, San Francisco, CA 94016" +278093,USB-C Charging Cable,1,11.95,10/09/19 17:53,"652 Forest St, San Francisco, CA 94016" +278093,Wired Headphones,1,11.99,10/09/19 17:53,"652 Forest St, San Francisco, CA 94016" +278094,Macbook Pro Laptop,1,1700,10/24/19 17:47,"834 Spruce St, New York City, NY 10001" +278095,Apple Airpods Headphones,1,150,10/10/19 19:43,"484 Lakeview St, Los Angeles, CA 90001" +278096,27in FHD Monitor,1,149.99,10/05/19 14:36,"516 Highland St, Seattle, WA 98101" +278097,USB-C Charging Cable,2,11.95,10/06/19 10:41,"140 10th St, San Francisco, CA 94016" +278098,27in 4K Gaming Monitor,1,389.99,10/12/19 14:40,"825 North St, Los Angeles, CA 90001" +278099,AA Batteries (4-pack),1,3.84,10/25/19 14:38,"788 Forest St, Boston, MA 02215" +278100,Lightning Charging Cable,1,14.95,10/16/19 19:08,"419 Chestnut St, Atlanta, GA 30301" +278101,AA Batteries (4-pack),1,3.84,10/13/19 11:22,"321 Sunset St, New York City, NY 10001" +278102,Google Phone,1,600,10/27/19 09:53,"506 Forest St, Los Angeles, CA 90001" +278103,AAA Batteries (4-pack),2,2.99,10/16/19 13:19,"711 2nd St, Seattle, WA 98101" +278104,AA Batteries (4-pack),1,3.84,10/20/19 08:56,"585 1st St, San Francisco, CA 94016" +278105,Lightning Charging Cable,1,14.95,10/01/19 18:23,"190 Madison St, Boston, MA 02215" +278106,AA Batteries (4-pack),1,3.84,10/22/19 16:29,"267 6th St, San Francisco, CA 94016" +278107,Lightning Charging Cable,1,14.95,10/24/19 16:25,"52 10th St, Portland, OR 97035" +278108,20in Monitor,1,109.99,10/31/19 09:53,"618 South St, Los Angeles, CA 90001" +278109,iPhone,1,700,10/24/19 14:23,"758 Lincoln St, San Francisco, CA 94016" +278109,Lightning Charging Cable,1,14.95,10/24/19 14:23,"758 Lincoln St, San Francisco, CA 94016" +278109,34in Ultrawide Monitor,1,379.99,10/24/19 14:23,"758 Lincoln St, San Francisco, CA 94016" +278110,USB-C Charging Cable,1,11.95,10/14/19 19:18,"130 12th St, Boston, MA 02215" +278111,USB-C Charging Cable,1,11.95,10/10/19 09:36,"558 Cedar St, Dallas, TX 75001" +278112,Macbook Pro Laptop,1,1700,10/19/19 13:53,"890 Main St, New York City, NY 10001" +278113,iPhone,1,700,10/18/19 13:24,"461 Hill St, Los Angeles, CA 90001" +278114,AAA Batteries (4-pack),4,2.99,10/29/19 15:13,"654 Washington St, San Francisco, CA 94016" +278115,USB-C Charging Cable,1,11.95,10/22/19 00:21,"443 Park St, New York City, NY 10001" +278116,USB-C Charging Cable,1,11.95,10/19/19 19:26,"626 4th St, New York City, NY 10001" +278117,USB-C Charging Cable,1,11.95,10/19/19 06:28,"478 Church St, San Francisco, CA 94016" +278118,Lightning Charging Cable,1,14.95,10/24/19 15:13,"781 Madison St, San Francisco, CA 94016" +278119,Lightning Charging Cable,1,14.95,10/09/19 16:06,"863 Church St, San Francisco, CA 94016" +278120,Bose SoundSport Headphones,1,99.99,10/10/19 20:05,"105 Sunset St, San Francisco, CA 94016" +278121,AA Batteries (4-pack),1,3.84,10/07/19 12:35,"158 Ridge St, Seattle, WA 98101" +278122,AA Batteries (4-pack),2,3.84,10/08/19 23:16,"982 West St, San Francisco, CA 94016" +278123,AAA Batteries (4-pack),1,2.99,10/13/19 11:00,"964 Lincoln St, Austin, TX 73301" +278124,Wired Headphones,2,11.99,10/09/19 21:35,"91 1st St, San Francisco, CA 94016" +278125,Bose SoundSport Headphones,1,99.99,10/17/19 12:48,"147 2nd St, Los Angeles, CA 90001" +278126,Wired Headphones,1,11.99,10/26/19 22:59,"708 Maple St, New York City, NY 10001" +278126,USB-C Charging Cable,1,11.95,10/26/19 22:59,"708 Maple St, New York City, NY 10001" +278127,Apple Airpods Headphones,1,150,10/06/19 18:48,"847 Hill St, Boston, MA 02215" +278128,Bose SoundSport Headphones,1,99.99,10/25/19 18:02,"406 Spruce St, Dallas, TX 75001" +278129,ThinkPad Laptop,1,999.99,10/30/19 14:00,"668 Jackson St, Los Angeles, CA 90001" +278130,Apple Airpods Headphones,1,150,10/13/19 08:42,"745 5th St, San Francisco, CA 94016" +278131,Apple Airpods Headphones,1,150,10/16/19 00:05,"398 West St, San Francisco, CA 94016" +278132,AA Batteries (4-pack),2,3.84,10/23/19 21:36,"148 Pine St, San Francisco, CA 94016" +278133,Bose SoundSport Headphones,1,99.99,10/17/19 15:19,"45 11th St, San Francisco, CA 94016" +278134,Flatscreen TV,1,300,10/30/19 09:25,"441 12th St, Boston, MA 02215" +278135,Wired Headphones,1,11.99,10/26/19 17:53,"528 South St, Seattle, WA 98101" +278136,USB-C Charging Cable,1,11.95,10/17/19 21:06,"536 Elm St, Austin, TX 73301" +278137,AA Batteries (4-pack),1,3.84,10/16/19 17:38,"443 Cherry St, New York City, NY 10001" +278138,Google Phone,1,600,10/16/19 12:13,"985 Adams St, Los Angeles, CA 90001" +278139,AAA Batteries (4-pack),1,2.99,10/21/19 08:59,"395 Chestnut St, Boston, MA 02215" +278140,iPhone,1,700,10/25/19 11:33,"934 Lake St, Los Angeles, CA 90001" +278141,27in FHD Monitor,1,149.99,10/06/19 17:07,"831 6th St, San Francisco, CA 94016" +278142,USB-C Charging Cable,1,11.95,10/31/19 11:54,"730 Walnut St, New York City, NY 10001" +278143,Lightning Charging Cable,1,14.95,10/03/19 06:49,"485 Highland St, Seattle, WA 98101" +278144,AA Batteries (4-pack),2,3.84,10/09/19 21:57,"750 Center St, San Francisco, CA 94016" +278145,AA Batteries (4-pack),2,3.84,10/21/19 09:07,"721 14th St, Dallas, TX 75001" +278146,Bose SoundSport Headphones,1,99.99,10/25/19 17:03,"458 Cedar St, Dallas, TX 75001" +278147,Lightning Charging Cable,1,14.95,10/03/19 10:23,"905 Washington St, Los Angeles, CA 90001" +278148,Flatscreen TV,1,300,10/05/19 17:00,"137 Jackson St, Los Angeles, CA 90001" +278149,Vareebadd Phone,1,400,10/28/19 21:23,"184 Lincoln St, Dallas, TX 75001" +278150,Lightning Charging Cable,1,14.95,10/08/19 14:25,"90 9th St, Portland, OR 97035" +278151,Wired Headphones,1,11.99,10/15/19 12:32,"653 2nd St, Portland, OR 97035" +278152,Lightning Charging Cable,1,14.95,10/17/19 17:55,"717 Forest St, Austin, TX 73301" +278153,AAA Batteries (4-pack),1,2.99,10/25/19 08:46,"91 Dogwood St, Portland, OR 97035" +278154,Wired Headphones,1,11.99,10/20/19 12:11,"690 North St, San Francisco, CA 94016" +278155,Bose SoundSport Headphones,1,99.99,10/28/19 20:24,"15 Cedar St, Dallas, TX 75001" +278156,Lightning Charging Cable,1,14.95,10/21/19 17:42,"567 Jackson St, Seattle, WA 98101" +278157,Bose SoundSport Headphones,1,99.99,10/30/19 09:25,"710 6th St, Atlanta, GA 30301" +278158,iPhone,1,700,10/05/19 14:21,"807 4th St, Los Angeles, CA 90001" +278159,Apple Airpods Headphones,1,150,10/12/19 17:46,"930 Elm St, Dallas, TX 75001" +278160,Wired Headphones,1,11.99,10/09/19 02:34,"743 9th St, Portland, OR 97035" +278161,AAA Batteries (4-pack),2,2.99,10/02/19 17:32,"595 River St, Boston, MA 02215" +278162,Bose SoundSport Headphones,1,99.99,10/08/19 14:26,"592 Wilson St, Boston, MA 02215" +278163,USB-C Charging Cable,1,11.95,10/27/19 00:28,"958 Johnson St, Dallas, TX 75001" +278164,AA Batteries (4-pack),1,3.84,10/26/19 19:10,"997 Hickory St, Atlanta, GA 30301" +278165,AAA Batteries (4-pack),1,2.99,10/05/19 18:27,"306 7th St, Los Angeles, CA 90001" +278166,AAA Batteries (4-pack),1,2.99,10/20/19 17:00,"192 Spruce St, San Francisco, CA 94016" +278167,Lightning Charging Cable,1,14.95,10/20/19 20:45,"41 Sunset St, Boston, MA 02215" +278168,Lightning Charging Cable,1,14.95,10/09/19 19:28,"54 North St, Boston, MA 02215" +278169,Apple Airpods Headphones,1,150,10/10/19 19:30,"729 8th St, New York City, NY 10001" +278170,AAA Batteries (4-pack),1,2.99,10/24/19 15:27,"984 Center St, Los Angeles, CA 90001" +278171,Bose SoundSport Headphones,1,99.99,10/31/19 17:36,"350 Cherry St, Atlanta, GA 30301" +278172,USB-C Charging Cable,1,11.95,10/14/19 15:07,"864 5th St, Portland, ME 04101" +278173,AAA Batteries (4-pack),1,2.99,10/19/19 15:41,"371 Spruce St, New York City, NY 10001" +278174,iPhone,1,700,10/26/19 12:52,"94 Lincoln St, San Francisco, CA 94016" +278175,Bose SoundSport Headphones,1,99.99,10/24/19 13:33,"984 Adams St, New York City, NY 10001" +278176,Bose SoundSport Headphones,1,99.99,10/30/19 05:45,"760 12th St, Los Angeles, CA 90001" +278177,AAA Batteries (4-pack),1,2.99,10/12/19 11:59,"946 Maple St, Boston, MA 02215" +278178,USB-C Charging Cable,1,11.95,10/15/19 12:08,"629 9th St, New York City, NY 10001" +278179,Bose SoundSport Headphones,1,99.99,10/10/19 10:14,"455 Walnut St, San Francisco, CA 94016" +278180,Wired Headphones,1,11.99,10/26/19 11:05,"64 Lincoln St, Atlanta, GA 30301" +278181,Wired Headphones,1,11.99,10/30/19 08:04,"85 Hill St, San Francisco, CA 94016" +278182,Macbook Pro Laptop,1,1700,10/16/19 17:50,"77 Jefferson St, Boston, MA 02215" +278183,Lightning Charging Cable,1,14.95,10/26/19 16:31,"987 14th St, San Francisco, CA 94016" +278184,Apple Airpods Headphones,1,150,10/06/19 16:45,"447 Sunset St, San Francisco, CA 94016" +278185,Bose SoundSport Headphones,1,99.99,10/08/19 18:15,"957 Pine St, Los Angeles, CA 90001" +278186,20in Monitor,1,109.99,10/26/19 08:17,"118 Lincoln St, Los Angeles, CA 90001" +278187,Macbook Pro Laptop,1,1700,10/11/19 12:16,"822 Church St, Los Angeles, CA 90001" +278188,AAA Batteries (4-pack),1,2.99,10/18/19 10:15,"320 Church St, Dallas, TX 75001" +278189,USB-C Charging Cable,1,11.95,10/02/19 10:36,"487 11th St, Austin, TX 73301" +278190,USB-C Charging Cable,1,11.95,10/30/19 18:57,"323 6th St, San Francisco, CA 94016" +278191,Lightning Charging Cable,1,14.95,10/10/19 20:38,"406 Adams St, Boston, MA 02215" +278192,Lightning Charging Cable,1,14.95,10/29/19 19:05,"864 11th St, New York City, NY 10001" +278193,Wired Headphones,1,11.99,10/19/19 01:32,"532 4th St, Atlanta, GA 30301" +278194,AAA Batteries (4-pack),1,2.99,10/05/19 13:24,"74 South St, New York City, NY 10001" +278195,20in Monitor,1,109.99,10/07/19 21:07,"77 Cherry St, Atlanta, GA 30301" +278196,Vareebadd Phone,1,400,10/01/19 05:03,"334 Lakeview St, Portland, OR 97035" +278197,Bose SoundSport Headphones,1,99.99,10/09/19 19:14,"904 Lincoln St, Boston, MA 02215" +278198,AA Batteries (4-pack),1,3.84,10/21/19 11:29,"464 Washington St, New York City, NY 10001" +278199,AA Batteries (4-pack),2,3.84,10/03/19 11:42,"117 Highland St, Austin, TX 73301" +278200,USB-C Charging Cable,1,11.95,10/16/19 14:35,"403 West St, New York City, NY 10001" +278201,Lightning Charging Cable,1,14.95,10/01/19 10:45,"178 Hickory St, San Francisco, CA 94016" +278202,Lightning Charging Cable,1,14.95,10/29/19 08:43,"409 Elm St, San Francisco, CA 94016" +278203,Lightning Charging Cable,1,14.95,10/23/19 10:39,"523 Washington St, San Francisco, CA 94016" +278204,AA Batteries (4-pack),1,3.84,10/02/19 21:44,"49 Walnut St, San Francisco, CA 94016" +278205,AA Batteries (4-pack),1,3.84,10/14/19 10:35,"556 Park St, San Francisco, CA 94016" +278206,iPhone,1,700,10/02/19 16:05,"130 Johnson St, Seattle, WA 98101" +278207,USB-C Charging Cable,1,11.95,10/08/19 10:43,"348 11th St, Atlanta, GA 30301" +278208,Apple Airpods Headphones,1,150,10/02/19 17:44,"974 Main St, San Francisco, CA 94016" +278209,27in FHD Monitor,1,149.99,10/16/19 16:11,"631 South St, San Francisco, CA 94016" +278210,Lightning Charging Cable,1,14.95,10/15/19 18:49,"881 Hill St, Boston, MA 02215" +278211,Wired Headphones,1,11.99,10/25/19 19:33,"472 1st St, Seattle, WA 98101" +278212,Bose SoundSport Headphones,1,99.99,10/29/19 21:18,"495 7th St, Los Angeles, CA 90001" +278213,27in FHD Monitor,1,149.99,10/04/19 10:11,"648 Lake St, Austin, TX 73301" +278214,Wired Headphones,1,11.99,10/08/19 00:45,"135 2nd St, Atlanta, GA 30301" +278215,AAA Batteries (4-pack),1,2.99,10/10/19 17:06,"291 Hill St, Boston, MA 02215" +278216,AA Batteries (4-pack),1,3.84,10/22/19 21:26,"331 Hickory St, Boston, MA 02215" +278217,USB-C Charging Cable,1,11.95,10/30/19 12:14,"333 Johnson St, Atlanta, GA 30301" +278218,Apple Airpods Headphones,1,150,10/15/19 16:24,"367 11th St, Los Angeles, CA 90001" +278219,27in 4K Gaming Monitor,1,389.99,10/21/19 14:17,"437 Lakeview St, San Francisco, CA 94016" +278220,USB-C Charging Cable,1,11.95,10/19/19 13:21,"441 Willow St, New York City, NY 10001" +278221,iPhone,1,700,10/21/19 11:07,"901 Cherry St, Seattle, WA 98101" +278222,iPhone,1,700,10/30/19 12:45,"304 Main St, New York City, NY 10001" +278222,Wired Headphones,1,11.99,10/30/19 12:45,"304 Main St, New York City, NY 10001" +278223,Macbook Pro Laptop,1,1700,10/18/19 18:56,"995 Pine St, New York City, NY 10001" +278224,AA Batteries (4-pack),2,3.84,10/02/19 16:31,"728 4th St, Dallas, TX 75001" +278225,AAA Batteries (4-pack),1,2.99,10/14/19 19:51,"408 Lincoln St, Dallas, TX 75001" +278226,AA Batteries (4-pack),1,3.84,10/26/19 16:25,"875 Jackson St, San Francisco, CA 94016" +278227,AAA Batteries (4-pack),2,2.99,10/14/19 13:53,"136 Cedar St, Los Angeles, CA 90001" +278228,Lightning Charging Cable,1,14.95,10/03/19 13:04,"229 11th St, San Francisco, CA 94016" +278229,USB-C Charging Cable,1,11.95,10/27/19 10:21,"759 Church St, San Francisco, CA 94016" +278230,iPhone,1,700,10/15/19 22:05,"732 9th St, New York City, NY 10001" +278230,Wired Headphones,1,11.99,10/15/19 22:05,"732 9th St, New York City, NY 10001" +278231,AAA Batteries (4-pack),2,2.99,10/01/19 17:57,"638 Washington St, Atlanta, GA 30301" +278232,Bose SoundSport Headphones,1,99.99,10/26/19 20:07,"263 6th St, Boston, MA 02215" +278233,Google Phone,1,600,10/18/19 11:00,"910 Lincoln St, Boston, MA 02215" +278233,USB-C Charging Cable,1,11.95,10/18/19 11:00,"910 Lincoln St, Boston, MA 02215" +278234,Lightning Charging Cable,1,14.95,10/25/19 12:09,"222 Lincoln St, San Francisco, CA 94016" +278235,AA Batteries (4-pack),1,3.84,10/25/19 07:39,"609 Lakeview St, Los Angeles, CA 90001" +278236,Flatscreen TV,1,300,10/15/19 12:31,"182 Walnut St, Atlanta, GA 30301" +278237,Lightning Charging Cable,1,14.95,10/11/19 17:50,"755 West St, Boston, MA 02215" +278238,34in Ultrawide Monitor,1,379.99,10/25/19 19:35,"490 Walnut St, San Francisco, CA 94016" +278239,AA Batteries (4-pack),1,3.84,10/24/19 14:05,"758 Madison St, San Francisco, CA 94016" +278240,Bose SoundSport Headphones,1,99.99,10/24/19 16:50,"22 Wilson St, Boston, MA 02215" +278241,AAA Batteries (4-pack),1,2.99,10/06/19 18:29,"931 12th St, San Francisco, CA 94016" +278242,Google Phone,1,600,10/21/19 00:27,"100 Chestnut St, Portland, OR 97035" +278243,27in 4K Gaming Monitor,1,389.99,10/04/19 19:27,"284 14th St, Atlanta, GA 30301" +278244,Bose SoundSport Headphones,1,99.99,10/11/19 23:23,"453 Jackson St, San Francisco, CA 94016" +278245,Apple Airpods Headphones,1,150,10/28/19 18:07,"618 Willow St, Seattle, WA 98101" +278246,AAA Batteries (4-pack),2,2.99,10/15/19 12:05,"681 Spruce St, Boston, MA 02215" +278247,Bose SoundSport Headphones,1,99.99,10/05/19 12:35,"950 Washington St, Boston, MA 02215" +278248,27in 4K Gaming Monitor,1,389.99,10/30/19 18:02,"791 Church St, San Francisco, CA 94016" +278249,Lightning Charging Cable,2,14.95,10/06/19 11:58,"10 Johnson St, San Francisco, CA 94016" +278250,Apple Airpods Headphones,1,150,10/03/19 16:56,"810 9th St, Seattle, WA 98101" +278251,Lightning Charging Cable,1,14.95,10/27/19 10:08,"457 Highland St, Atlanta, GA 30301" +278252,AAA Batteries (4-pack),1,2.99,10/04/19 19:45,"568 6th St, Boston, MA 02215" +278253,USB-C Charging Cable,1,11.95,10/12/19 08:18,"435 4th St, Boston, MA 02215" +278254,Apple Airpods Headphones,1,150,10/03/19 19:29,"240 5th St, New York City, NY 10001" +278255,Lightning Charging Cable,1,14.95,10/26/19 00:20,"93 Forest St, Atlanta, GA 30301" +278256,27in FHD Monitor,1,149.99,10/25/19 16:39,"187 West St, San Francisco, CA 94016" +278257,34in Ultrawide Monitor,1,379.99,10/24/19 16:28,"57 14th St, San Francisco, CA 94016" +278258,27in 4K Gaming Monitor,1,389.99,10/31/19 17:14,"202 North St, San Francisco, CA 94016" +278259,ThinkPad Laptop,1,999.99,10/29/19 18:01,"893 North St, Los Angeles, CA 90001" +278260,Apple Airpods Headphones,1,150,10/06/19 18:25,"928 Johnson St, Los Angeles, CA 90001" +278261,Apple Airpods Headphones,1,150,10/13/19 15:08,"254 Hill St, Los Angeles, CA 90001" +278262,27in FHD Monitor,1,149.99,10/31/19 18:20,"862 9th St, Seattle, WA 98101" +278263,ThinkPad Laptop,1,999.99,10/18/19 10:50,"814 Highland St, Los Angeles, CA 90001" +278264,34in Ultrawide Monitor,1,379.99,10/29/19 11:45,"851 Park St, Austin, TX 73301" +278265,Google Phone,1,600,10/17/19 17:02,"792 Johnson St, New York City, NY 10001" +278266,20in Monitor,1,109.99,10/09/19 21:09,"62 Lakeview St, Atlanta, GA 30301" +278267,Macbook Pro Laptop,1,1700,10/12/19 21:32,"312 5th St, New York City, NY 10001" +278268,USB-C Charging Cable,1,11.95,10/11/19 11:21,"919 11th St, Atlanta, GA 30301" +278269,AA Batteries (4-pack),2,3.84,10/08/19 13:11,"431 4th St, Dallas, TX 75001" +278270,ThinkPad Laptop,1,999.99,10/19/19 20:19,"713 Hill St, Austin, TX 73301" +278271,Bose SoundSport Headphones,1,99.99,10/18/19 13:38,"237 Maple St, Austin, TX 73301" +278272,USB-C Charging Cable,1,11.95,10/31/19 23:22,"761 Jefferson St, Los Angeles, CA 90001" +278273,Apple Airpods Headphones,1,150,10/03/19 18:52,"605 2nd St, Los Angeles, CA 90001" +278274,Bose SoundSport Headphones,1,99.99,11/01/19 02:13,"497 Hill St, San Francisco, CA 94016" +,,,,, +278275,Wired Headphones,1,11.99,10/17/19 21:52,"336 Maple St, Portland, OR 97035" +278276,ThinkPad Laptop,1,999.99,10/02/19 13:40,"207 6th St, Los Angeles, CA 90001" +278277,34in Ultrawide Monitor,1,379.99,10/31/19 16:34,"171 Madison St, New York City, NY 10001" +278278,Apple Airpods Headphones,1,150,10/25/19 11:40,"417 Chestnut St, San Francisco, CA 94016" +278279,Wired Headphones,1,11.99,10/09/19 21:44,"596 6th St, Los Angeles, CA 90001" +278280,34in Ultrawide Monitor,1,379.99,10/12/19 14:51,"131 Walnut St, Dallas, TX 75001" +278281,34in Ultrawide Monitor,1,379.99,10/04/19 16:30,"313 Main St, Los Angeles, CA 90001" +278282,Lightning Charging Cable,1,14.95,10/10/19 15:18,"858 Wilson St, Atlanta, GA 30301" +278283,Bose SoundSport Headphones,1,99.99,10/25/19 09:19,"766 Washington St, Seattle, WA 98101" +278284,27in FHD Monitor,1,149.99,10/17/19 20:19,"80 Highland St, San Francisco, CA 94016" +278285,AAA Batteries (4-pack),2,2.99,10/13/19 10:55,"92 Cedar St, Boston, MA 02215" +278286,Flatscreen TV,1,300,10/24/19 17:59,"892 West St, Boston, MA 02215" +278287,Lightning Charging Cable,1,14.95,10/15/19 19:56,"505 7th St, Boston, MA 02215" +278288,Vareebadd Phone,1,400,10/29/19 11:43,"365 2nd St, New York City, NY 10001" +278289,Lightning Charging Cable,1,14.95,10/10/19 20:58,"501 Spruce St, San Francisco, CA 94016" +278290,ThinkPad Laptop,1,999.99,10/26/19 17:00,"34 Main St, Atlanta, GA 30301" +278291,USB-C Charging Cable,1,11.95,10/24/19 19:35,"966 11th St, Seattle, WA 98101" +278292,Apple Airpods Headphones,1,150,10/19/19 20:53,"910 Center St, New York City, NY 10001" +278293,AAA Batteries (4-pack),1,2.99,10/05/19 19:03,"209 Cedar St, Los Angeles, CA 90001" +278294,Apple Airpods Headphones,1,150,10/10/19 18:46,"960 River St, Dallas, TX 75001" +278295,Apple Airpods Headphones,1,150,10/03/19 18:41,"895 River St, Portland, OR 97035" +278296,USB-C Charging Cable,1,11.95,10/23/19 22:33,"63 5th St, Dallas, TX 75001" +278297,AAA Batteries (4-pack),2,2.99,10/15/19 16:56,"609 Cherry St, Boston, MA 02215" +278298,USB-C Charging Cable,2,11.95,10/07/19 11:45,"740 Walnut St, New York City, NY 10001" +278299,20in Monitor,1,109.99,10/13/19 16:51,"370 Hickory St, San Francisco, CA 94016" +278300,Wired Headphones,1,11.99,10/18/19 09:37,"830 Elm St, Los Angeles, CA 90001" +278301,ThinkPad Laptop,1,999.99,10/24/19 19:03,"232 River St, Dallas, TX 75001" +278302,Lightning Charging Cable,1,14.95,10/12/19 15:39,"307 Madison St, New York City, NY 10001" +278303,34in Ultrawide Monitor,1,379.99,10/17/19 18:42,"496 Hill St, San Francisco, CA 94016" +278304,Bose SoundSport Headphones,1,99.99,10/24/19 10:45,"875 14th St, Atlanta, GA 30301" +278305,AAA Batteries (4-pack),1,2.99,10/05/19 20:10,"550 5th St, San Francisco, CA 94016" +278306,Google Phone,1,600,10/27/19 17:47,"179 13th St, Atlanta, GA 30301" +278307,Lightning Charging Cable,1,14.95,10/03/19 14:31,"525 Adams St, Boston, MA 02215" +278308,Wired Headphones,1,11.99,10/26/19 19:24,"767 Main St, Los Angeles, CA 90001" +278309,AAA Batteries (4-pack),1,2.99,10/10/19 10:04,"574 6th St, Seattle, WA 98101" +278310,Apple Airpods Headphones,1,150,10/22/19 21:32,"324 Spruce St, San Francisco, CA 94016" +278311,Wired Headphones,1,11.99,10/02/19 17:36,"355 Ridge St, Austin, TX 73301" +278312,USB-C Charging Cable,1,11.95,10/23/19 08:19,"45 11th St, Boston, MA 02215" +278313,Lightning Charging Cable,1,14.95,10/19/19 11:41,"940 Center St, Seattle, WA 98101" +278314,iPhone,1,700,10/03/19 08:36,"926 Walnut St, Boston, MA 02215" +278315,Bose SoundSport Headphones,1,99.99,10/25/19 22:36,"636 South St, Boston, MA 02215" +278316,20in Monitor,1,109.99,10/27/19 19:56,"666 8th St, Seattle, WA 98101" +278317,iPhone,1,700,10/03/19 18:28,"629 Jefferson St, Portland, OR 97035" +278318,Bose SoundSport Headphones,1,99.99,10/08/19 20:58,"142 Wilson St, Dallas, TX 75001" +278319,AAA Batteries (4-pack),1,2.99,10/04/19 18:49,"636 1st St, San Francisco, CA 94016" +278320,USB-C Charging Cable,1,11.95,10/12/19 13:50,"12 Jackson St, San Francisco, CA 94016" +278321,Bose SoundSport Headphones,1,99.99,10/26/19 18:23,"998 Forest St, Los Angeles, CA 90001" +278322,USB-C Charging Cable,1,11.95,10/18/19 02:15,"210 Center St, Atlanta, GA 30301" +278323,AAA Batteries (4-pack),1,2.99,10/29/19 11:04,"420 Jackson St, Boston, MA 02215" +278324,AAA Batteries (4-pack),1,2.99,10/04/19 15:30,"403 Lakeview St, San Francisco, CA 94016" +278325,AA Batteries (4-pack),1,3.84,10/20/19 22:32,"448 Lake St, Portland, OR 97035" +278326,USB-C Charging Cable,1,11.95,10/07/19 07:09,"564 Pine St, Dallas, TX 75001" +278327,USB-C Charging Cable,1,11.95,10/09/19 14:26,"21 West St, Boston, MA 02215" +278328,Macbook Pro Laptop,1,1700,10/28/19 18:28,"977 Washington St, San Francisco, CA 94016" +278329,AA Batteries (4-pack),2,3.84,10/13/19 15:56,"685 Meadow St, Los Angeles, CA 90001" +278330,20in Monitor,1,109.99,10/30/19 16:56,"562 Ridge St, Dallas, TX 75001" +278331,Macbook Pro Laptop,1,1700,10/02/19 21:25,"316 6th St, Dallas, TX 75001" +278332,iPhone,1,700,10/19/19 16:36,"66 North St, Dallas, TX 75001" +278333,Lightning Charging Cable,1,14.95,10/09/19 05:46,"177 Spruce St, San Francisco, CA 94016" +278334,Apple Airpods Headphones,1,150,10/13/19 22:48,"744 Wilson St, Austin, TX 73301" +278335,Apple Airpods Headphones,1,150,10/21/19 15:23,"169 Forest St, Austin, TX 73301" +278336,27in 4K Gaming Monitor,1,389.99,10/12/19 18:33,"488 11th St, New York City, NY 10001" +278337,USB-C Charging Cable,1,11.95,10/30/19 07:49,"964 Lakeview St, Atlanta, GA 30301" +278338,Vareebadd Phone,1,400,10/20/19 15:31,"898 Forest St, New York City, NY 10001" +278338,USB-C Charging Cable,2,11.95,10/20/19 15:31,"898 Forest St, New York City, NY 10001" +278338,Wired Headphones,1,11.99,10/20/19 15:31,"898 Forest St, New York City, NY 10001" +278339,Lightning Charging Cable,1,14.95,10/06/19 09:40,"710 Hickory St, Seattle, WA 98101" +278340,Bose SoundSport Headphones,1,99.99,10/03/19 12:38,"661 South St, Portland, OR 97035" +278341,Lightning Charging Cable,1,14.95,10/03/19 13:04,"311 Jackson St, Los Angeles, CA 90001" +278342,Wired Headphones,1,11.99,10/01/19 20:39,"642 Lakeview St, Los Angeles, CA 90001" +278342,AAA Batteries (4-pack),1,2.99,10/01/19 20:39,"642 Lakeview St, Los Angeles, CA 90001" +278343,AAA Batteries (4-pack),2,2.99,10/26/19 13:21,"84 13th St, San Francisco, CA 94016" +278344,27in FHD Monitor,1,149.99,10/28/19 17:42,"219 Chestnut St, Atlanta, GA 30301" +278345,ThinkPad Laptop,1,999.99,10/04/19 15:36,"703 North St, Atlanta, GA 30301" +278346,Google Phone,1,600,10/21/19 18:14,"551 Highland St, Austin, TX 73301" +278347,ThinkPad Laptop,1,999.99,10/14/19 12:25,"28 8th St, Seattle, WA 98101" +278348,Apple Airpods Headphones,1,150,10/30/19 09:25,"710 Elm St, Austin, TX 73301" +278349,Lightning Charging Cable,1,14.95,10/26/19 08:44,"945 Dogwood St, Portland, ME 04101" +278350,AAA Batteries (4-pack),1,2.99,10/05/19 11:18,"85 Elm St, San Francisco, CA 94016" +278351,Lightning Charging Cable,1,14.95,10/12/19 17:27,"848 8th St, Atlanta, GA 30301" +278352,27in FHD Monitor,1,149.99,10/29/19 19:55,"537 Walnut St, Boston, MA 02215" +278353,AA Batteries (4-pack),1,3.84,10/15/19 06:42,"473 Madison St, Los Angeles, CA 90001" +278354,ThinkPad Laptop,1,999.99,10/10/19 14:30,"236 Forest St, San Francisco, CA 94016" +278355,Flatscreen TV,1,300,10/18/19 08:01,"941 Johnson St, Dallas, TX 75001" +278355,Lightning Charging Cable,1,14.95,10/18/19 08:01,"941 Johnson St, Dallas, TX 75001" +278356,Macbook Pro Laptop,1,1700,10/20/19 19:18,"85 9th St, Los Angeles, CA 90001" +278357,Wired Headphones,1,11.99,10/18/19 09:42,"643 Meadow St, Dallas, TX 75001" +278358,Wired Headphones,1,11.99,10/07/19 16:40,"737 Wilson St, New York City, NY 10001" +278359,Wired Headphones,2,11.99,10/07/19 19:38,"884 Washington St, San Francisco, CA 94016" +278360,Lightning Charging Cable,1,14.95,10/03/19 12:32,"554 River St, San Francisco, CA 94016" +278361,Bose SoundSport Headphones,1,99.99,10/31/19 20:18,"693 8th St, Atlanta, GA 30301" +278362,iPhone,1,700,10/16/19 17:23,"621 Jefferson St, Portland, ME 04101" +278363,USB-C Charging Cable,1,11.95,10/30/19 11:30,"392 Highland St, Los Angeles, CA 90001" +278364,USB-C Charging Cable,1,11.95,10/17/19 13:04,"173 11th St, San Francisco, CA 94016" +278365,AA Batteries (4-pack),1,3.84,10/04/19 17:53,"577 Spruce St, New York City, NY 10001" +278366,iPhone,1,700,10/28/19 22:41,"875 12th St, Boston, MA 02215" +278367,AAA Batteries (4-pack),1,2.99,10/12/19 14:26,"90 Park St, San Francisco, CA 94016" +278368,Lightning Charging Cable,1,14.95,10/16/19 15:49,"563 Sunset St, San Francisco, CA 94016" +278369,AAA Batteries (4-pack),1,2.99,10/11/19 01:34,"109 Dogwood St, New York City, NY 10001" +278370,Apple Airpods Headphones,1,150,10/05/19 23:50,"462 Washington St, Atlanta, GA 30301" +278371,Google Phone,1,600,10/03/19 23:17,"36 South St, Seattle, WA 98101" +278372,Apple Airpods Headphones,1,150,10/08/19 18:58,"817 13th St, Dallas, TX 75001" +278373,AAA Batteries (4-pack),1,2.99,10/12/19 19:14,"771 Hickory St, San Francisco, CA 94016" +278374,Lightning Charging Cable,1,14.95,10/16/19 14:15,"810 Lake St, San Francisco, CA 94016" +278375,Wired Headphones,1,11.99,10/24/19 16:56,"269 Hickory St, Austin, TX 73301" +278376,AA Batteries (4-pack),4,3.84,10/26/19 13:31,"68 Lincoln St, Los Angeles, CA 90001" +278377,Flatscreen TV,1,300,10/13/19 13:41,"251 12th St, San Francisco, CA 94016" +278378,AAA Batteries (4-pack),2,2.99,10/28/19 10:25,"203 Main St, San Francisco, CA 94016" +278379,Apple Airpods Headphones,1,150,10/18/19 18:16,"934 10th St, Seattle, WA 98101" +278380,AAA Batteries (4-pack),4,2.99,10/09/19 12:03,"731 Willow St, San Francisco, CA 94016" +278381,AAA Batteries (4-pack),2,2.99,10/25/19 11:24,"827 Church St, Atlanta, GA 30301" +278382,USB-C Charging Cable,1,11.95,10/07/19 09:21,"82 Cedar St, Boston, MA 02215" +278383,AA Batteries (4-pack),2,3.84,10/16/19 17:45,"860 Main St, San Francisco, CA 94016" +278384,27in FHD Monitor,1,149.99,10/26/19 23:28,"490 Lincoln St, Atlanta, GA 30301" +278385,Bose SoundSport Headphones,1,99.99,10/21/19 12:20,"212 Lakeview St, San Francisco, CA 94016" +278386,Wired Headphones,1,11.99,10/24/19 12:03,"826 Adams St, Atlanta, GA 30301" +278387,Macbook Pro Laptop,1,1700,10/06/19 21:59,"518 Hill St, San Francisco, CA 94016" +278388,Lightning Charging Cable,2,14.95,10/27/19 16:27,"638 4th St, San Francisco, CA 94016" +278389,AA Batteries (4-pack),3,3.84,10/09/19 15:49,"290 Lake St, Portland, OR 97035" +278390,27in 4K Gaming Monitor,1,389.99,10/12/19 10:34,"384 Cherry St, Austin, TX 73301" +278391,Macbook Pro Laptop,1,1700,10/23/19 08:39,"663 11th St, Atlanta, GA 30301" +278392,USB-C Charging Cable,1,11.95,10/13/19 17:06,"758 Madison St, Austin, TX 73301" +278393,Lightning Charging Cable,1,14.95,10/31/19 20:03,"342 Forest St, Seattle, WA 98101" +278394,Lightning Charging Cable,1,14.95,10/14/19 07:50,"362 5th St, New York City, NY 10001" +278395,20in Monitor,1,109.99,10/20/19 09:51,"141 Meadow St, New York City, NY 10001" +278396,27in 4K Gaming Monitor,1,389.99,10/01/19 18:10,"364 River St, New York City, NY 10001" +278397,Wired Headphones,1,11.99,10/04/19 16:30,"473 Dogwood St, San Francisco, CA 94016" +278398,Macbook Pro Laptop,1,1700,10/24/19 10:57,"24 1st St, Seattle, WA 98101" +278399,iPhone,1,700,10/25/19 16:24,"116 Chestnut St, Austin, TX 73301" +278400,LG Dryer,1,600.0,10/22/19 11:53,"600 Sunset St, San Francisco, CA 94016" +278401,ThinkPad Laptop,1,999.99,10/29/19 10:38,"778 Sunset St, Atlanta, GA 30301" +278402,AAA Batteries (4-pack),1,2.99,10/02/19 09:46,"471 13th St, Los Angeles, CA 90001" +278403,Apple Airpods Headphones,1,150,10/30/19 21:39,"900 Dogwood St, San Francisco, CA 94016" +278404,Wired Headphones,1,11.99,10/19/19 15:58,"352 Hickory St, Dallas, TX 75001" +278405,AAA Batteries (4-pack),3,2.99,10/07/19 13:07,"186 Center St, Boston, MA 02215" +278406,Wired Headphones,1,11.99,10/17/19 08:38,"570 6th St, Atlanta, GA 30301" +278407,AA Batteries (4-pack),1,3.84,10/24/19 15:14,"257 Main St, San Francisco, CA 94016" +278408,Lightning Charging Cable,1,14.95,10/19/19 21:22,"130 Sunset St, Seattle, WA 98101" +278409,iPhone,1,700,10/17/19 10:16,"872 2nd St, New York City, NY 10001" +278410,Lightning Charging Cable,1,14.95,10/02/19 01:55,"783 Center St, New York City, NY 10001" +278411,AAA Batteries (4-pack),2,2.99,10/09/19 21:40,"610 Park St, Portland, OR 97035" +278412,AAA Batteries (4-pack),1,2.99,10/13/19 19:44,"58 13th St, Portland, OR 97035" +278413,AA Batteries (4-pack),2,3.84,10/07/19 10:28,"973 Sunset St, Seattle, WA 98101" +278414,Apple Airpods Headphones,1,150,10/17/19 18:22,"370 Cedar St, San Francisco, CA 94016" +278415,USB-C Charging Cable,1,11.95,10/31/19 12:18,"891 1st St, Seattle, WA 98101" +278416,Lightning Charging Cable,1,14.95,10/01/19 22:21,"614 Cherry St, Atlanta, GA 30301" +278417,AAA Batteries (4-pack),1,2.99,10/06/19 18:50,"938 5th St, Boston, MA 02215" +278418,Bose SoundSport Headphones,1,99.99,10/11/19 22:19,"53 Highland St, Los Angeles, CA 90001" +278419,Bose SoundSport Headphones,1,99.99,10/27/19 18:00,"41 8th St, Portland, OR 97035" +278420,27in FHD Monitor,1,149.99,10/27/19 20:54,"838 Highland St, Dallas, TX 75001" +278421,USB-C Charging Cable,1,11.95,10/24/19 10:53,"69 11th St, San Francisco, CA 94016" +278422,34in Ultrawide Monitor,1,379.99,10/02/19 18:20,"623 Sunset St, San Francisco, CA 94016" +278423,ThinkPad Laptop,1,999.99,10/12/19 11:11,"652 Center St, San Francisco, CA 94016" +278424,27in 4K Gaming Monitor,1,389.99,10/11/19 19:30,"639 9th St, Dallas, TX 75001" +278425,Apple Airpods Headphones,1,150,10/10/19 10:53,"843 13th St, Boston, MA 02215" +278426,Wired Headphones,1,11.99,10/18/19 09:48,"892 Lincoln St, Portland, OR 97035" +278427,USB-C Charging Cable,1,11.95,10/15/19 11:20,"102 Washington St, Dallas, TX 75001" +278428,Lightning Charging Cable,1,14.95,10/01/19 19:29,"192 West St, Boston, MA 02215" +278429,27in 4K Gaming Monitor,1,389.99,10/14/19 10:49,"898 Pine St, Boston, MA 02215" +,,,,, +278430,Google Phone,1,600,10/06/19 00:49,"422 Cherry St, Los Angeles, CA 90001" +278431,Lightning Charging Cable,1,14.95,10/29/19 12:32,"704 Madison St, Dallas, TX 75001" +278432,AA Batteries (4-pack),1,3.84,10/14/19 01:32,"404 Willow St, Dallas, TX 75001" +278433,Flatscreen TV,1,300,10/27/19 12:27,"286 Jackson St, Portland, ME 04101" +278434,USB-C Charging Cable,1,11.95,10/02/19 20:27,"775 Main St, San Francisco, CA 94016" +278435,Wired Headphones,1,11.99,10/23/19 19:37,"602 Wilson St, Boston, MA 02215" +278436,AA Batteries (4-pack),1,3.84,10/10/19 17:36,"637 Elm St, San Francisco, CA 94016" +278437,AA Batteries (4-pack),1,3.84,10/15/19 22:27,"617 14th St, Los Angeles, CA 90001" +278438,iPhone,1,700,10/13/19 06:14,"620 Spruce St, Austin, TX 73301" +278439,AAA Batteries (4-pack),2,2.99,10/20/19 08:40,"781 9th St, Portland, OR 97035" +278440,Bose SoundSport Headphones,1,99.99,10/14/19 16:33,"922 North St, Los Angeles, CA 90001" +278441,Lightning Charging Cable,1,14.95,10/30/19 13:06,"990 Willow St, Boston, MA 02215" +278442,Bose SoundSport Headphones,1,99.99,10/08/19 22:31,"473 Spruce St, Portland, ME 04101" +278443,Macbook Pro Laptop,1,1700,10/08/19 18:24,"258 Maple St, Los Angeles, CA 90001" +278444,AA Batteries (4-pack),2,3.84,10/14/19 17:50,"464 Lakeview St, Boston, MA 02215" +278445,Apple Airpods Headphones,1,150,10/21/19 13:57,"499 Washington St, New York City, NY 10001" +278446,Lightning Charging Cable,1,14.95,10/14/19 17:39,"851 North St, San Francisco, CA 94016" +278447,USB-C Charging Cable,2,11.95,10/24/19 07:41,"320 Lincoln St, Atlanta, GA 30301" +278448,AA Batteries (4-pack),1,3.84,10/05/19 09:55,"195 7th St, Portland, OR 97035" +278449,USB-C Charging Cable,1,11.95,10/22/19 09:00,"980 Maple St, Seattle, WA 98101" +278450,USB-C Charging Cable,1,11.95,10/25/19 14:52,"620 North St, Boston, MA 02215" +278451,AAA Batteries (4-pack),1,2.99,10/03/19 20:21,"205 10th St, Boston, MA 02215" +278452,Bose SoundSport Headphones,1,99.99,10/11/19 16:52,"414 Meadow St, Boston, MA 02215" +278453,Lightning Charging Cable,1,14.95,10/27/19 17:37,"245 Chestnut St, New York City, NY 10001" +278454,Google Phone,1,600,10/17/19 11:19,"682 Maple St, San Francisco, CA 94016" +278454,Wired Headphones,1,11.99,10/17/19 11:19,"682 Maple St, San Francisco, CA 94016" +278455,AA Batteries (4-pack),2,3.84,10/24/19 23:24,"975 Ridge St, Atlanta, GA 30301" +278456,Lightning Charging Cable,1,14.95,10/06/19 19:04,"775 9th St, Los Angeles, CA 90001" +278457,iPhone,1,700,10/30/19 02:09,"410 Pine St, San Francisco, CA 94016" +278458,Wired Headphones,1,11.99,10/30/19 14:53,"990 Madison St, Dallas, TX 75001" +278458,27in FHD Monitor,1,149.99,10/30/19 14:53,"990 Madison St, Dallas, TX 75001" +278459,Macbook Pro Laptop,1,1700,10/03/19 13:27,"213 Jackson St, Atlanta, GA 30301" +278460,34in Ultrawide Monitor,1,379.99,10/27/19 12:40,"867 10th St, Seattle, WA 98101" +278461,27in 4K Gaming Monitor,1,389.99,10/23/19 09:56,"901 11th St, Boston, MA 02215" +278462,Wired Headphones,1,11.99,10/07/19 09:28,"490 Lincoln St, San Francisco, CA 94016" +278463,AA Batteries (4-pack),1,3.84,10/26/19 12:54,"41 10th St, Atlanta, GA 30301" +278464,Apple Airpods Headphones,1,150,10/17/19 21:39,"683 Spruce St, Los Angeles, CA 90001" +278465,USB-C Charging Cable,1,11.95,10/22/19 11:36,"961 Willow St, San Francisco, CA 94016" +278466,AA Batteries (4-pack),1,3.84,10/29/19 14:56,"801 6th St, Portland, OR 97035" +278467,AAA Batteries (4-pack),1,2.99,10/14/19 07:28,"728 Pine St, Dallas, TX 75001" +278468,iPhone,1,700,10/14/19 18:46,"436 Wilson St, Boston, MA 02215" +278468,Wired Headphones,1,11.99,10/14/19 18:46,"436 Wilson St, Boston, MA 02215" +278469,USB-C Charging Cable,1,11.95,10/09/19 09:42,"637 Highland St, Dallas, TX 75001" +278470,20in Monitor,1,109.99,10/27/19 13:06,"297 Cedar St, Boston, MA 02215" +278471,USB-C Charging Cable,1,11.95,10/17/19 10:33,"469 West St, Seattle, WA 98101" +278471,AAA Batteries (4-pack),1,2.99,10/17/19 10:33,"469 West St, Seattle, WA 98101" +278472,Wired Headphones,1,11.99,10/14/19 18:30,"608 North St, Portland, OR 97035" +278473,20in Monitor,1,109.99,10/17/19 14:58,"175 Madison St, San Francisco, CA 94016" +278474,AA Batteries (4-pack),1,3.84,10/25/19 19:54,"490 5th St, San Francisco, CA 94016" +278475,Bose SoundSport Headphones,1,99.99,10/05/19 05:22,"874 Ridge St, Atlanta, GA 30301" +278475,AA Batteries (4-pack),3,3.84,10/05/19 05:22,"874 Ridge St, Atlanta, GA 30301" +278476,Wired Headphones,1,11.99,10/10/19 06:01,"637 Dogwood St, San Francisco, CA 94016" +278477,Apple Airpods Headphones,1,150,10/09/19 12:28,"6 4th St, San Francisco, CA 94016" +278478,ThinkPad Laptop,1,999.99,10/04/19 12:17,"443 Center St, Dallas, TX 75001" +278479,27in 4K Gaming Monitor,1,389.99,10/20/19 00:30,"549 Hill St, New York City, NY 10001" +278479,27in FHD Monitor,1,149.99,10/20/19 00:30,"549 Hill St, New York City, NY 10001" +278480,USB-C Charging Cable,1,11.95,10/24/19 10:57,"542 Park St, Los Angeles, CA 90001" +278481,Lightning Charging Cable,1,14.95,10/02/19 09:42,"112 Hickory St, New York City, NY 10001" +278482,AAA Batteries (4-pack),2,2.99,10/04/19 10:00,"721 Madison St, Los Angeles, CA 90001" +278483,27in FHD Monitor,1,149.99,10/15/19 17:17,"136 10th St, Boston, MA 02215" +278484,Apple Airpods Headphones,1,150,10/29/19 21:59,"944 10th St, Seattle, WA 98101" +278485,Lightning Charging Cable,1,14.95,10/02/19 11:16,"153 Forest St, San Francisco, CA 94016" +278486,34in Ultrawide Monitor,1,379.99,10/06/19 08:34,"208 Hill St, San Francisco, CA 94016" +278487,Apple Airpods Headphones,1,150,10/08/19 17:54,"534 Washington St, Atlanta, GA 30301" +278488,USB-C Charging Cable,1,11.95,10/25/19 00:05,"859 7th St, Dallas, TX 75001" +278489,Google Phone,1,600,10/24/19 23:19,"827 1st St, Atlanta, GA 30301" +278490,USB-C Charging Cable,1,11.95,10/11/19 19:50,"843 12th St, San Francisco, CA 94016" +278491,iPhone,1,700,10/31/19 19:35,"397 Walnut St, Dallas, TX 75001" +278491,Lightning Charging Cable,1,14.95,10/31/19 19:35,"397 Walnut St, Dallas, TX 75001" +278492,Apple Airpods Headphones,1,150,10/15/19 11:14,"892 1st St, Dallas, TX 75001" +278493,27in FHD Monitor,1,149.99,10/05/19 17:52,"187 Wilson St, Dallas, TX 75001" +278494,AAA Batteries (4-pack),1,2.99,10/31/19 10:28,"121 Willow St, San Francisco, CA 94016" +278495,AA Batteries (4-pack),1,3.84,10/27/19 16:23,"590 Madison St, Portland, OR 97035" +278496,Bose SoundSport Headphones,1,99.99,10/19/19 19:03,"443 6th St, San Francisco, CA 94016" +278497,USB-C Charging Cable,1,11.95,10/02/19 18:06,"614 9th St, Atlanta, GA 30301" +278498,Apple Airpods Headphones,1,150,10/22/19 20:08,"688 Jefferson St, Portland, OR 97035" +278499,Flatscreen TV,1,300,10/01/19 10:46,"872 Elm St, New York City, NY 10001" +278500,AA Batteries (4-pack),3,3.84,10/22/19 14:44,"60 Park St, San Francisco, CA 94016" +278501,AA Batteries (4-pack),1,3.84,10/18/19 11:24,"37 West St, Boston, MA 02215" +278502,Bose SoundSport Headphones,1,99.99,10/30/19 17:08,"775 10th St, Dallas, TX 75001" +278503,Bose SoundSport Headphones,1,99.99,10/06/19 10:54,"413 Lincoln St, Seattle, WA 98101" +278504,AAA Batteries (4-pack),2,2.99,10/14/19 07:10,"85 2nd St, San Francisco, CA 94016" +278505,AAA Batteries (4-pack),1,2.99,10/30/19 09:02,"666 Pine St, San Francisco, CA 94016" +278506,iPhone,1,700,10/04/19 19:05,"55 Willow St, Boston, MA 02215" +278506,Apple Airpods Headphones,1,150,10/04/19 19:05,"55 Willow St, Boston, MA 02215" +278507,Apple Airpods Headphones,1,150,10/27/19 07:31,"8 Elm St, San Francisco, CA 94016" +278508,USB-C Charging Cable,1,11.95,10/25/19 11:20,"573 South St, Dallas, TX 75001" +278508,AAA Batteries (4-pack),1,2.99,10/25/19 11:20,"573 South St, Dallas, TX 75001" +278509,Wired Headphones,1,11.99,10/14/19 21:07,"42 Elm St, Boston, MA 02215" +278510,AA Batteries (4-pack),2,3.84,10/20/19 15:23,"940 Hickory St, New York City, NY 10001" +278511,AA Batteries (4-pack),1,3.84,10/02/19 23:40,"892 Johnson St, Portland, OR 97035" +278512,Apple Airpods Headphones,1,150,10/08/19 17:26,"685 11th St, San Francisco, CA 94016" +278513,Wired Headphones,2,11.99,10/13/19 07:34,"718 14th St, San Francisco, CA 94016" +278514,Lightning Charging Cable,1,14.95,10/16/19 23:49,"800 Meadow St, New York City, NY 10001" +278515,Apple Airpods Headphones,1,150,10/09/19 10:40,"378 Washington St, San Francisco, CA 94016" +278516,USB-C Charging Cable,1,11.95,10/14/19 15:57,"563 Cherry St, Boston, MA 02215" +278517,Lightning Charging Cable,1,14.95,10/21/19 20:51,"816 13th St, San Francisco, CA 94016" +278518,34in Ultrawide Monitor,1,379.99,10/16/19 10:26,"161 Johnson St, Los Angeles, CA 90001" +278519,27in FHD Monitor,1,149.99,10/31/19 08:40,"79 Walnut St, Atlanta, GA 30301" +278520,Bose SoundSport Headphones,1,99.99,10/25/19 07:37,"205 River St, Los Angeles, CA 90001" +278521,34in Ultrawide Monitor,1,379.99,10/03/19 09:35,"720 Jefferson St, Atlanta, GA 30301" +278522,Macbook Pro Laptop,1,1700,10/07/19 23:38,"315 Main St, Atlanta, GA 30301" +278523,34in Ultrawide Monitor,1,379.99,10/19/19 12:22,"277 11th St, Austin, TX 73301" +278524,AA Batteries (4-pack),1,3.84,10/29/19 20:43,"725 Cherry St, Dallas, TX 75001" +278525,AAA Batteries (4-pack),2,2.99,10/14/19 17:11,"131 River St, Los Angeles, CA 90001" +278526,LG Dryer,1,600.0,10/05/19 11:46,"951 Madison St, San Francisco, CA 94016" +278527,AAA Batteries (4-pack),1,2.99,10/30/19 23:51,"237 Park St, Seattle, WA 98101" +278528,iPhone,1,700,10/01/19 23:51,"255 Washington St, New York City, NY 10001" +278528,Lightning Charging Cable,1,14.95,10/01/19 23:51,"255 Washington St, New York City, NY 10001" +278529,USB-C Charging Cable,1,11.95,10/13/19 19:09,"337 12th St, Portland, ME 04101" +278530,AA Batteries (4-pack),2,3.84,10/24/19 06:40,"804 Chestnut St, San Francisco, CA 94016" +278531,Bose SoundSport Headphones,1,99.99,10/05/19 10:23,"957 Cherry St, Los Angeles, CA 90001" +278532,Macbook Pro Laptop,1,1700,10/04/19 21:19,"978 Walnut St, Austin, TX 73301" +278533,27in FHD Monitor,1,149.99,10/23/19 11:46,"571 Lakeview St, New York City, NY 10001" +278534,Wired Headphones,1,11.99,10/20/19 11:59,"743 River St, Atlanta, GA 30301" +278535,Lightning Charging Cable,1,14.95,10/14/19 14:48,"651 1st St, Atlanta, GA 30301" +278536,Apple Airpods Headphones,1,150,10/28/19 10:06,"777 Meadow St, Los Angeles, CA 90001" +278537,Macbook Pro Laptop,1,1700,10/23/19 07:00,"541 Cedar St, Atlanta, GA 30301" +278538,USB-C Charging Cable,1,11.95,10/10/19 16:15,"550 Hill St, San Francisco, CA 94016" +278539,AA Batteries (4-pack),1,3.84,10/27/19 09:44,"452 Wilson St, Portland, OR 97035" +278540,AA Batteries (4-pack),1,3.84,10/15/19 14:45,"132 Johnson St, New York City, NY 10001" +278541,AA Batteries (4-pack),1,3.84,10/24/19 07:12,"551 Cherry St, Dallas, TX 75001" +278542,AA Batteries (4-pack),1,3.84,10/25/19 22:19,"951 Ridge St, Dallas, TX 75001" +278543,Lightning Charging Cable,1,14.95,10/02/19 15:11,"459 Jackson St, San Francisco, CA 94016" +278544,AAA Batteries (4-pack),2,2.99,10/21/19 17:29,"71 North St, Boston, MA 02215" +278545,USB-C Charging Cable,1,11.95,10/13/19 19:07,"899 Hill St, Los Angeles, CA 90001" +278546,AAA Batteries (4-pack),1,2.99,10/18/19 11:14,"98 1st St, Seattle, WA 98101" +278547,Google Phone,1,600,10/11/19 21:27,"573 9th St, Boston, MA 02215" +278548,AA Batteries (4-pack),1,3.84,10/30/19 20:41,"917 7th St, San Francisco, CA 94016" +278549,AAA Batteries (4-pack),2,2.99,10/16/19 20:10,"362 1st St, Dallas, TX 75001" +278550,Apple Airpods Headphones,1,150,10/16/19 18:50,"316 10th St, Dallas, TX 75001" +278551,Lightning Charging Cable,1,14.95,10/28/19 01:09,"879 14th St, Portland, ME 04101" +278552,Bose SoundSport Headphones,1,99.99,10/17/19 21:42,"389 7th St, Boston, MA 02215" +278553,USB-C Charging Cable,1,11.95,10/10/19 14:31,"828 Walnut St, Los Angeles, CA 90001" +278554,27in 4K Gaming Monitor,1,389.99,10/24/19 22:43,"793 Dogwood St, San Francisco, CA 94016" +278555,AAA Batteries (4-pack),1,2.99,10/25/19 23:29,"278 Jackson St, Boston, MA 02215" +278556,AA Batteries (4-pack),1,3.84,10/15/19 10:09,"357 South St, Boston, MA 02215" +278557,AAA Batteries (4-pack),1,2.99,10/25/19 13:58,"858 Jefferson St, San Francisco, CA 94016" +278558,Wired Headphones,1,11.99,10/21/19 23:33,"569 Washington St, New York City, NY 10001" +278559,AA Batteries (4-pack),1,3.84,10/29/19 11:07,"609 Cherry St, San Francisco, CA 94016" +278560,Bose SoundSport Headphones,1,99.99,10/23/19 08:55,"703 Hickory St, Boston, MA 02215" +278561,27in 4K Gaming Monitor,1,389.99,10/11/19 08:42,"819 Adams St, San Francisco, CA 94016" +278562,AA Batteries (4-pack),1,3.84,10/21/19 15:17,"87 13th St, Seattle, WA 98101" +278563,USB-C Charging Cable,1,11.95,10/19/19 10:38,"38 South St, Boston, MA 02215" +278564,AAA Batteries (4-pack),1,2.99,10/13/19 20:33,"938 Center St, Boston, MA 02215" +278565,Lightning Charging Cable,1,14.95,10/13/19 22:19,"915 2nd St, New York City, NY 10001" +278566,Apple Airpods Headphones,1,150,10/27/19 20:16,"14 Johnson St, Los Angeles, CA 90001" +278567,Bose SoundSport Headphones,1,99.99,10/22/19 20:56,"166 Park St, New York City, NY 10001" +278568,USB-C Charging Cable,1,11.95,10/15/19 10:57,"735 Center St, San Francisco, CA 94016" +278569,Apple Airpods Headphones,1,150,10/03/19 10:41,"988 Jefferson St, Los Angeles, CA 90001" +278570,USB-C Charging Cable,2,11.95,10/01/19 19:15,"249 Hill St, San Francisco, CA 94016" +278571,LG Washing Machine,1,600.0,10/11/19 23:47,"301 Chestnut St, Portland, OR 97035" +278572,Google Phone,1,600,10/07/19 06:44,"908 4th St, New York City, NY 10001" +278573,AA Batteries (4-pack),1,3.84,10/19/19 19:32,"471 Wilson St, Seattle, WA 98101" +278574,AAA Batteries (4-pack),1,2.99,10/13/19 20:08,"124 Johnson St, New York City, NY 10001" +278575,AAA Batteries (4-pack),1,2.99,10/20/19 20:13,"84 2nd St, Austin, TX 73301" +278575,Lightning Charging Cable,1,14.95,10/20/19 20:13,"84 2nd St, Austin, TX 73301" +278576,Wired Headphones,1,11.99,10/19/19 12:01,"363 14th St, Portland, OR 97035" +278577,Lightning Charging Cable,1,14.95,10/12/19 22:24,"969 Maple St, Los Angeles, CA 90001" +278578,Wired Headphones,1,11.99,10/17/19 12:42,"185 Cherry St, San Francisco, CA 94016" +278579,USB-C Charging Cable,1,11.95,10/09/19 22:47,"527 West St, Dallas, TX 75001" +278580,AAA Batteries (4-pack),2,2.99,10/31/19 17:15,"268 Center St, Atlanta, GA 30301" +278581,27in FHD Monitor,1,149.99,10/31/19 19:41,"849 Willow St, Los Angeles, CA 90001" +278582,34in Ultrawide Monitor,1,379.99,10/13/19 12:41,"916 4th St, San Francisco, CA 94016" +278583,27in FHD Monitor,1,149.99,10/12/19 20:37,"74 13th St, New York City, NY 10001" +278584,Lightning Charging Cable,1,14.95,10/07/19 17:36,"176 Maple St, San Francisco, CA 94016" +278585,Lightning Charging Cable,1,14.95,10/16/19 17:45,"900 Johnson St, Los Angeles, CA 90001" +278586,USB-C Charging Cable,1,11.95,10/31/19 19:14,"239 Pine St, Portland, OR 97035" +278587,iPhone,1,700,10/09/19 23:48,"81 Dogwood St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +278588,AA Batteries (4-pack),1,3.84,10/19/19 10:48,"576 Jefferson St, Portland, OR 97035" +278589,USB-C Charging Cable,1,11.95,10/27/19 13:03,"932 Johnson St, Dallas, TX 75001" +278590,Apple Airpods Headphones,1,150,10/04/19 10:07,"921 8th St, New York City, NY 10001" +278591,Bose SoundSport Headphones,1,99.99,10/09/19 16:14,"479 Sunset St, San Francisco, CA 94016" +278592,AA Batteries (4-pack),2,3.84,10/01/19 12:46,"301 14th St, New York City, NY 10001" +278593,AAA Batteries (4-pack),1,2.99,10/11/19 09:59,"387 Center St, Portland, OR 97035" +278594,AAA Batteries (4-pack),1,2.99,10/07/19 12:16,"5 Pine St, Los Angeles, CA 90001" +278595,AAA Batteries (4-pack),1,2.99,10/06/19 06:31,"696 Dogwood St, San Francisco, CA 94016" +278596,AAA Batteries (4-pack),2,2.99,10/09/19 19:12,"850 Main St, Los Angeles, CA 90001" +278597,AAA Batteries (4-pack),1,2.99,10/31/19 19:37,"370 Madison St, New York City, NY 10001" +278598,AAA Batteries (4-pack),1,2.99,10/01/19 10:58,"649 North St, Austin, TX 73301" +278599,AAA Batteries (4-pack),2,2.99,10/16/19 10:35,"629 South St, Austin, TX 73301" +278600,27in 4K Gaming Monitor,1,389.99,10/09/19 14:41,"643 Washington St, Seattle, WA 98101" +278600,34in Ultrawide Monitor,1,379.99,10/09/19 14:41,"643 Washington St, Seattle, WA 98101" +278601,20in Monitor,1,109.99,10/19/19 18:33,"753 10th St, New York City, NY 10001" +278602,USB-C Charging Cable,1,11.95,10/12/19 16:20,"88 Spruce St, Atlanta, GA 30301" +278603,AAA Batteries (4-pack),1,2.99,10/06/19 10:23,"127 11th St, Los Angeles, CA 90001" +278604,34in Ultrawide Monitor,1,379.99,10/02/19 19:46,"262 Johnson St, Boston, MA 02215" +278605,AA Batteries (4-pack),2,3.84,10/24/19 08:04,"765 Willow St, San Francisco, CA 94016" +278606,USB-C Charging Cable,2,11.95,10/20/19 15:22,"82 Madison St, Austin, TX 73301" +278607,27in FHD Monitor,1,149.99,10/12/19 07:57,"406 Maple St, Los Angeles, CA 90001" +278608,34in Ultrawide Monitor,1,379.99,10/04/19 20:26,"382 13th St, Los Angeles, CA 90001" +278609,Apple Airpods Headphones,1,150,10/11/19 19:46,"296 Park St, Los Angeles, CA 90001" +278610,Wired Headphones,1,11.99,10/16/19 20:08,"144 Cherry St, New York City, NY 10001" +278611,Macbook Pro Laptop,1,1700,10/02/19 07:29,"946 Adams St, San Francisco, CA 94016" +278612,Lightning Charging Cable,1,14.95,10/15/19 18:42,"53 6th St, San Francisco, CA 94016" +278613,iPhone,1,700,10/30/19 18:14,"865 Jefferson St, Los Angeles, CA 90001" +278614,ThinkPad Laptop,1,999.99,10/30/19 10:41,"709 North St, Portland, OR 97035" +278615,34in Ultrawide Monitor,1,379.99,10/26/19 23:36,"369 9th St, Dallas, TX 75001" +278616,AAA Batteries (4-pack),1,2.99,10/16/19 18:22,"564 9th St, New York City, NY 10001" +278617,Bose SoundSport Headphones,1,99.99,10/14/19 10:13,"976 River St, Dallas, TX 75001" +278618,Lightning Charging Cable,1,14.95,10/07/19 11:30,"843 6th St, Dallas, TX 75001" +278619,Wired Headphones,1,11.99,10/18/19 19:02,"122 13th St, Los Angeles, CA 90001" +278620,Vareebadd Phone,1,400,10/04/19 20:48,"50 South St, Austin, TX 73301" +278620,Wired Headphones,1,11.99,10/04/19 20:48,"50 South St, Austin, TX 73301" +278621,Wired Headphones,1,11.99,10/05/19 21:23,"246 Church St, San Francisco, CA 94016" +278622,AA Batteries (4-pack),2,3.84,10/24/19 10:03,"9 Willow St, Los Angeles, CA 90001" +278623,AAA Batteries (4-pack),1,2.99,10/15/19 20:18,"188 Maple St, Boston, MA 02215" +278624,Wired Headphones,1,11.99,10/21/19 08:11,"487 Meadow St, Los Angeles, CA 90001" +278625,Bose SoundSport Headphones,1,99.99,10/03/19 23:22,"290 8th St, San Francisco, CA 94016" +278626,Wired Headphones,1,11.99,10/04/19 08:46,"329 9th St, New York City, NY 10001" +278627,iPhone,1,700,10/25/19 17:22,"374 North St, Atlanta, GA 30301" +278627,Wired Headphones,1,11.99,10/25/19 17:22,"374 North St, Atlanta, GA 30301" +278628,USB-C Charging Cable,1,11.95,10/02/19 19:33,"220 13th St, Los Angeles, CA 90001" +278629,USB-C Charging Cable,1,11.95,10/23/19 00:25,"86 Adams St, San Francisco, CA 94016" +278630,Wired Headphones,1,11.99,10/16/19 09:19,"347 River St, New York City, NY 10001" +278631,Vareebadd Phone,1,400,10/24/19 22:23,"511 Sunset St, Seattle, WA 98101" +278632,AAA Batteries (4-pack),2,2.99,10/23/19 09:40,"404 Walnut St, New York City, NY 10001" +278633,Wired Headphones,2,11.99,10/02/19 15:34,"224 Wilson St, Los Angeles, CA 90001" +278634,Wired Headphones,1,11.99,10/13/19 00:04,"930 5th St, Los Angeles, CA 90001" +278635,Apple Airpods Headphones,1,150,10/13/19 23:13,"414 River St, Dallas, TX 75001" +278636,27in FHD Monitor,1,149.99,10/21/19 19:04,"923 12th St, Portland, ME 04101" +278637,Flatscreen TV,1,300,10/28/19 22:30,"462 13th St, Los Angeles, CA 90001" +278638,AA Batteries (4-pack),1,3.84,10/09/19 21:28,"816 10th St, Seattle, WA 98101" +278639,Apple Airpods Headphones,1,150,10/31/19 09:26,"215 Cherry St, Austin, TX 73301" +278640,AA Batteries (4-pack),2,3.84,10/20/19 23:06,"716 Forest St, Los Angeles, CA 90001" +278641,Wired Headphones,1,11.99,10/20/19 10:46,"143 North St, Portland, OR 97035" +278642,ThinkPad Laptop,1,999.99,10/17/19 13:40,"355 11th St, Boston, MA 02215" +278643,Wired Headphones,2,11.99,10/07/19 02:20,"863 Maple St, Portland, ME 04101" +278644,Bose SoundSport Headphones,1,99.99,10/24/19 19:24,"230 4th St, San Francisco, CA 94016" +278645,USB-C Charging Cable,1,11.95,10/25/19 11:51,"647 Cedar St, Portland, OR 97035" +278646,USB-C Charging Cable,1,11.95,10/16/19 17:08,"664 2nd St, Los Angeles, CA 90001" +278647,AA Batteries (4-pack),1,3.84,10/12/19 17:36,"729 Forest St, San Francisco, CA 94016" +278648,Google Phone,1,600,10/02/19 20:39,"72 Wilson St, Austin, TX 73301" +278648,USB-C Charging Cable,1,11.95,10/02/19 20:39,"72 Wilson St, Austin, TX 73301" +278649,Wired Headphones,1,11.99,10/25/19 13:02,"622 Ridge St, Dallas, TX 75001" +278650,Bose SoundSport Headphones,1,99.99,10/29/19 16:44,"214 6th St, Seattle, WA 98101" +278651,AA Batteries (4-pack),1,3.84,10/01/19 12:42,"935 Park St, Los Angeles, CA 90001" +278652,27in FHD Monitor,1,149.99,10/22/19 15:55,"749 North St, San Francisco, CA 94016" +278653,Wired Headphones,2,11.99,10/14/19 00:11,"86 Center St, Los Angeles, CA 90001" +278654,LG Washing Machine,1,600.0,10/26/19 20:46,"432 Willow St, San Francisco, CA 94016" +278655,ThinkPad Laptop,1,999.99,10/18/19 21:01,"648 Madison St, San Francisco, CA 94016" +278655,AA Batteries (4-pack),2,3.84,10/18/19 21:01,"648 Madison St, San Francisco, CA 94016" +278656,iPhone,1,700,10/18/19 21:36,"748 Ridge St, San Francisco, CA 94016" +278657,Lightning Charging Cable,1,14.95,10/20/19 21:42,"773 Cherry St, Dallas, TX 75001" +278658,AA Batteries (4-pack),1,3.84,10/23/19 20:24,"408 12th St, Austin, TX 73301" +278659,Flatscreen TV,1,300,10/26/19 11:10,"518 Walnut St, San Francisco, CA 94016" +278660,Wired Headphones,1,11.99,10/16/19 13:09,"327 Ridge St, New York City, NY 10001" +278661,Apple Airpods Headphones,1,150,10/23/19 21:18,"5 Sunset St, Atlanta, GA 30301" +278662,USB-C Charging Cable,1,11.95,10/21/19 21:52,"213 13th St, Seattle, WA 98101" +278663,Google Phone,1,600,10/11/19 13:28,"520 West St, San Francisco, CA 94016" +278664,AAA Batteries (4-pack),1,2.99,10/06/19 22:03,"503 Ridge St, Dallas, TX 75001" +278665,Apple Airpods Headphones,1,150,10/10/19 13:32,"958 4th St, Boston, MA 02215" +278666,ThinkPad Laptop,1,999.99,10/23/19 22:50,"265 9th St, Boston, MA 02215" +278666,34in Ultrawide Monitor,1,379.99,10/23/19 22:50,"265 9th St, Boston, MA 02215" +278667,Wired Headphones,1,11.99,10/27/19 15:55,"943 Elm St, Atlanta, GA 30301" +278668,AA Batteries (4-pack),1,3.84,10/19/19 19:35,"154 Dogwood St, New York City, NY 10001" +278669,AA Batteries (4-pack),1,3.84,10/13/19 21:21,"767 1st St, Seattle, WA 98101" +278670,AAA Batteries (4-pack),1,2.99,10/07/19 20:08,"316 14th St, Atlanta, GA 30301" +278671,AAA Batteries (4-pack),4,2.99,10/24/19 19:18,"522 4th St, Los Angeles, CA 90001" +278672,Wired Headphones,1,11.99,10/28/19 21:00,"178 10th St, Seattle, WA 98101" +278673,AAA Batteries (4-pack),1,2.99,10/09/19 20:54,"471 4th St, San Francisco, CA 94016" +278674,Lightning Charging Cable,1,14.95,10/28/19 18:27,"65 2nd St, Dallas, TX 75001" +278675,Google Phone,1,600,10/31/19 20:21,"780 Ridge St, Los Angeles, CA 90001" +278675,Wired Headphones,1,11.99,10/31/19 20:21,"780 Ridge St, Los Angeles, CA 90001" +278676,Lightning Charging Cable,1,14.95,10/02/19 18:26,"966 Meadow St, San Francisco, CA 94016" +278677,Wired Headphones,1,11.99,10/03/19 18:17,"871 Ridge St, San Francisco, CA 94016" +278678,Lightning Charging Cable,1,14.95,10/09/19 19:01,"203 Center St, Dallas, TX 75001" +278679,Lightning Charging Cable,1,14.95,10/08/19 08:40,"436 Highland St, Dallas, TX 75001" +278680,Macbook Pro Laptop,1,1700,10/05/19 12:34,"955 West St, Dallas, TX 75001" +278681,ThinkPad Laptop,1,999.99,10/19/19 15:51,"515 South St, San Francisco, CA 94016" +278682,Bose SoundSport Headphones,1,99.99,10/10/19 13:25,"319 Madison St, Boston, MA 02215" +278683,27in FHD Monitor,1,149.99,10/29/19 18:53,"175 Dogwood St, Seattle, WA 98101" +278683,Apple Airpods Headphones,1,150,10/29/19 18:53,"175 Dogwood St, Seattle, WA 98101" +278684,Wired Headphones,1,11.99,10/08/19 14:44,"608 13th St, Atlanta, GA 30301" +278685,USB-C Charging Cable,1,11.95,10/11/19 14:20,"988 Church St, Austin, TX 73301" +278686,Lightning Charging Cable,1,14.95,10/30/19 23:03,"340 Lake St, San Francisco, CA 94016" +278687,iPhone,1,700,10/13/19 11:30,"766 Lakeview St, Dallas, TX 75001" +278688,AAA Batteries (4-pack),1,2.99,10/17/19 19:47,"293 8th St, Seattle, WA 98101" +278689,iPhone,1,700,10/12/19 20:41,"546 West St, Boston, MA 02215" +278690,AAA Batteries (4-pack),1,2.99,10/07/19 13:03,"508 Jefferson St, San Francisco, CA 94016" +278691,AA Batteries (4-pack),1,3.84,10/08/19 16:25,"719 Madison St, Portland, ME 04101" +278692,AA Batteries (4-pack),1,3.84,10/21/19 16:01,"440 Main St, Boston, MA 02215" +278692,Google Phone,1,600,10/21/19 16:01,"440 Main St, Boston, MA 02215" +278693,AA Batteries (4-pack),3,3.84,10/07/19 00:31,"241 13th St, Los Angeles, CA 90001" +278694,ThinkPad Laptop,1,999.99,10/16/19 05:28,"295 11th St, Portland, OR 97035" +278695,Apple Airpods Headphones,1,150,10/31/19 12:48,"889 Highland St, San Francisco, CA 94016" +278696,AAA Batteries (4-pack),1,2.99,10/31/19 23:28,"945 Cherry St, Portland, OR 97035" +278697,ThinkPad Laptop,1,999.99,10/02/19 20:21,"255 5th St, San Francisco, CA 94016" +278698,34in Ultrawide Monitor,1,379.99,10/23/19 11:40,"391 Maple St, New York City, NY 10001" +278699,AA Batteries (4-pack),3,3.84,10/20/19 12:31,"929 Johnson St, San Francisco, CA 94016" +278700,Lightning Charging Cable,1,14.95,10/03/19 18:45,"218 Wilson St, San Francisco, CA 94016" +278701,Lightning Charging Cable,1,14.95,10/08/19 16:24,"495 Washington St, Los Angeles, CA 90001" +278702,Apple Airpods Headphones,1,150,10/27/19 12:02,"31 11th St, Boston, MA 02215" +278703,Apple Airpods Headphones,1,150,10/19/19 18:58,"227 14th St, New York City, NY 10001" +278704,Wired Headphones,1,11.99,10/26/19 11:52,"261 9th St, San Francisco, CA 94016" +278705,USB-C Charging Cable,1,11.95,10/13/19 12:40,"554 Maple St, Los Angeles, CA 90001" +278706,iPhone,1,700,10/12/19 10:56,"280 Jackson St, Los Angeles, CA 90001" +278707,AAA Batteries (4-pack),5,2.99,10/29/19 18:43,"62 13th St, Los Angeles, CA 90001" +278708,Bose SoundSport Headphones,1,99.99,10/02/19 21:22,"117 10th St, Los Angeles, CA 90001" +278709,AAA Batteries (4-pack),1,2.99,10/25/19 23:24,"110 Lincoln St, Dallas, TX 75001" +278710,AAA Batteries (4-pack),1,2.99,10/16/19 16:38,"285 Lake St, Los Angeles, CA 90001" +278711,34in Ultrawide Monitor,1,379.99,10/11/19 20:19,"140 8th St, Dallas, TX 75001" +278712,Wired Headphones,1,11.99,10/02/19 14:51,"464 Jefferson St, San Francisco, CA 94016" +278713,Flatscreen TV,1,300,10/15/19 10:14,"73 8th St, Portland, OR 97035" +278714,iPhone,1,700,10/31/19 20:09,"80 Park St, New York City, NY 10001" +278715,USB-C Charging Cable,1,11.95,10/03/19 03:49,"807 Wilson St, Seattle, WA 98101" +278716,AAA Batteries (4-pack),2,2.99,10/20/19 11:50,"681 12th St, San Francisco, CA 94016" +278717,AA Batteries (4-pack),5,3.84,10/28/19 14:16,"878 1st St, Los Angeles, CA 90001" +278718,Macbook Pro Laptop,1,1700,10/01/19 16:41,"304 Wilson St, Los Angeles, CA 90001" +278719,AAA Batteries (4-pack),1,2.99,10/13/19 13:03,"199 Lincoln St, Los Angeles, CA 90001" +278720,AAA Batteries (4-pack),1,2.99,10/12/19 12:53,"952 6th St, Austin, TX 73301" +278721,Lightning Charging Cable,1,14.95,10/08/19 22:24,"804 Church St, Los Angeles, CA 90001" +278722,AAA Batteries (4-pack),1,2.99,10/01/19 14:26,"781 West St, Seattle, WA 98101" +278723,USB-C Charging Cable,2,11.95,10/05/19 16:39,"828 5th St, Seattle, WA 98101" +278724,27in 4K Gaming Monitor,1,389.99,10/18/19 08:23,"524 Meadow St, Portland, OR 97035" +278725,AA Batteries (4-pack),1,3.84,10/03/19 14:09,"380 6th St, Portland, OR 97035" +278726,AA Batteries (4-pack),1,3.84,10/14/19 01:54,"672 Lake St, Los Angeles, CA 90001" +278727,AA Batteries (4-pack),1,3.84,10/24/19 10:25,"422 Highland St, New York City, NY 10001" +278728,AAA Batteries (4-pack),1,2.99,10/17/19 21:27,"185 Lakeview St, San Francisco, CA 94016" +278729,Apple Airpods Headphones,1,150,10/25/19 02:09,"210 Dogwood St, San Francisco, CA 94016" +278730,20in Monitor,1,109.99,10/15/19 16:10,"426 North St, San Francisco, CA 94016" +278731,AA Batteries (4-pack),1,3.84,10/22/19 14:34,"632 Maple St, San Francisco, CA 94016" +278732,USB-C Charging Cable,2,11.95,10/15/19 11:23,"921 Johnson St, Portland, OR 97035" +278733,AAA Batteries (4-pack),1,2.99,10/30/19 16:57,"814 West St, New York City, NY 10001" +278734,Lightning Charging Cable,1,14.95,10/20/19 09:35,"652 11th St, Seattle, WA 98101" +278735,Google Phone,1,600,10/20/19 16:12,"682 Cedar St, Los Angeles, CA 90001" +278736,AA Batteries (4-pack),2,3.84,10/13/19 00:56,"969 Washington St, New York City, NY 10001" +278737,AAA Batteries (4-pack),2,2.99,10/18/19 15:56,"643 11th St, Dallas, TX 75001" +278738,27in FHD Monitor,1,149.99,10/14/19 21:01,"317 1st St, Boston, MA 02215" +278739,USB-C Charging Cable,2,11.95,10/06/19 11:42,"730 Cedar St, Seattle, WA 98101" +278740,Lightning Charging Cable,1,14.95,10/14/19 12:07,"769 Ridge St, New York City, NY 10001" +278741,Wired Headphones,1,11.99,10/18/19 11:02,"972 7th St, San Francisco, CA 94016" +278742,Lightning Charging Cable,1,14.95,10/12/19 21:39,"397 Cherry St, San Francisco, CA 94016" +278743,Wired Headphones,1,11.99,10/19/19 21:47,"251 Lakeview St, San Francisco, CA 94016" +278744,27in 4K Gaming Monitor,1,389.99,10/03/19 19:33,"451 Dogwood St, Dallas, TX 75001" +278745,ThinkPad Laptop,1,999.99,10/01/19 12:25,"713 Dogwood St, Los Angeles, CA 90001" +278746,Flatscreen TV,1,300,10/09/19 22:05,"555 Cedar St, Dallas, TX 75001" +278747,AAA Batteries (4-pack),1,2.99,10/16/19 12:41,"731 Meadow St, Dallas, TX 75001" +278748,20in Monitor,1,109.99,10/04/19 12:07,"861 9th St, San Francisco, CA 94016" +278749,Lightning Charging Cable,1,14.95,10/08/19 20:23,"789 Main St, Atlanta, GA 30301" +278750,34in Ultrawide Monitor,1,379.99,10/18/19 17:45,"14 North St, San Francisco, CA 94016" +278751,Bose SoundSport Headphones,1,99.99,10/08/19 11:18,"569 7th St, San Francisco, CA 94016" +278752,Lightning Charging Cable,1,14.95,10/16/19 12:36,"130 Forest St, New York City, NY 10001" +278753,AA Batteries (4-pack),1,3.84,10/04/19 01:32,"624 Spruce St, New York City, NY 10001" +278754,Wired Headphones,1,11.99,10/13/19 06:21,"770 9th St, San Francisco, CA 94016" +278755,AAA Batteries (4-pack),1,2.99,10/14/19 13:39,"608 River St, Dallas, TX 75001" +278756,USB-C Charging Cable,1,11.95,10/30/19 13:00,"409 Ridge St, Seattle, WA 98101" +278757,34in Ultrawide Monitor,1,379.99,10/26/19 16:52,"312 10th St, Los Angeles, CA 90001" +278758,AAA Batteries (4-pack),1,2.99,10/04/19 12:10,"655 9th St, Atlanta, GA 30301" +278759,Vareebadd Phone,1,400,10/01/19 17:01,"528 7th St, Seattle, WA 98101" +278760,ThinkPad Laptop,1,999.99,10/03/19 16:50,"260 10th St, Atlanta, GA 30301" +278761,Flatscreen TV,1,300,10/21/19 20:06,"11 River St, New York City, NY 10001" +278762,USB-C Charging Cable,1,11.95,10/06/19 15:50,"629 Lincoln St, Dallas, TX 75001" +278763,AA Batteries (4-pack),1,3.84,10/27/19 17:42,"720 2nd St, Portland, OR 97035" +278764,Lightning Charging Cable,1,14.95,10/02/19 18:36,"210 14th St, Los Angeles, CA 90001" +278765,Wired Headphones,1,11.99,10/17/19 10:23,"383 River St, San Francisco, CA 94016" +278766,USB-C Charging Cable,1,11.95,10/01/19 21:40,"109 Adams St, Los Angeles, CA 90001" +278767,Wired Headphones,1,11.99,10/19/19 17:18,"223 Lincoln St, San Francisco, CA 94016" +278768,USB-C Charging Cable,1,11.95,10/15/19 21:37,"281 Elm St, New York City, NY 10001" +278769,Bose SoundSport Headphones,1,99.99,10/31/19 21:11,"768 7th St, Seattle, WA 98101" +278770,AA Batteries (4-pack),1,3.84,10/04/19 13:19,"636 Ridge St, Los Angeles, CA 90001" +278771,Google Phone,1,600,10/25/19 08:43,"907 2nd St, San Francisco, CA 94016" +278772,Flatscreen TV,1,300,10/05/19 11:20,"813 Jefferson St, Atlanta, GA 30301" +278773,AA Batteries (4-pack),1,3.84,10/18/19 21:13,"967 Center St, New York City, NY 10001" +278774,AA Batteries (4-pack),1,3.84,10/20/19 00:40,"331 Willow St, Portland, OR 97035" +278775,Apple Airpods Headphones,1,150,10/06/19 17:32,"136 Adams St, Austin, TX 73301" +278776,Wired Headphones,2,11.99,10/21/19 07:00,"447 Church St, Seattle, WA 98101" +278777,Wired Headphones,1,11.99,10/11/19 08:25,"421 2nd St, Atlanta, GA 30301" +278778,34in Ultrawide Monitor,1,379.99,10/28/19 17:34,"378 6th St, Los Angeles, CA 90001" +278779,AA Batteries (4-pack),1,3.84,10/14/19 12:15,"852 Lakeview St, New York City, NY 10001" +278780,27in FHD Monitor,1,149.99,10/31/19 21:13,"619 Hill St, Los Angeles, CA 90001" +278781,27in 4K Gaming Monitor,1,389.99,10/04/19 21:29,"758 Center St, Boston, MA 02215" +278782,Macbook Pro Laptop,1,1700,10/22/19 15:26,"538 4th St, Boston, MA 02215" +278783,iPhone,1,700,10/14/19 15:49,"192 Elm St, New York City, NY 10001" +278784,20in Monitor,1,109.99,10/16/19 05:53,"534 Hill St, New York City, NY 10001" +278785,iPhone,1,700,10/20/19 15:21,"397 Forest St, Los Angeles, CA 90001" +278786,Apple Airpods Headphones,1,150,10/09/19 20:05,"247 North St, Austin, TX 73301" +278787,AAA Batteries (4-pack),3,2.99,10/26/19 17:15,"259 Pine St, Atlanta, GA 30301" +278788,AA Batteries (4-pack),1,3.84,10/05/19 15:12,"66 2nd St, Los Angeles, CA 90001" +278789,34in Ultrawide Monitor,1,379.99,10/09/19 19:28,"937 13th St, Austin, TX 73301" +278790,Lightning Charging Cable,1,14.95,10/31/19 17:40,"510 Jackson St, Seattle, WA 98101" +278791,Macbook Pro Laptop,1,1700,10/10/19 15:09,"557 8th St, Dallas, TX 75001" +278792,Apple Airpods Headphones,1,150,10/26/19 23:02,"893 Washington St, New York City, NY 10001" +278793,USB-C Charging Cable,1,11.95,10/22/19 08:52,"277 5th St, Los Angeles, CA 90001" +278794,Bose SoundSport Headphones,1,99.99,10/25/19 18:33,"301 Main St, Portland, OR 97035" +278795,USB-C Charging Cable,1,11.95,10/10/19 13:34,"894 Willow St, Seattle, WA 98101" +278796,AAA Batteries (4-pack),2,2.99,10/20/19 23:21,"680 South St, New York City, NY 10001" +278797,USB-C Charging Cable,1,11.95,10/23/19 15:01,"312 Maple St, Portland, OR 97035" +278798,Macbook Pro Laptop,1,1700,10/21/19 07:50,"330 Sunset St, San Francisco, CA 94016" +278799,Lightning Charging Cable,1,14.95,10/27/19 14:36,"614 Johnson St, New York City, NY 10001" +278800,34in Ultrawide Monitor,1,379.99,10/21/19 11:11,"432 10th St, San Francisco, CA 94016" +278801,AAA Batteries (4-pack),4,2.99,10/27/19 19:38,"540 Dogwood St, Portland, OR 97035" +278802,Lightning Charging Cable,1,14.95,10/02/19 18:07,"254 Sunset St, Portland, ME 04101" +278803,ThinkPad Laptop,1,999.99,10/16/19 13:18,"965 Cherry St, Los Angeles, CA 90001" +278804,AA Batteries (4-pack),1,3.84,10/08/19 17:19,"413 Lake St, Dallas, TX 75001" +278805,USB-C Charging Cable,1,11.95,10/04/19 10:13,"609 13th St, San Francisco, CA 94016" +278806,Bose SoundSport Headphones,1,99.99,10/13/19 10:50,"492 Highland St, Portland, ME 04101" +278807,Wired Headphones,1,11.99,10/15/19 17:09,"189 West St, San Francisco, CA 94016" +278808,Wired Headphones,1,11.99,10/20/19 08:36,"231 South St, Seattle, WA 98101" +278809,USB-C Charging Cable,1,11.95,10/28/19 12:54,"23 Dogwood St, Seattle, WA 98101" +278810,USB-C Charging Cable,1,11.95,10/23/19 14:28,"590 Willow St, Los Angeles, CA 90001" +278811,AAA Batteries (4-pack),1,2.99,10/28/19 15:09,"627 6th St, San Francisco, CA 94016" +278812,Vareebadd Phone,1,400,10/01/19 09:43,"970 8th St, Seattle, WA 98101" +278812,USB-C Charging Cable,2,11.95,10/01/19 09:43,"970 8th St, Seattle, WA 98101" +278812,Lightning Charging Cable,1,14.95,10/01/19 09:43,"970 8th St, Seattle, WA 98101" +278813,Flatscreen TV,1,300,10/03/19 21:21,"259 Highland St, Dallas, TX 75001" +278814,Wired Headphones,1,11.99,10/22/19 13:25,"502 4th St, Atlanta, GA 30301" +278815,Lightning Charging Cable,1,14.95,10/07/19 15:42,"267 Lake St, Dallas, TX 75001" +278816,Flatscreen TV,1,300,10/30/19 22:57,"720 9th St, Seattle, WA 98101" +278817,USB-C Charging Cable,1,11.95,10/04/19 12:35,"787 Hill St, San Francisco, CA 94016" +278818,ThinkPad Laptop,1,999.99,10/08/19 12:15,"410 Lakeview St, Los Angeles, CA 90001" +278819,Lightning Charging Cable,1,14.95,10/27/19 00:39,"552 2nd St, Los Angeles, CA 90001" +278820,Lightning Charging Cable,1,14.95,10/30/19 16:12,"25 Park St, Austin, TX 73301" +278821,Flatscreen TV,1,300,10/23/19 12:23,"852 River St, Atlanta, GA 30301" +278822,AAA Batteries (4-pack),3,2.99,10/11/19 14:20,"499 2nd St, New York City, NY 10001" +278823,ThinkPad Laptop,1,999.99,10/02/19 18:41,"273 Hill St, New York City, NY 10001" +278824,Lightning Charging Cable,1,14.95,10/05/19 15:59,"850 Center St, San Francisco, CA 94016" +278825,27in FHD Monitor,1,149.99,10/09/19 12:51,"634 Jefferson St, Boston, MA 02215" +278826,Lightning Charging Cable,1,14.95,10/07/19 00:37,"71 Park St, Austin, TX 73301" +278827,AA Batteries (4-pack),2,3.84,10/12/19 18:38,"9 Forest St, Portland, ME 04101" +278828,USB-C Charging Cable,1,11.95,10/26/19 23:29,"774 Walnut St, Dallas, TX 75001" +278829,AA Batteries (4-pack),1,3.84,10/23/19 06:20,"484 1st St, Los Angeles, CA 90001" +278830,AAA Batteries (4-pack),1,2.99,10/16/19 17:26,"818 5th St, Boston, MA 02215" +278831,ThinkPad Laptop,1,999.99,10/15/19 14:16,"894 Washington St, New York City, NY 10001" +278832,27in FHD Monitor,1,149.99,10/16/19 23:17,"880 Sunset St, Los Angeles, CA 90001" +278833,USB-C Charging Cable,1,11.95,10/03/19 12:02,"860 West St, Seattle, WA 98101" +278834,AA Batteries (4-pack),1,3.84,10/07/19 14:15,"331 Willow St, San Francisco, CA 94016" +278835,34in Ultrawide Monitor,1,379.99,10/25/19 10:24,"648 Cedar St, New York City, NY 10001" +278836,Flatscreen TV,1,300,10/17/19 21:50,"900 Center St, Atlanta, GA 30301" +278837,34in Ultrawide Monitor,1,379.99,10/07/19 13:03,"205 Jefferson St, Dallas, TX 75001" +278838,USB-C Charging Cable,1,11.95,10/15/19 16:04,"416 Madison St, Atlanta, GA 30301" +278839,AA Batteries (4-pack),1,3.84,10/11/19 19:23,"562 Sunset St, Dallas, TX 75001" +278840,Bose SoundSport Headphones,1,99.99,10/19/19 15:39,"287 Ridge St, Los Angeles, CA 90001" +278841,Wired Headphones,1,11.99,10/16/19 13:38,"651 Madison St, San Francisco, CA 94016" +278842,Flatscreen TV,1,300,10/15/19 14:04,"214 1st St, San Francisco, CA 94016" +278843,Google Phone,1,600,10/10/19 12:27,"838 Ridge St, San Francisco, CA 94016" +278843,USB-C Charging Cable,1,11.95,10/10/19 12:27,"838 Ridge St, San Francisco, CA 94016" +278844,AA Batteries (4-pack),2,3.84,10/06/19 18:12,"16 River St, Los Angeles, CA 90001" +278845,Wired Headphones,1,11.99,10/31/19 23:36,"131 Hickory St, Atlanta, GA 30301" +278845,Macbook Pro Laptop,1,1700,10/31/19 23:36,"131 Hickory St, Atlanta, GA 30301" +278846,Apple Airpods Headphones,1,150,10/25/19 18:40,"789 Dogwood St, Boston, MA 02215" +278847,Bose SoundSport Headphones,1,99.99,10/06/19 18:19,"395 Meadow St, Atlanta, GA 30301" +278848,Wired Headphones,1,11.99,10/09/19 22:24,"563 14th St, Los Angeles, CA 90001" +278849,Wired Headphones,2,11.99,10/28/19 15:19,"728 7th St, Portland, ME 04101" +278850,Apple Airpods Headphones,1,150,10/30/19 22:00,"89 Hickory St, Austin, TX 73301" +278851,Apple Airpods Headphones,1,150,10/30/19 20:10,"304 Cedar St, New York City, NY 10001" +278852,ThinkPad Laptop,1,999.99,10/07/19 11:34,"500 Madison St, Boston, MA 02215" +278853,USB-C Charging Cable,1,11.95,10/05/19 15:30,"493 Pine St, New York City, NY 10001" +278854,AA Batteries (4-pack),1,3.84,10/27/19 01:30,"293 Hill St, Seattle, WA 98101" +278855,USB-C Charging Cable,1,11.95,10/28/19 12:10,"129 10th St, Austin, TX 73301" +278856,AAA Batteries (4-pack),1,2.99,10/05/19 20:34,"80 2nd St, Atlanta, GA 30301" +278857,USB-C Charging Cable,2,11.95,10/21/19 23:31,"506 Willow St, San Francisco, CA 94016" +278858,Lightning Charging Cable,1,14.95,10/30/19 10:28,"712 7th St, Seattle, WA 98101" +278859,Lightning Charging Cable,1,14.95,10/15/19 19:18,"835 South St, Seattle, WA 98101" +278860,Wired Headphones,1,11.99,10/13/19 12:58,"829 Elm St, Dallas, TX 75001" +278861,Apple Airpods Headphones,1,150,10/23/19 10:30,"248 11th St, Atlanta, GA 30301" +278862,Apple Airpods Headphones,1,150,10/14/19 00:55,"183 Dogwood St, New York City, NY 10001" +278863,Flatscreen TV,1,300,10/09/19 11:41,"278 Lake St, Boston, MA 02215" +278864,Apple Airpods Headphones,2,150,10/17/19 19:22,"197 Highland St, Seattle, WA 98101" +278865,Lightning Charging Cable,1,14.95,10/08/19 11:54,"73 Spruce St, Boston, MA 02215" +278866,USB-C Charging Cable,1,11.95,10/16/19 17:18,"60 9th St, San Francisco, CA 94016" +278867,Apple Airpods Headphones,1,150,10/05/19 05:15,"224 Maple St, New York City, NY 10001" +278868,Bose SoundSport Headphones,1,99.99,10/31/19 09:54,"29 Madison St, San Francisco, CA 94016" +278869,Wired Headphones,1,11.99,10/18/19 02:09,"570 Wilson St, New York City, NY 10001" +278870,Apple Airpods Headphones,1,150,10/01/19 16:13,"628 South St, San Francisco, CA 94016" +278871,Apple Airpods Headphones,2,150,10/04/19 21:45,"546 Washington St, San Francisco, CA 94016" +278872,AA Batteries (4-pack),3,3.84,10/23/19 08:13,"272 Cherry St, San Francisco, CA 94016" +278873,34in Ultrawide Monitor,1,379.99,10/12/19 09:46,"36 Johnson St, San Francisco, CA 94016" +278874,ThinkPad Laptop,1,999.99,10/10/19 00:02,"199 10th St, Boston, MA 02215" +278875,iPhone,1,700,10/02/19 21:33,"934 Elm St, Boston, MA 02215" +278876,Flatscreen TV,1,300,10/04/19 11:07,"447 Maple St, San Francisco, CA 94016" +278877,Wired Headphones,1,11.99,10/27/19 21:30,"605 Jefferson St, Atlanta, GA 30301" +278878,Wired Headphones,1,11.99,10/17/19 13:32,"305 Hill St, New York City, NY 10001" +278879,AA Batteries (4-pack),1,3.84,10/06/19 16:50,"399 Forest St, Los Angeles, CA 90001" +278880,Apple Airpods Headphones,1,150,10/23/19 22:14,"376 Church St, Boston, MA 02215" +278881,Wired Headphones,1,11.99,10/09/19 13:56,"602 Lakeview St, New York City, NY 10001" +278882,AA Batteries (4-pack),1,3.84,10/20/19 08:17,"632 Hickory St, Boston, MA 02215" +278882,Lightning Charging Cable,1,14.95,10/20/19 08:17,"632 Hickory St, Boston, MA 02215" +278883,Google Phone,1,600,10/25/19 08:57,"679 Pine St, San Francisco, CA 94016" +278884,Lightning Charging Cable,1,14.95,10/30/19 18:50,"485 Spruce St, Portland, OR 97035" +278885,Wired Headphones,1,11.99,10/03/19 11:49,"335 Hickory St, Boston, MA 02215" +278886,Apple Airpods Headphones,1,150,10/18/19 17:59,"282 12th St, San Francisco, CA 94016" +278887,Lightning Charging Cable,1,14.95,10/13/19 19:12,"962 7th St, Dallas, TX 75001" +278887,AAA Batteries (4-pack),2,2.99,10/13/19 19:12,"962 7th St, Dallas, TX 75001" +278888,20in Monitor,1,109.99,10/21/19 19:10,"905 14th St, Los Angeles, CA 90001" +278889,Lightning Charging Cable,1,14.95,10/08/19 21:41,"645 Jackson St, San Francisco, CA 94016" +278890,34in Ultrawide Monitor,1,379.99,10/17/19 15:37,"385 Hill St, San Francisco, CA 94016" +278891,AAA Batteries (4-pack),1,2.99,10/05/19 18:52,"294 Washington St, Los Angeles, CA 90001" +278892,20in Monitor,1,109.99,10/13/19 17:06,"305 Hill St, Atlanta, GA 30301" +278893,AA Batteries (4-pack),1,3.84,10/19/19 19:21,"919 Sunset St, Boston, MA 02215" +278894,AAA Batteries (4-pack),1,2.99,10/24/19 17:28,"960 12th St, San Francisco, CA 94016" +278895,Macbook Pro Laptop,1,1700,10/06/19 14:50,"548 Willow St, Atlanta, GA 30301" +278896,27in 4K Gaming Monitor,1,389.99,10/12/19 18:50,"479 Jefferson St, Atlanta, GA 30301" +278897,Bose SoundSport Headphones,1,99.99,10/08/19 12:55,"909 Sunset St, Los Angeles, CA 90001" +278898,Apple Airpods Headphones,1,150,10/29/19 14:59,"416 Sunset St, Dallas, TX 75001" +278899,AA Batteries (4-pack),1,3.84,10/23/19 10:25,"181 Meadow St, Seattle, WA 98101" +278900,Bose SoundSport Headphones,1,99.99,10/09/19 21:05,"748 Madison St, New York City, NY 10001" +278901,Bose SoundSport Headphones,1,99.99,10/28/19 11:59,"704 Lincoln St, Austin, TX 73301" +278902,AA Batteries (4-pack),1,3.84,10/23/19 05:57,"723 Highland St, San Francisco, CA 94016" +278903,ThinkPad Laptop,1,999.99,10/13/19 07:04,"55 Highland St, San Francisco, CA 94016" +278904,ThinkPad Laptop,1,999.99,10/09/19 21:23,"843 2nd St, Dallas, TX 75001" +278905,27in FHD Monitor,1,149.99,10/26/19 21:48,"231 7th St, Boston, MA 02215" +278906,Apple Airpods Headphones,1,150,10/02/19 17:34,"688 Main St, Dallas, TX 75001" +278907,Wired Headphones,1,11.99,10/05/19 11:26,"234 6th St, Dallas, TX 75001" +278908,AAA Batteries (4-pack),2,2.99,10/19/19 20:22,"780 12th St, Seattle, WA 98101" +278909,iPhone,1,700,10/01/19 18:01,"40 Dogwood St, San Francisco, CA 94016" +278910,iPhone,1,700,10/12/19 18:25,"496 9th St, San Francisco, CA 94016" +278911,Apple Airpods Headphones,1,150,10/07/19 15:53,"767 West St, Los Angeles, CA 90001" +278912,ThinkPad Laptop,1,999.99,10/10/19 15:24,"308 Dogwood St, Dallas, TX 75001" +278913,34in Ultrawide Monitor,1,379.99,10/17/19 16:15,"713 Adams St, San Francisco, CA 94016" +278914,USB-C Charging Cable,1,11.95,10/29/19 06:23,"30 5th St, New York City, NY 10001" +278915,Lightning Charging Cable,1,14.95,10/18/19 17:38,"639 12th St, San Francisco, CA 94016" +278916,Lightning Charging Cable,1,14.95,10/13/19 22:15,"300 Cedar St, Boston, MA 02215" +278917,Wired Headphones,1,11.99,10/17/19 12:35,"757 Sunset St, New York City, NY 10001" +278918,Apple Airpods Headphones,1,150,10/06/19 12:08,"300 Meadow St, Atlanta, GA 30301" +278919,ThinkPad Laptop,1,999.99,10/01/19 05:43,"712 Jefferson St, New York City, NY 10001" +278920,AA Batteries (4-pack),1,3.84,10/18/19 12:49,"156 South St, Dallas, TX 75001" +278921,USB-C Charging Cable,1,11.95,10/17/19 22:18,"711 7th St, Portland, OR 97035" +278922,27in 4K Gaming Monitor,1,389.99,10/25/19 12:57,"698 Willow St, San Francisco, CA 94016" +278923,Bose SoundSport Headphones,1,99.99,10/01/19 10:19,"196 Lincoln St, Dallas, TX 75001" +278923,Apple Airpods Headphones,1,150,10/01/19 10:19,"196 Lincoln St, Dallas, TX 75001" +278924,USB-C Charging Cable,1,11.95,10/28/19 17:06,"536 West St, San Francisco, CA 94016" +278925,ThinkPad Laptop,1,999.99,10/04/19 23:20,"368 6th St, Atlanta, GA 30301" +278926,Lightning Charging Cable,1,14.95,10/16/19 22:12,"631 Sunset St, Seattle, WA 98101" +278927,27in FHD Monitor,1,149.99,10/25/19 22:05,"131 Hill St, Portland, ME 04101" +278928,USB-C Charging Cable,1,11.95,10/17/19 12:58,"943 2nd St, Los Angeles, CA 90001" +278929,Wired Headphones,1,11.99,10/28/19 10:15,"229 Hickory St, San Francisco, CA 94016" +278930,USB-C Charging Cable,1,11.95,10/08/19 00:13,"386 Park St, San Francisco, CA 94016" +278931,Lightning Charging Cable,1,14.95,10/17/19 18:26,"722 12th St, Atlanta, GA 30301" +278932,AAA Batteries (4-pack),1,2.99,10/21/19 11:51,"701 4th St, Austin, TX 73301" +278933,AAA Batteries (4-pack),2,2.99,10/13/19 19:30,"400 12th St, San Francisco, CA 94016" +278934,27in 4K Gaming Monitor,1,389.99,10/31/19 09:08,"732 Walnut St, New York City, NY 10001" +278935,Macbook Pro Laptop,1,1700,10/16/19 21:28,"345 Pine St, Los Angeles, CA 90001" +278936,USB-C Charging Cable,1,11.95,10/16/19 21:18,"404 Walnut St, Seattle, WA 98101" +278937,USB-C Charging Cable,1,11.95,10/20/19 22:17,"323 6th St, New York City, NY 10001" +278938,Apple Airpods Headphones,1,150,10/06/19 20:49,"710 Lakeview St, San Francisco, CA 94016" +278939,Apple Airpods Headphones,1,150,10/04/19 19:21,"256 South St, Dallas, TX 75001" +278940,Bose SoundSport Headphones,1,99.99,10/02/19 14:16,"299 10th St, Portland, OR 97035" +278941,AA Batteries (4-pack),1,3.84,10/15/19 20:34,"363 12th St, Los Angeles, CA 90001" +278942,Wired Headphones,1,11.99,10/05/19 10:53,"107 Forest St, San Francisco, CA 94016" +278943,Wired Headphones,2,11.99,10/05/19 09:24,"993 Willow St, San Francisco, CA 94016" +278944,Lightning Charging Cable,1,14.95,10/20/19 20:28,"224 Johnson St, Austin, TX 73301" +278945,Macbook Pro Laptop,1,1700,10/20/19 12:04,"902 Jackson St, New York City, NY 10001" +278946,Bose SoundSport Headphones,1,99.99,10/03/19 17:01,"850 Cherry St, Atlanta, GA 30301" +278947,Wired Headphones,1,11.99,10/08/19 10:36,"714 6th St, New York City, NY 10001" +278948,27in 4K Gaming Monitor,1,389.99,10/29/19 10:51,"461 Madison St, Atlanta, GA 30301" +278949,AAA Batteries (4-pack),1,2.99,10/15/19 17:37,"990 West St, Seattle, WA 98101" +278950,USB-C Charging Cable,2,11.95,10/01/19 11:42,"30 13th St, New York City, NY 10001" +278951,AA Batteries (4-pack),2,3.84,10/14/19 14:13,"764 Ridge St, Los Angeles, CA 90001" +278952,Google Phone,1,600,10/06/19 15:46,"358 Meadow St, Dallas, TX 75001" +278953,27in FHD Monitor,1,149.99,10/26/19 16:04,"260 Cherry St, San Francisco, CA 94016" +278954,Bose SoundSport Headphones,1,99.99,10/17/19 08:02,"389 Wilson St, San Francisco, CA 94016" +278955,Bose SoundSport Headphones,1,99.99,10/04/19 01:45,"548 Pine St, San Francisco, CA 94016" +278956,Wired Headphones,1,11.99,10/03/19 16:23,"763 Ridge St, San Francisco, CA 94016" +278957,AA Batteries (4-pack),1,3.84,10/26/19 17:01,"218 Park St, Dallas, TX 75001" +278958,27in FHD Monitor,1,149.99,10/03/19 15:35,"727 Jefferson St, San Francisco, CA 94016" +278959,27in FHD Monitor,1,149.99,10/21/19 20:48,"319 7th St, Los Angeles, CA 90001" +278960,Apple Airpods Headphones,1,150,10/15/19 11:45,"55 Highland St, Dallas, TX 75001" +278961,Wired Headphones,1,11.99,10/22/19 20:21,"812 4th St, San Francisco, CA 94016" +278962,27in 4K Gaming Monitor,1,389.99,10/15/19 20:44,"98 13th St, New York City, NY 10001" +278963,Lightning Charging Cable,1,14.95,10/31/19 12:21,"413 Meadow St, San Francisco, CA 94016" +278964,AAA Batteries (4-pack),1,2.99,10/16/19 11:24,"880 Jefferson St, Los Angeles, CA 90001" +278965,27in 4K Gaming Monitor,1,389.99,10/21/19 11:54,"77 Main St, San Francisco, CA 94016" +278966,Bose SoundSport Headphones,1,99.99,10/26/19 13:24,"744 Meadow St, Dallas, TX 75001" +278967,Bose SoundSport Headphones,1,99.99,10/27/19 16:25,"201 Sunset St, San Francisco, CA 94016" +278968,Bose SoundSport Headphones,1,99.99,10/19/19 19:21,"733 Park St, Seattle, WA 98101" +278969,USB-C Charging Cable,1,11.95,10/28/19 15:52,"72 Pine St, San Francisco, CA 94016" +278970,Wired Headphones,2,11.99,10/13/19 20:30,"491 Meadow St, San Francisco, CA 94016" +278971,Macbook Pro Laptop,1,1700,10/14/19 20:24,"724 Cherry St, San Francisco, CA 94016" +278972,Wired Headphones,1,11.99,10/14/19 14:41,"547 Dogwood St, Seattle, WA 98101" +278973,Lightning Charging Cable,1,14.95,10/26/19 21:14,"716 Lake St, Dallas, TX 75001" +278974,AA Batteries (4-pack),1,3.84,10/19/19 10:52,"61 Lincoln St, Dallas, TX 75001" +278975,Macbook Pro Laptop,1,1700,10/17/19 18:34,"275 Meadow St, San Francisco, CA 94016" +278976,AAA Batteries (4-pack),1,2.99,10/22/19 20:09,"597 Lakeview St, San Francisco, CA 94016" +278977,Bose SoundSport Headphones,1,99.99,10/13/19 14:27,"314 Maple St, Seattle, WA 98101" +278978,AAA Batteries (4-pack),1,2.99,10/27/19 11:24,"385 12th St, Seattle, WA 98101" +278979,AA Batteries (4-pack),1,3.84,10/26/19 10:09,"636 8th St, San Francisco, CA 94016" +278980,27in 4K Gaming Monitor,1,389.99,10/23/19 12:57,"40 14th St, San Francisco, CA 94016" +278981,USB-C Charging Cable,1,11.95,10/28/19 10:29,"958 14th St, New York City, NY 10001" +278982,Wired Headphones,1,11.99,10/08/19 00:34,"271 Madison St, New York City, NY 10001" +278983,Wired Headphones,1,11.99,10/30/19 18:11,"682 12th St, Austin, TX 73301" +278984,Lightning Charging Cable,1,14.95,10/05/19 11:30,"178 Cedar St, New York City, NY 10001" +278985,27in 4K Gaming Monitor,1,389.99,10/20/19 18:03,"589 Lincoln St, Atlanta, GA 30301" +278986,34in Ultrawide Monitor,1,379.99,10/26/19 11:03,"116 Washington St, Los Angeles, CA 90001" +278987,AAA Batteries (4-pack),6,2.99,10/27/19 23:06,"109 Dogwood St, Seattle, WA 98101" +278988,USB-C Charging Cable,1,11.95,10/28/19 12:59,"694 North St, Atlanta, GA 30301" +278989,Bose SoundSport Headphones,1,99.99,10/12/19 18:45,"63 Johnson St, Boston, MA 02215" +278990,Wired Headphones,1,11.99,10/04/19 23:30,"269 14th St, Dallas, TX 75001" +278991,27in FHD Monitor,1,149.99,10/22/19 09:01,"897 6th St, New York City, NY 10001" +278992,Apple Airpods Headphones,1,150,10/06/19 18:38,"19 Hill St, New York City, NY 10001" +278993,Lightning Charging Cable,1,14.95,10/08/19 21:47,"257 Spruce St, San Francisco, CA 94016" +278994,AA Batteries (4-pack),1,3.84,10/11/19 14:51,"407 Hill St, Austin, TX 73301" +278995,Apple Airpods Headphones,1,150,10/31/19 01:24,"756 7th St, Los Angeles, CA 90001" +278996,27in 4K Gaming Monitor,1,389.99,10/15/19 19:27,"568 Chestnut St, Seattle, WA 98101" +278997,USB-C Charging Cable,1,11.95,10/09/19 18:40,"559 Washington St, San Francisco, CA 94016" +278998,20in Monitor,1,109.99,10/19/19 09:38,"481 River St, San Francisco, CA 94016" +278999,Lightning Charging Cable,1,14.95,10/02/19 17:36,"258 Adams St, Seattle, WA 98101" +279000,iPhone,1,700,10/26/19 20:53,"852 Chestnut St, Los Angeles, CA 90001" +279000,Apple Airpods Headphones,1,150,10/26/19 20:53,"852 Chestnut St, Los Angeles, CA 90001" +279001,USB-C Charging Cable,1,11.95,10/12/19 14:05,"215 Hill St, Portland, OR 97035" +279002,Wired Headphones,1,11.99,10/03/19 14:18,"992 Jefferson St, Los Angeles, CA 90001" +279003,AAA Batteries (4-pack),2,2.99,10/20/19 11:29,"669 Hill St, Los Angeles, CA 90001" +279003,27in FHD Monitor,1,149.99,10/20/19 11:29,"669 Hill St, Los Angeles, CA 90001" +279004,ThinkPad Laptop,1,999.99,10/09/19 20:31,"47 Jefferson St, San Francisco, CA 94016" +279005,USB-C Charging Cable,1,11.95,10/10/19 12:48,"508 13th St, Boston, MA 02215" +279006,AA Batteries (4-pack),1,3.84,10/25/19 11:46,"470 Cedar St, Portland, OR 97035" +279007,Lightning Charging Cable,1,14.95,10/01/19 17:06,"788 5th St, New York City, NY 10001" +279008,Apple Airpods Headphones,1,150,10/11/19 08:50,"766 Cedar St, Boston, MA 02215" +279009,AA Batteries (4-pack),1,3.84,10/03/19 09:27,"885 Spruce St, Atlanta, GA 30301" +279010,20in Monitor,1,109.99,10/15/19 18:45,"635 Ridge St, San Francisco, CA 94016" +279011,Wired Headphones,1,11.99,10/10/19 21:09,"871 Highland St, San Francisco, CA 94016" +279012,Apple Airpods Headphones,1,150,10/13/19 14:50,"185 Center St, New York City, NY 10001" +279013,USB-C Charging Cable,1,11.95,10/10/19 18:37,"977 Lincoln St, San Francisco, CA 94016" +279014,Bose SoundSport Headphones,1,99.99,10/23/19 15:01,"872 14th St, San Francisco, CA 94016" +279015,USB-C Charging Cable,1,11.95,10/03/19 08:24,"746 West St, San Francisco, CA 94016" +279016,27in FHD Monitor,1,149.99,10/31/19 23:16,"42 Chestnut St, Atlanta, GA 30301" +279017,Wired Headphones,1,11.99,10/10/19 15:58,"819 Hickory St, San Francisco, CA 94016" +279018,USB-C Charging Cable,1,11.95,10/29/19 13:48,"220 Cherry St, New York City, NY 10001" +,,,,, +279019,USB-C Charging Cable,1,11.95,10/11/19 19:36,"394 2nd St, Los Angeles, CA 90001" +279020,AAA Batteries (4-pack),1,2.99,10/29/19 19:29,"145 6th St, New York City, NY 10001" +279021,Vareebadd Phone,1,400,10/24/19 12:05,"323 9th St, Portland, OR 97035" +279022,27in FHD Monitor,1,149.99,10/29/19 12:09,"247 Jackson St, Atlanta, GA 30301" +279023,27in FHD Monitor,1,149.99,10/04/19 17:37,"83 9th St, San Francisco, CA 94016" +279024,iPhone,1,700,10/24/19 08:22,"774 Walnut St, Los Angeles, CA 90001" +279025,AAA Batteries (4-pack),2,2.99,10/17/19 14:17,"321 Wilson St, Seattle, WA 98101" +279026,Apple Airpods Headphones,1,150,10/26/19 14:42,"258 North St, Seattle, WA 98101" +,,,,, +279027,AAA Batteries (4-pack),3,2.99,10/13/19 20:20,"257 12th St, New York City, NY 10001" +279028,27in 4K Gaming Monitor,1,389.99,10/08/19 08:43,"354 Church St, New York City, NY 10001" +279029,USB-C Charging Cable,1,11.95,10/31/19 11:34,"806 Sunset St, Los Angeles, CA 90001" +279030,27in 4K Gaming Monitor,1,389.99,10/14/19 16:45,"924 9th St, New York City, NY 10001" +279031,USB-C Charging Cable,1,11.95,10/07/19 10:47,"871 River St, Atlanta, GA 30301" +279032,Bose SoundSport Headphones,1,99.99,10/31/19 17:09,"745 Cedar St, New York City, NY 10001" +279033,Flatscreen TV,1,300,10/21/19 08:41,"946 Pine St, San Francisco, CA 94016" +279034,iPhone,1,700,10/08/19 10:24,"798 Church St, New York City, NY 10001" +279035,Lightning Charging Cable,1,14.95,10/21/19 22:17,"830 9th St, Boston, MA 02215" +279036,Bose SoundSport Headphones,1,99.99,10/30/19 11:08,"514 North St, Boston, MA 02215" +279037,Flatscreen TV,1,300,10/07/19 00:57,"554 14th St, Seattle, WA 98101" +279038,Apple Airpods Headphones,1,150,10/27/19 19:07,"403 7th St, New York City, NY 10001" +279039,Apple Airpods Headphones,1,150,10/01/19 13:58,"438 Lakeview St, Dallas, TX 75001" +279040,Wired Headphones,1,11.99,10/30/19 18:55,"708 Adams St, Dallas, TX 75001" +279041,27in FHD Monitor,1,149.99,10/11/19 20:24,"920 Meadow St, New York City, NY 10001" +279041,Bose SoundSport Headphones,1,99.99,10/11/19 20:24,"920 Meadow St, New York City, NY 10001" +279042,AA Batteries (4-pack),3,3.84,10/05/19 10:01,"830 Cherry St, Dallas, TX 75001" +279043,iPhone,1,700,10/06/19 09:24,"114 Adams St, San Francisco, CA 94016" +279044,AA Batteries (4-pack),1,3.84,10/25/19 17:46,"889 14th St, San Francisco, CA 94016" +279045,USB-C Charging Cable,1,11.95,10/03/19 13:10,"971 Spruce St, Los Angeles, CA 90001" +279046,USB-C Charging Cable,1,11.95,10/27/19 11:34,"244 Forest St, Portland, OR 97035" +279047,Wired Headphones,1,11.99,10/29/19 13:29,"113 Maple St, Seattle, WA 98101" +279048,Macbook Pro Laptop,1,1700,10/02/19 11:04,"803 Ridge St, San Francisco, CA 94016" +279049,Apple Airpods Headphones,1,150,10/28/19 14:59,"40 Jackson St, San Francisco, CA 94016" +279050,20in Monitor,1,109.99,10/13/19 11:25,"312 Maple St, Boston, MA 02215" +279051,USB-C Charging Cable,1,11.95,10/08/19 20:33,"66 Cedar St, Dallas, TX 75001" +279052,Lightning Charging Cable,1,14.95,10/10/19 23:20,"943 Cedar St, Seattle, WA 98101" +279053,iPhone,1,700,10/17/19 13:17,"675 North St, Boston, MA 02215" +279054,27in FHD Monitor,1,149.99,10/14/19 17:48,"619 5th St, San Francisco, CA 94016" +279055,AAA Batteries (4-pack),1,2.99,10/06/19 18:28,"435 Lincoln St, Boston, MA 02215" +279056,Wired Headphones,1,11.99,10/10/19 11:34,"441 4th St, Austin, TX 73301" +279057,AA Batteries (4-pack),1,3.84,10/02/19 00:10,"772 Willow St, Los Angeles, CA 90001" +279058,Macbook Pro Laptop,1,1700,10/19/19 12:41,"497 13th St, Los Angeles, CA 90001" +279059,AAA Batteries (4-pack),3,2.99,10/01/19 11:23,"176 Park St, Seattle, WA 98101" +279060,Wired Headphones,1,11.99,10/04/19 22:44,"379 Johnson St, Los Angeles, CA 90001" +279061,AA Batteries (4-pack),1,3.84,10/13/19 11:16,"323 Main St, Dallas, TX 75001" +279062,ThinkPad Laptop,1,999.99,10/05/19 12:55,"882 Johnson St, San Francisco, CA 94016" +279063,Lightning Charging Cable,1,14.95,10/07/19 22:11,"814 Jefferson St, Seattle, WA 98101" +279064,Vareebadd Phone,1,400,10/28/19 09:45,"484 Lake St, Los Angeles, CA 90001" +279065,AA Batteries (4-pack),2,3.84,10/02/19 22:17,"578 Cedar St, Los Angeles, CA 90001" +279066,USB-C Charging Cable,1,11.95,10/08/19 07:51,"207 Jackson St, San Francisco, CA 94016" +279067,AAA Batteries (4-pack),1,2.99,10/26/19 22:45,"630 Highland St, Los Angeles, CA 90001" +279068,34in Ultrawide Monitor,1,379.99,10/14/19 05:11,"319 Lake St, Boston, MA 02215" +279069,Macbook Pro Laptop,1,1700,10/08/19 21:12,"799 North St, Dallas, TX 75001" +279070,Apple Airpods Headphones,1,150,10/20/19 08:50,"146 South St, Atlanta, GA 30301" +279071,AA Batteries (4-pack),1,3.84,10/22/19 18:33,"719 9th St, Dallas, TX 75001" +279072,AA Batteries (4-pack),1,3.84,10/25/19 02:15,"367 Main St, Boston, MA 02215" +279073,USB-C Charging Cable,1,11.95,10/13/19 22:18,"629 Adams St, New York City, NY 10001" +279074,USB-C Charging Cable,1,11.95,10/15/19 11:40,"251 2nd St, Los Angeles, CA 90001" +279075,AA Batteries (4-pack),1,3.84,10/09/19 15:19,"124 Maple St, Boston, MA 02215" +279076,AAA Batteries (4-pack),2,2.99,10/23/19 23:45,"607 Chestnut St, Seattle, WA 98101" +279077,Wired Headphones,1,11.99,10/18/19 15:04,"520 Jefferson St, Seattle, WA 98101" +279078,Wired Headphones,1,11.99,10/18/19 17:44,"594 South St, Los Angeles, CA 90001" +279079,USB-C Charging Cable,1,11.95,10/02/19 11:23,"396 Meadow St, Seattle, WA 98101" +279080,Apple Airpods Headphones,1,150,10/25/19 16:12,"9 Cedar St, Los Angeles, CA 90001" +279081,AAA Batteries (4-pack),1,2.99,10/29/19 20:50,"959 Elm St, Atlanta, GA 30301" +279082,Bose SoundSport Headphones,1,99.99,10/11/19 14:11,"139 Maple St, Los Angeles, CA 90001" +279083,Wired Headphones,1,11.99,10/10/19 12:46,"403 10th St, Los Angeles, CA 90001" +279084,Lightning Charging Cable,1,14.95,10/01/19 07:57,"139 Lincoln St, Seattle, WA 98101" +279085,Wired Headphones,2,11.99,10/16/19 12:40,"290 10th St, New York City, NY 10001" +279086,AAA Batteries (4-pack),1,2.99,10/02/19 10:59,"3 West St, San Francisco, CA 94016" +279087,AA Batteries (4-pack),1,3.84,10/30/19 15:15,"337 Sunset St, Los Angeles, CA 90001" +279088,27in 4K Gaming Monitor,1,389.99,10/08/19 12:26,"446 Madison St, Seattle, WA 98101" +279089,27in 4K Gaming Monitor,1,389.99,10/09/19 03:24,"467 Wilson St, New York City, NY 10001" +279090,Macbook Pro Laptop,1,1700,10/26/19 13:01,"28 14th St, Los Angeles, CA 90001" +279091,iPhone,1,700,10/02/19 21:22,"354 Forest St, San Francisco, CA 94016" +279092,Bose SoundSport Headphones,1,99.99,10/17/19 12:29,"317 Highland St, Boston, MA 02215" +279093,USB-C Charging Cable,1,11.95,10/14/19 15:52,"426 2nd St, San Francisco, CA 94016" +279094,Google Phone,1,600,10/11/19 13:42,"765 Spruce St, Boston, MA 02215" +279095,Wired Headphones,1,11.99,10/25/19 21:08,"838 Highland St, Austin, TX 73301" +279096,Lightning Charging Cable,1,14.95,10/23/19 10:05,"109 South St, New York City, NY 10001" +279097,Lightning Charging Cable,1,14.95,10/31/19 16:35,"354 West St, San Francisco, CA 94016" +279098,iPhone,1,700,10/29/19 17:20,"507 Meadow St, Austin, TX 73301" +279098,Lightning Charging Cable,1,14.95,10/29/19 17:20,"507 Meadow St, Austin, TX 73301" +279098,Wired Headphones,1,11.99,10/29/19 17:20,"507 Meadow St, Austin, TX 73301" +279099,AAA Batteries (4-pack),1,2.99,10/26/19 12:34,"699 Johnson St, Dallas, TX 75001" +279100,Apple Airpods Headphones,1,150,10/04/19 09:03,"692 6th St, Seattle, WA 98101" +279101,AAA Batteries (4-pack),1,2.99,10/24/19 16:47,"49 West St, New York City, NY 10001" +279102,AAA Batteries (4-pack),3,2.99,10/04/19 07:28,"577 Madison St, New York City, NY 10001" +279103,USB-C Charging Cable,1,11.95,10/25/19 22:00,"240 Jefferson St, Dallas, TX 75001" +279104,Google Phone,1,600,10/22/19 17:13,"938 2nd St, San Francisco, CA 94016" +279105,USB-C Charging Cable,1,11.95,10/05/19 20:53,"968 Wilson St, Portland, OR 97035" +279106,USB-C Charging Cable,1,11.95,10/26/19 12:43,"615 North St, San Francisco, CA 94016" +279107,AAA Batteries (4-pack),1,2.99,10/17/19 16:59,"811 Meadow St, Boston, MA 02215" +279108,Lightning Charging Cable,1,14.95,10/03/19 17:56,"936 Cedar St, Atlanta, GA 30301" +279109,Flatscreen TV,1,300,10/17/19 21:49,"946 Wilson St, Los Angeles, CA 90001" +279110,20in Monitor,1,109.99,10/06/19 12:44,"85 1st St, New York City, NY 10001" +279111,Apple Airpods Headphones,1,150,10/04/19 20:03,"726 Forest St, Seattle, WA 98101" +279112,iPhone,1,700,10/29/19 22:52,"211 4th St, San Francisco, CA 94016" +279113,Wired Headphones,1,11.99,10/14/19 17:34,"438 South St, Atlanta, GA 30301" +279114,AAA Batteries (4-pack),1,2.99,10/29/19 21:02,"135 South St, Austin, TX 73301" +279115,Lightning Charging Cable,1,14.95,10/17/19 14:12,"964 Chestnut St, Los Angeles, CA 90001" +279116,USB-C Charging Cable,1,11.95,10/04/19 17:01,"601 Main St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +279117,Bose SoundSport Headphones,1,99.99,10/18/19 15:27,"807 Cedar St, San Francisco, CA 94016" +279118,Macbook Pro Laptop,1,1700,10/16/19 22:25,"217 Madison St, San Francisco, CA 94016" +279119,AAA Batteries (4-pack),1,2.99,10/21/19 12:58,"752 South St, Seattle, WA 98101" +279120,iPhone,1,700,10/10/19 20:41,"198 Meadow St, San Francisco, CA 94016" +279121,Wired Headphones,1,11.99,10/27/19 13:11,"632 Cherry St, San Francisco, CA 94016" +279122,Apple Airpods Headphones,1,150,10/26/19 13:37,"804 Cedar St, Austin, TX 73301" +279123,Bose SoundSport Headphones,1,99.99,10/25/19 05:03,"75 Pine St, New York City, NY 10001" +279124,Bose SoundSport Headphones,1,99.99,10/08/19 12:03,"45 Willow St, New York City, NY 10001" +279125,Google Phone,1,600,10/13/19 13:12,"438 Maple St, Atlanta, GA 30301" +279126,Lightning Charging Cable,1,14.95,10/21/19 22:21,"672 8th St, New York City, NY 10001" +279127,AAA Batteries (4-pack),1,2.99,10/02/19 08:18,"819 Park St, Los Angeles, CA 90001" +279128,Google Phone,1,600,10/06/19 03:12,"338 Madison St, San Francisco, CA 94016" +279128,USB-C Charging Cable,1,11.95,10/06/19 03:12,"338 Madison St, San Francisco, CA 94016" +279128,AAA Batteries (4-pack),1,2.99,10/06/19 03:12,"338 Madison St, San Francisco, CA 94016" +279129,Apple Airpods Headphones,1,150,10/29/19 07:56,"778 Willow St, Portland, OR 97035" +279130,AAA Batteries (4-pack),2,2.99,10/11/19 11:07,"354 River St, Seattle, WA 98101" +279131,34in Ultrawide Monitor,1,379.99,10/31/19 11:30,"114 Chestnut St, New York City, NY 10001" +279132,Apple Airpods Headphones,1,150,10/17/19 12:05,"647 11th St, Austin, TX 73301" +279133,34in Ultrawide Monitor,1,379.99,10/05/19 20:03,"116 Cedar St, Austin, TX 73301" +279133,Wired Headphones,1,11.99,10/05/19 20:03,"116 Cedar St, Austin, TX 73301" +279134,27in 4K Gaming Monitor,1,389.99,10/01/19 06:54,"582 Ridge St, Boston, MA 02215" +279135,USB-C Charging Cable,2,11.95,10/19/19 17:54,"856 South St, New York City, NY 10001" +279136,Wired Headphones,1,11.99,10/09/19 16:51,"746 Forest St, Seattle, WA 98101" +279137,Lightning Charging Cable,1,14.95,10/23/19 17:47,"200 Wilson St, Boston, MA 02215" +279137,Bose SoundSport Headphones,1,99.99,10/23/19 17:47,"200 Wilson St, Boston, MA 02215" +279138,Wired Headphones,1,11.99,10/05/19 02:41,"405 Johnson St, San Francisco, CA 94016" +279139,AA Batteries (4-pack),1,3.84,10/25/19 15:16,"309 Lakeview St, Seattle, WA 98101" +279140,Apple Airpods Headphones,1,150,10/16/19 22:11,"714 Johnson St, Los Angeles, CA 90001" +279141,AA Batteries (4-pack),1,3.84,10/11/19 08:48,"180 5th St, Los Angeles, CA 90001" +279142,AAA Batteries (4-pack),1,2.99,10/13/19 15:35,"329 South St, Portland, OR 97035" +279143,Apple Airpods Headphones,1,150,10/29/19 17:36,"47 13th St, New York City, NY 10001" +279144,27in 4K Gaming Monitor,1,389.99,10/30/19 21:27,"699 Hill St, New York City, NY 10001" +279145,27in FHD Monitor,1,149.99,10/26/19 11:05,"563 Hickory St, New York City, NY 10001" +279146,ThinkPad Laptop,1,999.99,10/06/19 23:19,"988 1st St, New York City, NY 10001" +279147,LG Dryer,1,600.0,10/25/19 17:02,"704 Lakeview St, San Francisco, CA 94016" +279148,AA Batteries (4-pack),1,3.84,10/08/19 14:13,"4 Elm St, Seattle, WA 98101" +279149,Macbook Pro Laptop,1,1700,10/09/19 11:16,"400 Sunset St, Atlanta, GA 30301" +279150,Flatscreen TV,1,300,10/14/19 17:11,"984 4th St, Boston, MA 02215" +279151,USB-C Charging Cable,1,11.95,10/24/19 23:16,"57 Cherry St, Seattle, WA 98101" +279152,USB-C Charging Cable,1,11.95,10/20/19 10:05,"474 10th St, Austin, TX 73301" +279153,27in 4K Gaming Monitor,1,389.99,10/14/19 16:05,"400 West St, Dallas, TX 75001" +279153,Wired Headphones,1,11.99,10/14/19 16:05,"400 West St, Dallas, TX 75001" +279154,Macbook Pro Laptop,1,1700,10/15/19 06:24,"821 Main St, Boston, MA 02215" +279155,Lightning Charging Cable,1,14.95,10/08/19 19:50,"57 Forest St, New York City, NY 10001" +279156,AAA Batteries (4-pack),1,2.99,10/16/19 04:35,"498 Wilson St, Los Angeles, CA 90001" +279157,Macbook Pro Laptop,1,1700,10/24/19 16:52,"166 Walnut St, San Francisco, CA 94016" +279158,Apple Airpods Headphones,1,150,10/20/19 12:21,"954 North St, Dallas, TX 75001" +279159,34in Ultrawide Monitor,1,379.99,10/16/19 20:57,"979 Spruce St, Portland, ME 04101" +279160,USB-C Charging Cable,1,11.95,10/24/19 14:05,"896 Center St, Boston, MA 02215" +,,,,, +279161,Bose SoundSport Headphones,1,99.99,10/02/19 23:10,"694 2nd St, Los Angeles, CA 90001" +279162,AAA Batteries (4-pack),2,2.99,10/04/19 19:19,"81 Hill St, Seattle, WA 98101" +279163,USB-C Charging Cable,1,11.95,10/02/19 19:49,"807 Walnut St, Seattle, WA 98101" +279164,Macbook Pro Laptop,1,1700,10/27/19 15:45,"447 Adams St, Boston, MA 02215" +279165,27in 4K Gaming Monitor,1,389.99,10/23/19 10:52,"16 6th St, Austin, TX 73301" +279166,AAA Batteries (4-pack),1,2.99,10/02/19 11:09,"148 Jefferson St, Los Angeles, CA 90001" +279167,Bose SoundSport Headphones,1,99.99,10/21/19 05:45,"287 Hickory St, Seattle, WA 98101" +279168,Macbook Pro Laptop,1,1700,10/07/19 11:39,"41 6th St, Portland, OR 97035" +279169,Lightning Charging Cable,1,14.95,10/18/19 20:30,"854 Washington St, San Francisco, CA 94016" +279170,27in FHD Monitor,1,149.99,10/20/19 15:57,"331 Cedar St, San Francisco, CA 94016" +279171,Wired Headphones,1,11.99,10/04/19 18:46,"951 Washington St, Los Angeles, CA 90001" +279172,Google Phone,1,600,10/06/19 11:20,"888 Wilson St, New York City, NY 10001" +279173,USB-C Charging Cable,1,11.95,10/13/19 17:51,"719 4th St, Seattle, WA 98101" +279174,Google Phone,1,600,10/19/19 17:38,"834 Walnut St, New York City, NY 10001" +279175,Google Phone,1,600,10/06/19 13:31,"441 Washington St, Dallas, TX 75001" +279175,USB-C Charging Cable,1,11.95,10/06/19 13:31,"441 Washington St, Dallas, TX 75001" +279176,27in FHD Monitor,1,149.99,10/26/19 12:59,"670 Walnut St, Seattle, WA 98101" +279177,AAA Batteries (4-pack),1,2.99,10/21/19 09:18,"836 Cherry St, San Francisco, CA 94016" +279178,Bose SoundSport Headphones,1,99.99,10/16/19 16:40,"92 14th St, Boston, MA 02215" +279179,AAA Batteries (4-pack),1,2.99,10/23/19 21:36,"461 4th St, San Francisco, CA 94016" +279180,AAA Batteries (4-pack),1,2.99,10/02/19 23:26,"162 Cherry St, San Francisco, CA 94016" +279181,AAA Batteries (4-pack),1,2.99,10/10/19 20:18,"956 Ridge St, Los Angeles, CA 90001" +279182,AA Batteries (4-pack),1,3.84,10/03/19 18:22,"493 Jackson St, San Francisco, CA 94016" +279183,AAA Batteries (4-pack),1,2.99,10/18/19 22:25,"455 Washington St, San Francisco, CA 94016" +279184,AA Batteries (4-pack),2,3.84,10/07/19 13:38,"799 Elm St, Boston, MA 02215" +279185,Wired Headphones,1,11.99,10/26/19 14:36,"105 9th St, Atlanta, GA 30301" +279186,USB-C Charging Cable,1,11.95,10/28/19 19:50,"178 Wilson St, Dallas, TX 75001" +279187,AA Batteries (4-pack),1,3.84,10/06/19 14:45,"192 11th St, Atlanta, GA 30301" +279188,AAA Batteries (4-pack),2,2.99,10/30/19 17:43,"163 4th St, New York City, NY 10001" +279189,AA Batteries (4-pack),1,3.84,10/27/19 17:24,"906 Lincoln St, New York City, NY 10001" +279190,Apple Airpods Headphones,1,150,10/09/19 23:25,"108 Ridge St, San Francisco, CA 94016" +279191,Apple Airpods Headphones,1,150,10/05/19 20:32,"594 Cedar St, Los Angeles, CA 90001" +279192,27in 4K Gaming Monitor,1,389.99,10/21/19 17:57,"577 Adams St, Los Angeles, CA 90001" +279193,Vareebadd Phone,1,400,10/04/19 10:21,"86 13th St, San Francisco, CA 94016" +279194,Flatscreen TV,1,300,10/03/19 21:47,"758 Johnson St, Austin, TX 73301" +279195,USB-C Charging Cable,1,11.95,10/14/19 07:56,"12 Elm St, Austin, TX 73301" +279196,Lightning Charging Cable,1,14.95,10/21/19 08:26,"85 Dogwood St, San Francisco, CA 94016" +279197,Apple Airpods Headphones,1,150,10/25/19 07:35,"338 8th St, New York City, NY 10001" +279197,AAA Batteries (4-pack),1,2.99,10/25/19 07:35,"338 8th St, New York City, NY 10001" +279198,Lightning Charging Cable,2,14.95,10/07/19 21:59,"287 Highland St, Atlanta, GA 30301" +279199,Bose SoundSport Headphones,1,99.99,10/03/19 18:15,"38 8th St, Portland, ME 04101" +279200,AA Batteries (4-pack),1,3.84,10/11/19 19:23,"247 Cedar St, San Francisco, CA 94016" +279201,27in FHD Monitor,1,149.99,10/16/19 22:32,"897 Center St, Seattle, WA 98101" +279202,Lightning Charging Cable,1,14.95,10/22/19 16:45,"870 Jackson St, New York City, NY 10001" +279203,Wired Headphones,1,11.99,10/13/19 09:42,"811 Maple St, San Francisco, CA 94016" +279204,USB-C Charging Cable,1,11.95,10/18/19 15:58,"684 Hill St, Atlanta, GA 30301" +279205,27in 4K Gaming Monitor,1,389.99,10/09/19 11:04,"451 Ridge St, New York City, NY 10001" +279206,Bose SoundSport Headphones,1,99.99,10/16/19 10:04,"660 7th St, Portland, OR 97035" +279207,20in Monitor,1,109.99,10/03/19 18:12,"495 6th St, Seattle, WA 98101" +279208,Wired Headphones,1,11.99,10/03/19 08:35,"655 9th St, Los Angeles, CA 90001" +279209,AA Batteries (4-pack),1,3.84,10/11/19 08:31,"449 Walnut St, Boston, MA 02215" +279210,AA Batteries (4-pack),1,3.84,10/31/19 14:59,"786 9th St, Boston, MA 02215" +279211,27in FHD Monitor,1,149.99,10/16/19 00:54,"476 South St, Seattle, WA 98101" +279212,Wired Headphones,1,11.99,10/01/19 14:37,"468 Willow St, San Francisco, CA 94016" +279213,iPhone,1,700,10/03/19 15:02,"875 Main St, San Francisco, CA 94016" +279213,Wired Headphones,1,11.99,10/03/19 15:02,"875 Main St, San Francisco, CA 94016" +279214,USB-C Charging Cable,1,11.95,10/23/19 12:04,"793 2nd St, Portland, ME 04101" +279215,27in FHD Monitor,1,149.99,10/07/19 16:56,"800 Johnson St, Los Angeles, CA 90001" +279216,AA Batteries (4-pack),1,3.84,10/21/19 14:21,"985 1st St, Austin, TX 73301" +279217,AAA Batteries (4-pack),1,2.99,10/31/19 15:32,"902 Main St, New York City, NY 10001" +279218,AAA Batteries (4-pack),1,2.99,10/26/19 17:13,"712 Spruce St, Atlanta, GA 30301" +279219,Apple Airpods Headphones,1,150,10/18/19 18:53,"797 12th St, San Francisco, CA 94016" +279220,USB-C Charging Cable,1,11.95,10/05/19 17:57,"813 Madison St, Dallas, TX 75001" +279221,Bose SoundSport Headphones,1,99.99,10/22/19 09:12,"755 11th St, Dallas, TX 75001" +279222,Vareebadd Phone,1,400,10/04/19 22:36,"755 13th St, San Francisco, CA 94016" +279223,AA Batteries (4-pack),1,3.84,10/26/19 19:12,"924 River St, Dallas, TX 75001" +279224,AA Batteries (4-pack),1,3.84,10/12/19 09:46,"784 13th St, Seattle, WA 98101" +279225,Wired Headphones,1,11.99,10/13/19 07:09,"252 1st St, Seattle, WA 98101" +279226,AA Batteries (4-pack),2,3.84,10/30/19 09:53,"377 Willow St, New York City, NY 10001" +279227,Macbook Pro Laptop,1,1700,10/05/19 11:36,"177 8th St, Austin, TX 73301" +279228,USB-C Charging Cable,1,11.95,10/23/19 13:50,"90 1st St, Los Angeles, CA 90001" +279229,ThinkPad Laptop,1,999.99,10/13/19 19:46,"511 Willow St, Atlanta, GA 30301" +279230,Flatscreen TV,1,300,10/24/19 16:15,"490 Church St, Los Angeles, CA 90001" +279231,AAA Batteries (4-pack),1,2.99,10/19/19 10:06,"275 Hill St, Dallas, TX 75001" +279232,iPhone,1,700,10/31/19 07:28,"541 Dogwood St, San Francisco, CA 94016" +279233,Apple Airpods Headphones,1,150,10/16/19 14:00,"128 Dogwood St, Austin, TX 73301" +279234,34in Ultrawide Monitor,1,379.99,10/11/19 12:42,"230 Highland St, Atlanta, GA 30301" +279235,USB-C Charging Cable,1,11.95,10/05/19 15:03,"614 4th St, Los Angeles, CA 90001" +279236,34in Ultrawide Monitor,1,379.99,10/26/19 09:53,"132 Washington St, Los Angeles, CA 90001" +279237,AAA Batteries (4-pack),1,2.99,10/26/19 23:40,"570 Jefferson St, San Francisco, CA 94016" +279238,Wired Headphones,2,11.99,10/21/19 23:25,"796 13th St, New York City, NY 10001" +279239,USB-C Charging Cable,1,11.95,10/12/19 09:52,"718 Jefferson St, San Francisco, CA 94016" +279240,Lightning Charging Cable,1,14.95,10/22/19 20:11,"992 Hill St, Dallas, TX 75001" +279241,Bose SoundSport Headphones,1,99.99,10/02/19 14:56,"428 Main St, Dallas, TX 75001" +279242,Apple Airpods Headphones,1,150,10/30/19 17:39,"75 North St, Los Angeles, CA 90001" +279243,Apple Airpods Headphones,1,150,10/19/19 13:50,"82 Chestnut St, Seattle, WA 98101" +279244,USB-C Charging Cable,1,11.95,10/13/19 13:49,"833 10th St, Seattle, WA 98101" +279245,USB-C Charging Cable,1,11.95,10/28/19 23:00,"670 12th St, San Francisco, CA 94016" +279246,USB-C Charging Cable,1,11.95,10/09/19 22:06,"557 Ridge St, Dallas, TX 75001" +279247,AAA Batteries (4-pack),1,2.99,10/29/19 20:23,"305 Willow St, Atlanta, GA 30301" +279248,AAA Batteries (4-pack),1,2.99,10/12/19 11:07,"942 14th St, San Francisco, CA 94016" +279249,Bose SoundSport Headphones,1,99.99,10/08/19 18:10,"87 Madison St, San Francisco, CA 94016" +279250,Apple Airpods Headphones,1,150,10/18/19 22:01,"367 Walnut St, New York City, NY 10001" +279251,iPhone,1,700,10/21/19 09:21,"548 Ridge St, Boston, MA 02215" +279252,34in Ultrawide Monitor,1,379.99,10/09/19 18:12,"401 5th St, Atlanta, GA 30301" +279253,iPhone,1,700,10/27/19 10:58,"400 Johnson St, Dallas, TX 75001" +279254,AAA Batteries (4-pack),1,2.99,10/06/19 10:16,"317 North St, Portland, OR 97035" +279255,Wired Headphones,2,11.99,10/08/19 11:26,"413 Church St, New York City, NY 10001" +279256,Google Phone,1,600,10/29/19 15:15,"520 Johnson St, Portland, OR 97035" +279257,Bose SoundSport Headphones,1,99.99,10/06/19 11:19,"360 Main St, San Francisco, CA 94016" +279258,ThinkPad Laptop,1,999.99,10/11/19 12:01,"663 Maple St, Atlanta, GA 30301" +279259,Wired Headphones,1,11.99,10/23/19 21:05,"624 Highland St, San Francisco, CA 94016" +279260,Wired Headphones,1,11.99,10/25/19 21:22,"655 Elm St, Seattle, WA 98101" +279261,USB-C Charging Cable,1,11.95,10/23/19 17:07,"849 Park St, Los Angeles, CA 90001" +279262,USB-C Charging Cable,1,11.95,10/14/19 21:21,"32 Forest St, San Francisco, CA 94016" +279263,Apple Airpods Headphones,1,150,10/10/19 17:40,"666 Lake St, New York City, NY 10001" +279264,Wired Headphones,1,11.99,10/18/19 20:44,"669 Hill St, San Francisco, CA 94016" +,,,,, +279265,Macbook Pro Laptop,1,1700,10/11/19 22:50,"55 Cherry St, Dallas, TX 75001" +279266,Lightning Charging Cable,1,14.95,10/22/19 16:18,"755 Jefferson St, Austin, TX 73301" +279267,Google Phone,1,600,10/31/19 01:50,"515 Meadow St, New York City, NY 10001" +279268,Macbook Pro Laptop,1,1700,10/03/19 12:14,"779 Walnut St, Austin, TX 73301" +279269,AA Batteries (4-pack),2,3.84,10/25/19 20:40,"179 Forest St, Boston, MA 02215" +279270,Bose SoundSport Headphones,1,99.99,10/17/19 22:27,"51 North St, Boston, MA 02215" +279271,LG Washing Machine,1,600.0,10/12/19 12:54,"615 Washington St, San Francisco, CA 94016" +279272,Apple Airpods Headphones,1,150,10/09/19 23:39,"468 Madison St, San Francisco, CA 94016" +279273,AA Batteries (4-pack),1,3.84,10/03/19 13:35,"502 Meadow St, Atlanta, GA 30301" +279274,Flatscreen TV,1,300,10/09/19 14:33,"910 12th St, Los Angeles, CA 90001" +279275,USB-C Charging Cable,2,11.95,10/01/19 10:44,"513 Highland St, Boston, MA 02215" +279276,USB-C Charging Cable,1,11.95,10/23/19 17:41,"676 Forest St, Atlanta, GA 30301" +279277,Lightning Charging Cable,1,14.95,10/21/19 08:26,"201 Washington St, Portland, OR 97035" +279278,Apple Airpods Headphones,1,150,10/11/19 19:45,"271 Lincoln St, Austin, TX 73301" +279279,iPhone,1,700,10/06/19 00:09,"703 Pine St, Dallas, TX 75001" +279279,Lightning Charging Cable,2,14.95,10/06/19 00:09,"703 Pine St, Dallas, TX 75001" +279280,USB-C Charging Cable,1,11.95,10/13/19 21:48,"756 Lakeview St, Seattle, WA 98101" +279281,USB-C Charging Cable,1,11.95,10/03/19 19:18,"175 13th St, Boston, MA 02215" +279282,AAA Batteries (4-pack),1,2.99,10/11/19 22:28,"71 8th St, San Francisco, CA 94016" +279283,20in Monitor,1,109.99,10/01/19 15:07,"318 Pine St, Portland, OR 97035" +279284,USB-C Charging Cable,1,11.95,10/31/19 20:25,"921 Chestnut St, San Francisco, CA 94016" +279285,USB-C Charging Cable,1,11.95,10/27/19 17:49,"542 Lakeview St, San Francisco, CA 94016" +279286,Lightning Charging Cable,1,14.95,10/21/19 17:47,"357 Chestnut St, Dallas, TX 75001" +279287,USB-C Charging Cable,1,11.95,10/01/19 17:06,"428 5th St, Los Angeles, CA 90001" +279288,34in Ultrawide Monitor,1,379.99,10/04/19 19:18,"464 Center St, Boston, MA 02215" +279289,AA Batteries (4-pack),1,3.84,10/09/19 12:12,"964 South St, Dallas, TX 75001" +279290,AAA Batteries (4-pack),1,2.99,10/31/19 16:41,"532 Washington St, Los Angeles, CA 90001" +279291,Apple Airpods Headphones,1,150,10/08/19 01:03,"940 Spruce St, San Francisco, CA 94016" +279292,Flatscreen TV,1,300,10/28/19 20:44,"78 Spruce St, Seattle, WA 98101" +279293,Apple Airpods Headphones,1,150,10/31/19 17:37,"908 13th St, Portland, ME 04101" +279294,USB-C Charging Cable,1,11.95,10/05/19 15:46,"13 Pine St, Dallas, TX 75001" +279295,ThinkPad Laptop,1,999.99,10/27/19 09:43,"614 Forest St, Atlanta, GA 30301" +279296,Apple Airpods Headphones,1,150,10/23/19 14:47,"998 South St, Boston, MA 02215" +279297,USB-C Charging Cable,1,11.95,10/24/19 13:03,"129 Meadow St, New York City, NY 10001" +279298,Wired Headphones,1,11.99,10/17/19 13:23,"614 Cherry St, Los Angeles, CA 90001" +279299,Apple Airpods Headphones,1,150,10/22/19 11:06,"298 7th St, Los Angeles, CA 90001" +279300,Lightning Charging Cable,1,14.95,10/25/19 11:16,"129 4th St, Dallas, TX 75001" +279301,AAA Batteries (4-pack),3,2.99,10/23/19 17:16,"774 Adams St, Dallas, TX 75001" +279302,USB-C Charging Cable,1,11.95,10/30/19 14:01,"411 Walnut St, Portland, ME 04101" +279303,AAA Batteries (4-pack),1,2.99,10/02/19 18:42,"553 Chestnut St, Los Angeles, CA 90001" +279304,Macbook Pro Laptop,1,1700,10/19/19 13:51,"781 7th St, San Francisco, CA 94016" +279305,AAA Batteries (4-pack),2,2.99,10/28/19 17:17,"92 Hill St, Atlanta, GA 30301" +279306,27in FHD Monitor,1,149.99,10/13/19 07:17,"531 Hickory St, Dallas, TX 75001" +279307,27in FHD Monitor,1,149.99,10/22/19 07:51,"834 Chestnut St, Atlanta, GA 30301" +279308,USB-C Charging Cable,1,11.95,10/17/19 12:31,"592 14th St, Los Angeles, CA 90001" +279309,Wired Headphones,1,11.99,10/09/19 14:33,"320 Willow St, Boston, MA 02215" +279310,Flatscreen TV,1,300,10/26/19 23:47,"644 5th St, San Francisco, CA 94016" +279311,USB-C Charging Cable,2,11.95,10/06/19 19:08,"365 River St, Portland, OR 97035" +279312,AAA Batteries (4-pack),1,2.99,10/03/19 12:43,"944 4th St, Boston, MA 02215" +279313,USB-C Charging Cable,1,11.95,10/28/19 12:14,"360 Maple St, San Francisco, CA 94016" +279314,USB-C Charging Cable,1,11.95,10/18/19 17:20,"718 Willow St, Los Angeles, CA 90001" +279315,Apple Airpods Headphones,1,150,10/18/19 10:23,"929 5th St, Portland, OR 97035" +279316,USB-C Charging Cable,1,11.95,10/03/19 18:03,"74 Chestnut St, San Francisco, CA 94016" +279317,AAA Batteries (4-pack),1,2.99,10/19/19 17:13,"476 Park St, Los Angeles, CA 90001" +279318,AA Batteries (4-pack),1,3.84,10/19/19 16:43,"979 Cedar St, San Francisco, CA 94016" +279319,34in Ultrawide Monitor,1,379.99,10/24/19 18:12,"862 Dogwood St, Boston, MA 02215" +279320,Flatscreen TV,1,300,10/03/19 11:07,"366 Lincoln St, Los Angeles, CA 90001" +279321,Apple Airpods Headphones,1,150,10/04/19 23:45,"214 Church St, San Francisco, CA 94016" +279322,AAA Batteries (4-pack),1,2.99,10/03/19 09:00,"716 Sunset St, San Francisco, CA 94016" +279323,AA Batteries (4-pack),1,3.84,10/22/19 20:48,"685 Pine St, San Francisco, CA 94016" +279324,Lightning Charging Cable,1,14.95,10/18/19 22:23,"231 Willow St, San Francisco, CA 94016" +279325,Wired Headphones,1,11.99,10/28/19 20:39,"812 Jefferson St, New York City, NY 10001" +279326,Wired Headphones,1,11.99,10/18/19 12:36,"291 8th St, Los Angeles, CA 90001" +279327,Bose SoundSport Headphones,1,99.99,10/23/19 10:45,"185 Forest St, Austin, TX 73301" +279328,Flatscreen TV,1,300,10/29/19 15:39,"824 9th St, Seattle, WA 98101" +279329,Bose SoundSport Headphones,1,99.99,10/21/19 21:28,"147 Dogwood St, Seattle, WA 98101" +279330,Bose SoundSport Headphones,1,99.99,10/01/19 14:18,"686 Lake St, Boston, MA 02215" +279331,Lightning Charging Cable,1,14.95,10/17/19 18:07,"745 Cedar St, Los Angeles, CA 90001" +279332,Wired Headphones,1,11.99,10/02/19 21:24,"750 Lake St, Portland, OR 97035" +279333,AAA Batteries (4-pack),1,2.99,10/21/19 13:19,"179 North St, Los Angeles, CA 90001" +279334,27in FHD Monitor,1,149.99,10/31/19 18:01,"147 1st St, Atlanta, GA 30301" +279335,Macbook Pro Laptop,1,1700,10/08/19 10:05,"568 1st St, New York City, NY 10001" +279336,34in Ultrawide Monitor,1,379.99,10/05/19 14:18,"317 Elm St, Seattle, WA 98101" +279337,USB-C Charging Cable,1,11.95,10/05/19 21:14,"225 Highland St, Los Angeles, CA 90001" +279338,Wired Headphones,1,11.99,10/21/19 20:24,"582 Cedar St, San Francisco, CA 94016" +279339,ThinkPad Laptop,1,999.99,10/05/19 12:12,"627 Dogwood St, Atlanta, GA 30301" +279340,27in 4K Gaming Monitor,1,389.99,10/10/19 11:02,"553 Johnson St, New York City, NY 10001" +279341,USB-C Charging Cable,1,11.95,10/06/19 20:15,"279 Lake St, New York City, NY 10001" +279342,Bose SoundSport Headphones,1,99.99,10/18/19 14:19,"597 9th St, Boston, MA 02215" +279343,Wired Headphones,1,11.99,10/18/19 23:48,"535 5th St, Los Angeles, CA 90001" +279344,USB-C Charging Cable,1,11.95,10/28/19 13:46,"412 Adams St, New York City, NY 10001" +279345,Flatscreen TV,1,300,10/26/19 19:42,"872 Washington St, Dallas, TX 75001" +279346,27in FHD Monitor,1,149.99,10/31/19 19:26,"640 Madison St, Los Angeles, CA 90001" +279347,Bose SoundSport Headphones,1,99.99,10/23/19 11:19,"499 4th St, New York City, NY 10001" +279348,AA Batteries (4-pack),1,3.84,10/14/19 19:02,"444 Highland St, Boston, MA 02215" +279349,Lightning Charging Cable,1,14.95,10/31/19 11:59,"833 Chestnut St, Boston, MA 02215" +279350,USB-C Charging Cable,1,11.95,10/02/19 23:13,"480 14th St, Atlanta, GA 30301" +279351,iPhone,1,700,10/19/19 18:08,"64 Cedar St, Austin, TX 73301" +279352,34in Ultrawide Monitor,1,379.99,10/15/19 23:05,"689 Wilson St, Austin, TX 73301" +279353,Wired Headphones,2,11.99,10/10/19 19:26,"666 Washington St, Atlanta, GA 30301" +279354,Apple Airpods Headphones,1,150,10/30/19 17:52,"886 13th St, Atlanta, GA 30301" +279355,AAA Batteries (4-pack),3,2.99,10/17/19 16:29,"799 12th St, San Francisco, CA 94016" +279356,AA Batteries (4-pack),3,3.84,10/29/19 06:29,"123 4th St, Portland, OR 97035" +279357,AAA Batteries (4-pack),1,2.99,10/30/19 20:44,"572 South St, Los Angeles, CA 90001" +279358,Lightning Charging Cable,1,14.95,10/02/19 15:21,"665 Park St, Boston, MA 02215" +279359,AAA Batteries (4-pack),2,2.99,10/08/19 19:49,"339 9th St, San Francisco, CA 94016" +279360,Apple Airpods Headphones,1,150,10/02/19 19:41,"162 Forest St, Seattle, WA 98101" +279361,Apple Airpods Headphones,1,150,10/27/19 19:25,"990 Lincoln St, New York City, NY 10001" +279362,AA Batteries (4-pack),2,3.84,10/04/19 08:55,"838 Park St, New York City, NY 10001" +279363,AAA Batteries (4-pack),1,2.99,10/27/19 06:59,"777 Spruce St, San Francisco, CA 94016" +279364,20in Monitor,1,109.99,10/16/19 21:54,"650 River St, San Francisco, CA 94016" +279365,AA Batteries (4-pack),1,3.84,10/31/19 14:39,"482 Church St, New York City, NY 10001" +279366,Google Phone,1,600,10/13/19 07:28,"496 14th St, Seattle, WA 98101" +279367,USB-C Charging Cable,1,11.95,10/15/19 08:06,"673 Jefferson St, Los Angeles, CA 90001" +279368,USB-C Charging Cable,1,11.95,10/07/19 23:57,"268 7th St, Atlanta, GA 30301" +279369,AAA Batteries (4-pack),1,2.99,10/03/19 08:01,"551 Church St, San Francisco, CA 94016" +279370,USB-C Charging Cable,1,11.95,10/24/19 13:13,"74 Walnut St, New York City, NY 10001" +279371,AA Batteries (4-pack),1,3.84,10/28/19 10:19,"689 Highland St, San Francisco, CA 94016" +279372,USB-C Charging Cable,1,11.95,10/21/19 08:24,"287 West St, Portland, OR 97035" +279373,Lightning Charging Cable,1,14.95,10/10/19 11:20,"77 Spruce St, Los Angeles, CA 90001" +279374,USB-C Charging Cable,1,11.95,10/29/19 19:11,"578 Cherry St, Boston, MA 02215" +279375,AA Batteries (4-pack),1,3.84,10/21/19 18:30,"166 Pine St, Los Angeles, CA 90001" +279376,Apple Airpods Headphones,1,150,10/29/19 16:31,"889 Walnut St, Austin, TX 73301" +279377,Apple Airpods Headphones,1,150,10/23/19 11:11,"407 10th St, Dallas, TX 75001" +279378,Wired Headphones,3,11.99,10/11/19 19:10,"551 River St, Boston, MA 02215" +279379,Bose SoundSport Headphones,1,99.99,10/15/19 09:03,"573 Washington St, San Francisco, CA 94016" +279380,AAA Batteries (4-pack),2,2.99,10/28/19 21:58,"668 Washington St, Atlanta, GA 30301" +279381,Bose SoundSport Headphones,1,99.99,10/14/19 11:57,"815 10th St, San Francisco, CA 94016" +279382,USB-C Charging Cable,1,11.95,10/20/19 14:02,"307 South St, San Francisco, CA 94016" +279383,AAA Batteries (4-pack),2,2.99,10/23/19 19:07,"887 Meadow St, Boston, MA 02215" +279384,iPhone,1,700,10/23/19 09:30,"822 Dogwood St, New York City, NY 10001" +279385,Apple Airpods Headphones,1,150,10/02/19 18:29,"874 Meadow St, Los Angeles, CA 90001" +279386,iPhone,1,700,10/01/19 20:57,"566 12th St, Los Angeles, CA 90001" +279387,LG Dryer,1,600.0,10/02/19 12:47,"268 Sunset St, Seattle, WA 98101" +279388,USB-C Charging Cable,1,11.95,10/03/19 16:11,"429 Park St, Dallas, TX 75001" +279389,Apple Airpods Headphones,1,150,10/14/19 07:58,"881 Chestnut St, San Francisco, CA 94016" +279390,Bose SoundSport Headphones,1,99.99,10/11/19 17:45,"76 Wilson St, San Francisco, CA 94016" +279391,20in Monitor,1,109.99,10/26/19 21:55,"707 Lincoln St, Dallas, TX 75001" +279392,AA Batteries (4-pack),2,3.84,10/05/19 13:44,"428 Chestnut St, Los Angeles, CA 90001" +279393,AA Batteries (4-pack),1,3.84,10/09/19 11:58,"211 Johnson St, Portland, OR 97035" +279394,AA Batteries (4-pack),1,3.84,10/17/19 13:58,"15 Adams St, Dallas, TX 75001" +279395,Lightning Charging Cable,2,14.95,10/31/19 15:28,"134 Hill St, San Francisco, CA 94016" +279396,Lightning Charging Cable,1,14.95,10/25/19 10:25,"332 12th St, Austin, TX 73301" +279397,USB-C Charging Cable,1,11.95,10/28/19 20:46,"867 Ridge St, New York City, NY 10001" +279398,USB-C Charging Cable,1,11.95,10/29/19 11:12,"709 Chestnut St, Atlanta, GA 30301" +279399,27in FHD Monitor,1,149.99,10/17/19 15:42,"889 Dogwood St, Austin, TX 73301" +279400,Lightning Charging Cable,1,14.95,10/04/19 15:36,"493 9th St, Portland, ME 04101" +279401,AAA Batteries (4-pack),1,2.99,10/15/19 11:29,"998 Church St, San Francisco, CA 94016" +279402,AAA Batteries (4-pack),2,2.99,10/04/19 19:55,"585 6th St, Dallas, TX 75001" +279403,Apple Airpods Headphones,1,150,10/23/19 15:22,"18 Main St, New York City, NY 10001" +279403,Apple Airpods Headphones,1,150,10/23/19 15:22,"18 Main St, New York City, NY 10001" +279404,Lightning Charging Cable,1,14.95,10/26/19 22:04,"531 Hill St, Dallas, TX 75001" +279405,AA Batteries (4-pack),2,3.84,10/27/19 10:58,"800 Park St, Boston, MA 02215" +279406,AA Batteries (4-pack),2,3.84,10/24/19 19:32,"445 North St, New York City, NY 10001" +279407,Vareebadd Phone,1,400,10/11/19 05:49,"380 1st St, Dallas, TX 75001" +279408,Lightning Charging Cable,1,14.95,10/20/19 16:23,"938 10th St, Los Angeles, CA 90001" +279409,Lightning Charging Cable,1,14.95,10/26/19 23:21,"97 Wilson St, San Francisco, CA 94016" +279410,USB-C Charging Cable,1,11.95,10/13/19 11:30,"384 South St, San Francisco, CA 94016" +279411,AAA Batteries (4-pack),3,2.99,10/12/19 14:39,"861 Sunset St, San Francisco, CA 94016" +279412,USB-C Charging Cable,1,11.95,10/01/19 20:06,"465 Chestnut St, Los Angeles, CA 90001" +279413,USB-C Charging Cable,1,11.95,10/19/19 12:38,"353 Johnson St, San Francisco, CA 94016" +279414,Lightning Charging Cable,1,14.95,10/18/19 11:45,"692 Spruce St, San Francisco, CA 94016" +279415,AA Batteries (4-pack),2,3.84,10/07/19 13:21,"286 Center St, San Francisco, CA 94016" +279416,Lightning Charging Cable,1,14.95,10/11/19 01:15,"400 Sunset St, San Francisco, CA 94016" +279417,Lightning Charging Cable,1,14.95,10/29/19 18:32,"435 Sunset St, Los Angeles, CA 90001" +279418,AAA Batteries (4-pack),1,2.99,10/28/19 13:55,"647 9th St, Los Angeles, CA 90001" +279419,Lightning Charging Cable,1,14.95,10/06/19 22:08,"105 Lake St, Portland, OR 97035" +279420,AAA Batteries (4-pack),4,2.99,10/06/19 13:10,"512 9th St, Seattle, WA 98101" +279421,Apple Airpods Headphones,1,150,10/17/19 11:13,"440 Church St, Portland, OR 97035" +279422,AAA Batteries (4-pack),2,2.99,10/07/19 09:14,"184 7th St, Austin, TX 73301" +279423,27in FHD Monitor,1,149.99,10/16/19 23:10,"777 Meadow St, New York City, NY 10001" +279424,AAA Batteries (4-pack),1,2.99,10/06/19 20:46,"187 Hickory St, Seattle, WA 98101" +279425,AA Batteries (4-pack),2,3.84,10/26/19 14:22,"880 Dogwood St, Dallas, TX 75001" +279426,Lightning Charging Cable,1,14.95,10/26/19 20:19,"829 River St, San Francisco, CA 94016" +279427,AA Batteries (4-pack),2,3.84,10/06/19 21:40,"59 5th St, Dallas, TX 75001" +279428,AA Batteries (4-pack),2,3.84,10/11/19 18:16,"296 Dogwood St, San Francisco, CA 94016" +279429,Bose SoundSport Headphones,1,99.99,10/12/19 13:38,"966 Lakeview St, Austin, TX 73301" +279429,USB-C Charging Cable,1,11.95,10/12/19 13:38,"966 Lakeview St, Austin, TX 73301" +279430,AA Batteries (4-pack),1,3.84,10/24/19 23:26,"500 Cedar St, San Francisco, CA 94016" +279431,iPhone,1,700,10/15/19 19:59,"869 1st St, Seattle, WA 98101" +279432,AA Batteries (4-pack),1,3.84,10/02/19 15:47,"246 Highland St, Austin, TX 73301" +279433,AA Batteries (4-pack),2,3.84,10/02/19 14:00,"28 Dogwood St, Seattle, WA 98101" +279434,27in 4K Gaming Monitor,1,389.99,10/06/19 11:43,"136 7th St, San Francisco, CA 94016" +279435,AAA Batteries (4-pack),1,2.99,10/24/19 17:37,"802 Spruce St, Atlanta, GA 30301" +279436,USB-C Charging Cable,1,11.95,10/07/19 20:29,"680 10th St, Boston, MA 02215" +279437,Wired Headphones,1,11.99,10/19/19 15:36,"836 Church St, San Francisco, CA 94016" +279438,USB-C Charging Cable,1,11.95,10/11/19 21:16,"989 Madison St, Portland, OR 97035" +279439,20in Monitor,1,109.99,10/06/19 16:30,"228 Park St, Seattle, WA 98101" +279440,AA Batteries (4-pack),1,3.84,10/23/19 19:34,"337 Cedar St, Atlanta, GA 30301" +279441,Bose SoundSport Headphones,1,99.99,10/14/19 20:36,"595 Lincoln St, San Francisco, CA 94016" +279442,iPhone,1,700,10/22/19 14:10,"205 Washington St, Boston, MA 02215" +279442,Lightning Charging Cable,1,14.95,10/22/19 14:10,"205 Washington St, Boston, MA 02215" +279443,AA Batteries (4-pack),2,3.84,10/24/19 11:27,"218 Park St, San Francisco, CA 94016" +279444,Wired Headphones,1,11.99,10/08/19 14:38,"125 6th St, San Francisco, CA 94016" +279445,Apple Airpods Headphones,1,150,10/07/19 13:02,"246 Wilson St, New York City, NY 10001" +279446,LG Dryer,1,600.0,10/21/19 22:43,"25 Park St, Los Angeles, CA 90001" +279447,ThinkPad Laptop,1,999.99,10/03/19 22:46,"517 Church St, Los Angeles, CA 90001" +279448,34in Ultrawide Monitor,1,379.99,10/28/19 07:20,"201 South St, Portland, OR 97035" +279449,USB-C Charging Cable,1,11.95,10/03/19 18:19,"965 1st St, Los Angeles, CA 90001" +279450,27in 4K Gaming Monitor,1,389.99,10/09/19 19:39,"695 Lakeview St, Portland, OR 97035" +279451,AA Batteries (4-pack),3,3.84,10/06/19 06:54,"399 Dogwood St, San Francisco, CA 94016" +279452,Lightning Charging Cable,1,14.95,10/08/19 16:10,"868 Willow St, Los Angeles, CA 90001" +279453,27in 4K Gaming Monitor,1,389.99,10/19/19 11:00,"88 14th St, Dallas, TX 75001" +279454,AA Batteries (4-pack),2,3.84,10/04/19 19:12,"243 6th St, Dallas, TX 75001" +279455,AAA Batteries (4-pack),1,2.99,10/31/19 05:01,"833 14th St, Los Angeles, CA 90001" +279456,Bose SoundSport Headphones,1,99.99,10/21/19 23:09,"123 11th St, San Francisco, CA 94016" +279457,Apple Airpods Headphones,1,150,10/14/19 19:11,"581 Meadow St, New York City, NY 10001" +279458,AAA Batteries (4-pack),2,2.99,10/05/19 17:25,"625 Ridge St, Los Angeles, CA 90001" +279459,Apple Airpods Headphones,1,150,10/28/19 20:15,"618 Madison St, Portland, OR 97035" +279460,AA Batteries (4-pack),2,3.84,10/13/19 09:22,"420 Madison St, Portland, OR 97035" +279461,ThinkPad Laptop,1,999.99,10/11/19 23:51,"726 River St, San Francisco, CA 94016" +279462,Bose SoundSport Headphones,1,99.99,10/04/19 20:55,"191 14th St, Atlanta, GA 30301" +279463,AA Batteries (4-pack),1,3.84,10/17/19 13:00,"914 7th St, Los Angeles, CA 90001" +279464,Bose SoundSport Headphones,1,99.99,10/28/19 20:26,"698 13th St, San Francisco, CA 94016" +279465,USB-C Charging Cable,1,11.95,10/11/19 14:40,"838 Walnut St, San Francisco, CA 94016" +279466,USB-C Charging Cable,1,11.95,10/01/19 12:24,"43 South St, Portland, ME 04101" +279467,Apple Airpods Headphones,1,150,10/31/19 19:52,"191 Wilson St, San Francisco, CA 94016" +279468,Lightning Charging Cable,1,14.95,10/20/19 01:19,"944 Maple St, Atlanta, GA 30301" +279469,USB-C Charging Cable,1,11.95,10/13/19 00:15,"706 South St, Seattle, WA 98101" +279470,Bose SoundSport Headphones,1,99.99,10/25/19 08:11,"845 Dogwood St, New York City, NY 10001" +279471,Lightning Charging Cable,1,14.95,10/23/19 19:57,"289 Lincoln St, Dallas, TX 75001" +279472,AA Batteries (4-pack),1,3.84,10/20/19 14:24,"375 9th St, San Francisco, CA 94016" +279472,Apple Airpods Headphones,1,150,10/20/19 14:24,"375 9th St, San Francisco, CA 94016" +279473,iPhone,1,700,10/08/19 22:30,"828 Sunset St, Los Angeles, CA 90001" +279474,27in 4K Gaming Monitor,1,389.99,10/15/19 10:38,"627 Jackson St, Boston, MA 02215" +279475,Vareebadd Phone,1,400,10/20/19 18:24,"56 5th St, Los Angeles, CA 90001" +279476,Wired Headphones,1,11.99,10/08/19 13:56,"564 Highland St, Boston, MA 02215" +279477,27in 4K Gaming Monitor,1,389.99,10/21/19 19:00,"217 1st St, Portland, OR 97035" +279478,Apple Airpods Headphones,1,150,10/09/19 11:44,"318 7th St, San Francisco, CA 94016" +279479,USB-C Charging Cable,1,11.95,10/24/19 17:34,"338 Walnut St, Seattle, WA 98101" +279480,Apple Airpods Headphones,1,150,10/28/19 13:57,"93 Lake St, New York City, NY 10001" +279481,27in 4K Gaming Monitor,1,389.99,10/18/19 10:06,"841 Johnson St, San Francisco, CA 94016" +279482,Apple Airpods Headphones,1,150,10/23/19 22:36,"878 Jefferson St, San Francisco, CA 94016" +279483,Bose SoundSport Headphones,1,99.99,10/01/19 14:06,"635 Washington St, San Francisco, CA 94016" +279484,AA Batteries (4-pack),1,3.84,10/10/19 15:58,"560 10th St, Boston, MA 02215" +279485,AA Batteries (4-pack),1,3.84,10/20/19 14:55,"436 7th St, New York City, NY 10001" +279486,Lightning Charging Cable,1,14.95,10/30/19 00:07,"591 11th St, Los Angeles, CA 90001" +279487,Bose SoundSport Headphones,1,99.99,10/26/19 16:33,"673 Jackson St, Los Angeles, CA 90001" +279488,Bose SoundSport Headphones,1,99.99,10/24/19 20:25,"879 Wilson St, Atlanta, GA 30301" +279489,27in FHD Monitor,1,149.99,10/13/19 22:19,"30 Hill St, San Francisco, CA 94016" +279490,27in FHD Monitor,1,149.99,10/22/19 22:44,"87 7th St, Portland, ME 04101" +279491,Apple Airpods Headphones,1,150,10/24/19 14:31,"272 Hill St, Seattle, WA 98101" +279492,AA Batteries (4-pack),2,3.84,10/23/19 21:06,"205 Johnson St, San Francisco, CA 94016" +279493,AA Batteries (4-pack),1,3.84,10/11/19 19:38,"655 4th St, Seattle, WA 98101" +279494,AA Batteries (4-pack),2,3.84,10/05/19 21:02,"915 Walnut St, San Francisco, CA 94016" +279495,27in FHD Monitor,1,149.99,10/09/19 20:33,"882 Willow St, Los Angeles, CA 90001" +279496,Apple Airpods Headphones,1,150,10/29/19 15:37,"169 West St, Atlanta, GA 30301" +279497,34in Ultrawide Monitor,1,379.99,10/11/19 10:50,"640 Center St, Austin, TX 73301" +279498,27in 4K Gaming Monitor,1,389.99,10/05/19 18:26,"338 Main St, San Francisco, CA 94016" +279499,ThinkPad Laptop,1,999.99,10/28/19 19:43,"283 Lakeview St, New York City, NY 10001" +279500,AAA Batteries (4-pack),2,2.99,10/10/19 01:33,"385 Church St, Dallas, TX 75001" +279501,27in FHD Monitor,1,149.99,10/02/19 14:18,"420 Cedar St, Los Angeles, CA 90001" +279502,iPhone,1,700,10/15/19 13:12,"360 Church St, San Francisco, CA 94016" +279503,AAA Batteries (4-pack),3,2.99,10/14/19 11:31,"739 River St, San Francisco, CA 94016" +279504,27in 4K Gaming Monitor,1,389.99,10/21/19 00:12,"101 Main St, Los Angeles, CA 90001" +279505,iPhone,1,700,10/23/19 07:00,"19 Lakeview St, Los Angeles, CA 90001" +279506,Lightning Charging Cable,1,14.95,10/22/19 15:35,"434 Walnut St, New York City, NY 10001" +279507,Wired Headphones,1,11.99,10/10/19 15:48,"776 Cherry St, Boston, MA 02215" +279508,27in FHD Monitor,1,149.99,10/04/19 20:46,"102 Johnson St, Los Angeles, CA 90001" +279509,Bose SoundSport Headphones,1,99.99,10/01/19 14:10,"866 Spruce St, Seattle, WA 98101" +279510,Lightning Charging Cable,1,14.95,10/26/19 11:48,"783 2nd St, Los Angeles, CA 90001" +279511,Wired Headphones,1,11.99,10/06/19 18:46,"186 6th St, Atlanta, GA 30301" +279512,Wired Headphones,1,11.99,10/11/19 16:03,"1 Sunset St, New York City, NY 10001" +279513,iPhone,1,700,10/17/19 16:48,"786 Maple St, San Francisco, CA 94016" +279513,Lightning Charging Cable,1,14.95,10/17/19 16:48,"786 Maple St, San Francisco, CA 94016" +279514,Apple Airpods Headphones,1,150,10/12/19 23:54,"948 Washington St, New York City, NY 10001" +279515,Wired Headphones,1,11.99,10/07/19 23:48,"461 Washington St, San Francisco, CA 94016" +279516,Wired Headphones,1,11.99,10/11/19 12:39,"794 Sunset St, Los Angeles, CA 90001" +279517,USB-C Charging Cable,1,11.95,10/14/19 15:19,"117 Elm St, Los Angeles, CA 90001" +279518,USB-C Charging Cable,2,11.95,10/11/19 21:59,"238 Church St, Los Angeles, CA 90001" +279519,Bose SoundSport Headphones,2,99.99,10/25/19 19:46,"521 9th St, New York City, NY 10001" +279520,Lightning Charging Cable,1,14.95,10/20/19 09:37,"694 Washington St, Dallas, TX 75001" +279521,34in Ultrawide Monitor,1,379.99,10/06/19 13:54,"363 Washington St, San Francisco, CA 94016" +279522,Google Phone,1,600,10/25/19 12:53,"275 Center St, Atlanta, GA 30301" +279523,AAA Batteries (4-pack),2,2.99,10/31/19 19:00,"979 Cherry St, Seattle, WA 98101" +279524,Bose SoundSport Headphones,1,99.99,10/25/19 10:10,"315 13th St, San Francisco, CA 94016" +279524,AA Batteries (4-pack),1,3.84,10/25/19 10:10,"315 13th St, San Francisco, CA 94016" +279525,USB-C Charging Cable,2,11.95,10/22/19 21:40,"367 5th St, San Francisco, CA 94016" +279526,AA Batteries (4-pack),1,3.84,10/30/19 10:53,"419 14th St, Portland, OR 97035" +279527,ThinkPad Laptop,1,999.99,10/19/19 15:08,"969 Spruce St, San Francisco, CA 94016" +279528,Apple Airpods Headphones,1,150,10/13/19 23:51,"89 Forest St, San Francisco, CA 94016" +279529,USB-C Charging Cable,1,11.95,10/14/19 10:25,"183 North St, San Francisco, CA 94016" +279530,USB-C Charging Cable,1,11.95,10/25/19 13:08,"727 Adams St, Los Angeles, CA 90001" +279531,USB-C Charging Cable,1,11.95,10/22/19 20:17,"45 Walnut St, Seattle, WA 98101" +279532,USB-C Charging Cable,1,11.95,10/10/19 15:35,"90 Madison St, Los Angeles, CA 90001" +279533,Apple Airpods Headphones,1,150,10/07/19 09:52,"900 Lake St, Boston, MA 02215" +279534,Bose SoundSport Headphones,1,99.99,10/21/19 14:19,"296 10th St, San Francisco, CA 94016" +279535,AA Batteries (4-pack),3,3.84,10/09/19 11:17,"856 Cedar St, Portland, ME 04101" +279536,Lightning Charging Cable,1,14.95,10/18/19 11:51,"894 9th St, Seattle, WA 98101" +279537,34in Ultrawide Monitor,1,379.99,10/07/19 17:01,"93 Maple St, New York City, NY 10001" +279538,AA Batteries (4-pack),1,3.84,10/08/19 05:50,"700 14th St, Austin, TX 73301" +279539,AA Batteries (4-pack),2,3.84,10/09/19 11:00,"573 Madison St, Austin, TX 73301" +279540,USB-C Charging Cable,1,11.95,10/11/19 11:22,"53 West St, Atlanta, GA 30301" +279541,27in 4K Gaming Monitor,1,389.99,10/23/19 09:54,"3 Sunset St, Boston, MA 02215" +279542,AAA Batteries (4-pack),3,2.99,10/27/19 20:11,"203 Jefferson St, Boston, MA 02215" +279543,Wired Headphones,1,11.99,10/17/19 00:19,"715 Washington St, Boston, MA 02215" +279544,USB-C Charging Cable,1,11.95,10/16/19 21:20,"949 12th St, Boston, MA 02215" +279545,Wired Headphones,1,11.99,10/18/19 13:56,"476 Jackson St, Atlanta, GA 30301" +279546,USB-C Charging Cable,1,11.95,10/18/19 12:31,"294 7th St, San Francisco, CA 94016" +279546,27in 4K Gaming Monitor,1,389.99,10/18/19 12:31,"294 7th St, San Francisco, CA 94016" +279547,Apple Airpods Headphones,1,150,10/06/19 21:08,"719 Main St, San Francisco, CA 94016" +279548,ThinkPad Laptop,1,999.99,10/09/19 11:49,"703 South St, Dallas, TX 75001" +279549,AAA Batteries (4-pack),4,2.99,10/18/19 13:33,"755 West St, San Francisco, CA 94016" +279550,AA Batteries (4-pack),1,3.84,10/30/19 17:54,"737 Wilson St, San Francisco, CA 94016" +279551,iPhone,1,700,10/29/19 21:27,"47 Highland St, Boston, MA 02215" +279551,Wired Headphones,1,11.99,10/29/19 21:27,"47 Highland St, Boston, MA 02215" +279552,AA Batteries (4-pack),1,3.84,10/13/19 10:28,"334 Park St, Atlanta, GA 30301" +279553,Lightning Charging Cable,1,14.95,10/18/19 09:16,"783 Highland St, San Francisco, CA 94016" +279554,AA Batteries (4-pack),1,3.84,10/02/19 20:59,"325 Spruce St, Atlanta, GA 30301" +279555,iPhone,1,700,10/25/19 20:26,"594 Main St, Austin, TX 73301" +279556,Lightning Charging Cable,1,14.95,10/27/19 14:01,"167 Forest St, Los Angeles, CA 90001" +279557,AA Batteries (4-pack),3,3.84,10/12/19 15:50,"542 Sunset St, Los Angeles, CA 90001" +279558,AA Batteries (4-pack),1,3.84,10/23/19 10:37,"234 Madison St, Boston, MA 02215" +279559,Lightning Charging Cable,1,14.95,10/04/19 20:41,"374 Johnson St, New York City, NY 10001" +279560,AAA Batteries (4-pack),1,2.99,10/13/19 19:22,"772 Lake St, Boston, MA 02215" +279561,Google Phone,1,600,10/08/19 14:58,"800 Washington St, Seattle, WA 98101" +279562,Vareebadd Phone,1,400,10/10/19 10:36,"86 Walnut St, Dallas, TX 75001" +279563,Wired Headphones,1,11.99,10/18/19 17:46,"562 Center St, Los Angeles, CA 90001" +279564,Vareebadd Phone,1,400,10/28/19 20:17,"854 9th St, Portland, OR 97035" +279564,Bose SoundSport Headphones,1,99.99,10/28/19 20:17,"854 9th St, Portland, OR 97035" +279565,Bose SoundSport Headphones,1,99.99,10/26/19 13:38,"772 Lakeview St, San Francisco, CA 94016" +279566,Lightning Charging Cable,1,14.95,10/14/19 11:20,"508 Lincoln St, San Francisco, CA 94016" +279567,Vareebadd Phone,1,400,10/02/19 13:48,"64 7th St, San Francisco, CA 94016" +279568,Apple Airpods Headphones,1,150,10/25/19 15:52,"935 Highland St, Austin, TX 73301" +279569,Wired Headphones,1,11.99,10/17/19 01:41,"200 Lincoln St, Seattle, WA 98101" +279570,Lightning Charging Cable,1,14.95,10/18/19 20:53,"385 Hill St, Los Angeles, CA 90001" +279571,USB-C Charging Cable,1,11.95,10/23/19 09:42,"251 Maple St, Portland, OR 97035" +279572,Bose SoundSport Headphones,1,99.99,10/05/19 18:39,"150 5th St, Boston, MA 02215" +279573,AAA Batteries (4-pack),2,2.99,10/07/19 12:04,"429 Hickory St, Boston, MA 02215" +279574,Lightning Charging Cable,1,14.95,10/02/19 21:08,"915 West St, Dallas, TX 75001" +279575,Apple Airpods Headphones,1,150,10/17/19 16:56,"962 Chestnut St, Los Angeles, CA 90001" +279576,iPhone,1,700,10/26/19 19:20,"266 Church St, Seattle, WA 98101" +279577,AAA Batteries (4-pack),2,2.99,10/16/19 19:08,"4 Ridge St, Los Angeles, CA 90001" +279578,iPhone,1,700,10/17/19 19:07,"70 9th St, New York City, NY 10001" +279579,Macbook Pro Laptop,1,1700,10/03/19 16:41,"830 Elm St, Boston, MA 02215" +279580,AAA Batteries (4-pack),1,2.99,10/27/19 17:50,"741 6th St, Los Angeles, CA 90001" +279581,Lightning Charging Cable,1,14.95,10/22/19 19:18,"662 Wilson St, Los Angeles, CA 90001" +279582,Wired Headphones,1,11.99,10/04/19 19:48,"869 Cherry St, Atlanta, GA 30301" +279583,20in Monitor,1,109.99,10/23/19 15:50,"525 River St, New York City, NY 10001" +279584,LG Dryer,1,600.0,10/08/19 20:22,"473 Johnson St, New York City, NY 10001" +279585,ThinkPad Laptop,1,999.99,10/27/19 17:08,"621 5th St, San Francisco, CA 94016" +279586,AAA Batteries (4-pack),2,2.99,10/10/19 12:56,"898 Sunset St, Austin, TX 73301" +279587,Bose SoundSport Headphones,1,99.99,10/15/19 14:46,"871 Center St, Los Angeles, CA 90001" +279588,Apple Airpods Headphones,1,150,10/17/19 06:11,"285 Washington St, San Francisco, CA 94016" +279589,Lightning Charging Cable,1,14.95,10/27/19 20:17,"367 Jackson St, San Francisco, CA 94016" +279590,Lightning Charging Cable,1,14.95,10/11/19 13:03,"193 12th St, Seattle, WA 98101" +279591,20in Monitor,1,109.99,10/03/19 10:30,"873 South St, Portland, OR 97035" +279592,USB-C Charging Cable,1,11.95,10/14/19 13:50,"348 Cherry St, Portland, OR 97035" +279593,AAA Batteries (4-pack),2,2.99,10/21/19 14:32,"674 Jefferson St, San Francisco, CA 94016" +279594,AA Batteries (4-pack),1,3.84,10/16/19 13:56,"320 Dogwood St, Los Angeles, CA 90001" +279595,AAA Batteries (4-pack),1,2.99,10/18/19 16:26,"289 5th St, New York City, NY 10001" +279596,Wired Headphones,1,11.99,10/13/19 10:29,"869 1st St, San Francisco, CA 94016" +279597,Apple Airpods Headphones,1,150,10/27/19 11:56,"481 Willow St, Boston, MA 02215" +279598,USB-C Charging Cable,1,11.95,10/21/19 07:51,"600 Meadow St, San Francisco, CA 94016" +279599,AA Batteries (4-pack),1,3.84,10/26/19 09:35,"219 Main St, Boston, MA 02215" +279600,ThinkPad Laptop,1,999.99,10/10/19 09:10,"31 2nd St, Los Angeles, CA 90001" +279601,Lightning Charging Cable,1,14.95,10/16/19 06:38,"740 11th St, Austin, TX 73301" +279602,iPhone,1,700,10/10/19 23:52,"89 10th St, New York City, NY 10001" +279603,AA Batteries (4-pack),1,3.84,10/18/19 13:49,"890 6th St, Dallas, TX 75001" +279604,Macbook Pro Laptop,1,1700,10/23/19 14:39,"752 Hickory St, Los Angeles, CA 90001" +279605,Wired Headphones,1,11.99,10/02/19 19:27,"420 Elm St, New York City, NY 10001" +279606,Apple Airpods Headphones,1,150,10/01/19 14:02,"224 1st St, Seattle, WA 98101" +279607,Apple Airpods Headphones,1,150,10/30/19 07:20,"525 South St, Boston, MA 02215" +279608,Bose SoundSport Headphones,1,99.99,10/02/19 12:14,"870 Hickory St, Boston, MA 02215" +279609,Wired Headphones,1,11.99,10/29/19 15:06,"407 Maple St, San Francisco, CA 94016" +279610,AA Batteries (4-pack),2,3.84,10/07/19 17:03,"302 2nd St, Atlanta, GA 30301" +279611,Apple Airpods Headphones,1,150,10/14/19 09:59,"427 Walnut St, Atlanta, GA 30301" +279612,AAA Batteries (4-pack),1,2.99,10/08/19 12:33,"482 11th St, Los Angeles, CA 90001" +279613,Apple Airpods Headphones,1,150,10/17/19 15:25,"548 4th St, Boston, MA 02215" +279614,Wired Headphones,1,11.99,10/22/19 14:01,"730 Sunset St, Seattle, WA 98101" +279615,27in FHD Monitor,1,149.99,10/10/19 16:33,"554 Cherry St, Atlanta, GA 30301" +279616,USB-C Charging Cable,1,11.95,10/30/19 12:14,"357 Wilson St, San Francisco, CA 94016" +279617,USB-C Charging Cable,1,11.95,10/21/19 19:13,"925 Lake St, Seattle, WA 98101" +279618,USB-C Charging Cable,1,11.95,10/01/19 18:21,"589 9th St, Seattle, WA 98101" +279619,34in Ultrawide Monitor,1,379.99,10/25/19 09:42,"335 Chestnut St, Boston, MA 02215" +279620,Wired Headphones,1,11.99,10/13/19 11:25,"574 Dogwood St, Los Angeles, CA 90001" +279621,Apple Airpods Headphones,1,150,10/03/19 14:36,"14 Elm St, Los Angeles, CA 90001" +279622,Apple Airpods Headphones,1,150,10/05/19 15:04,"337 Hickory St, Los Angeles, CA 90001" +279623,Apple Airpods Headphones,1,150,10/14/19 13:03,"608 11th St, Los Angeles, CA 90001" +279624,AAA Batteries (4-pack),3,2.99,10/12/19 11:34,"420 6th St, San Francisco, CA 94016" +279625,AA Batteries (4-pack),1,3.84,10/22/19 14:23,"548 11th St, Boston, MA 02215" +279626,Lightning Charging Cable,1,14.95,10/08/19 19:03,"688 5th St, San Francisco, CA 94016" +279627,Apple Airpods Headphones,1,150,10/18/19 15:24,"207 4th St, New York City, NY 10001" +279628,Lightning Charging Cable,1,14.95,10/26/19 14:14,"81 Maple St, Portland, ME 04101" +279629,Wired Headphones,1,11.99,10/09/19 21:58,"434 Cedar St, San Francisco, CA 94016" +279630,Lightning Charging Cable,1,14.95,10/24/19 23:35,"467 6th St, Los Angeles, CA 90001" +279631,Wired Headphones,1,11.99,10/21/19 07:37,"650 Walnut St, San Francisco, CA 94016" +279632,Lightning Charging Cable,1,14.95,10/24/19 20:25,"125 Sunset St, San Francisco, CA 94016" +279633,Lightning Charging Cable,1,14.95,10/15/19 19:49,"954 10th St, Seattle, WA 98101" +279634,34in Ultrawide Monitor,1,379.99,10/08/19 07:59,"673 Pine St, Seattle, WA 98101" +279635,AAA Batteries (4-pack),2,2.99,10/23/19 13:11,"100 Johnson St, Seattle, WA 98101" +279636,Bose SoundSport Headphones,1,99.99,10/17/19 15:43,"740 2nd St, Los Angeles, CA 90001" +279637,Apple Airpods Headphones,1,150,10/03/19 11:54,"695 4th St, Atlanta, GA 30301" +279638,iPhone,1,700,10/24/19 19:40,"626 8th St, Boston, MA 02215" +279639,Wired Headphones,1,11.99,10/07/19 14:22,"336 1st St, Dallas, TX 75001" +279640,Lightning Charging Cable,1,14.95,10/19/19 21:39,"504 14th St, San Francisco, CA 94016" +279641,Apple Airpods Headphones,1,150,10/04/19 20:38,"784 Hickory St, Los Angeles, CA 90001" +279642,Bose SoundSport Headphones,1,99.99,10/13/19 08:24,"748 Highland St, Austin, TX 73301" +279642,Wired Headphones,1,11.99,10/13/19 08:24,"748 Highland St, Austin, TX 73301" +279643,USB-C Charging Cable,1,11.95,10/29/19 09:17,"338 Ridge St, San Francisco, CA 94016" +279644,Lightning Charging Cable,1,14.95,10/03/19 12:18,"77 Madison St, Los Angeles, CA 90001" +279645,34in Ultrawide Monitor,1,379.99,10/08/19 13:13,"327 5th St, Atlanta, GA 30301" +279646,AA Batteries (4-pack),3,3.84,10/22/19 19:07,"579 River St, Dallas, TX 75001" +279647,AAA Batteries (4-pack),2,2.99,10/02/19 14:15,"999 4th St, Dallas, TX 75001" +279648,Lightning Charging Cable,1,14.95,10/12/19 16:21,"480 1st St, San Francisco, CA 94016" +279649,Bose SoundSport Headphones,1,99.99,10/12/19 17:33,"857 1st St, San Francisco, CA 94016" +279650,Lightning Charging Cable,1,14.95,10/04/19 14:56,"521 Lincoln St, New York City, NY 10001" +279651,Lightning Charging Cable,1,14.95,10/19/19 18:15,"760 Church St, San Francisco, CA 94016" +279652,Bose SoundSport Headphones,1,99.99,10/22/19 10:56,"445 Main St, Boston, MA 02215" +279653,Vareebadd Phone,1,400,10/08/19 18:05,"285 Center St, Boston, MA 02215" +279654,Lightning Charging Cable,1,14.95,10/14/19 17:33,"808 Hill St, Dallas, TX 75001" +279655,34in Ultrawide Monitor,1,379.99,10/25/19 20:07,"400 South St, Los Angeles, CA 90001" +279656,USB-C Charging Cable,1,11.95,10/14/19 09:21,"73 South St, San Francisco, CA 94016" +279657,USB-C Charging Cable,2,11.95,10/10/19 13:19,"182 Cedar St, San Francisco, CA 94016" +279658,Macbook Pro Laptop,1,1700,10/05/19 15:57,"701 Lakeview St, Atlanta, GA 30301" +279659,Lightning Charging Cable,2,14.95,10/17/19 12:44,"49 Cedar St, San Francisco, CA 94016" +279660,34in Ultrawide Monitor,1,379.99,10/07/19 21:21,"860 1st St, Atlanta, GA 30301" +279661,Google Phone,1,600,10/24/19 18:25,"124 Adams St, Atlanta, GA 30301" +279662,Flatscreen TV,1,300,10/20/19 12:54,"361 Highland St, Los Angeles, CA 90001" +279663,Lightning Charging Cable,1,14.95,10/29/19 20:08,"816 Adams St, San Francisco, CA 94016" +279664,USB-C Charging Cable,1,11.95,10/26/19 15:38,"630 Hill St, Boston, MA 02215" +279665,iPhone,1,700,10/06/19 14:20,"389 Lakeview St, Portland, OR 97035" +279666,ThinkPad Laptop,1,999.99,10/09/19 16:05,"8 Forest St, Boston, MA 02215" +279667,27in FHD Monitor,1,149.99,10/25/19 22:11,"596 Sunset St, Los Angeles, CA 90001" +279668,Lightning Charging Cable,1,14.95,10/18/19 22:04,"85 11th St, Los Angeles, CA 90001" +279669,USB-C Charging Cable,1,11.95,10/16/19 16:17,"999 Pine St, San Francisco, CA 94016" +279670,AAA Batteries (4-pack),2,2.99,10/03/19 13:22,"115 River St, Austin, TX 73301" +279671,ThinkPad Laptop,1,999.99,10/19/19 09:22,"479 Johnson St, New York City, NY 10001" +279672,Apple Airpods Headphones,1,150,10/12/19 10:29,"133 Dogwood St, Seattle, WA 98101" +279673,AA Batteries (4-pack),1,3.84,10/24/19 15:17,"928 Pine St, Los Angeles, CA 90001" +279674,27in FHD Monitor,1,149.99,10/08/19 01:25,"546 Chestnut St, New York City, NY 10001" +279675,iPhone,1,700,10/17/19 08:20,"870 Meadow St, Los Angeles, CA 90001" +279676,iPhone,1,700,10/21/19 22:53,"856 Meadow St, Los Angeles, CA 90001" +279676,Lightning Charging Cable,1,14.95,10/21/19 22:53,"856 Meadow St, Los Angeles, CA 90001" +279677,AAA Batteries (4-pack),1,2.99,10/24/19 10:52,"998 Madison St, Boston, MA 02215" +279678,27in FHD Monitor,1,149.99,10/05/19 11:27,"8 South St, Los Angeles, CA 90001" +279679,27in 4K Gaming Monitor,1,389.99,10/06/19 15:00,"207 Madison St, New York City, NY 10001" +279680,USB-C Charging Cable,1,11.95,10/26/19 19:36,"359 Spruce St, San Francisco, CA 94016" +279681,iPhone,1,700,10/31/19 23:39,"116 5th St, Dallas, TX 75001" +279681,Apple Airpods Headphones,1,150,10/31/19 23:39,"116 5th St, Dallas, TX 75001" +279682,AA Batteries (4-pack),1,3.84,10/16/19 15:25,"469 Hickory St, Seattle, WA 98101" +279683,Bose SoundSport Headphones,1,99.99,10/12/19 20:03,"977 South St, New York City, NY 10001" +279684,Lightning Charging Cable,1,14.95,10/19/19 10:00,"391 Forest St, Portland, OR 97035" +279685,AA Batteries (4-pack),1,3.84,10/05/19 21:48,"280 South St, San Francisco, CA 94016" +279686,USB-C Charging Cable,1,11.95,10/01/19 11:44,"195 Willow St, Los Angeles, CA 90001" +279687,Bose SoundSport Headphones,1,99.99,10/22/19 09:09,"902 Madison St, New York City, NY 10001" +279688,Wired Headphones,1,11.99,10/05/19 11:58,"594 Maple St, New York City, NY 10001" +279689,iPhone,1,700,10/12/19 10:00,"592 Dogwood St, New York City, NY 10001" +279690,27in 4K Gaming Monitor,1,389.99,10/30/19 18:08,"926 Highland St, Los Angeles, CA 90001" +279691,AA Batteries (4-pack),1,3.84,10/27/19 18:42,"27 Jackson St, Seattle, WA 98101" +279692,34in Ultrawide Monitor,1,379.99,10/21/19 11:47,"300 Jefferson St, Austin, TX 73301" +279693,AAA Batteries (4-pack),1,2.99,10/22/19 23:16,"775 Forest St, Los Angeles, CA 90001" +279694,AAA Batteries (4-pack),2,2.99,10/31/19 18:03,"795 Lakeview St, Boston, MA 02215" +279695,Google Phone,1,600,10/22/19 16:11,"514 Park St, Los Angeles, CA 90001" +279695,USB-C Charging Cable,1,11.95,10/22/19 16:11,"514 Park St, Los Angeles, CA 90001" +279696,USB-C Charging Cable,1,11.95,10/11/19 15:35,"427 Main St, Seattle, WA 98101" +279697,iPhone,1,700,10/18/19 15:47,"828 7th St, Austin, TX 73301" +279698,Lightning Charging Cable,1,14.95,10/14/19 17:00,"991 Wilson St, Austin, TX 73301" +279699,USB-C Charging Cable,1,11.95,10/03/19 21:49,"947 Madison St, Boston, MA 02215" +279700,Apple Airpods Headphones,1,150,10/24/19 17:05,"138 Hill St, Los Angeles, CA 90001" +279701,Google Phone,2,600,10/09/19 21:53,"626 2nd St, Austin, TX 73301" +279702,iPhone,1,700,10/19/19 22:36,"312 4th St, San Francisco, CA 94016" +279703,Wired Headphones,1,11.99,10/01/19 22:10,"749 Hickory St, Dallas, TX 75001" +279704,Lightning Charging Cable,2,14.95,10/17/19 00:20,"130 Wilson St, San Francisco, CA 94016" +279705,Wired Headphones,2,11.99,10/07/19 12:29,"474 Center St, Dallas, TX 75001" +279706,Apple Airpods Headphones,1,150,10/17/19 10:17,"386 8th St, San Francisco, CA 94016" +279707,Apple Airpods Headphones,1,150,10/22/19 21:10,"983 Center St, Atlanta, GA 30301" +279708,27in 4K Gaming Monitor,1,389.99,10/14/19 09:09,"991 Spruce St, San Francisco, CA 94016" +279709,34in Ultrawide Monitor,1,379.99,10/14/19 10:43,"318 Center St, San Francisco, CA 94016" +279710,AA Batteries (4-pack),1,3.84,10/15/19 16:10,"876 Spruce St, San Francisco, CA 94016" +279711,Lightning Charging Cable,1,14.95,10/07/19 20:07,"399 Lakeview St, San Francisco, CA 94016" +279712,AAA Batteries (4-pack),3,2.99,10/29/19 22:29,"158 Jackson St, Los Angeles, CA 90001" +279713,Macbook Pro Laptop,1,1700,10/11/19 18:59,"440 North St, Seattle, WA 98101" +279714,AA Batteries (4-pack),1,3.84,10/04/19 09:59,"471 Walnut St, San Francisco, CA 94016" +279715,34in Ultrawide Monitor,1,379.99,10/31/19 14:01,"779 9th St, San Francisco, CA 94016" +279716,ThinkPad Laptop,1,999.99,10/15/19 20:26,"849 14th St, Portland, ME 04101" +279717,ThinkPad Laptop,1,999.99,10/15/19 13:38,"385 1st St, Austin, TX 73301" +279718,USB-C Charging Cable,1,11.95,10/24/19 07:58,"60 13th St, New York City, NY 10001" +279719,Macbook Pro Laptop,1,1700,10/27/19 15:25,"49 Cedar St, Los Angeles, CA 90001" +279720,ThinkPad Laptop,1,999.99,10/13/19 07:22,"815 Jefferson St, Seattle, WA 98101" +279721,AA Batteries (4-pack),1,3.84,10/20/19 11:00,"617 Ridge St, New York City, NY 10001" +279722,Bose SoundSport Headphones,1,99.99,10/23/19 00:22,"376 Hill St, San Francisco, CA 94016" +279723,Apple Airpods Headphones,1,150,10/29/19 16:34,"707 Cherry St, San Francisco, CA 94016" +279724,Macbook Pro Laptop,1,1700,10/09/19 08:49,"985 Center St, New York City, NY 10001" +279725,USB-C Charging Cable,1,11.95,10/05/19 18:59,"859 Cherry St, Seattle, WA 98101" +279726,27in 4K Gaming Monitor,1,389.99,10/02/19 18:22,"345 Walnut St, San Francisco, CA 94016" +279727,USB-C Charging Cable,1,11.95,10/21/19 20:26,"450 Walnut St, Seattle, WA 98101" +279728,iPhone,1,700,10/13/19 23:14,"309 Main St, San Francisco, CA 94016" +279729,Macbook Pro Laptop,1,1700,10/28/19 17:43,"964 Chestnut St, Los Angeles, CA 90001" +279730,Wired Headphones,1,11.99,10/20/19 12:09,"878 8th St, Los Angeles, CA 90001" +279730,iPhone,1,700,10/20/19 12:09,"878 8th St, Los Angeles, CA 90001" +279731,AA Batteries (4-pack),1,3.84,10/14/19 09:31,"411 6th St, Los Angeles, CA 90001" +279732,Bose SoundSport Headphones,1,99.99,10/23/19 15:48,"195 Johnson St, Los Angeles, CA 90001" +279733,USB-C Charging Cable,1,11.95,10/26/19 10:29,"107 Forest St, San Francisco, CA 94016" +279734,Bose SoundSport Headphones,1,99.99,10/25/19 13:30,"539 14th St, Austin, TX 73301" +279735,AA Batteries (4-pack),3,3.84,10/23/19 13:39,"97 Lincoln St, Portland, OR 97035" +279736,USB-C Charging Cable,1,11.95,10/01/19 17:59,"585 South St, Atlanta, GA 30301" +279737,USB-C Charging Cable,1,11.95,10/17/19 21:28,"41 Pine St, Dallas, TX 75001" +279738,27in 4K Gaming Monitor,1,389.99,10/01/19 07:07,"320 Lincoln St, Boston, MA 02215" +279739,Wired Headphones,1,11.99,10/29/19 13:23,"658 Chestnut St, Seattle, WA 98101" +279740,Flatscreen TV,1,300,10/20/19 20:57,"299 Wilson St, San Francisco, CA 94016" +279741,34in Ultrawide Monitor,1,379.99,10/14/19 17:06,"702 North St, Portland, ME 04101" +279742,USB-C Charging Cable,1,11.95,10/12/19 21:30,"830 7th St, Dallas, TX 75001" +279743,Wired Headphones,1,11.99,10/10/19 16:12,"874 Lake St, Atlanta, GA 30301" +279744,Bose SoundSport Headphones,1,99.99,10/20/19 12:52,"729 Chestnut St, Boston, MA 02215" +279745,20in Monitor,1,109.99,10/11/19 07:17,"100 Adams St, Atlanta, GA 30301" +279746,ThinkPad Laptop,1,999.99,10/02/19 14:38,"212 Forest St, Los Angeles, CA 90001" +279747,27in FHD Monitor,1,149.99,10/04/19 20:04,"676 Lakeview St, Austin, TX 73301" +279748,AAA Batteries (4-pack),2,2.99,10/18/19 13:59,"875 Spruce St, Los Angeles, CA 90001" +279749,USB-C Charging Cable,1,11.95,10/18/19 20:22,"527 2nd St, New York City, NY 10001" +279750,Lightning Charging Cable,1,14.95,10/08/19 15:36,"178 10th St, Atlanta, GA 30301" +279751,Lightning Charging Cable,1,14.95,10/15/19 20:20,"140 Cedar St, San Francisco, CA 94016" +279752,Wired Headphones,1,11.99,10/19/19 17:22,"93 Wilson St, Dallas, TX 75001" +279753,AAA Batteries (4-pack),5,2.99,10/22/19 21:59,"84 13th St, Seattle, WA 98101" +279754,Wired Headphones,1,11.99,10/09/19 12:39,"265 Wilson St, Austin, TX 73301" +279755,27in 4K Gaming Monitor,1,389.99,10/31/19 23:00,"613 Main St, Boston, MA 02215" +279756,AA Batteries (4-pack),1,3.84,10/12/19 22:14,"883 Spruce St, New York City, NY 10001" +279757,Bose SoundSport Headphones,1,99.99,10/20/19 12:22,"404 Willow St, Boston, MA 02215" +279758,AAA Batteries (4-pack),2,2.99,10/17/19 18:07,"3 West St, Portland, OR 97035" +279759,USB-C Charging Cable,1,11.95,10/07/19 23:52,"997 Forest St, Dallas, TX 75001" +279760,Lightning Charging Cable,2,14.95,10/01/19 16:04,"470 Ridge St, San Francisco, CA 94016" +279760,USB-C Charging Cable,1,11.95,10/01/19 16:04,"470 Ridge St, San Francisco, CA 94016" +279761,Lightning Charging Cable,1,14.95,10/31/19 21:02,"597 10th St, Dallas, TX 75001" +279762,AA Batteries (4-pack),1,3.84,10/22/19 09:34,"519 Maple St, Boston, MA 02215" +279763,Macbook Pro Laptop,1,1700,10/21/19 22:28,"337 Cherry St, Los Angeles, CA 90001" +279764,Bose SoundSport Headphones,1,99.99,10/05/19 13:50,"678 10th St, Seattle, WA 98101" +279765,USB-C Charging Cable,1,11.95,10/27/19 05:47,"619 Ridge St, Los Angeles, CA 90001" +279766,Lightning Charging Cable,1,14.95,10/04/19 12:07,"698 South St, New York City, NY 10001" +279767,USB-C Charging Cable,1,11.95,10/03/19 14:12,"24 Sunset St, Dallas, TX 75001" +279767,34in Ultrawide Monitor,1,379.99,10/03/19 14:12,"24 Sunset St, Dallas, TX 75001" +279768,AA Batteries (4-pack),1,3.84,10/14/19 20:11,"92 1st St, San Francisco, CA 94016" +279769,Apple Airpods Headphones,1,150,10/07/19 19:51,"697 Walnut St, Dallas, TX 75001" +279770,Bose SoundSport Headphones,1,99.99,10/17/19 00:55,"604 North St, San Francisco, CA 94016" +279771,AAA Batteries (4-pack),1,2.99,10/27/19 20:18,"229 6th St, Boston, MA 02215" +279772,iPhone,1,700,10/20/19 14:06,"111 Dogwood St, Seattle, WA 98101" +279772,Wired Headphones,1,11.99,10/20/19 14:06,"111 Dogwood St, Seattle, WA 98101" +279773,27in FHD Monitor,1,149.99,10/05/19 11:15,"907 1st St, San Francisco, CA 94016" +279774,27in 4K Gaming Monitor,1,389.99,10/11/19 12:26,"578 Johnson St, New York City, NY 10001" +279775,27in 4K Gaming Monitor,1,389.99,10/05/19 19:58,"287 Jefferson St, Los Angeles, CA 90001" +279776,Apple Airpods Headphones,1,150,10/29/19 18:20,"572 Spruce St, Los Angeles, CA 90001" +279777,Lightning Charging Cable,1,14.95,10/15/19 16:56,"996 Washington St, Dallas, TX 75001" +279778,Vareebadd Phone,1,400,10/15/19 12:44,"468 1st St, Boston, MA 02215" +279779,AA Batteries (4-pack),1,3.84,10/18/19 17:07,"313 Madison St, Portland, OR 97035" +279780,AAA Batteries (4-pack),2,2.99,10/05/19 08:03,"501 Jackson St, Dallas, TX 75001" +279781,27in FHD Monitor,1,149.99,10/25/19 15:16,"71 Spruce St, Los Angeles, CA 90001" +279782,ThinkPad Laptop,1,999.99,10/20/19 20:43,"590 Church St, Dallas, TX 75001" +279783,Wired Headphones,2,11.99,10/09/19 10:01,"587 14th St, San Francisco, CA 94016" +279784,LG Dryer,1,600.0,10/22/19 23:28,"986 Adams St, Boston, MA 02215" +279785,USB-C Charging Cable,1,11.95,10/12/19 17:47,"935 Spruce St, Boston, MA 02215" +279786,Wired Headphones,1,11.99,10/04/19 19:59,"342 Johnson St, San Francisco, CA 94016" +279787,27in FHD Monitor,1,149.99,10/12/19 04:42,"141 Meadow St, Los Angeles, CA 90001" +279788,Wired Headphones,1,11.99,10/29/19 23:36,"395 Dogwood St, Austin, TX 73301" +279789,Wired Headphones,1,11.99,10/15/19 10:27,"630 11th St, Los Angeles, CA 90001" +279790,USB-C Charging Cable,1,11.95,10/18/19 13:38,"767 Lincoln St, Boston, MA 02215" +279791,Google Phone,1,600,10/21/19 11:37,"752 Madison St, San Francisco, CA 94016" +279792,USB-C Charging Cable,1,11.95,10/14/19 10:15,"967 14th St, Atlanta, GA 30301" +279793,Bose SoundSport Headphones,1,99.99,10/09/19 12:02,"86 Spruce St, Austin, TX 73301" +279794,Bose SoundSport Headphones,1,99.99,10/06/19 10:42,"761 Walnut St, San Francisco, CA 94016" +279795,ThinkPad Laptop,1,999.99,10/13/19 16:51,"804 13th St, Los Angeles, CA 90001" +279796,Macbook Pro Laptop,1,1700,10/06/19 23:00,"797 Jefferson St, Atlanta, GA 30301" +279797,Flatscreen TV,1,300,10/29/19 16:56,"766 River St, San Francisco, CA 94016" +279798,Lightning Charging Cable,1,14.95,10/05/19 20:45,"826 5th St, San Francisco, CA 94016" +279799,Lightning Charging Cable,1,14.95,10/14/19 21:32,"636 Elm St, New York City, NY 10001" +279800,Lightning Charging Cable,1,14.95,10/28/19 20:01,"357 9th St, Los Angeles, CA 90001" +279801,AA Batteries (4-pack),3,3.84,10/27/19 14:29,"79 10th St, Boston, MA 02215" +279802,34in Ultrawide Monitor,1,379.99,10/20/19 19:29,"119 Cherry St, Austin, TX 73301" +279803,AAA Batteries (4-pack),1,2.99,10/19/19 00:09,"157 Cherry St, San Francisco, CA 94016" +279804,USB-C Charging Cable,1,11.95,10/04/19 12:03,"552 7th St, San Francisco, CA 94016" +279805,AA Batteries (4-pack),2,3.84,10/17/19 18:43,"685 Ridge St, San Francisco, CA 94016" +279806,USB-C Charging Cable,1,11.95,10/12/19 08:28,"915 Pine St, San Francisco, CA 94016" +279807,AAA Batteries (4-pack),1,2.99,10/19/19 10:05,"210 Hill St, Seattle, WA 98101" +279808,Lightning Charging Cable,1,14.95,10/24/19 13:00,"52 North St, Boston, MA 02215" +279809,AA Batteries (4-pack),2,3.84,10/03/19 06:25,"726 11th St, Portland, OR 97035" +279810,AA Batteries (4-pack),1,3.84,10/03/19 10:16,"727 Wilson St, Los Angeles, CA 90001" +279811,Lightning Charging Cable,1,14.95,10/26/19 18:13,"467 Lakeview St, Boston, MA 02215" +279812,AAA Batteries (4-pack),3,2.99,10/19/19 12:54,"588 Jefferson St, San Francisco, CA 94016" +279813,USB-C Charging Cable,1,11.95,10/25/19 12:29,"671 5th St, Austin, TX 73301" +279814,USB-C Charging Cable,1,11.95,10/17/19 10:56,"124 West St, Los Angeles, CA 90001" +279815,ThinkPad Laptop,1,999.99,10/08/19 16:09,"390 Willow St, San Francisco, CA 94016" +279816,AAA Batteries (4-pack),2,2.99,10/09/19 01:33,"706 Meadow St, Seattle, WA 98101" +279817,Apple Airpods Headphones,1,150,10/11/19 12:54,"186 Madison St, Los Angeles, CA 90001" +279818,USB-C Charging Cable,1,11.95,10/14/19 11:53,"332 Washington St, Seattle, WA 98101" +279819,Macbook Pro Laptop,1,1700,10/13/19 21:41,"420 Park St, Los Angeles, CA 90001" +279820,Vareebadd Phone,1,400,10/06/19 19:03,"853 Sunset St, Dallas, TX 75001" +279820,USB-C Charging Cable,1,11.95,10/06/19 19:03,"853 Sunset St, Dallas, TX 75001" +279821,27in FHD Monitor,1,149.99,10/30/19 21:19,"555 14th St, Seattle, WA 98101" +279822,Wired Headphones,1,11.99,10/24/19 22:35,"571 Ridge St, Dallas, TX 75001" +279823,34in Ultrawide Monitor,1,379.99,10/04/19 19:56,"137 Sunset St, New York City, NY 10001" +279824,Lightning Charging Cable,1,14.95,10/31/19 11:16,"439 Hickory St, San Francisco, CA 94016" +279825,USB-C Charging Cable,2,11.95,10/20/19 14:56,"595 4th St, New York City, NY 10001" +279826,USB-C Charging Cable,1,11.95,10/03/19 12:30,"120 Johnson St, Boston, MA 02215" +279826,Lightning Charging Cable,1,14.95,10/03/19 12:30,"120 Johnson St, Boston, MA 02215" +279827,27in FHD Monitor,1,149.99,10/25/19 23:15,"445 Washington St, Boston, MA 02215" +279828,Lightning Charging Cable,1,14.95,10/22/19 15:01,"867 Highland St, Austin, TX 73301" +279829,AAA Batteries (4-pack),1,2.99,10/01/19 19:52,"712 Lake St, Los Angeles, CA 90001" +279830,Macbook Pro Laptop,1,1700,10/15/19 20:32,"327 Lincoln St, Austin, TX 73301" +279831,USB-C Charging Cable,2,11.95,10/16/19 21:34,"99 6th St, Dallas, TX 75001" +279832,AAA Batteries (4-pack),4,2.99,10/07/19 09:20,"967 1st St, Dallas, TX 75001" +279833,Bose SoundSport Headphones,1,99.99,10/12/19 13:20,"783 Forest St, San Francisco, CA 94016" +279834,Bose SoundSport Headphones,1,99.99,10/25/19 20:31,"210 2nd St, Atlanta, GA 30301" +279835,34in Ultrawide Monitor,1,379.99,10/21/19 15:41,"537 Pine St, San Francisco, CA 94016" +279836,USB-C Charging Cable,1,11.95,10/05/19 10:58,"501 Cherry St, San Francisco, CA 94016" +279837,ThinkPad Laptop,1,999.99,10/05/19 07:53,"832 Washington St, San Francisco, CA 94016" +279838,AAA Batteries (4-pack),5,2.99,10/30/19 19:51,"140 5th St, San Francisco, CA 94016" +279839,Flatscreen TV,1,300,10/07/19 08:41,"311 Lakeview St, San Francisco, CA 94016" +279840,AAA Batteries (4-pack),2,2.99,10/02/19 13:45,"514 Adams St, Boston, MA 02215" +279841,20in Monitor,1,109.99,10/03/19 17:25,"417 Adams St, Dallas, TX 75001" +279842,27in 4K Gaming Monitor,1,389.99,10/22/19 10:46,"889 Walnut St, Portland, OR 97035" +279843,USB-C Charging Cable,1,11.95,10/13/19 15:18,"314 Hickory St, Boston, MA 02215" +279844,iPhone,1,700,10/17/19 15:07,"775 12th St, San Francisco, CA 94016" +279845,ThinkPad Laptop,1,999.99,10/13/19 19:43,"378 Spruce St, New York City, NY 10001" +279846,AA Batteries (4-pack),1,3.84,10/29/19 22:10,"880 South St, Seattle, WA 98101" +279847,USB-C Charging Cable,1,11.95,10/20/19 18:25,"388 10th St, Seattle, WA 98101" +279848,AA Batteries (4-pack),2,3.84,10/18/19 18:49,"315 Walnut St, San Francisco, CA 94016" +279849,Google Phone,1,600,10/10/19 16:30,"863 9th St, Boston, MA 02215" +279850,USB-C Charging Cable,1,11.95,10/06/19 06:42,"865 Pine St, Dallas, TX 75001" +279851,AAA Batteries (4-pack),1,2.99,10/20/19 22:37,"220 North St, Los Angeles, CA 90001" +279852,LG Dryer,1,600.0,10/18/19 21:42,"651 Adams St, Dallas, TX 75001" +279853,Flatscreen TV,1,300,10/06/19 21:22,"396 Sunset St, Boston, MA 02215" +279854,Google Phone,1,600,10/03/19 10:18,"726 Center St, Atlanta, GA 30301" +279855,AA Batteries (4-pack),1,3.84,10/30/19 15:02,"357 Madison St, Los Angeles, CA 90001" +279856,Bose SoundSport Headphones,1,99.99,10/24/19 11:56,"289 Wilson St, San Francisco, CA 94016" +279857,AA Batteries (4-pack),2,3.84,10/03/19 13:13,"934 12th St, Atlanta, GA 30301" +279858,Flatscreen TV,1,300,10/13/19 13:20,"171 6th St, San Francisco, CA 94016" +279859,Lightning Charging Cable,1,14.95,10/16/19 10:35,"928 Madison St, San Francisco, CA 94016" +279860,Macbook Pro Laptop,1,1700,10/16/19 18:35,"543 Center St, Atlanta, GA 30301" +279861,Apple Airpods Headphones,1,150,10/17/19 08:29,"772 Cedar St, Boston, MA 02215" +279862,Apple Airpods Headphones,1,150,10/10/19 13:45,"162 Maple St, Dallas, TX 75001" +279863,Wired Headphones,1,11.99,10/06/19 16:31,"821 Cedar St, Boston, MA 02215" +279864,USB-C Charging Cable,1,11.95,10/29/19 21:00,"734 Center St, San Francisco, CA 94016" +279865,Vareebadd Phone,1,400,10/10/19 06:30,"642 Madison St, San Francisco, CA 94016" +279866,34in Ultrawide Monitor,1,379.99,10/19/19 07:49,"738 Highland St, Los Angeles, CA 90001" +279867,LG Washing Machine,1,600.0,10/28/19 16:32,"912 Meadow St, San Francisco, CA 94016" +279868,Wired Headphones,1,11.99,10/20/19 10:34,"139 Elm St, San Francisco, CA 94016" +279869,USB-C Charging Cable,1,11.95,10/17/19 11:34,"509 Wilson St, New York City, NY 10001" +279870,AAA Batteries (4-pack),1,2.99,10/26/19 21:11,"110 Washington St, Los Angeles, CA 90001" +279871,Apple Airpods Headphones,1,150,10/09/19 10:13,"719 Cedar St, New York City, NY 10001" +279871,AAA Batteries (4-pack),2,2.99,10/09/19 10:13,"719 Cedar St, New York City, NY 10001" +279872,Wired Headphones,1,11.99,10/25/19 07:07,"708 Highland St, Boston, MA 02215" +279873,Lightning Charging Cable,1,14.95,10/09/19 12:02,"179 Jackson St, Seattle, WA 98101" +279874,AAA Batteries (4-pack),1,2.99,10/20/19 23:22,"25 South St, Austin, TX 73301" +279875,Apple Airpods Headphones,1,150,10/29/19 01:03,"70 Hickory St, San Francisco, CA 94016" +279876,Lightning Charging Cable,1,14.95,10/24/19 07:42,"236 13th St, Seattle, WA 98101" +279877,Wired Headphones,1,11.99,10/10/19 06:49,"590 Pine St, Austin, TX 73301" +279878,USB-C Charging Cable,1,11.95,10/09/19 08:51,"538 West St, Atlanta, GA 30301" +279879,Apple Airpods Headphones,1,150,10/04/19 16:00,"938 Pine St, New York City, NY 10001" +279879,20in Monitor,1,109.99,10/04/19 16:00,"938 Pine St, New York City, NY 10001" +279880,Wired Headphones,1,11.99,10/14/19 00:07,"407 Hill St, San Francisco, CA 94016" +279881,20in Monitor,1,109.99,10/07/19 16:18,"95 9th St, San Francisco, CA 94016" +279882,Bose SoundSport Headphones,1,99.99,10/26/19 15:45,"148 Willow St, Los Angeles, CA 90001" +279883,Lightning Charging Cable,1,14.95,10/10/19 15:26,"848 6th St, Los Angeles, CA 90001" +279884,USB-C Charging Cable,1,11.95,10/05/19 15:01,"290 Wilson St, Portland, ME 04101" +279885,USB-C Charging Cable,1,11.95,10/11/19 22:23,"997 Willow St, Los Angeles, CA 90001" +279886,Bose SoundSport Headphones,1,99.99,10/01/19 15:36,"336 Meadow St, Portland, OR 97035" +279887,Flatscreen TV,1,300,10/10/19 18:42,"954 Lincoln St, Atlanta, GA 30301" +279888,Bose SoundSport Headphones,1,99.99,10/28/19 23:30,"396 Willow St, Los Angeles, CA 90001" +279889,Lightning Charging Cable,1,14.95,10/31/19 19:33,"569 Cherry St, San Francisco, CA 94016" +279890,Lightning Charging Cable,1,14.95,10/19/19 18:08,"938 Lakeview St, Seattle, WA 98101" +279891,27in FHD Monitor,1,149.99,10/11/19 01:10,"720 Sunset St, Dallas, TX 75001" +279892,USB-C Charging Cable,1,11.95,10/02/19 15:29,"596 Cedar St, San Francisco, CA 94016" +279893,34in Ultrawide Monitor,1,379.99,10/20/19 10:00,"450 Pine St, Atlanta, GA 30301" +279894,Apple Airpods Headphones,1,150,10/18/19 09:51,"803 Forest St, San Francisco, CA 94016" +279895,27in FHD Monitor,1,149.99,10/24/19 10:09,"239 Hill St, San Francisco, CA 94016" +279896,Apple Airpods Headphones,1,150,10/10/19 19:14,"378 5th St, San Francisco, CA 94016" +279897,Google Phone,1,600,10/13/19 20:29,"104 West St, Boston, MA 02215" +279898,AA Batteries (4-pack),1,3.84,10/24/19 17:33,"174 Jefferson St, Seattle, WA 98101" +279899,Apple Airpods Headphones,1,150,10/25/19 13:52,"698 Pine St, Dallas, TX 75001" +279900,Wired Headphones,2,11.99,10/07/19 16:13,"813 13th St, Los Angeles, CA 90001" +279901,Bose SoundSport Headphones,1,99.99,10/10/19 16:47,"373 6th St, San Francisco, CA 94016" +279902,AA Batteries (4-pack),1,3.84,10/07/19 12:59,"461 Main St, Boston, MA 02215" +279903,Wired Headphones,2,11.99,10/16/19 16:13,"64 Pine St, Austin, TX 73301" +279904,Macbook Pro Laptop,1,1700,10/28/19 06:26,"792 6th St, Dallas, TX 75001" +279905,Google Phone,1,600,10/28/19 10:54,"153 Lincoln St, San Francisco, CA 94016" +279905,Bose SoundSport Headphones,1,99.99,10/28/19 10:54,"153 Lincoln St, San Francisco, CA 94016" +279906,AA Batteries (4-pack),1,3.84,10/10/19 18:08,"400 Lakeview St, San Francisco, CA 94016" +279907,iPhone,1,700,10/18/19 16:52,"799 Maple St, Seattle, WA 98101" +279908,Wired Headphones,1,11.99,10/15/19 03:35,"305 14th St, New York City, NY 10001" +279909,USB-C Charging Cable,1,11.95,10/12/19 13:08,"930 1st St, New York City, NY 10001" +279910,Lightning Charging Cable,1,14.95,10/28/19 20:08,"274 Sunset St, New York City, NY 10001" +279911,USB-C Charging Cable,1,11.95,10/19/19 12:01,"192 Hill St, Austin, TX 73301" +279912,Lightning Charging Cable,1,14.95,10/30/19 13:25,"171 6th St, San Francisco, CA 94016" +279913,AAA Batteries (4-pack),3,2.99,10/22/19 01:36,"52 11th St, New York City, NY 10001" +279914,27in 4K Gaming Monitor,1,389.99,10/07/19 20:50,"596 Jackson St, Dallas, TX 75001" +279915,Lightning Charging Cable,1,14.95,10/29/19 16:08,"880 Madison St, New York City, NY 10001" +279916,AAA Batteries (4-pack),1,2.99,10/24/19 17:38,"414 Spruce St, San Francisco, CA 94016" +279917,34in Ultrawide Monitor,1,379.99,10/20/19 21:19,"204 Wilson St, New York City, NY 10001" +279918,AAA Batteries (4-pack),1,2.99,10/09/19 12:11,"924 Lake St, Atlanta, GA 30301" +279919,27in 4K Gaming Monitor,1,389.99,10/01/19 13:26,"183 River St, Seattle, WA 98101" +279920,Lightning Charging Cable,2,14.95,10/22/19 16:09,"951 Willow St, Los Angeles, CA 90001" +279921,USB-C Charging Cable,1,11.95,10/20/19 08:48,"204 Cherry St, New York City, NY 10001" +279922,USB-C Charging Cable,1,11.95,10/22/19 18:56,"440 Hill St, Dallas, TX 75001" +279923,USB-C Charging Cable,1,11.95,10/04/19 17:31,"264 Forest St, New York City, NY 10001" +279924,20in Monitor,1,109.99,10/27/19 09:40,"86 Dogwood St, San Francisco, CA 94016" +279925,Wired Headphones,1,11.99,10/16/19 21:57,"933 Willow St, Portland, OR 97035" +279926,Google Phone,1,600,10/27/19 17:10,"112 13th St, Boston, MA 02215" +279926,Wired Headphones,1,11.99,10/27/19 17:10,"112 13th St, Boston, MA 02215" +279927,Google Phone,1,600,10/28/19 19:12,"641 Ridge St, New York City, NY 10001" +279928,27in FHD Monitor,1,149.99,10/29/19 13:38,"55 Wilson St, Los Angeles, CA 90001" +279929,USB-C Charging Cable,1,11.95,10/30/19 12:40,"883 Ridge St, San Francisco, CA 94016" +279930,AAA Batteries (4-pack),3,2.99,10/22/19 07:13,"46 Willow St, Atlanta, GA 30301" +279931,Lightning Charging Cable,1,14.95,10/29/19 20:14,"834 11th St, Boston, MA 02215" +279932,AA Batteries (4-pack),1,3.84,10/09/19 05:22,"286 6th St, Boston, MA 02215" +279933,AA Batteries (4-pack),1,3.84,10/17/19 12:57,"404 Wilson St, San Francisco, CA 94016" +279934,Wired Headphones,1,11.99,10/01/19 17:06,"126 Cedar St, San Francisco, CA 94016" +279935,Bose SoundSport Headphones,1,99.99,10/06/19 17:54,"258 12th St, Portland, OR 97035" +279936,Apple Airpods Headphones,1,150,10/22/19 19:40,"26 8th St, New York City, NY 10001" +279937,34in Ultrawide Monitor,1,379.99,10/10/19 17:08,"794 Forest St, Dallas, TX 75001" +279938,34in Ultrawide Monitor,1,379.99,10/15/19 04:51,"912 Jefferson St, Boston, MA 02215" +279939,Lightning Charging Cable,1,14.95,10/15/19 06:36,"958 Lake St, Seattle, WA 98101" +279940,Wired Headphones,1,11.99,10/19/19 16:27,"921 Park St, Portland, OR 97035" +279941,AA Batteries (4-pack),2,3.84,10/19/19 13:05,"987 Maple St, New York City, NY 10001" +279942,27in 4K Gaming Monitor,1,389.99,10/26/19 01:37,"20 11th St, Atlanta, GA 30301" +279943,Apple Airpods Headphones,1,150,10/25/19 13:22,"607 Lakeview St, Boston, MA 02215" +279944,27in 4K Gaming Monitor,1,389.99,10/26/19 19:04,"555 Spruce St, Portland, OR 97035" +279945,USB-C Charging Cable,1,11.95,10/10/19 17:48,"851 9th St, Atlanta, GA 30301" +279946,Bose SoundSport Headphones,1,99.99,10/04/19 18:28,"35 Cedar St, Boston, MA 02215" +279947,AA Batteries (4-pack),1,3.84,10/29/19 08:31,"970 Jackson St, Boston, MA 02215" +279948,AAA Batteries (4-pack),1,2.99,10/03/19 12:37,"208 Cherry St, Austin, TX 73301" +279949,Bose SoundSport Headphones,1,99.99,10/15/19 16:32,"743 Sunset St, San Francisco, CA 94016" +279950,Lightning Charging Cable,1,14.95,10/08/19 08:25,"617 Spruce St, Los Angeles, CA 90001" +279951,AAA Batteries (4-pack),2,2.99,10/22/19 18:23,"246 West St, Boston, MA 02215" +279952,AAA Batteries (4-pack),1,2.99,10/24/19 22:41,"385 Willow St, San Francisco, CA 94016" +279953,USB-C Charging Cable,1,11.95,10/18/19 19:31,"581 Adams St, Seattle, WA 98101" +279954,Google Phone,1,600,10/01/19 18:57,"29 Jefferson St, Atlanta, GA 30301" +279955,Apple Airpods Headphones,1,150,10/11/19 15:19,"235 Elm St, New York City, NY 10001" +279956,USB-C Charging Cable,1,11.95,10/10/19 09:56,"137 14th St, New York City, NY 10001" +279957,Vareebadd Phone,1,400,10/15/19 19:26,"841 Lincoln St, Austin, TX 73301" +279958,ThinkPad Laptop,1,999.99,10/23/19 19:57,"666 Sunset St, Atlanta, GA 30301" +279959,Apple Airpods Headphones,1,150,10/05/19 17:29,"239 Johnson St, Los Angeles, CA 90001" +279959,AAA Batteries (4-pack),1,2.99,10/05/19 17:29,"239 Johnson St, Los Angeles, CA 90001" +279960,Bose SoundSport Headphones,1,99.99,10/14/19 20:12,"464 5th St, Los Angeles, CA 90001" +279961,Lightning Charging Cable,1,14.95,10/04/19 14:16,"86 Meadow St, Austin, TX 73301" +279962,iPhone,1,700,10/18/19 22:37,"686 Meadow St, San Francisco, CA 94016" +279963,ThinkPad Laptop,1,999.99,10/25/19 16:49,"387 Ridge St, San Francisco, CA 94016" +279964,AA Batteries (4-pack),1,3.84,10/28/19 16:53,"986 Main St, Portland, OR 97035" +,,,,, +279965,USB-C Charging Cable,2,11.95,10/27/19 12:21,"546 Washington St, San Francisco, CA 94016" +279966,ThinkPad Laptop,1,999.99,10/09/19 08:18,"665 Maple St, Los Angeles, CA 90001" +279967,27in 4K Gaming Monitor,1,389.99,10/23/19 00:10,"744 Sunset St, Portland, OR 97035" +279968,Apple Airpods Headphones,1,150,10/04/19 18:31,"988 West St, Seattle, WA 98101" +279969,AA Batteries (4-pack),1,3.84,10/08/19 21:34,"636 2nd St, Portland, OR 97035" +279970,Wired Headphones,1,11.99,10/19/19 13:02,"488 Center St, Dallas, TX 75001" +279971,27in 4K Gaming Monitor,1,389.99,10/02/19 06:54,"10 6th St, Los Angeles, CA 90001" +279972,Wired Headphones,1,11.99,10/08/19 16:05,"703 Sunset St, San Francisco, CA 94016" +279973,Vareebadd Phone,1,400,10/23/19 07:43,"298 13th St, Atlanta, GA 30301" +279974,AAA Batteries (4-pack),1,2.99,10/11/19 15:48,"676 Highland St, Los Angeles, CA 90001" +279975,AA Batteries (4-pack),1,3.84,10/04/19 16:17,"558 Spruce St, Seattle, WA 98101" +279975,AAA Batteries (4-pack),2,2.99,10/04/19 16:17,"558 Spruce St, Seattle, WA 98101" +279976,Lightning Charging Cable,1,14.95,10/14/19 18:50,"982 Highland St, Boston, MA 02215" +279977,Vareebadd Phone,1,400,10/12/19 12:03,"861 Hill St, Los Angeles, CA 90001" +279978,27in FHD Monitor,1,149.99,10/10/19 20:22,"197 North St, Los Angeles, CA 90001" +279979,USB-C Charging Cable,2,11.95,10/31/19 18:12,"524 Maple St, Boston, MA 02215" +279980,USB-C Charging Cable,2,11.95,10/31/19 14:51,"372 11th St, Atlanta, GA 30301" +279981,Wired Headphones,1,11.99,10/05/19 09:39,"203 Walnut St, Los Angeles, CA 90001" +279982,AAA Batteries (4-pack),1,2.99,10/30/19 09:56,"41 Dogwood St, Atlanta, GA 30301" +279982,iPhone,1,700,10/30/19 09:56,"41 Dogwood St, Atlanta, GA 30301" +279983,Apple Airpods Headphones,1,150,10/19/19 19:18,"865 Ridge St, Dallas, TX 75001" +279984,27in FHD Monitor,1,149.99,10/10/19 11:28,"70 7th St, Boston, MA 02215" +279985,Macbook Pro Laptop,1,1700,10/03/19 11:54,"907 Elm St, Los Angeles, CA 90001" +279986,LG Dryer,1,600.0,10/24/19 05:26,"847 4th St, Austin, TX 73301" +279987,AA Batteries (4-pack),1,3.84,10/11/19 18:54,"223 Cherry St, Boston, MA 02215" +279988,Apple Airpods Headphones,1,150,10/31/19 01:13,"283 Maple St, Portland, OR 97035" +279989,Wired Headphones,1,11.99,10/16/19 20:59,"383 Meadow St, Los Angeles, CA 90001" +279990,Flatscreen TV,1,300,10/24/19 17:17,"880 Park St, Boston, MA 02215" +279991,34in Ultrawide Monitor,1,379.99,10/02/19 14:31,"316 12th St, Austin, TX 73301" +279992,AAA Batteries (4-pack),2,2.99,10/22/19 18:50,"45 Cedar St, Atlanta, GA 30301" +279993,AA Batteries (4-pack),1,3.84,10/15/19 22:37,"895 Lake St, San Francisco, CA 94016" +279994,Lightning Charging Cable,1,14.95,10/24/19 12:33,"889 8th St, Los Angeles, CA 90001" +279995,USB-C Charging Cable,1,11.95,10/29/19 17:29,"90 Hill St, San Francisco, CA 94016" +279996,Wired Headphones,1,11.99,10/29/19 00:03,"853 Maple St, San Francisco, CA 94016" +279997,Bose SoundSport Headphones,1,99.99,10/02/19 00:54,"531 Elm St, Boston, MA 02215" +279998,Bose SoundSport Headphones,1,99.99,10/04/19 22:33,"318 River St, New York City, NY 10001" +279999,AA Batteries (4-pack),1,3.84,10/27/19 18:13,"748 Forest St, Austin, TX 73301" +280000,20in Monitor,1,109.99,10/24/19 12:09,"882 West St, San Francisco, CA 94016" +280001,Lightning Charging Cable,2,14.95,10/24/19 20:28,"68 Johnson St, Los Angeles, CA 90001" +280002,AA Batteries (4-pack),1,3.84,10/02/19 16:22,"589 Ridge St, San Francisco, CA 94016" +280003,Apple Airpods Headphones,1,150,10/12/19 22:40,"249 Willow St, Seattle, WA 98101" +280004,27in FHD Monitor,1,149.99,10/21/19 19:42,"160 Church St, Los Angeles, CA 90001" +280005,34in Ultrawide Monitor,1,379.99,10/30/19 11:45,"490 Adams St, New York City, NY 10001" +280006,Lightning Charging Cable,1,14.95,10/29/19 10:48,"163 Elm St, Los Angeles, CA 90001" +280007,Bose SoundSport Headphones,1,99.99,10/01/19 08:42,"705 Cedar St, San Francisco, CA 94016" +280008,AA Batteries (4-pack),1,3.84,10/28/19 06:52,"258 Lake St, Portland, OR 97035" +280009,Wired Headphones,1,11.99,10/03/19 19:25,"384 South St, San Francisco, CA 94016" +280010,AAA Batteries (4-pack),1,2.99,10/04/19 06:11,"814 13th St, Portland, OR 97035" +280011,34in Ultrawide Monitor,1,379.99,10/26/19 22:25,"461 Willow St, San Francisco, CA 94016" +280012,AA Batteries (4-pack),1,3.84,10/13/19 22:09,"89 Meadow St, Atlanta, GA 30301" +280012,AA Batteries (4-pack),1,3.84,10/13/19 22:09,"89 Meadow St, Atlanta, GA 30301" +280013,Wired Headphones,1,11.99,10/25/19 09:15,"883 Ridge St, Los Angeles, CA 90001" +280014,ThinkPad Laptop,1,999.99,10/07/19 23:08,"967 Ridge St, Los Angeles, CA 90001" +280015,27in 4K Gaming Monitor,1,389.99,10/13/19 14:33,"318 8th St, Los Angeles, CA 90001" +280016,Apple Airpods Headphones,1,150,10/03/19 00:25,"544 14th St, New York City, NY 10001" +280017,USB-C Charging Cable,1,11.95,10/17/19 00:59,"852 12th St, Atlanta, GA 30301" +280018,Flatscreen TV,1,300,10/20/19 16:04,"604 4th St, Seattle, WA 98101" +280019,Flatscreen TV,1,300,10/09/19 18:27,"143 11th St, Portland, OR 97035" +280020,AAA Batteries (4-pack),1,2.99,10/06/19 09:32,"435 9th St, Los Angeles, CA 90001" +280021,Lightning Charging Cable,1,14.95,10/24/19 13:31,"172 South St, San Francisco, CA 94016" +280022,Wired Headphones,1,11.99,10/13/19 21:20,"830 Madison St, San Francisco, CA 94016" +280023,Bose SoundSport Headphones,1,99.99,10/14/19 15:45,"469 Church St, New York City, NY 10001" +280024,Lightning Charging Cable,1,14.95,10/13/19 18:58,"51 Highland St, San Francisco, CA 94016" +280025,iPhone,1,700,10/11/19 09:18,"829 Pine St, San Francisco, CA 94016" +280026,27in 4K Gaming Monitor,1,389.99,10/07/19 12:15,"788 Jefferson St, Seattle, WA 98101" +280027,USB-C Charging Cable,1,11.95,10/07/19 09:19,"262 Sunset St, Los Angeles, CA 90001" +280028,27in FHD Monitor,1,149.99,10/23/19 22:24,"267 Forest St, Portland, OR 97035" +280029,AAA Batteries (4-pack),1,2.99,10/11/19 21:31,"624 Johnson St, San Francisco, CA 94016" +280030,USB-C Charging Cable,1,11.95,10/11/19 21:15,"680 Ridge St, San Francisco, CA 94016" +280031,USB-C Charging Cable,1,11.95,10/18/19 10:40,"731 Walnut St, Los Angeles, CA 90001" +280032,AA Batteries (4-pack),1,3.84,10/01/19 17:01,"187 14th St, Austin, TX 73301" +280033,AA Batteries (4-pack),2,3.84,10/14/19 11:20,"906 Meadow St, Portland, OR 97035" +280034,Macbook Pro Laptop,1,1700,10/31/19 14:50,"439 Meadow St, Los Angeles, CA 90001" +280035,USB-C Charging Cable,1,11.95,10/20/19 23:15,"631 Hill St, Los Angeles, CA 90001" +280036,Lightning Charging Cable,1,14.95,10/29/19 17:31,"875 Walnut St, Los Angeles, CA 90001" +280037,iPhone,1,700,10/25/19 19:22,"934 Maple St, San Francisco, CA 94016" +280038,Lightning Charging Cable,1,14.95,10/01/19 18:08,"470 Madison St, San Francisco, CA 94016" +280039,AA Batteries (4-pack),1,3.84,10/07/19 01:11,"739 Washington St, Portland, OR 97035" +280040,27in 4K Gaming Monitor,1,389.99,10/20/19 14:27,"4 Elm St, New York City, NY 10001" +280041,USB-C Charging Cable,1,11.95,10/29/19 20:09,"882 River St, San Francisco, CA 94016" +280042,AAA Batteries (4-pack),1,2.99,10/24/19 10:10,"517 Park St, Seattle, WA 98101" +280043,Bose SoundSport Headphones,1,99.99,10/22/19 10:40,"260 Elm St, San Francisco, CA 94016" +280044,USB-C Charging Cable,1,11.95,10/14/19 20:35,"350 North St, New York City, NY 10001" +280045,20in Monitor,1,109.99,10/13/19 19:35,"126 Jackson St, San Francisco, CA 94016" +280046,Bose SoundSport Headphones,1,99.99,10/10/19 08:05,"770 7th St, San Francisco, CA 94016" +280047,AA Batteries (4-pack),1,3.84,10/10/19 08:01,"939 11th St, Portland, OR 97035" +280048,USB-C Charging Cable,2,11.95,10/19/19 18:48,"235 5th St, Dallas, TX 75001" +280049,Google Phone,1,600,10/30/19 12:16,"825 Elm St, Atlanta, GA 30301" +280050,Flatscreen TV,1,300,10/23/19 21:28,"205 Adams St, San Francisco, CA 94016" +280051,27in FHD Monitor,1,149.99,10/29/19 12:37,"462 8th St, Los Angeles, CA 90001" +280052,Flatscreen TV,1,300,10/04/19 16:52,"321 Johnson St, San Francisco, CA 94016" +280053,Macbook Pro Laptop,1,1700,10/16/19 11:21,"574 Maple St, Boston, MA 02215" +280054,iPhone,1,700,10/10/19 15:59,"563 14th St, Atlanta, GA 30301" +280055,27in 4K Gaming Monitor,1,389.99,10/13/19 05:36,"727 Maple St, San Francisco, CA 94016" +280056,34in Ultrawide Monitor,1,379.99,10/03/19 14:05,"689 Highland St, Austin, TX 73301" +280057,Wired Headphones,1,11.99,10/17/19 10:32,"172 Cherry St, Los Angeles, CA 90001" +280058,AAA Batteries (4-pack),1,2.99,10/14/19 21:24,"135 Lake St, Dallas, TX 75001" +280059,Flatscreen TV,1,300,10/06/19 13:22,"684 Dogwood St, Boston, MA 02215" +280060,AAA Batteries (4-pack),3,2.99,10/11/19 15:20,"675 Sunset St, San Francisco, CA 94016" +280061,USB-C Charging Cable,1,11.95,10/04/19 14:14,"503 Washington St, Atlanta, GA 30301" +280062,Bose SoundSport Headphones,1,99.99,10/05/19 11:17,"676 Forest St, Dallas, TX 75001" +280063,27in 4K Gaming Monitor,1,389.99,10/27/19 08:47,"176 West St, San Francisco, CA 94016" +280064,AA Batteries (4-pack),1,3.84,10/17/19 16:35,"541 Lake St, Seattle, WA 98101" +280065,Wired Headphones,1,11.99,10/07/19 12:51,"797 Adams St, Boston, MA 02215" +280066,AAA Batteries (4-pack),3,2.99,10/17/19 06:49,"898 Adams St, Boston, MA 02215" +280067,AAA Batteries (4-pack),1,2.99,10/31/19 06:29,"935 Johnson St, San Francisco, CA 94016" +280068,AA Batteries (4-pack),2,3.84,10/04/19 13:22,"437 13th St, San Francisco, CA 94016" +280069,Apple Airpods Headphones,1,150,10/20/19 20:29,"760 Willow St, San Francisco, CA 94016" +280070,USB-C Charging Cable,1,11.95,10/23/19 21:36,"961 Highland St, Portland, OR 97035" +280071,AAA Batteries (4-pack),2,2.99,10/06/19 14:26,"112 North St, New York City, NY 10001" +280072,iPhone,1,700,10/16/19 10:42,"554 Cherry St, San Francisco, CA 94016" +280073,AAA Batteries (4-pack),2,2.99,10/08/19 12:10,"473 1st St, San Francisco, CA 94016" +280074,Macbook Pro Laptop,1,1700,10/17/19 19:49,"943 13th St, Seattle, WA 98101" +280075,Bose SoundSport Headphones,1,99.99,10/08/19 09:38,"288 5th St, Boston, MA 02215" +280076,27in 4K Gaming Monitor,1,389.99,10/09/19 20:49,"501 Jefferson St, Austin, TX 73301" +280077,AAA Batteries (4-pack),1,2.99,10/15/19 22:17,"704 West St, Boston, MA 02215" +280078,27in FHD Monitor,1,149.99,10/22/19 09:17,"121 9th St, Dallas, TX 75001" +280079,34in Ultrawide Monitor,1,379.99,10/23/19 10:48,"814 Forest St, San Francisco, CA 94016" +280080,Apple Airpods Headphones,1,150,10/02/19 23:44,"928 Dogwood St, Austin, TX 73301" +280081,AA Batteries (4-pack),1,3.84,10/24/19 20:59,"575 South St, New York City, NY 10001" +280082,AAA Batteries (4-pack),1,2.99,10/28/19 08:18,"677 Pine St, San Francisco, CA 94016" +280083,Google Phone,1,600,10/28/19 22:22,"461 Dogwood St, Atlanta, GA 30301" +280084,AAA Batteries (4-pack),1,2.99,10/27/19 09:51,"516 Dogwood St, Portland, OR 97035" +280085,27in FHD Monitor,1,149.99,10/07/19 14:10,"673 Pine St, Boston, MA 02215" +280086,Flatscreen TV,1,300,10/12/19 14:30,"763 Elm St, Seattle, WA 98101" +280087,AA Batteries (4-pack),1,3.84,10/18/19 19:16,"647 Park St, Dallas, TX 75001" +280088,27in 4K Gaming Monitor,1,389.99,10/18/19 20:58,"781 Cherry St, San Francisco, CA 94016" +280089,USB-C Charging Cable,1,11.95,10/21/19 16:48,"118 Washington St, Los Angeles, CA 90001" +280090,Bose SoundSport Headphones,1,99.99,10/31/19 22:46,"74 Elm St, Boston, MA 02215" +280091,AAA Batteries (4-pack),1,2.99,10/29/19 20:39,"372 River St, Los Angeles, CA 90001" +280092,27in FHD Monitor,1,149.99,10/23/19 17:05,"408 Jackson St, Seattle, WA 98101" +280093,Lightning Charging Cable,1,14.95,10/25/19 21:25,"151 Ridge St, Boston, MA 02215" +280094,Apple Airpods Headphones,1,150,10/23/19 19:03,"797 7th St, Austin, TX 73301" +280095,Google Phone,1,600,10/07/19 20:06,"309 10th St, Boston, MA 02215" +280095,USB-C Charging Cable,1,11.95,10/07/19 20:06,"309 10th St, Boston, MA 02215" +280096,USB-C Charging Cable,1,11.95,10/09/19 21:33,"771 7th St, Atlanta, GA 30301" +280097,USB-C Charging Cable,3,11.95,10/23/19 10:18,"362 Walnut St, San Francisco, CA 94016" +280098,Bose SoundSport Headphones,1,99.99,10/28/19 11:36,"943 10th St, San Francisco, CA 94016" +280099,34in Ultrawide Monitor,1,379.99,10/06/19 10:29,"593 6th St, New York City, NY 10001" +280100,Wired Headphones,1,11.99,10/31/19 17:21,"682 7th St, Atlanta, GA 30301" +280101,AA Batteries (4-pack),3,3.84,10/29/19 22:36,"684 Hill St, Seattle, WA 98101" +280102,Bose SoundSport Headphones,1,99.99,10/06/19 22:30,"102 South St, Boston, MA 02215" +280103,Macbook Pro Laptop,1,1700,10/13/19 16:44,"587 Adams St, Seattle, WA 98101" +280104,Bose SoundSport Headphones,1,99.99,10/19/19 10:11,"822 Chestnut St, Portland, OR 97035" +280105,27in FHD Monitor,1,149.99,10/25/19 11:05,"988 Ridge St, Dallas, TX 75001" +280106,AAA Batteries (4-pack),1,2.99,10/12/19 20:48,"859 14th St, Seattle, WA 98101" +280107,Bose SoundSport Headphones,1,99.99,10/27/19 20:54,"992 Center St, Atlanta, GA 30301" +280108,USB-C Charging Cable,1,11.95,10/13/19 17:52,"366 Park St, New York City, NY 10001" +280109,AA Batteries (4-pack),1,3.84,10/21/19 05:49,"658 Lincoln St, Boston, MA 02215" +280110,AAA Batteries (4-pack),1,2.99,10/03/19 08:40,"788 Dogwood St, San Francisco, CA 94016" +280111,Flatscreen TV,1,300,10/11/19 19:43,"276 Center St, Seattle, WA 98101" +280112,Lightning Charging Cable,1,14.95,10/13/19 12:47,"281 1st St, New York City, NY 10001" +280113,Wired Headphones,1,11.99,10/15/19 09:23,"359 Wilson St, Los Angeles, CA 90001" +280114,Vareebadd Phone,1,400,10/26/19 09:15,"878 2nd St, San Francisco, CA 94016" +280114,Bose SoundSport Headphones,1,99.99,10/26/19 09:15,"878 2nd St, San Francisco, CA 94016" +280115,USB-C Charging Cable,1,11.95,10/12/19 10:00,"813 Park St, Boston, MA 02215" +280116,Lightning Charging Cable,1,14.95,10/19/19 21:20,"434 Willow St, Los Angeles, CA 90001" +280117,AAA Batteries (4-pack),1,2.99,10/12/19 19:41,"451 Dogwood St, Boston, MA 02215" +280118,AA Batteries (4-pack),1,3.84,10/14/19 23:09,"4 Walnut St, Boston, MA 02215" +280119,Lightning Charging Cable,1,14.95,10/12/19 20:27,"803 11th St, Atlanta, GA 30301" +280120,Wired Headphones,1,11.99,10/18/19 20:48,"493 Pine St, New York City, NY 10001" +280121,AAA Batteries (4-pack),1,2.99,10/31/19 07:45,"594 Maple St, New York City, NY 10001" +280122,Bose SoundSport Headphones,1,99.99,10/31/19 10:08,"175 Cedar St, Dallas, TX 75001" +280123,27in FHD Monitor,1,149.99,10/10/19 12:37,"801 Lake St, Austin, TX 73301" +280124,USB-C Charging Cable,1,11.95,10/01/19 09:17,"566 9th St, Seattle, WA 98101" +280125,AA Batteries (4-pack),1,3.84,10/17/19 21:46,"95 12th St, New York City, NY 10001" +280126,27in 4K Gaming Monitor,1,389.99,10/25/19 22:11,"492 Meadow St, San Francisco, CA 94016" +280127,USB-C Charging Cable,1,11.95,10/15/19 00:08,"904 4th St, Portland, OR 97035" +280128,34in Ultrawide Monitor,1,379.99,10/15/19 19:23,"835 Church St, San Francisco, CA 94016" +280129,Flatscreen TV,1,300,10/03/19 19:35,"978 7th St, Atlanta, GA 30301" +280130,Lightning Charging Cable,1,14.95,10/07/19 23:11,"668 Jefferson St, San Francisco, CA 94016" +280131,AAA Batteries (4-pack),2,2.99,10/07/19 14:14,"500 Pine St, Los Angeles, CA 90001" +280132,AA Batteries (4-pack),1,3.84,10/01/19 10:48,"562 Madison St, Los Angeles, CA 90001" +280132,AAA Batteries (4-pack),1,2.99,10/01/19 10:48,"562 Madison St, Los Angeles, CA 90001" +280133,Bose SoundSport Headphones,1,99.99,10/14/19 06:38,"816 Ridge St, New York City, NY 10001" +280134,ThinkPad Laptop,1,999.99,10/11/19 21:04,"559 Pine St, Dallas, TX 75001" +280135,Bose SoundSport Headphones,1,99.99,10/24/19 19:34,"318 Ridge St, San Francisco, CA 94016" +280136,AA Batteries (4-pack),3,3.84,10/31/19 13:20,"126 Ridge St, Boston, MA 02215" +280137,Bose SoundSport Headphones,1,99.99,10/31/19 10:46,"110 13th St, Dallas, TX 75001" +280138,Bose SoundSport Headphones,1,99.99,10/29/19 17:52,"438 2nd St, Los Angeles, CA 90001" +280139,Lightning Charging Cable,1,14.95,10/31/19 13:39,"192 Park St, New York City, NY 10001" +280140,Flatscreen TV,1,300,10/17/19 14:40,"975 West St, Los Angeles, CA 90001" +280141,Apple Airpods Headphones,1,150,10/08/19 08:45,"746 Spruce St, Atlanta, GA 30301" +280142,Apple Airpods Headphones,1,150,10/06/19 21:05,"804 7th St, Los Angeles, CA 90001" +280143,AAA Batteries (4-pack),1,2.99,10/17/19 10:47,"153 Ridge St, New York City, NY 10001" +280144,AAA Batteries (4-pack),1,2.99,10/24/19 23:30,"19 Highland St, Atlanta, GA 30301" +280145,AAA Batteries (4-pack),1,2.99,10/02/19 14:53,"188 9th St, Portland, OR 97035" +280146,27in 4K Gaming Monitor,1,389.99,10/28/19 09:14,"938 Lake St, New York City, NY 10001" +280147,Macbook Pro Laptop,1,1700,10/05/19 18:42,"176 Sunset St, Boston, MA 02215" +280148,AA Batteries (4-pack),2,3.84,10/26/19 11:09,"784 Hickory St, Austin, TX 73301" +280149,AA Batteries (4-pack),1,3.84,10/04/19 22:14,"58 Ridge St, New York City, NY 10001" +280150,Lightning Charging Cable,1,14.95,10/09/19 11:09,"986 Meadow St, Seattle, WA 98101" +280151,AAA Batteries (4-pack),1,2.99,10/20/19 17:24,"923 8th St, Seattle, WA 98101" +280152,Bose SoundSport Headphones,1,99.99,10/26/19 22:06,"705 River St, New York City, NY 10001" +280153,Wired Headphones,1,11.99,10/13/19 07:20,"489 Pine St, Atlanta, GA 30301" +280154,Lightning Charging Cable,1,14.95,10/08/19 23:27,"606 Park St, Los Angeles, CA 90001" +280155,Apple Airpods Headphones,1,150,10/24/19 05:12,"880 8th St, Los Angeles, CA 90001" +280156,Wired Headphones,1,11.99,10/01/19 08:31,"983 Wilson St, San Francisco, CA 94016" +280157,Apple Airpods Headphones,1,150,10/15/19 20:14,"544 8th St, Atlanta, GA 30301" +280158,USB-C Charging Cable,2,11.95,10/04/19 10:32,"860 Lakeview St, Boston, MA 02215" +280159,Lightning Charging Cable,1,14.95,10/08/19 22:55,"4 Walnut St, Los Angeles, CA 90001" +280160,Apple Airpods Headphones,1,150,10/16/19 21:10,"18 Hickory St, San Francisco, CA 94016" +280161,Lightning Charging Cable,1,14.95,10/07/19 18:21,"955 Pine St, San Francisco, CA 94016" +280162,Lightning Charging Cable,1,14.95,10/28/19 13:51,"613 Jefferson St, San Francisco, CA 94016" +280163,Apple Airpods Headphones,1,150,10/06/19 18:10,"556 Chestnut St, Atlanta, GA 30301" +280164,Bose SoundSport Headphones,1,99.99,10/05/19 13:23,"310 7th St, Austin, TX 73301" +280165,Bose SoundSport Headphones,1,99.99,10/01/19 20:29,"991 Main St, Atlanta, GA 30301" +280166,Lightning Charging Cable,1,14.95,10/20/19 18:36,"377 Cedar St, Seattle, WA 98101" +280167,Lightning Charging Cable,1,14.95,10/26/19 16:28,"887 Pine St, Dallas, TX 75001" +280168,27in FHD Monitor,1,149.99,10/08/19 17:20,"422 13th St, Dallas, TX 75001" +280169,AAA Batteries (4-pack),1,2.99,10/08/19 21:44,"673 Willow St, Dallas, TX 75001" +280170,AAA Batteries (4-pack),2,2.99,10/12/19 18:45,"108 7th St, Atlanta, GA 30301" +280171,Apple Airpods Headphones,1,150,10/18/19 17:31,"136 Hickory St, San Francisco, CA 94016" +280172,USB-C Charging Cable,1,11.95,10/05/19 10:11,"29 West St, Boston, MA 02215" +280173,Google Phone,1,600,10/25/19 22:21,"221 4th St, New York City, NY 10001" +280174,Flatscreen TV,1,300,10/12/19 14:16,"871 Forest St, Los Angeles, CA 90001" +280175,AA Batteries (4-pack),1,3.84,10/31/19 14:03,"522 South St, San Francisco, CA 94016" +280176,Lightning Charging Cable,1,14.95,10/18/19 13:32,"985 Ridge St, Los Angeles, CA 90001" +280177,AAA Batteries (4-pack),1,2.99,10/27/19 20:06,"160 Madison St, San Francisco, CA 94016" +280178,27in 4K Gaming Monitor,1,389.99,10/07/19 21:04,"103 Madison St, Seattle, WA 98101" +280179,Apple Airpods Headphones,1,150,10/24/19 23:53,"21 11th St, Austin, TX 73301" +280180,Macbook Pro Laptop,1,1700,10/15/19 19:30,"412 7th St, Dallas, TX 75001" +280181,AAA Batteries (4-pack),1,2.99,10/15/19 10:41,"278 Adams St, Boston, MA 02215" +280182,Lightning Charging Cable,1,14.95,10/08/19 00:54,"244 Spruce St, Austin, TX 73301" +280183,20in Monitor,1,109.99,10/04/19 12:56,"30 Church St, Los Angeles, CA 90001" +280184,Wired Headphones,1,11.99,10/18/19 12:37,"235 Washington St, Los Angeles, CA 90001" +280185,Apple Airpods Headphones,1,150,10/24/19 18:19,"697 7th St, Boston, MA 02215" +280186,USB-C Charging Cable,1,11.95,10/20/19 21:49,"220 14th St, San Francisco, CA 94016" +280187,iPhone,1,700,10/18/19 20:35,"67 Lincoln St, San Francisco, CA 94016" +280187,Wired Headphones,1,11.99,10/18/19 20:35,"67 Lincoln St, San Francisco, CA 94016" +280188,Bose SoundSport Headphones,1,99.99,10/06/19 21:16,"352 Jefferson St, Seattle, WA 98101" +280189,AAA Batteries (4-pack),1,2.99,10/08/19 18:02,"232 4th St, Boston, MA 02215" +280190,Lightning Charging Cable,1,14.95,10/22/19 22:47,"99 Hill St, Boston, MA 02215" +280191,AA Batteries (4-pack),1,3.84,10/12/19 11:52,"644 13th St, San Francisco, CA 94016" +280192,AAA Batteries (4-pack),1,2.99,10/23/19 02:10,"131 6th St, San Francisco, CA 94016" +280193,AA Batteries (4-pack),1,3.84,10/15/19 17:30,"564 9th St, Austin, TX 73301" +280194,27in 4K Gaming Monitor,1,389.99,10/08/19 13:26,"961 13th St, Los Angeles, CA 90001" +280195,Macbook Pro Laptop,1,1700,10/27/19 12:56,"819 Ridge St, New York City, NY 10001" +280196,Apple Airpods Headphones,1,150,10/18/19 19:35,"18 8th St, San Francisco, CA 94016" +280197,iPhone,1,700,10/21/19 15:58,"601 River St, Portland, OR 97035" +280197,Lightning Charging Cable,1,14.95,10/21/19 15:58,"601 River St, Portland, OR 97035" +280197,Apple Airpods Headphones,1,150,10/21/19 15:58,"601 River St, Portland, OR 97035" +280197,Wired Headphones,1,11.99,10/21/19 15:58,"601 River St, Portland, OR 97035" +280198,Lightning Charging Cable,1,14.95,10/09/19 12:46,"665 Madison St, New York City, NY 10001" +280199,Bose SoundSport Headphones,1,99.99,10/18/19 17:50,"582 8th St, Portland, OR 97035" +280200,ThinkPad Laptop,1,999.99,10/15/19 12:11,"398 Sunset St, Portland, OR 97035" +280201,Macbook Pro Laptop,1,1700,10/22/19 20:06,"810 Pine St, Boston, MA 02215" +280202,iPhone,1,700,10/17/19 19:58,"896 Jackson St, Portland, ME 04101" +280203,Bose SoundSport Headphones,1,99.99,10/03/19 14:40,"973 Dogwood St, New York City, NY 10001" +280204,27in 4K Gaming Monitor,1,389.99,10/22/19 16:40,"494 9th St, San Francisco, CA 94016" +280205,34in Ultrawide Monitor,1,379.99,10/21/19 15:22,"155 Cedar St, Los Angeles, CA 90001" +280206,Lightning Charging Cable,1,14.95,10/20/19 12:49,"133 10th St, Boston, MA 02215" +280207,27in FHD Monitor,1,149.99,10/04/19 13:43,"602 1st St, Seattle, WA 98101" +280208,USB-C Charging Cable,1,11.95,10/13/19 16:07,"787 10th St, Boston, MA 02215" +280209,34in Ultrawide Monitor,1,379.99,10/22/19 22:27,"247 7th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +280210,Apple Airpods Headphones,1,150,10/31/19 09:50,"50 Washington St, Dallas, TX 75001" +280211,34in Ultrawide Monitor,1,379.99,10/10/19 11:09,"699 Sunset St, Los Angeles, CA 90001" +280212,27in 4K Gaming Monitor,1,389.99,10/05/19 11:26,"538 12th St, Boston, MA 02215" +280213,USB-C Charging Cable,1,11.95,10/05/19 10:24,"481 14th St, San Francisco, CA 94016" +280214,USB-C Charging Cable,1,11.95,10/06/19 17:44,"301 Church St, Dallas, TX 75001" +280215,AAA Batteries (4-pack),1,2.99,10/28/19 10:22,"21 Ridge St, San Francisco, CA 94016" +280216,34in Ultrawide Monitor,1,379.99,10/10/19 19:06,"953 Hickory St, New York City, NY 10001" +280217,ThinkPad Laptop,1,999.99,10/12/19 13:10,"419 South St, Los Angeles, CA 90001" +280218,Wired Headphones,1,11.99,10/21/19 14:04,"378 Lakeview St, New York City, NY 10001" +280219,Wired Headphones,1,11.99,10/27/19 16:16,"902 Park St, New York City, NY 10001" +280220,Wired Headphones,1,11.99,10/08/19 10:33,"333 12th St, Boston, MA 02215" +280221,Bose SoundSport Headphones,1,99.99,10/19/19 18:46,"304 7th St, Boston, MA 02215" +280222,iPhone,1,700,10/10/19 20:34,"740 5th St, Dallas, TX 75001" +280223,Bose SoundSport Headphones,1,99.99,10/03/19 00:48,"441 Adams St, Dallas, TX 75001" +280224,Wired Headphones,1,11.99,10/10/19 09:06,"115 Main St, Boston, MA 02215" +280225,AAA Batteries (4-pack),1,2.99,10/07/19 00:47,"178 Church St, San Francisco, CA 94016" +280226,USB-C Charging Cable,1,11.95,10/26/19 18:58,"973 12th St, Seattle, WA 98101" +280227,Wired Headphones,1,11.99,10/04/19 21:08,"652 River St, Los Angeles, CA 90001" +,,,,, +280228,iPhone,1,700,10/29/19 18:47,"393 13th St, Seattle, WA 98101" +280229,Bose SoundSport Headphones,1,99.99,10/12/19 09:44,"8 Adams St, Boston, MA 02215" +280230,AAA Batteries (4-pack),1,2.99,10/24/19 17:28,"625 8th St, Atlanta, GA 30301" +280231,Google Phone,1,600,10/16/19 19:14,"328 Hickory St, San Francisco, CA 94016" +280232,27in 4K Gaming Monitor,1,389.99,10/06/19 10:48,"412 Hill St, Portland, OR 97035" +280233,Wired Headphones,1,11.99,10/18/19 00:50,"971 Jefferson St, Austin, TX 73301" +280234,Macbook Pro Laptop,1,1700,10/07/19 07:24,"437 Ridge St, New York City, NY 10001" +280235,34in Ultrawide Monitor,1,379.99,10/04/19 10:43,"85 11th St, Atlanta, GA 30301" +280236,Lightning Charging Cable,1,14.95,10/14/19 10:08,"160 4th St, Boston, MA 02215" +280237,AAA Batteries (4-pack),2,2.99,10/09/19 17:10,"140 Center St, Boston, MA 02215" +280238,AA Batteries (4-pack),2,3.84,10/31/19 16:13,"55 Hill St, Los Angeles, CA 90001" +280239,Lightning Charging Cable,1,14.95,10/11/19 17:58,"232 9th St, San Francisco, CA 94016" +280240,Lightning Charging Cable,1,14.95,10/06/19 13:20,"562 Walnut St, Boston, MA 02215" +280241,Apple Airpods Headphones,1,150,10/17/19 13:14,"671 1st St, New York City, NY 10001" +280242,USB-C Charging Cable,1,11.95,10/09/19 19:19,"675 Forest St, San Francisco, CA 94016" +280243,Bose SoundSport Headphones,1,99.99,10/31/19 08:58,"785 Walnut St, Boston, MA 02215" +280244,Wired Headphones,1,11.99,10/14/19 09:15,"923 Johnson St, Portland, OR 97035" +280245,Lightning Charging Cable,1,14.95,10/23/19 09:30,"300 Maple St, Atlanta, GA 30301" +280246,34in Ultrawide Monitor,1,379.99,10/08/19 13:54,"49 8th St, San Francisco, CA 94016" +280247,Flatscreen TV,1,300,10/05/19 09:51,"430 Jefferson St, Los Angeles, CA 90001" +280248,USB-C Charging Cable,1,11.95,10/07/19 11:17,"150 Jefferson St, San Francisco, CA 94016" +280249,20in Monitor,1,109.99,10/14/19 21:24,"868 Hill St, Seattle, WA 98101" +280250,USB-C Charging Cable,1,11.95,10/02/19 16:48,"963 Walnut St, San Francisco, CA 94016" +280251,AA Batteries (4-pack),1,3.84,10/10/19 16:57,"615 13th St, Los Angeles, CA 90001" +280252,34in Ultrawide Monitor,1,379.99,10/12/19 21:35,"21 11th St, New York City, NY 10001" +280253,Lightning Charging Cable,1,14.95,10/09/19 20:09,"392 Meadow St, Boston, MA 02215" +280254,USB-C Charging Cable,1,11.95,10/12/19 21:21,"970 Lake St, Los Angeles, CA 90001" +280255,AA Batteries (4-pack),4,3.84,10/07/19 05:05,"282 12th St, Portland, OR 97035" +280256,USB-C Charging Cable,1,11.95,10/13/19 20:27,"916 Center St, New York City, NY 10001" +280257,AAA Batteries (4-pack),1,2.99,10/06/19 14:12,"30 Jefferson St, Seattle, WA 98101" +280258,27in 4K Gaming Monitor,1,389.99,10/08/19 11:11,"300 West St, San Francisco, CA 94016" +280259,27in 4K Gaming Monitor,1,389.99,10/26/19 03:38,"560 Cherry St, Los Angeles, CA 90001" +280260,AAA Batteries (4-pack),2,2.99,10/14/19 00:32,"977 13th St, San Francisco, CA 94016" +280261,AA Batteries (4-pack),1,3.84,10/02/19 19:07,"368 12th St, Boston, MA 02215" +280262,Bose SoundSport Headphones,1,99.99,10/06/19 14:10,"872 7th St, San Francisco, CA 94016" +280263,Bose SoundSport Headphones,1,99.99,10/15/19 12:42,"26 8th St, Portland, OR 97035" +280264,34in Ultrawide Monitor,1,379.99,10/04/19 20:48,"23 13th St, New York City, NY 10001" +280265,iPhone,1,700,10/06/19 10:40,"665 Walnut St, Boston, MA 02215" +280266,Lightning Charging Cable,1,14.95,10/05/19 10:13,"831 7th St, Boston, MA 02215" +280267,Wired Headphones,1,11.99,10/12/19 20:01,"383 North St, Los Angeles, CA 90001" +280268,AAA Batteries (4-pack),1,2.99,10/21/19 13:51,"362 Chestnut St, San Francisco, CA 94016" +280269,27in 4K Gaming Monitor,1,389.99,10/13/19 20:13,"553 Cedar St, Portland, OR 97035" +280270,USB-C Charging Cable,1,11.95,10/31/19 15:33,"815 Park St, Los Angeles, CA 90001" +280271,LG Dryer,1,600.0,10/30/19 23:14,"876 14th St, Boston, MA 02215" +280272,Wired Headphones,1,11.99,10/30/19 23:26,"707 Lakeview St, Portland, OR 97035" +280273,Flatscreen TV,1,300,10/20/19 10:28,"375 Pine St, Dallas, TX 75001" +280274,27in 4K Gaming Monitor,1,389.99,10/30/19 14:39,"854 Wilson St, Dallas, TX 75001" +280275,USB-C Charging Cable,1,11.95,10/16/19 20:31,"288 14th St, Boston, MA 02215" +280276,iPhone,1,700,10/08/19 00:38,"589 Wilson St, New York City, NY 10001" +280277,AAA Batteries (4-pack),1,2.99,10/25/19 13:38,"154 14th St, Atlanta, GA 30301" +280278,Flatscreen TV,1,300,10/07/19 14:40,"537 13th St, Portland, OR 97035" +280279,Apple Airpods Headphones,1,150,10/27/19 11:05,"556 Johnson St, New York City, NY 10001" +280280,20in Monitor,1,109.99,10/21/19 12:46,"789 Washington St, Seattle, WA 98101" +280281,AAA Batteries (4-pack),1,2.99,10/06/19 16:44,"741 Church St, San Francisco, CA 94016" +280282,Bose SoundSport Headphones,1,99.99,10/02/19 19:50,"23 Ridge St, Dallas, TX 75001" +280283,Lightning Charging Cable,1,14.95,10/20/19 13:57,"545 12th St, Portland, OR 97035" +280284,USB-C Charging Cable,1,11.95,10/21/19 20:58,"616 South St, Los Angeles, CA 90001" +280285,Vareebadd Phone,1,400,10/18/19 16:48,"741 5th St, Los Angeles, CA 90001" +280286,27in FHD Monitor,1,149.99,10/04/19 22:15,"668 10th St, Boston, MA 02215" +280287,LG Washing Machine,1,600.0,10/17/19 21:49,"25 North St, Atlanta, GA 30301" +280288,AA Batteries (4-pack),1,3.84,10/06/19 18:35,"14 South St, Dallas, TX 75001" +280289,AA Batteries (4-pack),1,3.84,10/25/19 21:58,"475 South St, New York City, NY 10001" +280290,iPhone,1,700,10/30/19 15:21,"294 Chestnut St, Los Angeles, CA 90001" +280290,Lightning Charging Cable,1,14.95,10/30/19 15:21,"294 Chestnut St, Los Angeles, CA 90001" +280290,Wired Headphones,1,11.99,10/30/19 15:21,"294 Chestnut St, Los Angeles, CA 90001" +280291,Google Phone,1,600,10/17/19 13:23,"536 Lake St, Atlanta, GA 30301" +280292,USB-C Charging Cable,1,11.95,10/12/19 10:02,"6 Lincoln St, Portland, OR 97035" +280293,Wired Headphones,3,11.99,10/14/19 19:52,"898 Willow St, San Francisco, CA 94016" +280294,Macbook Pro Laptop,1,1700,10/06/19 11:53,"599 11th St, Atlanta, GA 30301" +280295,Bose SoundSport Headphones,1,99.99,10/21/19 09:31,"645 West St, San Francisco, CA 94016" +280296,ThinkPad Laptop,1,999.99,10/19/19 14:21,"387 Meadow St, Boston, MA 02215" +280297,USB-C Charging Cable,1,11.95,10/06/19 06:34,"342 Washington St, Boston, MA 02215" +280298,USB-C Charging Cable,1,11.95,10/16/19 08:31,"339 11th St, Portland, OR 97035" +280299,20in Monitor,1,109.99,10/19/19 18:59,"514 Meadow St, New York City, NY 10001" +280300,Wired Headphones,1,11.99,10/24/19 11:03,"72 4th St, New York City, NY 10001" +280301,Google Phone,1,600,10/28/19 09:50,"50 Spruce St, Seattle, WA 98101" +280302,AA Batteries (4-pack),1,3.84,10/11/19 15:55,"718 Main St, Los Angeles, CA 90001" +280303,Bose SoundSport Headphones,1,99.99,10/10/19 09:25,"680 Lincoln St, San Francisco, CA 94016" +280304,USB-C Charging Cable,1,11.95,10/18/19 10:14,"409 Elm St, San Francisco, CA 94016" +280305,27in 4K Gaming Monitor,1,389.99,10/29/19 20:17,"668 Main St, Atlanta, GA 30301" +280306,USB-C Charging Cable,1,11.95,10/02/19 12:11,"994 North St, Seattle, WA 98101" +280307,Wired Headphones,1,11.99,10/05/19 23:12,"423 Wilson St, Seattle, WA 98101" +280308,20in Monitor,1,109.99,10/19/19 14:04,"533 Dogwood St, San Francisco, CA 94016" +280309,AAA Batteries (4-pack),1,2.99,10/09/19 19:25,"330 Ridge St, Los Angeles, CA 90001" +280310,Wired Headphones,1,11.99,10/04/19 21:06,"48 2nd St, New York City, NY 10001" +280311,Apple Airpods Headphones,1,150,10/08/19 21:00,"938 Hickory St, Seattle, WA 98101" +280312,AAA Batteries (4-pack),2,2.99,10/14/19 20:12,"970 Meadow St, Dallas, TX 75001" +280313,Wired Headphones,1,11.99,10/12/19 06:51,"614 Jackson St, Atlanta, GA 30301" +280314,AAA Batteries (4-pack),1,2.99,10/04/19 21:07,"929 Cedar St, Los Angeles, CA 90001" +280315,27in FHD Monitor,1,149.99,10/18/19 12:11,"539 Cedar St, Portland, OR 97035" +280316,AAA Batteries (4-pack),1,2.99,10/02/19 14:01,"908 Meadow St, Boston, MA 02215" +280317,34in Ultrawide Monitor,1,379.99,10/14/19 16:24,"298 Forest St, New York City, NY 10001" +280318,Bose SoundSport Headphones,1,99.99,10/01/19 18:24,"476 5th St, Los Angeles, CA 90001" +280319,Wired Headphones,1,11.99,10/23/19 12:27,"502 Adams St, New York City, NY 10001" +280320,AA Batteries (4-pack),1,3.84,10/18/19 19:47,"200 River St, Dallas, TX 75001" +280321,USB-C Charging Cable,1,11.95,10/24/19 04:12,"401 Spruce St, San Francisco, CA 94016" +280322,AA Batteries (4-pack),1,3.84,10/16/19 18:32,"837 Walnut St, San Francisco, CA 94016" +280323,AA Batteries (4-pack),2,3.84,10/03/19 18:30,"754 Jackson St, Seattle, WA 98101" +280324,AAA Batteries (4-pack),2,2.99,10/18/19 20:31,"418 Sunset St, New York City, NY 10001" +280325,34in Ultrawide Monitor,1,379.99,10/18/19 15:50,"631 Forest St, San Francisco, CA 94016" +280326,AA Batteries (4-pack),2,3.84,10/17/19 00:19,"93 Maple St, San Francisco, CA 94016" +280327,USB-C Charging Cable,1,11.95,10/25/19 19:27,"893 Cedar St, San Francisco, CA 94016" +280328,Apple Airpods Headphones,1,150,10/16/19 13:40,"99 7th St, Seattle, WA 98101" +280329,Flatscreen TV,1,300,10/25/19 04:36,"686 North St, Boston, MA 02215" +280329,AAA Batteries (4-pack),1,2.99,10/25/19 04:36,"686 North St, Boston, MA 02215" +280330,Wired Headphones,1,11.99,10/15/19 21:16,"54 Highland St, New York City, NY 10001" +280331,USB-C Charging Cable,2,11.95,10/04/19 15:27,"255 Adams St, Los Angeles, CA 90001" +280332,Wired Headphones,1,11.99,10/17/19 17:31,"718 Center St, Los Angeles, CA 90001" +280333,AAA Batteries (4-pack),1,2.99,10/20/19 19:47,"978 Spruce St, New York City, NY 10001" +280334,Lightning Charging Cable,1,14.95,10/07/19 10:14,"902 Lakeview St, San Francisco, CA 94016" +280335,USB-C Charging Cable,1,11.95,10/27/19 15:50,"206 Willow St, San Francisco, CA 94016" +280336,AAA Batteries (4-pack),1,2.99,10/06/19 09:03,"625 Sunset St, Los Angeles, CA 90001" +280337,USB-C Charging Cable,1,11.95,10/03/19 19:08,"965 Adams St, San Francisco, CA 94016" +280338,AA Batteries (4-pack),1,3.84,10/14/19 14:03,"519 Maple St, New York City, NY 10001" +280338,AA Batteries (4-pack),2,3.84,10/14/19 14:03,"519 Maple St, New York City, NY 10001" +280339,Wired Headphones,1,11.99,10/28/19 17:19,"471 North St, San Francisco, CA 94016" +280340,Apple Airpods Headphones,1,150,10/18/19 16:38,"252 Dogwood St, Boston, MA 02215" +280341,AA Batteries (4-pack),1,3.84,10/12/19 12:06,"780 Jackson St, Portland, OR 97035" +280342,USB-C Charging Cable,1,11.95,10/20/19 12:00,"537 Madison St, Austin, TX 73301" +280343,USB-C Charging Cable,1,11.95,10/23/19 18:41,"753 Lake St, Atlanta, GA 30301" +280344,Bose SoundSport Headphones,1,99.99,10/06/19 17:23,"589 Chestnut St, Portland, OR 97035" +280345,LG Dryer,1,600.0,10/12/19 18:47,"215 South St, Portland, OR 97035" +280346,Wired Headphones,1,11.99,10/13/19 13:16,"591 North St, San Francisco, CA 94016" +280347,Google Phone,1,600,10/10/19 13:55,"232 Main St, Austin, TX 73301" +280348,Bose SoundSport Headphones,1,99.99,10/27/19 18:44,"557 1st St, Los Angeles, CA 90001" +280349,Macbook Pro Laptop,1,1700,10/09/19 10:20,"840 12th St, Seattle, WA 98101" +280350,27in 4K Gaming Monitor,1,389.99,10/30/19 12:28,"599 Walnut St, Dallas, TX 75001" +280351,Lightning Charging Cable,1,14.95,10/14/19 21:01,"577 Spruce St, Seattle, WA 98101" +280352,AAA Batteries (4-pack),1,2.99,10/17/19 09:47,"3 Walnut St, Austin, TX 73301" +280353,Macbook Pro Laptop,1,1700,10/28/19 04:30,"544 2nd St, Los Angeles, CA 90001" +280354,Google Phone,1,600,10/17/19 18:14,"290 Jefferson St, New York City, NY 10001" +280355,Google Phone,1,600,10/25/19 14:15,"708 Adams St, New York City, NY 10001" +280355,USB-C Charging Cable,1,11.95,10/25/19 14:15,"708 Adams St, New York City, NY 10001" +280356,USB-C Charging Cable,1,11.95,10/07/19 12:24,"505 River St, Boston, MA 02215" +280357,Apple Airpods Headphones,1,150,10/28/19 17:25,"483 Washington St, Los Angeles, CA 90001" +,,,,, +280358,34in Ultrawide Monitor,1,379.99,10/17/19 11:46,"659 4th St, Los Angeles, CA 90001" +280359,27in 4K Gaming Monitor,1,389.99,10/27/19 15:27,"213 4th St, San Francisco, CA 94016" +280360,Apple Airpods Headphones,1,150,10/20/19 11:11,"648 9th St, New York City, NY 10001" +280361,Lightning Charging Cable,1,14.95,10/25/19 19:10,"479 Wilson St, Dallas, TX 75001" +280362,AA Batteries (4-pack),1,3.84,10/05/19 13:18,"762 Cherry St, Seattle, WA 98101" +280363,Apple Airpods Headphones,1,150,10/15/19 13:31,"320 14th St, Boston, MA 02215" +280364,Lightning Charging Cable,1,14.95,10/26/19 02:58,"172 11th St, San Francisco, CA 94016" +280365,Wired Headphones,1,11.99,10/11/19 08:35,"919 Lake St, San Francisco, CA 94016" +280365,AAA Batteries (4-pack),3,2.99,10/11/19 08:35,"919 Lake St, San Francisco, CA 94016" +280366,AAA Batteries (4-pack),1,2.99,10/04/19 21:06,"209 Meadow St, San Francisco, CA 94016" +280367,ThinkPad Laptop,1,999.99,10/28/19 20:11,"161 11th St, Austin, TX 73301" +280368,Bose SoundSport Headphones,1,99.99,10/11/19 05:42,"270 Highland St, New York City, NY 10001" +280369,34in Ultrawide Monitor,1,379.99,10/16/19 16:40,"177 Wilson St, San Francisco, CA 94016" +280370,iPhone,1,700,10/18/19 12:55,"920 South St, Atlanta, GA 30301" +280370,Lightning Charging Cable,1,14.95,10/18/19 12:55,"920 South St, Atlanta, GA 30301" +280371,Lightning Charging Cable,1,14.95,10/21/19 12:38,"451 Highland St, San Francisco, CA 94016" +280372,USB-C Charging Cable,1,11.95,10/21/19 16:27,"644 Lake St, Los Angeles, CA 90001" +280373,USB-C Charging Cable,1,11.95,10/09/19 16:35,"867 Ridge St, Los Angeles, CA 90001" +280374,Wired Headphones,1,11.99,10/01/19 18:46,"146 Park St, San Francisco, CA 94016" +280375,iPhone,1,700,10/05/19 09:46,"377 Church St, Atlanta, GA 30301" +280375,Lightning Charging Cable,1,14.95,10/05/19 09:46,"377 Church St, Atlanta, GA 30301" +280376,USB-C Charging Cable,1,11.95,10/23/19 06:39,"936 Main St, New York City, NY 10001" +280377,Flatscreen TV,1,300,10/22/19 10:33,"691 Spruce St, Los Angeles, CA 90001" +280378,AAA Batteries (4-pack),2,2.99,10/03/19 12:05,"164 Ridge St, New York City, NY 10001" +280379,Lightning Charging Cable,1,14.95,10/19/19 10:30,"531 Cherry St, San Francisco, CA 94016" +280380,Flatscreen TV,1,300,10/25/19 14:07,"722 Wilson St, Los Angeles, CA 90001" +280381,Lightning Charging Cable,1,14.95,10/15/19 08:05,"249 10th St, Dallas, TX 75001" +280382,Vareebadd Phone,1,400,10/02/19 01:40,"723 Pine St, Seattle, WA 98101" +280383,iPhone,1,700,10/15/19 10:35,"922 Jefferson St, Los Angeles, CA 90001" +280384,AAA Batteries (4-pack),2,2.99,10/16/19 02:11,"310 11th St, Austin, TX 73301" +280385,Macbook Pro Laptop,1,1700,10/24/19 06:26,"728 South St, San Francisco, CA 94016" +280386,27in 4K Gaming Monitor,1,389.99,10/24/19 13:25,"388 10th St, Boston, MA 02215" +,,,,, +280387,ThinkPad Laptop,1,999.99,10/16/19 06:52,"732 Washington St, Los Angeles, CA 90001" +280388,AA Batteries (4-pack),1,3.84,10/11/19 21:45,"853 Jackson St, New York City, NY 10001" +280389,Apple Airpods Headphones,1,150,10/02/19 11:33,"966 Washington St, Dallas, TX 75001" +280390,AA Batteries (4-pack),1,3.84,10/25/19 07:26,"592 10th St, Atlanta, GA 30301" +280391,AAA Batteries (4-pack),1,2.99,10/26/19 19:14,"948 Lake St, Seattle, WA 98101" +280392,AA Batteries (4-pack),1,3.84,10/05/19 15:56,"847 Cherry St, Atlanta, GA 30301" +280392,Macbook Pro Laptop,1,1700,10/05/19 15:56,"847 Cherry St, Atlanta, GA 30301" +280393,Wired Headphones,1,11.99,10/04/19 21:27,"123 Walnut St, Austin, TX 73301" +280394,Flatscreen TV,1,300,10/22/19 04:05,"114 Jefferson St, Boston, MA 02215" +280395,AA Batteries (4-pack),2,3.84,10/16/19 21:54,"902 River St, Los Angeles, CA 90001" +280396,Bose SoundSport Headphones,1,99.99,10/12/19 17:58,"659 14th St, Austin, TX 73301" +280397,AA Batteries (4-pack),1,3.84,10/16/19 10:06,"228 Lakeview St, Atlanta, GA 30301" +280398,AAA Batteries (4-pack),1,2.99,10/13/19 14:46,"793 Chestnut St, Boston, MA 02215" +280399,USB-C Charging Cable,1,11.95,10/30/19 13:39,"980 Sunset St, Los Angeles, CA 90001" +280400,USB-C Charging Cable,1,11.95,10/15/19 11:31,"269 South St, New York City, NY 10001" +280401,20in Monitor,1,109.99,10/13/19 14:36,"104 Dogwood St, Los Angeles, CA 90001" +280402,Wired Headphones,1,11.99,10/19/19 18:44,"489 13th St, San Francisco, CA 94016" +280403,Bose SoundSport Headphones,1,99.99,10/18/19 16:49,"590 4th St, Portland, OR 97035" +280404,27in 4K Gaming Monitor,1,389.99,10/05/19 21:16,"66 Ridge St, Dallas, TX 75001" +280405,Lightning Charging Cable,2,14.95,10/28/19 21:23,"696 Washington St, Dallas, TX 75001" +280406,AAA Batteries (4-pack),1,2.99,10/13/19 15:36,"677 Church St, Atlanta, GA 30301" +280407,Macbook Pro Laptop,1,1700,10/12/19 20:58,"657 4th St, Dallas, TX 75001" +280408,Wired Headphones,2,11.99,10/19/19 20:21,"259 Elm St, Boston, MA 02215" +280409,AA Batteries (4-pack),1,3.84,10/21/19 18:28,"766 Wilson St, Dallas, TX 75001" +280410,AA Batteries (4-pack),1,3.84,10/16/19 12:49,"555 1st St, Boston, MA 02215" +280411,27in FHD Monitor,1,149.99,10/10/19 13:58,"506 12th St, Los Angeles, CA 90001" +280412,USB-C Charging Cable,1,11.95,10/22/19 15:34,"942 11th St, San Francisco, CA 94016" +280413,AAA Batteries (4-pack),1,2.99,10/05/19 11:55,"163 1st St, New York City, NY 10001" +280414,AA Batteries (4-pack),2,3.84,10/25/19 12:40,"555 River St, New York City, NY 10001" +280415,34in Ultrawide Monitor,1,379.99,10/29/19 15:57,"101 5th St, New York City, NY 10001" +280416,Wired Headphones,1,11.99,10/24/19 13:25,"758 Hill St, San Francisco, CA 94016" +280417,iPhone,1,700,10/21/19 15:30,"69 Meadow St, Austin, TX 73301" +280418,Bose SoundSport Headphones,1,99.99,10/24/19 10:49,"953 11th St, Portland, OR 97035" +280419,USB-C Charging Cable,1,11.95,10/30/19 08:46,"391 14th St, Dallas, TX 75001" +280420,Macbook Pro Laptop,1,1700,10/09/19 12:42,"500 Hickory St, Los Angeles, CA 90001" +280421,Wired Headphones,1,11.99,10/22/19 00:06,"486 Ridge St, San Francisco, CA 94016" +280422,Wired Headphones,2,11.99,10/30/19 18:35,"734 Walnut St, Seattle, WA 98101" +280423,Wired Headphones,2,11.99,10/05/19 20:28,"605 Washington St, Seattle, WA 98101" +280424,USB-C Charging Cable,2,11.95,10/14/19 15:46,"84 Meadow St, Seattle, WA 98101" +280425,Macbook Pro Laptop,1,1700,10/01/19 17:46,"255 12th St, Boston, MA 02215" +280426,ThinkPad Laptop,1,999.99,10/24/19 14:00,"164 Hickory St, Boston, MA 02215" +280427,Bose SoundSport Headphones,1,99.99,10/08/19 14:22,"895 Willow St, Dallas, TX 75001" +280428,Vareebadd Phone,1,400,10/22/19 11:44,"882 1st St, Boston, MA 02215" +280429,Lightning Charging Cable,1,14.95,10/02/19 12:53,"216 Church St, Boston, MA 02215" +280430,34in Ultrawide Monitor,1,379.99,10/12/19 19:08,"332 Main St, Los Angeles, CA 90001" +280431,Wired Headphones,2,11.99,10/21/19 12:11,"964 Lakeview St, Los Angeles, CA 90001" +280432,34in Ultrawide Monitor,1,379.99,10/24/19 23:30,"576 5th St, New York City, NY 10001" +280433,USB-C Charging Cable,1,11.95,10/11/19 12:08,"304 Adams St, Seattle, WA 98101" +280434,USB-C Charging Cable,1,11.95,10/11/19 09:17,"211 Pine St, New York City, NY 10001" +280435,Apple Airpods Headphones,1,150,10/07/19 09:50,"933 South St, San Francisco, CA 94016" +280436,Lightning Charging Cable,1,14.95,10/31/19 00:54,"407 Chestnut St, Atlanta, GA 30301" +280437,Macbook Pro Laptop,1,1700,10/19/19 08:03,"562 West St, San Francisco, CA 94016" +280438,ThinkPad Laptop,1,999.99,10/04/19 14:45,"770 Jefferson St, Dallas, TX 75001" +280439,Wired Headphones,1,11.99,10/19/19 19:04,"460 River St, New York City, NY 10001" +280440,AAA Batteries (4-pack),4,2.99,10/25/19 18:13,"548 Church St, Boston, MA 02215" +280441,AA Batteries (4-pack),1,3.84,10/13/19 12:17,"705 Forest St, San Francisco, CA 94016" +280442,Lightning Charging Cable,1,14.95,10/08/19 17:16,"378 Wilson St, Dallas, TX 75001" +280443,USB-C Charging Cable,1,11.95,10/15/19 13:24,"9 9th St, Atlanta, GA 30301" +280444,AA Batteries (4-pack),1,3.84,10/02/19 20:03,"114 Dogwood St, Portland, OR 97035" +280445,Lightning Charging Cable,1,14.95,10/29/19 19:22,"778 Lincoln St, Los Angeles, CA 90001" +280446,AAA Batteries (4-pack),3,2.99,10/07/19 06:21,"194 Church St, Boston, MA 02215" +280447,Apple Airpods Headphones,1,150,10/21/19 16:51,"705 Dogwood St, New York City, NY 10001" +280448,Flatscreen TV,1,300,10/19/19 21:37,"492 Spruce St, Los Angeles, CA 90001" +280449,Google Phone,1,600,10/25/19 14:09,"556 Hill St, New York City, NY 10001" +280450,34in Ultrawide Monitor,1,379.99,10/29/19 08:25,"849 4th St, Austin, TX 73301" +280451,Bose SoundSport Headphones,1,99.99,10/30/19 10:12,"636 Washington St, Boston, MA 02215" +280452,USB-C Charging Cable,2,11.95,10/11/19 06:51,"906 South St, Dallas, TX 75001" +280453,27in FHD Monitor,1,149.99,10/24/19 16:20,"641 10th St, Atlanta, GA 30301" +280454,Wired Headphones,1,11.99,10/21/19 10:08,"69 Church St, New York City, NY 10001" +280455,Lightning Charging Cable,1,14.95,10/21/19 14:02,"573 Wilson St, Austin, TX 73301" +280456,AA Batteries (4-pack),3,3.84,10/22/19 17:26,"876 Highland St, San Francisco, CA 94016" +280457,27in FHD Monitor,1,149.99,10/12/19 14:33,"402 2nd St, Dallas, TX 75001" +280458,AAA Batteries (4-pack),1,2.99,10/22/19 16:23,"105 Willow St, San Francisco, CA 94016" +280459,AA Batteries (4-pack),6,3.84,10/03/19 12:37,"772 14th St, New York City, NY 10001" +280460,AA Batteries (4-pack),1,3.84,10/18/19 20:01,"798 Elm St, Seattle, WA 98101" +280461,Apple Airpods Headphones,1,150,10/27/19 16:27,"145 Jefferson St, Portland, OR 97035" +280462,iPhone,1,700,10/20/19 10:26,"172 12th St, San Francisco, CA 94016" +280463,iPhone,1,700,10/13/19 19:14,"408 11th St, Austin, TX 73301" +280464,Apple Airpods Headphones,1,150,10/07/19 14:04,"515 Hickory St, Dallas, TX 75001" +280465,Lightning Charging Cable,1,14.95,10/04/19 10:10,"935 11th St, New York City, NY 10001" +280466,34in Ultrawide Monitor,1,379.99,10/10/19 16:45,"326 9th St, New York City, NY 10001" +280467,27in 4K Gaming Monitor,1,389.99,10/09/19 01:12,"767 Lake St, San Francisco, CA 94016" +280468,Lightning Charging Cable,1,14.95,10/06/19 16:54,"457 West St, San Francisco, CA 94016" +280469,Bose SoundSport Headphones,1,99.99,10/26/19 23:00,"558 11th St, San Francisco, CA 94016" +280470,iPhone,1,700,10/13/19 15:48,"819 Pine St, Atlanta, GA 30301" +280471,Flatscreen TV,1,300,10/29/19 17:44,"240 Church St, Austin, TX 73301" +280472,AA Batteries (4-pack),2,3.84,10/24/19 18:02,"375 Lincoln St, Dallas, TX 75001" +280473,iPhone,1,700,10/31/19 05:49,"78 Johnson St, New York City, NY 10001" +280474,Macbook Pro Laptop,1,1700,10/10/19 10:24,"598 Johnson St, San Francisco, CA 94016" +280474,AA Batteries (4-pack),1,3.84,10/10/19 10:24,"598 Johnson St, San Francisco, CA 94016" +280475,USB-C Charging Cable,1,11.95,10/15/19 18:56,"460 Center St, Los Angeles, CA 90001" +280476,AAA Batteries (4-pack),1,2.99,10/21/19 11:55,"86 Dogwood St, Portland, OR 97035" +280477,AA Batteries (4-pack),1,3.84,10/07/19 12:19,"415 North St, Austin, TX 73301" +280478,20in Monitor,1,109.99,10/09/19 19:43,"763 Adams St, San Francisco, CA 94016" +280479,Lightning Charging Cable,1,14.95,10/15/19 16:34,"425 West St, San Francisco, CA 94016" +280480,Google Phone,1,600,10/17/19 16:25,"281 Highland St, Seattle, WA 98101" +280481,USB-C Charging Cable,1,11.95,10/31/19 15:24,"392 10th St, Seattle, WA 98101" +280482,AAA Batteries (4-pack),1,2.99,10/02/19 18:10,"140 Church St, Boston, MA 02215" +280483,AA Batteries (4-pack),2,3.84,10/24/19 06:18,"115 6th St, Los Angeles, CA 90001" +280484,Wired Headphones,1,11.99,10/30/19 21:28,"117 River St, Los Angeles, CA 90001" +280485,Google Phone,1,600,10/02/19 13:05,"910 14th St, New York City, NY 10001" +280485,Wired Headphones,1,11.99,10/02/19 13:05,"910 14th St, New York City, NY 10001" +280486,27in FHD Monitor,1,149.99,10/06/19 21:56,"219 7th St, Austin, TX 73301" +280487,USB-C Charging Cable,1,11.95,10/15/19 08:15,"271 Church St, New York City, NY 10001" +280488,Wired Headphones,1,11.99,10/27/19 20:32,"700 Highland St, San Francisco, CA 94016" +280489,Google Phone,1,600,10/21/19 20:27,"970 Johnson St, Atlanta, GA 30301" +280490,Lightning Charging Cable,1,14.95,10/08/19 16:32,"768 Madison St, San Francisco, CA 94016" +280491,AAA Batteries (4-pack),5,2.99,10/13/19 16:13,"380 Jackson St, New York City, NY 10001" +280492,Bose SoundSport Headphones,1,99.99,10/11/19 17:51,"200 Forest St, Atlanta, GA 30301" +280493,Bose SoundSport Headphones,1,99.99,10/23/19 07:11,"50 North St, San Francisco, CA 94016" +280494,Wired Headphones,1,11.99,10/23/19 21:54,"157 4th St, Boston, MA 02215" +280495,Google Phone,1,600,10/20/19 11:27,"168 Hickory St, Boston, MA 02215" +280495,USB-C Charging Cable,1,11.95,10/20/19 11:27,"168 Hickory St, Boston, MA 02215" +280496,USB-C Charging Cable,1,11.95,10/06/19 15:30,"616 7th St, Portland, OR 97035" +280497,Wired Headphones,1,11.99,10/24/19 11:06,"553 Maple St, Los Angeles, CA 90001" +280498,34in Ultrawide Monitor,1,379.99,10/31/19 13:10,"346 6th St, San Francisco, CA 94016" +280499,AAA Batteries (4-pack),3,2.99,10/25/19 11:55,"477 8th St, Dallas, TX 75001" +280500,Wired Headphones,1,11.99,10/11/19 22:16,"394 Madison St, Dallas, TX 75001" +280501,AAA Batteries (4-pack),4,2.99,10/13/19 23:03,"940 Maple St, Seattle, WA 98101" +280502,AAA Batteries (4-pack),2,2.99,10/10/19 08:07,"400 Lakeview St, Portland, OR 97035" +280503,AA Batteries (4-pack),1,3.84,10/31/19 22:52,"146 Center St, San Francisco, CA 94016" +280504,Bose SoundSport Headphones,1,99.99,10/23/19 17:07,"271 North St, Seattle, WA 98101" +280505,Wired Headphones,1,11.99,10/19/19 13:27,"156 Forest St, Dallas, TX 75001" +280506,USB-C Charging Cable,1,11.95,10/23/19 20:57,"672 6th St, Dallas, TX 75001" +280507,Apple Airpods Headphones,1,150,10/25/19 09:52,"947 Dogwood St, New York City, NY 10001" +280508,Wired Headphones,1,11.99,10/28/19 17:42,"387 4th St, Los Angeles, CA 90001" +280509,USB-C Charging Cable,1,11.95,10/02/19 16:50,"27 12th St, Dallas, TX 75001" +280510,AAA Batteries (4-pack),1,2.99,10/14/19 14:32,"158 7th St, San Francisco, CA 94016" +280511,Wired Headphones,1,11.99,10/10/19 11:08,"103 9th St, Portland, ME 04101" +280512,USB-C Charging Cable,1,11.95,10/29/19 21:02,"893 12th St, Los Angeles, CA 90001" +280513,Flatscreen TV,1,300,10/07/19 15:04,"875 West St, Portland, OR 97035" +280514,AAA Batteries (4-pack),2,2.99,10/20/19 14:36,"252 Ridge St, Atlanta, GA 30301" +280515,AA Batteries (4-pack),1,3.84,10/01/19 13:09,"711 2nd St, Austin, TX 73301" +280516,USB-C Charging Cable,1,11.95,10/12/19 15:06,"232 Meadow St, Dallas, TX 75001" +280517,Wired Headphones,1,11.99,10/03/19 09:46,"65 11th St, Dallas, TX 75001" +280518,Wired Headphones,1,11.99,10/10/19 17:37,"961 Adams St, Dallas, TX 75001" +280519,iPhone,1,700,10/11/19 11:47,"896 6th St, New York City, NY 10001" +280520,27in FHD Monitor,1,149.99,10/09/19 14:08,"2 Center St, Atlanta, GA 30301" +280521,ThinkPad Laptop,1,999.99,10/13/19 03:21,"662 Walnut St, Boston, MA 02215" +280522,27in 4K Gaming Monitor,1,389.99,10/10/19 17:02,"407 West St, Boston, MA 02215" +280523,AAA Batteries (4-pack),1,2.99,10/07/19 14:47,"931 4th St, Dallas, TX 75001" +280524,Wired Headphones,1,11.99,10/12/19 21:41,"807 Hickory St, Boston, MA 02215" +280525,USB-C Charging Cable,1,11.95,10/15/19 13:05,"557 9th St, New York City, NY 10001" +280526,iPhone,1,700,10/18/19 22:08,"282 Walnut St, Seattle, WA 98101" +280527,Lightning Charging Cable,1,14.95,10/21/19 12:52,"393 9th St, Seattle, WA 98101" +280528,AA Batteries (4-pack),1,3.84,10/20/19 10:52,"87 Hill St, New York City, NY 10001" +280529,27in 4K Gaming Monitor,1,389.99,10/21/19 16:40,"113 Washington St, New York City, NY 10001" +280530,AAA Batteries (4-pack),2,2.99,10/11/19 07:20,"909 Forest St, Seattle, WA 98101" +280531,AAA Batteries (4-pack),1,2.99,10/29/19 20:49,"895 7th St, Dallas, TX 75001" +280532,AAA Batteries (4-pack),1,2.99,10/11/19 15:53,"175 Wilson St, Seattle, WA 98101" +280533,27in FHD Monitor,1,149.99,10/01/19 11:48,"360 Elm St, San Francisco, CA 94016" +280534,34in Ultrawide Monitor,1,379.99,10/17/19 18:22,"331 Jackson St, Los Angeles, CA 90001" +280535,AA Batteries (4-pack),2,3.84,10/08/19 09:29,"831 Lakeview St, Los Angeles, CA 90001" +280536,Macbook Pro Laptop,1,1700,10/26/19 15:58,"749 Ridge St, New York City, NY 10001" +280537,Wired Headphones,1,11.99,10/04/19 18:09,"204 Jackson St, San Francisco, CA 94016" +280538,USB-C Charging Cable,1,11.95,10/18/19 21:01,"56 Madison St, Atlanta, GA 30301" +280539,Lightning Charging Cable,1,14.95,10/04/19 23:43,"29 Jackson St, Boston, MA 02215" +280540,Macbook Pro Laptop,1,1700,10/01/19 13:47,"405 4th St, Los Angeles, CA 90001" +280541,AAA Batteries (4-pack),1,2.99,10/23/19 09:22,"317 Chestnut St, Atlanta, GA 30301" +280542,Bose SoundSport Headphones,1,99.99,10/18/19 13:26,"629 Ridge St, New York City, NY 10001" +280543,AAA Batteries (4-pack),1,2.99,10/05/19 13:16,"239 Elm St, Los Angeles, CA 90001" +280544,AA Batteries (4-pack),1,3.84,10/24/19 21:10,"16 Johnson St, New York City, NY 10001" +280545,AAA Batteries (4-pack),1,2.99,10/29/19 19:24,"532 9th St, Boston, MA 02215" +280546,USB-C Charging Cable,1,11.95,10/28/19 22:55,"705 Forest St, Dallas, TX 75001" +280547,USB-C Charging Cable,1,11.95,10/03/19 12:59,"666 Spruce St, Los Angeles, CA 90001" +280548,USB-C Charging Cable,2,11.95,10/28/19 14:06,"207 8th St, Boston, MA 02215" +280549,AAA Batteries (4-pack),1,2.99,10/25/19 22:44,"863 Johnson St, Atlanta, GA 30301" +280550,Lightning Charging Cable,1,14.95,10/16/19 09:57,"394 Ridge St, New York City, NY 10001" +280551,Bose SoundSport Headphones,1,99.99,10/21/19 19:17,"743 2nd St, Dallas, TX 75001" +280552,Lightning Charging Cable,1,14.95,10/21/19 09:31,"103 Washington St, Austin, TX 73301" +280553,Lightning Charging Cable,2,14.95,10/05/19 09:30,"429 4th St, Dallas, TX 75001" +280554,Lightning Charging Cable,1,14.95,10/12/19 20:52,"210 Cherry St, Boston, MA 02215" +280555,AA Batteries (4-pack),1,3.84,10/04/19 12:24,"758 13th St, Boston, MA 02215" +280556,Bose SoundSport Headphones,1,99.99,10/03/19 22:27,"94 13th St, New York City, NY 10001" +280557,Macbook Pro Laptop,1,1700,10/30/19 16:53,"604 4th St, New York City, NY 10001" +280558,USB-C Charging Cable,1,11.95,10/05/19 20:37,"119 Highland St, Dallas, TX 75001" +280559,Apple Airpods Headphones,1,150,10/19/19 13:40,"420 5th St, Dallas, TX 75001" +280560,Lightning Charging Cable,2,14.95,10/10/19 22:45,"389 14th St, Austin, TX 73301" +280561,ThinkPad Laptop,1,999.99,10/18/19 21:03,"12 13th St, Los Angeles, CA 90001" +280562,AAA Batteries (4-pack),3,2.99,10/13/19 19:06,"336 Lakeview St, San Francisco, CA 94016" +280563,Lightning Charging Cable,1,14.95,10/08/19 12:28,"120 Chestnut St, Seattle, WA 98101" +280564,Wired Headphones,1,11.99,10/02/19 16:13,"988 Elm St, Los Angeles, CA 90001" +280565,AAA Batteries (4-pack),2,2.99,10/27/19 16:24,"368 Main St, San Francisco, CA 94016" +280566,USB-C Charging Cable,1,11.95,10/22/19 16:05,"573 Lincoln St, Austin, TX 73301" +280567,27in FHD Monitor,1,149.99,10/02/19 23:21,"218 Meadow St, Portland, OR 97035" +280568,AAA Batteries (4-pack),1,2.99,10/28/19 11:17,"905 Lake St, Austin, TX 73301" +280569,AA Batteries (4-pack),1,3.84,10/07/19 17:48,"545 13th St, San Francisco, CA 94016" +280570,27in FHD Monitor,1,149.99,10/28/19 00:04,"704 Meadow St, Dallas, TX 75001" +280571,USB-C Charging Cable,1,11.95,10/23/19 22:09,"220 Cherry St, Dallas, TX 75001" +280572,Lightning Charging Cable,1,14.95,10/08/19 23:02,"389 Jackson St, Austin, TX 73301" +280573,Wired Headphones,1,11.99,10/17/19 17:55,"740 5th St, Boston, MA 02215" +280574,AA Batteries (4-pack),1,3.84,10/29/19 17:29,"996 4th St, Los Angeles, CA 90001" +280575,Lightning Charging Cable,1,14.95,10/26/19 13:05,"550 2nd St, Los Angeles, CA 90001" +280576,AAA Batteries (4-pack),1,2.99,10/21/19 19:11,"281 Dogwood St, New York City, NY 10001" +280577,Google Phone,1,600,10/23/19 08:04,"566 Washington St, Dallas, TX 75001" +280578,USB-C Charging Cable,1,11.95,10/24/19 18:36,"12 Ridge St, Atlanta, GA 30301" +280579,AA Batteries (4-pack),2,3.84,10/16/19 18:02,"99 Lakeview St, New York City, NY 10001" +280580,iPhone,1,700,10/08/19 18:35,"227 Wilson St, Atlanta, GA 30301" +280581,Lightning Charging Cable,1,14.95,10/27/19 20:51,"514 10th St, Boston, MA 02215" +280582,AA Batteries (4-pack),2,3.84,10/08/19 11:18,"8 Cedar St, Los Angeles, CA 90001" +280583,AAA Batteries (4-pack),1,2.99,10/11/19 23:21,"923 Jefferson St, New York City, NY 10001" +280584,Wired Headphones,1,11.99,10/26/19 15:27,"899 Highland St, Atlanta, GA 30301" +280585,AA Batteries (4-pack),1,3.84,10/06/19 11:17,"918 Park St, Los Angeles, CA 90001" +280586,AA Batteries (4-pack),2,3.84,10/13/19 19:07,"483 North St, New York City, NY 10001" +280587,iPhone,1,700,10/18/19 11:44,"658 Willow St, Dallas, TX 75001" +280588,ThinkPad Laptop,1,999.99,10/26/19 06:18,"298 Highland St, Los Angeles, CA 90001" +280589,USB-C Charging Cable,1,11.95,10/27/19 11:45,"328 Spruce St, Boston, MA 02215" +280590,AAA Batteries (4-pack),1,2.99,10/01/19 23:21,"189 Park St, Atlanta, GA 30301" +280591,AA Batteries (4-pack),1,3.84,10/30/19 22:02,"367 Lakeview St, Dallas, TX 75001" +280592,Lightning Charging Cable,1,14.95,10/27/19 22:12,"10 Jackson St, Boston, MA 02215" +280593,USB-C Charging Cable,1,11.95,10/03/19 21:22,"829 Ridge St, San Francisco, CA 94016" +280594,Wired Headphones,1,11.99,10/07/19 17:48,"948 Forest St, Dallas, TX 75001" +280595,Google Phone,1,600,10/20/19 14:48,"917 13th St, Austin, TX 73301" +280596,AAA Batteries (4-pack),1,2.99,10/24/19 20:51,"980 Cherry St, Portland, OR 97035" +280597,Macbook Pro Laptop,1,1700,10/28/19 15:06,"528 14th St, New York City, NY 10001" +280598,USB-C Charging Cable,1,11.95,10/01/19 19:03,"699 14th St, New York City, NY 10001" +280599,Lightning Charging Cable,1,14.95,10/10/19 11:15,"150 Willow St, San Francisco, CA 94016" +280600,27in FHD Monitor,1,149.99,10/21/19 21:58,"679 Hill St, Dallas, TX 75001" +280601,AA Batteries (4-pack),1,3.84,10/28/19 13:26,"920 Madison St, Atlanta, GA 30301" +280602,AA Batteries (4-pack),1,3.84,10/21/19 06:12,"832 Dogwood St, San Francisco, CA 94016" +280603,34in Ultrawide Monitor,1,379.99,10/29/19 10:51,"735 Cherry St, San Francisco, CA 94016" +280604,USB-C Charging Cable,1,11.95,10/26/19 23:57,"585 Meadow St, Portland, OR 97035" +280605,Wired Headphones,1,11.99,10/15/19 19:27,"257 2nd St, Boston, MA 02215" +280606,Lightning Charging Cable,1,14.95,10/19/19 18:11,"21 Chestnut St, Los Angeles, CA 90001" +280607,AAA Batteries (4-pack),1,2.99,10/29/19 21:25,"695 Washington St, Los Angeles, CA 90001" +280608,AAA Batteries (4-pack),2,2.99,10/06/19 12:55,"335 Pine St, Los Angeles, CA 90001" +280609,Bose SoundSport Headphones,1,99.99,10/21/19 14:01,"578 10th St, Los Angeles, CA 90001" +280610,AAA Batteries (4-pack),1,2.99,10/20/19 14:17,"243 Spruce St, Los Angeles, CA 90001" +280610,Wired Headphones,1,11.99,10/20/19 14:17,"243 Spruce St, Los Angeles, CA 90001" +280611,Vareebadd Phone,1,400,10/29/19 17:30,"202 12th St, Los Angeles, CA 90001" +280612,USB-C Charging Cable,1,11.95,10/14/19 22:58,"872 Maple St, Los Angeles, CA 90001" +280613,Bose SoundSport Headphones,1,99.99,10/21/19 13:17,"174 Main St, Seattle, WA 98101" +280614,Apple Airpods Headphones,1,150,10/21/19 07:08,"654 Lincoln St, San Francisco, CA 94016" +280615,27in FHD Monitor,1,149.99,10/16/19 21:49,"5 Main St, New York City, NY 10001" +280616,AAA Batteries (4-pack),1,2.99,10/10/19 17:04,"219 North St, San Francisco, CA 94016" +280617,iPhone,1,700,10/06/19 22:07,"396 Washington St, Dallas, TX 75001" +280617,Lightning Charging Cable,1,14.95,10/06/19 22:07,"396 Washington St, Dallas, TX 75001" +280618,AAA Batteries (4-pack),1,2.99,10/28/19 12:59,"757 Walnut St, San Francisco, CA 94016" +280619,Wired Headphones,1,11.99,10/22/19 08:50,"737 12th St, Los Angeles, CA 90001" +280620,Wired Headphones,2,11.99,10/01/19 17:30,"943 9th St, San Francisco, CA 94016" +280621,27in FHD Monitor,1,149.99,10/14/19 13:09,"725 Park St, San Francisco, CA 94016" +280622,USB-C Charging Cable,1,11.95,10/01/19 12:12,"48 Sunset St, Seattle, WA 98101" +280623,Google Phone,1,600,10/07/19 02:44,"725 Hickory St, New York City, NY 10001" +280624,34in Ultrawide Monitor,1,379.99,10/14/19 11:22,"904 10th St, Dallas, TX 75001" +280625,Vareebadd Phone,1,400,10/06/19 10:19,"113 Lakeview St, Seattle, WA 98101" +280626,ThinkPad Laptop,1,999.99,10/14/19 00:03,"942 Pine St, New York City, NY 10001" +280627,Google Phone,1,600,10/04/19 16:55,"444 South St, Los Angeles, CA 90001" +280628,Wired Headphones,1,11.99,10/15/19 22:48,"586 9th St, New York City, NY 10001" +280629,Apple Airpods Headphones,1,150,10/12/19 08:20,"585 Meadow St, Boston, MA 02215" +280630,AAA Batteries (4-pack),1,2.99,10/28/19 18:27,"961 Church St, Seattle, WA 98101" +280631,34in Ultrawide Monitor,1,379.99,10/22/19 18:48,"321 Pine St, New York City, NY 10001" +280632,ThinkPad Laptop,1,999.99,10/13/19 12:26,"258 2nd St, San Francisco, CA 94016" +280633,Apple Airpods Headphones,1,150,10/02/19 18:53,"176 Hill St, Boston, MA 02215" +280634,Flatscreen TV,1,300,10/01/19 17:30,"617 11th St, San Francisco, CA 94016" +280635,Lightning Charging Cable,1,14.95,10/16/19 23:41,"806 10th St, San Francisco, CA 94016" +280635,27in 4K Gaming Monitor,1,389.99,10/16/19 23:41,"806 10th St, San Francisco, CA 94016" +280636,27in 4K Gaming Monitor,1,389.99,10/28/19 14:02,"689 Jackson St, New York City, NY 10001" +280637,Wired Headphones,1,11.99,10/21/19 09:49,"129 2nd St, Seattle, WA 98101" +280638,AA Batteries (4-pack),1,3.84,10/16/19 21:12,"26 Jefferson St, Atlanta, GA 30301" +280639,Bose SoundSport Headphones,1,99.99,10/13/19 08:48,"255 North St, San Francisco, CA 94016" +280640,AAA Batteries (4-pack),1,2.99,10/04/19 08:18,"746 Church St, San Francisco, CA 94016" +280641,Lightning Charging Cable,1,14.95,10/06/19 22:33,"528 Elm St, San Francisco, CA 94016" +280642,Wired Headphones,1,11.99,10/06/19 00:56,"832 11th St, Seattle, WA 98101" +280643,Wired Headphones,1,11.99,10/20/19 10:07,"31 Jefferson St, San Francisco, CA 94016" +280644,27in FHD Monitor,1,149.99,10/27/19 12:57,"556 Dogwood St, Dallas, TX 75001" +280645,27in FHD Monitor,1,149.99,10/30/19 07:11,"154 5th St, New York City, NY 10001" +280646,Wired Headphones,2,11.99,10/11/19 09:11,"621 13th St, Seattle, WA 98101" +280646,ThinkPad Laptop,1,999.99,10/11/19 09:11,"621 13th St, Seattle, WA 98101" +280647,Lightning Charging Cable,1,14.95,10/25/19 14:03,"282 9th St, Los Angeles, CA 90001" +280648,Lightning Charging Cable,1,14.95,10/24/19 19:33,"921 South St, San Francisco, CA 94016" +280649,AAA Batteries (4-pack),2,2.99,10/18/19 10:46,"912 Washington St, San Francisco, CA 94016" +280650,AAA Batteries (4-pack),1,2.99,10/24/19 07:06,"168 Lincoln St, Portland, ME 04101" +280650,34in Ultrawide Monitor,1,379.99,10/24/19 07:06,"168 Lincoln St, Portland, ME 04101" +280651,AA Batteries (4-pack),1,3.84,10/22/19 12:59,"987 Chestnut St, San Francisco, CA 94016" +280652,ThinkPad Laptop,1,999.99,10/17/19 12:26,"831 Spruce St, Atlanta, GA 30301" +280653,Bose SoundSport Headphones,1,99.99,10/21/19 14:54,"609 7th St, Boston, MA 02215" +280654,Lightning Charging Cable,1,14.95,10/24/19 14:44,"450 North St, New York City, NY 10001" +280655,AAA Batteries (4-pack),3,2.99,10/02/19 13:42,"111 Center St, San Francisco, CA 94016" +280656,AAA Batteries (4-pack),1,2.99,10/08/19 12:01,"877 Spruce St, Los Angeles, CA 90001" +280657,iPhone,1,700,10/02/19 10:51,"320 Highland St, San Francisco, CA 94016" +280658,AA Batteries (4-pack),1,3.84,10/20/19 08:13,"111 12th St, San Francisco, CA 94016" +280659,AAA Batteries (4-pack),2,2.99,10/12/19 18:51,"379 Adams St, Austin, TX 73301" +280660,Lightning Charging Cable,1,14.95,10/18/19 10:18,"510 Madison St, Atlanta, GA 30301" +280661,AAA Batteries (4-pack),1,2.99,10/23/19 22:59,"956 Pine St, San Francisco, CA 94016" +280662,ThinkPad Laptop,1,999.99,10/22/19 07:14,"162 Hickory St, Austin, TX 73301" +280663,Wired Headphones,1,11.99,10/21/19 14:08,"518 9th St, Dallas, TX 75001" +280664,Apple Airpods Headphones,1,150,10/08/19 17:39,"37 Chestnut St, San Francisco, CA 94016" +280665,ThinkPad Laptop,1,999.99,10/05/19 22:47,"752 Hickory St, San Francisco, CA 94016" +280666,AA Batteries (4-pack),2,3.84,10/11/19 07:27,"815 Pine St, Dallas, TX 75001" +280667,27in FHD Monitor,1,149.99,10/05/19 17:12,"355 Center St, San Francisco, CA 94016" +280668,USB-C Charging Cable,1,11.95,10/09/19 07:52,"525 2nd St, San Francisco, CA 94016" +280669,USB-C Charging Cable,1,11.95,10/30/19 10:17,"183 14th St, Los Angeles, CA 90001" +280670,34in Ultrawide Monitor,1,379.99,10/25/19 18:59,"328 5th St, Austin, TX 73301" +280671,Flatscreen TV,1,300,10/11/19 17:12,"34 Hill St, Los Angeles, CA 90001" +280672,AAA Batteries (4-pack),2,2.99,10/03/19 15:23,"638 Hill St, New York City, NY 10001" +280673,Wired Headphones,1,11.99,10/27/19 19:52,"292 11th St, San Francisco, CA 94016" +280674,AAA Batteries (4-pack),1,2.99,10/05/19 22:00,"613 13th St, New York City, NY 10001" +280675,Lightning Charging Cable,1,14.95,10/17/19 08:39,"485 9th St, San Francisco, CA 94016" +280676,AAA Batteries (4-pack),1,2.99,10/30/19 14:00,"39 Hill St, Atlanta, GA 30301" +280677,AA Batteries (4-pack),1,3.84,10/31/19 00:00,"330 Dogwood St, San Francisco, CA 94016" +280678,Apple Airpods Headphones,1,150,10/07/19 21:12,"655 1st St, Boston, MA 02215" +280679,20in Monitor,1,109.99,10/07/19 19:37,"405 Church St, Atlanta, GA 30301" +280680,Wired Headphones,1,11.99,10/04/19 22:11,"285 Park St, Boston, MA 02215" +280681,Bose SoundSport Headphones,1,99.99,10/23/19 05:26,"100 Lake St, San Francisco, CA 94016" +,,,,, +280682,AA Batteries (4-pack),1,3.84,10/19/19 09:24,"513 10th St, San Francisco, CA 94016" +280683,Apple Airpods Headphones,1,150,10/07/19 18:03,"699 14th St, New York City, NY 10001" +280684,Bose SoundSport Headphones,1,99.99,10/10/19 11:06,"569 Meadow St, New York City, NY 10001" +280684,Lightning Charging Cable,1,14.95,10/10/19 11:06,"569 Meadow St, New York City, NY 10001" +280685,AA Batteries (4-pack),3,3.84,10/28/19 17:17,"514 Church St, Atlanta, GA 30301" +280686,Bose SoundSport Headphones,1,99.99,10/04/19 12:04,"29 Hill St, Portland, OR 97035" +280687,Bose SoundSport Headphones,1,99.99,10/17/19 20:02,"765 Dogwood St, New York City, NY 10001" +280688,Lightning Charging Cable,1,14.95,10/30/19 20:00,"967 Highland St, New York City, NY 10001" +280689,AAA Batteries (4-pack),2,2.99,10/31/19 13:17,"679 6th St, Dallas, TX 75001" +280690,USB-C Charging Cable,1,11.95,10/09/19 15:02,"259 Spruce St, Portland, ME 04101" +280691,Wired Headphones,1,11.99,10/18/19 13:01,"666 Pine St, Dallas, TX 75001" +280692,Lightning Charging Cable,1,14.95,10/27/19 21:55,"536 2nd St, New York City, NY 10001" +280693,Lightning Charging Cable,1,14.95,10/18/19 13:42,"466 Dogwood St, San Francisco, CA 94016" +280694,Bose SoundSport Headphones,1,99.99,10/13/19 22:38,"717 Hill St, San Francisco, CA 94016" +280695,AAA Batteries (4-pack),2,2.99,10/10/19 21:47,"863 Jackson St, Los Angeles, CA 90001" +280696,Apple Airpods Headphones,1,150,10/28/19 21:22,"529 11th St, Seattle, WA 98101" +280697,Apple Airpods Headphones,1,150,10/20/19 22:51,"502 Johnson St, Dallas, TX 75001" +280698,Lightning Charging Cable,1,14.95,10/11/19 21:45,"1 Hill St, New York City, NY 10001" +280699,Lightning Charging Cable,1,14.95,10/20/19 20:01,"756 Madison St, Los Angeles, CA 90001" +280700,27in 4K Gaming Monitor,1,389.99,10/23/19 09:42,"780 5th St, Seattle, WA 98101" +280701,Wired Headphones,2,11.99,10/12/19 02:22,"303 Spruce St, San Francisco, CA 94016" +280702,LG Washing Machine,1,600.0,10/14/19 21:02,"753 Maple St, Los Angeles, CA 90001" +280702,AAA Batteries (4-pack),1,2.99,10/14/19 21:02,"753 Maple St, Los Angeles, CA 90001" +280703,27in FHD Monitor,1,149.99,10/27/19 20:23,"45 Hill St, Portland, ME 04101" +280704,AA Batteries (4-pack),1,3.84,10/03/19 10:29,"499 14th St, Boston, MA 02215" +280705,Wired Headphones,3,11.99,10/04/19 11:53,"895 South St, Seattle, WA 98101" +280706,USB-C Charging Cable,1,11.95,10/08/19 10:02,"520 Pine St, Atlanta, GA 30301" +280707,AAA Batteries (4-pack),2,2.99,10/21/19 13:15,"745 9th St, Boston, MA 02215" +280708,Wired Headphones,1,11.99,10/31/19 12:35,"153 13th St, San Francisco, CA 94016" +280709,Wired Headphones,1,11.99,10/11/19 20:20,"397 9th St, Dallas, TX 75001" +280710,AAA Batteries (4-pack),1,2.99,10/24/19 17:28,"138 Elm St, Austin, TX 73301" +280711,Vareebadd Phone,1,400,10/21/19 21:56,"345 Lake St, Portland, ME 04101" +280711,Bose SoundSport Headphones,1,99.99,10/21/19 21:56,"345 Lake St, Portland, ME 04101" +280711,Wired Headphones,2,11.99,10/21/19 21:56,"345 Lake St, Portland, ME 04101" +280712,AAA Batteries (4-pack),1,2.99,10/22/19 15:12,"785 Dogwood St, Dallas, TX 75001" +280713,Wired Headphones,1,11.99,10/30/19 18:00,"990 Chestnut St, Los Angeles, CA 90001" +280714,Wired Headphones,1,11.99,10/07/19 00:29,"260 Lakeview St, Portland, OR 97035" +280715,Lightning Charging Cable,1,14.95,10/11/19 14:27,"19 6th St, San Francisco, CA 94016" +280716,Wired Headphones,1,11.99,10/16/19 16:59,"233 Center St, Boston, MA 02215" +280717,34in Ultrawide Monitor,1,379.99,10/06/19 21:36,"241 Walnut St, Los Angeles, CA 90001" +280718,iPhone,1,700,10/16/19 09:01,"617 South St, Atlanta, GA 30301" +280719,AAA Batteries (4-pack),2,2.99,10/26/19 19:52,"851 Elm St, Seattle, WA 98101" +280720,Lightning Charging Cable,1,14.95,10/24/19 21:49,"931 Center St, Seattle, WA 98101" +280721,USB-C Charging Cable,1,11.95,10/29/19 22:40,"364 Walnut St, Austin, TX 73301" +280722,USB-C Charging Cable,1,11.95,10/28/19 10:36,"828 2nd St, New York City, NY 10001" +280723,27in 4K Gaming Monitor,1,389.99,10/30/19 16:29,"756 Sunset St, Boston, MA 02215" +280724,Wired Headphones,1,11.99,10/12/19 09:14,"33 Jackson St, San Francisco, CA 94016" +280725,Apple Airpods Headphones,1,150,10/16/19 18:54,"887 2nd St, Austin, TX 73301" +280726,Wired Headphones,1,11.99,10/12/19 17:17,"721 Madison St, Boston, MA 02215" +280727,AAA Batteries (4-pack),1,2.99,10/04/19 04:23,"178 Adams St, Boston, MA 02215" +280728,27in FHD Monitor,1,149.99,10/15/19 23:31,"924 1st St, San Francisco, CA 94016" +280729,20in Monitor,1,109.99,10/21/19 11:17,"785 Meadow St, Portland, OR 97035" +280730,Apple Airpods Headphones,1,150,10/08/19 17:13,"751 South St, Los Angeles, CA 90001" +280731,34in Ultrawide Monitor,1,379.99,10/31/19 17:45,"292 12th St, Boston, MA 02215" +280732,Wired Headphones,1,11.99,10/24/19 20:00,"969 Lake St, Atlanta, GA 30301" +280733,20in Monitor,1,109.99,10/12/19 21:31,"14 Hill St, Boston, MA 02215" +280734,Lightning Charging Cable,1,14.95,10/16/19 19:35,"77 Washington St, New York City, NY 10001" +280734,Lightning Charging Cable,1,14.95,10/16/19 19:35,"77 Washington St, New York City, NY 10001" +280735,Bose SoundSport Headphones,1,99.99,10/15/19 22:56,"8 8th St, Boston, MA 02215" +280736,USB-C Charging Cable,2,11.95,10/01/19 23:21,"20 6th St, New York City, NY 10001" +280737,Vareebadd Phone,1,400,10/30/19 10:11,"246 Adams St, New York City, NY 10001" +280738,27in FHD Monitor,1,149.99,10/31/19 15:03,"413 Sunset St, Los Angeles, CA 90001" +280739,Bose SoundSport Headphones,1,99.99,10/23/19 16:43,"812 Cherry St, New York City, NY 10001" +280740,20in Monitor,1,109.99,10/01/19 16:31,"464 12th St, Los Angeles, CA 90001" +280741,iPhone,1,700,10/13/19 04:22,"97 Madison St, Los Angeles, CA 90001" +280741,Lightning Charging Cable,1,14.95,10/13/19 04:22,"97 Madison St, Los Angeles, CA 90001" +280741,Apple Airpods Headphones,1,150,10/13/19 04:22,"97 Madison St, Los Angeles, CA 90001" +280742,Google Phone,1,600,10/05/19 06:38,"541 Walnut St, Los Angeles, CA 90001" +280743,Apple Airpods Headphones,1,150,10/12/19 10:44,"972 Lincoln St, Dallas, TX 75001" +280744,27in FHD Monitor,1,149.99,10/31/19 18:50,"193 4th St, Dallas, TX 75001" +280745,Macbook Pro Laptop,1,1700,10/18/19 18:59,"672 Church St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +280746,27in 4K Gaming Monitor,1,389.99,10/26/19 21:08,"949 Maple St, Boston, MA 02215" +280747,34in Ultrawide Monitor,1,379.99,10/15/19 23:28,"10 Center St, Atlanta, GA 30301" +280748,USB-C Charging Cable,1,11.95,10/16/19 19:25,"753 Park St, Boston, MA 02215" +280749,AA Batteries (4-pack),4,3.84,10/24/19 13:45,"423 Ridge St, Los Angeles, CA 90001" +280750,27in 4K Gaming Monitor,1,389.99,10/02/19 19:28,"730 Hill St, New York City, NY 10001" +280751,Apple Airpods Headphones,1,150,10/06/19 16:47,"737 Church St, Los Angeles, CA 90001" +280752,Flatscreen TV,1,300,10/04/19 11:29,"1 Maple St, Seattle, WA 98101" +280753,AAA Batteries (4-pack),1,2.99,10/11/19 16:43,"549 13th St, Dallas, TX 75001" +280754,20in Monitor,1,109.99,10/10/19 12:05,"285 Forest St, Austin, TX 73301" +,,,,, +280755,AA Batteries (4-pack),1,3.84,10/18/19 19:28,"116 8th St, San Francisco, CA 94016" +280756,AA Batteries (4-pack),1,3.84,10/02/19 15:47,"120 12th St, Boston, MA 02215" +280757,Flatscreen TV,1,300,10/22/19 10:24,"105 North St, Dallas, TX 75001" +280758,Bose SoundSport Headphones,1,99.99,10/07/19 16:20,"39 5th St, Boston, MA 02215" +280759,Apple Airpods Headphones,1,150,10/14/19 11:48,"435 Chestnut St, Boston, MA 02215" +280760,AAA Batteries (4-pack),2,2.99,10/02/19 16:23,"767 Center St, San Francisco, CA 94016" +280761,USB-C Charging Cable,1,11.95,10/25/19 20:08,"179 12th St, San Francisco, CA 94016" +280762,iPhone,1,700,10/08/19 06:59,"802 Church St, Austin, TX 73301" +280763,Apple Airpods Headphones,1,150,10/07/19 09:29,"147 11th St, Boston, MA 02215" +280764,Lightning Charging Cable,2,14.95,10/22/19 20:06,"552 Cherry St, Seattle, WA 98101" +280765,iPhone,1,700,10/02/19 14:56,"324 Forest St, New York City, NY 10001" +280766,USB-C Charging Cable,1,11.95,10/27/19 15:30,"841 Main St, San Francisco, CA 94016" +280767,Lightning Charging Cable,1,14.95,10/15/19 21:07,"899 Center St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +280768,AAA Batteries (4-pack),1,2.99,10/13/19 21:39,"706 11th St, Boston, MA 02215" +280769,USB-C Charging Cable,1,11.95,10/14/19 17:19,"641 Pine St, San Francisco, CA 94016" +280770,Apple Airpods Headphones,1,150,10/02/19 14:45,"329 8th St, New York City, NY 10001" +280771,27in FHD Monitor,1,149.99,10/24/19 16:00,"588 Elm St, Los Angeles, CA 90001" +280772,USB-C Charging Cable,2,11.95,10/17/19 12:16,"540 Pine St, New York City, NY 10001" +280773,AA Batteries (4-pack),1,3.84,10/02/19 07:11,"440 Lakeview St, San Francisco, CA 94016" +280773,AAA Batteries (4-pack),1,2.99,10/02/19 07:11,"440 Lakeview St, San Francisco, CA 94016" +280774,Lightning Charging Cable,1,14.95,10/29/19 14:34,"19 7th St, New York City, NY 10001" +280775,USB-C Charging Cable,2,11.95,10/22/19 18:02,"545 Lakeview St, San Francisco, CA 94016" +280776,Wired Headphones,1,11.99,10/03/19 08:02,"145 8th St, Seattle, WA 98101" +280777,ThinkPad Laptop,1,999.99,10/12/19 17:49,"632 2nd St, Austin, TX 73301" +280778,Wired Headphones,1,11.99,10/21/19 15:15,"773 Meadow St, Los Angeles, CA 90001" +280779,AAA Batteries (4-pack),2,2.99,10/05/19 20:11,"525 Elm St, San Francisco, CA 94016" +280780,34in Ultrawide Monitor,1,379.99,10/10/19 13:13,"80 Cherry St, Seattle, WA 98101" +280781,AAA Batteries (4-pack),2,2.99,10/20/19 21:50,"564 Cherry St, San Francisco, CA 94016" +280782,AAA Batteries (4-pack),1,2.99,10/22/19 12:19,"425 1st St, Boston, MA 02215" +280783,AA Batteries (4-pack),1,3.84,10/17/19 20:08,"479 West St, San Francisco, CA 94016" +280784,AA Batteries (4-pack),1,3.84,10/01/19 06:36,"657 Washington St, San Francisco, CA 94016" +280785,AAA Batteries (4-pack),1,2.99,10/13/19 19:03,"422 9th St, Los Angeles, CA 90001" +280786,AAA Batteries (4-pack),1,2.99,10/03/19 16:22,"176 1st St, New York City, NY 10001" +280787,Apple Airpods Headphones,1,150,10/06/19 08:50,"196 Maple St, Los Angeles, CA 90001" +,,,,, +280788,AAA Batteries (4-pack),2,2.99,10/20/19 13:07,"302 Chestnut St, San Francisco, CA 94016" +280789,ThinkPad Laptop,1,999.99,10/26/19 11:41,"762 Park St, Los Angeles, CA 90001" +280790,Lightning Charging Cable,1,14.95,10/28/19 22:00,"909 Dogwood St, Boston, MA 02215" +280791,USB-C Charging Cable,1,11.95,10/27/19 14:38,"348 Chestnut St, Atlanta, GA 30301" +280792,27in 4K Gaming Monitor,1,389.99,10/16/19 09:40,"75 4th St, San Francisco, CA 94016" +280793,USB-C Charging Cable,1,11.95,10/28/19 12:09,"574 Ridge St, Los Angeles, CA 90001" +280794,AAA Batteries (4-pack),1,2.99,10/05/19 10:58,"822 Cherry St, Atlanta, GA 30301" +280795,AAA Batteries (4-pack),1,2.99,10/08/19 16:10,"946 9th St, Atlanta, GA 30301" +280796,USB-C Charging Cable,1,11.95,10/19/19 11:52,"538 Cedar St, San Francisco, CA 94016" +280797,iPhone,1,700,10/07/19 16:57,"354 6th St, Austin, TX 73301" +280798,Bose SoundSport Headphones,1,99.99,10/20/19 17:11,"523 14th St, Portland, OR 97035" +280799,Bose SoundSport Headphones,1,99.99,10/02/19 20:45,"96 South St, Los Angeles, CA 90001" +280800,AAA Batteries (4-pack),2,2.99,10/24/19 22:17,"525 Wilson St, Los Angeles, CA 90001" +280801,Wired Headphones,1,11.99,10/04/19 17:36,"602 Meadow St, Seattle, WA 98101" +280802,AA Batteries (4-pack),1,3.84,10/08/19 10:40,"58 2nd St, New York City, NY 10001" +280803,34in Ultrawide Monitor,1,379.99,10/15/19 19:54,"471 7th St, Portland, OR 97035" +280804,Flatscreen TV,1,300,10/04/19 12:54,"324 Adams St, Atlanta, GA 30301" +280805,Wired Headphones,1,11.99,10/07/19 12:21,"69 Chestnut St, San Francisco, CA 94016" +280806,AA Batteries (4-pack),1,3.84,10/11/19 15:57,"76 Washington St, Seattle, WA 98101" +280807,Bose SoundSport Headphones,1,99.99,10/12/19 17:41,"691 Washington St, San Francisco, CA 94016" +280808,LG Dryer,1,600.0,10/26/19 17:35,"118 Lincoln St, Portland, OR 97035" +280809,Vareebadd Phone,1,400,10/03/19 20:15,"793 Lakeview St, San Francisco, CA 94016" +280809,USB-C Charging Cable,1,11.95,10/03/19 20:15,"793 Lakeview St, San Francisco, CA 94016" +280810,Apple Airpods Headphones,1,150,10/29/19 14:28,"222 11th St, San Francisco, CA 94016" +280811,USB-C Charging Cable,1,11.95,10/03/19 19:30,"315 Madison St, New York City, NY 10001" +280812,Wired Headphones,1,11.99,10/06/19 11:39,"494 5th St, New York City, NY 10001" +280813,Lightning Charging Cable,1,14.95,10/23/19 14:21,"280 Jackson St, Austin, TX 73301" +280814,AA Batteries (4-pack),2,3.84,10/01/19 09:15,"340 Cherry St, Austin, TX 73301" +280815,Lightning Charging Cable,2,14.95,10/01/19 17:14,"873 Main St, Los Angeles, CA 90001" +280816,Wired Headphones,1,11.99,10/19/19 14:16,"831 Main St, Los Angeles, CA 90001" +280817,Google Phone,1,600,10/13/19 09:45,"301 Highland St, Boston, MA 02215" +280818,Apple Airpods Headphones,1,150,10/12/19 15:27,"199 South St, San Francisco, CA 94016" +280819,Lightning Charging Cable,1,14.95,10/22/19 12:31,"530 North St, San Francisco, CA 94016" +280820,Apple Airpods Headphones,1,150,10/28/19 02:47,"617 Adams St, Seattle, WA 98101" +280821,Wired Headphones,1,11.99,10/01/19 17:31,"301 Hill St, Atlanta, GA 30301" +280822,Macbook Pro Laptop,1,1700,10/08/19 20:01,"966 9th St, Dallas, TX 75001" +280823,Wired Headphones,1,11.99,10/08/19 20:03,"850 Sunset St, Los Angeles, CA 90001" +280824,AA Batteries (4-pack),1,3.84,10/05/19 18:00,"499 River St, San Francisco, CA 94016" +280825,USB-C Charging Cable,1,11.95,10/17/19 16:06,"121 Meadow St, San Francisco, CA 94016" +280826,27in FHD Monitor,1,149.99,10/26/19 21:02,"505 Lincoln St, Boston, MA 02215" +280827,Apple Airpods Headphones,1,150,10/10/19 22:45,"134 Lincoln St, Boston, MA 02215" +280828,USB-C Charging Cable,1,11.95,10/29/19 00:21,"30 Main St, Boston, MA 02215" +280829,AA Batteries (4-pack),1,3.84,10/29/19 00:16,"411 Hickory St, Boston, MA 02215" +280830,AAA Batteries (4-pack),1,2.99,10/03/19 16:52,"949 Main St, Dallas, TX 75001" +280831,27in 4K Gaming Monitor,1,389.99,10/29/19 20:10,"774 Lake St, Boston, MA 02215" +280832,34in Ultrawide Monitor,1,379.99,10/06/19 22:31,"986 13th St, San Francisco, CA 94016" +280833,Wired Headphones,1,11.99,10/05/19 23:48,"228 North St, San Francisco, CA 94016" +280834,USB-C Charging Cable,1,11.95,10/07/19 10:44,"743 8th St, Atlanta, GA 30301" +280835,USB-C Charging Cable,1,11.95,10/31/19 11:23,"677 10th St, Seattle, WA 98101" +280836,AAA Batteries (4-pack),1,2.99,10/15/19 00:23,"484 South St, San Francisco, CA 94016" +280837,27in 4K Gaming Monitor,1,389.99,10/29/19 12:28,"535 Park St, Austin, TX 73301" +280838,iPhone,1,700,10/25/19 12:19,"766 6th St, San Francisco, CA 94016" +280839,AA Batteries (4-pack),3,3.84,10/31/19 14:45,"705 Cherry St, New York City, NY 10001" +280840,USB-C Charging Cable,1,11.95,10/05/19 14:11,"246 9th St, San Francisco, CA 94016" +280841,Wired Headphones,1,11.99,10/15/19 19:17,"422 Meadow St, Los Angeles, CA 90001" +280842,Apple Airpods Headphones,1,150,10/29/19 00:39,"618 Meadow St, Dallas, TX 75001" +280843,27in 4K Gaming Monitor,1,389.99,10/08/19 00:27,"272 Willow St, New York City, NY 10001" +280844,AAA Batteries (4-pack),1,2.99,10/20/19 12:39,"409 Church St, Dallas, TX 75001" +280845,AAA Batteries (4-pack),3,2.99,10/17/19 10:33,"981 7th St, Dallas, TX 75001" +280846,Lightning Charging Cable,1,14.95,10/23/19 20:40,"683 Meadow St, New York City, NY 10001" +280847,iPhone,1,700,10/19/19 11:54,"917 8th St, Seattle, WA 98101" +280848,Google Phone,1,600,10/03/19 19:27,"888 Elm St, San Francisco, CA 94016" +280849,Wired Headphones,1,11.99,10/08/19 18:13,"360 Highland St, Boston, MA 02215" +280850,Macbook Pro Laptop,1,1700,10/31/19 14:16,"286 Madison St, Los Angeles, CA 90001" +280851,ThinkPad Laptop,1,999.99,10/07/19 10:42,"357 Jefferson St, Boston, MA 02215" +280852,Macbook Pro Laptop,1,1700,10/29/19 14:51,"497 Johnson St, Seattle, WA 98101" +280853,27in FHD Monitor,1,149.99,10/07/19 15:45,"571 Wilson St, Los Angeles, CA 90001" +280854,AAA Batteries (4-pack),3,2.99,10/22/19 12:11,"992 6th St, Portland, ME 04101" +280855,Wired Headphones,1,11.99,10/19/19 10:30,"433 14th St, Dallas, TX 75001" +280856,USB-C Charging Cable,1,11.95,10/04/19 20:13,"45 Sunset St, Dallas, TX 75001" +280857,USB-C Charging Cable,1,11.95,10/05/19 22:48,"557 Sunset St, Portland, OR 97035" +280858,Apple Airpods Headphones,1,150,10/02/19 16:46,"707 Highland St, Dallas, TX 75001" +280859,Bose SoundSport Headphones,1,99.99,10/08/19 14:40,"715 Washington St, Portland, OR 97035" +280860,Wired Headphones,1,11.99,10/23/19 21:48,"260 Park St, San Francisco, CA 94016" +280861,20in Monitor,1,109.99,10/07/19 19:34,"806 11th St, Boston, MA 02215" +280862,AAA Batteries (4-pack),1,2.99,10/12/19 17:25,"469 14th St, Seattle, WA 98101" +280863,AA Batteries (4-pack),1,3.84,10/31/19 15:55,"209 North St, New York City, NY 10001" +280864,Apple Airpods Headphones,1,150,10/19/19 16:06,"313 Chestnut St, San Francisco, CA 94016" +280865,AA Batteries (4-pack),3,3.84,10/11/19 19:39,"480 Willow St, San Francisco, CA 94016" +280866,34in Ultrawide Monitor,1,379.99,10/02/19 20:24,"81 Cherry St, Boston, MA 02215" +280867,Bose SoundSport Headphones,1,99.99,10/10/19 12:31,"509 13th St, Boston, MA 02215" +280868,Lightning Charging Cable,1,14.95,10/26/19 20:55,"945 Chestnut St, Dallas, TX 75001" +280869,Bose SoundSport Headphones,1,99.99,10/01/19 17:54,"397 11th St, San Francisco, CA 94016" +280870,Wired Headphones,1,11.99,10/15/19 13:56,"289 North St, Los Angeles, CA 90001" +280871,Wired Headphones,1,11.99,10/08/19 12:48,"978 Walnut St, Austin, TX 73301" +280872,USB-C Charging Cable,1,11.95,10/29/19 20:29,"96 14th St, San Francisco, CA 94016" +280873,iPhone,1,700,10/19/19 23:12,"540 North St, Portland, OR 97035" +280874,AA Batteries (4-pack),3,3.84,10/06/19 14:01,"47 Wilson St, Seattle, WA 98101" +280875,AA Batteries (4-pack),2,3.84,10/04/19 14:49,"371 Washington St, San Francisco, CA 94016" +280876,AAA Batteries (4-pack),2,2.99,10/18/19 13:20,"133 5th St, San Francisco, CA 94016" +280877,AA Batteries (4-pack),2,3.84,10/14/19 20:56,"869 Johnson St, San Francisco, CA 94016" +280878,Bose SoundSport Headphones,1,99.99,10/22/19 22:17,"114 Maple St, New York City, NY 10001" +280879,Bose SoundSport Headphones,1,99.99,10/14/19 09:33,"505 Meadow St, San Francisco, CA 94016" +280880,AA Batteries (4-pack),3,3.84,10/27/19 19:03,"13 Jackson St, Dallas, TX 75001" +280881,USB-C Charging Cable,1,11.95,10/08/19 14:44,"122 Walnut St, San Francisco, CA 94016" +280882,AAA Batteries (4-pack),1,2.99,10/19/19 12:52,"232 10th St, San Francisco, CA 94016" +280883,AAA Batteries (4-pack),1,2.99,10/10/19 23:46,"991 Lakeview St, Austin, TX 73301" +280884,Apple Airpods Headphones,1,150,10/30/19 21:41,"254 4th St, Dallas, TX 75001" +280885,AA Batteries (4-pack),1,3.84,10/28/19 12:15,"203 Elm St, New York City, NY 10001" diff --git a/sales_data/Sales_September_2019.csv b/sales_data/Sales_September_2019.csv new file mode 100644 index 0000000..70ac5f7 --- /dev/null +++ b/sales_data/Sales_September_2019.csv @@ -0,0 +1,16280 @@ +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +249230,Macbook Pro Laptop,1,1700.0,09/09/19 10:17,"877 Lakeview St, Los Angeles, CA 90001" +249231,AA Batteries (4-pack),2,3.84,09/12/19 09:57,"406 Forest St, New York City, NY 10001" +249232,Wired Headphones,1,11.99,09/19/19 17:04,"45 Johnson St, Boston, MA 02215" +249233,USB-C Charging Cable,1,11.95,09/23/19 15:05,"229 Cherry St, San Francisco, CA 94016" +249234,USB-C Charging Cable,1,11.95,09/10/19 14:58,"598 South St, New York City, NY 10001" +249235,USB-C Charging Cable,1,11.95,09/09/19 15:18,"482 Chestnut St, Atlanta, GA 30301" +249236,27in 4K Gaming Monitor,1,389.99,09/25/19 18:55,"176 Main St, Atlanta, GA 30301" +249237,Macbook Pro Laptop,1,1700.0,09/04/19 19:07,"537 Pine St, Los Angeles, CA 90001" +249238,USB-C Charging Cable,1,11.95,09/08/19 21:37,"159 Forest St, Portland, ME 04101" +249239,Wired Headphones,1,11.99,09/11/19 09:45,"705 Meadow St, San Francisco, CA 94016" +249240,Apple Airpods Headphones,1,150.0,09/04/19 06:59,"65 Lake St, San Francisco, CA 94016" +249241,AA Batteries (4-pack),3,3.84,09/09/19 23:53,"571 Forest St, San Francisco, CA 94016" +249242,Macbook Pro Laptop,1,1700.0,09/24/19 05:18,"29 4th St, Seattle, WA 98101" +249243,AA Batteries (4-pack),1,3.84,09/25/19 13:53,"839 Walnut St, Los Angeles, CA 90001" +249244,27in 4K Gaming Monitor,1,389.99,09/22/19 10:59,"934 Sunset St, Atlanta, GA 30301" +249245,AAA Batteries (4-pack),1,2.99,09/22/19 13:37,"819 Park St, San Francisco, CA 94016" +249246,Bose SoundSport Headphones,1,99.99,09/10/19 09:16,"553 14th St, Dallas, TX 75001" +249247,iPhone,1,700.0,09/22/19 07:59,"915 Spruce St, New York City, NY 10001" +249247,Wired Headphones,1,11.99,09/22/19 07:59,"915 Spruce St, New York City, NY 10001" +,,,,, +249248,20in Monitor,1,109.99,09/07/19 15:55,"433 Spruce St, Boston, MA 02215" +249249,AAA Batteries (4-pack),1,2.99,09/17/19 19:03,"783 Hill St, New York City, NY 10001" +249250,Wired Headphones,1,11.99,09/30/19 11:57,"196 10th St, Boston, MA 02215" +249251,Wired Headphones,2,11.99,09/16/19 19:19,"204 4th St, New York City, NY 10001" +249252,AAA Batteries (4-pack),2,2.99,09/03/19 14:33,"164 Madison St, Atlanta, GA 30301" +249253,AAA Batteries (4-pack),2,2.99,09/08/19 10:41,"337 12th St, San Francisco, CA 94016" +249254,AAA Batteries (4-pack),2,2.99,09/18/19 09:01,"275 Main St, Portland, OR 97035" +249255,USB-C Charging Cable,1,11.95,09/04/19 17:02,"572 Meadow St, San Francisco, CA 94016" +249256,27in 4K Gaming Monitor,1,389.99,09/07/19 20:56,"832 Madison St, Boston, MA 02215" +249257,USB-C Charging Cable,1,11.95,09/07/19 20:42,"392 Cedar St, Atlanta, GA 30301" +249258,27in FHD Monitor,1,149.99,09/19/19 11:57,"403 Meadow St, Los Angeles, CA 90001" +249259,USB-C Charging Cable,1,11.95,09/12/19 16:00,"41 9th St, Austin, TX 73301" +249260,USB-C Charging Cable,1,11.95,09/24/19 14:35,"779 Wilson St, San Francisco, CA 94016" +249261,AAA Batteries (4-pack),2,2.99,09/22/19 14:23,"425 Center St, New York City, NY 10001" +249262,USB-C Charging Cable,1,11.95,09/05/19 23:12,"739 Hickory St, Boston, MA 02215" +249263,USB-C Charging Cable,1,11.95,09/14/19 23:35,"66 5th St, Boston, MA 02215" +249264,Google Phone,1,600,09/15/19 21:01,"545 Forest St, Seattle, WA 98101" +249264,USB-C Charging Cable,1,11.95,09/15/19 21:01,"545 Forest St, Seattle, WA 98101" +249265,Lightning Charging Cable,1,14.95,09/05/19 18:01,"953 Hickory St, Los Angeles, CA 90001" +249266,Flatscreen TV,1,300,09/17/19 21:57,"885 1st St, New York City, NY 10001" +249267,AAA Batteries (4-pack),3,2.99,09/06/19 02:06,"968 Washington St, Seattle, WA 98101" +249268,AA Batteries (4-pack),1,3.84,09/26/19 18:34,"435 2nd St, Boston, MA 02215" +249269,iPhone,1,700,09/23/19 14:22,"818 Adams St, Dallas, TX 75001" +249270,AA Batteries (4-pack),1,3.84,09/17/19 06:32,"856 12th St, Austin, TX 73301" +249271,AA Batteries (4-pack),1,3.84,09/26/19 12:55,"915 Chestnut St, Austin, TX 73301" +249272,USB-C Charging Cable,1,11.95,09/12/19 22:28,"116 Spruce St, Los Angeles, CA 90001" +249273,AAA Batteries (4-pack),2,2.99,09/30/19 17:21,"891 Jackson St, New York City, NY 10001" +249274,Bose SoundSport Headphones,1,99.99,09/18/19 12:40,"762 12th St, Portland, ME 04101" +249275,AAA Batteries (4-pack),1,2.99,09/09/19 16:32,"405 10th St, Austin, TX 73301" +249276,27in 4K Gaming Monitor,1,389.99,09/04/19 18:27,"465 Sunset St, Seattle, WA 98101" +249277,USB-C Charging Cable,1,11.95,09/27/19 12:57,"392 Spruce St, San Francisco, CA 94016" +249278,Wired Headphones,1,11.99,09/29/19 18:58,"201 Hill St, Dallas, TX 75001" +249279,Flatscreen TV,1,300,09/12/19 13:01,"966 Main St, Portland, ME 04101" +249280,ThinkPad Laptop,1,999.99,09/17/19 12:36,"712 Lincoln St, New York City, NY 10001" +249281,Apple Airpods Headphones,1,150,09/17/19 17:25,"321 7th St, Dallas, TX 75001" +249282,Lightning Charging Cable,1,14.95,09/12/19 21:07,"97 Pine St, Portland, ME 04101" +249283,Vareebadd Phone,1,400,09/14/19 10:22,"52 14th St, San Francisco, CA 94016" +249283,USB-C Charging Cable,1,11.95,09/14/19 10:22,"52 14th St, San Francisco, CA 94016" +249284,Lightning Charging Cable,1,14.95,09/04/19 12:38,"191 South St, Dallas, TX 75001" +249285,USB-C Charging Cable,1,11.95,09/28/19 00:22,"863 Dogwood St, Boston, MA 02215" +249286,Wired Headphones,1,11.99,09/10/19 19:28,"345 Park St, Los Angeles, CA 90001" +249287,USB-C Charging Cable,1,11.95,09/06/19 14:38,"69 Wilson St, Atlanta, GA 30301" +249288,AA Batteries (4-pack),1,3.84,09/13/19 21:25,"614 Cherry St, Atlanta, GA 30301" +249289,USB-C Charging Cable,1,11.95,09/22/19 13:11,"506 2nd St, Seattle, WA 98101" +249290,Google Phone,1,600,09/06/19 01:03,"694 Madison St, Seattle, WA 98101" +249291,USB-C Charging Cable,1,11.95,09/30/19 05:54,"591 Elm St, San Francisco, CA 94016" +249292,Google Phone,1,600,09/04/19 06:01,"130 5th St, San Francisco, CA 94016" +249293,27in 4K Gaming Monitor,1,389.99,09/25/19 13:49,"36 Wilson St, Atlanta, GA 30301" +249294,20in Monitor,1,109.99,09/30/19 15:55,"730 Ridge St, Seattle, WA 98101" +249295,Lightning Charging Cable,1,14.95,09/09/19 16:01,"639 6th St, Dallas, TX 75001" +249296,Apple Airpods Headphones,1,150,09/01/19 12:45,"829 1st St, New York City, NY 10001" +249297,Wired Headphones,1,11.99,09/27/19 13:47,"332 Chestnut St, San Francisco, CA 94016" +249298,USB-C Charging Cable,1,11.95,09/20/19 14:21,"882 Hill St, Los Angeles, CA 90001" +249299,Bose SoundSport Headphones,1,99.99,09/20/19 18:24,"720 14th St, San Francisco, CA 94016" +249300,Apple Airpods Headphones,1,150,09/10/19 21:12,"697 Forest St, Los Angeles, CA 90001" +249301,AA Batteries (4-pack),1,3.84,09/07/19 09:56,"553 Center St, Boston, MA 02215" +249302,AAA Batteries (4-pack),1,2.99,09/22/19 12:16,"919 Center St, Los Angeles, CA 90001" +249303,iPhone,1,700,09/29/19 22:26,"217 Dogwood St, Los Angeles, CA 90001" +249303,Lightning Charging Cable,1,14.95,09/29/19 22:26,"217 Dogwood St, Los Angeles, CA 90001" +249304,Lightning Charging Cable,1,14.95,09/10/19 07:12,"557 11th St, New York City, NY 10001" +249305,AAA Batteries (4-pack),1,2.99,09/06/19 13:05,"10 South St, San Francisco, CA 94016" +249306,Wired Headphones,1,11.99,09/01/19 22:09,"294 West St, Dallas, TX 75001" +249307,AA Batteries (4-pack),2,3.84,09/24/19 16:00,"42 Chestnut St, Boston, MA 02215" +249308,AA Batteries (4-pack),1,3.84,09/29/19 17:30,"629 Dogwood St, San Francisco, CA 94016" +249309,Bose SoundSport Headphones,1,99.99,09/28/19 19:01,"569 Hill St, Seattle, WA 98101" +249310,Bose SoundSport Headphones,1,99.99,09/05/19 13:24,"350 Cherry St, New York City, NY 10001" +249311,USB-C Charging Cable,2,11.95,09/23/19 10:23,"874 4th St, New York City, NY 10001" +249312,Bose SoundSport Headphones,1,99.99,09/13/19 22:15,"427 Ridge St, Atlanta, GA 30301" +249313,USB-C Charging Cable,1,11.95,09/12/19 08:01,"971 2nd St, Los Angeles, CA 90001" +249314,Lightning Charging Cable,1,14.95,09/19/19 03:28,"701 Jackson St, Atlanta, GA 30301" +249315,Wired Headphones,1,11.99,09/02/19 15:52,"883 West St, Los Angeles, CA 90001" +249316,iPhone,1,700,09/01/19 12:42,"561 Church St, Boston, MA 02215" +249317,Lightning Charging Cable,1,14.95,09/08/19 12:39,"140 4th St, Portland, ME 04101" +249318,AAA Batteries (4-pack),2,2.99,09/28/19 20:10,"558 12th St, Dallas, TX 75001" +249319,AA Batteries (4-pack),1,3.84,09/23/19 02:23,"947 Cedar St, Portland, OR 97035" +249320,Apple Airpods Headphones,1,150,09/03/19 18:39,"138 Pine St, Boston, MA 02215" +249321,Lightning Charging Cable,2,14.95,09/16/19 19:50,"203 Washington St, San Francisco, CA 94016" +249322,Wired Headphones,1,11.99,09/07/19 13:10,"468 Adams St, San Francisco, CA 94016" +249323,iPhone,1,700,09/30/19 13:13,"178 Main St, Austin, TX 73301" +249324,AA Batteries (4-pack),1,3.84,09/04/19 10:02,"507 Elm St, Atlanta, GA 30301" +249325,20in Monitor,1,109.99,09/19/19 10:40,"852 1st St, Boston, MA 02215" +249326,Bose SoundSport Headphones,1,99.99,09/03/19 21:55,"437 Cherry St, Los Angeles, CA 90001" +249327,Wired Headphones,1,11.99,09/09/19 14:09,"115 14th St, Austin, TX 73301" +249328,Lightning Charging Cable,1,14.95,09/10/19 22:02,"610 Church St, Los Angeles, CA 90001" +249329,iPhone,1,700,09/09/19 10:56,"848 Jackson St, Atlanta, GA 30301" +249329,Lightning Charging Cable,1,14.95,09/09/19 10:56,"848 Jackson St, Atlanta, GA 30301" +249330,Lightning Charging Cable,1,14.95,09/29/19 11:11,"788 Meadow St, San Francisco, CA 94016" +249331,Bose SoundSport Headphones,1,99.99,09/01/19 14:05,"185 11th St, Los Angeles, CA 90001" +249332,USB-C Charging Cable,1,11.95,09/10/19 10:39,"89 Walnut St, Los Angeles, CA 90001" +249333,AA Batteries (4-pack),1,3.84,09/28/19 13:27,"589 5th St, San Francisco, CA 94016" +249334,Wired Headphones,1,11.99,09/24/19 17:26,"194 North St, New York City, NY 10001" +249335,USB-C Charging Cable,1,11.95,09/08/19 04:06,"434 Hickory St, Los Angeles, CA 90001" +249336,27in 4K Gaming Monitor,1,389.99,09/08/19 11:10,"734 6th St, Portland, OR 97035" +249337,iPhone,1,700,09/02/19 05:25,"643 4th St, Atlanta, GA 30301" +249338,AAA Batteries (4-pack),1,2.99,09/06/19 15:51,"281 Church St, New York City, NY 10001" +249339,AA Batteries (4-pack),2,3.84,09/09/19 10:33,"936 5th St, San Francisco, CA 94016" +249340,USB-C Charging Cable,1,11.95,09/18/19 11:03,"109 Lake St, Portland, ME 04101" +249341,Macbook Pro Laptop,1,1700,09/29/19 21:08,"147 Wilson St, Boston, MA 02215" +249342,Apple Airpods Headphones,1,150,09/10/19 15:16,"247 Center St, Boston, MA 02215" +249343,Lightning Charging Cable,1,14.95,09/20/19 22:14,"847 7th St, Austin, TX 73301" +249344,27in FHD Monitor,1,149.99,09/05/19 19:57,"885 Johnson St, New York City, NY 10001" +249345,Lightning Charging Cable,1,14.95,09/21/19 20:52,"946 11th St, Atlanta, GA 30301" +249346,AA Batteries (4-pack),1,3.84,09/05/19 17:10,"25 4th St, Boston, MA 02215" +249347,Lightning Charging Cable,1,14.95,09/19/19 18:22,"284 Cedar St, San Francisco, CA 94016" +249348,AA Batteries (4-pack),1,3.84,09/15/19 21:50,"398 Highland St, Portland, OR 97035" +249349,AA Batteries (4-pack),2,3.84,09/16/19 21:12,"444 Adams St, Dallas, TX 75001" +249350,Wired Headphones,1,11.99,09/29/19 15:46,"658 Adams St, San Francisco, CA 94016" +249351,Lightning Charging Cable,1,14.95,09/09/19 20:05,"764 Johnson St, New York City, NY 10001" +249352,Bose SoundSport Headphones,1,99.99,09/15/19 15:07,"535 Church St, New York City, NY 10001" +249353,USB-C Charging Cable,1,11.95,09/26/19 18:58,"175 Ridge St, New York City, NY 10001" +249354,Apple Airpods Headphones,1,150,09/04/19 20:56,"883 4th St, Seattle, WA 98101" +249355,Wired Headphones,1,11.99,09/04/19 19:53,"245 4th St, Boston, MA 02215" +249356,27in 4K Gaming Monitor,1,389.99,09/10/19 11:20,"613 Hill St, Seattle, WA 98101" +249357,Apple Airpods Headphones,1,150,09/25/19 12:47,"532 4th St, San Francisco, CA 94016" +249358,AAA Batteries (4-pack),1,2.99,09/14/19 16:25,"60 Cedar St, San Francisco, CA 94016" +249359,Wired Headphones,1,11.99,09/12/19 01:30,"98 6th St, Boston, MA 02215" +249360,USB-C Charging Cable,1,11.95,09/18/19 14:16,"824 Cherry St, Dallas, TX 75001" +249361,27in FHD Monitor,1,149.99,09/17/19 17:42,"615 Wilson St, San Francisco, CA 94016" +249362,Bose SoundSport Headphones,1,99.99,09/24/19 10:30,"989 Cedar St, Boston, MA 02215" +249363,27in FHD Monitor,1,149.99,09/09/19 20:15,"766 Lakeview St, Los Angeles, CA 90001" +249364,Bose SoundSport Headphones,1,99.99,09/07/19 10:45,"534 Wilson St, Los Angeles, CA 90001" +249365,Google Phone,1,600,09/22/19 20:42,"884 Madison St, Los Angeles, CA 90001" +249365,Apple Airpods Headphones,1,150,09/22/19 20:42,"884 Madison St, Los Angeles, CA 90001" +249366,Wired Headphones,1,11.99,09/04/19 22:12,"412 River St, New York City, NY 10001" +249367,Bose SoundSport Headphones,1,99.99,09/26/19 14:56,"461 Pine St, San Francisco, CA 94016" +249368,AA Batteries (4-pack),1,3.84,09/20/19 17:43,"465 Willow St, New York City, NY 10001" +249369,Bose SoundSport Headphones,1,99.99,09/02/19 16:11,"290 9th St, New York City, NY 10001" +249370,AA Batteries (4-pack),1,3.84,09/05/19 22:07,"122 Cedar St, Seattle, WA 98101" +249371,USB-C Charging Cable,1,11.95,09/17/19 15:30,"661 Meadow St, New York City, NY 10001" +249372,Google Phone,1,600,09/08/19 11:02,"637 Lake St, San Francisco, CA 94016" +249372,USB-C Charging Cable,1,11.95,09/08/19 11:02,"637 Lake St, San Francisco, CA 94016" +249373,USB-C Charging Cable,1,11.95,09/01/19 08:26,"266 Madison St, New York City, NY 10001" +249374,Lightning Charging Cable,1,14.95,09/28/19 14:56,"222 Highland St, Atlanta, GA 30301" +249375,AAA Batteries (4-pack),1,2.99,09/29/19 08:39,"60 Lake St, Portland, OR 97035" +249376,USB-C Charging Cable,1,11.95,09/13/19 16:10,"736 Hill St, Dallas, TX 75001" +249377,AAA Batteries (4-pack),1,2.99,09/25/19 21:05,"987 Cherry St, San Francisco, CA 94016" +249378,Google Phone,1,600,09/13/19 12:17,"446 Spruce St, Dallas, TX 75001" +249379,USB-C Charging Cable,1,11.95,09/11/19 08:54,"803 14th St, New York City, NY 10001" +249380,AA Batteries (4-pack),2,3.84,09/20/19 08:18,"846 2nd St, New York City, NY 10001" +249381,AA Batteries (4-pack),1,3.84,09/25/19 20:53,"615 6th St, Austin, TX 73301" +249382,Lightning Charging Cable,1,14.95,09/13/19 09:23,"747 Ridge St, Los Angeles, CA 90001" +249383,Macbook Pro Laptop,1,1700,09/02/19 20:41,"759 Church St, Atlanta, GA 30301" +249384,Macbook Pro Laptop,1,1700,09/20/19 16:41,"810 Church St, Austin, TX 73301" +249385,Bose SoundSport Headphones,1,99.99,09/09/19 09:44,"376 7th St, Portland, ME 04101" +249386,ThinkPad Laptop,1,999.99,09/05/19 13:19,"143 Pine St, Dallas, TX 75001" +249387,34in Ultrawide Monitor,1,379.99,09/26/19 17:40,"601 14th St, Boston, MA 02215" +249388,AAA Batteries (4-pack),1,2.99,09/22/19 23:50,"610 2nd St, Los Angeles, CA 90001" +249389,USB-C Charging Cable,1,11.95,09/02/19 16:02,"776 11th St, Los Angeles, CA 90001" +249390,Bose SoundSport Headphones,1,99.99,09/20/19 18:21,"498 Cherry St, San Francisco, CA 94016" +249390,AA Batteries (4-pack),3,3.84,09/20/19 18:21,"498 Cherry St, San Francisco, CA 94016" +249391,Lightning Charging Cable,1,14.95,09/14/19 18:47,"211 Spruce St, Boston, MA 02215" +249392,Macbook Pro Laptop,1,1700,09/22/19 10:04,"218 1st St, San Francisco, CA 94016" +249393,AAA Batteries (4-pack),2,2.99,09/17/19 12:43,"616 Dogwood St, San Francisco, CA 94016" +249394,Apple Airpods Headphones,1,150,09/15/19 19:19,"350 6th St, Dallas, TX 75001" +249394,Bose SoundSport Headphones,1,99.99,09/15/19 19:19,"350 6th St, Dallas, TX 75001" +249395,Flatscreen TV,1,300,09/23/19 18:18,"641 Church St, Seattle, WA 98101" +249396,USB-C Charging Cable,1,11.95,09/07/19 15:31,"722 Hill St, Atlanta, GA 30301" +249397,Bose SoundSport Headphones,1,99.99,09/12/19 10:09,"72 Lakeview St, San Francisco, CA 94016" +249398,USB-C Charging Cable,1,11.95,09/24/19 18:22,"380 Chestnut St, San Francisco, CA 94016" +249399,Lightning Charging Cable,1,14.95,09/22/19 15:08,"905 12th St, San Francisco, CA 94016" +249400,AA Batteries (4-pack),1,3.84,09/29/19 00:18,"426 11th St, San Francisco, CA 94016" +249401,Lightning Charging Cable,1,14.95,09/02/19 13:01,"380 Center St, Portland, OR 97035" +249402,iPhone,1,700,09/14/19 22:26,"900 Lakeview St, Atlanta, GA 30301" +249403,27in FHD Monitor,1,149.99,09/13/19 05:15,"1 11th St, San Francisco, CA 94016" +249404,Lightning Charging Cable,1,14.95,09/12/19 18:24,"771 Sunset St, Boston, MA 02215" +249405,Wired Headphones,1,11.99,09/10/19 10:04,"559 9th St, San Francisco, CA 94016" +249406,Wired Headphones,1,11.99,09/08/19 09:27,"7 Highland St, San Francisco, CA 94016" +249407,Apple Airpods Headphones,1,150,09/28/19 09:41,"39 Jackson St, New York City, NY 10001" +249408,iPhone,1,700,09/06/19 17:56,"13 9th St, Atlanta, GA 30301" +249408,Apple Airpods Headphones,1,150,09/06/19 17:56,"13 9th St, Atlanta, GA 30301" +249409,27in FHD Monitor,1,149.99,09/20/19 20:35,"864 9th St, Portland, OR 97035" +249410,27in 4K Gaming Monitor,1,389.99,09/22/19 11:27,"176 Hickory St, Atlanta, GA 30301" +249411,AAA Batteries (4-pack),1,2.99,10/01/19 00:39,"969 Center St, San Francisco, CA 94016" +249412,USB-C Charging Cable,1,11.95,09/28/19 18:58,"421 Meadow St, New York City, NY 10001" +249413,Apple Airpods Headphones,1,150,09/12/19 20:51,"898 4th St, New York City, NY 10001" +249414,AAA Batteries (4-pack),3,2.99,09/27/19 11:48,"697 Spruce St, Boston, MA 02215" +249415,AA Batteries (4-pack),1,3.84,09/15/19 11:43,"318 8th St, Boston, MA 02215" +249416,USB-C Charging Cable,1,11.95,09/24/19 16:14,"626 North St, New York City, NY 10001" +249417,Lightning Charging Cable,1,14.95,09/08/19 13:42,"337 Cherry St, Boston, MA 02215" +249418,AA Batteries (4-pack),1,3.84,09/13/19 09:50,"773 Pine St, Los Angeles, CA 90001" +249419,iPhone,1,700,09/08/19 00:03,"192 North St, Los Angeles, CA 90001" +249420,27in 4K Gaming Monitor,1,389.99,09/03/19 18:06,"478 8th St, Seattle, WA 98101" +249421,AAA Batteries (4-pack),1,2.99,09/18/19 22:48,"694 Cherry St, Boston, MA 02215" +249422,Macbook Pro Laptop,1,1700,09/14/19 18:37,"274 Lakeview St, San Francisco, CA 94016" +249423,Apple Airpods Headphones,1,150,09/18/19 11:58,"36 Lake St, New York City, NY 10001" +249424,AAA Batteries (4-pack),1,2.99,09/05/19 15:06,"453 14th St, Seattle, WA 98101" +249425,AAA Batteries (4-pack),1,2.99,09/02/19 00:11,"961 Lincoln St, Austin, TX 73301" +249426,LG Dryer,1,600.0,09/17/19 20:56,"9 Hill St, San Francisco, CA 94016" +249427,USB-C Charging Cable,1,11.95,09/05/19 19:51,"510 Ridge St, Los Angeles, CA 90001" +249428,AA Batteries (4-pack),3,3.84,09/20/19 13:00,"329 West St, Atlanta, GA 30301" +249429,Bose SoundSport Headphones,1,99.99,09/01/19 08:13,"855 Chestnut St, Boston, MA 02215" +249430,Bose SoundSport Headphones,1,99.99,09/28/19 15:37,"13 2nd St, Austin, TX 73301" +249431,AAA Batteries (4-pack),2,2.99,09/07/19 11:19,"239 Center St, New York City, NY 10001" +249432,Google Phone,1,600,09/16/19 00:30,"524 River St, San Francisco, CA 94016" +249433,Lightning Charging Cable,1,14.95,09/10/19 20:42,"36 13th St, Dallas, TX 75001" +249434,Wired Headphones,1,11.99,09/09/19 23:32,"203 Park St, Atlanta, GA 30301" +249435,Lightning Charging Cable,1,14.95,09/21/19 08:14,"31 Madison St, Los Angeles, CA 90001" +249436,AA Batteries (4-pack),1,3.84,09/24/19 08:36,"804 Madison St, Atlanta, GA 30301" +249437,Lightning Charging Cable,1,14.95,09/22/19 10:33,"607 North St, Portland, OR 97035" +249438,USB-C Charging Cable,1,11.95,09/10/19 21:40,"585 4th St, San Francisco, CA 94016" +249439,AA Batteries (4-pack),1,3.84,09/17/19 11:56,"734 Johnson St, New York City, NY 10001" +249440,27in FHD Monitor,1,149.99,09/24/19 21:24,"899 Walnut St, San Francisco, CA 94016" +249441,20in Monitor,1,109.99,09/22/19 23:01,"146 11th St, San Francisco, CA 94016" +249442,Bose SoundSport Headphones,1,99.99,09/29/19 18:24,"604 River St, Boston, MA 02215" +249443,Lightning Charging Cable,1,14.95,09/21/19 11:17,"810 8th St, Dallas, TX 75001" +249444,Flatscreen TV,1,300,09/01/19 21:59,"405 12th St, New York City, NY 10001" +249445,Lightning Charging Cable,1,14.95,09/09/19 12:34,"180 Ridge St, Los Angeles, CA 90001" +249446,Macbook Pro Laptop,1,1700,09/14/19 22:29,"721 1st St, Los Angeles, CA 90001" +249447,Vareebadd Phone,1,400,09/17/19 13:19,"112 Lake St, Boston, MA 02215" +249448,Apple Airpods Headphones,1,150,09/10/19 09:00,"293 Main St, Boston, MA 02215" +249449,Google Phone,1,600,09/29/19 22:28,"593 Elm St, San Francisco, CA 94016" +249450,AAA Batteries (4-pack),2,2.99,09/16/19 19:46,"400 Highland St, Portland, OR 97035" +249451,Bose SoundSport Headphones,1,99.99,09/11/19 19:04,"734 Forest St, Austin, TX 73301" +249452,Wired Headphones,1,11.99,09/07/19 20:38,"308 Cherry St, Dallas, TX 75001" +249453,Wired Headphones,1,11.99,09/04/19 20:02,"876 Forest St, Los Angeles, CA 90001" +249454,AA Batteries (4-pack),1,3.84,09/06/19 09:24,"845 Ridge St, Austin, TX 73301" +249455,Lightning Charging Cable,1,14.95,09/30/19 13:01,"435 Maple St, Los Angeles, CA 90001" +249456,iPhone,1,700,09/03/19 06:54,"344 Sunset St, Austin, TX 73301" +249457,Lightning Charging Cable,1,14.95,09/27/19 21:03,"981 Main St, Atlanta, GA 30301" +249458,Apple Airpods Headphones,1,150,09/08/19 21:55,"608 Ridge St, San Francisco, CA 94016" +249459,Apple Airpods Headphones,1,150,09/08/19 20:18,"913 2nd St, Seattle, WA 98101" +249460,Wired Headphones,1,11.99,09/23/19 13:33,"824 Washington St, Dallas, TX 75001" +249461,USB-C Charging Cable,1,11.95,09/03/19 20:16,"36 10th St, Atlanta, GA 30301" +249462,Flatscreen TV,1,300,09/27/19 16:30,"261 Johnson St, San Francisco, CA 94016" +249463,34in Ultrawide Monitor,1,379.99,09/26/19 22:21,"487 10th St, Los Angeles, CA 90001" +249463,34in Ultrawide Monitor,1,379.99,09/26/19 22:21,"487 10th St, Los Angeles, CA 90001" +249464,USB-C Charging Cable,1,11.95,09/29/19 12:22,"316 Willow St, Atlanta, GA 30301" +249465,Wired Headphones,1,11.99,09/17/19 07:17,"940 River St, Boston, MA 02215" +249466,USB-C Charging Cable,2,11.95,09/15/19 14:25,"556 Center St, San Francisco, CA 94016" +249467,34in Ultrawide Monitor,1,379.99,09/13/19 20:44,"947 Hill St, Los Angeles, CA 90001" +249468,27in FHD Monitor,1,149.99,09/04/19 12:50,"961 4th St, Dallas, TX 75001" +249469,AA Batteries (4-pack),3,3.84,09/15/19 14:15,"110 Lakeview St, Boston, MA 02215" +249470,27in FHD Monitor,1,149.99,09/08/19 10:07,"556 Jackson St, San Francisco, CA 94016" +249471,Lightning Charging Cable,1,14.95,09/02/19 11:18,"275 Hickory St, Seattle, WA 98101" +249472,Apple Airpods Headphones,1,150,09/10/19 12:19,"163 Maple St, New York City, NY 10001" +249473,27in FHD Monitor,1,149.99,09/07/19 11:45,"795 River St, Dallas, TX 75001" +249474,AA Batteries (4-pack),1,3.84,09/08/19 00:35,"317 6th St, Dallas, TX 75001" +249475,USB-C Charging Cable,1,11.95,09/01/19 13:39,"925 2nd St, Dallas, TX 75001" +249476,USB-C Charging Cable,1,11.95,09/05/19 12:35,"486 14th St, Portland, OR 97035" +249477,27in FHD Monitor,1,149.99,09/09/19 15:02,"867 Sunset St, New York City, NY 10001" +249478,USB-C Charging Cable,1,11.95,09/01/19 19:31,"338 Adams St, Dallas, TX 75001" +249479,Bose SoundSport Headphones,1,99.99,09/14/19 16:35,"884 Hickory St, Los Angeles, CA 90001" +249480,27in FHD Monitor,1,149.99,09/10/19 08:13,"738 Madison St, Boston, MA 02215" +249481,27in FHD Monitor,1,149.99,09/11/19 22:25,"207 Ridge St, San Francisco, CA 94016" +249482,Lightning Charging Cable,1,14.95,09/02/19 11:31,"8 Lincoln St, San Francisco, CA 94016" +249483,Apple Airpods Headphones,1,150,09/02/19 21:03,"570 Wilson St, Portland, ME 04101" +249484,Macbook Pro Laptop,1,1700,09/13/19 11:46,"307 Highland St, San Francisco, CA 94016" +249485,Bose SoundSport Headphones,1,99.99,09/29/19 21:00,"472 Center St, San Francisco, CA 94016" +249486,USB-C Charging Cable,1,11.95,09/04/19 04:11,"927 Spruce St, Atlanta, GA 30301" +249487,AAA Batteries (4-pack),1,2.99,09/04/19 08:16,"529 Church St, Atlanta, GA 30301" +249488,Apple Airpods Headphones,1,150,09/30/19 20:45,"875 7th St, New York City, NY 10001" +249489,AA Batteries (4-pack),1,3.84,09/01/19 21:46,"41 South St, Portland, OR 97035" +249490,AAA Batteries (4-pack),1,2.99,09/16/19 14:01,"668 9th St, San Francisco, CA 94016" +249491,Bose SoundSport Headphones,1,99.99,09/11/19 03:36,"456 Lakeview St, New York City, NY 10001" +249492,Apple Airpods Headphones,1,150,09/06/19 01:52,"933 Maple St, Boston, MA 02215" +249493,27in FHD Monitor,1,149.99,09/09/19 10:08,"523 Wilson St, Atlanta, GA 30301" +249494,Wired Headphones,1,11.99,09/11/19 16:47,"74 6th St, New York City, NY 10001" +249495,Lightning Charging Cable,1,14.95,09/13/19 15:21,"132 Lake St, Seattle, WA 98101" +249496,Lightning Charging Cable,1,14.95,09/21/19 14:39,"36 Wilson St, New York City, NY 10001" +249497,Lightning Charging Cable,1,14.95,09/06/19 20:12,"40 Jefferson St, Dallas, TX 75001" +249498,Apple Airpods Headphones,1,150,09/19/19 19:21,"948 6th St, Boston, MA 02215" +249499,Bose SoundSport Headphones,1,99.99,09/21/19 10:42,"666 4th St, Seattle, WA 98101" +249500,iPhone,1,700,09/19/19 21:03,"194 Park St, Los Angeles, CA 90001" +249501,ThinkPad Laptop,1,999.99,09/25/19 17:51,"728 Walnut St, Atlanta, GA 30301" +249502,Bose SoundSport Headphones,1,99.99,09/06/19 00:58,"782 River St, Los Angeles, CA 90001" +249503,Bose SoundSport Headphones,1,99.99,09/12/19 18:27,"499 Jackson St, Portland, OR 97035" +249504,Lightning Charging Cable,1,14.95,09/03/19 14:13,"672 Jackson St, Dallas, TX 75001" +249505,Bose SoundSport Headphones,1,99.99,09/15/19 18:32,"163 Hill St, Boston, MA 02215" +249506,Wired Headphones,1,11.99,09/24/19 21:18,"355 Church St, San Francisco, CA 94016" +249507,AAA Batteries (4-pack),1,2.99,09/29/19 09:58,"1 Pine St, Seattle, WA 98101" +249508,AA Batteries (4-pack),1,3.84,09/17/19 17:03,"443 1st St, Dallas, TX 75001" +249509,AA Batteries (4-pack),2,3.84,09/08/19 14:46,"735 Pine St, Los Angeles, CA 90001" +249510,34in Ultrawide Monitor,1,379.99,09/17/19 08:15,"964 Chestnut St, San Francisco, CA 94016" +249511,AA Batteries (4-pack),1,3.84,09/02/19 12:11,"290 1st St, Los Angeles, CA 90001" +249512,Lightning Charging Cable,1,14.95,09/08/19 22:24,"242 Lincoln St, Boston, MA 02215" +249513,AAA Batteries (4-pack),1,2.99,09/21/19 13:57,"494 Lincoln St, Austin, TX 73301" +249514,Macbook Pro Laptop,1,1700,09/24/19 23:21,"3 Maple St, San Francisco, CA 94016" +249515,27in FHD Monitor,1,149.99,09/02/19 20:45,"107 Forest St, Seattle, WA 98101" +249515,Wired Headphones,1,11.99,09/02/19 20:45,"107 Forest St, Seattle, WA 98101" +249516,27in FHD Monitor,1,149.99,09/11/19 11:38,"260 River St, Boston, MA 02215" +249517,LG Washing Machine,1,600.0,09/13/19 21:31,"129 Center St, Portland, OR 97035" +249518,Bose SoundSport Headphones,1,99.99,09/12/19 00:21,"785 Walnut St, San Francisco, CA 94016" +249519,AAA Batteries (4-pack),1,2.99,09/09/19 10:23,"58 9th St, New York City, NY 10001" +249520,Lightning Charging Cable,1,14.95,09/03/19 21:22,"565 South St, Boston, MA 02215" +249521,Apple Airpods Headphones,1,150,09/06/19 12:44,"278 2nd St, Atlanta, GA 30301" +249522,Wired Headphones,2,11.99,09/20/19 20:42,"334 Cherry St, San Francisco, CA 94016" +249522,AAA Batteries (4-pack),1,2.99,09/20/19 20:42,"334 Cherry St, San Francisco, CA 94016" +249523,Wired Headphones,1,11.99,09/08/19 23:03,"873 Jefferson St, Atlanta, GA 30301" +249524,AA Batteries (4-pack),3,3.84,09/30/19 23:22,"451 River St, San Francisco, CA 94016" +249525,Lightning Charging Cable,1,14.95,09/20/19 20:36,"68 Park St, San Francisco, CA 94016" +249526,Bose SoundSport Headphones,1,99.99,09/28/19 09:06,"731 Highland St, Seattle, WA 98101" +249527,AA Batteries (4-pack),1,3.84,09/09/19 06:56,"912 Chestnut St, New York City, NY 10001" +249528,Apple Airpods Headphones,1,150,09/10/19 21:45,"817 12th St, Los Angeles, CA 90001" +249529,Apple Airpods Headphones,1,150,09/09/19 11:25,"747 Jackson St, San Francisco, CA 94016" +249530,USB-C Charging Cable,1,11.95,09/02/19 21:08,"638 8th St, Los Angeles, CA 90001" +249531,Bose SoundSport Headphones,1,99.99,09/13/19 22:04,"209 14th St, New York City, NY 10001" +249532,AA Batteries (4-pack),1,3.84,09/26/19 07:51,"447 12th St, Atlanta, GA 30301" +249533,AA Batteries (4-pack),1,3.84,09/10/19 13:05,"396 Meadow St, Boston, MA 02215" +249534,Apple Airpods Headphones,1,150,09/30/19 14:15,"735 9th St, Atlanta, GA 30301" +249535,AA Batteries (4-pack),1,3.84,09/27/19 12:11,"970 Lakeview St, Dallas, TX 75001" +249536,AAA Batteries (4-pack),1,2.99,09/16/19 17:25,"113 Lake St, New York City, NY 10001" +249536,27in 4K Gaming Monitor,1,389.99,09/16/19 17:25,"113 Lake St, New York City, NY 10001" +249537,Macbook Pro Laptop,1,1700,09/02/19 15:48,"923 11th St, New York City, NY 10001" +249538,USB-C Charging Cable,1,11.95,09/07/19 14:30,"102 Forest St, Los Angeles, CA 90001" +249539,Lightning Charging Cable,1,14.95,09/14/19 08:35,"412 9th St, Los Angeles, CA 90001" +249540,27in FHD Monitor,1,149.99,09/23/19 12:51,"273 Lakeview St, Dallas, TX 75001" +249541,USB-C Charging Cable,2,11.95,09/24/19 08:15,"163 River St, Atlanta, GA 30301" +249542,Macbook Pro Laptop,1,1700,09/29/19 13:36,"334 Walnut St, New York City, NY 10001" +249543,LG Washing Machine,1,600.0,09/21/19 14:08,"480 Maple St, Seattle, WA 98101" +249544,Apple Airpods Headphones,1,150,09/30/19 12:28,"352 Main St, Los Angeles, CA 90001" +249545,Apple Airpods Headphones,1,150,09/28/19 23:08,"197 Church St, New York City, NY 10001" +249546,USB-C Charging Cable,1,11.95,09/20/19 08:56,"690 9th St, Seattle, WA 98101" +249547,Lightning Charging Cable,1,14.95,09/10/19 15:58,"502 Highland St, Los Angeles, CA 90001" +249548,USB-C Charging Cable,1,11.95,09/21/19 12:47,"540 Johnson St, New York City, NY 10001" +249549,AA Batteries (4-pack),1,3.84,09/27/19 11:24,"993 Park St, San Francisco, CA 94016" +249550,Bose SoundSport Headphones,1,99.99,09/25/19 00:33,"832 Jackson St, Dallas, TX 75001" +249551,ThinkPad Laptop,1,999.99,09/22/19 13:13,"875 Elm St, New York City, NY 10001" +249552,Bose SoundSport Headphones,1,99.99,09/18/19 11:27,"49 River St, San Francisco, CA 94016" +249553,AAA Batteries (4-pack),1,2.99,09/21/19 21:52,"303 11th St, Los Angeles, CA 90001" +249554,Lightning Charging Cable,1,14.95,09/04/19 09:12,"671 Main St, New York City, NY 10001" +249555,Lightning Charging Cable,1,14.95,09/01/19 11:44,"600 Church St, Portland, OR 97035" +249556,Lightning Charging Cable,1,14.95,09/29/19 15:56,"127 8th St, Portland, ME 04101" +249557,Apple Airpods Headphones,1,150,09/29/19 17:44,"738 Cherry St, Los Angeles, CA 90001" +249558,Wired Headphones,1,11.99,09/05/19 20:26,"970 Highland St, Los Angeles, CA 90001" +249559,Vareebadd Phone,1,400,09/25/19 14:42,"155 Center St, San Francisco, CA 94016" +249559,USB-C Charging Cable,1,11.95,09/25/19 14:42,"155 Center St, San Francisco, CA 94016" +249560,34in Ultrawide Monitor,1,379.99,09/28/19 18:36,"658 Hill St, San Francisco, CA 94016" +249561,Flatscreen TV,1,300,09/06/19 09:00,"881 1st St, Boston, MA 02215" +249562,AAA Batteries (4-pack),1,2.99,09/03/19 21:03,"879 Chestnut St, Los Angeles, CA 90001" +249563,Apple Airpods Headphones,1,150,09/23/19 07:21,"549 Madison St, Austin, TX 73301" +249564,Wired Headphones,1,11.99,09/15/19 10:34,"554 Center St, Seattle, WA 98101" +249565,AAA Batteries (4-pack),1,2.99,09/06/19 19:35,"624 Main St, Los Angeles, CA 90001" +249566,Wired Headphones,1,11.99,09/16/19 13:33,"500 10th St, New York City, NY 10001" +249567,34in Ultrawide Monitor,1,379.99,09/05/19 16:09,"697 2nd St, San Francisco, CA 94016" +249568,27in FHD Monitor,1,149.99,09/24/19 09:06,"457 Hill St, Austin, TX 73301" +249569,iPhone,1,700,09/20/19 17:21,"290 Lakeview St, San Francisco, CA 94016" +249570,ThinkPad Laptop,1,999.99,09/25/19 17:09,"506 Cherry St, Portland, OR 97035" +249571,34in Ultrawide Monitor,1,379.99,09/27/19 11:02,"276 Jefferson St, San Francisco, CA 94016" +249572,Apple Airpods Headphones,1,150,09/25/19 18:34,"339 Lincoln St, Los Angeles, CA 90001" +249573,Flatscreen TV,1,300,09/28/19 15:08,"702 Cedar St, Boston, MA 02215" +249574,USB-C Charging Cable,1,11.95,09/15/19 11:05,"205 Lincoln St, Seattle, WA 98101" +249575,AA Batteries (4-pack),1,3.84,09/28/19 06:55,"745 Chestnut St, Boston, MA 02215" +249576,AAA Batteries (4-pack),1,2.99,09/25/19 20:04,"802 10th St, Austin, TX 73301" +249577,Lightning Charging Cable,1,14.95,09/30/19 09:05,"166 Highland St, Austin, TX 73301" +249578,AAA Batteries (4-pack),2,2.99,09/23/19 22:25,"29 Spruce St, Los Angeles, CA 90001" +249579,34in Ultrawide Monitor,1,379.99,09/10/19 19:35,"412 Hickory St, Austin, TX 73301" +249580,AA Batteries (4-pack),1,3.84,09/21/19 19:54,"327 Walnut St, New York City, NY 10001" +249581,USB-C Charging Cable,1,11.95,09/21/19 12:15,"232 Maple St, Seattle, WA 98101" +249582,Macbook Pro Laptop,1,1700,09/05/19 13:29,"697 Walnut St, New York City, NY 10001" +249583,iPhone,1,700,09/06/19 18:04,"854 14th St, Portland, ME 04101" +249583,Lightning Charging Cable,1,14.95,09/06/19 18:04,"854 14th St, Portland, ME 04101" +249584,iPhone,1,700,09/08/19 05:55,"959 Johnson St, Austin, TX 73301" +249585,USB-C Charging Cable,1,11.95,09/01/19 09:55,"543 5th St, Boston, MA 02215" +249586,Flatscreen TV,1,300,09/30/19 13:02,"33 10th St, Seattle, WA 98101" +249587,27in 4K Gaming Monitor,1,389.99,09/29/19 11:14,"997 Sunset St, New York City, NY 10001" +249588,Apple Airpods Headphones,1,150,09/03/19 21:16,"665 1st St, Seattle, WA 98101" +249589,AA Batteries (4-pack),1,3.84,09/04/19 00:21,"988 Pine St, Los Angeles, CA 90001" +249590,Lightning Charging Cable,1,14.95,09/28/19 23:06,"196 7th St, Dallas, TX 75001" +249591,Apple Airpods Headphones,1,150,09/18/19 09:51,"376 9th St, Dallas, TX 75001" +249592,Macbook Pro Laptop,1,1700,09/27/19 16:01,"949 South St, Seattle, WA 98101" +249593,AAA Batteries (4-pack),1,2.99,09/19/19 09:58,"480 2nd St, Los Angeles, CA 90001" +249594,Apple Airpods Headphones,1,150,09/11/19 21:17,"230 6th St, New York City, NY 10001" +249595,Bose SoundSport Headphones,1,99.99,09/12/19 12:41,"478 Hickory St, Boston, MA 02215" +249596,20in Monitor,1,109.99,09/06/19 11:38,"886 Cedar St, Austin, TX 73301" +249597,Lightning Charging Cable,1,14.95,09/07/19 07:47,"763 10th St, San Francisco, CA 94016" +249598,Lightning Charging Cable,1,14.95,09/18/19 23:33,"80 5th St, San Francisco, CA 94016" +249599,Macbook Pro Laptop,1,1700,09/13/19 22:07,"570 Madison St, Boston, MA 02215" +249600,USB-C Charging Cable,1,11.95,09/11/19 11:23,"999 Church St, San Francisco, CA 94016" +249601,Apple Airpods Headphones,1,150,09/12/19 16:26,"55 Forest St, San Francisco, CA 94016" +249602,iPhone,1,700,09/10/19 21:22,"563 Forest St, San Francisco, CA 94016" +249602,Wired Headphones,1,11.99,09/10/19 21:22,"563 Forest St, San Francisco, CA 94016" +249603,Apple Airpods Headphones,1,150,09/04/19 10:41,"442 Willow St, Los Angeles, CA 90001" +249604,AA Batteries (4-pack),2,3.84,09/05/19 09:57,"374 4th St, San Francisco, CA 94016" +249605,Lightning Charging Cable,1,14.95,09/30/19 20:26,"389 8th St, Portland, OR 97035" +249606,Lightning Charging Cable,1,14.95,09/23/19 11:58,"198 Pine St, New York City, NY 10001" +249607,AA Batteries (4-pack),1,3.84,09/30/19 14:06,"470 Cedar St, San Francisco, CA 94016" +249608,Vareebadd Phone,1,400,09/09/19 08:19,"46 North St, Los Angeles, CA 90001" +249609,iPhone,1,700,09/14/19 17:55,"820 9th St, New York City, NY 10001" +249610,iPhone,1,700,09/22/19 10:35,"189 Walnut St, New York City, NY 10001" +249611,USB-C Charging Cable,1,11.95,09/16/19 18:32,"988 Cherry St, Dallas, TX 75001" +249611,ThinkPad Laptop,1,999.99,09/16/19 18:32,"988 Cherry St, Dallas, TX 75001" +249612,34in Ultrawide Monitor,1,379.99,09/22/19 12:09,"405 12th St, San Francisco, CA 94016" +249613,AA Batteries (4-pack),1,3.84,09/23/19 14:21,"335 Main St, Portland, ME 04101" +249614,AAA Batteries (4-pack),1,2.99,09/15/19 19:02,"201 Adams St, San Francisco, CA 94016" +249615,USB-C Charging Cable,1,11.95,09/26/19 23:54,"142 River St, San Francisco, CA 94016" +249616,USB-C Charging Cable,1,11.95,09/04/19 07:08,"824 14th St, New York City, NY 10001" +249617,USB-C Charging Cable,1,11.95,09/19/19 10:59,"639 Jackson St, San Francisco, CA 94016" +249618,USB-C Charging Cable,1,11.95,09/13/19 14:26,"896 Madison St, San Francisco, CA 94016" +249619,27in 4K Gaming Monitor,1,389.99,09/19/19 11:15,"587 10th St, Los Angeles, CA 90001" +249620,iPhone,1,700,09/23/19 20:00,"190 Center St, San Francisco, CA 94016" +249621,Apple Airpods Headphones,1,150,09/26/19 07:26,"456 Elm St, San Francisco, CA 94016" +249622,27in FHD Monitor,1,149.99,09/28/19 17:19,"494 Hickory St, New York City, NY 10001" +249623,AA Batteries (4-pack),1,3.84,09/16/19 18:28,"358 Meadow St, San Francisco, CA 94016" +249624,Apple Airpods Headphones,1,150,09/13/19 18:03,"649 Meadow St, Atlanta, GA 30301" +249625,Lightning Charging Cable,1,14.95,09/18/19 12:19,"726 Spruce St, Portland, ME 04101" +249626,iPhone,1,700,09/06/19 20:21,"942 Dogwood St, Los Angeles, CA 90001" +249627,27in 4K Gaming Monitor,1,389.99,09/17/19 09:07,"117 North St, San Francisco, CA 94016" +249628,Apple Airpods Headphones,1,150,09/03/19 09:25,"144 10th St, New York City, NY 10001" +249629,34in Ultrawide Monitor,1,379.99,09/27/19 18:10,"790 Spruce St, Los Angeles, CA 90001" +249630,AA Batteries (4-pack),1,3.84,09/23/19 14:59,"816 11th St, Portland, OR 97035" +249631,Apple Airpods Headphones,1,150,09/16/19 22:26,"398 Main St, Atlanta, GA 30301" +249632,Vareebadd Phone,1,400,09/16/19 21:36,"734 Church St, Los Angeles, CA 90001" +249633,Lightning Charging Cable,2,14.95,09/08/19 04:09,"701 South St, Los Angeles, CA 90001" +249634,Macbook Pro Laptop,1,1700,09/27/19 11:17,"591 Cedar St, San Francisco, CA 94016" +249635,USB-C Charging Cable,1,11.95,09/12/19 12:01,"210 2nd St, Seattle, WA 98101" +249636,AAA Batteries (4-pack),2,2.99,09/22/19 18:48,"266 River St, San Francisco, CA 94016" +249637,Wired Headphones,2,11.99,09/05/19 13:58,"626 Cherry St, Atlanta, GA 30301" +249638,20in Monitor,1,109.99,09/14/19 10:40,"588 14th St, Seattle, WA 98101" +249639,27in 4K Gaming Monitor,1,389.99,09/25/19 09:10,"140 Dogwood St, Dallas, TX 75001" +249640,Google Phone,1,600,09/13/19 10:29,"550 13th St, Boston, MA 02215" +249641,USB-C Charging Cable,1,11.95,09/12/19 14:34,"905 2nd St, San Francisco, CA 94016" +249642,Apple Airpods Headphones,1,150,09/01/19 13:02,"152 Cherry St, Dallas, TX 75001" +249643,Apple Airpods Headphones,1,150,09/24/19 02:48,"204 West St, San Francisco, CA 94016" +249644,AAA Batteries (4-pack),1,2.99,09/09/19 13:13,"60 8th St, New York City, NY 10001" +249645,Macbook Pro Laptop,1,1700,09/01/19 19:36,"582 West St, Seattle, WA 98101" +249646,34in Ultrawide Monitor,1,379.99,09/07/19 10:49,"989 Main St, Portland, OR 97035" +249647,Apple Airpods Headphones,1,150,09/04/19 09:25,"924 Lakeview St, Boston, MA 02215" +249648,USB-C Charging Cable,1,11.95,09/05/19 00:23,"873 Hickory St, Seattle, WA 98101" +249649,34in Ultrawide Monitor,1,379.99,09/03/19 10:08,"71 Cedar St, Atlanta, GA 30301" +249650,Apple Airpods Headphones,1,150,09/04/19 11:36,"906 Lincoln St, San Francisco, CA 94016" +249651,Bose SoundSport Headphones,1,99.99,09/20/19 15:33,"755 13th St, Seattle, WA 98101" +249652,AA Batteries (4-pack),1,3.84,09/11/19 10:53,"611 Center St, Los Angeles, CA 90001" +249653,Flatscreen TV,1,300,09/27/19 06:23,"916 Lincoln St, Austin, TX 73301" +249654,Bose SoundSport Headphones,1,99.99,09/23/19 16:36,"427 Willow St, Los Angeles, CA 90001" +249655,Lightning Charging Cable,1,14.95,09/10/19 14:01,"336 Walnut St, Austin, TX 73301" +249656,Flatscreen TV,1,300,09/25/19 13:04,"280 Church St, Portland, OR 97035" +249657,27in FHD Monitor,1,149.99,09/30/19 22:38,"674 Cherry St, Seattle, WA 98101" +249658,Wired Headphones,2,11.99,09/14/19 12:52,"712 Dogwood St, New York City, NY 10001" +249659,USB-C Charging Cable,1,11.95,09/17/19 15:33,"671 Ridge St, New York City, NY 10001" +249660,AA Batteries (4-pack),2,3.84,09/24/19 16:08,"602 Madison St, Boston, MA 02215" +249661,Wired Headphones,1,11.99,09/27/19 14:38,"945 Walnut St, San Francisco, CA 94016" +249662,AA Batteries (4-pack),2,3.84,09/07/19 19:11,"464 Chestnut St, Atlanta, GA 30301" +249663,Wired Headphones,1,11.99,09/17/19 05:55,"82 2nd St, Dallas, TX 75001" +249664,iPhone,1,700,09/03/19 19:27,"936 2nd St, Atlanta, GA 30301" +249665,Bose SoundSport Headphones,1,99.99,09/14/19 09:49,"944 Washington St, Seattle, WA 98101" +249666,Lightning Charging Cable,1,14.95,09/17/19 18:11,"212 Ridge St, San Francisco, CA 94016" +249667,27in FHD Monitor,1,149.99,09/03/19 12:27,"422 Cherry St, San Francisco, CA 94016" +249668,27in FHD Monitor,1,149.99,09/21/19 20:24,"176 River St, Dallas, TX 75001" +249669,USB-C Charging Cable,1,11.95,09/24/19 01:19,"623 Hickory St, Austin, TX 73301" +249670,Wired Headphones,1,11.99,09/16/19 09:17,"844 Meadow St, San Francisco, CA 94016" +249671,USB-C Charging Cable,1,11.95,09/05/19 18:00,"750 Jackson St, San Francisco, CA 94016" +249672,iPhone,1,700,09/09/19 07:37,"474 Maple St, Portland, ME 04101" +249673,Wired Headphones,1,11.99,09/07/19 09:15,"143 Pine St, Los Angeles, CA 90001" +249674,Wired Headphones,1,11.99,09/16/19 17:28,"805 Lincoln St, New York City, NY 10001" +249675,AA Batteries (4-pack),1,3.84,09/20/19 16:49,"803 Jefferson St, Los Angeles, CA 90001" +249676,Lightning Charging Cable,1,14.95,09/22/19 10:03,"947 9th St, San Francisco, CA 94016" +249677,Apple Airpods Headphones,1,150,09/27/19 08:56,"289 Johnson St, San Francisco, CA 94016" +249678,AAA Batteries (4-pack),1,2.99,09/23/19 22:08,"961 Hickory St, Seattle, WA 98101" +249679,27in FHD Monitor,1,149.99,09/27/19 09:27,"787 West St, New York City, NY 10001" +249680,Apple Airpods Headphones,1,150,09/11/19 21:48,"45 Elm St, Seattle, WA 98101" +249681,AAA Batteries (4-pack),1,2.99,09/26/19 01:03,"222 Meadow St, New York City, NY 10001" +249682,Apple Airpods Headphones,1,150,09/05/19 23:28,"499 1st St, Portland, ME 04101" +249683,Wired Headphones,1,11.99,09/18/19 15:05,"318 14th St, Dallas, TX 75001" +249684,Google Phone,1,600,09/06/19 18:48,"328 Hickory St, New York City, NY 10001" +249684,USB-C Charging Cable,1,11.95,09/06/19 18:48,"328 Hickory St, New York City, NY 10001" +249685,Apple Airpods Headphones,1,150,09/07/19 14:24,"710 Chestnut St, Los Angeles, CA 90001" +249686,AA Batteries (4-pack),3,3.84,09/14/19 10:02,"478 Dogwood St, New York City, NY 10001" +249687,20in Monitor,1,109.99,09/08/19 18:53,"492 North St, Austin, TX 73301" +249688,Lightning Charging Cable,1,14.95,09/26/19 10:18,"242 Elm St, Los Angeles, CA 90001" +249689,AAA Batteries (4-pack),1,2.99,09/05/19 20:55,"433 Jackson St, San Francisco, CA 94016" +249690,27in 4K Gaming Monitor,1,389.99,09/08/19 11:04,"488 Adams St, San Francisco, CA 94016" +249691,Flatscreen TV,1,300,09/06/19 21:33,"906 12th St, San Francisco, CA 94016" +249692,Bose SoundSport Headphones,1,99.99,09/02/19 16:29,"419 Meadow St, Los Angeles, CA 90001" +249693,27in 4K Gaming Monitor,1,389.99,09/05/19 07:26,"226 Chestnut St, San Francisco, CA 94016" +249694,27in FHD Monitor,1,149.99,09/16/19 12:45,"714 Meadow St, Austin, TX 73301" +249695,Apple Airpods Headphones,1,150,09/04/19 20:00,"784 Maple St, New York City, NY 10001" +249696,USB-C Charging Cable,1,11.95,09/29/19 12:39,"130 Johnson St, San Francisco, CA 94016" +249697,USB-C Charging Cable,1,11.95,09/25/19 03:26,"997 14th St, Dallas, TX 75001" +249698,AA Batteries (4-pack),1,3.84,09/02/19 12:35,"228 Madison St, New York City, NY 10001" +249699,iPhone,1,700,09/19/19 18:50,"11 Meadow St, San Francisco, CA 94016" +249700,AAA Batteries (4-pack),1,2.99,09/30/19 19:04,"960 Pine St, San Francisco, CA 94016" +249701,Bose SoundSport Headphones,1,99.99,09/18/19 09:38,"15 Church St, Portland, OR 97035" +249702,Lightning Charging Cable,1,14.95,09/09/19 13:34,"414 6th St, Dallas, TX 75001" +249703,Flatscreen TV,1,300,09/23/19 11:19,"248 Church St, Seattle, WA 98101" +249704,Apple Airpods Headphones,1,150,09/19/19 14:53,"774 Cherry St, Seattle, WA 98101" +249705,AA Batteries (4-pack),1,3.84,09/25/19 17:46,"58 Wilson St, Los Angeles, CA 90001" +249706,AAA Batteries (4-pack),1,2.99,09/16/19 16:01,"401 River St, San Francisco, CA 94016" +249707,AA Batteries (4-pack),2,3.84,09/11/19 19:47,"660 Center St, Austin, TX 73301" +249708,AAA Batteries (4-pack),3,2.99,09/20/19 23:55,"868 River St, Boston, MA 02215" +249709,Apple Airpods Headphones,1,150,09/18/19 10:16,"737 Sunset St, Boston, MA 02215" +249710,Lightning Charging Cable,1,14.95,09/03/19 19:59,"904 Elm St, San Francisco, CA 94016" +249711,USB-C Charging Cable,1,11.95,09/26/19 21:00,"814 9th St, New York City, NY 10001" +249712,AA Batteries (4-pack),1,3.84,09/25/19 22:24,"131 South St, New York City, NY 10001" +249713,USB-C Charging Cable,1,11.95,09/18/19 12:37,"197 Pine St, Los Angeles, CA 90001" +249714,Google Phone,1,600,09/08/19 07:08,"560 4th St, Dallas, TX 75001" +249715,Apple Airpods Headphones,1,150,09/11/19 20:46,"825 Jackson St, Austin, TX 73301" +249716,Vareebadd Phone,1,400,09/18/19 12:05,"586 Walnut St, Los Angeles, CA 90001" +249716,USB-C Charging Cable,1,11.95,09/18/19 12:05,"586 Walnut St, Los Angeles, CA 90001" +249717,Lightning Charging Cable,1,14.95,09/23/19 22:39,"951 Adams St, Los Angeles, CA 90001" +249718,Wired Headphones,1,11.99,09/25/19 00:54,"159 Sunset St, New York City, NY 10001" +249719,AAA Batteries (4-pack),2,2.99,09/14/19 16:24,"62 North St, New York City, NY 10001" +249720,Wired Headphones,1,11.99,09/02/19 19:09,"367 Highland St, San Francisco, CA 94016" +249721,Google Phone,1,600,09/20/19 08:57,"150 Highland St, San Francisco, CA 94016" +249721,Bose SoundSport Headphones,1,99.99,09/20/19 08:57,"150 Highland St, San Francisco, CA 94016" +249722,Bose SoundSport Headphones,1,99.99,09/18/19 08:16,"247 Willow St, San Francisco, CA 94016" +249723,Macbook Pro Laptop,1,1700,09/03/19 18:09,"761 Jackson St, San Francisco, CA 94016" +249724,34in Ultrawide Monitor,1,379.99,09/24/19 20:35,"924 14th St, Seattle, WA 98101" +249725,AAA Batteries (4-pack),4,2.99,09/13/19 13:43,"973 North St, New York City, NY 10001" +249726,LG Washing Machine,1,600.0,09/28/19 18:08,"500 Lakeview St, Austin, TX 73301" +249727,27in 4K Gaming Monitor,1,389.99,09/06/19 17:12,"255 Spruce St, San Francisco, CA 94016" +249728,AA Batteries (4-pack),1,3.84,09/07/19 19:10,"628 North St, Seattle, WA 98101" +249729,Wired Headphones,1,11.99,09/17/19 11:19,"867 Cherry St, Portland, ME 04101" +249730,Apple Airpods Headphones,1,150,09/29/19 19:11,"47 Maple St, Los Angeles, CA 90001" +249731,AA Batteries (4-pack),3,3.84,09/28/19 15:26,"542 Church St, San Francisco, CA 94016" +249732,LG Dryer,1,600.0,09/20/19 13:03,"850 Ridge St, Atlanta, GA 30301" +249733,Google Phone,1,600,09/04/19 12:21,"673 1st St, San Francisco, CA 94016" +249734,Apple Airpods Headphones,1,150,09/18/19 18:06,"762 Lake St, Atlanta, GA 30301" +249735,iPhone,1,700,09/06/19 15:32,"384 Washington St, Boston, MA 02215" +249736,20in Monitor,1,109.99,09/26/19 12:36,"950 North St, Los Angeles, CA 90001" +249737,Lightning Charging Cable,1,14.95,09/21/19 19:23,"550 6th St, New York City, NY 10001" +249738,Wired Headphones,1,11.99,09/25/19 15:44,"195 Highland St, Austin, TX 73301" +249739,Lightning Charging Cable,1,14.95,09/26/19 10:07,"76 Center St, Atlanta, GA 30301" +249740,Lightning Charging Cable,1,14.95,09/24/19 21:04,"795 Park St, San Francisco, CA 94016" +249741,Vareebadd Phone,1,400,09/26/19 19:41,"571 Hill St, San Francisco, CA 94016" +249742,Lightning Charging Cable,1,14.95,09/05/19 05:54,"122 13th St, Portland, OR 97035" +249742,USB-C Charging Cable,1,11.95,09/05/19 05:54,"122 13th St, Portland, OR 97035" +249743,AA Batteries (4-pack),1,3.84,09/01/19 15:46,"339 4th St, Seattle, WA 98101" +249744,Bose SoundSport Headphones,1,99.99,09/20/19 21:56,"360 Washington St, Atlanta, GA 30301" +249745,USB-C Charging Cable,1,11.95,09/21/19 08:42,"856 Church St, Austin, TX 73301" +249746,USB-C Charging Cable,1,11.95,09/04/19 09:57,"172 Meadow St, Los Angeles, CA 90001" +249747,Lightning Charging Cable,1,14.95,09/04/19 16:20,"115 Spruce St, Boston, MA 02215" +249748,Vareebadd Phone,1,400,09/01/19 20:41,"824 Ridge St, Seattle, WA 98101" +249748,Bose SoundSport Headphones,1,99.99,09/01/19 20:41,"824 Ridge St, Seattle, WA 98101" +249749,USB-C Charging Cable,1,11.95,09/01/19 16:18,"125 Lake St, Seattle, WA 98101" +249750,USB-C Charging Cable,1,11.95,09/17/19 12:52,"244 Center St, Los Angeles, CA 90001" +249751,AA Batteries (4-pack),1,3.84,09/18/19 14:51,"376 Cherry St, San Francisco, CA 94016" +249752,Macbook Pro Laptop,1,1700,09/22/19 10:26,"768 6th St, Los Angeles, CA 90001" +249753,Lightning Charging Cable,1,14.95,09/19/19 19:08,"925 Elm St, New York City, NY 10001" +249754,Lightning Charging Cable,1,14.95,09/01/19 08:39,"574 Willow St, Los Angeles, CA 90001" +249755,AAA Batteries (4-pack),1,2.99,09/12/19 07:24,"272 10th St, Los Angeles, CA 90001" +249756,Wired Headphones,2,11.99,09/26/19 09:56,"613 Lake St, New York City, NY 10001" +249757,AA Batteries (4-pack),1,3.84,09/11/19 13:32,"562 Wilson St, Portland, OR 97035" +249758,USB-C Charging Cable,2,11.95,09/27/19 13:32,"899 Cherry St, Seattle, WA 98101" +249759,USB-C Charging Cable,1,11.95,09/08/19 20:55,"789 8th St, Los Angeles, CA 90001" +249760,USB-C Charging Cable,1,11.95,09/28/19 18:36,"741 Cherry St, Portland, OR 97035" +249761,AA Batteries (4-pack),2,3.84,09/14/19 21:58,"490 Wilson St, Los Angeles, CA 90001" +249762,AA Batteries (4-pack),1,3.84,09/01/19 10:24,"670 11th St, Atlanta, GA 30301" +249763,AA Batteries (4-pack),2,3.84,09/09/19 10:23,"900 Highland St, Atlanta, GA 30301" +249764,Macbook Pro Laptop,1,1700,09/05/19 16:24,"589 11th St, Los Angeles, CA 90001" +249765,USB-C Charging Cable,1,11.95,09/24/19 16:51,"863 Sunset St, San Francisco, CA 94016" +249766,Lightning Charging Cable,1,14.95,09/05/19 15:03,"585 Maple St, Seattle, WA 98101" +249767,20in Monitor,1,109.99,09/17/19 13:14,"737 Adams St, San Francisco, CA 94016" +249768,Apple Airpods Headphones,1,150,09/07/19 10:00,"380 Sunset St, New York City, NY 10001" +249769,Wired Headphones,2,11.99,09/04/19 06:35,"626 Hickory St, Los Angeles, CA 90001" +249770,Lightning Charging Cable,1,14.95,09/24/19 17:39,"681 Jefferson St, San Francisco, CA 94016" +249771,Lightning Charging Cable,1,14.95,09/02/19 12:00,"254 8th St, Los Angeles, CA 90001" +249772,Lightning Charging Cable,1,14.95,09/25/19 06:35,"507 10th St, San Francisco, CA 94016" +249773,iPhone,1,700,09/24/19 18:46,"903 West St, New York City, NY 10001" +249774,USB-C Charging Cable,1,11.95,09/02/19 16:57,"199 West St, San Francisco, CA 94016" +249775,AAA Batteries (4-pack),1,2.99,09/01/19 13:08,"801 Elm St, San Francisco, CA 94016" +249776,AA Batteries (4-pack),1,3.84,09/11/19 09:50,"619 Cedar St, San Francisco, CA 94016" +249777,AA Batteries (4-pack),2,3.84,09/17/19 14:53,"144 Cedar St, Boston, MA 02215" +249778,AAA Batteries (4-pack),3,2.99,09/27/19 11:15,"765 Lakeview St, Dallas, TX 75001" +249779,Wired Headphones,1,11.99,09/18/19 16:41,"19 Sunset St, Seattle, WA 98101" +249780,Apple Airpods Headphones,1,150,09/06/19 17:23,"309 7th St, San Francisco, CA 94016" +249781,Apple Airpods Headphones,1,150,09/12/19 07:29,"704 North St, Seattle, WA 98101" +249782,Apple Airpods Headphones,1,150,09/29/19 12:49,"116 Elm St, New York City, NY 10001" +249783,iPhone,1,700,09/25/19 14:28,"266 North St, Los Angeles, CA 90001" +249784,AAA Batteries (4-pack),1,2.99,09/17/19 13:16,"39 Hill St, New York City, NY 10001" +249785,27in 4K Gaming Monitor,1,389.99,09/24/19 01:21,"458 Meadow St, Boston, MA 02215" +249786,27in FHD Monitor,1,149.99,09/12/19 18:02,"19 4th St, Boston, MA 02215" +249787,20in Monitor,1,109.99,09/19/19 19:14,"946 Center St, San Francisco, CA 94016" +249788,Wired Headphones,1,11.99,09/02/19 13:35,"136 Madison St, Austin, TX 73301" +249789,AAA Batteries (4-pack),1,2.99,09/30/19 16:58,"149 12th St, San Francisco, CA 94016" +249790,USB-C Charging Cable,1,11.95,09/18/19 22:27,"556 14th St, New York City, NY 10001" +249791,USB-C Charging Cable,1,11.95,09/20/19 22:40,"475 4th St, Seattle, WA 98101" +249792,USB-C Charging Cable,1,11.95,09/10/19 20:51,"767 Willow St, Boston, MA 02215" +249793,Bose SoundSport Headphones,1,99.99,09/06/19 19:40,"333 Lincoln St, Seattle, WA 98101" +249794,AAA Batteries (4-pack),1,2.99,09/08/19 17:09,"176 5th St, New York City, NY 10001" +249795,Lightning Charging Cable,1,14.95,09/04/19 11:35,"339 4th St, New York City, NY 10001" +249796,USB-C Charging Cable,1,11.95,09/10/19 22:33,"930 Forest St, Atlanta, GA 30301" +249797,Google Phone,1,600,09/23/19 22:42,"630 Johnson St, Portland, OR 97035" +249797,USB-C Charging Cable,1,11.95,09/23/19 22:42,"630 Johnson St, Portland, OR 97035" +249798,AA Batteries (4-pack),1,3.84,09/21/19 22:14,"957 Chestnut St, Austin, TX 73301" +249799,Wired Headphones,1,11.99,09/12/19 10:36,"720 Jackson St, New York City, NY 10001" +249800,Google Phone,1,600,09/16/19 16:31,"329 8th St, Portland, OR 97035" +249801,Google Phone,1,600,09/17/19 13:50,"583 Wilson St, Los Angeles, CA 90001" +249802,USB-C Charging Cable,1,11.95,09/30/19 22:45,"396 Cherry St, New York City, NY 10001" +249803,USB-C Charging Cable,1,11.95,09/30/19 20:28,"650 8th St, San Francisco, CA 94016" +249804,AAA Batteries (4-pack),1,2.99,09/27/19 21:18,"589 Jefferson St, Boston, MA 02215" +249805,AAA Batteries (4-pack),1,2.99,09/22/19 16:51,"634 Hill St, Dallas, TX 75001" +249806,iPhone,1,700,09/17/19 21:08,"147 Lincoln St, Boston, MA 02215" +249807,iPhone,1,700,09/08/19 20:00,"782 2nd St, Dallas, TX 75001" +249807,Lightning Charging Cable,1,14.95,09/08/19 20:00,"782 2nd St, Dallas, TX 75001" +249808,34in Ultrawide Monitor,1,379.99,09/13/19 19:08,"851 Elm St, Dallas, TX 75001" +249809,Bose SoundSport Headphones,1,99.99,09/26/19 14:35,"425 11th St, Atlanta, GA 30301" +249810,USB-C Charging Cable,1,11.95,09/01/19 11:22,"952 Spruce St, New York City, NY 10001" +249811,AAA Batteries (4-pack),3,2.99,09/13/19 17:12,"95 Pine St, Seattle, WA 98101" +249811,AA Batteries (4-pack),1,3.84,09/13/19 17:12,"95 Pine St, Seattle, WA 98101" +249812,AAA Batteries (4-pack),1,2.99,09/29/19 12:16,"651 10th St, Seattle, WA 98101" +249813,Wired Headphones,1,11.99,09/26/19 17:33,"861 Highland St, Portland, OR 97035" +249814,Apple Airpods Headphones,1,150,09/19/19 09:34,"513 Jackson St, Seattle, WA 98101" +249815,Wired Headphones,1,11.99,09/29/19 08:31,"614 2nd St, San Francisco, CA 94016" +249816,AAA Batteries (4-pack),2,2.99,09/09/19 12:00,"242 Walnut St, San Francisco, CA 94016" +249817,AAA Batteries (4-pack),1,2.99,09/09/19 14:03,"239 Cherry St, Los Angeles, CA 90001" +249818,Bose SoundSport Headphones,1,99.99,09/19/19 12:12,"854 12th St, San Francisco, CA 94016" +249819,Macbook Pro Laptop,1,1700,09/13/19 16:55,"759 Elm St, Seattle, WA 98101" +249820,AAA Batteries (4-pack),2,2.99,09/06/19 19:38,"371 Washington St, San Francisco, CA 94016" +249821,Bose SoundSport Headphones,1,99.99,09/21/19 00:13,"201 12th St, Seattle, WA 98101" +249822,AAA Batteries (4-pack),1,2.99,09/19/19 13:24,"528 Willow St, Boston, MA 02215" +249823,Lightning Charging Cable,1,14.95,09/29/19 06:17,"524 Elm St, Dallas, TX 75001" +249824,Lightning Charging Cable,1,14.95,09/07/19 18:47,"718 River St, San Francisco, CA 94016" +249825,USB-C Charging Cable,1,11.95,09/04/19 23:21,"180 West St, Boston, MA 02215" +249826,USB-C Charging Cable,1,11.95,09/14/19 15:15,"859 Highland St, Boston, MA 02215" +249827,27in FHD Monitor,1,149.99,09/26/19 19:49,"996 8th St, Los Angeles, CA 90001" +249828,AAA Batteries (4-pack),1,2.99,09/09/19 23:41,"267 Madison St, San Francisco, CA 94016" +249829,AAA Batteries (4-pack),1,2.99,09/29/19 07:41,"158 Sunset St, Seattle, WA 98101" +249830,Lightning Charging Cable,1,14.95,09/10/19 19:57,"887 Hickory St, Portland, OR 97035" +249831,Wired Headphones,1,11.99,09/01/19 12:39,"304 Johnson St, Atlanta, GA 30301" +249832,Lightning Charging Cable,1,14.95,09/25/19 12:02,"629 Sunset St, Los Angeles, CA 90001" +249833,Bose SoundSport Headphones,1,99.99,09/17/19 11:38,"376 Washington St, Portland, OR 97035" +249834,AAA Batteries (4-pack),1,2.99,09/17/19 12:22,"63 Jefferson St, New York City, NY 10001" +249835,Lightning Charging Cable,2,14.95,09/09/19 13:14,"41 Pine St, Boston, MA 02215" +249836,USB-C Charging Cable,1,11.95,09/23/19 19:09,"963 Johnson St, Atlanta, GA 30301" +249837,27in FHD Monitor,1,149.99,09/30/19 17:57,"787 10th St, Boston, MA 02215" +249838,USB-C Charging Cable,1,11.95,09/29/19 08:35,"141 Madison St, Seattle, WA 98101" +249839,Apple Airpods Headphones,1,150,09/05/19 21:39,"658 Ridge St, San Francisco, CA 94016" +249840,Flatscreen TV,1,300,09/08/19 18:53,"477 West St, San Francisco, CA 94016" +249841,iPhone,1,700,09/27/19 19:33,"502 Church St, Boston, MA 02215" +249841,Lightning Charging Cable,1,14.95,09/27/19 19:33,"502 Church St, Boston, MA 02215" +249841,Wired Headphones,1,11.99,09/27/19 19:33,"502 Church St, Boston, MA 02215" +249842,USB-C Charging Cable,1,11.95,09/29/19 13:21,"924 11th St, Los Angeles, CA 90001" +249843,Lightning Charging Cable,1,14.95,09/14/19 22:46,"620 2nd St, San Francisco, CA 94016" +249844,iPhone,1,700,09/02/19 14:07,"631 Hill St, San Francisco, CA 94016" +249845,USB-C Charging Cable,1,11.95,09/15/19 10:58,"418 4th St, San Francisco, CA 94016" +249846,ThinkPad Laptop,1,999.99,09/23/19 20:45,"649 Lake St, Los Angeles, CA 90001" +249847,34in Ultrawide Monitor,1,379.99,09/06/19 13:29,"111 Walnut St, New York City, NY 10001" +249848,AAA Batteries (4-pack),2,2.99,09/07/19 11:14,"264 Pine St, Dallas, TX 75001" +249849,20in Monitor,1,109.99,09/24/19 16:12,"260 South St, San Francisco, CA 94016" +249850,ThinkPad Laptop,1,999.99,09/05/19 11:47,"446 Hill St, Los Angeles, CA 90001" +249851,Lightning Charging Cable,1,14.95,09/05/19 09:34,"708 Church St, Austin, TX 73301" +249852,AAA Batteries (4-pack),1,2.99,09/11/19 19:08,"733 10th St, Boston, MA 02215" +249853,iPhone,1,700,09/19/19 10:48,"806 Center St, Los Angeles, CA 90001" +249854,Apple Airpods Headphones,1,150,09/16/19 19:42,"216 Ridge St, Atlanta, GA 30301" +249855,ThinkPad Laptop,1,999.99,09/28/19 18:57,"379 Church St, Dallas, TX 75001" +249856,USB-C Charging Cable,1,11.95,09/10/19 16:06,"536 South St, Los Angeles, CA 90001" +249857,Lightning Charging Cable,1,14.95,09/07/19 16:31,"460 Johnson St, New York City, NY 10001" +249858,Bose SoundSport Headphones,1,99.99,09/21/19 10:47,"343 Hill St, New York City, NY 10001" +249859,Wired Headphones,1,11.99,09/20/19 10:20,"37 Sunset St, Austin, TX 73301" +249860,USB-C Charging Cable,1,11.95,09/11/19 06:41,"447 Washington St, New York City, NY 10001" +249861,iPhone,1,700,09/11/19 10:09,"977 Adams St, Los Angeles, CA 90001" +249862,USB-C Charging Cable,1,11.95,09/06/19 12:01,"24 West St, New York City, NY 10001" +249863,34in Ultrawide Monitor,1,379.99,09/20/19 02:26,"905 Lincoln St, Atlanta, GA 30301" +249864,Bose SoundSport Headphones,2,99.99,09/27/19 13:29,"28 9th St, Atlanta, GA 30301" +249865,Apple Airpods Headphones,1,150,09/19/19 18:57,"238 14th St, San Francisco, CA 94016" +249866,USB-C Charging Cable,1,11.95,09/08/19 18:32,"826 Sunset St, San Francisco, CA 94016" +249867,AAA Batteries (4-pack),1,2.99,09/14/19 12:00,"535 Highland St, Los Angeles, CA 90001" +249868,34in Ultrawide Monitor,1,379.99,09/07/19 04:55,"401 North St, Atlanta, GA 30301" +249869,Flatscreen TV,1,300,09/07/19 09:08,"173 Madison St, Los Angeles, CA 90001" +249870,AA Batteries (4-pack),2,3.84,09/02/19 10:31,"789 5th St, San Francisco, CA 94016" +249871,Macbook Pro Laptop,1,1700,09/16/19 13:22,"778 Willow St, San Francisco, CA 94016" +249872,Wired Headphones,1,11.99,09/30/19 13:50,"641 Church St, Dallas, TX 75001" +249873,27in FHD Monitor,1,149.99,09/09/19 02:29,"847 Jefferson St, Los Angeles, CA 90001" +249874,AAA Batteries (4-pack),2,2.99,09/10/19 13:44,"583 11th St, Los Angeles, CA 90001" +249875,AA Batteries (4-pack),1,3.84,09/10/19 13:57,"551 Highland St, Boston, MA 02215" +249876,Apple Airpods Headphones,1,150,09/19/19 14:43,"585 4th St, Boston, MA 02215" +249877,34in Ultrawide Monitor,1,379.99,09/14/19 12:40,"867 Meadow St, San Francisco, CA 94016" +249878,AAA Batteries (4-pack),1,2.99,09/03/19 20:20,"741 Washington St, Dallas, TX 75001" +249879,Lightning Charging Cable,1,14.95,09/23/19 00:48,"277 13th St, Los Angeles, CA 90001" +249880,34in Ultrawide Monitor,1,379.99,09/18/19 15:44,"669 Forest St, Los Angeles, CA 90001" +249881,USB-C Charging Cable,1,11.95,09/23/19 01:52,"267 5th St, Seattle, WA 98101" +249882,AAA Batteries (4-pack),2,2.99,09/24/19 17:12,"580 Pine St, San Francisco, CA 94016" +249883,USB-C Charging Cable,1,11.95,09/04/19 10:28,"321 Hill St, Seattle, WA 98101" +249884,Wired Headphones,1,11.99,09/04/19 08:39,"800 Hill St, San Francisco, CA 94016" +249885,AA Batteries (4-pack),1,3.84,09/08/19 16:03,"400 Cedar St, San Francisco, CA 94016" +249886,USB-C Charging Cable,1,11.95,09/21/19 19:48,"993 Main St, San Francisco, CA 94016" +249887,USB-C Charging Cable,1,11.95,09/14/19 21:45,"598 Lakeview St, Atlanta, GA 30301" +249888,Apple Airpods Headphones,1,150,09/10/19 17:31,"360 Forest St, Portland, OR 97035" +249889,AA Batteries (4-pack),1,3.84,09/05/19 07:11,"731 Hickory St, Boston, MA 02215" +249890,AA Batteries (4-pack),1,3.84,09/17/19 15:53,"407 Elm St, San Francisco, CA 94016" +249891,Bose SoundSport Headphones,1,99.99,09/23/19 02:09,"759 12th St, Los Angeles, CA 90001" +249892,AA Batteries (4-pack),1,3.84,09/20/19 22:02,"182 Madison St, New York City, NY 10001" +249893,Bose SoundSport Headphones,1,99.99,09/28/19 20:59,"637 Willow St, Seattle, WA 98101" +249894,Google Phone,1,600,09/25/19 07:33,"508 Jackson St, New York City, NY 10001" +249894,Wired Headphones,1,11.99,09/25/19 07:33,"508 Jackson St, New York City, NY 10001" +249895,USB-C Charging Cable,1,11.95,09/22/19 21:47,"717 Church St, San Francisco, CA 94016" +249896,AA Batteries (4-pack),1,3.84,09/21/19 11:00,"497 Madison St, San Francisco, CA 94016" +249897,Wired Headphones,1,11.99,09/29/19 12:32,"601 2nd St, New York City, NY 10001" +249898,Lightning Charging Cable,1,14.95,09/04/19 12:10,"432 Jackson St, Seattle, WA 98101" +249899,USB-C Charging Cable,1,11.95,09/22/19 03:35,"643 Sunset St, San Francisco, CA 94016" +249900,iPhone,1,700,09/09/19 19:17,"752 Forest St, New York City, NY 10001" +249900,Lightning Charging Cable,1,14.95,09/09/19 19:17,"752 Forest St, New York City, NY 10001" +249901,iPhone,1,700,09/21/19 16:18,"823 Jackson St, Dallas, TX 75001" +249902,AA Batteries (4-pack),1,3.84,09/28/19 16:53,"577 Spruce St, Los Angeles, CA 90001" +249903,34in Ultrawide Monitor,1,379.99,09/13/19 20:32,"135 Jefferson St, San Francisco, CA 94016" +249904,Flatscreen TV,1,300,09/26/19 12:11,"347 1st St, Boston, MA 02215" +249905,USB-C Charging Cable,2,11.95,09/30/19 11:59,"67 Hickory St, San Francisco, CA 94016" +249906,USB-C Charging Cable,1,11.95,09/09/19 17:24,"254 5th St, Atlanta, GA 30301" +249907,Google Phone,1,600,09/06/19 15:32,"22 Adams St, San Francisco, CA 94016" +249908,34in Ultrawide Monitor,1,379.99,09/08/19 12:57,"503 Lincoln St, Seattle, WA 98101" +249909,Bose SoundSport Headphones,1,99.99,09/14/19 13:02,"743 South St, Los Angeles, CA 90001" +249910,27in FHD Monitor,2,149.99,09/25/19 20:55,"926 2nd St, Los Angeles, CA 90001" +249911,Apple Airpods Headphones,1,150,09/27/19 12:11,"433 10th St, Los Angeles, CA 90001" +249912,Apple Airpods Headphones,1,150,09/08/19 05:35,"21 Jefferson St, Austin, TX 73301" +249913,AA Batteries (4-pack),2,3.84,09/12/19 00:30,"354 Meadow St, Atlanta, GA 30301" +249914,Apple Airpods Headphones,1,150,09/02/19 14:05,"288 Forest St, Portland, OR 97035" +249915,LG Dryer,1,600.0,09/01/19 12:32,"709 10th St, San Francisco, CA 94016" +249916,Bose SoundSport Headphones,1,99.99,09/16/19 09:58,"322 12th St, San Francisco, CA 94016" +249917,27in FHD Monitor,1,149.99,09/15/19 18:45,"312 Lincoln St, Los Angeles, CA 90001" +249918,Apple Airpods Headphones,1,150,09/06/19 15:44,"979 6th St, New York City, NY 10001" +249919,AA Batteries (4-pack),1,3.84,09/11/19 09:37,"839 Willow St, Los Angeles, CA 90001" +249920,Lightning Charging Cable,1,14.95,09/21/19 17:42,"410 Spruce St, Dallas, TX 75001" +249921,AAA Batteries (4-pack),1,2.99,09/21/19 23:15,"638 Sunset St, Seattle, WA 98101" +249922,Google Phone,1,600,09/04/19 16:37,"896 4th St, Dallas, TX 75001" +249923,LG Dryer,1,600.0,09/05/19 09:24,"97 Lincoln St, Seattle, WA 98101" +249924,Lightning Charging Cable,1,14.95,09/07/19 12:27,"926 Johnson St, Seattle, WA 98101" +249925,Wired Headphones,1,11.99,09/17/19 19:26,"205 Center St, Dallas, TX 75001" +249926,ThinkPad Laptop,1,999.99,09/29/19 12:49,"453 West St, Seattle, WA 98101" +249927,Lightning Charging Cable,1,14.95,09/02/19 18:00,"258 Park St, Portland, OR 97035" +249928,AA Batteries (4-pack),1,3.84,09/28/19 09:17,"27 Adams St, Los Angeles, CA 90001" +249929,AAA Batteries (4-pack),1,2.99,09/20/19 09:14,"350 Cedar St, New York City, NY 10001" +249930,Lightning Charging Cable,1,14.95,09/27/19 08:27,"265 Elm St, San Francisco, CA 94016" +249931,USB-C Charging Cable,1,11.95,09/11/19 12:01,"335 Walnut St, San Francisco, CA 94016" +249932,Lightning Charging Cable,1,14.95,09/08/19 11:06,"60 Chestnut St, Boston, MA 02215" +249933,20in Monitor,1,109.99,09/02/19 18:29,"874 Center St, San Francisco, CA 94016" +249934,Bose SoundSport Headphones,1,99.99,09/24/19 13:55,"910 River St, Portland, OR 97035" +249935,USB-C Charging Cable,1,11.95,09/28/19 10:03,"456 2nd St, New York City, NY 10001" +249936,AA Batteries (4-pack),1,3.84,09/11/19 15:00,"811 West St, San Francisco, CA 94016" +249937,AA Batteries (4-pack),1,3.84,09/17/19 11:55,"109 Ridge St, Austin, TX 73301" +249938,Lightning Charging Cable,1,14.95,09/01/19 20:38,"519 Jackson St, New York City, NY 10001" +249939,USB-C Charging Cable,1,11.95,09/15/19 17:05,"680 Johnson St, Portland, OR 97035" +249940,USB-C Charging Cable,1,11.95,09/07/19 21:04,"395 Madison St, Seattle, WA 98101" +249941,AAA Batteries (4-pack),1,2.99,09/28/19 13:57,"244 Forest St, New York City, NY 10001" +249942,AA Batteries (4-pack),1,3.84,09/06/19 10:13,"237 12th St, New York City, NY 10001" +249943,USB-C Charging Cable,2,11.95,09/18/19 04:44,"267 12th St, New York City, NY 10001" +249944,Apple Airpods Headphones,1,150,09/03/19 14:37,"341 Sunset St, Dallas, TX 75001" +249945,Wired Headphones,1,11.99,09/17/19 11:36,"960 Hill St, Dallas, TX 75001" +249946,AAA Batteries (4-pack),2,2.99,09/16/19 13:13,"850 Hickory St, Boston, MA 02215" +249947,Wired Headphones,1,11.99,09/04/19 21:50,"8 Madison St, Seattle, WA 98101" +249948,Flatscreen TV,1,300,09/16/19 23:41,"289 River St, Los Angeles, CA 90001" +249949,27in FHD Monitor,1,149.99,09/07/19 18:12,"10 13th St, San Francisco, CA 94016" +249950,Apple Airpods Headphones,1,150,09/02/19 07:51,"994 10th St, Los Angeles, CA 90001" +249951,Lightning Charging Cable,1,14.95,09/23/19 19:58,"171 Maple St, Boston, MA 02215" +249952,Wired Headphones,1,11.99,09/22/19 11:57,"20 Hickory St, Seattle, WA 98101" +249953,Apple Airpods Headphones,1,150,09/25/19 18:25,"965 Adams St, Atlanta, GA 30301" +249954,Apple Airpods Headphones,1,150,09/29/19 09:49,"792 Meadow St, New York City, NY 10001" +249955,Wired Headphones,1,11.99,09/05/19 20:05,"416 Dogwood St, Los Angeles, CA 90001" +249956,20in Monitor,1,109.99,09/17/19 09:41,"969 6th St, Portland, ME 04101" +249957,USB-C Charging Cable,1,11.95,09/29/19 08:49,"680 1st St, San Francisco, CA 94016" +249958,Flatscreen TV,1,300,09/13/19 21:50,"394 Adams St, San Francisco, CA 94016" +249959,Wired Headphones,1,11.99,09/21/19 14:36,"21 Forest St, Los Angeles, CA 90001" +249960,AAA Batteries (4-pack),1,2.99,09/08/19 18:08,"622 Elm St, Dallas, TX 75001" +249961,Lightning Charging Cable,1,14.95,09/27/19 23:17,"348 Center St, San Francisco, CA 94016" +249962,Wired Headphones,1,11.99,09/28/19 17:48,"197 Chestnut St, Portland, OR 97035" +249963,Macbook Pro Laptop,1,1700,09/17/19 07:58,"691 Wilson St, Los Angeles, CA 90001" +249964,Google Phone,1,600,09/30/19 16:33,"290 Washington St, Boston, MA 02215" +249965,27in 4K Gaming Monitor,1,389.99,09/05/19 11:25,"991 10th St, San Francisco, CA 94016" +249966,Bose SoundSport Headphones,1,99.99,09/10/19 23:06,"774 Meadow St, San Francisco, CA 94016" +249967,Wired Headphones,1,11.99,09/05/19 09:10,"559 Lakeview St, Los Angeles, CA 90001" +249968,AA Batteries (4-pack),1,3.84,09/30/19 19:36,"67 4th St, San Francisco, CA 94016" +249969,AAA Batteries (4-pack),1,2.99,09/28/19 22:05,"291 9th St, Boston, MA 02215" +249970,AAA Batteries (4-pack),1,2.99,09/29/19 13:11,"524 Dogwood St, Los Angeles, CA 90001" +249971,Bose SoundSport Headphones,1,99.99,09/28/19 22:29,"796 North St, Los Angeles, CA 90001" +249972,AAA Batteries (4-pack),2,2.99,09/16/19 09:32,"447 Cherry St, San Francisco, CA 94016" +249973,AAA Batteries (4-pack),3,2.99,09/09/19 15:44,"939 Jackson St, New York City, NY 10001" +249974,Wired Headphones,1,11.99,09/03/19 19:37,"478 Chestnut St, San Francisco, CA 94016" +249975,USB-C Charging Cable,1,11.95,09/30/19 07:35,"219 Center St, Dallas, TX 75001" +249976,Apple Airpods Headphones,1,150,09/27/19 07:37,"722 Lakeview St, Boston, MA 02215" +249977,Wired Headphones,1,11.99,09/29/19 09:48,"170 West St, Los Angeles, CA 90001" +249978,Macbook Pro Laptop,1,1700,09/24/19 20:01,"54 1st St, Seattle, WA 98101" +249979,AAA Batteries (4-pack),1,2.99,09/14/19 20:04,"260 Willow St, Austin, TX 73301" +249980,Bose SoundSport Headphones,1,99.99,09/03/19 22:50,"868 Highland St, Los Angeles, CA 90001" +249981,Lightning Charging Cable,1,14.95,09/26/19 07:41,"339 Hill St, Portland, OR 97035" +249981,Wired Headphones,1,11.99,09/26/19 07:41,"339 Hill St, Portland, OR 97035" +249982,iPhone,1,700,09/07/19 14:27,"651 Meadow St, New York City, NY 10001" +249982,Wired Headphones,1,11.99,09/07/19 14:27,"651 Meadow St, New York City, NY 10001" +249983,Bose SoundSport Headphones,1,99.99,09/15/19 08:31,"38 Maple St, San Francisco, CA 94016" +249984,27in FHD Monitor,1,149.99,09/14/19 06:15,"159 Jackson St, Seattle, WA 98101" +249985,Google Phone,1,600,09/04/19 20:48,"224 Dogwood St, San Francisco, CA 94016" +249986,AAA Batteries (4-pack),1,2.99,09/06/19 12:53,"976 Madison St, New York City, NY 10001" +249987,27in FHD Monitor,1,149.99,09/11/19 10:00,"316 7th St, San Francisco, CA 94016" +249988,Lightning Charging Cable,1,14.95,09/05/19 18:18,"855 14th St, Dallas, TX 75001" +249989,Bose SoundSport Headphones,1,99.99,09/30/19 15:10,"754 11th St, San Francisco, CA 94016" +249990,ThinkPad Laptop,1,999.99,09/21/19 18:58,"890 Lakeview St, Dallas, TX 75001" +249991,AA Batteries (4-pack),2,3.84,09/16/19 23:48,"665 Lincoln St, San Francisco, CA 94016" +249992,Bose SoundSport Headphones,1,99.99,09/18/19 21:07,"279 Meadow St, Seattle, WA 98101" +249993,20in Monitor,1,109.99,09/18/19 22:34,"608 6th St, New York City, NY 10001" +249994,Wired Headphones,1,11.99,09/25/19 11:30,"155 1st St, New York City, NY 10001" +249995,27in FHD Monitor,1,149.99,09/17/19 20:11,"800 5th St, Seattle, WA 98101" +249996,Wired Headphones,1,11.99,09/07/19 22:20,"326 6th St, Dallas, TX 75001" +249997,Apple Airpods Headphones,1,150,09/26/19 22:07,"121 Dogwood St, Los Angeles, CA 90001" +249998,Apple Airpods Headphones,1,150,09/20/19 18:03,"296 Jackson St, Boston, MA 02215" +249999,ThinkPad Laptop,1,999.99,09/14/19 14:23,"789 Chestnut St, Atlanta, GA 30301" +250000,Apple Airpods Headphones,1,150,09/19/19 21:39,"53 Pine St, Boston, MA 02215" +250001,AA Batteries (4-pack),1,3.84,09/13/19 20:03,"706 Main St, Seattle, WA 98101" +250002,Flatscreen TV,1,300,09/09/19 15:18,"754 2nd St, San Francisco, CA 94016" +250003,Apple Airpods Headphones,1,150,09/13/19 00:31,"210 Willow St, Portland, ME 04101" +250004,AA Batteries (4-pack),1,3.84,09/02/19 08:38,"76 Walnut St, Dallas, TX 75001" +250005,Flatscreen TV,1,300,09/13/19 14:56,"546 5th St, San Francisco, CA 94016" +250006,iPhone,1,700,09/25/19 12:25,"197 6th St, San Francisco, CA 94016" +250006,Lightning Charging Cable,1,14.95,09/25/19 12:25,"197 6th St, San Francisco, CA 94016" +250007,AA Batteries (4-pack),2,3.84,09/26/19 11:40,"433 6th St, New York City, NY 10001" +250008,AA Batteries (4-pack),1,3.84,09/27/19 09:56,"588 Main St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +250009,AA Batteries (4-pack),1,3.84,09/28/19 21:10,"652 Lake St, Seattle, WA 98101" +250010,USB-C Charging Cable,1,11.95,09/12/19 17:46,"644 Hickory St, San Francisco, CA 94016" +250011,Lightning Charging Cable,1,14.95,09/18/19 21:33,"769 Hill St, Los Angeles, CA 90001" +250012,USB-C Charging Cable,1,11.95,09/19/19 18:44,"70 Jefferson St, Dallas, TX 75001" +250013,AA Batteries (4-pack),3,3.84,09/11/19 23:13,"262 Spruce St, San Francisco, CA 94016" +250014,34in Ultrawide Monitor,1,379.99,09/24/19 11:58,"300 Madison St, Dallas, TX 75001" +250015,Apple Airpods Headphones,1,150,09/02/19 10:14,"296 Lakeview St, Los Angeles, CA 90001" +250016,AA Batteries (4-pack),1,3.84,09/26/19 17:50,"664 Lake St, Los Angeles, CA 90001" +250017,34in Ultrawide Monitor,1,379.99,09/03/19 13:38,"619 2nd St, Los Angeles, CA 90001" +250018,AA Batteries (4-pack),1,3.84,09/29/19 10:09,"349 Dogwood St, Los Angeles, CA 90001" +250019,34in Ultrawide Monitor,1,379.99,09/01/19 17:09,"671 Johnson St, Atlanta, GA 30301" +250020,27in FHD Monitor,1,149.99,09/17/19 20:19,"6 13th St, San Francisco, CA 94016" +250021,AAA Batteries (4-pack),1,2.99,09/17/19 18:28,"905 Dogwood St, San Francisco, CA 94016" +250022,Macbook Pro Laptop,1,1700,09/12/19 19:34,"922 Willow St, San Francisco, CA 94016" +250023,20in Monitor,1,109.99,09/22/19 14:37,"877 Washington St, Los Angeles, CA 90001" +250024,AA Batteries (4-pack),1,3.84,09/04/19 00:52,"426 River St, Los Angeles, CA 90001" +250025,20in Monitor,1,109.99,09/10/19 14:16,"15 River St, Atlanta, GA 30301" +250026,iPhone,1,700,09/21/19 10:59,"437 Cedar St, Los Angeles, CA 90001" +250027,AA Batteries (4-pack),1,3.84,09/07/19 07:58,"362 South St, Boston, MA 02215" +250028,AA Batteries (4-pack),1,3.84,09/26/19 18:55,"931 2nd St, San Francisco, CA 94016" +250029,Google Phone,1,600,09/07/19 19:42,"944 Spruce St, Los Angeles, CA 90001" +250030,27in FHD Monitor,1,149.99,09/24/19 22:01,"499 Ridge St, Los Angeles, CA 90001" +250031,Lightning Charging Cable,1,14.95,09/02/19 20:51,"722 Hill St, Seattle, WA 98101" +250032,Apple Airpods Headphones,1,150,09/16/19 20:13,"611 Madison St, Atlanta, GA 30301" +250033,Apple Airpods Headphones,1,150,09/11/19 16:00,"399 Adams St, Boston, MA 02215" +250034,Bose SoundSport Headphones,1,99.99,09/25/19 20:15,"322 12th St, San Francisco, CA 94016" +250035,AAA Batteries (4-pack),1,2.99,09/16/19 19:59,"62 Adams St, New York City, NY 10001" +250036,AA Batteries (4-pack),1,3.84,09/16/19 21:06,"315 West St, Seattle, WA 98101" +250037,Flatscreen TV,1,300,09/25/19 11:53,"721 Chestnut St, San Francisco, CA 94016" +250038,AA Batteries (4-pack),1,3.84,09/18/19 13:06,"446 Lakeview St, Los Angeles, CA 90001" +250039,Bose SoundSport Headphones,2,99.99,09/11/19 17:47,"705 West St, San Francisco, CA 94016" +250040,27in 4K Gaming Monitor,1,389.99,09/15/19 18:51,"724 Park St, Atlanta, GA 30301" +250041,Bose SoundSport Headphones,1,99.99,09/13/19 23:34,"83 Johnson St, Austin, TX 73301" +250042,Bose SoundSport Headphones,1,99.99,09/24/19 04:03,"674 Dogwood St, San Francisco, CA 94016" +250043,AA Batteries (4-pack),3,3.84,09/14/19 16:12,"309 Madison St, Austin, TX 73301" +250044,27in FHD Monitor,1,149.99,09/17/19 14:31,"754 Jefferson St, Dallas, TX 75001" +250045,USB-C Charging Cable,1,11.95,09/14/19 10:04,"196 7th St, Los Angeles, CA 90001" +250046,AAA Batteries (4-pack),1,2.99,09/27/19 18:46,"397 Lincoln St, Atlanta, GA 30301" +250047,Macbook Pro Laptop,1,1700,09/10/19 14:19,"498 Elm St, Portland, OR 97035" +250048,Lightning Charging Cable,1,14.95,09/07/19 03:08,"606 Cedar St, Dallas, TX 75001" +250049,USB-C Charging Cable,1,11.95,09/21/19 17:50,"567 Elm St, New York City, NY 10001" +250050,27in 4K Gaming Monitor,1,389.99,09/17/19 14:37,"761 Walnut St, San Francisco, CA 94016" +250051,AAA Batteries (4-pack),1,2.99,09/03/19 11:14,"340 Dogwood St, San Francisco, CA 94016" +250052,Apple Airpods Headphones,1,150,09/27/19 21:48,"880 Spruce St, San Francisco, CA 94016" +250053,Flatscreen TV,1,300,09/21/19 21:00,"389 Ridge St, Atlanta, GA 30301" +250054,Vareebadd Phone,1,400,09/18/19 10:22,"53 Jefferson St, Boston, MA 02215" +250055,20in Monitor,1,109.99,09/28/19 13:56,"309 Lake St, San Francisco, CA 94016" +250056,Wired Headphones,1,11.99,09/14/19 12:48,"264 Walnut St, New York City, NY 10001" +250057,ThinkPad Laptop,1,999.99,09/03/19 18:33,"175 12th St, Portland, OR 97035" +250058,Bose SoundSport Headphones,1,99.99,09/12/19 12:27,"918 Forest St, San Francisco, CA 94016" +250059,Apple Airpods Headphones,1,150,09/05/19 12:08,"505 South St, New York City, NY 10001" +250060,Wired Headphones,1,11.99,09/23/19 16:15,"826 13th St, Austin, TX 73301" +250061,Wired Headphones,1,11.99,09/07/19 12:01,"179 7th St, Seattle, WA 98101" +250062,Wired Headphones,1,11.99,09/10/19 13:31,"802 10th St, San Francisco, CA 94016" +250063,Apple Airpods Headphones,1,150,09/27/19 23:12,"677 8th St, Portland, ME 04101" +250064,Google Phone,1,600,09/28/19 23:43,"927 South St, Los Angeles, CA 90001" +250065,AA Batteries (4-pack),1,3.84,09/02/19 10:13,"523 4th St, Seattle, WA 98101" +250066,AAA Batteries (4-pack),1,2.99,09/04/19 12:21,"658 Lake St, San Francisco, CA 94016" +250066,USB-C Charging Cable,1,11.95,09/04/19 12:21,"658 Lake St, San Francisco, CA 94016" +250067,ThinkPad Laptop,1,999.99,09/25/19 20:35,"833 Maple St, San Francisco, CA 94016" +250068,USB-C Charging Cable,1,11.95,09/01/19 09:16,"57 Hill St, Austin, TX 73301" +250069,Apple Airpods Headphones,1,150,09/09/19 07:57,"605 West St, Boston, MA 02215" +250070,Apple Airpods Headphones,1,150,09/16/19 16:39,"423 7th St, Austin, TX 73301" +250071,AA Batteries (4-pack),2,3.84,09/27/19 18:00,"520 6th St, Los Angeles, CA 90001" +250072,Wired Headphones,1,11.99,09/15/19 12:40,"288 Pine St, Boston, MA 02215" +250073,Wired Headphones,1,11.99,09/08/19 15:00,"113 8th St, Portland, OR 97035" +250074,20in Monitor,1,109.99,09/02/19 16:29,"506 Washington St, Boston, MA 02215" +250075,Bose SoundSport Headphones,1,99.99,09/19/19 22:48,"335 Pine St, Seattle, WA 98101" +250076,AAA Batteries (4-pack),1,2.99,09/27/19 10:33,"78 Washington St, New York City, NY 10001" +250077,USB-C Charging Cable,1,11.95,09/12/19 13:21,"432 Lincoln St, San Francisco, CA 94016" +250078,Lightning Charging Cable,1,14.95,09/06/19 16:22,"50 Jefferson St, Portland, OR 97035" +250079,AAA Batteries (4-pack),1,2.99,09/02/19 18:33,"474 8th St, Boston, MA 02215" +250080,Lightning Charging Cable,1,14.95,09/23/19 08:34,"16 Center St, Austin, TX 73301" +250080,USB-C Charging Cable,1,11.95,09/23/19 08:34,"16 Center St, Austin, TX 73301" +250081,Apple Airpods Headphones,1,150,09/28/19 12:19,"807 Forest St, San Francisco, CA 94016" +250082,Bose SoundSport Headphones,1,99.99,09/23/19 13:35,"56 1st St, Los Angeles, CA 90001" +250083,AAA Batteries (4-pack),1,2.99,09/14/19 16:08,"217 Dogwood St, Austin, TX 73301" +250084,AA Batteries (4-pack),2,3.84,09/12/19 15:43,"427 Johnson St, New York City, NY 10001" +250085,Lightning Charging Cable,1,14.95,09/23/19 21:26,"715 Willow St, New York City, NY 10001" +250086,Wired Headphones,1,11.99,09/09/19 09:58,"523 9th St, New York City, NY 10001" +250087,Lightning Charging Cable,1,14.95,09/06/19 14:16,"19 Dogwood St, Portland, OR 97035" +250088,AA Batteries (4-pack),1,3.84,09/17/19 07:02,"853 Cedar St, Los Angeles, CA 90001" +250089,Apple Airpods Headphones,1,150,09/05/19 19:01,"912 Lincoln St, Los Angeles, CA 90001" +250090,USB-C Charging Cable,1,11.95,09/03/19 21:36,"600 Main St, Los Angeles, CA 90001" +250091,Bose SoundSport Headphones,1,99.99,09/11/19 17:43,"379 River St, Atlanta, GA 30301" +250092,AA Batteries (4-pack),2,3.84,09/27/19 18:12,"303 Hickory St, New York City, NY 10001" +250092,Apple Airpods Headphones,1,150,09/27/19 18:12,"303 Hickory St, New York City, NY 10001" +250093,AA Batteries (4-pack),1,3.84,09/18/19 17:58,"979 6th St, Portland, ME 04101" +250094,AA Batteries (4-pack),1,3.84,09/10/19 15:24,"2 Willow St, Boston, MA 02215" +250095,27in FHD Monitor,1,149.99,09/06/19 20:06,"571 Madison St, Portland, OR 97035" +250096,AAA Batteries (4-pack),2,2.99,09/05/19 21:26,"953 Highland St, Boston, MA 02215" +250097,Wired Headphones,1,11.99,09/07/19 10:19,"790 10th St, Boston, MA 02215" +250098,Flatscreen TV,1,300,09/27/19 12:09,"893 5th St, Portland, OR 97035" +250099,USB-C Charging Cable,1,11.95,09/19/19 20:59,"561 Maple St, Portland, OR 97035" +250100,AA Batteries (4-pack),4,3.84,09/20/19 18:45,"942 5th St, Atlanta, GA 30301" +250101,Lightning Charging Cable,2,14.95,09/09/19 21:34,"349 Pine St, Boston, MA 02215" +250102,Apple Airpods Headphones,1,150,09/27/19 08:26,"265 Washington St, New York City, NY 10001" +250103,Wired Headphones,1,11.99,09/27/19 11:53,"328 14th St, Boston, MA 02215" +250104,Wired Headphones,1,11.99,09/26/19 11:05,"166 7th St, Portland, OR 97035" +250105,iPhone,1,700,09/11/19 12:53,"915 Hickory St, Dallas, TX 75001" +250105,Apple Airpods Headphones,1,150,09/11/19 12:53,"915 Hickory St, Dallas, TX 75001" +250106,iPhone,1,700,09/29/19 15:23,"851 Meadow St, Seattle, WA 98101" +250107,AAA Batteries (4-pack),1,2.99,09/01/19 20:15,"899 Sunset St, Los Angeles, CA 90001" +250108,Lightning Charging Cable,1,14.95,09/11/19 10:34,"484 14th St, New York City, NY 10001" +250109,Bose SoundSport Headphones,1,99.99,09/09/19 20:56,"226 8th St, Seattle, WA 98101" +250110,Apple Airpods Headphones,1,150,09/05/19 14:46,"250 2nd St, San Francisco, CA 94016" +250111,Bose SoundSport Headphones,1,99.99,09/08/19 07:14,"48 Cherry St, Seattle, WA 98101" +250112,Macbook Pro Laptop,1,1700,09/04/19 13:33,"675 Walnut St, San Francisco, CA 94016" +250112,Lightning Charging Cable,1,14.95,09/04/19 13:33,"675 Walnut St, San Francisco, CA 94016" +250113,Apple Airpods Headphones,1,150,09/19/19 09:00,"111 Dogwood St, New York City, NY 10001" +250114,LG Washing Machine,1,600.0,09/25/19 22:12,"481 Lake St, Portland, OR 97035" +250115,AA Batteries (4-pack),1,3.84,09/02/19 10:53,"48 Dogwood St, Boston, MA 02215" +250116,27in 4K Gaming Monitor,1,389.99,09/19/19 10:30,"620 Willow St, Boston, MA 02215" +250117,Lightning Charging Cable,1,14.95,09/07/19 17:18,"304 Church St, New York City, NY 10001" +250118,Apple Airpods Headphones,1,150,09/15/19 22:40,"445 Hill St, New York City, NY 10001" +250119,Macbook Pro Laptop,1,1700,09/03/19 10:46,"648 12th St, New York City, NY 10001" +250120,Lightning Charging Cable,1,14.95,09/09/19 10:47,"554 Meadow St, Boston, MA 02215" +250121,20in Monitor,1,109.99,09/28/19 10:25,"199 Jefferson St, Los Angeles, CA 90001" +250122,Flatscreen TV,1,300,09/03/19 17:54,"22 Johnson St, Los Angeles, CA 90001" +250123,Bose SoundSport Headphones,1,99.99,09/08/19 06:47,"921 13th St, Austin, TX 73301" +250124,27in FHD Monitor,1,149.99,09/12/19 18:13,"970 Madison St, Los Angeles, CA 90001" +250125,27in FHD Monitor,1,149.99,09/13/19 15:34,"367 Meadow St, Los Angeles, CA 90001" +250126,27in 4K Gaming Monitor,1,389.99,09/06/19 19:14,"56 Church St, Boston, MA 02215" +250127,AA Batteries (4-pack),1,3.84,09/10/19 21:48,"4 Ridge St, Los Angeles, CA 90001" +250128,iPhone,1,700,09/26/19 18:50,"404 Lakeview St, Los Angeles, CA 90001" +250129,Bose SoundSport Headphones,1,99.99,09/29/19 16:58,"651 River St, San Francisco, CA 94016" +250130,iPhone,1,700,09/26/19 11:44,"222 6th St, New York City, NY 10001" +250130,Apple Airpods Headphones,1,150,09/26/19 11:44,"222 6th St, New York City, NY 10001" +250131,Apple Airpods Headphones,1,150,09/30/19 21:02,"830 Johnson St, Portland, OR 97035" +250132,27in 4K Gaming Monitor,1,389.99,09/27/19 12:07,"407 Wilson St, San Francisco, CA 94016" +250133,iPhone,1,700,09/22/19 12:44,"451 Lincoln St, Los Angeles, CA 90001" +250134,Apple Airpods Headphones,1,150,09/09/19 21:20,"263 Wilson St, Dallas, TX 75001" +250135,AAA Batteries (4-pack),2,2.99,09/17/19 05:22,"388 Cherry St, Atlanta, GA 30301" +250136,USB-C Charging Cable,1,11.95,09/16/19 17:59,"66 1st St, Boston, MA 02215" +250137,34in Ultrawide Monitor,1,379.99,09/22/19 09:52,"917 Lake St, Boston, MA 02215" +250138,Lightning Charging Cable,1,14.95,09/04/19 16:55,"856 2nd St, Austin, TX 73301" +250139,AAA Batteries (4-pack),1,2.99,09/16/19 20:51,"936 5th St, New York City, NY 10001" +250140,Flatscreen TV,1,300,09/18/19 16:25,"521 Lake St, Los Angeles, CA 90001" +250141,Apple Airpods Headphones,1,150,09/15/19 19:27,"759 Meadow St, San Francisco, CA 94016" +250142,20in Monitor,1,109.99,09/21/19 10:21,"507 Lincoln St, San Francisco, CA 94016" +250143,34in Ultrawide Monitor,1,379.99,09/12/19 18:48,"81 Walnut St, Boston, MA 02215" +250144,USB-C Charging Cable,1,11.95,09/02/19 12:57,"250 Johnson St, San Francisco, CA 94016" +250145,Wired Headphones,1,11.99,09/16/19 00:45,"238 Hill St, Boston, MA 02215" +250146,AAA Batteries (4-pack),1,2.99,09/09/19 11:43,"837 6th St, Seattle, WA 98101" +250147,Apple Airpods Headphones,1,150,09/21/19 22:51,"595 Jefferson St, San Francisco, CA 94016" +250148,AA Batteries (4-pack),1,3.84,09/18/19 10:42,"363 Lakeview St, San Francisco, CA 94016" +250149,Lightning Charging Cable,1,14.95,09/25/19 18:13,"960 Hickory St, Atlanta, GA 30301" +250150,AAA Batteries (4-pack),3,2.99,09/08/19 13:42,"1 Pine St, Austin, TX 73301" +250151,AAA Batteries (4-pack),1,2.99,09/19/19 12:59,"799 Jackson St, Seattle, WA 98101" +250152,Wired Headphones,1,11.99,09/26/19 09:09,"908 4th St, San Francisco, CA 94016" +250153,Lightning Charging Cable,1,14.95,09/30/19 00:43,"804 Madison St, Austin, TX 73301" +250154,Lightning Charging Cable,1,14.95,09/02/19 07:06,"236 West St, San Francisco, CA 94016" +250155,AAA Batteries (4-pack),1,2.99,09/02/19 02:37,"322 Lake St, New York City, NY 10001" +250156,Wired Headphones,1,11.99,09/06/19 09:59,"1 Washington St, Los Angeles, CA 90001" +250157,Lightning Charging Cable,1,14.95,09/06/19 14:14,"514 Jackson St, San Francisco, CA 94016" +250158,Bose SoundSport Headphones,1,99.99,09/29/19 15:30,"749 Center St, Dallas, TX 75001" +250159,Wired Headphones,1,11.99,09/30/19 19:33,"532 Center St, San Francisco, CA 94016" +250160,AA Batteries (4-pack),1,3.84,09/22/19 11:11,"838 Dogwood St, Portland, OR 97035" +250161,Wired Headphones,1,11.99,09/17/19 03:56,"785 Jefferson St, San Francisco, CA 94016" +250162,27in FHD Monitor,1,149.99,09/08/19 18:28,"673 River St, Los Angeles, CA 90001" +250163,Wired Headphones,1,11.99,09/03/19 18:25,"363 North St, Los Angeles, CA 90001" +250164,Lightning Charging Cable,1,14.95,09/18/19 17:31,"310 10th St, San Francisco, CA 94016" +250165,Wired Headphones,1,11.99,09/10/19 12:45,"998 Spruce St, Atlanta, GA 30301" +250166,AAA Batteries (4-pack),1,2.99,09/20/19 09:28,"463 Wilson St, Seattle, WA 98101" +250167,USB-C Charging Cable,1,11.95,09/13/19 19:55,"436 Highland St, Boston, MA 02215" +250168,AAA Batteries (4-pack),1,2.99,09/09/19 08:06,"641 Jefferson St, Dallas, TX 75001" +250169,Apple Airpods Headphones,1,150,09/01/19 15:09,"911 Sunset St, Boston, MA 02215" +250170,USB-C Charging Cable,1,11.95,09/16/19 12:33,"451 North St, New York City, NY 10001" +250171,AAA Batteries (4-pack),1,2.99,09/14/19 14:31,"279 8th St, New York City, NY 10001" +250172,Wired Headphones,1,11.99,09/04/19 15:58,"183 Center St, New York City, NY 10001" +250172,34in Ultrawide Monitor,1,379.99,09/04/19 15:58,"183 Center St, New York City, NY 10001" +250173,34in Ultrawide Monitor,1,379.99,09/30/19 18:28,"233 Elm St, New York City, NY 10001" +250174,34in Ultrawide Monitor,1,379.99,09/14/19 13:37,"636 Church St, Los Angeles, CA 90001" +250175,AAA Batteries (4-pack),1,2.99,09/11/19 18:16,"187 Lincoln St, New York City, NY 10001" +250176,iPhone,1,700,09/08/19 17:15,"264 Chestnut St, Los Angeles, CA 90001" +250177,Wired Headphones,1,11.99,09/05/19 06:18,"227 11th St, San Francisco, CA 94016" +250178,USB-C Charging Cable,1,11.95,09/24/19 00:49,"607 8th St, San Francisco, CA 94016" +250179,ThinkPad Laptop,1,999.99,09/30/19 23:13,"155 Center St, Dallas, TX 75001" +250180,Wired Headphones,1,11.99,09/27/19 12:29,"79 Pine St, Boston, MA 02215" +250181,20in Monitor,1,109.99,09/20/19 12:49,"535 Jackson St, Boston, MA 02215" +250182,AA Batteries (4-pack),1,3.84,09/01/19 18:19,"492 Center St, San Francisco, CA 94016" +250183,20in Monitor,1,109.99,09/29/19 08:50,"718 10th St, Los Angeles, CA 90001" +250184,Lightning Charging Cable,1,14.95,09/24/19 15:15,"116 8th St, Boston, MA 02215" +250185,Google Phone,1,600,09/11/19 15:34,"744 14th St, Los Angeles, CA 90001" +250185,Bose SoundSport Headphones,1,99.99,09/11/19 15:34,"744 14th St, Los Angeles, CA 90001" +250186,Bose SoundSport Headphones,1,99.99,09/25/19 21:42,"578 Ridge St, Boston, MA 02215" +250187,USB-C Charging Cable,1,11.95,09/07/19 17:38,"243 Jefferson St, Austin, TX 73301" +250188,Lightning Charging Cable,1,14.95,09/23/19 12:34,"693 Jackson St, Seattle, WA 98101" +250189,Apple Airpods Headphones,1,150,09/14/19 17:52,"921 4th St, Seattle, WA 98101" +250190,Google Phone,1,600,09/08/19 11:31,"289 Park St, Atlanta, GA 30301" +250190,USB-C Charging Cable,1,11.95,09/08/19 11:31,"289 Park St, Atlanta, GA 30301" +250191,AAA Batteries (4-pack),1,2.99,09/07/19 01:04,"312 Jackson St, Atlanta, GA 30301" +250192,Wired Headphones,1,11.99,09/03/19 14:57,"722 11th St, Los Angeles, CA 90001" +250193,Lightning Charging Cable,1,14.95,09/17/19 13:04,"251 10th St, Atlanta, GA 30301" +250194,27in 4K Gaming Monitor,1,389.99,09/09/19 09:13,"360 Hill St, Austin, TX 73301" +250195,20in Monitor,1,109.99,09/22/19 18:18,"386 Adams St, San Francisco, CA 94016" +250196,20in Monitor,1,109.99,09/24/19 08:35,"511 5th St, New York City, NY 10001" +250197,Apple Airpods Headphones,1,150,09/20/19 19:40,"479 Ridge St, San Francisco, CA 94016" +250198,Google Phone,1,600,09/23/19 19:15,"546 Lakeview St, Boston, MA 02215" +250198,USB-C Charging Cable,1,11.95,09/23/19 19:15,"546 Lakeview St, Boston, MA 02215" +250199,Bose SoundSport Headphones,1,99.99,09/04/19 20:27,"293 Highland St, New York City, NY 10001" +250200,27in FHD Monitor,1,149.99,09/11/19 05:41,"601 1st St, San Francisco, CA 94016" +250201,27in 4K Gaming Monitor,1,389.99,09/28/19 21:22,"129 Adams St, Los Angeles, CA 90001" +250202,Apple Airpods Headphones,1,150,09/23/19 15:16,"870 11th St, Seattle, WA 98101" +250203,Lightning Charging Cable,1,14.95,09/16/19 20:22,"392 1st St, Seattle, WA 98101" +250204,iPhone,1,700,09/24/19 21:45,"571 Spruce St, Los Angeles, CA 90001" +250205,Macbook Pro Laptop,1,1700,09/08/19 17:31,"744 Highland St, San Francisco, CA 94016" +250206,27in 4K Gaming Monitor,1,389.99,09/16/19 10:51,"629 Jefferson St, Boston, MA 02215" +250207,AAA Batteries (4-pack),2,2.99,09/04/19 17:41,"189 Washington St, Seattle, WA 98101" +250208,AAA Batteries (4-pack),1,2.99,09/24/19 14:17,"765 10th St, Los Angeles, CA 90001" +250209,Lightning Charging Cable,1,14.95,09/30/19 13:41,"17 Cherry St, New York City, NY 10001" +250210,Apple Airpods Headphones,1,150,09/27/19 21:42,"483 8th St, Portland, OR 97035" +250211,34in Ultrawide Monitor,1,379.99,09/10/19 15:59,"67 North St, Dallas, TX 75001" +250212,iPhone,1,700,09/11/19 19:28,"280 Meadow St, Dallas, TX 75001" +250213,Wired Headphones,1,11.99,09/30/19 19:34,"146 9th St, Los Angeles, CA 90001" +250214,AA Batteries (4-pack),1,3.84,09/12/19 22:07,"922 Walnut St, New York City, NY 10001" +250215,Wired Headphones,1,11.99,09/15/19 12:01,"344 Meadow St, New York City, NY 10001" +250216,AA Batteries (4-pack),2,3.84,09/06/19 21:28,"638 Cedar St, San Francisco, CA 94016" +250217,Lightning Charging Cable,1,14.95,09/11/19 14:05,"975 Sunset St, Atlanta, GA 30301" +250218,iPhone,1,700,09/07/19 17:44,"724 Forest St, San Francisco, CA 94016" +250219,ThinkPad Laptop,1,999.99,09/15/19 10:24,"449 Lakeview St, Boston, MA 02215" +250220,AAA Batteries (4-pack),1,2.99,09/29/19 18:29,"288 7th St, San Francisco, CA 94016" +250221,AAA Batteries (4-pack),5,2.99,09/03/19 17:43,"331 Park St, Portland, OR 97035" +250222,Macbook Pro Laptop,1,1700,09/07/19 21:43,"41 Ridge St, Seattle, WA 98101" +250223,LG Washing Machine,1,600.0,09/06/19 15:36,"602 8th St, Los Angeles, CA 90001" +250224,Lightning Charging Cable,1,14.95,09/07/19 09:50,"219 Willow St, Los Angeles, CA 90001" +250225,AAA Batteries (4-pack),1,2.99,09/09/19 08:31,"614 10th St, San Francisco, CA 94016" +250226,Google Phone,1,600,09/08/19 15:26,"34 Center St, Boston, MA 02215" +250227,Wired Headphones,2,11.99,09/25/19 22:14,"428 Pine St, San Francisco, CA 94016" +250228,AA Batteries (4-pack),2,3.84,09/08/19 12:08,"644 South St, Seattle, WA 98101" +250229,27in FHD Monitor,1,149.99,09/02/19 19:51,"13 Dogwood St, San Francisco, CA 94016" +250230,Wired Headphones,1,11.99,09/01/19 09:33,"7 Willow St, San Francisco, CA 94016" +250231,27in FHD Monitor,1,149.99,09/04/19 10:45,"197 Hickory St, Portland, OR 97035" +250232,USB-C Charging Cable,1,11.95,09/28/19 22:06,"798 West St, San Francisco, CA 94016" +250233,27in FHD Monitor,1,149.99,09/03/19 16:13,"497 Washington St, Austin, TX 73301" +250234,USB-C Charging Cable,1,11.95,09/11/19 08:52,"836 Chestnut St, New York City, NY 10001" +250235,Wired Headphones,1,11.99,09/29/19 10:48,"536 Adams St, Boston, MA 02215" +250236,AAA Batteries (4-pack),1,2.99,09/08/19 22:41,"249 Lake St, Austin, TX 73301" +250237,USB-C Charging Cable,1,11.95,09/25/19 12:07,"228 Hickory St, Boston, MA 02215" +250238,USB-C Charging Cable,1,11.95,09/25/19 00:26,"314 12th St, Seattle, WA 98101" +250239,Bose SoundSport Headphones,1,99.99,09/28/19 07:37,"428 9th St, New York City, NY 10001" +250240,Apple Airpods Headphones,1,150,09/11/19 17:18,"595 6th St, Austin, TX 73301" +250241,USB-C Charging Cable,1,11.95,09/17/19 07:36,"76 Dogwood St, San Francisco, CA 94016" +250242,LG Dryer,1,600.0,09/03/19 20:40,"970 Walnut St, San Francisco, CA 94016" +250243,Apple Airpods Headphones,1,150,09/18/19 20:11,"818 Chestnut St, Boston, MA 02215" +250244,Apple Airpods Headphones,1,150,09/09/19 23:47,"717 Willow St, Seattle, WA 98101" +250245,AA Batteries (4-pack),2,3.84,09/07/19 19:36,"171 Lake St, San Francisco, CA 94016" +250246,ThinkPad Laptop,1,999.99,09/28/19 17:21,"974 South St, Seattle, WA 98101" +250247,AAA Batteries (4-pack),1,2.99,09/12/19 16:11,"215 Lake St, Los Angeles, CA 90001" +250248,27in FHD Monitor,1,149.99,09/28/19 17:45,"597 2nd St, Los Angeles, CA 90001" +250249,Wired Headphones,1,11.99,09/16/19 00:20,"236 Meadow St, Los Angeles, CA 90001" +250250,34in Ultrawide Monitor,1,379.99,09/23/19 20:14,"915 Sunset St, San Francisco, CA 94016" +250251,27in FHD Monitor,1,149.99,09/08/19 11:55,"181 13th St, San Francisco, CA 94016" +250252,AAA Batteries (4-pack),2,2.99,09/13/19 18:11,"216 Washington St, Dallas, TX 75001" +250253,Vareebadd Phone,1,400,09/22/19 15:42,"26 5th St, Los Angeles, CA 90001" +250253,AA Batteries (4-pack),1,3.84,09/22/19 15:42,"26 5th St, Los Angeles, CA 90001" +250254,AAA Batteries (4-pack),1,2.99,09/05/19 14:49,"740 8th St, Dallas, TX 75001" +250255,Lightning Charging Cable,1,14.95,09/17/19 12:47,"106 Lake St, Dallas, TX 75001" +250256,Apple Airpods Headphones,1,150,09/02/19 11:56,"292 Lakeview St, Dallas, TX 75001" +250257,Google Phone,1,600,09/17/19 19:33,"447 Highland St, Boston, MA 02215" +250258,AAA Batteries (4-pack),1,2.99,09/14/19 15:56,"910 14th St, New York City, NY 10001" +250259,34in Ultrawide Monitor,1,379.99,09/30/19 16:33,"420 Lakeview St, Austin, TX 73301" +250260,USB-C Charging Cable,1,11.95,09/26/19 11:48,"991 Church St, New York City, NY 10001" +250260,Apple Airpods Headphones,1,150,09/26/19 11:48,"991 Church St, New York City, NY 10001" +250261,AAA Batteries (4-pack),1,2.99,09/12/19 15:03,"478 5th St, Portland, OR 97035" +,,,,, +250262,AAA Batteries (4-pack),3,2.99,09/16/19 14:26,"878 Meadow St, Austin, TX 73301" +250263,AA Batteries (4-pack),5,3.84,09/16/19 17:16,"276 Wilson St, Boston, MA 02215" +250264,Bose SoundSport Headphones,1,99.99,09/11/19 12:40,"354 2nd St, Boston, MA 02215" +250265,Bose SoundSport Headphones,1,99.99,09/19/19 17:19,"920 North St, Atlanta, GA 30301" +250266,Wired Headphones,1,11.99,09/23/19 11:32,"188 North St, Portland, OR 97035" +250266,iPhone,1,700,09/23/19 11:32,"188 North St, Portland, OR 97035" +250267,27in FHD Monitor,1,149.99,09/24/19 08:24,"715 5th St, Austin, TX 73301" +250268,AAA Batteries (4-pack),2,2.99,09/14/19 18:54,"266 Center St, Los Angeles, CA 90001" +250269,AA Batteries (4-pack),1,3.84,09/21/19 17:20,"561 River St, Boston, MA 02215" +250270,27in 4K Gaming Monitor,1,389.99,09/13/19 19:48,"196 Lake St, San Francisco, CA 94016" +250271,AAA Batteries (4-pack),1,2.99,09/15/19 19:10,"35 Jackson St, Los Angeles, CA 90001" +250272,Wired Headphones,1,11.99,09/13/19 13:47,"969 North St, Atlanta, GA 30301" +250273,USB-C Charging Cable,1,11.95,09/28/19 18:52,"823 Madison St, New York City, NY 10001" +250274,Bose SoundSport Headphones,1,99.99,09/27/19 12:51,"778 12th St, Dallas, TX 75001" +250275,AAA Batteries (4-pack),1,2.99,09/22/19 16:22,"320 South St, San Francisco, CA 94016" +250276,Lightning Charging Cable,1,14.95,09/11/19 18:27,"213 Center St, Portland, OR 97035" +250277,Bose SoundSport Headphones,1,99.99,09/28/19 12:57,"791 Washington St, Seattle, WA 98101" +250277,AA Batteries (4-pack),1,3.84,09/28/19 12:57,"791 Washington St, Seattle, WA 98101" +250278,Wired Headphones,1,11.99,09/06/19 12:13,"776 North St, Los Angeles, CA 90001" +250279,Bose SoundSport Headphones,1,99.99,09/24/19 16:12,"480 4th St, Austin, TX 73301" +250280,iPhone,1,700,09/17/19 10:47,"287 10th St, San Francisco, CA 94016" +250280,Lightning Charging Cable,1,14.95,09/17/19 10:47,"287 10th St, San Francisco, CA 94016" +250281,iPhone,1,700,09/13/19 23:46,"897 1st St, Seattle, WA 98101" +250282,AA Batteries (4-pack),2,3.84,09/08/19 19:07,"350 Johnson St, Boston, MA 02215" +250283,Google Phone,1,600,09/13/19 07:13,"748 9th St, Seattle, WA 98101" +250284,Wired Headphones,1,11.99,09/04/19 12:07,"871 Pine St, San Francisco, CA 94016" +250285,Wired Headphones,2,11.99,09/27/19 16:58,"483 Walnut St, San Francisco, CA 94016" +250286,27in FHD Monitor,1,149.99,09/30/19 18:34,"111 5th St, Dallas, TX 75001" +250287,27in FHD Monitor,1,149.99,09/23/19 00:55,"964 12th St, New York City, NY 10001" +250288,34in Ultrawide Monitor,1,379.99,09/27/19 15:10,"227 Cedar St, Los Angeles, CA 90001" +250289,27in 4K Gaming Monitor,1,389.99,09/02/19 15:46,"175 10th St, San Francisco, CA 94016" +250290,Wired Headphones,1,11.99,09/06/19 16:18,"41 Elm St, Seattle, WA 98101" +250291,Bose SoundSport Headphones,1,99.99,09/14/19 12:48,"415 2nd St, San Francisco, CA 94016" +250292,USB-C Charging Cable,1,11.95,09/16/19 17:21,"670 9th St, Los Angeles, CA 90001" +250293,34in Ultrawide Monitor,1,379.99,09/01/19 08:59,"857 Adams St, New York City, NY 10001" +250294,AAA Batteries (4-pack),1,2.99,09/14/19 12:55,"591 River St, San Francisco, CA 94016" +250295,USB-C Charging Cable,2,11.95,09/22/19 06:16,"435 Lake St, San Francisco, CA 94016" +250296,20in Monitor,1,109.99,09/01/19 12:52,"815 Pine St, Portland, ME 04101" +250297,Macbook Pro Laptop,1,1700,09/10/19 19:16,"262 Willow St, Portland, OR 97035" +250298,27in FHD Monitor,1,149.99,09/19/19 14:34,"768 Church St, New York City, NY 10001" +250299,USB-C Charging Cable,1,11.95,09/14/19 14:36,"203 1st St, Seattle, WA 98101" +250300,34in Ultrawide Monitor,1,379.99,09/24/19 19:05,"661 Madison St, New York City, NY 10001" +250301,Lightning Charging Cable,2,14.95,09/25/19 19:49,"409 Hickory St, New York City, NY 10001" +250302,USB-C Charging Cable,1,11.95,09/08/19 09:37,"358 13th St, Portland, OR 97035" +250303,Lightning Charging Cable,1,14.95,09/19/19 20:57,"479 West St, Boston, MA 02215" +250304,USB-C Charging Cable,1,11.95,09/04/19 18:36,"195 Madison St, San Francisco, CA 94016" +250305,AA Batteries (4-pack),1,3.84,09/30/19 13:41,"901 Spruce St, San Francisco, CA 94016" +250306,AAA Batteries (4-pack),2,2.99,09/15/19 08:29,"189 Lakeview St, Austin, TX 73301" +250307,AAA Batteries (4-pack),2,2.99,09/15/19 13:47,"660 7th St, New York City, NY 10001" +250308,ThinkPad Laptop,1,999.99,09/22/19 10:35,"732 Willow St, San Francisco, CA 94016" +250309,34in Ultrawide Monitor,1,379.99,09/03/19 23:11,"782 Main St, Los Angeles, CA 90001" +250310,USB-C Charging Cable,1,11.95,09/24/19 08:53,"346 Main St, New York City, NY 10001" +250311,Bose SoundSport Headphones,1,99.99,09/08/19 12:23,"649 Lake St, Los Angeles, CA 90001" +250312,Flatscreen TV,1,300,09/09/19 00:32,"534 Washington St, Austin, TX 73301" +250313,AA Batteries (4-pack),1,3.84,09/14/19 11:23,"929 5th St, Portland, OR 97035" +250314,Lightning Charging Cable,1,14.95,09/24/19 12:13,"438 10th St, Seattle, WA 98101" +250315,AA Batteries (4-pack),1,3.84,09/30/19 16:19,"534 13th St, Atlanta, GA 30301" +250316,27in 4K Gaming Monitor,1,389.99,09/07/19 13:44,"677 Church St, Seattle, WA 98101" +250317,Flatscreen TV,1,300,09/24/19 19:30,"392 Lake St, Atlanta, GA 30301" +250318,AA Batteries (4-pack),1,3.84,09/28/19 21:13,"446 Forest St, Los Angeles, CA 90001" +250319,Apple Airpods Headphones,1,150,09/11/19 19:17,"510 Wilson St, Seattle, WA 98101" +250320,34in Ultrawide Monitor,1,379.99,09/12/19 17:14,"297 5th St, Portland, OR 97035" +250321,Flatscreen TV,1,300,09/26/19 21:00,"895 Church St, New York City, NY 10001" +250322,27in 4K Gaming Monitor,1,389.99,09/08/19 00:24,"236 Madison St, San Francisco, CA 94016" +250323,34in Ultrawide Monitor,1,379.99,09/11/19 20:18,"309 13th St, Boston, MA 02215" +250324,27in 4K Gaming Monitor,1,389.99,09/29/19 10:37,"190 Johnson St, Boston, MA 02215" +250325,Lightning Charging Cable,1,14.95,09/19/19 15:45,"19 Meadow St, Boston, MA 02215" +250326,Wired Headphones,1,11.99,09/23/19 21:22,"257 Adams St, San Francisco, CA 94016" +250327,LG Dryer,1,600.0,09/12/19 13:06,"666 Spruce St, Boston, MA 02215" +250328,AA Batteries (4-pack),2,3.84,09/30/19 22:36,"926 Chestnut St, San Francisco, CA 94016" +250328,27in 4K Gaming Monitor,1,389.99,09/30/19 22:36,"926 Chestnut St, San Francisco, CA 94016" +250329,AA Batteries (4-pack),1,3.84,09/22/19 20:09,"187 2nd St, San Francisco, CA 94016" +250330,Apple Airpods Headphones,1,150,09/21/19 23:33,"608 Maple St, Los Angeles, CA 90001" +250331,Bose SoundSport Headphones,1,99.99,09/02/19 23:16,"2 5th St, Boston, MA 02215" +250332,iPhone,1,700,09/21/19 20:59,"165 Spruce St, Seattle, WA 98101" +250333,27in FHD Monitor,1,149.99,09/01/19 09:19,"142 Cherry St, Portland, ME 04101" +250334,Lightning Charging Cable,1,14.95,09/16/19 18:17,"241 Jefferson St, Boston, MA 02215" +250335,Flatscreen TV,1,300,09/25/19 14:47,"510 11th St, Atlanta, GA 30301" +250336,20in Monitor,1,109.99,09/07/19 22:14,"636 13th St, San Francisco, CA 94016" +250337,34in Ultrawide Monitor,1,379.99,09/27/19 22:49,"748 Willow St, Portland, OR 97035" +250338,USB-C Charging Cable,1,11.95,09/22/19 09:59,"938 Willow St, Boston, MA 02215" +250339,iPhone,1,700,09/29/19 22:51,"559 Johnson St, San Francisco, CA 94016" +250340,Bose SoundSport Headphones,1,99.99,09/11/19 12:36,"293 Highland St, New York City, NY 10001" +250341,27in 4K Gaming Monitor,1,389.99,09/07/19 21:08,"267 13th St, Boston, MA 02215" +250342,34in Ultrawide Monitor,1,379.99,09/17/19 18:33,"215 7th St, San Francisco, CA 94016" +250343,ThinkPad Laptop,1,999.99,09/23/19 11:14,"699 Cherry St, Atlanta, GA 30301" +250344,Lightning Charging Cable,1,14.95,09/25/19 17:59,"476 Jackson St, Seattle, WA 98101" +250345,Bose SoundSport Headphones,1,99.99,09/01/19 14:44,"96 Jackson St, Dallas, TX 75001" +250346,USB-C Charging Cable,1,11.95,09/25/19 22:30,"41 7th St, Atlanta, GA 30301" +250347,Wired Headphones,1,11.99,09/20/19 17:17,"301 Hickory St, Portland, OR 97035" +250348,Lightning Charging Cable,1,14.95,09/04/19 08:55,"85 Maple St, Dallas, TX 75001" +250349,AA Batteries (4-pack),1,3.84,09/16/19 12:28,"204 6th St, Dallas, TX 75001" +250350,34in Ultrawide Monitor,1,379.99,09/26/19 19:38,"228 9th St, Atlanta, GA 30301" +250351,Wired Headphones,1,11.99,09/28/19 20:01,"24 Center St, Los Angeles, CA 90001" +250352,Apple Airpods Headphones,1,150,09/27/19 21:38,"987 8th St, Seattle, WA 98101" +250352,Wired Headphones,1,11.99,09/27/19 21:38,"987 8th St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +250353,Apple Airpods Headphones,1,150,09/26/19 15:59,"726 Center St, Boston, MA 02215" +250354,AAA Batteries (4-pack),1,2.99,09/04/19 02:17,"907 South St, San Francisco, CA 94016" +250355,AAA Batteries (4-pack),1,2.99,09/26/19 20:49,"822 Hickory St, Atlanta, GA 30301" +250356,Apple Airpods Headphones,1,150,09/26/19 13:22,"223 Walnut St, Portland, OR 97035" +,,,,, +250357,USB-C Charging Cable,1,11.95,09/25/19 11:33,"879 Sunset St, Boston, MA 02215" +250357,AA Batteries (4-pack),1,3.84,09/25/19 11:33,"879 Sunset St, Boston, MA 02215" +250358,Google Phone,1,600,09/03/19 21:12,"404 Elm St, Boston, MA 02215" +250359,USB-C Charging Cable,1,11.95,09/22/19 04:49,"443 Washington St, New York City, NY 10001" +250360,AAA Batteries (4-pack),1,2.99,09/07/19 19:35,"483 Cherry St, San Francisco, CA 94016" +250361,AAA Batteries (4-pack),1,2.99,09/28/19 19:37,"108 River St, Boston, MA 02215" +250362,LG Dryer,1,600.0,09/28/19 14:59,"833 Jackson St, Los Angeles, CA 90001" +250363,Bose SoundSport Headphones,1,99.99,09/27/19 17:08,"998 1st St, San Francisco, CA 94016" +250364,Apple Airpods Headphones,1,150,09/10/19 12:50,"787 Walnut St, Boston, MA 02215" +250365,Bose SoundSport Headphones,1,99.99,09/10/19 12:05,"586 Hill St, New York City, NY 10001" +250366,Bose SoundSport Headphones,1,99.99,09/09/19 13:05,"569 North St, Austin, TX 73301" +250367,Bose SoundSport Headphones,1,99.99,09/16/19 08:58,"169 14th St, Austin, TX 73301" +250368,Apple Airpods Headphones,2,150,09/20/19 12:45,"804 Hickory St, Los Angeles, CA 90001" +250369,AA Batteries (4-pack),1,3.84,09/06/19 14:54,"240 Lake St, Los Angeles, CA 90001" +250370,AA Batteries (4-pack),1,3.84,09/03/19 15:29,"754 Johnson St, Atlanta, GA 30301" +250371,Bose SoundSport Headphones,1,99.99,09/06/19 09:34,"898 Spruce St, Atlanta, GA 30301" +250372,20in Monitor,1,109.99,09/28/19 23:26,"857 Highland St, Dallas, TX 75001" +250373,Bose SoundSport Headphones,1,99.99,09/26/19 11:36,"813 13th St, Los Angeles, CA 90001" +250374,Bose SoundSport Headphones,1,99.99,09/28/19 17:04,"999 Johnson St, Boston, MA 02215" +250375,Apple Airpods Headphones,1,150,09/21/19 17:48,"126 Adams St, New York City, NY 10001" +250376,Vareebadd Phone,1,400,09/28/19 17:15,"913 1st St, Los Angeles, CA 90001" +250377,USB-C Charging Cable,1,11.95,09/30/19 11:37,"917 9th St, Dallas, TX 75001" +250378,USB-C Charging Cable,1,11.95,09/05/19 09:45,"599 Hill St, San Francisco, CA 94016" +250379,27in 4K Gaming Monitor,1,389.99,09/21/19 16:52,"607 West St, San Francisco, CA 94016" +250380,Apple Airpods Headphones,1,150,09/23/19 12:34,"578 6th St, San Francisco, CA 94016" +250381,Apple Airpods Headphones,1,150,09/05/19 18:52,"802 North St, New York City, NY 10001" +250382,Lightning Charging Cable,1,14.95,09/21/19 06:01,"895 Cherry St, Los Angeles, CA 90001" +250383,27in 4K Gaming Monitor,1,389.99,09/18/19 18:01,"851 Center St, Seattle, WA 98101" +250384,AAA Batteries (4-pack),3,2.99,09/29/19 12:51,"465 South St, Los Angeles, CA 90001" +250385,Bose SoundSport Headphones,1,99.99,09/02/19 11:58,"975 Cedar St, Dallas, TX 75001" +250386,Apple Airpods Headphones,1,150,09/01/19 10:20,"87 West St, Boston, MA 02215" +250387,Google Phone,1,600,09/24/19 21:16,"24 Highland St, San Francisco, CA 94016" +250387,Bose SoundSport Headphones,1,99.99,09/24/19 21:16,"24 Highland St, San Francisco, CA 94016" +250388,AAA Batteries (4-pack),8,2.99,09/14/19 20:33,"109 9th St, Portland, OR 97035" +250389,AAA Batteries (4-pack),1,2.99,09/19/19 23:53,"487 Meadow St, San Francisco, CA 94016" +250390,Apple Airpods Headphones,1,150,09/04/19 12:15,"896 South St, Portland, OR 97035" +250391,AAA Batteries (4-pack),1,2.99,09/04/19 19:13,"663 7th St, San Francisco, CA 94016" +250392,Lightning Charging Cable,2,14.95,09/15/19 11:50,"649 Lincoln St, Dallas, TX 75001" +250393,Bose SoundSport Headphones,1,99.99,09/01/19 19:49,"233 Dogwood St, Dallas, TX 75001" +250394,Wired Headphones,1,11.99,09/28/19 06:07,"186 2nd St, San Francisco, CA 94016" +250395,Lightning Charging Cable,1,14.95,09/22/19 07:40,"333 Church St, San Francisco, CA 94016" +250396,Bose SoundSport Headphones,1,99.99,09/27/19 08:53,"572 Lincoln St, San Francisco, CA 94016" +250397,USB-C Charging Cable,1,11.95,09/22/19 13:51,"445 Jackson St, Atlanta, GA 30301" +250398,Bose SoundSport Headphones,1,99.99,09/17/19 20:13,"245 Pine St, Los Angeles, CA 90001" +250399,AAA Batteries (4-pack),1,2.99,09/30/19 21:19,"698 North St, Boston, MA 02215" +250400,AA Batteries (4-pack),1,3.84,09/15/19 07:37,"858 Hickory St, Seattle, WA 98101" +250401,Vareebadd Phone,1,400,09/24/19 17:10,"114 Johnson St, Seattle, WA 98101" +250402,Apple Airpods Headphones,1,150,09/26/19 02:55,"183 1st St, Austin, TX 73301" +250403,USB-C Charging Cable,1,11.95,09/19/19 15:34,"536 Hill St, New York City, NY 10001" +250404,Wired Headphones,1,11.99,09/27/19 18:10,"147 Cherry St, Boston, MA 02215" +250405,Lightning Charging Cable,1,14.95,09/20/19 18:17,"201 8th St, New York City, NY 10001" +250406,AA Batteries (4-pack),1,3.84,09/12/19 17:28,"620 2nd St, Austin, TX 73301" +250407,Wired Headphones,1,11.99,09/11/19 19:08,"17 5th St, Atlanta, GA 30301" +250408,Apple Airpods Headphones,1,150,09/28/19 08:02,"737 Ridge St, Los Angeles, CA 90001" +250409,iPhone,1,700,09/27/19 19:39,"130 Spruce St, Los Angeles, CA 90001" +250410,AAA Batteries (4-pack),2,2.99,09/05/19 20:59,"292 Sunset St, Seattle, WA 98101" +250411,Apple Airpods Headphones,1,150,09/12/19 11:04,"792 9th St, Seattle, WA 98101" +250412,27in 4K Gaming Monitor,1,389.99,09/12/19 05:35,"45 5th St, Seattle, WA 98101" +250413,USB-C Charging Cable,1,11.95,09/12/19 21:05,"537 Lincoln St, Portland, OR 97035" +250414,AAA Batteries (4-pack),1,2.99,09/04/19 19:49,"468 South St, New York City, NY 10001" +250415,AA Batteries (4-pack),2,3.84,09/27/19 19:40,"528 13th St, Dallas, TX 75001" +250416,USB-C Charging Cable,1,11.95,09/26/19 16:57,"109 4th St, San Francisco, CA 94016" +250417,AA Batteries (4-pack),1,3.84,09/24/19 17:52,"373 Church St, New York City, NY 10001" +250418,Lightning Charging Cable,2,14.95,09/26/19 22:40,"434 9th St, Seattle, WA 98101" +250419,Wired Headphones,1,11.99,09/21/19 10:04,"964 Wilson St, New York City, NY 10001" +250420,20in Monitor,1,109.99,09/04/19 21:07,"831 Washington St, San Francisco, CA 94016" +250421,Flatscreen TV,1,300,09/02/19 22:55,"697 Ridge St, Dallas, TX 75001" +250422,Apple Airpods Headphones,1,150,09/03/19 10:13,"799 1st St, Portland, ME 04101" +250423,USB-C Charging Cable,1,11.95,09/27/19 19:03,"934 Chestnut St, Austin, TX 73301" +250424,AA Batteries (4-pack),2,3.84,09/07/19 10:55,"319 Maple St, San Francisco, CA 94016" +250425,AAA Batteries (4-pack),1,2.99,09/18/19 17:52,"197 Forest St, San Francisco, CA 94016" +250426,Google Phone,1,600,09/11/19 10:34,"719 Johnson St, Atlanta, GA 30301" +250427,27in FHD Monitor,1,149.99,09/10/19 18:24,"430 Cherry St, Boston, MA 02215" +250428,AA Batteries (4-pack),2,3.84,09/23/19 08:55,"781 13th St, Portland, OR 97035" +250429,AAA Batteries (4-pack),1,2.99,09/29/19 19:57,"634 Jackson St, Portland, OR 97035" +250429,AAA Batteries (4-pack),3,2.99,09/29/19 19:57,"634 Jackson St, Portland, OR 97035" +250430,USB-C Charging Cable,1,11.95,09/21/19 13:12,"252 6th St, Boston, MA 02215" +250431,Bose SoundSport Headphones,1,99.99,09/13/19 19:21,"839 North St, Seattle, WA 98101" +250432,AA Batteries (4-pack),1,3.84,09/17/19 18:21,"15 Lincoln St, San Francisco, CA 94016" +250433,Wired Headphones,1,11.99,09/19/19 23:45,"401 Cedar St, New York City, NY 10001" +250434,Lightning Charging Cable,1,14.95,09/17/19 21:56,"708 Walnut St, Atlanta, GA 30301" +250435,Lightning Charging Cable,1,14.95,09/17/19 18:58,"729 12th St, San Francisco, CA 94016" +250436,27in 4K Gaming Monitor,1,389.99,09/20/19 19:39,"353 River St, San Francisco, CA 94016" +250437,USB-C Charging Cable,1,11.95,09/22/19 19:48,"296 12th St, New York City, NY 10001" +250438,ThinkPad Laptop,1,999.99,09/29/19 21:28,"920 1st St, Seattle, WA 98101" +250439,AA Batteries (4-pack),1,3.84,09/14/19 17:24,"52 2nd St, Seattle, WA 98101" +250440,iPhone,1,700,09/20/19 19:50,"76 Madison St, San Francisco, CA 94016" +250440,Lightning Charging Cable,1,14.95,09/20/19 19:50,"76 Madison St, San Francisco, CA 94016" +250441,27in FHD Monitor,1,149.99,09/26/19 13:49,"327 5th St, Atlanta, GA 30301" +250442,AA Batteries (4-pack),1,3.84,09/03/19 22:14,"249 1st St, San Francisco, CA 94016" +250443,Bose SoundSport Headphones,1,99.99,09/13/19 10:34,"782 Highland St, Boston, MA 02215" +250444,AAA Batteries (4-pack),1,2.99,09/01/19 20:52,"616 Johnson St, Portland, OR 97035" +250445,Google Phone,1,600,09/27/19 11:55,"659 Main St, San Francisco, CA 94016" +250446,Wired Headphones,1,11.99,09/18/19 22:37,"334 Maple St, San Francisco, CA 94016" +250447,Wired Headphones,1,11.99,09/15/19 09:59,"82 Willow St, Atlanta, GA 30301" +250448,USB-C Charging Cable,1,11.95,09/03/19 15:09,"525 South St, Portland, OR 97035" +250449,USB-C Charging Cable,1,11.95,09/03/19 12:07,"875 2nd St, Seattle, WA 98101" +250450,USB-C Charging Cable,1,11.95,09/13/19 14:30,"275 11th St, Dallas, TX 75001" +250451,Bose SoundSport Headphones,1,99.99,09/04/19 16:26,"650 Main St, Atlanta, GA 30301" +250452,Lightning Charging Cable,1,14.95,09/20/19 14:25,"273 Johnson St, New York City, NY 10001" +250453,USB-C Charging Cable,1,11.95,09/05/19 18:28,"490 Pine St, Atlanta, GA 30301" +250454,AAA Batteries (4-pack),2,2.99,09/11/19 20:07,"601 Forest St, Boston, MA 02215" +250455,Lightning Charging Cable,1,14.95,09/11/19 08:29,"764 Pine St, San Francisco, CA 94016" +250456,AAA Batteries (4-pack),1,2.99,09/19/19 20:13,"489 Forest St, Portland, OR 97035" +250457,AA Batteries (4-pack),2,3.84,09/29/19 21:49,"364 Pine St, New York City, NY 10001" +250458,Lightning Charging Cable,1,14.95,09/22/19 14:06,"603 5th St, Dallas, TX 75001" +250459,AAA Batteries (4-pack),1,2.99,09/04/19 16:40,"776 Adams St, Seattle, WA 98101" +250460,USB-C Charging Cable,1,11.95,09/10/19 20:54,"661 Adams St, New York City, NY 10001" +250461,USB-C Charging Cable,1,11.95,09/16/19 16:30,"313 River St, Boston, MA 02215" +250462,AA Batteries (4-pack),2,3.84,09/13/19 00:34,"983 Highland St, Boston, MA 02215" +250463,AA Batteries (4-pack),1,3.84,09/17/19 11:33,"182 South St, Boston, MA 02215" +250464,Apple Airpods Headphones,1,150,09/08/19 19:15,"788 Spruce St, Seattle, WA 98101" +250465,AA Batteries (4-pack),1,3.84,09/02/19 22:37,"191 Meadow St, Los Angeles, CA 90001" +250466,Lightning Charging Cable,1,14.95,09/12/19 13:48,"224 8th St, Seattle, WA 98101" +250467,Wired Headphones,1,11.99,09/16/19 21:24,"488 Park St, Portland, ME 04101" +250468,AA Batteries (4-pack),1,3.84,09/03/19 22:44,"283 Jefferson St, Dallas, TX 75001" +250469,Bose SoundSport Headphones,1,99.99,09/10/19 22:37,"653 Cherry St, New York City, NY 10001" +250470,27in 4K Gaming Monitor,1,389.99,09/13/19 23:01,"54 Willow St, Boston, MA 02215" +250471,Google Phone,1,600,09/27/19 13:56,"703 Lincoln St, Boston, MA 02215" +250472,AA Batteries (4-pack),1,3.84,09/14/19 13:23,"312 Forest St, Atlanta, GA 30301" +250473,Vareebadd Phone,1,400,09/17/19 11:47,"264 5th St, Atlanta, GA 30301" +250474,Macbook Pro Laptop,1,1700,09/08/19 13:11,"195 Cherry St, San Francisco, CA 94016" +250475,AA Batteries (4-pack),1,3.84,09/10/19 19:33,"680 Lakeview St, Los Angeles, CA 90001" +250476,Apple Airpods Headphones,1,150,09/01/19 14:30,"224 7th St, Los Angeles, CA 90001" +250477,Macbook Pro Laptop,1,1700,09/30/19 21:03,"280 Spruce St, Los Angeles, CA 90001" +250478,Lightning Charging Cable,1,14.95,09/02/19 14:17,"18 8th St, New York City, NY 10001" +250479,Bose SoundSport Headphones,1,99.99,09/20/19 14:47,"421 Highland St, Los Angeles, CA 90001" +250480,Apple Airpods Headphones,1,150,09/21/19 19:33,"488 Johnson St, Dallas, TX 75001" +250481,AAA Batteries (4-pack),1,2.99,09/11/19 23:14,"863 Church St, Boston, MA 02215" +250482,USB-C Charging Cable,1,11.95,09/13/19 10:55,"26 Main St, Seattle, WA 98101" +250483,Macbook Pro Laptop,1,1700,09/14/19 17:43,"877 Main St, Austin, TX 73301" +250484,Flatscreen TV,1,300,09/04/19 17:19,"162 4th St, Seattle, WA 98101" +250485,20in Monitor,1,109.99,09/07/19 18:23,"123 13th St, New York City, NY 10001" +250486,34in Ultrawide Monitor,1,379.99,09/27/19 19:06,"255 Lake St, New York City, NY 10001" +250487,Vareebadd Phone,1,400,09/06/19 23:39,"777 Walnut St, San Francisco, CA 94016" +250487,USB-C Charging Cable,2,11.95,09/06/19 23:39,"777 Walnut St, San Francisco, CA 94016" +250488,AAA Batteries (4-pack),1,2.99,09/19/19 03:34,"240 Jefferson St, San Francisco, CA 94016" +250489,Apple Airpods Headphones,1,150,09/28/19 11:20,"21 7th St, New York City, NY 10001" +250490,AA Batteries (4-pack),1,3.84,09/10/19 16:54,"563 Maple St, Atlanta, GA 30301" +250491,ThinkPad Laptop,1,999.99,09/14/19 17:31,"110 Church St, Portland, OR 97035" +250492,Lightning Charging Cable,1,14.95,09/16/19 13:33,"988 Adams St, Atlanta, GA 30301" +250493,USB-C Charging Cable,2,11.95,09/15/19 19:35,"825 6th St, Atlanta, GA 30301" +250494,AA Batteries (4-pack),1,3.84,09/12/19 23:48,"747 4th St, Boston, MA 02215" +250495,Lightning Charging Cable,1,14.95,09/17/19 15:36,"114 Cedar St, Los Angeles, CA 90001" +250496,34in Ultrawide Monitor,1,379.99,09/12/19 06:41,"393 Madison St, San Francisco, CA 94016" +250497,USB-C Charging Cable,1,11.95,09/11/19 10:22,"349 Maple St, New York City, NY 10001" +250498,Lightning Charging Cable,1,14.95,09/10/19 08:34,"237 Highland St, Los Angeles, CA 90001" +250499,27in 4K Gaming Monitor,1,389.99,09/14/19 18:46,"593 Meadow St, Boston, MA 02215" +250500,Lightning Charging Cable,1,14.95,09/23/19 01:16,"267 North St, New York City, NY 10001" +250501,Lightning Charging Cable,1,14.95,09/05/19 09:29,"344 8th St, New York City, NY 10001" +250502,AA Batteries (4-pack),1,3.84,09/20/19 13:59,"676 Madison St, San Francisco, CA 94016" +250503,AAA Batteries (4-pack),1,2.99,09/16/19 21:16,"838 10th St, San Francisco, CA 94016" +250504,Wired Headphones,1,11.99,09/26/19 00:20,"202 Adams St, Los Angeles, CA 90001" +250505,iPhone,1,700,09/06/19 15:19,"604 River St, New York City, NY 10001" +250506,Wired Headphones,1,11.99,09/04/19 14:45,"932 Johnson St, Los Angeles, CA 90001" +250507,Apple Airpods Headphones,1,150,09/19/19 03:16,"714 Willow St, Los Angeles, CA 90001" +250508,Bose SoundSport Headphones,1,99.99,09/20/19 11:28,"949 Willow St, San Francisco, CA 94016" +250509,USB-C Charging Cable,1,11.95,09/19/19 08:49,"493 Spruce St, Boston, MA 02215" +250510,27in FHD Monitor,1,149.99,09/26/19 20:41,"588 7th St, Boston, MA 02215" +250511,Lightning Charging Cable,1,14.95,09/05/19 18:21,"638 Elm St, San Francisco, CA 94016" +250512,AAA Batteries (4-pack),1,2.99,09/06/19 20:00,"948 7th St, New York City, NY 10001" +250513,Lightning Charging Cable,1,14.95,09/11/19 14:42,"898 Lincoln St, Seattle, WA 98101" +250514,Apple Airpods Headphones,1,150,09/25/19 22:30,"659 Hickory St, Boston, MA 02215" +250515,27in FHD Monitor,1,149.99,09/29/19 18:35,"714 Washington St, New York City, NY 10001" +250516,Macbook Pro Laptop,1,1700,09/22/19 13:48,"139 Pine St, San Francisco, CA 94016" +250517,AAA Batteries (4-pack),1,2.99,09/09/19 20:41,"5 Madison St, Seattle, WA 98101" +250518,Wired Headphones,1,11.99,09/05/19 13:32,"164 Walnut St, San Francisco, CA 94016" +250519,USB-C Charging Cable,1,11.95,09/12/19 11:08,"808 South St, San Francisco, CA 94016" +250520,27in FHD Monitor,1,149.99,09/13/19 12:10,"167 Highland St, Dallas, TX 75001" +250520,27in FHD Monitor,1,149.99,09/13/19 12:10,"167 Highland St, Dallas, TX 75001" +250521,27in FHD Monitor,1,149.99,09/16/19 09:16,"274 10th St, Portland, OR 97035" +250522,Bose SoundSport Headphones,1,99.99,09/12/19 16:15,"66 13th St, San Francisco, CA 94016" +250523,Wired Headphones,1,11.99,09/05/19 22:50,"22 Chestnut St, Dallas, TX 75001" +250524,AAA Batteries (4-pack),5,2.99,09/12/19 00:13,"501 Center St, New York City, NY 10001" +250525,USB-C Charging Cable,1,11.95,09/30/19 18:57,"664 9th St, Dallas, TX 75001" +250526,Lightning Charging Cable,1,14.95,09/16/19 20:27,"59 Lincoln St, Portland, ME 04101" +250526,Bose SoundSport Headphones,1,99.99,09/16/19 20:27,"59 Lincoln St, Portland, ME 04101" +250527,27in 4K Gaming Monitor,1,389.99,09/08/19 11:18,"755 Sunset St, Portland, OR 97035" +250528,Flatscreen TV,1,300,09/10/19 22:59,"106 10th St, New York City, NY 10001" +250529,AAA Batteries (4-pack),1,2.99,09/07/19 18:45,"510 Willow St, Boston, MA 02215" +250530,AA Batteries (4-pack),4,3.84,09/13/19 11:25,"214 10th St, San Francisco, CA 94016" +250531,Flatscreen TV,1,300,09/22/19 19:25,"366 Jefferson St, San Francisco, CA 94016" +250532,AA Batteries (4-pack),3,3.84,09/11/19 10:56,"369 West St, Dallas, TX 75001" +250533,34in Ultrawide Monitor,1,379.99,09/25/19 18:11,"602 Johnson St, Atlanta, GA 30301" +250534,USB-C Charging Cable,1,11.95,09/14/19 23:05,"606 Adams St, Atlanta, GA 30301" +250535,Wired Headphones,1,11.99,09/08/19 14:12,"722 6th St, San Francisco, CA 94016" +250536,Apple Airpods Headphones,1,150,09/02/19 19:43,"109 Spruce St, Atlanta, GA 30301" +250537,AA Batteries (4-pack),1,3.84,09/27/19 17:12,"615 Spruce St, San Francisco, CA 94016" +250538,AAA Batteries (4-pack),1,2.99,09/27/19 19:30,"725 Dogwood St, Dallas, TX 75001" +250539,Wired Headphones,1,11.99,09/30/19 20:03,"484 Spruce St, San Francisco, CA 94016" +250540,AA Batteries (4-pack),2,3.84,09/04/19 13:21,"307 Main St, Boston, MA 02215" +250541,AAA Batteries (4-pack),1,2.99,09/27/19 08:28,"412 Jackson St, San Francisco, CA 94016" +250542,Wired Headphones,1,11.99,09/13/19 19:33,"668 1st St, New York City, NY 10001" +250543,Apple Airpods Headphones,1,150,09/03/19 15:53,"441 Church St, Seattle, WA 98101" +250544,Lightning Charging Cable,1,14.95,09/30/19 21:10,"168 Cherry St, Austin, TX 73301" +250545,Lightning Charging Cable,1,14.95,09/07/19 11:06,"699 Church St, Dallas, TX 75001" +250546,AA Batteries (4-pack),4,3.84,09/01/19 12:31,"650 Adams St, Dallas, TX 75001" +250547,AA Batteries (4-pack),1,3.84,09/20/19 11:26,"284 Jefferson St, San Francisco, CA 94016" +250548,Macbook Pro Laptop,1,1700,09/07/19 13:45,"593 Meadow St, Los Angeles, CA 90001" +250549,AAA Batteries (4-pack),2,2.99,09/19/19 16:43,"532 14th St, New York City, NY 10001" +250550,Wired Headphones,1,11.99,09/11/19 11:43,"951 Meadow St, San Francisco, CA 94016" +250551,Bose SoundSport Headphones,1,99.99,09/24/19 19:29,"489 6th St, San Francisco, CA 94016" +250552,AA Batteries (4-pack),1,3.84,09/20/19 20:12,"26 Adams St, Boston, MA 02215" +250553,iPhone,1,700,09/07/19 20:07,"259 1st St, Los Angeles, CA 90001" +250554,AAA Batteries (4-pack),1,2.99,09/23/19 18:32,"366 Lakeview St, Portland, ME 04101" +250555,Wired Headphones,2,11.99,09/06/19 12:54,"437 Sunset St, Los Angeles, CA 90001" +250556,Wired Headphones,1,11.99,09/05/19 20:28,"373 Chestnut St, San Francisco, CA 94016" +250557,AAA Batteries (4-pack),1,2.99,09/26/19 17:42,"327 Pine St, Dallas, TX 75001" +250558,AA Batteries (4-pack),1,3.84,09/30/19 15:09,"981 West St, Dallas, TX 75001" +250559,Lightning Charging Cable,1,14.95,09/15/19 16:13,"589 Highland St, San Francisco, CA 94016" +250560,Bose SoundSport Headphones,1,99.99,09/16/19 20:04,"780 5th St, Atlanta, GA 30301" +250561,34in Ultrawide Monitor,1,379.99,09/11/19 22:30,"696 Walnut St, San Francisco, CA 94016" +250562,20in Monitor,1,109.99,09/14/19 09:22,"506 8th St, San Francisco, CA 94016" +250563,USB-C Charging Cable,1,11.95,09/22/19 09:56,"923 South St, Seattle, WA 98101" +250564,USB-C Charging Cable,1,11.95,09/08/19 10:51,"105 8th St, Portland, OR 97035" +250565,USB-C Charging Cable,1,11.95,09/05/19 19:30,"555 Hill St, San Francisco, CA 94016" +250566,20in Monitor,1,109.99,09/18/19 19:41,"138 14th St, Los Angeles, CA 90001" +250567,Google Phone,1,600,09/27/19 22:41,"69 Lake St, Boston, MA 02215" +250568,Lightning Charging Cable,1,14.95,09/12/19 21:16,"954 Lakeview St, Atlanta, GA 30301" +250569,27in FHD Monitor,1,149.99,09/03/19 09:49,"971 Chestnut St, San Francisco, CA 94016" +250570,Bose SoundSport Headphones,1,99.99,09/26/19 21:16,"38 11th St, Seattle, WA 98101" +250571,Lightning Charging Cable,1,14.95,09/07/19 22:30,"733 10th St, Austin, TX 73301" +250572,Wired Headphones,1,11.99,09/21/19 11:37,"835 5th St, Los Angeles, CA 90001" +250573,AAA Batteries (4-pack),1,2.99,09/15/19 19:53,"328 Spruce St, Dallas, TX 75001" +250574,Lightning Charging Cable,1,14.95,09/23/19 17:11,"300 Meadow St, San Francisco, CA 94016" +250575,Flatscreen TV,1,300,09/29/19 22:31,"620 Ridge St, Los Angeles, CA 90001" +250576,AA Batteries (4-pack),1,3.84,09/08/19 18:54,"355 1st St, Seattle, WA 98101" +250577,AA Batteries (4-pack),1,3.84,09/11/19 13:44,"764 4th St, Atlanta, GA 30301" +250578,iPhone,1,700,09/04/19 12:30,"794 Cedar St, New York City, NY 10001" +250578,Apple Airpods Headphones,1,150,09/04/19 12:30,"794 Cedar St, New York City, NY 10001" +250579,27in FHD Monitor,1,149.99,09/21/19 22:10,"592 Lake St, Atlanta, GA 30301" +250580,USB-C Charging Cable,1,11.95,09/18/19 13:52,"313 Spruce St, Seattle, WA 98101" +250581,27in FHD Monitor,1,149.99,09/18/19 17:19,"249 Cherry St, Seattle, WA 98101" +250582,Apple Airpods Headphones,1,150,09/07/19 12:17,"638 Spruce St, Atlanta, GA 30301" +250583,AA Batteries (4-pack),1,3.84,09/19/19 23:28,"784 Highland St, New York City, NY 10001" +250584,AAA Batteries (4-pack),1,2.99,09/03/19 00:03,"958 Johnson St, New York City, NY 10001" +250585,Wired Headphones,1,11.99,09/11/19 09:29,"676 Ridge St, New York City, NY 10001" +250586,Bose SoundSport Headphones,1,99.99,09/30/19 08:46,"709 West St, Boston, MA 02215" +250587,20in Monitor,1,109.99,09/30/19 10:07,"931 2nd St, San Francisco, CA 94016" +250588,AA Batteries (4-pack),2,3.84,09/20/19 12:09,"946 Pine St, Los Angeles, CA 90001" +250589,iPhone,1,700,09/11/19 07:43,"916 13th St, Los Angeles, CA 90001" +250590,AAA Batteries (4-pack),1,2.99,09/26/19 17:33,"252 13th St, Boston, MA 02215" +250591,Wired Headphones,1,11.99,09/08/19 12:42,"113 Chestnut St, Los Angeles, CA 90001" +250592,Bose SoundSport Headphones,1,99.99,09/22/19 00:23,"997 Madison St, Dallas, TX 75001" +250592,Wired Headphones,1,11.99,09/22/19 00:23,"997 Madison St, Dallas, TX 75001" +250593,AAA Batteries (4-pack),1,2.99,09/08/19 21:03,"168 Willow St, San Francisco, CA 94016" +250594,USB-C Charging Cable,1,11.95,09/29/19 19:07,"862 Hill St, New York City, NY 10001" +250595,Lightning Charging Cable,1,14.95,09/27/19 13:51,"517 Washington St, New York City, NY 10001" +250596,AA Batteries (4-pack),2,3.84,09/14/19 00:09,"548 8th St, San Francisco, CA 94016" +250597,Apple Airpods Headphones,1,150,09/05/19 23:13,"353 Hickory St, Los Angeles, CA 90001" +250598,ThinkPad Laptop,1,999.99,09/04/19 16:31,"916 Chestnut St, New York City, NY 10001" +250599,Lightning Charging Cable,1,14.95,09/21/19 12:40,"55 9th St, San Francisco, CA 94016" +250600,Wired Headphones,1,11.99,09/18/19 18:04,"143 Hill St, New York City, NY 10001" +250600,27in FHD Monitor,1,149.99,09/18/19 18:04,"143 Hill St, New York City, NY 10001" +250601,Lightning Charging Cable,2,14.95,09/05/19 18:15,"20 Meadow St, San Francisco, CA 94016" +250602,iPhone,1,700,09/16/19 19:56,"816 South St, Boston, MA 02215" +250603,Lightning Charging Cable,1,14.95,09/30/19 13:49,"508 Center St, New York City, NY 10001" +250604,27in FHD Monitor,1,149.99,09/25/19 09:22,"321 West St, San Francisco, CA 94016" +250605,Bose SoundSport Headphones,1,99.99,09/22/19 15:07,"63 2nd St, Atlanta, GA 30301" +250606,ThinkPad Laptop,1,999.99,09/10/19 15:26,"425 Jackson St, New York City, NY 10001" +250607,Apple Airpods Headphones,2,150,09/10/19 14:19,"55 Park St, Seattle, WA 98101" +250608,Bose SoundSport Headphones,1,99.99,09/02/19 16:59,"138 Jefferson St, Dallas, TX 75001" +250608,Wired Headphones,1,11.99,09/02/19 16:59,"138 Jefferson St, Dallas, TX 75001" +250609,20in Monitor,1,109.99,09/26/19 02:17,"71 Lincoln St, Dallas, TX 75001" +250610,Lightning Charging Cable,1,14.95,09/17/19 21:13,"806 Lake St, New York City, NY 10001" +250611,Lightning Charging Cable,1,14.95,09/01/19 09:04,"242 Church St, San Francisco, CA 94016" +250612,AA Batteries (4-pack),1,3.84,09/08/19 15:48,"526 12th St, Boston, MA 02215" +250613,Apple Airpods Headphones,1,150,09/26/19 11:25,"517 12th St, New York City, NY 10001" +250614,20in Monitor,1,109.99,09/18/19 18:01,"67 Lakeview St, San Francisco, CA 94016" +250615,27in 4K Gaming Monitor,1,389.99,09/02/19 12:26,"394 River St, Los Angeles, CA 90001" +250616,USB-C Charging Cable,1,11.95,09/12/19 15:17,"820 5th St, Portland, OR 97035" +250617,iPhone,1,700,09/15/19 22:00,"833 Lake St, Seattle, WA 98101" +250618,Macbook Pro Laptop,1,1700,09/09/19 19:12,"894 Main St, Atlanta, GA 30301" +250619,Google Phone,1,600,09/06/19 10:48,"654 14th St, New York City, NY 10001" +250619,Wired Headphones,1,11.99,09/06/19 10:48,"654 14th St, New York City, NY 10001" +250620,USB-C Charging Cable,1,11.95,09/02/19 12:56,"505 Highland St, San Francisco, CA 94016" +250621,AA Batteries (4-pack),1,3.84,09/06/19 13:29,"518 Jackson St, Atlanta, GA 30301" +250622,AA Batteries (4-pack),1,3.84,09/04/19 14:16,"903 Sunset St, Austin, TX 73301" +250623,Google Phone,1,600,09/05/19 15:09,"147 South St, Los Angeles, CA 90001" +250624,Wired Headphones,1,11.99,09/08/19 11:35,"531 9th St, Seattle, WA 98101" +250625,AA Batteries (4-pack),1,3.84,09/18/19 10:13,"900 Church St, Seattle, WA 98101" +250626,USB-C Charging Cable,1,11.95,09/08/19 20:30,"653 10th St, Dallas, TX 75001" +250627,iPhone,1,700,09/07/19 16:46,"389 5th St, Atlanta, GA 30301" +250628,USB-C Charging Cable,1,11.95,09/12/19 12:39,"741 1st St, Los Angeles, CA 90001" +250629,USB-C Charging Cable,1,11.95,09/09/19 20:16,"894 9th St, Austin, TX 73301" +250630,34in Ultrawide Monitor,1,379.99,09/10/19 12:25,"432 Willow St, Dallas, TX 75001" +250631,27in 4K Gaming Monitor,1,389.99,09/24/19 10:56,"304 Ridge St, San Francisco, CA 94016" +250632,Wired Headphones,1,11.99,09/02/19 15:38,"921 Wilson St, Los Angeles, CA 90001" +250633,Macbook Pro Laptop,1,1700,09/20/19 18:16,"433 Lake St, Atlanta, GA 30301" +250634,Vareebadd Phone,1,400,09/18/19 14:25,"36 Maple St, Dallas, TX 75001" +250634,Apple Airpods Headphones,1,150,09/18/19 14:25,"36 Maple St, Dallas, TX 75001" +250635,Apple Airpods Headphones,1,150,09/09/19 11:54,"678 Lakeview St, San Francisco, CA 94016" +250636,AA Batteries (4-pack),1,3.84,09/08/19 22:19,"298 7th St, San Francisco, CA 94016" +250637,20in Monitor,1,109.99,09/13/19 18:10,"585 7th St, Boston, MA 02215" +250638,USB-C Charging Cable,1,11.95,09/05/19 20:07,"893 10th St, New York City, NY 10001" +250639,AA Batteries (4-pack),1,3.84,09/13/19 04:38,"539 Johnson St, Boston, MA 02215" +250640,20in Monitor,1,109.99,09/29/19 23:10,"609 5th St, San Francisco, CA 94016" +250641,AAA Batteries (4-pack),1,2.99,09/09/19 08:09,"69 Chestnut St, Boston, MA 02215" +250642,Apple Airpods Headphones,1,150,09/20/19 20:47,"169 1st St, Los Angeles, CA 90001" +250643,AA Batteries (4-pack),1,3.84,09/27/19 23:10,"771 10th St, Los Angeles, CA 90001" +250644,AA Batteries (4-pack),4,3.84,09/06/19 10:03,"682 Hill St, San Francisco, CA 94016" +250645,AA Batteries (4-pack),1,3.84,09/14/19 15:06,"798 8th St, San Francisco, CA 94016" +250646,AAA Batteries (4-pack),5,2.99,09/17/19 16:06,"121 North St, San Francisco, CA 94016" +250647,USB-C Charging Cable,1,11.95,09/25/19 00:38,"68 8th St, Seattle, WA 98101" +250648,AA Batteries (4-pack),1,3.84,09/29/19 23:27,"395 Main St, San Francisco, CA 94016" +250649,AA Batteries (4-pack),3,3.84,09/01/19 12:23,"659 13th St, Los Angeles, CA 90001" +250650,Bose SoundSport Headphones,1,99.99,09/19/19 19:26,"998 Elm St, Los Angeles, CA 90001" +250651,AAA Batteries (4-pack),1,2.99,09/06/19 16:17,"914 Center St, Seattle, WA 98101" +250652,Lightning Charging Cable,1,14.95,09/04/19 16:01,"408 12th St, Dallas, TX 75001" +250653,iPhone,1,700,09/04/19 19:19,"806 1st St, Dallas, TX 75001" +250653,Lightning Charging Cable,1,14.95,09/04/19 19:19,"806 1st St, Dallas, TX 75001" +250654,AAA Batteries (4-pack),1,2.99,09/26/19 10:03,"690 Chestnut St, Atlanta, GA 30301" +250655,Wired Headphones,1,11.99,09/21/19 20:58,"528 West St, Dallas, TX 75001" +250656,Lightning Charging Cable,1,14.95,09/29/19 15:53,"694 Lake St, Boston, MA 02215" +250657,27in FHD Monitor,1,149.99,09/13/19 15:18,"134 Cherry St, San Francisco, CA 94016" +250658,27in FHD Monitor,1,149.99,09/27/19 22:19,"119 Elm St, Los Angeles, CA 90001" +250659,Apple Airpods Headphones,1,150,09/17/19 13:02,"725 11th St, Seattle, WA 98101" +250660,27in 4K Gaming Monitor,1,389.99,09/22/19 15:50,"773 13th St, Dallas, TX 75001" +250661,USB-C Charging Cable,1,11.95,09/07/19 13:45,"3 12th St, Boston, MA 02215" +250662,Lightning Charging Cable,1,14.95,09/30/19 21:29,"371 Sunset St, New York City, NY 10001" +250663,Bose SoundSport Headphones,1,99.99,09/19/19 17:29,"482 11th St, Los Angeles, CA 90001" +250664,AA Batteries (4-pack),2,3.84,09/22/19 12:01,"832 Spruce St, San Francisco, CA 94016" +250665,AAA Batteries (4-pack),1,2.99,09/21/19 22:30,"434 8th St, Dallas, TX 75001" +250666,USB-C Charging Cable,1,11.95,09/08/19 18:28,"862 12th St, Portland, OR 97035" +250667,USB-C Charging Cable,1,11.95,09/01/19 14:07,"216 Meadow St, Boston, MA 02215" +250668,Bose SoundSport Headphones,1,99.99,09/22/19 10:24,"838 Center St, San Francisco, CA 94016" +250669,Lightning Charging Cable,1,14.95,09/19/19 21:42,"770 4th St, Portland, OR 97035" +250670,Flatscreen TV,1,300,09/22/19 12:23,"444 Madison St, Boston, MA 02215" +250671,USB-C Charging Cable,1,11.95,09/06/19 13:06,"462 Ridge St, Atlanta, GA 30301" +250672,Wired Headphones,1,11.99,09/22/19 15:18,"644 Jackson St, Portland, ME 04101" +250673,Google Phone,1,600,09/30/19 17:11,"510 Meadow St, San Francisco, CA 94016" +250673,USB-C Charging Cable,1,11.95,09/30/19 17:11,"510 Meadow St, San Francisco, CA 94016" +250674,Wired Headphones,1,11.99,09/25/19 22:47,"270 Hickory St, New York City, NY 10001" +250675,AAA Batteries (4-pack),2,2.99,09/29/19 00:41,"5 Sunset St, San Francisco, CA 94016" +250676,Wired Headphones,1,11.99,09/03/19 01:58,"328 Cedar St, Portland, OR 97035" +250677,AAA Batteries (4-pack),3,2.99,09/12/19 22:46,"288 Madison St, Seattle, WA 98101" +250678,Lightning Charging Cable,1,14.95,09/24/19 11:44,"629 Dogwood St, Austin, TX 73301" +250679,Macbook Pro Laptop,1,1700,09/29/19 16:17,"813 Willow St, Los Angeles, CA 90001" +250680,ThinkPad Laptop,1,999.99,09/15/19 13:30,"821 Sunset St, New York City, NY 10001" +250681,Lightning Charging Cable,1,14.95,09/28/19 20:42,"391 Ridge St, Los Angeles, CA 90001" +250682,Apple Airpods Headphones,1,150,09/05/19 11:24,"396 Lakeview St, Los Angeles, CA 90001" +250683,Wired Headphones,2,11.99,09/06/19 08:59,"744 Jackson St, Los Angeles, CA 90001" +250684,iPhone,1,700,09/26/19 18:26,"403 Park St, Dallas, TX 75001" +250685,iPhone,1,700,09/30/19 21:57,"879 7th St, Dallas, TX 75001" +250686,Flatscreen TV,1,300,09/11/19 17:18,"346 Cherry St, New York City, NY 10001" +250687,34in Ultrawide Monitor,1,379.99,09/27/19 15:09,"974 Lake St, Dallas, TX 75001" +250688,Apple Airpods Headphones,1,150,09/05/19 18:50,"217 Hickory St, Seattle, WA 98101" +250689,AA Batteries (4-pack),1,3.84,09/05/19 00:31,"687 4th St, Los Angeles, CA 90001" +250690,iPhone,1,700,09/28/19 08:39,"449 Elm St, Portland, OR 97035" +250691,Bose SoundSport Headphones,1,99.99,09/27/19 12:42,"406 Madison St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +250692,Flatscreen TV,1,300,09/15/19 23:17,"404 1st St, Atlanta, GA 30301" +250693,Apple Airpods Headphones,1,150,09/27/19 20:41,"885 6th St, New York City, NY 10001" +250694,34in Ultrawide Monitor,1,379.99,09/21/19 19:32,"624 Main St, Los Angeles, CA 90001" +250695,Lightning Charging Cable,1,14.95,09/24/19 09:07,"941 7th St, Seattle, WA 98101" +250696,Apple Airpods Headphones,1,150,09/29/19 19:40,"47 12th St, Seattle, WA 98101" +250697,20in Monitor,1,109.99,09/29/19 16:37,"576 Madison St, San Francisco, CA 94016" +250698,AAA Batteries (4-pack),1,2.99,09/02/19 21:37,"332 Church St, San Francisco, CA 94016" +250699,Wired Headphones,1,11.99,09/15/19 11:57,"195 Madison St, New York City, NY 10001" +250700,USB-C Charging Cable,1,11.95,09/05/19 10:50,"320 11th St, Boston, MA 02215" +250701,iPhone,1,700,09/01/19 22:26,"692 Johnson St, New York City, NY 10001" +250702,Apple Airpods Headphones,1,150,09/13/19 18:55,"720 Spruce St, Seattle, WA 98101" +250703,USB-C Charging Cable,1,11.95,09/09/19 08:38,"622 West St, San Francisco, CA 94016" +250704,27in 4K Gaming Monitor,1,389.99,09/16/19 21:23,"352 Highland St, San Francisco, CA 94016" +250705,USB-C Charging Cable,1,11.95,09/13/19 13:58,"130 Walnut St, Boston, MA 02215" +250706,Wired Headphones,1,11.99,09/20/19 23:32,"501 14th St, Boston, MA 02215" +250707,AA Batteries (4-pack),1,3.84,09/19/19 13:08,"941 Wilson St, Austin, TX 73301" +250708,Bose SoundSport Headphones,1,99.99,09/07/19 12:36,"756 13th St, Portland, OR 97035" +250709,Vareebadd Phone,1,400,09/03/19 11:52,"943 10th St, Dallas, TX 75001" +250710,iPhone,1,700,09/21/19 13:05,"585 Jefferson St, San Francisco, CA 94016" +250711,Flatscreen TV,1,300,09/01/19 10:21,"990 Adams St, Atlanta, GA 30301" +250712,Apple Airpods Headphones,1,150,09/04/19 10:05,"986 Center St, Austin, TX 73301" +250713,ThinkPad Laptop,1,999.99,09/23/19 18:49,"876 1st St, Los Angeles, CA 90001" +250714,Wired Headphones,1,11.99,09/04/19 12:16,"580 Park St, Boston, MA 02215" +250715,AAA Batteries (4-pack),2,2.99,09/01/19 13:34,"795 Lakeview St, San Francisco, CA 94016" +250716,Apple Airpods Headphones,1,150,09/25/19 13:20,"278 6th St, Boston, MA 02215" +250717,iPhone,1,700,09/24/19 15:30,"367 Lake St, Atlanta, GA 30301" +250718,USB-C Charging Cable,1,11.95,09/20/19 16:38,"436 Forest St, Austin, TX 73301" +250719,Flatscreen TV,1,300,09/05/19 20:14,"248 Adams St, San Francisco, CA 94016" +250720,Flatscreen TV,1,300,09/26/19 17:55,"429 Main St, Seattle, WA 98101" +250721,AA Batteries (4-pack),1,3.84,09/24/19 16:37,"169 10th St, Atlanta, GA 30301" +250722,Wired Headphones,1,11.99,09/04/19 09:30,"136 Jackson St, Portland, OR 97035" +250723,USB-C Charging Cable,1,11.95,09/18/19 18:08,"96 Cherry St, Dallas, TX 75001" +250724,27in FHD Monitor,1,149.99,09/24/19 16:49,"261 Elm St, San Francisco, CA 94016" +250725,Lightning Charging Cable,1,14.95,09/16/19 14:20,"921 14th St, San Francisco, CA 94016" +250726,AA Batteries (4-pack),1,3.84,09/28/19 10:27,"733 5th St, San Francisco, CA 94016" +250727,34in Ultrawide Monitor,1,379.99,09/04/19 21:55,"240 Hill St, New York City, NY 10001" +250728,Wired Headphones,1,11.99,09/18/19 07:24,"836 6th St, New York City, NY 10001" +250729,AA Batteries (4-pack),1,3.84,09/08/19 22:33,"669 Lakeview St, Seattle, WA 98101" +250730,AAA Batteries (4-pack),1,2.99,09/28/19 20:52,"545 South St, San Francisco, CA 94016" +250731,20in Monitor,1,109.99,09/03/19 17:57,"397 12th St, Seattle, WA 98101" +250732,Bose SoundSport Headphones,1,99.99,09/28/19 10:54,"909 Lake St, Atlanta, GA 30301" +250733,AAA Batteries (4-pack),2,2.99,09/27/19 20:50,"713 Ridge St, Seattle, WA 98101" +250734,ThinkPad Laptop,1,999.99,09/04/19 10:28,"84 Sunset St, Los Angeles, CA 90001" +250735,Apple Airpods Headphones,1,150,09/30/19 18:41,"405 4th St, New York City, NY 10001" +250736,USB-C Charging Cable,1,11.95,09/01/19 20:22,"561 Cherry St, Atlanta, GA 30301" +250737,ThinkPad Laptop,1,999.99,09/18/19 14:09,"609 14th St, San Francisco, CA 94016" +250738,Apple Airpods Headphones,1,150,09/21/19 09:37,"996 11th St, Atlanta, GA 30301" +250739,AAA Batteries (4-pack),5,2.99,09/16/19 07:33,"170 Elm St, San Francisco, CA 94016" +250740,Flatscreen TV,1,300,09/05/19 21:04,"32 Sunset St, Los Angeles, CA 90001" +250740,34in Ultrawide Monitor,1,379.99,09/05/19 21:04,"32 Sunset St, Los Angeles, CA 90001" +250741,27in 4K Gaming Monitor,1,389.99,09/10/19 19:31,"207 Center St, San Francisco, CA 94016" +250742,AAA Batteries (4-pack),1,2.99,09/24/19 20:50,"237 2nd St, Atlanta, GA 30301" +250743,Lightning Charging Cable,1,14.95,09/10/19 09:31,"285 Lincoln St, San Francisco, CA 94016" +250744,AAA Batteries (4-pack),1,2.99,09/29/19 08:44,"691 Main St, San Francisco, CA 94016" +250745,Bose SoundSport Headphones,1,99.99,09/08/19 12:27,"911 Lincoln St, New York City, NY 10001" +250746,ThinkPad Laptop,1,999.99,09/02/19 20:18,"814 Hickory St, Boston, MA 02215" +250747,Wired Headphones,1,11.99,09/25/19 02:17,"513 Highland St, Boston, MA 02215" +250748,Apple Airpods Headphones,1,150,09/15/19 19:02,"514 Highland St, San Francisco, CA 94016" +250749,Google Phone,1,600,09/09/19 16:30,"542 9th St, New York City, NY 10001" +250750,USB-C Charging Cable,1,11.95,09/26/19 10:14,"401 Washington St, New York City, NY 10001" +250751,20in Monitor,1,109.99,09/10/19 13:14,"279 Spruce St, Boston, MA 02215" +250752,20in Monitor,1,109.99,09/24/19 21:00,"248 2nd St, Portland, OR 97035" +250753,Apple Airpods Headphones,1,150,09/10/19 11:27,"436 Lakeview St, Seattle, WA 98101" +250754,20in Monitor,1,109.99,09/10/19 13:54,"595 Church St, Los Angeles, CA 90001" +250755,Lightning Charging Cable,1,14.95,09/21/19 16:46,"909 Maple St, New York City, NY 10001" +250756,AAA Batteries (4-pack),1,2.99,09/09/19 19:16,"783 5th St, Los Angeles, CA 90001" +250757,AAA Batteries (4-pack),2,2.99,09/29/19 13:47,"221 Cedar St, Los Angeles, CA 90001" +250758,USB-C Charging Cable,1,11.95,09/06/19 11:22,"149 Chestnut St, San Francisco, CA 94016" +250759,Flatscreen TV,1,300,09/03/19 19:50,"33 Center St, Atlanta, GA 30301" +250760,Lightning Charging Cable,1,14.95,09/07/19 22:22,"202 Hill St, New York City, NY 10001" +250761,AAA Batteries (4-pack),2,2.99,09/10/19 10:52,"497 9th St, Boston, MA 02215" +250762,20in Monitor,1,109.99,09/29/19 11:07,"613 Adams St, Austin, TX 73301" +250763,Wired Headphones,1,11.99,09/30/19 17:15,"431 Center St, Los Angeles, CA 90001" +250764,USB-C Charging Cable,1,11.95,09/07/19 18:29,"283 4th St, Los Angeles, CA 90001" +250765,Lightning Charging Cable,1,14.95,09/12/19 18:10,"732 Meadow St, San Francisco, CA 94016" +250766,AAA Batteries (4-pack),1,2.99,09/02/19 19:22,"366 Madison St, Los Angeles, CA 90001" +250767,Flatscreen TV,1,300,09/20/19 19:29,"218 Pine St, New York City, NY 10001" +250768,USB-C Charging Cable,1,11.95,09/13/19 20:24,"410 Main St, Los Angeles, CA 90001" +250769,iPhone,1,700,09/09/19 18:59,"563 South St, San Francisco, CA 94016" +250770,ThinkPad Laptop,1,999.99,09/03/19 12:10,"33 Main St, Austin, TX 73301" +250771,Lightning Charging Cable,1,14.95,09/07/19 21:11,"124 Forest St, San Francisco, CA 94016" +250772,Apple Airpods Headphones,1,150,09/13/19 16:43,"19 Spruce St, Boston, MA 02215" +250773,Lightning Charging Cable,1,14.95,09/07/19 12:53,"284 Washington St, Boston, MA 02215" +250774,Wired Headphones,1,11.99,09/30/19 00:12,"712 Wilson St, New York City, NY 10001" +250775,ThinkPad Laptop,1,999.99,09/10/19 18:49,"726 Jackson St, San Francisco, CA 94016" +250776,20in Monitor,1,109.99,09/25/19 14:42,"496 Park St, Los Angeles, CA 90001" +250777,Lightning Charging Cable,1,14.95,09/18/19 12:58,"30 Washington St, Boston, MA 02215" +250778,Apple Airpods Headphones,1,150,09/18/19 19:35,"427 10th St, New York City, NY 10001" +250779,AA Batteries (4-pack),1,3.84,09/04/19 17:44,"896 North St, San Francisco, CA 94016" +250780,USB-C Charging Cable,2,11.95,09/05/19 17:40,"953 12th St, Atlanta, GA 30301" +250781,AA Batteries (4-pack),1,3.84,09/08/19 20:11,"987 Spruce St, San Francisco, CA 94016" +250782,AA Batteries (4-pack),1,3.84,09/13/19 17:05,"835 Center St, Boston, MA 02215" +250783,Vareebadd Phone,1,400,09/08/19 09:07,"765 6th St, Atlanta, GA 30301" +250783,Wired Headphones,1,11.99,09/08/19 09:07,"765 6th St, Atlanta, GA 30301" +250784,AA Batteries (4-pack),1,3.84,09/03/19 06:46,"321 Hickory St, San Francisco, CA 94016" +250785,ThinkPad Laptop,1,999.99,09/13/19 21:19,"692 14th St, New York City, NY 10001" +250786,USB-C Charging Cable,1,11.95,09/01/19 18:30,"517 Chestnut St, San Francisco, CA 94016" +250787,Apple Airpods Headphones,1,150,09/07/19 16:15,"943 Lake St, Los Angeles, CA 90001" +250788,AAA Batteries (4-pack),2,2.99,09/30/19 01:42,"524 Forest St, San Francisco, CA 94016" +250789,27in 4K Gaming Monitor,1,389.99,09/21/19 14:33,"875 Willow St, Los Angeles, CA 90001" +250790,AAA Batteries (4-pack),2,2.99,09/24/19 19:57,"869 South St, Atlanta, GA 30301" +250791,Lightning Charging Cable,1,14.95,09/09/19 20:26,"967 Church St, San Francisco, CA 94016" +250792,20in Monitor,1,109.99,09/08/19 09:53,"665 Jefferson St, San Francisco, CA 94016" +250793,20in Monitor,1,109.99,09/12/19 10:28,"986 Wilson St, San Francisco, CA 94016" +250794,Apple Airpods Headphones,1,150,09/13/19 17:06,"86 Hickory St, New York City, NY 10001" +250795,27in FHD Monitor,1,149.99,09/29/19 18:44,"465 Walnut St, San Francisco, CA 94016" +250796,Google Phone,1,600,09/22/19 01:47,"463 14th St, Los Angeles, CA 90001" +250796,Wired Headphones,1,11.99,09/22/19 01:47,"463 14th St, Los Angeles, CA 90001" +250797,Wired Headphones,1,11.99,09/24/19 09:24,"515 11th St, New York City, NY 10001" +250798,Wired Headphones,1,11.99,09/15/19 17:55,"440 Jefferson St, Dallas, TX 75001" +250799,Macbook Pro Laptop,1,1700,09/23/19 17:07,"239 2nd St, Portland, OR 97035" +250800,Macbook Pro Laptop,1,1700,09/02/19 17:44,"356 11th St, Seattle, WA 98101" +250801,27in FHD Monitor,1,149.99,09/03/19 10:58,"65 Jackson St, Seattle, WA 98101" +250802,AA Batteries (4-pack),1,3.84,09/13/19 20:49,"766 Walnut St, San Francisco, CA 94016" +250803,Macbook Pro Laptop,1,1700,09/17/19 10:55,"803 Elm St, Atlanta, GA 30301" +250804,USB-C Charging Cable,1,11.95,09/15/19 16:35,"124 14th St, Portland, OR 97035" +250805,34in Ultrawide Monitor,1,379.99,09/09/19 08:03,"421 Forest St, San Francisco, CA 94016" +250806,Lightning Charging Cable,1,14.95,09/25/19 07:37,"303 Chestnut St, Los Angeles, CA 90001" +250806,Apple Airpods Headphones,1,150,09/25/19 07:37,"303 Chestnut St, Los Angeles, CA 90001" +250807,iPhone,1,700,09/05/19 12:21,"118 12th St, San Francisco, CA 94016" +250808,Lightning Charging Cable,1,14.95,09/21/19 19:32,"447 Adams St, Seattle, WA 98101" +250809,27in 4K Gaming Monitor,1,389.99,09/26/19 19:49,"168 7th St, Dallas, TX 75001" +250810,AAA Batteries (4-pack),2,2.99,09/29/19 23:48,"103 Maple St, San Francisco, CA 94016" +250811,USB-C Charging Cable,1,11.95,09/23/19 14:17,"386 Church St, Los Angeles, CA 90001" +250812,Wired Headphones,1,11.99,09/02/19 13:43,"138 Cherry St, New York City, NY 10001" +250813,Lightning Charging Cable,1,14.95,09/20/19 20:59,"525 Washington St, New York City, NY 10001" +250814,USB-C Charging Cable,1,11.95,09/21/19 23:38,"611 7th St, San Francisco, CA 94016" +250815,Bose SoundSport Headphones,1,99.99,09/27/19 13:16,"597 Maple St, New York City, NY 10001" +250816,Google Phone,1,600,09/27/19 08:10,"69 5th St, Boston, MA 02215" +250817,Lightning Charging Cable,1,14.95,09/04/19 13:44,"208 5th St, Dallas, TX 75001" +250818,Wired Headphones,1,11.99,09/02/19 21:16,"46 9th St, Portland, OR 97035" +250819,AA Batteries (4-pack),1,3.84,09/16/19 20:55,"454 10th St, Boston, MA 02215" +250820,Vareebadd Phone,1,400,09/07/19 19:42,"644 Lakeview St, San Francisco, CA 94016" +250820,USB-C Charging Cable,2,11.95,09/07/19 19:42,"644 Lakeview St, San Francisco, CA 94016" +250821,AAA Batteries (4-pack),1,2.99,09/03/19 22:29,"174 2nd St, Seattle, WA 98101" +250822,iPhone,1,700,09/17/19 09:16,"645 Lake St, Boston, MA 02215" +250823,ThinkPad Laptop,1,999.99,09/26/19 12:56,"987 Ridge St, New York City, NY 10001" +250824,AAA Batteries (4-pack),1,2.99,09/18/19 10:03,"272 Wilson St, Dallas, TX 75001" +250825,Macbook Pro Laptop,1,1700,09/01/19 20:13,"686 South St, Austin, TX 73301" +250826,Bose SoundSport Headphones,1,99.99,09/06/19 15:19,"247 10th St, Los Angeles, CA 90001" +250827,Lightning Charging Cable,1,14.95,09/25/19 20:46,"685 9th St, San Francisco, CA 94016" +250828,AA Batteries (4-pack),1,3.84,09/15/19 01:28,"594 Cedar St, Seattle, WA 98101" +250829,AAA Batteries (4-pack),1,2.99,09/22/19 08:52,"455 5th St, San Francisco, CA 94016" +250830,Apple Airpods Headphones,1,150,09/07/19 19:41,"323 Adams St, San Francisco, CA 94016" +250831,Wired Headphones,1,11.99,09/18/19 19:48,"793 North St, Los Angeles, CA 90001" +250832,AA Batteries (4-pack),1,3.84,09/23/19 12:24,"100 Madison St, Portland, OR 97035" +250833,AA Batteries (4-pack),1,3.84,09/02/19 10:13,"185 Lincoln St, Los Angeles, CA 90001" +250834,Wired Headphones,1,11.99,09/18/19 14:02,"486 13th St, Dallas, TX 75001" +250835,AAA Batteries (4-pack),6,2.99,09/29/19 08:55,"762 Chestnut St, Los Angeles, CA 90001" +250836,LG Washing Machine,1,600.0,09/20/19 21:46,"238 6th St, San Francisco, CA 94016" +250837,USB-C Charging Cable,1,11.95,09/16/19 11:13,"888 South St, Boston, MA 02215" +250838,Wired Headphones,1,11.99,09/13/19 10:37,"849 Dogwood St, Austin, TX 73301" +250839,Bose SoundSport Headphones,1,99.99,09/30/19 15:21,"984 Jefferson St, Los Angeles, CA 90001" +250840,Wired Headphones,1,11.99,09/22/19 11:33,"593 Wilson St, San Francisco, CA 94016" +250841,Bose SoundSport Headphones,1,99.99,09/24/19 11:05,"450 Cherry St, New York City, NY 10001" +250842,AA Batteries (4-pack),1,3.84,09/27/19 23:23,"247 Lakeview St, San Francisco, CA 94016" +250843,Lightning Charging Cable,1,14.95,09/15/19 14:33,"293 5th St, Portland, OR 97035" +250844,Apple Airpods Headphones,1,150,09/19/19 22:52,"340 4th St, New York City, NY 10001" +250845,USB-C Charging Cable,1,11.95,09/27/19 11:50,"341 11th St, Atlanta, GA 30301" +250846,20in Monitor,1,109.99,09/07/19 09:15,"12 Pine St, Boston, MA 02215" +250847,Macbook Pro Laptop,1,1700,09/24/19 23:08,"626 8th St, San Francisco, CA 94016" +250848,Lightning Charging Cable,1,14.95,09/02/19 19:09,"483 North St, Los Angeles, CA 90001" +250849,USB-C Charging Cable,1,11.95,09/16/19 11:32,"97 Jefferson St, San Francisco, CA 94016" +250850,Lightning Charging Cable,1,14.95,09/29/19 19:35,"515 Hickory St, San Francisco, CA 94016" +250851,USB-C Charging Cable,1,11.95,09/10/19 17:48,"272 River St, San Francisco, CA 94016" +250852,Flatscreen TV,1,300,09/25/19 21:54,"688 River St, Portland, OR 97035" +250853,AA Batteries (4-pack),1,3.84,09/11/19 16:07,"319 10th St, Portland, OR 97035" +250854,Bose SoundSport Headphones,1,99.99,09/10/19 22:57,"508 Lakeview St, Boston, MA 02215" +250855,Vareebadd Phone,1,400,09/02/19 13:28,"976 10th St, Seattle, WA 98101" +250856,AAA Batteries (4-pack),1,2.99,09/17/19 21:45,"920 9th St, Atlanta, GA 30301" +250857,Lightning Charging Cable,1,14.95,09/16/19 19:19,"470 10th St, Portland, OR 97035" +250858,USB-C Charging Cable,1,11.95,09/21/19 22:05,"997 North St, San Francisco, CA 94016" +250859,27in 4K Gaming Monitor,1,389.99,09/09/19 19:35,"565 Hickory St, San Francisco, CA 94016" +250860,AAA Batteries (4-pack),1,2.99,09/15/19 16:40,"604 1st St, Seattle, WA 98101" +250861,iPhone,1,700,09/29/19 22:10,"69 Washington St, Dallas, TX 75001" +250862,AA Batteries (4-pack),1,3.84,09/09/19 16:21,"424 Dogwood St, San Francisco, CA 94016" +250863,Bose SoundSport Headphones,1,99.99,09/28/19 21:41,"221 13th St, Seattle, WA 98101" +250864,iPhone,1,700,09/20/19 08:28,"7 Lincoln St, San Francisco, CA 94016" +250864,Lightning Charging Cable,1,14.95,09/20/19 08:28,"7 Lincoln St, San Francisco, CA 94016" +250864,Wired Headphones,1,11.99,09/20/19 08:28,"7 Lincoln St, San Francisco, CA 94016" +250865,USB-C Charging Cable,1,11.95,09/17/19 22:54,"854 1st St, Atlanta, GA 30301" +250866,27in FHD Monitor,1,149.99,09/04/19 15:23,"99 12th St, San Francisco, CA 94016" +250867,USB-C Charging Cable,1,11.95,09/04/19 19:54,"433 11th St, Boston, MA 02215" +250868,Lightning Charging Cable,1,14.95,09/17/19 00:13,"457 Wilson St, New York City, NY 10001" +250869,iPhone,1,700,09/17/19 12:41,"549 4th St, New York City, NY 10001" +250870,USB-C Charging Cable,1,11.95,09/01/19 15:04,"402 Highland St, Austin, TX 73301" +250871,ThinkPad Laptop,1,999.99,09/29/19 20:00,"947 Madison St, Dallas, TX 75001" +250872,AAA Batteries (4-pack),1,2.99,09/20/19 18:34,"35 Dogwood St, Boston, MA 02215" +250873,AAA Batteries (4-pack),2,2.99,09/15/19 00:06,"684 Lincoln St, San Francisco, CA 94016" +250874,27in 4K Gaming Monitor,1,389.99,09/17/19 09:21,"706 Highland St, New York City, NY 10001" +250875,Apple Airpods Headphones,1,150,09/30/19 21:18,"458 11th St, Seattle, WA 98101" +250876,Apple Airpods Headphones,1,150,09/04/19 05:21,"3 9th St, New York City, NY 10001" +250877,Bose SoundSport Headphones,1,99.99,09/05/19 22:38,"665 Highland St, Seattle, WA 98101" +250878,USB-C Charging Cable,1,11.95,09/07/19 12:42,"591 4th St, San Francisco, CA 94016" +250879,iPhone,1,700,09/23/19 12:33,"839 4th St, New York City, NY 10001" +250880,Wired Headphones,1,11.99,09/17/19 00:05,"241 Wilson St, San Francisco, CA 94016" +250881,Macbook Pro Laptop,1,1700,09/10/19 09:44,"713 Maple St, San Francisco, CA 94016" +250882,USB-C Charging Cable,1,11.95,09/05/19 22:46,"197 Church St, San Francisco, CA 94016" +250883,AA Batteries (4-pack),1,3.84,09/16/19 07:39,"302 Cedar St, Los Angeles, CA 90001" +250884,Bose SoundSport Headphones,1,99.99,09/01/19 09:40,"490 Meadow St, Los Angeles, CA 90001" +250885,Google Phone,1,600,09/12/19 18:43,"838 Chestnut St, San Francisco, CA 94016" +250886,Lightning Charging Cable,1,14.95,09/16/19 07:45,"661 Spruce St, Dallas, TX 75001" +250887,USB-C Charging Cable,1,11.95,09/25/19 19:46,"656 Maple St, Boston, MA 02215" +250888,20in Monitor,1,109.99,09/30/19 21:50,"360 14th St, New York City, NY 10001" +250889,ThinkPad Laptop,1,999.99,09/18/19 20:58,"884 Highland St, Boston, MA 02215" +250890,27in FHD Monitor,1,149.99,09/01/19 19:42,"359 Washington St, San Francisco, CA 94016" +250891,Vareebadd Phone,1,400,09/25/19 16:08,"496 1st St, Dallas, TX 75001" +250891,Wired Headphones,1,11.99,09/25/19 16:08,"496 1st St, Dallas, TX 75001" +250892,AAA Batteries (4-pack),1,2.99,09/13/19 09:29,"690 Dogwood St, San Francisco, CA 94016" +250893,Apple Airpods Headphones,1,150,09/04/19 14:12,"391 Jefferson St, Portland, OR 97035" +250894,AA Batteries (4-pack),1,3.84,09/09/19 10:17,"107 Highland St, San Francisco, CA 94016" +250895,Apple Airpods Headphones,1,150,09/30/19 00:56,"573 Maple St, Dallas, TX 75001" +250896,AA Batteries (4-pack),1,3.84,09/27/19 17:04,"354 Lakeview St, San Francisco, CA 94016" +250897,Lightning Charging Cable,1,14.95,09/16/19 09:51,"145 Dogwood St, San Francisco, CA 94016" +250898,iPhone,1,700,09/03/19 07:54,"654 Cedar St, Seattle, WA 98101" +250899,USB-C Charging Cable,1,11.95,09/11/19 07:47,"131 Cedar St, Portland, ME 04101" +250900,ThinkPad Laptop,1,999.99,09/06/19 18:31,"582 Lake St, Seattle, WA 98101" +250901,USB-C Charging Cable,1,11.95,09/07/19 08:49,"182 Cherry St, Boston, MA 02215" +250902,Apple Airpods Headphones,1,150,09/07/19 11:50,"33 1st St, Los Angeles, CA 90001" +250903,Lightning Charging Cable,1,14.95,09/24/19 05:08,"369 Willow St, New York City, NY 10001" +250904,AAA Batteries (4-pack),1,2.99,09/07/19 10:24,"25 1st St, Los Angeles, CA 90001" +250905,Apple Airpods Headphones,1,150,09/19/19 13:05,"937 10th St, Seattle, WA 98101" +250906,Apple Airpods Headphones,1,150,09/11/19 21:34,"302 Elm St, New York City, NY 10001" +250907,Google Phone,1,600,09/23/19 08:06,"573 14th St, Seattle, WA 98101" +250908,AAA Batteries (4-pack),1,2.99,09/09/19 21:20,"548 5th St, Los Angeles, CA 90001" +250909,Google Phone,1,600,09/28/19 16:31,"623 Center St, Los Angeles, CA 90001" +250910,Lightning Charging Cable,1,14.95,09/27/19 10:54,"626 8th St, Seattle, WA 98101" +250911,Wired Headphones,2,11.99,09/19/19 12:16,"106 Lake St, San Francisco, CA 94016" +250912,AA Batteries (4-pack),1,3.84,09/30/19 15:41,"103 5th St, San Francisco, CA 94016" +250913,iPhone,1,700,09/08/19 20:05,"906 12th St, Los Angeles, CA 90001" +250914,Wired Headphones,1,11.99,09/15/19 13:39,"122 12th St, New York City, NY 10001" +250915,Lightning Charging Cable,1,14.95,09/12/19 23:26,"70 Main St, Boston, MA 02215" +250916,USB-C Charging Cable,1,11.95,09/11/19 23:13,"64 8th St, Los Angeles, CA 90001" +250917,Apple Airpods Headphones,1,150,09/29/19 08:19,"606 Lakeview St, Los Angeles, CA 90001" +250918,Wired Headphones,1,11.99,09/19/19 22:05,"930 Washington St, Atlanta, GA 30301" +250919,AA Batteries (4-pack),1,3.84,09/19/19 15:54,"575 Center St, Seattle, WA 98101" +250920,Lightning Charging Cable,1,14.95,09/04/19 19:35,"296 5th St, Portland, OR 97035" +250921,AA Batteries (4-pack),1,3.84,09/08/19 13:58,"821 Sunset St, Dallas, TX 75001" +250921,AAA Batteries (4-pack),2,2.99,09/08/19 13:58,"821 Sunset St, Dallas, TX 75001" +250922,Wired Headphones,1,11.99,09/24/19 17:35,"883 Pine St, Portland, OR 97035" +250923,AAA Batteries (4-pack),4,2.99,09/26/19 03:44,"886 Park St, Atlanta, GA 30301" +250924,USB-C Charging Cable,1,11.95,09/20/19 08:07,"694 Highland St, Atlanta, GA 30301" +250925,Apple Airpods Headphones,1,150,09/30/19 20:25,"832 Chestnut St, Atlanta, GA 30301" +250926,AA Batteries (4-pack),1,3.84,09/23/19 04:46,"148 8th St, Portland, OR 97035" +250927,Macbook Pro Laptop,1,1700,09/30/19 10:49,"836 Johnson St, Boston, MA 02215" +250928,AA Batteries (4-pack),1,3.84,09/06/19 09:08,"916 Dogwood St, San Francisco, CA 94016" +250929,Flatscreen TV,1,300,09/02/19 23:06,"863 8th St, Los Angeles, CA 90001" +250930,Lightning Charging Cable,1,14.95,09/13/19 15:56,"797 Dogwood St, San Francisco, CA 94016" +250931,USB-C Charging Cable,1,11.95,09/26/19 20:33,"262 Cherry St, San Francisco, CA 94016" +250932,Macbook Pro Laptop,1,1700,09/08/19 17:21,"852 12th St, San Francisco, CA 94016" +250933,AA Batteries (4-pack),1,3.84,09/05/19 13:35,"210 Dogwood St, Seattle, WA 98101" +250934,AAA Batteries (4-pack),1,2.99,09/07/19 05:40,"242 6th St, Austin, TX 73301" +250935,USB-C Charging Cable,1,11.95,09/08/19 13:57,"967 13th St, Dallas, TX 75001" +250936,LG Dryer,1,600.0,09/05/19 13:48,"486 Johnson St, San Francisco, CA 94016" +250937,USB-C Charging Cable,1,11.95,09/11/19 09:53,"923 Cedar St, San Francisco, CA 94016" +250938,Lightning Charging Cable,1,14.95,09/27/19 23:21,"775 6th St, San Francisco, CA 94016" +250939,Bose SoundSport Headphones,1,99.99,09/25/19 18:27,"881 Pine St, Los Angeles, CA 90001" +250940,Lightning Charging Cable,1,14.95,09/30/19 17:26,"855 12th St, New York City, NY 10001" +250941,Bose SoundSport Headphones,1,99.99,09/08/19 09:21,"428 Church St, San Francisco, CA 94016" +250942,Wired Headphones,1,11.99,09/13/19 03:48,"71 River St, New York City, NY 10001" +250943,Macbook Pro Laptop,1,1700,09/21/19 19:26,"526 River St, New York City, NY 10001" +250944,Lightning Charging Cable,1,14.95,09/04/19 16:08,"659 Highland St, New York City, NY 10001" +250945,AA Batteries (4-pack),2,3.84,09/24/19 15:56,"771 Center St, Boston, MA 02215" +250946,34in Ultrawide Monitor,1,379.99,09/27/19 16:09,"567 Cedar St, Boston, MA 02215" +250947,Wired Headphones,1,11.99,09/18/19 19:02,"550 Cedar St, San Francisco, CA 94016" +250948,20in Monitor,1,109.99,09/22/19 00:09,"540 1st St, Atlanta, GA 30301" +250949,AA Batteries (4-pack),1,3.84,09/25/19 19:17,"903 7th St, New York City, NY 10001" +250950,LG Dryer,1,600.0,09/12/19 01:00,"464 Church St, San Francisco, CA 94016" +250951,Lightning Charging Cable,1,14.95,09/30/19 02:00,"289 Lincoln St, Austin, TX 73301" +250952,USB-C Charging Cable,1,11.95,09/22/19 11:46,"386 Maple St, Seattle, WA 98101" +250953,27in FHD Monitor,1,149.99,09/28/19 14:49,"413 1st St, San Francisco, CA 94016" +250954,20in Monitor,1,109.99,09/23/19 13:04,"881 Ridge St, Los Angeles, CA 90001" +250955,USB-C Charging Cable,1,11.95,09/14/19 07:47,"642 2nd St, Boston, MA 02215" +250956,AAA Batteries (4-pack),1,2.99,09/04/19 18:11,"810 Lakeview St, Dallas, TX 75001" +250957,Wired Headphones,1,11.99,09/30/19 14:09,"626 Ridge St, Dallas, TX 75001" +250958,Wired Headphones,1,11.99,09/08/19 20:07,"116 Dogwood St, Boston, MA 02215" +250959,Apple Airpods Headphones,1,150,09/29/19 16:53,"256 Pine St, San Francisco, CA 94016" +250960,20in Monitor,1,109.99,09/28/19 11:25,"216 Walnut St, Seattle, WA 98101" +250961,AAA Batteries (4-pack),1,2.99,09/21/19 14:57,"514 Cedar St, San Francisco, CA 94016" +250962,Apple Airpods Headphones,1,150,09/25/19 13:01,"234 Adams St, San Francisco, CA 94016" +250963,AAA Batteries (4-pack),1,2.99,09/18/19 18:37,"629 Ridge St, Seattle, WA 98101" +250964,AA Batteries (4-pack),1,3.84,09/27/19 22:39,"757 1st St, San Francisco, CA 94016" +250965,Bose SoundSport Headphones,1,99.99,09/30/19 15:16,"703 Meadow St, San Francisco, CA 94016" +250966,ThinkPad Laptop,1,999.99,09/10/19 10:22,"519 14th St, San Francisco, CA 94016" +250967,AA Batteries (4-pack),3,3.84,09/29/19 09:02,"230 Forest St, San Francisco, CA 94016" +250968,USB-C Charging Cable,1,11.95,09/23/19 13:31,"546 Spruce St, San Francisco, CA 94016" +250969,Bose SoundSport Headphones,1,99.99,09/29/19 20:58,"685 River St, New York City, NY 10001" +250970,AA Batteries (4-pack),1,3.84,09/16/19 06:48,"426 5th St, San Francisco, CA 94016" +250971,Lightning Charging Cable,1,14.95,09/09/19 12:32,"700 Cedar St, New York City, NY 10001" +250972,AA Batteries (4-pack),1,3.84,09/19/19 22:35,"117 Ridge St, New York City, NY 10001" +250973,Bose SoundSport Headphones,1,99.99,09/03/19 22:34,"396 Main St, Los Angeles, CA 90001" +250974,Bose SoundSport Headphones,1,99.99,09/11/19 22:13,"738 Highland St, Los Angeles, CA 90001" +250975,AAA Batteries (4-pack),1,2.99,09/18/19 18:16,"613 12th St, Seattle, WA 98101" +250976,USB-C Charging Cable,2,11.95,09/25/19 11:06,"712 9th St, Portland, OR 97035" +250977,Wired Headphones,1,11.99,09/10/19 17:41,"36 Forest St, New York City, NY 10001" +250978,USB-C Charging Cable,1,11.95,09/26/19 19:55,"19 4th St, San Francisco, CA 94016" +250979,AAA Batteries (4-pack),2,2.99,09/27/19 12:20,"280 Lakeview St, San Francisco, CA 94016" +250980,27in FHD Monitor,1,149.99,09/25/19 09:03,"209 Willow St, Portland, OR 97035" +250981,iPhone,1,700,09/24/19 12:21,"968 Johnson St, San Francisco, CA 94016" +250982,Flatscreen TV,1,300,09/22/19 20:47,"958 Cherry St, Boston, MA 02215" +250983,AA Batteries (4-pack),1,3.84,09/25/19 14:34,"499 Washington St, Seattle, WA 98101" +250984,34in Ultrawide Monitor,1,379.99,09/19/19 10:42,"544 Lake St, San Francisco, CA 94016" +250985,AAA Batteries (4-pack),1,2.99,09/06/19 19:27,"304 5th St, San Francisco, CA 94016" +250986,USB-C Charging Cable,1,11.95,09/26/19 15:35,"899 Washington St, Los Angeles, CA 90001" +250987,AAA Batteries (4-pack),1,2.99,09/01/19 22:45,"767 Adams St, San Francisco, CA 94016" +250988,AAA Batteries (4-pack),2,2.99,09/26/19 16:33,"65 7th St, Austin, TX 73301" +250989,AA Batteries (4-pack),1,3.84,09/18/19 08:31,"869 6th St, New York City, NY 10001" +250990,Wired Headphones,1,11.99,09/11/19 10:21,"83 River St, Dallas, TX 75001" +250991,27in FHD Monitor,1,149.99,09/10/19 08:27,"979 Jefferson St, San Francisco, CA 94016" +250992,AAA Batteries (4-pack),5,2.99,09/20/19 09:59,"851 4th St, San Francisco, CA 94016" +250993,Apple Airpods Headphones,1,150,09/19/19 09:05,"544 Spruce St, San Francisco, CA 94016" +250994,Apple Airpods Headphones,1,150,09/03/19 18:15,"981 4th St, Dallas, TX 75001" +250995,AAA Batteries (4-pack),1,2.99,09/02/19 19:50,"919 Cedar St, Los Angeles, CA 90001" +250996,AA Batteries (4-pack),1,3.84,09/11/19 14:13,"439 Adams St, Seattle, WA 98101" +250997,34in Ultrawide Monitor,1,379.99,09/08/19 14:05,"264 Lincoln St, Austin, TX 73301" +250997,AA Batteries (4-pack),1,3.84,09/08/19 14:05,"264 Lincoln St, Austin, TX 73301" +250998,AAA Batteries (4-pack),1,2.99,09/02/19 15:48,"869 Meadow St, Atlanta, GA 30301" +250999,AAA Batteries (4-pack),1,2.99,09/02/19 12:18,"353 Spruce St, New York City, NY 10001" +251000,USB-C Charging Cable,1,11.95,09/16/19 10:48,"834 Walnut St, Atlanta, GA 30301" +251001,Bose SoundSport Headphones,1,99.99,09/26/19 10:58,"713 Cherry St, Dallas, TX 75001" +251002,Wired Headphones,1,11.99,09/28/19 23:17,"172 Elm St, Austin, TX 73301" +251003,Lightning Charging Cable,1,14.95,09/09/19 22:33,"105 Elm St, New York City, NY 10001" +251004,Macbook Pro Laptop,1,1700,09/26/19 11:37,"449 10th St, New York City, NY 10001" +251005,AAA Batteries (4-pack),3,2.99,09/14/19 21:50,"908 Spruce St, Los Angeles, CA 90001" +251006,Lightning Charging Cable,1,14.95,09/11/19 20:46,"940 South St, Seattle, WA 98101" +251007,Apple Airpods Headphones,1,150,09/21/19 13:26,"290 Highland St, San Francisco, CA 94016" +251007,Apple Airpods Headphones,1,150,09/21/19 13:26,"290 Highland St, San Francisco, CA 94016" +251008,Wired Headphones,2,11.99,09/17/19 14:07,"531 Church St, San Francisco, CA 94016" +251009,USB-C Charging Cable,1,11.95,09/21/19 16:32,"564 River St, Portland, OR 97035" +251010,AA Batteries (4-pack),1,3.84,09/26/19 17:41,"37 Chestnut St, Boston, MA 02215" +251011,Lightning Charging Cable,1,14.95,09/29/19 18:58,"743 Park St, San Francisco, CA 94016" +251012,AAA Batteries (4-pack),2,2.99,09/11/19 13:52,"234 Maple St, Boston, MA 02215" +251013,AAA Batteries (4-pack),3,2.99,09/19/19 11:45,"834 8th St, Los Angeles, CA 90001" +251014,AAA Batteries (4-pack),1,2.99,09/28/19 13:17,"5 14th St, Atlanta, GA 30301" +251015,Bose SoundSport Headphones,1,99.99,09/13/19 13:32,"262 Church St, New York City, NY 10001" +251016,AA Batteries (4-pack),1,3.84,09/25/19 12:20,"32 12th St, Los Angeles, CA 90001" +251017,Lightning Charging Cable,1,14.95,09/25/19 17:03,"234 Chestnut St, Seattle, WA 98101" +251018,iPhone,1,700,09/19/19 21:12,"113 Adams St, Dallas, TX 75001" +251019,Apple Airpods Headphones,1,150,09/13/19 11:53,"446 9th St, Atlanta, GA 30301" +251020,Bose SoundSport Headphones,1,99.99,09/15/19 12:58,"193 Center St, New York City, NY 10001" +251021,Wired Headphones,1,11.99,09/27/19 11:29,"255 Chestnut St, San Francisco, CA 94016" +251022,iPhone,1,700,09/28/19 18:14,"807 Chestnut St, New York City, NY 10001" +251023,Lightning Charging Cable,1,14.95,09/06/19 13:43,"295 10th St, Austin, TX 73301" +251024,Macbook Pro Laptop,1,1700,09/24/19 10:30,"542 12th St, Los Angeles, CA 90001" +251025,Flatscreen TV,1,300,09/14/19 14:32,"605 Walnut St, Los Angeles, CA 90001" +251026,Lightning Charging Cable,1,14.95,09/03/19 20:28,"493 13th St, San Francisco, CA 94016" +251027,Google Phone,1,600,09/25/19 16:19,"321 4th St, San Francisco, CA 94016" +251028,Apple Airpods Headphones,1,150,09/16/19 18:14,"105 Cedar St, Boston, MA 02215" +251029,Wired Headphones,1,11.99,09/26/19 16:35,"875 Wilson St, Los Angeles, CA 90001" +251030,USB-C Charging Cable,1,11.95,09/06/19 15:26,"164 Church St, New York City, NY 10001" +251031,Apple Airpods Headphones,1,150,09/22/19 19:21,"634 Jackson St, San Francisco, CA 94016" +251032,AA Batteries (4-pack),1,3.84,09/12/19 18:21,"246 South St, New York City, NY 10001" +251033,AAA Batteries (4-pack),1,2.99,09/10/19 11:20,"737 Hill St, San Francisco, CA 94016" +251034,AAA Batteries (4-pack),1,2.99,09/11/19 11:38,"15 Wilson St, San Francisco, CA 94016" +251035,Apple Airpods Headphones,1,150,09/02/19 20:41,"331 4th St, Atlanta, GA 30301" +251036,AAA Batteries (4-pack),3,2.99,09/01/19 09:43,"722 Madison St, San Francisco, CA 94016" +251037,Apple Airpods Headphones,1,150,09/17/19 18:09,"680 West St, Los Angeles, CA 90001" +251038,Wired Headphones,1,11.99,09/10/19 02:11,"148 Spruce St, Atlanta, GA 30301" +251039,Wired Headphones,1,11.99,09/22/19 10:34,"698 2nd St, Boston, MA 02215" +251040,Bose SoundSport Headphones,1,99.99,09/04/19 22:36,"929 Lake St, New York City, NY 10001" +251041,iPhone,1,700,09/20/19 17:26,"660 South St, Dallas, TX 75001" +251042,Wired Headphones,2,11.99,09/23/19 12:08,"526 North St, Portland, ME 04101" +251043,Vareebadd Phone,1,400,09/02/19 18:14,"163 Lake St, San Francisco, CA 94016" +251043,USB-C Charging Cable,1,11.95,09/02/19 18:14,"163 Lake St, San Francisco, CA 94016" +251044,AAA Batteries (4-pack),1,2.99,09/13/19 18:39,"162 Washington St, Portland, OR 97035" +251045,27in 4K Gaming Monitor,1,389.99,09/24/19 14:22,"715 Lake St, Seattle, WA 98101" +251046,AAA Batteries (4-pack),2,2.99,09/27/19 05:43,"675 Cherry St, Dallas, TX 75001" +251047,Macbook Pro Laptop,1,1700,09/04/19 13:48,"552 Lakeview St, Portland, OR 97035" +251048,USB-C Charging Cable,1,11.95,09/13/19 18:50,"916 Washington St, Seattle, WA 98101" +251048,Wired Headphones,1,11.99,09/13/19 18:50,"916 Washington St, Seattle, WA 98101" +251049,27in 4K Gaming Monitor,1,389.99,09/15/19 10:00,"455 Ridge St, New York City, NY 10001" +251050,27in FHD Monitor,1,149.99,09/13/19 09:47,"14 Forest St, Austin, TX 73301" +251051,ThinkPad Laptop,1,999.99,09/15/19 22:14,"564 Johnson St, Los Angeles, CA 90001" +251052,Apple Airpods Headphones,1,150,09/21/19 19:49,"685 Hickory St, Dallas, TX 75001" +251053,AAA Batteries (4-pack),1,2.99,09/09/19 20:38,"829 Maple St, San Francisco, CA 94016" +251054,Lightning Charging Cable,1,14.95,09/13/19 11:22,"853 6th St, Boston, MA 02215" +251055,Apple Airpods Headphones,1,150,09/08/19 09:33,"541 Johnson St, New York City, NY 10001" +251056,USB-C Charging Cable,1,11.95,09/04/19 13:47,"967 Johnson St, San Francisco, CA 94016" +251057,iPhone,1,700,09/05/19 20:40,"858 Ridge St, Boston, MA 02215" +251058,Google Phone,1,600,09/02/19 11:54,"69 Cherry St, Seattle, WA 98101" +251059,Bose SoundSport Headphones,1,99.99,09/13/19 07:14,"18 Forest St, New York City, NY 10001" +251060,Google Phone,1,600,09/14/19 09:53,"315 Walnut St, Austin, TX 73301" +251061,Apple Airpods Headphones,1,150,09/21/19 12:01,"307 Hickory St, New York City, NY 10001" +251062,27in FHD Monitor,1,149.99,09/11/19 22:19,"600 12th St, Boston, MA 02215" +251063,Wired Headphones,1,11.99,09/20/19 18:30,"955 Main St, San Francisco, CA 94016" +251064,USB-C Charging Cable,1,11.95,09/20/19 19:56,"360 Adams St, Austin, TX 73301" +251065,Bose SoundSport Headphones,1,99.99,09/02/19 20:17,"442 9th St, San Francisco, CA 94016" +251066,27in FHD Monitor,1,149.99,09/01/19 11:48,"198 Ridge St, San Francisco, CA 94016" +251067,USB-C Charging Cable,1,11.95,09/28/19 19:23,"781 Park St, Los Angeles, CA 90001" +251068,Lightning Charging Cable,1,14.95,09/25/19 18:14,"219 Elm St, San Francisco, CA 94016" +251069,AA Batteries (4-pack),1,3.84,09/20/19 00:30,"905 North St, Seattle, WA 98101" +251070,Lightning Charging Cable,1,14.95,09/25/19 07:25,"283 Lakeview St, Atlanta, GA 30301" +251071,Bose SoundSport Headphones,1,99.99,09/01/19 13:33,"824 8th St, Boston, MA 02215" +251072,Apple Airpods Headphones,1,150,09/11/19 08:41,"787 Cherry St, Atlanta, GA 30301" +251073,AAA Batteries (4-pack),1,2.99,09/20/19 10:31,"979 North St, Atlanta, GA 30301" +251074,AAA Batteries (4-pack),1,2.99,09/12/19 20:16,"456 Lake St, San Francisco, CA 94016" +251075,Lightning Charging Cable,1,14.95,09/05/19 10:36,"638 Washington St, San Francisco, CA 94016" +251076,iPhone,1,700,09/25/19 11:42,"375 Lake St, Los Angeles, CA 90001" +251076,Lightning Charging Cable,1,14.95,09/25/19 11:42,"375 Lake St, Los Angeles, CA 90001" +251077,Flatscreen TV,1,300,09/16/19 15:21,"488 Walnut St, Boston, MA 02215" +251078,Apple Airpods Headphones,1,150,09/23/19 14:22,"143 Madison St, Los Angeles, CA 90001" +251079,27in FHD Monitor,1,149.99,09/08/19 18:34,"781 Madison St, San Francisco, CA 94016" +251080,34in Ultrawide Monitor,1,379.99,09/13/19 02:07,"366 5th St, Atlanta, GA 30301" +251081,Lightning Charging Cable,1,14.95,09/12/19 21:07,"515 Washington St, San Francisco, CA 94016" +251082,34in Ultrawide Monitor,1,379.99,09/04/19 22:03,"310 South St, Seattle, WA 98101" +251083,Bose SoundSport Headphones,1,99.99,09/09/19 23:45,"336 West St, Seattle, WA 98101" +251084,27in FHD Monitor,1,149.99,09/20/19 09:51,"908 10th St, San Francisco, CA 94016" +251085,Lightning Charging Cable,1,14.95,09/06/19 19:11,"508 West St, San Francisco, CA 94016" +251086,Lightning Charging Cable,1,14.95,09/10/19 18:24,"930 Walnut St, Los Angeles, CA 90001" +251087,27in FHD Monitor,1,149.99,09/22/19 18:56,"799 Maple St, San Francisco, CA 94016" +251088,USB-C Charging Cable,1,11.95,09/12/19 12:24,"821 13th St, New York City, NY 10001" +251089,Vareebadd Phone,1,400,09/08/19 23:44,"746 13th St, San Francisco, CA 94016" +251090,Bose SoundSport Headphones,1,99.99,09/04/19 17:54,"594 Johnson St, Seattle, WA 98101" +251091,Wired Headphones,1,11.99,09/01/19 22:00,"467 South St, Portland, OR 97035" +251092,AAA Batteries (4-pack),1,2.99,09/21/19 22:57,"822 South St, Los Angeles, CA 90001" +251093,Wired Headphones,1,11.99,09/14/19 14:22,"798 Dogwood St, Los Angeles, CA 90001" +251094,Lightning Charging Cable,1,14.95,09/25/19 19:18,"517 10th St, Atlanta, GA 30301" +251094,AAA Batteries (4-pack),1,2.99,09/25/19 19:18,"517 10th St, Atlanta, GA 30301" +251095,Apple Airpods Headphones,1,150,09/14/19 10:17,"468 Madison St, Dallas, TX 75001" +251096,AAA Batteries (4-pack),3,2.99,09/16/19 12:58,"408 Cedar St, San Francisco, CA 94016" +251097,AAA Batteries (4-pack),3,2.99,09/02/19 10:42,"855 Johnson St, San Francisco, CA 94016" +251098,Wired Headphones,1,11.99,09/02/19 18:29,"481 Center St, San Francisco, CA 94016" +251099,AAA Batteries (4-pack),4,2.99,09/10/19 03:08,"297 Chestnut St, Boston, MA 02215" +251100,Google Phone,1,600,09/24/19 11:37,"278 5th St, San Francisco, CA 94016" +251100,Wired Headphones,1,11.99,09/24/19 11:37,"278 5th St, San Francisco, CA 94016" +251101,AAA Batteries (4-pack),2,2.99,09/11/19 16:00,"649 Dogwood St, San Francisco, CA 94016" +251102,Apple Airpods Headphones,1,150,09/22/19 17:49,"766 Main St, San Francisco, CA 94016" +251103,AAA Batteries (4-pack),2,2.99,09/29/19 15:38,"459 14th St, Atlanta, GA 30301" +251104,AAA Batteries (4-pack),1,2.99,09/03/19 11:17,"459 Park St, San Francisco, CA 94016" +251105,Wired Headphones,1,11.99,09/29/19 11:49,"298 Cherry St, Los Angeles, CA 90001" +251106,Lightning Charging Cable,1,14.95,09/26/19 16:46,"813 1st St, New York City, NY 10001" +251107,Wired Headphones,1,11.99,09/05/19 12:51,"688 Walnut St, New York City, NY 10001" +251108,Lightning Charging Cable,1,14.95,09/03/19 03:05,"594 Walnut St, Seattle, WA 98101" +251109,Wired Headphones,1,11.99,09/23/19 16:40,"906 Lake St, Dallas, TX 75001" +251110,Google Phone,1,600,09/04/19 13:07,"432 4th St, New York City, NY 10001" +251110,Bose SoundSport Headphones,1,99.99,09/04/19 13:07,"432 4th St, New York City, NY 10001" +251111,AA Batteries (4-pack),2,3.84,09/25/19 08:19,"822 14th St, San Francisco, CA 94016" +251112,Wired Headphones,1,11.99,09/20/19 14:27,"903 Highland St, San Francisco, CA 94016" +251113,iPhone,1,700,09/21/19 22:37,"581 Jefferson St, San Francisco, CA 94016" +251114,USB-C Charging Cable,1,11.95,09/12/19 11:47,"151 Lincoln St, San Francisco, CA 94016" +251115,Wired Headphones,1,11.99,09/05/19 13:43,"650 11th St, San Francisco, CA 94016" +251116,ThinkPad Laptop,1,999.99,09/26/19 19:51,"606 Cedar St, Portland, ME 04101" +251117,Flatscreen TV,1,300,09/28/19 17:59,"269 Meadow St, Seattle, WA 98101" +251118,AA Batteries (4-pack),2,3.84,09/13/19 23:09,"13 2nd St, Atlanta, GA 30301" +251119,34in Ultrawide Monitor,1,379.99,09/29/19 11:34,"639 Dogwood St, Los Angeles, CA 90001" +251120,Wired Headphones,1,11.99,09/10/19 19:33,"2 Forest St, Boston, MA 02215" +251121,Lightning Charging Cable,1,14.95,09/08/19 12:30,"338 Johnson St, New York City, NY 10001" +251122,AA Batteries (4-pack),1,3.84,09/11/19 10:09,"148 5th St, San Francisco, CA 94016" +251123,Apple Airpods Headphones,1,150,09/19/19 08:49,"404 8th St, San Francisco, CA 94016" +251124,Google Phone,1,600,09/14/19 21:01,"818 Washington St, New York City, NY 10001" +251125,AAA Batteries (4-pack),1,2.99,09/18/19 19:30,"419 13th St, Atlanta, GA 30301" +251126,USB-C Charging Cable,1,11.95,09/15/19 09:40,"38 Spruce St, San Francisco, CA 94016" +251127,USB-C Charging Cable,1,11.95,09/07/19 22:57,"987 8th St, Dallas, TX 75001" +251128,USB-C Charging Cable,1,11.95,09/02/19 17:43,"940 Spruce St, Los Angeles, CA 90001" +251129,AAA Batteries (4-pack),1,2.99,09/22/19 11:10,"628 Cedar St, San Francisco, CA 94016" +251130,iPhone,1,700,09/02/19 10:09,"670 11th St, Dallas, TX 75001" +251131,Apple Airpods Headphones,1,150,09/28/19 15:47,"397 Washington St, Seattle, WA 98101" +251132,Bose SoundSport Headphones,1,99.99,09/21/19 21:02,"211 4th St, Seattle, WA 98101" +251133,ThinkPad Laptop,1,999.99,09/26/19 01:53,"220 Washington St, Dallas, TX 75001" +251134,Lightning Charging Cable,1,14.95,09/09/19 09:46,"731 Maple St, Austin, TX 73301" +251135,USB-C Charging Cable,1,11.95,09/06/19 18:59,"274 Willow St, Boston, MA 02215" +251136,ThinkPad Laptop,1,999.99,09/28/19 19:20,"965 10th St, New York City, NY 10001" +251137,Bose SoundSport Headphones,1,99.99,09/11/19 11:17,"781 Cherry St, New York City, NY 10001" +251138,AA Batteries (4-pack),2,3.84,09/06/19 16:22,"818 6th St, Los Angeles, CA 90001" +251139,34in Ultrawide Monitor,1,379.99,09/28/19 20:41,"17 Jackson St, Dallas, TX 75001" +251140,27in FHD Monitor,1,149.99,09/22/19 19:03,"529 Cherry St, Portland, OR 97035" +251141,34in Ultrawide Monitor,1,379.99,09/17/19 10:06,"360 Lake St, Dallas, TX 75001" +251142,27in 4K Gaming Monitor,1,389.99,09/04/19 12:54,"237 Adams St, Los Angeles, CA 90001" +251143,Apple Airpods Headphones,1,150,09/27/19 11:58,"584 11th St, Boston, MA 02215" +251144,USB-C Charging Cable,1,11.95,09/14/19 18:47,"276 South St, Los Angeles, CA 90001" +251145,Bose SoundSport Headphones,1,99.99,09/25/19 22:54,"82 7th St, Los Angeles, CA 90001" +251146,34in Ultrawide Monitor,1,379.99,09/09/19 20:19,"858 Chestnut St, Boston, MA 02215" +,,,,, +251147,USB-C Charging Cable,1,11.95,09/30/19 21:52,"498 Willow St, San Francisco, CA 94016" +251148,20in Monitor,1,109.99,09/20/19 17:11,"874 Highland St, Atlanta, GA 30301" +251149,AAA Batteries (4-pack),1,2.99,09/02/19 19:13,"372 Washington St, New York City, NY 10001" +251150,Macbook Pro Laptop,1,1700,09/16/19 23:10,"415 9th St, Los Angeles, CA 90001" +251151,Google Phone,1,600,09/07/19 09:38,"974 Cedar St, San Francisco, CA 94016" +251152,Bose SoundSport Headphones,1,99.99,09/09/19 12:35,"448 Forest St, San Francisco, CA 94016" +251153,27in 4K Gaming Monitor,1,389.99,09/18/19 14:18,"904 6th St, Dallas, TX 75001" +251154,Apple Airpods Headphones,1,150,09/29/19 13:18,"586 West St, San Francisco, CA 94016" +251155,Apple Airpods Headphones,1,150,09/07/19 13:16,"213 Johnson St, Los Angeles, CA 90001" +251156,AAA Batteries (4-pack),2,2.99,09/26/19 22:43,"252 Center St, Los Angeles, CA 90001" +251157,USB-C Charging Cable,1,11.95,09/18/19 10:56,"793 Lakeview St, Austin, TX 73301" +251158,AA Batteries (4-pack),2,3.84,09/26/19 19:13,"1 South St, Los Angeles, CA 90001" +251159,AAA Batteries (4-pack),1,2.99,09/01/19 16:31,"134 South St, Boston, MA 02215" +251160,Bose SoundSport Headphones,1,99.99,09/25/19 19:50,"529 Wilson St, Boston, MA 02215" +251161,Google Phone,1,600,09/17/19 17:13,"616 West St, Atlanta, GA 30301" +251162,USB-C Charging Cable,1,11.95,09/07/19 11:57,"818 North St, Los Angeles, CA 90001" +251163,Apple Airpods Headphones,1,150,09/23/19 22:49,"140 Wilson St, Los Angeles, CA 90001" +251164,AAA Batteries (4-pack),1,2.99,09/11/19 19:47,"613 14th St, San Francisco, CA 94016" +251165,Wired Headphones,1,11.99,09/06/19 12:21,"930 Elm St, San Francisco, CA 94016" +251166,Apple Airpods Headphones,1,150,09/13/19 10:46,"831 8th St, Portland, OR 97035" +251167,iPhone,1,700,09/18/19 17:13,"507 Adams St, Dallas, TX 75001" +251167,Lightning Charging Cable,1,14.95,09/18/19 17:13,"507 Adams St, Dallas, TX 75001" +251168,Wired Headphones,1,11.99,09/08/19 00:37,"854 11th St, Seattle, WA 98101" +251169,27in FHD Monitor,1,149.99,09/30/19 15:51,"505 Forest St, San Francisco, CA 94016" +251170,ThinkPad Laptop,1,999.99,09/16/19 19:16,"849 Spruce St, Los Angeles, CA 90001" +251171,Google Phone,1,600,09/20/19 20:32,"910 North St, Atlanta, GA 30301" +251171,USB-C Charging Cable,1,11.95,09/20/19 20:32,"910 North St, Atlanta, GA 30301" +251172,Apple Airpods Headphones,1,150,09/01/19 12:33,"243 Adams St, Los Angeles, CA 90001" +251173,USB-C Charging Cable,1,11.95,09/25/19 12:54,"691 River St, San Francisco, CA 94016" +251174,AAA Batteries (4-pack),2,2.99,09/05/19 23:28,"682 Hill St, Atlanta, GA 30301" +251175,Apple Airpods Headphones,1,150,09/09/19 12:03,"704 10th St, Atlanta, GA 30301" +251176,27in 4K Gaming Monitor,1,389.99,09/09/19 21:26,"735 5th St, New York City, NY 10001" +251177,AA Batteries (4-pack),1,3.84,09/16/19 11:35,"277 14th St, San Francisco, CA 94016" +251178,Wired Headphones,1,11.99,09/22/19 12:27,"15 Washington St, Dallas, TX 75001" +251179,Apple Airpods Headphones,1,150,09/06/19 18:55,"440 14th St, Austin, TX 73301" +251180,Flatscreen TV,1,300,09/09/19 19:52,"475 13th St, Austin, TX 73301" +251181,AAA Batteries (4-pack),1,2.99,09/04/19 01:37,"285 13th St, Los Angeles, CA 90001" +251182,AA Batteries (4-pack),1,3.84,09/18/19 21:25,"980 Center St, Portland, OR 97035" +251183,27in 4K Gaming Monitor,1,389.99,09/23/19 23:36,"273 11th St, New York City, NY 10001" +251184,Lightning Charging Cable,1,14.95,09/11/19 12:41,"998 5th St, San Francisco, CA 94016" +251185,USB-C Charging Cable,1,11.95,09/11/19 19:23,"418 11th St, San Francisco, CA 94016" +251186,Lightning Charging Cable,1,14.95,09/24/19 16:08,"885 10th St, San Francisco, CA 94016" +251187,34in Ultrawide Monitor,1,379.99,09/02/19 18:22,"760 Madison St, Los Angeles, CA 90001" +251188,iPhone,1,700,09/08/19 12:23,"165 Ridge St, Austin, TX 73301" +251189,iPhone,1,700,09/07/19 12:48,"16 Lakeview St, Los Angeles, CA 90001" +251190,iPhone,1,700,09/23/19 20:55,"576 Church St, Dallas, TX 75001" +251190,Lightning Charging Cable,1,14.95,09/23/19 20:55,"576 Church St, Dallas, TX 75001" +251190,Wired Headphones,1,11.99,09/23/19 20:55,"576 Church St, Dallas, TX 75001" +251191,AA Batteries (4-pack),1,3.84,09/21/19 19:45,"622 13th St, Atlanta, GA 30301" +251192,Wired Headphones,1,11.99,09/18/19 21:18,"424 12th St, San Francisco, CA 94016" +251193,LG Dryer,1,600.0,09/28/19 16:56,"240 6th St, New York City, NY 10001" +251194,20in Monitor,1,109.99,09/06/19 22:33,"839 West St, San Francisco, CA 94016" +251195,Bose SoundSport Headphones,1,99.99,09/19/19 20:37,"641 11th St, Seattle, WA 98101" +251196,Bose SoundSport Headphones,1,99.99,09/11/19 15:42,"905 Main St, Los Angeles, CA 90001" +251197,AA Batteries (4-pack),2,3.84,09/24/19 22:28,"351 Walnut St, San Francisco, CA 94016" +251198,AAA Batteries (4-pack),1,2.99,09/27/19 22:56,"659 2nd St, New York City, NY 10001" +251199,Google Phone,1,600,09/21/19 10:38,"60 9th St, Los Angeles, CA 90001" +251199,USB-C Charging Cable,1,11.95,09/21/19 10:38,"60 9th St, Los Angeles, CA 90001" +251200,USB-C Charging Cable,1,11.95,09/09/19 12:10,"929 Main St, San Francisco, CA 94016" +251201,USB-C Charging Cable,1,11.95,09/24/19 08:04,"254 Hill St, Boston, MA 02215" +251202,ThinkPad Laptop,1,999.99,09/11/19 19:15,"864 8th St, Los Angeles, CA 90001" +251203,ThinkPad Laptop,1,999.99,09/16/19 12:47,"238 Pine St, Boston, MA 02215" +251204,AAA Batteries (4-pack),1,2.99,09/22/19 16:00,"869 8th St, New York City, NY 10001" +251205,Apple Airpods Headphones,1,150,09/15/19 19:39,"345 West St, Austin, TX 73301" +251206,Wired Headphones,1,11.99,09/25/19 11:53,"533 Sunset St, Los Angeles, CA 90001" +251207,Bose SoundSport Headphones,1,99.99,09/07/19 18:15,"241 Johnson St, San Francisco, CA 94016" +251208,Apple Airpods Headphones,1,150,09/21/19 11:29,"87 Chestnut St, Los Angeles, CA 90001" +251209,27in 4K Gaming Monitor,1,389.99,09/18/19 19:10,"993 Jefferson St, San Francisco, CA 94016" +251210,Apple Airpods Headphones,1,150,09/05/19 16:57,"750 11th St, Boston, MA 02215" +251211,Apple Airpods Headphones,1,150,09/13/19 23:03,"508 Adams St, Seattle, WA 98101" +251212,Wired Headphones,1,11.99,09/09/19 22:18,"447 1st St, Dallas, TX 75001" +251213,34in Ultrawide Monitor,1,379.99,09/26/19 23:25,"616 Spruce St, Atlanta, GA 30301" +251214,AAA Batteries (4-pack),2,2.99,09/06/19 16:59,"79 5th St, Dallas, TX 75001" +251215,Bose SoundSport Headphones,1,99.99,09/28/19 10:28,"370 Sunset St, Austin, TX 73301" +251216,Wired Headphones,1,11.99,09/21/19 09:53,"785 Cherry St, San Francisco, CA 94016" +251217,Bose SoundSport Headphones,1,99.99,09/21/19 18:12,"28 Lakeview St, San Francisco, CA 94016" +251218,AA Batteries (4-pack),1,3.84,09/13/19 21:12,"855 Adams St, San Francisco, CA 94016" +251219,AAA Batteries (4-pack),1,2.99,09/12/19 02:07,"193 11th St, San Francisco, CA 94016" +251220,Lightning Charging Cable,1,14.95,09/06/19 11:07,"723 Willow St, Boston, MA 02215" +251221,Bose SoundSport Headphones,1,99.99,09/25/19 20:46,"639 14th St, Boston, MA 02215" +251222,AA Batteries (4-pack),2,3.84,09/22/19 20:05,"299 4th St, Los Angeles, CA 90001" +251223,USB-C Charging Cable,1,11.95,09/12/19 14:54,"520 13th St, Austin, TX 73301" +251224,AA Batteries (4-pack),1,3.84,09/11/19 08:57,"274 Jefferson St, Atlanta, GA 30301" +251225,Macbook Pro Laptop,1,1700,09/25/19 13:14,"21 River St, San Francisco, CA 94016" +251226,Bose SoundSport Headphones,1,99.99,09/10/19 13:01,"998 Walnut St, Boston, MA 02215" +251227,AA Batteries (4-pack),1,3.84,09/30/19 13:02,"671 Hill St, Seattle, WA 98101" +251228,Wired Headphones,1,11.99,09/13/19 19:41,"172 Meadow St, Austin, TX 73301" +251229,ThinkPad Laptop,1,999.99,09/27/19 19:40,"871 Park St, Boston, MA 02215" +251229,34in Ultrawide Monitor,1,379.99,09/27/19 19:40,"871 Park St, Boston, MA 02215" +251230,34in Ultrawide Monitor,1,379.99,09/18/19 13:04,"557 Washington St, New York City, NY 10001" +251231,iPhone,1,700,09/14/19 13:03,"70 Washington St, San Francisco, CA 94016" +251231,Apple Airpods Headphones,1,150,09/14/19 13:03,"70 Washington St, San Francisco, CA 94016" +251232,Apple Airpods Headphones,1,150,09/09/19 13:57,"727 Cedar St, San Francisco, CA 94016" +251233,AA Batteries (4-pack),1,3.84,09/16/19 19:04,"555 6th St, New York City, NY 10001" +251234,Bose SoundSport Headphones,1,99.99,09/14/19 10:22,"110 Meadow St, Boston, MA 02215" +251235,USB-C Charging Cable,1,11.95,09/08/19 10:37,"182 4th St, Atlanta, GA 30301" +251236,AAA Batteries (4-pack),1,2.99,09/22/19 11:47,"733 Adams St, Portland, OR 97035" +251237,AA Batteries (4-pack),1,3.84,09/20/19 22:07,"625 Dogwood St, Seattle, WA 98101" +251238,34in Ultrawide Monitor,1,379.99,09/27/19 06:40,"553 Jefferson St, Boston, MA 02215" +251239,AA Batteries (4-pack),1,3.84,09/27/19 17:40,"138 Hickory St, Los Angeles, CA 90001" +251240,20in Monitor,1,109.99,09/13/19 20:17,"171 West St, Austin, TX 73301" +251241,Lightning Charging Cable,1,14.95,09/06/19 16:51,"572 South St, Atlanta, GA 30301" +251242,Lightning Charging Cable,1,14.95,09/25/19 16:55,"499 11th St, Austin, TX 73301" +251243,AAA Batteries (4-pack),1,2.99,09/01/19 11:40,"976 Lakeview St, San Francisco, CA 94016" +251244,20in Monitor,1,109.99,09/06/19 11:17,"277 12th St, Los Angeles, CA 90001" +251245,20in Monitor,1,109.99,09/28/19 19:24,"549 Adams St, San Francisco, CA 94016" +251246,Lightning Charging Cable,1,14.95,09/28/19 20:19,"868 Sunset St, Seattle, WA 98101" +251247,AAA Batteries (4-pack),1,2.99,09/11/19 11:01,"157 7th St, Dallas, TX 75001" +251248,USB-C Charging Cable,1,11.95,09/19/19 20:36,"658 West St, Los Angeles, CA 90001" +251249,USB-C Charging Cable,1,11.95,09/24/19 12:11,"530 Cedar St, San Francisco, CA 94016" +251250,AA Batteries (4-pack),2,3.84,09/04/19 10:58,"957 Wilson St, Dallas, TX 75001" +251251,AA Batteries (4-pack),1,3.84,09/22/19 08:21,"476 8th St, San Francisco, CA 94016" +251252,ThinkPad Laptop,1,999.99,09/26/19 20:38,"220 14th St, New York City, NY 10001" +251253,AA Batteries (4-pack),1,3.84,09/17/19 11:04,"376 Lakeview St, Atlanta, GA 30301" +251254,USB-C Charging Cable,1,11.95,09/25/19 21:48,"528 2nd St, New York City, NY 10001" +251255,Lightning Charging Cable,1,14.95,09/19/19 12:14,"834 9th St, San Francisco, CA 94016" +251256,20in Monitor,1,109.99,09/22/19 21:22,"359 Jackson St, New York City, NY 10001" +251257,iPhone,1,700,09/05/19 15:25,"800 Pine St, San Francisco, CA 94016" +251258,AA Batteries (4-pack),1,3.84,09/12/19 11:18,"878 North St, New York City, NY 10001" +251259,Lightning Charging Cable,1,14.95,09/22/19 12:01,"777 Pine St, San Francisco, CA 94016" +251260,Apple Airpods Headphones,1,150,09/03/19 16:35,"864 2nd St, San Francisco, CA 94016" +251261,AAA Batteries (4-pack),1,2.99,09/09/19 09:34,"58 4th St, Dallas, TX 75001" +251262,USB-C Charging Cable,1,11.95,09/30/19 20:34,"982 Pine St, Seattle, WA 98101" +251263,Bose SoundSport Headphones,1,99.99,09/28/19 14:23,"628 Center St, Los Angeles, CA 90001" +251264,Apple Airpods Headphones,1,150,09/12/19 20:17,"672 South St, San Francisco, CA 94016" +251265,Lightning Charging Cable,1,14.95,09/12/19 07:12,"552 Sunset St, Seattle, WA 98101" +251266,Lightning Charging Cable,1,14.95,09/05/19 13:47,"383 1st St, San Francisco, CA 94016" +251267,20in Monitor,1,109.99,09/21/19 22:12,"390 Lake St, New York City, NY 10001" +251268,iPhone,1,700,09/28/19 17:34,"465 Pine St, San Francisco, CA 94016" +251268,Lightning Charging Cable,1,14.95,09/28/19 17:34,"465 Pine St, San Francisco, CA 94016" +251269,AAA Batteries (4-pack),1,2.99,09/05/19 20:33,"792 Dogwood St, San Francisco, CA 94016" +251270,USB-C Charging Cable,2,11.95,09/03/19 12:49,"573 South St, Boston, MA 02215" +251271,Bose SoundSport Headphones,1,99.99,09/25/19 17:48,"17 Walnut St, Seattle, WA 98101" +251272,Apple Airpods Headphones,1,150,09/16/19 09:13,"256 West St, Boston, MA 02215" +251273,Vareebadd Phone,1,400,09/13/19 13:45,"974 Main St, Los Angeles, CA 90001" +251273,USB-C Charging Cable,1,11.95,09/13/19 13:45,"974 Main St, Los Angeles, CA 90001" +251274,AA Batteries (4-pack),3,3.84,09/28/19 21:31,"148 12th St, Portland, OR 97035" +251275,AA Batteries (4-pack),2,3.84,09/20/19 21:38,"77 Jefferson St, Los Angeles, CA 90001" +251276,USB-C Charging Cable,1,11.95,09/19/19 15:24,"935 Elm St, Seattle, WA 98101" +251277,AAA Batteries (4-pack),2,2.99,09/08/19 11:17,"201 Main St, Boston, MA 02215" +251277,Lightning Charging Cable,1,14.95,09/08/19 11:17,"201 Main St, Boston, MA 02215" +251278,Apple Airpods Headphones,1,150,09/18/19 15:25,"149 11th St, Los Angeles, CA 90001" +251279,Lightning Charging Cable,1,14.95,09/09/19 15:14,"581 Lincoln St, San Francisco, CA 94016" +251280,USB-C Charging Cable,2,11.95,09/06/19 09:57,"199 Hickory St, San Francisco, CA 94016" +251281,USB-C Charging Cable,1,11.95,09/01/19 10:56,"786 8th St, San Francisco, CA 94016" +251282,iPhone,1,700,09/01/19 03:35,"894 Jefferson St, Boston, MA 02215" +251282,Lightning Charging Cable,1,14.95,09/01/19 03:35,"894 Jefferson St, Boston, MA 02215" +251283,AAA Batteries (4-pack),2,2.99,09/27/19 11:45,"615 Forest St, Dallas, TX 75001" +251284,Bose SoundSport Headphones,1,99.99,09/24/19 23:58,"667 Adams St, New York City, NY 10001" +251285,Flatscreen TV,1,300,09/13/19 08:34,"792 Jackson St, Austin, TX 73301" +251286,Wired Headphones,1,11.99,09/27/19 08:47,"100 Maple St, Austin, TX 73301" +251287,Apple Airpods Headphones,1,150,09/01/19 13:29,"573 14th St, Los Angeles, CA 90001" +251288,Macbook Pro Laptop,1,1700,09/27/19 20:17,"228 5th St, New York City, NY 10001" +251289,USB-C Charging Cable,1,11.95,09/12/19 14:19,"113 Hill St, Dallas, TX 75001" +251290,Apple Airpods Headphones,1,150,09/16/19 20:54,"510 Center St, Los Angeles, CA 90001" +251291,27in FHD Monitor,1,149.99,09/11/19 20:51,"658 Church St, Austin, TX 73301" +251292,AAA Batteries (4-pack),2,2.99,09/25/19 07:21,"741 Wilson St, Dallas, TX 75001" +251293,Apple Airpods Headphones,1,150,09/23/19 20:34,"326 Lincoln St, Austin, TX 73301" +251294,AA Batteries (4-pack),1,3.84,09/29/19 00:53,"104 Willow St, Dallas, TX 75001" +251295,USB-C Charging Cable,1,11.95,09/24/19 23:05,"128 Madison St, Boston, MA 02215" +251296,USB-C Charging Cable,1,11.95,09/06/19 17:56,"66 Lake St, Los Angeles, CA 90001" +251297,AAA Batteries (4-pack),1,2.99,09/17/19 12:46,"691 Main St, Los Angeles, CA 90001" +251298,Wired Headphones,2,11.99,09/13/19 19:03,"742 Madison St, Los Angeles, CA 90001" +251299,AAA Batteries (4-pack),1,2.99,09/08/19 13:19,"369 North St, Boston, MA 02215" +251299,Lightning Charging Cable,1,14.95,09/08/19 13:19,"369 North St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +251300,USB-C Charging Cable,1,11.95,09/27/19 23:35,"958 Willow St, Austin, TX 73301" +251301,AA Batteries (4-pack),1,3.84,09/18/19 16:11,"838 Center St, San Francisco, CA 94016" +251302,27in FHD Monitor,1,149.99,09/14/19 16:31,"167 West St, San Francisco, CA 94016" +251303,Lightning Charging Cable,1,14.95,09/21/19 00:50,"964 Madison St, New York City, NY 10001" +251304,AAA Batteries (4-pack),2,2.99,09/04/19 18:00,"630 Elm St, San Francisco, CA 94016" +251305,AAA Batteries (4-pack),2,2.99,09/11/19 15:01,"852 4th St, Los Angeles, CA 90001" +251306,Wired Headphones,1,11.99,09/03/19 12:50,"739 Sunset St, San Francisco, CA 94016" +251307,Wired Headphones,1,11.99,09/04/19 07:24,"747 Pine St, San Francisco, CA 94016" +251308,AA Batteries (4-pack),1,3.84,09/01/19 04:34,"17 7th St, San Francisco, CA 94016" +251309,USB-C Charging Cable,1,11.95,09/06/19 13:22,"999 Park St, San Francisco, CA 94016" +251310,USB-C Charging Cable,1,11.95,09/20/19 22:29,"257 Forest St, San Francisco, CA 94016" +251311,AAA Batteries (4-pack),3,2.99,09/27/19 13:45,"527 Maple St, Portland, OR 97035" +251312,Wired Headphones,1,11.99,09/08/19 22:15,"712 6th St, San Francisco, CA 94016" +251313,Apple Airpods Headphones,1,150,09/23/19 19:36,"120 14th St, New York City, NY 10001" +251314,AAA Batteries (4-pack),2,2.99,09/14/19 11:23,"844 Lakeview St, Atlanta, GA 30301" +251315,Lightning Charging Cable,1,14.95,09/09/19 17:34,"494 Elm St, Dallas, TX 75001" +251316,Lightning Charging Cable,1,14.95,09/06/19 12:33,"39 North St, Portland, OR 97035" +251317,Apple Airpods Headphones,1,150,09/18/19 18:46,"441 Forest St, Austin, TX 73301" +251318,27in FHD Monitor,1,149.99,09/11/19 12:59,"31 Main St, Seattle, WA 98101" +251319,27in 4K Gaming Monitor,1,389.99,09/06/19 16:43,"748 Lake St, San Francisco, CA 94016" +251320,USB-C Charging Cable,1,11.95,09/28/19 13:28,"655 Madison St, Atlanta, GA 30301" +251321,iPhone,1,700,09/19/19 06:26,"935 Center St, Los Angeles, CA 90001" +251322,AA Batteries (4-pack),2,3.84,09/29/19 19:22,"883 Jackson St, San Francisco, CA 94016" +251323,Flatscreen TV,1,300,09/12/19 12:30,"758 9th St, Austin, TX 73301" +251323,Lightning Charging Cable,1,14.95,09/12/19 12:30,"758 9th St, Austin, TX 73301" +251324,AA Batteries (4-pack),1,3.84,09/18/19 18:37,"797 11th St, Los Angeles, CA 90001" +251325,ThinkPad Laptop,1,999.99,09/10/19 15:08,"957 Washington St, Los Angeles, CA 90001" +251326,USB-C Charging Cable,1,11.95,09/30/19 17:15,"981 Jefferson St, Boston, MA 02215" +251327,Flatscreen TV,1,300,09/19/19 12:30,"829 Walnut St, Los Angeles, CA 90001" +251328,ThinkPad Laptop,1,999.99,09/03/19 02:28,"842 5th St, Dallas, TX 75001" +251329,Lightning Charging Cable,1,14.95,09/14/19 19:53,"500 West St, Los Angeles, CA 90001" +251330,USB-C Charging Cable,2,11.95,09/03/19 02:18,"556 8th St, San Francisco, CA 94016" +251331,Lightning Charging Cable,1,14.95,09/28/19 09:35,"668 Chestnut St, Atlanta, GA 30301" +251332,USB-C Charging Cable,1,11.95,09/23/19 19:22,"906 Willow St, Dallas, TX 75001" +251333,Apple Airpods Headphones,1,150,09/23/19 18:22,"920 Madison St, San Francisco, CA 94016" +251334,27in FHD Monitor,1,149.99,09/24/19 12:16,"113 11th St, Los Angeles, CA 90001" +251335,Lightning Charging Cable,1,14.95,09/23/19 19:36,"701 South St, Portland, OR 97035" +251336,AA Batteries (4-pack),3,3.84,09/15/19 09:53,"110 South St, San Francisco, CA 94016" +251337,Lightning Charging Cable,1,14.95,09/15/19 14:51,"859 West St, San Francisco, CA 94016" +251338,ThinkPad Laptop,1,999.99,09/08/19 10:21,"892 Lake St, San Francisco, CA 94016" +251339,Wired Headphones,2,11.99,09/15/19 11:45,"112 North St, San Francisco, CA 94016" +251340,AA Batteries (4-pack),1,3.84,09/17/19 09:01,"315 Ridge St, Austin, TX 73301" +251341,34in Ultrawide Monitor,1,379.99,09/09/19 07:21,"326 South St, Seattle, WA 98101" +251342,Lightning Charging Cable,1,14.95,09/14/19 12:10,"587 Cherry St, San Francisco, CA 94016" +251343,AA Batteries (4-pack),1,3.84,09/28/19 12:42,"120 7th St, Los Angeles, CA 90001" +251344,USB-C Charging Cable,2,11.95,09/17/19 17:21,"476 River St, Los Angeles, CA 90001" +251345,USB-C Charging Cable,1,11.95,09/15/19 11:50,"969 Sunset St, Portland, OR 97035" +251346,USB-C Charging Cable,1,11.95,09/21/19 14:40,"273 9th St, San Francisco, CA 94016" +251347,Wired Headphones,1,11.99,09/17/19 15:42,"325 5th St, New York City, NY 10001" +251348,Flatscreen TV,1,300,09/09/19 11:22,"462 Meadow St, Los Angeles, CA 90001" +251349,USB-C Charging Cable,1,11.95,09/05/19 08:49,"796 South St, Portland, OR 97035" +251350,Wired Headphones,1,11.99,09/21/19 14:07,"167 Washington St, Los Angeles, CA 90001" +251351,Bose SoundSport Headphones,1,99.99,09/07/19 23:31,"779 1st St, Portland, OR 97035" +251352,Wired Headphones,1,11.99,09/07/19 12:44,"329 Chestnut St, New York City, NY 10001" +251353,iPhone,1,700,09/30/19 19:37,"644 Main St, New York City, NY 10001" +251354,20in Monitor,1,109.99,09/17/19 16:27,"767 River St, New York City, NY 10001" +251355,AAA Batteries (4-pack),1,2.99,09/09/19 23:30,"126 Cherry St, San Francisco, CA 94016" +251356,USB-C Charging Cable,1,11.95,09/23/19 13:07,"940 Lakeview St, New York City, NY 10001" +251357,Wired Headphones,1,11.99,09/29/19 16:04,"516 Lincoln St, Los Angeles, CA 90001" +251358,USB-C Charging Cable,1,11.95,09/17/19 20:05,"190 Willow St, Boston, MA 02215" +251359,iPhone,1,700,09/12/19 10:43,"240 Johnson St, San Francisco, CA 94016" +251360,iPhone,1,700,09/17/19 15:13,"337 Lincoln St, Boston, MA 02215" +251361,Wired Headphones,1,11.99,09/29/19 15:45,"418 Madison St, New York City, NY 10001" +251362,Wired Headphones,1,11.99,09/19/19 22:43,"574 Willow St, San Francisco, CA 94016" +251363,Apple Airpods Headphones,1,150,09/06/19 18:22,"924 Adams St, San Francisco, CA 94016" +251364,AAA Batteries (4-pack),5,2.99,09/02/19 19:56,"678 12th St, Los Angeles, CA 90001" +251365,Apple Airpods Headphones,1,150,09/05/19 09:15,"661 Lakeview St, Los Angeles, CA 90001" +251366,AAA Batteries (4-pack),1,2.99,09/06/19 14:50,"805 Madison St, San Francisco, CA 94016" +251367,USB-C Charging Cable,1,11.95,09/09/19 18:34,"212 5th St, Portland, OR 97035" +251368,Lightning Charging Cable,1,14.95,09/04/19 11:16,"929 South St, Los Angeles, CA 90001" +251369,Apple Airpods Headphones,1,150,09/29/19 09:33,"583 Pine St, Austin, TX 73301" +251370,27in FHD Monitor,1,149.99,09/23/19 00:09,"888 8th St, San Francisco, CA 94016" +251371,27in FHD Monitor,1,149.99,09/04/19 08:39,"738 Park St, Dallas, TX 75001" +251372,AAA Batteries (4-pack),1,2.99,09/16/19 19:53,"565 Sunset St, New York City, NY 10001" +251373,Lightning Charging Cable,2,14.95,09/04/19 12:18,"497 Jackson St, Atlanta, GA 30301" +251374,Lightning Charging Cable,1,14.95,09/03/19 05:54,"925 Lakeview St, San Francisco, CA 94016" +251375,Lightning Charging Cable,1,14.95,09/03/19 17:50,"289 Cedar St, Seattle, WA 98101" +251376,27in FHD Monitor,1,149.99,09/03/19 15:36,"128 Highland St, New York City, NY 10001" +251377,AA Batteries (4-pack),1,3.84,09/18/19 10:20,"909 1st St, Boston, MA 02215" +251378,27in FHD Monitor,1,149.99,09/12/19 11:43,"110 Church St, New York City, NY 10001" +251379,Lightning Charging Cable,2,14.95,09/20/19 14:54,"389 Church St, San Francisco, CA 94016" +251380,Flatscreen TV,1,300,09/02/19 12:03,"231 Elm St, Dallas, TX 75001" +251381,Lightning Charging Cable,1,14.95,09/12/19 18:56,"819 Park St, Los Angeles, CA 90001" +251382,Macbook Pro Laptop,1,1700,09/13/19 00:41,"897 North St, New York City, NY 10001" +251383,Bose SoundSport Headphones,2,99.99,09/01/19 16:19,"91 Forest St, Austin, TX 73301" +251384,iPhone,1,700,09/08/19 09:57,"755 Elm St, New York City, NY 10001" +251385,Wired Headphones,1,11.99,09/01/19 07:03,"526 River St, Boston, MA 02215" +251386,iPhone,1,700,09/25/19 18:02,"560 Willow St, Seattle, WA 98101" +251387,AAA Batteries (4-pack),4,2.99,09/18/19 07:44,"57 West St, Portland, OR 97035" +251388,Wired Headphones,1,11.99,09/12/19 16:00,"191 6th St, Dallas, TX 75001" +251389,Wired Headphones,1,11.99,09/14/19 00:57,"837 Forest St, Los Angeles, CA 90001" +251390,USB-C Charging Cable,2,11.95,09/16/19 23:48,"742 Center St, Los Angeles, CA 90001" +251391,Bose SoundSport Headphones,1,99.99,09/09/19 17:33,"740 Maple St, Los Angeles, CA 90001" +251392,34in Ultrawide Monitor,1,379.99,09/08/19 20:32,"37 Sunset St, Portland, ME 04101" +251393,AA Batteries (4-pack),1,3.84,09/21/19 23:13,"701 Chestnut St, San Francisco, CA 94016" +251393,AAA Batteries (4-pack),2,2.99,09/21/19 23:13,"701 Chestnut St, San Francisco, CA 94016" +251394,USB-C Charging Cable,1,11.95,09/20/19 02:34,"488 Willow St, Los Angeles, CA 90001" +251395,AA Batteries (4-pack),1,3.84,09/21/19 14:14,"962 Washington St, Boston, MA 02215" +251396,USB-C Charging Cable,1,11.95,09/15/19 08:42,"178 Dogwood St, Boston, MA 02215" +251397,20in Monitor,1,109.99,09/07/19 09:47,"798 Washington St, San Francisco, CA 94016" +251398,Google Phone,1,600,09/09/19 13:54,"655 Wilson St, New York City, NY 10001" +251399,AAA Batteries (4-pack),1,2.99,09/10/19 01:01,"217 4th St, San Francisco, CA 94016" +251400,AAA Batteries (4-pack),1,2.99,09/04/19 12:34,"88 Ridge St, Austin, TX 73301" +251401,Google Phone,1,600,09/15/19 18:38,"987 Hill St, New York City, NY 10001" +251402,Apple Airpods Headphones,1,150,09/15/19 14:59,"381 Chestnut St, San Francisco, CA 94016" +251403,USB-C Charging Cable,1,11.95,09/14/19 11:36,"774 Elm St, Los Angeles, CA 90001" +251404,Lightning Charging Cable,1,14.95,09/24/19 09:40,"347 11th St, San Francisco, CA 94016" +251405,27in 4K Gaming Monitor,1,389.99,09/20/19 11:58,"749 Madison St, San Francisco, CA 94016" +251406,AAA Batteries (4-pack),1,2.99,09/16/19 12:38,"438 Pine St, San Francisco, CA 94016" +251407,Google Phone,1,600,09/16/19 11:45,"725 9th St, Dallas, TX 75001" +251408,AA Batteries (4-pack),1,3.84,09/11/19 11:42,"133 South St, Seattle, WA 98101" +251409,USB-C Charging Cable,1,11.95,09/28/19 11:58,"946 Lakeview St, Los Angeles, CA 90001" +251410,27in FHD Monitor,1,149.99,09/08/19 08:08,"835 Cherry St, Boston, MA 02215" +251411,Bose SoundSport Headphones,1,99.99,09/07/19 10:21,"577 Jackson St, New York City, NY 10001" +251412,Google Phone,1,600,09/26/19 10:00,"64 Church St, New York City, NY 10001" +251412,USB-C Charging Cable,2,11.95,09/26/19 10:00,"64 Church St, New York City, NY 10001" +251413,Apple Airpods Headphones,1,150,09/13/19 23:08,"720 11th St, Portland, OR 97035" +251414,Wired Headphones,2,11.99,09/17/19 13:33,"925 Highland St, Dallas, TX 75001" +251415,Lightning Charging Cable,1,14.95,09/24/19 13:46,"854 Lake St, San Francisco, CA 94016" +251416,AAA Batteries (4-pack),3,2.99,09/10/19 20:13,"367 North St, New York City, NY 10001" +251417,AAA Batteries (4-pack),1,2.99,09/26/19 12:48,"782 Meadow St, San Francisco, CA 94016" +251418,34in Ultrawide Monitor,1,379.99,09/15/19 11:52,"736 Dogwood St, New York City, NY 10001" +251419,20in Monitor,1,109.99,09/03/19 08:12,"875 9th St, San Francisco, CA 94016" +251420,Lightning Charging Cable,1,14.95,09/26/19 09:07,"845 5th St, Austin, TX 73301" +251421,AAA Batteries (4-pack),1,2.99,09/10/19 20:14,"141 Maple St, Austin, TX 73301" +251422,34in Ultrawide Monitor,1,379.99,09/22/19 18:41,"558 9th St, San Francisco, CA 94016" +251423,USB-C Charging Cable,1,11.95,09/27/19 15:52,"717 Dogwood St, San Francisco, CA 94016" +251424,Lightning Charging Cable,1,14.95,09/27/19 20:08,"187 Main St, New York City, NY 10001" +251425,USB-C Charging Cable,1,11.95,09/20/19 18:53,"246 8th St, Boston, MA 02215" +251426,AAA Batteries (4-pack),1,2.99,09/01/19 15:06,"851 Forest St, San Francisco, CA 94016" +251427,USB-C Charging Cable,1,11.95,09/23/19 14:09,"94 Washington St, Boston, MA 02215" +251428,27in FHD Monitor,1,149.99,09/27/19 15:53,"817 Hill St, Los Angeles, CA 90001" +251429,AAA Batteries (4-pack),1,2.99,09/02/19 08:14,"90 Pine St, Dallas, TX 75001" +251430,USB-C Charging Cable,2,11.95,09/28/19 18:34,"386 Hill St, San Francisco, CA 94016" +251431,34in Ultrawide Monitor,1,379.99,09/14/19 04:56,"46 Washington St, New York City, NY 10001" +251432,Apple Airpods Headphones,1,150,09/10/19 16:02,"677 Meadow St, Boston, MA 02215" +251433,AAA Batteries (4-pack),1,2.99,09/26/19 16:02,"874 Jefferson St, New York City, NY 10001" +251434,27in FHD Monitor,1,149.99,09/25/19 10:36,"579 12th St, Austin, TX 73301" +251435,27in 4K Gaming Monitor,1,389.99,09/22/19 08:24,"909 Hill St, Boston, MA 02215" +251436,Apple Airpods Headphones,1,150,09/13/19 02:18,"780 12th St, Los Angeles, CA 90001" +251437,Apple Airpods Headphones,1,150,09/03/19 10:53,"561 Walnut St, Los Angeles, CA 90001" +251438,LG Dryer,1,600.0,09/06/19 14:59,"370 Lake St, Portland, ME 04101" +251439,USB-C Charging Cable,1,11.95,09/01/19 19:27,"455 Madison St, New York City, NY 10001" +251440,ThinkPad Laptop,1,999.99,09/08/19 12:51,"363 Lakeview St, Boston, MA 02215" +251441,USB-C Charging Cable,1,11.95,09/05/19 03:17,"436 13th St, Dallas, TX 75001" +251442,Lightning Charging Cable,2,14.95,09/14/19 14:15,"629 Johnson St, New York City, NY 10001" +251443,AA Batteries (4-pack),1,3.84,09/08/19 18:30,"902 North St, Dallas, TX 75001" +251444,Lightning Charging Cable,1,14.95,09/29/19 21:58,"346 Madison St, Dallas, TX 75001" +251445,AA Batteries (4-pack),3,3.84,09/17/19 20:58,"242 Adams St, Los Angeles, CA 90001" +251446,USB-C Charging Cable,1,11.95,09/29/19 19:29,"230 Walnut St, San Francisco, CA 94016" +251447,LG Dryer,1,600.0,09/18/19 22:48,"443 Spruce St, San Francisco, CA 94016" +251448,AAA Batteries (4-pack),1,2.99,09/29/19 20:39,"430 Jackson St, San Francisco, CA 94016" +251449,20in Monitor,1,109.99,09/12/19 14:39,"338 10th St, Boston, MA 02215" +251450,Macbook Pro Laptop,1,1700,09/21/19 08:17,"457 Lake St, San Francisco, CA 94016" +251451,Google Phone,1,600,09/21/19 18:31,"435 Main St, Dallas, TX 75001" +251452,Lightning Charging Cable,1,14.95,09/30/19 16:36,"929 2nd St, San Francisco, CA 94016" +251453,Lightning Charging Cable,1,14.95,09/02/19 14:10,"997 7th St, Atlanta, GA 30301" +251454,Apple Airpods Headphones,1,150,09/14/19 17:59,"884 Washington St, Boston, MA 02215" +251455,Google Phone,1,600,09/29/19 10:33,"154 Dogwood St, San Francisco, CA 94016" +251456,AAA Batteries (4-pack),1,2.99,09/21/19 14:45,"80 Wilson St, Dallas, TX 75001" +251457,AA Batteries (4-pack),1,3.84,09/13/19 05:04,"585 Maple St, Portland, OR 97035" +251458,Wired Headphones,1,11.99,09/12/19 15:11,"838 Center St, New York City, NY 10001" +251459,Lightning Charging Cable,2,14.95,09/19/19 17:57,"449 West St, Austin, TX 73301" +251460,USB-C Charging Cable,1,11.95,09/21/19 16:21,"503 Cedar St, Portland, ME 04101" +251461,Lightning Charging Cable,1,14.95,09/21/19 11:55,"971 North St, Boston, MA 02215" +251462,USB-C Charging Cable,1,11.95,09/12/19 23:21,"785 Forest St, Austin, TX 73301" +251463,34in Ultrawide Monitor,1,379.99,09/20/19 20:14,"643 Church St, Seattle, WA 98101" +251464,USB-C Charging Cable,1,11.95,09/06/19 15:22,"618 South St, San Francisco, CA 94016" +251465,iPhone,1,700,09/24/19 13:11,"446 Chestnut St, New York City, NY 10001" +251465,Wired Headphones,1,11.99,09/24/19 13:11,"446 Chestnut St, New York City, NY 10001" +251466,20in Monitor,1,109.99,09/25/19 16:08,"297 10th St, Boston, MA 02215" +251467,34in Ultrawide Monitor,1,379.99,09/24/19 16:18,"452 North St, Dallas, TX 75001" +251468,27in FHD Monitor,1,149.99,09/04/19 10:36,"332 Washington St, San Francisco, CA 94016" +251469,AA Batteries (4-pack),1,3.84,09/06/19 21:37,"364 Dogwood St, Portland, OR 97035" +251470,Bose SoundSport Headphones,1,99.99,09/27/19 21:36,"16 Hill St, Seattle, WA 98101" +251471,Lightning Charging Cable,1,14.95,09/29/19 09:17,"555 Dogwood St, San Francisco, CA 94016" +251472,USB-C Charging Cable,1,11.95,09/19/19 13:59,"784 Hickory St, Portland, OR 97035" +251473,27in 4K Gaming Monitor,1,389.99,09/10/19 09:25,"193 10th St, San Francisco, CA 94016" +251474,AA Batteries (4-pack),1,3.84,09/01/19 11:25,"546 Hickory St, San Francisco, CA 94016" +251475,iPhone,1,700,09/10/19 14:25,"289 2nd St, New York City, NY 10001" +251476,Lightning Charging Cable,1,14.95,09/28/19 18:59,"154 5th St, Atlanta, GA 30301" +251477,AA Batteries (4-pack),1,3.84,09/05/19 20:24,"984 Park St, San Francisco, CA 94016" +251478,AA Batteries (4-pack),1,3.84,09/12/19 19:46,"376 2nd St, Los Angeles, CA 90001" +251479,Bose SoundSport Headphones,1,99.99,09/24/19 17:15,"27 Jackson St, New York City, NY 10001" +251480,34in Ultrawide Monitor,1,379.99,09/05/19 17:38,"320 West St, Boston, MA 02215" +251481,27in FHD Monitor,1,149.99,09/26/19 20:11,"768 Johnson St, Boston, MA 02215" +251482,Wired Headphones,1,11.99,09/05/19 04:24,"687 Forest St, Atlanta, GA 30301" +251483,27in FHD Monitor,1,149.99,09/02/19 10:34,"172 8th St, Seattle, WA 98101" +251484,Flatscreen TV,1,300,09/29/19 15:11,"610 Jefferson St, San Francisco, CA 94016" +251485,Bose SoundSport Headphones,1,99.99,09/05/19 07:35,"100 1st St, Boston, MA 02215" +251486,Lightning Charging Cable,1,14.95,09/13/19 22:50,"564 Jefferson St, San Francisco, CA 94016" +251487,27in FHD Monitor,1,149.99,09/06/19 20:22,"539 Walnut St, Los Angeles, CA 90001" +251488,USB-C Charging Cable,1,11.95,09/13/19 08:40,"140 Chestnut St, Los Angeles, CA 90001" +251489,Macbook Pro Laptop,1,1700,09/24/19 20:23,"675 Lake St, San Francisco, CA 94016" +251490,27in FHD Monitor,1,149.99,09/26/19 11:37,"800 2nd St, Atlanta, GA 30301" +251491,27in 4K Gaming Monitor,1,389.99,09/16/19 07:04,"481 2nd St, Dallas, TX 75001" +251492,ThinkPad Laptop,1,999.99,09/05/19 17:15,"829 Madison St, San Francisco, CA 94016" +251493,USB-C Charging Cable,1,11.95,09/03/19 10:54,"532 River St, San Francisco, CA 94016" +251494,Wired Headphones,1,11.99,09/23/19 22:00,"817 13th St, San Francisco, CA 94016" +251495,Macbook Pro Laptop,1,1700,09/19/19 07:01,"444 Lincoln St, Boston, MA 02215" +251496,Bose SoundSport Headphones,1,99.99,09/08/19 18:11,"108 5th St, San Francisco, CA 94016" +251497,AA Batteries (4-pack),1,3.84,09/09/19 19:15,"88 Church St, Los Angeles, CA 90001" +251498,Apple Airpods Headphones,1,150,09/20/19 16:44,"599 4th St, Dallas, TX 75001" +251499,Lightning Charging Cable,1,14.95,09/08/19 09:38,"882 Meadow St, Dallas, TX 75001" +251500,Apple Airpods Headphones,1,150,09/22/19 21:56,"864 Lakeview St, Portland, ME 04101" +251501,Google Phone,1,600,09/24/19 18:59,"533 Lakeview St, Atlanta, GA 30301" +251502,Bose SoundSport Headphones,1,99.99,09/01/19 14:15,"961 Willow St, Atlanta, GA 30301" +251503,20in Monitor,1,109.99,09/09/19 13:13,"811 10th St, New York City, NY 10001" +251503,Wired Headphones,1,11.99,09/09/19 13:13,"811 10th St, New York City, NY 10001" +251504,AAA Batteries (4-pack),1,2.99,09/26/19 19:17,"657 11th St, San Francisco, CA 94016" +251505,USB-C Charging Cable,1,11.95,09/03/19 17:15,"101 Walnut St, Dallas, TX 75001" +251506,Google Phone,1,600,09/20/19 18:05,"985 Lake St, New York City, NY 10001" +251507,AA Batteries (4-pack),1,3.84,09/13/19 19:33,"4 Forest St, Boston, MA 02215" +251508,Vareebadd Phone,1,400,09/18/19 00:14,"803 Jackson St, San Francisco, CA 94016" +251509,AA Batteries (4-pack),1,3.84,09/18/19 22:50,"60 10th St, San Francisco, CA 94016" +251510,Google Phone,1,600,09/27/19 20:31,"139 1st St, Los Angeles, CA 90001" +251511,USB-C Charging Cable,1,11.95,09/07/19 20:01,"233 West St, Dallas, TX 75001" +251512,Bose SoundSport Headphones,1,99.99,09/21/19 00:22,"662 1st St, San Francisco, CA 94016" +251513,27in 4K Gaming Monitor,1,389.99,09/17/19 10:00,"851 Jackson St, Dallas, TX 75001" +251514,34in Ultrawide Monitor,1,379.99,09/24/19 20:41,"557 Walnut St, San Francisco, CA 94016" +251515,AA Batteries (4-pack),1,3.84,09/02/19 12:37,"201 Main St, San Francisco, CA 94016" +251516,Flatscreen TV,1,300,09/05/19 20:26,"256 Church St, New York City, NY 10001" +251517,27in FHD Monitor,1,149.99,09/13/19 11:45,"634 Park St, Dallas, TX 75001" +251518,AA Batteries (4-pack),4,3.84,09/06/19 11:00,"921 Madison St, Dallas, TX 75001" +251519,Apple Airpods Headphones,1,150,09/09/19 14:39,"658 Wilson St, Atlanta, GA 30301" +251520,AA Batteries (4-pack),1,3.84,09/21/19 06:09,"107 8th St, Los Angeles, CA 90001" +251521,Bose SoundSport Headphones,1,99.99,09/22/19 18:15,"597 Jefferson St, Seattle, WA 98101" +251521,USB-C Charging Cable,1,11.95,09/22/19 18:15,"597 Jefferson St, Seattle, WA 98101" +251522,USB-C Charging Cable,1,11.95,09/18/19 18:33,"842 North St, San Francisco, CA 94016" +251523,Bose SoundSport Headphones,1,99.99,09/28/19 11:41,"437 Ridge St, San Francisco, CA 94016" +251524,Lightning Charging Cable,2,14.95,09/06/19 21:54,"730 Cedar St, Portland, ME 04101" +251525,27in 4K Gaming Monitor,1,389.99,09/23/19 06:28,"304 Adams St, San Francisco, CA 94016" +251526,27in FHD Monitor,1,149.99,09/25/19 12:27,"633 Forest St, Boston, MA 02215" +251527,AA Batteries (4-pack),2,3.84,09/08/19 22:23,"79 West St, New York City, NY 10001" +251528,Lightning Charging Cable,1,14.95,09/30/19 21:50,"235 Dogwood St, Seattle, WA 98101" +251529,Lightning Charging Cable,1,14.95,09/24/19 09:20,"409 1st St, San Francisco, CA 94016" +251530,iPhone,1,700,09/21/19 18:12,"664 Washington St, New York City, NY 10001" +251530,Lightning Charging Cable,1,14.95,09/21/19 18:12,"664 Washington St, New York City, NY 10001" +251530,Apple Airpods Headphones,1,150,09/21/19 18:12,"664 Washington St, New York City, NY 10001" +251531,USB-C Charging Cable,1,11.95,09/15/19 22:38,"570 Willow St, San Francisco, CA 94016" +251532,ThinkPad Laptop,1,999.99,09/03/19 02:09,"51 Hill St, Dallas, TX 75001" +251533,AA Batteries (4-pack),1,3.84,09/23/19 12:03,"481 7th St, Los Angeles, CA 90001" +251534,USB-C Charging Cable,1,11.95,09/19/19 15:28,"353 Spruce St, Boston, MA 02215" +251535,AA Batteries (4-pack),2,3.84,09/22/19 20:07,"427 10th St, Austin, TX 73301" +251536,AA Batteries (4-pack),1,3.84,09/17/19 16:59,"635 Cedar St, Boston, MA 02215" +251537,27in 4K Gaming Monitor,1,389.99,09/08/19 15:45,"423 Forest St, New York City, NY 10001" +251538,Google Phone,1,600,09/04/19 13:04,"862 Lake St, Los Angeles, CA 90001" +251539,34in Ultrawide Monitor,1,379.99,09/02/19 15:21,"485 6th St, New York City, NY 10001" +251540,AAA Batteries (4-pack),1,2.99,09/14/19 11:33,"604 2nd St, Los Angeles, CA 90001" +251541,34in Ultrawide Monitor,1,379.99,09/06/19 19:45,"690 Hill St, Dallas, TX 75001" +251542,34in Ultrawide Monitor,1,379.99,09/23/19 16:40,"800 11th St, San Francisco, CA 94016" +251543,Wired Headphones,1,11.99,09/02/19 17:57,"796 Ridge St, Portland, ME 04101" +251544,Apple Airpods Headphones,1,150,09/08/19 09:20,"108 Chestnut St, San Francisco, CA 94016" +251544,Wired Headphones,1,11.99,09/08/19 09:20,"108 Chestnut St, San Francisco, CA 94016" +251545,Apple Airpods Headphones,1,150,09/25/19 09:49,"586 Spruce St, San Francisco, CA 94016" +251546,USB-C Charging Cable,1,11.95,09/29/19 11:21,"761 Church St, Los Angeles, CA 90001" +251547,Wired Headphones,1,11.99,09/30/19 21:52,"201 Pine St, New York City, NY 10001" +251548,Lightning Charging Cable,1,14.95,09/02/19 15:24,"528 Jefferson St, Los Angeles, CA 90001" +251549,iPhone,1,700,09/05/19 20:29,"483 Hickory St, New York City, NY 10001" +251549,Apple Airpods Headphones,1,150,09/05/19 20:29,"483 Hickory St, New York City, NY 10001" +251550,34in Ultrawide Monitor,1,379.99,09/26/19 12:49,"635 2nd St, Seattle, WA 98101" +251551,Macbook Pro Laptop,1,1700,09/13/19 23:02,"492 Lincoln St, Boston, MA 02215" +251552,USB-C Charging Cable,3,11.95,09/07/19 12:32,"848 13th St, San Francisco, CA 94016" +251553,AA Batteries (4-pack),1,3.84,09/01/19 13:13,"189 4th St, San Francisco, CA 94016" +251554,Apple Airpods Headphones,1,150,09/07/19 15:48,"200 North St, San Francisco, CA 94016" +251555,AA Batteries (4-pack),1,3.84,09/19/19 14:00,"438 8th St, San Francisco, CA 94016" +251556,AA Batteries (4-pack),1,3.84,09/21/19 19:45,"848 River St, Los Angeles, CA 90001" +251557,AAA Batteries (4-pack),1,2.99,09/12/19 15:49,"669 Maple St, Seattle, WA 98101" +251558,iPhone,1,700,09/07/19 18:19,"48 Lakeview St, Los Angeles, CA 90001" +251559,USB-C Charging Cable,1,11.95,09/23/19 14:05,"788 Pine St, Atlanta, GA 30301" +251560,Bose SoundSport Headphones,1,99.99,09/12/19 21:28,"884 6th St, San Francisco, CA 94016" +251561,Lightning Charging Cable,1,14.95,09/16/19 18:11,"615 Adams St, Atlanta, GA 30301" +251562,Wired Headphones,1,11.99,09/17/19 11:41,"514 Hill St, Seattle, WA 98101" +251563,AAA Batteries (4-pack),3,2.99,09/25/19 02:27,"699 Cherry St, Portland, ME 04101" +251564,AA Batteries (4-pack),1,3.84,09/28/19 14:53,"442 Cedar St, Seattle, WA 98101" +251565,Apple Airpods Headphones,1,150,09/13/19 20:15,"325 Pine St, Seattle, WA 98101" +251566,Apple Airpods Headphones,1,150,09/14/19 16:52,"240 Hill St, Boston, MA 02215" +251567,Lightning Charging Cable,1,14.95,09/07/19 14:31,"270 Jackson St, Atlanta, GA 30301" +251568,AAA Batteries (4-pack),1,2.99,09/06/19 08:32,"961 Cherry St, New York City, NY 10001" +251569,Bose SoundSport Headphones,1,99.99,09/12/19 02:33,"513 Cedar St, Seattle, WA 98101" +251570,ThinkPad Laptop,1,999.99,09/02/19 09:39,"795 Willow St, Portland, ME 04101" +251571,Wired Headphones,2,11.99,09/22/19 10:01,"875 Meadow St, New York City, NY 10001" +251572,Google Phone,1,600,09/08/19 19:40,"83 Jackson St, New York City, NY 10001" +251573,USB-C Charging Cable,1,11.95,09/17/19 14:40,"44 Lake St, Seattle, WA 98101" +251574,Bose SoundSport Headphones,1,99.99,09/10/19 20:09,"431 Church St, Los Angeles, CA 90001" +251575,Apple Airpods Headphones,1,150,09/04/19 20:14,"562 Madison St, Dallas, TX 75001" +251576,Macbook Pro Laptop,1,1700,09/16/19 21:33,"110 Spruce St, Dallas, TX 75001" +251577,USB-C Charging Cable,1,11.95,09/19/19 20:55,"167 6th St, Seattle, WA 98101" +251578,27in FHD Monitor,1,149.99,09/21/19 17:30,"397 4th St, Los Angeles, CA 90001" +251579,Flatscreen TV,1,300,09/18/19 22:44,"389 9th St, San Francisco, CA 94016" +251580,27in 4K Gaming Monitor,1,389.99,09/02/19 19:00,"45 6th St, San Francisco, CA 94016" +251581,ThinkPad Laptop,1,999.99,09/10/19 08:31,"273 7th St, San Francisco, CA 94016" +251582,Apple Airpods Headphones,1,150,09/08/19 17:41,"415 Pine St, New York City, NY 10001" +251583,AAA Batteries (4-pack),1,2.99,09/28/19 09:38,"204 2nd St, San Francisco, CA 94016" +251584,Lightning Charging Cable,1,14.95,09/20/19 12:45,"175 Lincoln St, New York City, NY 10001" +251585,Apple Airpods Headphones,1,150,09/04/19 17:10,"472 Maple St, Atlanta, GA 30301" +251586,Google Phone,1,600,09/04/19 11:57,"125 12th St, New York City, NY 10001" +251587,Lightning Charging Cable,1,14.95,09/20/19 18:49,"754 12th St, Los Angeles, CA 90001" +251588,Bose SoundSport Headphones,1,99.99,09/12/19 12:48,"127 10th St, Portland, OR 97035" +251589,USB-C Charging Cable,1,11.95,09/04/19 11:08,"801 Lakeview St, New York City, NY 10001" +251590,Apple Airpods Headphones,1,150,09/20/19 12:11,"733 1st St, Seattle, WA 98101" +251591,Wired Headphones,1,11.99,09/25/19 19:10,"921 Walnut St, San Francisco, CA 94016" +251592,ThinkPad Laptop,1,999.99,09/19/19 07:28,"317 11th St, Dallas, TX 75001" +251593,Apple Airpods Headphones,1,150,09/24/19 18:17,"200 Wilson St, Los Angeles, CA 90001" +251594,AA Batteries (4-pack),1,3.84,09/08/19 20:56,"968 11th St, Atlanta, GA 30301" +251594,USB-C Charging Cable,1,11.95,09/08/19 20:56,"968 11th St, Atlanta, GA 30301" +251595,Macbook Pro Laptop,1,1700,09/05/19 20:08,"669 Maple St, New York City, NY 10001" +251596,AAA Batteries (4-pack),3,2.99,09/25/19 14:01,"783 South St, Seattle, WA 98101" +251597,Flatscreen TV,1,300,09/15/19 06:36,"322 1st St, Boston, MA 02215" +251597,AA Batteries (4-pack),1,3.84,09/15/19 06:36,"322 1st St, Boston, MA 02215" +251598,Lightning Charging Cable,1,14.95,09/07/19 09:07,"935 Walnut St, Boston, MA 02215" +251599,AA Batteries (4-pack),2,3.84,09/10/19 11:45,"186 Cedar St, Boston, MA 02215" +251600,Macbook Pro Laptop,1,1700,09/10/19 22:30,"36 North St, San Francisco, CA 94016" +251601,Google Phone,1,600,09/08/19 12:46,"659 Main St, New York City, NY 10001" +251602,Apple Airpods Headphones,1,150,09/10/19 21:27,"359 Sunset St, Los Angeles, CA 90001" +251603,USB-C Charging Cable,1,11.95,09/08/19 11:08,"712 Hill St, New York City, NY 10001" +251604,USB-C Charging Cable,1,11.95,09/24/19 17:24,"160 Washington St, Seattle, WA 98101" +251605,AAA Batteries (4-pack),1,2.99,09/29/19 18:15,"470 Johnson St, San Francisco, CA 94016" +251606,Wired Headphones,1,11.99,09/29/19 22:06,"142 South St, Dallas, TX 75001" +251607,Bose SoundSport Headphones,1,99.99,09/01/19 10:25,"886 West St, Boston, MA 02215" +251608,AA Batteries (4-pack),1,3.84,09/25/19 10:54,"732 9th St, Atlanta, GA 30301" +251609,Vareebadd Phone,1,400,09/03/19 19:28,"763 Highland St, Seattle, WA 98101" +251610,USB-C Charging Cable,2,11.95,09/28/19 21:38,"844 Meadow St, Portland, OR 97035" +251611,Lightning Charging Cable,1,14.95,09/27/19 12:30,"349 River St, Atlanta, GA 30301" +251612,AAA Batteries (4-pack),1,2.99,09/21/19 13:00,"891 Ridge St, Los Angeles, CA 90001" +251613,iPhone,1,700,09/21/19 20:19,"438 Main St, Dallas, TX 75001" +251614,Bose SoundSport Headphones,1,99.99,09/19/19 16:59,"236 West St, New York City, NY 10001" +251615,USB-C Charging Cable,1,11.95,09/26/19 04:59,"974 1st St, Boston, MA 02215" +251616,Wired Headphones,1,11.99,09/23/19 07:05,"82 4th St, New York City, NY 10001" +251617,Google Phone,1,600,09/08/19 11:25,"556 Pine St, Los Angeles, CA 90001" +251618,Google Phone,1,600,09/01/19 12:55,"799 South St, Portland, OR 97035" +251619,Bose SoundSport Headphones,1,99.99,09/10/19 09:06,"662 Spruce St, Los Angeles, CA 90001" +251620,Apple Airpods Headphones,1,150,09/06/19 03:06,"252 Main St, Portland, OR 97035" +251621,Apple Airpods Headphones,1,150,09/26/19 16:14,"703 Jackson St, Portland, OR 97035" +251622,27in FHD Monitor,1,149.99,09/28/19 11:21,"87 Ridge St, San Francisco, CA 94016" +251623,Lightning Charging Cable,1,14.95,09/06/19 15:36,"250 Jefferson St, New York City, NY 10001" +251624,Bose SoundSport Headphones,1,99.99,09/30/19 19:04,"605 West St, Seattle, WA 98101" +251625,Lightning Charging Cable,3,14.95,09/01/19 11:29,"567 Highland St, San Francisco, CA 94016" +251626,AA Batteries (4-pack),3,3.84,09/25/19 05:35,"887 Lake St, San Francisco, CA 94016" +251627,Wired Headphones,1,11.99,09/21/19 12:17,"900 12th St, Boston, MA 02215" +251628,27in FHD Monitor,1,149.99,09/19/19 09:08,"646 Meadow St, New York City, NY 10001" +251629,27in 4K Gaming Monitor,1,389.99,09/30/19 15:52,"258 Center St, San Francisco, CA 94016" +251630,USB-C Charging Cable,1,11.95,09/25/19 19:03,"649 Ridge St, Los Angeles, CA 90001" +251631,Bose SoundSport Headphones,1,99.99,09/16/19 00:10,"918 River St, Dallas, TX 75001" +251632,Macbook Pro Laptop,1,1700,09/05/19 23:09,"661 9th St, San Francisco, CA 94016" +251633,AA Batteries (4-pack),1,3.84,09/30/19 19:29,"302 Forest St, San Francisco, CA 94016" +251634,Lightning Charging Cable,1,14.95,09/23/19 11:13,"685 10th St, San Francisco, CA 94016" +251635,AA Batteries (4-pack),1,3.84,09/07/19 14:22,"51 Jackson St, Los Angeles, CA 90001" +251636,AAA Batteries (4-pack),1,2.99,09/15/19 20:01,"672 Meadow St, Los Angeles, CA 90001" +251637,USB-C Charging Cable,1,11.95,09/27/19 13:13,"59 10th St, New York City, NY 10001" +251638,AA Batteries (4-pack),1,3.84,09/14/19 12:40,"787 Jackson St, New York City, NY 10001" +251638,AA Batteries (4-pack),2,3.84,09/14/19 12:40,"787 Jackson St, New York City, NY 10001" +251639,AAA Batteries (4-pack),1,2.99,09/11/19 15:41,"698 Center St, San Francisco, CA 94016" +251640,Bose SoundSport Headphones,1,99.99,09/11/19 14:50,"416 8th St, Seattle, WA 98101" +251641,iPhone,1,700,09/29/19 09:42,"356 Willow St, Los Angeles, CA 90001" +251642,Lightning Charging Cable,1,14.95,09/04/19 14:05,"647 Jefferson St, Atlanta, GA 30301" +251643,AAA Batteries (4-pack),4,2.99,09/30/19 10:23,"19 2nd St, Los Angeles, CA 90001" +251644,Lightning Charging Cable,1,14.95,09/05/19 13:51,"580 Lake St, San Francisco, CA 94016" +251645,Lightning Charging Cable,1,14.95,09/15/19 09:43,"243 2nd St, San Francisco, CA 94016" +251645,Wired Headphones,1,11.99,09/15/19 09:43,"243 2nd St, San Francisco, CA 94016" +251646,34in Ultrawide Monitor,1,379.99,09/20/19 12:37,"934 Center St, Dallas, TX 75001" +251647,Wired Headphones,1,11.99,09/12/19 18:29,"126 1st St, San Francisco, CA 94016" +251648,27in FHD Monitor,1,149.99,09/10/19 23:40,"421 Center St, Seattle, WA 98101" +251649,Lightning Charging Cable,1,14.95,09/14/19 19:18,"575 Elm St, Dallas, TX 75001" +251650,27in FHD Monitor,1,149.99,09/15/19 18:35,"692 8th St, Dallas, TX 75001" +251651,ThinkPad Laptop,1,999.99,09/10/19 15:33,"362 West St, San Francisco, CA 94016" +251652,AA Batteries (4-pack),1,3.84,09/26/19 20:26,"679 1st St, Atlanta, GA 30301" +251653,USB-C Charging Cable,2,11.95,09/11/19 08:47,"689 Jefferson St, Atlanta, GA 30301" +251654,Apple Airpods Headphones,1,150,09/22/19 20:01,"544 South St, Atlanta, GA 30301" +251655,Lightning Charging Cable,1,14.95,09/07/19 17:29,"731 Lincoln St, Portland, OR 97035" +251656,Flatscreen TV,1,300,09/29/19 19:35,"508 2nd St, Los Angeles, CA 90001" +251657,AAA Batteries (4-pack),1,2.99,09/24/19 13:24,"523 West St, San Francisco, CA 94016" +251658,Lightning Charging Cable,1,14.95,09/10/19 06:29,"965 Highland St, Boston, MA 02215" +251659,Bose SoundSport Headphones,1,99.99,09/22/19 18:13,"131 2nd St, Austin, TX 73301" +251660,27in FHD Monitor,1,149.99,09/11/19 11:53,"875 Hickory St, Atlanta, GA 30301" +251661,Macbook Pro Laptop,1,1700,09/22/19 17:57,"573 Washington St, New York City, NY 10001" +251662,Bose SoundSport Headphones,1,99.99,09/23/19 20:58,"386 5th St, New York City, NY 10001" +251663,AA Batteries (4-pack),2,3.84,09/07/19 14:25,"734 1st St, San Francisco, CA 94016" +251664,AAA Batteries (4-pack),1,2.99,09/24/19 12:15,"328 Lincoln St, Boston, MA 02215" +251665,Bose SoundSport Headphones,1,99.99,09/11/19 11:41,"930 Elm St, Boston, MA 02215" +251666,USB-C Charging Cable,1,11.95,09/07/19 16:29,"39 Pine St, New York City, NY 10001" +251667,AAA Batteries (4-pack),1,2.99,09/29/19 14:58,"2 14th St, Los Angeles, CA 90001" +251668,Wired Headphones,1,11.99,09/09/19 19:31,"197 North St, Portland, OR 97035" +251669,LG Dryer,1,600.0,09/22/19 08:06,"795 Hickory St, San Francisco, CA 94016" +251670,Bose SoundSport Headphones,1,99.99,09/29/19 12:28,"629 Hill St, Atlanta, GA 30301" +251671,27in FHD Monitor,1,149.99,09/26/19 21:58,"999 Jackson St, Dallas, TX 75001" +251672,AA Batteries (4-pack),1,3.84,09/03/19 16:35,"989 Jackson St, Austin, TX 73301" +251673,Wired Headphones,1,11.99,09/16/19 16:12,"842 Cedar St, Dallas, TX 75001" +251673,USB-C Charging Cable,1,11.95,09/16/19 16:12,"842 Cedar St, Dallas, TX 75001" +251674,Wired Headphones,1,11.99,09/26/19 16:02,"327 Adams St, Boston, MA 02215" +251675,Vareebadd Phone,1,400,09/17/19 17:11,"773 Lincoln St, Los Angeles, CA 90001" +251675,USB-C Charging Cable,1,11.95,09/17/19 17:11,"773 Lincoln St, Los Angeles, CA 90001" +251676,iPhone,1,700,09/05/19 21:18,"538 Main St, San Francisco, CA 94016" +251676,Lightning Charging Cable,1,14.95,09/05/19 21:18,"538 Main St, San Francisco, CA 94016" +251677,USB-C Charging Cable,2,11.95,09/27/19 22:03,"999 10th St, Boston, MA 02215" +251678,27in FHD Monitor,1,149.99,09/09/19 09:05,"219 Ridge St, Dallas, TX 75001" +251678,Apple Airpods Headphones,1,150,09/09/19 09:05,"219 Ridge St, Dallas, TX 75001" +251679,Flatscreen TV,1,300,09/14/19 21:40,"59 Washington St, Seattle, WA 98101" +251680,AA Batteries (4-pack),2,3.84,09/01/19 17:15,"750 8th St, Atlanta, GA 30301" +251681,Lightning Charging Cable,1,14.95,09/01/19 22:19,"970 North St, Boston, MA 02215" +251682,27in 4K Gaming Monitor,1,389.99,09/17/19 14:29,"831 10th St, San Francisco, CA 94016" +251683,iPhone,1,700,09/03/19 11:49,"932 South St, Dallas, TX 75001" +251683,Lightning Charging Cable,1,14.95,09/03/19 11:49,"932 South St, Dallas, TX 75001" +251684,27in FHD Monitor,1,149.99,09/19/19 17:26,"925 2nd St, San Francisco, CA 94016" +251685,AA Batteries (4-pack),1,3.84,09/06/19 18:45,"70 Jefferson St, Austin, TX 73301" +251686,AAA Batteries (4-pack),1,2.99,09/28/19 18:12,"346 Johnson St, Seattle, WA 98101" +251687,Lightning Charging Cable,1,14.95,09/03/19 15:55,"280 4th St, Dallas, TX 75001" +251688,Wired Headphones,1,11.99,09/05/19 02:25,"352 Dogwood St, Boston, MA 02215" +251689,USB-C Charging Cable,1,11.95,09/10/19 23:53,"882 Lake St, San Francisco, CA 94016" +251690,Apple Airpods Headphones,1,150,09/21/19 12:31,"243 5th St, Los Angeles, CA 90001" +251691,USB-C Charging Cable,1,11.95,09/20/19 00:08,"440 Hill St, Seattle, WA 98101" +251692,Macbook Pro Laptop,1,1700,09/27/19 07:40,"998 6th St, Seattle, WA 98101" +251693,Macbook Pro Laptop,1,1700,09/09/19 14:13,"893 North St, Boston, MA 02215" +251694,Flatscreen TV,1,300,09/27/19 10:04,"294 Meadow St, Los Angeles, CA 90001" +251695,USB-C Charging Cable,1,11.95,09/14/19 16:56,"533 8th St, Portland, OR 97035" +251696,Vareebadd Phone,1,400,09/13/19 18:28,"596 Hickory St, New York City, NY 10001" +251697,27in FHD Monitor,1,149.99,09/05/19 20:05,"784 Forest St, San Francisco, CA 94016" +251697,AAA Batteries (4-pack),3,2.99,09/05/19 20:05,"784 Forest St, San Francisco, CA 94016" +251698,USB-C Charging Cable,1,11.95,09/12/19 11:21,"588 12th St, Atlanta, GA 30301" +251699,AAA Batteries (4-pack),1,2.99,09/01/19 07:06,"331 10th St, Los Angeles, CA 90001" +251700,AA Batteries (4-pack),2,3.84,09/17/19 11:10,"207 8th St, San Francisco, CA 94016" +251701,Lightning Charging Cable,1,14.95,09/17/19 20:08,"294 Forest St, Atlanta, GA 30301" +251702,Lightning Charging Cable,1,14.95,09/24/19 16:56,"387 4th St, Portland, OR 97035" +251703,AA Batteries (4-pack),1,3.84,09/19/19 20:33,"154 Elm St, Dallas, TX 75001" +251704,Apple Airpods Headphones,1,150,09/03/19 12:13,"105 Hickory St, San Francisco, CA 94016" +251705,AA Batteries (4-pack),1,3.84,09/03/19 16:00,"933 8th St, Boston, MA 02215" +251706,Google Phone,1,600,09/13/19 19:40,"948 Park St, San Francisco, CA 94016" +251707,20in Monitor,1,109.99,09/27/19 11:40,"800 Church St, Dallas, TX 75001" +251708,Bose SoundSport Headphones,1,99.99,09/04/19 14:03,"495 1st St, Seattle, WA 98101" +251709,USB-C Charging Cable,1,11.95,09/26/19 17:29,"175 1st St, San Francisco, CA 94016" +251710,Lightning Charging Cable,1,14.95,09/14/19 09:14,"714 5th St, Dallas, TX 75001" +251711,Apple Airpods Headphones,1,150,09/08/19 21:26,"59 Park St, Dallas, TX 75001" +251712,Vareebadd Phone,1,400,09/16/19 18:08,"181 8th St, Portland, OR 97035" +251713,AAA Batteries (4-pack),1,2.99,09/11/19 15:22,"306 8th St, Los Angeles, CA 90001" +251714,AA Batteries (4-pack),1,3.84,09/27/19 08:55,"897 11th St, San Francisco, CA 94016" +251715,Bose SoundSport Headphones,1,99.99,09/20/19 18:53,"865 Adams St, Atlanta, GA 30301" +251716,Bose SoundSport Headphones,1,99.99,09/18/19 20:16,"799 Meadow St, Austin, TX 73301" +251717,27in 4K Gaming Monitor,1,389.99,09/05/19 18:55,"745 West St, Austin, TX 73301" +251718,Apple Airpods Headphones,1,150,09/29/19 17:58,"529 North St, Atlanta, GA 30301" +251719,Lightning Charging Cable,1,14.95,09/05/19 09:22,"163 Lake St, San Francisco, CA 94016" +251720,Lightning Charging Cable,2,14.95,09/16/19 20:54,"634 2nd St, San Francisco, CA 94016" +251721,Wired Headphones,1,11.99,09/22/19 15:38,"976 Hickory St, San Francisco, CA 94016" +251722,27in FHD Monitor,1,149.99,09/08/19 18:23,"53 South St, Los Angeles, CA 90001" +251723,Bose SoundSport Headphones,1,99.99,09/22/19 11:04,"652 8th St, Boston, MA 02215" +251723,USB-C Charging Cable,1,11.95,09/22/19 11:04,"652 8th St, Boston, MA 02215" +251724,Macbook Pro Laptop,1,1700,09/03/19 17:23,"612 Walnut St, New York City, NY 10001" +251725,AA Batteries (4-pack),2,3.84,09/12/19 12:38,"428 Forest St, Los Angeles, CA 90001" +251726,27in FHD Monitor,1,149.99,09/28/19 22:31,"91 Washington St, New York City, NY 10001" +251727,ThinkPad Laptop,1,999.99,09/14/19 01:23,"969 Elm St, New York City, NY 10001" +251728,Lightning Charging Cable,1,14.95,09/30/19 10:14,"41 1st St, Los Angeles, CA 90001" +251729,27in 4K Gaming Monitor,1,389.99,09/04/19 09:24,"243 Hickory St, Boston, MA 02215" +251730,AA Batteries (4-pack),1,3.84,09/23/19 06:00,"866 Cherry St, Los Angeles, CA 90001" +251731,Bose SoundSport Headphones,1,99.99,09/22/19 01:10,"933 West St, Los Angeles, CA 90001" +251732,Lightning Charging Cable,1,14.95,09/06/19 13:52,"788 Walnut St, Atlanta, GA 30301" +251733,Wired Headphones,1,11.99,09/08/19 19:52,"184 8th St, Boston, MA 02215" +251734,AAA Batteries (4-pack),1,2.99,09/02/19 10:09,"592 Adams St, Atlanta, GA 30301" +251735,AAA Batteries (4-pack),1,2.99,09/25/19 12:29,"942 Church St, Dallas, TX 75001" +251735,Apple Airpods Headphones,1,150,09/25/19 12:29,"942 Church St, Dallas, TX 75001" +251736,USB-C Charging Cable,1,11.95,09/13/19 11:16,"805 Jackson St, Boston, MA 02215" +251737,AA Batteries (4-pack),2,3.84,09/13/19 11:59,"428 Sunset St, San Francisco, CA 94016" +,,,,, +251738,Wired Headphones,1,11.99,09/24/19 16:48,"233 11th St, New York City, NY 10001" +251739,USB-C Charging Cable,1,11.95,09/22/19 19:30,"755 Lincoln St, San Francisco, CA 94016" +251740,AAA Batteries (4-pack),1,2.99,09/05/19 09:25,"920 Cherry St, New York City, NY 10001" +251741,Bose SoundSport Headphones,1,99.99,09/15/19 09:33,"251 Wilson St, New York City, NY 10001" +251742,AA Batteries (4-pack),2,3.84,09/06/19 13:48,"448 Dogwood St, Atlanta, GA 30301" +251743,Wired Headphones,1,11.99,09/09/19 17:54,"78 Highland St, Dallas, TX 75001" +251744,Wired Headphones,2,11.99,09/06/19 16:36,"449 Wilson St, San Francisco, CA 94016" +251745,27in 4K Gaming Monitor,1,389.99,09/25/19 17:22,"605 2nd St, Los Angeles, CA 90001" +251746,Lightning Charging Cable,1,14.95,09/06/19 23:35,"165 South St, San Francisco, CA 94016" +251747,Apple Airpods Headphones,1,150,09/10/19 15:11,"962 Maple St, Los Angeles, CA 90001" +251748,Wired Headphones,1,11.99,09/12/19 09:48,"835 6th St, San Francisco, CA 94016" +251749,Wired Headphones,2,11.99,09/25/19 10:09,"898 2nd St, New York City, NY 10001" +251750,Google Phone,1,600,09/19/19 23:15,"314 12th St, Seattle, WA 98101" +251750,USB-C Charging Cable,1,11.95,09/19/19 23:15,"314 12th St, Seattle, WA 98101" +251750,Wired Headphones,2,11.99,09/19/19 23:15,"314 12th St, Seattle, WA 98101" +251751,Lightning Charging Cable,1,14.95,09/10/19 15:35,"516 Highland St, San Francisco, CA 94016" +251752,AAA Batteries (4-pack),2,2.99,09/25/19 18:42,"579 Church St, Los Angeles, CA 90001" +251753,Flatscreen TV,1,300,09/05/19 17:49,"264 Pine St, Los Angeles, CA 90001" +251754,Wired Headphones,1,11.99,09/20/19 18:18,"447 Highland St, San Francisco, CA 94016" +251755,AAA Batteries (4-pack),3,2.99,09/10/19 12:11,"936 Pine St, Seattle, WA 98101" +251756,AA Batteries (4-pack),1,3.84,09/02/19 14:13,"422 Willow St, Los Angeles, CA 90001" +251757,AAA Batteries (4-pack),1,2.99,09/11/19 08:51,"196 Johnson St, Atlanta, GA 30301" +251757,Apple Airpods Headphones,1,150,09/11/19 08:51,"196 Johnson St, Atlanta, GA 30301" +251758,Bose SoundSport Headphones,1,99.99,09/10/19 19:44,"375 Main St, San Francisco, CA 94016" +251759,AAA Batteries (4-pack),2,2.99,09/27/19 14:43,"193 13th St, San Francisco, CA 94016" +251760,Google Phone,1,600,09/16/19 09:41,"49 Sunset St, San Francisco, CA 94016" +251760,USB-C Charging Cable,1,11.95,09/16/19 09:41,"49 Sunset St, San Francisco, CA 94016" +251761,AA Batteries (4-pack),1,3.84,09/21/19 23:02,"239 Cherry St, New York City, NY 10001" +251762,Apple Airpods Headphones,1,150,09/19/19 08:03,"668 2nd St, Seattle, WA 98101" +251763,Apple Airpods Headphones,1,150,09/13/19 12:56,"874 Adams St, Boston, MA 02215" +251764,Google Phone,1,600,09/08/19 14:34,"955 Park St, Los Angeles, CA 90001" +251764,Bose SoundSport Headphones,1,99.99,09/08/19 14:34,"955 Park St, Los Angeles, CA 90001" +251765,Lightning Charging Cable,1,14.95,09/25/19 21:42,"73 9th St, San Francisco, CA 94016" +251766,Bose SoundSport Headphones,1,99.99,09/26/19 13:15,"824 Meadow St, Boston, MA 02215" +251767,Flatscreen TV,1,300,09/26/19 23:21,"614 Johnson St, Los Angeles, CA 90001" +251768,USB-C Charging Cable,1,11.95,09/22/19 14:57,"724 Walnut St, Los Angeles, CA 90001" +251769,USB-C Charging Cable,1,11.95,09/28/19 18:10,"582 Highland St, Seattle, WA 98101" +251770,AA Batteries (4-pack),1,3.84,09/28/19 09:54,"222 Wilson St, Portland, OR 97035" +251771,AAA Batteries (4-pack),1,2.99,09/27/19 14:44,"867 South St, San Francisco, CA 94016" +251772,Bose SoundSport Headphones,1,99.99,09/12/19 20:15,"282 Cherry St, Atlanta, GA 30301" +251773,AAA Batteries (4-pack),1,2.99,09/22/19 13:45,"917 Jackson St, Atlanta, GA 30301" +251774,AA Batteries (4-pack),1,3.84,09/28/19 15:43,"837 Sunset St, Dallas, TX 75001" +251775,AAA Batteries (4-pack),2,2.99,09/20/19 21:41,"314 Hill St, Los Angeles, CA 90001" +251776,Bose SoundSport Headphones,1,99.99,09/04/19 10:22,"708 14th St, Los Angeles, CA 90001" +251777,AAA Batteries (4-pack),2,2.99,09/19/19 20:43,"827 Wilson St, Seattle, WA 98101" +251778,AA Batteries (4-pack),2,3.84,09/10/19 13:21,"767 11th St, Portland, OR 97035" +251779,Flatscreen TV,1,300,09/22/19 19:00,"858 8th St, Boston, MA 02215" +251780,iPhone,1,700,09/20/19 21:37,"349 North St, San Francisco, CA 94016" +251781,Bose SoundSport Headphones,1,99.99,09/02/19 00:22,"343 Willow St, Atlanta, GA 30301" +251782,Macbook Pro Laptop,1,1700,09/13/19 13:26,"947 4th St, New York City, NY 10001" +251783,USB-C Charging Cable,1,11.95,09/22/19 21:15,"796 Maple St, San Francisco, CA 94016" +251784,20in Monitor,1,109.99,09/15/19 20:23,"93 Walnut St, Seattle, WA 98101" +251785,USB-C Charging Cable,1,11.95,09/01/19 22:08,"998 Ridge St, Seattle, WA 98101" +251786,iPhone,1,700,09/21/19 13:59,"227 Main St, Atlanta, GA 30301" +251787,Flatscreen TV,1,300,09/20/19 18:38,"264 9th St, Austin, TX 73301" +251788,AAA Batteries (4-pack),1,2.99,09/19/19 16:51,"529 North St, Boston, MA 02215" +251789,AAA Batteries (4-pack),1,2.99,09/28/19 09:37,"417 Center St, Boston, MA 02215" +251790,Google Phone,1,600,09/15/19 19:36,"322 9th St, Austin, TX 73301" +251790,Bose SoundSport Headphones,1,99.99,09/15/19 19:36,"322 9th St, Austin, TX 73301" +251791,AA Batteries (4-pack),1,3.84,09/08/19 07:44,"15 7th St, Los Angeles, CA 90001" +251792,Lightning Charging Cable,1,14.95,09/09/19 14:51,"486 7th St, San Francisco, CA 94016" +251793,AAA Batteries (4-pack),1,2.99,09/08/19 17:25,"840 Meadow St, San Francisco, CA 94016" +251794,AA Batteries (4-pack),1,3.84,09/24/19 18:24,"76 Willow St, New York City, NY 10001" +251795,AA Batteries (4-pack),1,3.84,09/30/19 15:52,"18 Lake St, Los Angeles, CA 90001" +251796,Google Phone,1,600,09/27/19 10:12,"743 14th St, Los Angeles, CA 90001" +251797,Bose SoundSport Headphones,1,99.99,09/30/19 17:11,"160 Jackson St, Los Angeles, CA 90001" +251798,Apple Airpods Headphones,1,150,09/12/19 09:52,"660 North St, Boston, MA 02215" +251799,AAA Batteries (4-pack),8,2.99,09/17/19 20:13,"323 Spruce St, Seattle, WA 98101" +251800,27in FHD Monitor,1,149.99,09/09/19 18:35,"138 Lake St, Dallas, TX 75001" +251801,Lightning Charging Cable,1,14.95,09/22/19 15:08,"664 14th St, New York City, NY 10001" +251802,USB-C Charging Cable,1,11.95,09/16/19 18:41,"136 North St, Atlanta, GA 30301" +251803,20in Monitor,1,109.99,09/02/19 09:56,"548 Cherry St, Los Angeles, CA 90001" +251804,AAA Batteries (4-pack),1,2.99,09/16/19 05:16,"458 Highland St, Atlanta, GA 30301" +251805,Bose SoundSport Headphones,1,99.99,09/07/19 21:20,"510 8th St, Los Angeles, CA 90001" +251806,iPhone,1,700,09/09/19 14:22,"241 Lakeview St, San Francisco, CA 94016" +251807,AAA Batteries (4-pack),2,2.99,09/25/19 19:29,"720 Lincoln St, Los Angeles, CA 90001" +251808,34in Ultrawide Monitor,1,379.99,09/03/19 15:04,"292 1st St, Seattle, WA 98101" +251809,AA Batteries (4-pack),1,3.84,09/12/19 20:06,"670 Hill St, Portland, OR 97035" +251810,Macbook Pro Laptop,1,1700,09/28/19 19:11,"568 North St, Los Angeles, CA 90001" +251811,USB-C Charging Cable,1,11.95,09/17/19 02:44,"754 9th St, New York City, NY 10001" +251812,Google Phone,1,600,09/14/19 15:52,"47 Wilson St, Los Angeles, CA 90001" +251812,Wired Headphones,1,11.99,09/14/19 15:52,"47 Wilson St, Los Angeles, CA 90001" +251813,ThinkPad Laptop,1,999.99,09/01/19 23:00,"676 North St, Boston, MA 02215" +251814,Lightning Charging Cable,1,14.95,09/10/19 01:17,"22 Center St, San Francisco, CA 94016" +251815,AA Batteries (4-pack),1,3.84,09/12/19 12:33,"235 Ridge St, San Francisco, CA 94016" +251816,Flatscreen TV,1,300,09/21/19 06:06,"237 5th St, San Francisco, CA 94016" +251817,AA Batteries (4-pack),1,3.84,09/06/19 17:13,"937 Lake St, Austin, TX 73301" +251818,USB-C Charging Cable,1,11.95,09/09/19 02:29,"299 Cedar St, Dallas, TX 75001" +251819,iPhone,1,700,09/19/19 12:06,"85 Center St, San Francisco, CA 94016" +251819,Lightning Charging Cable,1,14.95,09/19/19 12:06,"85 Center St, San Francisco, CA 94016" +251819,Apple Airpods Headphones,1,150,09/19/19 12:06,"85 Center St, San Francisco, CA 94016" +251820,Wired Headphones,1,11.99,09/19/19 11:58,"532 Ridge St, Los Angeles, CA 90001" +251821,AAA Batteries (4-pack),1,2.99,09/17/19 21:51,"63 13th St, Los Angeles, CA 90001" +251822,Lightning Charging Cable,1,14.95,09/21/19 00:27,"35 Sunset St, Portland, ME 04101" +251823,Apple Airpods Headphones,1,150,09/05/19 19:52,"176 Hickory St, Portland, OR 97035" +251824,AAA Batteries (4-pack),1,2.99,09/11/19 18:09,"76 Hickory St, New York City, NY 10001" +251825,USB-C Charging Cable,1,11.95,09/28/19 18:24,"989 Cedar St, New York City, NY 10001" +251826,iPhone,1,700,09/20/19 00:29,"475 Ridge St, Dallas, TX 75001" +251826,Lightning Charging Cable,1,14.95,09/20/19 00:29,"475 Ridge St, Dallas, TX 75001" +251827,Wired Headphones,1,11.99,09/25/19 12:14,"443 10th St, Atlanta, GA 30301" +251828,Wired Headphones,1,11.99,09/12/19 11:50,"561 Chestnut St, Austin, TX 73301" +251829,AA Batteries (4-pack),3,3.84,09/07/19 19:18,"561 4th St, San Francisco, CA 94016" +251830,27in FHD Monitor,1,149.99,09/11/19 21:41,"248 Meadow St, Los Angeles, CA 90001" +251831,USB-C Charging Cable,1,11.95,09/07/19 12:06,"849 4th St, Los Angeles, CA 90001" +251832,AAA Batteries (4-pack),1,2.99,09/04/19 07:34,"364 West St, San Francisco, CA 94016" +251833,AA Batteries (4-pack),1,3.84,09/15/19 13:33,"106 Adams St, San Francisco, CA 94016" +251834,Lightning Charging Cable,1,14.95,09/03/19 10:04,"696 Maple St, Los Angeles, CA 90001" +251835,Bose SoundSport Headphones,1,99.99,09/20/19 14:18,"295 Cedar St, San Francisco, CA 94016" +251836,27in 4K Gaming Monitor,1,389.99,09/01/19 11:40,"702 Lakeview St, Seattle, WA 98101" +251837,AAA Batteries (4-pack),6,2.99,09/10/19 10:02,"325 Wilson St, Boston, MA 02215" +251838,Lightning Charging Cable,1,14.95,09/25/19 16:19,"436 9th St, San Francisco, CA 94016" +251839,Lightning Charging Cable,2,14.95,09/17/19 20:01,"36 Park St, Portland, ME 04101" +251840,Apple Airpods Headphones,1,150,09/05/19 13:33,"400 River St, Atlanta, GA 30301" +251841,27in FHD Monitor,1,149.99,09/23/19 19:55,"685 11th St, Atlanta, GA 30301" +251842,USB-C Charging Cable,1,11.95,09/18/19 21:39,"718 Elm St, San Francisco, CA 94016" +251843,AAA Batteries (4-pack),1,2.99,09/23/19 11:41,"971 5th St, Seattle, WA 98101" +251844,USB-C Charging Cable,1,11.95,09/30/19 23:01,"646 Madison St, Dallas, TX 75001" +251845,Wired Headphones,1,11.99,09/07/19 10:37,"855 Chestnut St, Dallas, TX 75001" +251846,Bose SoundSport Headphones,1,99.99,09/26/19 16:11,"384 5th St, Portland, OR 97035" +251847,Bose SoundSport Headphones,1,99.99,09/16/19 14:53,"978 Lake St, Los Angeles, CA 90001" +251848,Lightning Charging Cable,1,14.95,09/08/19 17:42,"511 West St, Boston, MA 02215" +251849,AAA Batteries (4-pack),1,2.99,09/23/19 03:29,"866 Lincoln St, New York City, NY 10001" +251850,AA Batteries (4-pack),3,3.84,09/07/19 10:35,"776 Hickory St, Dallas, TX 75001" +251851,USB-C Charging Cable,1,11.95,09/26/19 09:24,"196 South St, New York City, NY 10001" +251852,AAA Batteries (4-pack),2,2.99,09/05/19 07:31,"653 Johnson St, Los Angeles, CA 90001" +251853,USB-C Charging Cable,1,11.95,09/09/19 11:47,"206 Willow St, New York City, NY 10001" +251854,AA Batteries (4-pack),3,3.84,09/08/19 17:48,"315 Main St, Atlanta, GA 30301" +251855,Wired Headphones,1,11.99,09/01/19 15:04,"67 Walnut St, Seattle, WA 98101" +251856,ThinkPad Laptop,1,999.99,09/29/19 22:51,"671 Lakeview St, Portland, OR 97035" +251857,AA Batteries (4-pack),1,3.84,09/17/19 15:36,"190 Washington St, Dallas, TX 75001" +251858,Wired Headphones,1,11.99,09/19/19 23:16,"550 Park St, Los Angeles, CA 90001" +251859,Apple Airpods Headphones,1,150,09/28/19 17:31,"425 Willow St, Portland, OR 97035" +251860,27in FHD Monitor,1,149.99,09/18/19 15:21,"904 8th St, Boston, MA 02215" +251861,LG Dryer,1,600.0,09/05/19 09:13,"177 8th St, Portland, OR 97035" +251862,AA Batteries (4-pack),2,3.84,09/16/19 15:35,"766 12th St, San Francisco, CA 94016" +251863,Apple Airpods Headphones,1,150,09/03/19 18:22,"869 Walnut St, San Francisco, CA 94016" +251864,Apple Airpods Headphones,1,150,09/11/19 16:07,"696 7th St, New York City, NY 10001" +251865,27in FHD Monitor,1,149.99,09/04/19 20:25,"687 Dogwood St, San Francisco, CA 94016" +251866,AA Batteries (4-pack),2,3.84,09/15/19 22:27,"723 Johnson St, Boston, MA 02215" +251867,34in Ultrawide Monitor,1,379.99,09/19/19 17:55,"838 Ridge St, New York City, NY 10001" +251868,Wired Headphones,1,11.99,09/20/19 10:49,"361 Forest St, San Francisco, CA 94016" +251869,USB-C Charging Cable,1,11.95,09/24/19 14:42,"369 Lincoln St, Los Angeles, CA 90001" +251870,AAA Batteries (4-pack),2,2.99,09/05/19 16:20,"901 5th St, Dallas, TX 75001" +251871,34in Ultrawide Monitor,1,379.99,09/07/19 08:15,"153 Meadow St, Portland, ME 04101" +251872,AAA Batteries (4-pack),1,2.99,09/09/19 14:13,"378 Hill St, Boston, MA 02215" +251873,Lightning Charging Cable,2,14.95,09/03/19 11:00,"282 5th St, San Francisco, CA 94016" +251874,Wired Headphones,1,11.99,09/22/19 11:48,"491 Hill St, Los Angeles, CA 90001" +251875,Lightning Charging Cable,1,14.95,09/24/19 13:16,"435 Lake St, Portland, OR 97035" +251876,34in Ultrawide Monitor,1,379.99,09/07/19 14:29,"403 Washington St, Seattle, WA 98101" +251877,AAA Batteries (4-pack),1,2.99,09/13/19 13:46,"630 Wilson St, San Francisco, CA 94016" +251878,Google Phone,1,600,09/07/19 10:23,"415 2nd St, Dallas, TX 75001" +251879,Bose SoundSport Headphones,1,99.99,09/25/19 01:05,"466 South St, Boston, MA 02215" +251880,27in 4K Gaming Monitor,1,389.99,09/02/19 11:38,"109 Cedar St, Seattle, WA 98101" +251881,ThinkPad Laptop,1,999.99,09/28/19 11:36,"961 Johnson St, San Francisco, CA 94016" +251882,20in Monitor,1,109.99,09/05/19 17:52,"613 Lake St, Boston, MA 02215" +251883,Google Phone,1,600,09/06/19 21:31,"918 12th St, Seattle, WA 98101" +251884,iPhone,1,700,09/17/19 18:37,"329 Madison St, Portland, OR 97035" +251885,27in FHD Monitor,1,149.99,09/19/19 06:48,"708 Center St, New York City, NY 10001" +251886,Google Phone,1,600,09/21/19 15:09,"409 1st St, Boston, MA 02215" +251887,20in Monitor,1,109.99,09/21/19 10:42,"55 Jackson St, Seattle, WA 98101" +251888,Apple Airpods Headphones,1,150,09/07/19 12:47,"934 Lakeview St, Atlanta, GA 30301" +,,,,, +251889,Lightning Charging Cable,2,14.95,09/04/19 15:51,"77 4th St, San Francisco, CA 94016" +251890,Lightning Charging Cable,1,14.95,09/27/19 12:07,"725 1st St, San Francisco, CA 94016" +251891,AAA Batteries (4-pack),1,2.99,09/29/19 22:02,"501 Cherry St, New York City, NY 10001" +251892,AA Batteries (4-pack),1,3.84,09/12/19 19:55,"639 Dogwood St, Portland, OR 97035" +251893,34in Ultrawide Monitor,1,379.99,09/27/19 12:17,"954 Hill St, Portland, OR 97035" +251894,Google Phone,1,600,09/23/19 19:30,"168 West St, Boston, MA 02215" +251894,USB-C Charging Cable,1,11.95,09/23/19 19:30,"168 West St, Boston, MA 02215" +251894,Wired Headphones,2,11.99,09/23/19 19:30,"168 West St, Boston, MA 02215" +251895,Vareebadd Phone,1,400,09/16/19 20:26,"818 Center St, San Francisco, CA 94016" +251896,Lightning Charging Cable,1,14.95,09/12/19 11:41,"261 Park St, Portland, OR 97035" +251897,ThinkPad Laptop,1,999.99,09/13/19 06:22,"494 Jackson St, Los Angeles, CA 90001" +251898,USB-C Charging Cable,1,11.95,09/06/19 08:08,"301 Chestnut St, Los Angeles, CA 90001" +251899,Apple Airpods Headphones,1,150,09/05/19 14:15,"677 Highland St, Portland, OR 97035" +251900,Lightning Charging Cable,1,14.95,09/20/19 11:10,"481 Chestnut St, New York City, NY 10001" +251901,34in Ultrawide Monitor,1,379.99,09/16/19 15:40,"784 Adams St, Los Angeles, CA 90001" +251902,Wired Headphones,1,11.99,09/28/19 13:29,"524 7th St, Seattle, WA 98101" +251903,Vareebadd Phone,1,400,09/20/19 07:26,"550 Dogwood St, Los Angeles, CA 90001" +251904,AA Batteries (4-pack),1,3.84,09/19/19 17:29,"533 Cedar St, Portland, OR 97035" +251905,Bose SoundSport Headphones,1,99.99,09/04/19 20:19,"569 Hickory St, Seattle, WA 98101" +251906,Wired Headphones,1,11.99,09/24/19 12:47,"612 Chestnut St, Los Angeles, CA 90001" +251907,Lightning Charging Cable,2,14.95,09/08/19 15:13,"79 5th St, Seattle, WA 98101" +251908,Bose SoundSport Headphones,1,99.99,09/02/19 13:26,"584 Hickory St, Boston, MA 02215" +251909,Macbook Pro Laptop,1,1700,09/28/19 17:11,"900 West St, Boston, MA 02215" +251910,Bose SoundSport Headphones,1,99.99,09/06/19 17:49,"142 Sunset St, Dallas, TX 75001" +251911,Bose SoundSport Headphones,1,99.99,09/14/19 10:28,"363 Elm St, Seattle, WA 98101" +251912,Apple Airpods Headphones,1,150,09/11/19 15:22,"567 4th St, Los Angeles, CA 90001" +251913,Wired Headphones,1,11.99,09/30/19 21:41,"530 8th St, Boston, MA 02215" +251914,Lightning Charging Cable,1,14.95,09/18/19 16:33,"834 12th St, Dallas, TX 75001" +251915,AAA Batteries (4-pack),1,2.99,09/12/19 16:58,"567 11th St, San Francisco, CA 94016" +251916,27in 4K Gaming Monitor,1,389.99,09/09/19 12:34,"133 Church St, Seattle, WA 98101" +251917,Apple Airpods Headphones,1,150,09/12/19 20:58,"751 11th St, Atlanta, GA 30301" +251918,Lightning Charging Cable,1,14.95,09/18/19 20:48,"145 14th St, Boston, MA 02215" +251919,AA Batteries (4-pack),1,3.84,09/15/19 15:35,"644 Cherry St, Portland, OR 97035" +251920,AAA Batteries (4-pack),1,2.99,09/28/19 20:11,"369 Lake St, Los Angeles, CA 90001" +251921,Bose SoundSport Headphones,1,99.99,09/13/19 09:51,"959 8th St, Boston, MA 02215" +251922,Bose SoundSport Headphones,1,99.99,09/24/19 00:16,"271 North St, San Francisco, CA 94016" +251923,Apple Airpods Headphones,1,150,09/09/19 20:56,"615 Pine St, San Francisco, CA 94016" +251924,AA Batteries (4-pack),1,3.84,09/22/19 09:26,"698 Pine St, Atlanta, GA 30301" +251925,AA Batteries (4-pack),1,3.84,09/06/19 15:46,"783 Wilson St, San Francisco, CA 94016" +251926,Wired Headphones,1,11.99,09/18/19 21:37,"780 West St, Portland, ME 04101" +251927,USB-C Charging Cable,1,11.95,09/30/19 08:11,"536 Forest St, Atlanta, GA 30301" +251928,Wired Headphones,1,11.99,09/22/19 04:43,"574 Wilson St, San Francisco, CA 94016" +251929,Lightning Charging Cable,1,14.95,09/16/19 21:58,"907 Wilson St, San Francisco, CA 94016" +251930,AA Batteries (4-pack),1,3.84,09/26/19 17:57,"558 13th St, Seattle, WA 98101" +251931,AAA Batteries (4-pack),2,2.99,09/29/19 15:59,"561 Sunset St, Boston, MA 02215" +251932,USB-C Charging Cable,1,11.95,09/10/19 14:59,"667 1st St, San Francisco, CA 94016" +251933,AA Batteries (4-pack),1,3.84,09/14/19 15:09,"407 Washington St, New York City, NY 10001" +251934,27in 4K Gaming Monitor,1,389.99,09/14/19 18:36,"417 12th St, San Francisco, CA 94016" +251935,ThinkPad Laptop,1,999.99,09/30/19 10:15,"380 6th St, Dallas, TX 75001" +251936,Apple Airpods Headphones,1,150,09/03/19 18:00,"22 Maple St, San Francisco, CA 94016" +251937,Lightning Charging Cable,1,14.95,09/01/19 16:28,"765 9th St, San Francisco, CA 94016" +251938,AA Batteries (4-pack),1,3.84,09/22/19 23:59,"138 Cherry St, San Francisco, CA 94016" +251939,Lightning Charging Cable,1,14.95,09/17/19 19:51,"265 Maple St, Austin, TX 73301" +251940,USB-C Charging Cable,1,11.95,09/14/19 05:23,"306 Adams St, Portland, OR 97035" +251941,27in 4K Gaming Monitor,1,389.99,09/24/19 06:53,"401 7th St, San Francisco, CA 94016" +251942,AAA Batteries (4-pack),1,2.99,09/07/19 12:00,"545 4th St, Dallas, TX 75001" +251943,Bose SoundSport Headphones,1,99.99,09/14/19 18:21,"524 Ridge St, Portland, OR 97035" +251944,20in Monitor,1,109.99,09/10/19 19:44,"912 River St, Portland, OR 97035" +251945,AA Batteries (4-pack),1,3.84,09/25/19 12:21,"554 Walnut St, New York City, NY 10001" +251946,Flatscreen TV,1,300,09/21/19 02:02,"787 1st St, Atlanta, GA 30301" +251947,20in Monitor,1,109.99,09/19/19 18:02,"592 Spruce St, Los Angeles, CA 90001" +251948,Flatscreen TV,1,300,09/23/19 10:02,"441 Jackson St, Los Angeles, CA 90001" +251949,34in Ultrawide Monitor,1,379.99,09/19/19 15:27,"290 7th St, Portland, ME 04101" +251950,Macbook Pro Laptop,1,1700,09/06/19 18:46,"103 Lakeview St, San Francisco, CA 94016" +251951,Apple Airpods Headphones,1,150,09/10/19 21:44,"653 River St, Los Angeles, CA 90001" +251952,27in 4K Gaming Monitor,1,389.99,09/02/19 11:09,"29 Cherry St, New York City, NY 10001" +251953,AAA Batteries (4-pack),1,2.99,09/21/19 18:43,"818 9th St, New York City, NY 10001" +251954,iPhone,1,700,09/17/19 18:17,"731 10th St, San Francisco, CA 94016" +251955,27in 4K Gaming Monitor,1,389.99,09/17/19 16:42,"599 Jackson St, Boston, MA 02215" +251956,AA Batteries (4-pack),1,3.84,09/30/19 15:40,"753 Park St, Seattle, WA 98101" +251957,AAA Batteries (4-pack),1,2.99,09/09/19 13:08,"876 Walnut St, Los Angeles, CA 90001" +251958,Flatscreen TV,1,300,09/20/19 15:17,"625 Spruce St, Dallas, TX 75001" +251959,AAA Batteries (4-pack),1,2.99,09/12/19 19:45,"359 Walnut St, Boston, MA 02215" +251960,USB-C Charging Cable,1,11.95,09/17/19 10:14,"767 Willow St, Boston, MA 02215" +251961,AA Batteries (4-pack),1,3.84,09/30/19 20:38,"62 Hickory St, Atlanta, GA 30301" +251962,Lightning Charging Cable,1,14.95,09/02/19 20:20,"479 Walnut St, Seattle, WA 98101" +251963,AA Batteries (4-pack),1,3.84,09/19/19 15:10,"154 Dogwood St, Boston, MA 02215" +251964,Apple Airpods Headphones,1,150,09/30/19 18:45,"474 Chestnut St, Dallas, TX 75001" +251965,Apple Airpods Headphones,1,150,09/29/19 09:05,"362 6th St, Portland, OR 97035" +251966,AAA Batteries (4-pack),1,2.99,09/22/19 12:40,"712 13th St, San Francisco, CA 94016" +251967,27in 4K Gaming Monitor,1,389.99,09/04/19 20:20,"408 Lake St, San Francisco, CA 94016" +251968,AA Batteries (4-pack),1,3.84,09/25/19 21:56,"433 River St, Dallas, TX 75001" +251969,Bose SoundSport Headphones,1,99.99,09/23/19 17:21,"487 Jefferson St, New York City, NY 10001" +251970,Apple Airpods Headphones,1,150,09/17/19 08:08,"216 Madison St, San Francisco, CA 94016" +251971,AA Batteries (4-pack),1,3.84,09/20/19 19:19,"174 Elm St, Seattle, WA 98101" +251972,AAA Batteries (4-pack),1,2.99,09/25/19 13:16,"104 Lakeview St, Los Angeles, CA 90001" +251973,Bose SoundSport Headphones,1,99.99,09/26/19 18:54,"540 North St, Dallas, TX 75001" +251974,AAA Batteries (4-pack),1,2.99,09/23/19 12:20,"788 Sunset St, Dallas, TX 75001" +251975,Apple Airpods Headphones,2,150,09/28/19 19:57,"449 Lake St, Dallas, TX 75001" +251976,Lightning Charging Cable,1,14.95,09/20/19 17:25,"728 Cedar St, New York City, NY 10001" +251977,Bose SoundSport Headphones,1,99.99,09/24/19 18:48,"541 Willow St, San Francisco, CA 94016" +251978,Lightning Charging Cable,1,14.95,09/17/19 13:39,"523 12th St, San Francisco, CA 94016" +251979,USB-C Charging Cable,1,11.95,09/07/19 16:55,"985 Hill St, Seattle, WA 98101" +251980,27in 4K Gaming Monitor,1,389.99,09/22/19 19:31,"909 Adams St, Boston, MA 02215" +251981,USB-C Charging Cable,1,11.95,09/21/19 09:16,"968 10th St, Atlanta, GA 30301" +251982,Apple Airpods Headphones,1,150,09/11/19 09:43,"199 South St, Boston, MA 02215" +251983,Apple Airpods Headphones,1,150,09/18/19 20:57,"806 Willow St, Los Angeles, CA 90001" +251984,Google Phone,1,600,09/10/19 11:51,"693 Elm St, San Francisco, CA 94016" +251985,USB-C Charging Cable,1,11.95,09/22/19 20:15,"803 Willow St, San Francisco, CA 94016" +251986,Google Phone,1,600,09/24/19 19:58,"745 Ridge St, Los Angeles, CA 90001" +251987,Lightning Charging Cable,1,14.95,09/18/19 11:42,"340 13th St, New York City, NY 10001" +251988,AA Batteries (4-pack),1,3.84,09/28/19 16:52,"639 Adams St, Boston, MA 02215" +251989,AA Batteries (4-pack),1,3.84,09/03/19 22:23,"602 1st St, Portland, OR 97035" +251990,AA Batteries (4-pack),4,3.84,09/15/19 07:40,"582 9th St, San Francisco, CA 94016" +251991,Bose SoundSport Headphones,1,99.99,09/02/19 11:24,"101 11th St, Atlanta, GA 30301" +251992,USB-C Charging Cable,1,11.95,09/17/19 09:56,"727 Hickory St, New York City, NY 10001" +251993,Wired Headphones,1,11.99,09/15/19 09:12,"464 Madison St, Portland, OR 97035" +251994,Lightning Charging Cable,1,14.95,09/23/19 20:39,"975 Jackson St, San Francisco, CA 94016" +251995,Bose SoundSport Headphones,1,99.99,09/01/19 09:36,"900 Wilson St, New York City, NY 10001" +251996,Bose SoundSport Headphones,1,99.99,09/27/19 14:03,"907 Elm St, San Francisco, CA 94016" +251997,27in FHD Monitor,1,149.99,09/11/19 21:13,"385 Walnut St, San Francisco, CA 94016" +251998,Wired Headphones,1,11.99,09/05/19 13:00,"942 Dogwood St, Seattle, WA 98101" +251999,Wired Headphones,1,11.99,09/30/19 18:12,"350 Johnson St, Los Angeles, CA 90001" +252000,Apple Airpods Headphones,1,150,09/02/19 21:16,"458 South St, Los Angeles, CA 90001" +252001,Vareebadd Phone,1,400,09/30/19 18:03,"226 Dogwood St, San Francisco, CA 94016" +252001,Bose SoundSport Headphones,1,99.99,09/30/19 18:03,"226 Dogwood St, San Francisco, CA 94016" +252002,Lightning Charging Cable,1,14.95,09/09/19 19:01,"166 9th St, Los Angeles, CA 90001" +252003,ThinkPad Laptop,1,999.99,09/26/19 15:46,"868 Jackson St, Portland, OR 97035" +252004,Apple Airpods Headphones,1,150,09/20/19 20:20,"75 North St, Atlanta, GA 30301" +252005,Apple Airpods Headphones,1,150,09/17/19 15:53,"719 Jefferson St, New York City, NY 10001" +252006,AAA Batteries (4-pack),1,2.99,09/20/19 18:01,"382 6th St, Seattle, WA 98101" +252007,AA Batteries (4-pack),1,3.84,09/24/19 20:03,"11 Walnut St, Portland, OR 97035" +252008,Lightning Charging Cable,2,14.95,09/10/19 18:52,"92 Jefferson St, Los Angeles, CA 90001" +252009,iPhone,1,700,09/22/19 22:52,"242 7th St, San Francisco, CA 94016" +252010,Lightning Charging Cable,1,14.95,09/14/19 09:04,"990 Lake St, Atlanta, GA 30301" +252011,Google Phone,1,600,09/16/19 09:45,"493 Jackson St, Boston, MA 02215" +252012,AA Batteries (4-pack),1,3.84,09/13/19 21:03,"31 Walnut St, Los Angeles, CA 90001" +252013,USB-C Charging Cable,1,11.95,09/11/19 11:16,"144 Meadow St, Atlanta, GA 30301" +252014,ThinkPad Laptop,1,999.99,09/05/19 16:04,"6 Ridge St, Los Angeles, CA 90001" +252015,27in FHD Monitor,1,149.99,09/12/19 15:49,"932 Cedar St, San Francisco, CA 94016" +252016,Apple Airpods Headphones,1,150,09/28/19 15:57,"260 Washington St, Los Angeles, CA 90001" +252017,Lightning Charging Cable,1,14.95,09/06/19 21:04,"744 South St, San Francisco, CA 94016" +252018,Lightning Charging Cable,1,14.95,09/30/19 05:40,"268 2nd St, San Francisco, CA 94016" +252019,Bose SoundSport Headphones,1,99.99,09/11/19 19:59,"378 Adams St, San Francisco, CA 94016" +252020,AA Batteries (4-pack),1,3.84,09/21/19 15:56,"460 Madison St, Seattle, WA 98101" +252021,iPhone,1,700,09/26/19 22:40,"983 Sunset St, Dallas, TX 75001" +252022,Apple Airpods Headphones,1,150,09/22/19 12:34,"747 12th St, Atlanta, GA 30301" +252023,34in Ultrawide Monitor,1,379.99,09/21/19 00:50,"534 7th St, Atlanta, GA 30301" +252024,Apple Airpods Headphones,1,150,09/08/19 21:14,"504 Wilson St, Boston, MA 02215" +252025,USB-C Charging Cable,1,11.95,09/17/19 15:42,"233 Maple St, Los Angeles, CA 90001" +252026,Bose SoundSport Headphones,1,99.99,09/25/19 12:37,"43 Center St, San Francisco, CA 94016" +252027,USB-C Charging Cable,1,11.95,09/01/19 08:04,"875 5th St, New York City, NY 10001" +252028,Apple Airpods Headphones,1,150,09/28/19 10:43,"511 Meadow St, San Francisco, CA 94016" +252029,Bose SoundSport Headphones,1,99.99,09/20/19 11:23,"925 River St, New York City, NY 10001" +252030,Bose SoundSport Headphones,1,99.99,09/03/19 13:12,"829 7th St, New York City, NY 10001" +252031,20in Monitor,1,109.99,09/30/19 13:01,"807 Hickory St, Atlanta, GA 30301" +252032,USB-C Charging Cable,1,11.95,09/25/19 14:19,"549 8th St, Los Angeles, CA 90001" +252033,ThinkPad Laptop,1,999.99,09/30/19 08:49,"574 South St, Atlanta, GA 30301" +252034,AAA Batteries (4-pack),1,2.99,09/20/19 14:27,"265 12th St, Boston, MA 02215" +252035,27in FHD Monitor,1,149.99,09/22/19 09:28,"674 Elm St, New York City, NY 10001" +252036,Lightning Charging Cable,1,14.95,09/27/19 21:10,"409 North St, Dallas, TX 75001" +252037,27in FHD Monitor,1,149.99,09/19/19 14:11,"618 Ridge St, New York City, NY 10001" +252038,Apple Airpods Headphones,1,150,09/07/19 19:02,"318 10th St, New York City, NY 10001" +252038,Wired Headphones,1,11.99,09/07/19 19:02,"318 10th St, New York City, NY 10001" +252039,USB-C Charging Cable,1,11.95,09/25/19 21:28,"984 Highland St, Dallas, TX 75001" +252040,Wired Headphones,2,11.99,09/27/19 18:48,"695 Cedar St, Austin, TX 73301" +252041,34in Ultrawide Monitor,1,379.99,09/05/19 23:44,"673 Lakeview St, Seattle, WA 98101" +252042,Google Phone,1,600,09/01/19 13:35,"807 10th St, San Francisco, CA 94016" +252043,LG Washing Machine,1,600.0,09/19/19 00:59,"481 Lakeview St, Atlanta, GA 30301" +252044,USB-C Charging Cable,1,11.95,09/22/19 18:10,"724 Lakeview St, Atlanta, GA 30301" +252045,Wired Headphones,1,11.99,09/15/19 20:12,"677 Cherry St, San Francisco, CA 94016" +252046,Lightning Charging Cable,1,14.95,09/06/19 21:30,"293 Hickory St, Portland, OR 97035" +252047,AA Batteries (4-pack),1,3.84,09/22/19 04:27,"191 North St, Seattle, WA 98101" +252048,AAA Batteries (4-pack),2,2.99,09/28/19 17:06,"110 14th St, Los Angeles, CA 90001" +252049,ThinkPad Laptop,1,999.99,09/09/19 13:32,"929 Lincoln St, San Francisco, CA 94016" +252050,Bose SoundSport Headphones,1,99.99,09/03/19 14:52,"757 1st St, Atlanta, GA 30301" +252051,27in 4K Gaming Monitor,1,389.99,09/30/19 19:34,"566 Johnson St, San Francisco, CA 94016" +252052,Apple Airpods Headphones,1,150,09/26/19 20:34,"527 Spruce St, New York City, NY 10001" +252053,27in 4K Gaming Monitor,1,389.99,09/19/19 22:45,"307 7th St, Seattle, WA 98101" +252054,Vareebadd Phone,1,400,09/21/19 18:21,"750 11th St, New York City, NY 10001" +252054,Wired Headphones,1,11.99,09/21/19 18:21,"750 11th St, New York City, NY 10001" +252055,Macbook Pro Laptop,1,1700,09/08/19 17:33,"372 South St, New York City, NY 10001" +252056,27in FHD Monitor,1,149.99,09/30/19 18:22,"776 7th St, Los Angeles, CA 90001" +252057,27in FHD Monitor,1,149.99,09/15/19 16:02,"2 Cedar St, Dallas, TX 75001" +252058,Lightning Charging Cable,1,14.95,09/04/19 15:59,"90 4th St, Dallas, TX 75001" +252059,AA Batteries (4-pack),1,3.84,09/26/19 17:03,"867 Meadow St, Dallas, TX 75001" +252060,Wired Headphones,2,11.99,09/09/19 18:18,"582 Lake St, Atlanta, GA 30301" +252061,27in FHD Monitor,1,149.99,09/03/19 12:53,"574 Elm St, San Francisco, CA 94016" +252062,Apple Airpods Headphones,1,150,09/21/19 21:49,"217 4th St, Portland, OR 97035" +252063,ThinkPad Laptop,1,999.99,09/04/19 08:15,"750 Lake St, Portland, OR 97035" +252064,USB-C Charging Cable,1,11.95,09/30/19 13:22,"636 Lakeview St, Dallas, TX 75001" +252065,Vareebadd Phone,1,400,09/15/19 12:30,"611 Forest St, Los Angeles, CA 90001" +252066,Flatscreen TV,1,300,09/29/19 22:09,"408 4th St, New York City, NY 10001" +252067,Lightning Charging Cable,1,14.95,09/03/19 00:27,"980 Cedar St, New York City, NY 10001" +252068,AA Batteries (4-pack),1,3.84,09/18/19 15:47,"843 Church St, Austin, TX 73301" +252069,Flatscreen TV,1,300,09/10/19 11:37,"870 8th St, Seattle, WA 98101" +252070,Lightning Charging Cable,1,14.95,09/17/19 20:33,"506 12th St, Portland, OR 97035" +252071,27in 4K Gaming Monitor,1,389.99,09/17/19 13:06,"958 8th St, Seattle, WA 98101" +252072,Macbook Pro Laptop,1,1700,09/11/19 10:57,"854 Meadow St, Boston, MA 02215" +252073,34in Ultrawide Monitor,1,379.99,09/28/19 22:30,"435 Maple St, Boston, MA 02215" +252074,Bose SoundSport Headphones,1,99.99,09/24/19 12:56,"770 Church St, Los Angeles, CA 90001" +252075,27in 4K Gaming Monitor,1,389.99,09/30/19 11:05,"232 Willow St, Los Angeles, CA 90001" +252076,Wired Headphones,1,11.99,09/11/19 08:03,"743 Jefferson St, Boston, MA 02215" +252077,Lightning Charging Cable,1,14.95,09/29/19 12:50,"657 Lincoln St, Los Angeles, CA 90001" +252078,AAA Batteries (4-pack),2,2.99,09/07/19 08:51,"595 Church St, Los Angeles, CA 90001" +252079,AAA Batteries (4-pack),1,2.99,09/26/19 19:40,"185 Highland St, Seattle, WA 98101" +252080,Apple Airpods Headphones,1,150,09/10/19 17:51,"108 12th St, San Francisco, CA 94016" +252081,USB-C Charging Cable,1,11.95,09/07/19 08:14,"47 Washington St, Boston, MA 02215" +252082,Flatscreen TV,1,300,09/05/19 15:47,"367 Lake St, Los Angeles, CA 90001" +252083,Vareebadd Phone,1,400,09/09/19 14:18,"381 9th St, New York City, NY 10001" +252084,Google Phone,1,600,09/09/19 15:03,"182 South St, Seattle, WA 98101" +252085,AAA Batteries (4-pack),1,2.99,09/06/19 14:27,"590 Chestnut St, Atlanta, GA 30301" +252086,USB-C Charging Cable,1,11.95,09/12/19 23:23,"895 Washington St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +252087,AA Batteries (4-pack),3,3.84,09/07/19 20:32,"332 4th St, Boston, MA 02215" +252088,AAA Batteries (4-pack),1,2.99,09/20/19 11:24,"414 Madison St, Los Angeles, CA 90001" +252089,Lightning Charging Cable,1,14.95,09/01/19 14:19,"421 7th St, San Francisco, CA 94016" +252090,27in 4K Gaming Monitor,1,389.99,09/06/19 10:24,"256 Maple St, Boston, MA 02215" +252090,Wired Headphones,1,11.99,09/06/19 10:24,"256 Maple St, Boston, MA 02215" +252091,Flatscreen TV,1,300,09/24/19 20:57,"737 Walnut St, San Francisco, CA 94016" +252092,AAA Batteries (4-pack),1,2.99,09/05/19 03:36,"444 Lincoln St, Austin, TX 73301" +252093,Macbook Pro Laptop,1,1700,09/18/19 00:30,"56 7th St, San Francisco, CA 94016" +252094,ThinkPad Laptop,1,999.99,09/27/19 12:12,"837 Park St, Boston, MA 02215" +252095,USB-C Charging Cable,1,11.95,09/20/19 14:41,"450 Cherry St, New York City, NY 10001" +252096,AAA Batteries (4-pack),1,2.99,09/12/19 07:45,"137 Maple St, Boston, MA 02215" +252097,27in FHD Monitor,1,149.99,09/26/19 20:11,"253 5th St, Atlanta, GA 30301" +252098,AA Batteries (4-pack),1,3.84,09/22/19 22:03,"989 Highland St, San Francisco, CA 94016" +252099,27in FHD Monitor,1,149.99,09/03/19 20:38,"552 2nd St, Dallas, TX 75001" +252100,Lightning Charging Cable,1,14.95,09/02/19 20:08,"371 Meadow St, Seattle, WA 98101" +252101,iPhone,1,700,09/22/19 11:02,"909 13th St, San Francisco, CA 94016" +252102,Apple Airpods Headphones,1,150,09/22/19 17:24,"138 Walnut St, Los Angeles, CA 90001" +252103,27in 4K Gaming Monitor,1,389.99,09/24/19 19:54,"568 Lakeview St, Dallas, TX 75001" +252104,USB-C Charging Cable,1,11.95,09/19/19 08:53,"125 Adams St, Dallas, TX 75001" +252105,AA Batteries (4-pack),2,3.84,09/16/19 17:00,"707 1st St, New York City, NY 10001" +252106,Wired Headphones,1,11.99,09/18/19 11:47,"653 14th St, New York City, NY 10001" +252107,USB-C Charging Cable,1,11.95,09/15/19 21:11,"595 10th St, San Francisco, CA 94016" +252108,USB-C Charging Cable,1,11.95,09/21/19 17:22,"908 Wilson St, Portland, OR 97035" +252109,Macbook Pro Laptop,1,1700,09/17/19 14:26,"592 South St, New York City, NY 10001" +252110,AA Batteries (4-pack),1,3.84,09/08/19 18:56,"35 Highland St, San Francisco, CA 94016" +,,,,, +252111,Lightning Charging Cable,1,14.95,09/27/19 15:10,"441 Church St, San Francisco, CA 94016" +252112,Wired Headphones,1,11.99,09/21/19 11:46,"401 Park St, New York City, NY 10001" +252113,Wired Headphones,1,11.99,09/20/19 19:10,"634 6th St, San Francisco, CA 94016" +252114,iPhone,1,700,09/29/19 19:15,"920 Ridge St, San Francisco, CA 94016" +252114,Wired Headphones,1,11.99,09/29/19 19:15,"920 Ridge St, San Francisco, CA 94016" +252115,Google Phone,1,600,09/15/19 11:55,"587 Cedar St, New York City, NY 10001" +252115,USB-C Charging Cable,1,11.95,09/15/19 11:55,"587 Cedar St, New York City, NY 10001" +252116,AA Batteries (4-pack),1,3.84,09/27/19 13:16,"109 Lincoln St, New York City, NY 10001" +252117,iPhone,1,700,09/05/19 20:35,"359 12th St, Portland, OR 97035" +252118,Flatscreen TV,1,300,09/22/19 17:02,"659 9th St, Los Angeles, CA 90001" +252119,iPhone,1,700,09/23/19 14:12,"109 Main St, Seattle, WA 98101" +252119,Lightning Charging Cable,1,14.95,09/23/19 14:12,"109 Main St, Seattle, WA 98101" +252119,Wired Headphones,1,11.99,09/23/19 14:12,"109 Main St, Seattle, WA 98101" +252120,Apple Airpods Headphones,1,150,09/16/19 09:54,"248 Wilson St, Portland, OR 97035" +252121,AA Batteries (4-pack),1,3.84,09/02/19 19:37,"753 South St, Austin, TX 73301" +252122,AA Batteries (4-pack),1,3.84,09/14/19 08:39,"329 Lakeview St, San Francisco, CA 94016" +252123,Apple Airpods Headphones,1,150,09/23/19 19:42,"556 12th St, Atlanta, GA 30301" +252124,USB-C Charging Cable,1,11.95,09/22/19 11:33,"416 14th St, Seattle, WA 98101" +252125,Wired Headphones,1,11.99,09/07/19 16:51,"849 Hill St, San Francisco, CA 94016" +252126,Lightning Charging Cable,1,14.95,09/13/19 08:01,"994 1st St, Atlanta, GA 30301" +252127,AA Batteries (4-pack),2,3.84,09/29/19 17:54,"127 7th St, New York City, NY 10001" +252128,27in FHD Monitor,1,149.99,09/22/19 21:49,"929 6th St, San Francisco, CA 94016" +,,,,, +252129,AA Batteries (4-pack),2,3.84,09/05/19 09:56,"733 Lakeview St, San Francisco, CA 94016" +252130,Bose SoundSport Headphones,1,99.99,09/03/19 19:27,"925 Church St, Boston, MA 02215" +252131,AA Batteries (4-pack),1,3.84,09/09/19 18:16,"837 Highland St, Dallas, TX 75001" +252132,Google Phone,1,600,09/30/19 13:33,"506 Walnut St, Boston, MA 02215" +252133,Wired Headphones,1,11.99,09/10/19 08:35,"11 4th St, Los Angeles, CA 90001" +252134,Lightning Charging Cable,1,14.95,09/30/19 23:22,"363 Center St, New York City, NY 10001" +252135,iPhone,1,700,09/09/19 14:59,"171 Lakeview St, San Francisco, CA 94016" +252136,AA Batteries (4-pack),1,3.84,09/19/19 00:27,"55 Pine St, New York City, NY 10001" +252137,Flatscreen TV,1,300,09/01/19 15:55,"147 Main St, Boston, MA 02215" +252138,AA Batteries (4-pack),1,3.84,09/25/19 22:20,"370 Madison St, Los Angeles, CA 90001" +252139,Bose SoundSport Headphones,1,99.99,09/16/19 17:29,"201 13th St, New York City, NY 10001" +252140,ThinkPad Laptop,1,999.99,09/17/19 22:21,"214 Cherry St, Boston, MA 02215" +252141,AAA Batteries (4-pack),1,2.99,09/01/19 18:08,"738 2nd St, San Francisco, CA 94016" +252142,AA Batteries (4-pack),1,3.84,09/30/19 17:13,"229 Hickory St, Boston, MA 02215" +252143,34in Ultrawide Monitor,1,379.99,09/09/19 12:44,"351 10th St, Atlanta, GA 30301" +252144,Lightning Charging Cable,1,14.95,09/12/19 20:22,"881 Pine St, Dallas, TX 75001" +252145,iPhone,1,700,09/08/19 07:57,"695 7th St, Los Angeles, CA 90001" +252146,Flatscreen TV,1,300,09/26/19 12:23,"51 Chestnut St, Atlanta, GA 30301" +252147,27in 4K Gaming Monitor,1,389.99,09/17/19 15:15,"492 River St, San Francisco, CA 94016" +252148,Bose SoundSport Headphones,1,99.99,09/14/19 12:57,"507 Maple St, San Francisco, CA 94016" +252149,Lightning Charging Cable,1,14.95,09/26/19 14:24,"584 Park St, New York City, NY 10001" +252150,iPhone,1,700,09/17/19 08:55,"829 Lake St, Dallas, TX 75001" +252151,USB-C Charging Cable,3,11.95,09/18/19 10:41,"725 Ridge St, Dallas, TX 75001" +252152,Apple Airpods Headphones,1,150,09/30/19 11:35,"933 Washington St, Seattle, WA 98101" +252153,Lightning Charging Cable,1,14.95,09/09/19 22:59,"551 12th St, Portland, OR 97035" +252154,AA Batteries (4-pack),1,3.84,09/25/19 16:35,"99 Cherry St, Los Angeles, CA 90001" +252155,34in Ultrawide Monitor,1,379.99,09/10/19 11:41,"228 Elm St, Atlanta, GA 30301" +252156,Macbook Pro Laptop,1,1700,09/01/19 11:02,"699 Cherry St, Portland, OR 97035" +252156,34in Ultrawide Monitor,1,379.99,09/01/19 11:02,"699 Cherry St, Portland, OR 97035" +252157,Flatscreen TV,1,300,09/25/19 08:18,"760 Cedar St, Los Angeles, CA 90001" +252158,AAA Batteries (4-pack),4,2.99,09/18/19 23:06,"302 4th St, Los Angeles, CA 90001" +252159,20in Monitor,1,109.99,09/01/19 15:38,"721 South St, New York City, NY 10001" +252160,Bose SoundSport Headphones,1,99.99,09/28/19 17:00,"16 South St, Dallas, TX 75001" +252161,Lightning Charging Cable,1,14.95,09/24/19 21:40,"958 Hill St, New York City, NY 10001" +252162,Flatscreen TV,1,300,09/13/19 17:03,"526 4th St, Seattle, WA 98101" +252163,USB-C Charging Cable,1,11.95,09/09/19 20:51,"677 Park St, New York City, NY 10001" +252164,Lightning Charging Cable,1,14.95,09/30/19 21:30,"201 Jefferson St, Los Angeles, CA 90001" +252164,Macbook Pro Laptop,1,1700,09/30/19 21:30,"201 Jefferson St, Los Angeles, CA 90001" +252165,27in 4K Gaming Monitor,1,389.99,09/22/19 11:53,"25 6th St, San Francisco, CA 94016" +252166,Apple Airpods Headphones,1,150,09/14/19 21:11,"800 Walnut St, San Francisco, CA 94016" +252167,iPhone,1,700,09/30/19 10:12,"350 Meadow St, San Francisco, CA 94016" +252168,ThinkPad Laptop,1,999.99,09/24/19 11:58,"400 Chestnut St, New York City, NY 10001" +252169,Lightning Charging Cable,1,14.95,09/30/19 21:34,"422 Wilson St, San Francisco, CA 94016" +252170,USB-C Charging Cable,1,11.95,09/15/19 10:34,"612 Madison St, New York City, NY 10001" +252171,27in FHD Monitor,1,149.99,09/06/19 14:12,"363 Elm St, Seattle, WA 98101" +252172,Wired Headphones,1,11.99,09/21/19 13:20,"148 Sunset St, New York City, NY 10001" +252173,Apple Airpods Headphones,1,150,09/29/19 22:29,"808 5th St, Dallas, TX 75001" +252174,AA Batteries (4-pack),1,3.84,09/16/19 05:05,"303 4th St, Los Angeles, CA 90001" +252175,Lightning Charging Cable,1,14.95,09/23/19 07:58,"963 Ridge St, San Francisco, CA 94016" +252176,AAA Batteries (4-pack),1,2.99,09/01/19 12:03,"441 Lakeview St, New York City, NY 10001" +252177,AA Batteries (4-pack),1,3.84,09/19/19 11:17,"304 Forest St, New York City, NY 10001" +252178,Flatscreen TV,1,300,09/08/19 18:34,"198 North St, Boston, MA 02215" +252179,USB-C Charging Cable,1,11.95,09/30/19 23:23,"550 Madison St, Seattle, WA 98101" +252180,Lightning Charging Cable,1,14.95,09/07/19 01:53,"663 Adams St, Portland, OR 97035" +252181,Lightning Charging Cable,1,14.95,09/17/19 22:32,"462 Jefferson St, Los Angeles, CA 90001" +252182,27in FHD Monitor,1,149.99,09/13/19 18:04,"554 Lake St, San Francisco, CA 94016" +252183,Wired Headphones,1,11.99,09/21/19 13:53,"782 Lake St, San Francisco, CA 94016" +252184,Vareebadd Phone,1,400,09/07/19 17:12,"602 Jackson St, San Francisco, CA 94016" +252185,Lightning Charging Cable,1,14.95,09/07/19 23:23,"750 Walnut St, New York City, NY 10001" +252186,Macbook Pro Laptop,1,1700,09/24/19 19:22,"173 Hickory St, Austin, TX 73301" +252187,20in Monitor,1,109.99,09/14/19 11:08,"536 Dogwood St, Boston, MA 02215" +252188,Bose SoundSport Headphones,1,99.99,09/25/19 17:10,"879 14th St, Portland, OR 97035" +252189,AA Batteries (4-pack),1,3.84,09/07/19 10:42,"981 6th St, Portland, OR 97035" +252190,AAA Batteries (4-pack),1,2.99,09/21/19 20:38,"115 Lakeview St, Seattle, WA 98101" +252191,20in Monitor,1,109.99,09/01/19 18:12,"425 Meadow St, Austin, TX 73301" +252192,Lightning Charging Cable,1,14.95,09/06/19 14:35,"651 Willow St, Los Angeles, CA 90001" +252193,Flatscreen TV,1,300,09/14/19 14:15,"222 8th St, Los Angeles, CA 90001" +252194,Lightning Charging Cable,1,14.95,09/23/19 19:34,"337 Hickory St, Portland, OR 97035" +252195,20in Monitor,1,109.99,09/29/19 20:34,"120 Ridge St, Dallas, TX 75001" +252196,Apple Airpods Headphones,1,150,09/28/19 14:35,"804 Johnson St, Austin, TX 73301" +252197,Wired Headphones,1,11.99,09/08/19 10:20,"941 2nd St, New York City, NY 10001" +252198,AA Batteries (4-pack),2,3.84,09/18/19 15:31,"583 14th St, Atlanta, GA 30301" +252199,Wired Headphones,2,11.99,09/10/19 18:09,"66 Center St, Seattle, WA 98101" +252200,Lightning Charging Cable,1,14.95,09/04/19 23:33,"98 Sunset St, Los Angeles, CA 90001" +252201,Bose SoundSport Headphones,1,99.99,09/30/19 09:56,"246 Forest St, San Francisco, CA 94016" +252202,Lightning Charging Cable,1,14.95,09/19/19 21:05,"519 Chestnut St, Boston, MA 02215" +252203,AA Batteries (4-pack),1,3.84,09/11/19 12:28,"71 8th St, Portland, OR 97035" +252204,34in Ultrawide Monitor,1,379.99,09/26/19 17:47,"146 Pine St, Boston, MA 02215" +252205,USB-C Charging Cable,1,11.95,09/06/19 12:53,"20 8th St, Los Angeles, CA 90001" +252206,Wired Headphones,1,11.99,09/04/19 11:22,"877 Pine St, New York City, NY 10001" +252207,Lightning Charging Cable,1,14.95,09/08/19 20:01,"918 River St, Los Angeles, CA 90001" +252208,20in Monitor,1,109.99,09/21/19 15:40,"381 Meadow St, Dallas, TX 75001" +252209,USB-C Charging Cable,1,11.95,09/12/19 11:49,"524 Jackson St, Austin, TX 73301" +252210,Bose SoundSport Headphones,1,99.99,09/19/19 21:52,"788 Meadow St, Seattle, WA 98101" +252211,USB-C Charging Cable,1,11.95,09/01/19 17:48,"984 2nd St, New York City, NY 10001" +252212,AAA Batteries (4-pack),1,2.99,09/09/19 18:44,"801 Johnson St, Boston, MA 02215" +252213,USB-C Charging Cable,1,11.95,09/21/19 21:07,"10 7th St, Los Angeles, CA 90001" +252214,USB-C Charging Cable,1,11.95,09/16/19 08:04,"682 Highland St, Boston, MA 02215" +252215,iPhone,1,700,09/29/19 07:44,"48 2nd St, San Francisco, CA 94016" +252216,Apple Airpods Headphones,1,150,09/28/19 22:59,"580 Hill St, Boston, MA 02215" +252217,AAA Batteries (4-pack),3,2.99,09/15/19 09:45,"530 Hill St, Boston, MA 02215" +252218,AAA Batteries (4-pack),1,2.99,09/07/19 12:55,"974 West St, Seattle, WA 98101" +252219,Macbook Pro Laptop,1,1700,09/02/19 16:34,"154 Hickory St, New York City, NY 10001" +252220,AA Batteries (4-pack),3,3.84,09/03/19 18:48,"980 14th St, Atlanta, GA 30301" +252221,AAA Batteries (4-pack),2,2.99,09/21/19 20:19,"416 Jefferson St, Los Angeles, CA 90001" +252222,ThinkPad Laptop,1,999.99,09/28/19 09:00,"766 2nd St, New York City, NY 10001" +252223,Lightning Charging Cable,1,14.95,09/06/19 15:48,"34 Chestnut St, Atlanta, GA 30301" +252224,Google Phone,1,600,09/20/19 09:44,"921 South St, New York City, NY 10001" +252225,27in 4K Gaming Monitor,1,389.99,09/20/19 16:32,"175 Spruce St, Los Angeles, CA 90001" +252226,Lightning Charging Cable,1,14.95,09/24/19 22:14,"995 Ridge St, Boston, MA 02215" +252227,Bose SoundSport Headphones,1,99.99,09/20/19 22:49,"238 Chestnut St, Seattle, WA 98101" +252228,34in Ultrawide Monitor,1,379.99,09/09/19 14:31,"905 West St, San Francisco, CA 94016" +252229,iPhone,1,700,09/17/19 11:21,"29 North St, Los Angeles, CA 90001" +252230,Google Phone,1,600,09/06/19 20:59,"161 Maple St, New York City, NY 10001" +252231,Lightning Charging Cable,2,14.95,09/09/19 09:31,"109 8th St, San Francisco, CA 94016" +252232,Apple Airpods Headphones,1,150,09/15/19 16:40,"993 13th St, New York City, NY 10001" +252233,27in FHD Monitor,1,149.99,09/21/19 13:07,"851 Ridge St, Los Angeles, CA 90001" +252234,Wired Headphones,2,11.99,09/10/19 20:58,"387 Spruce St, Austin, TX 73301" +252235,AAA Batteries (4-pack),2,2.99,09/15/19 14:42,"216 Main St, New York City, NY 10001" +252236,AAA Batteries (4-pack),3,2.99,09/27/19 17:05,"967 7th St, Seattle, WA 98101" +252237,27in 4K Gaming Monitor,1,389.99,09/13/19 12:54,"163 Spruce St, Los Angeles, CA 90001" +252238,ThinkPad Laptop,1,999.99,09/18/19 09:58,"244 Lake St, New York City, NY 10001" +252239,Wired Headphones,1,11.99,09/17/19 12:07,"867 11th St, Seattle, WA 98101" +252240,iPhone,1,700,09/03/19 18:49,"367 Willow St, New York City, NY 10001" +252240,Lightning Charging Cable,1,14.95,09/03/19 18:49,"367 Willow St, New York City, NY 10001" +252241,27in FHD Monitor,1,149.99,09/29/19 14:48,"263 Meadow St, Seattle, WA 98101" +252242,ThinkPad Laptop,1,999.99,09/22/19 12:42,"686 Walnut St, San Francisco, CA 94016" +252243,AAA Batteries (4-pack),1,2.99,09/02/19 12:20,"542 Forest St, Los Angeles, CA 90001" +252244,Apple Airpods Headphones,1,150,09/22/19 18:59,"441 Maple St, Austin, TX 73301" +252245,AA Batteries (4-pack),1,3.84,09/20/19 16:59,"266 Cedar St, Austin, TX 73301" +252246,27in FHD Monitor,1,149.99,09/26/19 12:11,"188 Madison St, Boston, MA 02215" +252247,27in FHD Monitor,1,149.99,09/23/19 18:46,"847 Johnson St, New York City, NY 10001" +252248,USB-C Charging Cable,1,11.95,09/08/19 05:01,"491 Willow St, San Francisco, CA 94016" +252249,Macbook Pro Laptop,1,1700,09/02/19 15:53,"957 West St, San Francisco, CA 94016" +252250,Apple Airpods Headphones,1,150,09/27/19 18:10,"12 Hill St, Atlanta, GA 30301" +252251,Apple Airpods Headphones,1,150,09/27/19 19:09,"278 Walnut St, San Francisco, CA 94016" +252252,USB-C Charging Cable,1,11.95,09/12/19 12:47,"387 7th St, Atlanta, GA 30301" +252253,Wired Headphones,1,11.99,09/10/19 19:09,"593 13th St, Los Angeles, CA 90001" +252254,Google Phone,1,600,09/07/19 18:04,"597 Jefferson St, New York City, NY 10001" +252255,USB-C Charging Cable,1,11.95,09/03/19 10:05,"452 11th St, San Francisco, CA 94016" +252256,AA Batteries (4-pack),1,3.84,09/24/19 19:14,"85 7th St, Boston, MA 02215" +252257,Apple Airpods Headphones,1,150,09/26/19 20:27,"349 Willow St, Seattle, WA 98101" +252258,AA Batteries (4-pack),1,3.84,09/15/19 06:55,"566 Church St, Boston, MA 02215" +252259,AA Batteries (4-pack),2,3.84,09/29/19 12:04,"637 6th St, Seattle, WA 98101" +252260,Wired Headphones,1,11.99,09/06/19 19:58,"823 1st St, Austin, TX 73301" +252261,27in 4K Gaming Monitor,1,389.99,09/28/19 13:35,"458 5th St, Atlanta, GA 30301" +252262,Bose SoundSport Headphones,2,99.99,09/20/19 17:15,"159 Meadow St, Portland, OR 97035" +252263,iPhone,1,700,09/20/19 11:57,"472 Park St, Portland, OR 97035" +252264,USB-C Charging Cable,1,11.95,09/20/19 17:17,"130 Highland St, Dallas, TX 75001" +252265,Macbook Pro Laptop,1,1700,09/02/19 18:55,"950 Adams St, New York City, NY 10001" +252266,Lightning Charging Cable,1,14.95,09/15/19 17:43,"54 Pine St, Boston, MA 02215" +252267,Apple Airpods Headphones,1,150,09/16/19 13:58,"89 9th St, Los Angeles, CA 90001" +252268,USB-C Charging Cable,1,11.95,09/06/19 13:47,"577 Spruce St, New York City, NY 10001" +252269,AAA Batteries (4-pack),1,2.99,09/18/19 10:45,"350 Elm St, Portland, ME 04101" +252270,27in 4K Gaming Monitor,1,389.99,09/09/19 21:58,"348 Meadow St, San Francisco, CA 94016" +252271,Apple Airpods Headphones,1,150,09/23/19 00:27,"111 Forest St, San Francisco, CA 94016" +252272,USB-C Charging Cable,1,11.95,09/12/19 08:07,"203 Hill St, Los Angeles, CA 90001" +252273,ThinkPad Laptop,1,999.99,09/27/19 23:27,"935 Hickory St, Atlanta, GA 30301" +252274,Google Phone,1,600,09/06/19 18:30,"238 South St, San Francisco, CA 94016" +252274,USB-C Charging Cable,1,11.95,09/06/19 18:30,"238 South St, San Francisco, CA 94016" +252275,Lightning Charging Cable,1,14.95,09/10/19 12:58,"8 11th St, Boston, MA 02215" +252276,27in 4K Gaming Monitor,1,389.99,09/06/19 08:00,"410 Ridge St, Los Angeles, CA 90001" +252277,Google Phone,1,600,09/24/19 22:00,"940 Hickory St, Atlanta, GA 30301" +252278,Bose SoundSport Headphones,1,99.99,09/18/19 10:12,"308 Adams St, Los Angeles, CA 90001" +,,,,, +252279,USB-C Charging Cable,1,11.95,09/16/19 20:29,"808 Ridge St, Seattle, WA 98101" +252280,Google Phone,1,600,09/22/19 21:23,"301 Cedar St, New York City, NY 10001" +252281,AAA Batteries (4-pack),1,2.99,09/13/19 17:25,"903 7th St, San Francisco, CA 94016" +252282,Lightning Charging Cable,1,14.95,09/07/19 18:32,"523 Park St, New York City, NY 10001" +252283,27in FHD Monitor,1,149.99,09/04/19 09:58,"651 South St, New York City, NY 10001" +252284,Apple Airpods Headphones,1,150,09/18/19 21:41,"265 10th St, Boston, MA 02215" +252285,27in FHD Monitor,1,149.99,09/29/19 20:55,"78 Pine St, Seattle, WA 98101" +252286,iPhone,1,700,09/15/19 15:14,"716 West St, San Francisco, CA 94016" +252286,Wired Headphones,1,11.99,09/15/19 15:14,"716 West St, San Francisco, CA 94016" +252287,27in FHD Monitor,1,149.99,09/24/19 13:19,"768 River St, Los Angeles, CA 90001" +252288,AAA Batteries (4-pack),1,2.99,09/24/19 05:30,"789 South St, Los Angeles, CA 90001" +252289,Bose SoundSport Headphones,1,99.99,09/20/19 17:34,"644 7th St, San Francisco, CA 94016" +252290,34in Ultrawide Monitor,1,379.99,09/26/19 18:17,"616 Forest St, San Francisco, CA 94016" +252291,Bose SoundSport Headphones,1,99.99,09/25/19 06:50,"428 5th St, Los Angeles, CA 90001" +252292,Flatscreen TV,1,300,09/15/19 11:48,"161 Adams St, Los Angeles, CA 90001" +252293,Wired Headphones,1,11.99,09/18/19 11:36,"898 Center St, Boston, MA 02215" +252294,Macbook Pro Laptop,1,1700,09/24/19 16:00,"476 7th St, San Francisco, CA 94016" +252295,AAA Batteries (4-pack),1,2.99,09/17/19 19:04,"229 13th St, Dallas, TX 75001" +252296,Apple Airpods Headphones,1,150,09/23/19 23:18,"541 Highland St, San Francisco, CA 94016" +252297,AA Batteries (4-pack),1,3.84,09/25/19 18:16,"187 Maple St, San Francisco, CA 94016" +252298,Lightning Charging Cable,1,14.95,09/02/19 10:28,"30 Washington St, Boston, MA 02215" +252299,Wired Headphones,1,11.99,09/23/19 11:35,"871 9th St, Dallas, TX 75001" +252300,Macbook Pro Laptop,1,1700,09/20/19 11:16,"233 13th St, San Francisco, CA 94016" +252301,27in FHD Monitor,1,149.99,09/30/19 09:04,"710 Maple St, Seattle, WA 98101" +252302,USB-C Charging Cable,1,11.95,09/18/19 21:25,"988 South St, Los Angeles, CA 90001" +252303,27in 4K Gaming Monitor,1,389.99,09/10/19 21:38,"481 7th St, New York City, NY 10001" +252304,Vareebadd Phone,1,400,09/07/19 15:14,"132 7th St, San Francisco, CA 94016" +252305,AA Batteries (4-pack),1,3.84,09/21/19 09:56,"517 9th St, Portland, OR 97035" +252306,Lightning Charging Cable,1,14.95,09/29/19 09:47,"969 Park St, San Francisco, CA 94016" +252307,AA Batteries (4-pack),1,3.84,09/04/19 19:16,"762 14th St, Los Angeles, CA 90001" +252308,AAA Batteries (4-pack),1,2.99,09/29/19 21:11,"799 Dogwood St, Seattle, WA 98101" +252309,iPhone,1,700,09/27/19 20:23,"704 Lincoln St, Dallas, TX 75001" +252310,Wired Headphones,1,11.99,09/17/19 13:27,"523 Center St, San Francisco, CA 94016" +252311,Wired Headphones,1,11.99,09/03/19 18:26,"144 Johnson St, Seattle, WA 98101" +252312,Wired Headphones,1,11.99,09/06/19 10:52,"589 Maple St, New York City, NY 10001" +252313,Apple Airpods Headphones,1,150,09/25/19 09:40,"833 Adams St, Boston, MA 02215" +252314,20in Monitor,1,109.99,09/05/19 16:49,"144 Dogwood St, New York City, NY 10001" +252315,Apple Airpods Headphones,1,150,09/18/19 20:53,"308 Highland St, Los Angeles, CA 90001" +252316,Wired Headphones,1,11.99,09/04/19 19:30,"106 Highland St, Dallas, TX 75001" +252317,27in 4K Gaming Monitor,1,389.99,09/30/19 00:07,"884 Willow St, Los Angeles, CA 90001" +252318,27in FHD Monitor,1,149.99,09/07/19 08:41,"853 Lincoln St, Los Angeles, CA 90001" +252319,Google Phone,1,600,09/06/19 13:30,"503 South St, New York City, NY 10001" +252320,Wired Headphones,1,11.99,09/08/19 20:06,"683 Walnut St, Los Angeles, CA 90001" +252321,AAA Batteries (4-pack),1,2.99,09/09/19 14:45,"361 1st St, Atlanta, GA 30301" +252322,Google Phone,1,600,09/13/19 21:29,"92 Cherry St, Atlanta, GA 30301" +252323,AA Batteries (4-pack),1,3.84,09/26/19 22:59,"461 Park St, Boston, MA 02215" +252323,34in Ultrawide Monitor,1,379.99,09/26/19 22:59,"461 Park St, Boston, MA 02215" +252324,USB-C Charging Cable,1,11.95,09/08/19 22:58,"567 Cedar St, Seattle, WA 98101" +252325,Google Phone,1,600,09/05/19 22:09,"707 14th St, Portland, ME 04101" +252325,Wired Headphones,1,11.99,09/05/19 22:09,"707 14th St, Portland, ME 04101" +252326,AAA Batteries (4-pack),1,2.99,09/27/19 20:58,"694 Hickory St, Atlanta, GA 30301" +252327,AAA Batteries (4-pack),1,2.99,09/26/19 01:22,"771 River St, Atlanta, GA 30301" +252328,iPhone,1,700,09/07/19 18:25,"756 Madison St, Dallas, TX 75001" +252329,Bose SoundSport Headphones,1,99.99,09/27/19 14:28,"345 Wilson St, New York City, NY 10001" +252330,USB-C Charging Cable,1,11.95,09/21/19 15:33,"135 13th St, San Francisco, CA 94016" +252331,Apple Airpods Headphones,1,150,09/26/19 08:50,"142 Ridge St, New York City, NY 10001" +252332,iPhone,1,700,09/18/19 13:21,"979 Jefferson St, Los Angeles, CA 90001" +252333,Vareebadd Phone,1,400,09/13/19 18:18,"607 North St, Austin, TX 73301" +252333,Bose SoundSport Headphones,1,99.99,09/13/19 18:18,"607 North St, Austin, TX 73301" +252334,Bose SoundSport Headphones,1,99.99,09/25/19 15:39,"75 Lincoln St, Atlanta, GA 30301" +252335,Lightning Charging Cable,1,14.95,09/18/19 16:27,"776 Hill St, New York City, NY 10001" +252336,Lightning Charging Cable,1,14.95,09/10/19 00:33,"417 Chestnut St, Boston, MA 02215" +252337,Google Phone,1,600,09/06/19 12:23,"256 Lincoln St, Los Angeles, CA 90001" +252337,USB-C Charging Cable,1,11.95,09/06/19 12:23,"256 Lincoln St, Los Angeles, CA 90001" +252338,27in FHD Monitor,1,149.99,09/06/19 14:41,"315 Jefferson St, Portland, ME 04101" +252339,Wired Headphones,1,11.99,09/12/19 18:33,"540 2nd St, Portland, OR 97035" +252340,USB-C Charging Cable,1,11.95,09/05/19 12:39,"691 Madison St, Los Angeles, CA 90001" +252341,Lightning Charging Cable,1,14.95,09/22/19 15:16,"728 2nd St, San Francisco, CA 94016" +252342,USB-C Charging Cable,1,11.95,09/13/19 08:58,"881 Spruce St, Seattle, WA 98101" +252343,Lightning Charging Cable,1,14.95,09/12/19 19:05,"523 12th St, San Francisco, CA 94016" +252344,27in 4K Gaming Monitor,1,389.99,09/29/19 15:17,"39 Madison St, Austin, TX 73301" +252345,USB-C Charging Cable,1,11.95,09/09/19 09:42,"434 Hickory St, New York City, NY 10001" +252346,Flatscreen TV,1,300,09/10/19 16:07,"566 Spruce St, Dallas, TX 75001" +252347,Apple Airpods Headphones,1,150,09/22/19 21:31,"251 Jackson St, Los Angeles, CA 90001" +252348,27in 4K Gaming Monitor,1,389.99,09/10/19 14:32,"140 Johnson St, New York City, NY 10001" +252349,AA Batteries (4-pack),1,3.84,09/13/19 12:44,"933 2nd St, Boston, MA 02215" +252350,Wired Headphones,1,11.99,09/18/19 18:48,"919 Park St, Seattle, WA 98101" +252351,USB-C Charging Cable,1,11.95,09/07/19 20:37,"196 7th St, New York City, NY 10001" +252352,20in Monitor,1,109.99,09/15/19 18:43,"261 Adams St, San Francisco, CA 94016" +252353,USB-C Charging Cable,1,11.95,09/19/19 02:13,"751 Church St, Boston, MA 02215" +252354,USB-C Charging Cable,1,11.95,09/15/19 23:42,"268 5th St, Dallas, TX 75001" +252355,Apple Airpods Headphones,1,150,09/05/19 16:27,"569 Cherry St, San Francisco, CA 94016" +252356,27in FHD Monitor,1,149.99,09/26/19 02:38,"55 Jefferson St, Portland, OR 97035" +252357,Lightning Charging Cable,1,14.95,09/20/19 11:59,"127 1st St, Atlanta, GA 30301" +252358,AAA Batteries (4-pack),2,2.99,09/18/19 08:02,"144 8th St, Austin, TX 73301" +252359,AAA Batteries (4-pack),2,2.99,09/20/19 22:33,"244 Willow St, New York City, NY 10001" +252360,Lightning Charging Cable,1,14.95,09/02/19 08:52,"682 10th St, Seattle, WA 98101" +252361,34in Ultrawide Monitor,1,379.99,09/03/19 18:07,"468 7th St, Atlanta, GA 30301" +252362,Apple Airpods Headphones,1,150,09/13/19 23:33,"125 Highland St, Los Angeles, CA 90001" +252363,Vareebadd Phone,1,400,09/21/19 21:09,"180 Hickory St, Dallas, TX 75001" +252364,iPhone,1,700,09/24/19 02:19,"202 Hickory St, Austin, TX 73301" +252364,Apple Airpods Headphones,1,150,09/24/19 02:19,"202 Hickory St, Austin, TX 73301" +252365,USB-C Charging Cable,1,11.95,09/13/19 15:46,"690 River St, San Francisco, CA 94016" +252366,ThinkPad Laptop,1,999.99,09/03/19 20:57,"998 Wilson St, New York City, NY 10001" +252367,34in Ultrawide Monitor,1,379.99,09/15/19 17:48,"132 Center St, New York City, NY 10001" +252368,AAA Batteries (4-pack),3,2.99,09/17/19 21:11,"715 5th St, Portland, OR 97035" +252369,34in Ultrawide Monitor,1,379.99,09/08/19 19:55,"495 14th St, Los Angeles, CA 90001" +252370,Bose SoundSport Headphones,1,99.99,09/16/19 17:14,"603 Park St, Los Angeles, CA 90001" +252371,AA Batteries (4-pack),1,3.84,09/11/19 20:26,"652 Madison St, Seattle, WA 98101" +252372,AA Batteries (4-pack),3,3.84,09/15/19 12:50,"596 River St, San Francisco, CA 94016" +252372,Macbook Pro Laptop,1,1700,09/15/19 12:50,"596 River St, San Francisco, CA 94016" +252373,Apple Airpods Headphones,1,150,09/05/19 11:00,"190 Cedar St, San Francisco, CA 94016" +252374,27in FHD Monitor,1,149.99,09/24/19 16:00,"868 North St, Los Angeles, CA 90001" +252375,Apple Airpods Headphones,1,150,09/05/19 19:26,"263 Chestnut St, Los Angeles, CA 90001" +252376,AAA Batteries (4-pack),1,2.99,09/27/19 08:44,"503 Center St, San Francisco, CA 94016" +252377,27in FHD Monitor,1,149.99,09/01/19 11:38,"787 Walnut St, Dallas, TX 75001" +252378,USB-C Charging Cable,1,11.95,09/03/19 11:56,"762 Lakeview St, Dallas, TX 75001" +252379,20in Monitor,1,109.99,09/30/19 19:12,"636 Adams St, Seattle, WA 98101" +252380,USB-C Charging Cable,2,11.95,09/15/19 12:12,"809 14th St, Seattle, WA 98101" +252381,27in FHD Monitor,1,149.99,09/11/19 00:11,"28 Park St, Dallas, TX 75001" +252382,Wired Headphones,1,11.99,09/26/19 12:25,"150 11th St, Austin, TX 73301" +252383,AAA Batteries (4-pack),1,2.99,09/21/19 19:49,"975 Park St, Portland, OR 97035" +252384,Apple Airpods Headphones,1,150,09/04/19 10:59,"84 Park St, San Francisco, CA 94016" +252385,34in Ultrawide Monitor,1,379.99,09/15/19 19:53,"218 Hill St, Los Angeles, CA 90001" +252386,Wired Headphones,1,11.99,09/29/19 13:04,"207 Center St, Dallas, TX 75001" +252387,20in Monitor,1,109.99,09/12/19 13:35,"980 1st St, Los Angeles, CA 90001" +252388,Apple Airpods Headphones,1,150,09/28/19 15:03,"760 West St, Boston, MA 02215" +252389,Google Phone,1,600,09/26/19 21:44,"694 5th St, Dallas, TX 75001" +252390,Flatscreen TV,1,300,09/15/19 14:10,"623 Ridge St, San Francisco, CA 94016" +252391,Lightning Charging Cable,2,14.95,09/18/19 19:48,"203 Chestnut St, San Francisco, CA 94016" +252392,34in Ultrawide Monitor,1,379.99,09/26/19 18:07,"368 River St, Boston, MA 02215" +252393,USB-C Charging Cable,1,11.95,09/04/19 10:37,"417 West St, Boston, MA 02215" +252394,USB-C Charging Cable,1,11.95,09/18/19 21:51,"940 Lake St, Boston, MA 02215" +252395,AA Batteries (4-pack),1,3.84,09/02/19 14:45,"254 Hill St, Portland, OR 97035" +252396,AAA Batteries (4-pack),2,2.99,09/22/19 13:39,"708 Meadow St, Los Angeles, CA 90001" +252397,27in FHD Monitor,1,149.99,09/02/19 15:22,"377 Forest St, Portland, OR 97035" +252398,Wired Headphones,1,11.99,09/28/19 12:03,"943 Elm St, New York City, NY 10001" +252399,27in 4K Gaming Monitor,1,389.99,09/13/19 11:42,"876 Center St, San Francisco, CA 94016" +252400,Lightning Charging Cable,1,14.95,09/02/19 19:47,"735 6th St, Seattle, WA 98101" +252401,Vareebadd Phone,1,400,09/14/19 22:36,"217 Chestnut St, San Francisco, CA 94016" +252402,27in 4K Gaming Monitor,1,389.99,09/11/19 19:49,"418 South St, Los Angeles, CA 90001" +252403,Apple Airpods Headphones,1,150,09/27/19 18:40,"207 Cherry St, Atlanta, GA 30301" +252404,Vareebadd Phone,1,400,09/21/19 23:05,"745 Hickory St, Los Angeles, CA 90001" +252405,Lightning Charging Cable,1,14.95,09/12/19 19:59,"853 Walnut St, Boston, MA 02215" +252406,27in FHD Monitor,1,149.99,09/08/19 11:07,"717 Cedar St, Seattle, WA 98101" +252407,AA Batteries (4-pack),2,3.84,09/01/19 11:20,"667 Jackson St, San Francisco, CA 94016" +252408,AA Batteries (4-pack),1,3.84,09/24/19 13:42,"78 9th St, San Francisco, CA 94016" +252409,Macbook Pro Laptop,1,1700,09/20/19 15:43,"924 Willow St, San Francisco, CA 94016" +252410,AA Batteries (4-pack),1,3.84,09/08/19 00:53,"804 Adams St, New York City, NY 10001" +252411,Apple Airpods Headphones,1,150,09/26/19 15:25,"209 Johnson St, San Francisco, CA 94016" +252412,27in 4K Gaming Monitor,1,389.99,09/11/19 16:58,"479 Wilson St, Austin, TX 73301" +252413,Lightning Charging Cable,1,14.95,09/05/19 14:32,"762 4th St, Seattle, WA 98101" +252414,Lightning Charging Cable,1,14.95,09/21/19 11:55,"113 Maple St, New York City, NY 10001" +252415,Apple Airpods Headphones,1,150,09/22/19 11:27,"366 Cherry St, San Francisco, CA 94016" +252416,Apple Airpods Headphones,1,150,09/12/19 12:24,"86 Maple St, Dallas, TX 75001" +252417,AA Batteries (4-pack),1,3.84,09/29/19 22:44,"711 Willow St, Los Angeles, CA 90001" +252418,AA Batteries (4-pack),2,3.84,09/09/19 18:15,"755 10th St, San Francisco, CA 94016" +252419,Flatscreen TV,1,300,09/23/19 19:01,"159 Meadow St, Seattle, WA 98101" +252420,Lightning Charging Cable,1,14.95,09/20/19 18:13,"904 9th St, Austin, TX 73301" +252420,AA Batteries (4-pack),2,3.84,09/20/19 18:13,"904 9th St, Austin, TX 73301" +252421,AA Batteries (4-pack),2,3.84,09/24/19 17:10,"148 Cherry St, New York City, NY 10001" +252422,Wired Headphones,1,11.99,09/12/19 20:58,"371 13th St, Los Angeles, CA 90001" +252423,USB-C Charging Cable,1,11.95,09/22/19 18:18,"883 14th St, Austin, TX 73301" +252424,Lightning Charging Cable,1,14.95,09/15/19 19:30,"81 Park St, Portland, ME 04101" +252425,27in FHD Monitor,1,149.99,09/04/19 08:47,"744 Jackson St, Seattle, WA 98101" +252426,Lightning Charging Cable,1,14.95,09/21/19 19:07,"915 Johnson St, Los Angeles, CA 90001" +252427,Bose SoundSport Headphones,1,99.99,09/10/19 13:40,"820 Highland St, Austin, TX 73301" +252428,AAA Batteries (4-pack),1,2.99,09/07/19 12:00,"33 Center St, Seattle, WA 98101" +252429,AAA Batteries (4-pack),1,2.99,09/19/19 11:07,"720 4th St, Boston, MA 02215" +252430,Lightning Charging Cable,1,14.95,09/26/19 08:59,"734 Meadow St, Los Angeles, CA 90001" +252431,iPhone,1,700,09/29/19 18:27,"322 Adams St, San Francisco, CA 94016" +252431,Wired Headphones,1,11.99,09/29/19 18:27,"322 Adams St, San Francisco, CA 94016" +252432,Lightning Charging Cable,1,14.95,09/12/19 14:59,"825 6th St, San Francisco, CA 94016" +252433,USB-C Charging Cable,1,11.95,09/17/19 07:37,"705 Jackson St, Dallas, TX 75001" +252434,Lightning Charging Cable,1,14.95,09/15/19 13:51,"596 Jackson St, New York City, NY 10001" +252435,Apple Airpods Headphones,1,150,09/10/19 22:02,"66 1st St, Atlanta, GA 30301" +252436,AA Batteries (4-pack),1,3.84,09/25/19 14:56,"999 Center St, San Francisco, CA 94016" +252437,AAA Batteries (4-pack),1,2.99,09/14/19 00:05,"123 River St, San Francisco, CA 94016" +252438,Lightning Charging Cable,1,14.95,09/08/19 20:02,"758 River St, San Francisco, CA 94016" +252439,AAA Batteries (4-pack),2,2.99,09/15/19 11:37,"615 North St, Dallas, TX 75001" +252440,ThinkPad Laptop,1,999.99,09/08/19 07:15,"565 11th St, San Francisco, CA 94016" +252441,Bose SoundSport Headphones,1,99.99,09/13/19 10:16,"458 Forest St, Portland, OR 97035" +252442,AAA Batteries (4-pack),1,2.99,09/08/19 21:44,"329 South St, Los Angeles, CA 90001" +252443,AA Batteries (4-pack),1,3.84,09/21/19 10:22,"95 Lakeview St, Boston, MA 02215" +252444,USB-C Charging Cable,2,11.95,09/28/19 14:19,"538 1st St, Seattle, WA 98101" +252445,AA Batteries (4-pack),2,3.84,09/14/19 16:49,"30 5th St, Boston, MA 02215" +252446,Lightning Charging Cable,1,14.95,09/08/19 13:24,"83 Ridge St, Atlanta, GA 30301" +252447,Flatscreen TV,1,300,09/03/19 17:27,"418 4th St, Atlanta, GA 30301" +252448,27in 4K Gaming Monitor,1,389.99,09/04/19 19:49,"525 Johnson St, New York City, NY 10001" +252449,Apple Airpods Headphones,1,150,09/27/19 22:04,"6 Cedar St, San Francisco, CA 94016" +252450,LG Washing Machine,1,600.0,09/01/19 13:50,"788 Spruce St, San Francisco, CA 94016" +252451,34in Ultrawide Monitor,1,379.99,09/07/19 14:18,"914 Park St, Portland, OR 97035" +252452,27in FHD Monitor,1,149.99,09/08/19 11:20,"658 Center St, New York City, NY 10001" +252453,AA Batteries (4-pack),2,3.84,09/20/19 23:41,"808 Lincoln St, Dallas, TX 75001" +252454,AA Batteries (4-pack),1,3.84,09/16/19 11:18,"306 8th St, Dallas, TX 75001" +252455,Apple Airpods Headphones,1,150,09/12/19 22:33,"549 14th St, Seattle, WA 98101" +252456,iPhone,1,700,09/22/19 09:55,"376 Chestnut St, Atlanta, GA 30301" +252456,AA Batteries (4-pack),1,3.84,09/22/19 09:55,"376 Chestnut St, Atlanta, GA 30301" +252457,Flatscreen TV,1,300,09/29/19 14:23,"919 10th St, New York City, NY 10001" +252458,Lightning Charging Cable,1,14.95,09/05/19 20:47,"256 Church St, Los Angeles, CA 90001" +252459,USB-C Charging Cable,1,11.95,09/23/19 08:02,"393 Hill St, San Francisco, CA 94016" +252460,AA Batteries (4-pack),2,3.84,09/07/19 17:59,"291 12th St, Atlanta, GA 30301" +252461,Wired Headphones,1,11.99,09/30/19 11:16,"571 14th St, Boston, MA 02215" +252462,AA Batteries (4-pack),1,3.84,09/09/19 18:09,"713 Forest St, Dallas, TX 75001" +252463,Apple Airpods Headphones,1,150,09/21/19 20:52,"15 Adams St, San Francisco, CA 94016" +252464,USB-C Charging Cable,1,11.95,09/27/19 18:55,"324 Sunset St, Seattle, WA 98101" +252465,ThinkPad Laptop,1,999.99,09/15/19 13:45,"800 Dogwood St, Portland, OR 97035" +252466,Wired Headphones,1,11.99,09/19/19 21:55,"612 Sunset St, New York City, NY 10001" +252467,AAA Batteries (4-pack),1,2.99,09/20/19 18:55,"659 9th St, Boston, MA 02215" +252468,USB-C Charging Cable,1,11.95,09/04/19 09:57,"968 Meadow St, Atlanta, GA 30301" +252469,AAA Batteries (4-pack),1,2.99,09/09/19 10:37,"546 Spruce St, Portland, OR 97035" +252470,AA Batteries (4-pack),1,3.84,09/23/19 13:26,"60 4th St, New York City, NY 10001" +252471,Google Phone,1,600,09/08/19 17:20,"859 13th St, Portland, OR 97035" +252472,AAA Batteries (4-pack),2,2.99,09/14/19 17:57,"255 Forest St, San Francisco, CA 94016" +252473,20in Monitor,1,109.99,09/10/19 22:23,"51 1st St, New York City, NY 10001" +252474,34in Ultrawide Monitor,1,379.99,09/08/19 13:08,"876 Ridge St, San Francisco, CA 94016" +252475,AA Batteries (4-pack),1,3.84,09/18/19 19:47,"268 11th St, Seattle, WA 98101" +252476,AAA Batteries (4-pack),2,2.99,09/15/19 08:32,"228 West St, Los Angeles, CA 90001" +252477,iPhone,1,700,09/17/19 18:37,"529 9th St, Portland, OR 97035" +252478,Google Phone,1,600,09/25/19 13:44,"23 River St, Boston, MA 02215" +252479,AA Batteries (4-pack),2,3.84,09/05/19 19:37,"342 Meadow St, Dallas, TX 75001" +252480,USB-C Charging Cable,1,11.95,09/12/19 09:45,"928 Elm St, Dallas, TX 75001" +252481,LG Washing Machine,1,600.0,09/15/19 15:14,"795 Forest St, Dallas, TX 75001" +252482,Apple Airpods Headphones,1,150,09/28/19 14:42,"25 4th St, San Francisco, CA 94016" +252483,AAA Batteries (4-pack),1,2.99,09/26/19 13:01,"943 West St, Seattle, WA 98101" +252484,27in FHD Monitor,1,149.99,09/10/19 14:29,"339 Madison St, Austin, TX 73301" +252485,34in Ultrawide Monitor,1,379.99,09/12/19 16:05,"200 Wilson St, Atlanta, GA 30301" +252486,20in Monitor,1,109.99,09/10/19 00:31,"602 Sunset St, New York City, NY 10001" +252487,USB-C Charging Cable,1,11.95,09/19/19 12:04,"116 Ridge St, Seattle, WA 98101" +252488,Flatscreen TV,1,300,09/25/19 22:47,"449 10th St, San Francisco, CA 94016" +252489,USB-C Charging Cable,1,11.95,09/08/19 14:06,"171 Spruce St, Los Angeles, CA 90001" +252490,Bose SoundSport Headphones,1,99.99,09/27/19 11:53,"867 Maple St, Los Angeles, CA 90001" +252491,Wired Headphones,1,11.99,09/07/19 05:05,"444 Johnson St, Seattle, WA 98101" +252492,34in Ultrawide Monitor,1,379.99,09/18/19 13:22,"131 Park St, San Francisco, CA 94016" +252493,ThinkPad Laptop,1,999.99,09/19/19 09:51,"545 Main St, New York City, NY 10001" +252494,USB-C Charging Cable,1,11.95,09/07/19 10:50,"694 8th St, New York City, NY 10001" +252495,Wired Headphones,1,11.99,09/08/19 09:48,"920 Cedar St, Boston, MA 02215" +252496,USB-C Charging Cable,1,11.95,09/30/19 20:03,"186 North St, Boston, MA 02215" +252497,Wired Headphones,1,11.99,09/29/19 15:03,"536 2nd St, San Francisco, CA 94016" +252498,Lightning Charging Cable,1,14.95,09/01/19 13:50,"678 2nd St, San Francisco, CA 94016" +252499,iPhone,1,700,09/02/19 13:43,"158 Jackson St, Los Angeles, CA 90001" +252500,iPhone,1,700,09/29/19 18:43,"268 Jefferson St, Portland, OR 97035" +252500,Lightning Charging Cable,1,14.95,09/29/19 18:43,"268 Jefferson St, Portland, OR 97035" +252500,Wired Headphones,1,11.99,09/29/19 18:43,"268 Jefferson St, Portland, OR 97035" +252501,AA Batteries (4-pack),1,3.84,09/06/19 13:02,"758 South St, Boston, MA 02215" +252502,Wired Headphones,1,11.99,09/30/19 13:53,"667 9th St, Portland, OR 97035" +252503,27in FHD Monitor,1,149.99,09/16/19 21:57,"831 Pine St, Boston, MA 02215" +252504,20in Monitor,1,109.99,09/07/19 10:30,"78 Washington St, Los Angeles, CA 90001" +252505,AAA Batteries (4-pack),1,2.99,09/27/19 21:58,"594 Jackson St, Austin, TX 73301" +252506,Wired Headphones,1,11.99,09/12/19 05:02,"562 8th St, New York City, NY 10001" +252507,Lightning Charging Cable,1,14.95,09/29/19 15:59,"37 Johnson St, Seattle, WA 98101" +252508,AA Batteries (4-pack),1,3.84,09/18/19 12:29,"140 Maple St, Portland, OR 97035" +252509,AA Batteries (4-pack),2,3.84,09/02/19 20:54,"416 12th St, New York City, NY 10001" +252510,AA Batteries (4-pack),1,3.84,09/08/19 17:00,"3 Pine St, Austin, TX 73301" +252511,Flatscreen TV,1,300,09/02/19 14:21,"725 Forest St, Austin, TX 73301" +252512,Apple Airpods Headphones,1,150,09/12/19 17:37,"9 8th St, New York City, NY 10001" +252513,Bose SoundSport Headphones,1,99.99,09/16/19 19:42,"845 Washington St, San Francisco, CA 94016" +252514,Macbook Pro Laptop,1,1700,09/08/19 20:05,"845 Jackson St, Dallas, TX 75001" +252515,27in 4K Gaming Monitor,1,389.99,09/12/19 18:50,"724 Elm St, Portland, OR 97035" +252516,USB-C Charging Cable,1,11.95,09/16/19 09:52,"640 Forest St, San Francisco, CA 94016" +252517,Apple Airpods Headphones,1,150,09/08/19 19:12,"58 11th St, Austin, TX 73301" +252518,USB-C Charging Cable,1,11.95,09/12/19 14:43,"314 Meadow St, San Francisco, CA 94016" +252519,AA Batteries (4-pack),1,3.84,09/09/19 16:43,"899 Dogwood St, Los Angeles, CA 90001" +252520,AA Batteries (4-pack),1,3.84,09/06/19 19:49,"128 Willow St, San Francisco, CA 94016" +252521,Bose SoundSport Headphones,1,99.99,09/21/19 09:37,"184 14th St, Los Angeles, CA 90001" +252522,AAA Batteries (4-pack),2,2.99,09/22/19 23:31,"563 Cedar St, San Francisco, CA 94016" +252523,USB-C Charging Cable,1,11.95,09/30/19 20:47,"189 South St, New York City, NY 10001" +252524,USB-C Charging Cable,1,11.95,09/07/19 14:11,"34 Spruce St, Los Angeles, CA 90001" +252525,Lightning Charging Cable,1,14.95,09/21/19 09:48,"728 Washington St, Atlanta, GA 30301" +252526,AAA Batteries (4-pack),2,2.99,09/23/19 17:09,"619 Center St, Atlanta, GA 30301" +252527,AAA Batteries (4-pack),1,2.99,09/27/19 21:50,"715 1st St, San Francisco, CA 94016" +252528,Flatscreen TV,1,300,09/21/19 08:23,"903 Walnut St, San Francisco, CA 94016" +252529,AA Batteries (4-pack),1,3.84,09/02/19 14:52,"879 Pine St, Austin, TX 73301" +252530,Apple Airpods Headphones,1,150,09/13/19 12:39,"40 Lincoln St, Dallas, TX 75001" +252531,Google Phone,1,600,09/14/19 02:35,"866 Church St, San Francisco, CA 94016" +252532,AAA Batteries (4-pack),1,2.99,09/05/19 11:05,"652 Lake St, Seattle, WA 98101" +252533,Flatscreen TV,1,300,09/04/19 19:24,"653 9th St, San Francisco, CA 94016" +252534,27in FHD Monitor,1,149.99,09/09/19 19:00,"256 9th St, Los Angeles, CA 90001" +252535,34in Ultrawide Monitor,1,379.99,09/19/19 17:29,"587 Jackson St, Austin, TX 73301" +252536,USB-C Charging Cable,1,11.95,09/01/19 07:09,"809 Meadow St, New York City, NY 10001" +252537,Bose SoundSport Headphones,1,99.99,09/06/19 18:25,"137 South St, New York City, NY 10001" +252538,27in 4K Gaming Monitor,1,389.99,09/06/19 11:12,"706 Elm St, Portland, OR 97035" +252539,27in 4K Gaming Monitor,1,389.99,09/04/19 10:28,"174 4th St, Boston, MA 02215" +252539,AAA Batteries (4-pack),4,2.99,09/04/19 10:28,"174 4th St, Boston, MA 02215" +252540,AAA Batteries (4-pack),1,2.99,09/14/19 05:31,"885 Spruce St, Portland, OR 97035" +252541,Apple Airpods Headphones,1,150,09/30/19 07:10,"727 Meadow St, Portland, OR 97035" +252542,AA Batteries (4-pack),4,3.84,09/20/19 18:22,"708 11th St, Boston, MA 02215" +252543,AAA Batteries (4-pack),1,2.99,09/10/19 17:23,"448 Church St, Boston, MA 02215" +252544,Lightning Charging Cable,1,14.95,09/29/19 13:18,"257 7th St, Portland, OR 97035" +252545,USB-C Charging Cable,1,11.95,09/16/19 18:29,"670 1st St, Portland, OR 97035" +252546,34in Ultrawide Monitor,1,379.99,09/25/19 19:57,"61 Elm St, Austin, TX 73301" +252547,27in FHD Monitor,1,149.99,09/22/19 11:46,"594 14th St, Dallas, TX 75001" +252548,AAA Batteries (4-pack),1,2.99,09/26/19 17:19,"537 Johnson St, Los Angeles, CA 90001" +,,,,, +252549,AAA Batteries (4-pack),1,2.99,09/18/19 14:21,"623 7th St, Portland, OR 97035" +252550,Lightning Charging Cable,1,14.95,09/25/19 07:48,"409 9th St, Dallas, TX 75001" +252551,Bose SoundSport Headphones,1,99.99,09/05/19 15:39,"656 11th St, Portland, OR 97035" +252552,USB-C Charging Cable,1,11.95,09/15/19 12:32,"712 Hill St, Los Angeles, CA 90001" +252553,Lightning Charging Cable,1,14.95,09/17/19 12:39,"598 Forest St, Atlanta, GA 30301" +252554,Bose SoundSport Headphones,1,99.99,09/16/19 13:25,"711 Adams St, New York City, NY 10001" +252555,34in Ultrawide Monitor,1,379.99,09/27/19 03:46,"718 Lakeview St, Los Angeles, CA 90001" +252555,27in FHD Monitor,1,149.99,09/27/19 03:46,"718 Lakeview St, Los Angeles, CA 90001" +252556,27in 4K Gaming Monitor,1,389.99,09/16/19 01:43,"896 Forest St, San Francisco, CA 94016" +252557,Wired Headphones,1,11.99,09/25/19 21:34,"339 8th St, San Francisco, CA 94016" +252558,Wired Headphones,1,11.99,09/12/19 20:44,"161 River St, New York City, NY 10001" +252559,Wired Headphones,1,11.99,09/09/19 11:50,"561 Walnut St, San Francisco, CA 94016" +252560,Flatscreen TV,1,300,09/14/19 10:32,"899 Park St, Boston, MA 02215" +252561,Apple Airpods Headphones,1,150,09/15/19 20:32,"166 River St, Seattle, WA 98101" +252562,27in FHD Monitor,1,149.99,09/29/19 09:45,"9 Washington St, San Francisco, CA 94016" +252563,27in FHD Monitor,1,149.99,09/07/19 19:26,"178 8th St, San Francisco, CA 94016" +252564,27in FHD Monitor,1,149.99,09/06/19 22:29,"49 Madison St, San Francisco, CA 94016" +252565,ThinkPad Laptop,1,999.99,09/08/19 22:20,"398 Lake St, Seattle, WA 98101" +252566,AA Batteries (4-pack),1,3.84,09/24/19 11:47,"410 West St, San Francisco, CA 94016" +252567,27in 4K Gaming Monitor,1,389.99,09/04/19 22:48,"585 Wilson St, Austin, TX 73301" +252568,AA Batteries (4-pack),2,3.84,09/07/19 21:22,"86 Wilson St, New York City, NY 10001" +252569,USB-C Charging Cable,1,11.95,09/22/19 09:29,"987 Ridge St, Austin, TX 73301" +252570,Wired Headphones,1,11.99,09/13/19 19:54,"636 Adams St, Seattle, WA 98101" +252571,Bose SoundSport Headphones,1,99.99,09/19/19 12:32,"973 River St, Boston, MA 02215" +252572,AAA Batteries (4-pack),2,2.99,09/18/19 12:21,"527 9th St, San Francisco, CA 94016" +252573,AAA Batteries (4-pack),1,2.99,09/29/19 22:17,"871 Lakeview St, New York City, NY 10001" +252574,AAA Batteries (4-pack),1,2.99,09/16/19 17:46,"791 Forest St, Boston, MA 02215" +252575,AAA Batteries (4-pack),2,2.99,09/09/19 19:02,"422 Highland St, Boston, MA 02215" +252576,Lightning Charging Cable,1,14.95,09/09/19 18:02,"131 Dogwood St, Dallas, TX 75001" +252577,AA Batteries (4-pack),1,3.84,09/01/19 18:12,"883 7th St, Los Angeles, CA 90001" +252578,Wired Headphones,1,11.99,09/11/19 14:17,"816 9th St, San Francisco, CA 94016" +252579,Lightning Charging Cable,1,14.95,09/08/19 17:44,"984 Dogwood St, San Francisco, CA 94016" +252580,USB-C Charging Cable,1,11.95,09/07/19 19:33,"709 Cherry St, San Francisco, CA 94016" +252581,Apple Airpods Headphones,1,150,09/12/19 15:36,"854 Wilson St, San Francisco, CA 94016" +252582,Wired Headphones,1,11.99,09/03/19 15:56,"27 West St, San Francisco, CA 94016" +252583,USB-C Charging Cable,1,11.95,09/16/19 10:28,"149 Willow St, Atlanta, GA 30301" +252584,AA Batteries (4-pack),1,3.84,09/15/19 17:01,"432 Washington St, Austin, TX 73301" +252585,Lightning Charging Cable,2,14.95,09/19/19 22:15,"110 River St, Boston, MA 02215" +252586,iPhone,1,700,09/30/19 15:57,"909 Jefferson St, San Francisco, CA 94016" +252586,Apple Airpods Headphones,1,150,09/30/19 15:57,"909 Jefferson St, San Francisco, CA 94016" +252587,Apple Airpods Headphones,1,150,09/29/19 15:01,"457 Pine St, San Francisco, CA 94016" +252588,Bose SoundSport Headphones,1,99.99,09/15/19 12:45,"279 Sunset St, Portland, OR 97035" +252589,AAA Batteries (4-pack),1,2.99,09/25/19 10:44,"651 8th St, Boston, MA 02215" +252590,AAA Batteries (4-pack),1,2.99,09/06/19 10:37,"630 4th St, Atlanta, GA 30301" +252591,Bose SoundSport Headphones,1,99.99,09/29/19 10:50,"101 Meadow St, Atlanta, GA 30301" +252592,AAA Batteries (4-pack),1,2.99,09/21/19 12:26,"512 Spruce St, San Francisco, CA 94016" +252593,Bose SoundSport Headphones,1,99.99,09/16/19 19:38,"502 8th St, New York City, NY 10001" +252594,AA Batteries (4-pack),1,3.84,09/28/19 13:21,"787 Jackson St, Atlanta, GA 30301" +252595,Apple Airpods Headphones,1,150,09/23/19 00:30,"16 Jefferson St, New York City, NY 10001" +252596,34in Ultrawide Monitor,1,379.99,09/20/19 14:05,"95 Park St, Dallas, TX 75001" +252597,AA Batteries (4-pack),2,3.84,09/02/19 15:36,"100 Maple St, Dallas, TX 75001" +252598,20in Monitor,1,109.99,09/18/19 22:07,"298 10th St, Dallas, TX 75001" +252599,27in 4K Gaming Monitor,1,389.99,09/16/19 10:09,"896 Washington St, San Francisco, CA 94016" +252600,34in Ultrawide Monitor,1,379.99,09/03/19 16:10,"925 12th St, Portland, OR 97035" +252601,Google Phone,1,600,09/08/19 15:03,"806 9th St, New York City, NY 10001" +252602,USB-C Charging Cable,1,11.95,09/08/19 19:54,"222 4th St, Seattle, WA 98101" +252603,ThinkPad Laptop,1,999.99,09/12/19 10:48,"300 Chestnut St, San Francisco, CA 94016" +252604,AA Batteries (4-pack),1,3.84,09/02/19 13:54,"271 Hill St, New York City, NY 10001" +252605,USB-C Charging Cable,1,11.95,09/06/19 13:01,"778 Adams St, San Francisco, CA 94016" +252606,AA Batteries (4-pack),1,3.84,09/15/19 19:18,"734 11th St, Dallas, TX 75001" +252607,USB-C Charging Cable,1,11.95,09/01/19 14:10,"296 Lake St, New York City, NY 10001" +252608,USB-C Charging Cable,1,11.95,09/17/19 11:04,"686 Meadow St, New York City, NY 10001" +252609,34in Ultrawide Monitor,1,379.99,09/14/19 12:18,"917 8th St, Boston, MA 02215" +252610,AA Batteries (4-pack),1,3.84,09/27/19 17:19,"83 Forest St, Atlanta, GA 30301" +252611,Lightning Charging Cable,1,14.95,09/13/19 19:24,"952 Lake St, Austin, TX 73301" +252612,Wired Headphones,1,11.99,09/30/19 07:38,"752 9th St, Portland, ME 04101" +252613,AAA Batteries (4-pack),1,2.99,09/09/19 16:00,"327 West St, New York City, NY 10001" +252614,Apple Airpods Headphones,1,150,09/14/19 16:49,"477 12th St, Seattle, WA 98101" +252615,27in 4K Gaming Monitor,1,389.99,09/05/19 20:02,"360 Maple St, Boston, MA 02215" +252616,Bose SoundSport Headphones,1,99.99,09/07/19 18:44,"679 South St, Atlanta, GA 30301" +252617,Wired Headphones,1,11.99,09/10/19 20:24,"910 10th St, Los Angeles, CA 90001" +252618,AAA Batteries (4-pack),1,2.99,09/11/19 09:23,"695 5th St, San Francisco, CA 94016" +252619,AAA Batteries (4-pack),1,2.99,09/17/19 13:27,"257 9th St, San Francisco, CA 94016" +252620,Macbook Pro Laptop,1,1700,09/23/19 17:59,"174 Meadow St, New York City, NY 10001" +252621,34in Ultrawide Monitor,1,379.99,09/25/19 14:36,"685 Sunset St, Los Angeles, CA 90001" +252622,Google Phone,1,600,09/10/19 22:26,"55 2nd St, San Francisco, CA 94016" +252623,Bose SoundSport Headphones,1,99.99,09/01/19 23:47,"793 Church St, Atlanta, GA 30301" +252624,AAA Batteries (4-pack),1,2.99,09/08/19 08:55,"381 Church St, Austin, TX 73301" +252625,Lightning Charging Cable,1,14.95,09/17/19 09:48,"452 4th St, Atlanta, GA 30301" +252626,USB-C Charging Cable,1,11.95,09/15/19 07:54,"329 Main St, Portland, ME 04101" +252627,27in FHD Monitor,1,149.99,09/17/19 15:37,"803 Park St, New York City, NY 10001" +252628,AAA Batteries (4-pack),2,2.99,09/15/19 15:50,"236 West St, San Francisco, CA 94016" +252629,Bose SoundSport Headphones,1,99.99,09/20/19 21:35,"614 Chestnut St, New York City, NY 10001" +252630,Lightning Charging Cable,2,14.95,09/21/19 14:12,"384 8th St, Los Angeles, CA 90001" +252631,Lightning Charging Cable,1,14.95,09/10/19 09:59,"532 Chestnut St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +252632,AAA Batteries (4-pack),1,2.99,09/23/19 10:26,"515 Ridge St, New York City, NY 10001" +252633,AAA Batteries (4-pack),1,2.99,09/09/19 16:06,"239 Wilson St, San Francisco, CA 94016" +252634,Bose SoundSport Headphones,1,99.99,09/08/19 13:02,"463 Johnson St, Los Angeles, CA 90001" +252635,34in Ultrawide Monitor,1,379.99,09/30/19 07:52,"899 11th St, New York City, NY 10001" +252636,Macbook Pro Laptop,1,1700,09/24/19 18:14,"802 Meadow St, Austin, TX 73301" +252637,Wired Headphones,1,11.99,09/01/19 10:38,"160 Hickory St, Portland, ME 04101" +252638,Apple Airpods Headphones,1,150,09/25/19 17:56,"610 Wilson St, Los Angeles, CA 90001" +252639,Bose SoundSport Headphones,1,99.99,09/05/19 02:01,"339 10th St, Austin, TX 73301" +252640,27in 4K Gaming Monitor,1,389.99,09/23/19 10:37,"632 11th St, Boston, MA 02215" +252641,27in FHD Monitor,1,149.99,09/20/19 20:44,"252 1st St, Boston, MA 02215" +252642,Lightning Charging Cable,1,14.95,09/17/19 22:48,"161 Hickory St, San Francisco, CA 94016" +252643,AAA Batteries (4-pack),1,2.99,09/26/19 19:24,"273 Madison St, Portland, ME 04101" +252643,ThinkPad Laptop,1,999.99,09/26/19 19:24,"273 Madison St, Portland, ME 04101" +252644,iPhone,1,700,09/22/19 09:56,"321 5th St, San Francisco, CA 94016" +252644,Lightning Charging Cable,1,14.95,09/22/19 09:56,"321 5th St, San Francisco, CA 94016" +252645,Google Phone,1,600,09/10/19 22:35,"17 14th St, New York City, NY 10001" +252645,USB-C Charging Cable,1,11.95,09/10/19 22:35,"17 14th St, New York City, NY 10001" +252646,Lightning Charging Cable,1,14.95,09/02/19 18:45,"124 12th St, New York City, NY 10001" +252647,Lightning Charging Cable,1,14.95,09/07/19 11:30,"264 Jackson St, Seattle, WA 98101" +252648,AA Batteries (4-pack),1,3.84,09/04/19 20:47,"835 Church St, Dallas, TX 75001" +252649,AAA Batteries (4-pack),1,2.99,09/29/19 00:20,"989 Meadow St, New York City, NY 10001" +252650,Bose SoundSport Headphones,1,99.99,09/24/19 12:50,"778 West St, New York City, NY 10001" +252651,USB-C Charging Cable,1,11.95,09/11/19 13:02,"60 12th St, Los Angeles, CA 90001" +252652,Wired Headphones,1,11.99,09/01/19 21:34,"638 Main St, San Francisco, CA 94016" +,,,,, +252653,AA Batteries (4-pack),2,3.84,09/30/19 20:21,"502 Hill St, Atlanta, GA 30301" +252653,Bose SoundSport Headphones,1,99.99,09/30/19 20:21,"502 Hill St, Atlanta, GA 30301" +252654,Google Phone,1,600,09/30/19 15:22,"920 Spruce St, San Francisco, CA 94016" +,,,,, +252655,Lightning Charging Cable,1,14.95,09/25/19 03:11,"889 Lincoln St, Seattle, WA 98101" +252656,Wired Headphones,1,11.99,09/29/19 14:08,"995 Spruce St, Austin, TX 73301" +252657,Apple Airpods Headphones,1,150,09/02/19 11:58,"477 14th St, New York City, NY 10001" +252658,Bose SoundSport Headphones,1,99.99,09/20/19 04:29,"941 Walnut St, Los Angeles, CA 90001" +252659,AAA Batteries (4-pack),1,2.99,09/13/19 00:23,"814 12th St, Boston, MA 02215" +252660,USB-C Charging Cable,1,11.95,09/05/19 19:28,"194 10th St, San Francisco, CA 94016" +252661,Bose SoundSport Headphones,1,99.99,09/14/19 11:56,"916 Ridge St, Portland, OR 97035" +252662,AAA Batteries (4-pack),3,2.99,09/21/19 11:36,"5 Center St, Dallas, TX 75001" +252663,Wired Headphones,1,11.99,09/05/19 05:05,"996 Highland St, San Francisco, CA 94016" +252664,AAA Batteries (4-pack),2,2.99,09/30/19 15:06,"944 North St, Dallas, TX 75001" +252665,AAA Batteries (4-pack),1,2.99,09/01/19 11:44,"688 10th St, Seattle, WA 98101" +252666,Lightning Charging Cable,1,14.95,09/11/19 14:53,"284 4th St, San Francisco, CA 94016" +252667,Wired Headphones,1,11.99,09/06/19 18:07,"478 Pine St, New York City, NY 10001" +252668,AAA Batteries (4-pack),2,2.99,09/15/19 18:12,"535 Pine St, Atlanta, GA 30301" +252669,ThinkPad Laptop,1,999.99,09/02/19 20:59,"199 8th St, Atlanta, GA 30301" +252670,27in FHD Monitor,1,149.99,09/03/19 19:28,"591 Wilson St, Los Angeles, CA 90001" +252671,Wired Headphones,1,11.99,09/29/19 22:17,"449 Washington St, Atlanta, GA 30301" +252672,27in 4K Gaming Monitor,1,389.99,09/08/19 07:30,"881 6th St, Los Angeles, CA 90001" +252673,ThinkPad Laptop,1,999.99,09/02/19 00:37,"298 Lakeview St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +252674,27in FHD Monitor,1,149.99,09/01/19 20:38,"993 11th St, Boston, MA 02215" +252675,AA Batteries (4-pack),1,3.84,09/08/19 19:20,"446 Madison St, Austin, TX 73301" +252676,AAA Batteries (4-pack),1,2.99,09/16/19 17:14,"201 6th St, San Francisco, CA 94016" +252677,USB-C Charging Cable,1,11.95,09/30/19 02:03,"480 South St, Los Angeles, CA 90001" +252678,20in Monitor,1,109.99,09/23/19 17:17,"43 2nd St, Boston, MA 02215" +252679,Wired Headphones,1,11.99,09/18/19 00:53,"703 Hill St, Los Angeles, CA 90001" +252680,Wired Headphones,1,11.99,09/25/19 17:22,"991 Main St, New York City, NY 10001" +252681,Wired Headphones,1,11.99,09/17/19 13:24,"733 Lakeview St, New York City, NY 10001" +252682,27in FHD Monitor,1,149.99,09/11/19 20:48,"111 Pine St, Atlanta, GA 30301" +252683,AAA Batteries (4-pack),1,2.99,09/29/19 22:29,"442 Walnut St, Atlanta, GA 30301" +252684,Apple Airpods Headphones,1,150,10/01/19 00:45,"111 Church St, Los Angeles, CA 90001" +252685,Lightning Charging Cable,1,14.95,09/01/19 20:40,"570 Center St, New York City, NY 10001" +252685,Apple Airpods Headphones,1,150,09/01/19 20:40,"570 Center St, New York City, NY 10001" +252686,34in Ultrawide Monitor,1,379.99,09/15/19 08:49,"625 14th St, New York City, NY 10001" +252687,AA Batteries (4-pack),2,3.84,09/12/19 12:19,"931 Johnson St, New York City, NY 10001" +252688,Bose SoundSport Headphones,1,99.99,09/05/19 22:05,"551 8th St, New York City, NY 10001" +252689,AA Batteries (4-pack),1,3.84,09/08/19 01:16,"683 2nd St, New York City, NY 10001" +252690,AA Batteries (4-pack),1,3.84,09/23/19 09:27,"182 Ridge St, San Francisco, CA 94016" +252691,Lightning Charging Cable,1,14.95,09/18/19 23:49,"267 13th St, Boston, MA 02215" +252692,ThinkPad Laptop,1,999.99,09/11/19 14:57,"599 Lincoln St, Boston, MA 02215" +252693,Apple Airpods Headphones,1,150,09/27/19 12:37,"654 Washington St, New York City, NY 10001" +252694,USB-C Charging Cable,1,11.95,09/28/19 14:06,"335 Adams St, San Francisco, CA 94016" +252695,Apple Airpods Headphones,1,150,09/13/19 18:15,"201 Lake St, San Francisco, CA 94016" +252696,34in Ultrawide Monitor,1,379.99,09/01/19 08:11,"322 11th St, Dallas, TX 75001" +252697,Bose SoundSport Headphones,1,99.99,09/16/19 00:25,"732 South St, San Francisco, CA 94016" +252698,Macbook Pro Laptop,1,1700,09/17/19 20:32,"760 Madison St, San Francisco, CA 94016" +252699,AAA Batteries (4-pack),3,2.99,09/08/19 22:30,"113 11th St, New York City, NY 10001" +252700,Macbook Pro Laptop,1,1700,09/15/19 18:57,"702 Dogwood St, Seattle, WA 98101" +252701,AAA Batteries (4-pack),1,2.99,09/04/19 17:57,"38 9th St, Los Angeles, CA 90001" +252702,Google Phone,1,600,09/29/19 10:31,"234 Park St, San Francisco, CA 94016" +252703,Bose SoundSport Headphones,1,99.99,09/07/19 12:36,"301 Cedar St, Portland, OR 97035" +252704,Flatscreen TV,1,300,09/23/19 14:44,"969 Walnut St, Portland, OR 97035" +252705,Flatscreen TV,1,300,09/10/19 22:05,"549 Lakeview St, Portland, OR 97035" +252706,27in 4K Gaming Monitor,1,389.99,09/09/19 12:25,"171 Center St, Dallas, TX 75001" +252707,AAA Batteries (4-pack),1,2.99,09/15/19 11:19,"658 Elm St, San Francisco, CA 94016" +252708,Google Phone,1,600,09/06/19 17:48,"814 Main St, San Francisco, CA 94016" +252709,AA Batteries (4-pack),1,3.84,09/29/19 19:17,"89 Adams St, Los Angeles, CA 90001" +252710,Bose SoundSport Headphones,1,99.99,09/06/19 00:59,"12 12th St, Boston, MA 02215" +252711,iPhone,1,700,09/28/19 20:29,"663 Johnson St, Boston, MA 02215" +252712,Wired Headphones,1,11.99,09/08/19 06:57,"181 Spruce St, New York City, NY 10001" +252713,Lightning Charging Cable,1,14.95,09/30/19 13:58,"184 Chestnut St, Boston, MA 02215" +252714,Bose SoundSport Headphones,1,99.99,09/18/19 21:20,"75 Church St, San Francisco, CA 94016" +252715,AAA Batteries (4-pack),2,2.99,09/24/19 19:33,"352 14th St, Dallas, TX 75001" +252716,27in 4K Gaming Monitor,1,389.99,09/26/19 15:25,"364 Jefferson St, San Francisco, CA 94016" +252717,Apple Airpods Headphones,1,150,09/30/19 09:12,"17 South St, Portland, OR 97035" +252718,Vareebadd Phone,1,400,09/07/19 18:08,"918 River St, San Francisco, CA 94016" +252719,AAA Batteries (4-pack),1,2.99,09/21/19 14:22,"3 14th St, Los Angeles, CA 90001" +252720,AA Batteries (4-pack),1,3.84,09/04/19 13:28,"836 Hickory St, Austin, TX 73301" +252721,Wired Headphones,1,11.99,09/09/19 16:03,"737 Church St, San Francisco, CA 94016" +252722,AA Batteries (4-pack),1,3.84,09/09/19 22:42,"869 Jackson St, Los Angeles, CA 90001" +252723,20in Monitor,1,109.99,09/21/19 21:53,"280 South St, Atlanta, GA 30301" +252724,Apple Airpods Headphones,1,150,09/28/19 19:25,"473 Lincoln St, Portland, ME 04101" +252725,Apple Airpods Headphones,2,150,09/08/19 17:47,"444 Church St, Atlanta, GA 30301" +252726,Lightning Charging Cable,1,14.95,09/14/19 21:42,"279 Hill St, Los Angeles, CA 90001" +252727,Apple Airpods Headphones,1,150,09/04/19 14:48,"823 Jackson St, San Francisco, CA 94016" +252728,20in Monitor,1,109.99,09/07/19 21:41,"805 Washington St, New York City, NY 10001" +252729,AA Batteries (4-pack),1,3.84,09/26/19 16:52,"50 Church St, Los Angeles, CA 90001" +252730,USB-C Charging Cable,1,11.95,09/22/19 21:03,"45 North St, New York City, NY 10001" +252731,Wired Headphones,1,11.99,09/10/19 11:18,"466 2nd St, Los Angeles, CA 90001" +252731,Lightning Charging Cable,1,14.95,09/10/19 11:18,"466 2nd St, Los Angeles, CA 90001" +252732,USB-C Charging Cable,1,11.95,09/20/19 18:33,"834 Wilson St, Austin, TX 73301" +252733,AA Batteries (4-pack),1,3.84,09/28/19 19:43,"494 Meadow St, Dallas, TX 75001" +252734,Bose SoundSport Headphones,1,99.99,09/21/19 10:54,"388 8th St, Los Angeles, CA 90001" +252735,Bose SoundSport Headphones,1,99.99,09/14/19 17:36,"55 1st St, New York City, NY 10001" +252736,ThinkPad Laptop,1,999.99,09/09/19 20:25,"585 West St, Seattle, WA 98101" +252737,Bose SoundSport Headphones,1,99.99,09/19/19 14:14,"540 5th St, Dallas, TX 75001" +252738,AAA Batteries (4-pack),1,2.99,09/05/19 18:27,"909 Wilson St, Dallas, TX 75001" +252739,USB-C Charging Cable,1,11.95,09/05/19 18:50,"961 9th St, New York City, NY 10001" +252740,Macbook Pro Laptop,1,1700,09/24/19 20:42,"557 11th St, Seattle, WA 98101" +252741,AA Batteries (4-pack),2,3.84,09/15/19 22:05,"85 Lake St, San Francisco, CA 94016" +252742,Wired Headphones,1,11.99,09/04/19 19:59,"352 Lakeview St, Boston, MA 02215" +252743,Wired Headphones,1,11.99,09/07/19 09:03,"843 8th St, Portland, ME 04101" +252744,AAA Batteries (4-pack),1,2.99,09/16/19 12:28,"924 South St, Portland, OR 97035" +252745,USB-C Charging Cable,1,11.95,09/30/19 11:58,"690 4th St, Dallas, TX 75001" +252746,AA Batteries (4-pack),1,3.84,09/01/19 22:08,"838 Church St, San Francisco, CA 94016" +252747,AA Batteries (4-pack),1,3.84,09/18/19 12:13,"640 Ridge St, New York City, NY 10001" +252748,34in Ultrawide Monitor,1,379.99,09/28/19 00:02,"771 Spruce St, Boston, MA 02215" +252749,LG Washing Machine,1,600.0,09/15/19 20:46,"63 North St, Boston, MA 02215" +252750,iPhone,1,700,09/27/19 00:19,"903 Meadow St, Boston, MA 02215" +252751,Google Phone,1,600,09/02/19 18:43,"342 Highland St, Atlanta, GA 30301" +252752,AAA Batteries (4-pack),3,2.99,09/15/19 11:59,"557 10th St, New York City, NY 10001" +252753,34in Ultrawide Monitor,1,379.99,09/01/19 15:38,"271 Cedar St, Los Angeles, CA 90001" +252754,Bose SoundSport Headphones,1,99.99,09/01/19 10:31,"991 9th St, Atlanta, GA 30301" +252755,USB-C Charging Cable,1,11.95,09/05/19 21:08,"307 Jackson St, Austin, TX 73301" +252756,27in 4K Gaming Monitor,1,389.99,09/21/19 11:59,"745 12th St, Boston, MA 02215" +252757,27in FHD Monitor,1,149.99,09/12/19 14:50,"803 Lincoln St, Los Angeles, CA 90001" +252758,AA Batteries (4-pack),4,3.84,09/18/19 19:01,"859 Cedar St, San Francisco, CA 94016" +252759,AA Batteries (4-pack),1,3.84,09/05/19 19:14,"324 12th St, New York City, NY 10001" +252760,iPhone,1,700,09/09/19 11:28,"333 Forest St, San Francisco, CA 94016" +252761,20in Monitor,1,109.99,09/05/19 16:32,"215 West St, Boston, MA 02215" +252762,Lightning Charging Cable,1,14.95,09/11/19 16:07,"579 Adams St, Los Angeles, CA 90001" +252763,Lightning Charging Cable,1,14.95,09/16/19 13:35,"355 13th St, Dallas, TX 75001" +252764,Flatscreen TV,1,300,09/23/19 12:11,"623 Washington St, Austin, TX 73301" +252765,Lightning Charging Cable,1,14.95,09/15/19 02:33,"26 Walnut St, Seattle, WA 98101" +252766,USB-C Charging Cable,1,11.95,09/18/19 11:21,"959 Main St, New York City, NY 10001" +252767,AA Batteries (4-pack),1,3.84,09/16/19 08:00,"518 Maple St, Los Angeles, CA 90001" +252768,Wired Headphones,1,11.99,09/12/19 23:51,"247 Adams St, Boston, MA 02215" +252769,Lightning Charging Cable,1,14.95,09/16/19 12:45,"294 Spruce St, Boston, MA 02215" +252770,34in Ultrawide Monitor,1,379.99,09/03/19 17:33,"713 4th St, San Francisco, CA 94016" +252771,Bose SoundSport Headphones,1,99.99,09/04/19 11:21,"993 Center St, Austin, TX 73301" +252772,20in Monitor,1,109.99,09/29/19 01:24,"232 River St, San Francisco, CA 94016" +252773,AAA Batteries (4-pack),1,2.99,09/22/19 12:55,"685 2nd St, San Francisco, CA 94016" +252774,Wired Headphones,1,11.99,09/08/19 20:18,"216 6th St, Los Angeles, CA 90001" +252775,iPhone,1,700,09/10/19 23:57,"645 Wilson St, New York City, NY 10001" +252775,Lightning Charging Cable,1,14.95,09/10/19 23:57,"645 Wilson St, New York City, NY 10001" +252776,Apple Airpods Headphones,1,150,09/30/19 23:07,"505 Lake St, Boston, MA 02215" +252777,AAA Batteries (4-pack),1,2.99,09/07/19 07:43,"325 8th St, San Francisco, CA 94016" +252778,Flatscreen TV,1,300,09/20/19 01:08,"152 River St, New York City, NY 10001" +252779,Flatscreen TV,1,300,09/23/19 10:33,"468 Chestnut St, Atlanta, GA 30301" +252780,Wired Headphones,1,11.99,09/12/19 13:28,"728 Lincoln St, Austin, TX 73301" +252781,USB-C Charging Cable,2,11.95,09/30/19 10:19,"282 5th St, Seattle, WA 98101" +252782,27in 4K Gaming Monitor,1,389.99,09/17/19 05:38,"334 South St, Dallas, TX 75001" +252783,USB-C Charging Cable,1,11.95,09/16/19 19:58,"58 Washington St, Dallas, TX 75001" +252784,USB-C Charging Cable,1,11.95,09/24/19 23:07,"62 1st St, New York City, NY 10001" +252785,Wired Headphones,1,11.99,09/10/19 16:33,"703 Jackson St, New York City, NY 10001" +252786,Google Phone,1,600,09/25/19 14:53,"92 8th St, Boston, MA 02215" +252787,AAA Batteries (4-pack),1,2.99,09/07/19 09:43,"822 14th St, San Francisco, CA 94016" +252788,Google Phone,1,600,09/05/19 17:18,"83 5th St, Atlanta, GA 30301" +252789,AA Batteries (4-pack),1,3.84,09/11/19 08:59,"324 9th St, Seattle, WA 98101" +252790,AAA Batteries (4-pack),1,2.99,09/01/19 13:07,"796 Dogwood St, San Francisco, CA 94016" +252791,Apple Airpods Headphones,1,150,09/03/19 13:42,"427 10th St, Seattle, WA 98101" +252792,Google Phone,1,600,09/29/19 18:27,"92 Cedar St, Atlanta, GA 30301" +252793,Apple Airpods Headphones,1,150,09/12/19 07:42,"377 West St, Seattle, WA 98101" +252794,Bose SoundSport Headphones,1,99.99,09/06/19 09:39,"941 9th St, Dallas, TX 75001" +252795,20in Monitor,1,109.99,09/18/19 09:03,"509 13th St, Boston, MA 02215" +252796,ThinkPad Laptop,1,999.99,09/21/19 15:08,"341 1st St, Boston, MA 02215" +252797,27in FHD Monitor,1,149.99,09/29/19 07:36,"827 Madison St, Boston, MA 02215" +252798,Macbook Pro Laptop,1,1700,09/16/19 22:04,"915 Meadow St, San Francisco, CA 94016" +252799,AAA Batteries (4-pack),2,2.99,09/01/19 20:58,"92 North St, San Francisco, CA 94016" +252800,Wired Headphones,1,11.99,09/02/19 11:06,"108 Church St, New York City, NY 10001" +252801,iPhone,1,700,09/25/19 17:11,"59 Dogwood St, New York City, NY 10001" +252802,AAA Batteries (4-pack),3,2.99,09/11/19 14:29,"60 13th St, Dallas, TX 75001" +252803,AA Batteries (4-pack),1,3.84,09/12/19 12:37,"376 River St, New York City, NY 10001" +252804,34in Ultrawide Monitor,1,379.99,09/24/19 09:02,"508 6th St, New York City, NY 10001" +252805,Wired Headphones,1,11.99,09/22/19 10:32,"779 Highland St, San Francisco, CA 94016" +252806,34in Ultrawide Monitor,1,379.99,09/10/19 15:17,"989 13th St, San Francisco, CA 94016" +252807,27in 4K Gaming Monitor,1,389.99,09/05/19 21:37,"1 Dogwood St, New York City, NY 10001" +252808,AAA Batteries (4-pack),4,2.99,09/07/19 13:54,"878 Ridge St, Atlanta, GA 30301" +252809,USB-C Charging Cable,1,11.95,09/22/19 20:57,"690 West St, San Francisco, CA 94016" +252810,Apple Airpods Headphones,1,150,09/10/19 22:51,"57 14th St, Boston, MA 02215" +252811,USB-C Charging Cable,3,11.95,09/14/19 05:27,"268 Meadow St, New York City, NY 10001" +252812,27in FHD Monitor,1,149.99,09/13/19 08:18,"661 5th St, San Francisco, CA 94016" +252813,iPhone,1,700,09/13/19 11:33,"373 12th St, New York City, NY 10001" +252814,AAA Batteries (4-pack),1,2.99,09/19/19 12:30,"15 West St, Atlanta, GA 30301" +252815,27in 4K Gaming Monitor,1,389.99,09/14/19 18:12,"874 Lincoln St, Boston, MA 02215" +252816,USB-C Charging Cable,2,11.95,09/28/19 12:42,"337 Lincoln St, Boston, MA 02215" +252817,Apple Airpods Headphones,1,150,09/04/19 11:33,"837 Ridge St, Atlanta, GA 30301" +252818,Wired Headphones,1,11.99,09/08/19 19:19,"819 Willow St, San Francisco, CA 94016" +252819,Apple Airpods Headphones,1,150,09/12/19 20:41,"945 Main St, San Francisco, CA 94016" +252820,Flatscreen TV,1,300,09/15/19 15:51,"498 11th St, New York City, NY 10001" +252821,Bose SoundSport Headphones,1,99.99,09/11/19 11:44,"173 Walnut St, Seattle, WA 98101" +252822,USB-C Charging Cable,1,11.95,09/19/19 20:41,"322 Lake St, Boston, MA 02215" +252823,Wired Headphones,1,11.99,09/18/19 18:16,"388 Sunset St, San Francisco, CA 94016" +252824,Apple Airpods Headphones,1,150,09/01/19 20:10,"698 Cedar St, San Francisco, CA 94016" +252825,Bose SoundSport Headphones,1,99.99,09/26/19 09:50,"471 Lincoln St, San Francisco, CA 94016" +252826,Wired Headphones,1,11.99,09/25/19 00:02,"167 Wilson St, Boston, MA 02215" +252827,34in Ultrawide Monitor,1,379.99,09/20/19 11:34,"367 Hill St, New York City, NY 10001" +252828,27in 4K Gaming Monitor,1,389.99,09/25/19 19:53,"956 9th St, Los Angeles, CA 90001" +252829,Lightning Charging Cable,1,14.95,09/29/19 08:37,"840 Johnson St, San Francisco, CA 94016" +252830,iPhone,1,700,09/10/19 13:44,"848 Jefferson St, Los Angeles, CA 90001" +252831,Flatscreen TV,1,300,09/03/19 16:05,"627 North St, San Francisco, CA 94016" +252832,Bose SoundSport Headphones,1,99.99,09/30/19 19:55,"867 Park St, New York City, NY 10001" +252833,Google Phone,1,600,09/23/19 21:55,"833 Park St, Atlanta, GA 30301" +252834,Apple Airpods Headphones,1,150,09/18/19 18:36,"479 11th St, San Francisco, CA 94016" +252835,AAA Batteries (4-pack),2,2.99,09/27/19 16:58,"777 Wilson St, San Francisco, CA 94016" +252836,AAA Batteries (4-pack),1,2.99,09/28/19 14:44,"205 River St, Los Angeles, CA 90001" +252837,Wired Headphones,1,11.99,09/03/19 21:34,"616 9th St, Los Angeles, CA 90001" +252838,Lightning Charging Cable,1,14.95,09/07/19 15:05,"141 4th St, San Francisco, CA 94016" +252839,AAA Batteries (4-pack),2,2.99,09/20/19 17:02,"807 Maple St, Los Angeles, CA 90001" +252840,27in 4K Gaming Monitor,1,389.99,09/09/19 07:56,"279 9th St, Atlanta, GA 30301" +252841,AAA Batteries (4-pack),1,2.99,09/02/19 22:07,"430 Lake St, Boston, MA 02215" +252842,AA Batteries (4-pack),1,3.84,09/27/19 22:32,"713 Elm St, New York City, NY 10001" +252843,Lightning Charging Cable,1,14.95,09/12/19 03:21,"363 West St, Los Angeles, CA 90001" +252844,AA Batteries (4-pack),1,3.84,09/25/19 10:44,"153 9th St, San Francisco, CA 94016" +252845,27in FHD Monitor,1,149.99,09/07/19 00:03,"923 Jefferson St, Dallas, TX 75001" +252846,iPhone,1,700,09/13/19 10:44,"917 Jefferson St, New York City, NY 10001" +252846,Flatscreen TV,1,300,09/13/19 10:44,"917 Jefferson St, New York City, NY 10001" +252847,Lightning Charging Cable,1,14.95,09/22/19 21:26,"829 1st St, Seattle, WA 98101" +252848,USB-C Charging Cable,1,11.95,09/23/19 10:48,"783 North St, Atlanta, GA 30301" +252849,27in FHD Monitor,1,149.99,09/05/19 09:32,"677 Hill St, San Francisco, CA 94016" +252850,34in Ultrawide Monitor,1,379.99,09/20/19 23:18,"794 Wilson St, San Francisco, CA 94016" +252850,AA Batteries (4-pack),2,3.84,09/20/19 23:18,"794 Wilson St, San Francisco, CA 94016" +252851,27in 4K Gaming Monitor,1,389.99,09/04/19 17:57,"32 Madison St, Dallas, TX 75001" +252852,AAA Batteries (4-pack),1,2.99,09/17/19 13:52,"839 Forest St, Boston, MA 02215" +252853,AAA Batteries (4-pack),1,2.99,09/21/19 16:06,"996 Wilson St, San Francisco, CA 94016" +252854,AA Batteries (4-pack),2,3.84,09/16/19 15:39,"407 Dogwood St, New York City, NY 10001" +252855,AA Batteries (4-pack),2,3.84,09/15/19 16:52,"157 Spruce St, Los Angeles, CA 90001" +252856,34in Ultrawide Monitor,1,379.99,09/15/19 20:13,"184 Pine St, Atlanta, GA 30301" +252857,Lightning Charging Cable,1,14.95,09/26/19 16:57,"529 Cedar St, Seattle, WA 98101" +252858,Wired Headphones,1,11.99,09/19/19 13:25,"630 9th St, Portland, ME 04101" +252859,Wired Headphones,1,11.99,09/04/19 19:38,"107 10th St, Seattle, WA 98101" +252860,Google Phone,1,600,09/17/19 16:31,"856 Forest St, Los Angeles, CA 90001" +252861,20in Monitor,1,109.99,09/30/19 12:25,"27 Walnut St, Boston, MA 02215" +252862,Apple Airpods Headphones,1,150,09/23/19 19:08,"589 13th St, San Francisco, CA 94016" +252863,AAA Batteries (4-pack),1,2.99,09/15/19 09:39,"893 Adams St, New York City, NY 10001" +252864,AAA Batteries (4-pack),1,2.99,09/26/19 12:18,"86 North St, Austin, TX 73301" +252865,USB-C Charging Cable,1,11.95,09/12/19 11:23,"181 Sunset St, Los Angeles, CA 90001" +252866,LG Dryer,1,600.0,09/22/19 12:47,"382 14th St, Los Angeles, CA 90001" +252867,27in FHD Monitor,1,149.99,09/06/19 21:35,"694 Lake St, Dallas, TX 75001" +252868,Lightning Charging Cable,1,14.95,09/30/19 11:13,"450 Washington St, Portland, OR 97035" +252869,27in FHD Monitor,1,149.99,09/19/19 20:48,"147 Highland St, Atlanta, GA 30301" +252870,Apple Airpods Headphones,1,150,09/03/19 17:32,"930 Walnut St, San Francisco, CA 94016" +252871,Wired Headphones,1,11.99,09/08/19 21:32,"223 West St, New York City, NY 10001" +252872,AA Batteries (4-pack),1,3.84,09/22/19 21:57,"310 12th St, San Francisco, CA 94016" +252873,Lightning Charging Cable,1,14.95,09/07/19 23:55,"756 North St, Boston, MA 02215" +252874,AA Batteries (4-pack),3,3.84,09/25/19 07:35,"244 Johnson St, New York City, NY 10001" +252875,AA Batteries (4-pack),2,3.84,09/11/19 11:55,"317 11th St, San Francisco, CA 94016" +252876,Wired Headphones,1,11.99,09/11/19 21:43,"328 5th St, Boston, MA 02215" +252877,Macbook Pro Laptop,1,1700,09/17/19 21:25,"789 7th St, Boston, MA 02215" +252878,Vareebadd Phone,1,400,09/02/19 09:18,"998 Sunset St, Dallas, TX 75001" +252879,AA Batteries (4-pack),1,3.84,09/23/19 19:12,"607 Johnson St, Atlanta, GA 30301" +252880,Apple Airpods Headphones,1,150,09/17/19 17:47,"837 South St, Portland, OR 97035" +252881,Apple Airpods Headphones,1,150,09/26/19 14:22,"655 Willow St, Atlanta, GA 30301" +252882,USB-C Charging Cable,1,11.95,09/09/19 11:48,"149 Hickory St, Dallas, TX 75001" +252883,Wired Headphones,1,11.99,09/12/19 21:10,"366 Lincoln St, Dallas, TX 75001" +252884,AA Batteries (4-pack),2,3.84,09/22/19 12:08,"811 Hickory St, Los Angeles, CA 90001" +252885,20in Monitor,1,109.99,09/01/19 16:24,"636 14th St, Boston, MA 02215" +252886,Wired Headphones,1,11.99,09/16/19 19:05,"187 Forest St, Los Angeles, CA 90001" +252887,AA Batteries (4-pack),2,3.84,09/06/19 23:09,"279 2nd St, Atlanta, GA 30301" +252888,Wired Headphones,1,11.99,09/20/19 04:39,"176 11th St, Portland, OR 97035" +252889,20in Monitor,1,109.99,09/25/19 14:11,"347 Hill St, Atlanta, GA 30301" +252890,Google Phone,1,600,09/11/19 11:26,"892 Lakeview St, Los Angeles, CA 90001" +252891,34in Ultrawide Monitor,1,379.99,09/10/19 18:28,"404 4th St, New York City, NY 10001" +252892,Flatscreen TV,1,300,09/26/19 00:24,"125 Sunset St, San Francisco, CA 94016" +252893,Flatscreen TV,1,300,09/05/19 19:46,"259 Walnut St, Los Angeles, CA 90001" +252894,Macbook Pro Laptop,1,1700,09/26/19 12:11,"191 Cherry St, San Francisco, CA 94016" +252895,Apple Airpods Headphones,1,150,09/05/19 13:17,"195 Park St, San Francisco, CA 94016" +252896,USB-C Charging Cable,1,11.95,09/10/19 13:32,"183 Forest St, Boston, MA 02215" +252897,Google Phone,1,600,09/07/19 16:52,"390 9th St, San Francisco, CA 94016" +252898,Bose SoundSport Headphones,1,99.99,09/02/19 16:13,"852 Cedar St, San Francisco, CA 94016" +252899,Bose SoundSport Headphones,1,99.99,09/29/19 09:42,"675 8th St, San Francisco, CA 94016" +252900,USB-C Charging Cable,1,11.95,09/02/19 07:53,"762 Cherry St, New York City, NY 10001" +252901,Vareebadd Phone,1,400,09/20/19 06:51,"837 Hickory St, Atlanta, GA 30301" +252902,Lightning Charging Cable,1,14.95,09/29/19 17:35,"768 Madison St, San Francisco, CA 94016" +252903,Wired Headphones,1,11.99,09/26/19 19:40,"123 7th St, Los Angeles, CA 90001" +252904,USB-C Charging Cable,1,11.95,09/10/19 18:34,"172 5th St, Seattle, WA 98101" +252905,AA Batteries (4-pack),1,3.84,09/13/19 09:13,"900 Cherry St, Portland, OR 97035" +252906,ThinkPad Laptop,1,999.99,09/28/19 20:16,"233 South St, New York City, NY 10001" +252907,iPhone,1,700,09/26/19 13:16,"344 Walnut St, San Francisco, CA 94016" +252907,Lightning Charging Cable,2,14.95,09/26/19 13:16,"344 Walnut St, San Francisco, CA 94016" +252908,AA Batteries (4-pack),2,3.84,09/24/19 12:36,"794 Spruce St, Boston, MA 02215" +252908,Bose SoundSport Headphones,1,99.99,09/24/19 12:36,"794 Spruce St, Boston, MA 02215" +252909,Apple Airpods Headphones,1,150,09/19/19 13:58,"198 Pine St, Los Angeles, CA 90001" +252910,Apple Airpods Headphones,1,150,09/16/19 14:08,"168 Cherry St, Boston, MA 02215" +252911,Bose SoundSport Headphones,1,99.99,09/20/19 18:51,"641 Willow St, New York City, NY 10001" +252912,Wired Headphones,1,11.99,09/27/19 20:08,"770 Hickory St, Seattle, WA 98101" +252913,AAA Batteries (4-pack),2,2.99,09/08/19 18:22,"672 Church St, Austin, TX 73301" +252914,Bose SoundSport Headphones,1,99.99,09/16/19 18:47,"923 Chestnut St, Seattle, WA 98101" +252915,Lightning Charging Cable,1,14.95,09/25/19 18:56,"379 Cherry St, Dallas, TX 75001" +252916,iPhone,1,700,09/08/19 22:23,"555 South St, Atlanta, GA 30301" +252917,27in 4K Gaming Monitor,1,389.99,09/20/19 18:01,"684 North St, Los Angeles, CA 90001" +252918,USB-C Charging Cable,2,11.95,09/21/19 16:05,"956 Ridge St, Seattle, WA 98101" +252919,Bose SoundSport Headphones,1,99.99,09/04/19 07:56,"292 Wilson St, San Francisco, CA 94016" +252920,USB-C Charging Cable,1,11.95,09/04/19 14:37,"255 Lakeview St, Los Angeles, CA 90001" +252921,Google Phone,1,600,09/26/19 13:01,"181 Cherry St, San Francisco, CA 94016" +252921,Bose SoundSport Headphones,1,99.99,09/26/19 13:01,"181 Cherry St, San Francisco, CA 94016" +252922,27in FHD Monitor,1,149.99,09/27/19 01:14,"383 Hickory St, San Francisco, CA 94016" +252923,USB-C Charging Cable,1,11.95,09/29/19 19:56,"653 5th St, Los Angeles, CA 90001" +252923,Lightning Charging Cable,1,14.95,09/29/19 19:56,"653 5th St, Los Angeles, CA 90001" +252924,34in Ultrawide Monitor,1,379.99,09/17/19 14:39,"861 South St, Dallas, TX 75001" +252925,USB-C Charging Cable,1,11.95,09/30/19 11:35,"376 South St, Los Angeles, CA 90001" +252926,Flatscreen TV,1,300,09/12/19 13:55,"821 Dogwood St, Austin, TX 73301" +252927,iPhone,1,700,09/07/19 18:46,"910 Jackson St, Atlanta, GA 30301" +252927,Lightning Charging Cable,1,14.95,09/07/19 18:46,"910 Jackson St, Atlanta, GA 30301" +252928,ThinkPad Laptop,1,999.99,09/05/19 10:30,"488 Dogwood St, San Francisco, CA 94016" +252929,AA Batteries (4-pack),1,3.84,09/27/19 17:20,"664 Sunset St, New York City, NY 10001" +252930,AAA Batteries (4-pack),1,2.99,09/30/19 18:51,"999 Jefferson St, San Francisco, CA 94016" +252931,Flatscreen TV,1,300,09/01/19 18:49,"201 Hickory St, Atlanta, GA 30301" +252932,AAA Batteries (4-pack),1,2.99,09/10/19 16:39,"610 Washington St, Austin, TX 73301" +252933,USB-C Charging Cable,1,11.95,09/13/19 11:38,"76 Walnut St, Boston, MA 02215" +252934,AA Batteries (4-pack),1,3.84,09/23/19 21:14,"924 Lake St, Dallas, TX 75001" +252934,AAA Batteries (4-pack),2,2.99,09/23/19 21:14,"924 Lake St, Dallas, TX 75001" +252935,USB-C Charging Cable,1,11.95,09/15/19 18:10,"922 Lincoln St, Los Angeles, CA 90001" +252936,20in Monitor,1,109.99,09/27/19 08:35,"970 Maple St, San Francisco, CA 94016" +252937,Bose SoundSport Headphones,1,99.99,09/29/19 22:53,"125 Jackson St, Portland, OR 97035" +252938,Wired Headphones,1,11.99,09/12/19 00:20,"759 13th St, New York City, NY 10001" +252939,AAA Batteries (4-pack),1,2.99,09/05/19 09:05,"265 2nd St, Seattle, WA 98101" +252940,AA Batteries (4-pack),1,3.84,09/14/19 21:46,"360 9th St, New York City, NY 10001" +252941,Wired Headphones,1,11.99,09/03/19 13:21,"352 Highland St, San Francisco, CA 94016" +252942,Lightning Charging Cable,1,14.95,09/22/19 19:34,"584 7th St, Austin, TX 73301" +252943,27in FHD Monitor,1,149.99,09/30/19 00:08,"346 6th St, New York City, NY 10001" +252944,Wired Headphones,1,11.99,09/02/19 20:11,"586 Hill St, Seattle, WA 98101" +252945,AA Batteries (4-pack),3,3.84,09/30/19 23:02,"727 South St, Atlanta, GA 30301" +252946,AA Batteries (4-pack),2,3.84,09/11/19 13:43,"447 10th St, Atlanta, GA 30301" +252947,Lightning Charging Cable,1,14.95,09/13/19 18:34,"783 Johnson St, New York City, NY 10001" +252948,Vareebadd Phone,1,400,09/24/19 12:54,"874 Park St, Boston, MA 02215" +252948,USB-C Charging Cable,1,11.95,09/24/19 12:54,"874 Park St, Boston, MA 02215" +252949,Wired Headphones,1,11.99,09/04/19 19:00,"924 North St, New York City, NY 10001" +252950,AA Batteries (4-pack),1,3.84,09/15/19 15:28,"352 Hickory St, Seattle, WA 98101" +252951,27in FHD Monitor,1,149.99,09/12/19 10:09,"65 Main St, Los Angeles, CA 90001" +252952,Flatscreen TV,1,300,09/27/19 14:43,"709 Madison St, San Francisco, CA 94016" +252953,Wired Headphones,1,11.99,09/08/19 16:41,"52 7th St, San Francisco, CA 94016" +252954,AA Batteries (4-pack),1,3.84,09/25/19 20:52,"343 Willow St, Boston, MA 02215" +252955,Wired Headphones,1,11.99,09/25/19 11:21,"528 Hickory St, Dallas, TX 75001" +252956,Lightning Charging Cable,1,14.95,09/12/19 07:00,"526 8th St, San Francisco, CA 94016" +252957,Apple Airpods Headphones,1,150,09/22/19 12:30,"340 Chestnut St, San Francisco, CA 94016" +252958,AAA Batteries (4-pack),1,2.99,09/14/19 20:24,"13 Spruce St, Dallas, TX 75001" +252959,USB-C Charging Cable,1,11.95,09/16/19 12:23,"281 Washington St, Austin, TX 73301" +252960,34in Ultrawide Monitor,1,379.99,09/02/19 20:05,"719 North St, Dallas, TX 75001" +252961,Apple Airpods Headphones,1,150,09/01/19 12:55,"929 Chestnut St, Los Angeles, CA 90001" +252962,Macbook Pro Laptop,1,1700,09/17/19 16:06,"497 Dogwood St, San Francisco, CA 94016" +252963,iPhone,1,700,09/03/19 16:50,"49 Elm St, San Francisco, CA 94016" +252964,AAA Batteries (4-pack),1,2.99,09/27/19 15:28,"201 North St, Dallas, TX 75001" +252965,USB-C Charging Cable,1,11.95,09/16/19 23:40,"683 Washington St, Los Angeles, CA 90001" +252966,Apple Airpods Headphones,1,150,09/29/19 19:10,"956 South St, Los Angeles, CA 90001" +252967,LG Dryer,1,600.0,09/14/19 09:40,"409 Walnut St, San Francisco, CA 94016" +252968,USB-C Charging Cable,1,11.95,09/08/19 07:22,"584 Madison St, Dallas, TX 75001" +252969,Wired Headphones,1,11.99,09/09/19 14:07,"344 Park St, New York City, NY 10001" +252970,Apple Airpods Headphones,1,150,09/14/19 18:39,"408 Spruce St, Portland, ME 04101" +252971,27in FHD Monitor,1,149.99,09/06/19 12:03,"401 Cherry St, Seattle, WA 98101" +252972,USB-C Charging Cable,1,11.95,09/27/19 17:24,"51 9th St, Los Angeles, CA 90001" +252973,AA Batteries (4-pack),1,3.84,09/24/19 15:11,"689 Main St, San Francisco, CA 94016" +252974,AA Batteries (4-pack),2,3.84,09/15/19 08:33,"846 9th St, San Francisco, CA 94016" +252975,USB-C Charging Cable,1,11.95,09/18/19 22:28,"9 Pine St, Atlanta, GA 30301" +252976,AA Batteries (4-pack),1,3.84,09/06/19 18:13,"486 Spruce St, San Francisco, CA 94016" +252977,USB-C Charging Cable,1,11.95,09/20/19 20:53,"807 Walnut St, Seattle, WA 98101" +252978,ThinkPad Laptop,1,999.99,09/20/19 10:37,"127 Willow St, Los Angeles, CA 90001" +252979,AA Batteries (4-pack),2,3.84,09/04/19 20:23,"18 Meadow St, San Francisco, CA 94016" +252980,Wired Headphones,1,11.99,09/27/19 13:07,"74 Spruce St, Los Angeles, CA 90001" +252981,AAA Batteries (4-pack),1,2.99,09/04/19 16:23,"894 Lake St, Seattle, WA 98101" +252982,Bose SoundSport Headphones,1,99.99,09/13/19 10:10,"776 Center St, New York City, NY 10001" +252983,AAA Batteries (4-pack),1,2.99,09/07/19 22:24,"177 Lakeview St, Boston, MA 02215" +252984,USB-C Charging Cable,1,11.95,09/26/19 13:28,"490 Lake St, Los Angeles, CA 90001" +252985,Lightning Charging Cable,1,14.95,09/23/19 12:39,"3 Wilson St, Los Angeles, CA 90001" +252986,AAA Batteries (4-pack),1,2.99,09/30/19 15:14,"292 Sunset St, San Francisco, CA 94016" +252987,Wired Headphones,1,11.99,09/25/19 09:43,"149 Church St, San Francisco, CA 94016" +252988,AAA Batteries (4-pack),1,2.99,09/05/19 14:56,"150 Walnut St, Los Angeles, CA 90001" +252989,27in FHD Monitor,1,149.99,09/02/19 20:41,"47 Hickory St, Portland, OR 97035" +252990,USB-C Charging Cable,1,11.95,09/03/19 00:04,"240 7th St, Portland, OR 97035" +252991,AAA Batteries (4-pack),1,2.99,09/15/19 21:17,"362 Chestnut St, New York City, NY 10001" +252992,USB-C Charging Cable,1,11.95,09/30/19 09:12,"219 Dogwood St, New York City, NY 10001" +252993,AA Batteries (4-pack),1,3.84,09/05/19 21:01,"208 South St, Los Angeles, CA 90001" +252994,34in Ultrawide Monitor,1,379.99,09/04/19 23:12,"344 5th St, Seattle, WA 98101" +252995,Apple Airpods Headphones,1,150,09/14/19 16:04,"831 7th St, Dallas, TX 75001" +252996,Macbook Pro Laptop,1,1700,09/07/19 07:41,"234 West St, Boston, MA 02215" +252997,27in 4K Gaming Monitor,1,389.99,09/24/19 14:23,"262 Elm St, Boston, MA 02215" +252998,Vareebadd Phone,1,400,09/01/19 09:53,"811 Jackson St, Portland, OR 97035" +252998,USB-C Charging Cable,1,11.95,09/01/19 09:53,"811 Jackson St, Portland, OR 97035" +252999,USB-C Charging Cable,2,11.95,09/10/19 10:02,"820 Dogwood St, San Francisco, CA 94016" +253000,USB-C Charging Cable,1,11.95,09/18/19 15:26,"327 Cedar St, Dallas, TX 75001" +253001,AAA Batteries (4-pack),1,2.99,09/10/19 12:51,"167 Lake St, San Francisco, CA 94016" +253002,20in Monitor,1,109.99,09/20/19 15:21,"441 Ridge St, San Francisco, CA 94016" +253003,iPhone,1,700,09/12/19 17:59,"588 Cherry St, Portland, OR 97035" +253004,Apple Airpods Headphones,1,150,09/10/19 14:34,"192 12th St, Dallas, TX 75001" +253005,Apple Airpods Headphones,1,150,09/11/19 15:58,"389 Hill St, Atlanta, GA 30301" +253006,Apple Airpods Headphones,1,150,09/21/19 12:49,"329 Madison St, Los Angeles, CA 90001" +253007,AAA Batteries (4-pack),1,2.99,09/22/19 20:21,"291 Washington St, Seattle, WA 98101" +253008,Wired Headphones,1,11.99,09/01/19 20:53,"843 Chestnut St, Austin, TX 73301" +253008,AA Batteries (4-pack),2,3.84,09/01/19 20:53,"843 Chestnut St, Austin, TX 73301" +253009,Flatscreen TV,1,300,09/03/19 11:06,"88 Maple St, San Francisco, CA 94016" +253010,AAA Batteries (4-pack),3,2.99,09/02/19 21:20,"604 Madison St, Dallas, TX 75001" +253011,34in Ultrawide Monitor,1,379.99,09/27/19 20:12,"281 14th St, Los Angeles, CA 90001" +253012,Lightning Charging Cable,1,14.95,09/28/19 08:34,"898 Sunset St, New York City, NY 10001" +253013,Google Phone,1,600,09/16/19 01:06,"64 River St, New York City, NY 10001" +253014,27in FHD Monitor,1,149.99,09/15/19 21:45,"58 Park St, New York City, NY 10001" +253015,Wired Headphones,1,11.99,09/22/19 11:33,"913 Walnut St, New York City, NY 10001" +253016,USB-C Charging Cable,1,11.95,09/20/19 06:57,"678 Jefferson St, Boston, MA 02215" +253017,AAA Batteries (4-pack),1,2.99,09/30/19 21:43,"953 Pine St, Boston, MA 02215" +253018,Google Phone,1,600,09/24/19 09:27,"226 Meadow St, New York City, NY 10001" +253019,20in Monitor,1,109.99,09/25/19 19:23,"950 Chestnut St, San Francisco, CA 94016" +253020,AA Batteries (4-pack),2,3.84,09/02/19 18:03,"633 2nd St, Austin, TX 73301" +253021,Bose SoundSport Headphones,1,99.99,09/30/19 07:28,"951 Cherry St, Los Angeles, CA 90001" +253022,20in Monitor,1,109.99,09/27/19 21:05,"634 14th St, Seattle, WA 98101" +253023,Lightning Charging Cable,1,14.95,09/26/19 23:10,"763 Elm St, Atlanta, GA 30301" +253024,AAA Batteries (4-pack),2,2.99,09/27/19 13:45,"481 12th St, San Francisco, CA 94016" +253025,Flatscreen TV,1,300,09/17/19 13:00,"220 Jackson St, Dallas, TX 75001" +253026,Lightning Charging Cable,1,14.95,09/19/19 18:33,"814 Highland St, Los Angeles, CA 90001" +253027,AAA Batteries (4-pack),1,2.99,09/22/19 10:52,"573 Center St, San Francisco, CA 94016" +253028,iPhone,1,700,09/27/19 19:22,"395 Hill St, San Francisco, CA 94016" +253029,27in 4K Gaming Monitor,1,389.99,09/27/19 14:24,"702 Elm St, San Francisco, CA 94016" +253029,34in Ultrawide Monitor,1,379.99,09/27/19 14:24,"702 Elm St, San Francisco, CA 94016" +253030,27in FHD Monitor,1,149.99,09/17/19 10:06,"197 Washington St, Portland, OR 97035" +253031,Wired Headphones,1,11.99,09/13/19 19:11,"561 10th St, Atlanta, GA 30301" +253032,AA Batteries (4-pack),1,3.84,09/19/19 20:23,"54 Walnut St, Los Angeles, CA 90001" +253033,20in Monitor,1,109.99,09/17/19 12:48,"116 Lakeview St, San Francisco, CA 94016" +253034,Wired Headphones,1,11.99,09/20/19 19:02,"317 Hill St, Atlanta, GA 30301" +253035,Apple Airpods Headphones,1,150,09/23/19 22:17,"124 Spruce St, Portland, OR 97035" +253036,27in 4K Gaming Monitor,1,389.99,09/12/19 14:55,"824 Cedar St, San Francisco, CA 94016" +253037,ThinkPad Laptop,1,999.99,09/14/19 19:33,"867 Johnson St, New York City, NY 10001" +253038,Lightning Charging Cable,1,14.95,09/01/19 18:33,"26 Madison St, Atlanta, GA 30301" +253039,AA Batteries (4-pack),1,3.84,09/24/19 16:42,"16 Johnson St, Austin, TX 73301" +253040,Apple Airpods Headphones,1,150,09/29/19 16:06,"796 Johnson St, San Francisco, CA 94016" +253041,Lightning Charging Cable,1,14.95,09/24/19 00:34,"48 Lake St, San Francisco, CA 94016" +253042,27in 4K Gaming Monitor,1,389.99,09/10/19 09:35,"481 Dogwood St, Seattle, WA 98101" +253043,Lightning Charging Cable,1,14.95,09/29/19 15:48,"820 Hickory St, Dallas, TX 75001" +253044,USB-C Charging Cable,1,11.95,09/30/19 22:56,"487 Johnson St, Atlanta, GA 30301" +253045,AAA Batteries (4-pack),1,2.99,09/18/19 02:11,"534 Chestnut St, Atlanta, GA 30301" +253046,Apple Airpods Headphones,1,150,09/12/19 11:56,"161 Johnson St, Atlanta, GA 30301" +253047,AAA Batteries (4-pack),2,2.99,09/05/19 07:49,"452 Cedar St, Boston, MA 02215" +253048,27in FHD Monitor,1,149.99,09/19/19 19:20,"15 Adams St, San Francisco, CA 94016" +253049,AA Batteries (4-pack),1,3.84,09/24/19 19:42,"132 Adams St, Seattle, WA 98101" +253050,iPhone,1,700,09/19/19 08:22,"151 Highland St, New York City, NY 10001" +253051,Lightning Charging Cable,1,14.95,09/06/19 15:27,"199 Main St, Portland, OR 97035" +253052,Bose SoundSport Headphones,1,99.99,09/29/19 10:23,"812 River St, Atlanta, GA 30301" +253053,AA Batteries (4-pack),1,3.84,09/01/19 14:50,"169 4th St, Los Angeles, CA 90001" +253054,Bose SoundSport Headphones,1,99.99,09/18/19 22:58,"339 Spruce St, San Francisco, CA 94016" +253055,27in 4K Gaming Monitor,1,389.99,09/02/19 07:42,"138 Madison St, Seattle, WA 98101" +253056,27in 4K Gaming Monitor,1,389.99,09/29/19 23:04,"970 Elm St, San Francisco, CA 94016" +253057,34in Ultrawide Monitor,1,379.99,09/29/19 20:34,"229 Elm St, San Francisco, CA 94016" +253058,USB-C Charging Cable,1,11.95,09/04/19 09:14,"168 Hill St, New York City, NY 10001" +253059,Bose SoundSport Headphones,1,99.99,09/30/19 14:24,"565 10th St, San Francisco, CA 94016" +253060,ThinkPad Laptop,1,999.99,09/08/19 11:23,"838 Pine St, New York City, NY 10001" +253061,27in FHD Monitor,1,149.99,09/06/19 13:20,"377 Madison St, Los Angeles, CA 90001" +253062,Bose SoundSport Headphones,1,99.99,09/08/19 14:09,"692 Walnut St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +253063,34in Ultrawide Monitor,1,379.99,09/08/19 12:48,"636 Adams St, Los Angeles, CA 90001" +253064,Wired Headphones,1,11.99,09/09/19 20:06,"242 Chestnut St, New York City, NY 10001" +253065,Lightning Charging Cable,1,14.95,09/21/19 13:47,"879 Lakeview St, Austin, TX 73301" +253066,Apple Airpods Headphones,1,150,09/30/19 18:07,"456 Lakeview St, Los Angeles, CA 90001" +253067,Macbook Pro Laptop,1,1700,09/03/19 18:19,"79 14th St, San Francisco, CA 94016" +253068,AAA Batteries (4-pack),1,2.99,09/03/19 20:30,"355 Jefferson St, Seattle, WA 98101" +253069,Wired Headphones,1,11.99,09/19/19 09:31,"983 South St, Austin, TX 73301" +253070,34in Ultrawide Monitor,1,379.99,09/03/19 23:52,"87 Chestnut St, Dallas, TX 75001" +253071,27in 4K Gaming Monitor,1,389.99,09/11/19 20:20,"345 Washington St, Los Angeles, CA 90001" +253072,AA Batteries (4-pack),1,3.84,09/07/19 14:01,"996 Maple St, San Francisco, CA 94016" +253073,Lightning Charging Cable,1,14.95,09/20/19 17:31,"754 Church St, New York City, NY 10001" +253074,Wired Headphones,1,11.99,09/08/19 21:31,"403 6th St, Boston, MA 02215" +253075,Wired Headphones,1,11.99,09/25/19 00:23,"766 Park St, New York City, NY 10001" +253076,AA Batteries (4-pack),3,3.84,09/19/19 15:05,"190 Jefferson St, San Francisco, CA 94016" +253077,27in FHD Monitor,1,149.99,09/22/19 10:48,"864 Lincoln St, Los Angeles, CA 90001" +253078,27in FHD Monitor,1,149.99,09/18/19 19:14,"161 Lake St, Boston, MA 02215" +253079,Wired Headphones,1,11.99,09/27/19 21:31,"990 5th St, New York City, NY 10001" +253080,27in 4K Gaming Monitor,1,389.99,09/22/19 16:29,"330 6th St, San Francisco, CA 94016" +253081,Flatscreen TV,1,300,09/16/19 13:21,"520 Cedar St, New York City, NY 10001" +253082,USB-C Charging Cable,2,11.95,09/24/19 17:23,"554 14th St, New York City, NY 10001" +253083,Apple Airpods Headphones,1,150,09/26/19 14:37,"345 Washington St, Los Angeles, CA 90001" +253084,Lightning Charging Cable,1,14.95,09/13/19 08:09,"501 Willow St, New York City, NY 10001" +253085,AA Batteries (4-pack),1,3.84,09/25/19 19:05,"481 1st St, Seattle, WA 98101" +253086,AA Batteries (4-pack),3,3.84,09/03/19 14:43,"127 Dogwood St, San Francisco, CA 94016" +253087,USB-C Charging Cable,1,11.95,09/28/19 08:27,"213 Washington St, San Francisco, CA 94016" +253088,LG Washing Machine,1,600.0,09/29/19 11:07,"178 Lincoln St, Portland, OR 97035" +253089,AA Batteries (4-pack),2,3.84,09/21/19 18:53,"847 Jefferson St, Seattle, WA 98101" +253090,AA Batteries (4-pack),1,3.84,09/17/19 12:16,"318 12th St, San Francisco, CA 94016" +253091,AAA Batteries (4-pack),1,2.99,09/26/19 21:18,"946 Park St, Los Angeles, CA 90001" +253092,AA Batteries (4-pack),2,3.84,09/26/19 11:35,"331 2nd St, Atlanta, GA 30301" +253093,AA Batteries (4-pack),1,3.84,09/03/19 20:21,"327 Chestnut St, Atlanta, GA 30301" +253094,Bose SoundSport Headphones,1,99.99,09/16/19 12:03,"711 North St, Atlanta, GA 30301" +253095,Lightning Charging Cable,1,14.95,09/30/19 17:05,"400 Sunset St, New York City, NY 10001" +253096,Apple Airpods Headphones,1,150,09/04/19 20:29,"350 Jefferson St, Boston, MA 02215" +253097,iPhone,1,700,09/29/19 18:56,"504 7th St, San Francisco, CA 94016" +253098,27in FHD Monitor,1,149.99,09/27/19 13:03,"596 9th St, Los Angeles, CA 90001" +253099,Apple Airpods Headphones,1,150,09/27/19 17:12,"358 9th St, Atlanta, GA 30301" +253100,AAA Batteries (4-pack),1,2.99,09/03/19 20:33,"697 14th St, Atlanta, GA 30301" +253101,Apple Airpods Headphones,1,150,09/01/19 14:31,"290 Lincoln St, San Francisco, CA 94016" +253102,Wired Headphones,1,11.99,09/27/19 13:48,"284 9th St, Los Angeles, CA 90001" +253103,AAA Batteries (4-pack),1,2.99,09/26/19 08:58,"115 Chestnut St, New York City, NY 10001" +253104,USB-C Charging Cable,1,11.95,09/12/19 19:56,"554 10th St, New York City, NY 10001" +253105,Bose SoundSport Headphones,1,99.99,09/03/19 16:19,"152 Jackson St, Seattle, WA 98101" +253106,27in 4K Gaming Monitor,1,389.99,09/12/19 21:17,"24 4th St, Austin, TX 73301" +253107,AA Batteries (4-pack),1,3.84,09/03/19 18:51,"193 Maple St, San Francisco, CA 94016" +253108,34in Ultrawide Monitor,1,379.99,09/16/19 11:16,"676 4th St, Atlanta, GA 30301" +253109,Macbook Pro Laptop,1,1700,09/29/19 11:06,"240 Church St, Los Angeles, CA 90001" +253110,USB-C Charging Cable,1,11.95,09/22/19 12:42,"987 7th St, San Francisco, CA 94016" +253111,AAA Batteries (4-pack),3,2.99,09/01/19 10:58,"811 Maple St, San Francisco, CA 94016" +253112,AA Batteries (4-pack),1,3.84,09/11/19 12:15,"539 Maple St, San Francisco, CA 94016" +253113,LG Washing Machine,1,600.0,09/25/19 18:20,"179 Willow St, Austin, TX 73301" +253114,Apple Airpods Headphones,1,150,09/27/19 13:27,"570 Wilson St, San Francisco, CA 94016" +253115,Vareebadd Phone,1,400,09/07/19 11:10,"1 Elm St, Boston, MA 02215" +253115,Wired Headphones,1,11.99,09/07/19 11:10,"1 Elm St, Boston, MA 02215" +253116,Apple Airpods Headphones,1,150,09/13/19 17:28,"996 2nd St, Boston, MA 02215" +253117,Bose SoundSport Headphones,1,99.99,09/19/19 22:07,"810 Hickory St, San Francisco, CA 94016" +253118,AAA Batteries (4-pack),1,2.99,09/06/19 21:28,"322 Hill St, Dallas, TX 75001" +253119,Lightning Charging Cable,1,14.95,09/12/19 17:23,"90 5th St, New York City, NY 10001" +253120,27in FHD Monitor,1,149.99,09/27/19 23:09,"29 Ridge St, Los Angeles, CA 90001" +253121,AA Batteries (4-pack),1,3.84,09/10/19 20:05,"396 Elm St, San Francisco, CA 94016" +253122,Wired Headphones,1,11.99,09/03/19 20:43,"165 Cherry St, Atlanta, GA 30301" +253123,Apple Airpods Headphones,1,150,09/05/19 09:06,"147 12th St, Atlanta, GA 30301" +253124,AAA Batteries (4-pack),1,2.99,09/08/19 19:29,"201 Adams St, Los Angeles, CA 90001" +253125,Wired Headphones,1,11.99,09/11/19 15:04,"268 Hickory St, New York City, NY 10001" +253126,Bose SoundSport Headphones,1,99.99,09/21/19 09:23,"262 8th St, Los Angeles, CA 90001" +253127,Vareebadd Phone,1,400,09/15/19 22:13,"945 Lincoln St, Seattle, WA 98101" +253128,Wired Headphones,1,11.99,09/02/19 14:37,"352 Pine St, Seattle, WA 98101" +253129,AA Batteries (4-pack),1,3.84,09/13/19 19:15,"987 10th St, New York City, NY 10001" +253130,iPhone,1,700,09/26/19 14:41,"535 Main St, Dallas, TX 75001" +253130,Lightning Charging Cable,2,14.95,09/26/19 14:41,"535 Main St, Dallas, TX 75001" +253131,AA Batteries (4-pack),1,3.84,09/08/19 20:53,"443 9th St, Boston, MA 02215" +253132,27in 4K Gaming Monitor,1,389.99,09/24/19 21:54,"94 Lakeview St, Dallas, TX 75001" +253133,USB-C Charging Cable,1,11.95,09/13/19 22:19,"579 North St, San Francisco, CA 94016" +253134,iPhone,1,700,09/01/19 10:14,"275 Chestnut St, Los Angeles, CA 90001" +253135,34in Ultrawide Monitor,1,379.99,09/27/19 13:33,"618 Hickory St, San Francisco, CA 94016" +253136,34in Ultrawide Monitor,1,379.99,09/28/19 14:42,"428 Meadow St, New York City, NY 10001" +253137,AA Batteries (4-pack),1,3.84,09/10/19 10:53,"83 River St, New York City, NY 10001" +253138,Apple Airpods Headphones,1,150,09/05/19 11:52,"560 Jackson St, Dallas, TX 75001" +253139,Lightning Charging Cable,1,14.95,09/16/19 21:37,"501 Hill St, Dallas, TX 75001" +253140,34in Ultrawide Monitor,1,379.99,09/26/19 16:55,"461 Wilson St, San Francisco, CA 94016" +253141,Bose SoundSport Headphones,1,99.99,09/18/19 19:38,"810 4th St, Seattle, WA 98101" +253142,Flatscreen TV,1,300,09/06/19 09:11,"99 11th St, Seattle, WA 98101" +253143,Google Phone,1,600,09/13/19 16:23,"365 13th St, Los Angeles, CA 90001" +253144,USB-C Charging Cable,1,11.95,09/06/19 22:01,"104 Forest St, San Francisco, CA 94016" +253145,Wired Headphones,1,11.99,09/13/19 11:40,"999 7th St, Seattle, WA 98101" +253146,Lightning Charging Cable,1,14.95,09/02/19 21:13,"745 Wilson St, New York City, NY 10001" +253147,Lightning Charging Cable,1,14.95,09/20/19 18:59,"159 Willow St, Atlanta, GA 30301" +253148,USB-C Charging Cable,1,11.95,09/06/19 19:37,"37 Dogwood St, Portland, ME 04101" +253149,Lightning Charging Cable,1,14.95,09/10/19 14:08,"188 Sunset St, San Francisco, CA 94016" +253150,Apple Airpods Headphones,1,150,09/30/19 16:14,"28 Meadow St, San Francisco, CA 94016" +253151,AAA Batteries (4-pack),1,2.99,09/09/19 11:04,"826 Maple St, Dallas, TX 75001" +253152,Lightning Charging Cable,1,14.95,09/05/19 19:34,"89 7th St, Seattle, WA 98101" +253153,Apple Airpods Headphones,1,150,09/02/19 17:27,"124 Jefferson St, New York City, NY 10001" +253154,Macbook Pro Laptop,1,1700,09/29/19 21:35,"113 Meadow St, Los Angeles, CA 90001" +253155,Apple Airpods Headphones,1,150,09/04/19 13:45,"242 Dogwood St, Los Angeles, CA 90001" +253156,USB-C Charging Cable,1,11.95,09/04/19 19:48,"720 Maple St, Seattle, WA 98101" +253157,iPhone,1,700,09/24/19 19:54,"2 Lakeview St, Los Angeles, CA 90001" +253158,AAA Batteries (4-pack),1,2.99,09/02/19 23:05,"895 Johnson St, Los Angeles, CA 90001" +253159,AAA Batteries (4-pack),1,2.99,09/02/19 14:50,"624 Lincoln St, Austin, TX 73301" +253160,Flatscreen TV,1,300,09/06/19 19:17,"676 4th St, San Francisco, CA 94016" +253161,AA Batteries (4-pack),2,3.84,09/16/19 21:40,"561 Johnson St, Atlanta, GA 30301" +253162,AAA Batteries (4-pack),1,2.99,09/17/19 16:39,"91 Hickory St, Los Angeles, CA 90001" +253163,USB-C Charging Cable,2,11.95,09/19/19 22:08,"228 Washington St, San Francisco, CA 94016" +253164,AAA Batteries (4-pack),1,2.99,09/30/19 11:56,"126 5th St, Boston, MA 02215" +253165,Flatscreen TV,1,300,09/08/19 00:50,"757 Spruce St, San Francisco, CA 94016" +253166,Bose SoundSport Headphones,1,99.99,09/12/19 08:52,"309 Jackson St, New York City, NY 10001" +253167,AA Batteries (4-pack),1,3.84,09/15/19 15:06,"929 14th St, Seattle, WA 98101" +253168,AAA Batteries (4-pack),1,2.99,09/28/19 17:43,"931 7th St, Los Angeles, CA 90001" +253169,Lightning Charging Cable,1,14.95,09/10/19 19:34,"656 Forest St, New York City, NY 10001" +253170,USB-C Charging Cable,1,11.95,09/12/19 20:28,"212 Ridge St, Dallas, TX 75001" +253171,USB-C Charging Cable,1,11.95,09/17/19 23:03,"281 Forest St, Austin, TX 73301" +253172,27in FHD Monitor,1,149.99,09/07/19 18:29,"618 9th St, Atlanta, GA 30301" +253173,USB-C Charging Cable,1,11.95,09/05/19 19:08,"630 Main St, New York City, NY 10001" +253174,Google Phone,1,600,09/14/19 15:55,"999 Church St, Portland, ME 04101" +253174,USB-C Charging Cable,1,11.95,09/14/19 15:55,"999 Church St, Portland, ME 04101" +253175,AA Batteries (4-pack),1,3.84,09/15/19 17:29,"874 West St, Los Angeles, CA 90001" +253176,Bose SoundSport Headphones,1,99.99,09/16/19 09:45,"406 Main St, San Francisco, CA 94016" +253177,34in Ultrawide Monitor,1,379.99,09/07/19 07:45,"339 11th St, Dallas, TX 75001" +253178,Macbook Pro Laptop,1,1700,09/24/19 18:37,"237 Willow St, Atlanta, GA 30301" +253179,Lightning Charging Cable,1,14.95,09/26/19 12:13,"637 Ridge St, San Francisco, CA 94016" +253180,AAA Batteries (4-pack),1,2.99,09/24/19 20:28,"347 14th St, Seattle, WA 98101" +253181,Apple Airpods Headphones,1,150,09/07/19 19:30,"304 Sunset St, Portland, OR 97035" +253182,27in 4K Gaming Monitor,1,389.99,09/29/19 09:56,"725 Washington St, Dallas, TX 75001" +253183,AA Batteries (4-pack),1,3.84,09/15/19 22:25,"488 Main St, San Francisco, CA 94016" +253184,iPhone,1,700,09/05/19 11:48,"304 Cedar St, Boston, MA 02215" +253185,AA Batteries (4-pack),2,3.84,09/07/19 00:50,"931 Pine St, New York City, NY 10001" +253186,AA Batteries (4-pack),3,3.84,09/07/19 20:07,"937 Center St, Seattle, WA 98101" +253187,ThinkPad Laptop,1,999.99,09/02/19 10:47,"73 13th St, New York City, NY 10001" +253188,Lightning Charging Cable,1,14.95,09/18/19 15:19,"979 8th St, Boston, MA 02215" +253189,27in 4K Gaming Monitor,1,389.99,09/12/19 09:01,"896 Willow St, Dallas, TX 75001" +253190,iPhone,1,700,09/05/19 21:51,"998 14th St, San Francisco, CA 94016" +253190,Flatscreen TV,1,300,09/05/19 21:51,"998 14th St, San Francisco, CA 94016" +253191,AA Batteries (4-pack),1,3.84,09/04/19 18:57,"742 Church St, Seattle, WA 98101" +253192,34in Ultrawide Monitor,1,379.99,09/16/19 13:36,"267 6th St, Los Angeles, CA 90001" +253193,Wired Headphones,1,11.99,09/28/19 23:31,"997 Jackson St, Los Angeles, CA 90001" +253194,27in 4K Gaming Monitor,1,389.99,09/23/19 22:32,"972 Washington St, Austin, TX 73301" +253195,AA Batteries (4-pack),3,3.84,09/16/19 18:11,"447 West St, San Francisco, CA 94016" +253196,AA Batteries (4-pack),1,3.84,09/25/19 09:49,"972 Walnut St, Los Angeles, CA 90001" +253197,AAA Batteries (4-pack),2,2.99,09/03/19 18:53,"618 North St, San Francisco, CA 94016" +253198,AAA Batteries (4-pack),1,2.99,09/02/19 15:39,"784 Willow St, Atlanta, GA 30301" +253199,AA Batteries (4-pack),1,3.84,09/17/19 07:47,"941 11th St, San Francisco, CA 94016" +253200,USB-C Charging Cable,1,11.95,09/07/19 10:38,"134 Walnut St, Boston, MA 02215" +253201,Apple Airpods Headphones,1,150,09/17/19 22:13,"167 1st St, Los Angeles, CA 90001" +253202,Flatscreen TV,1,300,09/15/19 14:51,"6 13th St, Boston, MA 02215" +253203,AAA Batteries (4-pack),1,2.99,09/15/19 09:07,"432 Church St, San Francisco, CA 94016" +253204,Lightning Charging Cable,1,14.95,09/17/19 12:54,"629 Lake St, Seattle, WA 98101" +253205,Vareebadd Phone,1,400,09/06/19 21:52,"175 4th St, Seattle, WA 98101" +253206,Lightning Charging Cable,1,14.95,09/11/19 09:41,"778 Willow St, San Francisco, CA 94016" +253207,Lightning Charging Cable,1,14.95,09/17/19 12:53,"524 8th St, Los Angeles, CA 90001" +253208,Google Phone,1,600,09/19/19 01:38,"590 Center St, San Francisco, CA 94016" +253208,USB-C Charging Cable,1,11.95,09/19/19 01:38,"590 Center St, San Francisco, CA 94016" +253208,Wired Headphones,1,11.99,09/19/19 01:38,"590 Center St, San Francisco, CA 94016" +253209,AAA Batteries (4-pack),1,2.99,09/12/19 08:19,"354 Madison St, San Francisco, CA 94016" +253210,Wired Headphones,2,11.99,09/06/19 21:33,"610 Forest St, San Francisco, CA 94016" +253211,27in FHD Monitor,1,149.99,09/16/19 09:20,"65 River St, Portland, OR 97035" +253212,27in 4K Gaming Monitor,1,389.99,09/10/19 17:23,"722 Johnson St, San Francisco, CA 94016" +253213,27in 4K Gaming Monitor,1,389.99,09/06/19 19:52,"280 14th St, New York City, NY 10001" +253214,34in Ultrawide Monitor,1,379.99,09/09/19 11:40,"519 Walnut St, San Francisco, CA 94016" +253215,AA Batteries (4-pack),2,3.84,09/13/19 09:26,"284 14th St, Seattle, WA 98101" +253216,AA Batteries (4-pack),1,3.84,09/13/19 16:49,"876 Meadow St, New York City, NY 10001" +253217,Macbook Pro Laptop,1,1700,09/18/19 07:20,"974 Main St, Los Angeles, CA 90001" +253218,AA Batteries (4-pack),1,3.84,09/22/19 14:32,"835 Maple St, Boston, MA 02215" +253219,Bose SoundSport Headphones,1,99.99,09/17/19 19:00,"256 Maple St, Dallas, TX 75001" +253220,AAA Batteries (4-pack),2,2.99,09/18/19 23:19,"273 Wilson St, Seattle, WA 98101" +253221,Lightning Charging Cable,1,14.95,09/20/19 20:17,"321 Lakeview St, Portland, OR 97035" +253222,Apple Airpods Headphones,1,150,09/14/19 22:33,"100 Main St, Atlanta, GA 30301" +253223,Wired Headphones,1,11.99,09/18/19 17:23,"269 12th St, Los Angeles, CA 90001" +253224,Vareebadd Phone,1,400,09/03/19 05:52,"528 13th St, San Francisco, CA 94016" +253225,AA Batteries (4-pack),2,3.84,09/20/19 15:33,"477 Park St, Seattle, WA 98101" +253226,34in Ultrawide Monitor,1,379.99,09/29/19 22:13,"258 2nd St, New York City, NY 10001" +253227,Wired Headphones,1,11.99,09/27/19 13:12,"782 Chestnut St, Austin, TX 73301" +253228,Flatscreen TV,1,300,09/06/19 11:28,"74 Walnut St, San Francisco, CA 94016" +253229,Apple Airpods Headphones,1,150,09/26/19 16:08,"5 7th St, New York City, NY 10001" +253230,Lightning Charging Cable,1,14.95,09/05/19 08:37,"340 5th St, Atlanta, GA 30301" +253231,27in FHD Monitor,1,149.99,09/30/19 13:50,"711 Dogwood St, Boston, MA 02215" +253232,Apple Airpods Headphones,1,150,09/28/19 18:23,"232 Dogwood St, New York City, NY 10001" +253233,AA Batteries (4-pack),1,3.84,09/01/19 13:33,"640 Lakeview St, San Francisco, CA 94016" +253234,34in Ultrawide Monitor,1,379.99,09/15/19 23:38,"446 Washington St, Portland, OR 97035" +253235,USB-C Charging Cable,1,11.95,09/03/19 02:43,"349 Spruce St, Los Angeles, CA 90001" +253236,Lightning Charging Cable,1,14.95,09/25/19 20:55,"190 Dogwood St, San Francisco, CA 94016" +,,,,, +253237,Wired Headphones,1,11.99,09/02/19 17:46,"544 Sunset St, New York City, NY 10001" +253238,Bose SoundSport Headphones,1,99.99,09/30/19 13:09,"6 1st St, Los Angeles, CA 90001" +253239,USB-C Charging Cable,1,11.95,09/19/19 12:42,"387 2nd St, Dallas, TX 75001" +253240,USB-C Charging Cable,1,11.95,09/11/19 10:46,"243 1st St, San Francisco, CA 94016" +253241,AAA Batteries (4-pack),3,2.99,09/01/19 11:36,"97 Cherry St, Atlanta, GA 30301" +253242,Macbook Pro Laptop,1,1700,09/28/19 14:15,"439 Hickory St, Boston, MA 02215" +253243,AA Batteries (4-pack),1,3.84,09/18/19 07:28,"747 2nd St, Los Angeles, CA 90001" +253244,Lightning Charging Cable,1,14.95,09/30/19 16:50,"698 Adams St, Boston, MA 02215" +253245,AAA Batteries (4-pack),1,2.99,09/15/19 12:22,"751 Dogwood St, Seattle, WA 98101" +253246,Apple Airpods Headphones,1,150,09/06/19 17:40,"541 Lake St, Atlanta, GA 30301" +253247,Bose SoundSport Headphones,1,99.99,09/06/19 16:25,"779 West St, New York City, NY 10001" +253248,AAA Batteries (4-pack),1,2.99,09/30/19 10:14,"781 Meadow St, Boston, MA 02215" +253249,AAA Batteries (4-pack),2,2.99,09/26/19 16:45,"7 Main St, Los Angeles, CA 90001" +253250,Google Phone,1,600,09/30/19 14:47,"554 Chestnut St, Atlanta, GA 30301" +253251,USB-C Charging Cable,1,11.95,09/21/19 11:06,"393 Ridge St, San Francisco, CA 94016" +253252,Lightning Charging Cable,1,14.95,09/12/19 16:55,"411 Maple St, San Francisco, CA 94016" +253253,ThinkPad Laptop,1,999.99,09/23/19 11:38,"597 Cherry St, Los Angeles, CA 90001" +253254,AA Batteries (4-pack),1,3.84,09/26/19 20:23,"438 Spruce St, San Francisco, CA 94016" +253255,USB-C Charging Cable,1,11.95,09/26/19 07:13,"79 2nd St, Portland, OR 97035" +253256,34in Ultrawide Monitor,1,379.99,09/13/19 23:07,"600 Spruce St, Austin, TX 73301" +253257,Lightning Charging Cable,1,14.95,09/06/19 16:32,"95 Wilson St, Boston, MA 02215" +253258,27in FHD Monitor,1,149.99,09/17/19 21:54,"385 9th St, New York City, NY 10001" +253259,Vareebadd Phone,1,400,09/28/19 19:00,"284 1st St, Portland, ME 04101" +253260,AA Batteries (4-pack),1,3.84,09/07/19 09:57,"391 9th St, Seattle, WA 98101" +253261,USB-C Charging Cable,1,11.95,09/19/19 14:26,"105 Walnut St, Los Angeles, CA 90001" +253262,ThinkPad Laptop,1,999.99,09/10/19 09:02,"606 Dogwood St, Atlanta, GA 30301" +253263,USB-C Charging Cable,1,11.95,09/14/19 14:53,"960 Wilson St, Los Angeles, CA 90001" +253264,USB-C Charging Cable,1,11.95,09/15/19 12:54,"44 River St, Seattle, WA 98101" +253265,iPhone,1,700,09/07/19 17:52,"10 10th St, San Francisco, CA 94016" +253266,Wired Headphones,1,11.99,09/16/19 09:17,"747 8th St, Atlanta, GA 30301" +253267,27in FHD Monitor,1,149.99,09/18/19 00:01,"17 Willow St, San Francisco, CA 94016" +253268,Wired Headphones,1,11.99,09/28/19 08:43,"283 Center St, Atlanta, GA 30301" +253269,AA Batteries (4-pack),1,3.84,09/13/19 11:05,"539 Highland St, San Francisco, CA 94016" +253270,Wired Headphones,1,11.99,09/30/19 16:28,"46 West St, Seattle, WA 98101" +253270,AAA Batteries (4-pack),2,2.99,09/30/19 16:28,"46 West St, Seattle, WA 98101" +253271,Lightning Charging Cable,1,14.95,09/12/19 18:07,"931 12th St, Austin, TX 73301" +253272,27in 4K Gaming Monitor,1,389.99,09/14/19 17:46,"665 Center St, Los Angeles, CA 90001" +253273,Wired Headphones,1,11.99,09/16/19 09:56,"865 Lakeview St, New York City, NY 10001" +253274,Lightning Charging Cable,1,14.95,09/04/19 08:41,"209 14th St, San Francisco, CA 94016" +253275,Flatscreen TV,1,300,09/03/19 21:50,"161 Jackson St, Atlanta, GA 30301" +253276,Wired Headphones,1,11.99,09/10/19 09:23,"406 6th St, Seattle, WA 98101" +253277,Flatscreen TV,1,300,09/19/19 09:26,"103 1st St, Los Angeles, CA 90001" +253278,AAA Batteries (4-pack),1,2.99,09/16/19 19:13,"934 Elm St, San Francisco, CA 94016" +253279,AAA Batteries (4-pack),1,2.99,09/12/19 17:42,"328 South St, Los Angeles, CA 90001" +253280,USB-C Charging Cable,1,11.95,09/14/19 12:44,"141 Highland St, Portland, OR 97035" +253281,USB-C Charging Cable,1,11.95,09/05/19 21:17,"834 Lincoln St, Austin, TX 73301" +253282,AAA Batteries (4-pack),1,2.99,09/13/19 21:45,"648 14th St, Portland, OR 97035" +253283,Lightning Charging Cable,1,14.95,09/01/19 12:57,"272 1st St, Los Angeles, CA 90001" +253284,USB-C Charging Cable,1,11.95,09/30/19 08:57,"474 Forest St, Seattle, WA 98101" +253285,Google Phone,1,600,09/15/19 11:39,"113 12th St, Austin, TX 73301" +253286,USB-C Charging Cable,1,11.95,09/06/19 09:44,"61 River St, Los Angeles, CA 90001" +253287,ThinkPad Laptop,1,999.99,09/09/19 20:30,"419 North St, Los Angeles, CA 90001" +253288,Apple Airpods Headphones,1,150,09/23/19 13:44,"882 Park St, San Francisco, CA 94016" +253289,20in Monitor,1,109.99,09/30/19 11:18,"711 South St, Atlanta, GA 30301" +253290,Lightning Charging Cable,1,14.95,09/17/19 00:22,"404 Adams St, New York City, NY 10001" +253291,AAA Batteries (4-pack),1,2.99,09/01/19 14:26,"341 Spruce St, New York City, NY 10001" +253292,Wired Headphones,1,11.99,09/04/19 13:53,"406 11th St, Boston, MA 02215" +253293,Bose SoundSport Headphones,1,99.99,09/12/19 19:05,"525 Adams St, Portland, OR 97035" +253294,AAA Batteries (4-pack),1,2.99,09/09/19 15:41,"424 Cherry St, San Francisco, CA 94016" +253295,ThinkPad Laptop,1,999.99,09/01/19 16:54,"596 6th St, San Francisco, CA 94016" +253296,AA Batteries (4-pack),2,3.84,09/10/19 14:44,"200 7th St, Los Angeles, CA 90001" +253297,34in Ultrawide Monitor,1,379.99,09/29/19 21:19,"897 4th St, Los Angeles, CA 90001" +253298,Bose SoundSport Headphones,1,99.99,09/11/19 23:33,"190 Jackson St, Seattle, WA 98101" +253299,Lightning Charging Cable,1,14.95,09/09/19 15:54,"395 Elm St, Austin, TX 73301" +253300,Wired Headphones,1,11.99,09/07/19 07:57,"954 11th St, Los Angeles, CA 90001" +253301,ThinkPad Laptop,1,999.99,09/04/19 15:11,"796 Jefferson St, New York City, NY 10001" +253302,Apple Airpods Headphones,1,150,09/10/19 18:56,"168 Elm St, Los Angeles, CA 90001" +253303,Vareebadd Phone,1,400,09/07/19 23:37,"102 Hickory St, New York City, NY 10001" +253304,Macbook Pro Laptop,1,1700,09/04/19 06:20,"207 10th St, San Francisco, CA 94016" +253305,Wired Headphones,1,11.99,09/06/19 01:37,"409 Spruce St, San Francisco, CA 94016" +253306,Wired Headphones,1,11.99,09/06/19 07:55,"364 7th St, Los Angeles, CA 90001" +253307,USB-C Charging Cable,1,11.95,09/11/19 19:04,"70 Spruce St, Dallas, TX 75001" +253308,Apple Airpods Headphones,1,150,09/28/19 17:29,"145 South St, Portland, OR 97035" +253309,Lightning Charging Cable,1,14.95,09/29/19 20:21,"85 Adams St, Seattle, WA 98101" +253310,AAA Batteries (4-pack),1,2.99,09/29/19 13:25,"575 Hill St, Atlanta, GA 30301" +253311,20in Monitor,1,109.99,09/14/19 12:14,"864 11th St, Los Angeles, CA 90001" +253312,USB-C Charging Cable,1,11.95,09/14/19 09:40,"500 Jackson St, Los Angeles, CA 90001" +253313,27in 4K Gaming Monitor,1,389.99,09/21/19 12:33,"152 South St, Atlanta, GA 30301" +253314,AAA Batteries (4-pack),1,2.99,09/29/19 23:40,"650 Cherry St, Los Angeles, CA 90001" +253315,Macbook Pro Laptop,1,1700,09/15/19 09:33,"11 Cherry St, San Francisco, CA 94016" +253316,27in 4K Gaming Monitor,1,389.99,09/25/19 18:45,"3 2nd St, Los Angeles, CA 90001" +253317,AA Batteries (4-pack),1,3.84,09/17/19 15:30,"147 Meadow St, San Francisco, CA 94016" +253318,iPhone,1,700,09/19/19 20:47,"971 Lincoln St, San Francisco, CA 94016" +253318,Wired Headphones,1,11.99,09/19/19 20:47,"971 Lincoln St, San Francisco, CA 94016" +253319,Flatscreen TV,1,300,09/28/19 17:56,"238 Adams St, Boston, MA 02215" +253320,USB-C Charging Cable,1,11.95,09/04/19 22:35,"348 9th St, San Francisco, CA 94016" +253321,20in Monitor,1,109.99,09/15/19 10:00,"266 North St, Dallas, TX 75001" +253322,Lightning Charging Cable,1,14.95,09/25/19 15:59,"290 North St, Boston, MA 02215" +253323,Apple Airpods Headphones,1,150,09/29/19 14:51,"324 1st St, Portland, OR 97035" +253324,AAA Batteries (4-pack),3,2.99,09/24/19 12:55,"344 Chestnut St, New York City, NY 10001" +253325,AA Batteries (4-pack),1,3.84,09/02/19 08:25,"221 9th St, New York City, NY 10001" +253326,Apple Airpods Headphones,1,150,09/20/19 13:33,"982 Spruce St, San Francisco, CA 94016" +253327,Wired Headphones,1,11.99,09/01/19 23:01,"370 South St, San Francisco, CA 94016" +253328,AAA Batteries (4-pack),4,2.99,09/01/19 11:20,"989 9th St, Boston, MA 02215" +253329,AAA Batteries (4-pack),3,2.99,09/26/19 13:23,"470 Washington St, Boston, MA 02215" +253330,USB-C Charging Cable,1,11.95,09/28/19 14:33,"298 13th St, Atlanta, GA 30301" +253331,Google Phone,1,600,09/09/19 21:07,"452 2nd St, Portland, OR 97035" +253332,Lightning Charging Cable,1,14.95,09/01/19 08:45,"428 Lakeview St, New York City, NY 10001" +253333,USB-C Charging Cable,1,11.95,09/18/19 11:49,"491 Sunset St, San Francisco, CA 94016" +253334,USB-C Charging Cable,1,11.95,09/11/19 20:00,"934 1st St, New York City, NY 10001" +253335,Google Phone,1,600,09/12/19 12:39,"263 Forest St, San Francisco, CA 94016" +253335,USB-C Charging Cable,1,11.95,09/12/19 12:39,"263 Forest St, San Francisco, CA 94016" +253336,USB-C Charging Cable,1,11.95,09/14/19 09:45,"780 Washington St, Portland, ME 04101" +253337,Apple Airpods Headphones,1,150,09/20/19 15:10,"65 Elm St, Austin, TX 73301" +253338,Apple Airpods Headphones,1,150,09/11/19 11:40,"529 5th St, Los Angeles, CA 90001" +253339,AA Batteries (4-pack),1,3.84,09/23/19 22:49,"325 7th St, San Francisco, CA 94016" +253340,AA Batteries (4-pack),1,3.84,09/17/19 16:05,"852 Cherry St, San Francisco, CA 94016" +253341,AA Batteries (4-pack),2,3.84,09/20/19 11:09,"696 Wilson St, San Francisco, CA 94016" +253342,Wired Headphones,1,11.99,09/15/19 15:29,"163 6th St, San Francisco, CA 94016" +253343,Wired Headphones,2,11.99,09/04/19 19:52,"409 Elm St, Los Angeles, CA 90001" +253344,Lightning Charging Cable,1,14.95,09/05/19 11:44,"177 4th St, Dallas, TX 75001" +253345,27in 4K Gaming Monitor,1,389.99,09/20/19 20:03,"648 Willow St, Atlanta, GA 30301" +253346,AAA Batteries (4-pack),1,2.99,09/01/19 12:55,"702 Pine St, Atlanta, GA 30301" +253347,AA Batteries (4-pack),1,3.84,09/13/19 17:37,"451 11th St, Austin, TX 73301" +253348,AAA Batteries (4-pack),2,2.99,09/02/19 11:52,"408 Spruce St, Boston, MA 02215" +253349,iPhone,1,700,09/18/19 16:48,"343 1st St, Seattle, WA 98101" +253349,Lightning Charging Cable,1,14.95,09/18/19 16:48,"343 1st St, Seattle, WA 98101" +253350,Lightning Charging Cable,1,14.95,09/23/19 12:28,"62 2nd St, San Francisco, CA 94016" +253351,Macbook Pro Laptop,1,1700,09/05/19 18:40,"431 Jefferson St, San Francisco, CA 94016" +253352,Lightning Charging Cable,1,14.95,09/15/19 17:32,"255 2nd St, New York City, NY 10001" +253353,Lightning Charging Cable,1,14.95,09/05/19 14:17,"732 Highland St, Atlanta, GA 30301" +253354,USB-C Charging Cable,3,11.95,09/27/19 11:02,"224 Ridge St, New York City, NY 10001" +253355,Bose SoundSport Headphones,1,99.99,09/29/19 21:43,"912 7th St, New York City, NY 10001" +253356,iPhone,1,700,09/12/19 12:07,"350 1st St, Portland, ME 04101" +253356,Lightning Charging Cable,1,14.95,09/12/19 12:07,"350 1st St, Portland, ME 04101" +253357,Lightning Charging Cable,1,14.95,09/21/19 20:44,"134 Adams St, Boston, MA 02215" +253358,Bose SoundSport Headphones,1,99.99,09/02/19 21:59,"637 1st St, Atlanta, GA 30301" +253359,27in FHD Monitor,1,149.99,09/22/19 19:05,"444 Jackson St, Los Angeles, CA 90001" +253360,Bose SoundSport Headphones,2,99.99,09/09/19 16:39,"912 14th St, Dallas, TX 75001" +253361,Lightning Charging Cable,1,14.95,09/30/19 21:11,"274 1st St, San Francisco, CA 94016" +253362,Bose SoundSport Headphones,1,99.99,09/13/19 21:58,"943 South St, Austin, TX 73301" +253363,iPhone,1,700,09/27/19 17:53,"248 Lake St, Boston, MA 02215" +253364,USB-C Charging Cable,1,11.95,09/12/19 11:02,"142 River St, Boston, MA 02215" +253365,Wired Headphones,1,11.99,09/15/19 07:14,"685 Pine St, New York City, NY 10001" +253366,34in Ultrawide Monitor,1,379.99,09/24/19 23:51,"919 Lakeview St, Los Angeles, CA 90001" +253367,USB-C Charging Cable,1,11.95,09/07/19 23:02,"513 8th St, New York City, NY 10001" +253368,Bose SoundSport Headphones,1,99.99,09/14/19 13:36,"676 Lake St, Los Angeles, CA 90001" +253369,LG Dryer,1,600.0,09/10/19 10:28,"855 9th St, San Francisco, CA 94016" +253370,Flatscreen TV,1,300,09/05/19 08:49,"878 Elm St, New York City, NY 10001" +253371,iPhone,1,700,09/24/19 11:17,"419 Lake St, Los Angeles, CA 90001" +253372,Apple Airpods Headphones,1,150,09/08/19 23:52,"547 Center St, Atlanta, GA 30301" +253373,Apple Airpods Headphones,1,150,09/23/19 19:28,"878 Lakeview St, Austin, TX 73301" +253374,27in 4K Gaming Monitor,1,389.99,09/11/19 09:44,"202 1st St, Los Angeles, CA 90001" +253375,Apple Airpods Headphones,1,150,09/03/19 18:26,"275 Jackson St, San Francisco, CA 94016" +253376,Apple Airpods Headphones,2,150,09/12/19 18:01,"723 North St, Atlanta, GA 30301" +253377,Lightning Charging Cable,1,14.95,09/01/19 08:27,"741 10th St, San Francisco, CA 94016" +253378,ThinkPad Laptop,1,999.99,09/23/19 16:33,"424 14th St, Dallas, TX 75001" +253379,USB-C Charging Cable,1,11.95,09/28/19 23:46,"242 Chestnut St, Boston, MA 02215" +253380,Flatscreen TV,1,300,09/20/19 18:01,"520 Spruce St, Austin, TX 73301" +253381,AA Batteries (4-pack),1,3.84,09/28/19 08:47,"347 Cedar St, Boston, MA 02215" +253382,USB-C Charging Cable,2,11.95,09/25/19 18:34,"499 Elm St, Los Angeles, CA 90001" +253383,Bose SoundSport Headphones,1,99.99,09/27/19 17:32,"342 11th St, Seattle, WA 98101" +253384,AA Batteries (4-pack),1,3.84,09/20/19 13:39,"248 Dogwood St, Boston, MA 02215" +253385,Bose SoundSport Headphones,1,99.99,09/20/19 19:23,"308 Cedar St, Seattle, WA 98101" +253386,Wired Headphones,1,11.99,09/09/19 17:11,"512 Lincoln St, San Francisco, CA 94016" +253387,USB-C Charging Cable,1,11.95,09/01/19 06:47,"952 Washington St, San Francisco, CA 94016" +253388,Bose SoundSport Headphones,1,99.99,09/06/19 22:26,"578 1st St, San Francisco, CA 94016" +253389,AA Batteries (4-pack),1,3.84,09/25/19 12:04,"617 Johnson St, Portland, OR 97035" +253390,34in Ultrawide Monitor,1,379.99,09/23/19 15:59,"789 Madison St, Dallas, TX 75001" +253391,Google Phone,1,600,09/02/19 20:30,"615 Pine St, Los Angeles, CA 90001" +253392,34in Ultrawide Monitor,1,379.99,09/28/19 12:18,"288 Main St, New York City, NY 10001" +253393,Lightning Charging Cable,1,14.95,09/30/19 09:52,"860 Hill St, San Francisco, CA 94016" +253394,27in FHD Monitor,1,149.99,09/28/19 09:05,"384 Wilson St, Austin, TX 73301" +253395,27in 4K Gaming Monitor,1,389.99,09/17/19 20:47,"787 8th St, Atlanta, GA 30301" +253396,USB-C Charging Cable,1,11.95,09/30/19 10:44,"492 River St, Austin, TX 73301" +253397,27in 4K Gaming Monitor,1,389.99,09/03/19 17:22,"472 Willow St, Boston, MA 02215" +253398,Bose SoundSport Headphones,1,99.99,09/18/19 16:00,"197 Park St, Los Angeles, CA 90001" +253399,27in 4K Gaming Monitor,1,389.99,09/03/19 12:29,"217 Hickory St, Boston, MA 02215" +253400,Bose SoundSport Headphones,1,99.99,09/20/19 19:00,"589 1st St, San Francisco, CA 94016" +253401,USB-C Charging Cable,1,11.95,09/20/19 17:50,"835 Washington St, Seattle, WA 98101" +253402,Bose SoundSport Headphones,1,99.99,09/25/19 23:05,"389 Johnson St, Los Angeles, CA 90001" +253403,AA Batteries (4-pack),2,3.84,09/02/19 00:12,"430 12th St, San Francisco, CA 94016" +253404,Apple Airpods Headphones,1,150,09/03/19 19:58,"117 Maple St, Boston, MA 02215" +253405,Wired Headphones,1,11.99,09/20/19 15:25,"91 2nd St, Atlanta, GA 30301" +253406,27in 4K Gaming Monitor,1,389.99,09/19/19 15:08,"116 5th St, Seattle, WA 98101" +253406,27in FHD Monitor,1,149.99,09/19/19 15:08,"116 5th St, Seattle, WA 98101" +253407,iPhone,1,700,09/18/19 14:08,"190 Hill St, Los Angeles, CA 90001" +253408,Google Phone,1,600,09/19/19 23:15,"611 Sunset St, Atlanta, GA 30301" +253409,Apple Airpods Headphones,1,150,09/04/19 19:02,"88 4th St, New York City, NY 10001" +253410,Bose SoundSport Headphones,1,99.99,09/14/19 18:02,"107 Jackson St, San Francisco, CA 94016" +253411,USB-C Charging Cable,1,11.95,09/02/19 19:17,"65 Johnson St, San Francisco, CA 94016" +253412,Bose SoundSport Headphones,1,99.99,09/25/19 14:57,"168 Cedar St, Boston, MA 02215" +253413,AAA Batteries (4-pack),1,2.99,09/05/19 11:27,"394 Chestnut St, Seattle, WA 98101" +253414,Apple Airpods Headphones,1,150,09/07/19 07:40,"810 Ridge St, San Francisco, CA 94016" +253415,Flatscreen TV,1,300,09/17/19 12:12,"733 Meadow St, Atlanta, GA 30301" +253416,AAA Batteries (4-pack),1,2.99,09/10/19 19:27,"521 Hill St, Boston, MA 02215" +253417,20in Monitor,1,109.99,09/17/19 13:33,"215 Cedar St, Seattle, WA 98101" +253418,Google Phone,1,600,09/15/19 11:52,"460 Lakeview St, Los Angeles, CA 90001" +253418,Bose SoundSport Headphones,1,99.99,09/15/19 11:52,"460 Lakeview St, Los Angeles, CA 90001" +253419,AAA Batteries (4-pack),1,2.99,09/22/19 15:46,"501 Park St, Los Angeles, CA 90001" +253420,Bose SoundSport Headphones,1,99.99,09/23/19 17:01,"808 Main St, San Francisco, CA 94016" +253421,AA Batteries (4-pack),2,3.84,09/29/19 12:08,"766 Center St, Boston, MA 02215" +253422,Macbook Pro Laptop,1,1700,09/22/19 19:59,"416 11th St, Austin, TX 73301" +253423,34in Ultrawide Monitor,1,379.99,09/05/19 08:47,"211 Willow St, Atlanta, GA 30301" +253424,Apple Airpods Headphones,1,150,09/06/19 11:59,"789 14th St, San Francisco, CA 94016" +253425,Lightning Charging Cable,1,14.95,09/06/19 19:33,"939 4th St, San Francisco, CA 94016" +253426,20in Monitor,1,109.99,09/01/19 15:05,"42 Jefferson St, Boston, MA 02215" +253427,Flatscreen TV,1,300,09/08/19 15:57,"832 13th St, Austin, TX 73301" +253428,AA Batteries (4-pack),1,3.84,09/17/19 18:55,"441 Sunset St, San Francisco, CA 94016" +253429,USB-C Charging Cable,1,11.95,09/17/19 19:10,"969 9th St, Los Angeles, CA 90001" +253430,AA Batteries (4-pack),1,3.84,09/05/19 15:57,"211 Meadow St, Portland, OR 97035" +253431,Wired Headphones,1,11.99,09/23/19 09:38,"92 Walnut St, San Francisco, CA 94016" +253432,iPhone,1,700,09/09/19 16:19,"641 Willow St, San Francisco, CA 94016" +253432,Apple Airpods Headphones,1,150,09/09/19 16:19,"641 Willow St, San Francisco, CA 94016" +253433,Lightning Charging Cable,1,14.95,09/27/19 15:15,"750 1st St, Atlanta, GA 30301" +253434,34in Ultrawide Monitor,1,379.99,09/04/19 22:06,"792 Walnut St, Dallas, TX 75001" +253435,34in Ultrawide Monitor,1,379.99,09/26/19 14:02,"828 Wilson St, New York City, NY 10001" +253436,ThinkPad Laptop,1,999.99,09/08/19 18:58,"625 Lakeview St, Seattle, WA 98101" +253437,Flatscreen TV,1,300,09/10/19 22:40,"286 Ridge St, Seattle, WA 98101" +253438,Wired Headphones,1,11.99,09/07/19 19:19,"230 Dogwood St, Seattle, WA 98101" +253439,Bose SoundSport Headphones,1,99.99,09/19/19 20:58,"779 Dogwood St, San Francisco, CA 94016" +253440,AA Batteries (4-pack),1,3.84,09/29/19 14:29,"700 Chestnut St, San Francisco, CA 94016" +253441,USB-C Charging Cable,1,11.95,09/27/19 08:26,"391 North St, New York City, NY 10001" +253442,Macbook Pro Laptop,1,1700,09/05/19 06:14,"39 South St, Boston, MA 02215" +253443,AA Batteries (4-pack),1,3.84,09/06/19 07:15,"405 5th St, Atlanta, GA 30301" +253444,Google Phone,1,600,09/13/19 09:32,"397 Cedar St, Los Angeles, CA 90001" +253445,Lightning Charging Cable,1,14.95,09/04/19 13:36,"60 10th St, Portland, OR 97035" +253446,Lightning Charging Cable,1,14.95,09/27/19 11:28,"532 6th St, Los Angeles, CA 90001" +253447,27in 4K Gaming Monitor,1,389.99,09/09/19 19:33,"389 7th St, Seattle, WA 98101" +253448,USB-C Charging Cable,1,11.95,09/23/19 07:55,"302 South St, Los Angeles, CA 90001" +253449,20in Monitor,1,109.99,09/21/19 17:03,"556 Maple St, Atlanta, GA 30301" +253450,Google Phone,1,600,09/09/19 23:35,"593 11th St, San Francisco, CA 94016" +253451,Google Phone,1,600,09/28/19 19:49,"614 2nd St, Portland, OR 97035" +253452,Bose SoundSport Headphones,1,99.99,09/26/19 15:22,"993 Cherry St, Dallas, TX 75001" +253453,Lightning Charging Cable,1,14.95,09/13/19 14:51,"879 Main St, New York City, NY 10001" +253454,Lightning Charging Cable,1,14.95,09/16/19 12:13,"53 10th St, Los Angeles, CA 90001" +253455,AA Batteries (4-pack),1,3.84,09/21/19 04:40,"935 Cedar St, Atlanta, GA 30301" +253456,AA Batteries (4-pack),2,3.84,09/24/19 22:17,"328 Madison St, New York City, NY 10001" +253457,AA Batteries (4-pack),1,3.84,09/29/19 15:32,"606 Meadow St, San Francisco, CA 94016" +253458,Wired Headphones,1,11.99,09/26/19 21:18,"629 1st St, New York City, NY 10001" +253459,Apple Airpods Headphones,1,150,09/08/19 14:26,"531 Hill St, New York City, NY 10001" +253460,AA Batteries (4-pack),1,3.84,09/14/19 00:54,"40 9th St, Los Angeles, CA 90001" +253461,Apple Airpods Headphones,1,150,09/05/19 12:52,"286 Elm St, Atlanta, GA 30301" +253462,34in Ultrawide Monitor,1,379.99,09/21/19 09:42,"315 Madison St, San Francisco, CA 94016" +253463,Bose SoundSport Headphones,1,99.99,09/20/19 14:54,"611 Forest St, Seattle, WA 98101" +253464,34in Ultrawide Monitor,1,379.99,09/20/19 13:14,"268 8th St, Portland, OR 97035" +253465,Lightning Charging Cable,1,14.95,09/23/19 16:42,"169 8th St, New York City, NY 10001" +253466,Wired Headphones,1,11.99,09/23/19 13:07,"343 7th St, Boston, MA 02215" +253467,34in Ultrawide Monitor,1,379.99,09/10/19 11:08,"120 Johnson St, San Francisco, CA 94016" +253468,Bose SoundSport Headphones,1,99.99,09/27/19 21:03,"364 1st St, San Francisco, CA 94016" +253469,AAA Batteries (4-pack),1,2.99,09/16/19 19:12,"463 West St, San Francisco, CA 94016" +253470,iPhone,1,700,09/29/19 23:09,"357 Highland St, Dallas, TX 75001" +253470,Apple Airpods Headphones,1,150,09/29/19 23:09,"357 Highland St, Dallas, TX 75001" +253471,LG Dryer,1,600.0,09/20/19 19:50,"990 Spruce St, Portland, OR 97035" +253472,Lightning Charging Cable,1,14.95,09/22/19 13:01,"980 Elm St, Boston, MA 02215" +253473,Apple Airpods Headphones,1,150,09/10/19 10:09,"208 West St, New York City, NY 10001" +253474,Apple Airpods Headphones,1,150,09/06/19 11:16,"209 North St, Atlanta, GA 30301" +253475,Apple Airpods Headphones,1,150,09/03/19 17:11,"64 Maple St, Atlanta, GA 30301" +253476,Lightning Charging Cable,1,14.95,09/12/19 18:57,"958 12th St, San Francisco, CA 94016" +253477,USB-C Charging Cable,1,11.95,09/23/19 19:20,"937 Jefferson St, Seattle, WA 98101" +253478,Bose SoundSport Headphones,1,99.99,09/27/19 11:33,"496 Church St, Dallas, TX 75001" +253479,AA Batteries (4-pack),1,3.84,09/24/19 18:44,"221 Hickory St, Atlanta, GA 30301" +253480,AA Batteries (4-pack),1,3.84,09/16/19 20:43,"733 Cherry St, Seattle, WA 98101" +253481,Lightning Charging Cable,1,14.95,09/13/19 18:34,"677 11th St, San Francisco, CA 94016" +253482,USB-C Charging Cable,1,11.95,09/23/19 21:06,"428 14th St, Boston, MA 02215" +253483,Wired Headphones,1,11.99,09/09/19 11:45,"875 West St, Atlanta, GA 30301" +253484,Wired Headphones,1,11.99,09/12/19 09:06,"88 Dogwood St, San Francisco, CA 94016" +253485,Apple Airpods Headphones,1,150,09/08/19 19:13,"920 Pine St, Los Angeles, CA 90001" +253486,AA Batteries (4-pack),1,3.84,09/13/19 09:49,"890 Spruce St, New York City, NY 10001" +253487,27in FHD Monitor,1,149.99,09/04/19 13:50,"268 Wilson St, Boston, MA 02215" +253488,Macbook Pro Laptop,1,1700,09/30/19 23:03,"591 Jefferson St, Seattle, WA 98101" +253489,Wired Headphones,1,11.99,09/06/19 08:07,"576 Elm St, Seattle, WA 98101" +253490,Apple Airpods Headphones,1,150,09/24/19 19:05,"846 Adams St, Austin, TX 73301" +253491,Lightning Charging Cable,1,14.95,09/22/19 06:33,"784 Church St, San Francisco, CA 94016" +253492,34in Ultrawide Monitor,1,379.99,09/08/19 17:54,"349 Hill St, Dallas, TX 75001" +253493,USB-C Charging Cable,1,11.95,09/27/19 18:32,"386 Lincoln St, Seattle, WA 98101" +253494,USB-C Charging Cable,1,11.95,09/25/19 18:04,"447 Main St, New York City, NY 10001" +253495,USB-C Charging Cable,1,11.95,09/23/19 20:25,"87 Sunset St, New York City, NY 10001" +253496,Apple Airpods Headphones,1,150,09/16/19 22:39,"359 12th St, Boston, MA 02215" +,,,,, +253497,AAA Batteries (4-pack),1,2.99,09/04/19 21:20,"677 8th St, Seattle, WA 98101" +253498,Bose SoundSport Headphones,1,99.99,09/05/19 11:34,"698 West St, Austin, TX 73301" +253499,USB-C Charging Cable,1,11.95,09/08/19 17:37,"945 5th St, New York City, NY 10001" +253500,Vareebadd Phone,1,400,09/19/19 11:56,"141 Pine St, Boston, MA 02215" +253500,USB-C Charging Cable,1,11.95,09/19/19 11:56,"141 Pine St, Boston, MA 02215" +253501,USB-C Charging Cable,1,11.95,09/04/19 03:46,"510 10th St, San Francisco, CA 94016" +253502,Bose SoundSport Headphones,1,99.99,09/13/19 09:27,"245 Meadow St, San Francisco, CA 94016" +253503,USB-C Charging Cable,1,11.95,09/06/19 18:20,"364 Dogwood St, Los Angeles, CA 90001" +253504,Google Phone,1,600,09/08/19 14:26,"986 Sunset St, Atlanta, GA 30301" +253505,27in FHD Monitor,1,149.99,09/18/19 09:30,"248 Spruce St, New York City, NY 10001" +253506,Flatscreen TV,1,300,09/12/19 22:26,"941 12th St, Portland, OR 97035" +253507,Google Phone,1,600,09/20/19 10:24,"353 Chestnut St, Dallas, TX 75001" +253508,34in Ultrawide Monitor,1,379.99,09/16/19 18:07,"350 Main St, San Francisco, CA 94016" +253509,Wired Headphones,1,11.99,09/21/19 15:59,"985 Johnson St, Austin, TX 73301" +253510,USB-C Charging Cable,1,11.95,09/03/19 17:52,"456 Maple St, Austin, TX 73301" +253511,Apple Airpods Headphones,1,150,09/13/19 12:27,"676 Madison St, New York City, NY 10001" +253512,Lightning Charging Cable,1,14.95,09/15/19 23:58,"992 Ridge St, Seattle, WA 98101" +253513,27in FHD Monitor,1,149.99,09/12/19 11:49,"253 Main St, Dallas, TX 75001" +253514,Wired Headphones,1,11.99,09/15/19 14:00,"971 Cherry St, Boston, MA 02215" +253515,Bose SoundSport Headphones,1,99.99,09/07/19 15:33,"339 Ridge St, Boston, MA 02215" +253516,27in FHD Monitor,1,149.99,09/05/19 22:23,"697 Maple St, Los Angeles, CA 90001" +253517,Bose SoundSport Headphones,1,99.99,09/19/19 06:27,"938 Lincoln St, Dallas, TX 75001" +253518,AA Batteries (4-pack),1,3.84,09/01/19 14:10,"441 Johnson St, New York City, NY 10001" +253519,Vareebadd Phone,1,400,09/17/19 09:44,"2 12th St, Austin, TX 73301" +253519,USB-C Charging Cable,1,11.95,09/17/19 09:44,"2 12th St, Austin, TX 73301" +253520,USB-C Charging Cable,1,11.95,09/06/19 11:56,"886 Willow St, San Francisco, CA 94016" +253521,AA Batteries (4-pack),1,3.84,09/30/19 08:54,"105 Forest St, Portland, ME 04101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +253522,20in Monitor,1,109.99,09/30/19 12:06,"724 Hickory St, San Francisco, CA 94016" +253523,Lightning Charging Cable,1,14.95,09/26/19 04:29,"341 Pine St, Los Angeles, CA 90001" +253524,USB-C Charging Cable,1,11.95,09/23/19 22:34,"403 Jefferson St, San Francisco, CA 94016" +253525,34in Ultrawide Monitor,1,379.99,09/07/19 19:18,"107 13th St, Dallas, TX 75001" +253526,AAA Batteries (4-pack),1,2.99,09/16/19 09:45,"174 Church St, Seattle, WA 98101" +253527,Vareebadd Phone,1,400,09/14/19 21:13,"965 Jefferson St, Atlanta, GA 30301" +253528,USB-C Charging Cable,1,11.95,09/04/19 20:52,"513 Forest St, Portland, OR 97035" +253529,Apple Airpods Headphones,1,150,09/08/19 22:56,"861 Hill St, Atlanta, GA 30301" +253530,Wired Headphones,1,11.99,09/03/19 22:59,"572 Ridge St, San Francisco, CA 94016" +253531,27in 4K Gaming Monitor,1,389.99,09/13/19 17:12,"694 Wilson St, New York City, NY 10001" +253532,Bose SoundSport Headphones,1,99.99,09/11/19 13:50,"524 Cherry St, Seattle, WA 98101" +253533,AA Batteries (4-pack),1,3.84,09/02/19 12:15,"88 Willow St, Dallas, TX 75001" +253534,AAA Batteries (4-pack),1,2.99,09/11/19 17:04,"494 Spruce St, Austin, TX 73301" +253535,iPhone,1,700,09/09/19 09:23,"228 Cedar St, Los Angeles, CA 90001" +253535,AAA Batteries (4-pack),1,2.99,09/09/19 09:23,"228 Cedar St, Los Angeles, CA 90001" +253536,AAA Batteries (4-pack),2,2.99,09/03/19 19:58,"673 Lake St, San Francisco, CA 94016" +253537,Bose SoundSport Headphones,1,99.99,09/17/19 22:02,"98 Lincoln St, Boston, MA 02215" +253538,Flatscreen TV,1,300,09/04/19 12:32,"454 North St, New York City, NY 10001" +253539,AA Batteries (4-pack),6,3.84,09/14/19 19:44,"324 Elm St, Boston, MA 02215" +253540,Apple Airpods Headphones,1,150,09/08/19 18:57,"695 8th St, Los Angeles, CA 90001" +253541,Apple Airpods Headphones,1,150,09/02/19 19:07,"429 Adams St, New York City, NY 10001" +253542,AAA Batteries (4-pack),1,2.99,09/29/19 16:16,"641 13th St, Boston, MA 02215" +253543,Macbook Pro Laptop,1,1700,09/26/19 20:54,"533 14th St, San Francisco, CA 94016" +253544,AA Batteries (4-pack),2,3.84,09/15/19 18:11,"879 West St, New York City, NY 10001" +253545,LG Dryer,1,600.0,09/13/19 06:31,"839 Main St, Los Angeles, CA 90001" +253546,34in Ultrawide Monitor,1,379.99,09/17/19 17:12,"576 Elm St, Dallas, TX 75001" +253547,AAA Batteries (4-pack),2,2.99,09/26/19 21:28,"77 Chestnut St, Austin, TX 73301" +253548,USB-C Charging Cable,1,11.95,09/28/19 09:59,"508 Spruce St, San Francisco, CA 94016" +253549,27in FHD Monitor,1,149.99,09/24/19 13:55,"145 Chestnut St, Atlanta, GA 30301" +253550,ThinkPad Laptop,1,999.99,09/13/19 20:22,"447 West St, Seattle, WA 98101" +253551,USB-C Charging Cable,1,11.95,09/04/19 23:37,"651 6th St, San Francisco, CA 94016" +253552,Wired Headphones,1,11.99,09/02/19 13:47,"72 Lincoln St, Los Angeles, CA 90001" +253553,Vareebadd Phone,1,400,09/03/19 14:34,"203 Jefferson St, Seattle, WA 98101" +253553,USB-C Charging Cable,1,11.95,09/03/19 14:34,"203 Jefferson St, Seattle, WA 98101" +253553,Bose SoundSport Headphones,1,99.99,09/03/19 14:34,"203 Jefferson St, Seattle, WA 98101" +,,,,, +253554,Lightning Charging Cable,1,14.95,09/14/19 20:54,"666 Elm St, New York City, NY 10001" +253555,USB-C Charging Cable,1,11.95,09/08/19 11:28,"82 Sunset St, Seattle, WA 98101" +253556,AAA Batteries (4-pack),1,2.99,09/20/19 00:02,"99 Dogwood St, San Francisco, CA 94016" +253557,AAA Batteries (4-pack),1,2.99,09/12/19 04:11,"851 Chestnut St, New York City, NY 10001" +253558,AA Batteries (4-pack),1,3.84,09/29/19 19:41,"876 5th St, San Francisco, CA 94016" +253558,Apple Airpods Headphones,1,150,09/29/19 19:41,"876 5th St, San Francisco, CA 94016" +253559,AAA Batteries (4-pack),1,2.99,09/03/19 20:49,"198 9th St, Atlanta, GA 30301" +253560,AAA Batteries (4-pack),1,2.99,09/08/19 18:49,"863 Center St, Portland, OR 97035" +253561,Google Phone,1,600,09/05/19 01:16,"803 11th St, San Francisco, CA 94016" +253561,USB-C Charging Cable,1,11.95,09/05/19 01:16,"803 11th St, San Francisco, CA 94016" +253562,AAA Batteries (4-pack),1,2.99,09/30/19 23:57,"984 1st St, Atlanta, GA 30301" +253563,Macbook Pro Laptop,1,1700,09/25/19 13:59,"861 Lincoln St, New York City, NY 10001" +253564,Bose SoundSport Headphones,1,99.99,09/04/19 20:02,"375 Dogwood St, San Francisco, CA 94016" +253565,20in Monitor,1,109.99,09/22/19 18:50,"406 Wilson St, New York City, NY 10001" +253566,Wired Headphones,1,11.99,09/27/19 17:46,"878 14th St, Los Angeles, CA 90001" +253567,Lightning Charging Cable,1,14.95,09/21/19 11:33,"679 Sunset St, Boston, MA 02215" +253568,AAA Batteries (4-pack),1,2.99,09/16/19 21:50,"466 Church St, New York City, NY 10001" +253569,AA Batteries (4-pack),1,3.84,09/06/19 17:56,"789 Highland St, Dallas, TX 75001" +253570,AAA Batteries (4-pack),1,2.99,09/16/19 06:03,"244 Lincoln St, San Francisco, CA 94016" +253571,USB-C Charging Cable,1,11.95,09/09/19 20:50,"868 Lake St, Dallas, TX 75001" +253572,27in FHD Monitor,1,149.99,09/15/19 10:51,"924 Lakeview St, San Francisco, CA 94016" +253573,AAA Batteries (4-pack),1,2.99,09/19/19 01:18,"689 Wilson St, Portland, OR 97035" +253574,Lightning Charging Cable,1,14.95,09/14/19 13:59,"120 Chestnut St, Austin, TX 73301" +253575,ThinkPad Laptop,1,999.99,09/18/19 18:43,"712 Jackson St, Los Angeles, CA 90001" +253576,Apple Airpods Headphones,1,150,09/10/19 13:04,"538 Sunset St, San Francisco, CA 94016" +253577,27in FHD Monitor,1,149.99,09/26/19 00:40,"21 8th St, Austin, TX 73301" +253578,AAA Batteries (4-pack),1,2.99,09/30/19 15:01,"285 6th St, Seattle, WA 98101" +253579,20in Monitor,1,109.99,09/03/19 20:54,"516 Ridge St, Portland, ME 04101" +253580,Apple Airpods Headphones,1,150,09/03/19 17:09,"487 Wilson St, New York City, NY 10001" +253581,ThinkPad Laptop,1,999.99,09/18/19 01:39,"799 Highland St, Los Angeles, CA 90001" +253582,USB-C Charging Cable,1,11.95,09/04/19 22:50,"694 12th St, San Francisco, CA 94016" +253583,Lightning Charging Cable,1,14.95,09/18/19 17:28,"143 11th St, Seattle, WA 98101" +253584,Lightning Charging Cable,1,14.95,09/29/19 20:58,"510 Main St, San Francisco, CA 94016" +253585,AAA Batteries (4-pack),1,2.99,09/03/19 22:47,"2 9th St, Boston, MA 02215" +253586,Lightning Charging Cable,1,14.95,09/08/19 16:56,"155 2nd St, Seattle, WA 98101" +253587,Lightning Charging Cable,1,14.95,09/19/19 16:23,"256 Ridge St, Atlanta, GA 30301" +253588,27in 4K Gaming Monitor,1,389.99,09/20/19 15:19,"134 Lake St, New York City, NY 10001" +253589,AA Batteries (4-pack),2,3.84,09/24/19 14:48,"870 Hickory St, New York City, NY 10001" +253590,Apple Airpods Headphones,1,150,09/17/19 20:16,"699 Adams St, Boston, MA 02215" +253591,AA Batteries (4-pack),2,3.84,09/18/19 23:32,"996 Spruce St, Los Angeles, CA 90001" +253592,AA Batteries (4-pack),2,3.84,09/10/19 20:59,"930 West St, New York City, NY 10001" +253593,AAA Batteries (4-pack),2,2.99,09/27/19 11:16,"327 11th St, New York City, NY 10001" +253594,Apple Airpods Headphones,1,150,09/15/19 10:18,"789 Hickory St, Seattle, WA 98101" +253595,AAA Batteries (4-pack),1,2.99,09/06/19 21:19,"177 Washington St, San Francisco, CA 94016" +253596,34in Ultrawide Monitor,1,379.99,09/28/19 22:11,"351 Sunset St, Portland, OR 97035" +253597,Lightning Charging Cable,1,14.95,09/20/19 13:02,"606 Elm St, San Francisco, CA 94016" +253598,Wired Headphones,1,11.99,09/13/19 17:13,"607 8th St, Los Angeles, CA 90001" +253599,USB-C Charging Cable,1,11.95,09/29/19 16:08,"906 Willow St, Dallas, TX 75001" +253600,Apple Airpods Headphones,1,150,09/10/19 19:08,"561 Lincoln St, Atlanta, GA 30301" +,,,,, +253601,AA Batteries (4-pack),1,3.84,09/04/19 15:30,"471 Adams St, San Francisco, CA 94016" +253602,USB-C Charging Cable,1,11.95,09/23/19 21:23,"135 14th St, Atlanta, GA 30301" +253603,USB-C Charging Cable,1,11.95,09/15/19 18:16,"762 Madison St, San Francisco, CA 94016" +253604,Bose SoundSport Headphones,1,99.99,09/03/19 15:00,"717 Chestnut St, Los Angeles, CA 90001" +253605,Google Phone,1,600,09/23/19 13:34,"379 Highland St, San Francisco, CA 94016" +253606,AAA Batteries (4-pack),3,2.99,09/12/19 21:06,"281 Highland St, Boston, MA 02215" +253607,Wired Headphones,1,11.99,09/28/19 12:51,"824 Walnut St, San Francisco, CA 94016" +253608,Flatscreen TV,1,300,09/13/19 11:12,"24 Maple St, Boston, MA 02215" +253609,Wired Headphones,1,11.99,09/11/19 13:35,"288 8th St, Boston, MA 02215" +253610,AA Batteries (4-pack),1,3.84,09/14/19 15:24,"464 Church St, Boston, MA 02215" +253611,AAA Batteries (4-pack),1,2.99,09/17/19 21:04,"294 10th St, Atlanta, GA 30301" +253612,Lightning Charging Cable,1,14.95,09/13/19 15:21,"496 Elm St, Boston, MA 02215" +253613,Wired Headphones,1,11.99,09/11/19 22:30,"843 Dogwood St, Austin, TX 73301" +253614,34in Ultrawide Monitor,1,379.99,09/16/19 09:46,"331 12th St, Boston, MA 02215" +253615,USB-C Charging Cable,1,11.95,09/01/19 16:27,"451 Chestnut St, Atlanta, GA 30301" +253616,Apple Airpods Headphones,1,150,09/06/19 01:22,"203 West St, Dallas, TX 75001" +253617,Bose SoundSport Headphones,1,99.99,09/23/19 19:16,"759 Pine St, Dallas, TX 75001" +253618,Lightning Charging Cable,1,14.95,09/05/19 21:46,"300 Washington St, San Francisco, CA 94016" +253619,USB-C Charging Cable,1,11.95,09/13/19 14:47,"942 9th St, New York City, NY 10001" +253620,34in Ultrawide Monitor,1,379.99,09/11/19 23:05,"547 Highland St, Los Angeles, CA 90001" +253621,Flatscreen TV,1,300,09/01/19 09:09,"79 Park St, Portland, OR 97035" +253622,AA Batteries (4-pack),1,3.84,09/08/19 13:07,"177 Walnut St, Seattle, WA 98101" +253623,Lightning Charging Cable,1,14.95,09/25/19 18:36,"274 Highland St, Portland, OR 97035" +253624,Wired Headphones,1,11.99,09/30/19 22:16,"774 Chestnut St, San Francisco, CA 94016" +253625,USB-C Charging Cable,1,11.95,09/30/19 15:11,"980 Hickory St, New York City, NY 10001" +253626,20in Monitor,1,109.99,09/11/19 19:49,"477 Madison St, New York City, NY 10001" +253627,Apple Airpods Headphones,1,150,09/19/19 01:53,"995 Dogwood St, Seattle, WA 98101" +253628,USB-C Charging Cable,1,11.95,09/01/19 03:25,"234 Forest St, Portland, OR 97035" +253629,Wired Headphones,2,11.99,09/13/19 19:33,"264 Main St, San Francisco, CA 94016" +253630,Apple Airpods Headphones,1,150,09/09/19 21:16,"953 2nd St, San Francisco, CA 94016" +253630,USB-C Charging Cable,1,11.95,09/09/19 21:16,"953 2nd St, San Francisco, CA 94016" +253631,iPhone,1,700,09/05/19 04:35,"560 Park St, San Francisco, CA 94016" +253632,27in FHD Monitor,1,149.99,09/15/19 14:27,"38 5th St, Boston, MA 02215" +253633,Lightning Charging Cable,1,14.95,09/12/19 00:22,"707 Cedar St, Seattle, WA 98101" +253634,Lightning Charging Cable,1,14.95,09/24/19 11:56,"870 Walnut St, Portland, OR 97035" +253635,AA Batteries (4-pack),1,3.84,09/28/19 14:32,"83 Lakeview St, Los Angeles, CA 90001" +253636,Bose SoundSport Headphones,1,99.99,09/26/19 19:20,"46 North St, New York City, NY 10001" +253637,27in 4K Gaming Monitor,1,389.99,09/02/19 12:59,"961 1st St, Seattle, WA 98101" +253638,Wired Headphones,1,11.99,09/30/19 12:28,"995 8th St, San Francisco, CA 94016" +253639,Bose SoundSport Headphones,1,99.99,09/24/19 16:01,"387 Maple St, Boston, MA 02215" +253640,Bose SoundSport Headphones,1,99.99,09/24/19 21:53,"267 Dogwood St, Austin, TX 73301" +253641,USB-C Charging Cable,2,11.95,09/10/19 14:57,"993 Walnut St, Boston, MA 02215" +253642,AA Batteries (4-pack),1,3.84,09/29/19 09:30,"12 North St, San Francisco, CA 94016" +253643,27in FHD Monitor,1,149.99,09/21/19 12:08,"933 13th St, Dallas, TX 75001" +253644,Lightning Charging Cable,1,14.95,09/30/19 20:12,"186 8th St, New York City, NY 10001" +253645,ThinkPad Laptop,1,999.99,09/23/19 21:06,"215 Hill St, Los Angeles, CA 90001" +253646,USB-C Charging Cable,1,11.95,09/30/19 17:21,"718 Ridge St, Los Angeles, CA 90001" +253647,Wired Headphones,1,11.99,09/19/19 18:47,"340 Ridge St, Atlanta, GA 30301" +253648,Bose SoundSport Headphones,1,99.99,09/02/19 12:58,"852 West St, Los Angeles, CA 90001" +253649,Wired Headphones,1,11.99,09/18/19 12:15,"559 Washington St, Boston, MA 02215" +253650,Lightning Charging Cable,1,14.95,09/07/19 19:10,"799 Walnut St, Atlanta, GA 30301" +253651,AAA Batteries (4-pack),3,2.99,09/04/19 18:28,"718 2nd St, Seattle, WA 98101" +253652,AA Batteries (4-pack),3,3.84,09/07/19 14:05,"183 Lake St, San Francisco, CA 94016" +253653,AAA Batteries (4-pack),4,2.99,09/15/19 21:51,"671 Ridge St, Seattle, WA 98101" +253654,34in Ultrawide Monitor,1,379.99,09/30/19 10:41,"815 Pine St, San Francisco, CA 94016" +253655,Lightning Charging Cable,1,14.95,09/16/19 21:53,"741 Madison St, San Francisco, CA 94016" +253656,Apple Airpods Headphones,1,150,09/27/19 18:36,"711 7th St, Los Angeles, CA 90001" +253657,USB-C Charging Cable,1,11.95,09/21/19 19:24,"695 Lake St, Dallas, TX 75001" +253658,USB-C Charging Cable,1,11.95,09/23/19 22:10,"976 Lincoln St, San Francisco, CA 94016" +253659,USB-C Charging Cable,1,11.95,09/26/19 22:09,"224 8th St, Boston, MA 02215" +253660,Bose SoundSport Headphones,1,99.99,09/10/19 19:44,"420 West St, New York City, NY 10001" +253661,34in Ultrawide Monitor,1,379.99,09/25/19 13:03,"135 Forest St, Los Angeles, CA 90001" +253662,27in FHD Monitor,1,149.99,09/04/19 18:43,"946 Lake St, Portland, ME 04101" +253663,AA Batteries (4-pack),1,3.84,09/08/19 06:57,"368 Meadow St, Boston, MA 02215" +253664,iPhone,1,700,09/18/19 12:59,"539 Meadow St, Boston, MA 02215" +253665,AAA Batteries (4-pack),1,2.99,09/22/19 11:54,"571 10th St, Atlanta, GA 30301" +253666,AAA Batteries (4-pack),1,2.99,09/17/19 12:56,"463 5th St, San Francisco, CA 94016" +253667,Wired Headphones,1,11.99,09/25/19 15:33,"562 Dogwood St, Los Angeles, CA 90001" +253668,AAA Batteries (4-pack),2,2.99,09/10/19 10:54,"333 Hill St, Seattle, WA 98101" +253669,20in Monitor,1,109.99,09/17/19 12:06,"531 11th St, Boston, MA 02215" +253670,Lightning Charging Cable,1,14.95,09/22/19 20:32,"418 2nd St, Los Angeles, CA 90001" +253671,AA Batteries (4-pack),1,3.84,09/20/19 18:46,"479 Highland St, San Francisco, CA 94016" +253672,Lightning Charging Cable,2,14.95,09/29/19 22:15,"954 5th St, Los Angeles, CA 90001" +253673,AAA Batteries (4-pack),1,2.99,09/27/19 21:22,"17 Chestnut St, San Francisco, CA 94016" +253674,AA Batteries (4-pack),1,3.84,09/14/19 17:39,"963 13th St, Los Angeles, CA 90001" +253675,Google Phone,1,600,09/26/19 18:03,"79 13th St, New York City, NY 10001" +253676,34in Ultrawide Monitor,1,379.99,09/28/19 16:55,"682 Hickory St, Boston, MA 02215" +253677,AA Batteries (4-pack),1,3.84,09/29/19 11:11,"680 Park St, Los Angeles, CA 90001" +253678,Lightning Charging Cable,1,14.95,09/18/19 21:53,"93 Pine St, Boston, MA 02215" +253678,USB-C Charging Cable,1,11.95,09/18/19 21:53,"93 Pine St, Boston, MA 02215" +253679,20in Monitor,1,109.99,09/29/19 21:44,"629 Church St, New York City, NY 10001" +253680,27in FHD Monitor,1,149.99,09/21/19 17:50,"303 Lincoln St, New York City, NY 10001" +253681,USB-C Charging Cable,1,11.95,09/29/19 19:12,"772 14th St, New York City, NY 10001" +253682,Apple Airpods Headphones,1,150,09/23/19 21:26,"247 2nd St, New York City, NY 10001" +253683,34in Ultrawide Monitor,1,379.99,09/22/19 19:47,"986 Elm St, Boston, MA 02215" +253684,AAA Batteries (4-pack),1,2.99,09/15/19 00:22,"284 Lake St, San Francisco, CA 94016" +253685,AAA Batteries (4-pack),1,2.99,09/26/19 18:45,"374 Johnson St, Portland, OR 97035" +253686,USB-C Charging Cable,1,11.95,09/12/19 17:27,"763 10th St, Los Angeles, CA 90001" +253686,AAA Batteries (4-pack),2,2.99,09/12/19 17:27,"763 10th St, Los Angeles, CA 90001" +253687,34in Ultrawide Monitor,1,379.99,09/14/19 14:17,"349 Jefferson St, Los Angeles, CA 90001" +253688,AAA Batteries (4-pack),1,2.99,09/04/19 14:18,"32 Dogwood St, Dallas, TX 75001" +253689,Apple Airpods Headphones,1,150,09/07/19 11:18,"728 Johnson St, New York City, NY 10001" +253690,Flatscreen TV,1,300,09/11/19 13:42,"413 Sunset St, Seattle, WA 98101" +253691,Bose SoundSport Headphones,1,99.99,09/11/19 07:51,"150 Elm St, Boston, MA 02215" +253692,Lightning Charging Cable,1,14.95,09/17/19 16:36,"792 10th St, Boston, MA 02215" +253693,Bose SoundSport Headphones,1,99.99,09/03/19 07:55,"302 Pine St, San Francisco, CA 94016" +253694,Wired Headphones,1,11.99,09/29/19 15:59,"832 Hill St, Los Angeles, CA 90001" +253695,AAA Batteries (4-pack),2,2.99,09/07/19 22:45,"191 1st St, New York City, NY 10001" +253696,Macbook Pro Laptop,1,1700,09/16/19 15:18,"492 6th St, Portland, OR 97035" +253697,USB-C Charging Cable,1,11.95,09/30/19 18:51,"447 1st St, San Francisco, CA 94016" +253698,Flatscreen TV,1,300,09/05/19 19:11,"177 Hickory St, San Francisco, CA 94016" +253699,AAA Batteries (4-pack),1,2.99,09/06/19 15:36,"222 Sunset St, Seattle, WA 98101" +253700,Lightning Charging Cable,1,14.95,09/30/19 09:54,"933 Park St, Seattle, WA 98101" +253701,Macbook Pro Laptop,1,1700,09/18/19 23:42,"976 Lincoln St, Los Angeles, CA 90001" +253702,iPhone,1,700,09/19/19 13:02,"499 North St, Portland, OR 97035" +253703,27in FHD Monitor,1,149.99,09/24/19 23:51,"197 10th St, San Francisco, CA 94016" +253704,Wired Headphones,1,11.99,09/12/19 14:33,"200 Spruce St, Boston, MA 02215" +253705,Apple Airpods Headphones,1,150,09/29/19 20:04,"447 Meadow St, Seattle, WA 98101" +253706,iPhone,1,700,09/03/19 13:31,"143 4th St, Los Angeles, CA 90001" +253707,AAA Batteries (4-pack),2,2.99,09/19/19 16:01,"750 13th St, Dallas, TX 75001" +253708,Lightning Charging Cable,1,14.95,09/14/19 10:28,"160 Jefferson St, Dallas, TX 75001" +253709,Google Phone,1,600,09/19/19 06:15,"678 9th St, Los Angeles, CA 90001" +253710,27in 4K Gaming Monitor,1,389.99,09/27/19 22:35,"269 Cedar St, San Francisco, CA 94016" +253711,Bose SoundSport Headphones,1,99.99,09/01/19 13:21,"685 4th St, New York City, NY 10001" +253712,Apple Airpods Headphones,1,150,09/13/19 14:02,"636 Johnson St, Seattle, WA 98101" +253713,Bose SoundSport Headphones,1,99.99,09/04/19 13:54,"972 12th St, San Francisco, CA 94016" +253714,AAA Batteries (4-pack),1,2.99,09/03/19 11:03,"617 Ridge St, Dallas, TX 75001" +253715,Apple Airpods Headphones,1,150,09/22/19 14:19,"886 Hickory St, New York City, NY 10001" +253716,AA Batteries (4-pack),1,3.84,09/08/19 17:05,"856 Lake St, New York City, NY 10001" +253717,AA Batteries (4-pack),1,3.84,09/23/19 12:04,"654 North St, San Francisco, CA 94016" +253718,Google Phone,1,600,09/30/19 10:57,"761 Pine St, Los Angeles, CA 90001" +253718,Wired Headphones,1,11.99,09/30/19 10:57,"761 Pine St, Los Angeles, CA 90001" +253719,Apple Airpods Headphones,1,150,09/08/19 13:31,"935 Forest St, Los Angeles, CA 90001" +253720,Vareebadd Phone,1,400,09/04/19 10:23,"209 1st St, San Francisco, CA 94016" +253721,Lightning Charging Cable,1,14.95,09/09/19 17:00,"374 Lincoln St, Boston, MA 02215" +253722,Lightning Charging Cable,1,14.95,09/07/19 11:36,"609 Lincoln St, Seattle, WA 98101" +253723,Wired Headphones,1,11.99,09/16/19 21:10,"90 Forest St, Los Angeles, CA 90001" +253724,AAA Batteries (4-pack),1,2.99,09/18/19 17:58,"462 Madison St, Seattle, WA 98101" +253725,USB-C Charging Cable,1,11.95,09/08/19 11:33,"259 Jefferson St, San Francisco, CA 94016" +253726,34in Ultrawide Monitor,1,379.99,09/11/19 13:38,"596 River St, San Francisco, CA 94016" +253727,Lightning Charging Cable,1,14.95,09/21/19 18:39,"129 7th St, Atlanta, GA 30301" +253728,USB-C Charging Cable,1,11.95,09/05/19 17:40,"228 Walnut St, San Francisco, CA 94016" +253729,Wired Headphones,1,11.99,09/15/19 05:47,"20 Washington St, San Francisco, CA 94016" +253730,Apple Airpods Headphones,1,150,09/28/19 10:12,"315 10th St, Boston, MA 02215" +253731,Wired Headphones,1,11.99,09/16/19 10:06,"120 Washington St, New York City, NY 10001" +253732,Bose SoundSport Headphones,1,99.99,09/06/19 10:29,"969 Dogwood St, New York City, NY 10001" +253733,USB-C Charging Cable,2,11.95,09/19/19 12:28,"853 4th St, Atlanta, GA 30301" +253734,Bose SoundSport Headphones,1,99.99,09/02/19 22:55,"887 14th St, San Francisco, CA 94016" +253735,Wired Headphones,1,11.99,09/05/19 21:18,"74 2nd St, San Francisco, CA 94016" +253736,AAA Batteries (4-pack),1,2.99,09/26/19 15:11,"39 Hickory St, Boston, MA 02215" +253737,AAA Batteries (4-pack),1,2.99,09/13/19 10:36,"69 Elm St, Los Angeles, CA 90001" +253738,Lightning Charging Cable,1,14.95,09/06/19 01:07,"946 11th St, Los Angeles, CA 90001" +253739,Wired Headphones,1,11.99,09/24/19 02:21,"227 Jefferson St, New York City, NY 10001" +253740,Apple Airpods Headphones,1,150,09/05/19 16:03,"8 Forest St, Los Angeles, CA 90001" +253740,20in Monitor,1,109.99,09/05/19 16:03,"8 Forest St, Los Angeles, CA 90001" +253741,AA Batteries (4-pack),1,3.84,09/06/19 06:38,"43 Park St, Austin, TX 73301" +253742,AAA Batteries (4-pack),1,2.99,09/25/19 11:45,"611 Hill St, Portland, OR 97035" +253743,27in FHD Monitor,1,149.99,09/04/19 13:46,"660 11th St, New York City, NY 10001" +253744,AA Batteries (4-pack),1,3.84,09/09/19 14:32,"153 Hill St, Dallas, TX 75001" +253745,Flatscreen TV,1,300,09/11/19 19:15,"749 6th St, Dallas, TX 75001" +253746,AAA Batteries (4-pack),2,2.99,09/05/19 01:13,"725 Lake St, San Francisco, CA 94016" +253747,Wired Headphones,1,11.99,09/28/19 10:45,"481 Adams St, Atlanta, GA 30301" +253748,USB-C Charging Cable,3,11.95,09/15/19 17:58,"204 Hill St, New York City, NY 10001" +253749,Apple Airpods Headphones,1,150,09/07/19 13:13,"828 Madison St, San Francisco, CA 94016" +253750,AA Batteries (4-pack),2,3.84,09/19/19 10:30,"609 Dogwood St, Los Angeles, CA 90001" +253751,Wired Headphones,1,11.99,09/12/19 16:06,"238 2nd St, San Francisco, CA 94016" +253752,34in Ultrawide Monitor,1,379.99,09/08/19 15:19,"131 5th St, Portland, OR 97035" +253753,34in Ultrawide Monitor,1,379.99,09/13/19 13:02,"322 Main St, Los Angeles, CA 90001" +253754,Bose SoundSport Headphones,1,99.99,09/21/19 18:41,"749 2nd St, Boston, MA 02215" +253755,Lightning Charging Cable,1,14.95,09/01/19 23:39,"162 River St, Austin, TX 73301" +253756,ThinkPad Laptop,1,999.99,09/30/19 19:24,"638 Center St, Los Angeles, CA 90001" +253757,Lightning Charging Cable,1,14.95,09/26/19 19:38,"686 Lincoln St, San Francisco, CA 94016" +253758,27in FHD Monitor,1,149.99,09/26/19 10:32,"693 Spruce St, Los Angeles, CA 90001" +253758,AAA Batteries (4-pack),1,2.99,09/26/19 10:32,"693 Spruce St, Los Angeles, CA 90001" +253759,27in 4K Gaming Monitor,1,389.99,09/16/19 20:22,"737 Hickory St, San Francisco, CA 94016" +253760,Wired Headphones,2,11.99,09/07/19 09:59,"60 West St, New York City, NY 10001" +253761,Bose SoundSport Headphones,1,99.99,09/24/19 11:44,"835 Elm St, Los Angeles, CA 90001" +253762,Bose SoundSport Headphones,1,99.99,09/28/19 09:45,"475 Spruce St, Los Angeles, CA 90001" +253763,Apple Airpods Headphones,1,150,09/10/19 21:30,"480 Madison St, Atlanta, GA 30301" +253764,iPhone,1,700,09/26/19 18:13,"679 Maple St, Los Angeles, CA 90001" +253765,Bose SoundSport Headphones,1,99.99,09/17/19 15:49,"913 Dogwood St, San Francisco, CA 94016" +253766,AAA Batteries (4-pack),1,2.99,09/07/19 00:17,"879 Lake St, Seattle, WA 98101" +253766,ThinkPad Laptop,1,999.99,09/07/19 00:17,"879 Lake St, Seattle, WA 98101" +253767,USB-C Charging Cable,1,11.95,09/21/19 18:53,"217 Jackson St, Los Angeles, CA 90001" +253768,AA Batteries (4-pack),2,3.84,09/18/19 16:07,"463 Chestnut St, Boston, MA 02215" +253769,AA Batteries (4-pack),4,3.84,09/19/19 13:44,"57 2nd St, Atlanta, GA 30301" +253770,USB-C Charging Cable,1,11.95,09/11/19 14:25,"747 Adams St, Seattle, WA 98101" +253771,Flatscreen TV,1,300,09/17/19 13:34,"529 Meadow St, New York City, NY 10001" +253772,Google Phone,1,600,09/30/19 14:51,"591 Forest St, Boston, MA 02215" +253773,Vareebadd Phone,1,400,09/06/19 17:58,"400 West St, Boston, MA 02215" +253774,Lightning Charging Cable,1,14.95,09/25/19 10:34,"365 7th St, Dallas, TX 75001" +253775,27in 4K Gaming Monitor,1,389.99,09/06/19 11:20,"638 Washington St, Los Angeles, CA 90001" +253776,Wired Headphones,1,11.99,09/23/19 16:45,"910 Wilson St, New York City, NY 10001" +253777,AAA Batteries (4-pack),1,2.99,09/23/19 14:52,"336 Church St, San Francisco, CA 94016" +253778,34in Ultrawide Monitor,1,379.99,09/21/19 18:31,"625 5th St, Dallas, TX 75001" +253779,AA Batteries (4-pack),4,3.84,09/25/19 14:00,"263 Church St, Dallas, TX 75001" +253780,Vareebadd Phone,1,400,09/21/19 14:55,"696 Washington St, Boston, MA 02215" +253781,Lightning Charging Cable,1,14.95,09/07/19 14:07,"550 9th St, San Francisco, CA 94016" +253782,Lightning Charging Cable,1,14.95,09/14/19 18:44,"76 10th St, Dallas, TX 75001" +253783,Apple Airpods Headphones,1,150,09/21/19 16:29,"348 Cedar St, New York City, NY 10001" +253784,Lightning Charging Cable,1,14.95,09/14/19 11:36,"910 Main St, San Francisco, CA 94016" +253785,Wired Headphones,1,11.99,09/13/19 09:44,"26 Pine St, Los Angeles, CA 90001" +253786,Lightning Charging Cable,1,14.95,09/23/19 22:55,"924 Center St, Los Angeles, CA 90001" +253787,Apple Airpods Headphones,1,150,09/24/19 23:36,"142 Lakeview St, San Francisco, CA 94016" +253788,AAA Batteries (4-pack),1,2.99,09/24/19 06:16,"739 Ridge St, Boston, MA 02215" +253789,34in Ultrawide Monitor,1,379.99,09/10/19 12:49,"926 Cedar St, San Francisco, CA 94016" +253790,AAA Batteries (4-pack),1,2.99,09/30/19 18:02,"70 Madison St, Portland, OR 97035" +253791,Wired Headphones,2,11.99,09/10/19 23:56,"258 7th St, New York City, NY 10001" +253792,Bose SoundSport Headphones,1,99.99,09/26/19 19:45,"502 12th St, New York City, NY 10001" +253793,USB-C Charging Cable,1,11.95,09/23/19 11:02,"797 River St, Austin, TX 73301" +253794,USB-C Charging Cable,1,11.95,09/26/19 14:31,"516 1st St, Los Angeles, CA 90001" +253795,USB-C Charging Cable,1,11.95,09/17/19 13:52,"863 South St, Dallas, TX 75001" +253796,Bose SoundSport Headphones,1,99.99,09/07/19 08:12,"286 Lake St, New York City, NY 10001" +253797,AAA Batteries (4-pack),1,2.99,09/22/19 18:50,"879 River St, Atlanta, GA 30301" +253798,Apple Airpods Headphones,1,150,09/26/19 21:06,"414 2nd St, San Francisco, CA 94016" +253799,27in FHD Monitor,1,149.99,09/17/19 18:50,"133 11th St, New York City, NY 10001" +253800,27in FHD Monitor,1,149.99,09/29/19 22:37,"736 11th St, Dallas, TX 75001" +253801,Wired Headphones,1,11.99,09/15/19 17:42,"470 Jackson St, Los Angeles, CA 90001" +253802,27in 4K Gaming Monitor,1,389.99,09/05/19 22:31,"133 Forest St, Portland, OR 97035" +253803,AAA Batteries (4-pack),1,2.99,09/08/19 08:12,"205 6th St, Austin, TX 73301" +253804,AA Batteries (4-pack),1,3.84,09/18/19 17:02,"408 Adams St, Seattle, WA 98101" +253805,Apple Airpods Headphones,1,150,09/14/19 22:13,"529 Washington St, New York City, NY 10001" +253806,27in FHD Monitor,1,149.99,09/06/19 00:42,"309 Ridge St, Dallas, TX 75001" +253807,Lightning Charging Cable,1,14.95,09/15/19 21:33,"538 Wilson St, Los Angeles, CA 90001" +253808,USB-C Charging Cable,1,11.95,09/07/19 15:46,"524 11th St, San Francisco, CA 94016" +253809,AAA Batteries (4-pack),1,2.99,09/02/19 22:05,"783 10th St, San Francisco, CA 94016" +253810,iPhone,1,700,09/05/19 13:55,"892 13th St, Los Angeles, CA 90001" +253811,Flatscreen TV,1,300,09/30/19 18:23,"217 Cedar St, Boston, MA 02215" +253812,USB-C Charging Cable,1,11.95,09/02/19 09:18,"473 Pine St, New York City, NY 10001" +253813,AA Batteries (4-pack),1,3.84,09/17/19 18:35,"793 Maple St, Boston, MA 02215" +253814,Google Phone,1,600,09/28/19 17:24,"743 10th St, Los Angeles, CA 90001" +253815,Lightning Charging Cable,1,14.95,09/18/19 20:39,"782 Sunset St, Seattle, WA 98101" +253816,Bose SoundSport Headphones,1,99.99,09/30/19 11:54,"422 7th St, Los Angeles, CA 90001" +253817,iPhone,1,700,09/20/19 14:04,"434 Cherry St, Seattle, WA 98101" +253817,Lightning Charging Cable,1,14.95,09/20/19 14:04,"434 Cherry St, Seattle, WA 98101" +253817,Wired Headphones,1,11.99,09/20/19 14:04,"434 Cherry St, Seattle, WA 98101" +253818,27in 4K Gaming Monitor,1,389.99,09/27/19 03:24,"835 Adams St, San Francisco, CA 94016" +253819,ThinkPad Laptop,1,999.99,09/04/19 01:18,"686 River St, San Francisco, CA 94016" +253820,Bose SoundSport Headphones,1,99.99,09/18/19 09:23,"250 Johnson St, San Francisco, CA 94016" +253821,USB-C Charging Cable,2,11.95,09/06/19 10:18,"379 Highland St, Portland, OR 97035" +253822,AAA Batteries (4-pack),1,2.99,09/17/19 15:26,"353 1st St, San Francisco, CA 94016" +253823,34in Ultrawide Monitor,1,379.99,09/11/19 22:30,"331 Forest St, Los Angeles, CA 90001" +253824,Wired Headphones,1,11.99,09/09/19 19:09,"809 5th St, Atlanta, GA 30301" +253825,USB-C Charging Cable,1,11.95,09/02/19 13:04,"261 Wilson St, Austin, TX 73301" +253826,AA Batteries (4-pack),1,3.84,09/24/19 21:49,"296 West St, San Francisco, CA 94016" +253827,USB-C Charging Cable,1,11.95,09/21/19 00:23,"945 4th St, Boston, MA 02215" +253828,USB-C Charging Cable,1,11.95,09/21/19 13:51,"354 9th St, Portland, OR 97035" +253829,AA Batteries (4-pack),1,3.84,09/10/19 20:34,"784 5th St, San Francisco, CA 94016" +253830,20in Monitor,1,109.99,09/17/19 10:19,"822 Dogwood St, San Francisco, CA 94016" +253831,Lightning Charging Cable,1,14.95,09/13/19 08:03,"797 Chestnut St, Atlanta, GA 30301" +253832,27in 4K Gaming Monitor,1,389.99,09/21/19 23:43,"759 7th St, Dallas, TX 75001" +253833,20in Monitor,1,109.99,09/08/19 13:04,"336 Hill St, Portland, ME 04101" +253834,AAA Batteries (4-pack),2,2.99,09/15/19 16:07,"991 Jefferson St, Los Angeles, CA 90001" +253835,AA Batteries (4-pack),1,3.84,09/28/19 19:22,"512 Lake St, Dallas, TX 75001" +253836,Vareebadd Phone,1,400,09/22/19 16:14,"880 North St, Boston, MA 02215" +253837,AAA Batteries (4-pack),3,2.99,09/08/19 16:50,"886 10th St, Los Angeles, CA 90001" +253838,Apple Airpods Headphones,1,150,09/05/19 13:57,"595 Willow St, Dallas, TX 75001" +253839,AA Batteries (4-pack),1,3.84,09/03/19 23:36,"285 Forest St, Portland, OR 97035" +253840,Bose SoundSport Headphones,1,99.99,09/15/19 22:05,"534 5th St, Dallas, TX 75001" +253841,Google Phone,1,600,09/23/19 20:37,"37 Chestnut St, Atlanta, GA 30301" +253842,Wired Headphones,1,11.99,09/10/19 13:44,"5 Cherry St, Seattle, WA 98101" +253843,USB-C Charging Cable,1,11.95,09/15/19 21:51,"865 Willow St, Los Angeles, CA 90001" +253844,Apple Airpods Headphones,1,150,09/29/19 18:38,"168 Highland St, Dallas, TX 75001" +253845,34in Ultrawide Monitor,1,379.99,09/09/19 19:56,"619 Hill St, Austin, TX 73301" +253846,USB-C Charging Cable,1,11.95,09/25/19 19:31,"158 Lake St, Los Angeles, CA 90001" +253847,iPhone,1,700,09/20/19 08:27,"12 Pine St, San Francisco, CA 94016" +253847,Apple Airpods Headphones,1,150,09/20/19 08:27,"12 Pine St, San Francisco, CA 94016" +253848,Wired Headphones,1,11.99,09/24/19 12:53,"567 Highland St, Dallas, TX 75001" +253849,Wired Headphones,1,11.99,09/01/19 21:12,"409 9th St, Boston, MA 02215" +253850,Bose SoundSport Headphones,1,99.99,09/28/19 20:36,"488 Pine St, San Francisco, CA 94016" +253851,AA Batteries (4-pack),1,3.84,09/19/19 20:41,"423 Pine St, New York City, NY 10001" +253852,AAA Batteries (4-pack),1,2.99,09/17/19 20:20,"386 Hill St, Seattle, WA 98101" +253853,Lightning Charging Cable,1,14.95,09/11/19 17:41,"167 South St, Austin, TX 73301" +253854,AA Batteries (4-pack),1,3.84,09/14/19 15:58,"86 10th St, San Francisco, CA 94016" +253855,Apple Airpods Headphones,1,150,09/14/19 02:47,"133 14th St, Boston, MA 02215" +253856,USB-C Charging Cable,2,11.95,09/06/19 22:28,"709 7th St, Los Angeles, CA 90001" +253857,AA Batteries (4-pack),1,3.84,09/30/19 08:23,"515 10th St, Los Angeles, CA 90001" +253858,Lightning Charging Cable,1,14.95,09/11/19 17:36,"287 Lake St, Portland, OR 97035" +253859,AA Batteries (4-pack),1,3.84,09/28/19 22:03,"906 Ridge St, Austin, TX 73301" +253860,USB-C Charging Cable,1,11.95,09/10/19 06:56,"80 Chestnut St, Dallas, TX 75001" +253861,Flatscreen TV,1,300,09/24/19 08:23,"270 Willow St, Boston, MA 02215" +253862,Wired Headphones,1,11.99,09/25/19 09:21,"27 11th St, Los Angeles, CA 90001" +253863,AA Batteries (4-pack),1,3.84,09/07/19 15:22,"436 Sunset St, Los Angeles, CA 90001" +253864,Wired Headphones,1,11.99,09/17/19 13:51,"812 Hill St, Portland, ME 04101" +253865,27in FHD Monitor,1,149.99,09/22/19 18:19,"360 Dogwood St, Los Angeles, CA 90001" +253866,AAA Batteries (4-pack),1,2.99,09/30/19 16:03,"231 11th St, Seattle, WA 98101" +253867,Wired Headphones,2,11.99,09/23/19 15:02,"155 River St, San Francisco, CA 94016" +253868,AAA Batteries (4-pack),1,2.99,09/20/19 09:10,"107 Hill St, Atlanta, GA 30301" +253869,USB-C Charging Cable,1,11.95,10/01/19 00:58,"440 South St, Boston, MA 02215" +253870,AAA Batteries (4-pack),1,2.99,09/17/19 19:06,"110 Center St, Los Angeles, CA 90001" +253871,Lightning Charging Cable,1,14.95,09/26/19 15:05,"119 12th St, New York City, NY 10001" +253872,Flatscreen TV,1,300,09/10/19 21:04,"372 West St, Los Angeles, CA 90001" +253873,Wired Headphones,1,11.99,09/10/19 13:07,"292 Hill St, San Francisco, CA 94016" +253874,Lightning Charging Cable,1,14.95,09/23/19 17:55,"938 Church St, New York City, NY 10001" +253875,AAA Batteries (4-pack),1,2.99,09/07/19 09:05,"887 Lake St, San Francisco, CA 94016" +253876,AAA Batteries (4-pack),1,2.99,09/19/19 08:01,"781 Spruce St, Atlanta, GA 30301" +253877,Google Phone,1,600,09/13/19 18:11,"295 Maple St, San Francisco, CA 94016" +253878,Lightning Charging Cable,1,14.95,09/27/19 09:34,"227 Johnson St, Portland, ME 04101" +253879,AAA Batteries (4-pack),3,2.99,09/26/19 19:40,"467 Jefferson St, Los Angeles, CA 90001" +253880,USB-C Charging Cable,1,11.95,09/09/19 23:57,"723 Cedar St, Los Angeles, CA 90001" +253881,USB-C Charging Cable,2,11.95,09/05/19 19:41,"560 Dogwood St, San Francisco, CA 94016" +253882,iPhone,1,700,09/30/19 23:38,"87 Lakeview St, Los Angeles, CA 90001" +253883,AAA Batteries (4-pack),1,2.99,09/14/19 19:50,"886 Johnson St, Dallas, TX 75001" +253884,USB-C Charging Cable,2,11.95,09/08/19 08:24,"598 Maple St, San Francisco, CA 94016" +253885,Apple Airpods Headphones,1,150,09/12/19 11:41,"438 Lake St, Los Angeles, CA 90001" +253886,AA Batteries (4-pack),3,3.84,09/27/19 13:39,"953 2nd St, New York City, NY 10001" +253887,AA Batteries (4-pack),1,3.84,09/20/19 02:19,"9 Johnson St, San Francisco, CA 94016" +253888,AA Batteries (4-pack),2,3.84,09/20/19 08:23,"608 Hill St, Atlanta, GA 30301" +253889,27in FHD Monitor,1,149.99,09/21/19 11:25,"214 8th St, San Francisco, CA 94016" +253890,Lightning Charging Cable,2,14.95,09/18/19 16:14,"297 Elm St, Boston, MA 02215" +253891,Google Phone,1,600,09/26/19 15:26,"65 North St, New York City, NY 10001" +253892,USB-C Charging Cable,1,11.95,09/08/19 01:19,"725 Elm St, Los Angeles, CA 90001" +253893,Bose SoundSport Headphones,1,99.99,09/20/19 21:01,"636 Adams St, San Francisco, CA 94016" +253894,20in Monitor,1,109.99,09/09/19 02:44,"542 14th St, New York City, NY 10001" +253895,Wired Headphones,1,11.99,09/17/19 09:45,"545 11th St, Los Angeles, CA 90001" +253896,Flatscreen TV,1,300,09/02/19 14:27,"181 6th St, Boston, MA 02215" +253897,Wired Headphones,1,11.99,09/08/19 11:44,"310 13th St, Portland, OR 97035" +253898,USB-C Charging Cable,1,11.95,09/22/19 17:47,"567 Pine St, Dallas, TX 75001" +253899,USB-C Charging Cable,1,11.95,09/26/19 07:38,"670 Johnson St, Atlanta, GA 30301" +253900,USB-C Charging Cable,1,11.95,09/11/19 08:26,"188 2nd St, Los Angeles, CA 90001" +253901,Bose SoundSport Headphones,1,99.99,09/15/19 00:09,"743 Ridge St, Boston, MA 02215" +253902,AAA Batteries (4-pack),1,2.99,09/28/19 10:28,"233 Center St, Dallas, TX 75001" +253903,27in 4K Gaming Monitor,1,389.99,09/27/19 22:09,"755 Wilson St, San Francisco, CA 94016" +253904,Google Phone,1,600,09/26/19 13:39,"642 Main St, San Francisco, CA 94016" +253905,27in FHD Monitor,1,149.99,09/26/19 19:41,"304 Madison St, Los Angeles, CA 90001" +253906,AA Batteries (4-pack),1,3.84,09/19/19 20:53,"752 Wilson St, Dallas, TX 75001" +253907,Wired Headphones,1,11.99,09/11/19 21:19,"533 Elm St, Austin, TX 73301" +253908,Apple Airpods Headphones,1,150,09/28/19 17:55,"633 4th St, Seattle, WA 98101" +253909,Vareebadd Phone,1,400,09/15/19 18:02,"697 12th St, New York City, NY 10001" +253910,Lightning Charging Cable,1,14.95,09/13/19 08:00,"50 Chestnut St, Los Angeles, CA 90001" +253911,Wired Headphones,1,11.99,09/06/19 20:32,"142 Jackson St, Atlanta, GA 30301" +253912,Flatscreen TV,1,300,09/06/19 14:21,"181 Johnson St, Atlanta, GA 30301" +253913,Flatscreen TV,1,300,09/02/19 13:34,"30 5th St, San Francisco, CA 94016" +253914,34in Ultrawide Monitor,1,379.99,09/19/19 16:41,"799 Hickory St, Boston, MA 02215" +253915,AAA Batteries (4-pack),1,2.99,09/21/19 14:14,"957 North St, Los Angeles, CA 90001" +253916,USB-C Charging Cable,1,11.95,09/21/19 15:42,"412 6th St, New York City, NY 10001" +253917,USB-C Charging Cable,1,11.95,09/06/19 18:46,"157 Ridge St, Boston, MA 02215" +253918,Lightning Charging Cable,1,14.95,09/29/19 13:00,"708 Walnut St, San Francisco, CA 94016" +253919,34in Ultrawide Monitor,1,379.99,09/28/19 13:26,"102 Park St, San Francisco, CA 94016" +253920,Lightning Charging Cable,2,14.95,09/11/19 23:10,"573 Cherry St, New York City, NY 10001" +253921,AA Batteries (4-pack),1,3.84,09/30/19 12:45,"892 Pine St, New York City, NY 10001" +253922,Wired Headphones,1,11.99,09/06/19 17:52,"24 8th St, Boston, MA 02215" +253923,Wired Headphones,1,11.99,09/11/19 16:04,"111 Cherry St, San Francisco, CA 94016" +253924,iPhone,1,700,09/20/19 20:00,"340 Elm St, Seattle, WA 98101" +253925,20in Monitor,1,109.99,09/01/19 07:01,"226 4th St, Seattle, WA 98101" +253926,27in FHD Monitor,1,149.99,09/16/19 12:52,"6 North St, Boston, MA 02215" +253927,iPhone,1,700,09/14/19 14:21,"370 7th St, San Francisco, CA 94016" +253928,34in Ultrawide Monitor,1,379.99,09/05/19 17:25,"756 Jefferson St, Boston, MA 02215" +253929,Lightning Charging Cable,1,14.95,09/19/19 12:17,"37 12th St, Austin, TX 73301" +253930,Lightning Charging Cable,2,14.95,09/19/19 11:02,"953 Dogwood St, Atlanta, GA 30301" +253931,AA Batteries (4-pack),2,3.84,09/18/19 11:30,"414 Adams St, Seattle, WA 98101" +253932,AA Batteries (4-pack),1,3.84,09/01/19 10:24,"834 Hickory St, Boston, MA 02215" +253933,Wired Headphones,1,11.99,09/30/19 05:13,"754 Pine St, New York City, NY 10001" +253934,Apple Airpods Headphones,1,150,09/16/19 17:37,"758 Hill St, Dallas, TX 75001" +253935,27in FHD Monitor,1,149.99,09/26/19 08:12,"417 7th St, San Francisco, CA 94016" +253936,20in Monitor,1,109.99,09/13/19 23:43,"945 North St, Seattle, WA 98101" +253937,Lightning Charging Cable,1,14.95,09/01/19 15:03,"753 5th St, Seattle, WA 98101" +253938,AAA Batteries (4-pack),3,2.99,09/13/19 10:08,"542 Maple St, San Francisco, CA 94016" +253939,Google Phone,1,600,09/23/19 17:33,"277 Cherry St, San Francisco, CA 94016" +253939,Bose SoundSport Headphones,1,99.99,09/23/19 17:33,"277 Cherry St, San Francisco, CA 94016" +253940,Apple Airpods Headphones,1,150,09/09/19 21:54,"437 Walnut St, San Francisco, CA 94016" +253941,Wired Headphones,1,11.99,09/10/19 10:32,"749 2nd St, Atlanta, GA 30301" +253942,AAA Batteries (4-pack),1,2.99,09/04/19 16:07,"683 Center St, Dallas, TX 75001" +253943,iPhone,1,700,09/08/19 19:50,"399 River St, Los Angeles, CA 90001" +253944,ThinkPad Laptop,1,999.99,09/07/19 19:44,"457 8th St, Seattle, WA 98101" +253945,27in FHD Monitor,1,149.99,09/10/19 10:22,"733 2nd St, Atlanta, GA 30301" +253946,Apple Airpods Headphones,1,150,09/01/19 16:59,"680 7th St, Los Angeles, CA 90001" +253947,Lightning Charging Cable,1,14.95,09/11/19 04:23,"104 13th St, Los Angeles, CA 90001" +253948,USB-C Charging Cable,1,11.95,09/02/19 14:54,"292 Jackson St, San Francisco, CA 94016" +253949,AA Batteries (4-pack),1,3.84,09/27/19 19:09,"181 Walnut St, San Francisco, CA 94016" +,,,,, +253950,AA Batteries (4-pack),1,3.84,09/09/19 19:24,"632 12th St, Portland, ME 04101" +253951,USB-C Charging Cable,1,11.95,09/29/19 11:40,"936 10th St, Dallas, TX 75001" +253952,Lightning Charging Cable,1,14.95,09/16/19 09:35,"503 Maple St, Dallas, TX 75001" +253953,34in Ultrawide Monitor,1,379.99,09/09/19 13:57,"29 River St, Los Angeles, CA 90001" +253954,AAA Batteries (4-pack),1,2.99,09/26/19 18:36,"305 West St, Dallas, TX 75001" +253955,Lightning Charging Cable,1,14.95,09/28/19 18:01,"577 Church St, New York City, NY 10001" +253956,27in 4K Gaming Monitor,1,389.99,09/19/19 20:14,"377 Jefferson St, Austin, TX 73301" +253957,AA Batteries (4-pack),1,3.84,09/14/19 10:54,"827 Jackson St, San Francisco, CA 94016" +253958,Lightning Charging Cable,1,14.95,09/02/19 21:47,"201 Hill St, Boston, MA 02215" +253959,AA Batteries (4-pack),1,3.84,09/24/19 09:44,"335 Washington St, Boston, MA 02215" +253960,20in Monitor,1,109.99,09/26/19 15:24,"491 Cherry St, San Francisco, CA 94016" +253961,USB-C Charging Cable,1,11.95,09/06/19 11:22,"492 Jefferson St, San Francisco, CA 94016" +253962,Flatscreen TV,1,300,09/05/19 15:15,"208 Spruce St, Los Angeles, CA 90001" +253963,Bose SoundSport Headphones,1,99.99,09/28/19 23:25,"156 West St, Atlanta, GA 30301" +253964,Google Phone,1,600,09/16/19 10:06,"429 Dogwood St, New York City, NY 10001" +253965,Google Phone,1,600,09/15/19 21:39,"400 4th St, San Francisco, CA 94016" +253966,27in FHD Monitor,1,149.99,09/08/19 10:41,"976 Johnson St, Los Angeles, CA 90001" +253967,AA Batteries (4-pack),1,3.84,09/07/19 19:17,"128 1st St, New York City, NY 10001" +253968,Apple Airpods Headphones,1,150,09/09/19 10:30,"322 Wilson St, Portland, OR 97035" +253969,27in 4K Gaming Monitor,1,389.99,09/11/19 12:59,"171 4th St, Boston, MA 02215" +253970,AAA Batteries (4-pack),3,2.99,09/01/19 19:26,"335 Wilson St, Dallas, TX 75001" +253971,27in 4K Gaming Monitor,1,389.99,09/30/19 20:43,"706 Highland St, Seattle, WA 98101" +253972,AA Batteries (4-pack),1,3.84,09/30/19 11:05,"706 Jefferson St, Los Angeles, CA 90001" +253973,27in FHD Monitor,1,149.99,09/03/19 12:14,"945 Ridge St, Dallas, TX 75001" +253974,Lightning Charging Cable,1,14.95,09/21/19 12:24,"593 5th St, San Francisco, CA 94016" +253975,AAA Batteries (4-pack),1,2.99,09/23/19 19:05,"242 6th St, Dallas, TX 75001" +253976,Lightning Charging Cable,1,14.95,09/21/19 16:13,"138 Spruce St, Atlanta, GA 30301" +253977,27in FHD Monitor,1,149.99,09/30/19 17:10,"472 Maple St, San Francisco, CA 94016" +253978,Flatscreen TV,1,300,09/22/19 13:39,"836 4th St, San Francisco, CA 94016" +253979,Bose SoundSport Headphones,1,99.99,09/07/19 17:58,"58 Washington St, San Francisco, CA 94016" +253980,Lightning Charging Cable,1,14.95,09/16/19 08:35,"432 Church St, Portland, OR 97035" +253981,USB-C Charging Cable,1,11.95,09/20/19 20:55,"376 Hill St, Los Angeles, CA 90001" +253982,Apple Airpods Headphones,1,150,09/03/19 18:37,"851 Adams St, Boston, MA 02215" +253983,AA Batteries (4-pack),1,3.84,09/10/19 09:09,"277 6th St, San Francisco, CA 94016" +253984,iPhone,1,700,09/18/19 20:04,"576 Lake St, Atlanta, GA 30301" +253984,Apple Airpods Headphones,1,150,09/18/19 20:04,"576 Lake St, Atlanta, GA 30301" +253985,27in FHD Monitor,1,149.99,09/22/19 20:55,"823 Adams St, San Francisco, CA 94016" +253986,Lightning Charging Cable,1,14.95,09/29/19 18:50,"260 8th St, Boston, MA 02215" +253987,Macbook Pro Laptop,1,1700,09/11/19 22:19,"781 5th St, Dallas, TX 75001" +253988,Lightning Charging Cable,1,14.95,09/04/19 21:28,"195 13th St, Seattle, WA 98101" +253989,AA Batteries (4-pack),1,3.84,09/13/19 16:11,"424 Forest St, Austin, TX 73301" +253990,AA Batteries (4-pack),1,3.84,09/13/19 21:16,"285 Johnson St, San Francisco, CA 94016" +253991,27in 4K Gaming Monitor,1,389.99,09/09/19 10:43,"164 Ridge St, San Francisco, CA 94016" +253992,Wired Headphones,2,11.99,09/01/19 17:41,"645 Hill St, Dallas, TX 75001" +,,,,, +253993,AAA Batteries (4-pack),2,2.99,09/13/19 15:44,"513 Johnson St, Atlanta, GA 30301" +253994,Wired Headphones,1,11.99,09/25/19 12:15,"680 Cedar St, San Francisco, CA 94016" +253995,Lightning Charging Cable,1,14.95,09/02/19 11:42,"251 9th St, San Francisco, CA 94016" +253996,AAA Batteries (4-pack),1,2.99,09/15/19 17:34,"652 14th St, Portland, OR 97035" +253997,Bose SoundSport Headphones,1,99.99,09/07/19 17:55,"886 Hill St, Los Angeles, CA 90001" +253998,iPhone,1,700,09/30/19 23:36,"532 6th St, San Francisco, CA 94016" +253999,Macbook Pro Laptop,1,1700,09/11/19 09:09,"546 6th St, New York City, NY 10001" +254000,Lightning Charging Cable,1,14.95,09/17/19 10:53,"454 11th St, San Francisco, CA 94016" +254001,AA Batteries (4-pack),1,3.84,09/29/19 14:32,"340 10th St, Austin, TX 73301" +254002,AAA Batteries (4-pack),2,2.99,09/20/19 00:04,"728 8th St, Los Angeles, CA 90001" +254003,Lightning Charging Cable,1,14.95,09/16/19 16:52,"829 9th St, Los Angeles, CA 90001" +254004,USB-C Charging Cable,4,11.95,09/29/19 16:32,"522 5th St, Austin, TX 73301" +254005,Lightning Charging Cable,1,14.95,09/17/19 16:38,"869 Ridge St, Portland, OR 97035" +254006,iPhone,1,700,09/14/19 10:56,"169 9th St, Boston, MA 02215" +254006,Wired Headphones,1,11.99,09/14/19 10:56,"169 9th St, Boston, MA 02215" +254007,AA Batteries (4-pack),1,3.84,09/25/19 12:49,"192 Maple St, Atlanta, GA 30301" +254008,34in Ultrawide Monitor,1,379.99,09/04/19 23:42,"367 13th St, San Francisco, CA 94016" +254009,Wired Headphones,1,11.99,09/24/19 16:31,"416 Walnut St, Austin, TX 73301" +254010,USB-C Charging Cable,2,11.95,09/04/19 22:23,"493 Park St, Los Angeles, CA 90001" +254011,USB-C Charging Cable,1,11.95,09/30/19 21:09,"633 Main St, San Francisco, CA 94016" +254012,Google Phone,1,600,09/27/19 23:29,"53 8th St, Portland, OR 97035" +254013,Bose SoundSport Headphones,1,99.99,09/25/19 12:34,"177 Lake St, Boston, MA 02215" +254014,USB-C Charging Cable,1,11.95,09/23/19 11:16,"357 Washington St, San Francisco, CA 94016" +254015,USB-C Charging Cable,1,11.95,09/07/19 00:35,"527 Meadow St, Portland, OR 97035" +254016,Lightning Charging Cable,1,14.95,09/18/19 10:51,"137 Willow St, Los Angeles, CA 90001" +254017,Lightning Charging Cable,1,14.95,09/21/19 17:36,"974 Johnson St, San Francisco, CA 94016" +254018,Lightning Charging Cable,1,14.95,09/27/19 17:36,"818 Jackson St, San Francisco, CA 94016" +254019,Macbook Pro Laptop,1,1700,09/25/19 01:13,"864 Pine St, San Francisco, CA 94016" +254020,USB-C Charging Cable,1,11.95,09/14/19 18:23,"314 Meadow St, Atlanta, GA 30301" +254021,ThinkPad Laptop,1,999.99,09/23/19 20:56,"214 10th St, San Francisco, CA 94016" +254022,AAA Batteries (4-pack),1,2.99,09/24/19 23:12,"610 Wilson St, Los Angeles, CA 90001" +254023,Google Phone,1,600,09/09/19 12:59,"778 Cedar St, San Francisco, CA 94016" +254023,USB-C Charging Cable,1,11.95,09/09/19 12:59,"778 Cedar St, San Francisco, CA 94016" +254024,Lightning Charging Cable,2,14.95,09/16/19 18:32,"130 10th St, Los Angeles, CA 90001" +254025,iPhone,1,700,09/07/19 21:26,"228 Lakeview St, Dallas, TX 75001" +254026,20in Monitor,1,109.99,09/13/19 10:21,"463 Jackson St, Austin, TX 73301" +254027,Wired Headphones,1,11.99,09/30/19 16:51,"112 6th St, Dallas, TX 75001" +254028,Wired Headphones,1,11.99,09/17/19 18:52,"483 Meadow St, San Francisco, CA 94016" +254029,AAA Batteries (4-pack),2,2.99,09/19/19 15:10,"123 13th St, Seattle, WA 98101" +254030,Bose SoundSport Headphones,1,99.99,09/30/19 13:07,"714 1st St, San Francisco, CA 94016" +254031,AA Batteries (4-pack),3,3.84,09/26/19 12:29,"816 Dogwood St, Atlanta, GA 30301" +254032,USB-C Charging Cable,1,11.95,09/18/19 21:25,"351 Adams St, Dallas, TX 75001" +254033,Bose SoundSport Headphones,1,99.99,09/11/19 10:07,"374 Lakeview St, New York City, NY 10001" +254034,27in 4K Gaming Monitor,1,389.99,09/03/19 11:27,"295 Willow St, Los Angeles, CA 90001" +254035,AAA Batteries (4-pack),3,2.99,09/08/19 21:15,"539 North St, Portland, OR 97035" +254036,Bose SoundSport Headphones,1,99.99,09/10/19 13:01,"20 11th St, Los Angeles, CA 90001" +254037,USB-C Charging Cable,1,11.95,09/21/19 22:19,"42 Cedar St, San Francisco, CA 94016" +254038,USB-C Charging Cable,1,11.95,09/05/19 11:35,"458 Cherry St, Boston, MA 02215" +254039,AA Batteries (4-pack),2,3.84,09/29/19 11:02,"744 Johnson St, New York City, NY 10001" +254040,Bose SoundSport Headphones,1,99.99,09/21/19 19:25,"566 9th St, New York City, NY 10001" +254041,AA Batteries (4-pack),1,3.84,09/10/19 15:08,"566 2nd St, Austin, TX 73301" +254042,iPhone,1,700,09/21/19 18:29,"471 5th St, Atlanta, GA 30301" +254042,Wired Headphones,1,11.99,09/21/19 18:29,"471 5th St, Atlanta, GA 30301" +254043,USB-C Charging Cable,1,11.95,09/26/19 14:45,"129 Pine St, Dallas, TX 75001" +254044,Wired Headphones,1,11.99,09/28/19 06:33,"180 Main St, Austin, TX 73301" +254044,AAA Batteries (4-pack),1,2.99,09/28/19 06:33,"180 Main St, Austin, TX 73301" +254045,Wired Headphones,1,11.99,09/10/19 19:18,"810 North St, Boston, MA 02215" +254046,Flatscreen TV,1,300,09/26/19 20:28,"696 Ridge St, Los Angeles, CA 90001" +254047,Lightning Charging Cable,1,14.95,09/09/19 12:20,"529 North St, San Francisco, CA 94016" +254048,Apple Airpods Headphones,1,150,09/17/19 14:32,"704 1st St, Seattle, WA 98101" +254049,Bose SoundSport Headphones,1,99.99,09/14/19 15:24,"685 Lake St, New York City, NY 10001" +254050,Apple Airpods Headphones,1,150,09/24/19 18:06,"882 6th St, Boston, MA 02215" +254051,USB-C Charging Cable,1,11.95,09/03/19 15:08,"972 Center St, San Francisco, CA 94016" +254052,AAA Batteries (4-pack),2,2.99,09/20/19 14:53,"502 Maple St, Boston, MA 02215" +254053,AA Batteries (4-pack),1,3.84,09/02/19 10:25,"943 Elm St, San Francisco, CA 94016" +254054,AAA Batteries (4-pack),1,2.99,09/17/19 21:25,"681 Center St, San Francisco, CA 94016" +254055,Flatscreen TV,1,300,09/22/19 16:58,"419 11th St, Los Angeles, CA 90001" +254056,Lightning Charging Cable,1,14.95,09/25/19 15:31,"827 River St, San Francisco, CA 94016" +254057,20in Monitor,1,109.99,09/18/19 10:36,"256 13th St, Los Angeles, CA 90001" +254058,Wired Headphones,1,11.99,09/04/19 16:23,"671 Johnson St, New York City, NY 10001" +254059,Wired Headphones,1,11.99,09/03/19 12:38,"737 Forest St, New York City, NY 10001" +254060,Lightning Charging Cable,1,14.95,09/21/19 16:16,"170 Madison St, San Francisco, CA 94016" +254061,iPhone,1,700,09/16/19 12:13,"741 Main St, San Francisco, CA 94016" +254062,Wired Headphones,1,11.99,09/27/19 06:14,"115 6th St, Portland, OR 97035" +254063,iPhone,1,700,09/19/19 10:53,"358 Forest St, Dallas, TX 75001" +254063,Lightning Charging Cable,1,14.95,09/19/19 10:53,"358 Forest St, Dallas, TX 75001" +254064,Flatscreen TV,1,300,09/28/19 10:45,"748 Madison St, Atlanta, GA 30301" +254065,Macbook Pro Laptop,1,1700,09/02/19 17:32,"932 Park St, Los Angeles, CA 90001" +254066,27in 4K Gaming Monitor,1,389.99,09/11/19 19:15,"309 Lincoln St, San Francisco, CA 94016" +254067,USB-C Charging Cable,1,11.95,09/17/19 13:59,"230 South St, San Francisco, CA 94016" +254068,27in 4K Gaming Monitor,1,389.99,09/05/19 21:02,"863 Cherry St, Seattle, WA 98101" +254069,Flatscreen TV,1,300,09/27/19 18:10,"27 Cedar St, Los Angeles, CA 90001" +254070,Lightning Charging Cable,1,14.95,09/12/19 12:59,"630 Maple St, Dallas, TX 75001" +254071,Lightning Charging Cable,1,14.95,09/10/19 19:07,"402 River St, Seattle, WA 98101" +254072,20in Monitor,1,109.99,09/12/19 01:35,"593 Maple St, San Francisco, CA 94016" +254073,Bose SoundSport Headphones,1,99.99,09/09/19 16:12,"301 Church St, San Francisco, CA 94016" +254074,AAA Batteries (4-pack),1,2.99,09/05/19 12:09,"276 13th St, New York City, NY 10001" +254075,20in Monitor,1,109.99,09/18/19 21:21,"668 Center St, San Francisco, CA 94016" +254076,USB-C Charging Cable,1,11.95,09/14/19 04:57,"350 Spruce St, Los Angeles, CA 90001" +254077,Wired Headphones,1,11.99,09/20/19 09:52,"153 Adams St, Boston, MA 02215" +254078,34in Ultrawide Monitor,1,379.99,09/24/19 05:03,"673 South St, New York City, NY 10001" +254079,27in 4K Gaming Monitor,1,389.99,09/23/19 11:42,"539 4th St, Portland, ME 04101" +254080,AA Batteries (4-pack),1,3.84,09/23/19 11:17,"104 Willow St, San Francisco, CA 94016" +254081,AAA Batteries (4-pack),2,2.99,09/19/19 09:25,"79 10th St, Los Angeles, CA 90001" +254082,Wired Headphones,1,11.99,09/15/19 11:32,"584 Lincoln St, San Francisco, CA 94016" +254083,AAA Batteries (4-pack),1,2.99,09/30/19 12:16,"682 Madison St, New York City, NY 10001" +254084,Bose SoundSport Headphones,1,99.99,09/06/19 14:41,"560 5th St, Boston, MA 02215" +254085,AAA Batteries (4-pack),3,2.99,09/28/19 13:22,"856 Wilson St, New York City, NY 10001" +254086,Wired Headphones,1,11.99,09/21/19 14:49,"371 Madison St, San Francisco, CA 94016" +254087,Flatscreen TV,1,300,09/09/19 12:37,"198 14th St, New York City, NY 10001" +254088,USB-C Charging Cable,1,11.95,09/03/19 22:43,"602 South St, San Francisco, CA 94016" +254089,Lightning Charging Cable,1,14.95,09/02/19 00:47,"673 Wilson St, Los Angeles, CA 90001" +254090,Lightning Charging Cable,1,14.95,09/07/19 08:47,"982 Walnut St, Boston, MA 02215" +254091,Bose SoundSport Headphones,1,99.99,09/11/19 11:34,"428 Adams St, Seattle, WA 98101" +254092,Apple Airpods Headphones,1,150,09/09/19 13:22,"12 Lincoln St, San Francisco, CA 94016" +254093,Wired Headphones,2,11.99,09/10/19 21:58,"760 5th St, San Francisco, CA 94016" +254094,USB-C Charging Cable,1,11.95,09/09/19 15:04,"953 Jefferson St, San Francisco, CA 94016" +254095,Macbook Pro Laptop,1,1700,09/23/19 13:41,"227 Walnut St, New York City, NY 10001" +254096,34in Ultrawide Monitor,1,379.99,09/15/19 00:07,"276 Forest St, Atlanta, GA 30301" +254097,Wired Headphones,1,11.99,09/14/19 20:24,"649 Jackson St, Portland, OR 97035" +254098,Apple Airpods Headphones,1,150,09/05/19 15:00,"676 Church St, San Francisco, CA 94016" +254099,AAA Batteries (4-pack),1,2.99,09/18/19 00:09,"951 North St, Dallas, TX 75001" +254100,27in FHD Monitor,1,149.99,09/24/19 13:40,"722 Willow St, San Francisco, CA 94016" +254101,AAA Batteries (4-pack),2,2.99,09/05/19 21:53,"695 Chestnut St, Portland, OR 97035" +254102,AAA Batteries (4-pack),1,2.99,09/09/19 11:31,"527 Willow St, San Francisco, CA 94016" +254103,AAA Batteries (4-pack),1,2.99,09/06/19 16:48,"211 14th St, Seattle, WA 98101" +254104,27in FHD Monitor,1,149.99,09/26/19 19:46,"151 Willow St, Los Angeles, CA 90001" +254105,AAA Batteries (4-pack),1,2.99,09/10/19 16:48,"342 North St, New York City, NY 10001" +254106,27in FHD Monitor,1,149.99,09/24/19 13:06,"251 1st St, San Francisco, CA 94016" +254107,Apple Airpods Headphones,1,150,09/18/19 18:49,"820 Dogwood St, Los Angeles, CA 90001" +254108,AAA Batteries (4-pack),2,2.99,09/03/19 11:38,"403 8th St, San Francisco, CA 94016" +254108,Bose SoundSport Headphones,1,99.99,09/03/19 11:38,"403 8th St, San Francisco, CA 94016" +254109,34in Ultrawide Monitor,1,379.99,09/18/19 06:18,"319 Meadow St, New York City, NY 10001" +254110,27in 4K Gaming Monitor,1,389.99,09/14/19 11:29,"624 7th St, Los Angeles, CA 90001" +254111,AA Batteries (4-pack),2,3.84,09/19/19 07:17,"205 10th St, San Francisco, CA 94016" +254112,Apple Airpods Headphones,1,150,09/02/19 10:46,"978 4th St, Boston, MA 02215" +254113,Bose SoundSport Headphones,1,99.99,09/23/19 19:06,"529 Forest St, Los Angeles, CA 90001" +254114,Apple Airpods Headphones,1,150,09/12/19 19:32,"55 Maple St, Los Angeles, CA 90001" +254115,Lightning Charging Cable,1,14.95,09/14/19 22:04,"573 14th St, Dallas, TX 75001" +254116,Wired Headphones,1,11.99,09/24/19 23:06,"849 1st St, San Francisco, CA 94016" +254117,ThinkPad Laptop,1,999.99,09/12/19 13:15,"454 Forest St, Seattle, WA 98101" +254118,34in Ultrawide Monitor,1,379.99,09/07/19 18:01,"372 12th St, Dallas, TX 75001" +254119,AA Batteries (4-pack),1,3.84,09/10/19 11:13,"816 Jackson St, San Francisco, CA 94016" +254120,AA Batteries (4-pack),2,3.84,09/10/19 12:17,"241 7th St, San Francisco, CA 94016" +254121,Wired Headphones,1,11.99,09/10/19 11:29,"279 Adams St, Atlanta, GA 30301" +254122,AAA Batteries (4-pack),1,2.99,09/18/19 13:10,"54 West St, New York City, NY 10001" +254123,Wired Headphones,1,11.99,09/12/19 20:02,"423 9th St, Portland, OR 97035" +254124,AA Batteries (4-pack),1,3.84,09/27/19 15:25,"636 Jackson St, New York City, NY 10001" +254125,USB-C Charging Cable,1,11.95,09/29/19 17:10,"696 Willow St, Austin, TX 73301" +254126,Bose SoundSport Headphones,1,99.99,09/27/19 18:02,"346 River St, Dallas, TX 75001" +254127,Wired Headphones,1,11.99,09/17/19 13:47,"395 West St, Seattle, WA 98101" +254128,Bose SoundSport Headphones,1,99.99,09/01/19 09:55,"792 Forest St, Los Angeles, CA 90001" +254129,USB-C Charging Cable,1,11.95,09/15/19 15:23,"287 Ridge St, San Francisco, CA 94016" +254130,AAA Batteries (4-pack),2,2.99,09/11/19 11:49,"553 Park St, Boston, MA 02215" +254131,Vareebadd Phone,1,400,09/30/19 12:56,"774 Walnut St, Atlanta, GA 30301" +254131,Wired Headphones,1,11.99,09/30/19 12:56,"774 Walnut St, Atlanta, GA 30301" +254132,Wired Headphones,1,11.99,09/06/19 07:32,"260 Lincoln St, San Francisco, CA 94016" +254133,Lightning Charging Cable,1,14.95,09/20/19 18:32,"486 Lake St, Los Angeles, CA 90001" +254134,iPhone,1,700,09/02/19 04:56,"588 Park St, Atlanta, GA 30301" +254135,AAA Batteries (4-pack),1,2.99,09/27/19 20:45,"113 Elm St, San Francisco, CA 94016" +254136,USB-C Charging Cable,1,11.95,09/01/19 13:20,"8 Cherry St, New York City, NY 10001" +254137,Wired Headphones,2,11.99,09/12/19 08:43,"703 Adams St, San Francisco, CA 94016" +254138,Apple Airpods Headphones,1,150,09/21/19 15:39,"901 9th St, San Francisco, CA 94016" +254139,AAA Batteries (4-pack),1,2.99,09/16/19 20:51,"373 Adams St, New York City, NY 10001" +254140,AA Batteries (4-pack),1,3.84,09/07/19 10:16,"662 Dogwood St, Atlanta, GA 30301" +254141,Bose SoundSport Headphones,1,99.99,09/08/19 22:24,"814 7th St, New York City, NY 10001" +254142,Wired Headphones,1,11.99,09/08/19 11:58,"22 River St, Dallas, TX 75001" +254143,Apple Airpods Headphones,1,150,09/18/19 18:57,"707 West St, San Francisco, CA 94016" +254144,Google Phone,1,600,09/24/19 17:07,"27 North St, San Francisco, CA 94016" +254144,Wired Headphones,1,11.99,09/24/19 17:07,"27 North St, San Francisco, CA 94016" +254145,Apple Airpods Headphones,1,150,09/02/19 09:19,"966 11th St, Portland, ME 04101" +254146,Lightning Charging Cable,1,14.95,09/15/19 20:50,"132 6th St, Los Angeles, CA 90001" +254147,iPhone,1,700,09/25/19 20:33,"853 Main St, Los Angeles, CA 90001" +254148,Wired Headphones,1,11.99,09/19/19 21:00,"359 10th St, Boston, MA 02215" +254149,AAA Batteries (4-pack),1,2.99,09/15/19 08:18,"7 River St, New York City, NY 10001" +254150,Wired Headphones,1,11.99,09/26/19 14:11,"6 Lake St, Los Angeles, CA 90001" +254151,Lightning Charging Cable,1,14.95,09/10/19 14:47,"83 Walnut St, Portland, OR 97035" +254152,USB-C Charging Cable,1,11.95,09/24/19 08:06,"314 Maple St, San Francisco, CA 94016" +254153,AA Batteries (4-pack),1,3.84,09/06/19 11:31,"725 Lakeview St, Los Angeles, CA 90001" +254154,AA Batteries (4-pack),2,3.84,09/15/19 22:45,"6 Walnut St, Atlanta, GA 30301" +254155,Bose SoundSport Headphones,1,99.99,09/07/19 23:16,"506 West St, San Francisco, CA 94016" +254156,USB-C Charging Cable,1,11.95,09/22/19 13:35,"35 River St, New York City, NY 10001" +254157,27in 4K Gaming Monitor,1,389.99,09/18/19 19:11,"141 Center St, New York City, NY 10001" +254158,AAA Batteries (4-pack),2,2.99,09/12/19 22:13,"171 Sunset St, Austin, TX 73301" +254159,Bose SoundSport Headphones,1,99.99,09/21/19 10:45,"42 Madison St, New York City, NY 10001" +254160,USB-C Charging Cable,1,11.95,09/20/19 12:33,"834 Main St, Austin, TX 73301" +254161,USB-C Charging Cable,1,11.95,09/02/19 12:06,"966 Dogwood St, Boston, MA 02215" +254161,Bose SoundSport Headphones,1,99.99,09/02/19 12:06,"966 Dogwood St, Boston, MA 02215" +254162,Google Phone,1,600,09/11/19 17:36,"446 Johnson St, Portland, OR 97035" +254162,Bose SoundSport Headphones,1,99.99,09/11/19 17:36,"446 Johnson St, Portland, OR 97035" +254163,AA Batteries (4-pack),1,3.84,09/09/19 18:07,"151 Jefferson St, San Francisco, CA 94016" +254164,USB-C Charging Cable,1,11.95,09/19/19 11:47,"234 Ridge St, San Francisco, CA 94016" +254165,USB-C Charging Cable,1,11.95,09/10/19 14:52,"822 5th St, Boston, MA 02215" +254166,Lightning Charging Cable,1,14.95,09/02/19 21:52,"815 Johnson St, Los Angeles, CA 90001" +254167,USB-C Charging Cable,1,11.95,09/21/19 11:54,"571 Wilson St, Los Angeles, CA 90001" +254168,AA Batteries (4-pack),1,3.84,09/29/19 16:36,"759 West St, San Francisco, CA 94016" +254169,Bose SoundSport Headphones,1,99.99,09/04/19 21:51,"531 7th St, Atlanta, GA 30301" +254170,AAA Batteries (4-pack),2,2.99,09/25/19 15:54,"349 Highland St, New York City, NY 10001" +254171,Apple Airpods Headphones,1,150,09/06/19 20:45,"892 Johnson St, Los Angeles, CA 90001" +254172,34in Ultrawide Monitor,1,379.99,09/16/19 14:51,"422 7th St, New York City, NY 10001" +254173,Lightning Charging Cable,1,14.95,09/10/19 21:09,"226 11th St, San Francisco, CA 94016" +254174,27in FHD Monitor,1,149.99,09/05/19 09:11,"387 Jackson St, Atlanta, GA 30301" +254175,Lightning Charging Cable,1,14.95,09/21/19 15:54,"50 Washington St, Boston, MA 02215" +254176,Vareebadd Phone,1,400,09/15/19 22:20,"28 Cedar St, New York City, NY 10001" +254177,Lightning Charging Cable,1,14.95,09/08/19 14:43,"945 Cherry St, Portland, OR 97035" +254178,Wired Headphones,1,11.99,09/27/19 19:37,"423 4th St, San Francisco, CA 94016" +254179,Apple Airpods Headphones,1,150,09/28/19 12:06,"640 Jackson St, San Francisco, CA 94016" +254180,USB-C Charging Cable,1,11.95,09/08/19 00:13,"680 Maple St, Los Angeles, CA 90001" +254181,Lightning Charging Cable,1,14.95,09/06/19 08:52,"562 11th St, Boston, MA 02215" +254182,iPhone,1,700,09/11/19 15:37,"425 14th St, Atlanta, GA 30301" +254183,AA Batteries (4-pack),1,3.84,09/27/19 09:13,"504 Lake St, San Francisco, CA 94016" +254184,Lightning Charging Cable,1,14.95,09/27/19 11:50,"570 Hickory St, New York City, NY 10001" +254185,Flatscreen TV,1,300,09/29/19 17:49,"863 Walnut St, New York City, NY 10001" +254186,USB-C Charging Cable,1,11.95,09/20/19 12:16,"767 Pine St, Los Angeles, CA 90001" +254187,27in 4K Gaming Monitor,1,389.99,09/07/19 20:22,"289 Meadow St, San Francisco, CA 94016" +254188,27in FHD Monitor,1,149.99,09/04/19 10:02,"644 Madison St, San Francisco, CA 94016" +254189,USB-C Charging Cable,1,11.95,09/01/19 15:38,"83 12th St, San Francisco, CA 94016" +254190,AA Batteries (4-pack),3,3.84,09/07/19 10:50,"132 Lakeview St, Boston, MA 02215" +254191,AA Batteries (4-pack),2,3.84,09/15/19 21:08,"924 Washington St, Dallas, TX 75001" +254192,Lightning Charging Cable,1,14.95,09/28/19 17:30,"337 Hickory St, New York City, NY 10001" +254193,27in 4K Gaming Monitor,1,389.99,09/06/19 15:20,"399 Park St, San Francisco, CA 94016" +254194,AA Batteries (4-pack),2,3.84,09/21/19 23:46,"463 4th St, Seattle, WA 98101" +254195,Lightning Charging Cable,1,14.95,09/18/19 21:01,"863 12th St, Los Angeles, CA 90001" +254196,AA Batteries (4-pack),3,3.84,09/24/19 12:23,"58 Park St, Dallas, TX 75001" +254197,Wired Headphones,1,11.99,09/20/19 19:36,"557 Lakeview St, San Francisco, CA 94016" +254198,AAA Batteries (4-pack),1,2.99,09/04/19 19:17,"570 10th St, New York City, NY 10001" +254199,27in 4K Gaming Monitor,1,389.99,09/20/19 12:18,"894 Jackson St, San Francisco, CA 94016" +254200,ThinkPad Laptop,1,999.99,09/15/19 19:29,"478 Pine St, Boston, MA 02215" +254201,34in Ultrawide Monitor,1,379.99,09/04/19 11:08,"59 Johnson St, Portland, ME 04101" +254202,Macbook Pro Laptop,1,1700,09/14/19 19:38,"37 9th St, Portland, OR 97035" +254203,Lightning Charging Cable,1,14.95,09/12/19 19:03,"788 Park St, San Francisco, CA 94016" +254204,USB-C Charging Cable,1,11.95,09/27/19 14:28,"920 Wilson St, Portland, OR 97035" +254205,AAA Batteries (4-pack),1,2.99,09/10/19 15:15,"712 Park St, Boston, MA 02215" +254206,AA Batteries (4-pack),1,3.84,09/08/19 14:53,"82 West St, Dallas, TX 75001" +254207,27in 4K Gaming Monitor,1,389.99,09/01/19 14:10,"98 Dogwood St, Los Angeles, CA 90001" +254208,Lightning Charging Cable,1,14.95,09/29/19 23:26,"302 Washington St, Seattle, WA 98101" +254209,Wired Headphones,1,11.99,09/21/19 20:19,"105 Walnut St, Los Angeles, CA 90001" +254210,Bose SoundSport Headphones,1,99.99,09/20/19 09:43,"901 Lake St, Seattle, WA 98101" +254211,Wired Headphones,1,11.99,09/23/19 09:31,"606 Wilson St, San Francisco, CA 94016" +254212,AA Batteries (4-pack),3,3.84,09/26/19 22:56,"371 10th St, Seattle, WA 98101" +254213,USB-C Charging Cable,1,11.95,09/27/19 19:44,"895 Elm St, Portland, OR 97035" +254214,27in 4K Gaming Monitor,1,389.99,09/02/19 21:03,"286 9th St, San Francisco, CA 94016" +254215,LG Washing Machine,1,600.0,09/29/19 15:59,"929 10th St, Los Angeles, CA 90001" +254216,USB-C Charging Cable,1,11.95,09/08/19 09:40,"765 2nd St, Los Angeles, CA 90001" +254217,iPhone,1,700,09/27/19 04:39,"235 Center St, New York City, NY 10001" +254218,Wired Headphones,1,11.99,09/02/19 14:51,"642 2nd St, Portland, ME 04101" +254219,AA Batteries (4-pack),2,3.84,09/05/19 00:15,"648 Ridge St, San Francisco, CA 94016" +254220,USB-C Charging Cable,1,11.95,09/03/19 12:26,"321 Sunset St, Boston, MA 02215" +254220,USB-C Charging Cable,1,11.95,09/03/19 12:26,"321 Sunset St, Boston, MA 02215" +254221,USB-C Charging Cable,1,11.95,09/12/19 14:01,"177 Lakeview St, San Francisco, CA 94016" +254222,AAA Batteries (4-pack),1,2.99,09/29/19 21:33,"239 Main St, San Francisco, CA 94016" +254223,AAA Batteries (4-pack),1,2.99,09/24/19 00:32,"15 Hill St, Dallas, TX 75001" +254224,Apple Airpods Headphones,1,150,09/02/19 12:48,"148 Willow St, Portland, OR 97035" +254225,USB-C Charging Cable,1,11.95,09/25/19 17:43,"725 Center St, Dallas, TX 75001" +254226,AA Batteries (4-pack),3,3.84,09/28/19 08:32,"531 Main St, Dallas, TX 75001" +254227,27in 4K Gaming Monitor,1,389.99,09/17/19 19:10,"65 Lakeview St, San Francisco, CA 94016" +254228,Lightning Charging Cable,1,14.95,09/19/19 22:10,"859 11th St, Dallas, TX 75001" +254229,Macbook Pro Laptop,1,1700,09/07/19 13:22,"482 Washington St, Austin, TX 73301" +254230,34in Ultrawide Monitor,1,379.99,09/26/19 21:42,"335 5th St, San Francisco, CA 94016" +254231,USB-C Charging Cable,1,11.95,09/11/19 14:06,"547 Lake St, Boston, MA 02215" +254232,AAA Batteries (4-pack),1,2.99,09/08/19 09:00,"925 Walnut St, Los Angeles, CA 90001" +254233,ThinkPad Laptop,1,999.99,09/01/19 17:43,"251 Washington St, Boston, MA 02215" +254234,Apple Airpods Headphones,1,150,09/16/19 22:39,"960 Sunset St, Los Angeles, CA 90001" +254235,AAA Batteries (4-pack),1,2.99,09/27/19 13:07,"344 Lincoln St, Boston, MA 02215" +254236,AAA Batteries (4-pack),1,2.99,09/18/19 08:25,"136 Hill St, San Francisco, CA 94016" +,,,,, +254237,Wired Headphones,1,11.99,09/02/19 15:58,"717 1st St, Portland, ME 04101" +254238,AAA Batteries (4-pack),2,2.99,09/29/19 12:52,"682 8th St, San Francisco, CA 94016" +254239,Wired Headphones,1,11.99,09/10/19 21:16,"127 Ridge St, Boston, MA 02215" +254240,Wired Headphones,1,11.99,09/10/19 14:54,"694 Dogwood St, Los Angeles, CA 90001" +254241,Flatscreen TV,1,300,09/07/19 17:42,"680 11th St, San Francisco, CA 94016" +254242,USB-C Charging Cable,2,11.95,09/27/19 13:20,"93 11th St, New York City, NY 10001" +254243,LG Dryer,1,600.0,09/03/19 20:49,"346 Pine St, San Francisco, CA 94016" +254244,AAA Batteries (4-pack),1,2.99,09/30/19 01:32,"643 10th St, New York City, NY 10001" +254245,20in Monitor,1,109.99,09/04/19 14:58,"222 1st St, Boston, MA 02215" +254246,Vareebadd Phone,1,400,09/05/19 18:17,"639 1st St, Portland, OR 97035" +254247,Apple Airpods Headphones,1,150,09/18/19 14:44,"375 4th St, Portland, OR 97035" +254248,Bose SoundSport Headphones,1,99.99,09/11/19 09:57,"183 Lake St, Seattle, WA 98101" +254249,USB-C Charging Cable,2,11.95,09/22/19 17:56,"971 Church St, New York City, NY 10001" +254250,Apple Airpods Headphones,1,150,09/03/19 18:50,"610 Elm St, Atlanta, GA 30301" +254251,AA Batteries (4-pack),3,3.84,09/05/19 15:52,"431 Elm St, Austin, TX 73301" +254252,Wired Headphones,1,11.99,09/23/19 18:00,"958 1st St, Seattle, WA 98101" +254253,Google Phone,1,600,09/10/19 21:45,"352 Ridge St, San Francisco, CA 94016" +254254,AAA Batteries (4-pack),1,2.99,09/03/19 12:34,"566 4th St, Dallas, TX 75001" +254254,ThinkPad Laptop,1,999.99,09/03/19 12:34,"566 4th St, Dallas, TX 75001" +254255,AA Batteries (4-pack),1,3.84,09/25/19 11:15,"658 Lakeview St, New York City, NY 10001" +254256,Lightning Charging Cable,1,14.95,09/10/19 16:44,"913 Wilson St, New York City, NY 10001" +254257,Macbook Pro Laptop,1,1700,09/28/19 09:43,"551 11th St, Portland, OR 97035" +254258,27in 4K Gaming Monitor,1,389.99,09/01/19 22:32,"673 Dogwood St, San Francisco, CA 94016" +254259,27in FHD Monitor,1,149.99,09/22/19 11:39,"493 Washington St, Los Angeles, CA 90001" +254260,AA Batteries (4-pack),1,3.84,09/09/19 16:57,"597 Forest St, San Francisco, CA 94016" +254260,AA Batteries (4-pack),1,3.84,09/09/19 16:57,"597 Forest St, San Francisco, CA 94016" +254261,Apple Airpods Headphones,1,150,09/02/19 11:19,"562 Ridge St, San Francisco, CA 94016" +254262,Wired Headphones,1,11.99,09/01/19 06:21,"985 Center St, San Francisco, CA 94016" +254263,Bose SoundSport Headphones,1,99.99,09/19/19 16:54,"411 Willow St, New York City, NY 10001" +254264,Bose SoundSport Headphones,1,99.99,09/23/19 19:58,"876 14th St, Portland, OR 97035" +254265,34in Ultrawide Monitor,1,379.99,09/02/19 20:22,"559 Park St, New York City, NY 10001" +254266,Wired Headphones,1,11.99,09/18/19 19:53,"831 Sunset St, New York City, NY 10001" +254267,AAA Batteries (4-pack),1,2.99,09/17/19 22:38,"404 Ridge St, Seattle, WA 98101" +254268,AAA Batteries (4-pack),1,2.99,09/16/19 18:35,"88 Lake St, Seattle, WA 98101" +254269,34in Ultrawide Monitor,1,379.99,09/01/19 14:49,"718 Main St, Atlanta, GA 30301" +254270,USB-C Charging Cable,1,11.95,09/04/19 13:52,"998 2nd St, New York City, NY 10001" +254271,AA Batteries (4-pack),1,3.84,09/12/19 20:48,"307 Dogwood St, Austin, TX 73301" +254272,AAA Batteries (4-pack),2,2.99,09/07/19 16:28,"847 Lakeview St, San Francisco, CA 94016" +254273,Bose SoundSport Headphones,1,99.99,09/14/19 17:22,"405 8th St, New York City, NY 10001" +254274,Apple Airpods Headphones,1,150,09/28/19 15:11,"161 Washington St, Dallas, TX 75001" +254275,34in Ultrawide Monitor,1,379.99,09/13/19 20:10,"970 10th St, Atlanta, GA 30301" +254276,34in Ultrawide Monitor,1,379.99,09/07/19 18:03,"373 8th St, Austin, TX 73301" +254277,Google Phone,1,600,09/23/19 13:43,"577 Wilson St, San Francisco, CA 94016" +254277,AA Batteries (4-pack),1,3.84,09/23/19 13:43,"577 Wilson St, San Francisco, CA 94016" +254278,Wired Headphones,1,11.99,09/09/19 14:39,"122 Lakeview St, New York City, NY 10001" +254279,Lightning Charging Cable,1,14.95,09/12/19 09:45,"828 River St, San Francisco, CA 94016" +254280,LG Washing Machine,1,600.0,09/03/19 09:49,"454 Church St, San Francisco, CA 94016" +254281,AA Batteries (4-pack),1,3.84,09/02/19 14:23,"703 Dogwood St, Seattle, WA 98101" +254282,AA Batteries (4-pack),1,3.84,09/18/19 13:46,"70 Walnut St, San Francisco, CA 94016" +254283,27in FHD Monitor,1,149.99,09/24/19 18:10,"637 Washington St, Seattle, WA 98101" +254284,Bose SoundSport Headphones,1,99.99,09/20/19 14:44,"743 Highland St, Dallas, TX 75001" +254285,Lightning Charging Cable,1,14.95,09/22/19 20:14,"674 Johnson St, Portland, OR 97035" +254286,AAA Batteries (4-pack),1,2.99,09/11/19 18:07,"355 4th St, San Francisco, CA 94016" +254287,Flatscreen TV,1,300,09/07/19 10:31,"332 Willow St, Portland, OR 97035" +254288,Wired Headphones,1,11.99,09/10/19 22:38,"921 Elm St, San Francisco, CA 94016" +254289,Apple Airpods Headphones,1,150,09/01/19 17:28,"466 Ridge St, Los Angeles, CA 90001" +254290,ThinkPad Laptop,1,999.99,09/18/19 17:02,"129 6th St, Boston, MA 02215" +254291,Lightning Charging Cable,2,14.95,09/22/19 17:50,"962 5th St, Portland, OR 97035" +254292,Lightning Charging Cable,1,14.95,09/09/19 06:19,"483 Church St, Austin, TX 73301" +254293,AAA Batteries (4-pack),5,2.99,09/01/19 15:35,"543 Forest St, Los Angeles, CA 90001" +254294,27in FHD Monitor,1,149.99,09/28/19 10:30,"693 10th St, Portland, OR 97035" +254295,Bose SoundSport Headphones,1,99.99,09/06/19 21:51,"65 Lincoln St, Los Angeles, CA 90001" +254296,Macbook Pro Laptop,1,1700,09/23/19 10:11,"940 13th St, Dallas, TX 75001" +254297,Lightning Charging Cable,1,14.95,09/11/19 11:18,"809 Cedar St, Portland, OR 97035" +254298,AA Batteries (4-pack),1,3.84,09/18/19 12:08,"415 1st St, Boston, MA 02215" +254299,Lightning Charging Cable,1,14.95,09/09/19 14:11,"112 Chestnut St, New York City, NY 10001" +254300,USB-C Charging Cable,1,11.95,09/26/19 19:53,"770 Cedar St, New York City, NY 10001" +254301,Macbook Pro Laptop,1,1700,09/06/19 08:18,"618 Jefferson St, Boston, MA 02215" +254302,Flatscreen TV,1,300,09/10/19 16:23,"102 Cedar St, New York City, NY 10001" +254303,Wired Headphones,1,11.99,09/15/19 10:45,"769 Walnut St, Portland, OR 97035" +254304,34in Ultrawide Monitor,1,379.99,09/27/19 08:07,"640 10th St, Dallas, TX 75001" +254305,34in Ultrawide Monitor,1,379.99,09/29/19 12:14,"110 2nd St, New York City, NY 10001" +254306,Bose SoundSport Headphones,1,99.99,09/02/19 13:09,"175 Highland St, San Francisco, CA 94016" +254307,USB-C Charging Cable,1,11.95,09/13/19 17:06,"417 Cedar St, San Francisco, CA 94016" +254308,AA Batteries (4-pack),1,3.84,09/18/19 20:18,"836 12th St, New York City, NY 10001" +254309,Vareebadd Phone,1,400,09/11/19 16:34,"66 1st St, San Francisco, CA 94016" +254309,USB-C Charging Cable,1,11.95,09/11/19 16:34,"66 1st St, San Francisco, CA 94016" +254310,AA Batteries (4-pack),1,3.84,09/18/19 12:52,"331 Lincoln St, Seattle, WA 98101" +254311,34in Ultrawide Monitor,1,379.99,09/07/19 17:44,"645 Washington St, New York City, NY 10001" +254312,AAA Batteries (4-pack),1,2.99,09/13/19 09:34,"580 Jefferson St, Austin, TX 73301" +254313,Wired Headphones,1,11.99,09/03/19 16:01,"609 Johnson St, Seattle, WA 98101" +254314,Lightning Charging Cable,1,14.95,09/30/19 21:30,"587 Jefferson St, Austin, TX 73301" +254315,Wired Headphones,1,11.99,09/18/19 14:25,"513 Walnut St, New York City, NY 10001" +254316,Wired Headphones,2,11.99,09/08/19 14:00,"251 Lake St, New York City, NY 10001" +254317,Lightning Charging Cable,1,14.95,09/19/19 11:14,"507 11th St, Atlanta, GA 30301" +254318,AA Batteries (4-pack),2,3.84,09/21/19 22:02,"517 West St, Seattle, WA 98101" +254319,iPhone,1,700,09/03/19 21:08,"198 9th St, New York City, NY 10001" +254319,Wired Headphones,1,11.99,09/03/19 21:08,"198 9th St, New York City, NY 10001" +254320,USB-C Charging Cable,1,11.95,09/13/19 22:45,"332 West St, San Francisco, CA 94016" +254321,Lightning Charging Cable,1,14.95,09/21/19 20:19,"591 4th St, Los Angeles, CA 90001" +254322,Lightning Charging Cable,1,14.95,09/28/19 22:50,"631 Church St, San Francisco, CA 94016" +254323,Flatscreen TV,1,300,09/09/19 19:49,"148 Church St, San Francisco, CA 94016" +254324,20in Monitor,1,109.99,09/10/19 17:21,"297 Pine St, Dallas, TX 75001" +254325,Lightning Charging Cable,1,14.95,09/08/19 14:51,"652 Elm St, San Francisco, CA 94016" +254326,Lightning Charging Cable,1,14.95,09/29/19 22:30,"268 Washington St, Austin, TX 73301" +254327,Google Phone,1,600,09/18/19 20:39,"958 Church St, Austin, TX 73301" +254328,Google Phone,1,600,09/03/19 02:13,"916 Spruce St, Dallas, TX 75001" +254329,AA Batteries (4-pack),2,3.84,09/17/19 12:58,"562 Walnut St, Austin, TX 73301" +254330,USB-C Charging Cable,1,11.95,09/22/19 13:26,"919 Hickory St, Dallas, TX 75001" +254331,AAA Batteries (4-pack),1,2.99,09/04/19 14:22,"690 Church St, Boston, MA 02215" +254332,AA Batteries (4-pack),1,3.84,09/07/19 13:55,"449 Forest St, Los Angeles, CA 90001" +254333,iPhone,1,700,09/05/19 17:03,"596 Willow St, Los Angeles, CA 90001" +254334,Flatscreen TV,1,300,09/12/19 11:09,"898 Lakeview St, Seattle, WA 98101" +254335,Bose SoundSport Headphones,1,99.99,09/09/19 10:06,"488 Adams St, Dallas, TX 75001" +254336,ThinkPad Laptop,1,999.99,09/25/19 13:31,"515 6th St, Portland, ME 04101" +254337,Wired Headphones,1,11.99,09/24/19 22:39,"114 Walnut St, Los Angeles, CA 90001" +254338,Bose SoundSport Headphones,1,99.99,09/10/19 10:57,"415 Elm St, Austin, TX 73301" +254339,27in FHD Monitor,1,149.99,09/27/19 23:02,"825 14th St, Los Angeles, CA 90001" +254340,AAA Batteries (4-pack),2,2.99,09/22/19 10:55,"395 Cedar St, Atlanta, GA 30301" +254341,AAA Batteries (4-pack),1,2.99,09/17/19 10:25,"328 Wilson St, Los Angeles, CA 90001" +254342,Google Phone,1,600,09/02/19 10:32,"644 Walnut St, Boston, MA 02215" +254343,USB-C Charging Cable,1,11.95,09/29/19 15:04,"256 Wilson St, Seattle, WA 98101" +254344,AA Batteries (4-pack),1,3.84,09/12/19 13:17,"293 Jefferson St, Austin, TX 73301" +254345,Apple Airpods Headphones,1,150,09/13/19 20:00,"841 11th St, Dallas, TX 75001" +254346,ThinkPad Laptop,1,999.99,09/02/19 09:47,"87 Chestnut St, Dallas, TX 75001" +254347,AA Batteries (4-pack),1,3.84,09/02/19 17:29,"873 Cedar St, Portland, ME 04101" +254348,iPhone,1,700,09/05/19 20:46,"569 Cherry St, Boston, MA 02215" +254349,34in Ultrawide Monitor,1,379.99,09/08/19 11:19,"487 Chestnut St, San Francisco, CA 94016" +254350,Wired Headphones,1,11.99,09/10/19 23:58,"9 Meadow St, San Francisco, CA 94016" +254351,Apple Airpods Headphones,2,150,09/20/19 07:57,"310 North St, Atlanta, GA 30301" +254352,AA Batteries (4-pack),3,3.84,09/21/19 11:01,"852 8th St, Los Angeles, CA 90001" +254353,Wired Headphones,1,11.99,09/08/19 20:44,"600 North St, Los Angeles, CA 90001" +254354,Wired Headphones,1,11.99,09/30/19 13:52,"290 9th St, San Francisco, CA 94016" +254355,Macbook Pro Laptop,1,1700,09/20/19 17:09,"744 Lincoln St, San Francisco, CA 94016" +254356,Macbook Pro Laptop,1,1700,09/21/19 20:28,"723 Hickory St, Portland, ME 04101" +254357,Lightning Charging Cable,1,14.95,09/27/19 14:13,"578 Hill St, San Francisco, CA 94016" +254358,Bose SoundSport Headphones,1,99.99,09/22/19 11:08,"312 9th St, Dallas, TX 75001" +254359,Apple Airpods Headphones,1,150,09/04/19 14:47,"973 North St, Boston, MA 02215" +254360,27in FHD Monitor,1,149.99,09/24/19 21:28,"777 Pine St, Atlanta, GA 30301" +254361,27in FHD Monitor,1,149.99,09/04/19 18:18,"455 Main St, Los Angeles, CA 90001" +254362,USB-C Charging Cable,1,11.95,09/02/19 18:36,"113 Main St, Portland, OR 97035" +254363,AAA Batteries (4-pack),1,2.99,09/08/19 16:24,"640 13th St, Austin, TX 73301" +254364,AAA Batteries (4-pack),1,2.99,09/29/19 14:01,"562 4th St, Los Angeles, CA 90001" +254365,AAA Batteries (4-pack),3,2.99,09/10/19 19:37,"736 Church St, San Francisco, CA 94016" +254366,Flatscreen TV,1,300,09/09/19 16:21,"313 Spruce St, San Francisco, CA 94016" +254367,Bose SoundSport Headphones,1,99.99,09/20/19 18:47,"571 Highland St, Los Angeles, CA 90001" +254368,USB-C Charging Cable,1,11.95,09/21/19 21:56,"391 Maple St, Atlanta, GA 30301" +254369,Bose SoundSport Headphones,1,99.99,09/16/19 20:28,"558 River St, Los Angeles, CA 90001" +254369,Wired Headphones,1,11.99,09/16/19 20:28,"558 River St, Los Angeles, CA 90001" +254370,27in FHD Monitor,1,149.99,09/23/19 03:26,"344 Chestnut St, Portland, OR 97035" +254371,AA Batteries (4-pack),1,3.84,09/21/19 07:03,"101 12th St, New York City, NY 10001" +254372,AA Batteries (4-pack),1,3.84,09/09/19 17:35,"114 Johnson St, Boston, MA 02215" +254373,27in 4K Gaming Monitor,1,389.99,09/01/19 14:59,"45 Madison St, San Francisco, CA 94016" +254374,20in Monitor,1,109.99,09/22/19 04:50,"411 7th St, New York City, NY 10001" +254375,Apple Airpods Headphones,1,150,09/26/19 08:18,"34 Washington St, Austin, TX 73301" +254376,Wired Headphones,1,11.99,09/19/19 20:41,"404 Spruce St, Atlanta, GA 30301" +254377,27in 4K Gaming Monitor,1,389.99,09/08/19 13:34,"638 Meadow St, Los Angeles, CA 90001" +254378,Apple Airpods Headphones,1,150,09/04/19 17:58,"145 Madison St, Dallas, TX 75001" +254379,Wired Headphones,1,11.99,09/25/19 14:34,"681 12th St, New York City, NY 10001" +254380,27in FHD Monitor,1,149.99,09/02/19 17:10,"190 Walnut St, Austin, TX 73301" +254381,AAA Batteries (4-pack),1,2.99,09/23/19 20:29,"917 10th St, San Francisco, CA 94016" +254382,Apple Airpods Headphones,1,150,09/26/19 21:48,"351 Walnut St, Atlanta, GA 30301" +254383,20in Monitor,1,109.99,09/06/19 10:41,"31 Lake St, San Francisco, CA 94016" +254384,Wired Headphones,1,11.99,09/29/19 10:51,"570 Main St, Boston, MA 02215" +254385,AAA Batteries (4-pack),2,2.99,09/04/19 00:03,"328 Walnut St, San Francisco, CA 94016" +254386,Google Phone,1,600,09/11/19 14:23,"495 Adams St, San Francisco, CA 94016" +254386,USB-C Charging Cable,1,11.95,09/11/19 14:23,"495 Adams St, San Francisco, CA 94016" +254386,Wired Headphones,1,11.99,09/11/19 14:23,"495 Adams St, San Francisco, CA 94016" +254387,Lightning Charging Cable,1,14.95,09/23/19 11:47,"546 12th St, Boston, MA 02215" +254388,Lightning Charging Cable,1,14.95,09/20/19 09:20,"337 4th St, San Francisco, CA 94016" +254389,Bose SoundSport Headphones,1,99.99,09/08/19 10:27,"646 Sunset St, Los Angeles, CA 90001" +254390,Wired Headphones,1,11.99,09/10/19 11:34,"856 Chestnut St, Los Angeles, CA 90001" +254391,Lightning Charging Cable,1,14.95,09/01/19 13:52,"980 Meadow St, Seattle, WA 98101" +254392,AAA Batteries (4-pack),2,2.99,09/27/19 16:46,"641 Elm St, Boston, MA 02215" +254393,AAA Batteries (4-pack),1,2.99,09/23/19 12:22,"596 Spruce St, Los Angeles, CA 90001" +254394,AA Batteries (4-pack),2,3.84,09/14/19 15:17,"107 Elm St, San Francisco, CA 94016" +254395,Lightning Charging Cable,1,14.95,09/03/19 00:12,"566 Sunset St, San Francisco, CA 94016" +254396,20in Monitor,1,109.99,09/19/19 16:06,"447 9th St, Los Angeles, CA 90001" +254397,Apple Airpods Headphones,1,150,09/24/19 01:17,"260 8th St, Seattle, WA 98101" +254398,Macbook Pro Laptop,1,1700,09/24/19 18:08,"953 Dogwood St, Boston, MA 02215" +254399,Lightning Charging Cable,1,14.95,09/13/19 10:39,"597 Dogwood St, San Francisco, CA 94016" +254400,USB-C Charging Cable,1,11.95,09/23/19 21:06,"448 Sunset St, Boston, MA 02215" +254401,34in Ultrawide Monitor,1,379.99,09/28/19 14:31,"406 11th St, Boston, MA 02215" +254402,Macbook Pro Laptop,1,1700,09/18/19 14:47,"975 Johnson St, San Francisco, CA 94016" +254403,iPhone,1,700,09/26/19 07:36,"239 Lakeview St, Seattle, WA 98101" +254404,Lightning Charging Cable,1,14.95,09/12/19 09:38,"312 Lincoln St, New York City, NY 10001" +254405,Wired Headphones,2,11.99,09/21/19 23:20,"960 Madison St, Portland, OR 97035" +254406,Apple Airpods Headphones,1,150,09/29/19 21:25,"394 West St, San Francisco, CA 94016" +254407,USB-C Charging Cable,1,11.95,09/11/19 14:36,"923 Main St, New York City, NY 10001" +254408,27in 4K Gaming Monitor,1,389.99,09/20/19 17:32,"931 Dogwood St, New York City, NY 10001" +254409,Wired Headphones,1,11.99,09/15/19 17:41,"762 10th St, Atlanta, GA 30301" +254410,Wired Headphones,1,11.99,09/06/19 12:14,"217 Willow St, New York City, NY 10001" +254411,USB-C Charging Cable,1,11.95,09/16/19 00:09,"160 Jefferson St, New York City, NY 10001" +254412,iPhone,1,700,09/13/19 01:09,"502 River St, New York City, NY 10001" +254413,Apple Airpods Headphones,1,150,09/25/19 14:41,"449 Chestnut St, Los Angeles, CA 90001" +254414,USB-C Charging Cable,1,11.95,09/21/19 23:06,"966 13th St, Atlanta, GA 30301" +254415,27in 4K Gaming Monitor,1,389.99,09/18/19 16:52,"171 South St, Seattle, WA 98101" +254416,34in Ultrawide Monitor,1,379.99,09/08/19 22:25,"398 Adams St, Seattle, WA 98101" +254417,USB-C Charging Cable,1,11.95,09/28/19 18:15,"825 8th St, Boston, MA 02215" +254418,AA Batteries (4-pack),1,3.84,09/03/19 12:32,"467 Hill St, Seattle, WA 98101" +254419,USB-C Charging Cable,2,11.95,09/16/19 15:30,"678 Main St, Seattle, WA 98101" +254420,AAA Batteries (4-pack),1,2.99,09/11/19 12:41,"74 5th St, Los Angeles, CA 90001" +254421,Bose SoundSport Headphones,1,99.99,09/10/19 21:58,"263 West St, Los Angeles, CA 90001" +254422,AAA Batteries (4-pack),2,2.99,09/06/19 10:12,"945 Jefferson St, New York City, NY 10001" +254423,AA Batteries (4-pack),5,3.84,09/15/19 20:39,"789 11th St, Los Angeles, CA 90001" +254424,Google Phone,1,600,09/02/19 12:01,"223 9th St, Portland, OR 97035" +254425,AA Batteries (4-pack),1,3.84,09/14/19 15:39,"898 Highland St, Portland, OR 97035" +254426,Flatscreen TV,1,300,09/19/19 09:27,"317 6th St, New York City, NY 10001" +254427,Google Phone,1,600,09/09/19 12:41,"950 Lakeview St, Los Angeles, CA 90001" +254428,iPhone,1,700,09/25/19 20:18,"88 Meadow St, Austin, TX 73301" +254428,Lightning Charging Cable,1,14.95,09/25/19 20:18,"88 Meadow St, Austin, TX 73301" +254428,Wired Headphones,3,11.99,09/25/19 20:18,"88 Meadow St, Austin, TX 73301" +254429,Macbook Pro Laptop,1,1700,09/14/19 16:01,"760 Ridge St, Seattle, WA 98101" +254430,Lightning Charging Cable,1,14.95,09/07/19 16:45,"920 Jefferson St, Atlanta, GA 30301" +254431,Apple Airpods Headphones,1,150,09/03/19 02:37,"684 Adams St, Portland, OR 97035" +254432,Lightning Charging Cable,1,14.95,09/18/19 17:11,"147 South St, San Francisco, CA 94016" +254433,Lightning Charging Cable,1,14.95,09/27/19 16:24,"973 5th St, San Francisco, CA 94016" +254434,Wired Headphones,2,11.99,09/17/19 15:28,"964 Ridge St, San Francisco, CA 94016" +254434,Google Phone,1,600,09/17/19 15:28,"964 Ridge St, San Francisco, CA 94016" +254435,AA Batteries (4-pack),1,3.84,09/13/19 22:33,"531 12th St, Los Angeles, CA 90001" +254436,Bose SoundSport Headphones,1,99.99,09/23/19 16:12,"525 14th St, New York City, NY 10001" +254437,ThinkPad Laptop,1,999.99,09/13/19 22:04,"314 Johnson St, Boston, MA 02215" +254438,AA Batteries (4-pack),1,3.84,09/04/19 11:49,"491 Hickory St, Boston, MA 02215" +254439,Wired Headphones,1,11.99,09/04/19 09:14,"500 Pine St, New York City, NY 10001" +254440,AA Batteries (4-pack),3,3.84,09/14/19 13:22,"703 Park St, San Francisco, CA 94016" +254441,Lightning Charging Cable,1,14.95,09/26/19 18:33,"441 Lakeview St, San Francisco, CA 94016" +254442,AA Batteries (4-pack),2,3.84,09/01/19 10:38,"190 8th St, Los Angeles, CA 90001" +254443,USB-C Charging Cable,1,11.95,09/03/19 09:46,"331 Park St, New York City, NY 10001" +254444,Wired Headphones,1,11.99,09/01/19 21:01,"973 Main St, Atlanta, GA 30301" +254445,Bose SoundSport Headphones,1,99.99,09/10/19 10:55,"156 Jefferson St, Los Angeles, CA 90001" +254446,AAA Batteries (4-pack),2,2.99,09/20/19 07:05,"934 10th St, New York City, NY 10001" +254447,Flatscreen TV,1,300,09/29/19 16:29,"21 North St, Atlanta, GA 30301" +254448,USB-C Charging Cable,1,11.95,09/02/19 13:44,"15 Adams St, Boston, MA 02215" +254449,AAA Batteries (4-pack),2,2.99,09/01/19 17:40,"962 Washington St, Los Angeles, CA 90001" +254450,USB-C Charging Cable,1,11.95,09/11/19 13:58,"228 Pine St, San Francisco, CA 94016" +254451,AA Batteries (4-pack),1,3.84,09/13/19 17:08,"247 13th St, New York City, NY 10001" +254452,Bose SoundSport Headphones,1,99.99,09/26/19 06:18,"701 Chestnut St, Boston, MA 02215" +254453,Apple Airpods Headphones,1,150,09/16/19 21:11,"551 Park St, San Francisco, CA 94016" +254454,AA Batteries (4-pack),1,3.84,09/12/19 08:42,"657 Pine St, Atlanta, GA 30301" +254455,Wired Headphones,1,11.99,09/19/19 21:54,"318 Park St, San Francisco, CA 94016" +254456,Apple Airpods Headphones,1,150,09/24/19 20:45,"120 Chestnut St, New York City, NY 10001" +254457,USB-C Charging Cable,1,11.95,09/25/19 01:21,"68 Main St, San Francisco, CA 94016" +254458,Flatscreen TV,1,300,09/20/19 13:05,"855 Jefferson St, San Francisco, CA 94016" +254459,Lightning Charging Cable,1,14.95,09/20/19 14:48,"807 Forest St, New York City, NY 10001" +254460,Lightning Charging Cable,1,14.95,09/18/19 22:37,"746 Lake St, Austin, TX 73301" +254461,USB-C Charging Cable,1,11.95,09/07/19 18:45,"377 Jefferson St, Los Angeles, CA 90001" +254462,AA Batteries (4-pack),2,3.84,09/24/19 21:03,"435 Lake St, Los Angeles, CA 90001" +254463,Apple Airpods Headphones,1,150,09/12/19 20:13,"890 Sunset St, San Francisco, CA 94016" +254464,20in Monitor,1,109.99,09/21/19 13:13,"257 Willow St, San Francisco, CA 94016" +254465,Wired Headphones,1,11.99,09/06/19 08:30,"58 11th St, Los Angeles, CA 90001" +254466,iPhone,1,700,09/24/19 18:10,"843 Pine St, Portland, OR 97035" +254467,Bose SoundSport Headphones,1,99.99,09/17/19 18:47,"135 Hill St, Boston, MA 02215" +254468,AAA Batteries (4-pack),1,2.99,09/08/19 12:04,"990 Meadow St, Atlanta, GA 30301" +254469,USB-C Charging Cable,1,11.95,09/14/19 01:17,"8 10th St, San Francisco, CA 94016" +254470,Wired Headphones,1,11.99,09/22/19 17:21,"511 9th St, Atlanta, GA 30301" +254471,Lightning Charging Cable,1,14.95,09/26/19 11:09,"772 Cedar St, San Francisco, CA 94016" +254472,AA Batteries (4-pack),1,3.84,09/12/19 09:20,"150 Adams St, New York City, NY 10001" +254472,Lightning Charging Cable,1,14.95,09/12/19 09:20,"150 Adams St, New York City, NY 10001" +254473,Apple Airpods Headphones,1,150,09/14/19 17:57,"7 Lincoln St, Boston, MA 02215" +254474,Bose SoundSport Headphones,1,99.99,09/04/19 21:39,"837 Washington St, Dallas, TX 75001" +254475,Google Phone,1,600,09/08/19 20:56,"29 Adams St, Boston, MA 02215" +254475,USB-C Charging Cable,2,11.95,09/08/19 20:56,"29 Adams St, Boston, MA 02215" +254476,AAA Batteries (4-pack),1,2.99,09/14/19 12:35,"457 14th St, Atlanta, GA 30301" +254477,Google Phone,1,600,09/22/19 13:03,"685 1st St, Boston, MA 02215" +254478,USB-C Charging Cable,1,11.95,09/17/19 10:38,"797 Madison St, Seattle, WA 98101" +254479,Flatscreen TV,1,300,09/15/19 16:26,"154 9th St, San Francisco, CA 94016" +254480,Lightning Charging Cable,1,14.95,09/29/19 11:06,"890 Lakeview St, Atlanta, GA 30301" +254481,27in FHD Monitor,1,149.99,09/02/19 19:22,"996 Wilson St, San Francisco, CA 94016" +254482,Lightning Charging Cable,1,14.95,09/21/19 12:46,"415 13th St, Atlanta, GA 30301" +254483,AA Batteries (4-pack),2,3.84,09/09/19 11:33,"956 Lake St, Seattle, WA 98101" +254484,Wired Headphones,1,11.99,09/27/19 14:46,"359 West St, Boston, MA 02215" +254485,AA Batteries (4-pack),1,3.84,09/27/19 08:42,"782 Sunset St, New York City, NY 10001" +254486,ThinkPad Laptop,1,999.99,09/25/19 11:44,"796 4th St, Los Angeles, CA 90001" +254487,Bose SoundSport Headphones,1,99.99,09/30/19 00:47,"258 9th St, Boston, MA 02215" +254488,Wired Headphones,1,11.99,09/18/19 13:37,"258 Spruce St, Boston, MA 02215" +254489,iPhone,1,700,09/25/19 16:00,"939 Church St, San Francisco, CA 94016" +254489,Lightning Charging Cable,1,14.95,09/25/19 16:00,"939 Church St, San Francisco, CA 94016" +254489,Bose SoundSport Headphones,1,99.99,09/25/19 16:00,"939 Church St, San Francisco, CA 94016" +254490,AAA Batteries (4-pack),2,2.99,09/12/19 09:52,"367 Adams St, Portland, ME 04101" +254491,AAA Batteries (4-pack),1,2.99,09/18/19 12:15,"503 Chestnut St, Seattle, WA 98101" +254492,Vareebadd Phone,1,400,09/12/19 14:04,"785 Maple St, San Francisco, CA 94016" +254493,Macbook Pro Laptop,1,1700,09/06/19 13:04,"495 Park St, Boston, MA 02215" +254494,Flatscreen TV,1,300,09/17/19 22:18,"499 14th St, Portland, OR 97035" +254495,27in FHD Monitor,1,149.99,09/06/19 18:29,"661 Hickory St, San Francisco, CA 94016" +254496,Google Phone,1,600,09/04/19 23:28,"957 Ridge St, San Francisco, CA 94016" +254497,Vareebadd Phone,1,400,09/05/19 10:01,"648 Spruce St, Austin, TX 73301" +254498,Flatscreen TV,1,300,09/29/19 00:50,"640 8th St, Los Angeles, CA 90001" +254499,AAA Batteries (4-pack),2,2.99,09/13/19 12:04,"367 Jackson St, San Francisco, CA 94016" +254500,Wired Headphones,1,11.99,09/15/19 13:09,"45 Hickory St, Los Angeles, CA 90001" +254501,Wired Headphones,1,11.99,09/01/19 11:29,"870 Elm St, San Francisco, CA 94016" +254502,Apple Airpods Headphones,1,150,09/22/19 12:10,"972 Dogwood St, Los Angeles, CA 90001" +254503,Wired Headphones,1,11.99,09/13/19 14:31,"625 Church St, San Francisco, CA 94016" +254504,Flatscreen TV,1,300,09/12/19 12:17,"984 1st St, San Francisco, CA 94016" +254505,Lightning Charging Cable,1,14.95,09/25/19 20:19,"346 11th St, New York City, NY 10001" +254506,Bose SoundSport Headphones,1,99.99,09/02/19 17:19,"439 14th St, Boston, MA 02215" +254507,Flatscreen TV,1,300,09/30/19 21:52,"260 Center St, Atlanta, GA 30301" +254508,Lightning Charging Cable,1,14.95,09/30/19 16:43,"951 South St, Atlanta, GA 30301" +254509,AAA Batteries (4-pack),1,2.99,09/05/19 19:25,"694 River St, Seattle, WA 98101" +254510,AA Batteries (4-pack),1,3.84,09/03/19 14:37,"25 Spruce St, Atlanta, GA 30301" +254511,Wired Headphones,1,11.99,09/14/19 00:13,"22 Elm St, Boston, MA 02215" +254512,20in Monitor,1,109.99,09/26/19 22:56,"754 Jackson St, Boston, MA 02215" +254513,AA Batteries (4-pack),1,3.84,09/19/19 09:23,"762 11th St, Seattle, WA 98101" +254514,AA Batteries (4-pack),1,3.84,09/21/19 13:04,"629 2nd St, San Francisco, CA 94016" +254515,AAA Batteries (4-pack),1,2.99,09/17/19 08:24,"232 Ridge St, San Francisco, CA 94016" +254516,Lightning Charging Cable,1,14.95,09/21/19 13:12,"504 Washington St, Boston, MA 02215" +254517,iPhone,1,700,09/10/19 17:09,"87 Johnson St, Austin, TX 73301" +254517,Lightning Charging Cable,1,14.95,09/10/19 17:09,"87 Johnson St, Austin, TX 73301" +254518,Lightning Charging Cable,1,14.95,09/24/19 16:16,"140 South St, San Francisco, CA 94016" +254519,AA Batteries (4-pack),1,3.84,09/17/19 10:15,"864 Jackson St, New York City, NY 10001" +254520,Lightning Charging Cable,1,14.95,09/08/19 15:16,"727 Highland St, New York City, NY 10001" +254521,AA Batteries (4-pack),1,3.84,09/17/19 18:24,"53 Highland St, Dallas, TX 75001" +254522,AA Batteries (4-pack),1,3.84,09/26/19 12:18,"460 Hickory St, New York City, NY 10001" +254523,AA Batteries (4-pack),1,3.84,09/19/19 22:28,"148 Spruce St, Seattle, WA 98101" +254524,AAA Batteries (4-pack),1,2.99,09/25/19 20:27,"475 13th St, Los Angeles, CA 90001" +254525,Lightning Charging Cable,1,14.95,09/21/19 10:18,"294 Adams St, San Francisco, CA 94016" +254526,iPhone,1,700,09/10/19 21:29,"17 Elm St, San Francisco, CA 94016" +254526,Lightning Charging Cable,1,14.95,09/10/19 21:29,"17 Elm St, San Francisco, CA 94016" +254527,Flatscreen TV,1,300,09/22/19 19:59,"608 10th St, New York City, NY 10001" +254528,Lightning Charging Cable,1,14.95,09/10/19 14:29,"32 Main St, Los Angeles, CA 90001" +254529,Lightning Charging Cable,1,14.95,09/14/19 18:47,"514 14th St, Seattle, WA 98101" +254530,Bose SoundSport Headphones,1,99.99,09/11/19 17:06,"72 Jefferson St, Austin, TX 73301" +254531,USB-C Charging Cable,1,11.95,09/26/19 13:22,"130 River St, Austin, TX 73301" +254532,Bose SoundSport Headphones,1,99.99,09/10/19 00:01,"62 Walnut St, Boston, MA 02215" +254533,AAA Batteries (4-pack),1,2.99,09/07/19 19:57,"374 Main St, Portland, OR 97035" +254534,20in Monitor,1,109.99,09/10/19 04:08,"158 Church St, Dallas, TX 75001" +254535,Macbook Pro Laptop,1,1700,09/23/19 12:22,"768 Walnut St, Los Angeles, CA 90001" +254536,USB-C Charging Cable,1,11.95,09/03/19 13:16,"989 8th St, Los Angeles, CA 90001" +254537,Google Phone,1,600,09/02/19 08:24,"548 Hill St, San Francisco, CA 94016" +254538,Apple Airpods Headphones,1,150,09/20/19 20:13,"93 Madison St, San Francisco, CA 94016" +254539,Wired Headphones,1,11.99,09/30/19 10:46,"832 Cherry St, Boston, MA 02215" +254540,AAA Batteries (4-pack),2,2.99,09/11/19 12:42,"957 7th St, San Francisco, CA 94016" +254541,Wired Headphones,1,11.99,09/22/19 13:00,"995 Wilson St, San Francisco, CA 94016" +254542,Flatscreen TV,1,300,09/23/19 12:59,"989 7th St, Dallas, TX 75001" +254542,27in FHD Monitor,1,149.99,09/23/19 12:59,"989 7th St, Dallas, TX 75001" +254543,USB-C Charging Cable,1,11.95,09/14/19 16:30,"530 Lincoln St, Boston, MA 02215" +254544,AAA Batteries (4-pack),3,2.99,09/15/19 14:54,"683 10th St, Los Angeles, CA 90001" +254545,Bose SoundSport Headphones,1,99.99,09/26/19 11:39,"354 Maple St, Dallas, TX 75001" +254546,AAA Batteries (4-pack),1,2.99,09/18/19 08:25,"479 Lincoln St, San Francisco, CA 94016" +254547,Apple Airpods Headphones,1,150,09/27/19 17:18,"149 Highland St, Atlanta, GA 30301" +254548,AAA Batteries (4-pack),3,2.99,09/10/19 20:14,"737 North St, Boston, MA 02215" +254549,Lightning Charging Cable,1,14.95,09/05/19 23:24,"999 Meadow St, Seattle, WA 98101" +254550,USB-C Charging Cable,1,11.95,09/19/19 11:17,"610 South St, Atlanta, GA 30301" +254551,Apple Airpods Headphones,1,150,09/09/19 12:23,"636 8th St, New York City, NY 10001" +254552,AA Batteries (4-pack),1,3.84,09/02/19 14:00,"803 Washington St, Atlanta, GA 30301" +254553,Bose SoundSport Headphones,1,99.99,09/13/19 20:45,"795 Cherry St, Austin, TX 73301" +254554,AAA Batteries (4-pack),1,2.99,09/26/19 11:14,"759 Washington St, Boston, MA 02215" +254555,AA Batteries (4-pack),1,3.84,09/16/19 02:43,"584 7th St, New York City, NY 10001" +254556,Lightning Charging Cable,1,14.95,09/02/19 21:46,"314 South St, Dallas, TX 75001" +254557,Wired Headphones,1,11.99,09/28/19 21:00,"515 Walnut St, San Francisco, CA 94016" +254558,AA Batteries (4-pack),1,3.84,09/07/19 20:04,"793 4th St, Boston, MA 02215" +254559,27in FHD Monitor,1,149.99,09/19/19 14:25,"923 Chestnut St, Los Angeles, CA 90001" +254560,Flatscreen TV,1,300,09/07/19 13:59,"885 Meadow St, Atlanta, GA 30301" +254561,20in Monitor,1,109.99,09/20/19 11:40,"37 Cedar St, San Francisco, CA 94016" +254562,USB-C Charging Cable,1,11.95,09/06/19 19:48,"594 Lakeview St, Seattle, WA 98101" +254563,Wired Headphones,1,11.99,09/17/19 23:35,"405 Chestnut St, San Francisco, CA 94016" +254564,Macbook Pro Laptop,1,1700,09/10/19 08:19,"800 Cedar St, San Francisco, CA 94016" +254565,Wired Headphones,1,11.99,09/01/19 17:03,"361 11th St, Seattle, WA 98101" +254566,Lightning Charging Cable,1,14.95,09/29/19 18:37,"614 Park St, Dallas, TX 75001" +254567,Wired Headphones,1,11.99,09/23/19 15:27,"919 13th St, Boston, MA 02215" +254568,AA Batteries (4-pack),1,3.84,09/19/19 18:20,"741 Spruce St, San Francisco, CA 94016" +254569,Bose SoundSport Headphones,1,99.99,09/20/19 09:39,"33 6th St, San Francisco, CA 94016" +254570,USB-C Charging Cable,1,11.95,09/05/19 13:36,"438 Adams St, San Francisco, CA 94016" +254571,Google Phone,1,600,09/02/19 12:24,"994 Forest St, New York City, NY 10001" +254572,Apple Airpods Headphones,1,150,09/04/19 22:08,"184 Park St, San Francisco, CA 94016" +254573,AA Batteries (4-pack),1,3.84,09/03/19 16:03,"269 Lincoln St, Seattle, WA 98101" +254574,Wired Headphones,3,11.99,09/15/19 12:47,"47 River St, Atlanta, GA 30301" +254575,Flatscreen TV,1,300,09/28/19 12:32,"684 Hickory St, San Francisco, CA 94016" +254576,Lightning Charging Cable,1,14.95,09/13/19 12:28,"194 Church St, Los Angeles, CA 90001" +254577,USB-C Charging Cable,1,11.95,09/24/19 16:11,"914 8th St, San Francisco, CA 94016" +254578,Lightning Charging Cable,1,14.95,09/23/19 14:26,"110 Washington St, Seattle, WA 98101" +254579,27in FHD Monitor,1,149.99,09/12/19 09:10,"622 12th St, Boston, MA 02215" +254580,Lightning Charging Cable,1,14.95,09/19/19 20:59,"367 2nd St, Los Angeles, CA 90001" +254581,AA Batteries (4-pack),1,3.84,09/22/19 13:00,"911 Jefferson St, Boston, MA 02215" +254582,Lightning Charging Cable,1,14.95,09/06/19 07:48,"259 Adams St, San Francisco, CA 94016" +254583,Vareebadd Phone,1,400,09/22/19 14:34,"960 8th St, New York City, NY 10001" +254583,USB-C Charging Cable,2,11.95,09/22/19 14:34,"960 8th St, New York City, NY 10001" +254584,AAA Batteries (4-pack),3,2.99,09/06/19 23:34,"773 4th St, San Francisco, CA 94016" +254585,Vareebadd Phone,1,400,09/04/19 12:34,"366 Main St, Austin, TX 73301" +254586,AAA Batteries (4-pack),2,2.99,09/29/19 20:45,"72 Jackson St, Atlanta, GA 30301" +254587,AA Batteries (4-pack),1,3.84,09/09/19 18:03,"185 Elm St, San Francisco, CA 94016" +254588,AAA Batteries (4-pack),1,2.99,09/26/19 23:54,"171 9th St, Austin, TX 73301" +254588,AA Batteries (4-pack),1,3.84,09/26/19 23:54,"171 9th St, Austin, TX 73301" +254589,Lightning Charging Cable,1,14.95,09/09/19 18:29,"194 Main St, Boston, MA 02215" +254590,AAA Batteries (4-pack),1,2.99,09/11/19 08:50,"836 Jackson St, New York City, NY 10001" +254591,iPhone,1,700,09/13/19 08:07,"495 10th St, Portland, OR 97035" +254592,Bose SoundSport Headphones,1,99.99,09/07/19 21:11,"324 4th St, Austin, TX 73301" +254593,Vareebadd Phone,1,400,09/18/19 13:43,"667 Hickory St, Atlanta, GA 30301" +254594,AA Batteries (4-pack),1,3.84,09/26/19 12:58,"939 13th St, Atlanta, GA 30301" +254595,USB-C Charging Cable,1,11.95,09/13/19 15:33,"527 Center St, San Francisco, CA 94016" +254596,AA Batteries (4-pack),1,3.84,09/15/19 11:55,"269 6th St, Seattle, WA 98101" +254597,Apple Airpods Headphones,1,150,09/29/19 20:40,"588 Ridge St, Portland, OR 97035" +254598,Bose SoundSport Headphones,1,99.99,09/16/19 10:31,"445 10th St, Austin, TX 73301" +254599,Apple Airpods Headphones,1,150,09/01/19 14:24,"991 River St, San Francisco, CA 94016" +254600,Lightning Charging Cable,1,14.95,09/05/19 14:03,"104 Wilson St, Atlanta, GA 30301" +254601,Apple Airpods Headphones,1,150,09/09/19 10:44,"487 Cedar St, San Francisco, CA 94016" +254602,AAA Batteries (4-pack),3,2.99,09/14/19 14:16,"222 Cherry St, Los Angeles, CA 90001" +254603,AA Batteries (4-pack),2,3.84,09/09/19 00:29,"259 Cherry St, Dallas, TX 75001" +254604,34in Ultrawide Monitor,1,379.99,09/15/19 12:08,"582 14th St, Boston, MA 02215" +254605,Apple Airpods Headphones,1,150,09/04/19 10:46,"285 10th St, Boston, MA 02215" +254606,Bose SoundSport Headphones,1,99.99,09/07/19 12:13,"843 Main St, Boston, MA 02215" +254607,AAA Batteries (4-pack),1,2.99,09/06/19 10:45,"982 Meadow St, San Francisco, CA 94016" +254608,Bose SoundSport Headphones,1,99.99,09/24/19 13:11,"713 Highland St, Atlanta, GA 30301" +254609,Vareebadd Phone,1,400,09/18/19 09:52,"476 Hickory St, Portland, OR 97035" +254610,AA Batteries (4-pack),4,3.84,09/20/19 18:34,"862 11th St, Atlanta, GA 30301" +254611,Wired Headphones,1,11.99,09/14/19 18:18,"818 Meadow St, Seattle, WA 98101" +254612,AAA Batteries (4-pack),1,2.99,09/22/19 10:20,"40 4th St, San Francisco, CA 94016" +254613,Apple Airpods Headphones,1,150,09/30/19 09:23,"300 Cedar St, Dallas, TX 75001" +254614,Flatscreen TV,1,300,09/13/19 18:47,"800 Park St, Portland, OR 97035" +254615,AA Batteries (4-pack),1,3.84,09/06/19 10:48,"95 2nd St, San Francisco, CA 94016" +254616,AAA Batteries (4-pack),3,2.99,09/08/19 15:37,"386 Church St, Austin, TX 73301" +254617,Bose SoundSport Headphones,1,99.99,09/14/19 11:13,"497 Church St, Austin, TX 73301" +254618,Lightning Charging Cable,1,14.95,09/08/19 17:47,"81 6th St, Los Angeles, CA 90001" +254619,20in Monitor,1,109.99,09/09/19 09:00,"28 11th St, San Francisco, CA 94016" +254620,Flatscreen TV,1,300,09/30/19 14:13,"646 Highland St, Portland, OR 97035" +254621,Google Phone,1,600,09/16/19 16:25,"693 13th St, Dallas, TX 75001" +254622,ThinkPad Laptop,1,999.99,09/12/19 07:19,"863 Lincoln St, San Francisco, CA 94016" +254623,USB-C Charging Cable,2,11.95,09/03/19 14:08,"645 Ridge St, Dallas, TX 75001" +254624,20in Monitor,1,109.99,09/23/19 12:22,"253 Park St, San Francisco, CA 94016" +254625,Flatscreen TV,1,300,09/07/19 16:37,"403 Pine St, Los Angeles, CA 90001" +254626,Wired Headphones,1,11.99,09/25/19 18:57,"679 Maple St, New York City, NY 10001" +254627,iPhone,1,700,09/07/19 22:27,"194 4th St, Dallas, TX 75001" +254628,Lightning Charging Cable,1,14.95,09/22/19 10:24,"340 North St, Los Angeles, CA 90001" +254629,AA Batteries (4-pack),2,3.84,09/23/19 10:22,"992 10th St, New York City, NY 10001" +254630,AAA Batteries (4-pack),1,2.99,09/23/19 20:37,"110 River St, Los Angeles, CA 90001" +254631,Google Phone,1,600,09/29/19 10:29,"608 South St, Los Angeles, CA 90001" +254632,Lightning Charging Cable,1,14.95,09/12/19 14:41,"803 9th St, Dallas, TX 75001" +254633,Apple Airpods Headphones,1,150,09/19/19 15:01,"290 Sunset St, San Francisco, CA 94016" +254634,27in FHD Monitor,1,149.99,09/24/19 07:41,"890 12th St, San Francisco, CA 94016" +254635,USB-C Charging Cable,1,11.95,09/13/19 12:09,"717 Ridge St, San Francisco, CA 94016" +254635,34in Ultrawide Monitor,1,379.99,09/13/19 12:09,"717 Ridge St, San Francisco, CA 94016" +254636,USB-C Charging Cable,1,11.95,09/24/19 17:57,"675 9th St, Portland, OR 97035" +254637,Wired Headphones,1,11.99,09/27/19 20:34,"30 Ridge St, Atlanta, GA 30301" +254638,USB-C Charging Cable,1,11.95,09/29/19 18:39,"866 Ridge St, Boston, MA 02215" +254639,AAA Batteries (4-pack),1,2.99,09/20/19 09:23,"522 Spruce St, Los Angeles, CA 90001" +254640,Bose SoundSport Headphones,1,99.99,09/09/19 11:10,"811 1st St, Boston, MA 02215" +254641,USB-C Charging Cable,1,11.95,09/21/19 11:48,"218 Forest St, Dallas, TX 75001" +254642,AA Batteries (4-pack),1,3.84,09/01/19 21:49,"652 Adams St, San Francisco, CA 94016" +254643,34in Ultrawide Monitor,1,379.99,09/10/19 09:06,"211 Highland St, Atlanta, GA 30301" +254644,AA Batteries (4-pack),4,3.84,09/15/19 21:53,"347 Adams St, Los Angeles, CA 90001" +254645,20in Monitor,1,109.99,09/10/19 09:39,"669 Walnut St, Dallas, TX 75001" +254646,USB-C Charging Cable,1,11.95,09/15/19 11:06,"92 1st St, Dallas, TX 75001" +254647,AA Batteries (4-pack),1,3.84,09/24/19 08:56,"693 4th St, Los Angeles, CA 90001" +254648,AAA Batteries (4-pack),2,2.99,09/05/19 08:06,"935 Willow St, Seattle, WA 98101" +254649,34in Ultrawide Monitor,1,379.99,09/06/19 15:37,"177 Walnut St, San Francisco, CA 94016" +254650,Bose SoundSport Headphones,1,99.99,09/22/19 00:41,"697 7th St, San Francisco, CA 94016" +254651,AA Batteries (4-pack),1,3.84,09/18/19 20:26,"256 7th St, Boston, MA 02215" +254652,27in FHD Monitor,1,149.99,09/04/19 11:24,"829 Lake St, New York City, NY 10001" +254653,Lightning Charging Cable,2,14.95,09/20/19 13:45,"328 Hickory St, San Francisco, CA 94016" +254654,ThinkPad Laptop,1,999.99,09/16/19 17:00,"847 Highland St, Austin, TX 73301" +254655,Lightning Charging Cable,1,14.95,09/27/19 12:36,"791 River St, New York City, NY 10001" +254655,USB-C Charging Cable,1,11.95,09/27/19 12:36,"791 River St, New York City, NY 10001" +254656,AAA Batteries (4-pack),1,2.99,09/07/19 13:41,"91 Forest St, Dallas, TX 75001" +254657,34in Ultrawide Monitor,1,379.99,09/09/19 22:28,"759 Johnson St, San Francisco, CA 94016" +254658,Apple Airpods Headphones,1,150,09/11/19 06:51,"478 Hickory St, Dallas, TX 75001" +254659,Apple Airpods Headphones,1,150,09/09/19 18:12,"373 Lake St, Portland, OR 97035" +254660,ThinkPad Laptop,1,999.99,09/28/19 11:03,"96 Adams St, Seattle, WA 98101" +254661,iPhone,1,700,09/18/19 18:12,"825 Dogwood St, Boston, MA 02215" +254662,Apple Airpods Headphones,1,150,09/07/19 12:27,"406 14th St, Portland, OR 97035" +254663,Bose SoundSport Headphones,1,99.99,09/02/19 06:28,"793 Center St, Portland, OR 97035" +254664,Macbook Pro Laptop,1,1700,09/10/19 21:31,"759 Cherry St, Boston, MA 02215" +254665,USB-C Charging Cable,1,11.95,09/15/19 15:42,"543 13th St, San Francisco, CA 94016" +254666,Wired Headphones,1,11.99,09/13/19 17:08,"353 Center St, Boston, MA 02215" +254667,AAA Batteries (4-pack),1,2.99,09/07/19 19:11,"125 9th St, San Francisco, CA 94016" +254668,AA Batteries (4-pack),1,3.84,09/30/19 15:07,"824 Park St, New York City, NY 10001" +254669,Wired Headphones,1,11.99,09/08/19 09:40,"211 Chestnut St, Boston, MA 02215" +254670,Bose SoundSport Headphones,1,99.99,09/06/19 16:51,"102 Lake St, Boston, MA 02215" +254671,27in 4K Gaming Monitor,1,389.99,09/07/19 13:34,"793 13th St, New York City, NY 10001" +254672,AA Batteries (4-pack),1,3.84,09/04/19 13:45,"171 North St, San Francisco, CA 94016" +254673,USB-C Charging Cable,1,11.95,09/12/19 09:57,"14 Dogwood St, Boston, MA 02215" +254674,Lightning Charging Cable,1,14.95,09/08/19 17:50,"534 Meadow St, Boston, MA 02215" +254675,27in FHD Monitor,1,149.99,09/24/19 15:12,"580 9th St, Boston, MA 02215" +254676,34in Ultrawide Monitor,1,379.99,09/11/19 19:29,"705 Park St, Atlanta, GA 30301" +254677,AAA Batteries (4-pack),1,2.99,09/26/19 15:48,"387 West St, Boston, MA 02215" +254678,USB-C Charging Cable,2,11.95,09/13/19 09:34,"971 Park St, San Francisco, CA 94016" +254679,Bose SoundSport Headphones,1,99.99,09/03/19 13:28,"90 5th St, Boston, MA 02215" +254680,Wired Headphones,1,11.99,09/06/19 20:40,"131 Park St, San Francisco, CA 94016" +254681,Macbook Pro Laptop,1,1700,09/20/19 18:54,"133 Hickory St, Boston, MA 02215" +254682,Wired Headphones,1,11.99,09/17/19 10:57,"185 4th St, San Francisco, CA 94016" +254683,34in Ultrawide Monitor,1,379.99,09/09/19 14:23,"827 Wilson St, Boston, MA 02215" +254684,Lightning Charging Cable,1,14.95,09/04/19 18:52,"200 Jackson St, San Francisco, CA 94016" +254685,Wired Headphones,2,11.99,09/12/19 19:11,"112 Spruce St, San Francisco, CA 94016" +254686,Apple Airpods Headphones,1,150,09/17/19 10:30,"184 Meadow St, San Francisco, CA 94016" +254687,Wired Headphones,1,11.99,09/23/19 17:23,"402 Cedar St, Boston, MA 02215" +254688,LG Washing Machine,1,600.0,09/16/19 21:37,"44 North St, Los Angeles, CA 90001" +254689,AA Batteries (4-pack),1,3.84,09/18/19 18:28,"198 Hill St, Austin, TX 73301" +254690,AAA Batteries (4-pack),1,2.99,09/06/19 19:31,"862 Park St, San Francisco, CA 94016" +254691,USB-C Charging Cable,1,11.95,09/13/19 18:16,"193 Lake St, San Francisco, CA 94016" +254692,Apple Airpods Headphones,1,150,09/09/19 22:50,"745 2nd St, San Francisco, CA 94016" +254693,34in Ultrawide Monitor,1,379.99,09/17/19 17:29,"478 Center St, Boston, MA 02215" +254694,AAA Batteries (4-pack),2,2.99,09/22/19 11:00,"452 1st St, New York City, NY 10001" +254695,AA Batteries (4-pack),1,3.84,09/27/19 15:40,"483 Forest St, San Francisco, CA 94016" +254696,USB-C Charging Cable,2,11.95,09/09/19 19:46,"446 Elm St, Portland, OR 97035" +254697,AA Batteries (4-pack),1,3.84,09/04/19 08:12,"773 West St, Los Angeles, CA 90001" +254698,iPhone,1,700,09/15/19 00:00,"579 Cedar St, San Francisco, CA 94016" +254699,AAA Batteries (4-pack),1,2.99,09/25/19 20:05,"137 Ridge St, Portland, OR 97035" +254700,Lightning Charging Cable,1,14.95,09/15/19 19:50,"928 West St, Los Angeles, CA 90001" +254701,AA Batteries (4-pack),1,3.84,09/24/19 00:00,"546 5th St, Portland, OR 97035" +254702,USB-C Charging Cable,1,11.95,09/23/19 06:48,"844 Walnut St, San Francisco, CA 94016" +254703,Wired Headphones,1,11.99,09/02/19 21:02,"404 Center St, New York City, NY 10001" +254704,Apple Airpods Headphones,1,150,09/02/19 18:23,"571 14th St, San Francisco, CA 94016" +254705,27in FHD Monitor,1,149.99,09/08/19 14:46,"784 Park St, Seattle, WA 98101" +254706,27in FHD Monitor,1,149.99,09/17/19 17:04,"628 Lincoln St, San Francisco, CA 94016" +254707,AA Batteries (4-pack),1,3.84,09/25/19 18:19,"196 Adams St, San Francisco, CA 94016" +254708,AAA Batteries (4-pack),2,2.99,09/13/19 12:38,"953 Dogwood St, Dallas, TX 75001" +254709,USB-C Charging Cable,1,11.95,09/27/19 12:10,"892 12th St, Seattle, WA 98101" +254710,Macbook Pro Laptop,1,1700,09/29/19 19:56,"917 Forest St, Austin, TX 73301" +254711,AA Batteries (4-pack),1,3.84,09/26/19 14:21,"34 South St, Los Angeles, CA 90001" +254712,Lightning Charging Cable,1,14.95,09/28/19 10:21,"148 Hickory St, New York City, NY 10001" +254713,ThinkPad Laptop,1,999.99,09/03/19 12:18,"115 Wilson St, Dallas, TX 75001" +254714,USB-C Charging Cable,1,11.95,09/02/19 23:58,"62 Elm St, San Francisco, CA 94016" +254715,Google Phone,1,600,09/01/19 17:17,"702 Hickory St, Seattle, WA 98101" +254715,Bose SoundSport Headphones,1,99.99,09/01/19 17:17,"702 Hickory St, Seattle, WA 98101" +254716,Wired Headphones,2,11.99,09/08/19 07:07,"663 West St, Atlanta, GA 30301" +254717,Apple Airpods Headphones,1,150,09/22/19 21:28,"356 Adams St, Los Angeles, CA 90001" +254718,20in Monitor,1,109.99,09/13/19 19:35,"736 Highland St, Atlanta, GA 30301" +254719,Apple Airpods Headphones,1,150,09/28/19 17:27,"833 North St, San Francisco, CA 94016" +254720,Google Phone,1,600,09/21/19 18:44,"545 Park St, San Francisco, CA 94016" +254721,Bose SoundSport Headphones,1,99.99,09/15/19 14:10,"111 5th St, San Francisco, CA 94016" +254722,Lightning Charging Cable,1,14.95,09/25/19 10:13,"848 1st St, San Francisco, CA 94016" +254723,USB-C Charging Cable,1,11.95,09/29/19 16:46,"175 Sunset St, San Francisco, CA 94016" +254724,Apple Airpods Headphones,1,150,09/08/19 16:16,"227 10th St, Los Angeles, CA 90001" +254725,Apple Airpods Headphones,1,150,09/01/19 16:49,"546 Dogwood St, San Francisco, CA 94016" +254726,USB-C Charging Cable,1,11.95,09/30/19 22:49,"684 Madison St, San Francisco, CA 94016" +254727,Bose SoundSport Headphones,1,99.99,09/18/19 18:36,"228 Highland St, Los Angeles, CA 90001" +254728,Lightning Charging Cable,1,14.95,09/14/19 22:59,"973 Meadow St, Los Angeles, CA 90001" +254729,Lightning Charging Cable,1,14.95,09/30/19 18:48,"493 12th St, San Francisco, CA 94016" +254730,Bose SoundSport Headphones,1,99.99,09/22/19 09:36,"414 14th St, Austin, TX 73301" +254731,AAA Batteries (4-pack),3,2.99,09/10/19 21:17,"936 Park St, San Francisco, CA 94016" +254732,Lightning Charging Cable,1,14.95,09/16/19 18:41,"35 Lakeview St, Dallas, TX 75001" +254733,USB-C Charging Cable,1,11.95,09/10/19 23:37,"552 Lake St, Los Angeles, CA 90001" +254734,USB-C Charging Cable,1,11.95,09/25/19 16:28,"624 Pine St, Dallas, TX 75001" +254735,AAA Batteries (4-pack),2,2.99,09/20/19 00:14,"799 South St, Seattle, WA 98101" +254736,AA Batteries (4-pack),1,3.84,09/08/19 20:51,"305 Wilson St, New York City, NY 10001" +254737,USB-C Charging Cable,1,11.95,09/07/19 13:57,"854 Church St, New York City, NY 10001" +254738,Apple Airpods Headphones,1,150,09/17/19 16:04,"732 Dogwood St, Atlanta, GA 30301" +254739,Bose SoundSport Headphones,1,99.99,09/09/19 11:17,"41 North St, Seattle, WA 98101" +254740,USB-C Charging Cable,2,11.95,09/07/19 12:31,"283 Jackson St, Los Angeles, CA 90001" +254741,Wired Headphones,3,11.99,09/29/19 08:15,"673 10th St, San Francisco, CA 94016" +254742,ThinkPad Laptop,1,999.99,09/17/19 16:06,"594 Adams St, Dallas, TX 75001" +254743,Wired Headphones,1,11.99,09/30/19 21:14,"983 Forest St, Los Angeles, CA 90001" +254744,34in Ultrawide Monitor,1,379.99,09/10/19 03:07,"289 Jackson St, Los Angeles, CA 90001" +254745,Bose SoundSport Headphones,1,99.99,09/08/19 11:48,"574 Meadow St, Seattle, WA 98101" +254746,Lightning Charging Cable,1,14.95,09/01/19 19:35,"515 Lakeview St, Boston, MA 02215" +254747,Apple Airpods Headphones,1,150,09/16/19 10:16,"362 Dogwood St, Boston, MA 02215" +254748,ThinkPad Laptop,1,999.99,09/04/19 10:09,"489 Lakeview St, New York City, NY 10001" +254749,Lightning Charging Cable,1,14.95,09/29/19 12:42,"449 2nd St, Los Angeles, CA 90001" +254750,USB-C Charging Cable,1,11.95,09/13/19 18:44,"470 Johnson St, Portland, OR 97035" +254751,iPhone,1,700,09/09/19 21:18,"607 Pine St, Dallas, TX 75001" +254752,Bose SoundSport Headphones,1,99.99,09/29/19 06:15,"704 13th St, Los Angeles, CA 90001" +254753,Apple Airpods Headphones,1,150,09/25/19 06:16,"693 Cherry St, Seattle, WA 98101" +254754,Wired Headphones,1,11.99,09/07/19 16:43,"292 Madison St, Portland, OR 97035" +254755,Lightning Charging Cable,1,14.95,09/22/19 19:00,"915 South St, Portland, OR 97035" +254756,AA Batteries (4-pack),1,3.84,09/01/19 21:50,"5 Lincoln St, Los Angeles, CA 90001" +254757,Wired Headphones,1,11.99,09/11/19 16:36,"76 Spruce St, Boston, MA 02215" +254758,Lightning Charging Cable,1,14.95,09/25/19 13:27,"902 Jackson St, Los Angeles, CA 90001" +254759,Lightning Charging Cable,1,14.95,09/29/19 03:28,"630 River St, Atlanta, GA 30301" +254760,Bose SoundSport Headphones,1,99.99,09/15/19 12:23,"229 Sunset St, Dallas, TX 75001" +254761,20in Monitor,1,109.99,09/02/19 18:03,"880 Chestnut St, San Francisco, CA 94016" +254762,AAA Batteries (4-pack),3,2.99,09/23/19 08:45,"875 Spruce St, San Francisco, CA 94016" +254763,AA Batteries (4-pack),1,3.84,09/21/19 18:10,"897 Jackson St, New York City, NY 10001" +254764,Lightning Charging Cable,1,14.95,09/19/19 11:36,"71 West St, Los Angeles, CA 90001" +254765,Google Phone,1,600,09/24/19 17:48,"426 Hill St, Los Angeles, CA 90001" +254765,USB-C Charging Cable,1,11.95,09/24/19 17:48,"426 Hill St, Los Angeles, CA 90001" +254766,USB-C Charging Cable,1,11.95,09/12/19 20:09,"753 Madison St, San Francisco, CA 94016" +254767,Flatscreen TV,1,300,09/12/19 11:52,"107 Johnson St, San Francisco, CA 94016" +254768,Lightning Charging Cable,1,14.95,09/28/19 14:13,"459 Wilson St, San Francisco, CA 94016" +254769,AA Batteries (4-pack),1,3.84,09/06/19 23:50,"605 Dogwood St, Atlanta, GA 30301" +254770,Macbook Pro Laptop,1,1700,09/25/19 09:31,"430 Main St, Boston, MA 02215" +254771,USB-C Charging Cable,2,11.95,09/23/19 20:25,"735 Ridge St, New York City, NY 10001" +254772,AA Batteries (4-pack),2,3.84,09/05/19 01:34,"74 Dogwood St, Boston, MA 02215" +254773,20in Monitor,1,109.99,09/16/19 23:06,"281 Pine St, New York City, NY 10001" +254774,AA Batteries (4-pack),1,3.84,09/23/19 15:27,"930 1st St, Seattle, WA 98101" +254775,AAA Batteries (4-pack),1,2.99,09/14/19 23:16,"452 Johnson St, Austin, TX 73301" +254776,LG Dryer,1,600.0,09/18/19 13:27,"417 Wilson St, San Francisco, CA 94016" +254777,Bose SoundSport Headphones,1,99.99,09/04/19 13:47,"979 Willow St, Los Angeles, CA 90001" +254778,Lightning Charging Cable,1,14.95,09/16/19 07:38,"703 11th St, Los Angeles, CA 90001" +254779,iPhone,1,700,09/10/19 20:54,"678 Highland St, San Francisco, CA 94016" +254780,34in Ultrawide Monitor,1,379.99,09/01/19 20:15,"674 Washington St, San Francisco, CA 94016" +254781,Apple Airpods Headphones,1,150,09/20/19 00:15,"741 Washington St, Portland, OR 97035" +254782,USB-C Charging Cable,1,11.95,09/14/19 13:49,"668 Cedar St, Portland, OR 97035" +254783,USB-C Charging Cable,1,11.95,09/15/19 23:19,"504 Lakeview St, Los Angeles, CA 90001" +254784,AAA Batteries (4-pack),2,2.99,09/24/19 10:02,"203 Spruce St, Boston, MA 02215" +254785,Apple Airpods Headphones,1,150,09/27/19 08:05,"589 Meadow St, Boston, MA 02215" +254786,USB-C Charging Cable,1,11.95,09/18/19 16:01,"253 Center St, New York City, NY 10001" +254787,Google Phone,1,600,09/17/19 14:04,"582 Walnut St, Los Angeles, CA 90001" +254788,AA Batteries (4-pack),1,3.84,09/01/19 17:43,"437 Johnson St, New York City, NY 10001" +254789,Wired Headphones,1,11.99,09/26/19 18:10,"132 2nd St, Boston, MA 02215" +254790,Wired Headphones,1,11.99,09/23/19 13:40,"754 Sunset St, San Francisco, CA 94016" +254791,Bose SoundSport Headphones,1,99.99,09/09/19 15:52,"997 River St, Los Angeles, CA 90001" +254792,Apple Airpods Headphones,1,150,09/23/19 23:25,"603 10th St, San Francisco, CA 94016" +254793,AA Batteries (4-pack),2,3.84,09/14/19 15:25,"226 Pine St, San Francisco, CA 94016" +254794,iPhone,1,700,09/24/19 14:37,"208 Cedar St, Los Angeles, CA 90001" +254795,27in FHD Monitor,1,149.99,09/07/19 18:54,"158 Pine St, San Francisco, CA 94016" +254796,AA Batteries (4-pack),2,3.84,09/05/19 17:26,"721 Highland St, Boston, MA 02215" +254797,Wired Headphones,1,11.99,09/05/19 19:16,"906 9th St, Boston, MA 02215" +254798,27in FHD Monitor,1,149.99,09/18/19 13:13,"272 Highland St, Los Angeles, CA 90001" +254799,USB-C Charging Cable,1,11.95,09/10/19 06:47,"867 Center St, Los Angeles, CA 90001" +254800,AA Batteries (4-pack),2,3.84,09/08/19 06:31,"620 5th St, Boston, MA 02215" +254801,AA Batteries (4-pack),1,3.84,09/18/19 18:20,"138 South St, New York City, NY 10001" +254802,USB-C Charging Cable,1,11.95,09/25/19 14:48,"898 Chestnut St, San Francisco, CA 94016" +254803,Bose SoundSport Headphones,1,99.99,09/17/19 18:03,"941 1st St, San Francisco, CA 94016" +254804,USB-C Charging Cable,1,11.95,09/09/19 11:44,"218 Park St, Boston, MA 02215" +254805,USB-C Charging Cable,1,11.95,09/22/19 23:43,"396 11th St, Boston, MA 02215" +254806,AA Batteries (4-pack),1,3.84,09/11/19 15:01,"796 Madison St, San Francisco, CA 94016" +254807,27in FHD Monitor,1,149.99,09/03/19 18:49,"992 8th St, Los Angeles, CA 90001" +254808,Macbook Pro Laptop,1,1700,09/26/19 12:52,"823 14th St, Los Angeles, CA 90001" +254809,USB-C Charging Cable,1,11.95,09/13/19 20:42,"368 South St, Los Angeles, CA 90001" +254810,20in Monitor,1,109.99,09/21/19 17:46,"824 Adams St, San Francisco, CA 94016" +254811,AAA Batteries (4-pack),3,2.99,09/27/19 10:29,"138 Spruce St, Atlanta, GA 30301" +254812,iPhone,1,700,09/20/19 08:48,"509 Cedar St, New York City, NY 10001" +254813,USB-C Charging Cable,1,11.95,09/20/19 22:47,"206 5th St, Los Angeles, CA 90001" +254814,34in Ultrawide Monitor,1,379.99,09/11/19 16:10,"869 Hill St, Los Angeles, CA 90001" +254815,Bose SoundSport Headphones,1,99.99,09/27/19 23:12,"64 Hill St, San Francisco, CA 94016" +254816,Flatscreen TV,1,300,09/14/19 18:09,"618 Cedar St, Boston, MA 02215" +254817,AA Batteries (4-pack),1,3.84,09/20/19 11:46,"841 Center St, New York City, NY 10001" +254818,Lightning Charging Cable,1,14.95,09/16/19 13:27,"889 North St, Portland, OR 97035" +254819,Lightning Charging Cable,2,14.95,09/07/19 02:19,"717 Elm St, New York City, NY 10001" +254820,Wired Headphones,1,11.99,09/06/19 12:24,"750 Lakeview St, Los Angeles, CA 90001" +254821,Apple Airpods Headphones,1,150,09/21/19 12:36,"97 Spruce St, Portland, OR 97035" +254822,AAA Batteries (4-pack),1,2.99,09/06/19 06:59,"873 Walnut St, Boston, MA 02215" +254823,USB-C Charging Cable,1,11.95,09/15/19 14:16,"566 Elm St, San Francisco, CA 94016" +254824,Bose SoundSport Headphones,1,99.99,09/18/19 12:12,"439 Ridge St, Austin, TX 73301" +254825,Apple Airpods Headphones,1,150,09/18/19 12:51,"983 Church St, New York City, NY 10001" +254826,USB-C Charging Cable,1,11.95,09/23/19 11:57,"16 9th St, Boston, MA 02215" +254827,AA Batteries (4-pack),1,3.84,09/27/19 09:00,"351 Washington St, San Francisco, CA 94016" +254828,20in Monitor,1,109.99,09/07/19 18:22,"322 Highland St, Los Angeles, CA 90001" +254829,20in Monitor,1,109.99,09/03/19 20:23,"515 Forest St, Atlanta, GA 30301" +254830,27in 4K Gaming Monitor,1,389.99,09/02/19 11:03,"818 Main St, Austin, TX 73301" +254831,Lightning Charging Cable,1,14.95,09/12/19 17:43,"75 Lake St, San Francisco, CA 94016" +254832,27in FHD Monitor,1,149.99,09/06/19 15:24,"886 Sunset St, Portland, OR 97035" +254833,Lightning Charging Cable,1,14.95,09/12/19 05:45,"566 Park St, San Francisco, CA 94016" +254834,Wired Headphones,1,11.99,09/21/19 07:53,"506 Ridge St, Seattle, WA 98101" +254835,Flatscreen TV,1,300,09/30/19 21:06,"657 13th St, Portland, OR 97035" +254836,Apple Airpods Headphones,1,150,09/18/19 01:00,"31 Washington St, San Francisco, CA 94016" +254837,USB-C Charging Cable,1,11.95,09/30/19 14:49,"220 North St, Los Angeles, CA 90001" +254838,ThinkPad Laptop,1,999.99,09/15/19 17:41,"815 River St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +254839,Bose SoundSport Headphones,1,99.99,09/07/19 22:14,"947 Chestnut St, Dallas, TX 75001" +254840,Google Phone,1,600,09/01/19 12:25,"179 South St, Atlanta, GA 30301" +254840,USB-C Charging Cable,1,11.95,09/01/19 12:25,"179 South St, Atlanta, GA 30301" +254841,AA Batteries (4-pack),1,3.84,09/03/19 10:26,"758 Sunset St, New York City, NY 10001" +254842,AAA Batteries (4-pack),1,2.99,09/14/19 16:38,"346 Sunset St, Portland, OR 97035" +254843,Google Phone,1,600,09/09/19 13:03,"474 North St, Dallas, TX 75001" +254844,34in Ultrawide Monitor,1,379.99,09/06/19 08:10,"12 Jackson St, Boston, MA 02215" +254845,AAA Batteries (4-pack),1,2.99,09/12/19 00:24,"375 Sunset St, New York City, NY 10001" +254846,20in Monitor,1,109.99,09/12/19 11:06,"498 Lake St, Boston, MA 02215" +254847,Wired Headphones,1,11.99,09/03/19 12:15,"48 Jefferson St, Portland, ME 04101" +254848,AAA Batteries (4-pack),5,2.99,09/27/19 18:01,"851 North St, Dallas, TX 75001" +254849,Apple Airpods Headphones,1,150,09/30/19 16:11,"828 Meadow St, Atlanta, GA 30301" +254850,Wired Headphones,1,11.99,09/30/19 11:47,"509 West St, Atlanta, GA 30301" +254851,Wired Headphones,1,11.99,09/22/19 19:09,"467 West St, Los Angeles, CA 90001" +254852,Wired Headphones,1,11.99,09/03/19 17:51,"805 West St, New York City, NY 10001" +254853,Apple Airpods Headphones,1,150,09/16/19 13:07,"688 Adams St, Dallas, TX 75001" +254854,AA Batteries (4-pack),3,3.84,09/19/19 00:15,"33 Church St, San Francisco, CA 94016" +254855,AA Batteries (4-pack),1,3.84,09/30/19 22:22,"322 North St, Boston, MA 02215" +254856,Apple Airpods Headphones,1,150,09/20/19 22:56,"996 6th St, New York City, NY 10001" +254857,Apple Airpods Headphones,1,150,09/07/19 22:26,"840 River St, Portland, OR 97035" +254858,Bose SoundSport Headphones,1,99.99,09/14/19 19:42,"853 South St, Los Angeles, CA 90001" +254859,Apple Airpods Headphones,1,150,09/17/19 11:32,"128 Johnson St, San Francisco, CA 94016" +254860,LG Dryer,1,600.0,09/30/19 10:41,"137 12th St, New York City, NY 10001" +254861,Bose SoundSport Headphones,1,99.99,09/13/19 14:36,"795 10th St, Dallas, TX 75001" +254862,iPhone,1,700,09/12/19 07:28,"66 Johnson St, Austin, TX 73301" +254862,Apple Airpods Headphones,1,150,09/12/19 07:28,"66 Johnson St, Austin, TX 73301" +254863,iPhone,1,700,09/22/19 11:37,"633 Spruce St, Los Angeles, CA 90001" +254863,Lightning Charging Cable,1,14.95,09/22/19 11:37,"633 Spruce St, Los Angeles, CA 90001" +254864,AA Batteries (4-pack),1,3.84,09/26/19 15:24,"578 Lincoln St, Boston, MA 02215" +254865,AA Batteries (4-pack),1,3.84,09/22/19 17:12,"253 Meadow St, San Francisco, CA 94016" +254866,AA Batteries (4-pack),1,3.84,09/28/19 19:47,"946 5th St, Seattle, WA 98101" +254867,Lightning Charging Cable,1,14.95,09/25/19 15:34,"628 Walnut St, San Francisco, CA 94016" +254868,AAA Batteries (4-pack),1,2.99,09/08/19 17:00,"503 Elm St, Seattle, WA 98101" +254869,Lightning Charging Cable,1,14.95,09/27/19 12:14,"527 Center St, San Francisco, CA 94016" +254870,Flatscreen TV,1,300,09/13/19 16:51,"150 Elm St, San Francisco, CA 94016" +254871,Wired Headphones,1,11.99,09/07/19 10:56,"127 14th St, San Francisco, CA 94016" +254872,Wired Headphones,1,11.99,09/15/19 10:05,"694 Spruce St, Boston, MA 02215" +254873,iPhone,1,700,09/09/19 20:06,"132 Johnson St, San Francisco, CA 94016" +254874,USB-C Charging Cable,1,11.95,09/17/19 22:17,"342 Hill St, Los Angeles, CA 90001" +254875,Bose SoundSport Headphones,1,99.99,09/02/19 09:42,"525 Highland St, Los Angeles, CA 90001" +254876,AA Batteries (4-pack),1,3.84,09/12/19 19:25,"288 Walnut St, New York City, NY 10001" +254877,Bose SoundSport Headphones,1,99.99,09/24/19 16:54,"719 Madison St, New York City, NY 10001" +254878,Lightning Charging Cable,1,14.95,09/22/19 21:14,"452 Maple St, San Francisco, CA 94016" +254879,27in 4K Gaming Monitor,1,389.99,09/09/19 12:08,"337 Johnson St, San Francisco, CA 94016" +254880,27in 4K Gaming Monitor,1,389.99,09/29/19 11:56,"613 Dogwood St, Boston, MA 02215" +254881,Bose SoundSport Headphones,1,99.99,09/30/19 14:14,"348 1st St, San Francisco, CA 94016" +254882,USB-C Charging Cable,1,11.95,09/09/19 15:56,"569 14th St, Atlanta, GA 30301" +254883,Apple Airpods Headphones,1,150,09/23/19 13:03,"542 Dogwood St, Boston, MA 02215" +254884,Flatscreen TV,1,300,09/05/19 14:30,"103 Main St, San Francisco, CA 94016" +254885,Wired Headphones,1,11.99,09/16/19 21:34,"139 Walnut St, Atlanta, GA 30301" +254886,ThinkPad Laptop,1,999.99,09/22/19 08:01,"796 Hickory St, New York City, NY 10001" +254887,Bose SoundSport Headphones,1,99.99,09/05/19 12:08,"690 Lakeview St, Los Angeles, CA 90001" +254888,Bose SoundSport Headphones,1,99.99,09/29/19 21:23,"796 Ridge St, San Francisco, CA 94016" +254889,Apple Airpods Headphones,1,150,09/30/19 14:02,"758 West St, Los Angeles, CA 90001" +254890,Lightning Charging Cable,3,14.95,09/23/19 21:18,"878 Johnson St, Austin, TX 73301" +254891,Wired Headphones,1,11.99,09/25/19 10:28,"593 2nd St, Portland, OR 97035" +254892,AAA Batteries (4-pack),2,2.99,09/06/19 15:00,"537 Spruce St, Los Angeles, CA 90001" +254893,USB-C Charging Cable,1,11.95,09/24/19 23:14,"111 Pine St, Austin, TX 73301" +254894,AAA Batteries (4-pack),2,2.99,09/22/19 01:00,"275 Church St, Boston, MA 02215" +254895,AAA Batteries (4-pack),2,2.99,09/15/19 14:16,"189 Dogwood St, Los Angeles, CA 90001" +254896,AAA Batteries (4-pack),1,2.99,09/03/19 22:06,"500 Forest St, Austin, TX 73301" +254897,AAA Batteries (4-pack),1,2.99,09/28/19 17:09,"892 Chestnut St, San Francisco, CA 94016" +254898,27in 4K Gaming Monitor,1,389.99,09/08/19 17:09,"78 Johnson St, New York City, NY 10001" +254899,27in FHD Monitor,1,149.99,09/17/19 15:52,"89 Park St, Portland, OR 97035" +254900,Vareebadd Phone,1,400,09/19/19 18:36,"903 Main St, New York City, NY 10001" +254900,USB-C Charging Cable,1,11.95,09/19/19 18:36,"903 Main St, New York City, NY 10001" +254901,Macbook Pro Laptop,1,1700,09/23/19 10:06,"743 Spruce St, New York City, NY 10001" +254902,USB-C Charging Cable,1,11.95,09/05/19 15:35,"226 13th St, Los Angeles, CA 90001" +254903,AA Batteries (4-pack),1,3.84,09/17/19 08:03,"984 Lakeview St, Austin, TX 73301" +254904,Lightning Charging Cable,1,14.95,09/22/19 18:33,"982 Center St, San Francisco, CA 94016" +254905,USB-C Charging Cable,1,11.95,09/19/19 18:20,"543 Church St, Los Angeles, CA 90001" +254906,AA Batteries (4-pack),1,3.84,09/01/19 11:31,"246 Lake St, Los Angeles, CA 90001" +254907,AAA Batteries (4-pack),1,2.99,09/11/19 03:09,"359 Main St, San Francisco, CA 94016" +254908,Flatscreen TV,1,300,09/15/19 20:31,"911 11th St, Austin, TX 73301" +254909,20in Monitor,1,109.99,09/25/19 08:21,"83 12th St, New York City, NY 10001" +254910,Wired Headphones,1,11.99,09/14/19 20:14,"527 Walnut St, Portland, OR 97035" +254911,34in Ultrawide Monitor,1,379.99,09/15/19 11:55,"684 Hickory St, San Francisco, CA 94016" +254912,20in Monitor,1,109.99,09/04/19 09:11,"429 4th St, Boston, MA 02215" +254913,27in FHD Monitor,1,149.99,09/30/19 19:43,"603 12th St, Atlanta, GA 30301" +254914,AAA Batteries (4-pack),1,2.99,09/04/19 13:56,"99 9th St, San Francisco, CA 94016" +254915,USB-C Charging Cable,1,11.95,09/08/19 20:44,"460 Hill St, Los Angeles, CA 90001" +254916,AAA Batteries (4-pack),2,2.99,09/12/19 08:22,"859 2nd St, San Francisco, CA 94016" +254917,Google Phone,1,600,09/16/19 16:03,"845 Highland St, Atlanta, GA 30301" +254918,Apple Airpods Headphones,1,150,09/20/19 23:09,"629 Lake St, San Francisco, CA 94016" +254919,Apple Airpods Headphones,1,150,09/05/19 19:09,"683 11th St, New York City, NY 10001" +254920,Bose SoundSport Headphones,1,99.99,09/20/19 14:06,"975 Main St, Dallas, TX 75001" +254921,USB-C Charging Cable,1,11.95,09/06/19 01:46,"364 Church St, San Francisco, CA 94016" +254922,USB-C Charging Cable,1,11.95,09/19/19 07:18,"403 13th St, Los Angeles, CA 90001" +254923,Lightning Charging Cable,1,14.95,09/21/19 19:36,"704 Washington St, Atlanta, GA 30301" +254924,Lightning Charging Cable,1,14.95,09/01/19 09:16,"357 Lakeview St, New York City, NY 10001" +254925,Wired Headphones,1,11.99,09/01/19 12:33,"409 6th St, Los Angeles, CA 90001" +254926,Bose SoundSport Headphones,1,99.99,09/20/19 17:42,"66 Spruce St, Los Angeles, CA 90001" +254927,Wired Headphones,1,11.99,09/23/19 20:55,"392 Meadow St, Boston, MA 02215" +254928,Bose SoundSport Headphones,1,99.99,09/26/19 10:47,"988 11th St, San Francisco, CA 94016" +254929,AA Batteries (4-pack),1,3.84,09/30/19 07:02,"13 Cherry St, Boston, MA 02215" +254930,Flatscreen TV,1,300,09/13/19 14:41,"690 11th St, Austin, TX 73301" +254931,Lightning Charging Cable,1,14.95,09/05/19 09:58,"892 Lincoln St, Austin, TX 73301" +254932,AAA Batteries (4-pack),1,2.99,09/01/19 10:21,"15 North St, New York City, NY 10001" +254933,AA Batteries (4-pack),1,3.84,09/14/19 11:49,"717 Willow St, New York City, NY 10001" +254934,AA Batteries (4-pack),4,3.84,09/13/19 09:26,"609 10th St, Los Angeles, CA 90001" +254935,Lightning Charging Cable,1,14.95,09/04/19 20:10,"511 Church St, Boston, MA 02215" +254936,AAA Batteries (4-pack),2,2.99,09/24/19 18:22,"986 Elm St, New York City, NY 10001" +254937,Wired Headphones,1,11.99,09/08/19 10:18,"314 Dogwood St, Boston, MA 02215" +254938,Lightning Charging Cable,1,14.95,09/03/19 18:51,"267 Park St, Seattle, WA 98101" +254939,27in FHD Monitor,1,149.99,09/05/19 18:23,"420 6th St, Boston, MA 02215" +254940,Macbook Pro Laptop,1,1700,09/28/19 18:44,"299 Cedar St, Boston, MA 02215" +254941,USB-C Charging Cable,1,11.95,09/09/19 21:21,"443 Cherry St, Austin, TX 73301" +254942,AAA Batteries (4-pack),1,2.99,09/06/19 13:28,"166 Wilson St, Portland, OR 97035" +254943,Wired Headphones,1,11.99,09/21/19 13:52,"888 Cherry St, San Francisco, CA 94016" +254944,Wired Headphones,1,11.99,09/05/19 09:17,"606 1st St, Los Angeles, CA 90001" +254945,27in 4K Gaming Monitor,1,389.99,09/17/19 23:51,"227 Center St, Atlanta, GA 30301" +254946,AAA Batteries (4-pack),2,2.99,09/26/19 20:11,"657 Cherry St, Dallas, TX 75001" +254947,Wired Headphones,1,11.99,09/02/19 12:09,"810 Washington St, Austin, TX 73301" +254948,Wired Headphones,1,11.99,09/26/19 10:32,"253 Madison St, Seattle, WA 98101" +254949,Apple Airpods Headphones,1,150,09/23/19 08:23,"517 Center St, Seattle, WA 98101" +254950,Wired Headphones,1,11.99,09/25/19 13:24,"16 Wilson St, Dallas, TX 75001" +254951,Wired Headphones,1,11.99,09/26/19 16:19,"624 Ridge St, Boston, MA 02215" +254952,AAA Batteries (4-pack),1,2.99,09/20/19 23:11,"88 Dogwood St, Seattle, WA 98101" +254953,27in 4K Gaming Monitor,1,389.99,09/24/19 21:22,"738 10th St, New York City, NY 10001" +254954,USB-C Charging Cable,1,11.95,09/20/19 14:30,"243 Cedar St, New York City, NY 10001" +254955,Wired Headphones,1,11.99,09/02/19 20:05,"531 Maple St, San Francisco, CA 94016" +254956,Lightning Charging Cable,1,14.95,09/01/19 21:40,"306 Ridge St, San Francisco, CA 94016" +254957,AAA Batteries (4-pack),1,2.99,09/08/19 14:29,"558 Jefferson St, Los Angeles, CA 90001" +254958,USB-C Charging Cable,1,11.95,09/18/19 10:55,"559 13th St, New York City, NY 10001" +254959,AA Batteries (4-pack),1,3.84,09/30/19 17:01,"309 Sunset St, New York City, NY 10001" +254960,AA Batteries (4-pack),1,3.84,09/30/19 12:01,"638 Pine St, San Francisco, CA 94016" +254961,AAA Batteries (4-pack),1,2.99,09/18/19 09:12,"38 Madison St, Boston, MA 02215" +254962,Wired Headphones,1,11.99,09/28/19 14:04,"392 Highland St, Los Angeles, CA 90001" +254963,ThinkPad Laptop,1,999.99,09/15/19 20:26,"154 9th St, Los Angeles, CA 90001" +254964,Vareebadd Phone,1,400,09/02/19 18:47,"938 2nd St, Portland, OR 97035" +254965,Wired Headphones,1,11.99,09/26/19 23:04,"208 9th St, Los Angeles, CA 90001" +254966,Wired Headphones,1,11.99,09/07/19 18:22,"144 Pine St, Dallas, TX 75001" +254967,Lightning Charging Cable,1,14.95,09/10/19 12:32,"493 Johnson St, San Francisco, CA 94016" +254968,ThinkPad Laptop,1,999.99,09/08/19 16:57,"800 North St, Atlanta, GA 30301" +254969,Lightning Charging Cable,1,14.95,09/23/19 19:01,"378 Walnut St, San Francisco, CA 94016" +254970,Bose SoundSport Headphones,1,99.99,09/24/19 14:41,"332 Maple St, San Francisco, CA 94016" +254971,Vareebadd Phone,1,400,09/14/19 08:12,"435 Lincoln St, Boston, MA 02215" +254972,USB-C Charging Cable,1,11.95,09/19/19 16:05,"662 Washington St, San Francisco, CA 94016" +254973,Google Phone,1,600,09/12/19 08:07,"163 Madison St, San Francisco, CA 94016" +254973,USB-C Charging Cable,1,11.95,09/12/19 08:07,"163 Madison St, San Francisco, CA 94016" +254973,Bose SoundSport Headphones,1,99.99,09/12/19 08:07,"163 Madison St, San Francisco, CA 94016" +254974,USB-C Charging Cable,1,11.95,09/09/19 13:00,"312 Dogwood St, New York City, NY 10001" +254975,USB-C Charging Cable,1,11.95,09/18/19 10:52,"111 12th St, Atlanta, GA 30301" +254976,34in Ultrawide Monitor,1,379.99,09/18/19 19:08,"234 Madison St, Austin, TX 73301" +254977,AAA Batteries (4-pack),1,2.99,09/01/19 12:18,"847 Ridge St, Boston, MA 02215" +254978,Wired Headphones,1,11.99,09/17/19 19:25,"214 8th St, Austin, TX 73301" +254979,Lightning Charging Cable,1,14.95,09/01/19 21:13,"865 Maple St, Austin, TX 73301" +254980,Bose SoundSport Headphones,1,99.99,09/24/19 08:15,"254 Hickory St, Boston, MA 02215" +254981,USB-C Charging Cable,1,11.95,09/28/19 17:11,"781 Spruce St, San Francisco, CA 94016" +254982,Apple Airpods Headphones,1,150,09/03/19 09:31,"709 Madison St, New York City, NY 10001" +254983,iPhone,1,700,09/17/19 15:32,"799 Cedar St, Dallas, TX 75001" +254983,LG Washing Machine,1,600.0,09/17/19 15:32,"799 Cedar St, Dallas, TX 75001" +254984,AAA Batteries (4-pack),1,2.99,09/24/19 19:41,"307 Wilson St, Austin, TX 73301" +254985,ThinkPad Laptop,1,999.99,09/23/19 12:06,"786 9th St, Los Angeles, CA 90001" +254986,34in Ultrawide Monitor,1,379.99,09/27/19 22:02,"827 7th St, San Francisco, CA 94016" +254987,Lightning Charging Cable,2,14.95,09/01/19 17:21,"126 South St, New York City, NY 10001" +254988,LG Dryer,1,600.0,09/12/19 00:23,"211 Lake St, Dallas, TX 75001" +254989,Apple Airpods Headphones,1,150,09/16/19 12:08,"401 10th St, Dallas, TX 75001" +254990,Lightning Charging Cable,1,14.95,09/01/19 18:22,"301 10th St, New York City, NY 10001" +254991,AAA Batteries (4-pack),1,2.99,09/22/19 11:07,"924 Adams St, San Francisco, CA 94016" +254992,Apple Airpods Headphones,1,150,09/26/19 16:02,"217 Johnson St, Atlanta, GA 30301" +254993,Apple Airpods Headphones,1,150,09/01/19 18:24,"487 Cedar St, Atlanta, GA 30301" +254994,AAA Batteries (4-pack),2,2.99,09/12/19 13:30,"413 Park St, Seattle, WA 98101" +254995,20in Monitor,1,109.99,09/14/19 17:02,"859 West St, Boston, MA 02215" +254996,27in 4K Gaming Monitor,1,389.99,09/14/19 21:59,"141 Maple St, Los Angeles, CA 90001" +254997,USB-C Charging Cable,1,11.95,09/01/19 12:44,"515 Cedar St, Portland, OR 97035" +254998,27in 4K Gaming Monitor,1,389.99,09/01/19 07:48,"504 10th St, Los Angeles, CA 90001" +254999,20in Monitor,1,109.99,09/19/19 13:40,"360 4th St, Los Angeles, CA 90001" +255000,AA Batteries (4-pack),1,3.84,09/29/19 23:57,"903 Elm St, Boston, MA 02215" +255001,Google Phone,1,600,09/29/19 20:25,"794 Meadow St, San Francisco, CA 94016" +255002,34in Ultrawide Monitor,1,379.99,09/29/19 13:08,"42 11th St, New York City, NY 10001" +255003,AAA Batteries (4-pack),2,2.99,09/17/19 20:54,"939 11th St, Boston, MA 02215" +255004,AAA Batteries (4-pack),1,2.99,09/01/19 17:12,"51 Maple St, San Francisco, CA 94016" +255004,USB-C Charging Cable,1,11.95,09/01/19 17:12,"51 Maple St, San Francisco, CA 94016" +255005,Lightning Charging Cable,1,14.95,09/04/19 12:34,"664 Lake St, Atlanta, GA 30301" +255005,Lightning Charging Cable,2,14.95,09/04/19 12:34,"664 Lake St, Atlanta, GA 30301" +255006,AA Batteries (4-pack),2,3.84,09/20/19 12:25,"148 Willow St, New York City, NY 10001" +255007,Apple Airpods Headphones,1,150,09/30/19 02:53,"466 Willow St, San Francisco, CA 94016" +255008,27in FHD Monitor,1,149.99,09/14/19 10:28,"931 11th St, San Francisco, CA 94016" +255009,USB-C Charging Cable,1,11.95,09/18/19 15:19,"441 Madison St, San Francisco, CA 94016" +255010,Lightning Charging Cable,1,14.95,09/10/19 15:43,"277 River St, San Francisco, CA 94016" +255011,USB-C Charging Cable,1,11.95,09/16/19 00:54,"303 Walnut St, New York City, NY 10001" +255012,Apple Airpods Headphones,1,150,09/11/19 20:52,"411 11th St, Seattle, WA 98101" +255013,Lightning Charging Cable,1,14.95,09/30/19 09:27,"251 Hickory St, Dallas, TX 75001" +255014,27in FHD Monitor,1,149.99,09/30/19 16:40,"697 10th St, Portland, OR 97035" +255015,Apple Airpods Headphones,1,150,09/02/19 16:32,"465 Hickory St, New York City, NY 10001" +255016,Bose SoundSport Headphones,1,99.99,09/27/19 15:10,"427 4th St, Los Angeles, CA 90001" +255016,Lightning Charging Cable,1,14.95,09/27/19 15:10,"427 4th St, Los Angeles, CA 90001" +255017,27in FHD Monitor,1,149.99,09/27/19 19:33,"183 Washington St, New York City, NY 10001" +255018,iPhone,1,700,09/15/19 13:13,"862 Highland St, New York City, NY 10001" +255019,Bose SoundSport Headphones,1,99.99,09/11/19 21:32,"392 Madison St, Portland, OR 97035" +255020,27in 4K Gaming Monitor,1,389.99,09/27/19 14:25,"1 Lake St, San Francisco, CA 94016" +255021,Wired Headphones,1,11.99,09/28/19 02:23,"833 West St, Seattle, WA 98101" +255022,USB-C Charging Cable,1,11.95,09/06/19 13:57,"328 7th St, Los Angeles, CA 90001" +255023,20in Monitor,1,109.99,09/28/19 21:21,"358 South St, Seattle, WA 98101" +255024,27in 4K Gaming Monitor,1,389.99,09/19/19 10:27,"419 Chestnut St, New York City, NY 10001" +255025,AAA Batteries (4-pack),1,2.99,09/18/19 11:31,"955 Main St, New York City, NY 10001" +255026,USB-C Charging Cable,1,11.95,09/25/19 16:20,"712 River St, San Francisco, CA 94016" +255027,Bose SoundSport Headphones,1,99.99,09/15/19 01:18,"150 Dogwood St, San Francisco, CA 94016" +255028,34in Ultrawide Monitor,1,379.99,09/29/19 09:57,"927 Spruce St, San Francisco, CA 94016" +255029,AA Batteries (4-pack),1,3.84,09/14/19 11:37,"670 9th St, Boston, MA 02215" +255030,Macbook Pro Laptop,1,1700,09/28/19 21:14,"278 Chestnut St, Dallas, TX 75001" +255031,AA Batteries (4-pack),2,3.84,09/14/19 13:42,"20 1st St, Los Angeles, CA 90001" +255032,Wired Headphones,2,11.99,09/01/19 16:26,"232 5th St, Atlanta, GA 30301" +255033,Lightning Charging Cable,1,14.95,09/12/19 12:48,"957 Jackson St, San Francisco, CA 94016" +255034,Vareebadd Phone,1,400,09/28/19 22:14,"745 Park St, Atlanta, GA 30301" +255035,Lightning Charging Cable,1,14.95,09/06/19 12:00,"145 Main St, Dallas, TX 75001" +255036,34in Ultrawide Monitor,1,379.99,09/02/19 20:14,"477 Spruce St, Los Angeles, CA 90001" +255037,Wired Headphones,1,11.99,09/04/19 00:30,"613 Lakeview St, Los Angeles, CA 90001" +255038,Bose SoundSport Headphones,1,99.99,09/10/19 18:38,"852 12th St, Los Angeles, CA 90001" +255039,AAA Batteries (4-pack),2,2.99,09/23/19 14:09,"104 West St, New York City, NY 10001" +255040,Vareebadd Phone,1,400,09/10/19 08:02,"291 5th St, Los Angeles, CA 90001" +255041,27in 4K Gaming Monitor,1,389.99,09/29/19 20:02,"199 4th St, Dallas, TX 75001" +255042,Lightning Charging Cable,1,14.95,09/17/19 10:55,"258 Elm St, San Francisco, CA 94016" +255043,Wired Headphones,1,11.99,09/26/19 09:13,"114 8th St, Los Angeles, CA 90001" +255044,Lightning Charging Cable,1,14.95,09/26/19 20:19,"36 Jefferson St, San Francisco, CA 94016" +255045,USB-C Charging Cable,1,11.95,09/13/19 20:24,"833 Dogwood St, Atlanta, GA 30301" +255046,Apple Airpods Headphones,1,150,09/27/19 16:24,"310 10th St, Los Angeles, CA 90001" +255047,USB-C Charging Cable,1,11.95,09/10/19 09:27,"494 8th St, Seattle, WA 98101" +255048,Lightning Charging Cable,1,14.95,09/01/19 12:49,"412 North St, San Francisco, CA 94016" +255048,USB-C Charging Cable,1,11.95,09/01/19 12:49,"412 North St, San Francisco, CA 94016" +255049,Lightning Charging Cable,1,14.95,09/24/19 16:44,"336 River St, Dallas, TX 75001" +255050,Wired Headphones,1,11.99,09/20/19 16:37,"307 Cedar St, San Francisco, CA 94016" +255051,Lightning Charging Cable,1,14.95,09/12/19 11:05,"441 Dogwood St, Boston, MA 02215" +255052,Google Phone,1,600,09/04/19 14:40,"400 8th St, San Francisco, CA 94016" +255053,27in FHD Monitor,1,149.99,09/14/19 12:30,"116 Highland St, Portland, OR 97035" +255054,Wired Headphones,1,11.99,09/18/19 14:01,"328 Chestnut St, Boston, MA 02215" +255055,Lightning Charging Cable,1,14.95,09/16/19 03:56,"559 Chestnut St, San Francisco, CA 94016" +255056,AA Batteries (4-pack),1,3.84,09/03/19 18:50,"249 Chestnut St, Los Angeles, CA 90001" +255057,AAA Batteries (4-pack),1,2.99,09/04/19 12:35,"940 Forest St, Dallas, TX 75001" +255058,Bose SoundSport Headphones,1,99.99,09/24/19 15:56,"307 14th St, Los Angeles, CA 90001" +255059,AAA Batteries (4-pack),2,2.99,09/15/19 12:38,"89 Church St, Austin, TX 73301" +255060,27in FHD Monitor,1,149.99,09/02/19 13:42,"249 Jefferson St, Los Angeles, CA 90001" +255061,USB-C Charging Cable,1,11.95,09/12/19 08:56,"31 Maple St, San Francisco, CA 94016" +255062,AAA Batteries (4-pack),1,2.99,09/20/19 14:43,"318 1st St, San Francisco, CA 94016" +255063,USB-C Charging Cable,1,11.95,09/10/19 19:08,"948 14th St, Los Angeles, CA 90001" +255064,Vareebadd Phone,1,400,09/13/19 11:03,"336 Hill St, Atlanta, GA 30301" +255064,Apple Airpods Headphones,1,150,09/13/19 11:03,"336 Hill St, Atlanta, GA 30301" +255065,iPhone,1,700,09/16/19 23:50,"543 Church St, Dallas, TX 75001" +255065,Lightning Charging Cable,1,14.95,09/16/19 23:50,"543 Church St, Dallas, TX 75001" +255066,AA Batteries (4-pack),1,3.84,09/11/19 16:42,"562 Dogwood St, San Francisco, CA 94016" +255067,AAA Batteries (4-pack),3,2.99,09/04/19 01:12,"850 Walnut St, Boston, MA 02215" +255068,USB-C Charging Cable,1,11.95,09/11/19 15:42,"673 River St, San Francisco, CA 94016" +255069,AAA Batteries (4-pack),2,2.99,09/26/19 08:52,"799 Ridge St, Austin, TX 73301" +255070,Apple Airpods Headphones,1,150,09/09/19 18:28,"435 Pine St, Los Angeles, CA 90001" +255071,Lightning Charging Cable,1,14.95,09/13/19 07:32,"485 Pine St, San Francisco, CA 94016" +255072,iPhone,1,700,09/22/19 23:13,"97 Cedar St, New York City, NY 10001" +255073,AAA Batteries (4-pack),1,2.99,09/07/19 22:17,"445 Cherry St, San Francisco, CA 94016" +255074,AA Batteries (4-pack),3,3.84,09/08/19 15:48,"347 Park St, San Francisco, CA 94016" +255075,27in FHD Monitor,1,149.99,09/16/19 21:13,"338 4th St, Los Angeles, CA 90001" +255076,20in Monitor,1,109.99,09/24/19 10:52,"468 8th St, Los Angeles, CA 90001" +255077,Bose SoundSport Headphones,1,99.99,09/20/19 13:35,"934 4th St, San Francisco, CA 94016" +255078,Apple Airpods Headphones,1,150,09/23/19 11:42,"614 9th St, San Francisco, CA 94016" +255079,USB-C Charging Cable,1,11.95,09/16/19 13:50,"119 14th St, New York City, NY 10001" +255080,27in FHD Monitor,1,149.99,09/29/19 19:49,"872 6th St, Seattle, WA 98101" +255081,27in 4K Gaming Monitor,1,389.99,09/15/19 13:11,"732 Hill St, Los Angeles, CA 90001" +255082,USB-C Charging Cable,1,11.95,09/07/19 12:47,"295 Church St, San Francisco, CA 94016" +255083,USB-C Charging Cable,1,11.95,09/01/19 08:44,"953 Lake St, Boston, MA 02215" +255084,Flatscreen TV,1,300,09/12/19 22:08,"136 9th St, Atlanta, GA 30301" +255085,USB-C Charging Cable,1,11.95,09/19/19 20:52,"312 13th St, San Francisco, CA 94016" +255086,Google Phone,1,600,09/24/19 21:37,"716 9th St, Boston, MA 02215" +255087,Wired Headphones,1,11.99,09/19/19 10:42,"963 Chestnut St, Seattle, WA 98101" +255088,USB-C Charging Cable,1,11.95,09/27/19 09:05,"150 10th St, Los Angeles, CA 90001" +255089,Bose SoundSport Headphones,1,99.99,09/20/19 11:02,"769 West St, Dallas, TX 75001" +255090,USB-C Charging Cable,1,11.95,09/05/19 18:59,"881 5th St, New York City, NY 10001" +255091,Lightning Charging Cable,1,14.95,09/21/19 19:41,"778 Madison St, Dallas, TX 75001" +255092,Apple Airpods Headphones,1,150,09/13/19 10:26,"575 Hill St, Boston, MA 02215" +255093,34in Ultrawide Monitor,1,379.99,09/13/19 12:53,"665 7th St, Seattle, WA 98101" +255094,AAA Batteries (4-pack),2,2.99,09/17/19 16:07,"481 Madison St, San Francisco, CA 94016" +255095,Wired Headphones,2,11.99,09/02/19 15:55,"255 Madison St, Los Angeles, CA 90001" +255096,Google Phone,1,600,09/12/19 15:19,"250 Hickory St, San Francisco, CA 94016" +255097,iPhone,1,700,09/18/19 16:33,"136 5th St, Los Angeles, CA 90001" +255097,Wired Headphones,1,11.99,09/18/19 16:33,"136 5th St, Los Angeles, CA 90001" +255098,Wired Headphones,1,11.99,09/16/19 14:01,"879 River St, Boston, MA 02215" +255099,20in Monitor,1,109.99,09/04/19 09:12,"299 Chestnut St, Los Angeles, CA 90001" +255100,iPhone,1,700,09/09/19 10:45,"913 Hill St, Los Angeles, CA 90001" +255101,AAA Batteries (4-pack),2,2.99,09/26/19 15:05,"785 Madison St, Portland, OR 97035" +255102,LG Dryer,1,600.0,09/12/19 14:22,"399 7th St, San Francisco, CA 94016" +255103,AAA Batteries (4-pack),3,2.99,09/02/19 16:03,"841 Jefferson St, Boston, MA 02215" +255104,Lightning Charging Cable,1,14.95,09/18/19 19:43,"189 Highland St, San Francisco, CA 94016" +255105,Lightning Charging Cable,1,14.95,09/25/19 13:23,"222 4th St, San Francisco, CA 94016" +255106,USB-C Charging Cable,1,11.95,09/29/19 16:16,"674 Ridge St, San Francisco, CA 94016" +255107,AA Batteries (4-pack),2,3.84,09/14/19 21:11,"733 13th St, Los Angeles, CA 90001" +255108,AAA Batteries (4-pack),1,2.99,09/10/19 17:37,"12 Sunset St, San Francisco, CA 94016" +255109,AAA Batteries (4-pack),1,2.99,09/14/19 12:18,"343 River St, Dallas, TX 75001" +255110,AA Batteries (4-pack),1,3.84,09/13/19 09:25,"725 North St, Atlanta, GA 30301" +255111,Apple Airpods Headphones,1,150,09/11/19 01:33,"740 2nd St, Portland, OR 97035" +255112,AAA Batteries (4-pack),1,2.99,09/23/19 12:41,"185 10th St, San Francisco, CA 94016" +255113,USB-C Charging Cable,1,11.95,09/23/19 21:43,"549 Johnson St, Atlanta, GA 30301" +255114,34in Ultrawide Monitor,1,379.99,09/17/19 12:02,"837 Wilson St, Los Angeles, CA 90001" +255115,AA Batteries (4-pack),1,3.84,09/18/19 01:05,"341 Church St, New York City, NY 10001" +255116,USB-C Charging Cable,1,11.95,09/18/19 17:04,"485 Johnson St, Portland, OR 97035" +255117,AAA Batteries (4-pack),2,2.99,09/28/19 08:35,"48 Hickory St, Dallas, TX 75001" +255118,AA Batteries (4-pack),1,3.84,09/10/19 13:46,"677 Park St, San Francisco, CA 94016" +255119,AA Batteries (4-pack),1,3.84,09/27/19 20:39,"33 Dogwood St, Seattle, WA 98101" +255120,27in 4K Gaming Monitor,1,389.99,09/19/19 22:00,"459 North St, Boston, MA 02215" +255120,Lightning Charging Cable,1,14.95,09/19/19 22:00,"459 North St, Boston, MA 02215" +255121,Google Phone,1,600,09/14/19 17:05,"114 10th St, Los Angeles, CA 90001" +255122,AAA Batteries (4-pack),1,2.99,09/30/19 17:21,"196 Spruce St, Los Angeles, CA 90001" +255123,USB-C Charging Cable,1,11.95,09/22/19 13:44,"955 4th St, Los Angeles, CA 90001" +255124,iPhone,1,700,09/14/19 11:35,"575 Church St, Dallas, TX 75001" +255125,Vareebadd Phone,1,400,09/22/19 19:05,"872 West St, San Francisco, CA 94016" +255125,Wired Headphones,1,11.99,09/22/19 19:05,"872 West St, San Francisco, CA 94016" +255126,USB-C Charging Cable,3,11.95,09/21/19 23:33,"72 Chestnut St, Seattle, WA 98101" +255127,27in FHD Monitor,1,149.99,09/05/19 10:06,"522 Elm St, Boston, MA 02215" +255128,Apple Airpods Headphones,1,150,09/12/19 14:47,"73 South St, New York City, NY 10001" +255129,AAA Batteries (4-pack),1,2.99,09/06/19 15:03,"807 Lincoln St, Atlanta, GA 30301" +255130,27in FHD Monitor,1,149.99,09/17/19 17:02,"289 Washington St, Los Angeles, CA 90001" +255131,27in FHD Monitor,1,149.99,09/23/19 02:17,"212 6th St, Seattle, WA 98101" +255132,USB-C Charging Cable,1,11.95,09/16/19 07:00,"148 Cherry St, Los Angeles, CA 90001" +255133,Apple Airpods Headphones,1,150,09/29/19 14:45,"675 12th St, San Francisco, CA 94016" +255134,Lightning Charging Cable,2,14.95,09/05/19 10:22,"344 5th St, San Francisco, CA 94016" +255135,Wired Headphones,1,11.99,09/21/19 13:37,"839 Elm St, San Francisco, CA 94016" +255136,USB-C Charging Cable,1,11.95,09/15/19 10:53,"360 1st St, New York City, NY 10001" +255137,Macbook Pro Laptop,1,1700,09/23/19 11:30,"170 14th St, San Francisco, CA 94016" +255138,27in FHD Monitor,1,149.99,09/05/19 14:44,"640 Lincoln St, Atlanta, GA 30301" +255139,Apple Airpods Headphones,1,150,09/09/19 22:10,"618 Adams St, New York City, NY 10001" +255140,Apple Airpods Headphones,1,150,09/10/19 07:55,"662 6th St, Dallas, TX 75001" +255141,Wired Headphones,1,11.99,09/28/19 22:40,"596 14th St, New York City, NY 10001" +255142,USB-C Charging Cable,1,11.95,09/05/19 19:14,"154 Jackson St, New York City, NY 10001" +255143,Apple Airpods Headphones,1,150,09/24/19 12:17,"222 Meadow St, Boston, MA 02215" +255144,AA Batteries (4-pack),1,3.84,09/13/19 11:24,"258 Johnson St, New York City, NY 10001" +255145,Bose SoundSport Headphones,1,99.99,09/07/19 09:25,"90 Maple St, Atlanta, GA 30301" +255146,Flatscreen TV,1,300,09/23/19 15:22,"479 Adams St, Atlanta, GA 30301" +255147,27in 4K Gaming Monitor,1,389.99,09/01/19 06:16,"164 Spruce St, Austin, TX 73301" +255148,Flatscreen TV,1,300,09/01/19 13:41,"242 Cherry St, Portland, OR 97035" +255149,34in Ultrawide Monitor,1,379.99,09/24/19 18:24,"711 Park St, Atlanta, GA 30301" +255150,Flatscreen TV,1,300,09/29/19 18:22,"191 Dogwood St, Seattle, WA 98101" +255151,27in FHD Monitor,1,149.99,09/24/19 11:09,"658 Center St, Dallas, TX 75001" +255152,Lightning Charging Cable,1,14.95,09/02/19 09:19,"45 Maple St, Los Angeles, CA 90001" +255153,AA Batteries (4-pack),1,3.84,09/03/19 13:50,"460 Lakeview St, Seattle, WA 98101" +255154,Vareebadd Phone,1,400,09/30/19 15:41,"610 9th St, Atlanta, GA 30301" +255155,USB-C Charging Cable,1,11.95,09/22/19 14:11,"115 Jefferson St, Dallas, TX 75001" +255156,Bose SoundSport Headphones,1,99.99,09/05/19 20:43,"194 Johnson St, Dallas, TX 75001" +255157,Wired Headphones,1,11.99,09/06/19 20:08,"295 Center St, Boston, MA 02215" +255158,Vareebadd Phone,1,400,09/04/19 22:54,"70 Wilson St, Austin, TX 73301" +255158,USB-C Charging Cable,1,11.95,09/04/19 22:54,"70 Wilson St, Austin, TX 73301" +255159,AAA Batteries (4-pack),1,2.99,09/24/19 13:49,"474 Main St, San Francisco, CA 94016" +255160,iPhone,1,700,09/17/19 22:38,"212 Hill St, New York City, NY 10001" +255161,Apple Airpods Headphones,1,150,09/18/19 18:13,"892 Johnson St, Boston, MA 02215" +255162,AA Batteries (4-pack),1,3.84,09/22/19 12:15,"505 Pine St, Seattle, WA 98101" +255163,Flatscreen TV,1,300,09/05/19 20:13,"81 4th St, Austin, TX 73301" +255164,Bose SoundSport Headphones,1,99.99,09/28/19 11:49,"135 Walnut St, Portland, OR 97035" +255165,27in 4K Gaming Monitor,1,389.99,09/04/19 10:22,"915 9th St, San Francisco, CA 94016" +255166,Bose SoundSport Headphones,1,99.99,09/29/19 19:21,"877 10th St, New York City, NY 10001" +255167,Apple Airpods Headphones,1,150,09/29/19 16:41,"452 Johnson St, Boston, MA 02215" +255168,27in 4K Gaming Monitor,1,389.99,09/03/19 13:01,"128 12th St, San Francisco, CA 94016" +255169,Lightning Charging Cable,1,14.95,09/28/19 17:46,"637 12th St, Los Angeles, CA 90001" +255170,27in FHD Monitor,1,149.99,09/15/19 21:06,"213 West St, San Francisco, CA 94016" +255171,AA Batteries (4-pack),2,3.84,09/03/19 20:37,"842 Madison St, San Francisco, CA 94016" +255172,AA Batteries (4-pack),1,3.84,09/06/19 11:32,"970 Wilson St, Atlanta, GA 30301" +255173,Wired Headphones,1,11.99,09/07/19 22:08,"819 Washington St, Portland, OR 97035" +255174,Macbook Pro Laptop,1,1700,09/29/19 12:56,"232 Madison St, New York City, NY 10001" +255175,Apple Airpods Headphones,1,150,09/26/19 23:07,"699 9th St, San Francisco, CA 94016" +255176,Lightning Charging Cable,1,14.95,09/21/19 16:32,"697 Forest St, New York City, NY 10001" +255177,AAA Batteries (4-pack),1,2.99,09/01/19 16:41,"128 Hill St, Boston, MA 02215" +255178,iPhone,1,700,09/15/19 21:12,"158 West St, Boston, MA 02215" +255179,Apple Airpods Headphones,1,150,09/18/19 11:31,"502 Hickory St, Seattle, WA 98101" +255180,AA Batteries (4-pack),1,3.84,09/04/19 21:45,"250 6th St, San Francisco, CA 94016" +255181,Bose SoundSport Headphones,1,99.99,09/21/19 15:29,"462 Chestnut St, Boston, MA 02215" +255182,AAA Batteries (4-pack),4,2.99,09/14/19 18:08,"400 Jackson St, Los Angeles, CA 90001" +255183,ThinkPad Laptop,1,999.99,09/18/19 23:34,"523 Forest St, San Francisco, CA 94016" +255184,Apple Airpods Headphones,1,150,09/07/19 07:05,"269 12th St, Seattle, WA 98101" +255185,34in Ultrawide Monitor,1,379.99,09/28/19 00:05,"132 Walnut St, New York City, NY 10001" +255186,USB-C Charging Cable,1,11.95,09/09/19 18:36,"141 5th St, New York City, NY 10001" +255187,Wired Headphones,1,11.99,09/03/19 14:41,"884 1st St, New York City, NY 10001" +255188,27in 4K Gaming Monitor,1,389.99,09/18/19 19:02,"858 North St, San Francisco, CA 94016" +255189,AAA Batteries (4-pack),1,2.99,09/17/19 13:19,"192 Center St, Dallas, TX 75001" +255190,AA Batteries (4-pack),1,3.84,09/13/19 19:55,"162 Adams St, Austin, TX 73301" +255191,USB-C Charging Cable,1,11.95,09/05/19 18:59,"689 Dogwood St, Austin, TX 73301" +255192,AAA Batteries (4-pack),2,2.99,09/13/19 19:57,"220 Adams St, Boston, MA 02215" +255193,AAA Batteries (4-pack),1,2.99,09/25/19 10:38,"904 Elm St, New York City, NY 10001" +255194,Apple Airpods Headphones,1,150,09/13/19 14:25,"789 Forest St, San Francisco, CA 94016" +255195,Lightning Charging Cable,1,14.95,09/13/19 10:20,"686 Lake St, San Francisco, CA 94016" +255196,iPhone,1,700,09/08/19 02:39,"882 Washington St, Atlanta, GA 30301" +255197,Apple Airpods Headphones,1,150,09/15/19 23:34,"204 Jefferson St, New York City, NY 10001" +255198,Lightning Charging Cable,2,14.95,09/30/19 12:43,"215 Ridge St, Dallas, TX 75001" +255199,34in Ultrawide Monitor,1,379.99,09/28/19 14:18,"506 4th St, New York City, NY 10001" +255200,Wired Headphones,1,11.99,09/06/19 06:45,"716 Cedar St, Seattle, WA 98101" +255201,Wired Headphones,1,11.99,09/02/19 22:46,"540 Lincoln St, New York City, NY 10001" +255202,20in Monitor,1,109.99,09/18/19 12:54,"582 River St, Portland, OR 97035" +255203,Wired Headphones,1,11.99,09/26/19 22:04,"747 Johnson St, New York City, NY 10001" +255204,27in FHD Monitor,1,149.99,09/29/19 21:45,"752 Highland St, San Francisco, CA 94016" +255205,Lightning Charging Cable,1,14.95,09/17/19 08:49,"231 Church St, Dallas, TX 75001" +255206,27in FHD Monitor,1,149.99,09/13/19 23:49,"947 Spruce St, Seattle, WA 98101" +255207,AAA Batteries (4-pack),1,2.99,09/01/19 23:19,"838 Spruce St, San Francisco, CA 94016" +255208,AA Batteries (4-pack),3,3.84,09/15/19 16:37,"285 Johnson St, Seattle, WA 98101" +255209,AAA Batteries (4-pack),2,2.99,09/14/19 10:13,"164 Lakeview St, Atlanta, GA 30301" +255210,Apple Airpods Headphones,1,150,09/25/19 06:22,"331 11th St, Seattle, WA 98101" +255211,Vareebadd Phone,1,400,09/08/19 17:10,"908 Hickory St, New York City, NY 10001" +255212,Bose SoundSport Headphones,1,99.99,09/21/19 14:22,"666 River St, San Francisco, CA 94016" +255213,Lightning Charging Cable,1,14.95,09/28/19 15:49,"214 Ridge St, Los Angeles, CA 90001" +255214,AA Batteries (4-pack),1,3.84,09/03/19 12:23,"392 Church St, Atlanta, GA 30301" +255215,Macbook Pro Laptop,1,1700,09/19/19 11:17,"346 Jefferson St, Boston, MA 02215" +255216,Lightning Charging Cable,1,14.95,10/01/19 00:26,"486 Meadow St, Los Angeles, CA 90001" +255217,iPhone,1,700,09/17/19 05:23,"422 7th St, Dallas, TX 75001" +255217,Lightning Charging Cable,1,14.95,09/17/19 05:23,"422 7th St, Dallas, TX 75001" +255218,USB-C Charging Cable,1,11.95,09/09/19 18:26,"951 Highland St, New York City, NY 10001" +255219,USB-C Charging Cable,1,11.95,09/24/19 05:18,"818 West St, Los Angeles, CA 90001" +255220,Lightning Charging Cable,1,14.95,09/12/19 02:14,"316 Wilson St, Austin, TX 73301" +255221,27in FHD Monitor,1,149.99,09/27/19 19:39,"227 10th St, Atlanta, GA 30301" +255222,27in 4K Gaming Monitor,1,389.99,09/10/19 13:30,"166 Maple St, New York City, NY 10001" +255223,Bose SoundSport Headphones,1,99.99,09/08/19 19:26,"624 9th St, Dallas, TX 75001" +255224,Wired Headphones,1,11.99,09/11/19 11:49,"314 Lincoln St, Boston, MA 02215" +255225,Wired Headphones,1,11.99,09/03/19 12:42,"230 Hill St, San Francisco, CA 94016" +255226,Vareebadd Phone,1,400,09/12/19 17:17,"182 Johnson St, Los Angeles, CA 90001" +255226,USB-C Charging Cable,1,11.95,09/12/19 17:17,"182 Johnson St, Los Angeles, CA 90001" +255227,USB-C Charging Cable,1,11.95,09/28/19 22:59,"933 13th St, Atlanta, GA 30301" +255228,ThinkPad Laptop,1,999.99,09/07/19 01:57,"332 Johnson St, San Francisco, CA 94016" +255229,Apple Airpods Headphones,1,150,09/14/19 22:52,"808 10th St, Austin, TX 73301" +255230,20in Monitor,1,109.99,09/19/19 23:05,"342 Willow St, San Francisco, CA 94016" +255231,AAA Batteries (4-pack),1,2.99,09/14/19 19:31,"904 Park St, Los Angeles, CA 90001" +255232,AA Batteries (4-pack),1,3.84,09/13/19 18:26,"200 5th St, Los Angeles, CA 90001" +255233,AAA Batteries (4-pack),3,2.99,09/03/19 02:13,"428 Jackson St, Boston, MA 02215" +255234,AAA Batteries (4-pack),1,2.99,09/06/19 14:42,"9 Center St, San Francisco, CA 94016" +255235,USB-C Charging Cable,1,11.95,09/30/19 11:44,"857 Hill St, San Francisco, CA 94016" +255236,Wired Headphones,1,11.99,09/14/19 13:10,"360 Highland St, Los Angeles, CA 90001" +255237,Google Phone,1,600,09/03/19 10:38,"420 Highland St, Seattle, WA 98101" +255238,Lightning Charging Cable,1,14.95,09/15/19 19:45,"747 River St, Portland, OR 97035" +255239,Wired Headphones,1,11.99,09/15/19 16:15,"557 South St, Los Angeles, CA 90001" +255240,Lightning Charging Cable,1,14.95,09/28/19 22:16,"497 Park St, San Francisco, CA 94016" +255241,Wired Headphones,1,11.99,09/23/19 11:23,"3 Adams St, San Francisco, CA 94016" +255242,Lightning Charging Cable,1,14.95,09/11/19 12:32,"377 7th St, San Francisco, CA 94016" +255243,AA Batteries (4-pack),1,3.84,09/30/19 11:28,"813 Park St, San Francisco, CA 94016" +255244,27in 4K Gaming Monitor,1,389.99,09/15/19 14:53,"777 Ridge St, San Francisco, CA 94016" +255245,27in FHD Monitor,1,149.99,09/21/19 00:24,"673 Hickory St, San Francisco, CA 94016" +255246,34in Ultrawide Monitor,1,379.99,09/21/19 13:31,"996 10th St, Boston, MA 02215" +255247,ThinkPad Laptop,1,999.99,09/03/19 22:38,"116 Madison St, Los Angeles, CA 90001" +255248,Vareebadd Phone,1,400,09/27/19 12:36,"490 Main St, Los Angeles, CA 90001" +255248,USB-C Charging Cable,1,11.95,09/27/19 12:36,"490 Main St, Los Angeles, CA 90001" +255249,Wired Headphones,1,11.99,09/25/19 12:12,"338 Park St, Boston, MA 02215" +255250,Lightning Charging Cable,1,14.95,09/27/19 13:19,"116 Madison St, San Francisco, CA 94016" +255251,Lightning Charging Cable,1,14.95,09/30/19 18:52,"738 West St, Dallas, TX 75001" +255252,Lightning Charging Cable,1,14.95,09/12/19 15:14,"461 Highland St, Los Angeles, CA 90001" +255253,27in 4K Gaming Monitor,1,389.99,09/01/19 09:17,"478 West St, Portland, OR 97035" +255254,20in Monitor,1,109.99,09/01/19 09:51,"993 Madison St, New York City, NY 10001" +255255,AA Batteries (4-pack),1,3.84,09/03/19 09:15,"865 9th St, Los Angeles, CA 90001" +255256,Google Phone,1,600,09/17/19 16:49,"658 11th St, San Francisco, CA 94016" +255257,Flatscreen TV,1,300,09/14/19 18:58,"803 Madison St, Los Angeles, CA 90001" +255258,Lightning Charging Cable,1,14.95,09/01/19 20:42,"701 Johnson St, San Francisco, CA 94016" +255259,AAA Batteries (4-pack),2,2.99,09/21/19 18:20,"107 Cherry St, Los Angeles, CA 90001" +255260,34in Ultrawide Monitor,1,379.99,09/20/19 17:37,"188 Lincoln St, Atlanta, GA 30301" +255260,Wired Headphones,1,11.99,09/20/19 17:37,"188 Lincoln St, Atlanta, GA 30301" +255261,Wired Headphones,2,11.99,09/21/19 23:12,"346 Jackson St, Los Angeles, CA 90001" +255262,USB-C Charging Cable,1,11.95,09/12/19 08:46,"604 11th St, Atlanta, GA 30301" +255263,AA Batteries (4-pack),1,3.84,09/19/19 16:30,"458 Jackson St, San Francisco, CA 94016" +255264,AA Batteries (4-pack),2,3.84,09/01/19 14:05,"910 6th St, Boston, MA 02215" +255265,Lightning Charging Cable,1,14.95,09/07/19 16:12,"586 2nd St, Los Angeles, CA 90001" +255266,AAA Batteries (4-pack),1,2.99,09/18/19 20:31,"213 Lake St, San Francisco, CA 94016" +255267,Google Phone,1,600,09/14/19 19:56,"306 Jackson St, Seattle, WA 98101" +255268,Apple Airpods Headphones,1,150,09/27/19 06:57,"995 12th St, San Francisco, CA 94016" +255269,Bose SoundSport Headphones,1,99.99,09/23/19 20:51,"62 Hill St, Boston, MA 02215" +255270,AA Batteries (4-pack),1,3.84,09/11/19 18:52,"149 11th St, Atlanta, GA 30301" +255270,iPhone,1,700,09/11/19 18:52,"149 11th St, Atlanta, GA 30301" +255271,Vareebadd Phone,1,400,09/13/19 21:05,"561 7th St, New York City, NY 10001" +255271,USB-C Charging Cable,1,11.95,09/13/19 21:05,"561 7th St, New York City, NY 10001" +255272,AA Batteries (4-pack),1,3.84,09/11/19 15:14,"620 Meadow St, San Francisco, CA 94016" +255273,USB-C Charging Cable,1,11.95,09/28/19 04:47,"949 Adams St, New York City, NY 10001" +255274,Flatscreen TV,1,300,09/23/19 10:55,"131 South St, San Francisco, CA 94016" +255275,Apple Airpods Headphones,1,150,09/11/19 08:06,"913 8th St, New York City, NY 10001" +255276,Apple Airpods Headphones,1,150,09/08/19 16:32,"980 8th St, Boston, MA 02215" +255277,AA Batteries (4-pack),3,3.84,09/10/19 15:47,"716 Main St, San Francisco, CA 94016" +255278,Bose SoundSport Headphones,1,99.99,09/27/19 19:30,"500 Cedar St, Boston, MA 02215" +255279,AA Batteries (4-pack),2,3.84,09/24/19 13:24,"471 Maple St, New York City, NY 10001" +255280,AAA Batteries (4-pack),2,2.99,09/27/19 20:32,"379 Willow St, Los Angeles, CA 90001" +255281,Wired Headphones,1,11.99,09/25/19 17:40,"578 Madison St, Los Angeles, CA 90001" +255282,Apple Airpods Headphones,1,150,09/28/19 19:58,"746 South St, Los Angeles, CA 90001" +255283,20in Monitor,1,109.99,09/06/19 12:50,"665 Washington St, Dallas, TX 75001" +255284,Wired Headphones,2,11.99,09/30/19 16:43,"940 14th St, San Francisco, CA 94016" +255285,Apple Airpods Headphones,1,150,09/26/19 09:44,"395 Washington St, San Francisco, CA 94016" +255286,20in Monitor,1,109.99,09/28/19 09:20,"656 Lake St, Portland, ME 04101" +255287,AA Batteries (4-pack),1,3.84,09/25/19 22:06,"561 Cherry St, Austin, TX 73301" +255288,AA Batteries (4-pack),1,3.84,09/29/19 17:43,"293 Spruce St, Atlanta, GA 30301" +255289,Lightning Charging Cable,1,14.95,09/28/19 13:51,"72 Lakeview St, San Francisco, CA 94016" +255290,Google Phone,1,600,09/19/19 04:56,"207 River St, Boston, MA 02215" +255290,Wired Headphones,1,11.99,09/19/19 04:56,"207 River St, Boston, MA 02215" +255291,Macbook Pro Laptop,1,1700,09/12/19 21:17,"66 Johnson St, New York City, NY 10001" +255292,AAA Batteries (4-pack),1,2.99,09/30/19 01:06,"237 Jefferson St, Seattle, WA 98101" +255293,Macbook Pro Laptop,1,1700,09/24/19 14:57,"938 Meadow St, San Francisco, CA 94016" +255294,Lightning Charging Cable,1,14.95,09/22/19 17:32,"624 Elm St, San Francisco, CA 94016" +255295,AA Batteries (4-pack),1,3.84,09/06/19 21:37,"427 Jackson St, Austin, TX 73301" +255296,Macbook Pro Laptop,1,1700,09/02/19 07:21,"222 13th St, Los Angeles, CA 90001" +255297,USB-C Charging Cable,1,11.95,09/14/19 15:46,"108 Main St, Seattle, WA 98101" +255298,AAA Batteries (4-pack),2,2.99,09/29/19 08:56,"333 6th St, San Francisco, CA 94016" +255299,AA Batteries (4-pack),1,3.84,09/30/19 15:15,"483 9th St, Seattle, WA 98101" +255300,iPhone,1,700,09/17/19 21:26,"115 Jefferson St, Portland, OR 97035" +255300,Lightning Charging Cable,1,14.95,09/17/19 21:26,"115 Jefferson St, Portland, OR 97035" +255301,AA Batteries (4-pack),1,3.84,09/12/19 09:24,"738 Dogwood St, Boston, MA 02215" +255302,USB-C Charging Cable,1,11.95,09/19/19 09:53,"629 Hickory St, San Francisco, CA 94016" +255303,Lightning Charging Cable,1,14.95,09/16/19 20:45,"992 Jackson St, Dallas, TX 75001" +255304,USB-C Charging Cable,1,11.95,09/05/19 22:39,"984 Forest St, Los Angeles, CA 90001" +255305,AAA Batteries (4-pack),1,2.99,09/18/19 20:28,"556 5th St, San Francisco, CA 94016" +255306,Bose SoundSport Headphones,1,99.99,09/12/19 17:33,"12 11th St, San Francisco, CA 94016" +255307,USB-C Charging Cable,1,11.95,09/10/19 22:23,"168 10th St, Los Angeles, CA 90001" +255308,Lightning Charging Cable,1,14.95,09/09/19 21:50,"934 1st St, Los Angeles, CA 90001" +255309,Lightning Charging Cable,1,14.95,09/25/19 11:37,"663 4th St, Portland, OR 97035" +255310,USB-C Charging Cable,1,11.95,09/11/19 16:55,"140 South St, Boston, MA 02215" +255311,Macbook Pro Laptop,1,1700,09/30/19 12:11,"683 8th St, Dallas, TX 75001" +255312,Apple Airpods Headphones,1,150,09/15/19 16:09,"810 Spruce St, San Francisco, CA 94016" +255313,Lightning Charging Cable,1,14.95,09/11/19 17:30,"455 Hill St, Los Angeles, CA 90001" +255314,Macbook Pro Laptop,1,1700,09/19/19 09:16,"803 Park St, Boston, MA 02215" +255315,AA Batteries (4-pack),1,3.84,09/16/19 20:46,"745 7th St, Portland, OR 97035" +255316,27in 4K Gaming Monitor,1,389.99,09/30/19 18:52,"761 Lakeview St, Portland, ME 04101" +255317,Bose SoundSport Headphones,1,99.99,09/24/19 18:41,"265 Forest St, Boston, MA 02215" +255318,27in 4K Gaming Monitor,1,389.99,09/16/19 16:43,"106 Madison St, Los Angeles, CA 90001" +255319,AA Batteries (4-pack),1,3.84,09/04/19 11:28,"58 Jefferson St, Austin, TX 73301" +255320,USB-C Charging Cable,2,11.95,09/26/19 18:12,"820 Cherry St, Portland, OR 97035" +255321,AA Batteries (4-pack),1,3.84,09/26/19 17:02,"259 13th St, San Francisco, CA 94016" +255322,ThinkPad Laptop,1,999.99,09/14/19 10:23,"559 Jackson St, San Francisco, CA 94016" +255323,Apple Airpods Headphones,1,150,09/14/19 07:40,"179 Elm St, Austin, TX 73301" +255324,Apple Airpods Headphones,1,150,09/11/19 12:27,"536 Jackson St, Seattle, WA 98101" +255325,Wired Headphones,1,11.99,09/12/19 13:19,"780 Hickory St, Atlanta, GA 30301" +255326,AAA Batteries (4-pack),1,2.99,09/18/19 11:16,"690 River St, San Francisco, CA 94016" +255327,USB-C Charging Cable,1,11.95,09/08/19 15:29,"55 Lakeview St, Portland, ME 04101" +255328,USB-C Charging Cable,1,11.95,09/25/19 18:09,"811 1st St, Los Angeles, CA 90001" +255329,Flatscreen TV,1,300,09/02/19 16:41,"605 11th St, San Francisco, CA 94016" +255330,AAA Batteries (4-pack),1,2.99,09/30/19 13:29,"398 River St, New York City, NY 10001" +255331,iPhone,1,700,09/23/19 15:36,"489 2nd St, New York City, NY 10001" +255332,Flatscreen TV,1,300,09/21/19 20:22,"919 Jackson St, Boston, MA 02215" +255333,AAA Batteries (4-pack),1,2.99,09/29/19 16:22,"877 6th St, New York City, NY 10001" +255334,Bose SoundSport Headphones,1,99.99,09/26/19 17:40,"858 Washington St, Los Angeles, CA 90001" +255335,AA Batteries (4-pack),2,3.84,09/07/19 18:55,"685 Spruce St, Los Angeles, CA 90001" +255336,Flatscreen TV,1,300,09/04/19 17:32,"603 Lakeview St, Austin, TX 73301" +255337,Apple Airpods Headphones,1,150,09/28/19 13:36,"482 10th St, Boston, MA 02215" +255338,USB-C Charging Cable,1,11.95,09/16/19 23:57,"578 Wilson St, New York City, NY 10001" +255339,34in Ultrawide Monitor,1,379.99,09/03/19 14:30,"97 Willow St, New York City, NY 10001" +255340,Apple Airpods Headphones,1,150,09/29/19 22:39,"661 9th St, Boston, MA 02215" +255341,20in Monitor,1,109.99,09/01/19 23:19,"576 10th St, New York City, NY 10001" +255342,USB-C Charging Cable,1,11.95,09/28/19 12:31,"648 Jefferson St, New York City, NY 10001" +255343,USB-C Charging Cable,1,11.95,09/25/19 22:58,"559 Center St, New York City, NY 10001" +255344,AA Batteries (4-pack),1,3.84,09/07/19 06:41,"144 West St, Dallas, TX 75001" +255345,AA Batteries (4-pack),1,3.84,09/15/19 18:10,"938 Chestnut St, San Francisco, CA 94016" +255346,ThinkPad Laptop,1,999.99,09/11/19 20:38,"401 4th St, Seattle, WA 98101" +255347,Lightning Charging Cable,1,14.95,09/09/19 19:33,"801 Park St, Los Angeles, CA 90001" +255348,AAA Batteries (4-pack),1,2.99,09/24/19 10:12,"415 Dogwood St, San Francisco, CA 94016" +255349,Lightning Charging Cable,1,14.95,09/07/19 18:33,"265 Wilson St, San Francisco, CA 94016" +255350,AAA Batteries (4-pack),1,2.99,09/16/19 19:07,"302 Willow St, Atlanta, GA 30301" +255351,Bose SoundSport Headphones,1,99.99,09/30/19 09:30,"245 Maple St, Los Angeles, CA 90001" +255352,AA Batteries (4-pack),1,3.84,09/26/19 15:39,"90 Highland St, San Francisco, CA 94016" +255352,Macbook Pro Laptop,1,1700,09/26/19 15:39,"90 Highland St, San Francisco, CA 94016" +255353,Lightning Charging Cable,1,14.95,09/19/19 15:22,"374 9th St, Dallas, TX 75001" +255354,27in 4K Gaming Monitor,1,389.99,09/23/19 16:59,"975 12th St, Seattle, WA 98101" +255355,AA Batteries (4-pack),1,3.84,09/25/19 20:10,"854 North St, Los Angeles, CA 90001" +255356,Apple Airpods Headphones,1,150,09/22/19 12:21,"258 Lincoln St, New York City, NY 10001" +255357,Wired Headphones,1,11.99,09/13/19 10:22,"615 Lincoln St, Boston, MA 02215" +255358,27in 4K Gaming Monitor,1,389.99,09/10/19 17:55,"922 Park St, Seattle, WA 98101" +255359,Bose SoundSport Headphones,1,99.99,09/07/19 15:47,"11 Pine St, New York City, NY 10001" +255360,34in Ultrawide Monitor,1,379.99,09/26/19 21:04,"362 Main St, Boston, MA 02215" +255361,Wired Headphones,1,11.99,09/25/19 14:46,"181 Jefferson St, Seattle, WA 98101" +255362,AAA Batteries (4-pack),2,2.99,09/11/19 11:22,"41 Lincoln St, Los Angeles, CA 90001" +255363,Apple Airpods Headphones,1,150,09/14/19 21:00,"200 Hickory St, New York City, NY 10001" +255364,Google Phone,1,600,09/14/19 19:50,"620 4th St, San Francisco, CA 94016" +255365,Bose SoundSport Headphones,1,99.99,09/27/19 22:22,"542 7th St, New York City, NY 10001" +255366,Lightning Charging Cable,1,14.95,09/29/19 09:17,"787 9th St, San Francisco, CA 94016" +255367,Macbook Pro Laptop,1,1700,09/02/19 20:43,"67 Center St, Los Angeles, CA 90001" +255368,Bose SoundSport Headphones,1,99.99,09/02/19 18:49,"708 Lincoln St, New York City, NY 10001" +255369,Apple Airpods Headphones,1,150,09/05/19 21:49,"224 West St, Los Angeles, CA 90001" +255370,Lightning Charging Cable,2,14.95,09/21/19 13:21,"469 Main St, San Francisco, CA 94016" +255371,Bose SoundSport Headphones,1,99.99,09/16/19 09:58,"389 West St, New York City, NY 10001" +255372,Bose SoundSport Headphones,1,99.99,09/06/19 00:48,"336 11th St, San Francisco, CA 94016" +255372,AA Batteries (4-pack),1,3.84,09/06/19 00:48,"336 11th St, San Francisco, CA 94016" +255373,Apple Airpods Headphones,1,150,09/04/19 15:17,"412 4th St, Los Angeles, CA 90001" +255374,Lightning Charging Cable,1,14.95,09/30/19 19:24,"938 10th St, San Francisco, CA 94016" +255375,Lightning Charging Cable,1,14.95,09/03/19 14:05,"45 8th St, Los Angeles, CA 90001" +255376,Wired Headphones,2,11.99,09/26/19 19:25,"245 Chestnut St, Los Angeles, CA 90001" +255377,ThinkPad Laptop,1,999.99,09/09/19 10:22,"645 1st St, New York City, NY 10001" +255378,Apple Airpods Headphones,1,150,09/07/19 20:29,"94 6th St, Portland, OR 97035" +255379,AA Batteries (4-pack),1,3.84,09/05/19 09:13,"746 Lakeview St, Atlanta, GA 30301" +255380,USB-C Charging Cable,1,11.95,09/05/19 10:54,"750 Johnson St, San Francisco, CA 94016" +255381,ThinkPad Laptop,1,999.99,09/05/19 23:23,"187 Maple St, Portland, OR 97035" +255382,Google Phone,1,600,09/15/19 13:01,"317 Lake St, Seattle, WA 98101" +255383,Apple Airpods Headphones,1,150,09/21/19 11:25,"527 13th St, San Francisco, CA 94016" +,,,,, +255384,27in 4K Gaming Monitor,1,389.99,09/09/19 15:56,"176 Center St, Los Angeles, CA 90001" +255385,Wired Headphones,2,11.99,09/04/19 07:29,"829 12th St, Los Angeles, CA 90001" +255386,Wired Headphones,1,11.99,09/07/19 08:48,"621 8th St, Los Angeles, CA 90001" +255387,Flatscreen TV,1,300,09/26/19 18:09,"860 Spruce St, San Francisco, CA 94016" +255388,iPhone,1,700,09/13/19 08:21,"927 Wilson St, Boston, MA 02215" +255389,AAA Batteries (4-pack),1,2.99,09/13/19 11:02,"28 9th St, Boston, MA 02215" +255390,Flatscreen TV,1,300,09/12/19 11:37,"590 Lincoln St, Portland, OR 97035" +255391,20in Monitor,1,109.99,09/15/19 11:29,"888 6th St, Portland, OR 97035" +255392,Lightning Charging Cable,1,14.95,09/27/19 15:25,"746 Ridge St, Atlanta, GA 30301" +255393,27in FHD Monitor,1,149.99,09/30/19 17:54,"963 6th St, Los Angeles, CA 90001" +255394,Bose SoundSport Headphones,1,99.99,09/30/19 19:23,"938 Park St, San Francisco, CA 94016" +255395,AA Batteries (4-pack),2,3.84,09/01/19 08:52,"688 Hill St, Los Angeles, CA 90001" +255396,iPhone,1,700,09/24/19 18:53,"406 Center St, San Francisco, CA 94016" +255397,Lightning Charging Cable,1,14.95,09/14/19 20:41,"734 Jefferson St, Los Angeles, CA 90001" +255398,Wired Headphones,1,11.99,09/11/19 22:15,"919 Walnut St, San Francisco, CA 94016" +255399,AAA Batteries (4-pack),2,2.99,09/28/19 21:25,"434 13th St, Los Angeles, CA 90001" +255400,Apple Airpods Headphones,2,150,09/05/19 19:44,"680 Cherry St, San Francisco, CA 94016" +255401,AA Batteries (4-pack),1,3.84,09/13/19 21:14,"469 14th St, Atlanta, GA 30301" +255402,AA Batteries (4-pack),1,3.84,09/19/19 15:40,"181 Maple St, Boston, MA 02215" +255403,34in Ultrawide Monitor,1,379.99,09/25/19 02:03,"641 Johnson St, Portland, OR 97035" +255404,USB-C Charging Cable,1,11.95,09/24/19 19:07,"180 Sunset St, Dallas, TX 75001" +255405,Lightning Charging Cable,2,14.95,09/11/19 10:07,"704 Center St, Los Angeles, CA 90001" +255406,Apple Airpods Headphones,1,150,09/18/19 16:01,"479 2nd St, New York City, NY 10001" +255407,Lightning Charging Cable,1,14.95,09/23/19 16:07,"116 Church St, Portland, OR 97035" +255408,Bose SoundSport Headphones,1,99.99,09/01/19 19:28,"832 Willow St, San Francisco, CA 94016" +255409,27in FHD Monitor,1,149.99,09/16/19 17:38,"324 Washington St, Seattle, WA 98101" +255410,Apple Airpods Headphones,1,150,09/24/19 23:10,"618 Maple St, Dallas, TX 75001" +255411,Macbook Pro Laptop,1,1700,09/17/19 01:20,"417 Lakeview St, Boston, MA 02215" +255412,Lightning Charging Cable,1,14.95,09/19/19 00:19,"138 Madison St, Austin, TX 73301" +255413,Lightning Charging Cable,1,14.95,09/03/19 18:29,"150 Sunset St, Seattle, WA 98101" +255414,27in 4K Gaming Monitor,1,389.99,09/04/19 13:04,"558 Lake St, Los Angeles, CA 90001" +255415,Bose SoundSport Headphones,1,99.99,09/02/19 16:17,"610 8th St, Dallas, TX 75001" +255416,AAA Batteries (4-pack),3,2.99,09/26/19 22:23,"917 Elm St, Los Angeles, CA 90001" +255417,Apple Airpods Headphones,1,150,09/02/19 02:23,"550 10th St, New York City, NY 10001" +255418,Lightning Charging Cable,1,14.95,09/12/19 16:14,"452 Maple St, New York City, NY 10001" +255419,AA Batteries (4-pack),1,3.84,09/21/19 09:48,"496 Chestnut St, San Francisco, CA 94016" +255420,Apple Airpods Headphones,1,150,09/05/19 08:36,"655 Church St, Boston, MA 02215" +255421,34in Ultrawide Monitor,1,379.99,09/29/19 15:09,"434 Hill St, San Francisco, CA 94016" +255422,AA Batteries (4-pack),2,3.84,09/04/19 15:29,"205 Sunset St, San Francisco, CA 94016" +255423,Wired Headphones,1,11.99,09/27/19 22:43,"436 Hill St, New York City, NY 10001" +255424,Wired Headphones,1,11.99,09/30/19 23:19,"548 Forest St, Los Angeles, CA 90001" +255425,AAA Batteries (4-pack),2,2.99,09/28/19 00:10,"379 Adams St, Austin, TX 73301" +255426,AA Batteries (4-pack),1,3.84,09/02/19 22:16,"560 River St, Dallas, TX 75001" +255427,20in Monitor,1,109.99,09/21/19 07:55,"391 Chestnut St, Los Angeles, CA 90001" +255428,Wired Headphones,1,11.99,09/11/19 21:32,"151 Spruce St, Dallas, TX 75001" +255429,27in 4K Gaming Monitor,1,389.99,09/19/19 07:19,"52 Hill St, San Francisco, CA 94016" +255430,Lightning Charging Cable,1,14.95,09/18/19 02:06,"997 Elm St, New York City, NY 10001" +255431,Google Phone,1,600,09/24/19 20:36,"492 Adams St, Los Angeles, CA 90001" +255431,USB-C Charging Cable,1,11.95,09/24/19 20:36,"492 Adams St, Los Angeles, CA 90001" +255432,AAA Batteries (4-pack),1,2.99,09/05/19 14:10,"499 7th St, Seattle, WA 98101" +255433,Wired Headphones,1,11.99,09/15/19 12:06,"407 North St, Boston, MA 02215" +255434,AAA Batteries (4-pack),1,2.99,09/25/19 08:13,"299 Forest St, Los Angeles, CA 90001" +255435,Google Phone,1,600,09/22/19 09:43,"485 Highland St, New York City, NY 10001" +255436,34in Ultrawide Monitor,1,379.99,09/16/19 09:07,"879 14th St, Portland, OR 97035" +255437,USB-C Charging Cable,1,11.95,09/30/19 07:21,"975 Park St, New York City, NY 10001" +255438,USB-C Charging Cable,1,11.95,09/14/19 10:18,"861 Lincoln St, Seattle, WA 98101" +255439,Bose SoundSport Headphones,1,99.99,09/08/19 07:29,"910 Hill St, San Francisco, CA 94016" +255440,Apple Airpods Headphones,1,150,09/30/19 10:00,"690 Wilson St, San Francisco, CA 94016" +255441,Apple Airpods Headphones,1,150,09/10/19 23:45,"840 South St, San Francisco, CA 94016" +255442,Lightning Charging Cable,1,14.95,09/13/19 20:32,"174 Park St, Portland, OR 97035" +255443,AAA Batteries (4-pack),1,2.99,09/18/19 15:24,"257 Willow St, Austin, TX 73301" +255444,Lightning Charging Cable,1,14.95,09/27/19 21:34,"437 Madison St, Boston, MA 02215" +255444,Wired Headphones,1,11.99,09/27/19 21:34,"437 Madison St, Boston, MA 02215" +255445,27in 4K Gaming Monitor,1,389.99,09/27/19 10:31,"986 Lincoln St, Seattle, WA 98101" +255446,Bose SoundSport Headphones,1,99.99,09/21/19 12:40,"184 10th St, Dallas, TX 75001" +255447,AAA Batteries (4-pack),1,2.99,09/24/19 13:01,"348 12th St, Portland, OR 97035" +255448,Apple Airpods Headphones,1,150,09/28/19 09:50,"748 Meadow St, Boston, MA 02215" +255449,AAA Batteries (4-pack),1,2.99,09/08/19 18:31,"984 Maple St, Seattle, WA 98101" +255450,Lightning Charging Cable,1,14.95,09/23/19 20:44,"762 Church St, Portland, OR 97035" +255451,34in Ultrawide Monitor,1,379.99,09/08/19 23:33,"728 Cedar St, Boston, MA 02215" +255452,Bose SoundSport Headphones,1,99.99,09/24/19 11:55,"912 5th St, San Francisco, CA 94016" +255453,Lightning Charging Cable,1,14.95,09/21/19 13:21,"922 7th St, Boston, MA 02215" +255454,iPhone,1,700,09/04/19 13:21,"665 4th St, New York City, NY 10001" +255455,iPhone,1,700,09/22/19 08:51,"748 7th St, San Francisco, CA 94016" +255456,Flatscreen TV,1,300,09/06/19 23:07,"691 Church St, Austin, TX 73301" +255457,ThinkPad Laptop,1,999.99,09/27/19 18:14,"993 Ridge St, San Francisco, CA 94016" +255458,USB-C Charging Cable,1,11.95,09/11/19 23:25,"177 Adams St, Boston, MA 02215" +255459,Google Phone,1,600,09/14/19 21:02,"141 Madison St, Portland, OR 97035" +255460,Wired Headphones,1,11.99,09/23/19 06:08,"280 Washington St, San Francisco, CA 94016" +255461,USB-C Charging Cable,1,11.95,09/23/19 14:19,"210 Willow St, Dallas, TX 75001" +255462,Bose SoundSport Headphones,1,99.99,09/07/19 09:50,"955 Highland St, Portland, OR 97035" +255463,Lightning Charging Cable,1,14.95,09/14/19 19:58,"185 10th St, Los Angeles, CA 90001" +255464,AA Batteries (4-pack),1,3.84,09/15/19 18:31,"178 1st St, New York City, NY 10001" +255465,Wired Headphones,1,11.99,09/20/19 19:41,"949 1st St, New York City, NY 10001" +255466,Bose SoundSport Headphones,1,99.99,09/17/19 14:02,"702 2nd St, San Francisco, CA 94016" +255467,USB-C Charging Cable,2,11.95,09/06/19 15:39,"640 Cedar St, Austin, TX 73301" +255468,USB-C Charging Cable,1,11.95,09/02/19 12:37,"670 Pine St, Boston, MA 02215" +255469,USB-C Charging Cable,1,11.95,09/03/19 03:00,"586 North St, Los Angeles, CA 90001" +255470,iPhone,1,700,09/05/19 23:50,"116 Elm St, Portland, OR 97035" +255471,Lightning Charging Cable,1,14.95,09/15/19 23:11,"392 Hill St, New York City, NY 10001" +255472,Bose SoundSport Headphones,1,99.99,09/27/19 15:46,"747 8th St, San Francisco, CA 94016" +255473,27in FHD Monitor,1,149.99,09/22/19 16:16,"312 Meadow St, Portland, OR 97035" +255474,USB-C Charging Cable,1,11.95,09/19/19 17:41,"756 2nd St, New York City, NY 10001" +255475,AA Batteries (4-pack),1,3.84,09/29/19 12:11,"538 Park St, New York City, NY 10001" +255476,Wired Headphones,1,11.99,09/05/19 11:46,"454 Hill St, New York City, NY 10001" +255477,27in 4K Gaming Monitor,1,389.99,09/09/19 16:04,"811 14th St, San Francisco, CA 94016" +255478,Apple Airpods Headphones,1,150,09/21/19 15:14,"471 Forest St, Austin, TX 73301" +255479,AAA Batteries (4-pack),4,2.99,09/15/19 08:45,"222 14th St, San Francisco, CA 94016" +255480,USB-C Charging Cable,1,11.95,09/27/19 22:10,"939 Church St, Austin, TX 73301" +255481,27in FHD Monitor,1,149.99,09/12/19 21:07,"398 Jefferson St, New York City, NY 10001" +255482,Flatscreen TV,1,300,09/18/19 17:48,"609 4th St, Los Angeles, CA 90001" +255483,Wired Headphones,1,11.99,09/29/19 14:27,"439 Lake St, Atlanta, GA 30301" +255484,Bose SoundSport Headphones,1,99.99,09/27/19 21:38,"276 West St, Los Angeles, CA 90001" +255485,LG Dryer,1,600.0,09/08/19 22:16,"555 2nd St, Boston, MA 02215" +255486,USB-C Charging Cable,2,11.95,09/18/19 12:13,"276 Maple St, San Francisco, CA 94016" +255487,AAA Batteries (4-pack),3,2.99,09/10/19 13:10,"744 7th St, Boston, MA 02215" +255488,AAA Batteries (4-pack),1,2.99,09/14/19 10:42,"426 2nd St, Los Angeles, CA 90001" +255489,Apple Airpods Headphones,1,150,09/13/19 19:44,"119 10th St, Los Angeles, CA 90001" +255490,Macbook Pro Laptop,1,1700,09/26/19 18:59,"263 Center St, Los Angeles, CA 90001" +255491,AAA Batteries (4-pack),1,2.99,09/18/19 10:59,"439 Sunset St, New York City, NY 10001" +255492,Lightning Charging Cable,1,14.95,09/28/19 07:37,"551 Sunset St, Dallas, TX 75001" +255493,34in Ultrawide Monitor,1,379.99,09/18/19 13:54,"868 14th St, Seattle, WA 98101" +255494,AA Batteries (4-pack),1,3.84,09/15/19 13:36,"552 Hill St, Portland, OR 97035" +255495,Lightning Charging Cable,1,14.95,09/14/19 12:26,"562 Lake St, Atlanta, GA 30301" +255496,27in FHD Monitor,1,149.99,09/25/19 20:32,"605 North St, San Francisco, CA 94016" +255497,Macbook Pro Laptop,1,1700,09/06/19 17:39,"304 River St, San Francisco, CA 94016" +255498,USB-C Charging Cable,1,11.95,09/03/19 23:48,"242 Forest St, New York City, NY 10001" +255499,ThinkPad Laptop,1,999.99,09/18/19 11:20,"465 4th St, Los Angeles, CA 90001" +255500,Bose SoundSport Headphones,1,99.99,09/16/19 15:18,"976 Sunset St, Los Angeles, CA 90001" +255501,Bose SoundSport Headphones,1,99.99,09/26/19 13:47,"961 9th St, Boston, MA 02215" +255502,Lightning Charging Cable,1,14.95,09/24/19 13:36,"675 14th St, Atlanta, GA 30301" +255503,Apple Airpods Headphones,1,150,09/21/19 08:33,"439 Center St, Portland, OR 97035" +255504,AAA Batteries (4-pack),2,2.99,09/09/19 12:18,"686 2nd St, San Francisco, CA 94016" +255505,USB-C Charging Cable,1,11.95,09/17/19 16:06,"894 Forest St, Portland, ME 04101" +255506,Vareebadd Phone,1,400,09/19/19 09:04,"30 Dogwood St, Austin, TX 73301" +255507,AA Batteries (4-pack),1,3.84,09/02/19 08:59,"190 Wilson St, Boston, MA 02215" +255508,USB-C Charging Cable,1,11.95,09/03/19 16:34,"705 Maple St, San Francisco, CA 94016" +255509,Wired Headphones,1,11.99,09/20/19 07:58,"313 Willow St, Portland, OR 97035" +255510,Lightning Charging Cable,1,14.95,09/21/19 01:22,"93 Madison St, Austin, TX 73301" +255511,Apple Airpods Headphones,1,150,09/27/19 11:50,"704 Hill St, Seattle, WA 98101" +255512,LG Dryer,1,600.0,09/05/19 19:13,"280 1st St, Seattle, WA 98101" +255513,AA Batteries (4-pack),1,3.84,09/21/19 13:04,"588 River St, Seattle, WA 98101" +255514,iPhone,1,700,09/26/19 07:46,"445 South St, New York City, NY 10001" +255515,Lightning Charging Cable,1,14.95,09/30/19 20:47,"495 8th St, San Francisco, CA 94016" +255516,Bose SoundSport Headphones,1,99.99,09/03/19 12:50,"909 Spruce St, Dallas, TX 75001" +255517,AAA Batteries (4-pack),1,2.99,09/19/19 07:22,"497 Highland St, Dallas, TX 75001" +255518,AA Batteries (4-pack),1,3.84,09/06/19 19:13,"17 Lakeview St, Seattle, WA 98101" +255519,Google Phone,1,600,09/04/19 13:13,"858 North St, Portland, OR 97035" +255520,AA Batteries (4-pack),1,3.84,09/11/19 13:16,"538 Madison St, Atlanta, GA 30301" +255521,20in Monitor,1,109.99,09/18/19 05:14,"984 10th St, New York City, NY 10001" +255522,AA Batteries (4-pack),4,3.84,09/23/19 18:46,"311 Wilson St, New York City, NY 10001" +255523,27in 4K Gaming Monitor,1,389.99,09/08/19 08:45,"974 6th St, San Francisco, CA 94016" +255524,Lightning Charging Cable,2,14.95,09/05/19 17:13,"360 8th St, San Francisco, CA 94016" +255525,27in FHD Monitor,1,149.99,09/13/19 20:12,"318 Hill St, Los Angeles, CA 90001" +255526,34in Ultrawide Monitor,1,379.99,09/04/19 00:14,"970 Sunset St, San Francisco, CA 94016" +255526,LG Washing Machine,1,600.0,09/04/19 00:14,"970 Sunset St, San Francisco, CA 94016" +255527,Google Phone,1,600,09/17/19 17:48,"110 Walnut St, San Francisco, CA 94016" +255527,Bose SoundSport Headphones,1,99.99,09/17/19 17:48,"110 Walnut St, San Francisco, CA 94016" +255528,Flatscreen TV,1,300,09/24/19 16:42,"445 Adams St, Seattle, WA 98101" +255529,Wired Headphones,1,11.99,09/21/19 18:46,"633 Elm St, Portland, OR 97035" +255530,USB-C Charging Cable,2,11.95,09/01/19 20:47,"141 2nd St, San Francisco, CA 94016" +255531,Apple Airpods Headphones,1,150,09/07/19 22:38,"8 5th St, Boston, MA 02215" +255532,27in 4K Gaming Monitor,1,389.99,09/21/19 18:47,"476 14th St, Atlanta, GA 30301" +255533,USB-C Charging Cable,1,11.95,09/20/19 12:45,"650 Center St, New York City, NY 10001" +255534,Apple Airpods Headphones,1,150,09/28/19 21:24,"438 Dogwood St, Los Angeles, CA 90001" +255535,Lightning Charging Cable,1,14.95,09/29/19 21:16,"72 Walnut St, Austin, TX 73301" +255536,USB-C Charging Cable,1,11.95,09/16/19 23:27,"237 Willow St, San Francisco, CA 94016" +255537,AA Batteries (4-pack),1,3.84,09/19/19 17:27,"641 10th St, New York City, NY 10001" +255538,AA Batteries (4-pack),1,3.84,09/08/19 13:53,"697 Johnson St, Boston, MA 02215" +255539,Vareebadd Phone,1,400,09/03/19 17:10,"828 Meadow St, Dallas, TX 75001" +255539,Bose SoundSport Headphones,1,99.99,09/03/19 17:10,"828 Meadow St, Dallas, TX 75001" +255540,ThinkPad Laptop,1,999.99,09/22/19 14:35,"375 11th St, Seattle, WA 98101" +255541,27in 4K Gaming Monitor,1,389.99,09/11/19 22:43,"850 River St, Boston, MA 02215" +255542,USB-C Charging Cable,1,11.95,09/28/19 15:38,"440 13th St, Seattle, WA 98101" +255543,iPhone,1,700,09/20/19 15:42,"811 Johnson St, San Francisco, CA 94016" +255544,AA Batteries (4-pack),1,3.84,09/23/19 12:20,"668 Johnson St, San Francisco, CA 94016" +255545,iPhone,1,700,09/28/19 11:19,"433 Main St, San Francisco, CA 94016" +255546,AAA Batteries (4-pack),1,2.99,09/23/19 15:09,"984 Willow St, New York City, NY 10001" +255547,Bose SoundSport Headphones,1,99.99,09/13/19 22:22,"758 10th St, Portland, OR 97035" +255548,Apple Airpods Headphones,1,150,09/08/19 22:57,"617 Lakeview St, New York City, NY 10001" +255549,USB-C Charging Cable,1,11.95,09/04/19 17:56,"50 West St, New York City, NY 10001" +255550,Wired Headphones,1,11.99,09/21/19 07:20,"865 Jefferson St, San Francisco, CA 94016" +255551,Bose SoundSport Headphones,1,99.99,09/05/19 23:04,"17 Washington St, San Francisco, CA 94016" +255552,Lightning Charging Cable,1,14.95,09/25/19 15:52,"750 Washington St, New York City, NY 10001" +255553,Lightning Charging Cable,1,14.95,09/18/19 18:51,"367 7th St, San Francisco, CA 94016" +255554,AA Batteries (4-pack),1,3.84,09/25/19 18:45,"666 River St, San Francisco, CA 94016" +255555,AAA Batteries (4-pack),2,2.99,09/21/19 17:57,"183 7th St, Los Angeles, CA 90001" +255556,AA Batteries (4-pack),1,3.84,09/21/19 20:18,"256 Jackson St, San Francisco, CA 94016" +255557,Vareebadd Phone,1,400,09/09/19 10:44,"336 6th St, San Francisco, CA 94016" +255558,Bose SoundSport Headphones,1,99.99,09/04/19 22:41,"924 10th St, Boston, MA 02215" +255559,ThinkPad Laptop,1,999.99,09/04/19 21:44,"994 River St, Boston, MA 02215" +255560,Google Phone,1,600,09/08/19 20:40,"523 Main St, San Francisco, CA 94016" +255561,AAA Batteries (4-pack),1,2.99,09/18/19 15:24,"804 West St, Atlanta, GA 30301" +255562,27in 4K Gaming Monitor,1,389.99,09/28/19 09:06,"883 Cedar St, San Francisco, CA 94016" +255563,USB-C Charging Cable,1,11.95,09/24/19 00:18,"593 10th St, Austin, TX 73301" +255564,Apple Airpods Headphones,1,150,09/17/19 01:48,"212 10th St, Boston, MA 02215" +255565,Apple Airpods Headphones,1,150,09/29/19 00:14,"791 South St, San Francisco, CA 94016" +255566,Lightning Charging Cable,1,14.95,09/19/19 11:49,"59 Lake St, New York City, NY 10001" +255567,Lightning Charging Cable,1,14.95,09/23/19 18:53,"2 Maple St, Atlanta, GA 30301" +255568,Apple Airpods Headphones,1,150,09/10/19 21:47,"907 4th St, Los Angeles, CA 90001" +255569,Apple Airpods Headphones,1,150,09/30/19 01:18,"636 Jefferson St, Portland, OR 97035" +255570,AAA Batteries (4-pack),2,2.99,09/01/19 10:41,"184 9th St, New York City, NY 10001" +255571,AA Batteries (4-pack),1,3.84,09/23/19 19:26,"465 Walnut St, Portland, OR 97035" +255572,AA Batteries (4-pack),1,3.84,09/26/19 14:08,"512 4th St, Los Angeles, CA 90001" +255573,USB-C Charging Cable,1,11.95,09/22/19 21:20,"143 7th St, San Francisco, CA 94016" +255574,34in Ultrawide Monitor,1,379.99,09/06/19 19:06,"305 8th St, Dallas, TX 75001" +255575,iPhone,1,700,09/15/19 21:51,"412 Hill St, New York City, NY 10001" +255576,Google Phone,1,600,09/14/19 15:37,"543 10th St, Atlanta, GA 30301" +255577,Lightning Charging Cable,1,14.95,09/09/19 00:48,"41 Adams St, Atlanta, GA 30301" +255578,AAA Batteries (4-pack),2,2.99,09/20/19 17:24,"71 Pine St, Los Angeles, CA 90001" +255579,AA Batteries (4-pack),3,3.84,09/06/19 08:44,"889 Ridge St, Boston, MA 02215" +255580,Wired Headphones,1,11.99,09/13/19 15:46,"842 Johnson St, Atlanta, GA 30301" +255581,27in FHD Monitor,1,149.99,09/13/19 09:53,"150 Willow St, New York City, NY 10001" +255582,Apple Airpods Headphones,1,150,09/08/19 16:45,"602 11th St, San Francisco, CA 94016" +255583,iPhone,1,700,09/16/19 19:24,"977 Wilson St, Atlanta, GA 30301" +255584,Wired Headphones,1,11.99,09/27/19 13:16,"815 Willow St, Portland, OR 97035" +255585,iPhone,1,700,09/09/19 19:06,"592 4th St, Los Angeles, CA 90001" +255586,USB-C Charging Cable,1,11.95,09/20/19 18:51,"547 13th St, San Francisco, CA 94016" +255587,34in Ultrawide Monitor,1,379.99,09/26/19 00:23,"387 Cedar St, Los Angeles, CA 90001" +255588,Lightning Charging Cable,1,14.95,09/13/19 09:58,"358 10th St, Austin, TX 73301" +255589,Apple Airpods Headphones,1,150,09/20/19 01:07,"392 13th St, Boston, MA 02215" +255590,AAA Batteries (4-pack),1,2.99,09/22/19 10:45,"597 Adams St, Portland, OR 97035" +255591,27in 4K Gaming Monitor,1,389.99,09/09/19 17:19,"470 Forest St, New York City, NY 10001" +255591,Macbook Pro Laptop,1,1700,09/09/19 17:19,"470 Forest St, New York City, NY 10001" +255592,AA Batteries (4-pack),1,3.84,09/11/19 19:35,"712 Cherry St, Seattle, WA 98101" +255593,Google Phone,1,600,09/24/19 15:41,"912 Wilson St, Boston, MA 02215" +255594,Lightning Charging Cable,1,14.95,09/05/19 19:17,"569 Chestnut St, San Francisco, CA 94016" +255595,Google Phone,1,600,09/12/19 10:32,"698 Lake St, Portland, OR 97035" +255596,USB-C Charging Cable,3,11.95,09/01/19 21:58,"133 9th St, Seattle, WA 98101" +255597,Wired Headphones,1,11.99,09/02/19 10:24,"563 Lincoln St, New York City, NY 10001" +255598,AAA Batteries (4-pack),1,2.99,09/27/19 21:15,"241 Sunset St, San Francisco, CA 94016" +255599,AAA Batteries (4-pack),1,2.99,09/28/19 18:19,"452 1st St, New York City, NY 10001" +255600,iPhone,1,700,09/26/19 13:09,"184 Dogwood St, Seattle, WA 98101" +255601,Wired Headphones,2,11.99,09/23/19 16:47,"930 5th St, Los Angeles, CA 90001" +255602,AAA Batteries (4-pack),1,2.99,09/14/19 14:46,"880 Walnut St, Portland, ME 04101" +255603,Apple Airpods Headphones,1,150,09/06/19 09:37,"16 Jackson St, Los Angeles, CA 90001" +255604,Apple Airpods Headphones,1,150,09/20/19 19:50,"504 Ridge St, Atlanta, GA 30301" +255605,Lightning Charging Cable,2,14.95,09/13/19 23:00,"684 Washington St, New York City, NY 10001" +255606,20in Monitor,1,109.99,09/13/19 23:31,"675 Sunset St, Austin, TX 73301" +255607,27in 4K Gaming Monitor,1,389.99,09/07/19 12:02,"641 Church St, San Francisco, CA 94016" +255608,Flatscreen TV,1,300,09/29/19 11:33,"955 Sunset St, San Francisco, CA 94016" +255609,Lightning Charging Cable,1,14.95,09/05/19 19:58,"242 Johnson St, Los Angeles, CA 90001" +255610,Bose SoundSport Headphones,1,99.99,09/01/19 18:43,"407 Madison St, Seattle, WA 98101" +255611,Bose SoundSport Headphones,1,99.99,09/04/19 08:58,"628 11th St, San Francisco, CA 94016" +255612,Wired Headphones,1,11.99,09/10/19 17:31,"476 Spruce St, New York City, NY 10001" +255613,Wired Headphones,1,11.99,09/02/19 19:34,"55 Jefferson St, Atlanta, GA 30301" +255614,ThinkPad Laptop,1,999.99,09/03/19 15:57,"825 4th St, Boston, MA 02215" +255615,AAA Batteries (4-pack),8,2.99,09/05/19 23:25,"11 5th St, Dallas, TX 75001" +255616,USB-C Charging Cable,1,11.95,09/06/19 10:56,"615 Chestnut St, San Francisco, CA 94016" +255617,Wired Headphones,1,11.99,09/14/19 12:05,"317 Jackson St, Austin, TX 73301" +255618,AAA Batteries (4-pack),1,2.99,09/23/19 13:59,"604 Main St, San Francisco, CA 94016" +255619,AAA Batteries (4-pack),3,2.99,09/03/19 12:14,"195 12th St, Atlanta, GA 30301" +255620,Wired Headphones,1,11.99,09/29/19 07:16,"825 Hickory St, New York City, NY 10001" +255621,AA Batteries (4-pack),1,3.84,09/02/19 20:43,"319 4th St, Los Angeles, CA 90001" +255622,Wired Headphones,1,11.99,09/29/19 21:42,"725 9th St, Austin, TX 73301" +255623,AA Batteries (4-pack),2,3.84,09/27/19 07:37,"589 Walnut St, New York City, NY 10001" +255624,USB-C Charging Cable,1,11.95,09/21/19 14:45,"385 Meadow St, Dallas, TX 75001" +255625,AA Batteries (4-pack),1,3.84,09/23/19 17:42,"414 1st St, Portland, OR 97035" +255626,USB-C Charging Cable,1,11.95,09/05/19 08:10,"987 7th St, Los Angeles, CA 90001" +255627,AA Batteries (4-pack),1,3.84,09/14/19 13:14,"28 Meadow St, San Francisco, CA 94016" +255628,Bose SoundSport Headphones,1,99.99,09/22/19 11:59,"10 Elm St, Atlanta, GA 30301" +255629,AA Batteries (4-pack),1,3.84,09/10/19 00:35,"427 2nd St, Atlanta, GA 30301" +255630,USB-C Charging Cable,1,11.95,09/16/19 10:00,"655 Wilson St, Austin, TX 73301" +255631,AA Batteries (4-pack),1,3.84,09/21/19 18:25,"827 6th St, Dallas, TX 75001" +255632,Wired Headphones,1,11.99,09/05/19 18:49,"567 Hill St, San Francisco, CA 94016" +255633,27in 4K Gaming Monitor,1,389.99,09/16/19 19:47,"746 14th St, Portland, OR 97035" +255634,Lightning Charging Cable,1,14.95,09/26/19 09:30,"42 6th St, Los Angeles, CA 90001" +255635,Apple Airpods Headphones,1,150,09/06/19 12:02,"563 Hickory St, New York City, NY 10001" +255636,Flatscreen TV,1,300,09/02/19 14:15,"576 Walnut St, San Francisco, CA 94016" +255637,Apple Airpods Headphones,1,150,09/09/19 00:28,"280 Maple St, Dallas, TX 75001" +255638,Lightning Charging Cable,1,14.95,09/19/19 09:36,"320 6th St, Seattle, WA 98101" +255639,Lightning Charging Cable,1,14.95,09/10/19 16:21,"549 Willow St, Los Angeles, CA 90001" +255640,AAA Batteries (4-pack),1,2.99,09/08/19 14:33,"682 Cedar St, New York City, NY 10001" +255641,AA Batteries (4-pack),1,3.84,09/22/19 15:34,"113 9th St, San Francisco, CA 94016" +255642,Bose SoundSport Headphones,1,99.99,09/06/19 06:59,"858 Pine St, Los Angeles, CA 90001" +255643,ThinkPad Laptop,1,999.99,09/08/19 22:23,"425 Hickory St, Austin, TX 73301" +255644,Wired Headphones,1,11.99,09/30/19 14:37,"309 5th St, Los Angeles, CA 90001" +255645,iPhone,1,700,09/04/19 07:46,"985 Ridge St, Los Angeles, CA 90001" +255646,AAA Batteries (4-pack),1,2.99,09/13/19 12:03,"678 Jefferson St, Los Angeles, CA 90001" +255647,Lightning Charging Cable,1,14.95,09/12/19 07:23,"8 River St, Los Angeles, CA 90001" +255648,Wired Headphones,1,11.99,09/04/19 19:41,"50 Cedar St, San Francisco, CA 94016" +255649,Wired Headphones,1,11.99,09/04/19 19:30,"946 North St, Boston, MA 02215" +255650,USB-C Charging Cable,2,11.95,09/22/19 22:19,"190 Church St, Los Angeles, CA 90001" +255651,27in 4K Gaming Monitor,1,389.99,09/01/19 20:11,"508 7th St, Atlanta, GA 30301" +255652,iPhone,1,700,09/09/19 22:38,"134 Elm St, Seattle, WA 98101" +255653,AAA Batteries (4-pack),1,2.99,09/03/19 09:43,"350 1st St, Seattle, WA 98101" +255654,Lightning Charging Cable,1,14.95,09/07/19 18:39,"269 Hickory St, Los Angeles, CA 90001" +255655,34in Ultrawide Monitor,1,379.99,09/08/19 11:22,"929 2nd St, New York City, NY 10001" +255656,Flatscreen TV,1,300,09/25/19 10:46,"584 Dogwood St, Boston, MA 02215" +255657,20in Monitor,1,109.99,09/10/19 19:16,"927 11th St, San Francisco, CA 94016" +255658,Lightning Charging Cable,1,14.95,09/19/19 15:10,"432 Lakeview St, Dallas, TX 75001" +255659,AA Batteries (4-pack),1,3.84,09/21/19 15:19,"228 4th St, San Francisco, CA 94016" +255660,iPhone,1,700,09/18/19 08:47,"750 Forest St, New York City, NY 10001" +255661,Apple Airpods Headphones,1,150,09/11/19 12:22,"9 12th St, Atlanta, GA 30301" +255662,AAA Batteries (4-pack),2,2.99,09/10/19 16:53,"275 Jackson St, Los Angeles, CA 90001" +255663,USB-C Charging Cable,1,11.95,09/06/19 18:07,"345 Park St, Dallas, TX 75001" +255664,Wired Headphones,1,11.99,09/14/19 20:49,"175 5th St, Austin, TX 73301" +255665,USB-C Charging Cable,1,11.95,09/19/19 07:09,"577 Madison St, Atlanta, GA 30301" +255666,Bose SoundSport Headphones,1,99.99,09/26/19 10:21,"304 Maple St, Los Angeles, CA 90001" +255667,USB-C Charging Cable,1,11.95,09/23/19 18:39,"462 9th St, Los Angeles, CA 90001" +255668,AA Batteries (4-pack),1,3.84,09/02/19 12:04,"540 14th St, Los Angeles, CA 90001" +255669,20in Monitor,1,109.99,09/11/19 15:11,"534 Elm St, San Francisco, CA 94016" +255670,Wired Headphones,2,11.99,09/22/19 09:57,"798 Jefferson St, Portland, OR 97035" +255671,20in Monitor,1,109.99,09/20/19 17:50,"949 9th St, New York City, NY 10001" +255672,AAA Batteries (4-pack),1,2.99,09/26/19 17:36,"41 7th St, New York City, NY 10001" +255673,34in Ultrawide Monitor,1,379.99,09/14/19 15:12,"796 Jackson St, San Francisco, CA 94016" +255674,34in Ultrawide Monitor,1,379.99,09/08/19 19:44,"307 Madison St, Boston, MA 02215" +255675,AA Batteries (4-pack),1,3.84,09/26/19 17:53,"561 West St, Los Angeles, CA 90001" +255676,ThinkPad Laptop,1,999.99,09/17/19 05:26,"873 8th St, San Francisco, CA 94016" +255677,34in Ultrawide Monitor,2,379.99,09/23/19 12:02,"870 Main St, Los Angeles, CA 90001" +255678,Lightning Charging Cable,2,14.95,09/25/19 16:35,"698 River St, Los Angeles, CA 90001" +255679,AAA Batteries (4-pack),2,2.99,09/03/19 14:57,"911 Cedar St, Los Angeles, CA 90001" +255680,AAA Batteries (4-pack),4,2.99,09/30/19 20:25,"45 Wilson St, Atlanta, GA 30301" +255681,Wired Headphones,1,11.99,09/03/19 14:59,"443 Lincoln St, Boston, MA 02215" +255682,27in FHD Monitor,1,149.99,09/18/19 22:42,"475 Meadow St, Portland, OR 97035" +255683,20in Monitor,1,109.99,09/25/19 13:42,"143 13th St, Seattle, WA 98101" +255684,Lightning Charging Cable,1,14.95,09/14/19 12:01,"935 11th St, New York City, NY 10001" +255685,Wired Headphones,1,11.99,09/17/19 17:45,"253 Lake St, Dallas, TX 75001" +255686,Bose SoundSport Headphones,1,99.99,09/18/19 05:18,"420 2nd St, Seattle, WA 98101" +255687,Apple Airpods Headphones,1,150,09/26/19 09:29,"911 Hill St, San Francisco, CA 94016" +255688,AAA Batteries (4-pack),1,2.99,09/06/19 12:26,"129 7th St, San Francisco, CA 94016" +255689,Macbook Pro Laptop,1,1700,09/04/19 11:03,"84 Meadow St, Los Angeles, CA 90001" +255690,USB-C Charging Cable,1,11.95,09/18/19 11:30,"444 4th St, New York City, NY 10001" +255691,27in FHD Monitor,1,149.99,09/04/19 02:11,"842 Jackson St, San Francisco, CA 94016" +255692,34in Ultrawide Monitor,1,379.99,09/28/19 11:28,"763 8th St, Los Angeles, CA 90001" +255693,27in FHD Monitor,1,149.99,09/23/19 09:13,"468 Jackson St, Austin, TX 73301" +255694,Wired Headphones,1,11.99,09/19/19 22:29,"254 8th St, Los Angeles, CA 90001" +255695,Macbook Pro Laptop,1,1700,09/25/19 22:36,"117 Spruce St, Los Angeles, CA 90001" +255695,27in 4K Gaming Monitor,1,389.99,09/25/19 22:36,"117 Spruce St, Los Angeles, CA 90001" +255696,Wired Headphones,1,11.99,09/09/19 07:40,"733 Elm St, Boston, MA 02215" +255697,AA Batteries (4-pack),1,3.84,09/20/19 17:49,"31 Adams St, Portland, OR 97035" +255698,USB-C Charging Cable,1,11.95,09/28/19 19:46,"428 Adams St, Atlanta, GA 30301" +255699,Lightning Charging Cable,1,14.95,09/21/19 23:31,"96 Hill St, Austin, TX 73301" +255700,USB-C Charging Cable,1,11.95,09/29/19 22:29,"932 Chestnut St, Boston, MA 02215" +255701,Wired Headphones,1,11.99,09/01/19 12:11,"90 Main St, San Francisco, CA 94016" +255702,27in 4K Gaming Monitor,1,389.99,09/10/19 12:57,"922 1st St, Boston, MA 02215" +255703,Wired Headphones,1,11.99,09/16/19 19:55,"445 Willow St, Los Angeles, CA 90001" +255704,USB-C Charging Cable,1,11.95,09/20/19 15:04,"9 Meadow St, San Francisco, CA 94016" +255705,Lightning Charging Cable,1,14.95,09/12/19 23:14,"858 Forest St, Boston, MA 02215" +255706,Bose SoundSport Headphones,1,99.99,09/01/19 22:40,"828 Church St, Dallas, TX 75001" +255707,AAA Batteries (4-pack),1,2.99,09/26/19 13:08,"783 12th St, Dallas, TX 75001" +255708,Flatscreen TV,1,300,09/30/19 18:27,"847 South St, Portland, OR 97035" +255709,iPhone,1,700,09/02/19 15:29,"503 5th St, Los Angeles, CA 90001" +255710,Wired Headphones,1,11.99,09/22/19 19:46,"252 Ridge St, San Francisco, CA 94016" +255711,LG Dryer,1,600.0,09/16/19 23:43,"776 Jackson St, Seattle, WA 98101" +255712,USB-C Charging Cable,1,11.95,09/19/19 13:34,"368 Madison St, Seattle, WA 98101" +255713,Wired Headphones,1,11.99,09/26/19 11:39,"490 Chestnut St, New York City, NY 10001" +255714,USB-C Charging Cable,1,11.95,09/13/19 08:39,"746 Cedar St, Los Angeles, CA 90001" +255715,AAA Batteries (4-pack),1,2.99,09/27/19 16:49,"195 6th St, Los Angeles, CA 90001" +255716,AAA Batteries (4-pack),1,2.99,09/08/19 08:26,"438 Chestnut St, Los Angeles, CA 90001" +255717,USB-C Charging Cable,2,11.95,09/07/19 16:46,"632 Cherry St, Dallas, TX 75001" +255718,USB-C Charging Cable,1,11.95,09/27/19 18:56,"249 Meadow St, Los Angeles, CA 90001" +255719,iPhone,1,700,09/22/19 16:48,"575 Lake St, New York City, NY 10001" +255719,Lightning Charging Cable,1,14.95,09/22/19 16:48,"575 Lake St, New York City, NY 10001" +255720,LG Washing Machine,1,600.0,09/02/19 12:10,"8 12th St, Dallas, TX 75001" +255721,Lightning Charging Cable,1,14.95,09/06/19 11:43,"570 5th St, Boston, MA 02215" +255722,AAA Batteries (4-pack),2,2.99,09/07/19 11:54,"911 8th St, San Francisco, CA 94016" +255723,iPhone,1,700,09/20/19 11:32,"780 Park St, Seattle, WA 98101" +255724,AA Batteries (4-pack),1,3.84,09/08/19 16:45,"294 River St, Austin, TX 73301" +255725,Wired Headphones,1,11.99,09/02/19 11:24,"949 Dogwood St, Boston, MA 02215" +255726,34in Ultrawide Monitor,1,379.99,09/10/19 18:41,"413 Park St, New York City, NY 10001" +255727,Apple Airpods Headphones,1,150,09/06/19 19:40,"872 Center St, Austin, TX 73301" +255728,20in Monitor,1,109.99,09/02/19 22:23,"573 Lake St, New York City, NY 10001" +255729,Bose SoundSport Headphones,1,99.99,09/16/19 11:20,"382 2nd St, San Francisco, CA 94016" +255730,Wired Headphones,1,11.99,09/09/19 21:24,"305 South St, Portland, ME 04101" +255731,LG Washing Machine,1,600.0,09/06/19 14:22,"388 Wilson St, Atlanta, GA 30301" +255732,AAA Batteries (4-pack),2,2.99,09/15/19 13:08,"869 West St, Los Angeles, CA 90001" +255733,AAA Batteries (4-pack),1,2.99,09/12/19 11:48,"724 1st St, New York City, NY 10001" +255734,USB-C Charging Cable,1,11.95,09/20/19 16:17,"100 South St, New York City, NY 10001" +255735,Wired Headphones,1,11.99,09/17/19 15:59,"755 Lake St, San Francisco, CA 94016" +255736,Apple Airpods Headphones,1,150,09/12/19 09:53,"673 Church St, Los Angeles, CA 90001" +255737,Apple Airpods Headphones,1,150,09/10/19 17:43,"564 North St, Los Angeles, CA 90001" +255738,Lightning Charging Cable,1,14.95,09/03/19 06:11,"850 12th St, San Francisco, CA 94016" +255739,USB-C Charging Cable,1,11.95,09/15/19 00:22,"164 6th St, San Francisco, CA 94016" +255740,Google Phone,1,600,09/18/19 11:29,"382 Center St, Dallas, TX 75001" +255740,AA Batteries (4-pack),1,3.84,09/18/19 11:29,"382 Center St, Dallas, TX 75001" +255741,Bose SoundSport Headphones,1,99.99,09/26/19 15:37,"392 Cherry St, San Francisco, CA 94016" +255742,Google Phone,1,600,09/09/19 00:07,"812 Chestnut St, San Francisco, CA 94016" +255743,AAA Batteries (4-pack),1,2.99,09/30/19 12:41,"897 Meadow St, Los Angeles, CA 90001" +255744,iPhone,1,700,09/06/19 19:04,"811 Ridge St, Los Angeles, CA 90001" +255745,AA Batteries (4-pack),1,3.84,09/25/19 13:37,"30 Meadow St, Portland, OR 97035" +255746,Lightning Charging Cable,1,14.95,09/11/19 01:38,"944 1st St, Los Angeles, CA 90001" +255747,34in Ultrawide Monitor,1,379.99,09/16/19 12:26,"234 Chestnut St, New York City, NY 10001" +255748,Apple Airpods Headphones,1,150,09/15/19 17:55,"685 Cedar St, Boston, MA 02215" +255749,USB-C Charging Cable,1,11.95,09/23/19 11:23,"783 Lakeview St, New York City, NY 10001" +255750,AA Batteries (4-pack),2,3.84,09/08/19 16:00,"91 12th St, San Francisco, CA 94016" +255751,Google Phone,1,600,09/01/19 16:53,"921 14th St, San Francisco, CA 94016" +255752,Wired Headphones,1,11.99,09/05/19 11:09,"147 6th St, Dallas, TX 75001" +255753,Flatscreen TV,1,300,09/03/19 10:36,"350 Cherry St, San Francisco, CA 94016" +255754,AAA Batteries (4-pack),1,2.99,09/01/19 15:24,"126 10th St, San Francisco, CA 94016" +255755,Flatscreen TV,1,300,09/13/19 18:45,"891 Chestnut St, New York City, NY 10001" +255756,Macbook Pro Laptop,1,1700,09/29/19 17:11,"812 Main St, Seattle, WA 98101" +255757,USB-C Charging Cable,1,11.95,09/18/19 15:03,"844 Adams St, Los Angeles, CA 90001" +255758,iPhone,1,700,09/03/19 12:09,"48 Meadow St, Los Angeles, CA 90001" +255758,Wired Headphones,1,11.99,09/03/19 12:09,"48 Meadow St, Los Angeles, CA 90001" +255759,AAA Batteries (4-pack),3,2.99,09/28/19 09:37,"259 Pine St, Atlanta, GA 30301" +255760,Bose SoundSport Headphones,1,99.99,09/30/19 11:48,"716 Madison St, Portland, OR 97035" +255760,USB-C Charging Cable,1,11.95,09/30/19 11:48,"716 Madison St, Portland, OR 97035" +255761,Wired Headphones,1,11.99,09/01/19 15:49,"359 2nd St, Seattle, WA 98101" +255762,Apple Airpods Headphones,1,150,09/27/19 07:44,"956 5th St, San Francisco, CA 94016" +255762,Lightning Charging Cable,1,14.95,09/27/19 07:44,"956 5th St, San Francisco, CA 94016" +255763,Wired Headphones,1,11.99,09/30/19 08:48,"646 River St, San Francisco, CA 94016" +255764,AA Batteries (4-pack),1,3.84,09/23/19 19:56,"289 Main St, Austin, TX 73301" +255765,iPhone,1,700,09/30/19 09:38,"876 9th St, New York City, NY 10001" +255765,Wired Headphones,1,11.99,09/30/19 09:38,"876 9th St, New York City, NY 10001" +255766,27in FHD Monitor,1,149.99,09/23/19 19:22,"672 Lakeview St, Atlanta, GA 30301" +255767,iPhone,1,700,09/20/19 20:29,"220 Madison St, Los Angeles, CA 90001" +255768,Bose SoundSport Headphones,1,99.99,09/03/19 15:47,"887 Sunset St, Dallas, TX 75001" +255769,Lightning Charging Cable,1,14.95,09/13/19 22:16,"686 Lincoln St, Los Angeles, CA 90001" +255770,AAA Batteries (4-pack),2,2.99,09/03/19 11:35,"93 Cedar St, Los Angeles, CA 90001" +255771,AA Batteries (4-pack),1,3.84,09/17/19 23:59,"829 Church St, San Francisco, CA 94016" +255772,Lightning Charging Cable,1,14.95,09/08/19 17:31,"8 Washington St, San Francisco, CA 94016" +255773,Wired Headphones,1,11.99,09/28/19 03:08,"627 13th St, Boston, MA 02215" +255774,AA Batteries (4-pack),1,3.84,09/30/19 12:23,"178 Lake St, San Francisco, CA 94016" +255775,AAA Batteries (4-pack),1,2.99,09/30/19 10:07,"380 1st St, Seattle, WA 98101" +255776,USB-C Charging Cable,1,11.95,09/13/19 04:12,"671 Pine St, San Francisco, CA 94016" +255777,Lightning Charging Cable,1,14.95,09/06/19 23:29,"84 9th St, Dallas, TX 75001" +255778,Google Phone,1,600,09/30/19 20:16,"968 Main St, New York City, NY 10001" +255779,AAA Batteries (4-pack),1,2.99,09/20/19 14:35,"935 West St, Seattle, WA 98101" +255780,Lightning Charging Cable,1,14.95,09/01/19 16:18,"698 10th St, Boston, MA 02215" +255781,Lightning Charging Cable,1,14.95,09/11/19 22:21,"248 Hickory St, Portland, ME 04101" +255782,Apple Airpods Headphones,1,150,09/20/19 20:25,"723 Meadow St, Seattle, WA 98101" +255783,Wired Headphones,1,11.99,09/16/19 09:03,"711 Church St, Atlanta, GA 30301" +255784,20in Monitor,1,109.99,09/04/19 12:31,"398 Elm St, Austin, TX 73301" +255785,Lightning Charging Cable,1,14.95,09/15/19 14:26,"384 Maple St, San Francisco, CA 94016" +255786,34in Ultrawide Monitor,1,379.99,09/13/19 16:10,"353 Jefferson St, New York City, NY 10001" +255787,Bose SoundSport Headphones,1,99.99,09/25/19 18:32,"713 5th St, San Francisco, CA 94016" +255788,Lightning Charging Cable,1,14.95,09/30/19 18:34,"73 Meadow St, San Francisco, CA 94016" +255789,Wired Headphones,1,11.99,09/23/19 12:00,"51 2nd St, Boston, MA 02215" +255790,Flatscreen TV,1,300,09/05/19 14:52,"549 West St, Atlanta, GA 30301" +255791,20in Monitor,1,109.99,09/23/19 09:23,"982 4th St, Portland, ME 04101" +255792,AA Batteries (4-pack),1,3.84,09/01/19 10:56,"771 North St, Seattle, WA 98101" +255793,USB-C Charging Cable,1,11.95,09/22/19 10:41,"891 Chestnut St, New York City, NY 10001" +255794,Wired Headphones,1,11.99,09/29/19 20:18,"767 Lincoln St, Portland, OR 97035" +255795,Bose SoundSport Headphones,1,99.99,09/16/19 14:56,"381 Adams St, Seattle, WA 98101" +255796,Bose SoundSport Headphones,1,99.99,09/15/19 09:27,"523 7th St, Portland, OR 97035" +255797,USB-C Charging Cable,1,11.95,09/20/19 13:07,"567 Ridge St, Boston, MA 02215" +255798,Apple Airpods Headphones,1,150,09/09/19 22:50,"489 Church St, Boston, MA 02215" +255799,Wired Headphones,1,11.99,09/09/19 17:06,"203 West St, Los Angeles, CA 90001" +255800,Google Phone,1,600,09/14/19 08:24,"527 13th St, New York City, NY 10001" +255801,AA Batteries (4-pack),1,3.84,09/02/19 21:41,"124 North St, Seattle, WA 98101" +255802,27in 4K Gaming Monitor,1,389.99,09/22/19 18:21,"766 Lake St, Los Angeles, CA 90001" +255803,iPhone,1,700,09/16/19 23:58,"595 Meadow St, Los Angeles, CA 90001" +255804,Macbook Pro Laptop,1,1700,09/23/19 06:45,"843 Lake St, San Francisco, CA 94016" +255805,Apple Airpods Headphones,1,150,09/19/19 12:43,"852 Pine St, Boston, MA 02215" +255806,Apple Airpods Headphones,1,150,09/21/19 18:50,"398 13th St, San Francisco, CA 94016" +255807,AAA Batteries (4-pack),1,2.99,09/10/19 21:49,"151 Lakeview St, Atlanta, GA 30301" +255808,AA Batteries (4-pack),1,3.84,09/18/19 23:05,"17 North St, San Francisco, CA 94016" +,,,,, +255809,Apple Airpods Headphones,1,150,09/04/19 08:40,"961 10th St, New York City, NY 10001" +255810,Bose SoundSport Headphones,1,99.99,09/29/19 18:38,"139 River St, Portland, ME 04101" +255811,34in Ultrawide Monitor,1,379.99,09/23/19 13:44,"762 Spruce St, Boston, MA 02215" +255812,27in FHD Monitor,1,149.99,09/14/19 12:03,"465 Jackson St, San Francisco, CA 94016" +255813,Apple Airpods Headphones,1,150,09/22/19 16:42,"48 Walnut St, San Francisco, CA 94016" +255814,USB-C Charging Cable,3,11.95,09/07/19 19:36,"441 Jefferson St, Seattle, WA 98101" +255815,34in Ultrawide Monitor,1,379.99,09/20/19 18:34,"311 13th St, Los Angeles, CA 90001" +255816,USB-C Charging Cable,1,11.95,09/24/19 16:49,"450 Park St, Atlanta, GA 30301" +255817,Wired Headphones,1,11.99,09/19/19 12:26,"711 Madison St, San Francisco, CA 94016" +255818,27in FHD Monitor,1,149.99,09/18/19 17:40,"190 Highland St, Atlanta, GA 30301" +255819,Wired Headphones,1,11.99,09/13/19 01:23,"26 Center St, Seattle, WA 98101" +255820,AA Batteries (4-pack),1,3.84,09/15/19 16:22,"881 Jefferson St, New York City, NY 10001" +255821,27in FHD Monitor,1,149.99,09/04/19 15:51,"855 14th St, Boston, MA 02215" +255822,Bose SoundSport Headphones,1,99.99,09/23/19 21:03,"415 2nd St, Atlanta, GA 30301" +255823,Wired Headphones,1,11.99,09/27/19 22:22,"458 Jackson St, Boston, MA 02215" +255824,AAA Batteries (4-pack),1,2.99,09/08/19 09:42,"995 Washington St, Austin, TX 73301" +255825,iPhone,1,700,09/25/19 23:22,"200 Spruce St, Los Angeles, CA 90001" +255826,AAA Batteries (4-pack),1,2.99,09/30/19 13:22,"634 Walnut St, Los Angeles, CA 90001" +255827,Lightning Charging Cable,1,14.95,09/30/19 22:24,"529 Meadow St, Boston, MA 02215" +255828,iPhone,1,700,09/07/19 13:38,"948 Cherry St, Boston, MA 02215" +255828,Lightning Charging Cable,1,14.95,09/07/19 13:38,"948 Cherry St, Boston, MA 02215" +255829,AAA Batteries (4-pack),1,2.99,09/14/19 22:45,"135 Hill St, Seattle, WA 98101" +255830,Bose SoundSport Headphones,1,99.99,09/25/19 22:37,"188 Maple St, San Francisco, CA 94016" +255831,AA Batteries (4-pack),1,3.84,09/22/19 15:58,"879 8th St, New York City, NY 10001" +255832,Lightning Charging Cable,1,14.95,09/24/19 19:29,"526 1st St, New York City, NY 10001" +255833,Flatscreen TV,1,300,09/23/19 22:37,"593 Adams St, San Francisco, CA 94016" +255834,AA Batteries (4-pack),1,3.84,09/29/19 18:26,"74 Elm St, San Francisco, CA 94016" +255835,Lightning Charging Cable,1,14.95,09/12/19 09:44,"200 Church St, Boston, MA 02215" +255836,Vareebadd Phone,1,400,09/26/19 16:59,"972 Pine St, Los Angeles, CA 90001" +255837,Bose SoundSport Headphones,1,99.99,09/05/19 07:03,"716 Lincoln St, Austin, TX 73301" +255838,USB-C Charging Cable,1,11.95,09/27/19 05:52,"415 Dogwood St, Dallas, TX 75001" +255839,USB-C Charging Cable,1,11.95,09/01/19 14:01,"213 Willow St, Boston, MA 02215" +255840,Lightning Charging Cable,1,14.95,09/22/19 15:59,"506 10th St, Portland, OR 97035" +255841,AAA Batteries (4-pack),1,2.99,09/29/19 17:12,"675 North St, New York City, NY 10001" +255842,AAA Batteries (4-pack),1,2.99,09/20/19 16:57,"988 Maple St, New York City, NY 10001" +255843,Lightning Charging Cable,1,14.95,09/28/19 18:40,"886 Forest St, Los Angeles, CA 90001" +255844,AA Batteries (4-pack),3,3.84,09/24/19 17:03,"468 10th St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +255845,iPhone,1,700,09/04/19 23:53,"469 Maple St, San Francisco, CA 94016" +255845,Lightning Charging Cable,1,14.95,09/04/19 23:53,"469 Maple St, San Francisco, CA 94016" +255846,ThinkPad Laptop,1,999.99,09/07/19 16:10,"395 7th St, Boston, MA 02215" +255847,AAA Batteries (4-pack),1,2.99,09/11/19 13:13,"991 Cedar St, Los Angeles, CA 90001" +255848,Wired Headphones,1,11.99,09/08/19 13:57,"404 4th St, Portland, OR 97035" +255849,Wired Headphones,1,11.99,09/25/19 19:17,"159 Elm St, Austin, TX 73301" +255850,Lightning Charging Cable,1,14.95,09/25/19 11:14,"689 Main St, New York City, NY 10001" +255851,Bose SoundSport Headphones,1,99.99,09/24/19 16:36,"597 4th St, San Francisco, CA 94016" +255852,Bose SoundSport Headphones,1,99.99,09/30/19 10:45,"851 2nd St, San Francisco, CA 94016" +255853,AA Batteries (4-pack),1,3.84,09/27/19 19:56,"772 7th St, Dallas, TX 75001" +255854,AAA Batteries (4-pack),1,2.99,09/28/19 14:12,"907 Lake St, Los Angeles, CA 90001" +255855,ThinkPad Laptop,1,999.99,09/12/19 08:49,"709 Main St, Seattle, WA 98101" +255856,27in 4K Gaming Monitor,1,389.99,09/07/19 19:32,"276 5th St, Boston, MA 02215" +255857,Macbook Pro Laptop,1,1700,09/16/19 06:50,"228 Maple St, Boston, MA 02215" +255858,USB-C Charging Cable,1,11.95,09/19/19 17:20,"689 Willow St, Austin, TX 73301" +255859,AA Batteries (4-pack),1,3.84,09/16/19 22:33,"453 River St, Boston, MA 02215" +255860,USB-C Charging Cable,1,11.95,09/24/19 13:07,"247 Church St, Atlanta, GA 30301" +255861,Apple Airpods Headphones,1,150,09/09/19 14:16,"178 North St, Atlanta, GA 30301" +255862,Lightning Charging Cable,1,14.95,09/05/19 16:05,"940 6th St, New York City, NY 10001" +255863,27in FHD Monitor,1,149.99,09/23/19 18:30,"407 Willow St, New York City, NY 10001" +255864,27in 4K Gaming Monitor,1,389.99,09/05/19 07:18,"622 Wilson St, Los Angeles, CA 90001" +255865,Lightning Charging Cable,1,14.95,09/09/19 19:11,"944 Park St, Atlanta, GA 30301" +255866,Lightning Charging Cable,1,14.95,09/26/19 23:21,"753 Center St, Portland, OR 97035" +255867,AAA Batteries (4-pack),2,2.99,09/26/19 12:37,"36 Sunset St, Seattle, WA 98101" +255868,Bose SoundSport Headphones,1,99.99,09/14/19 15:13,"425 Adams St, Seattle, WA 98101" +255869,Bose SoundSport Headphones,1,99.99,09/04/19 12:27,"753 Willow St, Atlanta, GA 30301" +255870,Lightning Charging Cable,1,14.95,09/06/19 10:21,"715 Ridge St, Austin, TX 73301" +255871,Bose SoundSport Headphones,1,99.99,09/04/19 13:23,"844 1st St, Los Angeles, CA 90001" +255872,AA Batteries (4-pack),1,3.84,09/23/19 10:09,"498 7th St, Portland, OR 97035" +255873,Lightning Charging Cable,1,14.95,09/25/19 13:55,"125 11th St, San Francisco, CA 94016" +255874,Wired Headphones,1,11.99,09/27/19 17:03,"374 West St, Los Angeles, CA 90001" +255875,Apple Airpods Headphones,1,150,09/04/19 20:49,"349 Pine St, Boston, MA 02215" +255876,Lightning Charging Cable,1,14.95,09/04/19 14:57,"642 Jefferson St, San Francisco, CA 94016" +255877,27in FHD Monitor,1,149.99,09/30/19 10:41,"862 Adams St, Seattle, WA 98101" +255878,Bose SoundSport Headphones,1,99.99,09/30/19 14:31,"24 Jackson St, Los Angeles, CA 90001" +255879,Wired Headphones,2,11.99,09/11/19 14:47,"863 Ridge St, San Francisco, CA 94016" +255880,ThinkPad Laptop,1,999.99,09/08/19 15:39,"357 2nd St, San Francisco, CA 94016" +255881,34in Ultrawide Monitor,1,379.99,09/28/19 22:33,"432 Hickory St, Los Angeles, CA 90001" +255882,Apple Airpods Headphones,1,150,09/06/19 21:18,"157 Madison St, Los Angeles, CA 90001" +255883,USB-C Charging Cable,1,11.95,09/28/19 03:37,"755 Johnson St, New York City, NY 10001" +255884,Lightning Charging Cable,1,14.95,09/24/19 00:48,"625 Dogwood St, Seattle, WA 98101" +255884,AAA Batteries (4-pack),2,2.99,09/24/19 00:48,"625 Dogwood St, Seattle, WA 98101" +255885,27in FHD Monitor,1,149.99,09/04/19 14:30,"180 Main St, Atlanta, GA 30301" +255886,27in FHD Monitor,1,149.99,09/30/19 21:48,"191 4th St, San Francisco, CA 94016" +255887,AA Batteries (4-pack),1,3.84,09/15/19 21:28,"765 North St, Boston, MA 02215" +255888,20in Monitor,1,109.99,09/19/19 15:32,"72 Adams St, Atlanta, GA 30301" +255889,34in Ultrawide Monitor,1,379.99,09/28/19 14:38,"645 Meadow St, San Francisco, CA 94016" +255890,Lightning Charging Cable,1,14.95,09/25/19 21:25,"6 Spruce St, Los Angeles, CA 90001" +255891,USB-C Charging Cable,1,11.95,09/15/19 10:40,"842 Willow St, Atlanta, GA 30301" +255892,Lightning Charging Cable,1,14.95,09/18/19 15:02,"815 Jackson St, Los Angeles, CA 90001" +255893,Wired Headphones,1,11.99,09/04/19 00:02,"122 11th St, Los Angeles, CA 90001" +255894,Google Phone,1,600,09/07/19 18:36,"560 Lake St, San Francisco, CA 94016" +255895,AAA Batteries (4-pack),1,2.99,09/15/19 11:41,"450 6th St, Seattle, WA 98101" +255896,20in Monitor,1,109.99,09/29/19 10:52,"592 Cherry St, Boston, MA 02215" +255897,Lightning Charging Cable,1,14.95,09/08/19 21:03,"844 Dogwood St, San Francisco, CA 94016" +255898,AA Batteries (4-pack),2,3.84,09/09/19 14:18,"987 Chestnut St, Boston, MA 02215" +255899,AAA Batteries (4-pack),1,2.99,09/06/19 23:43,"979 14th St, Seattle, WA 98101" +255900,Google Phone,1,600,09/28/19 19:47,"229 Maple St, Boston, MA 02215" +255901,Bose SoundSport Headphones,1,99.99,09/20/19 15:33,"98 Jackson St, New York City, NY 10001" +255902,Apple Airpods Headphones,1,150,09/11/19 20:28,"579 14th St, Los Angeles, CA 90001" +255903,AAA Batteries (4-pack),1,2.99,09/13/19 06:16,"501 Jackson St, San Francisco, CA 94016" +255904,Lightning Charging Cable,1,14.95,09/23/19 21:01,"898 Spruce St, New York City, NY 10001" +255905,USB-C Charging Cable,1,11.95,09/23/19 12:43,"480 2nd St, Los Angeles, CA 90001" +255906,Apple Airpods Headphones,1,150,09/17/19 09:19,"323 11th St, Dallas, TX 75001" +255907,Bose SoundSport Headphones,1,99.99,09/16/19 10:12,"714 Jackson St, Seattle, WA 98101" +255908,Apple Airpods Headphones,1,150,10/01/19 01:53,"506 Willow St, San Francisco, CA 94016" +255909,Apple Airpods Headphones,1,150,09/18/19 17:24,"938 Spruce St, San Francisco, CA 94016" +255910,Wired Headphones,1,11.99,09/12/19 16:25,"863 Lincoln St, Portland, ME 04101" +255911,Macbook Pro Laptop,1,1700,09/06/19 17:56,"678 Lakeview St, Boston, MA 02215" +255912,USB-C Charging Cable,1,11.95,09/28/19 08:27,"929 Main St, New York City, NY 10001" +255913,34in Ultrawide Monitor,1,379.99,09/24/19 08:49,"558 Meadow St, Boston, MA 02215" +255914,AAA Batteries (4-pack),3,2.99,09/01/19 16:54,"669 Hill St, San Francisco, CA 94016" +255915,Wired Headphones,1,11.99,09/12/19 20:24,"897 Adams St, Portland, OR 97035" +255916,Wired Headphones,1,11.99,09/07/19 16:02,"698 13th St, Seattle, WA 98101" +255917,USB-C Charging Cable,1,11.95,09/16/19 20:11,"176 9th St, New York City, NY 10001" +255918,LG Washing Machine,1,600.0,09/17/19 13:53,"684 Elm St, Los Angeles, CA 90001" +255919,AAA Batteries (4-pack),3,2.99,09/12/19 13:07,"726 12th St, New York City, NY 10001" +255920,27in 4K Gaming Monitor,1,389.99,09/23/19 10:48,"228 Johnson St, San Francisco, CA 94016" +255921,Lightning Charging Cable,1,14.95,09/14/19 01:42,"675 7th St, Los Angeles, CA 90001" +255922,27in 4K Gaming Monitor,1,389.99,09/23/19 20:07,"278 Maple St, Los Angeles, CA 90001" +255923,Google Phone,1,600,09/21/19 12:03,"483 Jackson St, Seattle, WA 98101" +255924,Lightning Charging Cable,1,14.95,09/26/19 13:09,"469 Adams St, Boston, MA 02215" +255925,27in 4K Gaming Monitor,1,389.99,09/16/19 20:05,"933 Jefferson St, Boston, MA 02215" +255926,Lightning Charging Cable,1,14.95,09/23/19 21:51,"632 13th St, Seattle, WA 98101" +255927,AAA Batteries (4-pack),4,2.99,09/14/19 20:39,"11 10th St, Boston, MA 02215" +255928,Bose SoundSport Headphones,1,99.99,09/09/19 09:07,"997 9th St, Boston, MA 02215" +255929,AA Batteries (4-pack),1,3.84,09/03/19 14:32,"952 2nd St, Dallas, TX 75001" +255930,AA Batteries (4-pack),1,3.84,09/28/19 18:26,"267 North St, New York City, NY 10001" +255931,Apple Airpods Headphones,1,150,09/18/19 23:32,"216 Main St, Boston, MA 02215" +255932,AA Batteries (4-pack),1,3.84,09/19/19 09:24,"138 Hill St, Boston, MA 02215" +255933,AAA Batteries (4-pack),1,2.99,09/25/19 09:22,"514 Cherry St, Boston, MA 02215" +255934,Vareebadd Phone,1,400,09/26/19 15:00,"40 Meadow St, San Francisco, CA 94016" +255935,Lightning Charging Cable,1,14.95,09/18/19 19:07,"70 Walnut St, San Francisco, CA 94016" +255936,Bose SoundSport Headphones,1,99.99,09/24/19 11:31,"302 1st St, San Francisco, CA 94016" +255937,AA Batteries (4-pack),1,3.84,09/11/19 02:41,"913 Center St, Los Angeles, CA 90001" +255938,AAA Batteries (4-pack),1,2.99,09/13/19 22:55,"428 Jackson St, San Francisco, CA 94016" +255939,Wired Headphones,1,11.99,09/28/19 10:28,"993 12th St, San Francisco, CA 94016" +255940,USB-C Charging Cable,1,11.95,09/26/19 12:21,"213 Cedar St, Seattle, WA 98101" +255941,27in FHD Monitor,1,149.99,09/10/19 19:18,"975 Washington St, Austin, TX 73301" +255942,AA Batteries (4-pack),1,3.84,09/27/19 20:54,"204 9th St, San Francisco, CA 94016" +255943,AA Batteries (4-pack),1,3.84,09/14/19 22:05,"40 Johnson St, Austin, TX 73301" +255944,AA Batteries (4-pack),1,3.84,09/05/19 20:22,"113 Highland St, San Francisco, CA 94016" +255945,AA Batteries (4-pack),1,3.84,09/24/19 11:47,"937 11th St, San Francisco, CA 94016" +255946,27in FHD Monitor,1,149.99,09/27/19 16:16,"612 Cedar St, Atlanta, GA 30301" +255947,AAA Batteries (4-pack),1,2.99,09/12/19 09:43,"442 6th St, Los Angeles, CA 90001" +255948,Macbook Pro Laptop,1,1700,09/17/19 09:02,"625 Lake St, Los Angeles, CA 90001" +255949,Google Phone,1,600,09/25/19 19:31,"121 Hickory St, Dallas, TX 75001" +255950,USB-C Charging Cable,1,11.95,09/11/19 17:17,"105 Dogwood St, Los Angeles, CA 90001" +255951,AAA Batteries (4-pack),1,2.99,09/10/19 12:46,"230 Willow St, Boston, MA 02215" +255952,AA Batteries (4-pack),1,3.84,09/23/19 20:22,"804 Willow St, New York City, NY 10001" +255953,Wired Headphones,1,11.99,09/09/19 09:25,"635 River St, San Francisco, CA 94016" +255954,USB-C Charging Cable,1,11.95,09/11/19 18:56,"223 1st St, San Francisco, CA 94016" +255955,Macbook Pro Laptop,1,1700,09/16/19 09:00,"416 Chestnut St, New York City, NY 10001" +255956,USB-C Charging Cable,1,11.95,09/22/19 11:48,"64 Wilson St, San Francisco, CA 94016" +255957,AAA Batteries (4-pack),1,2.99,09/26/19 11:06,"167 South St, San Francisco, CA 94016" +255958,Lightning Charging Cable,1,14.95,09/29/19 08:13,"442 Ridge St, New York City, NY 10001" +255959,Bose SoundSport Headphones,1,99.99,09/11/19 15:08,"214 Elm St, New York City, NY 10001" +255960,AA Batteries (4-pack),2,3.84,09/20/19 21:02,"567 7th St, Portland, ME 04101" +255961,AA Batteries (4-pack),1,3.84,09/15/19 14:57,"337 8th St, Seattle, WA 98101" +255962,USB-C Charging Cable,2,11.95,09/04/19 18:33,"652 Hill St, Dallas, TX 75001" +255963,AAA Batteries (4-pack),2,2.99,09/25/19 16:09,"281 1st St, Los Angeles, CA 90001" +255964,iPhone,1,700,09/02/19 08:32,"592 Main St, Portland, OR 97035" +255965,AA Batteries (4-pack),1,3.84,09/14/19 01:00,"254 Elm St, New York City, NY 10001" +255966,34in Ultrawide Monitor,1,379.99,09/04/19 17:36,"964 1st St, San Francisco, CA 94016" +255967,USB-C Charging Cable,1,11.95,09/12/19 14:15,"686 14th St, Seattle, WA 98101" +255968,AA Batteries (4-pack),1,3.84,09/12/19 17:48,"554 Lakeview St, Portland, OR 97035" +255969,Bose SoundSport Headphones,1,99.99,09/05/19 13:46,"700 Chestnut St, Los Angeles, CA 90001" +255970,Bose SoundSport Headphones,1,99.99,09/13/19 10:42,"932 Johnson St, New York City, NY 10001" +255971,Wired Headphones,1,11.99,09/19/19 18:09,"401 Main St, Dallas, TX 75001" +255972,Bose SoundSport Headphones,1,99.99,09/27/19 14:22,"980 Highland St, Atlanta, GA 30301" +255973,LG Washing Machine,1,600.0,09/20/19 19:05,"420 5th St, Dallas, TX 75001" +255974,AAA Batteries (4-pack),2,2.99,09/07/19 13:01,"245 Forest St, Seattle, WA 98101" +255975,USB-C Charging Cable,1,11.95,09/17/19 10:35,"654 Willow St, New York City, NY 10001" +255976,AAA Batteries (4-pack),1,2.99,09/15/19 15:51,"55 Willow St, San Francisco, CA 94016" +255977,AA Batteries (4-pack),2,3.84,09/24/19 00:35,"350 North St, Austin, TX 73301" +255978,Bose SoundSport Headphones,1,99.99,09/01/19 20:56,"752 11th St, Boston, MA 02215" +255979,27in FHD Monitor,1,149.99,09/09/19 17:32,"852 11th St, Los Angeles, CA 90001" +255980,Lightning Charging Cable,1,14.95,09/29/19 13:59,"836 Spruce St, Austin, TX 73301" +255981,AA Batteries (4-pack),1,3.84,09/06/19 07:39,"345 5th St, San Francisco, CA 94016" +255982,Apple Airpods Headphones,1,150,09/15/19 00:21,"837 Cherry St, Los Angeles, CA 90001" +255983,34in Ultrawide Monitor,1,379.99,09/09/19 12:42,"720 Ridge St, Boston, MA 02215" +255984,Apple Airpods Headphones,1,150,09/25/19 20:43,"738 14th St, San Francisco, CA 94016" +255985,Lightning Charging Cable,1,14.95,09/02/19 20:11,"10 Chestnut St, San Francisco, CA 94016" +255986,USB-C Charging Cable,2,11.95,09/02/19 18:48,"333 11th St, New York City, NY 10001" +255987,USB-C Charging Cable,1,11.95,09/03/19 01:49,"895 4th St, New York City, NY 10001" +255988,Flatscreen TV,1,300,09/11/19 14:08,"929 2nd St, Austin, TX 73301" +255989,iPhone,1,700,09/04/19 11:53,"632 7th St, New York City, NY 10001" +255990,Bose SoundSport Headphones,1,99.99,09/24/19 16:51,"510 7th St, San Francisco, CA 94016" +255991,AA Batteries (4-pack),1,3.84,09/11/19 16:38,"685 Forest St, Los Angeles, CA 90001" +255992,Macbook Pro Laptop,1,1700,09/06/19 01:47,"402 Hickory St, San Francisco, CA 94016" +255993,AAA Batteries (4-pack),1,2.99,09/10/19 23:01,"773 Cherry St, Austin, TX 73301" +255994,Apple Airpods Headphones,1,150,09/26/19 09:45,"151 13th St, Atlanta, GA 30301" +255995,27in FHD Monitor,1,149.99,09/30/19 10:54,"548 Sunset St, New York City, NY 10001" +255996,Apple Airpods Headphones,1,150,09/09/19 10:18,"913 Park St, San Francisco, CA 94016" +255997,Bose SoundSport Headphones,1,99.99,09/25/19 13:07,"40 Cedar St, Portland, OR 97035" +255998,USB-C Charging Cable,1,11.95,09/03/19 09:15,"332 Forest St, San Francisco, CA 94016" +255999,Lightning Charging Cable,1,14.95,09/23/19 18:30,"823 Adams St, San Francisco, CA 94016" +256000,AAA Batteries (4-pack),1,2.99,09/08/19 16:52,"255 South St, Boston, MA 02215" +256001,Flatscreen TV,1,300,09/27/19 20:34,"644 7th St, Los Angeles, CA 90001" +256002,Macbook Pro Laptop,1,1700,09/15/19 16:21,"33 Cedar St, Seattle, WA 98101" +256003,Macbook Pro Laptop,1,1700,09/28/19 11:01,"383 West St, Los Angeles, CA 90001" +256004,27in 4K Gaming Monitor,1,389.99,09/07/19 19:54,"374 Lincoln St, Los Angeles, CA 90001" +256005,27in FHD Monitor,1,149.99,09/23/19 21:44,"391 Chestnut St, Dallas, TX 75001" +256006,AA Batteries (4-pack),1,3.84,09/02/19 14:11,"804 Highland St, Los Angeles, CA 90001" +256007,Flatscreen TV,1,300,09/01/19 23:40,"957 Madison St, Dallas, TX 75001" +256008,USB-C Charging Cable,1,11.95,09/16/19 15:44,"274 Park St, San Francisco, CA 94016" +256009,27in 4K Gaming Monitor,1,389.99,09/23/19 23:15,"163 7th St, Los Angeles, CA 90001" +256010,27in FHD Monitor,1,149.99,09/18/19 13:38,"808 Pine St, New York City, NY 10001" +256011,AA Batteries (4-pack),1,3.84,09/17/19 22:48,"769 Walnut St, New York City, NY 10001" +256012,Macbook Pro Laptop,1,1700,09/09/19 11:41,"870 Church St, San Francisco, CA 94016" +256013,USB-C Charging Cable,1,11.95,09/22/19 17:05,"941 8th St, Seattle, WA 98101" +256014,Apple Airpods Headphones,1,150,09/08/19 15:53,"395 5th St, Boston, MA 02215" +256015,AAA Batteries (4-pack),1,2.99,09/05/19 21:44,"368 Johnson St, New York City, NY 10001" +256016,AA Batteries (4-pack),1,3.84,09/30/19 12:38,"887 Lake St, Los Angeles, CA 90001" +256017,AA Batteries (4-pack),1,3.84,09/06/19 23:36,"808 Meadow St, Portland, OR 97035" +256018,USB-C Charging Cable,2,11.95,09/11/19 17:19,"968 South St, Dallas, TX 75001" +256019,Wired Headphones,1,11.99,09/19/19 06:55,"695 Jefferson St, San Francisco, CA 94016" +256020,Bose SoundSport Headphones,1,99.99,09/06/19 16:16,"314 Maple St, Boston, MA 02215" +256021,Google Phone,1,600,09/15/19 22:40,"229 River St, New York City, NY 10001" +256022,Google Phone,1,600,09/10/19 17:49,"445 Pine St, Los Angeles, CA 90001" +256023,Bose SoundSport Headphones,1,99.99,09/30/19 10:39,"300 2nd St, Portland, OR 97035" +256024,27in 4K Gaming Monitor,1,389.99,09/15/19 16:24,"251 North St, Portland, OR 97035" +256025,Apple Airpods Headphones,1,150,09/23/19 22:47,"983 10th St, San Francisco, CA 94016" +256026,27in FHD Monitor,1,149.99,09/29/19 13:22,"142 Park St, San Francisco, CA 94016" +256027,AAA Batteries (4-pack),2,2.99,09/28/19 16:16,"929 Meadow St, Atlanta, GA 30301" +256028,iPhone,1,700,09/20/19 21:43,"539 Pine St, Seattle, WA 98101" +256028,Apple Airpods Headphones,1,150,09/20/19 21:43,"539 Pine St, Seattle, WA 98101" +256029,20in Monitor,1,109.99,09/26/19 15:54,"5 Johnson St, Atlanta, GA 30301" +256030,Apple Airpods Headphones,1,150,09/16/19 15:41,"170 Dogwood St, Portland, OR 97035" +256031,Wired Headphones,1,11.99,09/30/19 20:35,"60 Pine St, New York City, NY 10001" +256032,Wired Headphones,1,11.99,09/21/19 08:34,"998 13th St, San Francisco, CA 94016" +256033,Google Phone,1,600,09/09/19 12:33,"856 Elm St, Boston, MA 02215" +256033,USB-C Charging Cable,1,11.95,09/09/19 12:33,"856 Elm St, Boston, MA 02215" +256034,iPhone,1,700,09/25/19 13:38,"467 Spruce St, Austin, TX 73301" +256034,Lightning Charging Cable,1,14.95,09/25/19 13:38,"467 Spruce St, Austin, TX 73301" +256035,AA Batteries (4-pack),1,3.84,09/19/19 14:07,"902 Johnson St, New York City, NY 10001" +256036,27in 4K Gaming Monitor,1,389.99,09/16/19 19:39,"271 Hill St, Dallas, TX 75001" +256037,AA Batteries (4-pack),1,3.84,09/26/19 12:02,"220 6th St, Los Angeles, CA 90001" +256038,Apple Airpods Headphones,1,150,09/24/19 15:09,"66 7th St, New York City, NY 10001" +256039,27in FHD Monitor,1,149.99,09/27/19 16:23,"828 Adams St, San Francisco, CA 94016" +256040,Lightning Charging Cable,1,14.95,09/11/19 19:12,"544 1st St, Austin, TX 73301" +256041,AAA Batteries (4-pack),2,2.99,09/26/19 08:52,"328 Church St, San Francisco, CA 94016" +256042,Apple Airpods Headphones,1,150,09/05/19 11:49,"912 Park St, Austin, TX 73301" +256043,Wired Headphones,1,11.99,09/26/19 09:52,"970 River St, New York City, NY 10001" +256044,20in Monitor,1,109.99,09/20/19 19:19,"990 Center St, Boston, MA 02215" +256045,27in FHD Monitor,1,149.99,09/11/19 21:31,"617 10th St, San Francisco, CA 94016" +256046,Flatscreen TV,2,300,09/27/19 13:39,"650 Pine St, New York City, NY 10001" +256047,ThinkPad Laptop,1,999.99,09/11/19 12:51,"798 Meadow St, Atlanta, GA 30301" +256048,Wired Headphones,1,11.99,09/03/19 14:03,"339 Ridge St, Portland, ME 04101" +256049,AA Batteries (4-pack),1,3.84,09/02/19 19:29,"85 Maple St, San Francisco, CA 94016" +256050,Apple Airpods Headphones,1,150,09/30/19 09:20,"829 Maple St, San Francisco, CA 94016" +256051,Lightning Charging Cable,1,14.95,09/10/19 16:41,"143 6th St, Boston, MA 02215" +256052,USB-C Charging Cable,1,11.95,09/10/19 19:51,"789 River St, Los Angeles, CA 90001" +256052,27in FHD Monitor,1,149.99,09/10/19 19:51,"789 River St, Los Angeles, CA 90001" +256053,iPhone,1,700,09/06/19 21:51,"708 Elm St, New York City, NY 10001" +256054,Lightning Charging Cable,2,14.95,09/25/19 12:59,"131 14th St, Atlanta, GA 30301" +256055,Lightning Charging Cable,1,14.95,09/23/19 23:02,"135 9th St, Seattle, WA 98101" +256056,Flatscreen TV,1,300,09/05/19 16:22,"785 Meadow St, San Francisco, CA 94016" +256057,Apple Airpods Headphones,1,150,09/03/19 06:04,"373 Forest St, San Francisco, CA 94016" +256058,USB-C Charging Cable,1,11.95,09/04/19 10:51,"844 Johnson St, San Francisco, CA 94016" +256059,Lightning Charging Cable,2,14.95,09/05/19 09:29,"302 13th St, New York City, NY 10001" +256060,USB-C Charging Cable,1,11.95,09/24/19 02:30,"782 Cedar St, San Francisco, CA 94016" +256061,Google Phone,1,600,09/22/19 11:16,"376 River St, Los Angeles, CA 90001" +,,,,, +256062,ThinkPad Laptop,1,999.99,09/17/19 14:52,"707 River St, New York City, NY 10001" +256063,27in 4K Gaming Monitor,1,389.99,09/23/19 17:37,"2 Lincoln St, Portland, OR 97035" +256064,AAA Batteries (4-pack),2,2.99,09/15/19 20:59,"842 9th St, San Francisco, CA 94016" +256065,Apple Airpods Headphones,1,150,09/01/19 21:48,"967 Church St, Dallas, TX 75001" +256066,Wired Headphones,1,11.99,09/10/19 14:53,"906 Jackson St, San Francisco, CA 94016" +256067,Flatscreen TV,1,300,09/25/19 00:01,"102 8th St, Dallas, TX 75001" +256068,Apple Airpods Headphones,1,150,09/03/19 16:27,"422 Elm St, Los Angeles, CA 90001" +256069,Bose SoundSport Headphones,1,99.99,09/04/19 01:49,"449 Forest St, San Francisco, CA 94016" +256070,Bose SoundSport Headphones,1,99.99,09/20/19 13:14,"233 14th St, Atlanta, GA 30301" +256071,27in 4K Gaming Monitor,1,389.99,09/19/19 09:50,"473 Maple St, Portland, ME 04101" +256072,Wired Headphones,1,11.99,09/07/19 13:43,"659 13th St, Los Angeles, CA 90001" +256073,Bose SoundSport Headphones,1,99.99,09/14/19 23:43,"106 Cherry St, Seattle, WA 98101" +256074,Bose SoundSport Headphones,1,99.99,09/18/19 19:00,"129 Meadow St, New York City, NY 10001" +256075,Flatscreen TV,1,300,09/27/19 16:03,"448 Walnut St, Seattle, WA 98101" +256076,Wired Headphones,1,11.99,09/24/19 18:19,"536 2nd St, San Francisco, CA 94016" +256077,AAA Batteries (4-pack),1,2.99,09/27/19 09:01,"261 14th St, Boston, MA 02215" +256078,AA Batteries (4-pack),1,3.84,09/25/19 12:15,"19 7th St, Atlanta, GA 30301" +256079,USB-C Charging Cable,1,11.95,09/22/19 16:25,"995 Highland St, Los Angeles, CA 90001" +256080,Lightning Charging Cable,1,14.95,09/12/19 18:46,"17 13th St, Los Angeles, CA 90001" +256081,AAA Batteries (4-pack),1,2.99,10/01/19 01:14,"434 Hickory St, San Francisco, CA 94016" +256082,Flatscreen TV,1,300,09/28/19 17:32,"146 Cherry St, Los Angeles, CA 90001" +256083,Macbook Pro Laptop,1,1700,09/19/19 16:26,"202 Hickory St, New York City, NY 10001" +256084,iPhone,1,700,09/24/19 16:34,"307 Maple St, Los Angeles, CA 90001" +256085,Lightning Charging Cable,1,14.95,09/02/19 14:48,"181 Elm St, Atlanta, GA 30301" +256086,AAA Batteries (4-pack),3,2.99,09/13/19 16:46,"574 Elm St, Portland, OR 97035" +256087,Apple Airpods Headphones,1,150,09/17/19 23:16,"52 4th St, San Francisco, CA 94016" +256088,Wired Headphones,1,11.99,09/06/19 19:38,"855 Hickory St, San Francisco, CA 94016" +256089,Vareebadd Phone,1,400,09/18/19 18:14,"541 Meadow St, Boston, MA 02215" +256090,AA Batteries (4-pack),1,3.84,09/21/19 19:59,"452 12th St, San Francisco, CA 94016" +256091,USB-C Charging Cable,1,11.95,09/09/19 23:18,"669 Washington St, Boston, MA 02215" +256092,Bose SoundSport Headphones,1,99.99,09/13/19 09:50,"6 Willow St, Dallas, TX 75001" +256093,AAA Batteries (4-pack),1,2.99,09/03/19 14:55,"583 13th St, Atlanta, GA 30301" +256094,20in Monitor,1,109.99,09/02/19 07:46,"197 Spruce St, San Francisco, CA 94016" +256095,34in Ultrawide Monitor,1,379.99,09/17/19 09:22,"823 Hickory St, Los Angeles, CA 90001" +256096,34in Ultrawide Monitor,1,379.99,09/11/19 13:40,"564 Cedar St, Portland, ME 04101" +256097,Wired Headphones,1,11.99,09/07/19 10:46,"342 Sunset St, Boston, MA 02215" +256098,Apple Airpods Headphones,1,150,09/25/19 17:56,"956 12th St, San Francisco, CA 94016" +256099,Apple Airpods Headphones,1,150,09/22/19 19:57,"892 14th St, Seattle, WA 98101" +256100,Bose SoundSport Headphones,1,99.99,09/09/19 06:35,"95 Walnut St, San Francisco, CA 94016" +256101,AA Batteries (4-pack),2,3.84,09/16/19 06:57,"340 Lakeview St, Portland, OR 97035" +256102,Flatscreen TV,1,300,09/11/19 05:58,"215 South St, San Francisco, CA 94016" +256103,Bose SoundSport Headphones,1,99.99,09/24/19 07:52,"777 Madison St, San Francisco, CA 94016" +256104,AAA Batteries (4-pack),2,2.99,09/10/19 11:52,"43 9th St, San Francisco, CA 94016" +256105,Wired Headphones,1,11.99,09/14/19 22:53,"584 Walnut St, Los Angeles, CA 90001" +256106,Bose SoundSport Headphones,1,99.99,09/07/19 14:28,"972 14th St, Portland, ME 04101" +256107,USB-C Charging Cable,1,11.95,09/04/19 13:18,"395 Jackson St, New York City, NY 10001" +256108,iPhone,1,700,09/11/19 17:46,"125 Adams St, Atlanta, GA 30301" +256109,Wired Headphones,1,11.99,09/01/19 11:47,"932 Hill St, San Francisco, CA 94016" +256110,USB-C Charging Cable,1,11.95,09/04/19 13:09,"29 Washington St, New York City, NY 10001" +256111,ThinkPad Laptop,1,999.99,09/01/19 17:53,"737 Meadow St, New York City, NY 10001" +256112,AA Batteries (4-pack),1,3.84,09/10/19 17:54,"812 Hickory St, San Francisco, CA 94016" +256113,AAA Batteries (4-pack),5,2.99,09/28/19 14:54,"987 Walnut St, New York City, NY 10001" +256114,Lightning Charging Cable,1,14.95,09/20/19 23:56,"809 Cherry St, San Francisco, CA 94016" +256115,AA Batteries (4-pack),1,3.84,09/27/19 11:17,"217 Lakeview St, Los Angeles, CA 90001" +256116,LG Washing Machine,1,600.0,09/16/19 23:58,"75 Highland St, Atlanta, GA 30301" +256117,USB-C Charging Cable,1,11.95,09/30/19 22:11,"245 Hill St, Los Angeles, CA 90001" +256118,AAA Batteries (4-pack),1,2.99,09/04/19 18:03,"457 10th St, Boston, MA 02215" +256119,AAA Batteries (4-pack),2,2.99,09/12/19 10:35,"806 Hill St, New York City, NY 10001" +256120,27in 4K Gaming Monitor,1,389.99,09/23/19 20:00,"906 Elm St, San Francisco, CA 94016" +256121,34in Ultrawide Monitor,1,379.99,09/03/19 20:16,"130 Forest St, San Francisco, CA 94016" +256122,Bose SoundSport Headphones,1,99.99,09/26/19 12:29,"702 Lake St, Dallas, TX 75001" +256123,Lightning Charging Cable,1,14.95,09/10/19 19:24,"867 Lincoln St, San Francisco, CA 94016" +256124,Apple Airpods Headphones,1,150,09/29/19 20:54,"700 2nd St, Los Angeles, CA 90001" +256125,Google Phone,1,600,09/22/19 15:16,"100 5th St, San Francisco, CA 94016" +256126,Lightning Charging Cable,1,14.95,09/09/19 16:54,"596 5th St, Portland, OR 97035" +256127,Lightning Charging Cable,1,14.95,09/02/19 12:01,"288 Hickory St, Los Angeles, CA 90001" +256128,ThinkPad Laptop,1,999.99,09/24/19 17:53,"424 11th St, Los Angeles, CA 90001" +256128,AAA Batteries (4-pack),1,2.99,09/24/19 17:53,"424 11th St, Los Angeles, CA 90001" +256129,Apple Airpods Headphones,1,150,09/30/19 21:19,"605 Maple St, San Francisco, CA 94016" +256130,Lightning Charging Cable,1,14.95,09/22/19 08:47,"89 River St, New York City, NY 10001" +256131,iPhone,1,700,09/08/19 21:51,"97 2nd St, San Francisco, CA 94016" +256132,AAA Batteries (4-pack),1,2.99,09/23/19 15:49,"523 Cedar St, Los Angeles, CA 90001" +256133,Bose SoundSport Headphones,1,99.99,09/28/19 14:40,"138 4th St, Austin, TX 73301" +256134,LG Washing Machine,1,600.0,09/03/19 20:59,"396 Highland St, Portland, OR 97035" +256135,USB-C Charging Cable,1,11.95,09/22/19 12:29,"403 9th St, Los Angeles, CA 90001" +256136,27in FHD Monitor,1,149.99,09/11/19 08:19,"518 Center St, San Francisco, CA 94016" +256137,AAA Batteries (4-pack),1,2.99,09/08/19 18:29,"279 Meadow St, Portland, OR 97035" +256138,AA Batteries (4-pack),1,3.84,09/02/19 22:19,"610 Adams St, New York City, NY 10001" +256139,iPhone,1,700,09/29/19 16:54,"860 Pine St, Atlanta, GA 30301" +256140,AAA Batteries (4-pack),3,2.99,09/15/19 14:10,"724 5th St, San Francisco, CA 94016" +256141,Bose SoundSport Headphones,1,99.99,09/08/19 12:16,"749 9th St, San Francisco, CA 94016" +256142,USB-C Charging Cable,2,11.95,09/06/19 11:22,"983 Walnut St, Atlanta, GA 30301" +256143,USB-C Charging Cable,1,11.95,09/14/19 16:53,"478 1st St, Los Angeles, CA 90001" +256144,iPhone,1,700,09/12/19 18:19,"711 Jackson St, Atlanta, GA 30301" +256144,Lightning Charging Cable,1,14.95,09/12/19 18:19,"711 Jackson St, Atlanta, GA 30301" +256145,USB-C Charging Cable,1,11.95,09/25/19 22:39,"306 Highland St, San Francisco, CA 94016" +256146,Bose SoundSport Headphones,1,99.99,09/07/19 16:52,"941 6th St, Atlanta, GA 30301" +256147,34in Ultrawide Monitor,1,379.99,09/15/19 16:05,"714 River St, San Francisco, CA 94016" +256148,AA Batteries (4-pack),1,3.84,09/28/19 20:17,"889 Lake St, Portland, OR 97035" +256149,Lightning Charging Cable,1,14.95,09/05/19 15:35,"820 Main St, San Francisco, CA 94016" +256150,Apple Airpods Headphones,1,150,09/05/19 21:20,"331 Jefferson St, San Francisco, CA 94016" +256151,Apple Airpods Headphones,1,150,09/28/19 19:49,"299 4th St, Portland, OR 97035" +256152,AA Batteries (4-pack),1,3.84,09/01/19 11:46,"420 11th St, Los Angeles, CA 90001" +256153,27in FHD Monitor,1,149.99,09/02/19 19:46,"871 Willow St, New York City, NY 10001" +256154,Flatscreen TV,1,300,09/26/19 23:29,"130 Sunset St, Portland, OR 97035" +256155,LG Dryer,1,600.0,09/25/19 23:17,"109 9th St, Boston, MA 02215" +256156,LG Washing Machine,1,600.0,09/16/19 18:26,"861 13th St, San Francisco, CA 94016" +256157,Wired Headphones,1,11.99,09/02/19 17:12,"938 1st St, Boston, MA 02215" +256158,Macbook Pro Laptop,1,1700,09/25/19 23:17,"577 West St, Boston, MA 02215" +256159,AA Batteries (4-pack),1,3.84,09/26/19 11:24,"433 Adams St, Los Angeles, CA 90001" +256160,AAA Batteries (4-pack),2,2.99,09/11/19 11:00,"448 Highland St, Atlanta, GA 30301" +256161,27in FHD Monitor,1,149.99,09/29/19 12:09,"375 Washington St, New York City, NY 10001" +256162,34in Ultrawide Monitor,1,379.99,09/19/19 13:26,"560 Lincoln St, Los Angeles, CA 90001" +256163,20in Monitor,1,109.99,09/26/19 19:18,"67 Walnut St, San Francisco, CA 94016" +256164,USB-C Charging Cable,1,11.95,09/04/19 14:56,"717 13th St, San Francisco, CA 94016" +256165,ThinkPad Laptop,1,999.99,09/05/19 18:58,"442 Dogwood St, Seattle, WA 98101" +256166,Flatscreen TV,1,300,09/07/19 19:35,"882 Park St, Boston, MA 02215" +256167,34in Ultrawide Monitor,1,379.99,09/17/19 09:19,"569 Wilson St, Seattle, WA 98101" +256168,Apple Airpods Headphones,1,150,09/23/19 21:23,"842 Center St, Austin, TX 73301" +256169,Wired Headphones,1,11.99,09/13/19 12:09,"180 Lincoln St, Dallas, TX 75001" +256170,Apple Airpods Headphones,1,150,09/14/19 21:57,"578 Sunset St, New York City, NY 10001" +256171,USB-C Charging Cable,1,11.95,09/13/19 15:44,"925 8th St, Atlanta, GA 30301" +256171,Wired Headphones,1,11.99,09/13/19 15:44,"925 8th St, Atlanta, GA 30301" +256172,20in Monitor,1,109.99,09/10/19 19:43,"390 Willow St, Boston, MA 02215" +256173,AA Batteries (4-pack),1,3.84,09/27/19 15:07,"661 Spruce St, Los Angeles, CA 90001" +256174,USB-C Charging Cable,1,11.95,09/21/19 22:03,"895 Center St, Los Angeles, CA 90001" +256175,AA Batteries (4-pack),1,3.84,09/25/19 18:11,"990 Willow St, San Francisco, CA 94016" +256176,Macbook Pro Laptop,1,1700,09/22/19 17:21,"724 13th St, San Francisco, CA 94016" +256177,Google Phone,1,600,09/23/19 09:07,"972 1st St, Boston, MA 02215" +256178,AA Batteries (4-pack),3,3.84,09/01/19 17:06,"871 Jefferson St, New York City, NY 10001" +256179,USB-C Charging Cable,1,11.95,09/12/19 21:05,"855 Jefferson St, Seattle, WA 98101" +256180,20in Monitor,1,109.99,09/03/19 16:21,"176 14th St, Atlanta, GA 30301" +256181,Macbook Pro Laptop,1,1700,09/27/19 21:47,"189 Ridge St, San Francisco, CA 94016" +256182,Bose SoundSport Headphones,2,99.99,09/27/19 18:33,"59 Dogwood St, Los Angeles, CA 90001" +256183,34in Ultrawide Monitor,1,379.99,09/04/19 14:28,"328 Elm St, Dallas, TX 75001" +256184,iPhone,1,700,09/21/19 08:45,"752 12th St, New York City, NY 10001" +256185,Bose SoundSport Headphones,1,99.99,09/02/19 21:40,"504 Lakeview St, Portland, ME 04101" +256186,LG Washing Machine,1,600.0,09/03/19 13:03,"910 Chestnut St, Boston, MA 02215" +256187,Lightning Charging Cable,1,14.95,09/24/19 17:31,"994 Lakeview St, Boston, MA 02215" +256188,AAA Batteries (4-pack),1,2.99,09/25/19 23:32,"650 Lake St, Dallas, TX 75001" +256189,iPhone,1,700,09/05/19 10:09,"857 Wilson St, Seattle, WA 98101" +256190,Google Phone,1,600,09/30/19 19:49,"734 9th St, Portland, OR 97035" +256191,Google Phone,1,600,09/08/19 23:50,"234 Highland St, Boston, MA 02215" +256192,Lightning Charging Cable,1,14.95,09/14/19 15:03,"725 Center St, Los Angeles, CA 90001" +256193,Bose SoundSport Headphones,1,99.99,09/14/19 14:36,"508 Jefferson St, New York City, NY 10001" +256194,AAA Batteries (4-pack),1,2.99,09/03/19 23:19,"48 Jackson St, New York City, NY 10001" +256195,USB-C Charging Cable,1,11.95,09/02/19 20:28,"184 Lakeview St, Dallas, TX 75001" +256196,AAA Batteries (4-pack),1,2.99,09/09/19 17:46,"347 8th St, Seattle, WA 98101" +256197,AA Batteries (4-pack),1,3.84,09/24/19 13:16,"332 11th St, Los Angeles, CA 90001" +256198,27in 4K Gaming Monitor,1,389.99,09/01/19 09:49,"552 13th St, New York City, NY 10001" +256199,Wired Headphones,1,11.99,09/23/19 17:50,"727 Wilson St, Los Angeles, CA 90001" +256200,AAA Batteries (4-pack),1,2.99,09/24/19 17:16,"263 Jefferson St, Dallas, TX 75001" +256201,27in 4K Gaming Monitor,1,389.99,09/02/19 01:06,"792 West St, San Francisco, CA 94016" +256202,AAA Batteries (4-pack),1,2.99,09/19/19 18:33,"819 9th St, Seattle, WA 98101" +256203,AAA Batteries (4-pack),1,2.99,09/25/19 08:06,"958 Maple St, Boston, MA 02215" +256204,Google Phone,1,600,09/17/19 19:18,"208 Spruce St, Dallas, TX 75001" +256204,Wired Headphones,1,11.99,09/17/19 19:18,"208 Spruce St, Dallas, TX 75001" +256205,AA Batteries (4-pack),1,3.84,09/10/19 10:41,"316 Adams St, San Francisco, CA 94016" +256206,AA Batteries (4-pack),1,3.84,09/17/19 02:32,"671 Lincoln St, San Francisco, CA 94016" +256207,USB-C Charging Cable,1,11.95,09/30/19 19:39,"353 4th St, Boston, MA 02215" +256208,AA Batteries (4-pack),1,3.84,09/07/19 23:25,"59 Washington St, San Francisco, CA 94016" +256209,27in 4K Gaming Monitor,1,389.99,09/26/19 23:07,"814 Willow St, Atlanta, GA 30301" +256210,Apple Airpods Headphones,1,150,09/18/19 18:45,"205 Lake St, Dallas, TX 75001" +256211,AAA Batteries (4-pack),1,2.99,09/09/19 14:42,"328 13th St, Los Angeles, CA 90001" +256212,Wired Headphones,1,11.99,09/30/19 07:12,"702 Walnut St, Austin, TX 73301" +256213,Flatscreen TV,1,300,09/22/19 18:00,"149 Washington St, San Francisco, CA 94016" +256214,AA Batteries (4-pack),1,3.84,09/23/19 09:58,"698 Elm St, Boston, MA 02215" +256215,Lightning Charging Cable,1,14.95,09/16/19 15:52,"911 10th St, Seattle, WA 98101" +256216,Bose SoundSport Headphones,1,99.99,09/08/19 10:22,"278 Main St, Atlanta, GA 30301" +256217,Flatscreen TV,1,300,09/13/19 17:20,"171 Willow St, Seattle, WA 98101" +256218,AAA Batteries (4-pack),2,2.99,09/05/19 15:05,"777 Hickory St, Boston, MA 02215" +256219,Bose SoundSport Headphones,1,99.99,09/10/19 20:57,"688 Forest St, San Francisco, CA 94016" +256220,AAA Batteries (4-pack),3,2.99,09/27/19 19:23,"15 8th St, Dallas, TX 75001" +256221,AAA Batteries (4-pack),1,2.99,09/12/19 13:46,"884 13th St, Atlanta, GA 30301" +256222,Wired Headphones,1,11.99,09/19/19 16:51,"62 13th St, Los Angeles, CA 90001" +256223,Lightning Charging Cable,1,14.95,09/08/19 20:18,"780 Johnson St, New York City, NY 10001" +256224,Apple Airpods Headphones,1,150,09/06/19 15:30,"512 5th St, San Francisco, CA 94016" +256224,Flatscreen TV,1,300,09/06/19 15:30,"512 5th St, San Francisco, CA 94016" +256225,AA Batteries (4-pack),1,3.84,09/05/19 21:56,"401 West St, Atlanta, GA 30301" +256226,34in Ultrawide Monitor,1,379.99,09/01/19 13:40,"745 River St, Seattle, WA 98101" +256227,Lightning Charging Cable,1,14.95,09/29/19 12:54,"693 Jackson St, Seattle, WA 98101" +256228,AA Batteries (4-pack),1,3.84,09/22/19 13:06,"185 6th St, Los Angeles, CA 90001" +256229,USB-C Charging Cable,1,11.95,09/02/19 13:17,"367 Ridge St, Seattle, WA 98101" +256230,Macbook Pro Laptop,1,1700,09/22/19 19:20,"363 Washington St, Boston, MA 02215" +256231,34in Ultrawide Monitor,1,379.99,09/02/19 10:56,"191 9th St, San Francisco, CA 94016" +256232,Bose SoundSport Headphones,1,99.99,09/16/19 10:40,"12 Church St, Atlanta, GA 30301" +256233,AAA Batteries (4-pack),1,2.99,09/14/19 22:45,"802 Washington St, San Francisco, CA 94016" +256234,iPhone,1,700,09/07/19 21:10,"880 Highland St, Boston, MA 02215" +256235,Bose SoundSport Headphones,1,99.99,09/09/19 18:59,"83 Ridge St, San Francisco, CA 94016" +256236,27in 4K Gaming Monitor,1,389.99,09/04/19 18:57,"342 4th St, Los Angeles, CA 90001" +256237,Lightning Charging Cable,1,14.95,09/09/19 12:15,"625 Highland St, Los Angeles, CA 90001" +256238,AA Batteries (4-pack),1,3.84,09/28/19 12:06,"590 12th St, Dallas, TX 75001" +256239,AAA Batteries (4-pack),1,2.99,09/03/19 12:43,"574 Elm St, San Francisco, CA 94016" +256240,AA Batteries (4-pack),1,3.84,09/30/19 21:05,"363 Elm St, San Francisco, CA 94016" +256241,ThinkPad Laptop,1,999.99,09/26/19 12:54,"680 Chestnut St, Seattle, WA 98101" +256242,USB-C Charging Cable,1,11.95,09/23/19 18:52,"330 Sunset St, Portland, OR 97035" +256243,34in Ultrawide Monitor,1,379.99,09/02/19 09:52,"513 4th St, Dallas, TX 75001" +256244,AA Batteries (4-pack),2,3.84,09/20/19 13:58,"532 10th St, New York City, NY 10001" +256245,Apple Airpods Headphones,1,150,09/28/19 16:30,"29 8th St, Austin, TX 73301" +256246,ThinkPad Laptop,1,999.99,09/19/19 18:41,"184 Adams St, Los Angeles, CA 90001" +256247,Bose SoundSport Headphones,1,99.99,09/08/19 16:27,"496 North St, Seattle, WA 98101" +256248,USB-C Charging Cable,1,11.95,09/29/19 08:24,"861 Pine St, Atlanta, GA 30301" +256249,Google Phone,1,600,09/30/19 04:48,"881 Wilson St, San Francisco, CA 94016" +256250,Lightning Charging Cable,1,14.95,09/29/19 13:01,"183 River St, Los Angeles, CA 90001" +256251,Vareebadd Phone,1,400,09/01/19 22:13,"756 12th St, Boston, MA 02215" +256251,Bose SoundSport Headphones,1,99.99,09/01/19 22:13,"756 12th St, Boston, MA 02215" +256252,Bose SoundSport Headphones,1,99.99,09/21/19 09:11,"9 Washington St, Atlanta, GA 30301" +256253,Lightning Charging Cable,1,14.95,09/27/19 19:01,"453 4th St, Seattle, WA 98101" +256254,Bose SoundSport Headphones,1,99.99,09/10/19 14:15,"114 Lakeview St, Los Angeles, CA 90001" +256255,AAA Batteries (4-pack),2,2.99,09/20/19 12:58,"19 Forest St, Los Angeles, CA 90001" +256256,Lightning Charging Cable,1,14.95,09/30/19 19:33,"639 4th St, New York City, NY 10001" +256257,ThinkPad Laptop,1,999.99,09/27/19 22:02,"469 Forest St, Portland, ME 04101" +256258,27in FHD Monitor,1,149.99,09/26/19 00:02,"582 Wilson St, Boston, MA 02215" +256259,Wired Headphones,1,11.99,09/04/19 13:25,"720 Jefferson St, Boston, MA 02215" +256260,AA Batteries (4-pack),1,3.84,09/15/19 16:33,"549 Hill St, Los Angeles, CA 90001" +256261,Macbook Pro Laptop,1,1700,09/16/19 10:58,"598 5th St, Los Angeles, CA 90001" +256262,iPhone,1,700,09/16/19 14:56,"588 Johnson St, Portland, OR 97035" +256263,27in 4K Gaming Monitor,1,389.99,09/07/19 19:15,"125 Washington St, Los Angeles, CA 90001" +256264,34in Ultrawide Monitor,1,379.99,09/11/19 22:04,"968 8th St, Boston, MA 02215" +256265,Lightning Charging Cable,1,14.95,09/29/19 21:09,"214 Adams St, Los Angeles, CA 90001" +256266,Apple Airpods Headphones,1,150,09/22/19 09:59,"350 River St, San Francisco, CA 94016" +256266,AA Batteries (4-pack),1,3.84,09/22/19 09:59,"350 River St, San Francisco, CA 94016" +256267,AAA Batteries (4-pack),2,2.99,09/02/19 01:24,"612 1st St, Los Angeles, CA 90001" +256268,Lightning Charging Cable,1,14.95,09/16/19 12:21,"742 Forest St, Austin, TX 73301" +256269,Apple Airpods Headphones,1,150,09/09/19 10:34,"370 5th St, Austin, TX 73301" +256270,27in FHD Monitor,1,149.99,09/26/19 12:21,"195 8th St, Portland, OR 97035" +256271,AAA Batteries (4-pack),1,2.99,09/29/19 11:24,"985 6th St, Dallas, TX 75001" +256272,USB-C Charging Cable,1,11.95,09/26/19 22:29,"423 12th St, Portland, OR 97035" +256273,Wired Headphones,1,11.99,09/21/19 20:12,"419 Jefferson St, Los Angeles, CA 90001" +256274,AAA Batteries (4-pack),1,2.99,09/19/19 10:45,"925 1st St, Los Angeles, CA 90001" +256275,Apple Airpods Headphones,1,150,09/17/19 15:42,"542 Main St, San Francisco, CA 94016" +256276,AA Batteries (4-pack),1,3.84,09/14/19 17:52,"187 Highland St, Los Angeles, CA 90001" +256277,27in FHD Monitor,1,149.99,09/21/19 11:50,"141 Highland St, New York City, NY 10001" +256278,AAA Batteries (4-pack),2,2.99,09/08/19 11:25,"68 Wilson St, Los Angeles, CA 90001" +256279,AAA Batteries (4-pack),1,2.99,09/17/19 17:57,"144 Highland St, New York City, NY 10001" +256280,AAA Batteries (4-pack),2,2.99,09/17/19 10:00,"484 14th St, Boston, MA 02215" +256281,Bose SoundSport Headphones,1,99.99,09/16/19 23:05,"254 13th St, San Francisco, CA 94016" +256281,AAA Batteries (4-pack),1,2.99,09/16/19 23:05,"254 13th St, San Francisco, CA 94016" +256282,27in FHD Monitor,1,149.99,09/17/19 20:46,"965 Sunset St, New York City, NY 10001" +256283,AAA Batteries (4-pack),2,2.99,09/10/19 13:23,"230 North St, Seattle, WA 98101" +256284,AAA Batteries (4-pack),2,2.99,09/01/19 18:52,"583 Adams St, San Francisco, CA 94016" +256285,Flatscreen TV,1,300,09/10/19 19:12,"308 2nd St, Portland, OR 97035" +256286,USB-C Charging Cable,1,11.95,09/19/19 18:25,"628 Lake St, Los Angeles, CA 90001" +256287,Apple Airpods Headphones,1,150,09/30/19 17:19,"486 Dogwood St, New York City, NY 10001" +256288,Wired Headphones,2,11.99,09/21/19 14:47,"231 Lakeview St, San Francisco, CA 94016" +256289,USB-C Charging Cable,1,11.95,09/04/19 13:31,"566 Lake St, San Francisco, CA 94016" +256290,Apple Airpods Headphones,1,150,09/18/19 20:13,"204 Jackson St, Seattle, WA 98101" +256291,ThinkPad Laptop,1,999.99,09/27/19 23:47,"151 River St, San Francisco, CA 94016" +256292,AAA Batteries (4-pack),1,2.99,09/22/19 17:22,"296 Maple St, Austin, TX 73301" +256293,USB-C Charging Cable,1,11.95,09/22/19 17:54,"556 River St, New York City, NY 10001" +256294,Wired Headphones,1,11.99,09/26/19 18:21,"28 Meadow St, Dallas, TX 75001" +256295,Apple Airpods Headphones,1,150,09/07/19 23:03,"517 Elm St, Boston, MA 02215" +256296,Bose SoundSport Headphones,1,99.99,09/12/19 11:59,"516 Sunset St, Seattle, WA 98101" +256297,Lightning Charging Cable,1,14.95,09/06/19 11:26,"784 Maple St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +256298,Apple Airpods Headphones,1,150,09/11/19 01:55,"700 Chestnut St, San Francisco, CA 94016" +256299,Apple Airpods Headphones,1,150,09/23/19 10:01,"710 9th St, Atlanta, GA 30301" +256300,USB-C Charging Cable,2,11.95,09/10/19 07:10,"523 Dogwood St, San Francisco, CA 94016" +256300,AAA Batteries (4-pack),2,2.99,09/10/19 07:10,"523 Dogwood St, San Francisco, CA 94016" +256301,USB-C Charging Cable,1,11.95,09/27/19 21:25,"327 Meadow St, Portland, ME 04101" +256302,27in FHD Monitor,1,149.99,09/16/19 18:46,"808 Cedar St, Los Angeles, CA 90001" +256303,USB-C Charging Cable,1,11.95,09/13/19 19:55,"447 7th St, Boston, MA 02215" +256304,Apple Airpods Headphones,1,150,09/03/19 06:12,"908 Adams St, Los Angeles, CA 90001" +256305,Lightning Charging Cable,1,14.95,09/04/19 14:59,"689 Dogwood St, Atlanta, GA 30301" +256306,Lightning Charging Cable,1,14.95,09/25/19 20:19,"786 Spruce St, Boston, MA 02215" +256307,AA Batteries (4-pack),3,3.84,09/14/19 11:20,"482 14th St, Boston, MA 02215" +256308,Wired Headphones,1,11.99,09/07/19 12:27,"365 Center St, Boston, MA 02215" +256309,Flatscreen TV,1,300,09/09/19 15:53,"965 12th St, San Francisco, CA 94016" +256310,USB-C Charging Cable,1,11.95,09/04/19 23:36,"698 Elm St, San Francisco, CA 94016" +256311,AA Batteries (4-pack),1,3.84,09/19/19 08:53,"580 14th St, Seattle, WA 98101" +256312,Lightning Charging Cable,1,14.95,09/04/19 22:32,"340 Dogwood St, New York City, NY 10001" +256313,AAA Batteries (4-pack),1,2.99,09/12/19 08:16,"425 Cedar St, Atlanta, GA 30301" +256314,AAA Batteries (4-pack),5,2.99,09/01/19 15:38,"393 Park St, Dallas, TX 75001" +256315,USB-C Charging Cable,1,11.95,09/20/19 17:41,"95 River St, Atlanta, GA 30301" +256316,Lightning Charging Cable,1,14.95,09/26/19 18:11,"875 12th St, San Francisco, CA 94016" +256317,Bose SoundSport Headphones,1,99.99,09/25/19 11:06,"340 6th St, San Francisco, CA 94016" +256318,AAA Batteries (4-pack),1,2.99,09/23/19 19:32,"800 5th St, Los Angeles, CA 90001" +256319,27in 4K Gaming Monitor,1,389.99,09/30/19 17:15,"875 North St, San Francisco, CA 94016" +256320,Macbook Pro Laptop,1,1700,09/05/19 13:47,"605 Willow St, San Francisco, CA 94016" +256321,Lightning Charging Cable,1,14.95,09/02/19 18:21,"803 6th St, Atlanta, GA 30301" +256322,Apple Airpods Headphones,1,150,09/17/19 18:32,"678 Cherry St, Boston, MA 02215" +256323,34in Ultrawide Monitor,1,379.99,09/15/19 18:05,"708 Madison St, Los Angeles, CA 90001" +256324,Lightning Charging Cable,1,14.95,09/23/19 23:50,"407 9th St, New York City, NY 10001" +256325,USB-C Charging Cable,1,11.95,09/22/19 22:29,"503 12th St, Austin, TX 73301" +256326,27in FHD Monitor,1,149.99,09/23/19 02:17,"130 7th St, Austin, TX 73301" +256327,AAA Batteries (4-pack),1,2.99,09/06/19 13:56,"196 Church St, Dallas, TX 75001" +256328,Flatscreen TV,1,300,09/15/19 12:35,"853 Cherry St, Boston, MA 02215" +256329,USB-C Charging Cable,1,11.95,09/25/19 09:04,"497 6th St, San Francisco, CA 94016" +256330,Wired Headphones,1,11.99,09/23/19 21:44,"700 Jackson St, Dallas, TX 75001" +256331,ThinkPad Laptop,1,999.99,09/04/19 09:28,"543 Maple St, Los Angeles, CA 90001" +256332,AAA Batteries (4-pack),2,2.99,09/23/19 23:54,"282 4th St, Los Angeles, CA 90001" +256333,AAA Batteries (4-pack),1,2.99,09/26/19 11:36,"73 Cedar St, Boston, MA 02215" +256333,27in 4K Gaming Monitor,1,389.99,09/26/19 11:36,"73 Cedar St, Boston, MA 02215" +256334,USB-C Charging Cable,2,11.95,09/28/19 19:46,"100 Hickory St, Boston, MA 02215" +256335,27in 4K Gaming Monitor,1,389.99,09/20/19 16:46,"618 West St, New York City, NY 10001" +256336,Lightning Charging Cable,1,14.95,09/15/19 18:52,"248 Highland St, Dallas, TX 75001" +256337,Bose SoundSport Headphones,1,99.99,09/13/19 18:31,"918 Forest St, New York City, NY 10001" +256338,Lightning Charging Cable,1,14.95,09/19/19 08:47,"725 Jefferson St, New York City, NY 10001" +256339,27in FHD Monitor,1,149.99,09/04/19 13:40,"756 1st St, Portland, OR 97035" +256340,AAA Batteries (4-pack),2,2.99,09/08/19 08:14,"714 9th St, Los Angeles, CA 90001" +256341,27in 4K Gaming Monitor,1,389.99,09/08/19 19:09,"824 Elm St, Dallas, TX 75001" +256342,27in 4K Gaming Monitor,1,389.99,09/02/19 10:21,"846 9th St, San Francisco, CA 94016" +256343,AA Batteries (4-pack),3,3.84,09/27/19 15:02,"734 West St, Seattle, WA 98101" +256344,34in Ultrawide Monitor,1,379.99,09/20/19 19:33,"836 Elm St, Seattle, WA 98101" +256345,Wired Headphones,1,11.99,09/23/19 11:48,"74 1st St, Seattle, WA 98101" +256346,Macbook Pro Laptop,1,1700,09/20/19 14:53,"722 Highland St, San Francisco, CA 94016" +256347,USB-C Charging Cable,2,11.95,09/16/19 19:05,"209 10th St, San Francisco, CA 94016" +256348,27in FHD Monitor,1,149.99,09/02/19 10:14,"142 Main St, San Francisco, CA 94016" +256349,Bose SoundSport Headphones,1,99.99,09/16/19 12:49,"659 Pine St, New York City, NY 10001" +256350,Vareebadd Phone,1,400,09/29/19 15:43,"306 Lakeview St, Austin, TX 73301" +256351,AA Batteries (4-pack),1,3.84,09/08/19 09:42,"736 7th St, Portland, OR 97035" +256352,Macbook Pro Laptop,1,1700,09/25/19 23:58,"316 Park St, New York City, NY 10001" +256353,Macbook Pro Laptop,1,1700,09/23/19 12:44,"687 Meadow St, New York City, NY 10001" +256354,Lightning Charging Cable,1,14.95,09/23/19 22:34,"653 Walnut St, Boston, MA 02215" +256355,Wired Headphones,1,11.99,09/14/19 14:53,"451 Pine St, New York City, NY 10001" +256356,Apple Airpods Headphones,1,150,09/09/19 18:29,"180 Johnson St, San Francisco, CA 94016" +256357,27in FHD Monitor,1,149.99,09/29/19 19:44,"250 Forest St, Boston, MA 02215" +256358,AA Batteries (4-pack),1,3.84,09/13/19 12:46,"762 Madison St, San Francisco, CA 94016" +256359,27in FHD Monitor,1,149.99,09/05/19 16:42,"280 Highland St, San Francisco, CA 94016" +256360,Lightning Charging Cable,1,14.95,09/01/19 19:00,"515 1st St, San Francisco, CA 94016" +256361,Lightning Charging Cable,1,14.95,09/08/19 18:23,"162 Washington St, San Francisco, CA 94016" +256361,AA Batteries (4-pack),1,3.84,09/08/19 18:23,"162 Washington St, San Francisco, CA 94016" +256362,LG Dryer,1,600.0,09/25/19 19:36,"917 Spruce St, San Francisco, CA 94016" +256363,iPhone,1,700,09/10/19 21:45,"35 1st St, Atlanta, GA 30301" +256364,Wired Headphones,1,11.99,09/28/19 21:19,"611 Jackson St, Los Angeles, CA 90001" +256365,USB-C Charging Cable,1,11.95,09/16/19 10:30,"414 Pine St, Los Angeles, CA 90001" +256366,Wired Headphones,1,11.99,09/07/19 14:33,"712 Cedar St, Los Angeles, CA 90001" +256367,USB-C Charging Cable,2,11.95,09/20/19 13:30,"8 Meadow St, Atlanta, GA 30301" +256368,AA Batteries (4-pack),2,3.84,09/07/19 14:45,"288 Adams St, Los Angeles, CA 90001" +256369,Wired Headphones,1,11.99,09/28/19 18:38,"880 Lakeview St, San Francisco, CA 94016" +256370,USB-C Charging Cable,1,11.95,09/28/19 15:28,"904 9th St, San Francisco, CA 94016" +256371,AA Batteries (4-pack),1,3.84,09/15/19 14:55,"827 Forest St, San Francisco, CA 94016" +256372,AA Batteries (4-pack),1,3.84,09/21/19 19:49,"17 Meadow St, San Francisco, CA 94016" +256373,USB-C Charging Cable,1,11.95,09/03/19 13:12,"157 Hickory St, San Francisco, CA 94016" +256374,Flatscreen TV,1,300,09/04/19 13:58,"124 Elm St, Seattle, WA 98101" +256375,27in 4K Gaming Monitor,1,389.99,09/24/19 00:50,"177 Jefferson St, New York City, NY 10001" +256376,AA Batteries (4-pack),1,3.84,09/02/19 13:55,"394 Elm St, Austin, TX 73301" +256377,AAA Batteries (4-pack),1,2.99,09/30/19 21:14,"284 Lake St, New York City, NY 10001" +256378,Bose SoundSport Headphones,1,99.99,09/19/19 22:16,"54 Hickory St, New York City, NY 10001" +256379,27in FHD Monitor,1,149.99,09/16/19 16:07,"715 4th St, San Francisco, CA 94016" +256380,iPhone,1,700,09/10/19 21:23,"501 4th St, New York City, NY 10001" +256380,Lightning Charging Cable,1,14.95,09/10/19 21:23,"501 4th St, New York City, NY 10001" +256381,AAA Batteries (4-pack),1,2.99,09/16/19 12:26,"473 Cedar St, San Francisco, CA 94016" +256382,20in Monitor,1,109.99,09/11/19 13:57,"841 River St, Atlanta, GA 30301" +256383,AA Batteries (4-pack),1,3.84,09/08/19 14:47,"719 13th St, Boston, MA 02215" +256384,AA Batteries (4-pack),1,3.84,09/04/19 17:20,"738 Walnut St, Atlanta, GA 30301" +256385,AA Batteries (4-pack),1,3.84,09/01/19 22:12,"866 Adams St, Atlanta, GA 30301" +256386,20in Monitor,1,109.99,09/29/19 08:29,"798 2nd St, Los Angeles, CA 90001" +256387,Wired Headphones,1,11.99,09/07/19 00:10,"875 Main St, Seattle, WA 98101" +256388,Flatscreen TV,1,300,09/30/19 10:13,"123 2nd St, San Francisco, CA 94016" +256389,AA Batteries (4-pack),1,3.84,09/22/19 17:10,"927 Meadow St, Boston, MA 02215" +256390,AA Batteries (4-pack),1,3.84,09/04/19 08:19,"685 12th St, Atlanta, GA 30301" +256391,AAA Batteries (4-pack),4,2.99,09/02/19 07:46,"382 South St, Atlanta, GA 30301" +256392,Wired Headphones,1,11.99,09/04/19 14:35,"623 Madison St, Boston, MA 02215" +256393,AAA Batteries (4-pack),1,2.99,09/11/19 13:57,"892 11th St, Portland, OR 97035" +256394,ThinkPad Laptop,1,999.99,09/23/19 18:28,"471 Sunset St, Boston, MA 02215" +256395,Lightning Charging Cable,1,14.95,09/13/19 19:33,"740 Meadow St, Dallas, TX 75001" +256396,USB-C Charging Cable,1,11.95,09/23/19 14:49,"771 Forest St, Dallas, TX 75001" +256397,Lightning Charging Cable,1,14.95,09/10/19 16:48,"324 Chestnut St, Atlanta, GA 30301" +256398,USB-C Charging Cable,1,11.95,09/23/19 13:36,"462 Dogwood St, San Francisco, CA 94016" +256399,Google Phone,1,600,09/17/19 21:56,"951 13th St, New York City, NY 10001" +256399,Wired Headphones,1,11.99,09/17/19 21:56,"951 13th St, New York City, NY 10001" +256400,iPhone,1,700,09/05/19 20:36,"225 Center St, Atlanta, GA 30301" +256400,Lightning Charging Cable,1,14.95,09/05/19 20:36,"225 Center St, Atlanta, GA 30301" +256401,AAA Batteries (4-pack),1,2.99,09/14/19 18:31,"288 Madison St, San Francisco, CA 94016" +256402,Apple Airpods Headphones,1,150,09/02/19 13:12,"334 2nd St, San Francisco, CA 94016" +256403,Wired Headphones,1,11.99,09/06/19 11:45,"108 River St, Boston, MA 02215" +256404,AA Batteries (4-pack),3,3.84,09/01/19 11:02,"185 12th St, New York City, NY 10001" +256405,Bose SoundSport Headphones,1,99.99,09/24/19 20:05,"266 Lakeview St, San Francisco, CA 94016" +256406,Lightning Charging Cable,1,14.95,09/18/19 22:24,"568 Sunset St, Atlanta, GA 30301" +256407,Flatscreen TV,1,300,09/14/19 19:36,"213 Hill St, New York City, NY 10001" +256408,34in Ultrawide Monitor,1,379.99,09/19/19 10:18,"934 River St, Boston, MA 02215" +256409,27in 4K Gaming Monitor,1,389.99,09/23/19 08:56,"232 Lake St, Dallas, TX 75001" +256410,Bose SoundSport Headphones,1,99.99,09/20/19 17:27,"710 Adams St, New York City, NY 10001" +256411,Lightning Charging Cable,1,14.95,09/04/19 18:53,"649 Chestnut St, Los Angeles, CA 90001" +256412,Flatscreen TV,1,300,09/13/19 13:52,"309 Park St, San Francisco, CA 94016" +256413,27in 4K Gaming Monitor,1,389.99,09/11/19 00:38,"254 Chestnut St, New York City, NY 10001" +256414,Lightning Charging Cable,1,14.95,09/17/19 13:16,"658 Park St, San Francisco, CA 94016" +256415,Wired Headphones,1,11.99,09/26/19 14:51,"884 River St, San Francisco, CA 94016" +256416,Lightning Charging Cable,1,14.95,09/18/19 10:46,"402 Jefferson St, San Francisco, CA 94016" +256417,Google Phone,1,600,09/09/19 20:37,"422 West St, Boston, MA 02215" +256418,Apple Airpods Headphones,1,150,09/09/19 20:54,"686 Ridge St, Portland, OR 97035" +256419,USB-C Charging Cable,1,11.95,09/21/19 14:49,"568 Meadow St, New York City, NY 10001" +256420,iPhone,1,700,09/29/19 17:48,"839 Jefferson St, Los Angeles, CA 90001" +256421,Wired Headphones,1,11.99,09/25/19 20:22,"268 4th St, Dallas, TX 75001" +256422,AAA Batteries (4-pack),1,2.99,09/30/19 12:40,"568 Hill St, Seattle, WA 98101" +256423,Lightning Charging Cable,1,14.95,09/22/19 15:43,"637 11th St, Atlanta, GA 30301" +256424,20in Monitor,1,109.99,09/30/19 19:59,"22 Spruce St, Dallas, TX 75001" +256425,Apple Airpods Headphones,1,150,09/29/19 13:23,"303 Elm St, Dallas, TX 75001" +256426,AA Batteries (4-pack),1,3.84,09/28/19 01:18,"581 Center St, Seattle, WA 98101" +256427,27in 4K Gaming Monitor,1,389.99,09/18/19 14:36,"154 12th St, New York City, NY 10001" +256428,Lightning Charging Cable,1,14.95,09/17/19 13:11,"48 Meadow St, Boston, MA 02215" +256429,Vareebadd Phone,1,400,09/19/19 19:03,"687 Spruce St, Dallas, TX 75001" +256430,Apple Airpods Headphones,1,150,09/24/19 17:57,"331 8th St, Boston, MA 02215" +256431,USB-C Charging Cable,1,11.95,09/28/19 11:27,"773 River St, Portland, OR 97035" +256432,AA Batteries (4-pack),3,3.84,09/04/19 01:15,"17 Highland St, New York City, NY 10001" +256433,AA Batteries (4-pack),4,3.84,09/25/19 17:25,"739 Hill St, Los Angeles, CA 90001" +256434,20in Monitor,1,109.99,09/17/19 13:22,"436 1st St, San Francisco, CA 94016" +256435,Bose SoundSport Headphones,1,99.99,09/02/19 16:03,"490 Hill St, Seattle, WA 98101" +256436,Wired Headphones,1,11.99,09/02/19 10:47,"573 Sunset St, New York City, NY 10001" +256437,USB-C Charging Cable,1,11.95,09/23/19 15:16,"261 Walnut St, Seattle, WA 98101" +256438,Flatscreen TV,1,300,09/14/19 20:46,"375 Ridge St, Los Angeles, CA 90001" +256439,27in 4K Gaming Monitor,1,389.99,09/28/19 12:01,"714 Cedar St, Austin, TX 73301" +256440,Bose SoundSport Headphones,1,99.99,09/20/19 19:22,"950 Spruce St, Los Angeles, CA 90001" +256441,AA Batteries (4-pack),1,3.84,09/11/19 11:35,"524 Main St, Boston, MA 02215" +256442,Google Phone,1,600,09/25/19 09:37,"197 Lake St, Dallas, TX 75001" +256443,AA Batteries (4-pack),1,3.84,09/28/19 10:56,"603 13th St, San Francisco, CA 94016" +256444,Apple Airpods Headphones,1,150,09/01/19 19:22,"789 Walnut St, San Francisco, CA 94016" +256445,AAA Batteries (4-pack),1,2.99,09/16/19 21:23,"445 6th St, Boston, MA 02215" +256446,USB-C Charging Cable,1,11.95,09/12/19 13:14,"840 9th St, San Francisco, CA 94016" +256447,34in Ultrawide Monitor,1,379.99,09/03/19 21:22,"138 Center St, Atlanta, GA 30301" +256448,Wired Headphones,1,11.99,09/12/19 01:13,"153 Dogwood St, San Francisco, CA 94016" +256449,Lightning Charging Cable,1,14.95,09/29/19 13:40,"505 Highland St, Seattle, WA 98101" +256450,34in Ultrawide Monitor,1,379.99,09/16/19 12:28,"295 Hickory St, Atlanta, GA 30301" +256451,Wired Headphones,1,11.99,09/10/19 20:56,"176 Ridge St, New York City, NY 10001" +256452,AA Batteries (4-pack),1,3.84,09/02/19 04:50,"873 Jackson St, San Francisco, CA 94016" +256453,Lightning Charging Cable,1,14.95,09/07/19 11:29,"322 Spruce St, Portland, OR 97035" +256454,AAA Batteries (4-pack),1,2.99,09/17/19 19:49,"365 Walnut St, Boston, MA 02215" +256455,Wired Headphones,1,11.99,09/26/19 20:25,"603 Pine St, Los Angeles, CA 90001" +256456,AAA Batteries (4-pack),1,2.99,09/17/19 23:49,"620 Pine St, Dallas, TX 75001" +256457,Flatscreen TV,1,300,09/09/19 12:31,"674 Pine St, New York City, NY 10001" +256458,AAA Batteries (4-pack),2,2.99,09/02/19 16:01,"112 7th St, New York City, NY 10001" +256458,27in 4K Gaming Monitor,1,389.99,09/02/19 16:01,"112 7th St, New York City, NY 10001" +256459,Lightning Charging Cable,1,14.95,09/04/19 19:04,"991 Sunset St, Portland, OR 97035" +256460,AAA Batteries (4-pack),1,2.99,09/22/19 16:16,"741 Sunset St, Austin, TX 73301" +256461,USB-C Charging Cable,1,11.95,09/24/19 15:26,"899 4th St, Portland, OR 97035" +256462,34in Ultrawide Monitor,1,379.99,09/20/19 21:02,"67 Lake St, Portland, ME 04101" +256463,Lightning Charging Cable,1,14.95,09/16/19 19:32,"637 South St, Boston, MA 02215" +256464,Lightning Charging Cable,1,14.95,09/17/19 14:56,"879 Walnut St, Seattle, WA 98101" +256465,Apple Airpods Headphones,1,150,09/14/19 15:58,"405 Forest St, San Francisco, CA 94016" +256466,Lightning Charging Cable,1,14.95,09/23/19 00:08,"246 Hickory St, San Francisco, CA 94016" +256467,AAA Batteries (4-pack),3,2.99,09/04/19 18:42,"672 Lakeview St, New York City, NY 10001" +256468,34in Ultrawide Monitor,1,379.99,09/03/19 10:03,"579 11th St, Boston, MA 02215" +256469,Apple Airpods Headphones,1,150,09/09/19 14:48,"62 8th St, San Francisco, CA 94016" +256470,Wired Headphones,1,11.99,09/10/19 10:44,"944 Johnson St, Seattle, WA 98101" +256471,AAA Batteries (4-pack),1,2.99,09/07/19 00:46,"405 Elm St, Los Angeles, CA 90001" +256472,Lightning Charging Cable,1,14.95,09/10/19 07:31,"490 South St, Boston, MA 02215" +256473,AA Batteries (4-pack),1,3.84,09/29/19 09:20,"840 Lincoln St, Boston, MA 02215" +256474,AAA Batteries (4-pack),1,2.99,09/15/19 14:40,"331 8th St, Seattle, WA 98101" +256475,Wired Headphones,1,11.99,09/02/19 18:04,"586 1st St, San Francisco, CA 94016" +256476,USB-C Charging Cable,1,11.95,09/28/19 12:28,"321 Lake St, Boston, MA 02215" +256477,iPhone,1,700,09/30/19 23:17,"668 13th St, Boston, MA 02215" +256477,Lightning Charging Cable,1,14.95,09/30/19 23:17,"668 13th St, Boston, MA 02215" +256478,Apple Airpods Headphones,1,150,09/03/19 13:18,"829 Lakeview St, Los Angeles, CA 90001" +256479,AA Batteries (4-pack),1,3.84,09/12/19 18:45,"938 1st St, New York City, NY 10001" +256480,Wired Headphones,1,11.99,09/18/19 16:50,"4 Main St, Dallas, TX 75001" +256481,Google Phone,1,600,09/03/19 00:35,"497 Spruce St, Seattle, WA 98101" +256482,Bose SoundSport Headphones,1,99.99,09/03/19 20:02,"421 Cherry St, Atlanta, GA 30301" +256483,Bose SoundSport Headphones,1,99.99,09/22/19 14:30,"381 11th St, Seattle, WA 98101" +256484,AAA Batteries (4-pack),1,2.99,09/09/19 09:47,"408 Washington St, Boston, MA 02215" +256485,Lightning Charging Cable,1,14.95,09/13/19 17:29,"973 11th St, New York City, NY 10001" +256486,USB-C Charging Cable,1,11.95,09/30/19 19:40,"208 Dogwood St, Los Angeles, CA 90001" +256487,Macbook Pro Laptop,1,1700,09/28/19 10:32,"115 1st St, San Francisco, CA 94016" +256488,Wired Headphones,1,11.99,09/01/19 09:43,"460 Washington St, New York City, NY 10001" +256489,AA Batteries (4-pack),1,3.84,09/04/19 19:42,"512 Jefferson St, Atlanta, GA 30301" +256490,Lightning Charging Cable,1,14.95,09/28/19 14:03,"428 9th St, San Francisco, CA 94016" +256491,USB-C Charging Cable,1,11.95,09/17/19 19:36,"541 12th St, Austin, TX 73301" +256492,Apple Airpods Headphones,1,150,09/17/19 14:44,"581 Walnut St, Boston, MA 02215" +256493,AA Batteries (4-pack),2,3.84,09/01/19 16:21,"448 Center St, San Francisco, CA 94016" +256494,Google Phone,1,600,09/05/19 16:57,"535 8th St, Boston, MA 02215" +256495,Lightning Charging Cable,2,14.95,09/27/19 10:55,"63 7th St, San Francisco, CA 94016" +256496,Bose SoundSport Headphones,1,99.99,09/05/19 19:53,"389 1st St, Seattle, WA 98101" +256497,Apple Airpods Headphones,1,150,09/04/19 19:37,"425 Cedar St, Boston, MA 02215" +256498,Wired Headphones,1,11.99,09/12/19 10:41,"60 Dogwood St, Los Angeles, CA 90001" +256499,Flatscreen TV,1,300,09/06/19 02:16,"963 14th St, Seattle, WA 98101" +256500,Macbook Pro Laptop,1,1700,09/27/19 01:44,"891 Maple St, Dallas, TX 75001" +256501,AA Batteries (4-pack),1,3.84,09/15/19 20:02,"899 West St, Portland, ME 04101" +256502,USB-C Charging Cable,1,11.95,09/07/19 18:57,"252 Pine St, Seattle, WA 98101" +256503,iPhone,1,700,09/26/19 11:38,"950 Jackson St, Boston, MA 02215" +256504,AA Batteries (4-pack),2,3.84,09/22/19 20:04,"601 10th St, Los Angeles, CA 90001" +256505,AAA Batteries (4-pack),2,2.99,09/30/19 14:10,"206 5th St, Boston, MA 02215" +256506,Apple Airpods Headphones,1,150,09/29/19 09:35,"378 7th St, Los Angeles, CA 90001" +256507,AAA Batteries (4-pack),1,2.99,09/13/19 08:24,"822 8th St, Los Angeles, CA 90001" +256508,Google Phone,1,600,09/09/19 08:24,"534 North St, Los Angeles, CA 90001" +256509,27in FHD Monitor,1,149.99,09/27/19 13:02,"266 Maple St, New York City, NY 10001" +256510,Bose SoundSport Headphones,1,99.99,09/17/19 13:07,"212 2nd St, Atlanta, GA 30301" +256511,AA Batteries (4-pack),1,3.84,09/08/19 21:29,"87 Meadow St, Seattle, WA 98101" +256511,Bose SoundSport Headphones,1,99.99,09/08/19 21:29,"87 Meadow St, Seattle, WA 98101" +256512,Google Phone,1,600,09/03/19 21:32,"463 Wilson St, Los Angeles, CA 90001" +256512,USB-C Charging Cable,1,11.95,09/03/19 21:32,"463 Wilson St, Los Angeles, CA 90001" +256513,AA Batteries (4-pack),1,3.84,09/27/19 22:36,"309 4th St, San Francisco, CA 94016" +256514,USB-C Charging Cable,1,11.95,09/24/19 18:45,"168 Wilson St, Los Angeles, CA 90001" +256515,USB-C Charging Cable,1,11.95,09/15/19 08:45,"63 Sunset St, San Francisco, CA 94016" +256516,Apple Airpods Headphones,1,150,09/24/19 17:05,"840 11th St, Atlanta, GA 30301" +256517,Bose SoundSport Headphones,1,99.99,09/29/19 13:53,"962 Hill St, Los Angeles, CA 90001" +256518,iPhone,1,700,09/29/19 17:49,"783 Maple St, San Francisco, CA 94016" +256519,Lightning Charging Cable,1,14.95,09/21/19 01:39,"728 Church St, Seattle, WA 98101" +256520,34in Ultrawide Monitor,1,379.99,09/01/19 11:18,"504 North St, New York City, NY 10001" +256521,Google Phone,1,600,09/15/19 13:53,"582 Maple St, San Francisco, CA 94016" +256521,Wired Headphones,1,11.99,09/15/19 13:53,"582 Maple St, San Francisco, CA 94016" +256522,AA Batteries (4-pack),2,3.84,09/29/19 12:37,"516 Washington St, Los Angeles, CA 90001" +256523,USB-C Charging Cable,1,11.95,09/28/19 01:34,"615 Adams St, Boston, MA 02215" +256524,Lightning Charging Cable,1,14.95,09/19/19 06:33,"552 10th St, Atlanta, GA 30301" +256525,USB-C Charging Cable,1,11.95,09/29/19 09:16,"945 12th St, Portland, OR 97035" +256526,Bose SoundSport Headphones,1,99.99,09/21/19 20:40,"382 10th St, Seattle, WA 98101" +256527,27in FHD Monitor,1,149.99,09/13/19 22:34,"580 Jefferson St, Seattle, WA 98101" +256528,ThinkPad Laptop,1,999.99,09/25/19 16:36,"634 8th St, New York City, NY 10001" +256529,Wired Headphones,1,11.99,09/18/19 22:49,"249 Main St, San Francisco, CA 94016" +256530,ThinkPad Laptop,1,999.99,09/26/19 12:56,"769 Center St, San Francisco, CA 94016" +256531,USB-C Charging Cable,2,11.95,09/01/19 13:33,"152 5th St, Boston, MA 02215" +256532,AAA Batteries (4-pack),1,2.99,09/18/19 20:05,"235 Jackson St, New York City, NY 10001" +256533,AAA Batteries (4-pack),1,2.99,09/30/19 20:04,"567 5th St, Portland, OR 97035" +256534,Apple Airpods Headphones,1,150,09/30/19 14:50,"201 Wilson St, Seattle, WA 98101" +256535,Apple Airpods Headphones,1,150,09/08/19 09:18,"407 Sunset St, San Francisco, CA 94016" +256536,Wired Headphones,2,11.99,09/18/19 18:00,"847 Lake St, Boston, MA 02215" +256537,Wired Headphones,1,11.99,09/05/19 14:51,"60 Lincoln St, Austin, TX 73301" +256538,Lightning Charging Cable,1,14.95,09/19/19 17:47,"300 12th St, Dallas, TX 75001" +256539,iPhone,1,700,09/30/19 15:40,"702 Cedar St, San Francisco, CA 94016" +256540,USB-C Charging Cable,1,11.95,09/20/19 00:25,"852 Park St, Portland, OR 97035" +256541,iPhone,1,700,09/08/19 09:56,"759 Lincoln St, Boston, MA 02215" +256542,AAA Batteries (4-pack),1,2.99,09/03/19 18:28,"922 Hill St, San Francisco, CA 94016" +256543,Bose SoundSport Headphones,1,99.99,09/24/19 12:46,"364 Forest St, New York City, NY 10001" +256544,LG Dryer,1,600.0,09/24/19 15:23,"329 6th St, Austin, TX 73301" +256545,20in Monitor,1,109.99,09/05/19 17:50,"995 8th St, Boston, MA 02215" +256546,Lightning Charging Cable,1,14.95,09/14/19 16:49,"857 Lake St, San Francisco, CA 94016" +256547,AA Batteries (4-pack),1,3.84,09/02/19 11:24,"72 10th St, New York City, NY 10001" +256548,AA Batteries (4-pack),1,3.84,09/03/19 10:03,"341 Ridge St, Seattle, WA 98101" +256549,Lightning Charging Cable,1,14.95,10/01/19 00:35,"560 Cedar St, New York City, NY 10001" +256550,Bose SoundSport Headphones,1,99.99,09/13/19 10:45,"632 Adams St, New York City, NY 10001" +256551,Flatscreen TV,1,300,09/05/19 20:33,"351 Sunset St, San Francisco, CA 94016" +256552,Apple Airpods Headphones,1,150,09/16/19 08:32,"40 5th St, San Francisco, CA 94016" +256553,Wired Headphones,1,11.99,09/01/19 10:48,"911 Lake St, Portland, OR 97035" +256554,AAA Batteries (4-pack),2,2.99,09/24/19 01:55,"181 Jefferson St, Seattle, WA 98101" +256555,Lightning Charging Cable,2,14.95,09/02/19 12:41,"665 Hickory St, Austin, TX 73301" +256556,Lightning Charging Cable,1,14.95,09/03/19 16:24,"111 Elm St, Portland, OR 97035" +256557,Flatscreen TV,1,300,09/12/19 14:48,"330 11th St, Los Angeles, CA 90001" +256558,AAA Batteries (4-pack),1,2.99,09/04/19 15:05,"578 1st St, Dallas, TX 75001" +256559,Wired Headphones,1,11.99,09/22/19 00:13,"491 Lake St, San Francisco, CA 94016" +256560,iPhone,1,700,09/23/19 15:55,"993 Park St, Boston, MA 02215" +256561,Wired Headphones,1,11.99,09/04/19 14:31,"949 Wilson St, Los Angeles, CA 90001" +256562,Wired Headphones,1,11.99,09/28/19 18:50,"9 10th St, Seattle, WA 98101" +256563,iPhone,1,700,09/05/19 22:47,"804 Forest St, New York City, NY 10001" +256563,Apple Airpods Headphones,1,150,09/05/19 22:47,"804 Forest St, New York City, NY 10001" +256564,Bose SoundSport Headphones,1,99.99,09/08/19 14:48,"175 Lake St, Portland, OR 97035" +256565,Flatscreen TV,1,300,09/18/19 22:19,"382 10th St, San Francisco, CA 94016" +256566,AA Batteries (4-pack),1,3.84,09/15/19 16:33,"402 West St, New York City, NY 10001" +256567,USB-C Charging Cable,1,11.95,09/27/19 16:53,"105 8th St, New York City, NY 10001" +256568,USB-C Charging Cable,1,11.95,09/02/19 14:26,"922 North St, Portland, ME 04101" +256569,AA Batteries (4-pack),1,3.84,09/29/19 05:40,"682 Highland St, Atlanta, GA 30301" +256570,Wired Headphones,1,11.99,09/01/19 06:14,"291 1st St, Los Angeles, CA 90001" +256571,34in Ultrawide Monitor,1,379.99,09/27/19 13:51,"799 5th St, Dallas, TX 75001" +256572,Lightning Charging Cable,1,14.95,09/29/19 07:21,"115 Meadow St, Austin, TX 73301" +256573,Apple Airpods Headphones,1,150,09/09/19 20:58,"170 Wilson St, Seattle, WA 98101" +256574,iPhone,1,700,09/17/19 15:09,"230 Main St, Boston, MA 02215" +256575,Lightning Charging Cable,2,14.95,09/08/19 07:20,"117 10th St, Portland, OR 97035" +256576,AAA Batteries (4-pack),1,2.99,09/16/19 23:39,"785 13th St, Austin, TX 73301" +256577,AAA Batteries (4-pack),1,2.99,09/17/19 23:10,"760 Hill St, Boston, MA 02215" +256578,Apple Airpods Headphones,1,150,09/04/19 16:49,"988 River St, New York City, NY 10001" +256579,USB-C Charging Cable,1,11.95,09/17/19 11:33,"282 Jefferson St, Atlanta, GA 30301" +256580,34in Ultrawide Monitor,1,379.99,09/21/19 14:01,"687 Meadow St, Dallas, TX 75001" +256581,USB-C Charging Cable,1,11.95,09/19/19 00:08,"457 9th St, New York City, NY 10001" +256582,USB-C Charging Cable,1,11.95,09/17/19 15:25,"888 Hill St, Los Angeles, CA 90001" +256583,AA Batteries (4-pack),2,3.84,09/11/19 20:15,"500 Maple St, Dallas, TX 75001" +256584,USB-C Charging Cable,1,11.95,09/17/19 12:09,"485 Lake St, New York City, NY 10001" +256585,Google Phone,1,600,09/03/19 16:59,"548 14th St, Dallas, TX 75001" +256586,20in Monitor,1,109.99,09/22/19 20:42,"81 Elm St, Portland, OR 97035" +256587,Google Phone,1,600,09/17/19 11:19,"237 Spruce St, Boston, MA 02215" +256588,USB-C Charging Cable,1,11.95,09/25/19 13:06,"599 Hickory St, New York City, NY 10001" +256589,USB-C Charging Cable,1,11.95,09/28/19 00:31,"826 Maple St, San Francisco, CA 94016" +256590,iPhone,1,700,09/18/19 23:21,"851 Hill St, Austin, TX 73301" +256591,AAA Batteries (4-pack),1,2.99,09/23/19 07:35,"136 Highland St, Dallas, TX 75001" +256592,ThinkPad Laptop,1,999.99,09/13/19 09:52,"494 6th St, San Francisco, CA 94016" +256593,AA Batteries (4-pack),2,3.84,09/12/19 10:49,"952 Wilson St, Boston, MA 02215" +256593,AAA Batteries (4-pack),1,2.99,09/12/19 10:49,"952 Wilson St, Boston, MA 02215" +256594,Lightning Charging Cable,1,14.95,09/18/19 11:30,"426 4th St, Atlanta, GA 30301" +256595,27in FHD Monitor,1,149.99,09/11/19 20:31,"144 13th St, Seattle, WA 98101" +256596,27in 4K Gaming Monitor,1,389.99,09/20/19 09:06,"80 Main St, New York City, NY 10001" +256597,USB-C Charging Cable,1,11.95,09/11/19 14:23,"995 Chestnut St, Los Angeles, CA 90001" +256598,Wired Headphones,1,11.99,09/24/19 14:23,"427 Forest St, San Francisco, CA 94016" +256599,Apple Airpods Headphones,1,150,09/10/19 21:54,"347 6th St, San Francisco, CA 94016" +256600,iPhone,1,700,09/05/19 20:08,"818 Cherry St, Seattle, WA 98101" +256601,Bose SoundSport Headphones,1,99.99,09/29/19 09:02,"560 Dogwood St, Boston, MA 02215" +256602,AA Batteries (4-pack),1,3.84,09/01/19 13:05,"761 Highland St, Austin, TX 73301" +256603,34in Ultrawide Monitor,1,379.99,09/14/19 22:28,"561 Willow St, San Francisco, CA 94016" +256604,AA Batteries (4-pack),1,3.84,09/26/19 10:18,"815 Chestnut St, Atlanta, GA 30301" +256605,iPhone,1,700,09/03/19 12:30,"259 10th St, San Francisco, CA 94016" +256605,Apple Airpods Headphones,1,150,09/03/19 12:30,"259 10th St, San Francisco, CA 94016" +256606,AA Batteries (4-pack),1,3.84,09/22/19 07:43,"752 Cedar St, Los Angeles, CA 90001" +256607,34in Ultrawide Monitor,1,379.99,09/21/19 04:31,"412 5th St, Boston, MA 02215" +256608,27in 4K Gaming Monitor,1,389.99,09/15/19 20:39,"993 Meadow St, Boston, MA 02215" +256609,27in 4K Gaming Monitor,1,389.99,09/17/19 12:46,"338 Johnson St, Los Angeles, CA 90001" +256610,Bose SoundSport Headphones,1,99.99,09/14/19 11:28,"259 12th St, Los Angeles, CA 90001" +256611,USB-C Charging Cable,2,11.95,09/10/19 09:22,"899 Maple St, New York City, NY 10001" +256612,AA Batteries (4-pack),1,3.84,09/06/19 17:44,"10 South St, San Francisco, CA 94016" +256613,Wired Headphones,1,11.99,09/04/19 21:50,"255 River St, San Francisco, CA 94016" +256614,AAA Batteries (4-pack),1,2.99,09/10/19 19:17,"370 Jackson St, New York City, NY 10001" +256615,AA Batteries (4-pack),1,3.84,09/26/19 20:51,"681 Center St, Dallas, TX 75001" +256616,ThinkPad Laptop,1,999.99,09/29/19 18:54,"716 Elm St, San Francisco, CA 94016" +256617,USB-C Charging Cable,1,11.95,09/04/19 10:03,"633 North St, Boston, MA 02215" +256618,USB-C Charging Cable,1,11.95,09/06/19 14:26,"910 Lakeview St, San Francisco, CA 94016" +256619,34in Ultrawide Monitor,1,379.99,09/19/19 19:48,"53 Cedar St, Dallas, TX 75001" +256620,27in FHD Monitor,1,149.99,09/09/19 09:20,"941 Highland St, San Francisco, CA 94016" +256621,AA Batteries (4-pack),1,3.84,09/07/19 15:49,"337 11th St, Seattle, WA 98101" +256622,Lightning Charging Cable,1,14.95,09/29/19 12:18,"310 North St, Seattle, WA 98101" +256623,AA Batteries (4-pack),1,3.84,09/13/19 20:19,"846 7th St, San Francisco, CA 94016" +256624,LG Washing Machine,1,600.0,09/25/19 16:43,"921 Willow St, New York City, NY 10001" +256625,27in 4K Gaming Monitor,1,389.99,09/29/19 08:19,"207 Dogwood St, Los Angeles, CA 90001" +256626,Lightning Charging Cable,1,14.95,09/26/19 15:28,"967 11th St, San Francisco, CA 94016" +256626,Bose SoundSport Headphones,1,99.99,09/26/19 15:28,"967 11th St, San Francisco, CA 94016" +256627,iPhone,1,700,09/10/19 11:54,"762 Cherry St, Boston, MA 02215" +256628,34in Ultrawide Monitor,1,379.99,09/27/19 09:43,"564 West St, Los Angeles, CA 90001" +256629,34in Ultrawide Monitor,1,379.99,09/21/19 21:20,"152 South St, Austin, TX 73301" +256630,Lightning Charging Cable,2,14.95,09/28/19 18:23,"895 8th St, Los Angeles, CA 90001" +256631,Lightning Charging Cable,1,14.95,09/05/19 18:15,"200 River St, New York City, NY 10001" +256632,Apple Airpods Headphones,1,150,09/06/19 14:35,"673 4th St, San Francisco, CA 94016" +256633,Bose SoundSport Headphones,1,99.99,09/28/19 13:36,"986 Park St, San Francisco, CA 94016" +256634,Apple Airpods Headphones,1,150,09/09/19 09:22,"547 Center St, San Francisco, CA 94016" +256635,Wired Headphones,1,11.99,09/26/19 02:16,"757 Johnson St, New York City, NY 10001" +256636,AAA Batteries (4-pack),1,2.99,09/09/19 14:22,"575 Elm St, Atlanta, GA 30301" +256637,USB-C Charging Cable,1,11.95,09/08/19 18:20,"660 2nd St, New York City, NY 10001" +256638,Macbook Pro Laptop,1,1700,09/30/19 08:49,"58 Johnson St, San Francisco, CA 94016" +256639,20in Monitor,1,109.99,09/03/19 19:59,"884 Center St, New York City, NY 10001" +256640,ThinkPad Laptop,1,999.99,09/21/19 20:39,"678 10th St, New York City, NY 10001" +256641,27in 4K Gaming Monitor,1,389.99,09/12/19 22:56,"941 9th St, Los Angeles, CA 90001" +256642,Wired Headphones,1,11.99,09/16/19 16:57,"67 2nd St, Los Angeles, CA 90001" +256643,27in 4K Gaming Monitor,1,389.99,09/17/19 14:49,"771 4th St, Austin, TX 73301" +256644,20in Monitor,1,109.99,09/19/19 20:23,"570 10th St, Portland, OR 97035" +256645,AAA Batteries (4-pack),1,2.99,09/10/19 18:17,"56 Cedar St, New York City, NY 10001" +256646,AA Batteries (4-pack),2,3.84,09/14/19 09:52,"983 11th St, San Francisco, CA 94016" +256647,Wired Headphones,1,11.99,09/24/19 19:14,"706 Forest St, Los Angeles, CA 90001" +256648,Macbook Pro Laptop,1,1700,09/21/19 22:33,"168 Lincoln St, San Francisco, CA 94016" +256649,34in Ultrawide Monitor,1,379.99,09/05/19 11:28,"248 Church St, San Francisco, CA 94016" +256650,USB-C Charging Cable,1,11.95,09/19/19 17:45,"220 Hill St, New York City, NY 10001" +256651,Bose SoundSport Headphones,1,99.99,09/22/19 17:52,"211 Maple St, New York City, NY 10001" +256652,20in Monitor,1,109.99,09/02/19 17:29,"483 Forest St, Austin, TX 73301" +256653,USB-C Charging Cable,1,11.95,09/22/19 21:42,"378 13th St, Atlanta, GA 30301" +256654,Macbook Pro Laptop,1,1700,09/15/19 14:39,"115 Walnut St, San Francisco, CA 94016" +256655,Wired Headphones,1,11.99,09/04/19 14:49,"116 Walnut St, Austin, TX 73301" +256656,Bose SoundSport Headphones,1,99.99,09/12/19 21:25,"138 Madison St, Los Angeles, CA 90001" +256656,Bose SoundSport Headphones,1,99.99,09/12/19 21:25,"138 Madison St, Los Angeles, CA 90001" +256657,Lightning Charging Cable,1,14.95,09/22/19 17:20,"515 Church St, Boston, MA 02215" +256658,Wired Headphones,1,11.99,09/15/19 10:56,"115 Adams St, San Francisco, CA 94016" +256659,27in 4K Gaming Monitor,1,389.99,09/18/19 18:36,"430 Lake St, New York City, NY 10001" +256660,Macbook Pro Laptop,1,1700,09/20/19 22:54,"825 Park St, San Francisco, CA 94016" +256661,27in 4K Gaming Monitor,1,389.99,09/06/19 18:38,"199 Adams St, Seattle, WA 98101" +256662,ThinkPad Laptop,1,999.99,09/21/19 23:42,"822 Jackson St, Atlanta, GA 30301" +256663,Bose SoundSport Headphones,1,99.99,09/04/19 18:35,"868 4th St, Los Angeles, CA 90001" +256664,27in 4K Gaming Monitor,1,389.99,09/26/19 15:37,"565 West St, Los Angeles, CA 90001" +256665,27in 4K Gaming Monitor,1,389.99,09/18/19 20:45,"127 Spruce St, Los Angeles, CA 90001" +256666,AAA Batteries (4-pack),1,2.99,09/12/19 18:39,"17 Pine St, Atlanta, GA 30301" +256667,USB-C Charging Cable,1,11.95,09/02/19 11:03,"191 Ridge St, Portland, OR 97035" +256668,Google Phone,1,600,09/07/19 11:00,"686 Lincoln St, Los Angeles, CA 90001" +256669,Apple Airpods Headphones,1,150,09/13/19 19:02,"469 Jefferson St, San Francisco, CA 94016" +256670,USB-C Charging Cable,1,11.95,09/24/19 10:52,"930 2nd St, Boston, MA 02215" +256671,Wired Headphones,1,11.99,09/27/19 23:11,"562 Sunset St, Los Angeles, CA 90001" +256672,34in Ultrawide Monitor,1,379.99,09/10/19 22:27,"868 Dogwood St, Atlanta, GA 30301" +256673,Macbook Pro Laptop,1,1700,09/14/19 06:20,"956 9th St, Dallas, TX 75001" +256674,USB-C Charging Cable,1,11.95,09/12/19 00:27,"527 Dogwood St, San Francisco, CA 94016" +256675,Lightning Charging Cable,1,14.95,09/04/19 17:32,"97 5th St, Seattle, WA 98101" +256676,27in 4K Gaming Monitor,1,389.99,09/10/19 07:19,"63 Adams St, New York City, NY 10001" +256677,20in Monitor,1,109.99,09/28/19 14:20,"852 9th St, Dallas, TX 75001" +256678,AA Batteries (4-pack),3,3.84,09/13/19 10:29,"947 7th St, San Francisco, CA 94016" +256679,Macbook Pro Laptop,1,1700,09/03/19 13:50,"802 Cherry St, San Francisco, CA 94016" +256680,USB-C Charging Cable,1,11.95,09/05/19 12:52,"489 Madison St, Portland, OR 97035" +256681,AA Batteries (4-pack),3,3.84,09/03/19 15:03,"965 Wilson St, Atlanta, GA 30301" +256682,Google Phone,1,600,09/01/19 14:02,"391 Lincoln St, Seattle, WA 98101" +256683,Vareebadd Phone,1,400,09/03/19 20:24,"190 1st St, San Francisco, CA 94016" +256683,USB-C Charging Cable,1,11.95,09/03/19 20:24,"190 1st St, San Francisco, CA 94016" +256684,AA Batteries (4-pack),1,3.84,09/29/19 20:19,"746 4th St, Boston, MA 02215" +256685,Vareebadd Phone,1,400,09/27/19 00:11,"599 North St, San Francisco, CA 94016" +256686,AA Batteries (4-pack),1,3.84,09/08/19 10:06,"285 Hill St, Atlanta, GA 30301" +256687,AAA Batteries (4-pack),4,2.99,09/21/19 13:32,"278 13th St, Los Angeles, CA 90001" +256688,USB-C Charging Cable,1,11.95,09/19/19 11:35,"141 10th St, Los Angeles, CA 90001" +256689,iPhone,1,700,09/27/19 13:12,"812 Maple St, New York City, NY 10001" +256690,AAA Batteries (4-pack),3,2.99,09/12/19 19:55,"818 Lincoln St, Los Angeles, CA 90001" +256691,Vareebadd Phone,1,400,09/22/19 14:29,"863 Forest St, Boston, MA 02215" +256692,Lightning Charging Cable,2,14.95,09/08/19 22:32,"944 4th St, New York City, NY 10001" +256693,27in FHD Monitor,1,149.99,09/09/19 13:53,"124 14th St, Los Angeles, CA 90001" +256694,Bose SoundSport Headphones,1,99.99,09/26/19 08:14,"272 Center St, Los Angeles, CA 90001" +256695,Bose SoundSport Headphones,1,99.99,09/14/19 20:47,"658 4th St, New York City, NY 10001" +256696,USB-C Charging Cable,2,11.95,09/16/19 00:19,"55 Walnut St, Los Angeles, CA 90001" +256697,Macbook Pro Laptop,1,1700,09/30/19 12:29,"850 Spruce St, Los Angeles, CA 90001" +256698,USB-C Charging Cable,1,11.95,09/28/19 11:15,"636 Elm St, San Francisco, CA 94016" +256699,34in Ultrawide Monitor,1,379.99,09/24/19 13:40,"780 Hickory St, San Francisco, CA 94016" +256700,AA Batteries (4-pack),1,3.84,09/29/19 22:30,"708 Lincoln St, Los Angeles, CA 90001" +256701,AAA Batteries (4-pack),2,2.99,09/24/19 14:31,"549 14th St, Portland, OR 97035" +256702,Bose SoundSport Headphones,1,99.99,09/02/19 18:51,"738 Washington St, Los Angeles, CA 90001" +256703,AA Batteries (4-pack),1,3.84,09/04/19 06:06,"478 Park St, New York City, NY 10001" +256704,Vareebadd Phone,1,400,09/30/19 12:40,"566 Madison St, Dallas, TX 75001" +256704,USB-C Charging Cable,1,11.95,09/30/19 12:40,"566 Madison St, Dallas, TX 75001" +256705,AA Batteries (4-pack),1,3.84,09/11/19 21:28,"47 Jefferson St, Seattle, WA 98101" +256706,Bose SoundSport Headphones,1,99.99,09/04/19 10:00,"56 4th St, Dallas, TX 75001" +256707,Lightning Charging Cable,1,14.95,09/24/19 00:45,"922 Hill St, Los Angeles, CA 90001" +256708,Vareebadd Phone,1,400,09/18/19 20:32,"685 Lincoln St, Portland, ME 04101" +256709,Google Phone,1,600,09/21/19 13:05,"456 Main St, Atlanta, GA 30301" +256710,27in 4K Gaming Monitor,1,389.99,09/29/19 13:10,"783 Lake St, Los Angeles, CA 90001" +256711,Wired Headphones,3,11.99,09/17/19 17:23,"978 Park St, Austin, TX 73301" +256712,20in Monitor,1,109.99,09/22/19 23:19,"474 Meadow St, San Francisco, CA 94016" +256713,Apple Airpods Headphones,1,150,09/20/19 19:27,"262 Spruce St, New York City, NY 10001" +256714,AA Batteries (4-pack),1,3.84,09/18/19 10:19,"150 Dogwood St, Los Angeles, CA 90001" +256715,27in 4K Gaming Monitor,1,389.99,09/19/19 14:35,"907 Lake St, Atlanta, GA 30301" +256716,34in Ultrawide Monitor,1,379.99,09/29/19 20:42,"216 Jefferson St, Los Angeles, CA 90001" +256717,34in Ultrawide Monitor,1,379.99,09/15/19 15:53,"334 Lake St, Los Angeles, CA 90001" +256718,34in Ultrawide Monitor,1,379.99,09/17/19 16:16,"570 Sunset St, San Francisco, CA 94016" +256719,27in 4K Gaming Monitor,1,389.99,09/05/19 08:59,"864 9th St, Los Angeles, CA 90001" +256720,USB-C Charging Cable,1,11.95,09/07/19 17:12,"983 Jefferson St, Dallas, TX 75001" +256721,AA Batteries (4-pack),2,3.84,09/06/19 14:13,"515 9th St, New York City, NY 10001" +256722,AAA Batteries (4-pack),1,2.99,09/10/19 08:35,"25 Center St, San Francisco, CA 94016" +256723,AAA Batteries (4-pack),3,2.99,09/30/19 14:24,"737 Ridge St, Los Angeles, CA 90001" +256724,34in Ultrawide Monitor,1,379.99,09/28/19 12:24,"324 North St, San Francisco, CA 94016" +256725,USB-C Charging Cable,1,11.95,09/26/19 08:01,"550 Lakeview St, Atlanta, GA 30301" +256726,Wired Headphones,1,11.99,09/01/19 23:20,"578 1st St, Portland, ME 04101" +256727,ThinkPad Laptop,1,999.99,09/02/19 00:03,"517 1st St, Los Angeles, CA 90001" +256728,Wired Headphones,1,11.99,09/08/19 10:32,"311 South St, New York City, NY 10001" +256729,Wired Headphones,1,11.99,09/14/19 21:31,"738 Center St, New York City, NY 10001" +256730,27in 4K Gaming Monitor,1,389.99,09/23/19 19:34,"648 11th St, New York City, NY 10001" +256731,iPhone,1,700,09/07/19 09:45,"837 Meadow St, Seattle, WA 98101" +256732,Macbook Pro Laptop,1,1700,09/06/19 15:13,"28 Jefferson St, Austin, TX 73301" +256733,ThinkPad Laptop,1,999.99,09/05/19 17:18,"608 Center St, San Francisco, CA 94016" +256734,Apple Airpods Headphones,1,150,09/27/19 10:07,"986 Cedar St, Los Angeles, CA 90001" +256735,AA Batteries (4-pack),1,3.84,09/22/19 19:04,"357 Highland St, San Francisco, CA 94016" +256736,Macbook Pro Laptop,1,1700,09/13/19 10:41,"651 Washington St, Portland, OR 97035" +256737,iPhone,1,700,09/18/19 21:45,"617 9th St, Portland, OR 97035" +256738,iPhone,1,700,09/29/19 15:55,"254 Jefferson St, New York City, NY 10001" +256739,Apple Airpods Headphones,1,150,09/19/19 19:35,"979 9th St, San Francisco, CA 94016" +256740,20in Monitor,1,109.99,09/02/19 15:09,"138 10th St, San Francisco, CA 94016" +256741,Lightning Charging Cable,1,14.95,09/19/19 21:07,"563 Hill St, Los Angeles, CA 90001" +256742,iPhone,1,700,09/15/19 19:38,"109 14th St, Seattle, WA 98101" +256743,Wired Headphones,1,11.99,09/07/19 18:28,"395 Walnut St, Dallas, TX 75001" +256744,Lightning Charging Cable,1,14.95,09/12/19 11:38,"700 Forest St, Portland, OR 97035" +256745,Apple Airpods Headphones,1,150,09/25/19 13:01,"185 Cherry St, Austin, TX 73301" +256746,27in FHD Monitor,1,149.99,09/12/19 00:11,"830 Walnut St, New York City, NY 10001" +256747,USB-C Charging Cable,1,11.95,09/14/19 19:47,"459 Hickory St, San Francisco, CA 94016" +256748,ThinkPad Laptop,1,999.99,09/03/19 11:38,"590 Sunset St, San Francisco, CA 94016" +256749,Lightning Charging Cable,1,14.95,09/25/19 00:31,"705 13th St, New York City, NY 10001" +256750,AA Batteries (4-pack),1,3.84,09/13/19 07:58,"134 Cherry St, San Francisco, CA 94016" +256751,iPhone,1,700,09/23/19 08:31,"261 1st St, Portland, OR 97035" +256752,AAA Batteries (4-pack),1,2.99,09/09/19 17:59,"403 Lakeview St, New York City, NY 10001" +256753,Wired Headphones,1,11.99,09/16/19 23:25,"598 Cherry St, San Francisco, CA 94016" +256754,Apple Airpods Headphones,1,150,09/24/19 16:45,"947 4th St, Los Angeles, CA 90001" +256755,Bose SoundSport Headphones,1,99.99,09/03/19 11:06,"181 Hill St, Portland, OR 97035" +,,,,, +256756,Bose SoundSport Headphones,1,99.99,09/28/19 08:51,"849 5th St, Boston, MA 02215" +256757,Bose SoundSport Headphones,1,99.99,09/19/19 13:36,"46 Willow St, Dallas, TX 75001" +256758,Wired Headphones,1,11.99,09/24/19 18:28,"915 9th St, Portland, OR 97035" +256759,Apple Airpods Headphones,1,150,09/24/19 20:45,"963 Forest St, Portland, ME 04101" +256760,Wired Headphones,2,11.99,09/29/19 18:36,"268 Hickory St, Boston, MA 02215" +256761,Wired Headphones,1,11.99,09/10/19 10:57,"434 7th St, Boston, MA 02215" +256762,27in FHD Monitor,1,149.99,09/03/19 19:10,"514 Main St, Portland, ME 04101" +256763,Lightning Charging Cable,1,14.95,09/22/19 13:36,"121 Meadow St, New York City, NY 10001" +256764,Bose SoundSport Headphones,1,99.99,09/06/19 16:58,"393 11th St, New York City, NY 10001" +256765,27in FHD Monitor,1,149.99,09/12/19 12:54,"836 Sunset St, Los Angeles, CA 90001" +256766,AA Batteries (4-pack),1,3.84,09/12/19 06:20,"983 Cherry St, Portland, OR 97035" +256767,27in 4K Gaming Monitor,1,389.99,09/29/19 14:59,"917 Spruce St, Portland, OR 97035" +256768,Macbook Pro Laptop,1,1700,09/01/19 17:20,"242 Church St, San Francisco, CA 94016" +256769,Lightning Charging Cable,1,14.95,09/12/19 21:55,"1 Main St, New York City, NY 10001" +256770,Macbook Pro Laptop,1,1700,09/25/19 10:14,"298 Hickory St, Austin, TX 73301" +256771,USB-C Charging Cable,1,11.95,09/22/19 19:16,"50 South St, Los Angeles, CA 90001" +256772,Wired Headphones,1,11.99,09/23/19 12:38,"821 Madison St, Seattle, WA 98101" +256773,Lightning Charging Cable,1,14.95,09/19/19 10:05,"671 12th St, Atlanta, GA 30301" +256774,Vareebadd Phone,1,400,09/16/19 00:36,"257 Chestnut St, Portland, OR 97035" +256774,USB-C Charging Cable,1,11.95,09/16/19 00:36,"257 Chestnut St, Portland, OR 97035" +256775,USB-C Charging Cable,1,11.95,09/14/19 23:16,"955 River St, New York City, NY 10001" +256776,27in FHD Monitor,1,149.99,09/01/19 20:51,"239 Center St, Boston, MA 02215" +256777,AA Batteries (4-pack),2,3.84,09/13/19 19:16,"503 Highland St, Boston, MA 02215" +256778,USB-C Charging Cable,1,11.95,09/23/19 12:33,"878 River St, San Francisco, CA 94016" +256779,AA Batteries (4-pack),1,3.84,09/22/19 13:15,"20 Cherry St, San Francisco, CA 94016" +256780,Lightning Charging Cable,2,14.95,09/16/19 17:21,"36 Walnut St, Dallas, TX 75001" +256781,Apple Airpods Headphones,1,150,09/22/19 16:48,"55 West St, San Francisco, CA 94016" +256782,34in Ultrawide Monitor,1,379.99,09/17/19 21:54,"386 Lake St, Los Angeles, CA 90001" +256783,Apple Airpods Headphones,1,150,09/16/19 17:05,"704 Washington St, Los Angeles, CA 90001" +256784,Google Phone,1,600,09/06/19 15:27,"531 Madison St, San Francisco, CA 94016" +256785,Lightning Charging Cable,1,14.95,09/25/19 10:54,"792 Lincoln St, San Francisco, CA 94016" +256786,Apple Airpods Headphones,1,150,09/28/19 20:45,"27 Adams St, New York City, NY 10001" +256787,USB-C Charging Cable,1,11.95,09/18/19 21:43,"985 Pine St, San Francisco, CA 94016" +256788,USB-C Charging Cable,1,11.95,09/14/19 17:10,"413 Washington St, Seattle, WA 98101" +256789,AAA Batteries (4-pack),4,2.99,09/28/19 08:30,"309 Jefferson St, San Francisco, CA 94016" +256790,iPhone,1,700,09/01/19 20:23,"439 Washington St, San Francisco, CA 94016" +256791,ThinkPad Laptop,1,999.99,09/11/19 11:19,"167 Park St, New York City, NY 10001" +256792,AA Batteries (4-pack),1,3.84,09/20/19 10:46,"174 5th St, Dallas, TX 75001" +256792,USB-C Charging Cable,1,11.95,09/20/19 10:46,"174 5th St, Dallas, TX 75001" +256793,Apple Airpods Headphones,1,150,09/30/19 11:37,"837 Maple St, Seattle, WA 98101" +256794,USB-C Charging Cable,1,11.95,09/19/19 19:13,"633 Hickory St, San Francisco, CA 94016" +256795,34in Ultrawide Monitor,1,379.99,09/25/19 12:04,"587 Madison St, Atlanta, GA 30301" +256796,Bose SoundSport Headphones,1,99.99,09/15/19 15:33,"191 Center St, Los Angeles, CA 90001" +256797,Bose SoundSport Headphones,1,99.99,09/02/19 17:06,"977 Forest St, New York City, NY 10001" +256798,AAA Batteries (4-pack),2,2.99,09/11/19 19:20,"29 8th St, Boston, MA 02215" +256799,USB-C Charging Cable,1,11.95,09/28/19 14:57,"780 Jackson St, Atlanta, GA 30301" +256800,USB-C Charging Cable,1,11.95,09/28/19 18:03,"406 2nd St, Dallas, TX 75001" +256801,iPhone,1,700,09/18/19 18:07,"490 11th St, Atlanta, GA 30301" +256802,Flatscreen TV,1,300,09/19/19 11:18,"329 Ridge St, Los Angeles, CA 90001" +256803,Apple Airpods Headphones,1,150,09/09/19 16:03,"213 4th St, Dallas, TX 75001" +256804,iPhone,1,700,09/05/19 12:31,"817 Maple St, New York City, NY 10001" +256805,Lightning Charging Cable,1,14.95,09/17/19 16:24,"663 2nd St, Los Angeles, CA 90001" +256806,USB-C Charging Cable,2,11.95,09/07/19 01:37,"646 Forest St, San Francisco, CA 94016" +256807,Wired Headphones,1,11.99,09/13/19 00:30,"621 12th St, Los Angeles, CA 90001" +256808,AA Batteries (4-pack),1,3.84,09/10/19 09:55,"168 Adams St, Boston, MA 02215" +256809,Wired Headphones,1,11.99,09/05/19 18:49,"56 Walnut St, Los Angeles, CA 90001" +256810,USB-C Charging Cable,1,11.95,09/20/19 16:54,"627 8th St, Boston, MA 02215" +256811,AAA Batteries (4-pack),2,2.99,09/05/19 11:25,"568 Wilson St, Boston, MA 02215" +256812,Bose SoundSport Headphones,1,99.99,09/13/19 11:45,"929 Church St, Dallas, TX 75001" +256813,AAA Batteries (4-pack),1,2.99,09/15/19 14:03,"844 Dogwood St, New York City, NY 10001" +256814,Apple Airpods Headphones,1,150,09/11/19 00:27,"707 River St, Los Angeles, CA 90001" +256815,Lightning Charging Cable,1,14.95,09/17/19 12:42,"501 Highland St, San Francisco, CA 94016" +256816,iPhone,1,700,09/16/19 22:18,"913 Hickory St, Atlanta, GA 30301" +256817,ThinkPad Laptop,1,999.99,09/19/19 07:46,"66 7th St, Austin, TX 73301" +256818,Bose SoundSport Headphones,1,99.99,09/03/19 15:07,"764 Cherry St, San Francisco, CA 94016" +256819,USB-C Charging Cable,1,11.95,09/05/19 10:19,"541 11th St, Austin, TX 73301" +256820,27in FHD Monitor,1,149.99,09/05/19 20:21,"650 Hickory St, Boston, MA 02215" +256821,Bose SoundSport Headphones,1,99.99,09/28/19 14:12,"85 Main St, Los Angeles, CA 90001" +256822,Wired Headphones,1,11.99,09/09/19 01:45,"447 Park St, Atlanta, GA 30301" +256823,Lightning Charging Cable,1,14.95,09/07/19 00:07,"201 Lincoln St, Dallas, TX 75001" +256824,AA Batteries (4-pack),1,3.84,09/13/19 21:53,"689 5th St, New York City, NY 10001" +256825,AAA Batteries (4-pack),1,2.99,09/03/19 16:18,"479 Jefferson St, San Francisco, CA 94016" +256826,27in FHD Monitor,1,149.99,09/10/19 11:58,"574 Maple St, Atlanta, GA 30301" +256827,Macbook Pro Laptop,1,1700,09/17/19 19:18,"259 Hill St, San Francisco, CA 94016" +256828,27in 4K Gaming Monitor,1,389.99,09/02/19 00:46,"166 Main St, Atlanta, GA 30301" +256829,ThinkPad Laptop,1,999.99,09/27/19 13:49,"992 Chestnut St, Portland, OR 97035" +256830,Macbook Pro Laptop,1,1700,09/25/19 21:01,"936 Wilson St, New York City, NY 10001" +256831,AA Batteries (4-pack),1,3.84,09/08/19 14:03,"942 Pine St, Los Angeles, CA 90001" +256832,Bose SoundSport Headphones,2,99.99,09/02/19 10:38,"538 8th St, Dallas, TX 75001" +256833,34in Ultrawide Monitor,1,379.99,09/26/19 21:46,"694 Willow St, San Francisco, CA 94016" +256834,Wired Headphones,1,11.99,09/21/19 10:19,"556 1st St, New York City, NY 10001" +256835,34in Ultrawide Monitor,1,379.99,09/17/19 18:30,"117 South St, Boston, MA 02215" +256836,Google Phone,1,600,09/17/19 14:11,"842 6th St, New York City, NY 10001" +256837,Lightning Charging Cable,1,14.95,09/23/19 13:09,"372 Ridge St, San Francisco, CA 94016" +256838,AAA Batteries (4-pack),1,2.99,09/10/19 15:15,"531 9th St, New York City, NY 10001" +256839,Apple Airpods Headphones,1,150,09/02/19 16:51,"680 1st St, Atlanta, GA 30301" +256840,Apple Airpods Headphones,1,150,09/16/19 23:44,"200 Ridge St, Los Angeles, CA 90001" +256841,AA Batteries (4-pack),1,3.84,09/20/19 10:51,"358 Madison St, Austin, TX 73301" +256842,AAA Batteries (4-pack),1,2.99,09/11/19 10:28,"348 12th St, San Francisco, CA 94016" +256843,AAA Batteries (4-pack),1,2.99,09/18/19 13:51,"190 7th St, San Francisco, CA 94016" +256844,Wired Headphones,1,11.99,09/23/19 21:25,"260 Forest St, San Francisco, CA 94016" +256845,Bose SoundSport Headphones,1,99.99,09/15/19 21:35,"405 Johnson St, Atlanta, GA 30301" +256846,AAA Batteries (4-pack),1,2.99,09/24/19 16:15,"184 Dogwood St, Dallas, TX 75001" +256847,Google Phone,1,600,09/16/19 21:23,"242 Maple St, Portland, OR 97035" +256848,27in FHD Monitor,1,149.99,09/25/19 16:31,"353 Lakeview St, Austin, TX 73301" +256849,LG Dryer,1,600.0,09/13/19 10:06,"305 Lincoln St, San Francisco, CA 94016" +256850,Apple Airpods Headphones,1,150,09/11/19 12:26,"453 Johnson St, Los Angeles, CA 90001" +256851,Lightning Charging Cable,1,14.95,09/17/19 22:14,"297 Park St, San Francisco, CA 94016" +256851,AA Batteries (4-pack),3,3.84,09/17/19 22:14,"297 Park St, San Francisco, CA 94016" +256852,Macbook Pro Laptop,1,1700,09/27/19 05:59,"160 Spruce St, Dallas, TX 75001" +256853,Wired Headphones,1,11.99,09/25/19 12:11,"484 Church St, New York City, NY 10001" +256854,AA Batteries (4-pack),1,3.84,09/12/19 21:18,"710 Dogwood St, Austin, TX 73301" +256855,Lightning Charging Cable,1,14.95,09/13/19 16:14,"307 Sunset St, New York City, NY 10001" +256856,ThinkPad Laptop,1,999.99,09/03/19 10:42,"327 Willow St, New York City, NY 10001" +256857,Apple Airpods Headphones,1,150,09/23/19 19:56,"212 2nd St, Portland, OR 97035" +256858,34in Ultrawide Monitor,1,379.99,09/13/19 00:47,"765 Willow St, San Francisco, CA 94016" +256859,Bose SoundSport Headphones,1,99.99,09/16/19 18:20,"305 Jefferson St, New York City, NY 10001" +256860,Flatscreen TV,1,300,09/06/19 00:43,"920 13th St, New York City, NY 10001" +256861,Apple Airpods Headphones,1,150,09/17/19 18:53,"693 1st St, Seattle, WA 98101" +256862,Apple Airpods Headphones,1,150,09/20/19 10:35,"985 6th St, Austin, TX 73301" +256863,Macbook Pro Laptop,1,1700,09/13/19 21:16,"295 Elm St, San Francisco, CA 94016" +256864,20in Monitor,1,109.99,09/13/19 06:32,"191 11th St, Los Angeles, CA 90001" +256865,20in Monitor,1,109.99,09/13/19 15:05,"85 6th St, Boston, MA 02215" +256866,Google Phone,1,600,09/22/19 12:21,"386 Church St, New York City, NY 10001" +256867,AA Batteries (4-pack),1,3.84,09/28/19 19:20,"337 Center St, San Francisco, CA 94016" +256868,Apple Airpods Headphones,1,150,09/12/19 17:33,"189 Park St, Dallas, TX 75001" +256869,27in FHD Monitor,1,149.99,09/09/19 08:38,"139 Highland St, Seattle, WA 98101" +256870,AAA Batteries (4-pack),1,2.99,09/20/19 16:12,"241 14th St, San Francisco, CA 94016" +256871,AA Batteries (4-pack),3,3.84,09/02/19 19:05,"737 Madison St, San Francisco, CA 94016" +256872,20in Monitor,1,109.99,09/23/19 17:49,"98 13th St, New York City, NY 10001" +256873,USB-C Charging Cable,1,11.95,09/12/19 18:04,"43 Pine St, Los Angeles, CA 90001" +256874,Bose SoundSport Headphones,1,99.99,09/07/19 17:47,"268 4th St, San Francisco, CA 94016" +256875,Lightning Charging Cable,1,14.95,09/23/19 13:26,"849 Sunset St, Los Angeles, CA 90001" +256876,Bose SoundSport Headphones,1,99.99,09/02/19 22:34,"334 Lake St, Los Angeles, CA 90001" +256877,20in Monitor,1,109.99,09/28/19 00:17,"433 Hill St, San Francisco, CA 94016" +256877,Bose SoundSport Headphones,1,99.99,09/28/19 00:17,"433 Hill St, San Francisco, CA 94016" +256878,Lightning Charging Cable,1,14.95,09/04/19 04:49,"9 Hickory St, Dallas, TX 75001" +256879,Wired Headphones,1,11.99,09/11/19 16:45,"254 12th St, Dallas, TX 75001" +256880,AAA Batteries (4-pack),1,2.99,09/13/19 12:17,"64 11th St, Boston, MA 02215" +256881,AA Batteries (4-pack),2,3.84,09/19/19 10:32,"933 Church St, New York City, NY 10001" +256882,ThinkPad Laptop,1,999.99,09/04/19 06:32,"62 Main St, Seattle, WA 98101" +256883,27in 4K Gaming Monitor,1,389.99,09/04/19 17:38,"655 13th St, New York City, NY 10001" +256884,20in Monitor,1,109.99,09/06/19 13:43,"280 South St, Los Angeles, CA 90001" +256885,20in Monitor,1,109.99,09/30/19 20:23,"971 4th St, San Francisco, CA 94016" +256886,27in 4K Gaming Monitor,1,389.99,09/25/19 23:41,"398 West St, Dallas, TX 75001" +256887,Wired Headphones,1,11.99,09/06/19 01:24,"915 10th St, Portland, OR 97035" +256888,Apple Airpods Headphones,1,150,09/07/19 21:10,"337 Wilson St, Los Angeles, CA 90001" +256889,USB-C Charging Cable,1,11.95,09/12/19 10:10,"231 Jefferson St, New York City, NY 10001" +256890,AA Batteries (4-pack),2,3.84,09/04/19 06:15,"134 Jackson St, Dallas, TX 75001" +256891,AAA Batteries (4-pack),2,2.99,09/25/19 14:08,"516 Maple St, San Francisco, CA 94016" +256892,AA Batteries (4-pack),1,3.84,09/27/19 14:02,"830 9th St, Boston, MA 02215" +256893,Flatscreen TV,1,300,09/16/19 18:18,"821 Willow St, Portland, ME 04101" +256894,AAA Batteries (4-pack),1,2.99,09/05/19 17:42,"58 Ridge St, Dallas, TX 75001" +256895,27in FHD Monitor,1,149.99,09/27/19 22:55,"934 Walnut St, Portland, OR 97035" +256896,Apple Airpods Headphones,1,150,09/14/19 19:12,"418 Jefferson St, San Francisco, CA 94016" +256897,Wired Headphones,1,11.99,09/14/19 10:39,"158 10th St, San Francisco, CA 94016" +256898,iPhone,1,700,09/18/19 08:40,"552 4th St, Los Angeles, CA 90001" +256899,Lightning Charging Cable,1,14.95,09/15/19 14:28,"91 Highland St, Portland, ME 04101" +256900,27in 4K Gaming Monitor,1,389.99,09/19/19 18:32,"329 Cherry St, Austin, TX 73301" +256901,ThinkPad Laptop,1,999.99,09/08/19 22:17,"744 Jefferson St, New York City, NY 10001" +256902,iPhone,1,700,09/18/19 18:58,"976 6th St, New York City, NY 10001" +256903,Wired Headphones,1,11.99,09/07/19 17:34,"46 Forest St, Portland, OR 97035" +256904,Bose SoundSport Headphones,1,99.99,09/03/19 17:01,"898 Hickory St, San Francisco, CA 94016" +256905,Bose SoundSport Headphones,1,99.99,09/11/19 21:46,"517 South St, San Francisco, CA 94016" +256906,Bose SoundSport Headphones,1,99.99,09/22/19 06:25,"627 13th St, Dallas, TX 75001" +256907,Apple Airpods Headphones,1,150,09/20/19 00:57,"90 7th St, Seattle, WA 98101" +256908,20in Monitor,1,109.99,09/16/19 11:58,"836 Lakeview St, Atlanta, GA 30301" +256908,Flatscreen TV,1,300,09/16/19 11:58,"836 Lakeview St, Atlanta, GA 30301" +256909,AAA Batteries (4-pack),2,2.99,09/26/19 13:09,"503 2nd St, Portland, OR 97035" +256910,Vareebadd Phone,1,400,09/25/19 19:17,"706 Chestnut St, New York City, NY 10001" +256911,AA Batteries (4-pack),1,3.84,09/20/19 09:26,"766 South St, New York City, NY 10001" +256912,USB-C Charging Cable,1,11.95,09/05/19 21:23,"282 1st St, San Francisco, CA 94016" +256913,AAA Batteries (4-pack),1,2.99,09/15/19 16:46,"616 Hickory St, Dallas, TX 75001" +256914,Apple Airpods Headphones,1,150,09/17/19 10:28,"155 Pine St, Austin, TX 73301" +256915,Bose SoundSport Headphones,1,99.99,09/09/19 09:36,"51 14th St, Seattle, WA 98101" +256916,Lightning Charging Cable,1,14.95,09/09/19 20:02,"783 Meadow St, San Francisco, CA 94016" +256917,Lightning Charging Cable,1,14.95,09/11/19 17:02,"159 Main St, San Francisco, CA 94016" +256918,AA Batteries (4-pack),1,3.84,09/17/19 23:05,"168 Lakeview St, New York City, NY 10001" +256919,iPhone,1,700,09/15/19 18:12,"813 4th St, Boston, MA 02215" +256920,USB-C Charging Cable,1,11.95,09/17/19 12:03,"272 Hill St, San Francisco, CA 94016" +256921,USB-C Charging Cable,1,11.95,09/15/19 20:04,"892 7th St, Los Angeles, CA 90001" +256922,AA Batteries (4-pack),3,3.84,09/16/19 09:40,"446 Dogwood St, Seattle, WA 98101" +256923,Bose SoundSport Headphones,2,99.99,09/22/19 20:47,"685 Center St, New York City, NY 10001" +256924,USB-C Charging Cable,1,11.95,09/15/19 17:48,"23 Elm St, Boston, MA 02215" +256925,AAA Batteries (4-pack),2,2.99,09/26/19 18:52,"859 Hickory St, Los Angeles, CA 90001" +256926,Lightning Charging Cable,1,14.95,09/10/19 23:16,"513 North St, San Francisco, CA 94016" +256927,20in Monitor,1,109.99,09/18/19 12:34,"535 Highland St, San Francisco, CA 94016" +256928,USB-C Charging Cable,1,11.95,09/30/19 17:15,"816 1st St, Seattle, WA 98101" +256929,Flatscreen TV,1,300,09/07/19 13:10,"508 Adams St, San Francisco, CA 94016" +256930,Lightning Charging Cable,1,14.95,09/04/19 16:30,"703 Spruce St, Los Angeles, CA 90001" +256931,27in FHD Monitor,1,149.99,09/03/19 13:57,"342 Main St, Boston, MA 02215" +256932,AA Batteries (4-pack),1,3.84,09/18/19 08:48,"764 North St, Seattle, WA 98101" +256933,USB-C Charging Cable,1,11.95,09/18/19 05:30,"180 2nd St, Boston, MA 02215" +256934,Bose SoundSport Headphones,1,99.99,09/28/19 21:38,"476 Hickory St, New York City, NY 10001" +256935,Bose SoundSport Headphones,1,99.99,09/18/19 14:57,"724 Highland St, Austin, TX 73301" +256936,Bose SoundSport Headphones,1,99.99,09/05/19 06:36,"600 Forest St, San Francisco, CA 94016" +256937,AAA Batteries (4-pack),2,2.99,09/11/19 16:55,"655 Church St, Atlanta, GA 30301" +256938,Apple Airpods Headphones,1,150,09/01/19 18:29,"923 4th St, Seattle, WA 98101" +256939,20in Monitor,1,109.99,09/11/19 19:36,"284 Hill St, San Francisco, CA 94016" +256940,Apple Airpods Headphones,1,150,09/13/19 13:07,"229 12th St, Los Angeles, CA 90001" +256941,Macbook Pro Laptop,1,1700,09/22/19 17:49,"464 Hickory St, Austin, TX 73301" +256942,Wired Headphones,1,11.99,09/28/19 00:11,"350 13th St, New York City, NY 10001" +256943,27in 4K Gaming Monitor,1,389.99,09/07/19 10:15,"393 11th St, Portland, ME 04101" +256944,20in Monitor,1,109.99,09/19/19 16:58,"758 4th St, Austin, TX 73301" +256945,Bose SoundSport Headphones,1,99.99,09/26/19 09:20,"903 Cedar St, Portland, ME 04101" +256946,USB-C Charging Cable,1,11.95,09/11/19 12:50,"299 Adams St, Austin, TX 73301" +256947,AAA Batteries (4-pack),1,2.99,09/11/19 10:04,"628 Pine St, Boston, MA 02215" +256948,AAA Batteries (4-pack),2,2.99,09/16/19 12:13,"54 Johnson St, Atlanta, GA 30301" +256949,Lightning Charging Cable,1,14.95,09/09/19 10:11,"566 Pine St, Austin, TX 73301" +256949,Apple Airpods Headphones,1,150,09/09/19 10:11,"566 Pine St, Austin, TX 73301" +256950,Bose SoundSport Headphones,1,99.99,09/01/19 11:27,"759 Wilson St, Atlanta, GA 30301" +256951,AAA Batteries (4-pack),1,2.99,09/24/19 06:46,"298 8th St, San Francisco, CA 94016" +256952,iPhone,1,700,09/08/19 08:34,"124 Lakeview St, San Francisco, CA 94016" +256952,Apple Airpods Headphones,1,150,09/08/19 08:34,"124 Lakeview St, San Francisco, CA 94016" +256953,Apple Airpods Headphones,1,150,09/09/19 15:24,"224 Walnut St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +256954,AA Batteries (4-pack),1,3.84,09/26/19 23:55,"28 Main St, New York City, NY 10001" +256955,Apple Airpods Headphones,1,150,09/04/19 23:20,"541 6th St, Austin, TX 73301" +256956,20in Monitor,1,109.99,09/17/19 08:41,"926 River St, Seattle, WA 98101" +256956,USB-C Charging Cable,1,11.95,09/17/19 08:41,"926 River St, Seattle, WA 98101" +256957,AA Batteries (4-pack),4,3.84,09/10/19 23:52,"897 Washington St, San Francisco, CA 94016" +256958,AAA Batteries (4-pack),1,2.99,09/01/19 09:35,"10 Jackson St, New York City, NY 10001" +256959,Wired Headphones,2,11.99,09/02/19 10:56,"853 Johnson St, Los Angeles, CA 90001" +256960,Wired Headphones,1,11.99,09/04/19 13:48,"43 7th St, Austin, TX 73301" +256961,Lightning Charging Cable,1,14.95,09/05/19 19:20,"830 12th St, Dallas, TX 75001" +256962,Wired Headphones,1,11.99,09/25/19 15:08,"916 Madison St, San Francisco, CA 94016" +256963,Apple Airpods Headphones,1,150,09/04/19 01:09,"804 Elm St, Los Angeles, CA 90001" +256964,AAA Batteries (4-pack),2,2.99,09/13/19 12:32,"845 Dogwood St, Dallas, TX 75001" +256965,AA Batteries (4-pack),1,3.84,09/26/19 18:30,"486 2nd St, Los Angeles, CA 90001" +256966,AAA Batteries (4-pack),1,2.99,09/20/19 11:04,"374 Ridge St, Los Angeles, CA 90001" +256967,27in 4K Gaming Monitor,1,389.99,09/21/19 13:30,"646 Jefferson St, San Francisco, CA 94016" +256968,27in 4K Gaming Monitor,1,389.99,09/25/19 18:39,"181 11th St, San Francisco, CA 94016" +256969,USB-C Charging Cable,1,11.95,09/24/19 20:48,"761 Sunset St, San Francisco, CA 94016" +256970,iPhone,1,700,09/02/19 20:36,"900 Sunset St, Los Angeles, CA 90001" +256971,iPhone,1,700,09/02/19 11:30,"373 Sunset St, Portland, OR 97035" +256972,Flatscreen TV,1,300,09/29/19 15:33,"390 Pine St, Atlanta, GA 30301" +256973,AAA Batteries (4-pack),1,2.99,09/12/19 19:11,"83 11th St, New York City, NY 10001" +256974,27in 4K Gaming Monitor,1,389.99,09/16/19 20:32,"400 11th St, Dallas, TX 75001" +256975,LG Dryer,1,600.0,09/06/19 11:44,"775 Washington St, Dallas, TX 75001" +256976,USB-C Charging Cable,1,11.95,09/01/19 18:25,"958 1st St, Seattle, WA 98101" +256977,20in Monitor,1,109.99,09/25/19 15:05,"704 8th St, San Francisco, CA 94016" +256978,USB-C Charging Cable,1,11.95,09/25/19 11:30,"751 Washington St, San Francisco, CA 94016" +256979,Lightning Charging Cable,1,14.95,09/14/19 12:30,"98 11th St, San Francisco, CA 94016" +256980,Lightning Charging Cable,1,14.95,09/02/19 13:53,"835 5th St, San Francisco, CA 94016" +256981,AAA Batteries (4-pack),2,2.99,09/10/19 09:21,"783 5th St, San Francisco, CA 94016" +256982,ThinkPad Laptop,1,999.99,09/23/19 12:08,"916 Highland St, Dallas, TX 75001" +256983,Apple Airpods Headphones,1,150,09/23/19 05:56,"357 Park St, San Francisco, CA 94016" +256984,AA Batteries (4-pack),1,3.84,09/02/19 13:43,"52 13th St, San Francisco, CA 94016" +256985,AA Batteries (4-pack),3,3.84,09/16/19 22:29,"197 Cedar St, Los Angeles, CA 90001" +256986,Bose SoundSport Headphones,1,99.99,09/18/19 22:35,"471 Jackson St, New York City, NY 10001" +256987,AAA Batteries (4-pack),1,2.99,09/30/19 13:47,"319 Cherry St, San Francisco, CA 94016" +256988,Wired Headphones,1,11.99,09/13/19 01:46,"655 5th St, San Francisco, CA 94016" +256989,USB-C Charging Cable,1,11.95,09/30/19 11:44,"309 Cherry St, Seattle, WA 98101" +256990,AA Batteries (4-pack),1,3.84,09/05/19 18:09,"919 2nd St, New York City, NY 10001" +256991,Macbook Pro Laptop,1,1700,09/18/19 10:47,"126 5th St, San Francisco, CA 94016" +256992,27in FHD Monitor,1,149.99,09/28/19 19:39,"573 6th St, San Francisco, CA 94016" +256993,27in FHD Monitor,1,149.99,09/13/19 08:18,"31 Main St, Los Angeles, CA 90001" +256994,iPhone,1,700,09/30/19 21:40,"609 Maple St, Los Angeles, CA 90001" +256994,Lightning Charging Cable,1,14.95,09/30/19 21:40,"609 Maple St, Los Angeles, CA 90001" +256995,Bose SoundSport Headphones,1,99.99,09/07/19 19:15,"616 Cherry St, San Francisco, CA 94016" +256996,AAA Batteries (4-pack),2,2.99,09/04/19 14:01,"352 Maple St, Boston, MA 02215" +256997,Lightning Charging Cable,1,14.95,09/20/19 18:53,"746 Hill St, Austin, TX 73301" +256998,27in 4K Gaming Monitor,1,389.99,09/09/19 18:45,"830 Ridge St, Los Angeles, CA 90001" +256999,20in Monitor,1,109.99,09/03/19 19:14,"176 Hickory St, San Francisco, CA 94016" +257000,AA Batteries (4-pack),1,3.84,09/12/19 16:28,"327 Lake St, Portland, OR 97035" +257001,27in FHD Monitor,1,149.99,09/26/19 10:03,"247 Highland St, Austin, TX 73301" +257002,AA Batteries (4-pack),1,3.84,09/05/19 22:18,"442 Chestnut St, Portland, OR 97035" +257003,Wired Headphones,1,11.99,09/05/19 23:41,"857 Main St, Atlanta, GA 30301" +257004,AA Batteries (4-pack),1,3.84,09/26/19 10:53,"849 Hill St, San Francisco, CA 94016" +257005,27in FHD Monitor,1,149.99,09/24/19 22:55,"308 North St, San Francisco, CA 94016" +257006,AAA Batteries (4-pack),2,2.99,09/05/19 00:56,"674 Main St, Los Angeles, CA 90001" +257007,Wired Headphones,1,11.99,09/20/19 12:42,"430 6th St, Boston, MA 02215" +257008,Flatscreen TV,1,300,09/16/19 19:09,"349 South St, Austin, TX 73301" +257009,iPhone,1,700,09/01/19 11:13,"80 Sunset St, San Francisco, CA 94016" +257010,Wired Headphones,1,11.99,09/20/19 17:18,"387 Washington St, Dallas, TX 75001" +257011,Apple Airpods Headphones,1,150,09/13/19 22:06,"712 Spruce St, New York City, NY 10001" +257012,Google Phone,1,600,09/02/19 19:19,"747 14th St, Atlanta, GA 30301" +257013,34in Ultrawide Monitor,1,379.99,09/23/19 18:36,"440 Park St, Atlanta, GA 30301" +257014,Lightning Charging Cable,1,14.95,09/16/19 02:08,"690 Center St, Atlanta, GA 30301" +257015,20in Monitor,1,109.99,09/26/19 16:48,"443 Church St, Boston, MA 02215" +257016,Flatscreen TV,1,300,09/01/19 15:00,"341 11th St, New York City, NY 10001" +257017,Google Phone,1,600,09/24/19 22:19,"929 Main St, Boston, MA 02215" +257018,AAA Batteries (4-pack),1,2.99,09/16/19 10:58,"207 Main St, Seattle, WA 98101" +257019,Lightning Charging Cable,1,14.95,09/16/19 22:40,"203 South St, San Francisco, CA 94016" +257020,USB-C Charging Cable,1,11.95,09/15/19 07:18,"300 Park St, San Francisco, CA 94016" +257021,Lightning Charging Cable,1,14.95,09/25/19 08:59,"86 Jefferson St, Boston, MA 02215" +257022,iPhone,1,700,09/18/19 14:23,"638 Park St, San Francisco, CA 94016" +257023,USB-C Charging Cable,1,11.95,09/11/19 22:00,"691 Pine St, New York City, NY 10001" +257024,Apple Airpods Headphones,1,150,09/01/19 22:27,"434 13th St, New York City, NY 10001" +257025,USB-C Charging Cable,1,11.95,09/30/19 18:50,"396 Madison St, San Francisco, CA 94016" +257026,Bose SoundSport Headphones,1,99.99,09/01/19 15:40,"696 7th St, San Francisco, CA 94016" +257027,27in 4K Gaming Monitor,1,389.99,09/12/19 20:28,"388 Johnson St, San Francisco, CA 94016" +257028,Google Phone,1,600,09/08/19 16:22,"288 Church St, Boston, MA 02215" +257029,AAA Batteries (4-pack),1,2.99,09/10/19 09:12,"765 Hill St, Atlanta, GA 30301" +257030,Wired Headphones,1,11.99,09/23/19 11:54,"973 12th St, Los Angeles, CA 90001" +257031,AA Batteries (4-pack),1,3.84,09/27/19 08:17,"652 Jefferson St, Seattle, WA 98101" +257032,AAA Batteries (4-pack),1,2.99,09/18/19 22:24,"88 7th St, Seattle, WA 98101" +257033,Apple Airpods Headphones,1,150,09/16/19 20:50,"896 Maple St, San Francisco, CA 94016" +257034,Flatscreen TV,1,300,09/23/19 10:53,"66 Lakeview St, Austin, TX 73301" +257035,Wired Headphones,1,11.99,09/08/19 18:14,"182 Elm St, Atlanta, GA 30301" +257036,34in Ultrawide Monitor,1,379.99,09/08/19 22:40,"997 13th St, Dallas, TX 75001" +257037,AA Batteries (4-pack),1,3.84,09/28/19 01:28,"937 Maple St, San Francisco, CA 94016" +257038,USB-C Charging Cable,2,11.95,09/14/19 04:04,"525 Adams St, San Francisco, CA 94016" +257039,iPhone,1,700,09/07/19 08:02,"964 Maple St, San Francisco, CA 94016" +257039,Lightning Charging Cable,1,14.95,09/07/19 08:02,"964 Maple St, San Francisco, CA 94016" +257040,Wired Headphones,1,11.99,09/07/19 18:52,"870 Park St, Portland, ME 04101" +257041,AAA Batteries (4-pack),1,2.99,09/01/19 14:58,"599 South St, New York City, NY 10001" +257042,34in Ultrawide Monitor,1,379.99,09/07/19 17:56,"757 West St, San Francisco, CA 94016" +257043,Lightning Charging Cable,1,14.95,09/16/19 11:33,"419 9th St, Atlanta, GA 30301" +257044,Wired Headphones,1,11.99,09/11/19 12:30,"608 Park St, San Francisco, CA 94016" +257045,USB-C Charging Cable,1,11.95,09/28/19 13:39,"252 Forest St, Dallas, TX 75001" +257046,Bose SoundSport Headphones,1,99.99,09/11/19 22:04,"389 4th St, Los Angeles, CA 90001" +257047,Lightning Charging Cable,1,14.95,09/19/19 09:58,"577 Maple St, Los Angeles, CA 90001" +257048,AA Batteries (4-pack),1,3.84,09/28/19 07:53,"817 Walnut St, San Francisco, CA 94016" +257049,Apple Airpods Headphones,1,150,09/12/19 10:21,"226 Meadow St, San Francisco, CA 94016" +257050,AA Batteries (4-pack),1,3.84,09/02/19 21:04,"543 9th St, Dallas, TX 75001" +257051,Lightning Charging Cable,1,14.95,09/25/19 09:35,"731 9th St, Atlanta, GA 30301" +257052,Flatscreen TV,1,300,09/22/19 10:05,"904 12th St, Atlanta, GA 30301" +257053,AAA Batteries (4-pack),1,2.99,09/09/19 20:24,"319 Lincoln St, San Francisco, CA 94016" +257054,Bose SoundSport Headphones,1,99.99,09/30/19 11:57,"294 Madison St, Austin, TX 73301" +257055,iPhone,1,700,09/25/19 14:52,"32 13th St, Los Angeles, CA 90001" +257056,ThinkPad Laptop,1,999.99,09/10/19 17:07,"911 1st St, Portland, OR 97035" +257057,ThinkPad Laptop,1,999.99,09/23/19 14:34,"27 Meadow St, San Francisco, CA 94016" +257058,Lightning Charging Cable,2,14.95,09/08/19 09:50,"303 Forest St, New York City, NY 10001" +257058,Macbook Pro Laptop,1,1700,09/08/19 09:50,"303 Forest St, New York City, NY 10001" +257059,Google Phone,2,600,09/29/19 12:26,"796 13th St, San Francisco, CA 94016" +257060,AAA Batteries (4-pack),1,2.99,09/19/19 12:06,"499 4th St, New York City, NY 10001" +257061,27in FHD Monitor,1,149.99,09/16/19 12:34,"8 14th St, Portland, ME 04101" +257062,Bose SoundSport Headphones,1,99.99,09/22/19 17:57,"819 Cedar St, San Francisco, CA 94016" +257062,Bose SoundSport Headphones,1,99.99,09/22/19 17:57,"819 Cedar St, San Francisco, CA 94016" +257063,iPhone,1,700,09/12/19 13:44,"829 Spruce St, Los Angeles, CA 90001" +257064,AAA Batteries (4-pack),2,2.99,09/11/19 23:23,"398 Willow St, Dallas, TX 75001" +257065,Macbook Pro Laptop,1,1700,09/02/19 10:27,"985 2nd St, Atlanta, GA 30301" +257066,USB-C Charging Cable,1,11.95,09/10/19 21:34,"835 14th St, Los Angeles, CA 90001" +257067,AAA Batteries (4-pack),3,2.99,09/29/19 21:45,"219 Meadow St, San Francisco, CA 94016" +257068,AAA Batteries (4-pack),2,2.99,09/26/19 12:59,"880 West St, New York City, NY 10001" +257069,Macbook Pro Laptop,1,1700,09/03/19 09:38,"261 Lincoln St, New York City, NY 10001" +257070,AA Batteries (4-pack),1,3.84,09/29/19 10:52,"795 Center St, San Francisco, CA 94016" +257071,34in Ultrawide Monitor,1,379.99,09/04/19 14:53,"758 Washington St, Los Angeles, CA 90001" +257072,Bose SoundSport Headphones,1,99.99,09/25/19 11:09,"369 Washington St, Atlanta, GA 30301" +257073,Lightning Charging Cable,1,14.95,09/01/19 21:13,"362 River St, San Francisco, CA 94016" +257074,AA Batteries (4-pack),1,3.84,09/29/19 10:38,"745 Lakeview St, Austin, TX 73301" +257075,AAA Batteries (4-pack),1,2.99,09/30/19 19:12,"190 Adams St, New York City, NY 10001" +257076,27in FHD Monitor,1,149.99,09/12/19 16:55,"782 Center St, San Francisco, CA 94016" +257077,AA Batteries (4-pack),1,3.84,09/02/19 08:19,"847 Spruce St, San Francisco, CA 94016" +257078,Apple Airpods Headphones,1,150,09/12/19 17:36,"429 Ridge St, San Francisco, CA 94016" +257079,Lightning Charging Cable,1,14.95,09/23/19 20:56,"418 Sunset St, San Francisco, CA 94016" +257080,AA Batteries (4-pack),2,3.84,09/25/19 22:20,"672 South St, Austin, TX 73301" +257081,Wired Headphones,1,11.99,09/18/19 10:44,"603 Main St, San Francisco, CA 94016" +257082,Google Phone,1,600,09/20/19 23:24,"681 Lake St, Dallas, TX 75001" +257082,USB-C Charging Cable,1,11.95,09/20/19 23:24,"681 Lake St, Dallas, TX 75001" +257083,Flatscreen TV,1,300,09/17/19 15:44,"348 Madison St, San Francisco, CA 94016" +257084,AA Batteries (4-pack),1,3.84,09/15/19 22:40,"308 1st St, San Francisco, CA 94016" +257085,AAA Batteries (4-pack),1,2.99,09/22/19 07:58,"679 Sunset St, San Francisco, CA 94016" +257086,Wired Headphones,1,11.99,09/21/19 21:15,"267 Lake St, Boston, MA 02215" +257087,Bose SoundSport Headphones,1,99.99,09/08/19 13:13,"336 Hill St, San Francisco, CA 94016" +257087,34in Ultrawide Monitor,1,379.99,09/08/19 13:13,"336 Hill St, San Francisco, CA 94016" +257088,AAA Batteries (4-pack),1,2.99,09/22/19 10:33,"610 Ridge St, New York City, NY 10001" +257089,27in 4K Gaming Monitor,1,389.99,09/18/19 18:03,"839 13th St, Los Angeles, CA 90001" +257090,ThinkPad Laptop,1,999.99,09/06/19 10:07,"918 Lincoln St, Seattle, WA 98101" +257091,USB-C Charging Cable,1,11.95,09/07/19 16:37,"938 Wilson St, Boston, MA 02215" +257092,USB-C Charging Cable,1,11.95,09/16/19 22:14,"769 Hickory St, Seattle, WA 98101" +257093,Wired Headphones,1,11.99,09/12/19 01:28,"680 South St, San Francisco, CA 94016" +257094,AAA Batteries (4-pack),3,2.99,09/05/19 09:52,"226 2nd St, Dallas, TX 75001" +257095,AA Batteries (4-pack),1,3.84,09/04/19 00:18,"690 Main St, Atlanta, GA 30301" +257096,ThinkPad Laptop,1,999.99,09/29/19 12:21,"321 Meadow St, San Francisco, CA 94016" +257097,AA Batteries (4-pack),1,3.84,09/19/19 14:25,"18 12th St, Los Angeles, CA 90001" +257098,20in Monitor,1,109.99,09/13/19 21:32,"292 Jackson St, Austin, TX 73301" +257099,Wired Headphones,1,11.99,09/23/19 12:10,"48 5th St, Dallas, TX 75001" +257100,Apple Airpods Headphones,1,150,09/13/19 20:44,"797 Willow St, San Francisco, CA 94016" +257101,Flatscreen TV,1,300,09/03/19 08:53,"983 Sunset St, Boston, MA 02215" +257102,Apple Airpods Headphones,1,150,09/25/19 13:06,"829 Ridge St, New York City, NY 10001" +257103,Lightning Charging Cable,1,14.95,09/10/19 18:20,"410 Lakeview St, New York City, NY 10001" +257104,iPhone,1,700,09/22/19 11:18,"89 Main St, Boston, MA 02215" +257105,Wired Headphones,1,11.99,09/11/19 11:21,"514 6th St, Los Angeles, CA 90001" +257106,USB-C Charging Cable,2,11.95,09/22/19 15:43,"626 Lincoln St, Boston, MA 02215" +257107,USB-C Charging Cable,1,11.95,09/05/19 11:26,"320 7th St, San Francisco, CA 94016" +257108,AA Batteries (4-pack),1,3.84,09/25/19 22:33,"654 11th St, San Francisco, CA 94016" +257109,USB-C Charging Cable,1,11.95,09/27/19 16:15,"840 Elm St, Boston, MA 02215" +257110,Bose SoundSport Headphones,1,99.99,09/06/19 13:11,"900 Chestnut St, Atlanta, GA 30301" +257111,Bose SoundSport Headphones,1,99.99,09/01/19 12:11,"603 Center St, Atlanta, GA 30301" +257112,USB-C Charging Cable,1,11.95,09/18/19 22:57,"23 Elm St, Boston, MA 02215" +257113,Apple Airpods Headphones,1,150,09/04/19 15:59,"848 5th St, Atlanta, GA 30301" +257114,Lightning Charging Cable,1,14.95,09/17/19 15:33,"722 Adams St, San Francisco, CA 94016" +257115,Macbook Pro Laptop,1,1700,09/04/19 18:38,"394 Highland St, Los Angeles, CA 90001" +257116,Wired Headphones,1,11.99,09/15/19 21:23,"350 Washington St, Dallas, TX 75001" +257117,Wired Headphones,2,11.99,09/10/19 03:25,"147 Dogwood St, Los Angeles, CA 90001" +257117,Wired Headphones,1,11.99,09/10/19 03:25,"147 Dogwood St, Los Angeles, CA 90001" +257118,Apple Airpods Headphones,1,150,09/30/19 21:38,"377 2nd St, Los Angeles, CA 90001" +257119,Bose SoundSport Headphones,1,99.99,09/16/19 16:17,"629 Hill St, Los Angeles, CA 90001" +257120,Lightning Charging Cable,1,14.95,09/16/19 15:59,"971 Johnson St, Los Angeles, CA 90001" +257121,34in Ultrawide Monitor,1,379.99,09/06/19 20:57,"31 Sunset St, Boston, MA 02215" +257122,AA Batteries (4-pack),1,3.84,09/15/19 00:47,"695 Park St, Boston, MA 02215" +257123,AAA Batteries (4-pack),1,2.99,09/13/19 20:44,"529 Washington St, Seattle, WA 98101" +257124,AA Batteries (4-pack),1,3.84,09/12/19 17:51,"136 Wilson St, Seattle, WA 98101" +257125,Lightning Charging Cable,1,14.95,09/16/19 19:42,"301 West St, Dallas, TX 75001" +257126,Bose SoundSport Headphones,1,99.99,09/24/19 11:00,"907 Cherry St, Austin, TX 73301" +257127,ThinkPad Laptop,1,999.99,09/13/19 14:52,"545 9th St, Boston, MA 02215" +257128,AA Batteries (4-pack),1,3.84,09/17/19 20:14,"761 8th St, San Francisco, CA 94016" +257129,27in 4K Gaming Monitor,1,389.99,09/08/19 16:52,"267 4th St, Los Angeles, CA 90001" +257130,USB-C Charging Cable,1,11.95,09/02/19 17:00,"206 7th St, Austin, TX 73301" +257131,Apple Airpods Headphones,1,150,09/09/19 14:26,"205 7th St, Austin, TX 73301" +257132,AAA Batteries (4-pack),1,2.99,09/18/19 07:22,"157 Highland St, San Francisco, CA 94016" +257133,Macbook Pro Laptop,1,1700,09/22/19 13:48,"683 Highland St, Atlanta, GA 30301" +257134,Apple Airpods Headphones,1,150,09/30/19 11:13,"354 9th St, San Francisco, CA 94016" +257135,20in Monitor,1,109.99,09/02/19 11:32,"181 Forest St, Portland, OR 97035" +257136,Wired Headphones,2,11.99,09/09/19 23:34,"585 Church St, San Francisco, CA 94016" +257137,USB-C Charging Cable,1,11.95,09/10/19 16:21,"104 11th St, San Francisco, CA 94016" +257138,20in Monitor,1,109.99,09/11/19 19:05,"646 Main St, San Francisco, CA 94016" +257139,Apple Airpods Headphones,1,150,09/13/19 19:16,"187 Wilson St, Portland, OR 97035" +257139,USB-C Charging Cable,1,11.95,09/13/19 19:16,"187 Wilson St, Portland, OR 97035" +257140,Bose SoundSport Headphones,1,99.99,09/15/19 12:34,"151 Jackson St, Boston, MA 02215" +257141,AAA Batteries (4-pack),1,2.99,09/07/19 08:01,"741 11th St, Austin, TX 73301" +257142,Google Phone,1,600,09/29/19 21:37,"806 Walnut St, New York City, NY 10001" +257142,Wired Headphones,1,11.99,09/29/19 21:37,"806 Walnut St, New York City, NY 10001" +257143,Lightning Charging Cable,1,14.95,09/20/19 09:17,"663 Washington St, New York City, NY 10001" +257144,ThinkPad Laptop,1,999.99,09/07/19 02:24,"115 Chestnut St, Atlanta, GA 30301" +257145,27in FHD Monitor,1,149.99,09/29/19 11:54,"446 West St, Los Angeles, CA 90001" +257146,USB-C Charging Cable,1,11.95,09/11/19 08:18,"441 Pine St, San Francisco, CA 94016" +257147,27in FHD Monitor,1,149.99,09/13/19 17:25,"813 West St, New York City, NY 10001" +257148,Apple Airpods Headphones,1,150,09/03/19 13:47,"678 Lake St, San Francisco, CA 94016" +257149,Bose SoundSport Headphones,1,99.99,09/13/19 22:26,"240 11th St, New York City, NY 10001" +257150,Lightning Charging Cable,1,14.95,09/21/19 08:01,"305 Sunset St, Portland, OR 97035" +257151,27in FHD Monitor,1,149.99,09/15/19 20:15,"763 1st St, Los Angeles, CA 90001" +257152,AA Batteries (4-pack),1,3.84,09/19/19 13:15,"92 Madison St, San Francisco, CA 94016" +257153,AAA Batteries (4-pack),1,2.99,09/18/19 12:54,"669 Forest St, San Francisco, CA 94016" +257154,USB-C Charging Cable,1,11.95,09/08/19 21:50,"528 Spruce St, Dallas, TX 75001" +257155,Wired Headphones,1,11.99,09/04/19 17:32,"57 Johnson St, Portland, OR 97035" +257156,Wired Headphones,1,11.99,09/21/19 09:14,"718 Church St, Atlanta, GA 30301" +257157,AAA Batteries (4-pack),2,2.99,09/21/19 14:34,"340 9th St, Portland, OR 97035" +257158,Apple Airpods Headphones,1,150,09/12/19 19:44,"922 4th St, Boston, MA 02215" +257159,Lightning Charging Cable,1,14.95,09/11/19 17:09,"143 12th St, San Francisco, CA 94016" +257160,USB-C Charging Cable,1,11.95,09/14/19 08:40,"540 Madison St, New York City, NY 10001" +257161,AA Batteries (4-pack),2,3.84,09/06/19 06:58,"160 5th St, Atlanta, GA 30301" +257162,USB-C Charging Cable,1,11.95,09/18/19 22:18,"852 12th St, San Francisco, CA 94016" +257163,iPhone,1,700,09/11/19 13:23,"690 10th St, Los Angeles, CA 90001" +257163,Wired Headphones,1,11.99,09/11/19 13:23,"690 10th St, Los Angeles, CA 90001" +257164,34in Ultrawide Monitor,1,379.99,09/06/19 14:41,"294 Elm St, San Francisco, CA 94016" +257165,AA Batteries (4-pack),2,3.84,09/15/19 13:38,"546 Hill St, San Francisco, CA 94016" +257166,AAA Batteries (4-pack),1,2.99,09/13/19 11:06,"575 Cedar St, Seattle, WA 98101" +257167,Bose SoundSport Headphones,1,99.99,09/09/19 21:54,"480 Cherry St, San Francisco, CA 94016" +257168,AAA Batteries (4-pack),1,2.99,09/05/19 13:40,"982 4th St, San Francisco, CA 94016" +257169,Apple Airpods Headphones,1,150,09/13/19 14:57,"525 7th St, San Francisco, CA 94016" +257170,27in 4K Gaming Monitor,1,389.99,09/25/19 17:21,"355 Sunset St, San Francisco, CA 94016" +257171,20in Monitor,1,109.99,09/28/19 13:32,"508 Willow St, Boston, MA 02215" +257172,iPhone,1,700,09/27/19 11:50,"956 West St, Los Angeles, CA 90001" +257173,Wired Headphones,1,11.99,09/15/19 22:53,"146 Pine St, Seattle, WA 98101" +257174,Lightning Charging Cable,1,14.95,09/03/19 12:25,"275 Cherry St, New York City, NY 10001" +257175,AAA Batteries (4-pack),1,2.99,09/09/19 22:30,"20 4th St, Los Angeles, CA 90001" +257176,Macbook Pro Laptop,1,1700,09/08/19 19:01,"257 Ridge St, Atlanta, GA 30301" +257177,AA Batteries (4-pack),1,3.84,09/04/19 13:51,"739 Pine St, San Francisco, CA 94016" +,,,,, +257178,27in 4K Gaming Monitor,1,389.99,09/26/19 18:11,"251 12th St, Los Angeles, CA 90001" +257179,AA Batteries (4-pack),1,3.84,09/12/19 11:31,"881 Walnut St, Seattle, WA 98101" +257180,27in FHD Monitor,1,149.99,09/24/19 11:07,"606 Forest St, Portland, ME 04101" +257181,Wired Headphones,1,11.99,09/15/19 23:57,"18 Elm St, Los Angeles, CA 90001" +257182,LG Dryer,1,600.0,09/03/19 09:11,"956 Hickory St, Los Angeles, CA 90001" +257183,AAA Batteries (4-pack),1,2.99,09/03/19 12:13,"203 Hill St, San Francisco, CA 94016" +257184,USB-C Charging Cable,1,11.95,09/14/19 15:46,"43 Hill St, New York City, NY 10001" +257185,USB-C Charging Cable,1,11.95,09/11/19 18:39,"547 Jackson St, New York City, NY 10001" +257186,27in 4K Gaming Monitor,1,389.99,09/09/19 08:41,"791 14th St, San Francisco, CA 94016" +257187,20in Monitor,1,109.99,09/09/19 16:11,"456 Cedar St, San Francisco, CA 94016" +257188,AAA Batteries (4-pack),1,2.99,09/28/19 16:29,"297 10th St, Los Angeles, CA 90001" +257189,AAA Batteries (4-pack),1,2.99,09/07/19 20:50,"533 Cherry St, Los Angeles, CA 90001" +257190,Lightning Charging Cable,2,14.95,09/28/19 12:32,"705 Church St, Dallas, TX 75001" +257191,USB-C Charging Cable,1,11.95,09/08/19 20:21,"598 7th St, Seattle, WA 98101" +257192,Bose SoundSport Headphones,1,99.99,09/07/19 14:46,"408 Dogwood St, Austin, TX 73301" +257193,AA Batteries (4-pack),1,3.84,09/01/19 08:56,"490 Willow St, San Francisco, CA 94016" +257194,AAA Batteries (4-pack),1,2.99,09/26/19 19:11,"865 10th St, Dallas, TX 75001" +257195,iPhone,1,700,09/06/19 17:06,"672 Highland St, New York City, NY 10001" +257196,USB-C Charging Cable,1,11.95,09/09/19 11:46,"611 Ridge St, Boston, MA 02215" +257197,Lightning Charging Cable,1,14.95,09/19/19 08:48,"131 Meadow St, New York City, NY 10001" +257198,Lightning Charging Cable,1,14.95,09/16/19 19:25,"91 10th St, Austin, TX 73301" +257199,Lightning Charging Cable,1,14.95,09/24/19 12:12,"117 Ridge St, Boston, MA 02215" +257200,20in Monitor,1,109.99,09/10/19 20:31,"949 Lincoln St, Seattle, WA 98101" +257201,AA Batteries (4-pack),1,3.84,09/04/19 14:27,"77 Wilson St, Seattle, WA 98101" +257202,Flatscreen TV,1,300,09/03/19 23:07,"210 Lakeview St, Seattle, WA 98101" +257203,ThinkPad Laptop,1,999.99,09/25/19 15:46,"595 Jefferson St, Dallas, TX 75001" +257204,Google Phone,1,600,09/28/19 00:04,"324 Hickory St, Seattle, WA 98101" +257204,AA Batteries (4-pack),1,3.84,09/28/19 00:04,"324 Hickory St, Seattle, WA 98101" +257205,AAA Batteries (4-pack),1,2.99,09/02/19 12:24,"39 9th St, Seattle, WA 98101" +257206,34in Ultrawide Monitor,1,379.99,09/14/19 13:33,"597 Chestnut St, Austin, TX 73301" +257207,Lightning Charging Cable,1,14.95,09/27/19 10:08,"28 6th St, Los Angeles, CA 90001" +257208,AA Batteries (4-pack),2,3.84,09/21/19 13:32,"100 Hill St, San Francisco, CA 94016" +257209,Wired Headphones,1,11.99,09/22/19 10:33,"253 Lake St, Los Angeles, CA 90001" +257210,iPhone,1,700,09/28/19 17:07,"205 Jefferson St, Los Angeles, CA 90001" +257211,Apple Airpods Headphones,1,150,09/13/19 21:51,"163 13th St, Dallas, TX 75001" +257212,Wired Headphones,1,11.99,09/08/19 11:28,"175 Cherry St, San Francisco, CA 94016" +257213,Bose SoundSport Headphones,1,99.99,09/28/19 12:01,"483 Ridge St, Seattle, WA 98101" +257214,ThinkPad Laptop,1,999.99,09/03/19 17:42,"475 14th St, Dallas, TX 75001" +257215,Bose SoundSport Headphones,1,99.99,09/13/19 19:31,"622 5th St, Los Angeles, CA 90001" +257216,USB-C Charging Cable,1,11.95,09/14/19 15:33,"662 7th St, San Francisco, CA 94016" +257217,Macbook Pro Laptop,1,1700,09/07/19 08:00,"629 Wilson St, Los Angeles, CA 90001" +257218,Lightning Charging Cable,1,14.95,09/02/19 11:23,"221 Jackson St, Los Angeles, CA 90001" +257219,USB-C Charging Cable,1,11.95,09/15/19 16:55,"246 West St, San Francisco, CA 94016" +257220,34in Ultrawide Monitor,1,379.99,09/24/19 17:06,"618 Jefferson St, Atlanta, GA 30301" +257221,Wired Headphones,1,11.99,09/11/19 12:26,"71 13th St, Atlanta, GA 30301" +257222,USB-C Charging Cable,1,11.95,09/17/19 06:34,"841 Jackson St, New York City, NY 10001" +257223,Lightning Charging Cable,1,14.95,09/08/19 20:47,"757 14th St, Los Angeles, CA 90001" +257224,AA Batteries (4-pack),1,3.84,09/25/19 11:09,"749 Ridge St, Atlanta, GA 30301" +257225,AA Batteries (4-pack),2,3.84,09/10/19 13:26,"43 River St, San Francisco, CA 94016" +257226,Lightning Charging Cable,1,14.95,09/29/19 18:14,"366 Walnut St, San Francisco, CA 94016" +257227,USB-C Charging Cable,1,11.95,09/05/19 13:58,"238 Park St, Los Angeles, CA 90001" +257228,Lightning Charging Cable,1,14.95,09/25/19 17:45,"113 Jefferson St, Boston, MA 02215" +257229,Google Phone,1,600,09/18/19 19:48,"393 Lincoln St, San Francisco, CA 94016" +257230,27in FHD Monitor,1,149.99,09/09/19 23:11,"5 4th St, Dallas, TX 75001" +257231,Flatscreen TV,1,300,09/15/19 20:17,"884 Highland St, San Francisco, CA 94016" +257232,Google Phone,1,600,09/22/19 13:32,"550 Jackson St, San Francisco, CA 94016" +257233,Lightning Charging Cable,1,14.95,09/04/19 12:32,"893 Highland St, Dallas, TX 75001" +257234,AAA Batteries (4-pack),1,2.99,09/01/19 21:48,"116 Jackson St, Portland, OR 97035" +257235,AAA Batteries (4-pack),1,2.99,09/01/19 17:58,"277 6th St, Portland, OR 97035" +,,,,, +257236,Apple Airpods Headphones,1,150,09/15/19 15:27,"590 Lake St, San Francisco, CA 94016" +257237,Lightning Charging Cable,1,14.95,09/17/19 18:21,"789 Meadow St, San Francisco, CA 94016" +257238,Bose SoundSport Headphones,1,99.99,09/18/19 19:45,"702 Ridge St, Atlanta, GA 30301" +257239,27in FHD Monitor,1,149.99,09/21/19 10:38,"810 Cedar St, Dallas, TX 75001" +257240,AAA Batteries (4-pack),1,2.99,09/10/19 22:30,"504 Lincoln St, New York City, NY 10001" +257241,27in FHD Monitor,1,149.99,09/28/19 10:00,"76 Hill St, San Francisco, CA 94016" +257242,27in 4K Gaming Monitor,1,389.99,09/14/19 14:09,"980 2nd St, Seattle, WA 98101" +257243,27in 4K Gaming Monitor,1,389.99,09/02/19 09:11,"138 Willow St, Portland, OR 97035" +257244,AA Batteries (4-pack),4,3.84,09/13/19 22:38,"271 Maple St, New York City, NY 10001" +257245,Wired Headphones,1,11.99,09/12/19 10:41,"993 Jackson St, New York City, NY 10001" +257246,Wired Headphones,1,11.99,09/21/19 12:57,"483 Willow St, Seattle, WA 98101" +257247,Bose SoundSport Headphones,1,99.99,09/24/19 21:16,"591 13th St, Atlanta, GA 30301" +257248,AAA Batteries (4-pack),1,2.99,09/21/19 10:08,"133 1st St, Portland, OR 97035" +257249,ThinkPad Laptop,1,999.99,09/05/19 11:48,"604 Park St, Austin, TX 73301" +257250,27in FHD Monitor,1,149.99,09/06/19 15:06,"810 Cedar St, Dallas, TX 75001" +257251,Apple Airpods Headphones,1,150,09/19/19 23:46,"61 Madison St, Boston, MA 02215" +257252,AAA Batteries (4-pack),1,2.99,09/01/19 13:26,"904 Forest St, Seattle, WA 98101" +257253,Apple Airpods Headphones,1,150,09/28/19 20:00,"617 2nd St, Boston, MA 02215" +257254,27in FHD Monitor,1,149.99,09/06/19 10:25,"780 13th St, San Francisco, CA 94016" +257255,Wired Headphones,1,11.99,09/24/19 14:54,"203 Center St, San Francisco, CA 94016" +257256,USB-C Charging Cable,1,11.95,09/21/19 18:30,"806 Lakeview St, Austin, TX 73301" +257257,Google Phone,1,600,09/10/19 11:44,"771 12th St, Los Angeles, CA 90001" +257258,Wired Headphones,1,11.99,09/21/19 17:21,"761 11th St, Dallas, TX 75001" +257259,Bose SoundSport Headphones,1,99.99,09/12/19 15:41,"254 Johnson St, Austin, TX 73301" +257260,AA Batteries (4-pack),2,3.84,09/02/19 19:55,"445 6th St, San Francisco, CA 94016" +257261,ThinkPad Laptop,1,999.99,09/23/19 10:13,"46 Hickory St, San Francisco, CA 94016" +257262,Macbook Pro Laptop,1,1700,09/30/19 16:55,"312 5th St, Boston, MA 02215" +257263,AA Batteries (4-pack),2,3.84,09/25/19 13:45,"941 2nd St, San Francisco, CA 94016" +257264,Google Phone,1,600,09/19/19 03:04,"75 Dogwood St, Atlanta, GA 30301" +257265,27in 4K Gaming Monitor,1,389.99,09/18/19 16:51,"497 Cedar St, Los Angeles, CA 90001" +257266,Lightning Charging Cable,1,14.95,09/25/19 14:34,"632 South St, Dallas, TX 75001" +257267,20in Monitor,1,109.99,09/17/19 11:26,"658 Johnson St, Boston, MA 02215" +257268,Lightning Charging Cable,1,14.95,09/23/19 01:13,"716 Church St, Portland, OR 97035" +257269,Wired Headphones,1,11.99,09/08/19 08:07,"712 9th St, Los Angeles, CA 90001" +257270,USB-C Charging Cable,1,11.95,09/12/19 16:24,"955 2nd St, Boston, MA 02215" +257271,Wired Headphones,2,11.99,09/05/19 09:32,"234 Jefferson St, New York City, NY 10001" +257272,Bose SoundSport Headphones,1,99.99,09/09/19 02:18,"537 Cedar St, New York City, NY 10001" +257273,USB-C Charging Cable,1,11.95,09/05/19 11:04,"472 Jackson St, San Francisco, CA 94016" +257274,Flatscreen TV,1,300,09/02/19 12:12,"915 Madison St, Seattle, WA 98101" +257275,iPhone,1,700,09/05/19 13:56,"347 Jackson St, Austin, TX 73301" +257276,ThinkPad Laptop,1,999.99,09/15/19 23:18,"181 River St, San Francisco, CA 94016" +257277,AA Batteries (4-pack),1,3.84,09/07/19 08:20,"914 Center St, Boston, MA 02215" +257278,Apple Airpods Headphones,1,150,09/11/19 09:21,"552 Lincoln St, Seattle, WA 98101" +257278,27in FHD Monitor,1,149.99,09/11/19 09:21,"552 Lincoln St, Seattle, WA 98101" +257279,Vareebadd Phone,1,400,09/19/19 21:19,"991 Madison St, Atlanta, GA 30301" +257280,Wired Headphones,1,11.99,09/07/19 23:48,"640 Park St, Seattle, WA 98101" +257281,Wired Headphones,1,11.99,09/14/19 07:52,"562 Johnson St, Austin, TX 73301" +257282,Lightning Charging Cable,1,14.95,09/24/19 19:31,"863 Madison St, San Francisco, CA 94016" +257283,Bose SoundSport Headphones,1,99.99,09/05/19 08:24,"968 Jefferson St, Austin, TX 73301" +257284,AA Batteries (4-pack),1,3.84,09/05/19 13:50,"201 Willow St, Seattle, WA 98101" +257285,AA Batteries (4-pack),1,3.84,09/04/19 18:51,"74 12th St, Seattle, WA 98101" +257286,Bose SoundSport Headphones,1,99.99,09/03/19 18:22,"2 Walnut St, Boston, MA 02215" +257287,Macbook Pro Laptop,1,1700,09/01/19 08:30,"662 Walnut St, Portland, OR 97035" +257288,Lightning Charging Cable,1,14.95,09/07/19 12:56,"530 Meadow St, San Francisco, CA 94016" +257289,AA Batteries (4-pack),2,3.84,09/14/19 19:23,"376 11th St, Los Angeles, CA 90001" +257290,AAA Batteries (4-pack),2,2.99,09/21/19 10:26,"992 Adams St, San Francisco, CA 94016" +257291,Google Phone,1,600,09/20/19 15:30,"411 Washington St, New York City, NY 10001" +257292,20in Monitor,1,109.99,09/26/19 10:19,"411 Willow St, New York City, NY 10001" +257293,Vareebadd Phone,1,400,09/24/19 13:38,"227 13th St, Boston, MA 02215" +257293,USB-C Charging Cable,1,11.95,09/24/19 13:38,"227 13th St, Boston, MA 02215" +257294,Bose SoundSport Headphones,1,99.99,09/13/19 19:23,"874 Main St, Seattle, WA 98101" +257295,Lightning Charging Cable,1,14.95,09/11/19 19:14,"110 Lakeview St, Seattle, WA 98101" +257296,Wired Headphones,1,11.99,09/12/19 02:55,"219 Madison St, San Francisco, CA 94016" +257296,27in FHD Monitor,1,149.99,09/12/19 02:55,"219 Madison St, San Francisco, CA 94016" +257297,Bose SoundSport Headphones,1,99.99,09/03/19 12:07,"553 9th St, Seattle, WA 98101" +257298,27in FHD Monitor,1,149.99,09/20/19 20:26,"160 13th St, Dallas, TX 75001" +257299,USB-C Charging Cable,1,11.95,09/11/19 10:48,"171 River St, Atlanta, GA 30301" +257300,Google Phone,1,600,09/20/19 14:47,"754 Cherry St, New York City, NY 10001" +257301,Wired Headphones,1,11.99,09/20/19 21:34,"370 Dogwood St, Austin, TX 73301" +257302,Lightning Charging Cable,1,14.95,09/13/19 12:42,"826 Center St, Portland, OR 97035" +257303,AAA Batteries (4-pack),2,2.99,09/07/19 02:44,"941 Walnut St, San Francisco, CA 94016" +257304,20in Monitor,1,109.99,09/24/19 10:42,"48 Walnut St, New York City, NY 10001" +257305,Lightning Charging Cable,1,14.95,09/24/19 22:49,"367 11th St, San Francisco, CA 94016" +257306,Google Phone,1,600,09/26/19 10:34,"640 12th St, Los Angeles, CA 90001" +257307,Wired Headphones,1,11.99,09/18/19 08:22,"563 Jackson St, San Francisco, CA 94016" +257308,USB-C Charging Cable,1,11.95,09/08/19 08:02,"240 Adams St, Los Angeles, CA 90001" +257309,USB-C Charging Cable,1,11.95,09/09/19 12:47,"83 Center St, Portland, OR 97035" +257310,27in FHD Monitor,1,149.99,09/22/19 19:10,"820 Sunset St, Boston, MA 02215" +257311,AAA Batteries (4-pack),2,2.99,09/27/19 11:33,"494 Ridge St, Atlanta, GA 30301" +257312,USB-C Charging Cable,1,11.95,09/06/19 18:46,"139 Cherry St, Boston, MA 02215" +257313,AA Batteries (4-pack),1,3.84,09/01/19 15:11,"86 8th St, New York City, NY 10001" +257314,Apple Airpods Headphones,1,150,09/13/19 22:15,"45 Cedar St, San Francisco, CA 94016" +257315,34in Ultrawide Monitor,1,379.99,09/25/19 11:12,"367 Sunset St, Dallas, TX 75001" +257316,27in 4K Gaming Monitor,1,389.99,09/27/19 11:57,"81 Spruce St, Los Angeles, CA 90001" +257317,Wired Headphones,1,11.99,09/24/19 14:34,"177 11th St, San Francisco, CA 94016" +257318,Bose SoundSport Headphones,1,99.99,09/22/19 08:48,"786 6th St, Seattle, WA 98101" +257319,27in FHD Monitor,1,149.99,09/02/19 16:56,"868 Walnut St, Los Angeles, CA 90001" +257320,USB-C Charging Cable,1,11.95,09/03/19 12:23,"648 Chestnut St, Boston, MA 02215" +257321,USB-C Charging Cable,1,11.95,09/20/19 03:59,"674 Wilson St, New York City, NY 10001" +257322,Bose SoundSport Headphones,1,99.99,09/03/19 16:52,"576 Chestnut St, San Francisco, CA 94016" +257323,iPhone,1,700,09/10/19 18:45,"239 Dogwood St, New York City, NY 10001" +257324,27in 4K Gaming Monitor,1,389.99,09/06/19 21:31,"942 Hickory St, New York City, NY 10001" +257325,AAA Batteries (4-pack),2,2.99,09/14/19 11:22,"484 Park St, Boston, MA 02215" +257326,AA Batteries (4-pack),1,3.84,09/01/19 11:32,"242 10th St, Atlanta, GA 30301" +257327,AAA Batteries (4-pack),2,2.99,09/29/19 09:47,"939 Lincoln St, Boston, MA 02215" +257328,Google Phone,1,600,09/01/19 12:41,"803 Cedar St, Dallas, TX 75001" +257329,Lightning Charging Cable,1,14.95,09/26/19 11:35,"998 North St, Dallas, TX 75001" +257330,AAA Batteries (4-pack),1,2.99,09/29/19 22:48,"1 1st St, New York City, NY 10001" +257331,AAA Batteries (4-pack),1,2.99,09/06/19 14:29,"279 Chestnut St, Los Angeles, CA 90001" +257332,AA Batteries (4-pack),1,3.84,09/21/19 06:18,"340 Lincoln St, Atlanta, GA 30301" +257333,USB-C Charging Cable,1,11.95,09/19/19 19:49,"797 Pine St, Atlanta, GA 30301" +257333,AA Batteries (4-pack),1,3.84,09/19/19 19:49,"797 Pine St, Atlanta, GA 30301" +257334,USB-C Charging Cable,1,11.95,09/22/19 09:46,"978 Madison St, Los Angeles, CA 90001" +257335,Macbook Pro Laptop,1,1700,09/27/19 10:28,"701 Hickory St, Boston, MA 02215" +257336,Bose SoundSport Headphones,1,99.99,09/12/19 17:32,"929 Pine St, Los Angeles, CA 90001" +257337,27in 4K Gaming Monitor,1,389.99,09/01/19 11:00,"730 Wilson St, San Francisco, CA 94016" +257338,AA Batteries (4-pack),1,3.84,09/01/19 07:43,"372 Main St, New York City, NY 10001" +257339,AA Batteries (4-pack),2,3.84,09/28/19 21:02,"535 Madison St, Atlanta, GA 30301" +257340,Lightning Charging Cable,1,14.95,09/21/19 18:45,"704 5th St, Austin, TX 73301" +257341,Google Phone,1,600,09/14/19 00:34,"86 Hickory St, Dallas, TX 75001" +257341,USB-C Charging Cable,1,11.95,09/14/19 00:34,"86 Hickory St, Dallas, TX 75001" +257342,AAA Batteries (4-pack),3,2.99,09/28/19 17:29,"683 Forest St, Dallas, TX 75001" +257343,AAA Batteries (4-pack),1,2.99,09/24/19 18:17,"798 South St, Boston, MA 02215" +257344,Wired Headphones,1,11.99,09/22/19 23:58,"992 Madison St, Atlanta, GA 30301" +257345,27in FHD Monitor,1,149.99,09/03/19 07:01,"724 5th St, Austin, TX 73301" +257346,AA Batteries (4-pack),3,3.84,09/08/19 20:21,"656 Chestnut St, Boston, MA 02215" +257347,Google Phone,1,600,09/07/19 01:28,"730 Willow St, Seattle, WA 98101" +257348,Apple Airpods Headphones,1,150,09/02/19 15:07,"430 6th St, Portland, OR 97035" +257349,Wired Headphones,1,11.99,09/12/19 06:39,"960 Sunset St, Seattle, WA 98101" +257350,Lightning Charging Cable,1,14.95,09/02/19 18:52,"755 Spruce St, Boston, MA 02215" +257351,Bose SoundSport Headphones,1,99.99,09/26/19 22:09,"827 8th St, Atlanta, GA 30301" +257352,27in 4K Gaming Monitor,1,389.99,09/17/19 11:43,"777 Hill St, Los Angeles, CA 90001" +257353,Apple Airpods Headphones,1,150,09/30/19 15:11,"122 Chestnut St, Seattle, WA 98101" +257354,USB-C Charging Cable,1,11.95,09/11/19 12:05,"533 Jackson St, San Francisco, CA 94016" +257355,AAA Batteries (4-pack),1,2.99,09/08/19 19:39,"831 5th St, Portland, ME 04101" +257356,Bose SoundSport Headphones,1,99.99,09/04/19 17:01,"680 11th St, New York City, NY 10001" +257357,AAA Batteries (4-pack),1,2.99,09/18/19 14:22,"114 Main St, San Francisco, CA 94016" +257358,Flatscreen TV,1,300,09/21/19 03:45,"596 13th St, San Francisco, CA 94016" +257359,27in FHD Monitor,1,149.99,09/21/19 21:32,"216 Forest St, Portland, OR 97035" +257360,Bose SoundSport Headphones,1,99.99,09/09/19 21:06,"345 Hill St, Los Angeles, CA 90001" +257361,AA Batteries (4-pack),1,3.84,09/01/19 20:43,"46 8th St, Dallas, TX 75001" +257362,AAA Batteries (4-pack),1,2.99,09/30/19 12:02,"519 Park St, Los Angeles, CA 90001" +257363,USB-C Charging Cable,1,11.95,09/23/19 11:59,"420 River St, New York City, NY 10001" +257364,USB-C Charging Cable,1,11.95,09/17/19 16:20,"860 14th St, San Francisco, CA 94016" +257365,Flatscreen TV,1,300,09/01/19 19:19,"152 Spruce St, Seattle, WA 98101" +257366,AAA Batteries (4-pack),1,2.99,09/11/19 10:01,"636 Cherry St, San Francisco, CA 94016" +257367,27in FHD Monitor,1,149.99,09/08/19 14:28,"409 Walnut St, Boston, MA 02215" +257368,Wired Headphones,1,11.99,09/08/19 09:55,"717 Meadow St, New York City, NY 10001" +257369,Flatscreen TV,1,300,09/19/19 01:09,"409 Lincoln St, Los Angeles, CA 90001" +257370,Wired Headphones,2,11.99,09/19/19 16:31,"830 Park St, Seattle, WA 98101" +257371,Wired Headphones,1,11.99,09/13/19 17:12,"82 Highland St, Boston, MA 02215" +257372,USB-C Charging Cable,1,11.95,09/04/19 12:34,"429 Maple St, Boston, MA 02215" +257373,Lightning Charging Cable,1,14.95,09/29/19 11:31,"59 Pine St, Boston, MA 02215" +257374,Apple Airpods Headphones,1,150,09/16/19 16:30,"886 Madison St, Austin, TX 73301" +257375,USB-C Charging Cable,1,11.95,09/07/19 12:40,"51 Washington St, Los Angeles, CA 90001" +257376,USB-C Charging Cable,1,11.95,09/29/19 16:54,"674 Chestnut St, San Francisco, CA 94016" +257377,AAA Batteries (4-pack),1,2.99,09/18/19 19:45,"677 River St, Dallas, TX 75001" +257378,Lightning Charging Cable,1,14.95,09/27/19 00:56,"696 Center St, Dallas, TX 75001" +257379,Google Phone,1,600,09/23/19 07:37,"842 14th St, Atlanta, GA 30301" +257380,AAA Batteries (4-pack),2,2.99,09/17/19 13:25,"575 9th St, Portland, OR 97035" +257381,AA Batteries (4-pack),2,3.84,09/17/19 08:54,"255 Lincoln St, Portland, OR 97035" +257382,AAA Batteries (4-pack),2,2.99,09/27/19 19:20,"851 1st St, Los Angeles, CA 90001" +257383,Bose SoundSport Headphones,1,99.99,09/08/19 20:56,"495 Madison St, Los Angeles, CA 90001" +257384,Vareebadd Phone,1,400,09/26/19 12:51,"716 North St, Seattle, WA 98101" +257385,AA Batteries (4-pack),1,3.84,09/10/19 13:05,"396 10th St, New York City, NY 10001" +257386,Lightning Charging Cable,1,14.95,09/18/19 10:07,"412 Lincoln St, Dallas, TX 75001" +,,,,, +257387,Lightning Charging Cable,1,14.95,09/03/19 15:33,"857 Lake St, Austin, TX 73301" +257388,AAA Batteries (4-pack),1,2.99,09/15/19 00:14,"243 9th St, Austin, TX 73301" +257389,iPhone,1,700,09/25/19 19:31,"383 Main St, New York City, NY 10001" +257390,AAA Batteries (4-pack),1,2.99,09/28/19 00:08,"208 Cedar St, San Francisco, CA 94016" +257391,Google Phone,1,600,09/08/19 15:50,"152 11th St, Austin, TX 73301" +257392,USB-C Charging Cable,1,11.95,09/13/19 12:31,"870 4th St, San Francisco, CA 94016" +257393,AA Batteries (4-pack),1,3.84,09/08/19 12:05,"212 4th St, Seattle, WA 98101" +257394,Lightning Charging Cable,1,14.95,09/10/19 14:52,"32 Pine St, San Francisco, CA 94016" +257395,USB-C Charging Cable,1,11.95,09/24/19 06:13,"532 South St, Portland, OR 97035" +257396,AA Batteries (4-pack),2,3.84,09/03/19 21:19,"38 5th St, New York City, NY 10001" +257397,Wired Headphones,1,11.99,09/09/19 19:41,"316 12th St, Portland, OR 97035" +257398,Apple Airpods Headphones,1,150,09/01/19 17:41,"602 Washington St, San Francisco, CA 94016" +257399,AAA Batteries (4-pack),1,2.99,09/30/19 15:18,"84 9th St, Dallas, TX 75001" +257400,USB-C Charging Cable,1,11.95,09/27/19 12:14,"503 River St, Seattle, WA 98101" +257401,AA Batteries (4-pack),1,3.84,09/06/19 18:30,"906 Highland St, Dallas, TX 75001" +257402,Wired Headphones,1,11.99,09/08/19 15:46,"72 7th St, Boston, MA 02215" +257403,AA Batteries (4-pack),1,3.84,09/29/19 21:25,"211 Center St, Los Angeles, CA 90001" +257404,Wired Headphones,1,11.99,09/06/19 21:26,"368 West St, Los Angeles, CA 90001" +257405,Lightning Charging Cable,1,14.95,09/30/19 18:19,"4 Spruce St, San Francisco, CA 94016" +257406,Lightning Charging Cable,1,14.95,09/17/19 10:41,"32 Walnut St, New York City, NY 10001" +257407,AA Batteries (4-pack),1,3.84,09/18/19 14:39,"167 Cherry St, Atlanta, GA 30301" +257408,AAA Batteries (4-pack),1,2.99,09/29/19 17:46,"857 North St, San Francisco, CA 94016" +257409,Google Phone,1,600,09/22/19 20:58,"657 West St, San Francisco, CA 94016" +257409,USB-C Charging Cable,1,11.95,09/22/19 20:58,"657 West St, San Francisco, CA 94016" +257410,Lightning Charging Cable,1,14.95,09/17/19 06:01,"102 2nd St, New York City, NY 10001" +257411,Google Phone,1,600,09/04/19 04:18,"673 Jackson St, San Francisco, CA 94016" +257412,Apple Airpods Headphones,1,150,09/15/19 13:08,"711 Willow St, San Francisco, CA 94016" +257413,Wired Headphones,1,11.99,09/06/19 16:25,"280 Church St, San Francisco, CA 94016" +257414,Apple Airpods Headphones,1,150,09/25/19 13:39,"172 Spruce St, Dallas, TX 75001" +257415,Apple Airpods Headphones,1,150,09/13/19 07:36,"370 Madison St, Austin, TX 73301" +257416,Bose SoundSport Headphones,1,99.99,09/20/19 14:18,"516 13th St, Seattle, WA 98101" +257417,Lightning Charging Cable,1,14.95,09/29/19 11:05,"506 Cedar St, Austin, TX 73301" +257418,AA Batteries (4-pack),1,3.84,09/12/19 13:21,"496 Willow St, Portland, OR 97035" +257419,Lightning Charging Cable,1,14.95,09/15/19 18:56,"344 Jefferson St, San Francisco, CA 94016" +257420,Apple Airpods Headphones,1,150,09/28/19 11:44,"606 Center St, Los Angeles, CA 90001" +257421,34in Ultrawide Monitor,1,379.99,09/02/19 13:37,"2 14th St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +257422,Wired Headphones,1,11.99,09/20/19 17:59,"488 Willow St, San Francisco, CA 94016" +257423,27in FHD Monitor,1,149.99,09/23/19 19:16,"801 11th St, Boston, MA 02215" +257424,Lightning Charging Cable,1,14.95,09/25/19 13:47,"677 Highland St, New York City, NY 10001" +257425,Flatscreen TV,1,300,09/03/19 21:22,"834 7th St, San Francisco, CA 94016" +257426,Bose SoundSport Headphones,1,99.99,09/12/19 11:49,"41 Center St, Atlanta, GA 30301" +257427,Lightning Charging Cable,1,14.95,09/10/19 11:21,"741 Church St, New York City, NY 10001" +257428,Bose SoundSport Headphones,1,99.99,09/30/19 15:40,"486 Cedar St, Los Angeles, CA 90001" +257429,AAA Batteries (4-pack),1,2.99,09/14/19 21:37,"14 Forest St, Boston, MA 02215" +257430,20in Monitor,1,109.99,09/05/19 19:48,"465 Maple St, San Francisco, CA 94016" +257431,Lightning Charging Cable,1,14.95,09/05/19 21:13,"357 Chestnut St, San Francisco, CA 94016" +257432,Google Phone,1,600,09/19/19 18:33,"380 Church St, Atlanta, GA 30301" +257433,27in 4K Gaming Monitor,1,389.99,09/12/19 23:51,"639 Jackson St, Atlanta, GA 30301" +257434,AAA Batteries (4-pack),2,2.99,09/28/19 20:58,"129 5th St, Los Angeles, CA 90001" +257435,Flatscreen TV,1,300,09/25/19 12:33,"870 Meadow St, Boston, MA 02215" +257436,27in 4K Gaming Monitor,1,389.99,09/09/19 14:36,"371 7th St, Dallas, TX 75001" +257437,27in 4K Gaming Monitor,1,389.99,09/09/19 19:11,"73 12th St, Portland, OR 97035" +257438,AA Batteries (4-pack),1,3.84,09/07/19 18:22,"35 Main St, Los Angeles, CA 90001" +257439,USB-C Charging Cable,1,11.95,09/14/19 14:41,"80 Dogwood St, Seattle, WA 98101" +257440,iPhone,1,700,09/15/19 17:29,"446 Elm St, Dallas, TX 75001" +257441,20in Monitor,1,109.99,09/02/19 19:04,"190 Adams St, Boston, MA 02215" +257442,Lightning Charging Cable,2,14.95,09/09/19 19:41,"859 Washington St, San Francisco, CA 94016" +257443,Apple Airpods Headphones,1,150,09/07/19 09:12,"991 Sunset St, San Francisco, CA 94016" +257444,34in Ultrawide Monitor,1,379.99,09/23/19 13:21,"409 Wilson St, Portland, OR 97035" +257445,Macbook Pro Laptop,1,1700,09/03/19 00:29,"907 8th St, Atlanta, GA 30301" +257446,Bose SoundSport Headphones,1,99.99,09/14/19 13:05,"330 West St, San Francisco, CA 94016" +257447,USB-C Charging Cable,1,11.95,09/26/19 00:15,"161 8th St, San Francisco, CA 94016" +257448,AA Batteries (4-pack),1,3.84,09/25/19 14:13,"778 1st St, San Francisco, CA 94016" +257449,Bose SoundSport Headphones,1,99.99,09/14/19 13:24,"677 Lake St, Los Angeles, CA 90001" +257449,USB-C Charging Cable,1,11.95,09/14/19 13:24,"677 Lake St, Los Angeles, CA 90001" +257450,Lightning Charging Cable,1,14.95,09/01/19 14:59,"144 Jefferson St, Seattle, WA 98101" +257451,Bose SoundSport Headphones,1,99.99,09/20/19 07:44,"682 River St, New York City, NY 10001" +257452,Apple Airpods Headphones,1,150,09/18/19 13:40,"137 Elm St, Atlanta, GA 30301" +257453,AA Batteries (4-pack),2,3.84,09/18/19 20:24,"719 7th St, New York City, NY 10001" +257454,Lightning Charging Cable,1,14.95,09/11/19 07:15,"610 Cherry St, San Francisco, CA 94016" +257455,Google Phone,1,600,09/10/19 20:10,"144 Sunset St, Dallas, TX 75001" +,,,,, +257456,iPhone,1,700,09/24/19 21:09,"827 4th St, New York City, NY 10001" +257456,Lightning Charging Cable,1,14.95,09/24/19 21:09,"827 4th St, New York City, NY 10001" +257457,AAA Batteries (4-pack),1,2.99,09/30/19 19:57,"705 Church St, Los Angeles, CA 90001" +257458,20in Monitor,1,109.99,09/06/19 16:07,"72 Lincoln St, San Francisco, CA 94016" +257459,LG Dryer,1,600.0,09/03/19 08:58,"805 Maple St, Seattle, WA 98101" +257460,AA Batteries (4-pack),2,3.84,09/21/19 09:38,"461 Center St, New York City, NY 10001" +257461,Wired Headphones,1,11.99,09/16/19 11:18,"512 Main St, New York City, NY 10001" +257462,Lightning Charging Cable,1,14.95,09/07/19 17:06,"501 Spruce St, Seattle, WA 98101" +257463,Lightning Charging Cable,1,14.95,09/29/19 07:48,"216 South St, San Francisco, CA 94016" +257464,27in 4K Gaming Monitor,1,389.99,09/23/19 10:21,"97 Pine St, Seattle, WA 98101" +257465,Wired Headphones,1,11.99,09/14/19 13:10,"814 Lincoln St, Los Angeles, CA 90001" +257466,Lightning Charging Cable,1,14.95,09/21/19 05:02,"955 South St, Atlanta, GA 30301" +257467,AAA Batteries (4-pack),2,2.99,09/05/19 22:52,"655 Lakeview St, San Francisco, CA 94016" +257468,Lightning Charging Cable,1,14.95,09/12/19 12:19,"457 Forest St, Seattle, WA 98101" +257469,Wired Headphones,1,11.99,09/03/19 19:41,"272 5th St, Portland, OR 97035" +257470,LG Washing Machine,1,600.0,09/06/19 10:53,"201 Hill St, San Francisco, CA 94016" +257471,Apple Airpods Headphones,1,150,09/11/19 16:27,"242 Maple St, Los Angeles, CA 90001" +257472,ThinkPad Laptop,1,999.99,09/06/19 12:41,"532 Lakeview St, Los Angeles, CA 90001" +257473,Bose SoundSport Headphones,1,99.99,09/06/19 22:48,"913 9th St, Los Angeles, CA 90001" +257474,USB-C Charging Cable,1,11.95,09/24/19 22:42,"808 Forest St, Boston, MA 02215" +257475,Apple Airpods Headphones,1,150,09/14/19 22:42,"559 Jefferson St, New York City, NY 10001" +257476,Bose SoundSport Headphones,1,99.99,09/08/19 11:26,"15 7th St, New York City, NY 10001" +257477,Apple Airpods Headphones,1,150,09/25/19 12:16,"374 8th St, San Francisco, CA 94016" +257478,AA Batteries (4-pack),1,3.84,09/10/19 22:33,"716 Wilson St, San Francisco, CA 94016" +257479,27in FHD Monitor,1,149.99,09/05/19 18:53,"607 North St, San Francisco, CA 94016" +257480,Bose SoundSport Headphones,1,99.99,09/14/19 15:14,"39 Elm St, Dallas, TX 75001" +257481,AAA Batteries (4-pack),1,2.99,09/11/19 09:34,"804 Highland St, Atlanta, GA 30301" +257482,AA Batteries (4-pack),1,3.84,09/09/19 22:23,"9 8th St, San Francisco, CA 94016" +257483,Macbook Pro Laptop,1,1700,09/04/19 05:57,"745 Pine St, Los Angeles, CA 90001" +257484,Apple Airpods Headphones,1,150,09/08/19 13:12,"651 Spruce St, Boston, MA 02215" +257485,27in FHD Monitor,1,149.99,09/21/19 21:13,"852 Sunset St, Los Angeles, CA 90001" +257486,AAA Batteries (4-pack),1,2.99,09/18/19 11:08,"333 11th St, San Francisco, CA 94016" +257487,iPhone,1,700,09/28/19 14:47,"644 Maple St, Seattle, WA 98101" +257488,Lightning Charging Cable,1,14.95,09/13/19 01:36,"958 Sunset St, Los Angeles, CA 90001" +257489,AA Batteries (4-pack),2,3.84,09/15/19 15:12,"178 Adams St, Austin, TX 73301" +257490,AAA Batteries (4-pack),1,2.99,09/23/19 00:01,"379 Forest St, San Francisco, CA 94016" +257491,34in Ultrawide Monitor,1,379.99,09/30/19 20:13,"124 Sunset St, New York City, NY 10001" +257492,Apple Airpods Headphones,1,150,09/28/19 12:27,"367 Lakeview St, Austin, TX 73301" +257493,Apple Airpods Headphones,1,150,09/10/19 11:01,"83 South St, Boston, MA 02215" +257494,20in Monitor,1,109.99,09/01/19 13:00,"527 Wilson St, San Francisco, CA 94016" +257495,Google Phone,1,600,09/01/19 17:25,"892 Madison St, Seattle, WA 98101" +257496,Flatscreen TV,1,300,09/03/19 00:41,"802 Jackson St, San Francisco, CA 94016" +257497,USB-C Charging Cable,1,11.95,09/30/19 20:02,"461 Pine St, Los Angeles, CA 90001" +257498,AA Batteries (4-pack),1,3.84,09/12/19 16:46,"837 11th St, Austin, TX 73301" +257499,Wired Headphones,1,11.99,09/23/19 17:56,"153 River St, Boston, MA 02215" +257500,27in FHD Monitor,1,149.99,09/20/19 11:50,"466 Highland St, San Francisco, CA 94016" +257501,27in 4K Gaming Monitor,1,389.99,09/04/19 13:49,"854 Ridge St, Los Angeles, CA 90001" +257502,27in 4K Gaming Monitor,1,389.99,09/18/19 15:01,"918 12th St, San Francisco, CA 94016" +257503,Google Phone,1,600,09/23/19 19:40,"982 11th St, Los Angeles, CA 90001" +257504,Macbook Pro Laptop,1,1700,09/14/19 18:02,"554 North St, Los Angeles, CA 90001" +257505,Bose SoundSport Headphones,1,99.99,09/24/19 21:47,"846 North St, Boston, MA 02215" +257506,AAA Batteries (4-pack),2,2.99,09/19/19 10:25,"418 Pine St, San Francisco, CA 94016" +257507,Lightning Charging Cable,1,14.95,09/04/19 10:57,"420 Sunset St, San Francisco, CA 94016" +257508,Lightning Charging Cable,1,14.95,09/19/19 06:22,"160 9th St, Los Angeles, CA 90001" +257509,AAA Batteries (4-pack),3,2.99,09/01/19 11:32,"833 6th St, Dallas, TX 75001" +257510,27in 4K Gaming Monitor,1,389.99,09/20/19 15:50,"452 West St, Seattle, WA 98101" +257511,Vareebadd Phone,1,400,09/28/19 20:23,"691 11th St, San Francisco, CA 94016" +257512,AAA Batteries (4-pack),1,2.99,09/21/19 16:45,"616 Elm St, San Francisco, CA 94016" +257513,Lightning Charging Cable,1,14.95,09/15/19 19:36,"722 4th St, San Francisco, CA 94016" +257514,Apple Airpods Headphones,1,150,09/16/19 21:03,"999 Washington St, Seattle, WA 98101" +257515,Wired Headphones,1,11.99,09/07/19 16:24,"505 11th St, Los Angeles, CA 90001" +257516,AA Batteries (4-pack),1,3.84,09/22/19 18:08,"900 Chestnut St, San Francisco, CA 94016" +257517,Flatscreen TV,1,300,09/14/19 10:17,"104 Cherry St, Los Angeles, CA 90001" +257518,27in FHD Monitor,1,149.99,09/24/19 12:00,"460 Lakeview St, Los Angeles, CA 90001" +257519,34in Ultrawide Monitor,1,379.99,09/02/19 22:29,"633 Jackson St, Portland, OR 97035" +257520,Lightning Charging Cable,1,14.95,09/22/19 22:39,"80 Forest St, Atlanta, GA 30301" +257521,AAA Batteries (4-pack),1,2.99,09/06/19 16:03,"586 12th St, San Francisco, CA 94016" +257522,34in Ultrawide Monitor,1,379.99,09/14/19 12:35,"158 Ridge St, San Francisco, CA 94016" +257523,Macbook Pro Laptop,1,1700,09/19/19 10:50,"165 4th St, New York City, NY 10001" +257524,AA Batteries (4-pack),1,3.84,09/07/19 09:13,"683 Jefferson St, New York City, NY 10001" +257525,Lightning Charging Cable,1,14.95,09/22/19 11:06,"858 12th St, Boston, MA 02215" +257526,AAA Batteries (4-pack),1,2.99,09/08/19 22:21,"158 6th St, New York City, NY 10001" +257527,USB-C Charging Cable,1,11.95,09/07/19 14:03,"918 Highland St, Los Angeles, CA 90001" +257528,AAA Batteries (4-pack),3,2.99,09/12/19 13:09,"617 Park St, Seattle, WA 98101" +257529,27in FHD Monitor,1,149.99,09/30/19 12:38,"524 Main St, Atlanta, GA 30301" +257530,Macbook Pro Laptop,1,1700,09/02/19 21:35,"299 Willow St, Dallas, TX 75001" +257531,AA Batteries (4-pack),1,3.84,09/14/19 14:23,"761 Forest St, Boston, MA 02215" +257532,20in Monitor,1,109.99,09/16/19 11:36,"502 Madison St, Austin, TX 73301" +257533,USB-C Charging Cable,1,11.95,09/05/19 19:17,"67 Madison St, San Francisco, CA 94016" +257534,27in FHD Monitor,1,149.99,09/22/19 17:07,"742 Jefferson St, Seattle, WA 98101" +257535,Apple Airpods Headphones,1,150,09/24/19 15:46,"623 Meadow St, Portland, ME 04101" +257536,iPhone,1,700,09/25/19 07:20,"263 Ridge St, New York City, NY 10001" +257537,USB-C Charging Cable,1,11.95,09/24/19 17:49,"470 1st St, Los Angeles, CA 90001" +257538,Lightning Charging Cable,1,14.95,09/27/19 21:03,"662 5th St, Portland, OR 97035" +257539,USB-C Charging Cable,1,11.95,09/24/19 13:41,"197 River St, San Francisco, CA 94016" +257540,Apple Airpods Headphones,1,150,09/01/19 16:36,"952 Spruce St, Atlanta, GA 30301" +257541,Google Phone,1,600,09/01/19 09:53,"334 Cedar St, San Francisco, CA 94016" +257542,Flatscreen TV,1,300,09/09/19 13:44,"384 Washington St, Atlanta, GA 30301" +257543,34in Ultrawide Monitor,1,379.99,09/29/19 19:08,"608 Madison St, Austin, TX 73301" +257544,Wired Headphones,1,11.99,09/20/19 20:26,"171 Hill St, Portland, OR 97035" +257545,Vareebadd Phone,1,400,09/24/19 10:41,"694 Wilson St, San Francisco, CA 94016" +257545,Bose SoundSport Headphones,1,99.99,09/24/19 10:41,"694 Wilson St, San Francisco, CA 94016" +257546,Lightning Charging Cable,1,14.95,09/19/19 03:43,"436 Lakeview St, San Francisco, CA 94016" +257547,34in Ultrawide Monitor,1,379.99,09/18/19 10:34,"920 Main St, Boston, MA 02215" +257548,27in 4K Gaming Monitor,1,389.99,09/16/19 22:16,"627 Walnut St, Los Angeles, CA 90001" +257549,AA Batteries (4-pack),1,3.84,09/15/19 15:40,"536 10th St, Dallas, TX 75001" +257550,USB-C Charging Cable,1,11.95,09/06/19 21:49,"837 Cedar St, Seattle, WA 98101" +257551,Macbook Pro Laptop,1,1700,09/30/19 19:47,"825 Park St, Los Angeles, CA 90001" +257552,Wired Headphones,1,11.99,09/02/19 18:08,"506 West St, Los Angeles, CA 90001" +257553,iPhone,1,700,09/19/19 10:05,"392 West St, Los Angeles, CA 90001" +257553,Lightning Charging Cable,1,14.95,09/19/19 10:05,"392 West St, Los Angeles, CA 90001" +257554,27in FHD Monitor,1,149.99,09/21/19 14:05,"399 Church St, Atlanta, GA 30301" +257555,Apple Airpods Headphones,1,150,09/14/19 13:41,"298 River St, Los Angeles, CA 90001" +257556,USB-C Charging Cable,1,11.95,09/19/19 14:22,"848 Jefferson St, Dallas, TX 75001" +257557,Wired Headphones,2,11.99,09/08/19 15:17,"819 Ridge St, Seattle, WA 98101" +257558,AAA Batteries (4-pack),1,2.99,09/17/19 13:47,"234 Lincoln St, New York City, NY 10001" +257559,AAA Batteries (4-pack),1,2.99,09/30/19 20:17,"579 Lincoln St, Atlanta, GA 30301" +257560,Bose SoundSport Headphones,1,99.99,09/02/19 21:54,"165 6th St, Dallas, TX 75001" +257561,Wired Headphones,1,11.99,09/30/19 12:40,"4 14th St, San Francisco, CA 94016" +257562,AAA Batteries (4-pack),1,2.99,09/03/19 20:48,"807 9th St, San Francisco, CA 94016" +257563,Lightning Charging Cable,1,14.95,09/29/19 10:18,"546 Dogwood St, Atlanta, GA 30301" +257564,AA Batteries (4-pack),1,3.84,09/20/19 12:02,"826 12th St, Atlanta, GA 30301" +257565,AAA Batteries (4-pack),1,2.99,09/09/19 09:45,"182 10th St, Seattle, WA 98101" +257566,Lightning Charging Cable,1,14.95,09/06/19 11:16,"964 Jefferson St, Portland, OR 97035" +257567,Lightning Charging Cable,2,14.95,09/09/19 18:33,"181 7th St, Boston, MA 02215" +257568,Bose SoundSport Headphones,1,99.99,09/26/19 10:08,"532 Cherry St, Boston, MA 02215" +257569,Lightning Charging Cable,1,14.95,09/27/19 10:18,"834 Meadow St, Austin, TX 73301" +257570,USB-C Charging Cable,1,11.95,09/16/19 09:04,"524 Sunset St, San Francisco, CA 94016" +257571,Apple Airpods Headphones,1,150,09/06/19 13:44,"762 Forest St, Seattle, WA 98101" +257572,Flatscreen TV,1,300,09/20/19 01:10,"938 Lincoln St, Atlanta, GA 30301" +257573,AA Batteries (4-pack),1,3.84,09/30/19 19:23,"350 West St, New York City, NY 10001" +257574,USB-C Charging Cable,1,11.95,09/20/19 23:46,"30 Park St, Portland, OR 97035" +257575,Lightning Charging Cable,1,14.95,09/07/19 00:13,"146 Jefferson St, Dallas, TX 75001" +257576,AA Batteries (4-pack),1,3.84,09/30/19 12:08,"11 Walnut St, Los Angeles, CA 90001" +257577,Bose SoundSport Headphones,1,99.99,09/08/19 07:31,"632 Sunset St, Atlanta, GA 30301" +257578,ThinkPad Laptop,1,999.99,09/14/19 11:02,"334 8th St, New York City, NY 10001" +257579,34in Ultrawide Monitor,1,379.99,09/07/19 23:41,"882 8th St, New York City, NY 10001" +257580,Apple Airpods Headphones,1,150,09/04/19 16:19,"800 River St, Dallas, TX 75001" +257581,AA Batteries (4-pack),3,3.84,09/16/19 07:20,"946 Cedar St, San Francisco, CA 94016" +257582,AA Batteries (4-pack),1,3.84,09/24/19 20:42,"260 Park St, Austin, TX 73301" +257583,iPhone,1,700,09/08/19 10:34,"850 12th St, Los Angeles, CA 90001" +257584,20in Monitor,1,109.99,09/21/19 11:06,"917 Lakeview St, Austin, TX 73301" +257585,Apple Airpods Headphones,1,150,09/06/19 13:28,"27 Main St, Atlanta, GA 30301" +257586,Lightning Charging Cable,1,14.95,09/17/19 03:04,"933 South St, San Francisco, CA 94016" +257587,27in 4K Gaming Monitor,1,389.99,09/27/19 14:52,"701 Madison St, Los Angeles, CA 90001" +257588,27in 4K Gaming Monitor,1,389.99,09/30/19 16:19,"650 Madison St, San Francisco, CA 94016" +257589,27in 4K Gaming Monitor,1,389.99,09/14/19 12:24,"834 Lincoln St, Portland, ME 04101" +257590,Google Phone,1,600,09/11/19 12:22,"222 Ridge St, New York City, NY 10001" +257591,USB-C Charging Cable,1,11.95,09/21/19 10:01,"575 Maple St, Seattle, WA 98101" +257592,Wired Headphones,1,11.99,09/23/19 11:12,"4 10th St, Austin, TX 73301" +257593,AA Batteries (4-pack),1,3.84,09/11/19 10:43,"944 Ridge St, Portland, OR 97035" +257594,ThinkPad Laptop,1,999.99,09/06/19 23:58,"593 Meadow St, San Francisco, CA 94016" +257595,USB-C Charging Cable,1,11.95,09/02/19 20:07,"25 Maple St, Los Angeles, CA 90001" +257596,USB-C Charging Cable,1,11.95,09/28/19 00:53,"432 2nd St, Boston, MA 02215" +257597,AAA Batteries (4-pack),2,2.99,09/07/19 14:45,"22 4th St, New York City, NY 10001" +257598,Lightning Charging Cable,1,14.95,09/03/19 20:33,"581 Willow St, Dallas, TX 75001" +257599,34in Ultrawide Monitor,1,379.99,09/01/19 12:44,"768 11th St, Dallas, TX 75001" +257600,USB-C Charging Cable,1,11.95,09/07/19 11:19,"324 Forest St, New York City, NY 10001" +257601,Lightning Charging Cable,1,14.95,09/01/19 08:01,"793 Wilson St, Boston, MA 02215" +257602,27in 4K Gaming Monitor,1,389.99,09/11/19 18:28,"306 Sunset St, Boston, MA 02215" +257603,iPhone,1,700,09/15/19 00:27,"49 Forest St, San Francisco, CA 94016" +257604,27in FHD Monitor,1,149.99,09/26/19 17:24,"593 Chestnut St, Dallas, TX 75001" +257605,AA Batteries (4-pack),1,3.84,09/10/19 22:11,"736 Meadow St, Dallas, TX 75001" +257606,AAA Batteries (4-pack),3,2.99,09/18/19 23:14,"565 Sunset St, San Francisco, CA 94016" +257607,AA Batteries (4-pack),1,3.84,09/16/19 17:20,"161 13th St, San Francisco, CA 94016" +257608,20in Monitor,1,109.99,09/01/19 15:13,"338 Spruce St, San Francisco, CA 94016" +257609,USB-C Charging Cable,1,11.95,09/17/19 23:34,"13 Elm St, San Francisco, CA 94016" +257610,iPhone,1,700,09/29/19 14:53,"583 Lake St, Portland, OR 97035" +257611,Wired Headphones,1,11.99,09/12/19 07:29,"938 River St, Los Angeles, CA 90001" +257612,USB-C Charging Cable,1,11.95,09/10/19 07:48,"229 2nd St, San Francisco, CA 94016" +257613,AAA Batteries (4-pack),1,2.99,09/12/19 13:12,"572 Adams St, Boston, MA 02215" +257614,Apple Airpods Headphones,1,150,09/26/19 21:03,"166 11th St, Boston, MA 02215" +257615,USB-C Charging Cable,1,11.95,09/03/19 15:32,"30 Pine St, San Francisco, CA 94016" +257616,27in FHD Monitor,1,149.99,09/14/19 06:05,"628 5th St, New York City, NY 10001" +257617,Bose SoundSport Headphones,1,99.99,09/16/19 19:59,"524 13th St, Los Angeles, CA 90001" +257618,Wired Headphones,1,11.99,09/20/19 16:23,"502 Cherry St, San Francisco, CA 94016" +257619,27in FHD Monitor,1,149.99,09/23/19 18:35,"84 13th St, Boston, MA 02215" +257620,AAA Batteries (4-pack),1,2.99,09/23/19 22:45,"602 14th St, New York City, NY 10001" +257621,AAA Batteries (4-pack),1,2.99,09/29/19 13:17,"934 2nd St, San Francisco, CA 94016" +257622,Wired Headphones,1,11.99,09/16/19 14:15,"3 11th St, San Francisco, CA 94016" +257623,Wired Headphones,1,11.99,09/17/19 10:00,"351 8th St, San Francisco, CA 94016" +257624,AA Batteries (4-pack),2,3.84,09/03/19 11:08,"465 North St, Seattle, WA 98101" +257625,AA Batteries (4-pack),1,3.84,09/03/19 20:57,"677 5th St, New York City, NY 10001" +257626,Apple Airpods Headphones,1,150,09/29/19 09:30,"221 13th St, Portland, OR 97035" +257627,Lightning Charging Cable,1,14.95,09/16/19 09:54,"762 Park St, Seattle, WA 98101" +257628,AAA Batteries (4-pack),1,2.99,09/18/19 12:25,"297 7th St, San Francisco, CA 94016" +257629,27in 4K Gaming Monitor,1,389.99,09/27/19 22:16,"186 River St, Dallas, TX 75001" +257630,Lightning Charging Cable,1,14.95,09/30/19 17:33,"316 Maple St, Boston, MA 02215" +257631,AAA Batteries (4-pack),1,2.99,09/28/19 14:52,"910 West St, Los Angeles, CA 90001" +257632,Wired Headphones,1,11.99,09/26/19 04:35,"172 Walnut St, Los Angeles, CA 90001" +257633,AAA Batteries (4-pack),1,2.99,09/08/19 11:27,"377 10th St, Portland, OR 97035" +257634,Wired Headphones,1,11.99,09/21/19 20:10,"758 Maple St, Los Angeles, CA 90001" +257635,USB-C Charging Cable,1,11.95,09/16/19 22:06,"895 Dogwood St, Atlanta, GA 30301" +257635,Apple Airpods Headphones,1,150,09/16/19 22:06,"895 Dogwood St, Atlanta, GA 30301" +257636,ThinkPad Laptop,1,999.99,09/30/19 22:26,"430 Maple St, Austin, TX 73301" +257637,27in 4K Gaming Monitor,1,389.99,09/07/19 15:40,"173 Forest St, Atlanta, GA 30301" +257638,AA Batteries (4-pack),1,3.84,09/24/19 16:48,"516 2nd St, Dallas, TX 75001" +257639,Bose SoundSport Headphones,1,99.99,09/07/19 13:58,"221 14th St, Los Angeles, CA 90001" +257640,Lightning Charging Cable,1,14.95,09/26/19 23:22,"403 5th St, Seattle, WA 98101" +257641,Apple Airpods Headphones,1,150,09/29/19 08:29,"516 Maple St, Dallas, TX 75001" +257642,ThinkPad Laptop,1,999.99,09/24/19 15:24,"825 10th St, San Francisco, CA 94016" +257643,AA Batteries (4-pack),1,3.84,09/08/19 00:00,"607 Lake St, Los Angeles, CA 90001" +257644,AA Batteries (4-pack),2,3.84,09/16/19 16:56,"906 South St, San Francisco, CA 94016" +257644,Flatscreen TV,1,300,09/16/19 16:56,"906 South St, San Francisco, CA 94016" +257645,20in Monitor,1,109.99,09/23/19 20:10,"924 Pine St, Portland, OR 97035" +257646,Wired Headphones,1,11.99,09/23/19 02:39,"605 Adams St, Boston, MA 02215" +257647,Flatscreen TV,1,300,09/17/19 21:56,"92 13th St, San Francisco, CA 94016" +257648,iPhone,1,700,09/15/19 19:05,"589 11th St, Austin, TX 73301" +257649,USB-C Charging Cable,1,11.95,09/21/19 08:22,"840 14th St, San Francisco, CA 94016" +257650,Apple Airpods Headphones,1,150,09/13/19 23:47,"619 1st St, San Francisco, CA 94016" +257651,Lightning Charging Cable,1,14.95,09/02/19 16:34,"159 11th St, Atlanta, GA 30301" +257652,34in Ultrawide Monitor,1,379.99,09/06/19 20:53,"523 Madison St, Seattle, WA 98101" +257653,Google Phone,1,600,09/11/19 18:41,"839 Main St, San Francisco, CA 94016" +257653,Wired Headphones,1,11.99,09/11/19 18:41,"839 Main St, San Francisco, CA 94016" +257654,34in Ultrawide Monitor,1,379.99,09/17/19 23:16,"437 2nd St, Atlanta, GA 30301" +257655,Lightning Charging Cable,1,14.95,09/06/19 17:40,"353 South St, San Francisco, CA 94016" +257656,Apple Airpods Headphones,1,150,09/23/19 09:19,"572 North St, Los Angeles, CA 90001" +257657,AAA Batteries (4-pack),1,2.99,09/27/19 14:14,"429 Hickory St, Portland, OR 97035" +257658,AA Batteries (4-pack),3,3.84,09/11/19 15:21,"189 10th St, Atlanta, GA 30301" +257659,USB-C Charging Cable,1,11.95,09/06/19 18:40,"496 Ridge St, San Francisco, CA 94016" +257660,Bose SoundSport Headphones,1,99.99,09/03/19 12:55,"725 Cedar St, New York City, NY 10001" +257661,Flatscreen TV,1,300,09/30/19 11:41,"204 12th St, Dallas, TX 75001" +257662,27in FHD Monitor,1,149.99,09/02/19 08:38,"329 Wilson St, Atlanta, GA 30301" +257663,Wired Headphones,1,11.99,09/06/19 21:00,"722 Wilson St, San Francisco, CA 94016" +257664,Apple Airpods Headphones,1,150,09/09/19 16:58,"63 Washington St, Portland, OR 97035" +257665,USB-C Charging Cable,1,11.95,09/03/19 21:19,"538 Hickory St, San Francisco, CA 94016" +257666,Wired Headphones,1,11.99,09/12/19 19:43,"521 12th St, San Francisco, CA 94016" +257667,USB-C Charging Cable,1,11.95,09/06/19 08:19,"237 Center St, Los Angeles, CA 90001" +257668,AA Batteries (4-pack),1,3.84,09/25/19 21:14,"497 West St, Seattle, WA 98101" +257669,Flatscreen TV,1,300,09/16/19 16:10,"476 Walnut St, Boston, MA 02215" +257670,Apple Airpods Headphones,1,150,09/09/19 19:53,"80 Main St, Atlanta, GA 30301" +257671,20in Monitor,1,109.99,09/18/19 11:55,"45 Adams St, Los Angeles, CA 90001" +257672,AA Batteries (4-pack),2,3.84,09/29/19 14:25,"680 Madison St, Los Angeles, CA 90001" +257673,Wired Headphones,1,11.99,09/18/19 15:31,"762 Ridge St, New York City, NY 10001" +257674,Apple Airpods Headphones,1,150,09/06/19 11:04,"546 6th St, Austin, TX 73301" +257675,Bose SoundSport Headphones,1,99.99,09/19/19 05:11,"891 Walnut St, New York City, NY 10001" +257676,Wired Headphones,1,11.99,09/14/19 09:23,"616 Lake St, Los Angeles, CA 90001" +257677,Wired Headphones,1,11.99,09/20/19 13:21,"406 Lake St, San Francisco, CA 94016" +257678,ThinkPad Laptop,1,999.99,09/19/19 09:46,"309 7th St, Seattle, WA 98101" +257679,Flatscreen TV,1,300,09/11/19 19:36,"990 River St, San Francisco, CA 94016" +257680,27in FHD Monitor,1,149.99,09/03/19 07:44,"777 River St, New York City, NY 10001" +257681,USB-C Charging Cable,1,11.95,09/15/19 16:16,"538 Highland St, Los Angeles, CA 90001" +257682,Apple Airpods Headphones,1,150,09/06/19 14:27,"102 Park St, San Francisco, CA 94016" +257683,Wired Headphones,1,11.99,09/22/19 20:59,"33 River St, Atlanta, GA 30301" +257684,Apple Airpods Headphones,1,150,09/05/19 17:35,"876 Willow St, San Francisco, CA 94016" +257685,AA Batteries (4-pack),2,3.84,09/07/19 12:38,"64 River St, Boston, MA 02215" +257686,USB-C Charging Cable,1,11.95,09/09/19 01:45,"900 Ridge St, San Francisco, CA 94016" +257687,USB-C Charging Cable,1,11.95,09/04/19 07:18,"189 Lake St, New York City, NY 10001" +257688,iPhone,1,700,09/06/19 13:08,"432 West St, San Francisco, CA 94016" +257689,27in 4K Gaming Monitor,1,389.99,09/06/19 19:23,"629 Hill St, New York City, NY 10001" +257690,Lightning Charging Cable,1,14.95,09/24/19 09:10,"327 River St, Dallas, TX 75001" +257691,AA Batteries (4-pack),3,3.84,09/10/19 09:21,"156 Johnson St, Los Angeles, CA 90001" +257692,Bose SoundSport Headphones,1,99.99,09/11/19 19:33,"225 Willow St, Portland, ME 04101" +257693,USB-C Charging Cable,1,11.95,09/07/19 10:01,"355 Center St, San Francisco, CA 94016" +257694,AA Batteries (4-pack),1,3.84,09/30/19 17:30,"626 5th St, Los Angeles, CA 90001" +257695,AA Batteries (4-pack),1,3.84,09/15/19 21:08,"50 Pine St, San Francisco, CA 94016" +257696,ThinkPad Laptop,1,999.99,09/17/19 13:25,"924 Adams St, San Francisco, CA 94016" +257697,27in 4K Gaming Monitor,1,389.99,09/25/19 05:34,"833 8th St, Portland, OR 97035" +257698,USB-C Charging Cable,1,11.95,09/23/19 16:57,"128 5th St, Los Angeles, CA 90001" +257699,AA Batteries (4-pack),3,3.84,09/14/19 08:54,"890 7th St, New York City, NY 10001" +257699,Google Phone,1,600,09/14/19 08:54,"890 7th St, New York City, NY 10001" +257700,USB-C Charging Cable,1,11.95,09/23/19 18:19,"229 10th St, San Francisco, CA 94016" +257701,AA Batteries (4-pack),2,3.84,09/01/19 12:00,"239 Johnson St, Portland, OR 97035" +257702,AA Batteries (4-pack),1,3.84,09/26/19 12:56,"408 Elm St, Seattle, WA 98101" +257703,Lightning Charging Cable,1,14.95,09/09/19 11:12,"617 Lincoln St, San Francisco, CA 94016" +257704,Wired Headphones,1,11.99,09/26/19 13:03,"798 Sunset St, Seattle, WA 98101" +257705,AA Batteries (4-pack),1,3.84,09/09/19 20:26,"515 1st St, San Francisco, CA 94016" +257706,Wired Headphones,1,11.99,09/28/19 11:31,"478 Walnut St, Austin, TX 73301" +257706,USB-C Charging Cable,1,11.95,09/28/19 11:31,"478 Walnut St, Austin, TX 73301" +257707,20in Monitor,1,109.99,09/07/19 08:48,"895 Johnson St, New York City, NY 10001" +257708,Wired Headphones,1,11.99,09/12/19 13:14,"972 Madison St, San Francisco, CA 94016" +257709,27in 4K Gaming Monitor,1,389.99,09/10/19 23:21,"473 Willow St, Los Angeles, CA 90001" +257710,Google Phone,1,600,09/12/19 17:39,"61 Highland St, New York City, NY 10001" +257711,AAA Batteries (4-pack),1,2.99,09/30/19 17:55,"623 Hickory St, New York City, NY 10001" +257712,34in Ultrawide Monitor,1,379.99,09/26/19 08:00,"144 Madison St, New York City, NY 10001" +257713,AA Batteries (4-pack),1,3.84,09/12/19 12:50,"514 Cedar St, San Francisco, CA 94016" +257714,USB-C Charging Cable,1,11.95,09/21/19 19:42,"822 Walnut St, Seattle, WA 98101" +257715,AAA Batteries (4-pack),1,2.99,09/07/19 00:00,"215 Pine St, Seattle, WA 98101" +257716,Bose SoundSport Headphones,1,99.99,09/12/19 22:14,"795 8th St, San Francisco, CA 94016" +257717,AAA Batteries (4-pack),1,2.99,09/20/19 09:32,"2 Main St, Los Angeles, CA 90001" +257718,Lightning Charging Cable,1,14.95,09/26/19 11:54,"1 Dogwood St, Boston, MA 02215" +257719,27in 4K Gaming Monitor,1,389.99,09/30/19 00:06,"961 Walnut St, New York City, NY 10001" +,,,,, +257720,Apple Airpods Headphones,1,150,09/04/19 18:37,"133 Adams St, San Francisco, CA 94016" +257721,AA Batteries (4-pack),1,3.84,09/15/19 15:50,"546 Jefferson St, Dallas, TX 75001" +257722,AAA Batteries (4-pack),1,2.99,09/22/19 09:36,"26 11th St, San Francisco, CA 94016" +257723,Wired Headphones,1,11.99,09/29/19 19:40,"298 6th St, Dallas, TX 75001" +257724,27in FHD Monitor,1,149.99,09/18/19 07:29,"407 Johnson St, Los Angeles, CA 90001" +257725,iPhone,1,700,09/16/19 09:37,"537 South St, San Francisco, CA 94016" +257726,iPhone,1,700,09/25/19 18:08,"57 Chestnut St, Los Angeles, CA 90001" +257726,Lightning Charging Cable,1,14.95,09/25/19 18:08,"57 Chestnut St, Los Angeles, CA 90001" +257727,USB-C Charging Cable,1,11.95,09/11/19 20:07,"429 Ridge St, Portland, ME 04101" +257728,USB-C Charging Cable,1,11.95,09/15/19 23:02,"574 Elm St, Atlanta, GA 30301" +257729,27in FHD Monitor,1,149.99,09/18/19 14:43,"368 North St, Atlanta, GA 30301" +257730,AA Batteries (4-pack),1,3.84,09/08/19 21:35,"845 Hill St, Los Angeles, CA 90001" +257731,Lightning Charging Cable,1,14.95,09/07/19 06:02,"517 14th St, Los Angeles, CA 90001" +257732,27in FHD Monitor,1,149.99,09/17/19 20:57,"724 Highland St, New York City, NY 10001" +257733,Flatscreen TV,1,300,09/24/19 19:52,"54 Elm St, San Francisco, CA 94016" +257734,AA Batteries (4-pack),1,3.84,09/05/19 16:08,"401 Church St, San Francisco, CA 94016" +257735,Lightning Charging Cable,1,14.95,09/30/19 13:48,"398 Willow St, Portland, OR 97035" +257736,USB-C Charging Cable,1,11.95,09/28/19 11:34,"819 Johnson St, Seattle, WA 98101" +257737,Wired Headphones,1,11.99,09/17/19 23:59,"72 Center St, Atlanta, GA 30301" +257738,USB-C Charging Cable,1,11.95,09/29/19 10:02,"603 Sunset St, Boston, MA 02215" +257739,Lightning Charging Cable,1,14.95,09/24/19 15:35,"196 7th St, San Francisco, CA 94016" +257739,iPhone,1,700,09/24/19 15:35,"196 7th St, San Francisco, CA 94016" +257740,AAA Batteries (4-pack),4,2.99,09/27/19 09:23,"144 Forest St, Portland, OR 97035" +257741,USB-C Charging Cable,1,11.95,09/17/19 23:26,"636 Pine St, Portland, OR 97035" +257742,Lightning Charging Cable,1,14.95,09/27/19 11:52,"72 Ridge St, Dallas, TX 75001" +257743,AAA Batteries (4-pack),1,2.99,09/07/19 20:23,"592 12th St, San Francisco, CA 94016" +257744,AA Batteries (4-pack),1,3.84,09/02/19 14:53,"483 West St, Atlanta, GA 30301" +257745,Macbook Pro Laptop,1,1700,09/03/19 21:28,"897 8th St, San Francisco, CA 94016" +257746,Lightning Charging Cable,1,14.95,09/29/19 07:11,"932 Walnut St, Portland, OR 97035" +257747,Lightning Charging Cable,1,14.95,09/29/19 20:09,"527 2nd St, Los Angeles, CA 90001" +257748,Wired Headphones,1,11.99,09/01/19 22:45,"765 Madison St, San Francisco, CA 94016" +257749,AA Batteries (4-pack),1,3.84,09/26/19 18:19,"504 Dogwood St, Portland, ME 04101" +257750,Wired Headphones,1,11.99,09/27/19 18:46,"926 Lincoln St, New York City, NY 10001" +257751,34in Ultrawide Monitor,1,379.99,09/09/19 15:00,"984 Maple St, New York City, NY 10001" +257752,Wired Headphones,1,11.99,09/22/19 00:44,"501 13th St, Austin, TX 73301" +257753,AAA Batteries (4-pack),1,2.99,09/05/19 08:05,"404 Washington St, Seattle, WA 98101" +257754,Lightning Charging Cable,1,14.95,09/29/19 14:45,"202 Johnson St, San Francisco, CA 94016" +257755,AAA Batteries (4-pack),1,2.99,09/29/19 15:17,"180 5th St, Los Angeles, CA 90001" +257756,Vareebadd Phone,1,400,09/26/19 19:28,"574 6th St, Los Angeles, CA 90001" +257756,USB-C Charging Cable,1,11.95,09/26/19 19:28,"574 6th St, Los Angeles, CA 90001" +257757,ThinkPad Laptop,1,999.99,09/03/19 23:24,"143 River St, San Francisco, CA 94016" +257758,USB-C Charging Cable,1,11.95,09/25/19 22:17,"889 North St, Austin, TX 73301" +257759,27in 4K Gaming Monitor,1,389.99,09/28/19 15:23,"881 Ridge St, Seattle, WA 98101" +257760,USB-C Charging Cable,1,11.95,09/15/19 12:49,"895 Lakeview St, Portland, OR 97035" +257761,AAA Batteries (4-pack),1,2.99,09/29/19 10:33,"930 Walnut St, Los Angeles, CA 90001" +257762,Lightning Charging Cable,1,14.95,09/18/19 13:16,"675 West St, Austin, TX 73301" +257763,AAA Batteries (4-pack),2,2.99,09/01/19 04:56,"620 Ridge St, Seattle, WA 98101" +257764,AA Batteries (4-pack),1,3.84,09/20/19 10:18,"595 Madison St, Boston, MA 02215" +257765,Bose SoundSport Headphones,1,99.99,09/07/19 15:15,"407 Meadow St, Dallas, TX 75001" +257766,Bose SoundSport Headphones,1,99.99,09/01/19 08:14,"904 River St, San Francisco, CA 94016" +257767,27in FHD Monitor,1,149.99,09/16/19 12:22,"640 4th St, Seattle, WA 98101" +257768,Wired Headphones,1,11.99,09/08/19 15:21,"637 Church St, Austin, TX 73301" +257769,Lightning Charging Cable,1,14.95,09/17/19 15:55,"462 Church St, Portland, OR 97035" +257770,Flatscreen TV,1,300,09/11/19 19:26,"372 8th St, San Francisco, CA 94016" +257771,Bose SoundSport Headphones,1,99.99,09/10/19 22:09,"326 11th St, Austin, TX 73301" +257772,Apple Airpods Headphones,1,150,09/21/19 12:49,"68 2nd St, San Francisco, CA 94016" +257773,Apple Airpods Headphones,1,150,09/28/19 15:55,"939 4th St, Dallas, TX 75001" +257774,Lightning Charging Cable,1,14.95,09/16/19 19:32,"173 Jefferson St, Los Angeles, CA 90001" +257775,Macbook Pro Laptop,1,1700,09/10/19 14:31,"720 8th St, Los Angeles, CA 90001" +257776,Wired Headphones,1,11.99,09/14/19 09:53,"844 Adams St, New York City, NY 10001" +257777,Lightning Charging Cable,1,14.95,09/11/19 13:54,"413 8th St, Seattle, WA 98101" +257778,Flatscreen TV,1,300,09/19/19 16:19,"790 Adams St, San Francisco, CA 94016" +257779,27in FHD Monitor,1,149.99,09/06/19 00:25,"995 North St, Austin, TX 73301" +257780,AAA Batteries (4-pack),1,2.99,09/18/19 13:49,"221 Jackson St, Los Angeles, CA 90001" +257781,AAA Batteries (4-pack),3,2.99,09/12/19 12:26,"892 10th St, New York City, NY 10001" +257782,Lightning Charging Cable,2,14.95,09/08/19 19:43,"108 Willow St, Atlanta, GA 30301" +257783,Macbook Pro Laptop,1,1700,09/14/19 08:48,"231 7th St, Austin, TX 73301" +257784,AA Batteries (4-pack),1,3.84,09/14/19 13:00,"669 Elm St, San Francisco, CA 94016" +257785,AA Batteries (4-pack),1,3.84,09/15/19 19:57,"865 14th St, Los Angeles, CA 90001" +257786,Lightning Charging Cable,1,14.95,09/16/19 19:23,"937 Hill St, Atlanta, GA 30301" +257787,AA Batteries (4-pack),1,3.84,09/01/19 13:06,"348 Maple St, San Francisco, CA 94016" +257788,Macbook Pro Laptop,1,1700,09/21/19 09:40,"460 Hickory St, San Francisco, CA 94016" +257789,Apple Airpods Headphones,1,150,09/12/19 00:05,"871 Adams St, San Francisco, CA 94016" +257790,Google Phone,1,600,09/07/19 15:53,"50 Elm St, San Francisco, CA 94016" +257791,USB-C Charging Cable,1,11.95,09/13/19 15:59,"754 Sunset St, Dallas, TX 75001" +257792,Wired Headphones,2,11.99,09/17/19 19:40,"934 West St, Dallas, TX 75001" +257793,27in FHD Monitor,1,149.99,09/28/19 20:49,"985 River St, Boston, MA 02215" +257794,Bose SoundSport Headphones,1,99.99,09/01/19 21:23,"518 Cedar St, Austin, TX 73301" +257795,Lightning Charging Cable,1,14.95,09/09/19 12:51,"372 Willow St, San Francisco, CA 94016" +257796,27in FHD Monitor,1,149.99,09/27/19 15:08,"538 Main St, Los Angeles, CA 90001" +257797,Apple Airpods Headphones,1,150,09/12/19 20:57,"459 5th St, Dallas, TX 75001" +257798,Apple Airpods Headphones,1,150,09/23/19 12:01,"628 Ridge St, San Francisco, CA 94016" +257799,Wired Headphones,2,11.99,09/02/19 19:46,"663 Church St, Boston, MA 02215" +257799,Bose SoundSport Headphones,2,99.99,09/02/19 19:46,"663 Church St, Boston, MA 02215" +257800,27in FHD Monitor,1,149.99,09/09/19 13:03,"974 Hill St, San Francisco, CA 94016" +257801,Flatscreen TV,1,300,09/01/19 14:45,"153 5th St, Atlanta, GA 30301" +257802,Lightning Charging Cable,1,14.95,09/25/19 15:34,"364 Johnson St, San Francisco, CA 94016" +257803,27in 4K Gaming Monitor,1,389.99,09/18/19 20:01,"540 7th St, Boston, MA 02215" +257804,iPhone,1,700,09/04/19 17:16,"740 Highland St, Atlanta, GA 30301" +257805,Flatscreen TV,1,300,09/20/19 01:35,"153 Adams St, New York City, NY 10001" +257806,AAA Batteries (4-pack),1,2.99,09/11/19 02:26,"846 Center St, San Francisco, CA 94016" +257807,Apple Airpods Headphones,1,150,09/17/19 09:24,"39 13th St, San Francisco, CA 94016" +257808,Macbook Pro Laptop,1,1700,09/25/19 18:15,"110 Meadow St, Seattle, WA 98101" +257809,Lightning Charging Cable,1,14.95,09/24/19 19:37,"550 Forest St, Dallas, TX 75001" +257810,Lightning Charging Cable,2,14.95,09/13/19 09:58,"972 Washington St, New York City, NY 10001" +257811,Wired Headphones,1,11.99,09/13/19 17:48,"183 Washington St, San Francisco, CA 94016" +257812,Apple Airpods Headphones,1,150,09/22/19 09:09,"758 Meadow St, San Francisco, CA 94016" +257813,USB-C Charging Cable,1,11.95,09/02/19 12:59,"681 Hickory St, Atlanta, GA 30301" +257814,USB-C Charging Cable,1,11.95,09/28/19 06:53,"243 South St, San Francisco, CA 94016" +257815,Apple Airpods Headphones,1,150,09/17/19 19:23,"524 Hickory St, Portland, OR 97035" +257816,Apple Airpods Headphones,1,150,09/01/19 11:17,"56 14th St, Los Angeles, CA 90001" +257817,Lightning Charging Cable,1,14.95,09/12/19 08:30,"718 West St, New York City, NY 10001" +257818,Apple Airpods Headphones,1,150,09/10/19 11:37,"895 Jefferson St, Los Angeles, CA 90001" +257819,USB-C Charging Cable,1,11.95,09/30/19 12:58,"354 4th St, Seattle, WA 98101" +257820,AA Batteries (4-pack),1,3.84,09/18/19 17:37,"46 11th St, New York City, NY 10001" +257821,Lightning Charging Cable,1,14.95,09/03/19 11:51,"821 Washington St, San Francisco, CA 94016" +257822,AAA Batteries (4-pack),1,2.99,09/24/19 08:20,"720 14th St, New York City, NY 10001" +257823,AAA Batteries (4-pack),1,2.99,09/11/19 22:27,"258 Dogwood St, New York City, NY 10001" +257824,AA Batteries (4-pack),1,3.84,09/14/19 23:18,"799 River St, Boston, MA 02215" +257825,27in 4K Gaming Monitor,1,389.99,09/26/19 18:53,"750 Wilson St, Atlanta, GA 30301" +257826,ThinkPad Laptop,1,999.99,09/19/19 14:40,"627 4th St, San Francisco, CA 94016" +257827,iPhone,1,700,09/17/19 15:27,"865 Hickory St, San Francisco, CA 94016" +257828,USB-C Charging Cable,1,11.95,09/30/19 21:02,"966 Cherry St, Portland, ME 04101" +257829,Google Phone,1,600,09/30/19 08:40,"156 Washington St, Boston, MA 02215" +257830,Wired Headphones,1,11.99,09/25/19 08:29,"774 7th St, New York City, NY 10001" +257831,USB-C Charging Cable,1,11.95,09/06/19 12:00,"969 Hill St, New York City, NY 10001" +257832,AAA Batteries (4-pack),1,2.99,09/23/19 22:39,"664 Walnut St, San Francisco, CA 94016" +257833,AAA Batteries (4-pack),2,2.99,09/28/19 09:44,"679 Elm St, Portland, OR 97035" +257834,USB-C Charging Cable,1,11.95,10/01/19 00:17,"346 Maple St, Seattle, WA 98101" +257835,AAA Batteries (4-pack),2,2.99,09/20/19 18:47,"696 South St, San Francisco, CA 94016" +257836,USB-C Charging Cable,1,11.95,09/25/19 07:56,"31 6th St, Austin, TX 73301" +257837,AAA Batteries (4-pack),1,2.99,09/03/19 08:37,"201 9th St, Los Angeles, CA 90001" +257838,Lightning Charging Cable,1,14.95,09/20/19 18:01,"39 Sunset St, New York City, NY 10001" +257839,Bose SoundSport Headphones,1,99.99,09/18/19 21:35,"141 Hill St, Los Angeles, CA 90001" +257840,Apple Airpods Headphones,1,150,09/27/19 09:36,"572 Willow St, Portland, ME 04101" +257841,Lightning Charging Cable,1,14.95,09/28/19 22:17,"675 11th St, San Francisco, CA 94016" +257842,Wired Headphones,1,11.99,09/08/19 12:29,"853 9th St, Austin, TX 73301" +257843,Wired Headphones,1,11.99,09/12/19 13:32,"990 Forest St, Seattle, WA 98101" +257844,20in Monitor,1,109.99,09/30/19 17:30,"836 Park St, Portland, OR 97035" +257845,AA Batteries (4-pack),2,3.84,09/22/19 18:15,"544 9th St, Boston, MA 02215" +257846,Apple Airpods Headphones,1,150,09/16/19 21:27,"850 9th St, San Francisco, CA 94016" +257847,AA Batteries (4-pack),2,3.84,09/18/19 11:50,"470 Lakeview St, San Francisco, CA 94016" +257848,USB-C Charging Cable,1,11.95,09/24/19 10:33,"318 Main St, Los Angeles, CA 90001" +257849,USB-C Charging Cable,1,11.95,09/05/19 13:12,"118 Main St, Los Angeles, CA 90001" +257849,Flatscreen TV,1,300,09/05/19 13:12,"118 Main St, Los Angeles, CA 90001" +257850,USB-C Charging Cable,1,11.95,09/07/19 15:29,"917 6th St, New York City, NY 10001" +257851,27in 4K Gaming Monitor,1,389.99,09/21/19 21:06,"376 Lake St, New York City, NY 10001" +257852,27in 4K Gaming Monitor,1,389.99,09/24/19 14:47,"205 Sunset St, Seattle, WA 98101" +257853,Apple Airpods Headphones,1,150,09/10/19 12:58,"636 Ridge St, Dallas, TX 75001" +257854,USB-C Charging Cable,1,11.95,09/17/19 17:00,"702 14th St, Los Angeles, CA 90001" +257854,AAA Batteries (4-pack),3,2.99,09/17/19 17:00,"702 14th St, Los Angeles, CA 90001" +257855,AAA Batteries (4-pack),2,2.99,09/03/19 12:58,"82 Church St, Portland, OR 97035" +257856,Lightning Charging Cable,1,14.95,09/26/19 12:38,"100 7th St, Los Angeles, CA 90001" +257857,34in Ultrawide Monitor,1,379.99,09/06/19 13:48,"359 Center St, San Francisco, CA 94016" +257858,Wired Headphones,1,11.99,09/22/19 10:07,"263 8th St, Los Angeles, CA 90001" +257859,Apple Airpods Headphones,1,150,09/09/19 20:34,"58 Maple St, Seattle, WA 98101" +257860,AA Batteries (4-pack),1,3.84,09/17/19 20:48,"613 Willow St, San Francisco, CA 94016" +257861,Lightning Charging Cable,2,14.95,09/04/19 21:54,"83 Wilson St, Los Angeles, CA 90001" +257862,AA Batteries (4-pack),2,3.84,09/20/19 11:48,"890 Center St, New York City, NY 10001" +257863,Bose SoundSport Headphones,1,99.99,09/07/19 14:45,"998 Main St, Portland, OR 97035" +257864,ThinkPad Laptop,1,999.99,09/03/19 10:28,"546 Pine St, San Francisco, CA 94016" +257865,Wired Headphones,1,11.99,09/29/19 13:15,"684 Cedar St, New York City, NY 10001" +257866,Lightning Charging Cable,1,14.95,09/09/19 14:22,"725 Ridge St, Seattle, WA 98101" +257867,AAA Batteries (4-pack),2,2.99,09/09/19 01:51,"253 Hill St, Atlanta, GA 30301" +257868,20in Monitor,1,109.99,09/18/19 21:09,"39 14th St, Atlanta, GA 30301" +257869,27in FHD Monitor,1,149.99,09/29/19 09:48,"386 Forest St, Boston, MA 02215" +257870,Bose SoundSport Headphones,1,99.99,09/06/19 12:03,"634 Highland St, Boston, MA 02215" +257871,iPhone,1,700,09/14/19 19:50,"58 River St, Los Angeles, CA 90001" +257871,Lightning Charging Cable,1,14.95,09/14/19 19:50,"58 River St, Los Angeles, CA 90001" +257872,34in Ultrawide Monitor,1,379.99,09/18/19 18:54,"718 14th St, Boston, MA 02215" +257873,Apple Airpods Headphones,1,150,09/09/19 12:15,"15 Sunset St, New York City, NY 10001" +257874,iPhone,1,700,09/14/19 14:03,"712 Church St, San Francisco, CA 94016" +257875,AA Batteries (4-pack),1,3.84,09/20/19 21:26,"992 2nd St, San Francisco, CA 94016" +257876,AAA Batteries (4-pack),1,2.99,09/09/19 08:49,"563 4th St, San Francisco, CA 94016" +257877,Lightning Charging Cable,1,14.95,09/24/19 19:21,"294 9th St, San Francisco, CA 94016" +257878,USB-C Charging Cable,1,11.95,09/19/19 18:42,"152 Cedar St, Los Angeles, CA 90001" +257879,Google Phone,1,600,09/07/19 11:57,"551 South St, New York City, NY 10001" +257880,USB-C Charging Cable,1,11.95,09/10/19 13:09,"640 12th St, Seattle, WA 98101" +257881,ThinkPad Laptop,1,999.99,09/22/19 19:46,"673 River St, San Francisco, CA 94016" +257882,Wired Headphones,1,11.99,09/17/19 09:15,"764 Adams St, New York City, NY 10001" +257883,Google Phone,1,600,09/26/19 19:13,"113 5th St, Atlanta, GA 30301" +257884,Flatscreen TV,1,300,09/17/19 06:06,"221 Elm St, Los Angeles, CA 90001" +257885,Google Phone,1,600,09/05/19 07:52,"18 1st St, Los Angeles, CA 90001" +257886,AA Batteries (4-pack),1,3.84,09/12/19 20:24,"956 Main St, Atlanta, GA 30301" +257886,Bose SoundSport Headphones,1,99.99,09/12/19 20:24,"956 Main St, Atlanta, GA 30301" +257887,Lightning Charging Cable,1,14.95,09/25/19 19:05,"386 Johnson St, Atlanta, GA 30301" +257888,Bose SoundSport Headphones,1,99.99,09/11/19 18:07,"911 Adams St, Los Angeles, CA 90001" +257889,34in Ultrawide Monitor,1,379.99,09/11/19 20:01,"309 Center St, Dallas, TX 75001" +257890,Apple Airpods Headphones,2,150,09/10/19 14:17,"60 Madison St, Dallas, TX 75001" +257890,27in 4K Gaming Monitor,1,389.99,09/10/19 14:17,"60 Madison St, Dallas, TX 75001" +257891,34in Ultrawide Monitor,1,379.99,09/12/19 17:29,"382 Walnut St, Boston, MA 02215" +257892,Lightning Charging Cable,1,14.95,09/07/19 02:56,"122 5th St, San Francisco, CA 94016" +257893,Lightning Charging Cable,1,14.95,09/20/19 04:49,"341 River St, San Francisco, CA 94016" +257894,Lightning Charging Cable,1,14.95,09/01/19 20:06,"309 Sunset St, Los Angeles, CA 90001" +257895,Lightning Charging Cable,1,14.95,09/18/19 17:52,"543 Elm St, Los Angeles, CA 90001" +257896,Apple Airpods Headphones,1,150,09/30/19 14:24,"483 1st St, Dallas, TX 75001" +257897,27in 4K Gaming Monitor,1,389.99,09/14/19 18:30,"332 Center St, Boston, MA 02215" +257898,AA Batteries (4-pack),2,3.84,09/11/19 10:34,"820 West St, Seattle, WA 98101" +257899,AAA Batteries (4-pack),1,2.99,09/11/19 13:36,"314 11th St, Seattle, WA 98101" +257900,Wired Headphones,1,11.99,09/07/19 15:35,"718 Spruce St, Los Angeles, CA 90001" +257900,Wired Headphones,1,11.99,09/07/19 15:35,"718 Spruce St, Los Angeles, CA 90001" +257901,Bose SoundSport Headphones,1,99.99,09/25/19 11:57,"522 Lake St, Dallas, TX 75001" +257902,Wired Headphones,2,11.99,09/20/19 14:01,"783 Spruce St, Los Angeles, CA 90001" +257903,Wired Headphones,1,11.99,09/21/19 14:27,"134 Jackson St, Atlanta, GA 30301" +257904,AA Batteries (4-pack),1,3.84,09/04/19 18:52,"611 Maple St, New York City, NY 10001" +257905,ThinkPad Laptop,1,999.99,09/16/19 11:55,"312 Jefferson St, Dallas, TX 75001" +257906,USB-C Charging Cable,1,11.95,09/28/19 10:22,"71 Highland St, Seattle, WA 98101" +257907,Wired Headphones,1,11.99,09/23/19 16:20,"97 Main St, Los Angeles, CA 90001" +257908,LG Washing Machine,1,600.0,09/18/19 19:56,"543 Madison St, Atlanta, GA 30301" +257909,27in 4K Gaming Monitor,1,389.99,09/03/19 16:12,"228 6th St, Seattle, WA 98101" +257910,AAA Batteries (4-pack),1,2.99,09/07/19 08:05,"102 8th St, Los Angeles, CA 90001" +257911,AAA Batteries (4-pack),6,2.99,09/17/19 20:44,"25 Main St, Los Angeles, CA 90001" +257912,USB-C Charging Cable,1,11.95,09/20/19 20:16,"710 Walnut St, San Francisco, CA 94016" +257913,Apple Airpods Headphones,1,150,09/23/19 02:11,"498 5th St, Atlanta, GA 30301" +257914,27in FHD Monitor,1,149.99,09/08/19 16:29,"580 North St, San Francisco, CA 94016" +257915,Wired Headphones,1,11.99,09/24/19 20:32,"899 Washington St, San Francisco, CA 94016" +257916,Wired Headphones,1,11.99,09/16/19 16:20,"335 9th St, New York City, NY 10001" +257917,27in 4K Gaming Monitor,1,389.99,09/03/19 17:30,"731 Jefferson St, Los Angeles, CA 90001" +257918,Apple Airpods Headphones,1,150,09/05/19 02:04,"212 North St, Los Angeles, CA 90001" +257919,Bose SoundSport Headphones,1,99.99,09/24/19 01:45,"746 7th St, Dallas, TX 75001" +257920,AA Batteries (4-pack),2,3.84,09/30/19 20:59,"516 Forest St, San Francisco, CA 94016" +257921,AA Batteries (4-pack),2,3.84,09/12/19 23:25,"408 Hickory St, New York City, NY 10001" +257922,Apple Airpods Headphones,1,150,09/11/19 18:56,"288 Cedar St, Boston, MA 02215" +257923,Bose SoundSport Headphones,1,99.99,09/17/19 11:16,"47 Lincoln St, Atlanta, GA 30301" +257924,USB-C Charging Cable,1,11.95,09/15/19 14:47,"227 Ridge St, Boston, MA 02215" +257925,Bose SoundSport Headphones,1,99.99,09/02/19 17:02,"336 4th St, Portland, OR 97035" +257926,AAA Batteries (4-pack),1,2.99,09/08/19 13:44,"811 12th St, San Francisco, CA 94016" +257927,USB-C Charging Cable,1,11.95,09/02/19 20:46,"922 Lakeview St, San Francisco, CA 94016" +257928,Lightning Charging Cable,1,14.95,09/24/19 18:36,"64 Lakeview St, Los Angeles, CA 90001" +257929,27in 4K Gaming Monitor,1,389.99,09/20/19 23:37,"224 6th St, Boston, MA 02215" +257930,Lightning Charging Cable,1,14.95,09/04/19 09:19,"344 Jefferson St, San Francisco, CA 94016" +257931,USB-C Charging Cable,1,11.95,09/10/19 13:10,"715 Washington St, Dallas, TX 75001" +257932,Lightning Charging Cable,1,14.95,09/06/19 13:30,"39 12th St, San Francisco, CA 94016" +257933,Bose SoundSport Headphones,1,99.99,09/24/19 09:48,"103 West St, Boston, MA 02215" +257934,AA Batteries (4-pack),1,3.84,09/17/19 10:56,"405 South St, Portland, OR 97035" +257935,AA Batteries (4-pack),2,3.84,09/16/19 22:41,"834 Chestnut St, Dallas, TX 75001" +257936,Apple Airpods Headphones,1,150,09/25/19 02:54,"277 Highland St, Austin, TX 73301" +257937,34in Ultrawide Monitor,1,379.99,09/22/19 22:14,"852 West St, San Francisco, CA 94016" +257938,AAA Batteries (4-pack),1,2.99,09/29/19 13:43,"905 Meadow St, Dallas, TX 75001" +257939,Wired Headphones,1,11.99,09/18/19 12:35,"270 Lake St, Austin, TX 73301" +257940,AA Batteries (4-pack),1,3.84,09/02/19 12:11,"661 Madison St, Los Angeles, CA 90001" +257941,Lightning Charging Cable,1,14.95,09/18/19 16:49,"360 1st St, Atlanta, GA 30301" +257942,Google Phone,1,600,09/20/19 15:27,"21 1st St, Boston, MA 02215" +257942,Bose SoundSport Headphones,1,99.99,09/20/19 15:27,"21 1st St, Boston, MA 02215" +257943,27in FHD Monitor,1,149.99,09/26/19 17:33,"688 Church St, Dallas, TX 75001" +257944,Wired Headphones,1,11.99,09/13/19 16:52,"354 4th St, Boston, MA 02215" +257945,Google Phone,1,600,09/02/19 09:05,"327 Adams St, Los Angeles, CA 90001" +257946,Wired Headphones,1,11.99,09/10/19 15:22,"236 Madison St, Atlanta, GA 30301" +257947,USB-C Charging Cable,1,11.95,09/10/19 08:25,"734 9th St, Boston, MA 02215" +257948,iPhone,1,700,09/08/19 13:31,"643 5th St, New York City, NY 10001" +257948,Wired Headphones,1,11.99,09/08/19 13:31,"643 5th St, New York City, NY 10001" +257949,Apple Airpods Headphones,1,150,09/15/19 18:20,"600 Jefferson St, Dallas, TX 75001" +257950,Wired Headphones,1,11.99,09/06/19 14:40,"942 2nd St, Atlanta, GA 30301" +257951,Macbook Pro Laptop,1,1700,09/24/19 20:50,"65 South St, New York City, NY 10001" +257952,AA Batteries (4-pack),1,3.84,09/05/19 10:51,"461 8th St, Los Angeles, CA 90001" +257953,iPhone,1,700,09/27/19 14:56,"199 Walnut St, New York City, NY 10001" +257954,USB-C Charging Cable,1,11.95,09/14/19 09:25,"864 Jefferson St, New York City, NY 10001" +257955,27in FHD Monitor,1,149.99,09/29/19 17:54,"263 2nd St, New York City, NY 10001" +257956,Lightning Charging Cable,1,14.95,09/05/19 10:01,"165 Elm St, New York City, NY 10001" +257956,iPhone,1,700,09/05/19 10:01,"165 Elm St, New York City, NY 10001" +257957,Wired Headphones,1,11.99,09/10/19 20:39,"87 Sunset St, Boston, MA 02215" +257958,Bose SoundSport Headphones,1,99.99,09/27/19 16:32,"752 2nd St, Dallas, TX 75001" +257959,AAA Batteries (4-pack),1,2.99,09/01/19 14:05,"300 Cherry St, Boston, MA 02215" +257960,Wired Headphones,1,11.99,09/02/19 11:58,"421 Center St, Los Angeles, CA 90001" +257961,Wired Headphones,2,11.99,09/24/19 14:23,"269 12th St, San Francisco, CA 94016" +257962,Vareebadd Phone,1,400,09/11/19 01:23,"191 Washington St, Atlanta, GA 30301" +257963,27in FHD Monitor,1,149.99,09/25/19 07:33,"611 1st St, Portland, OR 97035" +257964,AAA Batteries (4-pack),1,2.99,09/30/19 22:09,"450 North St, Los Angeles, CA 90001" +257965,USB-C Charging Cable,1,11.95,09/02/19 22:03,"598 Jackson St, New York City, NY 10001" +257966,AA Batteries (4-pack),1,3.84,09/04/19 12:55,"703 Center St, Seattle, WA 98101" +257967,LG Washing Machine,1,600.0,09/21/19 09:58,"725 West St, Atlanta, GA 30301" +257968,34in Ultrawide Monitor,1,379.99,09/22/19 15:16,"143 Lincoln St, Los Angeles, CA 90001" +257969,iPhone,1,700,09/23/19 06:45,"270 14th St, New York City, NY 10001" +257970,34in Ultrawide Monitor,1,379.99,09/19/19 11:03,"395 North St, San Francisco, CA 94016" +257971,Lightning Charging Cable,1,14.95,09/17/19 23:33,"709 4th St, Los Angeles, CA 90001" +257972,AA Batteries (4-pack),1,3.84,09/09/19 20:21,"896 Madison St, San Francisco, CA 94016" +257973,Google Phone,1,600,09/01/19 15:38,"312 Wilson St, San Francisco, CA 94016" +257974,Macbook Pro Laptop,1,1700,09/06/19 20:11,"747 13th St, Boston, MA 02215" +257975,Wired Headphones,1,11.99,09/25/19 06:26,"653 Walnut St, Dallas, TX 75001" +257976,Wired Headphones,1,11.99,09/13/19 22:33,"183 Madison St, Portland, OR 97035" +257977,Apple Airpods Headphones,1,150,09/17/19 16:52,"215 Johnson St, New York City, NY 10001" +257978,Apple Airpods Headphones,1,150,09/26/19 16:01,"575 8th St, San Francisco, CA 94016" +257979,34in Ultrawide Monitor,1,379.99,09/24/19 13:42,"354 7th St, San Francisco, CA 94016" +257980,USB-C Charging Cable,1,11.95,09/18/19 15:26,"74 Lakeview St, San Francisco, CA 94016" +257981,27in FHD Monitor,1,149.99,09/03/19 09:58,"604 Lake St, Seattle, WA 98101" +257982,USB-C Charging Cable,1,11.95,09/23/19 19:02,"529 Cedar St, San Francisco, CA 94016" +257983,Lightning Charging Cable,1,14.95,09/28/19 20:50,"134 Jackson St, San Francisco, CA 94016" +257984,Bose SoundSport Headphones,1,99.99,09/27/19 06:28,"823 7th St, Boston, MA 02215" +257985,Macbook Pro Laptop,1,1700,09/09/19 09:11,"91 9th St, San Francisco, CA 94016" +257986,ThinkPad Laptop,1,999.99,09/20/19 04:06,"91 14th St, Los Angeles, CA 90001" +257987,ThinkPad Laptop,1,999.99,09/22/19 00:09,"118 6th St, Atlanta, GA 30301" +257988,Lightning Charging Cable,1,14.95,09/06/19 07:54,"167 Washington St, San Francisco, CA 94016" +257989,AAA Batteries (4-pack),1,2.99,09/18/19 13:41,"736 11th St, Portland, OR 97035" +257990,Bose SoundSport Headphones,1,99.99,09/05/19 18:06,"437 Lincoln St, New York City, NY 10001" +257991,20in Monitor,1,109.99,09/14/19 22:08,"286 Washington St, San Francisco, CA 94016" +257992,USB-C Charging Cable,1,11.95,09/23/19 16:34,"148 Hill St, Boston, MA 02215" +257993,USB-C Charging Cable,1,11.95,09/13/19 21:44,"904 Church St, Austin, TX 73301" +257994,Wired Headphones,1,11.99,09/03/19 09:38,"719 Cedar St, San Francisco, CA 94016" +257995,Bose SoundSport Headphones,1,99.99,09/27/19 10:48,"692 Maple St, Austin, TX 73301" +257995,Bose SoundSport Headphones,1,99.99,09/27/19 10:48,"692 Maple St, Austin, TX 73301" +257996,AA Batteries (4-pack),1,3.84,09/04/19 15:54,"267 Walnut St, New York City, NY 10001" +257997,USB-C Charging Cable,1,11.95,09/09/19 23:14,"631 Willow St, Los Angeles, CA 90001" +257998,AA Batteries (4-pack),1,3.84,09/12/19 12:17,"302 1st St, Dallas, TX 75001" +257999,AA Batteries (4-pack),1,3.84,09/22/19 11:48,"728 9th St, Atlanta, GA 30301" +258000,Wired Headphones,2,11.99,09/18/19 11:01,"56 Sunset St, Dallas, TX 75001" +258001,Lightning Charging Cable,1,14.95,09/03/19 10:37,"794 Jackson St, Los Angeles, CA 90001" +258002,USB-C Charging Cable,1,11.95,09/19/19 09:37,"3 Lincoln St, Austin, TX 73301" +258003,AAA Batteries (4-pack),1,2.99,09/26/19 21:18,"206 2nd St, San Francisco, CA 94016" +258004,Lightning Charging Cable,1,14.95,09/07/19 23:50,"926 Sunset St, New York City, NY 10001" +258005,Wired Headphones,1,11.99,09/11/19 11:13,"450 Elm St, New York City, NY 10001" +258006,AAA Batteries (4-pack),1,2.99,09/21/19 20:10,"460 6th St, San Francisco, CA 94016" +258007,AA Batteries (4-pack),2,3.84,09/03/19 17:09,"594 Cherry St, Atlanta, GA 30301" +258008,Wired Headphones,1,11.99,09/29/19 14:09,"235 Johnson St, New York City, NY 10001" +258009,34in Ultrawide Monitor,1,379.99,09/26/19 18:10,"649 Spruce St, Boston, MA 02215" +258010,USB-C Charging Cable,1,11.95,09/27/19 20:13,"782 Willow St, Boston, MA 02215" +258011,Bose SoundSport Headphones,1,99.99,09/07/19 15:51,"162 South St, Austin, TX 73301" +258012,AA Batteries (4-pack),1,3.84,09/08/19 22:20,"914 11th St, New York City, NY 10001" +258013,USB-C Charging Cable,1,11.95,09/13/19 19:46,"9 10th St, Los Angeles, CA 90001" +258014,Bose SoundSport Headphones,1,99.99,09/22/19 15:07,"183 Elm St, Los Angeles, CA 90001" +258015,USB-C Charging Cable,1,11.95,09/09/19 12:49,"732 2nd St, Boston, MA 02215" +258016,AAA Batteries (4-pack),5,2.99,09/22/19 11:28,"517 Cedar St, San Francisco, CA 94016" +258017,AA Batteries (4-pack),2,3.84,09/20/19 00:27,"414 Hill St, Los Angeles, CA 90001" +258018,AAA Batteries (4-pack),2,2.99,09/26/19 06:43,"501 Cherry St, Dallas, TX 75001" +258019,USB-C Charging Cable,1,11.95,09/26/19 12:21,"621 Sunset St, Atlanta, GA 30301" +258020,Apple Airpods Headphones,1,150,09/25/19 13:14,"35 13th St, New York City, NY 10001" +258021,AA Batteries (4-pack),1,3.84,09/22/19 10:03,"404 Park St, San Francisco, CA 94016" +258022,AA Batteries (4-pack),3,3.84,09/14/19 16:23,"99 Chestnut St, Austin, TX 73301" +258023,Wired Headphones,1,11.99,09/01/19 18:34,"990 Forest St, Seattle, WA 98101" +258024,AA Batteries (4-pack),2,3.84,09/30/19 13:46,"862 Cedar St, Dallas, TX 75001" +,,,,, +258025,USB-C Charging Cable,1,11.95,09/24/19 19:05,"358 Pine St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +258026,Lightning Charging Cable,2,14.95,09/05/19 10:33,"856 Hill St, San Francisco, CA 94016" +258027,Lightning Charging Cable,1,14.95,09/19/19 22:55,"582 Forest St, Boston, MA 02215" +258028,Wired Headphones,1,11.99,09/18/19 18:10,"546 North St, Los Angeles, CA 90001" +258029,AAA Batteries (4-pack),1,2.99,09/27/19 19:52,"432 Maple St, San Francisco, CA 94016" +258030,Wired Headphones,1,11.99,09/13/19 16:51,"896 Sunset St, Los Angeles, CA 90001" +258031,Lightning Charging Cable,2,14.95,09/18/19 13:33,"687 14th St, San Francisco, CA 94016" +258032,USB-C Charging Cable,1,11.95,09/08/19 20:57,"858 10th St, San Francisco, CA 94016" +,,,,, +258033,Wired Headphones,1,11.99,09/19/19 23:19,"662 5th St, Los Angeles, CA 90001" +258034,AAA Batteries (4-pack),1,2.99,09/19/19 11:01,"184 14th St, San Francisco, CA 94016" +258035,USB-C Charging Cable,1,11.95,09/05/19 17:17,"786 7th St, Los Angeles, CA 90001" +258036,Lightning Charging Cable,1,14.95,09/06/19 11:41,"411 Willow St, Austin, TX 73301" +258037,34in Ultrawide Monitor,1,379.99,09/09/19 10:49,"313 Cherry St, Los Angeles, CA 90001" +258038,20in Monitor,1,109.99,09/14/19 17:47,"108 Highland St, New York City, NY 10001" +258039,Wired Headphones,1,11.99,09/03/19 21:42,"726 Jackson St, Seattle, WA 98101" +258040,AAA Batteries (4-pack),1,2.99,09/17/19 12:04,"751 Park St, Los Angeles, CA 90001" +258041,USB-C Charging Cable,1,11.95,09/13/19 14:05,"760 Meadow St, San Francisco, CA 94016" +258042,USB-C Charging Cable,1,11.95,09/23/19 20:27,"138 Cherry St, San Francisco, CA 94016" +258043,LG Dryer,1,600.0,09/17/19 13:23,"904 Wilson St, Dallas, TX 75001" +258044,Lightning Charging Cable,1,14.95,09/18/19 05:42,"444 4th St, Los Angeles, CA 90001" +258045,Macbook Pro Laptop,1,1700,09/11/19 23:02,"675 Forest St, San Francisco, CA 94016" +258046,AA Batteries (4-pack),1,3.84,09/17/19 18:02,"79 Chestnut St, Seattle, WA 98101" +258047,Bose SoundSport Headphones,1,99.99,09/01/19 17:36,"906 Maple St, San Francisco, CA 94016" +258048,Bose SoundSport Headphones,1,99.99,09/04/19 23:04,"527 Washington St, Los Angeles, CA 90001" +258049,AA Batteries (4-pack),1,3.84,09/23/19 16:37,"293 West St, Boston, MA 02215" +258050,27in 4K Gaming Monitor,1,389.99,09/28/19 15:47,"311 Cedar St, Portland, OR 97035" +258051,AA Batteries (4-pack),1,3.84,09/08/19 21:47,"963 Washington St, Los Angeles, CA 90001" +258052,Bose SoundSport Headphones,1,99.99,09/11/19 16:49,"44 Sunset St, Atlanta, GA 30301" +258053,34in Ultrawide Monitor,1,379.99,09/08/19 23:13,"111 Center St, San Francisco, CA 94016" +258054,Wired Headphones,1,11.99,09/24/19 10:57,"283 Cherry St, Atlanta, GA 30301" +258055,Google Phone,1,600,09/15/19 13:53,"290 8th St, Seattle, WA 98101" +258055,Wired Headphones,2,11.99,09/15/19 13:53,"290 8th St, Seattle, WA 98101" +258056,Apple Airpods Headphones,1,150,09/09/19 19:18,"203 7th St, Los Angeles, CA 90001" +258057,Google Phone,1,600,09/13/19 12:57,"316 12th St, Los Angeles, CA 90001" +258057,Wired Headphones,1,11.99,09/13/19 12:57,"316 12th St, Los Angeles, CA 90001" +258058,Lightning Charging Cable,1,14.95,09/16/19 14:54,"53 Spruce St, New York City, NY 10001" +258059,USB-C Charging Cable,1,11.95,09/08/19 22:48,"763 Cedar St, Portland, OR 97035" +258060,Apple Airpods Headphones,1,150,09/09/19 15:04,"87 Lake St, San Francisco, CA 94016" +258061,AA Batteries (4-pack),2,3.84,09/04/19 22:06,"117 1st St, Los Angeles, CA 90001" +258062,Wired Headphones,1,11.99,09/20/19 07:55,"495 Jefferson St, San Francisco, CA 94016" +258063,AA Batteries (4-pack),1,3.84,09/10/19 17:35,"288 Park St, San Francisco, CA 94016" +258064,USB-C Charging Cable,1,11.95,09/09/19 11:43,"307 13th St, Dallas, TX 75001" +258065,AAA Batteries (4-pack),1,2.99,09/26/19 19:24,"614 5th St, Portland, OR 97035" +258066,AAA Batteries (4-pack),3,2.99,09/11/19 23:14,"97 12th St, San Francisco, CA 94016" +258067,Wired Headphones,1,11.99,09/05/19 14:17,"671 Walnut St, San Francisco, CA 94016" +258068,Apple Airpods Headphones,1,150,09/06/19 10:13,"736 Ridge St, Dallas, TX 75001" +258069,ThinkPad Laptop,1,999.99,09/26/19 11:29,"547 11th St, Seattle, WA 98101" +258070,Lightning Charging Cable,1,14.95,09/06/19 20:45,"168 12th St, Boston, MA 02215" +258071,Wired Headphones,1,11.99,09/05/19 20:04,"638 5th St, Atlanta, GA 30301" +258072,Bose SoundSport Headphones,1,99.99,09/05/19 09:35,"705 Wilson St, Los Angeles, CA 90001" +258073,Macbook Pro Laptop,1,1700,09/03/19 18:27,"751 Main St, Los Angeles, CA 90001" +258074,Wired Headphones,1,11.99,09/11/19 13:42,"481 12th St, San Francisco, CA 94016" +258075,AAA Batteries (4-pack),1,2.99,09/12/19 19:20,"725 4th St, Boston, MA 02215" +258075,ThinkPad Laptop,1,999.99,09/12/19 19:20,"725 4th St, Boston, MA 02215" +258076,Bose SoundSport Headphones,1,99.99,09/01/19 11:32,"420 West St, Austin, TX 73301" +258077,27in 4K Gaming Monitor,1,389.99,09/17/19 02:40,"569 Main St, Seattle, WA 98101" +258078,Bose SoundSport Headphones,1,99.99,09/06/19 12:16,"850 Jefferson St, New York City, NY 10001" +258079,AA Batteries (4-pack),1,3.84,09/10/19 14:40,"98 North St, San Francisco, CA 94016" +258080,Vareebadd Phone,1,400,09/27/19 15:49,"756 Madison St, San Francisco, CA 94016" +258081,AAA Batteries (4-pack),1,2.99,09/03/19 16:40,"967 Wilson St, Austin, TX 73301" +258082,34in Ultrawide Monitor,1,379.99,09/18/19 12:33,"145 Jefferson St, Los Angeles, CA 90001" +258083,USB-C Charging Cable,1,11.95,09/14/19 19:24,"695 6th St, Portland, OR 97035" +258084,USB-C Charging Cable,1,11.95,09/05/19 23:02,"219 Ridge St, New York City, NY 10001" +258085,27in FHD Monitor,1,149.99,09/20/19 09:50,"504 Main St, Dallas, TX 75001" +258086,Lightning Charging Cable,1,14.95,09/01/19 14:46,"664 Walnut St, Portland, OR 97035" +258087,Wired Headphones,1,11.99,09/20/19 18:09,"404 Dogwood St, Los Angeles, CA 90001" +258088,iPhone,1,700,09/21/19 00:26,"572 West St, San Francisco, CA 94016" +258088,Apple Airpods Headphones,1,150,09/21/19 00:26,"572 West St, San Francisco, CA 94016" +258089,AA Batteries (4-pack),2,3.84,09/25/19 11:45,"794 Cherry St, Los Angeles, CA 90001" +258090,Apple Airpods Headphones,1,150,09/20/19 21:43,"14 Main St, San Francisco, CA 94016" +258091,USB-C Charging Cable,1,11.95,09/01/19 12:09,"556 Madison St, San Francisco, CA 94016" +258092,Flatscreen TV,1,300,09/05/19 16:42,"431 Willow St, Seattle, WA 98101" +258093,AA Batteries (4-pack),2,3.84,09/10/19 18:17,"60 Pine St, San Francisco, CA 94016" +258094,Wired Headphones,1,11.99,09/28/19 13:28,"949 West St, San Francisco, CA 94016" +258095,Wired Headphones,1,11.99,09/23/19 13:54,"262 Meadow St, San Francisco, CA 94016" +258096,Vareebadd Phone,1,400,09/04/19 17:20,"685 Maple St, Los Angeles, CA 90001" +258097,Apple Airpods Headphones,1,150,09/27/19 14:56,"128 Cherry St, Los Angeles, CA 90001" +258098,iPhone,1,700,09/18/19 17:20,"264 Madison St, Atlanta, GA 30301" +258098,Wired Headphones,1,11.99,09/18/19 17:20,"264 Madison St, Atlanta, GA 30301" +258099,34in Ultrawide Monitor,1,379.99,09/14/19 21:14,"462 Hickory St, San Francisco, CA 94016" +258100,Macbook Pro Laptop,1,1700,09/07/19 21:00,"829 2nd St, Los Angeles, CA 90001" +258101,Apple Airpods Headphones,1,150,09/22/19 18:05,"241 Maple St, New York City, NY 10001" +258102,USB-C Charging Cable,1,11.95,09/08/19 21:02,"548 6th St, San Francisco, CA 94016" +258103,Macbook Pro Laptop,1,1700,09/23/19 11:02,"686 Jackson St, Los Angeles, CA 90001" +258104,iPhone,1,700,09/17/19 18:18,"934 Church St, Dallas, TX 75001" +258105,Bose SoundSport Headphones,1,99.99,09/05/19 07:34,"48 Sunset St, Austin, TX 73301" +258106,Bose SoundSport Headphones,1,99.99,09/09/19 22:29,"38 Sunset St, New York City, NY 10001" +258107,Flatscreen TV,1,300,09/11/19 22:16,"792 2nd St, Los Angeles, CA 90001" +258108,AAA Batteries (4-pack),2,2.99,09/01/19 08:27,"396 Hickory St, Austin, TX 73301" +258109,iPhone,1,700,09/04/19 22:03,"522 Chestnut St, Atlanta, GA 30301" +258109,Lightning Charging Cable,2,14.95,09/04/19 22:03,"522 Chestnut St, Atlanta, GA 30301" +258110,Wired Headphones,1,11.99,09/19/19 22:10,"330 Park St, Atlanta, GA 30301" +258111,27in FHD Monitor,1,149.99,09/04/19 20:51,"998 Madison St, San Francisco, CA 94016" +258112,Lightning Charging Cable,1,14.95,09/27/19 11:38,"25 Willow St, San Francisco, CA 94016" +258113,USB-C Charging Cable,1,11.95,09/17/19 13:24,"630 5th St, New York City, NY 10001" +258114,Google Phone,1,600,09/04/19 07:17,"895 4th St, Los Angeles, CA 90001" +258115,Google Phone,1,600,09/02/19 13:35,"55 14th St, San Francisco, CA 94016" +258116,34in Ultrawide Monitor,1,379.99,09/23/19 19:29,"704 Center St, Los Angeles, CA 90001" +258117,Vareebadd Phone,1,400,09/24/19 20:14,"321 Walnut St, San Francisco, CA 94016" +258118,AAA Batteries (4-pack),1,2.99,09/07/19 21:27,"965 Wilson St, Austin, TX 73301" +258119,AAA Batteries (4-pack),1,2.99,09/01/19 14:51,"233 Cedar St, San Francisco, CA 94016" +258120,Macbook Pro Laptop,1,1700,09/28/19 23:46,"897 North St, New York City, NY 10001" +258121,27in FHD Monitor,1,149.99,09/25/19 18:55,"410 Cherry St, Los Angeles, CA 90001" +258122,20in Monitor,1,109.99,09/27/19 22:47,"921 Maple St, San Francisco, CA 94016" +258123,AA Batteries (4-pack),2,3.84,09/20/19 11:17,"554 8th St, Atlanta, GA 30301" +258124,27in FHD Monitor,1,149.99,09/20/19 18:30,"763 7th St, Los Angeles, CA 90001" +258125,Flatscreen TV,1,300,09/14/19 22:12,"18 North St, San Francisco, CA 94016" +258126,iPhone,1,700,09/20/19 17:01,"226 West St, Dallas, TX 75001" +258127,Apple Airpods Headphones,1,150,09/13/19 11:32,"823 North St, Dallas, TX 75001" +258128,Bose SoundSport Headphones,1,99.99,09/30/19 13:37,"360 Johnson St, Seattle, WA 98101" +258128,Wired Headphones,1,11.99,09/30/19 13:37,"360 Johnson St, Seattle, WA 98101" +258129,Lightning Charging Cable,1,14.95,09/11/19 15:44,"796 Highland St, San Francisco, CA 94016" +258130,AAA Batteries (4-pack),1,2.99,09/21/19 17:05,"564 14th St, Los Angeles, CA 90001" +258131,Apple Airpods Headphones,1,150,09/06/19 15:13,"554 Hill St, Portland, OR 97035" +258132,27in FHD Monitor,1,149.99,09/12/19 18:38,"677 1st St, New York City, NY 10001" +258133,Apple Airpods Headphones,1,150,09/18/19 21:02,"492 Washington St, New York City, NY 10001" +258134,AA Batteries (4-pack),3,3.84,09/13/19 16:11,"352 West St, San Francisco, CA 94016" +258135,Bose SoundSport Headphones,1,99.99,09/03/19 13:18,"276 Lake St, Los Angeles, CA 90001" +258136,Lightning Charging Cable,1,14.95,09/17/19 20:00,"830 9th St, Dallas, TX 75001" +258137,Google Phone,1,600,09/11/19 10:18,"204 Lake St, Portland, ME 04101" +258138,Bose SoundSport Headphones,1,99.99,09/12/19 11:37,"594 Center St, San Francisco, CA 94016" +258139,27in 4K Gaming Monitor,1,389.99,09/15/19 20:38,"496 Highland St, Los Angeles, CA 90001" +258140,Wired Headphones,1,11.99,09/08/19 15:49,"7 Hickory St, Los Angeles, CA 90001" +258141,27in FHD Monitor,1,149.99,09/25/19 21:27,"307 Highland St, New York City, NY 10001" +258142,Google Phone,1,600,09/10/19 09:05,"651 Hill St, Portland, OR 97035" +258143,AAA Batteries (4-pack),1,2.99,09/20/19 23:45,"848 Lincoln St, Atlanta, GA 30301" +258144,USB-C Charging Cable,1,11.95,09/17/19 08:31,"928 Maple St, Austin, TX 73301" +258144,iPhone,1,700,09/17/19 08:31,"928 Maple St, Austin, TX 73301" +258145,27in 4K Gaming Monitor,1,389.99,09/03/19 14:06,"531 2nd St, New York City, NY 10001" +258146,iPhone,1,700,09/05/19 12:17,"937 13th St, San Francisco, CA 94016" +258146,Apple Airpods Headphones,1,150,09/05/19 12:17,"937 13th St, San Francisco, CA 94016" +258147,34in Ultrawide Monitor,1,379.99,09/11/19 16:51,"558 Spruce St, San Francisco, CA 94016" +258148,AA Batteries (4-pack),2,3.84,09/16/19 15:18,"74 Madison St, New York City, NY 10001" +258149,27in 4K Gaming Monitor,1,389.99,09/18/19 12:52,"387 Cherry St, Portland, OR 97035" +258150,AAA Batteries (4-pack),1,2.99,09/08/19 14:09,"141 Chestnut St, Boston, MA 02215" +258151,USB-C Charging Cable,1,11.95,09/15/19 00:26,"912 Lakeview St, Los Angeles, CA 90001" +258152,Wired Headphones,1,11.99,09/06/19 20:56,"208 Willow St, Boston, MA 02215" +258153,AAA Batteries (4-pack),1,2.99,09/17/19 23:04,"739 Elm St, New York City, NY 10001" +258154,AAA Batteries (4-pack),1,2.99,09/27/19 16:47,"293 6th St, San Francisco, CA 94016" +258155,Lightning Charging Cable,1,14.95,09/29/19 18:15,"888 Johnson St, San Francisco, CA 94016" +258156,USB-C Charging Cable,1,11.95,09/11/19 21:45,"97 Chestnut St, Seattle, WA 98101" +258157,Google Phone,1,600,09/06/19 15:48,"962 13th St, Dallas, TX 75001" +258158,34in Ultrawide Monitor,1,379.99,09/10/19 19:46,"666 Lakeview St, Boston, MA 02215" +258159,AAA Batteries (4-pack),2,2.99,09/01/19 10:20,"70 Meadow St, Atlanta, GA 30301" +258160,USB-C Charging Cable,1,11.95,09/16/19 20:57,"655 Spruce St, Los Angeles, CA 90001" +258161,27in 4K Gaming Monitor,1,389.99,09/29/19 13:07,"196 5th St, New York City, NY 10001" +258162,USB-C Charging Cable,1,11.95,09/06/19 21:55,"27 Wilson St, Austin, TX 73301" +258163,ThinkPad Laptop,1,999.99,09/11/19 10:07,"156 Washington St, Los Angeles, CA 90001" +258164,iPhone,1,700,09/11/19 08:37,"573 Spruce St, San Francisco, CA 94016" +258165,Lightning Charging Cable,1,14.95,09/28/19 10:43,"820 River St, Boston, MA 02215" +258166,Wired Headphones,1,11.99,09/06/19 12:02,"423 Hill St, Boston, MA 02215" +258167,USB-C Charging Cable,2,11.95,09/12/19 10:46,"414 Church St, Atlanta, GA 30301" +258168,AA Batteries (4-pack),2,3.84,09/21/19 11:37,"989 12th St, Seattle, WA 98101" +258169,AAA Batteries (4-pack),1,2.99,09/16/19 15:30,"711 Dogwood St, San Francisco, CA 94016" +258170,USB-C Charging Cable,1,11.95,09/08/19 00:50,"727 Elm St, Portland, OR 97035" +258171,Macbook Pro Laptop,1,1700,09/13/19 23:19,"194 South St, Los Angeles, CA 90001" +258172,Bose SoundSport Headphones,1,99.99,09/24/19 20:39,"541 12th St, Boston, MA 02215" +258173,34in Ultrawide Monitor,1,379.99,09/08/19 20:06,"385 Jackson St, Seattle, WA 98101" +258174,AAA Batteries (4-pack),1,2.99,09/14/19 20:27,"420 Main St, Los Angeles, CA 90001" +258175,AAA Batteries (4-pack),1,2.99,09/09/19 21:56,"704 Lincoln St, Seattle, WA 98101" +258176,Apple Airpods Headphones,1,150,09/20/19 22:37,"19 Pine St, Austin, TX 73301" +258177,Lightning Charging Cable,1,14.95,09/21/19 21:56,"418 Chestnut St, Dallas, TX 75001" +258178,Apple Airpods Headphones,1,150,09/08/19 14:07,"456 Spruce St, Portland, OR 97035" +258179,27in 4K Gaming Monitor,1,389.99,09/25/19 13:38,"698 South St, Boston, MA 02215" +258180,Lightning Charging Cable,1,14.95,09/29/19 08:56,"652 Adams St, Atlanta, GA 30301" +258181,Wired Headphones,1,11.99,09/09/19 23:16,"115 2nd St, San Francisco, CA 94016" +258182,USB-C Charging Cable,1,11.95,09/17/19 15:35,"709 Lake St, Los Angeles, CA 90001" +258183,Apple Airpods Headphones,1,150,09/27/19 19:27,"632 Madison St, New York City, NY 10001" +258184,Apple Airpods Headphones,1,150,09/15/19 21:09,"109 2nd St, San Francisco, CA 94016" +258185,27in 4K Gaming Monitor,1,389.99,09/10/19 10:20,"980 Hickory St, Portland, OR 97035" +258186,27in 4K Gaming Monitor,1,389.99,09/04/19 18:51,"275 North St, Atlanta, GA 30301" +258187,Lightning Charging Cable,1,14.95,09/20/19 20:11,"9 Lake St, New York City, NY 10001" +258188,Lightning Charging Cable,1,14.95,09/13/19 14:27,"96 Willow St, New York City, NY 10001" +258189,AAA Batteries (4-pack),1,2.99,09/01/19 11:08,"836 Cedar St, Los Angeles, CA 90001" +258190,Google Phone,1,600,09/05/19 19:44,"397 Dogwood St, Boston, MA 02215" +258191,Apple Airpods Headphones,1,150,09/09/19 12:42,"765 Jefferson St, Los Angeles, CA 90001" +258192,USB-C Charging Cable,1,11.95,09/20/19 12:06,"181 Jefferson St, Dallas, TX 75001" +258193,Bose SoundSport Headphones,1,99.99,09/06/19 23:33,"345 8th St, San Francisco, CA 94016" +258194,27in FHD Monitor,1,149.99,09/09/19 12:44,"864 Lakeview St, Los Angeles, CA 90001" +258195,Lightning Charging Cable,1,14.95,09/17/19 12:39,"487 Spruce St, Atlanta, GA 30301" +258196,Wired Headphones,1,11.99,09/02/19 10:56,"543 Willow St, Portland, OR 97035" +258197,AAA Batteries (4-pack),3,2.99,09/28/19 10:16,"233 Cedar St, San Francisco, CA 94016" +258198,Flatscreen TV,1,300,09/29/19 12:47,"902 Chestnut St, San Francisco, CA 94016" +258199,LG Washing Machine,1,600.0,09/07/19 15:40,"40 Pine St, San Francisco, CA 94016" +258200,Google Phone,1,600,09/12/19 15:48,"738 Adams St, New York City, NY 10001" +258201,USB-C Charging Cable,1,11.95,09/08/19 20:10,"365 River St, Dallas, TX 75001" +258202,Flatscreen TV,1,300,09/24/19 16:13,"357 Meadow St, Austin, TX 73301" +258203,AAA Batteries (4-pack),1,2.99,09/16/19 13:27,"156 South St, San Francisco, CA 94016" +258204,USB-C Charging Cable,2,11.95,09/21/19 17:17,"592 8th St, Atlanta, GA 30301" +258204,AAA Batteries (4-pack),1,2.99,09/21/19 17:17,"592 8th St, Atlanta, GA 30301" +258205,Wired Headphones,1,11.99,09/17/19 20:54,"24 Maple St, New York City, NY 10001" +258206,Wired Headphones,1,11.99,09/02/19 18:28,"15 Sunset St, New York City, NY 10001" +258207,Lightning Charging Cable,1,14.95,09/01/19 12:54,"679 Cedar St, Austin, TX 73301" +258208,AAA Batteries (4-pack),2,2.99,09/23/19 16:23,"905 Cherry St, San Francisco, CA 94016" +258209,AA Batteries (4-pack),1,3.84,09/15/19 11:08,"127 Lincoln St, San Francisco, CA 94016" +258210,27in 4K Gaming Monitor,1,389.99,09/18/19 12:39,"646 Washington St, Seattle, WA 98101" +258211,Apple Airpods Headphones,1,150,09/15/19 14:08,"214 Cherry St, Los Angeles, CA 90001" +258212,Wired Headphones,1,11.99,09/26/19 12:32,"230 Highland St, Los Angeles, CA 90001" +258213,27in FHD Monitor,1,149.99,09/10/19 08:31,"467 Madison St, Boston, MA 02215" +258214,34in Ultrawide Monitor,1,379.99,09/09/19 11:44,"186 Lake St, Seattle, WA 98101" +258215,Google Phone,1,600,09/21/19 07:49,"419 4th St, Dallas, TX 75001" +258216,Bose SoundSport Headphones,1,99.99,09/01/19 15:26,"527 1st St, Los Angeles, CA 90001" +258217,Bose SoundSport Headphones,1,99.99,09/01/19 16:12,"914 River St, Seattle, WA 98101" +258218,Bose SoundSport Headphones,1,99.99,09/13/19 13:24,"220 West St, San Francisco, CA 94016" +258219,USB-C Charging Cable,1,11.95,09/26/19 14:35,"345 Highland St, Atlanta, GA 30301" +258220,Lightning Charging Cable,2,14.95,09/27/19 01:02,"449 Church St, San Francisco, CA 94016" +258221,iPhone,1,700,09/12/19 21:47,"817 Church St, San Francisco, CA 94016" +258221,Lightning Charging Cable,1,14.95,09/12/19 21:47,"817 Church St, San Francisco, CA 94016" +258222,Lightning Charging Cable,1,14.95,09/18/19 01:06,"583 Church St, Boston, MA 02215" +258223,AA Batteries (4-pack),1,3.84,09/22/19 11:03,"617 Johnson St, San Francisco, CA 94016" +258224,AA Batteries (4-pack),1,3.84,09/28/19 13:53,"195 Sunset St, Los Angeles, CA 90001" +258225,LG Dryer,1,600.0,09/29/19 16:25,"985 5th St, Seattle, WA 98101" +258226,USB-C Charging Cable,1,11.95,09/24/19 09:09,"228 Cedar St, Los Angeles, CA 90001" +258227,AAA Batteries (4-pack),2,2.99,09/04/19 09:24,"85 Spruce St, Los Angeles, CA 90001" +258228,Bose SoundSport Headphones,1,99.99,09/06/19 00:09,"609 Cherry St, Atlanta, GA 30301" +258229,34in Ultrawide Monitor,1,379.99,09/03/19 15:14,"351 11th St, Los Angeles, CA 90001" +258230,27in FHD Monitor,1,149.99,09/04/19 20:26,"775 Chestnut St, Seattle, WA 98101" +258231,AAA Batteries (4-pack),1,2.99,09/16/19 01:00,"449 Hickory St, New York City, NY 10001" +258232,Apple Airpods Headphones,1,150,09/15/19 13:55,"470 Chestnut St, Boston, MA 02215" +258233,Macbook Pro Laptop,1,1700,09/12/19 13:25,"289 North St, Portland, OR 97035" +258234,Apple Airpods Headphones,1,150,09/17/19 16:04,"143 Park St, Dallas, TX 75001" +258235,Bose SoundSport Headphones,1,99.99,09/14/19 20:25,"573 7th St, New York City, NY 10001" +258236,34in Ultrawide Monitor,1,379.99,09/17/19 21:14,"966 Jefferson St, San Francisco, CA 94016" +258237,Lightning Charging Cable,2,14.95,09/27/19 00:13,"426 4th St, Los Angeles, CA 90001" +,,,,, +258238,27in FHD Monitor,1,149.99,09/17/19 11:07,"658 Adams St, Atlanta, GA 30301" +258239,Bose SoundSport Headphones,1,99.99,09/06/19 16:49,"208 5th St, San Francisco, CA 94016" +258240,27in 4K Gaming Monitor,1,389.99,09/14/19 22:16,"16 Madison St, Atlanta, GA 30301" +258241,AA Batteries (4-pack),1,3.84,09/09/19 20:23,"117 Hill St, San Francisco, CA 94016" +258242,USB-C Charging Cable,1,11.95,09/16/19 09:10,"329 Willow St, Boston, MA 02215" +258243,Lightning Charging Cable,1,14.95,09/29/19 20:11,"649 Park St, New York City, NY 10001" +258244,AA Batteries (4-pack),1,3.84,09/12/19 18:57,"668 13th St, San Francisco, CA 94016" +258245,Lightning Charging Cable,1,14.95,09/11/19 21:02,"681 Hickory St, Atlanta, GA 30301" +258246,iPhone,1,700,09/11/19 07:13,"620 Cedar St, Dallas, TX 75001" +258247,AAA Batteries (4-pack),1,2.99,09/29/19 21:14,"210 Pine St, San Francisco, CA 94016" +258248,Wired Headphones,1,11.99,09/27/19 19:32,"869 Johnson St, San Francisco, CA 94016" +258249,AA Batteries (4-pack),1,3.84,09/05/19 15:50,"355 Dogwood St, Atlanta, GA 30301" +258250,USB-C Charging Cable,1,11.95,09/06/19 18:07,"414 River St, Los Angeles, CA 90001" +258251,Apple Airpods Headphones,1,150,09/14/19 22:11,"148 Sunset St, San Francisco, CA 94016" +258252,27in 4K Gaming Monitor,1,389.99,09/02/19 18:44,"701 North St, Atlanta, GA 30301" +258253,Lightning Charging Cable,1,14.95,09/17/19 11:38,"873 14th St, Boston, MA 02215" +258254,Apple Airpods Headphones,1,150,09/18/19 12:01,"871 Elm St, Los Angeles, CA 90001" +258255,AA Batteries (4-pack),1,3.84,09/17/19 01:12,"157 Spruce St, Portland, ME 04101" +258256,USB-C Charging Cable,2,11.95,09/05/19 13:31,"610 Ridge St, New York City, NY 10001" +258257,Bose SoundSport Headphones,1,99.99,09/18/19 23:58,"744 Sunset St, Atlanta, GA 30301" +258258,Vareebadd Phone,1,400,09/11/19 13:09,"61 Madison St, San Francisco, CA 94016" +258258,USB-C Charging Cable,1,11.95,09/11/19 13:09,"61 Madison St, San Francisco, CA 94016" +258259,Lightning Charging Cable,1,14.95,09/25/19 16:45,"455 Madison St, San Francisco, CA 94016" +258260,Google Phone,1,600,09/03/19 11:38,"540 12th St, San Francisco, CA 94016" +258261,Lightning Charging Cable,1,14.95,09/18/19 13:56,"29 Johnson St, San Francisco, CA 94016" +258262,USB-C Charging Cable,1,11.95,09/20/19 19:24,"376 Ridge St, Boston, MA 02215" +258263,USB-C Charging Cable,1,11.95,09/18/19 17:00,"441 Meadow St, Seattle, WA 98101" +258264,34in Ultrawide Monitor,1,379.99,09/04/19 16:25,"749 Adams St, Boston, MA 02215" +258265,Bose SoundSport Headphones,1,99.99,09/24/19 23:06,"573 West St, Boston, MA 02215" +258266,Lightning Charging Cable,1,14.95,09/03/19 12:46,"925 North St, San Francisco, CA 94016" +258267,Apple Airpods Headphones,1,150,09/18/19 00:16,"25 7th St, Austin, TX 73301" +258268,iPhone,1,700,09/06/19 00:16,"592 4th St, Atlanta, GA 30301" +258268,Lightning Charging Cable,1,14.95,09/06/19 00:16,"592 4th St, Atlanta, GA 30301" +258269,AAA Batteries (4-pack),1,2.99,09/12/19 20:36,"12 11th St, Los Angeles, CA 90001" +258270,Lightning Charging Cable,1,14.95,09/20/19 22:12,"523 Jackson St, New York City, NY 10001" +258271,20in Monitor,1,109.99,09/06/19 17:39,"72 Maple St, Atlanta, GA 30301" +258272,AA Batteries (4-pack),1,3.84,09/28/19 20:07,"265 Meadow St, New York City, NY 10001" +258272,Apple Airpods Headphones,1,150,09/28/19 20:07,"265 Meadow St, New York City, NY 10001" +258273,Macbook Pro Laptop,1,1700,09/03/19 16:45,"10 14th St, San Francisco, CA 94016" +258274,AAA Batteries (4-pack),1,2.99,09/28/19 19:17,"845 Jackson St, Portland, ME 04101" +258275,iPhone,1,700,09/21/19 08:13,"587 Johnson St, New York City, NY 10001" +258276,Wired Headphones,1,11.99,09/23/19 10:54,"686 Spruce St, Dallas, TX 75001" +258277,Flatscreen TV,1,300,09/05/19 14:00,"551 6th St, San Francisco, CA 94016" +258278,ThinkPad Laptop,1,999.99,09/13/19 10:49,"170 Jefferson St, Boston, MA 02215" +258279,Macbook Pro Laptop,1,1700,09/26/19 11:48,"822 Ridge St, Los Angeles, CA 90001" +258280,20in Monitor,1,109.99,09/14/19 11:22,"153 Sunset St, Los Angeles, CA 90001" +258281,iPhone,1,700,09/27/19 12:29,"736 Lakeview St, Los Angeles, CA 90001" +258282,Google Phone,1,600,09/18/19 23:39,"756 Maple St, Los Angeles, CA 90001" +258283,Bose SoundSport Headphones,1,99.99,09/11/19 21:02,"966 Washington St, New York City, NY 10001" +258284,AA Batteries (4-pack),1,3.84,09/15/19 17:56,"908 Hill St, Seattle, WA 98101" +258285,iPhone,1,700,09/22/19 11:33,"955 Spruce St, Los Angeles, CA 90001" +258285,Apple Airpods Headphones,1,150,09/22/19 11:33,"955 Spruce St, Los Angeles, CA 90001" +258286,AA Batteries (4-pack),1,3.84,09/08/19 08:21,"930 Main St, New York City, NY 10001" +258287,27in FHD Monitor,1,149.99,09/04/19 10:18,"226 Hill St, Atlanta, GA 30301" +258288,20in Monitor,1,109.99,09/07/19 09:19,"622 5th St, Portland, OR 97035" +258289,AAA Batteries (4-pack),1,2.99,09/16/19 09:50,"170 Dogwood St, Atlanta, GA 30301" +258290,USB-C Charging Cable,1,11.95,09/12/19 20:27,"860 Dogwood St, Austin, TX 73301" +258291,AAA Batteries (4-pack),2,2.99,09/23/19 14:31,"392 North St, San Francisco, CA 94016" +258292,USB-C Charging Cable,1,11.95,09/10/19 10:42,"166 Cherry St, Atlanta, GA 30301" +258293,27in 4K Gaming Monitor,1,389.99,09/27/19 20:08,"713 Cedar St, New York City, NY 10001" +258294,AA Batteries (4-pack),2,3.84,09/05/19 23:02,"94 2nd St, Boston, MA 02215" +258295,LG Washing Machine,1,600.0,09/30/19 16:12,"400 1st St, Dallas, TX 75001" +258296,USB-C Charging Cable,2,11.95,09/15/19 12:33,"842 Jefferson St, New York City, NY 10001" +258297,Lightning Charging Cable,1,14.95,09/04/19 17:01,"822 4th St, New York City, NY 10001" +258298,34in Ultrawide Monitor,1,379.99,09/08/19 12:50,"259 Pine St, New York City, NY 10001" +258299,AA Batteries (4-pack),1,3.84,09/05/19 12:22,"495 Adams St, Dallas, TX 75001" +258300,27in FHD Monitor,1,149.99,09/05/19 09:36,"503 Ridge St, San Francisco, CA 94016" +258301,Lightning Charging Cable,1,14.95,09/02/19 19:42,"391 Johnson St, New York City, NY 10001" +258302,Lightning Charging Cable,1,14.95,09/15/19 19:34,"975 Dogwood St, Seattle, WA 98101" +258303,Wired Headphones,1,11.99,09/03/19 21:01,"395 Cedar St, San Francisco, CA 94016" +258304,ThinkPad Laptop,1,999.99,09/07/19 13:27,"821 10th St, Atlanta, GA 30301" +258305,Lightning Charging Cable,1,14.95,09/21/19 22:44,"309 6th St, San Francisco, CA 94016" +258306,USB-C Charging Cable,1,11.95,09/20/19 10:00,"159 Pine St, San Francisco, CA 94016" +258307,Wired Headphones,1,11.99,09/04/19 13:34,"381 Park St, San Francisco, CA 94016" +258308,20in Monitor,1,109.99,09/17/19 20:24,"315 Church St, Atlanta, GA 30301" +258309,Lightning Charging Cable,1,14.95,09/20/19 20:55,"355 Sunset St, San Francisco, CA 94016" +258310,AAA Batteries (4-pack),1,2.99,09/06/19 01:45,"600 River St, Los Angeles, CA 90001" +258311,Macbook Pro Laptop,1,1700,09/28/19 23:25,"115 Adams St, San Francisco, CA 94016" +258312,AAA Batteries (4-pack),1,2.99,09/05/19 15:21,"383 6th St, Los Angeles, CA 90001" +258313,Apple Airpods Headphones,1,150,09/29/19 10:02,"414 Cherry St, San Francisco, CA 94016" +258314,Wired Headphones,1,11.99,09/24/19 12:47,"964 Hill St, Dallas, TX 75001" +258315,Apple Airpods Headphones,1,150,09/05/19 19:20,"862 Johnson St, Atlanta, GA 30301" +258316,Apple Airpods Headphones,1,150,09/05/19 19:07,"672 Park St, Los Angeles, CA 90001" +258317,Wired Headphones,1,11.99,09/07/19 21:02,"120 Church St, Los Angeles, CA 90001" +258318,USB-C Charging Cable,1,11.95,09/02/19 19:03,"569 Sunset St, Boston, MA 02215" +258319,USB-C Charging Cable,1,11.95,09/10/19 13:10,"549 Lake St, Austin, TX 73301" +258320,USB-C Charging Cable,1,11.95,09/16/19 08:11,"294 11th St, San Francisco, CA 94016" +258321,Macbook Pro Laptop,1,1700,09/28/19 23:51,"860 14th St, New York City, NY 10001" +258322,Apple Airpods Headphones,1,150,09/26/19 15:36,"513 11th St, Dallas, TX 75001" +258323,Macbook Pro Laptop,1,1700,09/09/19 12:53,"672 Main St, Los Angeles, CA 90001" +258324,USB-C Charging Cable,1,11.95,09/28/19 16:36,"367 Walnut St, Los Angeles, CA 90001" +258325,Vareebadd Phone,1,400,09/02/19 08:54,"94 Elm St, San Francisco, CA 94016" +258326,Lightning Charging Cable,1,14.95,09/24/19 12:02,"330 2nd St, San Francisco, CA 94016" +258327,Apple Airpods Headphones,1,150,09/15/19 08:36,"229 Pine St, Los Angeles, CA 90001" +258328,Lightning Charging Cable,1,14.95,09/07/19 16:37,"80 Maple St, Portland, OR 97035" +258329,Macbook Pro Laptop,1,1700,09/21/19 09:05,"692 Hill St, New York City, NY 10001" +258330,34in Ultrawide Monitor,1,379.99,09/18/19 20:07,"634 Main St, Dallas, TX 75001" +258331,ThinkPad Laptop,1,999.99,09/19/19 00:17,"847 Hickory St, Los Angeles, CA 90001" +258332,USB-C Charging Cable,2,11.95,09/15/19 17:13,"913 Pine St, Atlanta, GA 30301" +258333,27in 4K Gaming Monitor,1,389.99,09/03/19 20:11,"797 Lake St, Los Angeles, CA 90001" +258334,USB-C Charging Cable,1,11.95,09/06/19 10:04,"221 Park St, San Francisco, CA 94016" +258335,AAA Batteries (4-pack),1,2.99,09/01/19 22:41,"622 Main St, San Francisco, CA 94016" +258336,USB-C Charging Cable,1,11.95,09/18/19 10:42,"865 Jefferson St, Los Angeles, CA 90001" +258337,iPhone,1,700,09/15/19 10:32,"849 Washington St, Boston, MA 02215" +258338,27in FHD Monitor,1,149.99,09/12/19 19:44,"351 4th St, Dallas, TX 75001" +258339,Wired Headphones,1,11.99,09/03/19 05:40,"225 Willow St, Los Angeles, CA 90001" +258340,Bose SoundSport Headphones,1,99.99,09/30/19 14:09,"342 North St, Boston, MA 02215" +258341,Lightning Charging Cable,1,14.95,09/04/19 04:30,"140 Spruce St, Austin, TX 73301" +258342,Wired Headphones,1,11.99,09/16/19 07:35,"492 Main St, Los Angeles, CA 90001" +258343,Bose SoundSport Headphones,1,99.99,09/27/19 12:42,"58 Johnson St, San Francisco, CA 94016" +258344,AAA Batteries (4-pack),1,2.99,09/29/19 19:19,"754 8th St, San Francisco, CA 94016" +258345,27in 4K Gaming Monitor,1,389.99,09/17/19 01:06,"792 Madison St, Portland, OR 97035" +258346,USB-C Charging Cable,1,11.95,09/09/19 11:03,"943 Wilson St, Atlanta, GA 30301" +258346,Lightning Charging Cable,1,14.95,09/09/19 11:03,"943 Wilson St, Atlanta, GA 30301" +258347,USB-C Charging Cable,1,11.95,09/11/19 15:57,"967 Park St, Seattle, WA 98101" +258348,27in 4K Gaming Monitor,1,389.99,09/09/19 15:56,"17 Pine St, Portland, OR 97035" +258349,iPhone,1,700,09/10/19 13:03,"155 West St, San Francisco, CA 94016" +258350,Wired Headphones,2,11.99,09/12/19 05:23,"416 Church St, Dallas, TX 75001" +258350,Bose SoundSport Headphones,1,99.99,09/12/19 05:23,"416 Church St, Dallas, TX 75001" +258351,AAA Batteries (4-pack),1,2.99,09/14/19 17:27,"345 West St, Seattle, WA 98101" +258352,Wired Headphones,1,11.99,09/03/19 13:08,"825 5th St, New York City, NY 10001" +258353,Bose SoundSport Headphones,1,99.99,09/12/19 18:04,"863 9th St, San Francisco, CA 94016" +258354,Flatscreen TV,1,300,09/23/19 12:35,"639 Wilson St, Los Angeles, CA 90001" +258355,AAA Batteries (4-pack),2,2.99,09/17/19 22:12,"832 Elm St, Portland, ME 04101" +258356,Apple Airpods Headphones,1,150,09/20/19 23:07,"314 Lakeview St, Atlanta, GA 30301" +258357,iPhone,1,700,09/30/19 10:58,"652 Wilson St, Los Angeles, CA 90001" +258358,Lightning Charging Cable,1,14.95,09/26/19 21:30,"793 Park St, Dallas, TX 75001" +258359,Flatscreen TV,1,300,09/26/19 06:45,"702 Cedar St, Atlanta, GA 30301" +258360,Apple Airpods Headphones,1,150,09/23/19 22:22,"46 Willow St, Los Angeles, CA 90001" +258361,AAA Batteries (4-pack),2,2.99,09/25/19 10:39,"69 Sunset St, New York City, NY 10001" +258362,Lightning Charging Cable,1,14.95,09/29/19 17:40,"495 Pine St, Austin, TX 73301" +258363,Google Phone,1,600,09/24/19 18:37,"52 Park St, New York City, NY 10001" +258364,AA Batteries (4-pack),1,3.84,09/25/19 12:10,"134 Maple St, Los Angeles, CA 90001" +258365,Wired Headphones,1,11.99,09/07/19 12:08,"477 5th St, Portland, ME 04101" +258366,AAA Batteries (4-pack),1,2.99,09/15/19 23:20,"374 Lake St, San Francisco, CA 94016" +258367,20in Monitor,1,109.99,09/15/19 19:23,"881 Spruce St, New York City, NY 10001" +258368,20in Monitor,1,109.99,09/12/19 10:50,"126 7th St, Boston, MA 02215" +258369,AA Batteries (4-pack),4,3.84,09/26/19 16:16,"261 Willow St, San Francisco, CA 94016" +258370,iPhone,1,700,09/29/19 19:27,"627 Hill St, San Francisco, CA 94016" +258371,27in FHD Monitor,1,149.99,09/05/19 17:01,"832 Hill St, Los Angeles, CA 90001" +258372,Bose SoundSport Headphones,1,99.99,09/29/19 18:11,"220 River St, San Francisco, CA 94016" +258373,AAA Batteries (4-pack),1,2.99,09/10/19 15:04,"726 Madison St, Atlanta, GA 30301" +258374,Lightning Charging Cable,1,14.95,09/19/19 13:51,"986 14th St, Austin, TX 73301" +258375,Apple Airpods Headphones,1,150,09/28/19 22:16,"117 6th St, San Francisco, CA 94016" +258376,Apple Airpods Headphones,1,150,09/10/19 23:13,"535 Madison St, San Francisco, CA 94016" +258377,USB-C Charging Cable,1,11.95,09/29/19 11:43,"729 1st St, Boston, MA 02215" +258378,20in Monitor,1,109.99,09/25/19 11:08,"101 9th St, San Francisco, CA 94016" +258379,Google Phone,1,600,09/23/19 23:20,"771 9th St, New York City, NY 10001" +258379,USB-C Charging Cable,1,11.95,09/23/19 23:20,"771 9th St, New York City, NY 10001" +258380,AA Batteries (4-pack),1,3.84,09/26/19 13:19,"110 5th St, Atlanta, GA 30301" +258381,27in FHD Monitor,1,149.99,09/07/19 06:42,"308 Washington St, San Francisco, CA 94016" +258382,Lightning Charging Cable,1,14.95,09/16/19 12:18,"83 River St, Dallas, TX 75001" +258383,AAA Batteries (4-pack),2,2.99,09/01/19 12:35,"159 Meadow St, Dallas, TX 75001" +258384,Apple Airpods Headphones,1,150,09/08/19 08:49,"741 Willow St, Dallas, TX 75001" +258385,AA Batteries (4-pack),2,3.84,09/05/19 13:50,"423 Main St, San Francisco, CA 94016" +258386,iPhone,1,700,09/25/19 09:17,"813 River St, Boston, MA 02215" +258387,Lightning Charging Cable,1,14.95,09/23/19 14:33,"618 4th St, Dallas, TX 75001" +258388,AA Batteries (4-pack),2,3.84,09/13/19 10:54,"658 1st St, San Francisco, CA 94016" +258389,Apple Airpods Headphones,1,150,09/07/19 18:32,"113 Park St, New York City, NY 10001" +258390,USB-C Charging Cable,1,11.95,09/12/19 20:44,"858 6th St, San Francisco, CA 94016" +258391,AA Batteries (4-pack),1,3.84,09/10/19 16:23,"217 Church St, New York City, NY 10001" +258392,Lightning Charging Cable,1,14.95,09/10/19 13:20,"335 Forest St, Dallas, TX 75001" +258393,AA Batteries (4-pack),1,3.84,09/04/19 17:33,"699 5th St, Los Angeles, CA 90001" +258394,Macbook Pro Laptop,1,1700,09/07/19 11:15,"341 8th St, Seattle, WA 98101" +258395,Apple Airpods Headphones,1,150,09/20/19 19:02,"223 Dogwood St, Los Angeles, CA 90001" +258396,Lightning Charging Cable,1,14.95,09/15/19 17:05,"739 Center St, Dallas, TX 75001" +258397,Wired Headphones,1,11.99,09/17/19 18:46,"142 Johnson St, Atlanta, GA 30301" +258398,34in Ultrawide Monitor,1,379.99,09/18/19 20:41,"705 4th St, New York City, NY 10001" +258399,AA Batteries (4-pack),1,3.84,09/28/19 13:03,"61 Center St, Los Angeles, CA 90001" +258400,iPhone,1,700,09/09/19 11:00,"154 9th St, Atlanta, GA 30301" +258401,Lightning Charging Cable,1,14.95,09/18/19 21:57,"575 Jefferson St, San Francisco, CA 94016" +258402,Flatscreen TV,1,300,09/10/19 20:53,"464 10th St, Los Angeles, CA 90001" +258403,34in Ultrawide Monitor,1,379.99,09/23/19 16:06,"914 Dogwood St, Los Angeles, CA 90001" +258404,Google Phone,1,600,09/18/19 01:50,"74 Maple St, Los Angeles, CA 90001" +258405,AAA Batteries (4-pack),1,2.99,09/06/19 00:30,"975 Hill St, New York City, NY 10001" +258406,34in Ultrawide Monitor,1,379.99,09/29/19 17:49,"930 North St, New York City, NY 10001" +258407,Wired Headphones,1,11.99,09/26/19 13:31,"906 Lakeview St, Atlanta, GA 30301" +258408,Flatscreen TV,1,300,09/04/19 13:11,"14 Chestnut St, Seattle, WA 98101" +258409,Wired Headphones,1,11.99,09/30/19 13:47,"479 12th St, New York City, NY 10001" +258410,Bose SoundSport Headphones,1,99.99,09/21/19 21:24,"873 Lake St, San Francisco, CA 94016" +258411,20in Monitor,1,109.99,09/16/19 20:09,"21 Main St, San Francisco, CA 94016" +258412,Wired Headphones,1,11.99,09/20/19 09:47,"493 Lake St, San Francisco, CA 94016" +258413,Apple Airpods Headphones,1,150,09/23/19 09:59,"862 Elm St, San Francisco, CA 94016" +258414,AAA Batteries (4-pack),4,2.99,09/07/19 06:53,"391 Pine St, Los Angeles, CA 90001" +258415,AA Batteries (4-pack),1,3.84,09/18/19 18:30,"494 Chestnut St, Boston, MA 02215" +258416,Bose SoundSport Headphones,1,99.99,09/19/19 16:58,"592 Ridge St, San Francisco, CA 94016" +258417,iPhone,1,700,09/11/19 22:51,"602 Main St, San Francisco, CA 94016" +258418,Wired Headphones,2,11.99,09/21/19 20:53,"981 South St, Seattle, WA 98101" +258419,Flatscreen TV,1,300,09/14/19 19:43,"123 South St, New York City, NY 10001" +258420,AA Batteries (4-pack),3,3.84,09/09/19 16:38,"636 North St, New York City, NY 10001" +258421,Flatscreen TV,1,300,09/29/19 10:28,"319 Pine St, New York City, NY 10001" +258422,USB-C Charging Cable,1,11.95,09/11/19 09:48,"358 Spruce St, San Francisco, CA 94016" +258423,Macbook Pro Laptop,1,1700,09/08/19 19:30,"861 13th St, Austin, TX 73301" +258424,ThinkPad Laptop,1,999.99,09/08/19 11:51,"768 2nd St, San Francisco, CA 94016" +258425,Lightning Charging Cable,1,14.95,09/22/19 16:54,"80 North St, San Francisco, CA 94016" +258426,Flatscreen TV,1,300,09/12/19 20:32,"203 Church St, Los Angeles, CA 90001" +258427,AA Batteries (4-pack),1,3.84,09/14/19 09:04,"316 Madison St, New York City, NY 10001" +258428,AAA Batteries (4-pack),2,2.99,09/08/19 14:24,"484 Cherry St, New York City, NY 10001" +258429,34in Ultrawide Monitor,1,379.99,09/25/19 23:09,"434 Adams St, San Francisco, CA 94016" +258430,Apple Airpods Headphones,1,150,09/04/19 09:21,"7 Main St, Seattle, WA 98101" +258431,AA Batteries (4-pack),1,3.84,09/18/19 17:06,"908 Madison St, Seattle, WA 98101" +258432,AA Batteries (4-pack),1,3.84,09/28/19 19:10,"614 9th St, Los Angeles, CA 90001" +258433,AA Batteries (4-pack),1,3.84,09/21/19 17:01,"696 1st St, New York City, NY 10001" +258434,AA Batteries (4-pack),1,3.84,09/05/19 17:04,"583 South St, New York City, NY 10001" +258435,Flatscreen TV,1,300,09/17/19 19:02,"9 Pine St, Boston, MA 02215" +258436,Lightning Charging Cable,1,14.95,09/25/19 20:34,"529 Cedar St, Los Angeles, CA 90001" +258437,USB-C Charging Cable,1,11.95,09/05/19 12:11,"990 Walnut St, Portland, ME 04101" +258438,AA Batteries (4-pack),2,3.84,09/13/19 10:12,"973 Lake St, San Francisco, CA 94016" +258439,AAA Batteries (4-pack),2,2.99,09/30/19 21:40,"125 12th St, Boston, MA 02215" +258440,AAA Batteries (4-pack),1,2.99,09/17/19 10:13,"432 Elm St, San Francisco, CA 94016" +258441,Google Phone,1,600,09/11/19 11:43,"947 Cherry St, Austin, TX 73301" +258442,Lightning Charging Cable,1,14.95,09/23/19 10:43,"932 Cedar St, Los Angeles, CA 90001" +258443,USB-C Charging Cable,1,11.95,09/30/19 19:52,"900 Highland St, Seattle, WA 98101" +258444,Flatscreen TV,1,300,09/13/19 11:24,"593 Elm St, Dallas, TX 75001" +258445,AA Batteries (4-pack),1,3.84,09/20/19 08:32,"485 14th St, Los Angeles, CA 90001" +258446,Lightning Charging Cable,1,14.95,09/17/19 15:59,"352 Chestnut St, Boston, MA 02215" +258447,Apple Airpods Headphones,1,150,09/30/19 19:08,"446 Dogwood St, Dallas, TX 75001" +258448,AAA Batteries (4-pack),1,2.99,09/26/19 21:59,"731 12th St, San Francisco, CA 94016" +258449,AAA Batteries (4-pack),3,2.99,09/06/19 18:05,"228 2nd St, San Francisco, CA 94016" +258450,AA Batteries (4-pack),1,3.84,09/14/19 20:56,"470 Chestnut St, Los Angeles, CA 90001" +258451,USB-C Charging Cable,2,11.95,09/23/19 20:42,"883 6th St, San Francisco, CA 94016" +258452,Lightning Charging Cable,1,14.95,09/26/19 08:28,"207 6th St, Atlanta, GA 30301" +258453,AAA Batteries (4-pack),3,2.99,09/24/19 12:40,"271 Jefferson St, New York City, NY 10001" +258454,AA Batteries (4-pack),1,3.84,09/24/19 14:28,"463 Lake St, San Francisco, CA 94016" +258455,Wired Headphones,1,11.99,09/29/19 22:09,"88 9th St, Portland, OR 97035" +258456,Bose SoundSport Headphones,1,99.99,09/09/19 17:03,"86 Washington St, Los Angeles, CA 90001" +258457,Lightning Charging Cable,1,14.95,09/28/19 16:11,"108 6th St, Atlanta, GA 30301" +258458,iPhone,1,700,09/16/19 21:05,"848 Main St, Portland, OR 97035" +258458,Apple Airpods Headphones,1,150,09/16/19 21:05,"848 Main St, Portland, OR 97035" +258459,AAA Batteries (4-pack),1,2.99,09/07/19 17:18,"353 Sunset St, Los Angeles, CA 90001" +258460,AA Batteries (4-pack),1,3.84,09/25/19 10:05,"809 Spruce St, Seattle, WA 98101" +258461,AAA Batteries (4-pack),2,2.99,09/15/19 11:57,"750 Maple St, New York City, NY 10001" +258462,AAA Batteries (4-pack),1,2.99,09/17/19 12:58,"367 South St, San Francisco, CA 94016" +258463,Lightning Charging Cable,1,14.95,09/25/19 15:44,"317 Cherry St, New York City, NY 10001" +258464,Bose SoundSport Headphones,1,99.99,09/03/19 18:38,"824 Chestnut St, San Francisco, CA 94016" +258464,AA Batteries (4-pack),1,3.84,09/03/19 18:38,"824 Chestnut St, San Francisco, CA 94016" +258465,Wired Headphones,1,11.99,09/29/19 18:36,"681 Lakeview St, Los Angeles, CA 90001" +258466,Apple Airpods Headphones,1,150,09/26/19 13:23,"944 Dogwood St, San Francisco, CA 94016" +258467,20in Monitor,1,109.99,09/25/19 12:18,"776 Hill St, Los Angeles, CA 90001" +258468,AAA Batteries (4-pack),2,2.99,09/07/19 21:10,"778 West St, New York City, NY 10001" +258469,Lightning Charging Cable,1,14.95,09/16/19 19:18,"483 Lakeview St, Atlanta, GA 30301" +258470,AA Batteries (4-pack),2,3.84,09/11/19 19:05,"117 Main St, San Francisco, CA 94016" +258471,Lightning Charging Cable,2,14.95,09/17/19 17:09,"845 Maple St, Los Angeles, CA 90001" +258472,USB-C Charging Cable,1,11.95,09/08/19 13:59,"284 2nd St, San Francisco, CA 94016" +258473,Wired Headphones,1,11.99,09/06/19 21:00,"673 South St, Boston, MA 02215" +258474,Apple Airpods Headphones,1,150,09/24/19 20:05,"834 Ridge St, San Francisco, CA 94016" +258475,27in 4K Gaming Monitor,1,389.99,09/28/19 21:35,"554 Church St, Portland, OR 97035" +258476,27in 4K Gaming Monitor,1,389.99,09/26/19 22:51,"491 Wilson St, Los Angeles, CA 90001" +258477,Bose SoundSport Headphones,1,99.99,09/15/19 20:24,"920 13th St, Seattle, WA 98101" +258478,Apple Airpods Headphones,2,150,09/28/19 07:17,"175 Sunset St, San Francisco, CA 94016" +258479,Macbook Pro Laptop,1,1700,09/13/19 14:40,"322 Chestnut St, San Francisco, CA 94016" +258480,USB-C Charging Cable,1,11.95,09/08/19 23:49,"938 10th St, Austin, TX 73301" +258481,AAA Batteries (4-pack),2,2.99,09/22/19 10:50,"4 4th St, Portland, OR 97035" +258482,AAA Batteries (4-pack),1,2.99,09/09/19 14:50,"932 4th St, New York City, NY 10001" +258483,AA Batteries (4-pack),1,3.84,09/17/19 17:26,"867 Lake St, Boston, MA 02215" +258483,Lightning Charging Cable,1,14.95,09/17/19 17:26,"867 Lake St, Boston, MA 02215" +258484,AAA Batteries (4-pack),1,2.99,09/17/19 10:28,"781 Meadow St, Atlanta, GA 30301" +258485,27in FHD Monitor,1,149.99,09/27/19 21:26,"317 Park St, Boston, MA 02215" +258486,27in FHD Monitor,1,149.99,09/02/19 21:13,"306 Sunset St, New York City, NY 10001" +258487,Lightning Charging Cable,1,14.95,09/20/19 12:37,"666 Church St, New York City, NY 10001" +258488,USB-C Charging Cable,1,11.95,09/19/19 09:39,"165 West St, Dallas, TX 75001" +258489,Macbook Pro Laptop,1,1700,09/17/19 17:22,"503 West St, Portland, ME 04101" +258490,AAA Batteries (4-pack),2,2.99,09/29/19 15:06,"628 Forest St, San Francisco, CA 94016" +258491,Flatscreen TV,1,300,09/26/19 12:14,"262 11th St, New York City, NY 10001" +258492,Bose SoundSport Headphones,1,99.99,09/25/19 19:24,"689 2nd St, Boston, MA 02215" +258493,USB-C Charging Cable,1,11.95,09/14/19 02:15,"993 Dogwood St, Atlanta, GA 30301" +258494,Wired Headphones,1,11.99,09/18/19 18:15,"177 Ridge St, Atlanta, GA 30301" +258495,AA Batteries (4-pack),1,3.84,09/10/19 12:30,"870 Cedar St, Austin, TX 73301" +258496,Lightning Charging Cable,1,14.95,09/07/19 12:46,"145 Center St, Dallas, TX 75001" +258497,Google Phone,1,600,09/07/19 16:20,"744 Forest St, San Francisco, CA 94016" +258498,34in Ultrawide Monitor,1,379.99,09/10/19 15:13,"388 7th St, Dallas, TX 75001" +258499,Lightning Charging Cable,1,14.95,09/19/19 18:01,"957 Highland St, San Francisco, CA 94016" +258500,AA Batteries (4-pack),1,3.84,09/03/19 14:44,"741 4th St, Boston, MA 02215" +258501,34in Ultrawide Monitor,1,379.99,09/30/19 09:08,"574 1st St, San Francisco, CA 94016" +258502,20in Monitor,1,109.99,09/29/19 23:07,"97 North St, Los Angeles, CA 90001" +258503,Lightning Charging Cable,2,14.95,09/15/19 10:05,"869 Madison St, New York City, NY 10001" +258504,Apple Airpods Headphones,1,150,09/09/19 22:26,"340 5th St, San Francisco, CA 94016" +258505,AAA Batteries (4-pack),1,2.99,09/29/19 10:05,"845 Sunset St, Seattle, WA 98101" +258506,Bose SoundSport Headphones,1,99.99,09/28/19 06:34,"358 Walnut St, New York City, NY 10001" +258507,27in FHD Monitor,1,149.99,09/24/19 16:08,"390 South St, Boston, MA 02215" +258508,AA Batteries (4-pack),2,3.84,09/15/19 09:53,"380 Park St, Seattle, WA 98101" +258509,AA Batteries (4-pack),1,3.84,09/11/19 06:20,"12 13th St, San Francisco, CA 94016" +258510,Google Phone,1,600,09/26/19 13:29,"435 2nd St, San Francisco, CA 94016" +258511,Lightning Charging Cable,1,14.95,09/12/19 23:05,"883 5th St, San Francisco, CA 94016" +258512,Macbook Pro Laptop,1,1700,09/06/19 15:19,"230 Pine St, Dallas, TX 75001" +258513,ThinkPad Laptop,1,999.99,09/06/19 14:01,"882 Lake St, Austin, TX 73301" +258514,Lightning Charging Cable,1,14.95,09/20/19 19:01,"196 Meadow St, New York City, NY 10001" +258515,27in FHD Monitor,1,149.99,09/25/19 19:33,"229 Wilson St, Dallas, TX 75001" +258516,Wired Headphones,2,11.99,09/10/19 17:07,"432 Wilson St, Los Angeles, CA 90001" +258517,USB-C Charging Cable,1,11.95,09/23/19 19:06,"867 Adams St, Boston, MA 02215" +258518,AAA Batteries (4-pack),2,2.99,09/20/19 14:26,"740 Center St, Los Angeles, CA 90001" +258519,Wired Headphones,1,11.99,09/20/19 15:06,"276 Washington St, Austin, TX 73301" +258520,USB-C Charging Cable,1,11.95,09/19/19 19:29,"577 Willow St, Austin, TX 73301" +258521,Flatscreen TV,1,300,09/06/19 15:52,"14 4th St, San Francisco, CA 94016" +258522,AA Batteries (4-pack),1,3.84,09/21/19 12:23,"308 Forest St, Los Angeles, CA 90001" +258523,AAA Batteries (4-pack),1,2.99,09/18/19 21:22,"952 Cherry St, San Francisco, CA 94016" +258524,20in Monitor,1,109.99,09/25/19 13:16,"705 14th St, Boston, MA 02215" +258525,USB-C Charging Cable,1,11.95,09/15/19 21:28,"992 7th St, Dallas, TX 75001" +258526,USB-C Charging Cable,1,11.95,09/03/19 06:38,"982 1st St, Atlanta, GA 30301" +258527,Lightning Charging Cable,1,14.95,09/04/19 23:25,"603 5th St, Boston, MA 02215" +258528,USB-C Charging Cable,1,11.95,09/04/19 11:17,"548 Dogwood St, San Francisco, CA 94016" +258529,USB-C Charging Cable,1,11.95,09/19/19 07:33,"301 Park St, San Francisco, CA 94016" +258530,ThinkPad Laptop,1,999.99,09/18/19 10:37,"776 Madison St, Boston, MA 02215" +258531,Vareebadd Phone,1,400,09/05/19 21:42,"838 12th St, Portland, ME 04101" +258532,27in 4K Gaming Monitor,1,389.99,09/16/19 13:16,"730 8th St, Dallas, TX 75001" +258533,34in Ultrawide Monitor,1,379.99,09/22/19 05:43,"800 Walnut St, San Francisco, CA 94016" +258534,34in Ultrawide Monitor,1,379.99,09/12/19 17:41,"774 Forest St, San Francisco, CA 94016" +258535,Bose SoundSport Headphones,1,99.99,09/04/19 22:23,"106 West St, San Francisco, CA 94016" +258535,Lightning Charging Cable,1,14.95,09/04/19 22:23,"106 West St, San Francisco, CA 94016" +258536,Apple Airpods Headphones,1,150,09/19/19 13:43,"683 River St, Seattle, WA 98101" +258537,Apple Airpods Headphones,1,150,09/06/19 17:42,"588 Jackson St, Austin, TX 73301" +258538,27in 4K Gaming Monitor,1,389.99,09/26/19 08:11,"369 6th St, Los Angeles, CA 90001" +258539,Apple Airpods Headphones,2,150,09/23/19 17:17,"186 Main St, Los Angeles, CA 90001" +258540,27in FHD Monitor,1,149.99,09/04/19 11:49,"909 Cedar St, Austin, TX 73301" +258541,USB-C Charging Cable,1,11.95,10/01/19 00:39,"263 13th St, New York City, NY 10001" +258542,27in FHD Monitor,1,149.99,09/09/19 22:29,"597 Hill St, San Francisco, CA 94016" +258543,27in FHD Monitor,1,149.99,09/25/19 20:41,"587 Lincoln St, Portland, OR 97035" +258544,34in Ultrawide Monitor,1,379.99,09/24/19 13:03,"749 1st St, San Francisco, CA 94016" +258545,USB-C Charging Cable,1,11.95,09/13/19 14:25,"97 North St, San Francisco, CA 94016" +258546,Wired Headphones,1,11.99,09/14/19 14:02,"131 Forest St, Austin, TX 73301" +258547,Lightning Charging Cable,1,14.95,09/27/19 10:28,"904 7th St, Seattle, WA 98101" +258548,Lightning Charging Cable,1,14.95,09/24/19 12:30,"947 6th St, Atlanta, GA 30301" +258549,Apple Airpods Headphones,1,150,09/30/19 14:35,"624 5th St, San Francisco, CA 94016" +258550,Wired Headphones,1,11.99,09/12/19 14:39,"825 10th St, Los Angeles, CA 90001" +258551,USB-C Charging Cable,1,11.95,09/22/19 18:23,"860 12th St, Los Angeles, CA 90001" +258552,iPhone,1,700,09/29/19 12:34,"721 Willow St, New York City, NY 10001" +258553,Wired Headphones,1,11.99,09/07/19 18:53,"928 Jackson St, Los Angeles, CA 90001" +258554,Lightning Charging Cable,1,14.95,09/22/19 18:38,"473 8th St, San Francisco, CA 94016" +258555,AAA Batteries (4-pack),1,2.99,09/23/19 17:22,"571 4th St, San Francisco, CA 94016" +258556,Google Phone,1,600,09/21/19 22:13,"769 Madison St, San Francisco, CA 94016" +258557,Wired Headphones,1,11.99,09/17/19 19:00,"698 Park St, San Francisco, CA 94016" +258558,AAA Batteries (4-pack),2,2.99,09/22/19 01:32,"508 1st St, Boston, MA 02215" +258559,Wired Headphones,1,11.99,09/09/19 10:48,"40 8th St, Seattle, WA 98101" +258560,Google Phone,1,600,09/25/19 09:23,"584 11th St, Dallas, TX 75001" +258561,AA Batteries (4-pack),1,3.84,09/24/19 18:37,"54 Forest St, Los Angeles, CA 90001" +258562,Apple Airpods Headphones,1,150,09/08/19 14:29,"177 6th St, Austin, TX 73301" +258563,USB-C Charging Cable,2,11.95,09/09/19 20:42,"946 8th St, San Francisco, CA 94016" +258564,AA Batteries (4-pack),1,3.84,09/15/19 15:19,"649 Lincoln St, New York City, NY 10001" +258565,Apple Airpods Headphones,1,150,09/18/19 21:58,"851 North St, San Francisco, CA 94016" +258566,Apple Airpods Headphones,1,150,09/04/19 21:38,"14 Madison St, Los Angeles, CA 90001" +258567,Bose SoundSport Headphones,1,99.99,09/01/19 08:42,"97 Ridge St, Portland, OR 97035" +258568,Google Phone,1,600,09/15/19 10:11,"847 12th St, New York City, NY 10001" +258569,AAA Batteries (4-pack),1,2.99,09/12/19 18:03,"184 Chestnut St, New York City, NY 10001" +258570,ThinkPad Laptop,1,999.99,09/14/19 16:52,"222 North St, New York City, NY 10001" +258571,ThinkPad Laptop,1,999.99,09/11/19 10:36,"779 9th St, New York City, NY 10001" +258572,Apple Airpods Headphones,1,150,09/15/19 18:31,"242 Maple St, New York City, NY 10001" +258573,Macbook Pro Laptop,1,1700,09/01/19 21:10,"989 7th St, San Francisco, CA 94016" +258574,27in FHD Monitor,1,149.99,09/28/19 20:02,"487 Maple St, New York City, NY 10001" +258575,USB-C Charging Cable,1,11.95,09/08/19 13:26,"739 8th St, Los Angeles, CA 90001" +258576,LG Washing Machine,1,600.0,09/12/19 11:01,"485 Lincoln St, Portland, OR 97035" +258577,USB-C Charging Cable,3,11.95,09/26/19 09:16,"648 Church St, Austin, TX 73301" +258578,AAA Batteries (4-pack),2,2.99,09/23/19 06:47,"162 Sunset St, Boston, MA 02215" +258579,Wired Headphones,1,11.99,09/28/19 11:33,"936 Highland St, Boston, MA 02215" +258580,USB-C Charging Cable,1,11.95,09/21/19 10:49,"259 Cherry St, Dallas, TX 75001" +258581,AAA Batteries (4-pack),1,2.99,09/27/19 01:33,"847 Adams St, Los Angeles, CA 90001" +258582,34in Ultrawide Monitor,1,379.99,09/12/19 08:46,"467 Cedar St, New York City, NY 10001" +258583,AAA Batteries (4-pack),1,2.99,09/27/19 11:40,"801 9th St, San Francisco, CA 94016" +258584,Bose SoundSport Headphones,1,99.99,09/16/19 18:07,"362 Hill St, Los Angeles, CA 90001" +258585,AAA Batteries (4-pack),5,2.99,09/17/19 20:24,"895 Church St, Los Angeles, CA 90001" +258586,AA Batteries (4-pack),1,3.84,09/28/19 15:38,"782 8th St, New York City, NY 10001" +258587,Lightning Charging Cable,2,14.95,09/16/19 12:33,"167 7th St, New York City, NY 10001" +258588,Wired Headphones,1,11.99,09/24/19 19:22,"861 Cherry St, San Francisco, CA 94016" +258589,USB-C Charging Cable,2,11.95,09/07/19 16:57,"181 Hickory St, New York City, NY 10001" +258590,Apple Airpods Headphones,1,150,09/18/19 10:49,"890 7th St, Seattle, WA 98101" +258591,Macbook Pro Laptop,1,1700,09/21/19 14:34,"557 North St, Atlanta, GA 30301" +258592,AAA Batteries (4-pack),2,2.99,09/14/19 19:20,"523 7th St, Los Angeles, CA 90001" +258593,AAA Batteries (4-pack),2,2.99,09/10/19 22:58,"49 Sunset St, Los Angeles, CA 90001" +258594,AA Batteries (4-pack),1,3.84,09/22/19 20:59,"319 Center St, San Francisco, CA 94016" +258595,Wired Headphones,1,11.99,09/29/19 10:34,"672 North St, Seattle, WA 98101" +258596,Wired Headphones,1,11.99,09/23/19 11:20,"789 North St, Portland, OR 97035" +258597,AA Batteries (4-pack),2,3.84,09/23/19 16:49,"471 Hill St, San Francisco, CA 94016" +258598,USB-C Charging Cable,1,11.95,09/27/19 06:42,"511 Jackson St, Boston, MA 02215" +258599,Bose SoundSport Headphones,1,99.99,09/01/19 20:47,"357 10th St, San Francisco, CA 94016" +258600,ThinkPad Laptop,1,999.99,09/06/19 13:16,"547 8th St, Seattle, WA 98101" +258601,Lightning Charging Cable,1,14.95,09/15/19 20:41,"820 10th St, Boston, MA 02215" +258602,AAA Batteries (4-pack),3,2.99,09/30/19 21:20,"292 12th St, New York City, NY 10001" +258603,AA Batteries (4-pack),1,3.84,09/22/19 19:57,"204 12th St, Seattle, WA 98101" +258604,Lightning Charging Cable,1,14.95,09/08/19 03:34,"407 Dogwood St, San Francisco, CA 94016" +258605,Bose SoundSport Headphones,1,99.99,09/13/19 18:18,"840 River St, Los Angeles, CA 90001" +258606,AAA Batteries (4-pack),1,2.99,09/19/19 07:29,"131 Chestnut St, San Francisco, CA 94016" +258607,Apple Airpods Headphones,1,150,09/18/19 08:06,"862 4th St, Portland, OR 97035" +258608,Apple Airpods Headphones,1,150,09/03/19 16:00,"104 Dogwood St, Austin, TX 73301" +258609,Bose SoundSport Headphones,1,99.99,09/14/19 15:21,"547 South St, San Francisco, CA 94016" +258609,AAA Batteries (4-pack),1,2.99,09/14/19 15:21,"547 South St, San Francisco, CA 94016" +258610,34in Ultrawide Monitor,1,379.99,09/24/19 20:29,"93 7th St, Seattle, WA 98101" +258611,USB-C Charging Cable,1,11.95,09/25/19 02:21,"870 Walnut St, Los Angeles, CA 90001" +258612,Lightning Charging Cable,1,14.95,09/17/19 17:18,"628 North St, Atlanta, GA 30301" +258613,Google Phone,1,600,09/10/19 18:43,"237 Main St, San Francisco, CA 94016" +258614,AAA Batteries (4-pack),2,2.99,09/16/19 11:14,"670 South St, Los Angeles, CA 90001" +258615,Flatscreen TV,1,300,09/09/19 12:48,"252 7th St, Austin, TX 73301" +,,,,, +258616,Apple Airpods Headphones,1,150,09/22/19 11:32,"603 4th St, Los Angeles, CA 90001" +258617,AAA Batteries (4-pack),3,2.99,09/27/19 17:00,"352 South St, Boston, MA 02215" +258618,USB-C Charging Cable,1,11.95,09/14/19 17:50,"584 Dogwood St, Seattle, WA 98101" +258619,Lightning Charging Cable,1,14.95,09/17/19 12:28,"860 Adams St, Dallas, TX 75001" +258620,Wired Headphones,1,11.99,09/17/19 16:09,"313 Jefferson St, Atlanta, GA 30301" +258621,AAA Batteries (4-pack),1,2.99,09/04/19 16:17,"738 13th St, San Francisco, CA 94016" +258622,Wired Headphones,1,11.99,09/19/19 07:29,"43 Center St, Los Angeles, CA 90001" +258623,Macbook Pro Laptop,1,1700,09/07/19 16:21,"9 2nd St, San Francisco, CA 94016" +258624,Wired Headphones,1,11.99,09/09/19 19:09,"161 Jefferson St, Los Angeles, CA 90001" +258625,AAA Batteries (4-pack),4,2.99,09/26/19 16:18,"732 Dogwood St, New York City, NY 10001" +258626,Bose SoundSport Headphones,1,99.99,09/03/19 15:48,"962 Washington St, Dallas, TX 75001" +258627,Lightning Charging Cable,1,14.95,09/09/19 07:40,"993 Spruce St, New York City, NY 10001" +258628,USB-C Charging Cable,1,11.95,09/21/19 18:42,"636 Maple St, Dallas, TX 75001" +258629,Lightning Charging Cable,1,14.95,09/06/19 12:47,"395 11th St, New York City, NY 10001" +258630,iPhone,1,700,09/02/19 18:37,"325 Sunset St, Portland, OR 97035" +258631,Lightning Charging Cable,1,14.95,09/16/19 20:24,"759 9th St, Seattle, WA 98101" +258632,AA Batteries (4-pack),1,3.84,09/13/19 16:50,"544 Maple St, Atlanta, GA 30301" +258633,AAA Batteries (4-pack),1,2.99,09/10/19 19:23,"31 Lakeview St, San Francisco, CA 94016" +258634,USB-C Charging Cable,2,11.95,09/19/19 16:59,"180 Center St, Dallas, TX 75001" +258635,Flatscreen TV,1,300,09/24/19 12:30,"544 Sunset St, San Francisco, CA 94016" +258636,USB-C Charging Cable,1,11.95,09/29/19 18:05,"380 10th St, New York City, NY 10001" +258637,Apple Airpods Headphones,1,150,09/04/19 13:08,"18 1st St, New York City, NY 10001" +258638,Wired Headphones,1,11.99,09/01/19 18:20,"355 10th St, Los Angeles, CA 90001" +258639,Lightning Charging Cable,1,14.95,09/18/19 18:45,"393 North St, Dallas, TX 75001" +258640,Bose SoundSport Headphones,1,99.99,09/16/19 13:45,"172 Meadow St, Los Angeles, CA 90001" +258641,Google Phone,1,600,09/02/19 17:30,"724 10th St, New York City, NY 10001" +258642,27in FHD Monitor,1,149.99,09/11/19 23:44,"759 South St, Dallas, TX 75001" +258643,Apple Airpods Headphones,1,150,09/05/19 20:14,"489 Hickory St, Dallas, TX 75001" +258644,ThinkPad Laptop,1,999.99,09/09/19 15:55,"915 Ridge St, New York City, NY 10001" +258645,Wired Headphones,1,11.99,09/15/19 10:15,"853 Willow St, San Francisco, CA 94016" +258646,AA Batteries (4-pack),1,3.84,09/18/19 08:41,"912 2nd St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +258647,Lightning Charging Cable,1,14.95,09/08/19 12:59,"694 Chestnut St, Seattle, WA 98101" +258648,Bose SoundSport Headphones,1,99.99,09/24/19 20:21,"117 West St, Boston, MA 02215" +258649,USB-C Charging Cable,1,11.95,09/11/19 15:07,"205 Cedar St, Portland, OR 97035" +258650,20in Monitor,1,109.99,09/23/19 13:02,"368 Dogwood St, San Francisco, CA 94016" +258651,34in Ultrawide Monitor,1,379.99,09/15/19 13:05,"905 Washington St, San Francisco, CA 94016" +258651,USB-C Charging Cable,1,11.95,09/15/19 13:05,"905 Washington St, San Francisco, CA 94016" +258652,Lightning Charging Cable,1,14.95,09/22/19 18:17,"864 Elm St, Boston, MA 02215" +258653,Bose SoundSport Headphones,1,99.99,09/01/19 13:37,"361 Jackson St, Boston, MA 02215" +258653,AAA Batteries (4-pack),2,2.99,09/01/19 13:37,"361 Jackson St, Boston, MA 02215" +258654,AA Batteries (4-pack),1,3.84,09/12/19 18:33,"549 Lakeview St, San Francisco, CA 94016" +258655,Google Phone,1,600,09/02/19 20:54,"690 10th St, Boston, MA 02215" +258656,Vareebadd Phone,1,400,09/07/19 16:38,"56 Hill St, Boston, MA 02215" +258656,Bose SoundSport Headphones,1,99.99,09/07/19 16:38,"56 Hill St, Boston, MA 02215" +258657,ThinkPad Laptop,1,999.99,09/27/19 23:50,"806 Wilson St, Dallas, TX 75001" +258658,Apple Airpods Headphones,1,150,09/26/19 10:46,"321 14th St, San Francisco, CA 94016" +258659,Flatscreen TV,1,300,09/21/19 14:10,"660 Jefferson St, New York City, NY 10001" +258660,Flatscreen TV,1,300,09/09/19 10:47,"874 Dogwood St, Los Angeles, CA 90001" +258661,Macbook Pro Laptop,1,1700,09/14/19 01:13,"539 11th St, San Francisco, CA 94016" +258662,Wired Headphones,1,11.99,09/23/19 09:51,"37 2nd St, New York City, NY 10001" +258663,Google Phone,1,600,09/21/19 15:32,"655 Hickory St, Los Angeles, CA 90001" +258663,USB-C Charging Cable,1,11.95,09/21/19 15:32,"655 Hickory St, Los Angeles, CA 90001" +258664,Wired Headphones,1,11.99,09/19/19 15:44,"79 Lincoln St, Los Angeles, CA 90001" +258665,27in FHD Monitor,1,149.99,09/09/19 14:20,"48 Pine St, New York City, NY 10001" +258666,27in FHD Monitor,1,149.99,09/27/19 17:55,"435 Cherry St, New York City, NY 10001" +258667,27in 4K Gaming Monitor,1,389.99,09/29/19 21:25,"826 Hickory St, Austin, TX 73301" +258668,Bose SoundSport Headphones,1,99.99,09/28/19 17:28,"362 8th St, Portland, OR 97035" +258669,20in Monitor,1,109.99,09/23/19 15:21,"457 Forest St, San Francisco, CA 94016" +258670,ThinkPad Laptop,1,999.99,09/20/19 13:12,"23 River St, San Francisco, CA 94016" +258671,Bose SoundSport Headphones,1,99.99,09/10/19 18:11,"256 Highland St, San Francisco, CA 94016" +258672,Vareebadd Phone,1,400,09/02/19 18:38,"970 Center St, New York City, NY 10001" +258673,Apple Airpods Headphones,1,150,09/19/19 21:51,"448 Ridge St, Seattle, WA 98101" +258674,USB-C Charging Cable,1,11.95,09/27/19 18:10,"849 North St, San Francisco, CA 94016" +258675,Wired Headphones,1,11.99,09/28/19 13:01,"264 Pine St, Dallas, TX 75001" +258676,Bose SoundSport Headphones,1,99.99,09/29/19 09:10,"88 Meadow St, Dallas, TX 75001" +258677,USB-C Charging Cable,1,11.95,09/27/19 11:40,"860 Hill St, San Francisco, CA 94016" +258678,AA Batteries (4-pack),3,3.84,09/14/19 17:09,"268 Lincoln St, Boston, MA 02215" +258679,Lightning Charging Cable,1,14.95,09/12/19 09:48,"359 12th St, San Francisco, CA 94016" +258680,USB-C Charging Cable,1,11.95,09/19/19 14:44,"630 Sunset St, Seattle, WA 98101" +258681,AAA Batteries (4-pack),1,2.99,09/12/19 18:18,"789 2nd St, Austin, TX 73301" +258682,Apple Airpods Headphones,1,150,09/06/19 08:12,"321 6th St, San Francisco, CA 94016" +258683,20in Monitor,1,109.99,09/17/19 18:27,"338 14th St, Atlanta, GA 30301" +258684,Wired Headphones,1,11.99,09/29/19 15:08,"802 West St, Atlanta, GA 30301" +258685,Lightning Charging Cable,1,14.95,09/03/19 14:03,"540 4th St, San Francisco, CA 94016" +258686,Lightning Charging Cable,1,14.95,09/13/19 18:52,"225 Maple St, Seattle, WA 98101" +258687,20in Monitor,1,109.99,09/20/19 18:43,"177 10th St, Los Angeles, CA 90001" +258688,Apple Airpods Headphones,1,150,09/17/19 11:10,"790 River St, Atlanta, GA 30301" +258689,Bose SoundSport Headphones,1,99.99,09/23/19 20:02,"429 4th St, Seattle, WA 98101" +258690,Wired Headphones,1,11.99,09/09/19 11:44,"428 Park St, Los Angeles, CA 90001" +258691,USB-C Charging Cable,2,11.95,09/06/19 21:58,"803 Lincoln St, Boston, MA 02215" +258692,AAA Batteries (4-pack),1,2.99,09/26/19 14:09,"897 Madison St, Austin, TX 73301" +258693,Lightning Charging Cable,1,14.95,09/26/19 11:37,"604 West St, Los Angeles, CA 90001" +258694,AAA Batteries (4-pack),2,2.99,09/05/19 10:25,"32 Maple St, Austin, TX 73301" +258695,Wired Headphones,1,11.99,09/06/19 13:11,"577 14th St, San Francisco, CA 94016" +258696,Lightning Charging Cable,1,14.95,09/05/19 00:01,"684 Lakeview St, Boston, MA 02215" +258697,USB-C Charging Cable,1,11.95,09/02/19 00:55,"101 Adams St, San Francisco, CA 94016" +258698,AAA Batteries (4-pack),1,2.99,09/06/19 13:49,"460 North St, Seattle, WA 98101" +258699,USB-C Charging Cable,1,11.95,09/28/19 16:49,"9 8th St, Los Angeles, CA 90001" +258700,AA Batteries (4-pack),1,3.84,09/05/19 18:17,"553 Park St, San Francisco, CA 94016" +258701,Wired Headphones,1,11.99,09/22/19 13:48,"618 10th St, San Francisco, CA 94016" +258702,Wired Headphones,2,11.99,09/25/19 17:22,"409 14th St, Portland, OR 97035" +258703,Bose SoundSport Headphones,1,99.99,09/25/19 18:44,"144 West St, Dallas, TX 75001" +258704,Apple Airpods Headphones,1,150,09/26/19 00:11,"332 2nd St, New York City, NY 10001" +258705,AA Batteries (4-pack),4,3.84,09/20/19 16:12,"705 Chestnut St, Dallas, TX 75001" +258706,AA Batteries (4-pack),1,3.84,09/30/19 01:48,"720 Meadow St, New York City, NY 10001" +258707,Apple Airpods Headphones,1,150,09/23/19 16:55,"758 Cherry St, New York City, NY 10001" +258708,Apple Airpods Headphones,1,150,09/10/19 19:04,"150 Jackson St, Boston, MA 02215" +258708,Bose SoundSport Headphones,1,99.99,09/10/19 19:04,"150 Jackson St, Boston, MA 02215" +258709,AA Batteries (4-pack),3,3.84,09/14/19 23:24,"721 South St, New York City, NY 10001" +258710,AA Batteries (4-pack),2,3.84,09/30/19 06:29,"206 9th St, Atlanta, GA 30301" +258711,Macbook Pro Laptop,1,1700,09/26/19 21:10,"2 Hickory St, San Francisco, CA 94016" +258712,iPhone,1,700,09/04/19 11:25,"733 Washington St, New York City, NY 10001" +258713,AA Batteries (4-pack),1,3.84,09/06/19 12:20,"863 Elm St, Atlanta, GA 30301" +258714,Bose SoundSport Headphones,1,99.99,09/20/19 18:02,"191 5th St, New York City, NY 10001" +258715,AAA Batteries (4-pack),3,2.99,09/23/19 06:21,"567 Highland St, Dallas, TX 75001" +258716,AAA Batteries (4-pack),1,2.99,09/04/19 17:34,"117 11th St, Portland, OR 97035" +258717,AAA Batteries (4-pack),3,2.99,09/02/19 21:14,"797 14th St, New York City, NY 10001" +258718,27in 4K Gaming Monitor,1,389.99,09/16/19 17:28,"671 7th St, San Francisco, CA 94016" +258719,AA Batteries (4-pack),1,3.84,09/10/19 10:38,"533 Church St, Portland, ME 04101" +258720,AAA Batteries (4-pack),1,2.99,09/19/19 09:11,"414 Washington St, San Francisco, CA 94016" +258721,27in 4K Gaming Monitor,1,389.99,09/11/19 11:40,"725 Main St, Los Angeles, CA 90001" +258722,Wired Headphones,1,11.99,09/22/19 10:48,"912 9th St, Los Angeles, CA 90001" +258723,Wired Headphones,1,11.99,09/25/19 21:41,"619 1st St, Los Angeles, CA 90001" +258724,Wired Headphones,1,11.99,09/29/19 21:37,"267 Cherry St, Boston, MA 02215" +258725,AAA Batteries (4-pack),1,2.99,09/29/19 00:29,"607 10th St, Boston, MA 02215" +258726,Apple Airpods Headphones,1,150,09/03/19 14:47,"305 Johnson St, Los Angeles, CA 90001" +258727,AA Batteries (4-pack),1,3.84,09/23/19 20:29,"709 2nd St, San Francisco, CA 94016" +258728,Wired Headphones,1,11.99,09/13/19 16:48,"228 Ridge St, Seattle, WA 98101" +258729,Macbook Pro Laptop,1,1700,09/22/19 16:03,"474 Church St, Austin, TX 73301" +258730,iPhone,1,700,09/21/19 19:37,"154 Hill St, New York City, NY 10001" +258731,Bose SoundSport Headphones,1,99.99,09/23/19 20:01,"779 Jackson St, Los Angeles, CA 90001" +258732,AAA Batteries (4-pack),2,2.99,09/03/19 12:09,"8 Lake St, Atlanta, GA 30301" +258733,Lightning Charging Cable,1,14.95,09/28/19 17:56,"816 Lakeview St, New York City, NY 10001" +258734,USB-C Charging Cable,1,11.95,09/07/19 09:16,"800 8th St, Los Angeles, CA 90001" +258735,27in 4K Gaming Monitor,1,389.99,09/11/19 14:46,"602 2nd St, Boston, MA 02215" +258736,Apple Airpods Headphones,1,150,09/28/19 11:17,"107 7th St, Boston, MA 02215" +258737,Lightning Charging Cable,1,14.95,09/14/19 21:50,"933 6th St, Portland, OR 97035" +258738,34in Ultrawide Monitor,1,379.99,09/10/19 11:26,"548 Jefferson St, New York City, NY 10001" +258739,AA Batteries (4-pack),1,3.84,09/10/19 20:16,"336 Meadow St, Boston, MA 02215" +258740,AA Batteries (4-pack),1,3.84,09/12/19 10:29,"211 10th St, New York City, NY 10001" +258741,Vareebadd Phone,1,400,09/25/19 20:32,"757 Elm St, New York City, NY 10001" +258742,ThinkPad Laptop,1,999.99,09/26/19 09:24,"329 Chestnut St, San Francisco, CA 94016" +258743,27in 4K Gaming Monitor,1,389.99,09/13/19 05:09,"142 Sunset St, San Francisco, CA 94016" +258744,Flatscreen TV,1,300,09/16/19 20:11,"326 Cherry St, Los Angeles, CA 90001" +258745,AAA Batteries (4-pack),3,2.99,09/19/19 17:32,"484 6th St, New York City, NY 10001" +258746,Apple Airpods Headphones,1,150,09/14/19 00:59,"141 9th St, San Francisco, CA 94016" +258747,Bose SoundSport Headphones,1,99.99,09/26/19 15:12,"378 Forest St, San Francisco, CA 94016" +258748,iPhone,1,700,09/25/19 19:56,"54 Jefferson St, Seattle, WA 98101" +258749,Macbook Pro Laptop,1,1700,09/24/19 17:51,"516 4th St, San Francisco, CA 94016" +258750,Wired Headphones,1,11.99,09/09/19 12:19,"635 Chestnut St, San Francisco, CA 94016" +258751,AA Batteries (4-pack),1,3.84,09/15/19 00:08,"586 Adams St, San Francisco, CA 94016" +258752,Wired Headphones,1,11.99,09/06/19 19:10,"426 Main St, New York City, NY 10001" +258753,Bose SoundSport Headphones,1,99.99,09/02/19 22:42,"441 Jackson St, Boston, MA 02215" +258754,ThinkPad Laptop,1,999.99,09/25/19 13:02,"144 Maple St, Seattle, WA 98101" +258755,Google Phone,1,600,09/12/19 09:00,"100 Wilson St, New York City, NY 10001" +258756,Apple Airpods Headphones,1,150,09/07/19 21:37,"560 Madison St, Los Angeles, CA 90001" +258757,Apple Airpods Headphones,1,150,09/14/19 19:48,"276 Johnson St, Boston, MA 02215" +258758,Wired Headphones,1,11.99,09/05/19 15:51,"492 Lincoln St, Atlanta, GA 30301" +258759,AAA Batteries (4-pack),1,2.99,09/18/19 18:44,"373 9th St, Dallas, TX 75001" +258760,AAA Batteries (4-pack),1,2.99,09/30/19 12:24,"737 Washington St, Boston, MA 02215" +258761,27in FHD Monitor,1,149.99,09/12/19 06:57,"206 6th St, Los Angeles, CA 90001" +258762,USB-C Charging Cable,1,11.95,09/03/19 08:31,"147 5th St, New York City, NY 10001" +258763,USB-C Charging Cable,1,11.95,09/02/19 22:32,"907 Johnson St, San Francisco, CA 94016" +258764,Vareebadd Phone,1,400,09/23/19 11:06,"894 Spruce St, Los Angeles, CA 90001" +258764,USB-C Charging Cable,1,11.95,09/23/19 11:06,"894 Spruce St, Los Angeles, CA 90001" +258764,Wired Headphones,1,11.99,09/23/19 11:06,"894 Spruce St, Los Angeles, CA 90001" +258765,Flatscreen TV,1,300,09/04/19 20:15,"850 Sunset St, Los Angeles, CA 90001" +258766,Bose SoundSport Headphones,1,99.99,09/14/19 01:43,"95 Pine St, Austin, TX 73301" +258766,USB-C Charging Cable,2,11.95,09/14/19 01:43,"95 Pine St, Austin, TX 73301" +258767,27in 4K Gaming Monitor,1,389.99,09/26/19 20:55,"497 Adams St, Portland, OR 97035" +258768,27in FHD Monitor,1,149.99,09/12/19 19:11,"215 13th St, Austin, TX 73301" +258769,27in FHD Monitor,1,149.99,09/22/19 10:17,"181 12th St, Los Angeles, CA 90001" +258770,Lightning Charging Cable,1,14.95,09/27/19 20:45,"256 North St, Los Angeles, CA 90001" +258771,Apple Airpods Headphones,1,150,09/11/19 14:27,"884 7th St, Los Angeles, CA 90001" +258772,Lightning Charging Cable,1,14.95,09/18/19 22:15,"514 Jefferson St, Boston, MA 02215" +258773,AAA Batteries (4-pack),2,2.99,09/17/19 14:25,"672 Washington St, San Francisco, CA 94016" +258774,AAA Batteries (4-pack),1,2.99,09/21/19 10:23,"646 Lincoln St, Los Angeles, CA 90001" +258775,AAA Batteries (4-pack),1,2.99,09/02/19 01:41,"652 Main St, San Francisco, CA 94016" +258776,27in FHD Monitor,1,149.99,09/08/19 22:33,"266 Cedar St, Los Angeles, CA 90001" +258777,AA Batteries (4-pack),1,3.84,09/15/19 01:14,"798 Jefferson St, Dallas, TX 75001" +258778,Wired Headphones,1,11.99,09/07/19 17:55,"381 Chestnut St, San Francisco, CA 94016" +258779,20in Monitor,1,109.99,09/09/19 17:48,"94 Lincoln St, Los Angeles, CA 90001" +258780,Wired Headphones,1,11.99,09/30/19 09:59,"601 11th St, New York City, NY 10001" +258781,AAA Batteries (4-pack),2,2.99,09/22/19 22:04,"653 South St, New York City, NY 10001" +258782,iPhone,1,700,09/05/19 12:13,"583 South St, Atlanta, GA 30301" +258782,Lightning Charging Cable,1,14.95,09/05/19 12:13,"583 South St, Atlanta, GA 30301" +258782,Wired Headphones,2,11.99,09/05/19 12:13,"583 South St, Atlanta, GA 30301" +258783,34in Ultrawide Monitor,1,379.99,09/18/19 12:08,"282 Pine St, New York City, NY 10001" +258784,Apple Airpods Headphones,1,150,09/16/19 11:52,"366 Pine St, Seattle, WA 98101" +258785,iPhone,1,700,09/20/19 12:49,"514 Adams St, Portland, OR 97035" +258786,AAA Batteries (4-pack),2,2.99,09/03/19 09:50,"411 Adams St, San Francisco, CA 94016" +258787,USB-C Charging Cable,1,11.95,09/01/19 10:19,"514 Lake St, Los Angeles, CA 90001" +258788,Macbook Pro Laptop,1,1700,09/04/19 23:16,"523 1st St, Atlanta, GA 30301" +258789,AA Batteries (4-pack),1,3.84,09/25/19 06:34,"510 Forest St, Austin, TX 73301" +258790,AAA Batteries (4-pack),1,2.99,09/24/19 17:52,"6 7th St, New York City, NY 10001" +258791,27in 4K Gaming Monitor,1,389.99,09/01/19 12:18,"19 North St, San Francisco, CA 94016" +258792,Lightning Charging Cable,1,14.95,09/15/19 17:40,"781 Church St, Seattle, WA 98101" +258793,Wired Headphones,1,11.99,09/22/19 08:22,"928 Cedar St, San Francisco, CA 94016" +258794,27in FHD Monitor,1,149.99,09/21/19 18:34,"657 North St, New York City, NY 10001" +258795,Lightning Charging Cable,1,14.95,09/10/19 18:00,"492 Wilson St, Los Angeles, CA 90001" +258796,AAA Batteries (4-pack),2,2.99,09/02/19 18:47,"289 Willow St, San Francisco, CA 94016" +258797,Bose SoundSport Headphones,1,99.99,09/30/19 17:06,"829 Lincoln St, San Francisco, CA 94016" +258798,AA Batteries (4-pack),1,3.84,09/23/19 22:11,"1 Park St, Dallas, TX 75001" +258799,iPhone,1,700,09/07/19 15:52,"742 9th St, Boston, MA 02215" +258800,USB-C Charging Cable,1,11.95,09/15/19 18:29,"323 8th St, Dallas, TX 75001" +258801,AA Batteries (4-pack),1,3.84,09/24/19 12:14,"487 14th St, Austin, TX 73301" +258802,AA Batteries (4-pack),1,3.84,09/24/19 10:38,"376 Lake St, San Francisco, CA 94016" +258803,USB-C Charging Cable,1,11.95,09/11/19 13:41,"204 Dogwood St, Boston, MA 02215" +258804,Apple Airpods Headphones,1,150,09/14/19 20:28,"908 Spruce St, Dallas, TX 75001" +258805,20in Monitor,1,109.99,09/26/19 16:55,"778 1st St, Los Angeles, CA 90001" +258806,AAA Batteries (4-pack),1,2.99,09/15/19 17:15,"507 Dogwood St, San Francisco, CA 94016" +258807,Lightning Charging Cable,1,14.95,09/24/19 10:10,"285 6th St, Seattle, WA 98101" +258808,Lightning Charging Cable,1,14.95,09/18/19 09:09,"968 8th St, New York City, NY 10001" +258809,Google Phone,1,600,09/10/19 14:55,"783 Cedar St, Dallas, TX 75001" +258810,Google Phone,1,600,09/22/19 17:35,"440 Willow St, Atlanta, GA 30301" +258811,Wired Headphones,1,11.99,09/06/19 12:58,"715 Lincoln St, Austin, TX 73301" +258812,Bose SoundSport Headphones,1,99.99,09/11/19 07:36,"808 Main St, New York City, NY 10001" +258813,Lightning Charging Cable,1,14.95,09/13/19 01:50,"556 West St, San Francisco, CA 94016" +258814,27in 4K Gaming Monitor,1,389.99,09/06/19 12:35,"54 Lakeview St, San Francisco, CA 94016" +258815,Google Phone,1,600,09/26/19 12:26,"776 Willow St, New York City, NY 10001" +258816,Bose SoundSport Headphones,1,99.99,09/29/19 10:52,"926 12th St, Portland, OR 97035" +258817,Google Phone,1,600,09/28/19 11:46,"675 South St, San Francisco, CA 94016" +258818,USB-C Charging Cable,1,11.95,09/24/19 00:30,"546 Sunset St, Boston, MA 02215" +258819,AAA Batteries (4-pack),1,2.99,09/24/19 15:41,"472 4th St, Los Angeles, CA 90001" +258820,USB-C Charging Cable,1,11.95,09/16/19 00:42,"600 2nd St, San Francisco, CA 94016" +258821,USB-C Charging Cable,1,11.95,09/15/19 00:19,"597 Meadow St, San Francisco, CA 94016" +258822,Macbook Pro Laptop,1,1700,09/22/19 20:41,"484 Jefferson St, New York City, NY 10001" +258823,Lightning Charging Cable,1,14.95,09/05/19 06:35,"466 Park St, San Francisco, CA 94016" +258824,Bose SoundSport Headphones,1,99.99,09/24/19 19:06,"17 1st St, Austin, TX 73301" +258825,27in 4K Gaming Monitor,1,389.99,09/27/19 16:36,"413 Forest St, Dallas, TX 75001" +258826,Wired Headphones,1,11.99,09/26/19 21:28,"627 Cherry St, Seattle, WA 98101" +258827,34in Ultrawide Monitor,1,379.99,09/23/19 20:27,"415 Jackson St, Los Angeles, CA 90001" +258828,Apple Airpods Headphones,1,150,09/29/19 00:47,"586 Jackson St, San Francisco, CA 94016" +258829,Bose SoundSport Headphones,1,99.99,09/20/19 22:00,"958 5th St, San Francisco, CA 94016" +258830,20in Monitor,1,109.99,09/28/19 20:58,"519 Wilson St, San Francisco, CA 94016" +258831,LG Dryer,1,600.0,09/04/19 19:38,"476 Elm St, Austin, TX 73301" +258832,AA Batteries (4-pack),1,3.84,09/23/19 11:25,"88 Willow St, Dallas, TX 75001" +258833,AAA Batteries (4-pack),1,2.99,09/26/19 10:30,"733 Highland St, Seattle, WA 98101" +258834,ThinkPad Laptop,1,999.99,09/10/19 20:30,"292 Elm St, Atlanta, GA 30301" +258835,Lightning Charging Cable,1,14.95,09/26/19 20:53,"385 Park St, Boston, MA 02215" +258836,iPhone,1,700,09/02/19 12:38,"185 Lakeview St, San Francisco, CA 94016" +258837,Bose SoundSport Headphones,1,99.99,09/12/19 10:11,"548 Church St, Los Angeles, CA 90001" +258838,Lightning Charging Cable,1,14.95,09/26/19 13:53,"57 Cherry St, San Francisco, CA 94016" +258839,USB-C Charging Cable,1,11.95,09/14/19 18:13,"60 Jefferson St, Portland, OR 97035" +258840,27in FHD Monitor,1,149.99,09/01/19 18:33,"760 Chestnut St, Dallas, TX 75001" +258841,USB-C Charging Cable,1,11.95,09/19/19 15:28,"532 Lake St, Austin, TX 73301" +258842,iPhone,1,700,09/15/19 16:54,"743 Washington St, New York City, NY 10001" +258843,27in FHD Monitor,1,149.99,09/12/19 14:54,"409 Willow St, Los Angeles, CA 90001" +258844,USB-C Charging Cable,1,11.95,09/12/19 14:31,"634 North St, San Francisco, CA 94016" +258845,Apple Airpods Headphones,1,150,09/22/19 12:44,"30 11th St, Dallas, TX 75001" +258846,AAA Batteries (4-pack),1,2.99,09/17/19 09:10,"694 Elm St, Los Angeles, CA 90001" +258847,Macbook Pro Laptop,1,1700,09/08/19 14:01,"694 West St, San Francisco, CA 94016" +258848,AA Batteries (4-pack),3,3.84,09/26/19 20:40,"110 Hickory St, Seattle, WA 98101" +258849,Lightning Charging Cable,1,14.95,09/02/19 14:02,"956 Johnson St, Seattle, WA 98101" +258850,Apple Airpods Headphones,1,150,09/02/19 15:21,"850 7th St, Seattle, WA 98101" +258851,27in FHD Monitor,1,149.99,09/26/19 00:41,"68 Spruce St, Austin, TX 73301" +258852,USB-C Charging Cable,1,11.95,09/14/19 18:40,"252 10th St, Austin, TX 73301" +258853,27in FHD Monitor,1,149.99,09/16/19 13:16,"975 Hill St, Atlanta, GA 30301" +258854,Google Phone,1,600,09/05/19 14:03,"745 9th St, Dallas, TX 75001" +258854,USB-C Charging Cable,1,11.95,09/05/19 14:03,"745 9th St, Dallas, TX 75001" +258855,USB-C Charging Cable,1,11.95,09/21/19 05:16,"220 West St, San Francisco, CA 94016" +258856,AA Batteries (4-pack),1,3.84,09/19/19 17:37,"106 1st St, Boston, MA 02215" +258857,Bose SoundSport Headphones,1,99.99,09/01/19 20:14,"662 Lakeview St, San Francisco, CA 94016" +258858,USB-C Charging Cable,1,11.95,09/10/19 16:15,"848 Washington St, Portland, ME 04101" +258859,Lightning Charging Cable,1,14.95,09/23/19 20:06,"221 6th St, San Francisco, CA 94016" +258860,Lightning Charging Cable,1,14.95,09/03/19 10:27,"660 Maple St, Los Angeles, CA 90001" +258861,AA Batteries (4-pack),1,3.84,09/28/19 09:39,"918 Meadow St, Dallas, TX 75001" +258861,27in 4K Gaming Monitor,1,389.99,09/28/19 09:39,"918 Meadow St, Dallas, TX 75001" +258862,Macbook Pro Laptop,1,1700,09/27/19 19:00,"326 11th St, San Francisco, CA 94016" +258863,USB-C Charging Cable,1,11.95,09/24/19 04:56,"975 Jefferson St, Seattle, WA 98101" +258864,USB-C Charging Cable,1,11.95,09/29/19 11:26,"553 Chestnut St, San Francisco, CA 94016" +258865,AA Batteries (4-pack),1,3.84,09/09/19 09:11,"871 Lake St, San Francisco, CA 94016" +258866,AA Batteries (4-pack),1,3.84,09/10/19 09:58,"3 4th St, San Francisco, CA 94016" +258867,20in Monitor,1,109.99,09/10/19 14:48,"337 Hill St, San Francisco, CA 94016" +258868,Apple Airpods Headphones,1,150,09/01/19 22:44,"533 8th St, Los Angeles, CA 90001" +258869,Bose SoundSport Headphones,1,99.99,09/16/19 07:44,"919 Pine St, Boston, MA 02215" +258870,iPhone,1,700,09/04/19 15:12,"224 South St, Austin, TX 73301" +258871,Lightning Charging Cable,1,14.95,09/10/19 15:14,"270 Meadow St, New York City, NY 10001" +258872,AAA Batteries (4-pack),3,2.99,09/02/19 18:55,"241 River St, San Francisco, CA 94016" +258873,Wired Headphones,1,11.99,09/16/19 11:59,"46 Forest St, San Francisco, CA 94016" +258874,Google Phone,1,600,09/25/19 15:54,"897 Cedar St, Atlanta, GA 30301" +258875,AA Batteries (4-pack),1,3.84,09/25/19 13:18,"903 Lake St, Los Angeles, CA 90001" +258876,Apple Airpods Headphones,1,150,09/02/19 11:31,"606 1st St, Dallas, TX 75001" +258877,USB-C Charging Cable,1,11.95,09/09/19 19:59,"362 Cedar St, Seattle, WA 98101" +258878,AA Batteries (4-pack),3,3.84,09/04/19 17:12,"287 Chestnut St, San Francisco, CA 94016" +258879,Wired Headphones,1,11.99,09/23/19 19:02,"544 Lake St, Austin, TX 73301" +258880,Flatscreen TV,1,300,09/27/19 11:32,"891 North St, Boston, MA 02215" +258881,iPhone,1,700,09/22/19 09:52,"694 Center St, Austin, TX 73301" +258882,AAA Batteries (4-pack),2,2.99,09/02/19 10:41,"580 8th St, Seattle, WA 98101" +258883,27in FHD Monitor,1,149.99,09/22/19 12:28,"832 Pine St, New York City, NY 10001" +258884,AA Batteries (4-pack),2,3.84,09/12/19 09:34,"969 Washington St, San Francisco, CA 94016" +258885,Apple Airpods Headphones,1,150,09/01/19 17:17,"670 Wilson St, Austin, TX 73301" +258886,Lightning Charging Cable,1,14.95,09/23/19 14:32,"273 River St, Boston, MA 02215" +258887,Wired Headphones,1,11.99,09/01/19 19:38,"826 Willow St, Atlanta, GA 30301" +258888,20in Monitor,1,109.99,09/14/19 00:23,"794 Cherry St, San Francisco, CA 94016" +258889,Flatscreen TV,1,300,09/15/19 17:47,"903 Jefferson St, Atlanta, GA 30301" +258890,Lightning Charging Cable,1,14.95,09/30/19 18:45,"664 Church St, San Francisco, CA 94016" +258891,27in FHD Monitor,1,149.99,09/16/19 19:43,"679 Madison St, Los Angeles, CA 90001" +258892,27in 4K Gaming Monitor,1,389.99,09/19/19 12:10,"296 1st St, New York City, NY 10001" +258893,AA Batteries (4-pack),1,3.84,09/14/19 15:23,"148 South St, New York City, NY 10001" +258894,AA Batteries (4-pack),1,3.84,09/12/19 23:57,"655 Jefferson St, Seattle, WA 98101" +258895,LG Washing Machine,1,600.0,09/25/19 11:36,"433 Hickory St, Dallas, TX 75001" +258896,AA Batteries (4-pack),1,3.84,09/09/19 16:04,"58 Willow St, San Francisco, CA 94016" +258897,34in Ultrawide Monitor,1,379.99,09/05/19 21:05,"867 Hill St, Dallas, TX 75001" +258897,Google Phone,1,600,09/05/19 21:05,"867 Hill St, Dallas, TX 75001" +258898,AA Batteries (4-pack),1,3.84,09/01/19 13:07,"137 River St, Los Angeles, CA 90001" +258899,AA Batteries (4-pack),1,3.84,09/17/19 18:18,"339 Center St, Austin, TX 73301" +258900,34in Ultrawide Monitor,1,379.99,09/10/19 13:34,"667 5th St, San Francisco, CA 94016" +258901,Flatscreen TV,1,300,09/24/19 13:25,"714 14th St, Los Angeles, CA 90001" +258902,ThinkPad Laptop,1,999.99,09/04/19 17:34,"686 Spruce St, New York City, NY 10001" +258903,USB-C Charging Cable,1,11.95,09/07/19 18:43,"275 West St, Atlanta, GA 30301" +258904,AA Batteries (4-pack),2,3.84,09/08/19 08:46,"648 Forest St, Atlanta, GA 30301" +258905,Bose SoundSport Headphones,1,99.99,09/16/19 18:18,"271 Meadow St, San Francisco, CA 94016" +258906,27in FHD Monitor,1,149.99,09/27/19 19:40,"483 6th St, Boston, MA 02215" +258907,USB-C Charging Cable,1,11.95,09/22/19 15:41,"963 Pine St, Los Angeles, CA 90001" +258908,ThinkPad Laptop,1,999.99,09/15/19 07:57,"381 Highland St, Portland, OR 97035" +258909,Lightning Charging Cable,1,14.95,09/23/19 18:18,"749 Lake St, Dallas, TX 75001" +258910,USB-C Charging Cable,1,11.95,09/29/19 18:49,"160 Highland St, Dallas, TX 75001" +258911,AA Batteries (4-pack),1,3.84,09/02/19 15:20,"118 13th St, Boston, MA 02215" +258912,AA Batteries (4-pack),2,3.84,09/29/19 20:49,"146 11th St, Boston, MA 02215" +258913,Wired Headphones,1,11.99,09/27/19 12:09,"193 8th St, Portland, ME 04101" +258914,Lightning Charging Cable,1,14.95,09/20/19 00:07,"498 9th St, Los Angeles, CA 90001" +258915,27in 4K Gaming Monitor,1,389.99,09/24/19 22:04,"907 Hickory St, New York City, NY 10001" +258916,Lightning Charging Cable,1,14.95,09/06/19 14:36,"778 Cherry St, Los Angeles, CA 90001" +258917,Bose SoundSport Headphones,1,99.99,09/16/19 11:45,"798 Hill St, Los Angeles, CA 90001" +258918,iPhone,1,700,09/16/19 11:07,"125 Maple St, New York City, NY 10001" +258919,27in FHD Monitor,2,149.99,09/01/19 18:46,"634 Ridge St, Dallas, TX 75001" +258920,20in Monitor,1,109.99,09/27/19 10:55,"947 Adams St, San Francisco, CA 94016" +258921,Lightning Charging Cable,1,14.95,09/08/19 17:52,"869 Highland St, San Francisco, CA 94016" +258922,Lightning Charging Cable,1,14.95,09/16/19 05:33,"687 Jackson St, San Francisco, CA 94016" +258923,Lightning Charging Cable,1,14.95,09/12/19 11:09,"969 Willow St, Los Angeles, CA 90001" +258924,Flatscreen TV,1,300,09/10/19 21:31,"185 12th St, San Francisco, CA 94016" +258925,AA Batteries (4-pack),1,3.84,09/20/19 19:39,"667 Lake St, Atlanta, GA 30301" +258926,AAA Batteries (4-pack),1,2.99,09/16/19 16:56,"364 Lakeview St, New York City, NY 10001" +258927,27in FHD Monitor,1,149.99,09/14/19 13:05,"644 Ridge St, San Francisco, CA 94016" +258927,Apple Airpods Headphones,1,150,09/14/19 13:05,"644 Ridge St, San Francisco, CA 94016" +258928,Google Phone,1,600,09/25/19 11:18,"133 Jackson St, Dallas, TX 75001" +258928,USB-C Charging Cable,1,11.95,09/25/19 11:18,"133 Jackson St, Dallas, TX 75001" +258929,Lightning Charging Cable,1,14.95,09/28/19 21:49,"471 1st St, San Francisco, CA 94016" +258930,USB-C Charging Cable,1,11.95,09/30/19 16:51,"361 Lakeview St, Dallas, TX 75001" +258931,Wired Headphones,1,11.99,09/09/19 14:54,"381 Park St, New York City, NY 10001" +258932,27in FHD Monitor,1,149.99,09/24/19 09:12,"447 Elm St, Dallas, TX 75001" +258933,Lightning Charging Cable,1,14.95,09/20/19 22:59,"440 1st St, Portland, OR 97035" +258934,iPhone,1,700,09/08/19 00:15,"204 Center St, Atlanta, GA 30301" +258934,Lightning Charging Cable,1,14.95,09/08/19 00:15,"204 Center St, Atlanta, GA 30301" +258935,Wired Headphones,1,11.99,09/03/19 19:09,"755 Cherry St, Dallas, TX 75001" +258936,27in FHD Monitor,1,149.99,09/02/19 00:00,"791 14th St, Boston, MA 02215" +258937,Apple Airpods Headphones,1,150,09/21/19 13:20,"757 8th St, San Francisco, CA 94016" +258938,Wired Headphones,1,11.99,09/21/19 16:14,"673 13th St, Portland, OR 97035" +258939,27in FHD Monitor,1,149.99,09/23/19 20:31,"612 Cherry St, Portland, OR 97035" +258940,Apple Airpods Headphones,1,150,09/20/19 23:27,"623 13th St, San Francisco, CA 94016" +258941,AA Batteries (4-pack),1,3.84,09/21/19 10:08,"377 West St, San Francisco, CA 94016" +258942,AAA Batteries (4-pack),1,2.99,09/14/19 16:57,"943 Lakeview St, New York City, NY 10001" +258943,34in Ultrawide Monitor,1,379.99,09/04/19 22:25,"119 Cherry St, New York City, NY 10001" +258944,USB-C Charging Cable,1,11.95,09/15/19 17:09,"644 Main St, New York City, NY 10001" +258945,AA Batteries (4-pack),1,3.84,09/22/19 09:50,"1 River St, Boston, MA 02215" +258946,27in FHD Monitor,1,149.99,09/29/19 15:34,"255 Madison St, Portland, ME 04101" +258947,Lightning Charging Cable,1,14.95,09/11/19 15:17,"913 11th St, Boston, MA 02215" +258948,Bose SoundSport Headphones,1,99.99,09/07/19 20:55,"252 Lakeview St, Portland, OR 97035" +258949,Bose SoundSport Headphones,1,99.99,09/10/19 17:58,"569 River St, Austin, TX 73301" +258950,Lightning Charging Cable,1,14.95,09/16/19 14:46,"68 11th St, San Francisco, CA 94016" +258951,Apple Airpods Headphones,1,150,09/04/19 21:35,"216 1st St, Portland, OR 97035" +258952,USB-C Charging Cable,2,11.95,09/07/19 10:41,"884 Spruce St, Dallas, TX 75001" +258953,AA Batteries (4-pack),1,3.84,09/09/19 15:23,"930 Meadow St, San Francisco, CA 94016" +258954,27in FHD Monitor,1,149.99,09/25/19 15:14,"879 5th St, Boston, MA 02215" +258955,27in FHD Monitor,1,149.99,09/09/19 15:23,"185 Adams St, Dallas, TX 75001" +258956,Vareebadd Phone,1,400,09/25/19 19:28,"190 Madison St, Dallas, TX 75001" +258957,AAA Batteries (4-pack),1,2.99,09/01/19 22:55,"493 8th St, Seattle, WA 98101" +258958,Apple Airpods Headphones,1,150,09/13/19 17:02,"159 Washington St, Austin, TX 73301" +258959,Lightning Charging Cable,1,14.95,09/24/19 16:53,"864 Washington St, San Francisco, CA 94016" +258960,USB-C Charging Cable,1,11.95,09/22/19 12:09,"208 Chestnut St, Dallas, TX 75001" +258961,iPhone,1,700,09/07/19 12:22,"547 9th St, Atlanta, GA 30301" +258962,AAA Batteries (4-pack),1,2.99,09/03/19 15:41,"273 Cedar St, Seattle, WA 98101" +258963,USB-C Charging Cable,1,11.95,09/06/19 18:42,"366 Hill St, San Francisco, CA 94016" +258964,Flatscreen TV,1,300,09/16/19 20:12,"282 Willow St, Boston, MA 02215" +258965,Lightning Charging Cable,1,14.95,09/01/19 19:12,"554 12th St, Boston, MA 02215" +258966,Lightning Charging Cable,1,14.95,09/11/19 13:40,"582 Church St, San Francisco, CA 94016" +258967,Lightning Charging Cable,1,14.95,09/18/19 19:16,"822 Lincoln St, New York City, NY 10001" +258968,Flatscreen TV,1,300,09/01/19 19:05,"293 2nd St, Los Angeles, CA 90001" +258969,27in 4K Gaming Monitor,1,389.99,09/30/19 19:42,"672 North St, Atlanta, GA 30301" +258970,iPhone,1,700,09/20/19 19:34,"241 Chestnut St, San Francisco, CA 94016" +258970,Lightning Charging Cable,1,14.95,09/20/19 19:34,"241 Chestnut St, San Francisco, CA 94016" +258971,Wired Headphones,1,11.99,09/28/19 01:40,"859 River St, Atlanta, GA 30301" +258972,Apple Airpods Headphones,1,150,09/28/19 18:07,"876 Center St, San Francisco, CA 94016" +258973,Lightning Charging Cable,1,14.95,09/25/19 17:54,"586 Forest St, Los Angeles, CA 90001" +258974,AAA Batteries (4-pack),3,2.99,09/23/19 21:49,"397 6th St, New York City, NY 10001" +258975,AA Batteries (4-pack),1,3.84,09/03/19 13:15,"178 South St, Los Angeles, CA 90001" +258976,AAA Batteries (4-pack),1,2.99,09/15/19 23:32,"722 Lakeview St, Boston, MA 02215" +258977,AA Batteries (4-pack),1,3.84,09/27/19 11:52,"396 Wilson St, Atlanta, GA 30301" +258978,Wired Headphones,1,11.99,09/21/19 08:27,"782 Maple St, Los Angeles, CA 90001" +258979,AA Batteries (4-pack),3,3.84,09/15/19 17:46,"801 Willow St, Boston, MA 02215" +258980,27in FHD Monitor,1,149.99,09/10/19 09:48,"344 Johnson St, Los Angeles, CA 90001" +258981,AA Batteries (4-pack),1,3.84,09/08/19 20:25,"121 South St, Los Angeles, CA 90001" +258982,Wired Headphones,1,11.99,09/01/19 13:53,"277 13th St, San Francisco, CA 94016" +258983,iPhone,1,700,09/28/19 22:40,"331 Hickory St, Seattle, WA 98101" +258984,Wired Headphones,1,11.99,09/13/19 21:33,"758 12th St, Los Angeles, CA 90001" +258985,20in Monitor,1,109.99,09/18/19 13:53,"406 Adams St, San Francisco, CA 94016" +258986,USB-C Charging Cable,1,11.95,09/28/19 14:55,"877 Willow St, Portland, OR 97035" +258987,Lightning Charging Cable,1,14.95,09/29/19 07:20,"323 13th St, San Francisco, CA 94016" +258988,34in Ultrawide Monitor,1,379.99,09/28/19 20:01,"955 Maple St, New York City, NY 10001" +258989,USB-C Charging Cable,1,11.95,09/19/19 19:50,"603 Johnson St, Dallas, TX 75001" +258989,Bose SoundSport Headphones,1,99.99,09/19/19 19:50,"603 Johnson St, Dallas, TX 75001" +258990,USB-C Charging Cable,1,11.95,09/25/19 14:12,"812 Hill St, San Francisco, CA 94016" +258991,27in 4K Gaming Monitor,1,389.99,09/29/19 12:53,"393 Ridge St, San Francisco, CA 94016" +258992,Flatscreen TV,1,300,09/10/19 12:42,"86 Dogwood St, San Francisco, CA 94016" +258993,Google Phone,1,600,09/11/19 12:07,"613 Church St, Boston, MA 02215" +258993,Wired Headphones,1,11.99,09/11/19 12:07,"613 Church St, Boston, MA 02215" +258994,Lightning Charging Cable,1,14.95,09/23/19 17:37,"687 Willow St, New York City, NY 10001" +258995,USB-C Charging Cable,1,11.95,09/23/19 14:38,"690 Willow St, Dallas, TX 75001" +258996,20in Monitor,1,109.99,09/14/19 00:17,"561 Jackson St, Boston, MA 02215" +258997,Wired Headphones,1,11.99,09/12/19 15:02,"830 11th St, Seattle, WA 98101" +258998,USB-C Charging Cable,2,11.95,09/09/19 19:25,"403 Wilson St, Boston, MA 02215" +258999,Lightning Charging Cable,1,14.95,09/18/19 11:29,"919 Wilson St, San Francisco, CA 94016" +258999,iPhone,1,700,09/18/19 11:29,"919 Wilson St, San Francisco, CA 94016" +259000,Macbook Pro Laptop,1,1700,09/04/19 13:45,"618 Chestnut St, Boston, MA 02215" +259001,AAA Batteries (4-pack),2,2.99,09/20/19 10:49,"838 9th St, Atlanta, GA 30301" +259002,Flatscreen TV,1,300,09/03/19 19:45,"733 13th St, New York City, NY 10001" +259003,20in Monitor,1,109.99,09/24/19 17:45,"384 Dogwood St, San Francisco, CA 94016" +259004,Flatscreen TV,1,300,09/09/19 11:22,"75 4th St, Boston, MA 02215" +259005,USB-C Charging Cable,1,11.95,09/28/19 08:29,"752 Johnson St, Portland, ME 04101" +259006,Lightning Charging Cable,1,14.95,09/10/19 22:31,"274 Pine St, San Francisco, CA 94016" +259007,Vareebadd Phone,1,400,09/22/19 20:24,"739 Meadow St, San Francisco, CA 94016" +259008,ThinkPad Laptop,1,999.99,09/11/19 14:58,"328 2nd St, San Francisco, CA 94016" +259009,iPhone,1,700,09/21/19 17:43,"284 8th St, Seattle, WA 98101" +259009,Lightning Charging Cable,1,14.95,09/21/19 17:43,"284 8th St, Seattle, WA 98101" +259010,AAA Batteries (4-pack),1,2.99,09/29/19 22:15,"430 West St, Portland, OR 97035" +259011,AA Batteries (4-pack),1,3.84,09/14/19 03:05,"946 Elm St, San Francisco, CA 94016" +259012,Wired Headphones,1,11.99,09/23/19 10:28,"971 North St, Seattle, WA 98101" +259013,20in Monitor,1,109.99,09/28/19 10:03,"338 8th St, Seattle, WA 98101" +259014,AAA Batteries (4-pack),1,2.99,09/08/19 23:34,"727 Hill St, Portland, ME 04101" +259015,27in FHD Monitor,1,149.99,09/04/19 09:40,"935 West St, Dallas, TX 75001" +259016,Lightning Charging Cable,1,14.95,09/15/19 21:52,"204 Johnson St, Los Angeles, CA 90001" +259017,Flatscreen TV,1,300,09/21/19 14:20,"5 Willow St, Dallas, TX 75001" +259018,USB-C Charging Cable,1,11.95,09/29/19 17:10,"134 9th St, New York City, NY 10001" +259019,AA Batteries (4-pack),1,3.84,09/24/19 09:35,"958 Lakeview St, Boston, MA 02215" +259020,Bose SoundSport Headphones,1,99.99,09/22/19 10:48,"918 Highland St, Boston, MA 02215" +259021,34in Ultrawide Monitor,1,379.99,09/01/19 23:53,"411 11th St, Seattle, WA 98101" +259022,Macbook Pro Laptop,1,1700,09/27/19 16:32,"294 9th St, New York City, NY 10001" +259023,20in Monitor,1,109.99,09/05/19 11:02,"684 Park St, Atlanta, GA 30301" +259024,Google Phone,1,600,09/24/19 13:22,"908 North St, New York City, NY 10001" +259025,Lightning Charging Cable,1,14.95,09/30/19 11:45,"971 Hickory St, Austin, TX 73301" +259026,Bose SoundSport Headphones,1,99.99,09/06/19 19:10,"76 2nd St, Atlanta, GA 30301" +259027,34in Ultrawide Monitor,1,379.99,09/03/19 22:19,"952 Willow St, New York City, NY 10001" +259028,AA Batteries (4-pack),4,3.84,09/08/19 22:49,"230 Johnson St, Los Angeles, CA 90001" +259029,Lightning Charging Cable,1,14.95,09/02/19 22:05,"38 Jackson St, New York City, NY 10001" +259030,USB-C Charging Cable,1,11.95,09/07/19 06:45,"382 Cherry St, San Francisco, CA 94016" +259031,ThinkPad Laptop,1,999.99,09/15/19 11:23,"627 Willow St, San Francisco, CA 94016" +259032,Lightning Charging Cable,1,14.95,09/01/19 14:11,"468 6th St, Dallas, TX 75001" +259033,AAA Batteries (4-pack),2,2.99,09/21/19 07:26,"881 River St, Los Angeles, CA 90001" +259034,Wired Headphones,1,11.99,09/09/19 21:04,"221 11th St, Portland, OR 97035" +259035,Lightning Charging Cable,1,14.95,09/28/19 16:14,"189 Walnut St, Seattle, WA 98101" +259036,AA Batteries (4-pack),1,3.84,09/15/19 15:19,"443 Elm St, Los Angeles, CA 90001" +259037,Wired Headphones,1,11.99,10/01/19 03:56,"822 Main St, Los Angeles, CA 90001" +259038,34in Ultrawide Monitor,1,379.99,09/23/19 10:33,"958 Willow St, Los Angeles, CA 90001" +259039,Lightning Charging Cable,2,14.95,09/18/19 18:45,"209 Forest St, New York City, NY 10001" +259040,Bose SoundSport Headphones,1,99.99,09/03/19 08:11,"501 Sunset St, New York City, NY 10001" +259041,AA Batteries (4-pack),1,3.84,09/15/19 09:56,"145 Johnson St, San Francisco, CA 94016" +259042,Wired Headphones,1,11.99,09/19/19 11:24,"293 Lake St, Seattle, WA 98101" +259043,27in FHD Monitor,1,149.99,09/14/19 09:35,"594 1st St, New York City, NY 10001" +259044,USB-C Charging Cable,1,11.95,09/09/19 12:15,"291 Lakeview St, San Francisco, CA 94016" +259045,AA Batteries (4-pack),1,3.84,09/20/19 13:55,"357 Walnut St, San Francisco, CA 94016" +259046,20in Monitor,1,109.99,09/17/19 01:39,"274 South St, Los Angeles, CA 90001" +259047,ThinkPad Laptop,1,999.99,09/23/19 11:00,"47 Highland St, San Francisco, CA 94016" +259048,AA Batteries (4-pack),1,3.84,09/19/19 19:01,"371 Main St, San Francisco, CA 94016" +259049,27in FHD Monitor,1,149.99,09/30/19 20:54,"765 North St, San Francisco, CA 94016" +259050,iPhone,1,700,09/07/19 16:56,"891 Lincoln St, Seattle, WA 98101" +259051,USB-C Charging Cable,1,11.95,09/09/19 15:50,"670 Walnut St, Los Angeles, CA 90001" +259052,USB-C Charging Cable,1,11.95,09/22/19 23:24,"68 Forest St, San Francisco, CA 94016" +259053,USB-C Charging Cable,1,11.95,09/03/19 11:29,"668 Washington St, San Francisco, CA 94016" +259054,USB-C Charging Cable,1,11.95,09/30/19 21:50,"565 River St, New York City, NY 10001" +259055,USB-C Charging Cable,1,11.95,09/27/19 18:06,"677 Lake St, Los Angeles, CA 90001" +259056,Lightning Charging Cable,1,14.95,09/03/19 11:31,"335 Forest St, Seattle, WA 98101" +259057,AAA Batteries (4-pack),1,2.99,09/29/19 00:39,"503 Center St, Atlanta, GA 30301" +259058,27in FHD Monitor,1,149.99,09/14/19 04:59,"192 Cedar St, San Francisco, CA 94016" +259059,Apple Airpods Headphones,1,150,09/05/19 08:03,"987 10th St, Atlanta, GA 30301" +259060,Google Phone,1,600,09/04/19 20:25,"962 Washington St, New York City, NY 10001" +259061,34in Ultrawide Monitor,1,379.99,09/07/19 15:07,"474 Adams St, San Francisco, CA 94016" +259062,AA Batteries (4-pack),1,3.84,09/06/19 20:34,"324 Jefferson St, Seattle, WA 98101" +259063,USB-C Charging Cable,1,11.95,09/13/19 10:38,"142 11th St, Los Angeles, CA 90001" +259064,Flatscreen TV,1,300,09/15/19 22:15,"399 Lake St, Seattle, WA 98101" +259065,27in FHD Monitor,1,149.99,09/13/19 22:17,"647 West St, Los Angeles, CA 90001" +259066,Bose SoundSport Headphones,1,99.99,09/03/19 02:17,"351 West St, San Francisco, CA 94016" +259067,AAA Batteries (4-pack),1,2.99,09/13/19 12:25,"910 Wilson St, New York City, NY 10001" +259068,AA Batteries (4-pack),1,3.84,09/25/19 15:58,"889 Elm St, Seattle, WA 98101" +259069,AAA Batteries (4-pack),1,2.99,09/09/19 14:55,"625 Forest St, Austin, TX 73301" +259070,Lightning Charging Cable,1,14.95,09/01/19 19:15,"479 Meadow St, San Francisco, CA 94016" +259071,Lightning Charging Cable,1,14.95,09/25/19 17:24,"852 Cedar St, Dallas, TX 75001" +259072,Google Phone,1,600,09/22/19 14:26,"469 7th St, Seattle, WA 98101" +259073,AAA Batteries (4-pack),1,2.99,09/09/19 18:47,"445 River St, Atlanta, GA 30301" +259074,USB-C Charging Cable,1,11.95,09/23/19 10:31,"243 Center St, Los Angeles, CA 90001" +259075,Apple Airpods Headphones,1,150,09/23/19 19:36,"699 Lakeview St, Dallas, TX 75001" +259076,27in FHD Monitor,1,149.99,09/18/19 17:51,"626 Hickory St, Los Angeles, CA 90001" +259077,Lightning Charging Cable,1,14.95,09/23/19 20:52,"72 Jackson St, Boston, MA 02215" +259078,AA Batteries (4-pack),1,3.84,09/07/19 18:36,"140 Lakeview St, Dallas, TX 75001" +259079,Apple Airpods Headphones,1,150,09/06/19 11:53,"565 Jackson St, Los Angeles, CA 90001" +259080,Apple Airpods Headphones,1,150,09/30/19 12:13,"44 5th St, New York City, NY 10001" +259081,Apple Airpods Headphones,1,150,09/24/19 00:44,"929 Willow St, New York City, NY 10001" +259082,USB-C Charging Cable,1,11.95,09/01/19 18:46,"557 West St, San Francisco, CA 94016" +259083,Apple Airpods Headphones,1,150,09/10/19 11:52,"759 Dogwood St, Boston, MA 02215" +259084,27in FHD Monitor,1,149.99,09/17/19 10:54,"105 Wilson St, San Francisco, CA 94016" +259085,USB-C Charging Cable,1,11.95,09/06/19 15:58,"221 Jackson St, New York City, NY 10001" +259086,AA Batteries (4-pack),1,3.84,09/07/19 22:48,"411 Jackson St, San Francisco, CA 94016" +259087,Apple Airpods Headphones,1,150,09/07/19 22:53,"625 Madison St, Los Angeles, CA 90001" +259088,Wired Headphones,1,11.99,09/29/19 22:00,"949 Hill St, San Francisco, CA 94016" +259089,Bose SoundSport Headphones,1,99.99,09/07/19 19:59,"196 Dogwood St, Atlanta, GA 30301" +259090,AA Batteries (4-pack),1,3.84,09/05/19 17:52,"364 14th St, Boston, MA 02215" +259091,27in 4K Gaming Monitor,1,389.99,09/28/19 16:55,"239 River St, Los Angeles, CA 90001" +259092,Apple Airpods Headphones,1,150,09/24/19 22:34,"875 14th St, Los Angeles, CA 90001" +259093,iPhone,1,700,09/12/19 14:58,"685 Hickory St, San Francisco, CA 94016" +259094,Apple Airpods Headphones,1,150,09/13/19 07:56,"342 Elm St, Portland, OR 97035" +259095,iPhone,1,700,09/23/19 00:43,"4 2nd St, Boston, MA 02215" +259095,Wired Headphones,1,11.99,09/23/19 00:43,"4 2nd St, Boston, MA 02215" +259096,Wired Headphones,1,11.99,09/04/19 10:02,"212 West St, Atlanta, GA 30301" +259097,Lightning Charging Cable,1,14.95,09/07/19 19:52,"632 Madison St, San Francisco, CA 94016" +259098,USB-C Charging Cable,1,11.95,09/26/19 11:56,"865 Cherry St, Atlanta, GA 30301" +259099,20in Monitor,1,109.99,09/08/19 15:46,"9 9th St, Los Angeles, CA 90001" +259100,27in 4K Gaming Monitor,1,389.99,09/08/19 11:17,"935 Johnson St, Dallas, TX 75001" +259101,27in 4K Gaming Monitor,1,389.99,09/02/19 13:14,"689 Meadow St, Seattle, WA 98101" +259102,Wired Headphones,1,11.99,09/09/19 21:42,"999 7th St, San Francisco, CA 94016" +259103,iPhone,1,700,09/21/19 23:34,"41 2nd St, Portland, ME 04101" +259104,Google Phone,1,600,09/27/19 08:29,"457 Center St, Los Angeles, CA 90001" +259105,AA Batteries (4-pack),1,3.84,09/09/19 09:09,"385 West St, San Francisco, CA 94016" +259106,AA Batteries (4-pack),3,3.84,09/02/19 16:14,"789 Dogwood St, Boston, MA 02215" +259107,Lightning Charging Cable,1,14.95,09/16/19 13:57,"330 Dogwood St, Austin, TX 73301" +259108,AAA Batteries (4-pack),2,2.99,09/19/19 13:29,"721 Chestnut St, Boston, MA 02215" +259109,USB-C Charging Cable,1,11.95,09/27/19 23:38,"161 Lake St, Portland, OR 97035" +259110,Wired Headphones,1,11.99,09/04/19 14:14,"5 Dogwood St, Austin, TX 73301" +259111,USB-C Charging Cable,1,11.95,09/07/19 13:07,"513 2nd St, New York City, NY 10001" +259112,Wired Headphones,1,11.99,09/05/19 16:56,"970 Sunset St, New York City, NY 10001" +259113,27in FHD Monitor,1,149.99,09/24/19 15:30,"521 Wilson St, New York City, NY 10001" +259114,Wired Headphones,1,11.99,09/06/19 13:30,"882 Wilson St, Seattle, WA 98101" +259115,Lightning Charging Cable,1,14.95,09/24/19 16:25,"747 Maple St, San Francisco, CA 94016" +259116,Wired Headphones,1,11.99,09/20/19 19:58,"728 Hickory St, New York City, NY 10001" +259117,USB-C Charging Cable,1,11.95,09/11/19 20:55,"781 6th St, San Francisco, CA 94016" +259118,Wired Headphones,1,11.99,09/19/19 09:36,"968 1st St, Atlanta, GA 30301" +259119,27in 4K Gaming Monitor,1,389.99,09/09/19 20:14,"962 12th St, Seattle, WA 98101" +259120,27in FHD Monitor,1,149.99,09/02/19 12:57,"177 Walnut St, Atlanta, GA 30301" +259121,USB-C Charging Cable,1,11.95,09/28/19 10:22,"272 Hill St, Seattle, WA 98101" +259122,Flatscreen TV,1,300,09/28/19 14:43,"768 River St, Portland, OR 97035" +259123,AAA Batteries (4-pack),1,2.99,09/24/19 17:26,"270 Church St, Atlanta, GA 30301" +259124,Flatscreen TV,1,300,09/09/19 23:27,"838 Jefferson St, New York City, NY 10001" +259125,27in FHD Monitor,1,149.99,09/13/19 21:46,"634 Hill St, San Francisco, CA 94016" +259126,Lightning Charging Cable,1,14.95,09/04/19 14:00,"406 Meadow St, San Francisco, CA 94016" +259127,iPhone,1,700,09/12/19 09:57,"597 Meadow St, Atlanta, GA 30301" +259127,Lightning Charging Cable,1,14.95,09/12/19 09:57,"597 Meadow St, Atlanta, GA 30301" +259128,AA Batteries (4-pack),1,3.84,09/20/19 18:26,"720 5th St, New York City, NY 10001" +259129,Google Phone,1,600,09/08/19 19:37,"403 Main St, Austin, TX 73301" +259130,USB-C Charging Cable,1,11.95,09/24/19 21:41,"464 4th St, Los Angeles, CA 90001" +259131,Lightning Charging Cable,2,14.95,09/10/19 20:06,"257 6th St, New York City, NY 10001" +259132,AA Batteries (4-pack),1,3.84,09/30/19 15:54,"749 Pine St, Boston, MA 02215" +259133,Apple Airpods Headphones,1,150,09/27/19 10:34,"457 8th St, Boston, MA 02215" +259134,USB-C Charging Cable,1,11.95,09/14/19 04:08,"473 8th St, Austin, TX 73301" +259135,USB-C Charging Cable,1,11.95,09/02/19 18:22,"206 Forest St, Boston, MA 02215" +259136,AA Batteries (4-pack),1,3.84,09/05/19 12:36,"777 Lakeview St, Portland, OR 97035" +259137,Lightning Charging Cable,1,14.95,09/02/19 19:31,"192 Adams St, Los Angeles, CA 90001" +259137,Lightning Charging Cable,1,14.95,09/02/19 19:31,"192 Adams St, Los Angeles, CA 90001" +259138,USB-C Charging Cable,1,11.95,09/02/19 14:10,"164 Church St, New York City, NY 10001" +259139,ThinkPad Laptop,1,999.99,09/04/19 17:40,"426 Spruce St, Dallas, TX 75001" +259140,Bose SoundSport Headphones,1,99.99,09/24/19 09:34,"356 Elm St, Los Angeles, CA 90001" +259141,USB-C Charging Cable,1,11.95,09/16/19 22:09,"584 South St, Seattle, WA 98101" +259142,iPhone,1,700,09/17/19 09:34,"676 Main St, New York City, NY 10001" +259142,Apple Airpods Headphones,1,150,09/17/19 09:34,"676 Main St, New York City, NY 10001" +259143,Apple Airpods Headphones,1,150,09/06/19 09:39,"256 13th St, Dallas, TX 75001" +259144,USB-C Charging Cable,1,11.95,09/23/19 11:11,"442 Jackson St, San Francisco, CA 94016" +259145,iPhone,1,700,09/06/19 10:51,"713 Johnson St, San Francisco, CA 94016" +259145,Lightning Charging Cable,1,14.95,09/06/19 10:51,"713 Johnson St, San Francisco, CA 94016" +259146,USB-C Charging Cable,1,11.95,09/26/19 19:00,"177 1st St, San Francisco, CA 94016" +259147,AA Batteries (4-pack),1,3.84,09/25/19 12:40,"552 Forest St, Los Angeles, CA 90001" +259148,Apple Airpods Headphones,1,150,09/27/19 23:53,"187 13th St, San Francisco, CA 94016" +259149,AAA Batteries (4-pack),3,2.99,09/06/19 16:23,"853 Maple St, Boston, MA 02215" +259150,AA Batteries (4-pack),3,3.84,09/08/19 10:48,"725 Sunset St, Dallas, TX 75001" +259151,Lightning Charging Cable,1,14.95,09/04/19 12:30,"465 Maple St, Seattle, WA 98101" +259152,AA Batteries (4-pack),2,3.84,09/20/19 06:38,"245 South St, Los Angeles, CA 90001" +259153,AA Batteries (4-pack),1,3.84,09/10/19 08:47,"506 Dogwood St, Dallas, TX 75001" +259154,Wired Headphones,1,11.99,09/30/19 15:27,"64 8th St, Boston, MA 02215" +259155,USB-C Charging Cable,1,11.95,09/15/19 07:48,"243 Ridge St, San Francisco, CA 94016" +259156,Bose SoundSport Headphones,1,99.99,09/08/19 10:29,"11 7th St, San Francisco, CA 94016" +259157,Flatscreen TV,1,300,09/23/19 19:18,"3 Church St, Seattle, WA 98101" +259158,27in FHD Monitor,1,149.99,09/16/19 10:58,"221 Jackson St, Austin, TX 73301" +259159,34in Ultrawide Monitor,1,379.99,09/10/19 17:26,"750 Hickory St, Atlanta, GA 30301" +259160,Bose SoundSport Headphones,2,99.99,09/28/19 15:02,"393 Ridge St, Los Angeles, CA 90001" +259161,Macbook Pro Laptop,1,1700,09/26/19 19:28,"802 Washington St, New York City, NY 10001" +259162,20in Monitor,1,109.99,09/01/19 11:38,"471 Park St, San Francisco, CA 94016" +259163,AA Batteries (4-pack),2,3.84,09/29/19 20:30,"69 Wilson St, Los Angeles, CA 90001" +259164,Wired Headphones,1,11.99,09/20/19 13:07,"457 North St, San Francisco, CA 94016" +259165,27in FHD Monitor,1,149.99,09/14/19 16:42,"220 8th St, New York City, NY 10001" +259166,Bose SoundSport Headphones,1,99.99,09/30/19 16:21,"102 Chestnut St, Boston, MA 02215" +259167,USB-C Charging Cable,1,11.95,09/10/19 21:14,"675 Willow St, San Francisco, CA 94016" +259168,Lightning Charging Cable,1,14.95,09/10/19 10:13,"220 Hickory St, Boston, MA 02215" +259169,Lightning Charging Cable,1,14.95,09/18/19 11:09,"256 Hickory St, Austin, TX 73301" +259170,Apple Airpods Headphones,1,150,09/07/19 20:28,"330 Meadow St, Atlanta, GA 30301" +259171,Lightning Charging Cable,1,14.95,09/12/19 19:28,"134 Hickory St, San Francisco, CA 94016" +259172,27in FHD Monitor,1,149.99,09/20/19 13:53,"293 Adams St, Dallas, TX 75001" +259173,Macbook Pro Laptop,1,1700,09/22/19 12:49,"146 Church St, San Francisco, CA 94016" +259174,ThinkPad Laptop,1,999.99,09/04/19 22:08,"970 Pine St, New York City, NY 10001" +259175,LG Dryer,1,600.0,09/23/19 14:59,"646 Dogwood St, Portland, ME 04101" +259176,AA Batteries (4-pack),1,3.84,09/24/19 19:22,"90 Ridge St, Seattle, WA 98101" +259177,27in 4K Gaming Monitor,1,389.99,09/18/19 14:04,"849 Forest St, Los Angeles, CA 90001" +259178,27in 4K Gaming Monitor,1,389.99,09/03/19 01:24,"863 6th St, San Francisco, CA 94016" +259179,34in Ultrawide Monitor,1,379.99,09/01/19 21:19,"273 7th St, New York City, NY 10001" +259180,Lightning Charging Cable,1,14.95,09/06/19 02:48,"394 South St, San Francisco, CA 94016" +259181,Apple Airpods Headphones,1,150,09/24/19 11:50,"31 Walnut St, New York City, NY 10001" +259182,Lightning Charging Cable,1,14.95,09/23/19 11:23,"123 11th St, Seattle, WA 98101" +259183,27in FHD Monitor,1,149.99,09/23/19 01:09,"660 Washington St, Boston, MA 02215" +259184,Flatscreen TV,1,300,09/17/19 19:51,"350 North St, Dallas, TX 75001" +259185,Wired Headphones,1,11.99,09/17/19 18:59,"658 Center St, San Francisco, CA 94016" +259186,Bose SoundSport Headphones,1,99.99,09/14/19 18:24,"10 Jackson St, New York City, NY 10001" +259187,USB-C Charging Cable,1,11.95,09/30/19 09:50,"543 West St, Boston, MA 02215" +259188,AA Batteries (4-pack),1,3.84,09/11/19 11:56,"87 Church St, New York City, NY 10001" +259189,Wired Headphones,1,11.99,09/07/19 21:30,"281 Hill St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +259190,27in 4K Gaming Monitor,1,389.99,09/18/19 11:23,"894 Willow St, San Francisco, CA 94016" +259191,iPhone,1,700,09/14/19 15:01,"318 Center St, Los Angeles, CA 90001" +259192,AAA Batteries (4-pack),1,2.99,09/30/19 21:34,"461 Lake St, San Francisco, CA 94016" +259193,Bose SoundSport Headphones,1,99.99,09/22/19 23:06,"700 4th St, San Francisco, CA 94016" +259194,Lightning Charging Cable,1,14.95,09/05/19 18:32,"818 Highland St, Boston, MA 02215" +259195,Bose SoundSport Headphones,1,99.99,09/07/19 18:50,"124 Sunset St, Atlanta, GA 30301" +259196,Flatscreen TV,1,300,09/17/19 17:32,"416 Ridge St, Atlanta, GA 30301" +259197,27in FHD Monitor,1,149.99,09/15/19 19:42,"247 Adams St, New York City, NY 10001" +259198,AA Batteries (4-pack),1,3.84,09/03/19 10:54,"614 Washington St, San Francisco, CA 94016" +259199,AAA Batteries (4-pack),3,2.99,09/19/19 11:07,"885 Pine St, San Francisco, CA 94016" +259200,AA Batteries (4-pack),1,3.84,09/11/19 17:46,"633 13th St, San Francisco, CA 94016" +259201,27in 4K Gaming Monitor,1,389.99,09/09/19 21:33,"185 13th St, New York City, NY 10001" +259202,Wired Headphones,1,11.99,09/24/19 11:42,"646 Lake St, Los Angeles, CA 90001" +259203,AA Batteries (4-pack),1,3.84,09/11/19 12:17,"824 Lincoln St, Atlanta, GA 30301" +259204,iPhone,1,700,09/17/19 18:38,"573 Lake St, San Francisco, CA 94016" +259205,Vareebadd Phone,1,400,09/15/19 16:29,"10 10th St, Boston, MA 02215" +259206,AA Batteries (4-pack),1,3.84,09/08/19 21:01,"628 Center St, San Francisco, CA 94016" +259207,USB-C Charging Cable,1,11.95,09/26/19 20:48,"640 Willow St, Portland, ME 04101" +259208,Flatscreen TV,1,300,09/16/19 08:06,"436 Adams St, Los Angeles, CA 90001" +259209,27in 4K Gaming Monitor,1,389.99,09/10/19 15:09,"178 Ridge St, Boston, MA 02215" +259210,Macbook Pro Laptop,1,1700,09/30/19 21:18,"103 Forest St, San Francisco, CA 94016" +259211,27in FHD Monitor,1,149.99,09/18/19 11:36,"380 10th St, Austin, TX 73301" +259212,AAA Batteries (4-pack),1,2.99,09/24/19 20:49,"683 Pine St, Los Angeles, CA 90001" +259213,34in Ultrawide Monitor,1,379.99,09/20/19 09:11,"448 South St, Los Angeles, CA 90001" +259214,34in Ultrawide Monitor,1,379.99,09/19/19 14:11,"944 Johnson St, San Francisco, CA 94016" +259215,AA Batteries (4-pack),2,3.84,09/09/19 10:28,"382 4th St, Boston, MA 02215" +259216,Macbook Pro Laptop,1,1700,09/09/19 14:22,"126 Hill St, Boston, MA 02215" +259217,AA Batteries (4-pack),1,3.84,09/08/19 19:16,"198 Ridge St, New York City, NY 10001" +259218,Bose SoundSport Headphones,1,99.99,09/18/19 04:40,"821 North St, New York City, NY 10001" +259219,Flatscreen TV,1,300,09/14/19 15:25,"617 Meadow St, Los Angeles, CA 90001" +259220,AAA Batteries (4-pack),1,2.99,09/05/19 10:34,"685 Cherry St, Atlanta, GA 30301" +259221,AAA Batteries (4-pack),3,2.99,09/14/19 21:49,"614 13th St, San Francisco, CA 94016" +259222,27in 4K Gaming Monitor,1,389.99,09/13/19 10:57,"219 West St, Los Angeles, CA 90001" +259223,AAA Batteries (4-pack),2,2.99,09/20/19 11:22,"139 Maple St, Dallas, TX 75001" +259224,AA Batteries (4-pack),2,3.84,09/13/19 18:04,"623 Dogwood St, Seattle, WA 98101" +259225,Apple Airpods Headphones,1,150,09/25/19 21:28,"682 5th St, Los Angeles, CA 90001" +259226,Lightning Charging Cable,1,14.95,09/24/19 20:34,"894 Adams St, San Francisco, CA 94016" +259227,Wired Headphones,1,11.99,09/04/19 13:55,"341 Wilson St, San Francisco, CA 94016" +259228,27in FHD Monitor,1,149.99,09/29/19 19:27,"269 Maple St, Atlanta, GA 30301" +259229,Lightning Charging Cable,1,14.95,09/27/19 23:52,"981 5th St, San Francisco, CA 94016" +259230,27in FHD Monitor,1,149.99,09/07/19 12:56,"906 1st St, Seattle, WA 98101" +259231,AAA Batteries (4-pack),1,2.99,09/25/19 16:36,"306 Adams St, Boston, MA 02215" +259232,34in Ultrawide Monitor,1,379.99,09/07/19 01:01,"387 9th St, New York City, NY 10001" +259233,AA Batteries (4-pack),1,3.84,09/06/19 15:51,"552 5th St, New York City, NY 10001" +259234,AAA Batteries (4-pack),2,2.99,09/13/19 00:36,"424 Washington St, Portland, ME 04101" +259235,Lightning Charging Cable,1,14.95,09/15/19 12:57,"102 Chestnut St, New York City, NY 10001" +259236,iPhone,1,700,09/15/19 21:11,"332 4th St, Boston, MA 02215" +259237,AA Batteries (4-pack),2,3.84,09/03/19 07:24,"256 Spruce St, Los Angeles, CA 90001" +259238,Lightning Charging Cable,1,14.95,09/09/19 12:44,"950 Jefferson St, Atlanta, GA 30301" +259239,Wired Headphones,2,11.99,09/06/19 19:02,"308 7th St, Boston, MA 02215" +259240,Wired Headphones,1,11.99,09/13/19 06:55,"536 Cherry St, Dallas, TX 75001" +259241,Apple Airpods Headphones,1,150,09/23/19 14:20,"891 4th St, San Francisco, CA 94016" +259242,USB-C Charging Cable,1,11.95,09/22/19 21:10,"879 Maple St, Seattle, WA 98101" +259243,27in 4K Gaming Monitor,1,389.99,09/25/19 18:38,"732 Sunset St, San Francisco, CA 94016" +259244,Lightning Charging Cable,1,14.95,09/27/19 20:43,"890 2nd St, Seattle, WA 98101" +259245,27in FHD Monitor,1,149.99,09/30/19 08:17,"477 Cherry St, New York City, NY 10001" +259246,USB-C Charging Cable,1,11.95,09/23/19 12:27,"623 Walnut St, San Francisco, CA 94016" +259247,27in 4K Gaming Monitor,1,389.99,09/21/19 11:09,"431 Wilson St, Los Angeles, CA 90001" +259248,USB-C Charging Cable,2,11.95,09/29/19 20:10,"515 13th St, Boston, MA 02215" +259249,USB-C Charging Cable,1,11.95,09/25/19 22:48,"428 Center St, New York City, NY 10001" +259250,Google Phone,1,600,09/05/19 21:53,"246 Ridge St, San Francisco, CA 94016" +259251,Google Phone,1,600,09/30/19 15:51,"98 Church St, New York City, NY 10001" +259252,Lightning Charging Cable,1,14.95,09/22/19 08:06,"165 Forest St, Dallas, TX 75001" +259253,USB-C Charging Cable,1,11.95,09/18/19 14:47,"452 Dogwood St, San Francisco, CA 94016" +259254,Wired Headphones,1,11.99,09/02/19 18:33,"206 6th St, Boston, MA 02215" +259255,Wired Headphones,1,11.99,09/04/19 18:57,"655 South St, San Francisco, CA 94016" +259256,ThinkPad Laptop,1,999.99,09/24/19 01:41,"515 Hill St, San Francisco, CA 94016" +259257,Lightning Charging Cable,1,14.95,09/15/19 00:58,"746 Main St, Seattle, WA 98101" +,,,,, +259258,AA Batteries (4-pack),1,3.84,09/25/19 13:56,"517 Maple St, San Francisco, CA 94016" +259259,Bose SoundSport Headphones,1,99.99,09/06/19 11:25,"66 Johnson St, Los Angeles, CA 90001" +259260,Apple Airpods Headphones,1,150,09/25/19 10:49,"547 Lake St, Seattle, WA 98101" +259261,Bose SoundSport Headphones,1,99.99,09/07/19 11:01,"651 Lincoln St, Portland, OR 97035" +259262,Wired Headphones,1,11.99,09/10/19 19:31,"122 North St, Portland, OR 97035" +259263,20in Monitor,1,109.99,09/15/19 18:57,"127 2nd St, Seattle, WA 98101" +259264,Lightning Charging Cable,1,14.95,09/08/19 12:35,"880 North St, San Francisco, CA 94016" +259265,AA Batteries (4-pack),2,3.84,09/04/19 13:21,"804 9th St, Seattle, WA 98101" +259266,ThinkPad Laptop,1,999.99,09/17/19 16:50,"887 Hill St, Portland, OR 97035" +259267,Macbook Pro Laptop,1,1700,09/17/19 20:39,"304 10th St, San Francisco, CA 94016" +259268,USB-C Charging Cable,1,11.95,09/28/19 17:21,"265 14th St, Dallas, TX 75001" +259269,AAA Batteries (4-pack),1,2.99,09/01/19 15:36,"885 Lincoln St, Los Angeles, CA 90001" +259270,USB-C Charging Cable,2,11.95,09/25/19 19:46,"823 14th St, San Francisco, CA 94016" +259271,Apple Airpods Headphones,1,150,09/15/19 20:33,"497 Main St, Los Angeles, CA 90001" +259272,AAA Batteries (4-pack),4,2.99,09/10/19 18:08,"98 Johnson St, San Francisco, CA 94016" +259273,USB-C Charging Cable,1,11.95,09/05/19 01:54,"468 10th St, San Francisco, CA 94016" +259274,Apple Airpods Headphones,1,150,09/08/19 21:28,"854 Ridge St, Portland, OR 97035" +259275,USB-C Charging Cable,1,11.95,09/14/19 23:07,"609 5th St, Los Angeles, CA 90001" +259276,Apple Airpods Headphones,1,150,09/02/19 15:42,"477 Meadow St, New York City, NY 10001" +259277,ThinkPad Laptop,1,999.99,09/02/19 13:03,"658 Hill St, Dallas, TX 75001" +259278,Lightning Charging Cable,1,14.95,09/04/19 22:58,"353 10th St, Dallas, TX 75001" +259279,USB-C Charging Cable,1,11.95,09/12/19 16:11,"115 Park St, San Francisco, CA 94016" +259280,Wired Headphones,1,11.99,09/28/19 15:09,"489 4th St, Portland, ME 04101" +259281,AAA Batteries (4-pack),1,2.99,09/26/19 16:15,"444 River St, Boston, MA 02215" +259282,Bose SoundSport Headphones,1,99.99,09/19/19 11:16,"122 Hill St, Los Angeles, CA 90001" +259283,Bose SoundSport Headphones,1,99.99,09/15/19 20:17,"915 River St, San Francisco, CA 94016" +259284,Lightning Charging Cable,1,14.95,09/22/19 18:08,"621 Willow St, New York City, NY 10001" +259285,USB-C Charging Cable,1,11.95,09/08/19 20:46,"198 7th St, San Francisco, CA 94016" +259286,USB-C Charging Cable,1,11.95,09/11/19 09:56,"444 Chestnut St, Atlanta, GA 30301" +259287,Apple Airpods Headphones,1,150,09/10/19 11:13,"952 Adams St, Atlanta, GA 30301" +259288,Apple Airpods Headphones,1,150,09/12/19 16:35,"649 Lincoln St, Los Angeles, CA 90001" +259289,Apple Airpods Headphones,1,150,09/18/19 09:29,"804 River St, Los Angeles, CA 90001" +259290,27in 4K Gaming Monitor,1,389.99,09/30/19 16:17,"429 Wilson St, San Francisco, CA 94016" +259291,Lightning Charging Cable,1,14.95,09/21/19 10:44,"467 7th St, Boston, MA 02215" +259292,AAA Batteries (4-pack),3,2.99,09/02/19 11:40,"133 Maple St, New York City, NY 10001" +259293,AAA Batteries (4-pack),1,2.99,09/18/19 22:13,"714 River St, Los Angeles, CA 90001" +259294,iPhone,1,700,09/27/19 13:15,"124 Elm St, Dallas, TX 75001" +259294,Wired Headphones,1,11.99,09/27/19 13:15,"124 Elm St, Dallas, TX 75001" +259295,27in FHD Monitor,1,149.99,09/06/19 22:07,"688 Ridge St, Seattle, WA 98101" +259296,27in 4K Gaming Monitor,1,389.99,09/05/19 11:09,"251 West St, Dallas, TX 75001" +259297,Bose SoundSport Headphones,1,99.99,09/01/19 19:06,"388 Park St, San Francisco, CA 94016" +259298,27in FHD Monitor,1,149.99,09/09/19 20:35,"590 6th St, San Francisco, CA 94016" +259299,AA Batteries (4-pack),1,3.84,09/21/19 21:38,"81 Chestnut St, New York City, NY 10001" +259300,AA Batteries (4-pack),1,3.84,09/11/19 11:16,"183 Hill St, San Francisco, CA 94016" +259301,34in Ultrawide Monitor,1,379.99,09/02/19 23:05,"266 Walnut St, Dallas, TX 75001" +259302,34in Ultrawide Monitor,1,379.99,09/17/19 11:24,"581 10th St, New York City, NY 10001" +259303,USB-C Charging Cable,1,11.95,09/27/19 22:17,"388 Chestnut St, Boston, MA 02215" +259304,27in FHD Monitor,1,149.99,09/06/19 14:38,"151 1st St, Atlanta, GA 30301" +259305,Flatscreen TV,1,300,09/11/19 20:30,"595 River St, Los Angeles, CA 90001" +259306,34in Ultrawide Monitor,1,379.99,09/22/19 17:31,"87 Hickory St, Los Angeles, CA 90001" +259307,27in 4K Gaming Monitor,1,389.99,09/01/19 19:00,"778 8th St, Boston, MA 02215" +259308,AAA Batteries (4-pack),1,2.99,09/07/19 08:52,"669 2nd St, Austin, TX 73301" +259309,Wired Headphones,1,11.99,09/04/19 21:06,"60 Elm St, San Francisco, CA 94016" +259310,Lightning Charging Cable,2,14.95,09/29/19 14:02,"395 2nd St, Dallas, TX 75001" +259311,AAA Batteries (4-pack),1,2.99,09/03/19 18:31,"342 Church St, Los Angeles, CA 90001" +259312,iPhone,1,700,09/24/19 21:28,"388 Main St, Los Angeles, CA 90001" +259313,Google Phone,1,600,09/22/19 12:14,"154 Adams St, Boston, MA 02215" +259313,USB-C Charging Cable,1,11.95,09/22/19 12:14,"154 Adams St, Boston, MA 02215" +259314,USB-C Charging Cable,1,11.95,09/06/19 11:14,"733 4th St, Los Angeles, CA 90001" +259315,20in Monitor,1,109.99,09/07/19 09:51,"953 Lake St, New York City, NY 10001" +259316,USB-C Charging Cable,1,11.95,09/19/19 07:44,"863 North St, Atlanta, GA 30301" +259317,AA Batteries (4-pack),1,3.84,09/17/19 06:56,"808 Wilson St, Boston, MA 02215" +259318,Lightning Charging Cable,1,14.95,09/05/19 22:37,"504 Dogwood St, Atlanta, GA 30301" +259319,27in 4K Gaming Monitor,1,389.99,09/30/19 07:55,"924 7th St, Austin, TX 73301" +259320,AAA Batteries (4-pack),1,2.99,09/21/19 17:58,"892 2nd St, Portland, OR 97035" +259321,27in FHD Monitor,1,149.99,09/29/19 11:27,"990 West St, Boston, MA 02215" +259322,Flatscreen TV,1,300,09/29/19 16:03,"503 Washington St, Atlanta, GA 30301" +259323,Wired Headphones,1,11.99,09/19/19 23:01,"587 North St, Atlanta, GA 30301" +259324,Wired Headphones,1,11.99,09/27/19 13:14,"280 12th St, Portland, OR 97035" +259325,USB-C Charging Cable,1,11.95,09/29/19 05:42,"543 Pine St, San Francisco, CA 94016" +259326,Bose SoundSport Headphones,1,99.99,09/15/19 21:00,"470 Main St, Austin, TX 73301" +259327,Lightning Charging Cable,1,14.95,09/24/19 13:07,"375 10th St, Seattle, WA 98101" +259328,Bose SoundSport Headphones,1,99.99,09/02/19 16:55,"224 Church St, Boston, MA 02215" +259329,AA Batteries (4-pack),1,3.84,09/15/19 22:12,"326 Lake St, Los Angeles, CA 90001" +259330,AA Batteries (4-pack),2,3.84,09/04/19 21:52,"455 2nd St, New York City, NY 10001" +259331,USB-C Charging Cable,1,11.95,09/21/19 20:10,"504 Lake St, Portland, ME 04101" +259332,Lightning Charging Cable,1,14.95,09/03/19 14:18,"472 10th St, Seattle, WA 98101" +259333,iPhone,1,700,09/07/19 06:28,"791 Sunset St, Los Angeles, CA 90001" +259334,Wired Headphones,1,11.99,09/14/19 16:18,"604 5th St, Atlanta, GA 30301" +259335,AAA Batteries (4-pack),1,2.99,09/02/19 15:42,"85 Dogwood St, New York City, NY 10001" +259336,AA Batteries (4-pack),1,3.84,09/22/19 12:41,"554 1st St, New York City, NY 10001" +259337,AAA Batteries (4-pack),1,2.99,09/25/19 19:45,"948 Cedar St, Boston, MA 02215" +259338,Apple Airpods Headphones,1,150,09/19/19 14:48,"815 Hill St, Boston, MA 02215" +259339,USB-C Charging Cable,1,11.95,09/15/19 18:51,"962 4th St, New York City, NY 10001" +259340,Wired Headphones,1,11.99,09/19/19 02:00,"546 10th St, Los Angeles, CA 90001" +259341,LG Washing Machine,1,600.0,09/12/19 10:34,"372 14th St, Dallas, TX 75001" +259342,AA Batteries (4-pack),2,3.84,09/20/19 11:18,"870 Ridge St, Boston, MA 02215" +259343,AAA Batteries (4-pack),1,2.99,09/22/19 12:43,"863 7th St, San Francisco, CA 94016" +259344,Wired Headphones,1,11.99,09/09/19 08:07,"338 Forest St, Los Angeles, CA 90001" +259345,Lightning Charging Cable,1,14.95,09/15/19 12:56,"89 River St, Portland, ME 04101" +259346,AAA Batteries (4-pack),1,2.99,09/03/19 16:16,"274 Cedar St, San Francisco, CA 94016" +259347,iPhone,1,700,09/02/19 12:33,"20 Hickory St, Atlanta, GA 30301" +259348,USB-C Charging Cable,1,11.95,09/17/19 20:48,"136 8th St, Seattle, WA 98101" +259349,AA Batteries (4-pack),1,3.84,09/15/19 10:46,"623 West St, Portland, OR 97035" +259350,27in 4K Gaming Monitor,1,389.99,09/22/19 17:12,"549 11th St, Portland, OR 97035" +259351,AA Batteries (4-pack),3,3.84,09/27/19 22:09,"336 River St, Dallas, TX 75001" +259352,AAA Batteries (4-pack),3,2.99,09/10/19 18:26,"712 4th St, Boston, MA 02215" +259353,AA Batteries (4-pack),2,3.84,09/02/19 21:11,"446 Forest St, San Francisco, CA 94016" +259354,Lightning Charging Cable,1,14.95,09/25/19 12:28,"917 Hill St, Dallas, TX 75001" +259355,Lightning Charging Cable,1,14.95,09/29/19 05:43,"987 Lakeview St, San Francisco, CA 94016" +259356,USB-C Charging Cable,1,11.95,09/17/19 22:56,"924 Jackson St, San Francisco, CA 94016" +259357,AAA Batteries (4-pack),1,2.99,09/17/19 00:42,"175 Walnut St, Boston, MA 02215" +259358,27in 4K Gaming Monitor,1,389.99,09/25/19 16:07,"415 Jackson St, Portland, OR 97035" +259359,AAA Batteries (4-pack),4,2.99,09/14/19 19:23,"69 Walnut St, Boston, MA 02215" +259360,USB-C Charging Cable,1,11.95,09/02/19 19:30,"579 7th St, San Francisco, CA 94016" +259361,AA Batteries (4-pack),1,3.84,09/08/19 21:47,"430 West St, Portland, OR 97035" +259362,34in Ultrawide Monitor,1,379.99,09/09/19 21:01,"279 6th St, San Francisco, CA 94016" +259363,Flatscreen TV,1,300,09/19/19 19:27,"177 West St, Los Angeles, CA 90001" +259364,Flatscreen TV,1,300,09/16/19 13:15,"243 West St, Dallas, TX 75001" +259365,34in Ultrawide Monitor,1,379.99,09/24/19 13:56,"248 North St, Seattle, WA 98101" +259366,iPhone,1,700,09/30/19 19:01,"650 Chestnut St, Boston, MA 02215" +259367,Apple Airpods Headphones,1,150,09/21/19 21:53,"328 10th St, San Francisco, CA 94016" +259368,Bose SoundSport Headphones,1,99.99,09/05/19 17:18,"718 Highland St, Los Angeles, CA 90001" +259369,Apple Airpods Headphones,1,150,09/14/19 08:02,"758 Forest St, Dallas, TX 75001" +259370,iPhone,1,700,09/10/19 08:15,"120 Sunset St, Atlanta, GA 30301" +259370,Lightning Charging Cable,1,14.95,09/10/19 08:15,"120 Sunset St, Atlanta, GA 30301" +259371,AA Batteries (4-pack),1,3.84,09/20/19 15:00,"958 Hickory St, Portland, OR 97035" +259372,Apple Airpods Headphones,1,150,09/13/19 10:25,"892 Church St, San Francisco, CA 94016" +259373,Lightning Charging Cable,1,14.95,09/29/19 20:04,"218 Elm St, New York City, NY 10001" +259374,Wired Headphones,1,11.99,09/13/19 19:14,"514 11th St, Seattle, WA 98101" +259375,Lightning Charging Cable,1,14.95,09/25/19 21:10,"641 12th St, New York City, NY 10001" +259376,Google Phone,1,600,09/18/19 18:24,"23 11th St, Los Angeles, CA 90001" +259377,27in FHD Monitor,1,149.99,09/15/19 23:12,"646 Forest St, Los Angeles, CA 90001" +259378,Google Phone,1,600,09/09/19 14:14,"577 Meadow St, San Francisco, CA 94016" +259379,ThinkPad Laptop,1,999.99,09/13/19 05:48,"7 5th St, Atlanta, GA 30301" +259380,34in Ultrawide Monitor,1,379.99,09/14/19 02:31,"325 Meadow St, San Francisco, CA 94016" +259381,Bose SoundSport Headphones,1,99.99,09/09/19 12:37,"252 7th St, New York City, NY 10001" +259382,USB-C Charging Cable,1,11.95,09/07/19 15:13,"108 Walnut St, Portland, OR 97035" +259383,USB-C Charging Cable,1,11.95,09/07/19 14:31,"741 Johnson St, New York City, NY 10001" +259384,Lightning Charging Cable,1,14.95,09/30/19 12:25,"169 6th St, San Francisco, CA 94016" +259385,Apple Airpods Headphones,1,150,09/16/19 10:24,"113 South St, Los Angeles, CA 90001" +259386,AA Batteries (4-pack),3,3.84,09/23/19 10:48,"617 Jackson St, Austin, TX 73301" +259387,AAA Batteries (4-pack),1,2.99,09/06/19 21:15,"875 Jackson St, Dallas, TX 75001" +259388,Flatscreen TV,1,300,09/10/19 16:24,"652 Adams St, Boston, MA 02215" +259389,Apple Airpods Headphones,1,150,09/25/19 16:03,"516 2nd St, San Francisco, CA 94016" +259390,Apple Airpods Headphones,1,150,09/17/19 23:47,"817 11th St, Los Angeles, CA 90001" +259391,Flatscreen TV,1,300,09/10/19 13:45,"98 Highland St, San Francisco, CA 94016" +259392,Flatscreen TV,1,300,09/19/19 07:16,"925 Lake St, Seattle, WA 98101" +259393,Wired Headphones,1,11.99,09/27/19 20:22,"522 Pine St, Seattle, WA 98101" +259394,34in Ultrawide Monitor,1,379.99,09/22/19 11:25,"351 5th St, San Francisco, CA 94016" +259395,Wired Headphones,1,11.99,09/23/19 16:27,"218 1st St, Boston, MA 02215" +259396,iPhone,1,700,09/17/19 14:53,"335 Maple St, Dallas, TX 75001" +259396,Lightning Charging Cable,1,14.95,09/17/19 14:53,"335 Maple St, Dallas, TX 75001" +259397,Google Phone,1,600,09/04/19 14:50,"422 8th St, New York City, NY 10001" +259398,Bose SoundSport Headphones,1,99.99,09/17/19 15:47,"295 Pine St, Boston, MA 02215" +259399,Wired Headphones,1,11.99,09/03/19 21:07,"724 Willow St, Boston, MA 02215" +259400,AAA Batteries (4-pack),1,2.99,09/16/19 03:01,"842 Jefferson St, Atlanta, GA 30301" +259401,USB-C Charging Cable,1,11.95,09/24/19 20:15,"450 6th St, Los Angeles, CA 90001" +259402,Lightning Charging Cable,1,14.95,09/14/19 13:19,"720 10th St, Los Angeles, CA 90001" +259403,Wired Headphones,1,11.99,09/03/19 09:33,"973 6th St, Los Angeles, CA 90001" +259404,AAA Batteries (4-pack),2,2.99,09/26/19 17:28,"486 Park St, San Francisco, CA 94016" +259405,ThinkPad Laptop,1,999.99,09/21/19 11:55,"386 Center St, San Francisco, CA 94016" +259406,USB-C Charging Cable,1,11.95,09/09/19 17:53,"562 9th St, Los Angeles, CA 90001" +259407,AAA Batteries (4-pack),1,2.99,09/07/19 01:16,"622 South St, Atlanta, GA 30301" +259408,LG Washing Machine,1,600.0,09/28/19 11:44,"511 2nd St, Austin, TX 73301" +259409,Lightning Charging Cable,1,14.95,09/08/19 11:28,"741 11th St, Austin, TX 73301" +259410,USB-C Charging Cable,1,11.95,09/04/19 10:34,"185 7th St, San Francisco, CA 94016" +259411,27in 4K Gaming Monitor,1,389.99,09/09/19 17:59,"621 Lincoln St, Portland, ME 04101" +259412,Flatscreen TV,1,300,09/26/19 20:25,"114 2nd St, Seattle, WA 98101" +259413,Wired Headphones,1,11.99,09/27/19 19:55,"528 Ridge St, Austin, TX 73301" +259414,Wired Headphones,1,11.99,09/22/19 23:34,"909 Hill St, New York City, NY 10001" +259415,AAA Batteries (4-pack),1,2.99,09/10/19 20:24,"651 9th St, Seattle, WA 98101" +259416,AA Batteries (4-pack),4,3.84,09/12/19 17:57,"476 Highland St, Atlanta, GA 30301" +259417,Apple Airpods Headphones,1,150,09/15/19 23:34,"721 Lakeview St, San Francisco, CA 94016" +259418,USB-C Charging Cable,1,11.95,09/22/19 19:55,"923 Johnson St, San Francisco, CA 94016" +259419,AAA Batteries (4-pack),1,2.99,09/16/19 17:57,"25 Dogwood St, San Francisco, CA 94016" +259420,AAA Batteries (4-pack),1,2.99,09/30/19 01:39,"930 Willow St, Boston, MA 02215" +259421,AAA Batteries (4-pack),1,2.99,09/26/19 06:07,"908 Pine St, Seattle, WA 98101" +259422,AAA Batteries (4-pack),1,2.99,09/24/19 16:29,"713 Lake St, Dallas, TX 75001" +259423,USB-C Charging Cable,1,11.95,09/02/19 09:58,"732 9th St, New York City, NY 10001" +259424,AA Batteries (4-pack),4,3.84,09/24/19 10:09,"139 Main St, Los Angeles, CA 90001" +259425,27in FHD Monitor,1,149.99,09/25/19 10:52,"75 Johnson St, New York City, NY 10001" +259426,USB-C Charging Cable,3,11.95,09/29/19 18:25,"333 West St, San Francisco, CA 94016" +259427,Apple Airpods Headphones,1,150,09/20/19 00:06,"908 Wilson St, New York City, NY 10001" +259428,Apple Airpods Headphones,1,150,09/25/19 19:38,"307 Center St, Los Angeles, CA 90001" +259429,Bose SoundSport Headphones,1,99.99,09/29/19 18:40,"746 Adams St, San Francisco, CA 94016" +259429,iPhone,1,700,09/29/19 18:40,"746 Adams St, San Francisco, CA 94016" +259430,USB-C Charging Cable,1,11.95,09/24/19 08:23,"173 North St, Los Angeles, CA 90001" +259431,20in Monitor,1,109.99,09/06/19 21:23,"147 Meadow St, New York City, NY 10001" +259432,Apple Airpods Headphones,1,150,09/13/19 21:46,"631 West St, San Francisco, CA 94016" +259433,Flatscreen TV,1,300,09/08/19 10:19,"477 Lakeview St, Dallas, TX 75001" +259434,Apple Airpods Headphones,1,150,09/17/19 15:49,"734 14th St, New York City, NY 10001" +259435,Lightning Charging Cable,1,14.95,09/29/19 23:13,"865 Cedar St, Boston, MA 02215" +259436,AA Batteries (4-pack),1,3.84,09/21/19 12:23,"112 Lincoln St, San Francisco, CA 94016" +259437,Lightning Charging Cable,1,14.95,09/01/19 14:31,"15 6th St, San Francisco, CA 94016" +259438,USB-C Charging Cable,1,11.95,09/17/19 11:36,"685 8th St, Seattle, WA 98101" +259439,AAA Batteries (4-pack),1,2.99,09/01/19 20:19,"447 Cherry St, Portland, ME 04101" +259440,AAA Batteries (4-pack),1,2.99,09/29/19 06:26,"144 Dogwood St, Seattle, WA 98101" +259441,Flatscreen TV,1,300,09/23/19 00:32,"630 Hickory St, San Francisco, CA 94016" +259442,Apple Airpods Headphones,1,150,09/13/19 19:45,"338 West St, Austin, TX 73301" +259443,AA Batteries (4-pack),1,3.84,09/15/19 20:22,"479 North St, New York City, NY 10001" +259444,Google Phone,1,600,09/14/19 21:25,"899 Spruce St, San Francisco, CA 94016" +259445,AAA Batteries (4-pack),1,2.99,09/22/19 10:11,"430 Madison St, Portland, OR 97035" +259446,USB-C Charging Cable,1,11.95,09/15/19 17:46,"519 4th St, Boston, MA 02215" +259447,Flatscreen TV,1,300,09/11/19 22:40,"510 11th St, New York City, NY 10001" +259448,Macbook Pro Laptop,1,1700,09/12/19 09:11,"913 Wilson St, Los Angeles, CA 90001" +259449,ThinkPad Laptop,1,999.99,09/17/19 23:27,"89 Jefferson St, Los Angeles, CA 90001" +259450,27in FHD Monitor,1,149.99,09/26/19 09:57,"974 Elm St, San Francisco, CA 94016" +259451,AAA Batteries (4-pack),1,2.99,09/23/19 19:22,"224 Lincoln St, Atlanta, GA 30301" +259452,Apple Airpods Headphones,1,150,09/16/19 07:20,"960 Highland St, Portland, OR 97035" +259453,Wired Headphones,1,11.99,09/03/19 15:40,"172 Elm St, Portland, ME 04101" +259454,ThinkPad Laptop,1,999.99,09/05/19 13:00,"395 Adams St, Dallas, TX 75001" +259455,27in 4K Gaming Monitor,1,389.99,09/04/19 09:22,"787 River St, Austin, TX 73301" +259456,Wired Headphones,1,11.99,09/09/19 19:20,"217 Pine St, San Francisco, CA 94016" +259457,Wired Headphones,1,11.99,09/12/19 21:16,"963 Park St, Los Angeles, CA 90001" +259458,Lightning Charging Cable,1,14.95,09/22/19 18:17,"62 West St, Dallas, TX 75001" +259459,USB-C Charging Cable,1,11.95,09/14/19 15:01,"12 Center St, New York City, NY 10001" +259460,Google Phone,1,600,09/21/19 11:51,"45 Dogwood St, Los Angeles, CA 90001" +259461,Google Phone,1,600,09/22/19 21:06,"241 Washington St, San Francisco, CA 94016" +259461,Wired Headphones,1,11.99,09/22/19 21:06,"241 Washington St, San Francisco, CA 94016" +259462,USB-C Charging Cable,1,11.95,09/18/19 11:53,"989 Church St, San Francisco, CA 94016" +259463,Vareebadd Phone,1,400,09/19/19 15:07,"195 Washington St, New York City, NY 10001" +259464,Bose SoundSport Headphones,1,99.99,09/10/19 12:14,"532 1st St, Dallas, TX 75001" +259465,Wired Headphones,1,11.99,09/01/19 22:30,"973 Walnut St, Austin, TX 73301" +259466,AAA Batteries (4-pack),1,2.99,09/30/19 12:40,"733 12th St, Los Angeles, CA 90001" +259467,Wired Headphones,2,11.99,09/01/19 08:59,"439 Ridge St, Los Angeles, CA 90001" +259468,AA Batteries (4-pack),1,3.84,09/07/19 10:33,"726 2nd St, Austin, TX 73301" +259469,34in Ultrawide Monitor,1,379.99,09/26/19 14:05,"790 Wilson St, Dallas, TX 75001" +259470,Lightning Charging Cable,1,14.95,09/24/19 16:13,"746 Walnut St, San Francisco, CA 94016" +259471,Wired Headphones,1,11.99,09/30/19 21:08,"434 Jackson St, Los Angeles, CA 90001" +259472,Lightning Charging Cable,1,14.95,09/07/19 22:10,"144 10th St, New York City, NY 10001" +259473,Bose SoundSport Headphones,1,99.99,09/30/19 12:12,"854 Cedar St, San Francisco, CA 94016" +259474,Lightning Charging Cable,1,14.95,09/02/19 09:14,"525 Willow St, New York City, NY 10001" +259475,27in FHD Monitor,1,149.99,09/05/19 21:45,"855 Ridge St, Dallas, TX 75001" +259476,USB-C Charging Cable,1,11.95,09/13/19 11:48,"36 Elm St, New York City, NY 10001" +259477,USB-C Charging Cable,1,11.95,09/25/19 22:24,"154 Sunset St, Dallas, TX 75001" +259478,AAA Batteries (4-pack),3,2.99,09/22/19 15:33,"944 Lincoln St, San Francisco, CA 94016" +259479,Macbook Pro Laptop,1,1700,09/22/19 16:48,"519 Adams St, Los Angeles, CA 90001" +259479,20in Monitor,1,109.99,09/22/19 16:48,"519 Adams St, Los Angeles, CA 90001" +259480,AAA Batteries (4-pack),2,2.99,09/20/19 19:32,"235 Johnson St, San Francisco, CA 94016" +259481,Lightning Charging Cable,1,14.95,09/20/19 02:56,"553 9th St, San Francisco, CA 94016" +259482,Lightning Charging Cable,1,14.95,09/24/19 08:19,"73 Center St, Los Angeles, CA 90001" +259483,20in Monitor,1,109.99,09/07/19 16:36,"324 Lake St, Seattle, WA 98101" +259483,USB-C Charging Cable,1,11.95,09/07/19 16:36,"324 Lake St, Seattle, WA 98101" +259484,Bose SoundSport Headphones,1,99.99,09/04/19 18:19,"341 Forest St, Los Angeles, CA 90001" +259485,27in 4K Gaming Monitor,1,389.99,09/06/19 12:02,"593 Lincoln St, New York City, NY 10001" +259486,Wired Headphones,1,11.99,09/05/19 07:05,"144 Church St, Austin, TX 73301" +259487,AA Batteries (4-pack),1,3.84,09/18/19 10:50,"626 Washington St, Dallas, TX 75001" +259488,USB-C Charging Cable,1,11.95,09/11/19 20:52,"897 2nd St, Dallas, TX 75001" +259489,AAA Batteries (4-pack),1,2.99,09/19/19 13:06,"993 Hickory St, New York City, NY 10001" +259490,USB-C Charging Cable,1,11.95,09/22/19 14:55,"291 Cedar St, Atlanta, GA 30301" +259491,AA Batteries (4-pack),1,3.84,09/08/19 15:44,"61 1st St, Los Angeles, CA 90001" +259492,AAA Batteries (4-pack),1,2.99,09/24/19 12:03,"830 Adams St, San Francisco, CA 94016" +259493,iPhone,1,700,09/12/19 09:23,"776 Dogwood St, Atlanta, GA 30301" +259494,Wired Headphones,1,11.99,09/04/19 12:52,"698 Lincoln St, New York City, NY 10001" +259495,USB-C Charging Cable,1,11.95,09/05/19 15:20,"263 Hickory St, Austin, TX 73301" +259496,AA Batteries (4-pack),1,3.84,09/23/19 08:18,"470 9th St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +259497,Wired Headphones,1,11.99,09/02/19 22:39,"706 Adams St, Dallas, TX 75001" +259498,AAA Batteries (4-pack),1,2.99,09/04/19 19:59,"45 Pine St, San Francisco, CA 94016" +259499,USB-C Charging Cable,1,11.95,09/28/19 18:54,"261 Chestnut St, San Francisco, CA 94016" +259500,AAA Batteries (4-pack),1,2.99,09/05/19 02:15,"179 10th St, Los Angeles, CA 90001" +259501,34in Ultrawide Monitor,1,379.99,09/17/19 01:25,"858 Jackson St, Austin, TX 73301" +259502,Apple Airpods Headphones,1,150,09/04/19 23:05,"93 Cedar St, San Francisco, CA 94016" +259503,USB-C Charging Cable,1,11.95,09/23/19 20:44,"481 South St, New York City, NY 10001" +259504,Wired Headphones,1,11.99,09/13/19 15:18,"391 Main St, Dallas, TX 75001" +259505,iPhone,1,700,09/07/19 23:30,"187 Jefferson St, Los Angeles, CA 90001" +259506,Apple Airpods Headphones,1,150,09/10/19 18:13,"394 Lincoln St, Atlanta, GA 30301" +259507,USB-C Charging Cable,1,11.95,09/25/19 19:05,"714 Lincoln St, Los Angeles, CA 90001" +259507,AAA Batteries (4-pack),1,2.99,09/25/19 19:05,"714 Lincoln St, Los Angeles, CA 90001" +259508,iPhone,1,700,09/27/19 02:50,"926 Lincoln St, Boston, MA 02215" +259509,Vareebadd Phone,1,400,09/04/19 10:59,"135 5th St, Los Angeles, CA 90001" +259510,AAA Batteries (4-pack),2,2.99,09/02/19 13:59,"117 14th St, San Francisco, CA 94016" +259511,AA Batteries (4-pack),2,3.84,09/05/19 19:11,"937 Elm St, Austin, TX 73301" +259512,Lightning Charging Cable,1,14.95,09/09/19 14:58,"47 Main St, Portland, ME 04101" +259513,Lightning Charging Cable,1,14.95,09/30/19 09:54,"505 Ridge St, San Francisco, CA 94016" +259514,Wired Headphones,1,11.99,09/01/19 14:38,"219 Main St, Austin, TX 73301" +259515,Lightning Charging Cable,1,14.95,09/07/19 15:36,"54 13th St, Portland, OR 97035" +259516,Apple Airpods Headphones,1,150,09/12/19 14:27,"341 South St, Los Angeles, CA 90001" +259517,AA Batteries (4-pack),1,3.84,09/19/19 14:47,"580 Elm St, Portland, OR 97035" +259518,USB-C Charging Cable,1,11.95,09/11/19 19:42,"263 Park St, Atlanta, GA 30301" +259519,Macbook Pro Laptop,1,1700,09/27/19 17:42,"911 West St, New York City, NY 10001" +259520,Apple Airpods Headphones,1,150,09/29/19 15:22,"784 Madison St, Portland, ME 04101" +259521,Wired Headphones,1,11.99,09/22/19 01:20,"165 Maple St, New York City, NY 10001" +259522,AAA Batteries (4-pack),2,2.99,09/04/19 11:56,"491 Main St, New York City, NY 10001" +259523,AAA Batteries (4-pack),1,2.99,09/06/19 14:59,"390 Madison St, Austin, TX 73301" +259524,USB-C Charging Cable,1,11.95,09/27/19 13:18,"875 14th St, Portland, OR 97035" +259525,Lightning Charging Cable,1,14.95,09/04/19 12:49,"499 9th St, Seattle, WA 98101" +259526,USB-C Charging Cable,1,11.95,09/16/19 15:19,"879 Meadow St, Austin, TX 73301" +259527,Apple Airpods Headphones,1,150,09/18/19 20:42,"104 13th St, Austin, TX 73301" +259528,AA Batteries (4-pack),1,3.84,09/09/19 22:03,"735 Willow St, Austin, TX 73301" +259529,Flatscreen TV,1,300,09/27/19 09:45,"858 Church St, Dallas, TX 75001" +259530,AA Batteries (4-pack),1,3.84,09/09/19 13:04,"523 West St, Portland, OR 97035" +259531,Lightning Charging Cable,1,14.95,09/06/19 18:05,"234 Jackson St, New York City, NY 10001" +259532,Lightning Charging Cable,1,14.95,09/21/19 05:23,"118 Hill St, Dallas, TX 75001" +259533,Lightning Charging Cable,1,14.95,09/15/19 15:03,"219 7th St, San Francisco, CA 94016" +259534,AAA Batteries (4-pack),1,2.99,09/27/19 09:45,"824 Jefferson St, Seattle, WA 98101" +259535,Wired Headphones,1,11.99,09/24/19 16:32,"554 Hill St, San Francisco, CA 94016" +259536,34in Ultrawide Monitor,1,379.99,09/11/19 12:18,"357 Forest St, San Francisco, CA 94016" +259537,Bose SoundSport Headphones,1,99.99,09/24/19 13:06,"76 1st St, Atlanta, GA 30301" +259538,AA Batteries (4-pack),1,3.84,09/29/19 06:11,"784 Johnson St, San Francisco, CA 94016" +259539,Bose SoundSport Headphones,1,99.99,09/06/19 01:07,"735 Dogwood St, New York City, NY 10001" +,,,,, +259540,Google Phone,1,600,09/18/19 07:54,"521 Sunset St, Portland, OR 97035" +259540,USB-C Charging Cable,1,11.95,09/18/19 07:54,"521 Sunset St, Portland, OR 97035" +259541,iPhone,1,700,09/21/19 08:10,"841 7th St, San Francisco, CA 94016" +259542,Apple Airpods Headphones,1,150,09/09/19 15:40,"929 Church St, Atlanta, GA 30301" +259543,LG Dryer,1,600.0,09/26/19 09:46,"743 North St, Dallas, TX 75001" +259544,Wired Headphones,1,11.99,09/17/19 01:06,"18 Sunset St, Los Angeles, CA 90001" +259545,Lightning Charging Cable,1,14.95,09/21/19 12:30,"252 7th St, Los Angeles, CA 90001" +259545,ThinkPad Laptop,1,999.99,09/21/19 12:30,"252 7th St, Los Angeles, CA 90001" +259546,AAA Batteries (4-pack),3,2.99,09/05/19 11:31,"45 Chestnut St, Atlanta, GA 30301" +259547,Apple Airpods Headphones,1,150,09/24/19 15:36,"532 Washington St, San Francisco, CA 94016" +259548,Apple Airpods Headphones,1,150,09/08/19 13:30,"30 South St, Portland, OR 97035" +259549,Apple Airpods Headphones,1,150,09/22/19 18:16,"268 Chestnut St, Seattle, WA 98101" +259550,AA Batteries (4-pack),1,3.84,09/02/19 19:50,"263 Park St, Seattle, WA 98101" +259551,AA Batteries (4-pack),2,3.84,09/30/19 23:35,"378 5th St, San Francisco, CA 94016" +259552,Lightning Charging Cable,1,14.95,09/06/19 13:03,"233 12th St, Atlanta, GA 30301" +259553,AA Batteries (4-pack),1,3.84,09/06/19 13:59,"722 South St, New York City, NY 10001" +259554,Apple Airpods Headphones,1,150,09/07/19 02:49,"798 Dogwood St, Boston, MA 02215" +259555,AA Batteries (4-pack),1,3.84,09/15/19 09:55,"865 Lake St, Atlanta, GA 30301" +259556,Wired Headphones,1,11.99,09/18/19 08:35,"11 Highland St, Portland, OR 97035" +259557,Apple Airpods Headphones,1,150,09/25/19 22:27,"147 Dogwood St, Seattle, WA 98101" +259558,AAA Batteries (4-pack),3,2.99,09/21/19 06:29,"470 Jefferson St, Seattle, WA 98101" +259559,AA Batteries (4-pack),1,3.84,09/11/19 15:41,"896 Maple St, Dallas, TX 75001" +259560,AAA Batteries (4-pack),1,2.99,09/25/19 11:07,"153 Cedar St, Los Angeles, CA 90001" +259561,AA Batteries (4-pack),1,3.84,09/04/19 11:42,"937 Lake St, Atlanta, GA 30301" +259562,ThinkPad Laptop,1,999.99,09/10/19 10:52,"279 Lakeview St, Boston, MA 02215" +259563,USB-C Charging Cable,1,11.95,09/11/19 18:07,"101 Adams St, Seattle, WA 98101" +259564,Bose SoundSport Headphones,1,99.99,09/12/19 22:09,"972 Maple St, Los Angeles, CA 90001" +259565,Bose SoundSport Headphones,1,99.99,09/01/19 21:13,"146 Pine St, San Francisco, CA 94016" +259566,27in 4K Gaming Monitor,1,389.99,09/10/19 14:27,"972 Maple St, Dallas, TX 75001" +259567,Lightning Charging Cable,1,14.95,09/15/19 11:49,"763 9th St, Atlanta, GA 30301" +259568,iPhone,1,700,09/11/19 21:08,"106 Main St, Seattle, WA 98101" +259569,Wired Headphones,1,11.99,09/14/19 11:24,"186 Wilson St, Atlanta, GA 30301" +259570,AAA Batteries (4-pack),1,2.99,09/04/19 10:42,"577 Park St, Portland, OR 97035" +259571,Vareebadd Phone,1,400,09/14/19 18:39,"155 West St, Dallas, TX 75001" +259572,AA Batteries (4-pack),2,3.84,09/27/19 20:21,"732 1st St, Atlanta, GA 30301" +259573,AA Batteries (4-pack),3,3.84,09/17/19 20:22,"104 Church St, Los Angeles, CA 90001" +259574,AA Batteries (4-pack),1,3.84,09/09/19 21:31,"481 Walnut St, Los Angeles, CA 90001" +259575,Apple Airpods Headphones,1,150,09/05/19 21:27,"883 Adams St, San Francisco, CA 94016" +,,,,, +259576,Bose SoundSport Headphones,1,99.99,09/29/19 12:42,"12 Main St, Seattle, WA 98101" +259577,AAA Batteries (4-pack),1,2.99,09/13/19 22:24,"849 12th St, San Francisco, CA 94016" +259578,Lightning Charging Cable,1,14.95,09/08/19 10:41,"797 Wilson St, Los Angeles, CA 90001" +259579,Lightning Charging Cable,1,14.95,09/15/19 17:29,"492 Madison St, New York City, NY 10001" +259580,Lightning Charging Cable,1,14.95,09/30/19 09:02,"901 Spruce St, San Francisco, CA 94016" +259581,Lightning Charging Cable,1,14.95,09/16/19 15:58,"813 Jefferson St, Portland, ME 04101" +259582,iPhone,1,700,09/19/19 22:24,"145 8th St, New York City, NY 10001" +259583,iPhone,1,700,09/21/19 10:55,"413 Washington St, New York City, NY 10001" +259584,Wired Headphones,1,11.99,09/06/19 23:05,"553 8th St, Dallas, TX 75001" +259585,Apple Airpods Headphones,1,150,09/15/19 07:55,"178 Adams St, Los Angeles, CA 90001" +259586,Bose SoundSport Headphones,1,99.99,09/02/19 19:51,"585 Church St, Atlanta, GA 30301" +259587,ThinkPad Laptop,1,999.99,09/08/19 10:05,"749 Wilson St, Atlanta, GA 30301" +259588,Lightning Charging Cable,1,14.95,09/11/19 13:27,"581 Meadow St, Boston, MA 02215" +259589,USB-C Charging Cable,1,11.95,09/19/19 13:55,"956 Forest St, Austin, TX 73301" +259590,ThinkPad Laptop,1,999.99,09/06/19 18:53,"305 13th St, Portland, OR 97035" +259591,USB-C Charging Cable,1,11.95,09/05/19 10:25,"232 Maple St, Seattle, WA 98101" +259592,LG Dryer,1,600.0,09/29/19 07:43,"497 Lakeview St, Boston, MA 02215" +259593,iPhone,1,700,09/12/19 13:15,"476 Cherry St, Boston, MA 02215" +259594,Wired Headphones,1,11.99,09/30/19 08:54,"299 10th St, Dallas, TX 75001" +259595,AAA Batteries (4-pack),1,2.99,09/13/19 11:58,"23 Johnson St, San Francisco, CA 94016" +259596,Apple Airpods Headphones,1,150,09/03/19 15:16,"163 South St, Los Angeles, CA 90001" +259597,USB-C Charging Cable,1,11.95,09/16/19 07:00,"102 Hickory St, Dallas, TX 75001" +259598,27in FHD Monitor,1,149.99,09/22/19 11:08,"558 Wilson St, Dallas, TX 75001" +259599,Apple Airpods Headphones,1,150,09/25/19 11:02,"286 Meadow St, San Francisco, CA 94016" +259600,AAA Batteries (4-pack),2,2.99,09/20/19 17:29,"241 Washington St, Atlanta, GA 30301" +259601,Google Phone,1,600,09/25/19 11:17,"776 5th St, Portland, OR 97035" +259602,Wired Headphones,1,11.99,09/27/19 07:19,"424 Sunset St, Boston, MA 02215" +259603,AAA Batteries (4-pack),1,2.99,09/10/19 23:31,"474 9th St, Los Angeles, CA 90001" +259604,LG Dryer,1,600.0,09/02/19 23:17,"762 6th St, San Francisco, CA 94016" +259605,AA Batteries (4-pack),2,3.84,09/10/19 07:48,"24 1st St, Boston, MA 02215" +259605,ThinkPad Laptop,1,999.99,09/10/19 07:48,"24 1st St, Boston, MA 02215" +259606,AAA Batteries (4-pack),2,2.99,09/27/19 10:42,"863 Center St, San Francisco, CA 94016" +259607,AAA Batteries (4-pack),4,2.99,09/14/19 12:13,"367 River St, New York City, NY 10001" +259608,Wired Headphones,1,11.99,09/26/19 23:51,"918 Lake St, Boston, MA 02215" +259609,Macbook Pro Laptop,1,1700,09/24/19 14:55,"463 Maple St, San Francisco, CA 94016" +259610,Lightning Charging Cable,1,14.95,09/28/19 18:12,"920 North St, Seattle, WA 98101" +259611,Apple Airpods Headphones,1,150,09/01/19 19:13,"535 West St, New York City, NY 10001" +259612,AA Batteries (4-pack),2,3.84,10/01/19 00:03,"58 Willow St, San Francisco, CA 94016" +259613,USB-C Charging Cable,1,11.95,09/09/19 11:24,"186 Cherry St, New York City, NY 10001" +259614,AAA Batteries (4-pack),3,2.99,09/16/19 11:36,"884 South St, Los Angeles, CA 90001" +259615,USB-C Charging Cable,1,11.95,09/28/19 13:53,"472 14th St, New York City, NY 10001" +259616,Flatscreen TV,1,300,09/30/19 14:33,"805 1st St, Seattle, WA 98101" +259617,20in Monitor,1,109.99,10/01/19 01:31,"336 Maple St, Austin, TX 73301" +259618,Wired Headphones,1,11.99,09/05/19 21:03,"316 4th St, Dallas, TX 75001" +259619,AA Batteries (4-pack),1,3.84,09/06/19 04:19,"240 Chestnut St, San Francisco, CA 94016" +259620,20in Monitor,1,109.99,09/13/19 17:24,"862 Church St, Dallas, TX 75001" +259621,AAA Batteries (4-pack),2,2.99,09/15/19 14:40,"728 Dogwood St, Atlanta, GA 30301" +259622,20in Monitor,1,109.99,09/10/19 12:37,"754 Center St, New York City, NY 10001" +259623,AA Batteries (4-pack),1,3.84,09/21/19 11:51,"68 Willow St, San Francisco, CA 94016" +259624,34in Ultrawide Monitor,1,379.99,09/17/19 09:42,"482 Park St, New York City, NY 10001" +259625,Apple Airpods Headphones,1,150,09/30/19 12:02,"738 Maple St, Seattle, WA 98101" +259626,34in Ultrawide Monitor,1,379.99,09/11/19 19:15,"200 Walnut St, Portland, OR 97035" +259627,27in 4K Gaming Monitor,1,389.99,09/12/19 11:05,"116 Jefferson St, San Francisco, CA 94016" +259628,Lightning Charging Cable,1,14.95,09/13/19 19:46,"478 Johnson St, San Francisco, CA 94016" +259629,Macbook Pro Laptop,1,1700,09/22/19 15:51,"501 West St, New York City, NY 10001" +259630,Lightning Charging Cable,1,14.95,09/07/19 09:26,"163 5th St, New York City, NY 10001" +259631,20in Monitor,1,109.99,09/01/19 16:52,"713 7th St, San Francisco, CA 94016" +259632,Bose SoundSport Headphones,1,99.99,09/11/19 09:20,"882 13th St, Los Angeles, CA 90001" +259633,Flatscreen TV,1,300,09/09/19 10:18,"939 Jefferson St, Austin, TX 73301" +259634,AA Batteries (4-pack),1,3.84,10/01/19 00:18,"842 1st St, San Francisco, CA 94016" +259635,Lightning Charging Cable,1,14.95,09/14/19 13:42,"798 Cedar St, New York City, NY 10001" +259636,Vareebadd Phone,1,400,09/09/19 14:05,"752 South St, New York City, NY 10001" +259636,USB-C Charging Cable,1,11.95,09/09/19 14:05,"752 South St, New York City, NY 10001" +259637,Apple Airpods Headphones,1,150,09/14/19 21:54,"479 Lincoln St, Boston, MA 02215" +259638,Lightning Charging Cable,1,14.95,09/08/19 10:25,"101 West St, Austin, TX 73301" +259639,AAA Batteries (4-pack),1,2.99,09/06/19 20:49,"663 Center St, San Francisco, CA 94016" +259640,Apple Airpods Headphones,1,150,09/19/19 20:40,"394 Cedar St, Austin, TX 73301" +259641,Lightning Charging Cable,2,14.95,09/12/19 16:14,"843 Adams St, Dallas, TX 75001" +259642,Lightning Charging Cable,1,14.95,09/01/19 14:50,"181 Ridge St, Los Angeles, CA 90001" +259643,USB-C Charging Cable,1,11.95,09/12/19 19:33,"876 Washington St, Seattle, WA 98101" +259644,Wired Headphones,1,11.99,09/07/19 11:17,"839 12th St, San Francisco, CA 94016" +259645,Flatscreen TV,1,300,09/04/19 09:52,"452 Highland St, Seattle, WA 98101" +259646,Bose SoundSport Headphones,1,99.99,09/18/19 19:23,"824 Wilson St, New York City, NY 10001" +259647,Lightning Charging Cable,1,14.95,09/22/19 10:34,"330 5th St, Portland, OR 97035" +259648,Lightning Charging Cable,1,14.95,09/12/19 13:39,"5 12th St, Boston, MA 02215" +259649,Apple Airpods Headphones,1,150,09/16/19 10:37,"441 11th St, New York City, NY 10001" +259650,USB-C Charging Cable,1,11.95,09/05/19 18:27,"576 Highland St, Seattle, WA 98101" +259651,Macbook Pro Laptop,1,1700,09/08/19 17:14,"72 Jackson St, New York City, NY 10001" +259652,Lightning Charging Cable,1,14.95,09/08/19 17:18,"670 Forest St, Austin, TX 73301" +259653,AAA Batteries (4-pack),2,2.99,09/30/19 15:03,"671 Johnson St, Austin, TX 73301" +259654,Apple Airpods Headphones,1,150,09/27/19 10:05,"221 Lincoln St, San Francisco, CA 94016" +259655,iPhone,1,700,09/07/19 10:30,"623 North St, Los Angeles, CA 90001" +259656,AAA Batteries (4-pack),4,2.99,09/20/19 06:35,"244 Dogwood St, Boston, MA 02215" +259657,Lightning Charging Cable,1,14.95,09/25/19 11:11,"339 2nd St, San Francisco, CA 94016" +259658,Lightning Charging Cable,1,14.95,09/03/19 19:29,"289 Madison St, Los Angeles, CA 90001" +259659,Macbook Pro Laptop,1,1700,09/19/19 11:02,"797 Spruce St, Los Angeles, CA 90001" +259660,AAA Batteries (4-pack),1,2.99,09/11/19 20:56,"832 1st St, New York City, NY 10001" +259661,Lightning Charging Cable,1,14.95,09/27/19 19:37,"614 Elm St, San Francisco, CA 94016" +259662,AA Batteries (4-pack),1,3.84,09/17/19 19:48,"639 13th St, New York City, NY 10001" +259663,AAA Batteries (4-pack),2,2.99,09/28/19 13:30,"211 Park St, New York City, NY 10001" +259664,Lightning Charging Cable,1,14.95,09/07/19 08:08,"16 Cherry St, Austin, TX 73301" +259665,USB-C Charging Cable,1,11.95,09/30/19 23:24,"22 Center St, Austin, TX 73301" +259666,Wired Headphones,1,11.99,09/05/19 13:51,"542 Walnut St, San Francisco, CA 94016" +259667,USB-C Charging Cable,1,11.95,09/30/19 16:15,"799 11th St, Los Angeles, CA 90001" +259668,AA Batteries (4-pack),1,3.84,09/19/19 08:35,"857 Dogwood St, San Francisco, CA 94016" +259669,Bose SoundSport Headphones,1,99.99,09/29/19 16:24,"34 5th St, Los Angeles, CA 90001" +259670,Apple Airpods Headphones,1,150,09/09/19 15:48,"385 7th St, New York City, NY 10001" +259671,Wired Headphones,1,11.99,09/01/19 08:05,"836 14th St, Seattle, WA 98101" +259672,USB-C Charging Cable,1,11.95,09/01/19 12:48,"565 Cedar St, Dallas, TX 75001" +259673,iPhone,1,700,09/04/19 21:56,"511 14th St, San Francisco, CA 94016" +259674,AAA Batteries (4-pack),1,2.99,09/24/19 13:15,"227 Main St, Atlanta, GA 30301" +259675,Wired Headphones,1,11.99,09/22/19 01:10,"237 Jackson St, Los Angeles, CA 90001" +259676,Google Phone,1,600,09/15/19 18:14,"248 14th St, Boston, MA 02215" +259677,20in Monitor,1,109.99,09/25/19 15:59,"649 Meadow St, Portland, OR 97035" +259678,Flatscreen TV,1,300,09/05/19 22:34,"482 Pine St, Atlanta, GA 30301" +259679,AAA Batteries (4-pack),2,2.99,09/21/19 10:10,"497 South St, Dallas, TX 75001" +259680,USB-C Charging Cable,1,11.95,09/13/19 18:34,"918 7th St, Dallas, TX 75001" +259681,27in FHD Monitor,1,149.99,09/15/19 10:18,"939 Willow St, San Francisco, CA 94016" +259682,AAA Batteries (4-pack),1,2.99,09/26/19 18:33,"790 9th St, Portland, OR 97035" +259683,USB-C Charging Cable,1,11.95,09/06/19 17:39,"591 5th St, Los Angeles, CA 90001" +259684,ThinkPad Laptop,1,999.99,09/22/19 15:52,"69 7th St, Los Angeles, CA 90001" +259685,AA Batteries (4-pack),2,3.84,09/12/19 09:58,"303 8th St, Atlanta, GA 30301" +259686,AA Batteries (4-pack),1,3.84,09/19/19 21:13,"684 Ridge St, San Francisco, CA 94016" +259687,ThinkPad Laptop,1,999.99,09/18/19 23:29,"194 River St, Portland, OR 97035" +259688,Flatscreen TV,1,300,09/08/19 12:25,"236 Willow St, San Francisco, CA 94016" +259689,Wired Headphones,1,11.99,09/30/19 15:29,"684 Hickory St, Boston, MA 02215" +259690,USB-C Charging Cable,1,11.95,09/12/19 09:26,"586 Chestnut St, Los Angeles, CA 90001" +259691,Lightning Charging Cable,1,14.95,09/25/19 12:42,"777 11th St, Seattle, WA 98101" +259692,AA Batteries (4-pack),1,3.84,09/07/19 16:16,"248 Forest St, New York City, NY 10001" +259693,AAA Batteries (4-pack),1,2.99,09/18/19 13:52,"397 14th St, New York City, NY 10001" +259694,Google Phone,1,600,09/25/19 21:47,"158 Hickory St, Seattle, WA 98101" +259695,20in Monitor,1,109.99,09/09/19 18:27,"701 South St, San Francisco, CA 94016" +259696,Wired Headphones,2,11.99,09/11/19 18:27,"811 13th St, San Francisco, CA 94016" +259697,27in FHD Monitor,1,149.99,09/25/19 19:54,"925 Cedar St, Portland, OR 97035" +259698,Apple Airpods Headphones,1,150,09/23/19 15:03,"292 Jefferson St, San Francisco, CA 94016" +259699,AA Batteries (4-pack),1,3.84,09/17/19 15:16,"887 River St, Seattle, WA 98101" +259700,AAA Batteries (4-pack),5,2.99,09/11/19 19:07,"160 11th St, San Francisco, CA 94016" +259701,USB-C Charging Cable,1,11.95,09/19/19 18:49,"29 11th St, New York City, NY 10001" +259702,Macbook Pro Laptop,1,1700,09/01/19 20:25,"757 13th St, Atlanta, GA 30301" +259703,USB-C Charging Cable,2,11.95,09/24/19 23:00,"77 West St, San Francisco, CA 94016" +259704,iPhone,1,700,09/11/19 21:20,"571 Adams St, New York City, NY 10001" +259705,27in 4K Gaming Monitor,1,389.99,09/16/19 13:08,"953 North St, Seattle, WA 98101" +259706,AAA Batteries (4-pack),1,2.99,09/28/19 22:44,"451 Park St, Los Angeles, CA 90001" +259707,iPhone,1,700,09/18/19 22:16,"167 Dogwood St, Boston, MA 02215" +259707,Lightning Charging Cable,1,14.95,09/18/19 22:16,"167 Dogwood St, Boston, MA 02215" +259708,27in FHD Monitor,1,149.99,09/25/19 22:40,"497 Willow St, Portland, OR 97035" +259709,iPhone,1,700,09/29/19 19:22,"227 Meadow St, San Francisco, CA 94016" +259710,AAA Batteries (4-pack),1,2.99,09/30/19 09:56,"907 11th St, Los Angeles, CA 90001" +259711,27in 4K Gaming Monitor,1,389.99,09/28/19 21:04,"662 Jackson St, Los Angeles, CA 90001" +259712,27in 4K Gaming Monitor,1,389.99,09/21/19 14:00,"572 Spruce St, Atlanta, GA 30301" +259713,Apple Airpods Headphones,1,150,09/20/19 12:56,"935 Church St, Atlanta, GA 30301" +259714,Apple Airpods Headphones,1,150,09/10/19 15:36,"846 Cherry St, New York City, NY 10001" +259715,AA Batteries (4-pack),2,3.84,09/08/19 10:43,"611 North St, Los Angeles, CA 90001" +259716,AA Batteries (4-pack),1,3.84,09/06/19 00:21,"979 Spruce St, Portland, OR 97035" +259717,Lightning Charging Cable,1,14.95,09/30/19 15:06,"513 Pine St, Atlanta, GA 30301" +259718,AAA Batteries (4-pack),3,2.99,09/05/19 11:55,"321 Hickory St, Los Angeles, CA 90001" +259719,Lightning Charging Cable,1,14.95,09/25/19 17:38,"657 Jefferson St, Portland, OR 97035" +259720,AAA Batteries (4-pack),2,2.99,09/23/19 19:42,"163 Meadow St, Dallas, TX 75001" +259721,Apple Airpods Headphones,1,150,09/08/19 23:58,"241 Sunset St, Portland, OR 97035" +259722,AAA Batteries (4-pack),1,2.99,09/27/19 14:52,"595 South St, New York City, NY 10001" +259723,AAA Batteries (4-pack),1,2.99,09/06/19 20:12,"567 8th St, San Francisco, CA 94016" +259724,Lightning Charging Cable,1,14.95,09/27/19 21:56,"365 Sunset St, Los Angeles, CA 90001" +259725,27in FHD Monitor,1,149.99,09/21/19 10:30,"783 Lincoln St, New York City, NY 10001" +259726,USB-C Charging Cable,1,11.95,09/06/19 14:09,"591 North St, San Francisco, CA 94016" +259727,USB-C Charging Cable,1,11.95,09/28/19 13:23,"981 West St, New York City, NY 10001" +259728,20in Monitor,1,109.99,09/22/19 18:58,"324 Cherry St, Boston, MA 02215" +259729,Wired Headphones,1,11.99,09/11/19 10:31,"679 Church St, San Francisco, CA 94016" +259730,Wired Headphones,1,11.99,09/24/19 17:27,"714 Cedar St, New York City, NY 10001" +259731,Wired Headphones,1,11.99,09/20/19 17:04,"912 Cedar St, San Francisco, CA 94016" +259732,Vareebadd Phone,1,400,09/27/19 21:33,"249 Hill St, Seattle, WA 98101" +259733,ThinkPad Laptop,1,999.99,09/08/19 11:43,"529 Dogwood St, Los Angeles, CA 90001" +259734,AAA Batteries (4-pack),1,2.99,09/16/19 14:42,"402 Hickory St, New York City, NY 10001" +259735,Bose SoundSport Headphones,1,99.99,09/12/19 12:42,"46 Park St, Austin, TX 73301" +259736,USB-C Charging Cable,1,11.95,09/22/19 17:14,"844 Hickory St, Portland, OR 97035" +259737,AAA Batteries (4-pack),2,2.99,09/16/19 15:05,"929 Forest St, San Francisco, CA 94016" +259738,AA Batteries (4-pack),2,3.84,09/02/19 12:27,"67 Meadow St, Seattle, WA 98101" +259739,27in FHD Monitor,1,149.99,09/09/19 06:30,"829 Meadow St, San Francisco, CA 94016" +259740,Apple Airpods Headphones,1,150,09/08/19 13:35,"374 Maple St, San Francisco, CA 94016" +259741,iPhone,1,700,09/24/19 13:34,"272 Park St, San Francisco, CA 94016" +259742,AA Batteries (4-pack),1,3.84,09/03/19 23:22,"877 Johnson St, Dallas, TX 75001" +259743,AA Batteries (4-pack),1,3.84,09/02/19 19:44,"335 11th St, San Francisco, CA 94016" +259744,Bose SoundSport Headphones,1,99.99,09/11/19 15:54,"824 Main St, New York City, NY 10001" +259745,USB-C Charging Cable,1,11.95,09/22/19 12:55,"765 Walnut St, San Francisco, CA 94016" +259746,USB-C Charging Cable,1,11.95,09/22/19 17:46,"818 1st St, San Francisco, CA 94016" +259747,27in 4K Gaming Monitor,1,389.99,09/25/19 10:22,"342 Willow St, Boston, MA 02215" +259748,Apple Airpods Headphones,1,150,09/08/19 18:22,"801 Lakeview St, San Francisco, CA 94016" +259749,USB-C Charging Cable,1,11.95,09/06/19 13:33,"854 12th St, New York City, NY 10001" +259750,20in Monitor,1,109.99,09/07/19 13:21,"772 Lake St, Portland, OR 97035" +259751,Lightning Charging Cable,1,14.95,09/14/19 13:56,"741 North St, Dallas, TX 75001" +259752,27in 4K Gaming Monitor,1,389.99,09/09/19 16:57,"494 Madison St, Portland, OR 97035" +259753,USB-C Charging Cable,1,11.95,09/16/19 00:42,"248 1st St, Seattle, WA 98101" +259754,Wired Headphones,1,11.99,09/06/19 01:20,"949 10th St, New York City, NY 10001" +259755,USB-C Charging Cable,1,11.95,09/11/19 17:16,"219 Highland St, Boston, MA 02215" +259756,AA Batteries (4-pack),1,3.84,09/13/19 20:46,"587 Willow St, San Francisco, CA 94016" +259757,AA Batteries (4-pack),1,3.84,09/10/19 13:55,"956 10th St, Dallas, TX 75001" +259758,Lightning Charging Cable,1,14.95,09/24/19 17:28,"364 Willow St, Los Angeles, CA 90001" +259759,Flatscreen TV,1,300,09/25/19 17:49,"774 Adams St, San Francisco, CA 94016" +259760,Bose SoundSport Headphones,1,99.99,09/07/19 13:12,"218 Johnson St, Los Angeles, CA 90001" +259761,Bose SoundSport Headphones,1,99.99,09/25/19 05:49,"988 13th St, Dallas, TX 75001" +259762,Macbook Pro Laptop,1,1700,09/26/19 13:14,"497 Center St, San Francisco, CA 94016" +259763,USB-C Charging Cable,1,11.95,09/19/19 16:01,"753 12th St, Los Angeles, CA 90001" +259764,Apple Airpods Headphones,1,150,09/17/19 02:52,"817 12th St, Austin, TX 73301" +259765,USB-C Charging Cable,1,11.95,09/26/19 21:37,"397 Chestnut St, Portland, ME 04101" +259766,27in FHD Monitor,1,149.99,09/01/19 20:35,"200 Highland St, Portland, ME 04101" +259767,USB-C Charging Cable,1,11.95,09/15/19 12:34,"120 West St, Los Angeles, CA 90001" +259768,Bose SoundSport Headphones,1,99.99,09/16/19 05:23,"814 5th St, Dallas, TX 75001" +259769,Bose SoundSport Headphones,1,99.99,09/03/19 20:58,"737 13th St, Dallas, TX 75001" +259770,Bose SoundSport Headphones,1,99.99,09/28/19 11:28,"271 Walnut St, Atlanta, GA 30301" +259771,USB-C Charging Cable,1,11.95,09/26/19 05:47,"929 9th St, San Francisco, CA 94016" +259772,Vareebadd Phone,1,400,09/04/19 16:58,"297 13th St, New York City, NY 10001" +259773,AAA Batteries (4-pack),2,2.99,09/22/19 12:49,"28 Ridge St, Portland, ME 04101" +259774,Lightning Charging Cable,1,14.95,09/14/19 17:33,"129 Church St, Boston, MA 02215" +259775,27in 4K Gaming Monitor,1,389.99,09/01/19 20:05,"709 9th St, Los Angeles, CA 90001" +259776,Wired Headphones,1,11.99,09/23/19 13:56,"643 South St, Los Angeles, CA 90001" +259777,Wired Headphones,1,11.99,09/13/19 12:36,"228 Willow St, Portland, OR 97035" +259778,USB-C Charging Cable,1,11.95,09/20/19 18:16,"600 Wilson St, Dallas, TX 75001" +259779,LG Washing Machine,1,600.0,09/16/19 10:17,"537 Center St, Boston, MA 02215" +259780,27in FHD Monitor,1,149.99,09/27/19 18:26,"719 Hill St, San Francisco, CA 94016" +259781,27in 4K Gaming Monitor,1,389.99,09/09/19 22:51,"81 6th St, San Francisco, CA 94016" +259782,Apple Airpods Headphones,1,150,09/09/19 13:01,"232 Main St, San Francisco, CA 94016" +259783,Lightning Charging Cable,1,14.95,09/04/19 13:32,"20 11th St, Dallas, TX 75001" +259784,Bose SoundSport Headphones,1,99.99,09/24/19 18:24,"974 4th St, New York City, NY 10001" +259785,USB-C Charging Cable,1,11.95,09/30/19 20:29,"174 Sunset St, Portland, ME 04101" +259786,Apple Airpods Headphones,1,150,09/16/19 18:15,"866 Highland St, San Francisco, CA 94016" +259787,20in Monitor,1,109.99,09/01/19 22:09,"579 7th St, Portland, ME 04101" +259788,27in 4K Gaming Monitor,1,389.99,09/26/19 21:33,"3 Spruce St, New York City, NY 10001" +259789,Wired Headphones,1,11.99,09/15/19 12:27,"751 4th St, New York City, NY 10001" +259790,Wired Headphones,1,11.99,09/10/19 02:09,"511 6th St, Boston, MA 02215" +259791,USB-C Charging Cable,1,11.95,09/27/19 21:02,"886 River St, Portland, OR 97035" +259792,34in Ultrawide Monitor,1,379.99,09/06/19 23:48,"566 Lincoln St, Austin, TX 73301" +259793,Bose SoundSport Headphones,1,99.99,09/11/19 17:48,"28 Walnut St, New York City, NY 10001" +259794,Wired Headphones,1,11.99,09/24/19 12:20,"217 7th St, San Francisco, CA 94016" +259794,AAA Batteries (4-pack),1,2.99,09/24/19 12:20,"217 7th St, San Francisco, CA 94016" +259795,AA Batteries (4-pack),2,3.84,09/06/19 08:47,"932 Lakeview St, San Francisco, CA 94016" +259796,Google Phone,1,600,09/25/19 09:04,"786 12th St, San Francisco, CA 94016" +259796,USB-C Charging Cable,1,11.95,09/25/19 09:04,"786 12th St, San Francisco, CA 94016" +259797,AAA Batteries (4-pack),2,2.99,09/17/19 10:32,"757 8th St, San Francisco, CA 94016" +259798,Lightning Charging Cable,1,14.95,09/23/19 08:28,"707 Hickory St, Boston, MA 02215" +259799,27in 4K Gaming Monitor,1,389.99,09/02/19 16:03,"4 Forest St, San Francisco, CA 94016" +259800,Vareebadd Phone,1,400,09/24/19 13:52,"373 5th St, Los Angeles, CA 90001" +259801,Bose SoundSport Headphones,1,99.99,09/09/19 09:58,"108 Cedar St, Boston, MA 02215" +259802,AA Batteries (4-pack),1,3.84,09/14/19 18:53,"99 14th St, Austin, TX 73301" +259803,USB-C Charging Cable,1,11.95,09/01/19 19:00,"544 9th St, Atlanta, GA 30301" +259804,Google Phone,1,600,09/18/19 19:06,"23 Meadow St, Atlanta, GA 30301" +259805,Lightning Charging Cable,1,14.95,09/27/19 01:53,"132 9th St, Atlanta, GA 30301" +259806,AAA Batteries (4-pack),1,2.99,09/21/19 21:24,"157 Ridge St, Los Angeles, CA 90001" +259807,AAA Batteries (4-pack),1,2.99,09/02/19 07:45,"987 Chestnut St, Boston, MA 02215" +259808,AA Batteries (4-pack),1,3.84,09/21/19 14:15,"283 Ridge St, San Francisco, CA 94016" +259809,Google Phone,1,600,09/22/19 18:37,"211 Chestnut St, Dallas, TX 75001" +259809,Bose SoundSport Headphones,1,99.99,09/22/19 18:37,"211 Chestnut St, Dallas, TX 75001" +259810,Wired Headphones,2,11.99,09/25/19 21:35,"744 Chestnut St, Boston, MA 02215" +259810,27in FHD Monitor,1,149.99,09/25/19 21:35,"744 Chestnut St, Boston, MA 02215" +259811,Wired Headphones,1,11.99,09/14/19 13:08,"336 11th St, San Francisco, CA 94016" +259812,Lightning Charging Cable,1,14.95,09/24/19 15:50,"111 West St, Seattle, WA 98101" +259813,USB-C Charging Cable,2,11.95,09/04/19 21:24,"287 Elm St, San Francisco, CA 94016" +259814,Flatscreen TV,1,300,09/28/19 17:53,"490 Maple St, Los Angeles, CA 90001" +259815,Apple Airpods Headphones,1,150,09/08/19 22:47,"370 Hill St, Atlanta, GA 30301" +259816,Bose SoundSport Headphones,1,99.99,09/08/19 19:16,"449 Forest St, Portland, ME 04101" +259817,Wired Headphones,2,11.99,09/06/19 13:43,"272 Forest St, San Francisco, CA 94016" +259818,27in 4K Gaming Monitor,1,389.99,09/22/19 08:22,"810 South St, San Francisco, CA 94016" +259819,27in FHD Monitor,1,149.99,09/15/19 13:57,"538 Adams St, Dallas, TX 75001" +259820,USB-C Charging Cable,1,11.95,09/30/19 21:51,"354 10th St, New York City, NY 10001" +259821,20in Monitor,1,109.99,09/19/19 21:27,"430 Sunset St, Dallas, TX 75001" +259822,AA Batteries (4-pack),1,3.84,09/24/19 09:32,"635 Lakeview St, San Francisco, CA 94016" +259823,iPhone,1,700,09/28/19 22:50,"69 Maple St, Atlanta, GA 30301" +259824,Apple Airpods Headphones,1,150,09/05/19 12:49,"502 11th St, Los Angeles, CA 90001" +259825,34in Ultrawide Monitor,1,379.99,09/11/19 19:14,"619 Johnson St, Atlanta, GA 30301" +259826,Lightning Charging Cable,2,14.95,09/24/19 19:17,"679 Ridge St, Atlanta, GA 30301" +259827,Wired Headphones,1,11.99,09/01/19 15:47,"506 Johnson St, Los Angeles, CA 90001" +259828,Wired Headphones,1,11.99,09/21/19 14:07,"264 Forest St, Los Angeles, CA 90001" +259829,Wired Headphones,1,11.99,09/11/19 07:14,"762 5th St, New York City, NY 10001" +259830,USB-C Charging Cable,1,11.95,09/28/19 11:58,"853 Washington St, Dallas, TX 75001" +259831,Macbook Pro Laptop,1,1700,09/13/19 13:45,"892 13th St, Boston, MA 02215" +259832,34in Ultrawide Monitor,1,379.99,09/16/19 00:34,"799 Chestnut St, Boston, MA 02215" +259832,Wired Headphones,1,11.99,09/16/19 00:34,"799 Chestnut St, Boston, MA 02215" +259833,AAA Batteries (4-pack),1,2.99,09/11/19 12:40,"233 Hickory St, Portland, ME 04101" +259834,Wired Headphones,1,11.99,09/13/19 20:19,"260 Forest St, Boston, MA 02215" +259835,Wired Headphones,1,11.99,09/24/19 19:13,"581 Jackson St, Los Angeles, CA 90001" +259836,USB-C Charging Cable,1,11.95,09/14/19 15:15,"815 Johnson St, San Francisco, CA 94016" +259837,Wired Headphones,1,11.99,09/06/19 09:45,"315 Forest St, Austin, TX 73301" +259838,USB-C Charging Cable,2,11.95,09/09/19 10:19,"536 Hickory St, Boston, MA 02215" +259839,AAA Batteries (4-pack),1,2.99,09/29/19 22:34,"638 Washington St, Los Angeles, CA 90001" +259840,USB-C Charging Cable,1,11.95,09/11/19 17:32,"911 Park St, Los Angeles, CA 90001" +259841,AA Batteries (4-pack),1,3.84,09/12/19 14:21,"944 6th St, Dallas, TX 75001" +259841,AA Batteries (4-pack),1,3.84,09/12/19 14:21,"944 6th St, Dallas, TX 75001" +259842,Apple Airpods Headphones,1,150,09/03/19 18:11,"176 8th St, New York City, NY 10001" +259843,iPhone,1,700,09/21/19 15:41,"526 Church St, Seattle, WA 98101" +259843,Apple Airpods Headphones,1,150,09/21/19 15:41,"526 Church St, Seattle, WA 98101" +259843,Wired Headphones,1,11.99,09/21/19 15:41,"526 Church St, Seattle, WA 98101" +259844,USB-C Charging Cable,1,11.95,09/23/19 12:50,"692 1st St, Los Angeles, CA 90001" +259845,34in Ultrawide Monitor,1,379.99,09/01/19 16:07,"982 South St, Dallas, TX 75001" +259846,27in FHD Monitor,1,149.99,09/14/19 11:50,"413 Sunset St, Los Angeles, CA 90001" +259847,Apple Airpods Headphones,1,150,09/19/19 14:09,"663 North St, Austin, TX 73301" +259848,Wired Headphones,1,11.99,09/01/19 11:14,"416 Forest St, San Francisco, CA 94016" +259849,Wired Headphones,1,11.99,09/20/19 18:46,"586 6th St, Boston, MA 02215" +259850,Lightning Charging Cable,1,14.95,09/18/19 10:54,"351 Ridge St, San Francisco, CA 94016" +259851,Bose SoundSport Headphones,1,99.99,09/26/19 13:40,"586 Cherry St, Los Angeles, CA 90001" +259852,USB-C Charging Cable,1,11.95,09/09/19 10:28,"990 Lakeview St, New York City, NY 10001" +259853,Google Phone,1,600,09/12/19 20:09,"90 Hill St, Seattle, WA 98101" +259854,Google Phone,1,600,09/26/19 19:10,"573 Sunset St, Boston, MA 02215" +259854,USB-C Charging Cable,2,11.95,09/26/19 19:10,"573 Sunset St, Boston, MA 02215" +259855,Wired Headphones,1,11.99,09/04/19 16:01,"5 Hickory St, Los Angeles, CA 90001" +259856,AAA Batteries (4-pack),1,2.99,09/22/19 09:41,"914 Church St, San Francisco, CA 94016" +259857,27in FHD Monitor,1,149.99,09/22/19 17:41,"689 Hickory St, Seattle, WA 98101" +259858,27in 4K Gaming Monitor,1,389.99,09/12/19 19:27,"34 Cherry St, San Francisco, CA 94016" +259859,AAA Batteries (4-pack),1,2.99,09/02/19 21:35,"602 12th St, New York City, NY 10001" +259860,AAA Batteries (4-pack),1,2.99,09/29/19 06:28,"528 Sunset St, San Francisco, CA 94016" +259861,34in Ultrawide Monitor,1,379.99,09/12/19 11:00,"326 Highland St, New York City, NY 10001" +259862,Lightning Charging Cable,1,14.95,09/04/19 19:26,"292 Sunset St, Austin, TX 73301" +259863,Macbook Pro Laptop,1,1700,09/22/19 23:47,"298 Ridge St, New York City, NY 10001" +259864,27in FHD Monitor,1,149.99,09/23/19 13:09,"154 Sunset St, San Francisco, CA 94016" +259865,Apple Airpods Headphones,1,150,09/21/19 22:52,"800 10th St, New York City, NY 10001" +259866,AA Batteries (4-pack),1,3.84,09/24/19 12:56,"293 Washington St, Boston, MA 02215" +259867,ThinkPad Laptop,1,999.99,09/11/19 16:43,"36 1st St, Atlanta, GA 30301" +259868,Google Phone,1,600,09/15/19 20:21,"23 Adams St, Atlanta, GA 30301" +259869,AA Batteries (4-pack),1,3.84,09/07/19 09:23,"611 1st St, Austin, TX 73301" +259870,Lightning Charging Cable,1,14.95,09/15/19 10:17,"641 Wilson St, Atlanta, GA 30301" +259871,Wired Headphones,1,11.99,09/06/19 18:41,"551 Pine St, Dallas, TX 75001" +259872,Lightning Charging Cable,1,14.95,09/28/19 18:50,"155 Wilson St, Austin, TX 73301" +259873,Wired Headphones,1,11.99,09/13/19 16:17,"723 Washington St, San Francisco, CA 94016" +259874,Lightning Charging Cable,1,14.95,09/14/19 10:25,"477 Center St, Boston, MA 02215" +259875,Apple Airpods Headphones,1,150,09/12/19 23:28,"330 Meadow St, Los Angeles, CA 90001" +259876,27in FHD Monitor,1,149.99,09/28/19 00:12,"722 Madison St, San Francisco, CA 94016" +259877,AAA Batteries (4-pack),1,2.99,09/12/19 09:10,"179 Willow St, Los Angeles, CA 90001" +259878,USB-C Charging Cable,1,11.95,09/23/19 20:32,"905 12th St, Portland, OR 97035" +259879,Wired Headphones,1,11.99,09/14/19 13:42,"653 10th St, New York City, NY 10001" +259879,AAA Batteries (4-pack),1,2.99,09/14/19 13:42,"653 10th St, New York City, NY 10001" +259880,Wired Headphones,1,11.99,09/25/19 13:12,"597 Jefferson St, Los Angeles, CA 90001" +259881,27in FHD Monitor,1,149.99,09/25/19 17:26,"485 South St, Boston, MA 02215" +259882,Apple Airpods Headphones,1,150,09/23/19 14:21,"211 Pine St, Boston, MA 02215" +259883,Wired Headphones,1,11.99,09/27/19 16:49,"577 Washington St, Austin, TX 73301" +259884,Apple Airpods Headphones,1,150,09/30/19 22:50,"88 Cedar St, San Francisco, CA 94016" +259885,Apple Airpods Headphones,1,150,09/19/19 13:26,"265 10th St, Los Angeles, CA 90001" +259886,Flatscreen TV,1,300,09/16/19 10:45,"557 Lake St, Los Angeles, CA 90001" +259887,Lightning Charging Cable,1,14.95,09/24/19 22:34,"92 Ridge St, San Francisco, CA 94016" +259888,Lightning Charging Cable,1,14.95,09/03/19 20:23,"709 2nd St, New York City, NY 10001" +259889,AAA Batteries (4-pack),1,2.99,09/17/19 15:29,"291 Dogwood St, San Francisco, CA 94016" +259890,USB-C Charging Cable,1,11.95,09/01/19 16:10,"343 Spruce St, Boston, MA 02215" +259891,Wired Headphones,2,11.99,09/30/19 18:29,"565 14th St, Los Angeles, CA 90001" +259892,USB-C Charging Cable,1,11.95,09/28/19 23:12,"371 Center St, Seattle, WA 98101" +259893,AAA Batteries (4-pack),1,2.99,09/20/19 21:36,"899 North St, Boston, MA 02215" +259894,LG Washing Machine,1,600.0,09/10/19 00:12,"26 12th St, Seattle, WA 98101" +259895,Apple Airpods Headphones,1,150,09/06/19 16:00,"883 Chestnut St, San Francisco, CA 94016" +259896,Wired Headphones,1,11.99,09/30/19 23:13,"306 Willow St, Boston, MA 02215" +259897,USB-C Charging Cable,1,11.95,09/15/19 18:26,"237 Walnut St, Austin, TX 73301" +259898,AAA Batteries (4-pack),1,2.99,09/07/19 11:41,"377 Adams St, Portland, OR 97035" +259899,Wired Headphones,1,11.99,09/15/19 21:37,"734 North St, Atlanta, GA 30301" +259900,Lightning Charging Cable,1,14.95,09/02/19 23:16,"471 Johnson St, San Francisco, CA 94016" +259901,Wired Headphones,1,11.99,09/22/19 16:31,"579 Walnut St, Los Angeles, CA 90001" +259902,Lightning Charging Cable,1,14.95,09/01/19 08:00,"648 8th St, Boston, MA 02215" +259903,Bose SoundSport Headphones,1,99.99,09/02/19 01:34,"373 Spruce St, Dallas, TX 75001" +259904,27in 4K Gaming Monitor,1,389.99,09/16/19 09:49,"571 Meadow St, Dallas, TX 75001" +259905,27in FHD Monitor,1,149.99,09/27/19 21:05,"449 Lakeview St, Los Angeles, CA 90001" +259906,Lightning Charging Cable,1,14.95,09/16/19 18:40,"83 Pine St, Dallas, TX 75001" +259907,AAA Batteries (4-pack),1,2.99,09/30/19 08:36,"633 Washington St, Portland, OR 97035" +259908,iPhone,1,700,09/18/19 18:15,"976 Madison St, New York City, NY 10001" +259908,Apple Airpods Headphones,1,150,09/18/19 18:15,"976 Madison St, New York City, NY 10001" +259909,34in Ultrawide Monitor,1,379.99,09/07/19 08:57,"359 Jackson St, Boston, MA 02215" +259910,USB-C Charging Cable,1,11.95,09/27/19 00:00,"807 6th St, Atlanta, GA 30301" +259911,Lightning Charging Cable,2,14.95,09/23/19 01:40,"437 6th St, Austin, TX 73301" +259912,USB-C Charging Cable,1,11.95,09/13/19 15:20,"87 6th St, Atlanta, GA 30301" +259913,Lightning Charging Cable,1,14.95,09/06/19 10:55,"821 4th St, New York City, NY 10001" +259914,Lightning Charging Cable,1,14.95,09/22/19 21:17,"97 1st St, Los Angeles, CA 90001" +259915,iPhone,1,700,09/17/19 22:12,"592 Elm St, Boston, MA 02215" +259915,Apple Airpods Headphones,1,150,09/17/19 22:12,"592 Elm St, Boston, MA 02215" +259916,Google Phone,1,600,09/18/19 22:13,"365 10th St, New York City, NY 10001" +259917,Apple Airpods Headphones,1,150,09/13/19 13:57,"679 Willow St, Seattle, WA 98101" +259918,Lightning Charging Cable,1,14.95,09/17/19 19:45,"498 Maple St, Boston, MA 02215" +259919,USB-C Charging Cable,1,11.95,09/29/19 17:37,"129 4th St, Boston, MA 02215" +259920,27in FHD Monitor,1,149.99,09/22/19 12:44,"644 Lake St, Boston, MA 02215" +259921,Google Phone,1,600,09/24/19 16:47,"519 Forest St, New York City, NY 10001" +259921,Bose SoundSport Headphones,1,99.99,09/24/19 16:47,"519 Forest St, New York City, NY 10001" +259921,Wired Headphones,1,11.99,09/24/19 16:47,"519 Forest St, New York City, NY 10001" +259922,Apple Airpods Headphones,1,150,09/11/19 13:40,"132 Center St, Seattle, WA 98101" +259923,20in Monitor,1,109.99,09/17/19 17:38,"676 Elm St, Atlanta, GA 30301" +259924,Wired Headphones,1,11.99,09/11/19 14:00,"835 Forest St, San Francisco, CA 94016" +259925,LG Dryer,1,600.0,09/27/19 23:52,"79 2nd St, Dallas, TX 75001" +259926,27in FHD Monitor,1,149.99,09/08/19 01:14,"610 Johnson St, New York City, NY 10001" +259927,Google Phone,1,600,09/18/19 20:10,"208 Cedar St, San Francisco, CA 94016" +259928,Apple Airpods Headphones,1,150,09/04/19 11:29,"120 10th St, Boston, MA 02215" +259929,AA Batteries (4-pack),1,3.84,09/09/19 18:33,"697 Sunset St, San Francisco, CA 94016" +259930,AA Batteries (4-pack),1,3.84,09/27/19 11:36,"41 Willow St, Dallas, TX 75001" +259931,iPhone,1,700,09/24/19 21:37,"300 6th St, San Francisco, CA 94016" +259932,Lightning Charging Cable,1,14.95,09/06/19 22:38,"334 Park St, Boston, MA 02215" +259933,AA Batteries (4-pack),1,3.84,09/03/19 12:45,"967 Maple St, Seattle, WA 98101" +259934,USB-C Charging Cable,1,11.95,09/22/19 15:38,"796 Adams St, Austin, TX 73301" +259935,AAA Batteries (4-pack),1,2.99,09/20/19 11:33,"704 Lakeview St, San Francisco, CA 94016" +259936,USB-C Charging Cable,1,11.95,09/01/19 12:27,"764 4th St, Boston, MA 02215" +259937,USB-C Charging Cable,1,11.95,09/23/19 16:09,"57 Cedar St, Los Angeles, CA 90001" +259938,USB-C Charging Cable,1,11.95,09/24/19 07:30,"89 Hickory St, San Francisco, CA 94016" +259939,Wired Headphones,1,11.99,09/02/19 13:59,"391 Park St, San Francisco, CA 94016" +259940,iPhone,1,700,09/18/19 09:24,"804 Jefferson St, Seattle, WA 98101" +259940,Lightning Charging Cable,1,14.95,09/18/19 09:24,"804 Jefferson St, Seattle, WA 98101" +259940,Wired Headphones,2,11.99,09/18/19 09:24,"804 Jefferson St, Seattle, WA 98101" +259941,AA Batteries (4-pack),2,3.84,09/20/19 13:50,"875 Lincoln St, San Francisco, CA 94016" +259942,AAA Batteries (4-pack),3,2.99,09/15/19 09:17,"797 7th St, Los Angeles, CA 90001" +259943,Lightning Charging Cable,1,14.95,09/12/19 20:15,"763 Johnson St, Boston, MA 02215" +259944,Lightning Charging Cable,2,14.95,09/11/19 14:16,"574 Sunset St, San Francisco, CA 94016" +259945,AA Batteries (4-pack),1,3.84,09/08/19 00:29,"614 14th St, Austin, TX 73301" +259946,Apple Airpods Headphones,1,150,09/06/19 17:41,"275 Church St, San Francisco, CA 94016" +259947,Google Phone,1,600,09/08/19 15:03,"907 5th St, Austin, TX 73301" +259948,AAA Batteries (4-pack),1,2.99,09/16/19 19:13,"914 Jackson St, Portland, OR 97035" +259949,USB-C Charging Cable,2,11.95,09/14/19 18:53,"736 Maple St, San Francisco, CA 94016" +259950,Bose SoundSport Headphones,1,99.99,09/18/19 19:49,"899 Walnut St, San Francisco, CA 94016" +259951,Wired Headphones,1,11.99,09/17/19 17:14,"431 Chestnut St, New York City, NY 10001" +259952,20in Monitor,1,109.99,09/06/19 14:25,"636 Wilson St, Boston, MA 02215" +259953,Apple Airpods Headphones,1,150,09/01/19 10:32,"79 Madison St, Dallas, TX 75001" +259954,iPhone,1,700,09/02/19 16:58,"226 Sunset St, Austin, TX 73301" +259954,Lightning Charging Cable,1,14.95,09/02/19 16:58,"226 Sunset St, Austin, TX 73301" +259955,AAA Batteries (4-pack),1,2.99,09/14/19 19:18,"544 South St, Portland, OR 97035" +259956,Apple Airpods Headphones,1,150,09/30/19 02:33,"322 Church St, Portland, OR 97035" +259957,iPhone,1,700,09/14/19 20:42,"522 Cedar St, Boston, MA 02215" +259958,Lightning Charging Cable,1,14.95,09/24/19 18:32,"943 Spruce St, Dallas, TX 75001" +259959,Macbook Pro Laptop,1,1700,09/22/19 16:05,"423 2nd St, New York City, NY 10001" +259960,iPhone,1,700,09/02/19 11:32,"460 9th St, Seattle, WA 98101" +259961,34in Ultrawide Monitor,1,379.99,09/04/19 23:04,"15 10th St, Boston, MA 02215" +259962,AAA Batteries (4-pack),1,2.99,09/22/19 15:39,"231 Pine St, San Francisco, CA 94016" +259963,Lightning Charging Cable,1,14.95,09/12/19 13:53,"679 Lakeview St, Boston, MA 02215" +259964,20in Monitor,1,109.99,09/02/19 09:09,"489 Meadow St, New York City, NY 10001" +259965,34in Ultrawide Monitor,1,379.99,09/09/19 23:54,"55 6th St, San Francisco, CA 94016" +259966,iPhone,1,700,09/29/19 16:05,"73 1st St, Los Angeles, CA 90001" +259967,Bose SoundSport Headphones,2,99.99,09/08/19 20:54,"755 Meadow St, San Francisco, CA 94016" +259968,Bose SoundSport Headphones,1,99.99,09/16/19 19:11,"239 Spruce St, New York City, NY 10001" +259969,27in 4K Gaming Monitor,1,389.99,09/14/19 12:34,"67 Sunset St, San Francisco, CA 94016" +259970,Apple Airpods Headphones,1,150,09/22/19 14:26,"913 Adams St, New York City, NY 10001" +259971,Bose SoundSport Headphones,1,99.99,09/13/19 19:32,"226 1st St, Atlanta, GA 30301" +259972,AA Batteries (4-pack),2,3.84,09/12/19 12:47,"143 South St, Dallas, TX 75001" +259973,AA Batteries (4-pack),1,3.84,09/19/19 18:25,"235 9th St, San Francisco, CA 94016" +259974,Bose SoundSport Headphones,1,99.99,09/24/19 19:22,"770 Highland St, Dallas, TX 75001" +259975,Apple Airpods Headphones,1,150,09/22/19 13:39,"571 South St, Los Angeles, CA 90001" +259976,Lightning Charging Cable,1,14.95,09/23/19 18:15,"816 5th St, San Francisco, CA 94016" +259977,Bose SoundSport Headphones,1,99.99,09/13/19 16:26,"717 Sunset St, San Francisco, CA 94016" +259978,AA Batteries (4-pack),1,3.84,09/24/19 08:06,"623 Highland St, Los Angeles, CA 90001" +259979,AAA Batteries (4-pack),3,2.99,09/19/19 20:03,"666 Cedar St, New York City, NY 10001" +259980,AAA Batteries (4-pack),4,2.99,09/02/19 12:12,"425 Madison St, San Francisco, CA 94016" +259981,Wired Headphones,1,11.99,09/05/19 03:54,"119 Johnson St, Los Angeles, CA 90001" +259982,20in Monitor,1,109.99,09/06/19 14:19,"939 Ridge St, San Francisco, CA 94016" +259983,AA Batteries (4-pack),1,3.84,09/24/19 21:42,"329 8th St, Seattle, WA 98101" +259984,Wired Headphones,1,11.99,09/02/19 19:15,"445 Lincoln St, San Francisco, CA 94016" +259985,Lightning Charging Cable,1,14.95,09/26/19 01:35,"278 12th St, San Francisco, CA 94016" +259986,Bose SoundSport Headphones,1,99.99,09/25/19 14:07,"923 Spruce St, New York City, NY 10001" +259987,AAA Batteries (4-pack),1,2.99,09/06/19 20:38,"382 Elm St, San Francisco, CA 94016" +259988,Lightning Charging Cable,2,14.95,09/17/19 11:03,"295 Park St, San Francisco, CA 94016" +259989,ThinkPad Laptop,1,999.99,09/04/19 22:06,"140 Johnson St, Boston, MA 02215" +259990,AAA Batteries (4-pack),2,2.99,09/07/19 11:33,"421 Lake St, Atlanta, GA 30301" +259991,USB-C Charging Cable,1,11.95,09/23/19 18:52,"718 5th St, Los Angeles, CA 90001" +259992,Bose SoundSport Headphones,1,99.99,09/20/19 16:04,"73 North St, Boston, MA 02215" +259993,Apple Airpods Headphones,1,150,09/16/19 10:24,"72 Jackson St, Los Angeles, CA 90001" +259994,USB-C Charging Cable,1,11.95,09/13/19 15:21,"75 Willow St, New York City, NY 10001" +259995,USB-C Charging Cable,1,11.95,09/28/19 16:24,"491 Dogwood St, Boston, MA 02215" +259996,Bose SoundSport Headphones,1,99.99,09/20/19 12:33,"295 Main St, Los Angeles, CA 90001" +259997,Bose SoundSport Headphones,1,99.99,09/12/19 18:50,"126 Cherry St, Dallas, TX 75001" +259998,Lightning Charging Cable,1,14.95,09/03/19 09:48,"534 Willow St, Atlanta, GA 30301" +259999,USB-C Charging Cable,1,11.95,09/06/19 00:29,"662 South St, New York City, NY 10001" +260000,Wired Headphones,1,11.99,09/15/19 20:37,"672 7th St, San Francisco, CA 94016" +260001,Wired Headphones,1,11.99,09/06/19 21:10,"745 5th St, Boston, MA 02215" +260002,20in Monitor,1,109.99,09/30/19 01:14,"910 Spruce St, Boston, MA 02215" +260003,27in 4K Gaming Monitor,1,389.99,09/05/19 11:47,"339 Jackson St, New York City, NY 10001" +260004,Flatscreen TV,1,300,09/22/19 20:21,"843 9th St, Seattle, WA 98101" +260005,Wired Headphones,1,11.99,09/10/19 19:15,"139 Johnson St, Atlanta, GA 30301" +260006,iPhone,1,700,09/30/19 04:51,"819 West St, Portland, OR 97035" +260007,27in 4K Gaming Monitor,1,389.99,09/29/19 11:05,"146 Meadow St, Boston, MA 02215" +260008,Bose SoundSport Headphones,1,99.99,09/28/19 09:23,"119 1st St, Dallas, TX 75001" +260009,AAA Batteries (4-pack),1,2.99,09/06/19 18:15,"456 Hickory St, Los Angeles, CA 90001" +260010,Lightning Charging Cable,1,14.95,09/29/19 21:10,"727 Jefferson St, Atlanta, GA 30301" +260011,Flatscreen TV,1,300,09/24/19 19:28,"504 Sunset St, Seattle, WA 98101" +260012,27in 4K Gaming Monitor,1,389.99,09/05/19 14:08,"233 Elm St, Austin, TX 73301" +260012,27in FHD Monitor,1,149.99,09/05/19 14:08,"233 Elm St, Austin, TX 73301" +260013,27in FHD Monitor,1,149.99,09/21/19 20:07,"175 Lakeview St, San Francisco, CA 94016" +260014,Lightning Charging Cable,1,14.95,09/01/19 11:32,"166 Highland St, Los Angeles, CA 90001" +260015,Lightning Charging Cable,1,14.95,09/15/19 13:50,"950 Willow St, New York City, NY 10001" +260016,Wired Headphones,1,11.99,09/23/19 19:37,"657 Church St, Los Angeles, CA 90001" +260017,34in Ultrawide Monitor,1,379.99,09/02/19 12:39,"412 Hickory St, Dallas, TX 75001" +260018,Macbook Pro Laptop,1,1700,09/11/19 09:02,"286 Hickory St, Portland, OR 97035" +260019,iPhone,1,700,09/08/19 20:23,"636 West St, San Francisco, CA 94016" +260020,20in Monitor,1,109.99,09/25/19 19:45,"249 11th St, Dallas, TX 75001" +260021,AAA Batteries (4-pack),1,2.99,09/04/19 13:49,"286 13th St, San Francisco, CA 94016" +260022,Wired Headphones,1,11.99,09/28/19 15:02,"262 8th St, Seattle, WA 98101" +260023,Wired Headphones,1,11.99,09/07/19 12:20,"184 Washington St, Los Angeles, CA 90001" +260024,AA Batteries (4-pack),1,3.84,09/05/19 14:06,"742 Cherry St, San Francisco, CA 94016" +260025,iPhone,1,700,09/30/19 09:47,"996 Lincoln St, Boston, MA 02215" +260026,ThinkPad Laptop,1,999.99,09/29/19 18:21,"749 9th St, New York City, NY 10001" +260027,AAA Batteries (4-pack),2,2.99,09/29/19 21:37,"744 Forest St, San Francisco, CA 94016" +260028,USB-C Charging Cable,2,11.95,09/09/19 11:51,"449 Cherry St, San Francisco, CA 94016" +260029,USB-C Charging Cable,1,11.95,09/17/19 11:48,"932 14th St, Portland, OR 97035" +260030,Wired Headphones,1,11.99,09/30/19 08:07,"251 Highland St, New York City, NY 10001" +260031,Apple Airpods Headphones,1,150,09/04/19 00:12,"49 Madison St, New York City, NY 10001" +260032,AA Batteries (4-pack),1,3.84,09/30/19 18:32,"617 Adams St, Portland, OR 97035" +260033,27in FHD Monitor,1,149.99,09/22/19 11:26,"882 11th St, San Francisco, CA 94016" +260034,USB-C Charging Cable,1,11.95,09/22/19 18:26,"790 Forest St, Seattle, WA 98101" +260035,Apple Airpods Headphones,1,150,09/15/19 14:16,"317 Spruce St, Dallas, TX 75001" +260036,20in Monitor,1,109.99,09/08/19 21:41,"521 South St, Boston, MA 02215" +260037,LG Washing Machine,1,600.0,09/14/19 20:15,"541 5th St, Austin, TX 73301" +260038,AA Batteries (4-pack),1,3.84,09/09/19 11:17,"341 Church St, San Francisco, CA 94016" +260039,Wired Headphones,1,11.99,09/20/19 13:25,"337 Park St, Seattle, WA 98101" +260040,34in Ultrawide Monitor,1,379.99,09/03/19 19:27,"829 Madison St, San Francisco, CA 94016" +260041,Google Phone,1,600,09/08/19 10:34,"253 Park St, San Francisco, CA 94016" +260042,AAA Batteries (4-pack),2,2.99,09/30/19 10:01,"837 11th St, Atlanta, GA 30301" +260043,34in Ultrawide Monitor,1,379.99,09/29/19 21:06,"759 13th St, San Francisco, CA 94016" +260044,USB-C Charging Cable,2,11.95,09/04/19 16:34,"887 North St, San Francisco, CA 94016" +260045,USB-C Charging Cable,1,11.95,09/14/19 12:29,"350 Sunset St, Los Angeles, CA 90001" +260046,Macbook Pro Laptop,1,1700,09/18/19 18:40,"268 8th St, San Francisco, CA 94016" +260047,Lightning Charging Cable,1,14.95,09/29/19 11:24,"62 Lincoln St, Seattle, WA 98101" +260048,Wired Headphones,1,11.99,09/15/19 18:07,"257 River St, New York City, NY 10001" +260049,Macbook Pro Laptop,1,1700,09/27/19 11:43,"906 Lake St, San Francisco, CA 94016" +260050,AA Batteries (4-pack),1,3.84,09/26/19 18:11,"149 Hickory St, Los Angeles, CA 90001" +260051,Apple Airpods Headphones,1,150,09/24/19 11:59,"193 10th St, San Francisco, CA 94016" +260052,ThinkPad Laptop,1,999.99,09/01/19 12:19,"642 Walnut St, San Francisco, CA 94016" +260053,Lightning Charging Cable,1,14.95,09/24/19 11:41,"211 Cherry St, New York City, NY 10001" +260054,Lightning Charging Cable,1,14.95,09/27/19 00:59,"578 2nd St, San Francisco, CA 94016" +260055,Bose SoundSport Headphones,2,99.99,09/25/19 11:55,"548 7th St, San Francisco, CA 94016" +260056,AAA Batteries (4-pack),1,2.99,09/16/19 18:00,"693 9th St, Los Angeles, CA 90001" +260057,LG Dryer,1,600.0,09/15/19 14:40,"523 Highland St, Los Angeles, CA 90001" +260058,Apple Airpods Headphones,1,150,09/28/19 11:56,"539 4th St, Dallas, TX 75001" +260059,27in 4K Gaming Monitor,1,389.99,09/08/19 10:29,"95 11th St, Seattle, WA 98101" +260060,iPhone,1,700,09/27/19 20:10,"781 Cedar St, Atlanta, GA 30301" +260060,Lightning Charging Cable,1,14.95,09/27/19 20:10,"781 Cedar St, Atlanta, GA 30301" +260061,iPhone,1,700,09/23/19 22:04,"264 Dogwood St, Los Angeles, CA 90001" +260062,AA Batteries (4-pack),1,3.84,09/15/19 10:19,"438 Ridge St, Seattle, WA 98101" +260063,Wired Headphones,1,11.99,09/21/19 19:24,"758 Willow St, Boston, MA 02215" +260064,27in FHD Monitor,1,149.99,09/28/19 13:24,"5 Meadow St, Los Angeles, CA 90001" +260065,Wired Headphones,1,11.99,09/17/19 10:27,"801 9th St, Seattle, WA 98101" +260066,Bose SoundSport Headphones,1,99.99,09/22/19 20:22,"344 9th St, New York City, NY 10001" +260067,Google Phone,1,600,09/21/19 14:47,"798 Chestnut St, Los Angeles, CA 90001" +260068,USB-C Charging Cable,1,11.95,09/17/19 17:09,"882 Spruce St, Boston, MA 02215" +260069,USB-C Charging Cable,1,11.95,09/20/19 09:20,"930 Dogwood St, Boston, MA 02215" +260070,LG Washing Machine,1,600.0,09/04/19 18:37,"186 Sunset St, San Francisco, CA 94016" +260071,USB-C Charging Cable,1,11.95,09/04/19 14:40,"561 Cherry St, Los Angeles, CA 90001" +260072,USB-C Charging Cable,1,11.95,09/30/19 19:53,"412 Hickory St, New York City, NY 10001" +260073,Google Phone,1,600,09/21/19 00:20,"707 Washington St, Seattle, WA 98101" +260074,USB-C Charging Cable,1,11.95,09/06/19 15:37,"985 9th St, Los Angeles, CA 90001" +260075,27in 4K Gaming Monitor,1,389.99,09/30/19 19:41,"486 Jackson St, Seattle, WA 98101" +260076,iPhone,1,700,09/02/19 10:37,"445 Lincoln St, San Francisco, CA 94016" +260077,34in Ultrawide Monitor,1,379.99,09/21/19 17:40,"965 Lakeview St, San Francisco, CA 94016" +260078,Wired Headphones,1,11.99,09/09/19 08:17,"499 12th St, Portland, ME 04101" +260079,ThinkPad Laptop,1,999.99,09/16/19 21:03,"301 8th St, San Francisco, CA 94016" +260080,USB-C Charging Cable,1,11.95,09/02/19 22:35,"103 Park St, San Francisco, CA 94016" +260081,AAA Batteries (4-pack),1,2.99,09/01/19 14:23,"672 14th St, San Francisco, CA 94016" +260082,27in 4K Gaming Monitor,1,389.99,09/17/19 00:27,"714 Church St, New York City, NY 10001" +260083,34in Ultrawide Monitor,1,379.99,09/11/19 19:55,"57 Forest St, Boston, MA 02215" +260084,AAA Batteries (4-pack),1,2.99,09/04/19 16:42,"728 8th St, San Francisco, CA 94016" +260085,20in Monitor,1,109.99,09/10/19 15:10,"836 Church St, Los Angeles, CA 90001" +260086,Macbook Pro Laptop,1,1700,09/29/19 22:02,"247 Willow St, Atlanta, GA 30301" +260087,Apple Airpods Headphones,1,150,09/14/19 20:53,"867 11th St, Atlanta, GA 30301" +260088,ThinkPad Laptop,1,999.99,09/12/19 16:36,"907 West St, Seattle, WA 98101" +260089,20in Monitor,1,109.99,09/02/19 23:42,"992 Hill St, New York City, NY 10001" +260090,27in 4K Gaming Monitor,1,389.99,09/02/19 14:03,"245 14th St, New York City, NY 10001" +260091,34in Ultrawide Monitor,1,379.99,09/29/19 20:33,"79 Madison St, Boston, MA 02215" +260092,AAA Batteries (4-pack),1,2.99,09/14/19 16:36,"8 11th St, Seattle, WA 98101" +260093,Wired Headphones,1,11.99,09/17/19 14:28,"590 Hill St, San Francisco, CA 94016" +260094,AA Batteries (4-pack),1,3.84,09/21/19 15:22,"664 7th St, Los Angeles, CA 90001" +260095,USB-C Charging Cable,1,11.95,09/11/19 18:59,"107 8th St, San Francisco, CA 94016" +260096,Google Phone,1,600,09/06/19 22:38,"834 Spruce St, San Francisco, CA 94016" +260096,USB-C Charging Cable,1,11.95,09/06/19 22:38,"834 Spruce St, San Francisco, CA 94016" +260097,Wired Headphones,1,11.99,09/04/19 20:37,"896 6th St, New York City, NY 10001" +260098,Google Phone,1,600,09/04/19 20:55,"246 7th St, Austin, TX 73301" +260098,USB-C Charging Cable,1,11.95,09/04/19 20:55,"246 7th St, Austin, TX 73301" +260098,Bose SoundSport Headphones,1,99.99,09/04/19 20:55,"246 7th St, Austin, TX 73301" +260098,Wired Headphones,1,11.99,09/04/19 20:55,"246 7th St, Austin, TX 73301" +260099,AAA Batteries (4-pack),1,2.99,09/26/19 01:55,"386 Sunset St, San Francisco, CA 94016" +260100,Flatscreen TV,1,300,09/04/19 08:12,"775 Hickory St, Boston, MA 02215" +260101,AAA Batteries (4-pack),4,2.99,09/16/19 12:56,"265 Pine St, Atlanta, GA 30301" +260102,Bose SoundSport Headphones,1,99.99,09/15/19 07:10,"76 9th St, San Francisco, CA 94016" +260103,Bose SoundSport Headphones,1,99.99,09/16/19 11:13,"848 Spruce St, Los Angeles, CA 90001" +260103,Wired Headphones,1,11.99,09/16/19 11:13,"848 Spruce St, Los Angeles, CA 90001" +260104,USB-C Charging Cable,1,11.95,09/16/19 18:12,"161 Cedar St, San Francisco, CA 94016" +260105,AA Batteries (4-pack),1,3.84,09/23/19 10:49,"404 9th St, San Francisco, CA 94016" +260106,Wired Headphones,1,11.99,09/01/19 09:24,"434 Washington St, Seattle, WA 98101" +260107,Lightning Charging Cable,1,14.95,09/15/19 13:11,"65 2nd St, San Francisco, CA 94016" +260108,AAA Batteries (4-pack),1,2.99,09/13/19 04:11,"229 7th St, Dallas, TX 75001" +260109,Bose SoundSport Headphones,1,99.99,09/02/19 09:14,"234 Cedar St, Seattle, WA 98101" +260110,Flatscreen TV,1,300,09/23/19 16:32,"477 Center St, Los Angeles, CA 90001" +260111,LG Dryer,1,600.0,09/12/19 11:41,"974 River St, Seattle, WA 98101" +260112,34in Ultrawide Monitor,1,379.99,09/11/19 23:17,"294 River St, San Francisco, CA 94016" +260113,Lightning Charging Cable,1,14.95,09/22/19 17:57,"4 Church St, New York City, NY 10001" +260114,27in FHD Monitor,1,149.99,09/15/19 00:26,"923 South St, Los Angeles, CA 90001" +260115,Wired Headphones,1,11.99,09/20/19 06:40,"561 4th St, Boston, MA 02215" +260116,Apple Airpods Headphones,1,150,09/17/19 10:39,"282 South St, Austin, TX 73301" +260117,AA Batteries (4-pack),1,3.84,09/19/19 13:55,"60 Dogwood St, Los Angeles, CA 90001" +260118,Wired Headphones,1,11.99,09/19/19 05:49,"902 Lakeview St, San Francisco, CA 94016" +260119,Apple Airpods Headphones,1,150,09/25/19 22:58,"275 Adams St, San Francisco, CA 94016" +260120,Apple Airpods Headphones,1,150,09/21/19 15:44,"477 13th St, San Francisco, CA 94016" +260121,Bose SoundSport Headphones,1,99.99,09/20/19 16:23,"140 Walnut St, San Francisco, CA 94016" +260122,Apple Airpods Headphones,1,150,09/23/19 21:05,"32 North St, Los Angeles, CA 90001" +260123,Wired Headphones,1,11.99,09/03/19 17:19,"533 Hill St, San Francisco, CA 94016" +260124,Apple Airpods Headphones,1,150,09/29/19 08:25,"373 Spruce St, Seattle, WA 98101" +260125,AA Batteries (4-pack),1,3.84,09/04/19 10:30,"921 Main St, San Francisco, CA 94016" +260126,Macbook Pro Laptop,1,1700,09/10/19 17:24,"183 14th St, San Francisco, CA 94016" +260127,USB-C Charging Cable,1,11.95,09/24/19 14:53,"937 7th St, Los Angeles, CA 90001" +260128,AA Batteries (4-pack),1,3.84,09/26/19 19:13,"133 Willow St, Portland, OR 97035" +260129,AAA Batteries (4-pack),1,2.99,09/05/19 07:07,"114 6th St, Atlanta, GA 30301" +260129,AA Batteries (4-pack),1,3.84,09/05/19 07:07,"114 6th St, Atlanta, GA 30301" +260130,Bose SoundSport Headphones,1,99.99,09/21/19 12:07,"283 Elm St, Dallas, TX 75001" +260131,AA Batteries (4-pack),1,3.84,09/18/19 20:24,"16 Hickory St, Los Angeles, CA 90001" +260132,Lightning Charging Cable,1,14.95,09/30/19 15:31,"527 2nd St, Los Angeles, CA 90001" +260133,34in Ultrawide Monitor,1,379.99,09/09/19 16:03,"51 Wilson St, Los Angeles, CA 90001" +260134,Lightning Charging Cable,1,14.95,09/25/19 16:19,"773 Cherry St, Los Angeles, CA 90001" +260135,ThinkPad Laptop,1,999.99,09/11/19 18:02,"541 9th St, New York City, NY 10001" +260136,AAA Batteries (4-pack),2,2.99,09/30/19 17:00,"661 7th St, Austin, TX 73301" +260137,Lightning Charging Cable,1,14.95,09/27/19 18:03,"32 14th St, San Francisco, CA 94016" +260138,iPhone,1,700,09/21/19 10:35,"3 North St, Boston, MA 02215" +260138,Lightning Charging Cable,1,14.95,09/21/19 10:35,"3 North St, Boston, MA 02215" +260139,Bose SoundSport Headphones,1,99.99,09/13/19 10:03,"47 2nd St, Atlanta, GA 30301" +260140,Google Phone,1,600,09/04/19 11:25,"522 10th St, Seattle, WA 98101" +260140,USB-C Charging Cable,1,11.95,09/04/19 11:25,"522 10th St, Seattle, WA 98101" +260141,Macbook Pro Laptop,1,1700,09/18/19 08:01,"82 9th St, Seattle, WA 98101" +260142,Bose SoundSport Headphones,1,99.99,09/12/19 17:02,"782 Walnut St, Los Angeles, CA 90001" +260143,Flatscreen TV,1,300,09/23/19 09:47,"494 2nd St, Boston, MA 02215" +260144,Lightning Charging Cable,1,14.95,09/09/19 10:10,"945 Wilson St, New York City, NY 10001" +260145,Lightning Charging Cable,1,14.95,09/22/19 21:08,"30 11th St, New York City, NY 10001" +260146,AAA Batteries (4-pack),4,2.99,09/30/19 19:32,"85 Madison St, Atlanta, GA 30301" +260147,Apple Airpods Headphones,1,150,09/30/19 15:29,"300 10th St, Los Angeles, CA 90001" +,,,,, +260148,ThinkPad Laptop,1,999.99,09/21/19 19:14,"201 Spruce St, Los Angeles, CA 90001" +260149,Lightning Charging Cable,1,14.95,09/09/19 22:34,"247 6th St, Seattle, WA 98101" +260150,AA Batteries (4-pack),1,3.84,09/29/19 09:47,"841 Adams St, Dallas, TX 75001" +260151,27in FHD Monitor,1,149.99,09/23/19 08:57,"999 Forest St, Los Angeles, CA 90001" +260152,USB-C Charging Cable,1,11.95,09/07/19 13:17,"269 River St, Boston, MA 02215" +260153,Apple Airpods Headphones,1,150,09/12/19 11:28,"527 6th St, Austin, TX 73301" +260154,Bose SoundSport Headphones,1,99.99,09/29/19 12:38,"519 Wilson St, Portland, OR 97035" +260155,27in FHD Monitor,1,149.99,09/03/19 19:16,"937 Cherry St, San Francisco, CA 94016" +260156,USB-C Charging Cable,1,11.95,09/16/19 13:03,"122 Sunset St, Seattle, WA 98101" +260157,Lightning Charging Cable,1,14.95,09/13/19 12:52,"555 1st St, Los Angeles, CA 90001" +260158,Lightning Charging Cable,1,14.95,09/26/19 15:27,"445 South St, New York City, NY 10001" +260159,Apple Airpods Headphones,1,150,09/09/19 11:41,"236 Ridge St, New York City, NY 10001" +260160,Lightning Charging Cable,1,14.95,09/16/19 22:13,"69 Cedar St, New York City, NY 10001" +260161,Bose SoundSport Headphones,1,99.99,09/30/19 11:35,"941 Adams St, Portland, OR 97035" +260162,Macbook Pro Laptop,1,1700,09/07/19 00:05,"113 West St, Dallas, TX 75001" +260163,ThinkPad Laptop,1,999.99,09/16/19 00:29,"991 South St, Dallas, TX 75001" +260164,Macbook Pro Laptop,1,1700,09/14/19 15:02,"382 7th St, Atlanta, GA 30301" +260165,Flatscreen TV,1,300,09/27/19 17:01,"114 Jefferson St, San Francisco, CA 94016" +260166,Lightning Charging Cable,1,14.95,09/15/19 21:23,"719 Center St, San Francisco, CA 94016" +260167,20in Monitor,1,109.99,09/01/19 21:01,"293 5th St, Los Angeles, CA 90001" +260168,Apple Airpods Headphones,1,150,09/03/19 16:33,"912 11th St, Dallas, TX 75001" +260169,Lightning Charging Cable,1,14.95,09/17/19 13:32,"283 Adams St, Portland, ME 04101" +260170,USB-C Charging Cable,1,11.95,09/19/19 06:34,"676 Cherry St, New York City, NY 10001" +260171,AAA Batteries (4-pack),1,2.99,09/05/19 19:03,"918 4th St, Los Angeles, CA 90001" +260172,USB-C Charging Cable,1,11.95,09/07/19 22:10,"470 12th St, San Francisco, CA 94016" +260173,Bose SoundSport Headphones,1,99.99,09/13/19 13:00,"516 Cherry St, Portland, OR 97035" +260174,Apple Airpods Headphones,1,150,09/09/19 10:31,"81 Ridge St, San Francisco, CA 94016" +260175,AAA Batteries (4-pack),2,2.99,09/04/19 22:45,"843 1st St, San Francisco, CA 94016" +260176,Macbook Pro Laptop,1,1700,09/14/19 09:39,"226 South St, San Francisco, CA 94016" +260177,Wired Headphones,1,11.99,09/22/19 12:40,"758 Lincoln St, Boston, MA 02215" +260178,USB-C Charging Cable,1,11.95,09/06/19 10:33,"459 Willow St, Boston, MA 02215" +260179,34in Ultrawide Monitor,1,379.99,09/13/19 17:58,"740 Main St, Seattle, WA 98101" +260180,AA Batteries (4-pack),2,3.84,09/21/19 11:31,"661 Park St, New York City, NY 10001" +260181,27in 4K Gaming Monitor,1,389.99,09/22/19 01:44,"300 Ridge St, Boston, MA 02215" +260182,iPhone,1,700,09/02/19 08:26,"94 West St, Seattle, WA 98101" +260182,Lightning Charging Cable,2,14.95,09/02/19 08:26,"94 West St, Seattle, WA 98101" +260183,AAA Batteries (4-pack),1,2.99,09/05/19 16:30,"318 Jefferson St, Los Angeles, CA 90001" +260184,Apple Airpods Headphones,1,150,09/06/19 21:15,"240 South St, Boston, MA 02215" +260185,AAA Batteries (4-pack),1,2.99,09/10/19 09:51,"981 North St, New York City, NY 10001" +260186,AA Batteries (4-pack),1,3.84,09/08/19 11:18,"938 Spruce St, Austin, TX 73301" +260187,Bose SoundSport Headphones,1,99.99,09/09/19 22:12,"266 6th St, Portland, OR 97035" +260188,AAA Batteries (4-pack),1,2.99,09/24/19 14:33,"543 10th St, Dallas, TX 75001" +260189,AA Batteries (4-pack),1,3.84,09/12/19 09:55,"267 Johnson St, Atlanta, GA 30301" +260190,AAA Batteries (4-pack),1,2.99,09/01/19 08:36,"885 Forest St, Austin, TX 73301" +260191,ThinkPad Laptop,1,999.99,09/14/19 14:58,"280 Lakeview St, Dallas, TX 75001" +260192,USB-C Charging Cable,1,11.95,09/07/19 09:11,"164 Sunset St, Atlanta, GA 30301" +260193,AAA Batteries (4-pack),2,2.99,09/07/19 02:13,"910 West St, Seattle, WA 98101" +260194,AAA Batteries (4-pack),1,2.99,09/26/19 19:47,"354 Lincoln St, San Francisco, CA 94016" +260194,Wired Headphones,1,11.99,09/26/19 19:47,"354 Lincoln St, San Francisco, CA 94016" +260195,AAA Batteries (4-pack),1,2.99,09/21/19 23:03,"122 Dogwood St, San Francisco, CA 94016" +260196,20in Monitor,1,109.99,09/20/19 12:55,"821 Park St, Boston, MA 02215" +260197,Apple Airpods Headphones,1,150,09/14/19 14:40,"492 Elm St, Los Angeles, CA 90001" +260198,AAA Batteries (4-pack),2,2.99,09/07/19 19:28,"202 9th St, New York City, NY 10001" +260199,Flatscreen TV,1,300,09/25/19 16:13,"511 14th St, Los Angeles, CA 90001" +260200,AAA Batteries (4-pack),1,2.99,09/17/19 14:20,"458 Hickory St, Atlanta, GA 30301" +260201,Bose SoundSport Headphones,1,99.99,09/16/19 21:32,"971 13th St, San Francisco, CA 94016" +260202,Apple Airpods Headphones,1,150,09/21/19 20:12,"20 Hickory St, New York City, NY 10001" +260202,AAA Batteries (4-pack),4,2.99,09/21/19 20:12,"20 Hickory St, New York City, NY 10001" +260203,AAA Batteries (4-pack),1,2.99,09/16/19 16:36,"658 Pine St, Austin, TX 73301" +260204,AA Batteries (4-pack),1,3.84,09/18/19 09:33,"530 Willow St, Atlanta, GA 30301" +260205,AA Batteries (4-pack),1,3.84,09/17/19 11:02,"382 Church St, Atlanta, GA 30301" +260206,USB-C Charging Cable,1,11.95,09/09/19 13:33,"194 1st St, Atlanta, GA 30301" +260207,AAA Batteries (4-pack),2,2.99,09/01/19 13:28,"31 Jefferson St, Los Angeles, CA 90001" +260208,Lightning Charging Cable,1,14.95,09/22/19 12:53,"842 Lincoln St, Los Angeles, CA 90001" +260209,Macbook Pro Laptop,1,1700,09/21/19 08:42,"432 Ridge St, Atlanta, GA 30301" +260210,Wired Headphones,1,11.99,09/27/19 20:19,"582 14th St, New York City, NY 10001" +260211,Wired Headphones,1,11.99,09/15/19 13:23,"516 8th St, Portland, ME 04101" +260212,Macbook Pro Laptop,1,1700,09/07/19 08:47,"806 Meadow St, Atlanta, GA 30301" +260213,27in FHD Monitor,1,149.99,09/16/19 19:06,"640 Adams St, Los Angeles, CA 90001" +260214,Lightning Charging Cable,1,14.95,09/14/19 13:25,"275 Hill St, Los Angeles, CA 90001" +260215,AAA Batteries (4-pack),1,2.99,09/24/19 06:58,"722 13th St, Seattle, WA 98101" +260216,USB-C Charging Cable,1,11.95,09/07/19 16:03,"552 Jefferson St, Boston, MA 02215" +260217,Lightning Charging Cable,1,14.95,09/26/19 16:17,"577 Willow St, Dallas, TX 75001" +260218,Wired Headphones,1,11.99,09/14/19 00:19,"173 Lake St, Boston, MA 02215" +260219,Vareebadd Phone,2,400,09/12/19 11:42,"886 Park St, Los Angeles, CA 90001" +260220,Apple Airpods Headphones,1,150,09/15/19 09:40,"850 4th St, New York City, NY 10001" +260221,AA Batteries (4-pack),1,3.84,09/27/19 10:43,"653 6th St, Austin, TX 73301" +260222,AA Batteries (4-pack),1,3.84,09/02/19 18:57,"105 Dogwood St, Austin, TX 73301" +260223,Flatscreen TV,1,300,09/26/19 15:16,"670 Maple St, San Francisco, CA 94016" +260224,USB-C Charging Cable,1,11.95,09/17/19 07:07,"947 Pine St, Los Angeles, CA 90001" +260225,AAA Batteries (4-pack),1,2.99,09/02/19 13:52,"275 Hickory St, Portland, OR 97035" +260226,Flatscreen TV,1,300,09/16/19 22:16,"45 11th St, Boston, MA 02215" +260227,27in 4K Gaming Monitor,1,389.99,09/09/19 18:54,"272 10th St, San Francisco, CA 94016" +260228,Wired Headphones,1,11.99,09/21/19 21:00,"492 Church St, Boston, MA 02215" +260229,AA Batteries (4-pack),1,3.84,09/10/19 13:16,"182 Ridge St, Dallas, TX 75001" +260230,Apple Airpods Headphones,1,150,09/13/19 12:15,"122 Jackson St, New York City, NY 10001" +260231,AAA Batteries (4-pack),2,2.99,09/07/19 12:26,"158 Park St, San Francisco, CA 94016" +260232,Macbook Pro Laptop,1,1700,09/12/19 22:22,"852 Church St, New York City, NY 10001" +260233,Apple Airpods Headphones,1,150,09/29/19 15:25,"413 Spruce St, Boston, MA 02215" +260234,Bose SoundSport Headphones,1,99.99,09/02/19 11:50,"353 Jefferson St, Dallas, TX 75001" +260235,AAA Batteries (4-pack),1,2.99,09/06/19 21:37,"831 South St, Boston, MA 02215" +260236,AA Batteries (4-pack),1,3.84,09/29/19 15:04,"816 South St, Boston, MA 02215" +260237,LG Dryer,1,600.0,09/21/19 17:13,"136 North St, Los Angeles, CA 90001" +260238,USB-C Charging Cable,1,11.95,09/15/19 13:32,"117 6th St, San Francisco, CA 94016" +260239,iPhone,1,700,09/25/19 15:15,"23 Wilson St, New York City, NY 10001" +260239,Apple Airpods Headphones,1,150,09/25/19 15:15,"23 Wilson St, New York City, NY 10001" +260240,Vareebadd Phone,1,400,09/22/19 15:10,"929 5th St, New York City, NY 10001" +260241,AAA Batteries (4-pack),1,2.99,09/17/19 23:53,"547 Ridge St, Seattle, WA 98101" +260242,20in Monitor,1,109.99,09/19/19 11:25,"645 Lincoln St, Dallas, TX 75001" +260243,AAA Batteries (4-pack),2,2.99,09/15/19 21:16,"835 River St, Seattle, WA 98101" +260244,Lightning Charging Cable,1,14.95,09/06/19 21:19,"548 North St, San Francisco, CA 94016" +260244,Lightning Charging Cable,1,14.95,09/06/19 21:19,"548 North St, San Francisco, CA 94016" +260245,Lightning Charging Cable,1,14.95,09/14/19 21:01,"294 Ridge St, Los Angeles, CA 90001" +260246,AA Batteries (4-pack),1,3.84,09/24/19 13:23,"724 Meadow St, New York City, NY 10001" +260247,USB-C Charging Cable,1,11.95,09/27/19 19:42,"11 North St, San Francisco, CA 94016" +260248,Wired Headphones,1,11.99,09/05/19 23:45,"539 10th St, San Francisco, CA 94016" +260249,27in FHD Monitor,1,149.99,09/10/19 22:34,"213 Lakeview St, San Francisco, CA 94016" +260250,Lightning Charging Cable,1,14.95,09/20/19 10:39,"366 Sunset St, Los Angeles, CA 90001" +260251,Apple Airpods Headphones,1,150,09/05/19 00:32,"780 South St, San Francisco, CA 94016" +260252,Google Phone,1,600,09/01/19 18:46,"169 Jefferson St, New York City, NY 10001" +260253,Lightning Charging Cable,1,14.95,09/05/19 20:07,"232 Park St, Atlanta, GA 30301" +260254,Google Phone,1,600,09/05/19 22:13,"729 Jackson St, Portland, OR 97035" +260254,USB-C Charging Cable,1,11.95,09/05/19 22:13,"729 Jackson St, Portland, OR 97035" +260255,AAA Batteries (4-pack),1,2.99,09/10/19 17:14,"672 Willow St, Los Angeles, CA 90001" +260256,Lightning Charging Cable,1,14.95,09/23/19 18:36,"452 Forest St, New York City, NY 10001" +260257,Wired Headphones,1,11.99,09/23/19 20:46,"2 Walnut St, San Francisco, CA 94016" +260258,AA Batteries (4-pack),2,3.84,09/05/19 19:37,"191 Walnut St, Boston, MA 02215" +260259,34in Ultrawide Monitor,1,379.99,09/01/19 11:52,"138 Hill St, San Francisco, CA 94016" +260260,Lightning Charging Cable,1,14.95,09/30/19 16:27,"769 Madison St, Boston, MA 02215" +260261,AAA Batteries (4-pack),2,2.99,09/06/19 04:40,"250 11th St, Seattle, WA 98101" +260262,AAA Batteries (4-pack),2,2.99,09/14/19 19:00,"512 6th St, Austin, TX 73301" +260263,AAA Batteries (4-pack),1,2.99,09/20/19 12:19,"755 Lake St, New York City, NY 10001" +260264,Macbook Pro Laptop,1,1700,09/10/19 22:25,"779 9th St, Austin, TX 73301" +260265,USB-C Charging Cable,1,11.95,09/19/19 07:52,"379 Hickory St, Austin, TX 73301" +260266,Lightning Charging Cable,2,14.95,09/06/19 18:29,"671 Spruce St, New York City, NY 10001" +260267,27in FHD Monitor,1,149.99,09/18/19 20:55,"123 14th St, New York City, NY 10001" +260268,Bose SoundSport Headphones,1,99.99,09/16/19 05:30,"454 Walnut St, San Francisco, CA 94016" +260269,AAA Batteries (4-pack),1,2.99,09/11/19 12:12,"7 14th St, San Francisco, CA 94016" +260270,AAA Batteries (4-pack),1,2.99,09/21/19 14:03,"831 11th St, Los Angeles, CA 90001" +260271,Wired Headphones,1,11.99,10/01/19 02:05,"687 8th St, New York City, NY 10001" +260272,USB-C Charging Cable,1,11.95,09/12/19 12:08,"779 Chestnut St, New York City, NY 10001" +260273,Lightning Charging Cable,1,14.95,09/11/19 14:43,"300 Elm St, Los Angeles, CA 90001" +260274,ThinkPad Laptop,1,999.99,09/11/19 20:24,"638 Madison St, San Francisco, CA 94016" +260275,Flatscreen TV,1,300,09/04/19 19:50,"158 1st St, Austin, TX 73301" +260275,Vareebadd Phone,1,400,09/04/19 19:50,"158 1st St, Austin, TX 73301" +260276,USB-C Charging Cable,1,11.95,09/05/19 22:12,"316 North St, New York City, NY 10001" +260277,34in Ultrawide Monitor,1,379.99,09/15/19 18:51,"280 Church St, Los Angeles, CA 90001" +260278,20in Monitor,1,109.99,09/29/19 18:52,"18 Center St, Seattle, WA 98101" +260279,LG Washing Machine,1,600.0,09/08/19 22:56,"323 9th St, Los Angeles, CA 90001" +260280,USB-C Charging Cable,1,11.95,09/26/19 12:42,"646 7th St, Boston, MA 02215" +260281,Lightning Charging Cable,1,14.95,09/20/19 16:53,"973 Highland St, San Francisco, CA 94016" +260282,AAA Batteries (4-pack),1,2.99,09/20/19 04:36,"547 Johnson St, Dallas, TX 75001" +260283,ThinkPad Laptop,1,999.99,09/24/19 19:53,"858 8th St, San Francisco, CA 94016" +260284,Lightning Charging Cable,1,14.95,09/30/19 01:15,"968 Ridge St, Seattle, WA 98101" +260285,USB-C Charging Cable,1,11.95,09/14/19 13:11,"26 Dogwood St, Seattle, WA 98101" +260286,USB-C Charging Cable,1,11.95,09/27/19 13:04,"224 Highland St, Dallas, TX 75001" +260287,Bose SoundSport Headphones,1,99.99,09/02/19 20:48,"113 Meadow St, Los Angeles, CA 90001" +260288,Lightning Charging Cable,1,14.95,09/04/19 21:03,"401 Madison St, Boston, MA 02215" +260289,34in Ultrawide Monitor,1,379.99,09/04/19 16:20,"979 North St, Dallas, TX 75001" +260290,20in Monitor,1,109.99,09/02/19 09:02,"450 West St, San Francisco, CA 94016" +260291,AAA Batteries (4-pack),1,2.99,09/07/19 09:35,"423 Dogwood St, San Francisco, CA 94016" +260292,Apple Airpods Headphones,1,150,09/08/19 12:09,"291 Hill St, Atlanta, GA 30301" +260293,Lightning Charging Cable,1,14.95,09/29/19 16:58,"995 Sunset St, San Francisco, CA 94016" +260294,27in 4K Gaming Monitor,1,389.99,09/29/19 00:31,"167 7th St, Portland, OR 97035" +260295,Apple Airpods Headphones,1,150,09/12/19 08:46,"162 Madison St, New York City, NY 10001" +260296,AAA Batteries (4-pack),2,2.99,09/09/19 11:11,"143 Center St, Boston, MA 02215" +260297,Macbook Pro Laptop,1,1700,09/24/19 05:33,"9 14th St, Atlanta, GA 30301" +260298,Bose SoundSport Headphones,1,99.99,09/02/19 21:21,"469 Washington St, San Francisco, CA 94016" +260299,USB-C Charging Cable,1,11.95,09/16/19 21:14,"517 5th St, San Francisco, CA 94016" +260300,Bose SoundSport Headphones,1,99.99,09/01/19 15:02,"810 Dogwood St, New York City, NY 10001" +260301,AAA Batteries (4-pack),2,2.99,09/17/19 23:30,"42 1st St, San Francisco, CA 94016" +260302,Flatscreen TV,1,300,09/10/19 12:57,"685 Walnut St, Atlanta, GA 30301" +,,,,, +260303,Lightning Charging Cable,1,14.95,09/17/19 12:44,"847 11th St, San Francisco, CA 94016" +260304,USB-C Charging Cable,1,11.95,09/08/19 13:13,"98 6th St, Boston, MA 02215" +260305,USB-C Charging Cable,1,11.95,09/01/19 16:19,"532 Sunset St, San Francisco, CA 94016" +260306,iPhone,1,700,09/02/19 18:42,"109 Wilson St, Portland, OR 97035" +260306,Lightning Charging Cable,1,14.95,09/02/19 18:42,"109 Wilson St, Portland, OR 97035" +260307,Lightning Charging Cable,1,14.95,09/22/19 13:12,"398 8th St, San Francisco, CA 94016" +260308,USB-C Charging Cable,1,11.95,09/05/19 17:45,"725 Meadow St, Portland, ME 04101" +260309,USB-C Charging Cable,2,11.95,09/07/19 15:54,"524 1st St, New York City, NY 10001" +260310,Lightning Charging Cable,1,14.95,09/22/19 11:39,"123 Jackson St, Austin, TX 73301" +260311,20in Monitor,1,109.99,09/11/19 20:42,"513 Main St, San Francisco, CA 94016" +260312,Apple Airpods Headphones,1,150,09/06/19 22:32,"620 North St, Seattle, WA 98101" +260313,Lightning Charging Cable,1,14.95,09/20/19 15:55,"266 Willow St, San Francisco, CA 94016" +260314,ThinkPad Laptop,1,999.99,09/10/19 17:14,"358 Jefferson St, Dallas, TX 75001" +260315,Lightning Charging Cable,1,14.95,09/02/19 14:28,"499 8th St, San Francisco, CA 94016" +260316,AAA Batteries (4-pack),1,2.99,09/19/19 11:57,"92 13th St, San Francisco, CA 94016" +260317,USB-C Charging Cable,1,11.95,09/07/19 18:12,"317 Park St, Boston, MA 02215" +260318,AAA Batteries (4-pack),2,2.99,09/23/19 21:24,"919 9th St, San Francisco, CA 94016" +260319,Lightning Charging Cable,2,14.95,09/05/19 15:20,"828 Adams St, New York City, NY 10001" +260320,AA Batteries (4-pack),1,3.84,09/01/19 13:28,"367 12th St, Portland, OR 97035" +260321,Wired Headphones,1,11.99,09/26/19 09:47,"192 Lake St, Portland, OR 97035" +260322,USB-C Charging Cable,2,11.95,09/08/19 16:05,"492 Willow St, Dallas, TX 75001" +260323,USB-C Charging Cable,1,11.95,09/09/19 18:34,"405 Lincoln St, San Francisco, CA 94016" +260324,USB-C Charging Cable,2,11.95,09/06/19 22:28,"545 Jackson St, Boston, MA 02215" +260325,Flatscreen TV,1,300,09/26/19 11:19,"500 Dogwood St, San Francisco, CA 94016" +260326,Apple Airpods Headphones,1,150,09/09/19 20:04,"367 10th St, Dallas, TX 75001" +260327,AA Batteries (4-pack),1,3.84,09/23/19 22:38,"524 14th St, New York City, NY 10001" +260328,Flatscreen TV,1,300,09/24/19 15:11,"459 Highland St, San Francisco, CA 94016" +260329,Wired Headphones,1,11.99,09/09/19 06:03,"700 Wilson St, Portland, OR 97035" +260330,Macbook Pro Laptop,1,1700,09/20/19 19:41,"259 Center St, San Francisco, CA 94016" +260331,Lightning Charging Cable,1,14.95,09/20/19 10:31,"650 13th St, Los Angeles, CA 90001" +260332,Apple Airpods Headphones,1,150,09/11/19 00:03,"605 Willow St, New York City, NY 10001" +260333,Lightning Charging Cable,2,14.95,09/05/19 19:06,"907 12th St, New York City, NY 10001" +260334,USB-C Charging Cable,1,11.95,09/23/19 13:02,"385 8th St, San Francisco, CA 94016" +260335,AA Batteries (4-pack),1,3.84,09/29/19 11:59,"915 Highland St, New York City, NY 10001" +260336,Bose SoundSport Headphones,1,99.99,09/28/19 16:59,"528 7th St, San Francisco, CA 94016" +260337,Wired Headphones,1,11.99,09/16/19 23:00,"157 5th St, San Francisco, CA 94016" +260337,AAA Batteries (4-pack),1,2.99,09/16/19 23:00,"157 5th St, San Francisco, CA 94016" +260338,Google Phone,1,600,09/27/19 00:00,"795 Wilson St, San Francisco, CA 94016" +260339,Vareebadd Phone,1,400,09/18/19 11:40,"531 Walnut St, Dallas, TX 75001" +260340,Bose SoundSport Headphones,1,99.99,09/30/19 21:02,"949 7th St, San Francisco, CA 94016" +260341,Wired Headphones,1,11.99,09/07/19 09:48,"209 Spruce St, San Francisco, CA 94016" +260342,USB-C Charging Cable,1,11.95,09/08/19 20:36,"953 7th St, New York City, NY 10001" +260343,AA Batteries (4-pack),1,3.84,09/07/19 18:34,"576 6th St, Boston, MA 02215" +260344,Apple Airpods Headphones,1,150,09/23/19 11:18,"425 Hill St, Los Angeles, CA 90001" +260345,34in Ultrawide Monitor,1,379.99,09/09/19 09:07,"271 Dogwood St, San Francisco, CA 94016" +260346,Lightning Charging Cable,1,14.95,09/22/19 19:34,"452 Washington St, Los Angeles, CA 90001" +260347,AA Batteries (4-pack),1,3.84,09/24/19 10:01,"178 Sunset St, Los Angeles, CA 90001" +260348,27in FHD Monitor,1,149.99,09/04/19 12:35,"482 Spruce St, San Francisco, CA 94016" +260349,Google Phone,1,600,09/06/19 18:56,"450 Elm St, Austin, TX 73301" +260350,34in Ultrawide Monitor,1,379.99,09/11/19 12:01,"509 Park St, New York City, NY 10001" +260351,AA Batteries (4-pack),1,3.84,09/03/19 09:47,"843 Washington St, Boston, MA 02215" +260352,AA Batteries (4-pack),1,3.84,09/10/19 17:57,"164 Hickory St, Atlanta, GA 30301" +260353,AAA Batteries (4-pack),1,2.99,09/19/19 15:02,"507 Elm St, San Francisco, CA 94016" +260354,USB-C Charging Cable,1,11.95,09/11/19 10:34,"275 Park St, San Francisco, CA 94016" +260355,Wired Headphones,1,11.99,09/10/19 15:01,"117 Center St, San Francisco, CA 94016" +260356,Lightning Charging Cable,1,14.95,09/14/19 10:44,"916 Willow St, San Francisco, CA 94016" +260357,27in 4K Gaming Monitor,1,389.99,09/05/19 20:11,"204 Maple St, Dallas, TX 75001" +260358,Apple Airpods Headphones,1,150,09/08/19 17:06,"701 Hickory St, San Francisco, CA 94016" +260359,Apple Airpods Headphones,1,150,09/05/19 18:00,"488 Wilson St, Portland, ME 04101" +260360,27in FHD Monitor,1,149.99,09/27/19 09:18,"281 Sunset St, Los Angeles, CA 90001" +260361,Wired Headphones,1,11.99,09/19/19 17:10,"409 Jackson St, Boston, MA 02215" +260362,27in FHD Monitor,1,149.99,09/28/19 16:09,"990 Hickory St, New York City, NY 10001" +260363,Apple Airpods Headphones,1,150,09/25/19 12:39,"882 Walnut St, Portland, ME 04101" +260364,Bose SoundSport Headphones,1,99.99,09/19/19 19:34,"278 Walnut St, Seattle, WA 98101" +260365,AA Batteries (4-pack),1,3.84,09/07/19 18:41,"569 5th St, New York City, NY 10001" +260366,Wired Headphones,1,11.99,09/20/19 17:34,"876 Jackson St, Dallas, TX 75001" +260367,AAA Batteries (4-pack),1,2.99,09/05/19 20:04,"380 2nd St, San Francisco, CA 94016" +260368,AA Batteries (4-pack),1,3.84,09/04/19 20:30,"237 Cedar St, Portland, OR 97035" +260369,AAA Batteries (4-pack),1,2.99,09/11/19 17:55,"355 11th St, Boston, MA 02215" +260370,AA Batteries (4-pack),1,3.84,09/03/19 18:55,"120 River St, Seattle, WA 98101" +260371,Lightning Charging Cable,1,14.95,09/22/19 10:38,"105 4th St, Portland, OR 97035" +260372,AA Batteries (4-pack),2,3.84,09/13/19 10:02,"957 Hill St, San Francisco, CA 94016" +260373,Apple Airpods Headphones,1,150,09/27/19 06:16,"983 Meadow St, Boston, MA 02215" +260374,USB-C Charging Cable,1,11.95,09/19/19 19:00,"51 14th St, Los Angeles, CA 90001" +260375,Bose SoundSport Headphones,1,99.99,09/02/19 21:55,"540 Willow St, San Francisco, CA 94016" +260376,USB-C Charging Cable,1,11.95,09/06/19 19:52,"110 North St, San Francisco, CA 94016" +260377,ThinkPad Laptop,1,999.99,09/20/19 11:55,"863 Walnut St, Boston, MA 02215" +260378,27in FHD Monitor,1,149.99,09/29/19 11:14,"511 Hill St, Atlanta, GA 30301" +260379,AA Batteries (4-pack),2,3.84,09/04/19 20:12,"346 Jackson St, New York City, NY 10001" +260380,27in 4K Gaming Monitor,1,389.99,09/04/19 09:45,"978 11th St, Atlanta, GA 30301" +260381,AA Batteries (4-pack),1,3.84,09/14/19 07:17,"990 Jefferson St, Atlanta, GA 30301" +260382,iPhone,1,700,09/11/19 22:30,"954 Elm St, Dallas, TX 75001" +260383,27in 4K Gaming Monitor,1,389.99,09/16/19 19:50,"682 Chestnut St, Los Angeles, CA 90001" +260384,Bose SoundSport Headphones,1,99.99,09/01/19 12:08,"430 Walnut St, San Francisco, CA 94016" +260385,Apple Airpods Headphones,1,150,09/22/19 18:29,"518 Elm St, Atlanta, GA 30301" +260386,Bose SoundSport Headphones,1,99.99,09/16/19 13:33,"954 Lakeview St, Atlanta, GA 30301" +260387,AA Batteries (4-pack),1,3.84,09/11/19 20:38,"829 Hill St, Dallas, TX 75001" +260387,Wired Headphones,1,11.99,09/11/19 20:38,"829 Hill St, Dallas, TX 75001" +260388,Lightning Charging Cable,1,14.95,09/03/19 02:34,"474 11th St, Dallas, TX 75001" +260389,AAA Batteries (4-pack),2,2.99,09/12/19 11:25,"673 Hill St, San Francisco, CA 94016" +260390,Lightning Charging Cable,1,14.95,09/25/19 02:57,"898 Madison St, San Francisco, CA 94016" +260391,Lightning Charging Cable,1,14.95,09/14/19 15:54,"232 Lakeview St, Los Angeles, CA 90001" +260392,AAA Batteries (4-pack),1,2.99,09/20/19 12:05,"188 2nd St, New York City, NY 10001" +260393,AAA Batteries (4-pack),1,2.99,09/10/19 06:11,"780 Hill St, Atlanta, GA 30301" +260394,Bose SoundSport Headphones,1,99.99,09/27/19 12:08,"625 Forest St, Seattle, WA 98101" +260395,Lightning Charging Cable,1,14.95,09/14/19 16:56,"632 Chestnut St, New York City, NY 10001" +260396,AAA Batteries (4-pack),1,2.99,09/14/19 13:57,"38 South St, Los Angeles, CA 90001" +260397,USB-C Charging Cable,1,11.95,09/20/19 11:20,"975 Johnson St, Portland, OR 97035" +260398,AA Batteries (4-pack),5,3.84,09/18/19 21:15,"840 14th St, Atlanta, GA 30301" +260399,USB-C Charging Cable,2,11.95,09/01/19 22:43,"105 11th St, Portland, OR 97035" +260400,AAA Batteries (4-pack),3,2.99,09/01/19 13:12,"717 10th St, New York City, NY 10001" +260401,Lightning Charging Cable,1,14.95,09/17/19 12:32,"883 14th St, San Francisco, CA 94016" +260402,Wired Headphones,1,11.99,09/21/19 05:54,"434 Dogwood St, Los Angeles, CA 90001" +,,,,, +260403,27in 4K Gaming Monitor,1,389.99,09/03/19 15:25,"731 Johnson St, Boston, MA 02215" +260404,USB-C Charging Cable,1,11.95,09/21/19 07:15,"929 Meadow St, Los Angeles, CA 90001" +260405,USB-C Charging Cable,1,11.95,09/01/19 17:33,"49 4th St, Boston, MA 02215" +260406,iPhone,1,700,09/14/19 17:28,"948 Center St, San Francisco, CA 94016" +260406,Lightning Charging Cable,1,14.95,09/14/19 17:28,"948 Center St, San Francisco, CA 94016" +260407,Lightning Charging Cable,1,14.95,09/21/19 19:38,"624 9th St, Portland, ME 04101" +260408,Google Phone,1,600,09/15/19 09:32,"59 Washington St, Dallas, TX 75001" +260409,Bose SoundSport Headphones,1,99.99,09/12/19 12:05,"34 5th St, San Francisco, CA 94016" +260410,Lightning Charging Cable,1,14.95,09/02/19 21:07,"535 8th St, Austin, TX 73301" +260411,Lightning Charging Cable,1,14.95,09/13/19 09:05,"409 Washington St, Seattle, WA 98101" +260412,Apple Airpods Headphones,1,150,09/23/19 21:05,"450 Sunset St, Portland, OR 97035" +260413,Lightning Charging Cable,1,14.95,09/11/19 23:37,"756 Pine St, New York City, NY 10001" +260414,USB-C Charging Cable,1,11.95,09/13/19 14:34,"310 Washington St, Seattle, WA 98101" +260415,Wired Headphones,1,11.99,09/01/19 07:36,"184 Lincoln St, Los Angeles, CA 90001" +260416,20in Monitor,1,109.99,09/28/19 08:24,"89 14th St, Boston, MA 02215" +260417,AA Batteries (4-pack),1,3.84,09/27/19 00:50,"103 10th St, Portland, ME 04101" +260418,AAA Batteries (4-pack),1,2.99,09/06/19 16:26,"59 5th St, Dallas, TX 75001" +260419,Wired Headphones,1,11.99,09/04/19 14:30,"635 South St, Atlanta, GA 30301" +260420,27in 4K Gaming Monitor,1,389.99,09/04/19 10:40,"641 Cedar St, San Francisco, CA 94016" +260421,USB-C Charging Cable,1,11.95,09/08/19 11:40,"595 Jefferson St, Seattle, WA 98101" +260422,AA Batteries (4-pack),1,3.84,09/14/19 20:04,"223 Park St, Atlanta, GA 30301" +260423,AA Batteries (4-pack),1,3.84,09/04/19 22:37,"624 West St, San Francisco, CA 94016" +260424,USB-C Charging Cable,1,11.95,09/10/19 07:51,"690 4th St, Los Angeles, CA 90001" +260425,Macbook Pro Laptop,1,1700,09/01/19 23:31,"697 Walnut St, Los Angeles, CA 90001" +260426,27in FHD Monitor,1,149.99,09/12/19 16:43,"644 Johnson St, San Francisco, CA 94016" +260427,20in Monitor,1,109.99,09/20/19 11:46,"757 Adams St, Atlanta, GA 30301" +260428,Bose SoundSport Headphones,1,99.99,09/02/19 17:36,"28 9th St, New York City, NY 10001" +260429,USB-C Charging Cable,2,11.95,09/13/19 12:32,"447 Johnson St, Austin, TX 73301" +260430,Bose SoundSport Headphones,1,99.99,09/06/19 15:07,"590 2nd St, New York City, NY 10001" +260431,27in FHD Monitor,1,149.99,09/24/19 11:54,"424 Pine St, Los Angeles, CA 90001" +260432,Apple Airpods Headphones,1,150,09/29/19 19:16,"80 9th St, Austin, TX 73301" +260433,Apple Airpods Headphones,1,150,09/25/19 17:04,"296 10th St, New York City, NY 10001" +260434,Apple Airpods Headphones,1,150,09/02/19 09:50,"863 Adams St, San Francisco, CA 94016" +260435,34in Ultrawide Monitor,1,379.99,09/24/19 18:57,"444 2nd St, Portland, OR 97035" +260436,Bose SoundSport Headphones,1,99.99,09/15/19 16:46,"616 Highland St, Austin, TX 73301" +260437,Vareebadd Phone,1,400,09/21/19 12:35,"772 Lincoln St, Austin, TX 73301" +260438,USB-C Charging Cable,1,11.95,09/11/19 17:09,"94 Chestnut St, Austin, TX 73301" +260439,USB-C Charging Cable,2,11.95,09/09/19 20:53,"56 Elm St, Boston, MA 02215" +260440,Apple Airpods Headphones,1,150,09/04/19 10:16,"409 Lake St, Boston, MA 02215" +260441,Google Phone,1,600,09/12/19 21:29,"798 Chestnut St, Boston, MA 02215" +260442,AAA Batteries (4-pack),1,2.99,09/19/19 18:18,"227 9th St, Los Angeles, CA 90001" +260443,Google Phone,1,600,09/29/19 21:08,"460 Cedar St, Los Angeles, CA 90001" +260444,Lightning Charging Cable,1,14.95,09/27/19 13:13,"475 Highland St, Portland, OR 97035" +260445,AAA Batteries (4-pack),1,2.99,09/30/19 18:40,"780 Spruce St, New York City, NY 10001" +260446,Lightning Charging Cable,1,14.95,09/25/19 18:18,"442 Cedar St, San Francisco, CA 94016" +260447,27in 4K Gaming Monitor,1,389.99,09/26/19 21:42,"140 12th St, Portland, OR 97035" +260448,AA Batteries (4-pack),2,3.84,09/24/19 14:35,"324 2nd St, Los Angeles, CA 90001" +260449,Lightning Charging Cable,1,14.95,09/15/19 08:56,"554 Ridge St, Los Angeles, CA 90001" +260450,AA Batteries (4-pack),1,3.84,09/16/19 14:20,"694 Madison St, New York City, NY 10001" +260451,Lightning Charging Cable,1,14.95,09/24/19 11:38,"887 2nd St, San Francisco, CA 94016" +260452,Wired Headphones,1,11.99,09/02/19 18:56,"935 8th St, New York City, NY 10001" +260453,USB-C Charging Cable,1,11.95,09/23/19 18:35,"917 Lakeview St, Atlanta, GA 30301" +260454,Lightning Charging Cable,1,14.95,09/16/19 21:14,"28 Sunset St, Atlanta, GA 30301" +260455,AAA Batteries (4-pack),1,2.99,09/10/19 18:57,"682 Chestnut St, New York City, NY 10001" +260456,iPhone,1,700,09/18/19 18:27,"127 Ridge St, Portland, OR 97035" +260456,Apple Airpods Headphones,1,150,09/18/19 18:27,"127 Ridge St, Portland, OR 97035" +260457,Flatscreen TV,1,300,09/29/19 10:09,"912 Lakeview St, Dallas, TX 75001" +260458,AAA Batteries (4-pack),2,2.99,09/27/19 13:38,"821 Church St, Los Angeles, CA 90001" +260459,Apple Airpods Headphones,1,150,09/27/19 18:08,"333 9th St, Austin, TX 73301" +260460,Bose SoundSport Headphones,1,99.99,09/28/19 23:43,"434 Willow St, Portland, OR 97035" +260461,Bose SoundSport Headphones,1,99.99,09/25/19 12:40,"334 Maple St, San Francisco, CA 94016" +260462,AAA Batteries (4-pack),1,2.99,09/13/19 16:11,"496 6th St, Austin, TX 73301" +260463,AA Batteries (4-pack),1,3.84,09/02/19 10:47,"433 River St, Austin, TX 73301" +260464,27in FHD Monitor,1,149.99,09/06/19 12:08,"369 North St, Los Angeles, CA 90001" +260465,AAA Batteries (4-pack),1,2.99,09/29/19 20:05,"14 River St, Boston, MA 02215" +260466,AAA Batteries (4-pack),1,2.99,09/11/19 12:53,"908 8th St, Seattle, WA 98101" +260467,Apple Airpods Headphones,1,150,09/04/19 09:32,"623 Maple St, New York City, NY 10001" +260468,USB-C Charging Cable,1,11.95,09/07/19 00:29,"293 13th St, Atlanta, GA 30301" +260469,AAA Batteries (4-pack),2,2.99,09/02/19 17:31,"415 14th St, San Francisco, CA 94016" +260470,Macbook Pro Laptop,1,1700,09/18/19 20:30,"996 West St, San Francisco, CA 94016" +260471,AA Batteries (4-pack),2,3.84,09/11/19 11:09,"710 Meadow St, Austin, TX 73301" +260472,Apple Airpods Headphones,1,150,09/24/19 22:24,"784 Johnson St, Atlanta, GA 30301" +260473,Macbook Pro Laptop,1,1700,09/10/19 20:29,"122 5th St, San Francisco, CA 94016" +260474,Apple Airpods Headphones,1,150,09/26/19 12:27,"717 Johnson St, Dallas, TX 75001" +260475,34in Ultrawide Monitor,1,379.99,09/01/19 13:17,"234 Center St, Boston, MA 02215" +260476,34in Ultrawide Monitor,1,379.99,09/30/19 22:11,"655 5th St, New York City, NY 10001" +260477,Wired Headphones,2,11.99,09/05/19 17:19,"784 Chestnut St, San Francisco, CA 94016" +260478,Bose SoundSport Headphones,1,99.99,09/15/19 14:16,"474 Madison St, Los Angeles, CA 90001" +260479,Lightning Charging Cable,1,14.95,09/15/19 13:06,"493 West St, Los Angeles, CA 90001" +260480,Lightning Charging Cable,1,14.95,09/03/19 14:44,"432 13th St, Portland, ME 04101" +260481,34in Ultrawide Monitor,1,379.99,09/25/19 17:35,"10 Hickory St, Boston, MA 02215" +260482,34in Ultrawide Monitor,1,379.99,09/27/19 11:40,"216 Meadow St, Dallas, TX 75001" +260483,Wired Headphones,1,11.99,09/05/19 18:53,"599 Hickory St, Los Angeles, CA 90001" +260484,Wired Headphones,1,11.99,09/29/19 16:47,"276 Meadow St, Portland, OR 97035" +260485,Vareebadd Phone,1,400,09/05/19 23:28,"843 South St, Boston, MA 02215" +260486,Bose SoundSport Headphones,1,99.99,09/27/19 14:00,"38 Dogwood St, San Francisco, CA 94016" +260487,Bose SoundSport Headphones,1,99.99,09/06/19 11:28,"794 7th St, Boston, MA 02215" +260488,AA Batteries (4-pack),1,3.84,09/22/19 15:47,"445 Main St, Portland, OR 97035" +,,,,, +260489,Wired Headphones,1,11.99,09/19/19 22:35,"459 9th St, Seattle, WA 98101" +260490,Bose SoundSport Headphones,1,99.99,09/21/19 11:44,"638 Willow St, Los Angeles, CA 90001" +260491,20in Monitor,1,109.99,09/05/19 11:37,"816 Park St, San Francisco, CA 94016" +260492,Flatscreen TV,1,300,09/08/19 04:49,"867 South St, Dallas, TX 75001" +260493,27in 4K Gaming Monitor,1,389.99,09/20/19 01:44,"988 Willow St, Los Angeles, CA 90001" +260494,AA Batteries (4-pack),1,3.84,09/17/19 16:37,"92 9th St, Los Angeles, CA 90001" +260495,Bose SoundSport Headphones,1,99.99,09/02/19 20:15,"556 Highland St, Boston, MA 02215" +260496,Apple Airpods Headphones,1,150,09/15/19 21:13,"368 10th St, Boston, MA 02215" +260497,USB-C Charging Cable,1,11.95,09/30/19 13:11,"131 Church St, Portland, ME 04101" +260498,Google Phone,1,600,09/20/19 10:27,"15 River St, San Francisco, CA 94016" +260498,USB-C Charging Cable,1,11.95,09/20/19 10:27,"15 River St, San Francisco, CA 94016" +260498,Apple Airpods Headphones,1,150,09/20/19 10:27,"15 River St, San Francisco, CA 94016" +260499,Lightning Charging Cable,1,14.95,09/17/19 11:08,"834 Adams St, San Francisco, CA 94016" +260500,AA Batteries (4-pack),1,3.84,09/28/19 00:31,"366 Hickory St, Atlanta, GA 30301" +260501,27in 4K Gaming Monitor,1,389.99,09/20/19 06:20,"76 Madison St, San Francisco, CA 94016" +260502,ThinkPad Laptop,1,999.99,09/10/19 21:52,"454 13th St, Atlanta, GA 30301" +260503,Flatscreen TV,1,300,09/03/19 20:45,"917 West St, Portland, ME 04101" +260504,Google Phone,1,600,09/28/19 13:53,"728 Jackson St, Los Angeles, CA 90001" +260505,AA Batteries (4-pack),1,3.84,09/26/19 15:09,"285 2nd St, Dallas, TX 75001" +260506,27in FHD Monitor,1,149.99,09/16/19 17:39,"587 9th St, Seattle, WA 98101" +260507,ThinkPad Laptop,1,999.99,09/02/19 20:55,"948 Hill St, San Francisco, CA 94016" +260508,AA Batteries (4-pack),1,3.84,09/01/19 21:29,"67 Forest St, Los Angeles, CA 90001" +260509,AAA Batteries (4-pack),1,2.99,09/30/19 02:02,"518 North St, New York City, NY 10001" +260510,Lightning Charging Cable,1,14.95,09/23/19 10:53,"440 South St, Seattle, WA 98101" +260511,Vareebadd Phone,1,400,09/25/19 14:48,"747 Hickory St, Boston, MA 02215" +260511,USB-C Charging Cable,1,11.95,09/25/19 14:48,"747 Hickory St, Boston, MA 02215" +260512,Apple Airpods Headphones,1,150,09/26/19 11:12,"938 River St, Dallas, TX 75001" +260513,Wired Headphones,1,11.99,09/27/19 11:36,"546 Pine St, Portland, OR 97035" +260514,AAA Batteries (4-pack),1,2.99,09/22/19 09:00,"826 Center St, Dallas, TX 75001" +260515,USB-C Charging Cable,1,11.95,09/26/19 17:23,"962 Dogwood St, Los Angeles, CA 90001" +260516,Macbook Pro Laptop,1,1700,09/23/19 19:13,"644 5th St, New York City, NY 10001" +260517,Bose SoundSport Headphones,1,99.99,09/09/19 13:26,"427 6th St, Los Angeles, CA 90001" +260518,Lightning Charging Cable,1,14.95,09/24/19 18:08,"301 14th St, Dallas, TX 75001" +260519,AAA Batteries (4-pack),1,2.99,09/23/19 22:34,"600 5th St, New York City, NY 10001" +260520,Bose SoundSport Headphones,1,99.99,09/26/19 16:36,"422 11th St, Los Angeles, CA 90001" +260521,Wired Headphones,1,11.99,09/22/19 19:36,"458 5th St, San Francisco, CA 94016" +260522,AAA Batteries (4-pack),3,2.99,09/23/19 14:16,"762 7th St, Boston, MA 02215" +260523,AA Batteries (4-pack),2,3.84,09/24/19 13:52,"878 Main St, Dallas, TX 75001" +260524,Apple Airpods Headphones,1,150,09/22/19 10:15,"587 14th St, New York City, NY 10001" +260525,Lightning Charging Cable,1,14.95,09/01/19 11:03,"175 Ridge St, New York City, NY 10001" +260526,Macbook Pro Laptop,1,1700,09/03/19 08:24,"833 Madison St, Boston, MA 02215" +260527,USB-C Charging Cable,1,11.95,09/20/19 16:42,"879 Willow St, Atlanta, GA 30301" +260528,AA Batteries (4-pack),1,3.84,09/27/19 11:53,"195 Church St, San Francisco, CA 94016" +260529,AA Batteries (4-pack),1,3.84,09/29/19 01:08,"203 Park St, Atlanta, GA 30301" +260530,Wired Headphones,1,11.99,09/01/19 22:07,"431 8th St, Boston, MA 02215" +260531,AAA Batteries (4-pack),2,2.99,09/25/19 23:15,"657 Lincoln St, Dallas, TX 75001" +260532,Lightning Charging Cable,1,14.95,09/25/19 10:48,"84 River St, Los Angeles, CA 90001" +260533,Lightning Charging Cable,2,14.95,09/22/19 17:48,"839 West St, New York City, NY 10001" +260534,Bose SoundSport Headphones,1,99.99,09/12/19 11:42,"506 Wilson St, Atlanta, GA 30301" +260535,AAA Batteries (4-pack),1,2.99,09/30/19 10:57,"133 12th St, Portland, OR 97035" +260536,AA Batteries (4-pack),1,3.84,09/30/19 13:32,"887 Ridge St, San Francisco, CA 94016" +260537,Apple Airpods Headphones,1,150,09/26/19 14:10,"585 Main St, San Francisco, CA 94016" +260538,Flatscreen TV,1,300,09/23/19 22:59,"179 1st St, San Francisco, CA 94016" +260539,27in FHD Monitor,1,149.99,09/30/19 16:12,"548 5th St, New York City, NY 10001" +260539,Bose SoundSport Headphones,1,99.99,09/30/19 16:12,"548 5th St, New York City, NY 10001" +260540,34in Ultrawide Monitor,1,379.99,09/18/19 12:23,"28 Dogwood St, San Francisco, CA 94016" +260541,Wired Headphones,3,11.99,09/06/19 23:21,"51 Church St, Seattle, WA 98101" +260542,Flatscreen TV,1,300,09/29/19 00:14,"783 Hickory St, Dallas, TX 75001" +260543,27in 4K Gaming Monitor,1,389.99,09/18/19 01:09,"195 Lakeview St, San Francisco, CA 94016" +260544,Apple Airpods Headphones,1,150,09/28/19 16:00,"426 Cedar St, Atlanta, GA 30301" +260545,Macbook Pro Laptop,1,1700,09/24/19 23:57,"491 Walnut St, Seattle, WA 98101" +260546,Macbook Pro Laptop,1,1700,09/06/19 16:49,"316 Church St, Seattle, WA 98101" +260547,27in 4K Gaming Monitor,1,389.99,09/14/19 18:55,"807 Jackson St, New York City, NY 10001" +260548,34in Ultrawide Monitor,1,379.99,09/11/19 13:13,"378 Center St, San Francisco, CA 94016" +260549,AA Batteries (4-pack),1,3.84,09/23/19 07:17,"59 Main St, Atlanta, GA 30301" +260550,AA Batteries (4-pack),1,3.84,09/07/19 07:23,"742 6th St, Atlanta, GA 30301" +260551,Wired Headphones,1,11.99,09/26/19 18:05,"577 5th St, Dallas, TX 75001" +260552,AA Batteries (4-pack),2,3.84,09/18/19 18:45,"553 Madison St, Austin, TX 73301" +260553,34in Ultrawide Monitor,1,379.99,09/13/19 12:27,"738 Willow St, San Francisco, CA 94016" +260554,AA Batteries (4-pack),1,3.84,09/19/19 20:47,"850 Johnson St, San Francisco, CA 94016" +260555,AA Batteries (4-pack),1,3.84,09/19/19 19:08,"28 Park St, Portland, ME 04101" +260556,AA Batteries (4-pack),1,3.84,09/02/19 18:25,"161 Dogwood St, Seattle, WA 98101" +260557,Wired Headphones,1,11.99,09/22/19 18:42,"725 Washington St, Boston, MA 02215" +260558,AAA Batteries (4-pack),1,2.99,09/09/19 22:50,"568 9th St, Portland, ME 04101" +260559,LG Dryer,1,600.0,09/28/19 19:56,"165 Ridge St, Los Angeles, CA 90001" +260560,iPhone,1,700,09/01/19 14:12,"69 Madison St, San Francisco, CA 94016" +260561,AA Batteries (4-pack),1,3.84,09/25/19 23:55,"767 Forest St, San Francisco, CA 94016" +260562,Wired Headphones,1,11.99,09/08/19 21:28,"719 5th St, San Francisco, CA 94016" +260563,Google Phone,1,600,09/15/19 10:57,"209 Elm St, New York City, NY 10001" +260564,Macbook Pro Laptop,1,1700,09/11/19 10:35,"148 Jefferson St, Los Angeles, CA 90001" +260565,iPhone,1,700,09/15/19 23:06,"974 Johnson St, New York City, NY 10001" +260566,AA Batteries (4-pack),1,3.84,09/30/19 14:55,"308 Sunset St, New York City, NY 10001" +260567,AAA Batteries (4-pack),1,2.99,09/05/19 13:32,"836 South St, Los Angeles, CA 90001" +260568,Macbook Pro Laptop,1,1700,09/25/19 14:24,"4 9th St, Boston, MA 02215" +260569,Bose SoundSport Headphones,1,99.99,09/24/19 12:05,"242 Chestnut St, Dallas, TX 75001" +260570,AAA Batteries (4-pack),1,2.99,09/10/19 01:11,"476 Madison St, New York City, NY 10001" +260571,27in 4K Gaming Monitor,1,389.99,09/07/19 17:56,"988 Cedar St, San Francisco, CA 94016" +260572,USB-C Charging Cable,1,11.95,09/05/19 23:14,"248 Lakeview St, Atlanta, GA 30301" +260573,Macbook Pro Laptop,1,1700,09/17/19 11:53,"797 Lincoln St, New York City, NY 10001" +260574,Bose SoundSport Headphones,1,99.99,09/14/19 15:02,"211 14th St, New York City, NY 10001" +260575,Bose SoundSport Headphones,1,99.99,09/05/19 19:00,"957 Lincoln St, Boston, MA 02215" +260576,USB-C Charging Cable,1,11.95,09/11/19 20:27,"393 Cherry St, Dallas, TX 75001" +260577,Macbook Pro Laptop,1,1700,09/09/19 08:09,"149 Lakeview St, Los Angeles, CA 90001" +260578,Lightning Charging Cable,1,14.95,09/01/19 20:11,"308 Wilson St, Portland, OR 97035" +260579,34in Ultrawide Monitor,1,379.99,09/17/19 11:39,"89 Ridge St, San Francisco, CA 94016" +260580,Lightning Charging Cable,1,14.95,09/26/19 11:18,"821 Pine St, San Francisco, CA 94016" +260581,AA Batteries (4-pack),1,3.84,09/28/19 22:35,"120 9th St, Los Angeles, CA 90001" +260582,AAA Batteries (4-pack),1,2.99,09/06/19 14:36,"917 Ridge St, Atlanta, GA 30301" +260583,Wired Headphones,1,11.99,09/06/19 23:46,"380 Jefferson St, San Francisco, CA 94016" +260584,Macbook Pro Laptop,1,1700,09/10/19 21:33,"639 Elm St, Austin, TX 73301" +260585,Google Phone,1,600,09/21/19 12:50,"63 Hickory St, Seattle, WA 98101" +260586,Bose SoundSport Headphones,1,99.99,09/14/19 21:57,"330 Chestnut St, Dallas, TX 75001" +260587,USB-C Charging Cable,1,11.95,09/02/19 08:57,"325 Church St, San Francisco, CA 94016" +260588,Bose SoundSport Headphones,1,99.99,09/02/19 00:07,"425 Meadow St, San Francisco, CA 94016" +260589,AA Batteries (4-pack),1,3.84,09/05/19 20:06,"499 13th St, Atlanta, GA 30301" +260590,Lightning Charging Cable,2,14.95,09/29/19 08:38,"918 12th St, New York City, NY 10001" +260591,USB-C Charging Cable,1,11.95,09/25/19 21:43,"668 8th St, Boston, MA 02215" +260592,AAA Batteries (4-pack),1,2.99,09/16/19 08:10,"365 Washington St, Seattle, WA 98101" +260593,Google Phone,1,600,09/30/19 18:29,"226 1st St, Portland, OR 97035" +260594,34in Ultrawide Monitor,1,379.99,09/11/19 10:02,"783 Wilson St, Dallas, TX 75001" +260595,AA Batteries (4-pack),2,3.84,09/01/19 19:13,"380 Jackson St, New York City, NY 10001" +260596,AAA Batteries (4-pack),2,2.99,09/18/19 22:03,"351 Madison St, Portland, OR 97035" +260597,27in 4K Gaming Monitor,1,389.99,09/22/19 23:15,"775 Lincoln St, Dallas, TX 75001" +260598,AAA Batteries (4-pack),2,2.99,09/10/19 12:45,"641 Lincoln St, Dallas, TX 75001" +260599,Apple Airpods Headphones,1,150,09/05/19 09:55,"178 11th St, Los Angeles, CA 90001" +260600,AAA Batteries (4-pack),1,2.99,09/02/19 09:28,"725 Jackson St, Boston, MA 02215" +260601,Apple Airpods Headphones,1,150,09/04/19 16:15,"934 Lakeview St, Los Angeles, CA 90001" +260602,AA Batteries (4-pack),1,3.84,09/19/19 17:16,"969 Meadow St, San Francisco, CA 94016" +260603,Lightning Charging Cable,1,14.95,09/13/19 12:18,"426 Lake St, San Francisco, CA 94016" +260604,AA Batteries (4-pack),1,3.84,09/08/19 12:37,"785 South St, Austin, TX 73301" +260605,Flatscreen TV,1,300,09/18/19 15:21,"60 Lincoln St, San Francisco, CA 94016" +260606,Google Phone,1,600,09/21/19 14:39,"588 Hickory St, Dallas, TX 75001" +260606,Wired Headphones,2,11.99,09/21/19 14:39,"588 Hickory St, Dallas, TX 75001" +260607,20in Monitor,1,109.99,09/22/19 19:57,"670 7th St, Los Angeles, CA 90001" +260608,27in 4K Gaming Monitor,1,389.99,09/11/19 10:38,"356 Park St, New York City, NY 10001" +260609,Google Phone,1,600,09/14/19 10:47,"315 4th St, Dallas, TX 75001" +260610,Apple Airpods Headphones,1,150,09/15/19 21:39,"863 Church St, Boston, MA 02215" +260611,Wired Headphones,1,11.99,09/22/19 07:39,"82 Lakeview St, San Francisco, CA 94016" +260612,Wired Headphones,1,11.99,09/06/19 03:56,"292 Adams St, Dallas, TX 75001" +260613,AA Batteries (4-pack),1,3.84,09/29/19 14:35,"516 Adams St, Boston, MA 02215" +260614,Wired Headphones,1,11.99,09/12/19 11:05,"527 Jefferson St, San Francisco, CA 94016" +260615,Bose SoundSport Headphones,1,99.99,09/26/19 07:01,"382 Adams St, San Francisco, CA 94016" +260616,USB-C Charging Cable,1,11.95,09/14/19 14:14,"886 Johnson St, New York City, NY 10001" +260617,iPhone,1,700,09/05/19 13:09,"631 2nd St, New York City, NY 10001" +260618,Bose SoundSport Headphones,1,99.99,09/30/19 11:26,"756 Walnut St, San Francisco, CA 94016" +260619,Bose SoundSport Headphones,1,99.99,09/04/19 08:55,"751 Center St, Seattle, WA 98101" +260620,AAA Batteries (4-pack),1,2.99,09/03/19 08:45,"292 2nd St, San Francisco, CA 94016" +260621,AAA Batteries (4-pack),2,2.99,09/05/19 14:16,"363 Meadow St, New York City, NY 10001" +260622,34in Ultrawide Monitor,1,379.99,09/03/19 09:41,"973 2nd St, Los Angeles, CA 90001" +260623,Google Phone,1,600,09/20/19 03:23,"758 Meadow St, New York City, NY 10001" +260623,Wired Headphones,1,11.99,09/20/19 03:23,"758 Meadow St, New York City, NY 10001" +260624,Apple Airpods Headphones,1,150,09/07/19 09:32,"261 Wilson St, Dallas, TX 75001" +260625,AAA Batteries (4-pack),1,2.99,09/03/19 14:30,"769 Adams St, Atlanta, GA 30301" +260626,AA Batteries (4-pack),2,3.84,09/28/19 05:02,"935 13th St, Portland, OR 97035" +260627,Apple Airpods Headphones,1,150,09/07/19 20:30,"711 Church St, Dallas, TX 75001" +260628,Lightning Charging Cable,1,14.95,09/14/19 16:44,"201 Lakeview St, Atlanta, GA 30301" +260629,Bose SoundSport Headphones,1,99.99,09/04/19 21:08,"346 River St, Austin, TX 73301" +260630,AAA Batteries (4-pack),1,2.99,09/03/19 21:54,"239 Cedar St, Boston, MA 02215" +260631,USB-C Charging Cable,1,11.95,09/11/19 19:13,"109 11th St, Los Angeles, CA 90001" +260632,Bose SoundSport Headphones,1,99.99,09/01/19 14:32,"801 Elm St, Boston, MA 02215" +260633,AAA Batteries (4-pack),1,2.99,09/03/19 11:57,"502 West St, Boston, MA 02215" +260634,Apple Airpods Headphones,1,150,09/21/19 13:15,"482 Ridge St, Dallas, TX 75001" +260635,AAA Batteries (4-pack),1,2.99,09/18/19 19:52,"862 Adams St, Boston, MA 02215" +260636,ThinkPad Laptop,1,999.99,09/27/19 10:58,"804 South St, New York City, NY 10001" +260637,Apple Airpods Headphones,1,150,09/22/19 14:06,"382 North St, San Francisco, CA 94016" +260638,AA Batteries (4-pack),3,3.84,09/24/19 00:49,"587 Washington St, Atlanta, GA 30301" +260639,AAA Batteries (4-pack),1,2.99,09/09/19 13:10,"848 Pine St, New York City, NY 10001" +260640,ThinkPad Laptop,1,999.99,09/09/19 08:38,"804 10th St, San Francisco, CA 94016" +260641,20in Monitor,1,109.99,09/28/19 20:14,"102 Pine St, San Francisco, CA 94016" +260642,27in FHD Monitor,1,149.99,09/22/19 14:20,"633 Hickory St, Portland, ME 04101" +260643,AAA Batteries (4-pack),2,2.99,09/06/19 16:52,"350 Forest St, San Francisco, CA 94016" +260644,34in Ultrawide Monitor,1,379.99,09/19/19 07:48,"934 4th St, Seattle, WA 98101" +260645,AAA Batteries (4-pack),3,2.99,09/14/19 13:39,"115 Forest St, Boston, MA 02215" +260646,AA Batteries (4-pack),1,3.84,09/11/19 11:33,"356 Spruce St, New York City, NY 10001" +260647,Bose SoundSport Headphones,1,99.99,09/03/19 14:45,"382 Adams St, Seattle, WA 98101" +260648,AAA Batteries (4-pack),1,2.99,09/17/19 09:53,"155 Lincoln St, Seattle, WA 98101" +260649,Lightning Charging Cable,1,14.95,09/30/19 13:43,"702 Cedar St, Atlanta, GA 30301" +260650,AA Batteries (4-pack),1,3.84,09/19/19 23:13,"463 Cherry St, Dallas, TX 75001" +260650,34in Ultrawide Monitor,1,379.99,09/19/19 23:13,"463 Cherry St, Dallas, TX 75001" +260651,AAA Batteries (4-pack),1,2.99,09/20/19 11:55,"430 Cherry St, Atlanta, GA 30301" +260651,Lightning Charging Cable,1,14.95,09/20/19 11:55,"430 Cherry St, Atlanta, GA 30301" +260652,AA Batteries (4-pack),2,3.84,09/29/19 19:39,"938 Church St, Los Angeles, CA 90001" +260653,Wired Headphones,2,11.99,09/14/19 16:09,"653 Main St, Los Angeles, CA 90001" +260654,USB-C Charging Cable,1,11.95,09/23/19 19:07,"8 Washington St, Dallas, TX 75001" +260655,34in Ultrawide Monitor,1,379.99,09/02/19 04:33,"799 Main St, Portland, OR 97035" +260656,Lightning Charging Cable,1,14.95,09/18/19 08:09,"859 Dogwood St, Austin, TX 73301" +260657,Wired Headphones,1,11.99,09/25/19 17:47,"439 2nd St, San Francisco, CA 94016" +260658,USB-C Charging Cable,1,11.95,09/26/19 09:34,"134 Jefferson St, Boston, MA 02215" +260659,Lightning Charging Cable,1,14.95,09/01/19 14:34,"179 Church St, New York City, NY 10001" +260660,iPhone,1,700,09/08/19 18:11,"129 Church St, San Francisco, CA 94016" +260660,Wired Headphones,2,11.99,09/08/19 18:11,"129 Church St, San Francisco, CA 94016" +260661,Lightning Charging Cable,1,14.95,09/02/19 17:39,"640 Forest St, Seattle, WA 98101" +260662,Wired Headphones,1,11.99,09/09/19 09:47,"659 North St, San Francisco, CA 94016" +260663,34in Ultrawide Monitor,1,379.99,09/14/19 11:09,"183 Main St, Los Angeles, CA 90001" +260664,Wired Headphones,1,11.99,09/02/19 21:25,"501 7th St, Los Angeles, CA 90001" +260665,Macbook Pro Laptop,1,1700,09/13/19 23:44,"568 Jefferson St, Dallas, TX 75001" +260666,Wired Headphones,1,11.99,09/27/19 08:57,"35 Lakeview St, San Francisco, CA 94016" +260667,USB-C Charging Cable,1,11.95,09/02/19 21:12,"433 5th St, San Francisco, CA 94016" +260668,34in Ultrawide Monitor,1,379.99,09/05/19 16:48,"791 10th St, Portland, ME 04101" +260669,34in Ultrawide Monitor,1,379.99,09/06/19 22:29,"749 4th St, San Francisco, CA 94016" +260670,USB-C Charging Cable,1,11.95,09/07/19 11:08,"642 6th St, Seattle, WA 98101" +260671,Lightning Charging Cable,1,14.95,09/24/19 19:33,"866 6th St, New York City, NY 10001" +260672,Lightning Charging Cable,1,14.95,09/23/19 20:31,"266 7th St, San Francisco, CA 94016" +260673,AA Batteries (4-pack),1,3.84,09/18/19 18:31,"549 Adams St, Los Angeles, CA 90001" +260674,Google Phone,1,600,09/08/19 10:29,"748 4th St, Portland, OR 97035" +260675,Google Phone,1,600,09/16/19 12:24,"310 West St, Dallas, TX 75001" +260675,Wired Headphones,1,11.99,09/16/19 12:24,"310 West St, Dallas, TX 75001" +260676,AA Batteries (4-pack),1,3.84,09/10/19 16:52,"36 Highland St, San Francisco, CA 94016" +260677,AAA Batteries (4-pack),1,2.99,09/21/19 15:25,"859 10th St, Seattle, WA 98101" +260678,USB-C Charging Cable,1,11.95,09/24/19 16:31,"186 Jackson St, Los Angeles, CA 90001" +260679,20in Monitor,1,109.99,09/07/19 13:59,"210 Meadow St, Los Angeles, CA 90001" +260680,Bose SoundSport Headphones,1,99.99,09/06/19 19:34,"972 Church St, Austin, TX 73301" +260681,AAA Batteries (4-pack),2,2.99,09/24/19 20:27,"380 Willow St, San Francisco, CA 94016" +260682,Wired Headphones,1,11.99,09/24/19 20:24,"265 Johnson St, San Francisco, CA 94016" +260683,AA Batteries (4-pack),2,3.84,09/21/19 16:31,"801 Washington St, Los Angeles, CA 90001" +260684,34in Ultrawide Monitor,1,379.99,09/24/19 17:54,"597 Pine St, Portland, ME 04101" +260685,AAA Batteries (4-pack),2,2.99,09/23/19 16:31,"881 North St, Los Angeles, CA 90001" +260686,AA Batteries (4-pack),1,3.84,09/07/19 20:53,"514 11th St, Atlanta, GA 30301" +260687,Flatscreen TV,1,300,09/01/19 22:43,"817 North St, Los Angeles, CA 90001" +260688,AAA Batteries (4-pack),1,2.99,09/01/19 11:54,"750 5th St, Dallas, TX 75001" +260689,Flatscreen TV,1,300,09/17/19 02:45,"391 Dogwood St, Portland, OR 97035" +260690,20in Monitor,1,109.99,09/04/19 01:07,"127 North St, Seattle, WA 98101" +260691,AA Batteries (4-pack),1,3.84,09/23/19 10:21,"761 Sunset St, Atlanta, GA 30301" +260692,USB-C Charging Cable,1,11.95,09/23/19 06:46,"707 Pine St, San Francisco, CA 94016" +260693,AAA Batteries (4-pack),1,2.99,09/01/19 19:47,"506 South St, Los Angeles, CA 90001" +260694,Lightning Charging Cable,1,14.95,09/02/19 18:30,"383 Center St, New York City, NY 10001" +260695,Wired Headphones,3,11.99,09/22/19 11:35,"443 14th St, Atlanta, GA 30301" +260696,Bose SoundSport Headphones,1,99.99,09/22/19 18:30,"173 Main St, Dallas, TX 75001" +260697,AA Batteries (4-pack),1,3.84,09/25/19 19:37,"44 Church St, Boston, MA 02215" +260698,AAA Batteries (4-pack),2,2.99,09/09/19 18:59,"28 Pine St, San Francisco, CA 94016" +260699,34in Ultrawide Monitor,1,379.99,09/26/19 19:09,"784 Jackson St, Portland, ME 04101" +260700,USB-C Charging Cable,1,11.95,09/22/19 21:47,"468 Willow St, Dallas, TX 75001" +260701,Wired Headphones,1,11.99,09/28/19 04:30,"722 Sunset St, Portland, ME 04101" +260702,Lightning Charging Cable,1,14.95,09/08/19 18:39,"626 Cherry St, Atlanta, GA 30301" +260703,Apple Airpods Headphones,1,150,09/12/19 17:16,"878 Walnut St, Boston, MA 02215" +260704,LG Washing Machine,1,600.0,09/06/19 13:00,"130 Cedar St, Portland, OR 97035" +260705,34in Ultrawide Monitor,1,379.99,09/13/19 11:31,"302 Jefferson St, Dallas, TX 75001" +260706,ThinkPad Laptop,1,999.99,09/21/19 20:31,"276 Hickory St, San Francisco, CA 94016" +260707,27in 4K Gaming Monitor,1,389.99,09/20/19 16:11,"218 Lake St, Boston, MA 02215" +260708,USB-C Charging Cable,1,11.95,09/05/19 16:19,"786 Lake St, Seattle, WA 98101" +260709,20in Monitor,1,109.99,09/29/19 18:26,"731 2nd St, Portland, OR 97035" +260710,AA Batteries (4-pack),1,3.84,09/24/19 10:47,"747 Willow St, Portland, OR 97035" +260711,AAA Batteries (4-pack),1,2.99,09/18/19 10:10,"375 9th St, Seattle, WA 98101" +260712,AA Batteries (4-pack),1,3.84,09/21/19 15:05,"500 Ridge St, San Francisco, CA 94016" +260713,Wired Headphones,1,11.99,09/01/19 12:12,"562 6th St, Dallas, TX 75001" +260714,Apple Airpods Headphones,1,150,09/19/19 15:17,"330 11th St, Los Angeles, CA 90001" +260715,Lightning Charging Cable,1,14.95,09/13/19 02:02,"637 Spruce St, San Francisco, CA 94016" +260716,Wired Headphones,1,11.99,09/23/19 22:37,"501 Hickory St, New York City, NY 10001" +260717,AA Batteries (4-pack),1,3.84,09/02/19 22:10,"645 Highland St, Austin, TX 73301" +260718,34in Ultrawide Monitor,1,379.99,09/27/19 13:48,"152 Lakeview St, New York City, NY 10001" +260719,Bose SoundSport Headphones,1,99.99,09/09/19 14:36,"111 Maple St, New York City, NY 10001" +260720,Bose SoundSport Headphones,1,99.99,09/05/19 08:15,"76 Jefferson St, New York City, NY 10001" +260721,USB-C Charging Cable,1,11.95,09/09/19 11:36,"930 4th St, Los Angeles, CA 90001" +260722,USB-C Charging Cable,1,11.95,09/21/19 08:23,"253 Hickory St, San Francisco, CA 94016" +260723,AA Batteries (4-pack),1,3.84,09/14/19 12:15,"822 Maple St, Seattle, WA 98101" +260724,Google Phone,1,600,09/27/19 14:52,"35 West St, New York City, NY 10001" +260725,USB-C Charging Cable,2,11.95,09/15/19 20:54,"680 5th St, Los Angeles, CA 90001" +260726,USB-C Charging Cable,1,11.95,09/27/19 17:21,"821 10th St, Atlanta, GA 30301" +260727,Lightning Charging Cable,1,14.95,09/11/19 10:24,"614 8th St, New York City, NY 10001" +260728,AA Batteries (4-pack),1,3.84,09/07/19 22:01,"658 Walnut St, Atlanta, GA 30301" +260729,Wired Headphones,1,11.99,09/17/19 13:02,"633 Willow St, Los Angeles, CA 90001" +260730,iPhone,1,700,09/14/19 15:23,"318 Madison St, Seattle, WA 98101" +260731,Lightning Charging Cable,1,14.95,09/20/19 12:44,"184 Main St, San Francisco, CA 94016" +260732,USB-C Charging Cable,1,11.95,09/23/19 17:58,"632 9th St, San Francisco, CA 94016" +260733,iPhone,1,700,09/15/19 14:06,"834 Hickory St, Austin, TX 73301" +260734,27in 4K Gaming Monitor,2,389.99,09/06/19 17:21,"726 7th St, San Francisco, CA 94016" +260735,USB-C Charging Cable,1,11.95,09/22/19 20:06,"929 South St, New York City, NY 10001" +260736,Apple Airpods Headphones,1,150,09/30/19 09:22,"136 Wilson St, Austin, TX 73301" +260737,Apple Airpods Headphones,1,150,09/17/19 08:59,"334 1st St, Boston, MA 02215" +260738,Vareebadd Phone,1,400,09/10/19 16:42,"893 4th St, Seattle, WA 98101" +260739,Lightning Charging Cable,1,14.95,09/11/19 13:04,"83 10th St, Portland, ME 04101" +260740,Lightning Charging Cable,1,14.95,09/08/19 21:15,"403 Highland St, Austin, TX 73301" +260741,iPhone,1,700,09/14/19 18:25,"122 2nd St, Los Angeles, CA 90001" +260741,Lightning Charging Cable,1,14.95,09/14/19 18:25,"122 2nd St, Los Angeles, CA 90001" +260742,Apple Airpods Headphones,1,150,09/20/19 09:32,"751 4th St, Austin, TX 73301" +260743,Bose SoundSport Headphones,1,99.99,09/23/19 11:58,"330 Hill St, New York City, NY 10001" +260744,USB-C Charging Cable,1,11.95,09/04/19 19:35,"926 Maple St, Portland, OR 97035" +260745,AA Batteries (4-pack),1,3.84,09/01/19 09:47,"647 1st St, New York City, NY 10001" +260746,Bose SoundSport Headphones,1,99.99,09/04/19 19:48,"368 Johnson St, Portland, OR 97035" +260747,USB-C Charging Cable,1,11.95,09/03/19 16:15,"871 Jefferson St, Portland, OR 97035" +260748,AAA Batteries (4-pack),2,2.99,09/07/19 14:54,"594 Washington St, New York City, NY 10001" +260749,iPhone,1,700,09/07/19 06:44,"582 Lincoln St, San Francisco, CA 94016" +260750,AAA Batteries (4-pack),1,2.99,09/18/19 00:17,"318 14th St, New York City, NY 10001" +260751,Wired Headphones,1,11.99,09/30/19 21:02,"714 Washington St, Los Angeles, CA 90001" +260752,34in Ultrawide Monitor,1,379.99,09/08/19 08:34,"791 4th St, San Francisco, CA 94016" +260753,Apple Airpods Headphones,1,150,09/21/19 23:36,"757 Lakeview St, San Francisco, CA 94016" +260754,AA Batteries (4-pack),1,3.84,09/21/19 19:03,"477 4th St, New York City, NY 10001" +260755,27in FHD Monitor,1,149.99,09/09/19 13:55,"270 Lincoln St, Atlanta, GA 30301" +260756,20in Monitor,1,109.99,09/30/19 09:52,"72 Maple St, New York City, NY 10001" +260757,Bose SoundSport Headphones,1,99.99,09/28/19 19:38,"757 13th St, Austin, TX 73301" +260758,Vareebadd Phone,1,400,09/07/19 21:28,"9 Dogwood St, San Francisco, CA 94016" +260758,Wired Headphones,1,11.99,09/07/19 21:28,"9 Dogwood St, San Francisco, CA 94016" +260759,Lightning Charging Cable,1,14.95,09/29/19 11:52,"975 Lake St, Los Angeles, CA 90001" +260760,Wired Headphones,1,11.99,09/19/19 16:00,"611 1st St, San Francisco, CA 94016" +260761,AA Batteries (4-pack),1,3.84,09/09/19 14:14,"152 6th St, Los Angeles, CA 90001" +260762,Wired Headphones,1,11.99,09/07/19 08:30,"937 8th St, Portland, OR 97035" +260763,Bose SoundSport Headphones,1,99.99,09/17/19 20:07,"618 Hickory St, San Francisco, CA 94016" +260764,AA Batteries (4-pack),1,3.84,09/25/19 15:15,"971 Willow St, Los Angeles, CA 90001" +260765,Lightning Charging Cable,1,14.95,09/05/19 09:14,"770 8th St, Los Angeles, CA 90001" +260766,USB-C Charging Cable,1,11.95,09/05/19 15:49,"66 12th St, Portland, ME 04101" +260767,AAA Batteries (4-pack),2,2.99,09/08/19 13:49,"535 Pine St, Los Angeles, CA 90001" +260768,AA Batteries (4-pack),1,3.84,09/19/19 12:01,"80 Johnson St, Atlanta, GA 30301" +260769,AA Batteries (4-pack),1,3.84,09/23/19 14:46,"95 Elm St, San Francisco, CA 94016" +260770,AAA Batteries (4-pack),1,2.99,09/08/19 09:57,"987 Spruce St, Los Angeles, CA 90001" +260771,Lightning Charging Cable,2,14.95,09/04/19 11:39,"382 Spruce St, Boston, MA 02215" +260772,Bose SoundSport Headphones,1,99.99,09/27/19 19:06,"624 Pine St, Boston, MA 02215" +260773,AA Batteries (4-pack),2,3.84,09/17/19 15:46,"263 Cherry St, Austin, TX 73301" +260774,AA Batteries (4-pack),2,3.84,09/01/19 12:24,"945 13th St, Los Angeles, CA 90001" +260775,Lightning Charging Cable,2,14.95,09/28/19 23:54,"56 5th St, Boston, MA 02215" +260776,AA Batteries (4-pack),1,3.84,09/12/19 18:05,"896 Pine St, San Francisco, CA 94016" +260777,AAA Batteries (4-pack),1,2.99,09/04/19 20:15,"17 Madison St, Boston, MA 02215" +260778,AA Batteries (4-pack),1,3.84,09/23/19 14:20,"29 9th St, Los Angeles, CA 90001" +260779,Macbook Pro Laptop,1,1700,09/08/19 16:41,"99 North St, New York City, NY 10001" +260780,iPhone,1,700,09/04/19 10:19,"635 Madison St, Portland, OR 97035" +260780,Lightning Charging Cable,1,14.95,09/04/19 10:19,"635 Madison St, Portland, OR 97035" +260781,Lightning Charging Cable,1,14.95,09/23/19 18:28,"314 Sunset St, San Francisco, CA 94016" +260782,Wired Headphones,1,11.99,09/11/19 12:15,"174 Lincoln St, Seattle, WA 98101" +260783,Google Phone,1,600,09/18/19 21:41,"989 Sunset St, Boston, MA 02215" +260783,USB-C Charging Cable,1,11.95,09/18/19 21:41,"989 Sunset St, Boston, MA 02215" +260783,Bose SoundSport Headphones,1,99.99,09/18/19 21:41,"989 Sunset St, Boston, MA 02215" +260784,iPhone,1,700,09/28/19 18:16,"548 12th St, San Francisco, CA 94016" +260785,Wired Headphones,1,11.99,09/19/19 14:01,"37 North St, Atlanta, GA 30301" +260786,AAA Batteries (4-pack),2,2.99,09/12/19 22:45,"108 Center St, Atlanta, GA 30301" +260787,AA Batteries (4-pack),1,3.84,09/08/19 20:21,"598 Jackson St, New York City, NY 10001" +260788,34in Ultrawide Monitor,1,379.99,09/30/19 08:48,"772 Elm St, San Francisco, CA 94016" +260789,iPhone,1,700,09/17/19 11:19,"353 7th St, Los Angeles, CA 90001" +260790,Flatscreen TV,1,300,09/28/19 21:57,"288 Church St, Austin, TX 73301" +260791,34in Ultrawide Monitor,2,379.99,09/06/19 18:44,"124 Madison St, San Francisco, CA 94016" +260792,Bose SoundSport Headphones,1,99.99,09/11/19 22:19,"749 Sunset St, Los Angeles, CA 90001" +260793,Lightning Charging Cable,1,14.95,09/21/19 10:35,"950 10th St, San Francisco, CA 94016" +260794,27in FHD Monitor,1,149.99,09/25/19 22:12,"644 Pine St, Seattle, WA 98101" +260795,27in FHD Monitor,1,149.99,09/22/19 14:43,"524 Jefferson St, New York City, NY 10001" +260796,27in FHD Monitor,1,149.99,09/10/19 13:44,"620 4th St, San Francisco, CA 94016" +260797,27in FHD Monitor,1,149.99,09/14/19 19:04,"720 Willow St, Boston, MA 02215" +260798,Google Phone,1,600,09/10/19 13:41,"133 11th St, San Francisco, CA 94016" +260798,USB-C Charging Cable,1,11.95,09/10/19 13:41,"133 11th St, San Francisco, CA 94016" +260799,Bose SoundSport Headphones,1,99.99,09/28/19 21:43,"364 Highland St, Los Angeles, CA 90001" +260800,AAA Batteries (4-pack),1,2.99,09/13/19 21:30,"316 Lincoln St, Los Angeles, CA 90001" +260801,Google Phone,1,600,09/16/19 18:39,"289 Highland St, New York City, NY 10001" +260801,Bose SoundSport Headphones,1,99.99,09/16/19 18:39,"289 Highland St, New York City, NY 10001" +260801,34in Ultrawide Monitor,1,379.99,09/16/19 18:39,"289 Highland St, New York City, NY 10001" +260802,USB-C Charging Cable,1,11.95,09/11/19 09:57,"740 10th St, Seattle, WA 98101" +260803,AAA Batteries (4-pack),1,2.99,09/14/19 11:46,"322 Washington St, Los Angeles, CA 90001" +260804,Wired Headphones,1,11.99,09/28/19 21:37,"743 Chestnut St, New York City, NY 10001" +260805,Bose SoundSport Headphones,1,99.99,09/01/19 09:20,"155 Willow St, Dallas, TX 75001" +260806,Macbook Pro Laptop,1,1700,09/25/19 12:29,"821 Sunset St, Portland, OR 97035" +260807,Apple Airpods Headphones,1,150,09/27/19 10:56,"527 Adams St, San Francisco, CA 94016" +260808,Apple Airpods Headphones,1,150,09/26/19 06:41,"634 Lincoln St, New York City, NY 10001" +260809,27in FHD Monitor,1,149.99,09/14/19 15:38,"983 Walnut St, New York City, NY 10001" +260810,Wired Headphones,1,11.99,09/24/19 17:12,"964 9th St, Los Angeles, CA 90001" +260811,USB-C Charging Cable,1,11.95,09/18/19 21:16,"737 Park St, Los Angeles, CA 90001" +260812,Vareebadd Phone,1,400,09/28/19 07:33,"611 14th St, San Francisco, CA 94016" +260813,Macbook Pro Laptop,1,1700,09/11/19 14:52,"224 Willow St, Dallas, TX 75001" +260814,ThinkPad Laptop,1,999.99,09/23/19 13:36,"234 Meadow St, Boston, MA 02215" +260815,Google Phone,1,600,09/15/19 15:31,"743 6th St, San Francisco, CA 94016" +260815,USB-C Charging Cable,1,11.95,09/15/19 15:31,"743 6th St, San Francisco, CA 94016" +260816,Macbook Pro Laptop,1,1700,09/30/19 13:57,"522 2nd St, San Francisco, CA 94016" +260817,Bose SoundSport Headphones,1,99.99,09/17/19 11:11,"84 5th St, Los Angeles, CA 90001" +260818,27in 4K Gaming Monitor,1,389.99,09/30/19 20:24,"232 Church St, New York City, NY 10001" +260819,Bose SoundSport Headphones,1,99.99,09/28/19 22:27,"533 13th St, New York City, NY 10001" +260820,AA Batteries (4-pack),2,3.84,09/12/19 09:37,"956 Adams St, Boston, MA 02215" +260821,Wired Headphones,1,11.99,09/18/19 12:01,"410 Meadow St, Austin, TX 73301" +260822,Wired Headphones,2,11.99,09/13/19 15:12,"111 Elm St, San Francisco, CA 94016" +260823,27in FHD Monitor,1,149.99,09/12/19 21:46,"926 Hill St, Boston, MA 02215" +260824,USB-C Charging Cable,2,11.95,09/12/19 16:50,"711 Lincoln St, New York City, NY 10001" +260825,USB-C Charging Cable,1,11.95,09/15/19 01:02,"720 River St, San Francisco, CA 94016" +260826,AA Batteries (4-pack),2,3.84,09/09/19 17:28,"203 13th St, Dallas, TX 75001" +260827,AAA Batteries (4-pack),1,2.99,09/21/19 09:52,"492 Cherry St, Austin, TX 73301" +260828,Lightning Charging Cable,1,14.95,09/17/19 11:31,"798 8th St, New York City, NY 10001" +260829,iPhone,1,700,09/22/19 14:51,"422 13th St, Atlanta, GA 30301" +260830,USB-C Charging Cable,1,11.95,09/09/19 10:36,"658 7th St, New York City, NY 10001" +260831,AAA Batteries (4-pack),1,2.99,09/01/19 17:30,"209 14th St, Dallas, TX 75001" +260831,Wired Headphones,1,11.99,09/01/19 17:30,"209 14th St, Dallas, TX 75001" +260832,AAA Batteries (4-pack),1,2.99,09/01/19 18:51,"991 13th St, San Francisco, CA 94016" +260833,AA Batteries (4-pack),2,3.84,09/22/19 11:42,"475 Spruce St, Austin, TX 73301" +260834,27in FHD Monitor,1,149.99,09/07/19 10:00,"362 Elm St, San Francisco, CA 94016" +260835,Lightning Charging Cable,1,14.95,09/13/19 11:01,"641 Meadow St, San Francisco, CA 94016" +260836,20in Monitor,1,109.99,09/01/19 10:11,"108 Spruce St, Los Angeles, CA 90001" +260837,Lightning Charging Cable,1,14.95,09/22/19 18:01,"214 9th St, New York City, NY 10001" +260838,Wired Headphones,1,11.99,09/30/19 19:38,"501 Hill St, New York City, NY 10001" +260839,iPhone,1,700,09/16/19 20:58,"957 Center St, Dallas, TX 75001" +260840,AA Batteries (4-pack),1,3.84,09/07/19 20:30,"374 Park St, Atlanta, GA 30301" +260841,USB-C Charging Cable,1,11.95,09/06/19 17:39,"926 Maple St, Seattle, WA 98101" +260842,Wired Headphones,1,11.99,09/25/19 11:21,"895 Adams St, San Francisco, CA 94016" +260843,iPhone,1,700,09/15/19 00:45,"353 Cedar St, Los Angeles, CA 90001" +260844,AA Batteries (4-pack),3,3.84,09/26/19 13:35,"225 Church St, San Francisco, CA 94016" +260845,AAA Batteries (4-pack),1,2.99,09/25/19 09:26,"505 14th St, Atlanta, GA 30301" +260846,34in Ultrawide Monitor,1,379.99,09/14/19 19:34,"554 North St, San Francisco, CA 94016" +260847,USB-C Charging Cable,1,11.95,09/29/19 13:00,"7 Lakeview St, San Francisco, CA 94016" +260848,USB-C Charging Cable,1,11.95,09/14/19 21:45,"106 Main St, San Francisco, CA 94016" +260849,AAA Batteries (4-pack),1,2.99,09/18/19 10:37,"832 West St, New York City, NY 10001" +260850,Apple Airpods Headphones,1,150,09/25/19 19:59,"440 Walnut St, New York City, NY 10001" +260851,AAA Batteries (4-pack),1,2.99,09/24/19 11:04,"528 Spruce St, Atlanta, GA 30301" +260852,27in FHD Monitor,1,149.99,09/20/19 14:09,"307 1st St, New York City, NY 10001" +260853,USB-C Charging Cable,2,11.95,09/18/19 12:38,"614 Maple St, Portland, OR 97035" +260854,Macbook Pro Laptop,1,1700,09/23/19 20:39,"397 Dogwood St, Los Angeles, CA 90001" +260855,Apple Airpods Headphones,1,150,09/03/19 12:03,"325 2nd St, Seattle, WA 98101" +260856,USB-C Charging Cable,1,11.95,09/09/19 16:59,"167 7th St, Los Angeles, CA 90001" +260857,Lightning Charging Cable,1,14.95,09/26/19 10:26,"207 Willow St, Boston, MA 02215" +260858,Apple Airpods Headphones,1,150,09/06/19 03:49,"86 Jefferson St, Portland, OR 97035" +260859,iPhone,1,700,09/02/19 10:32,"176 Elm St, Atlanta, GA 30301" +260860,Lightning Charging Cable,1,14.95,09/27/19 12:18,"739 Lake St, Atlanta, GA 30301" +260861,Apple Airpods Headphones,1,150,09/03/19 12:26,"147 North St, Seattle, WA 98101" +260862,iPhone,1,700,09/02/19 11:00,"573 Cedar St, Los Angeles, CA 90001" +260863,Google Phone,1,600,09/14/19 05:17,"127 Park St, Los Angeles, CA 90001" +260864,USB-C Charging Cable,1,11.95,09/14/19 11:02,"21 Lakeview St, Boston, MA 02215" +260865,USB-C Charging Cable,1,11.95,09/06/19 03:31,"941 Spruce St, Los Angeles, CA 90001" +260866,34in Ultrawide Monitor,1,379.99,09/21/19 13:34,"627 6th St, New York City, NY 10001" +260867,USB-C Charging Cable,1,11.95,09/06/19 11:22,"966 Adams St, Los Angeles, CA 90001" +260868,Macbook Pro Laptop,1,1700,09/09/19 17:15,"381 1st St, San Francisco, CA 94016" +260869,Apple Airpods Headphones,1,150,09/20/19 19:40,"925 5th St, Atlanta, GA 30301" +260870,AAA Batteries (4-pack),1,2.99,09/14/19 20:07,"966 South St, Los Angeles, CA 90001" +260871,20in Monitor,1,109.99,09/03/19 16:29,"243 Willow St, San Francisco, CA 94016" +260872,Lightning Charging Cable,1,14.95,09/02/19 17:16,"656 13th St, Dallas, TX 75001" +260873,iPhone,1,700,09/21/19 13:00,"578 Wilson St, Seattle, WA 98101" +260873,Lightning Charging Cable,1,14.95,09/21/19 13:00,"578 Wilson St, Seattle, WA 98101" +260874,27in FHD Monitor,1,149.99,09/03/19 21:03,"137 Chestnut St, Los Angeles, CA 90001" +260875,USB-C Charging Cable,1,11.95,09/25/19 09:21,"655 Lake St, Los Angeles, CA 90001" +260876,Bose SoundSport Headphones,1,99.99,09/14/19 23:01,"37 Jefferson St, Seattle, WA 98101" +260877,Lightning Charging Cable,2,14.95,09/10/19 15:37,"481 Main St, Los Angeles, CA 90001" +260878,Wired Headphones,1,11.99,09/23/19 12:08,"208 7th St, San Francisco, CA 94016" +260879,Flatscreen TV,1,300,09/16/19 10:43,"319 Dogwood St, New York City, NY 10001" +260880,27in FHD Monitor,1,149.99,09/09/19 01:38,"496 Washington St, Seattle, WA 98101" +260881,Bose SoundSport Headphones,1,99.99,09/06/19 17:20,"504 7th St, Dallas, TX 75001" +260882,AAA Batteries (4-pack),1,2.99,09/19/19 12:37,"542 North St, Boston, MA 02215" +260883,Google Phone,1,600,09/27/19 20:50,"998 4th St, Dallas, TX 75001" +260884,AA Batteries (4-pack),1,3.84,09/05/19 15:46,"572 Wilson St, Los Angeles, CA 90001" +260885,34in Ultrawide Monitor,1,379.99,09/01/19 13:06,"179 Park St, Los Angeles, CA 90001" +260886,AAA Batteries (4-pack),1,2.99,09/21/19 14:04,"798 9th St, San Francisco, CA 94016" +260887,Bose SoundSport Headphones,1,99.99,09/09/19 19:40,"400 Elm St, Austin, TX 73301" +260888,Bose SoundSport Headphones,1,99.99,09/14/19 12:24,"254 Cherry St, San Francisco, CA 94016" +260889,Apple Airpods Headphones,1,150,09/04/19 23:00,"392 North St, Portland, OR 97035" +260890,AAA Batteries (4-pack),2,2.99,09/29/19 19:45,"523 4th St, San Francisco, CA 94016" +260891,27in 4K Gaming Monitor,1,389.99,09/28/19 16:20,"637 5th St, Dallas, TX 75001" +260892,Google Phone,1,600,09/19/19 08:26,"587 Dogwood St, Los Angeles, CA 90001" +260893,Bose SoundSport Headphones,1,99.99,09/18/19 15:07,"760 West St, Seattle, WA 98101" +260894,iPhone,1,700,09/27/19 19:29,"309 North St, Austin, TX 73301" +260895,AA Batteries (4-pack),1,3.84,09/07/19 15:15,"179 Center St, Portland, OR 97035" +260896,Apple Airpods Headphones,1,150,09/10/19 19:22,"314 Madison St, Atlanta, GA 30301" +260897,Bose SoundSport Headphones,1,99.99,09/22/19 21:30,"320 Forest St, Seattle, WA 98101" +260898,Lightning Charging Cable,1,14.95,09/15/19 15:46,"570 Lincoln St, New York City, NY 10001" +260899,AAA Batteries (4-pack),1,2.99,09/11/19 19:14,"70 9th St, Seattle, WA 98101" +260900,USB-C Charging Cable,1,11.95,09/07/19 00:13,"467 Jackson St, New York City, NY 10001" +260901,AA Batteries (4-pack),1,3.84,09/11/19 10:21,"888 5th St, Seattle, WA 98101" +260902,AAA Batteries (4-pack),3,2.99,09/03/19 15:31,"93 Cedar St, Seattle, WA 98101" +260903,Flatscreen TV,1,300,09/28/19 21:12,"454 Elm St, Atlanta, GA 30301" +260904,Wired Headphones,1,11.99,09/21/19 09:01,"859 Wilson St, Los Angeles, CA 90001" +260905,20in Monitor,1,109.99,09/12/19 14:26,"909 Lincoln St, New York City, NY 10001" +260906,AA Batteries (4-pack),1,3.84,09/07/19 22:18,"589 5th St, New York City, NY 10001" +260907,AA Batteries (4-pack),1,3.84,09/19/19 21:02,"497 Jefferson St, Seattle, WA 98101" +260908,AAA Batteries (4-pack),1,2.99,09/23/19 10:03,"772 Cherry St, Austin, TX 73301" +260909,Lightning Charging Cable,1,14.95,09/21/19 18:32,"67 Lincoln St, New York City, NY 10001" +260910,AAA Batteries (4-pack),1,2.99,09/29/19 19:06,"197 Adams St, Seattle, WA 98101" +260911,Bose SoundSport Headphones,1,99.99,09/14/19 11:20,"861 Dogwood St, New York City, NY 10001" +260912,USB-C Charging Cable,1,11.95,09/05/19 13:20,"112 8th St, Los Angeles, CA 90001" +260913,Flatscreen TV,1,300,09/12/19 07:21,"353 6th St, San Francisco, CA 94016" +260914,Wired Headphones,1,11.99,09/19/19 12:08,"577 Dogwood St, New York City, NY 10001" +260915,AA Batteries (4-pack),1,3.84,09/04/19 12:16,"573 6th St, Los Angeles, CA 90001" +260916,iPhone,1,700,09/02/19 20:00,"311 Hickory St, Boston, MA 02215" +260917,20in Monitor,1,109.99,09/28/19 15:28,"175 River St, Boston, MA 02215" +260918,AAA Batteries (4-pack),1,2.99,09/27/19 00:22,"247 Jefferson St, New York City, NY 10001" +260919,USB-C Charging Cable,1,11.95,09/10/19 00:49,"847 Willow St, New York City, NY 10001" +260920,USB-C Charging Cable,2,11.95,09/12/19 11:18,"412 North St, Austin, TX 73301" +260921,Wired Headphones,1,11.99,09/24/19 20:10,"407 Spruce St, New York City, NY 10001" +260922,Wired Headphones,1,11.99,09/15/19 23:23,"38 Lincoln St, New York City, NY 10001" +260923,iPhone,1,700,09/03/19 15:57,"19 14th St, New York City, NY 10001" +260924,AA Batteries (4-pack),4,3.84,09/21/19 18:55,"365 9th St, Atlanta, GA 30301" +260925,AAA Batteries (4-pack),1,2.99,09/27/19 12:56,"335 Church St, San Francisco, CA 94016" +260926,Lightning Charging Cable,3,14.95,09/07/19 17:52,"923 6th St, New York City, NY 10001" +260927,Apple Airpods Headphones,1,150,09/24/19 19:12,"9 Willow St, San Francisco, CA 94016" +260928,34in Ultrawide Monitor,1,379.99,09/12/19 08:19,"591 Maple St, Dallas, TX 75001" +260929,AAA Batteries (4-pack),1,2.99,09/08/19 12:55,"780 Willow St, San Francisco, CA 94016" +260930,AAA Batteries (4-pack),1,2.99,09/18/19 18:44,"762 Ridge St, Los Angeles, CA 90001" +260931,AA Batteries (4-pack),1,3.84,09/11/19 06:35,"217 14th St, San Francisco, CA 94016" +260932,Wired Headphones,1,11.99,09/19/19 08:05,"927 Elm St, Los Angeles, CA 90001" +260933,AAA Batteries (4-pack),1,2.99,09/14/19 18:20,"899 11th St, New York City, NY 10001" +260934,Lightning Charging Cable,1,14.95,09/19/19 02:46,"16 River St, Boston, MA 02215" +260935,Macbook Pro Laptop,1,1700,09/04/19 12:33,"333 13th St, San Francisco, CA 94016" +260936,Lightning Charging Cable,1,14.95,09/08/19 13:47,"385 7th St, Portland, ME 04101" +260937,AAA Batteries (4-pack),2,2.99,09/12/19 12:28,"936 6th St, Portland, OR 97035" +260938,AA Batteries (4-pack),1,3.84,09/30/19 21:25,"504 14th St, Los Angeles, CA 90001" +260938,Lightning Charging Cable,1,14.95,09/30/19 21:25,"504 14th St, Los Angeles, CA 90001" +260939,Apple Airpods Headphones,1,150,09/02/19 16:40,"15 Highland St, Atlanta, GA 30301" +260940,AA Batteries (4-pack),1,3.84,09/27/19 06:24,"453 Park St, New York City, NY 10001" +260941,AA Batteries (4-pack),1,3.84,09/14/19 08:36,"37 Washington St, Dallas, TX 75001" +260942,27in 4K Gaming Monitor,1,389.99,09/21/19 11:49,"410 Lakeview St, Seattle, WA 98101" +260943,34in Ultrawide Monitor,1,379.99,09/15/19 01:48,"4 Maple St, New York City, NY 10001" +260944,Bose SoundSport Headphones,1,99.99,09/19/19 12:23,"112 Highland St, Seattle, WA 98101" +260945,iPhone,1,700,09/21/19 11:18,"238 River St, Dallas, TX 75001" +260946,Lightning Charging Cable,1,14.95,09/22/19 14:01,"384 Sunset St, San Francisco, CA 94016" +260947,20in Monitor,1,109.99,09/03/19 09:11,"648 Park St, Austin, TX 73301" +260948,AAA Batteries (4-pack),1,2.99,09/01/19 21:27,"322 West St, Portland, OR 97035" +260949,AA Batteries (4-pack),1,3.84,09/24/19 22:21,"643 Spruce St, Seattle, WA 98101" +260950,34in Ultrawide Monitor,1,379.99,09/23/19 00:37,"714 Church St, New York City, NY 10001" +260951,AAA Batteries (4-pack),1,2.99,09/20/19 13:34,"32 8th St, Los Angeles, CA 90001" +260952,Lightning Charging Cable,1,14.95,09/07/19 19:35,"913 Highland St, San Francisco, CA 94016" +260953,Flatscreen TV,1,300,09/26/19 14:55,"348 Cherry St, Seattle, WA 98101" +260954,AA Batteries (4-pack),3,3.84,09/10/19 01:07,"339 Church St, Seattle, WA 98101" +260955,Bose SoundSport Headphones,1,99.99,09/15/19 16:56,"497 Madison St, Boston, MA 02215" +260956,ThinkPad Laptop,1,999.99,09/24/19 21:46,"667 8th St, Seattle, WA 98101" +260957,Apple Airpods Headphones,1,150,09/23/19 11:21,"7 Adams St, Austin, TX 73301" +260958,Lightning Charging Cable,1,14.95,09/23/19 14:26,"666 South St, San Francisco, CA 94016" +260959,AA Batteries (4-pack),1,3.84,09/21/19 20:21,"829 Dogwood St, Boston, MA 02215" +260960,Apple Airpods Headphones,1,150,09/24/19 11:48,"147 Chestnut St, Seattle, WA 98101" +260961,Lightning Charging Cable,1,14.95,09/14/19 09:18,"769 Park St, Boston, MA 02215" +260962,Lightning Charging Cable,1,14.95,09/06/19 04:59,"372 Wilson St, Austin, TX 73301" +260963,AAA Batteries (4-pack),1,2.99,09/09/19 19:21,"241 10th St, Boston, MA 02215" +260964,34in Ultrawide Monitor,1,379.99,09/29/19 17:22,"152 Wilson St, Dallas, TX 75001" +260965,Wired Headphones,1,11.99,09/24/19 17:52,"27 South St, San Francisco, CA 94016" +260966,Apple Airpods Headphones,1,150,09/01/19 12:28,"88 Jefferson St, Portland, OR 97035" +260967,AA Batteries (4-pack),1,3.84,09/08/19 08:42,"311 Center St, Dallas, TX 75001" +260968,AA Batteries (4-pack),1,3.84,09/11/19 13:58,"866 South St, Los Angeles, CA 90001" +260969,USB-C Charging Cable,1,11.95,09/07/19 09:00,"810 Washington St, San Francisco, CA 94016" +260970,AA Batteries (4-pack),1,3.84,09/09/19 12:45,"195 Pine St, Dallas, TX 75001" +260971,iPhone,1,700,09/20/19 17:02,"407 Main St, Los Angeles, CA 90001" +260972,AA Batteries (4-pack),1,3.84,09/09/19 08:40,"114 6th St, Los Angeles, CA 90001" +260973,20in Monitor,1,109.99,09/12/19 15:48,"55 6th St, San Francisco, CA 94016" +260974,AA Batteries (4-pack),2,3.84,09/15/19 18:15,"744 11th St, San Francisco, CA 94016" +260975,Bose SoundSport Headphones,1,99.99,09/11/19 21:24,"129 Meadow St, Boston, MA 02215" +260976,Apple Airpods Headphones,1,150,09/18/19 18:57,"140 South St, New York City, NY 10001" +260977,AA Batteries (4-pack),1,3.84,09/18/19 12:50,"52 Forest St, New York City, NY 10001" +260978,Flatscreen TV,1,300,09/20/19 14:24,"9 Ridge St, San Francisco, CA 94016" +260979,Google Phone,1,600,09/12/19 06:55,"525 5th St, Portland, OR 97035" +260980,USB-C Charging Cable,1,11.95,09/22/19 12:44,"732 6th St, Los Angeles, CA 90001" +260981,Bose SoundSport Headphones,1,99.99,09/21/19 13:40,"900 11th St, Los Angeles, CA 90001" +260982,Apple Airpods Headphones,1,150,09/26/19 09:04,"127 13th St, New York City, NY 10001" +260983,34in Ultrawide Monitor,1,379.99,09/04/19 12:51,"127 9th St, San Francisco, CA 94016" +260984,iPhone,1,700,09/04/19 10:10,"837 10th St, Seattle, WA 98101" +260985,27in FHD Monitor,1,149.99,09/17/19 17:29,"237 Madison St, Los Angeles, CA 90001" +260986,Google Phone,1,600,09/24/19 05:27,"553 Madison St, Austin, TX 73301" +260987,AA Batteries (4-pack),1,3.84,09/18/19 14:10,"505 Main St, Dallas, TX 75001" +260988,Wired Headphones,1,11.99,09/28/19 12:36,"793 4th St, Dallas, TX 75001" +260989,AAA Batteries (4-pack),1,2.99,09/23/19 10:53,"185 Cedar St, Los Angeles, CA 90001" +260990,USB-C Charging Cable,1,11.95,09/29/19 20:58,"125 Washington St, Portland, ME 04101" +260991,Lightning Charging Cable,1,14.95,09/10/19 23:54,"466 14th St, Atlanta, GA 30301" +260992,27in FHD Monitor,1,149.99,09/05/19 10:14,"810 7th St, San Francisco, CA 94016" +260993,Google Phone,1,600,09/07/19 19:36,"597 Forest St, Atlanta, GA 30301" +260994,iPhone,1,700,09/09/19 11:04,"659 7th St, Atlanta, GA 30301" +260994,Lightning Charging Cable,1,14.95,09/09/19 11:04,"659 7th St, Atlanta, GA 30301" +260995,AAA Batteries (4-pack),1,2.99,09/02/19 09:20,"921 8th St, Los Angeles, CA 90001" +260996,27in FHD Monitor,1,149.99,09/12/19 20:32,"674 Lincoln St, Los Angeles, CA 90001" +260996,USB-C Charging Cable,3,11.95,09/12/19 20:32,"674 Lincoln St, Los Angeles, CA 90001" +260997,USB-C Charging Cable,1,11.95,09/04/19 23:39,"398 5th St, Boston, MA 02215" +260998,Wired Headphones,1,11.99,09/26/19 15:14,"240 2nd St, Los Angeles, CA 90001" +260999,Apple Airpods Headphones,1,150,09/30/19 20:52,"693 9th St, San Francisco, CA 94016" +261000,Vareebadd Phone,1,400,09/14/19 19:20,"478 Forest St, San Francisco, CA 94016" +261000,USB-C Charging Cable,2,11.95,09/14/19 19:20,"478 Forest St, San Francisco, CA 94016" +261001,Apple Airpods Headphones,1,150,09/22/19 00:26,"946 12th St, Boston, MA 02215" +261002,Google Phone,1,600,09/03/19 21:06,"593 8th St, San Francisco, CA 94016" +261002,USB-C Charging Cable,1,11.95,09/03/19 21:06,"593 8th St, San Francisco, CA 94016" +261003,iPhone,1,700,09/07/19 16:16,"723 Sunset St, San Francisco, CA 94016" +261004,USB-C Charging Cable,1,11.95,09/10/19 08:52,"543 Park St, Dallas, TX 75001" +261005,ThinkPad Laptop,1,999.99,09/16/19 16:32,"326 South St, San Francisco, CA 94016" +261006,Lightning Charging Cable,1,14.95,09/09/19 06:59,"641 West St, San Francisco, CA 94016" +261007,Wired Headphones,1,11.99,09/08/19 16:28,"58 Maple St, San Francisco, CA 94016" +261008,20in Monitor,1,109.99,09/22/19 14:20,"923 Forest St, Seattle, WA 98101" +261009,Google Phone,1,600,09/09/19 10:34,"245 Ridge St, Austin, TX 73301" +261010,27in 4K Gaming Monitor,1,389.99,09/04/19 23:54,"179 River St, Boston, MA 02215" +261011,ThinkPad Laptop,1,999.99,09/23/19 13:04,"655 Dogwood St, San Francisco, CA 94016" +261012,Bose SoundSport Headphones,1,99.99,09/08/19 18:05,"506 Jackson St, San Francisco, CA 94016" +261013,Flatscreen TV,1,300,09/23/19 12:45,"549 12th St, Dallas, TX 75001" +261014,iPhone,1,700,09/22/19 13:08,"572 14th St, Boston, MA 02215" +261014,Apple Airpods Headphones,1,150,09/22/19 13:08,"572 14th St, Boston, MA 02215" +261015,AA Batteries (4-pack),2,3.84,09/25/19 19:19,"875 2nd St, New York City, NY 10001" +261016,AA Batteries (4-pack),2,3.84,09/25/19 09:35,"722 1st St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +261017,Apple Airpods Headphones,1,150,09/23/19 09:18,"311 Forest St, New York City, NY 10001" +261018,AA Batteries (4-pack),2,3.84,09/12/19 09:38,"303 Washington St, Los Angeles, CA 90001" +261019,ThinkPad Laptop,1,999.99,09/24/19 14:27,"705 Lakeview St, Dallas, TX 75001" +261020,20in Monitor,1,109.99,09/11/19 19:05,"940 Jefferson St, New York City, NY 10001" +261021,AAA Batteries (4-pack),2,2.99,09/22/19 20:27,"20 7th St, Atlanta, GA 30301" +261022,AA Batteries (4-pack),1,3.84,09/19/19 01:02,"77 1st St, San Francisco, CA 94016" +261023,Wired Headphones,1,11.99,09/08/19 22:33,"72 Cedar St, Los Angeles, CA 90001" +261024,27in 4K Gaming Monitor,1,389.99,09/20/19 07:42,"406 4th St, San Francisco, CA 94016" +261025,Lightning Charging Cable,1,14.95,09/08/19 14:20,"548 Johnson St, Boston, MA 02215" +261026,Wired Headphones,1,11.99,09/05/19 11:55,"66 Jackson St, Portland, OR 97035" +261027,Bose SoundSport Headphones,1,99.99,09/21/19 12:16,"830 2nd St, Dallas, TX 75001" +261028,AA Batteries (4-pack),1,3.84,09/24/19 18:30,"654 Lakeview St, Los Angeles, CA 90001" +261029,Lightning Charging Cable,1,14.95,09/21/19 19:30,"287 South St, New York City, NY 10001" +261030,AAA Batteries (4-pack),2,2.99,09/13/19 10:48,"792 6th St, San Francisco, CA 94016" +261031,Bose SoundSport Headphones,1,99.99,09/01/19 13:50,"90 Wilson St, San Francisco, CA 94016" +261032,AA Batteries (4-pack),2,3.84,09/07/19 16:32,"24 Sunset St, Los Angeles, CA 90001" +261033,34in Ultrawide Monitor,1,379.99,09/05/19 16:31,"759 Chestnut St, San Francisco, CA 94016" +261034,Bose SoundSport Headphones,1,99.99,09/10/19 21:59,"169 Adams St, San Francisco, CA 94016" +261035,USB-C Charging Cable,1,11.95,09/30/19 18:22,"922 Johnson St, San Francisco, CA 94016" +261036,Wired Headphones,1,11.99,09/23/19 21:31,"904 Lakeview St, Austin, TX 73301" +261037,Macbook Pro Laptop,1,1700,09/21/19 18:39,"784 Maple St, Los Angeles, CA 90001" +261038,Apple Airpods Headphones,1,150,09/02/19 10:47,"912 Jackson St, New York City, NY 10001" +261039,AA Batteries (4-pack),3,3.84,09/16/19 14:20,"88 Park St, Los Angeles, CA 90001" +261040,Lightning Charging Cable,2,14.95,09/28/19 07:37,"689 2nd St, New York City, NY 10001" +261041,27in FHD Monitor,1,149.99,09/04/19 14:05,"928 Chestnut St, San Francisco, CA 94016" +261042,Lightning Charging Cable,1,14.95,09/23/19 18:07,"923 8th St, Austin, TX 73301" +261043,AAA Batteries (4-pack),1,2.99,09/23/19 21:44,"635 River St, Boston, MA 02215" +261044,Bose SoundSport Headphones,1,99.99,09/22/19 20:12,"937 Sunset St, San Francisco, CA 94016" +261045,iPhone,1,700,09/26/19 14:04,"279 Lake St, Atlanta, GA 30301" +261046,Wired Headphones,1,11.99,09/22/19 08:01,"265 Lake St, San Francisco, CA 94016" +261047,ThinkPad Laptop,1,999.99,09/18/19 08:49,"59 Center St, San Francisco, CA 94016" +261048,AAA Batteries (4-pack),1,2.99,09/20/19 18:02,"495 Forest St, Boston, MA 02215" +261049,USB-C Charging Cable,2,11.95,09/29/19 21:59,"280 Lincoln St, Portland, ME 04101" +261050,Apple Airpods Headphones,1,150,09/24/19 11:10,"277 Jefferson St, Los Angeles, CA 90001" +261051,27in FHD Monitor,1,149.99,09/27/19 10:24,"828 Walnut St, Atlanta, GA 30301" +261052,Apple Airpods Headphones,1,150,09/03/19 12:58,"617 Hill St, San Francisco, CA 94016" +261053,Bose SoundSport Headphones,1,99.99,09/30/19 08:37,"967 Forest St, San Francisco, CA 94016" +261054,Lightning Charging Cable,1,14.95,09/15/19 05:05,"785 9th St, San Francisco, CA 94016" +261055,USB-C Charging Cable,2,11.95,09/13/19 11:04,"792 South St, Los Angeles, CA 90001" +261056,USB-C Charging Cable,1,11.95,09/17/19 10:21,"158 Johnson St, Dallas, TX 75001" +261057,AAA Batteries (4-pack),2,2.99,09/28/19 18:48,"342 Cherry St, New York City, NY 10001" +261058,Apple Airpods Headphones,1,150,09/21/19 19:11,"434 2nd St, Boston, MA 02215" +261059,Wired Headphones,1,11.99,09/16/19 00:51,"54 Jackson St, Los Angeles, CA 90001" +261060,Lightning Charging Cable,1,14.95,09/23/19 11:47,"408 Hickory St, San Francisco, CA 94016" +261061,AAA Batteries (4-pack),1,2.99,09/29/19 18:30,"576 Adams St, New York City, NY 10001" +261062,AAA Batteries (4-pack),1,2.99,09/13/19 11:22,"101 Church St, Los Angeles, CA 90001" +261063,Apple Airpods Headphones,1,150,09/02/19 20:12,"399 Center St, San Francisco, CA 94016" +261064,AA Batteries (4-pack),1,3.84,09/10/19 19:31,"125 10th St, Atlanta, GA 30301" +261065,AAA Batteries (4-pack),2,2.99,09/10/19 15:21,"672 8th St, Portland, OR 97035" +261066,AA Batteries (4-pack),2,3.84,09/11/19 07:57,"959 Pine St, Seattle, WA 98101" +261067,27in FHD Monitor,1,149.99,09/28/19 19:17,"641 Washington St, San Francisco, CA 94016" +261068,Lightning Charging Cable,1,14.95,09/29/19 23:12,"720 North St, Dallas, TX 75001" +261069,ThinkPad Laptop,1,999.99,09/22/19 20:29,"388 Johnson St, Seattle, WA 98101" +261070,AA Batteries (4-pack),1,3.84,09/01/19 11:02,"620 Meadow St, Seattle, WA 98101" +261071,Apple Airpods Headphones,1,150,09/20/19 18:15,"881 Jackson St, New York City, NY 10001" +261072,AAA Batteries (4-pack),1,2.99,09/12/19 20:16,"996 13th St, San Francisco, CA 94016" +261073,AA Batteries (4-pack),2,3.84,09/03/19 12:36,"159 Adams St, San Francisco, CA 94016" +261074,ThinkPad Laptop,1,999.99,09/16/19 17:20,"71 Willow St, Austin, TX 73301" +261075,Bose SoundSport Headphones,1,99.99,09/30/19 20:24,"508 Elm St, San Francisco, CA 94016" +261076,Bose SoundSport Headphones,1,99.99,09/16/19 12:43,"392 Church St, New York City, NY 10001" +261077,AA Batteries (4-pack),1,3.84,09/26/19 12:02,"689 Madison St, Los Angeles, CA 90001" +261078,Lightning Charging Cable,1,14.95,09/25/19 10:17,"513 Dogwood St, New York City, NY 10001" +261079,34in Ultrawide Monitor,1,379.99,09/24/19 06:54,"121 Walnut St, Los Angeles, CA 90001" +261080,USB-C Charging Cable,1,11.95,09/17/19 13:03,"7 6th St, Los Angeles, CA 90001" +261081,Macbook Pro Laptop,1,1700,09/12/19 12:22,"655 Wilson St, Seattle, WA 98101" +261082,Bose SoundSport Headphones,1,99.99,09/04/19 16:05,"174 Adams St, Boston, MA 02215" +261083,Lightning Charging Cable,1,14.95,09/07/19 01:53,"222 1st St, New York City, NY 10001" +261084,Apple Airpods Headphones,1,150,09/07/19 17:45,"51 12th St, New York City, NY 10001" +261085,AAA Batteries (4-pack),1,2.99,09/17/19 14:03,"781 Washington St, Austin, TX 73301" +261086,Macbook Pro Laptop,1,1700,09/21/19 11:50,"845 Washington St, Atlanta, GA 30301" +261087,27in FHD Monitor,1,149.99,09/27/19 17:53,"206 Sunset St, Boston, MA 02215" +261088,Google Phone,1,600,09/08/19 12:47,"539 Lakeview St, New York City, NY 10001" +261089,AAA Batteries (4-pack),1,2.99,09/08/19 19:45,"147 1st St, San Francisco, CA 94016" +261090,USB-C Charging Cable,1,11.95,09/10/19 08:12,"944 5th St, Boston, MA 02215" +261091,27in 4K Gaming Monitor,1,389.99,09/24/19 23:22,"463 Johnson St, Los Angeles, CA 90001" +261092,ThinkPad Laptop,1,999.99,09/22/19 18:59,"616 Cedar St, Los Angeles, CA 90001" +261093,USB-C Charging Cable,1,11.95,09/26/19 22:42,"174 North St, Atlanta, GA 30301" +261094,iPhone,1,700,09/15/19 19:35,"993 8th St, Portland, OR 97035" +261095,27in 4K Gaming Monitor,1,389.99,09/20/19 13:38,"189 1st St, Seattle, WA 98101" +261096,Macbook Pro Laptop,1,1700,09/03/19 21:32,"828 Adams St, San Francisco, CA 94016" +261097,Lightning Charging Cable,1,14.95,09/20/19 19:14,"995 2nd St, Dallas, TX 75001" +261098,AAA Batteries (4-pack),1,2.99,09/01/19 20:48,"44 9th St, Portland, OR 97035" +261098,AA Batteries (4-pack),1,3.84,09/01/19 20:48,"44 9th St, Portland, OR 97035" +261099,34in Ultrawide Monitor,1,379.99,09/15/19 20:20,"683 Willow St, New York City, NY 10001" +261100,27in FHD Monitor,1,149.99,09/30/19 14:08,"284 4th St, Atlanta, GA 30301" +261101,AAA Batteries (4-pack),1,2.99,09/23/19 20:27,"559 Hickory St, New York City, NY 10001" +261102,Apple Airpods Headphones,1,150,09/29/19 12:28,"94 4th St, San Francisco, CA 94016" +261103,27in 4K Gaming Monitor,1,389.99,09/22/19 01:03,"599 Hickory St, Boston, MA 02215" +261104,Wired Headphones,1,11.99,09/22/19 16:37,"179 1st St, Boston, MA 02215" +261105,27in FHD Monitor,1,149.99,09/20/19 15:17,"566 Park St, Portland, OR 97035" +261106,Wired Headphones,1,11.99,09/18/19 18:31,"337 South St, Boston, MA 02215" +261107,Macbook Pro Laptop,1,1700,09/25/19 02:37,"331 Walnut St, Portland, ME 04101" +261108,AAA Batteries (4-pack),1,2.99,09/02/19 18:16,"293 1st St, Atlanta, GA 30301" +261109,Lightning Charging Cable,1,14.95,09/29/19 18:10,"39 Madison St, San Francisco, CA 94016" +261110,Vareebadd Phone,1,400,09/12/19 17:16,"489 14th St, Austin, TX 73301" +261110,USB-C Charging Cable,1,11.95,09/12/19 17:16,"489 14th St, Austin, TX 73301" +261111,Lightning Charging Cable,1,14.95,09/14/19 19:21,"285 Madison St, Portland, OR 97035" +261112,Wired Headphones,2,11.99,09/06/19 12:00,"373 Madison St, Seattle, WA 98101" +261113,AA Batteries (4-pack),2,3.84,09/24/19 12:53,"782 Highland St, New York City, NY 10001" +261114,Flatscreen TV,1,300,09/21/19 16:19,"797 Hill St, San Francisco, CA 94016" +261115,27in 4K Gaming Monitor,1,389.99,09/05/19 15:10,"331 6th St, Los Angeles, CA 90001" +261116,USB-C Charging Cable,1,11.95,09/07/19 10:05,"771 4th St, Boston, MA 02215" +261117,AAA Batteries (4-pack),2,2.99,09/04/19 14:33,"825 Elm St, Dallas, TX 75001" +261118,AA Batteries (4-pack),1,3.84,09/30/19 09:14,"335 Elm St, San Francisco, CA 94016" +261119,Wired Headphones,1,11.99,09/18/19 06:18,"765 Jefferson St, Atlanta, GA 30301" +261120,Wired Headphones,3,11.99,09/03/19 14:46,"389 14th St, San Francisco, CA 94016" +261121,Wired Headphones,1,11.99,09/28/19 18:22,"507 2nd St, San Francisco, CA 94016" +261122,iPhone,1,700,09/15/19 11:47,"16 8th St, Boston, MA 02215" +261123,AAA Batteries (4-pack),1,2.99,09/28/19 22:15,"693 Center St, Los Angeles, CA 90001" +261124,Bose SoundSport Headphones,1,99.99,09/25/19 16:19,"383 Lake St, Boston, MA 02215" +261125,Apple Airpods Headphones,1,150,09/19/19 09:03,"981 Elm St, Los Angeles, CA 90001" +261126,Lightning Charging Cable,1,14.95,09/06/19 14:59,"545 Johnson St, Boston, MA 02215" +261127,34in Ultrawide Monitor,1,379.99,09/15/19 18:57,"640 12th St, San Francisco, CA 94016" +261128,Flatscreen TV,1,300,09/11/19 19:04,"264 Chestnut St, San Francisco, CA 94016" +261129,AAA Batteries (4-pack),1,2.99,09/20/19 09:17,"887 Cherry St, New York City, NY 10001" +261130,AAA Batteries (4-pack),1,2.99,09/02/19 15:23,"431 Hill St, Seattle, WA 98101" +261131,iPhone,1,700,09/28/19 12:49,"358 Madison St, Boston, MA 02215" +261132,Bose SoundSport Headphones,1,99.99,09/14/19 10:03,"478 4th St, New York City, NY 10001" +261133,Bose SoundSport Headphones,1,99.99,09/26/19 13:32,"394 4th St, Boston, MA 02215" +261134,Wired Headphones,1,11.99,09/05/19 14:47,"196 North St, Seattle, WA 98101" +261135,Wired Headphones,1,11.99,09/28/19 12:04,"304 Jackson St, Boston, MA 02215" +261136,Wired Headphones,1,11.99,09/04/19 19:39,"863 West St, Austin, TX 73301" +261137,AA Batteries (4-pack),1,3.84,09/16/19 19:28,"857 Main St, New York City, NY 10001" +261138,Google Phone,1,600,09/12/19 22:21,"234 Jefferson St, Los Angeles, CA 90001" +261139,Google Phone,1,600,09/17/19 10:31,"873 12th St, Seattle, WA 98101" +261139,Bose SoundSport Headphones,1,99.99,09/17/19 10:31,"873 12th St, Seattle, WA 98101" +261140,Lightning Charging Cable,1,14.95,09/01/19 23:36,"951 1st St, Seattle, WA 98101" +261141,Bose SoundSport Headphones,1,99.99,09/26/19 12:28,"422 Dogwood St, San Francisco, CA 94016" +261142,Macbook Pro Laptop,1,1700,09/13/19 17:29,"427 Walnut St, San Francisco, CA 94016" +261143,AA Batteries (4-pack),1,3.84,09/22/19 12:37,"726 Highland St, Atlanta, GA 30301" +261144,Bose SoundSport Headphones,1,99.99,09/19/19 11:03,"160 9th St, Atlanta, GA 30301" +261145,27in FHD Monitor,1,149.99,09/10/19 14:26,"996 2nd St, San Francisco, CA 94016" +261146,iPhone,1,700,09/02/19 12:25,"545 4th St, San Francisco, CA 94016" +261147,Lightning Charging Cable,1,14.95,09/11/19 00:35,"151 11th St, Dallas, TX 75001" +261148,Flatscreen TV,1,300,09/22/19 13:10,"696 Lakeview St, Boston, MA 02215" +261149,AA Batteries (4-pack),1,3.84,09/19/19 11:54,"881 12th St, New York City, NY 10001" +261150,Wired Headphones,1,11.99,09/03/19 20:18,"89 Lincoln St, Dallas, TX 75001" +261151,Lightning Charging Cable,1,14.95,09/08/19 16:53,"136 12th St, San Francisco, CA 94016" +261152,34in Ultrawide Monitor,1,379.99,09/18/19 11:35,"94 Elm St, Atlanta, GA 30301" +261153,iPhone,1,700,09/24/19 09:49,"297 14th St, Los Angeles, CA 90001" +261154,AAA Batteries (4-pack),1,2.99,09/06/19 21:14,"665 Dogwood St, San Francisco, CA 94016" +261155,Lightning Charging Cable,1,14.95,09/01/19 23:55,"400 South St, New York City, NY 10001" +261156,Wired Headphones,1,11.99,09/21/19 20:04,"329 South St, Austin, TX 73301" +261157,Bose SoundSport Headphones,1,99.99,09/28/19 09:15,"667 Park St, New York City, NY 10001" +261158,27in 4K Gaming Monitor,1,389.99,09/05/19 22:12,"600 10th St, Atlanta, GA 30301" +261159,Flatscreen TV,1,300,09/21/19 10:11,"138 6th St, Boston, MA 02215" +261160,USB-C Charging Cable,1,11.95,09/24/19 21:07,"676 Sunset St, Atlanta, GA 30301" +261161,27in 4K Gaming Monitor,1,389.99,09/08/19 10:16,"962 Park St, Seattle, WA 98101" +261162,AAA Batteries (4-pack),1,2.99,09/13/19 10:38,"808 Dogwood St, New York City, NY 10001" +261163,20in Monitor,1,109.99,09/13/19 14:03,"217 Dogwood St, Los Angeles, CA 90001" +261164,Lightning Charging Cable,1,14.95,09/12/19 10:28,"487 1st St, Los Angeles, CA 90001" +261165,ThinkPad Laptop,1,999.99,09/30/19 11:49,"556 11th St, Austin, TX 73301" +261166,Bose SoundSport Headphones,1,99.99,09/10/19 10:04,"305 11th St, Austin, TX 73301" +261167,Bose SoundSport Headphones,1,99.99,09/19/19 18:14,"641 Walnut St, Seattle, WA 98101" +261168,USB-C Charging Cable,1,11.95,09/07/19 12:51,"654 Forest St, Los Angeles, CA 90001" +261169,Wired Headphones,1,11.99,09/02/19 11:27,"443 Park St, New York City, NY 10001" +261170,34in Ultrawide Monitor,1,379.99,09/30/19 18:40,"794 Lincoln St, San Francisco, CA 94016" +261171,Wired Headphones,1,11.99,09/26/19 19:45,"120 Wilson St, Portland, OR 97035" +261172,Google Phone,1,600,09/12/19 20:12,"632 8th St, Dallas, TX 75001" +261173,USB-C Charging Cable,1,11.95,09/29/19 17:21,"525 South St, New York City, NY 10001" +261174,USB-C Charging Cable,1,11.95,09/17/19 12:40,"263 1st St, Portland, OR 97035" +261175,Bose SoundSport Headphones,1,99.99,09/14/19 14:38,"376 North St, Dallas, TX 75001" +261176,Flatscreen TV,2,300,09/27/19 16:30,"101 Johnson St, San Francisco, CA 94016" +261177,20in Monitor,1,109.99,09/19/19 00:50,"489 13th St, Boston, MA 02215" +261178,AAA Batteries (4-pack),1,2.99,09/20/19 01:22,"402 West St, Atlanta, GA 30301" +261179,27in FHD Monitor,1,149.99,09/30/19 18:18,"6 Lincoln St, San Francisco, CA 94016" +261180,USB-C Charging Cable,1,11.95,09/24/19 20:04,"876 Walnut St, San Francisco, CA 94016" +261181,Macbook Pro Laptop,1,1700,09/19/19 19:09,"978 Chestnut St, Atlanta, GA 30301" +261182,Wired Headphones,1,11.99,09/15/19 19:52,"152 7th St, San Francisco, CA 94016" +261183,Lightning Charging Cable,1,14.95,09/17/19 07:18,"529 North St, Boston, MA 02215" +261184,Lightning Charging Cable,1,14.95,09/10/19 18:54,"546 Pine St, Boston, MA 02215" +261185,AA Batteries (4-pack),1,3.84,09/27/19 21:30,"332 Jefferson St, Seattle, WA 98101" +261186,ThinkPad Laptop,1,999.99,09/08/19 15:31,"142 River St, Los Angeles, CA 90001" +261187,AAA Batteries (4-pack),2,2.99,09/25/19 16:06,"698 Cedar St, Los Angeles, CA 90001" +261188,Lightning Charging Cable,1,14.95,09/16/19 18:10,"119 Cedar St, Los Angeles, CA 90001" +261189,Wired Headphones,1,11.99,09/23/19 14:41,"824 13th St, Dallas, TX 75001" +261190,Vareebadd Phone,1,400,09/29/19 11:05,"249 7th St, Austin, TX 73301" +261191,AAA Batteries (4-pack),1,2.99,09/14/19 10:01,"664 Cherry St, Portland, OR 97035" +261192,Macbook Pro Laptop,1,1700,09/03/19 20:21,"151 Church St, San Francisco, CA 94016" +261193,AAA Batteries (4-pack),1,2.99,09/29/19 22:42,"254 West St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +261194,Apple Airpods Headphones,1,150,09/26/19 15:23,"326 9th St, Los Angeles, CA 90001" +261195,AAA Batteries (4-pack),1,2.99,09/12/19 11:28,"502 Sunset St, New York City, NY 10001" +261196,27in 4K Gaming Monitor,1,389.99,09/15/19 19:05,"969 River St, Portland, OR 97035" +261197,iPhone,1,700,09/16/19 12:11,"190 Lake St, Portland, ME 04101" +261198,AAA Batteries (4-pack),1,2.99,09/20/19 18:51,"841 Dogwood St, San Francisco, CA 94016" +261199,USB-C Charging Cable,2,11.95,09/26/19 11:46,"283 14th St, Dallas, TX 75001" +261200,USB-C Charging Cable,1,11.95,09/04/19 10:09,"22 Main St, New York City, NY 10001" +261201,ThinkPad Laptop,1,999.99,09/17/19 17:33,"920 Lakeview St, Boston, MA 02215" +261202,ThinkPad Laptop,1,999.99,09/05/19 23:42,"548 Chestnut St, Los Angeles, CA 90001" +261203,AA Batteries (4-pack),1,3.84,09/23/19 14:27,"591 1st St, Portland, OR 97035" +261204,Lightning Charging Cable,1,14.95,09/11/19 19:15,"468 North St, San Francisco, CA 94016" +261205,Flatscreen TV,1,300,09/02/19 11:43,"548 Cedar St, San Francisco, CA 94016" +261206,27in 4K Gaming Monitor,1,389.99,09/21/19 22:46,"730 Cherry St, San Francisco, CA 94016" +261207,iPhone,1,700,09/04/19 12:40,"141 Forest St, New York City, NY 10001" +261208,iPhone,1,700,09/23/19 12:07,"622 Cedar St, Dallas, TX 75001" +261208,Lightning Charging Cable,1,14.95,09/23/19 12:07,"622 Cedar St, Dallas, TX 75001" +261209,USB-C Charging Cable,2,11.95,09/01/19 11:25,"570 Park St, Dallas, TX 75001" +261210,Wired Headphones,1,11.99,09/19/19 23:05,"28 12th St, Boston, MA 02215" +261211,AA Batteries (4-pack),2,3.84,09/11/19 21:19,"729 Lake St, Atlanta, GA 30301" +261212,USB-C Charging Cable,1,11.95,09/25/19 21:23,"448 Jefferson St, San Francisco, CA 94016" +261213,USB-C Charging Cable,1,11.95,09/03/19 20:31,"697 7th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +261214,USB-C Charging Cable,1,11.95,09/14/19 19:09,"252 Lincoln St, San Francisco, CA 94016" +261215,Lightning Charging Cable,1,14.95,09/24/19 14:58,"690 Hickory St, San Francisco, CA 94016" +261216,27in FHD Monitor,1,149.99,09/03/19 13:23,"159 Pine St, Boston, MA 02215" +261217,USB-C Charging Cable,1,11.95,09/02/19 12:40,"763 Meadow St, Dallas, TX 75001" +261218,Bose SoundSport Headphones,1,99.99,09/06/19 08:58,"380 Madison St, Los Angeles, CA 90001" +261219,Apple Airpods Headphones,1,150,09/19/19 08:50,"962 Dogwood St, San Francisco, CA 94016" +261220,Bose SoundSport Headphones,1,99.99,09/07/19 07:13,"816 Sunset St, San Francisco, CA 94016" +261221,Apple Airpods Headphones,1,150,09/21/19 00:37,"952 Chestnut St, San Francisco, CA 94016" +261222,Apple Airpods Headphones,1,150,09/29/19 14:57,"987 Church St, San Francisco, CA 94016" +261223,AAA Batteries (4-pack),2,2.99,09/12/19 10:04,"749 Dogwood St, Austin, TX 73301" +261224,Apple Airpods Headphones,1,150,09/27/19 20:43,"693 Elm St, San Francisco, CA 94016" +261225,Apple Airpods Headphones,1,150,09/21/19 13:07,"519 Dogwood St, Boston, MA 02215" +261226,34in Ultrawide Monitor,1,379.99,09/08/19 15:50,"482 Jefferson St, Boston, MA 02215" +261227,USB-C Charging Cable,1,11.95,09/01/19 21:24,"12 Sunset St, Seattle, WA 98101" +261228,Flatscreen TV,1,300,09/20/19 10:36,"297 Lake St, Los Angeles, CA 90001" +261229,USB-C Charging Cable,1,11.95,09/29/19 07:58,"779 Dogwood St, Los Angeles, CA 90001" +261230,iPhone,1,700,09/20/19 11:54,"160 Cedar St, New York City, NY 10001" +261231,27in FHD Monitor,1,149.99,09/18/19 08:49,"22 Johnson St, New York City, NY 10001" +261232,ThinkPad Laptop,1,999.99,09/27/19 16:31,"976 Church St, Austin, TX 73301" +261233,Wired Headphones,1,11.99,09/21/19 18:44,"321 Hill St, Seattle, WA 98101" +261234,27in 4K Gaming Monitor,1,389.99,09/15/19 11:27,"652 Church St, San Francisco, CA 94016" +261235,Bose SoundSport Headphones,1,99.99,09/15/19 09:12,"691 1st St, Portland, OR 97035" +261236,Macbook Pro Laptop,1,1700,09/16/19 07:59,"815 Elm St, Portland, OR 97035" +261237,Wired Headphones,1,11.99,09/14/19 18:43,"525 Maple St, Seattle, WA 98101" +261238,AA Batteries (4-pack),1,3.84,09/03/19 14:21,"450 Chestnut St, San Francisco, CA 94016" +261239,Bose SoundSport Headphones,1,99.99,09/13/19 20:35,"459 Hickory St, Seattle, WA 98101" +261240,AA Batteries (4-pack),1,3.84,09/24/19 15:14,"93 Meadow St, Seattle, WA 98101" +261241,Bose SoundSport Headphones,1,99.99,09/10/19 23:16,"123 Washington St, Los Angeles, CA 90001" +261242,Lightning Charging Cable,1,14.95,09/23/19 09:57,"373 Hill St, New York City, NY 10001" +261243,AAA Batteries (4-pack),1,2.99,09/09/19 21:25,"244 Park St, San Francisco, CA 94016" +261244,Lightning Charging Cable,1,14.95,09/02/19 10:04,"357 4th St, Los Angeles, CA 90001" +261245,Bose SoundSport Headphones,2,99.99,09/29/19 12:50,"461 6th St, San Francisco, CA 94016" +261246,Apple Airpods Headphones,1,150,09/02/19 14:59,"107 Washington St, Atlanta, GA 30301" +261247,Lightning Charging Cable,1,14.95,09/08/19 11:26,"690 Pine St, Austin, TX 73301" +261248,Wired Headphones,1,11.99,09/25/19 21:38,"564 Lincoln St, Austin, TX 73301" +261249,27in 4K Gaming Monitor,1,389.99,09/11/19 13:00,"256 10th St, Boston, MA 02215" +261250,Wired Headphones,1,11.99,09/13/19 19:15,"440 Spruce St, Atlanta, GA 30301" +261251,Macbook Pro Laptop,1,1700,09/05/19 16:54,"149 Pine St, New York City, NY 10001" +261252,Google Phone,1,600,09/22/19 07:56,"596 River St, Los Angeles, CA 90001" +261253,Lightning Charging Cable,1,14.95,09/26/19 12:55,"409 Walnut St, Los Angeles, CA 90001" +261254,Bose SoundSport Headphones,1,99.99,09/19/19 12:18,"855 Park St, San Francisco, CA 94016" +261255,20in Monitor,2,109.99,09/15/19 11:17,"609 Jackson St, New York City, NY 10001" +261256,Lightning Charging Cable,1,14.95,09/10/19 08:11,"134 Jefferson St, Portland, OR 97035" +261257,Wired Headphones,1,11.99,09/13/19 13:07,"757 Ridge St, New York City, NY 10001" +261258,Wired Headphones,1,11.99,09/27/19 18:16,"329 13th St, Atlanta, GA 30301" +261259,27in FHD Monitor,1,149.99,09/12/19 08:52,"943 4th St, New York City, NY 10001" +261260,Lightning Charging Cable,1,14.95,09/05/19 08:32,"517 Main St, San Francisco, CA 94016" +261261,Bose SoundSport Headphones,1,99.99,09/01/19 19:32,"424 Cherry St, Austin, TX 73301" +261262,Google Phone,1,600,09/21/19 14:02,"993 Wilson St, Atlanta, GA 30301" +261263,Apple Airpods Headphones,1,150,09/26/19 16:52,"816 8th St, Austin, TX 73301" +261264,Wired Headphones,1,11.99,09/28/19 19:31,"576 2nd St, San Francisco, CA 94016" +261265,Wired Headphones,2,11.99,09/26/19 01:32,"515 Adams St, Seattle, WA 98101" +261266,iPhone,1,700,09/08/19 14:23,"373 South St, Seattle, WA 98101" +261266,Lightning Charging Cable,1,14.95,09/08/19 14:23,"373 South St, Seattle, WA 98101" +261267,Wired Headphones,1,11.99,09/08/19 12:28,"236 Washington St, San Francisco, CA 94016" +261268,AA Batteries (4-pack),1,3.84,09/06/19 20:54,"7 Highland St, Boston, MA 02215" +261269,AAA Batteries (4-pack),1,2.99,09/19/19 09:25,"11 Meadow St, Boston, MA 02215" +261270,AA Batteries (4-pack),1,3.84,09/30/19 16:13,"994 14th St, Boston, MA 02215" +261271,Flatscreen TV,1,300,09/22/19 13:28,"974 North St, Dallas, TX 75001" +261272,Apple Airpods Headphones,1,150,09/16/19 15:39,"857 Adams St, San Francisco, CA 94016" +261273,AAA Batteries (4-pack),1,2.99,09/22/19 20:42,"500 Johnson St, Austin, TX 73301" +261274,AA Batteries (4-pack),1,3.84,09/02/19 11:59,"329 Willow St, San Francisco, CA 94016" +261275,Apple Airpods Headphones,1,150,09/20/19 11:54,"761 8th St, Los Angeles, CA 90001" +261276,AA Batteries (4-pack),2,3.84,09/24/19 17:58,"999 8th St, Los Angeles, CA 90001" +261277,Lightning Charging Cable,1,14.95,09/22/19 12:11,"524 Cedar St, Dallas, TX 75001" +261278,AA Batteries (4-pack),1,3.84,09/29/19 16:17,"240 Ridge St, Portland, OR 97035" +261279,Lightning Charging Cable,1,14.95,09/28/19 12:47,"713 Jefferson St, Los Angeles, CA 90001" +261279,Wired Headphones,1,11.99,09/28/19 12:47,"713 Jefferson St, Los Angeles, CA 90001" +261280,Bose SoundSport Headphones,1,99.99,09/07/19 19:29,"422 Wilson St, Seattle, WA 98101" +261281,AA Batteries (4-pack),2,3.84,09/11/19 17:14,"757 Church St, Atlanta, GA 30301" +261282,AAA Batteries (4-pack),1,2.99,09/24/19 05:19,"52 Highland St, Los Angeles, CA 90001" +261283,Lightning Charging Cable,1,14.95,09/28/19 10:36,"425 Madison St, Boston, MA 02215" +261284,AA Batteries (4-pack),2,3.84,09/20/19 19:36,"771 Church St, Los Angeles, CA 90001" +261285,iPhone,1,700,09/24/19 18:44,"940 10th St, Atlanta, GA 30301" +261286,Apple Airpods Headphones,1,150,09/19/19 15:44,"638 Washington St, New York City, NY 10001" +261287,AA Batteries (4-pack),2,3.84,09/16/19 01:01,"815 North St, New York City, NY 10001" +261288,USB-C Charging Cable,1,11.95,09/25/19 11:53,"667 Sunset St, Los Angeles, CA 90001" +261289,Macbook Pro Laptop,1,1700,09/18/19 16:55,"709 Hickory St, Los Angeles, CA 90001" +261290,USB-C Charging Cable,1,11.95,09/23/19 22:54,"157 Walnut St, Boston, MA 02215" +261291,Bose SoundSport Headphones,1,99.99,09/28/19 05:41,"464 Lakeview St, Los Angeles, CA 90001" +261292,Macbook Pro Laptop,1,1700,09/26/19 09:53,"40 Madison St, San Francisco, CA 94016" +261293,AA Batteries (4-pack),1,3.84,09/23/19 12:33,"106 River St, Dallas, TX 75001" +261294,Apple Airpods Headphones,1,150,09/26/19 15:29,"661 Sunset St, San Francisco, CA 94016" +261295,AAA Batteries (4-pack),1,2.99,09/27/19 08:50,"196 Spruce St, Austin, TX 73301" +261296,Bose SoundSport Headphones,1,99.99,09/05/19 12:02,"820 Hill St, San Francisco, CA 94016" +261297,Vareebadd Phone,1,400,09/10/19 19:27,"664 5th St, Los Angeles, CA 90001" +261298,USB-C Charging Cable,1,11.95,09/19/19 10:24,"363 4th St, Austin, TX 73301" +261299,LG Washing Machine,1,600.0,09/05/19 10:01,"508 Sunset St, Boston, MA 02215" +261300,Wired Headphones,1,11.99,09/13/19 17:01,"252 4th St, Los Angeles, CA 90001" +261301,Wired Headphones,1,11.99,09/07/19 20:23,"449 Ridge St, Boston, MA 02215" +261302,AA Batteries (4-pack),2,3.84,09/28/19 11:49,"486 Madison St, New York City, NY 10001" +261303,27in 4K Gaming Monitor,1,389.99,09/12/19 17:36,"304 Sunset St, New York City, NY 10001" +261304,Apple Airpods Headphones,1,150,09/24/19 16:55,"206 South St, New York City, NY 10001" +261305,iPhone,1,700,09/21/19 17:03,"491 Chestnut St, San Francisco, CA 94016" +261306,iPhone,1,700,09/21/19 15:03,"62 Elm St, New York City, NY 10001" +261307,AAA Batteries (4-pack),1,2.99,09/13/19 11:41,"773 Lakeview St, Los Angeles, CA 90001" +261308,Google Phone,1,600,09/21/19 16:16,"733 1st St, Austin, TX 73301" +261309,USB-C Charging Cable,1,11.95,09/18/19 11:07,"939 Park St, Atlanta, GA 30301" +261310,AA Batteries (4-pack),2,3.84,09/03/19 21:30,"706 2nd St, New York City, NY 10001" +261311,34in Ultrawide Monitor,1,379.99,09/07/19 03:11,"964 Spruce St, San Francisco, CA 94016" +261312,Bose SoundSport Headphones,1,99.99,09/25/19 19:16,"371 Meadow St, Boston, MA 02215" +261313,Bose SoundSport Headphones,1,99.99,09/16/19 15:30,"814 Meadow St, Los Angeles, CA 90001" +261314,AAA Batteries (4-pack),2,2.99,09/30/19 10:47,"418 West St, San Francisco, CA 94016" +261315,20in Monitor,1,109.99,09/16/19 18:01,"630 Pine St, Portland, ME 04101" +261316,AA Batteries (4-pack),1,3.84,09/24/19 14:30,"87 10th St, Boston, MA 02215" +261317,Wired Headphones,1,11.99,09/17/19 19:21,"695 South St, Boston, MA 02215" +261318,Bose SoundSport Headphones,1,99.99,09/01/19 20:50,"587 Church St, San Francisco, CA 94016" +261319,Lightning Charging Cable,1,14.95,09/17/19 21:09,"286 West St, Austin, TX 73301" +261320,iPhone,1,700,09/19/19 18:46,"730 West St, Atlanta, GA 30301" +261321,Apple Airpods Headphones,1,150,09/23/19 10:29,"349 Main St, New York City, NY 10001" +261322,AAA Batteries (4-pack),1,2.99,09/21/19 16:24,"42 Meadow St, San Francisco, CA 94016" +261323,Wired Headphones,1,11.99,09/02/19 11:19,"553 11th St, Boston, MA 02215" +261324,27in 4K Gaming Monitor,1,389.99,09/14/19 14:00,"553 Jackson St, Seattle, WA 98101" +261325,USB-C Charging Cable,1,11.95,09/18/19 11:50,"838 Center St, Dallas, TX 75001" +261326,Wired Headphones,1,11.99,09/22/19 12:46,"145 Wilson St, Dallas, TX 75001" +261327,AA Batteries (4-pack),3,3.84,09/14/19 09:43,"611 8th St, Los Angeles, CA 90001" +261328,Google Phone,1,600,09/19/19 14:06,"240 Johnson St, San Francisco, CA 94016" +261328,Wired Headphones,1,11.99,09/19/19 14:06,"240 Johnson St, San Francisco, CA 94016" +261329,Lightning Charging Cable,1,14.95,09/15/19 06:52,"617 Washington St, San Francisco, CA 94016" +261330,AA Batteries (4-pack),2,3.84,09/17/19 11:01,"941 Johnson St, Los Angeles, CA 90001" +261331,USB-C Charging Cable,1,11.95,09/17/19 08:52,"716 Main St, San Francisco, CA 94016" +261332,USB-C Charging Cable,1,11.95,09/23/19 19:42,"295 10th St, Boston, MA 02215" +261333,27in 4K Gaming Monitor,1,389.99,09/25/19 15:21,"747 Church St, Los Angeles, CA 90001" +261334,AA Batteries (4-pack),1,3.84,09/29/19 13:37,"464 Willow St, Atlanta, GA 30301" +261335,AA Batteries (4-pack),2,3.84,09/17/19 15:30,"785 Chestnut St, Atlanta, GA 30301" +261336,AAA Batteries (4-pack),3,2.99,09/23/19 07:04,"178 8th St, San Francisco, CA 94016" +261337,Apple Airpods Headphones,1,150,09/13/19 09:52,"894 Meadow St, Dallas, TX 75001" +261338,34in Ultrawide Monitor,1,379.99,09/20/19 18:19,"140 14th St, Portland, OR 97035" +261339,Google Phone,1,600,09/11/19 19:46,"986 10th St, Boston, MA 02215" +261340,Lightning Charging Cable,1,14.95,09/20/19 20:27,"37 Church St, Atlanta, GA 30301" +261341,AA Batteries (4-pack),1,3.84,09/19/19 19:38,"104 Ridge St, Atlanta, GA 30301" +261342,Wired Headphones,1,11.99,09/20/19 08:24,"846 Jackson St, San Francisco, CA 94016" +261343,AAA Batteries (4-pack),1,2.99,09/30/19 11:24,"102 Jefferson St, Atlanta, GA 30301" +261344,Macbook Pro Laptop,1,1700,09/15/19 12:48,"378 6th St, Seattle, WA 98101" +261345,Macbook Pro Laptop,1,1700,09/23/19 20:37,"368 Park St, New York City, NY 10001" +261346,Lightning Charging Cable,1,14.95,09/09/19 21:32,"553 River St, San Francisco, CA 94016" +261347,AA Batteries (4-pack),1,3.84,09/18/19 17:40,"649 4th St, San Francisco, CA 94016" +261348,Bose SoundSport Headphones,1,99.99,09/02/19 10:42,"417 Adams St, Austin, TX 73301" +261349,Wired Headphones,1,11.99,09/21/19 16:22,"430 5th St, San Francisco, CA 94016" +261350,27in 4K Gaming Monitor,1,389.99,09/05/19 22:24,"698 Washington St, Atlanta, GA 30301" +261351,Google Phone,1,600,09/03/19 23:03,"394 Washington St, Boston, MA 02215" +261351,USB-C Charging Cable,1,11.95,09/03/19 23:03,"394 Washington St, Boston, MA 02215" +261352,34in Ultrawide Monitor,1,379.99,09/29/19 14:06,"371 Pine St, Austin, TX 73301" +261353,AA Batteries (4-pack),1,3.84,09/10/19 12:49,"519 Jackson St, Boston, MA 02215" +261354,27in FHD Monitor,1,149.99,09/23/19 23:29,"823 Willow St, Seattle, WA 98101" +261355,Lightning Charging Cable,1,14.95,09/18/19 07:42,"565 Spruce St, Dallas, TX 75001" +261356,USB-C Charging Cable,1,11.95,09/01/19 05:31,"98 Park St, San Francisco, CA 94016" +261357,AA Batteries (4-pack),1,3.84,09/04/19 19:39,"602 Park St, Portland, OR 97035" +261358,27in FHD Monitor,1,149.99,09/28/19 15:23,"343 8th St, Dallas, TX 75001" +261359,34in Ultrawide Monitor,1,379.99,09/02/19 17:04,"34 Willow St, San Francisco, CA 94016" +261359,Wired Headphones,1,11.99,09/02/19 17:04,"34 Willow St, San Francisco, CA 94016" +261360,Apple Airpods Headphones,1,150,09/02/19 21:12,"64 Adams St, Los Angeles, CA 90001" +261361,27in 4K Gaming Monitor,1,389.99,09/06/19 11:04,"508 Hill St, San Francisco, CA 94016" +261362,AA Batteries (4-pack),1,3.84,09/24/19 18:02,"280 1st St, Portland, OR 97035" +261363,iPhone,1,700,09/05/19 21:21,"436 Sunset St, San Francisco, CA 94016" +261364,Macbook Pro Laptop,1,1700,09/17/19 11:24,"166 6th St, New York City, NY 10001" +261365,Apple Airpods Headphones,1,150,09/25/19 13:27,"622 Madison St, New York City, NY 10001" +261366,Lightning Charging Cable,1,14.95,09/09/19 20:12,"57 River St, San Francisco, CA 94016" +261367,AA Batteries (4-pack),1,3.84,09/14/19 15:38,"684 Forest St, San Francisco, CA 94016" +261368,AAA Batteries (4-pack),1,2.99,09/08/19 19:38,"674 8th St, New York City, NY 10001" +261368,20in Monitor,1,109.99,09/08/19 19:38,"674 8th St, New York City, NY 10001" +261369,Wired Headphones,1,11.99,09/03/19 14:07,"703 Willow St, Boston, MA 02215" +261370,AA Batteries (4-pack),1,3.84,09/11/19 12:20,"770 Walnut St, Dallas, TX 75001" +261371,Macbook Pro Laptop,1,1700,09/30/19 20:08,"443 North St, Portland, OR 97035" +261372,Google Phone,1,600,09/07/19 20:57,"788 Highland St, Los Angeles, CA 90001" +261373,Bose SoundSport Headphones,1,99.99,09/24/19 21:20,"284 10th St, Atlanta, GA 30301" +261374,Lightning Charging Cable,1,14.95,09/19/19 11:28,"243 Meadow St, Seattle, WA 98101" +261375,USB-C Charging Cable,1,11.95,09/23/19 15:43,"178 Johnson St, New York City, NY 10001" +261376,Lightning Charging Cable,1,14.95,09/01/19 21:01,"387 7th St, New York City, NY 10001" +261377,Lightning Charging Cable,1,14.95,09/09/19 18:00,"156 Center St, San Francisco, CA 94016" +261378,AAA Batteries (4-pack),3,2.99,09/02/19 19:03,"530 1st St, Los Angeles, CA 90001" +261379,Macbook Pro Laptop,1,1700,09/06/19 11:28,"192 Adams St, Atlanta, GA 30301" +261380,20in Monitor,1,109.99,09/27/19 11:10,"299 8th St, Atlanta, GA 30301" +261381,Wired Headphones,1,11.99,09/26/19 11:14,"186 7th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +261382,Apple Airpods Headphones,1,150,09/21/19 16:27,"157 Hickory St, Boston, MA 02215" +261383,USB-C Charging Cable,1,11.95,09/14/19 17:58,"383 Wilson St, San Francisco, CA 94016" +261384,USB-C Charging Cable,1,11.95,09/15/19 16:26,"746 Park St, New York City, NY 10001" +261385,AA Batteries (4-pack),1,3.84,09/09/19 16:17,"482 Hickory St, New York City, NY 10001" +261386,ThinkPad Laptop,1,999.99,09/21/19 06:18,"445 Jackson St, New York City, NY 10001" +261387,Macbook Pro Laptop,1,1700,09/30/19 12:23,"27 13th St, San Francisco, CA 94016" +261388,Apple Airpods Headphones,1,150,09/07/19 20:32,"511 Pine St, San Francisco, CA 94016" +261389,Apple Airpods Headphones,1,150,09/18/19 13:19,"164 Lakeview St, Seattle, WA 98101" +261390,20in Monitor,1,109.99,09/29/19 00:32,"114 Dogwood St, Seattle, WA 98101" +261391,Apple Airpods Headphones,1,150,09/04/19 09:52,"988 Center St, Austin, TX 73301" +261392,20in Monitor,1,109.99,09/01/19 14:27,"420 7th St, San Francisco, CA 94016" +261393,27in 4K Gaming Monitor,1,389.99,09/25/19 13:07,"678 Jefferson St, Los Angeles, CA 90001" +261394,USB-C Charging Cable,1,11.95,09/15/19 20:05,"837 7th St, Los Angeles, CA 90001" +261395,AA Batteries (4-pack),1,3.84,09/25/19 11:42,"177 Highland St, Atlanta, GA 30301" +261396,27in 4K Gaming Monitor,1,389.99,09/23/19 09:30,"694 Church St, New York City, NY 10001" +261397,Wired Headphones,1,11.99,09/07/19 14:33,"426 Willow St, New York City, NY 10001" +261398,USB-C Charging Cable,1,11.95,09/22/19 09:15,"450 Johnson St, San Francisco, CA 94016" +261399,USB-C Charging Cable,1,11.95,09/04/19 12:20,"928 Highland St, Atlanta, GA 30301" +261400,Apple Airpods Headphones,1,150,09/21/19 11:57,"127 Spruce St, Portland, ME 04101" +261401,Bose SoundSport Headphones,1,99.99,09/26/19 12:41,"372 Walnut St, New York City, NY 10001" +261402,27in 4K Gaming Monitor,1,389.99,09/22/19 23:29,"619 7th St, Boston, MA 02215" +261403,Apple Airpods Headphones,1,150,09/06/19 14:25,"884 Walnut St, San Francisco, CA 94016" +261404,LG Washing Machine,1,600.0,09/30/19 19:07,"187 5th St, San Francisco, CA 94016" +261405,Lightning Charging Cable,1,14.95,09/20/19 15:13,"460 North St, Boston, MA 02215" +261406,Bose SoundSport Headphones,1,99.99,09/08/19 19:49,"243 Adams St, Dallas, TX 75001" +261407,USB-C Charging Cable,1,11.95,09/11/19 16:05,"946 4th St, Seattle, WA 98101" +261408,Lightning Charging Cable,1,14.95,09/13/19 14:26,"69 Center St, Seattle, WA 98101" +261409,AAA Batteries (4-pack),4,2.99,09/13/19 16:37,"3 11th St, Portland, ME 04101" +261410,Bose SoundSport Headphones,1,99.99,09/27/19 22:24,"293 Madison St, Portland, OR 97035" +261411,27in FHD Monitor,1,149.99,09/05/19 14:12,"650 Chestnut St, Austin, TX 73301" +261412,AAA Batteries (4-pack),1,2.99,09/03/19 12:48,"234 Church St, Atlanta, GA 30301" +261413,AAA Batteries (4-pack),1,2.99,09/01/19 11:08,"632 Madison St, Portland, ME 04101" +261414,LG Dryer,1,600.0,09/19/19 16:24,"902 Lakeview St, Austin, TX 73301" +261415,AA Batteries (4-pack),1,3.84,09/23/19 09:36,"628 7th St, San Francisco, CA 94016" +261416,Lightning Charging Cable,1,14.95,09/10/19 20:28,"160 12th St, Seattle, WA 98101" +261417,Lightning Charging Cable,1,14.95,09/22/19 20:39,"397 West St, Los Angeles, CA 90001" +261418,Wired Headphones,1,11.99,09/13/19 15:25,"101 Meadow St, Boston, MA 02215" +261419,AA Batteries (4-pack),1,3.84,09/03/19 16:31,"804 North St, Boston, MA 02215" +261420,Lightning Charging Cable,1,14.95,09/19/19 17:08,"469 10th St, Atlanta, GA 30301" +261421,USB-C Charging Cable,1,11.95,09/15/19 16:27,"475 Lake St, New York City, NY 10001" +261422,27in FHD Monitor,1,149.99,09/25/19 15:46,"185 9th St, San Francisco, CA 94016" +261423,AAA Batteries (4-pack),2,2.99,09/07/19 10:42,"565 Forest St, Austin, TX 73301" +261424,27in FHD Monitor,1,149.99,09/27/19 12:23,"205 Adams St, San Francisco, CA 94016" +261425,AA Batteries (4-pack),2,3.84,09/02/19 17:07,"890 Center St, Atlanta, GA 30301" +261426,iPhone,1,700,09/10/19 19:50,"168 Jackson St, Seattle, WA 98101" +261427,Wired Headphones,1,11.99,09/14/19 11:29,"327 Ridge St, San Francisco, CA 94016" +261428,20in Monitor,1,109.99,09/29/19 07:10,"885 Lakeview St, New York City, NY 10001" +261429,Flatscreen TV,1,300,09/09/19 17:57,"430 Jackson St, New York City, NY 10001" +261430,AA Batteries (4-pack),1,3.84,09/11/19 13:01,"701 10th St, San Francisco, CA 94016" +261431,Bose SoundSport Headphones,1,99.99,09/10/19 14:30,"968 Johnson St, Boston, MA 02215" +261432,Apple Airpods Headphones,1,150,09/09/19 16:44,"402 Church St, Portland, OR 97035" +261433,Bose SoundSport Headphones,1,99.99,09/08/19 13:05,"844 Wilson St, Dallas, TX 75001" +261434,AA Batteries (4-pack),1,3.84,09/02/19 19:29,"126 Cherry St, San Francisco, CA 94016" +261435,34in Ultrawide Monitor,1,379.99,09/21/19 22:34,"810 Highland St, Austin, TX 73301" +261436,Apple Airpods Headphones,1,150,10/01/19 01:25,"652 Jackson St, Boston, MA 02215" +261437,AAA Batteries (4-pack),3,2.99,09/23/19 12:43,"589 Hill St, New York City, NY 10001" +261438,Bose SoundSport Headphones,1,99.99,09/12/19 18:52,"999 Elm St, Portland, OR 97035" +261438,Lightning Charging Cable,2,14.95,09/12/19 18:52,"999 Elm St, Portland, OR 97035" +261439,27in 4K Gaming Monitor,1,389.99,09/17/19 11:58,"889 Sunset St, Los Angeles, CA 90001" +261440,AAA Batteries (4-pack),2,2.99,09/13/19 19:11,"765 9th St, Dallas, TX 75001" +261441,iPhone,1,700,09/30/19 19:15,"146 Spruce St, New York City, NY 10001" +261442,Macbook Pro Laptop,1,1700,09/05/19 20:40,"290 Madison St, San Francisco, CA 94016" +261443,AAA Batteries (4-pack),1,2.99,09/12/19 17:40,"567 12th St, Atlanta, GA 30301" +261444,Apple Airpods Headphones,1,150,09/22/19 09:27,"608 Ridge St, New York City, NY 10001" +261445,USB-C Charging Cable,2,11.95,09/14/19 12:59,"273 Dogwood St, New York City, NY 10001" +261446,Google Phone,1,600,09/10/19 23:32,"154 Cherry St, Seattle, WA 98101" +261446,Wired Headphones,1,11.99,09/10/19 23:32,"154 Cherry St, Seattle, WA 98101" +261447,AAA Batteries (4-pack),4,2.99,09/18/19 16:38,"945 Dogwood St, Seattle, WA 98101" +261448,USB-C Charging Cable,1,11.95,09/29/19 10:59,"1 Cherry St, Atlanta, GA 30301" +261449,ThinkPad Laptop,1,999.99,09/22/19 20:35,"162 Park St, Atlanta, GA 30301" +261450,LG Dryer,1,600.0,09/13/19 11:15,"825 5th St, San Francisco, CA 94016" +261451,iPhone,1,700,09/08/19 23:44,"655 Meadow St, Los Angeles, CA 90001" +261451,Lightning Charging Cable,1,14.95,09/08/19 23:44,"655 Meadow St, Los Angeles, CA 90001" +261452,Lightning Charging Cable,1,14.95,09/26/19 08:44,"678 5th St, San Francisco, CA 94016" +261453,ThinkPad Laptop,1,999.99,09/27/19 11:54,"256 13th St, Seattle, WA 98101" +261454,AA Batteries (4-pack),1,3.84,09/11/19 15:10,"726 13th St, Dallas, TX 75001" +261455,LG Dryer,1,600.0,09/15/19 12:37,"904 Hickory St, Los Angeles, CA 90001" +261456,AA Batteries (4-pack),2,3.84,09/06/19 22:58,"605 7th St, Los Angeles, CA 90001" +261457,27in 4K Gaming Monitor,1,389.99,09/06/19 09:18,"986 14th St, Seattle, WA 98101" +261458,Lightning Charging Cable,1,14.95,09/06/19 23:25,"310 9th St, Portland, ME 04101" +261459,Lightning Charging Cable,1,14.95,09/26/19 16:38,"710 Jackson St, Los Angeles, CA 90001" +261460,AA Batteries (4-pack),4,3.84,09/14/19 09:01,"962 Lake St, Boston, MA 02215" +261461,Lightning Charging Cable,1,14.95,09/03/19 19:49,"734 Lakeview St, New York City, NY 10001" +261462,27in FHD Monitor,1,149.99,09/04/19 00:20,"870 Chestnut St, San Francisco, CA 94016" +261463,20in Monitor,1,109.99,09/13/19 22:29,"867 Wilson St, Austin, TX 73301" +261464,Macbook Pro Laptop,1,1700,09/25/19 15:44,"915 8th St, Boston, MA 02215" +261465,USB-C Charging Cable,1,11.95,09/18/19 17:51,"43 11th St, Atlanta, GA 30301" +261466,Wired Headphones,1,11.99,09/20/19 04:20,"206 Spruce St, San Francisco, CA 94016" +261467,20in Monitor,1,109.99,09/04/19 10:02,"882 5th St, Boston, MA 02215" +261468,27in 4K Gaming Monitor,1,389.99,09/14/19 15:53,"519 Elm St, Portland, OR 97035" +261469,27in 4K Gaming Monitor,1,389.99,09/18/19 16:53,"601 Park St, Los Angeles, CA 90001" +261470,Wired Headphones,2,11.99,09/30/19 20:36,"269 Cedar St, Boston, MA 02215" +261471,Macbook Pro Laptop,1,1700,09/04/19 22:09,"807 9th St, Los Angeles, CA 90001" +261472,27in 4K Gaming Monitor,1,389.99,09/14/19 12:29,"887 Chestnut St, New York City, NY 10001" +261473,34in Ultrawide Monitor,1,379.99,09/11/19 21:51,"260 Ridge St, San Francisco, CA 94016" +261474,Wired Headphones,1,11.99,09/30/19 16:19,"288 Hickory St, New York City, NY 10001" +261475,iPhone,1,700,09/18/19 16:57,"123 2nd St, Dallas, TX 75001" +261476,34in Ultrawide Monitor,1,379.99,09/24/19 11:04,"252 West St, Los Angeles, CA 90001" +261477,Wired Headphones,1,11.99,09/21/19 13:42,"918 River St, Seattle, WA 98101" +261478,20in Monitor,2,109.99,09/08/19 14:06,"304 Elm St, Los Angeles, CA 90001" +261479,Lightning Charging Cable,1,14.95,09/30/19 00:11,"700 Jackson St, San Francisco, CA 94016" +261480,Flatscreen TV,1,300,09/10/19 08:26,"466 12th St, Portland, OR 97035" +261481,20in Monitor,1,109.99,09/22/19 23:25,"979 8th St, Los Angeles, CA 90001" +261482,iPhone,1,700,09/25/19 16:59,"649 Center St, Seattle, WA 98101" +261482,Apple Airpods Headphones,1,150,09/25/19 16:59,"649 Center St, Seattle, WA 98101" +261483,Wired Headphones,1,11.99,09/05/19 11:23,"127 Forest St, New York City, NY 10001" +261484,27in FHD Monitor,1,149.99,09/03/19 20:52,"483 Highland St, New York City, NY 10001" +261485,AAA Batteries (4-pack),1,2.99,09/23/19 12:39,"476 Cedar St, Austin, TX 73301" +261486,AAA Batteries (4-pack),1,2.99,09/02/19 12:00,"877 Jackson St, Boston, MA 02215" +261487,Wired Headphones,1,11.99,09/29/19 17:50,"391 2nd St, San Francisco, CA 94016" +261488,Wired Headphones,1,11.99,09/07/19 12:59,"192 Highland St, Austin, TX 73301" +261489,Lightning Charging Cable,1,14.95,09/02/19 05:09,"743 Adams St, Dallas, TX 75001" +261490,USB-C Charging Cable,1,11.95,09/28/19 14:27,"139 14th St, Portland, ME 04101" +261491,34in Ultrawide Monitor,1,379.99,09/21/19 00:04,"309 6th St, New York City, NY 10001" +261492,USB-C Charging Cable,1,11.95,09/17/19 07:41,"748 9th St, New York City, NY 10001" +261493,34in Ultrawide Monitor,1,379.99,09/18/19 20:18,"76 8th St, Seattle, WA 98101" +261494,AAA Batteries (4-pack),2,2.99,09/08/19 18:24,"438 River St, Portland, OR 97035" +261495,Lightning Charging Cable,2,14.95,09/28/19 19:19,"412 Park St, Boston, MA 02215" +261496,27in 4K Gaming Monitor,1,389.99,09/26/19 21:13,"325 Jefferson St, San Francisco, CA 94016" +261497,Google Phone,1,600,09/23/19 01:09,"568 Wilson St, San Francisco, CA 94016" +261498,USB-C Charging Cable,1,11.95,09/01/19 22:24,"765 Hickory St, Seattle, WA 98101" +261499,Apple Airpods Headphones,1,150,09/14/19 21:43,"339 Washington St, Austin, TX 73301" +261500,Google Phone,1,600,09/10/19 08:50,"57 12th St, Boston, MA 02215" +261501,USB-C Charging Cable,1,11.95,09/22/19 07:53,"781 Highland St, Boston, MA 02215" +261502,iPhone,1,700,09/22/19 21:16,"821 5th St, San Francisco, CA 94016" +261503,ThinkPad Laptop,1,999.99,09/11/19 12:05,"222 Spruce St, New York City, NY 10001" +261504,AA Batteries (4-pack),1,3.84,09/28/19 11:33,"801 Walnut St, Los Angeles, CA 90001" +261505,Lightning Charging Cable,1,14.95,09/21/19 08:47,"867 Lake St, Los Angeles, CA 90001" +261506,USB-C Charging Cable,1,11.95,09/07/19 22:47,"673 Jackson St, Dallas, TX 75001" +261507,27in FHD Monitor,1,149.99,09/19/19 18:56,"284 11th St, New York City, NY 10001" +261508,AAA Batteries (4-pack),1,2.99,09/30/19 22:57,"621 Adams St, Dallas, TX 75001" +261509,AAA Batteries (4-pack),1,2.99,09/29/19 10:55,"93 Park St, San Francisco, CA 94016" +261510,iPhone,1,700,09/29/19 16:35,"830 Meadow St, Dallas, TX 75001" +261511,Apple Airpods Headphones,1,150,09/03/19 14:13,"262 Dogwood St, San Francisco, CA 94016" +261512,Google Phone,1,600,09/18/19 13:03,"319 Willow St, Portland, OR 97035" +261513,27in FHD Monitor,1,149.99,09/04/19 23:03,"704 River St, San Francisco, CA 94016" +261514,Wired Headphones,1,11.99,09/07/19 21:42,"107 Cedar St, Atlanta, GA 30301" +261515,AAA Batteries (4-pack),4,2.99,09/06/19 22:41,"145 Jackson St, San Francisco, CA 94016" +261516,USB-C Charging Cable,1,11.95,09/07/19 21:18,"228 Adams St, Dallas, TX 75001" +261517,USB-C Charging Cable,1,11.95,09/25/19 11:04,"479 Meadow St, Dallas, TX 75001" +261518,USB-C Charging Cable,1,11.95,09/26/19 12:12,"426 Maple St, Seattle, WA 98101" +261519,AA Batteries (4-pack),3,3.84,09/04/19 13:21,"919 Hickory St, Atlanta, GA 30301" +261520,LG Dryer,1,600.0,09/27/19 23:49,"216 8th St, Los Angeles, CA 90001" +261521,USB-C Charging Cable,1,11.95,09/04/19 18:44,"252 14th St, Boston, MA 02215" +261522,Flatscreen TV,1,300,09/28/19 21:12,"186 4th St, San Francisco, CA 94016" +261523,Apple Airpods Headphones,1,150,09/26/19 18:04,"386 1st St, Portland, OR 97035" +261524,Apple Airpods Headphones,1,150,09/07/19 21:18,"52 Walnut St, Boston, MA 02215" +261525,27in FHD Monitor,1,149.99,09/09/19 12:18,"568 Wilson St, San Francisco, CA 94016" +261526,Lightning Charging Cable,1,14.95,09/14/19 12:14,"755 Cedar St, New York City, NY 10001" +261527,AA Batteries (4-pack),1,3.84,09/14/19 11:59,"124 5th St, San Francisco, CA 94016" +261528,Macbook Pro Laptop,1,1700,09/04/19 21:40,"911 Lakeview St, Dallas, TX 75001" +261529,Lightning Charging Cable,1,14.95,09/25/19 16:40,"602 Johnson St, Los Angeles, CA 90001" +261530,Apple Airpods Headphones,1,150,09/13/19 13:35,"61 Washington St, San Francisco, CA 94016" +261531,USB-C Charging Cable,1,11.95,09/06/19 11:47,"491 Walnut St, Atlanta, GA 30301" +261532,Apple Airpods Headphones,1,150,09/04/19 17:19,"830 Elm St, Portland, OR 97035" +261533,Lightning Charging Cable,1,14.95,09/30/19 19:11,"303 1st St, Seattle, WA 98101" +261534,Apple Airpods Headphones,1,150,09/28/19 20:42,"769 Meadow St, Seattle, WA 98101" +261535,Google Phone,1,600,09/25/19 15:18,"922 Chestnut St, New York City, NY 10001" +261535,AA Batteries (4-pack),1,3.84,09/25/19 15:18,"922 Chestnut St, New York City, NY 10001" +261536,Lightning Charging Cable,1,14.95,09/11/19 20:17,"836 West St, San Francisco, CA 94016" +261536,Google Phone,1,600,09/11/19 20:17,"836 West St, San Francisco, CA 94016" +261537,34in Ultrawide Monitor,1,379.99,09/13/19 22:14,"733 Madison St, Atlanta, GA 30301" +261538,Wired Headphones,1,11.99,09/30/19 10:42,"70 Hickory St, Boston, MA 02215" +261539,Flatscreen TV,1,300,09/09/19 20:43,"997 Maple St, Portland, OR 97035" +261540,Wired Headphones,1,11.99,09/20/19 11:56,"928 10th St, Seattle, WA 98101" +261541,AA Batteries (4-pack),1,3.84,09/19/19 12:43,"431 Sunset St, Atlanta, GA 30301" +261542,AAA Batteries (4-pack),1,2.99,09/10/19 12:20,"623 10th St, Atlanta, GA 30301" +261543,iPhone,1,700,09/27/19 06:52,"980 5th St, New York City, NY 10001" +261544,AA Batteries (4-pack),2,3.84,09/04/19 12:00,"556 Forest St, New York City, NY 10001" +261544,AAA Batteries (4-pack),1,2.99,09/04/19 12:00,"556 Forest St, New York City, NY 10001" +261545,Lightning Charging Cable,1,14.95,09/09/19 23:33,"299 Madison St, San Francisco, CA 94016" +261546,Apple Airpods Headphones,1,150,09/11/19 19:50,"576 Johnson St, Boston, MA 02215" +261547,AA Batteries (4-pack),1,3.84,09/05/19 19:48,"393 Pine St, San Francisco, CA 94016" +261548,AAA Batteries (4-pack),1,2.99,09/17/19 16:07,"338 Jefferson St, Austin, TX 73301" +261549,Apple Airpods Headphones,1,150,09/01/19 06:58,"112 10th St, Los Angeles, CA 90001" +261550,Flatscreen TV,1,300,09/24/19 11:54,"338 West St, San Francisco, CA 94016" +261551,20in Monitor,1,109.99,09/26/19 20:45,"340 Pine St, Los Angeles, CA 90001" +261552,iPhone,1,700,09/22/19 15:37,"743 Forest St, Dallas, TX 75001" +261553,Apple Airpods Headphones,1,150,09/07/19 18:34,"482 Spruce St, San Francisco, CA 94016" +261554,AA Batteries (4-pack),1,3.84,09/25/19 06:27,"133 Dogwood St, Seattle, WA 98101" +261555,AA Batteries (4-pack),1,3.84,09/06/19 19:17,"438 West St, Dallas, TX 75001" +261556,Wired Headphones,1,11.99,09/08/19 17:29,"976 Chestnut St, New York City, NY 10001" +261557,AA Batteries (4-pack),1,3.84,09/07/19 17:49,"707 Jefferson St, Los Angeles, CA 90001" +261558,AA Batteries (4-pack),3,3.84,09/12/19 17:55,"417 5th St, Boston, MA 02215" +261559,iPhone,1,700,09/12/19 11:18,"443 Lakeview St, New York City, NY 10001" +261559,Lightning Charging Cable,1,14.95,09/12/19 11:18,"443 Lakeview St, New York City, NY 10001" +261560,Vareebadd Phone,1,400,09/09/19 19:49,"808 Madison St, Austin, TX 73301" +261561,Apple Airpods Headphones,1,150,09/13/19 17:53,"995 Washington St, Dallas, TX 75001" +261562,USB-C Charging Cable,1,11.95,09/04/19 14:38,"799 Cherry St, Portland, OR 97035" +261563,Lightning Charging Cable,1,14.95,09/04/19 07:34,"541 Adams St, New York City, NY 10001" +261564,ThinkPad Laptop,1,999.99,09/08/19 14:53,"844 2nd St, New York City, NY 10001" +261565,27in FHD Monitor,1,149.99,09/16/19 20:05,"214 West St, Portland, ME 04101" +261566,Lightning Charging Cable,1,14.95,09/14/19 11:41,"449 4th St, Austin, TX 73301" +261567,USB-C Charging Cable,1,11.95,09/25/19 23:17,"72 Wilson St, Seattle, WA 98101" +261568,Macbook Pro Laptop,1,1700,09/12/19 17:10,"993 Johnson St, Atlanta, GA 30301" +261569,Wired Headphones,1,11.99,09/30/19 19:45,"974 Wilson St, Dallas, TX 75001" +261570,Apple Airpods Headphones,1,150,09/22/19 15:41,"511 River St, Portland, OR 97035" +261571,Wired Headphones,1,11.99,09/13/19 00:05,"376 4th St, Seattle, WA 98101" +261572,Bose SoundSport Headphones,1,99.99,09/16/19 12:22,"8 Lakeview St, Atlanta, GA 30301" +261573,Apple Airpods Headphones,1,150,09/06/19 04:34,"751 Maple St, Atlanta, GA 30301" +261574,34in Ultrawide Monitor,1,379.99,09/17/19 19:48,"129 Meadow St, Dallas, TX 75001" +261575,AA Batteries (4-pack),2,3.84,09/04/19 21:53,"784 9th St, Atlanta, GA 30301" +261576,AAA Batteries (4-pack),3,2.99,09/05/19 00:46,"339 5th St, Los Angeles, CA 90001" +261577,34in Ultrawide Monitor,1,379.99,09/19/19 15:10,"743 Church St, Portland, OR 97035" +261578,AA Batteries (4-pack),4,3.84,09/10/19 21:15,"702 4th St, Los Angeles, CA 90001" +261579,AAA Batteries (4-pack),1,2.99,09/02/19 12:04,"79 Lake St, San Francisco, CA 94016" +261580,AA Batteries (4-pack),1,3.84,09/17/19 10:01,"491 Pine St, Dallas, TX 75001" +261581,AAA Batteries (4-pack),1,2.99,09/02/19 15:04,"673 4th St, Austin, TX 73301" +261582,iPhone,1,700,09/02/19 07:36,"1 Park St, Seattle, WA 98101" +261583,Macbook Pro Laptop,1,1700,09/15/19 20:29,"891 Sunset St, Los Angeles, CA 90001" +261584,AA Batteries (4-pack),1,3.84,09/29/19 17:58,"493 Sunset St, New York City, NY 10001" +261585,Wired Headphones,1,11.99,09/18/19 14:55,"884 Church St, Dallas, TX 75001" +261586,Lightning Charging Cable,1,14.95,09/02/19 10:03,"457 Willow St, Boston, MA 02215" +261587,AAA Batteries (4-pack),3,2.99,09/03/19 18:43,"700 Madison St, Austin, TX 73301" +261588,Apple Airpods Headphones,1,150,09/14/19 14:36,"515 Jackson St, Boston, MA 02215" +261589,Apple Airpods Headphones,1,150,09/16/19 06:28,"56 Hill St, San Francisco, CA 94016" +261590,Bose SoundSport Headphones,1,99.99,09/06/19 10:14,"578 10th St, Portland, OR 97035" +261591,Lightning Charging Cable,1,14.95,09/19/19 14:17,"87 Lakeview St, New York City, NY 10001" +261592,Bose SoundSport Headphones,1,99.99,09/06/19 20:47,"357 Meadow St, Los Angeles, CA 90001" +261593,Wired Headphones,1,11.99,09/16/19 21:25,"241 Park St, Atlanta, GA 30301" +261594,Apple Airpods Headphones,1,150,09/14/19 11:06,"820 Church St, San Francisco, CA 94016" +261595,Lightning Charging Cable,1,14.95,09/12/19 13:19,"336 1st St, Portland, ME 04101" +261596,AA Batteries (4-pack),4,3.84,09/16/19 02:48,"941 Elm St, San Francisco, CA 94016" +261597,AAA Batteries (4-pack),3,2.99,09/05/19 12:35,"31 Forest St, San Francisco, CA 94016" +261598,AAA Batteries (4-pack),3,2.99,09/13/19 14:13,"319 Walnut St, Portland, OR 97035" +261599,Lightning Charging Cable,1,14.95,09/01/19 20:46,"80 9th St, Atlanta, GA 30301" +261600,AA Batteries (4-pack),1,3.84,09/28/19 17:48,"343 Center St, San Francisco, CA 94016" +261601,Lightning Charging Cable,1,14.95,09/29/19 21:15,"220 Dogwood St, New York City, NY 10001" +261602,20in Monitor,1,109.99,09/08/19 19:33,"380 Church St, San Francisco, CA 94016" +261603,iPhone,1,700,09/10/19 10:57,"86 Johnson St, Boston, MA 02215" +261603,Lightning Charging Cable,1,14.95,09/10/19 10:57,"86 Johnson St, Boston, MA 02215" +261604,Lightning Charging Cable,1,14.95,09/25/19 00:48,"892 Adams St, Austin, TX 73301" +261605,Wired Headphones,1,11.99,09/25/19 06:08,"145 River St, Los Angeles, CA 90001" +261606,Lightning Charging Cable,1,14.95,09/26/19 11:29,"606 6th St, Boston, MA 02215" +261606,Lightning Charging Cable,1,14.95,09/26/19 11:29,"606 6th St, Boston, MA 02215" +261607,Bose SoundSport Headphones,1,99.99,09/22/19 10:41,"938 Lincoln St, Austin, TX 73301" +261608,Wired Headphones,1,11.99,09/25/19 18:18,"380 Lincoln St, Los Angeles, CA 90001" +261609,AA Batteries (4-pack),1,3.84,09/12/19 18:48,"33 Pine St, San Francisco, CA 94016" +261610,AAA Batteries (4-pack),1,2.99,09/14/19 21:00,"534 2nd St, Los Angeles, CA 90001" +261611,AAA Batteries (4-pack),1,2.99,09/08/19 19:55,"541 Adams St, Portland, OR 97035" +261612,Wired Headphones,1,11.99,09/14/19 10:10,"488 4th St, San Francisco, CA 94016" +261613,Macbook Pro Laptop,1,1700,09/27/19 20:35,"177 2nd St, San Francisco, CA 94016" +261614,iPhone,1,700,09/06/19 13:22,"110 Cedar St, Los Angeles, CA 90001" +261615,Lightning Charging Cable,2,14.95,09/29/19 23:40,"85 Maple St, San Francisco, CA 94016" +261616,AA Batteries (4-pack),1,3.84,09/25/19 22:44,"249 Chestnut St, New York City, NY 10001" +261617,Bose SoundSport Headphones,1,99.99,09/02/19 15:24,"283 12th St, Dallas, TX 75001" +,,,,, +261618,USB-C Charging Cable,2,11.95,09/27/19 18:15,"313 Hill St, Portland, OR 97035" +261619,AA Batteries (4-pack),3,3.84,09/16/19 15:30,"331 Meadow St, Seattle, WA 98101" +261620,Lightning Charging Cable,1,14.95,09/06/19 22:20,"674 12th St, New York City, NY 10001" +261621,Lightning Charging Cable,1,14.95,09/24/19 19:34,"996 Madison St, San Francisco, CA 94016" +261622,34in Ultrawide Monitor,1,379.99,09/28/19 17:26,"27 Jackson St, Dallas, TX 75001" +261623,AA Batteries (4-pack),2,3.84,09/22/19 11:36,"340 Meadow St, Portland, OR 97035" +261624,USB-C Charging Cable,1,11.95,09/13/19 12:22,"688 14th St, New York City, NY 10001" +261624,AA Batteries (4-pack),1,3.84,09/13/19 12:22,"688 14th St, New York City, NY 10001" +261625,Bose SoundSport Headphones,1,99.99,09/24/19 21:29,"614 Lincoln St, Los Angeles, CA 90001" +261626,AAA Batteries (4-pack),4,2.99,09/08/19 11:42,"866 Willow St, Los Angeles, CA 90001" +261627,AAA Batteries (4-pack),1,2.99,09/13/19 22:45,"514 14th St, New York City, NY 10001" +261628,USB-C Charging Cable,1,11.95,09/09/19 11:05,"356 2nd St, San Francisco, CA 94016" +261629,Bose SoundSport Headphones,1,99.99,09/08/19 21:24,"448 7th St, New York City, NY 10001" +261630,LG Washing Machine,1,600.0,09/05/19 22:02,"429 Spruce St, Portland, OR 97035" +261631,34in Ultrawide Monitor,1,379.99,09/16/19 15:38,"881 12th St, Austin, TX 73301" +261632,Google Phone,1,600,09/30/19 07:53,"564 Center St, Seattle, WA 98101" +261633,27in FHD Monitor,1,149.99,09/30/19 13:04,"181 Park St, New York City, NY 10001" +261634,Google Phone,1,600,09/05/19 21:42,"281 1st St, Los Angeles, CA 90001" +261635,Apple Airpods Headphones,1,150,09/26/19 15:05,"881 Spruce St, San Francisco, CA 94016" +261636,Lightning Charging Cable,1,14.95,09/06/19 08:13,"895 Highland St, Boston, MA 02215" +261637,AA Batteries (4-pack),2,3.84,09/20/19 14:05,"27 River St, Portland, OR 97035" +261638,AAA Batteries (4-pack),1,2.99,09/15/19 18:28,"580 Spruce St, San Francisco, CA 94016" +261639,iPhone,1,700,09/07/19 20:16,"64 Meadow St, San Francisco, CA 94016" +261639,Wired Headphones,1,11.99,09/07/19 20:16,"64 Meadow St, San Francisco, CA 94016" +261640,USB-C Charging Cable,1,11.95,09/23/19 19:03,"770 River St, Dallas, TX 75001" +261641,Vareebadd Phone,1,400,09/17/19 23:50,"377 Center St, Atlanta, GA 30301" +261641,USB-C Charging Cable,1,11.95,09/17/19 23:50,"377 Center St, Atlanta, GA 30301" +261642,Flatscreen TV,1,300,09/06/19 12:59,"311 Park St, San Francisco, CA 94016" +261643,AA Batteries (4-pack),1,3.84,09/20/19 15:07,"971 10th St, Austin, TX 73301" +261644,USB-C Charging Cable,1,11.95,09/17/19 20:10,"958 Sunset St, Dallas, TX 75001" +261645,Apple Airpods Headphones,1,150,09/09/19 22:38,"302 Washington St, Boston, MA 02215" +261646,AAA Batteries (4-pack),1,2.99,09/15/19 10:58,"653 Willow St, Los Angeles, CA 90001" +261647,AAA Batteries (4-pack),1,2.99,09/26/19 20:40,"536 Johnson St, San Francisco, CA 94016" +261648,Vareebadd Phone,1,400,09/28/19 08:44,"829 Washington St, San Francisco, CA 94016" +261648,Wired Headphones,1,11.99,09/28/19 08:44,"829 Washington St, San Francisco, CA 94016" +261649,Lightning Charging Cable,1,14.95,09/27/19 18:27,"574 West St, Portland, OR 97035" +261649,Lightning Charging Cable,1,14.95,09/27/19 18:27,"574 West St, Portland, OR 97035" +261650,Flatscreen TV,1,300,09/14/19 12:02,"864 Sunset St, New York City, NY 10001" +261651,USB-C Charging Cable,1,11.95,09/20/19 20:59,"434 13th St, New York City, NY 10001" +261652,Lightning Charging Cable,1,14.95,09/26/19 09:59,"190 Park St, Boston, MA 02215" +261653,USB-C Charging Cable,1,11.95,09/20/19 14:50,"505 10th St, Austin, TX 73301" +261654,Wired Headphones,1,11.99,09/08/19 14:22,"588 Spruce St, Atlanta, GA 30301" +261655,USB-C Charging Cable,1,11.95,09/23/19 20:54,"319 Pine St, Los Angeles, CA 90001" +261656,AA Batteries (4-pack),1,3.84,09/23/19 22:59,"991 8th St, Dallas, TX 75001" +261657,Lightning Charging Cable,1,14.95,09/23/19 11:39,"999 South St, Austin, TX 73301" +261658,34in Ultrawide Monitor,1,379.99,09/24/19 23:41,"940 14th St, San Francisco, CA 94016" +261659,Google Phone,1,600,09/21/19 22:26,"975 River St, Boston, MA 02215" +261660,USB-C Charging Cable,1,11.95,09/24/19 14:48,"234 13th St, Portland, OR 97035" +261661,ThinkPad Laptop,1,999.99,09/15/19 18:47,"493 Cedar St, New York City, NY 10001" +261662,Wired Headphones,1,11.99,09/12/19 00:08,"663 7th St, Boston, MA 02215" +261663,Lightning Charging Cable,1,14.95,09/03/19 11:19,"348 Chestnut St, New York City, NY 10001" +261664,Macbook Pro Laptop,1,1700,09/11/19 23:23,"751 Dogwood St, San Francisco, CA 94016" +261665,Apple Airpods Headphones,1,150,09/18/19 23:56,"603 Hickory St, San Francisco, CA 94016" +261666,AA Batteries (4-pack),1,3.84,09/15/19 14:17,"937 Jefferson St, Los Angeles, CA 90001" +261667,Wired Headphones,1,11.99,09/21/19 06:48,"647 7th St, Boston, MA 02215" +261668,AAA Batteries (4-pack),1,2.99,09/26/19 20:35,"90 12th St, San Francisco, CA 94016" +261669,USB-C Charging Cable,1,11.95,09/09/19 22:16,"828 Johnson St, New York City, NY 10001" +261670,Bose SoundSport Headphones,1,99.99,09/12/19 10:21,"760 Cherry St, New York City, NY 10001" +261671,27in 4K Gaming Monitor,1,389.99,09/25/19 22:36,"481 Forest St, Portland, OR 97035" +261672,AA Batteries (4-pack),1,3.84,09/10/19 12:10,"393 Lincoln St, New York City, NY 10001" +261673,Google Phone,1,600,09/03/19 08:29,"998 4th St, Boston, MA 02215" +261674,AAA Batteries (4-pack),1,2.99,09/16/19 19:08,"766 Cherry St, Dallas, TX 75001" +261675,AA Batteries (4-pack),2,3.84,09/25/19 07:01,"851 Highland St, San Francisco, CA 94016" +261676,AAA Batteries (4-pack),1,2.99,09/06/19 21:17,"691 Madison St, Los Angeles, CA 90001" +261677,AAA Batteries (4-pack),1,2.99,09/13/19 17:38,"786 Meadow St, San Francisco, CA 94016" +261678,AA Batteries (4-pack),1,3.84,09/30/19 19:10,"518 Church St, Austin, TX 73301" +261679,USB-C Charging Cable,1,11.95,09/03/19 09:28,"826 Spruce St, Los Angeles, CA 90001" +261680,34in Ultrawide Monitor,1,379.99,09/22/19 21:46,"687 Spruce St, Dallas, TX 75001" +261681,AAA Batteries (4-pack),5,2.99,09/03/19 21:46,"969 5th St, San Francisco, CA 94016" +261682,Bose SoundSport Headphones,1,99.99,09/30/19 11:24,"167 Maple St, Dallas, TX 75001" +261683,Lightning Charging Cable,1,14.95,09/02/19 09:32,"182 Cedar St, San Francisco, CA 94016" +261684,USB-C Charging Cable,1,11.95,09/08/19 13:01,"416 12th St, Atlanta, GA 30301" +261685,27in FHD Monitor,1,149.99,09/11/19 17:33,"95 12th St, Seattle, WA 98101" +261686,27in FHD Monitor,1,149.99,09/09/19 12:01,"138 Cherry St, Los Angeles, CA 90001" +261687,iPhone,1,700,09/01/19 12:53,"548 6th St, New York City, NY 10001" +261688,Lightning Charging Cable,1,14.95,09/28/19 09:33,"162 Main St, Los Angeles, CA 90001" +261688,27in FHD Monitor,1,149.99,09/28/19 09:33,"162 Main St, Los Angeles, CA 90001" +261689,Wired Headphones,1,11.99,09/27/19 20:44,"369 5th St, New York City, NY 10001" +261690,Apple Airpods Headphones,1,150,09/07/19 14:47,"307 Johnson St, Portland, OR 97035" +261691,Wired Headphones,1,11.99,09/24/19 17:55,"450 Highland St, Boston, MA 02215" +261692,Lightning Charging Cable,1,14.95,09/09/19 14:18,"288 Adams St, Dallas, TX 75001" +261693,Lightning Charging Cable,1,14.95,09/11/19 09:48,"74 Washington St, New York City, NY 10001" +261694,Google Phone,1,600,09/28/19 15:14,"101 Highland St, San Francisco, CA 94016" +261694,USB-C Charging Cable,1,11.95,09/28/19 15:14,"101 Highland St, San Francisco, CA 94016" +261694,Macbook Pro Laptop,1,1700,09/28/19 15:14,"101 Highland St, San Francisco, CA 94016" +261695,AA Batteries (4-pack),1,3.84,09/04/19 09:18,"858 12th St, San Francisco, CA 94016" +261696,Bose SoundSport Headphones,1,99.99,09/23/19 16:45,"663 8th St, Boston, MA 02215" +261696,27in 4K Gaming Monitor,1,389.99,09/23/19 16:45,"663 8th St, Boston, MA 02215" +261697,Vareebadd Phone,1,400,09/22/19 17:00,"491 Pine St, New York City, NY 10001" +261698,27in 4K Gaming Monitor,1,389.99,09/15/19 19:29,"123 Jackson St, New York City, NY 10001" +261699,USB-C Charging Cable,1,11.95,09/18/19 12:44,"90 4th St, New York City, NY 10001" +261700,Google Phone,1,600,09/22/19 18:02,"878 Chestnut St, San Francisco, CA 94016" +261701,AA Batteries (4-pack),1,3.84,09/26/19 17:15,"739 Madison St, San Francisco, CA 94016" +261702,Lightning Charging Cable,1,14.95,09/27/19 18:38,"318 West St, Austin, TX 73301" +261703,Lightning Charging Cable,2,14.95,09/07/19 23:38,"829 Ridge St, New York City, NY 10001" +261704,AA Batteries (4-pack),1,3.84,09/12/19 13:59,"827 Hickory St, San Francisco, CA 94016" +261705,USB-C Charging Cable,1,11.95,09/26/19 20:09,"602 Walnut St, Boston, MA 02215" +261706,Lightning Charging Cable,1,14.95,09/28/19 12:37,"942 9th St, New York City, NY 10001" +261707,Google Phone,1,600,09/28/19 16:46,"445 Lake St, Portland, OR 97035" +261708,AA Batteries (4-pack),1,3.84,09/03/19 17:35,"918 Adams St, San Francisco, CA 94016" +261709,AA Batteries (4-pack),1,3.84,09/18/19 18:55,"999 Washington St, Los Angeles, CA 90001" +261710,AA Batteries (4-pack),1,3.84,09/25/19 07:54,"316 Jefferson St, Atlanta, GA 30301" +261711,USB-C Charging Cable,1,11.95,09/26/19 10:48,"599 Walnut St, San Francisco, CA 94016" +261712,ThinkPad Laptop,1,999.99,09/19/19 11:48,"106 Jefferson St, San Francisco, CA 94016" +261713,AA Batteries (4-pack),1,3.84,09/03/19 22:23,"796 Wilson St, Seattle, WA 98101" +261713,AAA Batteries (4-pack),1,2.99,09/03/19 22:23,"796 Wilson St, Seattle, WA 98101" +261714,AA Batteries (4-pack),1,3.84,09/17/19 12:39,"281 8th St, Los Angeles, CA 90001" +261715,iPhone,1,700,09/28/19 15:31,"873 Forest St, New York City, NY 10001" +261716,Google Phone,1,600,09/24/19 12:50,"625 Pine St, Boston, MA 02215" +261717,ThinkPad Laptop,1,999.99,09/27/19 21:36,"39 12th St, Portland, OR 97035" +261718,Wired Headphones,1,11.99,09/09/19 20:32,"715 Dogwood St, San Francisco, CA 94016" +261719,Lightning Charging Cable,1,14.95,09/20/19 11:54,"720 Wilson St, Los Angeles, CA 90001" +261720,Wired Headphones,2,11.99,09/04/19 21:06,"746 5th St, San Francisco, CA 94016" +261721,Bose SoundSport Headphones,1,99.99,09/28/19 13:30,"77 Meadow St, San Francisco, CA 94016" +261722,AAA Batteries (4-pack),1,2.99,09/06/19 12:18,"284 Main St, San Francisco, CA 94016" +261722,LG Washing Machine,1,600.0,09/06/19 12:18,"284 Main St, San Francisco, CA 94016" +261723,27in FHD Monitor,1,149.99,09/06/19 09:10,"534 North St, Los Angeles, CA 90001" +261724,27in FHD Monitor,1,149.99,09/14/19 10:07,"548 Pine St, San Francisco, CA 94016" +261725,Wired Headphones,1,11.99,09/30/19 12:54,"326 Hickory St, Dallas, TX 75001" +261726,AA Batteries (4-pack),1,3.84,09/20/19 12:36,"518 12th St, Seattle, WA 98101" +261727,AA Batteries (4-pack),1,3.84,09/14/19 19:21,"386 9th St, Los Angeles, CA 90001" +261728,Lightning Charging Cable,1,14.95,09/13/19 09:22,"28 5th St, San Francisco, CA 94016" +261728,LG Washing Machine,1,600.0,09/13/19 09:22,"28 5th St, San Francisco, CA 94016" +261729,AA Batteries (4-pack),2,3.84,09/20/19 13:57,"617 Hill St, New York City, NY 10001" +261730,Google Phone,1,600,09/28/19 22:03,"830 Meadow St, Atlanta, GA 30301" +261730,Wired Headphones,1,11.99,09/28/19 22:03,"830 Meadow St, Atlanta, GA 30301" +261731,AAA Batteries (4-pack),1,2.99,09/30/19 00:59,"997 Park St, San Francisco, CA 94016" +261732,AAA Batteries (4-pack),1,2.99,09/21/19 22:18,"806 Lakeview St, San Francisco, CA 94016" +261733,Lightning Charging Cable,1,14.95,09/09/19 17:03,"96 Madison St, New York City, NY 10001" +261734,Bose SoundSport Headphones,1,99.99,09/22/19 09:02,"80 8th St, Austin, TX 73301" +261735,AA Batteries (4-pack),1,3.84,09/09/19 13:15,"717 Ridge St, San Francisco, CA 94016" +261736,Apple Airpods Headphones,1,150,09/30/19 11:41,"624 South St, Seattle, WA 98101" +261737,Macbook Pro Laptop,1,1700,09/26/19 13:14,"595 Wilson St, Atlanta, GA 30301" +261738,Lightning Charging Cable,1,14.95,09/11/19 20:59,"50 Jefferson St, San Francisco, CA 94016" +261739,Wired Headphones,1,11.99,09/07/19 08:34,"478 Maple St, Los Angeles, CA 90001" +261740,AAA Batteries (4-pack),1,2.99,09/21/19 19:50,"180 Hickory St, Los Angeles, CA 90001" +261741,AAA Batteries (4-pack),1,2.99,09/28/19 15:00,"173 North St, New York City, NY 10001" +261742,34in Ultrawide Monitor,1,379.99,09/27/19 08:57,"784 West St, San Francisco, CA 94016" +261743,Wired Headphones,1,11.99,09/29/19 09:19,"721 Wilson St, Boston, MA 02215" +261744,iPhone,1,700,09/25/19 08:05,"189 7th St, San Francisco, CA 94016" +261745,AAA Batteries (4-pack),1,2.99,09/28/19 18:52,"33 4th St, Dallas, TX 75001" +261746,AAA Batteries (4-pack),1,2.99,09/14/19 20:37,"14 4th St, New York City, NY 10001" +261747,34in Ultrawide Monitor,1,379.99,09/05/19 13:26,"211 Lincoln St, San Francisco, CA 94016" +261748,USB-C Charging Cable,1,11.95,09/24/19 15:35,"448 1st St, New York City, NY 10001" +261749,Bose SoundSport Headphones,1,99.99,09/15/19 21:47,"582 11th St, Los Angeles, CA 90001" +261750,AA Batteries (4-pack),1,3.84,09/18/19 10:25,"310 14th St, Los Angeles, CA 90001" +261751,Lightning Charging Cable,1,14.95,09/26/19 07:04,"903 Cedar St, Los Angeles, CA 90001" +261752,AA Batteries (4-pack),1,3.84,09/08/19 20:00,"103 1st St, Seattle, WA 98101" +261753,20in Monitor,1,109.99,09/04/19 20:18,"885 Dogwood St, Los Angeles, CA 90001" +261754,Vareebadd Phone,1,400,09/16/19 00:07,"983 10th St, New York City, NY 10001" +261755,USB-C Charging Cable,1,11.95,09/28/19 11:37,"914 9th St, Los Angeles, CA 90001" +261756,iPhone,1,700,09/08/19 16:40,"418 Washington St, Portland, OR 97035" +261757,Flatscreen TV,1,300,09/19/19 15:19,"646 Maple St, Atlanta, GA 30301" +261758,USB-C Charging Cable,1,11.95,09/26/19 17:55,"667 Lake St, Dallas, TX 75001" +261759,USB-C Charging Cable,1,11.95,09/07/19 23:36,"654 Park St, Dallas, TX 75001" +261760,27in 4K Gaming Monitor,1,389.99,09/25/19 09:41,"745 North St, Portland, OR 97035" +261761,Bose SoundSport Headphones,1,99.99,09/26/19 21:55,"772 1st St, Atlanta, GA 30301" +261762,Lightning Charging Cable,1,14.95,09/23/19 15:22,"345 Lakeview St, San Francisco, CA 94016" +261763,Google Phone,1,600,09/20/19 13:50,"39 Forest St, Los Angeles, CA 90001" +261763,Bose SoundSport Headphones,1,99.99,09/20/19 13:50,"39 Forest St, Los Angeles, CA 90001" +261764,Google Phone,1,600,09/25/19 15:12,"838 Hill St, Atlanta, GA 30301" +261764,USB-C Charging Cable,1,11.95,09/25/19 15:12,"838 Hill St, Atlanta, GA 30301" +261765,Flatscreen TV,1,300,09/29/19 20:42,"502 Madison St, Austin, TX 73301" +261766,AAA Batteries (4-pack),1,2.99,09/05/19 19:57,"946 14th St, Atlanta, GA 30301" +261767,ThinkPad Laptop,1,999.99,09/19/19 12:13,"814 Madison St, San Francisco, CA 94016" +261768,USB-C Charging Cable,1,11.95,09/29/19 17:23,"492 5th St, Dallas, TX 75001" +261769,Apple Airpods Headphones,1,150,09/23/19 18:46,"42 Hickory St, Austin, TX 73301" +261770,USB-C Charging Cable,1,11.95,09/05/19 07:14,"139 Main St, Boston, MA 02215" +261771,AAA Batteries (4-pack),1,2.99,09/07/19 23:53,"868 7th St, Atlanta, GA 30301" +261772,Google Phone,1,600,09/03/19 00:12,"636 North St, New York City, NY 10001" +261773,AAA Batteries (4-pack),1,2.99,09/25/19 07:11,"292 Meadow St, San Francisco, CA 94016" +261774,Bose SoundSport Headphones,1,99.99,09/29/19 06:55,"836 Lakeview St, New York City, NY 10001" +261775,AA Batteries (4-pack),1,3.84,09/20/19 14:08,"255 Chestnut St, Seattle, WA 98101" +261776,Apple Airpods Headphones,1,150,09/02/19 15:27,"886 14th St, San Francisco, CA 94016" +261777,AAA Batteries (4-pack),6,2.99,09/24/19 19:23,"350 1st St, Portland, OR 97035" +261778,USB-C Charging Cable,1,11.95,09/05/19 11:29,"191 10th St, Dallas, TX 75001" +261778,Wired Headphones,1,11.99,09/05/19 11:29,"191 10th St, Dallas, TX 75001" +261779,27in FHD Monitor,1,149.99,09/22/19 11:47,"436 Church St, San Francisco, CA 94016" +261780,Lightning Charging Cable,1,14.95,09/27/19 12:43,"753 Spruce St, Los Angeles, CA 90001" +261781,Lightning Charging Cable,1,14.95,09/26/19 03:23,"851 13th St, Atlanta, GA 30301" +261782,Wired Headphones,2,11.99,09/08/19 10:18,"455 6th St, Boston, MA 02215" +261783,Wired Headphones,1,11.99,09/07/19 10:10,"914 Forest St, New York City, NY 10001" +261784,Google Phone,1,600,09/04/19 14:50,"439 Chestnut St, San Francisco, CA 94016" +261785,27in 4K Gaming Monitor,1,389.99,09/07/19 12:22,"784 13th St, Boston, MA 02215" +261786,Apple Airpods Headphones,1,150,09/01/19 09:00,"969 Lake St, Los Angeles, CA 90001" +261787,Vareebadd Phone,1,400,09/16/19 16:02,"324 Maple St, Portland, ME 04101" +261788,AAA Batteries (4-pack),6,2.99,09/26/19 20:46,"389 Ridge St, Los Angeles, CA 90001" +261789,USB-C Charging Cable,1,11.95,09/17/19 15:56,"877 Washington St, San Francisco, CA 94016" +261790,LG Washing Machine,1,600.0,09/30/19 21:13,"717 Washington St, Austin, TX 73301" +261791,Wired Headphones,1,11.99,09/17/19 17:40,"800 Lincoln St, Portland, OR 97035" +261792,Lightning Charging Cable,1,14.95,09/04/19 12:54,"670 Meadow St, Boston, MA 02215" +261793,Apple Airpods Headphones,1,150,09/01/19 15:48,"778 Park St, New York City, NY 10001" +261794,AAA Batteries (4-pack),1,2.99,09/24/19 19:21,"507 Wilson St, New York City, NY 10001" +261795,Wired Headphones,1,11.99,09/03/19 02:27,"125 Hill St, Boston, MA 02215" +261796,AAA Batteries (4-pack),3,2.99,09/05/19 09:10,"75 11th St, San Francisco, CA 94016" +261797,LG Dryer,1,600.0,09/01/19 15:46,"774 Lakeview St, Portland, OR 97035" +261798,Wired Headphones,1,11.99,09/01/19 07:25,"469 2nd St, Boston, MA 02215" +261799,Wired Headphones,1,11.99,09/23/19 17:03,"372 Washington St, New York City, NY 10001" +261800,34in Ultrawide Monitor,1,379.99,09/28/19 19:17,"901 River St, New York City, NY 10001" +261801,Apple Airpods Headphones,1,150,09/22/19 13:34,"360 5th St, Los Angeles, CA 90001" +261802,Flatscreen TV,1,300,09/06/19 22:17,"223 South St, San Francisco, CA 94016" +261803,Lightning Charging Cable,1,14.95,09/25/19 21:01,"960 Cedar St, Dallas, TX 75001" +261804,Bose SoundSport Headphones,1,99.99,09/03/19 17:47,"350 Park St, Los Angeles, CA 90001" +261805,Apple Airpods Headphones,1,150,09/11/19 12:37,"510 12th St, Portland, OR 97035" +261806,Flatscreen TV,1,300,09/08/19 16:15,"869 10th St, Boston, MA 02215" +261807,Wired Headphones,1,11.99,09/08/19 19:14,"769 South St, Los Angeles, CA 90001" +261808,AAA Batteries (4-pack),1,2.99,09/07/19 21:53,"343 13th St, San Francisco, CA 94016" +261809,Lightning Charging Cable,1,14.95,09/19/19 16:49,"837 Cherry St, Los Angeles, CA 90001" +261810,iPhone,1,700,09/29/19 12:46,"748 Maple St, Dallas, TX 75001" +261811,AA Batteries (4-pack),1,3.84,09/08/19 07:36,"488 Jefferson St, Atlanta, GA 30301" +261812,USB-C Charging Cable,1,11.95,09/08/19 13:12,"556 Walnut St, San Francisco, CA 94016" +261813,Bose SoundSport Headphones,1,99.99,09/09/19 20:58,"953 South St, Dallas, TX 75001" +261814,Wired Headphones,1,11.99,09/20/19 11:54,"512 Ridge St, New York City, NY 10001" +261815,Apple Airpods Headphones,1,150,09/01/19 06:56,"388 Dogwood St, Atlanta, GA 30301" +261816,USB-C Charging Cable,1,11.95,09/12/19 00:38,"81 Park St, New York City, NY 10001" +261817,USB-C Charging Cable,1,11.95,09/03/19 19:59,"923 Willow St, Atlanta, GA 30301" +261818,Lightning Charging Cable,1,14.95,09/05/19 13:22,"371 Madison St, Austin, TX 73301" +261819,AA Batteries (4-pack),1,3.84,09/14/19 18:34,"26 Lake St, San Francisco, CA 94016" +261820,USB-C Charging Cable,1,11.95,09/27/19 21:31,"990 River St, Boston, MA 02215" +261821,Wired Headphones,1,11.99,09/12/19 02:47,"209 South St, Boston, MA 02215" +261822,ThinkPad Laptop,1,999.99,09/27/19 10:02,"714 Lincoln St, Boston, MA 02215" +261822,iPhone,1,700,09/27/19 10:02,"714 Lincoln St, Boston, MA 02215" +261823,Wired Headphones,1,11.99,09/21/19 11:14,"635 Center St, San Francisco, CA 94016" +261824,20in Monitor,1,109.99,09/09/19 14:21,"801 West St, Portland, ME 04101" +261825,Lightning Charging Cable,1,14.95,09/29/19 17:31,"508 Cherry St, Seattle, WA 98101" +261826,Lightning Charging Cable,1,14.95,09/15/19 19:35,"424 Maple St, Portland, OR 97035" +261827,AAA Batteries (4-pack),2,2.99,09/24/19 21:19,"418 Cherry St, New York City, NY 10001" +261827,27in FHD Monitor,1,149.99,09/24/19 21:19,"418 Cherry St, New York City, NY 10001" +261828,USB-C Charging Cable,1,11.95,09/04/19 02:07,"255 Cedar St, Los Angeles, CA 90001" +261829,Lightning Charging Cable,1,14.95,09/06/19 20:25,"420 Park St, Seattle, WA 98101" +261830,AAA Batteries (4-pack),3,2.99,09/07/19 20:30,"812 Lake St, Los Angeles, CA 90001" +261831,34in Ultrawide Monitor,1,379.99,09/08/19 23:02,"947 Chestnut St, San Francisco, CA 94016" +261832,Wired Headphones,1,11.99,09/18/19 14:27,"33 Center St, New York City, NY 10001" +261833,USB-C Charging Cable,1,11.95,09/28/19 06:35,"472 West St, Boston, MA 02215" +261834,Macbook Pro Laptop,1,1700,09/24/19 07:41,"276 Park St, Boston, MA 02215" +261835,AA Batteries (4-pack),1,3.84,09/11/19 17:51,"939 5th St, Atlanta, GA 30301" +261836,ThinkPad Laptop,1,999.99,09/10/19 07:57,"535 11th St, Atlanta, GA 30301" +261837,USB-C Charging Cable,1,11.95,09/18/19 13:29,"745 Washington St, Los Angeles, CA 90001" +261838,AAA Batteries (4-pack),1,2.99,09/11/19 12:06,"968 5th St, New York City, NY 10001" +261839,USB-C Charging Cable,2,11.95,09/02/19 20:08,"959 Willow St, Portland, OR 97035" +261840,Lightning Charging Cable,1,14.95,09/25/19 10:18,"904 Ridge St, Austin, TX 73301" +261841,Google Phone,1,600,09/20/19 18:57,"155 Cedar St, Dallas, TX 75001" +261842,Macbook Pro Laptop,1,1700,09/23/19 12:30,"824 Forest St, Los Angeles, CA 90001" +261843,Google Phone,1,600,09/05/19 23:18,"801 7th St, New York City, NY 10001" +261844,Apple Airpods Headphones,1,150,09/12/19 20:49,"531 Washington St, Dallas, TX 75001" +261845,AA Batteries (4-pack),1,3.84,09/30/19 00:45,"29 4th St, Austin, TX 73301" +261846,ThinkPad Laptop,1,999.99,09/22/19 20:27,"598 Dogwood St, Los Angeles, CA 90001" +261847,USB-C Charging Cable,1,11.95,09/27/19 22:14,"760 Washington St, San Francisco, CA 94016" +261848,34in Ultrawide Monitor,1,379.99,09/28/19 11:22,"696 Chestnut St, Austin, TX 73301" +261849,AAA Batteries (4-pack),1,2.99,09/17/19 16:37,"381 13th St, Austin, TX 73301" +261850,27in FHD Monitor,1,149.99,09/13/19 11:44,"592 Center St, Dallas, TX 75001" +261851,Macbook Pro Laptop,1,1700,09/13/19 22:40,"991 West St, San Francisco, CA 94016" +261852,27in 4K Gaming Monitor,1,389.99,09/02/19 19:43,"243 Ridge St, Atlanta, GA 30301" +261852,Wired Headphones,1,11.99,09/02/19 19:43,"243 Ridge St, Atlanta, GA 30301" +261853,Wired Headphones,1,11.99,09/08/19 14:13,"648 Jackson St, San Francisco, CA 94016" +261854,iPhone,1,700,09/18/19 19:17,"548 10th St, New York City, NY 10001" +261855,Lightning Charging Cable,1,14.95,09/27/19 15:16,"149 Johnson St, Dallas, TX 75001" +261856,Lightning Charging Cable,1,14.95,09/22/19 20:57,"366 Washington St, San Francisco, CA 94016" +261857,Google Phone,1,600,09/21/19 15:43,"551 Dogwood St, San Francisco, CA 94016" +261858,USB-C Charging Cable,1,11.95,09/26/19 14:52,"956 2nd St, San Francisco, CA 94016" +261859,Bose SoundSport Headphones,1,99.99,09/16/19 22:24,"640 Cedar St, Seattle, WA 98101" +261860,Wired Headphones,1,11.99,09/07/19 20:35,"568 Washington St, Dallas, TX 75001" +261861,USB-C Charging Cable,1,11.95,09/27/19 08:12,"956 Ridge St, Dallas, TX 75001" +261862,AA Batteries (4-pack),3,3.84,09/30/19 11:11,"809 Maple St, Dallas, TX 75001" +261863,AAA Batteries (4-pack),1,2.99,09/22/19 15:21,"269 Dogwood St, Seattle, WA 98101" +261864,34in Ultrawide Monitor,1,379.99,09/05/19 11:19,"445 Center St, Portland, ME 04101" +261865,Apple Airpods Headphones,1,150,09/10/19 00:48,"664 Cherry St, Los Angeles, CA 90001" +261866,Wired Headphones,1,11.99,09/19/19 17:14,"96 5th St, New York City, NY 10001" +261867,Apple Airpods Headphones,1,150,09/10/19 13:50,"436 Lake St, Los Angeles, CA 90001" +261868,USB-C Charging Cable,1,11.95,09/30/19 16:02,"282 Pine St, San Francisco, CA 94016" +261869,USB-C Charging Cable,2,11.95,09/23/19 14:41,"115 Center St, San Francisco, CA 94016" +261870,Bose SoundSport Headphones,1,99.99,09/19/19 08:47,"552 Cedar St, San Francisco, CA 94016" +261871,AA Batteries (4-pack),1,3.84,09/07/19 23:06,"617 Lincoln St, Los Angeles, CA 90001" +261872,Lightning Charging Cable,1,14.95,09/07/19 18:07,"319 Hill St, Atlanta, GA 30301" +261873,Lightning Charging Cable,1,14.95,09/13/19 12:00,"442 South St, Boston, MA 02215" +261874,Lightning Charging Cable,1,14.95,09/19/19 11:57,"748 5th St, Los Angeles, CA 90001" +261875,USB-C Charging Cable,1,11.95,09/10/19 00:07,"245 Cherry St, San Francisco, CA 94016" +261876,Google Phone,1,600,09/01/19 06:26,"392 Cedar St, Dallas, TX 75001" +261876,Bose SoundSport Headphones,1,99.99,09/01/19 06:26,"392 Cedar St, Dallas, TX 75001" +261877,USB-C Charging Cable,1,11.95,09/14/19 19:49,"59 Maple St, New York City, NY 10001" +261878,ThinkPad Laptop,1,999.99,09/05/19 12:07,"342 Adams St, Los Angeles, CA 90001" +261879,Lightning Charging Cable,2,14.95,09/27/19 19:10,"168 Ridge St, Seattle, WA 98101" +261880,20in Monitor,1,109.99,09/29/19 15:07,"651 South St, San Francisco, CA 94016" +261881,AA Batteries (4-pack),2,3.84,09/02/19 16:14,"996 North St, Boston, MA 02215" +261882,AAA Batteries (4-pack),1,2.99,09/27/19 00:32,"491 4th St, San Francisco, CA 94016" +261883,USB-C Charging Cable,1,11.95,09/28/19 17:23,"116 10th St, Portland, ME 04101" +261884,Apple Airpods Headphones,1,150,09/07/19 23:36,"909 West St, New York City, NY 10001" +261885,Apple Airpods Headphones,1,150,09/10/19 16:10,"180 12th St, Los Angeles, CA 90001" +261886,USB-C Charging Cable,1,11.95,09/10/19 11:29,"682 Lincoln St, Los Angeles, CA 90001" +261887,Wired Headphones,1,11.99,09/18/19 15:33,"329 2nd St, Los Angeles, CA 90001" +261888,Macbook Pro Laptop,1,1700,09/10/19 13:50,"828 West St, Seattle, WA 98101" +261889,Google Phone,1,600,09/11/19 17:40,"114 2nd St, San Francisco, CA 94016" +261890,Apple Airpods Headphones,1,150,09/27/19 20:35,"366 Meadow St, Boston, MA 02215" +261891,Apple Airpods Headphones,1,150,09/09/19 17:49,"193 Jefferson St, New York City, NY 10001" +261892,Bose SoundSport Headphones,1,99.99,09/29/19 19:11,"976 Willow St, Seattle, WA 98101" +261893,20in Monitor,1,109.99,09/10/19 08:19,"998 Wilson St, Atlanta, GA 30301" +261894,ThinkPad Laptop,1,999.99,09/11/19 10:36,"923 5th St, New York City, NY 10001" +261895,34in Ultrawide Monitor,1,379.99,09/26/19 10:46,"351 Center St, Boston, MA 02215" +261896,Wired Headphones,1,11.99,09/03/19 14:00,"991 Lincoln St, San Francisco, CA 94016" +261897,Apple Airpods Headphones,1,150,09/03/19 15:56,"550 Jefferson St, Portland, OR 97035" +261898,Wired Headphones,1,11.99,09/16/19 00:25,"561 Center St, San Francisco, CA 94016" +261899,Apple Airpods Headphones,1,150,09/03/19 15:49,"87 Walnut St, San Francisco, CA 94016" +261900,Macbook Pro Laptop,1,1700,09/26/19 21:20,"222 Hickory St, Seattle, WA 98101" +261901,USB-C Charging Cable,1,11.95,09/28/19 09:06,"644 Cherry St, Los Angeles, CA 90001" +261902,34in Ultrawide Monitor,1,379.99,09/01/19 10:03,"178 Chestnut St, Boston, MA 02215" +261903,Lightning Charging Cable,1,14.95,09/21/19 09:07,"203 12th St, Los Angeles, CA 90001" +261904,AAA Batteries (4-pack),1,2.99,09/24/19 23:57,"843 Forest St, Boston, MA 02215" +261905,AA Batteries (4-pack),1,3.84,09/24/19 14:47,"525 14th St, Boston, MA 02215" +261906,Apple Airpods Headphones,1,150,09/20/19 20:45,"957 6th St, New York City, NY 10001" +261907,Lightning Charging Cable,1,14.95,09/08/19 10:38,"363 Cedar St, Portland, OR 97035" +261908,Macbook Pro Laptop,1,1700,09/03/19 16:27,"133 Main St, New York City, NY 10001" +261909,USB-C Charging Cable,1,11.95,09/26/19 11:14,"997 Dogwood St, Portland, OR 97035" +261910,Wired Headphones,1,11.99,09/09/19 21:15,"650 14th St, New York City, NY 10001" +261911,AAA Batteries (4-pack),2,2.99,09/30/19 20:29,"434 Elm St, Austin, TX 73301" +261912,Macbook Pro Laptop,1,1700,09/10/19 19:41,"584 4th St, San Francisco, CA 94016" +261913,Wired Headphones,1,11.99,09/16/19 13:11,"590 Sunset St, San Francisco, CA 94016" +261914,AA Batteries (4-pack),1,3.84,09/23/19 11:34,"585 South St, San Francisco, CA 94016" +261915,AAA Batteries (4-pack),2,2.99,09/01/19 05:15,"503 12th St, Dallas, TX 75001" +261916,Bose SoundSport Headphones,1,99.99,09/16/19 22:11,"325 North St, Seattle, WA 98101" +261917,Wired Headphones,1,11.99,09/24/19 21:53,"331 7th St, Los Angeles, CA 90001" +261918,Macbook Pro Laptop,1,1700,09/04/19 17:40,"467 Main St, San Francisco, CA 94016" +261919,27in FHD Monitor,1,149.99,09/23/19 17:44,"892 Lakeview St, New York City, NY 10001" +261920,AAA Batteries (4-pack),2,2.99,09/19/19 10:55,"651 Washington St, New York City, NY 10001" +261921,Bose SoundSport Headphones,1,99.99,09/14/19 15:23,"311 4th St, San Francisco, CA 94016" +261922,20in Monitor,1,109.99,09/29/19 18:38,"333 Elm St, Austin, TX 73301" +261923,Lightning Charging Cable,1,14.95,09/24/19 19:47,"76 Johnson St, Seattle, WA 98101" +261923,Bose SoundSport Headphones,1,99.99,09/24/19 19:47,"76 Johnson St, Seattle, WA 98101" +261924,AAA Batteries (4-pack),1,2.99,09/25/19 14:44,"765 Forest St, San Francisco, CA 94016" +261925,Macbook Pro Laptop,1,1700,09/30/19 19:15,"889 Wilson St, Austin, TX 73301" +261926,AAA Batteries (4-pack),1,2.99,09/07/19 16:41,"660 8th St, Portland, ME 04101" +261927,Macbook Pro Laptop,1,1700,09/17/19 13:01,"213 Hickory St, Boston, MA 02215" +261928,34in Ultrawide Monitor,1,379.99,09/24/19 06:58,"686 Sunset St, San Francisco, CA 94016" +261929,Macbook Pro Laptop,1,1700,09/01/19 23:49,"557 Forest St, Austin, TX 73301" +261930,27in FHD Monitor,1,149.99,09/18/19 16:28,"601 8th St, Boston, MA 02215" +261931,Lightning Charging Cable,1,14.95,09/30/19 10:37,"710 Maple St, San Francisco, CA 94016" +261932,Apple Airpods Headphones,1,150,09/08/19 11:25,"979 Main St, Los Angeles, CA 90001" +261933,Vareebadd Phone,1,400,09/06/19 01:09,"675 Willow St, New York City, NY 10001" +261934,Lightning Charging Cable,1,14.95,09/26/19 07:40,"151 8th St, Austin, TX 73301" +261935,AAA Batteries (4-pack),1,2.99,09/22/19 21:58,"446 Church St, Los Angeles, CA 90001" +261936,USB-C Charging Cable,1,11.95,09/11/19 17:37,"282 Dogwood St, Los Angeles, CA 90001" +261937,USB-C Charging Cable,1,11.95,09/06/19 08:30,"798 Dogwood St, Boston, MA 02215" +261938,Lightning Charging Cable,1,14.95,09/12/19 14:39,"263 14th St, Seattle, WA 98101" +261939,Wired Headphones,1,11.99,09/26/19 07:21,"481 Center St, San Francisco, CA 94016" +261940,AAA Batteries (4-pack),1,2.99,09/23/19 08:41,"422 12th St, Atlanta, GA 30301" +261941,Bose SoundSport Headphones,1,99.99,09/19/19 14:04,"610 Madison St, San Francisco, CA 94016" +261942,Wired Headphones,1,11.99,09/08/19 11:20,"249 Madison St, Los Angeles, CA 90001" +261943,USB-C Charging Cable,1,11.95,09/28/19 09:54,"435 Elm St, San Francisco, CA 94016" +261943,Wired Headphones,1,11.99,09/28/19 09:54,"435 Elm St, San Francisco, CA 94016" +261944,Flatscreen TV,1,300,09/06/19 13:52,"408 Park St, Atlanta, GA 30301" +261945,iPhone,1,700,09/16/19 16:58,"183 Park St, San Francisco, CA 94016" +261946,AAA Batteries (4-pack),1,2.99,09/16/19 09:59,"749 2nd St, New York City, NY 10001" +261947,Bose SoundSport Headphones,1,99.99,09/18/19 21:35,"73 Hickory St, Los Angeles, CA 90001" +261948,AAA Batteries (4-pack),2,2.99,09/01/19 18:18,"601 Johnson St, Los Angeles, CA 90001" +261949,USB-C Charging Cable,1,11.95,09/20/19 17:26,"61 12th St, Seattle, WA 98101" +261950,34in Ultrawide Monitor,1,379.99,09/26/19 16:34,"907 Church St, Los Angeles, CA 90001" +261951,AA Batteries (4-pack),2,3.84,09/14/19 21:30,"741 10th St, Los Angeles, CA 90001" +261952,Bose SoundSport Headphones,1,99.99,09/17/19 00:57,"952 8th St, Atlanta, GA 30301" +261953,34in Ultrawide Monitor,1,379.99,09/26/19 12:12,"358 Walnut St, Los Angeles, CA 90001" +261954,Wired Headphones,1,11.99,09/02/19 20:31,"817 13th St, San Francisco, CA 94016" +261955,Flatscreen TV,1,300,09/24/19 19:31,"644 West St, Portland, OR 97035" +261956,Apple Airpods Headphones,1,150,09/14/19 20:59,"851 Cherry St, Portland, OR 97035" +261957,Lightning Charging Cable,1,14.95,09/19/19 08:30,"928 Meadow St, Seattle, WA 98101" +261958,USB-C Charging Cable,2,11.95,09/26/19 17:13,"444 9th St, Portland, OR 97035" +261959,Apple Airpods Headphones,1,150,09/26/19 08:58,"857 10th St, Atlanta, GA 30301" +261960,Bose SoundSport Headphones,1,99.99,09/05/19 14:51,"476 Ridge St, Boston, MA 02215" +261961,iPhone,1,700,09/28/19 15:50,"157 Main St, Austin, TX 73301" +261962,Bose SoundSport Headphones,1,99.99,09/21/19 16:18,"499 12th St, Boston, MA 02215" +261963,AAA Batteries (4-pack),1,2.99,09/25/19 18:38,"318 River St, Seattle, WA 98101" +261964,AAA Batteries (4-pack),2,2.99,09/24/19 21:53,"56 Ridge St, New York City, NY 10001" +261965,AA Batteries (4-pack),1,3.84,09/04/19 11:50,"495 Forest St, New York City, NY 10001" +261966,27in FHD Monitor,1,149.99,09/14/19 17:38,"1 8th St, New York City, NY 10001" +261967,USB-C Charging Cable,1,11.95,09/11/19 21:39,"371 Elm St, Boston, MA 02215" +261968,AAA Batteries (4-pack),1,2.99,09/10/19 11:52,"842 Washington St, Boston, MA 02215" +261969,Lightning Charging Cable,1,14.95,09/30/19 22:53,"369 Chestnut St, Atlanta, GA 30301" +261970,AAA Batteries (4-pack),1,2.99,09/12/19 12:09,"290 11th St, Dallas, TX 75001" +261971,iPhone,1,700,09/21/19 10:57,"932 Sunset St, Los Angeles, CA 90001" +261972,USB-C Charging Cable,1,11.95,09/12/19 17:04,"402 Hill St, San Francisco, CA 94016" +261973,AA Batteries (4-pack),1,3.84,09/01/19 22:41,"530 Jefferson St, Los Angeles, CA 90001" +261974,AAA Batteries (4-pack),2,2.99,09/18/19 20:07,"11 West St, San Francisco, CA 94016" +261975,AA Batteries (4-pack),1,3.84,09/13/19 14:11,"13 Maple St, San Francisco, CA 94016" +261976,34in Ultrawide Monitor,1,379.99,09/09/19 14:27,"719 Lincoln St, New York City, NY 10001" +261977,Lightning Charging Cable,1,14.95,09/20/19 17:14,"831 Chestnut St, Boston, MA 02215" +261978,Lightning Charging Cable,1,14.95,09/15/19 14:16,"732 Maple St, San Francisco, CA 94016" +261979,AA Batteries (4-pack),1,3.84,09/11/19 10:41,"239 Cedar St, Boston, MA 02215" +261980,Lightning Charging Cable,1,14.95,09/08/19 16:43,"765 Park St, Boston, MA 02215" +261981,AA Batteries (4-pack),2,3.84,09/05/19 19:03,"596 4th St, San Francisco, CA 94016" +261982,27in 4K Gaming Monitor,1,389.99,09/16/19 09:45,"228 River St, Seattle, WA 98101" +261983,Wired Headphones,4,11.99,09/09/19 14:50,"808 Dogwood St, Seattle, WA 98101" +261984,Apple Airpods Headphones,1,150,09/12/19 12:25,"763 Willow St, Dallas, TX 75001" +261985,USB-C Charging Cable,1,11.95,09/23/19 07:22,"854 Wilson St, San Francisco, CA 94016" +261986,Google Phone,1,600,09/28/19 22:30,"931 Maple St, New York City, NY 10001" +261987,iPhone,1,700,09/06/19 14:07,"989 5th St, Atlanta, GA 30301" +261988,USB-C Charging Cable,1,11.95,09/11/19 00:43,"283 River St, New York City, NY 10001" +261989,AAA Batteries (4-pack),1,2.99,09/14/19 23:49,"885 Jackson St, New York City, NY 10001" +261990,AA Batteries (4-pack),1,3.84,09/20/19 16:29,"71 Lake St, San Francisco, CA 94016" +261991,ThinkPad Laptop,1,999.99,09/17/19 22:46,"355 Johnson St, Austin, TX 73301" +261992,AAA Batteries (4-pack),1,2.99,09/15/19 20:06,"673 South St, Los Angeles, CA 90001" +261993,AAA Batteries (4-pack),1,2.99,09/02/19 08:26,"172 Church St, Los Angeles, CA 90001" +261994,USB-C Charging Cable,1,11.95,09/11/19 17:10,"703 Sunset St, San Francisco, CA 94016" +261995,Flatscreen TV,1,300,09/09/19 16:46,"594 Lincoln St, San Francisco, CA 94016" +261996,27in 4K Gaming Monitor,1,389.99,09/11/19 08:13,"647 6th St, San Francisco, CA 94016" +261997,34in Ultrawide Monitor,1,379.99,09/07/19 20:51,"25 Washington St, Los Angeles, CA 90001" +261998,AA Batteries (4-pack),2,3.84,09/07/19 10:02,"218 Lake St, Seattle, WA 98101" +261999,AA Batteries (4-pack),1,3.84,09/17/19 09:00,"793 Spruce St, San Francisco, CA 94016" +262000,AAA Batteries (4-pack),1,2.99,09/07/19 14:43,"745 Jefferson St, Dallas, TX 75001" +262001,iPhone,1,700,09/15/19 17:44,"500 Chestnut St, Austin, TX 73301" +262002,AA Batteries (4-pack),2,3.84,09/12/19 09:31,"873 7th St, Dallas, TX 75001" +262003,AAA Batteries (4-pack),1,2.99,09/15/19 09:57,"117 4th St, San Francisco, CA 94016" +262004,Macbook Pro Laptop,1,1700,09/15/19 11:44,"789 Main St, San Francisco, CA 94016" +262005,Macbook Pro Laptop,1,1700,09/24/19 15:19,"19 Willow St, Atlanta, GA 30301" +262006,Wired Headphones,1,11.99,09/22/19 19:20,"360 5th St, Boston, MA 02215" +262007,Wired Headphones,1,11.99,09/06/19 23:34,"937 Hickory St, Los Angeles, CA 90001" +262008,Apple Airpods Headphones,1,150,09/28/19 12:45,"217 1st St, Portland, OR 97035" +262009,Flatscreen TV,1,300,09/05/19 15:21,"305 Main St, New York City, NY 10001" +262010,Flatscreen TV,1,300,09/24/19 22:24,"164 Cherry St, San Francisco, CA 94016" +262011,Google Phone,1,600,09/21/19 19:21,"225 Meadow St, Dallas, TX 75001" +262011,USB-C Charging Cable,1,11.95,09/21/19 19:21,"225 Meadow St, Dallas, TX 75001" +262011,Wired Headphones,1,11.99,09/21/19 19:21,"225 Meadow St, Dallas, TX 75001" +262012,Wired Headphones,1,11.99,09/18/19 20:22,"80 North St, Boston, MA 02215" +262013,Bose SoundSport Headphones,1,99.99,09/22/19 09:21,"111 9th St, New York City, NY 10001" +262014,LG Washing Machine,1,600.0,09/12/19 18:55,"408 5th St, Boston, MA 02215" +262015,27in FHD Monitor,1,149.99,09/29/19 11:55,"713 Johnson St, New York City, NY 10001" +262016,USB-C Charging Cable,1,11.95,09/07/19 17:32,"67 Sunset St, Austin, TX 73301" +262017,Macbook Pro Laptop,1,1700,09/07/19 17:20,"856 Church St, New York City, NY 10001" +262018,AAA Batteries (4-pack),1,2.99,09/09/19 13:09,"557 Cedar St, Los Angeles, CA 90001" +262019,USB-C Charging Cable,1,11.95,09/19/19 22:25,"666 Lincoln St, New York City, NY 10001" +262020,Bose SoundSport Headphones,1,99.99,09/15/19 11:07,"559 Lake St, New York City, NY 10001" +262021,Lightning Charging Cable,1,14.95,09/06/19 22:19,"430 Forest St, San Francisco, CA 94016" +262022,AAA Batteries (4-pack),2,2.99,09/03/19 00:27,"347 Forest St, Los Angeles, CA 90001" +262023,AAA Batteries (4-pack),2,2.99,09/27/19 07:06,"18 North St, Los Angeles, CA 90001" +262024,Flatscreen TV,1,300,09/19/19 17:46,"455 Wilson St, Atlanta, GA 30301" +262025,AAA Batteries (4-pack),4,2.99,09/22/19 23:20,"544 Chestnut St, Los Angeles, CA 90001" +262026,iPhone,1,700,09/18/19 19:02,"261 Sunset St, Los Angeles, CA 90001" +262027,AA Batteries (4-pack),1,3.84,09/07/19 16:47,"613 Johnson St, San Francisco, CA 94016" +262028,Lightning Charging Cable,1,14.95,09/15/19 12:10,"59 Sunset St, San Francisco, CA 94016" +262029,Bose SoundSport Headphones,1,99.99,09/05/19 22:00,"887 Dogwood St, Los Angeles, CA 90001" +262030,AAA Batteries (4-pack),3,2.99,09/09/19 11:54,"592 West St, Los Angeles, CA 90001" +262031,USB-C Charging Cable,2,11.95,09/28/19 21:47,"718 Pine St, Portland, ME 04101" +262032,Wired Headphones,1,11.99,09/03/19 12:40,"470 13th St, San Francisco, CA 94016" +262033,Google Phone,1,600,09/10/19 13:57,"878 Ridge St, San Francisco, CA 94016" +262034,AA Batteries (4-pack),1,3.84,09/28/19 14:20,"678 7th St, San Francisco, CA 94016" +262035,Apple Airpods Headphones,1,150,09/08/19 16:07,"338 Washington St, New York City, NY 10001" +262036,AA Batteries (4-pack),3,3.84,09/19/19 19:35,"359 7th St, Boston, MA 02215" +262037,Wired Headphones,1,11.99,09/08/19 20:00,"488 Cherry St, San Francisco, CA 94016" +262038,iPhone,1,700,09/26/19 11:11,"979 North St, Los Angeles, CA 90001" +262039,Apple Airpods Headphones,1,150,09/02/19 18:53,"930 Pine St, San Francisco, CA 94016" +262040,AA Batteries (4-pack),1,3.84,09/05/19 00:21,"921 11th St, Boston, MA 02215" +262041,Wired Headphones,1,11.99,09/29/19 13:40,"620 12th St, Los Angeles, CA 90001" +262042,Wired Headphones,1,11.99,09/22/19 22:35,"782 River St, New York City, NY 10001" +262043,USB-C Charging Cable,1,11.95,09/23/19 12:28,"937 North St, Boston, MA 02215" +262044,USB-C Charging Cable,1,11.95,09/12/19 19:14,"83 Meadow St, Boston, MA 02215" +262045,Wired Headphones,1,11.99,09/21/19 13:02,"527 Cherry St, San Francisco, CA 94016" +262046,Wired Headphones,1,11.99,09/22/19 16:11,"318 Spruce St, San Francisco, CA 94016" +262047,Flatscreen TV,1,300,09/05/19 18:01,"223 South St, New York City, NY 10001" +262048,Apple Airpods Headphones,1,150,09/27/19 10:32,"84 North St, Portland, OR 97035" +262049,Wired Headphones,1,11.99,09/10/19 18:40,"282 Pine St, Los Angeles, CA 90001" +262050,Bose SoundSport Headphones,1,99.99,09/22/19 00:46,"557 Johnson St, Boston, MA 02215" +262051,34in Ultrawide Monitor,1,379.99,09/27/19 13:04,"259 Lake St, San Francisco, CA 94016" +262052,USB-C Charging Cable,1,11.95,09/30/19 13:23,"432 Chestnut St, San Francisco, CA 94016" +262053,USB-C Charging Cable,1,11.95,09/13/19 16:58,"231 5th St, Boston, MA 02215" +262054,Wired Headphones,1,11.99,09/29/19 11:22,"293 4th St, Boston, MA 02215" +262055,Bose SoundSport Headphones,1,99.99,09/08/19 14:09,"53 Elm St, San Francisco, CA 94016" +262056,Lightning Charging Cable,1,14.95,09/19/19 15:46,"822 14th St, Atlanta, GA 30301" +262057,Lightning Charging Cable,1,14.95,09/28/19 16:47,"783 Chestnut St, Dallas, TX 75001" +262058,USB-C Charging Cable,3,11.95,09/17/19 18:24,"542 Johnson St, San Francisco, CA 94016" +262059,Wired Headphones,1,11.99,09/07/19 18:10,"93 Jefferson St, San Francisco, CA 94016" +262060,34in Ultrawide Monitor,1,379.99,09/19/19 21:04,"222 Adams St, Atlanta, GA 30301" +262061,27in 4K Gaming Monitor,1,389.99,09/19/19 21:58,"922 Spruce St, Los Angeles, CA 90001" +262062,Lightning Charging Cable,1,14.95,09/26/19 06:49,"671 Adams St, Portland, OR 97035" +262063,Wired Headphones,1,11.99,09/18/19 18:32,"492 Ridge St, San Francisco, CA 94016" +262064,USB-C Charging Cable,1,11.95,09/03/19 14:05,"336 Highland St, Dallas, TX 75001" +262065,Lightning Charging Cable,1,14.95,09/24/19 15:52,"72 14th St, San Francisco, CA 94016" +262066,Lightning Charging Cable,1,14.95,09/15/19 17:37,"237 Lake St, Dallas, TX 75001" +262067,USB-C Charging Cable,1,11.95,09/29/19 15:25,"755 Jackson St, Portland, OR 97035" +262068,AA Batteries (4-pack),1,3.84,09/23/19 19:31,"395 Washington St, Los Angeles, CA 90001" +262069,Apple Airpods Headphones,1,150,09/12/19 15:05,"22 1st St, Atlanta, GA 30301" +262070,Lightning Charging Cable,1,14.95,09/08/19 16:41,"769 Park St, Los Angeles, CA 90001" +262071,AAA Batteries (4-pack),3,2.99,09/23/19 15:45,"994 Elm St, San Francisco, CA 94016" +262072,27in 4K Gaming Monitor,1,389.99,09/10/19 12:31,"902 13th St, Dallas, TX 75001" +262073,USB-C Charging Cable,1,11.95,09/27/19 17:59,"294 7th St, Atlanta, GA 30301" +262074,AAA Batteries (4-pack),1,2.99,09/08/19 22:00,"519 Jackson St, Dallas, TX 75001" +262075,iPhone,1,700,09/16/19 16:20,"137 Washington St, Los Angeles, CA 90001" +262076,AA Batteries (4-pack),1,3.84,09/18/19 13:29,"80 Wilson St, Los Angeles, CA 90001" +262077,LG Dryer,1,600.0,09/20/19 14:50,"793 4th St, San Francisco, CA 94016" +262078,Apple Airpods Headphones,1,150,09/26/19 14:02,"17 Elm St, Los Angeles, CA 90001" +262079,USB-C Charging Cable,1,11.95,09/16/19 20:22,"360 Adams St, San Francisco, CA 94016" +262080,USB-C Charging Cable,1,11.95,09/03/19 13:21,"789 Sunset St, Portland, OR 97035" +262081,Apple Airpods Headphones,1,150,09/12/19 12:08,"352 River St, Los Angeles, CA 90001" +262082,AA Batteries (4-pack),1,3.84,09/02/19 12:20,"15 8th St, San Francisco, CA 94016" +262083,USB-C Charging Cable,1,11.95,09/21/19 14:05,"290 West St, Dallas, TX 75001" +262084,Apple Airpods Headphones,1,150,09/04/19 13:38,"897 Park St, Dallas, TX 75001" +262085,iPhone,1,700,09/13/19 11:34,"351 4th St, Dallas, TX 75001" +262086,Wired Headphones,1,11.99,09/23/19 13:26,"274 Adams St, Atlanta, GA 30301" +262087,20in Monitor,1,109.99,09/15/19 10:21,"149 Sunset St, Seattle, WA 98101" +262088,Lightning Charging Cable,1,14.95,09/05/19 01:20,"67 West St, Austin, TX 73301" +262089,Lightning Charging Cable,1,14.95,09/22/19 18:39,"961 1st St, San Francisco, CA 94016" +262090,iPhone,1,700,09/04/19 23:52,"675 Chestnut St, Portland, OR 97035" +262090,Apple Airpods Headphones,1,150,09/04/19 23:52,"675 Chestnut St, Portland, OR 97035" +262090,Wired Headphones,1,11.99,09/04/19 23:52,"675 Chestnut St, Portland, OR 97035" +262091,AAA Batteries (4-pack),1,2.99,09/15/19 20:20,"402 Park St, San Francisco, CA 94016" +262092,34in Ultrawide Monitor,1,379.99,09/15/19 12:15,"407 4th St, Los Angeles, CA 90001" +262093,Apple Airpods Headphones,1,150,09/08/19 20:29,"581 Elm St, San Francisco, CA 94016" +262094,Lightning Charging Cable,1,14.95,09/08/19 11:17,"318 Lincoln St, San Francisco, CA 94016" +262095,Wired Headphones,1,11.99,09/16/19 10:40,"346 West St, San Francisco, CA 94016" +262096,20in Monitor,1,109.99,09/04/19 18:19,"494 Pine St, Portland, OR 97035" +262097,AA Batteries (4-pack),1,3.84,09/25/19 19:41,"728 Walnut St, Los Angeles, CA 90001" +262098,AA Batteries (4-pack),2,3.84,09/26/19 10:24,"71 Lakeview St, Portland, OR 97035" +262099,Lightning Charging Cable,1,14.95,09/01/19 14:47,"703 Hill St, Los Angeles, CA 90001" +262100,Macbook Pro Laptop,1,1700,09/02/19 03:26,"625 River St, Atlanta, GA 30301" +262101,AA Batteries (4-pack),1,3.84,09/30/19 00:20,"521 4th St, Boston, MA 02215" +262102,Flatscreen TV,1,300,09/19/19 17:17,"559 Chestnut St, San Francisco, CA 94016" +262103,Bose SoundSport Headphones,1,99.99,09/06/19 13:25,"44 Cedar St, San Francisco, CA 94016" +262104,Macbook Pro Laptop,1,1700,09/07/19 23:01,"787 10th St, New York City, NY 10001" +262105,Google Phone,1,600,09/22/19 17:29,"101 Adams St, San Francisco, CA 94016" +262105,Lightning Charging Cable,1,14.95,09/22/19 17:29,"101 Adams St, San Francisco, CA 94016" +262106,LG Washing Machine,1,600.0,09/24/19 10:43,"898 Church St, Seattle, WA 98101" +262107,Apple Airpods Headphones,1,150,09/27/19 09:58,"746 Walnut St, Austin, TX 73301" +262108,LG Dryer,1,600.0,09/28/19 11:01,"423 South St, San Francisco, CA 94016" +262109,ThinkPad Laptop,1,999.99,09/29/19 22:56,"902 Pine St, New York City, NY 10001" +262110,Wired Headphones,1,11.99,09/28/19 17:11,"759 South St, San Francisco, CA 94016" +262111,Lightning Charging Cable,1,14.95,09/09/19 11:57,"638 Jackson St, Los Angeles, CA 90001" +262112,Apple Airpods Headphones,1,150,09/19/19 19:03,"179 Park St, Atlanta, GA 30301" +262113,AA Batteries (4-pack),1,3.84,09/29/19 08:47,"242 Wilson St, Boston, MA 02215" +262114,Bose SoundSport Headphones,1,99.99,09/29/19 19:23,"387 Ridge St, Los Angeles, CA 90001" +262115,Lightning Charging Cable,1,14.95,09/28/19 12:04,"372 Pine St, New York City, NY 10001" +262116,Apple Airpods Headphones,1,150,09/26/19 13:28,"153 Hickory St, San Francisco, CA 94016" +262117,AAA Batteries (4-pack),1,2.99,09/05/19 13:34,"957 Wilson St, Los Angeles, CA 90001" +262118,Apple Airpods Headphones,1,150,09/21/19 14:25,"165 4th St, Los Angeles, CA 90001" +262119,AAA Batteries (4-pack),1,2.99,09/11/19 07:53,"870 11th St, Los Angeles, CA 90001" +262120,27in 4K Gaming Monitor,1,389.99,09/27/19 19:53,"966 Jackson St, Atlanta, GA 30301" +262121,AAA Batteries (4-pack),1,2.99,09/24/19 16:34,"61 Willow St, Los Angeles, CA 90001" +262122,USB-C Charging Cable,1,11.95,09/03/19 18:27,"473 8th St, San Francisco, CA 94016" +262123,AAA Batteries (4-pack),3,2.99,09/16/19 21:33,"440 Pine St, Boston, MA 02215" +262124,iPhone,1,700,09/19/19 10:55,"309 2nd St, Austin, TX 73301" +262125,AAA Batteries (4-pack),2,2.99,09/06/19 22:43,"624 7th St, San Francisco, CA 94016" +262126,Bose SoundSport Headphones,1,99.99,09/06/19 12:02,"338 8th St, Atlanta, GA 30301" +262127,AA Batteries (4-pack),1,3.84,09/13/19 18:29,"207 Walnut St, New York City, NY 10001" +262128,Apple Airpods Headphones,1,150,09/12/19 13:57,"490 8th St, San Francisco, CA 94016" +262129,Wired Headphones,1,11.99,09/04/19 18:39,"999 Sunset St, Los Angeles, CA 90001" +262130,AAA Batteries (4-pack),2,2.99,09/02/19 12:32,"349 8th St, Los Angeles, CA 90001" +262131,AA Batteries (4-pack),1,3.84,09/16/19 21:36,"548 Spruce St, New York City, NY 10001" +262132,Lightning Charging Cable,1,14.95,09/18/19 20:53,"471 Highland St, Boston, MA 02215" +262133,USB-C Charging Cable,1,11.95,09/18/19 15:48,"237 Sunset St, New York City, NY 10001" +262134,20in Monitor,1,109.99,09/10/19 13:04,"910 4th St, Boston, MA 02215" +262135,Lightning Charging Cable,1,14.95,09/01/19 10:28,"196 North St, Atlanta, GA 30301" +262136,Apple Airpods Headphones,1,150,09/29/19 19:00,"573 1st St, Los Angeles, CA 90001" +262137,Lightning Charging Cable,1,14.95,09/19/19 21:46,"604 Church St, Los Angeles, CA 90001" +262138,USB-C Charging Cable,1,11.95,09/18/19 18:25,"59 Willow St, San Francisco, CA 94016" +262139,AAA Batteries (4-pack),1,2.99,09/16/19 19:49,"311 Johnson St, Boston, MA 02215" +262140,Apple Airpods Headphones,1,150,09/20/19 10:24,"185 Wilson St, San Francisco, CA 94016" +262141,USB-C Charging Cable,1,11.95,09/28/19 17:10,"372 Washington St, New York City, NY 10001" +262142,34in Ultrawide Monitor,1,379.99,09/24/19 10:56,"496 5th St, Los Angeles, CA 90001" +262143,Bose SoundSport Headphones,1,99.99,09/15/19 17:16,"230 Johnson St, Atlanta, GA 30301" +262144,AA Batteries (4-pack),1,3.84,09/08/19 21:39,"168 West St, Austin, TX 73301" +262145,20in Monitor,1,109.99,09/18/19 17:45,"44 Main St, Boston, MA 02215" +262146,Apple Airpods Headphones,1,150,09/24/19 12:59,"301 Wilson St, Atlanta, GA 30301" +262147,iPhone,1,700,09/25/19 11:50,"753 Maple St, Portland, OR 97035" +262148,34in Ultrawide Monitor,1,379.99,09/22/19 22:51,"876 Johnson St, Portland, OR 97035" +262149,USB-C Charging Cable,2,11.95,09/17/19 15:17,"585 Highland St, New York City, NY 10001" +262150,Lightning Charging Cable,1,14.95,09/18/19 20:04,"336 Elm St, San Francisco, CA 94016" +262151,27in FHD Monitor,1,149.99,09/15/19 09:45,"98 Center St, Los Angeles, CA 90001" +262152,20in Monitor,1,109.99,09/30/19 14:05,"964 Highland St, Atlanta, GA 30301" +262153,Bose SoundSport Headphones,1,99.99,09/11/19 11:59,"808 Johnson St, Los Angeles, CA 90001" +262154,Wired Headphones,1,11.99,09/15/19 02:12,"114 9th St, Dallas, TX 75001" +262155,Google Phone,1,600,09/03/19 12:31,"492 North St, San Francisco, CA 94016" +262156,Wired Headphones,1,11.99,09/12/19 16:00,"329 Highland St, San Francisco, CA 94016" +262157,ThinkPad Laptop,1,999.99,09/17/19 20:52,"712 Maple St, Seattle, WA 98101" +262158,Wired Headphones,1,11.99,09/15/19 16:52,"796 Park St, Los Angeles, CA 90001" +262159,Bose SoundSport Headphones,1,99.99,09/09/19 19:51,"921 Willow St, San Francisco, CA 94016" +262160,Bose SoundSport Headphones,1,99.99,09/12/19 20:39,"99 Main St, Boston, MA 02215" +262161,27in 4K Gaming Monitor,1,389.99,09/18/19 09:56,"554 Willow St, Boston, MA 02215" +262162,Bose SoundSport Headphones,1,99.99,09/15/19 07:24,"1 Willow St, Portland, OR 97035" +262163,iPhone,1,700,09/10/19 11:45,"714 Elm St, Dallas, TX 75001" +262164,AAA Batteries (4-pack),1,2.99,09/01/19 20:09,"501 Washington St, Los Angeles, CA 90001" +262165,AA Batteries (4-pack),4,3.84,09/25/19 15:20,"144 Wilson St, Los Angeles, CA 90001" +262166,Lightning Charging Cable,1,14.95,09/20/19 16:00,"635 Pine St, San Francisco, CA 94016" +262167,AA Batteries (4-pack),1,3.84,09/29/19 14:34,"486 6th St, Dallas, TX 75001" +262168,Apple Airpods Headphones,1,150,09/19/19 14:02,"410 1st St, San Francisco, CA 94016" +262169,34in Ultrawide Monitor,1,379.99,09/13/19 20:18,"70 Willow St, San Francisco, CA 94016" +262170,Bose SoundSport Headphones,1,99.99,09/20/19 12:58,"981 Pine St, Seattle, WA 98101" +262171,27in 4K Gaming Monitor,1,389.99,09/04/19 15:38,"71 Willow St, San Francisco, CA 94016" +262172,Flatscreen TV,1,300,09/03/19 18:09,"214 1st St, Atlanta, GA 30301" +262173,Apple Airpods Headphones,1,150,09/08/19 07:46,"128 Church St, Portland, OR 97035" +262174,AA Batteries (4-pack),2,3.84,09/06/19 00:54,"327 Cedar St, Los Angeles, CA 90001" +262175,Wired Headphones,1,11.99,09/12/19 21:52,"187 8th St, San Francisco, CA 94016" +262175,Wired Headphones,1,11.99,09/12/19 21:52,"187 8th St, San Francisco, CA 94016" +262176,27in 4K Gaming Monitor,1,389.99,09/29/19 14:15,"722 South St, San Francisco, CA 94016" +262177,Flatscreen TV,1,300,09/26/19 09:40,"70 Johnson St, Seattle, WA 98101" +262178,Lightning Charging Cable,1,14.95,09/04/19 15:15,"852 8th St, Portland, OR 97035" +262179,Wired Headphones,1,11.99,09/19/19 12:20,"150 1st St, New York City, NY 10001" +262180,Wired Headphones,1,11.99,09/15/19 07:22,"236 Maple St, San Francisco, CA 94016" +262181,Wired Headphones,1,11.99,09/15/19 10:38,"128 Willow St, Austin, TX 73301" +262182,Apple Airpods Headphones,1,150,09/15/19 17:20,"56 Elm St, Los Angeles, CA 90001" +262183,Lightning Charging Cable,1,14.95,09/08/19 12:18,"409 Church St, San Francisco, CA 94016" +262184,ThinkPad Laptop,1,999.99,09/05/19 22:52,"829 Lincoln St, New York City, NY 10001" +262185,AA Batteries (4-pack),1,3.84,09/18/19 11:35,"50 Lakeview St, San Francisco, CA 94016" +262186,AAA Batteries (4-pack),1,2.99,09/17/19 23:21,"847 Johnson St, New York City, NY 10001" +262187,USB-C Charging Cable,1,11.95,09/18/19 19:33,"851 2nd St, Atlanta, GA 30301" +262188,27in FHD Monitor,1,149.99,09/05/19 18:14,"763 8th St, Dallas, TX 75001" +262189,Wired Headphones,1,11.99,09/07/19 17:02,"700 Jackson St, San Francisco, CA 94016" +262190,Lightning Charging Cable,1,14.95,09/23/19 19:45,"44 Sunset St, San Francisco, CA 94016" +262191,USB-C Charging Cable,1,11.95,09/08/19 19:31,"26 9th St, Los Angeles, CA 90001" +262192,AA Batteries (4-pack),1,3.84,09/21/19 08:15,"166 Sunset St, Boston, MA 02215" +262193,Apple Airpods Headphones,1,150,09/17/19 20:03,"282 Johnson St, New York City, NY 10001" +262194,AA Batteries (4-pack),1,3.84,09/17/19 11:17,"901 Wilson St, Los Angeles, CA 90001" +262195,AAA Batteries (4-pack),1,2.99,09/21/19 19:43,"61 Sunset St, Seattle, WA 98101" +262196,Macbook Pro Laptop,1,1700,09/09/19 16:04,"387 Lakeview St, Atlanta, GA 30301" +262197,AA Batteries (4-pack),1,3.84,09/10/19 15:31,"704 Jefferson St, New York City, NY 10001" +262198,USB-C Charging Cable,1,11.95,09/19/19 09:24,"559 13th St, Dallas, TX 75001" +262199,Lightning Charging Cable,2,14.95,09/14/19 01:30,"149 Park St, Seattle, WA 98101" +262200,USB-C Charging Cable,1,11.95,09/23/19 14:19,"830 Madison St, Austin, TX 73301" +262201,Apple Airpods Headphones,1,150,09/06/19 11:37,"633 Dogwood St, Atlanta, GA 30301" +262202,34in Ultrawide Monitor,1,379.99,09/20/19 19:03,"970 South St, Austin, TX 73301" +262203,Wired Headphones,1,11.99,09/15/19 17:59,"346 North St, San Francisco, CA 94016" +262204,Wired Headphones,1,11.99,09/05/19 14:07,"733 Hickory St, Los Angeles, CA 90001" +262205,27in FHD Monitor,1,149.99,09/24/19 08:33,"743 14th St, Boston, MA 02215" +262206,AAA Batteries (4-pack),1,2.99,09/17/19 09:57,"55 14th St, Austin, TX 73301" +262207,iPhone,1,700,09/02/19 14:46,"198 Washington St, San Francisco, CA 94016" +262208,AAA Batteries (4-pack),4,2.99,09/25/19 19:54,"838 Maple St, New York City, NY 10001" +262209,AAA Batteries (4-pack),1,2.99,09/21/19 14:25,"460 Adams St, Austin, TX 73301" +262210,Lightning Charging Cable,1,14.95,09/27/19 15:04,"533 Lake St, New York City, NY 10001" +262211,34in Ultrawide Monitor,1,379.99,09/30/19 12:07,"671 Cedar St, San Francisco, CA 94016" +262212,iPhone,1,700,09/21/19 09:24,"579 4th St, San Francisco, CA 94016" +262212,Apple Airpods Headphones,1,150,09/21/19 09:24,"579 4th St, San Francisco, CA 94016" +262212,Wired Headphones,1,11.99,09/21/19 09:24,"579 4th St, San Francisco, CA 94016" +262213,Apple Airpods Headphones,1,150,09/02/19 10:14,"736 Cedar St, New York City, NY 10001" +262214,27in 4K Gaming Monitor,1,389.99,09/10/19 22:41,"158 Cedar St, Boston, MA 02215" +262215,Apple Airpods Headphones,1,150,09/01/19 23:08,"374 Lakeview St, Atlanta, GA 30301" +262216,Bose SoundSport Headphones,1,99.99,09/29/19 20:28,"63 South St, Los Angeles, CA 90001" +262217,Google Phone,1,600,09/14/19 01:06,"449 Main St, Atlanta, GA 30301" +262217,USB-C Charging Cable,1,11.95,09/14/19 01:06,"449 Main St, Atlanta, GA 30301" +262218,Lightning Charging Cable,1,14.95,09/06/19 20:38,"593 Highland St, Portland, OR 97035" +262219,Macbook Pro Laptop,1,1700,09/20/19 08:14,"832 Elm St, San Francisco, CA 94016" +262220,AA Batteries (4-pack),1,3.84,09/10/19 03:00,"312 Ridge St, Seattle, WA 98101" +262221,LG Dryer,1,600.0,09/22/19 19:45,"33 Park St, San Francisco, CA 94016" +262222,Lightning Charging Cable,1,14.95,09/05/19 11:09,"433 Church St, New York City, NY 10001" +262223,Wired Headphones,1,11.99,09/23/19 14:35,"98 Elm St, Austin, TX 73301" +262224,Wired Headphones,1,11.99,09/16/19 06:40,"902 7th St, Boston, MA 02215" +262225,Macbook Pro Laptop,1,1700,09/19/19 23:39,"190 1st St, Los Angeles, CA 90001" +262226,Apple Airpods Headphones,1,150,09/22/19 11:40,"168 Hill St, Dallas, TX 75001" +262227,Bose SoundSport Headphones,1,99.99,09/09/19 13:34,"369 Elm St, San Francisco, CA 94016" +262228,Bose SoundSport Headphones,1,99.99,09/17/19 19:09,"553 West St, Boston, MA 02215" +262229,Apple Airpods Headphones,1,150,09/10/19 19:46,"740 4th St, San Francisco, CA 94016" +262230,Google Phone,1,600,09/21/19 07:00,"936 Willow St, Los Angeles, CA 90001" +262231,27in FHD Monitor,1,149.99,09/18/19 15:03,"108 10th St, Portland, OR 97035" +262232,USB-C Charging Cable,1,11.95,09/05/19 16:47,"466 West St, Dallas, TX 75001" +262233,AAA Batteries (4-pack),1,2.99,09/28/19 08:34,"91 6th St, Portland, OR 97035" +262234,Wired Headphones,1,11.99,09/06/19 19:12,"724 North St, Los Angeles, CA 90001" +262235,27in FHD Monitor,1,149.99,09/22/19 22:50,"126 Highland St, San Francisco, CA 94016" +262236,Apple Airpods Headphones,1,150,09/29/19 13:17,"292 Chestnut St, Portland, OR 97035" +262237,Apple Airpods Headphones,1,150,09/16/19 01:52,"151 Center St, San Francisco, CA 94016" +262238,Wired Headphones,1,11.99,09/25/19 22:09,"866 Elm St, Dallas, TX 75001" +262239,Bose SoundSport Headphones,1,99.99,09/01/19 21:26,"495 Ridge St, Dallas, TX 75001" +262240,Flatscreen TV,1,300,09/15/19 13:58,"306 Lake St, Portland, OR 97035" +262241,27in 4K Gaming Monitor,1,389.99,09/17/19 17:59,"141 9th St, New York City, NY 10001" +262241,Bose SoundSport Headphones,1,99.99,09/17/19 17:59,"141 9th St, New York City, NY 10001" +262242,Lightning Charging Cable,2,14.95,09/10/19 10:46,"961 Washington St, San Francisco, CA 94016" +262243,Apple Airpods Headphones,1,150,09/14/19 13:44,"670 Maple St, Dallas, TX 75001" +262244,AAA Batteries (4-pack),2,2.99,09/29/19 11:59,"949 Maple St, San Francisco, CA 94016" +262245,34in Ultrawide Monitor,1,379.99,09/27/19 22:26,"683 Hickory St, Los Angeles, CA 90001" +262246,USB-C Charging Cable,1,11.95,09/26/19 10:44,"994 Church St, New York City, NY 10001" +262247,27in FHD Monitor,1,149.99,09/22/19 14:52,"361 River St, Dallas, TX 75001" +262248,27in 4K Gaming Monitor,1,389.99,09/16/19 09:50,"675 9th St, San Francisco, CA 94016" +262249,AA Batteries (4-pack),1,3.84,09/24/19 08:15,"208 5th St, Atlanta, GA 30301" +262250,Google Phone,1,600,09/10/19 13:20,"584 Chestnut St, New York City, NY 10001" +262250,USB-C Charging Cable,1,11.95,09/10/19 13:20,"584 Chestnut St, New York City, NY 10001" +262251,Lightning Charging Cable,1,14.95,09/15/19 11:04,"77 Chestnut St, Los Angeles, CA 90001" +262252,Lightning Charging Cable,1,14.95,09/22/19 12:17,"755 Sunset St, Seattle, WA 98101" +262253,Vareebadd Phone,1,400,09/20/19 13:05,"456 River St, Los Angeles, CA 90001" +262254,Lightning Charging Cable,1,14.95,09/30/19 09:57,"746 13th St, San Francisco, CA 94016" +262255,AA Batteries (4-pack),1,3.84,09/12/19 06:42,"666 Main St, New York City, NY 10001" +262256,AA Batteries (4-pack),2,3.84,09/17/19 19:52,"49 Wilson St, San Francisco, CA 94016" +262257,Wired Headphones,1,11.99,09/22/19 15:55,"842 Highland St, Los Angeles, CA 90001" +262258,Wired Headphones,1,11.99,09/16/19 13:52,"46 7th St, Boston, MA 02215" +262259,Lightning Charging Cable,1,14.95,09/11/19 13:24,"299 12th St, Boston, MA 02215" +262260,Apple Airpods Headphones,1,150,09/30/19 10:29,"993 Lincoln St, San Francisco, CA 94016" +262261,27in 4K Gaming Monitor,1,389.99,09/19/19 19:19,"602 Lakeview St, Atlanta, GA 30301" +262262,USB-C Charging Cable,1,11.95,09/17/19 16:39,"380 5th St, San Francisco, CA 94016" +262263,iPhone,1,700,09/01/19 09:41,"110 14th St, San Francisco, CA 94016" +262264,AA Batteries (4-pack),1,3.84,09/20/19 15:03,"670 9th St, San Francisco, CA 94016" +262265,AA Batteries (4-pack),1,3.84,09/18/19 13:01,"732 6th St, Boston, MA 02215" +262266,ThinkPad Laptop,1,999.99,09/08/19 20:41,"609 4th St, Seattle, WA 98101" +262267,Lightning Charging Cable,1,14.95,09/26/19 03:17,"737 14th St, Boston, MA 02215" +262268,USB-C Charging Cable,1,11.95,09/15/19 21:29,"520 South St, Los Angeles, CA 90001" +262269,34in Ultrawide Monitor,1,379.99,09/02/19 17:53,"644 Park St, San Francisco, CA 94016" +262270,Wired Headphones,1,11.99,09/22/19 08:40,"123 Adams St, Boston, MA 02215" +262271,AA Batteries (4-pack),1,3.84,09/19/19 12:56,"603 River St, New York City, NY 10001" +262271,USB-C Charging Cable,1,11.95,09/19/19 12:56,"603 River St, New York City, NY 10001" +262272,Google Phone,1,600,09/02/19 09:37,"905 Walnut St, Austin, TX 73301" +262272,USB-C Charging Cable,1,11.95,09/02/19 09:37,"905 Walnut St, Austin, TX 73301" +262273,Wired Headphones,1,11.99,09/05/19 22:43,"980 South St, Austin, TX 73301" +262274,AA Batteries (4-pack),1,3.84,09/12/19 09:38,"24 Willow St, Los Angeles, CA 90001" +262275,AAA Batteries (4-pack),1,2.99,09/23/19 15:11,"25 6th St, Los Angeles, CA 90001" +262276,Vareebadd Phone,1,400,09/04/19 21:36,"727 14th St, San Francisco, CA 94016" +262277,34in Ultrawide Monitor,1,379.99,09/17/19 17:30,"369 Jackson St, Portland, OR 97035" +262278,Wired Headphones,1,11.99,09/19/19 11:18,"93 Wilson St, San Francisco, CA 94016" +262279,ThinkPad Laptop,1,999.99,09/06/19 10:23,"928 Willow St, San Francisco, CA 94016" +262280,AA Batteries (4-pack),1,3.84,09/25/19 11:08,"766 Washington St, New York City, NY 10001" +262281,Wired Headphones,1,11.99,09/18/19 23:26,"671 7th St, Seattle, WA 98101" +262282,Flatscreen TV,1,300,09/26/19 20:46,"367 Cherry St, San Francisco, CA 94016" +262283,Lightning Charging Cable,1,14.95,09/25/19 09:31,"811 Elm St, San Francisco, CA 94016" +262284,Apple Airpods Headphones,1,150,09/18/19 17:47,"719 Ridge St, Los Angeles, CA 90001" +262285,27in FHD Monitor,1,149.99,09/23/19 21:02,"901 Spruce St, San Francisco, CA 94016" +262286,AAA Batteries (4-pack),1,2.99,09/22/19 19:22,"462 Cedar St, Atlanta, GA 30301" +262287,ThinkPad Laptop,1,999.99,09/14/19 12:36,"768 8th St, Los Angeles, CA 90001" +262288,USB-C Charging Cable,1,11.95,09/03/19 13:37,"546 South St, San Francisco, CA 94016" +262289,USB-C Charging Cable,1,11.95,09/01/19 22:08,"797 Sunset St, San Francisco, CA 94016" +262290,AA Batteries (4-pack),1,3.84,09/14/19 11:39,"20 Wilson St, Atlanta, GA 30301" +262291,Lightning Charging Cable,1,14.95,09/14/19 20:17,"854 Lincoln St, New York City, NY 10001" +262292,Google Phone,1,600,09/11/19 14:29,"332 Center St, San Francisco, CA 94016" +262293,AA Batteries (4-pack),1,3.84,09/10/19 11:55,"56 Johnson St, San Francisco, CA 94016" +262294,AA Batteries (4-pack),2,3.84,09/24/19 15:11,"89 Johnson St, Dallas, TX 75001" +262295,Apple Airpods Headphones,1,150,09/19/19 22:10,"531 Willow St, Boston, MA 02215" +262296,LG Dryer,1,600.0,09/06/19 17:26,"874 Cedar St, New York City, NY 10001" +262297,AA Batteries (4-pack),1,3.84,09/20/19 20:01,"592 1st St, Boston, MA 02215" +262298,Apple Airpods Headphones,1,150,09/29/19 16:59,"508 Lakeview St, Los Angeles, CA 90001" +262299,AAA Batteries (4-pack),1,2.99,09/30/19 20:00,"619 4th St, San Francisco, CA 94016" +262300,20in Monitor,1,109.99,09/12/19 19:43,"952 Pine St, Seattle, WA 98101" +262301,Wired Headphones,1,11.99,09/10/19 12:48,"298 14th St, San Francisco, CA 94016" +262302,Wired Headphones,1,11.99,09/16/19 12:33,"793 Wilson St, San Francisco, CA 94016" +262303,27in FHD Monitor,1,149.99,09/03/19 13:18,"438 Spruce St, Austin, TX 73301" +262304,USB-C Charging Cable,1,11.95,09/04/19 11:07,"480 Chestnut St, Los Angeles, CA 90001" +262305,AAA Batteries (4-pack),1,2.99,09/23/19 14:43,"840 Forest St, Los Angeles, CA 90001" +262306,Bose SoundSport Headphones,1,99.99,09/29/19 19:58,"360 2nd St, Boston, MA 02215" +262307,USB-C Charging Cable,1,11.95,09/13/19 19:47,"155 Main St, Los Angeles, CA 90001" +262308,Google Phone,1,600,09/23/19 23:03,"969 Willow St, San Francisco, CA 94016" +262308,Wired Headphones,1,11.99,09/23/19 23:03,"969 Willow St, San Francisco, CA 94016" +262309,USB-C Charging Cable,1,11.95,09/23/19 13:46,"394 Cherry St, New York City, NY 10001" +262310,Lightning Charging Cable,1,14.95,09/10/19 12:28,"470 6th St, San Francisco, CA 94016" +262311,Macbook Pro Laptop,1,1700,09/12/19 13:08,"327 Cedar St, San Francisco, CA 94016" +262312,Wired Headphones,1,11.99,09/22/19 18:25,"683 Pine St, San Francisco, CA 94016" +262313,Lightning Charging Cable,1,14.95,09/27/19 00:36,"436 Lakeview St, San Francisco, CA 94016" +262314,AA Batteries (4-pack),1,3.84,09/29/19 20:52,"373 11th St, Dallas, TX 75001" +262315,Wired Headphones,2,11.99,09/03/19 11:06,"220 Ridge St, Portland, OR 97035" +262316,Bose SoundSport Headphones,1,99.99,09/06/19 09:26,"887 West St, Boston, MA 02215" +262317,AAA Batteries (4-pack),1,2.99,09/24/19 16:15,"143 9th St, San Francisco, CA 94016" +262318,Bose SoundSport Headphones,1,99.99,09/12/19 17:08,"17 North St, Seattle, WA 98101" +262319,Google Phone,1,600,09/19/19 21:33,"859 Madison St, Seattle, WA 98101" +262319,USB-C Charging Cable,1,11.95,09/19/19 21:33,"859 Madison St, Seattle, WA 98101" +262320,Lightning Charging Cable,2,14.95,09/23/19 08:39,"291 11th St, Atlanta, GA 30301" +262321,Bose SoundSport Headphones,1,99.99,09/25/19 02:37,"36 Cedar St, Seattle, WA 98101" +262322,Apple Airpods Headphones,1,150,09/19/19 10:53,"236 2nd St, Boston, MA 02215" +262323,Macbook Pro Laptop,1,1700,09/17/19 09:26,"385 4th St, New York City, NY 10001" +262324,Lightning Charging Cable,1,14.95,09/12/19 14:42,"93 2nd St, Los Angeles, CA 90001" +262325,Lightning Charging Cable,1,14.95,09/22/19 13:17,"990 Park St, New York City, NY 10001" +262326,Vareebadd Phone,1,400,09/21/19 18:35,"390 Maple St, San Francisco, CA 94016" +262327,ThinkPad Laptop,1,999.99,09/23/19 12:49,"406 Sunset St, Seattle, WA 98101" +262328,Apple Airpods Headphones,1,150,09/06/19 10:52,"114 6th St, Austin, TX 73301" +262328,27in 4K Gaming Monitor,1,389.99,09/06/19 10:52,"114 6th St, Austin, TX 73301" +262329,iPhone,1,700,09/03/19 18:51,"83 Cedar St, New York City, NY 10001" +262329,Lightning Charging Cable,1,14.95,09/03/19 18:51,"83 Cedar St, New York City, NY 10001" +262330,27in 4K Gaming Monitor,1,389.99,09/03/19 21:46,"308 1st St, Boston, MA 02215" +262331,Apple Airpods Headphones,1,150,09/01/19 16:06,"115 10th St, Austin, TX 73301" +262332,ThinkPad Laptop,1,999.99,09/13/19 12:21,"495 Washington St, New York City, NY 10001" +262333,Lightning Charging Cable,1,14.95,09/05/19 13:45,"661 Main St, Seattle, WA 98101" +262334,USB-C Charging Cable,1,11.95,09/11/19 16:06,"573 Sunset St, Seattle, WA 98101" +262335,Flatscreen TV,1,300,09/04/19 15:14,"168 West St, Boston, MA 02215" +262336,AAA Batteries (4-pack),1,2.99,09/08/19 20:16,"379 Elm St, Portland, OR 97035" +262337,Wired Headphones,1,11.99,09/29/19 10:51,"997 5th St, Los Angeles, CA 90001" +262338,Apple Airpods Headphones,1,150,09/25/19 01:20,"977 10th St, Portland, OR 97035" +262339,AA Batteries (4-pack),1,3.84,09/25/19 16:22,"559 Walnut St, Seattle, WA 98101" +262340,Google Phone,1,600,09/10/19 20:57,"404 West St, San Francisco, CA 94016" +262341,Flatscreen TV,1,300,09/01/19 23:13,"45 Hill St, San Francisco, CA 94016" +262342,AA Batteries (4-pack),1,3.84,09/13/19 13:38,"591 Dogwood St, Dallas, TX 75001" +262343,USB-C Charging Cable,1,11.95,09/03/19 22:10,"583 Hickory St, Los Angeles, CA 90001" +262344,iPhone,1,700,09/13/19 08:08,"982 Willow St, San Francisco, CA 94016" +262344,Lightning Charging Cable,1,14.95,09/13/19 08:08,"982 Willow St, San Francisco, CA 94016" +262345,Wired Headphones,1,11.99,09/30/19 05:55,"801 Center St, New York City, NY 10001" +262346,Wired Headphones,1,11.99,09/30/19 09:53,"961 Hill St, Los Angeles, CA 90001" +262347,USB-C Charging Cable,1,11.95,09/22/19 16:22,"311 Church St, Seattle, WA 98101" +262348,Bose SoundSport Headphones,1,99.99,09/24/19 11:29,"629 Dogwood St, Boston, MA 02215" +262349,AA Batteries (4-pack),1,3.84,09/05/19 17:44,"930 5th St, San Francisco, CA 94016" +262350,Wired Headphones,1,11.99,09/20/19 20:49,"859 Chestnut St, New York City, NY 10001" +262351,ThinkPad Laptop,1,999.99,09/20/19 17:40,"264 Sunset St, Los Angeles, CA 90001" +262352,USB-C Charging Cable,3,11.95,09/04/19 14:14,"441 Dogwood St, San Francisco, CA 94016" +262353,Lightning Charging Cable,1,14.95,09/24/19 22:44,"358 Lincoln St, Boston, MA 02215" +262354,Wired Headphones,2,11.99,09/13/19 04:49,"320 Pine St, Dallas, TX 75001" +262355,Lightning Charging Cable,1,14.95,09/08/19 19:49,"244 Ridge St, Austin, TX 73301" +262356,Lightning Charging Cable,1,14.95,09/07/19 15:55,"86 14th St, Boston, MA 02215" +262357,Apple Airpods Headphones,1,150,09/06/19 20:13,"10 Lakeview St, Los Angeles, CA 90001" +262358,ThinkPad Laptop,1,999.99,09/24/19 19:05,"473 12th St, Los Angeles, CA 90001" +262359,Apple Airpods Headphones,1,150,09/19/19 20:19,"457 Wilson St, Atlanta, GA 30301" +262360,LG Washing Machine,1,600.0,09/19/19 08:52,"234 Sunset St, New York City, NY 10001" +262361,27in FHD Monitor,1,149.99,09/14/19 12:25,"723 9th St, Atlanta, GA 30301" +262362,27in 4K Gaming Monitor,1,389.99,09/13/19 11:05,"454 Pine St, San Francisco, CA 94016" +262363,Lightning Charging Cable,1,14.95,09/08/19 13:01,"231 Walnut St, Boston, MA 02215" +262364,Lightning Charging Cable,1,14.95,09/15/19 17:35,"132 Lakeview St, New York City, NY 10001" +262365,AA Batteries (4-pack),4,3.84,09/04/19 08:55,"582 Jefferson St, Boston, MA 02215" +262366,AA Batteries (4-pack),2,3.84,09/04/19 09:16,"458 Lake St, San Francisco, CA 94016" +262367,27in FHD Monitor,1,149.99,09/08/19 07:57,"320 5th St, San Francisco, CA 94016" +262367,iPhone,1,700,09/08/19 07:57,"320 5th St, San Francisco, CA 94016" +262368,AA Batteries (4-pack),2,3.84,09/11/19 08:19,"571 Sunset St, Austin, TX 73301" +262368,34in Ultrawide Monitor,1,379.99,09/11/19 08:19,"571 Sunset St, Austin, TX 73301" +262369,Wired Headphones,1,11.99,09/14/19 14:01,"673 Sunset St, Portland, ME 04101" +262370,Apple Airpods Headphones,1,150,09/02/19 14:40,"334 Adams St, Los Angeles, CA 90001" +262371,Apple Airpods Headphones,1,150,09/02/19 20:38,"83 10th St, San Francisco, CA 94016" +262372,Apple Airpods Headphones,1,150,09/22/19 14:06,"221 South St, New York City, NY 10001" +262373,Google Phone,1,600,09/28/19 18:37,"117 West St, Boston, MA 02215" +262374,AA Batteries (4-pack),1,3.84,09/24/19 17:29,"664 Dogwood St, Los Angeles, CA 90001" +262375,Apple Airpods Headphones,1,150,09/27/19 22:12,"210 12th St, San Francisco, CA 94016" +262376,Apple Airpods Headphones,1,150,09/30/19 18:37,"750 12th St, Seattle, WA 98101" +262377,Flatscreen TV,1,300,09/15/19 17:53,"71 1st St, Boston, MA 02215" +262378,34in Ultrawide Monitor,1,379.99,09/13/19 20:00,"874 13th St, Boston, MA 02215" +262379,34in Ultrawide Monitor,1,379.99,09/05/19 14:39,"936 Dogwood St, Seattle, WA 98101" +262380,Lightning Charging Cable,1,14.95,09/27/19 12:29,"243 Willow St, Dallas, TX 75001" +262381,ThinkPad Laptop,1,999.99,09/24/19 08:58,"257 13th St, San Francisco, CA 94016" +262382,Wired Headphones,1,11.99,09/30/19 00:41,"152 6th St, New York City, NY 10001" +262383,AA Batteries (4-pack),1,3.84,09/18/19 16:00,"439 13th St, Seattle, WA 98101" +262384,27in FHD Monitor,1,149.99,09/15/19 21:02,"197 South St, Los Angeles, CA 90001" +262385,AAA Batteries (4-pack),1,2.99,09/24/19 23:09,"466 Church St, San Francisco, CA 94016" +262386,USB-C Charging Cable,1,11.95,09/26/19 19:39,"794 Washington St, Dallas, TX 75001" +262387,AA Batteries (4-pack),1,3.84,09/14/19 09:32,"991 Meadow St, San Francisco, CA 94016" +262388,AA Batteries (4-pack),2,3.84,09/26/19 14:05,"185 West St, San Francisco, CA 94016" +262389,Lightning Charging Cable,1,14.95,09/11/19 17:50,"576 Maple St, San Francisco, CA 94016" +262390,AA Batteries (4-pack),1,3.84,09/27/19 08:35,"830 12th St, New York City, NY 10001" +262391,Apple Airpods Headphones,1,150,09/13/19 07:51,"514 Church St, San Francisco, CA 94016" +262392,34in Ultrawide Monitor,1,379.99,09/23/19 13:26,"881 Park St, Portland, OR 97035" +262393,27in 4K Gaming Monitor,1,389.99,09/27/19 21:07,"597 1st St, Los Angeles, CA 90001" +262394,Apple Airpods Headphones,1,150,09/18/19 05:44,"879 Madison St, San Francisco, CA 94016" +262395,AA Batteries (4-pack),1,3.84,09/10/19 09:51,"901 Main St, Boston, MA 02215" +262396,Bose SoundSport Headphones,1,99.99,09/18/19 10:33,"455 10th St, Dallas, TX 75001" +262397,34in Ultrawide Monitor,1,379.99,09/12/19 00:32,"647 Johnson St, Los Angeles, CA 90001" +262398,AAA Batteries (4-pack),2,2.99,09/05/19 13:37,"527 9th St, San Francisco, CA 94016" +262399,Lightning Charging Cable,1,14.95,09/09/19 06:23,"612 Johnson St, San Francisco, CA 94016" +262400,Bose SoundSport Headphones,1,99.99,09/08/19 10:32,"939 Wilson St, San Francisco, CA 94016" +262401,AA Batteries (4-pack),1,3.84,09/05/19 20:20,"590 Hill St, San Francisco, CA 94016" +262402,Wired Headphones,1,11.99,09/09/19 11:36,"291 Madison St, San Francisco, CA 94016" +262403,Lightning Charging Cable,1,14.95,09/17/19 17:04,"924 14th St, Seattle, WA 98101" +262404,Apple Airpods Headphones,1,150,09/20/19 21:16,"214 West St, Portland, OR 97035" +262405,USB-C Charging Cable,1,11.95,09/06/19 16:50,"42 5th St, Dallas, TX 75001" +262406,AA Batteries (4-pack),1,3.84,09/01/19 04:24,"659 Highland St, Atlanta, GA 30301" +262407,27in FHD Monitor,1,149.99,09/19/19 05:23,"323 Lincoln St, Seattle, WA 98101" +262408,AA Batteries (4-pack),1,3.84,09/09/19 17:41,"47 Meadow St, San Francisco, CA 94016" +262409,Apple Airpods Headphones,1,150,09/14/19 18:30,"728 Dogwood St, Seattle, WA 98101" +262410,USB-C Charging Cable,1,11.95,09/25/19 19:18,"974 8th St, New York City, NY 10001" +262411,Apple Airpods Headphones,1,150,09/26/19 11:20,"452 Jackson St, San Francisco, CA 94016" +262412,iPhone,1,700,09/02/19 16:04,"611 Forest St, Dallas, TX 75001" +262413,Apple Airpods Headphones,1,150,09/04/19 20:12,"891 Cedar St, Los Angeles, CA 90001" +262414,Wired Headphones,1,11.99,09/28/19 12:05,"177 South St, Portland, OR 97035" +262415,AA Batteries (4-pack),2,3.84,09/15/19 21:14,"265 Jackson St, Atlanta, GA 30301" +262416,Wired Headphones,1,11.99,09/01/19 16:44,"738 Walnut St, Seattle, WA 98101" +262417,AAA Batteries (4-pack),1,2.99,09/23/19 14:28,"814 Hickory St, Portland, OR 97035" +262418,Vareebadd Phone,1,400,09/30/19 12:26,"499 Johnson St, San Francisco, CA 94016" +262418,USB-C Charging Cable,2,11.95,09/30/19 12:26,"499 Johnson St, San Francisco, CA 94016" +262419,USB-C Charging Cable,1,11.95,09/05/19 00:36,"997 Chestnut St, San Francisco, CA 94016" +262420,27in FHD Monitor,1,149.99,09/08/19 13:30,"57 Wilson St, Los Angeles, CA 90001" +262421,34in Ultrawide Monitor,1,379.99,09/30/19 22:39,"847 Pine St, San Francisco, CA 94016" +262422,AAA Batteries (4-pack),2,2.99,09/19/19 07:54,"175 Pine St, San Francisco, CA 94016" +262423,AA Batteries (4-pack),1,3.84,09/08/19 20:05,"313 Maple St, New York City, NY 10001" +262424,34in Ultrawide Monitor,1,379.99,09/22/19 17:51,"473 Meadow St, Los Angeles, CA 90001" +262425,AA Batteries (4-pack),1,3.84,09/13/19 19:01,"463 Cedar St, Portland, ME 04101" +262426,AAA Batteries (4-pack),1,2.99,09/12/19 16:42,"801 Lincoln St, Los Angeles, CA 90001" +262427,AAA Batteries (4-pack),3,2.99,09/15/19 15:22,"892 Elm St, San Francisco, CA 94016" +262428,Wired Headphones,2,11.99,09/29/19 11:35,"676 West St, Portland, OR 97035" +262429,Google Phone,1,600,09/22/19 11:21,"65 Johnson St, San Francisco, CA 94016" +262429,Wired Headphones,1,11.99,09/22/19 11:21,"65 Johnson St, San Francisco, CA 94016" +262430,AAA Batteries (4-pack),1,2.99,09/01/19 14:40,"319 5th St, Dallas, TX 75001" +262431,USB-C Charging Cable,2,11.95,09/10/19 18:47,"921 West St, Austin, TX 73301" +262432,Apple Airpods Headphones,1,150,09/20/19 23:00,"996 Ridge St, Boston, MA 02215" +262433,USB-C Charging Cable,1,11.95,09/10/19 00:54,"377 Jackson St, Portland, OR 97035" +262434,Apple Airpods Headphones,1,150,09/23/19 07:40,"289 South St, Portland, OR 97035" +262435,Lightning Charging Cable,1,14.95,09/30/19 19:45,"916 Dogwood St, San Francisco, CA 94016" +262436,iPhone,1,700,09/23/19 12:54,"158 North St, New York City, NY 10001" +262437,USB-C Charging Cable,1,11.95,09/17/19 13:43,"724 Lincoln St, Los Angeles, CA 90001" +262438,Macbook Pro Laptop,1,1700,09/14/19 10:06,"173 6th St, San Francisco, CA 94016" +262439,USB-C Charging Cable,1,11.95,09/21/19 12:17,"868 7th St, Seattle, WA 98101" +262440,AA Batteries (4-pack),1,3.84,09/07/19 20:59,"254 North St, San Francisco, CA 94016" +262441,AAA Batteries (4-pack),2,2.99,09/23/19 09:52,"947 Meadow St, Los Angeles, CA 90001" +262442,Lightning Charging Cable,1,14.95,09/07/19 16:07,"806 Jefferson St, Los Angeles, CA 90001" +262443,ThinkPad Laptop,1,999.99,09/13/19 01:50,"726 11th St, New York City, NY 10001" +262444,AAA Batteries (4-pack),2,2.99,09/02/19 07:48,"875 8th St, Boston, MA 02215" +262445,Apple Airpods Headphones,1,150,09/11/19 19:04,"192 8th St, Boston, MA 02215" +262446,27in FHD Monitor,1,149.99,09/06/19 21:21,"341 Lake St, Los Angeles, CA 90001" +262447,27in FHD Monitor,1,149.99,09/01/19 17:39,"952 Highland St, Seattle, WA 98101" +262448,Bose SoundSport Headphones,1,99.99,09/03/19 08:40,"757 Spruce St, Portland, OR 97035" +262449,AAA Batteries (4-pack),1,2.99,09/09/19 18:02,"945 14th St, Los Angeles, CA 90001" +262450,Apple Airpods Headphones,1,150,09/28/19 00:59,"953 7th St, Boston, MA 02215" +262451,Lightning Charging Cable,1,14.95,09/26/19 12:33,"444 Jackson St, Dallas, TX 75001" +262452,Wired Headphones,1,11.99,09/22/19 22:03,"25 4th St, New York City, NY 10001" +262453,Lightning Charging Cable,1,14.95,09/19/19 15:55,"537 Church St, Austin, TX 73301" +262454,Flatscreen TV,1,300,09/26/19 11:21,"137 North St, Atlanta, GA 30301" +262455,20in Monitor,1,109.99,09/19/19 17:58,"74 4th St, San Francisco, CA 94016" +262456,Lightning Charging Cable,1,14.95,09/02/19 21:43,"933 12th St, Los Angeles, CA 90001" +262457,USB-C Charging Cable,1,11.95,09/29/19 08:51,"676 7th St, Los Angeles, CA 90001" +262458,Wired Headphones,1,11.99,09/24/19 15:32,"400 4th St, Dallas, TX 75001" +262459,AAA Batteries (4-pack),1,2.99,09/07/19 10:06,"403 14th St, Dallas, TX 75001" +262460,Vareebadd Phone,1,400,09/04/19 14:11,"114 Sunset St, Boston, MA 02215" +262461,Bose SoundSport Headphones,1,99.99,09/08/19 16:10,"811 13th St, Austin, TX 73301" +262462,Lightning Charging Cable,1,14.95,09/19/19 00:08,"626 Madison St, Los Angeles, CA 90001" +262463,AA Batteries (4-pack),1,3.84,09/09/19 23:07,"15 Lincoln St, Austin, TX 73301" +262464,Bose SoundSport Headphones,1,99.99,09/22/19 19:37,"763 Main St, San Francisco, CA 94016" +262465,AA Batteries (4-pack),1,3.84,09/07/19 13:48,"954 13th St, Los Angeles, CA 90001" +262466,Apple Airpods Headphones,1,150,09/06/19 01:41,"643 Madison St, New York City, NY 10001" +262467,Wired Headphones,2,11.99,09/15/19 10:42,"741 Wilson St, San Francisco, CA 94016" +262468,AAA Batteries (4-pack),1,2.99,09/23/19 14:01,"197 13th St, New York City, NY 10001" +262469,iPhone,1,700,09/23/19 10:02,"402 Willow St, Dallas, TX 75001" +262470,Bose SoundSport Headphones,1,99.99,09/19/19 12:00,"615 Johnson St, Boston, MA 02215" +262471,Lightning Charging Cable,1,14.95,09/04/19 20:48,"796 Maple St, New York City, NY 10001" +262472,AAA Batteries (4-pack),1,2.99,09/14/19 17:49,"132 Cherry St, Atlanta, GA 30301" +262473,iPhone,1,700,09/08/19 21:48,"665 South St, New York City, NY 10001" +262474,Apple Airpods Headphones,1,150,09/22/19 18:42,"960 Washington St, Dallas, TX 75001" +262475,27in 4K Gaming Monitor,1,389.99,09/20/19 12:47,"814 South St, Seattle, WA 98101" +262476,AAA Batteries (4-pack),1,2.99,09/19/19 16:51,"943 Sunset St, Atlanta, GA 30301" +262477,Bose SoundSport Headphones,1,99.99,09/10/19 18:42,"522 12th St, San Francisco, CA 94016" +262478,USB-C Charging Cable,1,11.95,09/04/19 14:58,"22 2nd St, San Francisco, CA 94016" +262479,Lightning Charging Cable,1,14.95,09/20/19 15:03,"397 Hill St, Seattle, WA 98101" +262480,27in FHD Monitor,1,149.99,09/23/19 11:29,"457 2nd St, Boston, MA 02215" +262481,USB-C Charging Cable,2,11.95,09/05/19 10:34,"9 5th St, Austin, TX 73301" +262482,34in Ultrawide Monitor,1,379.99,09/18/19 20:50,"490 2nd St, Boston, MA 02215" +262483,AAA Batteries (4-pack),1,2.99,09/15/19 14:46,"903 Madison St, Portland, OR 97035" +262484,Apple Airpods Headphones,1,150,09/16/19 20:14,"130 13th St, Austin, TX 73301" +262485,iPhone,1,700,09/06/19 11:05,"36 West St, Dallas, TX 75001" +262486,AAA Batteries (4-pack),1,2.99,09/14/19 18:38,"181 Pine St, San Francisco, CA 94016" +262487,Apple Airpods Headphones,1,150,09/10/19 07:26,"598 12th St, Portland, OR 97035" +262488,AA Batteries (4-pack),1,3.84,09/28/19 21:35,"73 Church St, Los Angeles, CA 90001" +262489,Macbook Pro Laptop,1,1700,09/08/19 13:14,"429 Walnut St, Los Angeles, CA 90001" +262490,AAA Batteries (4-pack),1,2.99,09/16/19 18:41,"336 Hill St, Los Angeles, CA 90001" +262491,34in Ultrawide Monitor,1,379.99,09/11/19 12:56,"990 Washington St, San Francisco, CA 94016" +262492,Google Phone,1,600,09/18/19 20:11,"409 Johnson St, New York City, NY 10001" +262493,Wired Headphones,1,11.99,09/10/19 15:15,"285 2nd St, San Francisco, CA 94016" +262494,34in Ultrawide Monitor,1,379.99,09/29/19 23:58,"236 Washington St, Dallas, TX 75001" +262494,Lightning Charging Cable,1,14.95,09/29/19 23:58,"236 Washington St, Dallas, TX 75001" +262495,Flatscreen TV,1,300,09/17/19 18:23,"286 Jackson St, Los Angeles, CA 90001" +262496,USB-C Charging Cable,1,11.95,09/16/19 10:17,"300 Park St, New York City, NY 10001" +262497,USB-C Charging Cable,1,11.95,09/01/19 22:38,"924 Hill St, Los Angeles, CA 90001" +262498,Lightning Charging Cable,1,14.95,09/05/19 12:34,"428 9th St, San Francisco, CA 94016" +262499,Bose SoundSport Headphones,1,99.99,09/26/19 19:59,"440 Willow St, Austin, TX 73301" +262500,20in Monitor,1,109.99,09/14/19 22:04,"475 Wilson St, Portland, OR 97035" +262501,Lightning Charging Cable,1,14.95,09/19/19 09:42,"953 Spruce St, Los Angeles, CA 90001" +262502,AA Batteries (4-pack),1,3.84,09/07/19 20:36,"990 Madison St, San Francisco, CA 94016" +262503,ThinkPad Laptop,1,999.99,09/09/19 15:28,"221 South St, San Francisco, CA 94016" +262504,AAA Batteries (4-pack),1,2.99,09/03/19 13:56,"773 7th St, Seattle, WA 98101" +262504,AA Batteries (4-pack),1,3.84,09/03/19 13:56,"773 7th St, Seattle, WA 98101" +262505,Wired Headphones,1,11.99,09/10/19 13:01,"418 Willow St, Los Angeles, CA 90001" +262506,USB-C Charging Cable,1,11.95,09/20/19 13:12,"47 Madison St, Portland, OR 97035" +262507,Wired Headphones,2,11.99,09/08/19 18:35,"338 Lakeview St, Austin, TX 73301" +262508,Wired Headphones,1,11.99,09/18/19 11:18,"608 Lakeview St, Boston, MA 02215" +262509,AAA Batteries (4-pack),1,2.99,09/10/19 19:04,"997 1st St, Boston, MA 02215" +262510,AAA Batteries (4-pack),2,2.99,09/14/19 06:17,"841 1st St, Boston, MA 02215" +262511,Apple Airpods Headphones,1,150,09/06/19 21:33,"615 12th St, San Francisco, CA 94016" +262512,AAA Batteries (4-pack),1,2.99,09/14/19 12:37,"46 Highland St, San Francisco, CA 94016" +262513,AAA Batteries (4-pack),1,2.99,09/23/19 20:59,"761 9th St, New York City, NY 10001" +262514,27in 4K Gaming Monitor,1,389.99,09/29/19 11:33,"988 Walnut St, San Francisco, CA 94016" +262515,AAA Batteries (4-pack),1,2.99,09/24/19 11:23,"167 1st St, New York City, NY 10001" +262516,AA Batteries (4-pack),1,3.84,09/11/19 01:54,"501 Wilson St, New York City, NY 10001" +262517,AAA Batteries (4-pack),1,2.99,09/03/19 20:24,"587 Madison St, Atlanta, GA 30301" +262518,Bose SoundSport Headphones,1,99.99,09/15/19 13:42,"358 Johnson St, Atlanta, GA 30301" +262519,AA Batteries (4-pack),2,3.84,09/24/19 13:25,"93 7th St, Dallas, TX 75001" +262520,AAA Batteries (4-pack),1,2.99,09/02/19 14:39,"692 Highland St, San Francisco, CA 94016" +262521,27in FHD Monitor,1,149.99,09/23/19 16:37,"20 Washington St, Seattle, WA 98101" +262522,20in Monitor,1,109.99,09/16/19 20:15,"887 South St, Austin, TX 73301" +262523,Wired Headphones,1,11.99,09/10/19 16:47,"747 Lake St, Portland, OR 97035" +262524,34in Ultrawide Monitor,1,379.99,09/11/19 14:26,"610 14th St, San Francisco, CA 94016" +262525,Wired Headphones,1,11.99,09/29/19 14:31,"674 Ridge St, Los Angeles, CA 90001" +262526,20in Monitor,1,109.99,09/29/19 18:20,"545 13th St, Los Angeles, CA 90001" +262527,Apple Airpods Headphones,1,150,09/29/19 18:04,"986 Main St, San Francisco, CA 94016" +262528,Bose SoundSport Headphones,1,99.99,09/05/19 14:04,"767 Jefferson St, San Francisco, CA 94016" +262529,Macbook Pro Laptop,1,1700,09/04/19 18:36,"889 2nd St, New York City, NY 10001" +262530,Wired Headphones,1,11.99,09/18/19 18:17,"519 Jackson St, Atlanta, GA 30301" +262530,AAA Batteries (4-pack),3,2.99,09/18/19 18:17,"519 Jackson St, Atlanta, GA 30301" +262531,Bose SoundSport Headphones,1,99.99,09/26/19 21:51,"288 Main St, New York City, NY 10001" +262532,Macbook Pro Laptop,1,1700,09/27/19 08:30,"524 12th St, Atlanta, GA 30301" +262533,AAA Batteries (4-pack),3,2.99,09/02/19 20:34,"153 Dogwood St, Austin, TX 73301" +262534,27in 4K Gaming Monitor,1,389.99,09/27/19 19:28,"899 Lakeview St, New York City, NY 10001" +262535,Bose SoundSport Headphones,1,99.99,09/12/19 00:08,"729 Lincoln St, San Francisco, CA 94016" +262536,Wired Headphones,1,11.99,09/01/19 20:36,"221 Walnut St, Los Angeles, CA 90001" +262537,USB-C Charging Cable,1,11.95,09/28/19 23:33,"924 South St, Dallas, TX 75001" +262538,Wired Headphones,1,11.99,09/02/19 22:05,"678 Chestnut St, Austin, TX 73301" +262539,27in 4K Gaming Monitor,1,389.99,09/03/19 02:47,"658 1st St, San Francisco, CA 94016" +262540,Bose SoundSport Headphones,1,99.99,09/01/19 09:43,"199 11th St, Los Angeles, CA 90001" +262541,Wired Headphones,1,11.99,09/08/19 12:56,"101 Adams St, Boston, MA 02215" +262542,Bose SoundSport Headphones,1,99.99,09/16/19 10:45,"170 1st St, Atlanta, GA 30301" +,,,,, +262543,Lightning Charging Cable,1,14.95,09/26/19 12:59,"861 Chestnut St, Dallas, TX 75001" +262544,iPhone,1,700,09/07/19 09:53,"600 Hickory St, Los Angeles, CA 90001" +262545,AA Batteries (4-pack),5,3.84,09/01/19 11:34,"308 Park St, New York City, NY 10001" +262546,iPhone,1,700,09/26/19 13:24,"322 7th St, Dallas, TX 75001" +262547,20in Monitor,1,109.99,09/25/19 15:45,"315 Center St, San Francisco, CA 94016" +262548,Wired Headphones,1,11.99,09/14/19 20:28,"657 Lake St, Los Angeles, CA 90001" +262548,Macbook Pro Laptop,1,1700,09/14/19 20:28,"657 Lake St, Los Angeles, CA 90001" +262549,AAA Batteries (4-pack),2,2.99,09/07/19 11:23,"542 Spruce St, Boston, MA 02215" +262550,Wired Headphones,1,11.99,09/14/19 16:47,"534 13th St, Atlanta, GA 30301" +262551,USB-C Charging Cable,1,11.95,09/27/19 11:49,"735 Sunset St, San Francisco, CA 94016" +262552,Wired Headphones,1,11.99,09/05/19 03:32,"657 11th St, New York City, NY 10001" +262553,AAA Batteries (4-pack),2,2.99,09/10/19 16:10,"883 Lake St, New York City, NY 10001" +262554,AAA Batteries (4-pack),1,2.99,09/22/19 15:27,"739 12th St, Los Angeles, CA 90001" +262555,27in FHD Monitor,1,149.99,09/10/19 16:44,"844 1st St, Portland, OR 97035" +262556,Flatscreen TV,1,300,09/20/19 22:16,"621 Highland St, Seattle, WA 98101" +262557,Lightning Charging Cable,1,14.95,09/21/19 19:19,"590 10th St, San Francisco, CA 94016" +262558,Bose SoundSport Headphones,1,99.99,09/27/19 12:08,"298 South St, Los Angeles, CA 90001" +262559,27in FHD Monitor,1,149.99,09/19/19 23:14,"55 Dogwood St, Atlanta, GA 30301" +262560,Google Phone,1,600,09/05/19 20:31,"111 Main St, New York City, NY 10001" +262561,34in Ultrawide Monitor,1,379.99,09/11/19 18:53,"808 Walnut St, Los Angeles, CA 90001" +262562,AA Batteries (4-pack),1,3.84,09/30/19 23:38,"897 River St, Austin, TX 73301" +262563,iPhone,1,700,09/27/19 10:49,"602 12th St, San Francisco, CA 94016" +262564,iPhone,1,700,09/14/19 20:14,"483 Pine St, Atlanta, GA 30301" +262565,AA Batteries (4-pack),1,3.84,09/17/19 17:17,"535 4th St, Atlanta, GA 30301" +262566,Lightning Charging Cable,1,14.95,09/28/19 21:23,"148 Ridge St, Los Angeles, CA 90001" +262567,AA Batteries (4-pack),1,3.84,09/26/19 00:06,"829 Cedar St, Dallas, TX 75001" +262567,AAA Batteries (4-pack),2,2.99,09/26/19 00:06,"829 Cedar St, Dallas, TX 75001" +262568,27in FHD Monitor,1,149.99,09/03/19 22:00,"528 1st St, Boston, MA 02215" +262569,AA Batteries (4-pack),1,3.84,09/08/19 12:11,"250 1st St, Seattle, WA 98101" +262570,27in FHD Monitor,1,149.99,09/03/19 14:53,"633 14th St, Los Angeles, CA 90001" +262570,AA Batteries (4-pack),1,3.84,09/03/19 14:53,"633 14th St, Los Angeles, CA 90001" +262571,Bose SoundSport Headphones,1,99.99,09/04/19 12:59,"89 Johnson St, San Francisco, CA 94016" +262572,USB-C Charging Cable,1,11.95,09/14/19 20:12,"177 Cedar St, Seattle, WA 98101" +262573,USB-C Charging Cable,1,11.95,09/29/19 02:35,"793 11th St, Atlanta, GA 30301" +262574,27in FHD Monitor,1,149.99,09/17/19 11:34,"252 Johnson St, San Francisco, CA 94016" +262575,Lightning Charging Cable,1,14.95,09/20/19 19:08,"389 Lincoln St, Dallas, TX 75001" +262576,Bose SoundSport Headphones,1,99.99,09/03/19 21:18,"770 Dogwood St, Los Angeles, CA 90001" +262577,27in 4K Gaming Monitor,1,389.99,09/02/19 17:33,"709 1st St, Los Angeles, CA 90001" +262578,AA Batteries (4-pack),1,3.84,09/03/19 17:51,"743 Highland St, Boston, MA 02215" +262579,27in FHD Monitor,1,149.99,09/07/19 16:41,"263 Washington St, San Francisco, CA 94016" +262580,USB-C Charging Cable,1,11.95,09/16/19 09:33,"582 5th St, Los Angeles, CA 90001" +262581,Apple Airpods Headphones,1,150,09/16/19 21:28,"4 Chestnut St, San Francisco, CA 94016" +262582,USB-C Charging Cable,1,11.95,09/13/19 13:23,"203 River St, Boston, MA 02215" +262583,Apple Airpods Headphones,1,150,09/17/19 19:17,"568 Spruce St, Boston, MA 02215" +262584,Wired Headphones,1,11.99,09/18/19 13:15,"717 Lincoln St, San Francisco, CA 94016" +262585,Macbook Pro Laptop,1,1700,09/16/19 19:51,"669 Main St, San Francisco, CA 94016" +262586,Flatscreen TV,1,300,09/18/19 09:33,"377 Ridge St, Boston, MA 02215" +262587,USB-C Charging Cable,1,11.95,09/17/19 12:35,"305 12th St, Los Angeles, CA 90001" +262588,Lightning Charging Cable,1,14.95,09/21/19 12:02,"241 Highland St, Boston, MA 02215" +262589,iPhone,1,700,09/07/19 18:48,"906 River St, New York City, NY 10001" +262590,AA Batteries (4-pack),1,3.84,09/22/19 16:24,"502 Meadow St, San Francisco, CA 94016" +262591,USB-C Charging Cable,1,11.95,09/14/19 11:42,"695 10th St, San Francisco, CA 94016" +262592,Flatscreen TV,1,300,09/01/19 20:45,"641 Sunset St, San Francisco, CA 94016" +262593,AAA Batteries (4-pack),2,2.99,09/19/19 21:12,"973 Lake St, Boston, MA 02215" +262594,Lightning Charging Cable,1,14.95,09/17/19 22:01,"795 Dogwood St, Atlanta, GA 30301" +262595,Macbook Pro Laptop,1,1700,09/20/19 09:30,"619 Meadow St, Boston, MA 02215" +262596,AA Batteries (4-pack),1,3.84,09/03/19 19:42,"650 6th St, San Francisco, CA 94016" +262597,34in Ultrawide Monitor,1,379.99,09/03/19 21:32,"933 Meadow St, Portland, OR 97035" +262598,Lightning Charging Cable,1,14.95,09/03/19 00:39,"496 West St, Boston, MA 02215" +262599,AA Batteries (4-pack),2,3.84,09/12/19 12:07,"404 2nd St, San Francisco, CA 94016" +262600,Apple Airpods Headphones,1,150,09/26/19 00:50,"657 13th St, Portland, ME 04101" +262601,Lightning Charging Cable,1,14.95,09/28/19 14:25,"265 7th St, San Francisco, CA 94016" +262602,Apple Airpods Headphones,1,150,09/09/19 15:50,"574 Main St, Los Angeles, CA 90001" +262603,USB-C Charging Cable,2,11.95,09/07/19 00:10,"263 11th St, Seattle, WA 98101" +262604,USB-C Charging Cable,1,11.95,09/07/19 10:22,"62 Adams St, San Francisco, CA 94016" +262605,Lightning Charging Cable,1,14.95,09/30/19 18:09,"6 Pine St, Boston, MA 02215" +262606,27in FHD Monitor,1,149.99,09/08/19 11:48,"797 Cherry St, Boston, MA 02215" +262607,Bose SoundSport Headphones,1,99.99,09/03/19 10:13,"124 Hickory St, San Francisco, CA 94016" +262608,USB-C Charging Cable,1,11.95,09/15/19 14:46,"984 13th St, Los Angeles, CA 90001" +262609,Wired Headphones,1,11.99,09/06/19 20:02,"331 Washington St, Portland, OR 97035" +262610,Google Phone,1,600,09/11/19 07:24,"726 Forest St, San Francisco, CA 94016" +262610,Wired Headphones,1,11.99,09/11/19 07:24,"726 Forest St, San Francisco, CA 94016" +262611,Lightning Charging Cable,1,14.95,09/22/19 10:44,"325 South St, Portland, OR 97035" +262612,Apple Airpods Headphones,1,150,09/19/19 10:36,"80 South St, Los Angeles, CA 90001" +262613,Apple Airpods Headphones,1,150,09/20/19 10:01,"255 12th St, Atlanta, GA 30301" +262614,Google Phone,1,600,09/01/19 21:37,"232 Spruce St, San Francisco, CA 94016" +262615,ThinkPad Laptop,1,999.99,09/09/19 08:31,"391 Madison St, Atlanta, GA 30301" +262616,AAA Batteries (4-pack),1,2.99,09/10/19 23:05,"102 Center St, New York City, NY 10001" +262617,34in Ultrawide Monitor,1,379.99,09/29/19 22:45,"226 Adams St, San Francisco, CA 94016" +262618,Flatscreen TV,1,300,09/11/19 10:52,"807 Cherry St, Los Angeles, CA 90001" +262619,ThinkPad Laptop,1,999.99,09/20/19 11:23,"168 North St, New York City, NY 10001" +262620,AAA Batteries (4-pack),1,2.99,09/19/19 19:41,"936 Madison St, Boston, MA 02215" +262621,Bose SoundSport Headphones,1,99.99,09/18/19 16:27,"917 North St, Boston, MA 02215" +262622,Lightning Charging Cable,1,14.95,09/29/19 14:15,"140 7th St, Atlanta, GA 30301" +262623,AA Batteries (4-pack),1,3.84,09/30/19 20:22,"379 Jefferson St, Austin, TX 73301" +262624,Lightning Charging Cable,1,14.95,09/26/19 16:16,"10 4th St, Los Angeles, CA 90001" +262625,34in Ultrawide Monitor,1,379.99,09/16/19 11:23,"515 River St, San Francisco, CA 94016" +262626,AA Batteries (4-pack),1,3.84,09/22/19 17:11,"649 Elm St, Seattle, WA 98101" +262627,USB-C Charging Cable,1,11.95,09/08/19 20:02,"289 Cherry St, Austin, TX 73301" +262628,Lightning Charging Cable,1,14.95,09/22/19 20:44,"135 River St, Atlanta, GA 30301" +262629,Bose SoundSport Headphones,1,99.99,09/14/19 14:28,"725 9th St, Seattle, WA 98101" +262630,34in Ultrawide Monitor,1,379.99,09/22/19 16:09,"578 12th St, New York City, NY 10001" +262631,AA Batteries (4-pack),1,3.84,09/24/19 12:31,"765 Jefferson St, New York City, NY 10001" +262632,Wired Headphones,1,11.99,09/09/19 10:00,"270 7th St, New York City, NY 10001" +262633,USB-C Charging Cable,1,11.95,09/07/19 11:21,"619 Madison St, Seattle, WA 98101" +262634,27in FHD Monitor,1,149.99,09/11/19 20:18,"139 Madison St, Portland, ME 04101" +262635,27in FHD Monitor,1,149.99,09/28/19 12:58,"403 11th St, San Francisco, CA 94016" +262636,AA Batteries (4-pack),1,3.84,09/05/19 19:57,"68 Willow St, Los Angeles, CA 90001" +262637,AA Batteries (4-pack),1,3.84,09/25/19 11:22,"282 Center St, Portland, OR 97035" +262638,Lightning Charging Cable,1,14.95,09/04/19 20:24,"764 Johnson St, Dallas, TX 75001" +262639,Wired Headphones,1,11.99,09/02/19 12:02,"791 9th St, New York City, NY 10001" +262640,Lightning Charging Cable,1,14.95,09/14/19 05:59,"406 Jefferson St, San Francisco, CA 94016" +262641,AA Batteries (4-pack),2,3.84,09/22/19 01:47,"269 Ridge St, San Francisco, CA 94016" +262642,USB-C Charging Cable,1,11.95,09/24/19 13:06,"425 Jackson St, Seattle, WA 98101" +262643,Bose SoundSport Headphones,1,99.99,09/09/19 13:26,"732 6th St, New York City, NY 10001" +262644,AA Batteries (4-pack),1,3.84,09/28/19 11:14,"356 Forest St, Dallas, TX 75001" +262645,AA Batteries (4-pack),1,3.84,09/16/19 11:00,"907 Lincoln St, Los Angeles, CA 90001" +262646,Lightning Charging Cable,1,14.95,09/23/19 16:01,"659 Jackson St, San Francisco, CA 94016" +262647,Apple Airpods Headphones,1,150,09/11/19 13:28,"705 South St, Seattle, WA 98101" +262648,Lightning Charging Cable,1,14.95,09/03/19 22:39,"871 4th St, Los Angeles, CA 90001" +262649,iPhone,1,700,09/01/19 20:35,"863 Johnson St, Austin, TX 73301" +262650,AA Batteries (4-pack),1,3.84,09/07/19 18:36,"642 Dogwood St, Portland, OR 97035" +262651,AAA Batteries (4-pack),2,2.99,09/11/19 20:13,"477 7th St, San Francisco, CA 94016" +262652,AAA Batteries (4-pack),1,2.99,09/09/19 12:52,"522 Church St, Austin, TX 73301" +262653,AA Batteries (4-pack),1,3.84,09/28/19 18:04,"217 River St, Portland, OR 97035" +262654,Flatscreen TV,1,300,09/04/19 18:56,"90 North St, Dallas, TX 75001" +262655,Wired Headphones,2,11.99,09/04/19 11:06,"317 Adams St, San Francisco, CA 94016" +262656,Apple Airpods Headphones,1,150,09/21/19 13:37,"212 North St, San Francisco, CA 94016" +262657,Google Phone,1,600,09/09/19 10:06,"490 Ridge St, Seattle, WA 98101" +262657,Wired Headphones,1,11.99,09/09/19 10:06,"490 Ridge St, Seattle, WA 98101" +262658,Apple Airpods Headphones,1,150,09/24/19 15:02,"720 1st St, New York City, NY 10001" +262659,AAA Batteries (4-pack),1,2.99,09/04/19 08:52,"7 Wilson St, Dallas, TX 75001" +262660,27in FHD Monitor,1,149.99,09/11/19 12:07,"914 South St, Dallas, TX 75001" +262661,AAA Batteries (4-pack),1,2.99,09/28/19 20:03,"414 Spruce St, Los Angeles, CA 90001" +262662,34in Ultrawide Monitor,1,379.99,09/03/19 13:51,"709 West St, Seattle, WA 98101" +262663,34in Ultrawide Monitor,1,379.99,09/28/19 12:35,"401 North St, New York City, NY 10001" +262664,Lightning Charging Cable,1,14.95,09/20/19 20:16,"863 Church St, Portland, OR 97035" +262665,iPhone,1,700,09/08/19 17:17,"63 14th St, Atlanta, GA 30301" +262666,Wired Headphones,1,11.99,09/21/19 19:18,"188 Main St, Dallas, TX 75001" +262667,Vareebadd Phone,1,400,09/14/19 20:26,"506 Center St, Dallas, TX 75001" +262668,AA Batteries (4-pack),4,3.84,09/30/19 09:41,"486 Forest St, New York City, NY 10001" +262669,AAA Batteries (4-pack),3,2.99,09/27/19 11:20,"264 1st St, Seattle, WA 98101" +262670,Google Phone,1,600,09/27/19 10:39,"661 Pine St, San Francisco, CA 94016" +262671,iPhone,1,700,09/13/19 16:07,"644 6th St, Dallas, TX 75001" +262671,Lightning Charging Cable,1,14.95,09/13/19 16:07,"644 6th St, Dallas, TX 75001" +262672,AA Batteries (4-pack),2,3.84,09/03/19 16:03,"884 Jefferson St, Los Angeles, CA 90001" +262673,Google Phone,1,600,09/06/19 21:56,"880 Meadow St, Boston, MA 02215" +262673,Wired Headphones,1,11.99,09/06/19 21:56,"880 Meadow St, Boston, MA 02215" +262674,AAA Batteries (4-pack),3,2.99,09/16/19 20:02,"504 Chestnut St, Los Angeles, CA 90001" +262675,20in Monitor,1,109.99,09/28/19 12:15,"720 West St, San Francisco, CA 94016" +262676,Apple Airpods Headphones,1,150,09/19/19 18:18,"357 Madison St, Atlanta, GA 30301" +262677,Bose SoundSport Headphones,1,99.99,09/12/19 00:16,"661 Jackson St, San Francisco, CA 94016" +262678,USB-C Charging Cable,1,11.95,09/03/19 08:18,"970 Washington St, Seattle, WA 98101" +262679,Wired Headphones,1,11.99,09/29/19 11:03,"322 Cherry St, San Francisco, CA 94016" +262680,USB-C Charging Cable,1,11.95,09/02/19 19:24,"960 Wilson St, Los Angeles, CA 90001" +262681,Wired Headphones,1,11.99,09/05/19 05:00,"790 4th St, Dallas, TX 75001" +262682,Lightning Charging Cable,1,14.95,09/28/19 08:30,"281 Main St, New York City, NY 10001" +262683,Flatscreen TV,1,300,09/23/19 01:34,"671 West St, San Francisco, CA 94016" +262684,USB-C Charging Cable,1,11.95,09/22/19 08:42,"856 Chestnut St, Los Angeles, CA 90001" +262685,USB-C Charging Cable,1,11.95,09/19/19 12:20,"914 Park St, Seattle, WA 98101" +262686,Apple Airpods Headphones,1,150,09/05/19 23:23,"707 Spruce St, Boston, MA 02215" +262687,Wired Headphones,1,11.99,09/04/19 21:08,"288 5th St, Austin, TX 73301" +262688,Wired Headphones,1,11.99,09/11/19 21:31,"498 Spruce St, San Francisco, CA 94016" +262689,20in Monitor,1,109.99,09/21/19 06:46,"727 North St, Boston, MA 02215" +262690,34in Ultrawide Monitor,1,379.99,09/17/19 09:37,"775 10th St, Los Angeles, CA 90001" +262691,ThinkPad Laptop,1,999.99,09/04/19 16:15,"49 Highland St, Los Angeles, CA 90001" +262692,Wired Headphones,1,11.99,09/19/19 14:06,"47 Meadow St, Los Angeles, CA 90001" +262693,27in 4K Gaming Monitor,1,389.99,09/17/19 10:34,"958 Ridge St, Dallas, TX 75001" +262694,AA Batteries (4-pack),1,3.84,09/09/19 20:07,"153 Dogwood St, Los Angeles, CA 90001" +262695,iPhone,1,700,09/02/19 07:37,"991 5th St, Portland, OR 97035" +262695,Lightning Charging Cable,1,14.95,09/02/19 07:37,"991 5th St, Portland, OR 97035" +262696,Wired Headphones,1,11.99,09/09/19 18:07,"249 North St, San Francisco, CA 94016" +262697,Apple Airpods Headphones,1,150,09/27/19 17:17,"4 Cedar St, San Francisco, CA 94016" +262698,Apple Airpods Headphones,1,150,09/19/19 15:19,"676 River St, Seattle, WA 98101" +262699,AAA Batteries (4-pack),1,2.99,09/06/19 21:40,"984 11th St, Boston, MA 02215" +262700,Google Phone,1,600,09/11/19 11:53,"485 Jackson St, Los Angeles, CA 90001" +262701,Lightning Charging Cable,1,14.95,09/04/19 12:43,"149 Lincoln St, New York City, NY 10001" +262702,ThinkPad Laptop,1,999.99,09/22/19 08:55,"54 Forest St, Portland, OR 97035" +262703,AAA Batteries (4-pack),1,2.99,09/03/19 19:54,"830 13th St, Dallas, TX 75001" +262704,34in Ultrawide Monitor,1,379.99,09/11/19 10:58,"240 Cedar St, Atlanta, GA 30301" +262705,AA Batteries (4-pack),1,3.84,09/28/19 20:15,"462 River St, Austin, TX 73301" +262706,ThinkPad Laptop,1,999.99,09/17/19 10:05,"892 Hickory St, San Francisco, CA 94016" +262707,Macbook Pro Laptop,1,1700,09/02/19 22:34,"935 Lake St, Boston, MA 02215" +262708,AAA Batteries (4-pack),1,2.99,09/16/19 17:40,"680 11th St, San Francisco, CA 94016" +262709,iPhone,1,700,09/24/19 11:46,"119 Hickory St, San Francisco, CA 94016" +262710,USB-C Charging Cable,1,11.95,09/07/19 20:09,"731 Johnson St, Austin, TX 73301" +262711,Apple Airpods Headphones,1,150,09/01/19 20:41,"137 Adams St, Dallas, TX 75001" +262712,AA Batteries (4-pack),2,3.84,09/21/19 07:33,"451 4th St, Boston, MA 02215" +262713,AA Batteries (4-pack),1,3.84,09/19/19 13:42,"873 Madison St, Los Angeles, CA 90001" +262714,AA Batteries (4-pack),4,3.84,09/22/19 09:05,"679 Cherry St, San Francisco, CA 94016" +262715,Lightning Charging Cable,1,14.95,09/20/19 12:35,"28 Lincoln St, Dallas, TX 75001" +262716,Bose SoundSport Headphones,1,99.99,09/09/19 10:58,"151 2nd St, Austin, TX 73301" +262717,USB-C Charging Cable,1,11.95,09/30/19 17:21,"120 Elm St, San Francisco, CA 94016" +262718,AAA Batteries (4-pack),1,2.99,09/04/19 23:35,"67 Maple St, New York City, NY 10001" +262719,27in FHD Monitor,1,149.99,09/15/19 12:51,"786 Highland St, New York City, NY 10001" +262720,AAA Batteries (4-pack),1,2.99,09/16/19 14:00,"964 Dogwood St, San Francisco, CA 94016" +262721,iPhone,1,700,09/26/19 22:51,"374 South St, Los Angeles, CA 90001" +262722,Wired Headphones,1,11.99,09/28/19 09:53,"473 Sunset St, San Francisco, CA 94016" +262723,AA Batteries (4-pack),1,3.84,09/11/19 14:44,"769 Wilson St, Austin, TX 73301" +262724,iPhone,1,700,09/08/19 18:02,"428 North St, San Francisco, CA 94016" +262725,27in FHD Monitor,1,149.99,09/05/19 20:03,"906 South St, Seattle, WA 98101" +262726,Lightning Charging Cable,1,14.95,09/09/19 16:32,"17 Johnson St, San Francisco, CA 94016" +262727,LG Washing Machine,1,600.0,09/10/19 13:41,"972 Johnson St, San Francisco, CA 94016" +262728,USB-C Charging Cable,1,11.95,09/30/19 14:23,"346 Hickory St, New York City, NY 10001" +262729,Lightning Charging Cable,2,14.95,09/28/19 13:24,"683 1st St, San Francisco, CA 94016" +262730,34in Ultrawide Monitor,1,379.99,09/04/19 20:49,"584 Washington St, New York City, NY 10001" +262731,AA Batteries (4-pack),1,3.84,09/10/19 20:32,"877 Lincoln St, Portland, OR 97035" +262732,Macbook Pro Laptop,1,1700,09/17/19 00:22,"847 Lake St, Dallas, TX 75001" +262733,USB-C Charging Cable,1,11.95,09/25/19 16:04,"944 Cedar St, Atlanta, GA 30301" +262734,AAA Batteries (4-pack),3,2.99,09/08/19 04:14,"453 Sunset St, San Francisco, CA 94016" +262735,Lightning Charging Cable,1,14.95,09/02/19 00:00,"908 5th St, San Francisco, CA 94016" +262736,Google Phone,1,600,09/20/19 10:07,"640 Sunset St, Seattle, WA 98101" +262737,LG Dryer,1,600.0,09/14/19 12:07,"770 5th St, San Francisco, CA 94016" +262738,Wired Headphones,1,11.99,09/09/19 15:09,"181 Hill St, Los Angeles, CA 90001" +262739,27in 4K Gaming Monitor,1,389.99,09/03/19 18:00,"316 Washington St, Seattle, WA 98101" +262740,AAA Batteries (4-pack),1,2.99,09/20/19 20:25,"189 West St, San Francisco, CA 94016" +262741,AA Batteries (4-pack),1,3.84,09/21/19 11:59,"800 River St, Seattle, WA 98101" +262742,AA Batteries (4-pack),1,3.84,09/27/19 21:13,"902 13th St, Boston, MA 02215" +262743,34in Ultrawide Monitor,1,379.99,09/30/19 20:10,"310 River St, Seattle, WA 98101" +262744,AAA Batteries (4-pack),2,2.99,09/11/19 08:41,"318 Willow St, San Francisco, CA 94016" +262745,Lightning Charging Cable,1,14.95,09/24/19 10:14,"280 Pine St, Los Angeles, CA 90001" +262746,ThinkPad Laptop,1,999.99,09/20/19 15:57,"371 Johnson St, San Francisco, CA 94016" +262747,AA Batteries (4-pack),1,3.84,09/10/19 12:38,"493 Main St, San Francisco, CA 94016" +262748,27in FHD Monitor,1,149.99,09/24/19 15:12,"222 1st St, Boston, MA 02215" +262749,Wired Headphones,1,11.99,09/08/19 20:01,"336 Lincoln St, San Francisco, CA 94016" +262750,USB-C Charging Cable,1,11.95,09/28/19 13:30,"284 Forest St, Dallas, TX 75001" +262751,27in FHD Monitor,1,149.99,09/05/19 23:13,"16 Walnut St, New York City, NY 10001" +262752,AA Batteries (4-pack),1,3.84,09/24/19 14:01,"655 Maple St, New York City, NY 10001" +262752,USB-C Charging Cable,1,11.95,09/24/19 14:01,"655 Maple St, New York City, NY 10001" +262753,Flatscreen TV,1,300,09/23/19 15:20,"118 Hickory St, San Francisco, CA 94016" +262754,USB-C Charging Cable,1,11.95,09/19/19 12:05,"98 Pine St, Atlanta, GA 30301" +262755,AA Batteries (4-pack),1,3.84,09/04/19 10:01,"412 Cedar St, Boston, MA 02215" +262756,Apple Airpods Headphones,1,150,09/10/19 06:48,"973 West St, Los Angeles, CA 90001" +262757,Lightning Charging Cable,1,14.95,09/21/19 00:32,"116 South St, New York City, NY 10001" +262758,27in FHD Monitor,1,149.99,09/23/19 23:57,"259 4th St, Austin, TX 73301" +262759,AA Batteries (4-pack),5,3.84,09/30/19 10:28,"704 Maple St, Dallas, TX 75001" +262760,Macbook Pro Laptop,1,1700,09/26/19 11:16,"227 8th St, Los Angeles, CA 90001" +262761,34in Ultrawide Monitor,1,379.99,09/18/19 17:21,"514 West St, Portland, ME 04101" +262762,AA Batteries (4-pack),1,3.84,09/26/19 15:06,"69 Center St, New York City, NY 10001" +262762,USB-C Charging Cable,1,11.95,09/26/19 15:06,"69 Center St, New York City, NY 10001" +262763,Apple Airpods Headphones,1,150,09/01/19 14:43,"432 Center St, Los Angeles, CA 90001" +262764,ThinkPad Laptop,1,999.99,09/13/19 07:51,"408 Dogwood St, Los Angeles, CA 90001" +262765,USB-C Charging Cable,1,11.95,09/25/19 20:15,"111 Forest St, San Francisco, CA 94016" +262766,Bose SoundSport Headphones,1,99.99,09/18/19 12:09,"375 7th St, New York City, NY 10001" +262767,AAA Batteries (4-pack),1,2.99,09/28/19 12:27,"708 10th St, San Francisco, CA 94016" +262768,Lightning Charging Cable,1,14.95,09/05/19 04:31,"419 Lake St, New York City, NY 10001" +262768,AAA Batteries (4-pack),1,2.99,09/05/19 04:31,"419 Lake St, New York City, NY 10001" +262769,Bose SoundSport Headphones,1,99.99,09/20/19 16:59,"563 Park St, Los Angeles, CA 90001" +262770,Bose SoundSport Headphones,1,99.99,09/10/19 01:03,"39 Elm St, Seattle, WA 98101" +262771,AA Batteries (4-pack),3,3.84,09/30/19 01:11,"858 Cherry St, New York City, NY 10001" +262772,USB-C Charging Cable,1,11.95,09/08/19 18:12,"824 6th St, Austin, TX 73301" +262773,iPhone,1,700,09/25/19 01:21,"798 Church St, San Francisco, CA 94016" +262774,Wired Headphones,1,11.99,09/09/19 16:10,"70 11th St, Los Angeles, CA 90001" +262775,27in FHD Monitor,1,149.99,09/17/19 20:29,"254 Park St, Atlanta, GA 30301" +262776,iPhone,1,700,09/10/19 01:52,"204 Chestnut St, New York City, NY 10001" +262776,Lightning Charging Cable,1,14.95,09/10/19 01:52,"204 Chestnut St, New York City, NY 10001" +262777,20in Monitor,1,109.99,09/03/19 15:53,"513 Madison St, San Francisco, CA 94016" +262778,iPhone,1,700,09/14/19 10:36,"590 Washington St, San Francisco, CA 94016" +262778,Lightning Charging Cable,1,14.95,09/14/19 10:36,"590 Washington St, San Francisco, CA 94016" +262779,Wired Headphones,1,11.99,09/06/19 19:59,"119 Elm St, San Francisco, CA 94016" +262780,AA Batteries (4-pack),1,3.84,09/24/19 09:15,"703 Church St, San Francisco, CA 94016" +262781,USB-C Charging Cable,1,11.95,09/03/19 19:45,"642 Adams St, San Francisco, CA 94016" +262782,Wired Headphones,1,11.99,09/13/19 13:40,"883 2nd St, San Francisco, CA 94016" +262783,iPhone,1,700,09/29/19 03:11,"169 6th St, San Francisco, CA 94016" +262784,Wired Headphones,1,11.99,09/23/19 16:18,"91 Wilson St, Austin, TX 73301" +262785,Apple Airpods Headphones,1,150,09/26/19 12:05,"49 Main St, Austin, TX 73301" +262786,AAA Batteries (4-pack),1,2.99,09/24/19 20:58,"293 6th St, San Francisco, CA 94016" +262787,Apple Airpods Headphones,1,150,09/22/19 18:43,"941 Main St, San Francisco, CA 94016" +262787,Lightning Charging Cable,1,14.95,09/22/19 18:43,"941 Main St, San Francisco, CA 94016" +262788,20in Monitor,1,109.99,09/24/19 10:52,"847 Jackson St, Boston, MA 02215" +262789,Apple Airpods Headphones,1,150,09/05/19 06:50,"245 Madison St, Dallas, TX 75001" +262790,ThinkPad Laptop,1,999.99,09/11/19 11:30,"962 Pine St, New York City, NY 10001" +262791,Wired Headphones,1,11.99,09/16/19 14:18,"855 Washington St, Dallas, TX 75001" +262792,AA Batteries (4-pack),1,3.84,09/01/19 10:30,"174 Cedar St, Los Angeles, CA 90001" +262793,20in Monitor,1,109.99,09/23/19 16:59,"182 River St, Los Angeles, CA 90001" +262794,AA Batteries (4-pack),1,3.84,09/05/19 11:20,"69 12th St, Austin, TX 73301" +262795,Apple Airpods Headphones,1,150,09/26/19 21:48,"30 Park St, Dallas, TX 75001" +262796,AAA Batteries (4-pack),1,2.99,09/27/19 22:41,"752 Forest St, Atlanta, GA 30301" +262797,Apple Airpods Headphones,1,150,09/30/19 21:21,"861 10th St, New York City, NY 10001" +262798,Apple Airpods Headphones,1,150,09/29/19 08:46,"179 Center St, San Francisco, CA 94016" +262799,34in Ultrawide Monitor,1,379.99,09/20/19 13:05,"506 River St, Austin, TX 73301" +262800,34in Ultrawide Monitor,1,379.99,09/02/19 16:08,"295 6th St, Atlanta, GA 30301" +262801,34in Ultrawide Monitor,1,379.99,09/22/19 13:46,"167 Hill St, Austin, TX 73301" +262802,AAA Batteries (4-pack),2,2.99,09/17/19 16:12,"261 Meadow St, San Francisco, CA 94016" +262803,AAA Batteries (4-pack),1,2.99,09/09/19 22:25,"520 Church St, Atlanta, GA 30301" +262804,Wired Headphones,2,11.99,09/12/19 01:07,"405 1st St, Portland, OR 97035" +262805,Wired Headphones,1,11.99,09/09/19 17:53,"159 14th St, Atlanta, GA 30301" +262806,USB-C Charging Cable,1,11.95,09/16/19 14:50,"531 4th St, Boston, MA 02215" +262807,34in Ultrawide Monitor,1,379.99,09/10/19 12:43,"312 South St, Boston, MA 02215" +262808,27in FHD Monitor,1,149.99,09/03/19 15:17,"666 12th St, Atlanta, GA 30301" +262809,20in Monitor,1,109.99,09/10/19 12:04,"357 Jackson St, New York City, NY 10001" +262810,AA Batteries (4-pack),1,3.84,09/17/19 18:29,"294 South St, Dallas, TX 75001" +262811,AA Batteries (4-pack),1,3.84,09/18/19 16:03,"791 12th St, Seattle, WA 98101" +262812,Apple Airpods Headphones,1,150,09/28/19 18:24,"794 1st St, Austin, TX 73301" +262813,27in 4K Gaming Monitor,1,389.99,09/15/19 19:30,"391 River St, Los Angeles, CA 90001" +262814,Apple Airpods Headphones,1,150,09/01/19 11:49,"307 5th St, Atlanta, GA 30301" +262815,Flatscreen TV,1,300,09/03/19 21:54,"469 7th St, Seattle, WA 98101" +262816,Lightning Charging Cable,1,14.95,09/30/19 17:20,"697 11th St, San Francisco, CA 94016" +262817,20in Monitor,1,109.99,09/03/19 18:23,"700 Church St, Austin, TX 73301" +262818,Google Phone,1,600,09/03/19 13:28,"192 Ridge St, Boston, MA 02215" +262819,Lightning Charging Cable,1,14.95,09/05/19 10:15,"160 Willow St, Los Angeles, CA 90001" +262820,AA Batteries (4-pack),1,3.84,09/06/19 11:03,"983 Main St, New York City, NY 10001" +262821,USB-C Charging Cable,1,11.95,09/17/19 21:45,"68 Cedar St, Boston, MA 02215" +262822,Macbook Pro Laptop,1,1700,09/03/19 06:55,"847 Elm St, Atlanta, GA 30301" +262823,AAA Batteries (4-pack),1,2.99,09/18/19 19:07,"247 Pine St, Atlanta, GA 30301" +262824,34in Ultrawide Monitor,1,379.99,09/03/19 11:48,"410 Main St, San Francisco, CA 94016" +262825,Flatscreen TV,1,300,09/12/19 18:31,"462 Willow St, Boston, MA 02215" +262826,Bose SoundSport Headphones,1,99.99,09/21/19 18:19,"785 7th St, Los Angeles, CA 90001" +262827,Apple Airpods Headphones,1,150,09/07/19 18:04,"143 Meadow St, Atlanta, GA 30301" +262828,27in 4K Gaming Monitor,1,389.99,09/15/19 11:19,"912 Adams St, San Francisco, CA 94016" +262829,AA Batteries (4-pack),1,3.84,09/28/19 10:55,"188 Maple St, Los Angeles, CA 90001" +262830,AA Batteries (4-pack),2,3.84,09/09/19 17:23,"893 Forest St, Austin, TX 73301" +262831,USB-C Charging Cable,1,11.95,09/09/19 13:07,"769 Jefferson St, Boston, MA 02215" +262832,Google Phone,1,600,09/08/19 11:28,"575 12th St, New York City, NY 10001" +262832,USB-C Charging Cable,1,11.95,09/08/19 11:28,"575 12th St, New York City, NY 10001" +262833,AAA Batteries (4-pack),3,2.99,09/10/19 16:41,"347 Cherry St, Austin, TX 73301" +262834,Bose SoundSport Headphones,1,99.99,09/27/19 15:52,"417 Elm St, New York City, NY 10001" +262835,USB-C Charging Cable,1,11.95,09/03/19 12:54,"432 Jefferson St, New York City, NY 10001" +262836,Wired Headphones,1,11.99,09/11/19 04:21,"989 7th St, Seattle, WA 98101" +262837,27in FHD Monitor,1,149.99,09/21/19 18:59,"36 Maple St, San Francisco, CA 94016" +262838,27in 4K Gaming Monitor,1,389.99,09/27/19 23:59,"69 5th St, Seattle, WA 98101" +262839,AA Batteries (4-pack),1,3.84,09/23/19 13:05,"420 Adams St, Austin, TX 73301" +262840,USB-C Charging Cable,1,11.95,09/06/19 13:21,"676 Dogwood St, Portland, OR 97035" +262841,iPhone,1,700,09/21/19 12:03,"408 South St, San Francisco, CA 94016" +262841,Lightning Charging Cable,1,14.95,09/21/19 12:03,"408 South St, San Francisco, CA 94016" +262842,Vareebadd Phone,1,400,09/23/19 11:07,"188 2nd St, Dallas, TX 75001" +262843,Lightning Charging Cable,1,14.95,09/01/19 13:56,"165 9th St, Atlanta, GA 30301" +262844,Wired Headphones,1,11.99,09/27/19 16:32,"295 South St, Los Angeles, CA 90001" +262845,AAA Batteries (4-pack),1,2.99,09/10/19 11:35,"480 Main St, San Francisco, CA 94016" +262846,Apple Airpods Headphones,1,150,09/24/19 13:26,"797 2nd St, San Francisco, CA 94016" +262847,AAA Batteries (4-pack),1,2.99,09/14/19 20:49,"529 13th St, Los Angeles, CA 90001" +262848,USB-C Charging Cable,1,11.95,09/09/19 15:32,"248 8th St, Atlanta, GA 30301" +262849,USB-C Charging Cable,1,11.95,09/22/19 18:21,"809 4th St, New York City, NY 10001" +262850,AAA Batteries (4-pack),1,2.99,09/26/19 13:18,"143 Ridge St, Seattle, WA 98101" +262851,AA Batteries (4-pack),1,3.84,09/03/19 17:51,"271 Willow St, San Francisco, CA 94016" +262852,Wired Headphones,1,11.99,09/23/19 01:09,"711 Lake St, Seattle, WA 98101" +262853,Wired Headphones,2,11.99,09/10/19 21:22,"28 Meadow St, Boston, MA 02215" +262854,Bose SoundSport Headphones,1,99.99,09/22/19 19:05,"662 Jackson St, New York City, NY 10001" +262855,Bose SoundSport Headphones,1,99.99,09/10/19 13:12,"520 10th St, Portland, OR 97035" +262856,Macbook Pro Laptop,1,1700,09/18/19 02:07,"76 Highland St, Seattle, WA 98101" +262857,Bose SoundSport Headphones,1,99.99,09/03/19 18:25,"547 Madison St, Los Angeles, CA 90001" +262858,iPhone,1,700,09/11/19 15:29,"482 Walnut St, San Francisco, CA 94016" +262859,AA Batteries (4-pack),2,3.84,09/15/19 12:40,"363 Forest St, Seattle, WA 98101" +262860,Flatscreen TV,1,300,09/30/19 17:41,"949 River St, San Francisco, CA 94016" +262861,34in Ultrawide Monitor,1,379.99,09/30/19 20:26,"45 4th St, San Francisco, CA 94016" +262862,Lightning Charging Cable,1,14.95,09/27/19 19:53,"291 Lake St, Portland, OR 97035" +262863,27in FHD Monitor,1,149.99,09/29/19 21:11,"307 Wilson St, New York City, NY 10001" +262864,USB-C Charging Cable,1,11.95,09/16/19 23:20,"544 Dogwood St, Austin, TX 73301" +262865,Flatscreen TV,1,300,09/12/19 17:18,"833 Johnson St, Portland, ME 04101" +262866,AA Batteries (4-pack),1,3.84,09/24/19 09:34,"535 Lakeview St, New York City, NY 10001" +262867,Apple Airpods Headphones,1,150,09/14/19 04:51,"958 Dogwood St, Dallas, TX 75001" +262868,Vareebadd Phone,1,400,09/06/19 16:11,"395 Spruce St, Portland, OR 97035" +262869,20in Monitor,1,109.99,09/11/19 19:02,"280 Chestnut St, New York City, NY 10001" +262870,USB-C Charging Cable,1,11.95,09/17/19 13:25,"62 8th St, Dallas, TX 75001" +262871,Lightning Charging Cable,1,14.95,09/04/19 14:36,"783 Hickory St, Boston, MA 02215" +262872,USB-C Charging Cable,1,11.95,09/20/19 17:39,"168 Forest St, New York City, NY 10001" +262873,AAA Batteries (4-pack),1,2.99,09/28/19 21:40,"234 Meadow St, Los Angeles, CA 90001" +262874,Macbook Pro Laptop,1,1700,09/15/19 22:19,"17 7th St, San Francisco, CA 94016" +262875,AAA Batteries (4-pack),1,2.99,09/27/19 10:52,"985 Forest St, San Francisco, CA 94016" +262876,AAA Batteries (4-pack),1,2.99,09/17/19 21:55,"90 Elm St, Atlanta, GA 30301" +262877,Google Phone,1,600,09/19/19 17:49,"190 Meadow St, Dallas, TX 75001" +262877,Wired Headphones,1,11.99,09/19/19 17:49,"190 Meadow St, Dallas, TX 75001" +262878,Apple Airpods Headphones,1,150,09/16/19 10:38,"839 Forest St, San Francisco, CA 94016" +262879,AA Batteries (4-pack),2,3.84,09/05/19 21:10,"564 Madison St, Los Angeles, CA 90001" +262880,Lightning Charging Cable,1,14.95,09/03/19 11:37,"427 River St, Boston, MA 02215" +262881,Google Phone,1,600,09/05/19 08:36,"397 Sunset St, Dallas, TX 75001" +262882,Lightning Charging Cable,1,14.95,09/28/19 00:09,"77 West St, Portland, OR 97035" +262883,Macbook Pro Laptop,1,1700,09/28/19 14:50,"791 Jefferson St, Boston, MA 02215" +262884,Apple Airpods Headphones,1,150,09/27/19 22:14,"257 Ridge St, San Francisco, CA 94016" +262885,Lightning Charging Cable,1,14.95,09/12/19 15:24,"615 Forest St, Portland, OR 97035" +262886,iPhone,1,700,09/12/19 13:14,"53 Jefferson St, Atlanta, GA 30301" +262886,Apple Airpods Headphones,1,150,09/12/19 13:14,"53 Jefferson St, Atlanta, GA 30301" +262887,Flatscreen TV,1,300,09/18/19 19:26,"638 10th St, Seattle, WA 98101" +262888,AAA Batteries (4-pack),2,2.99,09/04/19 11:29,"54 Hickory St, Los Angeles, CA 90001" +262889,iPhone,1,700,09/22/19 11:50,"216 Center St, Los Angeles, CA 90001" +262890,Lightning Charging Cable,1,14.95,09/10/19 17:48,"556 Highland St, Portland, OR 97035" +262891,Lightning Charging Cable,1,14.95,09/23/19 02:13,"105 Main St, San Francisco, CA 94016" +262892,Bose SoundSport Headphones,1,99.99,09/08/19 18:29,"507 River St, New York City, NY 10001" +262893,Lightning Charging Cable,1,14.95,09/01/19 13:04,"37 Center St, New York City, NY 10001" +262894,Vareebadd Phone,1,400,09/21/19 07:54,"515 Jackson St, San Francisco, CA 94016" +262895,ThinkPad Laptop,1,999.99,09/20/19 02:00,"518 West St, San Francisco, CA 94016" +262896,Lightning Charging Cable,2,14.95,09/18/19 18:33,"126 Elm St, Seattle, WA 98101" +262897,Wired Headphones,1,11.99,09/14/19 19:42,"603 Johnson St, New York City, NY 10001" +262898,Lightning Charging Cable,1,14.95,09/02/19 09:19,"273 9th St, Portland, OR 97035" +262899,Bose SoundSport Headphones,1,99.99,09/11/19 00:52,"250 West St, San Francisco, CA 94016" +262900,Wired Headphones,1,11.99,09/04/19 20:40,"698 5th St, Los Angeles, CA 90001" +262901,iPhone,1,700,09/05/19 20:36,"288 Wilson St, Boston, MA 02215" +262902,20in Monitor,1,109.99,09/23/19 01:55,"756 Forest St, Boston, MA 02215" +262903,Apple Airpods Headphones,1,150,09/26/19 16:55,"671 6th St, Los Angeles, CA 90001" +262904,AA Batteries (4-pack),1,3.84,09/27/19 14:15,"483 Meadow St, New York City, NY 10001" +262905,Wired Headphones,1,11.99,09/04/19 12:31,"302 14th St, Los Angeles, CA 90001" +262906,USB-C Charging Cable,1,11.95,09/07/19 09:21,"246 12th St, New York City, NY 10001" +262907,Lightning Charging Cable,1,14.95,09/16/19 13:22,"50 Washington St, Seattle, WA 98101" +262908,AA Batteries (4-pack),1,3.84,09/29/19 21:08,"446 2nd St, Seattle, WA 98101" +262909,Bose SoundSport Headphones,1,99.99,09/30/19 17:02,"972 Hickory St, New York City, NY 10001" +262910,Lightning Charging Cable,1,14.95,09/11/19 12:32,"206 Center St, Portland, OR 97035" +262911,Wired Headphones,1,11.99,09/05/19 12:18,"113 Willow St, Dallas, TX 75001" +262912,USB-C Charging Cable,1,11.95,09/09/19 11:21,"697 Elm St, Los Angeles, CA 90001" +262913,27in FHD Monitor,1,149.99,09/22/19 14:10,"487 4th St, Los Angeles, CA 90001" +262914,Lightning Charging Cable,1,14.95,09/21/19 20:16,"931 Highland St, Seattle, WA 98101" +262915,Apple Airpods Headphones,1,150,09/16/19 06:06,"99 Hill St, Boston, MA 02215" +262916,Wired Headphones,1,11.99,09/07/19 16:46,"520 Jefferson St, Los Angeles, CA 90001" +262917,AAA Batteries (4-pack),2,2.99,09/03/19 12:38,"811 11th St, San Francisco, CA 94016" +262918,Flatscreen TV,1,300,09/23/19 19:48,"761 Meadow St, Boston, MA 02215" +262919,AAA Batteries (4-pack),1,2.99,09/01/19 23:43,"571 Lakeview St, Seattle, WA 98101" +262920,AAA Batteries (4-pack),1,2.99,09/28/19 10:47,"800 Main St, San Francisco, CA 94016" +262921,Google Phone,1,600,09/08/19 21:47,"568 Adams St, Dallas, TX 75001" +262922,27in FHD Monitor,1,149.99,09/19/19 11:21,"442 6th St, Seattle, WA 98101" +262923,Lightning Charging Cable,1,14.95,09/28/19 20:52,"919 North St, San Francisco, CA 94016" +262924,AA Batteries (4-pack),2,3.84,09/14/19 09:32,"944 Maple St, Portland, OR 97035" +262925,USB-C Charging Cable,1,11.95,09/09/19 06:37,"365 Willow St, Atlanta, GA 30301" +262926,AAA Batteries (4-pack),1,2.99,09/24/19 21:59,"431 Walnut St, Dallas, TX 75001" +262927,Lightning Charging Cable,1,14.95,09/27/19 11:56,"322 Washington St, Portland, OR 97035" +262928,Bose SoundSport Headphones,1,99.99,09/20/19 12:11,"445 Pine St, Boston, MA 02215" +262929,34in Ultrawide Monitor,1,379.99,09/03/19 19:54,"407 Sunset St, New York City, NY 10001" +262930,Lightning Charging Cable,1,14.95,09/04/19 13:19,"610 5th St, Los Angeles, CA 90001" +262931,AA Batteries (4-pack),1,3.84,09/27/19 21:21,"979 Madison St, Boston, MA 02215" +262932,Apple Airpods Headphones,1,150,09/24/19 13:00,"726 Elm St, Portland, ME 04101" +262933,Flatscreen TV,1,300,09/29/19 16:45,"574 Jefferson St, Austin, TX 73301" +262934,Apple Airpods Headphones,1,150,09/04/19 13:34,"596 14th St, Seattle, WA 98101" +262935,Bose SoundSport Headphones,1,99.99,09/15/19 21:46,"601 Church St, Dallas, TX 75001" +262936,USB-C Charging Cable,1,11.95,09/08/19 17:41,"691 Cherry St, New York City, NY 10001" +262937,AA Batteries (4-pack),1,3.84,09/01/19 20:17,"337 Adams St, Atlanta, GA 30301" +262938,AA Batteries (4-pack),1,3.84,09/12/19 12:25,"468 7th St, New York City, NY 10001" +262939,Google Phone,1,600,09/26/19 21:01,"119 Church St, San Francisco, CA 94016" +262940,Lightning Charging Cable,1,14.95,09/14/19 17:58,"911 Park St, Portland, ME 04101" +262941,Lightning Charging Cable,1,14.95,09/13/19 14:58,"254 9th St, San Francisco, CA 94016" +262942,LG Washing Machine,1,600.0,09/06/19 15:50,"617 Ridge St, New York City, NY 10001" +262943,Wired Headphones,1,11.99,09/20/19 19:08,"512 North St, Los Angeles, CA 90001" +262944,Apple Airpods Headphones,1,150,09/24/19 13:13,"965 Meadow St, Dallas, TX 75001" +262945,Lightning Charging Cable,1,14.95,09/23/19 20:33,"910 Sunset St, Los Angeles, CA 90001" +262946,USB-C Charging Cable,1,11.95,09/24/19 11:51,"279 Chestnut St, San Francisco, CA 94016" +262947,AA Batteries (4-pack),3,3.84,09/25/19 00:22,"824 13th St, Seattle, WA 98101" +262948,27in FHD Monitor,1,149.99,09/16/19 07:52,"902 13th St, New York City, NY 10001" +262949,Bose SoundSport Headphones,1,99.99,09/02/19 19:27,"424 Maple St, Dallas, TX 75001" +262950,34in Ultrawide Monitor,1,379.99,09/02/19 18:22,"931 Ridge St, Dallas, TX 75001" +262951,AA Batteries (4-pack),1,3.84,09/24/19 15:10,"317 Cherry St, New York City, NY 10001" +262952,Apple Airpods Headphones,1,150,09/12/19 14:45,"662 Park St, Seattle, WA 98101" +262953,34in Ultrawide Monitor,1,379.99,09/24/19 22:03,"39 Jackson St, San Francisco, CA 94016" +262954,Apple Airpods Headphones,1,150,09/08/19 21:25,"609 Wilson St, Dallas, TX 75001" +262955,20in Monitor,2,109.99,09/27/19 14:10,"96 Wilson St, Seattle, WA 98101" +262956,20in Monitor,1,109.99,09/17/19 22:13,"764 Park St, Dallas, TX 75001" +262957,AAA Batteries (4-pack),1,2.99,09/24/19 10:18,"553 Cedar St, Austin, TX 73301" +262958,Apple Airpods Headphones,1,150,09/09/19 10:57,"6 Jackson St, New York City, NY 10001" +262959,Apple Airpods Headphones,1,150,09/01/19 15:42,"179 Elm St, Dallas, TX 75001" +262960,USB-C Charging Cable,1,11.95,09/09/19 01:25,"280 Lake St, New York City, NY 10001" +262961,Apple Airpods Headphones,1,150,09/26/19 00:48,"273 Forest St, Atlanta, GA 30301" +262962,27in FHD Monitor,1,149.99,09/01/19 14:14,"81 Sunset St, San Francisco, CA 94016" +262963,Lightning Charging Cable,1,14.95,09/11/19 16:10,"978 Meadow St, Dallas, TX 75001" +262964,Apple Airpods Headphones,1,150,09/15/19 20:19,"585 Ridge St, San Francisco, CA 94016" +262965,USB-C Charging Cable,1,11.95,09/13/19 08:56,"872 Jackson St, New York City, NY 10001" +262966,27in FHD Monitor,1,149.99,09/24/19 13:35,"620 Park St, San Francisco, CA 94016" +262967,Bose SoundSport Headphones,1,99.99,09/28/19 11:25,"537 10th St, New York City, NY 10001" +262968,USB-C Charging Cable,1,11.95,09/18/19 11:35,"339 Meadow St, New York City, NY 10001" +262969,Google Phone,1,600,09/26/19 17:11,"231 Madison St, Atlanta, GA 30301" +262970,USB-C Charging Cable,1,11.95,09/21/19 13:38,"122 South St, New York City, NY 10001" +262971,USB-C Charging Cable,1,11.95,09/25/19 22:06,"60 Lake St, New York City, NY 10001" +262972,Bose SoundSport Headphones,1,99.99,09/06/19 05:03,"639 9th St, Portland, OR 97035" +262973,27in FHD Monitor,1,149.99,09/22/19 11:24,"90 River St, Austin, TX 73301" +262974,USB-C Charging Cable,1,11.95,09/11/19 20:18,"298 Ridge St, San Francisco, CA 94016" +262975,Apple Airpods Headphones,1,150,09/11/19 23:38,"326 7th St, Portland, ME 04101" +262976,20in Monitor,1,109.99,09/01/19 12:49,"799 11th St, Boston, MA 02215" +262977,Google Phone,1,600,09/30/19 18:13,"382 Washington St, Los Angeles, CA 90001" +262978,27in 4K Gaming Monitor,1,389.99,09/07/19 21:47,"822 North St, Dallas, TX 75001" +262979,USB-C Charging Cable,1,11.95,09/05/19 11:53,"729 Elm St, Dallas, TX 75001" +262980,AA Batteries (4-pack),1,3.84,09/03/19 21:23,"432 Cherry St, Dallas, TX 75001" +262981,34in Ultrawide Monitor,1,379.99,09/16/19 17:25,"636 Ridge St, Los Angeles, CA 90001" +262982,34in Ultrawide Monitor,1,379.99,09/10/19 13:39,"921 Pine St, Boston, MA 02215" +262983,iPhone,1,700,09/05/19 17:48,"666 Meadow St, Boston, MA 02215" +262984,AA Batteries (4-pack),1,3.84,09/15/19 12:15,"523 9th St, Los Angeles, CA 90001" +262985,Bose SoundSport Headphones,1,99.99,09/10/19 00:49,"843 9th St, Austin, TX 73301" +262986,20in Monitor,1,109.99,09/26/19 10:43,"884 Center St, Los Angeles, CA 90001" +262987,Lightning Charging Cable,1,14.95,09/09/19 10:42,"545 Church St, Los Angeles, CA 90001" +262988,27in FHD Monitor,1,149.99,09/24/19 09:49,"262 South St, Boston, MA 02215" +262989,AAA Batteries (4-pack),1,2.99,09/13/19 18:30,"269 Jackson St, Austin, TX 73301" +262990,Bose SoundSport Headphones,1,99.99,09/08/19 09:31,"90 Adams St, San Francisco, CA 94016" +262991,AAA Batteries (4-pack),1,2.99,09/30/19 09:56,"231 Cherry St, Los Angeles, CA 90001" +262992,USB-C Charging Cable,1,11.95,09/17/19 12:46,"33 Meadow St, New York City, NY 10001" +262993,27in FHD Monitor,1,149.99,09/16/19 16:10,"393 South St, San Francisco, CA 94016" +262994,Apple Airpods Headphones,1,150,09/03/19 16:31,"412 5th St, Los Angeles, CA 90001" +262995,iPhone,1,700,09/02/19 13:50,"84 4th St, San Francisco, CA 94016" +262996,AAA Batteries (4-pack),1,2.99,09/05/19 15:10,"869 14th St, Seattle, WA 98101" +262997,Flatscreen TV,1,300,09/01/19 20:14,"914 Sunset St, San Francisco, CA 94016" +262998,AAA Batteries (4-pack),1,2.99,09/28/19 12:36,"8 Hickory St, New York City, NY 10001" +262999,27in 4K Gaming Monitor,1,389.99,09/19/19 22:47,"671 14th St, San Francisco, CA 94016" +263000,Lightning Charging Cable,1,14.95,09/20/19 15:09,"165 Walnut St, San Francisco, CA 94016" +263001,27in 4K Gaming Monitor,1,389.99,09/05/19 16:16,"676 Maple St, New York City, NY 10001" +263002,ThinkPad Laptop,1,999.99,09/01/19 11:30,"235 14th St, New York City, NY 10001" +263002,AA Batteries (4-pack),2,3.84,09/01/19 11:30,"235 14th St, New York City, NY 10001" +263003,27in FHD Monitor,1,149.99,09/21/19 13:31,"652 Chestnut St, Austin, TX 73301" +263004,27in 4K Gaming Monitor,1,389.99,09/11/19 13:29,"894 Main St, Boston, MA 02215" +263005,AAA Batteries (4-pack),1,2.99,09/10/19 10:33,"685 Lakeview St, Portland, OR 97035" +263006,USB-C Charging Cable,1,11.95,09/30/19 14:33,"986 14th St, Austin, TX 73301" +263007,Lightning Charging Cable,1,14.95,09/27/19 13:02,"72 Lake St, New York City, NY 10001" +263008,AAA Batteries (4-pack),1,2.99,09/09/19 02:25,"760 North St, New York City, NY 10001" +263009,Google Phone,1,600,09/11/19 13:04,"208 Center St, Los Angeles, CA 90001" +263010,AA Batteries (4-pack),2,3.84,09/01/19 11:40,"589 7th St, New York City, NY 10001" +263011,USB-C Charging Cable,1,11.95,09/11/19 19:49,"911 Elm St, San Francisco, CA 94016" +263012,iPhone,1,700,09/30/19 15:26,"313 Highland St, New York City, NY 10001" +263012,Lightning Charging Cable,1,14.95,09/30/19 15:26,"313 Highland St, New York City, NY 10001" +263013,AAA Batteries (4-pack),2,2.99,09/08/19 10:26,"347 South St, Los Angeles, CA 90001" +263014,AA Batteries (4-pack),1,3.84,09/13/19 21:13,"783 4th St, Seattle, WA 98101" +263015,AA Batteries (4-pack),1,3.84,09/15/19 12:34,"493 Lake St, Seattle, WA 98101" +263016,USB-C Charging Cable,1,11.95,09/02/19 07:44,"613 Ridge St, San Francisco, CA 94016" +263017,Wired Headphones,1,11.99,09/11/19 08:59,"780 Dogwood St, Dallas, TX 75001" +263018,Bose SoundSport Headphones,1,99.99,09/24/19 11:00,"650 4th St, New York City, NY 10001" +263019,ThinkPad Laptop,1,999.99,09/12/19 10:04,"137 Jackson St, New York City, NY 10001" +263020,USB-C Charging Cable,1,11.95,09/28/19 04:44,"196 Lake St, San Francisco, CA 94016" +263021,Bose SoundSport Headphones,1,99.99,09/22/19 19:50,"703 6th St, Los Angeles, CA 90001" +263022,USB-C Charging Cable,1,11.95,09/07/19 18:57,"443 Highland St, San Francisco, CA 94016" +263023,Lightning Charging Cable,1,14.95,09/30/19 17:23,"108 Lakeview St, Los Angeles, CA 90001" +263024,Flatscreen TV,1,300,09/27/19 14:19,"289 10th St, Los Angeles, CA 90001" +263025,Macbook Pro Laptop,1,1700,09/03/19 09:14,"173 Pine St, Dallas, TX 75001" +263026,27in FHD Monitor,1,149.99,09/24/19 00:13,"438 Pine St, Portland, OR 97035" +263027,Lightning Charging Cable,1,14.95,09/16/19 23:15,"215 Hickory St, San Francisco, CA 94016" +263028,AAA Batteries (4-pack),1,2.99,09/17/19 16:26,"249 Cherry St, Atlanta, GA 30301" +263029,Flatscreen TV,1,300,09/04/19 19:06,"940 Hill St, Dallas, TX 75001" +263030,Bose SoundSport Headphones,1,99.99,09/02/19 16:04,"228 Main St, Dallas, TX 75001" +263031,Wired Headphones,1,11.99,09/13/19 23:55,"572 Cedar St, Portland, OR 97035" +263032,Lightning Charging Cable,1,14.95,09/13/19 16:17,"78 Hill St, Los Angeles, CA 90001" +263033,AAA Batteries (4-pack),5,2.99,09/10/19 15:15,"707 Sunset St, Los Angeles, CA 90001" +,,,,, +263034,Flatscreen TV,1,300,09/10/19 18:10,"177 7th St, Los Angeles, CA 90001" +263035,AA Batteries (4-pack),2,3.84,09/07/19 18:11,"132 West St, San Francisco, CA 94016" +263036,AAA Batteries (4-pack),1,2.99,09/09/19 18:12,"714 Washington St, Boston, MA 02215" +263037,AA Batteries (4-pack),1,3.84,09/12/19 13:51,"352 Madison St, Boston, MA 02215" +263038,Bose SoundSport Headphones,1,99.99,09/14/19 07:33,"463 7th St, Portland, OR 97035" +263039,AA Batteries (4-pack),1,3.84,09/25/19 09:22,"629 River St, Dallas, TX 75001" +263040,Lightning Charging Cable,1,14.95,09/26/19 15:02,"582 North St, Boston, MA 02215" +263041,LG Dryer,1,600.0,09/06/19 14:17,"535 Church St, Portland, OR 97035" +263042,USB-C Charging Cable,1,11.95,09/25/19 08:56,"375 Cherry St, Austin, TX 73301" +263043,AAA Batteries (4-pack),3,2.99,09/01/19 18:26,"957 Lake St, Atlanta, GA 30301" +263044,Lightning Charging Cable,1,14.95,09/19/19 17:27,"537 Chestnut St, San Francisco, CA 94016" +263045,Flatscreen TV,1,300,09/25/19 18:04,"260 Cedar St, Atlanta, GA 30301" +263046,Lightning Charging Cable,1,14.95,09/15/19 11:06,"969 Dogwood St, New York City, NY 10001" +263047,Apple Airpods Headphones,1,150,09/06/19 09:50,"112 1st St, Seattle, WA 98101" +263048,AA Batteries (4-pack),1,3.84,09/21/19 12:26,"448 7th St, Portland, OR 97035" +263049,AAA Batteries (4-pack),1,2.99,09/26/19 11:32,"591 13th St, Austin, TX 73301" +263050,Lightning Charging Cable,1,14.95,09/08/19 22:00,"160 Willow St, Los Angeles, CA 90001" +263051,ThinkPad Laptop,1,999.99,09/24/19 18:58,"27 Johnson St, San Francisco, CA 94016" +263052,27in 4K Gaming Monitor,1,389.99,09/25/19 08:05,"414 Ridge St, Dallas, TX 75001" +263053,AA Batteries (4-pack),3,3.84,09/20/19 20:22,"938 11th St, Los Angeles, CA 90001" +263054,34in Ultrawide Monitor,1,379.99,09/29/19 19:01,"756 Ridge St, Austin, TX 73301" +263055,Wired Headphones,1,11.99,09/11/19 11:09,"171 Hickory St, Los Angeles, CA 90001" +263056,Bose SoundSport Headphones,1,99.99,09/08/19 19:45,"262 Main St, Dallas, TX 75001" +263057,AA Batteries (4-pack),1,3.84,09/13/19 15:30,"345 Forest St, Los Angeles, CA 90001" +263058,Google Phone,1,600,09/30/19 14:49,"315 Elm St, Los Angeles, CA 90001" +263058,Bose SoundSport Headphones,1,99.99,09/30/19 14:49,"315 Elm St, Los Angeles, CA 90001" +263058,Wired Headphones,1,11.99,09/30/19 14:49,"315 Elm St, Los Angeles, CA 90001" +263059,27in FHD Monitor,1,149.99,09/04/19 17:33,"757 Church St, Boston, MA 02215" +263060,AA Batteries (4-pack),1,3.84,09/03/19 18:53,"975 10th St, Seattle, WA 98101" +263061,iPhone,1,700,09/03/19 21:12,"753 Cherry St, Seattle, WA 98101" +263061,Lightning Charging Cable,1,14.95,09/03/19 21:12,"753 Cherry St, Seattle, WA 98101" +263062,Apple Airpods Headphones,1,150,09/08/19 19:14,"547 7th St, Portland, OR 97035" +263063,Wired Headphones,1,11.99,09/07/19 13:59,"316 Pine St, New York City, NY 10001" +263064,Macbook Pro Laptop,1,1700,09/19/19 00:20,"14 Johnson St, Dallas, TX 75001" +263065,Lightning Charging Cable,1,14.95,09/01/19 16:01,"707 8th St, San Francisco, CA 94016" +263066,27in FHD Monitor,1,149.99,09/26/19 10:19,"983 Lincoln St, Los Angeles, CA 90001" +263067,Bose SoundSport Headphones,1,99.99,09/13/19 22:06,"347 Wilson St, Boston, MA 02215" +263068,Bose SoundSport Headphones,1,99.99,09/03/19 14:49,"506 10th St, New York City, NY 10001" +263069,Google Phone,1,600,09/15/19 14:25,"186 8th St, Atlanta, GA 30301" +263069,Wired Headphones,1,11.99,09/15/19 14:25,"186 8th St, Atlanta, GA 30301" +263070,AAA Batteries (4-pack),1,2.99,09/25/19 13:32,"656 Pine St, Los Angeles, CA 90001" +263071,Wired Headphones,1,11.99,09/10/19 18:02,"808 Lake St, San Francisco, CA 94016" +263072,27in 4K Gaming Monitor,1,389.99,09/21/19 12:25,"916 5th St, Los Angeles, CA 90001" +263073,Macbook Pro Laptop,1,1700,09/12/19 19:31,"704 Ridge St, Seattle, WA 98101" +263074,Google Phone,1,600,09/07/19 12:38,"67 10th St, Los Angeles, CA 90001" +263074,USB-C Charging Cable,1,11.95,09/07/19 12:38,"67 10th St, Los Angeles, CA 90001" +263075,AA Batteries (4-pack),2,3.84,09/05/19 12:23,"534 Spruce St, Los Angeles, CA 90001" +263076,LG Washing Machine,1,600.0,09/04/19 10:56,"357 4th St, Portland, ME 04101" +263077,AA Batteries (4-pack),1,3.84,09/14/19 10:33,"977 Wilson St, San Francisco, CA 94016" +263078,34in Ultrawide Monitor,1,379.99,09/14/19 21:47,"428 Spruce St, San Francisco, CA 94016" +263079,Flatscreen TV,1,300,09/07/19 20:01,"862 Johnson St, Los Angeles, CA 90001" +263080,Lightning Charging Cable,1,14.95,09/16/19 10:48,"493 Chestnut St, Boston, MA 02215" +263081,AAA Batteries (4-pack),1,2.99,09/24/19 12:19,"976 13th St, Austin, TX 73301" +263082,AAA Batteries (4-pack),1,2.99,09/29/19 19:30,"221 Jackson St, Los Angeles, CA 90001" +263083,USB-C Charging Cable,1,11.95,09/18/19 08:49,"29 Willow St, San Francisco, CA 94016" +263084,34in Ultrawide Monitor,1,379.99,09/29/19 11:51,"160 13th St, San Francisco, CA 94016" +263085,34in Ultrawide Monitor,1,379.99,09/20/19 16:17,"209 7th St, Atlanta, GA 30301" +263086,USB-C Charging Cable,1,11.95,09/11/19 12:21,"819 Wilson St, Portland, OR 97035" +263087,27in 4K Gaming Monitor,1,389.99,09/14/19 09:45,"477 8th St, Atlanta, GA 30301" +263088,AAA Batteries (4-pack),3,2.99,09/20/19 20:47,"267 Cedar St, New York City, NY 10001" +263089,Wired Headphones,1,11.99,09/21/19 22:00,"756 Highland St, New York City, NY 10001" +263090,27in FHD Monitor,1,149.99,09/04/19 15:27,"59 11th St, Portland, ME 04101" +263091,Apple Airpods Headphones,1,150,09/27/19 01:16,"28 Elm St, Seattle, WA 98101" +263092,Bose SoundSport Headphones,1,99.99,09/15/19 18:53,"822 8th St, Seattle, WA 98101" +263093,Wired Headphones,1,11.99,09/16/19 17:52,"396 Lincoln St, San Francisco, CA 94016" +263094,Apple Airpods Headphones,1,150,09/05/19 13:37,"715 5th St, Boston, MA 02215" +263095,Lightning Charging Cable,1,14.95,09/12/19 17:52,"326 Center St, New York City, NY 10001" +263096,Apple Airpods Headphones,1,150,09/29/19 14:25,"149 Church St, Boston, MA 02215" +263097,AA Batteries (4-pack),1,3.84,09/25/19 17:27,"106 Hill St, New York City, NY 10001" +263098,Wired Headphones,1,11.99,09/27/19 15:03,"134 Chestnut St, Dallas, TX 75001" +263099,AAA Batteries (4-pack),4,2.99,09/15/19 22:59,"84 Dogwood St, Portland, OR 97035" +263100,USB-C Charging Cable,1,11.95,09/22/19 19:47,"831 14th St, Atlanta, GA 30301" +263100,34in Ultrawide Monitor,1,379.99,09/22/19 19:47,"831 14th St, Atlanta, GA 30301" +263101,USB-C Charging Cable,1,11.95,09/03/19 02:57,"122 River St, Dallas, TX 75001" +263102,Apple Airpods Headphones,1,150,09/10/19 14:38,"709 North St, Los Angeles, CA 90001" +263103,20in Monitor,1,109.99,09/20/19 13:54,"404 Madison St, Portland, ME 04101" +263104,Apple Airpods Headphones,1,150,09/05/19 11:18,"836 Sunset St, San Francisco, CA 94016" +263105,Wired Headphones,1,11.99,09/26/19 22:33,"998 Lake St, Dallas, TX 75001" +263106,AA Batteries (4-pack),1,3.84,09/13/19 08:18,"97 Hickory St, Austin, TX 73301" +263107,Lightning Charging Cable,1,14.95,09/27/19 12:43,"801 Sunset St, Los Angeles, CA 90001" +263108,AA Batteries (4-pack),1,3.84,09/01/19 11:19,"488 Lake St, San Francisco, CA 94016" +263109,AAA Batteries (4-pack),3,2.99,09/25/19 20:36,"975 Willow St, Dallas, TX 75001" +263110,Bose SoundSport Headphones,1,99.99,09/16/19 19:38,"849 South St, Los Angeles, CA 90001" +263111,AA Batteries (4-pack),1,3.84,09/08/19 14:59,"779 Sunset St, Atlanta, GA 30301" +263112,20in Monitor,1,109.99,09/25/19 12:19,"386 Main St, Boston, MA 02215" +263113,Wired Headphones,1,11.99,09/09/19 19:31,"222 Cherry St, New York City, NY 10001" +263114,Bose SoundSport Headphones,1,99.99,09/21/19 18:18,"520 Lakeview St, San Francisco, CA 94016" +263115,USB-C Charging Cable,1,11.95,09/26/19 13:18,"332 8th St, Portland, OR 97035" +263116,AA Batteries (4-pack),1,3.84,09/24/19 11:53,"717 10th St, Boston, MA 02215" +263117,AA Batteries (4-pack),1,3.84,09/07/19 12:52,"320 2nd St, Seattle, WA 98101" +263118,34in Ultrawide Monitor,1,379.99,09/14/19 20:19,"607 Forest St, Boston, MA 02215" +263119,Wired Headphones,1,11.99,09/29/19 06:27,"986 Ridge St, Boston, MA 02215" +263120,iPhone,1,700,09/23/19 09:00,"114 Highland St, Boston, MA 02215" +263120,Lightning Charging Cable,1,14.95,09/23/19 09:00,"114 Highland St, Boston, MA 02215" +263121,20in Monitor,1,109.99,09/29/19 17:59,"842 1st St, Los Angeles, CA 90001" +263122,27in FHD Monitor,1,149.99,09/01/19 16:24,"623 West St, Boston, MA 02215" +263123,AA Batteries (4-pack),1,3.84,09/04/19 16:42,"951 South St, Los Angeles, CA 90001" +263124,AAA Batteries (4-pack),1,2.99,09/17/19 20:15,"91 South St, Seattle, WA 98101" +263125,27in 4K Gaming Monitor,1,389.99,09/11/19 10:34,"811 River St, Seattle, WA 98101" +263126,LG Dryer,1,600.0,09/25/19 13:40,"738 Lake St, Atlanta, GA 30301" +263127,Lightning Charging Cable,1,14.95,09/05/19 10:57,"612 River St, Boston, MA 02215" +263128,Bose SoundSport Headphones,1,99.99,09/27/19 05:36,"495 Pine St, Dallas, TX 75001" +263129,AAA Batteries (4-pack),1,2.99,09/29/19 17:34,"936 South St, San Francisco, CA 94016" +263130,USB-C Charging Cable,1,11.95,09/13/19 11:04,"671 Willow St, San Francisco, CA 94016" +263131,Flatscreen TV,1,300,09/26/19 16:59,"665 River St, New York City, NY 10001" +263132,Lightning Charging Cable,1,14.95,09/15/19 22:36,"5 7th St, San Francisco, CA 94016" +263133,AAA Batteries (4-pack),1,2.99,09/21/19 22:01,"925 Johnson St, New York City, NY 10001" +263134,Apple Airpods Headphones,1,150,09/24/19 18:13,"967 Elm St, New York City, NY 10001" +263135,Google Phone,1,600,09/26/19 08:29,"559 Dogwood St, San Francisco, CA 94016" +263136,USB-C Charging Cable,1,11.95,09/27/19 12:01,"10 12th St, Atlanta, GA 30301" +263137,27in FHD Monitor,1,149.99,09/23/19 11:00,"531 Elm St, San Francisco, CA 94016" +263138,AAA Batteries (4-pack),2,2.99,09/14/19 13:01,"788 Johnson St, Boston, MA 02215" +263139,Bose SoundSport Headphones,1,99.99,09/30/19 13:34,"302 Ridge St, San Francisco, CA 94016" +263140,Bose SoundSport Headphones,1,99.99,09/11/19 15:37,"839 Chestnut St, Boston, MA 02215" +263141,Bose SoundSport Headphones,1,99.99,09/18/19 16:48,"201 Willow St, San Francisco, CA 94016" +263142,Bose SoundSport Headphones,1,99.99,09/24/19 12:42,"893 4th St, Los Angeles, CA 90001" +263143,Macbook Pro Laptop,1,1700,09/09/19 13:52,"266 River St, New York City, NY 10001" +263144,Macbook Pro Laptop,1,1700,09/17/19 22:39,"447 Pine St, Austin, TX 73301" +263145,20in Monitor,1,109.99,09/08/19 20:52,"210 Lake St, Atlanta, GA 30301" +263146,Wired Headphones,1,11.99,09/10/19 14:02,"605 Lakeview St, San Francisco, CA 94016" +263147,Lightning Charging Cable,2,14.95,09/04/19 10:15,"550 Elm St, New York City, NY 10001" +263148,Lightning Charging Cable,1,14.95,09/06/19 07:27,"353 Jefferson St, San Francisco, CA 94016" +263149,AAA Batteries (4-pack),1,2.99,09/17/19 22:07,"787 River St, Atlanta, GA 30301" +263150,Apple Airpods Headphones,1,150,09/07/19 18:27,"678 12th St, Boston, MA 02215" +263151,Lightning Charging Cable,1,14.95,09/17/19 15:16,"25 5th St, Atlanta, GA 30301" +263152,27in FHD Monitor,1,149.99,09/29/19 14:56,"20 Highland St, San Francisco, CA 94016" +263153,34in Ultrawide Monitor,1,379.99,09/02/19 16:58,"97 Sunset St, Dallas, TX 75001" +263154,AA Batteries (4-pack),1,3.84,09/27/19 12:36,"286 10th St, New York City, NY 10001" +263155,27in FHD Monitor,1,149.99,09/30/19 18:11,"632 Pine St, Atlanta, GA 30301" +263156,AA Batteries (4-pack),1,3.84,09/23/19 13:01,"901 Johnson St, Seattle, WA 98101" +263157,Wired Headphones,1,11.99,09/09/19 12:05,"998 River St, Austin, TX 73301" +263158,Lightning Charging Cable,1,14.95,09/26/19 00:34,"848 Park St, Los Angeles, CA 90001" +263159,Lightning Charging Cable,1,14.95,09/26/19 18:04,"254 Sunset St, San Francisco, CA 94016" +263160,20in Monitor,1,109.99,09/27/19 03:03,"213 Meadow St, Dallas, TX 75001" +263161,AAA Batteries (4-pack),1,2.99,09/13/19 18:34,"892 Wilson St, Boston, MA 02215" +263162,27in FHD Monitor,1,149.99,09/12/19 18:08,"442 10th St, Los Angeles, CA 90001" +263163,Lightning Charging Cable,1,14.95,09/19/19 13:31,"65 4th St, San Francisco, CA 94016" +263164,AAA Batteries (4-pack),1,2.99,09/02/19 21:30,"534 1st St, Los Angeles, CA 90001" +263165,USB-C Charging Cable,1,11.95,09/29/19 16:17,"1 Madison St, Portland, OR 97035" +263166,27in 4K Gaming Monitor,1,389.99,09/25/19 14:53,"668 Wilson St, Atlanta, GA 30301" +263167,Bose SoundSport Headphones,1,99.99,09/13/19 16:42,"834 Elm St, Portland, OR 97035" +263168,Vareebadd Phone,1,400,09/11/19 11:01,"721 Highland St, Portland, ME 04101" +263169,Bose SoundSport Headphones,1,99.99,09/27/19 22:21,"808 4th St, Dallas, TX 75001" +263170,AA Batteries (4-pack),1,3.84,09/27/19 14:49,"344 Johnson St, Portland, ME 04101" +263171,Wired Headphones,1,11.99,09/27/19 20:19,"225 14th St, Atlanta, GA 30301" +263172,iPhone,1,700,09/04/19 00:32,"623 13th St, Los Angeles, CA 90001" +263173,Lightning Charging Cable,1,14.95,09/10/19 00:49,"608 14th St, San Francisco, CA 94016" +263174,Apple Airpods Headphones,1,150,09/24/19 06:35,"729 Chestnut St, Los Angeles, CA 90001" +263175,AAA Batteries (4-pack),3,2.99,09/03/19 22:14,"113 Main St, Portland, OR 97035" +263176,Lightning Charging Cable,1,14.95,09/02/19 20:13,"569 Jackson St, Atlanta, GA 30301" +263177,Wired Headphones,1,11.99,09/24/19 09:00,"578 South St, Dallas, TX 75001" +263178,AA Batteries (4-pack),1,3.84,09/29/19 22:49,"232 12th St, Seattle, WA 98101" +263179,34in Ultrawide Monitor,1,379.99,09/11/19 17:31,"986 Center St, San Francisco, CA 94016" +263180,iPhone,1,700,09/12/19 15:42,"30 Center St, Portland, OR 97035" +263181,Macbook Pro Laptop,1,1700,09/05/19 14:27,"871 8th St, San Francisco, CA 94016" +263182,27in FHD Monitor,1,149.99,09/23/19 20:26,"204 River St, Portland, OR 97035" +263183,USB-C Charging Cable,1,11.95,09/07/19 21:07,"749 Lincoln St, Atlanta, GA 30301" +263183,Wired Headphones,1,11.99,09/07/19 21:07,"749 Lincoln St, Atlanta, GA 30301" +263184,27in FHD Monitor,1,149.99,09/03/19 08:57,"202 Jefferson St, San Francisco, CA 94016" +263185,27in 4K Gaming Monitor,1,389.99,09/21/19 06:28,"699 Johnson St, Seattle, WA 98101" +263186,Macbook Pro Laptop,1,1700,09/26/19 16:09,"260 Washington St, Los Angeles, CA 90001" +263187,Bose SoundSport Headphones,1,99.99,09/13/19 01:19,"75 Maple St, Los Angeles, CA 90001" +263188,Lightning Charging Cable,1,14.95,09/30/19 19:03,"613 Forest St, Los Angeles, CA 90001" +263189,Apple Airpods Headphones,1,150,09/07/19 20:24,"873 North St, Boston, MA 02215" +263190,iPhone,1,700,09/30/19 16:24,"880 Center St, Dallas, TX 75001" +263190,Lightning Charging Cable,1,14.95,09/30/19 16:24,"880 Center St, Dallas, TX 75001" +263191,27in FHD Monitor,1,149.99,09/03/19 22:30,"560 Hill St, Boston, MA 02215" +263192,Wired Headphones,3,11.99,09/02/19 10:40,"783 Adams St, Atlanta, GA 30301" +263193,Wired Headphones,1,11.99,09/21/19 19:27,"277 Forest St, Boston, MA 02215" +263194,AA Batteries (4-pack),1,3.84,09/03/19 16:07,"387 6th St, San Francisco, CA 94016" +263195,Wired Headphones,1,11.99,09/28/19 10:35,"766 Spruce St, Austin, TX 73301" +263196,AAA Batteries (4-pack),1,2.99,09/28/19 16:16,"465 Hill St, Los Angeles, CA 90001" +263197,Macbook Pro Laptop,1,1700,09/02/19 17:11,"987 South St, Seattle, WA 98101" +263198,AA Batteries (4-pack),1,3.84,09/04/19 12:01,"940 Lakeview St, Los Angeles, CA 90001" +263199,Google Phone,1,600,09/01/19 19:49,"476 South St, San Francisco, CA 94016" +263199,USB-C Charging Cable,1,11.95,09/01/19 19:49,"476 South St, San Francisco, CA 94016" +263200,LG Dryer,1,600.0,09/23/19 18:00,"621 Wilson St, Dallas, TX 75001" +263201,Lightning Charging Cable,1,14.95,09/18/19 21:52,"771 Wilson St, San Francisco, CA 94016" +263202,27in FHD Monitor,1,149.99,09/14/19 11:31,"600 1st St, San Francisco, CA 94016" +263203,Wired Headphones,1,11.99,09/25/19 20:13,"23 Wilson St, Dallas, TX 75001" +263204,34in Ultrawide Monitor,1,379.99,09/15/19 16:51,"491 North St, Los Angeles, CA 90001" +263205,Bose SoundSport Headphones,1,99.99,09/30/19 20:47,"319 Lakeview St, Atlanta, GA 30301" +263206,20in Monitor,1,109.99,09/11/19 19:50,"83 Washington St, Boston, MA 02215" +263207,Wired Headphones,1,11.99,09/25/19 14:27,"840 Walnut St, San Francisco, CA 94016" +263208,iPhone,1,700,09/12/19 22:01,"224 Pine St, Dallas, TX 75001" +263209,USB-C Charging Cable,2,11.95,09/13/19 12:29,"47 Sunset St, Portland, OR 97035" +263210,USB-C Charging Cable,2,11.95,09/24/19 00:06,"251 Madison St, New York City, NY 10001" +263211,27in FHD Monitor,1,149.99,09/11/19 14:45,"817 Main St, Dallas, TX 75001" +263212,27in FHD Monitor,1,149.99,09/12/19 15:17,"934 Ridge St, New York City, NY 10001" +263213,AA Batteries (4-pack),1,3.84,09/23/19 11:39,"116 4th St, New York City, NY 10001" +263214,iPhone,1,700,09/15/19 16:10,"670 West St, Austin, TX 73301" +263215,USB-C Charging Cable,1,11.95,09/25/19 10:25,"54 12th St, San Francisco, CA 94016" +263216,34in Ultrawide Monitor,1,379.99,09/24/19 19:46,"496 Center St, Los Angeles, CA 90001" +263217,AAA Batteries (4-pack),1,2.99,09/19/19 21:35,"203 Willow St, New York City, NY 10001" +263218,Wired Headphones,1,11.99,09/29/19 11:15,"811 Wilson St, New York City, NY 10001" +263219,Macbook Pro Laptop,1,1700,09/28/19 06:06,"373 Madison St, San Francisco, CA 94016" +263220,USB-C Charging Cable,1,11.95,09/20/19 20:39,"752 Lincoln St, Atlanta, GA 30301" +263221,AA Batteries (4-pack),1,3.84,09/01/19 06:56,"692 10th St, Dallas, TX 75001" +263222,USB-C Charging Cable,1,11.95,09/18/19 22:13,"166 Hickory St, New York City, NY 10001" +263223,Wired Headphones,2,11.99,09/18/19 22:33,"414 South St, Seattle, WA 98101" +263224,20in Monitor,1,109.99,09/09/19 09:36,"717 Center St, New York City, NY 10001" +263225,Lightning Charging Cable,1,14.95,09/25/19 13:50,"655 Wilson St, New York City, NY 10001" +263226,Lightning Charging Cable,1,14.95,09/29/19 21:05,"762 Ridge St, Austin, TX 73301" +263227,Wired Headphones,2,11.99,09/26/19 12:12,"962 4th St, Boston, MA 02215" +263228,Lightning Charging Cable,1,14.95,09/12/19 19:40,"936 8th St, Atlanta, GA 30301" +263229,Google Phone,1,600,09/23/19 09:21,"174 Walnut St, Boston, MA 02215" +263229,Wired Headphones,1,11.99,09/23/19 09:21,"174 Walnut St, Boston, MA 02215" +263230,Lightning Charging Cable,1,14.95,09/29/19 11:56,"703 Elm St, Atlanta, GA 30301" +263231,27in FHD Monitor,1,149.99,09/08/19 20:02,"453 Maple St, Seattle, WA 98101" +263232,AA Batteries (4-pack),1,3.84,09/04/19 09:41,"542 North St, Dallas, TX 75001" +263233,AAA Batteries (4-pack),1,2.99,09/20/19 17:29,"118 Chestnut St, Portland, OR 97035" +263234,AA Batteries (4-pack),1,3.84,09/30/19 15:02,"752 Jefferson St, New York City, NY 10001" +263235,20in Monitor,1,109.99,09/08/19 15:22,"476 Spruce St, New York City, NY 10001" +263236,AA Batteries (4-pack),1,3.84,09/09/19 11:20,"133 11th St, Atlanta, GA 30301" +263237,Lightning Charging Cable,1,14.95,09/19/19 22:53,"723 13th St, San Francisco, CA 94016" +263237,27in 4K Gaming Monitor,1,389.99,09/19/19 22:53,"723 13th St, San Francisco, CA 94016" +263238,AA Batteries (4-pack),1,3.84,09/20/19 18:47,"707 13th St, Boston, MA 02215" +263239,USB-C Charging Cable,1,11.95,09/23/19 22:38,"853 12th St, Portland, OR 97035" +263240,AAA Batteries (4-pack),2,2.99,09/08/19 15:39,"255 12th St, Los Angeles, CA 90001" +263241,iPhone,1,700,09/15/19 13:58,"794 11th St, San Francisco, CA 94016" +263242,Wired Headphones,1,11.99,09/03/19 18:28,"201 12th St, Los Angeles, CA 90001" +263243,Vareebadd Phone,1,400,09/19/19 11:12,"656 Willow St, Dallas, TX 75001" +263243,USB-C Charging Cable,2,11.95,09/19/19 11:12,"656 Willow St, Dallas, TX 75001" +263244,Wired Headphones,1,11.99,09/30/19 16:21,"743 Walnut St, Dallas, TX 75001" +263245,AA Batteries (4-pack),3,3.84,09/29/19 09:20,"851 Maple St, New York City, NY 10001" +263246,USB-C Charging Cable,1,11.95,09/26/19 20:10,"194 Center St, Seattle, WA 98101" +263247,27in FHD Monitor,1,149.99,09/14/19 23:34,"784 Cedar St, San Francisco, CA 94016" +263248,34in Ultrawide Monitor,1,379.99,09/21/19 18:22,"604 13th St, Los Angeles, CA 90001" +263249,Apple Airpods Headphones,1,150,09/22/19 13:23,"591 1st St, San Francisco, CA 94016" +263250,Google Phone,1,600,09/30/19 01:30,"506 14th St, Dallas, TX 75001" +263251,USB-C Charging Cable,1,11.95,09/23/19 17:17,"529 Adams St, San Francisco, CA 94016" +263252,Apple Airpods Headphones,1,150,09/15/19 17:31,"647 South St, New York City, NY 10001" +263253,34in Ultrawide Monitor,1,379.99,09/14/19 09:49,"95 1st St, New York City, NY 10001" +263254,27in FHD Monitor,1,149.99,09/14/19 10:21,"893 14th St, Los Angeles, CA 90001" +263255,AAA Batteries (4-pack),1,2.99,09/23/19 17:54,"593 South St, Dallas, TX 75001" +263256,Vareebadd Phone,1,400,09/09/19 12:33,"589 Walnut St, Los Angeles, CA 90001" +263256,USB-C Charging Cable,1,11.95,09/09/19 12:33,"589 Walnut St, Los Angeles, CA 90001" +263257,Apple Airpods Headphones,1,150,09/27/19 14:38,"42 Chestnut St, Austin, TX 73301" +263258,iPhone,1,700,09/21/19 11:31,"194 South St, New York City, NY 10001" +263259,Wired Headphones,1,11.99,09/04/19 20:51,"913 4th St, Atlanta, GA 30301" +263260,Apple Airpods Headphones,1,150,09/25/19 13:59,"867 Ridge St, Dallas, TX 75001" +263261,USB-C Charging Cable,2,11.95,09/11/19 10:49,"489 4th St, Atlanta, GA 30301" +263262,27in FHD Monitor,1,149.99,09/12/19 14:49,"720 Lincoln St, Los Angeles, CA 90001" +263263,Flatscreen TV,1,300,09/03/19 21:31,"167 Wilson St, San Francisco, CA 94016" +263264,AA Batteries (4-pack),1,3.84,09/24/19 15:04,"421 Wilson St, Boston, MA 02215" +263265,Macbook Pro Laptop,1,1700,09/08/19 11:25,"485 1st St, Los Angeles, CA 90001" +263266,iPhone,1,700,09/27/19 12:06,"577 Dogwood St, New York City, NY 10001" +263267,Wired Headphones,1,11.99,09/09/19 11:41,"768 Madison St, New York City, NY 10001" +263268,Lightning Charging Cable,1,14.95,09/15/19 19:39,"83 Willow St, Portland, OR 97035" +263269,Lightning Charging Cable,1,14.95,09/07/19 18:20,"84 Lincoln St, Seattle, WA 98101" +263270,AAA Batteries (4-pack),1,2.99,09/29/19 19:58,"633 14th St, New York City, NY 10001" +263271,USB-C Charging Cable,1,11.95,09/14/19 10:52,"946 Willow St, Los Angeles, CA 90001" +263272,27in 4K Gaming Monitor,1,389.99,09/23/19 18:38,"833 10th St, Boston, MA 02215" +263273,Bose SoundSport Headphones,1,99.99,09/07/19 11:30,"993 11th St, Seattle, WA 98101" +263274,Bose SoundSport Headphones,1,99.99,09/07/19 18:20,"556 13th St, Boston, MA 02215" +263275,AAA Batteries (4-pack),1,2.99,09/30/19 10:14,"75 13th St, New York City, NY 10001" +263276,AA Batteries (4-pack),1,3.84,09/10/19 14:45,"983 Johnson St, Dallas, TX 75001" +263277,USB-C Charging Cable,2,11.95,09/12/19 22:06,"130 9th St, Atlanta, GA 30301" +263278,ThinkPad Laptop,1,999.99,09/06/19 07:39,"714 Cedar St, San Francisco, CA 94016" +263279,Lightning Charging Cable,1,14.95,09/19/19 15:49,"560 Walnut St, Los Angeles, CA 90001" +263280,Lightning Charging Cable,1,14.95,09/23/19 23:59,"745 Willow St, Los Angeles, CA 90001" +263281,34in Ultrawide Monitor,1,379.99,09/04/19 19:39,"843 Jackson St, Los Angeles, CA 90001" +263282,AAA Batteries (4-pack),1,2.99,09/09/19 11:47,"290 1st St, Atlanta, GA 30301" +263283,AA Batteries (4-pack),1,3.84,09/12/19 20:54,"964 Lakeview St, New York City, NY 10001" +263284,27in FHD Monitor,1,149.99,09/13/19 23:09,"54 13th St, Seattle, WA 98101" +263285,AA Batteries (4-pack),1,3.84,09/29/19 00:47,"553 Highland St, Portland, OR 97035" +263286,Apple Airpods Headphones,1,150,09/14/19 22:32,"65 Lake St, Austin, TX 73301" +263287,Lightning Charging Cable,1,14.95,09/05/19 21:46,"483 Madison St, San Francisco, CA 94016" +263288,Lightning Charging Cable,1,14.95,09/18/19 15:42,"121 Sunset St, Austin, TX 73301" +263289,AA Batteries (4-pack),1,3.84,09/12/19 11:47,"65 Adams St, New York City, NY 10001" +263290,20in Monitor,1,109.99,09/03/19 18:20,"916 8th St, New York City, NY 10001" +263291,USB-C Charging Cable,1,11.95,09/21/19 14:00,"476 Pine St, San Francisco, CA 94016" +263292,Wired Headphones,1,11.99,09/13/19 17:34,"116 Willow St, Seattle, WA 98101" +263293,Apple Airpods Headphones,1,150,09/03/19 14:38,"275 9th St, Seattle, WA 98101" +263294,Bose SoundSport Headphones,1,99.99,09/28/19 22:34,"869 Pine St, Seattle, WA 98101" +263295,AAA Batteries (4-pack),1,2.99,09/03/19 19:39,"845 Elm St, New York City, NY 10001" +263296,Macbook Pro Laptop,1,1700,09/07/19 13:37,"915 Center St, New York City, NY 10001" +263297,AA Batteries (4-pack),1,3.84,09/25/19 19:15,"151 8th St, Portland, OR 97035" +263298,AA Batteries (4-pack),1,3.84,09/10/19 01:58,"754 Church St, New York City, NY 10001" +263299,Bose SoundSport Headphones,1,99.99,09/15/19 10:46,"410 Walnut St, San Francisco, CA 94016" +263300,Apple Airpods Headphones,1,150,09/02/19 18:09,"110 Pine St, Atlanta, GA 30301" +263301,AA Batteries (4-pack),2,3.84,09/06/19 11:09,"744 Chestnut St, Boston, MA 02215" +263302,AA Batteries (4-pack),1,3.84,09/11/19 18:56,"824 West St, New York City, NY 10001" +263303,Wired Headphones,1,11.99,09/18/19 09:24,"496 Adams St, San Francisco, CA 94016" +263304,34in Ultrawide Monitor,1,379.99,09/02/19 00:58,"962 Hill St, Los Angeles, CA 90001" +263305,AA Batteries (4-pack),1,3.84,09/07/19 15:08,"568 8th St, Boston, MA 02215" +263306,Google Phone,1,600,09/24/19 21:20,"231 Willow St, San Francisco, CA 94016" +263307,AA Batteries (4-pack),1,3.84,09/26/19 13:53,"801 Lakeview St, San Francisco, CA 94016" +263308,Bose SoundSport Headphones,1,99.99,09/28/19 09:20,"77 Madison St, Boston, MA 02215" +263309,USB-C Charging Cable,1,11.95,09/19/19 20:21,"874 Dogwood St, San Francisco, CA 94016" +263310,Apple Airpods Headphones,1,150,09/13/19 18:04,"513 Sunset St, Portland, OR 97035" +263311,Wired Headphones,1,11.99,09/23/19 12:16,"962 Hill St, San Francisco, CA 94016" +263312,Google Phone,1,600,09/13/19 01:12,"100 Jackson St, Boston, MA 02215" +263313,Wired Headphones,1,11.99,09/26/19 12:15,"526 Cherry St, Boston, MA 02215" +263314,USB-C Charging Cable,1,11.95,09/24/19 23:03,"462 Lake St, Los Angeles, CA 90001" +263315,Apple Airpods Headphones,1,150,09/30/19 16:51,"112 4th St, San Francisco, CA 94016" +263316,Apple Airpods Headphones,1,150,09/27/19 20:28,"299 Cherry St, Los Angeles, CA 90001" +263317,USB-C Charging Cable,1,11.95,09/05/19 11:40,"879 Cedar St, Dallas, TX 75001" +263318,ThinkPad Laptop,1,999.99,09/01/19 15:15,"954 West St, San Francisco, CA 94016" +263319,Wired Headphones,1,11.99,09/07/19 21:43,"475 Willow St, Los Angeles, CA 90001" +263320,34in Ultrawide Monitor,1,379.99,09/01/19 13:49,"212 Cherry St, San Francisco, CA 94016" +263321,USB-C Charging Cable,1,11.95,09/11/19 10:50,"843 Willow St, Boston, MA 02215" +263322,Wired Headphones,1,11.99,09/03/19 18:15,"521 Lakeview St, Atlanta, GA 30301" +263323,Vareebadd Phone,1,400,09/02/19 14:24,"710 7th St, Boston, MA 02215" +263324,USB-C Charging Cable,1,11.95,09/30/19 08:41,"838 8th St, Portland, OR 97035" +263325,AAA Batteries (4-pack),2,2.99,09/23/19 10:19,"198 4th St, Dallas, TX 75001" +263326,34in Ultrawide Monitor,1,379.99,09/29/19 13:34,"777 Lake St, Los Angeles, CA 90001" +263327,USB-C Charging Cable,1,11.95,09/17/19 15:54,"639 South St, San Francisco, CA 94016" +263328,Flatscreen TV,1,300,09/27/19 14:50,"849 Jefferson St, Los Angeles, CA 90001" +263329,27in FHD Monitor,1,149.99,09/08/19 19:56,"777 Cedar St, Dallas, TX 75001" +263330,34in Ultrawide Monitor,1,379.99,09/15/19 17:22,"723 West St, Seattle, WA 98101" +263331,Apple Airpods Headphones,1,150,09/24/19 21:06,"889 Wilson St, Los Angeles, CA 90001" +263332,USB-C Charging Cable,1,11.95,09/06/19 16:39,"476 10th St, Boston, MA 02215" +263333,Macbook Pro Laptop,1,1700,09/30/19 13:17,"469 10th St, Seattle, WA 98101" +263334,Wired Headphones,1,11.99,09/16/19 08:17,"769 Wilson St, Atlanta, GA 30301" +263335,Apple Airpods Headphones,1,150,09/23/19 20:54,"597 5th St, San Francisco, CA 94016" +263336,Vareebadd Phone,1,400,09/12/19 12:20,"586 Lincoln St, San Francisco, CA 94016" +263337,USB-C Charging Cable,1,11.95,09/05/19 15:39,"269 14th St, Los Angeles, CA 90001" +263338,AA Batteries (4-pack),1,3.84,09/24/19 15:50,"989 Hickory St, Los Angeles, CA 90001" +263339,Flatscreen TV,1,300,09/01/19 18:57,"555 Hill St, Boston, MA 02215" +263340,Wired Headphones,1,11.99,09/09/19 15:56,"289 Washington St, San Francisco, CA 94016" +263341,Apple Airpods Headphones,1,150,09/15/19 11:15,"526 Meadow St, Dallas, TX 75001" +263342,27in FHD Monitor,1,149.99,09/24/19 11:59,"430 Elm St, New York City, NY 10001" +263343,AAA Batteries (4-pack),2,2.99,09/09/19 14:14,"390 Pine St, San Francisco, CA 94016" +263344,Lightning Charging Cable,1,14.95,09/19/19 15:40,"837 13th St, San Francisco, CA 94016" +263345,AA Batteries (4-pack),2,3.84,09/29/19 13:11,"30 Forest St, New York City, NY 10001" +263346,iPhone,1,700,09/28/19 15:35,"924 Jackson St, New York City, NY 10001" +263347,AAA Batteries (4-pack),1,2.99,09/12/19 19:45,"53 9th St, Los Angeles, CA 90001" +263348,AA Batteries (4-pack),1,3.84,09/13/19 20:17,"369 Church St, Los Angeles, CA 90001" +263349,Lightning Charging Cable,1,14.95,09/16/19 15:21,"734 13th St, San Francisco, CA 94016" +263350,Wired Headphones,1,11.99,09/22/19 12:16,"880 Meadow St, Seattle, WA 98101" +263351,AAA Batteries (4-pack),1,2.99,09/16/19 18:58,"649 Willow St, San Francisco, CA 94016" +263352,Bose SoundSport Headphones,1,99.99,09/26/19 14:03,"608 Ridge St, New York City, NY 10001" +263353,34in Ultrawide Monitor,1,379.99,09/01/19 09:41,"921 Walnut St, Los Angeles, CA 90001" +263354,AAA Batteries (4-pack),2,2.99,09/03/19 12:31,"529 10th St, Dallas, TX 75001" +263355,Lightning Charging Cable,1,14.95,09/03/19 19:23,"124 Ridge St, Portland, OR 97035" +263356,Lightning Charging Cable,1,14.95,09/23/19 14:53,"993 Meadow St, San Francisco, CA 94016" +263357,27in FHD Monitor,1,149.99,09/04/19 15:23,"982 Walnut St, Dallas, TX 75001" +263358,Flatscreen TV,1,300,09/18/19 21:16,"881 Lincoln St, San Francisco, CA 94016" +263359,AAA Batteries (4-pack),1,2.99,09/18/19 09:00,"748 Walnut St, San Francisco, CA 94016" +263360,20in Monitor,1,109.99,09/22/19 21:07,"698 Cherry St, Seattle, WA 98101" +263361,Apple Airpods Headphones,1,150,09/12/19 23:46,"549 Lakeview St, Los Angeles, CA 90001" +263362,27in FHD Monitor,1,149.99,09/26/19 14:49,"432 Hickory St, Atlanta, GA 30301" +263363,Wired Headphones,1,11.99,09/15/19 06:13,"573 South St, Boston, MA 02215" +263364,iPhone,1,700,09/16/19 10:25,"138 10th St, San Francisco, CA 94016" +263365,USB-C Charging Cable,1,11.95,09/22/19 23:22,"311 Lincoln St, Los Angeles, CA 90001" +263366,Apple Airpods Headphones,1,150,09/29/19 00:34,"116 West St, Austin, TX 73301" +263367,Bose SoundSport Headphones,1,99.99,09/18/19 22:23,"484 Dogwood St, Seattle, WA 98101" +263368,iPhone,1,700,09/21/19 12:49,"450 River St, Los Angeles, CA 90001" +263369,USB-C Charging Cable,1,11.95,09/26/19 14:46,"833 Dogwood St, Los Angeles, CA 90001" +263370,Google Phone,1,600,09/19/19 23:53,"741 Willow St, Dallas, TX 75001" +263371,27in 4K Gaming Monitor,1,389.99,09/16/19 20:43,"640 4th St, Boston, MA 02215" +263372,Wired Headphones,1,11.99,09/01/19 23:33,"677 Adams St, New York City, NY 10001" +263373,AA Batteries (4-pack),1,3.84,09/07/19 14:43,"248 Adams St, Los Angeles, CA 90001" +263374,AA Batteries (4-pack),2,3.84,09/22/19 10:48,"302 7th St, Atlanta, GA 30301" +263375,iPhone,1,700,09/12/19 14:53,"562 13th St, Boston, MA 02215" +263375,Apple Airpods Headphones,1,150,09/12/19 14:53,"562 13th St, Boston, MA 02215" +263376,Google Phone,1,600,09/12/19 06:46,"992 Washington St, Los Angeles, CA 90001" +263377,Macbook Pro Laptop,1,1700,09/18/19 18:12,"22 Wilson St, Dallas, TX 75001" +263378,USB-C Charging Cable,1,11.95,09/07/19 13:02,"636 Lakeview St, New York City, NY 10001" +263379,AAA Batteries (4-pack),1,2.99,09/12/19 19:30,"127 Spruce St, Seattle, WA 98101" +263380,Flatscreen TV,1,300,09/19/19 23:59,"157 Ridge St, Boston, MA 02215" +263381,AAA Batteries (4-pack),1,2.99,09/02/19 17:23,"918 Hill St, San Francisco, CA 94016" +263382,AA Batteries (4-pack),1,3.84,09/29/19 08:57,"562 11th St, Dallas, TX 75001" +263383,Flatscreen TV,1,300,09/23/19 11:12,"605 Washington St, San Francisco, CA 94016" +263384,Lightning Charging Cable,1,14.95,09/28/19 13:04,"121 13th St, Seattle, WA 98101" +263385,27in FHD Monitor,1,149.99,09/28/19 15:58,"935 Johnson St, Boston, MA 02215" +263386,iPhone,1,700,09/14/19 14:17,"954 Walnut St, Boston, MA 02215" +263387,Lightning Charging Cable,1,14.95,09/07/19 08:51,"671 4th St, Los Angeles, CA 90001" +263388,AA Batteries (4-pack),1,3.84,09/24/19 21:32,"679 Adams St, San Francisco, CA 94016" +263389,AA Batteries (4-pack),1,3.84,09/01/19 11:58,"931 Center St, Los Angeles, CA 90001" +263390,USB-C Charging Cable,1,11.95,09/05/19 10:02,"940 Walnut St, Atlanta, GA 30301" +263391,AAA Batteries (4-pack),2,2.99,09/07/19 16:06,"774 North St, Portland, ME 04101" +263392,Lightning Charging Cable,1,14.95,09/05/19 22:21,"120 Wilson St, New York City, NY 10001" +263393,USB-C Charging Cable,1,11.95,09/22/19 19:39,"746 Main St, Los Angeles, CA 90001" +263393,Wired Headphones,1,11.99,09/22/19 19:39,"746 Main St, Los Angeles, CA 90001" +263394,Macbook Pro Laptop,1,1700,09/14/19 10:16,"710 Ridge St, Atlanta, GA 30301" +263395,Apple Airpods Headphones,1,150,09/18/19 13:06,"567 5th St, New York City, NY 10001" +263396,iPhone,1,700,09/20/19 11:15,"978 Spruce St, New York City, NY 10001" +263397,AAA Batteries (4-pack),1,2.99,09/13/19 08:59,"372 Highland St, Portland, OR 97035" +263398,AAA Batteries (4-pack),2,2.99,09/02/19 11:38,"926 Hickory St, Seattle, WA 98101" +263399,Apple Airpods Headphones,1,150,09/25/19 23:53,"675 7th St, New York City, NY 10001" +263400,27in FHD Monitor,1,149.99,09/06/19 12:59,"284 4th St, Boston, MA 02215" +263401,Wired Headphones,1,11.99,09/26/19 15:42,"504 Ridge St, Dallas, TX 75001" +263402,Apple Airpods Headphones,1,150,09/14/19 19:25,"361 Church St, Portland, OR 97035" +263403,27in FHD Monitor,1,149.99,09/08/19 16:25,"98 Willow St, San Francisco, CA 94016" +263404,Apple Airpods Headphones,1,150,09/21/19 00:26,"287 South St, Atlanta, GA 30301" +263405,Bose SoundSport Headphones,1,99.99,09/18/19 16:25,"178 Church St, Los Angeles, CA 90001" +263406,AAA Batteries (4-pack),1,2.99,09/26/19 12:56,"335 10th St, Atlanta, GA 30301" +263407,Macbook Pro Laptop,1,1700,09/14/19 12:23,"623 11th St, Dallas, TX 75001" +263408,Lightning Charging Cable,1,14.95,09/19/19 19:30,"816 Main St, New York City, NY 10001" +263409,Bose SoundSport Headphones,1,99.99,09/14/19 14:36,"160 6th St, Atlanta, GA 30301" +263410,Wired Headphones,1,11.99,09/06/19 13:54,"27 West St, Boston, MA 02215" +263411,ThinkPad Laptop,1,999.99,09/06/19 15:59,"727 Johnson St, Boston, MA 02215" +263412,Lightning Charging Cable,1,14.95,09/07/19 23:32,"824 Meadow St, New York City, NY 10001" +263413,iPhone,1,700,09/16/19 18:15,"82 Adams St, Los Angeles, CA 90001" +263414,AAA Batteries (4-pack),1,2.99,09/12/19 13:33,"641 Church St, San Francisco, CA 94016" +263415,Wired Headphones,1,11.99,09/10/19 12:05,"431 Adams St, New York City, NY 10001" +263416,Wired Headphones,1,11.99,09/13/19 03:19,"852 Center St, Dallas, TX 75001" +263417,AAA Batteries (4-pack),1,2.99,09/19/19 18:39,"695 Walnut St, Atlanta, GA 30301" +263418,AAA Batteries (4-pack),4,2.99,09/18/19 21:11,"245 Dogwood St, Los Angeles, CA 90001" +263419,USB-C Charging Cable,1,11.95,09/27/19 12:56,"63 Lake St, San Francisco, CA 94016" +263420,Macbook Pro Laptop,1,1700,10/01/19 01:35,"678 7th St, Dallas, TX 75001" +263421,Vareebadd Phone,1,400,09/17/19 09:56,"998 Adams St, Atlanta, GA 30301" +263421,Wired Headphones,1,11.99,09/17/19 09:56,"998 Adams St, Atlanta, GA 30301" +263422,Apple Airpods Headphones,1,150,09/17/19 13:04,"791 4th St, Atlanta, GA 30301" +263423,Vareebadd Phone,1,400,09/20/19 08:47,"314 2nd St, New York City, NY 10001" +263424,Lightning Charging Cable,1,14.95,09/26/19 13:57,"218 14th St, Austin, TX 73301" +263425,AA Batteries (4-pack),2,3.84,09/25/19 20:19,"958 Walnut St, Austin, TX 73301" +,,,,, +263426,AA Batteries (4-pack),1,3.84,09/30/19 19:29,"93 Lincoln St, New York City, NY 10001" +263427,Google Phone,1,600,09/02/19 23:34,"500 Wilson St, Seattle, WA 98101" +263427,USB-C Charging Cable,2,11.95,09/02/19 23:34,"500 Wilson St, Seattle, WA 98101" +263428,20in Monitor,1,109.99,09/15/19 22:13,"839 7th St, New York City, NY 10001" +263429,AA Batteries (4-pack),1,3.84,09/30/19 01:50,"5 Forest St, Portland, OR 97035" +263430,USB-C Charging Cable,1,11.95,09/12/19 16:29,"440 River St, Portland, OR 97035" +263431,Vareebadd Phone,1,400,09/18/19 15:00,"94 Johnson St, San Francisco, CA 94016" +263432,27in 4K Gaming Monitor,1,389.99,09/07/19 15:58,"94 Madison St, Boston, MA 02215" +263433,27in FHD Monitor,1,149.99,09/15/19 08:31,"359 Jefferson St, Dallas, TX 75001" +263434,ThinkPad Laptop,1,999.99,09/20/19 13:29,"391 River St, New York City, NY 10001" +263435,Lightning Charging Cable,1,14.95,09/24/19 09:59,"421 Meadow St, San Francisco, CA 94016" +263436,ThinkPad Laptop,1,999.99,09/23/19 19:58,"244 Sunset St, Dallas, TX 75001" +263437,USB-C Charging Cable,1,11.95,09/01/19 15:43,"224 River St, Boston, MA 02215" +263438,Apple Airpods Headphones,1,150,09/22/19 20:58,"793 Wilson St, San Francisco, CA 94016" +263439,USB-C Charging Cable,1,11.95,09/25/19 16:23,"624 Park St, Atlanta, GA 30301" +263440,Flatscreen TV,1,300,09/13/19 08:50,"200 Chestnut St, Los Angeles, CA 90001" +263441,Google Phone,1,600,09/22/19 04:24,"492 Chestnut St, New York City, NY 10001" +263441,Wired Headphones,1,11.99,09/22/19 04:24,"492 Chestnut St, New York City, NY 10001" +263442,Apple Airpods Headphones,1,150,09/05/19 23:30,"830 5th St, New York City, NY 10001" +263443,Wired Headphones,1,11.99,09/11/19 18:47,"528 Adams St, Portland, OR 97035" +263444,Wired Headphones,1,11.99,09/26/19 12:35,"135 2nd St, San Francisco, CA 94016" +263445,AAA Batteries (4-pack),1,2.99,09/19/19 12:51,"399 Park St, Portland, OR 97035" +263446,USB-C Charging Cable,1,11.95,09/28/19 20:11,"47 9th St, New York City, NY 10001" +263447,Bose SoundSport Headphones,1,99.99,09/26/19 13:30,"94 Adams St, New York City, NY 10001" +263448,27in FHD Monitor,1,149.99,09/04/19 11:19,"151 Elm St, San Francisco, CA 94016" +263449,AA Batteries (4-pack),1,3.84,09/13/19 21:56,"823 Ridge St, Dallas, TX 75001" +263450,iPhone,1,700,09/19/19 19:38,"655 Washington St, New York City, NY 10001" +263451,iPhone,1,700,09/07/19 13:02,"225 River St, New York City, NY 10001" +263452,27in 4K Gaming Monitor,1,389.99,09/29/19 17:55,"635 14th St, Boston, MA 02215" +263453,Apple Airpods Headphones,1,150,09/13/19 17:26,"554 Adams St, San Francisco, CA 94016" +263454,Lightning Charging Cable,1,14.95,09/16/19 12:47,"946 Lakeview St, Portland, OR 97035" +263455,AA Batteries (4-pack),1,3.84,09/30/19 18:55,"12 Cedar St, New York City, NY 10001" +263456,Apple Airpods Headphones,1,150,09/27/19 15:07,"379 14th St, San Francisco, CA 94016" +263457,Apple Airpods Headphones,1,150,09/26/19 11:27,"58 Forest St, Austin, TX 73301" +263457,Lightning Charging Cable,1,14.95,09/26/19 11:27,"58 Forest St, Austin, TX 73301" +263458,Bose SoundSport Headphones,1,99.99,09/06/19 20:48,"767 North St, San Francisco, CA 94016" +263459,iPhone,1,700,09/17/19 17:39,"696 11th St, Boston, MA 02215" +263460,Wired Headphones,1,11.99,09/17/19 08:47,"972 Church St, Atlanta, GA 30301" +263461,34in Ultrawide Monitor,1,379.99,09/16/19 11:42,"397 Sunset St, Atlanta, GA 30301" +263462,34in Ultrawide Monitor,1,379.99,09/21/19 14:31,"481 Meadow St, New York City, NY 10001" +263463,AAA Batteries (4-pack),1,2.99,09/20/19 09:48,"707 9th St, San Francisco, CA 94016" +263464,Apple Airpods Headphones,1,150,09/12/19 18:37,"431 Maple St, Atlanta, GA 30301" +263465,AAA Batteries (4-pack),1,2.99,09/19/19 15:04,"395 Church St, Los Angeles, CA 90001" +263466,Wired Headphones,2,11.99,09/02/19 06:50,"220 2nd St, San Francisco, CA 94016" +263467,AAA Batteries (4-pack),1,2.99,09/22/19 10:06,"596 Spruce St, Austin, TX 73301" +263468,20in Monitor,1,109.99,09/21/19 18:56,"315 11th St, Seattle, WA 98101" +263469,AA Batteries (4-pack),1,3.84,09/29/19 00:22,"677 Church St, Atlanta, GA 30301" +263470,Wired Headphones,1,11.99,09/27/19 23:45,"585 10th St, Los Angeles, CA 90001" +263471,27in FHD Monitor,1,149.99,09/30/19 14:12,"895 Church St, New York City, NY 10001" +263472,AAA Batteries (4-pack),5,2.99,09/17/19 21:03,"986 9th St, Atlanta, GA 30301" +263473,Apple Airpods Headphones,1,150,09/13/19 10:10,"538 12th St, Portland, OR 97035" +263474,Wired Headphones,1,11.99,09/14/19 15:08,"492 Lakeview St, Austin, TX 73301" +263475,Bose SoundSport Headphones,1,99.99,09/13/19 18:25,"290 11th St, San Francisco, CA 94016" +263476,Apple Airpods Headphones,1,150,09/09/19 10:52,"650 Lincoln St, Los Angeles, CA 90001" +263477,USB-C Charging Cable,1,11.95,09/29/19 08:25,"119 Jefferson St, Dallas, TX 75001" +263478,27in 4K Gaming Monitor,1,389.99,09/28/19 16:28,"921 12th St, New York City, NY 10001" +263478,27in FHD Monitor,1,149.99,09/28/19 16:28,"921 12th St, New York City, NY 10001" +263479,27in FHD Monitor,1,149.99,09/06/19 12:27,"999 Dogwood St, San Francisco, CA 94016" +263480,Apple Airpods Headphones,1,150,09/28/19 05:32,"670 12th St, New York City, NY 10001" +263481,Bose SoundSport Headphones,1,99.99,09/27/19 04:04,"18 Lakeview St, San Francisco, CA 94016" +263482,AA Batteries (4-pack),1,3.84,09/18/19 13:24,"422 Jackson St, Los Angeles, CA 90001" +263483,27in FHD Monitor,1,149.99,09/21/19 20:55,"712 Pine St, San Francisco, CA 94016" +263484,USB-C Charging Cable,1,11.95,09/29/19 09:51,"717 North St, Los Angeles, CA 90001" +263485,ThinkPad Laptop,1,999.99,09/20/19 23:48,"345 Lincoln St, Seattle, WA 98101" +263486,27in 4K Gaming Monitor,1,389.99,09/27/19 16:37,"825 Church St, Dallas, TX 75001" +263487,AA Batteries (4-pack),1,3.84,09/23/19 18:03,"94 Madison St, Atlanta, GA 30301" +263488,Lightning Charging Cable,1,14.95,09/28/19 18:11,"833 Maple St, Dallas, TX 75001" +263489,LG Washing Machine,1,600.0,09/26/19 18:18,"129 Forest St, Portland, OR 97035" +263490,Google Phone,1,600,09/29/19 12:58,"205 Dogwood St, Dallas, TX 75001" +263490,USB-C Charging Cable,1,11.95,09/29/19 12:58,"205 Dogwood St, Dallas, TX 75001" +263491,Bose SoundSport Headphones,1,99.99,09/19/19 16:27,"696 Highland St, Los Angeles, CA 90001" +263492,Bose SoundSport Headphones,1,99.99,09/19/19 14:21,"806 North St, Atlanta, GA 30301" +263493,AA Batteries (4-pack),1,3.84,09/23/19 14:28,"272 14th St, Los Angeles, CA 90001" +263494,Wired Headphones,1,11.99,09/26/19 16:43,"517 1st St, San Francisco, CA 94016" +263495,AA Batteries (4-pack),1,3.84,09/22/19 10:18,"217 10th St, New York City, NY 10001" +263496,Flatscreen TV,1,300,09/28/19 22:59,"723 Lake St, New York City, NY 10001" +263497,27in 4K Gaming Monitor,1,389.99,09/05/19 16:16,"981 6th St, Los Angeles, CA 90001" +263498,Lightning Charging Cable,1,14.95,09/13/19 00:53,"549 Hickory St, Los Angeles, CA 90001" +263499,USB-C Charging Cable,1,11.95,09/11/19 14:35,"418 Pine St, Boston, MA 02215" +263500,Apple Airpods Headphones,1,150,09/05/19 13:59,"651 6th St, Los Angeles, CA 90001" +263501,34in Ultrawide Monitor,1,379.99,09/30/19 21:21,"343 South St, Austin, TX 73301" +263502,AA Batteries (4-pack),1,3.84,09/18/19 19:56,"897 8th St, Portland, ME 04101" +263503,Apple Airpods Headphones,1,150,09/25/19 11:04,"786 Meadow St, Portland, OR 97035" +263504,USB-C Charging Cable,1,11.95,09/13/19 05:44,"642 Meadow St, Boston, MA 02215" +263505,Apple Airpods Headphones,1,150,09/27/19 08:29,"247 Cherry St, Austin, TX 73301" +263506,AAA Batteries (4-pack),2,2.99,09/05/19 23:40,"351 Washington St, San Francisco, CA 94016" +263507,Lightning Charging Cable,1,14.95,09/22/19 16:13,"780 Cedar St, Austin, TX 73301" +263508,AAA Batteries (4-pack),1,2.99,09/24/19 22:08,"159 10th St, Boston, MA 02215" +263509,Lightning Charging Cable,1,14.95,09/20/19 06:16,"146 Pine St, San Francisco, CA 94016" +263510,27in 4K Gaming Monitor,1,389.99,09/10/19 17:58,"434 Lakeview St, Atlanta, GA 30301" +263511,AA Batteries (4-pack),1,3.84,09/19/19 14:05,"359 Dogwood St, Portland, OR 97035" +263512,iPhone,1,700,09/09/19 11:24,"564 2nd St, San Francisco, CA 94016" +263513,Lightning Charging Cable,1,14.95,09/14/19 15:50,"541 Adams St, Los Angeles, CA 90001" +,,,,, +263514,Bose SoundSport Headphones,1,99.99,09/14/19 22:07,"624 Meadow St, San Francisco, CA 94016" +263515,iPhone,1,700,09/12/19 14:30,"846 Willow St, Los Angeles, CA 90001" +263516,Macbook Pro Laptop,1,1700,09/14/19 09:41,"768 Cedar St, San Francisco, CA 94016" +263517,AA Batteries (4-pack),1,3.84,09/15/19 09:45,"212 Highland St, Dallas, TX 75001" +263518,Lightning Charging Cable,1,14.95,09/12/19 10:26,"375 West St, San Francisco, CA 94016" +263519,USB-C Charging Cable,2,11.95,09/13/19 20:02,"904 Spruce St, Atlanta, GA 30301" +263520,USB-C Charging Cable,1,11.95,09/25/19 12:55,"327 Lake St, Los Angeles, CA 90001" +263521,20in Monitor,1,109.99,09/29/19 11:42,"95 Park St, Los Angeles, CA 90001" +263522,Flatscreen TV,1,300,09/21/19 20:05,"900 River St, Atlanta, GA 30301" +263523,Apple Airpods Headphones,1,150,09/07/19 10:48,"833 Madison St, Los Angeles, CA 90001" +263524,Lightning Charging Cable,1,14.95,09/15/19 16:07,"184 Church St, New York City, NY 10001" +263525,USB-C Charging Cable,1,11.95,09/11/19 20:00,"631 Hill St, Los Angeles, CA 90001" +263526,Google Phone,1,600,09/20/19 16:05,"749 5th St, Dallas, TX 75001" +263527,Bose SoundSport Headphones,1,99.99,09/29/19 14:16,"577 Meadow St, Austin, TX 73301" +263528,Bose SoundSport Headphones,1,99.99,09/08/19 21:31,"122 Center St, Portland, OR 97035" +263529,Wired Headphones,1,11.99,09/06/19 21:17,"474 Meadow St, Atlanta, GA 30301" +263530,AA Batteries (4-pack),2,3.84,09/12/19 14:21,"143 Sunset St, New York City, NY 10001" +263531,AAA Batteries (4-pack),2,2.99,09/09/19 08:38,"362 Sunset St, San Francisco, CA 94016" +263532,AAA Batteries (4-pack),2,2.99,09/18/19 11:53,"216 Wilson St, Dallas, TX 75001" +263533,AAA Batteries (4-pack),1,2.99,09/03/19 09:55,"789 North St, San Francisco, CA 94016" +263534,Lightning Charging Cable,1,14.95,09/05/19 10:12,"842 Pine St, Portland, OR 97035" +263535,USB-C Charging Cable,1,11.95,09/21/19 15:37,"663 Forest St, Portland, OR 97035" +263536,AA Batteries (4-pack),2,3.84,09/27/19 07:30,"378 Adams St, Portland, OR 97035" +263537,Google Phone,1,600,09/06/19 22:38,"414 Forest St, New York City, NY 10001" +263537,USB-C Charging Cable,1,11.95,09/06/19 22:38,"414 Forest St, New York City, NY 10001" +263538,AA Batteries (4-pack),3,3.84,09/29/19 18:17,"846 14th St, Seattle, WA 98101" +263539,34in Ultrawide Monitor,1,379.99,09/25/19 15:23,"922 8th St, Los Angeles, CA 90001" +263540,iPhone,1,700,09/06/19 21:02,"572 7th St, San Francisco, CA 94016" +263541,Macbook Pro Laptop,1,1700,09/04/19 11:17,"696 Park St, Atlanta, GA 30301" +263542,Lightning Charging Cable,1,14.95,09/17/19 15:32,"855 Church St, Atlanta, GA 30301" +263543,AAA Batteries (4-pack),1,2.99,09/27/19 19:07,"860 Cherry St, Austin, TX 73301" +263544,AA Batteries (4-pack),4,3.84,09/06/19 11:29,"872 9th St, Seattle, WA 98101" +263545,USB-C Charging Cable,1,11.95,09/15/19 13:44,"961 Forest St, Seattle, WA 98101" +263546,AA Batteries (4-pack),1,3.84,09/03/19 21:43,"478 2nd St, Atlanta, GA 30301" +263547,AA Batteries (4-pack),3,3.84,09/06/19 16:09,"331 North St, Dallas, TX 75001" +263548,USB-C Charging Cable,1,11.95,09/09/19 17:00,"821 Forest St, Boston, MA 02215" +263549,AAA Batteries (4-pack),1,2.99,09/24/19 10:22,"652 Jefferson St, Atlanta, GA 30301" +263550,Lightning Charging Cable,1,14.95,09/17/19 08:27,"798 Lincoln St, Dallas, TX 75001" +263551,AAA Batteries (4-pack),2,2.99,09/28/19 12:24,"278 8th St, Atlanta, GA 30301" +263552,Bose SoundSport Headphones,1,99.99,09/11/19 12:06,"642 11th St, San Francisco, CA 94016" +263553,34in Ultrawide Monitor,1,379.99,09/30/19 16:50,"73 Main St, Atlanta, GA 30301" +263554,AAA Batteries (4-pack),1,2.99,09/05/19 14:39,"466 Cherry St, San Francisco, CA 94016" +263555,Lightning Charging Cable,1,14.95,09/17/19 22:38,"371 Hickory St, New York City, NY 10001" +263556,Wired Headphones,1,11.99,09/12/19 21:50,"728 8th St, San Francisco, CA 94016" +263557,27in FHD Monitor,1,149.99,09/28/19 20:04,"153 Adams St, San Francisco, CA 94016" +263558,LG Washing Machine,1,600.0,09/21/19 21:42,"829 1st St, New York City, NY 10001" +263559,20in Monitor,1,109.99,09/13/19 21:13,"492 Hill St, Seattle, WA 98101" +263560,iPhone,1,700,09/02/19 17:30,"225 Meadow St, Seattle, WA 98101" +263561,Lightning Charging Cable,1,14.95,09/02/19 07:56,"292 4th St, San Francisco, CA 94016" +263562,Apple Airpods Headphones,1,150,09/22/19 01:33,"112 Lincoln St, New York City, NY 10001" +263563,AAA Batteries (4-pack),3,2.99,09/05/19 15:13,"433 West St, Los Angeles, CA 90001" +263564,Apple Airpods Headphones,1,150,09/28/19 12:29,"564 6th St, Atlanta, GA 30301" +263565,Macbook Pro Laptop,1,1700,09/11/19 15:25,"188 Cherry St, Boston, MA 02215" +263566,Apple Airpods Headphones,1,150,09/18/19 10:36,"123 9th St, San Francisco, CA 94016" +263567,AAA Batteries (4-pack),1,2.99,09/01/19 08:01,"94 Pine St, Boston, MA 02215" +263568,Wired Headphones,1,11.99,09/01/19 11:37,"276 4th St, Los Angeles, CA 90001" +263569,34in Ultrawide Monitor,1,379.99,09/09/19 19:06,"111 Lincoln St, New York City, NY 10001" +263570,Apple Airpods Headphones,1,150,09/13/19 15:34,"22 14th St, Los Angeles, CA 90001" +263571,Bose SoundSport Headphones,1,99.99,09/27/19 10:04,"270 Willow St, San Francisco, CA 94016" +263572,Lightning Charging Cable,1,14.95,09/18/19 19:02,"691 Willow St, Los Angeles, CA 90001" +263573,Lightning Charging Cable,2,14.95,09/04/19 13:26,"537 Walnut St, San Francisco, CA 94016" +263574,Bose SoundSport Headphones,1,99.99,09/03/19 16:52,"596 Walnut St, San Francisco, CA 94016" +263575,AA Batteries (4-pack),1,3.84,09/28/19 21:17,"410 Spruce St, Seattle, WA 98101" +263576,Lightning Charging Cable,1,14.95,09/13/19 00:41,"804 Jackson St, Los Angeles, CA 90001" +263577,Wired Headphones,1,11.99,09/19/19 07:58,"140 Ridge St, Boston, MA 02215" +263578,AAA Batteries (4-pack),1,2.99,10/01/19 01:08,"432 Lake St, Atlanta, GA 30301" +263579,Bose SoundSport Headphones,1,99.99,09/27/19 21:00,"567 Park St, Boston, MA 02215" +263580,Flatscreen TV,1,300,09/07/19 22:13,"380 Walnut St, Dallas, TX 75001" +263581,Wired Headphones,1,11.99,09/01/19 09:47,"198 Ridge St, Portland, ME 04101" +263582,27in FHD Monitor,1,149.99,09/03/19 15:15,"333 North St, New York City, NY 10001" +263583,iPhone,1,700,09/02/19 14:50,"966 Jefferson St, Dallas, TX 75001" +263584,AAA Batteries (4-pack),2,2.99,09/01/19 15:26,"930 South St, Portland, OR 97035" +263584,Flatscreen TV,1,300,09/01/19 15:26,"930 South St, Portland, OR 97035" +,,,,, +263585,Apple Airpods Headphones,1,150,09/16/19 13:35,"618 Park St, Los Angeles, CA 90001" +263586,Wired Headphones,1,11.99,09/12/19 10:08,"364 Sunset St, Atlanta, GA 30301" +263587,Wired Headphones,1,11.99,09/02/19 11:26,"91 12th St, San Francisco, CA 94016" +263588,Lightning Charging Cable,1,14.95,09/13/19 22:34,"712 Lincoln St, Seattle, WA 98101" +263589,iPhone,1,700,09/13/19 08:41,"643 Jackson St, New York City, NY 10001" +263590,Wired Headphones,1,11.99,09/26/19 12:15,"159 Hickory St, Atlanta, GA 30301" +263591,34in Ultrawide Monitor,1,379.99,09/27/19 08:49,"762 8th St, New York City, NY 10001" +263592,34in Ultrawide Monitor,1,379.99,09/03/19 13:41,"855 5th St, San Francisco, CA 94016" +263593,Wired Headphones,1,11.99,09/16/19 12:34,"296 Meadow St, New York City, NY 10001" +263594,Lightning Charging Cable,1,14.95,09/05/19 15:06,"97 Jackson St, New York City, NY 10001" +263595,27in FHD Monitor,1,149.99,09/22/19 20:23,"523 Sunset St, Austin, TX 73301" +263596,AA Batteries (4-pack),1,3.84,09/04/19 20:33,"283 Meadow St, Atlanta, GA 30301" +263597,Bose SoundSport Headphones,1,99.99,09/18/19 13:07,"963 Cherry St, San Francisco, CA 94016" +263598,Lightning Charging Cable,1,14.95,09/18/19 20:23,"951 5th St, San Francisco, CA 94016" +263599,USB-C Charging Cable,1,11.95,09/06/19 22:35,"978 Hill St, San Francisco, CA 94016" +263600,20in Monitor,1,109.99,09/26/19 15:10,"479 Forest St, Austin, TX 73301" +263601,Apple Airpods Headphones,1,150,09/08/19 15:03,"860 Forest St, Boston, MA 02215" +263602,Lightning Charging Cable,1,14.95,09/25/19 18:53,"141 Meadow St, Portland, OR 97035" +263603,Bose SoundSport Headphones,1,99.99,09/13/19 07:27,"906 Church St, Los Angeles, CA 90001" +263604,USB-C Charging Cable,1,11.95,09/30/19 12:43,"707 Jackson St, Portland, OR 97035" +263605,Apple Airpods Headphones,1,150,09/09/19 16:43,"488 4th St, Atlanta, GA 30301" +263606,Apple Airpods Headphones,1,150,09/17/19 18:04,"493 12th St, Dallas, TX 75001" +263607,Bose SoundSport Headphones,1,99.99,09/21/19 15:17,"533 Washington St, Portland, OR 97035" +263608,Apple Airpods Headphones,1,150,09/16/19 21:30,"456 Spruce St, San Francisco, CA 94016" +263609,34in Ultrawide Monitor,1,379.99,09/02/19 13:51,"53 1st St, New York City, NY 10001" +263610,Wired Headphones,1,11.99,09/18/19 13:56,"969 North St, New York City, NY 10001" +263611,Bose SoundSport Headphones,1,99.99,09/27/19 16:12,"525 Jefferson St, Dallas, TX 75001" +263612,27in 4K Gaming Monitor,1,389.99,09/20/19 22:08,"594 Chestnut St, Portland, ME 04101" +263613,Apple Airpods Headphones,1,150,09/09/19 22:30,"409 10th St, Portland, OR 97035" +263614,Wired Headphones,1,11.99,09/14/19 22:25,"309 14th St, San Francisco, CA 94016" +263615,AAA Batteries (4-pack),2,2.99,09/16/19 00:04,"545 Chestnut St, Boston, MA 02215" +263616,AAA Batteries (4-pack),1,2.99,09/03/19 16:58,"284 West St, Dallas, TX 75001" +263617,34in Ultrawide Monitor,1,379.99,09/04/19 16:37,"963 Forest St, San Francisco, CA 94016" +263618,USB-C Charging Cable,1,11.95,09/15/19 13:58,"271 Pine St, San Francisco, CA 94016" +263619,20in Monitor,1,109.99,09/10/19 15:20,"291 Sunset St, Portland, OR 97035" +263620,Wired Headphones,1,11.99,09/09/19 08:55,"559 Wilson St, New York City, NY 10001" +263621,AA Batteries (4-pack),1,3.84,09/26/19 18:30,"455 West St, New York City, NY 10001" +263622,Bose SoundSport Headphones,1,99.99,09/09/19 10:22,"763 Madison St, Atlanta, GA 30301" +263623,Vareebadd Phone,1,400,09/05/19 18:17,"210 Wilson St, San Francisco, CA 94016" +263623,USB-C Charging Cable,1,11.95,09/05/19 18:17,"210 Wilson St, San Francisco, CA 94016" +263624,Lightning Charging Cable,1,14.95,09/02/19 06:25,"918 1st St, Los Angeles, CA 90001" +263625,USB-C Charging Cable,2,11.95,09/26/19 10:32,"111 Jefferson St, San Francisco, CA 94016" +263626,Vareebadd Phone,1,400,09/26/19 00:57,"408 Cherry St, San Francisco, CA 94016" +263627,Lightning Charging Cable,1,14.95,09/18/19 08:09,"304 Hickory St, Boston, MA 02215" +263628,AAA Batteries (4-pack),1,2.99,09/27/19 20:33,"901 Chestnut St, Dallas, TX 75001" +263629,Apple Airpods Headphones,1,150,09/01/19 12:02,"760 1st St, Los Angeles, CA 90001" +263630,Apple Airpods Headphones,1,150,09/02/19 00:55,"150 Lincoln St, Portland, OR 97035" +263631,AA Batteries (4-pack),1,3.84,09/30/19 12:42,"726 North St, Atlanta, GA 30301" +263632,AA Batteries (4-pack),2,3.84,09/28/19 11:06,"795 Pine St, New York City, NY 10001" +263633,Apple Airpods Headphones,1,150,09/28/19 17:29,"908 6th St, New York City, NY 10001" +263634,iPhone,1,700,09/25/19 11:25,"343 Willow St, Los Angeles, CA 90001" +263635,AAA Batteries (4-pack),4,2.99,09/08/19 00:00,"570 Washington St, San Francisco, CA 94016" +263636,AA Batteries (4-pack),2,3.84,09/23/19 18:47,"969 Dogwood St, Dallas, TX 75001" +263637,27in 4K Gaming Monitor,1,389.99,09/19/19 16:25,"899 Washington St, Dallas, TX 75001" +263638,AA Batteries (4-pack),2,3.84,09/12/19 01:07,"524 10th St, Los Angeles, CA 90001" +263639,USB-C Charging Cable,1,11.95,09/22/19 14:51,"83 North St, Atlanta, GA 30301" +263640,Macbook Pro Laptop,1,1700,09/02/19 11:23,"892 West St, Austin, TX 73301" +263641,Lightning Charging Cable,1,14.95,09/29/19 10:30,"931 South St, Los Angeles, CA 90001" +263642,Apple Airpods Headphones,1,150,09/19/19 06:51,"493 Maple St, Los Angeles, CA 90001" +263643,AAA Batteries (4-pack),1,2.99,09/17/19 21:33,"907 Elm St, Dallas, TX 75001" +263644,Lightning Charging Cable,1,14.95,09/08/19 21:10,"785 Park St, Seattle, WA 98101" +263645,Apple Airpods Headphones,1,150,09/20/19 15:49,"335 Park St, Los Angeles, CA 90001" +263646,USB-C Charging Cable,1,11.95,09/25/19 11:52,"8 8th St, Seattle, WA 98101" +263647,USB-C Charging Cable,1,11.95,09/04/19 11:00,"828 Jackson St, Dallas, TX 75001" +263648,27in 4K Gaming Monitor,1,389.99,09/14/19 18:14,"117 North St, Seattle, WA 98101" +263649,USB-C Charging Cable,1,11.95,09/28/19 12:18,"293 4th St, Portland, ME 04101" +263650,AA Batteries (4-pack),1,3.84,09/24/19 01:52,"841 Chestnut St, Boston, MA 02215" +263651,Lightning Charging Cable,1,14.95,09/01/19 12:37,"603 Jackson St, Austin, TX 73301" +263652,Apple Airpods Headphones,1,150,09/26/19 07:33,"694 Washington St, Austin, TX 73301" +263653,Google Phone,1,600,09/04/19 12:46,"870 Lakeview St, New York City, NY 10001" +263654,Google Phone,1,600,09/22/19 14:58,"702 Hill St, San Francisco, CA 94016" +263654,Wired Headphones,1,11.99,09/22/19 14:58,"702 Hill St, San Francisco, CA 94016" +263655,Lightning Charging Cable,1,14.95,09/17/19 18:43,"16 Cedar St, San Francisco, CA 94016" +263656,AAA Batteries (4-pack),1,2.99,09/19/19 14:08,"297 Walnut St, Los Angeles, CA 90001" +263657,iPhone,1,700,09/15/19 16:56,"37 Lincoln St, Atlanta, GA 30301" +263658,AA Batteries (4-pack),1,3.84,09/26/19 10:57,"982 Meadow St, Dallas, TX 75001" +263659,Bose SoundSport Headphones,1,99.99,09/02/19 05:24,"580 14th St, Dallas, TX 75001" +263660,Wired Headphones,2,11.99,09/02/19 17:46,"516 Church St, Boston, MA 02215" +263661,AA Batteries (4-pack),1,3.84,09/10/19 09:25,"681 Chestnut St, Los Angeles, CA 90001" +263662,Apple Airpods Headphones,1,150,09/03/19 22:04,"297 Adams St, Dallas, TX 75001" +263663,AA Batteries (4-pack),1,3.84,09/03/19 19:24,"704 Maple St, Atlanta, GA 30301" +263664,Wired Headphones,1,11.99,09/08/19 20:18,"177 Cedar St, Portland, OR 97035" +263665,27in FHD Monitor,1,149.99,09/23/19 11:53,"686 Chestnut St, Boston, MA 02215" +263666,USB-C Charging Cable,1,11.95,09/03/19 17:26,"833 River St, San Francisco, CA 94016" +263667,AA Batteries (4-pack),1,3.84,09/12/19 09:11,"965 Hill St, Austin, TX 73301" +263668,27in FHD Monitor,1,149.99,09/14/19 11:08,"652 2nd St, San Francisco, CA 94016" +263669,27in FHD Monitor,1,149.99,09/08/19 04:05,"631 1st St, Los Angeles, CA 90001" +263670,Apple Airpods Headphones,2,150,09/12/19 17:00,"387 Jefferson St, Los Angeles, CA 90001" +263671,AAA Batteries (4-pack),3,2.99,09/12/19 15:29,"908 6th St, San Francisco, CA 94016" +263672,Bose SoundSport Headphones,1,99.99,09/30/19 18:53,"732 Sunset St, Austin, TX 73301" +263673,AAA Batteries (4-pack),2,2.99,09/20/19 18:12,"257 Dogwood St, Los Angeles, CA 90001" +263674,AA Batteries (4-pack),3,3.84,09/19/19 15:40,"999 Johnson St, San Francisco, CA 94016" +263675,Lightning Charging Cable,1,14.95,09/03/19 20:50,"2 Cedar St, Seattle, WA 98101" +263676,Macbook Pro Laptop,1,1700,09/28/19 10:28,"400 8th St, Portland, OR 97035" +263677,Wired Headphones,1,11.99,09/13/19 08:39,"785 Ridge St, Los Angeles, CA 90001" +263678,AAA Batteries (4-pack),1,2.99,09/11/19 22:57,"585 Highland St, New York City, NY 10001" +263679,Wired Headphones,2,11.99,09/14/19 13:21,"949 Highland St, Los Angeles, CA 90001" +263680,AAA Batteries (4-pack),1,2.99,09/18/19 06:24,"116 Forest St, San Francisco, CA 94016" +263681,iPhone,1,700,09/22/19 16:38,"881 Jefferson St, Los Angeles, CA 90001" +263682,USB-C Charging Cable,1,11.95,09/25/19 18:51,"595 West St, Los Angeles, CA 90001" +263683,Lightning Charging Cable,2,14.95,09/12/19 10:24,"158 2nd St, Austin, TX 73301" +263684,Bose SoundSport Headphones,1,99.99,09/25/19 10:33,"880 Lakeview St, New York City, NY 10001" +263685,Bose SoundSport Headphones,1,99.99,09/01/19 14:58,"816 Johnson St, Boston, MA 02215" +263686,AA Batteries (4-pack),1,3.84,09/02/19 06:39,"26 14th St, Seattle, WA 98101" +263687,USB-C Charging Cable,1,11.95,09/27/19 16:08,"741 Johnson St, Dallas, TX 75001" +263688,Lightning Charging Cable,1,14.95,09/25/19 22:36,"271 Washington St, San Francisco, CA 94016" +263689,ThinkPad Laptop,1,999.99,09/13/19 11:12,"369 6th St, Los Angeles, CA 90001" +263690,AA Batteries (4-pack),1,3.84,09/16/19 21:56,"359 North St, Atlanta, GA 30301" +263691,20in Monitor,1,109.99,09/26/19 17:34,"955 8th St, Atlanta, GA 30301" +263692,iPhone,1,700,09/20/19 13:14,"258 Jefferson St, Boston, MA 02215" +263692,Lightning Charging Cable,1,14.95,09/20/19 13:14,"258 Jefferson St, Boston, MA 02215" +263693,34in Ultrawide Monitor,1,379.99,09/19/19 12:24,"257 River St, San Francisco, CA 94016" +263694,Apple Airpods Headphones,1,150,09/15/19 22:49,"554 Hickory St, Boston, MA 02215" +263695,Lightning Charging Cable,1,14.95,09/11/19 23:04,"725 11th St, Atlanta, GA 30301" +263696,Wired Headphones,1,11.99,09/15/19 07:30,"116 West St, Seattle, WA 98101" +263697,27in FHD Monitor,1,149.99,09/03/19 18:47,"50 Lake St, Los Angeles, CA 90001" +263698,AA Batteries (4-pack),1,3.84,09/18/19 14:23,"291 Cedar St, Seattle, WA 98101" +263699,Lightning Charging Cable,1,14.95,09/09/19 10:25,"626 Wilson St, Los Angeles, CA 90001" +263700,Lightning Charging Cable,1,14.95,09/24/19 13:23,"123 6th St, Austin, TX 73301" +263701,AAA Batteries (4-pack),1,2.99,09/05/19 15:10,"45 7th St, Atlanta, GA 30301" +263702,Apple Airpods Headphones,1,150,09/03/19 20:26,"934 8th St, Dallas, TX 75001" +263703,Wired Headphones,1,11.99,09/06/19 15:04,"324 11th St, Atlanta, GA 30301" +263704,Wired Headphones,1,11.99,09/01/19 17:30,"946 10th St, Boston, MA 02215" +263705,AA Batteries (4-pack),3,3.84,09/28/19 10:22,"746 Wilson St, Los Angeles, CA 90001" +263706,AA Batteries (4-pack),1,3.84,09/13/19 11:50,"86 Park St, San Francisco, CA 94016" +263707,AA Batteries (4-pack),1,3.84,09/17/19 19:47,"850 Adams St, Boston, MA 02215" +263708,USB-C Charging Cable,1,11.95,09/27/19 14:36,"730 Meadow St, Boston, MA 02215" +263709,USB-C Charging Cable,1,11.95,09/02/19 13:30,"636 Sunset St, Los Angeles, CA 90001" +263710,Google Phone,1,600,09/25/19 13:47,"488 Sunset St, Los Angeles, CA 90001" +263711,Apple Airpods Headphones,1,150,09/05/19 15:02,"310 Adams St, Los Angeles, CA 90001" +263712,Apple Airpods Headphones,1,150,09/05/19 16:03,"912 Church St, Dallas, TX 75001" +263713,AAA Batteries (4-pack),1,2.99,09/19/19 23:09,"303 West St, New York City, NY 10001" +263714,Lightning Charging Cable,1,14.95,09/27/19 19:32,"768 Pine St, San Francisco, CA 94016" +263715,27in 4K Gaming Monitor,1,389.99,09/18/19 20:50,"689 Cedar St, New York City, NY 10001" +263716,Wired Headphones,1,11.99,09/01/19 10:06,"977 Jefferson St, Boston, MA 02215" +263717,USB-C Charging Cable,1,11.95,09/01/19 14:39,"27 4th St, Atlanta, GA 30301" +263718,AAA Batteries (4-pack),1,2.99,09/21/19 11:19,"184 Church St, Portland, OR 97035" +263719,Macbook Pro Laptop,1,1700,09/24/19 08:49,"958 Elm St, Los Angeles, CA 90001" +263720,USB-C Charging Cable,1,11.95,09/02/19 14:32,"224 West St, Portland, OR 97035" +263721,AAA Batteries (4-pack),1,2.99,09/14/19 19:20,"39 West St, Portland, OR 97035" +263722,USB-C Charging Cable,1,11.95,09/14/19 13:39,"709 Hickory St, Atlanta, GA 30301" +263723,27in FHD Monitor,1,149.99,09/04/19 19:16,"493 Center St, Dallas, TX 75001" +263724,Lightning Charging Cable,1,14.95,09/18/19 17:56,"301 2nd St, Los Angeles, CA 90001" +263724,Apple Airpods Headphones,1,150,09/18/19 17:56,"301 2nd St, Los Angeles, CA 90001" +263725,27in FHD Monitor,1,149.99,09/24/19 11:22,"622 Ridge St, Los Angeles, CA 90001" +263726,iPhone,1,700,09/04/19 12:21,"846 4th St, New York City, NY 10001" +263727,ThinkPad Laptop,1,999.99,09/07/19 00:46,"709 Hill St, Austin, TX 73301" +263728,Apple Airpods Headphones,1,150,09/30/19 16:15,"523 Chestnut St, San Francisco, CA 94016" +263729,Apple Airpods Headphones,1,150,09/01/19 11:29,"499 Madison St, New York City, NY 10001" +263730,Macbook Pro Laptop,1,1700,09/13/19 17:55,"523 Madison St, Austin, TX 73301" +263731,AA Batteries (4-pack),1,3.84,09/11/19 00:40,"279 Main St, Atlanta, GA 30301" +263732,Apple Airpods Headphones,1,150,09/08/19 02:40,"253 2nd St, Dallas, TX 75001" +263733,AA Batteries (4-pack),1,3.84,09/02/19 16:46,"402 North St, San Francisco, CA 94016" +263734,Bose SoundSport Headphones,1,99.99,09/03/19 16:27,"693 Spruce St, Austin, TX 73301" +263735,USB-C Charging Cable,1,11.95,09/29/19 21:00,"733 5th St, Portland, OR 97035" +263736,Apple Airpods Headphones,1,150,09/07/19 10:51,"914 Adams St, San Francisco, CA 94016" +263737,Wired Headphones,1,11.99,09/25/19 21:42,"108 Cedar St, New York City, NY 10001" +263738,20in Monitor,1,109.99,09/03/19 20:17,"310 Willow St, San Francisco, CA 94016" +263739,ThinkPad Laptop,1,999.99,09/19/19 21:53,"146 Washington St, Boston, MA 02215" +263740,Wired Headphones,1,11.99,09/10/19 20:09,"784 Lake St, Atlanta, GA 30301" +263741,Wired Headphones,1,11.99,09/09/19 07:51,"226 Walnut St, Boston, MA 02215" +263742,Bose SoundSport Headphones,1,99.99,09/15/19 11:52,"846 Main St, San Francisco, CA 94016" +263743,20in Monitor,1,109.99,09/07/19 12:12,"915 4th St, Los Angeles, CA 90001" +263744,27in FHD Monitor,1,149.99,09/22/19 12:02,"97 West St, San Francisco, CA 94016" +263745,Google Phone,1,600,09/12/19 14:01,"190 Lincoln St, Seattle, WA 98101" +263746,Lightning Charging Cable,1,14.95,09/11/19 22:32,"249 South St, Dallas, TX 75001" +263747,iPhone,1,700,09/06/19 09:49,"367 West St, Los Angeles, CA 90001" +263748,AAA Batteries (4-pack),2,2.99,09/18/19 14:06,"829 1st St, San Francisco, CA 94016" +263749,Macbook Pro Laptop,1,1700,09/13/19 12:40,"124 Ridge St, New York City, NY 10001" +263750,Lightning Charging Cable,1,14.95,09/07/19 09:52,"571 Lincoln St, San Francisco, CA 94016" +263751,USB-C Charging Cable,1,11.95,09/05/19 10:05,"733 Spruce St, Los Angeles, CA 90001" +263752,Google Phone,1,600,09/05/19 23:11,"843 5th St, San Francisco, CA 94016" +263753,Lightning Charging Cable,1,14.95,09/17/19 19:26,"447 South St, Boston, MA 02215" +263754,AA Batteries (4-pack),1,3.84,09/07/19 16:51,"623 North St, San Francisco, CA 94016" +263755,34in Ultrawide Monitor,1,379.99,09/12/19 08:07,"273 1st St, San Francisco, CA 94016" +263756,AA Batteries (4-pack),1,3.84,09/27/19 08:42,"640 11th St, Boston, MA 02215" +263757,USB-C Charging Cable,1,11.95,09/12/19 18:30,"933 Maple St, Boston, MA 02215" +263758,USB-C Charging Cable,1,11.95,09/09/19 23:56,"49 1st St, San Francisco, CA 94016" +263759,Apple Airpods Headphones,1,150,09/15/19 11:32,"927 9th St, Seattle, WA 98101" +263760,Wired Headphones,2,11.99,09/22/19 16:56,"863 North St, San Francisco, CA 94016" +263761,USB-C Charging Cable,1,11.95,09/10/19 09:03,"573 River St, Seattle, WA 98101" +263762,AA Batteries (4-pack),1,3.84,09/14/19 05:57,"732 Willow St, Seattle, WA 98101" +263763,Macbook Pro Laptop,1,1700,09/29/19 14:35,"940 Wilson St, Los Angeles, CA 90001" +263764,Apple Airpods Headphones,1,150,09/29/19 12:55,"860 Jefferson St, Portland, OR 97035" +263765,USB-C Charging Cable,2,11.95,09/14/19 16:49,"898 Highland St, Boston, MA 02215" +263766,Lightning Charging Cable,1,14.95,09/14/19 16:19,"790 Ridge St, Atlanta, GA 30301" +263767,Apple Airpods Headphones,1,150,09/08/19 16:24,"4 Ridge St, San Francisco, CA 94016" +263768,USB-C Charging Cable,1,11.95,09/28/19 19:42,"588 Lakeview St, Portland, OR 97035" +263769,AA Batteries (4-pack),1,3.84,09/01/19 20:35,"531 5th St, Dallas, TX 75001" +263770,AA Batteries (4-pack),1,3.84,09/01/19 21:48,"249 Johnson St, San Francisco, CA 94016" +263771,USB-C Charging Cable,1,11.95,09/13/19 00:52,"229 6th St, Portland, OR 97035" +263772,Bose SoundSport Headphones,1,99.99,09/27/19 12:44,"2 River St, Atlanta, GA 30301" +263773,iPhone,1,700,09/15/19 08:59,"520 Maple St, Portland, OR 97035" +263774,Lightning Charging Cable,2,14.95,09/07/19 14:26,"534 Walnut St, New York City, NY 10001" +263775,27in FHD Monitor,1,149.99,09/18/19 08:59,"11 Forest St, New York City, NY 10001" +263776,Flatscreen TV,1,300,09/20/19 10:00,"960 9th St, Los Angeles, CA 90001" +263777,Apple Airpods Headphones,1,150,09/07/19 13:09,"483 Hill St, Austin, TX 73301" +263778,Wired Headphones,1,11.99,09/08/19 11:09,"836 13th St, Portland, OR 97035" +263779,Macbook Pro Laptop,1,1700,09/08/19 10:47,"313 Lakeview St, Boston, MA 02215" +263780,34in Ultrawide Monitor,1,379.99,09/25/19 14:58,"995 South St, New York City, NY 10001" +263781,ThinkPad Laptop,1,999.99,09/07/19 15:27,"961 6th St, San Francisco, CA 94016" +263782,20in Monitor,1,109.99,09/02/19 10:31,"76 Meadow St, San Francisco, CA 94016" +263783,Apple Airpods Headphones,1,150,09/28/19 14:10,"73 2nd St, San Francisco, CA 94016" +263784,Macbook Pro Laptop,1,1700,09/23/19 21:17,"603 7th St, Atlanta, GA 30301" +263785,Wired Headphones,1,11.99,09/02/19 20:51,"929 Lake St, San Francisco, CA 94016" +263786,Apple Airpods Headphones,1,150,09/01/19 16:44,"173 Jefferson St, New York City, NY 10001" +263787,27in 4K Gaming Monitor,1,389.99,09/30/19 15:55,"908 Hickory St, Boston, MA 02215" +263788,Lightning Charging Cable,1,14.95,09/04/19 11:28,"740 Chestnut St, Austin, TX 73301" +263789,iPhone,1,700,09/26/19 19:50,"473 12th St, San Francisco, CA 94016" +263790,AAA Batteries (4-pack),2,2.99,09/18/19 22:48,"32 9th St, Austin, TX 73301" +,,,,, +263791,27in 4K Gaming Monitor,1,389.99,09/25/19 19:33,"346 Maple St, Portland, ME 04101" +263792,USB-C Charging Cable,1,11.95,09/08/19 18:51,"202 6th St, Atlanta, GA 30301" +263793,Wired Headphones,1,11.99,09/10/19 14:18,"581 Willow St, San Francisco, CA 94016" +263794,AAA Batteries (4-pack),1,2.99,09/07/19 10:39,"321 14th St, Los Angeles, CA 90001" +263795,Vareebadd Phone,1,400,09/08/19 09:06,"5 Jefferson St, San Francisco, CA 94016" +263796,Lightning Charging Cable,1,14.95,09/02/19 20:07,"275 2nd St, San Francisco, CA 94016" +263797,AA Batteries (4-pack),1,3.84,09/19/19 16:38,"373 Forest St, New York City, NY 10001" +263798,Lightning Charging Cable,2,14.95,09/12/19 06:24,"928 Johnson St, Atlanta, GA 30301" +263799,USB-C Charging Cable,1,11.95,09/17/19 19:49,"434 Walnut St, Los Angeles, CA 90001" +263800,iPhone,1,700,09/15/19 14:28,"406 Washington St, Los Angeles, CA 90001" +263801,Google Phone,1,600,09/15/19 12:43,"161 Cedar St, Portland, OR 97035" +263801,Wired Headphones,1,11.99,09/15/19 12:43,"161 Cedar St, Portland, OR 97035" +263802,34in Ultrawide Monitor,1,379.99,09/16/19 02:59,"721 Jefferson St, San Francisco, CA 94016" +263803,Vareebadd Phone,1,400,09/02/19 19:19,"228 14th St, Los Angeles, CA 90001" +263804,AAA Batteries (4-pack),1,2.99,09/15/19 08:09,"388 Adams St, Boston, MA 02215" +263805,Wired Headphones,1,11.99,09/18/19 14:41,"341 7th St, San Francisco, CA 94016" +263806,34in Ultrawide Monitor,1,379.99,09/19/19 20:18,"240 12th St, Boston, MA 02215" +263807,Wired Headphones,2,11.99,09/11/19 20:52,"799 Church St, Seattle, WA 98101" +263808,USB-C Charging Cable,1,11.95,09/25/19 21:08,"522 Ridge St, San Francisco, CA 94016" +263809,34in Ultrawide Monitor,1,379.99,09/08/19 12:34,"677 4th St, Atlanta, GA 30301" +263810,27in FHD Monitor,1,149.99,09/28/19 20:26,"89 14th St, New York City, NY 10001" +263811,Lightning Charging Cable,1,14.95,09/17/19 18:08,"11 Center St, Portland, ME 04101" +263812,USB-C Charging Cable,2,11.95,09/16/19 17:50,"859 Adams St, Dallas, TX 75001" +263813,USB-C Charging Cable,1,11.95,09/14/19 06:30,"96 2nd St, Los Angeles, CA 90001" +263814,iPhone,1,700,09/01/19 15:00,"315 West St, Portland, OR 97035" +263815,Flatscreen TV,1,300,09/25/19 19:20,"753 Lakeview St, Los Angeles, CA 90001" +263816,Flatscreen TV,1,300,09/02/19 01:59,"378 Hill St, New York City, NY 10001" +263817,ThinkPad Laptop,1,999.99,09/23/19 15:53,"409 Jefferson St, San Francisco, CA 94016" +263818,Wired Headphones,2,11.99,09/11/19 15:05,"144 Center St, Boston, MA 02215" +263819,USB-C Charging Cable,1,11.95,09/28/19 07:27,"222 5th St, Seattle, WA 98101" +263820,AA Batteries (4-pack),1,3.84,09/14/19 23:06,"811 Highland St, Seattle, WA 98101" +263821,Apple Airpods Headphones,1,150,09/15/19 22:35,"906 Maple St, Dallas, TX 75001" +263822,USB-C Charging Cable,1,11.95,09/22/19 07:43,"2 Pine St, Boston, MA 02215" +263822,27in FHD Monitor,1,149.99,09/22/19 07:43,"2 Pine St, Boston, MA 02215" +263823,Apple Airpods Headphones,1,150,09/25/19 19:25,"699 13th St, San Francisco, CA 94016" +263824,AA Batteries (4-pack),3,3.84,09/04/19 07:40,"89 Lakeview St, Dallas, TX 75001" +263824,Macbook Pro Laptop,1,1700,09/04/19 07:40,"89 Lakeview St, Dallas, TX 75001" +263825,USB-C Charging Cable,1,11.95,09/17/19 14:51,"270 Chestnut St, San Francisco, CA 94016" +263826,AAA Batteries (4-pack),1,2.99,09/23/19 14:27,"988 7th St, Atlanta, GA 30301" +263827,Bose SoundSport Headphones,1,99.99,09/16/19 00:57,"776 Lincoln St, Boston, MA 02215" +263827,AAA Batteries (4-pack),1,2.99,09/16/19 00:57,"776 Lincoln St, Boston, MA 02215" +263828,Lightning Charging Cable,1,14.95,09/10/19 13:15,"97 7th St, New York City, NY 10001" +263829,AAA Batteries (4-pack),1,2.99,09/05/19 18:05,"650 5th St, San Francisco, CA 94016" +263830,AAA Batteries (4-pack),1,2.99,09/30/19 20:14,"867 Maple St, Dallas, TX 75001" +263831,Bose SoundSport Headphones,1,99.99,09/17/19 12:08,"961 West St, Los Angeles, CA 90001" +263832,27in FHD Monitor,1,149.99,09/19/19 20:29,"761 6th St, Boston, MA 02215" +263833,Apple Airpods Headphones,1,150,09/23/19 16:38,"214 North St, Seattle, WA 98101" +263834,27in FHD Monitor,1,149.99,09/22/19 20:48,"59 Park St, Los Angeles, CA 90001" +263835,Bose SoundSport Headphones,1,99.99,09/24/19 03:38,"479 Highland St, Los Angeles, CA 90001" +263836,iPhone,1,700,09/01/19 18:58,"227 Dogwood St, Boston, MA 02215" +263837,Lightning Charging Cable,1,14.95,09/26/19 20:27,"700 Park St, New York City, NY 10001" +263838,USB-C Charging Cable,1,11.95,09/19/19 02:22,"822 Cherry St, Dallas, TX 75001" +263839,Bose SoundSport Headphones,1,99.99,09/02/19 18:06,"165 Cedar St, San Francisco, CA 94016" +263840,AAA Batteries (4-pack),1,2.99,09/16/19 16:03,"744 Jackson St, San Francisco, CA 94016" +263841,USB-C Charging Cable,2,11.95,09/05/19 11:54,"789 6th St, New York City, NY 10001" +263842,Apple Airpods Headphones,1,150,09/21/19 17:46,"647 Walnut St, Dallas, TX 75001" +263843,AAA Batteries (4-pack),1,2.99,09/15/19 21:22,"99 Cherry St, San Francisco, CA 94016" +263844,Bose SoundSport Headphones,1,99.99,09/18/19 18:35,"123 12th St, San Francisco, CA 94016" +263845,Apple Airpods Headphones,1,150,09/18/19 20:54,"68 Park St, Seattle, WA 98101" +263846,AA Batteries (4-pack),1,3.84,09/28/19 17:48,"482 5th St, New York City, NY 10001" +263847,Bose SoundSport Headphones,1,99.99,09/20/19 11:34,"427 Walnut St, Los Angeles, CA 90001" +263848,USB-C Charging Cable,1,11.95,09/11/19 07:42,"140 Jackson St, Atlanta, GA 30301" +263849,AAA Batteries (4-pack),1,2.99,09/29/19 07:46,"905 Forest St, Portland, ME 04101" +263850,USB-C Charging Cable,1,11.95,09/13/19 12:23,"50 6th St, San Francisco, CA 94016" +263851,Lightning Charging Cable,1,14.95,09/14/19 16:38,"827 Pine St, Boston, MA 02215" +263852,Apple Airpods Headphones,1,150,09/18/19 21:45,"820 12th St, Atlanta, GA 30301" +263853,20in Monitor,1,109.99,09/14/19 15:43,"610 Cherry St, Portland, ME 04101" +263854,Wired Headphones,1,11.99,09/23/19 06:24,"412 South St, San Francisco, CA 94016" +263855,Wired Headphones,1,11.99,09/20/19 14:55,"280 8th St, San Francisco, CA 94016" +263856,AA Batteries (4-pack),2,3.84,09/13/19 10:44,"272 Washington St, Seattle, WA 98101" +263857,Wired Headphones,1,11.99,09/24/19 10:41,"70 14th St, Los Angeles, CA 90001" +263858,Bose SoundSport Headphones,1,99.99,09/18/19 08:36,"982 Maple St, San Francisco, CA 94016" +263859,Wired Headphones,1,11.99,09/16/19 12:14,"248 Ridge St, Austin, TX 73301" +263860,AA Batteries (4-pack),1,3.84,09/07/19 12:09,"461 Jefferson St, Los Angeles, CA 90001" +263861,AAA Batteries (4-pack),1,2.99,09/11/19 11:36,"977 8th St, San Francisco, CA 94016" +263862,USB-C Charging Cable,1,11.95,09/03/19 18:52,"183 Main St, Los Angeles, CA 90001" +263863,Bose SoundSport Headphones,1,99.99,09/24/19 01:21,"324 Main St, Los Angeles, CA 90001" +263864,Google Phone,1,600,09/14/19 21:22,"431 14th St, Los Angeles, CA 90001" +263865,AA Batteries (4-pack),1,3.84,09/25/19 11:42,"987 2nd St, Los Angeles, CA 90001" +263866,Wired Headphones,2,11.99,09/09/19 17:32,"358 Meadow St, Los Angeles, CA 90001" +263867,USB-C Charging Cable,1,11.95,09/30/19 13:56,"797 Meadow St, Dallas, TX 75001" +263868,Lightning Charging Cable,1,14.95,09/08/19 20:58,"915 Spruce St, San Francisco, CA 94016" +263869,Google Phone,1,600,09/19/19 08:03,"858 11th St, San Francisco, CA 94016" +263870,Flatscreen TV,1,300,09/27/19 23:40,"513 Elm St, San Francisco, CA 94016" +263871,Lightning Charging Cable,1,14.95,09/24/19 14:31,"883 West St, Los Angeles, CA 90001" +263872,AAA Batteries (4-pack),1,2.99,09/29/19 15:13,"542 Highland St, Atlanta, GA 30301" +263873,AA Batteries (4-pack),1,3.84,09/14/19 09:14,"207 North St, San Francisco, CA 94016" +263874,Apple Airpods Headphones,1,150,09/04/19 18:08,"702 11th St, Seattle, WA 98101" +263875,Lightning Charging Cable,1,14.95,09/10/19 01:19,"969 Dogwood St, Los Angeles, CA 90001" +263876,AA Batteries (4-pack),2,3.84,09/25/19 13:42,"402 South St, San Francisco, CA 94016" +263877,AA Batteries (4-pack),2,3.84,09/09/19 21:40,"442 Park St, Los Angeles, CA 90001" +263878,iPhone,1,700,09/10/19 14:22,"251 Adams St, Seattle, WA 98101" +263879,USB-C Charging Cable,2,11.95,09/12/19 17:35,"162 Lakeview St, Portland, OR 97035" +263880,34in Ultrawide Monitor,1,379.99,09/23/19 14:41,"948 Hill St, Boston, MA 02215" +263881,USB-C Charging Cable,1,11.95,09/27/19 13:10,"830 5th St, Boston, MA 02215" +263882,AA Batteries (4-pack),2,3.84,09/02/19 21:29,"568 6th St, New York City, NY 10001" +263883,AAA Batteries (4-pack),3,2.99,09/20/19 20:00,"796 North St, Los Angeles, CA 90001" +263884,Lightning Charging Cable,1,14.95,09/15/19 15:47,"998 Spruce St, San Francisco, CA 94016" +263885,iPhone,1,700,09/15/19 11:14,"271 2nd St, Los Angeles, CA 90001" +263886,AAA Batteries (4-pack),1,2.99,09/19/19 16:56,"326 Dogwood St, Los Angeles, CA 90001" +263887,Bose SoundSport Headphones,1,99.99,09/24/19 19:27,"557 South St, Austin, TX 73301" +263888,Wired Headphones,1,11.99,09/05/19 20:31,"994 2nd St, Atlanta, GA 30301" +263889,Flatscreen TV,1,300,09/14/19 00:46,"232 Maple St, San Francisco, CA 94016" +263890,27in FHD Monitor,1,149.99,09/16/19 23:06,"726 9th St, Los Angeles, CA 90001" +263891,Flatscreen TV,1,300,09/08/19 12:55,"497 Wilson St, Los Angeles, CA 90001" +263892,Google Phone,1,600,09/03/19 19:41,"95 4th St, Dallas, TX 75001" +263892,USB-C Charging Cable,1,11.95,09/03/19 19:41,"95 4th St, Dallas, TX 75001" +263893,AAA Batteries (4-pack),2,2.99,09/15/19 12:22,"298 Washington St, San Francisco, CA 94016" +263894,AAA Batteries (4-pack),2,2.99,09/10/19 16:27,"155 River St, Boston, MA 02215" +263895,Wired Headphones,1,11.99,09/22/19 19:19,"172 Willow St, Portland, OR 97035" +263896,AAA Batteries (4-pack),1,2.99,09/26/19 20:02,"355 12th St, Dallas, TX 75001" +263897,20in Monitor,1,109.99,09/23/19 16:10,"247 Washington St, Boston, MA 02215" +263898,Wired Headphones,1,11.99,09/09/19 10:36,"360 Jackson St, New York City, NY 10001" +263899,34in Ultrawide Monitor,1,379.99,09/06/19 22:15,"605 Highland St, San Francisco, CA 94016" +263900,AAA Batteries (4-pack),1,2.99,09/26/19 01:10,"211 12th St, Portland, OR 97035" +263901,Bose SoundSport Headphones,1,99.99,09/24/19 11:51,"757 Park St, Seattle, WA 98101" +263902,Apple Airpods Headphones,1,150,09/25/19 18:14,"996 Lakeview St, Atlanta, GA 30301" +263903,27in FHD Monitor,1,149.99,09/11/19 21:12,"472 Dogwood St, New York City, NY 10001" +263904,USB-C Charging Cable,1,11.95,09/21/19 16:35,"718 Washington St, Atlanta, GA 30301" +263905,Lightning Charging Cable,1,14.95,09/09/19 13:13,"942 Chestnut St, Austin, TX 73301" +263906,Lightning Charging Cable,1,14.95,09/14/19 18:31,"324 10th St, Portland, OR 97035" +263907,27in FHD Monitor,1,149.99,09/09/19 01:27,"607 Pine St, Atlanta, GA 30301" +263908,Lightning Charging Cable,1,14.95,09/17/19 20:14,"301 Jefferson St, San Francisco, CA 94016" +263909,AA Batteries (4-pack),1,3.84,09/02/19 12:01,"346 Washington St, San Francisco, CA 94016" +263910,Vareebadd Phone,1,400,09/04/19 22:15,"604 Lincoln St, Austin, TX 73301" +263910,USB-C Charging Cable,1,11.95,09/04/19 22:15,"604 Lincoln St, Austin, TX 73301" +263911,Lightning Charging Cable,1,14.95,09/02/19 17:43,"756 Johnson St, Portland, OR 97035" +263912,USB-C Charging Cable,3,11.95,09/14/19 12:48,"718 Lincoln St, Los Angeles, CA 90001" +263913,USB-C Charging Cable,1,11.95,09/02/19 21:16,"859 Willow St, Boston, MA 02215" +263914,27in 4K Gaming Monitor,1,389.99,09/01/19 21:02,"376 Willow St, Portland, ME 04101" +263915,USB-C Charging Cable,1,11.95,09/24/19 22:08,"948 Meadow St, Atlanta, GA 30301" +263916,iPhone,1,700,09/19/19 11:50,"818 10th St, Portland, ME 04101" +263917,Lightning Charging Cable,1,14.95,09/15/19 20:32,"737 Walnut St, San Francisco, CA 94016" +263918,iPhone,1,700,09/09/19 15:24,"464 Lincoln St, New York City, NY 10001" +263919,Lightning Charging Cable,1,14.95,09/04/19 14:11,"477 4th St, Austin, TX 73301" +263920,27in 4K Gaming Monitor,1,389.99,09/02/19 15:15,"814 7th St, Boston, MA 02215" +263921,Macbook Pro Laptop,1,1700,09/30/19 12:04,"758 Adams St, Austin, TX 73301" +263922,USB-C Charging Cable,1,11.95,09/08/19 16:10,"189 Main St, Austin, TX 73301" +263923,34in Ultrawide Monitor,1,379.99,09/23/19 18:19,"546 Cedar St, Dallas, TX 75001" +263924,27in 4K Gaming Monitor,1,389.99,09/23/19 16:48,"11 Chestnut St, San Francisco, CA 94016" +263925,27in 4K Gaming Monitor,1,389.99,09/06/19 10:32,"381 Spruce St, New York City, NY 10001" +263926,Lightning Charging Cable,1,14.95,09/08/19 18:16,"554 7th St, San Francisco, CA 94016" +263927,iPhone,1,700,09/11/19 20:24,"848 Sunset St, San Francisco, CA 94016" +263927,Lightning Charging Cable,1,14.95,09/11/19 20:24,"848 Sunset St, San Francisco, CA 94016" +263927,Apple Airpods Headphones,1,150,09/11/19 20:24,"848 Sunset St, San Francisco, CA 94016" +263927,Wired Headphones,1,11.99,09/11/19 20:24,"848 Sunset St, San Francisco, CA 94016" +263928,AAA Batteries (4-pack),1,2.99,09/21/19 15:42,"430 6th St, San Francisco, CA 94016" +263929,27in 4K Gaming Monitor,1,389.99,09/28/19 20:44,"864 Elm St, New York City, NY 10001" +263930,Bose SoundSport Headphones,1,99.99,09/11/19 00:30,"826 Willow St, San Francisco, CA 94016" +263931,AA Batteries (4-pack),1,3.84,09/01/19 16:56,"857 Cedar St, Los Angeles, CA 90001" +263932,USB-C Charging Cable,1,11.95,09/28/19 11:19,"700 Lincoln St, Dallas, TX 75001" +263933,Wired Headphones,1,11.99,09/16/19 12:19,"517 Willow St, Seattle, WA 98101" +263934,Wired Headphones,1,11.99,09/08/19 12:17,"44 9th St, New York City, NY 10001" +263935,Lightning Charging Cable,1,14.95,09/16/19 19:29,"512 West St, Dallas, TX 75001" +263936,27in FHD Monitor,1,149.99,09/06/19 14:05,"407 Hickory St, Atlanta, GA 30301" +263937,AAA Batteries (4-pack),1,2.99,09/02/19 08:04,"487 Lake St, Los Angeles, CA 90001" +263938,Lightning Charging Cable,1,14.95,09/10/19 11:53,"455 11th St, Atlanta, GA 30301" +263939,Bose SoundSport Headphones,1,99.99,09/13/19 20:39,"862 Wilson St, San Francisco, CA 94016" +263940,Apple Airpods Headphones,1,150,09/25/19 13:30,"723 Cedar St, New York City, NY 10001" +263941,Lightning Charging Cable,1,14.95,09/13/19 21:28,"757 Hickory St, Los Angeles, CA 90001" +263942,Bose SoundSport Headphones,1,99.99,09/13/19 15:34,"188 2nd St, San Francisco, CA 94016" +263943,34in Ultrawide Monitor,1,379.99,09/11/19 19:12,"588 Lake St, New York City, NY 10001" +263944,20in Monitor,1,109.99,09/19/19 10:14,"474 11th St, San Francisco, CA 94016" +263945,Lightning Charging Cable,1,14.95,09/22/19 12:47,"235 Ridge St, Los Angeles, CA 90001" +263946,Wired Headphones,1,11.99,09/23/19 19:12,"92 1st St, Los Angeles, CA 90001" +263947,AAA Batteries (4-pack),1,2.99,09/10/19 00:52,"473 Highland St, San Francisco, CA 94016" +263948,AA Batteries (4-pack),1,3.84,09/08/19 09:42,"839 Johnson St, San Francisco, CA 94016" +263949,27in FHD Monitor,1,149.99,09/27/19 00:15,"12 Elm St, New York City, NY 10001" +263950,AA Batteries (4-pack),1,3.84,09/18/19 14:11,"760 Church St, Los Angeles, CA 90001" +263951,AAA Batteries (4-pack),1,2.99,09/09/19 11:28,"502 Jackson St, Atlanta, GA 30301" +263952,USB-C Charging Cable,1,11.95,09/05/19 12:42,"520 Jackson St, Los Angeles, CA 90001" +263953,Wired Headphones,1,11.99,09/04/19 09:08,"140 Highland St, San Francisco, CA 94016" +263954,iPhone,1,700,09/14/19 09:50,"732 Elm St, New York City, NY 10001" +263955,USB-C Charging Cable,1,11.95,09/28/19 08:58,"716 Main St, Boston, MA 02215" +263956,AA Batteries (4-pack),1,3.84,09/05/19 18:47,"748 Sunset St, Los Angeles, CA 90001" +263957,AA Batteries (4-pack),1,3.84,09/17/19 12:47,"706 Johnson St, Austin, TX 73301" +263958,Wired Headphones,1,11.99,09/03/19 15:28,"784 8th St, Boston, MA 02215" +263959,AA Batteries (4-pack),1,3.84,09/03/19 17:56,"315 Willow St, Atlanta, GA 30301" +263960,Apple Airpods Headphones,1,150,09/02/19 21:14,"175 Church St, San Francisco, CA 94016" +263961,AA Batteries (4-pack),1,3.84,09/28/19 22:03,"442 13th St, Atlanta, GA 30301" +263962,AA Batteries (4-pack),1,3.84,09/14/19 23:18,"296 5th St, Atlanta, GA 30301" +263963,Macbook Pro Laptop,1,1700,09/30/19 18:01,"400 Park St, Portland, OR 97035" +263964,Apple Airpods Headphones,1,150,09/30/19 17:46,"338 Park St, Atlanta, GA 30301" +263965,Flatscreen TV,1,300,09/14/19 19:50,"622 Pine St, New York City, NY 10001" +263966,34in Ultrawide Monitor,1,379.99,09/14/19 12:25,"380 Main St, Seattle, WA 98101" +263967,Flatscreen TV,1,300,09/07/19 15:18,"647 Lakeview St, Portland, ME 04101" +263968,Lightning Charging Cable,1,14.95,09/22/19 22:24,"43 Jefferson St, Atlanta, GA 30301" +263969,Apple Airpods Headphones,1,150,09/11/19 19:27,"841 Wilson St, Seattle, WA 98101" +263970,Google Phone,1,600,09/03/19 18:45,"767 Center St, Boston, MA 02215" +263970,USB-C Charging Cable,1,11.95,09/03/19 18:45,"767 Center St, Boston, MA 02215" +263971,AA Batteries (4-pack),1,3.84,09/23/19 20:59,"891 Pine St, Dallas, TX 75001" +263972,34in Ultrawide Monitor,1,379.99,09/17/19 12:39,"485 Lincoln St, San Francisco, CA 94016" +263973,USB-C Charging Cable,1,11.95,09/14/19 17:28,"802 Meadow St, Seattle, WA 98101" +263974,AAA Batteries (4-pack),1,2.99,09/18/19 17:52,"998 Lake St, Boston, MA 02215" +263975,USB-C Charging Cable,1,11.95,09/20/19 15:13,"21 North St, San Francisco, CA 94016" +263976,USB-C Charging Cable,1,11.95,09/24/19 12:18,"699 10th St, Dallas, TX 75001" +263977,Wired Headphones,1,11.99,09/22/19 19:57,"954 Adams St, New York City, NY 10001" +263978,USB-C Charging Cable,1,11.95,09/29/19 09:38,"449 River St, San Francisco, CA 94016" +263979,27in FHD Monitor,1,149.99,09/08/19 07:56,"922 Johnson St, Los Angeles, CA 90001" +263980,Macbook Pro Laptop,1,1700,09/21/19 14:09,"782 4th St, San Francisco, CA 94016" +263981,USB-C Charging Cable,1,11.95,09/27/19 19:26,"642 2nd St, San Francisco, CA 94016" +263982,AA Batteries (4-pack),1,3.84,09/26/19 14:28,"457 Forest St, Los Angeles, CA 90001" +263983,LG Washing Machine,1,600.0,09/23/19 10:25,"718 2nd St, Los Angeles, CA 90001" +263984,Bose SoundSport Headphones,1,99.99,09/16/19 17:29,"377 2nd St, Los Angeles, CA 90001" +263985,USB-C Charging Cable,1,11.95,09/27/19 15:07,"226 Cedar St, San Francisco, CA 94016" +263986,iPhone,1,700,09/11/19 21:26,"613 Center St, Atlanta, GA 30301" +263987,AA Batteries (4-pack),1,3.84,09/18/19 11:37,"509 Elm St, San Francisco, CA 94016" +263988,Apple Airpods Headphones,1,150,09/14/19 01:14,"258 Highland St, New York City, NY 10001" +263989,20in Monitor,1,109.99,09/15/19 09:46,"798 South St, San Francisco, CA 94016" +263990,Lightning Charging Cable,1,14.95,09/17/19 20:28,"728 2nd St, San Francisco, CA 94016" +263991,AA Batteries (4-pack),1,3.84,09/29/19 22:16,"963 Dogwood St, Los Angeles, CA 90001" +263992,AA Batteries (4-pack),1,3.84,09/10/19 01:34,"513 7th St, Dallas, TX 75001" +263993,Apple Airpods Headphones,1,150,09/29/19 11:32,"66 1st St, Atlanta, GA 30301" +263994,USB-C Charging Cable,1,11.95,09/07/19 13:53,"448 Lakeview St, Seattle, WA 98101" +263995,AAA Batteries (4-pack),1,2.99,09/08/19 12:41,"503 Wilson St, Los Angeles, CA 90001" +263996,USB-C Charging Cable,1,11.95,09/27/19 09:37,"21 Ridge St, Austin, TX 73301" +263997,USB-C Charging Cable,1,11.95,09/14/19 08:44,"687 Dogwood St, San Francisco, CA 94016" +263998,Bose SoundSport Headphones,1,99.99,09/27/19 15:51,"987 13th St, Atlanta, GA 30301" +263999,Lightning Charging Cable,1,14.95,09/28/19 20:34,"424 9th St, Austin, TX 73301" +264000,Lightning Charging Cable,1,14.95,09/14/19 09:56,"603 River St, Los Angeles, CA 90001" +264001,Wired Headphones,1,11.99,09/08/19 16:14,"628 Spruce St, New York City, NY 10001" +264002,27in 4K Gaming Monitor,1,389.99,09/05/19 00:13,"208 11th St, New York City, NY 10001" +264003,Bose SoundSport Headphones,1,99.99,09/11/19 15:39,"600 Jackson St, Boston, MA 02215" +264004,LG Washing Machine,1,600.0,09/17/19 15:01,"595 Center St, San Francisco, CA 94016" +264005,USB-C Charging Cable,1,11.95,09/21/19 23:20,"773 10th St, New York City, NY 10001" +264006,USB-C Charging Cable,1,11.95,09/04/19 12:46,"318 Madison St, San Francisco, CA 94016" +264007,AA Batteries (4-pack),1,3.84,09/16/19 13:54,"591 Cherry St, New York City, NY 10001" +264008,AAA Batteries (4-pack),1,2.99,09/18/19 05:08,"516 North St, Dallas, TX 75001" +264009,AAA Batteries (4-pack),1,2.99,09/12/19 14:13,"909 Willow St, San Francisco, CA 94016" +264010,USB-C Charging Cable,1,11.95,09/17/19 20:25,"931 Forest St, Los Angeles, CA 90001" +264011,Wired Headphones,1,11.99,09/18/19 21:39,"518 West St, Los Angeles, CA 90001" +264012,USB-C Charging Cable,1,11.95,09/17/19 09:44,"136 Maple St, Austin, TX 73301" +264013,Apple Airpods Headphones,1,150,09/30/19 19:15,"537 Meadow St, Los Angeles, CA 90001" +264014,USB-C Charging Cable,2,11.95,09/27/19 06:30,"941 Center St, New York City, NY 10001" +264015,Apple Airpods Headphones,1,150,09/29/19 10:41,"221 River St, Seattle, WA 98101" +264016,Bose SoundSport Headphones,1,99.99,09/14/19 21:38,"851 13th St, San Francisco, CA 94016" +264017,USB-C Charging Cable,1,11.95,09/04/19 13:13,"564 Jackson St, San Francisco, CA 94016" +264018,AAA Batteries (4-pack),1,2.99,09/12/19 17:54,"374 Highland St, Dallas, TX 75001" +264019,Google Phone,1,600,09/17/19 19:19,"556 Pine St, Los Angeles, CA 90001" +264019,USB-C Charging Cable,1,11.95,09/17/19 19:19,"556 Pine St, Los Angeles, CA 90001" +264020,Apple Airpods Headphones,1,150,09/22/19 05:40,"805 Lake St, Boston, MA 02215" +264021,Lightning Charging Cable,1,14.95,09/05/19 09:37,"144 13th St, Austin, TX 73301" +264022,Lightning Charging Cable,1,14.95,09/12/19 10:24,"631 West St, San Francisco, CA 94016" +264023,AA Batteries (4-pack),1,3.84,09/22/19 10:54,"797 Park St, Portland, OR 97035" +264024,AA Batteries (4-pack),2,3.84,09/07/19 14:58,"962 2nd St, Austin, TX 73301" +264025,AA Batteries (4-pack),1,3.84,09/30/19 21:24,"391 Cedar St, Portland, OR 97035" +264026,Google Phone,1,600,09/01/19 16:50,"245 Jackson St, Dallas, TX 75001" +264027,Macbook Pro Laptop,1,1700,09/09/19 20:30,"91 12th St, Dallas, TX 75001" +264028,USB-C Charging Cable,1,11.95,09/25/19 09:30,"552 Hill St, Austin, TX 73301" +264029,iPhone,1,700,09/29/19 17:00,"666 Maple St, New York City, NY 10001" +264030,AAA Batteries (4-pack),1,2.99,09/09/19 11:33,"205 14th St, San Francisco, CA 94016" +264031,Wired Headphones,1,11.99,09/03/19 13:52,"360 South St, San Francisco, CA 94016" +264032,20in Monitor,1,109.99,09/04/19 12:02,"124 Chestnut St, Los Angeles, CA 90001" +264033,Wired Headphones,1,11.99,09/07/19 15:43,"349 Washington St, New York City, NY 10001" +264034,AAA Batteries (4-pack),1,2.99,09/25/19 21:40,"1 Sunset St, San Francisco, CA 94016" +264035,Apple Airpods Headphones,1,150,09/15/19 11:25,"526 12th St, Portland, OR 97035" +264036,Bose SoundSport Headphones,1,99.99,09/26/19 01:21,"632 11th St, San Francisco, CA 94016" +264037,Lightning Charging Cable,1,14.95,09/23/19 14:39,"242 7th St, Los Angeles, CA 90001" +264038,Macbook Pro Laptop,1,1700,09/29/19 13:37,"914 Forest St, San Francisco, CA 94016" +264039,AAA Batteries (4-pack),2,2.99,09/27/19 17:15,"849 14th St, Austin, TX 73301" +264040,USB-C Charging Cable,1,11.95,09/30/19 05:46,"648 5th St, Seattle, WA 98101" +264041,USB-C Charging Cable,1,11.95,09/19/19 13:16,"218 Park St, Boston, MA 02215" +264042,34in Ultrawide Monitor,1,379.99,09/06/19 14:14,"699 Sunset St, Austin, TX 73301" +264043,Lightning Charging Cable,1,14.95,09/12/19 01:15,"145 Washington St, Portland, OR 97035" +264044,Bose SoundSport Headphones,1,99.99,09/20/19 11:17,"551 Spruce St, San Francisco, CA 94016" +264045,Lightning Charging Cable,1,14.95,09/16/19 12:53,"687 Madison St, Portland, OR 97035" +264046,AAA Batteries (4-pack),3,2.99,09/28/19 13:16,"425 Spruce St, San Francisco, CA 94016" +264047,AA Batteries (4-pack),1,3.84,09/28/19 08:37,"543 Lakeview St, New York City, NY 10001" +264048,Bose SoundSport Headphones,1,99.99,09/26/19 11:30,"136 Lake St, Atlanta, GA 30301" +264049,Wired Headphones,1,11.99,09/02/19 12:27,"821 11th St, San Francisco, CA 94016" +264050,Bose SoundSport Headphones,2,99.99,09/19/19 13:22,"545 Park St, Dallas, TX 75001" +264051,Flatscreen TV,1,300,09/28/19 07:50,"748 Washington St, Los Angeles, CA 90001" +264052,AAA Batteries (4-pack),2,2.99,09/04/19 20:34,"503 12th St, Seattle, WA 98101" +264053,Lightning Charging Cable,1,14.95,09/21/19 22:03,"835 Dogwood St, Los Angeles, CA 90001" +264054,Apple Airpods Headphones,1,150,09/14/19 19:27,"531 Sunset St, Atlanta, GA 30301" +264055,USB-C Charging Cable,1,11.95,09/24/19 18:27,"232 Johnson St, San Francisco, CA 94016" +264056,AA Batteries (4-pack),1,3.84,09/19/19 08:58,"578 Ridge St, Boston, MA 02215" +264057,Bose SoundSport Headphones,1,99.99,09/04/19 21:57,"238 Forest St, Austin, TX 73301" +264058,USB-C Charging Cable,1,11.95,09/19/19 16:11,"519 Lincoln St, San Francisco, CA 94016" +264059,Lightning Charging Cable,1,14.95,09/27/19 00:13,"16 Ridge St, Seattle, WA 98101" +264060,USB-C Charging Cable,1,11.95,09/30/19 22:31,"789 2nd St, Los Angeles, CA 90001" +264061,27in FHD Monitor,1,149.99,09/22/19 12:24,"329 Johnson St, Seattle, WA 98101" +264062,AA Batteries (4-pack),1,3.84,09/19/19 18:41,"22 Church St, Los Angeles, CA 90001" +264063,AA Batteries (4-pack),1,3.84,09/13/19 10:38,"525 Sunset St, New York City, NY 10001" +264064,AA Batteries (4-pack),1,3.84,09/18/19 23:50,"136 Center St, San Francisco, CA 94016" +264065,AAA Batteries (4-pack),1,2.99,09/09/19 14:01,"861 8th St, San Francisco, CA 94016" +264066,Wired Headphones,1,11.99,09/17/19 12:37,"568 Maple St, Seattle, WA 98101" +264067,AA Batteries (4-pack),1,3.84,09/10/19 10:37,"174 10th St, Los Angeles, CA 90001" +264068,AAA Batteries (4-pack),2,2.99,09/17/19 01:19,"608 Maple St, San Francisco, CA 94016" +264069,Wired Headphones,1,11.99,09/17/19 13:03,"962 Jackson St, Boston, MA 02215" +264070,Google Phone,1,600,09/02/19 13:05,"373 Center St, Seattle, WA 98101" +264071,27in 4K Gaming Monitor,1,389.99,09/13/19 17:02,"358 Meadow St, Austin, TX 73301" +264071,Apple Airpods Headphones,1,150,09/13/19 17:02,"358 Meadow St, Austin, TX 73301" +264072,Bose SoundSport Headphones,1,99.99,09/06/19 15:32,"807 Sunset St, Dallas, TX 75001" +264073,Flatscreen TV,1,300,09/26/19 16:05,"750 8th St, New York City, NY 10001" +264074,Wired Headphones,1,11.99,09/25/19 20:17,"315 Elm St, Seattle, WA 98101" +264075,AA Batteries (4-pack),1,3.84,09/20/19 17:05,"627 Wilson St, San Francisco, CA 94016" +264076,Macbook Pro Laptop,1,1700,09/15/19 18:38,"985 Spruce St, New York City, NY 10001" +264077,Lightning Charging Cable,1,14.95,09/14/19 22:41,"88 Lincoln St, New York City, NY 10001" +264078,Vareebadd Phone,1,400,09/26/19 13:31,"181 Sunset St, Los Angeles, CA 90001" +264079,AAA Batteries (4-pack),1,2.99,09/28/19 10:42,"919 Jefferson St, San Francisco, CA 94016" +264080,Bose SoundSport Headphones,1,99.99,09/06/19 14:28,"911 7th St, Seattle, WA 98101" +264081,AAA Batteries (4-pack),4,2.99,09/15/19 22:31,"117 Johnson St, Dallas, TX 75001" +264082,Wired Headphones,1,11.99,09/02/19 09:18,"547 1st St, Portland, OR 97035" +264083,USB-C Charging Cable,1,11.95,09/19/19 15:01,"459 6th St, Atlanta, GA 30301" +264084,iPhone,1,700,09/09/19 09:56,"131 Spruce St, Los Angeles, CA 90001" +264085,LG Dryer,1,600.0,09/02/19 18:04,"235 Center St, Los Angeles, CA 90001" +264086,Flatscreen TV,1,300,09/01/19 19:52,"146 6th St, Los Angeles, CA 90001" +264087,34in Ultrawide Monitor,1,379.99,09/28/19 16:58,"875 River St, Boston, MA 02215" +264088,Flatscreen TV,1,300,09/30/19 11:04,"649 1st St, Boston, MA 02215" +264089,Wired Headphones,1,11.99,09/14/19 18:46,"650 River St, New York City, NY 10001" +264090,AA Batteries (4-pack),1,3.84,09/24/19 17:51,"526 Park St, Dallas, TX 75001" +264091,AA Batteries (4-pack),1,3.84,09/21/19 21:28,"135 Willow St, San Francisco, CA 94016" +264092,AAA Batteries (4-pack),3,2.99,09/18/19 19:49,"285 13th St, Dallas, TX 75001" +264093,AAA Batteries (4-pack),2,2.99,09/21/19 11:16,"74 12th St, New York City, NY 10001" +264094,Macbook Pro Laptop,1,1700,09/03/19 14:39,"861 Adams St, Portland, OR 97035" +264095,Wired Headphones,1,11.99,09/28/19 22:10,"83 Cherry St, Boston, MA 02215" +264096,AAA Batteries (4-pack),1,2.99,09/08/19 07:47,"407 Park St, San Francisco, CA 94016" +264097,Apple Airpods Headphones,1,150,09/18/19 15:18,"192 Cherry St, Dallas, TX 75001" +264098,AA Batteries (4-pack),1,3.84,09/14/19 15:12,"845 Madison St, Austin, TX 73301" +264099,iPhone,1,700,09/01/19 08:49,"802 1st St, Austin, TX 73301" +264100,AAA Batteries (4-pack),2,2.99,09/24/19 12:53,"162 West St, San Francisco, CA 94016" +264101,AAA Batteries (4-pack),1,2.99,09/01/19 23:40,"500 1st St, San Francisco, CA 94016" +264102,Google Phone,1,600,09/26/19 13:31,"803 14th St, San Francisco, CA 94016" +264103,Macbook Pro Laptop,1,1700,09/12/19 10:01,"586 Hill St, Seattle, WA 98101" +264104,USB-C Charging Cable,1,11.95,09/19/19 08:30,"165 South St, San Francisco, CA 94016" +264105,AAA Batteries (4-pack),1,2.99,09/23/19 09:35,"243 Lake St, Los Angeles, CA 90001" +264106,Bose SoundSport Headphones,1,99.99,09/17/19 09:20,"179 1st St, Dallas, TX 75001" +264107,Bose SoundSport Headphones,2,99.99,09/21/19 17:07,"724 Adams St, Seattle, WA 98101" +264108,AA Batteries (4-pack),1,3.84,09/23/19 10:38,"504 North St, San Francisco, CA 94016" +264109,ThinkPad Laptop,1,999.99,09/03/19 19:32,"31 14th St, Los Angeles, CA 90001" +264110,20in Monitor,1,109.99,09/01/19 07:36,"73 Lincoln St, Seattle, WA 98101" +264111,27in FHD Monitor,1,149.99,09/17/19 20:51,"864 8th St, San Francisco, CA 94016" +264112,Lightning Charging Cable,1,14.95,09/18/19 02:46,"105 Chestnut St, Seattle, WA 98101" +264113,Wired Headphones,1,11.99,09/11/19 10:34,"199 Highland St, Boston, MA 02215" +264114,iPhone,1,700,09/07/19 08:38,"972 River St, Portland, OR 97035" +264115,iPhone,1,700,09/26/19 22:25,"875 7th St, Dallas, TX 75001" +264115,Apple Airpods Headphones,1,150,09/26/19 22:25,"875 7th St, Dallas, TX 75001" +264116,Lightning Charging Cable,1,14.95,09/29/19 17:08,"384 Adams St, Boston, MA 02215" +264117,Flatscreen TV,1,300,09/15/19 09:06,"432 Church St, Los Angeles, CA 90001" +264118,ThinkPad Laptop,1,999.99,09/18/19 11:28,"884 River St, New York City, NY 10001" +264119,AAA Batteries (4-pack),1,2.99,09/15/19 14:43,"314 Lincoln St, New York City, NY 10001" +264120,AAA Batteries (4-pack),1,2.99,09/14/19 08:33,"461 South St, New York City, NY 10001" +264121,Macbook Pro Laptop,1,1700,09/22/19 17:08,"915 Highland St, San Francisco, CA 94016" +264122,AA Batteries (4-pack),2,3.84,09/25/19 23:17,"881 6th St, San Francisco, CA 94016" +264123,USB-C Charging Cable,2,11.95,09/25/19 18:17,"220 Maple St, San Francisco, CA 94016" +264124,AAA Batteries (4-pack),1,2.99,09/12/19 23:46,"845 Spruce St, Portland, OR 97035" +264125,34in Ultrawide Monitor,1,379.99,09/16/19 13:02,"347 Jefferson St, Los Angeles, CA 90001" +264126,AAA Batteries (4-pack),1,2.99,09/30/19 19:49,"430 Jefferson St, San Francisco, CA 94016" +264127,20in Monitor,1,109.99,09/27/19 18:16,"289 8th St, San Francisco, CA 94016" +264128,27in FHD Monitor,1,149.99,09/30/19 18:17,"706 Meadow St, Atlanta, GA 30301" +264129,AAA Batteries (4-pack),2,2.99,09/05/19 10:51,"326 Ridge St, Atlanta, GA 30301" +264130,Lightning Charging Cable,1,14.95,09/03/19 20:53,"171 Madison St, Dallas, TX 75001" +264131,27in 4K Gaming Monitor,1,389.99,09/02/19 14:15,"560 Chestnut St, Dallas, TX 75001" +264132,Google Phone,1,600,09/17/19 20:56,"554 North St, Los Angeles, CA 90001" +264133,Lightning Charging Cable,2,14.95,09/03/19 12:06,"406 Chestnut St, Los Angeles, CA 90001" +264134,Wired Headphones,2,11.99,09/10/19 18:22,"519 Forest St, New York City, NY 10001" +264135,Wired Headphones,1,11.99,09/29/19 01:46,"824 Washington St, Austin, TX 73301" +264136,USB-C Charging Cable,1,11.95,09/08/19 21:10,"528 12th St, San Francisco, CA 94016" +264137,27in FHD Monitor,1,149.99,09/25/19 18:21,"682 9th St, San Francisco, CA 94016" +264138,Wired Headphones,1,11.99,09/15/19 15:46,"907 Forest St, Los Angeles, CA 90001" +264139,USB-C Charging Cable,1,11.95,09/17/19 21:20,"417 Ridge St, New York City, NY 10001" +,,,,, +264140,Bose SoundSport Headphones,1,99.99,09/20/19 22:49,"472 River St, San Francisco, CA 94016" +264141,USB-C Charging Cable,1,11.95,09/16/19 16:35,"385 Church St, New York City, NY 10001" +264142,Flatscreen TV,1,300,09/09/19 00:37,"858 10th St, Boston, MA 02215" +264143,Lightning Charging Cable,1,14.95,09/05/19 19:52,"152 South St, San Francisco, CA 94016" +264144,Apple Airpods Headphones,1,150,09/30/19 19:56,"945 Willow St, Portland, OR 97035" +264145,ThinkPad Laptop,1,999.99,09/17/19 12:48,"406 Park St, San Francisco, CA 94016" +264146,Lightning Charging Cable,1,14.95,09/13/19 09:09,"883 4th St, San Francisco, CA 94016" +264147,USB-C Charging Cable,1,11.95,09/13/19 12:12,"999 Hickory St, San Francisco, CA 94016" +264148,Lightning Charging Cable,1,14.95,09/29/19 11:11,"410 4th St, San Francisco, CA 94016" +264149,34in Ultrawide Monitor,1,379.99,09/14/19 12:18,"30 4th St, Austin, TX 73301" +264150,Bose SoundSport Headphones,1,99.99,09/22/19 23:53,"434 9th St, Los Angeles, CA 90001" +264151,AA Batteries (4-pack),1,3.84,09/08/19 20:13,"445 North St, Boston, MA 02215" +264152,Bose SoundSport Headphones,1,99.99,09/12/19 18:42,"177 Main St, Los Angeles, CA 90001" +264153,Apple Airpods Headphones,1,150,09/20/19 13:49,"50 Lincoln St, Dallas, TX 75001" +264154,Google Phone,1,600,09/28/19 13:48,"608 12th St, Los Angeles, CA 90001" +264155,USB-C Charging Cable,1,11.95,09/01/19 21:54,"912 Pine St, Los Angeles, CA 90001" +264156,Bose SoundSport Headphones,1,99.99,09/08/19 16:58,"362 Lincoln St, San Francisco, CA 94016" +264157,USB-C Charging Cable,1,11.95,09/26/19 19:57,"529 Highland St, Boston, MA 02215" +264158,27in 4K Gaming Monitor,1,389.99,09/15/19 13:06,"265 6th St, Boston, MA 02215" +264158,Wired Headphones,2,11.99,09/15/19 13:06,"265 6th St, Boston, MA 02215" +264159,20in Monitor,1,109.99,09/19/19 12:24,"328 Adams St, San Francisco, CA 94016" +264160,27in 4K Gaming Monitor,1,389.99,09/28/19 04:24,"226 Elm St, Atlanta, GA 30301" +264161,Wired Headphones,1,11.99,09/14/19 23:26,"134 1st St, San Francisco, CA 94016" +264162,Lightning Charging Cable,1,14.95,09/23/19 23:53,"144 Lincoln St, Los Angeles, CA 90001" +264163,USB-C Charging Cable,1,11.95,09/18/19 15:05,"339 Forest St, Los Angeles, CA 90001" +264164,AA Batteries (4-pack),1,3.84,09/19/19 16:29,"916 Adams St, San Francisco, CA 94016" +264165,AA Batteries (4-pack),2,3.84,09/20/19 23:31,"974 Maple St, Atlanta, GA 30301" +264166,USB-C Charging Cable,1,11.95,09/24/19 19:20,"158 Meadow St, Portland, OR 97035" +264167,AA Batteries (4-pack),1,3.84,09/16/19 10:51,"438 9th St, New York City, NY 10001" +264168,AAA Batteries (4-pack),2,2.99,09/04/19 16:35,"703 Center St, Boston, MA 02215" +264169,USB-C Charging Cable,1,11.95,09/10/19 13:52,"905 Cedar St, Portland, ME 04101" +264170,Bose SoundSport Headphones,1,99.99,09/10/19 17:33,"972 Forest St, New York City, NY 10001" +264171,Wired Headphones,1,11.99,09/10/19 16:23,"744 Ridge St, New York City, NY 10001" +264172,Wired Headphones,1,11.99,10/01/19 04:41,"700 Center St, Austin, TX 73301" +264173,Lightning Charging Cable,1,14.95,09/25/19 05:26,"426 Lincoln St, San Francisco, CA 94016" +264174,AA Batteries (4-pack),1,3.84,09/07/19 15:54,"679 Sunset St, Atlanta, GA 30301" +264175,Bose SoundSport Headphones,1,99.99,09/05/19 14:50,"288 Ridge St, Boston, MA 02215" +264176,ThinkPad Laptop,1,999.99,09/15/19 18:38,"222 River St, New York City, NY 10001" +264177,Google Phone,1,600,09/08/19 12:40,"967 11th St, Boston, MA 02215" +264178,Apple Airpods Headphones,1,150,09/26/19 00:28,"582 Willow St, Seattle, WA 98101" +264179,Lightning Charging Cable,1,14.95,09/13/19 16:48,"58 Lincoln St, San Francisco, CA 94016" +264180,Google Phone,1,600,09/25/19 18:19,"811 5th St, San Francisco, CA 94016" +264181,Lightning Charging Cable,1,14.95,09/18/19 14:03,"521 Spruce St, Portland, OR 97035" +264182,Bose SoundSport Headphones,1,99.99,09/30/19 23:20,"35 Hill St, Dallas, TX 75001" +264183,AA Batteries (4-pack),2,3.84,09/03/19 14:31,"79 Willow St, Atlanta, GA 30301" +264184,USB-C Charging Cable,1,11.95,09/19/19 21:47,"986 Hill St, Atlanta, GA 30301" +264185,USB-C Charging Cable,1,11.95,09/11/19 21:03,"767 River St, Seattle, WA 98101" +264186,Lightning Charging Cable,1,14.95,09/14/19 12:49,"573 Jefferson St, Los Angeles, CA 90001" +264187,Flatscreen TV,1,300,09/20/19 18:24,"834 7th St, San Francisco, CA 94016" +264188,Lightning Charging Cable,1,14.95,09/24/19 22:01,"835 14th St, New York City, NY 10001" +264189,AA Batteries (4-pack),2,3.84,09/12/19 01:20,"487 12th St, Los Angeles, CA 90001" +264190,ThinkPad Laptop,1,999.99,09/15/19 21:38,"681 Main St, Los Angeles, CA 90001" +264191,20in Monitor,1,109.99,09/10/19 15:35,"502 Chestnut St, San Francisco, CA 94016" +264192,27in 4K Gaming Monitor,1,389.99,09/03/19 18:48,"978 South St, San Francisco, CA 94016" +264193,Apple Airpods Headphones,1,150,09/13/19 15:41,"482 Main St, Boston, MA 02215" +264194,AA Batteries (4-pack),2,3.84,09/14/19 12:15,"696 North St, Portland, OR 97035" +264195,USB-C Charging Cable,1,11.95,09/22/19 19:25,"908 Highland St, Austin, TX 73301" +264196,Wired Headphones,1,11.99,09/17/19 12:54,"344 8th St, San Francisco, CA 94016" +264197,AAA Batteries (4-pack),1,2.99,09/26/19 14:34,"975 West St, San Francisco, CA 94016" +264198,Wired Headphones,1,11.99,09/26/19 04:51,"408 Jackson St, San Francisco, CA 94016" +264199,27in FHD Monitor,1,149.99,09/16/19 13:10,"28 Hill St, Los Angeles, CA 90001" +264200,Lightning Charging Cable,1,14.95,09/16/19 19:00,"187 Lakeview St, San Francisco, CA 94016" +264201,AAA Batteries (4-pack),2,2.99,09/21/19 23:40,"7 West St, Los Angeles, CA 90001" +264202,27in 4K Gaming Monitor,1,389.99,09/21/19 04:18,"770 2nd St, Los Angeles, CA 90001" +264203,Lightning Charging Cable,1,14.95,09/28/19 13:10,"227 Johnson St, New York City, NY 10001" +264204,27in FHD Monitor,1,149.99,09/15/19 14:05,"778 2nd St, Los Angeles, CA 90001" +264205,AAA Batteries (4-pack),1,2.99,09/03/19 18:39,"821 Pine St, New York City, NY 10001" +264206,AAA Batteries (4-pack),2,2.99,09/11/19 12:51,"942 Park St, New York City, NY 10001" +264207,27in FHD Monitor,1,149.99,09/10/19 14:38,"992 5th St, Atlanta, GA 30301" +264208,Wired Headphones,1,11.99,09/15/19 13:30,"266 9th St, Dallas, TX 75001" +264209,USB-C Charging Cable,1,11.95,09/18/19 17:25,"430 Cedar St, Portland, ME 04101" +264210,Apple Airpods Headphones,1,150,09/15/19 15:30,"349 Madison St, Austin, TX 73301" +264211,Apple Airpods Headphones,1,150,09/19/19 20:59,"165 West St, New York City, NY 10001" +264212,Flatscreen TV,1,300,09/27/19 13:25,"478 River St, New York City, NY 10001" +264213,Lightning Charging Cable,2,14.95,09/24/19 01:44,"619 Willow St, Atlanta, GA 30301" +264214,Apple Airpods Headphones,1,150,09/15/19 11:35,"975 Meadow St, New York City, NY 10001" +264215,AA Batteries (4-pack),1,3.84,09/29/19 19:49,"71 14th St, San Francisco, CA 94016" +264216,34in Ultrawide Monitor,1,379.99,09/12/19 09:05,"60 Ridge St, New York City, NY 10001" +264217,20in Monitor,1,109.99,09/01/19 11:04,"850 Jackson St, Portland, OR 97035" +264218,AA Batteries (4-pack),1,3.84,09/27/19 19:26,"241 Adams St, Portland, OR 97035" +264219,AA Batteries (4-pack),1,3.84,09/01/19 12:52,"326 Washington St, San Francisco, CA 94016" +264220,Google Phone,1,600,09/07/19 13:24,"511 West St, San Francisco, CA 94016" +264221,AA Batteries (4-pack),1,3.84,09/11/19 12:37,"921 Forest St, Austin, TX 73301" +264222,Lightning Charging Cable,1,14.95,09/19/19 18:53,"921 Chestnut St, Seattle, WA 98101" +264223,Wired Headphones,1,11.99,09/22/19 01:17,"455 Spruce St, Boston, MA 02215" +264224,Lightning Charging Cable,2,14.95,09/22/19 12:37,"873 Center St, San Francisco, CA 94016" +264225,Apple Airpods Headphones,1,150,09/04/19 20:41,"596 14th St, San Francisco, CA 94016" +264226,Wired Headphones,1,11.99,09/24/19 12:06,"130 Adams St, Los Angeles, CA 90001" +264227,34in Ultrawide Monitor,1,379.99,09/05/19 16:05,"542 4th St, Atlanta, GA 30301" +264228,USB-C Charging Cable,1,11.95,09/06/19 15:19,"174 Forest St, New York City, NY 10001" +264229,USB-C Charging Cable,1,11.95,09/16/19 17:54,"589 Willow St, Los Angeles, CA 90001" +264230,Wired Headphones,1,11.99,09/21/19 12:22,"190 14th St, Seattle, WA 98101" +264231,Apple Airpods Headphones,1,150,09/18/19 11:52,"21 Meadow St, Atlanta, GA 30301" +264232,Apple Airpods Headphones,1,150,09/04/19 23:58,"428 Wilson St, San Francisco, CA 94016" +264233,20in Monitor,1,109.99,09/12/19 20:27,"862 7th St, New York City, NY 10001" +264234,Lightning Charging Cable,1,14.95,09/07/19 21:39,"653 Lake St, Dallas, TX 75001" +264235,Macbook Pro Laptop,1,1700,09/08/19 11:54,"731 Cherry St, Seattle, WA 98101" +264236,27in 4K Gaming Monitor,1,389.99,09/19/19 14:49,"565 Sunset St, Los Angeles, CA 90001" +264237,AA Batteries (4-pack),1,3.84,09/10/19 10:55,"864 Washington St, Austin, TX 73301" +264238,Bose SoundSport Headphones,1,99.99,09/04/19 18:43,"89 Chestnut St, Los Angeles, CA 90001" +264239,27in FHD Monitor,1,149.99,09/08/19 23:57,"240 Highland St, San Francisco, CA 94016" +264240,Macbook Pro Laptop,1,1700,09/08/19 20:50,"671 6th St, Austin, TX 73301" +264241,Macbook Pro Laptop,1,1700,09/07/19 22:12,"125 Church St, New York City, NY 10001" +264242,Lightning Charging Cable,1,14.95,09/14/19 12:53,"694 7th St, San Francisco, CA 94016" +264243,20in Monitor,1,109.99,09/30/19 09:23,"40 8th St, Boston, MA 02215" +264244,USB-C Charging Cable,1,11.95,09/24/19 17:13,"18 Hickory St, Los Angeles, CA 90001" +264245,AAA Batteries (4-pack),2,2.99,09/14/19 18:01,"401 River St, San Francisco, CA 94016" +264246,Wired Headphones,1,11.99,09/26/19 11:31,"785 Center St, Dallas, TX 75001" +264247,Wired Headphones,1,11.99,09/14/19 17:58,"488 4th St, Seattle, WA 98101" +264248,USB-C Charging Cable,2,11.95,09/25/19 17:56,"164 8th St, San Francisco, CA 94016" +264249,34in Ultrawide Monitor,1,379.99,09/26/19 11:43,"870 Church St, San Francisco, CA 94016" +264250,Apple Airpods Headphones,1,150,09/05/19 19:21,"868 Johnson St, Boston, MA 02215" +264251,Bose SoundSport Headphones,1,99.99,09/17/19 23:38,"474 5th St, New York City, NY 10001" +264252,Google Phone,1,600,09/02/19 08:16,"700 Dogwood St, San Francisco, CA 94016" +264253,34in Ultrawide Monitor,1,379.99,09/05/19 22:03,"379 5th St, Boston, MA 02215" +264254,Bose SoundSport Headphones,1,99.99,09/22/19 20:37,"857 4th St, San Francisco, CA 94016" +264254,Apple Airpods Headphones,1,150,09/22/19 20:37,"857 4th St, San Francisco, CA 94016" +264255,USB-C Charging Cable,1,11.95,09/07/19 22:03,"667 Jefferson St, Dallas, TX 75001" +264256,Bose SoundSport Headphones,1,99.99,09/12/19 22:16,"624 2nd St, Portland, ME 04101" +264257,Wired Headphones,1,11.99,09/10/19 07:15,"411 South St, Boston, MA 02215" +264258,20in Monitor,1,109.99,09/02/19 02:59,"490 Meadow St, San Francisco, CA 94016" +264259,AAA Batteries (4-pack),3,2.99,09/08/19 21:08,"980 8th St, Portland, OR 97035" +264260,USB-C Charging Cable,1,11.95,09/14/19 15:25,"334 Cedar St, San Francisco, CA 94016" +264261,27in FHD Monitor,1,149.99,09/04/19 11:53,"927 10th St, Dallas, TX 75001" +264262,Lightning Charging Cable,1,14.95,09/18/19 15:28,"340 Adams St, Seattle, WA 98101" +264263,USB-C Charging Cable,1,11.95,09/23/19 16:25,"862 Spruce St, San Francisco, CA 94016" +264264,Google Phone,1,600,09/23/19 09:57,"272 10th St, New York City, NY 10001" +264265,USB-C Charging Cable,1,11.95,09/28/19 19:58,"873 5th St, San Francisco, CA 94016" +264266,Lightning Charging Cable,1,14.95,09/29/19 10:50,"817 8th St, New York City, NY 10001" +264267,20in Monitor,1,109.99,09/24/19 12:29,"753 14th St, San Francisco, CA 94016" +264268,USB-C Charging Cable,1,11.95,09/07/19 12:25,"387 9th St, San Francisco, CA 94016" +264269,AAA Batteries (4-pack),1,2.99,09/19/19 10:26,"252 Lincoln St, Boston, MA 02215" +264270,AA Batteries (4-pack),2,3.84,09/10/19 19:00,"335 River St, Los Angeles, CA 90001" +264271,Google Phone,1,600,09/21/19 12:20,"848 Adams St, San Francisco, CA 94016" +264272,Bose SoundSport Headphones,1,99.99,09/01/19 16:03,"370 Lincoln St, San Francisco, CA 94016" +264273,Apple Airpods Headphones,1,150,09/27/19 11:53,"425 River St, Los Angeles, CA 90001" +264274,34in Ultrawide Monitor,1,379.99,09/20/19 17:55,"939 Lincoln St, Seattle, WA 98101" +264275,iPhone,1,700,09/08/19 09:41,"557 Forest St, Dallas, TX 75001" +264276,20in Monitor,1,109.99,09/24/19 18:23,"721 Hickory St, Dallas, TX 75001" +264277,27in FHD Monitor,1,149.99,09/17/19 10:30,"182 Chestnut St, Los Angeles, CA 90001" +264278,AAA Batteries (4-pack),1,2.99,09/03/19 12:17,"539 6th St, San Francisco, CA 94016" +264279,27in FHD Monitor,1,149.99,09/13/19 11:04,"46 4th St, Los Angeles, CA 90001" +264280,AAA Batteries (4-pack),1,2.99,09/15/19 21:11,"180 Hill St, Los Angeles, CA 90001" +264281,Google Phone,1,600,09/28/19 11:31,"379 12th St, Los Angeles, CA 90001" +264282,USB-C Charging Cable,1,11.95,09/17/19 18:11,"541 Adams St, San Francisco, CA 94016" +264283,iPhone,1,700,09/24/19 19:09,"144 11th St, New York City, NY 10001" +264283,Wired Headphones,1,11.99,09/24/19 19:09,"144 11th St, New York City, NY 10001" +264284,Vareebadd Phone,1,400,09/23/19 06:05,"506 Meadow St, San Francisco, CA 94016" +264285,Lightning Charging Cable,1,14.95,09/20/19 20:51,"951 Cherry St, Los Angeles, CA 90001" +264286,Wired Headphones,1,11.99,09/06/19 13:25,"447 9th St, San Francisco, CA 94016" +264287,Macbook Pro Laptop,1,1700,09/06/19 17:21,"467 Willow St, San Francisco, CA 94016" +264288,Lightning Charging Cable,1,14.95,09/06/19 16:48,"752 Dogwood St, Austin, TX 73301" +264289,Bose SoundSport Headphones,1,99.99,09/19/19 13:59,"268 13th St, San Francisco, CA 94016" +264290,USB-C Charging Cable,2,11.95,09/16/19 17:01,"774 14th St, San Francisco, CA 94016" +264291,Bose SoundSport Headphones,1,99.99,09/19/19 10:31,"934 14th St, Austin, TX 73301" +264292,Lightning Charging Cable,1,14.95,09/23/19 12:40,"75 6th St, New York City, NY 10001" +264293,Bose SoundSport Headphones,1,99.99,09/28/19 14:47,"532 Maple St, San Francisco, CA 94016" +264294,iPhone,1,700,09/17/19 22:14,"812 Walnut St, Seattle, WA 98101" +264295,34in Ultrawide Monitor,1,379.99,09/16/19 13:50,"986 4th St, New York City, NY 10001" +264296,27in 4K Gaming Monitor,1,389.99,09/21/19 23:06,"716 1st St, New York City, NY 10001" +264297,27in FHD Monitor,1,149.99,09/14/19 13:27,"100 Meadow St, New York City, NY 10001" +264298,AA Batteries (4-pack),1,3.84,09/15/19 11:28,"527 Maple St, New York City, NY 10001" +264299,Lightning Charging Cable,1,14.95,09/15/19 18:20,"464 Lake St, San Francisco, CA 94016" +264300,27in FHD Monitor,1,149.99,09/29/19 18:55,"501 7th St, Los Angeles, CA 90001" +264301,USB-C Charging Cable,1,11.95,09/07/19 17:07,"981 Center St, San Francisco, CA 94016" +264302,USB-C Charging Cable,1,11.95,09/13/19 07:29,"830 8th St, San Francisco, CA 94016" +264303,34in Ultrawide Monitor,1,379.99,09/09/19 16:56,"357 Willow St, Los Angeles, CA 90001" +264304,20in Monitor,1,109.99,09/11/19 22:01,"923 1st St, New York City, NY 10001" +264305,ThinkPad Laptop,1,999.99,09/12/19 02:09,"709 9th St, Seattle, WA 98101" +264306,Lightning Charging Cable,1,14.95,09/27/19 15:11,"995 Willow St, San Francisco, CA 94016" +264307,AA Batteries (4-pack),1,3.84,09/08/19 22:52,"447 Park St, San Francisco, CA 94016" +264308,AA Batteries (4-pack),1,3.84,09/08/19 18:24,"932 North St, Seattle, WA 98101" +264309,AA Batteries (4-pack),2,3.84,09/11/19 09:00,"260 Lake St, Boston, MA 02215" +264310,iPhone,1,700,09/02/19 19:56,"128 Hill St, San Francisco, CA 94016" +264310,Lightning Charging Cable,1,14.95,09/02/19 19:56,"128 Hill St, San Francisco, CA 94016" +264311,Apple Airpods Headphones,1,150,09/20/19 19:36,"311 Highland St, Portland, ME 04101" +264312,Apple Airpods Headphones,1,150,09/13/19 14:30,"967 1st St, Dallas, TX 75001" +264313,iPhone,1,700,09/27/19 21:30,"332 Jefferson St, New York City, NY 10001" +264314,AA Batteries (4-pack),1,3.84,09/01/19 13:36,"718 Forest St, Los Angeles, CA 90001" +264314,Bose SoundSport Headphones,1,99.99,09/01/19 13:36,"718 Forest St, Los Angeles, CA 90001" +264315,Bose SoundSport Headphones,1,99.99,09/16/19 18:20,"637 Dogwood St, Boston, MA 02215" +264316,AAA Batteries (4-pack),1,2.99,09/12/19 23:44,"769 River St, Dallas, TX 75001" +264317,Apple Airpods Headphones,1,150,09/06/19 13:28,"961 West St, San Francisco, CA 94016" +264318,Apple Airpods Headphones,1,150,09/05/19 12:47,"336 Church St, Dallas, TX 75001" +264319,27in 4K Gaming Monitor,1,389.99,09/14/19 10:01,"48 Lake St, San Francisco, CA 94016" +264320,27in 4K Gaming Monitor,1,389.99,09/28/19 09:16,"294 Maple St, San Francisco, CA 94016" +264321,AAA Batteries (4-pack),1,2.99,09/05/19 22:08,"536 Highland St, Austin, TX 73301" +264322,ThinkPad Laptop,1,999.99,09/24/19 14:51,"390 10th St, San Francisco, CA 94016" +264323,Flatscreen TV,1,300,09/19/19 20:43,"894 Highland St, Seattle, WA 98101" +264324,27in FHD Monitor,1,149.99,09/18/19 15:01,"866 Walnut St, New York City, NY 10001" +264325,Lightning Charging Cable,1,14.95,09/15/19 20:06,"314 Wilson St, San Francisco, CA 94016" +264326,Lightning Charging Cable,1,14.95,09/16/19 21:23,"347 6th St, Dallas, TX 75001" +264327,Lightning Charging Cable,1,14.95,09/18/19 19:07,"697 1st St, Los Angeles, CA 90001" +264328,USB-C Charging Cable,2,11.95,09/11/19 14:55,"142 7th St, San Francisco, CA 94016" +264329,iPhone,1,700,09/26/19 07:32,"657 River St, Austin, TX 73301" +264330,Apple Airpods Headphones,1,150,09/30/19 09:59,"302 Hickory St, Portland, ME 04101" +264331,Lightning Charging Cable,1,14.95,09/07/19 15:12,"550 Hill St, Los Angeles, CA 90001" +264332,AAA Batteries (4-pack),6,2.99,09/21/19 15:23,"887 Highland St, San Francisco, CA 94016" +264333,Bose SoundSport Headphones,1,99.99,09/22/19 12:08,"68 Ridge St, Austin, TX 73301" +264334,Apple Airpods Headphones,1,150,09/25/19 22:37,"413 13th St, Atlanta, GA 30301" +264335,27in FHD Monitor,1,149.99,09/17/19 07:51,"205 South St, Boston, MA 02215" +264336,Apple Airpods Headphones,1,150,09/09/19 10:42,"751 Cherry St, San Francisco, CA 94016" +264337,Wired Headphones,1,11.99,09/29/19 17:45,"783 Spruce St, Austin, TX 73301" +264338,Flatscreen TV,1,300,09/19/19 21:33,"867 Church St, New York City, NY 10001" +264339,Vareebadd Phone,1,400,09/06/19 12:03,"215 Adams St, Los Angeles, CA 90001" +264340,USB-C Charging Cable,1,11.95,09/07/19 08:53,"478 4th St, San Francisco, CA 94016" +264341,Bose SoundSport Headphones,1,99.99,09/22/19 22:56,"225 10th St, Seattle, WA 98101" +264342,Bose SoundSport Headphones,1,99.99,09/15/19 17:09,"506 Highland St, Portland, OR 97035" +264343,27in FHD Monitor,1,149.99,09/05/19 18:21,"487 Meadow St, San Francisco, CA 94016" +264344,AA Batteries (4-pack),1,3.84,09/03/19 21:13,"29 7th St, San Francisco, CA 94016" +264345,AAA Batteries (4-pack),1,2.99,09/13/19 12:52,"102 Cherry St, Dallas, TX 75001" +264346,Apple Airpods Headphones,1,150,09/15/19 13:17,"701 Spruce St, San Francisco, CA 94016" +264347,AAA Batteries (4-pack),1,2.99,09/25/19 22:38,"460 Cherry St, Boston, MA 02215" +264348,Wired Headphones,1,11.99,09/04/19 12:23,"498 Lincoln St, Los Angeles, CA 90001" +264349,ThinkPad Laptop,1,999.99,09/03/19 17:10,"484 Elm St, San Francisco, CA 94016" +264350,USB-C Charging Cable,1,11.95,09/17/19 20:49,"210 Johnson St, Portland, OR 97035" +264351,Lightning Charging Cable,1,14.95,09/21/19 09:17,"60 10th St, Boston, MA 02215" +264352,27in 4K Gaming Monitor,1,389.99,09/22/19 06:07,"265 Spruce St, San Francisco, CA 94016" +264353,Bose SoundSport Headphones,1,99.99,09/16/19 13:03,"702 8th St, New York City, NY 10001" +264354,iPhone,1,700,09/05/19 18:57,"542 River St, San Francisco, CA 94016" +264355,Lightning Charging Cable,1,14.95,09/26/19 18:21,"740 Meadow St, Boston, MA 02215" +264356,LG Washing Machine,1,600.0,09/19/19 19:51,"59 Lake St, Dallas, TX 75001" +264357,AAA Batteries (4-pack),3,2.99,09/07/19 15:29,"974 Center St, Dallas, TX 75001" +264358,Google Phone,1,600,09/11/19 16:11,"428 Elm St, Boston, MA 02215" +264359,Lightning Charging Cable,1,14.95,09/11/19 12:16,"224 Main St, Boston, MA 02215" +264360,USB-C Charging Cable,1,11.95,09/26/19 19:51,"553 Center St, Los Angeles, CA 90001" +264361,Apple Airpods Headphones,1,150,09/06/19 20:39,"653 Hickory St, San Francisco, CA 94016" +264362,Bose SoundSport Headphones,1,99.99,09/13/19 15:11,"207 2nd St, Seattle, WA 98101" +264363,iPhone,1,700,09/28/19 12:19,"93 River St, San Francisco, CA 94016" +264364,LG Washing Machine,1,600.0,09/23/19 06:12,"206 2nd St, Atlanta, GA 30301" +264365,LG Washing Machine,1,600.0,09/26/19 10:09,"459 Sunset St, Atlanta, GA 30301" +264366,Google Phone,1,600,09/29/19 14:16,"828 2nd St, Los Angeles, CA 90001" +264366,USB-C Charging Cable,1,11.95,09/29/19 14:16,"828 2nd St, Los Angeles, CA 90001" +264367,AAA Batteries (4-pack),1,2.99,09/25/19 12:26,"183 North St, Boston, MA 02215" +264368,USB-C Charging Cable,1,11.95,09/26/19 12:11,"376 10th St, Atlanta, GA 30301" +264369,Apple Airpods Headphones,1,150,09/18/19 09:46,"533 14th St, Atlanta, GA 30301" +264369,Lightning Charging Cable,1,14.95,09/18/19 09:46,"533 14th St, Atlanta, GA 30301" +264370,AAA Batteries (4-pack),1,2.99,09/30/19 17:06,"568 Madison St, San Francisco, CA 94016" +264371,Google Phone,1,600,09/10/19 19:48,"198 2nd St, San Francisco, CA 94016" +264372,Lightning Charging Cable,1,14.95,09/13/19 13:28,"559 1st St, Atlanta, GA 30301" +264373,USB-C Charging Cable,1,11.95,09/05/19 17:59,"246 7th St, Seattle, WA 98101" +264374,Lightning Charging Cable,1,14.95,09/28/19 16:56,"523 Church St, San Francisco, CA 94016" +264375,AAA Batteries (4-pack),2,2.99,09/11/19 23:53,"189 Meadow St, Atlanta, GA 30301" +264376,AAA Batteries (4-pack),1,2.99,09/30/19 21:47,"60 Adams St, San Francisco, CA 94016" +264377,AAA Batteries (4-pack),2,2.99,09/06/19 23:57,"621 Cherry St, New York City, NY 10001" +264378,Wired Headphones,1,11.99,09/06/19 11:48,"485 Lincoln St, Portland, OR 97035" +264379,27in 4K Gaming Monitor,1,389.99,09/09/19 12:35,"142 2nd St, Dallas, TX 75001" +264380,USB-C Charging Cable,2,11.95,09/29/19 12:44,"378 7th St, Los Angeles, CA 90001" +264381,USB-C Charging Cable,1,11.95,09/23/19 11:30,"327 14th St, San Francisco, CA 94016" +264382,Wired Headphones,1,11.99,09/01/19 09:27,"559 13th St, Seattle, WA 98101" +264383,Lightning Charging Cable,1,14.95,09/14/19 12:51,"688 Forest St, Los Angeles, CA 90001" +264384,Apple Airpods Headphones,1,150,09/08/19 15:06,"468 8th St, Dallas, TX 75001" +264385,iPhone,1,700,09/15/19 14:53,"318 Park St, Portland, OR 97035" +264386,Wired Headphones,1,11.99,09/08/19 16:58,"770 Elm St, Portland, OR 97035" +264387,USB-C Charging Cable,1,11.95,09/08/19 09:58,"32 Washington St, Portland, OR 97035" +264388,Apple Airpods Headphones,1,150,09/13/19 19:16,"716 13th St, Portland, OR 97035" +264389,Wired Headphones,1,11.99,09/16/19 17:10,"77 11th St, San Francisco, CA 94016" +264390,USB-C Charging Cable,1,11.95,09/07/19 23:11,"31 Hickory St, San Francisco, CA 94016" +264391,AAA Batteries (4-pack),1,2.99,09/16/19 18:44,"514 Maple St, San Francisco, CA 94016" +264392,27in FHD Monitor,1,149.99,09/06/19 20:34,"557 Walnut St, Seattle, WA 98101" +264392,AAA Batteries (4-pack),1,2.99,09/06/19 20:34,"557 Walnut St, Seattle, WA 98101" +264393,USB-C Charging Cable,1,11.95,09/27/19 21:57,"996 Lakeview St, San Francisco, CA 94016" +264394,AAA Batteries (4-pack),2,2.99,09/04/19 22:25,"903 4th St, Los Angeles, CA 90001" +264395,AAA Batteries (4-pack),2,2.99,09/27/19 06:52,"467 12th St, San Francisco, CA 94016" +264396,ThinkPad Laptop,1,999.99,09/01/19 13:06,"636 Forest St, Los Angeles, CA 90001" +264397,USB-C Charging Cable,1,11.95,09/13/19 18:20,"801 Chestnut St, Boston, MA 02215" +264398,Wired Headphones,1,11.99,09/29/19 12:22,"892 Lincoln St, Los Angeles, CA 90001" +264399,Lightning Charging Cable,1,14.95,09/01/19 13:10,"423 Main St, Boston, MA 02215" +264400,AA Batteries (4-pack),1,3.84,09/04/19 18:35,"970 Spruce St, Atlanta, GA 30301" +264401,AAA Batteries (4-pack),1,2.99,09/21/19 12:13,"592 1st St, Austin, TX 73301" +264401,iPhone,1,700,09/21/19 12:13,"592 1st St, Austin, TX 73301" +264402,AAA Batteries (4-pack),5,2.99,09/07/19 16:01,"751 2nd St, Seattle, WA 98101" +264403,34in Ultrawide Monitor,1,379.99,09/20/19 19:14,"631 Lakeview St, Austin, TX 73301" +264404,Bose SoundSport Headphones,1,99.99,09/27/19 10:11,"339 Chestnut St, Los Angeles, CA 90001" +264404,Bose SoundSport Headphones,1,99.99,09/27/19 10:11,"339 Chestnut St, Los Angeles, CA 90001" +264405,USB-C Charging Cable,2,11.95,09/10/19 01:23,"117 Hickory St, Los Angeles, CA 90001" +264406,Wired Headphones,2,11.99,09/13/19 11:35,"4 Main St, Los Angeles, CA 90001" +264407,ThinkPad Laptop,1,999.99,09/05/19 18:08,"127 6th St, Los Angeles, CA 90001" +264408,Vareebadd Phone,1,400,09/26/19 11:03,"30 Church St, San Francisco, CA 94016" +264409,Bose SoundSport Headphones,1,99.99,09/09/19 21:36,"856 Chestnut St, San Francisco, CA 94016" +264410,27in 4K Gaming Monitor,1,389.99,09/23/19 14:33,"166 Chestnut St, Atlanta, GA 30301" +264411,USB-C Charging Cable,1,11.95,09/09/19 08:13,"703 River St, San Francisco, CA 94016" +264412,USB-C Charging Cable,1,11.95,09/07/19 21:43,"56 Washington St, Los Angeles, CA 90001" +264413,AAA Batteries (4-pack),1,2.99,09/24/19 22:13,"226 Main St, San Francisco, CA 94016" +264414,USB-C Charging Cable,1,11.95,09/19/19 14:30,"306 Madison St, Los Angeles, CA 90001" +264415,Lightning Charging Cable,1,14.95,09/16/19 12:41,"317 Spruce St, Los Angeles, CA 90001" +264416,AA Batteries (4-pack),3,3.84,09/01/19 13:43,"256 Willow St, Portland, OR 97035" +264417,Vareebadd Phone,1,400,09/22/19 11:15,"375 Hickory St, Los Angeles, CA 90001" +264417,USB-C Charging Cable,1,11.95,09/22/19 11:15,"375 Hickory St, Los Angeles, CA 90001" +264418,Lightning Charging Cable,1,14.95,09/29/19 23:44,"491 12th St, San Francisco, CA 94016" +264419,Bose SoundSport Headphones,1,99.99,09/07/19 14:32,"385 14th St, Atlanta, GA 30301" +264420,USB-C Charging Cable,1,11.95,09/27/19 20:54,"225 Hickory St, San Francisco, CA 94016" +264421,Lightning Charging Cable,1,14.95,09/20/19 11:01,"709 Wilson St, Dallas, TX 75001" +264422,27in FHD Monitor,1,149.99,09/12/19 14:50,"202 South St, San Francisco, CA 94016" +264423,AA Batteries (4-pack),3,3.84,09/09/19 12:28,"393 Hickory St, San Francisco, CA 94016" +264424,Lightning Charging Cable,1,14.95,09/05/19 15:36,"988 Cedar St, San Francisco, CA 94016" +264425,Bose SoundSport Headphones,1,99.99,09/04/19 20:26,"435 South St, Portland, OR 97035" +264426,Bose SoundSport Headphones,1,99.99,09/08/19 01:12,"397 13th St, Seattle, WA 98101" +264427,Bose SoundSport Headphones,1,99.99,09/06/19 20:53,"18 Highland St, Boston, MA 02215" +264428,USB-C Charging Cable,1,11.95,09/03/19 12:10,"826 Sunset St, San Francisco, CA 94016" +264429,AAA Batteries (4-pack),1,2.99,09/11/19 12:13,"714 Cedar St, Seattle, WA 98101" +264429,USB-C Charging Cable,1,11.95,09/11/19 12:13,"714 Cedar St, Seattle, WA 98101" +264430,27in 4K Gaming Monitor,1,389.99,09/21/19 09:49,"419 13th St, Atlanta, GA 30301" +264431,iPhone,1,700,09/27/19 20:12,"892 Hill St, Los Angeles, CA 90001" +264432,iPhone,1,700,09/20/19 08:41,"906 Washington St, Los Angeles, CA 90001" +264432,Wired Headphones,1,11.99,09/20/19 08:41,"906 Washington St, Los Angeles, CA 90001" +264433,Lightning Charging Cable,1,14.95,09/05/19 14:38,"536 5th St, Dallas, TX 75001" +264434,AAA Batteries (4-pack),1,2.99,09/06/19 14:54,"198 9th St, Los Angeles, CA 90001" +264435,USB-C Charging Cable,2,11.95,09/28/19 17:39,"65 5th St, Austin, TX 73301" +264436,ThinkPad Laptop,1,999.99,09/21/19 13:10,"549 Lincoln St, Portland, OR 97035" +264437,Bose SoundSport Headphones,1,99.99,09/28/19 10:12,"885 5th St, Seattle, WA 98101" +264438,Lightning Charging Cable,2,14.95,09/06/19 20:23,"689 West St, Boston, MA 02215" +264439,Wired Headphones,1,11.99,09/06/19 00:09,"585 Dogwood St, Dallas, TX 75001" +264440,iPhone,1,700,09/13/19 23:38,"573 South St, Boston, MA 02215" +264441,Wired Headphones,1,11.99,09/27/19 15:54,"528 Maple St, Boston, MA 02215" +264442,Bose SoundSport Headphones,1,99.99,09/03/19 14:15,"981 13th St, San Francisco, CA 94016" +264443,Lightning Charging Cable,1,14.95,09/02/19 19:21,"927 Spruce St, Boston, MA 02215" +264444,Flatscreen TV,1,300,09/19/19 20:33,"26 Lincoln St, San Francisco, CA 94016" +264445,27in FHD Monitor,1,149.99,09/22/19 23:13,"39 13th St, Dallas, TX 75001" +264446,Wired Headphones,1,11.99,09/03/19 08:50,"269 14th St, San Francisco, CA 94016" +264447,AA Batteries (4-pack),1,3.84,09/14/19 09:18,"261 Ridge St, San Francisco, CA 94016" +264448,Apple Airpods Headphones,1,150,09/22/19 10:36,"964 Park St, San Francisco, CA 94016" +264449,Wired Headphones,1,11.99,09/30/19 20:29,"379 Chestnut St, New York City, NY 10001" +264450,AA Batteries (4-pack),2,3.84,09/19/19 13:46,"29 8th St, Seattle, WA 98101" +264451,Flatscreen TV,1,300,09/27/19 15:31,"179 Park St, San Francisco, CA 94016" +264452,ThinkPad Laptop,1,999.99,09/18/19 10:45,"889 Walnut St, Boston, MA 02215" +264453,Apple Airpods Headphones,1,150,09/09/19 11:48,"515 6th St, Atlanta, GA 30301" +264454,Apple Airpods Headphones,1,150,09/20/19 14:14,"103 Meadow St, Atlanta, GA 30301" +264455,Apple Airpods Headphones,1,150,09/06/19 09:39,"197 Lakeview St, Portland, ME 04101" +264455,27in 4K Gaming Monitor,1,389.99,09/06/19 09:39,"197 Lakeview St, Portland, ME 04101" +264456,AA Batteries (4-pack),1,3.84,09/15/19 17:59,"255 11th St, San Francisco, CA 94016" +264457,AA Batteries (4-pack),1,3.84,09/26/19 18:56,"183 10th St, Austin, TX 73301" +264458,Lightning Charging Cable,1,14.95,09/08/19 14:49,"681 5th St, Seattle, WA 98101" +264459,Lightning Charging Cable,1,14.95,09/18/19 19:03,"917 Washington St, Austin, TX 73301" +264460,Wired Headphones,1,11.99,09/22/19 14:17,"587 Chestnut St, Seattle, WA 98101" +264461,Bose SoundSport Headphones,1,99.99,09/06/19 18:05,"697 Lincoln St, Los Angeles, CA 90001" +264462,27in 4K Gaming Monitor,1,389.99,09/10/19 23:13,"55 Madison St, New York City, NY 10001" +264463,iPhone,1,700,09/17/19 08:55,"150 Cherry St, San Francisco, CA 94016" +264464,AA Batteries (4-pack),1,3.84,09/22/19 22:29,"930 10th St, Austin, TX 73301" +264465,Wired Headphones,1,11.99,09/11/19 19:09,"101 Willow St, Boston, MA 02215" +264466,AA Batteries (4-pack),2,3.84,09/11/19 20:57,"696 Hill St, San Francisco, CA 94016" +264467,Bose SoundSport Headphones,1,99.99,09/20/19 07:11,"545 11th St, San Francisco, CA 94016" +264468,Bose SoundSport Headphones,1,99.99,09/21/19 14:20,"714 Lake St, Boston, MA 02215" +264469,AA Batteries (4-pack),1,3.84,09/01/19 18:16,"621 Meadow St, Dallas, TX 75001" +264470,AA Batteries (4-pack),1,3.84,09/28/19 10:58,"888 13th St, Dallas, TX 75001" +264471,Macbook Pro Laptop,1,1700,09/22/19 13:07,"654 Ridge St, Seattle, WA 98101" +264472,USB-C Charging Cable,1,11.95,09/16/19 11:46,"630 9th St, Los Angeles, CA 90001" +264473,AAA Batteries (4-pack),2,2.99,09/29/19 21:08,"379 Madison St, Boston, MA 02215" +264474,USB-C Charging Cable,1,11.95,09/23/19 00:45,"700 Main St, New York City, NY 10001" +264475,34in Ultrawide Monitor,1,379.99,09/06/19 09:31,"449 Cedar St, Boston, MA 02215" +264476,AA Batteries (4-pack),1,3.84,09/15/19 11:25,"775 14th St, Seattle, WA 98101" +264477,iPhone,1,700,09/01/19 08:29,"256 River St, San Francisco, CA 94016" +264477,Wired Headphones,1,11.99,09/01/19 08:29,"256 River St, San Francisco, CA 94016" +264478,Wired Headphones,1,11.99,09/17/19 06:17,"719 Hill St, Los Angeles, CA 90001" +264479,AAA Batteries (4-pack),1,2.99,09/12/19 08:51,"41 South St, Austin, TX 73301" +264480,Wired Headphones,1,11.99,09/10/19 17:08,"500 Wilson St, San Francisco, CA 94016" +264481,Lightning Charging Cable,1,14.95,09/21/19 08:50,"135 River St, New York City, NY 10001" +264482,iPhone,1,700,09/20/19 11:18,"328 Center St, Portland, ME 04101" +264483,Apple Airpods Headphones,1,150,09/10/19 20:22,"312 Spruce St, New York City, NY 10001" +264484,Apple Airpods Headphones,1,150,09/15/19 20:21,"744 Johnson St, Atlanta, GA 30301" +264485,Wired Headphones,1,11.99,09/20/19 18:52,"456 14th St, Atlanta, GA 30301" +264486,AA Batteries (4-pack),2,3.84,09/14/19 17:39,"784 Cedar St, Austin, TX 73301" +264487,USB-C Charging Cable,1,11.95,09/22/19 17:52,"195 12th St, Boston, MA 02215" +264488,Bose SoundSport Headphones,1,99.99,09/16/19 12:16,"277 6th St, Boston, MA 02215" +264489,Lightning Charging Cable,1,14.95,09/11/19 10:41,"134 Adams St, New York City, NY 10001" +264490,Macbook Pro Laptop,1,1700,09/08/19 16:02,"681 Hill St, Austin, TX 73301" +264491,Apple Airpods Headphones,1,150,09/10/19 15:37,"617 Hickory St, New York City, NY 10001" +264492,Bose SoundSport Headphones,1,99.99,09/16/19 21:05,"558 Forest St, Boston, MA 02215" +264493,27in FHD Monitor,1,149.99,09/19/19 12:52,"766 Spruce St, Boston, MA 02215" +264494,Wired Headphones,1,11.99,09/19/19 18:15,"339 Cherry St, Dallas, TX 75001" +264495,USB-C Charging Cable,1,11.95,09/03/19 10:02,"438 West St, Los Angeles, CA 90001" +264496,Bose SoundSport Headphones,1,99.99,09/04/19 16:34,"765 Church St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +264497,AA Batteries (4-pack),2,3.84,09/25/19 23:53,"688 7th St, San Francisco, CA 94016" +264498,Google Phone,1,600,09/02/19 07:12,"472 13th St, Boston, MA 02215" +264499,Apple Airpods Headphones,1,150,09/21/19 13:51,"544 Madison St, Boston, MA 02215" +264500,27in FHD Monitor,1,149.99,09/12/19 19:01,"468 Hickory St, New York City, NY 10001" +264501,Lightning Charging Cable,1,14.95,09/11/19 20:36,"579 Walnut St, Los Angeles, CA 90001" +264502,Apple Airpods Headphones,1,150,09/07/19 16:34,"70 Meadow St, Los Angeles, CA 90001" +264503,27in 4K Gaming Monitor,1,389.99,09/03/19 07:47,"577 Spruce St, San Francisco, CA 94016" +264504,AAA Batteries (4-pack),1,2.99,09/29/19 21:44,"125 11th St, Dallas, TX 75001" +264505,AAA Batteries (4-pack),2,2.99,09/30/19 18:50,"408 North St, New York City, NY 10001" +264506,Flatscreen TV,1,300,09/10/19 09:02,"413 Maple St, Boston, MA 02215" +264507,USB-C Charging Cable,2,11.95,09/03/19 18:43,"26 Pine St, San Francisco, CA 94016" +264508,iPhone,1,700,09/26/19 22:01,"408 Chestnut St, New York City, NY 10001" +264509,Lightning Charging Cable,1,14.95,09/01/19 07:09,"721 Church St, Los Angeles, CA 90001" +264510,AA Batteries (4-pack),1,3.84,09/30/19 17:46,"406 Walnut St, San Francisco, CA 94016" +264511,Wired Headphones,1,11.99,09/06/19 10:59,"230 11th St, San Francisco, CA 94016" +264512,iPhone,1,700,09/17/19 07:45,"923 Johnson St, Dallas, TX 75001" +264513,AA Batteries (4-pack),3,3.84,09/26/19 12:26,"309 Spruce St, San Francisco, CA 94016" +264514,AA Batteries (4-pack),1,3.84,09/27/19 16:30,"599 Willow St, Los Angeles, CA 90001" +264515,Lightning Charging Cable,1,14.95,09/28/19 17:54,"338 5th St, Portland, OR 97035" +264516,Lightning Charging Cable,1,14.95,09/24/19 19:14,"605 Washington St, San Francisco, CA 94016" +264517,AA Batteries (4-pack),3,3.84,09/08/19 18:27,"941 Jackson St, Portland, OR 97035" +264518,Wired Headphones,1,11.99,09/19/19 14:26,"211 Hickory St, Boston, MA 02215" +264519,AA Batteries (4-pack),1,3.84,09/27/19 15:03,"41 West St, New York City, NY 10001" +264520,20in Monitor,1,109.99,09/06/19 21:49,"632 Highland St, Los Angeles, CA 90001" +264521,Wired Headphones,1,11.99,09/28/19 09:46,"272 4th St, New York City, NY 10001" +264522,Bose SoundSport Headphones,2,99.99,09/15/19 13:57,"754 5th St, Dallas, TX 75001" +264523,Wired Headphones,1,11.99,09/30/19 16:00,"56 Lincoln St, San Francisco, CA 94016" +264524,27in FHD Monitor,1,149.99,09/02/19 20:45,"245 Cedar St, San Francisco, CA 94016" +264525,AA Batteries (4-pack),2,3.84,09/02/19 06:27,"934 Madison St, Boston, MA 02215" +264526,Google Phone,1,600,09/02/19 21:31,"172 Meadow St, Seattle, WA 98101" +264526,Bose SoundSport Headphones,1,99.99,09/02/19 21:31,"172 Meadow St, Seattle, WA 98101" +264527,LG Washing Machine,1,600.0,09/11/19 15:45,"129 Spruce St, Seattle, WA 98101" +264528,Apple Airpods Headphones,1,150,09/02/19 14:55,"376 Highland St, San Francisco, CA 94016" +264529,ThinkPad Laptop,1,999.99,09/19/19 06:23,"447 Lincoln St, New York City, NY 10001" +264530,USB-C Charging Cable,1,11.95,09/09/19 21:37,"632 12th St, San Francisco, CA 94016" +264531,Google Phone,1,600,09/18/19 19:28,"100 14th St, Dallas, TX 75001" +264531,USB-C Charging Cable,1,11.95,09/18/19 19:28,"100 14th St, Dallas, TX 75001" +264532,iPhone,1,700,09/17/19 20:16,"530 Lake St, Austin, TX 73301" +264532,Lightning Charging Cable,1,14.95,09/17/19 20:16,"530 Lake St, Austin, TX 73301" +264533,iPhone,1,700,09/21/19 08:06,"333 Washington St, Atlanta, GA 30301" +264533,Lightning Charging Cable,1,14.95,09/21/19 08:06,"333 Washington St, Atlanta, GA 30301" +264534,AA Batteries (4-pack),1,3.84,09/15/19 20:30,"682 9th St, San Francisco, CA 94016" +264535,AAA Batteries (4-pack),1,2.99,09/20/19 19:25,"330 11th St, New York City, NY 10001" +264536,AAA Batteries (4-pack),4,2.99,09/15/19 18:08,"842 Park St, Austin, TX 73301" +264537,Macbook Pro Laptop,1,1700,09/06/19 10:46,"606 Sunset St, Portland, OR 97035" +264538,Wired Headphones,1,11.99,09/09/19 00:11,"404 Dogwood St, San Francisco, CA 94016" +264539,Google Phone,1,600,09/23/19 19:52,"54 Main St, Los Angeles, CA 90001" +264540,USB-C Charging Cable,1,11.95,09/23/19 11:47,"102 Adams St, Portland, OR 97035" +264541,USB-C Charging Cable,1,11.95,09/02/19 23:23,"934 Ridge St, Los Angeles, CA 90001" +264542,AAA Batteries (4-pack),1,2.99,09/21/19 01:45,"504 Hill St, San Francisco, CA 94016" +264543,Vareebadd Phone,1,400,09/22/19 19:23,"184 Hill St, San Francisco, CA 94016" +264544,Bose SoundSport Headphones,1,99.99,09/09/19 17:40,"122 Washington St, New York City, NY 10001" +264545,20in Monitor,1,109.99,09/26/19 00:19,"576 Willow St, Austin, TX 73301" +264546,USB-C Charging Cable,1,11.95,09/18/19 16:23,"447 9th St, Los Angeles, CA 90001" +264547,AAA Batteries (4-pack),1,2.99,09/10/19 13:15,"295 12th St, New York City, NY 10001" +264548,20in Monitor,1,109.99,09/21/19 19:07,"484 Jefferson St, Los Angeles, CA 90001" +264549,34in Ultrawide Monitor,1,379.99,09/06/19 11:48,"27 Jackson St, New York City, NY 10001" +264550,Lightning Charging Cable,1,14.95,09/04/19 19:10,"839 7th St, Dallas, TX 75001" +264551,AAA Batteries (4-pack),1,2.99,09/11/19 21:27,"640 6th St, Los Angeles, CA 90001" +264552,Wired Headphones,1,11.99,09/02/19 09:18,"600 Willow St, Boston, MA 02215" +264553,iPhone,1,700,09/15/19 22:09,"927 Jefferson St, Boston, MA 02215" +264553,iPhone,1,700,09/15/19 22:09,"927 Jefferson St, Boston, MA 02215" +264554,Bose SoundSport Headphones,1,99.99,09/03/19 15:47,"478 Lake St, Boston, MA 02215" +264555,AA Batteries (4-pack),1,3.84,09/10/19 16:45,"418 Willow St, New York City, NY 10001" +264556,Lightning Charging Cable,1,14.95,09/05/19 15:18,"834 Spruce St, Dallas, TX 75001" +264557,27in FHD Monitor,1,149.99,09/12/19 18:04,"96 Lincoln St, Los Angeles, CA 90001" +264558,Apple Airpods Headphones,1,150,09/02/19 12:32,"4 14th St, Portland, OR 97035" +264559,Lightning Charging Cable,1,14.95,09/10/19 15:38,"924 Hickory St, San Francisco, CA 94016" +264560,Macbook Pro Laptop,1,1700,09/08/19 12:00,"987 14th St, Dallas, TX 75001" +264561,Flatscreen TV,1,300,09/25/19 15:10,"980 14th St, Los Angeles, CA 90001" +264562,27in FHD Monitor,1,149.99,09/17/19 12:25,"11 12th St, Los Angeles, CA 90001" +264563,Lightning Charging Cable,1,14.95,09/26/19 00:58,"382 6th St, San Francisco, CA 94016" +264564,Lightning Charging Cable,1,14.95,09/20/19 13:09,"400 14th St, Dallas, TX 75001" +264565,AA Batteries (4-pack),1,3.84,09/13/19 12:49,"511 Sunset St, Los Angeles, CA 90001" +264566,AAA Batteries (4-pack),1,2.99,09/15/19 15:54,"376 Meadow St, Boston, MA 02215" +264567,AA Batteries (4-pack),1,3.84,09/07/19 22:00,"306 Johnson St, Boston, MA 02215" +264568,iPhone,1,700,09/14/19 13:32,"424 7th St, San Francisco, CA 94016" +264568,Lightning Charging Cable,1,14.95,09/14/19 13:32,"424 7th St, San Francisco, CA 94016" +264569,iPhone,1,700,09/26/19 17:14,"924 Cherry St, Los Angeles, CA 90001" +264569,Lightning Charging Cable,1,14.95,09/26/19 17:14,"924 Cherry St, Los Angeles, CA 90001" +264570,Bose SoundSport Headphones,1,99.99,09/28/19 17:59,"810 Wilson St, San Francisco, CA 94016" +264571,USB-C Charging Cable,1,11.95,09/01/19 22:53,"578 6th St, Seattle, WA 98101" +264571,Lightning Charging Cable,1,14.95,09/01/19 22:53,"578 6th St, Seattle, WA 98101" +264572,AAA Batteries (4-pack),1,2.99,09/11/19 00:21,"93 Church St, Los Angeles, CA 90001" +264573,27in FHD Monitor,1,149.99,09/08/19 07:15,"557 Jackson St, Dallas, TX 75001" +264574,Bose SoundSport Headphones,1,99.99,09/06/19 19:11,"362 Church St, Dallas, TX 75001" +264575,Wired Headphones,1,11.99,09/08/19 19:40,"529 Adams St, San Francisco, CA 94016" +264576,27in 4K Gaming Monitor,1,389.99,09/05/19 13:03,"219 North St, Boston, MA 02215" +264577,Wired Headphones,1,11.99,09/09/19 08:13,"111 Lakeview St, Seattle, WA 98101" +264578,Bose SoundSport Headphones,1,99.99,09/16/19 20:29,"515 Maple St, San Francisco, CA 94016" +264579,Apple Airpods Headphones,1,150,09/14/19 14:20,"981 Ridge St, Los Angeles, CA 90001" +264580,Lightning Charging Cable,1,14.95,09/02/19 12:29,"302 Ridge St, New York City, NY 10001" +264581,Apple Airpods Headphones,1,150,09/29/19 06:33,"427 Elm St, New York City, NY 10001" +264582,Apple Airpods Headphones,1,150,09/15/19 17:23,"784 Center St, Austin, TX 73301" +264582,AAA Batteries (4-pack),1,2.99,09/15/19 17:23,"784 Center St, Austin, TX 73301" +264583,Wired Headphones,1,11.99,09/13/19 16:58,"440 10th St, Dallas, TX 75001" +264584,Flatscreen TV,1,300,09/18/19 19:29,"429 Center St, San Francisco, CA 94016" +264585,Apple Airpods Headphones,1,150,09/15/19 13:00,"382 Maple St, San Francisco, CA 94016" +264586,27in 4K Gaming Monitor,1,389.99,09/30/19 13:22,"776 Highland St, San Francisco, CA 94016" +264587,AAA Batteries (4-pack),1,2.99,09/03/19 13:08,"825 Church St, San Francisco, CA 94016" +264587,Wired Headphones,1,11.99,09/03/19 13:08,"825 Church St, San Francisco, CA 94016" +264588,27in 4K Gaming Monitor,1,389.99,09/26/19 21:11,"331 11th St, New York City, NY 10001" +264589,Lightning Charging Cable,1,14.95,09/10/19 15:42,"248 Willow St, San Francisco, CA 94016" +264590,Bose SoundSport Headphones,1,99.99,09/11/19 13:48,"659 12th St, New York City, NY 10001" +264591,USB-C Charging Cable,1,11.95,09/24/19 12:03,"912 Walnut St, San Francisco, CA 94016" +264592,Bose SoundSport Headphones,1,99.99,09/09/19 09:59,"71 4th St, San Francisco, CA 94016" +264593,Lightning Charging Cable,1,14.95,09/18/19 19:49,"939 13th St, San Francisco, CA 94016" +264594,Bose SoundSport Headphones,1,99.99,09/13/19 21:19,"471 Sunset St, Los Angeles, CA 90001" +264595,Wired Headphones,1,11.99,09/27/19 11:52,"661 1st St, San Francisco, CA 94016" +264596,27in FHD Monitor,1,149.99,09/28/19 18:29,"117 8th St, Los Angeles, CA 90001" +264597,27in 4K Gaming Monitor,1,389.99,09/08/19 11:07,"644 West St, Los Angeles, CA 90001" +264598,AA Batteries (4-pack),2,3.84,09/28/19 10:04,"35 Jackson St, Dallas, TX 75001" +264599,AAA Batteries (4-pack),2,2.99,09/10/19 16:59,"684 Pine St, New York City, NY 10001" +264600,Apple Airpods Headphones,1,150,09/29/19 13:43,"6 Pine St, New York City, NY 10001" +264601,USB-C Charging Cable,1,11.95,09/04/19 12:47,"77 Park St, Portland, ME 04101" +264602,AAA Batteries (4-pack),1,2.99,09/22/19 10:26,"619 Church St, Boston, MA 02215" +264603,AAA Batteries (4-pack),1,2.99,09/15/19 20:31,"754 Hill St, Portland, OR 97035" +264604,Google Phone,1,600,09/27/19 22:15,"127 Willow St, Boston, MA 02215" +264604,USB-C Charging Cable,1,11.95,09/27/19 22:15,"127 Willow St, Boston, MA 02215" +264605,Google Phone,1,600,09/13/19 12:12,"966 12th St, Boston, MA 02215" +264606,Flatscreen TV,1,300,09/19/19 11:08,"124 Sunset St, New York City, NY 10001" +264607,34in Ultrawide Monitor,1,379.99,09/07/19 11:14,"790 Forest St, Los Angeles, CA 90001" +264608,AA Batteries (4-pack),1,3.84,09/26/19 09:20,"264 Main St, Boston, MA 02215" +264609,Apple Airpods Headphones,1,150,09/01/19 22:11,"609 Spruce St, Los Angeles, CA 90001" +264610,ThinkPad Laptop,1,999.99,09/26/19 23:39,"693 North St, Portland, OR 97035" +264611,Macbook Pro Laptop,1,1700,09/03/19 16:18,"661 Jackson St, Los Angeles, CA 90001" +264612,AAA Batteries (4-pack),1,2.99,09/06/19 06:05,"242 Elm St, Portland, ME 04101" +264613,Wired Headphones,1,11.99,09/15/19 14:49,"623 Hill St, Portland, OR 97035" +264614,AAA Batteries (4-pack),1,2.99,09/26/19 21:26,"896 Elm St, San Francisco, CA 94016" +264615,AAA Batteries (4-pack),2,2.99,09/15/19 12:53,"569 9th St, Atlanta, GA 30301" +264616,Lightning Charging Cable,1,14.95,09/18/19 18:27,"83 Cedar St, San Francisco, CA 94016" +264617,AA Batteries (4-pack),2,3.84,09/06/19 18:42,"663 Lakeview St, Dallas, TX 75001" +264618,Bose SoundSport Headphones,1,99.99,09/20/19 08:58,"824 10th St, Boston, MA 02215" +264619,27in 4K Gaming Monitor,1,389.99,09/27/19 20:05,"29 Ridge St, Austin, TX 73301" +264620,20in Monitor,1,109.99,09/03/19 12:37,"160 4th St, Portland, OR 97035" +264620,AA Batteries (4-pack),1,3.84,09/03/19 12:37,"160 4th St, Portland, OR 97035" +264621,Apple Airpods Headphones,1,150,09/26/19 13:04,"376 Johnson St, New York City, NY 10001" +264622,Lightning Charging Cable,1,14.95,09/30/19 16:42,"17 Lakeview St, San Francisco, CA 94016" +264623,Lightning Charging Cable,1,14.95,09/12/19 13:42,"355 Jefferson St, San Francisco, CA 94016" +264624,AA Batteries (4-pack),2,3.84,09/21/19 13:52,"358 Chestnut St, Atlanta, GA 30301" +264625,Apple Airpods Headphones,1,150,09/29/19 20:24,"50 13th St, Los Angeles, CA 90001" +264626,USB-C Charging Cable,2,11.95,09/28/19 11:09,"335 Adams St, New York City, NY 10001" +264627,AAA Batteries (4-pack),1,2.99,09/05/19 12:30,"78 Forest St, Dallas, TX 75001" +264628,AA Batteries (4-pack),1,3.84,09/10/19 22:47,"350 North St, New York City, NY 10001" +264629,27in FHD Monitor,1,149.99,09/06/19 17:12,"471 River St, Dallas, TX 75001" +264630,Bose SoundSport Headphones,1,99.99,09/25/19 12:36,"110 Cedar St, Austin, TX 73301" +264631,Wired Headphones,1,11.99,09/28/19 20:28,"545 1st St, San Francisco, CA 94016" +264632,AA Batteries (4-pack),1,3.84,09/05/19 22:16,"427 4th St, New York City, NY 10001" +264633,Lightning Charging Cable,1,14.95,09/28/19 13:25,"315 Willow St, San Francisco, CA 94016" +264634,Bose SoundSport Headphones,1,99.99,09/13/19 21:51,"916 Cedar St, Dallas, TX 75001" +264635,Wired Headphones,1,11.99,09/18/19 19:53,"682 Highland St, San Francisco, CA 94016" +264636,Lightning Charging Cable,1,14.95,09/08/19 11:24,"975 South St, Boston, MA 02215" +264637,Apple Airpods Headphones,1,150,09/03/19 21:58,"907 7th St, Austin, TX 73301" +264638,20in Monitor,1,109.99,09/29/19 08:48,"810 Highland St, Portland, OR 97035" +264639,Wired Headphones,2,11.99,09/20/19 09:02,"511 Jackson St, Los Angeles, CA 90001" +264640,LG Washing Machine,1,600.0,09/25/19 17:44,"151 9th St, Boston, MA 02215" +264641,Wired Headphones,1,11.99,09/03/19 06:48,"916 West St, New York City, NY 10001" +264642,Wired Headphones,1,11.99,09/12/19 18:53,"135 Washington St, Boston, MA 02215" +264643,AAA Batteries (4-pack),3,2.99,09/15/19 21:20,"723 Jackson St, Portland, OR 97035" +264644,iPhone,1,700,09/10/19 11:45,"185 2nd St, Seattle, WA 98101" +264644,Lightning Charging Cable,1,14.95,09/10/19 11:45,"185 2nd St, Seattle, WA 98101" +264645,AA Batteries (4-pack),2,3.84,09/28/19 17:32,"10 Dogwood St, New York City, NY 10001" +264646,Apple Airpods Headphones,1,150,09/23/19 13:45,"827 Lake St, Los Angeles, CA 90001" +264647,Apple Airpods Headphones,1,150,09/06/19 16:02,"658 Highland St, Boston, MA 02215" +264648,AA Batteries (4-pack),1,3.84,09/08/19 20:08,"229 Hickory St, Atlanta, GA 30301" +264649,USB-C Charging Cable,1,11.95,09/09/19 18:02,"599 8th St, San Francisco, CA 94016" +264650,ThinkPad Laptop,1,999.99,09/23/19 20:28,"656 Walnut St, Dallas, TX 75001" +264651,Apple Airpods Headphones,1,150,09/23/19 10:42,"494 South St, San Francisco, CA 94016" +264652,LG Dryer,1,600.0,09/19/19 07:43,"373 Ridge St, Seattle, WA 98101" +264653,27in FHD Monitor,1,149.99,09/23/19 13:02,"176 River St, New York City, NY 10001" +264654,27in FHD Monitor,1,149.99,09/13/19 10:58,"594 Cedar St, Atlanta, GA 30301" +264655,AA Batteries (4-pack),1,3.84,09/05/19 14:38,"173 Elm St, Los Angeles, CA 90001" +264656,Lightning Charging Cable,1,14.95,09/01/19 08:36,"264 Dogwood St, Portland, ME 04101" +264657,USB-C Charging Cable,1,11.95,09/28/19 13:35,"791 Ridge St, New York City, NY 10001" +264658,AAA Batteries (4-pack),1,2.99,09/20/19 18:48,"166 Pine St, Seattle, WA 98101" +264659,Google Phone,1,600,09/22/19 21:44,"487 Lake St, Boston, MA 02215" +264660,ThinkPad Laptop,1,999.99,09/28/19 13:29,"135 Cedar St, New York City, NY 10001" +264661,Apple Airpods Headphones,1,150,09/03/19 11:01,"172 River St, San Francisco, CA 94016" +264662,Lightning Charging Cable,1,14.95,09/15/19 12:02,"546 Sunset St, Dallas, TX 75001" +264663,AAA Batteries (4-pack),1,2.99,09/18/19 09:23,"404 2nd St, Seattle, WA 98101" +264664,AA Batteries (4-pack),1,3.84,09/06/19 22:25,"593 West St, Los Angeles, CA 90001" +264665,Wired Headphones,1,11.99,09/26/19 18:14,"680 Hill St, Atlanta, GA 30301" +264666,Google Phone,1,600,09/08/19 09:45,"657 Forest St, Boston, MA 02215" +264667,AAA Batteries (4-pack),1,2.99,09/05/19 13:10,"340 West St, New York City, NY 10001" +264668,AA Batteries (4-pack),2,3.84,09/15/19 12:37,"995 Walnut St, Dallas, TX 75001" +264669,Apple Airpods Headphones,1,150,09/09/19 08:33,"486 Johnson St, Austin, TX 73301" +264670,Wired Headphones,1,11.99,09/25/19 14:34,"992 Ridge St, Seattle, WA 98101" +264671,USB-C Charging Cable,1,11.95,09/21/19 08:37,"552 10th St, New York City, NY 10001" +264672,Lightning Charging Cable,1,14.95,09/23/19 19:05,"891 Adams St, Portland, OR 97035" +264673,AA Batteries (4-pack),1,3.84,09/05/19 19:25,"627 Walnut St, San Francisco, CA 94016" +264674,USB-C Charging Cable,1,11.95,09/04/19 07:47,"558 Lincoln St, Atlanta, GA 30301" +264675,ThinkPad Laptop,1,999.99,09/19/19 00:01,"133 Washington St, New York City, NY 10001" +264676,Bose SoundSport Headphones,1,99.99,09/20/19 01:06,"252 Forest St, Austin, TX 73301" +264677,Apple Airpods Headphones,1,150,09/10/19 22:07,"331 Johnson St, Austin, TX 73301" +264678,Wired Headphones,1,11.99,09/15/19 10:21,"972 Highland St, Dallas, TX 75001" +264679,Apple Airpods Headphones,1,150,09/03/19 14:47,"59 Hickory St, New York City, NY 10001" +264680,iPhone,1,700,09/08/19 21:28,"768 River St, San Francisco, CA 94016" +264681,Flatscreen TV,1,300,09/21/19 07:01,"462 Center St, Austin, TX 73301" +264682,AA Batteries (4-pack),1,3.84,09/23/19 18:14,"553 Cherry St, Los Angeles, CA 90001" +264683,USB-C Charging Cable,1,11.95,09/19/19 00:34,"697 9th St, Los Angeles, CA 90001" +264684,Apple Airpods Headphones,1,150,09/23/19 19:28,"614 Washington St, Austin, TX 73301" +264685,Flatscreen TV,1,300,09/25/19 13:13,"105 Wilson St, Atlanta, GA 30301" +264686,Apple Airpods Headphones,1,150,09/27/19 08:27,"864 13th St, Atlanta, GA 30301" +264687,AAA Batteries (4-pack),2,2.99,09/18/19 09:38,"62 Madison St, San Francisco, CA 94016" +264688,Wired Headphones,1,11.99,09/23/19 08:37,"329 Pine St, New York City, NY 10001" +264689,Apple Airpods Headphones,1,150,09/16/19 10:47,"19 Washington St, San Francisco, CA 94016" +264690,USB-C Charging Cable,1,11.95,09/16/19 15:58,"457 Jackson St, Seattle, WA 98101" +264691,AA Batteries (4-pack),1,3.84,09/21/19 11:11,"594 Cherry St, Boston, MA 02215" +264692,Apple Airpods Headphones,1,150,09/05/19 22:24,"625 West St, San Francisco, CA 94016" +264693,Lightning Charging Cable,1,14.95,09/29/19 19:38,"949 5th St, San Francisco, CA 94016" +264694,AAA Batteries (4-pack),1,2.99,09/18/19 18:51,"617 Lake St, Los Angeles, CA 90001" +264695,Apple Airpods Headphones,1,150,09/07/19 17:00,"674 13th St, Dallas, TX 75001" +264696,AAA Batteries (4-pack),1,2.99,09/11/19 20:31,"701 West St, Austin, TX 73301" +264697,iPhone,1,700,09/16/19 22:53,"556 Lincoln St, Dallas, TX 75001" +264698,20in Monitor,1,109.99,09/04/19 15:10,"95 Center St, Seattle, WA 98101" +264699,LG Dryer,1,600.0,09/01/19 13:09,"180 Cedar St, Portland, OR 97035" +264700,27in 4K Gaming Monitor,1,389.99,09/08/19 22:41,"213 2nd St, Los Angeles, CA 90001" +264701,Wired Headphones,3,11.99,09/25/19 17:30,"167 Lincoln St, Dallas, TX 75001" +264702,Bose SoundSport Headphones,1,99.99,09/13/19 01:19,"136 Madison St, New York City, NY 10001" +264703,AAA Batteries (4-pack),2,2.99,09/11/19 16:19,"73 Cherry St, San Francisco, CA 94016" +264704,iPhone,1,700,09/18/19 09:16,"877 14th St, Los Angeles, CA 90001" +264705,Bose SoundSport Headphones,1,99.99,09/13/19 07:38,"614 Madison St, Seattle, WA 98101" +264706,27in FHD Monitor,1,149.99,09/20/19 23:44,"445 Madison St, San Francisco, CA 94016" +264707,Wired Headphones,1,11.99,09/03/19 15:23,"292 Spruce St, San Francisco, CA 94016" +264707,USB-C Charging Cable,1,11.95,09/03/19 15:23,"292 Spruce St, San Francisco, CA 94016" +264708,Vareebadd Phone,1,400,09/14/19 21:53,"709 North St, San Francisco, CA 94016" +264708,Wired Headphones,1,11.99,09/14/19 21:53,"709 North St, San Francisco, CA 94016" +264709,iPhone,1,700,09/16/19 16:23,"67 Meadow St, Dallas, TX 75001" +264709,Lightning Charging Cable,1,14.95,09/16/19 16:23,"67 Meadow St, Dallas, TX 75001" +264710,AAA Batteries (4-pack),1,2.99,09/03/19 15:29,"372 Washington St, Dallas, TX 75001" +264711,34in Ultrawide Monitor,1,379.99,09/14/19 14:12,"716 6th St, Los Angeles, CA 90001" +264712,27in 4K Gaming Monitor,1,389.99,09/17/19 12:56,"644 6th St, Dallas, TX 75001" +264713,Lightning Charging Cable,2,14.95,09/11/19 18:14,"553 Adams St, Austin, TX 73301" +264714,20in Monitor,1,109.99,09/30/19 12:25,"150 Hickory St, Portland, OR 97035" +264715,20in Monitor,1,109.99,09/13/19 01:44,"368 Lakeview St, Portland, OR 97035" +264716,ThinkPad Laptop,1,999.99,09/19/19 21:13,"769 14th St, San Francisco, CA 94016" +264717,USB-C Charging Cable,1,11.95,09/17/19 08:37,"55 Center St, New York City, NY 10001" +264718,Macbook Pro Laptop,1,1700,09/13/19 12:09,"103 Willow St, Seattle, WA 98101" +264719,USB-C Charging Cable,1,11.95,09/22/19 12:19,"495 1st St, San Francisco, CA 94016" +264720,27in 4K Gaming Monitor,1,389.99,09/22/19 08:11,"435 6th St, San Francisco, CA 94016" +264721,Lightning Charging Cable,1,14.95,09/29/19 16:45,"569 Madison St, Dallas, TX 75001" +264722,USB-C Charging Cable,2,11.95,09/06/19 07:59,"617 Cherry St, Los Angeles, CA 90001" +264723,Bose SoundSport Headphones,1,99.99,09/10/19 10:34,"742 Hickory St, New York City, NY 10001" +264724,27in 4K Gaming Monitor,1,389.99,09/03/19 09:05,"326 Sunset St, New York City, NY 10001" +264725,AAA Batteries (4-pack),1,2.99,09/29/19 14:41,"789 4th St, Seattle, WA 98101" +264726,AAA Batteries (4-pack),1,2.99,09/27/19 16:50,"375 4th St, Seattle, WA 98101" +264727,ThinkPad Laptop,1,999.99,09/16/19 10:56,"858 Cedar St, Atlanta, GA 30301" +264728,AA Batteries (4-pack),1,3.84,09/26/19 23:10,"720 4th St, Los Angeles, CA 90001" +264729,AA Batteries (4-pack),1,3.84,09/08/19 20:53,"760 6th St, Dallas, TX 75001" +264730,AA Batteries (4-pack),1,3.84,09/13/19 13:17,"498 Forest St, New York City, NY 10001" +264730,Lightning Charging Cable,1,14.95,09/13/19 13:17,"498 Forest St, New York City, NY 10001" +264731,27in FHD Monitor,1,149.99,09/28/19 12:06,"636 Madison St, Boston, MA 02215" +264732,USB-C Charging Cable,1,11.95,09/19/19 13:16,"685 Maple St, San Francisco, CA 94016" +264733,USB-C Charging Cable,1,11.95,09/15/19 18:22,"44 Washington St, Boston, MA 02215" +264734,Apple Airpods Headphones,1,150,09/20/19 20:08,"897 Main St, Los Angeles, CA 90001" +264735,AA Batteries (4-pack),2,3.84,09/16/19 09:46,"165 Main St, Los Angeles, CA 90001" +264736,AAA Batteries (4-pack),1,2.99,09/16/19 15:09,"33 Hickory St, Atlanta, GA 30301" +264737,34in Ultrawide Monitor,1,379.99,09/16/19 12:01,"253 North St, New York City, NY 10001" +264738,27in 4K Gaming Monitor,1,389.99,09/05/19 15:54,"717 Jackson St, Seattle, WA 98101" +264739,ThinkPad Laptop,1,999.99,09/08/19 18:11,"825 Madison St, Boston, MA 02215" +264740,Macbook Pro Laptop,1,1700,09/26/19 14:18,"434 South St, Dallas, TX 75001" +264740,Flatscreen TV,1,300,09/26/19 14:18,"434 South St, Dallas, TX 75001" +264741,20in Monitor,1,109.99,09/12/19 10:24,"449 Lake St, San Francisco, CA 94016" +264742,iPhone,1,700,09/06/19 14:55,"284 Elm St, Portland, ME 04101" +264742,Wired Headphones,1,11.99,09/06/19 14:55,"284 Elm St, Portland, ME 04101" +264743,34in Ultrawide Monitor,1,379.99,09/12/19 04:31,"347 6th St, Boston, MA 02215" +264744,27in 4K Gaming Monitor,1,389.99,09/01/19 09:54,"107 Adams St, Portland, OR 97035" +264745,Wired Headphones,1,11.99,09/18/19 17:05,"634 5th St, San Francisco, CA 94016" +264746,34in Ultrawide Monitor,1,379.99,09/06/19 20:16,"902 Walnut St, Seattle, WA 98101" +264747,Wired Headphones,1,11.99,09/15/19 17:44,"430 Cherry St, San Francisco, CA 94016" +264748,27in FHD Monitor,1,149.99,09/02/19 12:10,"503 13th St, Los Angeles, CA 90001" +264749,27in FHD Monitor,1,149.99,09/10/19 08:30,"100 5th St, Los Angeles, CA 90001" +264750,27in 4K Gaming Monitor,1,389.99,09/02/19 15:30,"737 Hickory St, Austin, TX 73301" +264751,Macbook Pro Laptop,1,1700,09/03/19 22:22,"766 Lincoln St, Boston, MA 02215" +264752,USB-C Charging Cable,1,11.95,09/25/19 03:15,"777 14th St, Los Angeles, CA 90001" +264752,AA Batteries (4-pack),1,3.84,09/25/19 03:15,"777 14th St, Los Angeles, CA 90001" +264753,Apple Airpods Headphones,1,150,09/13/19 22:57,"452 14th St, San Francisco, CA 94016" +264754,Wired Headphones,1,11.99,09/24/19 18:40,"93 14th St, Portland, OR 97035" +264755,Apple Airpods Headphones,1,150,09/22/19 09:59,"726 Maple St, Los Angeles, CA 90001" +264755,27in FHD Monitor,1,149.99,09/22/19 09:59,"726 Maple St, Los Angeles, CA 90001" +264756,Bose SoundSport Headphones,1,99.99,09/11/19 00:23,"347 8th St, New York City, NY 10001" +264757,Lightning Charging Cable,1,14.95,09/21/19 21:41,"519 Elm St, Los Angeles, CA 90001" +264758,Lightning Charging Cable,1,14.95,09/02/19 20:49,"600 13th St, Dallas, TX 75001" +264759,27in FHD Monitor,1,149.99,09/14/19 19:05,"540 6th St, Atlanta, GA 30301" +264760,Lightning Charging Cable,1,14.95,09/14/19 15:33,"707 Hill St, Atlanta, GA 30301" +264761,Lightning Charging Cable,1,14.95,09/16/19 16:47,"495 Spruce St, Portland, OR 97035" +264762,AA Batteries (4-pack),1,3.84,09/28/19 13:53,"764 Jackson St, Atlanta, GA 30301" +264763,34in Ultrawide Monitor,1,379.99,09/19/19 12:23,"253 Willow St, Seattle, WA 98101" +264764,27in FHD Monitor,1,149.99,09/23/19 19:32,"107 Jefferson St, Atlanta, GA 30301" +264765,Apple Airpods Headphones,1,150,09/25/19 22:04,"16 11th St, Dallas, TX 75001" +264766,AA Batteries (4-pack),1,3.84,09/02/19 09:17,"61 Cherry St, San Francisco, CA 94016" +264767,iPhone,1,700,09/18/19 22:58,"426 2nd St, San Francisco, CA 94016" +264767,Lightning Charging Cable,1,14.95,09/18/19 22:58,"426 2nd St, San Francisco, CA 94016" +264768,USB-C Charging Cable,1,11.95,09/21/19 21:42,"234 Highland St, Los Angeles, CA 90001" +264769,Wired Headphones,1,11.99,09/29/19 13:13,"196 8th St, San Francisco, CA 94016" +264770,USB-C Charging Cable,1,11.95,09/25/19 16:09,"642 Wilson St, Los Angeles, CA 90001" +264771,Lightning Charging Cable,1,14.95,09/16/19 14:03,"693 8th St, San Francisco, CA 94016" +264772,USB-C Charging Cable,1,11.95,09/03/19 19:56,"658 Ridge St, Los Angeles, CA 90001" +264773,27in 4K Gaming Monitor,1,389.99,09/13/19 15:57,"307 Chestnut St, New York City, NY 10001" +264774,Macbook Pro Laptop,1,1700,09/19/19 11:47,"955 Johnson St, Portland, ME 04101" +264774,AA Batteries (4-pack),1,3.84,09/19/19 11:47,"955 Johnson St, Portland, ME 04101" +264775,Wired Headphones,1,11.99,09/18/19 07:45,"633 Hickory St, Seattle, WA 98101" +264776,Bose SoundSport Headphones,1,99.99,09/19/19 00:55,"666 5th St, Dallas, TX 75001" +264777,AA Batteries (4-pack),1,3.84,09/03/19 22:05,"950 Hill St, San Francisco, CA 94016" +264778,27in FHD Monitor,1,149.99,09/11/19 19:48,"715 10th St, Portland, OR 97035" +264779,27in FHD Monitor,1,149.99,09/28/19 21:08,"906 River St, New York City, NY 10001" diff --git a/sales_data/all_data.csv b/sales_data/all_data.csv new file mode 100644 index 0000000..27416b8 --- /dev/null +++ b/sales_data/all_data.csv @@ -0,0 +1,188714 @@ +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +197962,Lightning Charging Cable,2,14.95,05/18/19 08:52,"10 2nd St, San Francisco, CA 94016" +197963,27in FHD Monitor,1,149.99,05/30/19 20:01,"403 14th St, Los Angeles, CA 90001" +197964,Lightning Charging Cable,1,14.95,05/09/19 13:08,"797 Sunset St, Seattle, WA 98101" +197965,Wired Headphones,1,11.99,05/10/19 15:13,"238 Maple St, Atlanta, GA 30301" +197966,Lightning Charging Cable,1,14.95,05/03/19 18:49,"677 Johnson St, New York City, NY 10001" +197967,Wired Headphones,1,11.99,05/03/19 11:44,"792 4th St, Portland, ME 04101" +197968,Vareebadd Phone,1,400.0,05/25/19 09:31,"263 5th St, Los Angeles, CA 90001" +197969,AAA Batteries (4-pack),3,2.99,05/29/19 20:34,"570 Chestnut St, New York City, NY 10001" +197970,Lightning Charging Cable,1,14.95,05/20/19 07:49,"843 9th St, San Francisco, CA 94016" +197971,Wired Headphones,1,11.99,05/09/19 10:55,"404 Lake St, New York City, NY 10001" +197972,ThinkPad Laptop,1,999.99,05/18/19 15:39,"626 13th St, San Francisco, CA 94016" +197973,Bose SoundSport Headphones,1,99.99,05/09/19 13:16,"99 Adams St, Austin, TX 73301" +197974,Google Phone,1,600.0,05/04/19 09:08,"61 Johnson St, Los Angeles, CA 90001" +197975,AAA Batteries (4-pack),2,2.99,05/18/19 23:37,"182 Main St, New York City, NY 10001" +197976,Wired Headphones,1,11.99,05/20/19 15:40,"381 Cherry St, New York City, NY 10001" +197977,AA Batteries (4-pack),2,3.84,05/01/19 22:13,"764 North St, New York City, NY 10001" +197978,Apple Airpods Headphones,1,150.0,05/11/19 11:56,"630 Hickory St, Boston, MA 02215" +197979,34in Ultrawide Monitor,1,379.99,05/24/19 23:09,"168 Main St, Portland, OR 97035" +197980,USB-C Charging Cable,1,11.95,05/22/19 02:59,"957 Wilson St, Los Angeles, CA 90001" +197981,AA Batteries (4-pack),1,3.84,05/21/19 13:11,"604 Washington St, Los Angeles, CA 90001" +197982,AA Batteries (4-pack),1,3.84,05/20/19 13:43,"467 Lakeview St, Seattle, WA 98101" +197983,34in Ultrawide Monitor,1,379.99,05/11/19 21:12,"36 Cedar St, San Francisco, CA 94016" +197984,AA Batteries (4-pack),1,3.84,05/24/19 16:34,"108 12th St, New York City, NY 10001" +197985,34in Ultrawide Monitor,1,379.99,05/30/19 12:11,"222 12th St, Los Angeles, CA 90001" +197986,27in 4K Gaming Monitor,1,389.99,05/28/19 20:39,"853 Cherry St, Portland, ME 04101" +197987,27in 4K Gaming Monitor,1,389.99,05/07/19 20:23,"994 Ridge St, Seattle, WA 98101" +197988,Bose SoundSport Headphones,1,99.99,05/08/19 12:16,"340 Pine St, Los Angeles, CA 90001" +197989,USB-C Charging Cable,1,11.95,05/08/19 05:36,"87 Dogwood St, Seattle, WA 98101" +197990,AAA Batteries (4-pack),1,2.99,05/20/19 16:14,"454 2nd St, Los Angeles, CA 90001" +197991,27in FHD Monitor,1,149.99,05/23/19 21:01,"700 Lincoln St, San Francisco, CA 94016" +197992,iPhone,1,700.0,05/15/19 20:52,"647 Adams St, Seattle, WA 98101" +197993,AA Batteries (4-pack),1,3.84,05/17/19 20:23,"416 7th St, Boston, MA 02215" +197994,Wired Headphones,1,11.99,05/12/19 12:58,"841 Chestnut St, Los Angeles, CA 90001" +197995,Google Phone,1,600.0,05/20/19 18:18,"814 Main St, Dallas, TX 75001" +197995,USB-C Charging Cable,1,11.95,05/20/19 18:18,"814 Main St, Dallas, TX 75001" +197996,AA Batteries (4-pack),1,3.84,05/21/19 11:38,"21 9th St, Boston, MA 02215" +197997,Google Phone,1,600.0,05/25/19 16:50,"791 5th St, Austin, TX 73301" +197998,Apple Airpods Headphones,1,150.0,05/28/19 20:41,"461 10th St, Los Angeles, CA 90001" +197998,USB-C Charging Cable,1,11.95,05/28/19 20:41,"461 10th St, Los Angeles, CA 90001" +197999,AA Batteries (4-pack),1,3.84,05/09/19 13:07,"76 Spruce St, Boston, MA 02215" +198000,AAA Batteries (4-pack),1,2.99,05/09/19 21:25,"671 8th St, San Francisco, CA 94016" +198001,Lightning Charging Cable,1,14.95,05/21/19 16:02,"844 Pine St, Portland, OR 97035" +198002,Macbook Pro Laptop,1,1700.0,05/24/19 22:59,"670 Hickory St, Atlanta, GA 30301" +198003,AAA Batteries (4-pack),3,2.99,05/16/19 13:00,"735 Cherry St, Dallas, TX 75001" +198004,27in 4K Gaming Monitor,1,389.99,05/02/19 22:55,"846 11th St, Portland, OR 97035" +198005,AAA Batteries (4-pack),2,2.99,05/14/19 11:20,"477 Cedar St, San Francisco, CA 94016" +198006,Lightning Charging Cable,1,14.95,05/17/19 00:45,"941 Lakeview St, Atlanta, GA 30301" +198007,USB-C Charging Cable,1,11.95,05/20/19 12:01,"450 Center St, San Francisco, CA 94016" +198008,USB-C Charging Cable,1,11.95,05/07/19 11:14,"274 Hill St, Seattle, WA 98101" +198009,AAA Batteries (4-pack),3,2.99,05/13/19 21:27,"275 11th St, Portland, OR 97035" +198010,Bose SoundSport Headphones,1,99.99,05/20/19 17:12,"786 Wilson St, New York City, NY 10001" +198011,Apple Airpods Headphones,1,150.0,05/04/19 10:06,"234 Cedar St, San Francisco, CA 94016" +198012,Apple Airpods Headphones,1,150.0,05/14/19 14:34,"794 5th St, Seattle, WA 98101" +198013,AAA Batteries (4-pack),1,2.99,05/06/19 16:37,"442 Elm St, San Francisco, CA 94016" +198014,Bose SoundSport Headphones,1,99.99,05/14/19 18:14,"152 West St, New York City, NY 10001" +198015,ThinkPad Laptop,1,999.99,05/29/19 09:56,"893 5th St, Portland, OR 97035" +198016,Google Phone,1,600.0,05/20/19 21:09,"607 North St, Dallas, TX 75001" +198017,Lightning Charging Cable,1,14.95,05/15/19 20:58,"94 9th St, New York City, NY 10001" +198018,USB-C Charging Cable,1,11.95,05/08/19 20:25,"536 Maple St, Dallas, TX 75001" +198019,Apple Airpods Headphones,1,150.0,05/13/19 12:23,"766 Lake St, Austin, TX 73301" +198020,Apple Airpods Headphones,1,150.0,05/29/19 12:20,"374 6th St, New York City, NY 10001" +198021,USB-C Charging Cable,1,11.95,05/30/19 13:11,"841 9th St, San Francisco, CA 94016" +198022,34in Ultrawide Monitor,1,379.99,05/25/19 13:08,"322 Hickory St, Seattle, WA 98101" +198023,Lightning Charging Cable,1,14.95,05/20/19 12:53,"378 5th St, Los Angeles, CA 90001" +198024,USB-C Charging Cable,1,11.95,05/10/19 12:20,"932 North St, Boston, MA 02215" +198025,27in FHD Monitor,1,149.99,05/05/19 19:30,"226 2nd St, Austin, TX 73301" +198026,AA Batteries (4-pack),1,3.84,05/26/19 06:48,"322 River St, San Francisco, CA 94016" +198027,AAA Batteries (4-pack),1,2.99,05/14/19 14:58,"85 North St, Los Angeles, CA 90001" +198028,Bose SoundSport Headphones,1,99.99,05/26/19 15:35,"607 River St, Boston, MA 02215" +198028,34in Ultrawide Monitor,1,379.99,05/26/19 15:35,"607 River St, Boston, MA 02215" +198029,Bose SoundSport Headphones,1,99.99,05/19/19 11:49,"963 Walnut St, Los Angeles, CA 90001" +198030,Apple Airpods Headphones,1,150.0,05/24/19 12:01,"887 Elm St, Boston, MA 02215" +198031,AAA Batteries (4-pack),3,2.99,05/26/19 18:16,"974 14th St, Austin, TX 73301" +198032,Wired Headphones,1,11.99,05/03/19 19:28,"520 Willow St, Dallas, TX 75001" +198032,Wired Headphones,2,11.99,05/03/19 19:28,"520 Willow St, Dallas, TX 75001" +198033,AA Batteries (4-pack),1,3.84,05/30/19 22:14,"6 River St, Seattle, WA 98101" +198034,Google Phone,1,600.0,05/09/19 21:50,"911 South St, Austin, TX 73301" +198035,AAA Batteries (4-pack),4,2.99,05/03/19 23:56,"959 8th St, San Francisco, CA 94016" +198036,Bose SoundSport Headphones,1,99.99,05/26/19 13:05,"86 11th St, Los Angeles, CA 90001" +198037,Bose SoundSport Headphones,1,99.99,05/25/19 16:28,"523 7th St, San Francisco, CA 94016" +198038,AA Batteries (4-pack),1,3.84,05/22/19 17:57,"161 Jefferson St, San Francisco, CA 94016" +198039,Lightning Charging Cable,1,14.95,05/05/19 12:04,"416 Adams St, Austin, TX 73301" +198040,34in Ultrawide Monitor,1,379.99,05/12/19 16:38,"880 6th St, New York City, NY 10001" +198041,iPhone,1,700.0,05/16/19 19:47,"834 Lincoln St, Los Angeles, CA 90001" +198042,Lightning Charging Cable,1,14.95,05/19/19 16:30,"431 9th St, Boston, MA 02215" +198043,USB-C Charging Cable,1,11.95,05/11/19 08:55,"372 9th St, Seattle, WA 98101" +198044,AA Batteries (4-pack),1,3.84,05/24/19 09:53,"773 Elm St, Austin, TX 73301" +198045,Lightning Charging Cable,1,14.95,05/12/19 20:02,"553 Lincoln St, San Francisco, CA 94016" +198046,Lightning Charging Cable,1,14.95,05/16/19 12:30,"157 Main St, Los Angeles, CA 90001" +198047,AAA Batteries (4-pack),1,2.99,05/30/19 17:10,"973 Chestnut St, Los Angeles, CA 90001" +198048,Bose SoundSport Headphones,1,99.99,05/04/19 16:52,"522 West St, San Francisco, CA 94016" +198049,34in Ultrawide Monitor,1,379.99,05/19/19 14:47,"733 Adams St, San Francisco, CA 94016" +198050,AA Batteries (4-pack),1,3.84,05/31/19 23:31,"560 4th St, Seattle, WA 98101" +198051,Bose SoundSport Headphones,1,99.99,05/25/19 18:17,"803 Jackson St, Los Angeles, CA 90001" +198052,USB-C Charging Cable,1,11.95,05/17/19 00:31,"144 7th St, Atlanta, GA 30301" +198053,Google Phone,1,600.0,05/26/19 22:17,"36 River St, Dallas, TX 75001" +198053,USB-C Charging Cable,1,11.95,05/26/19 22:17,"36 River St, Dallas, TX 75001" +198054,Bose SoundSport Headphones,1,99.99,05/10/19 12:05,"262 10th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +198055,iPhone,1,700,05/05/19 11:33,"69 14th St, Dallas, TX 75001" +198056,Bose SoundSport Headphones,1,99.99,05/13/19 12:34,"314 Cedar St, Dallas, TX 75001" +198057,AA Batteries (4-pack),1,3.84,05/08/19 23:01,"296 North St, San Francisco, CA 94016" +198058,USB-C Charging Cable,1,11.95,05/27/19 18:54,"536 Pine St, Dallas, TX 75001" +198059,20in Monitor,1,109.99,05/28/19 13:11,"945 Meadow St, San Francisco, CA 94016" +198060,AA Batteries (4-pack),1,3.84,05/09/19 21:49,"626 Lake St, Atlanta, GA 30301" +198061,Apple Airpods Headphones,1,150,05/06/19 20:18,"672 Jefferson St, Portland, OR 97035" +198061,iPhone,1,700,05/06/19 20:18,"672 Jefferson St, Portland, OR 97035" +198062,Wired Headphones,1,11.99,05/27/19 19:53,"681 Adams St, San Francisco, CA 94016" +198063,Wired Headphones,1,11.99,05/10/19 12:44,"329 4th St, Los Angeles, CA 90001" +198064,AA Batteries (4-pack),2,3.84,05/01/19 16:46,"405 7th St, Atlanta, GA 30301" +198065,Lightning Charging Cable,1,14.95,05/27/19 12:51,"6 11th St, San Francisco, CA 94016" +198066,Macbook Pro Laptop,1,1700,05/08/19 19:38,"709 North St, Dallas, TX 75001" +198067,Apple Airpods Headphones,1,150,05/21/19 22:21,"422 7th St, San Francisco, CA 94016" +198068,27in FHD Monitor,1,149.99,05/01/19 22:41,"103 2nd St, Los Angeles, CA 90001" +198069,Lightning Charging Cable,1,14.95,05/03/19 18:58,"614 13th St, Boston, MA 02215" +198070,Apple Airpods Headphones,1,150,05/05/19 14:19,"168 Church St, Los Angeles, CA 90001" +198071,ThinkPad Laptop,1,999.99,05/26/19 20:34,"701 Maple St, Los Angeles, CA 90001" +198072,Lightning Charging Cable,1,14.95,05/19/19 20:32,"269 Adams St, Portland, OR 97035" +198073,USB-C Charging Cable,1,11.95,05/16/19 11:23,"509 Center St, Atlanta, GA 30301" +198074,AAA Batteries (4-pack),1,2.99,05/26/19 14:50,"174 8th St, Boston, MA 02215" +198075,Wired Headphones,1,11.99,05/04/19 20:25,"682 Cherry St, Atlanta, GA 30301" +198075,Apple Airpods Headphones,1,150,05/04/19 20:25,"682 Cherry St, Atlanta, GA 30301" +198076,USB-C Charging Cable,1,11.95,05/19/19 06:49,"802 4th St, Portland, OR 97035" +198077,Lightning Charging Cable,1,14.95,05/01/19 13:01,"316 Highland St, San Francisco, CA 94016" +198078,iPhone,1,700,05/24/19 18:20,"44 Forest St, New York City, NY 10001" +198078,Wired Headphones,2,11.99,05/24/19 18:20,"44 Forest St, New York City, NY 10001" +198079,Lightning Charging Cable,1,14.95,05/28/19 19:27,"771 Lake St, Dallas, TX 75001" +198080,Apple Airpods Headphones,1,150,05/28/19 21:28,"77 Lakeview St, Portland, OR 97035" +198081,Wired Headphones,1,11.99,05/27/19 21:31,"397 8th St, Portland, OR 97035" +198082,Apple Airpods Headphones,1,150,05/31/19 12:20,"305 Lakeview St, New York City, NY 10001" +198083,AA Batteries (4-pack),2,3.84,05/08/19 22:46,"807 South St, New York City, NY 10001" +198084,Lightning Charging Cable,1,14.95,05/26/19 14:40,"488 Church St, Seattle, WA 98101" +198085,Wired Headphones,1,11.99,05/11/19 12:47,"499 West St, Boston, MA 02215" +198086,27in FHD Monitor,1,149.99,05/26/19 13:33,"105 Madison St, Boston, MA 02215" +198087,USB-C Charging Cable,1,11.95,05/17/19 15:55,"798 Madison St, San Francisco, CA 94016" +198088,Vareebadd Phone,1,400,05/22/19 16:12,"642 Church St, Los Angeles, CA 90001" +198088,USB-C Charging Cable,1,11.95,05/22/19 16:12,"642 Church St, Los Angeles, CA 90001" +198089,USB-C Charging Cable,1,11.95,05/20/19 09:56,"167 Jackson St, Atlanta, GA 30301" +198090,Flatscreen TV,1,300,05/23/19 18:06,"127 Ridge St, Los Angeles, CA 90001" +198091,AA Batteries (4-pack),1,3.84,05/16/19 08:56,"448 Hickory St, New York City, NY 10001" +198092,USB-C Charging Cable,1,11.95,05/02/19 07:48,"476 Johnson St, Dallas, TX 75001" +198093,USB-C Charging Cable,1,11.95,05/11/19 14:05,"708 Lakeview St, Seattle, WA 98101" +198094,AAA Batteries (4-pack),1,2.99,05/27/19 14:23,"688 Meadow St, San Francisco, CA 94016" +198095,Flatscreen TV,1,300,05/20/19 23:41,"914 Willow St, Atlanta, GA 30301" +198096,Bose SoundSport Headphones,1,99.99,05/09/19 13:21,"361 Maple St, New York City, NY 10001" +198097,iPhone,1,700,05/16/19 17:07,"50 1st St, New York City, NY 10001" +198098,AA Batteries (4-pack),2,3.84,05/25/19 16:02,"852 Willow St, Los Angeles, CA 90001" +198099,iPhone,1,700,05/04/19 12:55,"233 South St, San Francisco, CA 94016" +198100,Bose SoundSport Headphones,1,99.99,05/19/19 20:47,"897 Wilson St, Austin, TX 73301" +198101,USB-C Charging Cable,2,11.95,05/05/19 12:22,"482 2nd St, Seattle, WA 98101" +198102,AA Batteries (4-pack),1,3.84,05/08/19 12:16,"202 5th St, New York City, NY 10001" +198103,20in Monitor,1,109.99,05/16/19 22:06,"463 North St, San Francisco, CA 94016" +198104,34in Ultrawide Monitor,1,379.99,05/29/19 21:01,"381 4th St, San Francisco, CA 94016" +198105,Flatscreen TV,1,300,05/05/19 10:07,"607 South St, Dallas, TX 75001" +198106,USB-C Charging Cable,1,11.95,05/18/19 15:53,"245 Sunset St, Boston, MA 02215" +198107,27in 4K Gaming Monitor,1,389.99,05/17/19 10:55,"337 5th St, Los Angeles, CA 90001" +198108,Wired Headphones,1,11.99,05/15/19 18:32,"543 Sunset St, Los Angeles, CA 90001" +198109,Wired Headphones,1,11.99,05/14/19 21:54,"359 Madison St, San Francisco, CA 94016" +198110,AA Batteries (4-pack),2,3.84,05/25/19 14:30,"272 Johnson St, Austin, TX 73301" +198111,AAA Batteries (4-pack),1,2.99,05/22/19 12:06,"747 Jefferson St, Seattle, WA 98101" +198112,34in Ultrawide Monitor,1,379.99,05/23/19 13:12,"810 Ridge St, Seattle, WA 98101" +198113,27in FHD Monitor,1,149.99,05/18/19 21:50,"163 Lake St, Atlanta, GA 30301" +198114,AA Batteries (4-pack),2,3.84,05/06/19 08:00,"136 Lake St, New York City, NY 10001" +198115,AA Batteries (4-pack),1,3.84,05/10/19 06:58,"153 Jackson St, Boston, MA 02215" +198116,20in Monitor,1,109.99,05/04/19 17:32,"298 4th St, San Francisco, CA 94016" +198117,USB-C Charging Cable,1,11.95,05/31/19 14:14,"137 Hickory St, San Francisco, CA 94016" +198118,AA Batteries (4-pack),1,3.84,05/13/19 21:51,"798 Willow St, Portland, OR 97035" +198119,Bose SoundSport Headphones,1,99.99,05/21/19 18:37,"911 Ridge St, Austin, TX 73301" +198120,Macbook Pro Laptop,1,1700,05/23/19 09:46,"610 4th St, Atlanta, GA 30301" +198121,AAA Batteries (4-pack),1,2.99,05/27/19 10:57,"300 Ridge St, Los Angeles, CA 90001" +198121,Lightning Charging Cable,1,14.95,05/27/19 10:57,"300 Ridge St, Los Angeles, CA 90001" +198122,Lightning Charging Cable,2,14.95,05/28/19 22:54,"274 14th St, New York City, NY 10001" +198123,Flatscreen TV,1,300,05/21/19 18:27,"441 9th St, Portland, OR 97035" +198124,Apple Airpods Headphones,1,150,05/01/19 15:18,"208 Forest St, San Francisco, CA 94016" +198125,AA Batteries (4-pack),1,3.84,05/20/19 09:31,"875 10th St, Portland, OR 97035" +198126,Bose SoundSport Headphones,1,99.99,05/03/19 11:41,"342 4th St, Los Angeles, CA 90001" +198127,Flatscreen TV,1,300,05/13/19 16:27,"458 8th St, Boston, MA 02215" +198128,Google Phone,1,600,05/04/19 22:26,"340 Cherry St, Seattle, WA 98101" +198129,27in FHD Monitor,1,149.99,05/27/19 12:17,"15 Church St, New York City, NY 10001" +198130,AA Batteries (4-pack),1,3.84,05/13/19 11:21,"974 Cedar St, Austin, TX 73301" +198131,27in 4K Gaming Monitor,1,389.99,05/23/19 00:13,"722 5th St, Atlanta, GA 30301" +198131,AA Batteries (4-pack),1,3.84,05/23/19 00:13,"722 5th St, Atlanta, GA 30301" +198132,AAA Batteries (4-pack),1,2.99,05/02/19 15:53,"61 7th St, Austin, TX 73301" +198133,27in FHD Monitor,1,149.99,05/05/19 11:18,"356 5th St, San Francisco, CA 94016" +198134,AA Batteries (4-pack),1,3.84,05/20/19 18:30,"117 South St, Seattle, WA 98101" +198135,ThinkPad Laptop,1,999.99,05/17/19 16:52,"5 Meadow St, Los Angeles, CA 90001" +198136,Macbook Pro Laptop,1,1700,05/20/19 19:45,"397 8th St, New York City, NY 10001" +198137,27in FHD Monitor,1,149.99,05/12/19 18:20,"480 Park St, Atlanta, GA 30301" +198138,ThinkPad Laptop,1,999.99,05/21/19 18:51,"39 Church St, Los Angeles, CA 90001" +198139,USB-C Charging Cable,3,11.95,05/07/19 22:38,"835 Meadow St, Portland, OR 97035" +198140,Apple Airpods Headphones,1,150,05/17/19 15:03,"674 5th St, Los Angeles, CA 90001" +198141,Google Phone,1,600,05/22/19 17:24,"856 5th St, New York City, NY 10001" +198141,USB-C Charging Cable,1,11.95,05/22/19 17:24,"856 5th St, New York City, NY 10001" +198142,Macbook Pro Laptop,1,1700,05/18/19 01:17,"110 Willow St, New York City, NY 10001" +198143,AAA Batteries (4-pack),1,2.99,05/17/19 12:41,"660 1st St, New York City, NY 10001" +198144,Wired Headphones,1,11.99,05/27/19 08:27,"718 Washington St, San Francisco, CA 94016" +198145,ThinkPad Laptop,1,999.99,05/11/19 22:36,"592 8th St, Portland, OR 97035" +198146,Lightning Charging Cable,1,14.95,05/06/19 18:10,"425 8th St, Boston, MA 02215" +198147,AAA Batteries (4-pack),2,2.99,05/28/19 09:38,"556 13th St, San Francisco, CA 94016" +198148,Wired Headphones,1,11.99,05/20/19 18:16,"93 Hill St, Dallas, TX 75001" +198149,34in Ultrawide Monitor,1,379.99,05/25/19 21:34,"354 River St, Los Angeles, CA 90001" +198150,27in 4K Gaming Monitor,1,389.99,05/28/19 23:51,"220 Madison St, Portland, OR 97035" +198151,Apple Airpods Headphones,1,150,05/01/19 10:09,"728 Park St, Los Angeles, CA 90001" +198152,Apple Airpods Headphones,1,150,05/09/19 18:50,"770 9th St, Portland, OR 97035" +198153,Apple Airpods Headphones,1,150,05/02/19 18:43,"758 Meadow St, Los Angeles, CA 90001" +198154,27in FHD Monitor,1,149.99,05/01/19 14:23,"565 1st St, Atlanta, GA 30301" +198155,Apple Airpods Headphones,1,150,05/03/19 08:07,"116 Cedar St, Dallas, TX 75001" +198156,Bose SoundSport Headphones,1,99.99,05/30/19 14:57,"329 Main St, Seattle, WA 98101" +198157,27in 4K Gaming Monitor,1,389.99,05/17/19 15:00,"440 Hill St, Los Angeles, CA 90001" +198158,AA Batteries (4-pack),1,3.84,05/27/19 15:01,"585 4th St, Seattle, WA 98101" +198159,USB-C Charging Cable,1,11.95,05/29/19 20:29,"88 South St, Los Angeles, CA 90001" +198160,AAA Batteries (4-pack),1,2.99,05/08/19 17:55,"982 Park St, Portland, OR 97035" +198161,Bose SoundSport Headphones,1,99.99,05/19/19 08:45,"579 River St, San Francisco, CA 94016" +198162,Apple Airpods Headphones,1,150,05/09/19 23:34,"996 Hill St, Seattle, WA 98101" +198162,Lightning Charging Cable,1,14.95,05/09/19 23:34,"996 Hill St, Seattle, WA 98101" +198163,Wired Headphones,1,11.99,05/02/19 08:47,"40 1st St, Dallas, TX 75001" +198163,Apple Airpods Headphones,1,150,05/02/19 08:47,"40 1st St, Dallas, TX 75001" +198164,AAA Batteries (4-pack),1,2.99,05/17/19 15:30,"210 Willow St, Seattle, WA 98101" +198165,AAA Batteries (4-pack),2,2.99,05/19/19 13:41,"156 Lake St, San Francisco, CA 94016" +198166,34in Ultrawide Monitor,1,379.99,05/08/19 00:36,"526 North St, Boston, MA 02215" +198167,27in 4K Gaming Monitor,1,389.99,05/07/19 21:00,"960 Pine St, Seattle, WA 98101" +198168,Wired Headphones,1,11.99,05/13/19 16:27,"247 8th St, New York City, NY 10001" +198169,ThinkPad Laptop,1,999.99,05/28/19 17:37,"978 6th St, San Francisco, CA 94016" +198170,Bose SoundSport Headphones,1,99.99,05/17/19 09:04,"191 Spruce St, Los Angeles, CA 90001" +198171,Apple Airpods Headphones,1,150,05/14/19 17:12,"985 11th St, Los Angeles, CA 90001" +198172,AAA Batteries (4-pack),1,2.99,05/31/19 12:06,"542 Sunset St, Los Angeles, CA 90001" +198173,Lightning Charging Cable,2,14.95,05/14/19 01:06,"370 Park St, Boston, MA 02215" +198174,34in Ultrawide Monitor,1,379.99,05/17/19 22:56,"480 8th St, Dallas, TX 75001" +198175,USB-C Charging Cable,1,11.95,05/31/19 23:23,"282 Cherry St, Atlanta, GA 30301" +198176,Lightning Charging Cable,1,14.95,05/27/19 22:07,"76 10th St, Atlanta, GA 30301" +198177,USB-C Charging Cable,1,11.95,05/14/19 07:20,"568 Center St, New York City, NY 10001" +198178,Apple Airpods Headphones,1,150,05/11/19 22:34,"812 2nd St, Los Angeles, CA 90001" +198179,Apple Airpods Headphones,1,150,05/22/19 18:26,"6 2nd St, Portland, OR 97035" +198180,AAA Batteries (4-pack),2,2.99,05/04/19 22:02,"885 Meadow St, New York City, NY 10001" +198181,27in 4K Gaming Monitor,1,389.99,05/14/19 10:03,"455 Forest St, San Francisco, CA 94016" +198182,ThinkPad Laptop,1,999.99,05/01/19 08:11,"820 Hickory St, Portland, OR 97035" +198183,34in Ultrawide Monitor,1,379.99,05/09/19 10:06,"768 Hill St, San Francisco, CA 94016" +198184,27in FHD Monitor,1,149.99,05/25/19 20:18,"272 7th St, San Francisco, CA 94016" +198185,LG Dryer,1,600.0,05/11/19 08:10,"474 River St, New York City, NY 10001" +198186,USB-C Charging Cable,1,11.95,05/24/19 11:43,"468 Jackson St, Seattle, WA 98101" +198187,Wired Headphones,1,11.99,05/20/19 10:23,"598 Chestnut St, San Francisco, CA 94016" +198188,Google Phone,1,600,05/15/19 16:41,"141 Jackson St, Boston, MA 02215" +198189,AAA Batteries (4-pack),1,2.99,05/25/19 14:58,"966 Hill St, San Francisco, CA 94016" +198190,Google Phone,1,600,05/20/19 10:59,"247 Maple St, Portland, OR 97035" +198191,USB-C Charging Cable,1,11.95,05/15/19 18:53,"751 Adams St, San Francisco, CA 94016" +198192,Lightning Charging Cable,1,14.95,05/12/19 18:53,"700 North St, New York City, NY 10001" +198193,34in Ultrawide Monitor,1,379.99,05/29/19 07:05,"579 Pine St, Dallas, TX 75001" +198194,Lightning Charging Cable,1,14.95,05/04/19 10:41,"400 8th St, Boston, MA 02215" +198195,AA Batteries (4-pack),1,3.84,05/14/19 19:22,"347 9th St, San Francisco, CA 94016" +198196,Bose SoundSport Headphones,1,99.99,05/24/19 08:05,"736 8th St, San Francisco, CA 94016" +198197,AAA Batteries (4-pack),1,2.99,05/15/19 07:04,"331 13th St, Los Angeles, CA 90001" +198198,USB-C Charging Cable,1,11.95,05/30/19 16:57,"130 6th St, San Francisco, CA 94016" +198199,27in FHD Monitor,1,149.99,05/22/19 20:49,"427 Forest St, New York City, NY 10001" +198200,27in FHD Monitor,1,149.99,05/02/19 06:22,"98 Maple St, San Francisco, CA 94016" +198201,27in FHD Monitor,1,149.99,05/27/19 19:12,"379 Forest St, Boston, MA 02215" +198202,27in FHD Monitor,1,149.99,05/23/19 20:54,"14 Highland St, Atlanta, GA 30301" +198203,27in FHD Monitor,1,149.99,05/23/19 12:15,"437 Adams St, Atlanta, GA 30301" +198204,USB-C Charging Cable,1,11.95,05/21/19 19:53,"883 Jefferson St, San Francisco, CA 94016" +198205,Flatscreen TV,1,300,05/14/19 13:41,"750 Madison St, Atlanta, GA 30301" +198206,Apple Airpods Headphones,1,150,05/05/19 09:20,"536 Hickory St, Seattle, WA 98101" +198207,Lightning Charging Cable,1,14.95,05/17/19 10:19,"350 8th St, New York City, NY 10001" +198208,34in Ultrawide Monitor,2,379.99,05/23/19 08:11,"913 Dogwood St, New York City, NY 10001" +198209,20in Monitor,1,109.99,05/25/19 22:04,"430 Ridge St, Los Angeles, CA 90001" +198210,AA Batteries (4-pack),1,3.84,05/12/19 20:41,"645 Hill St, Los Angeles, CA 90001" +198211,AA Batteries (4-pack),2,3.84,05/09/19 15:18,"161 9th St, Los Angeles, CA 90001" +198212,Wired Headphones,1,11.99,05/25/19 12:53,"566 Cherry St, Atlanta, GA 30301" +198213,AA Batteries (4-pack),2,3.84,05/15/19 15:59,"189 1st St, Portland, ME 04101" +198214,ThinkPad Laptop,1,999.99,05/11/19 18:55,"493 5th St, New York City, NY 10001" +198215,AA Batteries (4-pack),1,3.84,05/06/19 10:42,"104 7th St, Atlanta, GA 30301" +198216,27in 4K Gaming Monitor,1,389.99,05/27/19 13:10,"817 Lincoln St, Seattle, WA 98101" +198217,Lightning Charging Cable,1,14.95,05/18/19 17:49,"750 Lakeview St, Atlanta, GA 30301" +198218,AA Batteries (4-pack),1,3.84,05/10/19 23:25,"5 Church St, San Francisco, CA 94016" +198219,AAA Batteries (4-pack),1,2.99,05/18/19 12:37,"976 Hickory St, Dallas, TX 75001" +198220,Wired Headphones,1,11.99,05/25/19 15:23,"113 Hickory St, Dallas, TX 75001" +198221,Wired Headphones,1,11.99,05/28/19 21:49,"718 7th St, New York City, NY 10001" +198222,Lightning Charging Cable,1,14.95,05/12/19 11:01,"463 Center St, San Francisco, CA 94016" +198223,USB-C Charging Cable,1,11.95,05/31/19 22:50,"17 Jefferson St, Seattle, WA 98101" +198224,Apple Airpods Headphones,1,150,05/12/19 13:38,"465 Adams St, Boston, MA 02215" +198225,AAA Batteries (4-pack),1,2.99,05/29/19 22:22,"973 13th St, Atlanta, GA 30301" +198226,Bose SoundSport Headphones,1,99.99,05/29/19 13:24,"851 Center St, Los Angeles, CA 90001" +198227,Lightning Charging Cable,1,14.95,05/30/19 17:14,"177 Jackson St, Portland, OR 97035" +198228,AA Batteries (4-pack),1,3.84,05/14/19 19:29,"369 Sunset St, Los Angeles, CA 90001" +198229,AAA Batteries (4-pack),3,2.99,05/19/19 17:12,"421 Cherry St, San Francisco, CA 94016" +198230,AA Batteries (4-pack),1,3.84,05/12/19 09:45,"73 Jefferson St, Dallas, TX 75001" +198231,Wired Headphones,1,11.99,05/29/19 12:07,"306 6th St, Boston, MA 02215" +198232,Apple Airpods Headphones,1,150,05/24/19 12:33,"253 Lakeview St, Boston, MA 02215" +198233,27in 4K Gaming Monitor,1,389.99,05/16/19 16:40,"698 Church St, Atlanta, GA 30301" +198234,Wired Headphones,1,11.99,05/27/19 20:10,"432 Jefferson St, Austin, TX 73301" +198235,Lightning Charging Cable,1,14.95,05/11/19 19:18,"887 Main St, Los Angeles, CA 90001" +198236,Wired Headphones,1,11.99,05/11/19 19:59,"774 Spruce St, Boston, MA 02215" +198237,USB-C Charging Cable,1,11.95,05/25/19 23:02,"29 5th St, Boston, MA 02215" +198238,Bose SoundSport Headphones,1,99.99,05/31/19 21:57,"182 14th St, San Francisco, CA 94016" +198239,Wired Headphones,1,11.99,05/10/19 17:31,"122 5th St, New York City, NY 10001" +198240,27in FHD Monitor,1,149.99,05/13/19 23:47,"140 Jackson St, New York City, NY 10001" +198241,Google Phone,1,600,05/07/19 13:22,"959 Hickory St, Seattle, WA 98101" +198242,iPhone,1,700,05/22/19 10:47,"883 Lake St, San Francisco, CA 94016" +198243,AA Batteries (4-pack),1,3.84,05/11/19 18:44,"92 Adams St, San Francisco, CA 94016" +,,,,, +198244,Macbook Pro Laptop,1,1700,05/04/19 19:46,"476 1st St, Los Angeles, CA 90001" +198245,USB-C Charging Cable,1,11.95,05/01/19 08:36,"853 Pine St, Portland, OR 97035" +198246,Apple Airpods Headphones,1,150,05/05/19 19:37,"476 South St, Portland, OR 97035" +198247,AAA Batteries (4-pack),1,2.99,05/22/19 10:14,"911 Sunset St, Austin, TX 73301" +198248,34in Ultrawide Monitor,1,379.99,05/10/19 12:14,"430 2nd St, San Francisco, CA 94016" +198249,Bose SoundSport Headphones,1,99.99,05/01/19 20:03,"311 Center St, Dallas, TX 75001" +198250,34in Ultrawide Monitor,1,379.99,05/27/19 08:20,"987 Madison St, New York City, NY 10001" +198251,USB-C Charging Cable,2,11.95,05/06/19 18:38,"347 Forest St, San Francisco, CA 94016" +198252,Bose SoundSport Headphones,1,99.99,05/28/19 23:47,"741 Hill St, Boston, MA 02215" +198253,Lightning Charging Cable,1,14.95,05/25/19 22:10,"487 Forest St, Seattle, WA 98101" +198254,AA Batteries (4-pack),1,3.84,05/13/19 19:38,"862 Pine St, New York City, NY 10001" +198255,Lightning Charging Cable,1,14.95,05/25/19 00:08,"643 Madison St, New York City, NY 10001" +198256,AA Batteries (4-pack),1,3.84,05/07/19 20:18,"791 Elm St, San Francisco, CA 94016" +198257,USB-C Charging Cable,1,11.95,05/08/19 11:31,"266 Cherry St, Portland, OR 97035" +198258,Lightning Charging Cable,1,14.95,05/25/19 19:07,"146 Main St, San Francisco, CA 94016" +198259,AA Batteries (4-pack),1,3.84,05/20/19 14:00,"623 6th St, San Francisco, CA 94016" +198260,AA Batteries (4-pack),1,3.84,05/24/19 12:38,"227 South St, Seattle, WA 98101" +198261,AAA Batteries (4-pack),1,2.99,05/08/19 13:29,"159 Meadow St, Dallas, TX 75001" +198262,Wired Headphones,1,11.99,05/07/19 22:06,"999 Sunset St, New York City, NY 10001" +198263,Bose SoundSport Headphones,1,99.99,05/18/19 14:29,"629 Lake St, San Francisco, CA 94016" +198264,Lightning Charging Cable,1,14.95,05/08/19 19:51,"365 Jefferson St, Atlanta, GA 30301" +198265,iPhone,1,700,05/05/19 16:56,"994 Hill St, Los Angeles, CA 90001" +198266,Wired Headphones,1,11.99,05/25/19 14:37,"844 Highland St, Portland, OR 97035" +198267,Macbook Pro Laptop,1,1700,05/26/19 19:13,"341 Cedar St, Dallas, TX 75001" +198268,USB-C Charging Cable,2,11.95,05/10/19 19:33,"710 Jefferson St, Seattle, WA 98101" +198269,AAA Batteries (4-pack),2,2.99,05/14/19 20:44,"168 North St, New York City, NY 10001" +198270,Wired Headphones,1,11.99,05/27/19 18:08,"803 Hickory St, San Francisco, CA 94016" +198271,USB-C Charging Cable,1,11.95,05/29/19 21:06,"24 Spruce St, Austin, TX 73301" +198272,27in 4K Gaming Monitor,1,389.99,05/23/19 08:44,"44 Center St, Los Angeles, CA 90001" +198273,Vareebadd Phone,1,400,05/16/19 10:49,"503 Lincoln St, New York City, NY 10001" +198273,Bose SoundSport Headphones,1,99.99,05/16/19 10:49,"503 Lincoln St, New York City, NY 10001" +198274,AAA Batteries (4-pack),6,2.99,05/19/19 19:21,"914 9th St, San Francisco, CA 94016" +198275,Bose SoundSport Headphones,1,99.99,05/15/19 17:41,"985 10th St, Boston, MA 02215" +198276,Apple Airpods Headphones,1,150,05/17/19 10:09,"6 Spruce St, Dallas, TX 75001" +198277,34in Ultrawide Monitor,1,379.99,05/24/19 08:55,"211 1st St, Boston, MA 02215" +198278,Lightning Charging Cable,1,14.95,05/01/19 17:26,"345 Jackson St, New York City, NY 10001" +198279,USB-C Charging Cable,1,11.95,05/11/19 11:31,"782 Pine St, San Francisco, CA 94016" +198280,Apple Airpods Headphones,1,150,05/07/19 15:23,"911 Main St, Atlanta, GA 30301" +198281,Flatscreen TV,1,300,05/20/19 11:04,"333 Park St, Los Angeles, CA 90001" +198282,Lightning Charging Cable,2,14.95,05/28/19 23:39,"243 Walnut St, San Francisco, CA 94016" +198283,ThinkPad Laptop,1,999.99,05/18/19 12:33,"211 Jackson St, Seattle, WA 98101" +198284,Bose SoundSport Headphones,1,99.99,05/19/19 11:26,"892 Lakeview St, Los Angeles, CA 90001" +198285,AA Batteries (4-pack),1,3.84,05/08/19 17:46,"900 2nd St, Boston, MA 02215" +198286,USB-C Charging Cable,1,11.95,05/09/19 13:07,"569 Walnut St, San Francisco, CA 94016" +198287,USB-C Charging Cable,1,11.95,05/31/19 13:18,"820 7th St, Boston, MA 02215" +198288,34in Ultrawide Monitor,1,379.99,05/24/19 17:20,"117 Maple St, Austin, TX 73301" +198289,AA Batteries (4-pack),1,3.84,05/14/19 12:00,"620 Jackson St, San Francisco, CA 94016" +198290,20in Monitor,1,109.99,05/13/19 22:28,"103 Meadow St, Portland, OR 97035" +198291,AAA Batteries (4-pack),1,2.99,05/21/19 13:12,"784 13th St, Seattle, WA 98101" +198292,27in 4K Gaming Monitor,1,389.99,05/17/19 08:37,"439 Pine St, New York City, NY 10001" +198293,USB-C Charging Cable,1,11.95,05/18/19 16:42,"556 12th St, Los Angeles, CA 90001" +198294,27in FHD Monitor,1,149.99,05/03/19 23:48,"589 Lakeview St, New York City, NY 10001" +198295,Lightning Charging Cable,1,14.95,05/20/19 13:29,"721 Chestnut St, Los Angeles, CA 90001" +198296,USB-C Charging Cable,1,11.95,05/05/19 19:24,"452 1st St, Portland, OR 97035" +198297,Wired Headphones,1,11.99,05/07/19 10:56,"391 8th St, Austin, TX 73301" +198298,27in FHD Monitor,1,149.99,05/23/19 23:42,"624 Maple St, Atlanta, GA 30301" +198299,20in Monitor,1,109.99,05/12/19 19:44,"705 North St, Los Angeles, CA 90001" +198300,Apple Airpods Headphones,1,150,05/06/19 16:04,"337 2nd St, San Francisco, CA 94016" +198301,Wired Headphones,3,11.99,05/03/19 16:45,"337 Lincoln St, Portland, OR 97035" +198302,Apple Airpods Headphones,1,150,05/30/19 17:51,"138 North St, Dallas, TX 75001" +198303,27in 4K Gaming Monitor,1,389.99,05/18/19 19:36,"842 6th St, Boston, MA 02215" +198304,AAA Batteries (4-pack),1,2.99,05/03/19 20:26,"511 11th St, New York City, NY 10001" +198305,AA Batteries (4-pack),1,3.84,05/07/19 05:39,"191 Forest St, Dallas, TX 75001" +198306,USB-C Charging Cable,1,11.95,05/16/19 15:33,"406 Main St, San Francisco, CA 94016" +198307,34in Ultrawide Monitor,1,379.99,05/18/19 21:28,"693 Maple St, Portland, OR 97035" +198308,Flatscreen TV,1,300,05/20/19 17:45,"262 South St, San Francisco, CA 94016" +198309,Apple Airpods Headphones,1,150,05/16/19 21:02,"168 Lincoln St, Dallas, TX 75001" +198310,Wired Headphones,1,11.99,05/19/19 01:25,"569 11th St, San Francisco, CA 94016" +198311,Apple Airpods Headphones,1,150,05/31/19 17:02,"330 9th St, Los Angeles, CA 90001" +198312,Bose SoundSport Headphones,1,99.99,05/07/19 18:29,"687 Adams St, Dallas, TX 75001" +198313,Macbook Pro Laptop,1,1700,05/18/19 18:17,"331 Hill St, Austin, TX 73301" +198314,AAA Batteries (4-pack),3,2.99,05/23/19 18:16,"939 Forest St, Seattle, WA 98101" +198315,Wired Headphones,1,11.99,05/06/19 14:52,"820 Walnut St, Los Angeles, CA 90001" +198316,USB-C Charging Cable,1,11.95,05/03/19 19:23,"986 Johnson St, Austin, TX 73301" +198317,27in FHD Monitor,1,149.99,05/22/19 12:23,"194 Hill St, San Francisco, CA 94016" +198318,AA Batteries (4-pack),1,3.84,05/22/19 16:08,"337 Jackson St, Atlanta, GA 30301" +198319,Wired Headphones,1,11.99,05/27/19 17:48,"538 Pine St, Seattle, WA 98101" +198320,Lightning Charging Cable,1,14.95,05/24/19 15:28,"338 Walnut St, Dallas, TX 75001" +198321,Lightning Charging Cable,1,14.95,05/26/19 18:23,"114 1st St, San Francisco, CA 94016" +198322,AA Batteries (4-pack),1,3.84,05/02/19 19:48,"439 Lakeview St, New York City, NY 10001" +198322,USB-C Charging Cable,1,11.95,05/02/19 19:48,"439 Lakeview St, New York City, NY 10001" +198323,AA Batteries (4-pack),3,3.84,05/04/19 17:18,"949 Johnson St, Los Angeles, CA 90001" +198324,AAA Batteries (4-pack),1,2.99,05/03/19 10:11,"472 2nd St, Dallas, TX 75001" +198325,27in FHD Monitor,1,149.99,05/09/19 00:17,"861 Johnson St, Austin, TX 73301" +198326,Lightning Charging Cable,1,14.95,05/18/19 10:29,"983 5th St, New York City, NY 10001" +198327,AA Batteries (4-pack),2,3.84,05/20/19 18:14,"224 1st St, New York City, NY 10001" +198328,Wired Headphones,1,11.99,05/31/19 11:12,"808 Lincoln St, Los Angeles, CA 90001" +198329,27in FHD Monitor,1,149.99,05/16/19 08:45,"824 Forest St, Dallas, TX 75001" +198330,Wired Headphones,1,11.99,05/29/19 08:09,"444 Lakeview St, Austin, TX 73301" +198331,AA Batteries (4-pack),1,3.84,05/09/19 21:20,"176 13th St, San Francisco, CA 94016" +198332,Google Phone,1,600,05/11/19 06:00,"891 Walnut St, Los Angeles, CA 90001" +198333,Wired Headphones,1,11.99,05/25/19 14:36,"20 Chestnut St, San Francisco, CA 94016" +198334,Lightning Charging Cable,1,14.95,05/30/19 21:43,"879 Lincoln St, San Francisco, CA 94016" +198335,Apple Airpods Headphones,1,150,05/10/19 20:29,"251 Cedar St, San Francisco, CA 94016" +198336,27in 4K Gaming Monitor,1,389.99,05/13/19 08:06,"502 Ridge St, Atlanta, GA 30301" +198337,Wired Headphones,1,11.99,05/17/19 12:31,"236 9th St, Atlanta, GA 30301" +198338,Apple Airpods Headphones,1,150,05/07/19 16:16,"477 Center St, San Francisco, CA 94016" +198339,Lightning Charging Cable,1,14.95,05/01/19 13:31,"582 Ridge St, New York City, NY 10001" +198340,Macbook Pro Laptop,1,1700,05/10/19 12:09,"855 Johnson St, Los Angeles, CA 90001" +198341,Lightning Charging Cable,2,14.95,05/21/19 11:15,"297 Maple St, Boston, MA 02215" +198342,34in Ultrawide Monitor,1,379.99,05/28/19 11:01,"374 Jefferson St, San Francisco, CA 94016" +198343,iPhone,1,700,05/18/19 12:51,"700 Maple St, Boston, MA 02215" +198344,Google Phone,1,600,05/10/19 14:36,"115 North St, Los Angeles, CA 90001" +198345,AA Batteries (4-pack),2,3.84,05/24/19 15:35,"536 North St, San Francisco, CA 94016" +198346,Google Phone,1,600,05/10/19 16:36,"375 Wilson St, Boston, MA 02215" +198347,Wired Headphones,1,11.99,05/25/19 15:39,"740 Spruce St, Austin, TX 73301" +198348,27in FHD Monitor,1,149.99,05/04/19 09:25,"621 Highland St, San Francisco, CA 94016" +198349,USB-C Charging Cable,1,11.95,05/05/19 21:22,"683 Ridge St, Dallas, TX 75001" +198350,Google Phone,1,600,05/15/19 20:00,"969 Adams St, Seattle, WA 98101" +198351,AAA Batteries (4-pack),1,2.99,05/07/19 11:47,"645 Spruce St, Boston, MA 02215" +198352,iPhone,1,700,05/03/19 08:17,"669 Hickory St, Boston, MA 02215" +198353,Wired Headphones,1,11.99,05/02/19 00:00,"82 Lakeview St, Seattle, WA 98101" +198354,AA Batteries (4-pack),2,3.84,05/07/19 14:42,"367 6th St, New York City, NY 10001" +198355,Wired Headphones,1,11.99,05/27/19 12:33,"421 Hickory St, Seattle, WA 98101" +198356,AAA Batteries (4-pack),3,2.99,05/03/19 09:54,"785 Church St, San Francisco, CA 94016" +198357,AA Batteries (4-pack),1,3.84,05/21/19 14:43,"570 Sunset St, Seattle, WA 98101" +198358,USB-C Charging Cable,1,11.95,05/17/19 06:27,"597 Washington St, Boston, MA 02215" +198359,Google Phone,1,600,05/22/19 21:08,"198 Washington St, Boston, MA 02215" +198360,Apple Airpods Headphones,1,150,05/14/19 19:22,"495 Pine St, Portland, OR 97035" +198361,AA Batteries (4-pack),1,3.84,05/06/19 18:40,"119 Center St, New York City, NY 10001" +198362,Bose SoundSport Headphones,1,99.99,05/27/19 23:16,"468 12th St, Los Angeles, CA 90001" +198363,AAA Batteries (4-pack),1,2.99,05/18/19 18:03,"845 Main St, Boston, MA 02215" +198364,ThinkPad Laptop,1,999.99,05/16/19 16:19,"128 13th St, Seattle, WA 98101" +198365,34in Ultrawide Monitor,1,379.99,05/06/19 13:22,"331 Jackson St, Portland, OR 97035" +198366,Bose SoundSport Headphones,1,99.99,05/09/19 13:56,"224 Jackson St, Seattle, WA 98101" +198367,AA Batteries (4-pack),2,3.84,05/14/19 21:03,"618 Pine St, Atlanta, GA 30301" +198368,AA Batteries (4-pack),1,3.84,05/08/19 19:45,"14 Wilson St, San Francisco, CA 94016" +198369,Bose SoundSport Headphones,1,99.99,05/16/19 14:29,"202 Cherry St, San Francisco, CA 94016" +198370,AA Batteries (4-pack),1,3.84,05/15/19 20:32,"838 6th St, Atlanta, GA 30301" +198371,iPhone,1,700,05/26/19 22:21,"723 Lake St, Los Angeles, CA 90001" +198371,Lightning Charging Cable,1,14.95,05/26/19 22:21,"723 Lake St, Los Angeles, CA 90001" +198372,Bose SoundSport Headphones,1,99.99,05/13/19 16:53,"520 Main St, Boston, MA 02215" +198373,iPhone,1,700,05/10/19 07:48,"229 Hill St, Los Angeles, CA 90001" +198374,AAA Batteries (4-pack),2,2.99,05/03/19 22:37,"601 Spruce St, Dallas, TX 75001" +198375,Bose SoundSport Headphones,1,99.99,05/20/19 12:53,"383 11th St, New York City, NY 10001" +198376,USB-C Charging Cable,1,11.95,05/19/19 10:28,"70 8th St, San Francisco, CA 94016" +198377,Lightning Charging Cable,1,14.95,05/31/19 18:54,"791 7th St, Los Angeles, CA 90001" +198378,USB-C Charging Cable,1,11.95,05/13/19 20:14,"710 Main St, Portland, OR 97035" +198379,USB-C Charging Cable,1,11.95,05/16/19 21:43,"562 10th St, San Francisco, CA 94016" +198380,Lightning Charging Cable,1,14.95,05/02/19 11:41,"940 7th St, San Francisco, CA 94016" +198381,Bose SoundSport Headphones,1,99.99,05/27/19 13:04,"898 5th St, Dallas, TX 75001" +198382,Wired Headphones,1,11.99,05/24/19 10:54,"152 Pine St, Seattle, WA 98101" +198383,Wired Headphones,1,11.99,05/18/19 13:45,"411 Hill St, San Francisco, CA 94016" +198384,Lightning Charging Cable,1,14.95,05/13/19 16:18,"547 Lakeview St, New York City, NY 10001" +198385,Apple Airpods Headphones,1,150,05/26/19 10:36,"56 Dogwood St, Atlanta, GA 30301" +198386,34in Ultrawide Monitor,1,379.99,05/22/19 18:53,"360 Johnson St, San Francisco, CA 94016" +198387,Wired Headphones,1,11.99,05/18/19 05:30,"149 Spruce St, Atlanta, GA 30301" +198388,Wired Headphones,1,11.99,05/21/19 13:53,"917 4th St, Portland, OR 97035" +198389,Apple Airpods Headphones,1,150,05/13/19 20:29,"986 Jackson St, Portland, OR 97035" +198390,LG Washing Machine,1,600.0,05/14/19 16:26,"415 Sunset St, Los Angeles, CA 90001" +198391,27in FHD Monitor,1,149.99,05/14/19 08:00,"247 Jackson St, Atlanta, GA 30301" +198392,Google Phone,1,600,05/18/19 02:33,"560 1st St, New York City, NY 10001" +198392,USB-C Charging Cable,1,11.95,05/18/19 02:33,"560 1st St, New York City, NY 10001" +198393,AA Batteries (4-pack),2,3.84,05/01/19 23:28,"785 Madison St, Los Angeles, CA 90001" +198394,ThinkPad Laptop,1,999.99,05/20/19 19:31,"157 Church St, Seattle, WA 98101" +198395,Wired Headphones,1,11.99,05/02/19 11:16,"470 Ridge St, New York City, NY 10001" +198396,AAA Batteries (4-pack),3,2.99,05/15/19 15:50,"848 Cherry St, Los Angeles, CA 90001" +198397,USB-C Charging Cable,1,11.95,05/16/19 05:06,"303 Adams St, Portland, OR 97035" +198398,ThinkPad Laptop,1,999.99,05/13/19 08:38,"224 Lincoln St, New York City, NY 10001" +198399,27in FHD Monitor,1,149.99,05/15/19 19:31,"477 12th St, Boston, MA 02215" +198400,Apple Airpods Headphones,1,150,05/11/19 13:27,"31 14th St, Los Angeles, CA 90001" +198401,AAA Batteries (4-pack),1,2.99,05/04/19 21:46,"778 Wilson St, Dallas, TX 75001" +198402,LG Washing Machine,1,600.0,05/09/19 16:41,"709 Church St, Dallas, TX 75001" +198403,Flatscreen TV,1,300,05/03/19 15:58,"960 Pine St, San Francisco, CA 94016" +198404,AA Batteries (4-pack),1,3.84,05/21/19 20:36,"624 Spruce St, Los Angeles, CA 90001" +198405,AA Batteries (4-pack),1,3.84,05/17/19 13:39,"470 Meadow St, Seattle, WA 98101" +198406,Apple Airpods Headphones,1,150,05/07/19 13:19,"520 Hill St, Austin, TX 73301" +198407,USB-C Charging Cable,2,11.95,05/10/19 13:12,"361 Meadow St, San Francisco, CA 94016" +198408,27in 4K Gaming Monitor,1,389.99,05/18/19 01:54,"857 8th St, Los Angeles, CA 90001" +198409,Bose SoundSport Headphones,1,99.99,05/26/19 18:34,"730 Jefferson St, Los Angeles, CA 90001" +198410,Wired Headphones,1,11.99,05/16/19 20:45,"173 6th St, San Francisco, CA 94016" +198411,27in FHD Monitor,1,149.99,05/13/19 19:52,"300 Forest St, Los Angeles, CA 90001" +198412,Vareebadd Phone,1,400,05/22/19 16:33,"866 4th St, Dallas, TX 75001" +198413,AAA Batteries (4-pack),2,2.99,05/16/19 18:08,"699 Cherry St, Boston, MA 02215" +198414,27in FHD Monitor,1,149.99,05/18/19 18:26,"567 Highland St, Austin, TX 73301" +198415,34in Ultrawide Monitor,1,379.99,05/08/19 16:12,"858 10th St, Atlanta, GA 30301" +198416,USB-C Charging Cable,1,11.95,05/10/19 14:27,"919 Lincoln St, Dallas, TX 75001" +198417,AA Batteries (4-pack),1,3.84,05/05/19 12:01,"286 Forest St, Atlanta, GA 30301" +198418,Bose SoundSport Headphones,1,99.99,05/07/19 20:52,"69 Hickory St, Los Angeles, CA 90001" +198419,AA Batteries (4-pack),1,3.84,05/17/19 09:17,"149 Forest St, Seattle, WA 98101" +198420,Lightning Charging Cable,1,14.95,05/17/19 23:55,"451 South St, New York City, NY 10001" +198421,Lightning Charging Cable,1,14.95,05/17/19 22:54,"597 Forest St, San Francisco, CA 94016" +198422,Lightning Charging Cable,1,14.95,05/12/19 11:56,"137 6th St, Boston, MA 02215" +198423,USB-C Charging Cable,1,11.95,05/24/19 20:15,"517 12th St, Los Angeles, CA 90001" +198424,ThinkPad Laptop,1,999.99,05/15/19 13:24,"750 Chestnut St, Los Angeles, CA 90001" +198425,USB-C Charging Cable,1,11.95,05/31/19 19:08,"405 Cedar St, Portland, OR 97035" +198426,20in Monitor,1,109.99,05/28/19 20:21,"322 Hickory St, San Francisco, CA 94016" +198427,Flatscreen TV,1,300,05/06/19 21:56,"186 Spruce St, Atlanta, GA 30301" +198428,Macbook Pro Laptop,1,1700,05/09/19 14:06,"967 Center St, Boston, MA 02215" +198429,Bose SoundSport Headphones,1,99.99,05/13/19 19:40,"834 Hill St, Dallas, TX 75001" +198430,Macbook Pro Laptop,1,1700,05/11/19 10:16,"278 Washington St, Los Angeles, CA 90001" +198431,Bose SoundSport Headphones,1,99.99,05/26/19 07:54,"318 9th St, Dallas, TX 75001" +198432,ThinkPad Laptop,1,999.99,05/12/19 06:00,"425 Cedar St, Los Angeles, CA 90001" +198433,USB-C Charging Cable,1,11.95,05/09/19 19:01,"15 Elm St, Boston, MA 02215" +198434,Bose SoundSport Headphones,1,99.99,05/11/19 12:00,"837 Hill St, San Francisco, CA 94016" +198435,27in FHD Monitor,1,149.99,05/20/19 07:43,"266 11th St, Seattle, WA 98101" +198436,Bose SoundSport Headphones,1,99.99,05/15/19 10:29,"961 Adams St, San Francisco, CA 94016" +198437,USB-C Charging Cable,1,11.95,05/13/19 13:27,"947 Park St, Atlanta, GA 30301" +198438,AA Batteries (4-pack),3,3.84,05/08/19 12:17,"923 Willow St, San Francisco, CA 94016" +198439,AA Batteries (4-pack),1,3.84,05/25/19 20:29,"205 Forest St, Seattle, WA 98101" +198440,AAA Batteries (4-pack),1,2.99,05/25/19 16:19,"338 Willow St, Portland, OR 97035" +198441,27in FHD Monitor,1,149.99,05/20/19 18:54,"556 Church St, Los Angeles, CA 90001" +198442,AAA Batteries (4-pack),3,2.99,05/09/19 12:19,"77 Center St, San Francisco, CA 94016" +198443,Bose SoundSport Headphones,1,99.99,05/23/19 12:29,"828 Cherry St, San Francisco, CA 94016" +198444,Wired Headphones,2,11.99,05/03/19 10:04,"183 Johnson St, Los Angeles, CA 90001" +198445,ThinkPad Laptop,1,999.99,05/09/19 11:53,"576 Main St, Seattle, WA 98101" +198446,ThinkPad Laptop,1,999.99,05/12/19 02:33,"583 7th St, San Francisco, CA 94016" +198447,Lightning Charging Cable,1,14.95,05/07/19 19:53,"34 Lakeview St, Los Angeles, CA 90001" +198448,Vareebadd Phone,1,400,05/24/19 18:40,"266 9th St, Los Angeles, CA 90001" +198449,AA Batteries (4-pack),1,3.84,05/22/19 10:57,"940 Chestnut St, Boston, MA 02215" +198450,AA Batteries (4-pack),1,3.84,05/20/19 12:41,"386 7th St, Los Angeles, CA 90001" +198451,Lightning Charging Cable,1,14.95,05/06/19 19:57,"14 10th St, Atlanta, GA 30301" +198452,Flatscreen TV,1,300,05/10/19 16:07,"105 Pine St, Austin, TX 73301" +198453,USB-C Charging Cable,1,11.95,05/25/19 22:11,"700 Adams St, Los Angeles, CA 90001" +198454,Apple Airpods Headphones,1,150,05/19/19 13:30,"284 4th St, New York City, NY 10001" +198455,iPhone,1,700,05/21/19 12:34,"204 Cherry St, New York City, NY 10001" +198456,Google Phone,1,600,05/26/19 10:56,"158 Forest St, New York City, NY 10001" +198456,USB-C Charging Cable,1,11.95,05/26/19 10:56,"158 Forest St, New York City, NY 10001" +198457,Lightning Charging Cable,1,14.95,05/18/19 19:58,"953 Pine St, Seattle, WA 98101" +198458,34in Ultrawide Monitor,1,379.99,05/29/19 16:09,"175 13th St, New York City, NY 10001" +198459,20in Monitor,1,109.99,05/13/19 21:25,"710 8th St, San Francisco, CA 94016" +198460,Apple Airpods Headphones,1,150,05/13/19 17:51,"216 Cedar St, Los Angeles, CA 90001" +198461,Google Phone,1,600,05/08/19 18:00,"62 11th St, Dallas, TX 75001" +198462,AAA Batteries (4-pack),1,2.99,05/15/19 22:14,"812 Sunset St, New York City, NY 10001" +198463,Apple Airpods Headphones,1,150,05/19/19 13:43,"926 Sunset St, New York City, NY 10001" +198464,AAA Batteries (4-pack),1,2.99,05/07/19 21:31,"518 4th St, Atlanta, GA 30301" +198465,AA Batteries (4-pack),2,3.84,05/02/19 17:25,"724 Walnut St, Los Angeles, CA 90001" +198466,Apple Airpods Headphones,1,150,05/25/19 10:23,"499 Wilson St, San Francisco, CA 94016" +198467,USB-C Charging Cable,1,11.95,05/03/19 14:32,"119 14th St, Los Angeles, CA 90001" +198468,USB-C Charging Cable,1,11.95,05/13/19 13:24,"837 Church St, Portland, OR 97035" +198469,Apple Airpods Headphones,1,150,05/30/19 18:50,"697 Maple St, New York City, NY 10001" +198470,Bose SoundSport Headphones,1,99.99,05/07/19 19:16,"337 6th St, Los Angeles, CA 90001" +198471,Lightning Charging Cable,1,14.95,05/16/19 22:14,"154 Johnson St, Boston, MA 02215" +198472,34in Ultrawide Monitor,1,379.99,05/16/19 18:51,"788 12th St, Atlanta, GA 30301" +198473,Apple Airpods Headphones,1,150,05/24/19 22:24,"182 Sunset St, Los Angeles, CA 90001" +198474,AA Batteries (4-pack),2,3.84,05/15/19 16:21,"226 6th St, New York City, NY 10001" +198475,USB-C Charging Cable,1,11.95,05/13/19 14:57,"157 Washington St, San Francisco, CA 94016" +198476,AAA Batteries (4-pack),3,2.99,05/18/19 11:29,"767 Walnut St, Los Angeles, CA 90001" +198477,34in Ultrawide Monitor,1,379.99,05/10/19 18:44,"555 Ridge St, Seattle, WA 98101" +198478,Lightning Charging Cable,1,14.95,05/22/19 19:08,"275 Hickory St, San Francisco, CA 94016" +198479,AAA Batteries (4-pack),3,2.99,05/15/19 21:49,"533 Meadow St, Los Angeles, CA 90001" +198480,Google Phone,1,600,05/05/19 13:20,"271 Main St, Los Angeles, CA 90001" +198481,Apple Airpods Headphones,1,150,05/10/19 11:52,"107 8th St, San Francisco, CA 94016" +198482,iPhone,1,700,05/29/19 18:51,"600 6th St, New York City, NY 10001" +198483,Lightning Charging Cable,1,14.95,05/27/19 10:02,"632 Forest St, Boston, MA 02215" +198484,USB-C Charging Cable,2,11.95,05/04/19 10:48,"909 12th St, Los Angeles, CA 90001" +198485,Bose SoundSport Headphones,1,99.99,05/26/19 15:03,"838 7th St, San Francisco, CA 94016" +198486,27in FHD Monitor,1,149.99,05/17/19 16:23,"966 12th St, Dallas, TX 75001" +198487,27in FHD Monitor,1,149.99,05/20/19 11:48,"66 Hill St, San Francisco, CA 94016" +198488,Wired Headphones,1,11.99,05/03/19 11:05,"764 Johnson St, New York City, NY 10001" +198489,Apple Airpods Headphones,1,150,05/26/19 18:21,"873 5th St, San Francisco, CA 94016" +198490,Lightning Charging Cable,1,14.95,05/19/19 13:48,"769 North St, Seattle, WA 98101" +198491,Apple Airpods Headphones,1,150,05/18/19 09:51,"827 Main St, Boston, MA 02215" +198492,27in 4K Gaming Monitor,1,389.99,05/22/19 22:08,"618 South St, San Francisco, CA 94016" +198493,AA Batteries (4-pack),1,3.84,05/23/19 15:13,"361 12th St, Los Angeles, CA 90001" +198494,Macbook Pro Laptop,1,1700,05/02/19 16:09,"40 Meadow St, Seattle, WA 98101" +198495,AA Batteries (4-pack),1,3.84,05/15/19 15:26,"669 Meadow St, Dallas, TX 75001" +198495,USB-C Charging Cable,1,11.95,05/15/19 15:26,"669 Meadow St, Dallas, TX 75001" +198496,Apple Airpods Headphones,1,150,05/29/19 02:34,"607 Meadow St, Los Angeles, CA 90001" +198497,AA Batteries (4-pack),1,3.84,05/27/19 22:34,"933 Meadow St, Los Angeles, CA 90001" +198498,LG Washing Machine,1,600.0,05/07/19 12:35,"847 River St, Atlanta, GA 30301" +198499,Flatscreen TV,1,300,05/30/19 14:44,"231 1st St, Austin, TX 73301" +198500,34in Ultrawide Monitor,1,379.99,05/13/19 14:04,"98 Cherry St, Portland, ME 04101" +198501,27in 4K Gaming Monitor,1,389.99,05/29/19 11:21,"62 West St, Austin, TX 73301" +198502,Lightning Charging Cable,1,14.95,05/31/19 17:27,"827 1st St, San Francisco, CA 94016" +198503,AA Batteries (4-pack),1,3.84,05/13/19 22:08,"516 South St, Dallas, TX 75001" +198504,34in Ultrawide Monitor,1,379.99,05/09/19 21:33,"709 Washington St, Atlanta, GA 30301" +198505,AAA Batteries (4-pack),1,2.99,05/17/19 05:47,"501 Walnut St, New York City, NY 10001" +198506,Lightning Charging Cable,1,14.95,05/27/19 18:43,"461 Jefferson St, Los Angeles, CA 90001" +198507,Apple Airpods Headphones,1,150,05/04/19 20:18,"297 5th St, San Francisco, CA 94016" +198508,AAA Batteries (4-pack),2,2.99,05/27/19 07:24,"95 Center St, San Francisco, CA 94016" +198509,AA Batteries (4-pack),1,3.84,05/08/19 14:37,"128 South St, San Francisco, CA 94016" +198510,Wired Headphones,1,11.99,05/19/19 09:58,"960 Maple St, Boston, MA 02215" +198511,Bose SoundSport Headphones,1,99.99,05/10/19 10:40,"528 Forest St, San Francisco, CA 94016" +198512,Lightning Charging Cable,1,14.95,05/24/19 22:43,"72 Adams St, New York City, NY 10001" +198513,Wired Headphones,1,11.99,05/21/19 20:33,"961 River St, Los Angeles, CA 90001" +198514,Bose SoundSport Headphones,1,99.99,05/10/19 11:58,"4 4th St, San Francisco, CA 94016" +198515,AAA Batteries (4-pack),1,2.99,05/05/19 12:21,"32 11th St, Los Angeles, CA 90001" +198516,Flatscreen TV,1,300,05/23/19 02:19,"683 Park St, San Francisco, CA 94016" +198517,Apple Airpods Headphones,1,150,05/16/19 19:55,"842 Hickory St, Austin, TX 73301" +198518,Apple Airpods Headphones,1,150,05/05/19 18:00,"814 Maple St, San Francisco, CA 94016" +198519,Wired Headphones,1,11.99,05/10/19 16:54,"962 2nd St, San Francisco, CA 94016" +198520,Lightning Charging Cable,1,14.95,05/14/19 16:52,"595 Jackson St, Atlanta, GA 30301" +198521,Google Phone,1,600,05/07/19 18:33,"585 North St, San Francisco, CA 94016" +198522,Apple Airpods Headphones,1,150,05/05/19 20:37,"173 Lake St, New York City, NY 10001" +198523,USB-C Charging Cable,1,11.95,05/28/19 11:39,"857 Wilson St, San Francisco, CA 94016" +198524,AA Batteries (4-pack),1,3.84,05/12/19 10:33,"946 River St, Boston, MA 02215" +198525,AA Batteries (4-pack),1,3.84,05/17/19 19:02,"674 Main St, Seattle, WA 98101" +198526,20in Monitor,1,109.99,05/21/19 18:55,"222 Lincoln St, New York City, NY 10001" +198527,Bose SoundSport Headphones,1,99.99,05/03/19 11:59,"479 1st St, San Francisco, CA 94016" +198528,AA Batteries (4-pack),2,3.84,05/24/19 13:15,"929 River St, Atlanta, GA 30301" +198529,Google Phone,1,600,05/01/19 18:07,"332 Center St, Seattle, WA 98101" +198529,USB-C Charging Cable,1,11.95,05/01/19 18:07,"332 Center St, Seattle, WA 98101" +198530,USB-C Charging Cable,1,11.95,05/05/19 17:32,"692 Park St, Portland, ME 04101" +198531,Lightning Charging Cable,2,14.95,05/25/19 18:07,"193 Elm St, San Francisco, CA 94016" +198532,Lightning Charging Cable,1,14.95,05/27/19 17:22,"741 Pine St, Dallas, TX 75001" +198533,AAA Batteries (4-pack),1,2.99,05/09/19 21:57,"755 North St, San Francisco, CA 94016" +198534,AAA Batteries (4-pack),1,2.99,05/20/19 15:01,"798 Lakeview St, Los Angeles, CA 90001" +198535,Apple Airpods Headphones,1,150,05/02/19 12:18,"4 Cherry St, Boston, MA 02215" +198536,Bose SoundSport Headphones,1,99.99,05/22/19 17:09,"854 Lake St, Austin, TX 73301" +198537,AAA Batteries (4-pack),1,2.99,05/10/19 17:09,"978 2nd St, San Francisco, CA 94016" +198538,Apple Airpods Headphones,1,150,05/24/19 21:17,"870 7th St, Boston, MA 02215" +198539,iPhone,1,700,05/24/19 11:37,"725 Lake St, Los Angeles, CA 90001" +198540,iPhone,1,700,05/18/19 10:31,"366 5th St, New York City, NY 10001" +198541,USB-C Charging Cable,1,11.95,05/10/19 07:23,"434 Hickory St, Los Angeles, CA 90001" +198542,Flatscreen TV,1,300,05/01/19 14:52,"904 5th St, San Francisco, CA 94016" +198543,USB-C Charging Cable,1,11.95,05/18/19 13:24,"271 4th St, New York City, NY 10001" +198544,Lightning Charging Cable,1,14.95,05/23/19 06:47,"551 2nd St, Dallas, TX 75001" +198545,Flatscreen TV,1,300,05/19/19 11:55,"547 13th St, New York City, NY 10001" +198546,AA Batteries (4-pack),2,3.84,05/27/19 23:25,"711 Meadow St, Austin, TX 73301" +198547,AAA Batteries (4-pack),1,2.99,05/05/19 09:40,"310 Lakeview St, Los Angeles, CA 90001" +198548,AA Batteries (4-pack),1,3.84,05/10/19 20:27,"81 North St, Los Angeles, CA 90001" +198549,iPhone,1,700,05/23/19 20:04,"271 West St, Los Angeles, CA 90001" +198550,Apple Airpods Headphones,1,150,05/12/19 14:28,"275 Ridge St, New York City, NY 10001" +198551,AAA Batteries (4-pack),1,2.99,05/28/19 14:02,"263 Washington St, Boston, MA 02215" +198552,Wired Headphones,1,11.99,05/21/19 11:28,"575 Elm St, Seattle, WA 98101" +198553,27in FHD Monitor,1,149.99,05/30/19 12:58,"398 7th St, New York City, NY 10001" +198554,USB-C Charging Cable,1,11.95,05/20/19 22:27,"344 Spruce St, San Francisco, CA 94016" +198555,AAA Batteries (4-pack),1,2.99,05/08/19 13:49,"433 6th St, San Francisco, CA 94016" +198556,USB-C Charging Cable,2,11.95,05/12/19 19:17,"536 West St, Los Angeles, CA 90001" +198557,USB-C Charging Cable,1,11.95,05/18/19 20:56,"369 Dogwood St, Seattle, WA 98101" +198558,AAA Batteries (4-pack),1,2.99,05/22/19 22:41,"475 6th St, Boston, MA 02215" +198559,AAA Batteries (4-pack),1,2.99,05/13/19 15:52,"958 1st St, San Francisco, CA 94016" +198560,AA Batteries (4-pack),1,3.84,05/08/19 09:32,"987 Spruce St, New York City, NY 10001" +198561,20in Monitor,1,109.99,05/19/19 00:06,"419 Chestnut St, Dallas, TX 75001" +198562,Wired Headphones,1,11.99,05/27/19 13:41,"152 10th St, New York City, NY 10001" +198563,Lightning Charging Cable,1,14.95,05/01/19 21:10,"334 Washington St, Boston, MA 02215" +198564,USB-C Charging Cable,1,11.95,05/04/19 19:19,"159 Maple St, Dallas, TX 75001" +198565,AAA Batteries (4-pack),1,2.99,05/29/19 17:32,"30 Dogwood St, Austin, TX 73301" +198566,Lightning Charging Cable,1,14.95,05/29/19 16:18,"996 Walnut St, New York City, NY 10001" +198567,USB-C Charging Cable,1,11.95,05/01/19 22:47,"467 5th St, San Francisco, CA 94016" +198568,27in FHD Monitor,1,149.99,05/22/19 14:52,"966 12th St, Boston, MA 02215" +198569,27in 4K Gaming Monitor,1,389.99,05/10/19 19:31,"711 Spruce St, New York City, NY 10001" +198570,Vareebadd Phone,1,400,05/14/19 18:22,"575 Madison St, Austin, TX 73301" +198570,USB-C Charging Cable,1,11.95,05/14/19 18:22,"575 Madison St, Austin, TX 73301" +198571,Vareebadd Phone,1,400,05/12/19 23:14,"968 Sunset St, Atlanta, GA 30301" +198571,34in Ultrawide Monitor,1,379.99,05/12/19 23:14,"968 Sunset St, Atlanta, GA 30301" +198572,iPhone,1,700,05/12/19 16:44,"824 Meadow St, Portland, OR 97035" +198573,Google Phone,1,600,05/28/19 18:59,"449 Walnut St, Los Angeles, CA 90001" +198574,AAA Batteries (4-pack),2,2.99,05/14/19 14:43,"975 Hill St, San Francisco, CA 94016" +198575,Lightning Charging Cable,1,14.95,05/17/19 18:48,"748 Park St, Los Angeles, CA 90001" +198575,ThinkPad Laptop,1,999.99,05/17/19 18:48,"748 Park St, Los Angeles, CA 90001" +198576,AA Batteries (4-pack),1,3.84,05/27/19 08:34,"425 Johnson St, Boston, MA 02215" +198577,Vareebadd Phone,1,400,05/11/19 12:06,"438 13th St, Boston, MA 02215" +198577,USB-C Charging Cable,1,11.95,05/11/19 12:06,"438 13th St, Boston, MA 02215" +198578,Bose SoundSport Headphones,1,99.99,05/12/19 07:16,"633 Highland St, Portland, ME 04101" +198579,USB-C Charging Cable,1,11.95,05/23/19 00:32,"156 Center St, Atlanta, GA 30301" +198580,27in 4K Gaming Monitor,1,389.99,05/20/19 13:43,"557 Highland St, San Francisco, CA 94016" +198581,AAA Batteries (4-pack),3,2.99,05/19/19 14:32,"351 6th St, San Francisco, CA 94016" +198582,USB-C Charging Cable,1,11.95,05/20/19 18:48,"867 5th St, Austin, TX 73301" +198583,27in FHD Monitor,1,149.99,05/11/19 11:27,"26 Ridge St, Seattle, WA 98101" +198584,Wired Headphones,1,11.99,05/08/19 09:00,"9 12th St, San Francisco, CA 94016" +198585,Flatscreen TV,1,300,05/29/19 06:57,"127 Cedar St, Los Angeles, CA 90001" +198586,Wired Headphones,1,11.99,05/25/19 13:38,"300 Highland St, San Francisco, CA 94016" +198587,USB-C Charging Cable,1,11.95,05/01/19 21:08,"9 Main St, Dallas, TX 75001" +198588,USB-C Charging Cable,2,11.95,05/07/19 08:35,"205 Sunset St, Dallas, TX 75001" +198589,AAA Batteries (4-pack),1,2.99,05/11/19 15:07,"907 Madison St, San Francisco, CA 94016" +198590,Apple Airpods Headphones,1,150,05/10/19 09:47,"470 Hill St, San Francisco, CA 94016" +198591,USB-C Charging Cable,1,11.95,05/25/19 20:58,"935 Ridge St, New York City, NY 10001" +198592,Bose SoundSport Headphones,1,99.99,05/04/19 09:25,"496 River St, San Francisco, CA 94016" +198593,iPhone,1,700,05/04/19 23:20,"981 6th St, Dallas, TX 75001" +198594,20in Monitor,1,109.99,05/06/19 23:33,"751 Church St, Los Angeles, CA 90001" +198595,34in Ultrawide Monitor,1,379.99,05/12/19 23:47,"649 10th St, Dallas, TX 75001" +198596,USB-C Charging Cable,1,11.95,05/11/19 16:46,"622 Hill St, San Francisco, CA 94016" +198597,Macbook Pro Laptop,1,1700,05/07/19 11:26,"436 Forest St, New York City, NY 10001" +198598,AA Batteries (4-pack),3,3.84,05/06/19 16:53,"663 2nd St, Los Angeles, CA 90001" +198599,Bose SoundSport Headphones,1,99.99,05/06/19 00:25,"563 Adams St, Boston, MA 02215" +198600,Apple Airpods Headphones,1,150,05/25/19 09:41,"679 Spruce St, San Francisco, CA 94016" +198601,27in FHD Monitor,1,149.99,05/06/19 14:44,"694 South St, Los Angeles, CA 90001" +198602,AA Batteries (4-pack),1,3.84,05/04/19 17:52,"694 Walnut St, Los Angeles, CA 90001" +198603,ThinkPad Laptop,1,999.99,05/01/19 10:42,"658 Highland St, Boston, MA 02215" +198604,27in FHD Monitor,1,149.99,06/01/19 02:24,"99 Main St, Atlanta, GA 30301" +198605,AAA Batteries (4-pack),2,2.99,05/30/19 22:35,"948 8th St, Los Angeles, CA 90001" +198606,AAA Batteries (4-pack),1,2.99,05/07/19 13:03,"66 Spruce St, San Francisco, CA 94016" +198607,AA Batteries (4-pack),1,3.84,05/01/19 16:37,"595 2nd St, Seattle, WA 98101" +198608,AAA Batteries (4-pack),1,2.99,05/06/19 18:21,"922 Dogwood St, Boston, MA 02215" +198609,AA Batteries (4-pack),1,3.84,05/13/19 06:58,"415 Ridge St, Dallas, TX 75001" +198610,Lightning Charging Cable,1,14.95,05/30/19 16:26,"72 Cedar St, Portland, OR 97035" +198611,ThinkPad Laptop,1,999.99,05/02/19 13:58,"54 Sunset St, Atlanta, GA 30301" +198612,Bose SoundSport Headphones,1,99.99,05/04/19 18:27,"73 7th St, New York City, NY 10001" +198613,AA Batteries (4-pack),1,3.84,05/22/19 19:58,"841 Cedar St, San Francisco, CA 94016" +198614,Lightning Charging Cable,1,14.95,05/26/19 23:24,"259 5th St, Austin, TX 73301" +198615,20in Monitor,1,109.99,05/31/19 09:28,"317 8th St, New York City, NY 10001" +198616,Vareebadd Phone,1,400,05/20/19 20:04,"825 Church St, Los Angeles, CA 90001" +198617,USB-C Charging Cable,1,11.95,05/02/19 11:13,"469 West St, Los Angeles, CA 90001" +198618,AAA Batteries (4-pack),1,2.99,05/24/19 12:22,"327 Jackson St, Seattle, WA 98101" +198619,27in 4K Gaming Monitor,1,389.99,05/17/19 20:59,"134 2nd St, Los Angeles, CA 90001" +198620,Lightning Charging Cable,1,14.95,05/08/19 09:22,"503 Chestnut St, Atlanta, GA 30301" +198621,Wired Headphones,1,11.99,05/01/19 18:29,"904 West St, San Francisco, CA 94016" +198622,Macbook Pro Laptop,1,1700,05/05/19 17:31,"784 7th St, Los Angeles, CA 90001" +198623,27in FHD Monitor,1,149.99,05/25/19 06:23,"25 9th St, Boston, MA 02215" +198624,34in Ultrawide Monitor,1,379.99,05/31/19 14:06,"484 1st St, New York City, NY 10001" +198625,Lightning Charging Cable,1,14.95,05/07/19 13:52,"808 8th St, San Francisco, CA 94016" +198626,Bose SoundSport Headphones,1,99.99,05/30/19 18:36,"191 5th St, Los Angeles, CA 90001" +198627,iPhone,1,700,05/20/19 16:29,"468 Dogwood St, Los Angeles, CA 90001" +198628,Wired Headphones,2,11.99,05/18/19 21:34,"846 Pine St, Los Angeles, CA 90001" +198629,AA Batteries (4-pack),1,3.84,05/16/19 18:24,"684 Lincoln St, San Francisco, CA 94016" +198630,AA Batteries (4-pack),1,3.84,05/28/19 18:30,"717 Cherry St, San Francisco, CA 94016" +198631,ThinkPad Laptop,1,999.99,05/12/19 15:42,"32 Forest St, San Francisco, CA 94016" +198632,34in Ultrawide Monitor,1,379.99,05/31/19 21:12,"297 Wilson St, Seattle, WA 98101" +198633,Google Phone,1,600,05/29/19 10:46,"269 12th St, San Francisco, CA 94016" +198634,Google Phone,1,600,05/17/19 20:01,"723 Jackson St, Dallas, TX 75001" +198635,AAA Batteries (4-pack),1,2.99,05/12/19 18:58,"977 7th St, Los Angeles, CA 90001" +198636,Macbook Pro Laptop,1,1700,05/29/19 09:27,"401 Forest St, Atlanta, GA 30301" +198637,AA Batteries (4-pack),1,3.84,05/05/19 12:36,"262 Adams St, San Francisco, CA 94016" +198638,Google Phone,1,600,05/11/19 13:54,"785 Jefferson St, New York City, NY 10001" +198639,Macbook Pro Laptop,1,1700,05/22/19 21:56,"721 12th St, New York City, NY 10001" +198640,Lightning Charging Cable,1,14.95,05/21/19 21:17,"13 Center St, San Francisco, CA 94016" +198641,AAA Batteries (4-pack),1,2.99,05/15/19 11:16,"333 Willow St, San Francisco, CA 94016" +198642,Apple Airpods Headphones,1,150,05/29/19 11:03,"941 Park St, Boston, MA 02215" +198643,34in Ultrawide Monitor,1,379.99,05/10/19 12:19,"886 Church St, Seattle, WA 98101" +198644,34in Ultrawide Monitor,1,379.99,05/31/19 02:47,"502 Highland St, Dallas, TX 75001" +198645,AA Batteries (4-pack),1,3.84,05/19/19 02:32,"311 Meadow St, San Francisco, CA 94016" +198646,AAA Batteries (4-pack),1,2.99,05/13/19 16:47,"974 Wilson St, Seattle, WA 98101" +198647,AAA Batteries (4-pack),1,2.99,05/13/19 18:50,"654 Cherry St, New York City, NY 10001" +198648,Lightning Charging Cable,1,14.95,05/25/19 23:13,"124 Cedar St, San Francisco, CA 94016" +198649,Wired Headphones,1,11.99,06/01/19 01:24,"522 Hickory St, Boston, MA 02215" +198650,ThinkPad Laptop,1,999.99,05/20/19 13:14,"494 12th St, Portland, OR 97035" +198651,USB-C Charging Cable,1,11.95,05/21/19 09:03,"981 Dogwood St, Portland, OR 97035" +198652,USB-C Charging Cable,1,11.95,05/27/19 13:41,"79 Meadow St, San Francisco, CA 94016" +198653,Wired Headphones,1,11.99,05/29/19 10:18,"491 Ridge St, Portland, OR 97035" +198654,iPhone,1,700,05/18/19 05:05,"495 2nd St, Boston, MA 02215" +198655,Wired Headphones,2,11.99,05/25/19 09:02,"361 Cherry St, Los Angeles, CA 90001" +198656,AAA Batteries (4-pack),1,2.99,05/29/19 19:45,"788 Lincoln St, San Francisco, CA 94016" +198657,34in Ultrawide Monitor,1,379.99,05/29/19 16:13,"438 Maple St, San Francisco, CA 94016" +198658,Google Phone,1,600,05/10/19 14:13,"605 Forest St, Los Angeles, CA 90001" +198659,27in FHD Monitor,1,149.99,05/04/19 18:16,"318 Forest St, San Francisco, CA 94016" +198660,AA Batteries (4-pack),1,3.84,05/25/19 17:23,"747 7th St, Boston, MA 02215" +198661,27in FHD Monitor,1,149.99,05/17/19 22:03,"115 Chestnut St, San Francisco, CA 94016" +198661,Bose SoundSport Headphones,1,99.99,05/17/19 22:03,"115 Chestnut St, San Francisco, CA 94016" +198662,Google Phone,1,600,05/25/19 01:28,"495 11th St, New York City, NY 10001" +198663,27in 4K Gaming Monitor,1,389.99,05/18/19 15:51,"956 11th St, Los Angeles, CA 90001" +198664,Apple Airpods Headphones,1,150,05/10/19 13:57,"808 Cedar St, New York City, NY 10001" +198665,Bose SoundSport Headphones,1,99.99,05/01/19 13:42,"40 Johnson St, San Francisco, CA 94016" +198666,USB-C Charging Cable,1,11.95,05/07/19 08:27,"959 Lake St, Boston, MA 02215" +198667,AAA Batteries (4-pack),1,2.99,05/13/19 15:36,"724 Cedar St, New York City, NY 10001" +198668,34in Ultrawide Monitor,1,379.99,05/04/19 21:50,"788 Ridge St, Seattle, WA 98101" +198669,USB-C Charging Cable,1,11.95,05/16/19 07:26,"411 4th St, Boston, MA 02215" +198670,AAA Batteries (4-pack),1,2.99,05/31/19 14:10,"445 2nd St, Portland, OR 97035" +198671,Lightning Charging Cable,1,14.95,05/08/19 19:47,"421 Lincoln St, San Francisco, CA 94016" +198672,Bose SoundSport Headphones,1,99.99,05/17/19 09:06,"868 South St, Portland, OR 97035" +198673,AAA Batteries (4-pack),1,2.99,05/22/19 23:00,"74 13th St, San Francisco, CA 94016" +198674,AA Batteries (4-pack),1,3.84,05/02/19 19:26,"777 Main St, San Francisco, CA 94016" +198675,27in FHD Monitor,1,149.99,05/14/19 09:46,"175 2nd St, Boston, MA 02215" +198676,Wired Headphones,1,11.99,05/27/19 04:32,"158 8th St, New York City, NY 10001" +198677,27in FHD Monitor,1,149.99,05/16/19 17:03,"166 1st St, New York City, NY 10001" +198678,Lightning Charging Cable,1,14.95,05/19/19 08:18,"986 Maple St, San Francisco, CA 94016" +198679,Macbook Pro Laptop,1,1700,05/09/19 13:22,"903 Dogwood St, Dallas, TX 75001" +198680,Lightning Charging Cable,1,14.95,05/16/19 13:19,"516 8th St, Dallas, TX 75001" +198681,AA Batteries (4-pack),1,3.84,05/23/19 09:04,"764 13th St, Boston, MA 02215" +198682,Apple Airpods Headphones,1,150,05/08/19 13:01,"903 8th St, New York City, NY 10001" +198683,AA Batteries (4-pack),1,3.84,05/20/19 20:20,"160 Main St, San Francisco, CA 94016" +198684,27in 4K Gaming Monitor,1,389.99,05/29/19 21:40,"88 Main St, Boston, MA 02215" +198685,AA Batteries (4-pack),1,3.84,05/28/19 17:33,"265 Center St, New York City, NY 10001" +198686,AA Batteries (4-pack),1,3.84,05/28/19 12:15,"909 Highland St, San Francisco, CA 94016" +198687,USB-C Charging Cable,1,11.95,05/01/19 23:34,"466 West St, Atlanta, GA 30301" +198688,27in 4K Gaming Monitor,1,389.99,05/21/19 19:30,"168 Lincoln St, Seattle, WA 98101" +198689,Macbook Pro Laptop,1,1700,05/19/19 13:31,"290 Forest St, Portland, ME 04101" +198690,Wired Headphones,1,11.99,05/20/19 09:19,"624 Sunset St, San Francisco, CA 94016" +198691,iPhone,1,700,05/13/19 14:26,"46 11th St, San Francisco, CA 94016" +198691,Lightning Charging Cable,2,14.95,05/13/19 14:26,"46 11th St, San Francisco, CA 94016" +198692,Lightning Charging Cable,1,14.95,05/18/19 10:44,"44 Hickory St, Boston, MA 02215" +198693,USB-C Charging Cable,1,11.95,05/18/19 11:03,"125 Jackson St, Los Angeles, CA 90001" +198694,Vareebadd Phone,1,400,05/22/19 16:28,"410 Hickory St, New York City, NY 10001" +198694,Wired Headphones,1,11.99,05/22/19 16:28,"410 Hickory St, New York City, NY 10001" +198695,AAA Batteries (4-pack),1,2.99,05/25/19 16:05,"552 Ridge St, New York City, NY 10001" +198696,Bose SoundSport Headphones,1,99.99,05/16/19 17:43,"300 Washington St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +198697,USB-C Charging Cable,1,11.95,05/22/19 17:00,"196 7th St, Dallas, TX 75001" +198698,34in Ultrawide Monitor,1,379.99,05/25/19 16:44,"805 4th St, Seattle, WA 98101" +198699,LG Dryer,1,600.0,05/07/19 12:30,"430 Park St, Los Angeles, CA 90001" +198700,Bose SoundSport Headphones,1,99.99,05/24/19 12:08,"874 Maple St, New York City, NY 10001" +198701,USB-C Charging Cable,1,11.95,05/13/19 15:42,"836 13th St, San Francisco, CA 94016" +198702,Bose SoundSport Headphones,1,99.99,05/06/19 14:22,"494 8th St, San Francisco, CA 94016" +198703,27in FHD Monitor,1,149.99,05/20/19 20:20,"963 Dogwood St, San Francisco, CA 94016" +198704,Bose SoundSport Headphones,1,99.99,05/17/19 23:09,"43 Sunset St, Dallas, TX 75001" +198705,AAA Batteries (4-pack),1,2.99,05/22/19 10:29,"463 9th St, San Francisco, CA 94016" +198706,Bose SoundSport Headphones,1,99.99,05/17/19 17:14,"721 Sunset St, Dallas, TX 75001" +198707,USB-C Charging Cable,1,11.95,05/04/19 15:55,"761 Dogwood St, Boston, MA 02215" +198708,AAA Batteries (4-pack),1,2.99,05/04/19 17:31,"286 Chestnut St, Austin, TX 73301" +198709,AAA Batteries (4-pack),1,2.99,05/03/19 17:08,"546 9th St, Austin, TX 73301" +198710,AA Batteries (4-pack),2,3.84,05/16/19 12:49,"11 10th St, Los Angeles, CA 90001" +198711,AA Batteries (4-pack),1,3.84,05/21/19 00:19,"620 14th St, Los Angeles, CA 90001" +198712,Wired Headphones,1,11.99,05/30/19 09:18,"984 2nd St, Boston, MA 02215" +198713,27in FHD Monitor,1,149.99,05/13/19 12:17,"99 North St, New York City, NY 10001" +198714,27in 4K Gaming Monitor,1,389.99,05/31/19 11:11,"201 Forest St, Dallas, TX 75001" +198715,Bose SoundSport Headphones,1,99.99,05/14/19 16:54,"418 11th St, Austin, TX 73301" +198716,USB-C Charging Cable,1,11.95,05/25/19 17:51,"536 12th St, San Francisco, CA 94016" +198717,iPhone,1,700,05/04/19 12:03,"534 Jefferson St, Dallas, TX 75001" +198718,Google Phone,1,600,05/10/19 22:05,"105 Park St, Dallas, TX 75001" +198718,Wired Headphones,1,11.99,05/10/19 22:05,"105 Park St, Dallas, TX 75001" +198719,Macbook Pro Laptop,1,1700,05/11/19 12:16,"883 River St, Boston, MA 02215" +198720,Lightning Charging Cable,1,14.95,05/24/19 23:36,"332 Lincoln St, San Francisco, CA 94016" +198721,AAA Batteries (4-pack),1,2.99,05/30/19 13:59,"187 Willow St, Los Angeles, CA 90001" +198722,iPhone,1,700,05/01/19 07:47,"919 Madison St, San Francisco, CA 94016" +198723,Vareebadd Phone,1,400,05/28/19 09:43,"341 Church St, Austin, TX 73301" +198724,AA Batteries (4-pack),1,3.84,05/06/19 08:57,"904 West St, Austin, TX 73301" +198725,34in Ultrawide Monitor,1,379.99,05/15/19 08:05,"251 Willow St, Los Angeles, CA 90001" +198726,AA Batteries (4-pack),2,3.84,05/28/19 18:07,"433 Willow St, New York City, NY 10001" +198727,27in FHD Monitor,1,149.99,05/22/19 22:56,"635 Lakeview St, San Francisco, CA 94016" +198728,27in FHD Monitor,1,149.99,05/02/19 14:13,"876 Jackson St, Boston, MA 02215" +198729,AAA Batteries (4-pack),1,2.99,05/06/19 13:23,"186 11th St, Los Angeles, CA 90001" +198730,Apple Airpods Headphones,1,150,05/30/19 20:59,"291 Dogwood St, Los Angeles, CA 90001" +198731,AAA Batteries (4-pack),3,2.99,05/15/19 14:42,"323 Cherry St, Los Angeles, CA 90001" +198732,ThinkPad Laptop,1,999.99,05/09/19 15:58,"345 Chestnut St, Atlanta, GA 30301" +198733,Wired Headphones,1,11.99,05/06/19 13:18,"311 10th St, Portland, ME 04101" +198734,Lightning Charging Cable,1,14.95,05/21/19 09:24,"399 Sunset St, Atlanta, GA 30301" +198735,AA Batteries (4-pack),1,3.84,05/28/19 12:26,"790 Cedar St, Austin, TX 73301" +198736,Lightning Charging Cable,1,14.95,05/26/19 12:43,"937 Jefferson St, San Francisco, CA 94016" +198737,Macbook Pro Laptop,1,1700,05/12/19 22:30,"991 Park St, Dallas, TX 75001" +198738,AAA Batteries (4-pack),1,2.99,05/28/19 15:11,"996 Forest St, Atlanta, GA 30301" +198739,Wired Headphones,1,11.99,05/09/19 13:23,"28 Cherry St, New York City, NY 10001" +198740,Wired Headphones,1,11.99,05/21/19 12:50,"920 Jefferson St, San Francisco, CA 94016" +198741,Apple Airpods Headphones,1,150,05/12/19 09:39,"64 South St, Los Angeles, CA 90001" +198742,Wired Headphones,2,11.99,05/27/19 21:33,"359 Highland St, Los Angeles, CA 90001" +198743,Lightning Charging Cable,1,14.95,05/23/19 17:12,"59 14th St, Dallas, TX 75001" +198744,Lightning Charging Cable,1,14.95,05/10/19 05:28,"103 Jefferson St, Austin, TX 73301" +198745,Bose SoundSport Headphones,1,99.99,05/08/19 20:36,"426 Ridge St, Los Angeles, CA 90001" +198746,AA Batteries (4-pack),2,3.84,05/09/19 14:38,"234 7th St, Los Angeles, CA 90001" +198747,Apple Airpods Headphones,1,150,05/09/19 13:23,"757 Dogwood St, Seattle, WA 98101" +198748,Bose SoundSport Headphones,1,99.99,05/20/19 14:28,"813 5th St, New York City, NY 10001" +198749,USB-C Charging Cable,1,11.95,05/22/19 12:09,"304 5th St, Los Angeles, CA 90001" +198750,ThinkPad Laptop,1,999.99,05/16/19 19:33,"839 Center St, New York City, NY 10001" +198751,Lightning Charging Cable,1,14.95,05/12/19 16:38,"601 8th St, Austin, TX 73301" +198752,AAA Batteries (4-pack),3,2.99,05/06/19 00:09,"761 10th St, San Francisco, CA 94016" +198753,20in Monitor,1,109.99,05/03/19 05:20,"95 6th St, San Francisco, CA 94016" +198754,Wired Headphones,2,11.99,05/28/19 09:57,"612 Ridge St, San Francisco, CA 94016" +198755,34in Ultrawide Monitor,1,379.99,05/08/19 12:30,"383 11th St, Seattle, WA 98101" +198756,Lightning Charging Cable,2,14.95,05/19/19 22:23,"475 Jefferson St, New York City, NY 10001" +198757,Apple Airpods Headphones,1,150,05/23/19 20:17,"501 5th St, San Francisco, CA 94016" +198758,AA Batteries (4-pack),1,3.84,05/19/19 18:47,"630 9th St, Boston, MA 02215" +198759,USB-C Charging Cable,1,11.95,05/13/19 02:46,"632 Elm St, Austin, TX 73301" +198760,Google Phone,1,600,05/01/19 10:46,"674 Hickory St, Atlanta, GA 30301" +198760,Wired Headphones,1,11.99,05/01/19 10:46,"674 Hickory St, Atlanta, GA 30301" +198761,AAA Batteries (4-pack),1,2.99,05/02/19 23:13,"590 Maple St, New York City, NY 10001" +198762,Wired Headphones,1,11.99,05/09/19 10:59,"764 Meadow St, New York City, NY 10001" +198763,AAA Batteries (4-pack),1,2.99,05/09/19 21:45,"208 Sunset St, Austin, TX 73301" +198764,27in 4K Gaming Monitor,1,389.99,05/08/19 20:04,"674 Highland St, New York City, NY 10001" +198765,AAA Batteries (4-pack),1,2.99,05/13/19 12:36,"626 Johnson St, New York City, NY 10001" +198766,Lightning Charging Cable,1,14.95,05/19/19 01:02,"471 7th St, Seattle, WA 98101" +198767,USB-C Charging Cable,1,11.95,05/01/19 19:19,"254 Hickory St, Los Angeles, CA 90001" +198768,ThinkPad Laptop,1,999.99,05/04/19 09:03,"656 Wilson St, New York City, NY 10001" +198769,Flatscreen TV,1,300,05/17/19 01:13,"884 Elm St, Los Angeles, CA 90001" +198770,Lightning Charging Cable,1,14.95,05/01/19 10:52,"465 Willow St, Austin, TX 73301" +198771,AAA Batteries (4-pack),2,2.99,05/03/19 19:38,"134 5th St, San Francisco, CA 94016" +198772,AA Batteries (4-pack),1,3.84,05/21/19 05:36,"865 13th St, San Francisco, CA 94016" +198773,Apple Airpods Headphones,1,150,05/22/19 15:07,"791 1st St, Los Angeles, CA 90001" +198774,Flatscreen TV,1,300,05/08/19 19:53,"3 Lincoln St, Boston, MA 02215" +198775,20in Monitor,1,109.99,05/01/19 18:33,"653 Johnson St, Austin, TX 73301" +198776,Apple Airpods Headphones,1,150,05/19/19 10:17,"58 Hill St, Los Angeles, CA 90001" +198777,Vareebadd Phone,1,400,05/26/19 18:25,"744 Chestnut St, San Francisco, CA 94016" +198777,USB-C Charging Cable,1,11.95,05/26/19 18:25,"744 Chestnut St, San Francisco, CA 94016" +198778,Macbook Pro Laptop,1,1700,05/02/19 13:22,"639 5th St, Portland, ME 04101" +198779,AA Batteries (4-pack),1,3.84,05/22/19 11:30,"649 4th St, San Francisco, CA 94016" +198780,Lightning Charging Cable,1,14.95,05/04/19 13:17,"208 South St, Los Angeles, CA 90001" +198781,AAA Batteries (4-pack),2,2.99,05/18/19 19:59,"444 Hickory St, San Francisco, CA 94016" +198782,Google Phone,1,600,05/22/19 22:17,"931 Park St, Seattle, WA 98101" +198783,Google Phone,1,600,05/27/19 09:06,"711 Forest St, Seattle, WA 98101" +198783,USB-C Charging Cable,1,11.95,05/27/19 09:06,"711 Forest St, Seattle, WA 98101" +198784,USB-C Charging Cable,1,11.95,05/24/19 20:42,"692 Lake St, San Francisco, CA 94016" +198785,34in Ultrawide Monitor,1,379.99,05/25/19 14:53,"518 Chestnut St, Seattle, WA 98101" +198786,Wired Headphones,1,11.99,05/20/19 18:15,"93 1st St, New York City, NY 10001" +198787,AAA Batteries (4-pack),2,2.99,05/04/19 10:38,"532 North St, Atlanta, GA 30301" +198788,AAA Batteries (4-pack),1,2.99,05/05/19 12:56,"240 9th St, San Francisco, CA 94016" +198789,Wired Headphones,1,11.99,05/04/19 13:44,"366 Lakeview St, Seattle, WA 98101" +198790,iPhone,1,700,05/18/19 18:44,"510 1st St, San Francisco, CA 94016" +198791,AA Batteries (4-pack),2,3.84,05/01/19 17:27,"594 Hickory St, Los Angeles, CA 90001" +198792,AAA Batteries (4-pack),2,2.99,05/16/19 06:06,"899 Spruce St, San Francisco, CA 94016" +198793,Apple Airpods Headphones,1,150,05/12/19 19:04,"455 Cherry St, San Francisco, CA 94016" +198794,USB-C Charging Cable,1,11.95,05/24/19 18:40,"205 8th St, Austin, TX 73301" +198795,Bose SoundSport Headphones,1,99.99,05/23/19 12:01,"927 10th St, Seattle, WA 98101" +198796,AAA Batteries (4-pack),2,2.99,05/06/19 23:41,"96 Highland St, Dallas, TX 75001" +198797,USB-C Charging Cable,1,11.95,05/15/19 14:00,"778 2nd St, Los Angeles, CA 90001" +198798,Wired Headphones,1,11.99,05/21/19 18:23,"607 Lake St, Los Angeles, CA 90001" +198799,27in FHD Monitor,1,149.99,05/16/19 23:19,"619 Wilson St, Boston, MA 02215" +198800,AAA Batteries (4-pack),1,2.99,05/15/19 14:02,"574 Ridge St, San Francisco, CA 94016" +198801,Lightning Charging Cable,1,14.95,05/03/19 23:53,"596 Wilson St, Los Angeles, CA 90001" +198802,Bose SoundSport Headphones,1,99.99,05/09/19 13:00,"578 Madison St, New York City, NY 10001" +198803,AA Batteries (4-pack),1,3.84,05/18/19 14:51,"763 5th St, Los Angeles, CA 90001" +198804,USB-C Charging Cable,2,11.95,05/05/19 14:11,"608 Forest St, Seattle, WA 98101" +198805,USB-C Charging Cable,1,11.95,05/21/19 12:31,"194 Center St, San Francisco, CA 94016" +198806,Bose SoundSport Headphones,1,99.99,05/29/19 07:50,"381 River St, Austin, TX 73301" +198807,Lightning Charging Cable,1,14.95,05/09/19 14:43,"952 9th St, San Francisco, CA 94016" +198808,Wired Headphones,1,11.99,05/11/19 12:03,"958 Center St, Los Angeles, CA 90001" +198809,34in Ultrawide Monitor,1,379.99,05/17/19 23:12,"531 Maple St, San Francisco, CA 94016" +198810,34in Ultrawide Monitor,1,379.99,05/15/19 13:00,"239 Meadow St, Portland, OR 97035" +198810,Bose SoundSport Headphones,1,99.99,05/15/19 13:00,"239 Meadow St, Portland, OR 97035" +198811,Bose SoundSport Headphones,1,99.99,05/19/19 19:12,"933 9th St, Portland, OR 97035" +198812,Apple Airpods Headphones,1,150,05/18/19 20:01,"438 13th St, Dallas, TX 75001" +198813,Lightning Charging Cable,1,14.95,05/09/19 21:11,"872 South St, New York City, NY 10001" +198814,AA Batteries (4-pack),1,3.84,05/02/19 18:29,"132 Wilson St, Atlanta, GA 30301" +198815,Flatscreen TV,1,300,05/07/19 20:10,"741 8th St, Boston, MA 02215" +198816,Lightning Charging Cable,1,14.95,05/10/19 02:05,"334 6th St, San Francisco, CA 94016" +198817,USB-C Charging Cable,1,11.95,05/21/19 10:40,"955 Maple St, Portland, OR 97035" +198818,AA Batteries (4-pack),1,3.84,05/22/19 11:53,"630 14th St, Los Angeles, CA 90001" +198819,AAA Batteries (4-pack),2,2.99,05/21/19 16:43,"172 Lake St, Atlanta, GA 30301" +198820,Apple Airpods Headphones,1,150,05/16/19 16:53,"523 Washington St, San Francisco, CA 94016" +198821,Wired Headphones,1,11.99,05/20/19 13:13,"771 13th St, Seattle, WA 98101" +198822,AA Batteries (4-pack),2,3.84,05/20/19 09:20,"139 Washington St, New York City, NY 10001" +198823,Wired Headphones,1,11.99,05/19/19 20:00,"712 Walnut St, San Francisco, CA 94016" +198824,AA Batteries (4-pack),1,3.84,05/11/19 08:48,"423 Jefferson St, Atlanta, GA 30301" +198825,AAA Batteries (4-pack),1,2.99,05/19/19 14:39,"81 Church St, San Francisco, CA 94016" +198826,Apple Airpods Headphones,1,150,05/17/19 19:07,"720 Park St, Boston, MA 02215" +198827,Wired Headphones,1,11.99,05/29/19 21:09,"896 1st St, Los Angeles, CA 90001" +198828,34in Ultrawide Monitor,1,379.99,05/25/19 11:37,"894 Sunset St, Dallas, TX 75001" +198828,AA Batteries (4-pack),1,3.84,05/25/19 11:37,"894 Sunset St, Dallas, TX 75001" +198829,USB-C Charging Cable,1,11.95,05/08/19 09:49,"275 4th St, New York City, NY 10001" +198830,Wired Headphones,1,11.99,05/07/19 08:59,"524 Chestnut St, Boston, MA 02215" +198831,Lightning Charging Cable,1,14.95,05/19/19 19:50,"522 Wilson St, San Francisco, CA 94016" +198832,Apple Airpods Headphones,1,150,05/19/19 21:18,"525 Dogwood St, Boston, MA 02215" +198833,Lightning Charging Cable,1,14.95,05/21/19 16:01,"81 Elm St, San Francisco, CA 94016" +198834,Apple Airpods Headphones,1,150,05/31/19 22:29,"372 Pine St, Los Angeles, CA 90001" +198835,AA Batteries (4-pack),2,3.84,05/09/19 09:56,"725 Lake St, Seattle, WA 98101" +198836,USB-C Charging Cable,1,11.95,05/14/19 15:41,"87 Hill St, Los Angeles, CA 90001" +198837,AAA Batteries (4-pack),3,2.99,05/28/19 15:36,"839 Lakeview St, San Francisco, CA 94016" +198838,Lightning Charging Cable,1,14.95,05/24/19 03:19,"110 14th St, Portland, OR 97035" +198839,Apple Airpods Headphones,1,150,05/12/19 19:17,"962 North St, Atlanta, GA 30301" +198840,Lightning Charging Cable,1,14.95,05/04/19 09:35,"217 4th St, Dallas, TX 75001" +198841,Lightning Charging Cable,1,14.95,05/15/19 22:01,"923 Lincoln St, Dallas, TX 75001" +198842,USB-C Charging Cable,2,11.95,05/29/19 22:48,"401 Hill St, Portland, OR 97035" +198843,AAA Batteries (4-pack),3,2.99,05/10/19 01:29,"803 Jackson St, Dallas, TX 75001" +198844,Lightning Charging Cable,1,14.95,05/10/19 14:32,"171 9th St, Los Angeles, CA 90001" +198845,27in 4K Gaming Monitor,1,389.99,05/24/19 22:18,"666 Elm St, San Francisco, CA 94016" +198846,AAA Batteries (4-pack),1,2.99,05/31/19 21:56,"622 North St, Seattle, WA 98101" +198847,Wired Headphones,1,11.99,05/06/19 16:16,"232 Maple St, San Francisco, CA 94016" +198848,27in FHD Monitor,1,149.99,05/24/19 19:17,"756 Wilson St, Dallas, TX 75001" +198849,AA Batteries (4-pack),1,3.84,05/01/19 05:01,"993 West St, Atlanta, GA 30301" +198850,Wired Headphones,1,11.99,05/08/19 07:50,"322 Lake St, New York City, NY 10001" +198851,AAA Batteries (4-pack),1,2.99,05/15/19 22:28,"200 Dogwood St, Los Angeles, CA 90001" +198852,iPhone,1,700,05/25/19 14:12,"464 Washington St, New York City, NY 10001" +198853,USB-C Charging Cable,1,11.95,05/09/19 19:18,"549 Dogwood St, San Francisco, CA 94016" +198854,iPhone,1,700,05/21/19 23:15,"788 Lakeview St, Portland, OR 97035" +198855,Flatscreen TV,1,300,05/20/19 14:52,"435 River St, New York City, NY 10001" +198856,AAA Batteries (4-pack),1,2.99,05/20/19 23:18,"923 7th St, New York City, NY 10001" +198857,Vareebadd Phone,1,400,05/17/19 15:10,"296 South St, Austin, TX 73301" +198858,AA Batteries (4-pack),1,3.84,05/05/19 18:11,"427 Madison St, San Francisco, CA 94016" +198859,Flatscreen TV,1,300,05/23/19 11:18,"827 Sunset St, San Francisco, CA 94016" +198860,Lightning Charging Cable,1,14.95,05/10/19 07:56,"889 Lincoln St, New York City, NY 10001" +198861,Wired Headphones,1,11.99,05/17/19 22:22,"724 14th St, Boston, MA 02215" +198862,AA Batteries (4-pack),1,3.84,05/09/19 13:07,"601 10th St, San Francisco, CA 94016" +198863,Bose SoundSport Headphones,1,99.99,05/03/19 10:10,"739 Forest St, New York City, NY 10001" +198864,Wired Headphones,1,11.99,05/14/19 13:31,"485 Cedar St, Austin, TX 73301" +198865,AA Batteries (4-pack),1,3.84,05/22/19 05:48,"385 14th St, San Francisco, CA 94016" +198866,AA Batteries (4-pack),1,3.84,05/16/19 08:19,"453 8th St, Los Angeles, CA 90001" +198867,iPhone,1,700,05/11/19 19:06,"850 Center St, New York City, NY 10001" +198868,AAA Batteries (4-pack),2,2.99,05/04/19 11:23,"778 12th St, New York City, NY 10001" +198869,Lightning Charging Cable,1,14.95,05/15/19 18:36,"585 12th St, Atlanta, GA 30301" +198870,iPhone,1,700,05/30/19 07:39,"516 Cedar St, Atlanta, GA 30301" +198871,iPhone,1,700,05/01/19 09:38,"810 10th St, Los Angeles, CA 90001" +198872,Lightning Charging Cable,2,14.95,05/29/19 16:35,"313 Jefferson St, San Francisco, CA 94016" +198873,34in Ultrawide Monitor,1,379.99,05/03/19 03:07,"392 West St, Dallas, TX 75001" +198874,Wired Headphones,1,11.99,05/29/19 12:20,"825 Highland St, Los Angeles, CA 90001" +198875,Lightning Charging Cable,1,14.95,05/14/19 12:57,"741 8th St, Dallas, TX 75001" +198876,Macbook Pro Laptop,1,1700,05/03/19 09:13,"225 Jefferson St, Dallas, TX 75001" +198877,Google Phone,1,600,05/17/19 15:56,"529 2nd St, Portland, OR 97035" +198878,Lightning Charging Cable,1,14.95,05/08/19 21:37,"561 Johnson St, Atlanta, GA 30301" +198879,Wired Headphones,1,11.99,05/05/19 10:48,"180 Lincoln St, Los Angeles, CA 90001" +198880,AAA Batteries (4-pack),2,2.99,05/11/19 16:18,"725 Washington St, Los Angeles, CA 90001" +198881,Bose SoundSport Headphones,1,99.99,05/20/19 15:38,"661 Sunset St, San Francisco, CA 94016" +198882,Lightning Charging Cable,1,14.95,05/01/19 21:56,"461 Lincoln St, Portland, OR 97035" +198883,iPhone,1,700,05/22/19 00:00,"888 Willow St, Los Angeles, CA 90001" +198884,AAA Batteries (4-pack),1,2.99,05/21/19 21:11,"191 14th St, Seattle, WA 98101" +198885,USB-C Charging Cable,1,11.95,05/12/19 10:27,"59 6th St, New York City, NY 10001" +198886,34in Ultrawide Monitor,1,379.99,05/25/19 18:56,"104 Chestnut St, San Francisco, CA 94016" +198887,Lightning Charging Cable,1,14.95,05/04/19 12:00,"354 10th St, Seattle, WA 98101" +198888,USB-C Charging Cable,1,11.95,05/04/19 14:11,"458 Park St, Portland, OR 97035" +198889,AA Batteries (4-pack),2,3.84,05/18/19 18:39,"104 Elm St, Austin, TX 73301" +198890,Apple Airpods Headphones,1,150,05/20/19 16:42,"567 Main St, New York City, NY 10001" +198891,27in 4K Gaming Monitor,1,389.99,05/23/19 12:59,"430 Main St, Los Angeles, CA 90001" +198892,Apple Airpods Headphones,1,150,05/20/19 16:15,"532 Highland St, San Francisco, CA 94016" +198892,Lightning Charging Cable,1,14.95,05/20/19 16:15,"532 Highland St, San Francisco, CA 94016" +198893,Wired Headphones,1,11.99,05/20/19 23:01,"157 Madison St, San Francisco, CA 94016" +198894,USB-C Charging Cable,2,11.95,05/29/19 17:22,"755 Forest St, Boston, MA 02215" +198895,USB-C Charging Cable,1,11.95,05/07/19 13:19,"570 13th St, Boston, MA 02215" +198896,Bose SoundSport Headphones,1,99.99,05/19/19 11:30,"56 5th St, Dallas, TX 75001" +198897,Vareebadd Phone,1,400,05/04/19 10:01,"37 Washington St, New York City, NY 10001" +198897,USB-C Charging Cable,2,11.95,05/04/19 10:01,"37 Washington St, New York City, NY 10001" +198898,Wired Headphones,1,11.99,05/08/19 22:21,"131 Ridge St, Austin, TX 73301" +198899,Wired Headphones,1,11.99,05/01/19 23:00,"410 Forest St, San Francisco, CA 94016" +198900,Lightning Charging Cable,1,14.95,05/22/19 20:30,"20 Washington St, Seattle, WA 98101" +198901,27in FHD Monitor,1,149.99,05/05/19 12:11,"178 Ridge St, San Francisco, CA 94016" +198902,iPhone,1,700,05/30/19 08:15,"580 Church St, New York City, NY 10001" +198903,AAA Batteries (4-pack),1,2.99,05/12/19 18:30,"757 9th St, San Francisco, CA 94016" +198904,AA Batteries (4-pack),1,3.84,05/17/19 13:31,"904 Walnut St, Boston, MA 02215" +198905,Bose SoundSport Headphones,1,99.99,05/10/19 19:53,"759 South St, Dallas, TX 75001" +198906,AAA Batteries (4-pack),1,2.99,05/16/19 11:51,"617 4th St, Los Angeles, CA 90001" +198907,Apple Airpods Headphones,1,150,05/25/19 21:55,"661 13th St, Austin, TX 73301" +198908,AAA Batteries (4-pack),1,2.99,05/25/19 20:19,"527 Chestnut St, Atlanta, GA 30301" +198909,Bose SoundSport Headphones,1,99.99,05/15/19 17:28,"291 Maple St, Los Angeles, CA 90001" +198910,Lightning Charging Cable,1,14.95,05/09/19 22:33,"106 1st St, Seattle, WA 98101" +198911,AAA Batteries (4-pack),1,2.99,05/23/19 20:27,"440 Dogwood St, San Francisco, CA 94016" +198911,iPhone,1,700,05/23/19 20:27,"440 Dogwood St, San Francisco, CA 94016" +198912,AAA Batteries (4-pack),1,2.99,05/22/19 11:38,"212 Center St, Austin, TX 73301" +198913,AAA Batteries (4-pack),1,2.99,05/26/19 12:46,"106 Pine St, New York City, NY 10001" +198914,Google Phone,1,600,05/02/19 09:39,"861 Hickory St, New York City, NY 10001" +198914,USB-C Charging Cable,2,11.95,05/02/19 09:39,"861 Hickory St, New York City, NY 10001" +198915,27in FHD Monitor,1,149.99,05/06/19 10:29,"528 Ridge St, Portland, OR 97035" +198916,AAA Batteries (4-pack),2,2.99,05/07/19 10:21,"425 11th St, Portland, ME 04101" +198917,Wired Headphones,1,11.99,05/20/19 15:15,"480 Cherry St, Seattle, WA 98101" +198918,Bose SoundSport Headphones,1,99.99,05/08/19 13:25,"965 Hill St, Atlanta, GA 30301" +198919,iPhone,1,700,05/20/19 23:45,"492 9th St, San Francisco, CA 94016" +198920,34in Ultrawide Monitor,1,379.99,05/02/19 17:10,"270 Lakeview St, Seattle, WA 98101" +198921,Wired Headphones,1,11.99,05/19/19 13:19,"117 Walnut St, San Francisco, CA 94016" +198922,Lightning Charging Cable,1,14.95,05/14/19 10:48,"757 2nd St, San Francisco, CA 94016" +198923,27in 4K Gaming Monitor,1,389.99,05/23/19 19:48,"303 Hill St, Seattle, WA 98101" +198924,USB-C Charging Cable,1,11.95,05/11/19 06:53,"812 Chestnut St, Boston, MA 02215" +198925,Google Phone,1,600,05/14/19 12:51,"428 South St, San Francisco, CA 94016" +198925,USB-C Charging Cable,1,11.95,05/14/19 12:51,"428 South St, San Francisco, CA 94016" +198925,Bose SoundSport Headphones,1,99.99,05/14/19 12:51,"428 South St, San Francisco, CA 94016" +198925,Wired Headphones,1,11.99,05/14/19 12:51,"428 South St, San Francisco, CA 94016" +198926,Google Phone,1,600,05/15/19 15:17,"643 1st St, Los Angeles, CA 90001" +198927,iPhone,1,700,05/22/19 19:11,"638 Hill St, Portland, OR 97035" +198927,Lightning Charging Cable,1,14.95,05/22/19 19:11,"638 Hill St, Portland, OR 97035" +198927,Apple Airpods Headphones,1,150,05/22/19 19:11,"638 Hill St, Portland, OR 97035" +198928,Lightning Charging Cable,1,14.95,05/02/19 23:35,"239 Pine St, San Francisco, CA 94016" +198929,Apple Airpods Headphones,1,150,05/14/19 10:03,"991 Maple St, New York City, NY 10001" +198930,AA Batteries (4-pack),1,3.84,05/29/19 08:27,"786 Main St, Atlanta, GA 30301" +198931,Google Phone,1,600,05/31/19 19:11,"513 Lakeview St, Seattle, WA 98101" +198932,Bose SoundSport Headphones,1,99.99,05/19/19 16:34,"386 7th St, Dallas, TX 75001" +198933,AA Batteries (4-pack),1,3.84,05/18/19 10:21,"636 Lakeview St, Los Angeles, CA 90001" +198934,Lightning Charging Cable,1,14.95,05/30/19 23:23,"119 10th St, Dallas, TX 75001" +198935,AAA Batteries (4-pack),2,2.99,05/30/19 10:50,"720 Spruce St, Los Angeles, CA 90001" +198936,AAA Batteries (4-pack),1,2.99,05/20/19 21:27,"933 10th St, Atlanta, GA 30301" +198937,34in Ultrawide Monitor,1,379.99,05/31/19 19:09,"991 Forest St, Los Angeles, CA 90001" +198938,27in FHD Monitor,1,149.99,05/10/19 17:24,"823 Cedar St, San Francisco, CA 94016" +198939,34in Ultrawide Monitor,1,379.99,05/27/19 21:07,"953 Adams St, San Francisco, CA 94016" +198940,27in FHD Monitor,1,149.99,05/17/19 22:47,"907 Johnson St, Los Angeles, CA 90001" +198941,AA Batteries (4-pack),4,3.84,05/15/19 10:54,"842 Dogwood St, Los Angeles, CA 90001" +198942,AA Batteries (4-pack),1,3.84,05/29/19 06:12,"744 Center St, Los Angeles, CA 90001" +198942,AAA Batteries (4-pack),3,2.99,05/29/19 06:12,"744 Center St, Los Angeles, CA 90001" +198943,AA Batteries (4-pack),1,3.84,05/07/19 16:00,"837 Walnut St, San Francisco, CA 94016" +198944,USB-C Charging Cable,1,11.95,05/11/19 10:37,"971 13th St, New York City, NY 10001" +198945,Google Phone,1,600,05/20/19 19:33,"14 Forest St, San Francisco, CA 94016" +198945,Bose SoundSport Headphones,1,99.99,05/20/19 19:33,"14 Forest St, San Francisco, CA 94016" +198946,iPhone,1,700,05/22/19 22:15,"6 Jefferson St, Atlanta, GA 30301" +198947,Lightning Charging Cable,1,14.95,05/08/19 14:14,"698 Wilson St, Los Angeles, CA 90001" +198948,Apple Airpods Headphones,1,150,05/30/19 11:54,"530 14th St, Los Angeles, CA 90001" +198949,USB-C Charging Cable,1,11.95,05/19/19 21:31,"459 12th St, Los Angeles, CA 90001" +198950,Wired Headphones,1,11.99,05/08/19 00:44,"139 Park St, Portland, OR 97035" +198951,27in FHD Monitor,1,149.99,05/26/19 09:12,"110 Lake St, Dallas, TX 75001" +198952,AA Batteries (4-pack),1,3.84,05/13/19 12:30,"391 Meadow St, New York City, NY 10001" +198953,Flatscreen TV,1,300,05/08/19 13:36,"641 Adams St, New York City, NY 10001" +198954,Wired Headphones,1,11.99,05/12/19 11:59,"371 Jackson St, San Francisco, CA 94016" +198955,Lightning Charging Cable,1,14.95,05/21/19 13:42,"128 Cherry St, New York City, NY 10001" +198956,20in Monitor,1,109.99,05/12/19 14:47,"692 Lake St, Dallas, TX 75001" +198957,iPhone,1,700,05/05/19 11:51,"94 1st St, San Francisco, CA 94016" +198958,AAA Batteries (4-pack),2,2.99,05/01/19 15:38,"648 Madison St, San Francisco, CA 94016" +198959,Lightning Charging Cable,1,14.95,05/18/19 18:06,"911 Sunset St, Boston, MA 02215" +198960,Lightning Charging Cable,1,14.95,05/23/19 13:37,"686 11th St, Dallas, TX 75001" +198961,AA Batteries (4-pack),2,3.84,05/07/19 20:39,"111 Spruce St, Seattle, WA 98101" +198962,Lightning Charging Cable,1,14.95,05/29/19 11:03,"28 14th St, Seattle, WA 98101" +198963,ThinkPad Laptop,1,999.99,05/27/19 16:59,"874 11th St, New York City, NY 10001" +198964,Wired Headphones,1,11.99,05/28/19 18:38,"986 Lakeview St, San Francisco, CA 94016" +198965,Google Phone,1,600,05/06/19 21:40,"873 14th St, San Francisco, CA 94016" +198966,Apple Airpods Headphones,1,150,05/28/19 19:31,"265 Cherry St, New York City, NY 10001" +198967,AA Batteries (4-pack),1,3.84,05/28/19 08:22,"816 Washington St, New York City, NY 10001" +198968,Wired Headphones,1,11.99,05/31/19 14:25,"859 Cedar St, Los Angeles, CA 90001" +198969,AAA Batteries (4-pack),2,2.99,05/18/19 13:05,"596 5th St, San Francisco, CA 94016" +198970,Flatscreen TV,1,300,05/07/19 09:21,"620 10th St, New York City, NY 10001" +198971,USB-C Charging Cable,1,11.95,05/08/19 20:40,"724 Dogwood St, San Francisco, CA 94016" +198972,Bose SoundSport Headphones,1,99.99,05/17/19 17:45,"92 Pine St, Los Angeles, CA 90001" +198973,27in FHD Monitor,1,149.99,05/04/19 18:44,"132 Sunset St, Boston, MA 02215" +198974,USB-C Charging Cable,1,11.95,05/23/19 19:29,"55 Hill St, Boston, MA 02215" +198975,Flatscreen TV,1,300,05/31/19 12:43,"65 1st St, Boston, MA 02215" +198976,34in Ultrawide Monitor,1,379.99,05/12/19 16:26,"293 Main St, San Francisco, CA 94016" +198977,AA Batteries (4-pack),1,3.84,05/10/19 13:58,"417 Hickory St, San Francisco, CA 94016" +198978,LG Washing Machine,1,600.0,05/14/19 00:26,"952 Ridge St, Atlanta, GA 30301" +198979,AAA Batteries (4-pack),2,2.99,05/19/19 15:00,"246 Madison St, Atlanta, GA 30301" +198980,USB-C Charging Cable,1,11.95,05/04/19 19:57,"444 Dogwood St, San Francisco, CA 94016" +198981,AA Batteries (4-pack),1,3.84,05/08/19 12:22,"414 Johnson St, Seattle, WA 98101" +198982,Bose SoundSport Headphones,1,99.99,05/04/19 16:47,"607 Ridge St, Dallas, TX 75001" +198983,Bose SoundSport Headphones,1,99.99,05/24/19 12:28,"999 Park St, New York City, NY 10001" +198984,AAA Batteries (4-pack),3,2.99,05/07/19 11:29,"681 Highland St, Seattle, WA 98101" +198985,27in 4K Gaming Monitor,1,389.99,05/24/19 18:01,"835 Maple St, San Francisco, CA 94016" +198986,AAA Batteries (4-pack),2,2.99,05/23/19 13:51,"781 Park St, Portland, OR 97035" +198987,Macbook Pro Laptop,1,1700,05/12/19 05:06,"611 Church St, Boston, MA 02215" +198988,Lightning Charging Cable,1,14.95,05/08/19 10:47,"928 Cherry St, San Francisco, CA 94016" +198989,USB-C Charging Cable,1,11.95,05/30/19 12:16,"20 River St, San Francisco, CA 94016" +198990,USB-C Charging Cable,2,11.95,05/19/19 23:05,"49 Hickory St, San Francisco, CA 94016" +198991,AA Batteries (4-pack),1,3.84,05/30/19 14:32,"943 Hickory St, Atlanta, GA 30301" +198992,AAA Batteries (4-pack),1,2.99,05/27/19 22:41,"3 4th St, San Francisco, CA 94016" +198993,AA Batteries (4-pack),3,3.84,05/04/19 09:28,"273 13th St, San Francisco, CA 94016" +198994,Wired Headphones,1,11.99,05/07/19 20:36,"503 Maple St, New York City, NY 10001" +198995,USB-C Charging Cable,1,11.95,05/06/19 12:14,"45 Chestnut St, San Francisco, CA 94016" +198996,ThinkPad Laptop,1,999.99,05/04/19 13:44,"170 10th St, New York City, NY 10001" +198997,Apple Airpods Headphones,1,150,05/25/19 18:13,"755 Spruce St, San Francisco, CA 94016" +198998,AA Batteries (4-pack),1,3.84,05/11/19 12:37,"418 Lakeview St, Los Angeles, CA 90001" +198999,Macbook Pro Laptop,1,1700,05/29/19 10:53,"941 6th St, Portland, OR 97035" +199000,AAA Batteries (4-pack),1,2.99,05/28/19 16:28,"630 Chestnut St, Austin, TX 73301" +199001,AA Batteries (4-pack),1,3.84,05/16/19 07:03,"996 2nd St, San Francisco, CA 94016" +199002,USB-C Charging Cable,1,11.95,05/26/19 18:29,"587 Hill St, Atlanta, GA 30301" +199003,27in FHD Monitor,1,149.99,05/08/19 15:20,"311 12th St, Portland, OR 97035" +199004,LG Dryer,1,600.0,05/19/19 13:42,"827 Elm St, Los Angeles, CA 90001" +199005,Lightning Charging Cable,1,14.95,05/24/19 20:03,"169 Center St, Los Angeles, CA 90001" +199006,AAA Batteries (4-pack),2,2.99,05/03/19 10:32,"749 Willow St, Boston, MA 02215" +199007,USB-C Charging Cable,1,11.95,05/24/19 16:19,"675 11th St, Dallas, TX 75001" +199008,AAA Batteries (4-pack),3,2.99,05/17/19 10:52,"807 Hickory St, Boston, MA 02215" +199009,Macbook Pro Laptop,1,1700,05/18/19 10:08,"806 Lake St, San Francisco, CA 94016" +199010,27in FHD Monitor,1,149.99,05/14/19 02:07,"388 North St, Boston, MA 02215" +199011,ThinkPad Laptop,1,999.99,05/07/19 11:16,"81 Elm St, San Francisco, CA 94016" +199012,AAA Batteries (4-pack),1,2.99,05/23/19 22:24,"942 8th St, Portland, ME 04101" +199013,ThinkPad Laptop,1,999.99,05/26/19 08:58,"610 Willow St, San Francisco, CA 94016" +199014,Lightning Charging Cable,1,14.95,05/19/19 12:30,"456 Hill St, Los Angeles, CA 90001" +199015,Bose SoundSport Headphones,1,99.99,05/03/19 14:00,"260 Spruce St, San Francisco, CA 94016" +199016,AA Batteries (4-pack),1,3.84,05/20/19 23:52,"573 Forest St, San Francisco, CA 94016" +199017,AAA Batteries (4-pack),1,2.99,05/12/19 14:14,"403 9th St, Seattle, WA 98101" +199018,Google Phone,1,600,06/01/19 00:18,"51 Chestnut St, San Francisco, CA 94016" +199019,AAA Batteries (4-pack),2,2.99,05/05/19 10:24,"695 Meadow St, Los Angeles, CA 90001" +199020,Wired Headphones,1,11.99,05/05/19 22:32,"700 Johnson St, Boston, MA 02215" +199021,ThinkPad Laptop,1,999.99,05/18/19 19:16,"813 6th St, New York City, NY 10001" +199022,34in Ultrawide Monitor,1,379.99,05/07/19 23:15,"812 Dogwood St, Atlanta, GA 30301" +199023,Bose SoundSport Headphones,1,99.99,05/06/19 09:01,"331 11th St, New York City, NY 10001" +199024,Lightning Charging Cable,1,14.95,05/18/19 20:19,"402 Willow St, Los Angeles, CA 90001" +199025,iPhone,1,700,05/24/19 21:23,"104 Adams St, San Francisco, CA 94016" +199026,Bose SoundSport Headphones,1,99.99,05/15/19 16:37,"208 Hill St, Seattle, WA 98101" +199027,USB-C Charging Cable,1,11.95,05/15/19 12:12,"473 12th St, New York City, NY 10001" +199028,AAA Batteries (4-pack),1,2.99,05/09/19 22:35,"970 14th St, Dallas, TX 75001" +199029,20in Monitor,1,109.99,05/26/19 14:56,"11 Johnson St, San Francisco, CA 94016" +199030,USB-C Charging Cable,1,11.95,05/28/19 10:54,"181 1st St, Seattle, WA 98101" +199031,AAA Batteries (4-pack),1,2.99,05/15/19 18:22,"586 West St, Dallas, TX 75001" +199032,AA Batteries (4-pack),4,3.84,05/15/19 22:56,"439 Lake St, San Francisco, CA 94016" +199033,Wired Headphones,1,11.99,05/31/19 22:42,"186 Pine St, Los Angeles, CA 90001" +199034,Flatscreen TV,1,300,05/28/19 10:24,"157 9th St, Seattle, WA 98101" +199035,20in Monitor,1,109.99,05/08/19 12:55,"94 Lake St, Boston, MA 02215" +199036,iPhone,1,700,05/06/19 21:41,"469 7th St, Austin, TX 73301" +199037,AAA Batteries (4-pack),1,2.99,05/12/19 07:54,"924 4th St, Portland, ME 04101" +199038,Apple Airpods Headphones,1,150,05/31/19 13:09,"975 5th St, San Francisco, CA 94016" +199039,USB-C Charging Cable,1,11.95,05/02/19 15:48,"586 Jackson St, San Francisco, CA 94016" +199040,USB-C Charging Cable,1,11.95,05/27/19 22:02,"832 Lakeview St, Los Angeles, CA 90001" +199041,Lightning Charging Cable,1,14.95,05/25/19 00:04,"483 Pine St, San Francisco, CA 94016" +199042,20in Monitor,1,109.99,05/05/19 20:58,"841 Dogwood St, San Francisco, CA 94016" +199043,Lightning Charging Cable,1,14.95,05/06/19 11:18,"339 8th St, San Francisco, CA 94016" +199044,USB-C Charging Cable,1,11.95,05/05/19 11:18,"597 West St, Los Angeles, CA 90001" +199045,Wired Headphones,1,11.99,05/13/19 10:46,"31 Spruce St, Los Angeles, CA 90001" +199046,27in FHD Monitor,1,149.99,05/24/19 11:16,"948 1st St, San Francisco, CA 94016" +199047,Wired Headphones,1,11.99,05/09/19 00:58,"529 Maple St, Portland, OR 97035" +199048,USB-C Charging Cable,1,11.95,05/24/19 20:30,"603 Highland St, Atlanta, GA 30301" +199049,AA Batteries (4-pack),1,3.84,05/31/19 16:03,"189 Cherry St, Atlanta, GA 30301" +199050,AA Batteries (4-pack),1,3.84,05/19/19 17:40,"69 11th St, Atlanta, GA 30301" +199050,Lightning Charging Cable,1,14.95,05/19/19 17:40,"69 11th St, Atlanta, GA 30301" +199051,AA Batteries (4-pack),2,3.84,05/24/19 14:59,"958 Wilson St, New York City, NY 10001" +199052,Lightning Charging Cable,1,14.95,05/31/19 20:12,"141 Lincoln St, Los Angeles, CA 90001" +199053,Lightning Charging Cable,1,14.95,05/03/19 20:54,"301 Park St, San Francisco, CA 94016" +199054,USB-C Charging Cable,1,11.95,05/09/19 11:11,"377 14th St, Seattle, WA 98101" +199055,AAA Batteries (4-pack),1,2.99,05/24/19 20:00,"774 4th St, San Francisco, CA 94016" +199056,USB-C Charging Cable,1,11.95,05/28/19 00:53,"27 Hickory St, Atlanta, GA 30301" +199057,LG Dryer,1,600.0,05/19/19 05:11,"34 Sunset St, Portland, OR 97035" +199058,AAA Batteries (4-pack),1,2.99,05/18/19 11:34,"350 Hill St, Boston, MA 02215" +199059,Apple Airpods Headphones,1,150,05/17/19 13:55,"209 Ridge St, Boston, MA 02215" +199060,USB-C Charging Cable,1,11.95,05/03/19 13:44,"192 9th St, Dallas, TX 75001" +199061,USB-C Charging Cable,1,11.95,05/24/19 19:12,"599 8th St, Los Angeles, CA 90001" +199062,20in Monitor,1,109.99,05/08/19 19:52,"718 9th St, Austin, TX 73301" +199063,AA Batteries (4-pack),2,3.84,05/09/19 15:55,"710 Adams St, Seattle, WA 98101" +199064,USB-C Charging Cable,1,11.95,05/03/19 13:52,"943 North St, Portland, OR 97035" +199065,34in Ultrawide Monitor,1,379.99,05/20/19 11:05,"432 4th St, New York City, NY 10001" +199066,Wired Headphones,1,11.99,05/01/19 17:06,"387 South St, Dallas, TX 75001" +199067,AAA Batteries (4-pack),2,2.99,05/09/19 16:07,"645 5th St, Austin, TX 73301" +199068,Lightning Charging Cable,2,14.95,05/05/19 13:32,"883 South St, San Francisco, CA 94016" +199069,Google Phone,1,600,05/22/19 10:08,"604 Washington St, Portland, ME 04101" +199069,USB-C Charging Cable,2,11.95,05/22/19 10:08,"604 Washington St, Portland, ME 04101" +199070,Bose SoundSport Headphones,1,99.99,05/24/19 11:20,"786 14th St, San Francisco, CA 94016" +199071,AA Batteries (4-pack),1,3.84,05/11/19 02:03,"135 Sunset St, Atlanta, GA 30301" +199072,AA Batteries (4-pack),1,3.84,05/22/19 19:49,"54 North St, New York City, NY 10001" +199073,Lightning Charging Cable,1,14.95,05/04/19 23:00,"18 Lakeview St, New York City, NY 10001" +199074,AAA Batteries (4-pack),1,2.99,05/13/19 20:21,"847 6th St, Los Angeles, CA 90001" +199075,Wired Headphones,1,11.99,05/21/19 11:14,"247 Jackson St, Portland, ME 04101" +199076,Lightning Charging Cable,1,14.95,05/15/19 16:47,"285 Walnut St, New York City, NY 10001" +199077,Wired Headphones,1,11.99,05/18/19 23:58,"629 Elm St, New York City, NY 10001" +199078,Google Phone,1,600,05/25/19 18:09,"928 Main St, New York City, NY 10001" +199079,Wired Headphones,1,11.99,05/11/19 08:26,"934 Washington St, Dallas, TX 75001" +199080,Apple Airpods Headphones,1,150,05/28/19 13:38,"349 Lakeview St, Los Angeles, CA 90001" +199081,Macbook Pro Laptop,1,1700,05/26/19 13:24,"996 Cherry St, Atlanta, GA 30301" +199082,Google Phone,1,600,05/07/19 11:38,"779 Church St, Seattle, WA 98101" +199083,27in FHD Monitor,1,149.99,05/23/19 13:09,"677 Lincoln St, New York City, NY 10001" +199084,AAA Batteries (4-pack),1,2.99,05/03/19 18:25,"847 Highland St, Austin, TX 73301" +199085,AA Batteries (4-pack),1,3.84,05/28/19 19:40,"536 Pine St, Portland, ME 04101" +199086,Lightning Charging Cable,1,14.95,05/25/19 06:45,"164 Sunset St, Portland, OR 97035" +199087,34in Ultrawide Monitor,1,379.99,05/09/19 18:57,"230 Washington St, San Francisco, CA 94016" +199088,AAA Batteries (4-pack),1,2.99,05/12/19 12:58,"556 North St, San Francisco, CA 94016" +199089,27in FHD Monitor,1,149.99,05/06/19 19:19,"817 6th St, Los Angeles, CA 90001" +199090,Bose SoundSport Headphones,1,99.99,05/28/19 07:59,"25 Church St, Austin, TX 73301" +199091,Lightning Charging Cable,1,14.95,05/23/19 21:44,"878 Meadow St, Boston, MA 02215" +199092,27in FHD Monitor,1,149.99,05/22/19 19:39,"327 Johnson St, Atlanta, GA 30301" +199093,AAA Batteries (4-pack),1,2.99,05/19/19 18:51,"57 Madison St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +199094,AA Batteries (4-pack),1,3.84,05/16/19 15:25,"201 Adams St, Dallas, TX 75001" +199095,Bose SoundSport Headphones,1,99.99,05/06/19 18:19,"340 Highland St, Atlanta, GA 30301" +199096,Wired Headphones,1,11.99,05/30/19 18:59,"229 Spruce St, Los Angeles, CA 90001" +199097,Wired Headphones,1,11.99,05/15/19 12:11,"187 West St, New York City, NY 10001" +199098,20in Monitor,1,109.99,05/23/19 16:31,"600 Hill St, Boston, MA 02215" +199099,AA Batteries (4-pack),1,3.84,05/23/19 12:52,"906 Elm St, Boston, MA 02215" +199100,Vareebadd Phone,1,400,05/29/19 17:09,"852 Jefferson St, Los Angeles, CA 90001" +199101,Bose SoundSport Headphones,1,99.99,05/12/19 11:54,"350 Lincoln St, Los Angeles, CA 90001" +199102,Wired Headphones,1,11.99,05/16/19 18:03,"968 Ridge St, Austin, TX 73301" +199103,iPhone,1,700,05/29/19 12:24,"768 14th St, San Francisco, CA 94016" +199104,iPhone,1,700,05/16/19 17:51,"513 Wilson St, Portland, OR 97035" +199105,AA Batteries (4-pack),2,3.84,05/08/19 15:31,"504 Pine St, San Francisco, CA 94016" +199106,AA Batteries (4-pack),1,3.84,05/18/19 20:22,"344 West St, Los Angeles, CA 90001" +199107,AA Batteries (4-pack),2,3.84,05/03/19 21:02,"321 Center St, Atlanta, GA 30301" +199108,Apple Airpods Headphones,1,150,05/15/19 11:14,"387 10th St, Seattle, WA 98101" +199109,Google Phone,1,600,05/13/19 10:03,"206 6th St, Los Angeles, CA 90001" +199109,USB-C Charging Cable,2,11.95,05/13/19 10:03,"206 6th St, Los Angeles, CA 90001" +199110,Lightning Charging Cable,1,14.95,05/26/19 12:24,"666 Cedar St, San Francisco, CA 94016" +199111,USB-C Charging Cable,1,11.95,05/30/19 08:49,"335 South St, Los Angeles, CA 90001" +199112,27in FHD Monitor,1,149.99,05/03/19 09:16,"623 South St, Atlanta, GA 30301" +199113,Wired Headphones,1,11.99,05/19/19 10:48,"15 Forest St, Atlanta, GA 30301" +199114,AA Batteries (4-pack),1,3.84,05/04/19 11:48,"61 Elm St, San Francisco, CA 94016" +199115,AAA Batteries (4-pack),2,2.99,05/23/19 18:30,"175 12th St, Boston, MA 02215" +199116,Wired Headphones,1,11.99,05/11/19 15:50,"447 Chestnut St, New York City, NY 10001" +199117,AAA Batteries (4-pack),1,2.99,05/06/19 09:23,"772 12th St, Boston, MA 02215" +199118,USB-C Charging Cable,1,11.95,05/23/19 11:32,"517 Washington St, San Francisco, CA 94016" +199119,34in Ultrawide Monitor,1,379.99,05/11/19 18:55,"82 Sunset St, New York City, NY 10001" +199120,Lightning Charging Cable,1,14.95,05/28/19 06:36,"899 Ridge St, Dallas, TX 75001" +199121,Wired Headphones,1,11.99,05/14/19 14:32,"610 South St, Portland, OR 97035" +199122,AAA Batteries (4-pack),2,2.99,05/27/19 11:12,"804 Forest St, Atlanta, GA 30301" +199123,AAA Batteries (4-pack),2,2.99,05/16/19 16:31,"532 Maple St, Atlanta, GA 30301" +199124,34in Ultrawide Monitor,1,379.99,05/02/19 13:43,"579 Washington St, San Francisco, CA 94016" +199125,Wired Headphones,1,11.99,05/07/19 10:35,"730 Cherry St, Boston, MA 02215" +199126,Google Phone,1,600,05/24/19 17:26,"125 10th St, Atlanta, GA 30301" +199127,USB-C Charging Cable,1,11.95,05/24/19 19:17,"586 10th St, Boston, MA 02215" +199128,Lightning Charging Cable,1,14.95,05/15/19 10:51,"378 Maple St, Portland, OR 97035" +199129,AAA Batteries (4-pack),1,2.99,05/06/19 12:12,"295 Cherry St, Boston, MA 02215" +199130,20in Monitor,1,109.99,05/08/19 09:21,"952 6th St, Atlanta, GA 30301" +199131,Vareebadd Phone,1,400,05/10/19 09:48,"666 Madison St, Boston, MA 02215" +199132,USB-C Charging Cable,1,11.95,05/26/19 23:30,"324 Pine St, San Francisco, CA 94016" +199133,Flatscreen TV,1,300,05/10/19 12:34,"318 Hickory St, Los Angeles, CA 90001" +199134,Lightning Charging Cable,1,14.95,05/20/19 15:01,"219 Johnson St, San Francisco, CA 94016" +199135,Wired Headphones,1,11.99,05/24/19 15:58,"374 Highland St, Dallas, TX 75001" +199136,Wired Headphones,1,11.99,05/01/19 10:40,"457 Cherry St, New York City, NY 10001" +199137,Lightning Charging Cable,1,14.95,05/27/19 11:38,"237 12th St, San Francisco, CA 94016" +199138,USB-C Charging Cable,1,11.95,05/01/19 10:20,"387 Forest St, Los Angeles, CA 90001" +199139,Macbook Pro Laptop,1,1700,05/15/19 08:23,"3 Meadow St, Dallas, TX 75001" +199140,USB-C Charging Cable,1,11.95,05/20/19 10:39,"791 10th St, Los Angeles, CA 90001" +199141,Macbook Pro Laptop,1,1700,05/13/19 09:30,"307 5th St, Los Angeles, CA 90001" +199142,Bose SoundSport Headphones,1,99.99,05/30/19 19:02,"95 Wilson St, San Francisco, CA 94016" +199143,USB-C Charging Cable,1,11.95,05/16/19 15:20,"693 Jefferson St, Los Angeles, CA 90001" +199144,Wired Headphones,1,11.99,05/29/19 20:26,"811 Wilson St, Los Angeles, CA 90001" +199145,Wired Headphones,1,11.99,05/25/19 20:34,"957 14th St, Boston, MA 02215" +199146,Google Phone,1,600,05/11/19 20:30,"463 Cedar St, San Francisco, CA 94016" +199147,Bose SoundSport Headphones,1,99.99,05/02/19 22:25,"274 Ridge St, New York City, NY 10001" +199148,Google Phone,1,600,05/09/19 14:10,"339 9th St, Dallas, TX 75001" +199149,Apple Airpods Headphones,1,150,05/05/19 14:54,"881 Adams St, Portland, OR 97035" +199150,USB-C Charging Cable,1,11.95,05/09/19 21:06,"619 10th St, Atlanta, GA 30301" +199151,ThinkPad Laptop,1,999.99,05/10/19 16:59,"677 9th St, Seattle, WA 98101" +199152,AA Batteries (4-pack),1,3.84,05/05/19 08:16,"385 Wilson St, Seattle, WA 98101" +199153,Bose SoundSport Headphones,1,99.99,05/31/19 19:51,"95 Cedar St, San Francisco, CA 94016" +199154,Macbook Pro Laptop,1,1700,05/04/19 20:30,"726 12th St, San Francisco, CA 94016" +199155,AAA Batteries (4-pack),1,2.99,05/14/19 15:04,"794 Main St, Dallas, TX 75001" +199156,Wired Headphones,1,11.99,05/08/19 22:45,"698 4th St, Dallas, TX 75001" +199157,USB-C Charging Cable,1,11.95,05/11/19 00:06,"516 Spruce St, Austin, TX 73301" +199158,Google Phone,1,600,05/06/19 14:35,"313 Meadow St, Boston, MA 02215" +199159,iPhone,1,700,05/07/19 11:11,"785 Lake St, Seattle, WA 98101" +199160,20in Monitor,1,109.99,05/20/19 12:23,"606 Jackson St, Portland, ME 04101" +199161,Apple Airpods Headphones,1,150,05/05/19 19:26,"825 South St, San Francisco, CA 94016" +199162,Bose SoundSport Headphones,1,99.99,05/04/19 07:01,"118 Meadow St, Portland, OR 97035" +199163,Lightning Charging Cable,1,14.95,05/20/19 15:58,"904 Cherry St, San Francisco, CA 94016" +199164,AA Batteries (4-pack),1,3.84,05/07/19 16:17,"304 Jefferson St, Portland, OR 97035" +199165,Lightning Charging Cable,1,14.95,05/26/19 15:22,"180 1st St, San Francisco, CA 94016" +199166,Google Phone,1,600,05/25/19 20:57,"846 River St, Atlanta, GA 30301" +199167,AA Batteries (4-pack),1,3.84,05/14/19 07:49,"16 Maple St, Atlanta, GA 30301" +199168,Wired Headphones,1,11.99,05/21/19 16:00,"443 Elm St, Boston, MA 02215" +199169,Lightning Charging Cable,1,14.95,05/15/19 09:14,"944 7th St, Boston, MA 02215" +199170,27in FHD Monitor,1,149.99,05/12/19 10:24,"312 Adams St, New York City, NY 10001" +199171,Lightning Charging Cable,1,14.95,05/11/19 15:47,"755 Maple St, Austin, TX 73301" +199172,Lightning Charging Cable,1,14.95,05/12/19 23:46,"961 8th St, Dallas, TX 75001" +199173,Wired Headphones,2,11.99,05/07/19 21:37,"401 11th St, Atlanta, GA 30301" +199174,AAA Batteries (4-pack),1,2.99,05/16/19 20:51,"251 10th St, New York City, NY 10001" +199175,27in FHD Monitor,1,149.99,05/19/19 19:20,"398 Center St, Boston, MA 02215" +199176,AAA Batteries (4-pack),3,2.99,05/05/19 21:46,"324 10th St, Boston, MA 02215" +199177,iPhone,1,700,05/02/19 17:03,"951 Washington St, Los Angeles, CA 90001" +199178,Vareebadd Phone,1,400,05/17/19 21:30,"869 Meadow St, San Francisco, CA 94016" +199179,Lightning Charging Cable,1,14.95,05/20/19 19:48,"65 Park St, Boston, MA 02215" +199180,Apple Airpods Headphones,1,150,05/25/19 09:12,"243 Dogwood St, Seattle, WA 98101" +199180,34in Ultrawide Monitor,1,379.99,05/25/19 09:12,"243 Dogwood St, Seattle, WA 98101" +199181,AAA Batteries (4-pack),2,2.99,05/08/19 13:56,"139 Ridge St, Los Angeles, CA 90001" +199182,20in Monitor,1,109.99,05/20/19 19:10,"114 Pine St, Seattle, WA 98101" +199183,AA Batteries (4-pack),2,3.84,05/26/19 19:45,"115 Wilson St, San Francisco, CA 94016" +199184,34in Ultrawide Monitor,1,379.99,05/13/19 08:50,"205 River St, Portland, OR 97035" +199185,Google Phone,1,600,05/15/19 20:50,"529 River St, Dallas, TX 75001" +199186,AAA Batteries (4-pack),1,2.99,05/03/19 18:53,"316 River St, San Francisco, CA 94016" +199186,AA Batteries (4-pack),1,3.84,05/03/19 18:53,"316 River St, San Francisco, CA 94016" +199187,AAA Batteries (4-pack),1,2.99,05/06/19 18:51,"16 Spruce St, Seattle, WA 98101" +199188,Macbook Pro Laptop,1,1700,05/11/19 08:04,"332 Walnut St, Seattle, WA 98101" +199189,27in 4K Gaming Monitor,1,389.99,05/26/19 20:04,"244 River St, Los Angeles, CA 90001" +199190,Apple Airpods Headphones,1,150,05/03/19 15:13,"791 9th St, Boston, MA 02215" +199191,Macbook Pro Laptop,1,1700,05/05/19 22:21,"674 Meadow St, Los Angeles, CA 90001" +199192,AA Batteries (4-pack),1,3.84,05/28/19 13:14,"333 Lakeview St, San Francisco, CA 94016" +199193,34in Ultrawide Monitor,1,379.99,05/12/19 12:22,"874 6th St, Los Angeles, CA 90001" +199194,Macbook Pro Laptop,1,1700,05/15/19 17:03,"914 11th St, Dallas, TX 75001" +199195,Lightning Charging Cable,1,14.95,05/19/19 17:51,"243 Hill St, Portland, OR 97035" +199196,AAA Batteries (4-pack),1,2.99,05/10/19 07:33,"277 1st St, New York City, NY 10001" +199197,27in FHD Monitor,1,149.99,05/16/19 09:57,"280 13th St, Portland, OR 97035" +199198,AA Batteries (4-pack),1,3.84,05/03/19 17:28,"189 Sunset St, New York City, NY 10001" +199199,Lightning Charging Cable,1,14.95,05/29/19 17:28,"389 Sunset St, San Francisco, CA 94016" +199200,AA Batteries (4-pack),1,3.84,05/26/19 11:31,"501 Pine St, Boston, MA 02215" +199201,LG Dryer,1,600.0,05/01/19 22:39,"954 South St, San Francisco, CA 94016" +199202,34in Ultrawide Monitor,1,379.99,05/31/19 23:51,"489 Park St, San Francisco, CA 94016" +199203,Wired Headphones,1,11.99,05/29/19 07:04,"127 Jackson St, Dallas, TX 75001" +199204,iPhone,1,700,05/01/19 18:38,"459 14th St, Los Angeles, CA 90001" +199204,Wired Headphones,1,11.99,05/01/19 18:38,"459 14th St, Los Angeles, CA 90001" +199205,AA Batteries (4-pack),1,3.84,05/03/19 14:48,"107 14th St, San Francisco, CA 94016" +199206,AAA Batteries (4-pack),1,2.99,05/12/19 09:08,"242 Main St, Los Angeles, CA 90001" +199207,AA Batteries (4-pack),1,3.84,05/27/19 15:47,"953 9th St, San Francisco, CA 94016" +199208,ThinkPad Laptop,1,999.99,05/10/19 07:43,"218 Elm St, Dallas, TX 75001" +199209,Apple Airpods Headphones,1,150,05/15/19 14:47,"924 Cedar St, Boston, MA 02215" +199210,AA Batteries (4-pack),2,3.84,05/20/19 19:38,"359 12th St, Atlanta, GA 30301" +199211,iPhone,1,700,05/15/19 20:50,"103 8th St, Los Angeles, CA 90001" +199212,iPhone,1,700,05/06/19 21:21,"125 South St, Dallas, TX 75001" +199213,Apple Airpods Headphones,1,150,05/15/19 07:04,"545 Jackson St, San Francisco, CA 94016" +199214,Flatscreen TV,1,300,05/19/19 15:58,"953 1st St, Dallas, TX 75001" +199215,20in Monitor,1,109.99,05/24/19 17:49,"385 12th St, Los Angeles, CA 90001" +199216,Vareebadd Phone,1,400,05/05/19 15:56,"798 Wilson St, San Francisco, CA 94016" +199216,USB-C Charging Cable,1,11.95,05/05/19 15:56,"798 Wilson St, San Francisco, CA 94016" +199217,Wired Headphones,1,11.99,05/06/19 08:34,"761 Hickory St, Los Angeles, CA 90001" +199218,Apple Airpods Headphones,1,150,05/19/19 11:02,"207 14th St, New York City, NY 10001" +199219,AA Batteries (4-pack),2,3.84,05/07/19 18:41,"59 Sunset St, Seattle, WA 98101" +199220,Lightning Charging Cable,1,14.95,05/10/19 10:34,"371 1st St, New York City, NY 10001" +199221,Lightning Charging Cable,1,14.95,05/05/19 08:49,"430 1st St, San Francisco, CA 94016" +199222,iPhone,1,700,05/15/19 18:36,"698 11th St, San Francisco, CA 94016" +199223,Wired Headphones,1,11.99,05/11/19 23:11,"484 11th St, Atlanta, GA 30301" +199224,Apple Airpods Headphones,1,150,05/02/19 15:57,"543 Cherry St, New York City, NY 10001" +199225,34in Ultrawide Monitor,1,379.99,05/22/19 12:07,"826 1st St, New York City, NY 10001" +199226,Lightning Charging Cable,1,14.95,05/01/19 15:09,"287 Pine St, San Francisco, CA 94016" +199227,Wired Headphones,1,11.99,05/09/19 23:00,"612 Ridge St, New York City, NY 10001" +199228,27in FHD Monitor,1,149.99,05/16/19 13:09,"278 Center St, Dallas, TX 75001" +199229,USB-C Charging Cable,1,11.95,05/12/19 15:55,"913 West St, Portland, OR 97035" +199230,Macbook Pro Laptop,1,1700,05/08/19 13:33,"561 Forest St, Boston, MA 02215" +199231,20in Monitor,1,109.99,05/05/19 15:08,"141 Jackson St, New York City, NY 10001" +199232,iPhone,1,700,05/04/19 20:42,"464 Cherry St, New York City, NY 10001" +199233,34in Ultrawide Monitor,1,379.99,05/15/19 16:30,"266 Adams St, Dallas, TX 75001" +199234,iPhone,1,700,05/27/19 17:26,"65 Jackson St, San Francisco, CA 94016" +199235,iPhone,1,700,05/29/19 13:07,"769 11th St, New York City, NY 10001" +199236,AA Batteries (4-pack),1,3.84,05/31/19 19:09,"28 Wilson St, San Francisco, CA 94016" +199237,AA Batteries (4-pack),1,3.84,05/17/19 19:16,"73 Madison St, Atlanta, GA 30301" +199238,USB-C Charging Cable,1,11.95,05/21/19 19:32,"237 11th St, New York City, NY 10001" +199239,Wired Headphones,1,11.99,05/30/19 20:51,"155 Ridge St, Austin, TX 73301" +199240,ThinkPad Laptop,1,999.99,05/22/19 08:20,"922 North St, New York City, NY 10001" +199241,Bose SoundSport Headphones,1,99.99,05/22/19 21:12,"614 Maple St, Seattle, WA 98101" +199242,Macbook Pro Laptop,1,1700,05/31/19 20:28,"855 9th St, Austin, TX 73301" +199243,USB-C Charging Cable,1,11.95,05/15/19 21:53,"669 Center St, Los Angeles, CA 90001" +199243,AA Batteries (4-pack),1,3.84,05/15/19 21:53,"669 Center St, Los Angeles, CA 90001" +199244,AA Batteries (4-pack),2,3.84,05/16/19 23:28,"216 Sunset St, San Francisco, CA 94016" +199245,Google Phone,1,600,05/01/19 22:21,"771 Maple St, Los Angeles, CA 90001" +199246,USB-C Charging Cable,1,11.95,05/29/19 21:30,"249 Chestnut St, Los Angeles, CA 90001" +199247,AA Batteries (4-pack),1,3.84,05/14/19 21:53,"341 Jefferson St, Los Angeles, CA 90001" +199248,20in Monitor,1,109.99,05/08/19 23:03,"544 14th St, New York City, NY 10001" +199249,20in Monitor,1,109.99,05/16/19 17:25,"758 4th St, Portland, OR 97035" +199250,AA Batteries (4-pack),2,3.84,05/29/19 01:20,"893 Lake St, Los Angeles, CA 90001" +199251,Wired Headphones,1,11.99,05/06/19 01:59,"135 Hill St, Los Angeles, CA 90001" +199252,27in FHD Monitor,1,149.99,05/30/19 14:35,"143 Cherry St, Austin, TX 73301" +199253,AAA Batteries (4-pack),1,2.99,05/18/19 15:25,"260 Lake St, Seattle, WA 98101" +199254,27in FHD Monitor,1,149.99,05/23/19 07:21,"587 13th St, San Francisco, CA 94016" +199255,Vareebadd Phone,1,400,05/11/19 20:33,"443 13th St, Dallas, TX 75001" +199255,USB-C Charging Cable,1,11.95,05/11/19 20:33,"443 13th St, Dallas, TX 75001" +199256,AA Batteries (4-pack),2,3.84,05/14/19 16:04,"92 Highland St, Atlanta, GA 30301" +199256,USB-C Charging Cable,1,11.95,05/14/19 16:04,"92 Highland St, Atlanta, GA 30301" +199257,Bose SoundSport Headphones,1,99.99,05/27/19 14:40,"305 11th St, New York City, NY 10001" +199258,Flatscreen TV,1,300,05/29/19 18:58,"862 Center St, Los Angeles, CA 90001" +199259,27in 4K Gaming Monitor,1,389.99,05/28/19 21:12,"935 14th St, San Francisco, CA 94016" +199260,AAA Batteries (4-pack),1,2.99,05/06/19 12:07,"329 West St, Seattle, WA 98101" +199261,34in Ultrawide Monitor,1,379.99,05/08/19 08:04,"791 Spruce St, San Francisco, CA 94016" +199262,Lightning Charging Cable,1,14.95,05/18/19 09:10,"798 Dogwood St, San Francisco, CA 94016" +199263,AA Batteries (4-pack),1,3.84,05/06/19 21:55,"736 Madison St, Dallas, TX 75001" +199264,Wired Headphones,1,11.99,05/01/19 20:19,"377 Cedar St, Atlanta, GA 30301" +199265,AA Batteries (4-pack),1,3.84,05/16/19 10:31,"637 10th St, San Francisco, CA 94016" +199266,Apple Airpods Headphones,1,150,05/23/19 07:15,"796 Madison St, Boston, MA 02215" +199267,Lightning Charging Cable,1,14.95,05/17/19 06:20,"742 1st St, Portland, ME 04101" +199268,27in 4K Gaming Monitor,1,389.99,05/19/19 08:12,"565 14th St, San Francisco, CA 94016" +199269,Wired Headphones,1,11.99,05/20/19 15:42,"347 Maple St, Atlanta, GA 30301" +199270,Lightning Charging Cable,1,14.95,05/01/19 20:11,"800 Jefferson St, San Francisco, CA 94016" +199271,Lightning Charging Cable,1,14.95,05/15/19 01:55,"83 Walnut St, Boston, MA 02215" +199272,AA Batteries (4-pack),1,3.84,05/07/19 11:10,"871 Cedar St, Atlanta, GA 30301" +199273,AAA Batteries (4-pack),1,2.99,05/08/19 12:54,"944 Adams St, Austin, TX 73301" +199274,Flatscreen TV,1,300,05/20/19 09:35,"145 Park St, Boston, MA 02215" +199275,Lightning Charging Cable,1,14.95,05/11/19 22:27,"918 6th St, Austin, TX 73301" +199276,AA Batteries (4-pack),2,3.84,05/13/19 10:55,"236 Jefferson St, Portland, OR 97035" +199277,Apple Airpods Headphones,1,150,05/11/19 13:01,"761 Jackson St, San Francisco, CA 94016" +199278,AAA Batteries (4-pack),1,2.99,05/05/19 19:38,"669 Lake St, Los Angeles, CA 90001" +199279,34in Ultrawide Monitor,1,379.99,05/18/19 20:50,"230 Spruce St, San Francisco, CA 94016" +199280,Lightning Charging Cable,1,14.95,05/18/19 07:50,"340 Chestnut St, Boston, MA 02215" +199281,Apple Airpods Headphones,1,150,05/24/19 11:22,"814 Madison St, Los Angeles, CA 90001" +199282,27in FHD Monitor,1,149.99,05/22/19 08:09,"882 Park St, San Francisco, CA 94016" +199283,USB-C Charging Cable,1,11.95,05/28/19 22:30,"956 Chestnut St, Los Angeles, CA 90001" +199284,Bose SoundSport Headphones,1,99.99,05/22/19 13:26,"965 North St, New York City, NY 10001" +199285,Apple Airpods Headphones,1,150,05/09/19 01:46,"478 Johnson St, San Francisco, CA 94016" +199286,Lightning Charging Cable,1,14.95,05/09/19 22:19,"381 5th St, Los Angeles, CA 90001" +199287,Flatscreen TV,1,300,05/30/19 13:22,"839 Lake St, Los Angeles, CA 90001" +199288,AA Batteries (4-pack),1,3.84,05/16/19 22:25,"547 Spruce St, New York City, NY 10001" +199289,USB-C Charging Cable,1,11.95,05/17/19 14:39,"525 Chestnut St, San Francisco, CA 94016" +199290,ThinkPad Laptop,1,999.99,05/09/19 18:04,"246 Pine St, San Francisco, CA 94016" +199291,AA Batteries (4-pack),1,3.84,05/22/19 07:17,"818 14th St, San Francisco, CA 94016" +199292,20in Monitor,1,109.99,05/11/19 07:40,"207 Adams St, San Francisco, CA 94016" +199293,34in Ultrawide Monitor,1,379.99,05/07/19 08:08,"660 Spruce St, San Francisco, CA 94016" +199294,AAA Batteries (4-pack),1,2.99,05/19/19 10:42,"853 Jackson St, Portland, OR 97035" +199295,Vareebadd Phone,1,400,05/25/19 13:37,"776 Cherry St, San Francisco, CA 94016" +199296,Bose SoundSport Headphones,1,99.99,05/24/19 20:25,"196 Park St, Boston, MA 02215" +199297,AA Batteries (4-pack),1,3.84,05/06/19 19:32,"747 Cedar St, San Francisco, CA 94016" +199298,20in Monitor,1,109.99,05/25/19 11:03,"132 Cedar St, New York City, NY 10001" +199299,AAA Batteries (4-pack),4,2.99,05/14/19 19:59,"427 Maple St, Seattle, WA 98101" +199300,Wired Headphones,1,11.99,05/05/19 17:40,"459 Ridge St, Los Angeles, CA 90001" +199301,AAA Batteries (4-pack),2,2.99,05/18/19 11:28,"6 Adams St, San Francisco, CA 94016" +199302,AA Batteries (4-pack),2,3.84,05/11/19 09:15,"256 Jefferson St, San Francisco, CA 94016" +199303,iPhone,1,700,05/14/19 09:46,"956 Walnut St, Austin, TX 73301" +199303,Lightning Charging Cable,1,14.95,05/14/19 09:46,"956 Walnut St, Austin, TX 73301" +199303,Apple Airpods Headphones,1,150,05/14/19 09:46,"956 Walnut St, Austin, TX 73301" +199304,AA Batteries (4-pack),1,3.84,05/11/19 09:12,"786 Spruce St, Los Angeles, CA 90001" +199305,AA Batteries (4-pack),1,3.84,05/25/19 11:07,"976 6th St, Los Angeles, CA 90001" +199306,Flatscreen TV,1,300,05/14/19 21:18,"455 9th St, Boston, MA 02215" +199307,iPhone,1,700,05/06/19 16:31,"838 Willow St, Los Angeles, CA 90001" +199308,ThinkPad Laptop,1,999.99,05/28/19 16:43,"932 11th St, San Francisco, CA 94016" +199309,Wired Headphones,1,11.99,05/24/19 13:46,"763 Elm St, San Francisco, CA 94016" +199310,Apple Airpods Headphones,1,150,05/17/19 14:40,"498 Center St, Los Angeles, CA 90001" +199311,Flatscreen TV,1,300,05/27/19 10:43,"166 Elm St, San Francisco, CA 94016" +199312,27in FHD Monitor,1,149.99,05/13/19 19:59,"203 Spruce St, Boston, MA 02215" +199313,AA Batteries (4-pack),1,3.84,05/20/19 18:26,"151 Jefferson St, Atlanta, GA 30301" +199314,AA Batteries (4-pack),1,3.84,05/28/19 12:48,"628 Forest St, Portland, OR 97035" +199315,Lightning Charging Cable,1,14.95,05/08/19 22:32,"138 Center St, Atlanta, GA 30301" +199316,Bose SoundSport Headphones,1,99.99,05/01/19 16:03,"2 Willow St, Boston, MA 02215" +199317,Macbook Pro Laptop,1,1700,05/30/19 12:23,"178 Madison St, Dallas, TX 75001" +199318,Lightning Charging Cable,1,14.95,05/27/19 16:02,"342 Jefferson St, Portland, OR 97035" +199319,27in FHD Monitor,1,149.99,05/07/19 15:25,"752 Lakeview St, Los Angeles, CA 90001" +199320,Vareebadd Phone,1,400,05/18/19 19:44,"993 11th St, Los Angeles, CA 90001" +199320,Wired Headphones,1,11.99,05/18/19 19:44,"993 11th St, Los Angeles, CA 90001" +199321,Bose SoundSport Headphones,1,99.99,05/28/19 20:45,"999 River St, Los Angeles, CA 90001" +199322,Wired Headphones,1,11.99,05/05/19 13:09,"797 Lakeview St, Los Angeles, CA 90001" +199323,Wired Headphones,1,11.99,05/03/19 20:34,"365 10th St, San Francisco, CA 94016" +199324,USB-C Charging Cable,1,11.95,05/20/19 03:04,"723 1st St, Boston, MA 02215" +199325,Apple Airpods Headphones,1,150,05/18/19 12:59,"623 10th St, Atlanta, GA 30301" +199326,Bose SoundSport Headphones,1,99.99,05/16/19 00:35,"198 Pine St, Portland, OR 97035" +199327,ThinkPad Laptop,1,999.99,05/28/19 02:50,"168 River St, Seattle, WA 98101" +199328,AA Batteries (4-pack),1,3.84,05/21/19 18:35,"476 Jackson St, San Francisco, CA 94016" +199329,USB-C Charging Cable,1,11.95,05/15/19 21:11,"9 Chestnut St, Los Angeles, CA 90001" +199330,Flatscreen TV,1,300,05/24/19 19:25,"982 Lake St, New York City, NY 10001" +199331,Macbook Pro Laptop,1,1700,05/09/19 23:41,"242 2nd St, Seattle, WA 98101" +199332,Lightning Charging Cable,1,14.95,05/24/19 09:46,"458 10th St, Portland, OR 97035" +199333,Wired Headphones,1,11.99,05/19/19 15:47,"946 Pine St, Portland, ME 04101" +199334,AA Batteries (4-pack),1,3.84,05/14/19 20:32,"559 West St, San Francisco, CA 94016" +199335,Lightning Charging Cable,2,14.95,05/10/19 17:18,"868 Hickory St, Atlanta, GA 30301" +199336,AA Batteries (4-pack),1,3.84,05/14/19 20:08,"982 1st St, San Francisco, CA 94016" +199337,34in Ultrawide Monitor,1,379.99,05/23/19 13:37,"193 Meadow St, Portland, ME 04101" +199337,AAA Batteries (4-pack),1,2.99,05/23/19 13:37,"193 Meadow St, Portland, ME 04101" +199338,USB-C Charging Cable,1,11.95,05/11/19 08:27,"50 4th St, Austin, TX 73301" +199339,AA Batteries (4-pack),1,3.84,05/12/19 13:14,"341 Hill St, San Francisco, CA 94016" +199340,Wired Headphones,2,11.99,05/03/19 18:58,"379 8th St, Atlanta, GA 30301" +199341,AA Batteries (4-pack),1,3.84,05/26/19 15:10,"516 Lakeview St, Atlanta, GA 30301" +199342,34in Ultrawide Monitor,1,379.99,05/21/19 06:45,"846 Lincoln St, Dallas, TX 75001" +199343,Wired Headphones,2,11.99,05/12/19 14:41,"458 Maple St, Los Angeles, CA 90001" +199344,27in 4K Gaming Monitor,1,389.99,05/11/19 22:06,"344 Sunset St, New York City, NY 10001" +199345,Lightning Charging Cable,1,14.95,05/26/19 23:24,"551 Adams St, Boston, MA 02215" +199346,AA Batteries (4-pack),2,3.84,05/18/19 17:03,"664 Lakeview St, Seattle, WA 98101" +199347,USB-C Charging Cable,1,11.95,05/23/19 16:45,"703 14th St, San Francisco, CA 94016" +199348,USB-C Charging Cable,1,11.95,05/31/19 16:01,"543 Cherry St, San Francisco, CA 94016" +199349,USB-C Charging Cable,2,11.95,05/17/19 22:19,"307 Jackson St, Boston, MA 02215" +199350,AA Batteries (4-pack),1,3.84,05/26/19 14:12,"395 Jefferson St, Seattle, WA 98101" +199351,USB-C Charging Cable,1,11.95,05/28/19 13:13,"295 Main St, Seattle, WA 98101" +199352,AA Batteries (4-pack),1,3.84,05/17/19 12:44,"103 Pine St, San Francisco, CA 94016" +199353,Apple Airpods Headphones,1,150,05/25/19 16:53,"66 North St, Austin, TX 73301" +199354,AA Batteries (4-pack),1,3.84,05/19/19 18:45,"808 Sunset St, San Francisco, CA 94016" +199355,Google Phone,1,600,05/23/19 12:49,"7 River St, San Francisco, CA 94016" +199356,Google Phone,1,600,05/06/19 02:35,"970 Hickory St, San Francisco, CA 94016" +199356,USB-C Charging Cable,1,11.95,05/06/19 02:35,"970 Hickory St, San Francisco, CA 94016" +199357,AAA Batteries (4-pack),2,2.99,05/16/19 20:35,"90 Center St, San Francisco, CA 94016" +199358,AAA Batteries (4-pack),2,2.99,05/22/19 08:28,"633 North St, Seattle, WA 98101" +199359,AA Batteries (4-pack),3,3.84,05/09/19 16:35,"457 Elm St, Los Angeles, CA 90001" +199360,Bose SoundSport Headphones,1,99.99,05/19/19 07:33,"317 Elm St, Los Angeles, CA 90001" +199361,USB-C Charging Cable,1,11.95,05/19/19 10:31,"373 7th St, Boston, MA 02215" +199362,Google Phone,1,600,05/22/19 15:16,"846 13th St, Austin, TX 73301" +199363,Lightning Charging Cable,1,14.95,05/13/19 17:07,"134 Forest St, San Francisco, CA 94016" +199364,Wired Headphones,1,11.99,05/31/19 17:52,"161 8th St, Boston, MA 02215" +199365,Apple Airpods Headphones,1,150,05/17/19 05:37,"932 Hill St, Portland, ME 04101" +199366,AA Batteries (4-pack),2,3.84,05/30/19 22:07,"406 Highland St, Los Angeles, CA 90001" +199367,Bose SoundSport Headphones,1,99.99,05/08/19 23:06,"752 Highland St, Austin, TX 73301" +199368,Apple Airpods Headphones,1,150,05/26/19 15:35,"119 Willow St, San Francisco, CA 94016" +199369,USB-C Charging Cable,1,11.95,05/17/19 08:54,"437 13th St, San Francisco, CA 94016" +199370,USB-C Charging Cable,1,11.95,05/26/19 20:47,"53 Elm St, Atlanta, GA 30301" +199371,AAA Batteries (4-pack),1,2.99,05/06/19 19:20,"242 5th St, Austin, TX 73301" +199372,Lightning Charging Cable,1,14.95,05/19/19 10:56,"158 7th St, Atlanta, GA 30301" +199373,Google Phone,1,600,05/19/19 13:47,"417 Johnson St, Boston, MA 02215" +199374,Wired Headphones,1,11.99,05/14/19 10:29,"942 12th St, Boston, MA 02215" +199375,Lightning Charging Cable,1,14.95,05/16/19 08:55,"665 Center St, Portland, OR 97035" +199376,iPhone,1,700,05/20/19 13:50,"442 Jefferson St, San Francisco, CA 94016" +199377,Apple Airpods Headphones,1,150,05/04/19 19:36,"221 Elm St, Seattle, WA 98101" +199378,Apple Airpods Headphones,1,150,05/21/19 15:23,"609 River St, Seattle, WA 98101" +199378,USB-C Charging Cable,1,11.95,05/21/19 15:23,"609 River St, Seattle, WA 98101" +199379,LG Dryer,1,600.0,05/27/19 11:52,"187 Willow St, Los Angeles, CA 90001" +199380,Lightning Charging Cable,1,14.95,05/18/19 12:06,"494 7th St, Austin, TX 73301" +199381,34in Ultrawide Monitor,1,379.99,05/17/19 11:19,"382 Church St, Austin, TX 73301" +199381,34in Ultrawide Monitor,1,379.99,05/17/19 11:19,"382 Church St, Austin, TX 73301" +199382,USB-C Charging Cable,1,11.95,05/07/19 12:29,"387 Lakeview St, Portland, OR 97035" +199383,AAA Batteries (4-pack),3,2.99,05/09/19 13:43,"870 Forest St, Los Angeles, CA 90001" +199384,Google Phone,1,600,05/17/19 23:59,"222 Lake St, Seattle, WA 98101" +199385,Lightning Charging Cable,1,14.95,05/28/19 18:43,"298 Walnut St, Dallas, TX 75001" +199386,AAA Batteries (4-pack),3,2.99,05/16/19 18:30,"729 West St, Austin, TX 73301" +199387,Lightning Charging Cable,2,14.95,05/14/19 17:31,"314 Walnut St, San Francisco, CA 94016" +199388,Apple Airpods Headphones,1,150,05/06/19 17:24,"882 Hill St, Dallas, TX 75001" +199388,Lightning Charging Cable,1,14.95,05/06/19 17:24,"882 Hill St, Dallas, TX 75001" +199389,ThinkPad Laptop,1,999.99,05/30/19 12:06,"251 North St, Atlanta, GA 30301" +199390,Bose SoundSport Headphones,1,99.99,05/25/19 15:50,"852 14th St, Portland, OR 97035" +199391,AA Batteries (4-pack),1,3.84,05/11/19 06:41,"369 Dogwood St, San Francisco, CA 94016" +199392,Lightning Charging Cable,1,14.95,05/29/19 23:36,"748 Jackson St, Los Angeles, CA 90001" +199393,Wired Headphones,1,11.99,05/08/19 10:40,"725 10th St, Austin, TX 73301" +199394,Bose SoundSport Headphones,1,99.99,05/31/19 17:57,"10 Main St, Los Angeles, CA 90001" +199395,USB-C Charging Cable,1,11.95,05/02/19 09:11,"937 11th St, New York City, NY 10001" +199396,Apple Airpods Headphones,1,150,05/09/19 21:08,"214 10th St, New York City, NY 10001" +199397,AA Batteries (4-pack),2,3.84,05/13/19 12:46,"808 7th St, Seattle, WA 98101" +199398,USB-C Charging Cable,1,11.95,05/22/19 15:42,"616 Willow St, Austin, TX 73301" +199399,Wired Headphones,1,11.99,05/06/19 11:00,"240 Washington St, San Francisco, CA 94016" +199400,34in Ultrawide Monitor,1,379.99,05/18/19 22:31,"870 Adams St, New York City, NY 10001" +199401,34in Ultrawide Monitor,1,379.99,05/05/19 21:08,"315 Pine St, Austin, TX 73301" +199402,Lightning Charging Cable,1,14.95,05/24/19 13:48,"210 Wilson St, Los Angeles, CA 90001" +199403,Macbook Pro Laptop,1,1700,05/23/19 20:15,"159 Dogwood St, Boston, MA 02215" +199404,20in Monitor,1,109.99,05/06/19 22:25,"235 Cedar St, Atlanta, GA 30301" +199405,27in 4K Gaming Monitor,1,389.99,05/09/19 11:50,"927 Jackson St, Boston, MA 02215" +199406,Apple Airpods Headphones,1,150,05/27/19 08:48,"175 Cedar St, Los Angeles, CA 90001" +199407,27in FHD Monitor,1,149.99,05/04/19 20:16,"793 Johnson St, Seattle, WA 98101" +199408,Wired Headphones,1,11.99,05/22/19 20:41,"817 Dogwood St, Austin, TX 73301" +199409,Bose SoundSport Headphones,1,99.99,05/23/19 11:40,"644 4th St, San Francisco, CA 94016" +199410,Wired Headphones,1,11.99,05/08/19 15:29,"761 River St, Austin, TX 73301" +199411,AAA Batteries (4-pack),2,2.99,05/05/19 18:47,"319 West St, Dallas, TX 75001" +199412,Bose SoundSport Headphones,1,99.99,05/16/19 20:15,"592 North St, Atlanta, GA 30301" +199413,27in 4K Gaming Monitor,1,389.99,05/08/19 11:33,"389 7th St, Austin, TX 73301" +199414,Lightning Charging Cable,1,14.95,05/18/19 02:20,"147 Maple St, Dallas, TX 75001" +199415,iPhone,1,700,05/07/19 13:29,"108 Sunset St, San Francisco, CA 94016" +199416,AA Batteries (4-pack),3,3.84,05/04/19 23:13,"192 Dogwood St, Los Angeles, CA 90001" +199417,20in Monitor,1,109.99,05/11/19 18:48,"657 Jackson St, San Francisco, CA 94016" +199418,Lightning Charging Cable,1,14.95,05/31/19 13:13,"652 Dogwood St, Boston, MA 02215" +199419,Wired Headphones,1,11.99,05/18/19 00:53,"234 Willow St, Boston, MA 02215" +199420,Apple Airpods Headphones,1,150,05/23/19 12:41,"608 Center St, Dallas, TX 75001" +199421,Vareebadd Phone,1,400,05/17/19 23:21,"709 10th St, Dallas, TX 75001" +199422,AAA Batteries (4-pack),3,2.99,05/28/19 23:21,"296 Main St, San Francisco, CA 94016" +199423,34in Ultrawide Monitor,1,379.99,05/25/19 20:19,"186 Walnut St, Dallas, TX 75001" +199424,ThinkPad Laptop,1,999.99,05/21/19 13:22,"465 14th St, New York City, NY 10001" +199425,27in 4K Gaming Monitor,1,389.99,05/06/19 20:03,"182 Highland St, Dallas, TX 75001" +199426,Lightning Charging Cable,1,14.95,05/29/19 16:21,"118 Adams St, Atlanta, GA 30301" +199427,Apple Airpods Headphones,1,150,05/20/19 11:45,"424 Chestnut St, Dallas, TX 75001" +199428,34in Ultrawide Monitor,1,379.99,05/16/19 20:30,"342 10th St, Austin, TX 73301" +199429,Macbook Pro Laptop,1,1700,05/07/19 09:37,"468 West St, San Francisco, CA 94016" +199429,Wired Headphones,1,11.99,05/07/19 09:37,"468 West St, San Francisco, CA 94016" +199430,ThinkPad Laptop,1,999.99,05/30/19 17:40,"724 Jackson St, Los Angeles, CA 90001" +199431,Wired Headphones,1,11.99,05/06/19 12:32,"618 Sunset St, Los Angeles, CA 90001" +199432,Google Phone,1,600,05/23/19 05:40,"768 Spruce St, Los Angeles, CA 90001" +199433,Lightning Charging Cable,1,14.95,05/26/19 17:05,"382 Meadow St, Los Angeles, CA 90001" +199434,Google Phone,1,600,05/11/19 12:17,"404 Elm St, Seattle, WA 98101" +199434,USB-C Charging Cable,1,11.95,05/11/19 12:17,"404 Elm St, Seattle, WA 98101" +199435,Macbook Pro Laptop,1,1700,05/11/19 16:43,"154 Walnut St, Seattle, WA 98101" +199436,Wired Headphones,1,11.99,05/09/19 17:41,"166 14th St, Atlanta, GA 30301" +199437,Lightning Charging Cable,1,14.95,05/20/19 08:44,"325 Cherry St, San Francisco, CA 94016" +199438,AA Batteries (4-pack),1,3.84,05/19/19 05:44,"173 North St, San Francisco, CA 94016" +199439,AA Batteries (4-pack),1,3.84,05/28/19 20:33,"637 Lakeview St, Boston, MA 02215" +199440,AA Batteries (4-pack),2,3.84,06/01/19 01:12,"907 Meadow St, Atlanta, GA 30301" +199441,AA Batteries (4-pack),1,3.84,05/08/19 07:14,"493 Highland St, Dallas, TX 75001" +199442,Wired Headphones,1,11.99,05/22/19 02:16,"105 Ridge St, Atlanta, GA 30301" +199443,USB-C Charging Cable,1,11.95,05/20/19 17:43,"864 14th St, Los Angeles, CA 90001" +199444,20in Monitor,1,109.99,05/12/19 10:28,"431 5th St, Austin, TX 73301" +199445,Wired Headphones,1,11.99,05/08/19 11:41,"226 Park St, New York City, NY 10001" +199446,AA Batteries (4-pack),1,3.84,05/19/19 14:24,"4 Jefferson St, San Francisco, CA 94016" +199447,Bose SoundSport Headphones,1,99.99,05/30/19 10:25,"447 Park St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +199448,Lightning Charging Cable,1,14.95,05/15/19 21:10,"789 Hickory St, San Francisco, CA 94016" +199448,Lightning Charging Cable,2,14.95,05/15/19 21:10,"789 Hickory St, San Francisco, CA 94016" +199449,Apple Airpods Headphones,1,150,05/29/19 20:34,"763 Cedar St, San Francisco, CA 94016" +199450,AA Batteries (4-pack),1,3.84,05/21/19 14:15,"742 6th St, Los Angeles, CA 90001" +199451,Wired Headphones,2,11.99,05/31/19 19:04,"813 Adams St, Seattle, WA 98101" +199452,Vareebadd Phone,1,400,05/08/19 09:25,"677 Elm St, San Francisco, CA 94016" +199453,Lightning Charging Cable,2,14.95,05/17/19 11:14,"733 12th St, Dallas, TX 75001" +199454,USB-C Charging Cable,1,11.95,05/31/19 11:23,"105 1st St, Dallas, TX 75001" +199455,Apple Airpods Headphones,1,150,05/01/19 14:35,"190 Maple St, Dallas, TX 75001" +199456,Wired Headphones,1,11.99,05/29/19 16:57,"645 Walnut St, Atlanta, GA 30301" +199457,Apple Airpods Headphones,1,150,05/04/19 16:13,"221 Cherry St, Seattle, WA 98101" +199458,AA Batteries (4-pack),1,3.84,05/25/19 11:08,"472 14th St, Boston, MA 02215" +199459,iPhone,1,700,05/05/19 19:08,"484 Church St, Los Angeles, CA 90001" +199460,AA Batteries (4-pack),1,3.84,05/12/19 21:05,"784 Willow St, Boston, MA 02215" +199461,27in FHD Monitor,1,149.99,05/07/19 15:53,"678 South St, Seattle, WA 98101" +199462,Lightning Charging Cable,1,14.95,05/03/19 14:08,"175 River St, New York City, NY 10001" +199463,Macbook Pro Laptop,1,1700,05/01/19 16:41,"823 Meadow St, Atlanta, GA 30301" +199464,USB-C Charging Cable,1,11.95,05/27/19 13:10,"667 6th St, Dallas, TX 75001" +199465,Lightning Charging Cable,1,14.95,05/06/19 13:27,"522 Adams St, San Francisco, CA 94016" +199466,Lightning Charging Cable,1,14.95,05/15/19 13:56,"2 14th St, Boston, MA 02215" +199467,Bose SoundSport Headphones,2,99.99,05/10/19 18:02,"504 7th St, San Francisco, CA 94016" +199468,27in 4K Gaming Monitor,1,389.99,05/06/19 10:14,"799 13th St, Portland, OR 97035" +199469,AA Batteries (4-pack),1,3.84,05/02/19 11:52,"682 Willow St, San Francisco, CA 94016" +199470,27in FHD Monitor,1,149.99,05/11/19 08:08,"530 Highland St, San Francisco, CA 94016" +199471,USB-C Charging Cable,1,11.95,05/29/19 10:17,"825 Dogwood St, San Francisco, CA 94016" +199472,AAA Batteries (4-pack),2,2.99,05/08/19 22:38,"428 Spruce St, Portland, OR 97035" +199473,20in Monitor,1,109.99,05/12/19 17:21,"974 Sunset St, San Francisco, CA 94016" +199474,AAA Batteries (4-pack),1,2.99,05/14/19 19:51,"409 Park St, Boston, MA 02215" +199475,LG Dryer,1,600.0,05/13/19 10:05,"430 Willow St, San Francisco, CA 94016" +199476,Wired Headphones,1,11.99,05/05/19 15:01,"812 Center St, San Francisco, CA 94016" +199477,34in Ultrawide Monitor,1,379.99,05/03/19 15:44,"5 9th St, San Francisco, CA 94016" +199478,AA Batteries (4-pack),1,3.84,05/30/19 11:15,"982 Cherry St, Seattle, WA 98101" +199479,Lightning Charging Cable,1,14.95,05/31/19 16:57,"391 Main St, Dallas, TX 75001" +199480,Wired Headphones,1,11.99,05/02/19 19:23,"147 Park St, New York City, NY 10001" +199481,Apple Airpods Headphones,1,150,05/12/19 15:10,"58 Spruce St, San Francisco, CA 94016" +199482,Flatscreen TV,1,300,05/13/19 13:16,"165 Lakeview St, San Francisco, CA 94016" +199483,Wired Headphones,1,11.99,05/02/19 23:47,"90 13th St, New York City, NY 10001" +199484,Lightning Charging Cable,2,14.95,05/10/19 00:05,"720 Hickory St, Seattle, WA 98101" +199485,27in FHD Monitor,1,149.99,05/24/19 16:27,"838 Chestnut St, Atlanta, GA 30301" +199486,AA Batteries (4-pack),1,3.84,05/20/19 19:12,"334 Main St, Dallas, TX 75001" +199487,Apple Airpods Headphones,1,150,05/24/19 13:15,"74 2nd St, New York City, NY 10001" +199488,Lightning Charging Cable,1,14.95,05/18/19 19:55,"272 13th St, San Francisco, CA 94016" +199489,AA Batteries (4-pack),1,3.84,05/25/19 19:28,"942 Madison St, San Francisco, CA 94016" +199490,USB-C Charging Cable,1,11.95,05/07/19 11:04,"216 Forest St, Dallas, TX 75001" +199491,Bose SoundSport Headphones,1,99.99,05/03/19 16:38,"374 Adams St, Los Angeles, CA 90001" +199492,27in FHD Monitor,1,149.99,05/13/19 07:34,"711 11th St, San Francisco, CA 94016" +199493,Vareebadd Phone,1,400,05/10/19 11:05,"337 Spruce St, Boston, MA 02215" +199494,Macbook Pro Laptop,1,1700,05/09/19 11:43,"193 North St, New York City, NY 10001" +199495,Apple Airpods Headphones,1,150,05/02/19 11:51,"359 Walnut St, Boston, MA 02215" +199496,27in 4K Gaming Monitor,1,389.99,05/26/19 09:00,"448 Lincoln St, Los Angeles, CA 90001" +199497,iPhone,1,700,05/31/19 09:28,"975 1st St, Los Angeles, CA 90001" +199498,Lightning Charging Cable,1,14.95,05/24/19 09:00,"666 Cherry St, San Francisco, CA 94016" +199499,USB-C Charging Cable,1,11.95,05/30/19 17:10,"138 Hickory St, Austin, TX 73301" +199499,Lightning Charging Cable,2,14.95,05/30/19 17:10,"138 Hickory St, Austin, TX 73301" +199500,Bose SoundSport Headphones,1,99.99,05/15/19 20:01,"440 Washington St, New York City, NY 10001" +199501,AA Batteries (4-pack),2,3.84,05/11/19 09:12,"396 Ridge St, Boston, MA 02215" +199502,AAA Batteries (4-pack),1,2.99,05/04/19 14:34,"263 4th St, New York City, NY 10001" +199503,AA Batteries (4-pack),1,3.84,05/19/19 01:04,"287 14th St, Atlanta, GA 30301" +199504,iPhone,1,700,05/10/19 09:40,"148 West St, San Francisco, CA 94016" +199505,AAA Batteries (4-pack),4,2.99,05/01/19 15:57,"41 13th St, San Francisco, CA 94016" +199506,Google Phone,1,600,05/19/19 09:13,"421 Wilson St, Portland, OR 97035" +199507,USB-C Charging Cable,1,11.95,05/08/19 14:39,"612 Lakeview St, New York City, NY 10001" +199508,Apple Airpods Headphones,1,150,05/05/19 20:33,"26 Sunset St, Portland, OR 97035" +199509,Google Phone,1,600,05/14/19 13:31,"373 River St, San Francisco, CA 94016" +199510,27in FHD Monitor,1,149.99,05/11/19 16:01,"298 12th St, Atlanta, GA 30301" +199511,34in Ultrawide Monitor,1,379.99,05/26/19 09:15,"446 6th St, Seattle, WA 98101" +199512,27in FHD Monitor,1,149.99,05/22/19 10:55,"241 Washington St, San Francisco, CA 94016" +199513,Wired Headphones,1,11.99,05/28/19 11:41,"623 Madison St, Seattle, WA 98101" +199514,34in Ultrawide Monitor,1,379.99,05/24/19 10:32,"627 6th St, Los Angeles, CA 90001" +199515,34in Ultrawide Monitor,1,379.99,05/29/19 14:33,"391 Dogwood St, Seattle, WA 98101" +199516,Bose SoundSport Headphones,1,99.99,05/06/19 20:17,"427 Hill St, New York City, NY 10001" +199517,Flatscreen TV,1,300,05/26/19 18:59,"13 Chestnut St, San Francisco, CA 94016" +199518,iPhone,1,700,05/03/19 23:29,"880 Sunset St, San Francisco, CA 94016" +199518,Apple Airpods Headphones,1,150,05/03/19 23:29,"880 Sunset St, San Francisco, CA 94016" +199519,AAA Batteries (4-pack),1,2.99,05/25/19 13:17,"64 6th St, Los Angeles, CA 90001" +199520,Lightning Charging Cable,1,14.95,05/21/19 22:04,"677 1st St, Dallas, TX 75001" +199521,Bose SoundSport Headphones,1,99.99,05/30/19 15:38,"895 Cedar St, San Francisco, CA 94016" +199522,Flatscreen TV,1,300,05/04/19 15:01,"150 Jefferson St, Seattle, WA 98101" +199523,AA Batteries (4-pack),1,3.84,05/24/19 23:17,"764 Meadow St, San Francisco, CA 94016" +199524,Wired Headphones,1,11.99,05/05/19 20:34,"895 Main St, San Francisco, CA 94016" +199525,USB-C Charging Cable,1,11.95,05/06/19 05:27,"261 Main St, Los Angeles, CA 90001" +199526,USB-C Charging Cable,1,11.95,05/22/19 07:17,"793 Maple St, New York City, NY 10001" +199527,Lightning Charging Cable,1,14.95,05/16/19 22:19,"185 2nd St, Seattle, WA 98101" +199528,USB-C Charging Cable,1,11.95,05/03/19 19:13,"381 Hill St, Portland, OR 97035" +199529,USB-C Charging Cable,1,11.95,05/15/19 11:54,"887 6th St, San Francisco, CA 94016" +199530,Bose SoundSport Headphones,1,99.99,05/08/19 21:51,"260 Church St, New York City, NY 10001" +199531,AAA Batteries (4-pack),1,2.99,05/20/19 21:50,"572 Sunset St, New York City, NY 10001" +199532,Wired Headphones,2,11.99,05/22/19 11:58,"48 13th St, Atlanta, GA 30301" +199533,AAA Batteries (4-pack),1,2.99,05/07/19 21:33,"788 Walnut St, Boston, MA 02215" +199533,Apple Airpods Headphones,1,150,05/07/19 21:33,"788 Walnut St, Boston, MA 02215" +199534,AA Batteries (4-pack),1,3.84,05/17/19 11:53,"748 Willow St, Los Angeles, CA 90001" +199535,Lightning Charging Cable,1,14.95,05/30/19 20:11,"918 Park St, Los Angeles, CA 90001" +199536,Lightning Charging Cable,2,14.95,05/18/19 07:25,"80 South St, Atlanta, GA 30301" +199537,USB-C Charging Cable,2,11.95,05/23/19 21:56,"292 Jackson St, Dallas, TX 75001" +199538,USB-C Charging Cable,1,11.95,05/01/19 16:42,"313 Hickory St, Austin, TX 73301" +199539,Wired Headphones,2,11.99,05/20/19 23:49,"470 Pine St, New York City, NY 10001" +199540,Bose SoundSport Headphones,1,99.99,05/17/19 12:13,"507 Chestnut St, San Francisco, CA 94016" +199541,27in FHD Monitor,1,149.99,05/05/19 09:53,"37 Lakeview St, Austin, TX 73301" +199542,Flatscreen TV,1,300,05/28/19 13:10,"15 Maple St, Boston, MA 02215" +199543,USB-C Charging Cable,2,11.95,05/17/19 16:20,"919 Maple St, Seattle, WA 98101" +199544,USB-C Charging Cable,1,11.95,05/22/19 08:49,"784 4th St, San Francisco, CA 94016" +199545,Wired Headphones,1,11.99,05/12/19 10:13,"392 South St, Austin, TX 73301" +199546,AA Batteries (4-pack),1,3.84,05/31/19 21:12,"995 West St, Boston, MA 02215" +199547,Macbook Pro Laptop,1,1700,05/05/19 00:00,"110 Sunset St, Dallas, TX 75001" +199548,Apple Airpods Headphones,1,150,05/01/19 20:57,"629 Dogwood St, Austin, TX 73301" +199549,27in FHD Monitor,1,149.99,05/03/19 10:24,"113 10th St, New York City, NY 10001" +199550,Apple Airpods Headphones,1,150,05/21/19 22:02,"902 Lakeview St, San Francisco, CA 94016" +199550,USB-C Charging Cable,1,11.95,05/21/19 22:02,"902 Lakeview St, San Francisco, CA 94016" +199551,Macbook Pro Laptop,1,1700,05/28/19 23:45,"705 12th St, San Francisco, CA 94016" +199552,AAA Batteries (4-pack),2,2.99,05/28/19 09:09,"352 Wilson St, New York City, NY 10001" +199553,Bose SoundSport Headphones,1,99.99,05/01/19 12:33,"293 Chestnut St, Dallas, TX 75001" +199554,USB-C Charging Cable,1,11.95,05/15/19 20:54,"699 Hickory St, Atlanta, GA 30301" +199555,Bose SoundSport Headphones,1,99.99,05/23/19 17:09,"521 12th St, Seattle, WA 98101" +199556,AA Batteries (4-pack),1,3.84,05/15/19 10:21,"390 Washington St, Los Angeles, CA 90001" +,,,,, +199557,Wired Headphones,1,11.99,05/09/19 19:15,"755 Jackson St, Boston, MA 02215" +199558,27in 4K Gaming Monitor,1,389.99,05/03/19 18:19,"418 Church St, Los Angeles, CA 90001" +199559,Lightning Charging Cable,1,14.95,05/12/19 14:46,"89 12th St, Seattle, WA 98101" +199560,ThinkPad Laptop,1,999.99,05/27/19 21:03,"797 Cherry St, Dallas, TX 75001" +199561,Vareebadd Phone,1,400,05/29/19 16:45,"769 Ridge St, San Francisco, CA 94016" +199562,Wired Headphones,1,11.99,05/27/19 12:40,"156 Cedar St, Los Angeles, CA 90001" +199563,AA Batteries (4-pack),1,3.84,05/17/19 20:36,"566 Lake St, San Francisco, CA 94016" +199564,AA Batteries (4-pack),1,3.84,05/30/19 18:58,"909 2nd St, New York City, NY 10001" +199565,USB-C Charging Cable,1,11.95,05/23/19 11:01,"154 1st St, New York City, NY 10001" +199566,ThinkPad Laptop,1,999.99,05/02/19 22:04,"364 2nd St, Portland, OR 97035" +199567,Bose SoundSport Headphones,1,99.99,05/08/19 13:58,"321 Johnson St, Atlanta, GA 30301" +199568,AA Batteries (4-pack),1,3.84,05/03/19 17:50,"210 Main St, Los Angeles, CA 90001" +199569,AA Batteries (4-pack),1,3.84,05/01/19 13:05,"14 Hill St, San Francisco, CA 94016" +199570,Lightning Charging Cable,1,14.95,05/26/19 10:35,"63 Chestnut St, San Francisco, CA 94016" +199571,USB-C Charging Cable,1,11.95,05/01/19 11:26,"251 6th St, Los Angeles, CA 90001" +199572,AAA Batteries (4-pack),1,2.99,05/20/19 12:08,"951 9th St, Los Angeles, CA 90001" +199573,AAA Batteries (4-pack),1,2.99,05/12/19 17:12,"397 West St, San Francisco, CA 94016" +199574,Bose SoundSport Headphones,1,99.99,05/16/19 20:30,"319 Jackson St, Los Angeles, CA 90001" +199575,Wired Headphones,1,11.99,05/09/19 14:57,"895 Elm St, Portland, OR 97035" +199576,Wired Headphones,1,11.99,05/07/19 07:43,"603 Church St, Atlanta, GA 30301" +199577,Lightning Charging Cable,1,14.95,05/07/19 18:05,"590 12th St, Los Angeles, CA 90001" +199578,27in FHD Monitor,1,149.99,05/02/19 18:12,"723 12th St, Boston, MA 02215" +199579,AAA Batteries (4-pack),6,2.99,05/19/19 14:34,"149 2nd St, New York City, NY 10001" +199580,Wired Headphones,1,11.99,05/10/19 19:16,"842 Willow St, Boston, MA 02215" +199581,Macbook Pro Laptop,1,1700,05/06/19 20:32,"303 5th St, New York City, NY 10001" +199582,27in FHD Monitor,1,149.99,05/09/19 05:39,"387 Lakeview St, Portland, OR 97035" +199583,Lightning Charging Cable,1,14.95,05/18/19 22:01,"234 Madison St, Los Angeles, CA 90001" +199584,USB-C Charging Cable,1,11.95,05/12/19 20:23,"271 Meadow St, Dallas, TX 75001" +199585,Wired Headphones,1,11.99,05/23/19 16:06,"41 5th St, Boston, MA 02215" +199586,iPhone,1,700,05/17/19 19:07,"358 Walnut St, Austin, TX 73301" +199587,Wired Headphones,1,11.99,05/15/19 12:07,"97 1st St, San Francisco, CA 94016" +199588,34in Ultrawide Monitor,1,379.99,05/09/19 00:02,"983 Maple St, Los Angeles, CA 90001" +199589,Bose SoundSport Headphones,1,99.99,05/03/19 19:19,"271 2nd St, Portland, OR 97035" +199590,Lightning Charging Cable,1,14.95,05/07/19 16:30,"812 Cherry St, Atlanta, GA 30301" +199591,Flatscreen TV,1,300,05/28/19 14:27,"275 North St, Boston, MA 02215" +199592,ThinkPad Laptop,1,999.99,05/10/19 20:44,"654 Park St, Seattle, WA 98101" +199593,AAA Batteries (4-pack),1,2.99,05/26/19 22:59,"562 11th St, San Francisco, CA 94016" +199594,USB-C Charging Cable,1,11.95,05/22/19 13:48,"732 Maple St, Los Angeles, CA 90001" +199595,Lightning Charging Cable,1,14.95,05/22/19 18:15,"196 Hill St, New York City, NY 10001" +199596,AA Batteries (4-pack),2,3.84,05/27/19 09:34,"441 Washington St, San Francisco, CA 94016" +199597,Lightning Charging Cable,1,14.95,05/30/19 19:46,"722 Hickory St, Atlanta, GA 30301" +199598,27in FHD Monitor,1,149.99,05/07/19 15:01,"403 Hill St, Los Angeles, CA 90001" +199599,27in 4K Gaming Monitor,1,389.99,05/20/19 20:25,"331 Highland St, Boston, MA 02215" +199600,Flatscreen TV,1,300,05/24/19 16:25,"183 14th St, Portland, OR 97035" +199601,Lightning Charging Cable,1,14.95,05/27/19 19:02,"50 Highland St, Los Angeles, CA 90001" +199602,USB-C Charging Cable,1,11.95,05/10/19 16:38,"882 Highland St, New York City, NY 10001" +199603,iPhone,1,700,05/03/19 09:46,"92 Willow St, Seattle, WA 98101" +199604,AAA Batteries (4-pack),1,2.99,05/27/19 11:02,"223 Willow St, New York City, NY 10001" +199605,AA Batteries (4-pack),1,3.84,05/03/19 12:11,"412 River St, San Francisco, CA 94016" +199606,Bose SoundSport Headphones,1,99.99,05/05/19 17:46,"352 8th St, Austin, TX 73301" +199607,Lightning Charging Cable,1,14.95,05/25/19 21:17,"54 Walnut St, Dallas, TX 75001" +199608,Google Phone,1,600,05/11/19 14:39,"997 Spruce St, Los Angeles, CA 90001" +199608,USB-C Charging Cable,1,11.95,05/11/19 14:39,"997 Spruce St, Los Angeles, CA 90001" +199609,Apple Airpods Headphones,1,150,05/09/19 11:29,"496 Cherry St, Los Angeles, CA 90001" +199610,AAA Batteries (4-pack),2,2.99,05/08/19 06:20,"62 Willow St, Portland, OR 97035" +199611,Lightning Charging Cable,1,14.95,05/28/19 16:37,"496 Wilson St, Seattle, WA 98101" +199612,Lightning Charging Cable,3,14.95,05/20/19 12:34,"436 Lake St, San Francisco, CA 94016" +199613,AAA Batteries (4-pack),1,2.99,05/26/19 01:34,"955 2nd St, San Francisco, CA 94016" +199614,USB-C Charging Cable,1,11.95,05/15/19 20:03,"581 Willow St, Los Angeles, CA 90001" +199615,AA Batteries (4-pack),1,3.84,05/31/19 16:55,"316 South St, San Francisco, CA 94016" +199616,AAA Batteries (4-pack),2,2.99,05/18/19 13:54,"387 13th St, Boston, MA 02215" +199616,Macbook Pro Laptop,1,1700,05/18/19 13:54,"387 13th St, Boston, MA 02215" +199617,USB-C Charging Cable,1,11.95,05/25/19 12:36,"719 Hickory St, Boston, MA 02215" +199618,27in 4K Gaming Monitor,1,389.99,05/08/19 18:34,"750 5th St, Austin, TX 73301" +199619,USB-C Charging Cable,1,11.95,05/13/19 09:35,"477 Cedar St, Los Angeles, CA 90001" +199620,Wired Headphones,1,11.99,05/05/19 02:31,"798 Lakeview St, San Francisco, CA 94016" +199621,AAA Batteries (4-pack),2,2.99,05/05/19 16:57,"935 14th St, San Francisco, CA 94016" +199622,AA Batteries (4-pack),1,3.84,05/12/19 10:55,"610 Jefferson St, Austin, TX 73301" +199623,AAA Batteries (4-pack),1,2.99,05/20/19 15:01,"575 Cedar St, Atlanta, GA 30301" +199624,Flatscreen TV,1,300,05/11/19 16:24,"593 Spruce St, Los Angeles, CA 90001" +199625,AA Batteries (4-pack),2,3.84,05/02/19 23:44,"609 Lincoln St, New York City, NY 10001" +199626,AA Batteries (4-pack),1,3.84,05/22/19 16:17,"107 Hill St, Atlanta, GA 30301" +199627,USB-C Charging Cable,1,11.95,05/13/19 17:16,"536 Meadow St, New York City, NY 10001" +199628,20in Monitor,1,109.99,05/19/19 13:42,"647 Highland St, Los Angeles, CA 90001" +199629,Apple Airpods Headphones,1,150,05/14/19 17:20,"348 Center St, San Francisco, CA 94016" +199630,USB-C Charging Cable,1,11.95,05/11/19 20:20,"747 Hill St, New York City, NY 10001" +199631,Bose SoundSport Headphones,1,99.99,05/13/19 21:04,"236 Hill St, Dallas, TX 75001" +199632,Wired Headphones,1,11.99,05/27/19 16:51,"146 West St, New York City, NY 10001" +199633,iPhone,1,700,05/24/19 00:58,"531 8th St, Atlanta, GA 30301" +199634,Flatscreen TV,1,300,05/09/19 11:05,"119 Washington St, Atlanta, GA 30301" +199635,Google Phone,1,600,05/16/19 02:31,"57 8th St, Boston, MA 02215" +199635,Wired Headphones,1,11.99,05/16/19 02:31,"57 8th St, Boston, MA 02215" +199636,AAA Batteries (4-pack),1,2.99,05/22/19 11:54,"207 1st St, Portland, OR 97035" +199637,iPhone,1,700,05/22/19 02:59,"213 Jackson St, Atlanta, GA 30301" +199638,Bose SoundSport Headphones,1,99.99,05/12/19 07:08,"219 Jackson St, Atlanta, GA 30301" +199639,27in FHD Monitor,1,149.99,05/04/19 22:57,"780 12th St, Los Angeles, CA 90001" +199640,Apple Airpods Headphones,1,150,05/18/19 11:55,"906 5th St, New York City, NY 10001" +199641,Lightning Charging Cable,1,14.95,05/19/19 20:57,"582 8th St, San Francisco, CA 94016" +199641,Macbook Pro Laptop,1,1700,05/19/19 20:57,"582 8th St, San Francisco, CA 94016" +199642,USB-C Charging Cable,1,11.95,05/20/19 12:39,"276 2nd St, Atlanta, GA 30301" +199643,27in FHD Monitor,1,149.99,05/11/19 19:23,"700 1st St, Seattle, WA 98101" +199644,Wired Headphones,1,11.99,05/16/19 00:41,"227 14th St, New York City, NY 10001" +199645,Lightning Charging Cable,1,14.95,05/03/19 14:09,"614 Meadow St, Dallas, TX 75001" +199646,Flatscreen TV,1,300,05/01/19 21:18,"716 5th St, Boston, MA 02215" +199647,27in FHD Monitor,1,149.99,05/25/19 07:47,"702 Park St, Seattle, WA 98101" +199648,Lightning Charging Cable,1,14.95,05/06/19 18:35,"382 Pine St, Los Angeles, CA 90001" +199649,AA Batteries (4-pack),2,3.84,05/26/19 20:30,"297 12th St, Los Angeles, CA 90001" +199650,USB-C Charging Cable,2,11.95,05/15/19 01:51,"372 Madison St, Boston, MA 02215" +199651,27in 4K Gaming Monitor,1,389.99,05/20/19 19:01,"367 Elm St, Dallas, TX 75001" +199652,AA Batteries (4-pack),1,3.84,05/12/19 21:12,"214 Ridge St, San Francisco, CA 94016" +199653,27in 4K Gaming Monitor,1,389.99,05/18/19 22:41,"59 Hill St, Los Angeles, CA 90001" +199654,27in 4K Gaming Monitor,1,389.99,05/02/19 14:56,"252 Lincoln St, Boston, MA 02215" +199655,ThinkPad Laptop,1,999.99,05/01/19 16:36,"488 Ridge St, San Francisco, CA 94016" +199656,USB-C Charging Cable,1,11.95,05/09/19 17:00,"19 River St, Portland, OR 97035" +199657,27in FHD Monitor,1,149.99,05/31/19 21:34,"750 West St, Los Angeles, CA 90001" +199658,Macbook Pro Laptop,1,1700,05/05/19 19:21,"293 South St, Seattle, WA 98101" +199659,USB-C Charging Cable,1,11.95,05/19/19 19:20,"627 2nd St, San Francisco, CA 94016" +199660,USB-C Charging Cable,1,11.95,05/04/19 14:46,"733 1st St, Boston, MA 02215" +199661,USB-C Charging Cable,1,11.95,05/17/19 13:25,"104 Forest St, San Francisco, CA 94016" +199662,LG Dryer,1,600.0,05/23/19 19:30,"820 Pine St, Atlanta, GA 30301" +199663,AA Batteries (4-pack),2,3.84,05/31/19 18:13,"249 14th St, Portland, ME 04101" +199664,27in 4K Gaming Monitor,1,389.99,05/21/19 19:44,"280 11th St, Los Angeles, CA 90001" +199665,Lightning Charging Cable,1,14.95,05/05/19 19:21,"518 Meadow St, Dallas, TX 75001" +199666,27in 4K Gaming Monitor,1,389.99,05/21/19 01:25,"240 12th St, Dallas, TX 75001" +199667,27in FHD Monitor,1,149.99,05/10/19 11:18,"349 Dogwood St, Los Angeles, CA 90001" +199668,AAA Batteries (4-pack),1,2.99,05/11/19 23:45,"409 Madison St, San Francisco, CA 94016" +199669,20in Monitor,1,109.99,05/17/19 09:09,"260 Dogwood St, San Francisco, CA 94016" +199670,USB-C Charging Cable,1,11.95,05/22/19 01:25,"756 Lincoln St, San Francisco, CA 94016" +199671,Lightning Charging Cable,1,14.95,05/29/19 18:24,"124 Elm St, Seattle, WA 98101" +199672,Lightning Charging Cable,1,14.95,05/26/19 17:33,"459 Walnut St, Los Angeles, CA 90001" +199673,AA Batteries (4-pack),2,3.84,05/10/19 11:27,"820 2nd St, Dallas, TX 75001" +199674,Apple Airpods Headphones,1,150,05/23/19 13:35,"564 2nd St, San Francisco, CA 94016" +199675,Apple Airpods Headphones,1,150,05/03/19 12:33,"725 River St, Portland, OR 97035" +199676,Flatscreen TV,1,300,05/08/19 17:40,"237 Washington St, San Francisco, CA 94016" +199677,Wired Headphones,1,11.99,05/08/19 16:56,"39 Wilson St, Dallas, TX 75001" +199678,USB-C Charging Cable,2,11.95,05/31/19 08:36,"440 North St, Seattle, WA 98101" +199679,Apple Airpods Headphones,1,150,05/20/19 18:08,"120 Willow St, San Francisco, CA 94016" +199680,Lightning Charging Cable,1,14.95,05/25/19 16:18,"74 Forest St, Dallas, TX 75001" +199681,AAA Batteries (4-pack),3,2.99,05/27/19 12:32,"166 Jefferson St, Boston, MA 02215" +199682,USB-C Charging Cable,1,11.95,05/09/19 10:50,"819 North St, San Francisco, CA 94016" +199683,Apple Airpods Headphones,1,150,05/28/19 15:11,"963 Main St, Seattle, WA 98101" +199684,AAA Batteries (4-pack),1,2.99,05/25/19 21:25,"648 Dogwood St, New York City, NY 10001" +199685,Lightning Charging Cable,1,14.95,05/30/19 12:27,"358 Pine St, Boston, MA 02215" +199686,Vareebadd Phone,1,400,05/16/19 23:47,"744 9th St, San Francisco, CA 94016" +199687,USB-C Charging Cable,1,11.95,05/02/19 12:39,"41 6th St, Seattle, WA 98101" +199688,AAA Batteries (4-pack),1,2.99,05/16/19 07:51,"403 Jefferson St, Boston, MA 02215" +199689,Lightning Charging Cable,1,14.95,05/08/19 16:12,"767 Willow St, Atlanta, GA 30301" +199690,34in Ultrawide Monitor,1,379.99,05/30/19 14:52,"104 North St, New York City, NY 10001" +199691,27in FHD Monitor,1,149.99,05/13/19 14:06,"329 8th St, Boston, MA 02215" +199692,ThinkPad Laptop,1,999.99,05/04/19 08:58,"401 South St, Boston, MA 02215" +199693,27in FHD Monitor,1,149.99,05/09/19 13:28,"705 4th St, San Francisco, CA 94016" +199694,Apple Airpods Headphones,1,150,05/10/19 07:42,"341 14th St, Los Angeles, CA 90001" +199695,Lightning Charging Cable,1,14.95,05/10/19 19:02,"714 Cedar St, Boston, MA 02215" +199696,AA Batteries (4-pack),1,3.84,05/19/19 15:55,"472 12th St, Austin, TX 73301" +199697,iPhone,1,700,05/15/19 11:16,"762 Jackson St, New York City, NY 10001" +199698,Google Phone,1,600,05/18/19 12:54,"923 Pine St, Seattle, WA 98101" +199699,Wired Headphones,1,11.99,05/25/19 13:52,"755 Meadow St, Boston, MA 02215" +199700,Wired Headphones,1,11.99,05/24/19 20:48,"477 5th St, Los Angeles, CA 90001" +199701,27in 4K Gaming Monitor,1,389.99,05/13/19 14:56,"648 Maple St, Portland, OR 97035" +199702,Bose SoundSport Headphones,1,99.99,05/03/19 14:50,"421 Dogwood St, San Francisco, CA 94016" +199703,AAA Batteries (4-pack),1,2.99,05/09/19 20:01,"48 Lake St, Los Angeles, CA 90001" +199704,Apple Airpods Headphones,1,150,05/16/19 14:06,"820 Cedar St, New York City, NY 10001" +199705,AAA Batteries (4-pack),1,2.99,05/11/19 21:09,"64 Johnson St, New York City, NY 10001" +199706,AAA Batteries (4-pack),2,2.99,05/13/19 23:54,"991 Washington St, Los Angeles, CA 90001" +199707,Lightning Charging Cable,1,14.95,05/24/19 20:21,"741 Meadow St, Boston, MA 02215" +199708,AAA Batteries (4-pack),3,2.99,05/29/19 18:44,"223 7th St, Los Angeles, CA 90001" +199709,Apple Airpods Headphones,1,150,05/18/19 19:49,"446 Maple St, San Francisco, CA 94016" +199710,Apple Airpods Headphones,1,150,05/26/19 17:15,"105 Hickory St, Los Angeles, CA 90001" +199711,USB-C Charging Cable,1,11.95,05/27/19 14:48,"980 11th St, Atlanta, GA 30301" +199712,Bose SoundSport Headphones,1,99.99,05/23/19 15:03,"682 Walnut St, New York City, NY 10001" +199713,Bose SoundSport Headphones,1,99.99,05/01/19 12:45,"91 West St, New York City, NY 10001" +199714,27in 4K Gaming Monitor,1,389.99,05/26/19 18:54,"601 14th St, New York City, NY 10001" +199715,Apple Airpods Headphones,1,150,05/20/19 15:36,"374 10th St, Dallas, TX 75001" +199716,AA Batteries (4-pack),1,3.84,05/29/19 19:49,"193 Church St, New York City, NY 10001" +199717,USB-C Charging Cable,1,11.95,05/04/19 19:08,"336 Park St, Atlanta, GA 30301" +199718,Wired Headphones,1,11.99,05/28/19 21:19,"882 Walnut St, San Francisco, CA 94016" +199719,34in Ultrawide Monitor,1,379.99,05/09/19 13:35,"994 Center St, San Francisco, CA 94016" +199720,USB-C Charging Cable,1,11.95,05/08/19 13:34,"575 Maple St, San Francisco, CA 94016" +199721,Lightning Charging Cable,1,14.95,05/31/19 15:21,"842 12th St, San Francisco, CA 94016" +199722,AAA Batteries (4-pack),2,2.99,05/06/19 18:53,"572 Johnson St, Boston, MA 02215" +199723,Lightning Charging Cable,1,14.95,05/28/19 12:53,"453 Chestnut St, San Francisco, CA 94016" +199724,Lightning Charging Cable,1,14.95,05/03/19 01:16,"288 Madison St, Seattle, WA 98101" +199725,AAA Batteries (4-pack),1,2.99,05/24/19 17:15,"737 9th St, San Francisco, CA 94016" +199726,Flatscreen TV,1,300,05/02/19 21:22,"919 12th St, Portland, OR 97035" +199727,Wired Headphones,1,11.99,05/09/19 21:38,"945 Cherry St, Los Angeles, CA 90001" +199728,USB-C Charging Cable,1,11.95,05/25/19 10:11,"523 5th St, New York City, NY 10001" +199729,Flatscreen TV,1,300,05/16/19 18:42,"234 Forest St, Boston, MA 02215" +199730,USB-C Charging Cable,1,11.95,05/27/19 18:40,"603 10th St, Portland, OR 97035" +199731,LG Dryer,1,600.0,05/05/19 14:27,"883 Park St, Dallas, TX 75001" +199732,Lightning Charging Cable,2,14.95,05/18/19 13:27,"578 13th St, Dallas, TX 75001" +199733,iPhone,1,700,05/09/19 19:32,"806 Spruce St, Los Angeles, CA 90001" +199733,Apple Airpods Headphones,1,150,05/09/19 19:32,"806 Spruce St, Los Angeles, CA 90001" +199734,Macbook Pro Laptop,1,1700,05/26/19 11:09,"85 Johnson St, San Francisco, CA 94016" +199735,Wired Headphones,1,11.99,05/30/19 21:48,"757 Highland St, San Francisco, CA 94016" +199736,AA Batteries (4-pack),2,3.84,05/07/19 14:45,"487 Main St, San Francisco, CA 94016" +199737,AA Batteries (4-pack),2,3.84,05/31/19 23:13,"664 Maple St, Portland, OR 97035" +199738,Bose SoundSport Headphones,1,99.99,05/14/19 08:51,"392 Spruce St, San Francisco, CA 94016" +199739,Lightning Charging Cable,1,14.95,05/18/19 12:38,"527 6th St, Seattle, WA 98101" +199740,AA Batteries (4-pack),1,3.84,05/14/19 09:55,"198 Elm St, Los Angeles, CA 90001" +199741,Lightning Charging Cable,1,14.95,05/27/19 11:09,"728 Chestnut St, Seattle, WA 98101" +199742,ThinkPad Laptop,1,999.99,05/01/19 17:15,"595 Forest St, Los Angeles, CA 90001" +199743,AAA Batteries (4-pack),4,2.99,05/26/19 21:37,"676 6th St, Dallas, TX 75001" +199744,Lightning Charging Cable,1,14.95,05/23/19 08:36,"657 Jefferson St, Atlanta, GA 30301" +199745,Wired Headphones,1,11.99,05/08/19 19:09,"471 Walnut St, San Francisco, CA 94016" +199746,Google Phone,1,600,05/09/19 07:33,"416 South St, San Francisco, CA 94016" +199747,Bose SoundSport Headphones,1,99.99,05/19/19 20:39,"59 8th St, Austin, TX 73301" +199748,Apple Airpods Headphones,1,150,05/29/19 13:09,"648 Adams St, New York City, NY 10001" +199749,AA Batteries (4-pack),1,3.84,05/18/19 21:57,"590 South St, Portland, OR 97035" +199750,AAA Batteries (4-pack),1,2.99,05/10/19 22:52,"617 Pine St, San Francisco, CA 94016" +199751,Apple Airpods Headphones,2,150,05/01/19 20:34,"951 West St, Los Angeles, CA 90001" +199752,Google Phone,1,600,05/21/19 14:48,"260 Forest St, Dallas, TX 75001" +199753,27in 4K Gaming Monitor,1,389.99,05/04/19 20:53,"552 Madison St, Atlanta, GA 30301" +199754,27in FHD Monitor,1,149.99,05/27/19 01:18,"166 Cedar St, Portland, OR 97035" +199755,Bose SoundSport Headphones,1,99.99,05/08/19 13:51,"832 Park St, Boston, MA 02215" +199756,Bose SoundSport Headphones,1,99.99,05/28/19 13:39,"748 1st St, Boston, MA 02215" +199757,Wired Headphones,1,11.99,05/13/19 22:03,"907 Wilson St, Los Angeles, CA 90001" +199758,Lightning Charging Cable,1,14.95,05/21/19 12:21,"206 Main St, Portland, OR 97035" +199759,Wired Headphones,1,11.99,05/31/19 15:38,"609 14th St, Atlanta, GA 30301" +199760,Google Phone,1,600,05/18/19 13:40,"74 West St, San Francisco, CA 94016" +199760,Wired Headphones,1,11.99,05/18/19 13:40,"74 West St, San Francisco, CA 94016" +199761,Apple Airpods Headphones,1,150,05/31/19 18:11,"944 Hill St, San Francisco, CA 94016" +199762,Apple Airpods Headphones,1,150,05/15/19 09:23,"930 Wilson St, Los Angeles, CA 90001" +199763,Wired Headphones,1,11.99,05/11/19 20:28,"738 Spruce St, New York City, NY 10001" +199764,20in Monitor,1,109.99,05/30/19 19:45,"410 Dogwood St, Los Angeles, CA 90001" +199765,USB-C Charging Cable,1,11.95,05/21/19 11:18,"460 Adams St, New York City, NY 10001" +199766,34in Ultrawide Monitor,1,379.99,05/24/19 14:50,"125 Lincoln St, Portland, OR 97035" +199767,Wired Headphones,1,11.99,05/06/19 16:37,"888 Walnut St, Los Angeles, CA 90001" +199768,Wired Headphones,1,11.99,05/21/19 10:25,"752 Adams St, Los Angeles, CA 90001" +199769,Apple Airpods Headphones,1,150,05/06/19 11:52,"275 9th St, San Francisco, CA 94016" +199770,27in FHD Monitor,1,149.99,05/09/19 13:01,"767 Walnut St, San Francisco, CA 94016" +199771,Bose SoundSport Headphones,1,99.99,05/21/19 21:31,"793 Hill St, Portland, OR 97035" +199772,Macbook Pro Laptop,1,1700,05/30/19 12:09,"653 Madison St, Los Angeles, CA 90001" +199773,AA Batteries (4-pack),1,3.84,05/06/19 22:46,"686 Walnut St, Boston, MA 02215" +199774,Bose SoundSport Headphones,2,99.99,05/31/19 10:39,"841 Wilson St, Los Angeles, CA 90001" +199775,AA Batteries (4-pack),2,3.84,05/27/19 16:24,"311 Park St, San Francisco, CA 94016" +199776,AAA Batteries (4-pack),2,2.99,05/24/19 20:43,"986 7th St, San Francisco, CA 94016" +199777,AA Batteries (4-pack),1,3.84,05/01/19 10:26,"612 12th St, Seattle, WA 98101" +199778,Flatscreen TV,1,300,05/10/19 20:48,"926 Forest St, San Francisco, CA 94016" +199779,Bose SoundSport Headphones,1,99.99,05/10/19 11:21,"257 Highland St, San Francisco, CA 94016" +199780,AA Batteries (4-pack),1,3.84,05/12/19 12:44,"833 Maple St, Austin, TX 73301" +199781,Apple Airpods Headphones,1,150,05/08/19 23:55,"728 West St, Los Angeles, CA 90001" +199782,AA Batteries (4-pack),2,3.84,05/22/19 13:12,"76 Lincoln St, Los Angeles, CA 90001" +199783,AAA Batteries (4-pack),1,2.99,05/05/19 21:58,"40 Washington St, Portland, OR 97035" +199784,Google Phone,1,600,05/03/19 12:54,"638 6th St, Los Angeles, CA 90001" +199785,Wired Headphones,1,11.99,05/15/19 11:32,"605 Wilson St, Seattle, WA 98101" +199786,Lightning Charging Cable,1,14.95,05/04/19 21:35,"373 4th St, San Francisco, CA 94016" +199787,34in Ultrawide Monitor,1,379.99,05/15/19 23:51,"83 Hickory St, San Francisco, CA 94016" +199788,AA Batteries (4-pack),2,3.84,05/31/19 18:59,"13 9th St, Seattle, WA 98101" +199789,Bose SoundSport Headphones,1,99.99,05/20/19 14:35,"414 Johnson St, Los Angeles, CA 90001" +199790,Lightning Charging Cable,1,14.95,05/13/19 19:38,"645 Church St, Dallas, TX 75001" +199791,iPhone,1,700,05/08/19 11:30,"209 Maple St, Dallas, TX 75001" +199791,Wired Headphones,1,11.99,05/08/19 11:30,"209 Maple St, Dallas, TX 75001" +199792,27in 4K Gaming Monitor,1,389.99,05/03/19 17:56,"298 1st St, San Francisco, CA 94016" +199793,27in FHD Monitor,1,149.99,05/03/19 09:53,"215 Forest St, San Francisco, CA 94016" +199794,Wired Headphones,1,11.99,05/25/19 06:46,"563 5th St, San Francisco, CA 94016" +199795,27in FHD Monitor,1,149.99,05/07/19 14:56,"460 Cherry St, Dallas, TX 75001" +199796,Bose SoundSport Headphones,1,99.99,05/03/19 16:12,"733 Meadow St, Los Angeles, CA 90001" +199797,AA Batteries (4-pack),1,3.84,05/11/19 14:15,"327 8th St, Portland, OR 97035" +199798,Macbook Pro Laptop,1,1700,05/21/19 15:48,"416 2nd St, San Francisco, CA 94016" +199799,AA Batteries (4-pack),1,3.84,05/26/19 20:55,"702 South St, Portland, OR 97035" +199800,USB-C Charging Cable,1,11.95,05/29/19 13:41,"595 Main St, Seattle, WA 98101" +199801,Google Phone,1,600,05/01/19 08:19,"225 Lincoln St, New York City, NY 10001" +199802,AA Batteries (4-pack),1,3.84,05/15/19 16:15,"432 Meadow St, Boston, MA 02215" +199803,Lightning Charging Cable,1,14.95,05/19/19 12:24,"402 14th St, Austin, TX 73301" +199804,34in Ultrawide Monitor,1,379.99,05/31/19 23:47,"464 Center St, New York City, NY 10001" +199805,Lightning Charging Cable,1,14.95,05/15/19 16:27,"778 Pine St, Boston, MA 02215" +199806,iPhone,1,700,05/13/19 09:08,"593 Forest St, New York City, NY 10001" +199807,AAA Batteries (4-pack),2,2.99,05/02/19 11:23,"738 Washington St, New York City, NY 10001" +199808,AAA Batteries (4-pack),1,2.99,05/16/19 18:26,"130 11th St, Seattle, WA 98101" +199809,20in Monitor,1,109.99,05/05/19 14:27,"74 Spruce St, Dallas, TX 75001" +199810,27in FHD Monitor,1,149.99,05/18/19 13:58,"374 Park St, Los Angeles, CA 90001" +199811,AA Batteries (4-pack),1,3.84,05/31/19 17:01,"278 Spruce St, Boston, MA 02215" +199812,Lightning Charging Cable,1,14.95,05/24/19 12:00,"171 Meadow St, Los Angeles, CA 90001" +199813,Wired Headphones,1,11.99,05/22/19 09:31,"835 Johnson St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +199814,Lightning Charging Cable,2,14.95,05/25/19 19:55,"17 12th St, Los Angeles, CA 90001" +199815,AA Batteries (4-pack),1,3.84,05/28/19 16:20,"47 Meadow St, Atlanta, GA 30301" +199816,Bose SoundSport Headphones,1,99.99,05/04/19 13:41,"80 Meadow St, New York City, NY 10001" +199817,Wired Headphones,1,11.99,05/27/19 11:59,"347 Main St, Dallas, TX 75001" +199818,Macbook Pro Laptop,1,1700,05/23/19 20:42,"939 14th St, Dallas, TX 75001" +199819,AAA Batteries (4-pack),3,2.99,05/24/19 19:00,"6 Wilson St, Portland, OR 97035" +199820,34in Ultrawide Monitor,1,379.99,05/19/19 09:12,"940 8th St, Austin, TX 73301" +199821,AAA Batteries (4-pack),1,2.99,05/15/19 10:59,"570 Jefferson St, San Francisco, CA 94016" +199822,27in 4K Gaming Monitor,1,389.99,05/06/19 16:18,"48 Hill St, Boston, MA 02215" +199823,Wired Headphones,1,11.99,05/29/19 22:31,"609 Sunset St, Los Angeles, CA 90001" +199824,20in Monitor,1,109.99,05/19/19 08:44,"749 North St, Boston, MA 02215" +199825,27in FHD Monitor,1,149.99,05/03/19 20:13,"819 7th St, San Francisco, CA 94016" +199826,Lightning Charging Cable,1,14.95,05/24/19 15:31,"499 Ridge St, Dallas, TX 75001" +199827,Bose SoundSport Headphones,1,99.99,05/27/19 10:14,"958 Highland St, San Francisco, CA 94016" +199828,Google Phone,1,600,05/09/19 11:11,"245 9th St, Los Angeles, CA 90001" +199829,Google Phone,1,600,05/01/19 19:58,"466 Hickory St, San Francisco, CA 94016" +199829,Bose SoundSport Headphones,1,99.99,05/01/19 19:58,"466 Hickory St, San Francisco, CA 94016" +199830,Google Phone,1,600,05/06/19 13:14,"420 11th St, Dallas, TX 75001" +199830,Wired Headphones,1,11.99,05/06/19 13:14,"420 11th St, Dallas, TX 75001" +199831,27in 4K Gaming Monitor,1,389.99,05/30/19 07:20,"139 Willow St, New York City, NY 10001" +199832,Apple Airpods Headphones,1,150,05/13/19 21:47,"876 West St, Dallas, TX 75001" +199833,USB-C Charging Cable,2,11.95,05/11/19 00:13,"190 South St, New York City, NY 10001" +199834,Wired Headphones,1,11.99,05/01/19 23:19,"359 5th St, Atlanta, GA 30301" +199835,Apple Airpods Headphones,1,150,05/17/19 17:34,"244 Cedar St, Los Angeles, CA 90001" +199836,Macbook Pro Laptop,1,1700,05/14/19 21:22,"942 Jefferson St, Boston, MA 02215" +199837,Bose SoundSport Headphones,1,99.99,05/17/19 13:45,"586 North St, Seattle, WA 98101" +199838,27in 4K Gaming Monitor,1,389.99,05/13/19 11:28,"670 Wilson St, New York City, NY 10001" +199839,Wired Headphones,1,11.99,05/20/19 08:59,"751 Chestnut St, Los Angeles, CA 90001" +199840,Vareebadd Phone,1,400,05/20/19 11:34,"589 Willow St, New York City, NY 10001" +199841,Flatscreen TV,1,300,05/20/19 06:31,"851 West St, Dallas, TX 75001" +199842,Apple Airpods Headphones,1,150,05/10/19 16:26,"132 Johnson St, Austin, TX 73301" +199843,Flatscreen TV,1,300,05/20/19 20:32,"893 Elm St, Boston, MA 02215" +199844,Macbook Pro Laptop,1,1700,05/16/19 14:58,"837 Cedar St, San Francisco, CA 94016" +199845,27in FHD Monitor,1,149.99,05/28/19 16:38,"233 Willow St, Boston, MA 02215" +199846,Bose SoundSport Headphones,1,99.99,05/28/19 14:54,"129 Cherry St, New York City, NY 10001" +199847,USB-C Charging Cable,1,11.95,05/12/19 09:10,"795 5th St, Seattle, WA 98101" +199848,AAA Batteries (4-pack),1,2.99,05/22/19 23:15,"59 Ridge St, Austin, TX 73301" +199849,AA Batteries (4-pack),2,3.84,05/11/19 08:37,"514 9th St, Seattle, WA 98101" +199850,Vareebadd Phone,1,400,05/08/19 08:38,"98 12th St, Boston, MA 02215" +199850,USB-C Charging Cable,1,11.95,05/08/19 08:38,"98 12th St, Boston, MA 02215" +199851,Lightning Charging Cable,1,14.95,05/22/19 12:29,"756 14th St, San Francisco, CA 94016" +199852,Bose SoundSport Headphones,1,99.99,05/22/19 16:28,"306 2nd St, San Francisco, CA 94016" +199853,Wired Headphones,1,11.99,05/22/19 12:47,"92 West St, Boston, MA 02215" +199854,Apple Airpods Headphones,1,150,05/29/19 11:15,"405 Sunset St, San Francisco, CA 94016" +199855,AA Batteries (4-pack),2,3.84,05/16/19 20:38,"576 Hill St, Los Angeles, CA 90001" +199856,Lightning Charging Cable,1,14.95,05/21/19 17:04,"114 Spruce St, Seattle, WA 98101" +199857,iPhone,1,700,05/19/19 09:22,"714 Center St, Portland, OR 97035" +199857,Lightning Charging Cable,1,14.95,05/19/19 09:22,"714 Center St, Portland, OR 97035" +199858,iPhone,1,700,05/28/19 21:46,"194 Chestnut St, San Francisco, CA 94016" +199859,Lightning Charging Cable,1,14.95,05/16/19 07:58,"562 Cherry St, San Francisco, CA 94016" +199860,Bose SoundSport Headphones,1,99.99,05/07/19 19:25,"100 River St, San Francisco, CA 94016" +199861,USB-C Charging Cable,1,11.95,05/05/19 09:50,"586 1st St, Dallas, TX 75001" +199862,USB-C Charging Cable,1,11.95,05/20/19 21:29,"625 10th St, San Francisco, CA 94016" +199863,Apple Airpods Headphones,1,150,05/07/19 08:26,"356 14th St, Boston, MA 02215" +199864,AA Batteries (4-pack),1,3.84,05/14/19 20:33,"78 Cedar St, Seattle, WA 98101" +199865,27in 4K Gaming Monitor,1,389.99,05/23/19 12:15,"517 Highland St, Portland, OR 97035" +199866,USB-C Charging Cable,1,11.95,05/15/19 18:03,"17 Chestnut St, Boston, MA 02215" +199867,AA Batteries (4-pack),1,3.84,05/13/19 20:07,"234 11th St, Los Angeles, CA 90001" +199868,Macbook Pro Laptop,1,1700,05/14/19 09:38,"844 Forest St, Seattle, WA 98101" +199869,Wired Headphones,1,11.99,05/22/19 21:18,"724 10th St, Portland, OR 97035" +199870,AAA Batteries (4-pack),2,2.99,05/13/19 21:00,"849 Meadow St, New York City, NY 10001" +199871,Flatscreen TV,1,300,05/22/19 20:58,"608 Walnut St, Portland, OR 97035" +199872,AA Batteries (4-pack),1,3.84,05/22/19 23:26,"484 Hill St, Atlanta, GA 30301" +199873,20in Monitor,1,109.99,05/17/19 13:34,"483 Hickory St, New York City, NY 10001" +199874,Lightning Charging Cable,1,14.95,05/26/19 16:37,"612 Spruce St, Los Angeles, CA 90001" +199875,Google Phone,1,600,05/25/19 16:36,"612 Lincoln St, San Francisco, CA 94016" +199876,AAA Batteries (4-pack),1,2.99,05/20/19 00:41,"785 Johnson St, New York City, NY 10001" +199877,AAA Batteries (4-pack),2,2.99,05/10/19 21:32,"580 North St, Seattle, WA 98101" +199878,USB-C Charging Cable,1,11.95,05/27/19 13:16,"240 6th St, San Francisco, CA 94016" +199879,27in 4K Gaming Monitor,1,389.99,05/31/19 11:49,"216 Spruce St, Los Angeles, CA 90001" +199880,Bose SoundSport Headphones,1,99.99,05/29/19 11:12,"291 Ridge St, Austin, TX 73301" +199881,AAA Batteries (4-pack),1,2.99,05/07/19 16:41,"914 South St, Dallas, TX 75001" +199882,34in Ultrawide Monitor,1,379.99,05/29/19 16:18,"661 Jefferson St, New York City, NY 10001" +199883,Lightning Charging Cable,1,14.95,05/29/19 11:30,"808 Wilson St, Boston, MA 02215" +199884,AAA Batteries (4-pack),1,2.99,05/05/19 18:18,"54 1st St, Dallas, TX 75001" +199885,USB-C Charging Cable,1,11.95,05/05/19 07:14,"71 Maple St, Dallas, TX 75001" +,,,,, +199886,Apple Airpods Headphones,1,150,05/13/19 16:28,"295 2nd St, Austin, TX 73301" +199887,34in Ultrawide Monitor,1,379.99,05/15/19 12:07,"711 Hickory St, San Francisco, CA 94016" +199888,Apple Airpods Headphones,1,150,05/04/19 10:38,"289 Maple St, Boston, MA 02215" +199889,iPhone,1,700,05/25/19 07:30,"169 Cedar St, Dallas, TX 75001" +199890,Flatscreen TV,1,300,05/18/19 18:41,"338 Ridge St, San Francisco, CA 94016" +199891,27in 4K Gaming Monitor,1,389.99,05/28/19 22:58,"281 Johnson St, New York City, NY 10001" +199892,USB-C Charging Cable,1,11.95,05/22/19 19:23,"216 9th St, Austin, TX 73301" +199893,AAA Batteries (4-pack),1,2.99,05/06/19 20:05,"674 Lake St, Boston, MA 02215" +199894,27in FHD Monitor,1,149.99,05/31/19 01:14,"519 1st St, Los Angeles, CA 90001" +199895,iPhone,1,700,05/26/19 19:10,"775 2nd St, Seattle, WA 98101" +199895,20in Monitor,1,109.99,05/26/19 19:10,"775 2nd St, Seattle, WA 98101" +199896,AA Batteries (4-pack),1,3.84,05/15/19 18:13,"953 Forest St, Los Angeles, CA 90001" +199897,AA Batteries (4-pack),1,3.84,05/04/19 15:47,"872 Walnut St, New York City, NY 10001" +199898,Lightning Charging Cable,1,14.95,05/04/19 23:39,"712 Elm St, Austin, TX 73301" +199899,27in FHD Monitor,1,149.99,05/14/19 20:21,"128 6th St, Seattle, WA 98101" +199900,27in 4K Gaming Monitor,1,389.99,05/04/19 21:52,"433 Highland St, Los Angeles, CA 90001" +199901,20in Monitor,1,109.99,05/29/19 14:34,"341 Pine St, Boston, MA 02215" +199902,iPhone,1,700,05/09/19 17:39,"187 Dogwood St, Austin, TX 73301" +199902,Lightning Charging Cable,1,14.95,05/09/19 17:39,"187 Dogwood St, Austin, TX 73301" +199902,Wired Headphones,1,11.99,05/09/19 17:39,"187 Dogwood St, Austin, TX 73301" +199903,USB-C Charging Cable,1,11.95,05/23/19 09:09,"584 12th St, Los Angeles, CA 90001" +199904,Lightning Charging Cable,1,14.95,05/31/19 18:56,"426 2nd St, San Francisco, CA 94016" +199905,27in FHD Monitor,1,149.99,05/26/19 17:47,"561 Jefferson St, Los Angeles, CA 90001" +199906,USB-C Charging Cable,1,11.95,05/25/19 14:31,"851 Main St, Boston, MA 02215" +199907,Wired Headphones,1,11.99,05/25/19 19:28,"56 12th St, Los Angeles, CA 90001" +199908,AA Batteries (4-pack),1,3.84,05/11/19 09:33,"504 10th St, San Francisco, CA 94016" +199909,Bose SoundSport Headphones,1,99.99,05/08/19 09:25,"437 Madison St, Seattle, WA 98101" +199910,27in FHD Monitor,1,149.99,05/31/19 08:42,"182 Dogwood St, Portland, OR 97035" +199911,20in Monitor,1,109.99,05/26/19 13:13,"800 13th St, Boston, MA 02215" +199912,AA Batteries (4-pack),1,3.84,05/17/19 16:35,"382 Church St, New York City, NY 10001" +199913,Wired Headphones,1,11.99,05/19/19 13:40,"101 Lincoln St, Seattle, WA 98101" +199914,20in Monitor,1,109.99,05/25/19 19:22,"83 12th St, Portland, OR 97035" +199915,Apple Airpods Headphones,1,150,05/14/19 16:09,"364 10th St, Boston, MA 02215" +199916,34in Ultrawide Monitor,1,379.99,05/18/19 10:50,"847 Meadow St, San Francisco, CA 94016" +199917,AAA Batteries (4-pack),1,2.99,05/24/19 20:05,"889 Church St, Boston, MA 02215" +199918,20in Monitor,1,109.99,05/04/19 19:31,"596 5th St, Boston, MA 02215" +199919,AAA Batteries (4-pack),2,2.99,05/27/19 11:57,"993 Meadow St, New York City, NY 10001" +199920,AA Batteries (4-pack),1,3.84,05/22/19 14:44,"617 Center St, New York City, NY 10001" +199921,AA Batteries (4-pack),2,3.84,05/15/19 19:25,"252 Spruce St, New York City, NY 10001" +199922,27in FHD Monitor,1,149.99,05/02/19 11:20,"868 Dogwood St, San Francisco, CA 94016" +199923,27in FHD Monitor,2,149.99,05/21/19 15:13,"779 5th St, Los Angeles, CA 90001" +199924,Apple Airpods Headphones,1,150,05/19/19 15:26,"512 9th St, Boston, MA 02215" +199925,USB-C Charging Cable,1,11.95,05/20/19 17:58,"544 West St, New York City, NY 10001" +199926,Apple Airpods Headphones,1,150,05/18/19 17:02,"601 Meadow St, Boston, MA 02215" +199927,27in FHD Monitor,1,149.99,05/28/19 15:00,"983 6th St, Los Angeles, CA 90001" +199928,USB-C Charging Cable,1,11.95,05/06/19 13:42,"479 Jackson St, Seattle, WA 98101" +199929,USB-C Charging Cable,1,11.95,05/27/19 20:31,"538 Lincoln St, Atlanta, GA 30301" +199930,Lightning Charging Cable,1,14.95,05/12/19 02:19,"474 Meadow St, Austin, TX 73301" +199931,Flatscreen TV,1,300,05/09/19 16:49,"448 Main St, Los Angeles, CA 90001" +199932,AA Batteries (4-pack),1,3.84,05/27/19 14:15,"793 12th St, Boston, MA 02215" +199933,AAA Batteries (4-pack),1,2.99,05/17/19 15:32,"1 Adams St, Los Angeles, CA 90001" +199934,Flatscreen TV,1,300,05/15/19 23:28,"517 Cedar St, San Francisco, CA 94016" +199935,Bose SoundSport Headphones,1,99.99,05/07/19 08:29,"520 13th St, Portland, OR 97035" +199936,AAA Batteries (4-pack),1,2.99,05/29/19 20:05,"503 Willow St, San Francisco, CA 94016" +199937,Wired Headphones,1,11.99,05/13/19 20:17,"518 Cherry St, New York City, NY 10001" +199938,27in 4K Gaming Monitor,1,389.99,05/02/19 13:26,"565 Main St, Boston, MA 02215" +199939,Apple Airpods Headphones,1,150,05/30/19 18:07,"576 1st St, Los Angeles, CA 90001" +199940,27in FHD Monitor,1,149.99,05/10/19 21:32,"256 Johnson St, Portland, ME 04101" +199941,Wired Headphones,1,11.99,05/03/19 20:18,"724 Elm St, New York City, NY 10001" +199942,AA Batteries (4-pack),1,3.84,05/08/19 21:41,"161 Maple St, New York City, NY 10001" +199943,Lightning Charging Cable,1,14.95,05/03/19 20:15,"492 12th St, San Francisco, CA 94016" +199944,AAA Batteries (4-pack),1,2.99,05/28/19 22:55,"938 Chestnut St, Seattle, WA 98101" +199945,27in FHD Monitor,1,149.99,05/13/19 17:51,"708 Cherry St, New York City, NY 10001" +199946,USB-C Charging Cable,1,11.95,05/19/19 18:49,"754 Willow St, Los Angeles, CA 90001" +199947,USB-C Charging Cable,1,11.95,05/16/19 15:09,"506 West St, Los Angeles, CA 90001" +199948,Flatscreen TV,1,300,05/05/19 10:35,"233 Sunset St, San Francisco, CA 94016" +199949,Lightning Charging Cable,1,14.95,05/30/19 14:10,"992 Elm St, Austin, TX 73301" +199950,Bose SoundSport Headphones,1,99.99,05/18/19 11:35,"169 Dogwood St, San Francisco, CA 94016" +199951,27in FHD Monitor,1,149.99,05/27/19 18:19,"96 Center St, Los Angeles, CA 90001" +199952,AAA Batteries (4-pack),2,2.99,05/18/19 20:49,"354 1st St, Boston, MA 02215" +199953,Bose SoundSport Headphones,1,99.99,05/05/19 16:32,"615 Hickory St, Los Angeles, CA 90001" +199954,Wired Headphones,1,11.99,05/28/19 22:04,"434 Washington St, Seattle, WA 98101" +199955,Lightning Charging Cable,1,14.95,05/17/19 19:36,"395 9th St, San Francisco, CA 94016" +199956,27in 4K Gaming Monitor,1,389.99,05/25/19 08:37,"904 13th St, Seattle, WA 98101" +199957,iPhone,1,700,05/27/19 07:16,"191 Sunset St, Los Angeles, CA 90001" +199958,AAA Batteries (4-pack),3,2.99,05/16/19 23:12,"727 Pine St, New York City, NY 10001" +199959,AA Batteries (4-pack),3,3.84,05/21/19 21:40,"367 Forest St, Atlanta, GA 30301" +199960,Flatscreen TV,1,300,05/15/19 18:49,"903 Jefferson St, Boston, MA 02215" +199961,Apple Airpods Headphones,1,150,05/11/19 20:33,"976 Jefferson St, Dallas, TX 75001" +199962,Lightning Charging Cable,1,14.95,05/10/19 16:58,"81 Center St, San Francisco, CA 94016" +199963,Wired Headphones,1,11.99,05/11/19 17:21,"108 Adams St, San Francisco, CA 94016" +199964,27in 4K Gaming Monitor,1,389.99,05/14/19 08:39,"31 Church St, Atlanta, GA 30301" +199965,34in Ultrawide Monitor,1,379.99,05/27/19 00:09,"108 Highland St, San Francisco, CA 94016" +199966,AAA Batteries (4-pack),1,2.99,05/09/19 22:14,"180 River St, Portland, OR 97035" +199967,Wired Headphones,1,11.99,05/31/19 17:12,"865 Maple St, Boston, MA 02215" +199968,Lightning Charging Cable,1,14.95,05/27/19 14:46,"229 Hickory St, Portland, OR 97035" +199969,Lightning Charging Cable,1,14.95,05/28/19 00:00,"795 Forest St, Dallas, TX 75001" +199970,Wired Headphones,1,11.99,05/05/19 15:26,"5 Church St, Portland, OR 97035" +199971,Lightning Charging Cable,1,14.95,05/02/19 13:24,"325 Adams St, Dallas, TX 75001" +199972,AAA Batteries (4-pack),2,2.99,05/13/19 22:11,"913 Wilson St, San Francisco, CA 94016" +199973,AAA Batteries (4-pack),1,2.99,05/01/19 23:24,"966 Adams St, Boston, MA 02215" +199974,Flatscreen TV,1,300,05/18/19 20:44,"718 Forest St, San Francisco, CA 94016" +199975,Bose SoundSport Headphones,1,99.99,05/17/19 21:01,"455 12th St, Atlanta, GA 30301" +199976,Bose SoundSport Headphones,1,99.99,05/24/19 16:26,"438 4th St, San Francisco, CA 94016" +199977,Flatscreen TV,1,300,05/25/19 21:38,"42 Jackson St, Dallas, TX 75001" +199978,AAA Batteries (4-pack),1,2.99,05/05/19 14:26,"749 7th St, Dallas, TX 75001" +199979,AAA Batteries (4-pack),1,2.99,05/07/19 15:58,"404 River St, Atlanta, GA 30301" +199980,Lightning Charging Cable,1,14.95,05/06/19 12:21,"882 2nd St, Austin, TX 73301" +199981,USB-C Charging Cable,1,11.95,05/17/19 19:35,"261 Madison St, Boston, MA 02215" +199982,USB-C Charging Cable,1,11.95,05/28/19 09:43,"291 Jefferson St, Los Angeles, CA 90001" +199983,USB-C Charging Cable,1,11.95,05/19/19 13:31,"112 Pine St, San Francisco, CA 94016" +199984,27in 4K Gaming Monitor,1,389.99,05/08/19 21:33,"755 Elm St, Dallas, TX 75001" +199985,AAA Batteries (4-pack),1,2.99,05/10/19 09:41,"95 Dogwood St, New York City, NY 10001" +199986,Bose SoundSport Headphones,1,99.99,05/06/19 10:45,"147 6th St, New York City, NY 10001" +199987,AAA Batteries (4-pack),2,2.99,05/15/19 11:28,"857 12th St, New York City, NY 10001" +,,,,, +199988,USB-C Charging Cable,1,11.95,05/20/19 12:35,"428 Chestnut St, Dallas, TX 75001" +199989,Wired Headphones,1,11.99,05/25/19 10:00,"390 10th St, New York City, NY 10001" +199990,Wired Headphones,1,11.99,05/16/19 22:06,"586 Lake St, Portland, OR 97035" +199991,ThinkPad Laptop,1,999.99,05/02/19 19:29,"32 Hill St, San Francisco, CA 94016" +199992,Apple Airpods Headphones,1,150,05/28/19 23:48,"380 Pine St, Los Angeles, CA 90001" +199993,Apple Airpods Headphones,1,150,05/23/19 17:33,"523 1st St, Los Angeles, CA 90001" +199994,27in FHD Monitor,1,149.99,05/15/19 15:53,"869 South St, San Francisco, CA 94016" +199995,20in Monitor,1,109.99,05/18/19 18:16,"834 Maple St, Atlanta, GA 30301" +199996,AA Batteries (4-pack),1,3.84,05/29/19 22:20,"182 14th St, Los Angeles, CA 90001" +199997,Wired Headphones,1,11.99,05/23/19 18:01,"867 Willow St, New York City, NY 10001" +199998,Lightning Charging Cable,1,14.95,05/26/19 19:38,"802 Walnut St, San Francisco, CA 94016" +199999,Macbook Pro Laptop,1,1700,05/21/19 16:38,"748 West St, Atlanta, GA 30301" +200000,LG Dryer,1,600.0,05/07/19 20:30,"546 8th St, San Francisco, CA 94016" +200001,Flatscreen TV,1,300,05/08/19 11:12,"915 Lake St, Boston, MA 02215" +200002,Wired Headphones,1,11.99,05/05/19 21:59,"962 Cherry St, Atlanta, GA 30301" +200003,Wired Headphones,1,11.99,05/29/19 13:54,"431 Lake St, Seattle, WA 98101" +200004,Wired Headphones,1,11.99,05/09/19 20:00,"69 Jackson St, New York City, NY 10001" +200005,Flatscreen TV,1,300,05/08/19 22:54,"498 Washington St, Atlanta, GA 30301" +200006,AA Batteries (4-pack),1,3.84,05/21/19 20:22,"194 Hill St, Dallas, TX 75001" +200007,USB-C Charging Cable,1,11.95,05/13/19 20:24,"979 Church St, Portland, OR 97035" +200008,20in Monitor,1,109.99,05/11/19 19:49,"638 South St, San Francisco, CA 94016" +200009,AA Batteries (4-pack),2,3.84,05/31/19 11:52,"263 Lincoln St, Los Angeles, CA 90001" +200010,AA Batteries (4-pack),2,3.84,05/25/19 07:32,"533 Elm St, New York City, NY 10001" +200011,Wired Headphones,1,11.99,05/30/19 20:09,"469 Cherry St, Boston, MA 02215" +200012,Bose SoundSport Headphones,1,99.99,05/07/19 10:30,"782 Adams St, New York City, NY 10001" +200013,USB-C Charging Cable,1,11.95,05/22/19 11:56,"843 South St, New York City, NY 10001" +200014,AA Batteries (4-pack),1,3.84,05/31/19 19:07,"698 12th St, San Francisco, CA 94016" +200015,Bose SoundSport Headphones,1,99.99,05/12/19 22:05,"671 Forest St, Atlanta, GA 30301" +200016,Vareebadd Phone,1,400,05/25/19 10:17,"216 North St, New York City, NY 10001" +200017,Wired Headphones,1,11.99,05/20/19 13:01,"506 Willow St, Dallas, TX 75001" +200018,Bose SoundSport Headphones,2,99.99,05/12/19 17:35,"600 Lincoln St, Dallas, TX 75001" +200019,Wired Headphones,1,11.99,05/20/19 11:12,"611 6th St, Austin, TX 73301" +200020,Lightning Charging Cable,1,14.95,05/11/19 20:24,"250 Jackson St, Los Angeles, CA 90001" +200021,Flatscreen TV,1,300,05/08/19 09:19,"137 West St, San Francisco, CA 94016" +200022,AAA Batteries (4-pack),1,2.99,05/01/19 11:33,"703 Lakeview St, Portland, OR 97035" +200023,27in FHD Monitor,1,149.99,05/19/19 19:30,"336 Washington St, Los Angeles, CA 90001" +200024,Lightning Charging Cable,1,14.95,05/09/19 10:37,"931 Main St, Atlanta, GA 30301" +200025,Wired Headphones,1,11.99,05/31/19 18:32,"937 Lincoln St, Los Angeles, CA 90001" +200026,Apple Airpods Headphones,1,150,05/01/19 22:29,"962 Main St, Boston, MA 02215" +200027,Wired Headphones,1,11.99,05/21/19 15:03,"227 2nd St, San Francisco, CA 94016" +200027,Lightning Charging Cable,1,14.95,05/21/19 15:03,"227 2nd St, San Francisco, CA 94016" +200028,Bose SoundSport Headphones,1,99.99,05/06/19 08:36,"441 Johnson St, San Francisco, CA 94016" +200029,USB-C Charging Cable,1,11.95,05/20/19 21:52,"989 Church St, San Francisco, CA 94016" +200030,Bose SoundSport Headphones,1,99.99,05/28/19 13:03,"352 7th St, New York City, NY 10001" +200031,Wired Headphones,1,11.99,05/19/19 23:12,"728 Highland St, New York City, NY 10001" +200032,AA Batteries (4-pack),1,3.84,05/14/19 11:26,"553 Meadow St, Seattle, WA 98101" +200033,Lightning Charging Cable,1,14.95,05/24/19 21:43,"366 14th St, Austin, TX 73301" +200034,Apple Airpods Headphones,1,150,05/31/19 15:57,"486 Jefferson St, Los Angeles, CA 90001" +200035,AAA Batteries (4-pack),1,2.99,05/26/19 20:12,"320 Wilson St, Dallas, TX 75001" +200036,Bose SoundSport Headphones,1,99.99,05/11/19 16:18,"192 Highland St, Atlanta, GA 30301" +200037,34in Ultrawide Monitor,1,379.99,05/04/19 15:04,"693 Dogwood St, Portland, OR 97035" +200038,ThinkPad Laptop,1,999.99,05/12/19 21:11,"727 Wilson St, San Francisco, CA 94016" +200039,Wired Headphones,1,11.99,05/06/19 18:38,"633 South St, Portland, OR 97035" +200040,Apple Airpods Headphones,1,150,05/21/19 18:29,"53 Walnut St, San Francisco, CA 94016" +200041,34in Ultrawide Monitor,1,379.99,05/01/19 22:41,"758 West St, Atlanta, GA 30301" +200042,AAA Batteries (4-pack),1,2.99,05/26/19 19:55,"154 Pine St, San Francisco, CA 94016" +200043,AA Batteries (4-pack),1,3.84,05/31/19 10:09,"987 5th St, Los Angeles, CA 90001" +200044,AA Batteries (4-pack),1,3.84,05/29/19 11:10,"902 Cedar St, Los Angeles, CA 90001" +200045,AAA Batteries (4-pack),2,2.99,05/07/19 11:25,"750 River St, New York City, NY 10001" +200046,USB-C Charging Cable,1,11.95,05/06/19 09:20,"615 Lincoln St, Los Angeles, CA 90001" +200047,27in FHD Monitor,1,149.99,05/08/19 19:01,"403 South St, Atlanta, GA 30301" +200048,Apple Airpods Headphones,1,150,05/14/19 10:05,"295 North St, San Francisco, CA 94016" +200049,USB-C Charging Cable,1,11.95,05/06/19 20:09,"820 2nd St, Austin, TX 73301" +200050,AAA Batteries (4-pack),1,2.99,05/28/19 09:16,"855 Chestnut St, New York City, NY 10001" +200051,AAA Batteries (4-pack),1,2.99,05/18/19 17:59,"710 Center St, Los Angeles, CA 90001" +200052,LG Dryer,1,600.0,05/24/19 21:46,"929 Dogwood St, Dallas, TX 75001" +200053,USB-C Charging Cable,1,11.95,05/26/19 20:33,"450 6th St, Los Angeles, CA 90001" +200054,USB-C Charging Cable,1,11.95,05/06/19 16:12,"908 9th St, Portland, OR 97035" +200055,iPhone,1,700,05/05/19 12:27,"433 North St, San Francisco, CA 94016" +200056,USB-C Charging Cable,2,11.95,05/23/19 18:23,"121 Hill St, Boston, MA 02215" +200057,AAA Batteries (4-pack),4,2.99,05/18/19 23:54,"899 Spruce St, Boston, MA 02215" +200058,Lightning Charging Cable,1,14.95,05/28/19 12:39,"319 River St, Atlanta, GA 30301" +200059,34in Ultrawide Monitor,1,379.99,05/13/19 17:55,"66 11th St, Seattle, WA 98101" +200060,AAA Batteries (4-pack),1,2.99,05/29/19 17:30,"270 River St, San Francisco, CA 94016" +200061,34in Ultrawide Monitor,1,379.99,05/09/19 11:17,"560 Madison St, San Francisco, CA 94016" +200062,Bose SoundSport Headphones,1,99.99,05/10/19 15:22,"172 Cedar St, New York City, NY 10001" +200063,27in FHD Monitor,1,149.99,05/30/19 11:46,"185 1st St, Portland, OR 97035" +200064,AA Batteries (4-pack),2,3.84,05/29/19 16:45,"138 Hill St, New York City, NY 10001" +200065,34in Ultrawide Monitor,1,379.99,05/26/19 17:47,"136 Madison St, New York City, NY 10001" +200066,Lightning Charging Cable,1,14.95,05/03/19 14:32,"642 Park St, Boston, MA 02215" +200067,Apple Airpods Headphones,1,150,05/20/19 14:16,"239 7th St, New York City, NY 10001" +200068,USB-C Charging Cable,1,11.95,05/23/19 17:02,"90 Washington St, Boston, MA 02215" +200069,AA Batteries (4-pack),1,3.84,05/31/19 21:48,"932 Sunset St, New York City, NY 10001" +200070,Lightning Charging Cable,1,14.95,05/19/19 22:20,"339 Highland St, Seattle, WA 98101" +200071,Lightning Charging Cable,1,14.95,05/15/19 14:54,"267 Wilson St, Dallas, TX 75001" +200071,AAA Batteries (4-pack),1,2.99,05/15/19 14:54,"267 Wilson St, Dallas, TX 75001" +200072,34in Ultrawide Monitor,1,379.99,05/05/19 15:56,"897 West St, Seattle, WA 98101" +200073,34in Ultrawide Monitor,1,379.99,05/18/19 20:12,"615 12th St, San Francisco, CA 94016" +200074,27in 4K Gaming Monitor,1,389.99,05/27/19 10:31,"173 1st St, Austin, TX 73301" +200075,27in FHD Monitor,1,149.99,05/27/19 08:38,"393 Madison St, New York City, NY 10001" +200076,Wired Headphones,1,11.99,05/21/19 10:36,"52 Park St, New York City, NY 10001" +200077,Apple Airpods Headphones,1,150,05/22/19 20:05,"378 Highland St, Austin, TX 73301" +200078,iPhone,1,700,05/18/19 13:53,"547 Lincoln St, Austin, TX 73301" +200078,Lightning Charging Cable,1,14.95,05/18/19 13:53,"547 Lincoln St, Austin, TX 73301" +200079,Apple Airpods Headphones,1,150,05/04/19 10:37,"709 South St, New York City, NY 10001" +200080,Flatscreen TV,1,300,05/27/19 16:41,"381 Chestnut St, Atlanta, GA 30301" +200081,Lightning Charging Cable,1,14.95,05/13/19 13:46,"945 Madison St, Atlanta, GA 30301" +200082,AA Batteries (4-pack),1,3.84,05/25/19 13:08,"940 Dogwood St, Boston, MA 02215" +200083,Wired Headphones,1,11.99,05/23/19 11:37,"634 6th St, Los Angeles, CA 90001" +200084,USB-C Charging Cable,1,11.95,05/14/19 20:33,"843 Center St, Dallas, TX 75001" +200085,Apple Airpods Headphones,1,150,05/29/19 11:51,"512 Lincoln St, Los Angeles, CA 90001" +200086,AAA Batteries (4-pack),1,2.99,05/25/19 19:06,"396 6th St, Los Angeles, CA 90001" +200087,27in FHD Monitor,1,149.99,05/31/19 16:40,"927 14th St, Los Angeles, CA 90001" +200088,AAA Batteries (4-pack),1,2.99,05/27/19 07:55,"620 Madison St, New York City, NY 10001" +200089,Wired Headphones,1,11.99,05/06/19 19:26,"66 River St, New York City, NY 10001" +200090,AA Batteries (4-pack),1,3.84,05/21/19 13:46,"212 Meadow St, Los Angeles, CA 90001" +200091,Wired Headphones,1,11.99,05/30/19 10:01,"811 River St, Atlanta, GA 30301" +200092,Wired Headphones,1,11.99,05/23/19 17:25,"502 North St, Dallas, TX 75001" +200093,Apple Airpods Headphones,1,150,05/03/19 00:09,"466 Madison St, Atlanta, GA 30301" +200094,Lightning Charging Cable,1,14.95,05/16/19 14:26,"30 Main St, San Francisco, CA 94016" +200095,Macbook Pro Laptop,1,1700,05/06/19 19:06,"355 Church St, Boston, MA 02215" +200096,AA Batteries (4-pack),3,3.84,05/30/19 15:19,"190 Center St, San Francisco, CA 94016" +200097,27in 4K Gaming Monitor,1,389.99,05/08/19 16:10,"35 7th St, San Francisco, CA 94016" +200098,AA Batteries (4-pack),2,3.84,05/19/19 22:53,"341 2nd St, San Francisco, CA 94016" +200099,Wired Headphones,1,11.99,05/27/19 20:40,"302 13th St, Seattle, WA 98101" +200100,Lightning Charging Cable,1,14.95,05/13/19 09:12,"316 Sunset St, Atlanta, GA 30301" +200101,AAA Batteries (4-pack),2,2.99,05/12/19 12:14,"622 9th St, New York City, NY 10001" +200102,USB-C Charging Cable,1,11.95,05/29/19 12:55,"824 Madison St, Seattle, WA 98101" +200103,AA Batteries (4-pack),2,3.84,05/29/19 15:16,"225 Park St, New York City, NY 10001" +200104,Macbook Pro Laptop,1,1700,05/11/19 22:34,"3 Pine St, Los Angeles, CA 90001" +200105,AAA Batteries (4-pack),1,2.99,05/24/19 19:43,"705 Hill St, San Francisco, CA 94016" +200106,AAA Batteries (4-pack),1,2.99,05/20/19 19:37,"855 1st St, San Francisco, CA 94016" +200107,iPhone,1,700,05/06/19 11:03,"366 Hill St, San Francisco, CA 94016" +200108,USB-C Charging Cable,1,11.95,05/14/19 21:03,"915 Adams St, New York City, NY 10001" +200109,Wired Headphones,1,11.99,05/26/19 19:19,"549 6th St, Los Angeles, CA 90001" +200110,Wired Headphones,1,11.99,05/20/19 22:50,"644 Lake St, New York City, NY 10001" +200111,Google Phone,1,600,05/21/19 18:42,"239 Elm St, San Francisco, CA 94016" +200112,AA Batteries (4-pack),1,3.84,05/03/19 01:55,"10 Johnson St, Portland, OR 97035" +200113,AA Batteries (4-pack),1,3.84,05/12/19 21:26,"34 Dogwood St, Seattle, WA 98101" +200114,USB-C Charging Cable,2,11.95,05/18/19 10:22,"845 Park St, Los Angeles, CA 90001" +200115,AA Batteries (4-pack),1,3.84,05/13/19 11:50,"854 Johnson St, Austin, TX 73301" +200116,Lightning Charging Cable,1,14.95,05/23/19 13:33,"804 River St, Austin, TX 73301" +200117,LG Dryer,1,600.0,05/19/19 18:44,"864 11th St, San Francisco, CA 94016" +200118,Flatscreen TV,1,300,05/28/19 19:29,"464 Walnut St, Dallas, TX 75001" +200119,Lightning Charging Cable,1,14.95,05/15/19 21:01,"741 Jackson St, Austin, TX 73301" +200120,Google Phone,1,600,05/08/19 11:35,"725 14th St, Seattle, WA 98101" +200121,Lightning Charging Cable,1,14.95,05/17/19 10:33,"501 Hickory St, Los Angeles, CA 90001" +200122,Macbook Pro Laptop,1,1700,05/15/19 21:01,"13 8th St, Portland, OR 97035" +200123,Lightning Charging Cable,1,14.95,05/23/19 20:31,"214 11th St, Seattle, WA 98101" +200124,AAA Batteries (4-pack),1,2.99,05/20/19 17:10,"881 7th St, Atlanta, GA 30301" +200125,Bose SoundSport Headphones,1,99.99,05/13/19 20:38,"479 Center St, San Francisco, CA 94016" +200126,USB-C Charging Cable,2,11.95,05/22/19 14:20,"856 Elm St, San Francisco, CA 94016" +200127,USB-C Charging Cable,1,11.95,05/30/19 13:18,"709 Cedar St, San Francisco, CA 94016" +200128,USB-C Charging Cable,1,11.95,05/21/19 17:48,"877 2nd St, New York City, NY 10001" +200129,Wired Headphones,1,11.99,05/27/19 18:39,"655 River St, Dallas, TX 75001" +200130,Vareebadd Phone,1,400,05/18/19 23:18,"460 Walnut St, Austin, TX 73301" +200131,Wired Headphones,1,11.99,05/26/19 17:43,"676 Church St, Seattle, WA 98101" +200132,USB-C Charging Cable,2,11.95,05/28/19 07:32,"818 West St, San Francisco, CA 94016" +200133,iPhone,1,700,05/04/19 12:26,"278 13th St, San Francisco, CA 94016" +200134,USB-C Charging Cable,1,11.95,05/29/19 19:57,"49 Spruce St, Los Angeles, CA 90001" +200135,Wired Headphones,1,11.99,05/21/19 12:20,"413 11th St, Boston, MA 02215" +200136,Wired Headphones,1,11.99,05/22/19 17:51,"578 Lincoln St, Seattle, WA 98101" +200137,USB-C Charging Cable,1,11.95,05/20/19 18:10,"993 13th St, Boston, MA 02215" +200138,Wired Headphones,1,11.99,05/07/19 14:47,"833 Highland St, Seattle, WA 98101" +200139,USB-C Charging Cable,1,11.95,05/05/19 13:06,"24 Lake St, Austin, TX 73301" +200140,Apple Airpods Headphones,1,150,05/29/19 11:50,"633 Walnut St, Austin, TX 73301" +200141,Apple Airpods Headphones,1,150,05/31/19 07:51,"462 7th St, Dallas, TX 75001" +200142,Flatscreen TV,1,300,05/25/19 12:42,"32 Ridge St, Boston, MA 02215" +200143,USB-C Charging Cable,1,11.95,05/15/19 13:01,"843 Adams St, Seattle, WA 98101" +200144,Wired Headphones,1,11.99,05/16/19 17:13,"308 Washington St, New York City, NY 10001" +200145,Flatscreen TV,1,300,05/14/19 14:49,"183 10th St, Dallas, TX 75001" +200146,USB-C Charging Cable,1,11.95,05/26/19 18:02,"91 5th St, San Francisco, CA 94016" +200147,Bose SoundSport Headphones,1,99.99,05/02/19 14:58,"193 13th St, San Francisco, CA 94016" +200148,Google Phone,1,600,05/22/19 20:33,"940 Church St, Los Angeles, CA 90001" +200149,34in Ultrawide Monitor,2,379.99,05/17/19 18:21,"969 Maple St, Los Angeles, CA 90001" +200150,AA Batteries (4-pack),2,3.84,05/05/19 12:39,"918 North St, Boston, MA 02215" +200151,20in Monitor,1,109.99,05/06/19 23:31,"786 Madison St, Portland, OR 97035" +200152,AA Batteries (4-pack),2,3.84,05/28/19 09:37,"335 Lincoln St, Seattle, WA 98101" +200153,27in 4K Gaming Monitor,1,389.99,05/07/19 17:12,"231 Walnut St, Boston, MA 02215" +200154,AAA Batteries (4-pack),1,2.99,05/14/19 11:50,"442 8th St, San Francisco, CA 94016" +200155,Bose SoundSport Headphones,1,99.99,05/13/19 21:55,"623 Willow St, Seattle, WA 98101" +200156,Vareebadd Phone,1,400,05/09/19 14:55,"737 Ridge St, San Francisco, CA 94016" +200156,USB-C Charging Cable,1,11.95,05/09/19 14:55,"737 Ridge St, San Francisco, CA 94016" +200157,Apple Airpods Headphones,1,150,05/01/19 11:28,"306 West St, San Francisco, CA 94016" +200158,Flatscreen TV,1,300,05/14/19 13:59,"217 Spruce St, New York City, NY 10001" +200159,Google Phone,1,600,05/04/19 09:29,"79 10th St, Portland, OR 97035" +200159,USB-C Charging Cable,1,11.95,05/04/19 09:29,"79 10th St, Portland, OR 97035" +200160,AAA Batteries (4-pack),2,2.99,05/30/19 18:48,"767 Park St, San Francisco, CA 94016" +200161,AA Batteries (4-pack),1,3.84,05/05/19 18:45,"860 Cherry St, Austin, TX 73301" +200162,USB-C Charging Cable,1,11.95,05/12/19 16:02,"146 Pine St, New York City, NY 10001" +200163,34in Ultrawide Monitor,1,379.99,05/15/19 10:21,"332 Johnson St, Seattle, WA 98101" +200164,Google Phone,1,600,05/06/19 07:32,"709 6th St, New York City, NY 10001" +200164,Wired Headphones,1,11.99,05/06/19 07:32,"709 6th St, New York City, NY 10001" +200165,Bose SoundSport Headphones,1,99.99,05/10/19 09:16,"948 14th St, Atlanta, GA 30301" +200166,Wired Headphones,1,11.99,05/22/19 11:21,"383 Walnut St, Portland, OR 97035" +200167,Bose SoundSport Headphones,1,99.99,05/12/19 18:04,"473 Lincoln St, Dallas, TX 75001" +200168,iPhone,1,700,05/08/19 07:53,"992 Adams St, Los Angeles, CA 90001" +200169,AAA Batteries (4-pack),1,2.99,05/23/19 17:28,"654 Willow St, Portland, OR 97035" +200170,USB-C Charging Cable,1,11.95,05/26/19 18:51,"499 Washington St, Los Angeles, CA 90001" +200171,Apple Airpods Headphones,1,150,05/22/19 12:08,"921 South St, Seattle, WA 98101" +200172,USB-C Charging Cable,1,11.95,05/02/19 19:54,"586 Willow St, New York City, NY 10001" +200173,27in 4K Gaming Monitor,1,389.99,05/31/19 13:22,"503 Hill St, San Francisco, CA 94016" +200174,Vareebadd Phone,1,400,05/01/19 12:08,"400 Center St, Los Angeles, CA 90001" +200175,AA Batteries (4-pack),1,3.84,05/28/19 14:01,"949 11th St, San Francisco, CA 94016" +200176,27in 4K Gaming Monitor,1,389.99,05/19/19 11:10,"887 14th St, Los Angeles, CA 90001" +200177,Bose SoundSport Headphones,1,99.99,05/06/19 16:39,"76 Walnut St, Los Angeles, CA 90001" +200178,Apple Airpods Headphones,1,150,05/12/19 01:08,"639 Cedar St, Portland, OR 97035" +200179,iPhone,1,700,05/16/19 13:57,"263 Pine St, Boston, MA 02215" +200179,Lightning Charging Cable,1,14.95,05/16/19 13:57,"263 Pine St, Boston, MA 02215" +200180,Lightning Charging Cable,1,14.95,05/08/19 22:03,"492 Elm St, Dallas, TX 75001" +200181,USB-C Charging Cable,1,11.95,05/25/19 21:07,"207 Center St, Boston, MA 02215" +200182,USB-C Charging Cable,1,11.95,05/18/19 16:53,"801 Dogwood St, San Francisco, CA 94016" +200183,Flatscreen TV,1,300,05/25/19 20:12,"27 Hill St, San Francisco, CA 94016" +200184,iPhone,1,700,05/02/19 06:35,"282 Ridge St, New York City, NY 10001" +200184,Apple Airpods Headphones,1,150,05/02/19 06:35,"282 Ridge St, New York City, NY 10001" +200185,Wired Headphones,1,11.99,05/15/19 15:33,"28 Cedar St, Atlanta, GA 30301" +200186,Apple Airpods Headphones,1,150,05/11/19 15:21,"613 Sunset St, Atlanta, GA 30301" +200187,AA Batteries (4-pack),1,3.84,05/14/19 21:07,"177 Jackson St, Atlanta, GA 30301" +200188,Google Phone,1,600,05/06/19 11:51,"352 Sunset St, New York City, NY 10001" +200188,USB-C Charging Cable,1,11.95,05/06/19 11:51,"352 Sunset St, New York City, NY 10001" +200189,27in 4K Gaming Monitor,1,389.99,05/07/19 23:01,"281 Dogwood St, Austin, TX 73301" +200190,AAA Batteries (4-pack),1,2.99,05/03/19 14:58,"402 Dogwood St, Seattle, WA 98101" +200191,ThinkPad Laptop,1,999.99,05/15/19 02:42,"505 West St, Atlanta, GA 30301" +200192,AAA Batteries (4-pack),1,2.99,05/13/19 09:35,"245 Center St, Los Angeles, CA 90001" +200193,Google Phone,1,600,05/31/19 17:06,"480 Ridge St, Portland, ME 04101" +200194,Bose SoundSport Headphones,1,99.99,05/25/19 10:06,"716 Maple St, San Francisco, CA 94016" +200195,Wired Headphones,1,11.99,05/22/19 18:48,"831 South St, San Francisco, CA 94016" +200196,iPhone,1,700,05/24/19 15:21,"689 Forest St, Boston, MA 02215" +200197,AA Batteries (4-pack),1,3.84,05/30/19 15:36,"457 2nd St, Portland, OR 97035" +200198,USB-C Charging Cable,2,11.95,05/29/19 20:36,"634 2nd St, Boston, MA 02215" +200199,27in 4K Gaming Monitor,1,389.99,05/29/19 13:11,"655 Lincoln St, Los Angeles, CA 90001" +200200,AA Batteries (4-pack),1,3.84,05/01/19 09:44,"712 Highland St, New York City, NY 10001" +200201,27in FHD Monitor,1,149.99,05/27/19 23:57,"978 Ridge St, Los Angeles, CA 90001" +200202,Macbook Pro Laptop,1,1700,05/23/19 02:12,"16 Elm St, Boston, MA 02215" +200203,Google Phone,1,600,05/26/19 15:08,"985 West St, New York City, NY 10001" +200203,USB-C Charging Cable,1,11.95,05/26/19 15:08,"985 West St, New York City, NY 10001" +200204,Bose SoundSport Headphones,1,99.99,05/02/19 14:14,"667 7th St, Los Angeles, CA 90001" +200205,AAA Batteries (4-pack),1,2.99,05/01/19 22:42,"543 7th St, Los Angeles, CA 90001" +200206,Bose SoundSport Headphones,1,99.99,05/10/19 13:49,"316 Jackson St, Los Angeles, CA 90001" +200207,Bose SoundSport Headphones,1,99.99,05/22/19 09:06,"45 Willow St, Seattle, WA 98101" +200208,Lightning Charging Cable,1,14.95,05/25/19 15:20,"81 12th St, San Francisco, CA 94016" +200209,Flatscreen TV,1,300,05/15/19 17:28,"414 Church St, Portland, OR 97035" +200210,27in 4K Gaming Monitor,1,389.99,05/31/19 22:40,"648 Church St, Dallas, TX 75001" +200211,AAA Batteries (4-pack),1,2.99,05/24/19 12:12,"295 Lakeview St, New York City, NY 10001" +200212,AA Batteries (4-pack),1,3.84,05/01/19 21:52,"133 Chestnut St, Seattle, WA 98101" +200213,Lightning Charging Cable,1,14.95,05/27/19 19:08,"817 Cherry St, San Francisco, CA 94016" +200214,AA Batteries (4-pack),1,3.84,05/18/19 08:54,"15 Jackson St, New York City, NY 10001" +200215,AAA Batteries (4-pack),3,2.99,05/09/19 18:04,"497 Adams St, Boston, MA 02215" +200216,AA Batteries (4-pack),1,3.84,05/17/19 18:42,"891 11th St, San Francisco, CA 94016" +200217,27in 4K Gaming Monitor,1,389.99,05/16/19 20:28,"742 Walnut St, New York City, NY 10001" +200218,20in Monitor,1,109.99,05/18/19 06:10,"42 14th St, San Francisco, CA 94016" +200219,USB-C Charging Cable,1,11.95,05/26/19 21:57,"922 13th St, Austin, TX 73301" +200220,USB-C Charging Cable,1,11.95,05/08/19 20:15,"436 Hickory St, San Francisco, CA 94016" +200221,Wired Headphones,1,11.99,05/31/19 17:50,"367 Walnut St, San Francisco, CA 94016" +200222,AAA Batteries (4-pack),1,2.99,05/06/19 14:42,"180 Lakeview St, Dallas, TX 75001" +200223,AA Batteries (4-pack),1,3.84,05/11/19 13:44,"230 River St, Los Angeles, CA 90001" +200224,Wired Headphones,1,11.99,05/28/19 19:42,"820 Center St, Seattle, WA 98101" +200225,Macbook Pro Laptop,1,1700,05/14/19 13:31,"70 9th St, Portland, OR 97035" +200226,AA Batteries (4-pack),1,3.84,05/17/19 11:21,"690 10th St, Atlanta, GA 30301" +200227,Lightning Charging Cable,1,14.95,05/23/19 12:07,"445 12th St, Los Angeles, CA 90001" +200228,27in FHD Monitor,1,149.99,05/25/19 10:41,"812 1st St, Boston, MA 02215" +200229,Bose SoundSport Headphones,1,99.99,05/16/19 19:34,"888 Wilson St, Dallas, TX 75001" +200230,Wired Headphones,1,11.99,05/24/19 14:42,"823 Ridge St, Seattle, WA 98101" +200231,27in FHD Monitor,1,149.99,05/09/19 10:36,"975 Sunset St, Atlanta, GA 30301" +200232,Bose SoundSport Headphones,1,99.99,05/21/19 14:56,"958 1st St, Seattle, WA 98101" +200233,AA Batteries (4-pack),1,3.84,05/27/19 01:25,"483 North St, Boston, MA 02215" +200234,USB-C Charging Cable,1,11.95,05/24/19 18:59,"321 Madison St, Boston, MA 02215" +200235,Apple Airpods Headphones,1,150,05/24/19 14:28,"310 6th St, Los Angeles, CA 90001" +200236,27in 4K Gaming Monitor,1,389.99,05/29/19 13:48,"190 Madison St, Austin, TX 73301" +200237,AAA Batteries (4-pack),1,2.99,05/01/19 14:48,"228 River St, Portland, OR 97035" +200238,Apple Airpods Headphones,1,150,05/05/19 20:52,"819 Park St, San Francisco, CA 94016" +200239,USB-C Charging Cable,1,11.95,05/08/19 18:18,"882 Hill St, New York City, NY 10001" +200240,Apple Airpods Headphones,1,150,05/28/19 23:36,"891 Park St, Los Angeles, CA 90001" +200241,Apple Airpods Headphones,1,150,05/22/19 11:24,"984 9th St, Los Angeles, CA 90001" +200242,Lightning Charging Cable,2,14.95,05/16/19 14:33,"550 1st St, Boston, MA 02215" +200243,USB-C Charging Cable,2,11.95,05/06/19 08:44,"597 10th St, San Francisco, CA 94016" +200244,iPhone,1,700,05/09/19 14:45,"814 Cedar St, Boston, MA 02215" +200245,Bose SoundSport Headphones,1,99.99,05/26/19 14:59,"55 7th St, Portland, ME 04101" +200246,AAA Batteries (4-pack),2,2.99,05/19/19 20:59,"178 Lake St, New York City, NY 10001" +200247,AA Batteries (4-pack),2,3.84,05/29/19 09:08,"424 Ridge St, Atlanta, GA 30301" +200248,AA Batteries (4-pack),1,3.84,05/02/19 22:58,"6 Main St, San Francisco, CA 94016" +200249,Bose SoundSport Headphones,1,99.99,05/22/19 17:25,"447 Jefferson St, San Francisco, CA 94016" +200250,Apple Airpods Headphones,1,150,05/08/19 12:52,"357 Maple St, San Francisco, CA 94016" +200251,27in FHD Monitor,1,149.99,05/25/19 20:11,"665 12th St, San Francisco, CA 94016" +200252,Lightning Charging Cable,1,14.95,05/02/19 14:29,"511 South St, San Francisco, CA 94016" +200253,Wired Headphones,2,11.99,05/18/19 13:46,"759 Center St, San Francisco, CA 94016" +200254,Bose SoundSport Headphones,1,99.99,05/30/19 10:03,"882 Hill St, Los Angeles, CA 90001" +200255,USB-C Charging Cable,1,11.95,05/12/19 17:43,"347 Ridge St, Seattle, WA 98101" +200256,Google Phone,1,600,05/26/19 16:18,"81 4th St, Atlanta, GA 30301" +200257,27in 4K Gaming Monitor,1,389.99,05/01/19 19:59,"723 Maple St, Portland, OR 97035" +200258,USB-C Charging Cable,1,11.95,05/18/19 10:20,"458 11th St, Los Angeles, CA 90001" +200259,34in Ultrawide Monitor,1,379.99,05/25/19 13:52,"818 Lincoln St, San Francisco, CA 94016" +200260,AAA Batteries (4-pack),2,2.99,05/09/19 11:20,"384 Wilson St, San Francisco, CA 94016" +200261,AAA Batteries (4-pack),1,2.99,05/09/19 19:52,"307 Pine St, San Francisco, CA 94016" +200262,AA Batteries (4-pack),1,3.84,05/31/19 12:32,"527 12th St, Dallas, TX 75001" +200263,27in FHD Monitor,1,149.99,05/19/19 20:18,"848 Highland St, Los Angeles, CA 90001" +200264,27in FHD Monitor,1,149.99,05/04/19 23:02,"226 Meadow St, San Francisco, CA 94016" +200265,AAA Batteries (4-pack),2,2.99,05/27/19 05:17,"3 8th St, San Francisco, CA 94016" +200266,27in FHD Monitor,1,149.99,05/20/19 18:03,"581 Meadow St, Boston, MA 02215" +200267,Macbook Pro Laptop,1,1700,05/05/19 19:22,"845 11th St, Los Angeles, CA 90001" +200268,AA Batteries (4-pack),4,3.84,05/18/19 22:40,"347 11th St, New York City, NY 10001" +200269,AA Batteries (4-pack),2,3.84,05/26/19 13:58,"258 9th St, New York City, NY 10001" +200270,Lightning Charging Cable,1,14.95,05/16/19 13:10,"837 Jackson St, Boston, MA 02215" +200271,AA Batteries (4-pack),1,3.84,05/13/19 04:18,"102 Maple St, San Francisco, CA 94016" +200272,Lightning Charging Cable,1,14.95,05/15/19 22:05,"526 Maple St, New York City, NY 10001" +200273,AA Batteries (4-pack),1,3.84,05/22/19 17:00,"249 9th St, San Francisco, CA 94016" +200274,ThinkPad Laptop,1,999.99,05/30/19 16:09,"134 Adams St, San Francisco, CA 94016" +200275,27in FHD Monitor,1,149.99,05/25/19 07:35,"911 Lakeview St, Atlanta, GA 30301" +200276,Flatscreen TV,1,300,05/24/19 22:00,"22 1st St, San Francisco, CA 94016" +200277,34in Ultrawide Monitor,1,379.99,05/17/19 20:28,"72 Dogwood St, Austin, TX 73301" +200278,Wired Headphones,1,11.99,05/26/19 20:02,"50 9th St, Atlanta, GA 30301" +200279,AA Batteries (4-pack),1,3.84,05/13/19 07:59,"484 Cedar St, Los Angeles, CA 90001" +200280,Wired Headphones,1,11.99,05/15/19 22:11,"563 North St, San Francisco, CA 94016" +200281,AAA Batteries (4-pack),1,2.99,05/08/19 00:05,"754 Highland St, Atlanta, GA 30301" +200282,Lightning Charging Cable,1,14.95,05/06/19 11:25,"191 River St, New York City, NY 10001" +200283,Wired Headphones,1,11.99,05/21/19 12:17,"721 14th St, San Francisco, CA 94016" +200284,AAA Batteries (4-pack),2,2.99,05/15/19 09:19,"255 2nd St, Seattle, WA 98101" +200285,Wired Headphones,1,11.99,05/12/19 11:48,"838 Highland St, Seattle, WA 98101" +200286,Apple Airpods Headphones,1,150,05/04/19 13:23,"732 Main St, New York City, NY 10001" +200287,USB-C Charging Cable,1,11.95,05/09/19 22:09,"96 Hill St, Portland, OR 97035" +200288,Apple Airpods Headphones,1,150,05/30/19 19:29,"292 Hill St, New York City, NY 10001" +200289,AA Batteries (4-pack),2,3.84,05/04/19 14:44,"686 Lake St, Dallas, TX 75001" +200290,27in FHD Monitor,1,149.99,05/08/19 15:37,"486 Highland St, Los Angeles, CA 90001" +200291,20in Monitor,1,109.99,05/13/19 15:41,"161 Jackson St, Los Angeles, CA 90001" +200292,Wired Headphones,1,11.99,05/14/19 16:42,"481 Cherry St, San Francisco, CA 94016" +200293,USB-C Charging Cable,1,11.95,05/23/19 11:41,"973 7th St, San Francisco, CA 94016" +200294,34in Ultrawide Monitor,1,379.99,05/09/19 08:12,"522 5th St, Dallas, TX 75001" +200295,Flatscreen TV,1,300,05/25/19 18:23,"994 Madison St, Austin, TX 73301" +200296,Lightning Charging Cable,1,14.95,05/25/19 21:02,"7 2nd St, Austin, TX 73301" +200297,AAA Batteries (4-pack),1,2.99,05/29/19 18:59,"938 Forest St, Portland, ME 04101" +200298,Wired Headphones,1,11.99,05/07/19 12:14,"609 Willow St, New York City, NY 10001" +200299,AAA Batteries (4-pack),1,2.99,05/18/19 12:21,"905 Pine St, Los Angeles, CA 90001" +200300,Bose SoundSport Headphones,1,99.99,05/08/19 20:54,"898 11th St, San Francisco, CA 94016" +200301,AA Batteries (4-pack),1,3.84,05/11/19 02:04,"354 Center St, Los Angeles, CA 90001" +200302,Bose SoundSport Headphones,1,99.99,05/23/19 20:30,"818 Jefferson St, Seattle, WA 98101" +200303,USB-C Charging Cable,1,11.95,05/10/19 19:08,"633 Washington St, San Francisco, CA 94016" +200304,Flatscreen TV,1,300,05/28/19 16:12,"317 Johnson St, Seattle, WA 98101" +200305,Flatscreen TV,1,300,05/27/19 15:27,"420 Park St, San Francisco, CA 94016" +200306,Lightning Charging Cable,1,14.95,05/26/19 12:24,"142 12th St, San Francisco, CA 94016" +200307,USB-C Charging Cable,1,11.95,05/03/19 12:18,"853 Washington St, Seattle, WA 98101" +200308,AAA Batteries (4-pack),1,2.99,05/24/19 18:24,"280 Cherry St, San Francisco, CA 94016" +200309,AAA Batteries (4-pack),1,2.99,05/27/19 13:11,"590 Johnson St, New York City, NY 10001" +200310,Bose SoundSport Headphones,1,99.99,05/29/19 05:42,"122 9th St, Seattle, WA 98101" +200311,Apple Airpods Headphones,1,150,05/26/19 20:10,"732 Ridge St, Portland, OR 97035" +200312,Wired Headphones,1,11.99,05/10/19 10:22,"885 Wilson St, New York City, NY 10001" +200313,Bose SoundSport Headphones,1,99.99,05/18/19 22:32,"565 Walnut St, San Francisco, CA 94016" +200314,iPhone,1,700,05/26/19 16:22,"971 Wilson St, San Francisco, CA 94016" +200314,Lightning Charging Cable,1,14.95,05/26/19 16:22,"971 Wilson St, San Francisco, CA 94016" +200315,iPhone,1,700,05/16/19 13:23,"485 Elm St, Boston, MA 02215" +200315,Lightning Charging Cable,1,14.95,05/16/19 13:23,"485 Elm St, Boston, MA 02215" +200316,AA Batteries (4-pack),1,3.84,05/12/19 21:38,"268 Center St, Austin, TX 73301" +200317,Flatscreen TV,1,300,05/31/19 23:22,"1 5th St, Boston, MA 02215" +200318,27in FHD Monitor,1,149.99,05/31/19 08:19,"698 Washington St, San Francisco, CA 94016" +200319,27in FHD Monitor,1,149.99,05/03/19 12:17,"79 Cedar St, San Francisco, CA 94016" +200320,AA Batteries (4-pack),2,3.84,05/15/19 08:49,"111 Hill St, Los Angeles, CA 90001" +200321,ThinkPad Laptop,1,999.99,05/17/19 16:44,"4 Meadow St, Los Angeles, CA 90001" +200321,AAA Batteries (4-pack),1,2.99,05/17/19 16:44,"4 Meadow St, Los Angeles, CA 90001" +200322,USB-C Charging Cable,1,11.95,05/14/19 10:27,"350 North St, Seattle, WA 98101" +200323,iPhone,1,700,05/21/19 15:09,"129 Elm St, Atlanta, GA 30301" +200324,AAA Batteries (4-pack),1,2.99,05/20/19 13:23,"952 11th St, Dallas, TX 75001" +200325,Macbook Pro Laptop,1,1700,05/03/19 18:07,"722 Forest St, San Francisco, CA 94016" +200326,AA Batteries (4-pack),2,3.84,05/15/19 20:42,"492 11th St, Los Angeles, CA 90001" +200327,AA Batteries (4-pack),3,3.84,05/09/19 16:54,"487 Jefferson St, Los Angeles, CA 90001" +200328,27in FHD Monitor,1,149.99,05/22/19 20:50,"283 8th St, Boston, MA 02215" +200329,27in FHD Monitor,1,149.99,05/21/19 12:33,"776 Main St, Boston, MA 02215" +200330,Lightning Charging Cable,1,14.95,05/04/19 22:43,"750 Cedar St, San Francisco, CA 94016" +200331,Apple Airpods Headphones,1,150,05/31/19 19:40,"814 Center St, Los Angeles, CA 90001" +200332,Bose SoundSport Headphones,1,99.99,05/05/19 14:43,"267 South St, Los Angeles, CA 90001" +200333,34in Ultrawide Monitor,1,379.99,05/16/19 11:13,"644 Jefferson St, Atlanta, GA 30301" +200334,Wired Headphones,1,11.99,05/30/19 03:39,"950 13th St, Seattle, WA 98101" +200335,AAA Batteries (4-pack),1,2.99,05/31/19 15:46,"748 6th St, New York City, NY 10001" +200336,AA Batteries (4-pack),1,3.84,05/18/19 19:45,"564 Lincoln St, San Francisco, CA 94016" +200337,Wired Headphones,1,11.99,05/04/19 13:13,"916 2nd St, Portland, OR 97035" +200338,Wired Headphones,1,11.99,05/27/19 11:24,"397 12th St, San Francisco, CA 94016" +200339,Apple Airpods Headphones,1,150,05/22/19 13:29,"292 9th St, Austin, TX 73301" +200340,ThinkPad Laptop,1,999.99,05/14/19 20:23,"1 Forest St, New York City, NY 10001" +200341,Lightning Charging Cable,1,14.95,05/09/19 14:39,"504 Willow St, Dallas, TX 75001" +200341,Apple Airpods Headphones,1,150,05/09/19 14:39,"504 Willow St, Dallas, TX 75001" +200342,iPhone,1,700,05/24/19 19:11,"10 Hickory St, Atlanta, GA 30301" +200343,AA Batteries (4-pack),1,3.84,05/06/19 23:47,"364 Hickory St, San Francisco, CA 94016" +200344,AAA Batteries (4-pack),1,2.99,05/15/19 11:54,"192 Chestnut St, New York City, NY 10001" +200345,Macbook Pro Laptop,1,1700,05/26/19 19:10,"522 2nd St, Portland, OR 97035" +200346,Apple Airpods Headphones,1,150,05/02/19 11:28,"149 Sunset St, Portland, OR 97035" +200347,34in Ultrawide Monitor,1,379.99,05/12/19 18:34,"799 Wilson St, Los Angeles, CA 90001" +200348,AA Batteries (4-pack),1,3.84,05/26/19 15:03,"435 Park St, Dallas, TX 75001" +200349,Flatscreen TV,1,300,05/20/19 11:34,"638 Elm St, San Francisco, CA 94016" +200350,Google Phone,1,600,05/25/19 22:00,"369 Jefferson St, Seattle, WA 98101" +200351,Bose SoundSport Headphones,1,99.99,05/15/19 15:34,"365 Johnson St, Boston, MA 02215" +200352,AAA Batteries (4-pack),2,2.99,05/10/19 16:04,"502 Lakeview St, Seattle, WA 98101" +200353,Apple Airpods Headphones,1,150,05/29/19 10:31,"17 Lincoln St, Los Angeles, CA 90001" +200354,27in FHD Monitor,1,149.99,05/25/19 08:20,"465 Main St, Boston, MA 02215" +200355,Lightning Charging Cable,1,14.95,05/21/19 11:02,"109 2nd St, Los Angeles, CA 90001" +200356,AA Batteries (4-pack),2,3.84,05/13/19 14:02,"707 Church St, Los Angeles, CA 90001" +200357,LG Dryer,1,600.0,05/04/19 10:34,"175 River St, Los Angeles, CA 90001" +200358,iPhone,1,700,05/09/19 22:57,"289 Main St, Portland, ME 04101" +200359,USB-C Charging Cable,1,11.95,05/13/19 09:06,"648 Adams St, Atlanta, GA 30301" +200360,USB-C Charging Cable,1,11.95,05/03/19 22:42,"298 Center St, San Francisco, CA 94016" +200361,20in Monitor,1,109.99,05/19/19 08:31,"141 Church St, Seattle, WA 98101" +200362,34in Ultrawide Monitor,1,379.99,05/05/19 13:18,"238 Lincoln St, Boston, MA 02215" +200363,Wired Headphones,1,11.99,05/02/19 09:16,"207 13th St, Dallas, TX 75001" +200364,Google Phone,1,600,05/09/19 13:00,"41 Dogwood St, San Francisco, CA 94016" +200365,27in FHD Monitor,1,149.99,05/02/19 09:58,"348 Lake St, Los Angeles, CA 90001" +200366,USB-C Charging Cable,1,11.95,05/07/19 12:41,"672 Cedar St, San Francisco, CA 94016" +200367,Lightning Charging Cable,1,14.95,05/03/19 23:28,"237 4th St, New York City, NY 10001" +200368,USB-C Charging Cable,1,11.95,05/21/19 18:40,"43 Spruce St, Portland, ME 04101" +200369,Google Phone,1,600,05/21/19 20:34,"475 Cherry St, San Francisco, CA 94016" +200370,Bose SoundSport Headphones,1,99.99,05/30/19 19:17,"323 4th St, San Francisco, CA 94016" +200371,AA Batteries (4-pack),1,3.84,05/16/19 14:00,"328 Cedar St, New York City, NY 10001" +200372,Wired Headphones,1,11.99,05/15/19 13:48,"45 12th St, San Francisco, CA 94016" +200373,27in FHD Monitor,1,149.99,05/28/19 13:08,"92 Washington St, San Francisco, CA 94016" +200374,iPhone,1,700,05/01/19 12:08,"198 Church St, New York City, NY 10001" +200375,Macbook Pro Laptop,1,1700,05/26/19 10:16,"423 Sunset St, San Francisco, CA 94016" +200376,USB-C Charging Cable,1,11.95,05/31/19 07:06,"648 Highland St, New York City, NY 10001" +200377,USB-C Charging Cable,1,11.95,05/07/19 08:14,"459 Adams St, Boston, MA 02215" +200378,AAA Batteries (4-pack),2,2.99,05/07/19 13:18,"935 Ridge St, Boston, MA 02215" +200379,USB-C Charging Cable,2,11.95,05/30/19 07:31,"680 Spruce St, Portland, OR 97035" +200380,AA Batteries (4-pack),3,3.84,05/13/19 16:35,"422 9th St, Boston, MA 02215" +200381,27in 4K Gaming Monitor,1,389.99,05/16/19 10:54,"463 Ridge St, San Francisco, CA 94016" +200382,USB-C Charging Cable,1,11.95,05/15/19 18:51,"230 6th St, Dallas, TX 75001" +200383,Bose SoundSport Headphones,1,99.99,05/23/19 11:43,"460 Park St, New York City, NY 10001" +200384,AA Batteries (4-pack),1,3.84,05/06/19 03:10,"912 Lake St, Dallas, TX 75001" +200385,Bose SoundSport Headphones,1,99.99,05/06/19 13:26,"33 Meadow St, Los Angeles, CA 90001" +200386,USB-C Charging Cable,1,11.95,05/15/19 16:14,"670 Meadow St, San Francisco, CA 94016" +200387,AA Batteries (4-pack),1,3.84,05/25/19 17:24,"381 Washington St, San Francisco, CA 94016" +200388,34in Ultrawide Monitor,1,379.99,05/15/19 07:01,"349 13th St, Los Angeles, CA 90001" +200389,Wired Headphones,2,11.99,05/07/19 20:02,"123 Ridge St, Atlanta, GA 30301" +200389,AA Batteries (4-pack),1,3.84,05/07/19 20:02,"123 Ridge St, Atlanta, GA 30301" +200390,27in FHD Monitor,1,149.99,05/06/19 17:08,"619 8th St, San Francisco, CA 94016" +200390,Apple Airpods Headphones,1,150,05/06/19 17:08,"619 8th St, San Francisco, CA 94016" +200391,AAA Batteries (4-pack),1,2.99,05/15/19 14:27,"175 Center St, San Francisco, CA 94016" +200392,Bose SoundSport Headphones,1,99.99,05/28/19 12:22,"310 7th St, New York City, NY 10001" +200393,34in Ultrawide Monitor,1,379.99,05/18/19 18:12,"122 Highland St, San Francisco, CA 94016" +200394,ThinkPad Laptop,1,999.99,05/12/19 13:08,"199 Chestnut St, Boston, MA 02215" +200395,Apple Airpods Headphones,1,150,05/06/19 10:35,"726 Wilson St, Seattle, WA 98101" +200396,Apple Airpods Headphones,1,150,06/01/19 04:13,"368 Wilson St, Seattle, WA 98101" +200397,Apple Airpods Headphones,1,150,05/30/19 17:30,"975 Sunset St, Seattle, WA 98101" +200398,AAA Batteries (4-pack),1,2.99,05/06/19 22:08,"327 Johnson St, Los Angeles, CA 90001" +200399,iPhone,1,700,05/24/19 14:19,"717 Washington St, Portland, OR 97035" +200400,27in 4K Gaming Monitor,1,389.99,05/08/19 13:27,"454 Willow St, Los Angeles, CA 90001" +200401,USB-C Charging Cable,1,11.95,05/04/19 15:50,"712 Wilson St, San Francisco, CA 94016" +200402,USB-C Charging Cable,1,11.95,05/02/19 12:38,"871 Cherry St, New York City, NY 10001" +200403,USB-C Charging Cable,1,11.95,05/16/19 09:40,"451 Lake St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +200404,Lightning Charging Cable,1,14.95,05/08/19 10:30,"8 Meadow St, Austin, TX 73301" +200405,Flatscreen TV,1,300,05/23/19 13:37,"190 10th St, San Francisco, CA 94016" +200406,34in Ultrawide Monitor,1,379.99,05/26/19 13:22,"23 Adams St, San Francisco, CA 94016" +200407,AA Batteries (4-pack),2,3.84,05/04/19 22:20,"886 Johnson St, Boston, MA 02215" +200408,Apple Airpods Headphones,1,150,05/16/19 19:30,"891 Cedar St, Boston, MA 02215" +200409,Apple Airpods Headphones,1,150,05/17/19 10:59,"285 Hill St, Seattle, WA 98101" +200410,34in Ultrawide Monitor,1,379.99,05/04/19 18:37,"482 Lincoln St, Atlanta, GA 30301" +200411,Bose SoundSport Headphones,1,99.99,05/10/19 15:08,"470 4th St, Los Angeles, CA 90001" +200412,Bose SoundSport Headphones,1,99.99,05/26/19 14:18,"530 Park St, Austin, TX 73301" +200413,Lightning Charging Cable,1,14.95,05/08/19 12:29,"54 Center St, San Francisco, CA 94016" +200414,Bose SoundSport Headphones,1,99.99,05/29/19 09:10,"431 West St, San Francisco, CA 94016" +200415,AAA Batteries (4-pack),4,2.99,05/13/19 18:25,"328 14th St, Boston, MA 02215" +200416,Lightning Charging Cable,2,14.95,05/03/19 19:25,"955 6th St, New York City, NY 10001" +200417,iPhone,1,700,05/02/19 11:08,"992 Jefferson St, Dallas, TX 75001" +200418,AA Batteries (4-pack),1,3.84,05/21/19 11:57,"991 Church St, Austin, TX 73301" +200419,Google Phone,1,600,05/28/19 12:50,"987 Meadow St, New York City, NY 10001" +200420,20in Monitor,1,109.99,05/01/19 12:51,"485 Madison St, Boston, MA 02215" +200421,Bose SoundSport Headphones,1,99.99,05/04/19 20:04,"858 Maple St, Portland, OR 97035" +200422,USB-C Charging Cable,1,11.95,05/06/19 17:24,"407 Main St, Los Angeles, CA 90001" +200423,USB-C Charging Cable,1,11.95,05/24/19 09:37,"939 Jackson St, San Francisco, CA 94016" +200424,Vareebadd Phone,1,400,05/20/19 18:25,"343 Wilson St, Austin, TX 73301" +200425,USB-C Charging Cable,1,11.95,05/25/19 17:27,"353 Sunset St, New York City, NY 10001" +200426,USB-C Charging Cable,1,11.95,05/15/19 15:10,"737 7th St, San Francisco, CA 94016" +200427,LG Dryer,1,600.0,05/27/19 20:25,"764 Wilson St, New York City, NY 10001" +200428,USB-C Charging Cable,1,11.95,05/19/19 22:34,"863 5th St, Seattle, WA 98101" +200429,27in 4K Gaming Monitor,1,389.99,05/28/19 08:51,"457 4th St, Boston, MA 02215" +200430,AA Batteries (4-pack),1,3.84,05/23/19 15:19,"42 Wilson St, Boston, MA 02215" +200431,iPhone,1,700,05/26/19 08:24,"82 Wilson St, San Francisco, CA 94016" +200432,AAA Batteries (4-pack),1,2.99,05/11/19 10:44,"277 Maple St, Los Angeles, CA 90001" +200433,AA Batteries (4-pack),1,3.84,05/16/19 11:35,"612 14th St, Austin, TX 73301" +200434,Lightning Charging Cable,1,14.95,05/30/19 21:49,"120 Hickory St, San Francisco, CA 94016" +200435,Lightning Charging Cable,1,14.95,05/22/19 20:01,"294 Meadow St, Los Angeles, CA 90001" +200435,AAA Batteries (4-pack),1,2.99,05/22/19 20:01,"294 Meadow St, Los Angeles, CA 90001" +200436,Flatscreen TV,1,300,05/27/19 17:54,"915 Hill St, Portland, ME 04101" +200437,Apple Airpods Headphones,1,150,05/22/19 13:41,"193 Dogwood St, New York City, NY 10001" +200438,AAA Batteries (4-pack),1,2.99,05/18/19 17:11,"204 West St, Boston, MA 02215" +200439,Lightning Charging Cable,1,14.95,05/31/19 16:55,"66 Park St, San Francisco, CA 94016" +200440,AAA Batteries (4-pack),1,2.99,05/25/19 12:09,"82 West St, Boston, MA 02215" +200441,AAA Batteries (4-pack),1,2.99,05/07/19 21:03,"55 8th St, New York City, NY 10001" +200442,Wired Headphones,1,11.99,05/31/19 08:34,"127 Sunset St, Seattle, WA 98101" +200443,AA Batteries (4-pack),1,3.84,05/22/19 04:36,"382 River St, Portland, ME 04101" +200444,Wired Headphones,1,11.99,05/19/19 22:01,"541 Johnson St, San Francisco, CA 94016" +200445,USB-C Charging Cable,1,11.95,05/26/19 16:39,"841 14th St, Los Angeles, CA 90001" +200446,iPhone,1,700,05/05/19 15:36,"64 Cherry St, Austin, TX 73301" +200447,Lightning Charging Cable,1,14.95,05/01/19 20:48,"556 Cedar St, New York City, NY 10001" +200448,iPhone,1,700,05/19/19 13:56,"459 12th St, Dallas, TX 75001" +200449,Lightning Charging Cable,2,14.95,05/14/19 13:23,"505 4th St, Austin, TX 73301" +,,,,, +200450,Wired Headphones,1,11.99,05/30/19 12:23,"381 Willow St, Boston, MA 02215" +200451,Apple Airpods Headphones,1,150,05/19/19 14:01,"588 Lake St, Dallas, TX 75001" +200452,USB-C Charging Cable,1,11.95,05/28/19 21:04,"879 Spruce St, New York City, NY 10001" +200453,Lightning Charging Cable,1,14.95,05/19/19 14:44,"926 Pine St, Atlanta, GA 30301" +200454,34in Ultrawide Monitor,1,379.99,05/06/19 18:26,"602 Maple St, Seattle, WA 98101" +200455,Bose SoundSport Headphones,1,99.99,05/19/19 09:57,"889 Spruce St, Los Angeles, CA 90001" +200456,Lightning Charging Cable,1,14.95,05/08/19 20:52,"665 8th St, Seattle, WA 98101" +200457,Bose SoundSport Headphones,1,99.99,05/06/19 16:13,"173 8th St, New York City, NY 10001" +200458,AA Batteries (4-pack),2,3.84,05/28/19 13:37,"257 6th St, New York City, NY 10001" +200459,20in Monitor,1,109.99,05/17/19 17:34,"502 2nd St, Los Angeles, CA 90001" +200460,Apple Airpods Headphones,1,150,05/09/19 13:38,"885 7th St, New York City, NY 10001" +200461,USB-C Charging Cable,1,11.95,05/19/19 19:29,"46 Forest St, Dallas, TX 75001" +200462,USB-C Charging Cable,2,11.95,05/22/19 11:29,"713 Park St, San Francisco, CA 94016" +200463,Bose SoundSport Headphones,1,99.99,05/19/19 17:15,"339 Lincoln St, San Francisco, CA 94016" +200464,Macbook Pro Laptop,1,1700,05/31/19 21:16,"70 Washington St, Portland, OR 97035" +200465,USB-C Charging Cable,1,11.95,05/20/19 09:07,"379 8th St, Los Angeles, CA 90001" +200466,Wired Headphones,2,11.99,05/17/19 05:32,"95 Cedar St, Seattle, WA 98101" +200467,Flatscreen TV,1,300,05/20/19 21:13,"554 12th St, New York City, NY 10001" +200468,AA Batteries (4-pack),1,3.84,05/02/19 13:56,"418 Madison St, Dallas, TX 75001" +200469,Google Phone,1,600,05/15/19 13:29,"440 River St, San Francisco, CA 94016" +200470,Macbook Pro Laptop,1,1700,05/31/19 07:15,"943 Walnut St, Los Angeles, CA 90001" +200471,Lightning Charging Cable,1,14.95,05/17/19 09:50,"584 River St, San Francisco, CA 94016" +200472,Bose SoundSport Headphones,1,99.99,05/19/19 11:18,"169 Main St, San Francisco, CA 94016" +200473,Macbook Pro Laptop,1,1700,05/06/19 18:22,"621 Hickory St, Los Angeles, CA 90001" +200474,Bose SoundSport Headphones,1,99.99,05/24/19 11:11,"800 Spruce St, Boston, MA 02215" +200475,AAA Batteries (4-pack),2,2.99,05/21/19 20:21,"823 Walnut St, Boston, MA 02215" +200476,USB-C Charging Cable,1,11.95,05/16/19 13:38,"979 Sunset St, San Francisco, CA 94016" +200477,iPhone,1,700,05/31/19 21:55,"905 Adams St, Los Angeles, CA 90001" +200478,34in Ultrawide Monitor,1,379.99,05/22/19 12:25,"468 Highland St, New York City, NY 10001" +200479,Wired Headphones,2,11.99,05/25/19 13:45,"826 9th St, San Francisco, CA 94016" +200480,Google Phone,1,600,05/16/19 18:47,"166 Willow St, New York City, NY 10001" +200481,Apple Airpods Headphones,1,150,05/16/19 12:44,"32 Hickory St, Dallas, TX 75001" +200482,AA Batteries (4-pack),1,3.84,05/16/19 20:48,"920 Madison St, San Francisco, CA 94016" +200483,Apple Airpods Headphones,1,150,05/24/19 10:10,"624 13th St, Portland, OR 97035" +200484,AA Batteries (4-pack),1,3.84,05/03/19 14:51,"60 Chestnut St, Atlanta, GA 30301" +200485,ThinkPad Laptop,1,999.99,05/08/19 17:25,"610 Main St, Los Angeles, CA 90001" +200486,USB-C Charging Cable,1,11.95,05/26/19 19:44,"830 Lincoln St, New York City, NY 10001" +200487,Lightning Charging Cable,1,14.95,05/03/19 18:39,"651 2nd St, Dallas, TX 75001" +200488,34in Ultrawide Monitor,1,379.99,05/14/19 18:39,"139 Sunset St, Portland, OR 97035" +200489,AAA Batteries (4-pack),1,2.99,05/16/19 10:17,"402 Maple St, Atlanta, GA 30301" +200490,Bose SoundSport Headphones,1,99.99,05/24/19 08:27,"143 Hill St, San Francisco, CA 94016" +200491,AA Batteries (4-pack),1,3.84,05/15/19 07:29,"108 Jackson St, Seattle, WA 98101" +200492,Bose SoundSport Headphones,1,99.99,05/21/19 17:28,"800 North St, Los Angeles, CA 90001" +200493,Google Phone,1,600,05/06/19 13:08,"529 11th St, San Francisco, CA 94016" +200494,27in FHD Monitor,1,149.99,05/15/19 20:25,"67 Wilson St, Boston, MA 02215" +200495,Lightning Charging Cable,1,14.95,05/04/19 18:47,"644 North St, Seattle, WA 98101" +200496,Google Phone,1,600,05/23/19 18:00,"595 5th St, New York City, NY 10001" +200497,Lightning Charging Cable,1,14.95,05/07/19 19:57,"606 Spruce St, Boston, MA 02215" +200498,Flatscreen TV,1,300,05/05/19 12:54,"109 Walnut St, Los Angeles, CA 90001" +200499,AA Batteries (4-pack),1,3.84,05/31/19 13:30,"270 Cedar St, New York City, NY 10001" +200500,Lightning Charging Cable,1,14.95,05/04/19 14:58,"545 Dogwood St, New York City, NY 10001" +200501,Bose SoundSport Headphones,1,99.99,05/11/19 10:31,"204 Wilson St, New York City, NY 10001" +200502,AA Batteries (4-pack),1,3.84,05/13/19 06:51,"659 Main St, San Francisco, CA 94016" +200503,Google Phone,1,600,05/06/19 12:14,"112 Elm St, Seattle, WA 98101" +200504,Apple Airpods Headphones,1,150,05/28/19 14:35,"755 Ridge St, Los Angeles, CA 90001" +200505,Macbook Pro Laptop,1,1700,05/09/19 20:01,"703 North St, Los Angeles, CA 90001" +200506,Lightning Charging Cable,1,14.95,05/12/19 17:14,"265 Pine St, Seattle, WA 98101" +200507,Lightning Charging Cable,1,14.95,05/15/19 13:12,"985 12th St, San Francisco, CA 94016" +200508,AA Batteries (4-pack),2,3.84,05/14/19 01:36,"17 Meadow St, San Francisco, CA 94016" +200509,Apple Airpods Headphones,1,150,05/19/19 15:33,"518 4th St, Austin, TX 73301" +200510,USB-C Charging Cable,1,11.95,05/30/19 19:10,"668 Forest St, Seattle, WA 98101" +200511,Lightning Charging Cable,1,14.95,05/03/19 16:35,"964 Church St, New York City, NY 10001" +200512,AAA Batteries (4-pack),1,2.99,05/10/19 10:31,"160 Dogwood St, Boston, MA 02215" +200513,Vareebadd Phone,1,400,05/14/19 14:56,"689 Dogwood St, Portland, OR 97035" +200514,USB-C Charging Cable,1,11.95,05/28/19 09:01,"667 10th St, Atlanta, GA 30301" +200515,Macbook Pro Laptop,1,1700,05/23/19 23:48,"387 Forest St, Atlanta, GA 30301" +200516,27in 4K Gaming Monitor,1,389.99,05/28/19 13:10,"514 West St, Portland, OR 97035" +200517,Apple Airpods Headphones,1,150,05/24/19 15:59,"841 5th St, San Francisco, CA 94016" +200518,27in FHD Monitor,1,149.99,05/04/19 13:26,"280 Hickory St, San Francisco, CA 94016" +200519,Apple Airpods Headphones,1,150,05/13/19 13:03,"73 Main St, Los Angeles, CA 90001" +200520,27in 4K Gaming Monitor,1,389.99,05/21/19 20:11,"628 Jackson St, Boston, MA 02215" +200521,AA Batteries (4-pack),1,3.84,05/26/19 17:58,"183 11th St, Atlanta, GA 30301" +200522,Wired Headphones,2,11.99,05/27/19 17:39,"187 Cedar St, Los Angeles, CA 90001" +200523,Apple Airpods Headphones,1,150,05/27/19 20:28,"166 9th St, San Francisco, CA 94016" +200524,27in 4K Gaming Monitor,1,389.99,05/04/19 13:54,"329 Madison St, Los Angeles, CA 90001" +200525,Flatscreen TV,1,300,05/07/19 13:43,"407 2nd St, Los Angeles, CA 90001" +200526,Lightning Charging Cable,1,14.95,05/10/19 21:06,"801 Wilson St, Atlanta, GA 30301" +200527,27in 4K Gaming Monitor,1,389.99,05/09/19 19:53,"635 Sunset St, New York City, NY 10001" +200528,Lightning Charging Cable,1,14.95,05/26/19 16:03,"240 Willow St, Los Angeles, CA 90001" +200529,Bose SoundSport Headphones,1,99.99,05/05/19 18:46,"510 Center St, San Francisco, CA 94016" +200530,iPhone,1,700,05/23/19 11:34,"611 Pine St, Atlanta, GA 30301" +200531,Wired Headphones,1,11.99,05/21/19 11:45,"223 Sunset St, Los Angeles, CA 90001" +200532,Flatscreen TV,1,300,05/05/19 07:05,"404 5th St, Atlanta, GA 30301" +200533,AAA Batteries (4-pack),3,2.99,05/25/19 18:47,"504 Willow St, San Francisco, CA 94016" +200534,Wired Headphones,1,11.99,05/12/19 11:13,"509 Spruce St, San Francisco, CA 94016" +200535,Wired Headphones,1,11.99,05/12/19 11:51,"796 7th St, Los Angeles, CA 90001" +200536,Wired Headphones,2,11.99,05/12/19 12:55,"144 2nd St, San Francisco, CA 94016" +200537,27in FHD Monitor,1,149.99,05/23/19 19:37,"364 Church St, Dallas, TX 75001" +200538,Wired Headphones,1,11.99,05/25/19 18:11,"111 Maple St, Portland, OR 97035" +200539,20in Monitor,1,109.99,05/15/19 19:03,"538 Johnson St, Austin, TX 73301" +200540,Bose SoundSport Headphones,1,99.99,05/22/19 11:36,"633 Cedar St, Los Angeles, CA 90001" +200541,27in FHD Monitor,1,149.99,05/01/19 17:42,"925 Spruce St, Seattle, WA 98101" +200542,Apple Airpods Headphones,1,150,05/27/19 16:44,"139 Hickory St, San Francisco, CA 94016" +,,,,, +200543,Google Phone,1,600,05/27/19 21:29,"704 9th St, Los Angeles, CA 90001" +200543,Wired Headphones,1,11.99,05/27/19 21:29,"704 9th St, Los Angeles, CA 90001" +200544,27in 4K Gaming Monitor,1,389.99,05/27/19 16:20,"955 West St, San Francisco, CA 94016" +200545,Flatscreen TV,1,300,05/03/19 21:42,"985 Spruce St, Boston, MA 02215" +200546,ThinkPad Laptop,1,999.99,05/13/19 17:24,"974 Johnson St, New York City, NY 10001" +200547,Macbook Pro Laptop,1,1700,05/06/19 00:14,"208 Highland St, San Francisco, CA 94016" +200548,AA Batteries (4-pack),1,3.84,05/18/19 18:58,"983 Jackson St, San Francisco, CA 94016" +200549,Macbook Pro Laptop,1,1700,05/16/19 11:21,"347 6th St, Boston, MA 02215" +200550,Google Phone,1,600,05/17/19 11:21,"230 North St, San Francisco, CA 94016" +200551,iPhone,1,700,05/31/19 09:22,"265 Spruce St, Boston, MA 02215" +200552,AA Batteries (4-pack),1,3.84,05/11/19 16:55,"457 Washington St, Los Angeles, CA 90001" +200553,AAA Batteries (4-pack),1,2.99,05/16/19 16:51,"901 Pine St, Boston, MA 02215" +200554,27in FHD Monitor,1,149.99,05/26/19 13:44,"461 Center St, New York City, NY 10001" +200555,Lightning Charging Cable,1,14.95,05/14/19 22:06,"578 Washington St, Boston, MA 02215" +200556,Lightning Charging Cable,1,14.95,05/15/19 14:17,"568 4th St, San Francisco, CA 94016" +200557,AAA Batteries (4-pack),2,2.99,05/03/19 10:11,"252 North St, Portland, OR 97035" +200558,AAA Batteries (4-pack),1,2.99,05/01/19 09:04,"793 Dogwood St, Boston, MA 02215" +200558,Vareebadd Phone,2,400,05/01/19 09:04,"793 Dogwood St, Boston, MA 02215" +200559,20in Monitor,1,109.99,05/20/19 12:15,"96 Hickory St, Austin, TX 73301" +200559,AA Batteries (4-pack),1,3.84,05/20/19 12:15,"96 Hickory St, Austin, TX 73301" +200560,Bose SoundSport Headphones,1,99.99,05/10/19 12:50,"473 Hickory St, San Francisco, CA 94016" +200561,27in 4K Gaming Monitor,1,389.99,05/12/19 16:46,"422 River St, Dallas, TX 75001" +200562,Wired Headphones,1,11.99,05/20/19 21:38,"244 Hickory St, Atlanta, GA 30301" +200563,iPhone,1,700,05/27/19 16:59,"993 Hickory St, Los Angeles, CA 90001" +200563,Lightning Charging Cable,1,14.95,05/27/19 16:59,"993 Hickory St, Los Angeles, CA 90001" +200564,AAA Batteries (4-pack),2,2.99,05/02/19 10:01,"610 7th St, Boston, MA 02215" +200565,Bose SoundSport Headphones,1,99.99,05/29/19 16:27,"141 4th St, Boston, MA 02215" +200566,AA Batteries (4-pack),1,3.84,05/06/19 21:36,"754 Hickory St, San Francisco, CA 94016" +200567,Flatscreen TV,1,300,05/11/19 17:51,"686 Chestnut St, San Francisco, CA 94016" +200568,Lightning Charging Cable,1,14.95,05/19/19 01:06,"844 Willow St, Los Angeles, CA 90001" +200569,Macbook Pro Laptop,1,1700,05/02/19 09:12,"144 7th St, Seattle, WA 98101" +200570,USB-C Charging Cable,1,11.95,05/10/19 11:30,"648 Hickory St, New York City, NY 10001" +200571,Wired Headphones,1,11.99,05/03/19 21:05,"485 Elm St, Dallas, TX 75001" +200572,Wired Headphones,1,11.99,05/25/19 18:56,"204 West St, San Francisco, CA 94016" +200573,Lightning Charging Cable,1,14.95,05/28/19 11:27,"285 12th St, Dallas, TX 75001" +200574,AAA Batteries (4-pack),1,2.99,05/30/19 13:33,"384 Highland St, Seattle, WA 98101" +200575,Apple Airpods Headphones,1,150,05/08/19 10:51,"175 Sunset St, Boston, MA 02215" +200576,Lightning Charging Cable,1,14.95,05/31/19 11:02,"555 Pine St, Boston, MA 02215" +200577,AA Batteries (4-pack),1,3.84,05/09/19 23:28,"362 Ridge St, San Francisco, CA 94016" +200578,27in 4K Gaming Monitor,1,389.99,05/25/19 17:48,"666 North St, Atlanta, GA 30301" +200579,Bose SoundSport Headphones,1,99.99,05/18/19 02:14,"775 Elm St, Boston, MA 02215" +200580,AA Batteries (4-pack),1,3.84,05/07/19 08:52,"988 Church St, Portland, ME 04101" +200581,USB-C Charging Cable,1,11.95,05/27/19 12:11,"609 Maple St, Seattle, WA 98101" +200582,Bose SoundSport Headphones,1,99.99,05/10/19 15:01,"352 6th St, San Francisco, CA 94016" +200583,Lightning Charging Cable,1,14.95,05/06/19 19:12,"428 Jefferson St, Seattle, WA 98101" +200584,AAA Batteries (4-pack),1,2.99,05/11/19 15:13,"161 Wilson St, Boston, MA 02215" +200585,AAA Batteries (4-pack),1,2.99,05/22/19 12:28,"450 Elm St, San Francisco, CA 94016" +200586,Wired Headphones,1,11.99,05/30/19 12:56,"671 Jefferson St, New York City, NY 10001" +200587,Wired Headphones,1,11.99,05/01/19 21:03,"154 Johnson St, San Francisco, CA 94016" +200588,AA Batteries (4-pack),1,3.84,05/10/19 17:04,"611 10th St, Los Angeles, CA 90001" +200589,USB-C Charging Cable,1,11.95,05/24/19 00:16,"883 10th St, Los Angeles, CA 90001" +200590,34in Ultrawide Monitor,1,379.99,05/12/19 15:01,"668 14th St, Portland, OR 97035" +200591,27in FHD Monitor,1,149.99,05/09/19 20:22,"290 12th St, Los Angeles, CA 90001" +200592,AA Batteries (4-pack),3,3.84,05/14/19 18:35,"256 Madison St, Seattle, WA 98101" +200593,USB-C Charging Cable,1,11.95,05/12/19 23:48,"235 Spruce St, Boston, MA 02215" +200594,Google Phone,1,600,05/11/19 10:15,"918 Spruce St, Los Angeles, CA 90001" +200595,USB-C Charging Cable,1,11.95,05/17/19 21:39,"60 Wilson St, Portland, ME 04101" +200596,AAA Batteries (4-pack),1,2.99,05/20/19 18:43,"712 2nd St, New York City, NY 10001" +200597,AA Batteries (4-pack),1,3.84,05/29/19 01:51,"184 West St, Boston, MA 02215" +200598,Wired Headphones,2,11.99,05/19/19 21:56,"187 1st St, Dallas, TX 75001" +200599,AAA Batteries (4-pack),2,2.99,05/09/19 11:50,"299 Willow St, Los Angeles, CA 90001" +200600,Bose SoundSport Headphones,1,99.99,05/05/19 08:09,"113 Dogwood St, San Francisco, CA 94016" +200601,USB-C Charging Cable,1,11.95,05/12/19 13:51,"861 Jefferson St, Seattle, WA 98101" +200602,Bose SoundSport Headphones,1,99.99,05/26/19 12:39,"193 13th St, San Francisco, CA 94016" +200603,Wired Headphones,1,11.99,05/26/19 21:32,"329 Lake St, San Francisco, CA 94016" +200604,AAA Batteries (4-pack),1,2.99,05/20/19 18:20,"616 Adams St, Atlanta, GA 30301" +200605,Flatscreen TV,1,300,05/28/19 01:54,"865 Chestnut St, New York City, NY 10001" +200606,Vareebadd Phone,1,400,05/15/19 13:54,"762 Jackson St, San Francisco, CA 94016" +200607,Bose SoundSport Headphones,1,99.99,05/26/19 02:03,"332 Pine St, San Francisco, CA 94016" +200608,AA Batteries (4-pack),1,3.84,05/25/19 07:20,"378 Cherry St, Los Angeles, CA 90001" +200609,AA Batteries (4-pack),1,3.84,05/18/19 23:32,"968 Highland St, Seattle, WA 98101" +200610,27in FHD Monitor,1,149.99,05/05/19 12:26,"58 Church St, Los Angeles, CA 90001" +200611,Lightning Charging Cable,1,14.95,05/15/19 13:47,"250 River St, San Francisco, CA 94016" +200612,Bose SoundSport Headphones,1,99.99,05/23/19 21:24,"878 Washington St, New York City, NY 10001" +200613,Bose SoundSport Headphones,1,99.99,05/23/19 19:22,"282 Meadow St, San Francisco, CA 94016" +200614,Macbook Pro Laptop,1,1700,05/29/19 15:41,"194 Highland St, Seattle, WA 98101" +200615,Wired Headphones,1,11.99,05/17/19 22:35,"613 5th St, Austin, TX 73301" +200616,Bose SoundSport Headphones,1,99.99,05/25/19 14:33,"791 River St, Portland, OR 97035" +200617,AA Batteries (4-pack),1,3.84,05/21/19 11:18,"529 5th St, Los Angeles, CA 90001" +200618,AAA Batteries (4-pack),2,2.99,05/28/19 12:40,"629 Sunset St, Seattle, WA 98101" +200619,Google Phone,1,600,05/22/19 19:40,"981 Main St, San Francisco, CA 94016" +200619,USB-C Charging Cable,1,11.95,05/22/19 19:40,"981 Main St, San Francisco, CA 94016" +200620,AAA Batteries (4-pack),1,2.99,05/18/19 20:24,"149 9th St, Atlanta, GA 30301" +200621,Apple Airpods Headphones,1,150,05/30/19 17:58,"906 Forest St, Portland, OR 97035" +200622,USB-C Charging Cable,2,11.95,05/14/19 16:28,"625 Hill St, Portland, ME 04101" +200623,Flatscreen TV,1,300,05/14/19 20:09,"297 Maple St, San Francisco, CA 94016" +200624,iPhone,1,700,05/10/19 10:45,"201 14th St, Atlanta, GA 30301" +200625,Lightning Charging Cable,2,14.95,05/02/19 23:41,"426 Madison St, Portland, OR 97035" +200626,Google Phone,1,600,05/29/19 07:17,"709 Highland St, Dallas, TX 75001" +200626,Wired Headphones,1,11.99,05/29/19 07:17,"709 Highland St, Dallas, TX 75001" +200627,27in FHD Monitor,1,149.99,05/12/19 00:31,"897 Chestnut St, Boston, MA 02215" +200628,USB-C Charging Cable,1,11.95,05/30/19 19:50,"214 West St, San Francisco, CA 94016" +200629,Vareebadd Phone,1,400,05/16/19 15:24,"707 Lincoln St, New York City, NY 10001" +200630,27in FHD Monitor,1,149.99,05/16/19 08:00,"341 Meadow St, Atlanta, GA 30301" +200631,ThinkPad Laptop,1,999.99,05/16/19 09:37,"553 North St, Austin, TX 73301" +200632,Macbook Pro Laptop,1,1700,05/20/19 13:13,"819 Park St, San Francisco, CA 94016" +200633,34in Ultrawide Monitor,1,379.99,05/01/19 14:37,"882 9th St, Dallas, TX 75001" +200634,Apple Airpods Headphones,1,150,05/09/19 15:58,"356 Cherry St, Atlanta, GA 30301" +200635,ThinkPad Laptop,1,999.99,05/05/19 15:57,"91 4th St, Dallas, TX 75001" +200636,USB-C Charging Cable,1,11.95,05/15/19 11:55,"262 South St, Los Angeles, CA 90001" +200637,USB-C Charging Cable,1,11.95,05/09/19 14:20,"708 Madison St, New York City, NY 10001" +200638,Wired Headphones,1,11.99,05/06/19 13:51,"781 2nd St, Portland, OR 97035" +200639,34in Ultrawide Monitor,1,379.99,05/28/19 10:28,"211 West St, Boston, MA 02215" +200640,AAA Batteries (4-pack),3,2.99,05/29/19 22:35,"911 Walnut St, San Francisco, CA 94016" +200641,34in Ultrawide Monitor,1,379.99,05/09/19 08:40,"531 Jackson St, Los Angeles, CA 90001" +200642,Apple Airpods Headphones,1,150,05/23/19 18:54,"19 Spruce St, San Francisco, CA 94016" +200643,Macbook Pro Laptop,1,1700,05/11/19 15:23,"528 10th St, Los Angeles, CA 90001" +200644,AA Batteries (4-pack),1,3.84,05/22/19 06:17,"208 Highland St, New York City, NY 10001" +200645,AAA Batteries (4-pack),2,2.99,05/03/19 10:08,"578 14th St, Los Angeles, CA 90001" +200646,USB-C Charging Cable,1,11.95,05/02/19 08:39,"960 West St, Atlanta, GA 30301" +200647,AA Batteries (4-pack),3,3.84,05/20/19 08:58,"352 Elm St, San Francisco, CA 94016" +200648,Wired Headphones,1,11.99,05/04/19 10:51,"65 Chestnut St, Dallas, TX 75001" +200649,Lightning Charging Cable,1,14.95,05/08/19 22:41,"561 7th St, Portland, OR 97035" +200650,USB-C Charging Cable,1,11.95,05/21/19 19:43,"866 4th St, San Francisco, CA 94016" +200651,27in FHD Monitor,1,149.99,05/21/19 04:37,"878 4th St, Los Angeles, CA 90001" +200652,AAA Batteries (4-pack),1,2.99,05/22/19 14:54,"307 West St, San Francisco, CA 94016" +200653,Lightning Charging Cable,1,14.95,05/22/19 00:50,"821 Main St, New York City, NY 10001" +200654,Flatscreen TV,1,300,05/19/19 08:45,"547 5th St, New York City, NY 10001" +200655,AAA Batteries (4-pack),1,2.99,05/06/19 01:02,"483 10th St, Los Angeles, CA 90001" +200656,Lightning Charging Cable,1,14.95,05/17/19 07:51,"855 5th St, Atlanta, GA 30301" +200657,27in 4K Gaming Monitor,1,389.99,05/15/19 06:41,"209 Dogwood St, Boston, MA 02215" +200658,Lightning Charging Cable,1,14.95,05/13/19 13:56,"961 Main St, Boston, MA 02215" +200659,AA Batteries (4-pack),1,3.84,05/25/19 18:58,"225 6th St, San Francisco, CA 94016" +200660,27in FHD Monitor,1,149.99,05/28/19 18:50,"462 7th St, Dallas, TX 75001" +200661,Apple Airpods Headphones,1,150,05/14/19 13:20,"857 North St, Austin, TX 73301" +200662,34in Ultrawide Monitor,1,379.99,05/21/19 23:46,"757 Willow St, Portland, OR 97035" +200663,USB-C Charging Cable,1,11.95,05/19/19 20:56,"330 4th St, Austin, TX 73301" +200664,34in Ultrawide Monitor,1,379.99,05/11/19 18:43,"463 Johnson St, New York City, NY 10001" +200665,Macbook Pro Laptop,1,1700,05/03/19 20:07,"584 Lincoln St, New York City, NY 10001" +200666,Wired Headphones,1,11.99,05/11/19 13:09,"777 Center St, Atlanta, GA 30301" +200667,Bose SoundSport Headphones,1,99.99,05/21/19 14:43,"127 Church St, Los Angeles, CA 90001" +200668,USB-C Charging Cable,1,11.95,05/21/19 10:22,"401 11th St, Los Angeles, CA 90001" +200669,Bose SoundSport Headphones,1,99.99,05/07/19 20:13,"141 Center St, San Francisco, CA 94016" +200670,27in FHD Monitor,1,149.99,05/23/19 21:55,"502 12th St, Boston, MA 02215" +200671,Wired Headphones,1,11.99,05/09/19 09:48,"922 Adams St, Boston, MA 02215" +200672,AAA Batteries (4-pack),1,2.99,05/26/19 09:32,"473 North St, Austin, TX 73301" +200673,ThinkPad Laptop,1,999.99,05/25/19 18:03,"481 Hickory St, San Francisco, CA 94016" +200674,AA Batteries (4-pack),1,3.84,05/28/19 12:53,"639 14th St, Los Angeles, CA 90001" +200675,34in Ultrawide Monitor,1,379.99,05/08/19 18:49,"600 Madison St, San Francisco, CA 94016" +200676,Lightning Charging Cable,1,14.95,05/20/19 16:32,"344 8th St, San Francisco, CA 94016" +200677,Flatscreen TV,1,300,05/21/19 14:03,"244 Dogwood St, Boston, MA 02215" +200678,Bose SoundSport Headphones,1,99.99,05/03/19 18:51,"22 Cherry St, New York City, NY 10001" +200679,AAA Batteries (4-pack),1,2.99,05/16/19 02:51,"721 Elm St, Boston, MA 02215" +200680,USB-C Charging Cable,1,11.95,05/30/19 08:33,"802 River St, Atlanta, GA 30301" +200681,Lightning Charging Cable,1,14.95,05/03/19 21:20,"69 Pine St, San Francisco, CA 94016" +200682,Flatscreen TV,1,300,05/02/19 18:55,"393 Jackson St, New York City, NY 10001" +200683,27in FHD Monitor,1,149.99,05/24/19 08:53,"171 2nd St, Seattle, WA 98101" +200684,iPhone,1,700,05/18/19 10:59,"218 4th St, San Francisco, CA 94016" +200684,Lightning Charging Cable,2,14.95,05/18/19 10:59,"218 4th St, San Francisco, CA 94016" +200685,AAA Batteries (4-pack),1,2.99,05/30/19 09:55,"502 North St, San Francisco, CA 94016" +200686,AAA Batteries (4-pack),1,2.99,05/09/19 02:00,"712 6th St, Seattle, WA 98101" +200687,USB-C Charging Cable,1,11.95,05/05/19 16:46,"923 Willow St, San Francisco, CA 94016" +200688,27in 4K Gaming Monitor,1,389.99,05/11/19 13:27,"316 12th St, Austin, TX 73301" +200689,AAA Batteries (4-pack),4,2.99,05/02/19 19:27,"616 Wilson St, Los Angeles, CA 90001" +200689,AA Batteries (4-pack),1,3.84,05/02/19 19:27,"616 Wilson St, Los Angeles, CA 90001" +200690,20in Monitor,1,109.99,05/06/19 18:09,"281 14th St, Los Angeles, CA 90001" +200691,Lightning Charging Cable,1,14.95,05/16/19 00:09,"580 Park St, Boston, MA 02215" +200692,Bose SoundSport Headphones,1,99.99,05/26/19 19:25,"54 Adams St, Seattle, WA 98101" +200693,Flatscreen TV,1,300,05/19/19 17:35,"569 6th St, Los Angeles, CA 90001" +200694,Wired Headphones,1,11.99,05/11/19 20:55,"460 Park St, Boston, MA 02215" +200695,USB-C Charging Cable,1,11.95,05/25/19 18:20,"326 5th St, Atlanta, GA 30301" +200695,Macbook Pro Laptop,1,1700,05/25/19 18:20,"326 5th St, Atlanta, GA 30301" +200696,Lightning Charging Cable,1,14.95,05/28/19 18:56,"357 Ridge St, Atlanta, GA 30301" +200697,Bose SoundSport Headphones,1,99.99,05/17/19 12:21,"912 6th St, Seattle, WA 98101" +200698,USB-C Charging Cable,1,11.95,05/01/19 22:11,"681 Center St, Seattle, WA 98101" +200699,Lightning Charging Cable,1,14.95,05/09/19 08:29,"249 Lakeview St, Boston, MA 02215" +200700,USB-C Charging Cable,1,11.95,05/07/19 09:39,"421 10th St, Atlanta, GA 30301" +200701,AA Batteries (4-pack),1,3.84,05/13/19 11:07,"960 Elm St, Los Angeles, CA 90001" +200702,USB-C Charging Cable,1,11.95,05/17/19 21:32,"691 Chestnut St, San Francisco, CA 94016" +200703,Apple Airpods Headphones,1,150,05/16/19 13:05,"941 5th St, Los Angeles, CA 90001" +200704,Wired Headphones,2,11.99,05/21/19 08:24,"231 7th St, New York City, NY 10001" +200704,Bose SoundSport Headphones,1,99.99,05/21/19 08:24,"231 7th St, New York City, NY 10001" +200705,Wired Headphones,1,11.99,05/10/19 21:28,"336 13th St, New York City, NY 10001" +200706,AAA Batteries (4-pack),2,2.99,05/14/19 16:57,"434 Lakeview St, Boston, MA 02215" +200707,USB-C Charging Cable,2,11.95,05/29/19 20:17,"267 Sunset St, Austin, TX 73301" +200708,Wired Headphones,1,11.99,05/19/19 19:28,"166 Jackson St, Atlanta, GA 30301" +200709,Lightning Charging Cable,1,14.95,05/22/19 08:15,"43 Wilson St, Los Angeles, CA 90001" +200710,Flatscreen TV,1,300,05/07/19 11:39,"397 8th St, San Francisco, CA 94016" +200711,Macbook Pro Laptop,1,1700,05/22/19 08:57,"461 8th St, San Francisco, CA 94016" +200712,AAA Batteries (4-pack),1,2.99,05/18/19 21:33,"826 Jackson St, San Francisco, CA 94016" +200713,Lightning Charging Cable,1,14.95,05/09/19 09:01,"204 Johnson St, Dallas, TX 75001" +200714,Wired Headphones,1,11.99,05/03/19 10:15,"3 Willow St, Los Angeles, CA 90001" +200715,AAA Batteries (4-pack),1,2.99,05/05/19 05:33,"975 Sunset St, Boston, MA 02215" +200716,Flatscreen TV,1,300,05/05/19 19:58,"849 7th St, San Francisco, CA 94016" +200717,Wired Headphones,1,11.99,05/09/19 09:48,"227 13th St, San Francisco, CA 94016" +200718,iPhone,1,700,05/30/19 03:00,"87 River St, Portland, OR 97035" +200718,Wired Headphones,1,11.99,05/30/19 03:00,"87 River St, Portland, OR 97035" +200719,iPhone,1,700,05/22/19 20:15,"485 Maple St, Los Angeles, CA 90001" +200720,Apple Airpods Headphones,1,150,05/26/19 17:29,"944 1st St, Boston, MA 02215" +200721,USB-C Charging Cable,1,11.95,05/16/19 13:37,"198 13th St, Portland, OR 97035" +200722,AA Batteries (4-pack),1,3.84,05/02/19 22:11,"843 Park St, Atlanta, GA 30301" +200723,USB-C Charging Cable,1,11.95,05/21/19 15:30,"707 Walnut St, Boston, MA 02215" +200724,AAA Batteries (4-pack),2,2.99,05/03/19 17:55,"38 1st St, Seattle, WA 98101" +200725,Flatscreen TV,1,300,05/18/19 11:50,"861 Park St, San Francisco, CA 94016" +200726,AAA Batteries (4-pack),1,2.99,05/31/19 23:52,"286 Hickory St, San Francisco, CA 94016" +200727,AA Batteries (4-pack),1,3.84,05/11/19 20:01,"229 South St, Austin, TX 73301" +200728,AA Batteries (4-pack),5,3.84,05/02/19 12:58,"584 Jefferson St, Dallas, TX 75001" +200729,AAA Batteries (4-pack),1,2.99,05/27/19 01:03,"862 Park St, New York City, NY 10001" +200730,Wired Headphones,1,11.99,05/19/19 09:05,"900 North St, Portland, OR 97035" +200731,USB-C Charging Cable,1,11.95,05/14/19 12:16,"59 Lakeview St, San Francisco, CA 94016" +200732,AAA Batteries (4-pack),2,2.99,05/15/19 07:09,"146 Adams St, Dallas, TX 75001" +200733,Lightning Charging Cable,1,14.95,05/05/19 10:41,"900 Jackson St, Dallas, TX 75001" +200734,ThinkPad Laptop,1,999.99,05/19/19 09:31,"20 Center St, San Francisco, CA 94016" +200735,AA Batteries (4-pack),1,3.84,05/19/19 18:22,"779 Dogwood St, New York City, NY 10001" +200736,Lightning Charging Cable,1,14.95,05/07/19 23:01,"815 5th St, Atlanta, GA 30301" +200737,Apple Airpods Headphones,1,150,05/05/19 01:45,"232 South St, Portland, OR 97035" +200738,Bose SoundSport Headphones,1,99.99,05/19/19 21:12,"597 River St, San Francisco, CA 94016" +200739,Bose SoundSport Headphones,1,99.99,05/14/19 20:52,"209 Elm St, Boston, MA 02215" +200740,AAA Batteries (4-pack),1,2.99,05/02/19 20:28,"969 Forest St, Seattle, WA 98101" +200741,Macbook Pro Laptop,1,1700,05/10/19 12:02,"463 6th St, Austin, TX 73301" +200742,Bose SoundSport Headphones,1,99.99,05/23/19 09:02,"887 Jefferson St, Portland, ME 04101" +200742,AA Batteries (4-pack),1,3.84,05/23/19 09:02,"887 Jefferson St, Portland, ME 04101" +200743,Wired Headphones,1,11.99,05/07/19 22:35,"381 1st St, Portland, OR 97035" +200744,27in FHD Monitor,1,149.99,05/23/19 17:17,"558 12th St, Dallas, TX 75001" +200745,Macbook Pro Laptop,1,1700,05/14/19 19:48,"858 Wilson St, San Francisco, CA 94016" +200746,Bose SoundSport Headphones,2,99.99,05/02/19 19:47,"864 Dogwood St, Portland, ME 04101" +200747,Flatscreen TV,1,300,05/28/19 20:08,"500 4th St, Dallas, TX 75001" +200748,Apple Airpods Headphones,1,150,05/30/19 00:16,"312 Washington St, Atlanta, GA 30301" +200749,ThinkPad Laptop,1,999.99,05/10/19 23:30,"3 Elm St, New York City, NY 10001" +200750,Bose SoundSport Headphones,1,99.99,05/13/19 16:13,"53 Pine St, Atlanta, GA 30301" +200751,Bose SoundSport Headphones,1,99.99,05/03/19 12:13,"408 Madison St, Austin, TX 73301" +200752,Apple Airpods Headphones,1,150,05/16/19 16:16,"439 West St, Austin, TX 73301" +200753,27in FHD Monitor,1,149.99,05/28/19 11:15,"523 Washington St, Austin, TX 73301" +200754,Google Phone,1,600,05/10/19 19:14,"492 Wilson St, Dallas, TX 75001" +200755,Wired Headphones,2,11.99,05/09/19 23:27,"327 8th St, Boston, MA 02215" +200756,USB-C Charging Cable,1,11.95,05/06/19 20:54,"28 Church St, Austin, TX 73301" +200757,Google Phone,1,600,05/27/19 14:26,"638 North St, San Francisco, CA 94016" +200758,AAA Batteries (4-pack),2,2.99,05/06/19 09:18,"828 Chestnut St, New York City, NY 10001" +200759,27in 4K Gaming Monitor,1,389.99,05/29/19 09:52,"88 2nd St, San Francisco, CA 94016" +200760,Lightning Charging Cable,1,14.95,05/06/19 16:33,"406 Jefferson St, San Francisco, CA 94016" +200761,Wired Headphones,1,11.99,05/17/19 20:20,"869 2nd St, San Francisco, CA 94016" +200762,AAA Batteries (4-pack),3,2.99,05/22/19 22:08,"18 Hill St, Boston, MA 02215" +200763,Google Phone,1,600,05/16/19 22:31,"775 Elm St, New York City, NY 10001" +200764,Lightning Charging Cable,1,14.95,05/12/19 09:17,"296 Highland St, Dallas, TX 75001" +200765,Lightning Charging Cable,1,14.95,05/21/19 13:13,"918 6th St, Los Angeles, CA 90001" +200766,iPhone,1,700,05/05/19 11:43,"323 Johnson St, New York City, NY 10001" +200767,Apple Airpods Headphones,1,150,05/19/19 22:10,"666 2nd St, Seattle, WA 98101" +200768,ThinkPad Laptop,1,999.99,05/21/19 16:17,"349 Walnut St, Boston, MA 02215" +200769,Google Phone,1,600,05/01/19 14:45,"938 Johnson St, Los Angeles, CA 90001" +200770,Apple Airpods Headphones,1,150,05/31/19 19:39,"199 13th St, New York City, NY 10001" +200771,iPhone,1,700,05/31/19 03:17,"822 Willow St, Los Angeles, CA 90001" +200772,ThinkPad Laptop,1,999.99,05/19/19 11:03,"507 Hill St, Atlanta, GA 30301" +200773,Google Phone,1,600,05/18/19 18:40,"806 14th St, Boston, MA 02215" +200774,Wired Headphones,1,11.99,05/11/19 23:11,"906 Spruce St, Boston, MA 02215" +200775,USB-C Charging Cable,1,11.95,05/30/19 22:04,"428 Lake St, Los Angeles, CA 90001" +200776,Vareebadd Phone,1,400,05/05/19 17:50,"111 Madison St, New York City, NY 10001" +200777,AA Batteries (4-pack),1,3.84,05/06/19 11:20,"480 Park St, San Francisco, CA 94016" +200778,iPhone,1,700,05/07/19 10:38,"834 2nd St, Portland, ME 04101" +200779,Wired Headphones,1,11.99,05/12/19 12:03,"279 Jefferson St, San Francisco, CA 94016" +200780,Flatscreen TV,1,300,05/05/19 16:37,"554 7th St, Atlanta, GA 30301" +200781,Flatscreen TV,1,300,05/26/19 08:16,"760 River St, Seattle, WA 98101" +200782,USB-C Charging Cable,1,11.95,05/08/19 19:37,"663 Spruce St, Portland, OR 97035" +200783,USB-C Charging Cable,1,11.95,05/09/19 15:00,"552 Main St, San Francisco, CA 94016" +200784,AAA Batteries (4-pack),2,2.99,05/06/19 15:50,"995 Adams St, San Francisco, CA 94016" +200785,20in Monitor,1,109.99,05/15/19 14:18,"189 6th St, San Francisco, CA 94016" +200785,Macbook Pro Laptop,1,1700,05/15/19 14:18,"189 6th St, San Francisco, CA 94016" +200786,Macbook Pro Laptop,1,1700,05/22/19 11:58,"798 Walnut St, Portland, OR 97035" +200787,LG Washing Machine,1,600.0,05/22/19 13:12,"869 Hickory St, Seattle, WA 98101" +200788,Lightning Charging Cable,1,14.95,05/16/19 22:50,"117 Elm St, Atlanta, GA 30301" +200789,USB-C Charging Cable,1,11.95,05/31/19 16:48,"129 Johnson St, Los Angeles, CA 90001" +200790,Apple Airpods Headphones,1,150,05/19/19 16:05,"502 Maple St, Los Angeles, CA 90001" +200791,USB-C Charging Cable,1,11.95,05/30/19 13:22,"243 Jackson St, San Francisco, CA 94016" +200792,34in Ultrawide Monitor,1,379.99,05/04/19 09:22,"632 Jefferson St, New York City, NY 10001" +200793,Lightning Charging Cable,1,14.95,05/02/19 22:47,"58 2nd St, Los Angeles, CA 90001" +,,,,, +200794,Flatscreen TV,1,300,05/17/19 21:00,"164 Elm St, San Francisco, CA 94016" +200795,Bose SoundSport Headphones,1,99.99,05/02/19 13:15,"328 13th St, Seattle, WA 98101" +200796,iPhone,1,700,05/23/19 10:35,"731 Church St, Los Angeles, CA 90001" +200797,AAA Batteries (4-pack),1,2.99,05/29/19 08:46,"990 Elm St, Seattle, WA 98101" +200798,27in FHD Monitor,1,149.99,05/03/19 22:29,"91 Meadow St, San Francisco, CA 94016" +200799,AAA Batteries (4-pack),1,2.99,05/01/19 12:59,"41 North St, Los Angeles, CA 90001" +200800,USB-C Charging Cable,1,11.95,05/28/19 20:40,"644 Jackson St, Los Angeles, CA 90001" +200801,AAA Batteries (4-pack),1,2.99,05/03/19 13:05,"429 14th St, Boston, MA 02215" +200802,Bose SoundSport Headphones,1,99.99,05/28/19 23:55,"444 Maple St, Dallas, TX 75001" +200803,AAA Batteries (4-pack),2,2.99,05/06/19 01:37,"56 South St, Dallas, TX 75001" +200804,20in Monitor,1,109.99,05/29/19 18:21,"902 Center St, San Francisco, CA 94016" +200805,20in Monitor,1,109.99,05/30/19 14:00,"577 Hill St, Los Angeles, CA 90001" +200806,Apple Airpods Headphones,1,150,05/20/19 14:45,"307 Lake St, Boston, MA 02215" +200807,USB-C Charging Cable,1,11.95,05/21/19 15:00,"230 8th St, Los Angeles, CA 90001" +200808,Macbook Pro Laptop,1,1700,05/18/19 15:35,"848 13th St, Dallas, TX 75001" +200809,Wired Headphones,2,11.99,05/09/19 21:53,"609 Madison St, Boston, MA 02215" +200810,AAA Batteries (4-pack),1,2.99,05/09/19 12:49,"862 Johnson St, Seattle, WA 98101" +200811,Bose SoundSport Headphones,1,99.99,05/14/19 22:12,"388 Sunset St, Austin, TX 73301" +200812,Lightning Charging Cable,1,14.95,05/03/19 20:19,"718 Jefferson St, Atlanta, GA 30301" +200813,20in Monitor,1,109.99,05/22/19 17:03,"116 Forest St, Boston, MA 02215" +200814,Bose SoundSport Headphones,1,99.99,05/12/19 14:17,"633 River St, Dallas, TX 75001" +200815,ThinkPad Laptop,1,999.99,05/21/19 10:55,"415 South St, New York City, NY 10001" +200816,Apple Airpods Headphones,1,150,05/26/19 17:41,"707 Lakeview St, San Francisco, CA 94016" +200817,AA Batteries (4-pack),1,3.84,05/07/19 20:04,"297 Forest St, Dallas, TX 75001" +200818,AA Batteries (4-pack),1,3.84,05/02/19 10:15,"264 Walnut St, Boston, MA 02215" +200819,Flatscreen TV,1,300,05/16/19 12:11,"133 Main St, Los Angeles, CA 90001" +200820,USB-C Charging Cable,1,11.95,05/20/19 21:52,"288 10th St, New York City, NY 10001" +200821,Bose SoundSport Headphones,1,99.99,05/03/19 15:42,"782 Adams St, Boston, MA 02215" +200822,AA Batteries (4-pack),1,3.84,05/18/19 18:29,"7 Wilson St, Seattle, WA 98101" +200823,27in 4K Gaming Monitor,1,389.99,05/18/19 07:50,"755 Lake St, Portland, OR 97035" +200824,iPhone,1,700,05/31/19 19:48,"928 Spruce St, New York City, NY 10001" +200825,34in Ultrawide Monitor,1,379.99,05/15/19 15:19,"768 Willow St, New York City, NY 10001" +200826,Lightning Charging Cable,2,14.95,05/30/19 14:56,"805 Cedar St, Seattle, WA 98101" +200827,USB-C Charging Cable,1,11.95,05/29/19 21:46,"156 4th St, Austin, TX 73301" +200828,AAA Batteries (4-pack),2,2.99,05/26/19 22:05,"260 10th St, Portland, OR 97035" +200828,AA Batteries (4-pack),1,3.84,05/26/19 22:05,"260 10th St, Portland, OR 97035" +200829,Lightning Charging Cable,1,14.95,05/13/19 17:50,"989 Lakeview St, Los Angeles, CA 90001" +200830,27in 4K Gaming Monitor,1,389.99,05/12/19 21:49,"746 Hill St, Austin, TX 73301" +200831,Lightning Charging Cable,1,14.95,05/14/19 14:04,"702 Elm St, New York City, NY 10001" +200832,USB-C Charging Cable,1,11.95,05/23/19 20:56,"168 Lincoln St, Boston, MA 02215" +200833,Apple Airpods Headphones,1,150,05/01/19 19:49,"490 Lincoln St, Dallas, TX 75001" +200834,Lightning Charging Cable,1,14.95,05/27/19 14:32,"450 Center St, Dallas, TX 75001" +200835,Wired Headphones,1,11.99,05/24/19 15:11,"114 5th St, Austin, TX 73301" +200836,AA Batteries (4-pack),1,3.84,05/20/19 17:57,"918 7th St, Los Angeles, CA 90001" +200837,Lightning Charging Cable,1,14.95,05/24/19 12:16,"620 Maple St, Austin, TX 73301" +200838,Wired Headphones,1,11.99,05/23/19 11:25,"789 Wilson St, Dallas, TX 75001" +200839,AA Batteries (4-pack),1,3.84,05/01/19 15:03,"618 Sunset St, Portland, OR 97035" +200840,Lightning Charging Cable,1,14.95,05/07/19 10:25,"549 7th St, Seattle, WA 98101" +200841,Lightning Charging Cable,1,14.95,05/13/19 15:29,"9 9th St, New York City, NY 10001" +200842,Apple Airpods Headphones,1,150,05/03/19 16:10,"6 2nd St, Boston, MA 02215" +200843,AA Batteries (4-pack),1,3.84,05/17/19 17:17,"849 West St, New York City, NY 10001" +200844,Lightning Charging Cable,1,14.95,05/27/19 10:19,"206 River St, Los Angeles, CA 90001" +200845,AAA Batteries (4-pack),2,2.99,05/26/19 13:36,"904 Willow St, Boston, MA 02215" +200846,Google Phone,1,600,05/21/19 10:25,"505 Madison St, Dallas, TX 75001" +200847,Lightning Charging Cable,1,14.95,05/30/19 09:25,"723 11th St, San Francisco, CA 94016" +200847,USB-C Charging Cable,1,11.95,05/30/19 09:25,"723 11th St, San Francisco, CA 94016" +200848,AAA Batteries (4-pack),2,2.99,05/04/19 17:31,"601 South St, San Francisco, CA 94016" +200849,27in 4K Gaming Monitor,1,389.99,05/04/19 10:44,"923 Washington St, Portland, ME 04101" +200850,27in FHD Monitor,1,149.99,05/27/19 12:56,"412 2nd St, Portland, OR 97035" +200851,iPhone,1,700,05/18/19 17:00,"261 Walnut St, San Francisco, CA 94016" +200852,Google Phone,1,600,05/22/19 13:44,"548 Highland St, Portland, OR 97035" +200852,USB-C Charging Cable,2,11.95,05/22/19 13:44,"548 Highland St, Portland, OR 97035" +200853,AA Batteries (4-pack),1,3.84,05/03/19 21:16,"283 Park St, Dallas, TX 75001" +200854,AAA Batteries (4-pack),3,2.99,05/22/19 18:29,"579 Center St, Boston, MA 02215" +200855,AAA Batteries (4-pack),1,2.99,05/06/19 14:16,"820 Johnson St, Portland, ME 04101" +200856,Lightning Charging Cable,1,14.95,05/26/19 10:05,"104 Elm St, New York City, NY 10001" +200857,USB-C Charging Cable,1,11.95,05/08/19 12:57,"932 4th St, San Francisco, CA 94016" +200858,27in 4K Gaming Monitor,1,389.99,05/25/19 21:35,"468 Hickory St, San Francisco, CA 94016" +200859,Flatscreen TV,1,300,05/04/19 12:37,"177 Forest St, San Francisco, CA 94016" +200860,Bose SoundSport Headphones,1,99.99,05/11/19 13:30,"741 Washington St, Dallas, TX 75001" +200861,Lightning Charging Cable,1,14.95,05/07/19 21:38,"931 12th St, Seattle, WA 98101" +200862,Wired Headphones,1,11.99,05/28/19 00:46,"178 Church St, Boston, MA 02215" +200863,AA Batteries (4-pack),1,3.84,05/14/19 10:53,"352 Lake St, Dallas, TX 75001" +200864,Apple Airpods Headphones,1,150,05/15/19 16:47,"541 Walnut St, Atlanta, GA 30301" +200865,Apple Airpods Headphones,1,150,05/02/19 12:10,"958 Lake St, Los Angeles, CA 90001" +200866,iPhone,1,700,05/12/19 10:00,"832 7th St, San Francisco, CA 94016" +200867,Wired Headphones,1,11.99,05/26/19 21:30,"765 5th St, New York City, NY 10001" +200868,Google Phone,1,600,05/05/19 11:59,"227 Hickory St, Los Angeles, CA 90001" +200869,Lightning Charging Cable,1,14.95,05/07/19 11:19,"839 5th St, Atlanta, GA 30301" +200870,USB-C Charging Cable,1,11.95,05/08/19 12:26,"220 Spruce St, San Francisco, CA 94016" +200871,Wired Headphones,2,11.99,05/13/19 13:04,"305 Lincoln St, Austin, TX 73301" +200872,Wired Headphones,1,11.99,05/12/19 23:04,"86 Forest St, New York City, NY 10001" +200873,Wired Headphones,1,11.99,05/25/19 21:43,"275 7th St, Los Angeles, CA 90001" +200874,AAA Batteries (4-pack),1,2.99,05/01/19 12:47,"876 Forest St, Boston, MA 02215" +200875,34in Ultrawide Monitor,1,379.99,05/07/19 20:21,"783 Spruce St, New York City, NY 10001" +200876,AA Batteries (4-pack),1,3.84,05/04/19 13:06,"457 6th St, Boston, MA 02215" +200877,USB-C Charging Cable,1,11.95,05/31/19 19:30,"50 Meadow St, Dallas, TX 75001" +200878,AA Batteries (4-pack),3,3.84,05/26/19 10:02,"707 Ridge St, Boston, MA 02215" +200879,Lightning Charging Cable,1,14.95,05/23/19 12:16,"54 Walnut St, New York City, NY 10001" +200880,27in 4K Gaming Monitor,1,389.99,05/19/19 20:15,"669 Hickory St, Seattle, WA 98101" +200881,Macbook Pro Laptop,1,1700,05/21/19 16:30,"367 Lincoln St, New York City, NY 10001" +200882,Apple Airpods Headphones,1,150,05/13/19 16:40,"713 Pine St, San Francisco, CA 94016" +200883,ThinkPad Laptop,1,999.99,05/02/19 23:31,"388 5th St, Los Angeles, CA 90001" +200884,Bose SoundSport Headphones,1,99.99,05/10/19 14:36,"773 Willow St, Atlanta, GA 30301" +200885,AA Batteries (4-pack),1,3.84,05/30/19 13:14,"623 Center St, Boston, MA 02215" +200886,Lightning Charging Cable,1,14.95,05/26/19 17:12,"642 Ridge St, San Francisco, CA 94016" +200887,AA Batteries (4-pack),2,3.84,05/08/19 19:15,"354 Hill St, San Francisco, CA 94016" +200888,27in FHD Monitor,1,149.99,05/19/19 17:15,"815 Park St, Los Angeles, CA 90001" +200889,USB-C Charging Cable,1,11.95,05/07/19 22:32,"800 1st St, Dallas, TX 75001" +200890,Lightning Charging Cable,1,14.95,05/07/19 17:18,"235 Church St, Austin, TX 73301" +200891,Lightning Charging Cable,1,14.95,05/02/19 17:05,"195 Adams St, San Francisco, CA 94016" +200892,AA Batteries (4-pack),1,3.84,05/24/19 21:45,"223 Maple St, Portland, OR 97035" +,,,,, +200893,Apple Airpods Headphones,1,150,05/02/19 20:46,"645 River St, New York City, NY 10001" +200894,34in Ultrawide Monitor,1,379.99,05/05/19 14:53,"957 Maple St, New York City, NY 10001" +200895,USB-C Charging Cable,1,11.95,05/11/19 18:04,"216 North St, Atlanta, GA 30301" +200896,Google Phone,1,600,05/30/19 15:25,"325 11th St, Los Angeles, CA 90001" +200897,USB-C Charging Cable,1,11.95,05/31/19 08:08,"754 Ridge St, Seattle, WA 98101" +200898,AAA Batteries (4-pack),1,2.99,05/30/19 20:40,"329 Center St, Austin, TX 73301" +200899,AA Batteries (4-pack),1,3.84,05/22/19 16:16,"555 Hill St, Boston, MA 02215" +200900,Lightning Charging Cable,2,14.95,05/06/19 00:03,"952 North St, Dallas, TX 75001" +200901,27in 4K Gaming Monitor,1,389.99,05/26/19 22:21,"871 River St, Atlanta, GA 30301" +200902,AA Batteries (4-pack),1,3.84,05/14/19 11:37,"321 Elm St, Portland, ME 04101" +200903,AA Batteries (4-pack),1,3.84,05/25/19 22:20,"976 11th St, Boston, MA 02215" +200904,USB-C Charging Cable,1,11.95,05/08/19 12:49,"270 Ridge St, Boston, MA 02215" +200905,iPhone,1,700,05/07/19 23:23,"727 Park St, Portland, ME 04101" +200905,Wired Headphones,1,11.99,05/07/19 23:23,"727 Park St, Portland, ME 04101" +200906,Apple Airpods Headphones,1,150,05/13/19 22:49,"912 Jackson St, Portland, OR 97035" +200907,USB-C Charging Cable,1,11.95,05/17/19 18:46,"185 Forest St, San Francisco, CA 94016" +200908,27in FHD Monitor,1,149.99,05/15/19 13:23,"889 Jefferson St, Dallas, TX 75001" +200909,AA Batteries (4-pack),1,3.84,05/07/19 20:23,"597 Chestnut St, San Francisco, CA 94016" +200910,AAA Batteries (4-pack),1,2.99,05/14/19 10:07,"522 6th St, San Francisco, CA 94016" +200911,Apple Airpods Headphones,1,150,05/17/19 14:52,"879 Jackson St, New York City, NY 10001" +200912,AAA Batteries (4-pack),1,2.99,05/11/19 20:19,"550 Ridge St, Los Angeles, CA 90001" +200913,AAA Batteries (4-pack),1,2.99,05/02/19 15:48,"825 Center St, Dallas, TX 75001" +200914,27in FHD Monitor,1,149.99,05/12/19 15:01,"692 Meadow St, San Francisco, CA 94016" +200915,AAA Batteries (4-pack),1,2.99,05/18/19 11:04,"401 14th St, San Francisco, CA 94016" +200916,Lightning Charging Cable,1,14.95,05/08/19 06:52,"646 Center St, Austin, TX 73301" +200917,USB-C Charging Cable,1,11.95,05/20/19 20:46,"616 13th St, Los Angeles, CA 90001" +200918,USB-C Charging Cable,1,11.95,05/14/19 19:42,"860 12th St, Boston, MA 02215" +200919,27in FHD Monitor,1,149.99,05/18/19 01:45,"349 Hill St, Seattle, WA 98101" +200920,27in FHD Monitor,1,149.99,05/28/19 06:30,"995 13th St, San Francisco, CA 94016" +200921,Flatscreen TV,1,300,05/12/19 17:59,"903 Sunset St, Atlanta, GA 30301" +200922,Lightning Charging Cable,1,14.95,05/03/19 22:05,"582 Center St, Dallas, TX 75001" +200923,AAA Batteries (4-pack),1,2.99,05/18/19 05:07,"254 Dogwood St, Boston, MA 02215" +200924,27in 4K Gaming Monitor,1,389.99,05/10/19 08:41,"475 Forest St, San Francisco, CA 94016" +200925,Wired Headphones,1,11.99,05/21/19 12:19,"525 6th St, San Francisco, CA 94016" +200926,Lightning Charging Cable,1,14.95,05/06/19 20:31,"864 Highland St, Los Angeles, CA 90001" +200927,27in FHD Monitor,1,149.99,05/09/19 07:11,"136 14th St, San Francisco, CA 94016" +200928,AA Batteries (4-pack),1,3.84,05/25/19 14:30,"733 Spruce St, Los Angeles, CA 90001" +200929,Lightning Charging Cable,1,14.95,05/13/19 23:24,"785 Hickory St, Portland, ME 04101" +200930,27in 4K Gaming Monitor,1,389.99,05/05/19 14:22,"430 Sunset St, Boston, MA 02215" +200931,ThinkPad Laptop,1,999.99,05/20/19 09:01,"61 4th St, San Francisco, CA 94016" +200932,27in 4K Gaming Monitor,1,389.99,05/02/19 17:43,"134 Pine St, Portland, OR 97035" +200933,Bose SoundSport Headphones,1,99.99,05/20/19 18:27,"100 Cedar St, Austin, TX 73301" +200934,AA Batteries (4-pack),1,3.84,05/12/19 23:55,"39 Maple St, New York City, NY 10001" +200935,AAA Batteries (4-pack),1,2.99,05/13/19 14:36,"979 Adams St, New York City, NY 10001" +200936,Apple Airpods Headphones,1,150,05/02/19 13:31,"766 Sunset St, Los Angeles, CA 90001" +200937,27in FHD Monitor,1,149.99,05/16/19 16:45,"493 Hill St, Seattle, WA 98101" +200938,20in Monitor,1,109.99,05/22/19 17:43,"596 Park St, Austin, TX 73301" +200939,AAA Batteries (4-pack),2,2.99,05/03/19 15:13,"469 Forest St, Seattle, WA 98101" +200940,Flatscreen TV,1,300,05/03/19 13:21,"399 Spruce St, Los Angeles, CA 90001" +200941,27in 4K Gaming Monitor,1,389.99,05/07/19 08:09,"442 Park St, San Francisco, CA 94016" +200942,iPhone,1,700,05/31/19 16:09,"821 Church St, San Francisco, CA 94016" +200942,Lightning Charging Cable,1,14.95,05/31/19 16:09,"821 Church St, San Francisco, CA 94016" +200943,AAA Batteries (4-pack),1,2.99,05/13/19 16:40,"554 Cherry St, Atlanta, GA 30301" +200944,AA Batteries (4-pack),3,3.84,05/24/19 10:35,"219 Park St, Los Angeles, CA 90001" +200945,Lightning Charging Cable,1,14.95,05/30/19 20:58,"388 12th St, Boston, MA 02215" +200946,AAA Batteries (4-pack),2,2.99,05/17/19 15:01,"665 River St, San Francisco, CA 94016" +200947,34in Ultrawide Monitor,1,379.99,05/20/19 14:02,"568 Cedar St, Boston, MA 02215" +200948,USB-C Charging Cable,2,11.95,05/27/19 12:54,"174 11th St, Los Angeles, CA 90001" +200949,USB-C Charging Cable,1,11.95,05/27/19 14:43,"1 6th St, San Francisco, CA 94016" +200950,ThinkPad Laptop,1,999.99,05/06/19 16:22,"173 Ridge St, San Francisco, CA 94016" +200951,AAA Batteries (4-pack),2,2.99,05/06/19 07:51,"74 Wilson St, San Francisco, CA 94016" +200952,AA Batteries (4-pack),1,3.84,05/02/19 11:58,"386 Wilson St, Atlanta, GA 30301" +200953,Wired Headphones,1,11.99,05/21/19 22:45,"991 Madison St, New York City, NY 10001" +200954,Google Phone,1,600,05/28/19 13:46,"740 Lakeview St, New York City, NY 10001" +200955,34in Ultrawide Monitor,1,379.99,05/04/19 19:46,"861 2nd St, New York City, NY 10001" +200956,27in 4K Gaming Monitor,1,389.99,05/25/19 19:46,"551 South St, Boston, MA 02215" +200957,AA Batteries (4-pack),2,3.84,05/07/19 18:23,"238 8th St, New York City, NY 10001" +200958,AAA Batteries (4-pack),1,2.99,05/04/19 17:26,"66 Elm St, Dallas, TX 75001" +200959,20in Monitor,1,109.99,05/06/19 08:28,"180 South St, Seattle, WA 98101" +200960,AAA Batteries (4-pack),1,2.99,05/23/19 12:20,"255 Elm St, San Francisco, CA 94016" +200961,ThinkPad Laptop,1,999.99,05/25/19 17:41,"327 1st St, Atlanta, GA 30301" +200962,Google Phone,1,600,05/02/19 13:45,"465 1st St, Atlanta, GA 30301" +200963,Lightning Charging Cable,1,14.95,05/17/19 20:13,"151 8th St, Boston, MA 02215" +200964,Flatscreen TV,1,300,05/22/19 11:13,"503 Ridge St, San Francisco, CA 94016" +200965,LG Washing Machine,1,600.0,05/24/19 13:27,"714 13th St, New York City, NY 10001" +200966,Wired Headphones,2,11.99,05/02/19 14:32,"461 Center St, San Francisco, CA 94016" +200967,Apple Airpods Headphones,1,150,05/08/19 20:12,"561 Sunset St, Seattle, WA 98101" +200968,Google Phone,1,600,05/04/19 07:56,"948 5th St, Los Angeles, CA 90001" +200969,Wired Headphones,2,11.99,05/23/19 17:23,"833 4th St, Los Angeles, CA 90001" +200970,Google Phone,1,600,05/21/19 17:30,"603 Johnson St, San Francisco, CA 94016" +200971,USB-C Charging Cable,1,11.95,05/11/19 12:51,"271 Hickory St, Atlanta, GA 30301" +200972,USB-C Charging Cable,1,11.95,05/09/19 09:11,"402 2nd St, Boston, MA 02215" +200973,Google Phone,1,600,05/18/19 14:04,"576 2nd St, Seattle, WA 98101" +200974,27in FHD Monitor,1,149.99,05/04/19 00:01,"886 5th St, Los Angeles, CA 90001" +200975,Apple Airpods Headphones,1,150,05/19/19 07:54,"79 Church St, Dallas, TX 75001" +200976,AAA Batteries (4-pack),1,2.99,05/02/19 18:38,"582 Cherry St, New York City, NY 10001" +200977,ThinkPad Laptop,1,999.99,05/09/19 15:53,"589 9th St, New York City, NY 10001" +200978,Lightning Charging Cable,1,14.95,05/04/19 07:42,"232 7th St, San Francisco, CA 94016" +200979,34in Ultrawide Monitor,1,379.99,05/25/19 08:14,"178 West St, Atlanta, GA 30301" +200980,Lightning Charging Cable,1,14.95,05/12/19 09:29,"964 Walnut St, Portland, ME 04101" +200981,Apple Airpods Headphones,1,150,05/02/19 20:25,"755 8th St, San Francisco, CA 94016" +200982,Lightning Charging Cable,1,14.95,05/21/19 14:03,"101 Chestnut St, San Francisco, CA 94016" +200983,Google Phone,1,600,05/17/19 20:17,"826 Sunset St, Austin, TX 73301" +200984,AAA Batteries (4-pack),3,2.99,05/04/19 14:13,"787 Dogwood St, Seattle, WA 98101" +200985,USB-C Charging Cable,1,11.95,05/10/19 14:57,"238 Jefferson St, San Francisco, CA 94016" +200986,Wired Headphones,1,11.99,05/02/19 07:29,"715 Main St, Portland, OR 97035" +200987,Apple Airpods Headphones,1,150,05/31/19 00:57,"130 Meadow St, Dallas, TX 75001" +200988,Lightning Charging Cable,1,14.95,05/05/19 07:52,"878 Johnson St, San Francisco, CA 94016" +200989,iPhone,1,700,05/30/19 17:35,"812 Cherry St, New York City, NY 10001" +200989,Wired Headphones,1,11.99,05/30/19 17:35,"812 Cherry St, New York City, NY 10001" +200990,Apple Airpods Headphones,1,150,05/03/19 06:57,"910 5th St, Los Angeles, CA 90001" +200991,USB-C Charging Cable,1,11.95,05/30/19 21:55,"842 West St, Seattle, WA 98101" +200992,27in FHD Monitor,1,149.99,05/23/19 22:10,"639 Madison St, San Francisco, CA 94016" +200993,USB-C Charging Cable,1,11.95,05/27/19 13:34,"502 12th St, Boston, MA 02215" +200994,Apple Airpods Headphones,1,150,05/30/19 21:59,"692 Adams St, New York City, NY 10001" +200995,Apple Airpods Headphones,1,150,05/22/19 09:43,"207 Jefferson St, San Francisco, CA 94016" +200996,Lightning Charging Cable,1,14.95,05/26/19 18:51,"819 South St, New York City, NY 10001" +200997,USB-C Charging Cable,1,11.95,05/05/19 13:30,"429 10th St, Los Angeles, CA 90001" +200997,Lightning Charging Cable,1,14.95,05/05/19 13:30,"429 10th St, Los Angeles, CA 90001" +200998,Apple Airpods Headphones,1,150,05/27/19 12:35,"566 Chestnut St, Seattle, WA 98101" +200999,Lightning Charging Cable,1,14.95,05/31/19 18:42,"146 North St, Boston, MA 02215" +201000,Bose SoundSport Headphones,1,99.99,05/14/19 00:32,"167 Forest St, San Francisco, CA 94016" +201001,USB-C Charging Cable,1,11.95,05/07/19 20:31,"975 14th St, Los Angeles, CA 90001" +201002,USB-C Charging Cable,1,11.95,05/10/19 16:59,"379 Johnson St, San Francisco, CA 94016" +201003,AA Batteries (4-pack),1,3.84,05/25/19 15:26,"137 Sunset St, Portland, OR 97035" +201004,USB-C Charging Cable,1,11.95,05/14/19 09:54,"738 Sunset St, Los Angeles, CA 90001" +201005,USB-C Charging Cable,1,11.95,05/08/19 19:26,"684 Center St, Boston, MA 02215" +201006,USB-C Charging Cable,2,11.95,05/22/19 15:48,"184 Lincoln St, San Francisco, CA 94016" +201007,AA Batteries (4-pack),1,3.84,05/15/19 10:29,"282 Main St, Portland, OR 97035" +201008,USB-C Charging Cable,1,11.95,05/30/19 17:40,"705 Adams St, San Francisco, CA 94016" +201009,Bose SoundSport Headphones,1,99.99,05/05/19 16:39,"45 Cherry St, Dallas, TX 75001" +201010,27in FHD Monitor,1,149.99,05/03/19 09:37,"471 5th St, San Francisco, CA 94016" +201011,AAA Batteries (4-pack),1,2.99,05/15/19 17:51,"966 2nd St, New York City, NY 10001" +201012,Wired Headphones,1,11.99,05/18/19 13:28,"407 Jackson St, Seattle, WA 98101" +201013,34in Ultrawide Monitor,1,379.99,05/16/19 09:53,"428 8th St, San Francisco, CA 94016" +201014,20in Monitor,2,109.99,05/03/19 04:47,"155 10th St, Austin, TX 73301" +201015,Lightning Charging Cable,1,14.95,05/08/19 08:46,"996 Chestnut St, San Francisco, CA 94016" +201016,AAA Batteries (4-pack),2,2.99,05/20/19 19:45,"871 Sunset St, Los Angeles, CA 90001" +201017,Lightning Charging Cable,1,14.95,05/11/19 06:23,"533 Hill St, San Francisco, CA 94016" +201018,Lightning Charging Cable,1,14.95,05/03/19 10:22,"850 5th St, San Francisco, CA 94016" +201019,Wired Headphones,1,11.99,05/05/19 22:33,"619 Johnson St, San Francisco, CA 94016" +201020,Apple Airpods Headphones,1,150,05/29/19 03:12,"594 Johnson St, Dallas, TX 75001" +201021,AA Batteries (4-pack),1,3.84,05/25/19 13:15,"779 Highland St, San Francisco, CA 94016" +201021,Lightning Charging Cable,1,14.95,05/25/19 13:15,"779 Highland St, San Francisco, CA 94016" +201022,Lightning Charging Cable,1,14.95,05/22/19 12:45,"30 Maple St, Atlanta, GA 30301" +201023,AAA Batteries (4-pack),2,2.99,05/05/19 14:50,"740 Forest St, New York City, NY 10001" +201024,AA Batteries (4-pack),1,3.84,05/21/19 22:38,"923 Washington St, Seattle, WA 98101" +201025,USB-C Charging Cable,1,11.95,05/15/19 17:28,"728 Hickory St, San Francisco, CA 94016" +201026,27in FHD Monitor,1,149.99,05/30/19 17:14,"365 Johnson St, New York City, NY 10001" +201027,USB-C Charging Cable,1,11.95,05/29/19 10:01,"828 Jackson St, Atlanta, GA 30301" +201028,iPhone,1,700,05/12/19 00:58,"818 11th St, New York City, NY 10001" +201029,AA Batteries (4-pack),1,3.84,05/04/19 23:58,"174 2nd St, New York City, NY 10001" +201030,Macbook Pro Laptop,1,1700,05/28/19 15:27,"171 Church St, Seattle, WA 98101" +201031,Bose SoundSport Headphones,1,99.99,05/19/19 22:08,"325 Pine St, San Francisco, CA 94016" +201032,34in Ultrawide Monitor,1,379.99,05/11/19 17:09,"52 Forest St, Dallas, TX 75001" +201033,Lightning Charging Cable,1,14.95,05/10/19 13:47,"260 2nd St, New York City, NY 10001" +201034,Apple Airpods Headphones,1,150,05/03/19 22:18,"674 12th St, Seattle, WA 98101" +201035,Wired Headphones,1,11.99,05/12/19 19:19,"882 Highland St, New York City, NY 10001" +201036,20in Monitor,1,109.99,05/02/19 15:31,"868 1st St, Boston, MA 02215" +201037,AAA Batteries (4-pack),2,2.99,05/18/19 20:01,"292 North St, Los Angeles, CA 90001" +201038,Lightning Charging Cable,1,14.95,05/25/19 20:55,"44 12th St, Los Angeles, CA 90001" +201039,Apple Airpods Headphones,1,150,05/06/19 00:44,"379 Adams St, Seattle, WA 98101" +201040,27in FHD Monitor,1,149.99,05/01/19 13:03,"133 Hickory St, Portland, OR 97035" +201041,Bose SoundSport Headphones,1,99.99,05/05/19 10:11,"266 West St, New York City, NY 10001" +201042,27in FHD Monitor,2,149.99,05/08/19 17:18,"554 Ridge St, Seattle, WA 98101" +201043,Lightning Charging Cable,1,14.95,05/16/19 16:29,"312 Ridge St, Los Angeles, CA 90001" +201044,AAA Batteries (4-pack),1,2.99,05/02/19 07:08,"938 Hickory St, San Francisco, CA 94016" +201045,Lightning Charging Cable,1,14.95,05/23/19 23:44,"271 Main St, Los Angeles, CA 90001" +201046,Bose SoundSport Headphones,1,99.99,05/25/19 20:02,"816 River St, Boston, MA 02215" +201047,AA Batteries (4-pack),1,3.84,05/03/19 21:35,"686 Adams St, Atlanta, GA 30301" +201048,27in 4K Gaming Monitor,1,389.99,05/23/19 18:48,"846 Cedar St, Los Angeles, CA 90001" +201049,Apple Airpods Headphones,1,150,05/25/19 16:12,"369 Madison St, San Francisco, CA 94016" +201050,Lightning Charging Cable,1,14.95,05/16/19 21:13,"119 Hickory St, New York City, NY 10001" +201051,34in Ultrawide Monitor,1,379.99,05/09/19 21:30,"913 Cedar St, Austin, TX 73301" +201052,Macbook Pro Laptop,1,1700,05/09/19 22:39,"100 Johnson St, Los Angeles, CA 90001" +201053,AA Batteries (4-pack),1,3.84,05/08/19 14:32,"974 Lake St, San Francisco, CA 94016" +201054,Apple Airpods Headphones,1,150,05/30/19 16:36,"27 Cherry St, Atlanta, GA 30301" +201055,iPhone,1,700,05/11/19 19:58,"752 Cedar St, Austin, TX 73301" +201055,Lightning Charging Cable,1,14.95,05/11/19 19:58,"752 Cedar St, Austin, TX 73301" +201056,USB-C Charging Cable,1,11.95,05/16/19 00:09,"321 Hill St, San Francisco, CA 94016" +201057,Lightning Charging Cable,1,14.95,05/16/19 11:44,"898 12th St, San Francisco, CA 94016" +201058,Bose SoundSport Headphones,2,99.99,05/05/19 14:49,"735 Hill St, Portland, OR 97035" +201059,USB-C Charging Cable,1,11.95,05/26/19 09:30,"933 Pine St, Dallas, TX 75001" +201060,27in FHD Monitor,1,149.99,05/28/19 10:21,"224 Hickory St, Los Angeles, CA 90001" +201061,AAA Batteries (4-pack),1,2.99,05/28/19 12:13,"129 Elm St, Atlanta, GA 30301" +201062,iPhone,1,700,05/19/19 21:55,"805 Center St, Dallas, TX 75001" +201062,Lightning Charging Cable,1,14.95,05/19/19 21:55,"805 Center St, Dallas, TX 75001" +201063,Macbook Pro Laptop,1,1700,05/26/19 09:13,"405 Elm St, San Francisco, CA 94016" +201064,Bose SoundSport Headphones,1,99.99,05/22/19 18:49,"193 Adams St, Austin, TX 73301" +201065,27in FHD Monitor,1,149.99,05/28/19 08:49,"550 9th St, San Francisco, CA 94016" +201066,27in 4K Gaming Monitor,1,389.99,05/24/19 22:59,"834 Adams St, New York City, NY 10001" +201067,ThinkPad Laptop,1,999.99,05/13/19 12:16,"807 Johnson St, San Francisco, CA 94016" +201068,Wired Headphones,2,11.99,05/16/19 17:45,"214 Center St, Dallas, TX 75001" +201069,USB-C Charging Cable,1,11.95,05/06/19 17:59,"948 Hill St, New York City, NY 10001" +201070,Lightning Charging Cable,2,14.95,05/25/19 11:30,"727 Washington St, San Francisco, CA 94016" +201071,Flatscreen TV,1,300,05/16/19 17:51,"401 Ridge St, Austin, TX 73301" +201072,AAA Batteries (4-pack),1,2.99,05/26/19 11:21,"184 North St, Boston, MA 02215" +201073,Wired Headphones,1,11.99,05/08/19 11:08,"337 14th St, San Francisco, CA 94016" +201074,AA Batteries (4-pack),1,3.84,05/23/19 18:35,"857 6th St, Atlanta, GA 30301" +201075,20in Monitor,1,109.99,05/23/19 23:44,"197 12th St, Seattle, WA 98101" +201076,LG Washing Machine,1,600.0,05/15/19 14:05,"741 Spruce St, Boston, MA 02215" +201077,34in Ultrawide Monitor,1,379.99,05/31/19 14:19,"505 Park St, New York City, NY 10001" +201078,34in Ultrawide Monitor,1,379.99,05/04/19 08:39,"966 Sunset St, Dallas, TX 75001" +201079,27in 4K Gaming Monitor,1,389.99,05/24/19 18:29,"196 6th St, Austin, TX 73301" +201080,AAA Batteries (4-pack),1,2.99,05/21/19 22:06,"432 Highland St, Portland, OR 97035" +201080,Lightning Charging Cable,1,14.95,05/21/19 22:06,"432 Highland St, Portland, OR 97035" +201081,Flatscreen TV,1,300,05/13/19 10:02,"737 Chestnut St, Seattle, WA 98101" +201082,iPhone,1,700,05/05/19 19:18,"551 Pine St, San Francisco, CA 94016" +201082,Wired Headphones,1,11.99,05/05/19 19:18,"551 Pine St, San Francisco, CA 94016" +201083,27in FHD Monitor,1,149.99,05/09/19 08:35,"388 Lake St, Portland, ME 04101" +201084,Apple Airpods Headphones,1,150,05/23/19 11:17,"63 Chestnut St, Los Angeles, CA 90001" +201085,AAA Batteries (4-pack),1,2.99,05/16/19 07:15,"841 Chestnut St, Atlanta, GA 30301" +201086,Apple Airpods Headphones,1,150,05/17/19 19:55,"780 Cedar St, Atlanta, GA 30301" +201087,Lightning Charging Cable,1,14.95,05/04/19 02:46,"745 Highland St, San Francisco, CA 94016" +201088,Apple Airpods Headphones,1,150,05/27/19 01:47,"298 5th St, Los Angeles, CA 90001" +201089,Macbook Pro Laptop,1,1700,05/05/19 20:56,"926 4th St, Atlanta, GA 30301" +201090,Apple Airpods Headphones,1,150,05/01/19 13:32,"899 Meadow St, New York City, NY 10001" +201091,iPhone,1,700,05/02/19 21:01,"868 10th St, San Francisco, CA 94016" +201092,Lightning Charging Cable,2,14.95,05/08/19 09:56,"29 Center St, Austin, TX 73301" +201093,Bose SoundSport Headphones,1,99.99,05/20/19 12:32,"851 7th St, San Francisco, CA 94016" +201094,Lightning Charging Cable,1,14.95,05/25/19 15:37,"890 Church St, Los Angeles, CA 90001" +201095,AA Batteries (4-pack),1,3.84,05/06/19 21:03,"175 Cedar St, San Francisco, CA 94016" +201096,AA Batteries (4-pack),1,3.84,05/14/19 17:26,"45 Wilson St, Portland, ME 04101" +201097,Macbook Pro Laptop,1,1700,05/31/19 11:58,"605 Chestnut St, Austin, TX 73301" +201098,AA Batteries (4-pack),1,3.84,05/29/19 13:02,"898 Cherry St, New York City, NY 10001" +201099,Apple Airpods Headphones,1,150,05/26/19 02:28,"15 Lake St, Atlanta, GA 30301" +201100,20in Monitor,1,109.99,05/19/19 10:07,"379 Lakeview St, Atlanta, GA 30301" +201100,USB-C Charging Cable,1,11.95,05/19/19 10:07,"379 Lakeview St, Atlanta, GA 30301" +201101,AA Batteries (4-pack),2,3.84,05/15/19 20:48,"900 Madison St, San Francisco, CA 94016" +201102,27in FHD Monitor,1,149.99,05/26/19 11:59,"399 Church St, Seattle, WA 98101" +201103,27in FHD Monitor,1,149.99,05/23/19 13:44,"994 9th St, San Francisco, CA 94016" +201104,Lightning Charging Cable,1,14.95,05/17/19 09:44,"314 Madison St, Boston, MA 02215" +201105,AAA Batteries (4-pack),1,2.99,05/03/19 18:54,"957 Lincoln St, Austin, TX 73301" +201106,Lightning Charging Cable,1,14.95,05/08/19 03:09,"922 8th St, Los Angeles, CA 90001" +201107,AAA Batteries (4-pack),1,2.99,05/31/19 11:32,"609 Park St, Boston, MA 02215" +201108,USB-C Charging Cable,1,11.95,05/20/19 20:00,"206 Pine St, Los Angeles, CA 90001" +201109,Lightning Charging Cable,1,14.95,05/20/19 13:04,"965 Pine St, San Francisco, CA 94016" +201110,Google Phone,1,600,05/26/19 16:12,"846 Jefferson St, Boston, MA 02215" +201111,Lightning Charging Cable,1,14.95,05/19/19 09:11,"242 Willow St, San Francisco, CA 94016" +201112,USB-C Charging Cable,1,11.95,05/19/19 09:30,"756 Jefferson St, Boston, MA 02215" +201113,Bose SoundSport Headphones,1,99.99,05/08/19 22:28,"773 Hill St, Boston, MA 02215" +201114,USB-C Charging Cable,1,11.95,05/10/19 23:41,"562 Jefferson St, New York City, NY 10001" +201115,AA Batteries (4-pack),1,3.84,05/03/19 22:09,"816 Ridge St, Dallas, TX 75001" +201116,27in FHD Monitor,1,149.99,05/01/19 14:56,"694 Elm St, Atlanta, GA 30301" +201117,Wired Headphones,1,11.99,05/08/19 22:26,"543 North St, Austin, TX 73301" +201118,Wired Headphones,1,11.99,05/16/19 16:00,"293 6th St, Atlanta, GA 30301" +201119,Lightning Charging Cable,1,14.95,05/20/19 16:22,"474 13th St, Seattle, WA 98101" +201120,27in 4K Gaming Monitor,1,389.99,05/05/19 21:42,"953 Wilson St, Portland, OR 97035" +201121,AAA Batteries (4-pack),1,2.99,05/26/19 20:49,"163 7th St, San Francisco, CA 94016" +201122,34in Ultrawide Monitor,1,379.99,05/16/19 14:05,"827 Elm St, Seattle, WA 98101" +201123,Lightning Charging Cable,1,14.95,05/31/19 09:12,"859 6th St, Los Angeles, CA 90001" +201124,Apple Airpods Headphones,1,150,05/24/19 11:17,"401 Park St, Los Angeles, CA 90001" +201125,27in FHD Monitor,1,149.99,05/04/19 22:07,"748 Forest St, Atlanta, GA 30301" +201126,34in Ultrawide Monitor,1,379.99,05/04/19 10:46,"6 Spruce St, Dallas, TX 75001" +201126,Wired Headphones,1,11.99,05/04/19 10:46,"6 Spruce St, Dallas, TX 75001" +201127,AA Batteries (4-pack),1,3.84,05/30/19 01:21,"236 13th St, Los Angeles, CA 90001" +201128,27in FHD Monitor,1,149.99,05/20/19 06:52,"878 Hickory St, Dallas, TX 75001" +201128,AA Batteries (4-pack),1,3.84,05/20/19 06:52,"878 Hickory St, Dallas, TX 75001" +201129,iPhone,1,700,05/28/19 12:33,"768 South St, New York City, NY 10001" +201130,AAA Batteries (4-pack),1,2.99,05/12/19 21:33,"736 4th St, Seattle, WA 98101" +201131,AA Batteries (4-pack),1,3.84,05/02/19 20:16,"131 7th St, Los Angeles, CA 90001" +201132,Wired Headphones,1,11.99,05/19/19 16:24,"277 Hill St, Portland, ME 04101" +201133,Wired Headphones,1,11.99,05/20/19 18:21,"458 6th St, New York City, NY 10001" +201134,AAA Batteries (4-pack),4,2.99,05/15/19 21:12,"458 Maple St, Seattle, WA 98101" +201135,AA Batteries (4-pack),1,3.84,05/28/19 18:08,"748 11th St, Seattle, WA 98101" +201136,AA Batteries (4-pack),1,3.84,05/08/19 22:07,"160 Spruce St, Los Angeles, CA 90001" +201137,USB-C Charging Cable,1,11.95,05/09/19 09:42,"448 14th St, New York City, NY 10001" +201138,Apple Airpods Headphones,1,150,05/02/19 13:17,"272 Meadow St, Seattle, WA 98101" +201139,USB-C Charging Cable,1,11.95,05/04/19 11:15,"980 Center St, New York City, NY 10001" +201140,Bose SoundSport Headphones,1,99.99,05/27/19 12:09,"358 Maple St, Atlanta, GA 30301" +201141,27in FHD Monitor,1,149.99,05/16/19 21:15,"917 12th St, Los Angeles, CA 90001" +201142,Wired Headphones,1,11.99,05/01/19 15:52,"281 Willow St, Austin, TX 73301" +201143,ThinkPad Laptop,1,999.99,05/20/19 16:05,"241 West St, Los Angeles, CA 90001" +201144,Wired Headphones,1,11.99,05/27/19 23:08,"646 10th St, New York City, NY 10001" +201145,Flatscreen TV,1,300,05/17/19 16:48,"335 Johnson St, Los Angeles, CA 90001" +201146,Lightning Charging Cable,1,14.95,05/07/19 23:39,"771 7th St, San Francisco, CA 94016" +201147,AAA Batteries (4-pack),1,2.99,05/22/19 20:56,"350 5th St, New York City, NY 10001" +201148,Lightning Charging Cable,1,14.95,05/21/19 10:03,"233 2nd St, Seattle, WA 98101" +201149,AA Batteries (4-pack),1,3.84,05/26/19 15:38,"366 Center St, Dallas, TX 75001" +201150,USB-C Charging Cable,1,11.95,05/13/19 16:14,"620 Lake St, New York City, NY 10001" +201151,AA Batteries (4-pack),1,3.84,05/14/19 08:31,"402 Sunset St, New York City, NY 10001" +201152,Bose SoundSport Headphones,1,99.99,05/02/19 21:22,"236 Jackson St, Boston, MA 02215" +201153,Wired Headphones,1,11.99,05/21/19 14:52,"132 Hill St, Seattle, WA 98101" +201154,Bose SoundSport Headphones,1,99.99,05/16/19 16:28,"555 Washington St, Los Angeles, CA 90001" +201155,AAA Batteries (4-pack),2,2.99,05/22/19 16:30,"367 West St, Boston, MA 02215" +201156,AA Batteries (4-pack),1,3.84,05/25/19 12:47,"822 Walnut St, New York City, NY 10001" +201157,Apple Airpods Headphones,1,150,05/13/19 15:29,"718 Lake St, Dallas, TX 75001" +201158,34in Ultrawide Monitor,1,379.99,05/14/19 22:51,"609 Lake St, Dallas, TX 75001" +201159,Bose SoundSport Headphones,1,99.99,05/11/19 11:25,"455 Wilson St, Seattle, WA 98101" +201160,Lightning Charging Cable,1,14.95,05/09/19 16:32,"434 West St, Dallas, TX 75001" +201161,AA Batteries (4-pack),1,3.84,05/07/19 23:29,"836 North St, New York City, NY 10001" +201162,Vareebadd Phone,1,400,05/18/19 21:58,"161 Chestnut St, Portland, OR 97035" +201162,USB-C Charging Cable,1,11.95,05/18/19 21:58,"161 Chestnut St, Portland, OR 97035" +201163,AAA Batteries (4-pack),1,2.99,05/02/19 15:55,"346 River St, Los Angeles, CA 90001" +201164,27in 4K Gaming Monitor,1,389.99,05/14/19 22:15,"99 Hickory St, San Francisco, CA 94016" +201165,Wired Headphones,1,11.99,05/25/19 13:12,"630 Washington St, Seattle, WA 98101" +201166,Lightning Charging Cable,1,14.95,05/28/19 21:04,"662 Dogwood St, Atlanta, GA 30301" +201167,Wired Headphones,1,11.99,05/01/19 16:45,"461 2nd St, Boston, MA 02215" +201168,Apple Airpods Headphones,1,150,05/31/19 20:12,"319 Spruce St, Los Angeles, CA 90001" +201169,Bose SoundSport Headphones,1,99.99,05/12/19 14:37,"798 Chestnut St, Portland, ME 04101" +201170,AAA Batteries (4-pack),2,2.99,05/19/19 19:51,"854 14th St, San Francisco, CA 94016" +201171,Macbook Pro Laptop,1,1700,05/02/19 08:29,"996 2nd St, New York City, NY 10001" +201172,ThinkPad Laptop,1,999.99,05/15/19 18:56,"409 Dogwood St, San Francisco, CA 94016" +201173,ThinkPad Laptop,1,999.99,05/10/19 20:37,"971 Sunset St, San Francisco, CA 94016" +201174,Vareebadd Phone,1,400,05/15/19 15:39,"835 1st St, San Francisco, CA 94016" +201175,Wired Headphones,1,11.99,05/16/19 18:59,"251 Willow St, San Francisco, CA 94016" +201176,ThinkPad Laptop,1,999.99,05/31/19 11:36,"230 Lincoln St, Los Angeles, CA 90001" +201177,20in Monitor,1,109.99,05/10/19 17:25,"916 Sunset St, Atlanta, GA 30301" +201178,AAA Batteries (4-pack),3,2.99,05/07/19 13:00,"555 Meadow St, New York City, NY 10001" +201179,AAA Batteries (4-pack),1,2.99,05/14/19 16:05,"346 Hill St, New York City, NY 10001" +201180,USB-C Charging Cable,1,11.95,05/10/19 01:10,"889 11th St, Portland, OR 97035" +201180,AAA Batteries (4-pack),1,2.99,05/10/19 01:10,"889 11th St, Portland, OR 97035" +201181,AA Batteries (4-pack),1,3.84,05/18/19 21:15,"887 Johnson St, Boston, MA 02215" +201182,AAA Batteries (4-pack),1,2.99,05/06/19 12:03,"367 Highland St, Portland, OR 97035" +201183,AAA Batteries (4-pack),1,2.99,05/11/19 16:51,"107 Park St, New York City, NY 10001" +201184,Apple Airpods Headphones,1,150,05/02/19 13:21,"594 9th St, Boston, MA 02215" +201185,27in FHD Monitor,1,149.99,05/31/19 14:53,"721 Sunset St, San Francisco, CA 94016" +201186,Flatscreen TV,1,300,05/19/19 07:12,"841 4th St, Boston, MA 02215" +201187,Lightning Charging Cable,1,14.95,05/25/19 06:02,"488 River St, Dallas, TX 75001" +201188,USB-C Charging Cable,1,11.95,05/19/19 13:37,"343 Center St, New York City, NY 10001" +201189,AAA Batteries (4-pack),1,2.99,05/05/19 20:24,"377 10th St, Portland, OR 97035" +201190,AA Batteries (4-pack),2,3.84,05/18/19 10:23,"56 Meadow St, New York City, NY 10001" +201191,Macbook Pro Laptop,1,1700,05/25/19 21:16,"925 Adams St, New York City, NY 10001" +201192,Apple Airpods Headphones,1,150,05/27/19 11:46,"765 South St, San Francisco, CA 94016" +201192,Lightning Charging Cable,1,14.95,05/27/19 11:46,"765 South St, San Francisco, CA 94016" +201193,Bose SoundSport Headphones,1,99.99,05/20/19 20:35,"333 Walnut St, Atlanta, GA 30301" +201194,AA Batteries (4-pack),1,3.84,05/15/19 20:23,"902 Walnut St, San Francisco, CA 94016" +201195,Wired Headphones,2,11.99,05/13/19 19:29,"381 14th St, Dallas, TX 75001" +201196,Macbook Pro Laptop,1,1700,05/03/19 19:13,"988 14th St, San Francisco, CA 94016" +201197,27in 4K Gaming Monitor,1,389.99,05/07/19 21:14,"738 Jefferson St, New York City, NY 10001" +201198,Vareebadd Phone,1,400,05/13/19 21:51,"305 Church St, San Francisco, CA 94016" +201199,Wired Headphones,1,11.99,05/27/19 16:25,"245 Adams St, Austin, TX 73301" +201200,20in Monitor,1,109.99,05/12/19 19:39,"396 12th St, San Francisco, CA 94016" +201201,Wired Headphones,1,11.99,05/28/19 19:26,"421 Spruce St, Dallas, TX 75001" +201202,20in Monitor,1,109.99,05/27/19 19:26,"12 Spruce St, Seattle, WA 98101" +201203,USB-C Charging Cable,1,11.95,05/09/19 12:09,"396 Hill St, San Francisco, CA 94016" +201204,AAA Batteries (4-pack),2,2.99,05/20/19 18:39,"671 Washington St, Portland, ME 04101" +201205,Lightning Charging Cable,1,14.95,05/26/19 19:17,"514 Lake St, San Francisco, CA 94016" +201206,Bose SoundSport Headphones,1,99.99,05/27/19 12:23,"134 Pine St, Seattle, WA 98101" +201207,USB-C Charging Cable,1,11.95,05/31/19 14:37,"907 Highland St, Portland, OR 97035" +201207,Flatscreen TV,1,300,05/31/19 14:37,"907 Highland St, Portland, OR 97035" +201208,AA Batteries (4-pack),3,3.84,05/25/19 15:15,"39 Meadow St, San Francisco, CA 94016" +201209,Lightning Charging Cable,1,14.95,05/13/19 10:07,"354 Sunset St, Dallas, TX 75001" +201210,27in FHD Monitor,1,149.99,05/11/19 22:16,"991 1st St, San Francisco, CA 94016" +201211,27in FHD Monitor,1,149.99,05/27/19 21:27,"203 Lake St, Los Angeles, CA 90001" +201212,Google Phone,1,600,05/27/19 13:53,"768 Church St, Boston, MA 02215" +201213,20in Monitor,1,109.99,05/01/19 15:41,"611 Elm St, Boston, MA 02215" +201214,AAA Batteries (4-pack),1,2.99,05/27/19 15:01,"851 Meadow St, Atlanta, GA 30301" +201215,Lightning Charging Cable,1,14.95,05/06/19 16:16,"471 West St, New York City, NY 10001" +201216,USB-C Charging Cable,1,11.95,05/15/19 20:40,"564 Cherry St, New York City, NY 10001" +201217,27in FHD Monitor,1,149.99,05/04/19 17:43,"980 Lakeview St, New York City, NY 10001" +201218,Vareebadd Phone,1,400,05/15/19 16:53,"488 6th St, Portland, ME 04101" +201219,Google Phone,1,600,05/12/19 13:43,"315 River St, Dallas, TX 75001" +201220,USB-C Charging Cable,1,11.95,05/10/19 15:59,"363 6th St, Austin, TX 73301" +201221,Apple Airpods Headphones,1,150,05/22/19 22:24,"557 Washington St, Atlanta, GA 30301" +201222,Vareebadd Phone,1,400,05/17/19 12:40,"605 Jefferson St, Atlanta, GA 30301" +201223,ThinkPad Laptop,1,999.99,05/07/19 15:12,"824 9th St, Los Angeles, CA 90001" +201224,Wired Headphones,1,11.99,05/21/19 09:47,"767 Chestnut St, Los Angeles, CA 90001" +201225,20in Monitor,1,109.99,05/20/19 15:04,"43 Cherry St, New York City, NY 10001" +201226,AA Batteries (4-pack),1,3.84,05/14/19 21:35,"280 Johnson St, Portland, OR 97035" +201226,27in FHD Monitor,1,149.99,05/14/19 21:35,"280 Johnson St, Portland, OR 97035" +201227,AA Batteries (4-pack),1,3.84,05/11/19 07:05,"186 Walnut St, San Francisco, CA 94016" +201228,27in 4K Gaming Monitor,1,389.99,05/28/19 22:41,"784 Highland St, Austin, TX 73301" +201229,Lightning Charging Cable,2,14.95,05/25/19 12:07,"902 Walnut St, Dallas, TX 75001" +201230,27in FHD Monitor,1,149.99,05/26/19 20:41,"994 9th St, Los Angeles, CA 90001" +201231,Lightning Charging Cable,2,14.95,05/30/19 09:26,"384 Highland St, Los Angeles, CA 90001" +201232,USB-C Charging Cable,1,11.95,05/27/19 14:39,"932 Lake St, Seattle, WA 98101" +201233,Lightning Charging Cable,1,14.95,05/22/19 11:54,"459 Cedar St, San Francisco, CA 94016" +201234,Bose SoundSport Headphones,1,99.99,05/31/19 09:20,"278 Hill St, San Francisco, CA 94016" +201235,AA Batteries (4-pack),2,3.84,05/20/19 08:23,"568 Walnut St, Atlanta, GA 30301" +201236,Bose SoundSport Headphones,1,99.99,05/06/19 00:24,"801 Madison St, Portland, OR 97035" +201237,Bose SoundSport Headphones,1,99.99,05/17/19 21:26,"205 Johnson St, San Francisco, CA 94016" +201238,Flatscreen TV,1,300,05/21/19 15:48,"697 Cherry St, San Francisco, CA 94016" +201239,USB-C Charging Cable,1,11.95,05/05/19 09:48,"80 6th St, Los Angeles, CA 90001" +201240,27in 4K Gaming Monitor,1,389.99,05/14/19 12:49,"136 Wilson St, Boston, MA 02215" +201241,Google Phone,1,600,05/25/19 18:20,"148 North St, Los Angeles, CA 90001" +201242,Wired Headphones,1,11.99,05/17/19 20:56,"97 Cherry St, Dallas, TX 75001" +201243,20in Monitor,1,109.99,05/20/19 08:54,"966 Jackson St, San Francisco, CA 94016" +201244,Wired Headphones,2,11.99,05/27/19 20:59,"246 13th St, Los Angeles, CA 90001" +201245,27in 4K Gaming Monitor,1,389.99,05/21/19 22:32,"845 Walnut St, Los Angeles, CA 90001" +201246,27in 4K Gaming Monitor,1,389.99,05/11/19 12:59,"275 Lakeview St, San Francisco, CA 94016" +201247,AA Batteries (4-pack),1,3.84,05/09/19 19:15,"555 Wilson St, San Francisco, CA 94016" +201248,Wired Headphones,1,11.99,05/15/19 17:53,"654 10th St, Los Angeles, CA 90001" +201249,Wired Headphones,1,11.99,05/19/19 20:07,"205 Maple St, San Francisco, CA 94016" +201250,USB-C Charging Cable,1,11.95,05/26/19 14:24,"588 Cedar St, Dallas, TX 75001" +201251,34in Ultrawide Monitor,1,379.99,05/23/19 16:26,"930 Main St, San Francisco, CA 94016" +201252,Bose SoundSport Headphones,1,99.99,05/09/19 10:55,"138 North St, Austin, TX 73301" +201253,20in Monitor,1,109.99,05/17/19 13:42,"380 9th St, Los Angeles, CA 90001" +201254,USB-C Charging Cable,1,11.95,05/15/19 20:22,"512 Willow St, Dallas, TX 75001" +201255,Apple Airpods Headphones,1,150,05/14/19 18:44,"992 14th St, Los Angeles, CA 90001" +201256,Apple Airpods Headphones,1,150,05/25/19 15:41,"38 11th St, Portland, OR 97035" +201257,AA Batteries (4-pack),1,3.84,05/19/19 22:30,"541 Meadow St, Los Angeles, CA 90001" +201258,USB-C Charging Cable,1,11.95,05/11/19 10:34,"968 Meadow St, Dallas, TX 75001" +201259,USB-C Charging Cable,1,11.95,05/08/19 23:14,"628 2nd St, Atlanta, GA 30301" +201260,USB-C Charging Cable,1,11.95,05/30/19 18:57,"432 14th St, New York City, NY 10001" +201261,Lightning Charging Cable,1,14.95,05/16/19 08:42,"19 Spruce St, Austin, TX 73301" +201262,AA Batteries (4-pack),1,3.84,05/25/19 13:08,"689 Center St, San Francisco, CA 94016" +201263,Bose SoundSport Headphones,1,99.99,05/27/19 18:34,"715 Jackson St, Dallas, TX 75001" +201264,iPhone,1,700,05/21/19 19:11,"840 Main St, San Francisco, CA 94016" +201264,Lightning Charging Cable,1,14.95,05/21/19 19:11,"840 Main St, San Francisco, CA 94016" +201265,Macbook Pro Laptop,1,1700,05/31/19 20:27,"460 River St, Dallas, TX 75001" +201266,LG Washing Machine,1,600.0,05/17/19 18:30,"47 Forest St, San Francisco, CA 94016" +201267,27in FHD Monitor,1,149.99,05/13/19 17:30,"23 Highland St, New York City, NY 10001" +201268,Wired Headphones,1,11.99,05/04/19 09:41,"971 Forest St, San Francisco, CA 94016" +201269,Wired Headphones,1,11.99,05/12/19 11:59,"786 Sunset St, New York City, NY 10001" +201270,USB-C Charging Cable,1,11.95,05/06/19 12:56,"462 Park St, Los Angeles, CA 90001" +201271,Bose SoundSport Headphones,1,99.99,05/04/19 19:03,"401 2nd St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +201272,Macbook Pro Laptop,1,1700,05/21/19 17:03,"169 Cherry St, Atlanta, GA 30301" +201273,AAA Batteries (4-pack),1,2.99,05/21/19 14:04,"947 West St, Atlanta, GA 30301" +201274,AA Batteries (4-pack),1,3.84,05/26/19 08:33,"688 Madison St, Dallas, TX 75001" +201275,AA Batteries (4-pack),1,3.84,05/18/19 13:25,"673 14th St, Atlanta, GA 30301" +201276,Google Phone,1,600,05/02/19 18:44,"513 Pine St, Boston, MA 02215" +201276,USB-C Charging Cable,1,11.95,05/02/19 18:44,"513 Pine St, Boston, MA 02215" +201277,Apple Airpods Headphones,1,150,05/27/19 14:54,"581 Main St, Seattle, WA 98101" +201278,Lightning Charging Cable,2,14.95,05/20/19 13:04,"435 South St, Dallas, TX 75001" +201279,27in FHD Monitor,1,149.99,05/26/19 12:09,"12 14th St, San Francisco, CA 94016" +201280,Lightning Charging Cable,1,14.95,05/05/19 15:30,"128 12th St, Los Angeles, CA 90001" +201281,Lightning Charging Cable,1,14.95,05/05/19 13:08,"59 Church St, Seattle, WA 98101" +201282,Apple Airpods Headphones,1,150,05/18/19 22:32,"352 Wilson St, San Francisco, CA 94016" +201283,27in FHD Monitor,1,149.99,05/06/19 14:45,"508 11th St, San Francisco, CA 94016" +201284,USB-C Charging Cable,1,11.95,05/03/19 09:51,"916 2nd St, Boston, MA 02215" +201285,Apple Airpods Headphones,1,150,05/04/19 17:27,"771 10th St, New York City, NY 10001" +201286,27in 4K Gaming Monitor,1,389.99,05/07/19 20:13,"813 6th St, Seattle, WA 98101" +201287,AAA Batteries (4-pack),1,2.99,05/03/19 20:43,"295 Park St, Los Angeles, CA 90001" +201288,Wired Headphones,2,11.99,05/10/19 14:37,"825 Maple St, Boston, MA 02215" +201289,20in Monitor,1,109.99,05/27/19 15:59,"828 Hill St, Seattle, WA 98101" +201290,27in FHD Monitor,1,149.99,05/08/19 19:31,"923 North St, San Francisco, CA 94016" +201291,Apple Airpods Headphones,1,150,05/14/19 11:18,"605 10th St, Los Angeles, CA 90001" +201292,Bose SoundSport Headphones,1,99.99,05/05/19 08:56,"921 5th St, Seattle, WA 98101" +201293,USB-C Charging Cable,1,11.95,05/11/19 21:15,"373 12th St, Seattle, WA 98101" +201294,AAA Batteries (4-pack),2,2.99,05/01/19 13:30,"493 8th St, San Francisco, CA 94016" +201295,AAA Batteries (4-pack),2,2.99,05/24/19 17:18,"525 Willow St, Dallas, TX 75001" +201296,USB-C Charging Cable,1,11.95,05/31/19 20:04,"63 Lakeview St, Dallas, TX 75001" +201297,AA Batteries (4-pack),1,3.84,05/22/19 18:41,"962 Pine St, Atlanta, GA 30301" +201298,Lightning Charging Cable,1,14.95,05/14/19 07:04,"584 Dogwood St, San Francisco, CA 94016" +201299,Bose SoundSport Headphones,1,99.99,05/27/19 20:40,"737 Park St, Los Angeles, CA 90001" +201300,Lightning Charging Cable,1,14.95,05/24/19 00:07,"406 Meadow St, Seattle, WA 98101" +201301,AA Batteries (4-pack),1,3.84,05/05/19 12:05,"468 7th St, Los Angeles, CA 90001" +201302,LG Washing Machine,1,600.0,05/20/19 09:50,"766 Jackson St, San Francisco, CA 94016" +201303,USB-C Charging Cable,1,11.95,05/02/19 15:35,"394 4th St, Los Angeles, CA 90001" +201304,Macbook Pro Laptop,1,1700,05/10/19 16:21,"288 Hill St, New York City, NY 10001" +201305,Lightning Charging Cable,1,14.95,05/25/19 16:37,"545 Sunset St, Los Angeles, CA 90001" +201306,Apple Airpods Headphones,1,150,05/03/19 08:47,"599 7th St, Dallas, TX 75001" +201307,Lightning Charging Cable,1,14.95,05/21/19 14:40,"183 6th St, San Francisco, CA 94016" +201308,USB-C Charging Cable,1,11.95,05/18/19 15:05,"988 9th St, Boston, MA 02215" +201309,Lightning Charging Cable,1,14.95,05/31/19 12:16,"274 7th St, Boston, MA 02215" +201310,iPhone,1,700,05/28/19 15:09,"883 Lakeview St, San Francisco, CA 94016" +201311,USB-C Charging Cable,1,11.95,05/20/19 11:41,"196 1st St, San Francisco, CA 94016" +201312,AAA Batteries (4-pack),1,2.99,05/23/19 22:55,"733 6th St, San Francisco, CA 94016" +201313,Wired Headphones,1,11.99,05/05/19 17:55,"975 2nd St, Portland, OR 97035" +201314,AA Batteries (4-pack),1,3.84,05/03/19 16:03,"630 Park St, San Francisco, CA 94016" +201315,Bose SoundSport Headphones,1,99.99,05/01/19 17:56,"887 Pine St, Portland, OR 97035" +201316,Google Phone,1,600,05/30/19 21:11,"771 14th St, Austin, TX 73301" +201316,USB-C Charging Cable,1,11.95,05/30/19 21:11,"771 14th St, Austin, TX 73301" +201317,Lightning Charging Cable,1,14.95,05/06/19 12:48,"814 Forest St, San Francisco, CA 94016" +201318,Wired Headphones,2,11.99,05/09/19 19:07,"87 Walnut St, Seattle, WA 98101" +201319,AAA Batteries (4-pack),1,2.99,05/05/19 10:20,"646 Madison St, Boston, MA 02215" +201320,AAA Batteries (4-pack),1,2.99,05/08/19 17:20,"505 Lake St, Atlanta, GA 30301" +201321,Google Phone,1,600,05/01/19 14:15,"289 Main St, Seattle, WA 98101" +201321,USB-C Charging Cable,1,11.95,05/01/19 14:15,"289 Main St, Seattle, WA 98101" +201322,Apple Airpods Headphones,1,150,05/28/19 06:41,"252 Hill St, New York City, NY 10001" +201323,Wired Headphones,1,11.99,05/06/19 00:06,"460 Hill St, New York City, NY 10001" +201324,iPhone,1,700,05/22/19 16:40,"830 Adams St, Dallas, TX 75001" +201325,Google Phone,1,600,05/09/19 17:57,"245 7th St, San Francisco, CA 94016" +201326,Flatscreen TV,1,300,05/27/19 09:39,"679 2nd St, Los Angeles, CA 90001" +201327,Apple Airpods Headphones,1,150,05/31/19 08:39,"885 Jackson St, San Francisco, CA 94016" +201328,iPhone,1,700,05/05/19 04:33,"73 6th St, Boston, MA 02215" +201328,Lightning Charging Cable,1,14.95,05/05/19 04:33,"73 6th St, Boston, MA 02215" +201329,27in FHD Monitor,1,149.99,05/17/19 23:13,"741 11th St, Los Angeles, CA 90001" +201330,USB-C Charging Cable,1,11.95,05/23/19 07:54,"360 8th St, New York City, NY 10001" +201331,AAA Batteries (4-pack),2,2.99,05/03/19 14:27,"522 1st St, Los Angeles, CA 90001" +201332,Lightning Charging Cable,1,14.95,05/02/19 20:28,"769 Hickory St, Los Angeles, CA 90001" +201333,Lightning Charging Cable,2,14.95,05/14/19 09:46,"409 Elm St, Atlanta, GA 30301" +201334,Google Phone,1,600,05/22/19 02:22,"307 Wilson St, Portland, OR 97035" +201335,Wired Headphones,1,11.99,05/06/19 12:02,"140 Cedar St, Atlanta, GA 30301" +201336,AA Batteries (4-pack),1,3.84,05/13/19 08:29,"300 Wilson St, San Francisco, CA 94016" +201336,USB-C Charging Cable,1,11.95,05/13/19 08:29,"300 Wilson St, San Francisco, CA 94016" +201337,Wired Headphones,1,11.99,05/30/19 09:50,"768 Jackson St, Atlanta, GA 30301" +201338,Wired Headphones,1,11.99,05/04/19 17:42,"475 Lincoln St, Atlanta, GA 30301" +201339,AAA Batteries (4-pack),1,2.99,05/21/19 21:05,"315 Forest St, Atlanta, GA 30301" +201340,Flatscreen TV,1,300,05/15/19 08:42,"135 Lincoln St, San Francisco, CA 94016" +201341,Bose SoundSport Headphones,1,99.99,05/03/19 19:51,"374 7th St, Los Angeles, CA 90001" +201342,Apple Airpods Headphones,1,150,05/22/19 13:54,"489 Center St, Portland, ME 04101" +201343,AAA Batteries (4-pack),1,2.99,05/12/19 10:01,"194 2nd St, Los Angeles, CA 90001" +201344,AAA Batteries (4-pack),1,2.99,05/15/19 22:31,"646 Walnut St, Los Angeles, CA 90001" +201345,Apple Airpods Headphones,1,150,05/26/19 17:35,"706 Adams St, New York City, NY 10001" +201346,Bose SoundSport Headphones,1,99.99,05/02/19 08:30,"313 North St, Los Angeles, CA 90001" +201347,AAA Batteries (4-pack),1,2.99,05/25/19 09:18,"664 Washington St, Austin, TX 73301" +201347,AAA Batteries (4-pack),1,2.99,05/25/19 09:18,"664 Washington St, Austin, TX 73301" +201348,34in Ultrawide Monitor,1,379.99,05/28/19 10:25,"769 8th St, Atlanta, GA 30301" +201349,Google Phone,1,600,05/10/19 16:00,"32 5th St, Atlanta, GA 30301" +201350,Lightning Charging Cable,1,14.95,05/18/19 23:01,"84 South St, Seattle, WA 98101" +201351,AA Batteries (4-pack),1,3.84,05/31/19 07:49,"440 2nd St, Boston, MA 02215" +201352,USB-C Charging Cable,2,11.95,05/29/19 09:39,"289 13th St, San Francisco, CA 94016" +201353,AA Batteries (4-pack),1,3.84,05/30/19 03:12,"711 8th St, Los Angeles, CA 90001" +201354,Bose SoundSport Headphones,1,99.99,05/18/19 12:58,"708 2nd St, Dallas, TX 75001" +201355,Bose SoundSport Headphones,1,99.99,05/13/19 22:29,"838 Church St, New York City, NY 10001" +201356,27in 4K Gaming Monitor,1,389.99,05/21/19 20:40,"997 1st St, New York City, NY 10001" +201357,Wired Headphones,1,11.99,05/12/19 10:04,"724 Center St, San Francisco, CA 94016" +201358,AA Batteries (4-pack),1,3.84,05/18/19 10:30,"42 Pine St, Portland, OR 97035" +201359,Google Phone,1,600,05/02/19 18:23,"209 Lincoln St, New York City, NY 10001" +201359,AA Batteries (4-pack),1,3.84,05/02/19 18:23,"209 Lincoln St, New York City, NY 10001" +201360,Flatscreen TV,1,300,05/17/19 03:31,"780 6th St, Atlanta, GA 30301" +201361,AAA Batteries (4-pack),2,2.99,05/22/19 09:37,"608 Chestnut St, Portland, ME 04101" +201362,Apple Airpods Headphones,1,150,05/23/19 16:14,"314 Chestnut St, Los Angeles, CA 90001" +201363,27in 4K Gaming Monitor,1,389.99,05/22/19 11:09,"195 7th St, Dallas, TX 75001" +201364,AAA Batteries (4-pack),1,2.99,05/13/19 15:43,"306 5th St, San Francisco, CA 94016" +201365,27in FHD Monitor,1,149.99,05/26/19 11:37,"492 Hill St, Boston, MA 02215" +201366,20in Monitor,1,109.99,05/06/19 13:42,"895 North St, New York City, NY 10001" +201367,AA Batteries (4-pack),1,3.84,05/02/19 21:03,"413 Hill St, New York City, NY 10001" +201368,USB-C Charging Cable,1,11.95,05/26/19 10:34,"160 Meadow St, San Francisco, CA 94016" +201369,20in Monitor,1,109.99,05/20/19 17:52,"745 Main St, San Francisco, CA 94016" +201370,Lightning Charging Cable,1,14.95,05/18/19 11:30,"371 Willow St, Los Angeles, CA 90001" +201371,AA Batteries (4-pack),2,3.84,05/20/19 14:04,"707 2nd St, New York City, NY 10001" +201372,Apple Airpods Headphones,1,150,05/22/19 15:27,"419 11th St, Portland, OR 97035" +201373,USB-C Charging Cable,1,11.95,05/18/19 00:51,"609 7th St, New York City, NY 10001" +201374,iPhone,1,700,05/26/19 20:17,"498 Ridge St, San Francisco, CA 94016" +201375,27in 4K Gaming Monitor,1,389.99,05/06/19 11:30,"99 Jefferson St, Portland, OR 97035" +201376,ThinkPad Laptop,1,999.99,05/09/19 12:53,"192 Jefferson St, San Francisco, CA 94016" +201377,Apple Airpods Headphones,1,150,05/14/19 13:59,"764 Lake St, Boston, MA 02215" +201378,27in FHD Monitor,1,149.99,05/29/19 14:17,"626 Elm St, Boston, MA 02215" +201379,Bose SoundSport Headphones,1,99.99,05/09/19 18:06,"924 Lakeview St, San Francisco, CA 94016" +201380,Flatscreen TV,1,300,05/07/19 11:45,"978 13th St, Portland, OR 97035" +201381,Wired Headphones,1,11.99,05/05/19 12:37,"472 Highland St, San Francisco, CA 94016" +201382,Lightning Charging Cable,1,14.95,05/02/19 19:47,"338 13th St, San Francisco, CA 94016" +201383,27in FHD Monitor,1,149.99,05/30/19 16:43,"142 Main St, Seattle, WA 98101" +201384,Wired Headphones,1,11.99,05/31/19 16:48,"819 West St, Dallas, TX 75001" +201385,Lightning Charging Cable,1,14.95,05/31/19 20:47,"526 Meadow St, New York City, NY 10001" +201386,Wired Headphones,1,11.99,05/03/19 00:48,"494 Wilson St, Los Angeles, CA 90001" +201387,Wired Headphones,1,11.99,05/03/19 09:54,"174 Willow St, Austin, TX 73301" +201388,AA Batteries (4-pack),1,3.84,05/27/19 08:19,"491 Hill St, San Francisco, CA 94016" +201389,Macbook Pro Laptop,1,1700,05/20/19 13:48,"431 Hickory St, Portland, ME 04101" +201390,AA Batteries (4-pack),1,3.84,05/19/19 19:39,"939 Meadow St, Los Angeles, CA 90001" +201391,Bose SoundSport Headphones,1,99.99,05/04/19 21:25,"185 Wilson St, Boston, MA 02215" +201392,Wired Headphones,1,11.99,05/24/19 19:01,"826 Adams St, Los Angeles, CA 90001" +201393,iPhone,1,700,05/26/19 17:34,"784 Center St, Boston, MA 02215" +201394,Wired Headphones,1,11.99,05/09/19 20:29,"380 Willow St, Austin, TX 73301" +201395,USB-C Charging Cable,2,11.95,05/24/19 09:50,"584 Church St, Los Angeles, CA 90001" +201396,Bose SoundSport Headphones,1,99.99,05/06/19 08:23,"834 Elm St, New York City, NY 10001" +201397,34in Ultrawide Monitor,1,379.99,05/31/19 21:52,"905 Highland St, New York City, NY 10001" +201398,Wired Headphones,1,11.99,05/29/19 13:00,"208 11th St, San Francisco, CA 94016" +201399,Lightning Charging Cable,1,14.95,05/20/19 09:31,"807 Dogwood St, San Francisco, CA 94016" +201400,Wired Headphones,1,11.99,05/01/19 18:38,"296 Forest St, Dallas, TX 75001" +201401,Bose SoundSport Headphones,1,99.99,05/26/19 14:41,"580 12th St, New York City, NY 10001" +201402,AAA Batteries (4-pack),1,2.99,05/13/19 09:49,"718 Madison St, Portland, OR 97035" +201403,Lightning Charging Cable,1,14.95,05/02/19 16:34,"454 Chestnut St, New York City, NY 10001" +201404,Bose SoundSport Headphones,1,99.99,05/19/19 13:09,"597 2nd St, Seattle, WA 98101" +201405,iPhone,1,700,05/08/19 17:05,"29 Hickory St, San Francisco, CA 94016" +201406,Bose SoundSport Headphones,1,99.99,05/29/19 01:06,"170 Johnson St, New York City, NY 10001" +201407,27in 4K Gaming Monitor,1,389.99,05/11/19 05:11,"324 Main St, San Francisco, CA 94016" +201408,Apple Airpods Headphones,1,150,05/17/19 16:37,"188 Lake St, San Francisco, CA 94016" +201409,USB-C Charging Cable,1,11.95,05/22/19 21:48,"377 Maple St, Austin, TX 73301" +201410,ThinkPad Laptop,1,999.99,05/20/19 23:54,"648 14th St, Los Angeles, CA 90001" +201411,27in FHD Monitor,1,149.99,05/29/19 15:52,"694 1st St, Atlanta, GA 30301" +201412,27in 4K Gaming Monitor,1,389.99,05/14/19 17:42,"677 Cedar St, San Francisco, CA 94016" +201413,USB-C Charging Cable,2,11.95,05/03/19 09:50,"139 Willow St, Boston, MA 02215" +201414,Lightning Charging Cable,1,14.95,05/23/19 21:19,"248 12th St, San Francisco, CA 94016" +201415,Flatscreen TV,1,300,05/07/19 19:03,"394 10th St, New York City, NY 10001" +201416,Wired Headphones,1,11.99,05/05/19 14:03,"317 Wilson St, Seattle, WA 98101" +201417,AA Batteries (4-pack),1,3.84,05/07/19 20:53,"36 Center St, San Francisco, CA 94016" +201418,Apple Airpods Headphones,1,150,05/22/19 18:55,"100 Cedar St, Atlanta, GA 30301" +201419,Apple Airpods Headphones,1,150,05/03/19 16:35,"821 Lake St, Boston, MA 02215" +201420,AA Batteries (4-pack),1,3.84,05/31/19 00:06,"64 Wilson St, Dallas, TX 75001" +201421,27in 4K Gaming Monitor,1,389.99,05/19/19 10:46,"219 South St, Dallas, TX 75001" +201422,AA Batteries (4-pack),2,3.84,05/20/19 11:13,"750 7th St, Los Angeles, CA 90001" +201423,Flatscreen TV,1,300,05/12/19 09:19,"85 6th St, Dallas, TX 75001" +201424,Bose SoundSport Headphones,1,99.99,05/07/19 13:46,"922 Elm St, Dallas, TX 75001" +201425,Bose SoundSport Headphones,1,99.99,05/19/19 12:56,"949 Elm St, San Francisco, CA 94016" +201426,Google Phone,1,600,05/10/19 01:10,"455 Jackson St, Dallas, TX 75001" +201426,USB-C Charging Cable,1,11.95,05/10/19 01:10,"455 Jackson St, Dallas, TX 75001" +201427,AA Batteries (4-pack),2,3.84,05/10/19 14:57,"106 Lake St, New York City, NY 10001" +201428,AA Batteries (4-pack),2,3.84,05/01/19 09:47,"755 Church St, Portland, OR 97035" +201429,20in Monitor,1,109.99,05/18/19 22:44,"493 13th St, Seattle, WA 98101" +201430,Wired Headphones,1,11.99,05/25/19 11:56,"504 14th St, New York City, NY 10001" +201431,Bose SoundSport Headphones,1,99.99,05/30/19 09:54,"756 Johnson St, San Francisco, CA 94016" +201432,Wired Headphones,1,11.99,05/07/19 10:47,"482 Jefferson St, Austin, TX 73301" +201433,AAA Batteries (4-pack),1,2.99,05/01/19 11:52,"311 West St, Dallas, TX 75001" +201434,AAA Batteries (4-pack),2,2.99,05/27/19 11:09,"342 1st St, Seattle, WA 98101" +201435,Apple Airpods Headphones,1,150,05/29/19 18:33,"182 Spruce St, New York City, NY 10001" +201436,USB-C Charging Cable,1,11.95,05/24/19 00:13,"614 Adams St, Austin, TX 73301" +201437,Macbook Pro Laptop,1,1700,05/12/19 18:10,"662 Maple St, Seattle, WA 98101" +201438,Wired Headphones,1,11.99,05/26/19 08:30,"809 5th St, San Francisco, CA 94016" +201439,Vareebadd Phone,1,400,05/26/19 11:12,"862 Elm St, San Francisco, CA 94016" +201439,USB-C Charging Cable,1,11.95,05/26/19 11:12,"862 Elm St, San Francisco, CA 94016" +201440,ThinkPad Laptop,1,999.99,05/14/19 00:16,"760 7th St, Seattle, WA 98101" +201441,Lightning Charging Cable,1,14.95,05/01/19 10:18,"791 Main St, New York City, NY 10001" +201442,Google Phone,1,600,05/05/19 20:17,"15 6th St, New York City, NY 10001" +201443,Bose SoundSport Headphones,1,99.99,05/28/19 22:27,"466 Washington St, Boston, MA 02215" +201444,USB-C Charging Cable,1,11.95,05/22/19 23:01,"130 Ridge St, Austin, TX 73301" +201445,Flatscreen TV,1,300,05/22/19 17:28,"532 Ridge St, San Francisco, CA 94016" +201446,AA Batteries (4-pack),1,3.84,05/19/19 00:47,"135 North St, Atlanta, GA 30301" +201447,Apple Airpods Headphones,1,150,05/09/19 20:11,"587 Jefferson St, Boston, MA 02215" +201448,Wired Headphones,1,11.99,05/11/19 16:39,"971 5th St, Los Angeles, CA 90001" +201449,AAA Batteries (4-pack),5,2.99,05/15/19 12:44,"162 8th St, Portland, OR 97035" +201450,Bose SoundSport Headphones,1,99.99,05/12/19 10:51,"926 Center St, Boston, MA 02215" +201451,AA Batteries (4-pack),2,3.84,05/29/19 13:59,"919 10th St, Dallas, TX 75001" +201452,USB-C Charging Cable,1,11.95,05/22/19 21:44,"575 South St, New York City, NY 10001" +201453,iPhone,1,700,05/23/19 22:03,"366 Center St, Austin, TX 73301" +201453,27in FHD Monitor,1,149.99,05/23/19 22:03,"366 Center St, Austin, TX 73301" +201454,AAA Batteries (4-pack),2,2.99,05/10/19 17:24,"497 Madison St, San Francisco, CA 94016" +201455,USB-C Charging Cable,1,11.95,05/14/19 12:43,"689 River St, Boston, MA 02215" +201456,Macbook Pro Laptop,1,1700,05/01/19 23:35,"773 Center St, Dallas, TX 75001" +201457,Flatscreen TV,1,300,05/06/19 07:38,"230 Hickory St, New York City, NY 10001" +201458,USB-C Charging Cable,1,11.95,05/30/19 14:44,"956 Jefferson St, Atlanta, GA 30301" +201459,Google Phone,1,600,05/02/19 23:25,"51 Madison St, Los Angeles, CA 90001" +201460,AAA Batteries (4-pack),1,2.99,05/01/19 10:32,"455 Elm St, Los Angeles, CA 90001" +201461,27in 4K Gaming Monitor,1,389.99,05/04/19 10:48,"803 Center St, San Francisco, CA 94016" +201462,AA Batteries (4-pack),1,3.84,05/04/19 16:01,"531 Madison St, Dallas, TX 75001" +201463,Macbook Pro Laptop,1,1700,05/18/19 00:50,"497 South St, Los Angeles, CA 90001" +201464,Google Phone,1,600,05/10/19 17:48,"681 West St, San Francisco, CA 94016" +201465,Wired Headphones,2,11.99,05/23/19 21:23,"976 Center St, Los Angeles, CA 90001" +201466,Apple Airpods Headphones,1,150,05/16/19 17:21,"738 1st St, San Francisco, CA 94016" +201467,AAA Batteries (4-pack),1,2.99,05/13/19 15:50,"30 4th St, San Francisco, CA 94016" +201468,AA Batteries (4-pack),1,3.84,05/02/19 14:12,"995 Walnut St, Seattle, WA 98101" +201469,Bose SoundSport Headphones,1,99.99,05/06/19 20:06,"967 Church St, Boston, MA 02215" +201470,20in Monitor,1,109.99,05/09/19 15:14,"51 Lakeview St, Los Angeles, CA 90001" +201471,34in Ultrawide Monitor,1,379.99,05/13/19 19:04,"448 Dogwood St, Boston, MA 02215" +201472,Vareebadd Phone,1,400,05/10/19 10:41,"502 Hill St, Atlanta, GA 30301" +201472,USB-C Charging Cable,1,11.95,05/10/19 10:41,"502 Hill St, Atlanta, GA 30301" +201472,Bose SoundSport Headphones,1,99.99,05/10/19 10:41,"502 Hill St, Atlanta, GA 30301" +201473,Bose SoundSport Headphones,1,99.99,05/09/19 12:53,"522 Maple St, New York City, NY 10001" +201474,AA Batteries (4-pack),1,3.84,05/03/19 16:48,"698 Sunset St, Boston, MA 02215" +201475,Bose SoundSport Headphones,2,99.99,05/28/19 12:41,"138 Center St, Los Angeles, CA 90001" +201476,Apple Airpods Headphones,1,150,05/09/19 10:02,"806 Hickory St, San Francisco, CA 94016" +201477,Google Phone,1,600,05/11/19 19:15,"475 Forest St, Boston, MA 02215" +201477,Bose SoundSport Headphones,1,99.99,05/11/19 19:15,"475 Forest St, Boston, MA 02215" +201478,Vareebadd Phone,1,400,05/20/19 12:10,"68 Elm St, Seattle, WA 98101" +201479,AAA Batteries (4-pack),2,2.99,05/24/19 09:19,"353 Dogwood St, New York City, NY 10001" +201480,Lightning Charging Cable,1,14.95,05/27/19 22:46,"850 Jackson St, Los Angeles, CA 90001" +201481,Lightning Charging Cable,1,14.95,05/03/19 18:52,"48 River St, Dallas, TX 75001" +201482,USB-C Charging Cable,1,11.95,05/18/19 18:47,"206 Washington St, Boston, MA 02215" +201483,AA Batteries (4-pack),1,3.84,05/11/19 11:25,"754 9th St, Los Angeles, CA 90001" +201484,ThinkPad Laptop,1,999.99,05/09/19 18:00,"979 Meadow St, Seattle, WA 98101" +201485,AAA Batteries (4-pack),3,2.99,05/02/19 13:57,"79 Hickory St, Boston, MA 02215" +201486,AAA Batteries (4-pack),2,2.99,05/27/19 19:52,"658 Cedar St, Austin, TX 73301" +201487,USB-C Charging Cable,1,11.95,05/03/19 21:05,"730 Jackson St, New York City, NY 10001" +201488,USB-C Charging Cable,1,11.95,05/02/19 13:54,"111 Park St, San Francisco, CA 94016" +201489,USB-C Charging Cable,1,11.95,05/04/19 22:20,"35 South St, Seattle, WA 98101" +201490,USB-C Charging Cable,1,11.95,05/23/19 10:06,"867 Cedar St, Los Angeles, CA 90001" +201491,27in 4K Gaming Monitor,1,389.99,05/10/19 18:04,"985 Dogwood St, Boston, MA 02215" +201492,27in FHD Monitor,1,149.99,05/19/19 11:40,"298 6th St, Boston, MA 02215" +201493,Flatscreen TV,1,300,05/05/19 20:54,"596 Adams St, Portland, ME 04101" +201494,Wired Headphones,1,11.99,05/02/19 16:15,"961 West St, New York City, NY 10001" +201495,USB-C Charging Cable,1,11.95,05/13/19 13:53,"848 Main St, New York City, NY 10001" +201496,AAA Batteries (4-pack),1,2.99,05/07/19 13:39,"308 Jackson St, Atlanta, GA 30301" +201497,27in 4K Gaming Monitor,1,389.99,05/14/19 19:20,"287 Sunset St, New York City, NY 10001" +201498,USB-C Charging Cable,1,11.95,05/13/19 11:12,"976 Sunset St, Portland, ME 04101" +201499,AA Batteries (4-pack),1,3.84,05/01/19 16:42,"60 Meadow St, Dallas, TX 75001" +201500,Wired Headphones,1,11.99,05/10/19 14:22,"519 Johnson St, Los Angeles, CA 90001" +201501,Bose SoundSport Headphones,1,99.99,05/28/19 10:25,"150 Jackson St, Dallas, TX 75001" +201502,iPhone,1,700,05/11/19 13:01,"597 South St, Seattle, WA 98101" +201503,Bose SoundSport Headphones,1,99.99,05/30/19 13:45,"581 West St, Los Angeles, CA 90001" +201504,ThinkPad Laptop,1,999.99,05/25/19 17:23,"94 Hickory St, Atlanta, GA 30301" +201505,Apple Airpods Headphones,1,150,05/06/19 11:34,"539 Lakeview St, Boston, MA 02215" +201506,Lightning Charging Cable,1,14.95,05/21/19 09:54,"867 Ridge St, Portland, OR 97035" +201507,Bose SoundSport Headphones,1,99.99,05/21/19 04:31,"743 Willow St, Los Angeles, CA 90001" +201508,USB-C Charging Cable,1,11.95,05/02/19 06:45,"713 South St, Dallas, TX 75001" +201509,AAA Batteries (4-pack),3,2.99,05/26/19 18:20,"409 7th St, Los Angeles, CA 90001" +201510,Lightning Charging Cable,1,14.95,05/03/19 20:17,"72 Hill St, San Francisco, CA 94016" +201511,AAA Batteries (4-pack),1,2.99,05/14/19 18:12,"741 Ridge St, Los Angeles, CA 90001" +201512,USB-C Charging Cable,1,11.95,05/16/19 17:20,"80 Walnut St, Los Angeles, CA 90001" +201513,Lightning Charging Cable,1,14.95,05/23/19 11:22,"890 14th St, Los Angeles, CA 90001" +201514,Apple Airpods Headphones,1,150,05/07/19 08:37,"73 13th St, San Francisco, CA 94016" +201515,Apple Airpods Headphones,1,150,05/27/19 21:07,"112 Adams St, Los Angeles, CA 90001" +201516,AA Batteries (4-pack),1,3.84,05/07/19 09:49,"852 Main St, New York City, NY 10001" +201517,AA Batteries (4-pack),3,3.84,05/30/19 10:33,"351 Willow St, San Francisco, CA 94016" +201518,Wired Headphones,1,11.99,05/01/19 13:27,"944 Meadow St, Portland, OR 97035" +201519,iPhone,1,700,05/11/19 06:16,"991 West St, San Francisco, CA 94016" +201520,LG Washing Machine,1,600.0,05/08/19 18:29,"111 1st St, New York City, NY 10001" +201521,AA Batteries (4-pack),1,3.84,05/29/19 14:31,"997 Highland St, New York City, NY 10001" +201522,AAA Batteries (4-pack),1,2.99,05/19/19 18:35,"240 Cedar St, Atlanta, GA 30301" +201523,Wired Headphones,1,11.99,05/29/19 15:07,"984 Jackson St, Austin, TX 73301" +201524,Bose SoundSport Headphones,1,99.99,05/31/19 08:31,"30 South St, Los Angeles, CA 90001" +201525,USB-C Charging Cable,1,11.95,05/29/19 12:39,"715 Main St, Portland, OR 97035" +201526,34in Ultrawide Monitor,1,379.99,05/04/19 16:30,"969 Meadow St, Los Angeles, CA 90001" +201527,Apple Airpods Headphones,1,150,05/25/19 13:11,"125 River St, San Francisco, CA 94016" +201528,Apple Airpods Headphones,1,150,05/05/19 16:15,"108 12th St, Austin, TX 73301" +201529,Wired Headphones,1,11.99,05/27/19 20:46,"898 Cherry St, Austin, TX 73301" +201530,USB-C Charging Cable,1,11.95,05/13/19 19:46,"718 Washington St, San Francisco, CA 94016" +201531,20in Monitor,1,109.99,05/22/19 07:10,"306 Spruce St, Los Angeles, CA 90001" +201532,AA Batteries (4-pack),1,3.84,05/28/19 19:58,"339 2nd St, Los Angeles, CA 90001" +201533,iPhone,1,700,05/12/19 15:22,"441 Elm St, New York City, NY 10001" +201533,Apple Airpods Headphones,1,150,05/12/19 15:22,"441 Elm St, New York City, NY 10001" +201534,Wired Headphones,3,11.99,05/05/19 16:25,"294 Adams St, Dallas, TX 75001" +201535,LG Washing Machine,1,600.0,05/27/19 21:52,"371 Pine St, Portland, OR 97035" +201536,Bose SoundSport Headphones,1,99.99,05/09/19 19:31,"848 5th St, Portland, OR 97035" +201537,Lightning Charging Cable,1,14.95,05/29/19 19:22,"285 Cherry St, San Francisco, CA 94016" +201538,Bose SoundSport Headphones,1,99.99,05/05/19 10:29,"280 Dogwood St, Los Angeles, CA 90001" +201539,AA Batteries (4-pack),2,3.84,05/27/19 03:25,"192 13th St, Austin, TX 73301" +201540,Apple Airpods Headphones,1,150,05/14/19 18:21,"21 Hickory St, Atlanta, GA 30301" +201541,27in FHD Monitor,1,149.99,05/13/19 06:45,"895 Park St, Los Angeles, CA 90001" +201542,USB-C Charging Cable,1,11.95,05/31/19 20:03,"576 Cherry St, Dallas, TX 75001" +201543,AAA Batteries (4-pack),1,2.99,05/07/19 13:42,"213 West St, Dallas, TX 75001" +201544,Wired Headphones,1,11.99,05/03/19 14:17,"614 Church St, Atlanta, GA 30301" +201545,34in Ultrawide Monitor,1,379.99,05/31/19 18:02,"726 13th St, Atlanta, GA 30301" +201546,iPhone,1,700,05/14/19 13:34,"354 2nd St, Los Angeles, CA 90001" +201547,AAA Batteries (4-pack),3,2.99,05/05/19 06:59,"89 Lakeview St, Atlanta, GA 30301" +201548,Lightning Charging Cable,1,14.95,05/16/19 15:55,"598 Johnson St, Los Angeles, CA 90001" +201549,Wired Headphones,1,11.99,05/25/19 15:55,"158 Lakeview St, Los Angeles, CA 90001" +201550,iPhone,1,700,05/09/19 11:22,"149 Adams St, New York City, NY 10001" +201551,Apple Airpods Headphones,1,150,05/05/19 20:53,"937 Lakeview St, Boston, MA 02215" +201552,Wired Headphones,1,11.99,05/02/19 12:07,"279 10th St, Los Angeles, CA 90001" +201553,Wired Headphones,1,11.99,05/24/19 10:07,"424 Elm St, Boston, MA 02215" +201554,27in FHD Monitor,1,149.99,05/09/19 15:07,"365 Wilson St, New York City, NY 10001" +201555,AAA Batteries (4-pack),1,2.99,05/19/19 11:11,"704 Dogwood St, Atlanta, GA 30301" +201556,AA Batteries (4-pack),1,3.84,05/13/19 14:37,"396 12th St, Seattle, WA 98101" +201557,Wired Headphones,1,11.99,05/17/19 19:40,"34 Jackson St, Los Angeles, CA 90001" +201557,Wired Headphones,1,11.99,05/17/19 19:40,"34 Jackson St, Los Angeles, CA 90001" +201558,ThinkPad Laptop,1,999.99,05/31/19 10:50,"66 9th St, Austin, TX 73301" +201559,Flatscreen TV,1,300,05/22/19 13:03,"600 2nd St, New York City, NY 10001" +201560,AA Batteries (4-pack),1,3.84,05/31/19 20:22,"472 Center St, Dallas, TX 75001" +201561,USB-C Charging Cable,1,11.95,05/10/19 16:32,"43 Meadow St, San Francisco, CA 94016" +201562,Google Phone,1,600,05/08/19 10:29,"877 Cherry St, Los Angeles, CA 90001" +201563,AA Batteries (4-pack),4,3.84,05/31/19 19:06,"390 11th St, New York City, NY 10001" +201564,Macbook Pro Laptop,1,1700,05/20/19 06:14,"625 8th St, Los Angeles, CA 90001" +201565,Lightning Charging Cable,1,14.95,05/31/19 22:04,"728 Willow St, Austin, TX 73301" +201566,USB-C Charging Cable,1,11.95,05/08/19 21:27,"714 2nd St, San Francisco, CA 94016" +201567,AA Batteries (4-pack),2,3.84,05/29/19 11:47,"786 North St, Dallas, TX 75001" +201568,ThinkPad Laptop,1,999.99,05/23/19 14:16,"401 14th St, San Francisco, CA 94016" +201569,USB-C Charging Cable,1,11.95,05/20/19 22:22,"782 Chestnut St, San Francisco, CA 94016" +201570,USB-C Charging Cable,1,11.95,05/08/19 19:18,"142 13th St, New York City, NY 10001" +201571,AAA Batteries (4-pack),1,2.99,05/10/19 09:14,"293 Elm St, Portland, OR 97035" +201572,34in Ultrawide Monitor,1,379.99,05/06/19 11:29,"797 Center St, New York City, NY 10001" +201573,Wired Headphones,2,11.99,05/24/19 18:09,"190 Ridge St, Austin, TX 73301" +201574,Lightning Charging Cable,1,14.95,05/07/19 15:22,"429 Church St, Los Angeles, CA 90001" +201575,AA Batteries (4-pack),2,3.84,05/20/19 19:40,"459 6th St, Seattle, WA 98101" +201576,Bose SoundSport Headphones,1,99.99,05/04/19 17:16,"332 Main St, Atlanta, GA 30301" +201577,Bose SoundSport Headphones,1,99.99,05/31/19 20:06,"64 5th St, Portland, OR 97035" +201578,Wired Headphones,1,11.99,05/15/19 18:16,"796 4th St, San Francisco, CA 94016" +201579,Lightning Charging Cable,1,14.95,05/03/19 13:40,"463 Forest St, Austin, TX 73301" +201580,Google Phone,1,600,05/24/19 08:13,"205 Maple St, New York City, NY 10001" +201581,Wired Headphones,1,11.99,05/14/19 11:33,"619 Jackson St, New York City, NY 10001" +201582,AAA Batteries (4-pack),2,2.99,05/12/19 18:43,"556 4th St, Los Angeles, CA 90001" +201583,Apple Airpods Headphones,1,150,05/11/19 11:36,"439 Chestnut St, New York City, NY 10001" +201584,Wired Headphones,1,11.99,05/02/19 17:00,"5 9th St, Dallas, TX 75001" +201585,USB-C Charging Cable,1,11.95,05/08/19 03:20,"1 5th St, New York City, NY 10001" +201586,Flatscreen TV,1,300,05/05/19 09:10,"628 7th St, Seattle, WA 98101" +201587,Apple Airpods Headphones,1,150,05/10/19 12:17,"836 Center St, New York City, NY 10001" +201588,Apple Airpods Headphones,1,150,05/08/19 19:23,"571 Lake St, Austin, TX 73301" +201589,AAA Batteries (4-pack),3,2.99,05/20/19 11:32,"439 North St, Dallas, TX 75001" +201590,Lightning Charging Cable,1,14.95,05/22/19 10:07,"110 Willow St, New York City, NY 10001" +201591,AAA Batteries (4-pack),2,2.99,05/14/19 01:05,"243 9th St, Boston, MA 02215" +201592,USB-C Charging Cable,1,11.95,05/17/19 15:47,"296 Elm St, Seattle, WA 98101" +201593,ThinkPad Laptop,1,999.99,05/28/19 23:10,"813 Cherry St, Los Angeles, CA 90001" +201594,Vareebadd Phone,1,400,05/08/19 10:14,"272 Madison St, Dallas, TX 75001" +201594,Wired Headphones,1,11.99,05/08/19 10:14,"272 Madison St, Dallas, TX 75001" +201595,27in FHD Monitor,1,149.99,05/02/19 18:13,"203 Hickory St, New York City, NY 10001" +201596,Wired Headphones,1,11.99,05/14/19 18:15,"385 13th St, San Francisco, CA 94016" +201597,Lightning Charging Cable,1,14.95,05/26/19 22:09,"171 Main St, San Francisco, CA 94016" +201598,USB-C Charging Cable,1,11.95,05/21/19 21:56,"108 8th St, Atlanta, GA 30301" +201599,27in FHD Monitor,1,149.99,05/07/19 18:35,"777 Church St, Seattle, WA 98101" +201600,Lightning Charging Cable,1,14.95,05/14/19 06:46,"617 Maple St, Atlanta, GA 30301" +201601,34in Ultrawide Monitor,1,379.99,05/27/19 09:55,"798 Hill St, Atlanta, GA 30301" +201602,AAA Batteries (4-pack),1,2.99,05/21/19 23:20,"884 10th St, Atlanta, GA 30301" +201603,Lightning Charging Cable,1,14.95,05/13/19 15:11,"611 Wilson St, Portland, ME 04101" +201604,Lightning Charging Cable,1,14.95,05/30/19 08:44,"262 Sunset St, San Francisco, CA 94016" +201605,USB-C Charging Cable,1,11.95,05/04/19 20:15,"15 Ridge St, Dallas, TX 75001" +201606,Lightning Charging Cable,1,14.95,05/28/19 11:21,"279 Hill St, Los Angeles, CA 90001" +201607,Bose SoundSport Headphones,1,99.99,05/12/19 13:31,"665 South St, San Francisco, CA 94016" +201608,AAA Batteries (4-pack),2,2.99,05/06/19 16:10,"740 12th St, New York City, NY 10001" +201609,Wired Headphones,1,11.99,05/20/19 09:58,"18 12th St, New York City, NY 10001" +201610,AAA Batteries (4-pack),3,2.99,05/23/19 17:39,"944 Hickory St, Boston, MA 02215" +201611,Lightning Charging Cable,1,14.95,05/29/19 19:49,"537 Center St, Austin, TX 73301" +201612,AA Batteries (4-pack),2,3.84,05/27/19 22:31,"125 Maple St, San Francisco, CA 94016" +201613,AAA Batteries (4-pack),3,2.99,05/04/19 17:05,"161 Lincoln St, Austin, TX 73301" +201614,AAA Batteries (4-pack),3,2.99,05/16/19 10:58,"641 Hill St, Los Angeles, CA 90001" +201615,USB-C Charging Cable,1,11.95,05/20/19 12:32,"332 Chestnut St, Boston, MA 02215" +201616,Bose SoundSport Headphones,1,99.99,05/27/19 12:02,"220 2nd St, Dallas, TX 75001" +201617,Lightning Charging Cable,1,14.95,05/08/19 16:33,"112 Jackson St, Portland, ME 04101" +201618,AAA Batteries (4-pack),1,2.99,05/29/19 10:58,"886 Johnson St, Atlanta, GA 30301" +201619,USB-C Charging Cable,1,11.95,05/11/19 12:12,"689 Hickory St, Atlanta, GA 30301" +201620,AA Batteries (4-pack),1,3.84,05/14/19 14:40,"366 Main St, Los Angeles, CA 90001" +201621,Bose SoundSport Headphones,1,99.99,05/06/19 06:46,"535 South St, San Francisco, CA 94016" +201622,Lightning Charging Cable,1,14.95,05/30/19 07:34,"748 Pine St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +201623,27in 4K Gaming Monitor,1,389.99,05/24/19 17:42,"874 Sunset St, San Francisco, CA 94016" +201624,Flatscreen TV,1,300,05/03/19 20:51,"408 Jefferson St, Los Angeles, CA 90001" +201625,AA Batteries (4-pack),1,3.84,05/11/19 12:14,"566 Highland St, San Francisco, CA 94016" +201626,27in 4K Gaming Monitor,1,389.99,05/12/19 14:10,"703 2nd St, Portland, ME 04101" +201627,27in FHD Monitor,1,149.99,05/24/19 10:41,"440 Washington St, Boston, MA 02215" +201628,Lightning Charging Cable,1,14.95,05/16/19 00:39,"490 River St, Dallas, TX 75001" +201629,34in Ultrawide Monitor,1,379.99,05/18/19 10:11,"136 Jackson St, Los Angeles, CA 90001" +201630,iPhone,1,700,05/01/19 19:02,"151 Hickory St, Boston, MA 02215" +201631,Wired Headphones,1,11.99,05/09/19 07:44,"274 Maple St, Boston, MA 02215" +201632,AAA Batteries (4-pack),1,2.99,05/06/19 11:40,"679 Meadow St, Los Angeles, CA 90001" +201633,Apple Airpods Headphones,1,150,05/22/19 21:31,"711 Walnut St, Portland, ME 04101" +201634,USB-C Charging Cable,1,11.95,05/06/19 10:26,"900 Elm St, Austin, TX 73301" +201635,Google Phone,1,600,05/18/19 10:00,"393 River St, Boston, MA 02215" +201636,USB-C Charging Cable,1,11.95,05/04/19 08:20,"54 Pine St, San Francisco, CA 94016" +201636,AAA Batteries (4-pack),1,2.99,05/04/19 08:20,"54 Pine St, San Francisco, CA 94016" +201637,Lightning Charging Cable,1,14.95,05/14/19 11:05,"145 Cedar St, Seattle, WA 98101" +201638,Apple Airpods Headphones,1,150,05/14/19 17:50,"627 10th St, San Francisco, CA 94016" +201639,AAA Batteries (4-pack),2,2.99,05/27/19 06:48,"939 Sunset St, Los Angeles, CA 90001" +201640,27in 4K Gaming Monitor,1,389.99,05/09/19 11:38,"194 12th St, Atlanta, GA 30301" +201641,AAA Batteries (4-pack),4,2.99,05/23/19 15:58,"126 11th St, New York City, NY 10001" +201642,USB-C Charging Cable,1,11.95,05/05/19 00:23,"579 Lincoln St, Atlanta, GA 30301" +201643,Flatscreen TV,1,300,05/18/19 08:43,"563 5th St, Dallas, TX 75001" +201644,34in Ultrawide Monitor,1,379.99,05/02/19 00:28,"266 Highland St, Los Angeles, CA 90001" +201645,Macbook Pro Laptop,1,1700,05/12/19 12:56,"898 Highland St, Dallas, TX 75001" +201646,Lightning Charging Cable,1,14.95,05/31/19 11:12,"340 Lakeview St, New York City, NY 10001" +201647,Macbook Pro Laptop,1,1700,05/27/19 22:58,"26 14th St, San Francisco, CA 94016" +201648,Apple Airpods Headphones,1,150,05/31/19 12:35,"646 12th St, San Francisco, CA 94016" +201649,Lightning Charging Cable,1,14.95,05/28/19 06:17,"933 Lakeview St, Portland, OR 97035" +201650,USB-C Charging Cable,1,11.95,05/02/19 11:29,"976 Hickory St, San Francisco, CA 94016" +201651,USB-C Charging Cable,1,11.95,05/14/19 04:35,"260 Dogwood St, Los Angeles, CA 90001" +201651,iPhone,1,700,05/14/19 04:35,"260 Dogwood St, Los Angeles, CA 90001" +201652,AA Batteries (4-pack),2,3.84,05/20/19 21:48,"230 Lake St, Seattle, WA 98101" +201653,20in Monitor,1,109.99,05/20/19 16:04,"862 Jefferson St, Austin, TX 73301" +201654,34in Ultrawide Monitor,1,379.99,05/04/19 16:28,"396 Jackson St, Atlanta, GA 30301" +201655,Wired Headphones,1,11.99,05/25/19 19:34,"771 7th St, Seattle, WA 98101" +201656,AAA Batteries (4-pack),1,2.99,05/24/19 18:02,"322 Hill St, San Francisco, CA 94016" +201657,27in FHD Monitor,1,149.99,05/14/19 21:00,"4 Lakeview St, San Francisco, CA 94016" +201658,AA Batteries (4-pack),1,3.84,05/01/19 10:01,"114 Hickory St, Boston, MA 02215" +201659,USB-C Charging Cable,1,11.95,05/28/19 10:29,"455 14th St, Boston, MA 02215" +201660,AAA Batteries (4-pack),2,2.99,05/05/19 11:56,"710 Cedar St, Boston, MA 02215" +201661,AAA Batteries (4-pack),1,2.99,05/23/19 19:31,"2 West St, Los Angeles, CA 90001" +201662,Apple Airpods Headphones,1,150,05/17/19 19:10,"48 Center St, Dallas, TX 75001" +201663,27in FHD Monitor,1,149.99,05/29/19 00:14,"134 Cedar St, San Francisco, CA 94016" +201664,27in 4K Gaming Monitor,1,389.99,05/30/19 12:34,"685 Main St, San Francisco, CA 94016" +201665,USB-C Charging Cable,1,11.95,05/13/19 17:52,"998 Sunset St, San Francisco, CA 94016" +201666,Wired Headphones,1,11.99,05/31/19 18:26,"37 Ridge St, Atlanta, GA 30301" +201667,USB-C Charging Cable,1,11.95,05/10/19 13:03,"452 Pine St, Los Angeles, CA 90001" +201668,34in Ultrawide Monitor,1,379.99,05/26/19 10:52,"639 West St, New York City, NY 10001" +201669,20in Monitor,1,109.99,05/15/19 18:32,"578 River St, Seattle, WA 98101" +201670,Lightning Charging Cable,1,14.95,05/23/19 06:22,"761 Cherry St, Atlanta, GA 30301" +201671,AA Batteries (4-pack),1,3.84,05/18/19 08:54,"539 Forest St, Boston, MA 02215" +201672,27in 4K Gaming Monitor,1,389.99,05/14/19 16:22,"440 Hickory St, Dallas, TX 75001" +201673,AAA Batteries (4-pack),1,2.99,05/26/19 19:09,"372 Willow St, Seattle, WA 98101" +201674,Lightning Charging Cable,1,14.95,05/20/19 16:09,"601 7th St, Los Angeles, CA 90001" +201675,Apple Airpods Headphones,1,150,05/04/19 17:48,"945 Jackson St, New York City, NY 10001" +201676,USB-C Charging Cable,1,11.95,05/13/19 17:26,"269 Hickory St, Dallas, TX 75001" +201677,27in 4K Gaming Monitor,1,389.99,05/25/19 21:52,"280 Park St, Austin, TX 73301" +201678,Google Phone,1,600,05/30/19 15:59,"575 Lakeview St, San Francisco, CA 94016" +201678,USB-C Charging Cable,1,11.95,05/30/19 15:59,"575 Lakeview St, San Francisco, CA 94016" +201679,AAA Batteries (4-pack),1,2.99,05/20/19 13:51,"646 Cherry St, New York City, NY 10001" +201680,Bose SoundSport Headphones,1,99.99,05/17/19 19:57,"419 Forest St, Los Angeles, CA 90001" +201681,AA Batteries (4-pack),1,3.84,05/30/19 20:35,"637 North St, Boston, MA 02215" +201682,AAA Batteries (4-pack),2,2.99,05/23/19 20:06,"883 Willow St, San Francisco, CA 94016" +201683,ThinkPad Laptop,1,999.99,05/17/19 10:34,"346 Park St, Los Angeles, CA 90001" +201684,Wired Headphones,1,11.99,05/06/19 13:37,"586 7th St, San Francisco, CA 94016" +201685,Lightning Charging Cable,1,14.95,05/14/19 18:21,"453 Main St, Austin, TX 73301" +201686,Lightning Charging Cable,1,14.95,05/21/19 22:18,"336 Elm St, Los Angeles, CA 90001" +201687,Macbook Pro Laptop,1,1700,05/07/19 14:08,"249 Elm St, Dallas, TX 75001" +201688,USB-C Charging Cable,2,11.95,05/25/19 11:37,"658 Adams St, Boston, MA 02215" +201689,AA Batteries (4-pack),2,3.84,05/01/19 18:56,"261 12th St, Seattle, WA 98101" +201690,Apple Airpods Headphones,1,150,05/19/19 14:26,"16 Church St, New York City, NY 10001" +201690,Wired Headphones,1,11.99,05/19/19 14:26,"16 Church St, New York City, NY 10001" +201691,Wired Headphones,1,11.99,05/23/19 21:11,"820 Dogwood St, Atlanta, GA 30301" +201692,Lightning Charging Cable,1,14.95,05/05/19 00:30,"221 Jackson St, San Francisco, CA 94016" +201693,Apple Airpods Headphones,1,150,05/20/19 22:25,"501 Jackson St, New York City, NY 10001" +201694,USB-C Charging Cable,1,11.95,05/15/19 13:38,"464 Park St, New York City, NY 10001" +201695,USB-C Charging Cable,1,11.95,05/11/19 11:04,"751 Spruce St, San Francisco, CA 94016" +201696,AA Batteries (4-pack),1,3.84,05/02/19 16:46,"475 1st St, Austin, TX 73301" +201697,USB-C Charging Cable,1,11.95,05/16/19 00:38,"726 10th St, Seattle, WA 98101" +201698,USB-C Charging Cable,1,11.95,05/09/19 22:17,"752 Park St, San Francisco, CA 94016" +201699,AAA Batteries (4-pack),2,2.99,05/18/19 12:55,"450 Cherry St, New York City, NY 10001" +201700,Wired Headphones,1,11.99,05/21/19 13:15,"372 4th St, Seattle, WA 98101" +201701,Macbook Pro Laptop,1,1700,05/19/19 17:15,"471 South St, San Francisco, CA 94016" +201702,AA Batteries (4-pack),1,3.84,05/17/19 10:08,"26 Willow St, Dallas, TX 75001" +201703,Apple Airpods Headphones,1,150,05/30/19 13:32,"909 Madison St, San Francisco, CA 94016" +201704,USB-C Charging Cable,1,11.95,05/18/19 18:12,"474 Willow St, Portland, ME 04101" +201705,Apple Airpods Headphones,1,150,05/28/19 21:46,"169 Forest St, New York City, NY 10001" +201705,Bose SoundSport Headphones,1,99.99,05/28/19 21:46,"169 Forest St, New York City, NY 10001" +201706,Macbook Pro Laptop,1,1700,05/10/19 10:15,"17 Hill St, San Francisco, CA 94016" +201707,Macbook Pro Laptop,1,1700,05/15/19 13:44,"659 Jefferson St, Los Angeles, CA 90001" +201708,AA Batteries (4-pack),1,3.84,05/10/19 10:41,"719 Willow St, Austin, TX 73301" +201709,AAA Batteries (4-pack),3,2.99,05/20/19 18:04,"638 Johnson St, Dallas, TX 75001" +201710,Bose SoundSport Headphones,1,99.99,05/29/19 22:31,"545 Wilson St, Boston, MA 02215" +201711,AAA Batteries (4-pack),2,2.99,05/05/19 22:23,"133 Washington St, Atlanta, GA 30301" +201712,USB-C Charging Cable,1,11.95,05/28/19 12:59,"147 10th St, Dallas, TX 75001" +201713,Wired Headphones,1,11.99,05/03/19 12:29,"678 Walnut St, Portland, ME 04101" +201714,Wired Headphones,1,11.99,05/26/19 13:39,"9 Main St, Los Angeles, CA 90001" +201715,AAA Batteries (4-pack),3,2.99,05/22/19 15:46,"944 8th St, Atlanta, GA 30301" +201716,34in Ultrawide Monitor,1,379.99,05/23/19 19:16,"745 5th St, Boston, MA 02215" +201717,Bose SoundSport Headphones,1,99.99,05/30/19 07:59,"673 River St, Atlanta, GA 30301" +201718,AA Batteries (4-pack),1,3.84,05/24/19 18:50,"767 Main St, Seattle, WA 98101" +201719,Lightning Charging Cable,1,14.95,05/06/19 16:13,"664 Willow St, San Francisco, CA 94016" +201720,Bose SoundSport Headphones,1,99.99,05/29/19 20:21,"422 Lake St, San Francisco, CA 94016" +201721,27in FHD Monitor,1,149.99,05/25/19 18:39,"212 River St, New York City, NY 10001" +201722,AAA Batteries (4-pack),2,2.99,05/02/19 00:31,"344 Highland St, New York City, NY 10001" +201723,Lightning Charging Cable,1,14.95,05/05/19 22:35,"991 1st St, Los Angeles, CA 90001" +201724,USB-C Charging Cable,1,11.95,05/03/19 19:15,"834 North St, Seattle, WA 98101" +201725,USB-C Charging Cable,1,11.95,05/04/19 08:41,"59 8th St, Los Angeles, CA 90001" +201726,34in Ultrawide Monitor,1,379.99,05/25/19 19:30,"829 Chestnut St, Atlanta, GA 30301" +201727,27in FHD Monitor,1,149.99,05/25/19 19:10,"275 Washington St, San Francisco, CA 94016" +201728,34in Ultrawide Monitor,1,379.99,05/19/19 12:21,"471 Willow St, Boston, MA 02215" +201729,AA Batteries (4-pack),1,3.84,05/16/19 20:58,"452 West St, Atlanta, GA 30301" +201730,Wired Headphones,1,11.99,05/02/19 15:32,"160 13th St, New York City, NY 10001" +201731,Wired Headphones,1,11.99,05/02/19 20:40,"19 Spruce St, Los Angeles, CA 90001" +201732,Apple Airpods Headphones,1,150,05/16/19 09:28,"201 Church St, Los Angeles, CA 90001" +201733,Google Phone,1,600,05/11/19 17:34,"523 Walnut St, San Francisco, CA 94016" +201734,AA Batteries (4-pack),2,3.84,05/02/19 11:05,"310 Wilson St, Portland, OR 97035" +201735,20in Monitor,1,109.99,05/06/19 14:25,"880 Adams St, Atlanta, GA 30301" +201736,Lightning Charging Cable,1,14.95,05/23/19 13:52,"923 Maple St, Dallas, TX 75001" +201737,USB-C Charging Cable,1,11.95,05/03/19 18:49,"414 Madison St, San Francisco, CA 94016" +201738,Wired Headphones,1,11.99,05/03/19 10:16,"407 Pine St, Los Angeles, CA 90001" +201739,Wired Headphones,1,11.99,05/14/19 19:24,"504 Cherry St, San Francisco, CA 94016" +201740,AA Batteries (4-pack),1,3.84,05/15/19 11:22,"361 9th St, Seattle, WA 98101" +201741,27in FHD Monitor,1,149.99,05/02/19 22:29,"573 South St, Atlanta, GA 30301" +201742,20in Monitor,1,109.99,05/02/19 20:07,"398 4th St, San Francisco, CA 94016" +201743,iPhone,1,700,05/16/19 16:18,"769 Washington St, Dallas, TX 75001" +201744,AAA Batteries (4-pack),1,2.99,05/31/19 19:37,"159 Center St, Los Angeles, CA 90001" +201745,Apple Airpods Headphones,1,150,05/01/19 14:31,"169 8th St, San Francisco, CA 94016" +201746,USB-C Charging Cable,1,11.95,05/06/19 20:40,"936 Ridge St, San Francisco, CA 94016" +201747,27in 4K Gaming Monitor,1,389.99,05/05/19 19:53,"493 Madison St, Austin, TX 73301" +201748,Lightning Charging Cable,1,14.95,05/08/19 14:09,"386 5th St, Los Angeles, CA 90001" +201749,Wired Headphones,1,11.99,05/13/19 21:08,"462 Highland St, San Francisco, CA 94016" +201750,USB-C Charging Cable,1,11.95,05/29/19 20:22,"783 Meadow St, New York City, NY 10001" +201751,27in FHD Monitor,1,149.99,05/04/19 22:14,"598 11th St, Seattle, WA 98101" +201752,AA Batteries (4-pack),1,3.84,05/06/19 13:29,"887 Forest St, Austin, TX 73301" +201753,Vareebadd Phone,1,400,05/08/19 00:23,"177 South St, Boston, MA 02215" +201753,USB-C Charging Cable,1,11.95,05/08/19 00:23,"177 South St, Boston, MA 02215" +201754,20in Monitor,1,109.99,05/30/19 12:19,"102 Main St, San Francisco, CA 94016" +201755,Lightning Charging Cable,1,14.95,05/06/19 12:33,"467 Church St, Los Angeles, CA 90001" +201756,27in FHD Monitor,1,149.99,05/20/19 09:50,"857 7th St, Boston, MA 02215" +201757,Bose SoundSport Headphones,1,99.99,05/13/19 20:13,"189 Washington St, Dallas, TX 75001" +201758,20in Monitor,1,109.99,05/23/19 16:20,"266 9th St, Portland, OR 97035" +201759,iPhone,1,700,05/27/19 10:09,"373 Walnut St, Seattle, WA 98101" +201760,Wired Headphones,2,11.99,05/24/19 02:11,"857 10th St, Los Angeles, CA 90001" +201761,Lightning Charging Cable,1,14.95,05/25/19 21:36,"72 West St, San Francisco, CA 94016" +201762,Bose SoundSport Headphones,1,99.99,05/19/19 22:11,"551 Elm St, Dallas, TX 75001" +201763,Wired Headphones,1,11.99,05/23/19 09:03,"968 Jefferson St, Los Angeles, CA 90001" +201764,AA Batteries (4-pack),1,3.84,05/30/19 09:23,"446 12th St, Atlanta, GA 30301" +201765,AA Batteries (4-pack),1,3.84,05/26/19 22:08,"908 Chestnut St, Los Angeles, CA 90001" +201766,34in Ultrawide Monitor,1,379.99,05/09/19 20:09,"544 7th St, Seattle, WA 98101" +201767,27in FHD Monitor,1,149.99,05/20/19 19:28,"395 River St, Los Angeles, CA 90001" +201768,Apple Airpods Headphones,1,150,05/18/19 21:22,"230 10th St, Boston, MA 02215" +201769,27in 4K Gaming Monitor,1,389.99,05/16/19 11:50,"647 1st St, Los Angeles, CA 90001" +201770,AAA Batteries (4-pack),1,2.99,05/19/19 10:42,"342 8th St, Boston, MA 02215" +201771,AAA Batteries (4-pack),1,2.99,05/23/19 22:15,"358 Cedar St, San Francisco, CA 94016" +201772,Flatscreen TV,1,300,05/02/19 06:08,"921 Wilson St, Seattle, WA 98101" +201773,USB-C Charging Cable,1,11.95,05/03/19 11:24,"422 Washington St, New York City, NY 10001" +201774,AAA Batteries (4-pack),1,2.99,05/20/19 15:36,"359 5th St, San Francisco, CA 94016" +201775,Macbook Pro Laptop,1,1700,05/27/19 19:46,"539 Maple St, New York City, NY 10001" +201776,Apple Airpods Headphones,1,150,05/07/19 03:53,"806 14th St, New York City, NY 10001" +201777,34in Ultrawide Monitor,1,379.99,05/06/19 11:38,"412 Lakeview St, Atlanta, GA 30301" +201778,AA Batteries (4-pack),1,3.84,05/31/19 10:48,"588 Church St, Boston, MA 02215" +201779,Wired Headphones,1,11.99,05/11/19 13:30,"78 7th St, Seattle, WA 98101" +201780,AAA Batteries (4-pack),2,2.99,05/12/19 21:52,"871 5th St, Atlanta, GA 30301" +201781,AA Batteries (4-pack),1,3.84,05/14/19 13:51,"399 Jackson St, Seattle, WA 98101" +201782,Google Phone,1,600,05/20/19 09:36,"76 Chestnut St, Boston, MA 02215" +201782,USB-C Charging Cable,1,11.95,05/20/19 09:36,"76 Chestnut St, Boston, MA 02215" +201783,AA Batteries (4-pack),2,3.84,05/17/19 10:35,"390 13th St, Boston, MA 02215" +201784,Apple Airpods Headphones,1,150,05/06/19 18:36,"973 Dogwood St, San Francisco, CA 94016" +201785,iPhone,1,700,05/31/19 21:31,"473 Meadow St, San Francisco, CA 94016" +201786,Lightning Charging Cable,1,14.95,05/11/19 12:17,"379 Cedar St, Seattle, WA 98101" +201787,Macbook Pro Laptop,1,1700,05/05/19 19:32,"289 Maple St, Boston, MA 02215" +201788,Macbook Pro Laptop,1,1700,05/21/19 20:55,"830 2nd St, Atlanta, GA 30301" +201789,27in FHD Monitor,1,149.99,05/07/19 23:48,"945 Walnut St, Portland, ME 04101" +201790,20in Monitor,1,109.99,05/20/19 12:30,"534 14th St, New York City, NY 10001" +201791,USB-C Charging Cable,1,11.95,05/07/19 12:19,"501 1st St, Atlanta, GA 30301" +201792,USB-C Charging Cable,1,11.95,05/27/19 10:50,"43 South St, Boston, MA 02215" +201793,LG Dryer,1,600.0,05/23/19 09:02,"229 Elm St, Atlanta, GA 30301" +201794,LG Dryer,1,600.0,05/19/19 16:00,"132 Highland St, New York City, NY 10001" +201795,20in Monitor,1,109.99,05/27/19 21:36,"223 4th St, Dallas, TX 75001" +201796,Flatscreen TV,1,300,05/01/19 19:38,"490 10th St, San Francisco, CA 94016" +201797,AA Batteries (4-pack),1,3.84,05/03/19 23:04,"68 6th St, San Francisco, CA 94016" +201798,Flatscreen TV,1,300,05/20/19 22:03,"414 14th St, Portland, ME 04101" +201799,iPhone,1,700,05/03/19 19:37,"382 Lakeview St, Dallas, TX 75001" +201800,AAA Batteries (4-pack),1,2.99,05/28/19 01:58,"915 2nd St, Atlanta, GA 30301" +201801,Flatscreen TV,1,300,05/06/19 07:03,"486 1st St, New York City, NY 10001" +201802,USB-C Charging Cable,1,11.95,05/31/19 18:26,"357 Lakeview St, San Francisco, CA 94016" +201803,Flatscreen TV,1,300,05/15/19 02:37,"63 Highland St, New York City, NY 10001" +201804,AAA Batteries (4-pack),1,2.99,05/15/19 13:28,"712 Center St, New York City, NY 10001" +201805,AAA Batteries (4-pack),1,2.99,05/18/19 09:39,"378 Washington St, Atlanta, GA 30301" +201806,Google Phone,1,600,05/08/19 16:40,"13 Johnson St, New York City, NY 10001" +201807,27in 4K Gaming Monitor,1,389.99,05/21/19 20:20,"348 Lincoln St, New York City, NY 10001" +201808,AA Batteries (4-pack),1,3.84,05/06/19 15:48,"760 13th St, Seattle, WA 98101" +201809,USB-C Charging Cable,1,11.95,05/15/19 15:55,"316 Church St, Los Angeles, CA 90001" +201810,Lightning Charging Cable,1,14.95,05/13/19 18:18,"210 9th St, Dallas, TX 75001" +201811,AAA Batteries (4-pack),1,2.99,05/06/19 13:45,"360 Sunset St, Dallas, TX 75001" +201812,Lightning Charging Cable,1,14.95,05/10/19 12:25,"889 7th St, New York City, NY 10001" +201813,Vareebadd Phone,1,400,05/23/19 14:14,"667 14th St, Boston, MA 02215" +201814,Lightning Charging Cable,1,14.95,05/26/19 13:26,"655 North St, San Francisco, CA 94016" +201815,USB-C Charging Cable,1,11.95,05/18/19 10:18,"952 1st St, Atlanta, GA 30301" +201816,Apple Airpods Headphones,1,150,05/20/19 10:04,"88 Madison St, Boston, MA 02215" +201817,iPhone,1,700,05/01/19 16:54,"525 Washington St, San Francisco, CA 94016" +201818,Apple Airpods Headphones,1,150,05/30/19 07:51,"588 Center St, San Francisco, CA 94016" +201819,34in Ultrawide Monitor,1,379.99,05/27/19 14:24,"266 2nd St, Los Angeles, CA 90001" +201820,Vareebadd Phone,1,400,05/18/19 11:35,"186 Hickory St, Los Angeles, CA 90001" +201821,AAA Batteries (4-pack),1,2.99,05/07/19 19:32,"160 Walnut St, Boston, MA 02215" +201822,AAA Batteries (4-pack),1,2.99,05/18/19 21:05,"283 Washington St, San Francisco, CA 94016" +201823,Wired Headphones,2,11.99,05/02/19 18:14,"848 5th St, San Francisco, CA 94016" +201824,Apple Airpods Headphones,1,150,05/08/19 19:42,"665 10th St, San Francisco, CA 94016" +201825,Wired Headphones,1,11.99,05/15/19 12:56,"500 Lake St, San Francisco, CA 94016" +201826,27in 4K Gaming Monitor,1,389.99,05/11/19 14:14,"849 Jefferson St, Los Angeles, CA 90001" +201827,AAA Batteries (4-pack),2,2.99,05/10/19 17:22,"647 Dogwood St, Austin, TX 73301" +201828,Google Phone,1,600,05/31/19 19:08,"596 Highland St, San Francisco, CA 94016" +201828,USB-C Charging Cable,1,11.95,05/31/19 19:08,"596 Highland St, San Francisco, CA 94016" +201829,AAA Batteries (4-pack),3,2.99,05/11/19 21:44,"981 West St, Los Angeles, CA 90001" +201830,USB-C Charging Cable,1,11.95,05/14/19 06:15,"803 Hill St, San Francisco, CA 94016" +201831,AA Batteries (4-pack),3,3.84,05/28/19 13:00,"224 Cedar St, Boston, MA 02215" +201832,20in Monitor,1,109.99,05/18/19 03:28,"534 Cherry St, Los Angeles, CA 90001" +201833,USB-C Charging Cable,1,11.95,05/13/19 09:23,"452 4th St, Atlanta, GA 30301" +201834,AA Batteries (4-pack),2,3.84,05/05/19 10:45,"210 1st St, Boston, MA 02215" +201835,34in Ultrawide Monitor,1,379.99,05/20/19 20:49,"415 Adams St, Dallas, TX 75001" +201836,Lightning Charging Cable,1,14.95,05/03/19 17:36,"185 Wilson St, San Francisco, CA 94016" +201837,Apple Airpods Headphones,1,150,05/16/19 11:25,"938 Jefferson St, Los Angeles, CA 90001" +201838,Wired Headphones,1,11.99,05/22/19 14:24,"506 Willow St, Seattle, WA 98101" +201838,AAA Batteries (4-pack),1,2.99,05/22/19 14:24,"506 Willow St, Seattle, WA 98101" +201839,Apple Airpods Headphones,1,150,05/29/19 10:21,"566 South St, Boston, MA 02215" +201840,USB-C Charging Cable,1,11.95,05/30/19 17:44,"3 2nd St, San Francisco, CA 94016" +201841,AAA Batteries (4-pack),4,2.99,05/08/19 09:25,"283 6th St, Los Angeles, CA 90001" +201842,20in Monitor,1,109.99,05/01/19 14:19,"705 Highland St, New York City, NY 10001" +201843,USB-C Charging Cable,1,11.95,05/30/19 23:32,"343 Highland St, Austin, TX 73301" +201844,ThinkPad Laptop,1,999.99,05/07/19 21:51,"127 7th St, Atlanta, GA 30301" +201845,Wired Headphones,1,11.99,05/20/19 10:06,"680 Madison St, San Francisco, CA 94016" +201846,USB-C Charging Cable,1,11.95,05/04/19 22:00,"730 Chestnut St, Boston, MA 02215" +201847,27in FHD Monitor,1,149.99,05/08/19 20:49,"800 10th St, San Francisco, CA 94016" +201848,iPhone,1,700,05/01/19 16:52,"579 River St, Dallas, TX 75001" +201849,Bose SoundSport Headphones,1,99.99,05/18/19 12:22,"419 Sunset St, Boston, MA 02215" +201850,Apple Airpods Headphones,1,150,05/02/19 14:48,"142 Elm St, San Francisco, CA 94016" +201851,Wired Headphones,1,11.99,05/13/19 05:49,"568 Meadow St, Atlanta, GA 30301" +201852,USB-C Charging Cable,1,11.95,05/13/19 23:15,"920 West St, Los Angeles, CA 90001" +201853,iPhone,1,700,05/22/19 12:03,"897 Washington St, Los Angeles, CA 90001" +201854,USB-C Charging Cable,1,11.95,05/22/19 19:15,"546 Main St, Portland, OR 97035" +201855,USB-C Charging Cable,2,11.95,06/01/19 03:23,"624 Church St, Boston, MA 02215" +201856,Lightning Charging Cable,1,14.95,05/20/19 01:20,"182 Adams St, Portland, OR 97035" +201857,Lightning Charging Cable,1,14.95,05/27/19 19:22,"402 Madison St, Boston, MA 02215" +201858,Lightning Charging Cable,2,14.95,05/16/19 20:07,"456 Hickory St, San Francisco, CA 94016" +201859,USB-C Charging Cable,1,11.95,05/27/19 09:27,"846 13th St, San Francisco, CA 94016" +201860,AA Batteries (4-pack),1,3.84,05/08/19 14:29,"625 Jackson St, Dallas, TX 75001" +201861,Apple Airpods Headphones,1,150,05/14/19 12:52,"624 Lincoln St, New York City, NY 10001" +201862,AA Batteries (4-pack),1,3.84,05/25/19 11:11,"667 8th St, Seattle, WA 98101" +201863,Bose SoundSport Headphones,1,99.99,05/28/19 01:39,"749 Maple St, New York City, NY 10001" +201864,iPhone,1,700,05/06/19 15:35,"472 Sunset St, Dallas, TX 75001" +201865,AAA Batteries (4-pack),1,2.99,05/26/19 16:02,"453 Forest St, Portland, OR 97035" +201866,Apple Airpods Headphones,1,150,05/02/19 11:29,"594 Jackson St, Boston, MA 02215" +201867,Lightning Charging Cable,1,14.95,05/19/19 17:49,"761 Main St, San Francisco, CA 94016" +201868,27in FHD Monitor,1,149.99,05/04/19 12:10,"911 Cherry St, Boston, MA 02215" +201869,iPhone,1,700,05/16/19 19:36,"188 North St, San Francisco, CA 94016" +201870,34in Ultrawide Monitor,1,379.99,05/20/19 07:50,"163 Jefferson St, San Francisco, CA 94016" +201871,Wired Headphones,1,11.99,05/04/19 19:33,"365 Ridge St, New York City, NY 10001" +201872,Wired Headphones,2,11.99,05/16/19 15:55,"742 Main St, San Francisco, CA 94016" +201873,Apple Airpods Headphones,1,150,05/19/19 21:02,"558 5th St, Los Angeles, CA 90001" +201874,27in 4K Gaming Monitor,1,389.99,05/14/19 17:43,"12 Hill St, San Francisco, CA 94016" +201875,20in Monitor,1,109.99,05/25/19 19:34,"437 7th St, Boston, MA 02215" +201876,27in 4K Gaming Monitor,1,389.99,05/24/19 11:42,"461 Dogwood St, Boston, MA 02215" +201877,ThinkPad Laptop,1,999.99,05/31/19 23:01,"946 Willow St, Boston, MA 02215" +201878,AAA Batteries (4-pack),1,2.99,05/03/19 03:59,"466 Willow St, Atlanta, GA 30301" +201879,AA Batteries (4-pack),1,3.84,05/31/19 12:04,"878 Jackson St, Boston, MA 02215" +201880,Macbook Pro Laptop,1,1700,05/17/19 19:58,"743 Hill St, Seattle, WA 98101" +201881,AA Batteries (4-pack),1,3.84,05/14/19 10:47,"681 Cedar St, Austin, TX 73301" +201882,Bose SoundSport Headphones,1,99.99,05/29/19 23:21,"50 Wilson St, New York City, NY 10001" +201883,AA Batteries (4-pack),1,3.84,05/20/19 09:14,"686 River St, Austin, TX 73301" +201884,USB-C Charging Cable,1,11.95,05/29/19 14:28,"378 Maple St, Seattle, WA 98101" +201885,Wired Headphones,2,11.99,05/21/19 14:11,"78 Madison St, Boston, MA 02215" +201886,Vareebadd Phone,1,400,05/28/19 17:49,"586 Lake St, Los Angeles, CA 90001" +201887,AA Batteries (4-pack),1,3.84,05/04/19 15:23,"88 North St, San Francisco, CA 94016" +201888,USB-C Charging Cable,1,11.95,05/23/19 12:57,"303 River St, San Francisco, CA 94016" +201889,AA Batteries (4-pack),1,3.84,05/30/19 20:14,"77 Church St, New York City, NY 10001" +201890,iPhone,1,700,05/24/19 20:07,"557 West St, Austin, TX 73301" +201891,27in 4K Gaming Monitor,1,389.99,05/29/19 17:53,"359 Hill St, Boston, MA 02215" +201892,USB-C Charging Cable,1,11.95,05/21/19 14:51,"24 2nd St, New York City, NY 10001" +201893,Bose SoundSport Headphones,1,99.99,05/30/19 15:01,"140 West St, Dallas, TX 75001" +201894,Apple Airpods Headphones,1,150,05/10/19 18:19,"243 Lincoln St, New York City, NY 10001" +201895,Wired Headphones,1,11.99,05/18/19 09:54,"130 Pine St, Dallas, TX 75001" +201896,Wired Headphones,1,11.99,05/03/19 22:54,"378 South St, San Francisco, CA 94016" +201897,iPhone,1,700,05/10/19 12:18,"28 Ridge St, San Francisco, CA 94016" +201898,AA Batteries (4-pack),1,3.84,05/03/19 20:02,"16 9th St, Seattle, WA 98101" +201899,Google Phone,1,600,05/01/19 08:38,"81 Chestnut St, Atlanta, GA 30301" +201899,USB-C Charging Cable,1,11.95,05/01/19 08:38,"81 Chestnut St, Atlanta, GA 30301" +201900,AA Batteries (4-pack),2,3.84,05/09/19 20:20,"294 Washington St, New York City, NY 10001" +201901,AAA Batteries (4-pack),1,2.99,05/06/19 16:34,"60 Spruce St, Los Angeles, CA 90001" +201902,Wired Headphones,1,11.99,05/14/19 13:42,"726 13th St, Austin, TX 73301" +201903,Bose SoundSport Headphones,1,99.99,05/30/19 07:38,"221 West St, Los Angeles, CA 90001" +201904,27in 4K Gaming Monitor,1,389.99,05/02/19 07:23,"473 Johnson St, San Francisco, CA 94016" +201905,Apple Airpods Headphones,1,150,05/08/19 14:10,"224 Lake St, Seattle, WA 98101" +201906,AA Batteries (4-pack),1,3.84,05/13/19 18:57,"664 9th St, Los Angeles, CA 90001" +201907,20in Monitor,1,109.99,05/24/19 19:21,"231 9th St, Los Angeles, CA 90001" +201908,AA Batteries (4-pack),1,3.84,05/21/19 06:53,"37 Main St, Los Angeles, CA 90001" +201909,USB-C Charging Cable,1,11.95,05/05/19 18:01,"393 Park St, Los Angeles, CA 90001" +201910,Lightning Charging Cable,1,14.95,05/09/19 13:27,"321 Washington St, Los Angeles, CA 90001" +201911,Wired Headphones,1,11.99,05/30/19 17:25,"434 Church St, Portland, OR 97035" +201912,Lightning Charging Cable,1,14.95,05/06/19 13:22,"688 10th St, Los Angeles, CA 90001" +201913,USB-C Charging Cable,1,11.95,05/29/19 11:52,"898 Main St, Boston, MA 02215" +201914,Apple Airpods Headphones,1,150,05/13/19 04:27,"607 14th St, Austin, TX 73301" +201915,USB-C Charging Cable,1,11.95,05/18/19 14:09,"938 Highland St, New York City, NY 10001" +201916,Apple Airpods Headphones,1,150,05/11/19 22:16,"131 Johnson St, Seattle, WA 98101" +201917,Wired Headphones,1,11.99,05/08/19 12:00,"159 Madison St, San Francisco, CA 94016" +201918,USB-C Charging Cable,1,11.95,05/11/19 09:51,"318 7th St, New York City, NY 10001" +201919,AA Batteries (4-pack),1,3.84,05/09/19 13:38,"981 Sunset St, San Francisco, CA 94016" +201920,Bose SoundSport Headphones,1,99.99,05/17/19 16:56,"396 Lake St, New York City, NY 10001" +201921,Bose SoundSport Headphones,1,99.99,05/21/19 09:51,"294 Madison St, Dallas, TX 75001" +201922,Wired Headphones,1,11.99,05/22/19 20:59,"801 10th St, Portland, OR 97035" +201923,AAA Batteries (4-pack),1,2.99,05/20/19 12:14,"78 Forest St, San Francisco, CA 94016" +201924,27in FHD Monitor,1,149.99,05/07/19 01:25,"126 8th St, Seattle, WA 98101" +201925,Lightning Charging Cable,1,14.95,05/18/19 09:46,"308 Jefferson St, Atlanta, GA 30301" +201926,USB-C Charging Cable,1,11.95,05/04/19 13:38,"981 Maple St, Los Angeles, CA 90001" +201927,27in FHD Monitor,1,149.99,05/29/19 14:06,"583 West St, San Francisco, CA 94016" +201928,AA Batteries (4-pack),2,3.84,05/23/19 13:36,"197 Walnut St, New York City, NY 10001" +201929,iPhone,1,700,05/24/19 00:58,"783 Chestnut St, Los Angeles, CA 90001" +201930,Apple Airpods Headphones,1,150,05/12/19 21:50,"231 4th St, Seattle, WA 98101" +201931,AAA Batteries (4-pack),1,2.99,05/03/19 16:36,"957 Washington St, San Francisco, CA 94016" +201932,Apple Airpods Headphones,1,150,05/22/19 20:02,"996 Hickory St, Los Angeles, CA 90001" +201933,Wired Headphones,1,11.99,05/23/19 19:38,"484 Willow St, San Francisco, CA 94016" +201934,Apple Airpods Headphones,1,150,05/03/19 16:04,"527 Washington St, Seattle, WA 98101" +201935,Apple Airpods Headphones,1,150,05/23/19 15:03,"932 13th St, Seattle, WA 98101" +201936,Wired Headphones,1,11.99,05/18/19 17:57,"225 Maple St, New York City, NY 10001" +201937,Flatscreen TV,1,300,05/27/19 09:34,"826 Park St, San Francisco, CA 94016" +201938,AA Batteries (4-pack),1,3.84,05/28/19 13:41,"24 Highland St, Portland, OR 97035" +201939,AAA Batteries (4-pack),1,2.99,05/16/19 11:08,"380 Spruce St, Los Angeles, CA 90001" +201940,USB-C Charging Cable,1,11.95,05/09/19 11:34,"890 Hill St, New York City, NY 10001" +201941,USB-C Charging Cable,1,11.95,05/10/19 23:36,"48 Madison St, Boston, MA 02215" +201942,AAA Batteries (4-pack),1,2.99,05/13/19 16:06,"561 4th St, San Francisco, CA 94016" +201943,27in 4K Gaming Monitor,1,389.99,05/08/19 17:28,"151 Forest St, San Francisco, CA 94016" +201944,AAA Batteries (4-pack),1,2.99,05/12/19 22:33,"602 14th St, Los Angeles, CA 90001" +201945,USB-C Charging Cable,1,11.95,05/20/19 08:48,"965 6th St, Dallas, TX 75001" +201946,AA Batteries (4-pack),1,3.84,05/02/19 15:56,"162 Willow St, Austin, TX 73301" +201947,AA Batteries (4-pack),1,3.84,05/04/19 21:48,"746 Wilson St, New York City, NY 10001" +201948,Lightning Charging Cable,1,14.95,05/31/19 16:50,"417 12th St, Los Angeles, CA 90001" +201949,Apple Airpods Headphones,1,150,05/26/19 08:14,"996 9th St, Boston, MA 02215" +201950,AA Batteries (4-pack),1,3.84,05/02/19 08:07,"81 4th St, New York City, NY 10001" +201951,iPhone,1,700,06/01/19 01:52,"561 4th St, Los Angeles, CA 90001" +201951,Lightning Charging Cable,1,14.95,06/01/19 01:52,"561 4th St, Los Angeles, CA 90001" +201951,Wired Headphones,1,11.99,06/01/19 01:52,"561 4th St, Los Angeles, CA 90001" +201952,Lightning Charging Cable,1,14.95,05/18/19 18:51,"762 Johnson St, San Francisco, CA 94016" +201953,Lightning Charging Cable,1,14.95,05/19/19 18:42,"596 Maple St, Atlanta, GA 30301" +201954,Wired Headphones,1,11.99,05/24/19 18:06,"97 River St, San Francisco, CA 94016" +201955,AA Batteries (4-pack),2,3.84,05/02/19 11:18,"509 Lake St, San Francisco, CA 94016" +201956,Wired Headphones,1,11.99,05/06/19 19:04,"475 Dogwood St, Boston, MA 02215" +201957,Macbook Pro Laptop,1,1700,05/30/19 13:58,"679 11th St, Boston, MA 02215" +201958,USB-C Charging Cable,1,11.95,05/03/19 12:14,"424 Johnson St, Austin, TX 73301" +201959,Lightning Charging Cable,1,14.95,05/24/19 19:23,"324 Maple St, Portland, OR 97035" +201960,iPhone,1,700,05/02/19 04:37,"717 4th St, Seattle, WA 98101" +201961,Wired Headphones,1,11.99,05/18/19 10:55,"946 Forest St, Atlanta, GA 30301" +201962,Apple Airpods Headphones,1,150,05/01/19 12:42,"811 Elm St, Los Angeles, CA 90001" +201963,AA Batteries (4-pack),2,3.84,05/01/19 17:51,"277 West St, Austin, TX 73301" +201964,Flatscreen TV,1,300,05/04/19 18:45,"32 6th St, Boston, MA 02215" +201965,20in Monitor,1,109.99,05/07/19 18:04,"603 6th St, New York City, NY 10001" +201966,Apple Airpods Headphones,1,150,05/03/19 14:18,"288 13th St, New York City, NY 10001" +201967,Bose SoundSport Headphones,1,99.99,05/06/19 11:38,"578 Park St, Boston, MA 02215" +201968,AAA Batteries (4-pack),1,2.99,05/31/19 10:03,"584 Adams St, New York City, NY 10001" +201969,Lightning Charging Cable,1,14.95,05/21/19 15:01,"884 Cedar St, Boston, MA 02215" +201969,Apple Airpods Headphones,1,150,05/21/19 15:01,"884 Cedar St, Boston, MA 02215" +201970,Wired Headphones,1,11.99,05/27/19 21:42,"794 Meadow St, San Francisco, CA 94016" +201971,USB-C Charging Cable,1,11.95,06/01/19 02:05,"272 Hill St, Atlanta, GA 30301" +201972,Bose SoundSport Headphones,1,99.99,05/19/19 17:20,"878 Hill St, San Francisco, CA 94016" +201973,AAA Batteries (4-pack),2,2.99,05/08/19 06:59,"813 12th St, Portland, OR 97035" +201974,AAA Batteries (4-pack),1,2.99,05/25/19 10:30,"439 9th St, New York City, NY 10001" +201975,Apple Airpods Headphones,1,150,05/13/19 10:01,"851 Sunset St, San Francisco, CA 94016" +201976,27in 4K Gaming Monitor,1,389.99,05/06/19 18:16,"537 Elm St, New York City, NY 10001" +201977,USB-C Charging Cable,1,11.95,05/11/19 18:55,"865 Center St, Los Angeles, CA 90001" +201978,34in Ultrawide Monitor,1,379.99,05/22/19 23:41,"857 River St, Seattle, WA 98101" +201979,27in 4K Gaming Monitor,1,389.99,05/17/19 17:38,"743 Cherry St, San Francisco, CA 94016" +201980,Macbook Pro Laptop,1,1700,05/16/19 22:14,"137 10th St, Seattle, WA 98101" +201981,AA Batteries (4-pack),2,3.84,05/29/19 11:51,"838 11th St, Austin, TX 73301" +201982,Lightning Charging Cable,1,14.95,05/08/19 23:31,"815 Walnut St, Los Angeles, CA 90001" +201983,AA Batteries (4-pack),1,3.84,05/05/19 19:45,"433 Center St, Los Angeles, CA 90001" +201984,USB-C Charging Cable,1,11.95,05/16/19 16:36,"496 Jackson St, San Francisco, CA 94016" +201985,20in Monitor,1,109.99,05/11/19 10:25,"756 Highland St, Atlanta, GA 30301" +201986,Lightning Charging Cable,1,14.95,05/31/19 18:16,"255 Church St, San Francisco, CA 94016" +201987,27in 4K Gaming Monitor,1,389.99,05/26/19 20:44,"925 Hill St, Austin, TX 73301" +201988,Wired Headphones,1,11.99,05/16/19 07:25,"971 Park St, Boston, MA 02215" +201989,34in Ultrawide Monitor,1,379.99,05/26/19 19:29,"912 West St, Atlanta, GA 30301" +201990,Lightning Charging Cable,1,14.95,05/16/19 21:10,"604 Willow St, Boston, MA 02215" +201991,20in Monitor,1,109.99,05/15/19 14:01,"418 Church St, Dallas, TX 75001" +201992,USB-C Charging Cable,1,11.95,05/25/19 10:07,"536 2nd St, San Francisco, CA 94016" +201993,AAA Batteries (4-pack),1,2.99,05/20/19 13:48,"265 Walnut St, San Francisco, CA 94016" +201994,USB-C Charging Cable,1,11.95,05/05/19 10:08,"654 Adams St, San Francisco, CA 94016" +201995,AA Batteries (4-pack),1,3.84,05/15/19 18:58,"817 8th St, Seattle, WA 98101" +201996,AAA Batteries (4-pack),1,2.99,05/01/19 14:45,"500 Maple St, Los Angeles, CA 90001" +201997,USB-C Charging Cable,1,11.95,05/05/19 17:37,"898 2nd St, Los Angeles, CA 90001" +201998,USB-C Charging Cable,1,11.95,05/12/19 20:26,"951 11th St, Austin, TX 73301" +201999,Wired Headphones,1,11.99,05/03/19 23:34,"309 Walnut St, Los Angeles, CA 90001" +202000,Macbook Pro Laptop,1,1700,05/05/19 23:25,"548 Ridge St, San Francisco, CA 94016" +202000,USB-C Charging Cable,1,11.95,05/05/19 23:25,"548 Ridge St, San Francisco, CA 94016" +202001,USB-C Charging Cable,1,11.95,05/18/19 19:31,"716 9th St, New York City, NY 10001" +202002,Lightning Charging Cable,1,14.95,05/27/19 18:43,"446 5th St, Los Angeles, CA 90001" +202003,AA Batteries (4-pack),1,3.84,05/13/19 20:45,"512 Park St, San Francisco, CA 94016" +202004,AA Batteries (4-pack),1,3.84,05/23/19 09:30,"889 13th St, Seattle, WA 98101" +202005,Lightning Charging Cable,1,14.95,05/15/19 12:56,"991 Ridge St, Seattle, WA 98101" +202006,USB-C Charging Cable,1,11.95,05/05/19 17:01,"882 Lake St, Los Angeles, CA 90001" +202007,USB-C Charging Cable,1,11.95,05/30/19 22:12,"447 Elm St, Boston, MA 02215" +202008,AAA Batteries (4-pack),2,2.99,05/20/19 16:49,"271 Cedar St, San Francisco, CA 94016" +202009,27in FHD Monitor,1,149.99,05/22/19 21:48,"698 Cedar St, San Francisco, CA 94016" +202010,ThinkPad Laptop,1,999.99,05/11/19 15:16,"503 Madison St, Seattle, WA 98101" +202011,Bose SoundSport Headphones,1,99.99,05/25/19 11:10,"288 Park St, Boston, MA 02215" +202012,Macbook Pro Laptop,1,1700,05/03/19 01:49,"397 Chestnut St, New York City, NY 10001" +202013,Bose SoundSport Headphones,1,99.99,05/01/19 07:53,"761 Hill St, Boston, MA 02215" +202014,USB-C Charging Cable,1,11.95,05/05/19 12:44,"596 12th St, Los Angeles, CA 90001" +202015,Macbook Pro Laptop,1,1700,05/22/19 05:24,"372 River St, Seattle, WA 98101" +202016,Wired Headphones,1,11.99,05/08/19 13:32,"557 Hill St, Dallas, TX 75001" +202017,Lightning Charging Cable,1,14.95,05/29/19 17:56,"964 Lakeview St, Portland, OR 97035" +202018,27in 4K Gaming Monitor,1,389.99,05/04/19 18:50,"376 9th St, Austin, TX 73301" +202019,USB-C Charging Cable,1,11.95,05/23/19 19:07,"233 North St, Dallas, TX 75001" +202020,AAA Batteries (4-pack),2,2.99,05/19/19 12:33,"161 Washington St, Dallas, TX 75001" +202021,Apple Airpods Headphones,1,150,05/17/19 19:54,"131 10th St, Austin, TX 73301" +202022,Apple Airpods Headphones,1,150,05/19/19 20:54,"381 Pine St, Seattle, WA 98101" +202023,iPhone,1,700,05/02/19 21:51,"689 Walnut St, Boston, MA 02215" +202024,Wired Headphones,1,11.99,05/18/19 19:28,"718 Park St, Los Angeles, CA 90001" +202025,USB-C Charging Cable,1,11.95,05/07/19 11:04,"509 4th St, Boston, MA 02215" +202026,AAA Batteries (4-pack),1,2.99,05/23/19 20:11,"662 Dogwood St, Seattle, WA 98101" +202027,USB-C Charging Cable,1,11.95,05/22/19 14:24,"132 Lakeview St, San Francisco, CA 94016" +202028,Bose SoundSport Headphones,1,99.99,05/20/19 14:45,"398 Wilson St, Boston, MA 02215" +202029,Lightning Charging Cable,1,14.95,05/02/19 13:08,"970 Ridge St, New York City, NY 10001" +202030,Google Phone,1,600,05/19/19 05:01,"577 Lincoln St, Atlanta, GA 30301" +202031,20in Monitor,1,109.99,05/04/19 21:57,"282 11th St, Boston, MA 02215" +202032,Wired Headphones,1,11.99,05/17/19 16:33,"600 1st St, San Francisco, CA 94016" +202033,Wired Headphones,1,11.99,05/17/19 13:46,"809 8th St, New York City, NY 10001" +202034,USB-C Charging Cable,2,11.95,05/13/19 21:37,"210 River St, San Francisco, CA 94016" +202035,34in Ultrawide Monitor,1,379.99,05/11/19 08:42,"812 Wilson St, Seattle, WA 98101" +202035,34in Ultrawide Monitor,1,379.99,05/11/19 08:42,"812 Wilson St, Seattle, WA 98101" +202036,AA Batteries (4-pack),4,3.84,05/14/19 08:29,"703 Highland St, Los Angeles, CA 90001" +202037,Apple Airpods Headphones,1,150,05/31/19 19:54,"213 Chestnut St, Seattle, WA 98101" +202038,27in FHD Monitor,1,149.99,05/21/19 18:43,"65 Walnut St, San Francisco, CA 94016" +202039,Apple Airpods Headphones,1,150,05/20/19 18:44,"830 Forest St, Austin, TX 73301" +202040,Bose SoundSport Headphones,1,99.99,05/28/19 22:47,"766 5th St, Seattle, WA 98101" +202041,Lightning Charging Cable,1,14.95,05/11/19 17:54,"817 Johnson St, Portland, OR 97035" +202042,20in Monitor,1,109.99,05/05/19 14:18,"651 14th St, Seattle, WA 98101" +202043,Lightning Charging Cable,1,14.95,05/04/19 13:19,"437 Maple St, San Francisco, CA 94016" +202044,Apple Airpods Headphones,1,150,05/30/19 17:12,"934 2nd St, Atlanta, GA 30301" +202045,34in Ultrawide Monitor,1,379.99,05/27/19 10:27,"60 6th St, San Francisco, CA 94016" +202046,Wired Headphones,1,11.99,05/09/19 20:47,"374 Lakeview St, San Francisco, CA 94016" +202047,Bose SoundSport Headphones,1,99.99,05/31/19 23:11,"374 13th St, New York City, NY 10001" +202048,USB-C Charging Cable,1,11.95,05/22/19 10:28,"789 Spruce St, Boston, MA 02215" +202049,Google Phone,1,600,05/23/19 16:40,"228 14th St, San Francisco, CA 94016" +202050,Vareebadd Phone,1,400,05/18/19 11:17,"305 Spruce St, Los Angeles, CA 90001" +202051,AA Batteries (4-pack),1,3.84,05/30/19 16:04,"967 Madison St, Dallas, TX 75001" +202052,iPhone,1,700,05/06/19 15:57,"553 Dogwood St, Portland, ME 04101" +202053,AAA Batteries (4-pack),1,2.99,05/05/19 15:04,"687 Main St, San Francisco, CA 94016" +202054,Wired Headphones,1,11.99,05/26/19 14:00,"672 Madison St, San Francisco, CA 94016" +202055,27in 4K Gaming Monitor,1,389.99,05/23/19 09:56,"192 2nd St, New York City, NY 10001" +202056,AA Batteries (4-pack),2,3.84,05/14/19 23:04,"330 Lakeview St, San Francisco, CA 94016" +202057,Macbook Pro Laptop,1,1700,05/04/19 19:43,"904 2nd St, Portland, OR 97035" +202058,Lightning Charging Cable,1,14.95,05/12/19 09:15,"921 West St, San Francisco, CA 94016" +202059,Apple Airpods Headphones,1,150,05/20/19 13:04,"787 West St, New York City, NY 10001" +202060,AAA Batteries (4-pack),1,2.99,05/21/19 08:29,"178 Pine St, Los Angeles, CA 90001" +202061,Lightning Charging Cable,1,14.95,05/31/19 13:42,"455 Sunset St, San Francisco, CA 94016" +202062,AA Batteries (4-pack),3,3.84,05/14/19 22:40,"687 Cedar St, New York City, NY 10001" +202063,AAA Batteries (4-pack),2,2.99,05/08/19 14:55,"37 5th St, Seattle, WA 98101" +202063,Google Phone,1,600,05/08/19 14:55,"37 5th St, Seattle, WA 98101" +202064,Google Phone,1,600,05/22/19 17:52,"33 Maple St, San Francisco, CA 94016" +202065,20in Monitor,1,109.99,05/01/19 07:45,"67 Madison St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +202066,Apple Airpods Headphones,1,150,05/05/19 18:20,"272 Johnson St, Dallas, TX 75001" +202067,AAA Batteries (4-pack),1,2.99,05/09/19 07:56,"775 12th St, San Francisco, CA 94016" +202068,Wired Headphones,2,11.99,05/21/19 20:05,"140 Center St, Seattle, WA 98101" +202069,AAA Batteries (4-pack),1,2.99,05/31/19 14:54,"943 Cherry St, Dallas, TX 75001" +202070,AAA Batteries (4-pack),1,2.99,05/23/19 17:21,"247 North St, Portland, OR 97035" +202071,Apple Airpods Headphones,1,150,05/04/19 20:59,"926 Center St, Austin, TX 73301" +202072,Lightning Charging Cable,1,14.95,05/25/19 22:35,"870 Ridge St, Seattle, WA 98101" +202073,Apple Airpods Headphones,1,150,05/09/19 22:00,"165 Johnson St, San Francisco, CA 94016" +202074,Google Phone,1,600,05/08/19 16:08,"975 11th St, Atlanta, GA 30301" +202075,Flatscreen TV,1,300,05/10/19 00:03,"232 Walnut St, Atlanta, GA 30301" +202076,AA Batteries (4-pack),1,3.84,05/02/19 12:40,"991 Hill St, San Francisco, CA 94016" +202077,LG Washing Machine,1,600.0,05/24/19 22:40,"568 Cedar St, Austin, TX 73301" +202078,Wired Headphones,1,11.99,05/18/19 14:45,"148 Cedar St, New York City, NY 10001" +202079,Apple Airpods Headphones,1,150,05/18/19 14:18,"880 10th St, Los Angeles, CA 90001" +202080,Wired Headphones,1,11.99,05/07/19 08:39,"445 Maple St, Portland, ME 04101" +202081,Bose SoundSport Headphones,1,99.99,05/17/19 16:52,"436 Chestnut St, San Francisco, CA 94016" +202082,Lightning Charging Cable,1,14.95,05/14/19 18:32,"256 North St, Dallas, TX 75001" +202083,Lightning Charging Cable,1,14.95,05/19/19 20:37,"671 Ridge St, Portland, ME 04101" +202084,USB-C Charging Cable,1,11.95,05/03/19 08:54,"447 Elm St, New York City, NY 10001" +202085,AAA Batteries (4-pack),1,2.99,05/27/19 03:21,"415 River St, San Francisco, CA 94016" +202086,AA Batteries (4-pack),2,3.84,05/15/19 17:40,"382 Ridge St, San Francisco, CA 94016" +202087,27in 4K Gaming Monitor,1,389.99,05/21/19 13:22,"389 Dogwood St, San Francisco, CA 94016" +202088,Wired Headphones,1,11.99,05/09/19 20:26,"650 Lincoln St, Boston, MA 02215" +202089,Bose SoundSport Headphones,1,99.99,05/10/19 12:45,"716 12th St, San Francisco, CA 94016" +202090,AA Batteries (4-pack),2,3.84,05/30/19 18:05,"830 Main St, New York City, NY 10001" +202091,Wired Headphones,1,11.99,05/18/19 15:00,"137 6th St, Los Angeles, CA 90001" +202092,AA Batteries (4-pack),1,3.84,05/10/19 14:57,"412 Hickory St, San Francisco, CA 94016" +202093,34in Ultrawide Monitor,1,379.99,05/06/19 22:00,"474 Church St, Boston, MA 02215" +202094,Apple Airpods Headphones,1,150,05/10/19 07:02,"703 Wilson St, San Francisco, CA 94016" +202095,USB-C Charging Cable,1,11.95,05/18/19 08:25,"439 Main St, Seattle, WA 98101" +202096,AAA Batteries (4-pack),2,2.99,05/19/19 12:30,"496 West St, New York City, NY 10001" +202097,AA Batteries (4-pack),1,3.84,05/06/19 00:14,"592 5th St, Los Angeles, CA 90001" +202098,Wired Headphones,1,11.99,05/05/19 21:08,"286 Sunset St, Seattle, WA 98101" +202099,27in FHD Monitor,1,149.99,05/14/19 11:11,"110 Willow St, Los Angeles, CA 90001" +202100,34in Ultrawide Monitor,1,379.99,05/23/19 15:22,"564 Spruce St, Portland, OR 97035" +202101,Bose SoundSport Headphones,1,99.99,05/27/19 13:47,"652 West St, Portland, OR 97035" +202102,iPhone,1,700,05/30/19 12:39,"405 Chestnut St, San Francisco, CA 94016" +202103,Lightning Charging Cable,1,14.95,05/19/19 04:53,"337 Walnut St, Seattle, WA 98101" +202104,iPhone,1,700,05/08/19 22:34,"355 Willow St, Seattle, WA 98101" +202105,Wired Headphones,1,11.99,05/23/19 13:24,"314 10th St, San Francisco, CA 94016" +202106,AAA Batteries (4-pack),1,2.99,05/23/19 16:18,"913 7th St, San Francisco, CA 94016" +202107,Apple Airpods Headphones,1,150,05/28/19 20:21,"577 Cedar St, Dallas, TX 75001" +202107,Apple Airpods Headphones,1,150,05/28/19 20:21,"577 Cedar St, Dallas, TX 75001" +202108,USB-C Charging Cable,1,11.95,05/10/19 00:33,"287 Main St, Austin, TX 73301" +202109,AA Batteries (4-pack),1,3.84,05/19/19 00:05,"912 Cedar St, Portland, ME 04101" +202110,Macbook Pro Laptop,1,1700,05/01/19 08:42,"56 Washington St, Los Angeles, CA 90001" +202111,Bose SoundSport Headphones,1,99.99,05/25/19 18:08,"299 Jackson St, New York City, NY 10001" +202112,Bose SoundSport Headphones,1,99.99,05/12/19 15:55,"858 8th St, Los Angeles, CA 90001" +202113,34in Ultrawide Monitor,1,379.99,05/27/19 01:36,"997 Lincoln St, Boston, MA 02215" +202114,Lightning Charging Cable,1,14.95,05/07/19 09:30,"472 Walnut St, San Francisco, CA 94016" +202115,34in Ultrawide Monitor,1,379.99,05/07/19 19:04,"836 13th St, Dallas, TX 75001" +202116,AA Batteries (4-pack),1,3.84,05/17/19 18:25,"342 Maple St, New York City, NY 10001" +202117,AAA Batteries (4-pack),2,2.99,05/17/19 14:10,"457 Jackson St, Boston, MA 02215" +202118,34in Ultrawide Monitor,1,379.99,05/15/19 12:27,"907 Highland St, Boston, MA 02215" +202119,LG Washing Machine,1,600.0,05/24/19 18:51,"833 8th St, Dallas, TX 75001" +202120,AA Batteries (4-pack),1,3.84,05/31/19 11:17,"246 Church St, San Francisco, CA 94016" +202121,AA Batteries (4-pack),1,3.84,05/18/19 18:00,"378 Jefferson St, San Francisco, CA 94016" +202122,Apple Airpods Headphones,1,150,05/28/19 20:44,"875 Pine St, Boston, MA 02215" +202123,Google Phone,1,600,05/20/19 12:42,"192 Main St, Atlanta, GA 30301" +202124,Lightning Charging Cable,1,14.95,05/22/19 19:38,"87 7th St, Atlanta, GA 30301" +202125,USB-C Charging Cable,1,11.95,05/19/19 11:02,"310 South St, Los Angeles, CA 90001" +202126,USB-C Charging Cable,1,11.95,05/07/19 12:02,"155 14th St, Atlanta, GA 30301" +202127,AA Batteries (4-pack),3,3.84,05/19/19 10:43,"373 Center St, Austin, TX 73301" +202128,Wired Headphones,2,11.99,05/25/19 21:19,"856 Sunset St, Seattle, WA 98101" +,,,,, +202129,20in Monitor,1,109.99,05/24/19 21:47,"164 Highland St, Atlanta, GA 30301" +202130,Apple Airpods Headphones,1,150,05/10/19 19:48,"91 6th St, San Francisco, CA 94016" +202131,ThinkPad Laptop,1,999.99,05/02/19 17:29,"412 Johnson St, Atlanta, GA 30301" +202132,USB-C Charging Cable,1,11.95,05/31/19 17:26,"871 Sunset St, Seattle, WA 98101" +202133,LG Dryer,1,600.0,05/01/19 18:05,"159 4th St, Austin, TX 73301" +202134,Google Phone,1,600,05/09/19 17:52,"716 Forest St, San Francisco, CA 94016" +202134,USB-C Charging Cable,1,11.95,05/09/19 17:52,"716 Forest St, San Francisco, CA 94016" +202135,20in Monitor,1,109.99,05/04/19 11:38,"388 1st St, Atlanta, GA 30301" +202136,Flatscreen TV,1,300,05/03/19 16:31,"316 6th St, Portland, OR 97035" +202137,AAA Batteries (4-pack),2,2.99,05/24/19 21:23,"31 6th St, Dallas, TX 75001" +202138,USB-C Charging Cable,1,11.95,05/25/19 23:33,"34 Maple St, San Francisco, CA 94016" +202139,AA Batteries (4-pack),1,3.84,05/06/19 18:15,"747 North St, Atlanta, GA 30301" +202140,Wired Headphones,1,11.99,05/20/19 18:35,"468 South St, San Francisco, CA 94016" +202141,Wired Headphones,1,11.99,05/23/19 18:10,"25 Main St, San Francisco, CA 94016" +202142,Wired Headphones,1,11.99,05/14/19 15:03,"936 Park St, San Francisco, CA 94016" +202143,AAA Batteries (4-pack),1,2.99,05/04/19 22:57,"59 Elm St, Boston, MA 02215" +202144,iPhone,1,700,05/14/19 16:11,"673 Park St, Dallas, TX 75001" +202145,Lightning Charging Cable,1,14.95,05/07/19 23:47,"208 12th St, Dallas, TX 75001" +202146,34in Ultrawide Monitor,1,379.99,05/15/19 16:29,"610 13th St, Los Angeles, CA 90001" +202147,Apple Airpods Headphones,1,150,05/30/19 22:17,"781 14th St, New York City, NY 10001" +202148,Lightning Charging Cable,1,14.95,05/13/19 15:22,"537 7th St, Boston, MA 02215" +202149,iPhone,1,700,05/22/19 08:28,"944 4th St, Boston, MA 02215" +202150,iPhone,1,700,05/11/19 19:42,"439 10th St, Boston, MA 02215" +202150,Lightning Charging Cable,1,14.95,05/11/19 19:42,"439 10th St, Boston, MA 02215" +202151,Lightning Charging Cable,1,14.95,05/17/19 19:50,"207 Hill St, Austin, TX 73301" +202152,Bose SoundSport Headphones,1,99.99,05/17/19 07:08,"504 Lincoln St, Boston, MA 02215" +202153,Bose SoundSport Headphones,1,99.99,05/23/19 14:30,"280 1st St, San Francisco, CA 94016" +202154,Wired Headphones,1,11.99,05/16/19 11:21,"363 Maple St, Seattle, WA 98101" +202155,34in Ultrawide Monitor,1,379.99,05/24/19 10:10,"168 12th St, Seattle, WA 98101" +202156,USB-C Charging Cable,1,11.95,05/01/19 14:44,"261 Walnut St, Boston, MA 02215" +202157,Apple Airpods Headphones,1,150,05/19/19 06:24,"476 Dogwood St, Dallas, TX 75001" +202158,Wired Headphones,2,11.99,05/21/19 19:59,"586 Lake St, Atlanta, GA 30301" +202159,USB-C Charging Cable,1,11.95,05/24/19 08:39,"451 North St, Boston, MA 02215" +202159,USB-C Charging Cable,1,11.95,05/24/19 08:39,"451 North St, Boston, MA 02215" +202160,Wired Headphones,1,11.99,05/27/19 18:12,"150 Chestnut St, Austin, TX 73301" +202161,34in Ultrawide Monitor,1,379.99,05/22/19 14:28,"985 River St, Los Angeles, CA 90001" +202162,27in FHD Monitor,1,149.99,05/20/19 19:36,"535 Jefferson St, San Francisco, CA 94016" +202163,AA Batteries (4-pack),3,3.84,05/31/19 20:16,"822 Jefferson St, San Francisco, CA 94016" +202164,Apple Airpods Headphones,1,150,05/23/19 20:56,"973 Cherry St, Dallas, TX 75001" +202165,ThinkPad Laptop,1,999.99,05/23/19 19:45,"724 North St, Seattle, WA 98101" +202166,Lightning Charging Cable,1,14.95,05/01/19 13:53,"664 Lakeview St, Portland, OR 97035" +202167,Wired Headphones,1,11.99,05/10/19 13:16,"709 Hickory St, Atlanta, GA 30301" +202168,Flatscreen TV,1,300,05/28/19 12:32,"711 Pine St, Dallas, TX 75001" +202169,AA Batteries (4-pack),1,3.84,05/18/19 17:04,"428 11th St, San Francisco, CA 94016" +202170,Macbook Pro Laptop,1,1700,05/09/19 17:28,"599 5th St, Los Angeles, CA 90001" +202171,Flatscreen TV,1,300,05/27/19 09:18,"816 Walnut St, Boston, MA 02215" +202172,AAA Batteries (4-pack),2,2.99,05/24/19 05:35,"839 Cedar St, San Francisco, CA 94016" +202173,Wired Headphones,1,11.99,05/20/19 09:13,"721 Hill St, Seattle, WA 98101" +202174,Lightning Charging Cable,1,14.95,05/18/19 14:14,"309 Maple St, Austin, TX 73301" +202175,27in FHD Monitor,1,149.99,05/14/19 19:10,"449 10th St, Boston, MA 02215" +202176,Lightning Charging Cable,1,14.95,05/05/19 18:28,"287 Hickory St, Boston, MA 02215" +202177,Apple Airpods Headphones,1,150,05/18/19 12:26,"404 13th St, New York City, NY 10001" +202178,27in FHD Monitor,1,149.99,05/22/19 21:30,"222 Jackson St, Dallas, TX 75001" +202179,USB-C Charging Cable,1,11.95,05/15/19 14:40,"253 Lake St, Los Angeles, CA 90001" +202180,27in FHD Monitor,1,149.99,05/26/19 16:40,"461 North St, Dallas, TX 75001" +202181,Google Phone,1,600,05/08/19 12:34,"921 Madison St, Seattle, WA 98101" +202181,USB-C Charging Cable,1,11.95,05/08/19 12:34,"921 Madison St, Seattle, WA 98101" +202182,USB-C Charging Cable,1,11.95,05/31/19 10:45,"661 Center St, Los Angeles, CA 90001" +202183,Apple Airpods Headphones,1,150,05/13/19 22:31,"776 Willow St, Atlanta, GA 30301" +202184,USB-C Charging Cable,1,11.95,05/12/19 13:46,"545 Hill St, New York City, NY 10001" +202185,Lightning Charging Cable,1,14.95,05/27/19 19:07,"504 Main St, Los Angeles, CA 90001" +202186,AA Batteries (4-pack),1,3.84,05/22/19 11:22,"436 Jackson St, Dallas, TX 75001" +202186,iPhone,1,700,05/22/19 11:22,"436 Jackson St, Dallas, TX 75001" +202187,USB-C Charging Cable,1,11.95,05/02/19 14:47,"193 Cedar St, Portland, ME 04101" +202188,AA Batteries (4-pack),1,3.84,05/01/19 06:40,"716 7th St, Portland, ME 04101" +202189,AA Batteries (4-pack),2,3.84,05/04/19 10:56,"724 Spruce St, Austin, TX 73301" +202190,USB-C Charging Cable,1,11.95,05/11/19 22:12,"371 North St, Los Angeles, CA 90001" +202191,Wired Headphones,1,11.99,05/13/19 11:50,"60 Madison St, Dallas, TX 75001" +202192,34in Ultrawide Monitor,1,379.99,05/18/19 20:16,"301 Hill St, New York City, NY 10001" +202193,Wired Headphones,1,11.99,05/12/19 11:18,"777 Ridge St, New York City, NY 10001" +202194,AA Batteries (4-pack),1,3.84,05/05/19 16:33,"462 Pine St, San Francisco, CA 94016" +202195,Flatscreen TV,1,300,05/30/19 14:00,"308 Walnut St, San Francisco, CA 94016" +202196,20in Monitor,1,109.99,05/18/19 01:52,"661 1st St, Austin, TX 73301" +202197,AAA Batteries (4-pack),2,2.99,05/25/19 21:18,"588 Cherry St, San Francisco, CA 94016" +202198,AAA Batteries (4-pack),2,2.99,05/01/19 11:50,"180 Cherry St, Boston, MA 02215" +202199,USB-C Charging Cable,1,11.95,05/07/19 20:04,"149 Washington St, Portland, OR 97035" +202200,Bose SoundSport Headphones,1,99.99,05/20/19 02:53,"79 River St, San Francisco, CA 94016" +202201,Wired Headphones,1,11.99,05/27/19 16:37,"68 Main St, Dallas, TX 75001" +202202,AAA Batteries (4-pack),1,2.99,05/09/19 20:12,"413 Willow St, Austin, TX 73301" +202203,iPhone,1,700,05/16/19 13:21,"663 Maple St, Atlanta, GA 30301" +202204,Lightning Charging Cable,1,14.95,05/13/19 18:09,"561 Church St, Los Angeles, CA 90001" +202205,Bose SoundSport Headphones,1,99.99,05/05/19 20:14,"989 13th St, Dallas, TX 75001" +202206,LG Washing Machine,1,600.0,05/18/19 13:37,"565 Pine St, Dallas, TX 75001" +202207,ThinkPad Laptop,1,999.99,05/24/19 15:59,"868 Dogwood St, Austin, TX 73301" +202208,AA Batteries (4-pack),2,3.84,05/09/19 13:59,"497 Walnut St, Los Angeles, CA 90001" +202209,AA Batteries (4-pack),2,3.84,05/21/19 17:20,"457 Forest St, Seattle, WA 98101" +202210,Lightning Charging Cable,1,14.95,05/22/19 23:10,"158 North St, San Francisco, CA 94016" +202211,Apple Airpods Headphones,1,150,05/05/19 12:54,"296 6th St, Boston, MA 02215" +202212,Lightning Charging Cable,1,14.95,05/26/19 11:08,"538 7th St, Boston, MA 02215" +202213,Lightning Charging Cable,1,14.95,05/23/19 17:34,"688 South St, Austin, TX 73301" +202214,Wired Headphones,1,11.99,05/12/19 22:01,"151 4th St, San Francisco, CA 94016" +202215,34in Ultrawide Monitor,1,379.99,05/05/19 10:38,"88 Forest St, Seattle, WA 98101" +202216,Wired Headphones,1,11.99,05/10/19 13:42,"902 Sunset St, Los Angeles, CA 90001" +202217,34in Ultrawide Monitor,1,379.99,05/24/19 14:51,"232 Adams St, San Francisco, CA 94016" +202218,34in Ultrawide Monitor,1,379.99,05/09/19 11:32,"512 Main St, Seattle, WA 98101" +202219,Wired Headphones,1,11.99,05/15/19 18:59,"427 Chestnut St, San Francisco, CA 94016" +202220,27in FHD Monitor,1,149.99,05/31/19 21:21,"747 Willow St, New York City, NY 10001" +202221,USB-C Charging Cable,1,11.95,05/25/19 20:18,"823 12th St, Boston, MA 02215" +202222,Flatscreen TV,1,300,05/31/19 19:40,"741 Maple St, New York City, NY 10001" +202223,AA Batteries (4-pack),1,3.84,05/11/19 16:12,"52 6th St, New York City, NY 10001" +202224,Apple Airpods Headphones,1,150,05/06/19 16:04,"134 Elm St, Seattle, WA 98101" +202225,AA Batteries (4-pack),1,3.84,05/03/19 08:54,"217 North St, Atlanta, GA 30301" +202226,Apple Airpods Headphones,1,150,05/24/19 16:13,"144 Maple St, Atlanta, GA 30301" +202227,AAA Batteries (4-pack),1,2.99,05/12/19 11:48,"29 Meadow St, San Francisco, CA 94016" +202228,USB-C Charging Cable,1,11.95,05/19/19 22:28,"723 14th St, Atlanta, GA 30301" +202229,Wired Headphones,1,11.99,05/16/19 00:47,"933 Washington St, San Francisco, CA 94016" +202230,Lightning Charging Cable,1,14.95,05/25/19 20:49,"952 Chestnut St, Boston, MA 02215" +202231,Wired Headphones,1,11.99,05/25/19 00:22,"63 Wilson St, Boston, MA 02215" +202232,USB-C Charging Cable,1,11.95,05/17/19 14:33,"862 Park St, New York City, NY 10001" +202233,Lightning Charging Cable,1,14.95,05/19/19 11:52,"420 Madison St, San Francisco, CA 94016" +202234,AAA Batteries (4-pack),1,2.99,05/28/19 06:59,"431 Walnut St, New York City, NY 10001" +202235,AAA Batteries (4-pack),2,2.99,05/14/19 23:42,"818 13th St, Boston, MA 02215" +202236,Lightning Charging Cable,1,14.95,05/03/19 14:58,"699 Dogwood St, Boston, MA 02215" +202237,ThinkPad Laptop,1,999.99,05/11/19 09:20,"239 Main St, Los Angeles, CA 90001" +202238,Wired Headphones,1,11.99,05/07/19 12:01,"926 Center St, Austin, TX 73301" +202239,USB-C Charging Cable,1,11.95,05/21/19 13:48,"866 Ridge St, Los Angeles, CA 90001" +202240,AA Batteries (4-pack),2,3.84,05/27/19 15:17,"495 Highland St, Los Angeles, CA 90001" +202241,Lightning Charging Cable,1,14.95,05/03/19 12:46,"645 Cedar St, Atlanta, GA 30301" +202242,Lightning Charging Cable,1,14.95,05/02/19 21:46,"611 North St, San Francisco, CA 94016" +202243,Lightning Charging Cable,1,14.95,05/07/19 13:26,"505 11th St, San Francisco, CA 94016" +202244,Google Phone,1,600,05/08/19 20:00,"236 Elm St, New York City, NY 10001" +202245,USB-C Charging Cable,1,11.95,05/25/19 22:36,"272 Chestnut St, New York City, NY 10001" +202246,Lightning Charging Cable,1,14.95,05/27/19 18:45,"553 Spruce St, Austin, TX 73301" +202247,AA Batteries (4-pack),1,3.84,05/27/19 20:51,"303 South St, Boston, MA 02215" +202248,Google Phone,1,600,05/30/19 12:59,"920 Adams St, Dallas, TX 75001" +202249,27in 4K Gaming Monitor,1,389.99,05/22/19 16:25,"226 Jackson St, Los Angeles, CA 90001" +202250,Apple Airpods Headphones,1,150,05/04/19 13:23,"580 13th St, Los Angeles, CA 90001" +202251,Google Phone,1,600,05/07/19 21:01,"456 Wilson St, Boston, MA 02215" +202252,Google Phone,1,600,05/02/19 11:07,"594 Highland St, Austin, TX 73301" +202253,Lightning Charging Cable,1,14.95,05/08/19 21:08,"860 Park St, San Francisco, CA 94016" +202254,Lightning Charging Cable,1,14.95,05/23/19 07:35,"197 Center St, New York City, NY 10001" +202255,34in Ultrawide Monitor,1,379.99,05/12/19 03:48,"641 North St, San Francisco, CA 94016" +202256,27in FHD Monitor,1,149.99,05/06/19 10:55,"997 10th St, Boston, MA 02215" +202257,Apple Airpods Headphones,1,150,05/20/19 11:55,"356 River St, San Francisco, CA 94016" +202258,27in FHD Monitor,1,149.99,05/15/19 20:27,"591 Pine St, San Francisco, CA 94016" +202259,Apple Airpods Headphones,1,150,05/21/19 18:17,"174 1st St, Atlanta, GA 30301" +202260,Wired Headphones,1,11.99,05/07/19 04:50,"725 Lincoln St, Boston, MA 02215" +202261,USB-C Charging Cable,1,11.95,05/09/19 15:12,"282 Church St, San Francisco, CA 94016" +202262,AA Batteries (4-pack),1,3.84,05/20/19 19:58,"241 Center St, San Francisco, CA 94016" +202263,Bose SoundSport Headphones,1,99.99,05/15/19 07:06,"907 Park St, Portland, OR 97035" +202264,Google Phone,1,600,05/01/19 15:02,"189 South St, Los Angeles, CA 90001" +202265,Lightning Charging Cable,1,14.95,05/31/19 12:43,"164 Lake St, New York City, NY 10001" +202266,Wired Headphones,1,11.99,05/30/19 08:23,"618 5th St, New York City, NY 10001" +202267,Wired Headphones,1,11.99,05/08/19 21:36,"22 5th St, Portland, OR 97035" +202268,34in Ultrawide Monitor,1,379.99,05/03/19 19:56,"559 1st St, Boston, MA 02215" +202269,Apple Airpods Headphones,1,150,05/23/19 17:33,"20 West St, San Francisco, CA 94016" +202270,USB-C Charging Cable,1,11.95,05/05/19 00:44,"912 Highland St, Boston, MA 02215" +202271,Apple Airpods Headphones,1,150,05/07/19 20:17,"103 Lake St, Austin, TX 73301" +202272,Lightning Charging Cable,1,14.95,05/26/19 15:32,"14 Willow St, San Francisco, CA 94016" +202273,Google Phone,1,600,05/26/19 22:09,"988 Wilson St, Atlanta, GA 30301" +202274,Flatscreen TV,1,300,05/17/19 14:50,"665 Spruce St, Boston, MA 02215" +202275,Lightning Charging Cable,2,14.95,05/03/19 22:00,"89 Willow St, San Francisco, CA 94016" +202276,Apple Airpods Headphones,1,150,05/29/19 20:25,"844 Highland St, New York City, NY 10001" +202277,AA Batteries (4-pack),1,3.84,05/09/19 11:58,"897 2nd St, Boston, MA 02215" +202278,Lightning Charging Cable,1,14.95,05/30/19 10:50,"884 Pine St, New York City, NY 10001" +202279,Lightning Charging Cable,1,14.95,05/25/19 22:52,"675 Hill St, Los Angeles, CA 90001" +202280,AA Batteries (4-pack),2,3.84,05/25/19 11:00,"578 Chestnut St, New York City, NY 10001" +202281,ThinkPad Laptop,1,999.99,05/13/19 13:08,"601 7th St, Boston, MA 02215" +202282,Bose SoundSport Headphones,1,99.99,05/03/19 13:12,"802 West St, Portland, OR 97035" +202283,27in 4K Gaming Monitor,1,389.99,05/19/19 10:36,"287 13th St, New York City, NY 10001" +202283,USB-C Charging Cable,2,11.95,05/19/19 10:36,"287 13th St, New York City, NY 10001" +202284,34in Ultrawide Monitor,1,379.99,05/03/19 19:19,"703 1st St, New York City, NY 10001" +202285,Macbook Pro Laptop,1,1700,05/28/19 11:53,"507 Highland St, Boston, MA 02215" +202286,Apple Airpods Headphones,1,150,05/28/19 16:20,"595 1st St, San Francisco, CA 94016" +202287,Macbook Pro Laptop,1,1700,05/28/19 18:55,"751 Lincoln St, Atlanta, GA 30301" +202288,USB-C Charging Cable,1,11.95,05/25/19 09:08,"53 11th St, Boston, MA 02215" +202289,Flatscreen TV,1,300,05/30/19 11:09,"347 Jefferson St, New York City, NY 10001" +202290,Bose SoundSport Headphones,1,99.99,05/12/19 13:03,"490 Meadow St, Atlanta, GA 30301" +202291,Vareebadd Phone,1,400,05/03/19 12:16,"227 West St, San Francisco, CA 94016" +202292,Wired Headphones,1,11.99,05/14/19 21:29,"282 6th St, Atlanta, GA 30301" +202293,ThinkPad Laptop,1,999.99,05/16/19 10:08,"190 Lake St, Dallas, TX 75001" +202294,AAA Batteries (4-pack),1,2.99,05/20/19 00:51,"550 Willow St, Dallas, TX 75001" +202294,Vareebadd Phone,1,400,05/20/19 00:51,"550 Willow St, Dallas, TX 75001" +202295,USB-C Charging Cable,1,11.95,05/03/19 17:56,"446 Main St, Dallas, TX 75001" +202296,AAA Batteries (4-pack),1,2.99,05/07/19 14:28,"731 Elm St, San Francisco, CA 94016" +202297,Lightning Charging Cable,1,14.95,05/27/19 23:57,"16 Center St, Atlanta, GA 30301" +202298,20in Monitor,1,109.99,05/09/19 20:11,"439 Hill St, New York City, NY 10001" +202299,34in Ultrawide Monitor,1,379.99,05/10/19 13:51,"265 Ridge St, San Francisco, CA 94016" +202300,Google Phone,1,600,05/25/19 19:03,"247 Cedar St, New York City, NY 10001" +202301,34in Ultrawide Monitor,1,379.99,05/20/19 00:13,"852 9th St, San Francisco, CA 94016" +202302,iPhone,1,700,05/21/19 14:15,"798 Spruce St, Dallas, TX 75001" +202303,Wired Headphones,1,11.99,05/06/19 15:24,"445 Cedar St, Seattle, WA 98101" +202304,AA Batteries (4-pack),1,3.84,05/08/19 18:34,"150 7th St, Seattle, WA 98101" +202305,27in FHD Monitor,1,149.99,05/29/19 17:28,"379 Jefferson St, San Francisco, CA 94016" +202306,Bose SoundSport Headphones,1,99.99,05/04/19 16:18,"336 Cedar St, Seattle, WA 98101" +202307,Apple Airpods Headphones,1,150,05/28/19 21:46,"753 Center St, New York City, NY 10001" +202308,AA Batteries (4-pack),1,3.84,05/19/19 11:40,"169 Pine St, Los Angeles, CA 90001" +202309,AAA Batteries (4-pack),1,2.99,05/03/19 22:44,"136 Hill St, San Francisco, CA 94016" +202310,AAA Batteries (4-pack),1,2.99,05/08/19 15:05,"957 North St, San Francisco, CA 94016" +202311,Wired Headphones,1,11.99,05/15/19 20:18,"662 Maple St, San Francisco, CA 94016" +202312,AAA Batteries (4-pack),1,2.99,05/06/19 21:17,"457 Dogwood St, San Francisco, CA 94016" +202313,Lightning Charging Cable,1,14.95,05/21/19 20:04,"139 Willow St, Los Angeles, CA 90001" +202314,Bose SoundSport Headphones,1,99.99,05/25/19 11:43,"902 14th St, San Francisco, CA 94016" +202315,Lightning Charging Cable,1,14.95,05/18/19 12:08,"520 Highland St, San Francisco, CA 94016" +202316,AAA Batteries (4-pack),1,2.99,05/17/19 22:08,"436 Cedar St, Dallas, TX 75001" +202317,Apple Airpods Headphones,1,150,05/20/19 01:23,"612 9th St, Dallas, TX 75001" +202318,27in 4K Gaming Monitor,1,389.99,05/29/19 09:49,"512 Johnson St, San Francisco, CA 94016" +202319,27in FHD Monitor,1,149.99,05/12/19 10:33,"563 Lake St, Austin, TX 73301" +202320,AAA Batteries (4-pack),1,2.99,05/09/19 20:01,"407 9th St, Atlanta, GA 30301" +202321,Wired Headphones,1,11.99,05/30/19 20:39,"904 Church St, Dallas, TX 75001" +202322,LG Washing Machine,1,600.0,05/17/19 15:53,"407 Elm St, San Francisco, CA 94016" +202323,Wired Headphones,1,11.99,05/15/19 10:32,"93 Maple St, San Francisco, CA 94016" +202324,ThinkPad Laptop,1,999.99,05/18/19 11:44,"27 Chestnut St, New York City, NY 10001" +202325,USB-C Charging Cable,1,11.95,05/22/19 08:26,"230 Madison St, San Francisco, CA 94016" +202325,AAA Batteries (4-pack),3,2.99,05/22/19 08:26,"230 Madison St, San Francisco, CA 94016" +202326,Macbook Pro Laptop,1,1700,05/13/19 16:36,"955 Hill St, Dallas, TX 75001" +202327,Macbook Pro Laptop,1,1700,05/03/19 12:30,"797 7th St, Seattle, WA 98101" +202328,Bose SoundSport Headphones,1,99.99,05/18/19 20:53,"955 Madison St, Boston, MA 02215" +202328,AA Batteries (4-pack),1,3.84,05/18/19 20:53,"955 Madison St, Boston, MA 02215" +202329,AA Batteries (4-pack),1,3.84,05/15/19 21:57,"425 6th St, San Francisco, CA 94016" +202330,Apple Airpods Headphones,1,150,05/24/19 23:36,"133 Jackson St, Atlanta, GA 30301" +202331,Wired Headphones,1,11.99,05/04/19 23:53,"836 West St, Portland, OR 97035" +202332,Bose SoundSport Headphones,1,99.99,05/01/19 11:08,"392 Chestnut St, New York City, NY 10001" +202333,Wired Headphones,1,11.99,05/01/19 14:53,"667 6th St, San Francisco, CA 94016" +202334,iPhone,1,700,05/17/19 16:23,"574 1st St, Seattle, WA 98101" +202335,AAA Batteries (4-pack),3,2.99,05/31/19 12:16,"287 Cedar St, Los Angeles, CA 90001" +202336,Google Phone,1,600,05/25/19 12:37,"600 Highland St, Atlanta, GA 30301" +202336,USB-C Charging Cable,1,11.95,05/25/19 12:37,"600 Highland St, Atlanta, GA 30301" +202337,Bose SoundSport Headphones,1,99.99,05/13/19 10:37,"788 Sunset St, Dallas, TX 75001" +202337,AAA Batteries (4-pack),1,2.99,05/13/19 10:37,"788 Sunset St, Dallas, TX 75001" +202338,27in FHD Monitor,1,149.99,05/09/19 20:33,"985 Walnut St, San Francisco, CA 94016" +202339,27in FHD Monitor,1,149.99,05/26/19 16:18,"106 Main St, Boston, MA 02215" +202340,AAA Batteries (4-pack),1,2.99,05/22/19 20:44,"659 River St, San Francisco, CA 94016" +202341,USB-C Charging Cable,1,11.95,05/28/19 22:27,"763 Cherry St, Austin, TX 73301" +202342,27in FHD Monitor,1,149.99,05/15/19 15:20,"280 2nd St, San Francisco, CA 94016" +202343,Apple Airpods Headphones,1,150,05/16/19 10:28,"682 10th St, San Francisco, CA 94016" +202344,Bose SoundSport Headphones,1,99.99,05/04/19 18:02,"26 14th St, Boston, MA 02215" +202345,Lightning Charging Cable,1,14.95,05/26/19 06:58,"902 Washington St, New York City, NY 10001" +202346,Lightning Charging Cable,2,14.95,05/28/19 16:00,"734 West St, Los Angeles, CA 90001" +202347,USB-C Charging Cable,1,11.95,05/19/19 09:50,"297 Dogwood St, Dallas, TX 75001" +202348,Lightning Charging Cable,1,14.95,05/11/19 16:22,"697 Forest St, New York City, NY 10001" +202349,AA Batteries (4-pack),1,3.84,05/16/19 12:55,"968 Cherry St, San Francisco, CA 94016" +202350,Wired Headphones,1,11.99,05/25/19 16:37,"795 Sunset St, Portland, OR 97035" +202351,iPhone,1,700,06/01/19 00:56,"74 11th St, Los Angeles, CA 90001" +202351,Lightning Charging Cable,1,14.95,06/01/19 00:56,"74 11th St, Los Angeles, CA 90001" +202352,Flatscreen TV,1,300,05/11/19 21:57,"716 6th St, New York City, NY 10001" +202353,iPhone,1,700,05/31/19 07:54,"780 Cedar St, New York City, NY 10001" +202354,AA Batteries (4-pack),1,3.84,05/27/19 13:12,"681 12th St, San Francisco, CA 94016" +202355,Bose SoundSport Headphones,1,99.99,05/19/19 22:19,"551 Spruce St, Atlanta, GA 30301" +202356,USB-C Charging Cable,1,11.95,05/20/19 09:10,"127 9th St, San Francisco, CA 94016" +202357,Wired Headphones,1,11.99,05/05/19 15:53,"100 Pine St, San Francisco, CA 94016" +202358,USB-C Charging Cable,1,11.95,05/17/19 08:15,"931 Meadow St, Portland, OR 97035" +202359,Lightning Charging Cable,1,14.95,05/22/19 18:30,"136 7th St, Dallas, TX 75001" +202360,AAA Batteries (4-pack),1,2.99,05/07/19 10:57,"279 Dogwood St, Boston, MA 02215" +202361,Apple Airpods Headphones,1,150,05/08/19 18:10,"468 South St, Boston, MA 02215" +202362,Wired Headphones,1,11.99,05/30/19 18:15,"995 Church St, Boston, MA 02215" +202363,USB-C Charging Cable,1,11.95,05/27/19 13:34,"211 South St, Austin, TX 73301" +202364,AAA Batteries (4-pack),1,2.99,05/08/19 14:54,"770 9th St, Seattle, WA 98101" +202365,AAA Batteries (4-pack),1,2.99,05/17/19 08:52,"517 Adams St, Atlanta, GA 30301" +202366,Lightning Charging Cable,1,14.95,05/29/19 21:48,"270 Main St, San Francisco, CA 94016" +202367,20in Monitor,1,109.99,05/04/19 17:22,"758 Wilson St, New York City, NY 10001" +202368,27in 4K Gaming Monitor,1,389.99,05/02/19 23:55,"853 Elm St, New York City, NY 10001" +202369,27in 4K Gaming Monitor,1,389.99,05/05/19 19:03,"224 Church St, Austin, TX 73301" +202370,Wired Headphones,1,11.99,05/08/19 12:02,"537 Chestnut St, Los Angeles, CA 90001" +202371,27in 4K Gaming Monitor,1,389.99,05/31/19 21:36,"940 Wilson St, Boston, MA 02215" +202372,AA Batteries (4-pack),1,3.84,05/13/19 09:20,"415 Main St, San Francisco, CA 94016" +202373,AAA Batteries (4-pack),1,2.99,05/01/19 13:43,"289 Maple St, Dallas, TX 75001" +202374,Macbook Pro Laptop,1,1700,05/20/19 15:38,"342 West St, Atlanta, GA 30301" +202375,27in 4K Gaming Monitor,1,389.99,05/01/19 22:50,"925 Lake St, San Francisco, CA 94016" +202376,Wired Headphones,1,11.99,05/02/19 14:24,"133 4th St, Austin, TX 73301" +202377,iPhone,1,700,05/04/19 22:32,"656 5th St, New York City, NY 10001" +202378,AA Batteries (4-pack),2,3.84,05/29/19 20:54,"518 7th St, Portland, OR 97035" +202379,Lightning Charging Cable,1,14.95,05/09/19 07:50,"678 6th St, New York City, NY 10001" +202380,Wired Headphones,1,11.99,05/05/19 15:28,"350 Ridge St, Los Angeles, CA 90001" +202381,AAA Batteries (4-pack),1,2.99,05/30/19 00:11,"690 South St, Los Angeles, CA 90001" +202382,AAA Batteries (4-pack),2,2.99,05/18/19 13:00,"226 Jefferson St, San Francisco, CA 94016" +202383,Apple Airpods Headphones,1,150,05/11/19 11:56,"502 10th St, San Francisco, CA 94016" +202384,Vareebadd Phone,1,400,05/31/19 20:47,"449 West St, San Francisco, CA 94016" +202385,AA Batteries (4-pack),1,3.84,05/15/19 12:21,"905 Lakeview St, Los Angeles, CA 90001" +202386,Bose SoundSport Headphones,1,99.99,05/03/19 09:56,"740 13th St, Boston, MA 02215" +202387,Google Phone,1,600,05/20/19 21:58,"127 2nd St, New York City, NY 10001" +202388,34in Ultrawide Monitor,1,379.99,05/14/19 06:41,"342 Maple St, Portland, OR 97035" +202389,USB-C Charging Cable,1,11.95,05/31/19 16:16,"820 Meadow St, Atlanta, GA 30301" +202390,27in FHD Monitor,1,149.99,05/18/19 14:26,"86 Pine St, New York City, NY 10001" +202391,USB-C Charging Cable,1,11.95,05/15/19 17:19,"618 10th St, Portland, OR 97035" +202392,Macbook Pro Laptop,1,1700,05/26/19 10:39,"151 Park St, Los Angeles, CA 90001" +202393,AA Batteries (4-pack),1,3.84,05/24/19 13:18,"158 Wilson St, Los Angeles, CA 90001" +202394,Lightning Charging Cable,1,14.95,05/03/19 16:24,"56 Washington St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +202395,34in Ultrawide Monitor,1,379.99,05/30/19 17:53,"483 Main St, San Francisco, CA 94016" +202396,Wired Headphones,1,11.99,05/13/19 16:08,"782 Madison St, Atlanta, GA 30301" +202396,USB-C Charging Cable,3,11.95,05/13/19 16:08,"782 Madison St, Atlanta, GA 30301" +202397,AAA Batteries (4-pack),4,2.99,05/27/19 12:27,"557 South St, Boston, MA 02215" +202398,Lightning Charging Cable,1,14.95,05/03/19 14:23,"477 Highland St, Boston, MA 02215" +202399,Bose SoundSport Headphones,1,99.99,05/13/19 13:32,"400 Willow St, Boston, MA 02215" +202399,AA Batteries (4-pack),1,3.84,05/13/19 13:32,"400 Willow St, Boston, MA 02215" +202400,USB-C Charging Cable,1,11.95,05/20/19 13:23,"943 11th St, Dallas, TX 75001" +202401,Lightning Charging Cable,2,14.95,05/29/19 21:23,"365 8th St, Dallas, TX 75001" +202402,AAA Batteries (4-pack),1,2.99,05/17/19 22:42,"475 4th St, San Francisco, CA 94016" +202403,Bose SoundSport Headphones,1,99.99,05/15/19 19:38,"561 Church St, Portland, OR 97035" +202404,Apple Airpods Headphones,1,150,05/17/19 20:29,"417 Madison St, San Francisco, CA 94016" +202405,USB-C Charging Cable,1,11.95,05/15/19 19:56,"236 Madison St, Dallas, TX 75001" +202406,27in FHD Monitor,1,149.99,05/02/19 16:34,"180 Lincoln St, New York City, NY 10001" +202407,Wired Headphones,1,11.99,05/27/19 20:22,"284 Dogwood St, Dallas, TX 75001" +202408,AA Batteries (4-pack),2,3.84,05/03/19 14:59,"86 Jefferson St, Los Angeles, CA 90001" +202409,USB-C Charging Cable,1,11.95,05/18/19 15:40,"800 Madison St, Los Angeles, CA 90001" +202410,Google Phone,1,600,05/22/19 20:07,"408 Spruce St, Austin, TX 73301" +202411,ThinkPad Laptop,1,999.99,05/11/19 15:11,"756 Lake St, Portland, OR 97035" +202412,34in Ultrawide Monitor,1,379.99,05/28/19 10:59,"561 9th St, New York City, NY 10001" +202413,Wired Headphones,1,11.99,05/12/19 14:26,"132 5th St, New York City, NY 10001" +202414,iPhone,1,700,05/21/19 13:32,"247 14th St, Los Angeles, CA 90001" +202414,Lightning Charging Cable,1,14.95,05/21/19 13:32,"247 14th St, Los Angeles, CA 90001" +202414,Wired Headphones,1,11.99,05/21/19 13:32,"247 14th St, Los Angeles, CA 90001" +202415,AA Batteries (4-pack),1,3.84,05/25/19 08:20,"481 Elm St, Boston, MA 02215" +202416,Bose SoundSport Headphones,1,99.99,05/17/19 20:59,"137 North St, Los Angeles, CA 90001" +202417,Lightning Charging Cable,1,14.95,05/17/19 09:55,"5 Walnut St, Austin, TX 73301" +202418,AAA Batteries (4-pack),2,2.99,05/08/19 22:28,"162 Washington St, Los Angeles, CA 90001" +202419,Flatscreen TV,1,300,05/28/19 18:24,"862 6th St, Atlanta, GA 30301" +202420,AA Batteries (4-pack),1,3.84,05/26/19 14:33,"172 Wilson St, Austin, TX 73301" +202421,Flatscreen TV,1,300,05/03/19 17:07,"373 Sunset St, Los Angeles, CA 90001" +202422,34in Ultrawide Monitor,1,379.99,05/20/19 13:39,"335 Cherry St, Los Angeles, CA 90001" +202423,AAA Batteries (4-pack),1,2.99,05/14/19 23:34,"544 Sunset St, Seattle, WA 98101" +202424,USB-C Charging Cable,1,11.95,05/09/19 00:20,"816 Adams St, Dallas, TX 75001" +202425,Lightning Charging Cable,1,14.95,05/03/19 10:37,"250 North St, Los Angeles, CA 90001" +202426,27in 4K Gaming Monitor,1,389.99,05/10/19 12:30,"248 4th St, Boston, MA 02215" +202427,Macbook Pro Laptop,1,1700,05/21/19 11:15,"528 Highland St, San Francisco, CA 94016" +202428,Wired Headphones,1,11.99,05/14/19 16:40,"195 West St, Boston, MA 02215" +202429,Lightning Charging Cable,1,14.95,05/22/19 12:23,"663 14th St, San Francisco, CA 94016" +202430,Apple Airpods Headphones,1,150,05/21/19 11:30,"682 River St, Portland, OR 97035" +202431,34in Ultrawide Monitor,1,379.99,05/12/19 12:38,"483 Jackson St, San Francisco, CA 94016" +202432,AAA Batteries (4-pack),1,2.99,05/24/19 03:55,"538 North St, San Francisco, CA 94016" +202433,AAA Batteries (4-pack),2,2.99,05/19/19 13:07,"609 Madison St, New York City, NY 10001" +202434,Google Phone,1,600,05/24/19 12:36,"937 5th St, Dallas, TX 75001" +202434,USB-C Charging Cable,1,11.95,05/24/19 12:36,"937 5th St, Dallas, TX 75001" +202435,Apple Airpods Headphones,1,150,05/04/19 13:58,"372 2nd St, San Francisco, CA 94016" +202436,Apple Airpods Headphones,1,150,05/29/19 19:12,"390 Dogwood St, San Francisco, CA 94016" +202437,Bose SoundSport Headphones,1,99.99,05/02/19 14:32,"209 Johnson St, San Francisco, CA 94016" +202438,Wired Headphones,2,11.99,05/13/19 17:26,"746 Main St, Seattle, WA 98101" +202439,iPhone,1,700,05/26/19 18:58,"432 Lincoln St, San Francisco, CA 94016" +202439,Lightning Charging Cable,2,14.95,05/26/19 18:58,"432 Lincoln St, San Francisco, CA 94016" +202440,ThinkPad Laptop,1,999.99,05/22/19 06:47,"892 Hickory St, Atlanta, GA 30301" +202441,iPhone,1,700,05/31/19 16:07,"745 1st St, Boston, MA 02215" +202441,Lightning Charging Cable,1,14.95,05/31/19 16:07,"745 1st St, Boston, MA 02215" +202442,AAA Batteries (4-pack),1,2.99,05/04/19 22:10,"543 Center St, Seattle, WA 98101" +202443,AAA Batteries (4-pack),1,2.99,05/06/19 21:15,"603 Wilson St, New York City, NY 10001" +202444,Lightning Charging Cable,1,14.95,05/23/19 23:09,"202 Maple St, San Francisco, CA 94016" +202445,Lightning Charging Cable,1,14.95,05/23/19 18:56,"794 Adams St, Seattle, WA 98101" +202446,Apple Airpods Headphones,1,150,05/29/19 08:07,"722 5th St, Los Angeles, CA 90001" +202447,AAA Batteries (4-pack),1,2.99,05/05/19 12:12,"141 Chestnut St, San Francisco, CA 94016" +202448,Google Phone,1,600,05/28/19 11:12,"754 West St, San Francisco, CA 94016" +202449,Wired Headphones,1,11.99,05/08/19 14:59,"955 Chestnut St, Portland, OR 97035" +202450,USB-C Charging Cable,3,11.95,05/25/19 15:20,"254 Meadow St, Boston, MA 02215" +202451,Bose SoundSport Headphones,1,99.99,05/17/19 15:15,"584 10th St, Boston, MA 02215" +202452,USB-C Charging Cable,1,11.95,05/07/19 19:38,"527 Jefferson St, Boston, MA 02215" +202453,Google Phone,1,600,05/21/19 00:25,"279 North St, Los Angeles, CA 90001" +202454,Macbook Pro Laptop,1,1700,05/15/19 12:32,"783 Ridge St, Atlanta, GA 30301" +202455,iPhone,1,700,05/31/19 16:49,"710 Church St, Austin, TX 73301" +202456,Lightning Charging Cable,1,14.95,05/12/19 15:51,"613 Park St, San Francisco, CA 94016" +202457,Bose SoundSport Headphones,1,99.99,05/27/19 09:42,"78 Johnson St, San Francisco, CA 94016" +202458,Bose SoundSport Headphones,1,99.99,05/13/19 01:21,"167 8th St, New York City, NY 10001" +202459,27in 4K Gaming Monitor,1,389.99,05/20/19 10:16,"679 10th St, Los Angeles, CA 90001" +202460,Wired Headphones,1,11.99,05/08/19 19:46,"747 2nd St, Atlanta, GA 30301" +202461,Apple Airpods Headphones,1,150,05/11/19 13:48,"304 Jefferson St, Dallas, TX 75001" +202462,Wired Headphones,1,11.99,05/27/19 19:07,"275 Dogwood St, Boston, MA 02215" +202463,AAA Batteries (4-pack),4,2.99,05/21/19 18:23,"63 Sunset St, Atlanta, GA 30301" +202464,27in 4K Gaming Monitor,1,389.99,05/03/19 18:55,"730 6th St, Los Angeles, CA 90001" +202465,AAA Batteries (4-pack),3,2.99,05/16/19 05:21,"559 12th St, San Francisco, CA 94016" +202466,LG Washing Machine,1,600.0,05/22/19 09:50,"836 8th St, Boston, MA 02215" +202467,27in 4K Gaming Monitor,1,389.99,05/10/19 20:20,"153 Pine St, San Francisco, CA 94016" +202468,Lightning Charging Cable,1,14.95,05/13/19 17:21,"15 Ridge St, Seattle, WA 98101" +202469,iPhone,1,700,05/26/19 12:53,"865 River St, Dallas, TX 75001" +202470,Apple Airpods Headphones,1,150,05/25/19 20:39,"49 Cherry St, Los Angeles, CA 90001" +202471,Flatscreen TV,1,300,05/31/19 09:54,"440 Park St, Los Angeles, CA 90001" +202472,Lightning Charging Cable,1,14.95,05/12/19 13:17,"567 Main St, Portland, OR 97035" +202473,USB-C Charging Cable,1,11.95,05/18/19 08:29,"3 Main St, Boston, MA 02215" +202474,Lightning Charging Cable,1,14.95,05/07/19 17:31,"31 Wilson St, Austin, TX 73301" +202475,ThinkPad Laptop,1,999.99,05/04/19 19:00,"219 Lake St, New York City, NY 10001" +202476,Bose SoundSport Headphones,1,99.99,05/27/19 23:36,"479 Lincoln St, Portland, OR 97035" +202477,USB-C Charging Cable,1,11.95,05/17/19 14:00,"653 Pine St, San Francisco, CA 94016" +202478,Lightning Charging Cable,1,14.95,05/09/19 08:45,"405 Walnut St, San Francisco, CA 94016" +202479,Apple Airpods Headphones,1,150,05/13/19 16:49,"525 13th St, Austin, TX 73301" +202480,USB-C Charging Cable,1,11.95,05/15/19 18:43,"727 Hill St, San Francisco, CA 94016" +202481,Lightning Charging Cable,2,14.95,05/29/19 19:51,"103 Lake St, Dallas, TX 75001" +202482,AA Batteries (4-pack),1,3.84,05/04/19 15:43,"315 Johnson St, Portland, ME 04101" +202483,27in FHD Monitor,1,149.99,05/08/19 11:24,"660 11th St, New York City, NY 10001" +202484,Google Phone,1,600,05/26/19 09:36,"275 Maple St, Portland, OR 97035" +202485,34in Ultrawide Monitor,1,379.99,05/20/19 08:59,"787 South St, San Francisco, CA 94016" +202486,USB-C Charging Cable,1,11.95,05/26/19 11:29,"32 Center St, Austin, TX 73301" +202487,AAA Batteries (4-pack),2,2.99,05/17/19 18:53,"884 Ridge St, Boston, MA 02215" +202488,iPhone,1,700,05/02/19 19:44,"800 Dogwood St, Dallas, TX 75001" +202489,34in Ultrawide Monitor,1,379.99,05/09/19 19:33,"335 Cedar St, Boston, MA 02215" +202490,Apple Airpods Headphones,1,150,05/06/19 17:19,"280 Cherry St, San Francisco, CA 94016" +202491,iPhone,1,700,05/26/19 13:59,"184 10th St, San Francisco, CA 94016" +202492,AA Batteries (4-pack),1,3.84,05/13/19 20:23,"833 9th St, Boston, MA 02215" +202493,Bose SoundSport Headphones,1,99.99,05/24/19 13:52,"268 13th St, San Francisco, CA 94016" +202494,Wired Headphones,1,11.99,05/19/19 17:22,"410 Main St, Dallas, TX 75001" +202495,Flatscreen TV,1,300,05/28/19 16:57,"303 11th St, Dallas, TX 75001" +202496,Lightning Charging Cable,1,14.95,05/10/19 22:42,"760 River St, San Francisco, CA 94016" +202497,ThinkPad Laptop,1,999.99,05/16/19 18:32,"120 Madison St, San Francisco, CA 94016" +202498,AA Batteries (4-pack),1,3.84,05/13/19 19:26,"442 Sunset St, San Francisco, CA 94016" +202499,Wired Headphones,1,11.99,05/06/19 15:27,"186 14th St, Los Angeles, CA 90001" +202500,USB-C Charging Cable,1,11.95,05/29/19 21:51,"725 Center St, Dallas, TX 75001" +202501,iPhone,1,700,05/18/19 18:05,"966 Madison St, Atlanta, GA 30301" +202502,Lightning Charging Cable,1,14.95,05/26/19 13:44,"62 Lincoln St, Dallas, TX 75001" +202503,iPhone,1,700,05/10/19 20:17,"24 Lakeview St, Portland, OR 97035" +202503,Lightning Charging Cable,1,14.95,05/10/19 20:17,"24 Lakeview St, Portland, OR 97035" +202504,27in FHD Monitor,1,149.99,05/14/19 17:59,"701 West St, San Francisco, CA 94016" +202505,AAA Batteries (4-pack),3,2.99,05/29/19 20:29,"551 2nd St, Los Angeles, CA 90001" +202506,Google Phone,1,600,05/12/19 01:41,"109 Meadow St, Austin, TX 73301" +202507,Lightning Charging Cable,1,14.95,05/26/19 14:05,"613 West St, San Francisco, CA 94016" +202508,ThinkPad Laptop,1,999.99,05/21/19 00:57,"562 Pine St, San Francisco, CA 94016" +202509,AA Batteries (4-pack),1,3.84,05/27/19 09:08,"650 Jackson St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +202510,Flatscreen TV,1,300,05/17/19 09:40,"992 Dogwood St, Los Angeles, CA 90001" +202511,Macbook Pro Laptop,1,1700,05/10/19 13:20,"437 Walnut St, New York City, NY 10001" +202512,Wired Headphones,1,11.99,05/19/19 22:17,"290 River St, Portland, OR 97035" +202513,Flatscreen TV,1,300,05/12/19 01:09,"502 Hill St, New York City, NY 10001" +202514,iPhone,1,700,05/29/19 21:03,"952 Dogwood St, Dallas, TX 75001" +202515,AA Batteries (4-pack),1,3.84,05/27/19 02:41,"407 6th St, Atlanta, GA 30301" +202516,AAA Batteries (4-pack),3,2.99,05/03/19 21:07,"610 2nd St, Boston, MA 02215" +202517,AAA Batteries (4-pack),1,2.99,05/31/19 22:50,"582 13th St, Austin, TX 73301" +202518,Wired Headphones,1,11.99,05/16/19 18:18,"588 River St, Los Angeles, CA 90001" +202519,20in Monitor,1,109.99,05/04/19 12:49,"39 Lincoln St, Dallas, TX 75001" +202520,AAA Batteries (4-pack),1,2.99,05/20/19 11:10,"661 Highland St, Dallas, TX 75001" +202521,Wired Headphones,1,11.99,05/22/19 01:46,"134 Church St, Boston, MA 02215" +202522,AA Batteries (4-pack),2,3.84,05/13/19 15:07,"718 West St, Dallas, TX 75001" +202523,AAA Batteries (4-pack),1,2.99,05/10/19 21:41,"536 River St, San Francisco, CA 94016" +202524,Lightning Charging Cable,1,14.95,05/09/19 19:41,"158 Lakeview St, Los Angeles, CA 90001" +202525,Wired Headphones,1,11.99,05/16/19 20:15,"270 Johnson St, Seattle, WA 98101" +202525,Bose SoundSport Headphones,1,99.99,05/16/19 20:15,"270 Johnson St, Seattle, WA 98101" +202526,Wired Headphones,1,11.99,05/15/19 16:35,"757 Center St, New York City, NY 10001" +202527,AAA Batteries (4-pack),1,2.99,05/02/19 21:18,"12 4th St, San Francisco, CA 94016" +202528,Bose SoundSport Headphones,1,99.99,05/24/19 11:12,"416 Wilson St, Boston, MA 02215" +202529,Macbook Pro Laptop,1,1700,05/02/19 15:33,"84 13th St, Atlanta, GA 30301" +202530,Bose SoundSport Headphones,1,99.99,05/27/19 21:36,"159 10th St, San Francisco, CA 94016" +202531,USB-C Charging Cable,3,11.95,05/17/19 11:23,"748 9th St, Los Angeles, CA 90001" +202532,Bose SoundSport Headphones,1,99.99,05/17/19 11:44,"553 Forest St, Seattle, WA 98101" +202533,AAA Batteries (4-pack),1,2.99,05/08/19 09:08,"164 Jackson St, Atlanta, GA 30301" +202534,Flatscreen TV,1,300,05/30/19 19:42,"184 11th St, Seattle, WA 98101" +202535,27in FHD Monitor,1,149.99,05/02/19 04:27,"223 Cherry St, Atlanta, GA 30301" +202536,Flatscreen TV,1,300,05/20/19 22:58,"928 Willow St, San Francisco, CA 94016" +202537,USB-C Charging Cable,1,11.95,05/13/19 20:43,"40 Church St, San Francisco, CA 94016" +202538,USB-C Charging Cable,1,11.95,05/14/19 14:43,"531 Hill St, Dallas, TX 75001" +202539,AAA Batteries (4-pack),1,2.99,05/20/19 16:11,"819 Maple St, Los Angeles, CA 90001" +202540,AAA Batteries (4-pack),2,2.99,05/02/19 20:01,"230 14th St, Seattle, WA 98101" +202541,Lightning Charging Cable,1,14.95,05/28/19 13:03,"258 West St, Dallas, TX 75001" +202542,34in Ultrawide Monitor,1,379.99,05/08/19 09:48,"899 Wilson St, Austin, TX 73301" +202543,Lightning Charging Cable,1,14.95,05/14/19 21:29,"485 Cedar St, Atlanta, GA 30301" +202544,Apple Airpods Headphones,1,150,05/03/19 15:57,"240 North St, Los Angeles, CA 90001" +202545,AAA Batteries (4-pack),1,2.99,05/08/19 18:37,"348 Hickory St, New York City, NY 10001" +202546,34in Ultrawide Monitor,1,379.99,05/11/19 21:40,"80 14th St, Austin, TX 73301" +202547,iPhone,1,700,05/12/19 11:06,"442 Meadow St, Los Angeles, CA 90001" +202548,34in Ultrawide Monitor,1,379.99,05/30/19 10:52,"926 Lincoln St, Los Angeles, CA 90001" +202549,Google Phone,1,600,05/24/19 11:14,"878 11th St, San Francisco, CA 94016" +202550,20in Monitor,1,109.99,05/22/19 09:54,"48 Lakeview St, Los Angeles, CA 90001" +202551,Apple Airpods Headphones,1,150,05/25/19 11:13,"638 2nd St, Los Angeles, CA 90001" +202552,Lightning Charging Cable,1,14.95,05/21/19 08:13,"687 Maple St, Los Angeles, CA 90001" +202553,AA Batteries (4-pack),1,3.84,05/29/19 14:18,"33 12th St, Boston, MA 02215" +202554,AA Batteries (4-pack),1,3.84,05/13/19 21:00,"936 Cherry St, San Francisco, CA 94016" +202555,34in Ultrawide Monitor,1,379.99,05/29/19 08:54,"127 Madison St, San Francisco, CA 94016" +202556,AAA Batteries (4-pack),1,2.99,05/26/19 09:57,"165 Walnut St, Los Angeles, CA 90001" +202557,20in Monitor,1,109.99,05/01/19 23:15,"451 Center St, San Francisco, CA 94016" +202558,27in 4K Gaming Monitor,1,389.99,05/13/19 20:46,"988 River St, Boston, MA 02215" +202559,27in 4K Gaming Monitor,1,389.99,05/19/19 14:46,"392 Elm St, New York City, NY 10001" +202560,Macbook Pro Laptop,1,1700,05/02/19 23:45,"343 Willow St, San Francisco, CA 94016" +202561,AAA Batteries (4-pack),5,2.99,05/22/19 17:51,"1 Main St, Atlanta, GA 30301" +202562,Lightning Charging Cable,1,14.95,05/29/19 19:03,"332 Spruce St, Los Angeles, CA 90001" +202563,ThinkPad Laptop,1,999.99,05/26/19 15:05,"529 Washington St, Los Angeles, CA 90001" +202564,Wired Headphones,1,11.99,05/07/19 11:40,"204 10th St, Los Angeles, CA 90001" +202565,Lightning Charging Cable,2,14.95,05/02/19 14:57,"869 5th St, Los Angeles, CA 90001" +202566,Google Phone,1,600,05/19/19 15:19,"847 Willow St, Portland, ME 04101" +202566,USB-C Charging Cable,1,11.95,05/19/19 15:19,"847 Willow St, Portland, ME 04101" +202567,Lightning Charging Cable,1,14.95,05/24/19 09:49,"51 Maple St, San Francisco, CA 94016" +202568,AA Batteries (4-pack),1,3.84,05/03/19 11:06,"425 Dogwood St, Atlanta, GA 30301" +202569,Wired Headphones,2,11.99,05/22/19 10:24,"803 Lake St, Boston, MA 02215" +202570,AA Batteries (4-pack),1,3.84,05/16/19 18:16,"930 5th St, Atlanta, GA 30301" +202571,Lightning Charging Cable,1,14.95,05/08/19 16:18,"385 Lakeview St, San Francisco, CA 94016" +202572,27in 4K Gaming Monitor,1,389.99,05/23/19 18:19,"473 Spruce St, Boston, MA 02215" +202573,27in FHD Monitor,1,149.99,05/20/19 17:37,"529 Johnson St, Austin, TX 73301" +202574,AAA Batteries (4-pack),2,2.99,05/28/19 12:24,"695 Adams St, Portland, OR 97035" +202575,Flatscreen TV,1,300,05/06/19 07:37,"50 Maple St, Boston, MA 02215" +202576,Apple Airpods Headphones,1,150,05/24/19 14:33,"615 Sunset St, Austin, TX 73301" +202577,Wired Headphones,1,11.99,05/30/19 12:23,"68 Dogwood St, Atlanta, GA 30301" +202578,AAA Batteries (4-pack),1,2.99,05/03/19 17:45,"691 Washington St, Los Angeles, CA 90001" +202579,Wired Headphones,1,11.99,05/25/19 14:17,"703 10th St, Atlanta, GA 30301" +202580,AAA Batteries (4-pack),2,2.99,05/14/19 00:01,"995 Cherry St, San Francisco, CA 94016" +202581,ThinkPad Laptop,1,999.99,05/15/19 19:37,"434 Lake St, San Francisco, CA 94016" +202582,Bose SoundSport Headphones,1,99.99,05/25/19 13:14,"767 Jackson St, Portland, OR 97035" +202583,Apple Airpods Headphones,1,150,05/14/19 19:43,"486 Hickory St, New York City, NY 10001" +202584,27in FHD Monitor,1,149.99,05/18/19 11:29,"444 Highland St, Dallas, TX 75001" +202585,AAA Batteries (4-pack),2,2.99,05/17/19 09:44,"581 Center St, Boston, MA 02215" +202586,USB-C Charging Cable,1,11.95,05/08/19 15:20,"72 5th St, Seattle, WA 98101" +202587,Bose SoundSport Headphones,1,99.99,05/07/19 18:55,"79 5th St, New York City, NY 10001" +202588,AA Batteries (4-pack),1,3.84,05/18/19 16:45,"416 Willow St, Los Angeles, CA 90001" +202589,34in Ultrawide Monitor,1,379.99,05/15/19 18:21,"479 Main St, San Francisco, CA 94016" +202590,Bose SoundSport Headphones,1,99.99,05/30/19 18:54,"278 South St, Los Angeles, CA 90001" +202591,27in 4K Gaming Monitor,1,389.99,05/06/19 22:25,"308 2nd St, Atlanta, GA 30301" +202592,Lightning Charging Cable,2,14.95,05/30/19 05:40,"48 1st St, Dallas, TX 75001" +202593,USB-C Charging Cable,1,11.95,05/11/19 16:05,"302 4th St, San Francisco, CA 94016" +202594,Bose SoundSport Headphones,1,99.99,05/15/19 21:40,"450 Center St, Los Angeles, CA 90001" +202595,AA Batteries (4-pack),2,3.84,05/03/19 20:16,"918 Meadow St, New York City, NY 10001" +202596,Macbook Pro Laptop,1,1700,05/02/19 20:13,"42 Hickory St, Los Angeles, CA 90001" +202597,34in Ultrawide Monitor,1,379.99,05/29/19 13:38,"435 5th St, Atlanta, GA 30301" +202598,USB-C Charging Cable,3,11.95,05/13/19 19:57,"693 Hickory St, Los Angeles, CA 90001" +202599,AA Batteries (4-pack),4,3.84,05/19/19 11:00,"349 14th St, Austin, TX 73301" +202600,AA Batteries (4-pack),1,3.84,05/02/19 09:11,"190 4th St, Dallas, TX 75001" +202601,Bose SoundSport Headphones,1,99.99,05/04/19 08:59,"796 10th St, San Francisco, CA 94016" +202602,AA Batteries (4-pack),1,3.84,05/07/19 19:36,"701 Meadow St, San Francisco, CA 94016" +202603,AAA Batteries (4-pack),1,2.99,05/03/19 13:41,"811 North St, San Francisco, CA 94016" +202604,USB-C Charging Cable,1,11.95,05/30/19 15:18,"895 Main St, Portland, OR 97035" +202605,27in FHD Monitor,1,149.99,05/24/19 08:36,"525 Meadow St, San Francisco, CA 94016" +202606,AAA Batteries (4-pack),1,2.99,05/30/19 13:03,"942 10th St, San Francisco, CA 94016" +202607,20in Monitor,1,109.99,05/25/19 07:27,"555 14th St, Seattle, WA 98101" +202608,AA Batteries (4-pack),1,3.84,05/26/19 16:52,"980 Ridge St, San Francisco, CA 94016" +202609,Bose SoundSport Headphones,1,99.99,05/29/19 13:06,"974 13th St, Portland, OR 97035" +202610,Lightning Charging Cable,1,14.95,05/09/19 13:51,"799 Adams St, New York City, NY 10001" +202611,LG Dryer,1,600.0,05/23/19 11:24,"696 Jackson St, Portland, OR 97035" +202612,Lightning Charging Cable,1,14.95,05/23/19 13:45,"228 12th St, Los Angeles, CA 90001" +202613,USB-C Charging Cable,1,11.95,05/22/19 14:13,"608 Elm St, Boston, MA 02215" +202614,AA Batteries (4-pack),1,3.84,05/17/19 17:37,"479 6th St, Dallas, TX 75001" +202615,AAA Batteries (4-pack),1,2.99,05/12/19 06:54,"105 Pine St, Los Angeles, CA 90001" +202616,iPhone,1,700,05/08/19 19:52,"975 13th St, Boston, MA 02215" +202617,Lightning Charging Cable,1,14.95,05/18/19 19:46,"438 Walnut St, Seattle, WA 98101" +202618,AAA Batteries (4-pack),2,2.99,05/06/19 16:09,"442 Jefferson St, New York City, NY 10001" +202619,AA Batteries (4-pack),1,3.84,05/05/19 16:16,"46 Wilson St, Portland, OR 97035" +202620,Vareebadd Phone,1,400,05/26/19 16:41,"901 13th St, Seattle, WA 98101" +202620,USB-C Charging Cable,1,11.95,05/26/19 16:41,"901 13th St, Seattle, WA 98101" +202621,iPhone,1,700,05/14/19 11:50,"761 Willow St, San Francisco, CA 94016" +202622,AAA Batteries (4-pack),1,2.99,05/27/19 10:40,"96 10th St, Austin, TX 73301" +202623,AA Batteries (4-pack),1,3.84,05/07/19 11:11,"856 Jackson St, Los Angeles, CA 90001" +202624,Lightning Charging Cable,1,14.95,05/20/19 08:24,"608 Park St, San Francisco, CA 94016" +202625,AAA Batteries (4-pack),2,2.99,05/13/19 15:55,"659 Cherry St, San Francisco, CA 94016" +202626,AAA Batteries (4-pack),1,2.99,05/08/19 22:47,"488 Pine St, Atlanta, GA 30301" +202627,Apple Airpods Headphones,1,150,05/17/19 18:36,"96 Walnut St, Seattle, WA 98101" +202628,27in 4K Gaming Monitor,1,389.99,05/20/19 00:39,"729 Maple St, Austin, TX 73301" +202629,Apple Airpods Headphones,1,150,05/07/19 20:17,"145 West St, Portland, OR 97035" +202630,AAA Batteries (4-pack),1,2.99,05/07/19 16:13,"163 South St, Atlanta, GA 30301" +202631,AA Batteries (4-pack),1,3.84,05/16/19 19:03,"857 12th St, San Francisco, CA 94016" +202632,27in 4K Gaming Monitor,1,389.99,05/19/19 12:44,"68 13th St, Los Angeles, CA 90001" +202633,USB-C Charging Cable,1,11.95,05/28/19 21:48,"853 11th St, Austin, TX 73301" +202634,20in Monitor,1,109.99,05/07/19 01:36,"461 9th St, Los Angeles, CA 90001" +202635,Wired Headphones,1,11.99,05/14/19 18:07,"682 Elm St, Dallas, TX 75001" +202636,Bose SoundSport Headphones,1,99.99,05/09/19 09:39,"579 2nd St, San Francisco, CA 94016" +202637,Bose SoundSport Headphones,1,99.99,05/11/19 16:41,"535 Dogwood St, Seattle, WA 98101" +202638,Wired Headphones,1,11.99,05/18/19 17:53,"232 Jefferson St, Austin, TX 73301" +202639,Bose SoundSport Headphones,1,99.99,05/12/19 22:14,"965 Washington St, Portland, OR 97035" +202640,ThinkPad Laptop,1,999.99,05/16/19 08:27,"511 Madison St, Austin, TX 73301" +202641,34in Ultrawide Monitor,1,379.99,05/08/19 22:39,"175 Lake St, Portland, ME 04101" +202642,LG Washing Machine,1,600.0,05/31/19 13:53,"841 Madison St, Boston, MA 02215" +202643,Bose SoundSport Headphones,1,99.99,05/01/19 08:02,"150 Pine St, Portland, OR 97035" +202644,AA Batteries (4-pack),2,3.84,05/08/19 23:18,"475 5th St, Austin, TX 73301" +202645,AAA Batteries (4-pack),3,2.99,05/06/19 20:42,"18 River St, Seattle, WA 98101" +202646,AAA Batteries (4-pack),2,2.99,05/12/19 14:49,"633 Church St, Atlanta, GA 30301" +202647,AA Batteries (4-pack),1,3.84,05/17/19 10:51,"263 Sunset St, Seattle, WA 98101" +202648,Wired Headphones,1,11.99,05/17/19 00:23,"48 Madison St, Boston, MA 02215" +202649,Flatscreen TV,1,300,05/29/19 10:18,"604 Church St, San Francisco, CA 94016" +202650,27in FHD Monitor,1,149.99,05/12/19 19:50,"853 Park St, Los Angeles, CA 90001" +202651,27in 4K Gaming Monitor,1,389.99,05/10/19 12:25,"465 Cherry St, San Francisco, CA 94016" +202652,AAA Batteries (4-pack),1,2.99,05/27/19 09:09,"906 Highland St, San Francisco, CA 94016" +202653,Wired Headphones,1,11.99,05/15/19 20:28,"51 8th St, Portland, OR 97035" +202654,AAA Batteries (4-pack),1,2.99,05/22/19 19:56,"359 River St, San Francisco, CA 94016" +202655,Wired Headphones,1,11.99,05/04/19 15:31,"136 Highland St, Los Angeles, CA 90001" +202656,AA Batteries (4-pack),5,3.84,05/22/19 16:19,"518 Center St, Los Angeles, CA 90001" +202657,Flatscreen TV,1,300,05/09/19 20:17,"210 Washington St, Seattle, WA 98101" +202658,Flatscreen TV,1,300,05/20/19 14:04,"125 Spruce St, San Francisco, CA 94016" +202659,USB-C Charging Cable,1,11.95,05/09/19 13:51,"212 Spruce St, Seattle, WA 98101" +202660,27in FHD Monitor,1,149.99,05/11/19 07:33,"380 Pine St, New York City, NY 10001" +202661,27in 4K Gaming Monitor,1,389.99,05/02/19 19:36,"888 12th St, Portland, ME 04101" +202662,Apple Airpods Headphones,1,150,05/31/19 19:36,"859 Maple St, San Francisco, CA 94016" +202663,AAA Batteries (4-pack),1,2.99,05/25/19 09:03,"184 North St, New York City, NY 10001" +202664,AAA Batteries (4-pack),2,2.99,05/18/19 19:24,"165 4th St, Portland, ME 04101" +202665,AAA Batteries (4-pack),1,2.99,05/03/19 18:08,"44 South St, Boston, MA 02215" +202665,USB-C Charging Cable,1,11.95,05/03/19 18:08,"44 South St, Boston, MA 02215" +202666,AAA Batteries (4-pack),2,2.99,05/05/19 07:24,"765 Johnson St, New York City, NY 10001" +202667,USB-C Charging Cable,1,11.95,05/01/19 19:53,"400 Lake St, Dallas, TX 75001" +202668,Lightning Charging Cable,1,14.95,05/26/19 13:12,"77 Main St, Los Angeles, CA 90001" +202669,USB-C Charging Cable,1,11.95,05/28/19 13:12,"250 12th St, Los Angeles, CA 90001" +202670,Flatscreen TV,1,300,05/21/19 22:12,"111 13th St, Los Angeles, CA 90001" +202671,Wired Headphones,1,11.99,05/07/19 19:59,"967 Park St, Seattle, WA 98101" +202672,Flatscreen TV,1,300,05/28/19 17:34,"156 Washington St, New York City, NY 10001" +202673,AAA Batteries (4-pack),2,2.99,05/29/19 10:22,"754 Lake St, Seattle, WA 98101" +202674,USB-C Charging Cable,1,11.95,05/19/19 02:49,"49 Main St, Portland, OR 97035" +202675,Lightning Charging Cable,1,14.95,05/21/19 12:47,"153 Main St, San Francisco, CA 94016" +202676,Wired Headphones,1,11.99,05/07/19 17:29,"167 Lincoln St, Los Angeles, CA 90001" +202677,AA Batteries (4-pack),2,3.84,05/04/19 20:36,"202 Highland St, Los Angeles, CA 90001" +202678,AA Batteries (4-pack),1,3.84,05/20/19 00:34,"604 Church St, San Francisco, CA 94016" +202679,AA Batteries (4-pack),1,3.84,05/24/19 20:58,"780 9th St, Dallas, TX 75001" +202680,AAA Batteries (4-pack),1,2.99,05/16/19 19:55,"171 Chestnut St, San Francisco, CA 94016" +202681,Wired Headphones,1,11.99,05/14/19 12:11,"61 Meadow St, Seattle, WA 98101" +202682,ThinkPad Laptop,1,999.99,05/29/19 15:33,"2 Dogwood St, Los Angeles, CA 90001" +202683,Bose SoundSport Headphones,1,99.99,05/28/19 15:27,"507 Pine St, Atlanta, GA 30301" +202684,27in FHD Monitor,1,149.99,05/21/19 21:04,"115 West St, Atlanta, GA 30301" +202685,AA Batteries (4-pack),4,3.84,05/06/19 18:11,"302 Church St, Boston, MA 02215" +202685,AAA Batteries (4-pack),1,2.99,05/06/19 18:11,"302 Church St, Boston, MA 02215" +202686,ThinkPad Laptop,1,999.99,05/04/19 18:18,"17 Ridge St, New York City, NY 10001" +202687,Lightning Charging Cable,1,14.95,05/04/19 17:37,"169 Johnson St, Atlanta, GA 30301" +202688,Wired Headphones,1,11.99,05/31/19 09:02,"313 Highland St, Los Angeles, CA 90001" +202689,Wired Headphones,1,11.99,05/12/19 00:30,"927 9th St, Los Angeles, CA 90001" +202690,AA Batteries (4-pack),1,3.84,05/21/19 09:26,"664 Center St, San Francisco, CA 94016" +202691,AAA Batteries (4-pack),1,2.99,05/10/19 08:00,"797 7th St, San Francisco, CA 94016" +202692,Flatscreen TV,1,300,05/31/19 20:13,"773 2nd St, Los Angeles, CA 90001" +202693,Wired Headphones,1,11.99,05/27/19 19:37,"289 Maple St, Portland, OR 97035" +202694,27in 4K Gaming Monitor,1,389.99,05/29/19 12:13,"725 North St, Atlanta, GA 30301" +202695,iPhone,1,700,05/13/19 17:47,"315 Walnut St, San Francisco, CA 94016" +202696,iPhone,1,700,05/17/19 15:15,"146 Lakeview St, Dallas, TX 75001" +202697,AAA Batteries (4-pack),1,2.99,05/15/19 13:19,"823 2nd St, New York City, NY 10001" +202698,ThinkPad Laptop,1,999.99,05/21/19 19:55,"903 South St, New York City, NY 10001" +202699,Bose SoundSport Headphones,1,99.99,05/28/19 11:16,"317 14th St, Atlanta, GA 30301" +202700,AA Batteries (4-pack),1,3.84,05/09/19 10:33,"636 Jackson St, New York City, NY 10001" +202701,Apple Airpods Headphones,1,150,05/20/19 21:51,"708 4th St, Austin, TX 73301" +202702,Vareebadd Phone,1,400,05/27/19 00:48,"242 8th St, New York City, NY 10001" +202702,USB-C Charging Cable,1,11.95,05/27/19 00:48,"242 8th St, New York City, NY 10001" +202703,Google Phone,1,600,05/30/19 03:23,"562 Cedar St, San Francisco, CA 94016" +202704,Bose SoundSport Headphones,1,99.99,05/29/19 17:54,"759 Cherry St, Los Angeles, CA 90001" +202705,AA Batteries (4-pack),1,3.84,05/04/19 12:55,"67 2nd St, Boston, MA 02215" +202706,Lightning Charging Cable,1,14.95,05/16/19 07:39,"226 Lake St, New York City, NY 10001" +202707,27in FHD Monitor,1,149.99,05/11/19 23:17,"902 Meadow St, Atlanta, GA 30301" +202708,Wired Headphones,1,11.99,05/16/19 12:16,"636 4th St, Los Angeles, CA 90001" +202709,ThinkPad Laptop,1,999.99,05/06/19 18:39,"463 Johnson St, Atlanta, GA 30301" +202710,USB-C Charging Cable,1,11.95,05/12/19 23:15,"43 Johnson St, Los Angeles, CA 90001" +202711,Bose SoundSport Headphones,1,99.99,05/18/19 17:33,"327 Willow St, New York City, NY 10001" +202712,Google Phone,1,600,05/30/19 17:43,"174 Ridge St, Austin, TX 73301" +202712,USB-C Charging Cable,1,11.95,05/30/19 17:43,"174 Ridge St, Austin, TX 73301" +202713,Bose SoundSport Headphones,1,99.99,05/21/19 21:15,"147 8th St, Dallas, TX 75001" +202714,AAA Batteries (4-pack),1,2.99,05/09/19 19:58,"125 Spruce St, San Francisco, CA 94016" +202715,AAA Batteries (4-pack),1,2.99,05/23/19 19:23,"786 Lake St, Los Angeles, CA 90001" +202716,Apple Airpods Headphones,1,150,05/09/19 10:24,"831 Maple St, San Francisco, CA 94016" +202717,27in FHD Monitor,1,149.99,05/26/19 10:56,"687 Willow St, Portland, ME 04101" +202718,Wired Headphones,1,11.99,05/15/19 16:24,"735 7th St, Los Angeles, CA 90001" +202719,AA Batteries (4-pack),1,3.84,05/20/19 20:11,"27 Madison St, Los Angeles, CA 90001" +202720,AA Batteries (4-pack),1,3.84,05/26/19 09:09,"739 11th St, Los Angeles, CA 90001" +202721,AA Batteries (4-pack),2,3.84,05/17/19 23:34,"151 9th St, Boston, MA 02215" +202722,USB-C Charging Cable,1,11.95,05/05/19 20:30,"863 4th St, Dallas, TX 75001" +202723,Lightning Charging Cable,1,14.95,05/12/19 19:00,"286 Chestnut St, Los Angeles, CA 90001" +202724,USB-C Charging Cable,1,11.95,05/10/19 09:25,"51 Sunset St, New York City, NY 10001" +202725,34in Ultrawide Monitor,1,379.99,05/18/19 13:30,"274 Dogwood St, New York City, NY 10001" +202726,AAA Batteries (4-pack),1,2.99,05/27/19 06:12,"633 Adams St, New York City, NY 10001" +202727,Lightning Charging Cable,1,14.95,05/10/19 15:39,"227 Ridge St, Boston, MA 02215" +202728,34in Ultrawide Monitor,1,379.99,05/27/19 16:40,"308 Pine St, Portland, OR 97035" +202729,Bose SoundSport Headphones,1,99.99,05/19/19 23:15,"292 Meadow St, Dallas, TX 75001" +202730,AA Batteries (4-pack),2,3.84,05/19/19 08:22,"260 Walnut St, New York City, NY 10001" +202730,27in 4K Gaming Monitor,1,389.99,05/19/19 08:22,"260 Walnut St, New York City, NY 10001" +202731,Lightning Charging Cable,1,14.95,05/13/19 13:36,"529 West St, Portland, OR 97035" +202732,34in Ultrawide Monitor,1,379.99,05/11/19 23:30,"339 Lakeview St, New York City, NY 10001" +202733,Wired Headphones,1,11.99,05/21/19 08:18,"283 Pine St, Austin, TX 73301" +202734,Lightning Charging Cable,1,14.95,05/22/19 18:25,"790 6th St, Seattle, WA 98101" +202735,Bose SoundSport Headphones,1,99.99,05/08/19 20:36,"420 5th St, Boston, MA 02215" +202736,Macbook Pro Laptop,1,1700,05/31/19 14:24,"709 Willow St, San Francisco, CA 94016" +202737,Google Phone,1,600,05/24/19 12:31,"802 Lakeview St, Boston, MA 02215" +202738,27in FHD Monitor,1,149.99,05/29/19 04:03,"490 Lakeview St, Seattle, WA 98101" +202739,AA Batteries (4-pack),2,3.84,05/19/19 04:21,"903 Adams St, Austin, TX 73301" +202740,Flatscreen TV,1,300,05/06/19 14:18,"504 North St, Los Angeles, CA 90001" +202741,AA Batteries (4-pack),1,3.84,05/01/19 17:28,"262 Lake St, San Francisco, CA 94016" +202742,Macbook Pro Laptop,1,1700,05/30/19 13:56,"114 6th St, San Francisco, CA 94016" +202743,Lightning Charging Cable,1,14.95,05/14/19 22:25,"77 Chestnut St, Atlanta, GA 30301" +202744,Apple Airpods Headphones,1,150,05/25/19 18:16,"605 Center St, Atlanta, GA 30301" +202745,AAA Batteries (4-pack),1,2.99,05/31/19 09:16,"785 Maple St, Dallas, TX 75001" +202746,Lightning Charging Cable,1,14.95,05/25/19 15:53,"991 Sunset St, Portland, OR 97035" +202747,Lightning Charging Cable,1,14.95,05/22/19 17:04,"60 4th St, Seattle, WA 98101" +202748,USB-C Charging Cable,1,11.95,05/01/19 11:11,"1 West St, San Francisco, CA 94016" +202749,USB-C Charging Cable,1,11.95,05/16/19 20:53,"404 Lake St, Boston, MA 02215" +202750,Wired Headphones,1,11.99,05/24/19 01:21,"917 Maple St, New York City, NY 10001" +202751,Lightning Charging Cable,1,14.95,05/11/19 09:35,"215 Main St, San Francisco, CA 94016" +202752,Macbook Pro Laptop,1,1700,05/28/19 19:12,"762 Jackson St, Austin, TX 73301" +202753,Lightning Charging Cable,1,14.95,05/27/19 09:27,"559 Hickory St, New York City, NY 10001" +202754,USB-C Charging Cable,1,11.95,05/03/19 13:07,"334 Highland St, New York City, NY 10001" +202755,Lightning Charging Cable,1,14.95,05/02/19 12:35,"688 Chestnut St, Dallas, TX 75001" +202756,Apple Airpods Headphones,1,150,05/28/19 18:52,"666 Johnson St, New York City, NY 10001" +202757,AA Batteries (4-pack),2,3.84,05/13/19 18:29,"389 Elm St, New York City, NY 10001" +202758,AA Batteries (4-pack),2,3.84,05/06/19 12:34,"936 Cherry St, New York City, NY 10001" +202759,34in Ultrawide Monitor,1,379.99,05/31/19 00:20,"740 Meadow St, Seattle, WA 98101" +202760,AAA Batteries (4-pack),2,2.99,05/12/19 20:46,"256 11th St, Boston, MA 02215" +202761,Wired Headphones,1,11.99,05/29/19 19:18,"783 South St, Boston, MA 02215" +202762,USB-C Charging Cable,1,11.95,05/24/19 19:40,"390 Wilson St, Atlanta, GA 30301" +202763,Bose SoundSport Headphones,1,99.99,05/19/19 09:38,"975 Elm St, San Francisco, CA 94016" +202764,AA Batteries (4-pack),1,3.84,05/03/19 22:39,"702 Ridge St, Dallas, TX 75001" +202765,AAA Batteries (4-pack),1,2.99,05/16/19 20:59,"159 9th St, Los Angeles, CA 90001" +202766,USB-C Charging Cable,1,11.95,05/10/19 13:52,"580 Maple St, Boston, MA 02215" +202767,AAA Batteries (4-pack),2,2.99,05/23/19 13:37,"389 Cherry St, Los Angeles, CA 90001" +202768,Google Phone,1,600,05/24/19 08:54,"156 Cedar St, San Francisco, CA 94016" +202769,Bose SoundSport Headphones,1,99.99,05/27/19 18:12,"42 Highland St, New York City, NY 10001" +202770,20in Monitor,1,109.99,05/05/19 15:26,"340 Madison St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +202771,Bose SoundSport Headphones,1,99.99,05/31/19 17:46,"499 Lincoln St, San Francisco, CA 94016" +202772,34in Ultrawide Monitor,1,379.99,05/15/19 11:14,"192 Cherry St, Boston, MA 02215" +202773,USB-C Charging Cable,1,11.95,05/16/19 16:04,"487 Jackson St, Austin, TX 73301" +202774,27in 4K Gaming Monitor,1,389.99,05/20/19 18:58,"70 Park St, Dallas, TX 75001" +202775,Wired Headphones,2,11.99,05/21/19 13:03,"778 Walnut St, Los Angeles, CA 90001" +202776,34in Ultrawide Monitor,1,379.99,05/11/19 15:56,"654 4th St, Boston, MA 02215" +202777,iPhone,1,700,05/27/19 11:42,"478 Maple St, San Francisco, CA 94016" +202777,Lightning Charging Cable,1,14.95,05/27/19 11:42,"478 Maple St, San Francisco, CA 94016" +202777,Wired Headphones,1,11.99,05/27/19 11:42,"478 Maple St, San Francisco, CA 94016" +202778,Wired Headphones,1,11.99,05/25/19 10:06,"959 Meadow St, New York City, NY 10001" +202779,Bose SoundSport Headphones,1,99.99,05/26/19 16:31,"450 Washington St, Dallas, TX 75001" +202780,Wired Headphones,1,11.99,05/15/19 13:36,"974 Hickory St, San Francisco, CA 94016" +202781,USB-C Charging Cable,1,11.95,05/14/19 13:17,"212 Washington St, Boston, MA 02215" +202782,27in FHD Monitor,1,149.99,05/09/19 09:39,"38 2nd St, San Francisco, CA 94016" +202783,Google Phone,2,600,05/01/19 14:28,"93 Willow St, Seattle, WA 98101" +202784,Apple Airpods Headphones,1,150,05/29/19 19:28,"766 Madison St, Los Angeles, CA 90001" +202785,Bose SoundSport Headphones,1,99.99,05/30/19 12:53,"319 10th St, Boston, MA 02215" +202786,AA Batteries (4-pack),1,3.84,05/25/19 22:07,"629 12th St, Portland, OR 97035" +202787,Lightning Charging Cable,2,14.95,05/06/19 13:34,"678 12th St, Boston, MA 02215" +202788,27in FHD Monitor,1,149.99,05/02/19 19:31,"213 9th St, San Francisco, CA 94016" +202789,27in FHD Monitor,1,149.99,05/01/19 12:33,"485 12th St, Dallas, TX 75001" +202790,Flatscreen TV,1,300,05/18/19 23:18,"317 Wilson St, Atlanta, GA 30301" +202791,Bose SoundSport Headphones,1,99.99,05/01/19 23:52,"516 South St, Austin, TX 73301" +202792,27in 4K Gaming Monitor,1,389.99,05/01/19 19:09,"110 River St, Atlanta, GA 30301" +202793,Flatscreen TV,1,300,05/22/19 09:36,"468 South St, Los Angeles, CA 90001" +202794,AA Batteries (4-pack),2,3.84,05/08/19 07:23,"26 Jackson St, Boston, MA 02215" +202795,Apple Airpods Headphones,1,150,05/27/19 07:44,"251 9th St, San Francisco, CA 94016" +202796,Flatscreen TV,1,300,05/28/19 14:19,"914 North St, Dallas, TX 75001" +202796,Apple Airpods Headphones,1,150,05/28/19 14:19,"914 North St, Dallas, TX 75001" +202797,Wired Headphones,2,11.99,05/22/19 17:38,"560 Maple St, Los Angeles, CA 90001" +202798,27in FHD Monitor,1,149.99,05/13/19 14:29,"753 8th St, Los Angeles, CA 90001" +202799,AAA Batteries (4-pack),1,2.99,05/02/19 13:08,"188 Cherry St, New York City, NY 10001" +202800,USB-C Charging Cable,2,11.95,05/07/19 22:27,"82 Sunset St, Atlanta, GA 30301" +202801,Flatscreen TV,1,300,05/10/19 20:20,"172 8th St, Boston, MA 02215" +202802,AA Batteries (4-pack),1,3.84,05/17/19 16:20,"836 Willow St, San Francisco, CA 94016" +202803,27in 4K Gaming Monitor,1,389.99,05/12/19 13:09,"31 Adams St, Dallas, TX 75001" +202804,Lightning Charging Cable,1,14.95,05/05/19 20:52,"821 West St, Dallas, TX 75001" +202805,AAA Batteries (4-pack),1,2.99,05/25/19 12:56,"478 Meadow St, San Francisco, CA 94016" +202806,Apple Airpods Headphones,1,150,05/10/19 19:05,"546 Meadow St, Atlanta, GA 30301" +202807,AAA Batteries (4-pack),2,2.99,05/17/19 13:11,"788 Walnut St, San Francisco, CA 94016" +202808,Wired Headphones,1,11.99,05/16/19 11:06,"210 13th St, New York City, NY 10001" +202809,AAA Batteries (4-pack),1,2.99,05/17/19 21:47,"155 2nd St, San Francisco, CA 94016" +202810,Bose SoundSport Headphones,1,99.99,05/09/19 10:54,"553 Maple St, San Francisco, CA 94016" +202811,Wired Headphones,1,11.99,05/25/19 23:55,"718 Lake St, San Francisco, CA 94016" +202812,Google Phone,1,600,05/16/19 13:45,"149 13th St, San Francisco, CA 94016" +202813,USB-C Charging Cable,1,11.95,05/24/19 22:53,"768 Meadow St, Dallas, TX 75001" +202814,Wired Headphones,1,11.99,05/06/19 19:27,"421 Forest St, Portland, OR 97035" +202815,Lightning Charging Cable,1,14.95,05/04/19 10:08,"952 10th St, Los Angeles, CA 90001" +202816,USB-C Charging Cable,1,11.95,05/19/19 11:34,"29 13th St, Seattle, WA 98101" +202817,USB-C Charging Cable,1,11.95,05/16/19 16:23,"228 Elm St, San Francisco, CA 94016" +202818,Lightning Charging Cable,1,14.95,05/03/19 08:42,"745 Hickory St, Seattle, WA 98101" +202819,Apple Airpods Headphones,1,150,05/04/19 20:49,"479 Lakeview St, San Francisco, CA 94016" +202820,34in Ultrawide Monitor,1,379.99,05/04/19 16:43,"668 Center St, Los Angeles, CA 90001" +202821,Wired Headphones,1,11.99,05/25/19 15:25,"80 2nd St, Atlanta, GA 30301" +202822,USB-C Charging Cable,1,11.95,05/24/19 16:20,"134 1st St, Atlanta, GA 30301" +202823,iPhone,1,700,05/27/19 18:09,"805 Jefferson St, Los Angeles, CA 90001" +202824,Bose SoundSport Headphones,1,99.99,05/15/19 11:56,"278 7th St, Dallas, TX 75001" +202825,Flatscreen TV,1,300,05/18/19 03:15,"661 Ridge St, Boston, MA 02215" +202826,USB-C Charging Cable,1,11.95,05/23/19 19:38,"239 14th St, Atlanta, GA 30301" +202827,20in Monitor,1,109.99,05/07/19 08:13,"172 2nd St, Los Angeles, CA 90001" +202828,34in Ultrawide Monitor,1,379.99,05/03/19 21:31,"583 Jackson St, Boston, MA 02215" +202829,27in 4K Gaming Monitor,1,389.99,05/23/19 09:50,"466 Cedar St, Los Angeles, CA 90001" +202830,USB-C Charging Cable,1,11.95,05/15/19 13:43,"639 Lakeview St, San Francisco, CA 94016" +202831,Lightning Charging Cable,1,14.95,05/23/19 19:35,"685 13th St, Los Angeles, CA 90001" +202832,Lightning Charging Cable,1,14.95,05/13/19 19:44,"642 West St, Boston, MA 02215" +202833,AA Batteries (4-pack),2,3.84,05/08/19 18:24,"798 West St, New York City, NY 10001" +202834,Apple Airpods Headphones,1,150,05/06/19 11:16,"350 Madison St, San Francisco, CA 94016" +202835,27in 4K Gaming Monitor,1,389.99,05/24/19 15:28,"834 Walnut St, Los Angeles, CA 90001" +202836,Lightning Charging Cable,1,14.95,05/17/19 00:40,"903 Dogwood St, San Francisco, CA 94016" +202837,20in Monitor,1,109.99,05/18/19 19:09,"467 Elm St, San Francisco, CA 94016" +202838,USB-C Charging Cable,1,11.95,05/26/19 18:18,"204 Sunset St, Portland, OR 97035" +202839,Wired Headphones,1,11.99,05/14/19 20:19,"608 5th St, Los Angeles, CA 90001" +202840,Bose SoundSport Headphones,1,99.99,05/17/19 18:42,"230 Center St, Dallas, TX 75001" +202841,Bose SoundSport Headphones,1,99.99,05/15/19 08:14,"779 North St, San Francisco, CA 94016" +202842,Lightning Charging Cable,1,14.95,05/09/19 17:45,"61 Walnut St, Atlanta, GA 30301" +202843,USB-C Charging Cable,1,11.95,05/30/19 13:40,"911 Walnut St, Seattle, WA 98101" +202844,AAA Batteries (4-pack),1,2.99,05/08/19 09:43,"764 8th St, Dallas, TX 75001" +202845,Lightning Charging Cable,1,14.95,05/05/19 09:42,"476 7th St, San Francisco, CA 94016" +202846,AAA Batteries (4-pack),1,2.99,05/17/19 06:48,"809 Dogwood St, San Francisco, CA 94016" +202847,Bose SoundSport Headphones,1,99.99,05/26/19 10:00,"470 Lincoln St, Dallas, TX 75001" +202848,AA Batteries (4-pack),1,3.84,05/03/19 00:03,"19 Pine St, New York City, NY 10001" +202849,USB-C Charging Cable,2,11.95,05/26/19 14:20,"520 Willow St, Los Angeles, CA 90001" +202850,AAA Batteries (4-pack),1,2.99,05/07/19 09:17,"857 Ridge St, Austin, TX 73301" +202851,iPhone,1,700,05/16/19 15:27,"217 Cedar St, Portland, OR 97035" +202852,Lightning Charging Cable,1,14.95,05/28/19 18:47,"609 Willow St, New York City, NY 10001" +202853,USB-C Charging Cable,1,11.95,05/06/19 12:46,"977 Meadow St, Los Angeles, CA 90001" +202854,Lightning Charging Cable,1,14.95,05/29/19 23:21,"974 6th St, Los Angeles, CA 90001" +202855,27in FHD Monitor,1,149.99,05/25/19 22:43,"762 Jackson St, Los Angeles, CA 90001" +202856,AA Batteries (4-pack),1,3.84,05/29/19 23:15,"320 Meadow St, Boston, MA 02215" +202857,AA Batteries (4-pack),2,3.84,05/02/19 12:47,"296 Maple St, San Francisco, CA 94016" +202858,Wired Headphones,1,11.99,05/22/19 15:58,"121 Hill St, San Francisco, CA 94016" +202859,ThinkPad Laptop,1,999.99,05/22/19 14:12,"715 Walnut St, San Francisco, CA 94016" +202860,Lightning Charging Cable,1,14.95,05/14/19 21:50,"965 River St, New York City, NY 10001" +202861,Bose SoundSport Headphones,1,99.99,05/12/19 17:19,"918 Main St, San Francisco, CA 94016" +202862,USB-C Charging Cable,1,11.95,05/30/19 07:29,"378 Meadow St, Los Angeles, CA 90001" +202863,27in 4K Gaming Monitor,1,389.99,05/02/19 15:28,"549 West St, Los Angeles, CA 90001" +202864,iPhone,1,700,05/28/19 06:07,"308 Center St, San Francisco, CA 94016" +202865,27in FHD Monitor,1,149.99,05/05/19 22:26,"856 14th St, Portland, OR 97035" +202866,27in FHD Monitor,1,149.99,05/19/19 15:31,"948 Johnson St, New York City, NY 10001" +202867,AAA Batteries (4-pack),2,2.99,05/16/19 14:46,"803 8th St, New York City, NY 10001" +202868,USB-C Charging Cable,1,11.95,05/04/19 09:53,"587 Hill St, San Francisco, CA 94016" +202869,Apple Airpods Headphones,1,150,05/18/19 09:21,"40 Wilson St, San Francisco, CA 94016" +202870,AAA Batteries (4-pack),1,2.99,05/18/19 20:29,"774 9th St, Seattle, WA 98101" +202871,Lightning Charging Cable,1,14.95,05/11/19 22:46,"756 West St, New York City, NY 10001" +202872,Lightning Charging Cable,1,14.95,05/17/19 18:34,"621 7th St, Seattle, WA 98101" +202873,AA Batteries (4-pack),1,3.84,05/15/19 21:05,"533 11th St, Seattle, WA 98101" +202874,Lightning Charging Cable,1,14.95,05/03/19 16:41,"121 Maple St, Los Angeles, CA 90001" +202875,27in FHD Monitor,1,149.99,05/19/19 19:02,"989 South St, Los Angeles, CA 90001" +202876,AA Batteries (4-pack),1,3.84,05/03/19 21:06,"259 Cedar St, San Francisco, CA 94016" +202877,Lightning Charging Cable,1,14.95,05/15/19 18:38,"535 Hill St, Los Angeles, CA 90001" +202878,34in Ultrawide Monitor,1,379.99,05/05/19 23:33,"905 Center St, Los Angeles, CA 90001" +202879,AA Batteries (4-pack),1,3.84,05/01/19 08:17,"414 Spruce St, Atlanta, GA 30301" +202880,Apple Airpods Headphones,1,150,05/06/19 04:33,"264 10th St, Boston, MA 02215" +202881,AA Batteries (4-pack),1,3.84,05/26/19 17:41,"358 Elm St, Seattle, WA 98101" +202882,AA Batteries (4-pack),1,3.84,05/28/19 21:38,"964 Spruce St, Seattle, WA 98101" +202883,iPhone,1,700,05/20/19 21:39,"386 6th St, New York City, NY 10001" +202884,Macbook Pro Laptop,1,1700,05/23/19 12:23,"311 6th St, Los Angeles, CA 90001" +202885,27in FHD Monitor,1,149.99,05/16/19 19:16,"330 11th St, Boston, MA 02215" +202886,Google Phone,1,600,05/25/19 11:22,"240 Park St, San Francisco, CA 94016" +202887,USB-C Charging Cable,1,11.95,05/03/19 14:10,"53 North St, Atlanta, GA 30301" +202888,Wired Headphones,1,11.99,05/08/19 12:19,"833 North St, Atlanta, GA 30301" +202889,Lightning Charging Cable,1,14.95,05/11/19 15:44,"112 Hickory St, Seattle, WA 98101" +202890,Vareebadd Phone,1,400,05/25/19 05:29,"798 Washington St, Boston, MA 02215" +202890,USB-C Charging Cable,1,11.95,05/25/19 05:29,"798 Washington St, Boston, MA 02215" +202891,Lightning Charging Cable,1,14.95,05/27/19 11:08,"758 2nd St, Seattle, WA 98101" +202892,Flatscreen TV,1,300,05/18/19 19:48,"928 Spruce St, New York City, NY 10001" +202893,Google Phone,1,600,05/09/19 22:35,"633 Church St, Los Angeles, CA 90001" +202894,Macbook Pro Laptop,1,1700,05/23/19 19:02,"34 Jefferson St, Atlanta, GA 30301" +202895,27in FHD Monitor,1,149.99,05/03/19 07:11,"19 2nd St, Boston, MA 02215" +202896,Lightning Charging Cable,1,14.95,05/04/19 07:39,"834 Madison St, San Francisco, CA 94016" +202897,Lightning Charging Cable,1,14.95,05/05/19 22:54,"9 Park St, Portland, ME 04101" +202898,Lightning Charging Cable,1,14.95,05/25/19 11:18,"329 Cherry St, Los Angeles, CA 90001" +202899,AAA Batteries (4-pack),1,2.99,05/07/19 05:13,"639 13th St, Atlanta, GA 30301" +202900,AAA Batteries (4-pack),1,2.99,05/08/19 10:47,"368 Church St, Boston, MA 02215" +202901,34in Ultrawide Monitor,1,379.99,05/30/19 12:07,"472 Elm St, Seattle, WA 98101" +202902,Wired Headphones,1,11.99,05/01/19 23:18,"146 9th St, Seattle, WA 98101" +202903,AAA Batteries (4-pack),2,2.99,05/04/19 17:32,"337 10th St, Portland, OR 97035" +202904,LG Washing Machine,1,600.0,05/17/19 13:32,"45 13th St, Austin, TX 73301" +202905,AA Batteries (4-pack),1,3.84,05/14/19 21:30,"282 8th St, New York City, NY 10001" +202906,Lightning Charging Cable,1,14.95,05/21/19 17:50,"250 Adams St, San Francisco, CA 94016" +202907,27in FHD Monitor,1,149.99,05/18/19 07:43,"432 South St, San Francisco, CA 94016" +202908,Wired Headphones,1,11.99,05/30/19 12:26,"425 North St, Los Angeles, CA 90001" +202909,AA Batteries (4-pack),2,3.84,05/20/19 13:05,"568 Wilson St, New York City, NY 10001" +202910,27in FHD Monitor,1,149.99,05/06/19 13:16,"129 Hickory St, San Francisco, CA 94016" +202911,27in FHD Monitor,1,149.99,05/21/19 19:07,"548 Adams St, New York City, NY 10001" +202912,Wired Headphones,1,11.99,05/09/19 20:22,"548 Highland St, Seattle, WA 98101" +202913,AA Batteries (4-pack),2,3.84,05/27/19 15:27,"749 5th St, Austin, TX 73301" +202914,27in 4K Gaming Monitor,1,389.99,05/03/19 16:30,"115 Chestnut St, Dallas, TX 75001" +202915,AA Batteries (4-pack),1,3.84,05/19/19 02:09,"90 Jefferson St, Boston, MA 02215" +202916,Vareebadd Phone,1,400,05/01/19 07:11,"566 2nd St, Dallas, TX 75001" +202917,Apple Airpods Headphones,1,150,05/12/19 04:26,"549 12th St, New York City, NY 10001" +202918,27in FHD Monitor,1,149.99,05/27/19 19:12,"147 2nd St, San Francisco, CA 94016" +202919,AAA Batteries (4-pack),1,2.99,05/08/19 12:44,"923 River St, San Francisco, CA 94016" +202920,AAA Batteries (4-pack),1,2.99,05/27/19 05:59,"824 Church St, San Francisco, CA 94016" +202921,Lightning Charging Cable,1,14.95,05/30/19 00:18,"175 Dogwood St, Dallas, TX 75001" +202922,AAA Batteries (4-pack),1,2.99,05/04/19 09:35,"416 Pine St, New York City, NY 10001" +202923,AAA Batteries (4-pack),1,2.99,05/12/19 21:06,"537 12th St, Portland, OR 97035" +202924,AAA Batteries (4-pack),1,2.99,05/01/19 11:15,"369 Chestnut St, Los Angeles, CA 90001" +202925,USB-C Charging Cable,3,11.95,05/08/19 13:41,"537 Lincoln St, Los Angeles, CA 90001" +202926,AA Batteries (4-pack),1,3.84,05/02/19 18:44,"851 7th St, San Francisco, CA 94016" +202927,Vareebadd Phone,1,400,05/30/19 23:06,"709 13th St, Los Angeles, CA 90001" +202928,AAA Batteries (4-pack),1,2.99,05/30/19 22:47,"902 Elm St, San Francisco, CA 94016" +202929,USB-C Charging Cable,1,11.95,05/17/19 12:15,"719 West St, New York City, NY 10001" +202930,Wired Headphones,1,11.99,05/01/19 16:03,"410 10th St, Dallas, TX 75001" +202931,34in Ultrawide Monitor,1,379.99,05/15/19 22:58,"133 Forest St, Atlanta, GA 30301" +202932,AAA Batteries (4-pack),4,2.99,05/07/19 06:54,"890 South St, San Francisco, CA 94016" +202933,USB-C Charging Cable,1,11.95,05/08/19 13:14,"512 Willow St, Los Angeles, CA 90001" +202934,27in 4K Gaming Monitor,1,389.99,05/29/19 14:07,"513 Walnut St, New York City, NY 10001" +202935,Wired Headphones,1,11.99,05/05/19 19:51,"892 Johnson St, Los Angeles, CA 90001" +202936,27in FHD Monitor,1,149.99,05/26/19 10:32,"322 Pine St, Seattle, WA 98101" +202937,Apple Airpods Headphones,1,150,05/07/19 17:28,"775 Willow St, Austin, TX 73301" +202938,Google Phone,1,600,05/27/19 16:25,"491 North St, Seattle, WA 98101" +202939,27in FHD Monitor,1,149.99,05/22/19 17:54,"348 Madison St, Boston, MA 02215" +202940,AA Batteries (4-pack),2,3.84,05/20/19 09:58,"543 1st St, San Francisco, CA 94016" +202941,Lightning Charging Cable,2,14.95,05/06/19 15:07,"637 9th St, Boston, MA 02215" +202942,Flatscreen TV,1,300,05/23/19 13:56,"907 Washington St, Boston, MA 02215" +202943,USB-C Charging Cable,1,11.95,05/26/19 17:47,"350 Church St, New York City, NY 10001" +202944,Wired Headphones,1,11.99,05/10/19 11:27,"18 Ridge St, Dallas, TX 75001" +202945,iPhone,1,700,05/12/19 08:17,"579 Willow St, New York City, NY 10001" +202946,AAA Batteries (4-pack),1,2.99,05/29/19 23:09,"348 Church St, San Francisco, CA 94016" +202947,Lightning Charging Cable,1,14.95,05/17/19 12:46,"361 1st St, Portland, OR 97035" +202948,AAA Batteries (4-pack),2,2.99,05/29/19 18:24,"901 Jackson St, New York City, NY 10001" +202949,27in FHD Monitor,1,149.99,05/20/19 12:46,"13 Lake St, Los Angeles, CA 90001" +202950,Bose SoundSport Headphones,1,99.99,05/22/19 18:43,"302 Sunset St, San Francisco, CA 94016" +202951,Apple Airpods Headphones,1,150,05/20/19 05:00,"605 Chestnut St, New York City, NY 10001" +202952,27in 4K Gaming Monitor,1,389.99,05/06/19 08:29,"294 Washington St, San Francisco, CA 94016" +202953,Lightning Charging Cable,1,14.95,05/14/19 11:11,"476 River St, Atlanta, GA 30301" +202954,27in 4K Gaming Monitor,1,389.99,05/04/19 12:47,"839 Maple St, Boston, MA 02215" +202955,LG Washing Machine,1,600.0,05/11/19 13:41,"118 11th St, Los Angeles, CA 90001" +202956,iPhone,1,700,05/12/19 18:16,"905 14th St, New York City, NY 10001" +202956,Lightning Charging Cable,1,14.95,05/12/19 18:16,"905 14th St, New York City, NY 10001" +202956,Wired Headphones,1,11.99,05/12/19 18:16,"905 14th St, New York City, NY 10001" +202957,AAA Batteries (4-pack),1,2.99,05/20/19 01:46,"553 Ridge St, New York City, NY 10001" +202958,Lightning Charging Cable,1,14.95,05/08/19 12:33,"22 Meadow St, Boston, MA 02215" +202959,Apple Airpods Headphones,1,150,05/24/19 09:51,"46 4th St, Los Angeles, CA 90001" +202960,Apple Airpods Headphones,1,150,05/10/19 12:37,"943 Maple St, New York City, NY 10001" +202961,20in Monitor,1,109.99,05/31/19 07:05,"187 Johnson St, New York City, NY 10001" +202962,AAA Batteries (4-pack),1,2.99,05/10/19 22:06,"317 Dogwood St, Los Angeles, CA 90001" +202963,AA Batteries (4-pack),1,3.84,05/11/19 18:58,"461 North St, San Francisco, CA 94016" +202964,Apple Airpods Headphones,1,150,05/31/19 19:03,"743 Sunset St, Seattle, WA 98101" +202965,AA Batteries (4-pack),1,3.84,05/11/19 20:03,"231 2nd St, San Francisco, CA 94016" +202966,AA Batteries (4-pack),3,3.84,05/21/19 10:31,"943 Lake St, Portland, OR 97035" +202967,Bose SoundSport Headphones,1,99.99,05/16/19 11:52,"122 4th St, Seattle, WA 98101" +202968,AA Batteries (4-pack),2,3.84,05/13/19 16:17,"283 River St, San Francisco, CA 94016" +202969,Wired Headphones,1,11.99,05/07/19 12:53,"134 4th St, New York City, NY 10001" +202970,Flatscreen TV,1,300,05/25/19 17:45,"742 Highland St, Boston, MA 02215" +202971,Apple Airpods Headphones,1,150,05/18/19 14:25,"616 Meadow St, Seattle, WA 98101" +202972,AA Batteries (4-pack),1,3.84,05/12/19 09:59,"514 Washington St, Portland, OR 97035" +202973,ThinkPad Laptop,1,999.99,05/15/19 10:59,"679 7th St, San Francisco, CA 94016" +202974,Apple Airpods Headphones,1,150,05/25/19 15:11,"456 11th St, Seattle, WA 98101" +202975,Lightning Charging Cable,1,14.95,05/17/19 13:36,"988 4th St, San Francisco, CA 94016" +202976,Lightning Charging Cable,1,14.95,05/15/19 13:01,"316 Church St, San Francisco, CA 94016" +202977,27in FHD Monitor,1,149.99,05/06/19 16:58,"460 5th St, Portland, OR 97035" +202978,AA Batteries (4-pack),1,3.84,05/09/19 12:39,"245 Wilson St, Austin, TX 73301" +202979,AA Batteries (4-pack),1,3.84,05/19/19 20:44,"820 Willow St, Los Angeles, CA 90001" +202980,iPhone,1,700,05/14/19 16:36,"258 11th St, Seattle, WA 98101" +202980,Lightning Charging Cable,1,14.95,05/14/19 16:36,"258 11th St, Seattle, WA 98101" +202981,27in FHD Monitor,1,149.99,05/06/19 12:02,"187 2nd St, Boston, MA 02215" +202982,USB-C Charging Cable,1,11.95,05/21/19 04:53,"283 14th St, San Francisco, CA 94016" +202983,Lightning Charging Cable,1,14.95,05/03/19 10:21,"794 West St, Dallas, TX 75001" +202984,ThinkPad Laptop,1,999.99,05/09/19 19:07,"281 Lakeview St, New York City, NY 10001" +202985,27in 4K Gaming Monitor,1,389.99,05/19/19 14:39,"818 Walnut St, Los Angeles, CA 90001" +202986,Lightning Charging Cable,1,14.95,05/24/19 08:44,"741 Meadow St, Boston, MA 02215" +202987,AAA Batteries (4-pack),1,2.99,05/18/19 10:35,"320 Elm St, New York City, NY 10001" +202988,iPhone,1,700,05/05/19 15:20,"682 Wilson St, Boston, MA 02215" +202989,20in Monitor,1,109.99,05/28/19 11:52,"998 Washington St, Austin, TX 73301" +202990,AA Batteries (4-pack),1,3.84,05/23/19 20:11,"697 Lincoln St, New York City, NY 10001" +202991,Apple Airpods Headphones,1,150,05/18/19 11:34,"833 12th St, Los Angeles, CA 90001" +202992,Lightning Charging Cable,1,14.95,05/04/19 01:25,"104 Church St, Atlanta, GA 30301" +202993,AAA Batteries (4-pack),3,2.99,05/30/19 02:38,"565 Maple St, New York City, NY 10001" +202994,34in Ultrawide Monitor,1,379.99,05/31/19 20:28,"233 Chestnut St, Los Angeles, CA 90001" +202995,AAA Batteries (4-pack),2,2.99,05/22/19 16:44,"622 Elm St, Dallas, TX 75001" +202996,Bose SoundSport Headphones,1,99.99,05/23/19 16:32,"83 Elm St, Los Angeles, CA 90001" +202997,AAA Batteries (4-pack),2,2.99,05/26/19 13:34,"194 Madison St, Austin, TX 73301" +202998,27in FHD Monitor,1,149.99,05/16/19 14:42,"182 7th St, San Francisco, CA 94016" +202999,Bose SoundSport Headphones,1,99.99,05/26/19 13:39,"974 Jackson St, Los Angeles, CA 90001" +203000,AAA Batteries (4-pack),1,2.99,05/27/19 11:06,"462 Willow St, Portland, OR 97035" +203001,Lightning Charging Cable,1,14.95,05/02/19 12:56,"964 9th St, Dallas, TX 75001" +203002,Wired Headphones,1,11.99,05/13/19 09:08,"980 West St, Austin, TX 73301" +203003,Apple Airpods Headphones,1,150,05/06/19 21:37,"332 Washington St, San Francisco, CA 94016" +203004,AAA Batteries (4-pack),2,2.99,05/02/19 22:24,"240 Cherry St, San Francisco, CA 94016" +203005,iPhone,1,700,05/01/19 19:38,"314 Willow St, Boston, MA 02215" +203005,Wired Headphones,1,11.99,05/01/19 19:38,"314 Willow St, Boston, MA 02215" +203006,Macbook Pro Laptop,1,1700,05/12/19 07:37,"587 Hill St, San Francisco, CA 94016" +203007,AAA Batteries (4-pack),1,2.99,05/19/19 01:29,"221 North St, Portland, ME 04101" +203008,Bose SoundSport Headphones,1,99.99,05/05/19 10:51,"817 Ridge St, Boston, MA 02215" +203009,Wired Headphones,1,11.99,05/25/19 17:15,"866 Washington St, New York City, NY 10001" +203010,USB-C Charging Cable,1,11.95,05/11/19 17:45,"212 Park St, Los Angeles, CA 90001" +203011,27in FHD Monitor,1,149.99,05/18/19 18:26,"66 1st St, Atlanta, GA 30301" +203012,USB-C Charging Cable,1,11.95,05/07/19 10:00,"639 Highland St, San Francisco, CA 94016" +203013,iPhone,1,700,05/22/19 12:34,"603 Madison St, Austin, TX 73301" +203014,USB-C Charging Cable,1,11.95,05/24/19 16:05,"707 Highland St, San Francisco, CA 94016" +203015,Wired Headphones,1,11.99,05/03/19 21:31,"116 Pine St, San Francisco, CA 94016" +203016,Wired Headphones,1,11.99,05/02/19 19:56,"884 Lincoln St, Seattle, WA 98101" +203017,34in Ultrawide Monitor,1,379.99,05/22/19 07:54,"752 Jackson St, San Francisco, CA 94016" +203018,Bose SoundSport Headphones,2,99.99,05/08/19 11:54,"535 Wilson St, Seattle, WA 98101" +203018,AA Batteries (4-pack),1,3.84,05/08/19 11:54,"535 Wilson St, Seattle, WA 98101" +203019,Wired Headphones,1,11.99,05/18/19 14:15,"643 Cedar St, Austin, TX 73301" +203020,Lightning Charging Cable,1,14.95,05/05/19 06:22,"904 Park St, San Francisco, CA 94016" +203021,Lightning Charging Cable,1,14.95,05/18/19 08:21,"970 Elm St, San Francisco, CA 94016" +203022,AAA Batteries (4-pack),2,2.99,05/20/19 20:14,"885 Highland St, Los Angeles, CA 90001" +203023,Lightning Charging Cable,1,14.95,05/19/19 06:04,"180 10th St, Boston, MA 02215" +203024,USB-C Charging Cable,2,11.95,05/26/19 14:39,"39 Jackson St, New York City, NY 10001" +203025,Apple Airpods Headphones,1,150,05/17/19 08:54,"777 6th St, San Francisco, CA 94016" +203026,AA Batteries (4-pack),1,3.84,05/20/19 15:56,"791 Main St, Los Angeles, CA 90001" +203027,Apple Airpods Headphones,1,150,05/18/19 11:06,"326 Hickory St, Atlanta, GA 30301" +203028,iPhone,1,700,05/18/19 14:46,"133 4th St, New York City, NY 10001" +203029,Wired Headphones,1,11.99,05/21/19 13:29,"908 5th St, Dallas, TX 75001" +203030,Lightning Charging Cable,1,14.95,05/07/19 18:06,"497 Lake St, Los Angeles, CA 90001" +203031,27in 4K Gaming Monitor,1,389.99,05/14/19 10:00,"97 Hill St, San Francisco, CA 94016" +203032,AA Batteries (4-pack),1,3.84,05/13/19 20:39,"257 Ridge St, Atlanta, GA 30301" +203033,Bose SoundSport Headphones,1,99.99,05/17/19 06:44,"882 Johnson St, Dallas, TX 75001" +203034,Apple Airpods Headphones,1,150,05/27/19 17:27,"82 10th St, San Francisco, CA 94016" +203035,27in 4K Gaming Monitor,1,389.99,05/02/19 08:06,"288 Main St, San Francisco, CA 94016" +203036,AAA Batteries (4-pack),2,2.99,05/26/19 16:35,"961 North St, San Francisco, CA 94016" +203037,27in 4K Gaming Monitor,1,389.99,05/04/19 12:35,"240 Walnut St, Seattle, WA 98101" +203038,AAA Batteries (4-pack),1,2.99,05/22/19 14:49,"907 Park St, New York City, NY 10001" +203039,Bose SoundSport Headphones,1,99.99,05/14/19 21:30,"625 Lake St, Portland, OR 97035" +203040,iPhone,1,700,05/06/19 09:07,"648 Adams St, Portland, OR 97035" +203040,Apple Airpods Headphones,1,150,05/06/19 09:07,"648 Adams St, Portland, OR 97035" +203041,USB-C Charging Cable,1,11.95,05/04/19 16:32,"995 Ridge St, San Francisco, CA 94016" +203042,Wired Headphones,1,11.99,05/24/19 10:27,"715 Cherry St, San Francisco, CA 94016" +203043,Lightning Charging Cable,1,14.95,05/03/19 19:32,"675 8th St, San Francisco, CA 94016" +203044,Lightning Charging Cable,1,14.95,05/24/19 15:35,"984 Main St, Austin, TX 73301" +203045,Flatscreen TV,1,300,05/11/19 18:34,"801 Meadow St, San Francisco, CA 94016" +203046,34in Ultrawide Monitor,1,379.99,05/07/19 13:59,"215 7th St, Seattle, WA 98101" +203047,USB-C Charging Cable,1,11.95,05/23/19 17:32,"504 Dogwood St, Atlanta, GA 30301" +203048,Macbook Pro Laptop,1,1700,05/25/19 11:20,"297 South St, Austin, TX 73301" +203049,AAA Batteries (4-pack),1,2.99,05/07/19 11:33,"185 12th St, San Francisco, CA 94016" +203050,27in FHD Monitor,1,149.99,05/15/19 08:18,"212 Ridge St, Austin, TX 73301" +203051,Wired Headphones,1,11.99,05/27/19 09:58,"216 Adams St, San Francisco, CA 94016" +203052,Bose SoundSport Headphones,1,99.99,05/25/19 08:39,"942 Cedar St, New York City, NY 10001" +203053,AAA Batteries (4-pack),2,2.99,05/15/19 20:10,"586 1st St, New York City, NY 10001" +203054,AA Batteries (4-pack),2,3.84,05/25/19 22:47,"281 Jackson St, Los Angeles, CA 90001" +203055,Vareebadd Phone,1,400,05/18/19 15:09,"680 Elm St, Los Angeles, CA 90001" +203056,Vareebadd Phone,1,400,05/06/19 11:55,"795 13th St, San Francisco, CA 94016" +203057,Wired Headphones,1,11.99,05/25/19 08:17,"490 14th St, Austin, TX 73301" +203058,USB-C Charging Cable,1,11.95,05/19/19 11:37,"300 Hill St, Seattle, WA 98101" +203058,Lightning Charging Cable,1,14.95,05/19/19 11:37,"300 Hill St, Seattle, WA 98101" +203059,Apple Airpods Headphones,1,150,05/23/19 21:19,"327 Lincoln St, San Francisco, CA 94016" +203060,Wired Headphones,1,11.99,05/17/19 11:52,"936 2nd St, Dallas, TX 75001" +203061,AAA Batteries (4-pack),1,2.99,05/09/19 22:01,"606 Cherry St, Atlanta, GA 30301" +203062,Flatscreen TV,1,300,05/28/19 20:21,"910 Lakeview St, San Francisco, CA 94016" +203063,AAA Batteries (4-pack),2,2.99,05/03/19 10:53,"574 Cherry St, Dallas, TX 75001" +203064,ThinkPad Laptop,1,999.99,05/11/19 17:22,"653 North St, Seattle, WA 98101" +203065,Lightning Charging Cable,1,14.95,05/19/19 22:08,"453 Adams St, San Francisco, CA 94016" +203066,AA Batteries (4-pack),1,3.84,05/15/19 10:06,"484 9th St, San Francisco, CA 94016" +203067,Flatscreen TV,1,300,05/23/19 23:33,"889 Lakeview St, Los Angeles, CA 90001" +203068,AAA Batteries (4-pack),1,2.99,05/14/19 17:14,"935 Washington St, San Francisco, CA 94016" +203068,Bose SoundSport Headphones,1,99.99,05/14/19 17:14,"935 Washington St, San Francisco, CA 94016" +203069,Apple Airpods Headphones,1,150,05/19/19 12:58,"127 2nd St, Los Angeles, CA 90001" +203070,AAA Batteries (4-pack),1,2.99,05/11/19 22:51,"344 Sunset St, Boston, MA 02215" +203071,Lightning Charging Cable,1,14.95,05/17/19 12:57,"744 Hill St, New York City, NY 10001" +203072,Apple Airpods Headphones,1,150,05/27/19 12:27,"261 North St, San Francisco, CA 94016" +203073,AA Batteries (4-pack),3,3.84,05/20/19 18:34,"977 6th St, New York City, NY 10001" +203074,AA Batteries (4-pack),1,3.84,05/13/19 11:41,"563 Church St, Boston, MA 02215" +203075,AA Batteries (4-pack),1,3.84,05/19/19 12:02,"241 Jackson St, San Francisco, CA 94016" +203076,USB-C Charging Cable,1,11.95,05/02/19 00:50,"986 14th St, New York City, NY 10001" +203077,Google Phone,1,600,05/07/19 18:25,"633 River St, Los Angeles, CA 90001" +203077,Bose SoundSport Headphones,2,99.99,05/07/19 18:25,"633 River St, Los Angeles, CA 90001" +203078,AA Batteries (4-pack),2,3.84,05/01/19 20:57,"483 12th St, New York City, NY 10001" +203079,34in Ultrawide Monitor,1,379.99,05/10/19 00:32,"228 14th St, Boston, MA 02215" +203079,27in 4K Gaming Monitor,1,389.99,05/10/19 00:32,"228 14th St, Boston, MA 02215" +203080,Lightning Charging Cable,1,14.95,05/23/19 19:10,"680 Forest St, Atlanta, GA 30301" +203081,iPhone,1,700,05/02/19 22:30,"332 Cherry St, Atlanta, GA 30301" +203081,Wired Headphones,1,11.99,05/02/19 22:30,"332 Cherry St, Atlanta, GA 30301" +203082,Vareebadd Phone,1,400,05/23/19 20:09,"164 1st St, New York City, NY 10001" +203083,USB-C Charging Cable,1,11.95,05/06/19 12:16,"390 West St, San Francisco, CA 94016" +203084,27in FHD Monitor,1,149.99,05/28/19 20:52,"547 Chestnut St, San Francisco, CA 94016" +203085,Apple Airpods Headphones,1,150,05/23/19 06:56,"80 Madison St, Los Angeles, CA 90001" +203086,Apple Airpods Headphones,1,150,05/28/19 17:31,"614 Willow St, Boston, MA 02215" +203087,Apple Airpods Headphones,1,150,05/03/19 00:07,"985 Ridge St, New York City, NY 10001" +203088,AA Batteries (4-pack),1,3.84,05/05/19 20:59,"620 Cherry St, New York City, NY 10001" +203089,AA Batteries (4-pack),1,3.84,05/24/19 15:59,"583 13th St, Portland, ME 04101" +203090,AAA Batteries (4-pack),1,2.99,05/13/19 20:59,"528 8th St, San Francisco, CA 94016" +203091,Bose SoundSport Headphones,1,99.99,05/07/19 22:14,"122 Madison St, San Francisco, CA 94016" +203092,Google Phone,1,600,05/09/19 09:19,"206 Wilson St, San Francisco, CA 94016" +203093,27in 4K Gaming Monitor,1,389.99,05/20/19 16:04,"708 Park St, Boston, MA 02215" +203094,27in FHD Monitor,1,149.99,05/08/19 09:21,"424 Maple St, Dallas, TX 75001" +203095,USB-C Charging Cable,1,11.95,05/02/19 13:18,"720 North St, Seattle, WA 98101" +203096,AAA Batteries (4-pack),2,2.99,05/19/19 15:39,"353 Adams St, San Francisco, CA 94016" +203097,Vareebadd Phone,1,400,05/31/19 16:25,"877 Chestnut St, Boston, MA 02215" +203098,AA Batteries (4-pack),1,3.84,05/05/19 21:09,"865 Forest St, New York City, NY 10001" +203099,USB-C Charging Cable,1,11.95,05/19/19 18:02,"233 12th St, Boston, MA 02215" +203100,34in Ultrawide Monitor,1,379.99,05/11/19 15:08,"462 Lakeview St, Atlanta, GA 30301" +203101,AA Batteries (4-pack),1,3.84,05/30/19 10:07,"193 Walnut St, Los Angeles, CA 90001" +203102,Lightning Charging Cable,1,14.95,05/26/19 17:47,"206 Hickory St, Dallas, TX 75001" +203103,AA Batteries (4-pack),1,3.84,05/30/19 19:59,"523 9th St, Portland, OR 97035" +203104,34in Ultrawide Monitor,1,379.99,05/20/19 08:16,"415 Wilson St, Los Angeles, CA 90001" +203105,Wired Headphones,1,11.99,05/18/19 19:26,"686 6th St, Boston, MA 02215" +203106,Lightning Charging Cable,1,14.95,05/15/19 16:05,"691 Elm St, San Francisco, CA 94016" +203107,USB-C Charging Cable,1,11.95,05/17/19 13:17,"296 Johnson St, Dallas, TX 75001" +203108,Macbook Pro Laptop,1,1700,05/06/19 21:39,"831 Center St, San Francisco, CA 94016" +203109,Wired Headphones,1,11.99,05/11/19 09:05,"994 Madison St, Dallas, TX 75001" +203110,AAA Batteries (4-pack),2,2.99,06/01/19 01:46,"49 Wilson St, San Francisco, CA 94016" +203111,AAA Batteries (4-pack),4,2.99,05/16/19 11:39,"733 River St, San Francisco, CA 94016" +203112,Lightning Charging Cable,1,14.95,05/18/19 13:11,"463 Adams St, Boston, MA 02215" +203113,27in 4K Gaming Monitor,1,389.99,05/22/19 16:17,"616 Cherry St, Boston, MA 02215" +203114,34in Ultrawide Monitor,1,379.99,05/30/19 21:57,"56 Meadow St, Los Angeles, CA 90001" +203115,Wired Headphones,1,11.99,05/27/19 00:56,"951 Adams St, Los Angeles, CA 90001" +203116,USB-C Charging Cable,1,11.95,05/30/19 14:06,"272 Meadow St, Dallas, TX 75001" +203117,USB-C Charging Cable,1,11.95,05/25/19 18:47,"353 West St, Seattle, WA 98101" +203118,Bose SoundSport Headphones,1,99.99,05/01/19 19:44,"869 Jackson St, San Francisco, CA 94016" +203119,Lightning Charging Cable,1,14.95,05/30/19 11:41,"763 7th St, Dallas, TX 75001" +203120,Wired Headphones,1,11.99,05/15/19 06:21,"309 Cedar St, Los Angeles, CA 90001" +203121,34in Ultrawide Monitor,1,379.99,05/25/19 12:42,"635 14th St, Boston, MA 02215" +203122,iPhone,1,700,05/08/19 11:05,"745 West St, New York City, NY 10001" +203123,AA Batteries (4-pack),1,3.84,05/07/19 18:30,"562 4th St, Seattle, WA 98101" +203124,AA Batteries (4-pack),1,3.84,05/09/19 14:04,"225 1st St, Los Angeles, CA 90001" +203125,AAA Batteries (4-pack),1,2.99,05/16/19 12:50,"93 4th St, Dallas, TX 75001" +203126,AAA Batteries (4-pack),1,2.99,05/10/19 12:21,"408 11th St, Austin, TX 73301" +203127,AAA Batteries (4-pack),1,2.99,05/05/19 11:39,"100 Lakeview St, Los Angeles, CA 90001" +203128,USB-C Charging Cable,1,11.95,05/06/19 15:40,"714 Cherry St, Dallas, TX 75001" +203129,USB-C Charging Cable,1,11.95,05/02/19 18:43,"653 Lakeview St, Boston, MA 02215" +203130,Apple Airpods Headphones,1,150,05/21/19 20:35,"838 Highland St, San Francisco, CA 94016" +203131,AAA Batteries (4-pack),2,2.99,05/03/19 13:21,"261 Jackson St, Dallas, TX 75001" +203132,Lightning Charging Cable,1,14.95,05/25/19 00:09,"995 13th St, San Francisco, CA 94016" +203133,27in 4K Gaming Monitor,1,389.99,05/19/19 12:36,"915 Walnut St, Boston, MA 02215" +203134,AA Batteries (4-pack),1,3.84,05/15/19 15:33,"113 Lincoln St, Atlanta, GA 30301" +203135,AA Batteries (4-pack),1,3.84,05/18/19 21:04,"322 Cherry St, Seattle, WA 98101" +203136,Lightning Charging Cable,1,14.95,05/06/19 14:38,"154 River St, San Francisco, CA 94016" +203137,Lightning Charging Cable,1,14.95,05/13/19 08:43,"798 Elm St, San Francisco, CA 94016" +203138,AAA Batteries (4-pack),2,2.99,05/17/19 11:04,"842 Cedar St, Atlanta, GA 30301" +203139,Flatscreen TV,1,300,05/02/19 23:30,"26 Johnson St, Seattle, WA 98101" +203140,Apple Airpods Headphones,1,150,05/09/19 18:20,"136 North St, Dallas, TX 75001" +203141,Apple Airpods Headphones,1,150,05/28/19 08:05,"952 7th St, Boston, MA 02215" +203142,20in Monitor,1,109.99,05/15/19 12:00,"661 Lakeview St, San Francisco, CA 94016" +203143,USB-C Charging Cable,2,11.95,05/18/19 16:35,"638 Main St, New York City, NY 10001" +203144,Lightning Charging Cable,1,14.95,05/27/19 12:35,"107 Dogwood St, Seattle, WA 98101" +203145,AA Batteries (4-pack),2,3.84,05/17/19 14:00,"89 Forest St, Boston, MA 02215" +203146,AAA Batteries (4-pack),1,2.99,05/24/19 20:00,"904 Pine St, Atlanta, GA 30301" +203147,Wired Headphones,1,11.99,05/02/19 12:45,"464 10th St, Atlanta, GA 30301" +203148,20in Monitor,1,109.99,05/15/19 14:54,"495 2nd St, Los Angeles, CA 90001" +203149,34in Ultrawide Monitor,1,379.99,05/07/19 16:23,"628 2nd St, Los Angeles, CA 90001" +203150,USB-C Charging Cable,1,11.95,05/30/19 20:29,"338 Lakeview St, Atlanta, GA 30301" +203151,34in Ultrawide Monitor,1,379.99,05/23/19 22:07,"830 Meadow St, Seattle, WA 98101" +203152,AA Batteries (4-pack),1,3.84,05/01/19 17:16,"735 Madison St, Portland, ME 04101" +203153,Bose SoundSport Headphones,1,99.99,05/20/19 09:24,"106 South St, San Francisco, CA 94016" +203154,ThinkPad Laptop,1,999.99,05/11/19 10:59,"227 Pine St, San Francisco, CA 94016" +203155,AA Batteries (4-pack),2,3.84,05/14/19 21:34,"726 Chestnut St, San Francisco, CA 94016" +203156,AA Batteries (4-pack),1,3.84,05/28/19 09:44,"520 Wilson St, San Francisco, CA 94016" +203157,iPhone,1,700,05/24/19 14:00,"923 Lincoln St, San Francisco, CA 94016" +203158,34in Ultrawide Monitor,1,379.99,05/07/19 22:32,"339 Walnut St, Dallas, TX 75001" +203159,AAA Batteries (4-pack),2,2.99,05/11/19 11:56,"80 2nd St, New York City, NY 10001" +203160,Wired Headphones,1,11.99,05/15/19 21:32,"284 Pine St, San Francisco, CA 94016" +203161,20in Monitor,1,109.99,05/01/19 09:56,"199 Cedar St, New York City, NY 10001" +203162,34in Ultrawide Monitor,1,379.99,05/22/19 18:47,"257 Washington St, Los Angeles, CA 90001" +203163,Wired Headphones,1,11.99,05/05/19 13:00,"911 Sunset St, San Francisco, CA 94016" +203164,27in FHD Monitor,1,149.99,05/14/19 22:21,"942 Johnson St, San Francisco, CA 94016" +203165,AAA Batteries (4-pack),3,2.99,05/14/19 08:52,"596 8th St, Atlanta, GA 30301" +203166,Lightning Charging Cable,1,14.95,05/29/19 22:01,"500 Wilson St, New York City, NY 10001" +203167,AAA Batteries (4-pack),1,2.99,05/11/19 13:10,"725 Cedar St, Atlanta, GA 30301" +203168,34in Ultrawide Monitor,1,379.99,05/14/19 14:57,"830 Hill St, San Francisco, CA 94016" +203169,Lightning Charging Cable,1,14.95,05/21/19 17:09,"333 Meadow St, San Francisco, CA 94016" +203170,AA Batteries (4-pack),1,3.84,05/30/19 16:05,"817 Forest St, Dallas, TX 75001" +203171,34in Ultrawide Monitor,1,379.99,05/31/19 13:37,"374 North St, Portland, OR 97035" +203172,iPhone,1,700,05/31/19 10:26,"589 5th St, Los Angeles, CA 90001" +203173,AA Batteries (4-pack),1,3.84,05/28/19 12:26,"864 Sunset St, Portland, OR 97035" +203174,ThinkPad Laptop,1,999.99,05/23/19 17:53,"894 Hill St, Boston, MA 02215" +203175,AA Batteries (4-pack),2,3.84,05/13/19 08:02,"206 Washington St, New York City, NY 10001" +203176,AAA Batteries (4-pack),1,2.99,05/21/19 11:32,"795 Jackson St, San Francisco, CA 94016" +203177,Wired Headphones,1,11.99,05/19/19 14:25,"886 Walnut St, San Francisco, CA 94016" +203178,AA Batteries (4-pack),1,3.84,05/22/19 16:43,"131 13th St, San Francisco, CA 94016" +203179,34in Ultrawide Monitor,1,379.99,05/18/19 07:07,"688 Forest St, Dallas, TX 75001" +203180,AAA Batteries (4-pack),1,2.99,05/31/19 02:58,"209 Washington St, Atlanta, GA 30301" +203181,AAA Batteries (4-pack),3,2.99,05/13/19 14:03,"428 Wilson St, Portland, ME 04101" +203182,USB-C Charging Cable,1,11.95,05/03/19 10:50,"683 Johnson St, San Francisco, CA 94016" +203183,USB-C Charging Cable,1,11.95,05/31/19 20:35,"314 8th St, New York City, NY 10001" +203184,27in 4K Gaming Monitor,1,389.99,05/28/19 10:24,"691 1st St, New York City, NY 10001" +203185,Flatscreen TV,1,300,05/23/19 11:30,"717 Lakeview St, Los Angeles, CA 90001" +203186,iPhone,1,700,05/15/19 20:06,"145 Maple St, Atlanta, GA 30301" +203187,Google Phone,1,600,05/31/19 13:29,"477 Sunset St, Los Angeles, CA 90001" +203188,27in 4K Gaming Monitor,1,389.99,05/27/19 01:59,"939 River St, Austin, TX 73301" +203189,USB-C Charging Cable,1,11.95,05/05/19 09:07,"272 Chestnut St, Seattle, WA 98101" +203190,Apple Airpods Headphones,1,150,05/15/19 12:18,"657 Main St, Dallas, TX 75001" +203191,Wired Headphones,2,11.99,05/01/19 19:58,"9 Washington St, Dallas, TX 75001" +203192,20in Monitor,1,109.99,05/03/19 13:56,"509 Center St, Boston, MA 02215" +203193,Wired Headphones,2,11.99,05/05/19 14:02,"192 Dogwood St, San Francisco, CA 94016" +203194,AA Batteries (4-pack),1,3.84,05/30/19 03:11,"235 13th St, New York City, NY 10001" +203195,USB-C Charging Cable,1,11.95,05/30/19 21:15,"932 Sunset St, Austin, TX 73301" +203196,USB-C Charging Cable,1,11.95,05/24/19 18:16,"645 4th St, Atlanta, GA 30301" +203197,USB-C Charging Cable,2,11.95,05/08/19 01:02,"912 Washington St, Atlanta, GA 30301" +203198,Lightning Charging Cable,1,14.95,05/02/19 07:57,"469 14th St, Los Angeles, CA 90001" +203199,Apple Airpods Headphones,1,150,05/07/19 18:15,"902 South St, New York City, NY 10001" +203200,Wired Headphones,1,11.99,05/18/19 00:49,"988 Willow St, New York City, NY 10001" +203201,Wired Headphones,1,11.99,05/15/19 06:31,"968 Park St, Los Angeles, CA 90001" +203202,iPhone,1,700,05/05/19 21:38,"149 12th St, Atlanta, GA 30301" +203203,AA Batteries (4-pack),1,3.84,05/16/19 15:32,"244 13th St, San Francisco, CA 94016" +203204,USB-C Charging Cable,1,11.95,05/05/19 13:31,"808 Adams St, Los Angeles, CA 90001" +203205,AA Batteries (4-pack),1,3.84,05/10/19 12:17,"614 14th St, Los Angeles, CA 90001" +203206,Macbook Pro Laptop,1,1700,05/05/19 14:25,"916 Highland St, Portland, OR 97035" +203207,Wired Headphones,1,11.99,05/03/19 17:39,"70 7th St, Austin, TX 73301" +203208,34in Ultrawide Monitor,1,379.99,05/08/19 21:57,"29 Hickory St, Seattle, WA 98101" +203209,Flatscreen TV,1,300,05/22/19 09:25,"589 Highland St, San Francisco, CA 94016" +203210,USB-C Charging Cable,1,11.95,05/20/19 22:01,"382 Johnson St, Boston, MA 02215" +203211,USB-C Charging Cable,1,11.95,05/01/19 11:03,"926 Main St, Portland, OR 97035" +203212,27in 4K Gaming Monitor,1,389.99,05/23/19 16:38,"337 7th St, Dallas, TX 75001" +203213,Bose SoundSport Headphones,1,99.99,05/24/19 16:16,"782 Lakeview St, San Francisco, CA 94016" +203214,Lightning Charging Cable,2,14.95,05/10/19 20:23,"435 Chestnut St, New York City, NY 10001" +203215,34in Ultrawide Monitor,1,379.99,05/22/19 07:37,"613 Pine St, Atlanta, GA 30301" +203216,27in 4K Gaming Monitor,1,389.99,05/29/19 12:28,"404 Forest St, San Francisco, CA 94016" +203217,Macbook Pro Laptop,1,1700,05/30/19 23:33,"359 Adams St, Boston, MA 02215" +203218,AAA Batteries (4-pack),1,2.99,05/26/19 18:11,"339 Jefferson St, San Francisco, CA 94016" +203219,AA Batteries (4-pack),2,3.84,05/05/19 07:54,"723 Wilson St, Atlanta, GA 30301" +203220,AA Batteries (4-pack),2,3.84,05/26/19 16:11,"542 12th St, Boston, MA 02215" +203221,Lightning Charging Cable,1,14.95,05/27/19 19:57,"300 Hill St, Los Angeles, CA 90001" +203222,AAA Batteries (4-pack),1,2.99,05/30/19 15:36,"948 Jackson St, Los Angeles, CA 90001" +203223,34in Ultrawide Monitor,1,379.99,05/12/19 19:13,"1 Meadow St, Dallas, TX 75001" +203224,USB-C Charging Cable,1,11.95,05/09/19 16:46,"920 4th St, Boston, MA 02215" +203225,Apple Airpods Headphones,1,150,05/31/19 14:04,"932 Jackson St, New York City, NY 10001" +203226,Apple Airpods Headphones,1,150,05/20/19 10:10,"793 Ridge St, New York City, NY 10001" +203227,Wired Headphones,1,11.99,05/21/19 17:03,"241 7th St, San Francisco, CA 94016" +203228,Wired Headphones,1,11.99,05/14/19 15:50,"56 Ridge St, Los Angeles, CA 90001" +203229,USB-C Charging Cable,1,11.95,05/17/19 16:25,"209 4th St, San Francisco, CA 94016" +203230,AA Batteries (4-pack),1,3.84,05/10/19 13:33,"215 6th St, Dallas, TX 75001" +203231,USB-C Charging Cable,1,11.95,05/09/19 12:01,"686 Main St, Atlanta, GA 30301" +203232,Wired Headphones,1,11.99,05/01/19 18:06,"797 Hickory St, Portland, OR 97035" +203233,AA Batteries (4-pack),1,3.84,05/04/19 13:35,"149 Jackson St, Boston, MA 02215" +203234,Lightning Charging Cable,2,14.95,05/19/19 12:42,"342 2nd St, Boston, MA 02215" +203235,USB-C Charging Cable,1,11.95,05/29/19 16:25,"122 5th St, Boston, MA 02215" +203236,Macbook Pro Laptop,1,1700,05/12/19 15:13,"415 Hill St, San Francisco, CA 94016" +203237,AA Batteries (4-pack),2,3.84,05/08/19 17:28,"846 Lincoln St, San Francisco, CA 94016" +203238,USB-C Charging Cable,1,11.95,05/07/19 19:26,"893 Jefferson St, Atlanta, GA 30301" +203239,Apple Airpods Headphones,1,150,05/21/19 10:04,"182 5th St, San Francisco, CA 94016" +203240,Apple Airpods Headphones,1,150,05/28/19 12:07,"853 Ridge St, Los Angeles, CA 90001" +203241,USB-C Charging Cable,1,11.95,05/03/19 13:28,"138 North St, New York City, NY 10001" +203242,Apple Airpods Headphones,1,150,05/22/19 22:32,"544 2nd St, Atlanta, GA 30301" +203243,USB-C Charging Cable,1,11.95,05/08/19 08:37,"612 West St, San Francisco, CA 94016" +203244,27in FHD Monitor,1,149.99,05/12/19 15:00,"238 Park St, New York City, NY 10001" +203245,Apple Airpods Headphones,1,150,05/19/19 21:36,"124 Walnut St, San Francisco, CA 94016" +203246,AAA Batteries (4-pack),1,2.99,05/19/19 22:10,"682 Johnson St, Dallas, TX 75001" +203247,Apple Airpods Headphones,1,150,05/15/19 21:04,"208 Johnson St, Seattle, WA 98101" +203248,Apple Airpods Headphones,1,150,05/21/19 18:01,"478 6th St, Portland, ME 04101" +203249,Apple Airpods Headphones,1,150,05/17/19 20:03,"519 Dogwood St, San Francisco, CA 94016" +203250,27in 4K Gaming Monitor,1,389.99,05/26/19 22:52,"629 Hill St, New York City, NY 10001" +203251,USB-C Charging Cable,1,11.95,05/11/19 23:38,"450 Jackson St, Seattle, WA 98101" +203252,20in Monitor,1,109.99,05/09/19 16:38,"155 Main St, Los Angeles, CA 90001" +203253,Macbook Pro Laptop,1,1700,05/10/19 10:55,"975 Johnson St, Los Angeles, CA 90001" +203254,Wired Headphones,2,11.99,05/20/19 22:56,"235 Spruce St, New York City, NY 10001" +203255,USB-C Charging Cable,1,11.95,05/28/19 18:21,"578 Walnut St, Portland, OR 97035" +203256,ThinkPad Laptop,1,999.99,05/07/19 10:06,"783 1st St, Dallas, TX 75001" +203257,Bose SoundSport Headphones,1,99.99,05/16/19 21:23,"789 Jefferson St, Los Angeles, CA 90001" +203258,AAA Batteries (4-pack),1,2.99,05/17/19 15:14,"272 12th St, New York City, NY 10001" +203259,AAA Batteries (4-pack),2,2.99,05/21/19 00:59,"913 West St, New York City, NY 10001" +203260,27in 4K Gaming Monitor,1,389.99,05/26/19 18:25,"65 5th St, Atlanta, GA 30301" +203261,27in FHD Monitor,1,149.99,05/24/19 01:10,"808 Highland St, Los Angeles, CA 90001" +203262,Lightning Charging Cable,1,14.95,05/21/19 21:33,"749 13th St, Boston, MA 02215" +203263,Bose SoundSport Headphones,1,99.99,05/05/19 16:00,"115 Chestnut St, San Francisco, CA 94016" +203264,AA Batteries (4-pack),1,3.84,05/18/19 10:28,"844 8th St, Boston, MA 02215" +203265,AA Batteries (4-pack),1,3.84,05/19/19 22:21,"480 Maple St, Boston, MA 02215" +203266,USB-C Charging Cable,1,11.95,05/21/19 16:58,"865 7th St, Atlanta, GA 30301" +203267,34in Ultrawide Monitor,1,379.99,05/26/19 10:02,"510 13th St, Seattle, WA 98101" +203268,27in 4K Gaming Monitor,1,389.99,05/09/19 19:26,"127 Willow St, San Francisco, CA 94016" +203269,Flatscreen TV,1,300,05/04/19 23:07,"663 Jackson St, Seattle, WA 98101" +203270,Bose SoundSport Headphones,1,99.99,05/10/19 23:30,"235 Cedar St, Seattle, WA 98101" +203271,Wired Headphones,1,11.99,05/13/19 19:33,"466 Hill St, Atlanta, GA 30301" +203272,USB-C Charging Cable,1,11.95,05/19/19 11:57,"177 Wilson St, Los Angeles, CA 90001" +203273,Apple Airpods Headphones,1,150,05/25/19 23:38,"438 8th St, New York City, NY 10001" +203274,27in 4K Gaming Monitor,1,389.99,05/23/19 20:05,"111 Jackson St, San Francisco, CA 94016" +203275,ThinkPad Laptop,1,999.99,05/20/19 15:39,"290 Madison St, New York City, NY 10001" +203276,20in Monitor,1,109.99,05/12/19 20:47,"947 West St, New York City, NY 10001" +203277,Bose SoundSport Headphones,1,99.99,05/08/19 06:53,"35 Lincoln St, Boston, MA 02215" +203278,USB-C Charging Cable,1,11.95,05/28/19 18:44,"413 7th St, San Francisco, CA 94016" +203279,Wired Headphones,1,11.99,05/07/19 11:17,"633 Elm St, New York City, NY 10001" +203280,Lightning Charging Cable,1,14.95,05/30/19 07:51,"483 6th St, San Francisco, CA 94016" +203281,Bose SoundSport Headphones,1,99.99,05/27/19 05:45,"615 Forest St, Portland, OR 97035" +203282,USB-C Charging Cable,1,11.95,05/03/19 15:42,"55 9th St, San Francisco, CA 94016" +203283,USB-C Charging Cable,1,11.95,05/07/19 00:01,"635 Forest St, Dallas, TX 75001" +203284,Wired Headphones,1,11.99,05/12/19 08:03,"991 Wilson St, Los Angeles, CA 90001" +203285,AAA Batteries (4-pack),1,2.99,05/04/19 13:14,"171 Johnson St, San Francisco, CA 94016" +203286,USB-C Charging Cable,1,11.95,05/06/19 15:05,"326 Adams St, Los Angeles, CA 90001" +203287,Bose SoundSport Headphones,1,99.99,05/26/19 23:00,"860 River St, Boston, MA 02215" +203288,Apple Airpods Headphones,1,150,05/08/19 15:31,"822 Maple St, San Francisco, CA 94016" +203289,Lightning Charging Cable,1,14.95,05/15/19 10:36,"87 Pine St, Dallas, TX 75001" +203290,Lightning Charging Cable,1,14.95,05/27/19 11:10,"889 Johnson St, Boston, MA 02215" +203291,USB-C Charging Cable,2,11.95,05/21/19 21:52,"238 Elm St, San Francisco, CA 94016" +203292,Macbook Pro Laptop,1,1700,05/12/19 02:17,"514 Center St, New York City, NY 10001" +203293,Bose SoundSport Headphones,1,99.99,05/07/19 12:01,"59 Highland St, New York City, NY 10001" +203294,27in 4K Gaming Monitor,1,389.99,05/23/19 11:09,"668 13th St, Los Angeles, CA 90001" +203295,Wired Headphones,2,11.99,05/28/19 14:56,"202 Willow St, New York City, NY 10001" +203296,iPhone,1,700,05/02/19 13:27,"262 South St, Portland, OR 97035" +203297,Lightning Charging Cable,1,14.95,05/07/19 21:51,"585 14th St, Boston, MA 02215" +203298,AAA Batteries (4-pack),2,2.99,05/23/19 09:57,"973 Cedar St, New York City, NY 10001" +203299,Bose SoundSport Headphones,1,99.99,05/17/19 20:20,"607 North St, Atlanta, GA 30301" +203300,Bose SoundSport Headphones,1,99.99,05/05/19 06:43,"443 13th St, Boston, MA 02215" +203301,20in Monitor,1,109.99,05/04/19 00:49,"426 6th St, San Francisco, CA 94016" +203302,34in Ultrawide Monitor,1,379.99,05/28/19 22:47,"650 Center St, Dallas, TX 75001" +203303,AAA Batteries (4-pack),2,2.99,05/19/19 10:45,"438 Spruce St, Seattle, WA 98101" +203304,AAA Batteries (4-pack),2,2.99,05/26/19 12:50,"634 Church St, New York City, NY 10001" +203305,iPhone,1,700,05/27/19 22:23,"24 Elm St, Boston, MA 02215" +203306,USB-C Charging Cable,1,11.95,05/18/19 17:48,"281 Washington St, New York City, NY 10001" +203307,Wired Headphones,1,11.99,05/28/19 11:37,"644 Hill St, Atlanta, GA 30301" +203308,USB-C Charging Cable,1,11.95,05/22/19 07:41,"919 Madison St, San Francisco, CA 94016" +203309,AA Batteries (4-pack),3,3.84,05/16/19 16:08,"979 Jefferson St, Los Angeles, CA 90001" +203310,27in FHD Monitor,1,149.99,05/14/19 06:56,"736 12th St, Portland, OR 97035" +203311,27in FHD Monitor,1,149.99,05/04/19 19:37,"490 Lakeview St, Dallas, TX 75001" +203312,Lightning Charging Cable,1,14.95,05/22/19 12:17,"848 12th St, Los Angeles, CA 90001" +203313,20in Monitor,1,109.99,05/18/19 18:56,"574 Cherry St, Los Angeles, CA 90001" +203314,AAA Batteries (4-pack),1,2.99,05/12/19 23:46,"337 Highland St, Seattle, WA 98101" +203315,USB-C Charging Cable,1,11.95,05/18/19 10:26,"747 Jackson St, San Francisco, CA 94016" +203316,Apple Airpods Headphones,1,150,05/27/19 16:43,"428 4th St, Austin, TX 73301" +203317,iPhone,1,700,05/03/19 17:49,"60 Lake St, Los Angeles, CA 90001" +203318,Bose SoundSport Headphones,1,99.99,05/14/19 13:58,"797 Center St, Atlanta, GA 30301" +203319,AAA Batteries (4-pack),1,2.99,05/07/19 17:29,"387 Walnut St, New York City, NY 10001" +203320,USB-C Charging Cable,1,11.95,05/09/19 19:57,"953 Cherry St, Portland, OR 97035" +203321,AA Batteries (4-pack),1,3.84,05/29/19 21:55,"895 Cherry St, New York City, NY 10001" +203322,USB-C Charging Cable,1,11.95,05/28/19 13:00,"70 1st St, Boston, MA 02215" +203323,Lightning Charging Cable,1,14.95,05/04/19 22:44,"484 4th St, Los Angeles, CA 90001" +203324,27in FHD Monitor,1,149.99,05/29/19 19:55,"648 12th St, Los Angeles, CA 90001" +203325,AA Batteries (4-pack),1,3.84,05/06/19 12:22,"532 Dogwood St, Austin, TX 73301" +203326,AAA Batteries (4-pack),3,2.99,05/02/19 15:39,"59 Walnut St, Los Angeles, CA 90001" +203327,Wired Headphones,1,11.99,05/20/19 08:10,"686 Lakeview St, New York City, NY 10001" +203328,Lightning Charging Cable,1,14.95,05/30/19 11:27,"651 Johnson St, San Francisco, CA 94016" +203329,AA Batteries (4-pack),1,3.84,05/05/19 23:35,"76 Dogwood St, San Francisco, CA 94016" +203330,Bose SoundSport Headphones,1,99.99,05/27/19 22:11,"967 Hickory St, Seattle, WA 98101" +203331,27in 4K Gaming Monitor,1,389.99,05/05/19 17:18,"200 Spruce St, San Francisco, CA 94016" +203332,Flatscreen TV,1,300,05/04/19 22:47,"854 Cedar St, Portland, OR 97035" +203333,Lightning Charging Cable,1,14.95,05/09/19 22:03,"163 Sunset St, New York City, NY 10001" +203334,Bose SoundSport Headphones,1,99.99,05/27/19 00:30,"17 14th St, Los Angeles, CA 90001" +203335,Wired Headphones,1,11.99,05/04/19 18:57,"823 Madison St, Seattle, WA 98101" +203336,27in FHD Monitor,1,149.99,05/21/19 19:14,"737 Highland St, San Francisco, CA 94016" +203337,AA Batteries (4-pack),2,3.84,05/20/19 13:51,"406 West St, Austin, TX 73301" +203338,AAA Batteries (4-pack),1,2.99,05/12/19 06:23,"482 Johnson St, San Francisco, CA 94016" +203339,USB-C Charging Cable,1,11.95,05/14/19 16:11,"418 13th St, Boston, MA 02215" +203340,Apple Airpods Headphones,1,150,05/29/19 17:09,"635 Lincoln St, Boston, MA 02215" +203341,Wired Headphones,1,11.99,05/19/19 14:04,"977 North St, Atlanta, GA 30301" +203342,Apple Airpods Headphones,1,150,05/07/19 16:14,"181 14th St, Los Angeles, CA 90001" +203343,34in Ultrawide Monitor,1,379.99,05/24/19 20:03,"298 Johnson St, San Francisco, CA 94016" +203344,Wired Headphones,1,11.99,05/04/19 14:50,"315 Lake St, San Francisco, CA 94016" +203345,27in FHD Monitor,1,149.99,05/08/19 21:24,"424 2nd St, Portland, OR 97035" +203346,Apple Airpods Headphones,1,150,05/06/19 14:59,"99 Main St, Atlanta, GA 30301" +203347,Lightning Charging Cable,1,14.95,05/23/19 23:05,"898 Lincoln St, Dallas, TX 75001" +203348,Flatscreen TV,1,300,05/26/19 00:56,"717 8th St, Boston, MA 02215" +203349,Macbook Pro Laptop,1,1700,05/26/19 09:55,"156 Forest St, San Francisco, CA 94016" +203350,ThinkPad Laptop,1,999.99,05/07/19 12:53,"547 10th St, Seattle, WA 98101" +203351,27in FHD Monitor,1,149.99,05/19/19 01:01,"311 Maple St, Los Angeles, CA 90001" +203352,34in Ultrawide Monitor,1,379.99,05/13/19 19:25,"824 Jackson St, Dallas, TX 75001" +203353,34in Ultrawide Monitor,1,379.99,05/21/19 19:48,"434 Lincoln St, Boston, MA 02215" +203354,USB-C Charging Cable,1,11.95,05/16/19 07:54,"65 Walnut St, New York City, NY 10001" +203355,Wired Headphones,1,11.99,05/01/19 18:01,"94 Maple St, Dallas, TX 75001" +203356,AAA Batteries (4-pack),1,2.99,05/20/19 22:20,"982 Maple St, San Francisco, CA 94016" +203357,Lightning Charging Cable,1,14.95,05/04/19 19:25,"888 Hickory St, New York City, NY 10001" +203358,Lightning Charging Cable,3,14.95,05/16/19 23:18,"184 Johnson St, Seattle, WA 98101" +203359,Flatscreen TV,1,300,05/13/19 08:03,"854 Hickory St, Seattle, WA 98101" +203360,Lightning Charging Cable,1,14.95,05/11/19 14:08,"327 8th St, New York City, NY 10001" +203361,27in FHD Monitor,1,149.99,05/28/19 12:56,"849 Highland St, Seattle, WA 98101" +203362,Bose SoundSport Headphones,1,99.99,05/08/19 20:39,"986 Maple St, San Francisco, CA 94016" +203363,USB-C Charging Cable,2,11.95,05/22/19 22:07,"432 1st St, Boston, MA 02215" +203364,Lightning Charging Cable,1,14.95,05/19/19 07:00,"668 12th St, Seattle, WA 98101" +203365,Wired Headphones,1,11.99,05/17/19 17:24,"421 Ridge St, Austin, TX 73301" +203366,Apple Airpods Headphones,1,150,05/25/19 16:28,"824 Walnut St, Boston, MA 02215" +203367,USB-C Charging Cable,1,11.95,05/21/19 18:05,"56 Dogwood St, Austin, TX 73301" +203368,USB-C Charging Cable,1,11.95,05/30/19 18:00,"93 West St, New York City, NY 10001" +203369,Lightning Charging Cable,1,14.95,05/27/19 16:04,"990 7th St, Austin, TX 73301" +203370,iPhone,1,700,05/05/19 09:22,"790 Park St, San Francisco, CA 94016" +203370,Lightning Charging Cable,1,14.95,05/05/19 09:22,"790 Park St, San Francisco, CA 94016" +203371,Lightning Charging Cable,1,14.95,05/10/19 13:53,"347 Wilson St, Los Angeles, CA 90001" +203372,27in FHD Monitor,1,149.99,05/01/19 17:22,"213 8th St, Los Angeles, CA 90001" +203373,Wired Headphones,1,11.99,05/11/19 20:51,"915 Sunset St, Boston, MA 02215" +203374,Wired Headphones,1,11.99,05/01/19 11:31,"276 5th St, Portland, OR 97035" +203375,34in Ultrawide Monitor,1,379.99,05/09/19 10:06,"853 9th St, Los Angeles, CA 90001" +203376,Bose SoundSport Headphones,1,99.99,05/12/19 16:45,"956 Center St, New York City, NY 10001" +203377,27in 4K Gaming Monitor,1,389.99,05/21/19 18:48,"177 14th St, San Francisco, CA 94016" +203378,Bose SoundSport Headphones,1,99.99,05/28/19 15:30,"70 Adams St, Atlanta, GA 30301" +203379,iPhone,1,700,05/06/19 11:17,"505 North St, Los Angeles, CA 90001" +203380,iPhone,1,700,05/06/19 15:12,"625 Main St, Atlanta, GA 30301" +203381,27in 4K Gaming Monitor,1,389.99,05/29/19 00:33,"826 1st St, New York City, NY 10001" +203382,Macbook Pro Laptop,1,1700,05/06/19 11:08,"717 Willow St, Portland, ME 04101" +203383,AA Batteries (4-pack),1,3.84,05/15/19 13:16,"285 Sunset St, Los Angeles, CA 90001" +203384,20in Monitor,1,109.99,05/02/19 10:30,"83 Meadow St, Dallas, TX 75001" +203385,AA Batteries (4-pack),1,3.84,05/20/19 09:45,"386 8th St, Dallas, TX 75001" +203386,AA Batteries (4-pack),1,3.84,05/05/19 10:34,"83 Meadow St, New York City, NY 10001" +203387,AA Batteries (4-pack),1,3.84,05/20/19 11:53,"325 Main St, Atlanta, GA 30301" +203388,USB-C Charging Cable,1,11.95,05/06/19 20:14,"787 Washington St, Seattle, WA 98101" +203389,Apple Airpods Headphones,1,150,05/21/19 13:34,"584 North St, Boston, MA 02215" +203390,USB-C Charging Cable,1,11.95,05/10/19 18:37,"388 Park St, San Francisco, CA 94016" +203391,Wired Headphones,1,11.99,05/29/19 19:20,"209 Park St, New York City, NY 10001" +203392,Bose SoundSport Headphones,1,99.99,05/29/19 18:40,"662 Highland St, Boston, MA 02215" +203393,Wired Headphones,1,11.99,05/23/19 14:57,"255 Jefferson St, Boston, MA 02215" +203394,27in FHD Monitor,1,149.99,05/15/19 10:23,"355 Cedar St, Austin, TX 73301" +203395,27in FHD Monitor,1,149.99,05/18/19 20:48,"589 Willow St, Los Angeles, CA 90001" +203396,AA Batteries (4-pack),1,3.84,05/07/19 21:02,"870 Madison St, New York City, NY 10001" +203397,20in Monitor,1,109.99,05/07/19 10:03,"836 Wilson St, Boston, MA 02215" +203398,Lightning Charging Cable,1,14.95,05/27/19 18:42,"546 6th St, New York City, NY 10001" +203399,27in 4K Gaming Monitor,1,389.99,05/28/19 22:12,"293 Wilson St, New York City, NY 10001" +203400,AAA Batteries (4-pack),1,2.99,05/28/19 09:27,"949 Cherry St, San Francisco, CA 94016" +203401,AA Batteries (4-pack),1,3.84,05/19/19 22:27,"101 Wilson St, Dallas, TX 75001" +203402,20in Monitor,1,109.99,05/15/19 14:39,"788 4th St, New York City, NY 10001" +203403,Apple Airpods Headphones,1,150,05/31/19 11:08,"201 Cherry St, Dallas, TX 75001" +203404,USB-C Charging Cable,1,11.95,05/09/19 13:24,"869 Adams St, Boston, MA 02215" +203405,Apple Airpods Headphones,1,150,05/04/19 13:11,"624 14th St, New York City, NY 10001" +203406,USB-C Charging Cable,1,11.95,05/09/19 11:09,"139 6th St, San Francisco, CA 94016" +203407,34in Ultrawide Monitor,1,379.99,05/02/19 10:34,"307 8th St, Seattle, WA 98101" +203408,AAA Batteries (4-pack),1,2.99,05/16/19 06:38,"159 2nd St, San Francisco, CA 94016" +203409,AAA Batteries (4-pack),2,2.99,05/13/19 19:50,"79 Wilson St, Portland, OR 97035" +203410,AAA Batteries (4-pack),2,2.99,05/28/19 12:32,"308 2nd St, Los Angeles, CA 90001" +203411,Flatscreen TV,1,300,05/21/19 17:03,"739 Elm St, New York City, NY 10001" +203412,34in Ultrawide Monitor,1,379.99,05/31/19 20:07,"258 Forest St, New York City, NY 10001" +203413,Apple Airpods Headphones,1,150,05/16/19 11:26,"206 Cherry St, Dallas, TX 75001" +203414,LG Dryer,1,600.0,05/23/19 14:36,"38 Lake St, Portland, OR 97035" +203415,USB-C Charging Cable,1,11.95,05/15/19 19:15,"726 Johnson St, Boston, MA 02215" +203416,Lightning Charging Cable,1,14.95,05/20/19 23:59,"584 9th St, Atlanta, GA 30301" +203417,Wired Headphones,1,11.99,05/19/19 13:01,"603 Spruce St, Los Angeles, CA 90001" +203418,34in Ultrawide Monitor,1,379.99,05/19/19 08:01,"17 West St, Portland, OR 97035" +203419,AA Batteries (4-pack),2,3.84,05/10/19 17:30,"308 Lincoln St, San Francisco, CA 94016" +203420,AA Batteries (4-pack),1,3.84,05/12/19 21:23,"232 Hickory St, Los Angeles, CA 90001" +203421,Flatscreen TV,1,300,05/14/19 19:29,"230 12th St, Portland, OR 97035" +203422,Wired Headphones,1,11.99,05/01/19 22:12,"212 Meadow St, Austin, TX 73301" +203423,Apple Airpods Headphones,1,150,05/21/19 01:34,"561 Spruce St, Portland, OR 97035" +203424,Bose SoundSport Headphones,1,99.99,05/26/19 09:54,"443 Dogwood St, Portland, OR 97035" +203425,Macbook Pro Laptop,1,1700,05/13/19 11:27,"816 Highland St, Los Angeles, CA 90001" +203426,AAA Batteries (4-pack),2,2.99,05/19/19 11:31,"574 Church St, Dallas, TX 75001" +203427,Lightning Charging Cable,1,14.95,05/27/19 17:13,"420 Chestnut St, New York City, NY 10001" +203428,Lightning Charging Cable,1,14.95,05/05/19 11:12,"42 Center St, Atlanta, GA 30301" +203429,Apple Airpods Headphones,1,150,05/10/19 10:27,"530 Adams St, Portland, OR 97035" +203430,27in FHD Monitor,1,149.99,05/24/19 19:36,"440 Johnson St, Boston, MA 02215" +203431,USB-C Charging Cable,1,11.95,05/01/19 18:43,"511 1st St, Portland, OR 97035" +203432,Bose SoundSport Headphones,1,99.99,05/22/19 01:49,"991 Lake St, Boston, MA 02215" +203433,AAA Batteries (4-pack),2,2.99,05/20/19 19:52,"648 Park St, Seattle, WA 98101" +203434,Bose SoundSport Headphones,1,99.99,05/10/19 20:21,"402 River St, New York City, NY 10001" +203435,Vareebadd Phone,1,400,05/31/19 00:18,"106 North St, Los Angeles, CA 90001" +203436,USB-C Charging Cable,1,11.95,05/07/19 17:26,"335 Washington St, Boston, MA 02215" +203437,USB-C Charging Cable,1,11.95,05/09/19 17:26,"99 Hickory St, Boston, MA 02215" +203438,USB-C Charging Cable,1,11.95,05/27/19 10:11,"689 Main St, Los Angeles, CA 90001" +203439,27in FHD Monitor,1,149.99,05/02/19 22:02,"825 7th St, Portland, OR 97035" +203440,Lightning Charging Cable,1,14.95,05/05/19 19:00,"810 Walnut St, Los Angeles, CA 90001" +203441,iPhone,1,700,05/18/19 12:46,"497 Adams St, Portland, OR 97035" +203442,USB-C Charging Cable,1,11.95,05/26/19 19:49,"754 Walnut St, San Francisco, CA 94016" +203443,Bose SoundSport Headphones,1,99.99,05/30/19 15:40,"722 14th St, New York City, NY 10001" +203444,27in FHD Monitor,1,149.99,05/22/19 14:14,"819 8th St, San Francisco, CA 94016" +203445,Wired Headphones,1,11.99,05/12/19 11:05,"898 Sunset St, San Francisco, CA 94016" +203446,Macbook Pro Laptop,1,1700,05/05/19 18:23,"926 Chestnut St, Atlanta, GA 30301" +203447,Apple Airpods Headphones,1,150,05/09/19 05:41,"102 Elm St, Seattle, WA 98101" +203448,USB-C Charging Cable,1,11.95,05/25/19 22:06,"730 Washington St, Los Angeles, CA 90001" +203449,AA Batteries (4-pack),1,3.84,05/30/19 13:57,"228 4th St, San Francisco, CA 94016" +203450,Wired Headphones,1,11.99,05/03/19 06:06,"520 1st St, Seattle, WA 98101" +203451,USB-C Charging Cable,1,11.95,05/16/19 20:02,"240 13th St, Los Angeles, CA 90001" +203452,iPhone,1,700,05/15/19 13:11,"453 Cedar St, New York City, NY 10001" +203452,Apple Airpods Headphones,1,150,05/15/19 13:11,"453 Cedar St, New York City, NY 10001" +203453,Wired Headphones,1,11.99,05/09/19 12:57,"801 Hill St, Atlanta, GA 30301" +203454,USB-C Charging Cable,1,11.95,05/18/19 17:17,"949 9th St, New York City, NY 10001" +203455,USB-C Charging Cable,2,11.95,05/18/19 21:45,"217 Hickory St, Atlanta, GA 30301" +203456,iPhone,1,700,05/19/19 01:51,"943 South St, San Francisco, CA 94016" +203456,Lightning Charging Cable,1,14.95,05/19/19 01:51,"943 South St, San Francisco, CA 94016" +203457,USB-C Charging Cable,1,11.95,05/30/19 13:27,"527 Lakeview St, Seattle, WA 98101" +203458,AA Batteries (4-pack),1,3.84,05/12/19 18:19,"572 Wilson St, Seattle, WA 98101" +203459,iPhone,1,700,05/03/19 04:04,"515 West St, Atlanta, GA 30301" +203460,34in Ultrawide Monitor,1,379.99,05/14/19 16:53,"403 South St, Dallas, TX 75001" +203461,ThinkPad Laptop,1,999.99,05/05/19 23:24,"453 Willow St, Dallas, TX 75001" +203462,Wired Headphones,1,11.99,05/16/19 09:51,"472 Elm St, Portland, OR 97035" +203463,USB-C Charging Cable,1,11.95,05/03/19 07:20,"526 Madison St, Austin, TX 73301" +203464,AAA Batteries (4-pack),2,2.99,05/14/19 10:21,"794 West St, Austin, TX 73301" +203465,Apple Airpods Headphones,1,150,05/31/19 09:20,"892 Maple St, San Francisco, CA 94016" +203466,ThinkPad Laptop,1,999.99,05/18/19 11:10,"539 Adams St, Austin, TX 73301" +203467,USB-C Charging Cable,1,11.95,05/18/19 20:01,"992 Pine St, San Francisco, CA 94016" +203468,AAA Batteries (4-pack),3,2.99,05/07/19 20:54,"323 5th St, San Francisco, CA 94016" +203469,AAA Batteries (4-pack),1,2.99,05/02/19 22:12,"179 Spruce St, Austin, TX 73301" +203470,27in FHD Monitor,1,149.99,05/23/19 08:04,"494 Washington St, Atlanta, GA 30301" +203471,Wired Headphones,1,11.99,05/31/19 19:00,"914 Wilson St, Los Angeles, CA 90001" +203471,Lightning Charging Cable,1,14.95,05/31/19 19:00,"914 Wilson St, Los Angeles, CA 90001" +203472,Lightning Charging Cable,2,14.95,05/06/19 12:54,"472 12th St, Austin, TX 73301" +203473,34in Ultrawide Monitor,1,379.99,05/08/19 11:02,"282 Johnson St, Boston, MA 02215" +203474,34in Ultrawide Monitor,1,379.99,05/13/19 19:58,"310 10th St, Boston, MA 02215" +203475,AA Batteries (4-pack),1,3.84,05/12/19 17:54,"111 Johnson St, New York City, NY 10001" +203476,iPhone,1,700,05/22/19 12:15,"264 8th St, Austin, TX 73301" +203477,Apple Airpods Headphones,1,150,05/26/19 19:27,"467 West St, Dallas, TX 75001" +203478,USB-C Charging Cable,1,11.95,05/27/19 13:53,"791 2nd St, Los Angeles, CA 90001" +203479,AAA Batteries (4-pack),1,2.99,05/26/19 11:39,"816 West St, Austin, TX 73301" +203480,AAA Batteries (4-pack),1,2.99,05/29/19 18:45,"588 Lincoln St, New York City, NY 10001" +203481,Bose SoundSport Headphones,1,99.99,05/05/19 00:48,"432 12th St, New York City, NY 10001" +203482,Lightning Charging Cable,1,14.95,05/23/19 17:39,"133 Johnson St, Atlanta, GA 30301" +203483,27in 4K Gaming Monitor,1,389.99,05/08/19 10:52,"893 Willow St, Los Angeles, CA 90001" +203484,AA Batteries (4-pack),1,3.84,05/13/19 02:21,"828 Highland St, Boston, MA 02215" +203485,Lightning Charging Cable,1,14.95,05/01/19 21:50,"142 Spruce St, New York City, NY 10001" +203486,AAA Batteries (4-pack),1,2.99,05/30/19 23:54,"417 South St, Dallas, TX 75001" +203487,AAA Batteries (4-pack),1,2.99,05/24/19 18:12,"490 7th St, Boston, MA 02215" +203488,USB-C Charging Cable,1,11.95,05/18/19 19:46,"113 Hill St, San Francisco, CA 94016" +203489,AA Batteries (4-pack),1,3.84,05/31/19 22:38,"482 West St, New York City, NY 10001" +203490,34in Ultrawide Monitor,1,379.99,05/29/19 22:52,"954 Willow St, Los Angeles, CA 90001" +203491,20in Monitor,1,109.99,05/30/19 14:18,"271 5th St, Portland, OR 97035" +203492,Lightning Charging Cable,1,14.95,05/19/19 22:43,"707 River St, Los Angeles, CA 90001" +203493,Wired Headphones,1,11.99,05/03/19 23:05,"866 Jefferson St, Austin, TX 73301" +203494,USB-C Charging Cable,1,11.95,05/18/19 11:47,"243 2nd St, San Francisco, CA 94016" +203495,AA Batteries (4-pack),1,3.84,05/07/19 13:56,"956 Lakeview St, Seattle, WA 98101" +203496,Wired Headphones,1,11.99,05/26/19 11:44,"95 Hickory St, New York City, NY 10001" +203497,AAA Batteries (4-pack),5,2.99,05/19/19 13:30,"929 14th St, Boston, MA 02215" +203498,iPhone,1,700,05/10/19 23:20,"84 5th St, Los Angeles, CA 90001" +203499,34in Ultrawide Monitor,1,379.99,05/28/19 09:13,"833 Wilson St, San Francisco, CA 94016" +203500,AA Batteries (4-pack),1,3.84,05/07/19 09:34,"734 7th St, San Francisco, CA 94016" +203501,27in 4K Gaming Monitor,1,389.99,05/07/19 22:24,"291 Hickory St, Boston, MA 02215" +203502,27in 4K Gaming Monitor,1,389.99,05/04/19 20:47,"392 Meadow St, Boston, MA 02215" +203503,Lightning Charging Cable,1,14.95,05/17/19 20:57,"994 Walnut St, Atlanta, GA 30301" +203504,Lightning Charging Cable,1,14.95,05/31/19 12:02,"386 8th St, San Francisco, CA 94016" +203505,Bose SoundSport Headphones,1,99.99,05/28/19 17:41,"815 Dogwood St, New York City, NY 10001" +203506,Apple Airpods Headphones,1,150,05/27/19 16:04,"800 Madison St, Atlanta, GA 30301" +203507,Lightning Charging Cable,1,14.95,05/07/19 20:10,"407 Park St, San Francisco, CA 94016" +203508,USB-C Charging Cable,1,11.95,05/10/19 09:57,"972 4th St, Boston, MA 02215" +203509,AA Batteries (4-pack),1,3.84,05/13/19 17:52,"85 Lake St, Boston, MA 02215" +203510,AA Batteries (4-pack),1,3.84,05/05/19 12:55,"430 Wilson St, New York City, NY 10001" +203511,USB-C Charging Cable,1,11.95,05/13/19 12:55,"440 Willow St, Seattle, WA 98101" +203512,AA Batteries (4-pack),1,3.84,05/09/19 08:17,"309 14th St, New York City, NY 10001" +203513,AA Batteries (4-pack),1,3.84,05/28/19 20:54,"997 Maple St, San Francisco, CA 94016" +203514,27in FHD Monitor,1,149.99,05/26/19 21:28,"478 4th St, New York City, NY 10001" +203515,USB-C Charging Cable,1,11.95,05/15/19 18:20,"341 West St, New York City, NY 10001" +203516,AAA Batteries (4-pack),1,2.99,05/22/19 08:28,"40 Ridge St, Los Angeles, CA 90001" +203517,USB-C Charging Cable,1,11.95,05/04/19 12:39,"965 Washington St, Dallas, TX 75001" +203518,Bose SoundSport Headphones,1,99.99,05/09/19 19:55,"401 Meadow St, Los Angeles, CA 90001" +203519,ThinkPad Laptop,1,999.99,05/18/19 19:57,"416 Adams St, Los Angeles, CA 90001" +203520,Lightning Charging Cable,1,14.95,05/14/19 11:35,"360 Center St, New York City, NY 10001" +203521,Apple Airpods Headphones,1,150,05/16/19 18:46,"47 6th St, San Francisco, CA 94016" +203522,Lightning Charging Cable,1,14.95,05/21/19 23:49,"836 Hill St, Boston, MA 02215" +203523,Bose SoundSport Headphones,1,99.99,05/04/19 22:18,"821 14th St, Boston, MA 02215" +203524,Wired Headphones,1,11.99,05/16/19 20:35,"974 5th St, San Francisco, CA 94016" +203525,Lightning Charging Cable,1,14.95,05/22/19 21:23,"469 Lincoln St, Boston, MA 02215" +203526,iPhone,1,700,05/06/19 19:26,"908 5th St, Los Angeles, CA 90001" +203527,20in Monitor,1,109.99,05/31/19 18:59,"585 Wilson St, New York City, NY 10001" +203528,USB-C Charging Cable,1,11.95,05/11/19 13:42,"284 Highland St, Dallas, TX 75001" +203529,Lightning Charging Cable,1,14.95,05/15/19 17:45,"934 Walnut St, Dallas, TX 75001" +203530,Lightning Charging Cable,1,14.95,05/23/19 14:43,"390 7th St, Boston, MA 02215" +203531,27in 4K Gaming Monitor,1,389.99,05/24/19 12:08,"683 Main St, San Francisco, CA 94016" +203532,Lightning Charging Cable,2,14.95,05/18/19 10:24,"624 River St, Boston, MA 02215" +203533,Wired Headphones,1,11.99,05/28/19 17:53,"679 Ridge St, Austin, TX 73301" +203534,AAA Batteries (4-pack),2,2.99,05/15/19 07:34,"626 Dogwood St, San Francisco, CA 94016" +203535,AAA Batteries (4-pack),1,2.99,05/04/19 20:50,"87 Lincoln St, Portland, OR 97035" +203536,AAA Batteries (4-pack),1,2.99,05/18/19 19:25,"163 Spruce St, Boston, MA 02215" +203537,20in Monitor,1,109.99,05/29/19 07:13,"633 11th St, Austin, TX 73301" +203538,USB-C Charging Cable,1,11.95,05/18/19 04:36,"533 Sunset St, Atlanta, GA 30301" +203539,Bose SoundSport Headphones,1,99.99,05/27/19 16:48,"186 Pine St, San Francisco, CA 94016" +203540,AA Batteries (4-pack),1,3.84,05/13/19 09:12,"32 6th St, Atlanta, GA 30301" +203541,USB-C Charging Cable,1,11.95,05/13/19 20:49,"621 Chestnut St, Austin, TX 73301" +203542,27in 4K Gaming Monitor,1,389.99,05/07/19 21:11,"643 11th St, San Francisco, CA 94016" +203543,LG Washing Machine,1,600.0,05/04/19 10:45,"268 Meadow St, Austin, TX 73301" +203543,USB-C Charging Cable,1,11.95,05/04/19 10:45,"268 Meadow St, Austin, TX 73301" +203544,Flatscreen TV,1,300,05/06/19 11:57,"207 13th St, Boston, MA 02215" +203545,USB-C Charging Cable,1,11.95,05/12/19 10:22,"633 Chestnut St, Austin, TX 73301" +203546,Bose SoundSport Headphones,1,99.99,05/16/19 18:09,"839 4th St, Boston, MA 02215" +203547,Lightning Charging Cable,1,14.95,05/22/19 06:59,"592 Forest St, Atlanta, GA 30301" +203548,AAA Batteries (4-pack),2,2.99,05/14/19 21:47,"626 Ridge St, San Francisco, CA 94016" +203549,AA Batteries (4-pack),1,3.84,05/17/19 10:16,"185 Willow St, Atlanta, GA 30301" +203550,Google Phone,1,600,05/05/19 18:57,"826 5th St, Seattle, WA 98101" +203551,AA Batteries (4-pack),1,3.84,05/10/19 13:49,"991 Adams St, Portland, OR 97035" +203552,USB-C Charging Cable,1,11.95,05/17/19 03:07,"611 2nd St, San Francisco, CA 94016" +203553,34in Ultrawide Monitor,1,379.99,05/11/19 11:04,"794 Adams St, Boston, MA 02215" +203554,ThinkPad Laptop,1,999.99,05/27/19 21:07,"294 Sunset St, San Francisco, CA 94016" +203555,USB-C Charging Cable,1,11.95,05/24/19 06:55,"332 Meadow St, San Francisco, CA 94016" +203556,AAA Batteries (4-pack),1,2.99,05/06/19 10:36,"555 10th St, Portland, OR 97035" +203557,Apple Airpods Headphones,1,150,05/18/19 14:12,"217 4th St, Boston, MA 02215" +203558,Wired Headphones,1,11.99,05/24/19 15:39,"920 Forest St, Atlanta, GA 30301" +203559,USB-C Charging Cable,1,11.95,05/25/19 16:27,"42 Church St, Seattle, WA 98101" +203560,iPhone,1,700,05/28/19 09:53,"106 10th St, Los Angeles, CA 90001" +203561,34in Ultrawide Monitor,1,379.99,05/03/19 15:52,"476 2nd St, Boston, MA 02215" +203562,AA Batteries (4-pack),1,3.84,05/06/19 12:09,"425 Madison St, Portland, OR 97035" +203563,27in 4K Gaming Monitor,1,389.99,05/26/19 16:50,"456 Lakeview St, San Francisco, CA 94016" +203564,USB-C Charging Cable,1,11.95,05/16/19 13:04,"96 6th St, Atlanta, GA 30301" +203565,Google Phone,1,600,05/09/19 20:18,"820 Cedar St, Dallas, TX 75001" +203566,AA Batteries (4-pack),1,3.84,05/25/19 18:51,"174 Pine St, Los Angeles, CA 90001" +203567,Macbook Pro Laptop,1,1700,05/24/19 23:02,"963 South St, New York City, NY 10001" +203568,34in Ultrawide Monitor,1,379.99,05/26/19 00:10,"326 Highland St, Los Angeles, CA 90001" +203569,Vareebadd Phone,1,400,05/04/19 19:08,"477 Cherry St, Boston, MA 02215" +203569,USB-C Charging Cable,1,11.95,05/04/19 19:08,"477 Cherry St, Boston, MA 02215" +203570,Lightning Charging Cable,1,14.95,05/17/19 12:20,"248 Ridge St, San Francisco, CA 94016" +203571,Wired Headphones,1,11.99,05/01/19 19:17,"373 13th St, San Francisco, CA 94016" +203572,USB-C Charging Cable,1,11.95,05/22/19 12:03,"8 Maple St, San Francisco, CA 94016" +203573,iPhone,1,700,05/12/19 00:38,"7 Lakeview St, Dallas, TX 75001" +203574,Lightning Charging Cable,1,14.95,05/13/19 14:42,"295 Main St, Los Angeles, CA 90001" +203575,iPhone,1,700,05/11/19 08:44,"188 Ridge St, Portland, OR 97035" +203576,AA Batteries (4-pack),1,3.84,05/22/19 13:00,"650 Willow St, Atlanta, GA 30301" +203577,Lightning Charging Cable,1,14.95,05/23/19 08:03,"462 Sunset St, Atlanta, GA 30301" +203578,AAA Batteries (4-pack),2,2.99,05/19/19 11:13,"405 Center St, San Francisco, CA 94016" +203579,USB-C Charging Cable,1,11.95,05/14/19 09:26,"191 Ridge St, Los Angeles, CA 90001" +203580,USB-C Charging Cable,1,11.95,05/16/19 11:47,"378 Ridge St, Boston, MA 02215" +203581,Bose SoundSport Headphones,1,99.99,05/05/19 19:23,"654 Adams St, San Francisco, CA 94016" +203582,Lightning Charging Cable,2,14.95,05/16/19 18:04,"86 Meadow St, Seattle, WA 98101" +203583,Google Phone,1,600,05/17/19 14:18,"224 Cherry St, Dallas, TX 75001" +203584,Flatscreen TV,1,300,05/15/19 16:59,"523 Walnut St, Boston, MA 02215" +203585,AAA Batteries (4-pack),1,2.99,05/06/19 21:37,"64 2nd St, Boston, MA 02215" +203586,34in Ultrawide Monitor,1,379.99,05/28/19 16:14,"261 10th St, San Francisco, CA 94016" +203587,AAA Batteries (4-pack),1,2.99,05/17/19 20:26,"553 5th St, Seattle, WA 98101" +203588,USB-C Charging Cable,1,11.95,05/26/19 01:12,"926 2nd St, Los Angeles, CA 90001" +203589,27in FHD Monitor,1,149.99,05/22/19 16:35,"588 Sunset St, Atlanta, GA 30301" +203590,AA Batteries (4-pack),1,3.84,05/18/19 21:07,"32 Hill St, Boston, MA 02215" +203591,ThinkPad Laptop,1,999.99,05/02/19 17:58,"453 Washington St, San Francisco, CA 94016" +203592,AA Batteries (4-pack),1,3.84,05/10/19 12:30,"137 Chestnut St, San Francisco, CA 94016" +203593,AAA Batteries (4-pack),1,2.99,05/16/19 06:13,"593 Lakeview St, Seattle, WA 98101" +203594,27in 4K Gaming Monitor,1,389.99,05/28/19 15:00,"445 5th St, Seattle, WA 98101" +203595,Wired Headphones,1,11.99,05/11/19 08:06,"161 13th St, San Francisco, CA 94016" +203596,AA Batteries (4-pack),2,3.84,05/22/19 09:52,"750 5th St, San Francisco, CA 94016" +203597,iPhone,1,700,05/25/19 09:20,"913 6th St, Boston, MA 02215" +203598,Macbook Pro Laptop,1,1700,05/18/19 21:52,"258 Hill St, Boston, MA 02215" +203599,USB-C Charging Cable,1,11.95,05/08/19 00:09,"272 Chestnut St, Boston, MA 02215" +203600,Macbook Pro Laptop,1,1700,05/05/19 17:05,"653 1st St, Portland, OR 97035" +203601,USB-C Charging Cable,1,11.95,05/15/19 01:51,"60 Main St, New York City, NY 10001" +203602,AAA Batteries (4-pack),1,2.99,05/30/19 21:37,"192 Wilson St, Dallas, TX 75001" +203603,Wired Headphones,1,11.99,05/15/19 09:49,"687 14th St, Austin, TX 73301" +203604,Wired Headphones,1,11.99,05/03/19 23:58,"953 Hickory St, Boston, MA 02215" +203605,Macbook Pro Laptop,1,1700,05/15/19 12:47,"26 Lincoln St, Seattle, WA 98101" +203606,Apple Airpods Headphones,1,150,05/04/19 05:24,"375 Meadow St, Boston, MA 02215" +203607,Lightning Charging Cable,1,14.95,05/26/19 13:42,"925 8th St, New York City, NY 10001" +203608,Lightning Charging Cable,1,14.95,05/01/19 21:15,"966 7th St, Portland, OR 97035" +203609,USB-C Charging Cable,1,11.95,05/25/19 16:02,"694 5th St, San Francisco, CA 94016" +203610,Wired Headphones,1,11.99,05/31/19 00:12,"835 Lakeview St, San Francisco, CA 94016" +203611,Apple Airpods Headphones,1,150,05/08/19 14:50,"144 11th St, Los Angeles, CA 90001" +203612,Lightning Charging Cable,1,14.95,05/27/19 18:38,"254 1st St, New York City, NY 10001" +203613,Apple Airpods Headphones,1,150,05/12/19 17:48,"283 Wilson St, Dallas, TX 75001" +203614,Lightning Charging Cable,1,14.95,05/01/19 13:16,"87 Chestnut St, San Francisco, CA 94016" +203615,Wired Headphones,1,11.99,05/15/19 18:02,"86 Sunset St, Portland, ME 04101" +203616,LG Dryer,1,600.0,05/04/19 21:22,"656 Walnut St, Boston, MA 02215" +203617,iPhone,1,700,05/18/19 22:20,"46 West St, San Francisco, CA 94016" +203617,Lightning Charging Cable,1,14.95,05/18/19 22:20,"46 West St, San Francisco, CA 94016" +203617,Apple Airpods Headphones,1,150,05/18/19 22:20,"46 West St, San Francisco, CA 94016" +203618,27in FHD Monitor,1,149.99,05/21/19 15:04,"593 Maple St, Boston, MA 02215" +203619,AAA Batteries (4-pack),2,2.99,05/14/19 14:35,"120 Main St, Portland, OR 97035" +203620,Bose SoundSport Headphones,1,99.99,05/20/19 21:00,"886 Walnut St, Boston, MA 02215" +203621,Lightning Charging Cable,1,14.95,05/20/19 19:02,"392 Forest St, Boston, MA 02215" +203622,AA Batteries (4-pack),1,3.84,05/12/19 21:05,"741 Park St, Boston, MA 02215" +203623,Lightning Charging Cable,1,14.95,05/04/19 07:09,"528 1st St, Boston, MA 02215" +203624,Bose SoundSport Headphones,1,99.99,05/31/19 11:30,"120 13th St, Los Angeles, CA 90001" +203625,AAA Batteries (4-pack),1,2.99,05/23/19 13:53,"388 Elm St, Boston, MA 02215" +203626,AA Batteries (4-pack),1,3.84,05/09/19 15:31,"397 Spruce St, San Francisco, CA 94016" +203627,Wired Headphones,1,11.99,05/23/19 22:42,"424 10th St, Seattle, WA 98101" +203628,Lightning Charging Cable,1,14.95,05/23/19 12:39,"714 South St, Austin, TX 73301" +203629,Wired Headphones,1,11.99,05/23/19 16:14,"10 Walnut St, Atlanta, GA 30301" +203630,AA Batteries (4-pack),2,3.84,05/10/19 15:53,"31 11th St, New York City, NY 10001" +203631,Lightning Charging Cable,1,14.95,05/29/19 18:31,"246 13th St, Portland, ME 04101" +203632,Lightning Charging Cable,1,14.95,05/13/19 00:05,"706 Elm St, San Francisco, CA 94016" +203633,Flatscreen TV,1,300,05/09/19 08:07,"500 Wilson St, Los Angeles, CA 90001" +203634,Flatscreen TV,1,300,05/31/19 16:13,"554 10th St, New York City, NY 10001" +203635,USB-C Charging Cable,1,11.95,05/26/19 00:51,"169 Pine St, Boston, MA 02215" +203636,AA Batteries (4-pack),1,3.84,05/25/19 20:58,"950 10th St, Seattle, WA 98101" +203637,27in FHD Monitor,1,149.99,05/28/19 08:22,"196 Highland St, Los Angeles, CA 90001" +203638,AA Batteries (4-pack),2,3.84,05/28/19 08:22,"570 Highland St, Portland, OR 97035" +203639,AAA Batteries (4-pack),1,2.99,05/29/19 16:03,"42 Washington St, Portland, OR 97035" +203640,AA Batteries (4-pack),1,3.84,05/02/19 22:08,"742 Sunset St, New York City, NY 10001" +203641,iPhone,1,700,05/26/19 17:58,"572 South St, Boston, MA 02215" +203641,Wired Headphones,1,11.99,05/26/19 17:58,"572 South St, Boston, MA 02215" +203642,AAA Batteries (4-pack),1,2.99,05/03/19 08:53,"87 North St, Portland, OR 97035" +203643,Apple Airpods Headphones,1,150,05/29/19 16:22,"115 North St, Portland, OR 97035" +203644,AAA Batteries (4-pack),1,2.99,05/08/19 10:24,"637 Sunset St, Dallas, TX 75001" +203645,Macbook Pro Laptop,1,1700,05/25/19 11:50,"740 Ridge St, San Francisco, CA 94016" +203646,AAA Batteries (4-pack),1,2.99,05/16/19 12:38,"39 8th St, Los Angeles, CA 90001" +203647,AA Batteries (4-pack),1,3.84,05/06/19 12:28,"815 Dogwood St, San Francisco, CA 94016" +203648,Bose SoundSport Headphones,1,99.99,05/01/19 16:23,"717 Ridge St, Dallas, TX 75001" +203649,Apple Airpods Headphones,1,150,05/02/19 20:47,"328 10th St, Dallas, TX 75001" +203650,20in Monitor,1,109.99,05/29/19 18:23,"966 River St, Los Angeles, CA 90001" +203651,27in 4K Gaming Monitor,1,389.99,05/11/19 16:19,"559 Pine St, Los Angeles, CA 90001" +203652,27in FHD Monitor,1,149.99,05/06/19 16:42,"295 Church St, Seattle, WA 98101" +203653,27in 4K Gaming Monitor,1,389.99,05/03/19 11:19,"585 Washington St, Austin, TX 73301" +203654,27in 4K Gaming Monitor,1,389.99,05/25/19 16:50,"691 6th St, Austin, TX 73301" +203655,Apple Airpods Headphones,1,150,05/19/19 17:36,"70 Johnson St, Seattle, WA 98101" +203656,AA Batteries (4-pack),1,3.84,05/16/19 14:24,"181 Washington St, New York City, NY 10001" +203657,Wired Headphones,1,11.99,05/28/19 13:42,"28 10th St, Los Angeles, CA 90001" +203658,34in Ultrawide Monitor,1,379.99,05/27/19 20:24,"70 Jackson St, New York City, NY 10001" +203659,AA Batteries (4-pack),1,3.84,05/09/19 09:59,"946 2nd St, Los Angeles, CA 90001" +203660,USB-C Charging Cable,1,11.95,05/21/19 18:01,"103 Lake St, San Francisco, CA 94016" +203661,Vareebadd Phone,1,400,05/17/19 19:03,"795 Jackson St, Boston, MA 02215" +203661,USB-C Charging Cable,1,11.95,05/17/19 19:03,"795 Jackson St, Boston, MA 02215" +203662,Wired Headphones,1,11.99,05/16/19 16:14,"984 Center St, San Francisco, CA 94016" +203663,Lightning Charging Cable,1,14.95,05/22/19 18:29,"224 Jackson St, San Francisco, CA 94016" +203664,AA Batteries (4-pack),1,3.84,05/11/19 12:06,"86 1st St, Los Angeles, CA 90001" +203665,ThinkPad Laptop,1,999.99,05/10/19 08:59,"531 North St, New York City, NY 10001" +203666,AAA Batteries (4-pack),3,2.99,05/05/19 22:51,"851 Jackson St, Los Angeles, CA 90001" +203667,Lightning Charging Cable,1,14.95,05/02/19 10:09,"442 Lake St, Seattle, WA 98101" +203668,27in FHD Monitor,1,149.99,05/21/19 17:59,"886 Center St, San Francisco, CA 94016" +203669,USB-C Charging Cable,1,11.95,05/19/19 01:38,"812 11th St, Boston, MA 02215" +203670,Lightning Charging Cable,1,14.95,05/01/19 11:08,"352 Pine St, New York City, NY 10001" +203671,AAA Batteries (4-pack),1,2.99,05/08/19 13:24,"634 Madison St, San Francisco, CA 94016" +203672,AAA Batteries (4-pack),1,2.99,05/31/19 18:45,"69 5th St, San Francisco, CA 94016" +203673,USB-C Charging Cable,1,11.95,05/09/19 11:16,"936 Willow St, San Francisco, CA 94016" +203674,USB-C Charging Cable,2,11.95,05/19/19 18:52,"459 River St, Seattle, WA 98101" +203675,Apple Airpods Headphones,1,150,05/26/19 16:29,"738 Washington St, Dallas, TX 75001" +203676,27in 4K Gaming Monitor,1,389.99,05/17/19 21:32,"913 Lincoln St, Dallas, TX 75001" +203677,27in FHD Monitor,1,149.99,05/06/19 08:08,"778 Cherry St, Boston, MA 02215" +203678,AAA Batteries (4-pack),1,2.99,05/06/19 11:25,"299 Center St, Los Angeles, CA 90001" +203679,Bose SoundSport Headphones,1,99.99,05/27/19 17:42,"492 Lincoln St, Seattle, WA 98101" +203680,iPhone,1,700,05/22/19 06:15,"972 11th St, San Francisco, CA 94016" +203681,Macbook Pro Laptop,1,1700,05/24/19 09:15,"178 8th St, San Francisco, CA 94016" +203682,Wired Headphones,1,11.99,05/09/19 16:02,"97 9th St, Boston, MA 02215" +203683,20in Monitor,1,109.99,05/22/19 19:55,"378 Walnut St, Portland, OR 97035" +203684,Macbook Pro Laptop,1,1700,05/02/19 13:02,"835 11th St, Seattle, WA 98101" +203685,ThinkPad Laptop,1,999.99,05/13/19 16:57,"664 Johnson St, Los Angeles, CA 90001" +203686,Lightning Charging Cable,1,14.95,05/30/19 12:17,"450 Spruce St, San Francisco, CA 94016" +203687,Bose SoundSport Headphones,1,99.99,05/16/19 09:35,"683 River St, New York City, NY 10001" +203688,Wired Headphones,2,11.99,05/28/19 21:50,"928 Forest St, San Francisco, CA 94016" +203689,AA Batteries (4-pack),1,3.84,05/25/19 18:58,"864 Hickory St, Boston, MA 02215" +203690,Wired Headphones,1,11.99,05/25/19 14:23,"59 Meadow St, Atlanta, GA 30301" +203691,AAA Batteries (4-pack),1,2.99,05/08/19 19:36,"387 4th St, Boston, MA 02215" +203692,AA Batteries (4-pack),1,3.84,05/05/19 11:29,"946 Wilson St, Austin, TX 73301" +203693,27in FHD Monitor,1,149.99,05/17/19 11:35,"309 Chestnut St, Portland, ME 04101" +203694,Lightning Charging Cable,1,14.95,05/30/19 12:58,"66 Chestnut St, San Francisco, CA 94016" +203695,AAA Batteries (4-pack),1,2.99,05/01/19 16:29,"418 Cedar St, New York City, NY 10001" +203696,Bose SoundSport Headphones,1,99.99,05/14/19 18:28,"994 5th St, Atlanta, GA 30301" +203697,Apple Airpods Headphones,1,150,05/29/19 21:45,"754 Hickory St, San Francisco, CA 94016" +203698,Wired Headphones,1,11.99,05/21/19 21:05,"111 Sunset St, Atlanta, GA 30301" +203698,20in Monitor,1,109.99,05/21/19 21:05,"111 Sunset St, Atlanta, GA 30301" +203699,USB-C Charging Cable,1,11.95,05/25/19 00:25,"807 12th St, San Francisco, CA 94016" +203700,USB-C Charging Cable,1,11.95,05/03/19 17:46,"380 4th St, New York City, NY 10001" +203701,Apple Airpods Headphones,1,150,05/31/19 14:00,"248 Wilson St, New York City, NY 10001" +203702,Bose SoundSport Headphones,1,99.99,05/30/19 19:05,"670 Highland St, Los Angeles, CA 90001" +203703,USB-C Charging Cable,1,11.95,05/15/19 12:15,"479 Walnut St, Dallas, TX 75001" +203704,27in FHD Monitor,1,149.99,05/24/19 16:16,"414 Church St, Atlanta, GA 30301" +203704,34in Ultrawide Monitor,1,379.99,05/24/19 16:16,"414 Church St, Atlanta, GA 30301" +203705,AAA Batteries (4-pack),1,2.99,05/27/19 14:19,"273 Hill St, Los Angeles, CA 90001" +203706,Lightning Charging Cable,1,14.95,05/03/19 10:46,"99 Wilson St, San Francisco, CA 94016" +203707,USB-C Charging Cable,1,11.95,05/04/19 19:06,"873 Pine St, Los Angeles, CA 90001" +203708,20in Monitor,1,109.99,05/19/19 06:54,"978 River St, San Francisco, CA 94016" +203709,AAA Batteries (4-pack),2,2.99,05/08/19 06:31,"457 5th St, Los Angeles, CA 90001" +203710,Wired Headphones,1,11.99,05/26/19 11:36,"996 Highland St, New York City, NY 10001" +203711,Bose SoundSport Headphones,1,99.99,05/06/19 11:40,"444 7th St, Atlanta, GA 30301" +203712,USB-C Charging Cable,1,11.95,05/28/19 07:02,"34 Lake St, San Francisco, CA 94016" +203713,Flatscreen TV,1,300,05/14/19 18:59,"591 Chestnut St, Atlanta, GA 30301" +203713,Bose SoundSport Headphones,1,99.99,05/14/19 18:59,"591 Chestnut St, Atlanta, GA 30301" +203714,Macbook Pro Laptop,1,1700,05/05/19 02:14,"436 8th St, Boston, MA 02215" +203715,AAA Batteries (4-pack),2,2.99,05/14/19 08:12,"256 12th St, New York City, NY 10001" +203716,USB-C Charging Cable,1,11.95,05/20/19 21:40,"181 North St, San Francisco, CA 94016" +203717,AAA Batteries (4-pack),1,2.99,05/31/19 18:01,"250 5th St, Seattle, WA 98101" +203718,Apple Airpods Headphones,1,150,05/07/19 12:05,"73 Willow St, Portland, OR 97035" +203719,Wired Headphones,1,11.99,05/10/19 21:29,"797 Park St, Los Angeles, CA 90001" +203720,Bose SoundSport Headphones,1,99.99,05/06/19 06:58,"893 Madison St, Atlanta, GA 30301" +203721,Macbook Pro Laptop,1,1700,05/20/19 09:47,"200 Center St, New York City, NY 10001" +203722,Wired Headphones,1,11.99,05/14/19 07:23,"480 5th St, Seattle, WA 98101" +203723,USB-C Charging Cable,1,11.95,05/28/19 08:49,"753 Main St, Dallas, TX 75001" +203724,Bose SoundSport Headphones,1,99.99,05/26/19 11:40,"272 8th St, Portland, OR 97035" +203725,Lightning Charging Cable,1,14.95,05/04/19 13:17,"14 Madison St, Dallas, TX 75001" +203726,AAA Batteries (4-pack),3,2.99,05/15/19 21:42,"531 Cherry St, Portland, OR 97035" +203727,Bose SoundSport Headphones,1,99.99,05/10/19 20:59,"642 10th St, New York City, NY 10001" +203728,Apple Airpods Headphones,1,150,05/01/19 15:15,"637 7th St, San Francisco, CA 94016" +203729,Flatscreen TV,1,300,05/21/19 17:08,"759 Main St, San Francisco, CA 94016" +203730,Lightning Charging Cable,1,14.95,05/24/19 10:26,"920 13th St, Portland, OR 97035" +203731,Vareebadd Phone,1,400,05/14/19 18:49,"80 Lincoln St, Los Angeles, CA 90001" +203732,Macbook Pro Laptop,1,1700,05/04/19 12:43,"430 Ridge St, Boston, MA 02215" +203733,Lightning Charging Cable,1,14.95,05/26/19 21:16,"265 11th St, Los Angeles, CA 90001" +203734,27in FHD Monitor,1,149.99,05/16/19 11:29,"321 Walnut St, Portland, OR 97035" +203735,27in 4K Gaming Monitor,1,389.99,05/14/19 20:28,"337 Lincoln St, Boston, MA 02215" +203736,USB-C Charging Cable,1,11.95,05/26/19 18:20,"47 Jackson St, San Francisco, CA 94016" +203737,AA Batteries (4-pack),3,3.84,05/31/19 10:30,"823 Elm St, Dallas, TX 75001" +203738,AA Batteries (4-pack),1,3.84,05/07/19 21:43,"162 North St, New York City, NY 10001" +203739,Lightning Charging Cable,1,14.95,05/21/19 18:16,"615 Forest St, Boston, MA 02215" +203740,20in Monitor,1,109.99,05/28/19 18:41,"868 Cedar St, Austin, TX 73301" +203741,Bose SoundSport Headphones,1,99.99,05/13/19 18:37,"447 Highland St, Dallas, TX 75001" +203742,Wired Headphones,1,11.99,05/16/19 10:44,"400 12th St, San Francisco, CA 94016" +203743,AAA Batteries (4-pack),1,2.99,05/10/19 07:18,"143 Madison St, Austin, TX 73301" +203744,AAA Batteries (4-pack),1,2.99,05/21/19 00:05,"137 Pine St, Seattle, WA 98101" +203745,ThinkPad Laptop,1,999.99,05/10/19 14:48,"48 North St, San Francisco, CA 94016" +203746,USB-C Charging Cable,1,11.95,05/08/19 14:19,"875 Highland St, Boston, MA 02215" +203747,34in Ultrawide Monitor,1,379.99,05/07/19 21:46,"981 Meadow St, Boston, MA 02215" +203748,20in Monitor,1,109.99,05/28/19 19:37,"709 13th St, Dallas, TX 75001" +203749,USB-C Charging Cable,1,11.95,05/06/19 19:37,"376 North St, San Francisco, CA 94016" +203750,AAA Batteries (4-pack),1,2.99,05/03/19 19:16,"804 11th St, Boston, MA 02215" +203751,Macbook Pro Laptop,1,1700,05/20/19 22:18,"622 Chestnut St, Dallas, TX 75001" +203752,Lightning Charging Cable,1,14.95,05/27/19 00:19,"200 2nd St, Dallas, TX 75001" +203753,Lightning Charging Cable,1,14.95,05/17/19 19:25,"181 12th St, Austin, TX 73301" +203754,USB-C Charging Cable,1,11.95,05/27/19 22:22,"305 Main St, Austin, TX 73301" +203755,Apple Airpods Headphones,1,150,05/23/19 13:55,"379 Walnut St, San Francisco, CA 94016" +203756,Wired Headphones,1,11.99,05/09/19 12:34,"308 2nd St, Dallas, TX 75001" +203757,AA Batteries (4-pack),1,3.84,05/03/19 12:20,"238 Lincoln St, Seattle, WA 98101" +203758,AA Batteries (4-pack),2,3.84,05/03/19 08:20,"836 Lincoln St, San Francisco, CA 94016" +203759,Bose SoundSport Headphones,2,99.99,05/24/19 19:57,"661 11th St, Los Angeles, CA 90001" +203760,USB-C Charging Cable,1,11.95,05/23/19 22:16,"603 South St, Boston, MA 02215" +203761,USB-C Charging Cable,1,11.95,05/30/19 23:49,"808 11th St, Dallas, TX 75001" +203762,AAA Batteries (4-pack),1,2.99,05/24/19 22:20,"490 Highland St, Portland, OR 97035" +203763,Google Phone,1,600,05/27/19 11:17,"390 2nd St, San Francisco, CA 94016" +203764,Macbook Pro Laptop,1,1700,05/29/19 14:40,"785 Jackson St, Seattle, WA 98101" +203765,AA Batteries (4-pack),1,3.84,05/21/19 17:52,"729 North St, Austin, TX 73301" +203766,Bose SoundSport Headphones,1,99.99,05/19/19 20:45,"842 Main St, Dallas, TX 75001" +203767,AAA Batteries (4-pack),1,2.99,05/12/19 12:03,"544 North St, Los Angeles, CA 90001" +203768,AA Batteries (4-pack),2,3.84,05/18/19 10:16,"704 Ridge St, Seattle, WA 98101" +203769,Lightning Charging Cable,1,14.95,05/31/19 21:47,"127 11th St, Seattle, WA 98101" +203770,USB-C Charging Cable,1,11.95,05/31/19 07:13,"348 Sunset St, Dallas, TX 75001" +203771,Google Phone,1,600,05/27/19 13:59,"260 West St, San Francisco, CA 94016" +203772,USB-C Charging Cable,1,11.95,05/20/19 18:33,"47 Dogwood St, Los Angeles, CA 90001" +203772,AA Batteries (4-pack),2,3.84,05/20/19 18:33,"47 Dogwood St, Los Angeles, CA 90001" +203773,Lightning Charging Cable,1,14.95,05/02/19 22:16,"959 6th St, Los Angeles, CA 90001" +203774,Bose SoundSport Headphones,1,99.99,05/25/19 06:43,"969 Hickory St, Dallas, TX 75001" +203775,AAA Batteries (4-pack),3,2.99,05/26/19 09:25,"676 Church St, New York City, NY 10001" +203776,Vareebadd Phone,1,400,05/04/19 16:45,"503 14th St, New York City, NY 10001" +203776,USB-C Charging Cable,1,11.95,05/04/19 16:45,"503 14th St, New York City, NY 10001" +203777,27in FHD Monitor,1,149.99,05/03/19 07:35,"666 10th St, Seattle, WA 98101" +203778,USB-C Charging Cable,1,11.95,05/06/19 15:34,"192 Park St, New York City, NY 10001" +203779,AAA Batteries (4-pack),2,2.99,05/01/19 12:40,"560 Sunset St, Seattle, WA 98101" +203780,Apple Airpods Headphones,1,150,05/02/19 13:15,"13 Ridge St, New York City, NY 10001" +203781,AAA Batteries (4-pack),2,2.99,05/19/19 17:51,"713 Cherry St, Atlanta, GA 30301" +203782,Bose SoundSport Headphones,1,99.99,05/08/19 08:31,"972 Forest St, Portland, OR 97035" +203783,ThinkPad Laptop,1,999.99,05/09/19 16:16,"322 2nd St, San Francisco, CA 94016" +203784,AAA Batteries (4-pack),1,2.99,05/28/19 07:45,"893 Hill St, Los Angeles, CA 90001" +203785,Wired Headphones,2,11.99,05/14/19 09:26,"550 South St, New York City, NY 10001" +203786,LG Washing Machine,1,600.0,05/07/19 17:27,"236 Spruce St, Los Angeles, CA 90001" +203787,Bose SoundSport Headphones,1,99.99,05/24/19 21:21,"433 Highland St, New York City, NY 10001" +203788,USB-C Charging Cable,1,11.95,05/27/19 19:54,"788 Hill St, Boston, MA 02215" +203789,AA Batteries (4-pack),2,3.84,05/07/19 17:15,"763 Jackson St, New York City, NY 10001" +203790,Lightning Charging Cable,1,14.95,05/24/19 16:43,"909 Elm St, New York City, NY 10001" +203791,Apple Airpods Headphones,1,150,05/28/19 14:21,"580 Hickory St, San Francisco, CA 94016" +203792,Bose SoundSport Headphones,1,99.99,05/20/19 10:32,"337 Wilson St, San Francisco, CA 94016" +,,,,, +203793,Wired Headphones,1,11.99,05/26/19 17:16,"467 Madison St, Dallas, TX 75001" +203794,USB-C Charging Cable,1,11.95,05/06/19 12:48,"471 11th St, New York City, NY 10001" +203795,34in Ultrawide Monitor,1,379.99,05/05/19 08:01,"122 Johnson St, Los Angeles, CA 90001" +203796,AA Batteries (4-pack),1,3.84,05/18/19 12:37,"992 Spruce St, Austin, TX 73301" +203797,Bose SoundSport Headphones,1,99.99,05/23/19 10:53,"524 13th St, Austin, TX 73301" +203798,Apple Airpods Headphones,1,150,05/18/19 19:50,"853 West St, New York City, NY 10001" +203799,27in 4K Gaming Monitor,1,389.99,05/31/19 15:45,"460 Maple St, Los Angeles, CA 90001" +203800,ThinkPad Laptop,1,999.99,05/01/19 16:39,"578 Dogwood St, Boston, MA 02215" +203801,Google Phone,1,600,05/26/19 16:47,"858 Center St, Atlanta, GA 30301" +203802,Wired Headphones,1,11.99,05/15/19 20:14,"473 Lakeview St, New York City, NY 10001" +203803,Wired Headphones,1,11.99,05/15/19 12:38,"632 Meadow St, San Francisco, CA 94016" +203804,AAA Batteries (4-pack),1,2.99,05/21/19 17:47,"556 12th St, Los Angeles, CA 90001" +203805,Bose SoundSport Headphones,1,99.99,05/29/19 21:11,"506 Walnut St, San Francisco, CA 94016" +203806,Wired Headphones,1,11.99,05/14/19 20:51,"881 Dogwood St, Portland, OR 97035" +203807,AAA Batteries (4-pack),2,2.99,05/29/19 13:56,"152 4th St, Austin, TX 73301" +203808,AA Batteries (4-pack),1,3.84,05/26/19 09:50,"88 Johnson St, New York City, NY 10001" +203809,Lightning Charging Cable,1,14.95,05/23/19 09:22,"469 Madison St, Portland, OR 97035" +203810,Bose SoundSport Headphones,1,99.99,05/26/19 16:03,"669 9th St, Los Angeles, CA 90001" +203811,USB-C Charging Cable,1,11.95,05/24/19 18:24,"504 7th St, Dallas, TX 75001" +203812,Wired Headphones,1,11.99,05/10/19 21:58,"370 Sunset St, Boston, MA 02215" +203813,Apple Airpods Headphones,1,150,05/28/19 12:07,"747 South St, Seattle, WA 98101" +203814,USB-C Charging Cable,1,11.95,05/24/19 19:52,"735 10th St, Los Angeles, CA 90001" +203815,AAA Batteries (4-pack),2,2.99,05/16/19 20:51,"942 Sunset St, Dallas, TX 75001" +203816,AA Batteries (4-pack),1,3.84,05/05/19 01:34,"586 Cherry St, Portland, OR 97035" +203817,Apple Airpods Headphones,1,150,05/06/19 20:03,"896 4th St, Austin, TX 73301" +203818,Lightning Charging Cable,1,14.95,05/30/19 16:31,"845 West St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +203819,Wired Headphones,1,11.99,05/27/19 19:30,"594 14th St, Atlanta, GA 30301" +203820,iPhone,1,700,05/05/19 01:00,"978 Adams St, San Francisco, CA 94016" +203821,AAA Batteries (4-pack),1,2.99,05/19/19 13:40,"882 13th St, Portland, OR 97035" +203822,AA Batteries (4-pack),1,3.84,05/31/19 16:04,"123 11th St, Atlanta, GA 30301" +203823,27in FHD Monitor,1,149.99,05/31/19 09:07,"216 Madison St, New York City, NY 10001" +203824,AAA Batteries (4-pack),2,2.99,05/08/19 20:26,"925 Dogwood St, Dallas, TX 75001" +203825,AAA Batteries (4-pack),2,2.99,05/09/19 02:22,"847 Center St, Los Angeles, CA 90001" +203826,Lightning Charging Cable,1,14.95,05/22/19 10:08,"613 Lincoln St, San Francisco, CA 94016" +203827,USB-C Charging Cable,1,11.95,05/14/19 19:52,"721 Madison St, New York City, NY 10001" +203828,USB-C Charging Cable,1,11.95,05/25/19 21:01,"575 Ridge St, New York City, NY 10001" +203829,USB-C Charging Cable,1,11.95,05/30/19 17:45,"280 Lakeview St, San Francisco, CA 94016" +203830,27in FHD Monitor,1,149.99,05/06/19 09:37,"219 Wilson St, San Francisco, CA 94016" +203831,AA Batteries (4-pack),1,3.84,05/25/19 14:01,"59 Lake St, Atlanta, GA 30301" +203832,Wired Headphones,1,11.99,05/25/19 22:40,"521 Washington St, Los Angeles, CA 90001" +203833,27in 4K Gaming Monitor,1,389.99,05/13/19 16:01,"85 Johnson St, Seattle, WA 98101" +203834,AAA Batteries (4-pack),1,2.99,05/23/19 09:01,"801 Johnson St, Boston, MA 02215" +203835,USB-C Charging Cable,1,11.95,05/27/19 14:29,"730 Willow St, Dallas, TX 75001" +203836,iPhone,1,700,05/06/19 12:15,"845 Sunset St, Seattle, WA 98101" +203837,AA Batteries (4-pack),1,3.84,05/06/19 17:39,"685 12th St, Los Angeles, CA 90001" +203837,AA Batteries (4-pack),1,3.84,05/06/19 17:39,"685 12th St, Los Angeles, CA 90001" +203838,USB-C Charging Cable,1,11.95,05/04/19 11:35,"439 Wilson St, New York City, NY 10001" +203839,AA Batteries (4-pack),4,3.84,05/04/19 19:11,"787 Jefferson St, San Francisco, CA 94016" +203840,AA Batteries (4-pack),1,3.84,05/29/19 06:54,"380 Highland St, New York City, NY 10001" +203841,AA Batteries (4-pack),1,3.84,05/16/19 12:29,"745 Chestnut St, Dallas, TX 75001" +203842,USB-C Charging Cable,1,11.95,05/12/19 19:25,"335 Cedar St, San Francisco, CA 94016" +203843,AAA Batteries (4-pack),1,2.99,05/17/19 13:07,"213 11th St, San Francisco, CA 94016" +203844,Apple Airpods Headphones,1,150,05/11/19 11:03,"677 Hickory St, Seattle, WA 98101" +203845,20in Monitor,1,109.99,05/16/19 08:03,"877 Adams St, Portland, ME 04101" +203846,iPhone,1,700,05/29/19 18:57,"500 5th St, Los Angeles, CA 90001" +203847,AA Batteries (4-pack),1,3.84,05/04/19 17:07,"81 Sunset St, San Francisco, CA 94016" +203848,AAA Batteries (4-pack),1,2.99,05/25/19 10:39,"870 Forest St, Seattle, WA 98101" +203849,Apple Airpods Headphones,1,150,05/31/19 19:47,"90 1st St, San Francisco, CA 94016" +203850,Lightning Charging Cable,1,14.95,05/16/19 10:53,"312 10th St, Boston, MA 02215" +203851,iPhone,1,700,05/24/19 23:18,"313 Pine St, San Francisco, CA 94016" +203852,AAA Batteries (4-pack),1,2.99,05/21/19 20:27,"223 Dogwood St, San Francisco, CA 94016" +203853,AA Batteries (4-pack),2,3.84,05/17/19 21:31,"847 North St, Boston, MA 02215" +203854,Wired Headphones,1,11.99,05/14/19 12:56,"977 Maple St, Los Angeles, CA 90001" +203855,Lightning Charging Cable,2,14.95,05/16/19 20:33,"590 West St, Los Angeles, CA 90001" +203856,Wired Headphones,1,11.99,05/30/19 11:57,"68 8th St, Austin, TX 73301" +203857,20in Monitor,1,109.99,05/26/19 09:59,"520 Pine St, Boston, MA 02215" +203858,AAA Batteries (4-pack),1,2.99,05/17/19 18:57,"936 13th St, Los Angeles, CA 90001" +203859,USB-C Charging Cable,2,11.95,05/08/19 19:17,"511 Johnson St, San Francisco, CA 94016" +203860,Macbook Pro Laptop,1,1700,05/01/19 13:14,"272 8th St, Atlanta, GA 30301" +203861,Bose SoundSport Headphones,1,99.99,05/12/19 12:38,"251 Cedar St, San Francisco, CA 94016" +203862,Apple Airpods Headphones,1,150,05/07/19 09:48,"718 Main St, Los Angeles, CA 90001" +203863,Apple Airpods Headphones,1,150,05/26/19 06:29,"639 2nd St, Austin, TX 73301" +203864,ThinkPad Laptop,1,999.99,05/12/19 13:21,"440 Jackson St, Los Angeles, CA 90001" +203865,AAA Batteries (4-pack),2,2.99,05/22/19 18:41,"30 7th St, New York City, NY 10001" +203866,Lightning Charging Cable,1,14.95,05/02/19 15:02,"383 Highland St, Boston, MA 02215" +203867,Lightning Charging Cable,1,14.95,05/25/19 21:22,"811 Spruce St, Austin, TX 73301" +203868,iPhone,1,700,05/06/19 07:39,"994 Meadow St, Los Angeles, CA 90001" +203869,Google Phone,1,600,05/27/19 07:49,"438 Jackson St, Los Angeles, CA 90001" +203869,Wired Headphones,1,11.99,05/27/19 07:49,"438 Jackson St, Los Angeles, CA 90001" +203870,34in Ultrawide Monitor,1,379.99,05/19/19 12:31,"953 North St, Los Angeles, CA 90001" +203871,Wired Headphones,1,11.99,05/26/19 07:44,"168 Cedar St, San Francisco, CA 94016" +203872,USB-C Charging Cable,1,11.95,05/28/19 16:16,"493 Elm St, Boston, MA 02215" +203873,Apple Airpods Headphones,1,150,05/22/19 14:40,"845 4th St, Boston, MA 02215" +203874,AAA Batteries (4-pack),1,2.99,05/07/19 21:52,"112 Johnson St, Los Angeles, CA 90001" +203875,Apple Airpods Headphones,1,150,05/25/19 12:32,"801 Spruce St, Boston, MA 02215" +203876,Lightning Charging Cable,1,14.95,05/18/19 12:29,"241 11th St, Austin, TX 73301" +203877,Wired Headphones,1,11.99,05/12/19 09:32,"600 Hickory St, New York City, NY 10001" +203878,27in FHD Monitor,1,149.99,05/09/19 21:53,"68 Walnut St, Austin, TX 73301" +203879,iPhone,1,700,05/07/19 13:24,"279 Spruce St, Boston, MA 02215" +203879,Wired Headphones,1,11.99,05/07/19 13:24,"279 Spruce St, Boston, MA 02215" +203880,Wired Headphones,1,11.99,05/04/19 10:42,"671 Walnut St, New York City, NY 10001" +203881,Wired Headphones,1,11.99,05/09/19 10:05,"625 Spruce St, Seattle, WA 98101" +203882,Google Phone,1,600,05/25/19 18:32,"108 Pine St, San Francisco, CA 94016" +203882,USB-C Charging Cable,1,11.95,05/25/19 18:32,"108 Pine St, San Francisco, CA 94016" +203883,AA Batteries (4-pack),1,3.84,05/30/19 09:26,"251 14th St, San Francisco, CA 94016" +203884,Wired Headphones,1,11.99,05/22/19 20:02,"19 Washington St, Portland, OR 97035" +203885,Wired Headphones,1,11.99,05/20/19 14:02,"359 6th St, Portland, OR 97035" +203886,AAA Batteries (4-pack),2,2.99,05/01/19 09:04,"471 8th St, Boston, MA 02215" +203887,AA Batteries (4-pack),1,3.84,05/26/19 13:53,"482 Forest St, New York City, NY 10001" +203888,USB-C Charging Cable,1,11.95,05/03/19 09:11,"526 12th St, Los Angeles, CA 90001" +203889,Wired Headphones,1,11.99,05/31/19 20:58,"633 Wilson St, Los Angeles, CA 90001" +203890,USB-C Charging Cable,1,11.95,05/11/19 11:50,"423 South St, Los Angeles, CA 90001" +203891,AAA Batteries (4-pack),2,2.99,05/02/19 02:18,"706 Park St, Los Angeles, CA 90001" +203892,27in 4K Gaming Monitor,1,389.99,05/18/19 21:34,"616 Ridge St, Boston, MA 02215" +203893,Macbook Pro Laptop,1,1700,05/05/19 15:31,"525 8th St, Seattle, WA 98101" +203894,Vareebadd Phone,1,400,05/25/19 16:33,"387 Hill St, Dallas, TX 75001" +203895,Wired Headphones,1,11.99,05/26/19 09:01,"768 13th St, San Francisco, CA 94016" +203896,AAA Batteries (4-pack),1,2.99,05/18/19 14:27,"969 Johnson St, Los Angeles, CA 90001" +203897,AAA Batteries (4-pack),1,2.99,05/20/19 10:21,"841 Church St, Boston, MA 02215" +203897,Lightning Charging Cable,1,14.95,05/20/19 10:21,"841 Church St, Boston, MA 02215" +203898,Apple Airpods Headphones,1,150,05/04/19 16:44,"848 Sunset St, Dallas, TX 75001" +203899,AA Batteries (4-pack),3,3.84,05/19/19 20:35,"260 Highland St, Seattle, WA 98101" +203900,AAA Batteries (4-pack),2,2.99,05/17/19 17:41,"56 North St, New York City, NY 10001" +203901,Wired Headphones,1,11.99,05/17/19 18:46,"737 12th St, San Francisco, CA 94016" +203902,Flatscreen TV,1,300,05/23/19 18:11,"822 Sunset St, New York City, NY 10001" +203903,AA Batteries (4-pack),1,3.84,05/12/19 11:36,"33 Hill St, Boston, MA 02215" +203904,ThinkPad Laptop,1,999.99,05/17/19 17:16,"319 Elm St, Los Angeles, CA 90001" +203905,iPhone,1,700,05/19/19 16:01,"697 Center St, Boston, MA 02215" +203906,Macbook Pro Laptop,1,1700,05/05/19 19:10,"562 Wilson St, San Francisco, CA 94016" +203907,Bose SoundSport Headphones,1,99.99,05/20/19 13:53,"55 13th St, Boston, MA 02215" +203908,AA Batteries (4-pack),1,3.84,05/27/19 14:38,"469 Chestnut St, Los Angeles, CA 90001" +203909,Lightning Charging Cable,1,14.95,05/30/19 12:00,"486 Willow St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +203910,AA Batteries (4-pack),1,3.84,05/05/19 21:18,"508 River St, Boston, MA 02215" +203911,Apple Airpods Headphones,1,150,05/25/19 14:27,"620 Cherry St, Los Angeles, CA 90001" +203912,USB-C Charging Cable,1,11.95,05/21/19 16:57,"188 Lakeview St, Los Angeles, CA 90001" +203913,Bose SoundSport Headphones,1,99.99,05/18/19 14:18,"565 Elm St, San Francisco, CA 94016" +203914,Apple Airpods Headphones,1,150,05/11/19 15:53,"942 Willow St, Dallas, TX 75001" +203915,Wired Headphones,1,11.99,05/21/19 11:45,"103 1st St, New York City, NY 10001" +203916,iPhone,1,700,05/04/19 08:37,"3 West St, Dallas, TX 75001" +203917,AAA Batteries (4-pack),4,2.99,05/07/19 09:38,"527 10th St, New York City, NY 10001" +203918,USB-C Charging Cable,1,11.95,05/12/19 06:04,"516 5th St, New York City, NY 10001" +203919,Lightning Charging Cable,1,14.95,05/13/19 17:45,"105 Cedar St, Seattle, WA 98101" +203920,Lightning Charging Cable,1,14.95,05/31/19 21:34,"375 1st St, San Francisco, CA 94016" +203921,USB-C Charging Cable,2,11.95,05/13/19 15:41,"34 14th St, Seattle, WA 98101" +203922,27in 4K Gaming Monitor,1,389.99,05/17/19 01:03,"365 Elm St, Seattle, WA 98101" +203923,Wired Headphones,1,11.99,05/31/19 14:32,"549 Park St, Dallas, TX 75001" +203924,Bose SoundSport Headphones,1,99.99,05/10/19 14:16,"898 Lake St, Dallas, TX 75001" +203925,Wired Headphones,1,11.99,05/31/19 14:39,"83 River St, Los Angeles, CA 90001" +203926,Wired Headphones,1,11.99,05/06/19 21:19,"958 Park St, Austin, TX 73301" +203927,34in Ultrawide Monitor,1,379.99,05/17/19 20:14,"925 4th St, Seattle, WA 98101" +203928,USB-C Charging Cable,1,11.95,05/25/19 06:07,"99 Ridge St, New York City, NY 10001" +203929,Bose SoundSport Headphones,1,99.99,05/24/19 00:37,"454 Wilson St, Portland, OR 97035" +203930,Google Phone,1,600,05/17/19 15:19,"228 River St, Boston, MA 02215" +203931,AA Batteries (4-pack),1,3.84,05/11/19 18:54,"127 Chestnut St, Portland, OR 97035" +203932,Bose SoundSport Headphones,1,99.99,05/13/19 13:28,"862 Center St, Boston, MA 02215" +203932,Apple Airpods Headphones,1,150,05/13/19 13:28,"862 Center St, Boston, MA 02215" +203933,27in 4K Gaming Monitor,1,389.99,05/22/19 00:17,"122 Spruce St, New York City, NY 10001" +203934,Bose SoundSport Headphones,1,99.99,05/03/19 09:39,"850 Main St, Dallas, TX 75001" +203935,USB-C Charging Cable,1,11.95,05/22/19 12:47,"814 11th St, New York City, NY 10001" +203936,AAA Batteries (4-pack),2,2.99,05/22/19 17:38,"291 Elm St, Atlanta, GA 30301" +203937,Wired Headphones,2,11.99,05/23/19 08:59,"921 10th St, Portland, OR 97035" +203938,Lightning Charging Cable,1,14.95,05/21/19 13:13,"76 8th St, Seattle, WA 98101" +203939,Macbook Pro Laptop,1,1700,05/28/19 19:28,"417 Hickory St, New York City, NY 10001" +203940,AA Batteries (4-pack),3,3.84,05/08/19 17:09,"212 Park St, Atlanta, GA 30301" +203941,Macbook Pro Laptop,1,1700,05/31/19 11:21,"658 North St, San Francisco, CA 94016" +203942,Apple Airpods Headphones,1,150,05/20/19 14:07,"221 Church St, Los Angeles, CA 90001" +203943,Wired Headphones,1,11.99,05/26/19 13:31,"729 Main St, Portland, OR 97035" +203944,Wired Headphones,1,11.99,05/22/19 10:22,"90 Walnut St, New York City, NY 10001" +203945,iPhone,1,700,05/24/19 18:36,"318 Adams St, San Francisco, CA 94016" +203946,Apple Airpods Headphones,1,150,05/24/19 13:32,"940 8th St, Los Angeles, CA 90001" +203947,USB-C Charging Cable,1,11.95,05/30/19 22:18,"729 9th St, Dallas, TX 75001" +203948,AAA Batteries (4-pack),1,2.99,05/20/19 11:20,"305 11th St, San Francisco, CA 94016" +203949,Wired Headphones,1,11.99,05/03/19 10:31,"871 Madison St, Los Angeles, CA 90001" +203950,Lightning Charging Cable,1,14.95,05/29/19 09:52,"311 Lake St, Los Angeles, CA 90001" +203951,Macbook Pro Laptop,1,1700,05/04/19 06:19,"883 Main St, Portland, OR 97035" +203952,34in Ultrawide Monitor,1,379.99,05/13/19 12:51,"51 5th St, Atlanta, GA 30301" +203953,34in Ultrawide Monitor,1,379.99,05/08/19 20:41,"18 River St, Los Angeles, CA 90001" +203954,AAA Batteries (4-pack),1,2.99,05/30/19 09:45,"264 Center St, Boston, MA 02215" +203955,Lightning Charging Cable,1,14.95,05/30/19 17:41,"530 Main St, Seattle, WA 98101" +203956,USB-C Charging Cable,1,11.95,05/04/19 23:11,"670 Madison St, San Francisco, CA 94016" +203957,iPhone,1,700,05/27/19 08:52,"943 River St, San Francisco, CA 94016" +203958,Flatscreen TV,1,300,05/19/19 17:02,"172 Main St, Los Angeles, CA 90001" +203959,Apple Airpods Headphones,1,150,05/11/19 10:44,"86 Forest St, Boston, MA 02215" +203960,AA Batteries (4-pack),1,3.84,05/30/19 20:34,"938 Forest St, Boston, MA 02215" +203961,Lightning Charging Cable,1,14.95,05/22/19 19:25,"475 Spruce St, San Francisco, CA 94016" +203962,USB-C Charging Cable,1,11.95,05/13/19 00:57,"376 11th St, Los Angeles, CA 90001" +203963,AAA Batteries (4-pack),1,2.99,05/01/19 11:53,"157 13th St, Los Angeles, CA 90001" +203964,AA Batteries (4-pack),1,3.84,05/11/19 19:13,"930 Elm St, Los Angeles, CA 90001" +203965,AA Batteries (4-pack),3,3.84,05/23/19 18:57,"260 1st St, Los Angeles, CA 90001" +203966,AA Batteries (4-pack),2,3.84,05/04/19 21:33,"209 Meadow St, San Francisco, CA 94016" +203967,USB-C Charging Cable,1,11.95,05/14/19 19:44,"254 13th St, San Francisco, CA 94016" +203968,Apple Airpods Headphones,1,150,05/13/19 09:26,"922 7th St, Portland, ME 04101" +203969,USB-C Charging Cable,1,11.95,05/12/19 11:32,"929 8th St, Los Angeles, CA 90001" +203970,Bose SoundSport Headphones,1,99.99,05/23/19 21:12,"814 Willow St, Los Angeles, CA 90001" +203971,AA Batteries (4-pack),1,3.84,05/23/19 12:40,"68 Jefferson St, Los Angeles, CA 90001" +203972,Apple Airpods Headphones,1,150,05/09/19 14:28,"348 14th St, Portland, ME 04101" +203973,Flatscreen TV,1,300,05/21/19 14:41,"313 Wilson St, Los Angeles, CA 90001" +203974,34in Ultrawide Monitor,1,379.99,05/09/19 21:02,"90 Cedar St, Los Angeles, CA 90001" +203975,Bose SoundSport Headphones,1,99.99,05/13/19 12:30,"40 Hill St, Seattle, WA 98101" +203976,AAA Batteries (4-pack),1,2.99,05/21/19 20:39,"450 8th St, San Francisco, CA 94016" +203977,27in 4K Gaming Monitor,1,389.99,05/23/19 21:59,"16 Lincoln St, Dallas, TX 75001" +203978,Apple Airpods Headphones,1,150,05/16/19 09:59,"699 North St, San Francisco, CA 94016" +203979,Lightning Charging Cable,1,14.95,05/16/19 15:28,"784 Washington St, Los Angeles, CA 90001" +203980,Lightning Charging Cable,1,14.95,05/31/19 09:28,"850 Chestnut St, Boston, MA 02215" +203981,iPhone,1,700,05/09/19 11:05,"465 1st St, Atlanta, GA 30301" +203982,AAA Batteries (4-pack),5,2.99,05/31/19 10:06,"647 Hickory St, Los Angeles, CA 90001" +203983,USB-C Charging Cable,2,11.95,05/23/19 19:52,"54 Sunset St, Austin, TX 73301" +203984,USB-C Charging Cable,1,11.95,05/11/19 22:21,"847 9th St, Atlanta, GA 30301" +203985,20in Monitor,1,109.99,05/03/19 15:13,"254 11th St, New York City, NY 10001" +203986,27in FHD Monitor,1,149.99,05/27/19 15:11,"460 North St, Seattle, WA 98101" +203987,AAA Batteries (4-pack),1,2.99,05/19/19 18:26,"256 Maple St, Atlanta, GA 30301" +203988,Lightning Charging Cable,1,14.95,05/29/19 23:33,"93 Cedar St, New York City, NY 10001" +203989,Bose SoundSport Headphones,1,99.99,05/09/19 08:06,"649 Ridge St, San Francisco, CA 94016" +203990,LG Dryer,1,600.0,05/03/19 20:19,"648 West St, San Francisco, CA 94016" +203991,Bose SoundSport Headphones,1,99.99,05/09/19 14:52,"501 Lake St, Atlanta, GA 30301" +203992,AA Batteries (4-pack),1,3.84,05/05/19 08:38,"427 Highland St, New York City, NY 10001" +203993,Apple Airpods Headphones,1,150,05/13/19 11:58,"976 Center St, Boston, MA 02215" +203993,AA Batteries (4-pack),1,3.84,05/13/19 11:58,"976 Center St, Boston, MA 02215" +203994,Lightning Charging Cable,1,14.95,05/28/19 13:01,"223 10th St, Los Angeles, CA 90001" +203995,USB-C Charging Cable,1,11.95,05/27/19 19:56,"453 Lakeview St, Austin, TX 73301" +203996,USB-C Charging Cable,1,11.95,05/08/19 09:37,"637 Johnson St, San Francisco, CA 94016" +203997,20in Monitor,1,109.99,05/27/19 20:27,"919 Maple St, San Francisco, CA 94016" +203998,Lightning Charging Cable,1,14.95,05/10/19 11:39,"741 8th St, Portland, ME 04101" +203999,USB-C Charging Cable,2,11.95,05/22/19 21:21,"816 6th St, Boston, MA 02215" +204000,USB-C Charging Cable,1,11.95,05/05/19 19:15,"98 Sunset St, New York City, NY 10001" +204001,Apple Airpods Headphones,1,150,05/17/19 17:15,"280 Forest St, Portland, OR 97035" +204002,Bose SoundSport Headphones,1,99.99,05/17/19 18:11,"476 1st St, San Francisco, CA 94016" +204003,AAA Batteries (4-pack),2,2.99,05/13/19 13:25,"54 Lakeview St, Seattle, WA 98101" +204004,USB-C Charging Cable,1,11.95,05/26/19 14:38,"533 Lincoln St, Portland, OR 97035" +204005,Apple Airpods Headphones,1,150,05/29/19 14:19,"711 2nd St, Boston, MA 02215" +204006,Google Phone,1,600,05/12/19 16:39,"643 Ridge St, Boston, MA 02215" +204007,USB-C Charging Cable,1,11.95,05/14/19 17:20,"261 Highland St, Los Angeles, CA 90001" +204008,Apple Airpods Headphones,1,150,05/28/19 23:31,"523 Hickory St, San Francisco, CA 94016" +204009,Lightning Charging Cable,1,14.95,05/06/19 12:13,"631 Lakeview St, Seattle, WA 98101" +204010,27in 4K Gaming Monitor,1,389.99,05/17/19 18:28,"890 Lakeview St, Dallas, TX 75001" +204011,Apple Airpods Headphones,1,150,05/25/19 12:32,"260 4th St, San Francisco, CA 94016" +204012,Apple Airpods Headphones,1,150,05/07/19 17:00,"547 Spruce St, Boston, MA 02215" +204013,Wired Headphones,1,11.99,05/15/19 15:14,"436 8th St, San Francisco, CA 94016" +204014,AA Batteries (4-pack),3,3.84,05/10/19 16:25,"151 River St, San Francisco, CA 94016" +204015,AAA Batteries (4-pack),1,2.99,05/20/19 09:27,"713 Willow St, Los Angeles, CA 90001" +204016,Flatscreen TV,1,300,05/02/19 19:33,"216 Sunset St, San Francisco, CA 94016" +204017,Bose SoundSport Headphones,1,99.99,05/10/19 12:20,"174 Center St, Los Angeles, CA 90001" +204018,34in Ultrawide Monitor,1,379.99,05/18/19 13:37,"771 North St, Atlanta, GA 30301" +204019,AA Batteries (4-pack),1,3.84,05/22/19 01:37,"624 Cherry St, Los Angeles, CA 90001" +204020,Bose SoundSport Headphones,1,99.99,05/05/19 09:52,"547 8th St, Los Angeles, CA 90001" +204021,USB-C Charging Cable,1,11.95,05/30/19 17:42,"790 Cherry St, Los Angeles, CA 90001" +204022,Lightning Charging Cable,1,14.95,05/11/19 13:39,"11 Dogwood St, New York City, NY 10001" +204023,Wired Headphones,1,11.99,05/12/19 07:49,"197 Sunset St, Los Angeles, CA 90001" +204024,Bose SoundSport Headphones,1,99.99,05/14/19 08:51,"115 Cedar St, Los Angeles, CA 90001" +204025,Wired Headphones,1,11.99,05/21/19 17:25,"315 Center St, Dallas, TX 75001" +204026,Vareebadd Phone,1,400,05/14/19 12:29,"205 Cherry St, Los Angeles, CA 90001" +204027,Bose SoundSport Headphones,1,99.99,05/18/19 12:25,"859 14th St, San Francisco, CA 94016" +204028,USB-C Charging Cable,1,11.95,05/23/19 23:08,"291 4th St, Austin, TX 73301" +204029,AAA Batteries (4-pack),2,2.99,05/05/19 18:36,"431 Meadow St, New York City, NY 10001" +204030,34in Ultrawide Monitor,1,379.99,05/15/19 23:04,"543 Elm St, Portland, OR 97035" +204031,AA Batteries (4-pack),1,3.84,05/09/19 21:00,"17 Highland St, Boston, MA 02215" +204032,iPhone,1,700,05/01/19 08:53,"724 1st St, San Francisco, CA 94016" +204033,Lightning Charging Cable,1,14.95,05/30/19 05:58,"788 Jefferson St, Los Angeles, CA 90001" +204034,AA Batteries (4-pack),1,3.84,05/09/19 11:12,"313 7th St, New York City, NY 10001" +204035,Lightning Charging Cable,1,14.95,05/10/19 14:25,"8 Spruce St, Austin, TX 73301" +204036,USB-C Charging Cable,1,11.95,05/24/19 22:41,"693 Elm St, San Francisco, CA 94016" +204037,iPhone,1,700,05/10/19 16:48,"307 1st St, New York City, NY 10001" +204037,Lightning Charging Cable,1,14.95,05/10/19 16:48,"307 1st St, New York City, NY 10001" +204038,Google Phone,1,600,05/19/19 10:03,"75 River St, Atlanta, GA 30301" +204039,AAA Batteries (4-pack),1,2.99,05/26/19 17:37,"828 9th St, San Francisco, CA 94016" +204040,Lightning Charging Cable,1,14.95,05/23/19 09:02,"145 12th St, Portland, ME 04101" +204041,Apple Airpods Headphones,1,150,05/29/19 14:30,"748 Chestnut St, Los Angeles, CA 90001" +204042,Apple Airpods Headphones,1,150,05/17/19 13:49,"776 Lake St, San Francisco, CA 94016" +204043,USB-C Charging Cable,1,11.95,05/01/19 10:30,"590 12th St, New York City, NY 10001" +204044,Wired Headphones,1,11.99,05/15/19 14:37,"50 Maple St, Los Angeles, CA 90001" +204045,Apple Airpods Headphones,1,150,05/01/19 19:20,"763 North St, Los Angeles, CA 90001" +204046,ThinkPad Laptop,1,999.99,05/26/19 17:43,"742 Washington St, Los Angeles, CA 90001" +204047,27in FHD Monitor,1,149.99,05/07/19 17:39,"485 Lake St, New York City, NY 10001" +204048,Lightning Charging Cable,1,14.95,05/10/19 09:50,"848 Elm St, Los Angeles, CA 90001" +204049,Google Phone,1,600,05/21/19 16:56,"866 8th St, San Francisco, CA 94016" +204050,Apple Airpods Headphones,1,150,05/23/19 21:10,"67 Hill St, Los Angeles, CA 90001" +204051,Lightning Charging Cable,1,14.95,05/23/19 15:36,"914 Lake St, San Francisco, CA 94016" +204052,34in Ultrawide Monitor,1,379.99,05/05/19 18:13,"123 River St, Boston, MA 02215" +204053,USB-C Charging Cable,1,11.95,05/27/19 20:18,"135 10th St, San Francisco, CA 94016" +204054,Lightning Charging Cable,1,14.95,05/13/19 10:06,"762 14th St, Boston, MA 02215" +204055,iPhone,1,700,05/11/19 12:42,"486 Lincoln St, New York City, NY 10001" +204056,Bose SoundSport Headphones,1,99.99,05/19/19 18:03,"286 Meadow St, Atlanta, GA 30301" +204057,USB-C Charging Cable,1,11.95,05/01/19 19:23,"514 West St, New York City, NY 10001" +204058,Flatscreen TV,1,300,05/01/19 09:48,"38 9th St, New York City, NY 10001" +204059,34in Ultrawide Monitor,1,379.99,05/17/19 19:16,"668 11th St, Atlanta, GA 30301" +204060,USB-C Charging Cable,1,11.95,05/31/19 01:02,"406 Washington St, Austin, TX 73301" +204061,Bose SoundSport Headphones,1,99.99,05/23/19 18:16,"328 14th St, Los Angeles, CA 90001" +204062,Wired Headphones,1,11.99,05/27/19 16:18,"647 13th St, Los Angeles, CA 90001" +204063,iPhone,1,700,05/26/19 08:43,"548 Spruce St, New York City, NY 10001" +204063,Wired Headphones,1,11.99,05/26/19 08:43,"548 Spruce St, New York City, NY 10001" +204064,Wired Headphones,1,11.99,05/27/19 13:36,"285 Meadow St, New York City, NY 10001" +204065,AA Batteries (4-pack),1,3.84,05/17/19 22:03,"654 Pine St, Portland, OR 97035" +204066,AAA Batteries (4-pack),1,2.99,05/18/19 10:50,"738 Park St, New York City, NY 10001" +204067,27in FHD Monitor,1,149.99,05/19/19 12:04,"948 5th St, Los Angeles, CA 90001" +204068,Lightning Charging Cable,1,14.95,05/16/19 19:30,"162 Lincoln St, Portland, OR 97035" +204069,ThinkPad Laptop,1,999.99,05/07/19 08:39,"429 Chestnut St, Portland, OR 97035" +204070,Flatscreen TV,1,300,05/30/19 13:53,"359 Chestnut St, Dallas, TX 75001" +204071,AAA Batteries (4-pack),1,2.99,05/08/19 20:08,"975 South St, Seattle, WA 98101" +204072,AAA Batteries (4-pack),1,2.99,05/28/19 09:18,"389 Adams St, San Francisco, CA 94016" +204073,AAA Batteries (4-pack),3,2.99,05/15/19 20:51,"361 Church St, San Francisco, CA 94016" +204074,AAA Batteries (4-pack),2,2.99,05/22/19 12:45,"228 Center St, San Francisco, CA 94016" +204075,AAA Batteries (4-pack),1,2.99,05/05/19 23:18,"522 Hickory St, Los Angeles, CA 90001" +204076,Wired Headphones,1,11.99,05/02/19 09:30,"531 Johnson St, Los Angeles, CA 90001" +204077,AAA Batteries (4-pack),1,2.99,05/01/19 09:33,"876 Ridge St, Dallas, TX 75001" +204078,Apple Airpods Headphones,1,150,05/29/19 20:43,"764 1st St, Los Angeles, CA 90001" +204079,AAA Batteries (4-pack),2,2.99,05/25/19 17:19,"940 Church St, Dallas, TX 75001" +204080,Apple Airpods Headphones,1,150,05/03/19 19:01,"371 Hill St, Atlanta, GA 30301" +204081,Wired Headphones,1,11.99,05/22/19 09:34,"261 Walnut St, Seattle, WA 98101" +204081,20in Monitor,1,109.99,05/22/19 09:34,"261 Walnut St, Seattle, WA 98101" +204082,Google Phone,1,600,05/15/19 11:45,"589 Lake St, New York City, NY 10001" +204083,USB-C Charging Cable,1,11.95,05/27/19 09:07,"143 5th St, Boston, MA 02215" +204084,Wired Headphones,2,11.99,05/08/19 18:22,"546 Hickory St, Boston, MA 02215" +204085,Bose SoundSport Headphones,1,99.99,05/28/19 05:22,"153 13th St, New York City, NY 10001" +204086,iPhone,1,700,05/13/19 16:25,"754 11th St, Atlanta, GA 30301" +204086,Apple Airpods Headphones,1,150,05/13/19 16:25,"754 11th St, Atlanta, GA 30301" +204087,34in Ultrawide Monitor,1,379.99,05/12/19 13:58,"58 Highland St, Portland, OR 97035" +204088,AA Batteries (4-pack),1,3.84,05/27/19 15:23,"15 Washington St, San Francisco, CA 94016" +204089,AA Batteries (4-pack),1,3.84,05/27/19 16:25,"924 South St, New York City, NY 10001" +204090,Lightning Charging Cable,1,14.95,05/19/19 08:34,"909 West St, Atlanta, GA 30301" +204091,AA Batteries (4-pack),2,3.84,05/15/19 12:16,"352 Forest St, Portland, OR 97035" +204092,27in FHD Monitor,1,149.99,05/17/19 10:07,"309 Cherry St, San Francisco, CA 94016" +204093,27in 4K Gaming Monitor,1,389.99,05/25/19 16:01,"415 2nd St, San Francisco, CA 94016" +204094,USB-C Charging Cable,1,11.95,05/23/19 21:39,"310 Lincoln St, San Francisco, CA 94016" +204095,USB-C Charging Cable,1,11.95,05/08/19 20:54,"841 5th St, Portland, OR 97035" +204096,USB-C Charging Cable,1,11.95,05/15/19 22:54,"179 Chestnut St, Portland, ME 04101" +204097,Flatscreen TV,1,300,05/26/19 17:49,"844 Meadow St, Boston, MA 02215" +204098,27in 4K Gaming Monitor,1,389.99,05/27/19 12:29,"920 Meadow St, Los Angeles, CA 90001" +204099,Apple Airpods Headphones,1,150,05/02/19 09:12,"111 Forest St, Austin, TX 73301" +204100,Macbook Pro Laptop,1,1700,05/31/19 08:05,"459 Spruce St, Boston, MA 02215" +204101,Apple Airpods Headphones,1,150,05/09/19 20:03,"891 Washington St, Portland, ME 04101" +204102,Lightning Charging Cable,1,14.95,05/18/19 18:00,"385 Church St, Boston, MA 02215" +204103,Flatscreen TV,1,300,05/03/19 12:10,"177 Forest St, Seattle, WA 98101" +204104,Wired Headphones,1,11.99,05/21/19 11:30,"747 Dogwood St, Dallas, TX 75001" +204105,AA Batteries (4-pack),1,3.84,05/04/19 12:41,"486 Lakeview St, San Francisco, CA 94016" +204105,USB-C Charging Cable,1,11.95,05/04/19 12:41,"486 Lakeview St, San Francisco, CA 94016" +204106,Lightning Charging Cable,1,14.95,05/28/19 00:11,"560 Lakeview St, Dallas, TX 75001" +204107,Bose SoundSport Headphones,1,99.99,05/21/19 14:55,"162 9th St, New York City, NY 10001" +204108,AAA Batteries (4-pack),2,2.99,05/22/19 08:29,"72 Center St, San Francisco, CA 94016" +204109,AA Batteries (4-pack),1,3.84,05/25/19 15:20,"858 Sunset St, San Francisco, CA 94016" +204110,AAA Batteries (4-pack),2,2.99,05/19/19 21:38,"812 Ridge St, Los Angeles, CA 90001" +204111,Wired Headphones,1,11.99,05/17/19 23:14,"659 Elm St, New York City, NY 10001" +204112,Google Phone,1,600,05/22/19 10:59,"897 Jackson St, Los Angeles, CA 90001" +204113,USB-C Charging Cable,1,11.95,05/09/19 01:05,"134 10th St, Boston, MA 02215" +204114,27in FHD Monitor,1,149.99,05/19/19 16:24,"502 7th St, San Francisco, CA 94016" +204115,Apple Airpods Headphones,2,150,05/29/19 20:01,"457 4th St, New York City, NY 10001" +204116,LG Dryer,1,600.0,05/16/19 15:10,"707 South St, Atlanta, GA 30301" +204117,Google Phone,1,600,05/07/19 17:34,"666 14th St, Boston, MA 02215" +204117,USB-C Charging Cable,1,11.95,05/07/19 17:34,"666 14th St, Boston, MA 02215" +204118,27in FHD Monitor,1,149.99,05/31/19 22:37,"629 Hill St, Los Angeles, CA 90001" +204119,Apple Airpods Headphones,1,150,05/03/19 19:00,"875 9th St, Atlanta, GA 30301" +204120,Lightning Charging Cable,1,14.95,05/22/19 22:13,"615 Lincoln St, New York City, NY 10001" +204121,AAA Batteries (4-pack),1,2.99,05/18/19 09:18,"339 River St, Los Angeles, CA 90001" +204122,Wired Headphones,1,11.99,05/02/19 10:38,"5 11th St, San Francisco, CA 94016" +204123,Flatscreen TV,1,300,05/21/19 08:56,"365 14th St, Boston, MA 02215" +204124,Lightning Charging Cable,1,14.95,05/21/19 13:24,"956 Main St, Los Angeles, CA 90001" +204125,Wired Headphones,1,11.99,05/06/19 13:39,"213 Main St, San Francisco, CA 94016" +204126,Wired Headphones,1,11.99,05/02/19 13:34,"876 Forest St, Dallas, TX 75001" +204127,Macbook Pro Laptop,1,1700,05/28/19 18:57,"93 Willow St, San Francisco, CA 94016" +204128,AA Batteries (4-pack),1,3.84,05/02/19 11:38,"217 Cedar St, Los Angeles, CA 90001" +204129,Lightning Charging Cable,1,14.95,05/24/19 23:47,"889 Wilson St, Boston, MA 02215" +204130,AAA Batteries (4-pack),1,2.99,05/18/19 14:20,"233 9th St, Dallas, TX 75001" +204131,USB-C Charging Cable,1,11.95,05/11/19 10:06,"703 7th St, Boston, MA 02215" +204132,Wired Headphones,1,11.99,05/05/19 01:22,"414 Jackson St, Dallas, TX 75001" +204133,Wired Headphones,1,11.99,05/23/19 20:08,"960 West St, Boston, MA 02215" +204134,ThinkPad Laptop,1,999.99,05/24/19 09:57,"456 Forest St, San Francisco, CA 94016" +204135,34in Ultrawide Monitor,1,379.99,05/09/19 10:59,"773 Main St, New York City, NY 10001" +204136,Wired Headphones,1,11.99,05/20/19 15:00,"20 7th St, Portland, OR 97035" +204137,Lightning Charging Cable,1,14.95,05/07/19 16:13,"938 10th St, Atlanta, GA 30301" +204138,Bose SoundSport Headphones,1,99.99,05/23/19 12:34,"670 Park St, New York City, NY 10001" +204139,AAA Batteries (4-pack),1,2.99,05/03/19 12:00,"313 Pine St, New York City, NY 10001" +204140,20in Monitor,1,109.99,05/02/19 13:23,"771 Forest St, San Francisco, CA 94016" +204141,iPhone,1,700,05/03/19 00:32,"400 11th St, Portland, OR 97035" +204142,Lightning Charging Cable,1,14.95,05/23/19 20:25,"749 Jefferson St, Dallas, TX 75001" +204143,Apple Airpods Headphones,1,150,05/31/19 12:02,"820 Maple St, San Francisco, CA 94016" +204144,Lightning Charging Cable,1,14.95,05/21/19 06:38,"679 Hickory St, Dallas, TX 75001" +204144,AA Batteries (4-pack),3,3.84,05/21/19 06:38,"679 Hickory St, Dallas, TX 75001" +204145,Bose SoundSport Headphones,1,99.99,05/29/19 12:03,"795 Ridge St, Atlanta, GA 30301" +204146,AA Batteries (4-pack),1,3.84,05/13/19 18:21,"747 Wilson St, Atlanta, GA 30301" +204147,Macbook Pro Laptop,1,1700,05/07/19 22:18,"690 Maple St, San Francisco, CA 94016" +204148,Lightning Charging Cable,1,14.95,05/12/19 09:37,"669 North St, San Francisco, CA 94016" +204148,Apple Airpods Headphones,1,150,05/12/19 09:37,"669 North St, San Francisco, CA 94016" +204149,ThinkPad Laptop,1,999.99,05/27/19 16:44,"269 12th St, Seattle, WA 98101" +204150,34in Ultrawide Monitor,1,379.99,05/25/19 11:13,"988 Ridge St, San Francisco, CA 94016" +204151,LG Washing Machine,1,600.0,05/29/19 01:12,"713 Adams St, Seattle, WA 98101" +204152,USB-C Charging Cable,1,11.95,05/25/19 15:47,"471 9th St, Boston, MA 02215" +204153,Apple Airpods Headphones,1,150,05/03/19 13:32,"921 South St, Boston, MA 02215" +204154,Apple Airpods Headphones,1,150,05/19/19 12:06,"498 Lake St, San Francisco, CA 94016" +204155,Vareebadd Phone,1,400,05/19/19 11:59,"981 Cedar St, Portland, ME 04101" +204156,USB-C Charging Cable,1,11.95,05/05/19 04:43,"998 Forest St, Atlanta, GA 30301" +204157,AAA Batteries (4-pack),1,2.99,05/30/19 13:03,"295 Park St, Boston, MA 02215" +204158,Bose SoundSport Headphones,1,99.99,05/03/19 11:16,"623 11th St, Boston, MA 02215" +204159,USB-C Charging Cable,1,11.95,05/21/19 19:28,"95 Hill St, Boston, MA 02215" +204160,AAA Batteries (4-pack),1,2.99,05/16/19 16:09,"379 Meadow St, Boston, MA 02215" +204161,USB-C Charging Cable,1,11.95,05/16/19 14:09,"94 Wilson St, Boston, MA 02215" +204162,Apple Airpods Headphones,1,150,05/01/19 18:47,"551 Hickory St, Dallas, TX 75001" +204163,AAA Batteries (4-pack),1,2.99,05/07/19 15:59,"606 Jefferson St, Boston, MA 02215" +204164,Apple Airpods Headphones,1,150,05/31/19 00:07,"532 Center St, New York City, NY 10001" +204165,Bose SoundSport Headphones,1,99.99,05/22/19 21:58,"799 Park St, Atlanta, GA 30301" +204166,USB-C Charging Cable,1,11.95,05/19/19 09:40,"783 Sunset St, Seattle, WA 98101" +204167,Google Phone,1,600,05/26/19 08:27,"993 Center St, Austin, TX 73301" +204168,Lightning Charging Cable,1,14.95,05/19/19 19:18,"814 Dogwood St, Portland, OR 97035" +204169,USB-C Charging Cable,1,11.95,05/10/19 11:47,"87 Lakeview St, Los Angeles, CA 90001" +204170,Lightning Charging Cable,1,14.95,05/10/19 12:06,"646 Hill St, Los Angeles, CA 90001" +204171,34in Ultrawide Monitor,1,379.99,05/29/19 01:08,"381 Cherry St, Los Angeles, CA 90001" +204172,USB-C Charging Cable,1,11.95,05/02/19 13:11,"998 4th St, Los Angeles, CA 90001" +204173,27in FHD Monitor,1,149.99,05/30/19 10:50,"496 Sunset St, Los Angeles, CA 90001" +204173,27in 4K Gaming Monitor,1,389.99,05/30/19 10:50,"496 Sunset St, Los Angeles, CA 90001" +204174,AAA Batteries (4-pack),1,2.99,05/22/19 19:07,"253 14th St, San Francisco, CA 94016" +204175,Wired Headphones,1,11.99,05/25/19 17:46,"233 Cherry St, Atlanta, GA 30301" +204176,Apple Airpods Headphones,1,150,05/18/19 09:48,"494 14th St, Los Angeles, CA 90001" +204177,Wired Headphones,1,11.99,05/10/19 22:11,"711 Sunset St, San Francisco, CA 94016" +204178,Apple Airpods Headphones,1,150,05/08/19 19:36,"370 5th St, Atlanta, GA 30301" +204179,27in FHD Monitor,1,149.99,05/19/19 22:50,"658 Hickory St, Dallas, TX 75001" +204180,Lightning Charging Cable,2,14.95,05/10/19 23:05,"451 Jackson St, San Francisco, CA 94016" +204181,27in 4K Gaming Monitor,1,389.99,05/22/19 20:20,"46 West St, Dallas, TX 75001" +204182,27in FHD Monitor,1,149.99,05/14/19 00:23,"100 Lake St, Austin, TX 73301" +204183,USB-C Charging Cable,1,11.95,05/29/19 13:29,"686 South St, Los Angeles, CA 90001" +204184,AAA Batteries (4-pack),3,2.99,05/29/19 13:12,"752 Maple St, San Francisco, CA 94016" +204185,27in FHD Monitor,1,149.99,05/26/19 20:55,"650 Elm St, Portland, OR 97035" +204186,Bose SoundSport Headphones,1,99.99,05/17/19 19:25,"758 1st St, Austin, TX 73301" +204187,USB-C Charging Cable,1,11.95,05/05/19 19:33,"416 North St, New York City, NY 10001" +204188,Bose SoundSport Headphones,1,99.99,05/20/19 02:26,"183 4th St, Austin, TX 73301" +204189,USB-C Charging Cable,3,11.95,05/02/19 17:02,"432 Maple St, Atlanta, GA 30301" +204190,AAA Batteries (4-pack),1,2.99,05/19/19 15:30,"742 Jefferson St, Portland, ME 04101" +204191,AA Batteries (4-pack),2,3.84,05/01/19 19:29,"242 Pine St, San Francisco, CA 94016" +204192,27in FHD Monitor,1,149.99,05/29/19 13:18,"41 4th St, New York City, NY 10001" +204193,AAA Batteries (4-pack),1,2.99,05/07/19 17:19,"620 North St, Seattle, WA 98101" +204194,AAA Batteries (4-pack),1,2.99,05/07/19 18:54,"127 Madison St, Seattle, WA 98101" +204195,LG Dryer,1,600.0,05/01/19 11:01,"236 Church St, Los Angeles, CA 90001" +204196,Bose SoundSport Headphones,1,99.99,05/30/19 18:57,"463 Hill St, San Francisco, CA 94016" +204197,Flatscreen TV,1,300,05/29/19 18:43,"730 Main St, Los Angeles, CA 90001" +204198,AA Batteries (4-pack),1,3.84,05/08/19 17:29,"707 Chestnut St, Boston, MA 02215" +204199,Bose SoundSport Headphones,1,99.99,05/30/19 12:51,"358 4th St, Atlanta, GA 30301" +204200,Apple Airpods Headphones,1,150,05/14/19 08:57,"430 Madison St, Seattle, WA 98101" +204201,Google Phone,1,600,05/24/19 20:45,"198 Hickory St, Los Angeles, CA 90001" +204202,27in FHD Monitor,1,149.99,05/23/19 15:50,"353 Cherry St, Atlanta, GA 30301" +204203,Wired Headphones,1,11.99,05/11/19 03:36,"500 Ridge St, Atlanta, GA 30301" +204204,AA Batteries (4-pack),1,3.84,05/04/19 14:42,"253 Hill St, Dallas, TX 75001" +204205,Bose SoundSport Headphones,1,99.99,05/16/19 18:32,"906 Jefferson St, Dallas, TX 75001" +204206,Bose SoundSport Headphones,1,99.99,05/29/19 08:46,"687 Wilson St, Los Angeles, CA 90001" +204207,Wired Headphones,2,11.99,05/06/19 15:14,"112 12th St, Boston, MA 02215" +204208,Bose SoundSport Headphones,1,99.99,05/18/19 19:28,"195 13th St, Seattle, WA 98101" +204209,34in Ultrawide Monitor,1,379.99,05/11/19 10:11,"409 10th St, New York City, NY 10001" +204210,AAA Batteries (4-pack),2,2.99,05/30/19 07:30,"339 Hickory St, Dallas, TX 75001" +204211,Apple Airpods Headphones,1,150,05/13/19 13:50,"530 1st St, Seattle, WA 98101" +204212,AAA Batteries (4-pack),1,2.99,05/16/19 12:55,"363 West St, Portland, OR 97035" +204213,iPhone,1,700,05/14/19 23:00,"67 6th St, Austin, TX 73301" +204213,Lightning Charging Cable,1,14.95,05/14/19 23:00,"67 6th St, Austin, TX 73301" +204214,Bose SoundSport Headphones,1,99.99,05/06/19 17:34,"993 Forest St, Portland, OR 97035" +204215,Apple Airpods Headphones,1,150,05/20/19 16:06,"545 Hill St, Dallas, TX 75001" +204216,Lightning Charging Cable,1,14.95,05/01/19 14:15,"951 1st St, San Francisco, CA 94016" +204217,USB-C Charging Cable,3,11.95,05/21/19 15:30,"292 13th St, Boston, MA 02215" +204218,AA Batteries (4-pack),2,3.84,05/11/19 13:33,"483 Lake St, New York City, NY 10001" +204219,Bose SoundSport Headphones,1,99.99,05/23/19 09:17,"636 4th St, San Francisco, CA 94016" +204220,34in Ultrawide Monitor,1,379.99,05/25/19 19:21,"788 Meadow St, Seattle, WA 98101" +204221,USB-C Charging Cable,2,11.95,05/05/19 12:02,"989 Johnson St, Austin, TX 73301" +204222,Flatscreen TV,1,300,05/20/19 21:19,"498 10th St, Seattle, WA 98101" +204223,Flatscreen TV,1,300,05/24/19 15:18,"750 West St, Los Angeles, CA 90001" +204224,34in Ultrawide Monitor,1,379.99,05/05/19 06:31,"610 Willow St, New York City, NY 10001" +204225,Wired Headphones,1,11.99,05/23/19 13:37,"917 Pine St, Boston, MA 02215" +204226,AAA Batteries (4-pack),1,2.99,05/24/19 20:32,"959 Walnut St, Portland, OR 97035" +204227,AAA Batteries (4-pack),1,2.99,05/30/19 13:38,"472 Spruce St, New York City, NY 10001" +204228,Wired Headphones,1,11.99,05/17/19 12:08,"607 South St, Los Angeles, CA 90001" +204229,Macbook Pro Laptop,1,1700,05/09/19 17:34,"782 Lakeview St, Los Angeles, CA 90001" +204230,AAA Batteries (4-pack),1,2.99,05/05/19 09:30,"779 Cedar St, San Francisco, CA 94016" +204230,Bose SoundSport Headphones,1,99.99,05/05/19 09:30,"779 Cedar St, San Francisco, CA 94016" +204231,Lightning Charging Cable,1,14.95,05/17/19 07:39,"677 Church St, San Francisco, CA 94016" +204232,USB-C Charging Cable,1,11.95,05/18/19 00:33,"885 14th St, Dallas, TX 75001" +204233,Lightning Charging Cable,1,14.95,05/16/19 08:57,"911 Cedar St, Seattle, WA 98101" +204234,Lightning Charging Cable,1,14.95,05/01/19 22:51,"432 Forest St, San Francisco, CA 94016" +204235,Google Phone,1,600,05/28/19 22:43,"39 10th St, San Francisco, CA 94016" +204236,USB-C Charging Cable,2,11.95,05/21/19 12:47,"496 Willow St, Portland, OR 97035" +204237,Google Phone,1,600,05/05/19 11:33,"879 10th St, Seattle, WA 98101" +204238,Bose SoundSport Headphones,1,99.99,05/06/19 11:54,"759 Highland St, San Francisco, CA 94016" +204239,AA Batteries (4-pack),1,3.84,05/05/19 09:22,"392 Wilson St, San Francisco, CA 94016" +204240,Google Phone,1,600,05/21/19 16:52,"813 River St, San Francisco, CA 94016" +204241,Lightning Charging Cable,1,14.95,05/23/19 09:50,"716 Johnson St, Los Angeles, CA 90001" +204242,Lightning Charging Cable,2,14.95,05/25/19 11:43,"183 Lincoln St, Los Angeles, CA 90001" +204243,USB-C Charging Cable,1,11.95,05/08/19 19:28,"885 Willow St, San Francisco, CA 94016" +204244,Lightning Charging Cable,1,14.95,05/10/19 00:13,"590 Main St, Austin, TX 73301" +204245,USB-C Charging Cable,1,11.95,05/29/19 11:33,"558 14th St, Seattle, WA 98101" +204246,Apple Airpods Headphones,1,150,05/15/19 16:22,"552 Madison St, San Francisco, CA 94016" +204247,iPhone,1,700,05/06/19 16:39,"271 Center St, Austin, TX 73301" +204248,Bose SoundSport Headphones,1,99.99,05/10/19 20:32,"569 6th St, San Francisco, CA 94016" +204249,AAA Batteries (4-pack),1,2.99,05/28/19 14:57,"208 Elm St, Boston, MA 02215" +204249,AAA Batteries (4-pack),1,2.99,05/28/19 14:57,"208 Elm St, Boston, MA 02215" +204250,Apple Airpods Headphones,1,150,05/19/19 21:46,"698 Madison St, Atlanta, GA 30301" +204251,Bose SoundSport Headphones,1,99.99,05/28/19 16:08,"754 Cherry St, San Francisco, CA 94016" +204252,27in FHD Monitor,1,149.99,05/01/19 07:46,"722 1st St, Boston, MA 02215" +204253,USB-C Charging Cable,1,11.95,05/14/19 13:50,"878 Jackson St, Atlanta, GA 30301" +204254,Bose SoundSport Headphones,1,99.99,05/17/19 17:00,"808 Cedar St, Boston, MA 02215" +204255,Apple Airpods Headphones,1,150,05/30/19 20:08,"92 1st St, New York City, NY 10001" +204256,27in FHD Monitor,1,149.99,05/20/19 13:06,"251 Center St, Los Angeles, CA 90001" +204257,Google Phone,1,600,05/12/19 13:51,"265 Adams St, New York City, NY 10001" +204258,Google Phone,1,600,05/01/19 15:33,"302 Spruce St, Boston, MA 02215" +204258,USB-C Charging Cable,1,11.95,05/01/19 15:33,"302 Spruce St, Boston, MA 02215" +204258,Bose SoundSport Headphones,1,99.99,05/01/19 15:33,"302 Spruce St, Boston, MA 02215" +204259,Macbook Pro Laptop,1,1700,05/23/19 16:25,"563 Lake St, Atlanta, GA 30301" +204260,AA Batteries (4-pack),2,3.84,05/26/19 17:39,"176 River St, Seattle, WA 98101" +204261,iPhone,1,700,05/19/19 06:39,"730 Jefferson St, San Francisco, CA 94016" +204262,Bose SoundSport Headphones,1,99.99,05/02/19 11:51,"704 Wilson St, Seattle, WA 98101" +204263,USB-C Charging Cable,1,11.95,05/22/19 23:56,"110 13th St, Los Angeles, CA 90001" +204264,AAA Batteries (4-pack),2,2.99,05/02/19 08:02,"464 Walnut St, San Francisco, CA 94016" +204265,Wired Headphones,1,11.99,05/27/19 20:41,"312 Wilson St, New York City, NY 10001" +204266,Lightning Charging Cable,1,14.95,05/09/19 17:23,"667 6th St, Seattle, WA 98101" +204267,Apple Airpods Headphones,1,150,05/18/19 10:55,"712 Pine St, New York City, NY 10001" +204267,AAA Batteries (4-pack),1,2.99,05/18/19 10:55,"712 Pine St, New York City, NY 10001" +204268,34in Ultrawide Monitor,1,379.99,05/05/19 02:46,"477 Dogwood St, Atlanta, GA 30301" +204269,Lightning Charging Cable,1,14.95,05/01/19 14:47,"287 1st St, Los Angeles, CA 90001" +204270,Apple Airpods Headphones,1,150,05/05/19 07:57,"362 West St, San Francisco, CA 94016" +204271,USB-C Charging Cable,2,11.95,05/12/19 11:44,"434 Lincoln St, Boston, MA 02215" +204272,AAA Batteries (4-pack),1,2.99,05/18/19 19:40,"819 Ridge St, Los Angeles, CA 90001" +204273,Bose SoundSport Headphones,1,99.99,05/23/19 14:54,"320 Maple St, Austin, TX 73301" +204274,Apple Airpods Headphones,1,150,05/16/19 15:54,"843 Pine St, Portland, OR 97035" +204275,USB-C Charging Cable,1,11.95,05/13/19 20:41,"495 Sunset St, Dallas, TX 75001" +204276,Bose SoundSport Headphones,1,99.99,05/13/19 16:49,"120 Willow St, Los Angeles, CA 90001" +204277,AA Batteries (4-pack),1,3.84,05/19/19 12:20,"894 Adams St, San Francisco, CA 94016" +204278,Lightning Charging Cable,1,14.95,05/25/19 02:22,"695 Lake St, Los Angeles, CA 90001" +204279,20in Monitor,1,109.99,05/18/19 15:04,"136 1st St, Los Angeles, CA 90001" +204280,AA Batteries (4-pack),1,3.84,05/10/19 03:13,"794 Jackson St, San Francisco, CA 94016" +204281,Lightning Charging Cable,1,14.95,05/03/19 23:19,"69 North St, Seattle, WA 98101" +204282,Bose SoundSport Headphones,1,99.99,05/13/19 13:29,"802 Hill St, Los Angeles, CA 90001" +204283,Macbook Pro Laptop,1,1700,05/11/19 19:18,"268 4th St, San Francisco, CA 94016" +204284,iPhone,1,700,05/15/19 18:46,"101 8th St, New York City, NY 10001" +204285,Lightning Charging Cable,1,14.95,05/06/19 11:32,"388 Lincoln St, Los Angeles, CA 90001" +204286,ThinkPad Laptop,1,999.99,05/12/19 10:26,"884 Dogwood St, San Francisco, CA 94016" +204287,AA Batteries (4-pack),2,3.84,05/31/19 04:00,"592 12th St, Portland, ME 04101" +204288,Bose SoundSport Headphones,1,99.99,05/29/19 11:55,"751 13th St, San Francisco, CA 94016" +204289,27in 4K Gaming Monitor,1,389.99,05/17/19 12:53,"716 Adams St, Boston, MA 02215" +204290,AA Batteries (4-pack),1,3.84,05/07/19 10:34,"969 Hickory St, Atlanta, GA 30301" +204291,AA Batteries (4-pack),2,3.84,05/10/19 06:52,"298 4th St, Los Angeles, CA 90001" +204292,Wired Headphones,1,11.99,05/28/19 10:09,"258 Jackson St, Seattle, WA 98101" +204293,Flatscreen TV,1,300,05/28/19 22:31,"158 West St, Seattle, WA 98101" +204294,AAA Batteries (4-pack),2,2.99,05/31/19 06:58,"708 14th St, San Francisco, CA 94016" +204295,AA Batteries (4-pack),1,3.84,05/19/19 22:53,"831 Lake St, San Francisco, CA 94016" +204296,AA Batteries (4-pack),1,3.84,05/05/19 08:09,"472 Main St, Atlanta, GA 30301" +204297,27in 4K Gaming Monitor,1,389.99,05/06/19 20:16,"504 Lakeview St, San Francisco, CA 94016" +204298,Apple Airpods Headphones,1,150,05/06/19 20:03,"84 8th St, Portland, OR 97035" +204299,34in Ultrawide Monitor,1,379.99,05/20/19 15:29,"491 Willow St, Portland, OR 97035" +204300,Bose SoundSport Headphones,2,99.99,05/22/19 21:52,"477 Main St, New York City, NY 10001" +204301,AAA Batteries (4-pack),1,2.99,05/03/19 13:06,"975 5th St, San Francisco, CA 94016" +204302,27in FHD Monitor,1,149.99,05/31/19 20:51,"294 2nd St, Los Angeles, CA 90001" +204303,Flatscreen TV,1,300,05/28/19 00:45,"24 13th St, Dallas, TX 75001" +204304,USB-C Charging Cable,1,11.95,05/16/19 16:23,"459 Hill St, Seattle, WA 98101" +204305,Lightning Charging Cable,1,14.95,05/27/19 23:02,"708 Jefferson St, Los Angeles, CA 90001" +204306,USB-C Charging Cable,1,11.95,05/05/19 11:05,"914 Lake St, Boston, MA 02215" +204307,AA Batteries (4-pack),1,3.84,05/21/19 17:15,"447 7th St, Los Angeles, CA 90001" +204308,AAA Batteries (4-pack),1,2.99,05/27/19 17:59,"826 South St, Los Angeles, CA 90001" +204309,Flatscreen TV,1,300,05/07/19 14:41,"759 Ridge St, Boston, MA 02215" +204310,Macbook Pro Laptop,1,1700,05/03/19 11:29,"569 Lake St, Los Angeles, CA 90001" +204311,AA Batteries (4-pack),3,3.84,05/04/19 13:46,"514 Elm St, Boston, MA 02215" +204312,Macbook Pro Laptop,1,1700,05/10/19 10:14,"827 4th St, Austin, TX 73301" +204313,20in Monitor,1,109.99,05/14/19 20:35,"685 Madison St, San Francisco, CA 94016" +204314,Lightning Charging Cable,1,14.95,05/18/19 08:45,"168 Main St, Los Angeles, CA 90001" +204315,AAA Batteries (4-pack),1,2.99,05/20/19 14:17,"750 River St, Portland, OR 97035" +204316,Apple Airpods Headphones,1,150,05/27/19 09:52,"783 Johnson St, New York City, NY 10001" +204317,Wired Headphones,1,11.99,05/23/19 19:06,"583 Meadow St, San Francisco, CA 94016" +204318,Lightning Charging Cable,1,14.95,05/27/19 13:12,"588 9th St, Seattle, WA 98101" +204319,Apple Airpods Headphones,1,150,05/04/19 11:07,"641 Dogwood St, Atlanta, GA 30301" +204320,USB-C Charging Cable,1,11.95,05/14/19 13:06,"122 Walnut St, Atlanta, GA 30301" +204321,Apple Airpods Headphones,1,150,06/01/19 02:23,"972 Walnut St, Seattle, WA 98101" +204322,Lightning Charging Cable,1,14.95,05/04/19 17:40,"241 Wilson St, Austin, TX 73301" +204323,AA Batteries (4-pack),1,3.84,05/22/19 10:49,"962 5th St, San Francisco, CA 94016" +204324,34in Ultrawide Monitor,1,379.99,05/23/19 11:47,"333 Jackson St, Seattle, WA 98101" +204325,Lightning Charging Cable,1,14.95,05/05/19 19:13,"239 14th St, Portland, OR 97035" +204326,USB-C Charging Cable,1,11.95,05/02/19 10:55,"580 7th St, San Francisco, CA 94016" +204327,AAA Batteries (4-pack),1,2.99,05/01/19 20:09,"762 South St, Seattle, WA 98101" +204328,Google Phone,1,600,05/26/19 16:40,"171 Maple St, Los Angeles, CA 90001" +204328,Wired Headphones,1,11.99,05/26/19 16:40,"171 Maple St, Los Angeles, CA 90001" +204329,USB-C Charging Cable,1,11.95,05/27/19 13:48,"292 Church St, Los Angeles, CA 90001" +204330,USB-C Charging Cable,1,11.95,05/11/19 21:05,"120 11th St, San Francisco, CA 94016" +204330,Google Phone,1,600,05/11/19 21:05,"120 11th St, San Francisco, CA 94016" +204331,Bose SoundSport Headphones,1,99.99,05/05/19 23:09,"752 4th St, San Francisco, CA 94016" +204332,Apple Airpods Headphones,1,150,05/31/19 13:11,"296 10th St, Seattle, WA 98101" +204333,AAA Batteries (4-pack),2,2.99,05/26/19 09:20,"704 Wilson St, Seattle, WA 98101" +204334,USB-C Charging Cable,1,11.95,05/27/19 16:03,"246 Center St, Dallas, TX 75001" +204335,Lightning Charging Cable,1,14.95,05/20/19 00:39,"69 Ridge St, Seattle, WA 98101" +204335,20in Monitor,1,109.99,05/20/19 00:39,"69 Ridge St, Seattle, WA 98101" +204336,Google Phone,1,600,05/26/19 00:27,"948 Jefferson St, San Francisco, CA 94016" +204337,Google Phone,1,600,05/28/19 07:23,"423 Adams St, Dallas, TX 75001" +204338,Apple Airpods Headphones,1,150,05/06/19 21:53,"140 9th St, Dallas, TX 75001" +204339,AAA Batteries (4-pack),1,2.99,05/23/19 17:30,"635 Cedar St, Portland, OR 97035" +204340,Apple Airpods Headphones,1,150,05/05/19 12:21,"910 6th St, Seattle, WA 98101" +204341,20in Monitor,1,109.99,05/13/19 11:53,"590 Pine St, Dallas, TX 75001" +204342,Google Phone,1,600,05/13/19 22:27,"306 13th St, Los Angeles, CA 90001" +204343,USB-C Charging Cable,2,11.95,05/28/19 21:56,"906 7th St, Seattle, WA 98101" +204344,AAA Batteries (4-pack),2,2.99,05/09/19 21:48,"659 1st St, New York City, NY 10001" +,,,,, +204345,Wired Headphones,1,11.99,05/30/19 18:50,"217 5th St, Los Angeles, CA 90001" +204346,Lightning Charging Cable,2,14.95,05/09/19 20:41,"743 Chestnut St, San Francisco, CA 94016" +204347,27in FHD Monitor,1,149.99,05/25/19 21:40,"424 Forest St, Dallas, TX 75001" +204348,AAA Batteries (4-pack),1,2.99,05/12/19 20:53,"199 2nd St, Los Angeles, CA 90001" +204349,Wired Headphones,1,11.99,05/19/19 11:51,"148 4th St, New York City, NY 10001" +204350,20in Monitor,1,109.99,05/19/19 13:55,"57 North St, New York City, NY 10001" +204351,20in Monitor,1,109.99,05/26/19 20:51,"730 Dogwood St, San Francisco, CA 94016" +204352,Bose SoundSport Headphones,1,99.99,05/08/19 10:34,"938 Park St, New York City, NY 10001" +204353,AAA Batteries (4-pack),1,2.99,05/08/19 22:35,"343 9th St, Atlanta, GA 30301" +204354,Wired Headphones,1,11.99,05/01/19 14:31,"21 Meadow St, Dallas, TX 75001" +204355,Lightning Charging Cable,1,14.95,05/24/19 10:26,"921 6th St, Los Angeles, CA 90001" +204356,Wired Headphones,1,11.99,05/08/19 18:23,"596 Ridge St, San Francisco, CA 94016" +204357,AAA Batteries (4-pack),2,2.99,05/31/19 16:26,"186 12th St, New York City, NY 10001" +204358,Lightning Charging Cable,1,14.95,05/25/19 13:45,"419 Spruce St, Boston, MA 02215" +204359,Google Phone,1,600,05/30/19 01:58,"257 Jefferson St, San Francisco, CA 94016" +204359,USB-C Charging Cable,2,11.95,05/30/19 01:58,"257 Jefferson St, San Francisco, CA 94016" +204360,Google Phone,1,600,05/19/19 21:44,"781 5th St, New York City, NY 10001" +204361,Lightning Charging Cable,2,14.95,05/15/19 20:11,"25 Cedar St, Seattle, WA 98101" +204362,20in Monitor,1,109.99,05/11/19 14:48,"927 5th St, San Francisco, CA 94016" +204363,AA Batteries (4-pack),2,3.84,05/26/19 22:12,"565 Cedar St, Boston, MA 02215" +204364,USB-C Charging Cable,1,11.95,05/01/19 12:28,"278 Jefferson St, San Francisco, CA 94016" +204365,Wired Headphones,1,11.99,05/22/19 16:23,"486 Walnut St, San Francisco, CA 94016" +204365,Lightning Charging Cable,1,14.95,05/22/19 16:23,"486 Walnut St, San Francisco, CA 94016" +204366,27in 4K Gaming Monitor,1,389.99,05/14/19 18:04,"850 Sunset St, Atlanta, GA 30301" +204367,AAA Batteries (4-pack),1,2.99,05/25/19 12:11,"203 Spruce St, San Francisco, CA 94016" +204368,Bose SoundSport Headphones,1,99.99,05/21/19 00:41,"560 Lake St, Boston, MA 02215" +204369,AA Batteries (4-pack),1,3.84,05/11/19 14:47,"98 Sunset St, Dallas, TX 75001" +204370,Google Phone,1,600,05/21/19 23:50,"393 Cherry St, Los Angeles, CA 90001" +204370,USB-C Charging Cable,1,11.95,05/21/19 23:50,"393 Cherry St, Los Angeles, CA 90001" +204371,Macbook Pro Laptop,1,1700,05/28/19 12:59,"91 Pine St, San Francisco, CA 94016" +204372,Lightning Charging Cable,1,14.95,05/02/19 15:24,"250 Walnut St, Austin, TX 73301" +204373,AA Batteries (4-pack),1,3.84,05/10/19 13:05,"37 Elm St, San Francisco, CA 94016" +204374,Lightning Charging Cable,1,14.95,05/22/19 18:21,"397 River St, Boston, MA 02215" +204375,27in FHD Monitor,1,149.99,05/21/19 19:42,"295 Meadow St, San Francisco, CA 94016" +204376,AAA Batteries (4-pack),2,2.99,05/16/19 10:18,"296 Main St, San Francisco, CA 94016" +204377,AA Batteries (4-pack),1,3.84,05/24/19 02:57,"434 Hickory St, Los Angeles, CA 90001" +204378,AA Batteries (4-pack),2,3.84,05/13/19 08:54,"451 Willow St, Atlanta, GA 30301" +204379,AAA Batteries (4-pack),3,2.99,05/14/19 12:17,"826 5th St, New York City, NY 10001" +204380,34in Ultrawide Monitor,1,379.99,05/10/19 12:13,"297 6th St, Boston, MA 02215" +204381,Apple Airpods Headphones,1,150,05/19/19 20:00,"406 12th St, San Francisco, CA 94016" +204382,iPhone,1,700,05/01/19 13:37,"607 7th St, San Francisco, CA 94016" +204382,Lightning Charging Cable,1,14.95,05/01/19 13:37,"607 7th St, San Francisco, CA 94016" +204383,Wired Headphones,1,11.99,05/29/19 15:04,"604 Adams St, San Francisco, CA 94016" +204384,Bose SoundSport Headphones,1,99.99,05/19/19 10:42,"294 Highland St, San Francisco, CA 94016" +204385,ThinkPad Laptop,1,999.99,05/30/19 08:26,"676 Madison St, New York City, NY 10001" +204386,USB-C Charging Cable,1,11.95,05/21/19 18:04,"591 Adams St, San Francisco, CA 94016" +204387,AAA Batteries (4-pack),1,2.99,05/01/19 21:16,"894 Maple St, San Francisco, CA 94016" +204388,USB-C Charging Cable,1,11.95,05/04/19 16:48,"909 Jackson St, San Francisco, CA 94016" +204389,Lightning Charging Cable,1,14.95,05/03/19 13:49,"207 Lake St, Los Angeles, CA 90001" +204390,AAA Batteries (4-pack),1,2.99,05/10/19 21:10,"663 Cherry St, San Francisco, CA 94016" +204391,Google Phone,1,600,05/04/19 12:35,"715 Cedar St, New York City, NY 10001" +204392,34in Ultrawide Monitor,1,379.99,05/04/19 13:35,"577 Center St, San Francisco, CA 94016" +204393,AA Batteries (4-pack),1,3.84,05/31/19 00:34,"636 Adams St, New York City, NY 10001" +204394,AAA Batteries (4-pack),2,2.99,05/30/19 11:19,"308 12th St, San Francisco, CA 94016" +204395,Lightning Charging Cable,1,14.95,05/17/19 08:54,"303 Church St, San Francisco, CA 94016" +204396,Vareebadd Phone,1,400,05/01/19 09:28,"417 13th St, Dallas, TX 75001" +204397,Wired Headphones,1,11.99,05/02/19 12:22,"126 North St, Seattle, WA 98101" +204398,USB-C Charging Cable,1,11.95,05/03/19 22:15,"846 14th St, Portland, ME 04101" +204399,AAA Batteries (4-pack),1,2.99,05/03/19 07:19,"263 12th St, San Francisco, CA 94016" +204400,Apple Airpods Headphones,1,150,05/14/19 16:59,"561 Chestnut St, New York City, NY 10001" +204401,AAA Batteries (4-pack),2,2.99,05/03/19 08:39,"393 5th St, New York City, NY 10001" +204402,34in Ultrawide Monitor,1,379.99,05/15/19 13:26,"555 Willow St, Seattle, WA 98101" +204403,Macbook Pro Laptop,1,1700,05/24/19 22:23,"384 Willow St, Boston, MA 02215" +204404,AA Batteries (4-pack),1,3.84,05/21/19 11:59,"835 Hickory St, Dallas, TX 75001" +204405,Wired Headphones,1,11.99,05/23/19 16:01,"467 Hill St, San Francisco, CA 94016" +204406,Flatscreen TV,1,300,05/20/19 11:16,"65 Wilson St, San Francisco, CA 94016" +204407,ThinkPad Laptop,1,999.99,05/14/19 17:42,"107 Ridge St, San Francisco, CA 94016" +204408,Apple Airpods Headphones,1,150,05/02/19 08:00,"234 Elm St, Dallas, TX 75001" +204409,Macbook Pro Laptop,1,1700,05/08/19 05:05,"858 Washington St, Atlanta, GA 30301" +204410,AA Batteries (4-pack),1,3.84,05/21/19 08:27,"536 Meadow St, Los Angeles, CA 90001" +204411,AA Batteries (4-pack),1,3.84,05/14/19 16:53,"892 Chestnut St, San Francisco, CA 94016" +204412,Bose SoundSport Headphones,1,99.99,05/29/19 15:43,"294 1st St, San Francisco, CA 94016" +204413,Lightning Charging Cable,1,14.95,05/05/19 14:57,"877 Wilson St, San Francisco, CA 94016" +204414,iPhone,1,700,05/29/19 17:46,"141 6th St, Seattle, WA 98101" +204415,Bose SoundSport Headphones,1,99.99,05/06/19 19:46,"753 Lakeview St, Boston, MA 02215" +204416,Wired Headphones,1,11.99,05/17/19 08:21,"871 Chestnut St, Atlanta, GA 30301" +204417,Wired Headphones,1,11.99,05/06/19 10:02,"460 Maple St, San Francisco, CA 94016" +204418,AAA Batteries (4-pack),2,2.99,05/03/19 20:37,"123 South St, Los Angeles, CA 90001" +204419,Bose SoundSport Headphones,1,99.99,05/04/19 11:46,"770 Ridge St, San Francisco, CA 94016" +204420,34in Ultrawide Monitor,1,379.99,05/01/19 16:53,"312 Hill St, Boston, MA 02215" +204421,Bose SoundSport Headphones,1,99.99,05/24/19 01:31,"44 2nd St, Dallas, TX 75001" +204422,AA Batteries (4-pack),3,3.84,05/17/19 16:17,"857 14th St, Los Angeles, CA 90001" +204423,AAA Batteries (4-pack),1,2.99,05/28/19 00:32,"342 Jackson St, San Francisco, CA 94016" +204424,Bose SoundSport Headphones,1,99.99,05/17/19 22:38,"571 Elm St, San Francisco, CA 94016" +204425,AA Batteries (4-pack),1,3.84,05/20/19 16:59,"538 10th St, San Francisco, CA 94016" +204426,27in FHD Monitor,1,149.99,05/29/19 11:17,"841 Center St, Los Angeles, CA 90001" +204427,Lightning Charging Cable,1,14.95,05/11/19 21:22,"328 11th St, Portland, OR 97035" +204428,27in FHD Monitor,1,149.99,05/26/19 22:30,"869 14th St, New York City, NY 10001" +204429,Wired Headphones,1,11.99,05/31/19 10:39,"819 4th St, Dallas, TX 75001" +204430,Google Phone,1,600,05/13/19 23:08,"362 Madison St, San Francisco, CA 94016" +204431,Google Phone,1,600,05/14/19 11:17,"555 Washington St, Portland, OR 97035" +204431,Macbook Pro Laptop,1,1700,05/14/19 11:17,"555 Washington St, Portland, OR 97035" +204432,AA Batteries (4-pack),1,3.84,05/14/19 15:07,"501 12th St, San Francisco, CA 94016" +204433,AAA Batteries (4-pack),1,2.99,05/29/19 09:47,"16 Park St, New York City, NY 10001" +204434,Flatscreen TV,1,300,05/05/19 10:04,"170 Chestnut St, Los Angeles, CA 90001" +204435,Macbook Pro Laptop,1,1700,05/24/19 14:48,"85 5th St, Dallas, TX 75001" +204436,AA Batteries (4-pack),1,3.84,05/13/19 14:10,"226 Johnson St, New York City, NY 10001" +204437,iPhone,1,700,05/11/19 19:02,"139 Main St, Los Angeles, CA 90001" +204438,Lightning Charging Cable,1,14.95,05/20/19 20:08,"160 Willow St, New York City, NY 10001" +204439,Google Phone,1,600,05/13/19 13:41,"141 Elm St, San Francisco, CA 94016" +204440,Lightning Charging Cable,1,14.95,05/19/19 09:59,"996 Hickory St, San Francisco, CA 94016" +204441,Apple Airpods Headphones,1,150,05/27/19 13:07,"487 Meadow St, San Francisco, CA 94016" +204442,USB-C Charging Cable,1,11.95,05/01/19 11:59,"74 Sunset St, Los Angeles, CA 90001" +204443,Google Phone,1,600,05/22/19 07:58,"846 River St, Boston, MA 02215" +204444,AA Batteries (4-pack),1,3.84,05/31/19 17:36,"421 Spruce St, Boston, MA 02215" +204445,USB-C Charging Cable,2,11.95,05/17/19 17:20,"460 5th St, San Francisco, CA 94016" +204446,Lightning Charging Cable,1,14.95,05/20/19 12:37,"517 Center St, San Francisco, CA 94016" +204447,AAA Batteries (4-pack),1,2.99,05/30/19 20:56,"330 Johnson St, San Francisco, CA 94016" +204448,AAA Batteries (4-pack),2,2.99,05/16/19 12:22,"776 North St, Boston, MA 02215" +204449,AAA Batteries (4-pack),2,2.99,05/04/19 19:58,"491 Cherry St, Dallas, TX 75001" +204450,iPhone,1,700,05/28/19 14:16,"665 Lakeview St, Seattle, WA 98101" +204450,Apple Airpods Headphones,1,150,05/28/19 14:16,"665 Lakeview St, Seattle, WA 98101" +204451,Wired Headphones,1,11.99,05/05/19 14:23,"72 4th St, Los Angeles, CA 90001" +204452,Google Phone,1,600,05/29/19 20:59,"960 4th St, New York City, NY 10001" +204453,Wired Headphones,2,11.99,05/16/19 12:01,"45 Meadow St, Los Angeles, CA 90001" +204454,Macbook Pro Laptop,1,1700,05/22/19 21:37,"229 Chestnut St, San Francisco, CA 94016" +204455,AA Batteries (4-pack),1,3.84,05/23/19 11:48,"260 West St, New York City, NY 10001" +204456,USB-C Charging Cable,1,11.95,05/23/19 14:45,"26 West St, San Francisco, CA 94016" +204457,AA Batteries (4-pack),2,3.84,05/20/19 13:03,"300 Lakeview St, Dallas, TX 75001" +204458,20in Monitor,1,109.99,05/18/19 22:52,"935 Lake St, Seattle, WA 98101" +204459,Lightning Charging Cable,1,14.95,05/27/19 22:18,"665 6th St, San Francisco, CA 94016" +204460,Lightning Charging Cable,1,14.95,05/13/19 20:47,"738 Lincoln St, San Francisco, CA 94016" +204461,ThinkPad Laptop,1,999.99,05/14/19 18:45,"259 Johnson St, San Francisco, CA 94016" +204462,ThinkPad Laptop,1,999.99,05/11/19 17:45,"522 Washington St, Dallas, TX 75001" +204463,AAA Batteries (4-pack),2,2.99,05/16/19 13:32,"135 9th St, Boston, MA 02215" +204464,iPhone,1,700,05/03/19 19:10,"997 Jackson St, Atlanta, GA 30301" +204465,Macbook Pro Laptop,1,1700,05/15/19 09:36,"266 Hickory St, New York City, NY 10001" +204466,Lightning Charging Cable,1,14.95,05/12/19 09:15,"335 Willow St, New York City, NY 10001" +204467,AAA Batteries (4-pack),1,2.99,05/04/19 21:49,"161 12th St, Los Angeles, CA 90001" +204468,Wired Headphones,1,11.99,05/12/19 22:42,"220 7th St, Austin, TX 73301" +204469,AA Batteries (4-pack),1,3.84,05/18/19 20:03,"417 13th St, New York City, NY 10001" +204470,USB-C Charging Cable,1,11.95,05/09/19 17:40,"499 4th St, Los Angeles, CA 90001" +204470,AA Batteries (4-pack),1,3.84,05/09/19 17:40,"499 4th St, Los Angeles, CA 90001" +204471,AA Batteries (4-pack),1,3.84,05/31/19 13:59,"29 5th St, San Francisco, CA 94016" +204472,AA Batteries (4-pack),1,3.84,05/10/19 20:11,"596 Lake St, Austin, TX 73301" +204473,Lightning Charging Cable,1,14.95,05/30/19 06:38,"533 4th St, Portland, OR 97035" +204474,Lightning Charging Cable,1,14.95,05/31/19 13:56,"922 Hill St, Los Angeles, CA 90001" +204475,Lightning Charging Cable,1,14.95,05/29/19 19:25,"450 4th St, Atlanta, GA 30301" +204476,Apple Airpods Headphones,1,150,05/14/19 16:14,"390 Chestnut St, Los Angeles, CA 90001" +204477,iPhone,1,700,05/03/19 23:46,"258 Lincoln St, San Francisco, CA 94016" +204478,AA Batteries (4-pack),1,3.84,05/31/19 18:00,"591 Forest St, Boston, MA 02215" +204479,USB-C Charging Cable,1,11.95,05/09/19 16:47,"585 Hill St, Dallas, TX 75001" +204480,AA Batteries (4-pack),3,3.84,05/13/19 16:33,"736 Washington St, Seattle, WA 98101" +204481,Google Phone,1,600,05/28/19 10:09,"487 Hickory St, Los Angeles, CA 90001" +204482,AA Batteries (4-pack),1,3.84,05/01/19 22:53,"553 Jefferson St, Atlanta, GA 30301" +204483,AAA Batteries (4-pack),2,2.99,05/24/19 23:14,"194 Highland St, Los Angeles, CA 90001" +204484,Lightning Charging Cable,1,14.95,05/03/19 16:55,"376 Chestnut St, Atlanta, GA 30301" +204485,Apple Airpods Headphones,1,150,05/18/19 13:48,"856 Cedar St, Seattle, WA 98101" +204486,AAA Batteries (4-pack),1,2.99,05/13/19 21:54,"147 Chestnut St, New York City, NY 10001" +204487,Lightning Charging Cable,1,14.95,05/06/19 11:09,"227 Adams St, Atlanta, GA 30301" +204488,Macbook Pro Laptop,1,1700,05/02/19 00:01,"452 Hickory St, San Francisco, CA 94016" +204489,USB-C Charging Cable,1,11.95,05/26/19 11:02,"371 Washington St, Atlanta, GA 30301" +204490,Apple Airpods Headphones,1,150,05/31/19 12:31,"490 10th St, Los Angeles, CA 90001" +204491,AA Batteries (4-pack),1,3.84,05/12/19 01:17,"723 7th St, Austin, TX 73301" +204492,Apple Airpods Headphones,1,150,05/24/19 20:10,"420 South St, San Francisco, CA 94016" +204493,AAA Batteries (4-pack),2,2.99,05/29/19 15:48,"711 Maple St, Portland, ME 04101" +204494,Bose SoundSport Headphones,1,99.99,05/24/19 12:30,"156 Park St, Los Angeles, CA 90001" +204495,AA Batteries (4-pack),1,3.84,05/15/19 22:12,"878 West St, Atlanta, GA 30301" +204496,27in FHD Monitor,1,149.99,05/11/19 15:57,"744 Park St, San Francisco, CA 94016" +204497,AAA Batteries (4-pack),2,2.99,05/17/19 11:49,"886 Ridge St, Portland, OR 97035" +204498,iPhone,1,700,05/09/19 10:45,"432 Highland St, San Francisco, CA 94016" +204499,27in FHD Monitor,1,149.99,05/15/19 19:18,"178 9th St, Atlanta, GA 30301" +,,,,, +204500,Wired Headphones,1,11.99,05/10/19 11:47,"804 Jefferson St, San Francisco, CA 94016" +204501,Bose SoundSport Headphones,1,99.99,05/29/19 08:12,"366 Madison St, San Francisco, CA 94016" +204502,Lightning Charging Cable,1,14.95,05/25/19 16:41,"383 Hill St, Austin, TX 73301" +204503,Flatscreen TV,1,300,05/27/19 11:50,"362 6th St, Los Angeles, CA 90001" +204504,USB-C Charging Cable,1,11.95,05/21/19 13:41,"581 13th St, Los Angeles, CA 90001" +204505,AAA Batteries (4-pack),2,2.99,05/22/19 14:38,"293 River St, San Francisco, CA 94016" +204506,34in Ultrawide Monitor,1,379.99,05/07/19 10:07,"104 6th St, Dallas, TX 75001" +204507,Flatscreen TV,1,300,05/24/19 10:03,"858 14th St, Los Angeles, CA 90001" +204508,AA Batteries (4-pack),1,3.84,05/15/19 07:39,"662 2nd St, San Francisco, CA 94016" +204509,Macbook Pro Laptop,1,1700,05/28/19 16:05,"188 Hickory St, Portland, ME 04101" +204510,AAA Batteries (4-pack),6,2.99,05/15/19 21:56,"663 Jefferson St, San Francisco, CA 94016" +204511,20in Monitor,1,109.99,05/16/19 20:03,"854 Madison St, New York City, NY 10001" +204512,AA Batteries (4-pack),1,3.84,05/15/19 23:44,"243 Ridge St, San Francisco, CA 94016" +204513,Bose SoundSport Headphones,1,99.99,05/24/19 20:53,"168 Sunset St, Los Angeles, CA 90001" +204514,AA Batteries (4-pack),1,3.84,05/18/19 14:56,"575 Washington St, Atlanta, GA 30301" +204515,Bose SoundSport Headphones,1,99.99,05/04/19 15:49,"757 4th St, Los Angeles, CA 90001" +204516,AAA Batteries (4-pack),1,2.99,05/11/19 10:17,"781 Jefferson St, Austin, TX 73301" +204517,ThinkPad Laptop,1,999.99,05/03/19 20:47,"509 Spruce St, Austin, TX 73301" +204518,Wired Headphones,2,11.99,05/04/19 16:01,"535 1st St, San Francisco, CA 94016" +204519,Lightning Charging Cable,2,14.95,05/13/19 18:33,"467 Walnut St, New York City, NY 10001" +204520,Lightning Charging Cable,1,14.95,05/30/19 19:07,"686 Lake St, New York City, NY 10001" +204521,USB-C Charging Cable,1,11.95,05/02/19 02:00,"681 Walnut St, San Francisco, CA 94016" +204522,Bose SoundSport Headphones,1,99.99,05/26/19 12:29,"670 Park St, Atlanta, GA 30301" +204523,AAA Batteries (4-pack),1,2.99,05/07/19 05:14,"343 Park St, New York City, NY 10001" +204524,AA Batteries (4-pack),3,3.84,05/27/19 20:35,"288 Maple St, Dallas, TX 75001" +204525,Apple Airpods Headphones,1,150,05/19/19 11:26,"130 Highland St, Boston, MA 02215" +204526,Wired Headphones,1,11.99,05/11/19 17:29,"418 14th St, Seattle, WA 98101" +204527,Wired Headphones,3,11.99,05/02/19 10:42,"925 Forest St, New York City, NY 10001" +204528,AAA Batteries (4-pack),1,2.99,05/28/19 20:57,"175 1st St, Boston, MA 02215" +204529,Wired Headphones,1,11.99,05/08/19 11:40,"341 Jackson St, Boston, MA 02215" +204530,AA Batteries (4-pack),1,3.84,05/09/19 23:50,"937 1st St, Austin, TX 73301" +204531,iPhone,1,700,05/08/19 15:59,"999 Center St, Dallas, TX 75001" +204532,Bose SoundSport Headphones,1,99.99,05/22/19 15:35,"69 Elm St, Dallas, TX 75001" +204533,ThinkPad Laptop,1,999.99,05/28/19 18:27,"464 Main St, Portland, OR 97035" +204534,Vareebadd Phone,1,400,05/22/19 17:20,"145 Ridge St, Los Angeles, CA 90001" +204535,AA Batteries (4-pack),1,3.84,05/06/19 20:34,"199 Spruce St, San Francisco, CA 94016" +204536,Apple Airpods Headphones,1,150,05/07/19 14:13,"10 Maple St, San Francisco, CA 94016" +204537,Wired Headphones,1,11.99,05/24/19 15:23,"517 Washington St, Los Angeles, CA 90001" +204538,AA Batteries (4-pack),1,3.84,05/30/19 11:56,"967 Lake St, Dallas, TX 75001" +204539,Lightning Charging Cable,1,14.95,05/29/19 13:59,"547 Pine St, San Francisco, CA 94016" +204540,AA Batteries (4-pack),1,3.84,05/11/19 09:02,"411 Jefferson St, Los Angeles, CA 90001" +204541,USB-C Charging Cable,1,11.95,05/16/19 23:56,"801 9th St, Austin, TX 73301" +204542,Bose SoundSport Headphones,1,99.99,05/21/19 21:32,"581 Madison St, Seattle, WA 98101" +204543,AA Batteries (4-pack),3,3.84,05/14/19 23:19,"994 1st St, San Francisco, CA 94016" +204544,Apple Airpods Headphones,1,150,05/06/19 14:39,"437 River St, San Francisco, CA 94016" +204545,AAA Batteries (4-pack),1,2.99,05/25/19 17:04,"921 Highland St, Dallas, TX 75001" +204546,Wired Headphones,1,11.99,05/09/19 13:06,"435 River St, Dallas, TX 75001" +204547,Lightning Charging Cable,2,14.95,05/10/19 15:15,"266 7th St, Boston, MA 02215" +204548,20in Monitor,1,109.99,05/07/19 02:04,"425 River St, San Francisco, CA 94016" +204549,27in FHD Monitor,1,149.99,05/04/19 11:19,"240 Highland St, Atlanta, GA 30301" +204550,AAA Batteries (4-pack),2,2.99,05/27/19 15:18,"359 Spruce St, Los Angeles, CA 90001" +204550,iPhone,1,700,05/27/19 15:18,"359 Spruce St, Los Angeles, CA 90001" +204551,Bose SoundSport Headphones,1,99.99,05/18/19 10:18,"580 Cedar St, Portland, OR 97035" +204552,AAA Batteries (4-pack),1,2.99,05/28/19 13:18,"847 Cedar St, Los Angeles, CA 90001" +204553,Apple Airpods Headphones,1,150,05/15/19 12:01,"595 13th St, Atlanta, GA 30301" +204554,USB-C Charging Cable,1,11.95,05/02/19 13:58,"460 Jackson St, San Francisco, CA 94016" +204555,AAA Batteries (4-pack),3,2.99,05/22/19 23:40,"547 Johnson St, Austin, TX 73301" +204556,Wired Headphones,1,11.99,05/08/19 11:14,"752 14th St, Austin, TX 73301" +204557,AAA Batteries (4-pack),2,2.99,05/09/19 14:58,"18 South St, Los Angeles, CA 90001" +204558,Google Phone,1,600,05/20/19 20:37,"859 Cherry St, Los Angeles, CA 90001" +204559,Lightning Charging Cable,1,14.95,05/26/19 04:06,"906 Lakeview St, San Francisco, CA 94016" +204560,USB-C Charging Cable,1,11.95,05/02/19 15:15,"848 Wilson St, San Francisco, CA 94016" +204561,Apple Airpods Headphones,1,150,05/25/19 08:00,"150 Sunset St, Portland, OR 97035" +204562,Lightning Charging Cable,1,14.95,05/21/19 00:31,"455 Jefferson St, Boston, MA 02215" +204563,Wired Headphones,1,11.99,05/15/19 13:42,"352 Wilson St, San Francisco, CA 94016" +204564,Google Phone,1,600,05/23/19 13:17,"631 Walnut St, Boston, MA 02215" +204564,USB-C Charging Cable,1,11.95,05/23/19 13:17,"631 Walnut St, Boston, MA 02215" +204565,iPhone,1,700,05/24/19 16:40,"673 7th St, San Francisco, CA 94016" +204565,Apple Airpods Headphones,1,150,05/24/19 16:40,"673 7th St, San Francisco, CA 94016" +204566,USB-C Charging Cable,1,11.95,05/08/19 13:19,"534 Jackson St, Dallas, TX 75001" +204567,Apple Airpods Headphones,1,150,05/10/19 15:43,"356 Sunset St, New York City, NY 10001" +204568,34in Ultrawide Monitor,1,379.99,05/07/19 16:15,"696 Maple St, San Francisco, CA 94016" +204569,20in Monitor,1,109.99,05/10/19 08:00,"351 Adams St, New York City, NY 10001" +204570,Macbook Pro Laptop,1,1700,05/25/19 12:28,"627 Walnut St, San Francisco, CA 94016" +204571,iPhone,1,700,05/20/19 18:28,"740 2nd St, Los Angeles, CA 90001" +204572,Wired Headphones,1,11.99,05/14/19 17:39,"114 8th St, San Francisco, CA 94016" +204573,Wired Headphones,1,11.99,05/23/19 18:58,"45 Park St, Atlanta, GA 30301" +204574,AAA Batteries (4-pack),1,2.99,05/09/19 10:47,"355 Maple St, Seattle, WA 98101" +204575,Vareebadd Phone,1,400,05/06/19 14:33,"739 Wilson St, New York City, NY 10001" +204575,USB-C Charging Cable,1,11.95,05/06/19 14:33,"739 Wilson St, New York City, NY 10001" +204576,Apple Airpods Headphones,1,150,05/09/19 16:42,"282 Madison St, San Francisco, CA 94016" +204577,ThinkPad Laptop,1,999.99,05/11/19 05:53,"384 Hill St, Los Angeles, CA 90001" +204578,Wired Headphones,1,11.99,05/19/19 12:52,"565 Center St, San Francisco, CA 94016" +204579,USB-C Charging Cable,1,11.95,05/03/19 22:03,"650 Jefferson St, Portland, OR 97035" +204580,USB-C Charging Cable,1,11.95,05/05/19 10:59,"755 Pine St, New York City, NY 10001" +204581,Macbook Pro Laptop,1,1700,05/21/19 19:50,"911 Sunset St, New York City, NY 10001" +204582,iPhone,1,700,05/21/19 13:51,"189 Highland St, Dallas, TX 75001" +204583,Bose SoundSport Headphones,1,99.99,05/10/19 19:44,"342 Meadow St, Boston, MA 02215" +204584,AA Batteries (4-pack),1,3.84,05/12/19 19:31,"250 5th St, New York City, NY 10001" +204585,Bose SoundSport Headphones,1,99.99,05/25/19 18:07,"705 Hill St, San Francisco, CA 94016" +204586,27in 4K Gaming Monitor,1,389.99,05/22/19 12:54,"193 Washington St, San Francisco, CA 94016" +204587,AA Batteries (4-pack),1,3.84,05/09/19 00:15,"482 9th St, San Francisco, CA 94016" +204588,Apple Airpods Headphones,1,150,05/18/19 11:16,"892 Adams St, Dallas, TX 75001" +204589,Lightning Charging Cable,2,14.95,05/01/19 20:34,"553 Willow St, New York City, NY 10001" +204590,34in Ultrawide Monitor,1,379.99,05/13/19 10:39,"14 Park St, New York City, NY 10001" +204591,Wired Headphones,1,11.99,05/31/19 22:59,"428 Dogwood St, San Francisco, CA 94016" +204592,AA Batteries (4-pack),1,3.84,05/17/19 00:57,"767 Park St, San Francisco, CA 94016" +204593,Lightning Charging Cable,1,14.95,05/19/19 22:05,"757 1st St, Seattle, WA 98101" +204593,iPhone,1,700,05/19/19 22:05,"757 1st St, Seattle, WA 98101" +204594,Wired Headphones,1,11.99,05/23/19 16:15,"679 Center St, New York City, NY 10001" +204595,iPhone,1,700,05/30/19 10:20,"373 West St, New York City, NY 10001" +204596,AA Batteries (4-pack),1,3.84,05/06/19 17:43,"694 Dogwood St, San Francisco, CA 94016" +204597,USB-C Charging Cable,1,11.95,05/24/19 10:01,"871 Forest St, Los Angeles, CA 90001" +204598,34in Ultrawide Monitor,1,379.99,05/07/19 10:26,"555 Adams St, Boston, MA 02215" +204598,Lightning Charging Cable,1,14.95,05/07/19 10:26,"555 Adams St, Boston, MA 02215" +204599,Google Phone,1,600,05/02/19 06:28,"507 14th St, San Francisco, CA 94016" +204599,USB-C Charging Cable,1,11.95,05/02/19 06:28,"507 14th St, San Francisco, CA 94016" +204600,34in Ultrawide Monitor,1,379.99,05/05/19 13:44,"320 8th St, Seattle, WA 98101" +204601,USB-C Charging Cable,2,11.95,05/16/19 11:15,"910 Ridge St, Los Angeles, CA 90001" +204602,Apple Airpods Headphones,1,150,05/01/19 17:45,"519 Walnut St, Los Angeles, CA 90001" +204603,Wired Headphones,1,11.99,05/30/19 16:30,"505 Hickory St, Boston, MA 02215" +204604,Lightning Charging Cable,1,14.95,05/20/19 19:58,"17 Elm St, New York City, NY 10001" +204605,Lightning Charging Cable,1,14.95,05/07/19 19:17,"625 Hickory St, Portland, OR 97035" +204606,AAA Batteries (4-pack),3,2.99,05/27/19 12:21,"795 Center St, New York City, NY 10001" +204607,AA Batteries (4-pack),2,3.84,05/31/19 15:07,"468 Ridge St, Boston, MA 02215" +204608,Apple Airpods Headphones,1,150,05/07/19 12:44,"536 Cedar St, San Francisco, CA 94016" +204609,USB-C Charging Cable,1,11.95,05/24/19 08:02,"234 Dogwood St, Dallas, TX 75001" +204610,LG Washing Machine,1,600.0,05/09/19 23:28,"971 Willow St, New York City, NY 10001" +204611,iPhone,1,700,05/13/19 13:35,"288 Elm St, San Francisco, CA 94016" +204612,Lightning Charging Cable,1,14.95,05/08/19 19:28,"595 Madison St, San Francisco, CA 94016" +204613,Bose SoundSport Headphones,1,99.99,05/09/19 19:09,"542 4th St, Portland, OR 97035" +204614,ThinkPad Laptop,1,999.99,05/09/19 12:46,"793 Madison St, Portland, OR 97035" +204615,Lightning Charging Cable,2,14.95,05/12/19 13:41,"77 8th St, Atlanta, GA 30301" +204616,Lightning Charging Cable,1,14.95,05/06/19 19:56,"457 River St, San Francisco, CA 94016" +204617,AA Batteries (4-pack),1,3.84,05/28/19 08:15,"145 Jefferson St, Seattle, WA 98101" +204618,AA Batteries (4-pack),1,3.84,05/21/19 13:13,"197 6th St, Seattle, WA 98101" +204619,Lightning Charging Cable,1,14.95,05/25/19 19:36,"822 Jackson St, Austin, TX 73301" +204620,AAA Batteries (4-pack),1,2.99,05/25/19 07:41,"141 Jefferson St, San Francisco, CA 94016" +204621,AAA Batteries (4-pack),1,2.99,05/23/19 18:05,"470 4th St, Portland, OR 97035" +204622,Apple Airpods Headphones,1,150,05/17/19 09:29,"658 Lakeview St, Austin, TX 73301" +204623,AA Batteries (4-pack),1,3.84,05/21/19 04:07,"768 North St, New York City, NY 10001" +204624,27in FHD Monitor,1,149.99,05/09/19 09:56,"631 9th St, Los Angeles, CA 90001" +204625,USB-C Charging Cable,1,11.95,05/14/19 00:34,"363 Jefferson St, Boston, MA 02215" +204626,USB-C Charging Cable,1,11.95,05/26/19 13:24,"445 4th St, Dallas, TX 75001" +204627,27in FHD Monitor,1,149.99,05/30/19 14:01,"397 Adams St, Dallas, TX 75001" +204628,AAA Batteries (4-pack),1,2.99,05/14/19 09:13,"797 10th St, Los Angeles, CA 90001" +204629,AA Batteries (4-pack),1,3.84,05/27/19 22:08,"833 West St, San Francisco, CA 94016" +204630,Macbook Pro Laptop,1,1700,05/17/19 14:25,"95 Johnson St, Los Angeles, CA 90001" +204631,iPhone,1,700,05/20/19 08:22,"945 Madison St, Atlanta, GA 30301" +204632,Bose SoundSport Headphones,1,99.99,05/25/19 14:07,"67 2nd St, San Francisco, CA 94016" +204633,Lightning Charging Cable,1,14.95,05/15/19 20:08,"282 Church St, Atlanta, GA 30301" +204634,Google Phone,1,600,05/25/19 23:03,"211 Jefferson St, New York City, NY 10001" +204635,Google Phone,1,600,05/24/19 20:25,"584 10th St, New York City, NY 10001" +204635,Wired Headphones,1,11.99,05/24/19 20:25,"584 10th St, New York City, NY 10001" +204636,USB-C Charging Cable,1,11.95,05/22/19 22:48,"802 Elm St, Atlanta, GA 30301" +204637,AA Batteries (4-pack),1,3.84,05/05/19 17:56,"365 Lake St, Seattle, WA 98101" +204638,USB-C Charging Cable,1,11.95,05/01/19 16:39,"58 Park St, Portland, OR 97035" +204639,Wired Headphones,1,11.99,05/17/19 20:34,"964 Lincoln St, Atlanta, GA 30301" +204640,iPhone,1,700,05/29/19 05:42,"62 South St, Dallas, TX 75001" +204641,AAA Batteries (4-pack),1,2.99,05/31/19 15:59,"49 Elm St, Portland, OR 97035" +204642,Bose SoundSport Headphones,1,99.99,05/16/19 11:29,"233 Chestnut St, New York City, NY 10001" +204643,Lightning Charging Cable,1,14.95,05/26/19 19:21,"936 Ridge St, Austin, TX 73301" +204644,Wired Headphones,1,11.99,05/23/19 20:22,"577 Lakeview St, Los Angeles, CA 90001" +204645,USB-C Charging Cable,1,11.95,05/01/19 22:29,"461 Lake St, San Francisco, CA 94016" +204646,Google Phone,1,600,05/08/19 18:41,"321 Meadow St, Los Angeles, CA 90001" +204647,Bose SoundSport Headphones,1,99.99,05/25/19 19:08,"497 Elm St, New York City, NY 10001" +204648,USB-C Charging Cable,1,11.95,05/16/19 11:04,"47 Highland St, Seattle, WA 98101" +204649,AA Batteries (4-pack),4,3.84,05/12/19 15:09,"304 6th St, New York City, NY 10001" +204650,Lightning Charging Cable,1,14.95,05/13/19 21:24,"613 7th St, New York City, NY 10001" +204651,Apple Airpods Headphones,1,150,05/02/19 08:17,"330 Cherry St, Dallas, TX 75001" +204652,Wired Headphones,1,11.99,05/02/19 09:32,"61 Center St, San Francisco, CA 94016" +204653,USB-C Charging Cable,1,11.95,05/11/19 14:16,"684 Forest St, Los Angeles, CA 90001" +204654,Google Phone,1,600,05/12/19 19:23,"809 Main St, San Francisco, CA 94016" +204654,USB-C Charging Cable,1,11.95,05/12/19 19:23,"809 Main St, San Francisco, CA 94016" +204655,Apple Airpods Headphones,1,150,05/20/19 17:54,"924 Maple St, Atlanta, GA 30301" +204656,Flatscreen TV,1,300,05/29/19 08:52,"49 10th St, Los Angeles, CA 90001" +204657,34in Ultrawide Monitor,1,379.99,05/12/19 08:59,"633 Adams St, Dallas, TX 75001" +204658,Wired Headphones,1,11.99,05/05/19 08:48,"505 Park St, Atlanta, GA 30301" +204659,34in Ultrawide Monitor,1,379.99,05/21/19 00:53,"842 Cedar St, Seattle, WA 98101" +204660,Wired Headphones,1,11.99,05/10/19 18:59,"437 Cherry St, San Francisco, CA 94016" +204661,Bose SoundSport Headphones,1,99.99,05/09/19 20:23,"630 13th St, Dallas, TX 75001" +204662,27in FHD Monitor,1,149.99,05/21/19 14:53,"165 6th St, Austin, TX 73301" +204663,Apple Airpods Headphones,1,150,05/15/19 22:15,"696 Jefferson St, San Francisco, CA 94016" +204664,Bose SoundSport Headphones,1,99.99,05/15/19 23:22,"677 Lake St, San Francisco, CA 94016" +204665,Lightning Charging Cable,1,14.95,05/29/19 16:20,"249 Lincoln St, San Francisco, CA 94016" +204666,Lightning Charging Cable,1,14.95,05/26/19 08:54,"970 South St, New York City, NY 10001" +204667,Apple Airpods Headphones,1,150,05/20/19 15:40,"793 Church St, Dallas, TX 75001" +204668,Bose SoundSport Headphones,1,99.99,05/21/19 20:25,"369 Forest St, San Francisco, CA 94016" +204669,AAA Batteries (4-pack),1,2.99,05/10/19 21:42,"135 11th St, New York City, NY 10001" +204670,AAA Batteries (4-pack),1,2.99,05/20/19 16:41,"176 13th St, Los Angeles, CA 90001" +204671,20in Monitor,1,109.99,05/27/19 14:49,"615 Center St, Austin, TX 73301" +204672,AAA Batteries (4-pack),1,2.99,05/11/19 12:09,"582 10th St, San Francisco, CA 94016" +204673,Apple Airpods Headphones,1,150,05/23/19 06:52,"588 Washington St, Boston, MA 02215" +204674,Wired Headphones,1,11.99,05/26/19 17:06,"851 Washington St, San Francisco, CA 94016" +204675,USB-C Charging Cable,1,11.95,05/02/19 10:37,"61 Jackson St, New York City, NY 10001" +204676,Lightning Charging Cable,1,14.95,05/15/19 00:56,"163 6th St, New York City, NY 10001" +204677,AAA Batteries (4-pack),1,2.99,05/27/19 18:24,"322 Ridge St, San Francisco, CA 94016" +204678,ThinkPad Laptop,1,999.99,05/18/19 16:27,"581 South St, New York City, NY 10001" +204679,AAA Batteries (4-pack),1,2.99,05/01/19 18:27,"158 Spruce St, Boston, MA 02215" +204680,AA Batteries (4-pack),1,3.84,05/29/19 23:41,"335 9th St, San Francisco, CA 94016" +204681,USB-C Charging Cable,1,11.95,05/23/19 20:53,"943 South St, Atlanta, GA 30301" +204682,AAA Batteries (4-pack),2,2.99,05/11/19 19:30,"219 Pine St, San Francisco, CA 94016" +204683,AAA Batteries (4-pack),1,2.99,05/05/19 22:53,"6 Lincoln St, Boston, MA 02215" +204684,USB-C Charging Cable,1,11.95,05/18/19 13:41,"185 River St, San Francisco, CA 94016" +204685,Apple Airpods Headphones,1,150,05/01/19 22:34,"27 Madison St, Atlanta, GA 30301" +204686,Macbook Pro Laptop,1,1700,05/05/19 13:06,"29 Sunset St, Seattle, WA 98101" +204687,27in FHD Monitor,1,149.99,05/08/19 02:57,"446 Meadow St, San Francisco, CA 94016" +204688,Google Phone,1,600,05/21/19 18:43,"467 Washington St, San Francisco, CA 94016" +204689,Apple Airpods Headphones,1,150,05/02/19 07:55,"507 Maple St, San Francisco, CA 94016" +204690,Lightning Charging Cable,1,14.95,05/19/19 20:39,"571 Hill St, Dallas, TX 75001" +204691,AAA Batteries (4-pack),1,2.99,05/04/19 20:37,"209 Dogwood St, Seattle, WA 98101" +204692,Wired Headphones,1,11.99,05/03/19 00:08,"110 Dogwood St, New York City, NY 10001" +204693,USB-C Charging Cable,1,11.95,05/29/19 18:24,"513 13th St, New York City, NY 10001" +204694,iPhone,1,700,05/02/19 06:18,"77 Church St, San Francisco, CA 94016" +204695,AAA Batteries (4-pack),2,2.99,05/28/19 17:01,"116 Hickory St, San Francisco, CA 94016" +204696,Macbook Pro Laptop,1,1700,05/15/19 17:51,"523 Elm St, Boston, MA 02215" +204697,iPhone,1,700,05/21/19 20:04,"589 Hickory St, San Francisco, CA 94016" +204698,Lightning Charging Cable,1,14.95,05/27/19 12:14,"68 Lakeview St, New York City, NY 10001" +204699,AA Batteries (4-pack),1,3.84,05/11/19 23:12,"502 Lake St, Los Angeles, CA 90001" +204700,Flatscreen TV,1,300,05/26/19 08:25,"877 Cedar St, New York City, NY 10001" +204701,AAA Batteries (4-pack),1,2.99,05/30/19 10:05,"785 9th St, San Francisco, CA 94016" +204702,Apple Airpods Headphones,1,150,05/30/19 15:06,"679 4th St, Seattle, WA 98101" +204703,34in Ultrawide Monitor,1,379.99,05/29/19 15:20,"30 4th St, San Francisco, CA 94016" +204704,Flatscreen TV,1,300,05/31/19 11:39,"452 Forest St, New York City, NY 10001" +204705,AAA Batteries (4-pack),4,2.99,05/19/19 14:17,"301 Forest St, Los Angeles, CA 90001" +204706,AAA Batteries (4-pack),2,2.99,05/25/19 21:12,"526 Cherry St, Portland, OR 97035" +204707,USB-C Charging Cable,1,11.95,05/14/19 01:53,"932 2nd St, Dallas, TX 75001" +204708,Lightning Charging Cable,1,14.95,05/02/19 22:40,"904 Jackson St, Seattle, WA 98101" +204709,AAA Batteries (4-pack),1,2.99,05/24/19 13:52,"102 6th St, New York City, NY 10001" +204710,AAA Batteries (4-pack),1,2.99,05/10/19 22:50,"86 River St, New York City, NY 10001" +204711,AAA Batteries (4-pack),1,2.99,05/24/19 12:34,"637 Church St, Austin, TX 73301" +204712,Bose SoundSport Headphones,1,99.99,05/10/19 14:13,"792 1st St, Austin, TX 73301" +204713,AAA Batteries (4-pack),1,2.99,05/16/19 16:53,"77 Lakeview St, Portland, OR 97035" +204714,Macbook Pro Laptop,1,1700,05/12/19 18:50,"954 North St, San Francisco, CA 94016" +204715,Apple Airpods Headphones,1,150,05/20/19 10:35,"845 Spruce St, Dallas, TX 75001" +204716,27in 4K Gaming Monitor,1,389.99,05/11/19 13:19,"308 10th St, Atlanta, GA 30301" +204717,27in 4K Gaming Monitor,1,389.99,05/07/19 12:14,"939 Maple St, New York City, NY 10001" +204718,AA Batteries (4-pack),2,3.84,05/16/19 11:03,"484 2nd St, Los Angeles, CA 90001" +204719,USB-C Charging Cable,1,11.95,05/25/19 00:14,"587 2nd St, Seattle, WA 98101" +204720,AA Batteries (4-pack),1,3.84,05/12/19 18:39,"366 Jefferson St, Portland, OR 97035" +204721,AAA Batteries (4-pack),1,2.99,05/09/19 14:09,"684 Maple St, San Francisco, CA 94016" +204722,Lightning Charging Cable,1,14.95,05/23/19 11:51,"558 Highland St, Seattle, WA 98101" +204723,AAA Batteries (4-pack),1,2.99,05/23/19 20:46,"835 6th St, New York City, NY 10001" +204724,AA Batteries (4-pack),2,3.84,05/01/19 16:08,"600 13th St, Austin, TX 73301" +204725,Apple Airpods Headphones,1,150,05/09/19 19:48,"659 Adams St, San Francisco, CA 94016" +204726,Apple Airpods Headphones,1,150,05/08/19 22:13,"312 7th St, Portland, OR 97035" +204727,34in Ultrawide Monitor,1,379.99,05/26/19 15:25,"142 7th St, Boston, MA 02215" +204728,USB-C Charging Cable,1,11.95,05/08/19 11:36,"400 2nd St, Los Angeles, CA 90001" +204729,Bose SoundSport Headphones,1,99.99,05/26/19 11:05,"635 Chestnut St, Seattle, WA 98101" +204730,Macbook Pro Laptop,1,1700,05/22/19 17:46,"800 Main St, Los Angeles, CA 90001" +204731,Macbook Pro Laptop,1,1700,05/11/19 22:04,"597 Cherry St, Atlanta, GA 30301" +204732,34in Ultrawide Monitor,1,379.99,05/15/19 12:26,"205 14th St, Los Angeles, CA 90001" +204733,iPhone,1,700,05/13/19 14:26,"216 10th St, Dallas, TX 75001" +204734,27in FHD Monitor,1,149.99,05/23/19 15:24,"703 River St, San Francisco, CA 94016" +204735,Macbook Pro Laptop,1,1700,05/09/19 15:53,"505 Center St, San Francisco, CA 94016" +204736,AA Batteries (4-pack),3,3.84,05/19/19 15:51,"337 Lincoln St, New York City, NY 10001" +204737,USB-C Charging Cable,1,11.95,05/15/19 16:44,"927 Willow St, Los Angeles, CA 90001" +204738,Bose SoundSport Headphones,1,99.99,05/17/19 13:07,"193 Park St, Los Angeles, CA 90001" +204739,Flatscreen TV,1,300,05/13/19 19:02,"114 2nd St, New York City, NY 10001" +204740,34in Ultrawide Monitor,1,379.99,05/12/19 10:36,"877 8th St, Los Angeles, CA 90001" +204741,Macbook Pro Laptop,1,1700,05/01/19 22:39,"852 Church St, Austin, TX 73301" +204742,AAA Batteries (4-pack),3,2.99,05/20/19 17:58,"564 14th St, Dallas, TX 75001" +204743,Lightning Charging Cable,1,14.95,05/03/19 11:44,"978 West St, San Francisco, CA 94016" +204744,Google Phone,1,600,05/18/19 19:57,"679 Chestnut St, New York City, NY 10001" +204745,27in FHD Monitor,1,149.99,05/24/19 22:15,"531 Pine St, Boston, MA 02215" +204746,AAA Batteries (4-pack),1,2.99,05/21/19 17:45,"375 13th St, Portland, OR 97035" +204747,Wired Headphones,1,11.99,05/21/19 16:52,"633 11th St, San Francisco, CA 94016" +204748,USB-C Charging Cable,1,11.95,05/04/19 11:41,"322 Lincoln St, San Francisco, CA 94016" +204749,USB-C Charging Cable,1,11.95,05/16/19 00:18,"689 Sunset St, New York City, NY 10001" +204750,Bose SoundSport Headphones,1,99.99,05/23/19 11:38,"728 Jackson St, San Francisco, CA 94016" +204751,Lightning Charging Cable,1,14.95,05/20/19 10:07,"909 Hickory St, Boston, MA 02215" +204752,Wired Headphones,1,11.99,05/04/19 17:50,"279 Lake St, Portland, OR 97035" +204753,iPhone,1,700,05/18/19 13:31,"73 8th St, New York City, NY 10001" +204753,Lightning Charging Cable,1,14.95,05/18/19 13:31,"73 8th St, New York City, NY 10001" +204754,USB-C Charging Cable,1,11.95,05/31/19 20:32,"179 4th St, Los Angeles, CA 90001" +204755,USB-C Charging Cable,1,11.95,05/13/19 16:03,"626 Cedar St, New York City, NY 10001" +204756,Macbook Pro Laptop,1,1700,05/07/19 22:12,"745 Jackson St, Seattle, WA 98101" +204757,AA Batteries (4-pack),1,3.84,05/24/19 13:46,"890 Jefferson St, Boston, MA 02215" +204758,Lightning Charging Cable,1,14.95,05/04/19 18:18,"123 Walnut St, New York City, NY 10001" +204759,27in FHD Monitor,1,149.99,05/18/19 15:29,"606 Ridge St, Boston, MA 02215" +204760,27in 4K Gaming Monitor,1,389.99,05/26/19 10:32,"179 Highland St, Portland, OR 97035" +204761,20in Monitor,1,109.99,05/17/19 17:45,"899 Dogwood St, San Francisco, CA 94016" +204762,USB-C Charging Cable,1,11.95,05/26/19 11:49,"370 Spruce St, San Francisco, CA 94016" +204763,Macbook Pro Laptop,1,1700,05/27/19 16:52,"965 Highland St, San Francisco, CA 94016" +204764,Bose SoundSport Headphones,1,99.99,05/04/19 22:41,"701 Jefferson St, San Francisco, CA 94016" +204765,USB-C Charging Cable,1,11.95,05/28/19 21:36,"291 Walnut St, Los Angeles, CA 90001" +204766,27in FHD Monitor,1,149.99,05/08/19 11:37,"642 Hill St, Los Angeles, CA 90001" +204767,20in Monitor,1,109.99,05/02/19 21:39,"740 9th St, Los Angeles, CA 90001" +204768,USB-C Charging Cable,1,11.95,05/26/19 14:26,"883 Chestnut St, Seattle, WA 98101" +204769,Lightning Charging Cable,1,14.95,05/13/19 17:05,"920 13th St, Los Angeles, CA 90001" +204770,AAA Batteries (4-pack),2,2.99,05/26/19 16:59,"360 Pine St, San Francisco, CA 94016" +204771,20in Monitor,1,109.99,05/27/19 16:17,"244 Willow St, San Francisco, CA 94016" +204772,Lightning Charging Cable,1,14.95,05/10/19 14:27,"458 Lake St, Portland, OR 97035" +204773,Macbook Pro Laptop,1,1700,05/20/19 14:54,"161 River St, Boston, MA 02215" +204774,Wired Headphones,1,11.99,05/23/19 17:44,"103 Jackson St, Austin, TX 73301" +204775,20in Monitor,1,109.99,05/04/19 23:40,"103 Walnut St, New York City, NY 10001" +204776,27in 4K Gaming Monitor,1,389.99,05/18/19 13:36,"786 4th St, San Francisco, CA 94016" +204777,USB-C Charging Cable,1,11.95,05/09/19 03:36,"501 Dogwood St, Seattle, WA 98101" +204778,Flatscreen TV,1,300,05/29/19 23:31,"485 Lincoln St, Los Angeles, CA 90001" +204779,Lightning Charging Cable,1,14.95,05/09/19 21:09,"737 Center St, Los Angeles, CA 90001" +204780,AA Batteries (4-pack),1,3.84,05/04/19 11:33,"633 Forest St, Seattle, WA 98101" +204781,Lightning Charging Cable,1,14.95,05/16/19 19:17,"284 West St, Austin, TX 73301" +204782,Google Phone,1,600,05/17/19 14:02,"508 Dogwood St, Atlanta, GA 30301" +204783,Bose SoundSport Headphones,1,99.99,05/04/19 15:49,"105 Center St, Dallas, TX 75001" +204784,Macbook Pro Laptop,1,1700,05/26/19 18:55,"287 Cherry St, Portland, OR 97035" +204785,Bose SoundSport Headphones,1,99.99,05/06/19 15:52,"566 Highland St, Seattle, WA 98101" +204786,Google Phone,1,600,05/14/19 12:07,"785 4th St, San Francisco, CA 94016" +204786,Wired Headphones,1,11.99,05/14/19 12:07,"785 4th St, San Francisco, CA 94016" +204787,Lightning Charging Cable,1,14.95,05/31/19 10:48,"763 Spruce St, Los Angeles, CA 90001" +204788,USB-C Charging Cable,1,11.95,05/26/19 00:24,"404 Johnson St, New York City, NY 10001" +204789,ThinkPad Laptop,1,999.99,05/25/19 20:04,"504 Forest St, San Francisco, CA 94016" +204790,27in 4K Gaming Monitor,1,389.99,05/11/19 22:08,"478 Cherry St, Los Angeles, CA 90001" +204791,Lightning Charging Cable,1,14.95,05/06/19 13:14,"583 Spruce St, Dallas, TX 75001" +204792,AAA Batteries (4-pack),1,2.99,05/12/19 21:47,"556 Cedar St, Los Angeles, CA 90001" +204793,Apple Airpods Headphones,1,150,05/23/19 19:08,"944 5th St, San Francisco, CA 94016" +204794,AA Batteries (4-pack),2,3.84,05/24/19 05:34,"408 West St, Austin, TX 73301" +204795,Lightning Charging Cable,1,14.95,05/09/19 10:33,"332 Chestnut St, Los Angeles, CA 90001" +204796,iPhone,1,700,05/17/19 11:10,"945 Wilson St, Atlanta, GA 30301" +204797,USB-C Charging Cable,2,11.95,05/13/19 20:20,"15 North St, New York City, NY 10001" +204798,Wired Headphones,1,11.99,05/22/19 15:42,"117 Highland St, Los Angeles, CA 90001" +204799,Google Phone,1,600,05/18/19 13:36,"301 Forest St, New York City, NY 10001" +204800,Wired Headphones,1,11.99,05/15/19 08:02,"847 Jackson St, Los Angeles, CA 90001" +204801,Apple Airpods Headphones,1,150,05/20/19 11:14,"707 Center St, Atlanta, GA 30301" +204802,Google Phone,1,600,05/12/19 14:13,"619 Hickory St, New York City, NY 10001" +204803,iPhone,1,700,05/03/19 18:10,"673 Spruce St, Los Angeles, CA 90001" +204804,Apple Airpods Headphones,1,150,05/20/19 23:29,"469 13th St, Los Angeles, CA 90001" +204805,Bose SoundSport Headphones,1,99.99,05/11/19 11:44,"732 Adams St, Los Angeles, CA 90001" +204806,Lightning Charging Cable,1,14.95,05/15/19 08:44,"378 Spruce St, San Francisco, CA 94016" +204807,AAA Batteries (4-pack),1,2.99,05/19/19 11:08,"5 Sunset St, Portland, OR 97035" +204808,Wired Headphones,2,11.99,05/13/19 08:12,"322 1st St, Atlanta, GA 30301" +204809,AA Batteries (4-pack),2,3.84,05/21/19 05:33,"945 Adams St, Los Angeles, CA 90001" +204810,USB-C Charging Cable,1,11.95,05/21/19 23:51,"827 2nd St, Los Angeles, CA 90001" +,,,,, +204811,Apple Airpods Headphones,1,150,05/10/19 19:39,"618 Lakeview St, Austin, TX 73301" +204812,Google Phone,1,600,05/01/19 23:18,"839 4th St, Austin, TX 73301" +204813,Bose SoundSport Headphones,1,99.99,05/22/19 14:57,"603 9th St, Los Angeles, CA 90001" +204814,Bose SoundSport Headphones,1,99.99,05/21/19 14:46,"846 14th St, Los Angeles, CA 90001" +204815,Wired Headphones,1,11.99,05/31/19 09:32,"485 Washington St, Dallas, TX 75001" +204816,iPhone,1,700,05/09/19 23:05,"563 Jackson St, San Francisco, CA 94016" +204817,Bose SoundSport Headphones,1,99.99,05/25/19 12:46,"735 10th St, Dallas, TX 75001" +204818,Wired Headphones,1,11.99,05/12/19 07:26,"918 Wilson St, Portland, ME 04101" +204819,AA Batteries (4-pack),1,3.84,05/11/19 22:08,"412 Church St, San Francisco, CA 94016" +204820,Bose SoundSport Headphones,1,99.99,05/09/19 16:20,"804 8th St, Portland, OR 97035" +204821,AA Batteries (4-pack),1,3.84,05/07/19 13:35,"125 Hickory St, Dallas, TX 75001" +204822,AA Batteries (4-pack),1,3.84,05/06/19 14:20,"423 1st St, Austin, TX 73301" +204823,27in 4K Gaming Monitor,1,389.99,05/21/19 11:44,"324 Cherry St, Dallas, TX 75001" +204824,Wired Headphones,1,11.99,05/04/19 12:55,"916 North St, San Francisco, CA 94016" +204825,Bose SoundSport Headphones,1,99.99,05/23/19 12:08,"432 Center St, Austin, TX 73301" +204826,ThinkPad Laptop,1,999.99,05/09/19 15:34,"254 Lincoln St, Austin, TX 73301" +204827,Flatscreen TV,1,300,05/02/19 23:38,"814 Elm St, Boston, MA 02215" +204828,Bose SoundSport Headphones,1,99.99,05/11/19 18:56,"766 8th St, Dallas, TX 75001" +204829,AAA Batteries (4-pack),2,2.99,05/06/19 21:47,"692 Lincoln St, Seattle, WA 98101" +204830,34in Ultrawide Monitor,1,379.99,05/28/19 21:32,"699 7th St, Dallas, TX 75001" +204831,Apple Airpods Headphones,1,150,05/31/19 11:00,"118 North St, Los Angeles, CA 90001" +204832,USB-C Charging Cable,1,11.95,05/10/19 10:20,"139 Sunset St, Los Angeles, CA 90001" +204833,AAA Batteries (4-pack),1,2.99,05/31/19 22:38,"733 Church St, Boston, MA 02215" +204834,Wired Headphones,1,11.99,05/28/19 17:40,"603 Ridge St, Austin, TX 73301" +204835,USB-C Charging Cable,1,11.95,05/04/19 07:13,"953 11th St, Boston, MA 02215" +204836,Lightning Charging Cable,2,14.95,05/02/19 05:23,"452 West St, New York City, NY 10001" +204837,Bose SoundSport Headphones,1,99.99,05/05/19 13:30,"631 Park St, Dallas, TX 75001" +204838,Lightning Charging Cable,1,14.95,05/21/19 12:18,"494 6th St, Los Angeles, CA 90001" +204839,USB-C Charging Cable,1,11.95,05/18/19 11:27,"465 Chestnut St, Dallas, TX 75001" +204840,Flatscreen TV,1,300,05/14/19 13:15,"221 West St, Los Angeles, CA 90001" +204841,USB-C Charging Cable,1,11.95,05/11/19 20:31,"699 Cherry St, Boston, MA 02215" +204842,Bose SoundSport Headphones,1,99.99,05/05/19 17:37,"846 Center St, New York City, NY 10001" +204843,USB-C Charging Cable,2,11.95,05/16/19 00:13,"269 Pine St, Boston, MA 02215" +204844,Macbook Pro Laptop,1,1700,05/05/19 18:56,"66 2nd St, Seattle, WA 98101" +204845,Bose SoundSport Headphones,1,99.99,05/20/19 15:51,"42 7th St, San Francisco, CA 94016" +204846,Wired Headphones,1,11.99,05/08/19 10:05,"393 Jackson St, Dallas, TX 75001" +204846,Lightning Charging Cable,1,14.95,05/08/19 10:05,"393 Jackson St, Dallas, TX 75001" +204847,AAA Batteries (4-pack),2,2.99,05/09/19 09:42,"914 14th St, San Francisco, CA 94016" +204848,20in Monitor,1,109.99,05/30/19 22:24,"215 West St, Atlanta, GA 30301" +204849,Flatscreen TV,1,300,05/15/19 13:11,"707 Center St, Los Angeles, CA 90001" +204850,AA Batteries (4-pack),1,3.84,05/01/19 18:24,"648 South St, San Francisco, CA 94016" +204851,AAA Batteries (4-pack),2,2.99,05/28/19 00:28,"362 Chestnut St, Boston, MA 02215" +204852,AAA Batteries (4-pack),1,2.99,05/11/19 11:32,"414 1st St, Los Angeles, CA 90001" +204853,AAA Batteries (4-pack),1,2.99,05/25/19 10:34,"508 Jackson St, Seattle, WA 98101" +204854,iPhone,1,700,05/05/19 16:11,"678 Madison St, Los Angeles, CA 90001" +204855,Apple Airpods Headphones,1,150,05/04/19 22:32,"963 5th St, New York City, NY 10001" +204856,iPhone,1,700,05/15/19 13:42,"388 Meadow St, Seattle, WA 98101" +204857,27in FHD Monitor,1,149.99,05/04/19 07:34,"895 Wilson St, Atlanta, GA 30301" +204858,Wired Headphones,3,11.99,05/25/19 19:51,"552 Cedar St, Dallas, TX 75001" +204859,USB-C Charging Cable,1,11.95,05/07/19 21:19,"722 West St, San Francisco, CA 94016" +204860,27in FHD Monitor,1,149.99,05/04/19 21:28,"831 12th St, Los Angeles, CA 90001" +204861,USB-C Charging Cable,2,11.95,05/19/19 15:39,"567 Hill St, Boston, MA 02215" +204862,20in Monitor,1,109.99,05/08/19 23:00,"328 7th St, New York City, NY 10001" +204863,USB-C Charging Cable,1,11.95,05/28/19 21:48,"454 Park St, Atlanta, GA 30301" +204864,34in Ultrawide Monitor,1,379.99,05/30/19 17:37,"277 Lake St, Boston, MA 02215" +204864,iPhone,1,700,05/30/19 17:37,"277 Lake St, Boston, MA 02215" +204865,iPhone,1,700,05/11/19 20:54,"880 Center St, Dallas, TX 75001" +204866,Lightning Charging Cable,1,14.95,05/31/19 16:27,"750 10th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +204867,AA Batteries (4-pack),2,3.84,05/19/19 22:01,"567 Maple St, San Francisco, CA 94016" +204868,Google Phone,1,600,05/23/19 17:46,"782 Lincoln St, Portland, OR 97035" +204869,Wired Headphones,1,11.99,05/14/19 20:51,"642 5th St, Seattle, WA 98101" +204870,Flatscreen TV,1,300,05/31/19 08:28,"771 11th St, New York City, NY 10001" +204871,Lightning Charging Cable,2,14.95,05/10/19 21:10,"472 Wilson St, San Francisco, CA 94016" +204872,Lightning Charging Cable,1,14.95,05/18/19 12:34,"79 Lakeview St, Boston, MA 02215" +204873,AAA Batteries (4-pack),2,2.99,05/04/19 20:29,"991 Maple St, Dallas, TX 75001" +204874,AA Batteries (4-pack),1,3.84,05/05/19 17:53,"824 Lincoln St, Los Angeles, CA 90001" +204875,AA Batteries (4-pack),1,3.84,05/31/19 20:37,"397 North St, San Francisco, CA 94016" +204876,USB-C Charging Cable,1,11.95,05/08/19 10:11,"991 Jefferson St, Seattle, WA 98101" +204877,AAA Batteries (4-pack),1,2.99,05/12/19 11:46,"565 Park St, Seattle, WA 98101" +204878,Lightning Charging Cable,1,14.95,05/30/19 15:17,"465 1st St, San Francisco, CA 94016" +204879,USB-C Charging Cable,1,11.95,05/19/19 15:44,"415 Highland St, Los Angeles, CA 90001" +204880,Lightning Charging Cable,1,14.95,05/22/19 16:33,"368 Jefferson St, San Francisco, CA 94016" +204881,Google Phone,1,600,05/29/19 07:42,"395 Main St, San Francisco, CA 94016" +204882,AA Batteries (4-pack),1,3.84,05/08/19 13:21,"153 7th St, San Francisco, CA 94016" +204883,34in Ultrawide Monitor,1,379.99,05/16/19 17:46,"615 Cedar St, Los Angeles, CA 90001" +204884,Lightning Charging Cable,1,14.95,05/23/19 10:04,"539 2nd St, San Francisco, CA 94016" +204885,AAA Batteries (4-pack),1,2.99,05/03/19 09:51,"525 13th St, Los Angeles, CA 90001" +204886,AAA Batteries (4-pack),1,2.99,05/10/19 20:30,"730 Wilson St, Boston, MA 02215" +204887,AAA Batteries (4-pack),1,2.99,05/11/19 07:20,"735 7th St, Atlanta, GA 30301" +204888,AAA Batteries (4-pack),1,2.99,05/08/19 05:32,"381 North St, Seattle, WA 98101" +204889,Apple Airpods Headphones,1,150,05/20/19 23:31,"64 Ridge St, Dallas, TX 75001" +204890,Wired Headphones,1,11.99,05/25/19 12:55,"922 Johnson St, Dallas, TX 75001" +204891,iPhone,1,700,05/28/19 00:21,"88 Elm St, New York City, NY 10001" +204892,USB-C Charging Cable,1,11.95,05/23/19 18:31,"559 6th St, Los Angeles, CA 90001" +204893,AAA Batteries (4-pack),1,2.99,05/13/19 06:34,"112 Center St, San Francisco, CA 94016" +204894,AA Batteries (4-pack),2,3.84,05/05/19 17:03,"829 Main St, Portland, OR 97035" +204895,Wired Headphones,1,11.99,05/08/19 08:30,"170 Maple St, San Francisco, CA 94016" +204896,Apple Airpods Headphones,1,150,05/26/19 09:00,"222 Maple St, Atlanta, GA 30301" +204897,USB-C Charging Cable,1,11.95,05/04/19 11:54,"113 Dogwood St, Los Angeles, CA 90001" +204898,Lightning Charging Cable,3,14.95,05/11/19 12:55,"357 North St, Los Angeles, CA 90001" +204899,Wired Headphones,1,11.99,05/08/19 08:51,"151 Willow St, New York City, NY 10001" +204900,27in FHD Monitor,1,149.99,05/26/19 20:14,"846 6th St, San Francisco, CA 94016" +204901,20in Monitor,1,109.99,05/09/19 20:19,"675 Lincoln St, Los Angeles, CA 90001" +204902,27in FHD Monitor,1,149.99,05/04/19 20:33,"284 Meadow St, New York City, NY 10001" +204903,Wired Headphones,1,11.99,05/12/19 21:02,"860 Madison St, Los Angeles, CA 90001" +204904,Wired Headphones,1,11.99,05/24/19 18:21,"418 9th St, Boston, MA 02215" +204905,Apple Airpods Headphones,1,150,05/25/19 15:17,"499 Sunset St, Dallas, TX 75001" +204906,AAA Batteries (4-pack),5,2.99,05/30/19 11:32,"195 Spruce St, Boston, MA 02215" +204907,Google Phone,1,600,05/26/19 16:32,"89 Johnson St, Seattle, WA 98101" +204908,AAA Batteries (4-pack),1,2.99,05/31/19 22:30,"433 Jefferson St, Seattle, WA 98101" +204909,AA Batteries (4-pack),1,3.84,05/31/19 18:41,"945 14th St, Los Angeles, CA 90001" +204910,AA Batteries (4-pack),1,3.84,05/10/19 14:55,"273 Johnson St, Atlanta, GA 30301" +204911,Lightning Charging Cable,1,14.95,05/07/19 16:28,"389 10th St, Boston, MA 02215" +204912,USB-C Charging Cable,1,11.95,05/18/19 21:35,"754 Dogwood St, Portland, OR 97035" +204913,Wired Headphones,1,11.99,05/07/19 23:34,"829 North St, New York City, NY 10001" +204914,Apple Airpods Headphones,1,150,05/26/19 07:42,"439 Madison St, Boston, MA 02215" +204915,Flatscreen TV,1,300,05/03/19 14:18,"562 7th St, New York City, NY 10001" +204916,AA Batteries (4-pack),1,3.84,05/15/19 18:41,"650 Walnut St, Boston, MA 02215" +204917,AAA Batteries (4-pack),2,2.99,05/09/19 15:31,"987 Maple St, San Francisco, CA 94016" +204918,USB-C Charging Cable,1,11.95,05/11/19 11:44,"604 5th St, Los Angeles, CA 90001" +204919,Lightning Charging Cable,1,14.95,05/14/19 20:39,"500 Johnson St, Los Angeles, CA 90001" +204920,Google Phone,1,600,05/23/19 07:04,"249 Johnson St, New York City, NY 10001" +204921,Wired Headphones,1,11.99,05/02/19 23:31,"228 2nd St, Seattle, WA 98101" +204922,USB-C Charging Cable,1,11.95,05/28/19 17:20,"543 North St, Los Angeles, CA 90001" +204923,Lightning Charging Cable,1,14.95,05/19/19 11:16,"579 13th St, Boston, MA 02215" +204924,AAA Batteries (4-pack),2,2.99,05/26/19 18:57,"118 Lincoln St, Seattle, WA 98101" +204925,27in 4K Gaming Monitor,1,389.99,05/04/19 12:40,"491 11th St, San Francisco, CA 94016" +204926,AA Batteries (4-pack),1,3.84,05/29/19 19:41,"502 1st St, Boston, MA 02215" +204927,Bose SoundSport Headphones,1,99.99,05/03/19 17:15,"554 Adams St, Seattle, WA 98101" +204928,Macbook Pro Laptop,1,1700,05/24/19 11:34,"723 Forest St, San Francisco, CA 94016" +204929,27in FHD Monitor,1,149.99,05/24/19 05:42,"552 Willow St, New York City, NY 10001" +204930,34in Ultrawide Monitor,1,379.99,05/23/19 17:45,"605 Hickory St, Seattle, WA 98101" +204931,iPhone,1,700,05/03/19 17:27,"533 Hill St, Atlanta, GA 30301" +204931,Lightning Charging Cable,1,14.95,05/03/19 17:27,"533 Hill St, Atlanta, GA 30301" +204932,AA Batteries (4-pack),1,3.84,05/15/19 15:06,"835 South St, Austin, TX 73301" +204933,Wired Headphones,1,11.99,05/02/19 21:20,"631 West St, Seattle, WA 98101" +204934,Wired Headphones,1,11.99,05/18/19 13:12,"526 Hill St, Dallas, TX 75001" +204935,Macbook Pro Laptop,1,1700,05/01/19 16:35,"745 Church St, San Francisco, CA 94016" +204936,Wired Headphones,1,11.99,05/22/19 16:49,"686 Cherry St, Los Angeles, CA 90001" +204937,20in Monitor,1,109.99,05/11/19 16:55,"882 Forest St, Atlanta, GA 30301" +204938,iPhone,1,700,05/04/19 22:56,"152 6th St, San Francisco, CA 94016" +204939,Flatscreen TV,1,300,05/07/19 13:20,"409 11th St, San Francisco, CA 94016" +204940,Bose SoundSport Headphones,1,99.99,05/07/19 09:01,"834 Johnson St, Los Angeles, CA 90001" +204941,AAA Batteries (4-pack),3,2.99,05/16/19 21:06,"188 12th St, San Francisco, CA 94016" +204942,Apple Airpods Headphones,1,150,05/24/19 14:01,"492 Johnson St, New York City, NY 10001" +204943,Lightning Charging Cable,1,14.95,05/15/19 22:17,"666 12th St, Atlanta, GA 30301" +204944,AAA Batteries (4-pack),1,2.99,05/12/19 03:15,"923 6th St, Dallas, TX 75001" +204945,AA Batteries (4-pack),1,3.84,05/18/19 00:06,"836 Ridge St, Dallas, TX 75001" +204946,34in Ultrawide Monitor,1,379.99,05/08/19 13:41,"465 North St, San Francisco, CA 94016" +204947,Wired Headphones,1,11.99,05/29/19 12:55,"16 Walnut St, Boston, MA 02215" +204948,Google Phone,1,600,05/05/19 18:45,"96 Cherry St, New York City, NY 10001" +204949,iPhone,1,700,05/25/19 16:48,"107 Spruce St, Los Angeles, CA 90001" +204950,ThinkPad Laptop,1,999.99,05/01/19 22:09,"504 Lake St, San Francisco, CA 94016" +204951,Wired Headphones,1,11.99,05/24/19 12:42,"208 South St, Austin, TX 73301" +204952,ThinkPad Laptop,1,999.99,05/19/19 18:55,"432 Walnut St, San Francisco, CA 94016" +204953,Apple Airpods Headphones,1,150,05/24/19 17:05,"666 Adams St, Austin, TX 73301" +204954,Google Phone,1,600,05/18/19 08:50,"627 Lincoln St, Portland, OR 97035" +204954,USB-C Charging Cable,1,11.95,05/18/19 08:50,"627 Lincoln St, Portland, OR 97035" +204955,Apple Airpods Headphones,1,150,05/15/19 21:23,"729 South St, Atlanta, GA 30301" +204956,Google Phone,1,600,05/12/19 18:55,"840 Wilson St, New York City, NY 10001" +204957,Lightning Charging Cable,1,14.95,05/20/19 04:01,"705 Spruce St, Austin, TX 73301" +204958,Lightning Charging Cable,1,14.95,05/08/19 21:30,"6 Jefferson St, Seattle, WA 98101" +204958,27in FHD Monitor,1,149.99,05/08/19 21:30,"6 Jefferson St, Seattle, WA 98101" +204959,27in 4K Gaming Monitor,1,389.99,05/14/19 07:01,"320 Chestnut St, Austin, TX 73301" +204960,Google Phone,1,600,05/17/19 05:01,"516 Spruce St, San Francisco, CA 94016" +204961,Vareebadd Phone,1,400,05/21/19 03:35,"39 West St, Boston, MA 02215" +204962,Wired Headphones,1,11.99,05/17/19 14:08,"849 Washington St, San Francisco, CA 94016" +204963,Wired Headphones,1,11.99,05/11/19 14:03,"146 6th St, Dallas, TX 75001" +204964,AA Batteries (4-pack),2,3.84,05/22/19 10:55,"711 Sunset St, Atlanta, GA 30301" +204965,ThinkPad Laptop,1,999.99,05/23/19 12:13,"583 11th St, San Francisco, CA 94016" +204966,Wired Headphones,1,11.99,05/20/19 17:06,"196 Elm St, Atlanta, GA 30301" +204967,Flatscreen TV,1,300,05/21/19 13:22,"353 North St, Atlanta, GA 30301" +204968,Wired Headphones,1,11.99,05/17/19 17:43,"374 13th St, San Francisco, CA 94016" +204969,USB-C Charging Cable,1,11.95,05/02/19 19:33,"496 13th St, Dallas, TX 75001" +204970,Bose SoundSport Headphones,1,99.99,05/27/19 14:51,"652 9th St, Dallas, TX 75001" +204971,USB-C Charging Cable,1,11.95,05/01/19 13:47,"292 Jackson St, New York City, NY 10001" +204972,AAA Batteries (4-pack),3,2.99,05/08/19 13:36,"257 Lake St, Seattle, WA 98101" +204973,20in Monitor,1,109.99,05/07/19 14:58,"43 5th St, Boston, MA 02215" +204974,AAA Batteries (4-pack),2,2.99,05/13/19 14:16,"14 Main St, Boston, MA 02215" +204975,AA Batteries (4-pack),1,3.84,05/11/19 11:04,"355 North St, San Francisco, CA 94016" +204976,Lightning Charging Cable,1,14.95,05/19/19 17:40,"338 Dogwood St, Seattle, WA 98101" +204977,27in FHD Monitor,1,149.99,05/30/19 21:47,"480 Center St, Los Angeles, CA 90001" +204978,AAA Batteries (4-pack),1,2.99,05/26/19 19:48,"865 5th St, New York City, NY 10001" +204979,USB-C Charging Cable,1,11.95,05/03/19 16:12,"395 Sunset St, New York City, NY 10001" +204980,AA Batteries (4-pack),1,3.84,05/16/19 15:16,"24 Lincoln St, Seattle, WA 98101" +204981,Flatscreen TV,1,300,05/20/19 11:53,"312 Cedar St, Boston, MA 02215" +204982,27in 4K Gaming Monitor,1,389.99,05/19/19 08:13,"444 Pine St, New York City, NY 10001" +204983,AA Batteries (4-pack),1,3.84,05/21/19 12:29,"587 Lincoln St, Los Angeles, CA 90001" +204984,AAA Batteries (4-pack),1,2.99,05/07/19 11:01,"128 5th St, New York City, NY 10001" +204985,AAA Batteries (4-pack),1,2.99,05/12/19 19:57,"382 8th St, Dallas, TX 75001" +204986,AA Batteries (4-pack),1,3.84,05/18/19 13:23,"7 Cedar St, Los Angeles, CA 90001" +204987,Lightning Charging Cable,1,14.95,05/10/19 17:04,"475 Meadow St, San Francisco, CA 94016" +204988,Lightning Charging Cable,2,14.95,05/23/19 11:30,"825 7th St, San Francisco, CA 94016" +204989,Google Phone,1,600,05/23/19 18:19,"492 Lakeview St, San Francisco, CA 94016" +204990,AAA Batteries (4-pack),1,2.99,05/29/19 12:17,"418 Cedar St, New York City, NY 10001" +204991,AAA Batteries (4-pack),1,2.99,05/12/19 22:21,"416 Johnson St, San Francisco, CA 94016" +204992,34in Ultrawide Monitor,1,379.99,05/22/19 16:32,"238 Maple St, San Francisco, CA 94016" +204993,Wired Headphones,1,11.99,05/26/19 13:30,"181 Lincoln St, Atlanta, GA 30301" +204994,Macbook Pro Laptop,1,1700,05/01/19 15:57,"672 Hill St, New York City, NY 10001" +204995,Wired Headphones,1,11.99,05/12/19 13:25,"326 6th St, Boston, MA 02215" +204996,Flatscreen TV,1,300,05/22/19 13:55,"680 Johnson St, Austin, TX 73301" +204997,Bose SoundSport Headphones,1,99.99,05/17/19 12:05,"912 11th St, Boston, MA 02215" +204998,Google Phone,1,600,05/30/19 11:01,"882 Chestnut St, San Francisco, CA 94016" +204999,USB-C Charging Cable,1,11.95,05/13/19 22:21,"344 10th St, San Francisco, CA 94016" +205000,AA Batteries (4-pack),1,3.84,05/03/19 13:08,"682 Willow St, Boston, MA 02215" +205001,34in Ultrawide Monitor,1,379.99,05/20/19 12:09,"506 Center St, San Francisco, CA 94016" +205002,27in 4K Gaming Monitor,1,389.99,05/09/19 03:42,"393 12th St, Portland, ME 04101" +205003,Apple Airpods Headphones,1,150,05/28/19 22:54,"533 Ridge St, New York City, NY 10001" +205004,20in Monitor,1,109.99,05/17/19 10:42,"572 12th St, Los Angeles, CA 90001" +205005,Bose SoundSport Headphones,1,99.99,05/02/19 09:48,"647 Church St, Los Angeles, CA 90001" +205006,Lightning Charging Cable,1,14.95,05/16/19 13:37,"596 Hill St, Dallas, TX 75001" +205007,Vareebadd Phone,1,400,05/19/19 16:20,"487 9th St, Atlanta, GA 30301" +205007,USB-C Charging Cable,1,11.95,05/19/19 16:20,"487 9th St, Atlanta, GA 30301" +205008,Flatscreen TV,1,300,05/12/19 20:44,"23 12th St, Los Angeles, CA 90001" +205009,Wired Headphones,1,11.99,05/03/19 20:57,"333 Maple St, Boston, MA 02215" +205010,Vareebadd Phone,1,400,05/22/19 01:12,"522 Elm St, Seattle, WA 98101" +205011,Bose SoundSport Headphones,1,99.99,05/30/19 07:07,"633 Church St, Boston, MA 02215" +205012,AA Batteries (4-pack),2,3.84,05/08/19 14:30,"609 11th St, Dallas, TX 75001" +205013,27in FHD Monitor,1,149.99,05/17/19 22:55,"472 7th St, Seattle, WA 98101" +205014,Lightning Charging Cable,1,14.95,05/15/19 22:03,"597 Forest St, San Francisco, CA 94016" +205015,USB-C Charging Cable,1,11.95,05/15/19 21:52,"358 7th St, New York City, NY 10001" +205016,AAA Batteries (4-pack),2,2.99,05/08/19 15:14,"506 Madison St, New York City, NY 10001" +205017,27in 4K Gaming Monitor,1,389.99,05/26/19 10:49,"156 12th St, San Francisco, CA 94016" +205018,AA Batteries (4-pack),1,3.84,05/09/19 09:03,"936 Lake St, San Francisco, CA 94016" +205019,Flatscreen TV,1,300,05/24/19 16:15,"511 4th St, New York City, NY 10001" +205020,Bose SoundSport Headphones,1,99.99,05/02/19 15:12,"934 Dogwood St, Boston, MA 02215" +205021,USB-C Charging Cable,1,11.95,05/06/19 14:16,"72 1st St, New York City, NY 10001" +205022,Lightning Charging Cable,1,14.95,05/03/19 17:20,"347 14th St, Boston, MA 02215" +205023,AAA Batteries (4-pack),3,2.99,05/02/19 18:38,"120 13th St, San Francisco, CA 94016" +205024,Apple Airpods Headphones,1,150,05/20/19 22:27,"361 South St, Seattle, WA 98101" +205025,AAA Batteries (4-pack),1,2.99,05/08/19 21:06,"292 Sunset St, Portland, OR 97035" +205026,Lightning Charging Cable,1,14.95,05/25/19 23:01,"84 West St, Los Angeles, CA 90001" +205027,AA Batteries (4-pack),1,3.84,05/05/19 12:38,"550 Park St, Los Angeles, CA 90001" +205028,27in 4K Gaming Monitor,1,389.99,05/30/19 14:46,"227 8th St, New York City, NY 10001" +,,,,, +205029,iPhone,1,700,05/20/19 12:44,"924 10th St, San Francisco, CA 94016" +205029,Wired Headphones,1,11.99,05/20/19 12:44,"924 10th St, San Francisco, CA 94016" +205030,Macbook Pro Laptop,1,1700,05/29/19 00:26,"688 Adams St, Portland, OR 97035" +205031,Bose SoundSport Headphones,1,99.99,05/28/19 09:23,"200 10th St, Los Angeles, CA 90001" +205032,Apple Airpods Headphones,1,150,05/03/19 09:56,"694 Ridge St, San Francisco, CA 94016" +205033,Macbook Pro Laptop,1,1700,05/17/19 19:27,"631 Elm St, Los Angeles, CA 90001" +205034,Apple Airpods Headphones,1,150,05/23/19 12:56,"418 9th St, Austin, TX 73301" +205035,AAA Batteries (4-pack),1,2.99,05/16/19 14:05,"41 10th St, Portland, ME 04101" +205036,Lightning Charging Cable,1,14.95,05/05/19 14:03,"890 Hill St, Austin, TX 73301" +205037,Wired Headphones,1,11.99,05/01/19 12:19,"256 Maple St, Dallas, TX 75001" +205038,ThinkPad Laptop,1,999.99,05/12/19 23:06,"254 Jackson St, Dallas, TX 75001" +205039,AAA Batteries (4-pack),1,2.99,05/07/19 04:57,"39 6th St, San Francisco, CA 94016" +205040,AA Batteries (4-pack),1,3.84,05/28/19 11:12,"76 7th St, New York City, NY 10001" +205041,Flatscreen TV,1,300,05/20/19 13:14,"405 7th St, New York City, NY 10001" +205042,Bose SoundSport Headphones,1,99.99,05/02/19 22:49,"649 Ridge St, Portland, OR 97035" +205043,Wired Headphones,1,11.99,05/25/19 21:26,"134 Elm St, San Francisco, CA 94016" +205044,Macbook Pro Laptop,1,1700,05/29/19 18:51,"539 12th St, Atlanta, GA 30301" +205045,USB-C Charging Cable,1,11.95,05/12/19 08:09,"920 7th St, New York City, NY 10001" +205046,ThinkPad Laptop,1,999.99,05/12/19 09:41,"826 North St, San Francisco, CA 94016" +205047,AA Batteries (4-pack),1,3.84,05/06/19 00:17,"35 2nd St, Atlanta, GA 30301" +205048,27in 4K Gaming Monitor,1,389.99,05/30/19 21:34,"43 Lake St, Los Angeles, CA 90001" +205049,AA Batteries (4-pack),2,3.84,05/22/19 17:37,"415 Lakeview St, Los Angeles, CA 90001" +205050,34in Ultrawide Monitor,1,379.99,05/16/19 15:51,"40 14th St, Dallas, TX 75001" +205051,AA Batteries (4-pack),3,3.84,05/26/19 17:29,"595 5th St, San Francisco, CA 94016" +205052,27in 4K Gaming Monitor,1,389.99,05/18/19 23:35,"738 Adams St, San Francisco, CA 94016" +205053,iPhone,2,700,05/31/19 23:28,"24 Hickory St, Los Angeles, CA 90001" +205054,iPhone,1,700,05/25/19 20:24,"459 11th St, San Francisco, CA 94016" +205055,USB-C Charging Cable,1,11.95,05/19/19 00:58,"697 13th St, San Francisco, CA 94016" +205056,Lightning Charging Cable,2,14.95,05/21/19 22:29,"370 Hill St, Los Angeles, CA 90001" +205057,Macbook Pro Laptop,1,1700,05/31/19 20:53,"175 9th St, San Francisco, CA 94016" +205058,AAA Batteries (4-pack),1,2.99,05/10/19 12:42,"25 Cherry St, Dallas, TX 75001" +205059,Apple Airpods Headphones,1,150,05/04/19 12:43,"393 Jefferson St, New York City, NY 10001" +205060,AA Batteries (4-pack),1,3.84,05/27/19 14:37,"990 Main St, San Francisco, CA 94016" +205061,Wired Headphones,1,11.99,05/29/19 07:12,"913 Center St, Dallas, TX 75001" +205062,27in 4K Gaming Monitor,1,389.99,05/10/19 20:48,"102 5th St, San Francisco, CA 94016" +205063,Wired Headphones,1,11.99,05/24/19 11:22,"890 Jefferson St, Los Angeles, CA 90001" +205064,USB-C Charging Cable,1,11.95,05/21/19 22:38,"636 North St, Boston, MA 02215" +205065,Lightning Charging Cable,1,14.95,05/27/19 18:31,"200 13th St, Atlanta, GA 30301" +205066,Wired Headphones,1,11.99,05/14/19 23:17,"571 Hickory St, Dallas, TX 75001" +205067,Apple Airpods Headphones,1,150,05/15/19 17:22,"946 Jefferson St, San Francisco, CA 94016" +205068,27in FHD Monitor,1,149.99,05/22/19 21:59,"401 Church St, Atlanta, GA 30301" +205069,AA Batteries (4-pack),1,3.84,05/22/19 12:11,"429 Jackson St, Portland, OR 97035" +205070,20in Monitor,1,109.99,05/18/19 11:22,"832 South St, Atlanta, GA 30301" +205071,USB-C Charging Cable,1,11.95,05/24/19 18:09,"216 7th St, San Francisco, CA 94016" +205072,AAA Batteries (4-pack),1,2.99,05/29/19 13:07,"175 Main St, Portland, OR 97035" +205073,AA Batteries (4-pack),1,3.84,05/14/19 00:13,"271 5th St, Austin, TX 73301" +205074,27in 4K Gaming Monitor,1,389.99,05/16/19 19:51,"437 Elm St, Dallas, TX 75001" +205075,Macbook Pro Laptop,1,1700,05/27/19 17:31,"105 5th St, San Francisco, CA 94016" +205076,AA Batteries (4-pack),1,3.84,05/04/19 15:50,"268 Pine St, Portland, OR 97035" +205077,Lightning Charging Cable,1,14.95,05/25/19 19:25,"708 1st St, Boston, MA 02215" +205078,Bose SoundSport Headphones,1,99.99,05/12/19 16:22,"993 North St, Portland, OR 97035" +205079,Wired Headphones,1,11.99,05/17/19 19:06,"3 Main St, Atlanta, GA 30301" +205080,20in Monitor,1,109.99,05/17/19 11:15,"169 Center St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +205081,Lightning Charging Cable,1,14.95,05/13/19 15:21,"819 2nd St, Los Angeles, CA 90001" +205082,Apple Airpods Headphones,1,150,05/12/19 18:46,"316 Hill St, Dallas, TX 75001" +205083,Bose SoundSport Headphones,1,99.99,05/21/19 07:32,"327 8th St, New York City, NY 10001" +205084,Flatscreen TV,1,300,05/12/19 11:59,"867 Spruce St, San Francisco, CA 94016" +205085,AAA Batteries (4-pack),3,2.99,05/27/19 10:27,"769 West St, San Francisco, CA 94016" +205086,Macbook Pro Laptop,1,1700,05/07/19 15:40,"800 Cherry St, Dallas, TX 75001" +205087,AA Batteries (4-pack),1,3.84,05/31/19 23:02,"106 Madison St, Boston, MA 02215" +205088,AAA Batteries (4-pack),2,2.99,05/21/19 14:23,"824 6th St, New York City, NY 10001" +205089,AAA Batteries (4-pack),1,2.99,05/11/19 13:08,"711 1st St, New York City, NY 10001" +205090,Apple Airpods Headphones,1,150,05/10/19 10:50,"272 9th St, Los Angeles, CA 90001" +205091,AA Batteries (4-pack),1,3.84,05/02/19 08:44,"688 Johnson St, New York City, NY 10001" +205092,Google Phone,1,600,05/02/19 10:14,"128 Adams St, Los Angeles, CA 90001" +205093,AAA Batteries (4-pack),3,2.99,05/27/19 16:41,"679 Hill St, Boston, MA 02215" +205094,USB-C Charging Cable,1,11.95,05/12/19 17:18,"678 Elm St, Los Angeles, CA 90001" +205095,Bose SoundSport Headphones,1,99.99,05/01/19 21:22,"627 14th St, San Francisco, CA 94016" +205096,USB-C Charging Cable,1,11.95,05/26/19 04:59,"399 2nd St, Portland, OR 97035" +205097,iPhone,1,700,05/22/19 12:51,"53 Jackson St, Atlanta, GA 30301" +205098,Lightning Charging Cable,1,14.95,05/28/19 01:26,"314 Walnut St, Atlanta, GA 30301" +205099,USB-C Charging Cable,1,11.95,05/22/19 12:30,"852 River St, Atlanta, GA 30301" +205100,34in Ultrawide Monitor,1,379.99,05/07/19 16:31,"103 Forest St, New York City, NY 10001" +205101,Macbook Pro Laptop,1,1700,05/10/19 12:21,"159 1st St, Seattle, WA 98101" +205102,Bose SoundSport Headphones,1,99.99,05/29/19 13:10,"522 Church St, San Francisco, CA 94016" +205102,USB-C Charging Cable,1,11.95,05/29/19 13:10,"522 Church St, San Francisco, CA 94016" +205103,AAA Batteries (4-pack),1,2.99,05/05/19 23:50,"524 14th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +205104,AAA Batteries (4-pack),1,2.99,05/20/19 07:04,"238 Hill St, San Francisco, CA 94016" +205105,34in Ultrawide Monitor,1,379.99,05/17/19 19:27,"574 Highland St, Atlanta, GA 30301" +205106,ThinkPad Laptop,1,999.99,05/25/19 16:55,"579 11th St, New York City, NY 10001" +205107,27in 4K Gaming Monitor,1,389.99,05/17/19 21:51,"238 14th St, San Francisco, CA 94016" +205108,AA Batteries (4-pack),1,3.84,05/08/19 17:48,"603 Elm St, Seattle, WA 98101" +205109,Macbook Pro Laptop,1,1700,05/25/19 15:12,"599 Sunset St, Dallas, TX 75001" +205110,Macbook Pro Laptop,1,1700,05/21/19 12:58,"438 6th St, San Francisco, CA 94016" +205111,Bose SoundSport Headphones,1,99.99,05/28/19 10:31,"139 2nd St, Portland, OR 97035" +205112,AA Batteries (4-pack),2,3.84,05/16/19 23:48,"876 Cherry St, Dallas, TX 75001" +205113,ThinkPad Laptop,1,999.99,05/09/19 11:45,"152 Johnson St, San Francisco, CA 94016" +205114,Lightning Charging Cable,1,14.95,05/20/19 15:01,"914 13th St, Los Angeles, CA 90001" +205115,Wired Headphones,1,11.99,05/01/19 16:02,"645 Forest St, San Francisco, CA 94016" +205116,USB-C Charging Cable,1,11.95,05/06/19 19:37,"904 Cedar St, San Francisco, CA 94016" +205117,AA Batteries (4-pack),1,3.84,05/05/19 21:01,"628 11th St, New York City, NY 10001" +205118,USB-C Charging Cable,1,11.95,05/18/19 13:43,"930 Church St, Boston, MA 02215" +205119,AA Batteries (4-pack),3,3.84,05/01/19 11:18,"769 Elm St, San Francisco, CA 94016" +205120,Lightning Charging Cable,1,14.95,05/23/19 20:31,"159 Forest St, Boston, MA 02215" +205121,USB-C Charging Cable,1,11.95,05/22/19 18:10,"299 Spruce St, Seattle, WA 98101" +205122,Bose SoundSport Headphones,1,99.99,05/10/19 16:14,"898 14th St, Seattle, WA 98101" +205123,USB-C Charging Cable,1,11.95,05/31/19 16:48,"577 13th St, Austin, TX 73301" +205124,Apple Airpods Headphones,1,150,05/12/19 09:32,"941 Jefferson St, San Francisco, CA 94016" +205125,iPhone,1,700,05/12/19 17:44,"691 Meadow St, Los Angeles, CA 90001" +205125,Lightning Charging Cable,1,14.95,05/12/19 17:44,"691 Meadow St, Los Angeles, CA 90001" +205126,27in FHD Monitor,1,149.99,05/30/19 16:19,"452 Elm St, Boston, MA 02215" +205127,34in Ultrawide Monitor,1,379.99,05/14/19 18:34,"129 7th St, Boston, MA 02215" +205128,Wired Headphones,1,11.99,05/15/19 21:31,"645 Lake St, Boston, MA 02215" +205129,Wired Headphones,1,11.99,05/20/19 23:51,"46 Main St, Austin, TX 73301" +205130,Bose SoundSport Headphones,1,99.99,05/20/19 19:11,"522 West St, Seattle, WA 98101" +205131,Lightning Charging Cable,1,14.95,05/07/19 09:32,"858 Pine St, Portland, OR 97035" +205132,AAA Batteries (4-pack),2,2.99,05/09/19 20:45,"507 12th St, Atlanta, GA 30301" +205133,AAA Batteries (4-pack),1,2.99,05/02/19 17:03,"585 Forest St, San Francisco, CA 94016" +205134,USB-C Charging Cable,1,11.95,05/18/19 14:27,"615 South St, San Francisco, CA 94016" +205135,AA Batteries (4-pack),1,3.84,05/17/19 12:43,"204 Pine St, Los Angeles, CA 90001" +205136,Flatscreen TV,1,300,05/08/19 18:17,"575 Park St, Seattle, WA 98101" +205137,AA Batteries (4-pack),2,3.84,05/20/19 14:12,"936 11th St, Austin, TX 73301" +205138,Wired Headphones,1,11.99,05/05/19 13:02,"317 14th St, San Francisco, CA 94016" +205139,AAA Batteries (4-pack),2,2.99,05/15/19 07:10,"10 Lake St, San Francisco, CA 94016" +205140,Wired Headphones,1,11.99,05/19/19 16:59,"862 Lake St, Boston, MA 02215" +205141,Wired Headphones,1,11.99,05/29/19 13:12,"892 Adams St, New York City, NY 10001" +205142,Wired Headphones,2,11.99,05/29/19 13:17,"689 6th St, Los Angeles, CA 90001" +205143,34in Ultrawide Monitor,1,379.99,05/18/19 19:19,"858 Jefferson St, Portland, OR 97035" +205144,Apple Airpods Headphones,1,150,05/03/19 13:00,"66 Main St, Los Angeles, CA 90001" +205145,Flatscreen TV,1,300,05/06/19 22:47,"820 Main St, Portland, OR 97035" +205146,AAA Batteries (4-pack),1,2.99,05/17/19 00:38,"907 Church St, San Francisco, CA 94016" +205147,27in FHD Monitor,1,149.99,05/28/19 15:28,"119 North St, New York City, NY 10001" +205148,AA Batteries (4-pack),1,3.84,05/05/19 13:43,"647 9th St, Seattle, WA 98101" +205149,Apple Airpods Headphones,1,150,05/29/19 14:51,"100 2nd St, Los Angeles, CA 90001" +205150,Lightning Charging Cable,1,14.95,05/02/19 18:36,"860 Ridge St, Boston, MA 02215" +205151,Apple Airpods Headphones,1,150,05/03/19 19:33,"256 Spruce St, San Francisco, CA 94016" +205152,Wired Headphones,1,11.99,05/06/19 18:48,"988 Jefferson St, New York City, NY 10001" +205153,Google Phone,2,600,05/31/19 13:29,"40 Center St, Dallas, TX 75001" +205154,AAA Batteries (4-pack),1,2.99,05/09/19 14:29,"780 Lake St, San Francisco, CA 94016" +205155,USB-C Charging Cable,1,11.95,05/17/19 19:01,"452 14th St, Dallas, TX 75001" +205156,Bose SoundSport Headphones,1,99.99,05/01/19 13:17,"251 14th St, Los Angeles, CA 90001" +205157,34in Ultrawide Monitor,1,379.99,05/28/19 10:57,"189 Sunset St, San Francisco, CA 94016" +205158,Wired Headphones,1,11.99,05/17/19 12:34,"690 4th St, Los Angeles, CA 90001" +205159,Bose SoundSport Headphones,1,99.99,05/19/19 09:06,"477 West St, Austin, TX 73301" +205160,Macbook Pro Laptop,1,1700,05/24/19 18:41,"73 6th St, San Francisco, CA 94016" +205161,AA Batteries (4-pack),1,3.84,05/19/19 14:44,"321 Elm St, Atlanta, GA 30301" +205162,iPhone,1,700,05/18/19 07:36,"141 Adams St, Los Angeles, CA 90001" +205162,Lightning Charging Cable,1,14.95,05/18/19 07:36,"141 Adams St, Los Angeles, CA 90001" +205163,Wired Headphones,1,11.99,05/29/19 06:51,"743 7th St, Portland, OR 97035" +205164,Wired Headphones,1,11.99,05/03/19 16:28,"415 Cherry St, Boston, MA 02215" +205165,iPhone,1,700,05/07/19 08:09,"120 Church St, Dallas, TX 75001" +205165,Lightning Charging Cable,2,14.95,05/07/19 08:09,"120 Church St, Dallas, TX 75001" +205165,Wired Headphones,1,11.99,05/07/19 08:09,"120 Church St, Dallas, TX 75001" +205166,27in 4K Gaming Monitor,1,389.99,05/29/19 22:23,"265 Park St, New York City, NY 10001" +205167,AA Batteries (4-pack),1,3.84,05/29/19 16:02,"671 Forest St, San Francisco, CA 94016" +205168,Flatscreen TV,1,300,05/22/19 13:23,"136 South St, Los Angeles, CA 90001" +205169,ThinkPad Laptop,1,999.99,05/23/19 13:29,"794 Park St, Atlanta, GA 30301" +205170,USB-C Charging Cable,1,11.95,05/02/19 19:14,"259 Washington St, Portland, OR 97035" +205171,20in Monitor,1,109.99,05/26/19 12:53,"699 Pine St, New York City, NY 10001" +205172,Apple Airpods Headphones,1,150,05/17/19 23:44,"655 Johnson St, San Francisco, CA 94016" +205173,USB-C Charging Cable,1,11.95,05/16/19 16:09,"319 9th St, Dallas, TX 75001" +205174,Bose SoundSport Headphones,1,99.99,05/18/19 12:38,"408 11th St, New York City, NY 10001" +205175,Apple Airpods Headphones,1,150,05/20/19 11:40,"442 Forest St, Los Angeles, CA 90001" +205176,Apple Airpods Headphones,1,150,05/20/19 09:50,"363 11th St, San Francisco, CA 94016" +205177,20in Monitor,1,109.99,05/20/19 11:54,"912 Willow St, New York City, NY 10001" +205178,27in 4K Gaming Monitor,1,389.99,05/04/19 09:59,"87 Jackson St, San Francisco, CA 94016" +205179,AA Batteries (4-pack),1,3.84,05/16/19 16:30,"364 9th St, San Francisco, CA 94016" +205180,ThinkPad Laptop,1,999.99,05/16/19 14:54,"896 2nd St, Seattle, WA 98101" +205181,Apple Airpods Headphones,1,150,05/20/19 17:06,"70 Hickory St, San Francisco, CA 94016" +205182,ThinkPad Laptop,1,999.99,05/29/19 16:39,"28 13th St, Dallas, TX 75001" +205183,27in FHD Monitor,1,149.99,05/17/19 10:06,"215 2nd St, Dallas, TX 75001" +205184,USB-C Charging Cable,1,11.95,05/28/19 23:14,"763 13th St, San Francisco, CA 94016" +205185,27in FHD Monitor,1,149.99,05/20/19 14:20,"811 9th St, San Francisco, CA 94016" +205186,Lightning Charging Cable,1,14.95,05/27/19 14:35,"249 10th St, Portland, OR 97035" +205187,USB-C Charging Cable,1,11.95,05/02/19 00:30,"726 Dogwood St, New York City, NY 10001" +205188,Bose SoundSport Headphones,1,99.99,05/20/19 18:19,"178 Jefferson St, Portland, OR 97035" +205189,USB-C Charging Cable,1,11.95,05/24/19 07:07,"219 Lakeview St, Seattle, WA 98101" +205190,AAA Batteries (4-pack),3,2.99,05/30/19 16:20,"798 Dogwood St, Austin, TX 73301" +205191,20in Monitor,1,109.99,05/26/19 00:51,"7 1st St, San Francisco, CA 94016" +205192,Lightning Charging Cable,1,14.95,05/11/19 22:20,"252 13th St, Dallas, TX 75001" +205193,AAA Batteries (4-pack),1,2.99,05/20/19 11:35,"557 Lakeview St, Seattle, WA 98101" +205194,27in 4K Gaming Monitor,1,389.99,05/08/19 09:11,"153 Sunset St, Austin, TX 73301" +205195,Apple Airpods Headphones,1,150,05/03/19 21:48,"796 8th St, Seattle, WA 98101" +205196,Macbook Pro Laptop,1,1700,05/04/19 22:18,"576 Hickory St, Seattle, WA 98101" +205197,AAA Batteries (4-pack),4,2.99,05/15/19 19:56,"135 Pine St, San Francisco, CA 94016" +205198,AA Batteries (4-pack),1,3.84,05/30/19 19:36,"953 Church St, Portland, OR 97035" +205199,Lightning Charging Cable,1,14.95,05/26/19 14:00,"489 Cedar St, Dallas, TX 75001" +205200,Lightning Charging Cable,1,14.95,05/18/19 23:56,"535 Hickory St, San Francisco, CA 94016" +205201,Lightning Charging Cable,1,14.95,05/22/19 18:16,"122 Meadow St, Los Angeles, CA 90001" +205202,Apple Airpods Headphones,1,150,05/01/19 19:53,"615 Jefferson St, San Francisco, CA 94016" +205203,USB-C Charging Cable,1,11.95,05/31/19 20:06,"710 Johnson St, Portland, ME 04101" +205204,AAA Batteries (4-pack),3,2.99,05/04/19 14:36,"568 12th St, Atlanta, GA 30301" +205205,Lightning Charging Cable,1,14.95,05/12/19 21:37,"646 South St, Austin, TX 73301" +205206,AA Batteries (4-pack),2,3.84,05/05/19 13:49,"523 Washington St, New York City, NY 10001" +205207,Lightning Charging Cable,1,14.95,05/30/19 13:08,"881 River St, Boston, MA 02215" +205208,USB-C Charging Cable,1,11.95,05/08/19 14:45,"797 River St, Portland, OR 97035" +205209,AAA Batteries (4-pack),1,2.99,05/03/19 16:47,"562 Maple St, San Francisco, CA 94016" +205210,27in 4K Gaming Monitor,1,389.99,05/24/19 20:33,"996 9th St, San Francisco, CA 94016" +205211,USB-C Charging Cable,1,11.95,05/21/19 14:13,"543 Johnson St, Boston, MA 02215" +205212,34in Ultrawide Monitor,1,379.99,05/11/19 16:41,"312 Highland St, Portland, OR 97035" +205213,20in Monitor,1,109.99,05/08/19 16:58,"295 Pine St, Austin, TX 73301" +205214,Flatscreen TV,1,300,05/11/19 18:00,"920 Meadow St, New York City, NY 10001" +205215,AA Batteries (4-pack),1,3.84,05/09/19 11:11,"734 7th St, Portland, ME 04101" +205216,USB-C Charging Cable,1,11.95,05/19/19 11:39,"172 7th St, Seattle, WA 98101" +205217,27in FHD Monitor,1,149.99,05/09/19 11:35,"151 Chestnut St, Portland, OR 97035" +205218,Bose SoundSport Headphones,1,99.99,05/27/19 20:13,"385 Hickory St, Los Angeles, CA 90001" +205219,Apple Airpods Headphones,1,150,05/28/19 19:52,"344 12th St, San Francisco, CA 94016" +205220,Lightning Charging Cable,1,14.95,05/02/19 10:51,"744 Washington St, New York City, NY 10001" +205221,Lightning Charging Cable,1,14.95,05/20/19 18:36,"388 14th St, San Francisco, CA 94016" +205222,Apple Airpods Headphones,1,150,05/08/19 15:58,"901 6th St, Atlanta, GA 30301" +205223,AA Batteries (4-pack),2,3.84,05/01/19 10:54,"49 9th St, Atlanta, GA 30301" +205224,LG Dryer,1,600.0,05/03/19 07:26,"167 Park St, San Francisco, CA 94016" +205225,Lightning Charging Cable,1,14.95,05/09/19 18:10,"631 Cherry St, Portland, OR 97035" +205226,Apple Airpods Headphones,1,150,05/19/19 07:36,"622 River St, Portland, OR 97035" +205227,iPhone,1,700,05/23/19 19:22,"997 Lakeview St, Portland, ME 04101" +205228,Google Phone,1,600,05/25/19 13:08,"176 Hickory St, San Francisco, CA 94016" +205228,Wired Headphones,1,11.99,05/25/19 13:08,"176 Hickory St, San Francisco, CA 94016" +205229,27in 4K Gaming Monitor,1,389.99,05/04/19 00:12,"155 8th St, Atlanta, GA 30301" +205229,Wired Headphones,1,11.99,05/04/19 00:12,"155 8th St, Atlanta, GA 30301" +205230,ThinkPad Laptop,1,999.99,05/24/19 13:46,"250 Jackson St, Atlanta, GA 30301" +205231,27in 4K Gaming Monitor,1,389.99,05/13/19 22:30,"177 Hickory St, Portland, ME 04101" +205232,Lightning Charging Cable,1,14.95,05/18/19 21:12,"119 1st St, New York City, NY 10001" +205233,USB-C Charging Cable,1,11.95,05/19/19 17:56,"833 5th St, San Francisco, CA 94016" +205234,AAA Batteries (4-pack),1,2.99,05/24/19 18:25,"404 Lake St, Boston, MA 02215" +205235,Wired Headphones,1,11.99,05/18/19 11:19,"372 13th St, Dallas, TX 75001" +205236,Macbook Pro Laptop,1,1700,05/17/19 11:53,"245 2nd St, San Francisco, CA 94016" +205237,ThinkPad Laptop,1,999.99,05/09/19 08:37,"846 Cherry St, Dallas, TX 75001" +205238,Apple Airpods Headphones,1,150,05/25/19 15:01,"658 Center St, San Francisco, CA 94016" +205239,Bose SoundSport Headphones,1,99.99,05/12/19 23:45,"208 Church St, Seattle, WA 98101" +205240,Flatscreen TV,1,300,05/06/19 14:46,"107 5th St, New York City, NY 10001" +205241,AA Batteries (4-pack),1,3.84,05/21/19 12:06,"535 South St, San Francisco, CA 94016" +205242,Bose SoundSport Headphones,1,99.99,05/09/19 01:45,"410 North St, Portland, OR 97035" +205243,34in Ultrawide Monitor,1,379.99,05/28/19 15:45,"741 Lakeview St, Boston, MA 02215" +205244,Wired Headphones,2,11.99,05/18/19 18:07,"810 North St, San Francisco, CA 94016" +205245,AAA Batteries (4-pack),5,2.99,05/18/19 10:35,"789 South St, Seattle, WA 98101" +205246,Macbook Pro Laptop,1,1700,05/17/19 09:40,"397 7th St, Boston, MA 02215" +205247,Wired Headphones,1,11.99,05/28/19 20:36,"542 Lincoln St, New York City, NY 10001" +205248,Flatscreen TV,1,300,05/17/19 17:50,"513 Dogwood St, Austin, TX 73301" +205249,Lightning Charging Cable,1,14.95,05/13/19 10:56,"871 4th St, San Francisco, CA 94016" +205250,Lightning Charging Cable,1,14.95,05/13/19 10:03,"81 14th St, Boston, MA 02215" +205251,USB-C Charging Cable,1,11.95,05/04/19 16:40,"485 2nd St, Boston, MA 02215" +205252,AAA Batteries (4-pack),1,2.99,05/07/19 13:16,"686 Adams St, San Francisco, CA 94016" +205253,ThinkPad Laptop,1,999.99,05/20/19 15:00,"341 Ridge St, Atlanta, GA 30301" +205254,USB-C Charging Cable,1,11.95,05/23/19 16:40,"646 6th St, Los Angeles, CA 90001" +205255,Google Phone,1,600,05/18/19 11:14,"612 2nd St, Portland, OR 97035" +205256,iPhone,1,700,05/09/19 15:52,"296 1st St, New York City, NY 10001" +205256,Wired Headphones,1,11.99,05/09/19 15:52,"296 1st St, New York City, NY 10001" +205257,Flatscreen TV,1,300,05/31/19 08:17,"469 Meadow St, Boston, MA 02215" +205258,20in Monitor,1,109.99,05/08/19 20:10,"101 5th St, Los Angeles, CA 90001" +205259,Bose SoundSport Headphones,1,99.99,05/04/19 20:08,"50 9th St, New York City, NY 10001" +205260,34in Ultrawide Monitor,1,379.99,05/19/19 14:41,"343 9th St, Atlanta, GA 30301" +205261,20in Monitor,1,109.99,05/07/19 22:16,"458 River St, San Francisco, CA 94016" +205262,AAA Batteries (4-pack),2,2.99,05/12/19 21:30,"560 Park St, San Francisco, CA 94016" +205263,27in FHD Monitor,1,149.99,05/18/19 19:43,"156 Highland St, Los Angeles, CA 90001" +205264,Google Phone,1,600,05/26/19 17:51,"186 Hill St, Atlanta, GA 30301" +205264,USB-C Charging Cable,1,11.95,05/26/19 17:51,"186 Hill St, Atlanta, GA 30301" +205265,27in 4K Gaming Monitor,1,389.99,05/26/19 11:35,"566 Lakeview St, New York City, NY 10001" +205266,34in Ultrawide Monitor,1,379.99,05/02/19 11:00,"101 Washington St, San Francisco, CA 94016" +205267,Google Phone,1,600,05/29/19 12:57,"879 Hickory St, Dallas, TX 75001" +205267,USB-C Charging Cable,1,11.95,05/29/19 12:57,"879 Hickory St, Dallas, TX 75001" +205268,Bose SoundSport Headphones,1,99.99,05/01/19 09:49,"468 Lake St, Boston, MA 02215" +205269,AA Batteries (4-pack),1,3.84,05/24/19 15:15,"734 River St, Portland, ME 04101" +205270,Lightning Charging Cable,1,14.95,05/06/19 14:24,"394 Spruce St, Austin, TX 73301" +205271,USB-C Charging Cable,2,11.95,05/31/19 20:17,"707 Jackson St, Austin, TX 73301" +205272,iPhone,1,700,05/07/19 10:32,"937 6th St, New York City, NY 10001" +205273,Apple Airpods Headphones,1,150,05/10/19 15:16,"368 Adams St, Los Angeles, CA 90001" +205274,Apple Airpods Headphones,1,150,05/06/19 19:43,"520 West St, Atlanta, GA 30301" +205275,USB-C Charging Cable,1,11.95,05/31/19 19:53,"19 Jackson St, Dallas, TX 75001" +205276,Wired Headphones,1,11.99,05/08/19 08:16,"39 10th St, Los Angeles, CA 90001" +205277,Wired Headphones,1,11.99,05/26/19 10:15,"10 Park St, Dallas, TX 75001" +205278,USB-C Charging Cable,1,11.95,05/30/19 08:58,"171 1st St, Portland, OR 97035" +205279,Apple Airpods Headphones,1,150,05/16/19 11:46,"275 2nd St, Dallas, TX 75001" +205280,AA Batteries (4-pack),1,3.84,05/20/19 14:03,"340 9th St, San Francisco, CA 94016" +205281,Bose SoundSport Headphones,1,99.99,05/24/19 12:01,"349 Cedar St, Austin, TX 73301" +205282,27in 4K Gaming Monitor,1,389.99,05/16/19 12:56,"81 4th St, San Francisco, CA 94016" +205283,Lightning Charging Cable,1,14.95,05/17/19 17:41,"230 Hickory St, New York City, NY 10001" +205284,Apple Airpods Headphones,1,150,05/11/19 19:03,"262 4th St, New York City, NY 10001" +205285,Google Phone,1,600,05/12/19 02:15,"588 Chestnut St, San Francisco, CA 94016" +205285,27in FHD Monitor,1,149.99,05/12/19 02:15,"588 Chestnut St, San Francisco, CA 94016" +205286,27in FHD Monitor,1,149.99,05/06/19 13:28,"77 Lakeview St, Austin, TX 73301" +205287,AA Batteries (4-pack),1,3.84,05/22/19 16:48,"632 Jackson St, Seattle, WA 98101" +205288,iPhone,1,700,05/17/19 16:50,"565 Forest St, Los Angeles, CA 90001" +205289,34in Ultrawide Monitor,1,379.99,05/22/19 00:25,"374 Sunset St, San Francisco, CA 94016" +,,,,, +205290,AAA Batteries (4-pack),2,2.99,05/13/19 16:38,"317 Lakeview St, San Francisco, CA 94016" +205291,Apple Airpods Headphones,1,150,05/17/19 14:38,"509 6th St, New York City, NY 10001" +205292,Google Phone,1,600,05/28/19 01:33,"336 9th St, Boston, MA 02215" +205293,Flatscreen TV,1,300,05/02/19 09:35,"329 4th St, New York City, NY 10001" +205294,AA Batteries (4-pack),3,3.84,05/27/19 10:17,"280 Johnson St, Dallas, TX 75001" +205295,USB-C Charging Cable,1,11.95,05/11/19 09:46,"462 Lake St, Seattle, WA 98101" +205296,Wired Headphones,1,11.99,05/23/19 01:00,"909 5th St, Atlanta, GA 30301" +205297,Apple Airpods Headphones,1,150,05/29/19 10:02,"966 Spruce St, San Francisco, CA 94016" +205298,Vareebadd Phone,1,400,05/19/19 22:44,"173 Lakeview St, San Francisco, CA 94016" +205299,Wired Headphones,1,11.99,05/15/19 23:57,"474 Madison St, New York City, NY 10001" +205300,iPhone,1,700,05/02/19 12:52,"104 10th St, New York City, NY 10001" +205300,Lightning Charging Cable,1,14.95,05/02/19 12:52,"104 10th St, New York City, NY 10001" +205301,Wired Headphones,1,11.99,05/03/19 10:26,"388 10th St, Austin, TX 73301" +205302,27in 4K Gaming Monitor,1,389.99,05/12/19 10:46,"961 Church St, New York City, NY 10001" +205303,27in 4K Gaming Monitor,1,389.99,05/31/19 14:12,"635 10th St, San Francisco, CA 94016" +205304,AA Batteries (4-pack),1,3.84,05/03/19 12:18,"476 11th St, Seattle, WA 98101" +205305,27in 4K Gaming Monitor,1,389.99,05/04/19 18:11,"336 Willow St, San Francisco, CA 94016" +205306,Wired Headphones,1,11.99,05/19/19 17:34,"165 Walnut St, Boston, MA 02215" +205307,Wired Headphones,1,11.99,05/02/19 16:40,"637 Adams St, Dallas, TX 75001" +205308,Wired Headphones,1,11.99,05/30/19 10:25,"92 14th St, Boston, MA 02215" +205309,20in Monitor,1,109.99,05/24/19 10:26,"313 Church St, Boston, MA 02215" +205310,Lightning Charging Cable,1,14.95,05/19/19 17:41,"588 Willow St, Boston, MA 02215" +205311,AAA Batteries (4-pack),1,2.99,05/31/19 13:12,"623 River St, Boston, MA 02215" +205312,USB-C Charging Cable,1,11.95,05/01/19 10:01,"273 Park St, San Francisco, CA 94016" +205313,Apple Airpods Headphones,1,150,05/21/19 09:41,"177 Hickory St, San Francisco, CA 94016" +205314,Wired Headphones,2,11.99,05/02/19 13:33,"445 Highland St, New York City, NY 10001" +205315,Lightning Charging Cable,1,14.95,05/04/19 11:51,"635 Jackson St, San Francisco, CA 94016" +205316,USB-C Charging Cable,1,11.95,05/12/19 17:34,"638 Church St, Los Angeles, CA 90001" +205317,USB-C Charging Cable,1,11.95,05/02/19 13:18,"236 North St, San Francisco, CA 94016" +205318,Wired Headphones,1,11.99,05/25/19 11:17,"806 Hickory St, San Francisco, CA 94016" +205319,iPhone,1,700,05/08/19 15:20,"845 West St, New York City, NY 10001" +205319,Lightning Charging Cable,1,14.95,05/08/19 15:20,"845 West St, New York City, NY 10001" +205320,AAA Batteries (4-pack),2,2.99,05/06/19 14:20,"236 Center St, New York City, NY 10001" +205321,USB-C Charging Cable,1,11.95,05/04/19 09:53,"797 Jackson St, Los Angeles, CA 90001" +205322,Lightning Charging Cable,1,14.95,05/29/19 12:52,"529 Lakeview St, San Francisco, CA 94016" +205323,ThinkPad Laptop,1,999.99,05/09/19 09:57,"42 Wilson St, San Francisco, CA 94016" +205324,AA Batteries (4-pack),2,3.84,05/04/19 04:42,"813 10th St, Los Angeles, CA 90001" +205325,Google Phone,1,600,05/20/19 12:35,"169 Lake St, New York City, NY 10001" +205325,Bose SoundSport Headphones,1,99.99,05/20/19 12:35,"169 Lake St, New York City, NY 10001" +205326,Wired Headphones,3,11.99,05/08/19 16:36,"614 Hill St, San Francisco, CA 94016" +205327,Google Phone,1,600,05/09/19 11:45,"72 Jefferson St, New York City, NY 10001" +205328,34in Ultrawide Monitor,1,379.99,05/25/19 14:54,"167 Highland St, New York City, NY 10001" +205329,AA Batteries (4-pack),1,3.84,05/21/19 04:11,"832 Pine St, Austin, TX 73301" +205330,Apple Airpods Headphones,1,150,05/27/19 12:15,"223 Adams St, Austin, TX 73301" +205331,Lightning Charging Cable,2,14.95,05/29/19 21:39,"497 Chestnut St, San Francisco, CA 94016" +205332,Bose SoundSport Headphones,1,99.99,05/22/19 11:36,"520 Adams St, San Francisco, CA 94016" +205333,27in FHD Monitor,1,149.99,05/06/19 20:43,"629 12th St, Dallas, TX 75001" +205334,ThinkPad Laptop,1,999.99,05/21/19 20:01,"817 Adams St, Los Angeles, CA 90001" +205335,Wired Headphones,1,11.99,05/13/19 11:56,"952 Chestnut St, New York City, NY 10001" +205336,AAA Batteries (4-pack),2,2.99,05/24/19 06:20,"291 13th St, San Francisco, CA 94016" +205337,Bose SoundSport Headphones,1,99.99,05/03/19 02:01,"196 11th St, San Francisco, CA 94016" +205338,AA Batteries (4-pack),1,3.84,05/20/19 14:39,"691 Lakeview St, San Francisco, CA 94016" +205339,USB-C Charging Cable,1,11.95,05/30/19 17:17,"75 9th St, Boston, MA 02215" +205340,AA Batteries (4-pack),1,3.84,05/23/19 06:13,"662 Jackson St, New York City, NY 10001" +205341,USB-C Charging Cable,1,11.95,05/06/19 02:08,"416 Johnson St, Los Angeles, CA 90001" +205342,34in Ultrawide Monitor,1,379.99,05/21/19 09:18,"468 Center St, Boston, MA 02215" +205343,iPhone,1,700,05/09/19 07:34,"347 North St, Austin, TX 73301" +205344,Google Phone,1,600,05/28/19 12:40,"712 4th St, San Francisco, CA 94016" +205344,USB-C Charging Cable,1,11.95,05/28/19 12:40,"712 4th St, San Francisco, CA 94016" +205345,Wired Headphones,1,11.99,05/09/19 09:47,"837 5th St, Dallas, TX 75001" +205346,Apple Airpods Headphones,1,150,05/20/19 08:55,"201 Highland St, San Francisco, CA 94016" +205347,AAA Batteries (4-pack),1,2.99,05/19/19 09:06,"52 Main St, San Francisco, CA 94016" +205348,Google Phone,1,600,05/15/19 17:21,"341 South St, Austin, TX 73301" +205348,Wired Headphones,1,11.99,05/15/19 17:21,"341 South St, Austin, TX 73301" +205349,Bose SoundSport Headphones,1,99.99,05/10/19 21:30,"87 5th St, San Francisco, CA 94016" +205350,USB-C Charging Cable,1,11.95,05/27/19 12:30,"341 Cedar St, New York City, NY 10001" +205351,Apple Airpods Headphones,1,150,05/11/19 08:17,"838 5th St, Los Angeles, CA 90001" +205352,Flatscreen TV,1,300,05/05/19 15:02,"903 Highland St, San Francisco, CA 94016" +205353,AA Batteries (4-pack),1,3.84,05/07/19 15:36,"170 Washington St, Seattle, WA 98101" +205354,Flatscreen TV,1,300,05/21/19 21:25,"425 Park St, Boston, MA 02215" +205355,AA Batteries (4-pack),1,3.84,05/17/19 20:36,"497 Adams St, Portland, ME 04101" +205356,Apple Airpods Headphones,1,150,05/03/19 19:04,"369 13th St, Portland, ME 04101" +205357,Wired Headphones,1,11.99,05/06/19 16:10,"274 2nd St, Boston, MA 02215" +205358,Wired Headphones,1,11.99,05/25/19 15:06,"819 Adams St, New York City, NY 10001" +205359,Wired Headphones,1,11.99,05/19/19 14:55,"486 2nd St, Portland, OR 97035" +205360,ThinkPad Laptop,1,999.99,05/18/19 12:51,"501 Spruce St, Portland, OR 97035" +205361,Lightning Charging Cable,1,14.95,05/08/19 19:13,"954 2nd St, Los Angeles, CA 90001" +205362,AA Batteries (4-pack),1,3.84,05/22/19 10:39,"779 Hickory St, Austin, TX 73301" +205363,Wired Headphones,1,11.99,05/02/19 23:19,"392 Jackson St, New York City, NY 10001" +205363,USB-C Charging Cable,1,11.95,05/02/19 23:19,"392 Jackson St, New York City, NY 10001" +205364,AAA Batteries (4-pack),1,2.99,05/21/19 12:29,"853 Center St, San Francisco, CA 94016" +205365,34in Ultrawide Monitor,1,379.99,05/20/19 14:58,"535 8th St, Dallas, TX 75001" +205366,AA Batteries (4-pack),1,3.84,05/26/19 11:19,"612 Sunset St, Los Angeles, CA 90001" +205367,Lightning Charging Cable,1,14.95,05/26/19 16:49,"760 Willow St, Boston, MA 02215" +205368,Lightning Charging Cable,2,14.95,05/31/19 23:25,"896 Pine St, Austin, TX 73301" +205369,Lightning Charging Cable,1,14.95,05/12/19 12:59,"47 South St, Dallas, TX 75001" +205370,USB-C Charging Cable,1,11.95,05/08/19 15:03,"480 8th St, Boston, MA 02215" +205371,Lightning Charging Cable,1,14.95,05/06/19 05:38,"589 12th St, Boston, MA 02215" +205372,AAA Batteries (4-pack),1,2.99,05/21/19 18:19,"200 Jackson St, Austin, TX 73301" +205373,iPhone,1,700,05/31/19 11:04,"839 Sunset St, San Francisco, CA 94016" +205374,Apple Airpods Headphones,1,150,05/29/19 20:58,"768 2nd St, Seattle, WA 98101" +205375,AA Batteries (4-pack),2,3.84,05/06/19 18:46,"644 Forest St, Portland, OR 97035" +205376,Lightning Charging Cable,1,14.95,05/28/19 19:51,"530 Walnut St, Los Angeles, CA 90001" +205377,USB-C Charging Cable,1,11.95,05/28/19 01:22,"707 Spruce St, New York City, NY 10001" +205378,iPhone,1,700,05/29/19 12:41,"768 River St, New York City, NY 10001" +205379,27in 4K Gaming Monitor,1,389.99,05/03/19 07:57,"669 4th St, San Francisco, CA 94016" +205380,Lightning Charging Cable,1,14.95,05/21/19 12:30,"67 Main St, San Francisco, CA 94016" +205381,Macbook Pro Laptop,1,1700,05/16/19 21:42,"945 7th St, San Francisco, CA 94016" +205382,Wired Headphones,1,11.99,05/04/19 20:51,"17 Hill St, Boston, MA 02215" +205383,Wired Headphones,1,11.99,05/21/19 11:40,"693 Elm St, Boston, MA 02215" +205384,Apple Airpods Headphones,1,150,05/22/19 09:52,"680 4th St, Portland, OR 97035" +205385,Flatscreen TV,1,300,05/22/19 21:06,"284 Jefferson St, San Francisco, CA 94016" +205386,AAA Batteries (4-pack),1,2.99,05/29/19 20:35,"356 Highland St, New York City, NY 10001" +205387,USB-C Charging Cable,1,11.95,05/03/19 16:23,"299 6th St, Los Angeles, CA 90001" +205388,Lightning Charging Cable,1,14.95,05/28/19 18:21,"665 Willow St, Atlanta, GA 30301" +205389,Wired Headphones,1,11.99,05/08/19 18:26,"459 Jackson St, New York City, NY 10001" +205390,Bose SoundSport Headphones,1,99.99,05/09/19 18:24,"860 9th St, Los Angeles, CA 90001" +205391,AAA Batteries (4-pack),1,2.99,05/28/19 10:42,"30 Cedar St, Dallas, TX 75001" +205392,Bose SoundSport Headphones,1,99.99,05/24/19 20:30,"748 13th St, San Francisco, CA 94016" +205393,USB-C Charging Cable,1,11.95,05/31/19 11:30,"221 Cedar St, Los Angeles, CA 90001" +205394,34in Ultrawide Monitor,1,379.99,05/25/19 12:22,"244 Willow St, Atlanta, GA 30301" +205395,LG Dryer,1,600.0,05/20/19 12:44,"150 Spruce St, Portland, OR 97035" +205396,34in Ultrawide Monitor,1,379.99,05/11/19 14:21,"892 7th St, Boston, MA 02215" +205397,AAA Batteries (4-pack),2,2.99,05/29/19 07:25,"648 Lake St, Boston, MA 02215" +205398,Flatscreen TV,1,300,05/12/19 21:59,"937 Center St, Dallas, TX 75001" +205399,Lightning Charging Cable,1,14.95,05/03/19 14:00,"726 Cherry St, New York City, NY 10001" +205400,Bose SoundSport Headphones,1,99.99,05/09/19 17:53,"370 Park St, New York City, NY 10001" +205401,Google Phone,1,600,05/10/19 10:51,"190 River St, San Francisco, CA 94016" +205401,USB-C Charging Cable,1,11.95,05/10/19 10:51,"190 River St, San Francisco, CA 94016" +205402,Google Phone,1,600,05/03/19 19:37,"779 Jackson St, Portland, OR 97035" +205403,Flatscreen TV,1,300,05/01/19 14:51,"304 Adams St, Los Angeles, CA 90001" +205404,AA Batteries (4-pack),1,3.84,05/14/19 13:58,"66 Maple St, Seattle, WA 98101" +205405,AAA Batteries (4-pack),1,2.99,05/02/19 11:43,"194 Wilson St, Los Angeles, CA 90001" +205406,Google Phone,1,600,05/16/19 10:57,"251 Jackson St, Austin, TX 73301" +205407,ThinkPad Laptop,1,999.99,05/15/19 18:47,"367 14th St, Boston, MA 02215" +205408,AAA Batteries (4-pack),1,2.99,05/06/19 14:54,"688 South St, San Francisco, CA 94016" +205409,Lightning Charging Cable,1,14.95,05/14/19 20:11,"971 Maple St, Portland, OR 97035" +205410,Lightning Charging Cable,1,14.95,05/03/19 09:18,"734 Forest St, San Francisco, CA 94016" +205411,Lightning Charging Cable,1,14.95,05/13/19 12:12,"862 Madison St, Los Angeles, CA 90001" +205412,USB-C Charging Cable,1,11.95,05/30/19 10:19,"473 Park St, Los Angeles, CA 90001" +205413,USB-C Charging Cable,1,11.95,05/14/19 00:51,"92 Elm St, Portland, OR 97035" +205414,USB-C Charging Cable,1,11.95,05/07/19 19:26,"518 Chestnut St, Dallas, TX 75001" +205415,AAA Batteries (4-pack),1,2.99,05/09/19 11:27,"127 4th St, New York City, NY 10001" +205416,USB-C Charging Cable,1,11.95,05/05/19 12:05,"900 Sunset St, San Francisco, CA 94016" +205417,AAA Batteries (4-pack),2,2.99,05/04/19 14:24,"774 2nd St, Seattle, WA 98101" +205418,Bose SoundSport Headphones,1,99.99,05/21/19 14:35,"702 Lincoln St, Los Angeles, CA 90001" +205419,Lightning Charging Cable,1,14.95,05/22/19 17:55,"753 West St, Los Angeles, CA 90001" +205420,34in Ultrawide Monitor,1,379.99,05/05/19 12:06,"403 Ridge St, New York City, NY 10001" +205421,Lightning Charging Cable,1,14.95,05/09/19 04:42,"477 Spruce St, San Francisco, CA 94016" +205422,Lightning Charging Cable,1,14.95,05/23/19 13:12,"500 Cedar St, Seattle, WA 98101" +205423,Vareebadd Phone,1,400,05/09/19 12:23,"627 Spruce St, New York City, NY 10001" +205424,34in Ultrawide Monitor,1,379.99,05/11/19 08:36,"829 Dogwood St, Dallas, TX 75001" +205425,AA Batteries (4-pack),1,3.84,05/21/19 19:56,"857 8th St, San Francisco, CA 94016" +205426,Google Phone,1,600,05/13/19 12:06,"709 Hickory St, Boston, MA 02215" +205427,iPhone,1,700,05/04/19 11:38,"417 Ridge St, San Francisco, CA 94016" +205428,Bose SoundSport Headphones,1,99.99,05/13/19 11:02,"343 Madison St, Portland, OR 97035" +205429,Lightning Charging Cable,1,14.95,05/20/19 20:40,"462 Lincoln St, Boston, MA 02215" +205430,Apple Airpods Headphones,1,150,05/19/19 16:10,"533 Washington St, New York City, NY 10001" +205431,Lightning Charging Cable,1,14.95,05/26/19 13:19,"851 10th St, San Francisco, CA 94016" +205432,Bose SoundSport Headphones,1,99.99,05/25/19 14:35,"35 Meadow St, Portland, OR 97035" +205433,Wired Headphones,1,11.99,05/16/19 12:21,"191 2nd St, Seattle, WA 98101" +205434,Bose SoundSport Headphones,1,99.99,05/27/19 15:50,"545 Hickory St, Portland, OR 97035" +205435,Lightning Charging Cable,1,14.95,05/15/19 13:27,"892 Ridge St, San Francisco, CA 94016" +205436,Lightning Charging Cable,1,14.95,05/05/19 17:27,"243 Dogwood St, Seattle, WA 98101" +205437,USB-C Charging Cable,1,11.95,05/18/19 17:54,"562 14th St, Seattle, WA 98101" +205438,Apple Airpods Headphones,1,150,05/31/19 15:00,"396 7th St, San Francisco, CA 94016" +205439,Apple Airpods Headphones,1,150,05/24/19 18:56,"888 Lakeview St, Los Angeles, CA 90001" +205440,USB-C Charging Cable,1,11.95,05/16/19 17:39,"959 Lakeview St, Los Angeles, CA 90001" +205441,Bose SoundSport Headphones,1,99.99,05/01/19 17:44,"723 7th St, Portland, OR 97035" +205442,Apple Airpods Headphones,1,150,05/24/19 16:43,"30 Adams St, Portland, OR 97035" +205443,Wired Headphones,1,11.99,05/24/19 16:22,"638 Lakeview St, New York City, NY 10001" +205444,Apple Airpods Headphones,1,150,05/12/19 11:28,"710 6th St, Dallas, TX 75001" +205444,AA Batteries (4-pack),1,3.84,05/12/19 11:28,"710 6th St, Dallas, TX 75001" +205445,AA Batteries (4-pack),2,3.84,05/24/19 14:32,"344 Cedar St, Dallas, TX 75001" +205446,Apple Airpods Headphones,1,150,05/11/19 20:08,"859 Meadow St, Atlanta, GA 30301" +205447,Lightning Charging Cable,1,14.95,05/13/19 00:11,"720 1st St, Atlanta, GA 30301" +205448,Lightning Charging Cable,1,14.95,05/29/19 15:09,"557 7th St, Atlanta, GA 30301" +205449,Bose SoundSport Headphones,1,99.99,05/10/19 09:47,"919 North St, Dallas, TX 75001" +205450,20in Monitor,1,109.99,05/11/19 19:28,"625 Elm St, San Francisco, CA 94016" +205451,USB-C Charging Cable,1,11.95,05/28/19 13:59,"479 5th St, Seattle, WA 98101" +205452,27in 4K Gaming Monitor,1,389.99,05/10/19 20:07,"619 Johnson St, New York City, NY 10001" +205453,27in 4K Gaming Monitor,1,389.99,05/09/19 10:48,"514 13th St, San Francisco, CA 94016" +205454,Lightning Charging Cable,1,14.95,05/13/19 17:54,"329 Jackson St, Dallas, TX 75001" +205454,Lightning Charging Cable,1,14.95,05/13/19 17:54,"329 Jackson St, Dallas, TX 75001" +205455,AA Batteries (4-pack),2,3.84,05/05/19 17:56,"18 5th St, Los Angeles, CA 90001" +205456,ThinkPad Laptop,1,999.99,05/11/19 10:32,"253 Hickory St, San Francisco, CA 94016" +205457,27in FHD Monitor,1,149.99,05/01/19 20:15,"896 Walnut St, San Francisco, CA 94016" +205458,AAA Batteries (4-pack),1,2.99,05/07/19 20:25,"853 14th St, New York City, NY 10001" +205459,Lightning Charging Cable,1,14.95,05/30/19 02:21,"548 Meadow St, Portland, OR 97035" +205460,Bose SoundSport Headphones,1,99.99,05/25/19 19:42,"491 10th St, Austin, TX 73301" +205461,Apple Airpods Headphones,1,150,05/08/19 12:44,"260 Spruce St, Los Angeles, CA 90001" +205462,27in FHD Monitor,1,149.99,05/12/19 16:00,"284 Forest St, New York City, NY 10001" +205463,Macbook Pro Laptop,1,1700,05/29/19 17:12,"208 Dogwood St, Los Angeles, CA 90001" +205464,Wired Headphones,1,11.99,05/27/19 11:24,"221 1st St, Portland, ME 04101" +205464,Macbook Pro Laptop,1,1700,05/27/19 11:24,"221 1st St, Portland, ME 04101" +205465,AAA Batteries (4-pack),1,2.99,05/31/19 00:22,"76 Highland St, Dallas, TX 75001" +205466,ThinkPad Laptop,1,999.99,05/20/19 09:37,"571 4th St, San Francisco, CA 94016" +205467,34in Ultrawide Monitor,1,379.99,05/25/19 12:24,"128 Jefferson St, San Francisco, CA 94016" +205468,Wired Headphones,1,11.99,05/02/19 10:47,"157 Madison St, New York City, NY 10001" +205469,Flatscreen TV,1,300,05/30/19 18:27,"81 North St, New York City, NY 10001" +205470,Apple Airpods Headphones,1,150,05/02/19 11:34,"849 Spruce St, San Francisco, CA 94016" +205471,AAA Batteries (4-pack),1,2.99,05/10/19 08:54,"615 Willow St, San Francisco, CA 94016" +205472,Bose SoundSport Headphones,1,99.99,05/04/19 10:48,"741 River St, Los Angeles, CA 90001" +205473,Vareebadd Phone,1,400,05/25/19 22:02,"729 7th St, Los Angeles, CA 90001" +205473,USB-C Charging Cable,1,11.95,05/25/19 22:02,"729 7th St, Los Angeles, CA 90001" +205474,USB-C Charging Cable,1,11.95,05/16/19 13:53,"131 5th St, Atlanta, GA 30301" +205475,Wired Headphones,1,11.99,05/30/19 01:07,"895 9th St, New York City, NY 10001" +205476,Wired Headphones,1,11.99,05/29/19 18:13,"42 6th St, San Francisco, CA 94016" +205477,20in Monitor,1,109.99,05/10/19 11:38,"108 Cedar St, Atlanta, GA 30301" +205478,Bose SoundSport Headphones,1,99.99,05/15/19 18:36,"39 Park St, New York City, NY 10001" +205479,iPhone,1,700,05/30/19 16:52,"50 Spruce St, San Francisco, CA 94016" +205480,USB-C Charging Cable,1,11.95,05/26/19 13:33,"194 Center St, Austin, TX 73301" +205481,34in Ultrawide Monitor,1,379.99,05/24/19 21:05,"642 Forest St, San Francisco, CA 94016" +205482,AA Batteries (4-pack),1,3.84,05/10/19 11:19,"295 2nd St, Los Angeles, CA 90001" +205483,Wired Headphones,2,11.99,05/30/19 12:54,"265 8th St, San Francisco, CA 94016" +205483,34in Ultrawide Monitor,1,379.99,05/30/19 12:54,"265 8th St, San Francisco, CA 94016" +205484,Apple Airpods Headphones,1,150,05/13/19 15:26,"445 Lakeview St, Portland, OR 97035" +205485,ThinkPad Laptop,1,999.99,05/07/19 22:34,"718 Highland St, Los Angeles, CA 90001" +205486,AA Batteries (4-pack),3,3.84,05/14/19 11:46,"704 Center St, Seattle, WA 98101" +205487,Wired Headphones,1,11.99,05/14/19 19:19,"227 Lincoln St, Atlanta, GA 30301" +205488,Apple Airpods Headphones,1,150,05/21/19 14:29,"977 Washington St, Austin, TX 73301" +205489,Vareebadd Phone,1,400,05/12/19 19:26,"549 Jefferson St, Los Angeles, CA 90001" +205490,iPhone,1,700,05/14/19 08:30,"398 Dogwood St, Los Angeles, CA 90001" +205491,AA Batteries (4-pack),3,3.84,05/05/19 23:13,"70 Sunset St, Austin, TX 73301" +205492,iPhone,1,700,05/22/19 04:33,"527 Spruce St, Atlanta, GA 30301" +205493,Google Phone,1,600,05/18/19 11:21,"307 2nd St, Los Angeles, CA 90001" +205494,AAA Batteries (4-pack),1,2.99,05/17/19 19:54,"6 1st St, New York City, NY 10001" +205495,AA Batteries (4-pack),1,3.84,05/09/19 20:01,"80 6th St, Los Angeles, CA 90001" +205496,Google Phone,1,600,05/04/19 16:58,"701 Center St, Boston, MA 02215" +205497,Apple Airpods Headphones,1,150,05/18/19 05:58,"661 7th St, San Francisco, CA 94016" +205498,34in Ultrawide Monitor,1,379.99,05/15/19 14:22,"482 Maple St, San Francisco, CA 94016" +205499,AAA Batteries (4-pack),1,2.99,05/02/19 09:02,"382 Dogwood St, Dallas, TX 75001" +205500,iPhone,1,700,05/19/19 12:37,"673 8th St, San Francisco, CA 94016" +205501,iPhone,1,700,05/09/19 13:52,"705 Johnson St, Los Angeles, CA 90001" +205502,AA Batteries (4-pack),1,3.84,05/29/19 14:44,"524 12th St, Los Angeles, CA 90001" +205503,Wired Headphones,1,11.99,05/28/19 20:42,"449 12th St, New York City, NY 10001" +205504,Apple Airpods Headphones,1,150,05/30/19 22:27,"964 11th St, Los Angeles, CA 90001" +205505,AAA Batteries (4-pack),2,2.99,05/29/19 19:29,"109 Forest St, Boston, MA 02215" +205506,AAA Batteries (4-pack),2,2.99,05/20/19 17:21,"572 Cedar St, New York City, NY 10001" +205507,Lightning Charging Cable,1,14.95,05/18/19 09:30,"846 Lake St, Seattle, WA 98101" +205508,AA Batteries (4-pack),1,3.84,05/15/19 19:07,"893 River St, San Francisco, CA 94016" +205509,ThinkPad Laptop,1,999.99,05/21/19 13:52,"939 Cherry St, Dallas, TX 75001" +205510,AA Batteries (4-pack),1,3.84,05/01/19 21:08,"854 Maple St, Los Angeles, CA 90001" +205511,USB-C Charging Cable,2,11.95,05/10/19 23:46,"7 10th St, Atlanta, GA 30301" +205512,AA Batteries (4-pack),1,3.84,05/22/19 09:22,"343 Pine St, New York City, NY 10001" +205513,AAA Batteries (4-pack),1,2.99,05/09/19 07:56,"611 10th St, San Francisco, CA 94016" +205514,27in 4K Gaming Monitor,1,389.99,05/28/19 05:26,"908 13th St, San Francisco, CA 94016" +205515,27in 4K Gaming Monitor,1,389.99,05/07/19 15:52,"219 Park St, Los Angeles, CA 90001" +205516,Macbook Pro Laptop,1,1700,05/20/19 02:43,"955 Ridge St, Austin, TX 73301" +205517,Macbook Pro Laptop,1,1700,05/24/19 17:37,"533 Maple St, Boston, MA 02215" +205518,Lightning Charging Cable,1,14.95,05/19/19 21:41,"258 Lincoln St, Atlanta, GA 30301" +205519,Flatscreen TV,1,300,05/29/19 05:41,"42 4th St, San Francisco, CA 94016" +205520,Wired Headphones,1,11.99,05/21/19 17:19,"98 Elm St, Los Angeles, CA 90001" +205521,AA Batteries (4-pack),1,3.84,05/23/19 16:21,"250 Cherry St, Austin, TX 73301" +205522,AA Batteries (4-pack),1,3.84,05/10/19 18:15,"388 Spruce St, Atlanta, GA 30301" +205523,Lightning Charging Cable,1,14.95,05/02/19 15:02,"545 Johnson St, Los Angeles, CA 90001" +205524,Bose SoundSport Headphones,1,99.99,05/07/19 19:16,"794 Sunset St, Seattle, WA 98101" +205525,27in 4K Gaming Monitor,1,389.99,05/23/19 17:27,"381 Chestnut St, Atlanta, GA 30301" +205526,AAA Batteries (4-pack),1,2.99,05/19/19 22:49,"705 Hill St, New York City, NY 10001" +205527,USB-C Charging Cable,1,11.95,05/20/19 19:11,"915 South St, San Francisco, CA 94016" +,,,,, +205528,27in 4K Gaming Monitor,1,389.99,05/26/19 15:23,"734 Hickory St, Dallas, TX 75001" +205528,USB-C Charging Cable,1,11.95,05/26/19 15:23,"734 Hickory St, Dallas, TX 75001" +205529,AAA Batteries (4-pack),1,2.99,05/13/19 12:27,"294 9th St, New York City, NY 10001" +205530,Wired Headphones,2,11.99,05/15/19 12:31,"691 7th St, New York City, NY 10001" +205531,Google Phone,1,600,05/13/19 22:04,"194 6th St, New York City, NY 10001" +205531,USB-C Charging Cable,1,11.95,05/13/19 22:04,"194 6th St, New York City, NY 10001" +205532,Bose SoundSport Headphones,1,99.99,05/20/19 14:17,"864 Pine St, New York City, NY 10001" +205533,34in Ultrawide Monitor,1,379.99,05/25/19 22:02,"580 Chestnut St, Seattle, WA 98101" +205534,Lightning Charging Cable,1,14.95,05/13/19 15:28,"18 4th St, Los Angeles, CA 90001" +205535,USB-C Charging Cable,1,11.95,05/19/19 20:08,"502 Ridge St, Boston, MA 02215" +205536,AAA Batteries (4-pack),1,2.99,05/16/19 20:03,"954 Johnson St, Los Angeles, CA 90001" +205537,20in Monitor,1,109.99,05/30/19 23:58,"171 Hill St, Los Angeles, CA 90001" +205538,Lightning Charging Cable,1,14.95,05/21/19 11:28,"803 Adams St, Dallas, TX 75001" +205539,AAA Batteries (4-pack),1,2.99,05/18/19 17:28,"527 Johnson St, Portland, OR 97035" +205540,Wired Headphones,1,11.99,05/22/19 14:36,"647 Elm St, Dallas, TX 75001" +205541,USB-C Charging Cable,1,11.95,05/02/19 12:37,"646 Spruce St, Los Angeles, CA 90001" +205542,27in 4K Gaming Monitor,1,389.99,05/16/19 10:24,"33 Center St, Los Angeles, CA 90001" +205543,AA Batteries (4-pack),1,3.84,05/20/19 20:44,"592 Adams St, Seattle, WA 98101" +205544,Apple Airpods Headphones,1,150,05/23/19 11:36,"394 Wilson St, Boston, MA 02215" +205545,Wired Headphones,1,11.99,05/28/19 22:53,"485 Meadow St, Atlanta, GA 30301" +205546,Lightning Charging Cable,1,14.95,05/23/19 09:41,"828 Madison St, Los Angeles, CA 90001" +205547,34in Ultrawide Monitor,1,379.99,05/31/19 11:23,"567 2nd St, Los Angeles, CA 90001" +205548,27in FHD Monitor,1,149.99,05/27/19 20:07,"510 Church St, San Francisco, CA 94016" +205549,Wired Headphones,1,11.99,05/22/19 10:48,"106 Jefferson St, Atlanta, GA 30301" +205550,AAA Batteries (4-pack),2,2.99,05/28/19 18:30,"480 Meadow St, Los Angeles, CA 90001" +205551,USB-C Charging Cable,1,11.95,05/11/19 15:07,"847 West St, Los Angeles, CA 90001" +205552,AAA Batteries (4-pack),2,2.99,05/02/19 14:05,"592 North St, Dallas, TX 75001" +205553,ThinkPad Laptop,1,999.99,05/26/19 18:36,"49 1st St, Los Angeles, CA 90001" +205554,34in Ultrawide Monitor,1,379.99,05/04/19 08:06,"409 8th St, Los Angeles, CA 90001" +205555,AA Batteries (4-pack),1,3.84,05/16/19 19:36,"726 Cedar St, Boston, MA 02215" +205556,34in Ultrawide Monitor,1,379.99,05/07/19 19:26,"481 10th St, Dallas, TX 75001" +205557,AAA Batteries (4-pack),1,2.99,05/14/19 13:07,"399 Sunset St, Dallas, TX 75001" +205557,AA Batteries (4-pack),1,3.84,05/14/19 13:07,"399 Sunset St, Dallas, TX 75001" +205558,Apple Airpods Headphones,1,150,05/26/19 07:58,"474 Jackson St, Dallas, TX 75001" +205559,Lightning Charging Cable,1,14.95,05/07/19 21:26,"772 Cedar St, Atlanta, GA 30301" +205560,Lightning Charging Cable,1,14.95,05/04/19 20:57,"385 2nd St, San Francisco, CA 94016" +205561,Lightning Charging Cable,1,14.95,05/06/19 23:04,"940 Wilson St, Los Angeles, CA 90001" +205562,Macbook Pro Laptop,1,1700,05/31/19 12:26,"681 Park St, New York City, NY 10001" +205563,Macbook Pro Laptop,1,1700,05/01/19 16:55,"490 Meadow St, New York City, NY 10001" +205564,AAA Batteries (4-pack),2,2.99,05/29/19 18:35,"948 Cherry St, Portland, OR 97035" +205565,34in Ultrawide Monitor,1,379.99,05/30/19 06:14,"6 Lake St, Boston, MA 02215" +205566,USB-C Charging Cable,1,11.95,05/03/19 11:06,"647 Dogwood St, Dallas, TX 75001" +205567,AA Batteries (4-pack),2,3.84,05/04/19 12:28,"3 4th St, New York City, NY 10001" +205568,Macbook Pro Laptop,1,1700,05/23/19 18:53,"487 Walnut St, Atlanta, GA 30301" +205569,USB-C Charging Cable,1,11.95,05/10/19 12:39,"345 Dogwood St, San Francisco, CA 94016" +205570,Bose SoundSport Headphones,1,99.99,05/05/19 23:47,"961 4th St, San Francisco, CA 94016" +205571,Apple Airpods Headphones,1,150,05/30/19 14:16,"614 5th St, Dallas, TX 75001" +205572,Wired Headphones,1,11.99,05/31/19 12:37,"585 Meadow St, New York City, NY 10001" +205573,Lightning Charging Cable,1,14.95,05/19/19 19:41,"552 5th St, Los Angeles, CA 90001" +205574,Google Phone,1,600,05/21/19 23:46,"119 Spruce St, Portland, OR 97035" +205574,USB-C Charging Cable,1,11.95,05/21/19 23:46,"119 Spruce St, Portland, OR 97035" +205574,USB-C Charging Cable,2,11.95,05/21/19 23:46,"119 Spruce St, Portland, OR 97035" +205575,Wired Headphones,1,11.99,05/03/19 19:33,"928 Jefferson St, San Francisco, CA 94016" +205576,20in Monitor,1,109.99,05/05/19 19:20,"926 14th St, San Francisco, CA 94016" +205577,Apple Airpods Headphones,1,150,05/31/19 22:53,"701 Center St, Portland, OR 97035" +205578,Apple Airpods Headphones,1,150,05/11/19 15:50,"559 Lake St, San Francisco, CA 94016" +205579,Lightning Charging Cable,1,14.95,05/14/19 21:51,"653 Jefferson St, Seattle, WA 98101" +205580,iPhone,1,700,05/02/19 21:16,"219 Walnut St, San Francisco, CA 94016" +205581,Google Phone,1,600,05/29/19 15:45,"519 2nd St, Dallas, TX 75001" +205582,USB-C Charging Cable,1,11.95,05/02/19 20:29,"741 Lincoln St, Los Angeles, CA 90001" +205583,iPhone,1,700,05/19/19 20:59,"670 Church St, Dallas, TX 75001" +205584,iPhone,1,700,05/28/19 13:32,"366 Johnson St, Atlanta, GA 30301" +205585,Bose SoundSport Headphones,1,99.99,05/13/19 10:19,"253 Church St, Seattle, WA 98101" +205586,AAA Batteries (4-pack),1,2.99,05/24/19 21:17,"486 Center St, Los Angeles, CA 90001" +205587,AA Batteries (4-pack),2,3.84,05/25/19 08:51,"871 Lake St, Seattle, WA 98101" +205588,USB-C Charging Cable,1,11.95,05/06/19 19:28,"505 Walnut St, San Francisco, CA 94016" +205589,AAA Batteries (4-pack),1,2.99,05/10/19 08:24,"847 Meadow St, New York City, NY 10001" +205590,Lightning Charging Cable,1,14.95,05/02/19 15:26,"463 Lake St, Atlanta, GA 30301" +205591,Lightning Charging Cable,1,14.95,05/14/19 18:25,"785 6th St, San Francisco, CA 94016" +205592,AAA Batteries (4-pack),1,2.99,05/15/19 20:39,"979 6th St, Atlanta, GA 30301" +205593,34in Ultrawide Monitor,1,379.99,05/18/19 08:43,"440 Main St, Seattle, WA 98101" +205594,Bose SoundSport Headphones,1,99.99,05/09/19 17:53,"319 Center St, San Francisco, CA 94016" +205595,iPhone,1,700,05/11/19 19:25,"998 12th St, Los Angeles, CA 90001" +205596,Apple Airpods Headphones,1,150,05/26/19 17:13,"818 8th St, Los Angeles, CA 90001" +205597,AA Batteries (4-pack),1,3.84,05/29/19 14:35,"708 Jefferson St, San Francisco, CA 94016" +205598,AAA Batteries (4-pack),1,2.99,05/12/19 15:43,"570 Washington St, San Francisco, CA 94016" +205599,Wired Headphones,1,11.99,05/27/19 16:33,"993 Washington St, Seattle, WA 98101" +205600,Apple Airpods Headphones,1,150,05/13/19 19:33,"66 Ridge St, San Francisco, CA 94016" +205601,AA Batteries (4-pack),1,3.84,05/01/19 22:37,"76 2nd St, New York City, NY 10001" +205602,LG Dryer,1,600.0,05/04/19 13:08,"435 Adams St, San Francisco, CA 94016" +205602,Apple Airpods Headphones,1,150,05/04/19 13:08,"435 Adams St, San Francisco, CA 94016" +205603,Lightning Charging Cable,1,14.95,05/11/19 11:15,"992 11th St, Seattle, WA 98101" +205604,ThinkPad Laptop,1,999.99,05/14/19 19:04,"447 Jackson St, Los Angeles, CA 90001" +205605,Bose SoundSport Headphones,1,99.99,05/13/19 15:57,"207 Cedar St, Los Angeles, CA 90001" +205606,AA Batteries (4-pack),1,3.84,05/29/19 19:05,"911 Elm St, Los Angeles, CA 90001" +205607,Macbook Pro Laptop,1,1700,05/20/19 20:17,"969 Pine St, Boston, MA 02215" +205608,Apple Airpods Headphones,1,150,05/31/19 11:57,"435 Jefferson St, San Francisco, CA 94016" +205609,AAA Batteries (4-pack),2,2.99,05/24/19 15:38,"163 Wilson St, Boston, MA 02215" +205610,Wired Headphones,1,11.99,05/15/19 19:17,"112 Lakeview St, New York City, NY 10001" +205611,AA Batteries (4-pack),2,3.84,05/03/19 12:36,"500 Cedar St, Seattle, WA 98101" +205612,Wired Headphones,1,11.99,05/02/19 12:29,"865 Dogwood St, New York City, NY 10001" +205613,34in Ultrawide Monitor,1,379.99,05/30/19 14:57,"642 1st St, Boston, MA 02215" +205614,AAA Batteries (4-pack),4,2.99,05/28/19 18:19,"376 Adams St, San Francisco, CA 94016" +205615,Flatscreen TV,1,300,05/29/19 13:58,"479 5th St, San Francisco, CA 94016" +205616,Wired Headphones,2,11.99,05/07/19 12:27,"739 11th St, Los Angeles, CA 90001" +205617,Wired Headphones,2,11.99,05/26/19 17:46,"838 Park St, San Francisco, CA 94016" +205618,Wired Headphones,1,11.99,05/18/19 21:36,"778 Hickory St, Portland, OR 97035" +205619,Bose SoundSport Headphones,1,99.99,05/15/19 21:39,"588 14th St, Los Angeles, CA 90001" +205620,LG Washing Machine,1,600.0,05/11/19 20:14,"3 South St, Boston, MA 02215" +205621,Wired Headphones,1,11.99,05/17/19 22:06,"940 Park St, Dallas, TX 75001" +205622,AA Batteries (4-pack),1,3.84,05/04/19 07:17,"791 6th St, Boston, MA 02215" +205623,Bose SoundSport Headphones,1,99.99,05/06/19 09:13,"661 River St, San Francisco, CA 94016" +205624,20in Monitor,1,109.99,05/02/19 10:50,"260 1st St, Seattle, WA 98101" +205625,iPhone,1,700,05/22/19 16:17,"756 Washington St, Boston, MA 02215" +205626,Bose SoundSport Headphones,1,99.99,05/22/19 11:36,"299 Dogwood St, Seattle, WA 98101" +205627,Apple Airpods Headphones,1,150,05/14/19 01:10,"612 10th St, Atlanta, GA 30301" +205628,Lightning Charging Cable,1,14.95,05/23/19 07:13,"554 4th St, San Francisco, CA 94016" +205629,Bose SoundSport Headphones,1,99.99,05/15/19 21:28,"526 Highland St, Austin, TX 73301" +205630,AA Batteries (4-pack),1,3.84,05/22/19 18:31,"581 Church St, Dallas, TX 75001" +205631,Wired Headphones,1,11.99,05/18/19 11:20,"828 2nd St, New York City, NY 10001" +205632,Lightning Charging Cable,1,14.95,05/08/19 20:48,"179 14th St, New York City, NY 10001" +205633,Wired Headphones,1,11.99,05/21/19 23:26,"15 Lakeview St, Los Angeles, CA 90001" +205634,Lightning Charging Cable,1,14.95,05/01/19 08:52,"708 Dogwood St, San Francisco, CA 94016" +205635,AAA Batteries (4-pack),1,2.99,05/30/19 21:28,"954 Pine St, Portland, OR 97035" +205636,Wired Headphones,1,11.99,05/07/19 13:05,"266 Center St, San Francisco, CA 94016" +205637,27in 4K Gaming Monitor,1,389.99,05/19/19 16:49,"941 Lincoln St, San Francisco, CA 94016" +205638,iPhone,1,700,05/04/19 19:50,"122 13th St, San Francisco, CA 94016" +205639,AA Batteries (4-pack),1,3.84,05/06/19 23:21,"559 Forest St, San Francisco, CA 94016" +205640,USB-C Charging Cable,1,11.95,05/09/19 11:37,"454 13th St, New York City, NY 10001" +205641,Lightning Charging Cable,1,14.95,05/02/19 23:22,"200 9th St, Los Angeles, CA 90001" +205642,Wired Headphones,1,11.99,05/13/19 10:33,"299 Church St, Atlanta, GA 30301" +205643,Lightning Charging Cable,1,14.95,05/07/19 18:53,"678 Jefferson St, San Francisco, CA 94016" +205644,Wired Headphones,1,11.99,05/04/19 12:08,"690 Elm St, Los Angeles, CA 90001" +205645,AA Batteries (4-pack),1,3.84,05/14/19 14:10,"175 Spruce St, Boston, MA 02215" +205646,AA Batteries (4-pack),1,3.84,05/06/19 19:52,"491 4th St, Portland, ME 04101" +205647,USB-C Charging Cable,1,11.95,05/16/19 01:40,"209 1st St, San Francisco, CA 94016" +205648,iPhone,1,700,05/09/19 19:47,"459 Jackson St, New York City, NY 10001" +205648,Apple Airpods Headphones,1,150,05/09/19 19:47,"459 Jackson St, New York City, NY 10001" +205649,27in FHD Monitor,1,149.99,05/25/19 20:50,"931 Maple St, Seattle, WA 98101" +205650,Wired Headphones,1,11.99,05/01/19 18:53,"363 Lake St, Portland, ME 04101" +205651,AAA Batteries (4-pack),1,2.99,05/02/19 14:49,"386 Johnson St, Seattle, WA 98101" +205652,Wired Headphones,1,11.99,05/08/19 22:17,"351 Walnut St, Los Angeles, CA 90001" +205653,USB-C Charging Cable,1,11.95,05/29/19 23:31,"975 Sunset St, Atlanta, GA 30301" +205654,USB-C Charging Cable,1,11.95,05/18/19 20:43,"875 Cedar St, Dallas, TX 75001" +205655,34in Ultrawide Monitor,1,379.99,05/11/19 11:49,"695 10th St, Portland, OR 97035" +205656,ThinkPad Laptop,1,999.99,05/14/19 14:54,"133 Forest St, Portland, ME 04101" +205657,Apple Airpods Headphones,1,150,05/02/19 18:47,"617 6th St, Boston, MA 02215" +205658,Wired Headphones,1,11.99,05/28/19 20:21,"619 West St, San Francisco, CA 94016" +205659,34in Ultrawide Monitor,1,379.99,05/31/19 19:52,"500 Spruce St, Los Angeles, CA 90001" +205660,Lightning Charging Cable,1,14.95,05/09/19 20:37,"380 Hill St, Seattle, WA 98101" +205660,USB-C Charging Cable,1,11.95,05/09/19 20:37,"380 Hill St, Seattle, WA 98101" +205661,Lightning Charging Cable,1,14.95,05/30/19 10:41,"518 14th St, Los Angeles, CA 90001" +205662,20in Monitor,1,109.99,05/06/19 20:04,"48 7th St, New York City, NY 10001" +205663,AA Batteries (4-pack),1,3.84,05/23/19 13:15,"24 10th St, Seattle, WA 98101" +205664,USB-C Charging Cable,1,11.95,05/27/19 09:35,"488 River St, Austin, TX 73301" +205665,AAA Batteries (4-pack),1,2.99,05/22/19 20:13,"546 5th St, Dallas, TX 75001" +205666,34in Ultrawide Monitor,1,379.99,05/13/19 16:31,"719 Elm St, San Francisco, CA 94016" +205667,Lightning Charging Cable,1,14.95,05/12/19 20:41,"152 Spruce St, San Francisco, CA 94016" +205668,Bose SoundSport Headphones,1,99.99,05/07/19 17:52,"990 5th St, San Francisco, CA 94016" +205669,AA Batteries (4-pack),1,3.84,05/02/19 20:52,"785 West St, Seattle, WA 98101" +205670,34in Ultrawide Monitor,1,379.99,05/28/19 09:28,"659 Main St, San Francisco, CA 94016" +205671,Wired Headphones,1,11.99,05/28/19 13:50,"364 Main St, San Francisco, CA 94016" +205672,Lightning Charging Cable,1,14.95,05/23/19 09:20,"477 Washington St, Boston, MA 02215" +205673,Lightning Charging Cable,1,14.95,05/28/19 15:19,"999 Sunset St, San Francisco, CA 94016" +205674,Bose SoundSport Headphones,1,99.99,05/31/19 17:17,"761 Sunset St, San Francisco, CA 94016" +205675,Bose SoundSport Headphones,1,99.99,05/07/19 07:47,"838 Spruce St, San Francisco, CA 94016" +205676,Lightning Charging Cable,1,14.95,05/22/19 20:58,"509 Adams St, Portland, OR 97035" +205677,Wired Headphones,1,11.99,05/31/19 17:48,"765 Madison St, San Francisco, CA 94016" +205678,USB-C Charging Cable,1,11.95,05/16/19 20:31,"344 Spruce St, Los Angeles, CA 90001" +205679,27in FHD Monitor,1,149.99,05/21/19 13:29,"897 Walnut St, Portland, OR 97035" +205680,Lightning Charging Cable,1,14.95,05/01/19 20:18,"125 2nd St, Los Angeles, CA 90001" +205681,iPhone,1,700,05/15/19 08:54,"119 Chestnut St, New York City, NY 10001" +205681,Wired Headphones,1,11.99,05/15/19 08:54,"119 Chestnut St, New York City, NY 10001" +205682,Apple Airpods Headphones,1,150,05/06/19 21:33,"527 Adams St, San Francisco, CA 94016" +205683,Bose SoundSport Headphones,1,99.99,05/07/19 23:24,"729 Highland St, San Francisco, CA 94016" +205684,AAA Batteries (4-pack),7,2.99,05/17/19 13:51,"282 Forest St, San Francisco, CA 94016" +205685,AAA Batteries (4-pack),1,2.99,05/17/19 12:03,"615 Lincoln St, Portland, OR 97035" +205686,AA Batteries (4-pack),2,3.84,05/29/19 21:14,"628 14th St, Seattle, WA 98101" +205687,Apple Airpods Headphones,1,150,05/19/19 23:12,"663 2nd St, New York City, NY 10001" +205688,Lightning Charging Cable,1,14.95,05/23/19 20:59,"447 Center St, Los Angeles, CA 90001" +205689,AAA Batteries (4-pack),1,2.99,05/14/19 11:54,"84 Elm St, San Francisco, CA 94016" +205690,AAA Batteries (4-pack),1,2.99,05/31/19 10:46,"407 North St, Portland, OR 97035" +205691,Apple Airpods Headphones,1,150,05/12/19 17:57,"184 South St, New York City, NY 10001" +205692,Apple Airpods Headphones,1,150,05/16/19 18:34,"880 7th St, San Francisco, CA 94016" +205693,Vareebadd Phone,1,400,05/04/19 11:54,"856 Adams St, New York City, NY 10001" +205694,27in FHD Monitor,1,149.99,05/15/19 19:42,"843 Adams St, Atlanta, GA 30301" +205695,Apple Airpods Headphones,1,150,05/24/19 17:21,"995 Pine St, Los Angeles, CA 90001" +205696,AA Batteries (4-pack),1,3.84,05/05/19 19:11,"985 Dogwood St, Boston, MA 02215" +205697,34in Ultrawide Monitor,1,379.99,05/28/19 16:43,"135 Johnson St, Los Angeles, CA 90001" +205698,Apple Airpods Headphones,1,150,05/19/19 16:26,"39 Willow St, San Francisco, CA 94016" +205699,Bose SoundSport Headphones,1,99.99,05/29/19 07:17,"459 Maple St, Los Angeles, CA 90001" +205700,Wired Headphones,1,11.99,05/13/19 20:30,"770 4th St, San Francisco, CA 94016" +205701,Apple Airpods Headphones,1,150,05/22/19 19:06,"419 River St, Boston, MA 02215" +205702,Vareebadd Phone,1,400,05/03/19 14:44,"749 Ridge St, Boston, MA 02215" +205703,20in Monitor,1,109.99,05/21/19 05:53,"935 North St, New York City, NY 10001" +205704,USB-C Charging Cable,1,11.95,05/18/19 19:09,"264 13th St, New York City, NY 10001" +205705,AAA Batteries (4-pack),1,2.99,05/27/19 10:47,"561 Meadow St, Portland, OR 97035" +205706,Wired Headphones,1,11.99,05/02/19 15:34,"287 Cherry St, San Francisco, CA 94016" +205707,AA Batteries (4-pack),2,3.84,05/18/19 18:22,"548 Highland St, New York City, NY 10001" +205708,iPhone,1,700,05/15/19 16:35,"222 Willow St, Los Angeles, CA 90001" +205709,AAA Batteries (4-pack),4,2.99,05/04/19 13:46,"576 Hickory St, Seattle, WA 98101" +205710,Bose SoundSport Headphones,1,99.99,05/15/19 19:30,"947 Johnson St, Portland, OR 97035" +205711,Flatscreen TV,1,300,05/22/19 20:18,"315 Johnson St, San Francisco, CA 94016" +205712,Macbook Pro Laptop,1,1700,05/22/19 23:14,"924 9th St, New York City, NY 10001" +205713,AA Batteries (4-pack),1,3.84,05/31/19 16:49,"746 Sunset St, San Francisco, CA 94016" +,,,,, +205714,Apple Airpods Headphones,1,150,05/13/19 16:04,"468 13th St, Atlanta, GA 30301" +205715,USB-C Charging Cable,1,11.95,05/10/19 20:16,"741 14th St, New York City, NY 10001" +205716,Flatscreen TV,1,300,05/12/19 09:44,"165 Hill St, Portland, OR 97035" +205717,27in FHD Monitor,1,149.99,05/01/19 18:42,"592 Chestnut St, San Francisco, CA 94016" +205718,iPhone,1,700,05/08/19 08:29,"646 1st St, New York City, NY 10001" +205719,27in FHD Monitor,1,149.99,05/20/19 16:27,"265 Hill St, New York City, NY 10001" +205720,20in Monitor,1,109.99,05/21/19 18:42,"713 Willow St, San Francisco, CA 94016" +205720,AAA Batteries (4-pack),2,2.99,05/21/19 18:42,"713 Willow St, San Francisco, CA 94016" +205721,Apple Airpods Headphones,1,150,05/08/19 14:48,"117 11th St, New York City, NY 10001" +205722,AAA Batteries (4-pack),1,2.99,05/28/19 11:07,"56 Lincoln St, Dallas, TX 75001" +205723,AA Batteries (4-pack),1,3.84,05/16/19 16:35,"730 Johnson St, Boston, MA 02215" +205724,USB-C Charging Cable,1,11.95,05/28/19 09:12,"155 5th St, San Francisco, CA 94016" +205725,Lightning Charging Cable,1,14.95,05/12/19 11:47,"302 13th St, Atlanta, GA 30301" +205726,AAA Batteries (4-pack),1,2.99,05/04/19 14:44,"908 Park St, San Francisco, CA 94016" +205727,27in 4K Gaming Monitor,1,389.99,05/20/19 15:34,"234 14th St, New York City, NY 10001" +205728,Wired Headphones,1,11.99,05/29/19 19:49,"45 Lincoln St, Boston, MA 02215" +205729,Lightning Charging Cable,2,14.95,05/11/19 20:23,"210 Spruce St, Boston, MA 02215" +205730,USB-C Charging Cable,1,11.95,05/11/19 12:31,"397 Cherry St, Los Angeles, CA 90001" +205731,Apple Airpods Headphones,1,150,05/20/19 22:21,"783 Washington St, Dallas, TX 75001" +205732,USB-C Charging Cable,2,11.95,05/13/19 20:00,"679 Dogwood St, San Francisco, CA 94016" +205733,AA Batteries (4-pack),2,3.84,05/02/19 02:15,"844 Cherry St, Atlanta, GA 30301" +205734,34in Ultrawide Monitor,1,379.99,05/14/19 20:40,"559 Hickory St, Dallas, TX 75001" +205735,Wired Headphones,1,11.99,05/11/19 13:42,"19 Lincoln St, New York City, NY 10001" +205736,20in Monitor,1,109.99,05/28/19 08:01,"466 Hill St, New York City, NY 10001" +205737,Wired Headphones,1,11.99,05/02/19 21:54,"405 Walnut St, San Francisco, CA 94016" +205738,USB-C Charging Cable,1,11.95,05/27/19 13:22,"774 Lakeview St, San Francisco, CA 94016" +205739,Lightning Charging Cable,1,14.95,05/13/19 23:25,"666 Lake St, Portland, OR 97035" +205739,AA Batteries (4-pack),5,3.84,05/13/19 23:25,"666 Lake St, Portland, OR 97035" +205740,Wired Headphones,1,11.99,05/30/19 13:55,"549 11th St, New York City, NY 10001" +205741,AAA Batteries (4-pack),3,2.99,05/28/19 09:42,"594 Jackson St, San Francisco, CA 94016" +205742,34in Ultrawide Monitor,1,379.99,05/01/19 10:04,"49 River St, Los Angeles, CA 90001" +205742,USB-C Charging Cable,1,11.95,05/01/19 10:04,"49 River St, Los Angeles, CA 90001" +205743,iPhone,1,700,05/07/19 19:35,"739 11th St, Boston, MA 02215" +205744,Lightning Charging Cable,1,14.95,05/22/19 20:29,"545 Washington St, Los Angeles, CA 90001" +205745,USB-C Charging Cable,1,11.95,05/20/19 22:19,"533 1st St, Los Angeles, CA 90001" +205746,Flatscreen TV,1,300,05/23/19 08:16,"445 Dogwood St, Atlanta, GA 30301" +205747,Lightning Charging Cable,1,14.95,05/21/19 13:44,"989 6th St, San Francisco, CA 94016" +205748,27in FHD Monitor,1,149.99,05/10/19 20:08,"155 Dogwood St, Boston, MA 02215" +205749,USB-C Charging Cable,1,11.95,05/15/19 17:19,"293 Meadow St, Los Angeles, CA 90001" +205750,20in Monitor,1,109.99,05/21/19 22:03,"676 Lincoln St, New York City, NY 10001" +205751,Vareebadd Phone,1,400,05/28/19 23:55,"435 Park St, Los Angeles, CA 90001" +205752,AAA Batteries (4-pack),2,2.99,05/07/19 10:55,"851 12th St, New York City, NY 10001" +205753,AA Batteries (4-pack),1,3.84,05/18/19 08:28,"227 Park St, Los Angeles, CA 90001" +205754,Flatscreen TV,1,300,05/18/19 00:07,"308 Maple St, Boston, MA 02215" +205755,Bose SoundSport Headphones,1,99.99,05/27/19 16:25,"727 Ridge St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +205756,Bose SoundSport Headphones,1,99.99,05/25/19 20:05,"299 5th St, Dallas, TX 75001" +205757,AA Batteries (4-pack),2,3.84,05/25/19 19:52,"693 Maple St, Atlanta, GA 30301" +205758,Bose SoundSport Headphones,1,99.99,05/10/19 17:46,"521 Jackson St, Portland, OR 97035" +205759,34in Ultrawide Monitor,1,379.99,05/10/19 11:57,"908 Center St, Atlanta, GA 30301" +205760,Apple Airpods Headphones,1,150,05/28/19 10:06,"120 Jefferson St, New York City, NY 10001" +205761,Google Phone,1,600,05/03/19 09:16,"86 Lincoln St, New York City, NY 10001" +205762,AAA Batteries (4-pack),1,2.99,05/28/19 09:17,"3 10th St, San Francisco, CA 94016" +205763,AA Batteries (4-pack),2,3.84,05/25/19 14:25,"764 7th St, San Francisco, CA 94016" +205764,USB-C Charging Cable,1,11.95,05/09/19 13:02,"98 Adams St, San Francisco, CA 94016" +205765,AAA Batteries (4-pack),1,2.99,05/30/19 13:39,"182 Lake St, Austin, TX 73301" +205766,iPhone,1,700,05/20/19 14:27,"634 8th St, New York City, NY 10001" +205766,Lightning Charging Cable,1,14.95,05/20/19 14:27,"634 8th St, New York City, NY 10001" +205767,iPhone,1,700,05/01/19 15:17,"607 Cedar St, San Francisco, CA 94016" +205768,Google Phone,1,600,05/26/19 13:24,"281 Washington St, Portland, OR 97035" +205768,USB-C Charging Cable,1,11.95,05/26/19 13:24,"281 Washington St, Portland, OR 97035" +205768,Bose SoundSport Headphones,1,99.99,05/26/19 13:24,"281 Washington St, Portland, OR 97035" +205769,34in Ultrawide Monitor,1,379.99,05/06/19 14:50,"528 4th St, San Francisco, CA 94016" +205770,AA Batteries (4-pack),1,3.84,05/02/19 14:48,"872 Willow St, Los Angeles, CA 90001" +205771,AA Batteries (4-pack),1,3.84,05/08/19 11:51,"32 Park St, Boston, MA 02215" +205772,27in 4K Gaming Monitor,1,389.99,05/22/19 12:04,"190 Meadow St, Dallas, TX 75001" +205773,20in Monitor,1,109.99,05/06/19 21:19,"499 Madison St, New York City, NY 10001" +205774,AAA Batteries (4-pack),3,2.99,05/07/19 17:46,"993 13th St, San Francisco, CA 94016" +205775,27in 4K Gaming Monitor,1,389.99,05/19/19 15:54,"799 12th St, San Francisco, CA 94016" +205776,AAA Batteries (4-pack),1,2.99,05/19/19 19:41,"598 7th St, Dallas, TX 75001" +205777,USB-C Charging Cable,2,11.95,05/27/19 15:50,"418 12th St, New York City, NY 10001" +205778,Lightning Charging Cable,1,14.95,05/14/19 07:36,"760 Jackson St, Los Angeles, CA 90001" +205779,iPhone,1,700,05/21/19 15:30,"966 Ridge St, Dallas, TX 75001" +205780,AAA Batteries (4-pack),1,2.99,05/13/19 09:23,"979 Cedar St, New York City, NY 10001" +205781,USB-C Charging Cable,1,11.95,05/16/19 08:51,"707 6th St, Atlanta, GA 30301" +205781,34in Ultrawide Monitor,1,379.99,05/16/19 08:51,"707 6th St, Atlanta, GA 30301" +205782,USB-C Charging Cable,1,11.95,05/18/19 14:37,"126 River St, Los Angeles, CA 90001" +205783,Google Phone,1,600,05/04/19 17:58,"893 Lakeview St, Los Angeles, CA 90001" +205784,Macbook Pro Laptop,1,1700,05/30/19 05:40,"98 Center St, San Francisco, CA 94016" +205785,Lightning Charging Cable,1,14.95,05/03/19 19:17,"747 Highland St, New York City, NY 10001" +205786,USB-C Charging Cable,1,11.95,05/22/19 21:53,"963 Lincoln St, New York City, NY 10001" +205787,Lightning Charging Cable,1,14.95,05/09/19 09:11,"5 Elm St, New York City, NY 10001" +205788,Wired Headphones,1,11.99,05/20/19 16:00,"233 10th St, Los Angeles, CA 90001" +205789,Wired Headphones,1,11.99,05/22/19 18:18,"548 Walnut St, San Francisco, CA 94016" +205790,Apple Airpods Headphones,1,150,05/18/19 23:54,"247 Madison St, Los Angeles, CA 90001" +205791,USB-C Charging Cable,1,11.95,05/04/19 18:40,"436 Main St, Dallas, TX 75001" +205792,Apple Airpods Headphones,1,150,05/11/19 15:06,"904 Meadow St, San Francisco, CA 94016" +205793,Wired Headphones,1,11.99,05/26/19 02:55,"981 8th St, Portland, ME 04101" +205794,Flatscreen TV,1,300,05/24/19 20:49,"494 West St, Los Angeles, CA 90001" +205795,USB-C Charging Cable,1,11.95,05/10/19 19:28,"68 13th St, Los Angeles, CA 90001" +205796,Lightning Charging Cable,2,14.95,05/13/19 10:00,"692 Sunset St, Los Angeles, CA 90001" +205797,Wired Headphones,1,11.99,05/16/19 16:21,"586 Park St, San Francisco, CA 94016" +205798,AA Batteries (4-pack),1,3.84,05/12/19 10:01,"115 6th St, Dallas, TX 75001" +205799,AAA Batteries (4-pack),2,2.99,05/10/19 21:48,"591 Lincoln St, Los Angeles, CA 90001" +205800,Lightning Charging Cable,1,14.95,05/06/19 14:52,"532 Jackson St, Seattle, WA 98101" +205801,20in Monitor,1,109.99,05/12/19 21:04,"458 North St, San Francisco, CA 94016" +205802,34in Ultrawide Monitor,1,379.99,05/12/19 07:53,"164 Hickory St, Dallas, TX 75001" +205803,AA Batteries (4-pack),3,3.84,05/06/19 12:18,"458 Meadow St, Seattle, WA 98101" +205804,Bose SoundSport Headphones,1,99.99,05/25/19 17:32,"159 Hill St, San Francisco, CA 94016" +205805,USB-C Charging Cable,1,11.95,05/24/19 21:06,"381 Church St, Boston, MA 02215" +205806,Flatscreen TV,1,300,05/14/19 11:37,"520 Jefferson St, Seattle, WA 98101" +205807,AA Batteries (4-pack),1,3.84,05/09/19 22:23,"729 Spruce St, New York City, NY 10001" +205808,Apple Airpods Headphones,1,150,05/15/19 17:06,"828 Lake St, Atlanta, GA 30301" +205809,Bose SoundSport Headphones,1,99.99,05/21/19 20:22,"683 Jackson St, San Francisco, CA 94016" +205810,Flatscreen TV,1,300,05/28/19 12:01,"776 Washington St, San Francisco, CA 94016" +205811,27in FHD Monitor,1,149.99,05/11/19 13:22,"374 10th St, San Francisco, CA 94016" +205811,USB-C Charging Cable,1,11.95,05/11/19 13:22,"374 10th St, San Francisco, CA 94016" +205812,34in Ultrawide Monitor,1,379.99,05/30/19 07:46,"752 Spruce St, Austin, TX 73301" +205813,AA Batteries (4-pack),2,3.84,05/16/19 11:21,"444 Walnut St, Seattle, WA 98101" +205814,Apple Airpods Headphones,1,150,05/06/19 17:10,"889 7th St, New York City, NY 10001" +205815,Lightning Charging Cable,1,14.95,05/09/19 18:56,"613 Hickory St, Dallas, TX 75001" +205816,USB-C Charging Cable,1,11.95,05/24/19 17:45,"405 Jackson St, Atlanta, GA 30301" +205817,AA Batteries (4-pack),1,3.84,05/11/19 01:39,"503 Adams St, Boston, MA 02215" +205818,Macbook Pro Laptop,1,1700,05/23/19 09:41,"815 Lakeview St, Atlanta, GA 30301" +205819,27in FHD Monitor,1,149.99,05/08/19 11:29,"947 Chestnut St, Dallas, TX 75001" +205820,34in Ultrawide Monitor,1,379.99,05/08/19 20:38,"978 Elm St, New York City, NY 10001" +205821,Apple Airpods Headphones,1,150,05/21/19 00:50,"646 1st St, Boston, MA 02215" +205822,Google Phone,1,600,05/28/19 12:25,"163 Maple St, San Francisco, CA 94016" +205823,iPhone,1,700,05/18/19 17:33,"615 Main St, San Francisco, CA 94016" +205824,Bose SoundSport Headphones,1,99.99,05/27/19 03:28,"579 Highland St, New York City, NY 10001" +205825,USB-C Charging Cable,1,11.95,05/29/19 20:38,"62 14th St, New York City, NY 10001" +205826,USB-C Charging Cable,1,11.95,05/21/19 07:36,"109 Willow St, Los Angeles, CA 90001" +205827,iPhone,1,700,05/21/19 19:41,"335 12th St, Los Angeles, CA 90001" +205828,ThinkPad Laptop,1,999.99,05/22/19 16:10,"989 14th St, New York City, NY 10001" +205829,27in 4K Gaming Monitor,1,389.99,05/22/19 18:05,"425 Chestnut St, New York City, NY 10001" +205830,AAA Batteries (4-pack),1,2.99,05/23/19 16:04,"746 Walnut St, Seattle, WA 98101" +205830,Flatscreen TV,1,300,05/23/19 16:04,"746 Walnut St, Seattle, WA 98101" +205831,AAA Batteries (4-pack),3,2.99,05/28/19 18:20,"717 Meadow St, Dallas, TX 75001" +205832,AAA Batteries (4-pack),1,2.99,05/23/19 13:12,"450 Washington St, Los Angeles, CA 90001" +205833,Wired Headphones,1,11.99,05/26/19 23:52,"487 14th St, New York City, NY 10001" +205834,Flatscreen TV,1,300,05/28/19 07:00,"98 Lakeview St, Los Angeles, CA 90001" +205835,27in FHD Monitor,1,149.99,05/26/19 14:23,"582 Lake St, Seattle, WA 98101" +205836,Bose SoundSport Headphones,1,99.99,05/07/19 19:04,"417 Lake St, New York City, NY 10001" +205837,Wired Headphones,1,11.99,05/19/19 06:17,"360 Wilson St, New York City, NY 10001" +205838,USB-C Charging Cable,1,11.95,05/01/19 22:46,"297 Adams St, Boston, MA 02215" +205839,AA Batteries (4-pack),1,3.84,05/24/19 19:57,"998 Jefferson St, Los Angeles, CA 90001" +205840,USB-C Charging Cable,1,11.95,05/04/19 13:33,"326 1st St, San Francisco, CA 94016" +205841,Wired Headphones,1,11.99,05/01/19 18:11,"716 10th St, New York City, NY 10001" +205842,USB-C Charging Cable,1,11.95,05/23/19 21:17,"801 Willow St, Los Angeles, CA 90001" +205843,AA Batteries (4-pack),1,3.84,05/15/19 01:05,"71 Lakeview St, Austin, TX 73301" +205844,Bose SoundSport Headphones,1,99.99,05/10/19 23:52,"112 Chestnut St, San Francisco, CA 94016" +205845,AAA Batteries (4-pack),3,2.99,05/29/19 16:18,"988 Park St, San Francisco, CA 94016" +205846,iPhone,1,700,05/18/19 12:32,"7 1st St, Los Angeles, CA 90001" +205847,AA Batteries (4-pack),1,3.84,05/06/19 13:16,"16 Sunset St, Boston, MA 02215" +205848,34in Ultrawide Monitor,1,379.99,05/06/19 01:23,"345 Jackson St, New York City, NY 10001" +205849,34in Ultrawide Monitor,1,379.99,05/16/19 22:29,"336 Madison St, Seattle, WA 98101" +205850,USB-C Charging Cable,1,11.95,05/25/19 21:12,"254 Adams St, Los Angeles, CA 90001" +205851,AAA Batteries (4-pack),2,2.99,05/17/19 11:37,"524 Dogwood St, Dallas, TX 75001" +205852,Wired Headphones,1,11.99,05/11/19 13:22,"318 Park St, San Francisco, CA 94016" +205853,USB-C Charging Cable,2,11.95,05/23/19 17:27,"726 Highland St, San Francisco, CA 94016" +205854,Lightning Charging Cable,1,14.95,05/28/19 21:29,"138 Hill St, Atlanta, GA 30301" +205855,27in FHD Monitor,1,149.99,05/11/19 20:32,"468 Forest St, Atlanta, GA 30301" +205856,34in Ultrawide Monitor,1,379.99,05/29/19 10:31,"290 Lakeview St, San Francisco, CA 94016" +205857,Apple Airpods Headphones,1,150,05/05/19 16:18,"673 Willow St, New York City, NY 10001" +205858,Lightning Charging Cable,1,14.95,05/23/19 20:52,"942 Jefferson St, San Francisco, CA 94016" +205859,AA Batteries (4-pack),1,3.84,05/16/19 19:43,"493 Lakeview St, New York City, NY 10001" +205860,Google Phone,1,600,05/25/19 18:43,"77 Jefferson St, Los Angeles, CA 90001" +205860,USB-C Charging Cable,1,11.95,05/25/19 18:43,"77 Jefferson St, Los Angeles, CA 90001" +205861,iPhone,1,700,05/10/19 12:10,"157 Church St, San Francisco, CA 94016" +205862,Macbook Pro Laptop,1,1700,05/03/19 17:07,"844 5th St, Austin, TX 73301" +205863,iPhone,1,700,05/11/19 15:42,"752 2nd St, Seattle, WA 98101" +205864,Lightning Charging Cable,2,14.95,05/11/19 04:20,"857 5th St, San Francisco, CA 94016" +205864,USB-C Charging Cable,1,11.95,05/11/19 04:20,"857 5th St, San Francisco, CA 94016" +205865,20in Monitor,1,109.99,05/21/19 11:00,"478 Adams St, Atlanta, GA 30301" +205866,27in 4K Gaming Monitor,1,389.99,05/06/19 10:24,"466 13th St, New York City, NY 10001" +205867,AAA Batteries (4-pack),2,2.99,05/11/19 09:29,"5 9th St, New York City, NY 10001" +205868,Bose SoundSport Headphones,1,99.99,05/30/19 16:43,"421 1st St, Boston, MA 02215" +205869,Lightning Charging Cable,2,14.95,05/21/19 07:32,"950 West St, Portland, OR 97035" +205870,Wired Headphones,1,11.99,05/11/19 14:26,"35 Dogwood St, Los Angeles, CA 90001" +205871,AAA Batteries (4-pack),1,2.99,05/31/19 11:32,"715 5th St, Portland, OR 97035" +205872,Wired Headphones,1,11.99,05/10/19 19:50,"147 Ridge St, New York City, NY 10001" +205872,Lightning Charging Cable,1,14.95,05/10/19 19:50,"147 Ridge St, New York City, NY 10001" +205873,Wired Headphones,1,11.99,05/03/19 17:26,"560 Elm St, New York City, NY 10001" +205874,AAA Batteries (4-pack),2,2.99,05/16/19 09:31,"4 Spruce St, San Francisco, CA 94016" +205875,AA Batteries (4-pack),1,3.84,05/30/19 00:50,"685 Forest St, Austin, TX 73301" +205876,34in Ultrawide Monitor,1,379.99,05/01/19 10:58,"519 Main St, Portland, OR 97035" +205877,Wired Headphones,1,11.99,05/27/19 18:52,"920 Adams St, Los Angeles, CA 90001" +205878,Bose SoundSport Headphones,1,99.99,05/12/19 12:41,"406 Walnut St, Seattle, WA 98101" +205879,27in 4K Gaming Monitor,1,389.99,05/14/19 15:34,"488 Adams St, Boston, MA 02215" +205880,Wired Headphones,1,11.99,05/07/19 10:23,"339 Pine St, Atlanta, GA 30301" +205881,27in FHD Monitor,1,149.99,05/17/19 17:03,"324 Sunset St, Portland, OR 97035" +205882,USB-C Charging Cable,1,11.95,05/09/19 13:05,"726 North St, Atlanta, GA 30301" +205883,27in 4K Gaming Monitor,1,389.99,05/22/19 14:00,"744 Lakeview St, Dallas, TX 75001" +205884,USB-C Charging Cable,2,11.95,05/28/19 15:56,"212 Dogwood St, Los Angeles, CA 90001" +205885,27in 4K Gaming Monitor,1,389.99,05/01/19 20:01,"703 Madison St, New York City, NY 10001" +205886,27in FHD Monitor,1,149.99,05/29/19 09:25,"522 12th St, New York City, NY 10001" +205887,Bose SoundSport Headphones,1,99.99,05/09/19 16:23,"803 11th St, Seattle, WA 98101" +205888,Wired Headphones,1,11.99,05/30/19 11:23,"757 North St, San Francisco, CA 94016" +205889,AA Batteries (4-pack),1,3.84,05/16/19 22:35,"174 12th St, Seattle, WA 98101" +205890,Apple Airpods Headphones,1,150,05/28/19 20:30,"237 Pine St, Los Angeles, CA 90001" +205891,iPhone,1,700,05/25/19 17:47,"19 11th St, Dallas, TX 75001" +205892,AA Batteries (4-pack),2,3.84,05/31/19 20:26,"756 2nd St, San Francisco, CA 94016" +205893,27in FHD Monitor,1,149.99,05/16/19 09:58,"503 Maple St, Seattle, WA 98101" +205894,Macbook Pro Laptop,1,1700,05/09/19 21:48,"661 7th St, Boston, MA 02215" +205895,AAA Batteries (4-pack),1,2.99,05/06/19 18:39,"486 Lakeview St, New York City, NY 10001" +205896,Wired Headphones,1,11.99,05/14/19 12:36,"77 Jefferson St, Dallas, TX 75001" +205897,Lightning Charging Cable,1,14.95,05/08/19 15:12,"30 Johnson St, New York City, NY 10001" +205898,Bose SoundSport Headphones,1,99.99,05/12/19 14:32,"49 Meadow St, Los Angeles, CA 90001" +205899,27in FHD Monitor,1,149.99,05/25/19 10:12,"830 Spruce St, Austin, TX 73301" +205900,Bose SoundSport Headphones,1,99.99,05/30/19 18:43,"200 Elm St, Austin, TX 73301" +205901,Bose SoundSport Headphones,1,99.99,05/05/19 11:45,"61 Cherry St, Austin, TX 73301" +205902,AAA Batteries (4-pack),1,2.99,05/16/19 12:32,"45 Jefferson St, Los Angeles, CA 90001" +205903,Google Phone,1,600,05/02/19 11:33,"650 12th St, San Francisco, CA 94016" +205904,AA Batteries (4-pack),3,3.84,05/07/19 19:06,"97 Lakeview St, Dallas, TX 75001" +205905,Lightning Charging Cable,1,14.95,05/19/19 16:54,"766 Chestnut St, Atlanta, GA 30301" +205906,34in Ultrawide Monitor,1,379.99,05/18/19 12:57,"420 Hill St, San Francisco, CA 94016" +205907,AA Batteries (4-pack),1,3.84,05/01/19 14:32,"992 Sunset St, San Francisco, CA 94016" +205908,iPhone,1,700,05/29/19 18:02,"290 4th St, Boston, MA 02215" +205909,Bose SoundSport Headphones,1,99.99,05/27/19 21:15,"526 13th St, New York City, NY 10001" +205910,Lightning Charging Cable,1,14.95,05/13/19 20:50,"408 Dogwood St, San Francisco, CA 94016" +205911,Wired Headphones,1,11.99,05/08/19 18:30,"419 Adams St, Seattle, WA 98101" +205912,Bose SoundSport Headphones,1,99.99,05/25/19 14:12,"13 Hickory St, San Francisco, CA 94016" +205912,34in Ultrawide Monitor,1,379.99,05/25/19 14:12,"13 Hickory St, San Francisco, CA 94016" +205913,Bose SoundSport Headphones,1,99.99,05/01/19 17:04,"169 Highland St, Los Angeles, CA 90001" +205914,AA Batteries (4-pack),1,3.84,05/27/19 11:03,"988 Forest St, Dallas, TX 75001" +205915,USB-C Charging Cable,1,11.95,05/13/19 20:06,"938 Walnut St, San Francisco, CA 94016" +205916,27in 4K Gaming Monitor,1,389.99,05/20/19 00:42,"402 6th St, San Francisco, CA 94016" +205917,AA Batteries (4-pack),2,3.84,05/14/19 16:43,"146 11th St, New York City, NY 10001" +205918,ThinkPad Laptop,1,999.99,05/12/19 15:10,"680 Lake St, Los Angeles, CA 90001" +205919,27in FHD Monitor,1,149.99,05/06/19 14:55,"541 11th St, Portland, OR 97035" +205920,34in Ultrawide Monitor,1,379.99,05/19/19 17:17,"63 Walnut St, Dallas, TX 75001" +205921,27in 4K Gaming Monitor,1,389.99,05/22/19 14:19,"282 4th St, New York City, NY 10001" +205922,27in 4K Gaming Monitor,1,389.99,05/03/19 16:09,"263 14th St, San Francisco, CA 94016" +205923,Wired Headphones,1,11.99,05/22/19 20:43,"484 South St, Los Angeles, CA 90001" +205924,AA Batteries (4-pack),1,3.84,05/11/19 17:33,"577 Johnson St, Seattle, WA 98101" +205925,Lightning Charging Cable,1,14.95,05/27/19 13:11,"736 Maple St, San Francisco, CA 94016" +205926,Apple Airpods Headphones,1,150,05/23/19 18:17,"180 Maple St, Dallas, TX 75001" +205927,Google Phone,1,600,05/04/19 16:03,"272 Dogwood St, Portland, OR 97035" +205928,Lightning Charging Cable,1,14.95,05/11/19 21:07,"323 12th St, San Francisco, CA 94016" +205929,AAA Batteries (4-pack),1,2.99,05/20/19 14:48,"566 8th St, Los Angeles, CA 90001" +205930,AA Batteries (4-pack),1,3.84,05/25/19 12:03,"469 River St, New York City, NY 10001" +205931,Wired Headphones,1,11.99,05/26/19 23:38,"757 North St, Boston, MA 02215" +205932,Bose SoundSport Headphones,1,99.99,05/03/19 00:18,"824 Ridge St, San Francisco, CA 94016" +205932,USB-C Charging Cable,1,11.95,05/03/19 00:18,"824 Ridge St, San Francisco, CA 94016" +205933,USB-C Charging Cable,1,11.95,05/04/19 17:12,"972 1st St, Austin, TX 73301" +205934,Lightning Charging Cable,1,14.95,05/23/19 10:35,"676 Hickory St, New York City, NY 10001" +205935,Google Phone,1,600,05/09/19 21:08,"552 11th St, Dallas, TX 75001" +205936,USB-C Charging Cable,3,11.95,05/10/19 11:40,"251 Spruce St, Dallas, TX 75001" +205937,AAA Batteries (4-pack),1,2.99,05/12/19 17:09,"988 12th St, San Francisco, CA 94016" +205938,AAA Batteries (4-pack),1,2.99,05/06/19 19:56,"259 Washington St, Los Angeles, CA 90001" +205939,Wired Headphones,1,11.99,05/12/19 22:09,"869 Park St, Dallas, TX 75001" +205940,ThinkPad Laptop,1,999.99,05/19/19 19:24,"628 12th St, Portland, OR 97035" +205941,AAA Batteries (4-pack),1,2.99,05/02/19 20:44,"298 Highland St, San Francisco, CA 94016" +205942,AAA Batteries (4-pack),1,2.99,05/14/19 18:35,"324 Jefferson St, Los Angeles, CA 90001" +205943,27in FHD Monitor,1,149.99,05/11/19 15:35,"626 Meadow St, Austin, TX 73301" +205944,Vareebadd Phone,1,400,05/21/19 19:45,"652 Elm St, Austin, TX 73301" +205945,Lightning Charging Cable,1,14.95,05/27/19 18:49,"697 9th St, New York City, NY 10001" +205946,AA Batteries (4-pack),1,3.84,05/09/19 15:22,"827 14th St, Los Angeles, CA 90001" +205947,Google Phone,1,600,05/28/19 11:20,"78 Chestnut St, San Francisco, CA 94016" +205948,USB-C Charging Cable,1,11.95,05/05/19 22:24,"569 9th St, Boston, MA 02215" +205949,AAA Batteries (4-pack),1,2.99,05/12/19 11:34,"947 Cedar St, Dallas, TX 75001" +205950,AAA Batteries (4-pack),1,2.99,05/24/19 11:39,"359 Adams St, Boston, MA 02215" +205951,Lightning Charging Cable,1,14.95,05/08/19 14:02,"952 Jackson St, San Francisco, CA 94016" +205952,AAA Batteries (4-pack),1,2.99,05/17/19 17:57,"621 Main St, New York City, NY 10001" +205953,27in FHD Monitor,1,149.99,05/13/19 23:53,"733 6th St, Boston, MA 02215" +205954,AA Batteries (4-pack),1,3.84,05/17/19 19:47,"761 Elm St, Portland, OR 97035" +205955,Bose SoundSport Headphones,1,99.99,05/04/19 11:31,"239 River St, San Francisco, CA 94016" +205956,Apple Airpods Headphones,1,150,05/14/19 22:33,"913 Highland St, Portland, OR 97035" +205956,Apple Airpods Headphones,1,150,05/14/19 22:33,"913 Highland St, Portland, OR 97035" +205957,Macbook Pro Laptop,1,1700,05/23/19 15:20,"809 Dogwood St, Atlanta, GA 30301" +205958,Macbook Pro Laptop,1,1700,05/23/19 22:44,"379 Walnut St, Dallas, TX 75001" +205959,AAA Batteries (4-pack),2,2.99,05/14/19 15:28,"86 14th St, Seattle, WA 98101" +205960,20in Monitor,1,109.99,05/25/19 19:39,"366 11th St, San Francisco, CA 94016" +205961,iPhone,1,700,05/02/19 19:21,"516 2nd St, Seattle, WA 98101" +205962,34in Ultrawide Monitor,1,379.99,05/26/19 15:52,"991 Spruce St, Austin, TX 73301" +205963,Macbook Pro Laptop,1,1700,05/15/19 20:43,"962 North St, Portland, OR 97035" +205964,USB-C Charging Cable,1,11.95,05/06/19 05:11,"878 Lake St, Seattle, WA 98101" +205965,AAA Batteries (4-pack),2,2.99,05/22/19 14:30,"692 9th St, Los Angeles, CA 90001" +205966,27in 4K Gaming Monitor,1,389.99,05/15/19 21:07,"794 Lincoln St, Los Angeles, CA 90001" +205967,27in 4K Gaming Monitor,1,389.99,05/23/19 22:34,"525 Pine St, San Francisco, CA 94016" +205968,27in FHD Monitor,1,149.99,05/22/19 15:34,"845 Maple St, Austin, TX 73301" +205969,USB-C Charging Cable,1,11.95,05/01/19 18:48,"956 Washington St, Boston, MA 02215" +205970,20in Monitor,1,109.99,05/13/19 11:12,"177 5th St, San Francisco, CA 94016" +205971,USB-C Charging Cable,1,11.95,05/24/19 10:25,"253 Maple St, Los Angeles, CA 90001" +205972,LG Dryer,1,600.0,05/22/19 18:52,"137 9th St, San Francisco, CA 94016" +205973,Macbook Pro Laptop,1,1700,05/21/19 21:59,"512 13th St, New York City, NY 10001" +205974,Apple Airpods Headphones,1,150,05/22/19 18:47,"310 North St, Dallas, TX 75001" +205975,34in Ultrawide Monitor,1,379.99,05/28/19 15:57,"80 Lakeview St, Portland, ME 04101" +205976,Apple Airpods Headphones,1,150,05/02/19 12:04,"282 Highland St, Atlanta, GA 30301" +205977,AA Batteries (4-pack),1,3.84,05/02/19 09:32,"255 West St, Austin, TX 73301" +205978,Bose SoundSport Headphones,1,99.99,05/10/19 12:51,"82 Cedar St, Boston, MA 02215" +205979,AA Batteries (4-pack),2,3.84,05/07/19 23:16,"154 Maple St, San Francisco, CA 94016" +205980,Vareebadd Phone,1,400,05/07/19 17:18,"962 11th St, Austin, TX 73301" +205981,ThinkPad Laptop,1,999.99,05/25/19 16:18,"577 8th St, San Francisco, CA 94016" +205982,AAA Batteries (4-pack),1,2.99,05/13/19 19:50,"432 Lake St, Atlanta, GA 30301" +205983,USB-C Charging Cable,1,11.95,05/17/19 09:51,"414 North St, San Francisco, CA 94016" +205984,AAA Batteries (4-pack),1,2.99,05/16/19 09:14,"960 Elm St, New York City, NY 10001" +205985,Macbook Pro Laptop,1,1700,05/09/19 21:19,"44 12th St, Dallas, TX 75001" +205986,AAA Batteries (4-pack),1,2.99,05/10/19 00:03,"901 Lakeview St, Boston, MA 02215" +205987,Wired Headphones,1,11.99,05/31/19 09:32,"525 Lincoln St, Dallas, TX 75001" +205988,Vareebadd Phone,1,400,05/11/19 13:07,"574 Hickory St, Portland, OR 97035" +205988,Bose SoundSport Headphones,1,99.99,05/11/19 13:07,"574 Hickory St, Portland, OR 97035" +205989,Bose SoundSport Headphones,1,99.99,05/27/19 19:05,"331 Washington St, San Francisco, CA 94016" +205990,USB-C Charging Cable,1,11.95,05/30/19 12:37,"654 Washington St, San Francisco, CA 94016" +205991,Wired Headphones,1,11.99,05/05/19 08:38,"894 Cherry St, Boston, MA 02215" +205992,Google Phone,1,600,05/19/19 12:22,"907 2nd St, San Francisco, CA 94016" +205993,Apple Airpods Headphones,1,150,05/14/19 23:50,"329 11th St, Dallas, TX 75001" +205994,Lightning Charging Cable,2,14.95,05/14/19 10:00,"742 Cedar St, Dallas, TX 75001" +205995,USB-C Charging Cable,1,11.95,05/24/19 09:18,"461 Highland St, New York City, NY 10001" +205995,Apple Airpods Headphones,1,150,05/24/19 09:18,"461 Highland St, New York City, NY 10001" +205996,AAA Batteries (4-pack),2,2.99,05/27/19 09:27,"14 Cedar St, Atlanta, GA 30301" +205997,27in FHD Monitor,1,149.99,05/25/19 01:48,"796 Church St, Austin, TX 73301" +205998,Lightning Charging Cable,1,14.95,05/26/19 15:57,"730 Park St, Atlanta, GA 30301" +205999,27in 4K Gaming Monitor,1,389.99,05/06/19 11:08,"496 Jefferson St, San Francisco, CA 94016" +206000,Apple Airpods Headphones,1,150,05/28/19 11:47,"334 Walnut St, Boston, MA 02215" +206001,AAA Batteries (4-pack),2,2.99,05/02/19 09:17,"119 Church St, New York City, NY 10001" +206002,27in FHD Monitor,1,149.99,05/30/19 22:18,"511 Wilson St, New York City, NY 10001" +206003,USB-C Charging Cable,1,11.95,05/01/19 15:14,"11 12th St, Los Angeles, CA 90001" +206004,27in 4K Gaming Monitor,1,389.99,05/10/19 19:44,"461 Main St, Seattle, WA 98101" +206005,27in FHD Monitor,1,149.99,05/10/19 14:04,"165 Highland St, Seattle, WA 98101" +206006,AA Batteries (4-pack),1,3.84,05/05/19 18:23,"395 Madison St, New York City, NY 10001" +206007,Wired Headphones,1,11.99,05/14/19 11:42,"818 North St, San Francisco, CA 94016" +206008,Wired Headphones,1,11.99,05/07/19 16:07,"928 West St, Boston, MA 02215" +206009,Wired Headphones,1,11.99,05/16/19 00:48,"63 Lakeview St, New York City, NY 10001" +206010,AA Batteries (4-pack),1,3.84,05/13/19 15:55,"470 2nd St, Seattle, WA 98101" +206011,AAA Batteries (4-pack),1,2.99,05/20/19 19:42,"382 Jackson St, San Francisco, CA 94016" +206012,iPhone,1,700,05/22/19 18:09,"422 Cedar St, Atlanta, GA 30301" +206013,Wired Headphones,1,11.99,05/07/19 11:24,"401 Elm St, San Francisco, CA 94016" +206014,LG Dryer,1,600.0,05/30/19 07:15,"541 4th St, San Francisco, CA 94016" +206015,AA Batteries (4-pack),1,3.84,05/20/19 22:07,"272 Hill St, Los Angeles, CA 90001" +206016,USB-C Charging Cable,1,11.95,05/10/19 23:07,"999 12th St, San Francisco, CA 94016" +206017,Lightning Charging Cable,1,14.95,05/08/19 11:27,"325 11th St, Boston, MA 02215" +206018,Apple Airpods Headphones,1,150,05/22/19 12:29,"944 Pine St, Austin, TX 73301" +206019,USB-C Charging Cable,1,11.95,05/22/19 19:15,"513 14th St, New York City, NY 10001" +206020,Wired Headphones,1,11.99,05/09/19 11:26,"931 Wilson St, Los Angeles, CA 90001" +206021,AA Batteries (4-pack),1,3.84,05/06/19 13:14,"187 Pine St, San Francisco, CA 94016" +206022,Lightning Charging Cable,1,14.95,05/04/19 13:48,"138 Park St, Los Angeles, CA 90001" +206023,Lightning Charging Cable,1,14.95,05/09/19 13:16,"798 Park St, Los Angeles, CA 90001" +206024,Lightning Charging Cable,1,14.95,05/17/19 10:43,"535 Lincoln St, Boston, MA 02215" +206025,34in Ultrawide Monitor,1,379.99,05/26/19 09:18,"439 Adams St, Atlanta, GA 30301" +206026,Google Phone,1,600,05/17/19 21:24,"449 5th St, Boston, MA 02215" +206027,ThinkPad Laptop,1,999.99,05/17/19 11:22,"463 West St, San Francisco, CA 94016" +206028,USB-C Charging Cable,1,11.95,05/29/19 23:02,"452 Meadow St, San Francisco, CA 94016" +206029,AA Batteries (4-pack),1,3.84,05/31/19 20:18,"483 Cherry St, Boston, MA 02215" +206030,Bose SoundSport Headphones,1,99.99,05/11/19 23:30,"863 River St, Seattle, WA 98101" +206031,34in Ultrawide Monitor,1,379.99,05/15/19 21:34,"602 10th St, New York City, NY 10001" +206032,Apple Airpods Headphones,1,150,05/12/19 13:17,"731 7th St, Boston, MA 02215" +206033,Lightning Charging Cable,1,14.95,05/08/19 13:11,"25 Park St, Los Angeles, CA 90001" +206034,AAA Batteries (4-pack),1,2.99,05/22/19 09:10,"75 Wilson St, San Francisco, CA 94016" +206035,27in 4K Gaming Monitor,1,389.99,05/20/19 21:12,"54 2nd St, San Francisco, CA 94016" +206036,Lightning Charging Cable,1,14.95,05/16/19 22:23,"965 Jackson St, Boston, MA 02215" +206037,Wired Headphones,1,11.99,05/06/19 12:50,"189 Maple St, Austin, TX 73301" +206038,AAA Batteries (4-pack),1,2.99,05/03/19 19:56,"156 Adams St, San Francisco, CA 94016" +206039,Lightning Charging Cable,1,14.95,05/03/19 20:10,"428 Walnut St, San Francisco, CA 94016" +206040,AAA Batteries (4-pack),1,2.99,05/12/19 20:53,"152 10th St, Los Angeles, CA 90001" +206041,AA Batteries (4-pack),3,3.84,05/12/19 16:15,"332 Center St, Seattle, WA 98101" +206042,AA Batteries (4-pack),1,3.84,05/24/19 19:25,"749 River St, Boston, MA 02215" +206043,Apple Airpods Headphones,1,150,05/22/19 15:16,"815 Willow St, Atlanta, GA 30301" +206044,USB-C Charging Cable,1,11.95,05/24/19 20:28,"448 Hill St, New York City, NY 10001" +206045,iPhone,1,700,05/26/19 01:28,"791 Elm St, Portland, OR 97035" +206045,Wired Headphones,1,11.99,05/26/19 01:28,"791 Elm St, Portland, OR 97035" +206046,AA Batteries (4-pack),2,3.84,05/24/19 13:32,"891 Madison St, San Francisco, CA 94016" +206047,ThinkPad Laptop,1,999.99,05/06/19 23:31,"784 Ridge St, Dallas, TX 75001" +206048,Bose SoundSport Headphones,1,99.99,05/20/19 14:24,"150 West St, Seattle, WA 98101" +206049,Lightning Charging Cable,1,14.95,05/03/19 22:28,"281 Jefferson St, New York City, NY 10001" +206050,Lightning Charging Cable,1,14.95,05/12/19 16:59,"900 Adams St, New York City, NY 10001" +206051,Macbook Pro Laptop,1,1700,05/24/19 14:51,"594 Jackson St, Boston, MA 02215" +206052,34in Ultrawide Monitor,1,379.99,05/26/19 11:29,"291 Hickory St, Boston, MA 02215" +206053,Apple Airpods Headphones,1,150,05/14/19 19:47,"523 Highland St, Los Angeles, CA 90001" +206054,ThinkPad Laptop,1,999.99,05/26/19 12:18,"548 Meadow St, Los Angeles, CA 90001" +206055,34in Ultrawide Monitor,1,379.99,05/11/19 20:22,"315 7th St, Austin, TX 73301" +206056,Apple Airpods Headphones,1,150,05/15/19 12:45,"408 Center St, Boston, MA 02215" +206057,Wired Headphones,1,11.99,05/11/19 19:38,"616 Hill St, San Francisco, CA 94016" +206058,AA Batteries (4-pack),1,3.84,05/20/19 18:13,"23 Church St, Atlanta, GA 30301" +206059,Flatscreen TV,1,300,05/11/19 23:20,"546 Jefferson St, San Francisco, CA 94016" +206060,Bose SoundSport Headphones,1,99.99,05/06/19 17:41,"543 Willow St, New York City, NY 10001" +206061,Bose SoundSport Headphones,1,99.99,05/29/19 13:21,"705 Cedar St, Atlanta, GA 30301" +206062,Wired Headphones,1,11.99,05/07/19 22:38,"492 Meadow St, New York City, NY 10001" +206063,Wired Headphones,1,11.99,05/11/19 08:49,"171 Walnut St, Atlanta, GA 30301" +206064,AA Batteries (4-pack),1,3.84,05/25/19 13:17,"615 Madison St, Austin, TX 73301" +206065,Wired Headphones,1,11.99,05/23/19 11:59,"296 8th St, Atlanta, GA 30301" +206066,Lightning Charging Cable,1,14.95,05/28/19 15:51,"145 Willow St, Seattle, WA 98101" +206067,Bose SoundSport Headphones,1,99.99,05/22/19 13:07,"131 7th St, Seattle, WA 98101" +206068,34in Ultrawide Monitor,1,379.99,05/22/19 07:10,"264 12th St, Portland, OR 97035" +206069,ThinkPad Laptop,1,999.99,05/22/19 21:16,"165 West St, Los Angeles, CA 90001" +206070,AA Batteries (4-pack),1,3.84,05/26/19 05:32,"276 Sunset St, Los Angeles, CA 90001" +206071,ThinkPad Laptop,1,999.99,05/06/19 16:45,"673 Highland St, Atlanta, GA 30301" +206072,Bose SoundSport Headphones,1,99.99,05/27/19 11:46,"244 Lincoln St, Boston, MA 02215" +206073,Lightning Charging Cable,1,14.95,05/21/19 23:10,"856 Park St, New York City, NY 10001" +206074,Lightning Charging Cable,1,14.95,05/21/19 17:10,"17 Hill St, Portland, OR 97035" +206075,27in 4K Gaming Monitor,1,389.99,05/30/19 10:17,"411 5th St, Los Angeles, CA 90001" +206076,Apple Airpods Headphones,1,150,05/26/19 15:58,"385 8th St, New York City, NY 10001" +206077,AAA Batteries (4-pack),1,2.99,05/18/19 21:11,"455 11th St, Boston, MA 02215" +206078,Bose SoundSport Headphones,1,99.99,05/10/19 19:15,"344 Ridge St, San Francisco, CA 94016" +206078,Lightning Charging Cable,1,14.95,05/10/19 19:15,"344 Ridge St, San Francisco, CA 94016" +206079,Lightning Charging Cable,1,14.95,05/10/19 11:09,"165 12th St, San Francisco, CA 94016" +206080,Wired Headphones,1,11.99,05/04/19 14:47,"798 Center St, New York City, NY 10001" +206081,Lightning Charging Cable,1,14.95,05/04/19 11:04,"269 1st St, Los Angeles, CA 90001" +206082,USB-C Charging Cable,1,11.95,05/01/19 13:42,"236 Church St, San Francisco, CA 94016" +206083,Bose SoundSport Headphones,1,99.99,05/09/19 13:03,"574 11th St, Portland, OR 97035" +206084,Wired Headphones,1,11.99,05/18/19 11:33,"423 Cherry St, San Francisco, CA 94016" +206085,Apple Airpods Headphones,1,150,05/29/19 20:15,"328 Main St, Austin, TX 73301" +206086,Apple Airpods Headphones,1,150,05/09/19 19:58,"833 Church St, San Francisco, CA 94016" +206087,iPhone,1,700,05/06/19 11:04,"599 6th St, Los Angeles, CA 90001" +206087,Lightning Charging Cable,1,14.95,05/06/19 11:04,"599 6th St, Los Angeles, CA 90001" +206087,Wired Headphones,1,11.99,05/06/19 11:04,"599 6th St, Los Angeles, CA 90001" +206088,USB-C Charging Cable,1,11.95,05/27/19 06:09,"779 9th St, Portland, OR 97035" +206089,Lightning Charging Cable,1,14.95,05/08/19 12:20,"911 Spruce St, New York City, NY 10001" +206090,AA Batteries (4-pack),1,3.84,05/16/19 15:25,"700 Jefferson St, Austin, TX 73301" +206091,Lightning Charging Cable,1,14.95,05/06/19 17:12,"29 10th St, Boston, MA 02215" +206092,Lightning Charging Cable,1,14.95,05/06/19 13:01,"124 South St, San Francisco, CA 94016" +206093,Apple Airpods Headphones,1,150,05/18/19 20:01,"996 Hickory St, Austin, TX 73301" +206094,AAA Batteries (4-pack),2,2.99,05/17/19 10:04,"5 Adams St, Los Angeles, CA 90001" +206095,AAA Batteries (4-pack),1,2.99,05/02/19 15:43,"32 7th St, San Francisco, CA 94016" +206096,27in 4K Gaming Monitor,1,389.99,05/08/19 23:45,"241 West St, Seattle, WA 98101" +206097,ThinkPad Laptop,1,999.99,05/06/19 15:11,"64 Maple St, Dallas, TX 75001" +206098,AA Batteries (4-pack),1,3.84,05/28/19 16:24,"365 Ridge St, San Francisco, CA 94016" +206099,AA Batteries (4-pack),1,3.84,05/07/19 21:13,"190 Highland St, Boston, MA 02215" +206100,20in Monitor,1,109.99,05/04/19 17:52,"352 West St, Atlanta, GA 30301" +206101,Vareebadd Phone,1,400,05/12/19 00:12,"553 2nd St, Atlanta, GA 30301" +206102,Macbook Pro Laptop,1,1700,05/05/19 10:57,"588 Jackson St, San Francisco, CA 94016" +206103,Lightning Charging Cable,1,14.95,05/13/19 02:48,"618 Church St, Portland, OR 97035" +206104,27in 4K Gaming Monitor,1,389.99,05/05/19 17:06,"642 Walnut St, San Francisco, CA 94016" +206105,Google Phone,1,600,05/27/19 18:37,"628 Center St, Los Angeles, CA 90001" +206106,Lightning Charging Cable,1,14.95,05/11/19 12:37,"868 7th St, San Francisco, CA 94016" +206107,AA Batteries (4-pack),1,3.84,05/19/19 17:18,"565 Jackson St, Portland, OR 97035" +206108,Wired Headphones,1,11.99,05/27/19 15:41,"740 Lakeview St, San Francisco, CA 94016" +206109,USB-C Charging Cable,1,11.95,05/12/19 18:52,"237 14th St, Atlanta, GA 30301" +206110,Wired Headphones,1,11.99,05/01/19 11:20,"101 6th St, Boston, MA 02215" +206111,Lightning Charging Cable,1,14.95,05/27/19 14:40,"197 Hickory St, Seattle, WA 98101" +206111,Lightning Charging Cable,1,14.95,05/27/19 14:40,"197 Hickory St, Seattle, WA 98101" +206112,AAA Batteries (4-pack),1,2.99,05/25/19 05:56,"217 1st St, Los Angeles, CA 90001" +206113,Google Phone,1,600,05/29/19 19:44,"442 West St, Atlanta, GA 30301" +206114,Bose SoundSport Headphones,1,99.99,05/20/19 08:07,"188 Hill St, Los Angeles, CA 90001" +206115,20in Monitor,1,109.99,05/19/19 11:44,"783 4th St, Los Angeles, CA 90001" +206116,AAA Batteries (4-pack),1,2.99,05/06/19 14:35,"309 12th St, San Francisco, CA 94016" +206117,Bose SoundSport Headphones,1,99.99,05/31/19 18:39,"491 Cherry St, Dallas, TX 75001" +206118,Macbook Pro Laptop,1,1700,05/28/19 19:05,"928 Center St, San Francisco, CA 94016" +206119,Bose SoundSport Headphones,1,99.99,05/17/19 13:00,"363 Chestnut St, Dallas, TX 75001" +206120,Apple Airpods Headphones,1,150,05/12/19 20:35,"929 7th St, Seattle, WA 98101" +206121,Wired Headphones,1,11.99,05/25/19 19:30,"267 Pine St, San Francisco, CA 94016" +206121,34in Ultrawide Monitor,1,379.99,05/25/19 19:30,"267 Pine St, San Francisco, CA 94016" +206122,LG Dryer,1,600.0,05/22/19 16:27,"65 7th St, San Francisco, CA 94016" +206123,Lightning Charging Cable,1,14.95,05/31/19 16:38,"587 9th St, Boston, MA 02215" +206124,27in FHD Monitor,1,149.99,05/07/19 20:20,"76 Ridge St, Portland, OR 97035" +206125,Wired Headphones,2,11.99,05/24/19 23:18,"865 Spruce St, San Francisco, CA 94016" +206126,AAA Batteries (4-pack),1,2.99,05/20/19 10:46,"809 8th St, Los Angeles, CA 90001" +206127,AAA Batteries (4-pack),3,2.99,05/24/19 04:18,"473 12th St, Los Angeles, CA 90001" +206128,AAA Batteries (4-pack),1,2.99,05/27/19 05:52,"467 Forest St, Seattle, WA 98101" +206129,AAA Batteries (4-pack),1,2.99,05/13/19 22:33,"202 West St, Seattle, WA 98101" +206130,Apple Airpods Headphones,1,150,05/21/19 21:46,"380 West St, San Francisco, CA 94016" +206131,Apple Airpods Headphones,1,150,05/22/19 10:13,"479 Madison St, San Francisco, CA 94016" +206132,Wired Headphones,1,11.99,05/26/19 15:09,"346 Jefferson St, San Francisco, CA 94016" +206133,AA Batteries (4-pack),1,3.84,05/26/19 21:43,"777 Center St, Boston, MA 02215" +206134,27in 4K Gaming Monitor,1,389.99,05/10/19 11:33,"893 9th St, San Francisco, CA 94016" +206135,Wired Headphones,1,11.99,05/16/19 10:09,"291 Ridge St, Seattle, WA 98101" +206136,AA Batteries (4-pack),2,3.84,05/03/19 07:23,"941 Jefferson St, San Francisco, CA 94016" +206137,Apple Airpods Headphones,1,150,05/22/19 19:27,"397 Center St, Atlanta, GA 30301" +206138,AAA Batteries (4-pack),1,2.99,05/08/19 00:30,"294 5th St, San Francisco, CA 94016" +206139,USB-C Charging Cable,1,11.95,05/04/19 00:17,"330 Lake St, Boston, MA 02215" +206140,AA Batteries (4-pack),1,3.84,05/14/19 22:56,"594 Adams St, San Francisco, CA 94016" +206141,AA Batteries (4-pack),1,3.84,05/07/19 18:56,"150 Sunset St, Los Angeles, CA 90001" +206142,Lightning Charging Cable,1,14.95,05/13/19 13:45,"498 Dogwood St, Los Angeles, CA 90001" +206143,USB-C Charging Cable,1,11.95,05/19/19 10:27,"378 4th St, New York City, NY 10001" +206144,USB-C Charging Cable,1,11.95,05/11/19 19:14,"219 Center St, Dallas, TX 75001" +206145,AA Batteries (4-pack),1,3.84,05/21/19 10:23,"481 Sunset St, Atlanta, GA 30301" +206146,Wired Headphones,1,11.99,05/02/19 10:33,"516 West St, San Francisco, CA 94016" +206147,20in Monitor,1,109.99,05/09/19 11:10,"742 1st St, San Francisco, CA 94016" +206148,Wired Headphones,1,11.99,05/02/19 23:39,"927 Walnut St, Los Angeles, CA 90001" +206149,Lightning Charging Cable,1,14.95,05/03/19 19:26,"977 8th St, San Francisco, CA 94016" +206150,USB-C Charging Cable,1,11.95,05/17/19 15:49,"277 Ridge St, Austin, TX 73301" +206151,Apple Airpods Headphones,1,150,05/13/19 22:07,"840 Main St, Atlanta, GA 30301" +206152,Flatscreen TV,1,300,05/19/19 11:14,"405 Park St, New York City, NY 10001" +206153,Lightning Charging Cable,1,14.95,05/07/19 19:31,"879 Willow St, Seattle, WA 98101" +206154,USB-C Charging Cable,1,11.95,05/02/19 21:10,"857 North St, New York City, NY 10001" +206155,iPhone,1,700,05/01/19 18:12,"721 Hickory St, San Francisco, CA 94016" +206156,Vareebadd Phone,1,400,05/05/19 02:12,"805 Lakeview St, New York City, NY 10001" +206157,iPhone,1,700,05/30/19 17:48,"128 Dogwood St, Atlanta, GA 30301" +206158,Bose SoundSport Headphones,1,99.99,05/09/19 00:21,"651 West St, Atlanta, GA 30301" +206159,iPhone,1,700,05/26/19 14:23,"814 West St, New York City, NY 10001" +206160,Lightning Charging Cable,1,14.95,05/04/19 15:58,"290 North St, San Francisco, CA 94016" +206161,Google Phone,1,600,05/03/19 16:00,"586 Sunset St, San Francisco, CA 94016" +206161,Wired Headphones,1,11.99,05/03/19 16:00,"586 Sunset St, San Francisco, CA 94016" +206161,Apple Airpods Headphones,1,150,05/03/19 16:00,"586 Sunset St, San Francisco, CA 94016" +206162,Wired Headphones,2,11.99,05/04/19 23:56,"579 Meadow St, Dallas, TX 75001" +206163,Wired Headphones,1,11.99,05/10/19 22:08,"236 14th St, Atlanta, GA 30301" +206164,AAA Batteries (4-pack),1,2.99,05/13/19 17:44,"337 6th St, Los Angeles, CA 90001" +206165,Wired Headphones,1,11.99,05/04/19 18:41,"299 Pine St, Los Angeles, CA 90001" +206166,Lightning Charging Cable,1,14.95,05/05/19 07:22,"657 Hill St, Seattle, WA 98101" +206167,Apple Airpods Headphones,1,150,05/09/19 21:38,"206 Dogwood St, Austin, TX 73301" +206168,AA Batteries (4-pack),1,3.84,05/17/19 20:23,"423 Adams St, Dallas, TX 75001" +206169,AA Batteries (4-pack),1,3.84,05/08/19 08:55,"751 Main St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +206170,Wired Headphones,1,11.99,05/13/19 11:23,"233 11th St, San Francisco, CA 94016" +206171,USB-C Charging Cable,1,11.95,05/01/19 10:56,"787 5th St, New York City, NY 10001" +206172,Google Phone,1,600,05/10/19 15:39,"909 Sunset St, Austin, TX 73301" +206173,AAA Batteries (4-pack),1,2.99,05/27/19 14:00,"342 Center St, Seattle, WA 98101" +206174,AAA Batteries (4-pack),1,2.99,05/24/19 02:12,"787 14th St, Portland, OR 97035" +206175,USB-C Charging Cable,1,11.95,05/05/19 23:42,"58 Main St, San Francisco, CA 94016" +206176,Lightning Charging Cable,1,14.95,05/01/19 18:03,"113 River St, Seattle, WA 98101" +206177,Apple Airpods Headphones,1,150,05/04/19 19:49,"660 Spruce St, Atlanta, GA 30301" +206178,Apple Airpods Headphones,1,150,05/28/19 14:42,"815 Highland St, Seattle, WA 98101" +206179,AA Batteries (4-pack),1,3.84,05/04/19 21:51,"193 Center St, Seattle, WA 98101" +206180,Wired Headphones,1,11.99,05/01/19 13:43,"58 6th St, San Francisco, CA 94016" +206181,ThinkPad Laptop,1,999.99,05/04/19 21:00,"121 Hickory St, Portland, ME 04101" +206182,Wired Headphones,1,11.99,05/15/19 00:42,"317 Spruce St, Portland, OR 97035" +206183,AAA Batteries (4-pack),2,2.99,05/10/19 01:02,"296 Wilson St, San Francisco, CA 94016" +206184,AA Batteries (4-pack),4,3.84,05/12/19 17:21,"208 10th St, Atlanta, GA 30301" +206185,Flatscreen TV,1,300,05/09/19 19:37,"29 8th St, San Francisco, CA 94016" +206186,27in FHD Monitor,1,149.99,05/29/19 11:47,"320 5th St, Los Angeles, CA 90001" +206187,Macbook Pro Laptop,1,1700,05/01/19 15:58,"897 Lakeview St, Atlanta, GA 30301" +206188,Apple Airpods Headphones,1,150,05/10/19 15:47,"390 Jackson St, Los Angeles, CA 90001" +206189,Bose SoundSport Headphones,1,99.99,05/12/19 13:21,"143 14th St, Los Angeles, CA 90001" +206190,AA Batteries (4-pack),1,3.84,05/19/19 11:36,"297 Park St, Los Angeles, CA 90001" +206191,Wired Headphones,1,11.99,05/16/19 09:33,"709 Jefferson St, San Francisco, CA 94016" +206192,34in Ultrawide Monitor,1,379.99,05/16/19 02:32,"458 North St, Seattle, WA 98101" +206193,AAA Batteries (4-pack),1,2.99,05/18/19 09:38,"338 Maple St, Boston, MA 02215" +206194,USB-C Charging Cable,1,11.95,05/15/19 15:12,"122 10th St, Seattle, WA 98101" +206195,27in FHD Monitor,1,149.99,05/24/19 21:15,"993 Dogwood St, Portland, ME 04101" +206196,Lightning Charging Cable,1,14.95,05/26/19 13:27,"373 7th St, Seattle, WA 98101" +206196,20in Monitor,1,109.99,05/26/19 13:27,"373 7th St, Seattle, WA 98101" +206197,Google Phone,1,600,05/16/19 12:25,"317 Hickory St, Austin, TX 73301" +206198,Lightning Charging Cable,2,14.95,05/10/19 14:56,"623 South St, San Francisco, CA 94016" +206199,USB-C Charging Cable,1,11.95,05/29/19 13:21,"397 Sunset St, New York City, NY 10001" +206200,Wired Headphones,1,11.99,05/23/19 14:31,"292 13th St, Dallas, TX 75001" +206201,AA Batteries (4-pack),1,3.84,05/21/19 12:24,"304 Jackson St, Atlanta, GA 30301" +206202,27in 4K Gaming Monitor,1,389.99,05/18/19 12:31,"219 14th St, Los Angeles, CA 90001" +206203,AAA Batteries (4-pack),3,2.99,05/02/19 00:33,"956 North St, Atlanta, GA 30301" +206204,Macbook Pro Laptop,1,1700,05/04/19 13:47,"983 Hickory St, New York City, NY 10001" +206205,AAA Batteries (4-pack),1,2.99,05/02/19 13:41,"282 Lincoln St, San Francisco, CA 94016" +206206,Google Phone,1,600,05/21/19 00:04,"137 River St, Dallas, TX 75001" +206207,AAA Batteries (4-pack),1,2.99,05/29/19 12:34,"358 Hill St, San Francisco, CA 94016" +206208,Lightning Charging Cable,1,14.95,05/15/19 19:07,"680 Jackson St, Seattle, WA 98101" +206209,iPhone,1,700,05/27/19 14:06,"74 Lakeview St, Los Angeles, CA 90001" +206210,AA Batteries (4-pack),1,3.84,05/06/19 10:36,"446 13th St, Atlanta, GA 30301" +206211,AA Batteries (4-pack),2,3.84,05/20/19 08:54,"212 4th St, Seattle, WA 98101" +206212,20in Monitor,1,109.99,05/25/19 16:52,"985 Johnson St, Los Angeles, CA 90001" +206213,AAA Batteries (4-pack),1,2.99,05/25/19 22:18,"921 4th St, Atlanta, GA 30301" +206214,Wired Headphones,1,11.99,05/10/19 15:25,"158 12th St, Seattle, WA 98101" +206215,Wired Headphones,1,11.99,05/15/19 09:53,"722 Lake St, San Francisco, CA 94016" +206216,Wired Headphones,1,11.99,05/24/19 18:13,"789 1st St, New York City, NY 10001" +206217,AA Batteries (4-pack),1,3.84,05/01/19 13:36,"870 Walnut St, Seattle, WA 98101" +206218,Lightning Charging Cable,1,14.95,05/31/19 16:55,"388 Sunset St, Los Angeles, CA 90001" +206219,Lightning Charging Cable,1,14.95,05/04/19 21:34,"406 Pine St, Seattle, WA 98101" +206220,USB-C Charging Cable,1,11.95,05/30/19 17:45,"702 Madison St, San Francisco, CA 94016" +206221,AAA Batteries (4-pack),1,2.99,05/10/19 18:49,"325 Adams St, San Francisco, CA 94016" +206222,Lightning Charging Cable,1,14.95,05/02/19 20:26,"758 Meadow St, Los Angeles, CA 90001" +206223,Bose SoundSport Headphones,1,99.99,05/20/19 12:52,"322 5th St, Los Angeles, CA 90001" +206224,Wired Headphones,2,11.99,05/20/19 18:05,"508 11th St, Los Angeles, CA 90001" +236018,Wired Headphones,1,11.99,08/31/19 21:01,"198 Meadow St, Seattle, WA 98101" +236019,AA Batteries (4-pack),1,3.84,08/22/19 18:12,"871 Main St, San Francisco, CA 94016" +236020,Lightning Charging Cable,1,14.95,08/10/19 16:46,"148 Walnut St, San Francisco, CA 94016" +236021,Bose SoundSport Headphones,1,99.99,08/22/19 19:44,"954 Wilson St, New York City, NY 10001" +236022,Apple Airpods Headphones,1,150.0,08/04/19 16:59,"82 8th St, Austin, TX 73301" +236023,AA Batteries (4-pack),1,3.84,08/17/19 14:48,"658 Wilson St, Boston, MA 02215" +236024,27in FHD Monitor,1,149.99,08/06/19 09:17,"534 Park St, San Francisco, CA 94016" +236025,AA Batteries (4-pack),1,3.84,08/14/19 13:22,"944 Hill St, Seattle, WA 98101" +236026,Lightning Charging Cable,1,14.95,08/04/19 18:23,"54 Church St, Atlanta, GA 30301" +236027,ThinkPad Laptop,1,999.99,08/28/19 19:00,"43 Madison St, Seattle, WA 98101" +236028,USB-C Charging Cable,1,11.95,08/23/19 01:14,"179 10th St, Portland, OR 97035" +236029,Macbook Pro Laptop,1,1700.0,08/18/19 19:23,"31 Adams St, San Francisco, CA 94016" +236030,iPhone,1,700.0,08/25/19 16:44,"973 5th St, Portland, OR 97035" +236031,USB-C Charging Cable,1,11.95,08/13/19 13:29,"136 1st St, San Francisco, CA 94016" +236032,USB-C Charging Cable,1,11.95,08/23/19 19:12,"117 Meadow St, San Francisco, CA 94016" +236033,Lightning Charging Cable,1,14.95,08/03/19 22:38,"159 Jefferson St, Los Angeles, CA 90001" +236033,Bose SoundSport Headphones,1,99.99,08/03/19 22:38,"159 Jefferson St, Los Angeles, CA 90001" +236034,Bose SoundSport Headphones,1,99.99,08/17/19 10:10,"373 Lakeview St, Austin, TX 73301" +236035,AAA Batteries (4-pack),4,2.99,08/25/19 17:51,"745 Ridge St, New York City, NY 10001" +236036,Wired Headphones,1,11.99,08/30/19 08:33,"4 Chestnut St, Portland, OR 97035" +236037,27in FHD Monitor,1,149.99,08/09/19 17:13,"945 Meadow St, Dallas, TX 75001" +236038,Wired Headphones,1,11.99,08/07/19 18:04,"425 2nd St, San Francisco, CA 94016" +236039,27in FHD Monitor,2,149.99,08/04/19 01:45,"248 Cherry St, San Francisco, CA 94016" +236040,AA Batteries (4-pack),1,3.84,08/03/19 15:27,"803 Jackson St, Portland, OR 97035" +236041,AA Batteries (4-pack),2,3.84,08/21/19 11:52,"661 Main St, San Francisco, CA 94016" +236042,USB-C Charging Cable,1,11.95,08/16/19 04:48,"558 13th St, San Francisco, CA 94016" +236043,AAA Batteries (4-pack),1,2.99,08/22/19 16:00,"104 11th St, Los Angeles, CA 90001" +236044,AA Batteries (4-pack),1,3.84,08/03/19 14:45,"39 Pine St, New York City, NY 10001" +236045,Wired Headphones,1,11.99,08/13/19 15:14,"446 River St, Boston, MA 02215" +236046,AA Batteries (4-pack),2,3.84,08/29/19 15:13,"488 Adams St, Boston, MA 02215" +236047,Lightning Charging Cable,1,14.95,08/31/19 00:10,"546 Jefferson St, Atlanta, GA 30301" +236048,Google Phone,1,600.0,08/11/19 00:20,"717 9th St, San Francisco, CA 94016" +236049,ThinkPad Laptop,1,999.99,08/30/19 11:31,"694 Dogwood St, Portland, ME 04101" +236050,Apple Airpods Headphones,1,150.0,08/13/19 23:01,"566 14th St, Boston, MA 02215" +236051,27in FHD Monitor,1,149.99,08/28/19 20:51,"982 Main St, Boston, MA 02215" +236052,AAA Batteries (4-pack),1,2.99,09/01/19 01:45,"965 5th St, San Francisco, CA 94016" +236053,USB-C Charging Cable,1,11.95,08/23/19 15:17,"661 Lake St, Boston, MA 02215" +236054,Apple Airpods Headphones,1,150.0,08/09/19 20:22,"498 Sunset St, Boston, MA 02215" +236055,USB-C Charging Cable,1,11.95,08/26/19 23:38,"691 Pine St, Austin, TX 73301" +236056,USB-C Charging Cable,1,11.95,08/27/19 14:37,"988 14th St, Atlanta, GA 30301" +236057,Vareebadd Phone,1,400.0,08/20/19 20:43,"332 Hill St, Portland, OR 97035" +236058,Wired Headphones,1,11.99,08/09/19 21:17,"263 11th St, Boston, MA 02215" +236059,Bose SoundSport Headphones,1,99.99,08/26/19 20:27,"436 Cedar St, Boston, MA 02215" +236060,34in Ultrawide Monitor,1,379.99,08/14/19 16:19,"937 Walnut St, New York City, NY 10001" +236061,AAA Batteries (4-pack),1,2.99,08/29/19 11:27,"445 Forest St, San Francisco, CA 94016" +236062,34in Ultrawide Monitor,1,379.99,08/30/19 11:35,"627 9th St, New York City, NY 10001" +236063,AA Batteries (4-pack),1,3.84,08/26/19 20:44,"285 Walnut St, Seattle, WA 98101" +236064,AAA Batteries (4-pack),1,2.99,08/25/19 00:59,"142 Walnut St, Seattle, WA 98101" +236065,Lightning Charging Cable,2,14.95,08/23/19 06:22,"865 Maple St, San Francisco, CA 94016" +236066,Google Phone,1,600.0,08/31/19 13:12,"626 Center St, New York City, NY 10001" +236066,Bose SoundSport Headphones,1,99.99,08/31/19 13:12,"626 Center St, New York City, NY 10001" +236067,Lightning Charging Cable,1,14.95,08/07/19 23:48,"478 West St, Atlanta, GA 30301" +236068,Flatscreen TV,1,300.0,08/26/19 20:09,"566 Forest St, San Francisco, CA 94016" +236069,Lightning Charging Cable,1,14.95,08/31/19 00:33,"19 Meadow St, Austin, TX 73301" +236070,Apple Airpods Headphones,1,150.0,08/19/19 14:23,"58 Chestnut St, Boston, MA 02215" +236071,Bose SoundSport Headphones,1,99.99,08/30/19 14:02,"365 Ridge St, Austin, TX 73301" +236072,Lightning Charging Cable,1,14.95,08/28/19 22:14,"810 Elm St, San Francisco, CA 94016" +236073,Apple Airpods Headphones,1,150.0,08/20/19 03:17,"277 Madison St, Dallas, TX 75001" +236074,USB-C Charging Cable,1,11.95,08/21/19 13:30,"933 Chestnut St, Dallas, TX 75001" +236075,Lightning Charging Cable,1,14.95,08/27/19 19:42,"897 Madison St, Atlanta, GA 30301" +236076,AA Batteries (4-pack),1,3.84,08/06/19 16:38,"570 Hill St, Los Angeles, CA 90001" +236077,Flatscreen TV,1,300.0,08/22/19 10:53,"411 Willow St, Dallas, TX 75001" +236078,27in 4K Gaming Monitor,1,389.99,08/03/19 14:15,"763 Jackson St, Los Angeles, CA 90001" +236079,ThinkPad Laptop,1,999.99,08/08/19 17:43,"782 Willow St, New York City, NY 10001" +236080,34in Ultrawide Monitor,1,379.99,08/16/19 00:50,"41 Lake St, Boston, MA 02215" +236081,AAA Batteries (4-pack),1,2.99,08/25/19 12:27,"850 Church St, San Francisco, CA 94016" +236082,Lightning Charging Cable,2,14.95,08/10/19 19:09,"539 Chestnut St, San Francisco, CA 94016" +236083,AA Batteries (4-pack),1,3.84,08/24/19 17:37,"959 2nd St, Boston, MA 02215" +236084,Flatscreen TV,1,300.0,08/26/19 21:20,"399 14th St, Portland, OR 97035" +236085,Lightning Charging Cable,1,14.95,08/13/19 19:22,"984 Cedar St, Portland, ME 04101" +236086,AA Batteries (4-pack),2,3.84,08/02/19 14:22,"139 Meadow St, Los Angeles, CA 90001" +236087,Bose SoundSport Headphones,1,99.99,08/24/19 06:56,"181 6th St, Los Angeles, CA 90001" +236088,Wired Headphones,1,11.99,08/15/19 18:38,"648 8th St, Portland, OR 97035" +236089,USB-C Charging Cable,1,11.95,08/21/19 12:59,"707 Ridge St, Dallas, TX 75001" +236090,AAA Batteries (4-pack),1,2.99,08/30/19 22:49,"358 12th St, San Francisco, CA 94016" +236091,USB-C Charging Cable,1,11.95,08/12/19 20:40,"793 Lake St, Portland, OR 97035" +236092,AAA Batteries (4-pack),2,2.99,08/04/19 15:55,"835 West St, San Francisco, CA 94016" +236093,USB-C Charging Cable,1,11.95,08/11/19 23:38,"780 12th St, San Francisco, CA 94016" +236094,Lightning Charging Cable,2,14.95,08/22/19 09:01,"575 9th St, Dallas, TX 75001" +236095,AAA Batteries (4-pack),1,2.99,08/02/19 22:04,"78 Meadow St, Boston, MA 02215" +236096,iPhone,1,700.0,08/19/19 14:58,"567 North St, Atlanta, GA 30301" +236097,Lightning Charging Cable,1,14.95,08/26/19 06:48,"110 Lake St, Portland, ME 04101" +236098,Wired Headphones,1,11.99,08/22/19 15:30,"834 Cherry St, Los Angeles, CA 90001" +236099,iPhone,1,700.0,08/20/19 11:18,"627 Hickory St, Los Angeles, CA 90001" +236100,USB-C Charging Cable,1,11.95,08/13/19 18:33,"196 Walnut St, San Francisco, CA 94016" +236101,Vareebadd Phone,1,400.0,08/17/19 10:42,"415 Pine St, Portland, OR 97035" +236101,Wired Headphones,1,11.99,08/17/19 10:42,"415 Pine St, Portland, OR 97035" +236102,AAA Batteries (4-pack),1,2.99,08/07/19 19:00,"705 5th St, Atlanta, GA 30301" +236103,Lightning Charging Cable,1,14.95,08/21/19 09:55,"836 Hill St, Los Angeles, CA 90001" +236104,AA Batteries (4-pack),2,3.84,08/16/19 12:54,"217 Church St, Atlanta, GA 30301" +236105,iPhone,1,700.0,08/18/19 20:46,"674 13th St, Seattle, WA 98101" +236106,AA Batteries (4-pack),1,3.84,08/03/19 17:00,"451 1st St, Seattle, WA 98101" +236107,USB-C Charging Cable,1,11.95,08/19/19 14:27,"585 14th St, New York City, NY 10001" +236108,AAA Batteries (4-pack),3,2.99,08/24/19 19:33,"587 Meadow St, Atlanta, GA 30301" +236109,Lightning Charging Cable,1,14.95,08/01/19 12:28,"150 9th St, San Francisco, CA 94016" +236110,iPhone,1,700.0,08/21/19 09:19,"595 10th St, Los Angeles, CA 90001" +236111,ThinkPad Laptop,1,999.99,08/05/19 16:08,"788 Spruce St, San Francisco, CA 94016" +236112,AA Batteries (4-pack),2,3.84,08/21/19 20:03,"561 North St, Portland, OR 97035" +236113,20in Monitor,1,109.99,08/05/19 17:25,"274 Lincoln St, Boston, MA 02215" +236114,USB-C Charging Cable,1,11.95,08/14/19 23:14,"857 Wilson St, San Francisco, CA 94016" +236115,Lightning Charging Cable,1,14.95,08/31/19 01:17,"281 Highland St, Los Angeles, CA 90001" +236116,Wired Headphones,1,11.99,08/27/19 23:48,"107 North St, San Francisco, CA 94016" +236117,Wired Headphones,1,11.99,08/29/19 15:32,"244 12th St, Los Angeles, CA 90001" +236118,Lightning Charging Cable,1,14.95,08/17/19 21:04,"414 9th St, Austin, TX 73301" +236119,AA Batteries (4-pack),1,3.84,08/26/19 20:46,"573 9th St, Los Angeles, CA 90001" +236120,Google Phone,1,600.0,08/31/19 19:52,"444 Elm St, San Francisco, CA 94016" +236120,Bose SoundSport Headphones,1,99.99,08/31/19 19:52,"444 Elm St, San Francisco, CA 94016" +236121,27in 4K Gaming Monitor,1,389.99,08/25/19 22:15,"819 Wilson St, Atlanta, GA 30301" +236122,Macbook Pro Laptop,1,1700.0,08/26/19 12:48,"284 West St, San Francisco, CA 94016" +236123,27in 4K Gaming Monitor,1,389.99,08/21/19 10:40,"305 South St, New York City, NY 10001" +236123,USB-C Charging Cable,1,11.95,08/21/19 10:40,"305 South St, New York City, NY 10001" +236124,Bose SoundSport Headphones,1,99.99,08/18/19 09:42,"385 Maple St, San Francisco, CA 94016" +236125,AAA Batteries (4-pack),2,2.99,08/12/19 09:35,"515 Center St, Los Angeles, CA 90001" +236126,34in Ultrawide Monitor,1,379.99,08/13/19 19:38,"230 5th St, Boston, MA 02215" +236127,AAA Batteries (4-pack),1,2.99,08/12/19 13:22,"851 Walnut St, Boston, MA 02215" +236128,34in Ultrawide Monitor,1,379.99,08/13/19 16:20,"828 Lake St, Los Angeles, CA 90001" +,,,,, +236129,20in Monitor,1,109.99,08/24/19 20:30,"783 4th St, Portland, OR 97035" +236130,Bose SoundSport Headphones,1,99.99,08/03/19 17:20,"244 Main St, Los Angeles, CA 90001" +236131,Wired Headphones,1,11.99,08/28/19 09:51,"511 Adams St, Los Angeles, CA 90001" +236132,Lightning Charging Cable,1,14.95,08/12/19 12:15,"418 River St, Portland, OR 97035" +236133,USB-C Charging Cable,1,11.95,08/11/19 03:11,"608 Pine St, Boston, MA 02215" +236134,20in Monitor,1,109.99,08/28/19 14:56,"10 14th St, Portland, OR 97035" +236135,AAA Batteries (4-pack),1,2.99,08/21/19 10:46,"110 10th St, San Francisco, CA 94016" +236136,AA Batteries (4-pack),1,3.84,08/31/19 09:40,"509 1st St, San Francisco, CA 94016" +236137,AAA Batteries (4-pack),1,2.99,08/29/19 20:14,"313 Sunset St, San Francisco, CA 94016" +236138,Bose SoundSport Headphones,1,99.99,08/27/19 23:40,"283 Elm St, Atlanta, GA 30301" +236139,AA Batteries (4-pack),2,3.84,08/17/19 19:39,"4 Pine St, Dallas, TX 75001" +236140,Apple Airpods Headphones,1,150,08/13/19 19:50,"367 10th St, New York City, NY 10001" +236141,AAA Batteries (4-pack),2,2.99,08/19/19 19:11,"97 11th St, Seattle, WA 98101" +236142,AA Batteries (4-pack),1,3.84,08/23/19 21:55,"647 4th St, San Francisco, CA 94016" +236143,AAA Batteries (4-pack),1,2.99,08/23/19 23:34,"386 Jackson St, Los Angeles, CA 90001" +236144,iPhone,1,700,08/24/19 18:40,"585 Park St, Austin, TX 73301" +236145,Lightning Charging Cable,1,14.95,08/09/19 17:13,"161 9th St, San Francisco, CA 94016" +236146,AAA Batteries (4-pack),2,2.99,08/05/19 20:42,"444 12th St, San Francisco, CA 94016" +236147,27in 4K Gaming Monitor,1,389.99,08/21/19 16:52,"46 1st St, San Francisco, CA 94016" +236148,Lightning Charging Cable,1,14.95,08/27/19 12:36,"297 5th St, New York City, NY 10001" +236149,Lightning Charging Cable,1,14.95,08/01/19 20:10,"79 Elm St, Austin, TX 73301" +,,,,, +236150,AAA Batteries (4-pack),1,2.99,08/28/19 18:55,"368 Walnut St, San Francisco, CA 94016" +236151,iPhone,1,700,08/26/19 09:13,"579 1st St, New York City, NY 10001" +236152,Lightning Charging Cable,1,14.95,08/16/19 12:08,"27 Ridge St, Austin, TX 73301" +236153,27in 4K Gaming Monitor,1,389.99,08/02/19 12:57,"7 Walnut St, New York City, NY 10001" +236153,Wired Headphones,1,11.99,08/02/19 12:57,"7 Walnut St, New York City, NY 10001" +236154,AAA Batteries (4-pack),2,2.99,08/09/19 21:57,"645 Ridge St, San Francisco, CA 94016" +236155,ThinkPad Laptop,1,999.99,08/05/19 12:09,"699 Lake St, New York City, NY 10001" +236156,27in FHD Monitor,1,149.99,08/08/19 23:26,"616 West St, San Francisco, CA 94016" +236157,Lightning Charging Cable,1,14.95,08/19/19 20:44,"981 Lakeview St, Dallas, TX 75001" +236158,iPhone,1,700,08/03/19 17:18,"996 Lakeview St, Boston, MA 02215" +236159,AAA Batteries (4-pack),6,2.99,08/19/19 12:25,"268 Church St, Portland, OR 97035" +236160,Lightning Charging Cable,1,14.95,08/12/19 23:01,"106 Park St, Austin, TX 73301" +236161,USB-C Charging Cable,1,11.95,08/04/19 00:28,"14 Lakeview St, Boston, MA 02215" +236162,Wired Headphones,1,11.99,08/03/19 18:26,"794 Sunset St, Los Angeles, CA 90001" +236163,Bose SoundSport Headphones,1,99.99,08/14/19 11:57,"255 9th St, Atlanta, GA 30301" +236164,AAA Batteries (4-pack),1,2.99,08/04/19 19:03,"423 Johnson St, Boston, MA 02215" +236165,AA Batteries (4-pack),1,3.84,08/05/19 10:24,"307 West St, Portland, OR 97035" +236166,27in FHD Monitor,1,149.99,08/08/19 18:17,"239 Chestnut St, Portland, OR 97035" +236167,Apple Airpods Headphones,1,150,08/12/19 10:50,"478 Jackson St, Seattle, WA 98101" +236168,Lightning Charging Cable,1,14.95,08/29/19 10:07,"221 Meadow St, San Francisco, CA 94016" +236169,27in FHD Monitor,1,149.99,08/05/19 16:34,"427 Willow St, Los Angeles, CA 90001" +236170,iPhone,1,700,08/19/19 13:49,"153 Adams St, Portland, OR 97035" +236171,AAA Batteries (4-pack),1,2.99,08/02/19 13:14,"935 Church St, Dallas, TX 75001" +236172,Lightning Charging Cable,1,14.95,08/24/19 06:23,"857 Chestnut St, San Francisco, CA 94016" +236173,Lightning Charging Cable,1,14.95,08/04/19 09:07,"299 Willow St, Seattle, WA 98101" +236174,AA Batteries (4-pack),1,3.84,08/04/19 11:16,"353 Cedar St, San Francisco, CA 94016" +236175,Wired Headphones,1,11.99,08/28/19 21:25,"615 6th St, New York City, NY 10001" +236176,Bose SoundSport Headphones,2,99.99,08/21/19 08:33,"346 Forest St, San Francisco, CA 94016" +236177,USB-C Charging Cable,1,11.95,08/26/19 13:19,"885 Park St, Seattle, WA 98101" +236178,AAA Batteries (4-pack),1,2.99,08/09/19 00:31,"954 7th St, Seattle, WA 98101" +236179,Lightning Charging Cable,1,14.95,08/23/19 00:12,"927 6th St, Seattle, WA 98101" +236180,Lightning Charging Cable,1,14.95,08/22/19 12:17,"658 Church St, New York City, NY 10001" +236181,Bose SoundSport Headphones,1,99.99,08/09/19 17:17,"879 Dogwood St, Los Angeles, CA 90001" +236182,AAA Batteries (4-pack),2,2.99,08/30/19 12:55,"413 North St, Los Angeles, CA 90001" +236182,34in Ultrawide Monitor,1,379.99,08/30/19 12:55,"413 North St, Los Angeles, CA 90001" +236183,AAA Batteries (4-pack),1,2.99,08/11/19 12:09,"35 Center St, San Francisco, CA 94016" +236184,27in FHD Monitor,1,149.99,08/16/19 13:40,"509 7th St, San Francisco, CA 94016" +236185,27in FHD Monitor,1,149.99,08/24/19 18:55,"906 13th St, New York City, NY 10001" +236186,Bose SoundSport Headphones,1,99.99,08/05/19 11:17,"860 Church St, Boston, MA 02215" +236187,USB-C Charging Cable,1,11.95,08/17/19 20:56,"186 Chestnut St, Portland, OR 97035" +236188,Macbook Pro Laptop,1,1700,08/22/19 21:21,"24 North St, Seattle, WA 98101" +236189,USB-C Charging Cable,1,11.95,08/02/19 22:14,"190 8th St, Dallas, TX 75001" +236190,27in FHD Monitor,1,149.99,08/06/19 18:46,"190 Forest St, Atlanta, GA 30301" +236191,Wired Headphones,1,11.99,08/10/19 17:28,"88 Ridge St, Los Angeles, CA 90001" +236192,27in 4K Gaming Monitor,1,389.99,08/04/19 23:05,"585 South St, San Francisco, CA 94016" +236193,20in Monitor,1,109.99,08/14/19 16:48,"634 Hill St, New York City, NY 10001" +236194,Wired Headphones,1,11.99,08/08/19 14:36,"502 South St, San Francisco, CA 94016" +236195,AA Batteries (4-pack),1,3.84,08/10/19 18:10,"167 Hill St, Los Angeles, CA 90001" +236196,AA Batteries (4-pack),1,3.84,08/30/19 15:06,"132 9th St, Seattle, WA 98101" +236197,AA Batteries (4-pack),1,3.84,08/29/19 21:39,"326 Jefferson St, San Francisco, CA 94016" +236198,27in FHD Monitor,1,149.99,08/13/19 18:09,"675 Lincoln St, Boston, MA 02215" +236199,Flatscreen TV,1,300,08/31/19 23:02,"353 Madison St, Los Angeles, CA 90001" +236200,USB-C Charging Cable,1,11.95,08/27/19 18:03,"328 Walnut St, Dallas, TX 75001" +236201,20in Monitor,1,109.99,08/14/19 18:07,"167 14th St, Dallas, TX 75001" +236202,Apple Airpods Headphones,1,150,08/09/19 17:32,"577 Jefferson St, New York City, NY 10001" +236203,20in Monitor,1,109.99,08/11/19 17:48,"964 Dogwood St, Portland, OR 97035" +236204,Flatscreen TV,1,300,08/26/19 20:31,"75 Pine St, Boston, MA 02215" +236205,Bose SoundSport Headphones,1,99.99,08/31/19 10:19,"674 Cedar St, Los Angeles, CA 90001" +236206,Apple Airpods Headphones,1,150,08/12/19 20:08,"102 Cedar St, Los Angeles, CA 90001" +236207,AAA Batteries (4-pack),3,2.99,08/15/19 17:00,"622 Willow St, Dallas, TX 75001" +236208,Apple Airpods Headphones,1,150,08/30/19 13:38,"360 14th St, Atlanta, GA 30301" +236209,Apple Airpods Headphones,1,150,08/01/19 19:15,"677 South St, San Francisco, CA 94016" +236210,Apple Airpods Headphones,1,150,08/10/19 23:14,"376 5th St, Dallas, TX 75001" +236211,AA Batteries (4-pack),1,3.84,08/18/19 10:28,"446 Highland St, Dallas, TX 75001" +236212,Wired Headphones,1,11.99,08/02/19 19:29,"634 Willow St, Atlanta, GA 30301" +236213,Bose SoundSport Headphones,1,99.99,08/07/19 22:51,"583 North St, San Francisco, CA 94016" +236214,27in 4K Gaming Monitor,1,389.99,08/24/19 07:58,"655 South St, San Francisco, CA 94016" +236215,20in Monitor,1,109.99,08/01/19 13:06,"853 Dogwood St, Portland, ME 04101" +236216,AA Batteries (4-pack),3,3.84,08/25/19 15:07,"949 Highland St, New York City, NY 10001" +236217,Lightning Charging Cable,1,14.95,08/25/19 01:41,"474 Cedar St, San Francisco, CA 94016" +236218,Lightning Charging Cable,2,14.95,08/12/19 13:40,"501 Cherry St, Los Angeles, CA 90001" +236219,USB-C Charging Cable,1,11.95,08/12/19 21:06,"482 8th St, Dallas, TX 75001" +236220,34in Ultrawide Monitor,1,379.99,08/26/19 15:37,"85 Jefferson St, Boston, MA 02215" +236221,LG Dryer,1,600.0,08/17/19 10:33,"343 10th St, Atlanta, GA 30301" +236222,iPhone,1,700,08/12/19 13:15,"444 4th St, Boston, MA 02215" +236223,Flatscreen TV,1,300,08/02/19 22:13,"118 Wilson St, New York City, NY 10001" +236223,Bose SoundSport Headphones,1,99.99,08/02/19 22:13,"118 Wilson St, New York City, NY 10001" +236224,USB-C Charging Cable,1,11.95,08/04/19 21:30,"880 6th St, San Francisco, CA 94016" +236225,Wired Headphones,1,11.99,08/15/19 09:08,"77 13th St, Boston, MA 02215" +236226,AAA Batteries (4-pack),1,2.99,08/30/19 13:49,"443 10th St, San Francisco, CA 94016" +236227,Lightning Charging Cable,1,14.95,08/23/19 08:54,"76 Lake St, New York City, NY 10001" +236228,Macbook Pro Laptop,1,1700,08/07/19 12:00,"63 5th St, Atlanta, GA 30301" +236229,AA Batteries (4-pack),1,3.84,08/13/19 22:14,"148 Elm St, Los Angeles, CA 90001" +236230,Bose SoundSport Headphones,1,99.99,08/20/19 09:16,"47 Washington St, San Francisco, CA 94016" +236231,Wired Headphones,1,11.99,08/06/19 16:49,"486 Pine St, San Francisco, CA 94016" +236232,USB-C Charging Cable,1,11.95,08/21/19 00:51,"620 Meadow St, New York City, NY 10001" +236233,AA Batteries (4-pack),1,3.84,08/10/19 10:23,"273 Sunset St, San Francisco, CA 94016" +236234,AAA Batteries (4-pack),1,2.99,08/13/19 20:07,"603 Washington St, New York City, NY 10001" +236235,AAA Batteries (4-pack),1,2.99,08/18/19 18:30,"365 West St, Austin, TX 73301" +236236,AA Batteries (4-pack),1,3.84,08/18/19 18:29,"65 Center St, San Francisco, CA 94016" +236237,USB-C Charging Cable,1,11.95,08/29/19 22:27,"893 Jefferson St, San Francisco, CA 94016" +236238,Lightning Charging Cable,1,14.95,08/04/19 10:02,"118 Wilson St, Seattle, WA 98101" +236239,Wired Headphones,1,11.99,08/14/19 20:56,"667 Main St, Atlanta, GA 30301" +236240,Wired Headphones,1,11.99,08/31/19 06:52,"3 14th St, Boston, MA 02215" +236241,27in FHD Monitor,1,149.99,08/29/19 11:17,"4 South St, Los Angeles, CA 90001" +236242,Macbook Pro Laptop,1,1700,08/26/19 12:48,"807 Highland St, San Francisco, CA 94016" +236243,AA Batteries (4-pack),2,3.84,08/31/19 15:01,"18 5th St, Atlanta, GA 30301" +236244,Bose SoundSport Headphones,1,99.99,08/25/19 20:43,"482 13th St, San Francisco, CA 94016" +236245,Apple Airpods Headphones,1,150,08/24/19 16:09,"823 Lakeview St, Los Angeles, CA 90001" +236246,AA Batteries (4-pack),2,3.84,08/29/19 18:57,"297 Church St, Boston, MA 02215" +236247,Apple Airpods Headphones,1,150,08/13/19 14:51,"344 Main St, San Francisco, CA 94016" +236248,34in Ultrawide Monitor,1,379.99,08/31/19 18:39,"86 6th St, Seattle, WA 98101" +236249,34in Ultrawide Monitor,1,379.99,08/05/19 15:29,"691 12th St, San Francisco, CA 94016" +236250,27in FHD Monitor,1,149.99,08/17/19 16:43,"680 10th St, Austin, TX 73301" +236251,AA Batteries (4-pack),1,3.84,08/15/19 21:44,"319 River St, San Francisco, CA 94016" +236252,Google Phone,1,600,08/03/19 09:44,"332 12th St, San Francisco, CA 94016" +236252,USB-C Charging Cable,1,11.95,08/03/19 09:44,"332 12th St, San Francisco, CA 94016" +236253,AAA Batteries (4-pack),1,2.99,08/22/19 13:47,"635 Sunset St, Los Angeles, CA 90001" +236254,Apple Airpods Headphones,1,150,08/29/19 08:02,"995 Cedar St, San Francisco, CA 94016" +236255,USB-C Charging Cable,1,11.95,08/21/19 07:48,"655 Spruce St, Atlanta, GA 30301" +236256,Apple Airpods Headphones,1,150,08/04/19 21:53,"557 Johnson St, Los Angeles, CA 90001" +236257,Wired Headphones,1,11.99,08/28/19 10:23,"419 2nd St, Dallas, TX 75001" +236258,Flatscreen TV,1,300,08/15/19 09:32,"622 1st St, Boston, MA 02215" +236259,Bose SoundSport Headphones,1,99.99,08/06/19 16:17,"706 Center St, San Francisco, CA 94016" +236260,AA Batteries (4-pack),1,3.84,08/01/19 15:58,"201 Lakeview St, Austin, TX 73301" +236261,iPhone,1,700,08/28/19 13:19,"242 South St, Seattle, WA 98101" +236262,AAA Batteries (4-pack),1,2.99,08/04/19 19:04,"875 10th St, Dallas, TX 75001" +236263,Google Phone,1,600,08/06/19 12:10,"896 2nd St, San Francisco, CA 94016" +236264,Wired Headphones,1,11.99,08/11/19 18:13,"396 Jackson St, San Francisco, CA 94016" +236265,Lightning Charging Cable,1,14.95,08/06/19 19:12,"892 Lakeview St, Portland, OR 97035" +236266,Lightning Charging Cable,2,14.95,08/02/19 18:41,"868 13th St, Los Angeles, CA 90001" +236267,AAA Batteries (4-pack),1,2.99,08/11/19 20:40,"66 6th St, Boston, MA 02215" +236268,AAA Batteries (4-pack),1,2.99,08/13/19 20:44,"130 Cedar St, San Francisco, CA 94016" +236269,Wired Headphones,1,11.99,08/16/19 21:23,"715 Meadow St, Dallas, TX 75001" +236270,Bose SoundSport Headphones,1,99.99,08/29/19 14:11,"18 Church St, Los Angeles, CA 90001" +236271,34in Ultrawide Monitor,1,379.99,08/21/19 02:53,"50 Cherry St, Dallas, TX 75001" +236272,Google Phone,1,600,08/14/19 14:26,"301 5th St, New York City, NY 10001" +236273,Apple Airpods Headphones,1,150,08/21/19 16:55,"977 Meadow St, Austin, TX 73301" +236274,Wired Headphones,2,11.99,08/11/19 08:51,"902 Lake St, Dallas, TX 75001" +236275,Apple Airpods Headphones,1,150,08/29/19 21:13,"275 Hickory St, Atlanta, GA 30301" +236276,Macbook Pro Laptop,1,1700,08/01/19 11:16,"969 Chestnut St, San Francisco, CA 94016" +236277,Wired Headphones,1,11.99,08/14/19 16:51,"809 Jackson St, Austin, TX 73301" +236278,Wired Headphones,1,11.99,08/25/19 21:08,"822 13th St, Los Angeles, CA 90001" +236279,AAA Batteries (4-pack),2,2.99,08/05/19 21:11,"151 14th St, Portland, OR 97035" +236280,27in FHD Monitor,1,149.99,08/10/19 09:30,"307 Willow St, Dallas, TX 75001" +236281,Lightning Charging Cable,1,14.95,08/17/19 12:20,"996 4th St, Austin, TX 73301" +236282,Bose SoundSport Headphones,1,99.99,08/03/19 18:56,"158 Lake St, New York City, NY 10001" +236283,AAA Batteries (4-pack),1,2.99,08/19/19 19:21,"190 2nd St, Portland, ME 04101" +236284,AAA Batteries (4-pack),1,2.99,08/10/19 10:58,"738 Pine St, Austin, TX 73301" +236285,Apple Airpods Headphones,1,150,08/29/19 13:52,"953 Jackson St, San Francisco, CA 94016" +236286,Lightning Charging Cable,2,14.95,08/20/19 10:23,"457 Adams St, Los Angeles, CA 90001" +236287,USB-C Charging Cable,1,11.95,08/19/19 08:44,"544 2nd St, Los Angeles, CA 90001" +236288,Lightning Charging Cable,1,14.95,08/10/19 21:54,"523 Ridge St, San Francisco, CA 94016" +236289,27in FHD Monitor,1,149.99,08/18/19 10:03,"144 Walnut St, New York City, NY 10001" +236290,Wired Headphones,1,11.99,08/08/19 11:47,"483 Maple St, Atlanta, GA 30301" +236291,USB-C Charging Cable,1,11.95,08/29/19 08:13,"705 6th St, San Francisco, CA 94016" +236292,Apple Airpods Headphones,1,150,08/29/19 10:48,"874 Ridge St, Portland, ME 04101" +236293,AA Batteries (4-pack),1,3.84,08/10/19 18:06,"200 Sunset St, Atlanta, GA 30301" +236294,Macbook Pro Laptop,1,1700,08/04/19 20:29,"321 Wilson St, Los Angeles, CA 90001" +236295,Bose SoundSport Headphones,1,99.99,08/05/19 10:34,"62 Lakeview St, Los Angeles, CA 90001" +236296,Wired Headphones,1,11.99,08/19/19 12:51,"564 2nd St, San Francisco, CA 94016" +236297,AA Batteries (4-pack),1,3.84,08/18/19 23:40,"747 4th St, Portland, OR 97035" +236298,USB-C Charging Cable,2,11.95,08/05/19 08:32,"512 5th St, New York City, NY 10001" +236299,34in Ultrawide Monitor,1,379.99,08/11/19 18:17,"728 Hill St, Los Angeles, CA 90001" +236300,Macbook Pro Laptop,1,1700,08/30/19 20:11,"155 11th St, San Francisco, CA 94016" +236301,AA Batteries (4-pack),1,3.84,08/28/19 08:14,"770 Johnson St, Los Angeles, CA 90001" +236302,AA Batteries (4-pack),1,3.84,08/26/19 15:33,"679 Spruce St, Los Angeles, CA 90001" +236303,USB-C Charging Cable,2,11.95,08/15/19 14:19,"969 13th St, Dallas, TX 75001" +236304,Google Phone,1,600,08/10/19 11:58,"796 Pine St, San Francisco, CA 94016" +236305,AA Batteries (4-pack),1,3.84,08/07/19 12:45,"903 Maple St, New York City, NY 10001" +236306,USB-C Charging Cable,1,11.95,08/10/19 22:55,"98 Willow St, San Francisco, CA 94016" +236307,20in Monitor,1,109.99,08/12/19 13:24,"186 Pine St, Seattle, WA 98101" +236308,Wired Headphones,1,11.99,08/01/19 12:38,"703 West St, Boston, MA 02215" +236309,USB-C Charging Cable,1,11.95,08/17/19 08:49,"867 Park St, San Francisco, CA 94016" +236310,27in 4K Gaming Monitor,1,389.99,08/06/19 18:29,"688 Jefferson St, New York City, NY 10001" +236311,Google Phone,1,600,08/27/19 08:23,"949 Madison St, Los Angeles, CA 90001" +236312,AA Batteries (4-pack),1,3.84,08/23/19 19:44,"651 Ridge St, New York City, NY 10001" +236313,Lightning Charging Cable,1,14.95,08/20/19 18:58,"630 Washington St, San Francisco, CA 94016" +236314,Flatscreen TV,1,300,08/07/19 23:19,"712 10th St, Austin, TX 73301" +236315,AA Batteries (4-pack),1,3.84,08/26/19 16:44,"436 Adams St, Dallas, TX 75001" +236316,Lightning Charging Cable,1,14.95,08/23/19 00:21,"977 Ridge St, Atlanta, GA 30301" +236317,Lightning Charging Cable,1,14.95,08/17/19 20:38,"838 2nd St, Atlanta, GA 30301" +236318,USB-C Charging Cable,1,11.95,08/29/19 18:35,"454 Center St, Seattle, WA 98101" +236319,USB-C Charging Cable,2,11.95,08/17/19 16:29,"142 Walnut St, Austin, TX 73301" +236320,LG Dryer,1,600.0,08/22/19 07:01,"182 Dogwood St, Los Angeles, CA 90001" +236321,Bose SoundSport Headphones,1,99.99,08/30/19 11:54,"899 Ridge St, Los Angeles, CA 90001" +236322,Lightning Charging Cable,1,14.95,08/29/19 20:10,"294 Ridge St, New York City, NY 10001" +236323,USB-C Charging Cable,1,11.95,08/02/19 20:29,"716 9th St, San Francisco, CA 94016" +236324,AAA Batteries (4-pack),2,2.99,08/31/19 12:12,"814 Johnson St, Boston, MA 02215" +236325,Lightning Charging Cable,1,14.95,08/30/19 01:01,"113 Lake St, San Francisco, CA 94016" +236326,AAA Batteries (4-pack),1,2.99,08/26/19 17:12,"912 Pine St, Dallas, TX 75001" +236327,AAA Batteries (4-pack),1,2.99,08/04/19 21:12,"241 Hickory St, Portland, OR 97035" +236328,AA Batteries (4-pack),1,3.84,08/17/19 17:34,"400 4th St, San Francisco, CA 94016" +236329,Wired Headphones,1,11.99,08/28/19 09:15,"713 River St, San Francisco, CA 94016" +236330,Flatscreen TV,1,300,08/31/19 15:49,"141 Meadow St, New York City, NY 10001" +236331,Bose SoundSport Headphones,1,99.99,08/17/19 18:07,"643 Lake St, Portland, OR 97035" +236332,27in FHD Monitor,1,149.99,08/25/19 11:44,"570 4th St, New York City, NY 10001" +236333,34in Ultrawide Monitor,1,379.99,08/03/19 00:37,"15 Ridge St, Atlanta, GA 30301" +236334,AA Batteries (4-pack),1,3.84,08/17/19 00:17,"68 North St, San Francisco, CA 94016" +236335,27in FHD Monitor,1,149.99,08/30/19 20:39,"522 Ridge St, Portland, OR 97035" +236336,USB-C Charging Cable,1,11.95,08/31/19 17:12,"166 Spruce St, Los Angeles, CA 90001" +236337,Flatscreen TV,1,300,08/22/19 15:31,"204 Cherry St, Portland, ME 04101" +236338,ThinkPad Laptop,1,999.99,08/15/19 21:17,"931 Lincoln St, Dallas, TX 75001" +236339,20in Monitor,1,109.99,08/18/19 21:50,"52 Highland St, Los Angeles, CA 90001" +236340,Google Phone,1,600,08/05/19 21:18,"6 9th St, Dallas, TX 75001" +236341,USB-C Charging Cable,1,11.95,08/25/19 22:35,"497 5th St, New York City, NY 10001" +236342,ThinkPad Laptop,1,999.99,08/29/19 18:26,"415 Washington St, Seattle, WA 98101" +236343,ThinkPad Laptop,1,999.99,08/14/19 12:56,"204 5th St, Portland, OR 97035" +236344,20in Monitor,1,109.99,08/13/19 22:16,"334 1st St, Portland, ME 04101" +236345,Lightning Charging Cable,1,14.95,08/05/19 17:35,"395 Elm St, San Francisco, CA 94016" +236346,iPhone,1,700,08/08/19 21:40,"726 Lincoln St, San Francisco, CA 94016" +236347,Wired Headphones,1,11.99,08/20/19 17:02,"13 Walnut St, Portland, OR 97035" +236348,Lightning Charging Cable,1,14.95,08/05/19 18:28,"569 South St, San Francisco, CA 94016" +236349,Lightning Charging Cable,1,14.95,08/16/19 12:53,"633 Meadow St, Austin, TX 73301" +236350,iPhone,1,700,08/25/19 12:45,"49 Hill St, San Francisco, CA 94016" +236351,iPhone,1,700,08/28/19 11:12,"389 4th St, Los Angeles, CA 90001" +236352,USB-C Charging Cable,1,11.95,08/04/19 12:58,"540 Ridge St, San Francisco, CA 94016" +236353,AA Batteries (4-pack),1,3.84,08/15/19 23:35,"695 Center St, Los Angeles, CA 90001" +236354,USB-C Charging Cable,1,11.95,08/30/19 11:16,"456 14th St, San Francisco, CA 94016" +236355,Apple Airpods Headphones,1,150,08/04/19 17:19,"78 11th St, Atlanta, GA 30301" +236356,27in 4K Gaming Monitor,1,389.99,08/14/19 16:31,"658 Jefferson St, Atlanta, GA 30301" +236357,Wired Headphones,1,11.99,08/28/19 17:27,"617 Jackson St, Atlanta, GA 30301" +236358,USB-C Charging Cable,1,11.95,08/12/19 10:41,"710 9th St, New York City, NY 10001" +236358,27in FHD Monitor,1,149.99,08/12/19 10:41,"710 9th St, New York City, NY 10001" +,,,,, +236359,Lightning Charging Cable,1,14.95,08/06/19 13:55,"611 Dogwood St, New York City, NY 10001" +236360,AA Batteries (4-pack),1,3.84,08/03/19 21:52,"125 11th St, Boston, MA 02215" +236361,USB-C Charging Cable,1,11.95,08/29/19 16:08,"267 Elm St, New York City, NY 10001" +236362,Apple Airpods Headphones,1,150,08/27/19 22:27,"659 Lake St, Los Angeles, CA 90001" +236363,Apple Airpods Headphones,1,150,08/13/19 14:20,"875 10th St, Portland, OR 97035" +236364,AA Batteries (4-pack),1,3.84,08/03/19 16:17,"216 4th St, Seattle, WA 98101" +236365,Flatscreen TV,1,300,08/14/19 15:02,"516 Center St, Los Angeles, CA 90001" +236366,Wired Headphones,1,11.99,08/31/19 22:24,"471 Johnson St, Boston, MA 02215" +236367,AA Batteries (4-pack),1,3.84,08/03/19 13:34,"928 Jackson St, San Francisco, CA 94016" +236368,AA Batteries (4-pack),3,3.84,08/03/19 17:31,"817 11th St, Los Angeles, CA 90001" +236369,Google Phone,1,600,08/07/19 22:52,"556 Maple St, New York City, NY 10001" +236370,Google Phone,1,600,08/18/19 21:34,"301 Ridge St, San Francisco, CA 94016" +236370,USB-C Charging Cable,1,11.95,08/18/19 21:34,"301 Ridge St, San Francisco, CA 94016" +236370,Wired Headphones,1,11.99,08/18/19 21:34,"301 Ridge St, San Francisco, CA 94016" +236371,AA Batteries (4-pack),1,3.84,08/11/19 02:33,"497 Park St, Austin, TX 73301" +236372,Macbook Pro Laptop,1,1700,08/11/19 11:20,"909 Highland St, Los Angeles, CA 90001" +236373,AAA Batteries (4-pack),1,2.99,08/10/19 00:57,"276 Sunset St, Los Angeles, CA 90001" +236374,AA Batteries (4-pack),1,3.84,08/02/19 20:41,"653 Hill St, New York City, NY 10001" +236375,Lightning Charging Cable,1,14.95,08/02/19 07:29,"313 Spruce St, San Francisco, CA 94016" +236376,USB-C Charging Cable,1,11.95,08/26/19 10:33,"215 Church St, Atlanta, GA 30301" +236377,Lightning Charging Cable,1,14.95,08/23/19 23:47,"961 4th St, Austin, TX 73301" +236378,27in FHD Monitor,1,149.99,08/26/19 10:03,"531 Pine St, Austin, TX 73301" +236379,27in FHD Monitor,1,149.99,08/07/19 20:33,"575 North St, Los Angeles, CA 90001" +236380,AAA Batteries (4-pack),1,2.99,08/10/19 20:38,"890 Church St, Dallas, TX 75001" +236381,ThinkPad Laptop,1,999.99,08/11/19 19:09,"466 South St, San Francisco, CA 94016" +236382,Flatscreen TV,1,300,08/23/19 19:57,"459 Jefferson St, Boston, MA 02215" +236383,Lightning Charging Cable,1,14.95,08/31/19 16:24,"402 11th St, San Francisco, CA 94016" +236384,LG Washing Machine,1,600.0,08/26/19 06:41,"542 Madison St, New York City, NY 10001" +236385,Apple Airpods Headphones,1,150,08/23/19 11:09,"933 2nd St, San Francisco, CA 94016" +236386,Lightning Charging Cable,2,14.95,08/21/19 11:39,"104 Main St, Dallas, TX 75001" +236387,Lightning Charging Cable,1,14.95,08/16/19 09:41,"931 Maple St, San Francisco, CA 94016" +236388,USB-C Charging Cable,1,11.95,08/25/19 22:39,"939 Cherry St, Seattle, WA 98101" +236389,Wired Headphones,1,11.99,08/03/19 11:34,"288 Chestnut St, Atlanta, GA 30301" +236390,AAA Batteries (4-pack),1,2.99,08/04/19 19:48,"255 Walnut St, San Francisco, CA 94016" +236391,20in Monitor,1,109.99,08/28/19 09:33,"696 1st St, Los Angeles, CA 90001" +236392,AA Batteries (4-pack),1,3.84,08/16/19 19:16,"603 Elm St, New York City, NY 10001" +236393,USB-C Charging Cable,1,11.95,08/17/19 09:52,"791 Cedar St, San Francisco, CA 94016" +,,,,, +236394,Lightning Charging Cable,1,14.95,08/07/19 20:38,"69 Sunset St, Dallas, TX 75001" +236395,Apple Airpods Headphones,1,150,08/11/19 21:54,"841 Chestnut St, Boston, MA 02215" +236396,Macbook Pro Laptop,1,1700,08/14/19 19:54,"54 Park St, Los Angeles, CA 90001" +236397,iPhone,1,700,08/11/19 18:50,"557 Forest St, Atlanta, GA 30301" +236398,USB-C Charging Cable,1,11.95,08/15/19 11:37,"757 Sunset St, San Francisco, CA 94016" +236399,Wired Headphones,1,11.99,08/21/19 12:05,"572 Madison St, Atlanta, GA 30301" +236400,Macbook Pro Laptop,1,1700,08/10/19 13:18,"73 Wilson St, Dallas, TX 75001" +236401,Bose SoundSport Headphones,1,99.99,08/08/19 18:09,"620 2nd St, Austin, TX 73301" +236402,27in 4K Gaming Monitor,1,389.99,08/20/19 07:52,"649 Walnut St, Dallas, TX 75001" +236403,Lightning Charging Cable,1,14.95,08/20/19 13:20,"280 Madison St, San Francisco, CA 94016" +236404,Bose SoundSport Headphones,1,99.99,08/30/19 17:09,"913 Highland St, Seattle, WA 98101" +236405,Bose SoundSport Headphones,1,99.99,08/10/19 16:12,"381 11th St, San Francisco, CA 94016" +236406,AAA Batteries (4-pack),1,2.99,08/02/19 16:40,"97 5th St, New York City, NY 10001" +236407,Wired Headphones,1,11.99,08/18/19 16:41,"278 13th St, Atlanta, GA 30301" +236408,Flatscreen TV,1,300,08/25/19 11:50,"858 11th St, San Francisco, CA 94016" +236409,AAA Batteries (4-pack),1,2.99,08/17/19 18:56,"364 Johnson St, Atlanta, GA 30301" +236410,AA Batteries (4-pack),1,3.84,08/15/19 23:06,"169 Madison St, New York City, NY 10001" +236411,Macbook Pro Laptop,1,1700,08/09/19 13:12,"753 Madison St, San Francisco, CA 94016" +236412,Lightning Charging Cable,1,14.95,08/24/19 06:49,"951 1st St, Boston, MA 02215" +236413,Bose SoundSport Headphones,1,99.99,08/24/19 18:49,"206 Jackson St, San Francisco, CA 94016" +236413,34in Ultrawide Monitor,1,379.99,08/24/19 18:49,"206 Jackson St, San Francisco, CA 94016" +236414,Apple Airpods Headphones,1,150,08/24/19 15:33,"583 Chestnut St, San Francisco, CA 94016" +236415,USB-C Charging Cable,1,11.95,08/03/19 19:59,"731 Meadow St, Atlanta, GA 30301" +236416,AA Batteries (4-pack),3,3.84,08/31/19 15:11,"332 Hill St, Atlanta, GA 30301" +236417,Apple Airpods Headphones,1,150,08/16/19 13:17,"748 Walnut St, San Francisco, CA 94016" +236418,LG Washing Machine,1,600.0,08/02/19 20:07,"519 Dogwood St, San Francisco, CA 94016" +236419,Bose SoundSport Headphones,1,99.99,08/31/19 11:29,"323 Elm St, New York City, NY 10001" +236420,20in Monitor,1,109.99,08/20/19 20:51,"66 Maple St, Austin, TX 73301" +236421,Lightning Charging Cable,1,14.95,08/31/19 22:16,"719 Cherry St, San Francisco, CA 94016" +236422,Lightning Charging Cable,1,14.95,08/07/19 18:31,"147 Park St, Boston, MA 02215" +236423,USB-C Charging Cable,1,11.95,08/22/19 13:07,"518 Cedar St, San Francisco, CA 94016" +236424,AAA Batteries (4-pack),1,2.99,08/28/19 00:12,"516 Cherry St, San Francisco, CA 94016" +236425,AA Batteries (4-pack),1,3.84,08/22/19 12:30,"646 Adams St, New York City, NY 10001" +236426,34in Ultrawide Monitor,1,379.99,08/02/19 17:45,"212 Forest St, Portland, OR 97035" +236427,Wired Headphones,1,11.99,08/29/19 19:05,"499 7th St, Boston, MA 02215" +236428,AA Batteries (4-pack),1,3.84,08/09/19 12:28,"490 River St, Dallas, TX 75001" +236429,Apple Airpods Headphones,1,150,08/15/19 12:34,"376 Center St, Dallas, TX 75001" +236430,20in Monitor,1,109.99,08/02/19 16:53,"280 Hill St, San Francisco, CA 94016" +236431,Vareebadd Phone,1,400,08/23/19 20:24,"850 Cherry St, New York City, NY 10001" +236432,AA Batteries (4-pack),1,3.84,08/29/19 12:42,"830 6th St, New York City, NY 10001" +236433,Wired Headphones,1,11.99,08/03/19 23:39,"178 Jefferson St, Atlanta, GA 30301" +236434,ThinkPad Laptop,1,999.99,08/28/19 09:27,"979 Center St, Los Angeles, CA 90001" +236435,AAA Batteries (4-pack),1,2.99,08/19/19 17:09,"140 5th St, Portland, ME 04101" +236436,Wired Headphones,1,11.99,08/11/19 17:30,"741 Park St, Dallas, TX 75001" +236437,Lightning Charging Cable,1,14.95,08/19/19 22:36,"621 Hill St, Los Angeles, CA 90001" +236438,USB-C Charging Cable,1,11.95,08/14/19 06:13,"337 5th St, Los Angeles, CA 90001" +236439,20in Monitor,1,109.99,08/12/19 00:10,"568 11th St, Dallas, TX 75001" +236440,Bose SoundSport Headphones,1,99.99,08/05/19 21:53,"75 Dogwood St, Boston, MA 02215" +236441,AA Batteries (4-pack),1,3.84,08/30/19 10:20,"122 Maple St, San Francisco, CA 94016" +236442,USB-C Charging Cable,1,11.95,08/27/19 14:56,"984 Willow St, Austin, TX 73301" +236443,USB-C Charging Cable,1,11.95,08/07/19 17:40,"702 6th St, Boston, MA 02215" +236444,Wired Headphones,1,11.99,08/29/19 17:27,"249 Cedar St, Atlanta, GA 30301" +236445,Bose SoundSport Headphones,1,99.99,08/31/19 09:17,"258 Hill St, San Francisco, CA 94016" +236446,27in 4K Gaming Monitor,1,389.99,08/24/19 13:48,"691 North St, Los Angeles, CA 90001" +236447,USB-C Charging Cable,1,11.95,08/22/19 14:54,"679 Forest St, New York City, NY 10001" +236448,34in Ultrawide Monitor,1,379.99,08/24/19 09:39,"123 5th St, New York City, NY 10001" +236449,iPhone,1,700,08/02/19 17:22,"170 Johnson St, Portland, OR 97035" +236450,Lightning Charging Cable,1,14.95,08/17/19 13:38,"541 11th St, Portland, OR 97035" +236451,AAA Batteries (4-pack),1,2.99,08/07/19 20:38,"960 Pine St, New York City, NY 10001" +236452,iPhone,1,700,08/16/19 19:21,"18 Jackson St, Los Angeles, CA 90001" +236453,AA Batteries (4-pack),1,3.84,08/27/19 10:13,"661 2nd St, San Francisco, CA 94016" +236454,AA Batteries (4-pack),1,3.84,08/09/19 21:41,"899 6th St, Dallas, TX 75001" +236455,AAA Batteries (4-pack),1,2.99,08/20/19 14:49,"500 Hickory St, New York City, NY 10001" +236456,Flatscreen TV,1,300,08/12/19 22:37,"675 Elm St, San Francisco, CA 94016" +236457,USB-C Charging Cable,2,11.95,08/07/19 20:33,"83 Madison St, Dallas, TX 75001" +236458,Macbook Pro Laptop,1,1700,08/16/19 13:28,"945 Church St, Boston, MA 02215" +236459,Wired Headphones,1,11.99,08/02/19 14:32,"626 Elm St, Los Angeles, CA 90001" +236460,Bose SoundSport Headphones,1,99.99,08/02/19 15:07,"149 1st St, San Francisco, CA 94016" +236461,Apple Airpods Headphones,1,150,08/17/19 19:31,"146 Adams St, Los Angeles, CA 90001" +236462,Bose SoundSport Headphones,1,99.99,08/06/19 00:33,"478 Wilson St, Austin, TX 73301" +236463,Apple Airpods Headphones,1,150,08/27/19 18:52,"354 Church St, Atlanta, GA 30301" +236464,Lightning Charging Cable,2,14.95,08/22/19 07:29,"153 North St, Dallas, TX 75001" +236465,iPhone,1,700,08/04/19 18:21,"39 Lincoln St, Seattle, WA 98101" +236466,34in Ultrawide Monitor,1,379.99,08/20/19 15:50,"428 Elm St, Portland, OR 97035" +236467,Lightning Charging Cable,1,14.95,08/10/19 16:56,"978 2nd St, Seattle, WA 98101" +236468,Apple Airpods Headphones,1,150,08/25/19 18:08,"603 Church St, San Francisco, CA 94016" +236469,Wired Headphones,1,11.99,08/26/19 00:48,"744 7th St, New York City, NY 10001" +236470,Bose SoundSport Headphones,1,99.99,08/17/19 23:04,"574 Pine St, Seattle, WA 98101" +236471,USB-C Charging Cable,1,11.95,08/01/19 21:28,"646 14th St, San Francisco, CA 94016" +236472,AA Batteries (4-pack),4,3.84,08/16/19 16:03,"758 Park St, Dallas, TX 75001" +236473,Wired Headphones,1,11.99,08/27/19 09:06,"998 10th St, Boston, MA 02215" +236474,Wired Headphones,1,11.99,08/11/19 19:21,"979 Center St, San Francisco, CA 94016" +236475,Google Phone,1,600,08/13/19 19:39,"32 River St, New York City, NY 10001" +236476,USB-C Charging Cable,1,11.95,08/19/19 23:28,"677 Cedar St, Dallas, TX 75001" +236477,AA Batteries (4-pack),1,3.84,08/23/19 09:40,"227 Walnut St, New York City, NY 10001" +236478,AAA Batteries (4-pack),1,2.99,08/30/19 13:00,"851 Jefferson St, Los Angeles, CA 90001" +236479,USB-C Charging Cable,1,11.95,08/14/19 22:01,"767 1st St, Los Angeles, CA 90001" +236480,AAA Batteries (4-pack),1,2.99,08/08/19 16:56,"351 Chestnut St, New York City, NY 10001" +236481,Lightning Charging Cable,1,14.95,08/30/19 17:31,"871 North St, Atlanta, GA 30301" +236482,27in FHD Monitor,1,149.99,08/27/19 11:29,"921 13th St, Atlanta, GA 30301" +236483,Bose SoundSport Headphones,1,99.99,08/20/19 07:59,"821 9th St, Los Angeles, CA 90001" +236484,Wired Headphones,1,11.99,08/19/19 20:41,"517 Ridge St, Portland, ME 04101" +236485,Lightning Charging Cable,1,14.95,08/05/19 19:16,"772 Cedar St, Portland, ME 04101" +236486,Apple Airpods Headphones,1,150,08/09/19 12:25,"336 Center St, Atlanta, GA 30301" +236487,Lightning Charging Cable,1,14.95,08/04/19 11:36,"839 River St, San Francisco, CA 94016" +236488,34in Ultrawide Monitor,1,379.99,08/16/19 22:36,"826 6th St, San Francisco, CA 94016" +236489,Wired Headphones,1,11.99,08/09/19 14:14,"837 Forest St, San Francisco, CA 94016" +236490,Bose SoundSport Headphones,1,99.99,08/17/19 14:42,"971 9th St, Los Angeles, CA 90001" +236490,Lightning Charging Cable,1,14.95,08/17/19 14:42,"971 9th St, Los Angeles, CA 90001" +236491,USB-C Charging Cable,1,11.95,08/26/19 12:46,"635 6th St, Portland, ME 04101" +236492,AA Batteries (4-pack),2,3.84,08/30/19 18:54,"150 Sunset St, Seattle, WA 98101" +236493,Apple Airpods Headphones,1,150,08/31/19 20:53,"47 Johnson St, Los Angeles, CA 90001" +236494,AAA Batteries (4-pack),1,2.99,08/05/19 09:02,"637 Washington St, San Francisco, CA 94016" +236495,AA Batteries (4-pack),1,3.84,08/07/19 16:42,"716 9th St, New York City, NY 10001" +236496,USB-C Charging Cable,1,11.95,08/31/19 18:41,"713 Forest St, San Francisco, CA 94016" +236497,Lightning Charging Cable,1,14.95,08/26/19 11:40,"791 West St, New York City, NY 10001" +236498,Wired Headphones,1,11.99,08/26/19 12:12,"15 Spruce St, Dallas, TX 75001" +236499,27in FHD Monitor,1,149.99,08/15/19 22:01,"718 Hickory St, Los Angeles, CA 90001" +236500,Bose SoundSport Headphones,1,99.99,08/30/19 13:51,"985 Willow St, Atlanta, GA 30301" +236501,USB-C Charging Cable,1,11.95,08/07/19 00:05,"787 Lakeview St, New York City, NY 10001" +236501,USB-C Charging Cable,1,11.95,08/07/19 00:05,"787 Lakeview St, New York City, NY 10001" +236502,AAA Batteries (4-pack),1,2.99,08/05/19 22:20,"920 Walnut St, Dallas, TX 75001" +236503,Lightning Charging Cable,1,14.95,08/07/19 14:58,"898 Spruce St, New York City, NY 10001" +236504,27in 4K Gaming Monitor,1,389.99,08/16/19 19:03,"152 8th St, Seattle, WA 98101" +236505,iPhone,1,700,08/07/19 16:43,"168 Lincoln St, Boston, MA 02215" +236506,Flatscreen TV,1,300,08/23/19 10:54,"266 4th St, Boston, MA 02215" +236507,Apple Airpods Headphones,1,150,08/18/19 11:30,"863 7th St, Seattle, WA 98101" +236508,Apple Airpods Headphones,1,150,08/15/19 22:42,"899 Lakeview St, Portland, OR 97035" +236509,USB-C Charging Cable,1,11.95,08/17/19 04:49,"184 Maple St, Dallas, TX 75001" +236509,Lightning Charging Cable,1,14.95,08/17/19 04:49,"184 Maple St, Dallas, TX 75001" +236510,AA Batteries (4-pack),1,3.84,08/07/19 12:34,"7 Cherry St, Dallas, TX 75001" +236511,Lightning Charging Cable,1,14.95,08/10/19 09:53,"559 12th St, Atlanta, GA 30301" +236512,Lightning Charging Cable,1,14.95,08/09/19 16:14,"108 2nd St, Los Angeles, CA 90001" +236513,Apple Airpods Headphones,1,150,08/09/19 08:41,"625 7th St, San Francisco, CA 94016" +236514,AAA Batteries (4-pack),1,2.99,08/03/19 21:19,"355 Wilson St, Dallas, TX 75001" +236515,Lightning Charging Cable,1,14.95,08/16/19 09:47,"326 Jackson St, Portland, OR 97035" +236516,AAA Batteries (4-pack),1,2.99,08/30/19 21:51,"51 Dogwood St, Boston, MA 02215" +236517,Wired Headphones,1,11.99,08/19/19 20:44,"126 11th St, Dallas, TX 75001" +236518,27in FHD Monitor,1,149.99,08/23/19 19:29,"952 7th St, Seattle, WA 98101" +236519,27in 4K Gaming Monitor,1,389.99,08/28/19 17:16,"902 Highland St, San Francisco, CA 94016" +236520,Lightning Charging Cable,1,14.95,08/14/19 14:34,"961 11th St, Seattle, WA 98101" +236521,Lightning Charging Cable,2,14.95,08/07/19 21:30,"344 7th St, Atlanta, GA 30301" +236522,AAA Batteries (4-pack),1,2.99,08/11/19 15:57,"274 6th St, Atlanta, GA 30301" +236523,Lightning Charging Cable,2,14.95,08/10/19 13:24,"202 Church St, Los Angeles, CA 90001" +236524,Google Phone,1,600,08/29/19 11:56,"687 South St, Los Angeles, CA 90001" +236525,Bose SoundSport Headphones,1,99.99,08/13/19 12:31,"175 Lake St, Los Angeles, CA 90001" +236526,AA Batteries (4-pack),3,3.84,08/14/19 10:04,"889 Jackson St, Boston, MA 02215" +236527,AA Batteries (4-pack),1,3.84,08/30/19 16:42,"655 Washington St, Atlanta, GA 30301" +236528,AAA Batteries (4-pack),1,2.99,08/15/19 20:09,"659 Cedar St, New York City, NY 10001" +236529,AA Batteries (4-pack),1,3.84,08/06/19 07:44,"896 9th St, Los Angeles, CA 90001" +236530,34in Ultrawide Monitor,1,379.99,08/05/19 16:47,"61 11th St, Atlanta, GA 30301" +236531,AAA Batteries (4-pack),2,2.99,08/26/19 08:05,"577 Willow St, San Francisco, CA 94016" +236532,Wired Headphones,1,11.99,08/09/19 12:54,"865 12th St, San Francisco, CA 94016" +236533,Apple Airpods Headphones,1,150,08/25/19 00:00,"400 4th St, Austin, TX 73301" +236534,Apple Airpods Headphones,1,150,08/13/19 10:15,"343 11th St, Boston, MA 02215" +236535,iPhone,1,700,08/11/19 10:51,"306 Hill St, Austin, TX 73301" +236536,Lightning Charging Cable,1,14.95,08/07/19 16:33,"315 Forest St, Seattle, WA 98101" +236537,Lightning Charging Cable,1,14.95,08/24/19 17:07,"238 Forest St, Portland, OR 97035" +236538,Lightning Charging Cable,1,14.95,08/12/19 22:09,"460 Dogwood St, Austin, TX 73301" +236539,Wired Headphones,1,11.99,08/30/19 10:48,"839 Spruce St, San Francisco, CA 94016" +236540,USB-C Charging Cable,1,11.95,08/21/19 08:50,"988 11th St, New York City, NY 10001" +236541,Bose SoundSport Headphones,1,99.99,08/16/19 18:40,"757 Church St, Seattle, WA 98101" +236542,LG Washing Machine,1,600.0,08/07/19 15:22,"119 Main St, New York City, NY 10001" +236543,Apple Airpods Headphones,1,150,08/17/19 18:54,"745 1st St, New York City, NY 10001" +236544,AA Batteries (4-pack),1,3.84,08/15/19 19:44,"541 11th St, Dallas, TX 75001" +236545,Google Phone,1,600,08/18/19 22:34,"747 Jefferson St, San Francisco, CA 94016" +236546,Flatscreen TV,1,300,08/07/19 22:22,"390 9th St, New York City, NY 10001" +236547,Lightning Charging Cable,1,14.95,08/09/19 13:59,"260 Center St, Portland, OR 97035" +236548,AA Batteries (4-pack),2,3.84,08/10/19 08:15,"106 Adams St, Portland, OR 97035" +236549,Vareebadd Phone,1,400,08/15/19 10:59,"822 11th St, Portland, OR 97035" +236550,iPhone,1,700,08/07/19 00:06,"342 Cedar St, San Francisco, CA 94016" +236551,Apple Airpods Headphones,1,150,08/31/19 09:07,"223 Maple St, Los Angeles, CA 90001" +236552,Wired Headphones,1,11.99,08/01/19 12:29,"63 Cherry St, New York City, NY 10001" +236553,Lightning Charging Cable,1,14.95,08/15/19 22:00,"695 Park St, Los Angeles, CA 90001" +236554,AAA Batteries (4-pack),1,2.99,08/16/19 20:20,"489 Maple St, Austin, TX 73301" +236555,Apple Airpods Headphones,1,150,08/17/19 13:50,"499 West St, Portland, OR 97035" +236556,Lightning Charging Cable,1,14.95,08/28/19 20:37,"794 Ridge St, Seattle, WA 98101" +236557,AA Batteries (4-pack),1,3.84,08/10/19 19:50,"707 Hickory St, Atlanta, GA 30301" +236558,AA Batteries (4-pack),1,3.84,08/23/19 09:46,"415 Church St, Dallas, TX 75001" +236559,Wired Headphones,1,11.99,08/09/19 18:10,"872 Hickory St, San Francisco, CA 94016" +236560,Wired Headphones,1,11.99,08/19/19 14:32,"265 Willow St, New York City, NY 10001" +236561,LG Washing Machine,1,600.0,08/07/19 08:03,"473 8th St, Los Angeles, CA 90001" +236562,Vareebadd Phone,1,400,08/23/19 12:24,"739 Hill St, Portland, OR 97035" +236563,Lightning Charging Cable,1,14.95,08/31/19 09:18,"692 10th St, Portland, OR 97035" +236564,USB-C Charging Cable,1,11.95,08/25/19 21:05,"72 Wilson St, New York City, NY 10001" +236565,Wired Headphones,1,11.99,08/28/19 10:54,"487 Main St, Portland, OR 97035" +236566,USB-C Charging Cable,1,11.95,08/22/19 13:43,"345 South St, Atlanta, GA 30301" +236567,AA Batteries (4-pack),1,3.84,08/27/19 20:08,"696 Adams St, San Francisco, CA 94016" +236568,USB-C Charging Cable,1,11.95,08/09/19 22:58,"88 4th St, Austin, TX 73301" +236569,20in Monitor,1,109.99,08/01/19 13:22,"880 Sunset St, Boston, MA 02215" +236570,Lightning Charging Cable,1,14.95,08/24/19 14:59,"116 11th St, Atlanta, GA 30301" +236571,Lightning Charging Cable,1,14.95,08/04/19 07:22,"658 Forest St, Los Angeles, CA 90001" +236572,USB-C Charging Cable,1,11.95,08/14/19 09:07,"189 10th St, Boston, MA 02215" +236573,AAA Batteries (4-pack),1,2.99,08/11/19 22:10,"598 12th St, San Francisco, CA 94016" +236574,Bose SoundSport Headphones,2,99.99,08/12/19 10:25,"193 Washington St, Los Angeles, CA 90001" +236574,Wired Headphones,1,11.99,08/12/19 10:25,"193 Washington St, Los Angeles, CA 90001" +236575,USB-C Charging Cable,1,11.95,08/05/19 09:31,"536 Hill St, Dallas, TX 75001" +236576,Lightning Charging Cable,1,14.95,08/03/19 01:22,"550 Park St, Portland, OR 97035" +236577,AA Batteries (4-pack),1,3.84,08/24/19 10:49,"745 Meadow St, San Francisco, CA 94016" +236578,Bose SoundSport Headphones,1,99.99,08/28/19 11:59,"822 8th St, Dallas, TX 75001" +236579,USB-C Charging Cable,1,11.95,08/11/19 20:14,"891 2nd St, Seattle, WA 98101" +236580,Lightning Charging Cable,1,14.95,08/22/19 01:12,"16 Church St, San Francisco, CA 94016" +236581,AAA Batteries (4-pack),3,2.99,08/20/19 22:18,"542 Washington St, New York City, NY 10001" +236582,Macbook Pro Laptop,1,1700,08/17/19 06:40,"222 Forest St, San Francisco, CA 94016" +236583,Lightning Charging Cable,1,14.95,08/01/19 15:22,"647 8th St, Boston, MA 02215" +236584,AAA Batteries (4-pack),3,2.99,08/26/19 16:12,"851 1st St, Boston, MA 02215" +236585,AAA Batteries (4-pack),1,2.99,08/06/19 16:36,"262 10th St, San Francisco, CA 94016" +236586,AA Batteries (4-pack),1,3.84,08/24/19 10:44,"393 North St, San Francisco, CA 94016" +236587,Wired Headphones,1,11.99,08/11/19 16:59,"956 11th St, New York City, NY 10001" +236588,Apple Airpods Headphones,1,150,08/31/19 17:02,"526 12th St, New York City, NY 10001" +236589,Bose SoundSport Headphones,1,99.99,08/12/19 16:22,"405 Willow St, Boston, MA 02215" +236590,AAA Batteries (4-pack),1,2.99,08/01/19 13:12,"482 Johnson St, Seattle, WA 98101" +236591,20in Monitor,1,109.99,08/31/19 08:34,"576 Forest St, Portland, ME 04101" +236592,Wired Headphones,1,11.99,08/04/19 15:32,"647 Dogwood St, Los Angeles, CA 90001" +236593,AA Batteries (4-pack),1,3.84,08/27/19 07:41,"197 8th St, San Francisco, CA 94016" +236594,AAA Batteries (4-pack),1,2.99,08/02/19 12:08,"509 Dogwood St, Boston, MA 02215" +236595,ThinkPad Laptop,1,999.99,08/17/19 09:01,"683 Forest St, Boston, MA 02215" +236596,Apple Airpods Headphones,1,150,08/06/19 15:44,"717 Maple St, New York City, NY 10001" +236597,AAA Batteries (4-pack),2,2.99,08/13/19 08:05,"170 Maple St, New York City, NY 10001" +236598,Lightning Charging Cable,1,14.95,08/06/19 15:10,"661 Church St, Dallas, TX 75001" +236599,Apple Airpods Headphones,1,150,08/24/19 10:10,"432 5th St, New York City, NY 10001" +236600,27in FHD Monitor,1,149.99,08/10/19 09:28,"953 Cherry St, Boston, MA 02215" +236601,Lightning Charging Cable,1,14.95,08/06/19 16:54,"547 Lake St, Dallas, TX 75001" +236602,Bose SoundSport Headphones,1,99.99,08/02/19 07:14,"682 Forest St, Portland, OR 97035" +236603,USB-C Charging Cable,2,11.95,08/06/19 22:32,"563 2nd St, Atlanta, GA 30301" +236604,Macbook Pro Laptop,1,1700,08/08/19 19:43,"637 Forest St, New York City, NY 10001" +236605,Bose SoundSport Headphones,1,99.99,08/09/19 11:39,"174 Walnut St, Portland, OR 97035" +236606,Wired Headphones,1,11.99,08/06/19 05:31,"446 8th St, Seattle, WA 98101" +236607,27in 4K Gaming Monitor,1,389.99,08/15/19 14:06,"640 Park St, Dallas, TX 75001" +236608,Apple Airpods Headphones,1,150,08/12/19 17:51,"734 Lake St, Los Angeles, CA 90001" +236608,USB-C Charging Cable,1,11.95,08/12/19 17:51,"734 Lake St, Los Angeles, CA 90001" +236609,Lightning Charging Cable,1,14.95,08/05/19 20:24,"58 Highland St, San Francisco, CA 94016" +236610,34in Ultrawide Monitor,1,379.99,08/10/19 12:59,"572 Wilson St, San Francisco, CA 94016" +236611,Apple Airpods Headphones,1,150,08/08/19 20:07,"170 Adams St, San Francisco, CA 94016" +236612,Lightning Charging Cable,1,14.95,08/19/19 05:42,"94 Elm St, Los Angeles, CA 90001" +236613,AA Batteries (4-pack),2,3.84,08/02/19 17:58,"638 North St, Seattle, WA 98101" +236614,27in FHD Monitor,1,149.99,08/08/19 07:22,"347 Lake St, Portland, OR 97035" +236615,Flatscreen TV,1,300,08/06/19 07:25,"800 12th St, San Francisco, CA 94016" +236616,Apple Airpods Headphones,1,150,08/23/19 06:59,"620 7th St, New York City, NY 10001" +236617,Apple Airpods Headphones,1,150,08/08/19 18:09,"218 Main St, San Francisco, CA 94016" +236618,Google Phone,1,600,08/19/19 06:54,"793 5th St, Los Angeles, CA 90001" +236619,AAA Batteries (4-pack),1,2.99,08/26/19 10:37,"82 Madison St, San Francisco, CA 94016" +236619,27in 4K Gaming Monitor,1,389.99,08/26/19 10:37,"82 Madison St, San Francisco, CA 94016" +236620,Wired Headphones,1,11.99,08/27/19 11:39,"696 Madison St, Boston, MA 02215" +236621,Bose SoundSport Headphones,1,99.99,08/08/19 13:26,"230 Ridge St, Boston, MA 02215" +236622,ThinkPad Laptop,1,999.99,08/31/19 16:09,"904 Ridge St, Boston, MA 02215" +236623,USB-C Charging Cable,1,11.95,08/05/19 16:14,"85 Johnson St, Boston, MA 02215" +236624,AAA Batteries (4-pack),1,2.99,08/05/19 16:22,"226 Lake St, Los Angeles, CA 90001" +236625,Apple Airpods Headphones,1,150,08/07/19 14:24,"660 Hickory St, Seattle, WA 98101" +236626,27in 4K Gaming Monitor,1,389.99,08/05/19 19:09,"403 Forest St, Dallas, TX 75001" +236627,AA Batteries (4-pack),1,3.84,08/22/19 19:48,"381 Center St, San Francisco, CA 94016" +236628,Wired Headphones,1,11.99,08/07/19 18:54,"229 11th St, Dallas, TX 75001" +236629,Lightning Charging Cable,1,14.95,08/14/19 10:41,"201 4th St, New York City, NY 10001" +236630,USB-C Charging Cable,1,11.95,08/27/19 16:02,"3 Church St, New York City, NY 10001" +236631,AAA Batteries (4-pack),1,2.99,09/01/19 04:19,"989 Wilson St, Atlanta, GA 30301" +236632,Lightning Charging Cable,1,14.95,08/02/19 17:49,"725 2nd St, Los Angeles, CA 90001" +236633,AA Batteries (4-pack),1,3.84,08/05/19 06:56,"981 13th St, New York City, NY 10001" +236634,Google Phone,1,600,08/04/19 15:18,"452 Pine St, San Francisco, CA 94016" +236634,Wired Headphones,2,11.99,08/04/19 15:18,"452 Pine St, San Francisco, CA 94016" +236635,Lightning Charging Cable,1,14.95,08/24/19 22:57,"814 Lakeview St, Austin, TX 73301" +236636,AAA Batteries (4-pack),1,2.99,08/12/19 12:27,"95 Lake St, New York City, NY 10001" +236637,AA Batteries (4-pack),1,3.84,08/19/19 10:35,"854 14th St, San Francisco, CA 94016" +236638,Wired Headphones,1,11.99,08/27/19 21:45,"336 Cherry St, Los Angeles, CA 90001" +236639,AA Batteries (4-pack),1,3.84,08/28/19 17:32,"754 Lakeview St, Los Angeles, CA 90001" +236640,Bose SoundSport Headphones,1,99.99,08/01/19 16:24,"280 9th St, Los Angeles, CA 90001" +236641,iPhone,1,700,08/21/19 23:26,"747 Hickory St, New York City, NY 10001" +236642,34in Ultrawide Monitor,1,379.99,08/10/19 12:17,"984 Lincoln St, Portland, ME 04101" +236643,USB-C Charging Cable,1,11.95,08/09/19 22:06,"287 12th St, Portland, OR 97035" +236644,Wired Headphones,1,11.99,08/28/19 16:34,"827 1st St, New York City, NY 10001" +236645,Vareebadd Phone,1,400,08/03/19 16:37,"607 11th St, Seattle, WA 98101" +236646,AA Batteries (4-pack),1,3.84,08/10/19 10:32,"940 Highland St, New York City, NY 10001" +236647,Lightning Charging Cable,1,14.95,08/18/19 16:07,"14 Spruce St, San Francisco, CA 94016" +236648,Apple Airpods Headphones,1,150,08/14/19 10:11,"266 Hickory St, Seattle, WA 98101" +236649,iPhone,1,700,08/13/19 13:55,"32 4th St, New York City, NY 10001" +236650,USB-C Charging Cable,2,11.95,08/04/19 11:08,"199 Adams St, Austin, TX 73301" +236651,AAA Batteries (4-pack),1,2.99,08/01/19 13:50,"619 Jefferson St, San Francisco, CA 94016" +236652,Wired Headphones,1,11.99,08/16/19 16:50,"533 Washington St, Atlanta, GA 30301" +236652,Wired Headphones,1,11.99,08/16/19 16:50,"533 Washington St, Atlanta, GA 30301" +236653,Lightning Charging Cable,1,14.95,08/16/19 16:50,"441 Wilson St, New York City, NY 10001" +236654,USB-C Charging Cable,1,11.95,08/07/19 09:14,"915 1st St, Boston, MA 02215" +236655,USB-C Charging Cable,1,11.95,08/21/19 16:14,"372 Lake St, Los Angeles, CA 90001" +236656,Vareebadd Phone,1,400,08/22/19 20:10,"54 11th St, New York City, NY 10001" +236656,Wired Headphones,1,11.99,08/22/19 20:10,"54 11th St, New York City, NY 10001" +236657,Apple Airpods Headphones,1,150,08/30/19 22:58,"432 Center St, San Francisco, CA 94016" +236658,27in 4K Gaming Monitor,1,389.99,08/12/19 10:21,"822 Hill St, Seattle, WA 98101" +236659,20in Monitor,1,109.99,08/05/19 14:18,"347 11th St, New York City, NY 10001" +236660,Apple Airpods Headphones,1,150,08/30/19 11:22,"37 River St, Seattle, WA 98101" +236661,Wired Headphones,2,11.99,08/07/19 21:40,"660 Adams St, New York City, NY 10001" +236662,Wired Headphones,1,11.99,08/22/19 13:04,"588 Walnut St, New York City, NY 10001" +236663,Lightning Charging Cable,1,14.95,08/02/19 00:18,"256 10th St, San Francisco, CA 94016" +236664,Wired Headphones,1,11.99,08/26/19 13:08,"591 Meadow St, Los Angeles, CA 90001" +236665,USB-C Charging Cable,1,11.95,08/02/19 20:52,"195 6th St, Austin, TX 73301" +236666,Lightning Charging Cable,1,14.95,08/15/19 22:51,"573 Meadow St, Dallas, TX 75001" +236667,AA Batteries (4-pack),1,3.84,08/18/19 21:11,"88 Pine St, Boston, MA 02215" +236668,iPhone,1,700,08/08/19 15:42,"745 7th St, Portland, OR 97035" +236669,Wired Headphones,1,11.99,08/29/19 01:25,"561 Walnut St, Atlanta, GA 30301" +236670,34in Ultrawide Monitor,1,379.99,08/08/19 22:31,"787 Sunset St, San Francisco, CA 94016" +236671,AAA Batteries (4-pack),2,2.99,08/06/19 22:25,"826 Center St, San Francisco, CA 94016" +236672,Lightning Charging Cable,1,14.95,08/05/19 20:49,"562 Chestnut St, Atlanta, GA 30301" +236673,AA Batteries (4-pack),1,3.84,08/06/19 14:03,"383 13th St, Portland, OR 97035" +236674,Flatscreen TV,1,300,08/27/19 19:04,"267 Washington St, San Francisco, CA 94016" +236675,USB-C Charging Cable,2,11.95,08/27/19 20:24,"934 13th St, Austin, TX 73301" +236676,USB-C Charging Cable,1,11.95,08/12/19 11:45,"402 Cherry St, Portland, OR 97035" +236677,ThinkPad Laptop,1,999.99,08/15/19 18:26,"405 13th St, Atlanta, GA 30301" +236678,Apple Airpods Headphones,1,150,08/21/19 21:09,"627 9th St, Seattle, WA 98101" +236679,Wired Headphones,1,11.99,08/14/19 17:31,"522 Wilson St, San Francisco, CA 94016" +236680,AAA Batteries (4-pack),1,2.99,08/17/19 09:01,"520 Highland St, Los Angeles, CA 90001" +236681,Macbook Pro Laptop,1,1700,08/31/19 22:14,"740 River St, Atlanta, GA 30301" +236682,Google Phone,1,600,08/03/19 20:23,"649 North St, San Francisco, CA 94016" +236683,iPhone,1,700,08/17/19 10:26,"481 Elm St, Austin, TX 73301" +236683,Apple Airpods Headphones,1,150,08/17/19 10:26,"481 Elm St, Austin, TX 73301" +236683,Wired Headphones,1,11.99,08/17/19 10:26,"481 Elm St, Austin, TX 73301" +236684,27in FHD Monitor,1,149.99,08/01/19 12:53,"49 Maple St, Boston, MA 02215" +236685,Flatscreen TV,1,300,08/02/19 23:48,"669 Johnson St, Boston, MA 02215" +236686,LG Dryer,1,600.0,08/21/19 20:08,"279 Cedar St, Atlanta, GA 30301" +236687,ThinkPad Laptop,1,999.99,08/15/19 23:11,"302 Forest St, Atlanta, GA 30301" +236688,Bose SoundSport Headphones,1,99.99,08/03/19 21:58,"387 Center St, San Francisco, CA 94016" +236689,AAA Batteries (4-pack),3,2.99,08/29/19 09:55,"311 8th St, Atlanta, GA 30301" +236690,34in Ultrawide Monitor,1,379.99,08/14/19 17:10,"778 Forest St, San Francisco, CA 94016" +236691,AAA Batteries (4-pack),1,2.99,08/08/19 11:57,"374 Dogwood St, San Francisco, CA 94016" +236692,20in Monitor,1,109.99,08/04/19 11:29,"266 Jefferson St, Los Angeles, CA 90001" +236693,20in Monitor,1,109.99,08/09/19 23:30,"627 Spruce St, New York City, NY 10001" +236694,Lightning Charging Cable,1,14.95,08/27/19 08:31,"405 7th St, Boston, MA 02215" +236695,AAA Batteries (4-pack),1,2.99,08/03/19 11:04,"311 North St, Dallas, TX 75001" +236696,Lightning Charging Cable,1,14.95,08/25/19 11:50,"662 6th St, Los Angeles, CA 90001" +236697,LG Washing Machine,1,600.0,08/10/19 09:43,"276 Church St, San Francisco, CA 94016" +236698,Bose SoundSport Headphones,1,99.99,08/03/19 17:25,"247 River St, Los Angeles, CA 90001" +236699,AAA Batteries (4-pack),1,2.99,08/21/19 18:17,"825 Main St, New York City, NY 10001" +236700,USB-C Charging Cable,1,11.95,08/13/19 12:57,"244 Madison St, New York City, NY 10001" +236701,Google Phone,1,600,08/05/19 19:17,"488 Ridge St, Los Angeles, CA 90001" +236701,USB-C Charging Cable,1,11.95,08/05/19 19:17,"488 Ridge St, Los Angeles, CA 90001" +236702,Flatscreen TV,1,300,08/07/19 10:35,"935 West St, San Francisco, CA 94016" +236703,Apple Airpods Headphones,1,150,08/22/19 12:44,"77 Willow St, Boston, MA 02215" +236704,Macbook Pro Laptop,1,1700,08/27/19 13:21,"382 Jackson St, Seattle, WA 98101" +236705,Apple Airpods Headphones,1,150,08/30/19 12:46,"453 Park St, Seattle, WA 98101" +236706,Wired Headphones,2,11.99,08/11/19 14:16,"713 Jefferson St, Seattle, WA 98101" +236707,Bose SoundSport Headphones,1,99.99,08/13/19 14:28,"208 13th St, New York City, NY 10001" +236708,27in 4K Gaming Monitor,1,389.99,08/03/19 11:10,"795 2nd St, Boston, MA 02215" +236709,AAA Batteries (4-pack),1,2.99,08/27/19 21:08,"931 Johnson St, Boston, MA 02215" +236710,27in FHD Monitor,1,149.99,08/22/19 19:24,"481 Meadow St, Seattle, WA 98101" +236711,Lightning Charging Cable,1,14.95,08/20/19 17:52,"183 Cedar St, Boston, MA 02215" +236712,Apple Airpods Headphones,1,150,08/08/19 20:31,"244 Lincoln St, San Francisco, CA 94016" +236713,iPhone,1,700,08/21/19 11:10,"593 Jackson St, New York City, NY 10001" +236714,AA Batteries (4-pack),1,3.84,08/10/19 13:12,"453 Church St, Atlanta, GA 30301" +236715,27in 4K Gaming Monitor,1,389.99,08/30/19 01:03,"167 1st St, New York City, NY 10001" +236715,AAA Batteries (4-pack),1,2.99,08/30/19 01:03,"167 1st St, New York City, NY 10001" +236716,AA Batteries (4-pack),1,3.84,08/11/19 03:25,"425 Hickory St, Atlanta, GA 30301" +236717,Flatscreen TV,1,300,08/10/19 15:09,"31 Willow St, New York City, NY 10001" +236718,27in FHD Monitor,1,149.99,08/30/19 07:25,"634 Sunset St, Dallas, TX 75001" +236719,Bose SoundSport Headphones,1,99.99,08/14/19 16:57,"822 Church St, Los Angeles, CA 90001" +236720,iPhone,1,700,08/08/19 21:18,"228 Center St, Los Angeles, CA 90001" +236720,Apple Airpods Headphones,1,150,08/08/19 21:18,"228 Center St, Los Angeles, CA 90001" +236721,Bose SoundSport Headphones,1,99.99,08/08/19 08:02,"626 4th St, San Francisco, CA 94016" +236722,Wired Headphones,1,11.99,08/08/19 19:55,"846 Elm St, Seattle, WA 98101" +236723,AAA Batteries (4-pack),1,2.99,08/08/19 18:53,"328 North St, Boston, MA 02215" +236724,AAA Batteries (4-pack),1,2.99,08/23/19 20:59,"737 Johnson St, Atlanta, GA 30301" +236725,27in FHD Monitor,1,149.99,08/21/19 08:13,"979 Highland St, San Francisco, CA 94016" +236726,Lightning Charging Cable,1,14.95,08/16/19 18:17,"384 7th St, San Francisco, CA 94016" +236727,Bose SoundSport Headphones,1,99.99,08/18/19 13:50,"365 Maple St, San Francisco, CA 94016" +236728,Lightning Charging Cable,2,14.95,08/13/19 17:09,"839 Dogwood St, Seattle, WA 98101" +236729,AA Batteries (4-pack),1,3.84,08/07/19 12:11,"265 Elm St, Seattle, WA 98101" +236730,Wired Headphones,1,11.99,08/02/19 17:42,"633 Spruce St, Boston, MA 02215" +236731,AA Batteries (4-pack),1,3.84,08/07/19 12:29,"19 9th St, Seattle, WA 98101" +236732,AAA Batteries (4-pack),2,2.99,08/04/19 13:54,"267 Church St, Atlanta, GA 30301" +236733,Lightning Charging Cable,1,14.95,08/27/19 18:07,"853 Dogwood St, New York City, NY 10001" +236734,Wired Headphones,1,11.99,08/01/19 17:35,"756 South St, New York City, NY 10001" +236735,AA Batteries (4-pack),1,3.84,08/31/19 21:03,"457 1st St, Seattle, WA 98101" +236736,Bose SoundSport Headphones,1,99.99,08/13/19 12:12,"494 West St, New York City, NY 10001" +236737,USB-C Charging Cable,1,11.95,08/03/19 16:54,"324 Cherry St, New York City, NY 10001" +236738,Wired Headphones,1,11.99,08/28/19 14:15,"401 2nd St, San Francisco, CA 94016" +236739,Apple Airpods Headphones,1,150,08/20/19 20:40,"855 Lake St, Dallas, TX 75001" +236740,AAA Batteries (4-pack),2,2.99,08/01/19 21:22,"375 9th St, Boston, MA 02215" +236741,iPhone,1,700,08/14/19 09:28,"996 13th St, Dallas, TX 75001" +236741,Lightning Charging Cable,1,14.95,08/14/19 09:28,"996 13th St, Dallas, TX 75001" +236742,USB-C Charging Cable,1,11.95,08/11/19 10:03,"298 Cedar St, Los Angeles, CA 90001" +236743,Wired Headphones,1,11.99,08/23/19 19:17,"474 Cherry St, Portland, OR 97035" +236744,AAA Batteries (4-pack),4,2.99,08/08/19 13:01,"137 North St, Los Angeles, CA 90001" +236745,AAA Batteries (4-pack),2,2.99,08/22/19 17:10,"500 Sunset St, San Francisco, CA 94016" +236746,USB-C Charging Cable,1,11.95,08/29/19 18:05,"926 Maple St, Dallas, TX 75001" +236747,USB-C Charging Cable,1,11.95,08/27/19 21:37,"460 Center St, Los Angeles, CA 90001" +236748,Google Phone,1,600,08/14/19 15:47,"671 Walnut St, Portland, OR 97035" +236749,27in FHD Monitor,1,149.99,08/10/19 23:50,"510 8th St, Los Angeles, CA 90001" +236750,AA Batteries (4-pack),1,3.84,08/14/19 18:37,"838 Highland St, Boston, MA 02215" +236751,Apple Airpods Headphones,1,150,08/29/19 11:31,"970 West St, Los Angeles, CA 90001" +236752,AA Batteries (4-pack),1,3.84,08/26/19 19:40,"102 Highland St, San Francisco, CA 94016" +236753,Wired Headphones,1,11.99,08/27/19 22:41,"831 Ridge St, Atlanta, GA 30301" +236754,Apple Airpods Headphones,1,150,08/26/19 14:51,"174 14th St, New York City, NY 10001" +236755,Bose SoundSport Headphones,1,99.99,09/01/19 00:02,"579 2nd St, New York City, NY 10001" +236756,Lightning Charging Cable,1,14.95,08/24/19 13:30,"141 12th St, Los Angeles, CA 90001" +236756,Bose SoundSport Headphones,1,99.99,08/24/19 13:30,"141 12th St, Los Angeles, CA 90001" +236757,AA Batteries (4-pack),1,3.84,08/04/19 16:45,"262 Lake St, Portland, OR 97035" +236758,USB-C Charging Cable,1,11.95,08/23/19 16:14,"734 South St, San Francisco, CA 94016" +236759,USB-C Charging Cable,1,11.95,08/27/19 18:29,"857 Cedar St, Seattle, WA 98101" +236760,ThinkPad Laptop,1,999.99,08/19/19 11:11,"110 Lake St, New York City, NY 10001" +236761,Flatscreen TV,1,300,08/22/19 12:05,"877 7th St, San Francisco, CA 94016" +236762,AA Batteries (4-pack),1,3.84,08/27/19 13:52,"27 11th St, Portland, ME 04101" +236763,Bose SoundSport Headphones,1,99.99,08/12/19 21:15,"949 Johnson St, Seattle, WA 98101" +236764,Bose SoundSport Headphones,1,99.99,08/16/19 17:49,"951 Walnut St, Seattle, WA 98101" +236765,Macbook Pro Laptop,1,1700,08/16/19 15:35,"244 Cedar St, Dallas, TX 75001" +236766,27in 4K Gaming Monitor,1,389.99,08/14/19 15:00,"196 Johnson St, Atlanta, GA 30301" +236767,Apple Airpods Headphones,1,150,08/18/19 10:56,"810 Highland St, Seattle, WA 98101" +236768,Lightning Charging Cable,2,14.95,08/09/19 18:29,"77 Lincoln St, Dallas, TX 75001" +236769,USB-C Charging Cable,1,11.95,08/25/19 12:50,"736 Main St, Los Angeles, CA 90001" +236770,Wired Headphones,1,11.99,08/09/19 21:01,"624 Cedar St, Austin, TX 73301" +236771,Wired Headphones,2,11.99,08/05/19 12:26,"537 Ridge St, Los Angeles, CA 90001" +236771,AA Batteries (4-pack),1,3.84,08/05/19 12:26,"537 Ridge St, Los Angeles, CA 90001" +236772,USB-C Charging Cable,1,11.95,08/20/19 21:45,"905 Forest St, Austin, TX 73301" +236773,AAA Batteries (4-pack),1,2.99,08/15/19 00:09,"454 Main St, Boston, MA 02215" +236774,AAA Batteries (4-pack),2,2.99,08/02/19 11:44,"687 Hill St, Dallas, TX 75001" +236775,27in FHD Monitor,1,149.99,08/04/19 05:55,"687 2nd St, Los Angeles, CA 90001" +236776,Wired Headphones,3,11.99,08/20/19 16:59,"896 Maple St, Portland, OR 97035" +236777,AA Batteries (4-pack),1,3.84,08/17/19 20:50,"294 5th St, Los Angeles, CA 90001" +236778,ThinkPad Laptop,1,999.99,08/10/19 22:22,"191 7th St, New York City, NY 10001" +236779,Vareebadd Phone,1,400,08/27/19 12:48,"884 Spruce St, Atlanta, GA 30301" +236780,USB-C Charging Cable,1,11.95,08/19/19 17:59,"499 Spruce St, Atlanta, GA 30301" +236781,USB-C Charging Cable,1,11.95,08/27/19 17:23,"210 Madison St, New York City, NY 10001" +236782,Lightning Charging Cable,1,14.95,08/15/19 20:44,"143 Adams St, Los Angeles, CA 90001" +236783,AAA Batteries (4-pack),4,2.99,08/10/19 19:10,"731 Sunset St, Boston, MA 02215" +236784,27in FHD Monitor,1,149.99,08/30/19 13:58,"500 Walnut St, Atlanta, GA 30301" +236785,AA Batteries (4-pack),1,3.84,08/02/19 20:37,"456 8th St, Los Angeles, CA 90001" +236786,Bose SoundSport Headphones,1,99.99,08/26/19 18:33,"840 11th St, Dallas, TX 75001" +236787,iPhone,1,700,08/19/19 13:00,"242 Sunset St, San Francisco, CA 94016" +236788,20in Monitor,1,109.99,08/14/19 21:45,"138 Madison St, San Francisco, CA 94016" +236789,AA Batteries (4-pack),2,3.84,08/12/19 11:06,"120 Highland St, Atlanta, GA 30301" +236790,Flatscreen TV,1,300,08/16/19 18:57,"589 Hickory St, Portland, OR 97035" +236791,27in 4K Gaming Monitor,1,389.99,08/22/19 12:12,"39 9th St, Atlanta, GA 30301" +236792,27in 4K Gaming Monitor,1,389.99,08/17/19 11:20,"186 Elm St, Boston, MA 02215" +236793,iPhone,1,700,08/04/19 15:42,"589 Adams St, Atlanta, GA 30301" +236793,Bose SoundSport Headphones,1,99.99,08/04/19 15:42,"589 Adams St, Atlanta, GA 30301" +236794,AAA Batteries (4-pack),1,2.99,08/23/19 08:00,"633 Park St, Los Angeles, CA 90001" +236795,iPhone,1,700,08/08/19 18:07,"934 4th St, Austin, TX 73301" +236795,AAA Batteries (4-pack),1,2.99,08/08/19 18:07,"934 4th St, Austin, TX 73301" +236796,AA Batteries (4-pack),1,3.84,08/24/19 13:56,"199 4th St, Seattle, WA 98101" +236797,Flatscreen TV,1,300,08/27/19 11:38,"800 1st St, Portland, OR 97035" +236798,iPhone,1,700,08/19/19 19:08,"745 Cedar St, San Francisco, CA 94016" +236798,Lightning Charging Cable,1,14.95,08/19/19 19:08,"745 Cedar St, San Francisco, CA 94016" +236799,AAA Batteries (4-pack),1,2.99,08/07/19 16:36,"515 Willow St, San Francisco, CA 94016" +236800,Apple Airpods Headphones,1,150,08/03/19 15:29,"387 River St, Los Angeles, CA 90001" +236801,LG Dryer,1,600.0,08/06/19 22:05,"105 Center St, Boston, MA 02215" +236802,Lightning Charging Cable,1,14.95,08/29/19 16:20,"298 South St, Seattle, WA 98101" +236803,Flatscreen TV,1,300,08/23/19 20:28,"933 Chestnut St, Dallas, TX 75001" +236804,AA Batteries (4-pack),2,3.84,08/10/19 08:18,"802 West St, New York City, NY 10001" +236805,Google Phone,1,600,08/15/19 14:58,"229 12th St, Dallas, TX 75001" +236805,USB-C Charging Cable,1,11.95,08/15/19 14:58,"229 12th St, Dallas, TX 75001" +236806,Wired Headphones,2,11.99,08/04/19 21:36,"670 Willow St, Boston, MA 02215" +236807,Bose SoundSport Headphones,1,99.99,08/26/19 19:40,"64 Lakeview St, San Francisco, CA 94016" +236808,34in Ultrawide Monitor,1,379.99,08/24/19 21:35,"534 Cherry St, San Francisco, CA 94016" +236809,27in 4K Gaming Monitor,1,389.99,08/08/19 15:48,"527 South St, Dallas, TX 75001" +236810,Lightning Charging Cable,1,14.95,08/23/19 14:46,"884 South St, Los Angeles, CA 90001" +236811,AAA Batteries (4-pack),1,2.99,08/10/19 18:02,"618 11th St, Portland, OR 97035" +236812,Google Phone,1,600,08/05/19 10:01,"442 Church St, Los Angeles, CA 90001" +236813,Bose SoundSport Headphones,1,99.99,08/01/19 11:17,"789 Park St, San Francisco, CA 94016" +236814,USB-C Charging Cable,1,11.95,08/09/19 11:30,"550 6th St, Los Angeles, CA 90001" +236815,AAA Batteries (4-pack),1,2.99,08/09/19 07:57,"397 West St, Boston, MA 02215" +236816,Vareebadd Phone,1,400,08/26/19 16:45,"358 Hickory St, Atlanta, GA 30301" +236817,AA Batteries (4-pack),1,3.84,08/10/19 20:22,"884 Cedar St, New York City, NY 10001" +236818,AAA Batteries (4-pack),1,2.99,08/11/19 09:11,"694 Pine St, Dallas, TX 75001" +236819,AA Batteries (4-pack),2,3.84,08/29/19 18:26,"19 Park St, Atlanta, GA 30301" +236820,AA Batteries (4-pack),1,3.84,08/28/19 14:41,"600 Hill St, San Francisco, CA 94016" +236821,ThinkPad Laptop,1,999.99,08/17/19 12:03,"68 Elm St, San Francisco, CA 94016" +236822,Bose SoundSport Headphones,1,99.99,08/18/19 21:00,"3 Adams St, San Francisco, CA 94016" +236823,USB-C Charging Cable,1,11.95,08/08/19 16:27,"718 Adams St, Portland, ME 04101" +236824,Apple Airpods Headphones,1,150,08/17/19 09:39,"383 Cherry St, Atlanta, GA 30301" +236825,AAA Batteries (4-pack),1,2.99,08/10/19 14:53,"289 Forest St, Seattle, WA 98101" +236826,34in Ultrawide Monitor,1,379.99,08/02/19 16:32,"516 Highland St, San Francisco, CA 94016" +236826,ThinkPad Laptop,1,999.99,08/02/19 16:32,"516 Highland St, San Francisco, CA 94016" +236827,Wired Headphones,1,11.99,08/05/19 13:10,"894 Park St, San Francisco, CA 94016" +236828,Bose SoundSport Headphones,1,99.99,08/31/19 20:15,"944 Johnson St, San Francisco, CA 94016" +236829,AAA Batteries (4-pack),1,2.99,08/05/19 12:55,"481 11th St, Seattle, WA 98101" +236830,AA Batteries (4-pack),3,3.84,08/05/19 08:54,"283 Lake St, San Francisco, CA 94016" +236831,AA Batteries (4-pack),1,3.84,08/27/19 13:07,"148 Highland St, Atlanta, GA 30301" +236832,Wired Headphones,1,11.99,08/05/19 12:45,"361 Main St, Los Angeles, CA 90001" +236833,Wired Headphones,1,11.99,08/09/19 10:55,"352 Forest St, San Francisco, CA 94016" +236834,iPhone,1,700,08/31/19 09:09,"656 Lincoln St, Austin, TX 73301" +236835,AAA Batteries (4-pack),1,2.99,08/20/19 12:14,"455 6th St, San Francisco, CA 94016" +236836,AA Batteries (4-pack),1,3.84,08/05/19 21:10,"612 Sunset St, Atlanta, GA 30301" +236837,Bose SoundSport Headphones,1,99.99,08/11/19 12:46,"271 Johnson St, Los Angeles, CA 90001" +236838,Lightning Charging Cable,2,14.95,08/20/19 13:22,"532 6th St, Boston, MA 02215" +236839,Apple Airpods Headphones,1,150,08/17/19 17:15,"911 Madison St, Atlanta, GA 30301" +236840,AAA Batteries (4-pack),2,2.99,08/06/19 22:53,"730 Church St, New York City, NY 10001" +236841,USB-C Charging Cable,1,11.95,08/11/19 15:56,"106 4th St, Portland, OR 97035" +236842,iPhone,1,700,08/14/19 21:12,"326 Washington St, Los Angeles, CA 90001" +236842,Wired Headphones,2,11.99,08/14/19 21:12,"326 Washington St, Los Angeles, CA 90001" +236843,AA Batteries (4-pack),2,3.84,08/31/19 18:48,"244 Lake St, Boston, MA 02215" +236844,34in Ultrawide Monitor,1,379.99,08/31/19 17:43,"191 Lake St, Seattle, WA 98101" +236845,27in FHD Monitor,1,149.99,08/21/19 07:00,"123 5th St, Los Angeles, CA 90001" +236846,USB-C Charging Cable,1,11.95,08/18/19 13:54,"273 Cherry St, San Francisco, CA 94016" +236847,AAA Batteries (4-pack),1,2.99,08/08/19 07:03,"644 12th St, Dallas, TX 75001" +236848,Lightning Charging Cable,1,14.95,08/05/19 17:54,"441 1st St, Los Angeles, CA 90001" +236849,ThinkPad Laptop,1,999.99,08/24/19 12:55,"29 River St, San Francisco, CA 94016" +236850,Wired Headphones,1,11.99,08/26/19 13:38,"107 Hickory St, New York City, NY 10001" +236851,27in FHD Monitor,1,149.99,08/05/19 12:46,"683 River St, San Francisco, CA 94016" +236851,Google Phone,1,600,08/05/19 12:46,"683 River St, San Francisco, CA 94016" +236852,AA Batteries (4-pack),1,3.84,08/11/19 10:31,"771 10th St, Dallas, TX 75001" +236853,Apple Airpods Headphones,1,150,08/06/19 21:57,"321 Forest St, New York City, NY 10001" +236854,AA Batteries (4-pack),1,3.84,08/13/19 16:30,"953 Madison St, New York City, NY 10001" +236855,USB-C Charging Cable,1,11.95,08/27/19 09:48,"916 4th St, San Francisco, CA 94016" +236856,Apple Airpods Headphones,1,150,08/04/19 00:44,"586 Adams St, San Francisco, CA 94016" +236857,Apple Airpods Headphones,1,150,08/16/19 00:41,"960 Johnson St, Seattle, WA 98101" +236858,Wired Headphones,1,11.99,08/01/19 12:32,"358 Ridge St, San Francisco, CA 94016" +236859,AAA Batteries (4-pack),2,2.99,08/26/19 18:36,"525 Elm St, Boston, MA 02215" +236860,AA Batteries (4-pack),1,3.84,08/31/19 20:10,"195 Dogwood St, Los Angeles, CA 90001" +236861,Macbook Pro Laptop,1,1700,08/15/19 10:42,"802 6th St, San Francisco, CA 94016" +236862,USB-C Charging Cable,1,11.95,08/08/19 09:23,"480 Madison St, San Francisco, CA 94016" +236863,USB-C Charging Cable,2,11.95,08/26/19 16:35,"607 North St, New York City, NY 10001" +236864,Wired Headphones,2,11.99,08/16/19 18:09,"142 Washington St, Los Angeles, CA 90001" +236865,Bose SoundSport Headphones,1,99.99,08/17/19 12:42,"322 10th St, San Francisco, CA 94016" +236866,Apple Airpods Headphones,1,150,08/08/19 17:14,"450 Johnson St, Seattle, WA 98101" +236867,USB-C Charging Cable,1,11.95,08/05/19 08:46,"456 Park St, San Francisco, CA 94016" +236868,Flatscreen TV,1,300,08/01/19 15:17,"787 Church St, Dallas, TX 75001" +236869,USB-C Charging Cable,1,11.95,08/11/19 11:43,"863 Ridge St, San Francisco, CA 94016" +236870,AA Batteries (4-pack),1,3.84,08/30/19 10:39,"833 Walnut St, San Francisco, CA 94016" +236871,AAA Batteries (4-pack),1,2.99,08/08/19 16:49,"278 10th St, Dallas, TX 75001" +236872,Apple Airpods Headphones,1,150,08/29/19 10:49,"39 Elm St, San Francisco, CA 94016" +236873,Bose SoundSport Headphones,1,99.99,08/14/19 09:36,"492 Dogwood St, San Francisco, CA 94016" +236874,USB-C Charging Cable,1,11.95,08/24/19 16:21,"313 Cherry St, Boston, MA 02215" +236875,27in FHD Monitor,1,149.99,08/09/19 16:39,"644 7th St, Austin, TX 73301" +236876,Wired Headphones,1,11.99,08/04/19 11:41,"730 Walnut St, San Francisco, CA 94016" +236877,Lightning Charging Cable,1,14.95,08/15/19 17:45,"588 7th St, Los Angeles, CA 90001" +236878,27in FHD Monitor,1,149.99,08/05/19 12:45,"958 River St, San Francisco, CA 94016" +236879,AA Batteries (4-pack),1,3.84,08/28/19 16:18,"45 South St, Dallas, TX 75001" +236880,AA Batteries (4-pack),1,3.84,08/18/19 10:24,"212 Pine St, Los Angeles, CA 90001" +236881,AA Batteries (4-pack),2,3.84,08/23/19 07:54,"906 12th St, New York City, NY 10001" +236882,USB-C Charging Cable,1,11.95,08/21/19 00:25,"364 Jefferson St, Atlanta, GA 30301" +236883,AA Batteries (4-pack),1,3.84,08/03/19 10:01,"84 10th St, Los Angeles, CA 90001" +236884,Lightning Charging Cable,1,14.95,08/26/19 10:22,"401 Willow St, Los Angeles, CA 90001" +236885,AAA Batteries (4-pack),1,2.99,08/25/19 09:46,"332 2nd St, San Francisco, CA 94016" +236886,USB-C Charging Cable,1,11.95,08/28/19 15:41,"174 Jackson St, Los Angeles, CA 90001" +236887,Apple Airpods Headphones,1,150,08/10/19 13:47,"827 Lake St, San Francisco, CA 94016" +236888,Apple Airpods Headphones,1,150,08/31/19 11:52,"878 Willow St, Dallas, TX 75001" +236889,34in Ultrawide Monitor,1,379.99,08/28/19 00:20,"436 Washington St, Atlanta, GA 30301" +236890,AAA Batteries (4-pack),1,2.99,08/25/19 13:24,"763 Forest St, Portland, OR 97035" +236891,AA Batteries (4-pack),1,3.84,08/18/19 21:44,"759 Main St, San Francisco, CA 94016" +236892,Lightning Charging Cable,1,14.95,08/30/19 11:02,"460 Johnson St, Los Angeles, CA 90001" +236893,AAA Batteries (4-pack),1,2.99,08/24/19 11:04,"464 South St, San Francisco, CA 94016" +236894,iPhone,1,700,08/22/19 10:04,"354 Wilson St, Austin, TX 73301" +236894,Lightning Charging Cable,1,14.95,08/22/19 10:04,"354 Wilson St, Austin, TX 73301" +236895,USB-C Charging Cable,1,11.95,08/24/19 18:58,"778 Chestnut St, San Francisco, CA 94016" +236896,Apple Airpods Headphones,1,150,08/14/19 15:01,"501 4th St, Boston, MA 02215" +236897,Wired Headphones,1,11.99,08/18/19 18:02,"684 Center St, New York City, NY 10001" +236898,AAA Batteries (4-pack),1,2.99,08/14/19 22:11,"758 Jefferson St, Los Angeles, CA 90001" +236899,Bose SoundSport Headphones,1,99.99,08/21/19 13:01,"157 Main St, Boston, MA 02215" +236900,Wired Headphones,1,11.99,08/07/19 11:19,"127 Cherry St, San Francisco, CA 94016" +236901,Flatscreen TV,1,300,08/18/19 01:00,"130 11th St, Los Angeles, CA 90001" +236902,USB-C Charging Cable,1,11.95,08/26/19 12:30,"572 12th St, Seattle, WA 98101" +236902,Bose SoundSport Headphones,1,99.99,08/26/19 12:30,"572 12th St, Seattle, WA 98101" +236903,Bose SoundSport Headphones,1,99.99,08/14/19 19:13,"584 14th St, New York City, NY 10001" +236904,27in 4K Gaming Monitor,1,389.99,08/10/19 21:33,"426 Highland St, Boston, MA 02215" +236905,Wired Headphones,1,11.99,08/11/19 11:19,"483 Forest St, Portland, ME 04101" +236906,Bose SoundSport Headphones,1,99.99,08/21/19 20:53,"452 Adams St, Boston, MA 02215" +236907,Lightning Charging Cable,1,14.95,08/13/19 10:48,"300 Maple St, Seattle, WA 98101" +236908,Wired Headphones,2,11.99,08/05/19 14:46,"194 5th St, Los Angeles, CA 90001" +236909,AA Batteries (4-pack),1,3.84,08/18/19 14:13,"457 Madison St, New York City, NY 10001" +236910,AAA Batteries (4-pack),1,2.99,08/28/19 19:57,"938 Meadow St, San Francisco, CA 94016" +236911,Google Phone,1,600,08/22/19 09:31,"448 Jefferson St, Seattle, WA 98101" +236912,AA Batteries (4-pack),2,3.84,08/18/19 21:40,"510 Ridge St, Austin, TX 73301" +236913,USB-C Charging Cable,1,11.95,08/02/19 09:21,"538 Meadow St, Seattle, WA 98101" +236914,Bose SoundSport Headphones,1,99.99,08/26/19 19:22,"902 13th St, San Francisco, CA 94016" +236915,AA Batteries (4-pack),1,3.84,08/28/19 12:16,"68 Sunset St, Los Angeles, CA 90001" +236916,AAA Batteries (4-pack),2,2.99,08/03/19 14:29,"782 River St, Dallas, TX 75001" +236917,USB-C Charging Cable,1,11.95,08/25/19 10:48,"745 River St, Seattle, WA 98101" +236918,AAA Batteries (4-pack),1,2.99,08/10/19 16:43,"338 Sunset St, New York City, NY 10001" +236919,27in 4K Gaming Monitor,1,389.99,08/20/19 07:06,"684 Cedar St, San Francisco, CA 94016" +236920,Flatscreen TV,1,300,08/07/19 14:34,"995 Dogwood St, Atlanta, GA 30301" +236921,Bose SoundSport Headphones,1,99.99,08/22/19 09:37,"509 Adams St, Portland, ME 04101" +236922,Bose SoundSport Headphones,1,99.99,08/13/19 12:23,"624 Cherry St, Los Angeles, CA 90001" +236923,AAA Batteries (4-pack),2,2.99,08/06/19 14:04,"612 10th St, Seattle, WA 98101" +236924,AA Batteries (4-pack),1,3.84,08/06/19 07:36,"225 Elm St, Los Angeles, CA 90001" +236925,ThinkPad Laptop,1,999.99,08/01/19 12:12,"335 Sunset St, Seattle, WA 98101" +236926,AAA Batteries (4-pack),1,2.99,08/01/19 10:52,"272 10th St, Seattle, WA 98101" +236927,AAA Batteries (4-pack),1,2.99,08/19/19 22:20,"425 Hill St, New York City, NY 10001" +236928,Apple Airpods Headphones,1,150,08/20/19 17:07,"900 Forest St, San Francisco, CA 94016" +236929,27in 4K Gaming Monitor,1,389.99,08/23/19 11:11,"117 Main St, Portland, OR 97035" +236930,Lightning Charging Cable,1,14.95,08/24/19 15:48,"616 Cedar St, New York City, NY 10001" +236931,Wired Headphones,1,11.99,08/10/19 08:38,"10 14th St, Dallas, TX 75001" +236932,Apple Airpods Headphones,1,150,08/15/19 21:09,"141 Wilson St, Boston, MA 02215" +236933,27in 4K Gaming Monitor,1,389.99,08/28/19 19:25,"833 9th St, San Francisco, CA 94016" +236934,Google Phone,1,600,08/28/19 01:14,"713 13th St, Austin, TX 73301" +236935,Lightning Charging Cable,1,14.95,08/01/19 13:26,"495 11th St, Portland, ME 04101" +236936,Macbook Pro Laptop,1,1700,08/25/19 12:08,"237 6th St, Los Angeles, CA 90001" +236937,Google Phone,1,600,08/03/19 14:50,"210 Jackson St, Dallas, TX 75001" +236937,USB-C Charging Cable,1,11.95,08/03/19 14:50,"210 Jackson St, Dallas, TX 75001" +236938,AAA Batteries (4-pack),1,2.99,08/29/19 17:37,"116 Meadow St, San Francisco, CA 94016" +236939,20in Monitor,1,109.99,08/11/19 09:34,"589 Sunset St, Atlanta, GA 30301" +236940,iPhone,1,700,08/04/19 18:03,"305 10th St, New York City, NY 10001" +236940,Apple Airpods Headphones,1,150,08/04/19 18:03,"305 10th St, New York City, NY 10001" +236941,USB-C Charging Cable,1,11.95,08/22/19 07:12,"182 5th St, Los Angeles, CA 90001" +236942,34in Ultrawide Monitor,1,379.99,08/03/19 16:11,"915 13th St, Boston, MA 02215" +236943,Flatscreen TV,1,300,08/02/19 11:22,"709 7th St, Boston, MA 02215" +236944,34in Ultrawide Monitor,1,379.99,08/17/19 11:42,"307 Dogwood St, San Francisco, CA 94016" +236945,Lightning Charging Cable,1,14.95,08/30/19 11:31,"479 Washington St, San Francisco, CA 94016" +236946,Bose SoundSport Headphones,1,99.99,08/11/19 17:47,"730 Meadow St, Atlanta, GA 30301" +236947,AA Batteries (4-pack),1,3.84,08/02/19 06:57,"900 13th St, Los Angeles, CA 90001" +236948,27in 4K Gaming Monitor,1,389.99,08/29/19 17:34,"973 12th St, Austin, TX 73301" +236949,Bose SoundSport Headphones,1,99.99,08/01/19 12:41,"634 9th St, Boston, MA 02215" +236950,AA Batteries (4-pack),1,3.84,08/26/19 14:33,"368 6th St, Los Angeles, CA 90001" +236951,USB-C Charging Cable,1,11.95,08/21/19 12:13,"416 Madison St, San Francisco, CA 94016" +236952,Apple Airpods Headphones,1,150,08/07/19 06:07,"911 River St, Los Angeles, CA 90001" +236953,Wired Headphones,1,11.99,08/23/19 12:05,"441 Highland St, San Francisco, CA 94016" +236954,Lightning Charging Cable,1,14.95,08/04/19 19:47,"834 Hill St, Boston, MA 02215" +236955,ThinkPad Laptop,1,999.99,08/19/19 12:38,"544 Lake St, San Francisco, CA 94016" +236956,Bose SoundSport Headphones,1,99.99,08/03/19 03:39,"685 Forest St, San Francisco, CA 94016" +236957,Bose SoundSport Headphones,1,99.99,08/19/19 04:39,"373 Elm St, Atlanta, GA 30301" +236958,AA Batteries (4-pack),1,3.84,08/26/19 00:58,"402 Lincoln St, Atlanta, GA 30301" +236959,AAA Batteries (4-pack),1,2.99,08/23/19 21:33,"417 Jefferson St, New York City, NY 10001" +236960,Apple Airpods Headphones,1,150,08/27/19 19:04,"242 Elm St, Seattle, WA 98101" +236961,AA Batteries (4-pack),1,3.84,08/28/19 23:36,"494 Forest St, San Francisco, CA 94016" +236962,Wired Headphones,1,11.99,08/18/19 04:34,"763 Johnson St, Seattle, WA 98101" +236963,Vareebadd Phone,1,400,08/14/19 08:18,"339 4th St, Portland, OR 97035" +236964,Lightning Charging Cable,1,14.95,08/28/19 11:13,"321 4th St, Los Angeles, CA 90001" +236965,Apple Airpods Headphones,1,150,08/19/19 08:32,"244 Chestnut St, Portland, OR 97035" +236966,Apple Airpods Headphones,1,150,08/27/19 09:08,"127 West St, San Francisco, CA 94016" +236967,Lightning Charging Cable,1,14.95,08/02/19 09:52,"414 North St, Boston, MA 02215" +236968,Lightning Charging Cable,1,14.95,08/02/19 14:39,"947 Main St, San Francisco, CA 94016" +236969,AAA Batteries (4-pack),1,2.99,08/04/19 11:27,"744 4th St, New York City, NY 10001" +236970,Wired Headphones,2,11.99,08/27/19 05:38,"252 6th St, Atlanta, GA 30301" +236971,iPhone,1,700,08/26/19 19:46,"367 11th St, Los Angeles, CA 90001" +236972,Apple Airpods Headphones,1,150,08/09/19 15:58,"876 Ridge St, Boston, MA 02215" +236973,Apple Airpods Headphones,1,150,08/12/19 00:16,"238 Cherry St, Boston, MA 02215" +236974,USB-C Charging Cable,1,11.95,08/16/19 20:11,"598 Walnut St, Dallas, TX 75001" +236975,AAA Batteries (4-pack),1,2.99,08/06/19 20:26,"226 Madison St, Boston, MA 02215" +236976,20in Monitor,1,109.99,08/16/19 16:57,"812 Washington St, Atlanta, GA 30301" +236977,Bose SoundSport Headphones,1,99.99,08/14/19 00:57,"737 2nd St, Portland, OR 97035" +236978,Flatscreen TV,1,300,08/31/19 15:51,"436 West St, Portland, OR 97035" +236979,Lightning Charging Cable,1,14.95,08/28/19 15:36,"47 Ridge St, San Francisco, CA 94016" +236980,Bose SoundSport Headphones,1,99.99,08/15/19 08:03,"18 River St, Dallas, TX 75001" +236981,Lightning Charging Cable,1,14.95,08/07/19 15:30,"839 Lincoln St, New York City, NY 10001" +236982,AAA Batteries (4-pack),1,2.99,08/17/19 16:08,"150 Madison St, New York City, NY 10001" +236983,USB-C Charging Cable,1,11.95,08/26/19 13:23,"433 West St, Austin, TX 73301" +236984,ThinkPad Laptop,1,999.99,08/14/19 11:30,"240 Chestnut St, San Francisco, CA 94016" +236985,Bose SoundSport Headphones,1,99.99,08/28/19 14:42,"529 13th St, Boston, MA 02215" +236986,AAA Batteries (4-pack),1,2.99,08/26/19 22:26,"101 9th St, Atlanta, GA 30301" +236987,Google Phone,1,600,08/08/19 17:52,"799 6th St, Portland, ME 04101" +236988,AA Batteries (4-pack),1,3.84,08/30/19 12:48,"91 Main St, Austin, TX 73301" +236989,LG Dryer,1,600.0,08/07/19 18:47,"689 Cherry St, Seattle, WA 98101" +236990,Apple Airpods Headphones,1,150,08/24/19 19:45,"247 Spruce St, Austin, TX 73301" +236991,Apple Airpods Headphones,1,150,08/02/19 12:41,"35 11th St, Seattle, WA 98101" +236992,AAA Batteries (4-pack),2,2.99,08/01/19 20:59,"368 2nd St, Seattle, WA 98101" +236993,AA Batteries (4-pack),1,3.84,08/11/19 21:26,"895 Willow St, Los Angeles, CA 90001" +236994,Wired Headphones,1,11.99,08/21/19 02:11,"30 Madison St, Seattle, WA 98101" +236995,USB-C Charging Cable,1,11.95,08/23/19 14:14,"367 Chestnut St, Seattle, WA 98101" +236996,USB-C Charging Cable,1,11.95,08/14/19 17:17,"441 10th St, New York City, NY 10001" +236997,Macbook Pro Laptop,1,1700,08/25/19 16:38,"648 Park St, New York City, NY 10001" +236998,Lightning Charging Cable,1,14.95,08/19/19 21:45,"125 14th St, Los Angeles, CA 90001" +236999,Wired Headphones,1,11.99,08/19/19 19:32,"137 South St, San Francisco, CA 94016" +237000,iPhone,1,700,08/19/19 12:01,"647 8th St, New York City, NY 10001" +237001,27in FHD Monitor,1,149.99,08/11/19 06:44,"270 Maple St, San Francisco, CA 94016" +237002,Wired Headphones,1,11.99,08/06/19 12:22,"536 Cedar St, San Francisco, CA 94016" +237003,USB-C Charging Cable,1,11.95,08/13/19 21:19,"588 Cedar St, New York City, NY 10001" +237004,AA Batteries (4-pack),1,3.84,08/01/19 15:16,"589 7th St, Boston, MA 02215" +237005,iPhone,1,700,08/24/19 17:12,"943 14th St, Seattle, WA 98101" +237006,AAA Batteries (4-pack),1,2.99,08/02/19 01:41,"722 Washington St, San Francisco, CA 94016" +237007,AAA Batteries (4-pack),2,2.99,08/14/19 14:43,"858 Lake St, Austin, TX 73301" +237008,AAA Batteries (4-pack),1,2.99,08/08/19 02:54,"863 Meadow St, Seattle, WA 98101" +237009,AAA Batteries (4-pack),1,2.99,08/31/19 13:22,"479 Lincoln St, San Francisco, CA 94016" +237010,Lightning Charging Cable,1,14.95,08/06/19 17:22,"507 Adams St, Atlanta, GA 30301" +237011,AA Batteries (4-pack),1,3.84,08/03/19 13:49,"109 Lake St, Atlanta, GA 30301" +237012,AA Batteries (4-pack),1,3.84,08/04/19 16:49,"294 Dogwood St, Seattle, WA 98101" +237013,Wired Headphones,1,11.99,08/19/19 17:20,"477 South St, Boston, MA 02215" +237014,USB-C Charging Cable,1,11.95,08/14/19 12:50,"984 Lakeview St, San Francisco, CA 94016" +237015,Wired Headphones,1,11.99,08/04/19 12:17,"147 Washington St, New York City, NY 10001" +237016,AAA Batteries (4-pack),1,2.99,08/08/19 15:13,"801 Hill St, Los Angeles, CA 90001" +237017,Lightning Charging Cable,1,14.95,08/01/19 12:20,"388 Walnut St, Los Angeles, CA 90001" +237018,AA Batteries (4-pack),1,3.84,08/02/19 17:44,"506 6th St, Austin, TX 73301" +237019,34in Ultrawide Monitor,1,379.99,08/22/19 07:06,"846 Wilson St, Boston, MA 02215" +237020,USB-C Charging Cable,1,11.95,08/01/19 17:44,"216 Dogwood St, Los Angeles, CA 90001" +237021,27in FHD Monitor,1,149.99,08/20/19 18:26,"631 Center St, San Francisco, CA 94016" +237022,ThinkPad Laptop,1,999.99,08/04/19 07:15,"203 7th St, New York City, NY 10001" +237023,AAA Batteries (4-pack),1,2.99,08/06/19 09:22,"907 Hill St, San Francisco, CA 94016" +237024,27in FHD Monitor,1,149.99,08/01/19 08:49,"373 1st St, Los Angeles, CA 90001" +237025,AA Batteries (4-pack),3,3.84,08/19/19 09:53,"580 Pine St, Portland, OR 97035" +237026,27in FHD Monitor,1,149.99,08/18/19 12:37,"226 Lakeview St, Seattle, WA 98101" +237027,AA Batteries (4-pack),1,3.84,08/13/19 11:08,"954 Meadow St, San Francisco, CA 94016" +237028,Lightning Charging Cable,1,14.95,08/28/19 11:37,"897 Highland St, Dallas, TX 75001" +237029,27in 4K Gaming Monitor,1,389.99,08/01/19 13:57,"392 13th St, Atlanta, GA 30301" +237030,AAA Batteries (4-pack),1,2.99,08/15/19 17:42,"673 Cedar St, Portland, ME 04101" +237031,Apple Airpods Headphones,1,150,08/27/19 00:23,"997 Madison St, New York City, NY 10001" +237032,AAA Batteries (4-pack),1,2.99,08/11/19 14:42,"653 6th St, Portland, OR 97035" +237033,Apple Airpods Headphones,1,150,08/24/19 11:13,"392 Highland St, Portland, OR 97035" +237034,Google Phone,1,600,08/23/19 22:43,"335 Hickory St, Los Angeles, CA 90001" +237034,USB-C Charging Cable,1,11.95,08/23/19 22:43,"335 Hickory St, Los Angeles, CA 90001" +237035,Bose SoundSport Headphones,1,99.99,08/04/19 01:31,"558 Cherry St, San Francisco, CA 94016" +237036,Wired Headphones,1,11.99,08/23/19 10:48,"454 Spruce St, Boston, MA 02215" +237037,AAA Batteries (4-pack),1,2.99,08/25/19 16:20,"251 Hickory St, San Francisco, CA 94016" +237038,Flatscreen TV,1,300,08/22/19 18:52,"153 Center St, New York City, NY 10001" +237039,Lightning Charging Cable,1,14.95,08/23/19 13:51,"818 14th St, Los Angeles, CA 90001" +237040,Bose SoundSport Headphones,1,99.99,08/17/19 12:09,"655 Main St, Seattle, WA 98101" +237041,27in FHD Monitor,1,149.99,08/31/19 12:10,"682 Elm St, Dallas, TX 75001" +237042,Bose SoundSport Headphones,1,99.99,08/10/19 10:21,"658 11th St, Austin, TX 73301" +237043,27in FHD Monitor,1,149.99,08/18/19 08:59,"350 4th St, Boston, MA 02215" +237043,AAA Batteries (4-pack),1,2.99,08/18/19 08:59,"350 4th St, Boston, MA 02215" +237044,AA Batteries (4-pack),1,3.84,08/09/19 10:12,"790 Pine St, Austin, TX 73301" +237045,Lightning Charging Cable,1,14.95,08/10/19 11:09,"91 Hickory St, Atlanta, GA 30301" +237046,Lightning Charging Cable,1,14.95,08/19/19 13:28,"580 Maple St, Atlanta, GA 30301" +237047,Bose SoundSport Headphones,1,99.99,08/09/19 12:37,"553 Church St, New York City, NY 10001" +237048,AA Batteries (4-pack),2,3.84,08/05/19 13:17,"732 Jefferson St, Boston, MA 02215" +237049,Wired Headphones,1,11.99,08/19/19 09:41,"410 Madison St, Boston, MA 02215" +237050,27in FHD Monitor,1,149.99,08/08/19 20:09,"541 10th St, San Francisco, CA 94016" +237051,Apple Airpods Headphones,1,150,08/26/19 21:35,"480 Adams St, San Francisco, CA 94016" +237052,AA Batteries (4-pack),1,3.84,08/06/19 21:22,"470 Cherry St, New York City, NY 10001" +237053,ThinkPad Laptop,1,999.99,08/19/19 22:52,"174 Chestnut St, New York City, NY 10001" +237054,USB-C Charging Cable,2,11.95,08/11/19 07:09,"96 Willow St, New York City, NY 10001" +237055,AA Batteries (4-pack),1,3.84,08/08/19 11:10,"766 1st St, New York City, NY 10001" +237056,ThinkPad Laptop,1,999.99,08/11/19 20:40,"520 Ridge St, Austin, TX 73301" +237057,ThinkPad Laptop,1,999.99,08/28/19 17:06,"735 Wilson St, Los Angeles, CA 90001" +237058,Apple Airpods Headphones,1,150,08/28/19 13:44,"674 Jefferson St, Atlanta, GA 30301" +237059,Macbook Pro Laptop,1,1700,08/12/19 22:25,"762 Wilson St, Dallas, TX 75001" +237060,AA Batteries (4-pack),1,3.84,08/09/19 20:23,"370 Park St, San Francisco, CA 94016" +237061,Apple Airpods Headphones,1,150,08/09/19 07:18,"931 Wilson St, San Francisco, CA 94016" +237062,Wired Headphones,1,11.99,08/13/19 16:07,"374 Wilson St, San Francisco, CA 94016" +237063,AAA Batteries (4-pack),2,2.99,08/16/19 11:02,"190 10th St, Los Angeles, CA 90001" +237064,AAA Batteries (4-pack),1,2.99,08/08/19 22:35,"986 Forest St, Dallas, TX 75001" +237065,Bose SoundSport Headphones,1,99.99,08/29/19 17:09,"6 Church St, Atlanta, GA 30301" +237066,AAA Batteries (4-pack),1,2.99,08/04/19 23:09,"738 6th St, Los Angeles, CA 90001" +237067,Macbook Pro Laptop,1,1700,08/24/19 19:55,"242 Cherry St, Los Angeles, CA 90001" +237068,Bose SoundSport Headphones,1,99.99,08/09/19 18:04,"169 South St, Dallas, TX 75001" +237069,AAA Batteries (4-pack),1,2.99,08/08/19 13:57,"150 Center St, San Francisco, CA 94016" +237070,27in FHD Monitor,1,149.99,08/10/19 00:26,"826 North St, Dallas, TX 75001" +237071,Google Phone,1,600,08/04/19 15:35,"613 West St, Los Angeles, CA 90001" +237072,20in Monitor,1,109.99,08/26/19 22:23,"312 Washington St, San Francisco, CA 94016" +237073,Apple Airpods Headphones,1,150,08/24/19 22:09,"762 Ridge St, San Francisco, CA 94016" +237074,Flatscreen TV,1,300,08/10/19 19:16,"342 Elm St, Portland, ME 04101" +237075,Apple Airpods Headphones,1,150,08/12/19 20:52,"287 Maple St, Boston, MA 02215" +237076,LG Washing Machine,1,600.0,08/18/19 18:46,"869 Jackson St, Los Angeles, CA 90001" +237077,Apple Airpods Headphones,1,150,08/19/19 15:59,"31 Cherry St, Boston, MA 02215" +237078,Apple Airpods Headphones,1,150,08/13/19 11:18,"309 Main St, San Francisco, CA 94016" +237079,Lightning Charging Cable,1,14.95,08/29/19 12:28,"672 Washington St, Portland, OR 97035" +237080,AAA Batteries (4-pack),1,2.99,08/05/19 23:52,"704 Wilson St, Atlanta, GA 30301" +237081,AAA Batteries (4-pack),1,2.99,08/20/19 17:07,"831 Dogwood St, San Francisco, CA 94016" +237082,USB-C Charging Cable,1,11.95,08/02/19 19:30,"695 Wilson St, New York City, NY 10001" +237083,ThinkPad Laptop,1,999.99,08/11/19 17:43,"852 Pine St, Atlanta, GA 30301" +237084,AAA Batteries (4-pack),1,2.99,08/30/19 21:38,"400 River St, Atlanta, GA 30301" +237085,Google Phone,1,600,08/11/19 11:22,"163 Forest St, Austin, TX 73301" +237086,iPhone,1,700,08/07/19 17:26,"160 Lincoln St, Atlanta, GA 30301" +237087,Apple Airpods Headphones,1,150,08/24/19 15:55,"960 Madison St, New York City, NY 10001" +237088,Bose SoundSport Headphones,1,99.99,08/04/19 17:02,"370 West St, Seattle, WA 98101" +237089,27in 4K Gaming Monitor,1,389.99,08/15/19 07:51,"898 Walnut St, Los Angeles, CA 90001" +237090,Lightning Charging Cable,1,14.95,08/24/19 13:22,"541 Sunset St, Seattle, WA 98101" +237091,AA Batteries (4-pack),1,3.84,08/03/19 19:23,"45 Dogwood St, Dallas, TX 75001" +237092,Bose SoundSport Headphones,1,99.99,08/30/19 19:35,"337 Park St, Los Angeles, CA 90001" +237093,Macbook Pro Laptop,1,1700,08/05/19 13:06,"979 13th St, New York City, NY 10001" +237094,27in FHD Monitor,1,149.99,08/20/19 17:04,"419 8th St, Austin, TX 73301" +237095,AAA Batteries (4-pack),1,2.99,08/26/19 18:25,"505 Hickory St, Los Angeles, CA 90001" +237096,27in FHD Monitor,1,149.99,08/18/19 21:14,"582 9th St, Boston, MA 02215" +237097,Macbook Pro Laptop,1,1700,08/16/19 09:08,"408 4th St, San Francisco, CA 94016" +237098,Wired Headphones,1,11.99,08/30/19 13:06,"969 Wilson St, San Francisco, CA 94016" +237099,AA Batteries (4-pack),1,3.84,08/08/19 10:03,"371 2nd St, Atlanta, GA 30301" +237100,Apple Airpods Headphones,1,150,08/24/19 08:17,"41 Jackson St, Los Angeles, CA 90001" +237101,Google Phone,1,600,08/04/19 11:36,"685 Hill St, Dallas, TX 75001" +237101,USB-C Charging Cable,1,11.95,08/04/19 11:36,"685 Hill St, Dallas, TX 75001" +237102,Lightning Charging Cable,1,14.95,08/12/19 20:43,"460 North St, Los Angeles, CA 90001" +237103,Flatscreen TV,1,300,08/06/19 16:20,"778 10th St, New York City, NY 10001" +237104,Macbook Pro Laptop,1,1700,08/16/19 22:15,"944 6th St, New York City, NY 10001" +237105,Lightning Charging Cable,1,14.95,08/23/19 14:45,"637 South St, New York City, NY 10001" +237106,Lightning Charging Cable,1,14.95,08/11/19 14:14,"393 Church St, Boston, MA 02215" +237107,Lightning Charging Cable,1,14.95,08/04/19 19:49,"886 Hickory St, Portland, OR 97035" +237108,Google Phone,1,600,08/22/19 12:54,"507 Elm St, Boston, MA 02215" +237109,LG Washing Machine,1,600.0,08/06/19 09:34,"812 Lakeview St, Atlanta, GA 30301" +237110,AAA Batteries (4-pack),2,2.99,08/25/19 16:39,"947 Johnson St, New York City, NY 10001" +237111,USB-C Charging Cable,1,11.95,08/11/19 07:28,"250 Hill St, San Francisco, CA 94016" +237112,Google Phone,1,600,08/01/19 04:05,"107 Cherry St, Boston, MA 02215" +237113,AAA Batteries (4-pack),1,2.99,08/10/19 23:11,"104 9th St, Seattle, WA 98101" +237114,Bose SoundSport Headphones,1,99.99,08/12/19 13:27,"829 5th St, Portland, OR 97035" +237115,Lightning Charging Cable,2,14.95,08/06/19 19:50,"480 Meadow St, Los Angeles, CA 90001" +237116,ThinkPad Laptop,1,999.99,08/14/19 18:52,"998 14th St, San Francisco, CA 94016" +237117,AA Batteries (4-pack),3,3.84,08/12/19 12:51,"844 Cherry St, San Francisco, CA 94016" +237118,Macbook Pro Laptop,1,1700,08/18/19 19:17,"465 10th St, San Francisco, CA 94016" +237119,AAA Batteries (4-pack),1,2.99,08/13/19 20:24,"427 Dogwood St, Los Angeles, CA 90001" +237120,USB-C Charging Cable,1,11.95,08/02/19 02:48,"158 River St, Dallas, TX 75001" +237121,AA Batteries (4-pack),1,3.84,08/06/19 13:30,"158 Madison St, San Francisco, CA 94016" +237122,USB-C Charging Cable,1,11.95,08/09/19 23:12,"993 Jackson St, San Francisco, CA 94016" +237123,AAA Batteries (4-pack),1,2.99,08/02/19 14:36,"724 4th St, Boston, MA 02215" +237124,Apple Airpods Headphones,1,150,08/09/19 14:06,"47 Meadow St, New York City, NY 10001" +237125,Wired Headphones,1,11.99,08/15/19 23:21,"146 7th St, Los Angeles, CA 90001" +237126,Apple Airpods Headphones,1,150,08/20/19 12:02,"643 Lake St, Boston, MA 02215" +237127,Lightning Charging Cable,1,14.95,08/29/19 12:29,"860 8th St, Los Angeles, CA 90001" +237128,LG Dryer,1,600.0,08/02/19 09:36,"952 12th St, New York City, NY 10001" +237128,Lightning Charging Cable,2,14.95,08/02/19 09:36,"952 12th St, New York City, NY 10001" +237129,USB-C Charging Cable,1,11.95,08/17/19 13:30,"761 Pine St, Boston, MA 02215" +237130,Macbook Pro Laptop,1,1700,08/30/19 12:43,"896 8th St, Portland, OR 97035" +237131,27in FHD Monitor,1,149.99,08/11/19 22:14,"842 Lincoln St, Boston, MA 02215" +237132,Macbook Pro Laptop,1,1700,08/01/19 10:58,"720 Chestnut St, Seattle, WA 98101" +237133,AA Batteries (4-pack),1,3.84,08/13/19 18:00,"422 Johnson St, Los Angeles, CA 90001" +237134,USB-C Charging Cable,1,11.95,08/30/19 18:49,"277 Chestnut St, Boston, MA 02215" +237135,Flatscreen TV,1,300,08/28/19 23:56,"153 2nd St, Atlanta, GA 30301" +237136,Bose SoundSport Headphones,1,99.99,08/06/19 22:17,"270 7th St, Los Angeles, CA 90001" +237137,Wired Headphones,1,11.99,08/12/19 13:55,"597 Maple St, San Francisco, CA 94016" +237138,20in Monitor,1,109.99,08/22/19 19:30,"169 Jackson St, Los Angeles, CA 90001" +237139,Lightning Charging Cable,1,14.95,08/24/19 22:15,"516 Forest St, Boston, MA 02215" +237140,Lightning Charging Cable,1,14.95,08/20/19 12:19,"810 Lakeview St, New York City, NY 10001" +237141,USB-C Charging Cable,1,11.95,08/20/19 05:51,"672 Forest St, San Francisco, CA 94016" +237142,Macbook Pro Laptop,1,1700,08/05/19 11:10,"887 13th St, San Francisco, CA 94016" +237143,Apple Airpods Headphones,1,150,08/31/19 22:04,"776 11th St, Los Angeles, CA 90001" +237144,Lightning Charging Cable,1,14.95,08/26/19 13:03,"347 Jackson St, Boston, MA 02215" +237145,AAA Batteries (4-pack),1,2.99,08/16/19 18:16,"55 14th St, San Francisco, CA 94016" +237146,USB-C Charging Cable,1,11.95,08/16/19 22:09,"60 Adams St, San Francisco, CA 94016" +237147,Lightning Charging Cable,1,14.95,08/11/19 18:46,"656 12th St, San Francisco, CA 94016" +237148,Bose SoundSport Headphones,1,99.99,08/09/19 19:38,"869 Church St, Austin, TX 73301" +237149,34in Ultrawide Monitor,1,379.99,08/12/19 15:56,"75 Spruce St, Atlanta, GA 30301" +237150,Lightning Charging Cable,1,14.95,08/18/19 20:24,"189 7th St, Boston, MA 02215" +237151,USB-C Charging Cable,2,11.95,08/15/19 08:02,"500 Main St, Los Angeles, CA 90001" +237152,34in Ultrawide Monitor,1,379.99,08/12/19 01:46,"254 Dogwood St, Austin, TX 73301" +237153,AAA Batteries (4-pack),1,2.99,08/23/19 13:28,"489 Forest St, Los Angeles, CA 90001" +237154,USB-C Charging Cable,1,11.95,08/01/19 11:11,"827 Cherry St, Portland, OR 97035" +237155,Flatscreen TV,1,300,08/03/19 20:18,"573 Washington St, Los Angeles, CA 90001" +237156,USB-C Charging Cable,2,11.95,08/25/19 10:58,"565 Center St, San Francisco, CA 94016" +237157,AAA Batteries (4-pack),1,2.99,08/11/19 18:50,"937 Lincoln St, Seattle, WA 98101" +237158,AA Batteries (4-pack),2,3.84,08/22/19 07:09,"696 River St, Atlanta, GA 30301" +237159,Apple Airpods Headphones,1,150,08/08/19 19:13,"252 Hill St, Atlanta, GA 30301" +237160,Lightning Charging Cable,1,14.95,08/16/19 08:02,"851 Park St, New York City, NY 10001" +237161,Flatscreen TV,1,300,08/20/19 11:34,"526 Wilson St, San Francisco, CA 94016" +237162,Bose SoundSport Headphones,1,99.99,08/23/19 10:10,"763 Park St, Dallas, TX 75001" +237163,Vareebadd Phone,1,400,08/27/19 20:27,"603 Elm St, Boston, MA 02215" +237164,AA Batteries (4-pack),1,3.84,08/11/19 09:28,"229 9th St, Seattle, WA 98101" +237165,AAA Batteries (4-pack),2,2.99,08/26/19 12:41,"850 14th St, Atlanta, GA 30301" +237166,AA Batteries (4-pack),2,3.84,08/22/19 18:04,"767 Elm St, Los Angeles, CA 90001" +237167,Bose SoundSport Headphones,1,99.99,08/30/19 21:41,"208 5th St, Los Angeles, CA 90001" +237168,Bose SoundSport Headphones,1,99.99,08/14/19 17:44,"738 Pine St, San Francisco, CA 94016" +237169,Apple Airpods Headphones,1,150,08/28/19 20:28,"448 Highland St, San Francisco, CA 94016" +237170,AA Batteries (4-pack),1,3.84,08/21/19 11:04,"457 Main St, Seattle, WA 98101" +237171,Lightning Charging Cable,1,14.95,08/06/19 00:02,"408 Ridge St, New York City, NY 10001" +237172,USB-C Charging Cable,1,11.95,08/28/19 11:08,"644 1st St, San Francisco, CA 94016" +237173,Wired Headphones,1,11.99,08/14/19 19:02,"615 13th St, San Francisco, CA 94016" +237173,Wired Headphones,1,11.99,08/14/19 19:02,"615 13th St, San Francisco, CA 94016" +237174,Wired Headphones,1,11.99,08/22/19 11:05,"224 Hickory St, San Francisco, CA 94016" +237175,AAA Batteries (4-pack),1,2.99,08/14/19 10:51,"495 Lake St, Austin, TX 73301" +237176,Wired Headphones,1,11.99,08/16/19 14:23,"881 10th St, Boston, MA 02215" +237177,Wired Headphones,2,11.99,08/02/19 11:19,"995 Jefferson St, San Francisco, CA 94016" +237178,AAA Batteries (4-pack),1,2.99,08/21/19 16:48,"6 Sunset St, New York City, NY 10001" +237179,Bose SoundSport Headphones,1,99.99,08/04/19 18:04,"363 8th St, New York City, NY 10001" +237180,Lightning Charging Cable,1,14.95,08/05/19 21:34,"166 North St, New York City, NY 10001" +237181,34in Ultrawide Monitor,1,379.99,08/03/19 15:58,"888 Cherry St, San Francisco, CA 94016" +237182,Apple Airpods Headphones,1,150,08/11/19 00:13,"975 Center St, Portland, OR 97035" +237183,Lightning Charging Cable,1,14.95,08/07/19 20:43,"610 9th St, New York City, NY 10001" +237184,27in FHD Monitor,2,149.99,08/27/19 14:40,"677 West St, Boston, MA 02215" +237185,ThinkPad Laptop,1,999.99,08/01/19 05:51,"280 Cedar St, Atlanta, GA 30301" +237186,Bose SoundSport Headphones,1,99.99,08/28/19 18:13,"264 Lake St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +237187,27in FHD Monitor,1,149.99,08/06/19 20:24,"279 8th St, Atlanta, GA 30301" +237188,Wired Headphones,1,11.99,08/18/19 17:49,"362 2nd St, New York City, NY 10001" +237189,AA Batteries (4-pack),2,3.84,08/20/19 10:54,"910 4th St, San Francisco, CA 94016" +237190,AA Batteries (4-pack),1,3.84,08/30/19 18:47,"392 13th St, Seattle, WA 98101" +237191,Apple Airpods Headphones,1,150,08/17/19 12:27,"568 Ridge St, San Francisco, CA 94016" +237192,27in FHD Monitor,1,149.99,08/02/19 17:00,"302 Jackson St, New York City, NY 10001" +237193,27in 4K Gaming Monitor,1,389.99,08/04/19 17:39,"791 Lakeview St, San Francisco, CA 94016" +237194,USB-C Charging Cable,1,11.95,08/08/19 16:52,"693 Johnson St, Boston, MA 02215" +237195,ThinkPad Laptop,1,999.99,08/31/19 12:00,"324 Church St, Los Angeles, CA 90001" +237196,iPhone,1,700,08/11/19 14:45,"182 Dogwood St, New York City, NY 10001" +237196,Lightning Charging Cable,1,14.95,08/11/19 14:45,"182 Dogwood St, New York City, NY 10001" +237196,Apple Airpods Headphones,1,150,08/11/19 14:45,"182 Dogwood St, New York City, NY 10001" +237196,Wired Headphones,1,11.99,08/11/19 14:45,"182 Dogwood St, New York City, NY 10001" +237197,20in Monitor,1,109.99,08/18/19 15:30,"445 9th St, San Francisco, CA 94016" +237198,USB-C Charging Cable,1,11.95,08/24/19 07:39,"700 North St, San Francisco, CA 94016" +237199,34in Ultrawide Monitor,1,379.99,08/18/19 16:48,"424 Church St, Boston, MA 02215" +237200,USB-C Charging Cable,1,11.95,08/19/19 13:25,"69 12th St, Boston, MA 02215" +237201,AAA Batteries (4-pack),1,2.99,08/03/19 22:46,"64 Washington St, San Francisco, CA 94016" +237201,AA Batteries (4-pack),1,3.84,08/03/19 22:46,"64 Washington St, San Francisco, CA 94016" +237202,27in FHD Monitor,1,149.99,08/03/19 17:20,"99 Hickory St, San Francisco, CA 94016" +237203,AAA Batteries (4-pack),1,2.99,08/06/19 11:12,"574 Main St, Atlanta, GA 30301" +237204,27in FHD Monitor,1,149.99,08/03/19 12:36,"216 Johnson St, Los Angeles, CA 90001" +237205,iPhone,1,700,08/04/19 20:35,"976 Meadow St, San Francisco, CA 94016" +237206,Wired Headphones,3,11.99,08/08/19 10:24,"611 6th St, Boston, MA 02215" +237207,34in Ultrawide Monitor,1,379.99,08/14/19 08:36,"61 Cedar St, Boston, MA 02215" +237208,ThinkPad Laptop,1,999.99,08/08/19 08:32,"650 Cedar St, San Francisco, CA 94016" +237209,Wired Headphones,1,11.99,08/19/19 20:23,"122 11th St, Los Angeles, CA 90001" +237210,Bose SoundSport Headphones,1,99.99,08/09/19 19:40,"637 Washington St, New York City, NY 10001" +237211,USB-C Charging Cable,1,11.95,08/25/19 09:43,"414 Walnut St, New York City, NY 10001" +237212,ThinkPad Laptop,1,999.99,08/16/19 13:43,"967 Sunset St, New York City, NY 10001" +237213,AA Batteries (4-pack),2,3.84,08/14/19 15:16,"73 Maple St, Boston, MA 02215" +237214,Bose SoundSport Headphones,1,99.99,08/25/19 20:53,"532 Highland St, Seattle, WA 98101" +237215,20in Monitor,1,109.99,08/30/19 17:01,"359 7th St, Los Angeles, CA 90001" +237216,Wired Headphones,1,11.99,08/07/19 20:39,"666 Johnson St, San Francisco, CA 94016" +237217,AA Batteries (4-pack),3,3.84,08/31/19 00:20,"332 7th St, Los Angeles, CA 90001" +237218,USB-C Charging Cable,1,11.95,08/19/19 19:07,"65 8th St, Austin, TX 73301" +237219,AA Batteries (4-pack),1,3.84,08/08/19 13:55,"448 Meadow St, Los Angeles, CA 90001" +237220,27in FHD Monitor,1,149.99,08/19/19 20:58,"766 Washington St, San Francisco, CA 94016" +237221,Lightning Charging Cable,1,14.95,08/07/19 15:33,"545 5th St, Boston, MA 02215" +237222,Lightning Charging Cable,1,14.95,08/10/19 11:34,"401 Adams St, Austin, TX 73301" +237223,Google Phone,1,600,08/10/19 19:31,"674 10th St, Los Angeles, CA 90001" +237223,Wired Headphones,1,11.99,08/10/19 19:31,"674 10th St, Los Angeles, CA 90001" +237224,Lightning Charging Cable,1,14.95,08/01/19 09:23,"71 Jefferson St, San Francisco, CA 94016" +237225,Wired Headphones,1,11.99,08/29/19 16:16,"671 Jefferson St, Los Angeles, CA 90001" +237226,Google Phone,1,600,08/12/19 08:12,"926 Washington St, San Francisco, CA 94016" +237227,AAA Batteries (4-pack),2,2.99,08/15/19 15:35,"954 Highland St, New York City, NY 10001" +237228,34in Ultrawide Monitor,1,379.99,08/16/19 18:18,"934 Spruce St, Boston, MA 02215" +237229,ThinkPad Laptop,1,999.99,08/27/19 21:38,"374 Hickory St, Boston, MA 02215" +237230,AA Batteries (4-pack),2,3.84,08/12/19 21:40,"513 Center St, Portland, OR 97035" +237231,Apple Airpods Headphones,1,150,08/10/19 21:56,"286 Meadow St, Dallas, TX 75001" +237232,USB-C Charging Cable,1,11.95,08/31/19 16:46,"146 Walnut St, Dallas, TX 75001" +237233,AAA Batteries (4-pack),1,2.99,08/25/19 08:50,"851 11th St, Dallas, TX 75001" +237234,34in Ultrawide Monitor,1,379.99,08/17/19 12:19,"562 Dogwood St, San Francisco, CA 94016" +237235,USB-C Charging Cable,1,11.95,08/16/19 17:32,"305 10th St, San Francisco, CA 94016" +237236,AAA Batteries (4-pack),1,2.99,08/24/19 21:11,"825 South St, New York City, NY 10001" +237237,AAA Batteries (4-pack),1,2.99,08/10/19 14:09,"713 Jackson St, San Francisco, CA 94016" +237238,AAA Batteries (4-pack),1,2.99,08/12/19 13:57,"301 2nd St, Dallas, TX 75001" +237239,Lightning Charging Cable,1,14.95,08/15/19 21:18,"915 Hill St, New York City, NY 10001" +237240,Bose SoundSport Headphones,1,99.99,08/23/19 12:45,"717 8th St, San Francisco, CA 94016" +237241,Flatscreen TV,1,300,08/11/19 19:19,"27 Lake St, Los Angeles, CA 90001" +237242,AAA Batteries (4-pack),1,2.99,08/29/19 15:30,"871 Cedar St, New York City, NY 10001" +237243,AAA Batteries (4-pack),1,2.99,08/16/19 13:40,"23 11th St, Austin, TX 73301" +237244,Wired Headphones,1,11.99,08/11/19 15:49,"841 West St, Los Angeles, CA 90001" +237245,Wired Headphones,1,11.99,08/03/19 16:58,"388 Hill St, Austin, TX 73301" +237246,Apple Airpods Headphones,1,150,08/20/19 12:41,"888 2nd St, San Francisco, CA 94016" +237247,20in Monitor,1,109.99,08/25/19 12:18,"999 Madison St, Dallas, TX 75001" +237248,iPhone,1,700,08/07/19 13:55,"482 8th St, Los Angeles, CA 90001" +237248,Lightning Charging Cable,1,14.95,08/07/19 13:55,"482 8th St, Los Angeles, CA 90001" +237249,AA Batteries (4-pack),1,3.84,08/06/19 19:04,"409 5th St, San Francisco, CA 94016" +237250,Lightning Charging Cable,1,14.95,08/17/19 10:37,"545 12th St, Seattle, WA 98101" +237251,AA Batteries (4-pack),1,3.84,08/28/19 15:11,"910 Lincoln St, Austin, TX 73301" +237251,Macbook Pro Laptop,1,1700,08/28/19 15:11,"910 Lincoln St, Austin, TX 73301" +237252,Google Phone,1,600,08/06/19 11:11,"801 Lake St, San Francisco, CA 94016" +237253,Flatscreen TV,1,300,08/06/19 09:53,"649 River St, Seattle, WA 98101" +237254,AA Batteries (4-pack),1,3.84,08/15/19 21:00,"265 Dogwood St, Seattle, WA 98101" +237255,Apple Airpods Headphones,1,150,08/09/19 21:46,"443 Highland St, San Francisco, CA 94016" +237256,AA Batteries (4-pack),1,3.84,08/26/19 10:04,"146 4th St, Austin, TX 73301" +237257,AAA Batteries (4-pack),2,2.99,08/05/19 22:45,"48 Lakeview St, Austin, TX 73301" +237258,34in Ultrawide Monitor,1,379.99,08/11/19 19:12,"258 2nd St, Seattle, WA 98101" +237259,AA Batteries (4-pack),1,3.84,08/01/19 20:10,"629 Johnson St, Los Angeles, CA 90001" +237260,USB-C Charging Cable,1,11.95,08/18/19 15:40,"773 Hill St, Portland, OR 97035" +237261,Wired Headphones,1,11.99,08/13/19 00:07,"386 Cherry St, Los Angeles, CA 90001" +237262,Wired Headphones,1,11.99,08/19/19 10:01,"700 Forest St, Los Angeles, CA 90001" +237263,Apple Airpods Headphones,1,150,08/31/19 00:45,"853 Cedar St, Boston, MA 02215" +237264,Wired Headphones,1,11.99,08/13/19 04:28,"19 Hill St, San Francisco, CA 94016" +237265,AAA Batteries (4-pack),1,2.99,08/15/19 10:13,"740 Adams St, New York City, NY 10001" +237266,Apple Airpods Headphones,1,150,08/18/19 11:12,"56 Elm St, San Francisco, CA 94016" +237267,AA Batteries (4-pack),1,3.84,08/21/19 13:53,"119 Maple St, Austin, TX 73301" +237268,Lightning Charging Cable,1,14.95,08/08/19 15:04,"867 14th St, Dallas, TX 75001" +237269,Wired Headphones,1,11.99,08/28/19 22:52,"385 13th St, San Francisco, CA 94016" +237270,34in Ultrawide Monitor,1,379.99,08/31/19 20:16,"153 9th St, Atlanta, GA 30301" +237271,Apple Airpods Headphones,1,150,08/02/19 05:44,"181 Dogwood St, Dallas, TX 75001" +237272,AA Batteries (4-pack),1,3.84,08/18/19 10:17,"465 Lakeview St, Los Angeles, CA 90001" +237272,AA Batteries (4-pack),3,3.84,08/18/19 10:17,"465 Lakeview St, Los Angeles, CA 90001" +237273,Google Phone,1,600,08/22/19 14:03,"341 9th St, San Francisco, CA 94016" +237274,ThinkPad Laptop,1,999.99,08/13/19 22:32,"968 2nd St, Portland, OR 97035" +237275,Lightning Charging Cable,2,14.95,08/04/19 20:24,"448 Spruce St, Austin, TX 73301" +237276,ThinkPad Laptop,1,999.99,08/27/19 20:48,"99 Park St, Atlanta, GA 30301" +237277,20in Monitor,1,109.99,08/27/19 14:09,"627 Cherry St, Atlanta, GA 30301" +237278,AA Batteries (4-pack),1,3.84,08/23/19 09:58,"595 6th St, Los Angeles, CA 90001" +237279,Lightning Charging Cable,1,14.95,08/25/19 12:32,"900 Sunset St, Boston, MA 02215" +237280,Flatscreen TV,1,300,08/05/19 23:16,"104 7th St, San Francisco, CA 94016" +237281,AA Batteries (4-pack),2,3.84,08/23/19 12:03,"117 Cedar St, San Francisco, CA 94016" +237282,AAA Batteries (4-pack),2,2.99,08/17/19 13:54,"884 8th St, Atlanta, GA 30301" +237283,Lightning Charging Cable,1,14.95,08/13/19 22:01,"669 North St, San Francisco, CA 94016" +237284,Bose SoundSport Headphones,1,99.99,08/25/19 00:37,"731 Jefferson St, Portland, OR 97035" +237285,Lightning Charging Cable,1,14.95,08/15/19 23:35,"409 Jackson St, Atlanta, GA 30301" +237286,Flatscreen TV,1,300,08/27/19 12:32,"183 Hickory St, Atlanta, GA 30301" +237287,27in 4K Gaming Monitor,1,389.99,08/04/19 23:24,"873 North St, Atlanta, GA 30301" +237288,ThinkPad Laptop,1,999.99,08/26/19 13:35,"464 Sunset St, San Francisco, CA 94016" +237289,Lightning Charging Cable,1,14.95,08/29/19 07:00,"431 Lincoln St, New York City, NY 10001" +237290,USB-C Charging Cable,2,11.95,08/13/19 18:33,"512 8th St, Seattle, WA 98101" +237291,ThinkPad Laptop,1,999.99,08/06/19 19:12,"315 Johnson St, San Francisco, CA 94016" +237292,Lightning Charging Cable,1,14.95,08/03/19 08:32,"978 Willow St, Dallas, TX 75001" +237293,AA Batteries (4-pack),1,3.84,08/24/19 21:26,"615 4th St, Seattle, WA 98101" +237294,Apple Airpods Headphones,1,150,08/12/19 08:48,"264 Pine St, Portland, ME 04101" +237295,iPhone,1,700,08/15/19 14:25,"734 6th St, Seattle, WA 98101" +237295,Apple Airpods Headphones,1,150,08/15/19 14:25,"734 6th St, Seattle, WA 98101" +237296,AA Batteries (4-pack),1,3.84,08/19/19 17:52,"447 Johnson St, Austin, TX 73301" +237297,27in 4K Gaming Monitor,1,389.99,08/06/19 19:48,"577 Washington St, Los Angeles, CA 90001" +237298,USB-C Charging Cable,1,11.95,08/11/19 18:54,"250 10th St, Los Angeles, CA 90001" +237299,27in FHD Monitor,1,149.99,08/18/19 18:34,"763 Sunset St, New York City, NY 10001" +237300,USB-C Charging Cable,1,11.95,08/06/19 00:23,"748 14th St, Atlanta, GA 30301" +237301,Lightning Charging Cable,1,14.95,08/07/19 00:25,"714 2nd St, New York City, NY 10001" +237302,ThinkPad Laptop,1,999.99,08/26/19 02:40,"3 Sunset St, Los Angeles, CA 90001" +237303,Google Phone,1,600,08/06/19 18:48,"741 5th St, Atlanta, GA 30301" +237304,Lightning Charging Cable,2,14.95,08/03/19 21:13,"605 Cherry St, Dallas, TX 75001" +237305,34in Ultrawide Monitor,1,379.99,08/20/19 10:10,"774 Park St, Boston, MA 02215" +237306,Macbook Pro Laptop,1,1700,08/24/19 14:39,"920 West St, Seattle, WA 98101" +237307,USB-C Charging Cable,1,11.95,08/31/19 23:52,"282 Willow St, San Francisco, CA 94016" +237308,AAA Batteries (4-pack),1,2.99,08/11/19 16:59,"730 Chestnut St, San Francisco, CA 94016" +237309,Bose SoundSport Headphones,1,99.99,08/01/19 16:49,"717 Walnut St, Atlanta, GA 30301" +237310,USB-C Charging Cable,1,11.95,08/28/19 15:10,"727 Cherry St, Dallas, TX 75001" +237311,Bose SoundSport Headphones,1,99.99,08/30/19 10:03,"139 9th St, New York City, NY 10001" +237312,iPhone,1,700,08/27/19 18:24,"309 6th St, Los Angeles, CA 90001" +237313,AAA Batteries (4-pack),1,2.99,08/17/19 18:45,"140 West St, Los Angeles, CA 90001" +237313,Apple Airpods Headphones,1,150,08/17/19 18:45,"140 West St, Los Angeles, CA 90001" +237314,AAA Batteries (4-pack),1,2.99,08/22/19 19:01,"953 13th St, San Francisco, CA 94016" +237315,AA Batteries (4-pack),1,3.84,08/14/19 15:34,"688 8th St, San Francisco, CA 94016" +237316,AA Batteries (4-pack),1,3.84,08/04/19 09:29,"950 Elm St, San Francisco, CA 94016" +237317,Wired Headphones,1,11.99,08/13/19 19:52,"831 13th St, New York City, NY 10001" +237318,Bose SoundSport Headphones,1,99.99,08/13/19 20:19,"350 Hill St, New York City, NY 10001" +237319,iPhone,1,700,08/21/19 13:05,"824 7th St, San Francisco, CA 94016" +237320,20in Monitor,1,109.99,08/03/19 06:04,"280 Pine St, Dallas, TX 75001" +237321,Macbook Pro Laptop,1,1700,08/17/19 12:00,"666 Washington St, Dallas, TX 75001" +237322,Lightning Charging Cable,2,14.95,08/06/19 06:33,"954 Hill St, Los Angeles, CA 90001" +237323,AAA Batteries (4-pack),1,2.99,08/17/19 08:26,"753 Washington St, Seattle, WA 98101" +237324,Lightning Charging Cable,1,14.95,08/01/19 11:06,"431 Elm St, Los Angeles, CA 90001" +237325,USB-C Charging Cable,1,11.95,08/16/19 17:04,"530 Lincoln St, Austin, TX 73301" +237326,Bose SoundSport Headphones,1,99.99,08/20/19 18:17,"255 Cherry St, Los Angeles, CA 90001" +237327,20in Monitor,1,109.99,08/29/19 12:16,"44 South St, Portland, ME 04101" +237328,Lightning Charging Cable,1,14.95,08/15/19 22:30,"680 Wilson St, Seattle, WA 98101" +237329,AAA Batteries (4-pack),3,2.99,08/19/19 17:56,"872 River St, Austin, TX 73301" +237330,Wired Headphones,1,11.99,08/24/19 10:39,"653 Johnson St, San Francisco, CA 94016" +237331,USB-C Charging Cable,1,11.95,08/06/19 19:29,"449 Sunset St, Los Angeles, CA 90001" +237332,Google Phone,1,600,08/13/19 12:14,"104 West St, Los Angeles, CA 90001" +237333,AA Batteries (4-pack),2,3.84,08/06/19 18:36,"532 Wilson St, New York City, NY 10001" +237334,AAA Batteries (4-pack),2,2.99,08/17/19 12:02,"900 Sunset St, Seattle, WA 98101" +237335,27in FHD Monitor,1,149.99,08/05/19 21:06,"223 Sunset St, Boston, MA 02215" +237336,Lightning Charging Cable,1,14.95,08/21/19 23:17,"630 1st St, San Francisco, CA 94016" +,,,,, +237337,AAA Batteries (4-pack),3,2.99,08/12/19 03:50,"568 Wilson St, San Francisco, CA 94016" +237338,27in FHD Monitor,1,149.99,08/26/19 08:02,"507 12th St, Atlanta, GA 30301" +237339,20in Monitor,1,109.99,08/30/19 22:57,"671 Elm St, Boston, MA 02215" +237340,Apple Airpods Headphones,1,150,08/04/19 00:13,"880 Washington St, Seattle, WA 98101" +237341,AAA Batteries (4-pack),1,2.99,08/20/19 23:06,"677 4th St, Boston, MA 02215" +237342,USB-C Charging Cable,2,11.95,08/08/19 17:56,"355 13th St, San Francisco, CA 94016" +237343,Lightning Charging Cable,1,14.95,08/17/19 21:45,"608 Highland St, Boston, MA 02215" +237344,Macbook Pro Laptop,1,1700,08/10/19 17:48,"451 Adams St, Seattle, WA 98101" +237345,USB-C Charging Cable,1,11.95,08/16/19 14:52,"823 Highland St, San Francisco, CA 94016" +237346,Google Phone,1,600,08/02/19 22:03,"786 5th St, Portland, ME 04101" +237346,USB-C Charging Cable,1,11.95,08/02/19 22:03,"786 5th St, Portland, ME 04101" +237347,Vareebadd Phone,1,400,08/30/19 18:14,"5 Jackson St, Dallas, TX 75001" +237348,AAA Batteries (4-pack),2,2.99,08/16/19 21:23,"568 Sunset St, New York City, NY 10001" +237349,AA Batteries (4-pack),1,3.84,08/06/19 17:07,"125 Jefferson St, Portland, OR 97035" +237350,Bose SoundSport Headphones,1,99.99,08/15/19 16:15,"648 Meadow St, San Francisco, CA 94016" +237351,AA Batteries (4-pack),1,3.84,08/14/19 16:16,"875 2nd St, Portland, ME 04101" +237352,Bose SoundSport Headphones,1,99.99,08/13/19 11:29,"782 5th St, Seattle, WA 98101" +237353,USB-C Charging Cable,1,11.95,08/04/19 16:09,"395 Jackson St, San Francisco, CA 94016" +237354,AAA Batteries (4-pack),1,2.99,08/15/19 16:16,"201 Sunset St, Los Angeles, CA 90001" +237355,Wired Headphones,1,11.99,08/28/19 17:53,"762 Main St, Los Angeles, CA 90001" +237356,20in Monitor,1,109.99,08/13/19 11:03,"131 7th St, San Francisco, CA 94016" +237357,Google Phone,1,600,08/02/19 17:02,"71 Adams St, Dallas, TX 75001" +237358,Wired Headphones,1,11.99,08/09/19 11:10,"16 River St, Atlanta, GA 30301" +237359,34in Ultrawide Monitor,1,379.99,08/18/19 02:06,"534 Ridge St, Seattle, WA 98101" +237360,AAA Batteries (4-pack),4,2.99,08/17/19 12:24,"966 7th St, San Francisco, CA 94016" +237361,Lightning Charging Cable,1,14.95,08/06/19 14:36,"177 10th St, Boston, MA 02215" +237362,Wired Headphones,1,11.99,08/23/19 14:51,"223 6th St, San Francisco, CA 94016" +237363,27in FHD Monitor,1,149.99,08/18/19 12:21,"886 Wilson St, Boston, MA 02215" +237364,AA Batteries (4-pack),1,3.84,08/26/19 16:53,"117 14th St, Boston, MA 02215" +237364,Wired Headphones,1,11.99,08/26/19 16:53,"117 14th St, Boston, MA 02215" +237365,Wired Headphones,1,11.99,08/17/19 18:17,"888 11th St, Los Angeles, CA 90001" +237366,Flatscreen TV,1,300,08/26/19 12:08,"89 12th St, Dallas, TX 75001" +237367,Apple Airpods Headphones,1,150,08/29/19 19:41,"168 River St, Los Angeles, CA 90001" +237368,USB-C Charging Cable,1,11.95,08/08/19 13:11,"244 Park St, New York City, NY 10001" +237369,ThinkPad Laptop,1,999.99,08/15/19 16:07,"10 10th St, Dallas, TX 75001" +237370,AAA Batteries (4-pack),1,2.99,08/11/19 17:32,"299 Forest St, Boston, MA 02215" +237371,AA Batteries (4-pack),2,3.84,08/29/19 13:45,"220 Washington St, Dallas, TX 75001" +237372,Google Phone,1,600,08/09/19 12:33,"344 Church St, New York City, NY 10001" +237373,27in FHD Monitor,1,149.99,08/04/19 22:08,"162 Jefferson St, Portland, OR 97035" +237374,Bose SoundSport Headphones,1,99.99,08/03/19 12:45,"381 1st St, San Francisco, CA 94016" +237375,Vareebadd Phone,1,400,08/15/19 15:17,"621 Elm St, San Francisco, CA 94016" +237376,Vareebadd Phone,1,400,08/29/19 18:14,"969 Jefferson St, San Francisco, CA 94016" +237377,AAA Batteries (4-pack),1,2.99,08/22/19 17:35,"725 Church St, Atlanta, GA 30301" +237378,AAA Batteries (4-pack),1,2.99,08/06/19 20:18,"670 Pine St, San Francisco, CA 94016" +237379,Lightning Charging Cable,1,14.95,08/26/19 18:25,"908 Sunset St, Atlanta, GA 30301" +237380,Lightning Charging Cable,1,14.95,08/22/19 16:39,"611 Church St, Boston, MA 02215" +237381,Lightning Charging Cable,1,14.95,08/08/19 11:23,"982 Jefferson St, Atlanta, GA 30301" +237382,Lightning Charging Cable,1,14.95,08/15/19 15:29,"775 Willow St, Atlanta, GA 30301" +237383,AA Batteries (4-pack),1,3.84,08/24/19 07:02,"864 Walnut St, Dallas, TX 75001" +237384,27in FHD Monitor,1,149.99,08/06/19 13:23,"221 2nd St, Los Angeles, CA 90001" +237385,Macbook Pro Laptop,1,1700,08/20/19 19:10,"884 Johnson St, Atlanta, GA 30301" +237386,USB-C Charging Cable,2,11.95,08/14/19 23:12,"831 10th St, Atlanta, GA 30301" +237387,Lightning Charging Cable,1,14.95,08/12/19 18:59,"746 4th St, San Francisco, CA 94016" +237388,USB-C Charging Cable,1,11.95,08/23/19 23:02,"553 Willow St, Boston, MA 02215" +237389,Wired Headphones,1,11.99,08/05/19 22:20,"67 Ridge St, San Francisco, CA 94016" +237390,Bose SoundSport Headphones,1,99.99,08/26/19 12:15,"173 9th St, Dallas, TX 75001" +237391,USB-C Charging Cable,1,11.95,08/03/19 20:19,"449 Johnson St, Los Angeles, CA 90001" +237392,AA Batteries (4-pack),1,3.84,08/08/19 16:19,"401 Pine St, Boston, MA 02215" +237393,USB-C Charging Cable,1,11.95,08/29/19 22:23,"99 4th St, Seattle, WA 98101" +237394,Macbook Pro Laptop,1,1700,08/25/19 07:08,"538 6th St, San Francisco, CA 94016" +237395,Wired Headphones,1,11.99,08/04/19 23:07,"72 Main St, San Francisco, CA 94016" +237396,iPhone,1,700,08/15/19 17:14,"85 2nd St, Dallas, TX 75001" +237397,27in 4K Gaming Monitor,1,389.99,08/14/19 16:03,"600 Center St, San Francisco, CA 94016" +237398,USB-C Charging Cable,1,11.95,08/12/19 08:21,"478 6th St, Dallas, TX 75001" +237399,USB-C Charging Cable,1,11.95,08/10/19 20:24,"574 Highland St, Boston, MA 02215" +237400,USB-C Charging Cable,1,11.95,08/12/19 11:12,"423 Jefferson St, New York City, NY 10001" +237401,Bose SoundSport Headphones,1,99.99,08/31/19 20:29,"176 Lake St, Los Angeles, CA 90001" +237402,USB-C Charging Cable,1,11.95,08/22/19 10:25,"76 Center St, Los Angeles, CA 90001" +237403,AA Batteries (4-pack),1,3.84,08/08/19 11:11,"662 Elm St, San Francisco, CA 94016" +237404,AA Batteries (4-pack),1,3.84,08/19/19 22:17,"787 Jackson St, Atlanta, GA 30301" +237405,Lightning Charging Cable,1,14.95,08/18/19 17:27,"66 Cedar St, Atlanta, GA 30301" +237406,Wired Headphones,1,11.99,08/16/19 15:54,"634 Cherry St, Los Angeles, CA 90001" +237407,USB-C Charging Cable,1,11.95,08/25/19 21:49,"391 River St, Los Angeles, CA 90001" +237408,LG Dryer,1,600.0,08/22/19 18:48,"556 Jackson St, Dallas, TX 75001" +237409,Lightning Charging Cable,1,14.95,08/15/19 17:32,"703 7th St, Dallas, TX 75001" +237410,Google Phone,1,600,08/19/19 06:35,"565 Johnson St, Portland, OR 97035" +237410,USB-C Charging Cable,1,11.95,08/19/19 06:35,"565 Johnson St, Portland, OR 97035" +237411,Lightning Charging Cable,1,14.95,08/01/19 07:23,"436 Lake St, Austin, TX 73301" +237412,AAA Batteries (4-pack),1,2.99,08/19/19 10:27,"263 River St, Los Angeles, CA 90001" +237413,Apple Airpods Headphones,1,150,08/15/19 20:23,"766 Madison St, Seattle, WA 98101" +237414,ThinkPad Laptop,1,999.99,08/24/19 23:46,"896 Lakeview St, Atlanta, GA 30301" +237415,AA Batteries (4-pack),2,3.84,08/11/19 22:00,"983 Jackson St, Boston, MA 02215" +237416,AAA Batteries (4-pack),2,2.99,08/03/19 21:12,"324 Park St, New York City, NY 10001" +237417,34in Ultrawide Monitor,1,379.99,08/04/19 20:09,"846 Elm St, San Francisco, CA 94016" +237418,Lightning Charging Cable,1,14.95,08/22/19 12:42,"437 Adams St, New York City, NY 10001" +237419,AAA Batteries (4-pack),1,2.99,08/20/19 13:52,"898 Wilson St, Atlanta, GA 30301" +237420,iPhone,1,700,08/01/19 19:18,"610 1st St, Atlanta, GA 30301" +237420,Lightning Charging Cable,1,14.95,08/01/19 19:18,"610 1st St, Atlanta, GA 30301" +237421,AA Batteries (4-pack),1,3.84,08/11/19 21:29,"436 Ridge St, Atlanta, GA 30301" +237422,Flatscreen TV,1,300,08/22/19 22:16,"617 7th St, New York City, NY 10001" +237423,Bose SoundSport Headphones,1,99.99,08/12/19 11:42,"23 Cedar St, San Francisco, CA 94016" +237424,Bose SoundSport Headphones,1,99.99,08/26/19 19:32,"765 Walnut St, New York City, NY 10001" +237425,27in 4K Gaming Monitor,1,389.99,08/02/19 12:20,"469 Elm St, New York City, NY 10001" +237426,Bose SoundSport Headphones,1,99.99,08/30/19 19:47,"881 Jackson St, Boston, MA 02215" +237427,Google Phone,1,600,08/18/19 20:04,"647 Lincoln St, San Francisco, CA 94016" +237428,Macbook Pro Laptop,1,1700,08/22/19 14:27,"98 6th St, Boston, MA 02215" +237429,27in FHD Monitor,1,149.99,08/23/19 10:01,"447 Church St, San Francisco, CA 94016" +237430,LG Washing Machine,1,600.0,08/03/19 13:50,"352 Meadow St, San Francisco, CA 94016" +237431,Lightning Charging Cable,1,14.95,08/28/19 22:24,"280 West St, Atlanta, GA 30301" +237432,AA Batteries (4-pack),1,3.84,08/27/19 12:22,"481 8th St, Portland, OR 97035" +237433,Google Phone,1,600,08/11/19 22:20,"755 Jackson St, Portland, OR 97035" +237434,AA Batteries (4-pack),1,3.84,08/10/19 08:43,"605 Willow St, Seattle, WA 98101" +237435,USB-C Charging Cable,1,11.95,08/31/19 11:05,"732 Lakeview St, San Francisco, CA 94016" +237436,Flatscreen TV,1,300,08/01/19 08:36,"64 Lincoln St, Seattle, WA 98101" +237437,Apple Airpods Headphones,1,150,08/19/19 14:02,"141 Pine St, Los Angeles, CA 90001" +237438,Lightning Charging Cable,1,14.95,08/05/19 14:56,"821 8th St, Boston, MA 02215" +237439,Wired Headphones,1,11.99,08/14/19 19:31,"411 Meadow St, Boston, MA 02215" +237440,Apple Airpods Headphones,1,150,08/07/19 19:59,"984 Lake St, Los Angeles, CA 90001" +237441,AA Batteries (4-pack),1,3.84,08/13/19 12:20,"245 Spruce St, Los Angeles, CA 90001" +237442,Flatscreen TV,1,300,08/05/19 14:14,"849 9th St, San Francisco, CA 94016" +237443,AAA Batteries (4-pack),1,2.99,08/06/19 13:37,"965 Cherry St, Los Angeles, CA 90001" +237444,Apple Airpods Headphones,1,150,08/23/19 18:35,"560 Chestnut St, New York City, NY 10001" +237445,Apple Airpods Headphones,1,150,08/05/19 22:22,"769 Cedar St, Seattle, WA 98101" +237446,Google Phone,1,600,08/14/19 19:49,"906 Main St, San Francisco, CA 94016" +237446,Apple Airpods Headphones,1,150,08/14/19 19:49,"906 Main St, San Francisco, CA 94016" +237447,Wired Headphones,2,11.99,08/21/19 19:31,"617 Madison St, Portland, OR 97035" +237448,Vareebadd Phone,1,400,08/24/19 00:10,"539 5th St, San Francisco, CA 94016" +237449,Wired Headphones,1,11.99,08/14/19 12:22,"148 Wilson St, Seattle, WA 98101" +237450,AA Batteries (4-pack),1,3.84,08/31/19 15:33,"785 Maple St, San Francisco, CA 94016" +237451,Bose SoundSport Headphones,1,99.99,08/14/19 06:58,"819 Cedar St, Atlanta, GA 30301" +237452,AAA Batteries (4-pack),3,2.99,08/12/19 12:21,"440 7th St, Atlanta, GA 30301" +237453,Wired Headphones,1,11.99,08/22/19 11:46,"410 5th St, Boston, MA 02215" +237454,20in Monitor,1,109.99,08/05/19 21:09,"719 Park St, Seattle, WA 98101" +237455,Flatscreen TV,1,300,08/20/19 12:56,"316 Jackson St, Los Angeles, CA 90001" +237456,34in Ultrawide Monitor,1,379.99,08/21/19 17:18,"933 8th St, Seattle, WA 98101" +237457,Bose SoundSport Headphones,1,99.99,08/01/19 17:53,"26 Madison St, Boston, MA 02215" +237458,AAA Batteries (4-pack),2,2.99,08/16/19 10:40,"994 Elm St, Dallas, TX 75001" +237459,AAA Batteries (4-pack),2,2.99,08/18/19 21:15,"8 Wilson St, New York City, NY 10001" +237460,AAA Batteries (4-pack),1,2.99,08/05/19 15:00,"160 South St, San Francisco, CA 94016" +237461,Lightning Charging Cable,1,14.95,08/31/19 11:15,"82 Chestnut St, Boston, MA 02215" +237462,iPhone,1,700,08/31/19 18:39,"35 Johnson St, Los Angeles, CA 90001" +237463,USB-C Charging Cable,1,11.95,08/10/19 15:33,"229 River St, Portland, OR 97035" +237464,Wired Headphones,1,11.99,08/16/19 22:31,"616 Adams St, New York City, NY 10001" +237465,Wired Headphones,1,11.99,08/03/19 11:27,"800 Church St, San Francisco, CA 94016" +237466,Bose SoundSport Headphones,1,99.99,08/14/19 11:46,"907 10th St, Los Angeles, CA 90001" +237467,AA Batteries (4-pack),1,3.84,08/02/19 12:46,"716 Forest St, San Francisco, CA 94016" +237468,AA Batteries (4-pack),2,3.84,08/02/19 17:56,"988 Jefferson St, San Francisco, CA 94016" +237469,Wired Headphones,1,11.99,08/17/19 12:40,"314 9th St, Los Angeles, CA 90001" +237470,27in 4K Gaming Monitor,1,389.99,08/21/19 19:23,"882 Hill St, San Francisco, CA 94016" +237471,AAA Batteries (4-pack),1,2.99,08/10/19 13:07,"6 Madison St, Boston, MA 02215" +237472,27in FHD Monitor,1,149.99,08/04/19 18:42,"312 Maple St, New York City, NY 10001" +237473,USB-C Charging Cable,1,11.95,08/27/19 23:46,"690 Cherry St, San Francisco, CA 94016" +237474,AA Batteries (4-pack),1,3.84,08/02/19 16:04,"768 Main St, Los Angeles, CA 90001" +237475,Bose SoundSport Headphones,1,99.99,08/09/19 16:35,"941 Church St, Los Angeles, CA 90001" +237475,Lightning Charging Cable,1,14.95,08/09/19 16:35,"941 Church St, Los Angeles, CA 90001" +237476,Google Phone,1,600,08/13/19 02:42,"123 9th St, New York City, NY 10001" +237476,Apple Airpods Headphones,1,150,08/13/19 02:42,"123 9th St, New York City, NY 10001" +237477,USB-C Charging Cable,2,11.95,08/30/19 16:32,"526 12th St, Portland, OR 97035" +237478,Bose SoundSport Headphones,1,99.99,08/27/19 08:10,"284 River St, Austin, TX 73301" +237479,Apple Airpods Headphones,1,150,08/28/19 14:53,"143 Johnson St, Los Angeles, CA 90001" +237480,AA Batteries (4-pack),1,3.84,08/12/19 17:47,"472 Lake St, Austin, TX 73301" +237481,AA Batteries (4-pack),1,3.84,08/15/19 18:53,"645 River St, San Francisco, CA 94016" +237482,AAA Batteries (4-pack),1,2.99,08/16/19 14:54,"960 Wilson St, San Francisco, CA 94016" +237483,Bose SoundSport Headphones,1,99.99,08/16/19 18:41,"686 1st St, Boston, MA 02215" +237484,USB-C Charging Cable,1,11.95,08/26/19 20:38,"748 Hill St, Los Angeles, CA 90001" +237485,ThinkPad Laptop,1,999.99,08/04/19 18:13,"87 West St, Austin, TX 73301" +237486,ThinkPad Laptop,1,999.99,08/13/19 23:07,"423 5th St, Austin, TX 73301" +237487,Bose SoundSport Headphones,1,99.99,08/13/19 12:11,"134 5th St, Los Angeles, CA 90001" +237488,AA Batteries (4-pack),1,3.84,08/28/19 20:57,"44 Jefferson St, Dallas, TX 75001" +237489,USB-C Charging Cable,1,11.95,08/09/19 21:44,"150 Cedar St, San Francisco, CA 94016" +237490,Flatscreen TV,1,300,08/14/19 13:41,"555 Washington St, Los Angeles, CA 90001" +237491,Wired Headphones,1,11.99,08/08/19 07:02,"736 11th St, Atlanta, GA 30301" +237492,27in 4K Gaming Monitor,1,389.99,08/05/19 22:22,"631 Adams St, San Francisco, CA 94016" +237493,USB-C Charging Cable,1,11.95,08/11/19 16:24,"922 Lake St, San Francisco, CA 94016" +237494,Wired Headphones,1,11.99,08/18/19 14:07,"384 Sunset St, Austin, TX 73301" +237495,USB-C Charging Cable,1,11.95,08/12/19 17:18,"612 Walnut St, Austin, TX 73301" +237496,Flatscreen TV,1,300,08/19/19 06:33,"893 Sunset St, Boston, MA 02215" +237497,27in FHD Monitor,1,149.99,08/04/19 19:56,"203 11th St, Los Angeles, CA 90001" +237498,LG Dryer,1,600.0,08/15/19 06:39,"343 Jackson St, Seattle, WA 98101" +237499,27in FHD Monitor,1,149.99,08/24/19 21:18,"391 Dogwood St, Los Angeles, CA 90001" +237500,27in FHD Monitor,1,149.99,08/17/19 12:57,"327 Spruce St, Portland, OR 97035" +237501,Lightning Charging Cable,1,14.95,08/18/19 20:00,"442 Park St, New York City, NY 10001" +237502,Bose SoundSport Headphones,1,99.99,08/09/19 14:11,"374 1st St, San Francisco, CA 94016" +237503,Lightning Charging Cable,1,14.95,08/22/19 10:38,"973 5th St, San Francisco, CA 94016" +237504,USB-C Charging Cable,1,11.95,08/21/19 16:51,"745 Pine St, San Francisco, CA 94016" +237505,Bose SoundSport Headphones,2,99.99,08/06/19 17:28,"107 12th St, San Francisco, CA 94016" +237506,AAA Batteries (4-pack),1,2.99,08/18/19 18:27,"317 Cedar St, Boston, MA 02215" +237507,27in 4K Gaming Monitor,1,389.99,08/03/19 10:39,"395 Highland St, Seattle, WA 98101" +237508,Wired Headphones,1,11.99,08/01/19 18:43,"706 Jackson St, New York City, NY 10001" +237509,Bose SoundSport Headphones,1,99.99,08/08/19 16:44,"791 14th St, Atlanta, GA 30301" +237510,Lightning Charging Cable,1,14.95,08/14/19 22:48,"559 Johnson St, San Francisco, CA 94016" +237511,27in FHD Monitor,1,149.99,08/26/19 05:22,"139 6th St, New York City, NY 10001" +237512,USB-C Charging Cable,1,11.95,08/19/19 10:55,"602 Lincoln St, Boston, MA 02215" +237512,iPhone,1,700,08/19/19 10:55,"602 Lincoln St, Boston, MA 02215" +237513,Wired Headphones,1,11.99,08/20/19 14:54,"23 7th St, New York City, NY 10001" +237514,Wired Headphones,1,11.99,08/24/19 19:43,"140 West St, Boston, MA 02215" +237515,Apple Airpods Headphones,1,150,08/04/19 12:24,"121 4th St, Atlanta, GA 30301" +237516,Bose SoundSport Headphones,1,99.99,08/12/19 13:46,"882 6th St, Dallas, TX 75001" +237517,iPhone,1,700,08/11/19 17:07,"23 Lincoln St, Seattle, WA 98101" +237518,34in Ultrawide Monitor,1,379.99,08/30/19 11:31,"169 14th St, New York City, NY 10001" +237519,AA Batteries (4-pack),1,3.84,08/17/19 20:11,"668 Pine St, San Francisco, CA 94016" +237520,AA Batteries (4-pack),1,3.84,08/24/19 07:01,"942 Jefferson St, San Francisco, CA 94016" +237521,27in FHD Monitor,1,149.99,08/01/19 21:31,"571 Sunset St, Atlanta, GA 30301" +237522,Vareebadd Phone,1,400,08/16/19 20:45,"549 4th St, San Francisco, CA 94016" +237522,USB-C Charging Cable,1,11.95,08/16/19 20:45,"549 4th St, San Francisco, CA 94016" +237523,Lightning Charging Cable,1,14.95,08/29/19 18:30,"522 Hickory St, Portland, OR 97035" +237524,AA Batteries (4-pack),1,3.84,08/14/19 14:19,"590 Hickory St, Portland, ME 04101" +237525,Bose SoundSport Headphones,1,99.99,08/06/19 14:09,"815 Cherry St, New York City, NY 10001" +237526,Wired Headphones,1,11.99,08/30/19 02:31,"475 Chestnut St, San Francisco, CA 94016" +237527,Apple Airpods Headphones,1,150,08/12/19 09:53,"446 West St, Atlanta, GA 30301" +237528,Flatscreen TV,1,300,08/24/19 09:21,"173 Willow St, New York City, NY 10001" +237529,USB-C Charging Cable,1,11.95,08/02/19 14:12,"385 Main St, San Francisco, CA 94016" +237530,Bose SoundSport Headphones,1,99.99,08/16/19 08:38,"763 11th St, San Francisco, CA 94016" +237531,AA Batteries (4-pack),3,3.84,08/10/19 10:49,"273 Lincoln St, New York City, NY 10001" +237532,AA Batteries (4-pack),1,3.84,08/02/19 08:57,"80 11th St, New York City, NY 10001" +237533,USB-C Charging Cable,1,11.95,08/03/19 09:42,"770 Dogwood St, Portland, OR 97035" +237534,Vareebadd Phone,1,400,08/26/19 15:22,"674 11th St, Boston, MA 02215" +237535,iPhone,1,700,08/05/19 19:54,"58 10th St, San Francisco, CA 94016" +237536,AAA Batteries (4-pack),1,2.99,08/20/19 12:13,"838 11th St, Boston, MA 02215" +237537,Wired Headphones,1,11.99,08/12/19 21:17,"467 Spruce St, San Francisco, CA 94016" +237538,Lightning Charging Cable,1,14.95,08/26/19 15:57,"160 Meadow St, New York City, NY 10001" +237539,Apple Airpods Headphones,1,150,08/29/19 15:27,"857 Main St, Portland, OR 97035" +237540,AA Batteries (4-pack),1,3.84,08/23/19 17:02,"757 Jackson St, Boston, MA 02215" +237541,Lightning Charging Cable,1,14.95,08/21/19 14:54,"352 Meadow St, Atlanta, GA 30301" +237542,Wired Headphones,1,11.99,08/25/19 09:28,"22 10th St, San Francisco, CA 94016" +237543,AAA Batteries (4-pack),1,2.99,08/04/19 16:05,"636 4th St, Dallas, TX 75001" +237544,27in FHD Monitor,1,149.99,08/09/19 12:20,"720 Lakeview St, San Francisco, CA 94016" +237545,Apple Airpods Headphones,1,150,08/15/19 21:34,"938 2nd St, San Francisco, CA 94016" +237546,AA Batteries (4-pack),2,3.84,08/01/19 19:02,"771 Park St, Los Angeles, CA 90001" +237547,27in FHD Monitor,1,149.99,08/11/19 10:56,"543 5th St, Los Angeles, CA 90001" +237548,Lightning Charging Cable,1,14.95,08/18/19 13:25,"34 Johnson St, San Francisco, CA 94016" +237549,Bose SoundSport Headphones,1,99.99,08/23/19 13:44,"377 13th St, New York City, NY 10001" +237550,AAA Batteries (4-pack),2,2.99,08/06/19 22:25,"531 Cherry St, San Francisco, CA 94016" +237551,27in 4K Gaming Monitor,1,389.99,08/02/19 05:13,"367 Ridge St, San Francisco, CA 94016" +237552,Apple Airpods Headphones,1,150,08/28/19 10:35,"283 Dogwood St, Seattle, WA 98101" +237553,27in FHD Monitor,1,149.99,08/16/19 09:19,"133 Willow St, New York City, NY 10001" +237554,USB-C Charging Cable,1,11.95,08/06/19 06:53,"158 Maple St, Los Angeles, CA 90001" +237555,Flatscreen TV,1,300,08/17/19 11:02,"578 Lakeview St, Seattle, WA 98101" +237556,AA Batteries (4-pack),1,3.84,08/08/19 09:15,"637 9th St, San Francisco, CA 94016" +237557,Wired Headphones,1,11.99,08/06/19 14:11,"487 Hill St, Atlanta, GA 30301" +237558,iPhone,1,700,08/31/19 14:02,"725 Wilson St, Los Angeles, CA 90001" +237559,27in FHD Monitor,1,149.99,08/06/19 16:29,"847 2nd St, Seattle, WA 98101" +237560,27in FHD Monitor,1,149.99,08/21/19 14:27,"411 Wilson St, Portland, OR 97035" +237561,Lightning Charging Cable,1,14.95,08/26/19 15:01,"571 12th St, Atlanta, GA 30301" +237562,Wired Headphones,1,11.99,08/13/19 10:23,"391 Willow St, Portland, OR 97035" +237563,Lightning Charging Cable,1,14.95,08/01/19 19:46,"293 5th St, Atlanta, GA 30301" +237564,Lightning Charging Cable,1,14.95,08/11/19 12:23,"531 Cedar St, Los Angeles, CA 90001" +237565,Apple Airpods Headphones,1,150,08/06/19 14:57,"463 South St, New York City, NY 10001" +237566,USB-C Charging Cable,1,11.95,08/15/19 12:33,"280 Ridge St, Atlanta, GA 30301" +237567,27in 4K Gaming Monitor,1,389.99,08/07/19 09:34,"868 Washington St, Boston, MA 02215" +237568,Flatscreen TV,1,300,08/19/19 17:42,"70 Lakeview St, San Francisco, CA 94016" +237569,ThinkPad Laptop,1,999.99,08/11/19 07:54,"687 1st St, Atlanta, GA 30301" +237570,USB-C Charging Cable,1,11.95,08/06/19 11:51,"626 1st St, Los Angeles, CA 90001" +237571,AA Batteries (4-pack),1,3.84,08/20/19 06:30,"579 South St, New York City, NY 10001" +237572,27in FHD Monitor,1,149.99,08/04/19 18:04,"993 Willow St, Los Angeles, CA 90001" +237573,USB-C Charging Cable,1,11.95,08/22/19 11:36,"127 4th St, San Francisco, CA 94016" +237574,Wired Headphones,1,11.99,08/08/19 23:23,"674 12th St, San Francisco, CA 94016" +237575,AAA Batteries (4-pack),1,2.99,08/24/19 20:12,"143 South St, Los Angeles, CA 90001" +237576,Bose SoundSport Headphones,1,99.99,08/26/19 15:55,"171 West St, Los Angeles, CA 90001" +237577,AAA Batteries (4-pack),1,2.99,08/30/19 17:55,"174 13th St, Los Angeles, CA 90001" +237578,Bose SoundSport Headphones,1,99.99,08/04/19 13:18,"472 10th St, New York City, NY 10001" +237579,USB-C Charging Cable,1,11.95,08/26/19 11:55,"662 2nd St, Los Angeles, CA 90001" +237580,Apple Airpods Headphones,1,150,08/27/19 15:30,"205 Spruce St, San Francisco, CA 94016" +237581,USB-C Charging Cable,1,11.95,08/24/19 13:29,"830 13th St, Seattle, WA 98101" +237582,USB-C Charging Cable,1,11.95,08/14/19 02:06,"24 Lakeview St, Atlanta, GA 30301" +237583,AA Batteries (4-pack),1,3.84,08/13/19 19:31,"455 Jackson St, Austin, TX 73301" +237584,AAA Batteries (4-pack),1,2.99,08/15/19 23:42,"867 Highland St, San Francisco, CA 94016" +237585,iPhone,1,700,08/04/19 21:58,"130 Walnut St, Seattle, WA 98101" +237586,Google Phone,1,600,08/16/19 20:04,"358 Adams St, Austin, TX 73301" +237587,Apple Airpods Headphones,1,150,08/26/19 09:42,"703 Lake St, Dallas, TX 75001" +237588,AA Batteries (4-pack),1,3.84,08/31/19 21:20,"623 Jackson St, San Francisco, CA 94016" +237589,Flatscreen TV,1,300,08/04/19 10:00,"480 12th St, Boston, MA 02215" +237590,AA Batteries (4-pack),1,3.84,08/05/19 22:31,"816 Main St, New York City, NY 10001" +237591,Lightning Charging Cable,1,14.95,08/04/19 11:55,"11 Pine St, San Francisco, CA 94016" +237592,27in 4K Gaming Monitor,1,389.99,08/13/19 04:55,"131 Wilson St, Austin, TX 73301" +237593,27in FHD Monitor,1,149.99,08/17/19 21:18,"243 13th St, New York City, NY 10001" +237594,34in Ultrawide Monitor,1,379.99,08/09/19 08:53,"349 Main St, Portland, OR 97035" +237595,AAA Batteries (4-pack),1,2.99,08/24/19 09:12,"909 Lakeview St, Los Angeles, CA 90001" +237596,27in 4K Gaming Monitor,1,389.99,08/02/19 16:35,"270 Hill St, Seattle, WA 98101" +237597,34in Ultrawide Monitor,1,379.99,08/10/19 10:35,"54 Sunset St, San Francisco, CA 94016" +237598,AAA Batteries (4-pack),2,2.99,08/04/19 08:32,"570 12th St, Los Angeles, CA 90001" +237599,iPhone,1,700,08/09/19 21:50,"75 Church St, San Francisco, CA 94016" +237600,Lightning Charging Cable,1,14.95,08/14/19 10:02,"113 Wilson St, New York City, NY 10001" +237601,AA Batteries (4-pack),1,3.84,08/05/19 17:55,"937 Chestnut St, Dallas, TX 75001" +237602,Google Phone,1,600,08/30/19 20:55,"338 7th St, Los Angeles, CA 90001" +237603,USB-C Charging Cable,1,11.95,08/25/19 07:40,"833 4th St, New York City, NY 10001" +237604,Vareebadd Phone,1,400,08/24/19 09:43,"474 Chestnut St, New York City, NY 10001" +237604,Wired Headphones,1,11.99,08/24/19 09:43,"474 Chestnut St, New York City, NY 10001" +237605,AAA Batteries (4-pack),1,2.99,08/14/19 11:37,"301 Maple St, San Francisco, CA 94016" +237606,Bose SoundSport Headphones,1,99.99,08/13/19 16:03,"291 North St, New York City, NY 10001" +237607,Bose SoundSport Headphones,1,99.99,08/31/19 23:38,"369 Park St, Austin, TX 73301" +237608,USB-C Charging Cable,1,11.95,08/20/19 20:55,"344 Walnut St, Los Angeles, CA 90001" +237609,USB-C Charging Cable,1,11.95,08/31/19 11:45,"787 Jefferson St, Los Angeles, CA 90001" +237610,Wired Headphones,1,11.99,08/16/19 10:47,"121 Hickory St, New York City, NY 10001" +237611,Wired Headphones,2,11.99,08/09/19 20:10,"195 North St, New York City, NY 10001" +237612,AA Batteries (4-pack),1,3.84,08/17/19 11:59,"639 Wilson St, New York City, NY 10001" +237613,Google Phone,1,600,08/16/19 11:30,"30 Hill St, New York City, NY 10001" +237614,AA Batteries (4-pack),1,3.84,08/02/19 20:14,"574 Lake St, Austin, TX 73301" +237615,AA Batteries (4-pack),1,3.84,08/05/19 13:53,"67 Maple St, New York City, NY 10001" +237616,AAA Batteries (4-pack),2,2.99,08/12/19 22:52,"21 Dogwood St, New York City, NY 10001" +237617,Bose SoundSport Headphones,1,99.99,08/22/19 11:47,"544 9th St, Atlanta, GA 30301" +237618,27in FHD Monitor,1,149.99,08/14/19 12:42,"325 Hill St, San Francisco, CA 94016" +237619,Wired Headphones,1,11.99,08/14/19 11:18,"228 Dogwood St, New York City, NY 10001" +237620,AAA Batteries (4-pack),2,2.99,08/16/19 05:11,"175 Jefferson St, Boston, MA 02215" +237621,AA Batteries (4-pack),1,3.84,08/06/19 17:06,"153 2nd St, Los Angeles, CA 90001" +237622,AA Batteries (4-pack),3,3.84,08/31/19 16:15,"464 North St, Boston, MA 02215" +237623,Wired Headphones,2,11.99,08/27/19 13:36,"777 Spruce St, Atlanta, GA 30301" +237624,USB-C Charging Cable,1,11.95,08/04/19 16:59,"966 Cherry St, New York City, NY 10001" +237625,LG Dryer,1,600.0,08/16/19 14:39,"949 Church St, New York City, NY 10001" +237626,AA Batteries (4-pack),1,3.84,08/10/19 23:43,"477 Walnut St, Los Angeles, CA 90001" +237627,Bose SoundSport Headphones,1,99.99,08/25/19 21:06,"214 Walnut St, Portland, OR 97035" +237628,27in 4K Gaming Monitor,1,389.99,08/16/19 18:17,"17 Adams St, Atlanta, GA 30301" +237629,34in Ultrawide Monitor,1,379.99,08/17/19 03:58,"262 Wilson St, New York City, NY 10001" +237630,Apple Airpods Headphones,1,150,08/23/19 23:47,"103 Dogwood St, San Francisco, CA 94016" +237631,Apple Airpods Headphones,1,150,08/21/19 06:43,"895 12th St, New York City, NY 10001" +237632,USB-C Charging Cable,1,11.95,08/30/19 20:22,"166 Church St, San Francisco, CA 94016" +237633,USB-C Charging Cable,1,11.95,08/29/19 01:07,"427 Park St, Atlanta, GA 30301" +237634,USB-C Charging Cable,1,11.95,08/15/19 13:50,"951 Forest St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +237635,27in FHD Monitor,1,149.99,08/22/19 23:06,"231 10th St, San Francisco, CA 94016" +237636,AA Batteries (4-pack),1,3.84,08/20/19 21:49,"848 North St, New York City, NY 10001" +237637,Wired Headphones,1,11.99,08/31/19 13:59,"542 Wilson St, Dallas, TX 75001" +237638,AAA Batteries (4-pack),1,2.99,08/24/19 11:50,"318 Highland St, Atlanta, GA 30301" +237639,AAA Batteries (4-pack),1,2.99,08/29/19 10:50,"213 Hickory St, Austin, TX 73301" +237640,Flatscreen TV,1,300,08/30/19 10:51,"103 Meadow St, Atlanta, GA 30301" +237641,Wired Headphones,1,11.99,08/09/19 02:03,"474 Sunset St, New York City, NY 10001" +237642,AAA Batteries (4-pack),1,2.99,08/11/19 09:48,"416 River St, Portland, OR 97035" +237643,AAA Batteries (4-pack),1,2.99,08/26/19 23:10,"569 Center St, New York City, NY 10001" +237644,AA Batteries (4-pack),1,3.84,08/13/19 16:05,"56 Elm St, Los Angeles, CA 90001" +237645,Apple Airpods Headphones,1,150,08/07/19 12:24,"291 Dogwood St, Boston, MA 02215" +237646,Lightning Charging Cable,1,14.95,08/27/19 00:34,"587 4th St, New York City, NY 10001" +237647,AAA Batteries (4-pack),1,2.99,08/20/19 10:26,"505 Hill St, Los Angeles, CA 90001" +237648,ThinkPad Laptop,1,999.99,08/30/19 09:50,"493 Ridge St, Los Angeles, CA 90001" +237649,USB-C Charging Cable,1,11.95,08/31/19 10:53,"316 Wilson St, Los Angeles, CA 90001" +237650,USB-C Charging Cable,1,11.95,08/04/19 20:52,"242 4th St, Boston, MA 02215" +237651,Lightning Charging Cable,1,14.95,08/28/19 16:33,"258 Sunset St, San Francisco, CA 94016" +237652,27in FHD Monitor,1,149.99,08/19/19 09:35,"393 Jackson St, Atlanta, GA 30301" +237653,AAA Batteries (4-pack),1,2.99,08/24/19 07:31,"296 Johnson St, Atlanta, GA 30301" +237654,AAA Batteries (4-pack),1,2.99,08/31/19 09:46,"539 Dogwood St, New York City, NY 10001" +237655,AA Batteries (4-pack),1,3.84,08/10/19 14:49,"772 Sunset St, Austin, TX 73301" +237656,AA Batteries (4-pack),2,3.84,08/28/19 13:26,"64 South St, San Francisco, CA 94016" +237657,AA Batteries (4-pack),1,3.84,08/25/19 18:25,"543 North St, Boston, MA 02215" +237658,Google Phone,1,600,08/06/19 13:18,"842 Cherry St, San Francisco, CA 94016" +237659,Lightning Charging Cable,1,14.95,08/21/19 14:27,"96 Cherry St, Seattle, WA 98101" +237660,AA Batteries (4-pack),1,3.84,08/16/19 23:16,"230 West St, New York City, NY 10001" +237661,Wired Headphones,1,11.99,08/21/19 17:10,"743 Johnson St, Seattle, WA 98101" +237662,USB-C Charging Cable,1,11.95,08/29/19 19:56,"639 Adams St, San Francisco, CA 94016" +237663,Wired Headphones,1,11.99,08/05/19 15:25,"861 2nd St, Los Angeles, CA 90001" +237663,AA Batteries (4-pack),1,3.84,08/05/19 15:25,"861 2nd St, Los Angeles, CA 90001" +237664,USB-C Charging Cable,1,11.95,08/06/19 19:41,"511 Ridge St, New York City, NY 10001" +237665,AAA Batteries (4-pack),1,2.99,08/10/19 12:20,"87 Adams St, Los Angeles, CA 90001" +237665,27in FHD Monitor,1,149.99,08/10/19 12:20,"87 Adams St, Los Angeles, CA 90001" +237666,Lightning Charging Cable,1,14.95,08/15/19 15:08,"783 7th St, New York City, NY 10001" +237667,20in Monitor,1,109.99,08/16/19 20:26,"733 Dogwood St, Austin, TX 73301" +237668,Apple Airpods Headphones,1,150,08/27/19 06:48,"484 Church St, Portland, ME 04101" +237669,Lightning Charging Cable,1,14.95,08/18/19 13:49,"222 Elm St, Atlanta, GA 30301" +237670,AA Batteries (4-pack),1,3.84,08/11/19 01:24,"587 4th St, Dallas, TX 75001" +237671,34in Ultrawide Monitor,1,379.99,08/05/19 08:27,"333 Sunset St, San Francisco, CA 94016" +237672,Wired Headphones,1,11.99,08/08/19 11:33,"688 Washington St, Portland, OR 97035" +237673,Vareebadd Phone,1,400,08/13/19 00:55,"495 Forest St, Los Angeles, CA 90001" +237674,27in FHD Monitor,1,149.99,09/01/19 01:01,"230 Cherry St, San Francisco, CA 94016" +237675,AAA Batteries (4-pack),1,2.99,08/31/19 08:00,"790 Spruce St, Austin, TX 73301" +237676,Apple Airpods Headphones,2,150,08/28/19 21:39,"114 Ridge St, Boston, MA 02215" +237677,Wired Headphones,1,11.99,08/13/19 17:34,"489 4th St, New York City, NY 10001" +237678,AAA Batteries (4-pack),1,2.99,08/25/19 18:37,"214 Park St, New York City, NY 10001" +237679,Wired Headphones,1,11.99,08/28/19 16:54,"774 Cherry St, Dallas, TX 75001" +237680,Apple Airpods Headphones,1,150,08/02/19 07:36,"577 River St, Boston, MA 02215" +237681,USB-C Charging Cable,1,11.95,08/21/19 10:22,"361 Wilson St, Portland, OR 97035" +237682,20in Monitor,1,109.99,08/20/19 16:43,"59 Jackson St, Seattle, WA 98101" +237683,USB-C Charging Cable,1,11.95,08/21/19 16:25,"694 Chestnut St, New York City, NY 10001" +237684,Wired Headphones,1,11.99,08/06/19 13:57,"902 Walnut St, Atlanta, GA 30301" +237685,USB-C Charging Cable,1,11.95,08/04/19 15:36,"920 7th St, Austin, TX 73301" +237686,AAA Batteries (4-pack),1,2.99,08/29/19 19:35,"271 Sunset St, New York City, NY 10001" +237687,Bose SoundSport Headphones,1,99.99,08/24/19 18:43,"380 Willow St, Los Angeles, CA 90001" +237688,USB-C Charging Cable,1,11.95,08/04/19 17:06,"245 Chestnut St, Boston, MA 02215" +237689,Lightning Charging Cable,1,14.95,08/06/19 11:49,"984 7th St, Atlanta, GA 30301" +237690,Flatscreen TV,1,300,08/05/19 15:33,"499 5th St, Dallas, TX 75001" +237691,AAA Batteries (4-pack),4,2.99,08/30/19 13:06,"580 1st St, Los Angeles, CA 90001" +237692,AA Batteries (4-pack),3,3.84,08/17/19 19:12,"419 Washington St, San Francisco, CA 94016" +237693,Apple Airpods Headphones,1,150,08/25/19 21:20,"661 Main St, San Francisco, CA 94016" +237694,Macbook Pro Laptop,1,1700,08/28/19 19:49,"605 8th St, San Francisco, CA 94016" +237695,Apple Airpods Headphones,1,150,08/28/19 18:34,"77 Ridge St, Los Angeles, CA 90001" +237696,AAA Batteries (4-pack),2,2.99,08/10/19 07:12,"512 Main St, San Francisco, CA 94016" +237697,AA Batteries (4-pack),1,3.84,08/26/19 00:11,"806 Jefferson St, Seattle, WA 98101" +237698,Macbook Pro Laptop,1,1700,08/12/19 22:10,"938 Elm St, Los Angeles, CA 90001" +237699,Flatscreen TV,1,300,08/22/19 13:21,"952 Meadow St, Atlanta, GA 30301" +237700,20in Monitor,1,109.99,08/08/19 13:22,"865 Washington St, Atlanta, GA 30301" +237701,AA Batteries (4-pack),1,3.84,08/17/19 16:09,"495 12th St, New York City, NY 10001" +237702,27in 4K Gaming Monitor,1,389.99,08/31/19 17:25,"844 Highland St, Los Angeles, CA 90001" +237703,iPhone,1,700,08/27/19 16:54,"146 13th St, Atlanta, GA 30301" +237704,Bose SoundSport Headphones,1,99.99,08/10/19 19:10,"853 10th St, Los Angeles, CA 90001" +237705,USB-C Charging Cable,2,11.95,08/02/19 11:05,"949 10th St, San Francisco, CA 94016" +237706,Macbook Pro Laptop,1,1700,08/27/19 20:01,"874 Hill St, New York City, NY 10001" +237707,AA Batteries (4-pack),1,3.84,08/24/19 14:31,"379 Meadow St, Seattle, WA 98101" +237708,27in FHD Monitor,1,149.99,08/03/19 11:39,"314 1st St, Seattle, WA 98101" +237709,Apple Airpods Headphones,1,150,08/18/19 15:13,"991 4th St, Los Angeles, CA 90001" +237710,34in Ultrawide Monitor,1,379.99,08/24/19 10:38,"189 10th St, San Francisco, CA 94016" +237711,Wired Headphones,1,11.99,08/22/19 18:57,"340 9th St, Portland, OR 97035" +237712,USB-C Charging Cable,1,11.95,08/28/19 18:03,"190 4th St, Portland, OR 97035" +237713,Apple Airpods Headphones,1,150,08/25/19 10:20,"551 Elm St, Atlanta, GA 30301" +237714,AAA Batteries (4-pack),3,2.99,08/08/19 14:12,"82 Madison St, Los Angeles, CA 90001" +237715,USB-C Charging Cable,1,11.95,08/12/19 11:22,"995 West St, Dallas, TX 75001" +237716,AAA Batteries (4-pack),2,2.99,08/18/19 17:42,"52 Lincoln St, Los Angeles, CA 90001" +237717,27in 4K Gaming Monitor,1,389.99,08/04/19 21:32,"249 Chestnut St, Los Angeles, CA 90001" +237718,Google Phone,1,600,08/25/19 18:40,"107 Washington St, San Francisco, CA 94016" +237718,USB-C Charging Cable,1,11.95,08/25/19 18:40,"107 Washington St, San Francisco, CA 94016" +237719,Wired Headphones,1,11.99,08/23/19 20:22,"853 Walnut St, Boston, MA 02215" +237720,AAA Batteries (4-pack),1,2.99,08/29/19 20:10,"418 2nd St, Boston, MA 02215" +237721,AA Batteries (4-pack),2,3.84,08/15/19 12:38,"771 Dogwood St, Dallas, TX 75001" +237722,Lightning Charging Cable,1,14.95,08/29/19 11:46,"629 South St, Seattle, WA 98101" +237723,Wired Headphones,1,11.99,08/17/19 12:22,"275 Forest St, Dallas, TX 75001" +237724,ThinkPad Laptop,1,999.99,08/05/19 11:29,"571 Chestnut St, Atlanta, GA 30301" +237725,Bose SoundSport Headphones,1,99.99,08/26/19 21:02,"689 North St, New York City, NY 10001" +237726,AAA Batteries (4-pack),2,2.99,08/17/19 18:34,"219 Spruce St, New York City, NY 10001" +237727,Lightning Charging Cable,1,14.95,08/13/19 23:11,"293 Jackson St, Seattle, WA 98101" +237728,Apple Airpods Headphones,1,150,08/21/19 22:47,"771 Forest St, Boston, MA 02215" +237729,Flatscreen TV,1,300,08/22/19 07:27,"946 11th St, Dallas, TX 75001" +237730,Lightning Charging Cable,1,14.95,08/11/19 12:55,"677 Wilson St, Boston, MA 02215" +237731,Vareebadd Phone,1,400,08/30/19 23:38,"420 Walnut St, Austin, TX 73301" +237732,Lightning Charging Cable,1,14.95,08/02/19 00:28,"272 Cherry St, New York City, NY 10001" +237733,34in Ultrawide Monitor,1,379.99,08/04/19 22:12,"853 Washington St, Seattle, WA 98101" +237734,Vareebadd Phone,1,400,08/14/19 18:11,"544 5th St, San Francisco, CA 94016" +237735,34in Ultrawide Monitor,1,379.99,08/21/19 05:40,"144 Hickory St, New York City, NY 10001" +237736,USB-C Charging Cable,1,11.95,08/05/19 00:19,"301 Sunset St, Dallas, TX 75001" +237737,USB-C Charging Cable,1,11.95,08/30/19 14:50,"119 Hill St, San Francisco, CA 94016" +237738,27in FHD Monitor,1,149.99,08/24/19 16:55,"76 5th St, San Francisco, CA 94016" +237739,Apple Airpods Headphones,1,150,08/17/19 17:48,"372 4th St, New York City, NY 10001" +237740,Apple Airpods Headphones,1,150,08/15/19 19:30,"972 Forest St, Boston, MA 02215" +237741,Apple Airpods Headphones,1,150,08/17/19 18:44,"458 River St, Portland, ME 04101" +237742,Lightning Charging Cable,1,14.95,08/20/19 20:38,"597 Chestnut St, Los Angeles, CA 90001" +,,,,, +237743,ThinkPad Laptop,1,999.99,08/11/19 13:16,"942 Hickory St, Portland, ME 04101" +237743,AA Batteries (4-pack),1,3.84,08/11/19 13:16,"942 Hickory St, Portland, ME 04101" +237744,AAA Batteries (4-pack),2,2.99,08/10/19 13:19,"607 2nd St, Boston, MA 02215" +237745,Lightning Charging Cable,1,14.95,08/20/19 10:43,"892 11th St, Boston, MA 02215" +237745,Flatscreen TV,1,300,08/20/19 10:43,"892 11th St, Boston, MA 02215" +237746,Wired Headphones,1,11.99,08/19/19 14:08,"803 Jackson St, San Francisco, CA 94016" +237747,20in Monitor,1,109.99,08/18/19 15:06,"556 9th St, Atlanta, GA 30301" +237748,Google Phone,1,600,08/29/19 22:22,"5 Dogwood St, Dallas, TX 75001" +237749,Bose SoundSport Headphones,1,99.99,08/14/19 08:51,"593 Walnut St, Los Angeles, CA 90001" +237750,Macbook Pro Laptop,1,1700,08/20/19 09:14,"97 Ridge St, San Francisco, CA 94016" +237751,AA Batteries (4-pack),2,3.84,08/25/19 02:29,"908 Hill St, San Francisco, CA 94016" +237752,Apple Airpods Headphones,1,150,08/02/19 13:42,"414 Cedar St, Dallas, TX 75001" +237753,27in 4K Gaming Monitor,1,389.99,08/08/19 01:14,"59 13th St, Seattle, WA 98101" +237754,Wired Headphones,2,11.99,08/27/19 19:54,"268 Spruce St, San Francisco, CA 94016" +237755,27in 4K Gaming Monitor,1,389.99,08/08/19 14:16,"332 Hickory St, Portland, OR 97035" +237756,Wired Headphones,1,11.99,08/02/19 16:40,"87 Spruce St, Atlanta, GA 30301" +237757,iPhone,1,700,08/24/19 12:26,"320 9th St, New York City, NY 10001" +237758,Lightning Charging Cable,1,14.95,08/27/19 11:44,"843 1st St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +237759,Wired Headphones,1,11.99,08/22/19 00:17,"83 2nd St, San Francisco, CA 94016" +237760,AAA Batteries (4-pack),2,2.99,08/11/19 14:46,"109 Highland St, New York City, NY 10001" +237761,Wired Headphones,1,11.99,08/27/19 11:41,"4 13th St, San Francisco, CA 94016" +237762,27in 4K Gaming Monitor,1,389.99,08/23/19 18:03,"440 Hickory St, Atlanta, GA 30301" +237763,Apple Airpods Headphones,1,150,08/22/19 19:30,"823 North St, Los Angeles, CA 90001" +237764,Lightning Charging Cable,1,14.95,08/30/19 00:34,"657 12th St, San Francisco, CA 94016" +237765,Google Phone,1,600,08/30/19 21:43,"416 14th St, New York City, NY 10001" +237766,Macbook Pro Laptop,1,1700,08/25/19 13:54,"686 Cedar St, Boston, MA 02215" +237767,34in Ultrawide Monitor,1,379.99,08/08/19 12:51,"514 14th St, San Francisco, CA 94016" +237768,AAA Batteries (4-pack),1,2.99,08/29/19 10:35,"517 11th St, Los Angeles, CA 90001" +237769,USB-C Charging Cable,1,11.95,08/11/19 19:47,"651 Church St, New York City, NY 10001" +237770,USB-C Charging Cable,1,11.95,08/29/19 15:33,"139 Elm St, New York City, NY 10001" +237771,Macbook Pro Laptop,1,1700,08/06/19 21:04,"975 North St, Austin, TX 73301" +237772,Wired Headphones,1,11.99,08/09/19 16:53,"4 6th St, Austin, TX 73301" +237773,LG Washing Machine,1,600.0,08/24/19 19:41,"809 Washington St, Los Angeles, CA 90001" +237774,27in FHD Monitor,1,149.99,08/12/19 10:14,"155 Adams St, San Francisco, CA 94016" +237775,iPhone,1,700,08/20/19 17:13,"727 Ridge St, New York City, NY 10001" +237776,USB-C Charging Cable,1,11.95,08/25/19 03:22,"824 Washington St, Dallas, TX 75001" +237777,Wired Headphones,1,11.99,08/04/19 19:28,"831 Lakeview St, Dallas, TX 75001" +237778,AAA Batteries (4-pack),1,2.99,08/15/19 10:18,"465 Spruce St, Los Angeles, CA 90001" +237779,USB-C Charging Cable,1,11.95,08/22/19 14:56,"92 Lake St, Los Angeles, CA 90001" +237780,Google Phone,1,600,08/16/19 09:15,"484 Chestnut St, Dallas, TX 75001" +237781,Apple Airpods Headphones,1,150,08/16/19 16:29,"974 Walnut St, San Francisco, CA 94016" +237782,USB-C Charging Cable,1,11.95,08/10/19 22:38,"544 Lake St, Los Angeles, CA 90001" +237783,Google Phone,1,600,08/28/19 17:52,"631 Jackson St, New York City, NY 10001" +237784,Wired Headphones,1,11.99,08/30/19 12:12,"326 Lincoln St, Seattle, WA 98101" +237785,Lightning Charging Cable,1,14.95,08/31/19 21:06,"588 10th St, Portland, OR 97035" +237786,Wired Headphones,1,11.99,08/12/19 15:00,"917 Elm St, Portland, ME 04101" +237787,Lightning Charging Cable,1,14.95,08/16/19 20:04,"781 Spruce St, San Francisco, CA 94016" +237788,20in Monitor,1,109.99,08/17/19 00:01,"295 South St, San Francisco, CA 94016" +237789,USB-C Charging Cable,2,11.95,08/31/19 18:56,"788 Wilson St, Seattle, WA 98101" +237790,Apple Airpods Headphones,1,150,08/13/19 08:55,"653 Lake St, Boston, MA 02215" +237791,USB-C Charging Cable,1,11.95,08/30/19 13:03,"475 Spruce St, Los Angeles, CA 90001" +237792,27in FHD Monitor,1,149.99,08/04/19 19:53,"680 Sunset St, New York City, NY 10001" +237793,Wired Headphones,1,11.99,08/03/19 14:12,"605 Jefferson St, Portland, OR 97035" +237794,ThinkPad Laptop,1,999.99,08/07/19 11:05,"662 8th St, Los Angeles, CA 90001" +237795,LG Dryer,1,600.0,08/13/19 19:21,"256 Pine St, Portland, ME 04101" +237796,USB-C Charging Cable,2,11.95,08/09/19 23:30,"458 Hickory St, Los Angeles, CA 90001" +237797,Macbook Pro Laptop,1,1700,08/22/19 09:28,"582 Ridge St, Dallas, TX 75001" +237798,27in 4K Gaming Monitor,1,389.99,08/31/19 20:32,"852 Ridge St, Seattle, WA 98101" +237799,USB-C Charging Cable,1,11.95,08/09/19 21:36,"428 Park St, Portland, OR 97035" +237800,Wired Headphones,1,11.99,08/06/19 13:45,"864 9th St, San Francisco, CA 94016" +237801,AA Batteries (4-pack),1,3.84,08/29/19 17:41,"258 West St, San Francisco, CA 94016" +237802,27in 4K Gaming Monitor,1,389.99,08/25/19 23:21,"485 Center St, New York City, NY 10001" +237803,USB-C Charging Cable,1,11.95,08/04/19 21:03,"735 Willow St, Seattle, WA 98101" +237804,AAA Batteries (4-pack),5,2.99,08/26/19 08:42,"903 North St, Seattle, WA 98101" +237805,Bose SoundSport Headphones,1,99.99,08/14/19 19:24,"497 Hickory St, Boston, MA 02215" +237806,34in Ultrawide Monitor,1,379.99,08/11/19 09:08,"267 12th St, Los Angeles, CA 90001" +237807,Lightning Charging Cable,1,14.95,08/05/19 12:42,"867 Church St, Portland, OR 97035" +237808,Apple Airpods Headphones,1,150,08/04/19 13:32,"805 1st St, Dallas, TX 75001" +237809,USB-C Charging Cable,1,11.95,08/30/19 15:09,"211 10th St, San Francisco, CA 94016" +237810,USB-C Charging Cable,2,11.95,08/21/19 19:50,"211 Lake St, New York City, NY 10001" +237811,Google Phone,1,600,08/26/19 11:19,"974 Willow St, Dallas, TX 75001" +237811,USB-C Charging Cable,1,11.95,08/26/19 11:19,"974 Willow St, Dallas, TX 75001" +237812,Lightning Charging Cable,1,14.95,08/02/19 13:41,"965 Elm St, Los Angeles, CA 90001" +237813,Wired Headphones,1,11.99,08/25/19 20:00,"568 West St, Seattle, WA 98101" +237814,27in FHD Monitor,1,149.99,08/08/19 16:31,"121 Pine St, Atlanta, GA 30301" +237815,AAA Batteries (4-pack),2,2.99,08/28/19 12:35,"870 Center St, San Francisco, CA 94016" +237816,Bose SoundSport Headphones,1,99.99,08/05/19 04:01,"344 Church St, San Francisco, CA 94016" +237816,Google Phone,1,600,08/05/19 04:01,"344 Church St, San Francisco, CA 94016" +237817,Bose SoundSport Headphones,1,99.99,08/12/19 17:41,"527 11th St, San Francisco, CA 94016" +237818,AAA Batteries (4-pack),2,2.99,08/30/19 11:46,"621 Lake St, Boston, MA 02215" +237819,USB-C Charging Cable,1,11.95,08/25/19 22:09,"218 8th St, Boston, MA 02215" +237820,ThinkPad Laptop,1,999.99,08/14/19 22:49,"456 14th St, San Francisco, CA 94016" +237821,Wired Headphones,1,11.99,08/21/19 01:27,"142 Highland St, Seattle, WA 98101" +237822,LG Dryer,1,600.0,08/01/19 22:11,"144 Washington St, Atlanta, GA 30301" +237823,USB-C Charging Cable,1,11.95,08/15/19 09:14,"658 Dogwood St, Seattle, WA 98101" +237823,Apple Airpods Headphones,1,150,08/15/19 09:14,"658 Dogwood St, Seattle, WA 98101" +237824,Lightning Charging Cable,1,14.95,08/23/19 11:19,"788 Cedar St, Dallas, TX 75001" +237825,USB-C Charging Cable,1,11.95,08/14/19 03:58,"589 Highland St, Atlanta, GA 30301" +237826,LG Washing Machine,1,600.0,08/02/19 11:05,"574 River St, Seattle, WA 98101" +237827,USB-C Charging Cable,1,11.95,08/26/19 20:15,"675 Meadow St, San Francisco, CA 94016" +237828,Flatscreen TV,1,300,08/16/19 16:13,"758 Lakeview St, Atlanta, GA 30301" +237829,AA Batteries (4-pack),1,3.84,08/17/19 14:46,"724 Center St, New York City, NY 10001" +237830,Macbook Pro Laptop,1,1700,08/31/19 10:04,"652 Spruce St, Los Angeles, CA 90001" +237831,LG Washing Machine,1,600.0,08/11/19 07:54,"74 Hill St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +237832,Lightning Charging Cable,1,14.95,08/04/19 00:36,"977 10th St, Seattle, WA 98101" +237833,Apple Airpods Headphones,1,150,08/09/19 16:34,"527 14th St, San Francisco, CA 94016" +237834,ThinkPad Laptop,1,999.99,08/09/19 21:35,"462 Spruce St, Los Angeles, CA 90001" +237835,AAA Batteries (4-pack),3,2.99,08/14/19 18:19,"489 Elm St, San Francisco, CA 94016" +237836,Apple Airpods Headphones,1,150,08/09/19 23:22,"423 9th St, San Francisco, CA 94016" +237837,AA Batteries (4-pack),1,3.84,08/22/19 11:22,"587 Highland St, Boston, MA 02215" +237838,USB-C Charging Cable,1,11.95,08/09/19 10:23,"752 Madison St, Portland, ME 04101" +237839,34in Ultrawide Monitor,1,379.99,08/18/19 17:14,"880 Washington St, Boston, MA 02215" +237840,USB-C Charging Cable,1,11.95,08/02/19 21:09,"556 Forest St, New York City, NY 10001" +237841,Wired Headphones,1,11.99,08/09/19 18:16,"789 Ridge St, San Francisco, CA 94016" +237842,AAA Batteries (4-pack),1,2.99,08/20/19 19:11,"191 Jefferson St, Los Angeles, CA 90001" +237843,AAA Batteries (4-pack),1,2.99,08/08/19 10:52,"562 Cedar St, New York City, NY 10001" +237844,iPhone,1,700,08/11/19 11:42,"954 13th St, Boston, MA 02215" +237845,Vareebadd Phone,1,400,08/03/19 20:28,"379 Willow St, Boston, MA 02215" +237845,USB-C Charging Cable,2,11.95,08/03/19 20:28,"379 Willow St, Boston, MA 02215" +237845,Wired Headphones,1,11.99,08/03/19 20:28,"379 Willow St, Boston, MA 02215" +237846,Bose SoundSport Headphones,1,99.99,08/28/19 11:50,"406 South St, New York City, NY 10001" +237847,Wired Headphones,1,11.99,08/15/19 15:37,"158 Jackson St, Boston, MA 02215" +237848,Wired Headphones,1,11.99,08/26/19 00:21,"517 Jackson St, Boston, MA 02215" +237849,Flatscreen TV,1,300,08/23/19 16:54,"77 Wilson St, Atlanta, GA 30301" +237850,AAA Batteries (4-pack),1,2.99,08/18/19 10:52,"112 Elm St, Seattle, WA 98101" +237851,Lightning Charging Cable,1,14.95,08/21/19 18:12,"859 11th St, New York City, NY 10001" +237852,27in 4K Gaming Monitor,1,389.99,08/25/19 20:11,"469 Wilson St, Atlanta, GA 30301" +237853,34in Ultrawide Monitor,1,379.99,08/29/19 20:23,"100 7th St, San Francisco, CA 94016" +237854,Bose SoundSport Headphones,1,99.99,08/05/19 07:11,"951 Elm St, San Francisco, CA 94016" +237855,Wired Headphones,1,11.99,08/19/19 22:44,"425 Willow St, Dallas, TX 75001" +237856,AAA Batteries (4-pack),1,2.99,08/17/19 14:57,"950 Highland St, San Francisco, CA 94016" +237857,Apple Airpods Headphones,1,150,08/14/19 13:32,"422 Lincoln St, Portland, ME 04101" +237858,Macbook Pro Laptop,1,1700,08/24/19 11:50,"370 2nd St, Portland, ME 04101" +237859,LG Dryer,1,600.0,08/22/19 15:56,"52 13th St, San Francisco, CA 94016" +237860,Wired Headphones,2,11.99,08/30/19 16:46,"495 12th St, Boston, MA 02215" +237861,AAA Batteries (4-pack),1,2.99,08/30/19 19:12,"169 12th St, San Francisco, CA 94016" +237862,AA Batteries (4-pack),1,3.84,08/18/19 10:37,"563 8th St, Dallas, TX 75001" +237863,Wired Headphones,1,11.99,08/02/19 13:18,"379 Jackson St, Dallas, TX 75001" +237864,USB-C Charging Cable,1,11.95,08/06/19 18:46,"889 1st St, Los Angeles, CA 90001" +237865,Bose SoundSport Headphones,1,99.99,08/06/19 21:12,"44 North St, Boston, MA 02215" +237866,Bose SoundSport Headphones,1,99.99,08/27/19 13:36,"145 6th St, Dallas, TX 75001" +237867,ThinkPad Laptop,1,999.99,08/31/19 10:40,"911 Lake St, Dallas, TX 75001" +237868,AA Batteries (4-pack),1,3.84,08/03/19 20:42,"333 Adams St, San Francisco, CA 94016" +237869,27in 4K Gaming Monitor,1,389.99,08/04/19 14:35,"830 Hill St, Dallas, TX 75001" +237870,Bose SoundSport Headphones,1,99.99,08/21/19 14:43,"814 8th St, Atlanta, GA 30301" +237871,34in Ultrawide Monitor,1,379.99,08/26/19 12:16,"439 Jefferson St, Seattle, WA 98101" +237872,Macbook Pro Laptop,1,1700,08/08/19 07:58,"774 9th St, Seattle, WA 98101" +237872,iPhone,1,700,08/08/19 07:58,"774 9th St, Seattle, WA 98101" +237873,Lightning Charging Cable,1,14.95,08/03/19 06:41,"136 Ridge St, Dallas, TX 75001" +237874,ThinkPad Laptop,1,999.99,08/28/19 03:55,"423 8th St, Austin, TX 73301" +,,,,, +237875,Wired Headphones,1,11.99,08/23/19 16:33,"168 North St, Austin, TX 73301" +237876,Lightning Charging Cable,1,14.95,08/17/19 13:02,"679 Highland St, Boston, MA 02215" +237877,Lightning Charging Cable,1,14.95,08/25/19 21:49,"648 11th St, Los Angeles, CA 90001" +237878,Wired Headphones,1,11.99,08/28/19 16:28,"783 Ridge St, Dallas, TX 75001" +237879,Lightning Charging Cable,1,14.95,08/11/19 20:43,"789 Meadow St, San Francisco, CA 94016" +237880,USB-C Charging Cable,1,11.95,08/19/19 20:48,"738 Pine St, Dallas, TX 75001" +237881,Lightning Charging Cable,1,14.95,08/11/19 20:36,"121 2nd St, Boston, MA 02215" +237882,Bose SoundSport Headphones,1,99.99,08/16/19 19:15,"383 8th St, Los Angeles, CA 90001" +237883,ThinkPad Laptop,1,999.99,08/06/19 20:43,"688 Dogwood St, Seattle, WA 98101" +237884,iPhone,1,700,08/16/19 18:24,"25 Washington St, Austin, TX 73301" +237884,Lightning Charging Cable,1,14.95,08/16/19 18:24,"25 Washington St, Austin, TX 73301" +237885,AAA Batteries (4-pack),1,2.99,08/05/19 15:15,"684 Sunset St, Dallas, TX 75001" +237886,USB-C Charging Cable,1,11.95,08/29/19 12:50,"944 12th St, Atlanta, GA 30301" +237887,Bose SoundSport Headphones,1,99.99,08/28/19 09:48,"473 Chestnut St, Seattle, WA 98101" +237888,Bose SoundSport Headphones,1,99.99,08/01/19 14:07,"204 Meadow St, Boston, MA 02215" +237889,Bose SoundSport Headphones,1,99.99,08/22/19 17:53,"103 Cherry St, Los Angeles, CA 90001" +237889,34in Ultrawide Monitor,1,379.99,08/22/19 17:53,"103 Cherry St, Los Angeles, CA 90001" +237890,Lightning Charging Cable,1,14.95,08/30/19 10:44,"677 Jefferson St, New York City, NY 10001" +237891,Lightning Charging Cable,1,14.95,08/21/19 23:28,"943 4th St, Seattle, WA 98101" +237892,Bose SoundSport Headphones,1,99.99,08/02/19 07:55,"420 Adams St, Dallas, TX 75001" +237893,Lightning Charging Cable,1,14.95,08/28/19 10:34,"664 12th St, Los Angeles, CA 90001" +237894,Google Phone,1,600,08/22/19 19:29,"284 10th St, Boston, MA 02215" +237895,AAA Batteries (4-pack),1,2.99,08/11/19 14:22,"573 Hickory St, Seattle, WA 98101" +237896,27in 4K Gaming Monitor,1,389.99,08/27/19 22:24,"825 Walnut St, Los Angeles, CA 90001" +237897,Lightning Charging Cable,1,14.95,08/07/19 09:53,"555 2nd St, San Francisco, CA 94016" +237898,AA Batteries (4-pack),2,3.84,08/28/19 10:20,"614 9th St, Los Angeles, CA 90001" +237899,AAA Batteries (4-pack),1,2.99,08/25/19 19:20,"16 1st St, Dallas, TX 75001" +237900,iPhone,1,700,08/31/19 17:24,"539 Forest St, Boston, MA 02215" +237900,Lightning Charging Cable,1,14.95,08/31/19 17:24,"539 Forest St, Boston, MA 02215" +237900,Apple Airpods Headphones,1,150,08/31/19 17:24,"539 Forest St, Boston, MA 02215" +237901,iPhone,1,700,08/31/19 15:02,"742 Adams St, Los Angeles, CA 90001" +237902,Wired Headphones,1,11.99,08/07/19 11:09,"420 Dogwood St, New York City, NY 10001" +237903,AAA Batteries (4-pack),1,2.99,08/17/19 09:27,"995 6th St, San Francisco, CA 94016" +237904,AAA Batteries (4-pack),1,2.99,08/24/19 10:18,"70 Lakeview St, Boston, MA 02215" +237905,ThinkPad Laptop,1,999.99,08/06/19 13:22,"281 North St, Dallas, TX 75001" +237906,AAA Batteries (4-pack),1,2.99,08/08/19 00:50,"386 Meadow St, Boston, MA 02215" +237907,AAA Batteries (4-pack),3,2.99,08/05/19 23:32,"14 North St, Boston, MA 02215" +237908,Wired Headphones,1,11.99,08/14/19 10:09,"45 Main St, San Francisco, CA 94016" +237909,USB-C Charging Cable,1,11.95,08/15/19 17:28,"389 Meadow St, New York City, NY 10001" +237910,Apple Airpods Headphones,1,150,08/08/19 12:17,"795 Church St, Los Angeles, CA 90001" +237911,Flatscreen TV,1,300,08/30/19 10:42,"429 Jackson St, Los Angeles, CA 90001" +237912,Wired Headphones,1,11.99,08/22/19 14:24,"383 Maple St, Seattle, WA 98101" +237913,Lightning Charging Cable,1,14.95,08/15/19 08:29,"788 10th St, New York City, NY 10001" +237914,iPhone,1,700,08/30/19 15:47,"671 Walnut St, Los Angeles, CA 90001" +237915,USB-C Charging Cable,1,11.95,08/21/19 11:10,"97 Center St, San Francisco, CA 94016" +237916,Google Phone,1,600,08/07/19 12:12,"994 Main St, San Francisco, CA 94016" +237917,AAA Batteries (4-pack),1,2.99,08/23/19 14:20,"899 Hickory St, Los Angeles, CA 90001" +237918,iPhone,1,700,08/20/19 08:17,"749 Dogwood St, San Francisco, CA 94016" +237918,Lightning Charging Cable,1,14.95,08/20/19 08:17,"749 Dogwood St, San Francisco, CA 94016" +237919,Google Phone,1,600,08/08/19 11:46,"552 Ridge St, Atlanta, GA 30301" +237920,Wired Headphones,1,11.99,08/31/19 22:11,"567 Chestnut St, Atlanta, GA 30301" +237921,iPhone,1,700,08/21/19 12:26,"219 12th St, San Francisco, CA 94016" +237922,AA Batteries (4-pack),1,3.84,08/09/19 17:53,"587 6th St, Dallas, TX 75001" +237923,Google Phone,1,600,08/29/19 16:52,"93 Cherry St, Boston, MA 02215" +237923,Bose SoundSport Headphones,1,99.99,08/29/19 16:52,"93 Cherry St, Boston, MA 02215" +237924,Apple Airpods Headphones,1,150,08/09/19 00:30,"357 Wilson St, Atlanta, GA 30301" +237925,Wired Headphones,1,11.99,08/11/19 17:06,"403 9th St, Boston, MA 02215" +237926,27in FHD Monitor,1,149.99,08/03/19 17:18,"222 South St, Los Angeles, CA 90001" +237927,LG Dryer,1,600.0,08/17/19 19:48,"544 9th St, Portland, OR 97035" +237928,AA Batteries (4-pack),1,3.84,08/01/19 14:29,"390 10th St, San Francisco, CA 94016" +237929,Google Phone,1,600,08/02/19 19:17,"377 Meadow St, San Francisco, CA 94016" +237930,AAA Batteries (4-pack),2,2.99,08/20/19 08:39,"937 12th St, Boston, MA 02215" +237931,AA Batteries (4-pack),1,3.84,08/08/19 00:55,"424 Wilson St, New York City, NY 10001" +237932,AA Batteries (4-pack),3,3.84,08/25/19 14:01,"886 Meadow St, Portland, OR 97035" +237933,AAA Batteries (4-pack),1,2.99,08/29/19 12:05,"444 Highland St, New York City, NY 10001" +237934,AAA Batteries (4-pack),2,2.99,08/13/19 17:04,"566 Lake St, Los Angeles, CA 90001" +237935,Lightning Charging Cable,1,14.95,08/28/19 11:27,"595 5th St, Los Angeles, CA 90001" +237936,Vareebadd Phone,1,400,08/21/19 15:50,"577 Dogwood St, Los Angeles, CA 90001" +237937,Wired Headphones,1,11.99,08/21/19 10:23,"491 Wilson St, Boston, MA 02215" +237938,27in FHD Monitor,1,149.99,08/29/19 11:08,"583 Hill St, Atlanta, GA 30301" +237939,iPhone,1,700,08/16/19 18:28,"959 Johnson St, Los Angeles, CA 90001" +237940,AA Batteries (4-pack),3,3.84,08/10/19 21:33,"335 2nd St, San Francisco, CA 94016" +237941,ThinkPad Laptop,1,999.99,08/14/19 10:32,"188 Park St, Atlanta, GA 30301" +237942,AAA Batteries (4-pack),1,2.99,08/29/19 21:16,"338 4th St, Seattle, WA 98101" +237943,Lightning Charging Cable,1,14.95,08/28/19 12:10,"549 Lake St, San Francisco, CA 94016" +237944,Vareebadd Phone,1,400,08/01/19 18:59,"714 7th St, Dallas, TX 75001" +237945,Apple Airpods Headphones,1,150,08/31/19 11:08,"111 Jackson St, Dallas, TX 75001" +237946,AAA Batteries (4-pack),1,2.99,08/29/19 16:53,"701 Jefferson St, Boston, MA 02215" +237947,Google Phone,1,600,08/19/19 14:31,"989 Cedar St, Dallas, TX 75001" +237948,34in Ultrawide Monitor,1,379.99,08/29/19 19:37,"987 West St, Los Angeles, CA 90001" +237949,Bose SoundSport Headphones,1,99.99,08/13/19 09:50,"364 Park St, San Francisco, CA 94016" +237950,AAA Batteries (4-pack),2,2.99,08/17/19 16:10,"479 14th St, Atlanta, GA 30301" +237951,AAA Batteries (4-pack),2,2.99,08/28/19 08:39,"385 Washington St, New York City, NY 10001" +237952,27in 4K Gaming Monitor,1,389.99,08/27/19 09:15,"682 Sunset St, Boston, MA 02215" +237953,AA Batteries (4-pack),1,3.84,08/31/19 11:00,"905 Spruce St, Boston, MA 02215" +237954,Lightning Charging Cable,1,14.95,08/03/19 13:32,"227 2nd St, Dallas, TX 75001" +237955,Bose SoundSport Headphones,1,99.99,08/23/19 13:08,"506 Center St, San Francisco, CA 94016" +237956,Flatscreen TV,1,300,08/05/19 17:10,"861 Adams St, New York City, NY 10001" +237957,34in Ultrawide Monitor,1,379.99,08/08/19 14:47,"44 Willow St, Seattle, WA 98101" +237958,Wired Headphones,1,11.99,08/25/19 12:35,"480 West St, Seattle, WA 98101" +237959,Flatscreen TV,1,300,08/03/19 09:46,"741 Main St, Los Angeles, CA 90001" +237960,20in Monitor,1,109.99,08/17/19 12:44,"275 Park St, New York City, NY 10001" +237961,20in Monitor,1,109.99,08/14/19 14:22,"475 2nd St, San Francisco, CA 94016" +237962,Bose SoundSport Headphones,1,99.99,08/16/19 12:07,"365 Washington St, Seattle, WA 98101" +237963,Wired Headphones,1,11.99,08/26/19 19:03,"198 Main St, Portland, ME 04101" +237964,USB-C Charging Cable,1,11.95,08/09/19 14:38,"859 8th St, Portland, OR 97035" +237965,iPhone,1,700,08/18/19 16:46,"693 13th St, New York City, NY 10001" +237966,34in Ultrawide Monitor,1,379.99,08/27/19 21:10,"20 Highland St, New York City, NY 10001" +237967,iPhone,1,700,08/05/19 16:21,"98 13th St, New York City, NY 10001" +237968,Lightning Charging Cable,1,14.95,08/05/19 20:38,"249 7th St, Los Angeles, CA 90001" +237969,Flatscreen TV,1,300,08/22/19 10:25,"648 Sunset St, New York City, NY 10001" +237970,Wired Headphones,1,11.99,08/19/19 19:03,"122 Jackson St, Boston, MA 02215" +237971,ThinkPad Laptop,1,999.99,08/11/19 10:45,"795 Chestnut St, New York City, NY 10001" +237972,USB-C Charging Cable,1,11.95,08/03/19 08:53,"758 Cedar St, Austin, TX 73301" +237973,27in 4K Gaming Monitor,1,389.99,08/24/19 10:32,"283 Jackson St, New York City, NY 10001" +237974,LG Washing Machine,1,600.0,08/21/19 23:14,"120 Walnut St, New York City, NY 10001" +237975,USB-C Charging Cable,1,11.95,08/17/19 01:26,"813 Madison St, New York City, NY 10001" +237976,27in 4K Gaming Monitor,1,389.99,08/30/19 21:16,"141 South St, San Francisco, CA 94016" +237977,34in Ultrawide Monitor,1,379.99,08/01/19 18:43,"738 Highland St, San Francisco, CA 94016" +237978,Lightning Charging Cable,1,14.95,08/30/19 14:45,"53 Walnut St, Boston, MA 02215" +237979,Apple Airpods Headphones,1,150,08/09/19 09:42,"891 Adams St, Portland, ME 04101" +237980,AA Batteries (4-pack),4,3.84,08/24/19 09:05,"171 5th St, Austin, TX 73301" +237981,AAA Batteries (4-pack),4,2.99,08/11/19 23:00,"963 4th St, Seattle, WA 98101" +237981,Macbook Pro Laptop,1,1700,08/11/19 23:00,"963 4th St, Seattle, WA 98101" +237982,Lightning Charging Cable,1,14.95,08/26/19 21:04,"631 Cherry St, Portland, ME 04101" +237983,AA Batteries (4-pack),1,3.84,08/11/19 17:34,"374 Highland St, San Francisco, CA 94016" +237984,Apple Airpods Headphones,1,150,08/04/19 10:56,"207 Willow St, Austin, TX 73301" +237985,AA Batteries (4-pack),1,3.84,08/23/19 20:50,"86 Spruce St, San Francisco, CA 94016" +237986,Apple Airpods Headphones,1,150,08/11/19 12:28,"691 14th St, San Francisco, CA 94016" +237987,Bose SoundSport Headphones,1,99.99,08/28/19 15:34,"275 Highland St, Dallas, TX 75001" +237988,USB-C Charging Cable,1,11.95,08/31/19 12:06,"129 7th St, Seattle, WA 98101" +237989,34in Ultrawide Monitor,1,379.99,08/09/19 09:39,"873 Willow St, Dallas, TX 75001" +237990,AAA Batteries (4-pack),1,2.99,08/26/19 14:06,"634 Hickory St, New York City, NY 10001" +237991,ThinkPad Laptop,1,999.99,08/09/19 07:42,"912 Center St, New York City, NY 10001" +237992,Lightning Charging Cable,1,14.95,08/06/19 15:11,"38 Cherry St, Los Angeles, CA 90001" +237993,Google Phone,1,600,08/17/19 19:08,"575 Cedar St, San Francisco, CA 94016" +237993,Bose SoundSport Headphones,1,99.99,08/17/19 19:08,"575 Cedar St, San Francisco, CA 94016" +237994,Flatscreen TV,1,300,08/16/19 19:46,"645 River St, New York City, NY 10001" +237995,Wired Headphones,1,11.99,08/29/19 21:15,"677 Spruce St, Portland, OR 97035" +237996,34in Ultrawide Monitor,1,379.99,08/14/19 18:19,"240 Washington St, Portland, OR 97035" +237997,iPhone,1,700,08/12/19 18:04,"474 Highland St, Dallas, TX 75001" +237998,Lightning Charging Cable,1,14.95,08/04/19 20:56,"896 Main St, Austin, TX 73301" +237999,27in 4K Gaming Monitor,1,389.99,08/30/19 17:31,"985 14th St, Boston, MA 02215" +238000,Wired Headphones,1,11.99,08/08/19 21:15,"153 Chestnut St, New York City, NY 10001" +238001,Lightning Charging Cable,1,14.95,08/19/19 10:39,"638 8th St, Austin, TX 73301" +238002,Wired Headphones,1,11.99,08/06/19 09:36,"854 8th St, San Francisco, CA 94016" +238003,AA Batteries (4-pack),1,3.84,08/08/19 09:12,"411 8th St, Dallas, TX 75001" +238004,USB-C Charging Cable,1,11.95,08/31/19 11:48,"454 Chestnut St, Boston, MA 02215" +238005,Flatscreen TV,1,300,08/20/19 19:42,"125 Cherry St, New York City, NY 10001" +238006,Lightning Charging Cable,1,14.95,08/18/19 13:21,"160 9th St, Portland, OR 97035" +238007,Bose SoundSport Headphones,1,99.99,08/25/19 10:57,"622 River St, Seattle, WA 98101" +238008,Lightning Charging Cable,1,14.95,08/02/19 19:43,"777 Jefferson St, Atlanta, GA 30301" +238008,Wired Headphones,1,11.99,08/02/19 19:43,"777 Jefferson St, Atlanta, GA 30301" +238009,AA Batteries (4-pack),2,3.84,08/10/19 06:22,"987 Lakeview St, Boston, MA 02215" +238010,27in FHD Monitor,1,149.99,08/10/19 15:33,"27 South St, San Francisco, CA 94016" +238011,Google Phone,1,600,08/17/19 19:51,"89 River St, New York City, NY 10001" +238012,Lightning Charging Cable,2,14.95,08/09/19 20:42,"984 Center St, San Francisco, CA 94016" +238013,Wired Headphones,2,11.99,08/08/19 12:08,"694 8th St, Los Angeles, CA 90001" +238014,Apple Airpods Headphones,1,150,08/05/19 14:22,"420 Chestnut St, Los Angeles, CA 90001" +238015,USB-C Charging Cable,1,11.95,08/26/19 18:10,"582 West St, San Francisco, CA 94016" +238016,Wired Headphones,3,11.99,08/17/19 14:26,"908 5th St, San Francisco, CA 94016" +238017,Lightning Charging Cable,1,14.95,08/07/19 09:00,"40 River St, New York City, NY 10001" +238018,USB-C Charging Cable,1,11.95,08/17/19 12:32,"662 Church St, Los Angeles, CA 90001" +238019,AAA Batteries (4-pack),1,2.99,08/05/19 19:59,"66 Highland St, Austin, TX 73301" +238020,AA Batteries (4-pack),1,3.84,08/12/19 21:07,"854 Washington St, Seattle, WA 98101" +238021,Lightning Charging Cable,1,14.95,08/02/19 19:27,"55 5th St, Los Angeles, CA 90001" +238022,Bose SoundSport Headphones,1,99.99,08/24/19 02:17,"316 Meadow St, San Francisco, CA 94016" +238023,USB-C Charging Cable,1,11.95,08/27/19 10:06,"315 Hickory St, Atlanta, GA 30301" +238024,34in Ultrawide Monitor,1,379.99,08/12/19 19:47,"54 Sunset St, Los Angeles, CA 90001" +238025,34in Ultrawide Monitor,1,379.99,08/23/19 10:25,"217 14th St, Atlanta, GA 30301" +238026,USB-C Charging Cable,1,11.95,08/26/19 21:46,"625 Church St, Seattle, WA 98101" +238027,Apple Airpods Headphones,1,150,08/12/19 20:44,"438 7th St, San Francisco, CA 94016" +238028,Macbook Pro Laptop,1,1700,08/08/19 21:55,"277 Highland St, Los Angeles, CA 90001" +238029,iPhone,1,700,08/16/19 19:16,"830 9th St, Dallas, TX 75001" +238029,Lightning Charging Cable,1,14.95,08/16/19 19:16,"830 9th St, Dallas, TX 75001" +238030,Wired Headphones,1,11.99,08/06/19 06:38,"910 4th St, Seattle, WA 98101" +238031,Google Phone,1,600,08/10/19 22:01,"291 2nd St, Portland, OR 97035" +238032,Macbook Pro Laptop,1,1700,08/07/19 18:44,"537 Spruce St, Austin, TX 73301" +238033,AA Batteries (4-pack),3,3.84,08/06/19 15:54,"963 Walnut St, Portland, OR 97035" +238034,AAA Batteries (4-pack),1,2.99,08/28/19 11:42,"914 Lake St, San Francisco, CA 94016" +238035,Bose SoundSport Headphones,1,99.99,08/27/19 19:15,"299 Forest St, Los Angeles, CA 90001" +238036,AAA Batteries (4-pack),3,2.99,08/20/19 11:04,"782 Lake St, San Francisco, CA 94016" +238037,Wired Headphones,1,11.99,08/29/19 18:47,"270 Sunset St, Los Angeles, CA 90001" +238038,AA Batteries (4-pack),1,3.84,08/24/19 12:39,"646 Jackson St, New York City, NY 10001" +238039,Google Phone,1,600,08/05/19 17:18,"206 West St, Seattle, WA 98101" +238040,Bose SoundSport Headphones,1,99.99,08/02/19 22:06,"869 14th St, Seattle, WA 98101" +238041,AA Batteries (4-pack),1,3.84,08/05/19 20:00,"217 8th St, Atlanta, GA 30301" +238042,Lightning Charging Cable,1,14.95,08/29/19 10:40,"491 River St, Atlanta, GA 30301" +238043,Wired Headphones,1,11.99,08/29/19 10:32,"762 Jackson St, Boston, MA 02215" +238044,Wired Headphones,1,11.99,08/23/19 16:08,"549 Wilson St, Seattle, WA 98101" +238045,Lightning Charging Cable,1,14.95,08/29/19 18:01,"635 Pine St, San Francisco, CA 94016" +238046,34in Ultrawide Monitor,1,379.99,08/31/19 12:05,"287 Forest St, Atlanta, GA 30301" +238047,Bose SoundSport Headphones,1,99.99,08/24/19 07:55,"523 Elm St, New York City, NY 10001" +238048,Apple Airpods Headphones,1,150,08/13/19 14:37,"668 South St, New York City, NY 10001" +238049,iPhone,1,700,08/21/19 10:54,"178 River St, Portland, OR 97035" +238050,Bose SoundSport Headphones,1,99.99,08/22/19 00:37,"516 Adams St, Seattle, WA 98101" +238051,USB-C Charging Cable,1,11.95,08/01/19 23:19,"269 10th St, San Francisco, CA 94016" +238052,Wired Headphones,2,11.99,08/29/19 22:24,"485 11th St, Boston, MA 02215" +238053,AA Batteries (4-pack),1,3.84,08/27/19 08:52,"153 West St, Los Angeles, CA 90001" +238054,34in Ultrawide Monitor,1,379.99,08/31/19 18:25,"342 Meadow St, Portland, OR 97035" +238055,Lightning Charging Cable,1,14.95,08/09/19 07:24,"25 Adams St, New York City, NY 10001" +238056,34in Ultrawide Monitor,1,379.99,08/31/19 20:58,"377 1st St, Atlanta, GA 30301" +238057,Flatscreen TV,1,300,08/18/19 17:43,"160 Madison St, Portland, OR 97035" +238058,Wired Headphones,1,11.99,08/21/19 06:57,"712 Pine St, Austin, TX 73301" +238059,USB-C Charging Cable,1,11.95,08/27/19 12:03,"385 Cherry St, San Francisco, CA 94016" +238060,Apple Airpods Headphones,1,150,08/26/19 23:14,"129 Hill St, San Francisco, CA 94016" +238061,Lightning Charging Cable,1,14.95,08/24/19 22:22,"685 13th St, Atlanta, GA 30301" +238062,Bose SoundSport Headphones,1,99.99,08/08/19 14:02,"804 South St, Austin, TX 73301" +238063,AAA Batteries (4-pack),5,2.99,08/20/19 14:50,"876 Washington St, Los Angeles, CA 90001" +238064,27in 4K Gaming Monitor,1,389.99,08/29/19 14:09,"784 Elm St, Boston, MA 02215" +238065,AAA Batteries (4-pack),1,2.99,08/08/19 21:36,"305 14th St, Portland, OR 97035" +238066,Lightning Charging Cable,1,14.95,08/25/19 21:31,"348 8th St, Portland, ME 04101" +238067,Wired Headphones,1,11.99,08/31/19 07:47,"621 Hill St, Atlanta, GA 30301" +238067,AA Batteries (4-pack),2,3.84,08/31/19 07:47,"621 Hill St, Atlanta, GA 30301" +238068,27in FHD Monitor,1,149.99,08/26/19 20:01,"940 Cedar St, Boston, MA 02215" +238069,Bose SoundSport Headphones,1,99.99,08/15/19 19:16,"794 Walnut St, New York City, NY 10001" +238070,Lightning Charging Cable,1,14.95,08/21/19 21:15,"705 Main St, Austin, TX 73301" +238071,Apple Airpods Headphones,1,150,08/10/19 12:46,"119 6th St, Los Angeles, CA 90001" +238072,Flatscreen TV,1,300,08/29/19 22:57,"963 Wilson St, Dallas, TX 75001" +238073,Apple Airpods Headphones,1,150,08/08/19 20:59,"512 Johnson St, Los Angeles, CA 90001" +238074,ThinkPad Laptop,1,999.99,08/03/19 10:42,"105 Center St, San Francisco, CA 94016" +238075,Wired Headphones,1,11.99,08/25/19 13:59,"750 Park St, Los Angeles, CA 90001" +238076,Bose SoundSport Headphones,1,99.99,08/20/19 20:04,"601 North St, San Francisco, CA 94016" +238077,AAA Batteries (4-pack),1,2.99,08/24/19 13:53,"829 Highland St, Los Angeles, CA 90001" +238077,AAA Batteries (4-pack),5,2.99,08/24/19 13:53,"829 Highland St, Los Angeles, CA 90001" +238078,AAA Batteries (4-pack),1,2.99,08/19/19 22:01,"504 Wilson St, Dallas, TX 75001" +238079,iPhone,1,700,08/17/19 13:15,"201 Park St, Los Angeles, CA 90001" +238080,USB-C Charging Cable,2,11.95,08/17/19 23:53,"712 Hill St, Boston, MA 02215" +238081,27in FHD Monitor,1,149.99,08/18/19 19:04,"441 Chestnut St, Portland, ME 04101" +238082,AAA Batteries (4-pack),1,2.99,08/04/19 14:35,"34 Jackson St, San Francisco, CA 94016" +238083,AA Batteries (4-pack),1,3.84,08/15/19 10:39,"266 Hickory St, San Francisco, CA 94016" +238084,20in Monitor,1,109.99,08/07/19 18:02,"267 Jefferson St, Atlanta, GA 30301" +238085,Apple Airpods Headphones,1,150,08/13/19 13:25,"151 Sunset St, San Francisco, CA 94016" +238086,Lightning Charging Cable,1,14.95,08/30/19 08:09,"824 North St, New York City, NY 10001" +238087,Wired Headphones,1,11.99,08/21/19 20:53,"457 10th St, Los Angeles, CA 90001" +238088,Apple Airpods Headphones,1,150,08/12/19 18:45,"709 Pine St, New York City, NY 10001" +238089,27in FHD Monitor,1,149.99,08/12/19 20:59,"311 6th St, Seattle, WA 98101" +238090,Wired Headphones,1,11.99,08/07/19 10:49,"63 Chestnut St, Boston, MA 02215" +238091,USB-C Charging Cable,1,11.95,08/20/19 18:47,"817 Cherry St, Dallas, TX 75001" +238092,Apple Airpods Headphones,1,150,08/03/19 12:18,"655 10th St, Atlanta, GA 30301" +238093,USB-C Charging Cable,1,11.95,08/21/19 17:23,"496 6th St, San Francisco, CA 94016" +238094,Bose SoundSport Headphones,1,99.99,08/16/19 12:35,"240 Lake St, Boston, MA 02215" +238095,27in 4K Gaming Monitor,1,389.99,08/10/19 08:57,"985 West St, Seattle, WA 98101" +238096,AA Batteries (4-pack),3,3.84,08/02/19 09:56,"503 Cherry St, Atlanta, GA 30301" +238096,Wired Headphones,1,11.99,08/02/19 09:56,"503 Cherry St, Atlanta, GA 30301" +238097,USB-C Charging Cable,1,11.95,08/18/19 07:50,"199 Elm St, Atlanta, GA 30301" +238098,AAA Batteries (4-pack),1,2.99,08/26/19 19:17,"580 12th St, Austin, TX 73301" +238099,Wired Headphones,1,11.99,08/09/19 17:24,"529 Ridge St, Seattle, WA 98101" +238100,USB-C Charging Cable,1,11.95,08/11/19 17:28,"72 Washington St, Seattle, WA 98101" +238101,Wired Headphones,1,11.99,08/29/19 12:30,"984 8th St, New York City, NY 10001" +238102,Google Phone,1,600,08/06/19 12:13,"147 7th St, New York City, NY 10001" +238103,USB-C Charging Cable,1,11.95,08/31/19 16:30,"859 11th St, Austin, TX 73301" +238104,USB-C Charging Cable,1,11.95,08/08/19 19:31,"900 Park St, Austin, TX 73301" +238105,Macbook Pro Laptop,1,1700,08/03/19 09:36,"598 Spruce St, San Francisco, CA 94016" +238106,20in Monitor,1,109.99,08/20/19 10:54,"143 Chestnut St, New York City, NY 10001" +238107,34in Ultrawide Monitor,1,379.99,08/01/19 10:16,"914 Cherry St, New York City, NY 10001" +238108,Google Phone,1,600,08/01/19 13:22,"977 Ridge St, Portland, OR 97035" +238109,20in Monitor,1,109.99,08/21/19 06:31,"629 River St, Dallas, TX 75001" +238110,Wired Headphones,2,11.99,08/24/19 21:06,"366 Dogwood St, Dallas, TX 75001" +238111,Apple Airpods Headphones,1,150,08/08/19 14:52,"834 6th St, Atlanta, GA 30301" +238112,34in Ultrawide Monitor,1,379.99,08/16/19 15:46,"670 5th St, Dallas, TX 75001" +238113,Bose SoundSport Headphones,1,99.99,08/29/19 19:40,"543 River St, San Francisco, CA 94016" +238114,Lightning Charging Cable,1,14.95,08/31/19 21:12,"609 Cherry St, Atlanta, GA 30301" +238114,34in Ultrawide Monitor,1,379.99,08/31/19 21:12,"609 Cherry St, Atlanta, GA 30301" +238115,AAA Batteries (4-pack),2,2.99,08/17/19 15:50,"291 8th St, Atlanta, GA 30301" +238116,Apple Airpods Headphones,1,150,08/18/19 15:40,"273 Lakeview St, Los Angeles, CA 90001" +238117,Apple Airpods Headphones,1,150,08/31/19 16:17,"41 Cherry St, Austin, TX 73301" +238118,Apple Airpods Headphones,1,150,08/05/19 21:40,"481 Willow St, Austin, TX 73301" +238119,Wired Headphones,1,11.99,08/21/19 11:43,"417 8th St, Los Angeles, CA 90001" +238120,iPhone,1,700,08/06/19 11:55,"328 Maple St, Los Angeles, CA 90001" +238121,AA Batteries (4-pack),1,3.84,08/01/19 15:54,"558 Sunset St, Atlanta, GA 30301" +238122,Flatscreen TV,1,300,08/22/19 11:53,"401 Hill St, Atlanta, GA 30301" +238123,Google Phone,1,600,08/01/19 17:21,"592 Forest St, Atlanta, GA 30301" +238124,Wired Headphones,2,11.99,08/13/19 17:54,"366 5th St, Austin, TX 73301" +238125,Wired Headphones,1,11.99,08/23/19 12:17,"401 Highland St, San Francisco, CA 94016" +238126,Flatscreen TV,1,300,08/10/19 18:47,"54 Ridge St, Seattle, WA 98101" +238127,AAA Batteries (4-pack),2,2.99,08/02/19 11:54,"973 Church St, Dallas, TX 75001" +238128,AAA Batteries (4-pack),1,2.99,08/28/19 12:24,"292 7th St, Seattle, WA 98101" +238129,Lightning Charging Cable,1,14.95,08/17/19 09:24,"631 Adams St, Austin, TX 73301" +238130,Google Phone,1,600,08/26/19 19:09,"221 River St, San Francisco, CA 94016" +238130,USB-C Charging Cable,1,11.95,08/26/19 19:09,"221 River St, San Francisco, CA 94016" +238131,AAA Batteries (4-pack),1,2.99,08/09/19 18:38,"385 Forest St, Dallas, TX 75001" +238132,AA Batteries (4-pack),1,3.84,08/19/19 14:33,"166 7th St, Seattle, WA 98101" +238133,Apple Airpods Headphones,1,150,08/30/19 15:35,"863 Hickory St, Dallas, TX 75001" +238134,USB-C Charging Cable,1,11.95,08/01/19 20:21,"935 Hickory St, Dallas, TX 75001" +238135,27in FHD Monitor,1,149.99,08/12/19 20:26,"537 Center St, Atlanta, GA 30301" +238136,iPhone,1,700,08/19/19 09:19,"608 Spruce St, Seattle, WA 98101" +238137,AA Batteries (4-pack),2,3.84,08/12/19 10:05,"419 Spruce St, Atlanta, GA 30301" +238138,Wired Headphones,1,11.99,08/07/19 06:14,"961 Hickory St, Los Angeles, CA 90001" +238139,Bose SoundSport Headphones,1,99.99,08/13/19 19:11,"117 Hickory St, Boston, MA 02215" +238140,Apple Airpods Headphones,1,150,08/06/19 19:53,"737 10th St, San Francisco, CA 94016" +238141,AA Batteries (4-pack),1,3.84,08/02/19 11:36,"125 9th St, Dallas, TX 75001" +238142,Bose SoundSport Headphones,1,99.99,08/10/19 22:51,"925 Sunset St, Atlanta, GA 30301" +238143,Lightning Charging Cable,1,14.95,08/14/19 13:20,"74 14th St, Seattle, WA 98101" +238144,iPhone,1,700,08/22/19 13:26,"375 Spruce St, Atlanta, GA 30301" +238144,Lightning Charging Cable,1,14.95,08/22/19 13:26,"375 Spruce St, Atlanta, GA 30301" +238145,iPhone,1,700,08/18/19 09:16,"68 Chestnut St, Austin, TX 73301" +238146,Apple Airpods Headphones,1,150,08/23/19 05:30,"745 Johnson St, San Francisco, CA 94016" +238147,Google Phone,1,600,08/14/19 13:29,"632 Church St, New York City, NY 10001" +238148,Lightning Charging Cable,1,14.95,08/02/19 09:26,"692 Jefferson St, San Francisco, CA 94016" +238149,AA Batteries (4-pack),1,3.84,08/01/19 13:45,"23 Hickory St, Atlanta, GA 30301" +238150,Apple Airpods Headphones,1,150,08/29/19 18:58,"826 West St, Dallas, TX 75001" +238151,Vareebadd Phone,1,400,08/27/19 15:48,"547 6th St, Boston, MA 02215" +238152,Apple Airpods Headphones,1,150,08/24/19 14:47,"254 River St, San Francisco, CA 94016" +238153,AA Batteries (4-pack),1,3.84,08/14/19 16:23,"711 River St, Atlanta, GA 30301" +238154,AAA Batteries (4-pack),1,2.99,08/26/19 22:54,"488 1st St, San Francisco, CA 94016" +238155,AAA Batteries (4-pack),1,2.99,08/13/19 12:04,"674 Cherry St, San Francisco, CA 94016" +238156,Lightning Charging Cable,1,14.95,08/07/19 13:22,"192 2nd St, Portland, OR 97035" +238157,AA Batteries (4-pack),2,3.84,08/30/19 10:26,"435 7th St, Austin, TX 73301" +238158,AA Batteries (4-pack),2,3.84,08/03/19 12:55,"808 Elm St, San Francisco, CA 94016" +238159,Lightning Charging Cable,1,14.95,08/10/19 21:13,"464 Meadow St, San Francisco, CA 94016" +238160,Apple Airpods Headphones,1,150,08/23/19 06:44,"220 Church St, Portland, OR 97035" +238161,Lightning Charging Cable,1,14.95,08/02/19 20:36,"259 Lake St, Seattle, WA 98101" +238162,Wired Headphones,1,11.99,08/04/19 14:29,"341 North St, Seattle, WA 98101" +238163,USB-C Charging Cable,1,11.95,08/03/19 10:49,"910 1st St, Portland, OR 97035" +238164,Wired Headphones,2,11.99,08/11/19 11:14,"633 Hickory St, Austin, TX 73301" +238165,AAA Batteries (4-pack),1,2.99,08/27/19 19:58,"86 13th St, Boston, MA 02215" +238166,AAA Batteries (4-pack),1,2.99,08/16/19 14:13,"37 9th St, San Francisco, CA 94016" +238167,Bose SoundSport Headphones,1,99.99,08/15/19 17:25,"691 Main St, Portland, OR 97035" +238168,Apple Airpods Headphones,1,150,08/01/19 13:04,"618 Hill St, Dallas, TX 75001" +238169,27in FHD Monitor,1,149.99,08/26/19 15:44,"616 Church St, New York City, NY 10001" +238170,Flatscreen TV,1,300,08/21/19 21:46,"411 Meadow St, Austin, TX 73301" +238171,USB-C Charging Cable,1,11.95,08/13/19 20:33,"133 South St, Seattle, WA 98101" +238172,iPhone,1,700,08/13/19 16:49,"207 8th St, Los Angeles, CA 90001" +238173,27in FHD Monitor,1,149.99,08/11/19 13:31,"253 Ridge St, New York City, NY 10001" +238174,Apple Airpods Headphones,1,150,08/27/19 20:53,"102 Sunset St, Austin, TX 73301" +238175,AAA Batteries (4-pack),1,2.99,08/13/19 23:05,"356 Cedar St, Seattle, WA 98101" +238176,Wired Headphones,1,11.99,08/29/19 13:13,"705 11th St, San Francisco, CA 94016" +238177,AA Batteries (4-pack),1,3.84,08/18/19 20:19,"25 Cedar St, San Francisco, CA 94016" +238178,AAA Batteries (4-pack),1,2.99,08/28/19 10:43,"576 Park St, Boston, MA 02215" +238179,USB-C Charging Cable,1,11.95,08/23/19 00:27,"348 Lincoln St, San Francisco, CA 94016" +238180,AAA Batteries (4-pack),2,2.99,08/27/19 08:18,"130 10th St, San Francisco, CA 94016" +238181,AA Batteries (4-pack),1,3.84,08/21/19 11:53,"709 12th St, Los Angeles, CA 90001" +238182,Lightning Charging Cable,1,14.95,08/06/19 23:34,"608 Cedar St, Dallas, TX 75001" +238183,AAA Batteries (4-pack),1,2.99,08/05/19 10:56,"939 Highland St, Seattle, WA 98101" +238184,Vareebadd Phone,1,400,08/15/19 12:05,"432 Walnut St, Dallas, TX 75001" +238185,34in Ultrawide Monitor,1,379.99,08/04/19 18:21,"61 Elm St, San Francisco, CA 94016" +238186,Lightning Charging Cable,1,14.95,08/26/19 09:11,"758 Willow St, Portland, OR 97035" +238187,Wired Headphones,1,11.99,08/20/19 19:35,"603 Lake St, Portland, OR 97035" +238188,Apple Airpods Headphones,1,150,08/23/19 07:22,"147 Pine St, San Francisco, CA 94016" +238189,27in 4K Gaming Monitor,1,389.99,08/25/19 15:09,"554 8th St, Atlanta, GA 30301" +238190,27in FHD Monitor,1,149.99,08/07/19 09:52,"189 Cherry St, New York City, NY 10001" +238191,USB-C Charging Cable,1,11.95,08/21/19 09:48,"640 Pine St, Atlanta, GA 30301" +238192,Lightning Charging Cable,1,14.95,08/17/19 08:15,"621 Hickory St, Los Angeles, CA 90001" +238193,Wired Headphones,1,11.99,08/16/19 14:13,"163 5th St, Atlanta, GA 30301" +238194,Wired Headphones,1,11.99,08/06/19 10:07,"527 Cedar St, Boston, MA 02215" +238195,Bose SoundSport Headphones,1,99.99,08/23/19 20:40,"422 Johnson St, San Francisco, CA 94016" +238196,Lightning Charging Cable,1,14.95,08/02/19 12:30,"553 Park St, Los Angeles, CA 90001" +238197,27in FHD Monitor,1,149.99,08/13/19 18:57,"125 Main St, New York City, NY 10001" +238198,Wired Headphones,1,11.99,08/11/19 19:10,"66 Cherry St, New York City, NY 10001" +238199,Lightning Charging Cable,1,14.95,08/25/19 08:43,"789 9th St, Boston, MA 02215" +238200,Apple Airpods Headphones,1,150,08/24/19 13:34,"913 Meadow St, Portland, OR 97035" +238201,Lightning Charging Cable,1,14.95,08/22/19 09:04,"87 Johnson St, Atlanta, GA 30301" +238202,34in Ultrawide Monitor,1,379.99,08/27/19 18:00,"239 Spruce St, Dallas, TX 75001" +238203,USB-C Charging Cable,1,11.95,08/16/19 12:14,"516 Elm St, Los Angeles, CA 90001" +238204,27in FHD Monitor,1,149.99,08/05/19 23:07,"88 Madison St, New York City, NY 10001" +238205,AAA Batteries (4-pack),3,2.99,08/26/19 16:15,"148 Ridge St, San Francisco, CA 94016" +238206,Apple Airpods Headphones,1,150,08/24/19 23:34,"265 Maple St, Atlanta, GA 30301" +238207,Wired Headphones,1,11.99,08/09/19 21:58,"345 8th St, Austin, TX 73301" +238208,Wired Headphones,1,11.99,08/05/19 21:32,"750 Lakeview St, Portland, OR 97035" +238209,AAA Batteries (4-pack),1,2.99,08/18/19 11:44,"390 9th St, Dallas, TX 75001" +238210,27in 4K Gaming Monitor,1,389.99,08/25/19 20:28,"251 Adams St, Portland, OR 97035" +238211,AA Batteries (4-pack),1,3.84,08/19/19 11:28,"684 5th St, New York City, NY 10001" +238212,Wired Headphones,1,11.99,08/15/19 22:10,"28 Spruce St, Dallas, TX 75001" +238213,Apple Airpods Headphones,1,150,08/27/19 18:01,"187 Maple St, Boston, MA 02215" +238214,Lightning Charging Cable,1,14.95,08/09/19 21:52,"702 13th St, San Francisco, CA 94016" +238215,27in FHD Monitor,1,149.99,08/20/19 20:38,"156 13th St, Los Angeles, CA 90001" +238216,USB-C Charging Cable,2,11.95,08/17/19 01:20,"984 11th St, New York City, NY 10001" +238217,AAA Batteries (4-pack),1,2.99,08/15/19 23:39,"269 Main St, Dallas, TX 75001" +238218,AAA Batteries (4-pack),2,2.99,08/24/19 09:16,"434 6th St, San Francisco, CA 94016" +238219,AA Batteries (4-pack),1,3.84,08/10/19 20:18,"491 Cherry St, San Francisco, CA 94016" +238220,ThinkPad Laptop,1,999.99,08/23/19 19:10,"323 2nd St, Seattle, WA 98101" +238221,Flatscreen TV,1,300,08/23/19 19:25,"222 North St, Seattle, WA 98101" +238222,Apple Airpods Headphones,1,150,08/12/19 18:03,"702 Washington St, San Francisco, CA 94016" +238223,Macbook Pro Laptop,1,1700,08/30/19 12:07,"1 Walnut St, New York City, NY 10001" +238224,34in Ultrawide Monitor,1,379.99,08/11/19 15:31,"757 River St, San Francisco, CA 94016" +238225,Apple Airpods Headphones,1,150,08/29/19 14:55,"623 Forest St, Boston, MA 02215" +238226,Bose SoundSport Headphones,1,99.99,08/05/19 21:59,"754 Wilson St, Los Angeles, CA 90001" +238227,Macbook Pro Laptop,1,1700,08/28/19 10:55,"163 Johnson St, Dallas, TX 75001" +238228,AA Batteries (4-pack),2,3.84,08/26/19 12:41,"669 Main St, Los Angeles, CA 90001" +238229,Apple Airpods Headphones,1,150,08/04/19 11:41,"614 6th St, New York City, NY 10001" +238230,27in FHD Monitor,1,149.99,08/12/19 15:51,"436 Elm St, San Francisco, CA 94016" +238231,Wired Headphones,1,11.99,08/21/19 07:35,"885 6th St, Boston, MA 02215" +238232,Apple Airpods Headphones,1,150,08/30/19 12:23,"856 9th St, San Francisco, CA 94016" +238233,27in FHD Monitor,1,149.99,08/02/19 13:24,"131 Lake St, Seattle, WA 98101" +238234,USB-C Charging Cable,1,11.95,08/21/19 07:48,"320 Cherry St, Seattle, WA 98101" +238235,Google Phone,1,600,08/31/19 14:31,"681 Johnson St, Los Angeles, CA 90001" +238235,USB-C Charging Cable,1,11.95,08/31/19 14:31,"681 Johnson St, Los Angeles, CA 90001" +238236,34in Ultrawide Monitor,1,379.99,08/10/19 14:40,"55 Madison St, Los Angeles, CA 90001" +238237,USB-C Charging Cable,3,11.95,08/10/19 20:42,"382 13th St, Los Angeles, CA 90001" +238238,AAA Batteries (4-pack),2,2.99,08/03/19 21:17,"213 Chestnut St, Los Angeles, CA 90001" +238239,USB-C Charging Cable,1,11.95,08/15/19 20:25,"89 North St, Boston, MA 02215" +238240,Wired Headphones,1,11.99,08/19/19 02:22,"996 14th St, San Francisco, CA 94016" +238241,Lightning Charging Cable,1,14.95,08/03/19 21:46,"441 Hickory St, Seattle, WA 98101" +238242,USB-C Charging Cable,1,11.95,08/07/19 13:46,"63 11th St, Portland, OR 97035" +238243,Macbook Pro Laptop,1,1700,08/14/19 17:17,"358 6th St, Dallas, TX 75001" +238244,Apple Airpods Headphones,1,150,08/27/19 07:49,"437 River St, San Francisco, CA 94016" +238245,34in Ultrawide Monitor,1,379.99,08/06/19 15:18,"454 Hickory St, Austin, TX 73301" +238246,Lightning Charging Cable,1,14.95,08/11/19 20:25,"717 Cherry St, Los Angeles, CA 90001" +238247,AAA Batteries (4-pack),1,2.99,08/25/19 22:21,"294 Lake St, Los Angeles, CA 90001" +238248,USB-C Charging Cable,1,11.95,08/16/19 20:11,"440 Madison St, Los Angeles, CA 90001" +238249,USB-C Charging Cable,1,11.95,08/27/19 17:34,"635 West St, Seattle, WA 98101" +238250,AA Batteries (4-pack),2,3.84,08/18/19 00:30,"842 10th St, Dallas, TX 75001" +238251,Wired Headphones,1,11.99,08/20/19 10:37,"132 Cherry St, Boston, MA 02215" +238251,Lightning Charging Cable,1,14.95,08/20/19 10:37,"132 Cherry St, Boston, MA 02215" +238252,Bose SoundSport Headphones,1,99.99,08/28/19 18:38,"875 Cherry St, Los Angeles, CA 90001" +238253,USB-C Charging Cable,1,11.95,08/28/19 15:15,"12 Sunset St, San Francisco, CA 94016" +238254,AAA Batteries (4-pack),2,2.99,08/03/19 23:30,"773 4th St, Boston, MA 02215" +238255,Apple Airpods Headphones,1,150,08/29/19 10:04,"659 Johnson St, San Francisco, CA 94016" +238256,Wired Headphones,1,11.99,08/25/19 14:07,"893 Lincoln St, Portland, ME 04101" +238257,Lightning Charging Cable,1,14.95,08/27/19 11:30,"104 Jefferson St, New York City, NY 10001" +238258,iPhone,1,700,08/27/19 11:36,"544 Chestnut St, Dallas, TX 75001" +238259,Apple Airpods Headphones,1,150,08/13/19 20:19,"873 Forest St, Los Angeles, CA 90001" +238260,Apple Airpods Headphones,1,150,08/23/19 18:02,"213 Hickory St, Boston, MA 02215" +238261,Bose SoundSport Headphones,1,99.99,08/25/19 13:04,"822 Center St, San Francisco, CA 94016" +238262,27in FHD Monitor,1,149.99,08/24/19 12:14,"242 Forest St, Los Angeles, CA 90001" +238263,Macbook Pro Laptop,1,1700,08/09/19 15:46,"132 Cedar St, New York City, NY 10001" +238264,AA Batteries (4-pack),1,3.84,08/28/19 06:35,"878 Madison St, Los Angeles, CA 90001" +238265,Wired Headphones,1,11.99,08/21/19 11:33,"233 River St, San Francisco, CA 94016" +238266,Apple Airpods Headphones,1,150,08/30/19 12:09,"541 Lincoln St, Portland, ME 04101" +238267,27in FHD Monitor,1,149.99,08/18/19 17:23,"365 Park St, Los Angeles, CA 90001" +238268,27in 4K Gaming Monitor,1,389.99,08/11/19 11:14,"623 2nd St, Atlanta, GA 30301" +238269,Macbook Pro Laptop,1,1700,08/12/19 20:54,"130 Maple St, San Francisco, CA 94016" +238270,AAA Batteries (4-pack),2,2.99,08/29/19 14:39,"431 North St, Dallas, TX 75001" +238271,Apple Airpods Headphones,1,150,08/24/19 21:49,"453 7th St, Seattle, WA 98101" +238272,Wired Headphones,1,11.99,08/07/19 01:03,"288 Pine St, Portland, OR 97035" +238273,Lightning Charging Cable,1,14.95,08/28/19 19:31,"979 Washington St, San Francisco, CA 94016" +238274,USB-C Charging Cable,1,11.95,08/01/19 06:32,"535 Chestnut St, Atlanta, GA 30301" +238275,AAA Batteries (4-pack),1,2.99,08/21/19 22:57,"66 4th St, San Francisco, CA 94016" +238276,20in Monitor,1,109.99,08/08/19 16:07,"405 11th St, Los Angeles, CA 90001" +238277,Apple Airpods Headphones,1,150,08/04/19 22:20,"52 Lincoln St, San Francisco, CA 94016" +238278,27in 4K Gaming Monitor,1,389.99,08/29/19 13:19,"470 9th St, San Francisco, CA 94016" +238279,USB-C Charging Cable,1,11.95,08/17/19 18:57,"694 Walnut St, San Francisco, CA 94016" +238280,Wired Headphones,1,11.99,08/03/19 16:19,"51 Park St, New York City, NY 10001" +238281,Bose SoundSport Headphones,1,99.99,08/05/19 17:41,"810 West St, Atlanta, GA 30301" +238282,Flatscreen TV,1,300,08/29/19 19:21,"231 Chestnut St, New York City, NY 10001" +238283,Apple Airpods Headphones,1,150,08/15/19 13:04,"535 13th St, Seattle, WA 98101" +238284,Macbook Pro Laptop,1,1700,08/18/19 06:53,"568 Meadow St, Boston, MA 02215" +238285,Bose SoundSport Headphones,1,99.99,08/12/19 10:50,"471 Walnut St, Seattle, WA 98101" +238286,Macbook Pro Laptop,1,1700,08/30/19 13:14,"723 9th St, Seattle, WA 98101" +238287,Apple Airpods Headphones,1,150,08/12/19 17:01,"51 South St, San Francisco, CA 94016" +238288,AA Batteries (4-pack),1,3.84,08/09/19 17:22,"110 9th St, Los Angeles, CA 90001" +238289,Lightning Charging Cable,1,14.95,08/23/19 12:39,"670 Main St, Austin, TX 73301" +238290,Apple Airpods Headphones,1,150,08/02/19 17:28,"910 Highland St, Los Angeles, CA 90001" +238291,Apple Airpods Headphones,1,150,08/16/19 23:54,"40 Meadow St, Boston, MA 02215" +238291,Wired Headphones,1,11.99,08/16/19 23:54,"40 Meadow St, Boston, MA 02215" +238292,Lightning Charging Cable,1,14.95,08/07/19 20:24,"863 Walnut St, Boston, MA 02215" +238293,AAA Batteries (4-pack),4,2.99,08/04/19 20:02,"734 Lincoln St, Austin, TX 73301" +238294,iPhone,1,700,08/27/19 11:59,"789 11th St, Boston, MA 02215" +238294,AAA Batteries (4-pack),2,2.99,08/27/19 11:59,"789 11th St, Boston, MA 02215" +238295,Macbook Pro Laptop,1,1700,08/02/19 18:27,"171 Willow St, Dallas, TX 75001" +238296,27in 4K Gaming Monitor,1,389.99,08/03/19 15:55,"24 Walnut St, San Francisco, CA 94016" +238297,Wired Headphones,2,11.99,08/05/19 15:49,"125 River St, Los Angeles, CA 90001" +238298,Lightning Charging Cable,1,14.95,08/19/19 15:34,"703 Cedar St, Boston, MA 02215" +238299,Apple Airpods Headphones,1,150,08/27/19 09:05,"702 Lincoln St, Los Angeles, CA 90001" +238300,Lightning Charging Cable,1,14.95,08/11/19 19:47,"966 Johnson St, San Francisco, CA 94016" +238301,AAA Batteries (4-pack),1,2.99,08/29/19 07:57,"770 Highland St, New York City, NY 10001" +238302,Wired Headphones,1,11.99,08/25/19 12:47,"127 Elm St, Los Angeles, CA 90001" +238303,AAA Batteries (4-pack),1,2.99,08/13/19 13:05,"793 Hickory St, Austin, TX 73301" +238304,AA Batteries (4-pack),1,3.84,08/24/19 02:28,"320 Cedar St, Seattle, WA 98101" +238305,USB-C Charging Cable,1,11.95,08/18/19 13:42,"431 Lake St, San Francisco, CA 94016" +238306,Lightning Charging Cable,1,14.95,08/22/19 22:08,"324 13th St, Austin, TX 73301" +238307,ThinkPad Laptop,1,999.99,08/23/19 22:09,"400 Lake St, Boston, MA 02215" +238308,34in Ultrawide Monitor,1,379.99,08/15/19 11:43,"482 South St, Seattle, WA 98101" +238309,27in FHD Monitor,1,149.99,08/03/19 12:17,"4 Dogwood St, San Francisco, CA 94016" +238310,Lightning Charging Cable,1,14.95,08/23/19 20:34,"841 Wilson St, Los Angeles, CA 90001" +238311,AA Batteries (4-pack),1,3.84,08/25/19 18:35,"388 13th St, Los Angeles, CA 90001" +238312,AA Batteries (4-pack),1,3.84,08/06/19 17:28,"170 Meadow St, San Francisco, CA 94016" +238313,AAA Batteries (4-pack),1,2.99,08/31/19 00:19,"138 11th St, Austin, TX 73301" +238314,LG Washing Machine,1,600.0,08/21/19 20:52,"732 Walnut St, Dallas, TX 75001" +238315,Wired Headphones,1,11.99,08/29/19 18:57,"239 Willow St, Seattle, WA 98101" +238316,AA Batteries (4-pack),2,3.84,08/29/19 15:00,"391 Elm St, Dallas, TX 75001" +238317,27in FHD Monitor,1,149.99,08/06/19 08:52,"161 Park St, New York City, NY 10001" +238317,Bose SoundSport Headphones,1,99.99,08/06/19 08:52,"161 Park St, New York City, NY 10001" +238318,Bose SoundSport Headphones,1,99.99,08/23/19 18:52,"97 West St, Seattle, WA 98101" +238319,27in 4K Gaming Monitor,1,389.99,08/27/19 03:48,"191 Lincoln St, Portland, OR 97035" +238320,Lightning Charging Cable,1,14.95,08/16/19 18:32,"141 9th St, Atlanta, GA 30301" +238321,LG Washing Machine,1,600.0,08/08/19 13:28,"301 12th St, Seattle, WA 98101" +238322,27in 4K Gaming Monitor,1,389.99,08/30/19 20:36,"351 6th St, Seattle, WA 98101" +238323,Flatscreen TV,1,300,08/04/19 16:38,"574 Church St, Portland, OR 97035" +238324,AAA Batteries (4-pack),1,2.99,08/12/19 13:44,"587 Willow St, Austin, TX 73301" +238325,USB-C Charging Cable,2,11.95,08/22/19 12:52,"19 Pine St, Boston, MA 02215" +238326,Vareebadd Phone,1,400,08/09/19 17:52,"376 Madison St, Portland, ME 04101" +238326,USB-C Charging Cable,1,11.95,08/09/19 17:52,"376 Madison St, Portland, ME 04101" +238327,Wired Headphones,1,11.99,08/14/19 05:37,"385 Center St, Dallas, TX 75001" +238328,Lightning Charging Cable,1,14.95,08/17/19 21:30,"655 Ridge St, Portland, ME 04101" +238329,27in 4K Gaming Monitor,1,389.99,08/26/19 06:04,"348 North St, Los Angeles, CA 90001" +238330,Wired Headphones,1,11.99,08/06/19 23:17,"297 12th St, Boston, MA 02215" +238331,USB-C Charging Cable,1,11.95,08/14/19 20:37,"136 North St, Portland, ME 04101" +238332,Apple Airpods Headphones,1,150,08/10/19 19:33,"292 Cedar St, New York City, NY 10001" +238333,Lightning Charging Cable,1,14.95,08/13/19 19:55,"35 Center St, Los Angeles, CA 90001" +238334,USB-C Charging Cable,1,11.95,08/25/19 18:59,"819 Johnson St, New York City, NY 10001" +238335,AAA Batteries (4-pack),1,2.99,08/26/19 15:45,"106 10th St, Dallas, TX 75001" +238336,AAA Batteries (4-pack),1,2.99,08/14/19 05:13,"632 Meadow St, Los Angeles, CA 90001" +238337,ThinkPad Laptop,1,999.99,08/18/19 08:49,"159 Chestnut St, Los Angeles, CA 90001" +238338,Wired Headphones,1,11.99,08/25/19 18:00,"529 13th St, San Francisco, CA 94016" +238339,iPhone,1,700,08/09/19 11:56,"952 2nd St, New York City, NY 10001" +238340,Apple Airpods Headphones,1,150,08/04/19 08:27,"512 Church St, San Francisco, CA 94016" +238341,iPhone,1,700,08/20/19 14:38,"593 Jefferson St, Boston, MA 02215" +238342,Apple Airpods Headphones,1,150,08/19/19 17:32,"619 Jefferson St, New York City, NY 10001" +238343,Apple Airpods Headphones,1,150,08/05/19 06:28,"412 Adams St, Atlanta, GA 30301" +238344,Apple Airpods Headphones,1,150,08/14/19 12:35,"743 7th St, San Francisco, CA 94016" +238345,Wired Headphones,1,11.99,08/13/19 19:24,"757 12th St, Dallas, TX 75001" +238346,Macbook Pro Laptop,1,1700,08/17/19 12:37,"760 Meadow St, Dallas, TX 75001" +238347,AAA Batteries (4-pack),1,2.99,08/09/19 05:38,"838 Lakeview St, Seattle, WA 98101" +238348,AA Batteries (4-pack),1,3.84,08/21/19 15:37,"68 Highland St, Los Angeles, CA 90001" +238349,Lightning Charging Cable,1,14.95,08/22/19 16:54,"156 11th St, Los Angeles, CA 90001" +238350,AAA Batteries (4-pack),1,2.99,08/23/19 18:09,"563 Cherry St, Portland, OR 97035" +238351,Apple Airpods Headphones,1,150,08/01/19 23:15,"345 Johnson St, Los Angeles, CA 90001" +238352,USB-C Charging Cable,1,11.95,08/08/19 11:15,"298 Johnson St, San Francisco, CA 94016" +238353,AA Batteries (4-pack),2,3.84,08/03/19 19:30,"345 Center St, Boston, MA 02215" +238354,Bose SoundSport Headphones,1,99.99,08/04/19 17:00,"313 Jefferson St, San Francisco, CA 94016" +238355,ThinkPad Laptop,1,999.99,08/18/19 19:40,"99 Cedar St, Seattle, WA 98101" +238356,AAA Batteries (4-pack),2,2.99,08/21/19 11:50,"215 Hickory St, San Francisco, CA 94016" +238357,iPhone,1,700,08/30/19 22:03,"216 Willow St, Portland, OR 97035" +238358,27in 4K Gaming Monitor,1,389.99,08/26/19 21:50,"291 4th St, San Francisco, CA 94016" +238359,20in Monitor,1,109.99,08/12/19 17:07,"754 Park St, New York City, NY 10001" +238360,Wired Headphones,1,11.99,08/24/19 19:17,"586 Highland St, San Francisco, CA 94016" +238361,AA Batteries (4-pack),1,3.84,08/15/19 13:35,"509 13th St, San Francisco, CA 94016" +238362,iPhone,1,700,08/01/19 08:18,"79 11th St, San Francisco, CA 94016" +238362,Lightning Charging Cable,1,14.95,08/01/19 08:18,"79 11th St, San Francisco, CA 94016" +238363,iPhone,1,700,08/04/19 10:50,"262 Pine St, San Francisco, CA 94016" +238364,AA Batteries (4-pack),3,3.84,08/13/19 13:48,"619 Forest St, San Francisco, CA 94016" +238365,27in FHD Monitor,1,149.99,08/11/19 20:23,"262 Spruce St, Los Angeles, CA 90001" +238366,AA Batteries (4-pack),1,3.84,08/30/19 07:46,"6 5th St, Austin, TX 73301" +238367,AA Batteries (4-pack),2,3.84,08/28/19 21:34,"526 1st St, Portland, OR 97035" +238368,20in Monitor,1,109.99,08/22/19 18:49,"837 Forest St, Los Angeles, CA 90001" +238369,USB-C Charging Cable,1,11.95,08/13/19 19:01,"914 Adams St, Seattle, WA 98101" +238370,USB-C Charging Cable,1,11.95,08/08/19 12:32,"571 Dogwood St, San Francisco, CA 94016" +238371,AA Batteries (4-pack),3,3.84,08/29/19 18:58,"389 Lakeview St, Los Angeles, CA 90001" +238372,Lightning Charging Cable,1,14.95,08/15/19 18:12,"991 Spruce St, Atlanta, GA 30301" +238372,AA Batteries (4-pack),1,3.84,08/15/19 18:12,"991 Spruce St, Atlanta, GA 30301" +238373,Macbook Pro Laptop,1,1700,08/28/19 17:44,"937 Willow St, Dallas, TX 75001" +238374,Lightning Charging Cable,2,14.95,08/07/19 11:18,"760 Highland St, Los Angeles, CA 90001" +238375,27in 4K Gaming Monitor,1,389.99,08/16/19 20:46,"597 Highland St, San Francisco, CA 94016" +238376,27in 4K Gaming Monitor,1,389.99,08/06/19 12:19,"341 Adams St, New York City, NY 10001" +238377,Flatscreen TV,1,300,08/24/19 09:17,"930 8th St, San Francisco, CA 94016" +238378,Lightning Charging Cable,1,14.95,08/18/19 11:01,"799 Chestnut St, San Francisco, CA 94016" +238379,Flatscreen TV,1,300,08/12/19 13:24,"341 Jefferson St, Atlanta, GA 30301" +238380,Lightning Charging Cable,1,14.95,08/31/19 05:38,"713 Wilson St, Boston, MA 02215" +238380,Lightning Charging Cable,1,14.95,08/31/19 05:38,"713 Wilson St, Boston, MA 02215" +238381,Lightning Charging Cable,1,14.95,08/21/19 14:48,"118 Johnson St, Dallas, TX 75001" +238382,ThinkPad Laptop,1,999.99,08/27/19 10:25,"488 Lake St, Los Angeles, CA 90001" +238383,Apple Airpods Headphones,1,150,08/06/19 22:34,"933 2nd St, San Francisco, CA 94016" +238384,USB-C Charging Cable,1,11.95,08/29/19 18:06,"950 Washington St, Seattle, WA 98101" +238385,Google Phone,1,600,08/26/19 21:54,"703 West St, Portland, OR 97035" +238386,27in FHD Monitor,1,149.99,08/03/19 01:02,"983 River St, Boston, MA 02215" +238387,Wired Headphones,3,11.99,08/29/19 09:37,"435 Jefferson St, Los Angeles, CA 90001" +238388,Lightning Charging Cable,1,14.95,08/29/19 00:22,"82 Madison St, San Francisco, CA 94016" +238389,Apple Airpods Headphones,1,150,08/23/19 12:50,"307 Adams St, New York City, NY 10001" +238390,Lightning Charging Cable,1,14.95,08/21/19 16:04,"725 6th St, San Francisco, CA 94016" +238391,Wired Headphones,1,11.99,08/07/19 19:44,"355 7th St, Dallas, TX 75001" +238392,Lightning Charging Cable,1,14.95,08/08/19 15:35,"35 9th St, Boston, MA 02215" +238393,AA Batteries (4-pack),1,3.84,08/30/19 17:13,"923 Spruce St, Atlanta, GA 30301" +238394,USB-C Charging Cable,1,11.95,08/11/19 10:11,"258 Maple St, Austin, TX 73301" +238395,AAA Batteries (4-pack),1,2.99,08/07/19 11:23,"950 Pine St, San Francisco, CA 94016" +238396,Apple Airpods Headphones,1,150,08/07/19 20:13,"167 12th St, Austin, TX 73301" +238397,iPhone,1,700,08/09/19 13:18,"9 Lakeview St, San Francisco, CA 94016" +238398,Lightning Charging Cable,1,14.95,08/05/19 21:26,"574 Forest St, Los Angeles, CA 90001" +238399,AAA Batteries (4-pack),2,2.99,08/14/19 18:17,"855 Madison St, Dallas, TX 75001" +238400,AAA Batteries (4-pack),1,2.99,08/26/19 08:31,"889 North St, Portland, OR 97035" +238401,USB-C Charging Cable,1,11.95,08/30/19 10:17,"476 Ridge St, San Francisco, CA 94016" +238402,Flatscreen TV,1,300,08/30/19 17:29,"553 Lincoln St, Dallas, TX 75001" +238403,Lightning Charging Cable,1,14.95,08/17/19 21:36,"356 8th St, San Francisco, CA 94016" +238404,Lightning Charging Cable,1,14.95,08/23/19 21:50,"729 10th St, Portland, ME 04101" +238405,Lightning Charging Cable,1,14.95,08/29/19 18:14,"644 1st St, Atlanta, GA 30301" +238406,Lightning Charging Cable,1,14.95,08/07/19 10:55,"464 Chestnut St, Los Angeles, CA 90001" +238407,Lightning Charging Cable,1,14.95,08/27/19 11:38,"980 Willow St, Dallas, TX 75001" +238408,Lightning Charging Cable,1,14.95,08/16/19 21:28,"609 14th St, Portland, OR 97035" +238409,Google Phone,1,600,08/13/19 23:04,"682 Center St, Atlanta, GA 30301" +238410,Flatscreen TV,1,300,08/31/19 00:16,"233 Wilson St, Boston, MA 02215" +238411,Bose SoundSport Headphones,1,99.99,08/24/19 01:09,"624 Wilson St, Atlanta, GA 30301" +238412,USB-C Charging Cable,1,11.95,08/17/19 17:30,"166 Madison St, Atlanta, GA 30301" +238413,Bose SoundSport Headphones,1,99.99,08/24/19 16:16,"5 9th St, Los Angeles, CA 90001" +238414,Lightning Charging Cable,1,14.95,08/15/19 10:39,"850 2nd St, New York City, NY 10001" +238415,Lightning Charging Cable,1,14.95,08/21/19 12:53,"435 Park St, Dallas, TX 75001" +238416,Flatscreen TV,1,300,08/05/19 18:54,"991 Highland St, New York City, NY 10001" +238417,Flatscreen TV,1,300,08/12/19 03:51,"485 7th St, Atlanta, GA 30301" +238418,Lightning Charging Cable,2,14.95,08/10/19 13:42,"852 Willow St, New York City, NY 10001" +238419,AA Batteries (4-pack),2,3.84,08/17/19 23:18,"880 10th St, Seattle, WA 98101" +238420,Apple Airpods Headphones,1,150,08/17/19 12:58,"899 Madison St, Los Angeles, CA 90001" +238421,Macbook Pro Laptop,1,1700,08/03/19 17:21,"371 8th St, San Francisco, CA 94016" +238422,27in FHD Monitor,1,149.99,08/30/19 12:59,"13 Main St, Austin, TX 73301" +238423,Bose SoundSport Headphones,1,99.99,08/21/19 21:36,"619 Sunset St, Boston, MA 02215" +238424,27in FHD Monitor,1,149.99,08/27/19 11:05,"711 Walnut St, Atlanta, GA 30301" +238425,USB-C Charging Cable,1,11.95,08/11/19 14:50,"174 Willow St, San Francisco, CA 94016" +238426,ThinkPad Laptop,1,999.99,08/13/19 11:56,"918 Washington St, San Francisco, CA 94016" +238427,Apple Airpods Headphones,1,150,08/19/19 13:50,"576 Lincoln St, Los Angeles, CA 90001" +238428,iPhone,1,700,08/11/19 15:09,"700 7th St, Boston, MA 02215" +238429,AA Batteries (4-pack),1,3.84,08/18/19 13:59,"932 Hickory St, Atlanta, GA 30301" +238430,34in Ultrawide Monitor,1,379.99,08/16/19 01:06,"508 Hill St, Atlanta, GA 30301" +238431,Apple Airpods Headphones,1,150,08/31/19 09:03,"12 13th St, Atlanta, GA 30301" +238432,Google Phone,1,600,08/09/19 08:58,"659 Elm St, Boston, MA 02215" +238432,Bose SoundSport Headphones,1,99.99,08/09/19 08:58,"659 Elm St, Boston, MA 02215" +238433,USB-C Charging Cable,2,11.95,08/03/19 10:30,"639 South St, Los Angeles, CA 90001" +238434,Lightning Charging Cable,1,14.95,08/09/19 20:30,"760 7th St, Los Angeles, CA 90001" +238435,Wired Headphones,1,11.99,08/06/19 10:18,"85 Chestnut St, Dallas, TX 75001" +238436,USB-C Charging Cable,1,11.95,08/20/19 10:57,"836 North St, Los Angeles, CA 90001" +238437,27in 4K Gaming Monitor,1,389.99,08/27/19 13:48,"298 Walnut St, New York City, NY 10001" +238438,AAA Batteries (4-pack),1,2.99,08/07/19 17:37,"642 Park St, Boston, MA 02215" +238439,AAA Batteries (4-pack),1,2.99,08/11/19 19:39,"353 Pine St, Portland, OR 97035" +238440,AA Batteries (4-pack),1,3.84,08/29/19 20:17,"934 Hill St, Boston, MA 02215" +238441,Lightning Charging Cable,1,14.95,08/13/19 21:37,"555 Johnson St, San Francisco, CA 94016" +238442,iPhone,1,700,08/24/19 18:52,"283 5th St, New York City, NY 10001" +238443,27in 4K Gaming Monitor,1,389.99,08/21/19 19:10,"274 Willow St, Boston, MA 02215" +238444,USB-C Charging Cable,1,11.95,08/17/19 23:30,"738 Madison St, Portland, OR 97035" +238445,USB-C Charging Cable,1,11.95,08/26/19 07:41,"702 Forest St, New York City, NY 10001" +238445,USB-C Charging Cable,1,11.95,08/26/19 07:41,"702 Forest St, New York City, NY 10001" +238446,Apple Airpods Headphones,1,150,08/21/19 13:34,"222 North St, San Francisco, CA 94016" +238447,AAA Batteries (4-pack),1,2.99,08/27/19 23:07,"182 Chestnut St, Boston, MA 02215" +238448,AAA Batteries (4-pack),1,2.99,08/25/19 19:03,"437 Jackson St, Boston, MA 02215" +238449,AA Batteries (4-pack),1,3.84,08/06/19 09:04,"30 1st St, Dallas, TX 75001" +238450,Google Phone,1,600,08/23/19 12:01,"546 Meadow St, San Francisco, CA 94016" +238451,USB-C Charging Cable,1,11.95,08/12/19 13:44,"45 6th St, New York City, NY 10001" +238452,USB-C Charging Cable,1,11.95,08/26/19 04:33,"753 Center St, San Francisco, CA 94016" +238453,Vareebadd Phone,1,400,08/26/19 23:26,"214 Maple St, New York City, NY 10001" +238454,USB-C Charging Cable,1,11.95,08/29/19 15:27,"291 Elm St, New York City, NY 10001" +238455,Apple Airpods Headphones,1,150,08/13/19 17:17,"98 Lake St, Atlanta, GA 30301" +238456,34in Ultrawide Monitor,1,379.99,08/17/19 20:53,"882 North St, Boston, MA 02215" +238457,AA Batteries (4-pack),1,3.84,08/15/19 14:48,"565 Pine St, San Francisco, CA 94016" +238458,Wired Headphones,1,11.99,08/11/19 15:49,"655 14th St, Atlanta, GA 30301" +238459,Wired Headphones,1,11.99,08/06/19 15:53,"730 10th St, Boston, MA 02215" +238460,Wired Headphones,1,11.99,08/27/19 13:34,"839 Park St, Dallas, TX 75001" +238461,Bose SoundSport Headphones,1,99.99,08/11/19 15:57,"197 Madison St, Boston, MA 02215" +238462,Apple Airpods Headphones,1,150,08/24/19 01:33,"889 Chestnut St, Los Angeles, CA 90001" +238463,27in FHD Monitor,1,149.99,08/04/19 19:26,"849 7th St, San Francisco, CA 94016" +238464,Lightning Charging Cable,1,14.95,08/01/19 23:44,"93 North St, New York City, NY 10001" +238465,Wired Headphones,1,11.99,08/13/19 11:41,"827 River St, New York City, NY 10001" +238466,Wired Headphones,1,11.99,08/26/19 11:45,"585 Lakeview St, Los Angeles, CA 90001" +238467,AA Batteries (4-pack),3,3.84,08/07/19 09:01,"406 Ridge St, San Francisco, CA 94016" +238468,27in 4K Gaming Monitor,1,389.99,08/15/19 11:23,"992 Willow St, Los Angeles, CA 90001" +238469,Vareebadd Phone,1,400,08/01/19 19:51,"715 Hickory St, San Francisco, CA 94016" +238470,27in FHD Monitor,1,149.99,08/28/19 19:46,"46 6th St, Los Angeles, CA 90001" +238471,Bose SoundSport Headphones,1,99.99,08/08/19 14:33,"360 Jackson St, Seattle, WA 98101" +238472,Wired Headphones,1,11.99,08/12/19 10:01,"531 9th St, Austin, TX 73301" +238473,AA Batteries (4-pack),1,3.84,08/14/19 22:32,"903 Johnson St, San Francisco, CA 94016" +238474,AAA Batteries (4-pack),2,2.99,08/26/19 23:04,"239 Lincoln St, Portland, OR 97035" +238475,AA Batteries (4-pack),1,3.84,08/07/19 10:18,"740 4th St, New York City, NY 10001" +238476,USB-C Charging Cable,1,11.95,08/07/19 10:30,"810 Sunset St, San Francisco, CA 94016" +238477,AAA Batteries (4-pack),2,2.99,08/03/19 12:23,"580 12th St, Austin, TX 73301" +238478,Apple Airpods Headphones,1,150,08/01/19 13:31,"320 Main St, Boston, MA 02215" +238479,Lightning Charging Cable,1,14.95,08/02/19 12:38,"991 14th St, Atlanta, GA 30301" +238480,AA Batteries (4-pack),2,3.84,08/14/19 13:59,"80 Walnut St, Portland, ME 04101" +238481,AA Batteries (4-pack),1,3.84,08/03/19 12:45,"13 River St, Los Angeles, CA 90001" +238482,AAA Batteries (4-pack),1,2.99,08/01/19 09:13,"988 Lake St, Boston, MA 02215" +238483,Lightning Charging Cable,1,14.95,08/11/19 00:51,"62 Jackson St, Los Angeles, CA 90001" +238484,Wired Headphones,1,11.99,08/25/19 21:26,"698 Lincoln St, Los Angeles, CA 90001" +238485,Wired Headphones,1,11.99,08/22/19 21:11,"965 West St, San Francisco, CA 94016" +238486,AAA Batteries (4-pack),1,2.99,08/26/19 08:42,"247 Elm St, Atlanta, GA 30301" +238487,Lightning Charging Cable,1,14.95,08/25/19 08:01,"275 Walnut St, New York City, NY 10001" +238488,Google Phone,1,600,08/19/19 12:49,"696 14th St, Dallas, TX 75001" +238489,AAA Batteries (4-pack),1,2.99,08/28/19 19:07,"900 6th St, Seattle, WA 98101" +238490,Lightning Charging Cable,1,14.95,08/19/19 14:15,"396 Madison St, Los Angeles, CA 90001" +238491,AA Batteries (4-pack),1,3.84,08/28/19 09:03,"597 Cherry St, Los Angeles, CA 90001" +238492,Lightning Charging Cable,1,14.95,08/23/19 20:11,"430 Spruce St, Austin, TX 73301" +238493,AA Batteries (4-pack),2,3.84,08/02/19 16:43,"516 Adams St, Dallas, TX 75001" +238494,AA Batteries (4-pack),1,3.84,08/31/19 23:21,"263 6th St, Austin, TX 73301" +238495,Macbook Pro Laptop,1,1700,08/18/19 08:47,"801 South St, San Francisco, CA 94016" +238496,iPhone,1,700,08/03/19 12:43,"630 Forest St, Seattle, WA 98101" +238497,ThinkPad Laptop,1,999.99,08/10/19 16:02,"815 Spruce St, San Francisco, CA 94016" +238498,iPhone,1,700,08/25/19 11:38,"327 Cherry St, Los Angeles, CA 90001" +238499,AA Batteries (4-pack),2,3.84,08/12/19 14:04,"253 Walnut St, Los Angeles, CA 90001" +238500,Apple Airpods Headphones,1,150,08/22/19 17:32,"889 14th St, Dallas, TX 75001" +238501,ThinkPad Laptop,1,999.99,08/02/19 18:34,"982 Chestnut St, Atlanta, GA 30301" +238502,USB-C Charging Cable,1,11.95,08/13/19 22:23,"5 River St, San Francisco, CA 94016" +238503,Lightning Charging Cable,1,14.95,08/16/19 20:01,"48 Jefferson St, Dallas, TX 75001" +238504,Wired Headphones,1,11.99,08/06/19 15:53,"136 Johnson St, Portland, ME 04101" +238505,Bose SoundSport Headphones,1,99.99,08/05/19 13:17,"352 River St, Seattle, WA 98101" +238506,ThinkPad Laptop,1,999.99,08/13/19 17:51,"722 Dogwood St, New York City, NY 10001" +238507,Wired Headphones,1,11.99,08/06/19 20:07,"302 Madison St, Seattle, WA 98101" +238508,Flatscreen TV,1,300,08/19/19 13:39,"680 Madison St, San Francisco, CA 94016" +238509,Lightning Charging Cable,1,14.95,08/19/19 16:00,"220 Washington St, San Francisco, CA 94016" +238510,Lightning Charging Cable,1,14.95,08/07/19 16:35,"490 7th St, Austin, TX 73301" +238511,Apple Airpods Headphones,1,150,08/22/19 11:20,"624 Madison St, Los Angeles, CA 90001" +238512,27in 4K Gaming Monitor,1,389.99,08/21/19 19:52,"239 10th St, San Francisco, CA 94016" +238513,Lightning Charging Cable,1,14.95,08/21/19 04:05,"860 Jackson St, Los Angeles, CA 90001" +238514,Bose SoundSport Headphones,1,99.99,08/25/19 16:38,"553 Walnut St, Atlanta, GA 30301" +238515,ThinkPad Laptop,1,999.99,08/14/19 13:23,"457 Center St, San Francisco, CA 94016" +238516,20in Monitor,1,109.99,08/20/19 19:52,"282 Jefferson St, Portland, OR 97035" +238517,Wired Headphones,1,11.99,08/02/19 14:43,"677 7th St, Dallas, TX 75001" +238518,Macbook Pro Laptop,1,1700,08/21/19 16:23,"132 14th St, Portland, OR 97035" +238519,AA Batteries (4-pack),1,3.84,08/31/19 21:55,"590 Lake St, Portland, OR 97035" +238520,iPhone,1,700,08/05/19 22:47,"148 Pine St, New York City, NY 10001" +238521,Lightning Charging Cable,1,14.95,08/10/19 21:23,"380 2nd St, San Francisco, CA 94016" +238522,27in 4K Gaming Monitor,1,389.99,08/02/19 12:37,"426 Pine St, Boston, MA 02215" +238523,Flatscreen TV,1,300,08/24/19 23:33,"36 Johnson St, San Francisco, CA 94016" +238524,20in Monitor,1,109.99,08/31/19 19:23,"278 West St, San Francisco, CA 94016" +238525,USB-C Charging Cable,1,11.95,08/06/19 09:17,"612 10th St, Portland, OR 97035" +238526,Wired Headphones,1,11.99,08/15/19 11:50,"675 Pine St, New York City, NY 10001" +238527,AA Batteries (4-pack),1,3.84,08/13/19 22:05,"134 6th St, New York City, NY 10001" +238528,Macbook Pro Laptop,1,1700,08/17/19 17:56,"884 14th St, San Francisco, CA 94016" +238529,Bose SoundSport Headphones,1,99.99,08/02/19 12:57,"156 7th St, Los Angeles, CA 90001" +238530,Lightning Charging Cable,1,14.95,08/01/19 09:17,"772 Willow St, Boston, MA 02215" +238531,Lightning Charging Cable,1,14.95,08/18/19 19:34,"75 Madison St, Austin, TX 73301" +238532,AAA Batteries (4-pack),2,2.99,08/12/19 13:48,"442 Main St, Seattle, WA 98101" +238533,Flatscreen TV,1,300,08/02/19 10:03,"294 Cherry St, San Francisco, CA 94016" +238534,USB-C Charging Cable,1,11.95,08/15/19 07:00,"360 Willow St, San Francisco, CA 94016" +238535,AA Batteries (4-pack),1,3.84,08/31/19 12:55,"889 North St, San Francisco, CA 94016" +238536,Apple Airpods Headphones,1,150,08/02/19 21:36,"375 Wilson St, San Francisco, CA 94016" +238537,USB-C Charging Cable,1,11.95,08/23/19 13:15,"181 West St, Seattle, WA 98101" +238538,AAA Batteries (4-pack),1,2.99,08/19/19 15:00,"891 Lincoln St, Atlanta, GA 30301" +238539,AA Batteries (4-pack),1,3.84,08/12/19 12:00,"503 Park St, Los Angeles, CA 90001" +238540,ThinkPad Laptop,1,999.99,08/25/19 20:02,"429 11th St, Portland, OR 97035" +238541,Macbook Pro Laptop,1,1700,08/03/19 17:08,"327 Willow St, Atlanta, GA 30301" +238542,AA Batteries (4-pack),1,3.84,08/21/19 10:02,"506 Elm St, Los Angeles, CA 90001" +238543,ThinkPad Laptop,1,999.99,08/27/19 19:39,"336 7th St, New York City, NY 10001" +238544,AAA Batteries (4-pack),1,2.99,08/29/19 15:22,"253 Hill St, New York City, NY 10001" +238545,AAA Batteries (4-pack),1,2.99,08/13/19 14:41,"636 1st St, Seattle, WA 98101" +238546,Bose SoundSport Headphones,1,99.99,08/29/19 09:00,"77 Elm St, New York City, NY 10001" +238547,Lightning Charging Cable,1,14.95,08/12/19 14:23,"93 Cherry St, New York City, NY 10001" +238548,Lightning Charging Cable,1,14.95,08/25/19 23:25,"819 Sunset St, San Francisco, CA 94016" +238549,USB-C Charging Cable,1,11.95,08/18/19 10:17,"576 Center St, San Francisco, CA 94016" +238550,iPhone,1,700,08/16/19 02:01,"275 13th St, Los Angeles, CA 90001" +238551,Wired Headphones,1,11.99,08/26/19 22:21,"840 Forest St, Seattle, WA 98101" +238552,AA Batteries (4-pack),1,3.84,08/01/19 16:30,"459 9th St, Los Angeles, CA 90001" +238553,Apple Airpods Headphones,1,150,08/06/19 18:01,"591 4th St, New York City, NY 10001" +238554,27in FHD Monitor,1,149.99,08/26/19 09:22,"944 Highland St, New York City, NY 10001" +238555,Apple Airpods Headphones,1,150,08/11/19 18:03,"346 14th St, Dallas, TX 75001" +238556,AA Batteries (4-pack),1,3.84,08/09/19 22:47,"848 1st St, Los Angeles, CA 90001" +238557,27in 4K Gaming Monitor,1,389.99,08/09/19 10:39,"44 Adams St, Los Angeles, CA 90001" +238558,27in FHD Monitor,1,149.99,08/16/19 17:54,"797 Jefferson St, Dallas, TX 75001" +238559,AA Batteries (4-pack),1,3.84,08/12/19 21:45,"315 Elm St, Atlanta, GA 30301" +238560,Apple Airpods Headphones,1,150,08/13/19 22:35,"317 Jackson St, Seattle, WA 98101" +238561,Wired Headphones,1,11.99,08/23/19 12:14,"353 Cherry St, Los Angeles, CA 90001" +238562,USB-C Charging Cable,1,11.95,08/24/19 16:37,"726 River St, Dallas, TX 75001" +238563,Flatscreen TV,1,300,08/02/19 16:33,"713 Main St, Seattle, WA 98101" +238564,Bose SoundSport Headphones,1,99.99,08/29/19 23:04,"362 Chestnut St, New York City, NY 10001" +238565,27in 4K Gaming Monitor,1,389.99,08/02/19 06:20,"335 Cedar St, Atlanta, GA 30301" +238566,Apple Airpods Headphones,1,150,08/10/19 13:52,"60 Adams St, Boston, MA 02215" +238566,Google Phone,1,600,08/10/19 13:52,"60 Adams St, Boston, MA 02215" +238567,34in Ultrawide Monitor,1,379.99,08/18/19 20:00,"900 Ridge St, Boston, MA 02215" +238568,Wired Headphones,1,11.99,08/13/19 12:08,"329 South St, Los Angeles, CA 90001" +238569,27in 4K Gaming Monitor,1,389.99,08/16/19 19:17,"135 Wilson St, Austin, TX 73301" +238570,Wired Headphones,1,11.99,08/28/19 23:31,"963 Meadow St, Seattle, WA 98101" +238571,Flatscreen TV,1,300,08/28/19 14:45,"239 Center St, Seattle, WA 98101" +238572,AAA Batteries (4-pack),2,2.99,08/30/19 17:27,"444 Cedar St, Austin, TX 73301" +238573,AAA Batteries (4-pack),3,2.99,08/15/19 20:17,"921 Elm St, Seattle, WA 98101" +238574,Lightning Charging Cable,1,14.95,08/16/19 19:25,"50 South St, Seattle, WA 98101" +238575,Lightning Charging Cable,1,14.95,08/24/19 23:35,"621 Washington St, Boston, MA 02215" +238576,AAA Batteries (4-pack),1,2.99,08/17/19 12:35,"170 Main St, Los Angeles, CA 90001" +238577,AAA Batteries (4-pack),3,2.99,08/02/19 10:09,"847 Pine St, Portland, OR 97035" +238578,AAA Batteries (4-pack),2,2.99,08/07/19 19:18,"85 Jefferson St, Boston, MA 02215" +238579,Apple Airpods Headphones,1,150,08/13/19 12:10,"697 Washington St, Dallas, TX 75001" +238580,AA Batteries (4-pack),1,3.84,08/20/19 15:57,"14 Willow St, Seattle, WA 98101" +238581,AA Batteries (4-pack),1,3.84,08/18/19 22:27,"640 Maple St, New York City, NY 10001" +238582,Lightning Charging Cable,2,14.95,08/07/19 11:26,"883 Ridge St, Portland, OR 97035" +238583,27in FHD Monitor,1,149.99,08/17/19 19:04,"498 Hickory St, New York City, NY 10001" +238584,34in Ultrawide Monitor,1,379.99,08/30/19 19:34,"951 Walnut St, Los Angeles, CA 90001" +238585,USB-C Charging Cable,1,11.95,08/19/19 17:51,"161 Park St, Boston, MA 02215" +238586,Bose SoundSport Headphones,1,99.99,08/20/19 17:13,"438 Lakeview St, Atlanta, GA 30301" +238587,Lightning Charging Cable,1,14.95,08/08/19 14:39,"922 4th St, Dallas, TX 75001" +238588,AAA Batteries (4-pack),2,2.99,08/21/19 09:00,"862 Hill St, Seattle, WA 98101" +238589,34in Ultrawide Monitor,1,379.99,08/26/19 22:11,"460 Willow St, Los Angeles, CA 90001" +238590,USB-C Charging Cable,1,11.95,08/21/19 17:28,"873 Walnut St, Dallas, TX 75001" +238591,iPhone,1,700,08/20/19 21:06,"146 Main St, Boston, MA 02215" +238592,Apple Airpods Headphones,2,150,08/19/19 20:32,"964 Forest St, San Francisco, CA 94016" +238593,Wired Headphones,1,11.99,08/03/19 08:37,"14 4th St, San Francisco, CA 94016" +238594,AAA Batteries (4-pack),1,2.99,08/07/19 14:27,"13 Madison St, San Francisco, CA 94016" +238595,Bose SoundSport Headphones,1,99.99,08/26/19 08:47,"841 Ridge St, Dallas, TX 75001" +238596,USB-C Charging Cable,1,11.95,08/06/19 19:15,"680 Wilson St, Austin, TX 73301" +238597,34in Ultrawide Monitor,1,379.99,08/15/19 20:32,"959 Jackson St, New York City, NY 10001" +238598,AA Batteries (4-pack),1,3.84,08/07/19 09:45,"277 River St, Portland, OR 97035" +238599,34in Ultrawide Monitor,1,379.99,08/21/19 22:04,"612 Hickory St, Los Angeles, CA 90001" +238600,AAA Batteries (4-pack),1,2.99,08/13/19 17:54,"349 Elm St, Boston, MA 02215" +238601,Bose SoundSport Headphones,1,99.99,08/07/19 13:19,"322 Main St, Atlanta, GA 30301" +238602,Bose SoundSport Headphones,1,99.99,08/13/19 13:39,"104 12th St, Portland, OR 97035" +238603,34in Ultrawide Monitor,1,379.99,08/17/19 19:29,"271 West St, Los Angeles, CA 90001" +238604,USB-C Charging Cable,1,11.95,08/21/19 10:01,"150 Jackson St, San Francisco, CA 94016" +238605,AAA Batteries (4-pack),3,2.99,08/05/19 13:17,"93 8th St, Boston, MA 02215" +238606,Flatscreen TV,1,300,08/10/19 17:36,"73 Maple St, New York City, NY 10001" +238607,USB-C Charging Cable,1,11.95,08/24/19 22:04,"129 5th St, Dallas, TX 75001" +238608,Flatscreen TV,1,300,08/03/19 19:59,"982 12th St, Portland, OR 97035" +238609,AAA Batteries (4-pack),1,2.99,08/26/19 12:08,"325 Ridge St, Seattle, WA 98101" +238610,20in Monitor,1,109.99,08/18/19 10:16,"807 12th St, New York City, NY 10001" +238611,Apple Airpods Headphones,1,150,08/11/19 16:43,"522 Johnson St, San Francisco, CA 94016" +238612,LG Dryer,1,600.0,08/03/19 11:25,"318 9th St, San Francisco, CA 94016" +238613,20in Monitor,1,109.99,08/03/19 11:41,"610 1st St, Los Angeles, CA 90001" +238614,27in 4K Gaming Monitor,1,389.99,08/25/19 02:12,"396 10th St, San Francisco, CA 94016" +238615,ThinkPad Laptop,1,999.99,08/15/19 23:46,"343 1st St, Los Angeles, CA 90001" +238616,USB-C Charging Cable,2,11.95,08/08/19 15:39,"306 Spruce St, Boston, MA 02215" +238617,Google Phone,1,600,08/04/19 09:01,"167 5th St, San Francisco, CA 94016" +238618,34in Ultrawide Monitor,1,379.99,08/15/19 09:39,"973 West St, Los Angeles, CA 90001" +238619,27in 4K Gaming Monitor,1,389.99,08/09/19 20:23,"532 Main St, New York City, NY 10001" +238620,iPhone,1,700,08/31/19 19:49,"645 Highland St, San Francisco, CA 94016" +238621,Lightning Charging Cable,1,14.95,08/02/19 13:17,"709 7th St, Atlanta, GA 30301" +238622,34in Ultrawide Monitor,1,379.99,08/22/19 13:36,"359 Madison St, Austin, TX 73301" +238623,AA Batteries (4-pack),1,3.84,08/30/19 15:50,"430 Spruce St, Seattle, WA 98101" +238624,Bose SoundSport Headphones,1,99.99,08/26/19 12:04,"770 1st St, Portland, OR 97035" +238625,Bose SoundSport Headphones,1,99.99,08/26/19 01:00,"374 North St, Dallas, TX 75001" +238626,Macbook Pro Laptop,1,1700,08/23/19 21:02,"165 Hill St, Los Angeles, CA 90001" +238627,Wired Headphones,1,11.99,08/16/19 11:14,"713 Highland St, Seattle, WA 98101" +238628,Lightning Charging Cable,1,14.95,08/01/19 18:46,"111 Main St, Portland, ME 04101" +238629,27in 4K Gaming Monitor,1,389.99,08/08/19 10:21,"752 Lakeview St, Los Angeles, CA 90001" +238630,AAA Batteries (4-pack),1,2.99,08/07/19 11:32,"920 Lake St, San Francisco, CA 94016" +238631,27in FHD Monitor,1,149.99,08/24/19 16:48,"458 Jackson St, San Francisco, CA 94016" +238632,USB-C Charging Cable,1,11.95,08/18/19 22:23,"930 Forest St, San Francisco, CA 94016" +238633,27in 4K Gaming Monitor,1,389.99,08/09/19 12:59,"639 West St, San Francisco, CA 94016" +238634,Lightning Charging Cable,1,14.95,08/18/19 10:54,"377 Willow St, Los Angeles, CA 90001" +238635,Apple Airpods Headphones,1,150,08/09/19 20:15,"227 Center St, Austin, TX 73301" +238636,iPhone,1,700,08/30/19 00:28,"191 7th St, Atlanta, GA 30301" +238637,Wired Headphones,1,11.99,08/30/19 09:08,"685 Center St, Seattle, WA 98101" +238638,AAA Batteries (4-pack),1,2.99,08/09/19 18:56,"329 1st St, Los Angeles, CA 90001" +238639,AAA Batteries (4-pack),2,2.99,08/27/19 16:24,"618 Hickory St, San Francisco, CA 94016" +238640,AAA Batteries (4-pack),1,2.99,08/26/19 15:54,"104 Jackson St, San Francisco, CA 94016" +238641,AA Batteries (4-pack),1,3.84,08/04/19 08:10,"417 7th St, Atlanta, GA 30301" +238642,Lightning Charging Cable,1,14.95,08/09/19 00:03,"945 4th St, Los Angeles, CA 90001" +238642,AA Batteries (4-pack),1,3.84,08/09/19 00:03,"945 4th St, Los Angeles, CA 90001" +238643,ThinkPad Laptop,1,999.99,08/02/19 13:06,"881 Dogwood St, Atlanta, GA 30301" +238644,Lightning Charging Cable,1,14.95,08/03/19 16:23,"566 Maple St, Dallas, TX 75001" +238645,AA Batteries (4-pack),1,3.84,08/12/19 19:30,"310 Main St, Seattle, WA 98101" +238646,Bose SoundSport Headphones,1,99.99,08/07/19 21:00,"779 6th St, New York City, NY 10001" +238647,USB-C Charging Cable,1,11.95,08/19/19 17:41,"307 Highland St, San Francisco, CA 94016" +238648,Lightning Charging Cable,1,14.95,08/04/19 00:35,"763 1st St, Seattle, WA 98101" +238649,USB-C Charging Cable,1,11.95,08/04/19 16:44,"773 West St, San Francisco, CA 94016" +238650,27in 4K Gaming Monitor,1,389.99,08/19/19 10:17,"892 Sunset St, New York City, NY 10001" +238651,Apple Airpods Headphones,1,150,08/02/19 16:13,"890 Main St, Los Angeles, CA 90001" +238652,AAA Batteries (4-pack),2,2.99,08/22/19 17:10,"777 Lakeview St, San Francisco, CA 94016" +238653,Bose SoundSport Headphones,1,99.99,08/06/19 15:02,"804 7th St, San Francisco, CA 94016" +238654,USB-C Charging Cable,1,11.95,08/25/19 17:44,"630 8th St, Atlanta, GA 30301" +238655,27in 4K Gaming Monitor,1,389.99,08/27/19 15:33,"880 7th St, Dallas, TX 75001" +238656,AA Batteries (4-pack),1,3.84,08/21/19 08:08,"96 1st St, Los Angeles, CA 90001" +238657,iPhone,1,700,08/20/19 11:30,"626 River St, Los Angeles, CA 90001" +238658,AA Batteries (4-pack),1,3.84,08/26/19 19:11,"411 Park St, Portland, OR 97035" +238659,Apple Airpods Headphones,1,150,08/12/19 23:29,"290 Lake St, San Francisco, CA 94016" +238660,Vareebadd Phone,1,400,08/11/19 02:38,"873 Jefferson St, New York City, NY 10001" +238661,Bose SoundSport Headphones,1,99.99,08/13/19 17:33,"498 Ridge St, San Francisco, CA 94016" +238662,Bose SoundSport Headphones,1,99.99,08/06/19 13:39,"959 Lake St, New York City, NY 10001" +238663,USB-C Charging Cable,1,11.95,08/16/19 08:51,"836 Lakeview St, Austin, TX 73301" +238664,AAA Batteries (4-pack),2,2.99,08/18/19 16:16,"566 River St, San Francisco, CA 94016" +238665,34in Ultrawide Monitor,1,379.99,08/27/19 19:21,"850 Chestnut St, San Francisco, CA 94016" +238666,AAA Batteries (4-pack),2,2.99,08/16/19 17:05,"737 4th St, Boston, MA 02215" +238667,AA Batteries (4-pack),2,3.84,08/14/19 05:48,"322 Chestnut St, Austin, TX 73301" +238668,Wired Headphones,1,11.99,08/28/19 12:04,"836 Highland St, New York City, NY 10001" +238669,Lightning Charging Cable,1,14.95,08/24/19 20:04,"380 Meadow St, Seattle, WA 98101" +238670,27in FHD Monitor,1,149.99,08/24/19 17:43,"23 11th St, Seattle, WA 98101" +238671,Apple Airpods Headphones,1,150,08/04/19 18:54,"330 8th St, New York City, NY 10001" +238672,27in 4K Gaming Monitor,1,389.99,08/30/19 17:25,"407 Jackson St, New York City, NY 10001" +238673,Lightning Charging Cable,1,14.95,08/03/19 21:36,"712 Main St, Dallas, TX 75001" +238674,iPhone,1,700,08/29/19 17:45,"684 Jackson St, San Francisco, CA 94016" +238674,Lightning Charging Cable,1,14.95,08/29/19 17:45,"684 Jackson St, San Francisco, CA 94016" +238675,Wired Headphones,1,11.99,08/04/19 03:32,"866 Sunset St, Boston, MA 02215" +238676,Bose SoundSport Headphones,1,99.99,08/16/19 09:17,"479 Adams St, New York City, NY 10001" +238677,Bose SoundSport Headphones,1,99.99,08/22/19 19:58,"963 River St, Atlanta, GA 30301" +238678,AAA Batteries (4-pack),2,2.99,08/31/19 23:41,"806 Johnson St, Los Angeles, CA 90001" +238679,AA Batteries (4-pack),1,3.84,08/16/19 15:14,"864 Cedar St, New York City, NY 10001" +238680,iPhone,1,700,08/18/19 19:35,"199 Willow St, New York City, NY 10001" +238681,Flatscreen TV,1,300,08/11/19 01:02,"249 Dogwood St, San Francisco, CA 94016" +238682,Macbook Pro Laptop,1,1700,08/19/19 23:37,"571 Lincoln St, Dallas, TX 75001" +238683,Lightning Charging Cable,1,14.95,08/16/19 09:37,"805 9th St, San Francisco, CA 94016" +238684,USB-C Charging Cable,1,11.95,08/27/19 03:11,"907 Dogwood St, Boston, MA 02215" +238685,Bose SoundSport Headphones,1,99.99,08/23/19 12:15,"665 Elm St, San Francisco, CA 94016" +238686,AA Batteries (4-pack),2,3.84,08/12/19 16:33,"849 Lincoln St, New York City, NY 10001" +238687,AA Batteries (4-pack),1,3.84,08/18/19 20:04,"670 Maple St, Los Angeles, CA 90001" +238688,AAA Batteries (4-pack),1,2.99,08/02/19 13:02,"66 10th St, Portland, OR 97035" +238689,Apple Airpods Headphones,1,150,08/26/19 08:34,"591 2nd St, San Francisco, CA 94016" +238690,Bose SoundSport Headphones,1,99.99,08/26/19 11:05,"714 Center St, Boston, MA 02215" +238691,Wired Headphones,1,11.99,08/17/19 19:21,"419 Hickory St, Los Angeles, CA 90001" +238692,AAA Batteries (4-pack),1,2.99,08/19/19 16:41,"599 Highland St, Atlanta, GA 30301" +238693,iPhone,1,700,08/30/19 12:59,"914 7th St, Seattle, WA 98101" +238694,27in 4K Gaming Monitor,1,389.99,08/20/19 19:34,"934 7th St, Los Angeles, CA 90001" +238695,iPhone,1,700,08/08/19 08:29,"575 Main St, Dallas, TX 75001" +238696,AA Batteries (4-pack),1,3.84,08/14/19 15:05,"671 8th St, Austin, TX 73301" +238697,Apple Airpods Headphones,1,150,08/26/19 14:31,"784 Walnut St, San Francisco, CA 94016" +238698,Bose SoundSport Headphones,1,99.99,08/08/19 20:00,"675 Adams St, Atlanta, GA 30301" +238699,Apple Airpods Headphones,1,150,08/01/19 14:32,"732 2nd St, New York City, NY 10001" +238700,Google Phone,1,600,08/09/19 18:48,"668 River St, Dallas, TX 75001" +238701,USB-C Charging Cable,1,11.95,08/05/19 16:30,"53 Ridge St, San Francisco, CA 94016" +238702,AA Batteries (4-pack),1,3.84,08/05/19 14:08,"3 7th St, San Francisco, CA 94016" +238703,Bose SoundSport Headphones,1,99.99,08/02/19 20:56,"194 10th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +238704,iPhone,1,700,08/14/19 10:45,"414 River St, New York City, NY 10001" +238704,Wired Headphones,1,11.99,08/14/19 10:45,"414 River St, New York City, NY 10001" +238705,AA Batteries (4-pack),1,3.84,08/21/19 14:35,"540 Forest St, Boston, MA 02215" +238706,ThinkPad Laptop,1,999.99,08/01/19 11:00,"898 Jackson St, Los Angeles, CA 90001" +238707,Apple Airpods Headphones,1,150,08/06/19 15:04,"536 Chestnut St, Boston, MA 02215" +238708,iPhone,1,700,08/14/19 14:33,"395 Church St, New York City, NY 10001" +238709,Lightning Charging Cable,1,14.95,08/27/19 21:10,"696 Lake St, Portland, OR 97035" +238710,Macbook Pro Laptop,1,1700,08/28/19 08:50,"962 Cedar St, Los Angeles, CA 90001" +238711,AAA Batteries (4-pack),1,2.99,08/09/19 23:14,"277 West St, San Francisco, CA 94016" +238712,AA Batteries (4-pack),1,3.84,08/24/19 11:28,"791 Madison St, Los Angeles, CA 90001" +238713,USB-C Charging Cable,1,11.95,08/24/19 22:02,"391 Jackson St, Dallas, TX 75001" +238714,27in FHD Monitor,1,149.99,08/29/19 00:46,"732 1st St, Boston, MA 02215" +238715,USB-C Charging Cable,1,11.95,08/21/19 09:09,"261 Walnut St, San Francisco, CA 94016" +238716,27in FHD Monitor,1,149.99,08/23/19 12:40,"86 Washington St, Austin, TX 73301" +238717,iPhone,1,700,08/25/19 13:21,"714 Cherry St, Los Angeles, CA 90001" +238718,Wired Headphones,2,11.99,08/21/19 13:23,"342 Lincoln St, Dallas, TX 75001" +238719,27in FHD Monitor,1,149.99,08/25/19 17:02,"527 Adams St, Los Angeles, CA 90001" +238720,AA Batteries (4-pack),1,3.84,08/18/19 11:06,"131 1st St, New York City, NY 10001" +238721,Wired Headphones,1,11.99,08/12/19 18:10,"747 4th St, San Francisco, CA 94016" +238722,20in Monitor,1,109.99,08/24/19 04:41,"311 7th St, San Francisco, CA 94016" +238723,USB-C Charging Cable,1,11.95,08/08/19 09:59,"560 Wilson St, San Francisco, CA 94016" +238724,AA Batteries (4-pack),1,3.84,08/12/19 13:32,"179 Walnut St, Seattle, WA 98101" +238725,Wired Headphones,1,11.99,08/27/19 07:19,"516 Hickory St, Atlanta, GA 30301" +238726,USB-C Charging Cable,1,11.95,08/06/19 08:59,"843 10th St, Boston, MA 02215" +238727,27in 4K Gaming Monitor,1,389.99,08/07/19 19:56,"646 10th St, Boston, MA 02215" +238728,Apple Airpods Headphones,1,150,08/09/19 09:23,"170 8th St, Boston, MA 02215" +238729,Bose SoundSport Headphones,1,99.99,08/10/19 19:34,"622 4th St, San Francisco, CA 94016" +238730,ThinkPad Laptop,1,999.99,08/07/19 18:22,"970 1st St, Boston, MA 02215" +238731,USB-C Charging Cable,1,11.95,08/17/19 11:32,"771 11th St, New York City, NY 10001" +238732,AA Batteries (4-pack),1,3.84,08/12/19 21:01,"927 North St, Boston, MA 02215" +238733,Apple Airpods Headphones,1,150,08/18/19 16:29,"248 Willow St, New York City, NY 10001" +238734,Apple Airpods Headphones,1,150,08/27/19 21:18,"297 Lake St, Dallas, TX 75001" +238734,27in FHD Monitor,1,149.99,08/27/19 21:18,"297 Lake St, Dallas, TX 75001" +238735,Google Phone,1,600,08/03/19 15:31,"774 Spruce St, New York City, NY 10001" +238736,Lightning Charging Cable,1,14.95,08/29/19 12:32,"209 Meadow St, Los Angeles, CA 90001" +238737,Apple Airpods Headphones,1,150,08/03/19 14:51,"602 Hill St, New York City, NY 10001" +238738,AA Batteries (4-pack),1,3.84,08/29/19 16:03,"965 Hill St, Los Angeles, CA 90001" +238739,Wired Headphones,1,11.99,08/24/19 20:56,"281 11th St, Atlanta, GA 30301" +238740,Wired Headphones,1,11.99,08/16/19 16:49,"877 14th St, Seattle, WA 98101" +238741,Apple Airpods Headphones,1,150,08/11/19 22:06,"3 13th St, Austin, TX 73301" +238742,Wired Headphones,1,11.99,08/25/19 19:24,"587 Ridge St, Seattle, WA 98101" +238743,Lightning Charging Cable,1,14.95,08/07/19 12:01,"865 Ridge St, Boston, MA 02215" +238744,AA Batteries (4-pack),1,3.84,08/18/19 09:22,"761 14th St, New York City, NY 10001" +238745,AA Batteries (4-pack),2,3.84,08/07/19 10:21,"637 Meadow St, Atlanta, GA 30301" +238746,AA Batteries (4-pack),1,3.84,08/04/19 18:05,"521 Hill St, San Francisco, CA 94016" +238747,iPhone,1,700,08/30/19 15:42,"340 Chestnut St, Seattle, WA 98101" +238748,27in 4K Gaming Monitor,1,389.99,08/23/19 17:56,"516 Lake St, Portland, OR 97035" +238749,USB-C Charging Cable,1,11.95,08/28/19 11:28,"918 10th St, Seattle, WA 98101" +238750,Vareebadd Phone,1,400,08/17/19 19:01,"72 Hickory St, New York City, NY 10001" +238751,Google Phone,1,600,08/24/19 03:24,"840 6th St, Dallas, TX 75001" +238752,USB-C Charging Cable,1,11.95,08/20/19 00:35,"138 Hickory St, Seattle, WA 98101" +238753,Lightning Charging Cable,1,14.95,08/15/19 23:38,"971 8th St, Dallas, TX 75001" +238754,34in Ultrawide Monitor,1,379.99,08/19/19 15:23,"125 Johnson St, Atlanta, GA 30301" +238755,34in Ultrawide Monitor,1,379.99,08/07/19 22:23,"997 6th St, Austin, TX 73301" +238756,AAA Batteries (4-pack),2,2.99,08/19/19 09:40,"853 Jackson St, Austin, TX 73301" +238757,Lightning Charging Cable,1,14.95,08/25/19 06:45,"403 Forest St, Los Angeles, CA 90001" +238758,ThinkPad Laptop,1,999.99,08/13/19 23:27,"20 11th St, Austin, TX 73301" +238759,AAA Batteries (4-pack),1,2.99,08/12/19 14:33,"309 Willow St, Los Angeles, CA 90001" +238760,Apple Airpods Headphones,1,150,08/17/19 13:50,"364 Willow St, Atlanta, GA 30301" +238761,AAA Batteries (4-pack),1,2.99,08/06/19 10:39,"933 South St, Atlanta, GA 30301" +238762,Google Phone,1,600,08/28/19 12:43,"896 Chestnut St, Atlanta, GA 30301" +238763,27in FHD Monitor,1,149.99,08/18/19 10:38,"265 Highland St, Los Angeles, CA 90001" +238764,iPhone,1,700,08/26/19 21:17,"582 6th St, Los Angeles, CA 90001" +238765,Apple Airpods Headphones,1,150,08/13/19 15:10,"646 Chestnut St, Boston, MA 02215" +238766,AAA Batteries (4-pack),1,2.99,08/13/19 14:16,"698 Lincoln St, New York City, NY 10001" +238767,USB-C Charging Cable,1,11.95,08/16/19 20:05,"363 Highland St, Portland, ME 04101" +238767,iPhone,1,700,08/16/19 20:05,"363 Highland St, Portland, ME 04101" +238768,iPhone,1,700,08/09/19 12:04,"671 Ridge St, Los Angeles, CA 90001" +238769,USB-C Charging Cable,1,11.95,08/12/19 17:31,"544 Hill St, Seattle, WA 98101" +238770,Bose SoundSport Headphones,1,99.99,08/08/19 17:22,"761 10th St, Dallas, TX 75001" +238771,Wired Headphones,1,11.99,08/28/19 20:08,"453 12th St, Portland, OR 97035" +238772,USB-C Charging Cable,1,11.95,08/25/19 17:32,"130 Madison St, Los Angeles, CA 90001" +238773,AA Batteries (4-pack),3,3.84,08/29/19 20:43,"737 Forest St, Los Angeles, CA 90001" +238774,Lightning Charging Cable,1,14.95,08/10/19 07:01,"717 11th St, Austin, TX 73301" +238775,AA Batteries (4-pack),1,3.84,08/10/19 18:05,"914 Chestnut St, Los Angeles, CA 90001" +238776,ThinkPad Laptop,1,999.99,08/15/19 10:09,"648 Pine St, Boston, MA 02215" +238777,Bose SoundSport Headphones,1,99.99,08/14/19 09:39,"274 South St, San Francisco, CA 94016" +238778,Bose SoundSport Headphones,1,99.99,08/13/19 14:52,"131 1st St, Atlanta, GA 30301" +238779,Lightning Charging Cable,1,14.95,08/24/19 09:23,"59 West St, Dallas, TX 75001" +238780,AAA Batteries (4-pack),3,2.99,08/08/19 11:03,"699 South St, Boston, MA 02215" +238781,AA Batteries (4-pack),1,3.84,08/27/19 21:16,"942 Adams St, San Francisco, CA 94016" +238782,Lightning Charging Cable,1,14.95,08/29/19 14:11,"943 Pine St, San Francisco, CA 94016" +238783,AAA Batteries (4-pack),2,2.99,08/17/19 22:33,"471 Ridge St, New York City, NY 10001" +238784,USB-C Charging Cable,1,11.95,08/24/19 20:26,"301 Lake St, New York City, NY 10001" +238785,AAA Batteries (4-pack),1,2.99,08/31/19 14:56,"534 4th St, New York City, NY 10001" +238786,Wired Headphones,2,11.99,08/23/19 19:19,"693 Madison St, San Francisco, CA 94016" +238787,AA Batteries (4-pack),2,3.84,08/31/19 06:44,"485 South St, Boston, MA 02215" +238788,Apple Airpods Headphones,1,150,08/21/19 16:32,"565 Spruce St, Los Angeles, CA 90001" +238789,AA Batteries (4-pack),1,3.84,08/22/19 09:47,"900 12th St, Portland, ME 04101" +238790,USB-C Charging Cable,1,11.95,08/23/19 23:11,"421 North St, Portland, ME 04101" +238791,Lightning Charging Cable,1,14.95,08/05/19 08:29,"431 Elm St, San Francisco, CA 94016" +238792,USB-C Charging Cable,1,11.95,08/16/19 17:17,"500 North St, Portland, OR 97035" +238793,USB-C Charging Cable,1,11.95,08/01/19 17:02,"79 Lake St, Los Angeles, CA 90001" +238794,27in 4K Gaming Monitor,1,389.99,08/27/19 17:49,"357 West St, New York City, NY 10001" +238795,Vareebadd Phone,1,400,08/07/19 12:54,"852 Jackson St, Austin, TX 73301" +238796,Lightning Charging Cable,1,14.95,08/19/19 18:52,"891 Elm St, Los Angeles, CA 90001" +238797,27in FHD Monitor,1,149.99,08/31/19 10:29,"666 13th St, Boston, MA 02215" +238798,AAA Batteries (4-pack),1,2.99,08/23/19 10:32,"223 Hill St, Boston, MA 02215" +238799,Wired Headphones,1,11.99,08/23/19 14:24,"154 6th St, San Francisco, CA 94016" +238800,Bose SoundSport Headphones,1,99.99,08/22/19 20:22,"389 Hickory St, Atlanta, GA 30301" +238801,USB-C Charging Cable,1,11.95,08/20/19 10:00,"256 South St, San Francisco, CA 94016" +238802,Lightning Charging Cable,1,14.95,08/10/19 20:59,"136 Church St, San Francisco, CA 94016" +238803,AA Batteries (4-pack),3,3.84,08/07/19 11:13,"324 Main St, Atlanta, GA 30301" +238804,Lightning Charging Cable,2,14.95,08/23/19 15:08,"860 Adams St, Dallas, TX 75001" +238805,20in Monitor,1,109.99,08/23/19 16:27,"132 12th St, Portland, ME 04101" +238806,USB-C Charging Cable,1,11.95,08/16/19 14:51,"373 Madison St, Dallas, TX 75001" +238807,27in FHD Monitor,1,149.99,08/11/19 21:10,"680 Main St, Portland, ME 04101" +238808,AAA Batteries (4-pack),1,2.99,08/28/19 20:36,"864 Church St, New York City, NY 10001" +238809,Apple Airpods Headphones,1,150,08/12/19 16:10,"387 Lakeview St, New York City, NY 10001" +238810,Apple Airpods Headphones,1,150,08/02/19 19:03,"393 West St, Portland, OR 97035" +238811,AA Batteries (4-pack),1,3.84,08/08/19 16:32,"16 12th St, Atlanta, GA 30301" +238812,Google Phone,1,600,08/09/19 17:53,"244 Cedar St, Boston, MA 02215" +238813,Bose SoundSport Headphones,1,99.99,08/02/19 21:21,"14 6th St, Los Angeles, CA 90001" +238814,USB-C Charging Cable,1,11.95,08/17/19 20:58,"591 River St, Los Angeles, CA 90001" +238815,AAA Batteries (4-pack),1,2.99,08/24/19 14:42,"722 Dogwood St, Austin, TX 73301" +238816,Bose SoundSport Headphones,1,99.99,08/08/19 10:10,"977 7th St, San Francisco, CA 94016" +238817,Apple Airpods Headphones,1,150,08/12/19 22:34,"815 Spruce St, Los Angeles, CA 90001" +238818,ThinkPad Laptop,1,999.99,08/12/19 11:19,"649 Highland St, Atlanta, GA 30301" +238819,27in 4K Gaming Monitor,1,389.99,08/30/19 22:43,"117 9th St, New York City, NY 10001" +238820,AA Batteries (4-pack),1,3.84,08/26/19 23:54,"611 Dogwood St, Boston, MA 02215" +238821,34in Ultrawide Monitor,1,379.99,08/05/19 11:02,"317 Jackson St, New York City, NY 10001" +238822,Wired Headphones,1,11.99,08/29/19 16:55,"568 Maple St, Boston, MA 02215" +238823,USB-C Charging Cable,1,11.95,08/01/19 11:58,"958 Dogwood St, Boston, MA 02215" +,,,,, +238824,Wired Headphones,1,11.99,08/17/19 02:53,"18 South St, Atlanta, GA 30301" +238825,Google Phone,1,600,08/19/19 11:56,"325 12th St, San Francisco, CA 94016" +238825,Bose SoundSport Headphones,1,99.99,08/19/19 11:56,"325 12th St, San Francisco, CA 94016" +238826,LG Washing Machine,1,600.0,08/20/19 13:30,"50 7th St, New York City, NY 10001" +238827,Flatscreen TV,1,300,08/15/19 15:04,"590 Cedar St, Los Angeles, CA 90001" +238828,Google Phone,1,600,08/30/19 07:26,"470 Church St, Seattle, WA 98101" +238828,Wired Headphones,1,11.99,08/30/19 07:26,"470 Church St, Seattle, WA 98101" +238829,AAA Batteries (4-pack),1,2.99,08/27/19 20:13,"694 Cherry St, New York City, NY 10001" +238830,Bose SoundSport Headphones,1,99.99,08/13/19 20:47,"324 Center St, Boston, MA 02215" +238831,Macbook Pro Laptop,1,1700,08/20/19 11:49,"838 11th St, San Francisco, CA 94016" +238832,27in FHD Monitor,1,149.99,08/19/19 14:43,"577 Willow St, San Francisco, CA 94016" +238833,27in FHD Monitor,1,149.99,08/05/19 22:13,"739 River St, San Francisco, CA 94016" +238834,AA Batteries (4-pack),1,3.84,08/14/19 14:05,"810 Ridge St, New York City, NY 10001" +238835,ThinkPad Laptop,1,999.99,08/02/19 15:20,"488 4th St, Dallas, TX 75001" +238836,USB-C Charging Cable,1,11.95,08/31/19 08:28,"330 Main St, Seattle, WA 98101" +238836,USB-C Charging Cable,1,11.95,08/31/19 08:28,"330 Main St, Seattle, WA 98101" +238837,AA Batteries (4-pack),1,3.84,08/12/19 11:01,"304 Hickory St, Dallas, TX 75001" +238838,USB-C Charging Cable,1,11.95,08/16/19 11:23,"367 Jefferson St, New York City, NY 10001" +238839,Bose SoundSport Headphones,1,99.99,08/10/19 14:20,"351 5th St, Austin, TX 73301" +238840,27in FHD Monitor,1,149.99,08/23/19 16:46,"707 1st St, New York City, NY 10001" +238841,LG Washing Machine,1,600.0,08/04/19 14:15,"492 Hill St, Boston, MA 02215" +238842,Lightning Charging Cable,1,14.95,08/13/19 12:15,"872 Highland St, San Francisco, CA 94016" +238843,USB-C Charging Cable,1,11.95,08/20/19 13:10,"283 North St, New York City, NY 10001" +238844,20in Monitor,1,109.99,08/19/19 09:30,"904 Dogwood St, Portland, OR 97035" +238845,34in Ultrawide Monitor,1,379.99,08/03/19 23:56,"151 Main St, New York City, NY 10001" +238846,Lightning Charging Cable,1,14.95,08/02/19 12:44,"572 Spruce St, Los Angeles, CA 90001" +238847,Wired Headphones,2,11.99,08/19/19 23:27,"625 Meadow St, New York City, NY 10001" +238848,AAA Batteries (4-pack),1,2.99,08/16/19 00:28,"522 Willow St, New York City, NY 10001" +238849,Apple Airpods Headphones,1,150,08/18/19 19:42,"440 Johnson St, San Francisco, CA 94016" +238850,Google Phone,1,600,08/27/19 18:02,"788 Park St, Los Angeles, CA 90001" +238851,USB-C Charging Cable,1,11.95,08/31/19 12:47,"211 11th St, San Francisco, CA 94016" +238852,Wired Headphones,1,11.99,08/21/19 00:13,"58 1st St, San Francisco, CA 94016" +238853,Macbook Pro Laptop,1,1700,08/01/19 14:27,"73 Johnson St, Seattle, WA 98101" +238854,Flatscreen TV,1,300,08/31/19 19:15,"975 Cedar St, San Francisco, CA 94016" +238855,27in FHD Monitor,1,149.99,08/02/19 16:41,"281 4th St, San Francisco, CA 94016" +238856,ThinkPad Laptop,1,999.99,08/31/19 21:59,"932 6th St, Portland, OR 97035" +238857,Google Phone,1,600,08/10/19 19:58,"60 South St, Seattle, WA 98101" +238858,AA Batteries (4-pack),1,3.84,08/18/19 21:43,"263 Jackson St, Dallas, TX 75001" +238859,34in Ultrawide Monitor,1,379.99,08/17/19 19:21,"244 5th St, New York City, NY 10001" +238860,Lightning Charging Cable,1,14.95,08/20/19 23:29,"446 2nd St, Boston, MA 02215" +238861,USB-C Charging Cable,2,11.95,08/20/19 22:18,"248 Adams St, San Francisco, CA 94016" +238861,Bose SoundSport Headphones,1,99.99,08/20/19 22:18,"248 Adams St, San Francisco, CA 94016" +238862,AAA Batteries (4-pack),2,2.99,08/11/19 16:11,"954 Meadow St, Dallas, TX 75001" +238863,AA Batteries (4-pack),1,3.84,08/04/19 08:37,"882 South St, Los Angeles, CA 90001" +238864,AA Batteries (4-pack),1,3.84,08/15/19 21:50,"439 Dogwood St, New York City, NY 10001" +238865,AAA Batteries (4-pack),2,2.99,08/12/19 17:08,"742 Jackson St, San Francisco, CA 94016" +238866,Wired Headphones,1,11.99,08/15/19 14:30,"478 South St, Seattle, WA 98101" +238867,Lightning Charging Cable,1,14.95,08/13/19 23:12,"107 Washington St, Dallas, TX 75001" +238868,27in FHD Monitor,1,149.99,08/05/19 16:20,"518 13th St, Seattle, WA 98101" +238869,AAA Batteries (4-pack),1,2.99,08/28/19 16:42,"896 Walnut St, San Francisco, CA 94016" +238870,USB-C Charging Cable,1,11.95,08/22/19 13:05,"410 Cherry St, Dallas, TX 75001" +238871,Flatscreen TV,1,300,08/09/19 21:47,"463 Pine St, Dallas, TX 75001" +238872,AAA Batteries (4-pack),1,2.99,08/18/19 18:29,"305 Hill St, Portland, OR 97035" +238873,iPhone,1,700,08/19/19 21:33,"124 Church St, San Francisco, CA 94016" +238874,USB-C Charging Cable,1,11.95,08/13/19 11:38,"251 2nd St, San Francisco, CA 94016" +238875,Lightning Charging Cable,1,14.95,08/30/19 18:52,"535 Park St, Boston, MA 02215" +238876,Lightning Charging Cable,1,14.95,08/12/19 19:21,"466 Lincoln St, Atlanta, GA 30301" +238877,Bose SoundSport Headphones,1,99.99,08/10/19 20:25,"518 Chestnut St, San Francisco, CA 94016" +238878,27in FHD Monitor,1,149.99,08/02/19 09:29,"576 Walnut St, Portland, ME 04101" +238878,Google Phone,1,600,08/02/19 09:29,"576 Walnut St, Portland, ME 04101" +238879,Lightning Charging Cable,1,14.95,08/20/19 12:03,"911 9th St, Atlanta, GA 30301" +238880,Wired Headphones,1,11.99,08/24/19 21:05,"12 Meadow St, San Francisco, CA 94016" +238881,Apple Airpods Headphones,1,150,08/18/19 16:41,"516 South St, Atlanta, GA 30301" +238882,USB-C Charging Cable,1,11.95,08/12/19 18:20,"256 Meadow St, Austin, TX 73301" +238883,Macbook Pro Laptop,1,1700,08/19/19 13:11,"819 Center St, San Francisco, CA 94016" +238884,AAA Batteries (4-pack),1,2.99,08/18/19 10:14,"532 11th St, Boston, MA 02215" +238885,Google Phone,1,600,08/02/19 10:49,"68 13th St, Los Angeles, CA 90001" +238886,Wired Headphones,1,11.99,08/08/19 12:53,"924 Jefferson St, San Francisco, CA 94016" +238887,USB-C Charging Cable,1,11.95,08/22/19 15:18,"301 Forest St, San Francisco, CA 94016" +238888,Wired Headphones,1,11.99,08/21/19 18:55,"406 2nd St, Portland, OR 97035" +238889,Lightning Charging Cable,1,14.95,08/03/19 17:36,"212 7th St, San Francisco, CA 94016" +238890,AA Batteries (4-pack),1,3.84,08/29/19 11:09,"744 Walnut St, Portland, OR 97035" +238891,USB-C Charging Cable,2,11.95,08/04/19 13:57,"950 10th St, San Francisco, CA 94016" +238892,Lightning Charging Cable,1,14.95,08/30/19 23:15,"184 North St, Seattle, WA 98101" +238893,iPhone,1,700,08/31/19 09:57,"814 Hill St, Atlanta, GA 30301" +238894,ThinkPad Laptop,1,999.99,08/19/19 10:25,"666 Ridge St, San Francisco, CA 94016" +238895,AA Batteries (4-pack),1,3.84,08/07/19 15:12,"244 Spruce St, New York City, NY 10001" +238896,Lightning Charging Cable,1,14.95,08/22/19 11:17,"750 Wilson St, Los Angeles, CA 90001" +238897,AA Batteries (4-pack),5,3.84,08/03/19 19:41,"788 8th St, San Francisco, CA 94016" +238898,iPhone,1,700,08/13/19 18:44,"868 Pine St, Boston, MA 02215" +238899,27in FHD Monitor,1,149.99,08/31/19 09:37,"252 Center St, San Francisco, CA 94016" +238900,USB-C Charging Cable,1,11.95,08/16/19 22:22,"286 Church St, San Francisco, CA 94016" +238901,Macbook Pro Laptop,1,1700,08/09/19 11:27,"466 Hill St, New York City, NY 10001" +238902,USB-C Charging Cable,1,11.95,08/20/19 12:14,"422 Cedar St, Seattle, WA 98101" +238903,AAA Batteries (4-pack),1,2.99,08/06/19 08:43,"717 6th St, Seattle, WA 98101" +238904,Wired Headphones,2,11.99,08/13/19 19:23,"619 Lakeview St, Seattle, WA 98101" +238905,AA Batteries (4-pack),2,3.84,08/07/19 11:18,"16 Spruce St, Dallas, TX 75001" +238906,34in Ultrawide Monitor,1,379.99,08/02/19 10:53,"492 Lincoln St, Seattle, WA 98101" +238907,Bose SoundSport Headphones,2,99.99,08/03/19 18:17,"168 10th St, San Francisco, CA 94016" +238908,Wired Headphones,2,11.99,08/21/19 13:32,"222 9th St, Dallas, TX 75001" +238909,34in Ultrawide Monitor,1,379.99,08/15/19 16:00,"107 Chestnut St, Dallas, TX 75001" +238910,ThinkPad Laptop,1,999.99,08/23/19 16:32,"545 5th St, Portland, OR 97035" +238911,Flatscreen TV,1,300,08/24/19 09:06,"930 9th St, Dallas, TX 75001" +238912,27in FHD Monitor,1,149.99,08/17/19 13:11,"546 Madison St, Boston, MA 02215" +238913,AA Batteries (4-pack),1,3.84,08/10/19 17:56,"202 11th St, Austin, TX 73301" +238914,AAA Batteries (4-pack),2,2.99,08/16/19 22:01,"19 Adams St, New York City, NY 10001" +238915,20in Monitor,1,109.99,08/01/19 17:01,"511 Jackson St, Atlanta, GA 30301" +238916,27in FHD Monitor,1,149.99,08/09/19 20:22,"995 Adams St, Seattle, WA 98101" +238917,Google Phone,1,600,08/31/19 19:43,"343 Cedar St, Dallas, TX 75001" +238918,20in Monitor,1,109.99,08/18/19 21:26,"137 1st St, Portland, OR 97035" +238919,AA Batteries (4-pack),1,3.84,08/23/19 15:41,"759 Main St, San Francisco, CA 94016" +238920,AAA Batteries (4-pack),2,2.99,08/14/19 09:07,"464 Wilson St, San Francisco, CA 94016" +238921,Bose SoundSport Headphones,1,99.99,08/03/19 15:07,"637 South St, New York City, NY 10001" +238921,ThinkPad Laptop,1,999.99,08/03/19 15:07,"637 South St, New York City, NY 10001" +238922,USB-C Charging Cable,1,11.95,08/29/19 08:11,"691 Cherry St, Boston, MA 02215" +238923,ThinkPad Laptop,1,999.99,08/05/19 18:06,"68 Chestnut St, New York City, NY 10001" +238924,Google Phone,1,600,08/06/19 08:00,"899 Sunset St, Atlanta, GA 30301" +238924,USB-C Charging Cable,1,11.95,08/06/19 08:00,"899 Sunset St, Atlanta, GA 30301" +238925,34in Ultrawide Monitor,1,379.99,08/24/19 17:56,"947 Cedar St, Dallas, TX 75001" +238926,Apple Airpods Headphones,1,150,08/09/19 00:38,"173 Maple St, Seattle, WA 98101" +238927,Wired Headphones,1,11.99,08/12/19 17:10,"433 Center St, Los Angeles, CA 90001" +238928,AA Batteries (4-pack),1,3.84,08/07/19 19:23,"655 Church St, Seattle, WA 98101" +238929,27in 4K Gaming Monitor,1,389.99,08/22/19 09:50,"35 Johnson St, Boston, MA 02215" +238930,AA Batteries (4-pack),1,3.84,08/03/19 01:52,"145 13th St, San Francisco, CA 94016" +238931,Apple Airpods Headphones,1,150,08/18/19 11:49,"270 2nd St, Los Angeles, CA 90001" +238932,AA Batteries (4-pack),6,3.84,08/22/19 09:19,"689 Sunset St, Los Angeles, CA 90001" +238933,AA Batteries (4-pack),4,3.84,08/13/19 14:28,"313 Spruce St, Los Angeles, CA 90001" +238934,34in Ultrawide Monitor,1,379.99,08/27/19 00:19,"697 Main St, San Francisco, CA 94016" +238935,34in Ultrawide Monitor,1,379.99,08/24/19 13:27,"712 13th St, Austin, TX 73301" +238936,USB-C Charging Cable,1,11.95,08/19/19 23:27,"72 5th St, San Francisco, CA 94016" +238937,27in FHD Monitor,1,149.99,08/19/19 17:20,"904 Church St, Dallas, TX 75001" +238938,Wired Headphones,1,11.99,08/09/19 10:43,"641 Willow St, New York City, NY 10001" +238939,Apple Airpods Headphones,1,150,08/02/19 11:35,"887 5th St, Los Angeles, CA 90001" +238940,AAA Batteries (4-pack),3,2.99,08/11/19 20:48,"180 Main St, San Francisco, CA 94016" +238941,AAA Batteries (4-pack),1,2.99,08/29/19 08:35,"941 Church St, San Francisco, CA 94016" +238942,27in FHD Monitor,1,149.99,08/27/19 18:16,"400 10th St, Los Angeles, CA 90001" +238943,Apple Airpods Headphones,1,150,08/28/19 15:16,"389 14th St, Seattle, WA 98101" +238944,AA Batteries (4-pack),1,3.84,08/13/19 16:10,"911 5th St, Boston, MA 02215" +238945,iPhone,1,700,08/23/19 22:18,"778 5th St, Portland, OR 97035" +238946,USB-C Charging Cable,2,11.95,08/10/19 19:59,"642 South St, San Francisco, CA 94016" +238947,Bose SoundSport Headphones,1,99.99,08/18/19 16:39,"708 West St, New York City, NY 10001" +238948,Wired Headphones,1,11.99,08/30/19 21:35,"20 Park St, New York City, NY 10001" +238949,Flatscreen TV,1,300,08/31/19 22:35,"554 Church St, Portland, ME 04101" +238950,Wired Headphones,1,11.99,08/18/19 15:06,"310 West St, New York City, NY 10001" +238951,Lightning Charging Cable,1,14.95,08/04/19 10:49,"957 6th St, Dallas, TX 75001" +238952,Lightning Charging Cable,1,14.95,08/08/19 11:19,"513 Madison St, San Francisco, CA 94016" +238953,USB-C Charging Cable,1,11.95,08/19/19 10:37,"378 Cherry St, Los Angeles, CA 90001" +238954,Google Phone,1,600,08/23/19 13:30,"507 Spruce St, New York City, NY 10001" +238955,Lightning Charging Cable,1,14.95,08/19/19 16:28,"537 Jefferson St, San Francisco, CA 94016" +238956,AA Batteries (4-pack),1,3.84,09/01/19 01:57,"860 Forest St, New York City, NY 10001" +238957,Flatscreen TV,1,300,08/04/19 18:24,"986 Walnut St, New York City, NY 10001" +238958,USB-C Charging Cable,1,11.95,08/03/19 14:59,"586 Sunset St, Los Angeles, CA 90001" +238959,27in FHD Monitor,1,149.99,08/13/19 07:38,"933 Madison St, San Francisco, CA 94016" +238960,Macbook Pro Laptop,1,1700,08/14/19 13:11,"218 10th St, Atlanta, GA 30301" +238961,Apple Airpods Headphones,1,150,08/30/19 18:55,"18 Lakeview St, Boston, MA 02215" +238962,Lightning Charging Cable,2,14.95,08/25/19 17:17,"811 10th St, New York City, NY 10001" +238963,20in Monitor,1,109.99,08/30/19 08:00,"759 Meadow St, San Francisco, CA 94016" +238964,Wired Headphones,1,11.99,08/03/19 09:40,"41 Lincoln St, San Francisco, CA 94016" +238965,Flatscreen TV,1,300,08/30/19 12:51,"893 North St, Portland, OR 97035" +238966,Wired Headphones,1,11.99,08/28/19 15:42,"470 14th St, Austin, TX 73301" +238967,Bose SoundSport Headphones,1,99.99,08/01/19 21:35,"70 Hill St, Los Angeles, CA 90001" +238968,27in 4K Gaming Monitor,1,389.99,08/20/19 22:54,"299 Park St, Boston, MA 02215" +238968,27in FHD Monitor,1,149.99,08/20/19 22:54,"299 Park St, Boston, MA 02215" +238969,Wired Headphones,1,11.99,08/29/19 08:47,"567 Pine St, Los Angeles, CA 90001" +238970,20in Monitor,1,109.99,08/03/19 23:13,"311 Meadow St, San Francisco, CA 94016" +238971,Lightning Charging Cable,1,14.95,08/09/19 19:41,"783 6th St, Austin, TX 73301" +238972,AAA Batteries (4-pack),1,2.99,08/17/19 15:49,"828 River St, New York City, NY 10001" +238973,Lightning Charging Cable,1,14.95,08/09/19 10:29,"836 Church St, Portland, OR 97035" +238974,Bose SoundSport Headphones,1,99.99,08/03/19 11:23,"295 6th St, Dallas, TX 75001" +238975,AA Batteries (4-pack),1,3.84,08/17/19 15:53,"86 13th St, San Francisco, CA 94016" +238976,Bose SoundSport Headphones,1,99.99,08/13/19 16:52,"798 Forest St, San Francisco, CA 94016" +238977,27in 4K Gaming Monitor,1,389.99,08/03/19 14:24,"465 Lincoln St, San Francisco, CA 94016" +238978,USB-C Charging Cable,1,11.95,08/11/19 01:01,"312 Lakeview St, Boston, MA 02215" +238979,Google Phone,1,600,08/31/19 17:49,"408 Willow St, Dallas, TX 75001" +238980,Wired Headphones,1,11.99,08/19/19 20:23,"180 Chestnut St, New York City, NY 10001" +238981,Apple Airpods Headphones,1,150,08/24/19 17:04,"295 Main St, Dallas, TX 75001" +238982,AAA Batteries (4-pack),1,2.99,08/26/19 13:26,"269 11th St, Los Angeles, CA 90001" +238983,Lightning Charging Cable,1,14.95,08/03/19 15:33,"811 South St, Dallas, TX 75001" +238984,Flatscreen TV,1,300,08/31/19 16:57,"557 11th St, Atlanta, GA 30301" +238984,34in Ultrawide Monitor,1,379.99,08/31/19 16:57,"557 11th St, Atlanta, GA 30301" +238985,USB-C Charging Cable,1,11.95,08/28/19 23:08,"258 9th St, Portland, OR 97035" +238986,AA Batteries (4-pack),1,3.84,08/16/19 14:12,"587 Madison St, Atlanta, GA 30301" +238987,USB-C Charging Cable,1,11.95,08/15/19 13:20,"659 14th St, Portland, OR 97035" +238988,Lightning Charging Cable,1,14.95,08/05/19 15:01,"626 South St, Dallas, TX 75001" +238989,Wired Headphones,1,11.99,08/10/19 01:40,"963 Wilson St, Atlanta, GA 30301" +238990,AAA Batteries (4-pack),1,2.99,08/30/19 22:25,"123 River St, Los Angeles, CA 90001" +238991,Apple Airpods Headphones,1,150,08/16/19 10:38,"44 Main St, New York City, NY 10001" +238992,Macbook Pro Laptop,1,1700,08/12/19 15:58,"605 Pine St, Los Angeles, CA 90001" +238993,Lightning Charging Cable,1,14.95,08/28/19 20:27,"184 13th St, San Francisco, CA 94016" +238994,Lightning Charging Cable,1,14.95,08/03/19 17:09,"872 North St, Seattle, WA 98101" +238995,Apple Airpods Headphones,1,150,08/17/19 21:00,"98 9th St, Dallas, TX 75001" +238996,Bose SoundSport Headphones,1,99.99,08/03/19 17:48,"561 Chestnut St, Austin, TX 73301" +238997,AAA Batteries (4-pack),3,2.99,08/18/19 12:39,"993 7th St, Seattle, WA 98101" +238998,Apple Airpods Headphones,1,150,08/26/19 22:33,"18 Chestnut St, Dallas, TX 75001" +238999,Apple Airpods Headphones,1,150,08/27/19 11:48,"553 Lake St, Boston, MA 02215" +239000,Wired Headphones,1,11.99,08/27/19 13:29,"171 West St, Atlanta, GA 30301" +239001,Wired Headphones,1,11.99,08/28/19 17:36,"511 Cedar St, New York City, NY 10001" +239002,20in Monitor,1,109.99,08/02/19 09:15,"233 Dogwood St, Los Angeles, CA 90001" +239003,27in 4K Gaming Monitor,1,389.99,08/04/19 13:04,"437 River St, Los Angeles, CA 90001" +239004,AA Batteries (4-pack),1,3.84,08/06/19 18:31,"492 Maple St, New York City, NY 10001" +239005,AAA Batteries (4-pack),1,2.99,08/25/19 12:39,"17 Highland St, New York City, NY 10001" +239006,Apple Airpods Headphones,1,150,08/11/19 12:18,"849 14th St, New York City, NY 10001" +239007,Bose SoundSport Headphones,2,99.99,08/19/19 21:24,"233 Wilson St, Dallas, TX 75001" +239008,AA Batteries (4-pack),3,3.84,08/06/19 15:48,"683 Hickory St, Dallas, TX 75001" +239009,Wired Headphones,1,11.99,08/24/19 13:48,"346 14th St, Los Angeles, CA 90001" +239010,iPhone,1,700,08/17/19 16:07,"447 Cherry St, Los Angeles, CA 90001" +239010,Lightning Charging Cable,1,14.95,08/17/19 16:07,"447 Cherry St, Los Angeles, CA 90001" +239011,AAA Batteries (4-pack),4,2.99,08/21/19 20:19,"457 South St, Los Angeles, CA 90001" +239012,AA Batteries (4-pack),1,3.84,08/12/19 17:04,"589 Sunset St, San Francisco, CA 94016" +239013,Lightning Charging Cable,2,14.95,08/04/19 13:45,"566 Hickory St, San Francisco, CA 94016" +239014,Flatscreen TV,1,300,08/28/19 18:48,"962 14th St, Boston, MA 02215" +239015,20in Monitor,1,109.99,08/07/19 09:29,"694 Adams St, New York City, NY 10001" +239016,Bose SoundSport Headphones,1,99.99,08/30/19 23:21,"303 13th St, Los Angeles, CA 90001" +239017,Wired Headphones,1,11.99,08/07/19 11:25,"953 1st St, Portland, ME 04101" +239018,Bose SoundSport Headphones,1,99.99,08/17/19 05:06,"20 Hill St, San Francisco, CA 94016" +239019,Bose SoundSport Headphones,1,99.99,08/15/19 15:11,"500 North St, Los Angeles, CA 90001" +239020,USB-C Charging Cable,1,11.95,08/13/19 09:13,"622 Cherry St, Los Angeles, CA 90001" +239021,Wired Headphones,1,11.99,08/06/19 14:30,"405 Forest St, Portland, OR 97035" +239022,Wired Headphones,1,11.99,08/12/19 19:59,"626 South St, San Francisco, CA 94016" +239023,Wired Headphones,1,11.99,08/01/19 22:33,"359 9th St, Los Angeles, CA 90001" +239024,27in FHD Monitor,1,149.99,08/12/19 10:15,"57 Adams St, Boston, MA 02215" +239025,AAA Batteries (4-pack),1,2.99,08/01/19 11:26,"83 Church St, New York City, NY 10001" +239026,27in FHD Monitor,1,149.99,08/01/19 15:10,"622 6th St, San Francisco, CA 94016" +239027,Google Phone,1,600,08/05/19 09:52,"133 Dogwood St, Portland, OR 97035" +239028,Wired Headphones,1,11.99,08/19/19 10:37,"566 North St, Seattle, WA 98101" +239029,Wired Headphones,1,11.99,08/06/19 12:07,"216 14th St, Boston, MA 02215" +239030,Apple Airpods Headphones,1,150,08/29/19 13:44,"629 Cedar St, Austin, TX 73301" +239031,27in FHD Monitor,1,149.99,08/15/19 13:09,"382 Madison St, Dallas, TX 75001" +239032,Wired Headphones,1,11.99,08/19/19 16:06,"866 11th St, Atlanta, GA 30301" +239033,Lightning Charging Cable,1,14.95,08/09/19 13:51,"240 North St, Los Angeles, CA 90001" +239034,Bose SoundSport Headphones,1,99.99,08/16/19 13:09,"119 10th St, Los Angeles, CA 90001" +239035,Bose SoundSport Headphones,1,99.99,08/04/19 13:07,"139 Maple St, San Francisco, CA 94016" +239036,Wired Headphones,1,11.99,08/15/19 12:45,"724 12th St, Boston, MA 02215" +239037,USB-C Charging Cable,1,11.95,08/19/19 11:17,"703 Elm St, New York City, NY 10001" +239038,Apple Airpods Headphones,1,150,08/07/19 09:57,"462 Ridge St, Portland, OR 97035" +239039,34in Ultrawide Monitor,1,379.99,08/17/19 12:49,"12 Pine St, Austin, TX 73301" +239040,USB-C Charging Cable,1,11.95,08/25/19 19:21,"848 Spruce St, San Francisco, CA 94016" +239041,Wired Headphones,2,11.99,08/06/19 17:20,"50 Main St, Seattle, WA 98101" +239042,USB-C Charging Cable,1,11.95,08/19/19 05:59,"718 9th St, San Francisco, CA 94016" +239043,AA Batteries (4-pack),1,3.84,08/12/19 07:37,"478 Ridge St, New York City, NY 10001" +239044,Macbook Pro Laptop,1,1700,08/17/19 13:22,"360 Washington St, Seattle, WA 98101" +239045,Bose SoundSport Headphones,1,99.99,08/05/19 11:14,"177 12th St, Dallas, TX 75001" +239046,Apple Airpods Headphones,1,150,08/11/19 12:56,"928 North St, Atlanta, GA 30301" +239047,Wired Headphones,1,11.99,08/06/19 09:02,"936 South St, New York City, NY 10001" +239048,Vareebadd Phone,1,400,08/22/19 00:48,"46 Forest St, Boston, MA 02215" +239049,Lightning Charging Cable,1,14.95,08/26/19 16:19,"664 Lake St, New York City, NY 10001" +239050,Vareebadd Phone,1,400,08/26/19 11:24,"426 14th St, Portland, OR 97035" +239050,Wired Headphones,2,11.99,08/26/19 11:24,"426 14th St, Portland, OR 97035" +239051,20in Monitor,1,109.99,08/03/19 23:54,"606 Meadow St, Boston, MA 02215" +239052,Lightning Charging Cable,1,14.95,08/23/19 23:07,"187 13th St, New York City, NY 10001" +239053,AAA Batteries (4-pack),1,2.99,08/08/19 21:32,"955 Lakeview St, Austin, TX 73301" +239054,Wired Headphones,1,11.99,08/08/19 19:13,"986 Maple St, Austin, TX 73301" +239055,Bose SoundSport Headphones,1,99.99,08/14/19 16:15,"973 Adams St, Atlanta, GA 30301" +239056,AAA Batteries (4-pack),2,2.99,08/16/19 21:14,"25 West St, Los Angeles, CA 90001" +239057,34in Ultrawide Monitor,1,379.99,08/07/19 22:53,"734 11th St, San Francisco, CA 94016" +239058,Bose SoundSport Headphones,1,99.99,08/27/19 14:03,"128 12th St, Dallas, TX 75001" +239059,20in Monitor,1,109.99,08/13/19 12:10,"286 Hill St, San Francisco, CA 94016" +239060,Bose SoundSport Headphones,1,99.99,08/28/19 18:42,"702 13th St, San Francisco, CA 94016" +239061,Lightning Charging Cable,1,14.95,08/31/19 11:56,"422 8th St, Austin, TX 73301" +239062,Bose SoundSport Headphones,1,99.99,08/06/19 16:22,"674 Washington St, Los Angeles, CA 90001" +239063,AAA Batteries (4-pack),1,2.99,08/25/19 16:47,"361 Center St, Los Angeles, CA 90001" +239064,Wired Headphones,1,11.99,08/01/19 10:21,"488 Ridge St, New York City, NY 10001" +239065,USB-C Charging Cable,1,11.95,08/05/19 00:15,"641 Jackson St, Los Angeles, CA 90001" +239066,Lightning Charging Cable,2,14.95,08/31/19 15:54,"612 14th St, Boston, MA 02215" +239067,Vareebadd Phone,1,400,08/19/19 12:45,"247 Ridge St, Boston, MA 02215" +239068,Wired Headphones,1,11.99,08/06/19 19:38,"629 Willow St, Los Angeles, CA 90001" +239069,Bose SoundSport Headphones,1,99.99,08/15/19 16:59,"467 West St, Los Angeles, CA 90001" +239070,27in FHD Monitor,1,149.99,08/01/19 13:21,"926 14th St, Seattle, WA 98101" +239071,Google Phone,1,600,08/08/19 19:06,"229 Main St, Portland, OR 97035" +239072,AA Batteries (4-pack),1,3.84,08/28/19 15:29,"388 13th St, Portland, OR 97035" +239073,27in 4K Gaming Monitor,1,389.99,08/14/19 14:04,"61 Ridge St, New York City, NY 10001" +239074,USB-C Charging Cable,1,11.95,08/31/19 21:13,"501 Washington St, San Francisco, CA 94016" +239075,AAA Batteries (4-pack),2,2.99,08/15/19 11:54,"704 Jackson St, Los Angeles, CA 90001" +239076,Vareebadd Phone,1,400,08/14/19 11:51,"749 14th St, Atlanta, GA 30301" +239076,Wired Headphones,1,11.99,08/14/19 11:51,"749 14th St, Atlanta, GA 30301" +239077,Lightning Charging Cable,1,14.95,08/04/19 15:54,"995 11th St, San Francisco, CA 94016" +239078,AAA Batteries (4-pack),1,2.99,08/03/19 13:05,"8 Ridge St, Seattle, WA 98101" +239079,Apple Airpods Headphones,1,150,08/30/19 22:58,"407 Park St, Los Angeles, CA 90001" +239080,Lightning Charging Cable,2,14.95,08/27/19 12:20,"414 4th St, Los Angeles, CA 90001" +239081,AAA Batteries (4-pack),2,2.99,08/08/19 19:13,"573 North St, New York City, NY 10001" +239082,20in Monitor,1,109.99,08/30/19 11:49,"700 West St, Los Angeles, CA 90001" +239083,34in Ultrawide Monitor,1,379.99,08/03/19 12:56,"722 5th St, New York City, NY 10001" +239084,AA Batteries (4-pack),1,3.84,08/02/19 21:56,"627 River St, San Francisco, CA 94016" +239085,AAA Batteries (4-pack),1,2.99,08/23/19 23:40,"585 Madison St, Los Angeles, CA 90001" +,,,,, +239086,Wired Headphones,1,11.99,08/01/19 19:52,"868 Maple St, New York City, NY 10001" +239087,34in Ultrawide Monitor,1,379.99,08/26/19 12:59,"395 Ridge St, Dallas, TX 75001" +239088,AAA Batteries (4-pack),1,2.99,08/18/19 07:39,"813 10th St, Portland, ME 04101" +239089,Macbook Pro Laptop,1,1700,08/05/19 18:24,"456 River St, Los Angeles, CA 90001" +239090,34in Ultrawide Monitor,1,379.99,08/31/19 09:56,"271 Ridge St, Portland, ME 04101" +239091,Apple Airpods Headphones,1,150,08/28/19 16:34,"270 Main St, New York City, NY 10001" +239092,USB-C Charging Cable,1,11.95,08/16/19 12:17,"533 River St, Los Angeles, CA 90001" +239093,Wired Headphones,1,11.99,08/23/19 20:32,"437 Dogwood St, Portland, OR 97035" +239094,20in Monitor,1,109.99,08/22/19 20:00,"2 Jefferson St, Boston, MA 02215" +239095,USB-C Charging Cable,1,11.95,08/09/19 17:43,"399 13th St, Los Angeles, CA 90001" +239096,Apple Airpods Headphones,1,150,08/19/19 13:38,"631 Johnson St, Los Angeles, CA 90001" +239097,27in FHD Monitor,1,149.99,08/11/19 15:37,"506 Cherry St, San Francisco, CA 94016" +239098,AAA Batteries (4-pack),2,2.99,08/21/19 05:48,"107 Madison St, Dallas, TX 75001" +239099,Wired Headphones,1,11.99,08/25/19 17:18,"203 12th St, San Francisco, CA 94016" +239100,Flatscreen TV,1,300,08/08/19 11:39,"767 Forest St, Portland, OR 97035" +239101,34in Ultrawide Monitor,1,379.99,08/30/19 19:57,"111 Adams St, Austin, TX 73301" +239102,AA Batteries (4-pack),1,3.84,08/31/19 12:48,"988 West St, Los Angeles, CA 90001" +239103,Bose SoundSport Headphones,1,99.99,08/16/19 12:57,"209 Dogwood St, Los Angeles, CA 90001" +239104,AAA Batteries (4-pack),1,2.99,08/27/19 12:01,"285 Walnut St, San Francisco, CA 94016" +239105,AAA Batteries (4-pack),2,2.99,08/05/19 01:07,"614 6th St, New York City, NY 10001" +239106,ThinkPad Laptop,1,999.99,08/15/19 08:10,"771 Lake St, Dallas, TX 75001" +239107,AA Batteries (4-pack),1,3.84,08/12/19 15:49,"740 Spruce St, Boston, MA 02215" +239108,Apple Airpods Headphones,1,150,08/03/19 18:25,"565 2nd St, Atlanta, GA 30301" +239109,Bose SoundSport Headphones,1,99.99,08/07/19 13:33,"688 Lakeview St, San Francisco, CA 94016" +239110,Apple Airpods Headphones,1,150,08/31/19 20:58,"812 1st St, Seattle, WA 98101" +239111,USB-C Charging Cable,1,11.95,08/22/19 18:04,"412 14th St, Atlanta, GA 30301" +239112,27in FHD Monitor,1,149.99,08/09/19 17:29,"371 Park St, Boston, MA 02215" +239113,AA Batteries (4-pack),1,3.84,08/04/19 13:29,"750 Spruce St, San Francisco, CA 94016" +239114,27in FHD Monitor,1,149.99,08/26/19 18:22,"443 7th St, Atlanta, GA 30301" +239115,27in FHD Monitor,1,149.99,08/21/19 22:42,"174 North St, San Francisco, CA 94016" +239116,Lightning Charging Cable,1,14.95,08/23/19 09:13,"34 Highland St, Portland, OR 97035" +239117,USB-C Charging Cable,1,11.95,08/31/19 19:02,"652 Jackson St, Atlanta, GA 30301" +239118,ThinkPad Laptop,1,999.99,08/14/19 08:13,"949 West St, Los Angeles, CA 90001" +239119,AAA Batteries (4-pack),1,2.99,08/22/19 20:01,"389 7th St, Boston, MA 02215" +239120,20in Monitor,1,109.99,08/29/19 12:53,"378 Hickory St, Dallas, TX 75001" +239121,USB-C Charging Cable,1,11.95,08/17/19 11:36,"659 9th St, San Francisco, CA 94016" +239122,Lightning Charging Cable,1,14.95,08/08/19 19:42,"196 Willow St, Boston, MA 02215" +239123,AA Batteries (4-pack),1,3.84,08/23/19 10:34,"757 Elm St, Boston, MA 02215" +239124,AA Batteries (4-pack),3,3.84,08/01/19 20:11,"171 West St, Dallas, TX 75001" +239125,27in 4K Gaming Monitor,1,389.99,08/30/19 21:49,"816 Cherry St, Boston, MA 02215" +239126,20in Monitor,1,109.99,08/02/19 12:00,"929 Pine St, Seattle, WA 98101" +239127,Google Phone,1,600,08/17/19 22:20,"528 Meadow St, Atlanta, GA 30301" +239128,AAA Batteries (4-pack),1,2.99,08/29/19 08:15,"849 14th St, New York City, NY 10001" +,,,,, +239129,AAA Batteries (4-pack),2,2.99,08/29/19 13:55,"536 Church St, Dallas, TX 75001" +239130,AAA Batteries (4-pack),1,2.99,08/05/19 12:35,"420 Forest St, Boston, MA 02215" +239131,Vareebadd Phone,1,400,08/27/19 12:41,"541 River St, New York City, NY 10001" +239132,USB-C Charging Cable,1,11.95,08/16/19 10:51,"777 Elm St, San Francisco, CA 94016" +239133,Apple Airpods Headphones,1,150,08/20/19 12:57,"252 12th St, Boston, MA 02215" +239134,20in Monitor,1,109.99,08/17/19 13:26,"501 Cedar St, Dallas, TX 75001" +239135,Google Phone,1,600,08/31/19 16:29,"95 Jefferson St, San Francisco, CA 94016" +239136,Wired Headphones,1,11.99,08/01/19 18:57,"297 Johnson St, New York City, NY 10001" +239137,Vareebadd Phone,1,400,08/13/19 08:25,"135 14th St, Portland, OR 97035" +239137,USB-C Charging Cable,1,11.95,08/13/19 08:25,"135 14th St, Portland, OR 97035" +239138,Lightning Charging Cable,1,14.95,08/11/19 20:53,"632 West St, Dallas, TX 75001" +239139,Macbook Pro Laptop,1,1700,08/07/19 19:45,"39 Jackson St, Boston, MA 02215" +239140,Lightning Charging Cable,1,14.95,08/29/19 07:28,"76 Wilson St, San Francisco, CA 94016" +239141,AAA Batteries (4-pack),1,2.99,08/05/19 09:02,"855 Jackson St, San Francisco, CA 94016" +239142,iPhone,1,700,08/05/19 05:45,"526 7th St, Atlanta, GA 30301" +239143,AAA Batteries (4-pack),1,2.99,08/11/19 19:12,"317 Church St, New York City, NY 10001" +239144,USB-C Charging Cable,1,11.95,08/26/19 13:57,"765 Meadow St, Austin, TX 73301" +239145,USB-C Charging Cable,1,11.95,08/25/19 16:51,"597 Cherry St, Dallas, TX 75001" +239146,20in Monitor,1,109.99,08/09/19 21:11,"963 1st St, New York City, NY 10001" +239147,20in Monitor,1,109.99,08/28/19 13:47,"471 Lake St, Los Angeles, CA 90001" +239148,USB-C Charging Cable,1,11.95,08/05/19 20:14,"535 Forest St, New York City, NY 10001" +239149,Apple Airpods Headphones,1,150,08/16/19 07:34,"891 Spruce St, San Francisco, CA 94016" +239150,AAA Batteries (4-pack),1,2.99,08/21/19 17:55,"740 Wilson St, New York City, NY 10001" +239151,Lightning Charging Cable,1,14.95,08/10/19 20:53,"598 4th St, San Francisco, CA 94016" +239152,Lightning Charging Cable,1,14.95,08/03/19 13:20,"222 Lake St, Portland, ME 04101" +239153,AA Batteries (4-pack),1,3.84,08/27/19 07:11,"641 Spruce St, San Francisco, CA 94016" +239154,Flatscreen TV,1,300,08/25/19 17:55,"963 4th St, Los Angeles, CA 90001" +239155,USB-C Charging Cable,1,11.95,08/29/19 18:35,"106 Adams St, Los Angeles, CA 90001" +239156,Wired Headphones,1,11.99,08/18/19 07:41,"906 14th St, Portland, OR 97035" +239157,Wired Headphones,1,11.99,08/01/19 13:40,"453 12th St, San Francisco, CA 94016" +239158,Google Phone,1,600,08/11/19 12:06,"20 14th St, San Francisco, CA 94016" +239158,USB-C Charging Cable,1,11.95,08/11/19 12:06,"20 14th St, San Francisco, CA 94016" +239159,ThinkPad Laptop,1,999.99,08/06/19 13:08,"644 River St, New York City, NY 10001" +239159,Wired Headphones,1,11.99,08/06/19 13:08,"644 River St, New York City, NY 10001" +239160,Bose SoundSport Headphones,1,99.99,08/19/19 02:00,"166 Main St, Los Angeles, CA 90001" +239161,AA Batteries (4-pack),2,3.84,08/24/19 21:52,"234 Wilson St, New York City, NY 10001" +239162,AAA Batteries (4-pack),2,2.99,08/10/19 10:23,"501 Church St, Los Angeles, CA 90001" +239163,Lightning Charging Cable,1,14.95,08/21/19 21:10,"236 6th St, Seattle, WA 98101" +239164,Apple Airpods Headphones,1,150,08/30/19 14:53,"686 Hill St, Los Angeles, CA 90001" +239165,AA Batteries (4-pack),1,3.84,08/22/19 12:09,"630 Willow St, Portland, OR 97035" +239166,Lightning Charging Cable,1,14.95,08/21/19 13:14,"774 Willow St, San Francisco, CA 94016" +239167,USB-C Charging Cable,3,11.95,08/17/19 17:28,"395 Lincoln St, Dallas, TX 75001" +239168,34in Ultrawide Monitor,1,379.99,08/20/19 13:11,"338 Center St, Atlanta, GA 30301" +239169,USB-C Charging Cable,1,11.95,08/25/19 20:25,"902 Lakeview St, New York City, NY 10001" +239170,AAA Batteries (4-pack),1,2.99,08/06/19 18:48,"139 Dogwood St, New York City, NY 10001" +239171,27in 4K Gaming Monitor,1,389.99,08/20/19 11:05,"883 Willow St, New York City, NY 10001" +239172,Bose SoundSport Headphones,1,99.99,08/27/19 08:44,"96 Hickory St, Los Angeles, CA 90001" +239173,AA Batteries (4-pack),1,3.84,08/07/19 12:40,"756 12th St, New York City, NY 10001" +239174,Lightning Charging Cable,1,14.95,08/26/19 15:02,"225 Johnson St, Boston, MA 02215" +239175,AAA Batteries (4-pack),1,2.99,08/14/19 01:55,"328 Cedar St, Boston, MA 02215" +239176,AAA Batteries (4-pack),1,2.99,08/21/19 13:41,"861 Cedar St, Portland, OR 97035" +239177,ThinkPad Laptop,1,999.99,08/09/19 17:50,"865 Hickory St, San Francisco, CA 94016" +239178,Google Phone,1,600,08/28/19 12:25,"956 14th St, Los Angeles, CA 90001" +239179,27in FHD Monitor,1,149.99,08/17/19 05:59,"416 Lakeview St, Austin, TX 73301" +239180,34in Ultrawide Monitor,1,379.99,08/27/19 10:37,"684 Hickory St, Seattle, WA 98101" +239181,ThinkPad Laptop,1,999.99,08/29/19 11:16,"462 Lake St, San Francisco, CA 94016" +239182,AA Batteries (4-pack),1,3.84,08/29/19 08:58,"634 Main St, New York City, NY 10001" +239183,Wired Headphones,1,11.99,08/17/19 17:47,"44 Lake St, Los Angeles, CA 90001" +239184,Bose SoundSport Headphones,1,99.99,08/14/19 02:19,"739 North St, Atlanta, GA 30301" +239185,Lightning Charging Cable,2,14.95,08/13/19 22:04,"64 Jackson St, Los Angeles, CA 90001" +239186,AA Batteries (4-pack),2,3.84,08/27/19 14:01,"435 South St, San Francisco, CA 94016" +239187,Lightning Charging Cable,1,14.95,08/21/19 13:52,"5 7th St, Austin, TX 73301" +239188,27in 4K Gaming Monitor,2,389.99,08/21/19 19:28,"911 5th St, San Francisco, CA 94016" +239189,34in Ultrawide Monitor,1,379.99,08/16/19 07:40,"815 Hickory St, New York City, NY 10001" +239190,AAA Batteries (4-pack),1,2.99,08/08/19 20:35,"965 Elm St, San Francisco, CA 94016" +239191,USB-C Charging Cable,1,11.95,08/09/19 17:15,"45 Sunset St, Los Angeles, CA 90001" +239192,27in FHD Monitor,1,149.99,08/19/19 17:32,"303 Main St, Austin, TX 73301" +239193,Bose SoundSport Headphones,1,99.99,08/02/19 09:53,"32 River St, San Francisco, CA 94016" +239194,34in Ultrawide Monitor,1,379.99,08/01/19 12:49,"888 Jackson St, San Francisco, CA 94016" +239195,Apple Airpods Headphones,1,150,08/18/19 08:08,"140 Wilson St, Atlanta, GA 30301" +239196,Macbook Pro Laptop,1,1700,08/16/19 13:32,"383 Maple St, Boston, MA 02215" +239197,iPhone,1,700,08/29/19 17:01,"409 Ridge St, San Francisco, CA 94016" +239198,27in 4K Gaming Monitor,1,389.99,08/02/19 19:41,"977 Park St, Seattle, WA 98101" +239199,iPhone,1,700,08/13/19 12:09,"630 8th St, Los Angeles, CA 90001" +239200,Lightning Charging Cable,1,14.95,08/03/19 14:14,"198 13th St, New York City, NY 10001" +239201,Lightning Charging Cable,1,14.95,08/24/19 08:26,"107 7th St, Seattle, WA 98101" +239202,Google Phone,1,600,08/19/19 16:48,"490 Lincoln St, Los Angeles, CA 90001" +239202,Wired Headphones,1,11.99,08/19/19 16:48,"490 Lincoln St, Los Angeles, CA 90001" +239203,Google Phone,1,600,08/16/19 13:25,"345 Maple St, Austin, TX 73301" +239204,AAA Batteries (4-pack),1,2.99,08/31/19 17:39,"616 Main St, Portland, OR 97035" +239205,Apple Airpods Headphones,1,150,08/30/19 14:52,"799 Center St, Boston, MA 02215" +239206,Apple Airpods Headphones,1,150,08/20/19 14:53,"590 Hickory St, Austin, TX 73301" +239207,AAA Batteries (4-pack),2,2.99,08/08/19 16:57,"8 Main St, San Francisco, CA 94016" +239208,AA Batteries (4-pack),2,3.84,08/01/19 07:41,"34 Jefferson St, San Francisco, CA 94016" +239209,Apple Airpods Headphones,1,150,08/26/19 14:25,"430 Park St, San Francisco, CA 94016" +239210,Flatscreen TV,1,300,08/14/19 21:08,"531 Park St, Seattle, WA 98101" +239211,Flatscreen TV,1,300,08/14/19 13:31,"122 Highland St, San Francisco, CA 94016" +239212,Bose SoundSport Headphones,1,99.99,08/03/19 11:41,"647 Center St, Boston, MA 02215" +239213,AA Batteries (4-pack),3,3.84,08/25/19 13:20,"118 Lakeview St, New York City, NY 10001" +239214,Wired Headphones,1,11.99,08/04/19 23:33,"591 Madison St, Los Angeles, CA 90001" +239215,USB-C Charging Cable,1,11.95,08/08/19 17:56,"553 12th St, San Francisco, CA 94016" +239216,Wired Headphones,1,11.99,08/04/19 12:15,"81 Church St, Los Angeles, CA 90001" +239217,AA Batteries (4-pack),1,3.84,08/06/19 15:43,"591 8th St, Seattle, WA 98101" +239218,Google Phone,1,600,08/18/19 01:08,"112 Elm St, San Francisco, CA 94016" +239219,Bose SoundSport Headphones,1,99.99,08/25/19 15:30,"56 Hickory St, Boston, MA 02215" +239220,Apple Airpods Headphones,1,150,08/05/19 11:44,"325 2nd St, Dallas, TX 75001" +239221,USB-C Charging Cable,1,11.95,08/05/19 16:46,"65 Church St, Seattle, WA 98101" +239222,AAA Batteries (4-pack),1,2.99,08/30/19 14:20,"988 Madison St, Los Angeles, CA 90001" +239223,USB-C Charging Cable,2,11.95,08/01/19 10:56,"432 6th St, Seattle, WA 98101" +239224,Lightning Charging Cable,1,14.95,08/25/19 10:29,"167 Chestnut St, Dallas, TX 75001" +239225,Lightning Charging Cable,1,14.95,08/28/19 18:50,"205 Adams St, Austin, TX 73301" +239226,Apple Airpods Headphones,1,150,08/17/19 11:03,"406 Chestnut St, Boston, MA 02215" +239227,AA Batteries (4-pack),1,3.84,08/21/19 17:14,"692 Hickory St, San Francisco, CA 94016" +239228,27in FHD Monitor,1,149.99,08/29/19 19:40,"740 Pine St, New York City, NY 10001" +239229,34in Ultrawide Monitor,1,379.99,08/30/19 10:35,"869 Lakeview St, Los Angeles, CA 90001" +239230,Bose SoundSport Headphones,1,99.99,08/03/19 13:53,"743 Willow St, Los Angeles, CA 90001" +239231,Lightning Charging Cable,1,14.95,08/24/19 09:45,"307 Johnson St, Austin, TX 73301" +239232,27in 4K Gaming Monitor,1,389.99,08/21/19 12:44,"202 Church St, Austin, TX 73301" +239233,Apple Airpods Headphones,1,150,08/08/19 12:12,"498 Park St, New York City, NY 10001" +239234,Apple Airpods Headphones,1,150,08/06/19 14:40,"152 Jefferson St, Los Angeles, CA 90001" +239235,Wired Headphones,1,11.99,08/29/19 10:38,"401 Jackson St, Portland, OR 97035" +239236,USB-C Charging Cable,1,11.95,08/28/19 12:11,"648 Sunset St, Boston, MA 02215" +239237,34in Ultrawide Monitor,1,379.99,08/30/19 16:24,"690 Walnut St, Dallas, TX 75001" +239238,Lightning Charging Cable,2,14.95,08/13/19 19:16,"357 4th St, Seattle, WA 98101" +239239,Lightning Charging Cable,1,14.95,08/24/19 08:24,"555 Spruce St, Seattle, WA 98101" +239240,iPhone,1,700,08/06/19 14:02,"347 1st St, New York City, NY 10001" +239241,Lightning Charging Cable,1,14.95,08/21/19 23:12,"417 Chestnut St, San Francisco, CA 94016" +239241,Apple Airpods Headphones,1,150,08/21/19 23:12,"417 Chestnut St, San Francisco, CA 94016" +239242,AA Batteries (4-pack),1,3.84,08/09/19 08:38,"768 6th St, New York City, NY 10001" +239243,AA Batteries (4-pack),1,3.84,08/03/19 16:18,"5 West St, San Francisco, CA 94016" +239244,USB-C Charging Cable,1,11.95,08/11/19 10:10,"582 Forest St, Los Angeles, CA 90001" +239245,AAA Batteries (4-pack),3,2.99,08/19/19 09:45,"746 Lakeview St, New York City, NY 10001" +239246,Lightning Charging Cable,1,14.95,08/26/19 21:39,"126 7th St, New York City, NY 10001" +239247,Lightning Charging Cable,1,14.95,08/22/19 10:05,"371 Elm St, Los Angeles, CA 90001" +239248,AA Batteries (4-pack),2,3.84,08/22/19 20:21,"715 Hill St, San Francisco, CA 94016" +239249,USB-C Charging Cable,1,11.95,08/02/19 19:26,"667 2nd St, San Francisco, CA 94016" +239250,AA Batteries (4-pack),3,3.84,08/27/19 18:42,"908 Washington St, New York City, NY 10001" +239251,USB-C Charging Cable,1,11.95,08/13/19 23:13,"259 Hickory St, New York City, NY 10001" +239252,USB-C Charging Cable,1,11.95,08/30/19 12:14,"977 Park St, Los Angeles, CA 90001" +239253,Lightning Charging Cable,1,14.95,08/09/19 11:31,"20 Johnson St, Los Angeles, CA 90001" +239254,Bose SoundSport Headphones,1,99.99,08/15/19 09:33,"471 Hill St, New York City, NY 10001" +239255,Flatscreen TV,1,300,08/10/19 12:19,"242 Center St, Seattle, WA 98101" +239256,Lightning Charging Cable,1,14.95,08/30/19 19:36,"535 6th St, Boston, MA 02215" +239257,iPhone,1,700,08/30/19 21:32,"827 10th St, New York City, NY 10001" +239258,Macbook Pro Laptop,1,1700,08/31/19 17:55,"563 Madison St, New York City, NY 10001" +239259,Lightning Charging Cable,2,14.95,08/04/19 14:31,"912 North St, Austin, TX 73301" +239260,Lightning Charging Cable,2,14.95,08/17/19 12:25,"964 9th St, Dallas, TX 75001" +239261,USB-C Charging Cable,1,11.95,08/17/19 03:42,"269 Cherry St, Los Angeles, CA 90001" +239262,34in Ultrawide Monitor,1,379.99,08/11/19 10:50,"877 Ridge St, New York City, NY 10001" +239263,iPhone,1,700,08/27/19 21:10,"589 Willow St, New York City, NY 10001" +239263,Lightning Charging Cable,1,14.95,08/27/19 21:10,"589 Willow St, New York City, NY 10001" +239264,Bose SoundSport Headphones,1,99.99,08/05/19 11:33,"81 10th St, San Francisco, CA 94016" +239265,USB-C Charging Cable,1,11.95,08/17/19 18:06,"590 Johnson St, Austin, TX 73301" +239266,AAA Batteries (4-pack),2,2.99,08/30/19 08:22,"525 Sunset St, Seattle, WA 98101" +239267,34in Ultrawide Monitor,1,379.99,08/22/19 10:15,"718 6th St, Los Angeles, CA 90001" +239268,Macbook Pro Laptop,1,1700,08/20/19 14:07,"27 8th St, San Francisco, CA 94016" +239269,Macbook Pro Laptop,1,1700,08/04/19 11:52,"278 Forest St, Seattle, WA 98101" +239270,Apple Airpods Headphones,1,150,08/09/19 16:26,"726 11th St, San Francisco, CA 94016" +239271,AAA Batteries (4-pack),1,2.99,08/25/19 01:59,"126 River St, San Francisco, CA 94016" +239272,ThinkPad Laptop,1,999.99,08/09/19 14:35,"860 Ridge St, Austin, TX 73301" +239273,Google Phone,1,600,08/10/19 18:13,"379 Hickory St, Los Angeles, CA 90001" +239273,USB-C Charging Cable,1,11.95,08/10/19 18:13,"379 Hickory St, Los Angeles, CA 90001" +239274,Bose SoundSport Headphones,1,99.99,08/24/19 15:55,"319 River St, Dallas, TX 75001" +239275,USB-C Charging Cable,1,11.95,08/06/19 16:56,"230 Lake St, San Francisco, CA 94016" +239276,AA Batteries (4-pack),1,3.84,08/04/19 17:48,"959 Maple St, Los Angeles, CA 90001" +239277,AAA Batteries (4-pack),1,2.99,08/05/19 08:39,"183 Madison St, San Francisco, CA 94016" +239278,Lightning Charging Cable,1,14.95,08/09/19 00:06,"431 Jackson St, Los Angeles, CA 90001" +239279,20in Monitor,1,109.99,08/08/19 12:42,"295 West St, San Francisco, CA 94016" +239280,AA Batteries (4-pack),1,3.84,08/27/19 18:08,"38 Spruce St, San Francisco, CA 94016" +239281,34in Ultrawide Monitor,1,379.99,08/17/19 21:36,"78 Spruce St, Boston, MA 02215" +239282,27in 4K Gaming Monitor,1,389.99,08/18/19 12:00,"315 Hickory St, Seattle, WA 98101" +239283,AAA Batteries (4-pack),2,2.99,08/27/19 17:40,"943 Lakeview St, Dallas, TX 75001" +239284,Apple Airpods Headphones,1,150,08/17/19 14:09,"631 Hill St, Los Angeles, CA 90001" +239285,27in FHD Monitor,1,149.99,08/11/19 17:20,"159 Main St, Atlanta, GA 30301" +239286,AA Batteries (4-pack),1,3.84,08/12/19 20:58,"890 Highland St, Portland, OR 97035" +239287,AA Batteries (4-pack),1,3.84,08/08/19 10:59,"810 Park St, Austin, TX 73301" +239288,27in FHD Monitor,1,149.99,08/14/19 12:41,"794 Church St, San Francisco, CA 94016" +239289,Vareebadd Phone,1,400,08/31/19 12:56,"194 12th St, San Francisco, CA 94016" +239290,Flatscreen TV,1,300,08/18/19 15:53,"787 Willow St, Dallas, TX 75001" +239291,ThinkPad Laptop,1,999.99,08/02/19 11:14,"285 North St, Seattle, WA 98101" +239292,Wired Headphones,1,11.99,08/14/19 22:17,"733 Forest St, Boston, MA 02215" +239293,Lightning Charging Cable,1,14.95,08/24/19 19:36,"999 Highland St, San Francisco, CA 94016" +239294,USB-C Charging Cable,3,11.95,08/11/19 00:38,"238 6th St, San Francisco, CA 94016" +239295,USB-C Charging Cable,1,11.95,08/15/19 15:21,"522 10th St, San Francisco, CA 94016" +239296,Flatscreen TV,1,300,08/19/19 22:15,"667 Park St, Los Angeles, CA 90001" +239297,Lightning Charging Cable,2,14.95,08/13/19 13:00,"971 North St, Seattle, WA 98101" +239298,Bose SoundSport Headphones,1,99.99,08/29/19 04:56,"714 Adams St, Los Angeles, CA 90001" +239299,ThinkPad Laptop,1,999.99,08/11/19 10:35,"306 Wilson St, Los Angeles, CA 90001" +239300,Flatscreen TV,1,300,08/16/19 23:14,"50 River St, Boston, MA 02215" +239301,LG Dryer,1,600.0,08/12/19 17:39,"571 Church St, Portland, OR 97035" +239302,AA Batteries (4-pack),1,3.84,08/01/19 20:29,"817 7th St, New York City, NY 10001" +239303,Macbook Pro Laptop,1,1700,08/01/19 08:17,"441 Washington St, Seattle, WA 98101" +239304,Apple Airpods Headphones,1,150,08/19/19 20:45,"421 Washington St, Boston, MA 02215" +239305,Apple Airpods Headphones,1,150,08/19/19 16:39,"551 12th St, Seattle, WA 98101" +239306,AA Batteries (4-pack),2,3.84,08/20/19 00:57,"715 Forest St, New York City, NY 10001" +239307,Wired Headphones,1,11.99,08/30/19 19:30,"628 Meadow St, Portland, OR 97035" +239307,34in Ultrawide Monitor,1,379.99,08/30/19 19:30,"628 Meadow St, Portland, OR 97035" +239308,AAA Batteries (4-pack),2,2.99,08/03/19 20:40,"292 Jackson St, New York City, NY 10001" +239309,Lightning Charging Cable,1,14.95,08/11/19 18:21,"937 Adams St, Atlanta, GA 30301" +239310,Wired Headphones,1,11.99,08/22/19 01:15,"790 Elm St, Boston, MA 02215" +239311,Wired Headphones,1,11.99,08/20/19 21:59,"766 Spruce St, Atlanta, GA 30301" +239312,34in Ultrawide Monitor,1,379.99,08/06/19 15:30,"48 6th St, New York City, NY 10001" +239313,Apple Airpods Headphones,1,150,08/16/19 02:25,"97 Pine St, Boston, MA 02215" +239314,Bose SoundSport Headphones,1,99.99,08/15/19 20:13,"54 5th St, Portland, OR 97035" +239315,AAA Batteries (4-pack),1,2.99,08/11/19 14:32,"105 Spruce St, Seattle, WA 98101" +239316,AA Batteries (4-pack),1,3.84,08/30/19 18:58,"511 Elm St, San Francisco, CA 94016" +239317,34in Ultrawide Monitor,1,379.99,08/28/19 13:03,"303 River St, Portland, OR 97035" +239318,AA Batteries (4-pack),2,3.84,08/11/19 18:15,"521 Adams St, Portland, ME 04101" +239319,Bose SoundSport Headphones,1,99.99,08/04/19 23:26,"661 North St, San Francisco, CA 94016" +239320,Wired Headphones,1,11.99,08/16/19 17:53,"960 Jackson St, Los Angeles, CA 90001" +239321,Bose SoundSport Headphones,1,99.99,08/17/19 12:34,"70 Spruce St, Boston, MA 02215" +239322,20in Monitor,1,109.99,08/19/19 20:03,"479 Spruce St, San Francisco, CA 94016" +239323,AAA Batteries (4-pack),1,2.99,08/29/19 22:42,"318 Johnson St, San Francisco, CA 94016" +239324,LG Washing Machine,1,600.0,08/10/19 02:55,"513 Lakeview St, San Francisco, CA 94016" +239325,Macbook Pro Laptop,1,1700,08/16/19 22:32,"221 Lincoln St, San Francisco, CA 94016" +239326,USB-C Charging Cable,1,11.95,08/06/19 22:09,"709 Wilson St, San Francisco, CA 94016" +239327,Flatscreen TV,1,300,08/06/19 20:55,"789 11th St, Los Angeles, CA 90001" +239328,Macbook Pro Laptop,1,1700,08/03/19 18:47,"352 Lakeview St, Los Angeles, CA 90001" +239329,Wired Headphones,1,11.99,08/21/19 19:48,"418 Jefferson St, New York City, NY 10001" +239330,Wired Headphones,1,11.99,08/26/19 19:34,"248 Adams St, Atlanta, GA 30301" +239331,27in FHD Monitor,1,149.99,08/01/19 21:09,"542 6th St, Los Angeles, CA 90001" +239332,AAA Batteries (4-pack),2,2.99,08/16/19 17:30,"536 2nd St, Dallas, TX 75001" +239333,Lightning Charging Cable,1,14.95,08/06/19 21:02,"20 12th St, Seattle, WA 98101" +239334,Wired Headphones,1,11.99,08/29/19 21:17,"592 South St, Dallas, TX 75001" +239335,AAA Batteries (4-pack),1,2.99,08/20/19 13:47,"766 12th St, Seattle, WA 98101" +239336,Flatscreen TV,1,300,08/20/19 23:41,"784 7th St, Dallas, TX 75001" +239337,Wired Headphones,1,11.99,08/30/19 12:15,"848 Wilson St, Austin, TX 73301" +239338,Wired Headphones,1,11.99,08/24/19 21:55,"28 13th St, San Francisco, CA 94016" +239339,27in FHD Monitor,1,149.99,08/14/19 11:38,"928 Meadow St, New York City, NY 10001" +239340,Flatscreen TV,1,300,08/10/19 19:39,"164 9th St, Seattle, WA 98101" +239341,27in FHD Monitor,1,149.99,08/16/19 13:30,"745 6th St, San Francisco, CA 94016" +239342,27in FHD Monitor,1,149.99,08/04/19 12:12,"773 Johnson St, Los Angeles, CA 90001" +239343,Wired Headphones,2,11.99,08/29/19 19:21,"797 Meadow St, Boston, MA 02215" +239344,AA Batteries (4-pack),1,3.84,08/24/19 10:21,"9 8th St, Los Angeles, CA 90001" +239345,Apple Airpods Headphones,1,150,08/14/19 17:41,"680 Lincoln St, Los Angeles, CA 90001" +239346,LG Dryer,1,600.0,08/17/19 20:50,"152 9th St, Los Angeles, CA 90001" +239347,AA Batteries (4-pack),3,3.84,08/14/19 17:33,"398 Sunset St, Atlanta, GA 30301" +239348,34in Ultrawide Monitor,1,379.99,08/10/19 00:02,"608 2nd St, Portland, OR 97035" +239349,USB-C Charging Cable,1,11.95,08/22/19 21:34,"485 Madison St, New York City, NY 10001" +239350,Bose SoundSport Headphones,1,99.99,08/17/19 12:06,"535 Jefferson St, Portland, OR 97035" +239350,USB-C Charging Cable,1,11.95,08/17/19 12:06,"535 Jefferson St, Portland, OR 97035" +239351,27in FHD Monitor,1,149.99,08/25/19 14:29,"661 North St, Los Angeles, CA 90001" +239352,USB-C Charging Cable,1,11.95,08/04/19 20:52,"817 9th St, Austin, TX 73301" +239353,Lightning Charging Cable,1,14.95,08/25/19 20:58,"636 2nd St, Los Angeles, CA 90001" +239354,Lightning Charging Cable,1,14.95,08/30/19 12:11,"844 14th St, Austin, TX 73301" +239355,Apple Airpods Headphones,1,150,08/08/19 14:46,"16 Elm St, Boston, MA 02215" +239356,AAA Batteries (4-pack),1,2.99,08/30/19 11:30,"782 12th St, San Francisco, CA 94016" +239357,Lightning Charging Cable,1,14.95,08/01/19 16:35,"205 Lakeview St, Los Angeles, CA 90001" +239358,USB-C Charging Cable,1,11.95,08/13/19 13:29,"135 Chestnut St, Portland, OR 97035" +239359,Apple Airpods Headphones,1,150,08/13/19 06:07,"527 Walnut St, San Francisco, CA 94016" +239360,AA Batteries (4-pack),1,3.84,08/28/19 09:46,"678 Pine St, Dallas, TX 75001" +239361,iPhone,1,700,08/13/19 16:42,"441 12th St, San Francisco, CA 94016" +239362,AA Batteries (4-pack),1,3.84,08/03/19 22:03,"577 Ridge St, Portland, OR 97035" +239363,ThinkPad Laptop,1,999.99,08/24/19 21:43,"584 6th St, Los Angeles, CA 90001" +239364,iPhone,1,700,08/02/19 22:20,"445 7th St, Portland, OR 97035" +239365,34in Ultrawide Monitor,1,379.99,08/26/19 19:54,"565 Forest St, Boston, MA 02215" +239366,AAA Batteries (4-pack),2,2.99,08/03/19 14:53,"332 Cherry St, Dallas, TX 75001" +239367,AAA Batteries (4-pack),1,2.99,08/13/19 20:10,"338 4th St, Austin, TX 73301" +239368,iPhone,1,700,08/28/19 22:03,"6 Hickory St, Dallas, TX 75001" +239369,Vareebadd Phone,1,400,08/20/19 20:37,"268 1st St, Dallas, TX 75001" +239370,ThinkPad Laptop,1,999.99,08/25/19 11:15,"404 Jefferson St, San Francisco, CA 94016" +239371,Lightning Charging Cable,1,14.95,08/19/19 07:08,"183 13th St, Los Angeles, CA 90001" +239372,iPhone,1,700,08/19/19 11:40,"906 Main St, Austin, TX 73301" +239373,AA Batteries (4-pack),2,3.84,08/03/19 18:30,"326 Church St, San Francisco, CA 94016" +239374,Apple Airpods Headphones,1,150,08/26/19 18:33,"295 Johnson St, Los Angeles, CA 90001" +239375,iPhone,1,700,08/12/19 09:15,"715 Lake St, Austin, TX 73301" +239376,USB-C Charging Cable,1,11.95,08/10/19 21:20,"660 6th St, Dallas, TX 75001" +239377,27in FHD Monitor,1,149.99,08/08/19 18:13,"985 South St, Austin, TX 73301" +239378,34in Ultrawide Monitor,1,379.99,08/29/19 23:25,"339 Forest St, Los Angeles, CA 90001" +239379,USB-C Charging Cable,1,11.95,08/17/19 10:54,"209 Maple St, Portland, OR 97035" +239380,USB-C Charging Cable,1,11.95,08/22/19 12:47,"762 South St, San Francisco, CA 94016" +239381,AAA Batteries (4-pack),1,2.99,08/16/19 23:34,"329 Adams St, New York City, NY 10001" +239382,Lightning Charging Cable,1,14.95,08/21/19 23:40,"278 7th St, San Francisco, CA 94016" +239383,Apple Airpods Headphones,1,150,08/01/19 14:55,"618 Highland St, Portland, OR 97035" +239384,Lightning Charging Cable,1,14.95,08/09/19 11:07,"568 Lincoln St, San Francisco, CA 94016" +239385,ThinkPad Laptop,1,999.99,08/25/19 17:13,"4 Jefferson St, Austin, TX 73301" +239386,Macbook Pro Laptop,1,1700,08/30/19 08:09,"922 Hill St, Los Angeles, CA 90001" +239387,AAA Batteries (4-pack),3,2.99,08/18/19 19:53,"678 5th St, New York City, NY 10001" +239388,20in Monitor,1,109.99,08/15/19 19:44,"877 Maple St, Atlanta, GA 30301" +239389,Bose SoundSport Headphones,1,99.99,08/24/19 10:18,"526 Adams St, San Francisco, CA 94016" +239390,Macbook Pro Laptop,1,1700,08/09/19 21:16,"424 Wilson St, Dallas, TX 75001" +239391,USB-C Charging Cable,1,11.95,08/02/19 18:41,"940 Center St, Los Angeles, CA 90001" +239392,iPhone,1,700,08/27/19 22:36,"301 Cherry St, San Francisco, CA 94016" +239393,Macbook Pro Laptop,1,1700,08/05/19 09:18,"766 1st St, Los Angeles, CA 90001" +239394,Flatscreen TV,1,300,08/25/19 21:43,"451 Ridge St, San Francisco, CA 94016" +239395,AAA Batteries (4-pack),1,2.99,08/16/19 19:34,"109 Forest St, New York City, NY 10001" +239396,Wired Headphones,1,11.99,08/06/19 18:26,"283 Washington St, Atlanta, GA 30301" +239397,Google Phone,1,600,08/20/19 10:40,"795 13th St, Atlanta, GA 30301" +239398,Vareebadd Phone,1,400,08/05/19 10:01,"942 West St, San Francisco, CA 94016" +239399,AAA Batteries (4-pack),3,2.99,08/31/19 06:53,"234 Hill St, San Francisco, CA 94016" +239400,Vareebadd Phone,1,400,08/11/19 16:04,"379 Wilson St, Dallas, TX 75001" +239401,20in Monitor,1,109.99,08/13/19 18:11,"627 Meadow St, Atlanta, GA 30301" +239402,27in FHD Monitor,1,149.99,08/21/19 08:28,"883 Park St, San Francisco, CA 94016" +239403,Apple Airpods Headphones,1,150,08/26/19 13:09,"711 10th St, San Francisco, CA 94016" +239404,AAA Batteries (4-pack),1,2.99,08/20/19 17:31,"743 10th St, San Francisco, CA 94016" +239405,USB-C Charging Cable,1,11.95,08/20/19 07:58,"617 Adams St, Austin, TX 73301" +239406,Wired Headphones,1,11.99,08/25/19 13:31,"233 Highland St, Dallas, TX 75001" +239407,Macbook Pro Laptop,1,1700,08/11/19 00:06,"468 12th St, Los Angeles, CA 90001" +239408,iPhone,1,700,08/21/19 11:33,"55 Cedar St, Boston, MA 02215" +239408,Lightning Charging Cable,1,14.95,08/21/19 11:33,"55 Cedar St, Boston, MA 02215" +239409,Bose SoundSport Headphones,1,99.99,08/29/19 13:40,"197 Chestnut St, San Francisco, CA 94016" +239410,34in Ultrawide Monitor,1,379.99,08/12/19 20:03,"433 12th St, Boston, MA 02215" +239411,Lightning Charging Cable,1,14.95,08/31/19 04:33,"532 Meadow St, Dallas, TX 75001" +239412,USB-C Charging Cable,1,11.95,08/20/19 08:24,"157 Johnson St, Boston, MA 02215" +239413,Wired Headphones,1,11.99,08/01/19 08:47,"381 Madison St, New York City, NY 10001" +239414,20in Monitor,1,109.99,08/04/19 10:10,"237 Spruce St, San Francisco, CA 94016" +239415,Flatscreen TV,1,300,08/05/19 09:05,"548 Lake St, Los Angeles, CA 90001" +239416,AAA Batteries (4-pack),2,2.99,08/11/19 10:28,"426 Jefferson St, Dallas, TX 75001" +239417,Bose SoundSport Headphones,2,99.99,08/01/19 13:33,"553 North St, Boston, MA 02215" +239418,Vareebadd Phone,1,400,08/10/19 10:42,"811 Maple St, New York City, NY 10001" +239419,Wired Headphones,1,11.99,08/27/19 09:57,"654 North St, Austin, TX 73301" +239420,USB-C Charging Cable,1,11.95,08/06/19 16:43,"870 Ridge St, San Francisco, CA 94016" +239421,Bose SoundSport Headphones,1,99.99,08/16/19 20:25,"88 Park St, Los Angeles, CA 90001" +239422,Wired Headphones,1,11.99,08/21/19 15:47,"71 11th St, Los Angeles, CA 90001" +239423,Wired Headphones,1,11.99,08/09/19 20:30,"188 Lincoln St, Boston, MA 02215" +239424,Macbook Pro Laptop,1,1700,08/15/19 00:06,"711 South St, Los Angeles, CA 90001" +239425,Vareebadd Phone,1,400,08/10/19 12:10,"5 Dogwood St, Atlanta, GA 30301" +239426,27in FHD Monitor,1,149.99,08/29/19 10:41,"297 Park St, New York City, NY 10001" +239427,iPhone,1,700,08/27/19 03:05,"593 Lincoln St, Los Angeles, CA 90001" +239428,AAA Batteries (4-pack),2,2.99,08/05/19 12:59,"444 12th St, New York City, NY 10001" +239429,Wired Headphones,1,11.99,08/27/19 11:53,"87 Dogwood St, Los Angeles, CA 90001" +239430,USB-C Charging Cable,1,11.95,08/05/19 21:29,"716 13th St, San Francisco, CA 94016" +239431,27in FHD Monitor,1,149.99,08/05/19 17:23,"6 Madison St, New York City, NY 10001" +239432,27in 4K Gaming Monitor,1,389.99,08/20/19 10:57,"993 Lincoln St, Los Angeles, CA 90001" +239433,USB-C Charging Cable,1,11.95,08/09/19 23:28,"683 5th St, Portland, OR 97035" +239434,Macbook Pro Laptop,1,1700,08/17/19 21:55,"678 Dogwood St, Dallas, TX 75001" +239435,Flatscreen TV,1,300,08/09/19 23:14,"480 Church St, Seattle, WA 98101" +239435,AA Batteries (4-pack),1,3.84,08/09/19 23:14,"480 Church St, Seattle, WA 98101" +239436,Wired Headphones,1,11.99,08/27/19 10:01,"396 Hickory St, Dallas, TX 75001" +239437,AAA Batteries (4-pack),3,2.99,08/25/19 11:18,"607 Center St, San Francisco, CA 94016" +239438,Google Phone,1,600,08/23/19 18:54,"758 Church St, San Francisco, CA 94016" +239439,iPhone,1,700,08/07/19 13:54,"600 Center St, San Francisco, CA 94016" +239440,AAA Batteries (4-pack),1,2.99,08/29/19 15:34,"775 10th St, Atlanta, GA 30301" +239441,AAA Batteries (4-pack),3,2.99,08/10/19 13:44,"254 Willow St, New York City, NY 10001" +239442,ThinkPad Laptop,1,999.99,08/22/19 12:42,"226 Sunset St, Los Angeles, CA 90001" +239443,USB-C Charging Cable,1,11.95,08/18/19 10:09,"835 Hickory St, San Francisco, CA 94016" +239444,iPhone,1,700,08/13/19 21:54,"578 14th St, Portland, OR 97035" +239445,Wired Headphones,1,11.99,08/13/19 13:21,"392 Hill St, New York City, NY 10001" +239446,Google Phone,1,600,08/16/19 17:21,"294 Madison St, San Francisco, CA 94016" +239446,Wired Headphones,1,11.99,08/16/19 17:21,"294 Madison St, San Francisco, CA 94016" +239446,LG Dryer,1,600.0,08/16/19 17:21,"294 Madison St, San Francisco, CA 94016" +239447,USB-C Charging Cable,1,11.95,08/19/19 15:28,"346 Ridge St, Portland, OR 97035" +239448,USB-C Charging Cable,1,11.95,08/05/19 10:00,"570 9th St, San Francisco, CA 94016" +239449,AAA Batteries (4-pack),1,2.99,08/02/19 18:01,"67 Cedar St, Seattle, WA 98101" +239450,Bose SoundSport Headphones,1,99.99,08/02/19 10:06,"548 Madison St, Seattle, WA 98101" +239451,34in Ultrawide Monitor,1,379.99,08/09/19 15:19,"585 Elm St, New York City, NY 10001" +239452,Lightning Charging Cable,1,14.95,08/13/19 15:53,"32 Madison St, Dallas, TX 75001" +239453,USB-C Charging Cable,2,11.95,08/28/19 14:50,"552 Cherry St, Los Angeles, CA 90001" +239454,Google Phone,1,600,08/28/19 14:29,"243 Hickory St, San Francisco, CA 94016" +239455,Lightning Charging Cable,1,14.95,08/27/19 09:39,"848 11th St, New York City, NY 10001" +239456,USB-C Charging Cable,1,11.95,08/24/19 16:00,"50 Sunset St, Austin, TX 73301" +239457,USB-C Charging Cable,1,11.95,08/12/19 11:34,"819 Hickory St, Los Angeles, CA 90001" +239458,Lightning Charging Cable,1,14.95,08/02/19 10:22,"763 Willow St, New York City, NY 10001" +239459,AA Batteries (4-pack),1,3.84,08/19/19 14:09,"640 Johnson St, Austin, TX 73301" +239460,Bose SoundSport Headphones,1,99.99,08/27/19 07:40,"96 9th St, Seattle, WA 98101" +239461,AA Batteries (4-pack),1,3.84,08/23/19 13:33,"788 Willow St, Los Angeles, CA 90001" +239462,USB-C Charging Cable,2,11.95,08/16/19 10:13,"608 4th St, San Francisco, CA 94016" +239463,Macbook Pro Laptop,1,1700,08/28/19 23:43,"411 Chestnut St, Austin, TX 73301" +239463,iPhone,1,700,08/28/19 23:43,"411 Chestnut St, Austin, TX 73301" +239464,AAA Batteries (4-pack),2,2.99,08/22/19 11:23,"701 14th St, San Francisco, CA 94016" +239465,USB-C Charging Cable,1,11.95,08/17/19 07:54,"465 4th St, San Francisco, CA 94016" +239466,Apple Airpods Headphones,1,150,08/30/19 13:43,"641 Hill St, Boston, MA 02215" +239467,iPhone,1,700,08/03/19 14:51,"56 River St, Los Angeles, CA 90001" +239468,AAA Batteries (4-pack),1,2.99,08/27/19 12:54,"646 14th St, New York City, NY 10001" +239469,iPhone,1,700,08/04/19 14:05,"856 Hill St, New York City, NY 10001" +239469,iPhone,1,700,08/04/19 14:05,"856 Hill St, New York City, NY 10001" +239470,AA Batteries (4-pack),1,3.84,08/06/19 14:27,"827 6th St, San Francisco, CA 94016" +239471,20in Monitor,1,109.99,08/23/19 08:26,"635 Jefferson St, Boston, MA 02215" +239472,AA Batteries (4-pack),1,3.84,08/21/19 18:31,"105 Wilson St, New York City, NY 10001" +239473,ThinkPad Laptop,1,999.99,08/12/19 16:52,"490 North St, Los Angeles, CA 90001" +239474,ThinkPad Laptop,1,999.99,08/11/19 11:55,"985 9th St, Los Angeles, CA 90001" +239475,Lightning Charging Cable,1,14.95,08/21/19 22:11,"881 Walnut St, Los Angeles, CA 90001" +239476,USB-C Charging Cable,1,11.95,08/31/19 18:57,"624 Lakeview St, Los Angeles, CA 90001" +239477,AA Batteries (4-pack),1,3.84,08/05/19 17:27,"694 1st St, Atlanta, GA 30301" +239478,Apple Airpods Headphones,1,150,08/24/19 07:48,"184 Johnson St, Boston, MA 02215" +239479,Flatscreen TV,1,300,08/24/19 14:18,"847 Highland St, Austin, TX 73301" +239480,iPhone,1,700,08/27/19 12:30,"179 Park St, New York City, NY 10001" +239481,Lightning Charging Cable,1,14.95,08/25/19 20:11,"407 North St, San Francisco, CA 94016" +239482,20in Monitor,1,109.99,08/11/19 21:41,"374 6th St, Seattle, WA 98101" +239483,27in FHD Monitor,1,149.99,08/04/19 10:34,"857 Cedar St, Atlanta, GA 30301" +239483,Wired Headphones,1,11.99,08/04/19 10:34,"857 Cedar St, Atlanta, GA 30301" +239484,Vareebadd Phone,1,400,08/17/19 11:42,"222 5th St, San Francisco, CA 94016" +239485,20in Monitor,1,109.99,08/20/19 16:58,"431 Jefferson St, San Francisco, CA 94016" +239486,27in FHD Monitor,1,149.99,08/19/19 21:02,"365 Lakeview St, Dallas, TX 75001" +239487,27in FHD Monitor,1,149.99,08/18/19 16:21,"26 South St, Seattle, WA 98101" +239488,Bose SoundSport Headphones,1,99.99,08/22/19 10:49,"971 Ridge St, Atlanta, GA 30301" +239489,27in FHD Monitor,1,149.99,08/21/19 06:48,"735 South St, San Francisco, CA 94016" +239490,Bose SoundSport Headphones,1,99.99,08/14/19 14:30,"187 5th St, Portland, OR 97035" +239491,Lightning Charging Cable,1,14.95,08/22/19 17:43,"540 Spruce St, Portland, ME 04101" +239492,AA Batteries (4-pack),2,3.84,08/02/19 22:22,"202 South St, Portland, OR 97035" +239493,Wired Headphones,1,11.99,08/08/19 19:33,"470 Church St, Atlanta, GA 30301" +239494,Apple Airpods Headphones,1,150,08/09/19 17:22,"954 Park St, San Francisco, CA 94016" +239495,iPhone,1,700,08/16/19 11:56,"593 Center St, Boston, MA 02215" +239496,AAA Batteries (4-pack),2,2.99,08/24/19 15:27,"505 2nd St, San Francisco, CA 94016" +239497,Lightning Charging Cable,1,14.95,08/27/19 18:15,"862 Chestnut St, Boston, MA 02215" +239498,Lightning Charging Cable,1,14.95,08/17/19 21:00,"503 Madison St, Portland, OR 97035" +239499,AAA Batteries (4-pack),1,2.99,08/23/19 01:14,"985 12th St, New York City, NY 10001" +239500,Lightning Charging Cable,2,14.95,08/27/19 22:20,"93 Willow St, Atlanta, GA 30301" +239501,Apple Airpods Headphones,1,150,08/15/19 10:13,"725 River St, New York City, NY 10001" +239502,Apple Airpods Headphones,1,150,08/18/19 17:16,"595 West St, Seattle, WA 98101" +239503,Bose SoundSport Headphones,1,99.99,08/11/19 18:20,"826 North St, Los Angeles, CA 90001" +239504,34in Ultrawide Monitor,1,379.99,08/17/19 18:20,"944 4th St, Portland, OR 97035" +239505,AAA Batteries (4-pack),2,2.99,08/19/19 17:08,"617 Madison St, San Francisco, CA 94016" +239506,Flatscreen TV,1,300,08/09/19 12:22,"526 12th St, Seattle, WA 98101" +239507,Lightning Charging Cable,1,14.95,08/18/19 18:37,"285 1st St, Boston, MA 02215" +239508,Google Phone,1,600,08/20/19 12:04,"526 13th St, Atlanta, GA 30301" +239509,USB-C Charging Cable,1,11.95,08/05/19 18:11,"521 Spruce St, Atlanta, GA 30301" +239510,USB-C Charging Cable,1,11.95,08/02/19 11:54,"520 7th St, New York City, NY 10001" +239511,27in FHD Monitor,1,149.99,08/11/19 15:17,"898 Pine St, Seattle, WA 98101" +239512,AAA Batteries (4-pack),4,2.99,08/13/19 13:04,"538 Lake St, Seattle, WA 98101" +239513,AAA Batteries (4-pack),1,2.99,08/12/19 13:57,"177 Sunset St, Austin, TX 73301" +239514,Flatscreen TV,1,300,08/03/19 12:54,"713 13th St, New York City, NY 10001" +239515,AA Batteries (4-pack),1,3.84,08/18/19 08:26,"457 West St, Boston, MA 02215" +239516,27in FHD Monitor,1,149.99,08/25/19 22:55,"359 5th St, Boston, MA 02215" +239517,USB-C Charging Cable,1,11.95,08/03/19 12:39,"869 Forest St, Portland, OR 97035" +239518,AA Batteries (4-pack),1,3.84,08/05/19 12:25,"673 Center St, Boston, MA 02215" +239519,27in FHD Monitor,1,149.99,08/20/19 14:20,"182 Meadow St, Los Angeles, CA 90001" +239520,Apple Airpods Headphones,1,150,08/07/19 13:55,"116 Johnson St, Atlanta, GA 30301" +239520,USB-C Charging Cable,1,11.95,08/07/19 13:55,"116 Johnson St, Atlanta, GA 30301" +239521,AA Batteries (4-pack),2,3.84,08/29/19 15:07,"893 Jackson St, San Francisco, CA 94016" +239522,Google Phone,1,600,08/06/19 22:58,"875 Cedar St, San Francisco, CA 94016" +239523,Flatscreen TV,1,300,08/12/19 12:07,"355 Meadow St, San Francisco, CA 94016" +239524,AAA Batteries (4-pack),1,2.99,08/26/19 17:40,"579 Park St, Atlanta, GA 30301" +239525,Lightning Charging Cable,1,14.95,08/10/19 00:11,"828 9th St, San Francisco, CA 94016" +239525,Apple Airpods Headphones,1,150,08/10/19 00:11,"828 9th St, San Francisco, CA 94016" +239526,Wired Headphones,1,11.99,08/24/19 18:38,"632 Cedar St, Dallas, TX 75001" +239527,Lightning Charging Cable,1,14.95,08/29/19 10:05,"463 Johnson St, San Francisco, CA 94016" +239528,Wired Headphones,1,11.99,08/23/19 18:35,"932 Lake St, New York City, NY 10001" +239529,Apple Airpods Headphones,1,150,08/30/19 08:46,"92 Willow St, San Francisco, CA 94016" +239530,AAA Batteries (4-pack),1,2.99,08/22/19 23:25,"100 Pine St, Atlanta, GA 30301" +239531,Flatscreen TV,1,300,08/09/19 18:19,"418 Spruce St, New York City, NY 10001" +239532,Bose SoundSport Headphones,1,99.99,08/29/19 12:11,"251 4th St, New York City, NY 10001" +239533,USB-C Charging Cable,1,11.95,08/05/19 19:59,"827 Highland St, Boston, MA 02215" +239534,iPhone,1,700,08/01/19 13:31,"953 Cedar St, Dallas, TX 75001" +239535,Apple Airpods Headphones,1,150,08/28/19 20:02,"132 River St, Dallas, TX 75001" +239536,Google Phone,1,600,08/11/19 09:33,"791 Washington St, Boston, MA 02215" +239537,Apple Airpods Headphones,1,150,08/28/19 04:38,"939 River St, New York City, NY 10001" +239538,34in Ultrawide Monitor,1,379.99,08/25/19 19:05,"516 Cedar St, Boston, MA 02215" +239539,Macbook Pro Laptop,1,1700,08/03/19 10:09,"218 Lincoln St, San Francisco, CA 94016" +239540,iPhone,1,700,08/25/19 19:55,"828 Hickory St, San Francisco, CA 94016" +239541,Lightning Charging Cable,2,14.95,08/10/19 21:29,"479 Forest St, Los Angeles, CA 90001" +239542,AAA Batteries (4-pack),1,2.99,08/10/19 21:04,"53 14th St, San Francisco, CA 94016" +239543,AAA Batteries (4-pack),1,2.99,08/31/19 13:37,"161 Elm St, Boston, MA 02215" +239544,AA Batteries (4-pack),2,3.84,08/20/19 17:33,"480 Cherry St, Los Angeles, CA 90001" +239545,AAA Batteries (4-pack),2,2.99,08/18/19 13:22,"188 Jefferson St, Los Angeles, CA 90001" +239546,Lightning Charging Cable,1,14.95,08/26/19 19:35,"600 Hickory St, Los Angeles, CA 90001" +239547,AA Batteries (4-pack),1,3.84,08/30/19 11:09,"116 Jefferson St, New York City, NY 10001" +239548,Wired Headphones,1,11.99,08/22/19 08:10,"741 Cedar St, New York City, NY 10001" +239549,Macbook Pro Laptop,1,1700,08/06/19 11:43,"142 2nd St, Seattle, WA 98101" +239550,Wired Headphones,1,11.99,08/24/19 18:47,"107 10th St, Austin, TX 73301" +239551,27in 4K Gaming Monitor,1,389.99,08/18/19 17:52,"427 Jefferson St, Austin, TX 73301" +239552,27in 4K Gaming Monitor,1,389.99,08/05/19 15:00,"844 Forest St, Los Angeles, CA 90001" +239553,Lightning Charging Cable,1,14.95,08/23/19 20:15,"940 11th St, Dallas, TX 75001" +239554,34in Ultrawide Monitor,1,379.99,08/02/19 09:40,"638 9th St, Los Angeles, CA 90001" +239555,USB-C Charging Cable,1,11.95,08/26/19 12:15,"686 11th St, New York City, NY 10001" +239556,Flatscreen TV,1,300,08/15/19 15:50,"501 Main St, Boston, MA 02215" +239557,iPhone,1,700,08/09/19 01:36,"349 Cedar St, Austin, TX 73301" +239558,Bose SoundSport Headphones,1,99.99,08/13/19 22:57,"548 8th St, Los Angeles, CA 90001" +239559,27in 4K Gaming Monitor,1,389.99,08/20/19 11:29,"614 Jefferson St, Los Angeles, CA 90001" +239560,Lightning Charging Cable,1,14.95,08/08/19 19:54,"808 Lincoln St, Boston, MA 02215" +239561,Lightning Charging Cable,1,14.95,08/05/19 19:13,"5 Washington St, Boston, MA 02215" +239562,USB-C Charging Cable,1,11.95,08/02/19 20:24,"672 Hill St, San Francisco, CA 94016" +239563,Bose SoundSport Headphones,1,99.99,08/04/19 10:01,"240 Maple St, Portland, OR 97035" +239564,27in FHD Monitor,1,149.99,08/29/19 13:04,"659 6th St, Atlanta, GA 30301" +239565,Bose SoundSport Headphones,1,99.99,08/16/19 22:09,"516 Lincoln St, Dallas, TX 75001" +239566,Apple Airpods Headphones,1,150,08/19/19 18:47,"722 Cedar St, Atlanta, GA 30301" +239567,27in FHD Monitor,1,149.99,08/12/19 10:39,"482 Park St, Atlanta, GA 30301" +239568,USB-C Charging Cable,1,11.95,08/29/19 11:26,"59 Spruce St, San Francisco, CA 94016" +239569,Apple Airpods Headphones,1,150,08/21/19 13:41,"916 2nd St, Atlanta, GA 30301" +239570,ThinkPad Laptop,1,999.99,08/11/19 20:03,"995 Lakeview St, Portland, ME 04101" +239571,AAA Batteries (4-pack),2,2.99,08/23/19 03:58,"101 Lincoln St, San Francisco, CA 94016" +239572,Lightning Charging Cable,1,14.95,08/23/19 11:21,"787 Lincoln St, Los Angeles, CA 90001" +239573,34in Ultrawide Monitor,1,379.99,08/31/19 03:24,"850 9th St, San Francisco, CA 94016" +239574,Lightning Charging Cable,1,14.95,08/02/19 22:42,"965 Church St, New York City, NY 10001" +239575,Bose SoundSport Headphones,1,99.99,08/28/19 15:14,"779 Jackson St, San Francisco, CA 94016" +239576,Bose SoundSport Headphones,1,99.99,08/29/19 11:07,"685 Church St, Boston, MA 02215" +239577,Apple Airpods Headphones,1,150,08/29/19 12:03,"860 1st St, Dallas, TX 75001" +239578,AA Batteries (4-pack),1,3.84,08/26/19 12:31,"992 Forest St, Dallas, TX 75001" +239579,Apple Airpods Headphones,1,150,08/06/19 08:22,"511 9th St, San Francisco, CA 94016" +239580,27in 4K Gaming Monitor,1,389.99,08/10/19 10:56,"575 Lake St, Los Angeles, CA 90001" +239581,USB-C Charging Cable,1,11.95,08/08/19 18:46,"165 Cherry St, Dallas, TX 75001" +239582,Lightning Charging Cable,1,14.95,08/24/19 23:56,"778 River St, San Francisco, CA 94016" +239583,ThinkPad Laptop,1,999.99,08/19/19 20:27,"996 7th St, Seattle, WA 98101" +239584,27in FHD Monitor,1,149.99,08/28/19 11:20,"967 Washington St, San Francisco, CA 94016" +239585,27in FHD Monitor,1,149.99,08/11/19 22:25,"295 10th St, San Francisco, CA 94016" +239586,Bose SoundSport Headphones,1,99.99,08/15/19 11:51,"783 Lakeview St, Dallas, TX 75001" +239587,Lightning Charging Cable,1,14.95,08/12/19 15:46,"62 Jackson St, New York City, NY 10001" +239588,27in FHD Monitor,1,149.99,08/11/19 11:17,"410 14th St, Portland, OR 97035" +239589,AA Batteries (4-pack),1,3.84,08/11/19 22:27,"37 Elm St, Boston, MA 02215" +239590,27in FHD Monitor,1,149.99,08/07/19 00:54,"958 13th St, San Francisco, CA 94016" +239591,USB-C Charging Cable,1,11.95,08/22/19 12:21,"950 Lincoln St, Austin, TX 73301" +239592,Bose SoundSport Headphones,1,99.99,08/28/19 16:46,"856 Park St, Boston, MA 02215" +239593,27in FHD Monitor,1,149.99,08/15/19 12:52,"174 Forest St, Boston, MA 02215" +239594,27in FHD Monitor,1,149.99,08/15/19 01:10,"464 Maple St, New York City, NY 10001" +239594,AA Batteries (4-pack),1,3.84,08/15/19 01:10,"464 Maple St, New York City, NY 10001" +239595,Lightning Charging Cable,1,14.95,08/06/19 12:23,"43 River St, Los Angeles, CA 90001" +239596,AAA Batteries (4-pack),1,2.99,08/03/19 13:11,"723 12th St, Boston, MA 02215" +239597,Bose SoundSport Headphones,1,99.99,08/09/19 19:10,"446 Madison St, New York City, NY 10001" +239598,USB-C Charging Cable,1,11.95,08/17/19 15:14,"380 Maple St, San Francisco, CA 94016" +239599,USB-C Charging Cable,1,11.95,08/13/19 16:16,"227 Church St, San Francisco, CA 94016" +239600,AA Batteries (4-pack),2,3.84,08/15/19 19:42,"956 6th St, New York City, NY 10001" +239601,USB-C Charging Cable,1,11.95,08/18/19 00:18,"827 Spruce St, San Francisco, CA 94016" +239602,USB-C Charging Cable,1,11.95,08/21/19 14:58,"735 Main St, Dallas, TX 75001" +239603,Lightning Charging Cable,3,14.95,08/08/19 09:15,"926 Dogwood St, Los Angeles, CA 90001" +239604,Apple Airpods Headphones,1,150,08/23/19 18:59,"372 13th St, San Francisco, CA 94016" +239605,34in Ultrawide Monitor,1,379.99,08/02/19 15:10,"799 Highland St, Dallas, TX 75001" +239606,Bose SoundSport Headphones,1,99.99,08/10/19 17:36,"893 Center St, Dallas, TX 75001" +239607,AA Batteries (4-pack),2,3.84,08/18/19 16:13,"96 Ridge St, San Francisco, CA 94016" +239608,27in FHD Monitor,1,149.99,08/13/19 21:13,"501 River St, Atlanta, GA 30301" +239609,27in FHD Monitor,1,149.99,08/06/19 18:01,"355 Spruce St, Boston, MA 02215" +239610,Wired Headphones,1,11.99,08/26/19 19:35,"620 Walnut St, San Francisco, CA 94016" +239611,AA Batteries (4-pack),1,3.84,08/03/19 10:18,"290 South St, Portland, OR 97035" +239612,Bose SoundSport Headphones,1,99.99,08/17/19 09:40,"130 Hickory St, San Francisco, CA 94016" +239613,Flatscreen TV,1,300,08/13/19 18:15,"353 South St, Los Angeles, CA 90001" +239614,AA Batteries (4-pack),1,3.84,08/25/19 19:44,"317 Cherry St, Los Angeles, CA 90001" +239615,AA Batteries (4-pack),1,3.84,08/24/19 23:38,"97 11th St, San Francisco, CA 94016" +239616,USB-C Charging Cable,1,11.95,08/16/19 14:18,"791 Dogwood St, Boston, MA 02215" +239617,Apple Airpods Headphones,1,150,08/31/19 20:51,"50 Cedar St, Dallas, TX 75001" +239618,Lightning Charging Cable,1,14.95,08/03/19 13:58,"413 Adams St, Boston, MA 02215" +239619,USB-C Charging Cable,1,11.95,08/01/19 10:24,"258 Lake St, San Francisco, CA 94016" +239620,USB-C Charging Cable,2,11.95,08/27/19 12:18,"179 Ridge St, Atlanta, GA 30301" +239621,Wired Headphones,1,11.99,08/16/19 23:23,"639 Lakeview St, San Francisco, CA 94016" +239622,Wired Headphones,1,11.99,08/10/19 07:53,"821 2nd St, San Francisco, CA 94016" +239623,USB-C Charging Cable,1,11.95,08/26/19 20:15,"980 Sunset St, New York City, NY 10001" +239624,Flatscreen TV,1,300,08/09/19 09:15,"767 Chestnut St, Los Angeles, CA 90001" +239625,Apple Airpods Headphones,1,150,08/14/19 14:20,"5 Johnson St, San Francisco, CA 94016" +239626,AA Batteries (4-pack),2,3.84,08/27/19 22:03,"324 Ridge St, Los Angeles, CA 90001" +239627,USB-C Charging Cable,1,11.95,08/12/19 18:52,"16 6th St, Dallas, TX 75001" +239628,USB-C Charging Cable,1,11.95,08/05/19 00:19,"467 Washington St, Dallas, TX 75001" +239629,AA Batteries (4-pack),2,3.84,08/28/19 21:50,"973 8th St, San Francisco, CA 94016" +239630,ThinkPad Laptop,1,999.99,08/04/19 11:59,"328 13th St, San Francisco, CA 94016" +239631,Lightning Charging Cable,1,14.95,08/19/19 05:13,"893 Lincoln St, Boston, MA 02215" +239632,USB-C Charging Cable,1,11.95,08/20/19 10:44,"910 14th St, Seattle, WA 98101" +239633,Wired Headphones,1,11.99,08/03/19 06:52,"667 1st St, Los Angeles, CA 90001" +239634,AA Batteries (4-pack),2,3.84,08/05/19 16:33,"178 West St, Austin, TX 73301" +239635,Apple Airpods Headphones,1,150,08/29/19 17:38,"160 Washington St, San Francisco, CA 94016" +239636,Bose SoundSport Headphones,1,99.99,08/01/19 03:18,"834 5th St, Dallas, TX 75001" +239637,Wired Headphones,1,11.99,08/31/19 09:32,"13 Meadow St, Boston, MA 02215" +239638,AA Batteries (4-pack),2,3.84,08/18/19 21:28,"868 Forest St, San Francisco, CA 94016" +239639,Wired Headphones,1,11.99,08/07/19 09:24,"407 Cherry St, Portland, OR 97035" +239640,AAA Batteries (4-pack),1,2.99,08/23/19 20:19,"667 Jackson St, Seattle, WA 98101" +239641,AA Batteries (4-pack),2,3.84,08/29/19 20:33,"25 Park St, San Francisco, CA 94016" +239642,Bose SoundSport Headphones,1,99.99,08/27/19 08:39,"720 4th St, New York City, NY 10001" +239643,Bose SoundSport Headphones,1,99.99,08/11/19 10:09,"639 Maple St, Boston, MA 02215" +239644,Flatscreen TV,1,300,08/10/19 00:29,"54 Willow St, Atlanta, GA 30301" +239645,Lightning Charging Cable,1,14.95,08/15/19 01:56,"780 Johnson St, Los Angeles, CA 90001" +239646,AAA Batteries (4-pack),1,2.99,08/10/19 12:56,"737 Wilson St, Seattle, WA 98101" +239647,Vareebadd Phone,1,400,08/07/19 08:28,"187 7th St, San Francisco, CA 94016" +239648,Lightning Charging Cable,2,14.95,08/26/19 00:29,"375 Hickory St, San Francisco, CA 94016" +239649,Wired Headphones,1,11.99,08/09/19 20:52,"441 4th St, Los Angeles, CA 90001" +239650,Apple Airpods Headphones,1,150,08/10/19 17:03,"705 Dogwood St, Atlanta, GA 30301" +239651,USB-C Charging Cable,3,11.95,08/04/19 09:18,"229 Walnut St, Atlanta, GA 30301" +239652,ThinkPad Laptop,1,999.99,08/10/19 19:25,"457 Maple St, Los Angeles, CA 90001" +239653,34in Ultrawide Monitor,1,379.99,08/01/19 20:50,"490 Cherry St, Los Angeles, CA 90001" +239654,Bose SoundSport Headphones,1,99.99,08/27/19 12:20,"338 Washington St, Los Angeles, CA 90001" +239654,20in Monitor,1,109.99,08/27/19 12:20,"338 Washington St, Los Angeles, CA 90001" +239655,Bose SoundSport Headphones,1,99.99,08/27/19 14:15,"446 Jefferson St, Austin, TX 73301" +239656,USB-C Charging Cable,1,11.95,08/24/19 10:33,"3 7th St, Seattle, WA 98101" +239657,AA Batteries (4-pack),1,3.84,08/24/19 20:20,"776 8th St, New York City, NY 10001" +239658,Apple Airpods Headphones,1,150,08/04/19 23:23,"153 2nd St, San Francisco, CA 94016" +239659,AAA Batteries (4-pack),1,2.99,08/29/19 20:53,"694 South St, Los Angeles, CA 90001" +239660,Vareebadd Phone,1,400,08/03/19 18:58,"457 2nd St, New York City, NY 10001" +239661,34in Ultrawide Monitor,1,379.99,08/06/19 18:30,"366 7th St, Los Angeles, CA 90001" +239662,USB-C Charging Cable,1,11.95,08/12/19 21:19,"546 Dogwood St, Los Angeles, CA 90001" +239663,Bose SoundSport Headphones,1,99.99,08/09/19 09:01,"756 Meadow St, Dallas, TX 75001" +239664,AA Batteries (4-pack),1,3.84,08/16/19 15:34,"785 Church St, Atlanta, GA 30301" +239665,Google Phone,1,600,08/20/19 22:27,"768 Cedar St, San Francisco, CA 94016" +239666,ThinkPad Laptop,1,999.99,08/14/19 10:33,"322 Wilson St, Atlanta, GA 30301" +239667,20in Monitor,1,109.99,08/29/19 20:33,"178 West St, Austin, TX 73301" +239668,Bose SoundSport Headphones,1,99.99,08/27/19 06:33,"297 Center St, San Francisco, CA 94016" +239669,ThinkPad Laptop,1,999.99,08/27/19 19:29,"434 River St, Boston, MA 02215" +239670,AA Batteries (4-pack),1,3.84,08/14/19 14:44,"838 Johnson St, New York City, NY 10001" +239670,Lightning Charging Cable,1,14.95,08/14/19 14:44,"838 Johnson St, New York City, NY 10001" +239671,Lightning Charging Cable,1,14.95,08/03/19 11:48,"621 Jackson St, Dallas, TX 75001" +239672,34in Ultrawide Monitor,1,379.99,08/12/19 19:29,"619 Elm St, Dallas, TX 75001" +239673,Apple Airpods Headphones,1,150,08/25/19 18:36,"324 Chestnut St, Atlanta, GA 30301" +239674,Macbook Pro Laptop,1,1700,08/07/19 11:53,"460 7th St, Portland, ME 04101" +239675,USB-C Charging Cable,1,11.95,08/29/19 08:18,"32 Willow St, Seattle, WA 98101" +239676,Apple Airpods Headphones,1,150,08/16/19 11:04,"923 Dogwood St, Seattle, WA 98101" +239677,34in Ultrawide Monitor,1,379.99,08/10/19 09:56,"887 Cedar St, Boston, MA 02215" +239678,27in 4K Gaming Monitor,1,389.99,08/22/19 20:54,"576 Pine St, Seattle, WA 98101" +239679,Wired Headphones,1,11.99,08/09/19 00:38,"477 Highland St, San Francisco, CA 94016" +239680,AA Batteries (4-pack),2,3.84,08/19/19 10:58,"334 Elm St, Atlanta, GA 30301" +239681,Wired Headphones,1,11.99,08/31/19 12:12,"115 Willow St, San Francisco, CA 94016" +239682,AA Batteries (4-pack),1,3.84,08/21/19 20:45,"992 Washington St, Austin, TX 73301" +239683,AA Batteries (4-pack),1,3.84,08/29/19 18:22,"839 Jackson St, New York City, NY 10001" +239684,USB-C Charging Cable,1,11.95,08/16/19 17:52,"787 Walnut St, Atlanta, GA 30301" +239685,AAA Batteries (4-pack),1,2.99,08/11/19 09:47,"450 Cherry St, Los Angeles, CA 90001" +239686,Apple Airpods Headphones,1,150,08/27/19 19:51,"143 West St, San Francisco, CA 94016" +239686,27in 4K Gaming Monitor,1,389.99,08/27/19 19:51,"143 West St, San Francisco, CA 94016" +239687,Bose SoundSport Headphones,1,99.99,08/13/19 15:07,"929 Main St, New York City, NY 10001" +239688,USB-C Charging Cable,1,11.95,08/20/19 21:36,"475 1st St, New York City, NY 10001" +239689,USB-C Charging Cable,3,11.95,08/06/19 14:43,"215 Forest St, San Francisco, CA 94016" +239690,USB-C Charging Cable,1,11.95,08/24/19 12:14,"63 Lake St, Seattle, WA 98101" +239691,iPhone,1,700,08/18/19 10:32,"382 Dogwood St, Los Angeles, CA 90001" +239691,Lightning Charging Cable,1,14.95,08/18/19 10:32,"382 Dogwood St, Los Angeles, CA 90001" +239692,AAA Batteries (4-pack),2,2.99,08/17/19 07:30,"216 13th St, New York City, NY 10001" +239693,USB-C Charging Cable,1,11.95,08/15/19 20:43,"777 Washington St, Los Angeles, CA 90001" +239694,AA Batteries (4-pack),1,3.84,08/08/19 13:31,"517 Meadow St, Los Angeles, CA 90001" +239695,USB-C Charging Cable,1,11.95,08/03/19 23:04,"287 Center St, Dallas, TX 75001" +239696,ThinkPad Laptop,1,999.99,08/05/19 17:43,"22 Jackson St, Seattle, WA 98101" +239697,Wired Headphones,1,11.99,08/07/19 11:21,"162 Wilson St, New York City, NY 10001" +239698,Bose SoundSport Headphones,1,99.99,08/26/19 21:41,"341 5th St, Atlanta, GA 30301" +239699,USB-C Charging Cable,1,11.95,08/21/19 20:02,"333 Maple St, San Francisco, CA 94016" +239700,Macbook Pro Laptop,1,1700,08/14/19 14:07,"648 Jefferson St, Los Angeles, CA 90001" +239701,Lightning Charging Cable,2,14.95,08/27/19 16:04,"62 Jefferson St, Boston, MA 02215" +239702,USB-C Charging Cable,1,11.95,08/22/19 05:11,"405 5th St, San Francisco, CA 94016" +239703,USB-C Charging Cable,1,11.95,08/22/19 09:52,"365 Maple St, Los Angeles, CA 90001" +239704,Apple Airpods Headphones,1,150,08/19/19 21:10,"977 Maple St, Seattle, WA 98101" +239705,AAA Batteries (4-pack),2,2.99,08/23/19 12:02,"556 Washington St, Austin, TX 73301" +239706,Wired Headphones,1,11.99,08/25/19 09:02,"595 Hill St, Los Angeles, CA 90001" +239707,AAA Batteries (4-pack),1,2.99,08/14/19 11:41,"481 Jefferson St, Dallas, TX 75001" +239708,AAA Batteries (4-pack),1,2.99,08/20/19 19:11,"447 Dogwood St, Portland, OR 97035" +239709,Apple Airpods Headphones,1,150,08/25/19 14:12,"357 Hill St, San Francisco, CA 94016" +239710,USB-C Charging Cable,1,11.95,08/27/19 02:12,"681 9th St, San Francisco, CA 94016" +239711,Wired Headphones,1,11.99,08/16/19 20:26,"725 Lake St, San Francisco, CA 94016" +239712,AA Batteries (4-pack),2,3.84,08/29/19 15:15,"899 Forest St, Portland, OR 97035" +239713,Lightning Charging Cable,1,14.95,08/19/19 13:07,"387 9th St, New York City, NY 10001" +239714,AA Batteries (4-pack),1,3.84,08/21/19 10:06,"425 Highland St, Los Angeles, CA 90001" +239714,USB-C Charging Cable,1,11.95,08/21/19 10:06,"425 Highland St, Los Angeles, CA 90001" +239715,Wired Headphones,1,11.99,08/06/19 20:17,"719 Hill St, New York City, NY 10001" +239716,iPhone,1,700,08/08/19 19:24,"219 Johnson St, San Francisco, CA 94016" +239716,Lightning Charging Cable,1,14.95,08/08/19 19:24,"219 Johnson St, San Francisco, CA 94016" +239716,Wired Headphones,1,11.99,08/08/19 19:24,"219 Johnson St, San Francisco, CA 94016" +239717,AA Batteries (4-pack),1,3.84,08/30/19 10:19,"9 Spruce St, Atlanta, GA 30301" +239718,USB-C Charging Cable,1,11.95,08/21/19 19:54,"128 Adams St, Austin, TX 73301" +239719,20in Monitor,1,109.99,08/20/19 18:21,"557 Church St, Atlanta, GA 30301" +239720,Apple Airpods Headphones,1,150,08/10/19 17:17,"874 Hickory St, Los Angeles, CA 90001" +239721,AAA Batteries (4-pack),1,2.99,08/12/19 13:32,"826 8th St, Austin, TX 73301" +239722,Wired Headphones,1,11.99,08/18/19 19:28,"635 Walnut St, Portland, ME 04101" +239723,27in FHD Monitor,1,149.99,08/14/19 12:06,"400 West St, Seattle, WA 98101" +239724,27in FHD Monitor,1,149.99,08/23/19 17:43,"274 Lincoln St, Seattle, WA 98101" +239725,Lightning Charging Cable,1,14.95,08/04/19 14:57,"43 12th St, San Francisco, CA 94016" +239726,USB-C Charging Cable,2,11.95,08/28/19 21:11,"578 Walnut St, New York City, NY 10001" +239727,Lightning Charging Cable,2,14.95,08/31/19 11:09,"763 River St, Los Angeles, CA 90001" +239728,AAA Batteries (4-pack),1,2.99,08/09/19 21:27,"63 Chestnut St, Los Angeles, CA 90001" +239729,AAA Batteries (4-pack),1,2.99,08/28/19 09:00,"924 Cherry St, Portland, OR 97035" +239730,Apple Airpods Headphones,1,150,08/28/19 21:51,"581 Lincoln St, Atlanta, GA 30301" +239731,USB-C Charging Cable,1,11.95,08/08/19 04:49,"369 8th St, New York City, NY 10001" +239732,USB-C Charging Cable,1,11.95,08/08/19 08:06,"52 1st St, Atlanta, GA 30301" +239733,Wired Headphones,1,11.99,08/06/19 17:01,"167 Park St, Seattle, WA 98101" +239734,AA Batteries (4-pack),5,3.84,08/18/19 20:30,"691 Maple St, New York City, NY 10001" +239735,AAA Batteries (4-pack),2,2.99,08/01/19 12:11,"566 Johnson St, Dallas, TX 75001" +239736,USB-C Charging Cable,1,11.95,08/24/19 14:36,"821 West St, Dallas, TX 75001" +239737,20in Monitor,1,109.99,08/08/19 02:03,"199 11th St, Atlanta, GA 30301" +239738,ThinkPad Laptop,1,999.99,08/17/19 07:40,"35 Chestnut St, San Francisco, CA 94016" +239739,AA Batteries (4-pack),1,3.84,08/26/19 09:10,"152 Walnut St, San Francisco, CA 94016" +239740,Google Phone,1,600,08/13/19 15:03,"720 Pine St, San Francisco, CA 94016" +239741,Bose SoundSport Headphones,1,99.99,08/15/19 08:22,"730 8th St, Portland, ME 04101" +239742,Lightning Charging Cable,1,14.95,08/27/19 19:46,"960 Maple St, New York City, NY 10001" +239743,27in FHD Monitor,1,149.99,08/14/19 10:12,"881 Chestnut St, Dallas, TX 75001" +239744,Wired Headphones,1,11.99,08/12/19 09:35,"154 Hickory St, San Francisco, CA 94016" +239745,Lightning Charging Cable,1,14.95,08/08/19 22:57,"12 Madison St, San Francisco, CA 94016" +239746,USB-C Charging Cable,1,11.95,08/29/19 10:23,"497 Lakeview St, New York City, NY 10001" +239747,AAA Batteries (4-pack),3,2.99,08/26/19 11:39,"976 Willow St, Portland, OR 97035" +239748,iPhone,1,700,08/24/19 03:24,"458 12th St, Boston, MA 02215" +239749,Bose SoundSport Headphones,1,99.99,08/08/19 13:11,"38 9th St, New York City, NY 10001" +239750,iPhone,1,700,08/17/19 09:26,"867 Hill St, Los Angeles, CA 90001" +239750,Lightning Charging Cable,1,14.95,08/17/19 09:26,"867 Hill St, Los Angeles, CA 90001" +239751,Apple Airpods Headphones,1,150,08/09/19 07:33,"629 11th St, Boston, MA 02215" +239752,AA Batteries (4-pack),1,3.84,08/27/19 07:18,"895 11th St, Atlanta, GA 30301" +239753,AAA Batteries (4-pack),1,2.99,08/21/19 02:31,"187 2nd St, Los Angeles, CA 90001" +239754,Bose SoundSport Headphones,1,99.99,08/10/19 20:05,"238 10th St, Dallas, TX 75001" +239755,iPhone,1,700,08/21/19 09:38,"500 9th St, Los Angeles, CA 90001" +239756,34in Ultrawide Monitor,1,379.99,08/21/19 23:05,"941 11th St, Austin, TX 73301" +239757,Bose SoundSport Headphones,1,99.99,08/16/19 00:15,"198 South St, Los Angeles, CA 90001" +239758,AA Batteries (4-pack),1,3.84,08/16/19 13:54,"535 Maple St, Los Angeles, CA 90001" +239759,Lightning Charging Cable,1,14.95,08/16/19 14:21,"464 Cedar St, Dallas, TX 75001" +239760,AA Batteries (4-pack),1,3.84,08/15/19 20:28,"70 Highland St, Austin, TX 73301" +239761,Wired Headphones,1,11.99,08/08/19 12:30,"130 Jackson St, Los Angeles, CA 90001" +,,,,, +239762,USB-C Charging Cable,1,11.95,08/13/19 21:36,"380 Ridge St, Boston, MA 02215" +239763,Bose SoundSport Headphones,1,99.99,08/30/19 23:26,"994 11th St, Dallas, TX 75001" +239764,USB-C Charging Cable,1,11.95,08/21/19 12:37,"932 5th St, Boston, MA 02215" +239765,AA Batteries (4-pack),2,3.84,08/06/19 15:29,"139 7th St, Boston, MA 02215" +239766,AA Batteries (4-pack),1,3.84,08/06/19 20:26,"537 14th St, Seattle, WA 98101" +239767,Wired Headphones,2,11.99,08/10/19 16:40,"873 Church St, Boston, MA 02215" +239768,AAA Batteries (4-pack),1,2.99,08/25/19 12:49,"75 9th St, Portland, OR 97035" +239769,Bose SoundSport Headphones,1,99.99,08/30/19 10:37,"713 Madison St, New York City, NY 10001" +239770,Wired Headphones,1,11.99,08/17/19 10:26,"747 Madison St, Seattle, WA 98101" +239771,Bose SoundSport Headphones,1,99.99,08/02/19 19:03,"126 14th St, Dallas, TX 75001" +239772,Bose SoundSport Headphones,1,99.99,08/02/19 15:48,"786 Church St, Portland, OR 97035" +239773,USB-C Charging Cable,1,11.95,08/10/19 16:26,"573 Lake St, Boston, MA 02215" +239774,Lightning Charging Cable,1,14.95,08/17/19 11:52,"401 10th St, Atlanta, GA 30301" +239775,AA Batteries (4-pack),1,3.84,08/05/19 12:51,"581 Walnut St, New York City, NY 10001" +239776,Macbook Pro Laptop,1,1700,08/27/19 07:48,"681 13th St, Portland, OR 97035" +239777,27in 4K Gaming Monitor,1,389.99,08/10/19 11:29,"527 11th St, Atlanta, GA 30301" +239778,Flatscreen TV,1,300,08/31/19 17:56,"512 Lincoln St, San Francisco, CA 94016" +239779,Macbook Pro Laptop,1,1700,08/25/19 09:57,"140 Sunset St, Portland, OR 97035" +239780,27in FHD Monitor,1,149.99,08/02/19 12:47,"981 2nd St, New York City, NY 10001" +239781,AA Batteries (4-pack),1,3.84,08/26/19 13:28,"510 4th St, Los Angeles, CA 90001" +239782,Wired Headphones,1,11.99,08/21/19 07:48,"649 2nd St, Seattle, WA 98101" +239782,AAA Batteries (4-pack),1,2.99,08/21/19 07:48,"649 2nd St, Seattle, WA 98101" +239783,AA Batteries (4-pack),2,3.84,08/31/19 22:19,"60 10th St, San Francisco, CA 94016" +239784,Google Phone,1,600,08/11/19 17:47,"637 7th St, Austin, TX 73301" +239785,AA Batteries (4-pack),4,3.84,08/03/19 09:47,"272 13th St, San Francisco, CA 94016" +239786,AAA Batteries (4-pack),1,2.99,08/16/19 19:57,"835 12th St, Portland, OR 97035" +239787,USB-C Charging Cable,1,11.95,08/08/19 16:56,"103 Dogwood St, San Francisco, CA 94016" +239788,Lightning Charging Cable,1,14.95,08/05/19 16:55,"764 Sunset St, New York City, NY 10001" +239789,AAA Batteries (4-pack),1,2.99,08/29/19 12:22,"369 Adams St, Austin, TX 73301" +239790,27in 4K Gaming Monitor,1,389.99,08/29/19 08:38,"160 Center St, Boston, MA 02215" +239791,iPhone,1,700,08/12/19 13:22,"340 Meadow St, New York City, NY 10001" +239791,Lightning Charging Cable,1,14.95,08/12/19 13:22,"340 Meadow St, New York City, NY 10001" +239792,AA Batteries (4-pack),1,3.84,08/04/19 13:06,"127 River St, Dallas, TX 75001" +239793,USB-C Charging Cable,1,11.95,08/27/19 10:30,"563 1st St, Portland, OR 97035" +239794,AA Batteries (4-pack),1,3.84,08/23/19 17:04,"672 Johnson St, Portland, OR 97035" +239795,iPhone,1,700,08/16/19 21:31,"121 12th St, New York City, NY 10001" +239796,AA Batteries (4-pack),1,3.84,08/04/19 21:28,"999 Spruce St, New York City, NY 10001" +239797,27in FHD Monitor,1,149.99,08/30/19 09:20,"366 13th St, San Francisco, CA 94016" +239798,Lightning Charging Cable,1,14.95,08/29/19 09:42,"771 River St, Dallas, TX 75001" +239799,AAA Batteries (4-pack),1,2.99,08/05/19 09:44,"402 Adams St, Atlanta, GA 30301" +239800,27in 4K Gaming Monitor,1,389.99,08/03/19 22:06,"297 6th St, Atlanta, GA 30301" +239801,20in Monitor,1,109.99,08/20/19 04:23,"57 Chestnut St, Portland, OR 97035" +239802,AAA Batteries (4-pack),2,2.99,08/05/19 18:34,"878 11th St, Boston, MA 02215" +239803,27in FHD Monitor,1,149.99,08/26/19 14:31,"630 6th St, Portland, ME 04101" +239804,Bose SoundSport Headphones,1,99.99,08/09/19 10:39,"669 Willow St, San Francisco, CA 94016" +239805,Apple Airpods Headphones,1,150,08/24/19 14:33,"437 North St, Seattle, WA 98101" +239806,USB-C Charging Cable,1,11.95,08/10/19 15:17,"874 4th St, New York City, NY 10001" +239807,Apple Airpods Headphones,1,150,08/05/19 17:38,"184 Meadow St, Atlanta, GA 30301" +239808,Bose SoundSport Headphones,1,99.99,08/04/19 17:03,"320 Center St, San Francisco, CA 94016" +239809,USB-C Charging Cable,1,11.95,08/04/19 20:58,"50 Willow St, San Francisco, CA 94016" +239810,27in 4K Gaming Monitor,1,389.99,08/11/19 23:01,"824 5th St, New York City, NY 10001" +239811,iPhone,1,700,08/22/19 20:15,"797 Chestnut St, Seattle, WA 98101" +239812,Macbook Pro Laptop,1,1700,08/31/19 16:49,"971 Elm St, Boston, MA 02215" +239813,USB-C Charging Cable,1,11.95,08/01/19 09:58,"675 Hill St, San Francisco, CA 94016" +239814,ThinkPad Laptop,1,999.99,08/04/19 10:44,"472 Park St, Dallas, TX 75001" +239815,AA Batteries (4-pack),2,3.84,08/14/19 20:11,"485 West St, Los Angeles, CA 90001" +239815,USB-C Charging Cable,1,11.95,08/14/19 20:11,"485 West St, Los Angeles, CA 90001" +239816,Google Phone,1,600,08/18/19 22:33,"841 Lincoln St, San Francisco, CA 94016" +239817,20in Monitor,1,109.99,08/13/19 12:20,"956 Lincoln St, San Francisco, CA 94016" +239818,Google Phone,1,600,08/09/19 10:59,"843 Church St, Los Angeles, CA 90001" +239819,Bose SoundSport Headphones,1,99.99,08/30/19 10:10,"95 Jackson St, San Francisco, CA 94016" +239820,USB-C Charging Cable,1,11.95,08/09/19 20:15,"102 8th St, San Francisco, CA 94016" +239821,AAA Batteries (4-pack),2,2.99,08/03/19 15:34,"360 Cherry St, Seattle, WA 98101" +239822,Wired Headphones,1,11.99,08/28/19 21:11,"142 Chestnut St, San Francisco, CA 94016" +239823,Wired Headphones,1,11.99,08/29/19 19:13,"717 Main St, San Francisco, CA 94016" +239824,USB-C Charging Cable,1,11.95,08/22/19 10:59,"851 Madison St, Los Angeles, CA 90001" +239825,AA Batteries (4-pack),1,3.84,08/24/19 14:04,"648 Hill St, Seattle, WA 98101" +239826,Lightning Charging Cable,1,14.95,08/24/19 22:09,"645 2nd St, San Francisco, CA 94016" +239827,AA Batteries (4-pack),3,3.84,08/24/19 11:49,"331 Chestnut St, San Francisco, CA 94016" +239828,Wired Headphones,1,11.99,08/05/19 11:55,"235 Church St, Los Angeles, CA 90001" +239829,27in FHD Monitor,1,149.99,08/31/19 13:59,"533 Lakeview St, Atlanta, GA 30301" +239830,AAA Batteries (4-pack),2,2.99,08/08/19 21:15,"718 Forest St, San Francisco, CA 94016" +239831,ThinkPad Laptop,1,999.99,08/03/19 13:31,"271 Pine St, San Francisco, CA 94016" +239832,AA Batteries (4-pack),1,3.84,08/30/19 07:23,"782 11th St, Atlanta, GA 30301" +239833,Apple Airpods Headphones,1,150,08/24/19 13:20,"230 Lakeview St, Austin, TX 73301" +239834,34in Ultrawide Monitor,1,379.99,08/21/19 21:42,"505 Lake St, Boston, MA 02215" +239835,Apple Airpods Headphones,1,150,08/27/19 16:24,"147 11th St, New York City, NY 10001" +239836,AA Batteries (4-pack),1,3.84,08/30/19 18:29,"619 13th St, New York City, NY 10001" +239837,Bose SoundSport Headphones,1,99.99,08/02/19 11:51,"935 River St, Portland, ME 04101" +239838,USB-C Charging Cable,1,11.95,08/19/19 22:43,"37 Maple St, New York City, NY 10001" +239839,USB-C Charging Cable,1,11.95,08/04/19 13:06,"189 Washington St, San Francisco, CA 94016" +239840,34in Ultrawide Monitor,1,379.99,08/14/19 19:19,"474 9th St, Boston, MA 02215" +239841,AA Batteries (4-pack),1,3.84,08/25/19 16:34,"233 8th St, Los Angeles, CA 90001" +239842,Bose SoundSport Headphones,1,99.99,08/08/19 17:39,"673 Washington St, San Francisco, CA 94016" +239843,Wired Headphones,1,11.99,08/03/19 12:11,"192 South St, Austin, TX 73301" +239844,27in FHD Monitor,1,149.99,08/03/19 09:45,"879 Meadow St, Dallas, TX 75001" +239845,AA Batteries (4-pack),1,3.84,08/02/19 14:09,"29 2nd St, Boston, MA 02215" +239846,AA Batteries (4-pack),2,3.84,08/20/19 20:24,"56 Lake St, San Francisco, CA 94016" +239847,Wired Headphones,1,11.99,08/11/19 19:36,"603 Elm St, Seattle, WA 98101" +239848,Wired Headphones,1,11.99,08/13/19 12:50,"33 Lakeview St, Seattle, WA 98101" +239849,AAA Batteries (4-pack),1,2.99,08/31/19 17:14,"110 Forest St, Seattle, WA 98101" +239850,AA Batteries (4-pack),1,3.84,08/05/19 17:08,"612 Dogwood St, Portland, OR 97035" +239851,AA Batteries (4-pack),2,3.84,08/24/19 21:34,"749 Lake St, Austin, TX 73301" +239852,27in FHD Monitor,1,149.99,08/13/19 02:49,"36 Cherry St, Boston, MA 02215" +239853,27in FHD Monitor,1,149.99,08/26/19 17:37,"421 Washington St, Boston, MA 02215" +239854,Bose SoundSport Headphones,1,99.99,08/25/19 11:06,"380 Highland St, San Francisco, CA 94016" +239855,Flatscreen TV,1,300,08/15/19 22:20,"173 Forest St, Austin, TX 73301" +239856,Lightning Charging Cable,1,14.95,08/27/19 21:07,"553 Ridge St, Austin, TX 73301" +239857,Flatscreen TV,1,300,08/30/19 00:12,"90 1st St, Atlanta, GA 30301" +239858,AA Batteries (4-pack),1,3.84,08/05/19 01:17,"695 Center St, Atlanta, GA 30301" +239859,iPhone,1,700,08/17/19 15:02,"51 Lake St, Dallas, TX 75001" +239860,AAA Batteries (4-pack),1,2.99,08/12/19 16:22,"94 Wilson St, Boston, MA 02215" +239861,Apple Airpods Headphones,1,150,08/08/19 22:30,"333 Willow St, Seattle, WA 98101" +239862,AAA Batteries (4-pack),1,2.99,08/08/19 08:51,"443 Lakeview St, San Francisco, CA 94016" +239863,20in Monitor,1,109.99,08/31/19 12:41,"86 1st St, Dallas, TX 75001" +239864,27in 4K Gaming Monitor,1,389.99,08/13/19 14:32,"985 West St, Los Angeles, CA 90001" +239865,USB-C Charging Cable,1,11.95,08/01/19 13:17,"79 Willow St, Seattle, WA 98101" +239866,Lightning Charging Cable,1,14.95,08/03/19 18:55,"927 Johnson St, Boston, MA 02215" +239867,Flatscreen TV,1,300,08/13/19 11:57,"545 Walnut St, Los Angeles, CA 90001" +239868,Flatscreen TV,1,300,08/28/19 13:03,"527 Hill St, Portland, OR 97035" +239869,Apple Airpods Headphones,1,150,08/17/19 14:08,"842 Adams St, San Francisco, CA 94016" +239869,34in Ultrawide Monitor,1,379.99,08/17/19 14:08,"842 Adams St, San Francisco, CA 94016" +239870,AAA Batteries (4-pack),1,2.99,08/17/19 12:24,"895 Lake St, New York City, NY 10001" +239871,Lightning Charging Cable,1,14.95,08/29/19 14:27,"309 8th St, New York City, NY 10001" +239872,Apple Airpods Headphones,1,150,08/31/19 00:12,"824 14th St, Boston, MA 02215" +239873,AAA Batteries (4-pack),2,2.99,08/06/19 17:42,"1 Forest St, San Francisco, CA 94016" +239874,AAA Batteries (4-pack),1,2.99,08/05/19 11:17,"238 2nd St, San Francisco, CA 94016" +239875,Bose SoundSport Headphones,1,99.99,08/20/19 23:40,"126 Chestnut St, San Francisco, CA 94016" +239876,Lightning Charging Cable,1,14.95,08/14/19 05:27,"697 Hill St, New York City, NY 10001" +239877,Bose SoundSport Headphones,1,99.99,08/01/19 20:48,"380 Meadow St, Portland, OR 97035" +239878,AAA Batteries (4-pack),1,2.99,08/23/19 05:43,"612 12th St, San Francisco, CA 94016" +239879,AA Batteries (4-pack),1,3.84,08/19/19 19:52,"412 Cherry St, Los Angeles, CA 90001" +239880,27in FHD Monitor,1,149.99,08/30/19 16:28,"567 West St, New York City, NY 10001" +239881,Vareebadd Phone,1,400,08/25/19 17:14,"622 13th St, New York City, NY 10001" +239882,Macbook Pro Laptop,1,1700,08/08/19 19:56,"580 4th St, San Francisco, CA 94016" +239883,Apple Airpods Headphones,1,150,08/31/19 08:08,"870 Hill St, Atlanta, GA 30301" +239884,AAA Batteries (4-pack),1,2.99,08/09/19 09:11,"415 Cherry St, Dallas, TX 75001" +239885,Apple Airpods Headphones,1,150,08/02/19 18:10,"449 9th St, Los Angeles, CA 90001" +239886,Bose SoundSport Headphones,1,99.99,08/07/19 13:38,"996 Maple St, San Francisco, CA 94016" +239887,Google Phone,1,600,08/23/19 11:25,"931 Dogwood St, Boston, MA 02215" +239887,Wired Headphones,1,11.99,08/23/19 11:25,"931 Dogwood St, Boston, MA 02215" +239888,Wired Headphones,1,11.99,08/01/19 14:01,"991 2nd St, Los Angeles, CA 90001" +239889,Wired Headphones,1,11.99,08/05/19 07:53,"871 South St, New York City, NY 10001" +239890,AAA Batteries (4-pack),2,2.99,08/06/19 12:46,"67 13th St, Portland, OR 97035" +239891,27in 4K Gaming Monitor,1,389.99,08/07/19 13:04,"544 1st St, Austin, TX 73301" +239892,Google Phone,1,600,08/09/19 14:00,"782 West St, Portland, OR 97035" +239893,Wired Headphones,1,11.99,08/12/19 15:15,"734 Jefferson St, Boston, MA 02215" +239894,AAA Batteries (4-pack),1,2.99,08/10/19 22:56,"310 Walnut St, Austin, TX 73301" +239895,AAA Batteries (4-pack),1,2.99,08/29/19 19:41,"642 Lincoln St, New York City, NY 10001" +239896,AAA Batteries (4-pack),1,2.99,08/08/19 15:23,"783 Lakeview St, San Francisco, CA 94016" +239897,Macbook Pro Laptop,1,1700,08/26/19 01:47,"236 Jackson St, San Francisco, CA 94016" +239898,LG Washing Machine,1,600.0,08/30/19 11:47,"583 Elm St, Boston, MA 02215" +239899,Bose SoundSport Headphones,1,99.99,08/18/19 13:24,"299 Forest St, Los Angeles, CA 90001" +239900,USB-C Charging Cable,1,11.95,08/30/19 17:02,"589 6th St, New York City, NY 10001" +239901,Wired Headphones,1,11.99,08/05/19 10:52,"211 12th St, San Francisco, CA 94016" +239902,AA Batteries (4-pack),1,3.84,08/19/19 08:34,"634 14th St, Los Angeles, CA 90001" +239903,Apple Airpods Headphones,1,150,08/08/19 16:23,"963 Willow St, San Francisco, CA 94016" +239904,AA Batteries (4-pack),2,3.84,08/15/19 16:25,"823 10th St, Dallas, TX 75001" +239905,AA Batteries (4-pack),1,3.84,08/19/19 00:31,"256 Madison St, Boston, MA 02215" +239906,Lightning Charging Cable,2,14.95,08/05/19 13:57,"651 Dogwood St, Atlanta, GA 30301" +239907,Bose SoundSport Headphones,1,99.99,08/17/19 13:35,"490 13th St, New York City, NY 10001" +239908,Apple Airpods Headphones,1,150,08/29/19 13:34,"500 10th St, Boston, MA 02215" +239909,AAA Batteries (4-pack),2,2.99,08/10/19 13:08,"557 Church St, Boston, MA 02215" +239910,Wired Headphones,1,11.99,08/19/19 08:53,"541 Willow St, Los Angeles, CA 90001" +239911,Lightning Charging Cable,1,14.95,08/25/19 22:38,"927 Hill St, San Francisco, CA 94016" +239912,Lightning Charging Cable,1,14.95,08/02/19 20:12,"137 Cherry St, Portland, ME 04101" +239913,Apple Airpods Headphones,1,150,08/15/19 12:07,"863 12th St, Boston, MA 02215" +239914,AAA Batteries (4-pack),1,2.99,08/16/19 10:16,"641 Johnson St, Boston, MA 02215" +239915,Bose SoundSport Headphones,1,99.99,08/11/19 19:25,"273 Johnson St, New York City, NY 10001" +239916,Lightning Charging Cable,1,14.95,08/18/19 15:07,"365 Wilson St, New York City, NY 10001" +239917,Apple Airpods Headphones,1,150,08/28/19 20:05,"432 Meadow St, Los Angeles, CA 90001" +239918,AAA Batteries (4-pack),1,2.99,08/14/19 22:36,"911 River St, San Francisco, CA 94016" +239918,Bose SoundSport Headphones,1,99.99,08/14/19 22:36,"911 River St, San Francisco, CA 94016" +239919,Lightning Charging Cable,1,14.95,08/04/19 13:52,"879 Center St, San Francisco, CA 94016" +239920,Wired Headphones,1,11.99,08/31/19 13:01,"477 Church St, Dallas, TX 75001" +239921,27in FHD Monitor,1,149.99,08/10/19 14:51,"213 River St, San Francisco, CA 94016" +239922,Macbook Pro Laptop,1,1700,08/12/19 20:39,"498 Hickory St, Los Angeles, CA 90001" +239923,USB-C Charging Cable,1,11.95,08/02/19 12:02,"675 Elm St, San Francisco, CA 94016" +239924,Wired Headphones,1,11.99,08/28/19 01:47,"486 Elm St, Boston, MA 02215" +239925,USB-C Charging Cable,1,11.95,08/13/19 21:31,"599 Cherry St, Los Angeles, CA 90001" +239925,AAA Batteries (4-pack),1,2.99,08/13/19 21:31,"599 Cherry St, Los Angeles, CA 90001" +239926,Wired Headphones,1,11.99,08/11/19 20:59,"632 Walnut St, San Francisco, CA 94016" +239927,USB-C Charging Cable,1,11.95,08/11/19 10:25,"435 7th St, San Francisco, CA 94016" +239928,20in Monitor,1,109.99,08/19/19 20:16,"80 Lincoln St, Los Angeles, CA 90001" +239929,ThinkPad Laptop,1,999.99,08/07/19 12:40,"879 9th St, Portland, OR 97035" +239930,Bose SoundSport Headphones,1,99.99,08/17/19 19:14,"802 Center St, San Francisco, CA 94016" +239931,Vareebadd Phone,1,400,08/15/19 08:01,"995 9th St, Portland, OR 97035" +239932,AAA Batteries (4-pack),6,2.99,08/06/19 06:36,"268 Chestnut St, Boston, MA 02215" +239933,34in Ultrawide Monitor,1,379.99,08/27/19 10:50,"69 14th St, New York City, NY 10001" +239934,Apple Airpods Headphones,1,150,08/22/19 19:24,"839 Elm St, Los Angeles, CA 90001" +239935,USB-C Charging Cable,1,11.95,08/12/19 13:46,"423 9th St, Los Angeles, CA 90001" +239936,Bose SoundSport Headphones,1,99.99,08/17/19 17:14,"252 Willow St, Los Angeles, CA 90001" +239937,AA Batteries (4-pack),1,3.84,08/12/19 10:26,"874 Forest St, San Francisco, CA 94016" +239938,34in Ultrawide Monitor,1,379.99,08/24/19 15:03,"465 12th St, Boston, MA 02215" +239939,27in FHD Monitor,1,149.99,08/18/19 11:16,"314 Lakeview St, Los Angeles, CA 90001" +239940,AAA Batteries (4-pack),2,2.99,08/24/19 17:31,"306 Cherry St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +239941,Wired Headphones,2,11.99,08/17/19 13:08,"148 2nd St, Los Angeles, CA 90001" +239942,Bose SoundSport Headphones,1,99.99,08/27/19 18:17,"683 Lakeview St, Los Angeles, CA 90001" +239943,Apple Airpods Headphones,1,150,08/24/19 11:13,"753 Jackson St, Austin, TX 73301" +239944,20in Monitor,1,109.99,08/18/19 19:52,"774 North St, New York City, NY 10001" +239945,USB-C Charging Cable,1,11.95,08/16/19 13:43,"530 Lake St, Los Angeles, CA 90001" +239946,USB-C Charging Cable,1,11.95,08/05/19 17:53,"224 Walnut St, San Francisco, CA 94016" +239947,Lightning Charging Cable,1,14.95,08/06/19 15:31,"534 9th St, San Francisco, CA 94016" +239948,Bose SoundSport Headphones,1,99.99,08/03/19 10:52,"596 Highland St, San Francisco, CA 94016" +239949,Apple Airpods Headphones,1,150,08/24/19 15:43,"263 Jefferson St, Seattle, WA 98101" +239950,Wired Headphones,1,11.99,08/17/19 17:54,"117 Spruce St, Los Angeles, CA 90001" +239951,USB-C Charging Cable,1,11.95,08/24/19 13:52,"35 4th St, Los Angeles, CA 90001" +239952,AAA Batteries (4-pack),1,2.99,08/13/19 13:40,"718 Elm St, Los Angeles, CA 90001" +239953,Lightning Charging Cable,1,14.95,08/20/19 21:11,"504 Wilson St, Austin, TX 73301" +239954,Google Phone,1,600,08/11/19 16:20,"411 Lake St, Los Angeles, CA 90001" +239955,ThinkPad Laptop,1,999.99,08/30/19 23:17,"103 7th St, Portland, OR 97035" +239956,Apple Airpods Headphones,1,150,08/24/19 21:37,"65 Center St, Austin, TX 73301" +239957,Bose SoundSport Headphones,1,99.99,08/20/19 02:23,"217 2nd St, Seattle, WA 98101" +239958,AAA Batteries (4-pack),2,2.99,08/03/19 16:57,"856 Dogwood St, San Francisco, CA 94016" +239959,27in 4K Gaming Monitor,1,389.99,08/04/19 21:19,"575 Adams St, Los Angeles, CA 90001" +239960,Lightning Charging Cable,1,14.95,08/17/19 14:59,"355 Maple St, Seattle, WA 98101" +239961,Wired Headphones,1,11.99,08/17/19 23:11,"117 5th St, Atlanta, GA 30301" +239962,Wired Headphones,2,11.99,08/23/19 14:31,"268 South St, Atlanta, GA 30301" +239963,AA Batteries (4-pack),1,3.84,08/09/19 06:46,"851 4th St, San Francisco, CA 94016" +239964,AAA Batteries (4-pack),1,2.99,08/16/19 21:41,"592 8th St, Seattle, WA 98101" +239965,AA Batteries (4-pack),1,3.84,08/17/19 21:43,"126 Willow St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +239966,Apple Airpods Headphones,1,150,08/20/19 23:07,"994 9th St, San Francisco, CA 94016" +239967,Google Phone,1,600,08/22/19 03:17,"719 Church St, San Francisco, CA 94016" +239968,27in 4K Gaming Monitor,1,389.99,08/28/19 10:11,"695 River St, Los Angeles, CA 90001" +239969,AA Batteries (4-pack),1,3.84,08/03/19 12:01,"425 Highland St, Seattle, WA 98101" +239970,Bose SoundSport Headphones,1,99.99,08/06/19 01:38,"480 Pine St, New York City, NY 10001" +239971,AAA Batteries (4-pack),2,2.99,08/06/19 07:00,"630 Church St, Seattle, WA 98101" +239972,AAA Batteries (4-pack),1,2.99,08/08/19 20:19,"125 River St, Los Angeles, CA 90001" +239973,Lightning Charging Cable,1,14.95,08/10/19 12:42,"986 Lincoln St, San Francisco, CA 94016" +239974,AA Batteries (4-pack),1,3.84,08/06/19 19:19,"57 Willow St, Atlanta, GA 30301" +239975,Wired Headphones,1,11.99,08/28/19 13:31,"862 Cedar St, San Francisco, CA 94016" +239976,AAA Batteries (4-pack),3,2.99,08/11/19 15:00,"610 Madison St, Los Angeles, CA 90001" +239977,Bose SoundSport Headphones,1,99.99,08/22/19 11:53,"176 4th St, Atlanta, GA 30301" +239978,Bose SoundSport Headphones,1,99.99,08/27/19 10:32,"477 2nd St, Los Angeles, CA 90001" +239979,AAA Batteries (4-pack),1,2.99,08/23/19 22:08,"240 5th St, San Francisco, CA 94016" +239980,27in FHD Monitor,1,149.99,08/16/19 14:46,"715 10th St, San Francisco, CA 94016" +239981,Apple Airpods Headphones,1,150,08/07/19 16:42,"796 Maple St, Austin, TX 73301" +239982,20in Monitor,1,109.99,08/15/19 22:12,"437 Chestnut St, San Francisco, CA 94016" +239983,AA Batteries (4-pack),2,3.84,08/06/19 20:58,"783 Sunset St, New York City, NY 10001" +239984,34in Ultrawide Monitor,1,379.99,08/30/19 18:44,"542 1st St, San Francisco, CA 94016" +239985,Google Phone,1,600,08/17/19 10:37,"267 South St, San Francisco, CA 94016" +239986,iPhone,1,700,08/04/19 16:26,"338 11th St, San Francisco, CA 94016" +239986,Lightning Charging Cable,1,14.95,08/04/19 16:26,"338 11th St, San Francisco, CA 94016" +239987,Vareebadd Phone,1,400,08/16/19 11:16,"58 West St, Atlanta, GA 30301" +239988,27in FHD Monitor,1,149.99,08/04/19 14:14,"572 6th St, San Francisco, CA 94016" +239989,Bose SoundSport Headphones,1,99.99,08/25/19 14:13,"204 Lakeview St, Seattle, WA 98101" +239990,AA Batteries (4-pack),1,3.84,08/07/19 12:30,"145 Lakeview St, New York City, NY 10001" +239991,Lightning Charging Cable,1,14.95,08/13/19 08:45,"937 North St, Los Angeles, CA 90001" +239991,AAA Batteries (4-pack),3,2.99,08/13/19 08:45,"937 North St, Los Angeles, CA 90001" +239992,AA Batteries (4-pack),2,3.84,08/28/19 19:37,"60 South St, Los Angeles, CA 90001" +239993,Bose SoundSport Headphones,1,99.99,08/22/19 20:19,"552 Lake St, Portland, OR 97035" +239994,Lightning Charging Cable,1,14.95,08/05/19 17:35,"885 Spruce St, Portland, OR 97035" +239995,USB-C Charging Cable,1,11.95,08/06/19 06:52,"367 Johnson St, San Francisco, CA 94016" +239996,Bose SoundSport Headphones,1,99.99,08/20/19 23:21,"340 Elm St, Los Angeles, CA 90001" +239997,AA Batteries (4-pack),2,3.84,08/07/19 22:20,"466 Jefferson St, Austin, TX 73301" +239998,AA Batteries (4-pack),2,3.84,08/24/19 15:47,"215 Willow St, New York City, NY 10001" +239999,Flatscreen TV,1,300,08/26/19 01:32,"798 Spruce St, New York City, NY 10001" +240000,27in 4K Gaming Monitor,1,389.99,08/20/19 09:56,"706 Wilson St, Seattle, WA 98101" +240001,Bose SoundSport Headphones,1,99.99,08/14/19 12:10,"998 Forest St, Atlanta, GA 30301" +240002,Wired Headphones,1,11.99,09/01/19 00:21,"932 Cedar St, Boston, MA 02215" +240003,Bose SoundSport Headphones,1,99.99,08/26/19 12:57,"56 Forest St, Los Angeles, CA 90001" +240004,AAA Batteries (4-pack),1,2.99,08/10/19 12:31,"971 Pine St, Austin, TX 73301" +240005,Macbook Pro Laptop,1,1700,08/18/19 14:35,"649 Sunset St, Boston, MA 02215" +240006,AA Batteries (4-pack),1,3.84,08/29/19 09:01,"3 6th St, Los Angeles, CA 90001" +240007,Google Phone,1,600,08/10/19 13:15,"13 Cherry St, Dallas, TX 75001" +240007,Bose SoundSport Headphones,1,99.99,08/10/19 13:15,"13 Cherry St, Dallas, TX 75001" +240008,ThinkPad Laptop,1,999.99,08/28/19 10:59,"923 Elm St, Austin, TX 73301" +240009,Lightning Charging Cable,1,14.95,08/29/19 20:36,"60 Park St, Los Angeles, CA 90001" +240010,27in FHD Monitor,1,149.99,08/12/19 14:35,"75 Walnut St, Portland, OR 97035" +240010,USB-C Charging Cable,1,11.95,08/12/19 14:35,"75 Walnut St, Portland, OR 97035" +240011,AAA Batteries (4-pack),2,2.99,08/16/19 10:11,"195 Jefferson St, New York City, NY 10001" +240012,Wired Headphones,3,11.99,08/14/19 20:36,"349 Hickory St, Portland, OR 97035" +240013,Bose SoundSport Headphones,1,99.99,08/01/19 20:34,"140 Meadow St, Los Angeles, CA 90001" +240014,USB-C Charging Cable,1,11.95,08/03/19 10:49,"945 Dogwood St, Los Angeles, CA 90001" +240015,Apple Airpods Headphones,1,150,08/28/19 08:42,"242 9th St, Seattle, WA 98101" +240016,Wired Headphones,1,11.99,08/09/19 05:10,"744 Elm St, Dallas, TX 75001" +240017,Flatscreen TV,1,300,08/09/19 18:41,"899 Lakeview St, Seattle, WA 98101" +240018,USB-C Charging Cable,1,11.95,08/31/19 11:56,"63 Johnson St, San Francisco, CA 94016" +240019,AAA Batteries (4-pack),1,2.99,08/15/19 08:20,"880 Dogwood St, Portland, ME 04101" +240020,Apple Airpods Headphones,1,150,08/24/19 18:34,"670 Willow St, Seattle, WA 98101" +240021,Google Phone,1,600,08/15/19 05:54,"478 Meadow St, Boston, MA 02215" +240022,USB-C Charging Cable,1,11.95,08/03/19 23:09,"14 Spruce St, Austin, TX 73301" +240023,Wired Headphones,1,11.99,08/22/19 00:00,"180 South St, Seattle, WA 98101" +240024,Bose SoundSport Headphones,1,99.99,08/22/19 08:29,"467 Elm St, Los Angeles, CA 90001" +240025,USB-C Charging Cable,1,11.95,08/19/19 08:16,"829 4th St, Los Angeles, CA 90001" +240026,AAA Batteries (4-pack),1,2.99,08/24/19 18:15,"278 Chestnut St, New York City, NY 10001" +240027,Wired Headphones,1,11.99,08/06/19 09:11,"952 Maple St, Seattle, WA 98101" +240028,27in FHD Monitor,1,149.99,08/16/19 15:06,"701 Highland St, Los Angeles, CA 90001" +240029,AAA Batteries (4-pack),1,2.99,08/27/19 11:21,"848 Willow St, Dallas, TX 75001" +240030,27in 4K Gaming Monitor,1,389.99,08/20/19 19:10,"461 Pine St, New York City, NY 10001" +240031,Wired Headphones,2,11.99,08/02/19 18:36,"684 Park St, Los Angeles, CA 90001" +240032,USB-C Charging Cable,1,11.95,08/26/19 19:50,"778 Forest St, Seattle, WA 98101" +240033,AA Batteries (4-pack),1,3.84,08/26/19 22:06,"368 Willow St, San Francisco, CA 94016" +240034,Lightning Charging Cable,2,14.95,08/20/19 12:57,"675 Lake St, Los Angeles, CA 90001" +240035,34in Ultrawide Monitor,1,379.99,08/31/19 16:51,"249 9th St, New York City, NY 10001" +240036,iPhone,1,700,08/25/19 19:36,"926 Lakeview St, New York City, NY 10001" +240036,Lightning Charging Cable,1,14.95,08/25/19 19:36,"926 Lakeview St, New York City, NY 10001" +240037,20in Monitor,1,109.99,08/26/19 11:46,"99 South St, Boston, MA 02215" +240038,Wired Headphones,1,11.99,08/30/19 10:24,"539 Spruce St, San Francisco, CA 94016" +240039,USB-C Charging Cable,1,11.95,08/12/19 12:37,"246 Hill St, San Francisco, CA 94016" +240040,USB-C Charging Cable,1,11.95,08/03/19 01:47,"903 Center St, Boston, MA 02215" +240041,Bose SoundSport Headphones,1,99.99,08/01/19 11:34,"202 Lincoln St, Los Angeles, CA 90001" +240042,Lightning Charging Cable,1,14.95,08/16/19 18:13,"743 Cherry St, Los Angeles, CA 90001" +240043,Apple Airpods Headphones,1,150,08/30/19 21:28,"782 7th St, Los Angeles, CA 90001" +240044,Vareebadd Phone,1,400,08/21/19 11:44,"442 Washington St, San Francisco, CA 94016" +240045,Google Phone,1,600,08/23/19 14:39,"842 2nd St, San Francisco, CA 94016" +240046,AAA Batteries (4-pack),1,2.99,08/10/19 21:06,"180 Highland St, New York City, NY 10001" +240047,AA Batteries (4-pack),1,3.84,08/04/19 16:46,"471 Main St, Portland, OR 97035" +240048,Lightning Charging Cable,1,14.95,08/19/19 17:50,"976 Church St, Austin, TX 73301" +240049,Wired Headphones,1,11.99,08/08/19 17:51,"209 Wilson St, Los Angeles, CA 90001" +240050,AAA Batteries (4-pack),1,2.99,08/17/19 09:58,"175 Spruce St, San Francisco, CA 94016" +240051,USB-C Charging Cable,1,11.95,08/20/19 16:56,"13 Sunset St, San Francisco, CA 94016" +240052,20in Monitor,1,109.99,08/07/19 22:47,"479 12th St, San Francisco, CA 94016" +240053,Bose SoundSport Headphones,1,99.99,08/11/19 06:37,"487 Willow St, New York City, NY 10001" +240054,Wired Headphones,1,11.99,08/18/19 12:35,"191 6th St, Los Angeles, CA 90001" +240055,Google Phone,1,600,08/25/19 22:10,"391 Church St, New York City, NY 10001" +240056,Apple Airpods Headphones,1,150,08/29/19 19:22,"829 14th St, Portland, OR 97035" +240057,AA Batteries (4-pack),1,3.84,08/24/19 14:15,"518 Cherry St, Boston, MA 02215" +240058,USB-C Charging Cable,1,11.95,08/06/19 17:33,"897 6th St, San Francisco, CA 94016" +240059,Lightning Charging Cable,1,14.95,08/30/19 12:23,"692 Lincoln St, Atlanta, GA 30301" +240060,AA Batteries (4-pack),2,3.84,08/12/19 18:24,"306 8th St, Seattle, WA 98101" +240061,AA Batteries (4-pack),2,3.84,08/16/19 20:45,"214 Walnut St, New York City, NY 10001" +240062,Bose SoundSport Headphones,1,99.99,08/31/19 18:23,"761 West St, San Francisco, CA 94016" +240063,Wired Headphones,1,11.99,08/20/19 18:30,"262 Main St, San Francisco, CA 94016" +240064,27in FHD Monitor,1,149.99,08/20/19 16:57,"775 Hickory St, Los Angeles, CA 90001" +240065,USB-C Charging Cable,1,11.95,08/29/19 15:16,"602 Church St, Austin, TX 73301" +240066,Lightning Charging Cable,1,14.95,08/30/19 00:00,"640 Maple St, New York City, NY 10001" +240067,Macbook Pro Laptop,1,1700,08/29/19 19:21,"648 7th St, San Francisco, CA 94016" +240068,34in Ultrawide Monitor,1,379.99,08/24/19 18:23,"894 Jackson St, Boston, MA 02215" +240069,Wired Headphones,1,11.99,08/18/19 13:57,"978 Forest St, San Francisco, CA 94016" +240070,Lightning Charging Cable,1,14.95,08/31/19 00:17,"850 Lake St, Los Angeles, CA 90001" +240071,Bose SoundSport Headphones,1,99.99,08/17/19 14:05,"902 8th St, San Francisco, CA 94016" +240072,AA Batteries (4-pack),1,3.84,08/23/19 13:41,"373 Spruce St, New York City, NY 10001" +240073,AAA Batteries (4-pack),1,2.99,08/13/19 21:26,"465 Walnut St, Boston, MA 02215" +240074,Wired Headphones,1,11.99,08/17/19 01:27,"493 Johnson St, San Francisco, CA 94016" +240075,Lightning Charging Cable,2,14.95,08/09/19 20:46,"763 4th St, Los Angeles, CA 90001" +240076,AA Batteries (4-pack),2,3.84,08/26/19 16:30,"702 Highland St, Boston, MA 02215" +240077,Wired Headphones,1,11.99,08/10/19 12:27,"186 Willow St, New York City, NY 10001" +240078,Lightning Charging Cable,1,14.95,08/13/19 14:43,"215 Hickory St, Los Angeles, CA 90001" +240079,27in 4K Gaming Monitor,1,389.99,08/23/19 19:11,"365 Elm St, Atlanta, GA 30301" +240080,AA Batteries (4-pack),1,3.84,08/28/19 07:56,"915 Spruce St, San Francisco, CA 94016" +240081,USB-C Charging Cable,1,11.95,08/14/19 16:00,"795 14th St, New York City, NY 10001" +240082,AA Batteries (4-pack),2,3.84,08/19/19 21:40,"22 Main St, Los Angeles, CA 90001" +240083,iPhone,1,700,08/18/19 22:33,"219 Church St, Los Angeles, CA 90001" +240084,Bose SoundSport Headphones,1,99.99,08/20/19 20:19,"734 Adams St, New York City, NY 10001" +240085,Lightning Charging Cable,1,14.95,08/14/19 15:34,"879 Maple St, San Francisco, CA 94016" +240086,AA Batteries (4-pack),1,3.84,08/17/19 09:11,"188 Jefferson St, Los Angeles, CA 90001" +240087,USB-C Charging Cable,1,11.95,08/23/19 22:30,"998 7th St, Boston, MA 02215" +240088,Bose SoundSport Headphones,1,99.99,08/08/19 12:36,"793 Cherry St, Atlanta, GA 30301" +240089,Bose SoundSport Headphones,1,99.99,08/03/19 10:13,"780 Dogwood St, San Francisco, CA 94016" +240090,20in Monitor,1,109.99,08/06/19 00:58,"324 Park St, New York City, NY 10001" +240091,AA Batteries (4-pack),2,3.84,08/07/19 15:45,"978 Lake St, Atlanta, GA 30301" +240092,Lightning Charging Cable,1,14.95,08/22/19 06:43,"920 Lakeview St, Austin, TX 73301" +240093,USB-C Charging Cable,1,11.95,08/30/19 21:32,"438 Washington St, Boston, MA 02215" +240094,34in Ultrawide Monitor,1,379.99,08/20/19 01:06,"836 Spruce St, Dallas, TX 75001" +240095,AAA Batteries (4-pack),1,2.99,08/04/19 17:14,"125 Willow St, San Francisco, CA 94016" +240096,AAA Batteries (4-pack),1,2.99,08/21/19 16:43,"626 Ridge St, Los Angeles, CA 90001" +240097,ThinkPad Laptop,1,999.99,08/16/19 18:42,"294 Meadow St, Atlanta, GA 30301" +240098,iPhone,1,700,08/20/19 19:10,"277 Walnut St, San Francisco, CA 94016" +240099,27in 4K Gaming Monitor,1,389.99,08/20/19 20:06,"987 Lakeview St, San Francisco, CA 94016" +240100,USB-C Charging Cable,1,11.95,08/28/19 18:44,"528 Forest St, Portland, ME 04101" +240100,AAA Batteries (4-pack),1,2.99,08/28/19 18:44,"528 Forest St, Portland, ME 04101" +240101,AA Batteries (4-pack),1,3.84,08/12/19 12:33,"276 Ridge St, New York City, NY 10001" +240102,Wired Headphones,1,11.99,08/17/19 19:46,"211 7th St, Boston, MA 02215" +240103,Apple Airpods Headphones,1,150,08/12/19 16:37,"494 North St, San Francisco, CA 94016" +240104,Lightning Charging Cable,1,14.95,08/01/19 18:25,"417 Hill St, New York City, NY 10001" +240105,Wired Headphones,1,11.99,08/31/19 10:44,"586 South St, San Francisco, CA 94016" +240106,AA Batteries (4-pack),2,3.84,08/20/19 14:54,"923 13th St, San Francisco, CA 94016" +240107,USB-C Charging Cable,1,11.95,08/04/19 00:04,"17 Madison St, San Francisco, CA 94016" +240108,iPhone,1,700,08/08/19 17:04,"205 7th St, Los Angeles, CA 90001" +240109,AA Batteries (4-pack),1,3.84,08/19/19 11:02,"182 5th St, Atlanta, GA 30301" +240110,34in Ultrawide Monitor,1,379.99,08/14/19 07:56,"548 Forest St, San Francisco, CA 94016" +240111,Flatscreen TV,1,300,08/09/19 18:34,"88 2nd St, San Francisco, CA 94016" +240112,AAA Batteries (4-pack),2,2.99,08/20/19 14:01,"526 13th St, Austin, TX 73301" +240113,27in FHD Monitor,1,149.99,08/26/19 20:41,"313 2nd St, San Francisco, CA 94016" +240114,Apple Airpods Headphones,1,150,08/24/19 10:28,"471 Madison St, Dallas, TX 75001" +240115,34in Ultrawide Monitor,1,379.99,08/05/19 17:00,"269 2nd St, New York City, NY 10001" +240116,AA Batteries (4-pack),1,3.84,08/08/19 18:35,"863 11th St, New York City, NY 10001" +240117,Wired Headphones,1,11.99,08/02/19 12:04,"812 Madison St, San Francisco, CA 94016" +240118,AAA Batteries (4-pack),1,2.99,08/19/19 11:50,"521 Madison St, New York City, NY 10001" +240119,27in FHD Monitor,1,149.99,08/22/19 11:04,"314 6th St, Seattle, WA 98101" +240120,34in Ultrawide Monitor,1,379.99,08/27/19 11:01,"799 Meadow St, San Francisco, CA 94016" +240121,27in FHD Monitor,1,149.99,08/28/19 19:27,"603 Lincoln St, Los Angeles, CA 90001" +240122,AAA Batteries (4-pack),1,2.99,08/08/19 18:37,"146 13th St, Los Angeles, CA 90001" +240123,Bose SoundSport Headphones,1,99.99,08/19/19 05:12,"797 14th St, New York City, NY 10001" +240124,AAA Batteries (4-pack),1,2.99,08/13/19 16:35,"314 12th St, Portland, OR 97035" +240125,Macbook Pro Laptop,1,1700,08/17/19 12:57,"359 South St, Boston, MA 02215" +240126,AA Batteries (4-pack),1,3.84,08/06/19 21:56,"91 9th St, Boston, MA 02215" +240127,Google Phone,1,600,08/29/19 07:46,"216 North St, Atlanta, GA 30301" +240128,Apple Airpods Headphones,1,150,08/30/19 23:33,"951 Ridge St, San Francisco, CA 94016" +240129,20in Monitor,1,109.99,08/23/19 14:50,"165 Willow St, Los Angeles, CA 90001" +240130,Lightning Charging Cable,1,14.95,08/06/19 11:50,"641 Walnut St, San Francisco, CA 94016" +240131,USB-C Charging Cable,1,11.95,08/02/19 23:01,"135 Jefferson St, Los Angeles, CA 90001" +240132,Lightning Charging Cable,1,14.95,08/08/19 22:25,"768 South St, Dallas, TX 75001" +240133,Wired Headphones,1,11.99,08/15/19 09:37,"842 South St, Dallas, TX 75001" +240134,AAA Batteries (4-pack),1,2.99,08/03/19 18:35,"903 2nd St, Austin, TX 73301" +240134,Wired Headphones,1,11.99,08/03/19 18:35,"903 2nd St, Austin, TX 73301" +240135,USB-C Charging Cable,1,11.95,08/27/19 22:03,"865 North St, Atlanta, GA 30301" +240136,Vareebadd Phone,1,400,08/17/19 15:53,"4 Pine St, San Francisco, CA 94016" +240137,27in FHD Monitor,1,149.99,08/13/19 19:52,"681 Hickory St, Los Angeles, CA 90001" +240138,AA Batteries (4-pack),1,3.84,08/03/19 19:10,"693 Dogwood St, Portland, ME 04101" +240139,34in Ultrawide Monitor,1,379.99,08/26/19 14:41,"49 14th St, Seattle, WA 98101" +240140,Lightning Charging Cable,1,14.95,08/13/19 11:46,"592 8th St, Portland, OR 97035" +240141,AAA Batteries (4-pack),1,2.99,08/19/19 19:00,"778 Center St, New York City, NY 10001" +240142,AA Batteries (4-pack),1,3.84,08/08/19 21:03,"739 Ridge St, New York City, NY 10001" +240143,Wired Headphones,1,11.99,08/31/19 12:53,"246 Park St, Seattle, WA 98101" +240144,Macbook Pro Laptop,1,1700,08/10/19 07:20,"59 14th St, Austin, TX 73301" +240145,Google Phone,1,600,08/28/19 11:36,"191 6th St, Los Angeles, CA 90001" +240145,Bose SoundSport Headphones,1,99.99,08/28/19 11:36,"191 6th St, Los Angeles, CA 90001" +240146,AAA Batteries (4-pack),2,2.99,08/06/19 10:42,"467 Dogwood St, Los Angeles, CA 90001" +240147,Wired Headphones,1,11.99,08/25/19 15:18,"110 Adams St, New York City, NY 10001" +240148,27in FHD Monitor,1,149.99,08/21/19 00:12,"132 1st St, Seattle, WA 98101" +240149,27in FHD Monitor,1,149.99,08/30/19 18:22,"921 13th St, San Francisco, CA 94016" +240150,AAA Batteries (4-pack),2,2.99,08/10/19 07:55,"234 Madison St, Los Angeles, CA 90001" +240151,Flatscreen TV,1,300,08/01/19 12:36,"757 Highland St, San Francisco, CA 94016" +240152,Lightning Charging Cable,1,14.95,08/18/19 18:08,"116 Ridge St, Dallas, TX 75001" +240153,Macbook Pro Laptop,1,1700,08/02/19 20:02,"652 12th St, Seattle, WA 98101" +240154,USB-C Charging Cable,1,11.95,08/02/19 18:33,"644 10th St, Austin, TX 73301" +240155,Bose SoundSport Headphones,1,99.99,08/04/19 23:38,"492 Chestnut St, San Francisco, CA 94016" +240156,Google Phone,1,600,08/19/19 16:44,"103 Adams St, San Francisco, CA 94016" +240157,AA Batteries (4-pack),2,3.84,08/25/19 13:09,"167 Lincoln St, Seattle, WA 98101" +240158,AA Batteries (4-pack),2,3.84,08/10/19 11:53,"508 6th St, Atlanta, GA 30301" +240159,Flatscreen TV,1,300,08/12/19 10:04,"114 13th St, Seattle, WA 98101" +240160,AAA Batteries (4-pack),1,2.99,08/24/19 18:12,"929 Elm St, Los Angeles, CA 90001" +240161,Wired Headphones,1,11.99,08/20/19 12:30,"292 Ridge St, Boston, MA 02215" +240162,Lightning Charging Cable,1,14.95,08/28/19 05:51,"483 Forest St, Dallas, TX 75001" +240163,Wired Headphones,1,11.99,08/24/19 16:46,"268 Chestnut St, Seattle, WA 98101" +240164,Bose SoundSport Headphones,1,99.99,08/01/19 17:45,"956 Sunset St, Austin, TX 73301" +240165,Apple Airpods Headphones,1,150,08/05/19 00:12,"193 Spruce St, Atlanta, GA 30301" +240166,27in 4K Gaming Monitor,1,389.99,08/06/19 09:43,"133 Cedar St, Seattle, WA 98101" +240167,ThinkPad Laptop,1,999.99,08/26/19 17:34,"683 Lincoln St, Los Angeles, CA 90001" +240168,27in 4K Gaming Monitor,1,389.99,08/08/19 15:19,"168 Church St, Portland, OR 97035" +240169,27in 4K Gaming Monitor,1,389.99,08/09/19 19:37,"601 12th St, San Francisco, CA 94016" +240170,AAA Batteries (4-pack),1,2.99,08/29/19 20:18,"781 7th St, New York City, NY 10001" +240171,AAA Batteries (4-pack),3,2.99,08/17/19 09:33,"234 Center St, New York City, NY 10001" +240172,AA Batteries (4-pack),1,3.84,08/15/19 19:38,"200 Highland St, Austin, TX 73301" +240173,AAA Batteries (4-pack),4,2.99,08/03/19 11:56,"519 Pine St, New York City, NY 10001" +240174,AAA Batteries (4-pack),2,2.99,08/21/19 10:46,"136 Hill St, Austin, TX 73301" +240175,Wired Headphones,1,11.99,08/25/19 11:40,"150 13th St, New York City, NY 10001" +240176,20in Monitor,1,109.99,08/20/19 20:28,"209 Johnson St, Los Angeles, CA 90001" +240177,Vareebadd Phone,1,400,08/16/19 21:41,"356 13th St, Los Angeles, CA 90001" +240178,AA Batteries (4-pack),1,3.84,08/17/19 15:19,"371 North St, Los Angeles, CA 90001" +240179,USB-C Charging Cable,1,11.95,08/09/19 20:24,"202 Jefferson St, Dallas, TX 75001" +240180,27in 4K Gaming Monitor,1,389.99,08/02/19 17:21,"391 Lakeview St, San Francisco, CA 94016" +240181,20in Monitor,1,109.99,08/17/19 10:30,"990 Jackson St, San Francisco, CA 94016" +240182,27in 4K Gaming Monitor,1,389.99,08/18/19 10:52,"178 South St, Portland, OR 97035" +240183,Apple Airpods Headphones,1,150,08/30/19 07:16,"928 Center St, New York City, NY 10001" +240184,AAA Batteries (4-pack),2,2.99,08/25/19 22:12,"879 1st St, Atlanta, GA 30301" +240185,20in Monitor,1,109.99,08/05/19 15:54,"780 Sunset St, Atlanta, GA 30301" +240186,27in FHD Monitor,1,149.99,08/04/19 22:16,"577 Ridge St, Boston, MA 02215" +240187,Wired Headphones,1,11.99,08/18/19 19:58,"775 Church St, Boston, MA 02215" +240188,Apple Airpods Headphones,1,150,08/25/19 22:42,"554 Forest St, Seattle, WA 98101" +240189,AA Batteries (4-pack),1,3.84,08/12/19 16:54,"424 12th St, San Francisco, CA 94016" +240190,Bose SoundSport Headphones,1,99.99,08/11/19 22:52,"232 5th St, New York City, NY 10001" +240191,Apple Airpods Headphones,1,150,08/14/19 13:30,"52 11th St, Atlanta, GA 30301" +240192,27in 4K Gaming Monitor,1,389.99,08/06/19 20:51,"353 Spruce St, San Francisco, CA 94016" +240193,34in Ultrawide Monitor,1,379.99,08/26/19 15:44,"903 Highland St, Austin, TX 73301" +240194,Wired Headphones,1,11.99,08/04/19 18:02,"205 10th St, Dallas, TX 75001" +240195,Wired Headphones,1,11.99,08/25/19 11:19,"964 6th St, Boston, MA 02215" +240196,USB-C Charging Cable,1,11.95,08/16/19 06:46,"123 River St, Austin, TX 73301" +240197,AA Batteries (4-pack),1,3.84,08/06/19 11:00,"149 11th St, New York City, NY 10001" +240198,27in 4K Gaming Monitor,1,389.99,08/22/19 21:08,"869 Jackson St, Seattle, WA 98101" +240199,Apple Airpods Headphones,1,150,08/31/19 09:32,"201 Chestnut St, San Francisco, CA 94016" +240200,Wired Headphones,1,11.99,08/21/19 18:10,"225 8th St, Austin, TX 73301" +240201,Apple Airpods Headphones,1,150,08/06/19 21:31,"270 13th St, Austin, TX 73301" +240202,Wired Headphones,1,11.99,08/04/19 07:13,"564 Main St, Dallas, TX 75001" +240203,iPhone,1,700,08/21/19 18:55,"369 1st St, Austin, TX 73301" +240203,Lightning Charging Cable,1,14.95,08/21/19 18:55,"369 1st St, Austin, TX 73301" +240204,27in 4K Gaming Monitor,1,389.99,08/14/19 23:35,"505 12th St, Atlanta, GA 30301" +240205,Wired Headphones,1,11.99,08/02/19 13:12,"18 Elm St, New York City, NY 10001" +240206,AA Batteries (4-pack),3,3.84,08/18/19 20:22,"819 7th St, San Francisco, CA 94016" +240207,Lightning Charging Cable,1,14.95,08/08/19 14:19,"645 Park St, Portland, OR 97035" +240208,AAA Batteries (4-pack),2,2.99,08/10/19 14:48,"785 12th St, Los Angeles, CA 90001" +240209,ThinkPad Laptop,1,999.99,08/07/19 00:29,"439 10th St, San Francisco, CA 94016" +240210,AA Batteries (4-pack),2,3.84,08/01/19 15:55,"609 11th St, Dallas, TX 75001" +240211,Wired Headphones,1,11.99,08/09/19 14:40,"69 Willow St, Los Angeles, CA 90001" +240212,27in FHD Monitor,1,149.99,08/14/19 21:03,"202 Wilson St, Atlanta, GA 30301" +240213,Lightning Charging Cable,1,14.95,08/31/19 20:06,"736 Pine St, San Francisco, CA 94016" +240214,Flatscreen TV,1,300,08/10/19 11:55,"689 8th St, New York City, NY 10001" +240215,Wired Headphones,1,11.99,08/31/19 08:00,"448 Ridge St, San Francisco, CA 94016" +240216,Apple Airpods Headphones,1,150,08/26/19 14:58,"561 Elm St, Dallas, TX 75001" +240217,Google Phone,1,600,08/31/19 10:01,"372 Dogwood St, New York City, NY 10001" +240218,Bose SoundSport Headphones,1,99.99,08/19/19 19:36,"672 4th St, Portland, OR 97035" +240219,Lightning Charging Cable,1,14.95,08/18/19 12:04,"880 Dogwood St, San Francisco, CA 94016" +240220,Bose SoundSport Headphones,1,99.99,08/18/19 20:50,"361 Cherry St, San Francisco, CA 94016" +240221,Lightning Charging Cable,1,14.95,08/02/19 20:40,"37 Lakeview St, San Francisco, CA 94016" +240222,Apple Airpods Headphones,1,150,08/20/19 10:50,"947 Jackson St, San Francisco, CA 94016" +240223,Macbook Pro Laptop,1,1700,08/30/19 12:48,"980 River St, San Francisco, CA 94016" +240224,Wired Headphones,1,11.99,08/23/19 13:11,"921 11th St, Portland, OR 97035" +240225,Macbook Pro Laptop,1,1700,08/08/19 23:35,"997 12th St, Austin, TX 73301" +240226,Lightning Charging Cable,1,14.95,08/16/19 19:13,"707 Lakeview St, Boston, MA 02215" +240227,34in Ultrawide Monitor,1,379.99,08/25/19 18:01,"657 8th St, New York City, NY 10001" +240228,AAA Batteries (4-pack),1,2.99,08/23/19 15:20,"380 South St, San Francisco, CA 94016" +240229,AAA Batteries (4-pack),1,2.99,08/27/19 00:17,"65 Cedar St, New York City, NY 10001" +240230,USB-C Charging Cable,1,11.95,08/19/19 11:57,"913 Lake St, Los Angeles, CA 90001" +240231,AAA Batteries (4-pack),1,2.99,08/22/19 13:24,"191 Lake St, San Francisco, CA 94016" +240232,Wired Headphones,1,11.99,08/14/19 07:30,"815 7th St, Los Angeles, CA 90001" +240233,AAA Batteries (4-pack),2,2.99,08/24/19 10:56,"50 Johnson St, Boston, MA 02215" +240234,Apple Airpods Headphones,1,150,08/02/19 16:04,"151 Chestnut St, Dallas, TX 75001" +240235,AAA Batteries (4-pack),1,2.99,08/23/19 19:36,"375 North St, San Francisco, CA 94016" +240236,Google Phone,1,600,08/30/19 13:26,"689 Center St, Portland, ME 04101" +240237,Bose SoundSport Headphones,1,99.99,08/19/19 19:07,"147 Cherry St, Dallas, TX 75001" +240238,20in Monitor,1,109.99,08/29/19 14:20,"740 Adams St, San Francisco, CA 94016" +240239,34in Ultrawide Monitor,1,379.99,08/05/19 12:13,"38 Jefferson St, San Francisco, CA 94016" +240240,Lightning Charging Cable,1,14.95,08/31/19 13:22,"220 North St, San Francisco, CA 94016" +240240,27in 4K Gaming Monitor,1,389.99,08/31/19 13:22,"220 North St, San Francisco, CA 94016" +240241,Wired Headphones,1,11.99,08/31/19 12:39,"8 Madison St, Atlanta, GA 30301" +240242,ThinkPad Laptop,1,999.99,08/07/19 23:09,"38 Chestnut St, San Francisco, CA 94016" +240243,Bose SoundSport Headphones,1,99.99,08/02/19 16:13,"849 Sunset St, Boston, MA 02215" +240244,Apple Airpods Headphones,1,150,08/28/19 22:07,"836 Center St, New York City, NY 10001" +240245,27in 4K Gaming Monitor,1,389.99,08/02/19 18:57,"606 Elm St, San Francisco, CA 94016" +240246,Vareebadd Phone,1,400,08/01/19 14:25,"9 Jefferson St, San Francisco, CA 94016" +240247,Bose SoundSport Headphones,1,99.99,08/10/19 10:52,"499 Wilson St, New York City, NY 10001" +240248,AA Batteries (4-pack),1,3.84,08/11/19 13:29,"827 Lincoln St, Los Angeles, CA 90001" +240249,USB-C Charging Cable,1,11.95,08/06/19 10:04,"319 Elm St, Seattle, WA 98101" +240250,AA Batteries (4-pack),2,3.84,08/08/19 13:07,"285 Maple St, San Francisco, CA 94016" +240251,Lightning Charging Cable,1,14.95,08/15/19 17:20,"19 Center St, Los Angeles, CA 90001" +240252,USB-C Charging Cable,1,11.95,08/22/19 10:29,"914 Madison St, New York City, NY 10001" +240253,Bose SoundSport Headphones,1,99.99,08/18/19 11:29,"775 Lakeview St, San Francisco, CA 94016" +240254,AA Batteries (4-pack),1,3.84,08/15/19 19:23,"778 Jackson St, Portland, OR 97035" +240255,Bose SoundSport Headphones,1,99.99,08/01/19 08:28,"455 12th St, Los Angeles, CA 90001" +240256,AA Batteries (4-pack),5,3.84,08/24/19 21:49,"441 Highland St, Atlanta, GA 30301" +240257,Wired Headphones,1,11.99,08/06/19 21:26,"380 Lakeview St, New York City, NY 10001" +240258,27in 4K Gaming Monitor,1,389.99,08/29/19 08:38,"716 Hill St, Los Angeles, CA 90001" +240259,Flatscreen TV,1,300,08/28/19 13:05,"557 8th St, San Francisco, CA 94016" +240260,AA Batteries (4-pack),2,3.84,08/04/19 06:07,"838 North St, Los Angeles, CA 90001" +240261,Wired Headphones,1,11.99,08/09/19 11:12,"574 8th St, San Francisco, CA 94016" +240262,Lightning Charging Cable,1,14.95,08/05/19 21:03,"782 Walnut St, New York City, NY 10001" +240263,Apple Airpods Headphones,1,150,08/15/19 22:32,"439 Meadow St, San Francisco, CA 94016" +240264,AA Batteries (4-pack),1,3.84,08/17/19 22:29,"961 Jefferson St, San Francisco, CA 94016" +240265,Bose SoundSport Headphones,1,99.99,08/29/19 22:15,"83 Lakeview St, Dallas, TX 75001" +240266,Wired Headphones,2,11.99,08/13/19 14:33,"490 Lake St, Atlanta, GA 30301" +240267,AAA Batteries (4-pack),1,2.99,08/15/19 14:05,"349 Willow St, Boston, MA 02215" +240268,Vareebadd Phone,1,400,08/18/19 18:09,"294 13th St, Los Angeles, CA 90001" +240269,27in 4K Gaming Monitor,1,389.99,08/27/19 20:21,"463 Meadow St, Boston, MA 02215" +240270,AAA Batteries (4-pack),1,2.99,08/09/19 15:24,"585 Church St, Portland, OR 97035" +240271,Bose SoundSport Headphones,1,99.99,08/16/19 13:17,"130 10th St, Los Angeles, CA 90001" +240272,Wired Headphones,1,11.99,08/20/19 20:47,"523 Chestnut St, Atlanta, GA 30301" +240273,USB-C Charging Cable,1,11.95,08/28/19 10:24,"145 8th St, Atlanta, GA 30301" +240274,AAA Batteries (4-pack),1,2.99,08/05/19 16:00,"480 Madison St, San Francisco, CA 94016" +240275,AAA Batteries (4-pack),1,2.99,08/06/19 22:22,"835 West St, Seattle, WA 98101" +240276,27in FHD Monitor,1,149.99,08/17/19 00:50,"212 River St, San Francisco, CA 94016" +240277,Wired Headphones,1,11.99,08/24/19 20:34,"101 13th St, San Francisco, CA 94016" +240278,27in 4K Gaming Monitor,1,389.99,08/17/19 23:18,"735 Wilson St, Los Angeles, CA 90001" +240279,20in Monitor,1,109.99,08/23/19 20:58,"11 5th St, Seattle, WA 98101" +240280,20in Monitor,1,109.99,08/25/19 19:52,"353 Lake St, Los Angeles, CA 90001" +240281,27in FHD Monitor,1,149.99,08/13/19 14:21,"662 Pine St, Atlanta, GA 30301" +240282,20in Monitor,1,109.99,08/07/19 00:54,"903 Spruce St, New York City, NY 10001" +240283,AAA Batteries (4-pack),1,2.99,08/04/19 18:57,"332 Washington St, Los Angeles, CA 90001" +240284,Macbook Pro Laptop,1,1700,08/20/19 07:22,"658 8th St, Los Angeles, CA 90001" +240285,Apple Airpods Headphones,1,150,08/08/19 00:04,"785 Wilson St, New York City, NY 10001" +240286,AA Batteries (4-pack),1,3.84,08/22/19 20:43,"87 5th St, New York City, NY 10001" +240287,AA Batteries (4-pack),2,3.84,08/30/19 07:08,"426 Johnson St, Portland, OR 97035" +240288,ThinkPad Laptop,1,999.99,08/02/19 05:41,"953 Lake St, San Francisco, CA 94016" +240289,ThinkPad Laptop,1,999.99,08/22/19 18:21,"379 8th St, Los Angeles, CA 90001" +240290,Macbook Pro Laptop,1,1700,08/07/19 18:51,"177 River St, Los Angeles, CA 90001" +240291,Lightning Charging Cable,1,14.95,08/27/19 17:39,"794 12th St, San Francisco, CA 94016" +240292,Apple Airpods Headphones,1,150,08/11/19 23:34,"677 9th St, Seattle, WA 98101" +240293,Google Phone,1,600,08/25/19 16:40,"673 North St, Los Angeles, CA 90001" +240293,USB-C Charging Cable,1,11.95,08/25/19 16:40,"673 North St, Los Angeles, CA 90001" +240293,Bose SoundSport Headphones,1,99.99,08/25/19 16:40,"673 North St, Los Angeles, CA 90001" +240294,ThinkPad Laptop,1,999.99,08/30/19 19:46,"139 Highland St, Los Angeles, CA 90001" +240295,Macbook Pro Laptop,1,1700,08/01/19 20:03,"746 Church St, Atlanta, GA 30301" +240296,Apple Airpods Headphones,1,150,08/28/19 19:08,"625 9th St, San Francisco, CA 94016" +240297,AA Batteries (4-pack),1,3.84,08/27/19 17:00,"896 Adams St, San Francisco, CA 94016" +240298,USB-C Charging Cable,1,11.95,08/05/19 18:40,"265 Maple St, Los Angeles, CA 90001" +240299,Macbook Pro Laptop,1,1700,08/14/19 13:45,"666 12th St, San Francisco, CA 94016" +240300,Wired Headphones,1,11.99,08/20/19 12:08,"917 13th St, Los Angeles, CA 90001" +240301,USB-C Charging Cable,1,11.95,08/24/19 08:09,"745 Willow St, Los Angeles, CA 90001" +240302,20in Monitor,1,109.99,08/05/19 09:12,"375 Ridge St, Dallas, TX 75001" +240303,27in FHD Monitor,1,149.99,08/16/19 11:49,"337 Highland St, Boston, MA 02215" +240304,ThinkPad Laptop,1,999.99,08/23/19 23:15,"811 Walnut St, Boston, MA 02215" +240305,USB-C Charging Cable,1,11.95,08/17/19 23:27,"541 Park St, San Francisco, CA 94016" +240306,USB-C Charging Cable,1,11.95,08/10/19 18:12,"856 River St, Los Angeles, CA 90001" +240307,Wired Headphones,1,11.99,08/31/19 16:40,"956 Church St, Boston, MA 02215" +240308,27in FHD Monitor,1,149.99,08/29/19 19:39,"727 Forest St, San Francisco, CA 94016" +240309,AA Batteries (4-pack),1,3.84,08/02/19 22:08,"363 Park St, Boston, MA 02215" +240310,Google Phone,1,600,08/06/19 16:55,"973 Center St, Seattle, WA 98101" +240311,iPhone,1,700,08/15/19 19:00,"684 Jefferson St, Boston, MA 02215" +240312,Flatscreen TV,1,300,08/02/19 12:27,"742 Park St, Los Angeles, CA 90001" +240313,Macbook Pro Laptop,1,1700,08/13/19 21:31,"232 Dogwood St, Boston, MA 02215" +240314,AAA Batteries (4-pack),1,2.99,08/01/19 08:21,"923 Johnson St, Boston, MA 02215" +240315,Wired Headphones,1,11.99,08/26/19 19:01,"288 Meadow St, Dallas, TX 75001" +240316,Wired Headphones,1,11.99,08/06/19 14:50,"746 Dogwood St, Los Angeles, CA 90001" +240317,ThinkPad Laptop,1,999.99,08/06/19 10:06,"647 1st St, Austin, TX 73301" +240318,Wired Headphones,1,11.99,08/12/19 23:03,"762 11th St, Austin, TX 73301" +240319,Flatscreen TV,1,300,08/29/19 14:45,"384 Center St, Seattle, WA 98101" +240320,Lightning Charging Cable,1,14.95,08/20/19 16:14,"238 Hill St, Portland, OR 97035" +240321,Apple Airpods Headphones,1,150,08/14/19 13:22,"837 Pine St, Seattle, WA 98101" +240322,Apple Airpods Headphones,1,150,08/02/19 07:56,"740 2nd St, Seattle, WA 98101" +240323,Wired Headphones,2,11.99,08/14/19 05:54,"821 South St, New York City, NY 10001" +240324,Lightning Charging Cable,1,14.95,08/27/19 05:15,"197 5th St, Atlanta, GA 30301" +240325,AAA Batteries (4-pack),3,2.99,08/16/19 09:47,"308 Lakeview St, Atlanta, GA 30301" +240326,Google Phone,1,600,08/22/19 23:57,"869 Lake St, Los Angeles, CA 90001" +240326,USB-C Charging Cable,1,11.95,08/22/19 23:57,"869 Lake St, Los Angeles, CA 90001" +240327,iPhone,1,700,08/15/19 10:56,"100 Pine St, San Francisco, CA 94016" +240327,Wired Headphones,1,11.99,08/15/19 10:56,"100 Pine St, San Francisco, CA 94016" +240327,Bose SoundSport Headphones,1,99.99,08/15/19 10:56,"100 Pine St, San Francisco, CA 94016" +240328,Apple Airpods Headphones,1,150,08/25/19 08:40,"988 Lincoln St, San Francisco, CA 94016" +240329,Apple Airpods Headphones,1,150,08/20/19 18:05,"36 8th St, Austin, TX 73301" +240330,Flatscreen TV,1,300,08/15/19 11:24,"279 Jefferson St, New York City, NY 10001" +240331,AAA Batteries (4-pack),1,2.99,08/25/19 20:46,"6 Jefferson St, Austin, TX 73301" +240332,AAA Batteries (4-pack),1,2.99,08/30/19 18:53,"212 Maple St, San Francisco, CA 94016" +240333,AAA Batteries (4-pack),1,2.99,08/12/19 13:54,"675 Sunset St, Dallas, TX 75001" +240334,Wired Headphones,1,11.99,08/24/19 10:36,"670 Walnut St, San Francisco, CA 94016" +240335,Bose SoundSport Headphones,1,99.99,08/13/19 20:49,"514 Park St, Seattle, WA 98101" +240336,AAA Batteries (4-pack),1,2.99,08/16/19 10:57,"893 5th St, Seattle, WA 98101" +240337,AA Batteries (4-pack),1,3.84,08/24/19 20:59,"552 5th St, Atlanta, GA 30301" +240338,Wired Headphones,2,11.99,08/09/19 13:47,"958 Spruce St, Boston, MA 02215" +240339,USB-C Charging Cable,1,11.95,08/29/19 10:53,"45 Cherry St, Los Angeles, CA 90001" +240340,ThinkPad Laptop,1,999.99,08/08/19 00:33,"835 6th St, Boston, MA 02215" +240341,Google Phone,1,600,08/02/19 00:12,"779 5th St, Los Angeles, CA 90001" +240341,Bose SoundSport Headphones,1,99.99,08/02/19 00:12,"779 5th St, Los Angeles, CA 90001" +240341,Wired Headphones,1,11.99,08/02/19 00:12,"779 5th St, Los Angeles, CA 90001" +240342,Wired Headphones,1,11.99,08/12/19 11:48,"529 Pine St, New York City, NY 10001" +240343,Wired Headphones,1,11.99,08/29/19 12:45,"383 8th St, Boston, MA 02215" +240344,Google Phone,1,600,08/03/19 21:13,"153 Spruce St, New York City, NY 10001" +240345,Wired Headphones,1,11.99,08/06/19 19:57,"567 Lake St, Los Angeles, CA 90001" +240346,Lightning Charging Cable,1,14.95,08/15/19 16:45,"281 Hill St, San Francisco, CA 94016" +240347,Wired Headphones,1,11.99,08/27/19 10:12,"219 Madison St, Los Angeles, CA 90001" +240348,Lightning Charging Cable,2,14.95,08/20/19 20:39,"2 Lincoln St, Dallas, TX 75001" +240349,AAA Batteries (4-pack),1,2.99,08/23/19 12:02,"775 Meadow St, Boston, MA 02215" +240350,Google Phone,1,600,08/14/19 21:25,"603 13th St, Atlanta, GA 30301" +240350,USB-C Charging Cable,1,11.95,08/14/19 21:25,"603 13th St, Atlanta, GA 30301" +240351,AA Batteries (4-pack),1,3.84,08/28/19 11:09,"104 Adams St, Atlanta, GA 30301" +240352,AAA Batteries (4-pack),1,2.99,08/25/19 19:01,"818 13th St, Seattle, WA 98101" +240353,ThinkPad Laptop,1,999.99,08/07/19 17:24,"455 North St, Atlanta, GA 30301" +240354,Bose SoundSport Headphones,1,99.99,08/17/19 18:42,"302 Park St, New York City, NY 10001" +240355,Macbook Pro Laptop,1,1700,08/10/19 12:13,"534 Meadow St, Atlanta, GA 30301" +240356,USB-C Charging Cable,1,11.95,08/21/19 14:45,"446 2nd St, Los Angeles, CA 90001" +240357,Apple Airpods Headphones,1,150,08/24/19 00:37,"135 Hickory St, San Francisco, CA 94016" +240358,USB-C Charging Cable,1,11.95,08/14/19 17:47,"683 13th St, Los Angeles, CA 90001" +240359,Lightning Charging Cable,1,14.95,08/06/19 10:13,"565 6th St, San Francisco, CA 94016" +240360,AA Batteries (4-pack),1,3.84,08/26/19 12:19,"534 2nd St, Los Angeles, CA 90001" +240361,Apple Airpods Headphones,1,150,08/05/19 14:19,"581 Elm St, New York City, NY 10001" +240362,AA Batteries (4-pack),1,3.84,08/08/19 08:43,"388 Elm St, New York City, NY 10001" +240363,27in 4K Gaming Monitor,1,389.99,08/30/19 02:44,"224 Willow St, Seattle, WA 98101" +,,,,, +240364,USB-C Charging Cable,2,11.95,08/06/19 00:44,"949 5th St, Dallas, TX 75001" +240365,AA Batteries (4-pack),1,3.84,08/24/19 12:39,"384 Dogwood St, Boston, MA 02215" +240366,27in FHD Monitor,1,149.99,08/19/19 23:55,"123 Pine St, Austin, TX 73301" +240367,27in FHD Monitor,1,149.99,08/20/19 18:55,"723 2nd St, San Francisco, CA 94016" +240368,AAA Batteries (4-pack),3,2.99,08/10/19 21:32,"431 Chestnut St, Atlanta, GA 30301" +240369,AAA Batteries (4-pack),1,2.99,08/22/19 00:43,"587 Dogwood St, New York City, NY 10001" +240370,Lightning Charging Cable,1,14.95,08/05/19 12:09,"322 Maple St, Austin, TX 73301" +240371,27in 4K Gaming Monitor,1,389.99,08/28/19 14:11,"949 Hill St, Dallas, TX 75001" +240372,27in FHD Monitor,1,149.99,09/01/19 05:57,"15 8th St, New York City, NY 10001" +240373,Bose SoundSport Headphones,1,99.99,08/23/19 11:43,"417 Sunset St, San Francisco, CA 94016" +240374,Apple Airpods Headphones,1,150,08/23/19 18:14,"839 Chestnut St, San Francisco, CA 94016" +240375,USB-C Charging Cable,1,11.95,08/28/19 09:30,"813 6th St, Boston, MA 02215" +240376,AAA Batteries (4-pack),1,2.99,08/17/19 16:10,"671 Ridge St, San Francisco, CA 94016" +240377,iPhone,1,700,08/25/19 14:46,"892 Maple St, New York City, NY 10001" +240377,Lightning Charging Cable,1,14.95,08/25/19 14:46,"892 Maple St, New York City, NY 10001" +240377,Wired Headphones,1,11.99,08/25/19 14:46,"892 Maple St, New York City, NY 10001" +240378,USB-C Charging Cable,2,11.95,08/26/19 14:36,"44 Ridge St, Portland, OR 97035" +240379,Lightning Charging Cable,1,14.95,08/13/19 19:45,"307 Chestnut St, Atlanta, GA 30301" +240380,Google Phone,1,600,09/01/19 01:10,"192 7th St, Los Angeles, CA 90001" +240380,Wired Headphones,1,11.99,09/01/19 01:10,"192 7th St, Los Angeles, CA 90001" +240381,USB-C Charging Cable,1,11.95,08/08/19 14:02,"510 Elm St, Atlanta, GA 30301" +240382,iPhone,1,700,08/29/19 11:01,"98 12th St, Austin, TX 73301" +240383,Lightning Charging Cable,1,14.95,08/16/19 17:26,"670 Hickory St, Austin, TX 73301" +240384,USB-C Charging Cable,1,11.95,08/03/19 19:42,"259 Sunset St, New York City, NY 10001" +240385,Lightning Charging Cable,1,14.95,08/05/19 19:22,"51 Jefferson St, Seattle, WA 98101" +240386,USB-C Charging Cable,1,11.95,08/09/19 11:28,"907 Washington St, Atlanta, GA 30301" +240387,AA Batteries (4-pack),1,3.84,08/23/19 12:33,"758 Lake St, New York City, NY 10001" +240388,AA Batteries (4-pack),1,3.84,08/17/19 13:04,"599 Hill St, San Francisco, CA 94016" +240389,iPhone,1,700,08/16/19 11:11,"362 Jefferson St, Boston, MA 02215" +240390,AAA Batteries (4-pack),1,2.99,08/26/19 08:09,"209 Lakeview St, Portland, OR 97035" +240391,Bose SoundSport Headphones,1,99.99,08/01/19 16:37,"637 Jackson St, Dallas, TX 75001" +240392,USB-C Charging Cable,1,11.95,08/07/19 15:21,"829 Wilson St, New York City, NY 10001" +240393,Lightning Charging Cable,2,14.95,08/13/19 09:04,"924 Adams St, Los Angeles, CA 90001" +240394,Apple Airpods Headphones,1,150,08/27/19 10:15,"75 4th St, Boston, MA 02215" +240395,Bose SoundSport Headphones,1,99.99,08/19/19 14:03,"745 Johnson St, Atlanta, GA 30301" +240396,Wired Headphones,1,11.99,08/26/19 14:04,"220 Lake St, Los Angeles, CA 90001" +240397,Apple Airpods Headphones,1,150,08/14/19 14:03,"849 Center St, New York City, NY 10001" +240398,USB-C Charging Cable,1,11.95,08/25/19 22:07,"483 4th St, New York City, NY 10001" +240399,AA Batteries (4-pack),1,3.84,08/23/19 20:29,"649 5th St, San Francisco, CA 94016" +240400,USB-C Charging Cable,1,11.95,08/02/19 16:23,"654 Elm St, Dallas, TX 75001" +240401,20in Monitor,1,109.99,08/03/19 18:40,"587 South St, New York City, NY 10001" +240402,27in 4K Gaming Monitor,1,389.99,08/03/19 10:07,"739 Lincoln St, Los Angeles, CA 90001" +240403,Apple Airpods Headphones,1,150,08/21/19 17:31,"980 Park St, Atlanta, GA 30301" +240404,Macbook Pro Laptop,1,1700,08/12/19 18:53,"198 Washington St, Seattle, WA 98101" +240405,Wired Headphones,1,11.99,08/06/19 13:12,"865 Maple St, Dallas, TX 75001" +240406,34in Ultrawide Monitor,1,379.99,08/08/19 18:06,"230 Maple St, Boston, MA 02215" +240407,Macbook Pro Laptop,1,1700,08/09/19 13:19,"868 10th St, San Francisco, CA 94016" +240408,AA Batteries (4-pack),1,3.84,08/06/19 16:57,"699 13th St, Dallas, TX 75001" +240409,AA Batteries (4-pack),3,3.84,08/28/19 11:34,"694 14th St, Austin, TX 73301" +240410,Apple Airpods Headphones,1,150,08/04/19 17:56,"754 13th St, Seattle, WA 98101" +240411,USB-C Charging Cable,1,11.95,08/23/19 09:46,"284 Walnut St, Los Angeles, CA 90001" +240412,USB-C Charging Cable,1,11.95,08/01/19 22:12,"817 8th St, Austin, TX 73301" +240413,Lightning Charging Cable,1,14.95,08/23/19 10:41,"659 Sunset St, Portland, OR 97035" +240414,AAA Batteries (4-pack),2,2.99,08/17/19 08:27,"765 Elm St, Los Angeles, CA 90001" +240415,Vareebadd Phone,1,400,08/25/19 23:51,"944 Washington St, Los Angeles, CA 90001" +240416,20in Monitor,1,109.99,08/04/19 19:20,"65 Highland St, Seattle, WA 98101" +240417,Lightning Charging Cable,1,14.95,08/03/19 14:18,"909 Wilson St, Dallas, TX 75001" +240418,27in FHD Monitor,1,149.99,08/05/19 15:37,"404 Maple St, San Francisco, CA 94016" +240419,USB-C Charging Cable,1,11.95,08/13/19 16:29,"658 6th St, Boston, MA 02215" +240420,AA Batteries (4-pack),1,3.84,08/19/19 13:18,"695 Center St, Dallas, TX 75001" +240421,AAA Batteries (4-pack),1,2.99,08/29/19 13:36,"62 Ridge St, San Francisco, CA 94016" +240422,Vareebadd Phone,1,400,08/03/19 14:38,"41 14th St, Portland, OR 97035" +240423,Lightning Charging Cable,1,14.95,08/20/19 15:46,"873 Wilson St, Los Angeles, CA 90001" +240424,Lightning Charging Cable,1,14.95,08/15/19 08:00,"668 Lincoln St, Dallas, TX 75001" +240425,Wired Headphones,1,11.99,08/21/19 12:26,"517 9th St, San Francisco, CA 94016" +240426,27in FHD Monitor,1,149.99,08/24/19 15:01,"795 South St, San Francisco, CA 94016" +240427,ThinkPad Laptop,1,999.99,08/05/19 09:23,"510 Wilson St, San Francisco, CA 94016" +240428,Macbook Pro Laptop,1,1700,08/20/19 18:11,"209 Ridge St, Seattle, WA 98101" +240429,USB-C Charging Cable,1,11.95,08/03/19 05:55,"62 12th St, Austin, TX 73301" +240430,27in 4K Gaming Monitor,1,389.99,08/04/19 21:07,"475 Walnut St, New York City, NY 10001" +240431,Wired Headphones,1,11.99,08/11/19 17:51,"553 8th St, New York City, NY 10001" +240432,ThinkPad Laptop,1,999.99,08/23/19 20:56,"381 Pine St, Dallas, TX 75001" +240433,USB-C Charging Cable,1,11.95,08/27/19 15:52,"736 Maple St, San Francisco, CA 94016" +240434,Lightning Charging Cable,1,14.95,08/04/19 14:05,"699 River St, Dallas, TX 75001" +240435,USB-C Charging Cable,1,11.95,08/24/19 22:26,"31 9th St, Los Angeles, CA 90001" +240436,Google Phone,1,600,08/30/19 14:12,"237 Center St, Austin, TX 73301" +240436,Wired Headphones,1,11.99,08/30/19 14:12,"237 Center St, Austin, TX 73301" +240437,AAA Batteries (4-pack),2,2.99,08/20/19 19:11,"528 Spruce St, Austin, TX 73301" +240438,Apple Airpods Headphones,1,150,08/25/19 17:22,"195 Washington St, Atlanta, GA 30301" +240439,AAA Batteries (4-pack),1,2.99,08/27/19 10:56,"876 South St, San Francisco, CA 94016" +240440,AAA Batteries (4-pack),4,2.99,08/15/19 10:07,"930 10th St, Atlanta, GA 30301" +240441,Google Phone,1,600,08/12/19 14:34,"650 Cedar St, Boston, MA 02215" +240442,27in FHD Monitor,1,149.99,08/10/19 11:44,"991 Dogwood St, Portland, OR 97035" +240443,Bose SoundSport Headphones,1,99.99,08/24/19 05:58,"773 11th St, San Francisco, CA 94016" +240444,Apple Airpods Headphones,1,150,08/05/19 22:57,"704 4th St, New York City, NY 10001" +240445,Lightning Charging Cable,1,14.95,08/29/19 21:27,"582 12th St, Boston, MA 02215" +240446,Lightning Charging Cable,1,14.95,08/07/19 19:50,"405 14th St, Atlanta, GA 30301" +,,,,, +240447,Apple Airpods Headphones,1,150,08/07/19 12:56,"564 Lakeview St, San Francisco, CA 94016" +240448,Bose SoundSport Headphones,1,99.99,08/06/19 08:25,"673 South St, Atlanta, GA 30301" +240449,Lightning Charging Cable,1,14.95,08/09/19 13:29,"951 Park St, Los Angeles, CA 90001" +240450,Lightning Charging Cable,1,14.95,08/25/19 23:45,"85 Forest St, Seattle, WA 98101" +240451,Apple Airpods Headphones,1,150,08/27/19 13:56,"47 7th St, San Francisco, CA 94016" +240452,Lightning Charging Cable,1,14.95,08/18/19 17:13,"255 Dogwood St, Seattle, WA 98101" +240453,Lightning Charging Cable,1,14.95,08/08/19 13:45,"751 Forest St, Los Angeles, CA 90001" +240454,Lightning Charging Cable,1,14.95,08/13/19 16:55,"723 4th St, Boston, MA 02215" +240455,Lightning Charging Cable,1,14.95,08/30/19 13:44,"305 Hill St, Los Angeles, CA 90001" +240456,AAA Batteries (4-pack),1,2.99,08/01/19 17:18,"324 Washington St, Los Angeles, CA 90001" +240457,AA Batteries (4-pack),1,3.84,08/18/19 17:03,"918 9th St, Boston, MA 02215" +240458,Apple Airpods Headphones,1,150,08/14/19 12:37,"619 1st St, Los Angeles, CA 90001" +240459,Apple Airpods Headphones,1,150,08/01/19 18:20,"909 North St, Los Angeles, CA 90001" +240460,Flatscreen TV,1,300,08/27/19 21:48,"827 North St, Portland, ME 04101" +240461,Flatscreen TV,1,300,08/15/19 03:47,"20 Maple St, San Francisco, CA 94016" +240462,AA Batteries (4-pack),1,3.84,08/18/19 10:01,"547 Lake St, New York City, NY 10001" +240463,Lightning Charging Cable,1,14.95,08/23/19 13:59,"461 Highland St, Boston, MA 02215" +240464,iPhone,1,700,08/16/19 12:32,"584 6th St, New York City, NY 10001" +240464,Lightning Charging Cable,1,14.95,08/16/19 12:32,"584 6th St, New York City, NY 10001" +240465,Wired Headphones,1,11.99,08/19/19 19:25,"594 Forest St, Boston, MA 02215" +240466,iPhone,1,700,08/31/19 13:01,"74 Hill St, Los Angeles, CA 90001" +240467,Bose SoundSport Headphones,1,99.99,08/09/19 07:31,"621 Johnson St, Boston, MA 02215" +240468,USB-C Charging Cable,1,11.95,08/08/19 20:26,"906 South St, Los Angeles, CA 90001" +240469,27in 4K Gaming Monitor,1,389.99,08/27/19 23:59,"275 8th St, Austin, TX 73301" +240470,AAA Batteries (4-pack),1,2.99,08/16/19 16:12,"563 Main St, Austin, TX 73301" +240471,Lightning Charging Cable,1,14.95,08/12/19 12:13,"425 Washington St, San Francisco, CA 94016" +240472,Apple Airpods Headphones,1,150,08/31/19 17:13,"302 North St, Boston, MA 02215" +240473,27in FHD Monitor,1,149.99,08/18/19 21:52,"322 6th St, San Francisco, CA 94016" +240474,AAA Batteries (4-pack),4,2.99,08/03/19 17:27,"480 Pine St, San Francisco, CA 94016" +240475,LG Dryer,1,600.0,08/27/19 22:28,"281 Adams St, New York City, NY 10001" +240476,Apple Airpods Headphones,1,150,08/25/19 17:10,"727 Spruce St, Boston, MA 02215" +240477,Lightning Charging Cable,1,14.95,08/09/19 13:01,"888 West St, New York City, NY 10001" +240478,Bose SoundSport Headphones,1,99.99,08/25/19 12:57,"492 Elm St, Portland, OR 97035" +240479,AA Batteries (4-pack),1,3.84,08/18/19 19:51,"260 13th St, Boston, MA 02215" +,,,,, +240480,Flatscreen TV,1,300,08/26/19 11:58,"133 North St, Seattle, WA 98101" +240481,Apple Airpods Headphones,1,150,08/03/19 20:09,"353 Willow St, New York City, NY 10001" +240482,Lightning Charging Cable,1,14.95,08/26/19 16:24,"360 Highland St, San Francisco, CA 94016" +240483,AA Batteries (4-pack),4,3.84,08/06/19 22:21,"547 5th St, San Francisco, CA 94016" +240484,AAA Batteries (4-pack),1,2.99,08/27/19 17:45,"488 9th St, San Francisco, CA 94016" +240485,Macbook Pro Laptop,1,1700,08/28/19 11:45,"458 4th St, San Francisco, CA 94016" +240486,Lightning Charging Cable,2,14.95,08/22/19 19:05,"857 Chestnut St, Boston, MA 02215" +240487,Apple Airpods Headphones,1,150,08/11/19 11:11,"792 Dogwood St, New York City, NY 10001" +240488,Lightning Charging Cable,1,14.95,08/17/19 19:13,"391 Center St, New York City, NY 10001" +240489,AAA Batteries (4-pack),5,2.99,08/22/19 17:37,"295 7th St, Los Angeles, CA 90001" +240490,Lightning Charging Cable,1,14.95,08/13/19 17:35,"595 6th St, Boston, MA 02215" +240491,Flatscreen TV,1,300,08/05/19 22:48,"36 Main St, New York City, NY 10001" +240492,USB-C Charging Cable,1,11.95,08/08/19 19:38,"844 7th St, San Francisco, CA 94016" +240493,AA Batteries (4-pack),1,3.84,08/30/19 23:07,"543 10th St, New York City, NY 10001" +240494,AAA Batteries (4-pack),1,2.99,08/28/19 18:42,"673 West St, Atlanta, GA 30301" +240495,ThinkPad Laptop,1,999.99,08/13/19 00:02,"954 7th St, Austin, TX 73301" +240496,27in 4K Gaming Monitor,1,389.99,08/20/19 18:55,"69 7th St, San Francisco, CA 94016" +240497,AA Batteries (4-pack),1,3.84,08/31/19 08:50,"283 5th St, Los Angeles, CA 90001" +240498,AAA Batteries (4-pack),1,2.99,08/19/19 11:11,"681 Wilson St, San Francisco, CA 94016" +240499,AAA Batteries (4-pack),1,2.99,08/01/19 17:58,"839 Park St, Boston, MA 02215" +240500,34in Ultrawide Monitor,1,379.99,08/06/19 18:56,"926 Lakeview St, Los Angeles, CA 90001" +240501,USB-C Charging Cable,1,11.95,08/20/19 09:59,"81 Meadow St, San Francisco, CA 94016" +240502,AAA Batteries (4-pack),1,2.99,08/08/19 10:14,"721 2nd St, New York City, NY 10001" +240503,Apple Airpods Headphones,1,150,08/13/19 10:49,"615 Willow St, Los Angeles, CA 90001" +240504,iPhone,1,700,08/10/19 18:32,"695 Adams St, Boston, MA 02215" +240505,Wired Headphones,1,11.99,08/28/19 09:18,"239 Hickory St, Los Angeles, CA 90001" +240506,Flatscreen TV,1,300,08/02/19 17:47,"921 13th St, San Francisco, CA 94016" +240507,USB-C Charging Cable,1,11.95,08/08/19 22:32,"412 Main St, Los Angeles, CA 90001" +240508,AAA Batteries (4-pack),1,2.99,08/09/19 20:01,"451 7th St, Los Angeles, CA 90001" +240509,Macbook Pro Laptop,1,1700,08/19/19 06:12,"909 Pine St, Los Angeles, CA 90001" +240510,Apple Airpods Headphones,1,150,08/16/19 09:06,"294 Highland St, Los Angeles, CA 90001" +240511,Wired Headphones,1,11.99,08/13/19 04:23,"81 Elm St, Los Angeles, CA 90001" +240512,LG Washing Machine,2,600.0,08/26/19 19:21,"986 Pine St, San Francisco, CA 94016" +240513,AA Batteries (4-pack),3,3.84,08/07/19 14:02,"486 Jefferson St, San Francisco, CA 94016" +240514,Bose SoundSport Headphones,1,99.99,08/06/19 15:22,"533 Forest St, Austin, TX 73301" +240515,Bose SoundSport Headphones,1,99.99,08/27/19 22:54,"166 12th St, San Francisco, CA 94016" +240516,Macbook Pro Laptop,1,1700,08/03/19 16:14,"428 8th St, San Francisco, CA 94016" +240517,AA Batteries (4-pack),1,3.84,08/06/19 20:00,"704 Pine St, Boston, MA 02215" +240518,ThinkPad Laptop,1,999.99,08/20/19 16:19,"312 Wilson St, Atlanta, GA 30301" +240519,AAA Batteries (4-pack),4,2.99,08/02/19 16:16,"770 9th St, New York City, NY 10001" +240520,USB-C Charging Cable,1,11.95,08/18/19 18:36,"670 Elm St, Seattle, WA 98101" +240521,Bose SoundSport Headphones,1,99.99,08/27/19 15:20,"174 Meadow St, San Francisco, CA 94016" +240522,AAA Batteries (4-pack),1,2.99,08/16/19 11:12,"97 Highland St, Boston, MA 02215" +240523,Apple Airpods Headphones,1,150,08/25/19 21:45,"589 South St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +240524,Wired Headphones,1,11.99,08/22/19 21:48,"161 North St, Boston, MA 02215" +240525,Apple Airpods Headphones,1,150,08/01/19 20:04,"332 Sunset St, Portland, OR 97035" +240526,USB-C Charging Cable,1,11.95,08/08/19 19:30,"572 North St, New York City, NY 10001" +240527,Wired Headphones,1,11.99,08/11/19 11:23,"415 Church St, San Francisco, CA 94016" +240528,Bose SoundSport Headphones,1,99.99,08/07/19 10:14,"952 Dogwood St, Los Angeles, CA 90001" +240529,USB-C Charging Cable,2,11.95,08/22/19 07:52,"691 Elm St, Boston, MA 02215" +240530,Wired Headphones,2,11.99,08/24/19 12:30,"95 Madison St, Seattle, WA 98101" +240531,USB-C Charging Cable,1,11.95,08/26/19 08:44,"730 Sunset St, San Francisco, CA 94016" +240532,Wired Headphones,1,11.99,08/01/19 09:02,"483 Cherry St, San Francisco, CA 94016" +240533,AA Batteries (4-pack),1,3.84,09/01/19 00:37,"320 Chestnut St, Seattle, WA 98101" +240533,Lightning Charging Cable,1,14.95,09/01/19 00:37,"320 Chestnut St, Seattle, WA 98101" +240534,AAA Batteries (4-pack),4,2.99,08/05/19 13:04,"274 1st St, Portland, OR 97035" +240535,20in Monitor,1,109.99,08/26/19 11:51,"670 10th St, New York City, NY 10001" +240536,Bose SoundSport Headphones,1,99.99,08/06/19 13:15,"759 14th St, Austin, TX 73301" +240537,Lightning Charging Cable,1,14.95,08/07/19 23:36,"527 Park St, Austin, TX 73301" +240538,ThinkPad Laptop,1,999.99,08/01/19 20:06,"272 Willow St, Portland, ME 04101" +240539,20in Monitor,1,109.99,08/12/19 17:38,"68 Pine St, New York City, NY 10001" +240540,Lightning Charging Cable,1,14.95,08/19/19 18:36,"795 Willow St, Seattle, WA 98101" +240541,34in Ultrawide Monitor,1,379.99,08/03/19 20:45,"786 Forest St, Los Angeles, CA 90001" +240542,AA Batteries (4-pack),2,3.84,08/14/19 12:55,"167 River St, San Francisco, CA 94016" +240543,USB-C Charging Cable,1,11.95,08/16/19 12:14,"971 Ridge St, Los Angeles, CA 90001" +240544,AA Batteries (4-pack),1,3.84,08/23/19 10:30,"997 Meadow St, San Francisco, CA 94016" +240545,Lightning Charging Cable,1,14.95,08/11/19 10:52,"876 Center St, Portland, OR 97035" +240546,34in Ultrawide Monitor,1,379.99,08/17/19 15:59,"146 13th St, San Francisco, CA 94016" +240547,Macbook Pro Laptop,1,1700,08/05/19 22:14,"9 Main St, New York City, NY 10001" +240548,Flatscreen TV,1,300,08/30/19 08:54,"143 Washington St, New York City, NY 10001" +240549,Bose SoundSport Headphones,1,99.99,08/10/19 12:26,"418 6th St, San Francisco, CA 94016" +240550,34in Ultrawide Monitor,1,379.99,08/15/19 19:05,"543 River St, Los Angeles, CA 90001" +240551,34in Ultrawide Monitor,1,379.99,08/20/19 09:36,"782 10th St, Los Angeles, CA 90001" +240551,Lightning Charging Cable,1,14.95,08/20/19 09:36,"782 10th St, Los Angeles, CA 90001" +240552,USB-C Charging Cable,1,11.95,08/07/19 17:30,"712 Main St, San Francisco, CA 94016" +240553,27in FHD Monitor,1,149.99,08/16/19 14:54,"353 13th St, Portland, OR 97035" +240554,Bose SoundSport Headphones,1,99.99,08/30/19 03:27,"532 Pine St, New York City, NY 10001" +240555,Apple Airpods Headphones,1,150,08/24/19 23:58,"318 4th St, Los Angeles, CA 90001" +240556,Bose SoundSport Headphones,1,99.99,08/27/19 13:16,"206 Dogwood St, Portland, OR 97035" +240557,AA Batteries (4-pack),1,3.84,08/28/19 08:20,"659 Pine St, Los Angeles, CA 90001" +240558,AA Batteries (4-pack),2,3.84,08/20/19 09:38,"115 4th St, Dallas, TX 75001" +240559,27in 4K Gaming Monitor,1,389.99,08/22/19 14:07,"279 Highland St, Atlanta, GA 30301" +240560,Lightning Charging Cable,1,14.95,08/26/19 17:03,"252 Ridge St, San Francisco, CA 94016" +240561,Macbook Pro Laptop,1,1700,08/04/19 20:01,"708 Elm St, San Francisco, CA 94016" +240562,27in FHD Monitor,1,149.99,08/14/19 18:57,"761 13th St, Dallas, TX 75001" +240563,34in Ultrawide Monitor,1,379.99,08/02/19 19:24,"894 Center St, Boston, MA 02215" +240564,AA Batteries (4-pack),1,3.84,08/26/19 10:51,"686 Cedar St, New York City, NY 10001" +240565,Apple Airpods Headphones,1,150,08/17/19 19:08,"310 North St, Atlanta, GA 30301" +240566,34in Ultrawide Monitor,1,379.99,08/13/19 20:14,"348 12th St, Seattle, WA 98101" +240567,Lightning Charging Cable,1,14.95,08/01/19 08:06,"914 6th St, Boston, MA 02215" +240568,AA Batteries (4-pack),1,3.84,08/12/19 06:41,"77 Park St, San Francisco, CA 94016" +240569,Apple Airpods Headphones,1,150,08/29/19 22:37,"849 Lakeview St, Atlanta, GA 30301" +240570,USB-C Charging Cable,1,11.95,08/29/19 21:42,"155 14th St, San Francisco, CA 94016" +240571,Lightning Charging Cable,1,14.95,08/03/19 00:31,"359 River St, Atlanta, GA 30301" +240572,Apple Airpods Headphones,1,150,08/08/19 23:11,"332 Hill St, New York City, NY 10001" +240573,Macbook Pro Laptop,1,1700,08/06/19 22:49,"690 2nd St, Boston, MA 02215" +240574,Apple Airpods Headphones,1,150,08/29/19 14:23,"327 Elm St, Atlanta, GA 30301" +240575,20in Monitor,1,109.99,08/23/19 21:03,"772 12th St, Los Angeles, CA 90001" +240576,34in Ultrawide Monitor,1,379.99,08/25/19 13:49,"894 Sunset St, Portland, ME 04101" +240577,AAA Batteries (4-pack),3,2.99,08/31/19 21:03,"179 Dogwood St, San Francisco, CA 94016" +240578,USB-C Charging Cable,1,11.95,08/27/19 18:14,"361 North St, Boston, MA 02215" +240579,Macbook Pro Laptop,1,1700,08/31/19 20:11,"549 Willow St, Boston, MA 02215" +240580,Flatscreen TV,1,300,08/20/19 18:32,"883 Jackson St, Boston, MA 02215" +240581,27in FHD Monitor,1,149.99,08/31/19 11:52,"403 Forest St, San Francisco, CA 94016" +240582,USB-C Charging Cable,1,11.95,08/16/19 13:18,"131 Walnut St, Atlanta, GA 30301" +240583,Apple Airpods Headphones,1,150,08/29/19 16:08,"92 7th St, San Francisco, CA 94016" +240584,Bose SoundSport Headphones,1,99.99,08/09/19 10:40,"69 Hickory St, New York City, NY 10001" +240585,Flatscreen TV,1,300,08/15/19 09:12,"156 Jackson St, Los Angeles, CA 90001" +240586,Macbook Pro Laptop,1,1700,08/12/19 07:40,"647 Church St, San Francisco, CA 94016" +240587,Bose SoundSport Headphones,1,99.99,08/25/19 20:38,"745 Park St, Portland, OR 97035" +240588,Apple Airpods Headphones,1,150,08/06/19 21:17,"850 11th St, Los Angeles, CA 90001" +240589,Wired Headphones,1,11.99,08/30/19 00:03,"452 Madison St, San Francisco, CA 94016" +240590,Wired Headphones,1,11.99,08/04/19 07:04,"311 Lincoln St, Los Angeles, CA 90001" +240591,iPhone,1,700,08/25/19 19:58,"971 7th St, San Francisco, CA 94016" +240592,AA Batteries (4-pack),2,3.84,08/21/19 22:28,"581 Willow St, Atlanta, GA 30301" +240593,USB-C Charging Cable,2,11.95,08/31/19 12:15,"18 2nd St, Seattle, WA 98101" +240594,Macbook Pro Laptop,1,1700,08/04/19 16:58,"966 Cedar St, Dallas, TX 75001" +240595,Bose SoundSport Headphones,1,99.99,08/10/19 13:36,"498 Highland St, San Francisco, CA 94016" +240596,Lightning Charging Cable,1,14.95,08/16/19 16:31,"756 12th St, Atlanta, GA 30301" +240597,AAA Batteries (4-pack),1,2.99,08/22/19 08:21,"421 Chestnut St, San Francisco, CA 94016" +240598,Lightning Charging Cable,1,14.95,08/30/19 22:13,"322 5th St, Seattle, WA 98101" +240598,iPhone,1,700,08/30/19 22:13,"322 5th St, Seattle, WA 98101" +240599,AA Batteries (4-pack),1,3.84,08/08/19 11:09,"751 Chestnut St, Austin, TX 73301" +240600,Apple Airpods Headphones,1,150,08/22/19 12:44,"517 Dogwood St, Los Angeles, CA 90001" +240601,AAA Batteries (4-pack),1,2.99,08/30/19 17:19,"53 Willow St, San Francisco, CA 94016" +240602,Wired Headphones,1,11.99,08/07/19 05:58,"972 14th St, San Francisco, CA 94016" +240603,USB-C Charging Cable,1,11.95,08/01/19 12:04,"630 Lincoln St, Los Angeles, CA 90001" +240604,AA Batteries (4-pack),1,3.84,08/14/19 16:29,"288 West St, Seattle, WA 98101" +240605,AA Batteries (4-pack),1,3.84,08/16/19 13:10,"477 11th St, San Francisco, CA 94016" +240606,Lightning Charging Cable,1,14.95,08/11/19 11:30,"612 Forest St, San Francisco, CA 94016" +240607,Lightning Charging Cable,2,14.95,08/16/19 11:38,"908 West St, Portland, OR 97035" +240608,Bose SoundSport Headphones,1,99.99,08/06/19 00:20,"367 Main St, Seattle, WA 98101" +240609,Bose SoundSport Headphones,1,99.99,08/18/19 23:51,"481 Elm St, San Francisco, CA 94016" +240610,AA Batteries (4-pack),1,3.84,08/08/19 08:33,"538 9th St, Portland, OR 97035" +240611,Lightning Charging Cable,1,14.95,08/12/19 15:01,"345 Hickory St, Atlanta, GA 30301" +240612,AA Batteries (4-pack),2,3.84,08/18/19 17:35,"604 Walnut St, Boston, MA 02215" +240613,Wired Headphones,1,11.99,08/04/19 15:17,"472 Willow St, San Francisco, CA 94016" +240614,Wired Headphones,1,11.99,08/19/19 18:07,"423 South St, Los Angeles, CA 90001" +240615,USB-C Charging Cable,1,11.95,08/17/19 04:11,"967 Center St, San Francisco, CA 94016" +240616,ThinkPad Laptop,1,999.99,08/22/19 20:31,"433 12th St, San Francisco, CA 94016" +240617,Bose SoundSport Headphones,1,99.99,08/18/19 18:59,"819 Hill St, San Francisco, CA 94016" +240618,Bose SoundSport Headphones,1,99.99,08/29/19 20:33,"441 Pine St, Los Angeles, CA 90001" +240619,AA Batteries (4-pack),1,3.84,08/29/19 15:38,"279 Lake St, Los Angeles, CA 90001" +240620,AAA Batteries (4-pack),1,2.99,08/28/19 20:02,"515 Chestnut St, San Francisco, CA 94016" +240621,Vareebadd Phone,1,400,08/18/19 21:03,"828 Lakeview St, Seattle, WA 98101" +240621,USB-C Charging Cable,2,11.95,08/18/19 21:03,"828 Lakeview St, Seattle, WA 98101" +240622,27in 4K Gaming Monitor,1,389.99,08/26/19 22:59,"158 14th St, New York City, NY 10001" +240623,iPhone,1,700,08/09/19 17:06,"241 Chestnut St, Boston, MA 02215" +240624,USB-C Charging Cable,1,11.95,08/14/19 19:04,"148 West St, New York City, NY 10001" +240625,Bose SoundSport Headphones,1,99.99,08/08/19 19:23,"454 1st St, New York City, NY 10001" +240626,AAA Batteries (4-pack),1,2.99,08/27/19 14:16,"272 Church St, San Francisco, CA 94016" +240627,Bose SoundSport Headphones,1,99.99,08/16/19 09:22,"325 Elm St, Dallas, TX 75001" +240628,AAA Batteries (4-pack),1,2.99,08/08/19 11:05,"296 Forest St, Dallas, TX 75001" +240629,AA Batteries (4-pack),2,3.84,08/08/19 09:17,"702 Cedar St, San Francisco, CA 94016" +240630,27in FHD Monitor,1,149.99,08/02/19 21:12,"79 13th St, Atlanta, GA 30301" +240631,Apple Airpods Headphones,1,150,08/15/19 22:34,"496 Chestnut St, Boston, MA 02215" +240632,iPhone,1,700,08/16/19 09:59,"138 Spruce St, San Francisco, CA 94016" +240633,Wired Headphones,1,11.99,08/25/19 20:13,"461 Meadow St, Los Angeles, CA 90001" +240634,AA Batteries (4-pack),1,3.84,08/31/19 11:01,"309 Forest St, San Francisco, CA 94016" +240635,USB-C Charging Cable,1,11.95,08/28/19 20:26,"960 Elm St, Portland, ME 04101" +240636,Google Phone,1,600,08/20/19 18:03,"658 Willow St, Los Angeles, CA 90001" +240637,iPhone,1,700,08/11/19 17:17,"161 Hill St, Portland, ME 04101" +240638,Bose SoundSport Headphones,1,99.99,08/09/19 20:45,"416 2nd St, Los Angeles, CA 90001" +240639,Wired Headphones,1,11.99,08/02/19 06:22,"320 Elm St, Dallas, TX 75001" +240640,Wired Headphones,1,11.99,08/25/19 11:28,"430 Hill St, Atlanta, GA 30301" +240641,34in Ultrawide Monitor,1,379.99,08/01/19 09:13,"756 Madison St, Seattle, WA 98101" +240642,AAA Batteries (4-pack),1,2.99,08/11/19 16:28,"706 West St, Boston, MA 02215" +240643,Wired Headphones,1,11.99,08/15/19 12:30,"625 Cedar St, San Francisco, CA 94016" +240644,AAA Batteries (4-pack),3,2.99,08/15/19 10:41,"61 Hickory St, San Francisco, CA 94016" +240645,Google Phone,1,600,08/21/19 10:25,"528 North St, Los Angeles, CA 90001" +240646,Lightning Charging Cable,1,14.95,08/03/19 13:58,"540 2nd St, San Francisco, CA 94016" +240647,USB-C Charging Cable,1,11.95,08/27/19 12:45,"934 2nd St, San Francisco, CA 94016" +240648,Vareebadd Phone,1,400,08/26/19 18:25,"874 12th St, Los Angeles, CA 90001" +240648,USB-C Charging Cable,1,11.95,08/26/19 18:25,"874 12th St, Los Angeles, CA 90001" +240649,Macbook Pro Laptop,1,1700,08/15/19 17:47,"98 West St, Atlanta, GA 30301" +240650,20in Monitor,1,109.99,08/03/19 13:05,"519 5th St, Atlanta, GA 30301" +240651,Google Phone,1,600,08/23/19 19:08,"97 Church St, San Francisco, CA 94016" +240652,27in FHD Monitor,2,149.99,08/08/19 20:30,"768 Highland St, Los Angeles, CA 90001" +240653,Macbook Pro Laptop,1,1700,08/23/19 07:58,"476 Pine St, Portland, OR 97035" +240654,Bose SoundSport Headphones,1,99.99,08/01/19 08:41,"71 Dogwood St, Dallas, TX 75001" +240655,AAA Batteries (4-pack),4,2.99,08/21/19 23:40,"767 Sunset St, New York City, NY 10001" +240656,Lightning Charging Cable,1,14.95,08/06/19 14:51,"862 Hill St, Dallas, TX 75001" +240656,Wired Headphones,1,11.99,08/06/19 14:51,"862 Hill St, Dallas, TX 75001" +240657,Wired Headphones,1,11.99,08/19/19 17:34,"86 Jefferson St, San Francisco, CA 94016" +240658,USB-C Charging Cable,1,11.95,08/20/19 13:06,"272 Lincoln St, Los Angeles, CA 90001" +240659,Google Phone,1,600,08/14/19 12:12,"309 Ridge St, Seattle, WA 98101" +240660,AAA Batteries (4-pack),2,2.99,08/22/19 16:23,"840 North St, San Francisco, CA 94016" +240661,AA Batteries (4-pack),1,3.84,08/20/19 14:06,"561 Maple St, Boston, MA 02215" +240662,AA Batteries (4-pack),1,3.84,08/25/19 22:03,"140 Jefferson St, Dallas, TX 75001" +240663,34in Ultrawide Monitor,1,379.99,08/30/19 23:58,"604 Willow St, San Francisco, CA 94016" +240664,USB-C Charging Cable,1,11.95,08/09/19 09:39,"743 Forest St, Boston, MA 02215" +240665,AAA Batteries (4-pack),1,2.99,08/06/19 16:24,"177 4th St, Seattle, WA 98101" +240666,Lightning Charging Cable,1,14.95,08/12/19 20:40,"857 Johnson St, Los Angeles, CA 90001" +240667,Apple Airpods Headphones,1,150,08/18/19 13:27,"659 Church St, Seattle, WA 98101" +240668,LG Washing Machine,1,600.0,08/29/19 11:13,"959 Sunset St, New York City, NY 10001" +240669,ThinkPad Laptop,1,999.99,08/23/19 17:01,"428 5th St, Los Angeles, CA 90001" +240670,AA Batteries (4-pack),1,3.84,08/27/19 14:53,"954 Pine St, Atlanta, GA 30301" +240671,AAA Batteries (4-pack),1,2.99,08/08/19 19:14,"966 10th St, San Francisco, CA 94016" +240672,Google Phone,1,600,08/21/19 11:41,"831 11th St, Boston, MA 02215" +240673,AA Batteries (4-pack),1,3.84,08/17/19 19:29,"114 Jackson St, Atlanta, GA 30301" +240674,Flatscreen TV,1,300,08/14/19 00:06,"926 Madison St, Los Angeles, CA 90001" +240675,Lightning Charging Cable,1,14.95,08/20/19 08:59,"548 Hickory St, Portland, OR 97035" +240676,Lightning Charging Cable,1,14.95,08/25/19 09:58,"11 Highland St, Los Angeles, CA 90001" +240677,Wired Headphones,1,11.99,08/06/19 14:48,"193 7th St, San Francisco, CA 94016" +240678,Google Phone,1,600,08/22/19 00:22,"864 Pine St, San Francisco, CA 94016" +240678,Bose SoundSport Headphones,1,99.99,08/22/19 00:22,"864 Pine St, San Francisco, CA 94016" +240679,AA Batteries (4-pack),1,3.84,08/13/19 22:44,"562 Sunset St, Austin, TX 73301" +240680,Apple Airpods Headphones,1,150,08/11/19 22:49,"394 Johnson St, New York City, NY 10001" +240681,Wired Headphones,1,11.99,08/17/19 23:03,"509 Washington St, Seattle, WA 98101" +240682,27in 4K Gaming Monitor,1,389.99,08/03/19 02:47,"405 Church St, New York City, NY 10001" +240683,USB-C Charging Cable,1,11.95,08/04/19 12:29,"329 South St, Seattle, WA 98101" +240684,AAA Batteries (4-pack),2,2.99,08/12/19 22:05,"134 Cherry St, Boston, MA 02215" +240685,USB-C Charging Cable,1,11.95,08/15/19 13:25,"701 Sunset St, San Francisco, CA 94016" +240686,20in Monitor,1,109.99,08/21/19 21:40,"460 Spruce St, Dallas, TX 75001" +240687,27in FHD Monitor,1,149.99,08/08/19 20:04,"795 13th St, San Francisco, CA 94016" +240687,Lightning Charging Cable,1,14.95,08/08/19 20:04,"795 13th St, San Francisco, CA 94016" +240688,ThinkPad Laptop,1,999.99,08/13/19 19:59,"953 Ridge St, Atlanta, GA 30301" +240689,Wired Headphones,1,11.99,08/08/19 17:51,"290 Spruce St, Los Angeles, CA 90001" +240690,Lightning Charging Cable,1,14.95,08/17/19 20:37,"165 7th St, Boston, MA 02215" +240691,AAA Batteries (4-pack),1,2.99,08/25/19 00:42,"881 River St, Boston, MA 02215" +240692,Wired Headphones,1,11.99,08/06/19 19:40,"450 Center St, New York City, NY 10001" +240693,USB-C Charging Cable,1,11.95,08/30/19 08:01,"524 Hill St, Los Angeles, CA 90001" +240694,AA Batteries (4-pack),1,3.84,08/29/19 21:38,"886 10th St, Dallas, TX 75001" +240695,27in 4K Gaming Monitor,1,389.99,08/11/19 20:51,"725 13th St, San Francisco, CA 94016" +240696,Flatscreen TV,1,300,08/07/19 17:29,"948 Lakeview St, Los Angeles, CA 90001" +240697,AA Batteries (4-pack),1,3.84,08/06/19 20:10,"587 Highland St, Atlanta, GA 30301" +240698,Lightning Charging Cable,1,14.95,08/13/19 14:06,"534 River St, Los Angeles, CA 90001" +240699,AA Batteries (4-pack),1,3.84,08/09/19 15:44,"654 Washington St, Portland, OR 97035" +240700,AA Batteries (4-pack),1,3.84,08/05/19 17:47,"938 Church St, New York City, NY 10001" +240700,Vareebadd Phone,1,400,08/05/19 17:47,"938 Church St, New York City, NY 10001" +240701,AA Batteries (4-pack),1,3.84,08/06/19 16:29,"766 West St, New York City, NY 10001" +240702,AAA Batteries (4-pack),2,2.99,08/18/19 20:09,"647 Hickory St, San Francisco, CA 94016" +240703,AAA Batteries (4-pack),1,2.99,08/11/19 11:31,"272 River St, Dallas, TX 75001" +240704,34in Ultrawide Monitor,1,379.99,08/21/19 21:35,"542 Walnut St, New York City, NY 10001" +240705,Wired Headphones,1,11.99,08/20/19 08:35,"77 South St, San Francisco, CA 94016" +240706,AAA Batteries (4-pack),1,2.99,08/16/19 17:39,"233 Spruce St, Atlanta, GA 30301" +240707,AA Batteries (4-pack),2,3.84,08/31/19 12:39,"302 Lake St, Atlanta, GA 30301" +240708,Bose SoundSport Headphones,1,99.99,08/08/19 14:12,"80 2nd St, Atlanta, GA 30301" +240709,Apple Airpods Headphones,1,150,08/26/19 16:23,"528 Forest St, San Francisco, CA 94016" +240710,Bose SoundSport Headphones,1,99.99,08/08/19 23:32,"770 Hickory St, New York City, NY 10001" +240711,27in FHD Monitor,1,149.99,08/29/19 15:50,"763 7th St, New York City, NY 10001" +240712,Lightning Charging Cable,2,14.95,08/09/19 10:59,"696 Wilson St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +240713,Bose SoundSport Headphones,1,99.99,08/27/19 14:02,"370 Ridge St, Boston, MA 02215" +240714,Bose SoundSport Headphones,1,99.99,08/27/19 16:24,"478 Highland St, Atlanta, GA 30301" +240715,Vareebadd Phone,1,400,08/10/19 15:27,"452 1st St, New York City, NY 10001" +240716,USB-C Charging Cable,1,11.95,08/03/19 11:12,"166 4th St, Los Angeles, CA 90001" +240717,Wired Headphones,1,11.99,08/21/19 18:33,"51 River St, Los Angeles, CA 90001" +240718,AA Batteries (4-pack),1,3.84,08/17/19 07:44,"839 Maple St, New York City, NY 10001" +240719,27in FHD Monitor,1,149.99,08/09/19 18:34,"942 West St, San Francisco, CA 94016" +240720,Lightning Charging Cable,1,14.95,08/06/19 09:56,"790 Adams St, Boston, MA 02215" +240721,iPhone,1,700,08/22/19 08:36,"151 Park St, Boston, MA 02215" +240722,27in FHD Monitor,1,149.99,08/12/19 15:10,"387 Park St, New York City, NY 10001" +240723,27in 4K Gaming Monitor,1,389.99,08/23/19 18:14,"449 Jefferson St, Austin, TX 73301" +240724,iPhone,1,700,08/31/19 17:49,"492 Walnut St, San Francisco, CA 94016" +240725,Macbook Pro Laptop,1,1700,08/11/19 21:31,"401 West St, Atlanta, GA 30301" +240726,Apple Airpods Headphones,1,150,08/04/19 22:15,"71 Park St, Portland, OR 97035" +240727,AAA Batteries (4-pack),2,2.99,08/28/19 22:37,"876 Forest St, Portland, ME 04101" +240728,Google Phone,1,600,08/01/19 22:51,"239 2nd St, Seattle, WA 98101" +240729,AAA Batteries (4-pack),1,2.99,08/07/19 18:58,"2 Dogwood St, San Francisco, CA 94016" +240730,AAA Batteries (4-pack),1,2.99,08/17/19 22:33,"381 Dogwood St, Seattle, WA 98101" +240731,AA Batteries (4-pack),1,3.84,08/18/19 07:45,"156 Maple St, San Francisco, CA 94016" +240732,AA Batteries (4-pack),1,3.84,08/21/19 11:27,"151 14th St, Boston, MA 02215" +240733,AA Batteries (4-pack),1,3.84,08/10/19 11:49,"613 South St, San Francisco, CA 94016" +240734,Lightning Charging Cable,1,14.95,08/24/19 13:48,"172 13th St, Boston, MA 02215" +240735,Apple Airpods Headphones,1,150,08/02/19 18:56,"420 6th St, Atlanta, GA 30301" +240736,AA Batteries (4-pack),3,3.84,08/15/19 12:02,"871 Chestnut St, Atlanta, GA 30301" +240737,AAA Batteries (4-pack),1,2.99,08/07/19 19:25,"126 4th St, San Francisco, CA 94016" +240738,LG Dryer,1,600.0,08/11/19 19:38,"289 Willow St, Seattle, WA 98101" +240739,ThinkPad Laptop,1,999.99,08/17/19 12:38,"420 1st St, San Francisco, CA 94016" +240740,Google Phone,1,600,08/13/19 05:46,"27 Elm St, Seattle, WA 98101" +240741,USB-C Charging Cable,1,11.95,08/28/19 14:32,"391 Hill St, San Francisco, CA 94016" +240742,Lightning Charging Cable,1,14.95,08/06/19 23:07,"858 Maple St, Portland, OR 97035" +240743,34in Ultrawide Monitor,1,379.99,08/03/19 13:50,"464 11th St, Atlanta, GA 30301" +240744,AAA Batteries (4-pack),1,2.99,08/03/19 16:04,"766 Church St, Los Angeles, CA 90001" +240745,Bose SoundSport Headphones,1,99.99,08/30/19 17:58,"895 Cedar St, New York City, NY 10001" +240746,Wired Headphones,1,11.99,08/03/19 17:23,"904 6th St, Los Angeles, CA 90001" +240747,AAA Batteries (4-pack),1,2.99,08/17/19 17:11,"230 4th St, Los Angeles, CA 90001" +240748,USB-C Charging Cable,1,11.95,08/26/19 22:23,"78 Willow St, Austin, TX 73301" +240749,iPhone,1,700,08/24/19 15:42,"192 Washington St, Portland, OR 97035" +240750,USB-C Charging Cable,1,11.95,08/04/19 12:48,"584 7th St, San Francisco, CA 94016" +240751,Wired Headphones,1,11.99,08/15/19 16:14,"545 4th St, New York City, NY 10001" +240752,iPhone,1,700,08/18/19 22:06,"602 West St, Dallas, TX 75001" +240753,Flatscreen TV,1,300,08/31/19 21:19,"41 9th St, Seattle, WA 98101" +240754,USB-C Charging Cable,1,11.95,08/06/19 20:54,"840 Highland St, San Francisco, CA 94016" +240755,Lightning Charging Cable,1,14.95,08/03/19 12:08,"700 Highland St, Seattle, WA 98101" +240756,Flatscreen TV,1,300,08/11/19 18:37,"136 Maple St, New York City, NY 10001" +240757,AA Batteries (4-pack),1,3.84,08/16/19 17:51,"802 9th St, Seattle, WA 98101" +240758,Lightning Charging Cable,1,14.95,08/02/19 16:33,"939 South St, New York City, NY 10001" +240759,AAA Batteries (4-pack),1,2.99,08/21/19 15:13,"33 Willow St, New York City, NY 10001" +240760,Bose SoundSport Headphones,1,99.99,08/19/19 23:04,"372 Meadow St, Boston, MA 02215" +240761,Wired Headphones,2,11.99,08/17/19 23:43,"144 Cherry St, San Francisco, CA 94016" +240762,Bose SoundSport Headphones,1,99.99,08/17/19 02:33,"774 Ridge St, Seattle, WA 98101" +240763,AAA Batteries (4-pack),1,2.99,08/17/19 09:34,"340 Lakeview St, San Francisco, CA 94016" +240764,AA Batteries (4-pack),1,3.84,08/11/19 19:57,"709 7th St, San Francisco, CA 94016" +240765,Lightning Charging Cable,1,14.95,08/05/19 13:37,"433 Pine St, Los Angeles, CA 90001" +240766,AA Batteries (4-pack),1,3.84,08/27/19 00:23,"391 9th St, Seattle, WA 98101" +240767,Google Phone,1,600,08/25/19 02:18,"597 Hill St, New York City, NY 10001" +240767,Bose SoundSport Headphones,1,99.99,08/25/19 02:18,"597 Hill St, New York City, NY 10001" +240768,AAA Batteries (4-pack),2,2.99,08/16/19 17:08,"695 Maple St, Seattle, WA 98101" +240769,AA Batteries (4-pack),1,3.84,08/02/19 18:07,"989 Lake St, New York City, NY 10001" +240769,27in 4K Gaming Monitor,1,389.99,08/02/19 18:07,"989 Lake St, New York City, NY 10001" +240770,Lightning Charging Cable,1,14.95,08/20/19 09:33,"504 Willow St, Los Angeles, CA 90001" +240771,Macbook Pro Laptop,1,1700,08/13/19 18:31,"300 2nd St, San Francisco, CA 94016" +240772,34in Ultrawide Monitor,1,379.99,08/27/19 17:18,"649 Cherry St, Atlanta, GA 30301" +240773,27in FHD Monitor,1,149.99,08/01/19 10:46,"749 Walnut St, Los Angeles, CA 90001" +240774,USB-C Charging Cable,2,11.95,08/20/19 15:16,"105 6th St, Atlanta, GA 30301" +240775,27in FHD Monitor,1,149.99,08/19/19 17:53,"598 Church St, Los Angeles, CA 90001" +240776,Lightning Charging Cable,1,14.95,08/21/19 11:29,"40 Jackson St, New York City, NY 10001" +240777,Lightning Charging Cable,1,14.95,08/24/19 11:08,"969 Adams St, Dallas, TX 75001" +240778,Lightning Charging Cable,1,14.95,08/07/19 23:40,"337 Meadow St, San Francisco, CA 94016" +240779,AA Batteries (4-pack),1,3.84,08/23/19 17:53,"511 6th St, Dallas, TX 75001" +240780,Bose SoundSport Headphones,1,99.99,08/18/19 23:39,"386 West St, Portland, OR 97035" +240781,USB-C Charging Cable,1,11.95,08/13/19 10:34,"918 Sunset St, San Francisco, CA 94016" +240782,Bose SoundSport Headphones,1,99.99,08/07/19 12:15,"543 Cherry St, New York City, NY 10001" +240783,Apple Airpods Headphones,1,150,08/27/19 20:26,"306 Lakeview St, Dallas, TX 75001" +240784,Wired Headphones,1,11.99,08/14/19 10:48,"516 Center St, San Francisco, CA 94016" +240785,20in Monitor,1,109.99,08/28/19 17:51,"869 Hill St, Portland, ME 04101" +240786,Google Phone,1,600,08/20/19 10:32,"451 Chestnut St, Atlanta, GA 30301" +240787,Lightning Charging Cable,1,14.95,08/16/19 07:50,"988 Lakeview St, Seattle, WA 98101" +240788,USB-C Charging Cable,1,11.95,08/11/19 18:46,"681 South St, Atlanta, GA 30301" +240789,Lightning Charging Cable,1,14.95,08/16/19 20:36,"34 Wilson St, San Francisco, CA 94016" +240790,Wired Headphones,1,11.99,08/28/19 05:00,"365 Chestnut St, New York City, NY 10001" +240791,27in 4K Gaming Monitor,1,389.99,08/10/19 12:15,"408 2nd St, Los Angeles, CA 90001" +240792,USB-C Charging Cable,2,11.95,08/10/19 17:16,"997 7th St, Boston, MA 02215" +240793,AAA Batteries (4-pack),1,2.99,08/20/19 10:48,"450 Elm St, Boston, MA 02215" +240794,Wired Headphones,2,11.99,08/26/19 23:20,"622 Dogwood St, San Francisco, CA 94016" +240795,USB-C Charging Cable,1,11.95,08/20/19 11:43,"530 Center St, San Francisco, CA 94016" +240796,Lightning Charging Cable,1,14.95,08/20/19 17:17,"514 13th St, San Francisco, CA 94016" +240797,Google Phone,1,600,08/10/19 10:23,"394 Dogwood St, New York City, NY 10001" +240797,Wired Headphones,1,11.99,08/10/19 10:23,"394 Dogwood St, New York City, NY 10001" +240798,27in FHD Monitor,1,149.99,08/30/19 22:58,"318 Lake St, Los Angeles, CA 90001" +240799,Lightning Charging Cable,2,14.95,08/19/19 20:52,"968 Sunset St, Boston, MA 02215" +240800,AA Batteries (4-pack),1,3.84,08/15/19 15:38,"258 Hickory St, San Francisco, CA 94016" +240801,27in 4K Gaming Monitor,1,389.99,08/04/19 14:20,"144 Park St, Boston, MA 02215" +240802,Wired Headphones,1,11.99,08/26/19 08:38,"233 Dogwood St, Seattle, WA 98101" +240803,AAA Batteries (4-pack),2,2.99,08/19/19 12:43,"791 Spruce St, San Francisco, CA 94016" +240804,27in 4K Gaming Monitor,1,389.99,08/10/19 13:31,"261 Chestnut St, Atlanta, GA 30301" +240805,iPhone,1,700,08/31/19 19:54,"588 Lincoln St, San Francisco, CA 94016" +240806,USB-C Charging Cable,1,11.95,08/09/19 22:26,"396 Spruce St, New York City, NY 10001" +240807,Lightning Charging Cable,1,14.95,08/03/19 09:00,"676 5th St, San Francisco, CA 94016" +240808,Macbook Pro Laptop,1,1700,08/10/19 11:16,"424 Sunset St, New York City, NY 10001" +240809,Lightning Charging Cable,1,14.95,08/25/19 12:15,"182 Meadow St, Seattle, WA 98101" +240810,AA Batteries (4-pack),2,3.84,08/12/19 22:02,"180 South St, New York City, NY 10001" +240811,USB-C Charging Cable,1,11.95,08/17/19 19:35,"765 5th St, Dallas, TX 75001" +240812,Vareebadd Phone,1,400,08/08/19 20:47,"122 Lakeview St, Los Angeles, CA 90001" +240813,USB-C Charging Cable,1,11.95,08/15/19 08:53,"270 Ridge St, Portland, ME 04101" +240814,Lightning Charging Cable,1,14.95,08/06/19 20:40,"16 Madison St, Dallas, TX 75001" +240815,USB-C Charging Cable,1,11.95,08/09/19 23:02,"218 Johnson St, Dallas, TX 75001" +240816,USB-C Charging Cable,1,11.95,08/03/19 11:26,"227 5th St, Boston, MA 02215" +240817,Lightning Charging Cable,1,14.95,08/21/19 02:42,"169 6th St, San Francisco, CA 94016" +240818,Lightning Charging Cable,1,14.95,08/04/19 13:11,"664 Jefferson St, Portland, OR 97035" +240819,Apple Airpods Headphones,1,150,08/23/19 21:44,"996 6th St, San Francisco, CA 94016" +240820,AA Batteries (4-pack),1,3.84,08/01/19 08:16,"70 West St, San Francisco, CA 94016" +240821,AA Batteries (4-pack),1,3.84,08/16/19 10:37,"526 Walnut St, Portland, OR 97035" +240822,Wired Headphones,1,11.99,08/19/19 13:03,"538 Wilson St, Atlanta, GA 30301" +240823,AA Batteries (4-pack),2,3.84,08/08/19 00:07,"691 13th St, Portland, OR 97035" +240824,Apple Airpods Headphones,1,150,08/22/19 22:07,"225 Johnson St, Los Angeles, CA 90001" +240825,Flatscreen TV,1,300,08/02/19 15:52,"763 Church St, San Francisco, CA 94016" +240826,USB-C Charging Cable,1,11.95,08/26/19 20:43,"697 Elm St, Atlanta, GA 30301" +240827,iPhone,1,700,08/31/19 20:00,"143 Ridge St, Los Angeles, CA 90001" +240828,iPhone,1,700,08/06/19 10:56,"864 Washington St, Seattle, WA 98101" +240829,Macbook Pro Laptop,1,1700,08/20/19 15:31,"96 Lincoln St, Austin, TX 73301" +240830,Apple Airpods Headphones,1,150,08/26/19 07:47,"59 6th St, San Francisco, CA 94016" +240831,Wired Headphones,1,11.99,08/12/19 13:44,"472 Johnson St, San Francisco, CA 94016" +240832,27in FHD Monitor,1,149.99,08/01/19 17:11,"735 11th St, Los Angeles, CA 90001" +240833,Flatscreen TV,1,300,08/29/19 14:18,"972 River St, Austin, TX 73301" +240834,AA Batteries (4-pack),1,3.84,08/08/19 20:46,"987 Jackson St, San Francisco, CA 94016" +240835,27in FHD Monitor,1,149.99,08/25/19 13:01,"580 South St, Seattle, WA 98101" +240836,AA Batteries (4-pack),1,3.84,08/08/19 21:45,"904 Johnson St, Portland, OR 97035" +240837,34in Ultrawide Monitor,1,379.99,08/31/19 14:35,"214 Hickory St, San Francisco, CA 94016" +240838,27in FHD Monitor,1,149.99,08/20/19 23:37,"796 South St, San Francisco, CA 94016" +240839,AA Batteries (4-pack),1,3.84,08/18/19 17:12,"274 Johnson St, Portland, OR 97035" +240840,Bose SoundSport Headphones,1,99.99,08/04/19 15:29,"14 South St, Seattle, WA 98101" +240841,Wired Headphones,1,11.99,08/26/19 00:45,"614 West St, New York City, NY 10001" +,,,,, +240842,Macbook Pro Laptop,1,1700,08/30/19 23:03,"81 Hill St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +240843,Lightning Charging Cable,1,14.95,08/18/19 19:30,"284 8th St, San Francisco, CA 94016" +240844,Bose SoundSport Headphones,1,99.99,08/23/19 16:27,"196 Maple St, Atlanta, GA 30301" +240845,Wired Headphones,1,11.99,08/07/19 06:09,"882 12th St, San Francisco, CA 94016" +240846,AAA Batteries (4-pack),1,2.99,08/01/19 14:02,"138 River St, Los Angeles, CA 90001" +240847,Flatscreen TV,1,300,08/13/19 19:40,"741 10th St, Austin, TX 73301" +240848,Wired Headphones,1,11.99,08/07/19 16:40,"835 Walnut St, Dallas, TX 75001" +240849,Apple Airpods Headphones,1,150,08/24/19 13:11,"620 West St, Seattle, WA 98101" +240850,USB-C Charging Cable,2,11.95,08/18/19 19:47,"470 Spruce St, Boston, MA 02215" +240851,Wired Headphones,3,11.99,08/07/19 22:59,"865 Elm St, San Francisco, CA 94016" +240852,AA Batteries (4-pack),1,3.84,08/18/19 15:28,"614 Adams St, New York City, NY 10001" +240853,USB-C Charging Cable,1,11.95,08/18/19 14:25,"274 Maple St, Atlanta, GA 30301" +240854,USB-C Charging Cable,2,11.95,08/31/19 23:10,"415 9th St, San Francisco, CA 94016" +240855,AA Batteries (4-pack),1,3.84,08/14/19 09:08,"191 8th St, Dallas, TX 75001" +240856,34in Ultrawide Monitor,1,379.99,08/26/19 22:41,"697 11th St, Seattle, WA 98101" +240857,Lightning Charging Cable,1,14.95,08/10/19 06:07,"271 Lakeview St, Austin, TX 73301" +240858,USB-C Charging Cable,1,11.95,08/09/19 13:58,"54 2nd St, San Francisco, CA 94016" +240859,Google Phone,1,600,08/21/19 12:11,"131 Willow St, Atlanta, GA 30301" +240860,AAA Batteries (4-pack),2,2.99,08/14/19 20:18,"106 Lincoln St, Los Angeles, CA 90001" +240861,Wired Headphones,1,11.99,08/01/19 07:03,"480 8th St, Los Angeles, CA 90001" +240862,Apple Airpods Headphones,1,150,08/27/19 18:22,"98 14th St, Boston, MA 02215" +240863,20in Monitor,1,109.99,08/22/19 12:04,"404 Walnut St, New York City, NY 10001" +240864,27in FHD Monitor,1,149.99,08/09/19 13:50,"561 West St, San Francisco, CA 94016" +240865,iPhone,1,700,08/16/19 19:12,"970 Church St, Dallas, TX 75001" +240865,Lightning Charging Cable,3,14.95,08/16/19 19:12,"970 Church St, Dallas, TX 75001" +240866,Apple Airpods Headphones,1,150,08/08/19 13:00,"175 Forest St, San Francisco, CA 94016" +240867,Flatscreen TV,1,300,08/07/19 20:23,"545 Jackson St, San Francisco, CA 94016" +240868,AAA Batteries (4-pack),3,2.99,08/18/19 19:07,"657 North St, San Francisco, CA 94016" +240869,Apple Airpods Headphones,1,150,08/01/19 19:36,"131 River St, New York City, NY 10001" +240870,USB-C Charging Cable,2,11.95,08/30/19 19:16,"408 10th St, Boston, MA 02215" +240871,USB-C Charging Cable,1,11.95,08/14/19 13:01,"31 North St, Los Angeles, CA 90001" +240872,AA Batteries (4-pack),1,3.84,08/02/19 17:23,"8 Main St, New York City, NY 10001" +240873,Lightning Charging Cable,1,14.95,08/13/19 07:08,"971 13th St, Los Angeles, CA 90001" +240874,USB-C Charging Cable,1,11.95,08/15/19 12:13,"952 Adams St, Seattle, WA 98101" +240875,27in FHD Monitor,1,149.99,08/11/19 16:53,"790 11th St, Austin, TX 73301" +240876,ThinkPad Laptop,1,999.99,08/12/19 19:35,"288 Washington St, San Francisco, CA 94016" +240877,Wired Headphones,1,11.99,08/01/19 14:33,"749 Willow St, Portland, ME 04101" +240878,Flatscreen TV,1,300,08/04/19 10:47,"185 6th St, Austin, TX 73301" +240879,ThinkPad Laptop,1,999.99,08/17/19 10:02,"270 12th St, San Francisco, CA 94016" +240880,Wired Headphones,1,11.99,08/19/19 07:43,"956 Lakeview St, Dallas, TX 75001" +240881,Lightning Charging Cable,1,14.95,08/19/19 16:45,"489 13th St, Dallas, TX 75001" +240882,Apple Airpods Headphones,1,150,08/28/19 22:25,"571 Elm St, Seattle, WA 98101" +240883,Wired Headphones,1,11.99,08/20/19 07:30,"915 Chestnut St, New York City, NY 10001" +240884,27in FHD Monitor,1,149.99,08/08/19 21:46,"617 12th St, Los Angeles, CA 90001" +240885,USB-C Charging Cable,1,11.95,08/10/19 22:53,"748 7th St, New York City, NY 10001" +240886,Lightning Charging Cable,1,14.95,08/05/19 16:29,"851 Hickory St, Portland, OR 97035" +240887,USB-C Charging Cable,1,11.95,08/24/19 18:54,"429 Wilson St, Seattle, WA 98101" +240888,Bose SoundSport Headphones,1,99.99,08/22/19 04:03,"1 Main St, San Francisco, CA 94016" +240889,Wired Headphones,1,11.99,08/22/19 20:52,"782 Hill St, Dallas, TX 75001" +240890,27in FHD Monitor,1,149.99,08/18/19 18:23,"773 Lakeview St, Seattle, WA 98101" +240891,Lightning Charging Cable,1,14.95,08/19/19 18:03,"12 Hickory St, San Francisco, CA 94016" +240892,27in 4K Gaming Monitor,1,389.99,08/17/19 23:06,"347 Lincoln St, New York City, NY 10001" +240893,AA Batteries (4-pack),2,3.84,08/07/19 09:03,"31 Walnut St, Austin, TX 73301" +240894,Apple Airpods Headphones,1,150,08/02/19 18:15,"255 Ridge St, Boston, MA 02215" +240895,AAA Batteries (4-pack),1,2.99,08/20/19 17:57,"77 Cedar St, Los Angeles, CA 90001" +240896,34in Ultrawide Monitor,1,379.99,08/12/19 16:38,"509 Cedar St, New York City, NY 10001" +240897,Lightning Charging Cable,1,14.95,08/01/19 11:51,"896 Park St, Austin, TX 73301" +240898,Apple Airpods Headphones,1,150,08/28/19 00:20,"379 River St, Los Angeles, CA 90001" +240899,20in Monitor,1,109.99,08/19/19 09:50,"419 Johnson St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +240900,Wired Headphones,1,11.99,08/24/19 15:31,"907 Lakeview St, Austin, TX 73301" +240901,Lightning Charging Cable,1,14.95,08/29/19 19:39,"769 Cherry St, Los Angeles, CA 90001" +240902,Lightning Charging Cable,1,14.95,08/28/19 15:31,"919 Pine St, New York City, NY 10001" +240903,27in FHD Monitor,1,149.99,08/28/19 23:14,"632 13th St, Seattle, WA 98101" +240904,USB-C Charging Cable,3,11.95,08/25/19 20:54,"438 Adams St, New York City, NY 10001" +240905,USB-C Charging Cable,1,11.95,08/28/19 23:17,"57 14th St, Dallas, TX 75001" +240906,Lightning Charging Cable,1,14.95,08/08/19 17:44,"191 Madison St, Austin, TX 73301" +240907,Wired Headphones,1,11.99,08/28/19 06:25,"728 Jackson St, Dallas, TX 75001" +240908,AAA Batteries (4-pack),1,2.99,08/26/19 13:04,"116 4th St, Los Angeles, CA 90001" +240909,27in FHD Monitor,1,149.99,08/21/19 15:24,"410 Willow St, Los Angeles, CA 90001" +240910,Google Phone,1,600,08/11/19 17:26,"687 Church St, Atlanta, GA 30301" +240911,iPhone,1,700,08/02/19 08:04,"61 4th St, Austin, TX 73301" +240911,Wired Headphones,1,11.99,08/02/19 08:04,"61 4th St, Austin, TX 73301" +240912,AA Batteries (4-pack),1,3.84,08/18/19 16:56,"119 Madison St, Portland, OR 97035" +240913,Wired Headphones,1,11.99,08/17/19 22:03,"530 West St, New York City, NY 10001" +240914,iPhone,1,700,08/04/19 11:38,"708 14th St, Los Angeles, CA 90001" +240915,USB-C Charging Cable,1,11.95,08/18/19 23:28,"886 South St, San Francisco, CA 94016" +240916,Lightning Charging Cable,1,14.95,08/30/19 09:27,"258 Dogwood St, Los Angeles, CA 90001" +240917,LG Washing Machine,1,600.0,08/28/19 15:23,"691 2nd St, New York City, NY 10001" +240918,Lightning Charging Cable,1,14.95,08/07/19 21:27,"109 Cedar St, San Francisco, CA 94016" +240919,Lightning Charging Cable,1,14.95,08/04/19 12:18,"310 13th St, Atlanta, GA 30301" +240920,Flatscreen TV,1,300,08/29/19 22:36,"626 2nd St, Boston, MA 02215" +240921,27in FHD Monitor,1,149.99,08/14/19 17:33,"912 Hickory St, Los Angeles, CA 90001" +240922,Lightning Charging Cable,1,14.95,08/21/19 13:56,"12 12th St, Seattle, WA 98101" +240923,iPhone,1,700,08/26/19 23:12,"658 Center St, Austin, TX 73301" +240923,Lightning Charging Cable,1,14.95,08/26/19 23:12,"658 Center St, Austin, TX 73301" +240924,Wired Headphones,1,11.99,08/19/19 16:17,"744 Park St, Dallas, TX 75001" +240925,AA Batteries (4-pack),2,3.84,08/30/19 09:42,"987 Center St, Austin, TX 73301" +240926,Flatscreen TV,1,300,08/16/19 07:09,"855 Hill St, San Francisco, CA 94016" +240927,Google Phone,1,600,08/03/19 22:41,"164 Lincoln St, Dallas, TX 75001" +240928,34in Ultrawide Monitor,1,379.99,08/26/19 19:24,"559 9th St, Atlanta, GA 30301" +240929,Wired Headphones,1,11.99,08/27/19 08:42,"678 5th St, Boston, MA 02215" +240930,AAA Batteries (4-pack),1,2.99,08/11/19 06:33,"592 Meadow St, San Francisco, CA 94016" +240931,AA Batteries (4-pack),1,3.84,08/31/19 22:14,"951 Main St, Boston, MA 02215" +240932,27in FHD Monitor,1,149.99,08/17/19 19:57,"211 Dogwood St, San Francisco, CA 94016" +240933,AAA Batteries (4-pack),1,2.99,08/04/19 18:33,"285 Johnson St, Los Angeles, CA 90001" +240933,AA Batteries (4-pack),2,3.84,08/04/19 18:33,"285 Johnson St, Los Angeles, CA 90001" +240934,Wired Headphones,1,11.99,08/01/19 09:46,"588 Lake St, San Francisco, CA 94016" +240935,Lightning Charging Cable,1,14.95,08/22/19 12:21,"871 Meadow St, Dallas, TX 75001" +240936,Lightning Charging Cable,1,14.95,08/02/19 22:48,"729 Center St, San Francisco, CA 94016" +240937,Wired Headphones,1,11.99,08/17/19 00:25,"439 Elm St, Austin, TX 73301" +240938,AA Batteries (4-pack),2,3.84,08/05/19 17:49,"239 Forest St, San Francisco, CA 94016" +240939,Google Phone,1,600,08/09/19 10:28,"715 Forest St, San Francisco, CA 94016" +240940,Bose SoundSport Headphones,1,99.99,08/06/19 13:59,"540 Lakeview St, San Francisco, CA 94016" +240941,AA Batteries (4-pack),2,3.84,08/15/19 21:15,"93 Jefferson St, New York City, NY 10001" +240942,ThinkPad Laptop,1,999.99,08/21/19 18:30,"484 Lincoln St, Portland, OR 97035" +240943,USB-C Charging Cable,1,11.95,08/13/19 11:20,"987 Elm St, Boston, MA 02215" +240944,27in FHD Monitor,1,149.99,08/21/19 18:58,"278 13th St, Portland, ME 04101" +240945,Apple Airpods Headphones,1,150,08/29/19 08:30,"339 West St, New York City, NY 10001" +240946,Lightning Charging Cable,1,14.95,08/24/19 14:53,"998 Willow St, Portland, OR 97035" +240947,Wired Headphones,1,11.99,08/28/19 13:44,"98 Elm St, Boston, MA 02215" +240948,USB-C Charging Cable,1,11.95,08/08/19 18:08,"256 Jackson St, San Francisco, CA 94016" +240949,Flatscreen TV,1,300,08/07/19 09:36,"204 Cherry St, San Francisco, CA 94016" +240950,Wired Headphones,1,11.99,08/13/19 14:40,"370 Sunset St, Los Angeles, CA 90001" +240951,27in FHD Monitor,1,149.99,08/30/19 10:03,"775 Forest St, Boston, MA 02215" +240952,27in 4K Gaming Monitor,1,389.99,08/02/19 08:01,"33 Madison St, Boston, MA 02215" +240953,AA Batteries (4-pack),1,3.84,08/16/19 19:47,"977 Highland St, San Francisco, CA 94016" +240954,27in FHD Monitor,1,149.99,08/11/19 00:00,"917 7th St, Austin, TX 73301" +240955,27in FHD Monitor,1,149.99,08/04/19 11:26,"392 Lake St, Boston, MA 02215" +240956,LG Dryer,1,600.0,08/02/19 09:10,"107 Adams St, Dallas, TX 75001" +240957,AAA Batteries (4-pack),1,2.99,08/16/19 00:31,"745 Hickory St, Atlanta, GA 30301" +240958,Macbook Pro Laptop,1,1700,08/02/19 00:40,"625 Willow St, San Francisco, CA 94016" +240959,AAA Batteries (4-pack),1,2.99,08/14/19 15:30,"783 Washington St, Los Angeles, CA 90001" +240960,Macbook Pro Laptop,1,1700,08/15/19 12:27,"446 Hill St, Los Angeles, CA 90001" +240961,27in FHD Monitor,1,149.99,08/07/19 03:27,"764 13th St, Atlanta, GA 30301" +240962,AA Batteries (4-pack),1,3.84,08/15/19 12:03,"915 Johnson St, San Francisco, CA 94016" +240963,Macbook Pro Laptop,1,1700,08/25/19 11:48,"298 Washington St, New York City, NY 10001" +240964,Wired Headphones,1,11.99,08/21/19 16:50,"157 8th St, San Francisco, CA 94016" +240965,Apple Airpods Headphones,1,150,08/24/19 09:17,"41 Adams St, Portland, OR 97035" +240966,Flatscreen TV,1,300,08/25/19 14:46,"23 Pine St, Seattle, WA 98101" +240967,Wired Headphones,1,11.99,08/22/19 15:23,"362 8th St, Austin, TX 73301" +240968,AA Batteries (4-pack),1,3.84,08/15/19 22:39,"193 Center St, San Francisco, CA 94016" +240969,Google Phone,1,600,08/26/19 15:27,"554 Dogwood St, Portland, OR 97035" +240970,27in FHD Monitor,1,149.99,08/11/19 12:51,"452 North St, Dallas, TX 75001" +240971,Bose SoundSport Headphones,1,99.99,08/01/19 19:57,"983 Ridge St, Boston, MA 02215" +240972,Lightning Charging Cable,1,14.95,08/14/19 19:41,"732 West St, Boston, MA 02215" +240973,USB-C Charging Cable,1,11.95,08/15/19 14:14,"180 Sunset St, San Francisco, CA 94016" +240974,Flatscreen TV,1,300,08/07/19 17:52,"736 Chestnut St, Atlanta, GA 30301" +240975,AA Batteries (4-pack),1,3.84,08/04/19 12:19,"500 Dogwood St, Portland, ME 04101" +240976,Wired Headphones,1,11.99,08/15/19 19:17,"549 8th St, San Francisco, CA 94016" +240977,Apple Airpods Headphones,1,150,08/03/19 21:54,"169 Spruce St, San Francisco, CA 94016" +240978,Apple Airpods Headphones,1,150,08/09/19 08:26,"834 North St, San Francisco, CA 94016" +240979,Apple Airpods Headphones,1,150,08/29/19 16:59,"78 5th St, Seattle, WA 98101" +240980,Lightning Charging Cable,1,14.95,08/03/19 07:15,"482 Forest St, Portland, OR 97035" +240981,Lightning Charging Cable,1,14.95,08/02/19 10:44,"181 9th St, Boston, MA 02215" +240982,Lightning Charging Cable,1,14.95,08/24/19 11:17,"235 Main St, Los Angeles, CA 90001" +240983,Lightning Charging Cable,1,14.95,08/03/19 20:28,"153 Hickory St, San Francisco, CA 94016" +240984,AAA Batteries (4-pack),1,2.99,08/12/19 22:45,"585 Church St, Dallas, TX 75001" +240985,Bose SoundSport Headphones,1,99.99,08/25/19 22:09,"451 6th St, Dallas, TX 75001" +240986,AAA Batteries (4-pack),1,2.99,08/23/19 12:49,"592 South St, San Francisco, CA 94016" +240987,Lightning Charging Cable,1,14.95,08/06/19 12:59,"905 Forest St, San Francisco, CA 94016" +240988,Wired Headphones,1,11.99,08/03/19 19:02,"435 Spruce St, New York City, NY 10001" +240989,27in FHD Monitor,1,149.99,08/27/19 13:14,"754 Madison St, Dallas, TX 75001" +240990,Apple Airpods Headphones,1,150,08/17/19 21:30,"963 West St, San Francisco, CA 94016" +240991,Wired Headphones,1,11.99,08/25/19 12:53,"714 Lake St, Dallas, TX 75001" +240992,AAA Batteries (4-pack),1,2.99,08/07/19 15:35,"651 Hill St, Portland, OR 97035" +240993,Apple Airpods Headphones,1,150,08/27/19 17:01,"463 Jefferson St, Atlanta, GA 30301" +240994,Wired Headphones,1,11.99,08/18/19 21:28,"133 River St, Los Angeles, CA 90001" +240995,USB-C Charging Cable,1,11.95,08/20/19 11:52,"161 Sunset St, San Francisco, CA 94016" +240996,Wired Headphones,1,11.99,08/13/19 21:47,"208 7th St, Seattle, WA 98101" +240996,27in 4K Gaming Monitor,1,389.99,08/13/19 21:47,"208 7th St, Seattle, WA 98101" +240997,USB-C Charging Cable,1,11.95,08/18/19 20:46,"777 Main St, San Francisco, CA 94016" +240998,27in 4K Gaming Monitor,1,389.99,08/06/19 00:34,"19 Ridge St, Dallas, TX 75001" +240999,Lightning Charging Cable,2,14.95,08/29/19 10:07,"225 Jefferson St, Austin, TX 73301" +241000,AAA Batteries (4-pack),1,2.99,08/28/19 13:46,"952 Lake St, San Francisco, CA 94016" +241001,iPhone,1,700,08/05/19 20:50,"824 Ridge St, Los Angeles, CA 90001" +241002,Bose SoundSport Headphones,1,99.99,08/11/19 07:11,"879 Lincoln St, Seattle, WA 98101" +241003,USB-C Charging Cable,1,11.95,08/12/19 22:02,"85 Hickory St, Boston, MA 02215" +241004,Flatscreen TV,1,300,08/26/19 08:40,"977 8th St, San Francisco, CA 94016" +241005,Bose SoundSport Headphones,1,99.99,08/31/19 22:22,"419 Lakeview St, Seattle, WA 98101" +241006,Wired Headphones,1,11.99,08/06/19 10:55,"195 Hickory St, Atlanta, GA 30301" +241007,iPhone,1,700,08/03/19 20:29,"420 Washington St, Los Angeles, CA 90001" +241008,Wired Headphones,1,11.99,08/31/19 21:52,"323 4th St, Seattle, WA 98101" +241009,USB-C Charging Cable,1,11.95,08/14/19 18:08,"187 10th St, Dallas, TX 75001" +241010,Wired Headphones,1,11.99,08/27/19 14:46,"839 12th St, New York City, NY 10001" +241011,Macbook Pro Laptop,1,1700,08/10/19 12:45,"848 Chestnut St, Los Angeles, CA 90001" +241012,USB-C Charging Cable,1,11.95,08/11/19 15:57,"932 Elm St, Portland, OR 97035" +241013,Flatscreen TV,1,300,08/15/19 19:54,"642 12th St, Austin, TX 73301" +241014,USB-C Charging Cable,1,11.95,08/27/19 10:08,"821 Lincoln St, New York City, NY 10001" +241015,AAA Batteries (4-pack),1,2.99,08/22/19 08:19,"692 West St, San Francisco, CA 94016" +241016,Wired Headphones,1,11.99,08/06/19 10:47,"239 Hickory St, Atlanta, GA 30301" +241017,Apple Airpods Headphones,1,150,08/17/19 19:17,"200 Adams St, San Francisco, CA 94016" +241018,AA Batteries (4-pack),4,3.84,08/12/19 14:56,"700 Maple St, Austin, TX 73301" +241019,USB-C Charging Cable,1,11.95,08/15/19 17:42,"602 Adams St, Los Angeles, CA 90001" +241020,Apple Airpods Headphones,1,150,08/03/19 17:24,"1 6th St, Dallas, TX 75001" +241021,AAA Batteries (4-pack),1,2.99,08/08/19 21:15,"139 14th St, New York City, NY 10001" +241022,Bose SoundSport Headphones,1,99.99,08/07/19 19:43,"385 Hill St, Dallas, TX 75001" +241023,ThinkPad Laptop,1,999.99,08/20/19 08:40,"914 Hickory St, Atlanta, GA 30301" +241024,Wired Headphones,1,11.99,08/14/19 12:39,"383 Highland St, Los Angeles, CA 90001" +241025,Flatscreen TV,1,300,08/14/19 19:13,"985 Madison St, San Francisco, CA 94016" +241026,Lightning Charging Cable,1,14.95,08/05/19 13:02,"715 Dogwood St, San Francisco, CA 94016" +241027,Lightning Charging Cable,1,14.95,08/11/19 15:43,"654 6th St, New York City, NY 10001" +241028,iPhone,1,700,08/04/19 12:01,"52 8th St, Los Angeles, CA 90001" +241029,27in FHD Monitor,1,149.99,08/17/19 18:27,"386 Washington St, San Francisco, CA 94016" +241030,Apple Airpods Headphones,1,150,08/22/19 10:11,"508 2nd St, San Francisco, CA 94016" +241031,27in FHD Monitor,1,149.99,08/16/19 09:19,"819 12th St, Dallas, TX 75001" +241032,34in Ultrawide Monitor,1,379.99,08/24/19 18:10,"916 River St, Los Angeles, CA 90001" +241033,Lightning Charging Cable,1,14.95,08/30/19 19:53,"70 Washington St, New York City, NY 10001" +241034,AAA Batteries (4-pack),2,2.99,08/21/19 18:17,"642 West St, San Francisco, CA 94016" +241035,27in 4K Gaming Monitor,1,389.99,08/28/19 14:50,"952 Willow St, San Francisco, CA 94016" +241036,USB-C Charging Cable,1,11.95,08/25/19 06:37,"792 Hickory St, San Francisco, CA 94016" +241037,Vareebadd Phone,1,400,08/03/19 11:33,"333 Chestnut St, Atlanta, GA 30301" +241037,USB-C Charging Cable,1,11.95,08/03/19 11:33,"333 Chestnut St, Atlanta, GA 30301" +241038,Wired Headphones,1,11.99,08/30/19 10:26,"696 Maple St, San Francisco, CA 94016" +241039,Flatscreen TV,1,300,08/12/19 11:21,"682 Main St, San Francisco, CA 94016" +241040,iPhone,1,700,08/06/19 09:10,"726 Cherry St, San Francisco, CA 94016" +241041,Wired Headphones,1,11.99,08/21/19 14:11,"982 Wilson St, Boston, MA 02215" +241042,20in Monitor,1,109.99,08/30/19 13:41,"657 Elm St, San Francisco, CA 94016" +241043,Bose SoundSport Headphones,1,99.99,08/16/19 20:57,"674 Dogwood St, Dallas, TX 75001" +241044,Wired Headphones,1,11.99,08/17/19 21:43,"823 14th St, Seattle, WA 98101" +241045,34in Ultrawide Monitor,1,379.99,08/09/19 17:57,"323 Sunset St, New York City, NY 10001" +241046,Bose SoundSport Headphones,1,99.99,08/13/19 23:15,"589 Pine St, San Francisco, CA 94016" +241047,AAA Batteries (4-pack),3,2.99,08/27/19 20:07,"709 Spruce St, Atlanta, GA 30301" +241048,LG Washing Machine,1,600.0,08/06/19 22:40,"308 14th St, Seattle, WA 98101" +241049,Lightning Charging Cable,1,14.95,08/28/19 18:56,"310 Lincoln St, Boston, MA 02215" +241050,27in FHD Monitor,1,149.99,08/28/19 08:40,"873 11th St, Seattle, WA 98101" +241051,Lightning Charging Cable,1,14.95,08/26/19 05:15,"466 Adams St, San Francisco, CA 94016" +241052,Lightning Charging Cable,1,14.95,08/31/19 21:04,"508 Spruce St, San Francisco, CA 94016" +241053,USB-C Charging Cable,1,11.95,08/02/19 10:21,"248 Jackson St, Los Angeles, CA 90001" +241054,Lightning Charging Cable,1,14.95,08/30/19 13:44,"218 12th St, Los Angeles, CA 90001" +241055,USB-C Charging Cable,2,11.95,08/07/19 21:44,"927 9th St, Los Angeles, CA 90001" +241056,USB-C Charging Cable,1,11.95,08/19/19 19:51,"31 Sunset St, New York City, NY 10001" +241057,Macbook Pro Laptop,1,1700,08/01/19 21:29,"460 Sunset St, New York City, NY 10001" +241058,AAA Batteries (4-pack),2,2.99,08/11/19 17:20,"402 Lake St, Austin, TX 73301" +241059,Wired Headphones,1,11.99,08/24/19 08:49,"534 11th St, Los Angeles, CA 90001" +241060,Bose SoundSport Headphones,1,99.99,08/15/19 09:40,"430 Highland St, Los Angeles, CA 90001" +241061,USB-C Charging Cable,1,11.95,08/19/19 19:15,"528 River St, San Francisco, CA 94016" +241062,34in Ultrawide Monitor,1,379.99,08/12/19 16:22,"360 River St, Portland, OR 97035" +241063,Macbook Pro Laptop,1,1700,08/04/19 14:02,"63 Church St, Boston, MA 02215" +241064,Macbook Pro Laptop,1,1700,08/05/19 17:03,"961 10th St, San Francisco, CA 94016" +241065,Macbook Pro Laptop,1,1700,08/15/19 23:03,"836 West St, Los Angeles, CA 90001" +241066,ThinkPad Laptop,1,999.99,08/10/19 20:08,"972 Sunset St, Seattle, WA 98101" +241067,Wired Headphones,1,11.99,08/25/19 23:12,"489 Hickory St, San Francisco, CA 94016" +241068,Flatscreen TV,1,300,08/16/19 21:19,"906 14th St, San Francisco, CA 94016" +241069,USB-C Charging Cable,1,11.95,08/16/19 23:06,"817 Washington St, San Francisco, CA 94016" +241070,Google Phone,1,600,08/27/19 00:54,"418 Wilson St, Dallas, TX 75001" +241071,AA Batteries (4-pack),2,3.84,08/12/19 20:48,"4 Adams St, New York City, NY 10001" +241072,AA Batteries (4-pack),1,3.84,08/21/19 09:56,"357 Church St, Los Angeles, CA 90001" +241073,34in Ultrawide Monitor,1,379.99,08/07/19 18:19,"95 Center St, Seattle, WA 98101" +241074,Bose SoundSport Headphones,1,99.99,08/31/19 14:48,"291 14th St, Atlanta, GA 30301" +241075,AA Batteries (4-pack),1,3.84,08/11/19 12:26,"465 14th St, Atlanta, GA 30301" +241076,AA Batteries (4-pack),1,3.84,08/22/19 13:12,"731 Willow St, San Francisco, CA 94016" +241077,USB-C Charging Cable,2,11.95,08/02/19 13:46,"287 8th St, Austin, TX 73301" +241078,AA Batteries (4-pack),1,3.84,08/09/19 12:43,"346 Madison St, Los Angeles, CA 90001" +241079,iPhone,1,700,08/13/19 05:37,"457 Lake St, San Francisco, CA 94016" +241080,Apple Airpods Headphones,1,150,08/11/19 14:17,"398 Ridge St, Los Angeles, CA 90001" +241081,AAA Batteries (4-pack),2,2.99,08/30/19 20:15,"306 Meadow St, Boston, MA 02215" +241082,27in 4K Gaming Monitor,1,389.99,08/11/19 21:24,"942 9th St, San Francisco, CA 94016" +241083,Apple Airpods Headphones,1,150,08/25/19 21:25,"707 Lake St, Dallas, TX 75001" +241084,AAA Batteries (4-pack),1,2.99,08/05/19 21:31,"674 Church St, San Francisco, CA 94016" +241085,Lightning Charging Cable,1,14.95,08/19/19 16:29,"896 Pine St, Seattle, WA 98101" +241086,Bose SoundSport Headphones,1,99.99,08/06/19 12:37,"667 Ridge St, San Francisco, CA 94016" +241087,27in 4K Gaming Monitor,1,389.99,08/06/19 06:49,"164 4th St, Portland, OR 97035" +241088,Lightning Charging Cable,1,14.95,08/19/19 20:07,"472 14th St, Portland, OR 97035" +241089,USB-C Charging Cable,1,11.95,08/26/19 14:47,"380 North St, Seattle, WA 98101" +241090,AAA Batteries (4-pack),2,2.99,08/28/19 17:25,"244 14th St, New York City, NY 10001" +241091,Bose SoundSport Headphones,1,99.99,08/07/19 00:18,"457 6th St, New York City, NY 10001" +241092,USB-C Charging Cable,1,11.95,08/02/19 12:22,"825 8th St, Los Angeles, CA 90001" +241093,Flatscreen TV,1,300,08/31/19 17:20,"415 5th St, San Francisco, CA 94016" +241094,Lightning Charging Cable,1,14.95,08/21/19 10:07,"672 South St, San Francisco, CA 94016" +241095,USB-C Charging Cable,1,11.95,08/16/19 16:14,"39 Cherry St, San Francisco, CA 94016" +241096,AA Batteries (4-pack),1,3.84,08/05/19 07:48,"887 Willow St, Austin, TX 73301" +241097,Macbook Pro Laptop,1,1700,08/06/19 10:05,"617 Meadow St, San Francisco, CA 94016" +241098,USB-C Charging Cable,1,11.95,08/27/19 13:11,"545 Center St, Austin, TX 73301" +241099,USB-C Charging Cable,1,11.95,08/17/19 22:01,"903 Cedar St, Portland, OR 97035" +241100,Apple Airpods Headphones,1,150,08/05/19 20:37,"454 13th St, San Francisco, CA 94016" +241101,Flatscreen TV,1,300,08/06/19 11:34,"256 Cherry St, Boston, MA 02215" +241102,27in FHD Monitor,1,149.99,08/09/19 13:17,"766 Jefferson St, Seattle, WA 98101" +241103,Google Phone,1,600,08/02/19 13:05,"154 North St, Los Angeles, CA 90001" +241103,USB-C Charging Cable,1,11.95,08/02/19 13:05,"154 North St, Los Angeles, CA 90001" +241104,ThinkPad Laptop,1,999.99,08/27/19 03:44,"202 1st St, New York City, NY 10001" +241105,Apple Airpods Headphones,1,150,08/28/19 20:08,"816 Center St, Los Angeles, CA 90001" +241106,27in 4K Gaming Monitor,1,389.99,08/31/19 00:28,"805 Jefferson St, Seattle, WA 98101" +241107,iPhone,1,700,08/19/19 20:03,"946 Forest St, Atlanta, GA 30301" +241108,Apple Airpods Headphones,1,150,08/14/19 08:04,"610 Johnson St, Los Angeles, CA 90001" +241109,Lightning Charging Cable,1,14.95,08/01/19 18:38,"513 South St, Portland, ME 04101" +241110,Macbook Pro Laptop,1,1700,08/01/19 12:56,"355 Center St, Atlanta, GA 30301" +241111,Lightning Charging Cable,1,14.95,08/13/19 12:18,"356 Ridge St, San Francisco, CA 94016" +241111,Lightning Charging Cable,1,14.95,08/13/19 12:18,"356 Ridge St, San Francisco, CA 94016" +241112,Lightning Charging Cable,1,14.95,08/24/19 09:44,"776 Willow St, Austin, TX 73301" +241113,USB-C Charging Cable,2,11.95,08/16/19 18:33,"960 9th St, Austin, TX 73301" +241114,34in Ultrawide Monitor,1,379.99,08/23/19 21:54,"4 4th St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +241115,USB-C Charging Cable,1,11.95,08/21/19 21:51,"268 Washington St, Seattle, WA 98101" +241116,Lightning Charging Cable,1,14.95,08/03/19 23:21,"473 Forest St, Seattle, WA 98101" +241117,USB-C Charging Cable,1,11.95,08/17/19 22:26,"404 7th St, Los Angeles, CA 90001" +241118,AA Batteries (4-pack),1,3.84,08/23/19 06:43,"933 2nd St, Boston, MA 02215" +241119,Apple Airpods Headphones,1,150,08/25/19 18:03,"514 Ridge St, San Francisco, CA 94016" +241120,AA Batteries (4-pack),1,3.84,08/11/19 18:09,"513 Meadow St, Boston, MA 02215" +241120,AA Batteries (4-pack),1,3.84,08/11/19 18:09,"513 Meadow St, Boston, MA 02215" +241121,Wired Headphones,2,11.99,08/24/19 18:22,"869 Cedar St, San Francisco, CA 94016" +241122,27in FHD Monitor,1,149.99,08/07/19 20:56,"144 Ridge St, Boston, MA 02215" +241123,Wired Headphones,1,11.99,08/04/19 20:44,"200 9th St, New York City, NY 10001" +241124,iPhone,1,700,08/05/19 22:53,"589 Hickory St, Los Angeles, CA 90001" +241125,ThinkPad Laptop,1,999.99,08/11/19 20:45,"439 Lake St, Portland, ME 04101" +241126,ThinkPad Laptop,1,999.99,08/24/19 22:57,"38 2nd St, San Francisco, CA 94016" +241127,Google Phone,1,600,08/24/19 21:40,"71 Washington St, San Francisco, CA 94016" +241128,Lightning Charging Cable,1,14.95,08/16/19 19:54,"723 Lakeview St, San Francisco, CA 94016" +241129,Lightning Charging Cable,2,14.95,08/13/19 13:42,"229 South St, Portland, ME 04101" +241130,Lightning Charging Cable,1,14.95,08/14/19 15:17,"471 West St, New York City, NY 10001" +241131,Apple Airpods Headphones,1,150,08/04/19 11:53,"448 Center St, San Francisco, CA 94016" +241132,AAA Batteries (4-pack),1,2.99,08/27/19 19:44,"303 13th St, Seattle, WA 98101" +241133,34in Ultrawide Monitor,1,379.99,08/29/19 18:42,"200 13th St, Los Angeles, CA 90001" +241134,Bose SoundSport Headphones,1,99.99,08/18/19 17:21,"258 South St, Los Angeles, CA 90001" +241135,27in FHD Monitor,1,149.99,08/09/19 00:02,"672 Cedar St, Los Angeles, CA 90001" +241136,Apple Airpods Headphones,1,150,08/31/19 12:03,"651 Spruce St, Atlanta, GA 30301" +241137,Google Phone,1,600,08/13/19 12:47,"236 Walnut St, Dallas, TX 75001" +241138,AA Batteries (4-pack),2,3.84,08/23/19 15:56,"528 9th St, San Francisco, CA 94016" +241139,USB-C Charging Cable,1,11.95,08/29/19 09:22,"357 Chestnut St, Portland, OR 97035" +241140,AAA Batteries (4-pack),1,2.99,08/09/19 09:39,"719 Lakeview St, Atlanta, GA 30301" +241141,Wired Headphones,1,11.99,08/12/19 20:25,"533 Meadow St, Atlanta, GA 30301" +241142,Lightning Charging Cable,1,14.95,08/04/19 10:49,"842 Dogwood St, Seattle, WA 98101" +241143,iPhone,1,700,08/12/19 17:16,"13 Cedar St, Boston, MA 02215" +241144,Apple Airpods Headphones,1,150,08/08/19 00:11,"319 Ridge St, Los Angeles, CA 90001" +241145,Apple Airpods Headphones,1,150,08/18/19 18:40,"365 River St, Austin, TX 73301" +241146,Bose SoundSport Headphones,1,99.99,08/19/19 22:43,"169 Pine St, San Francisco, CA 94016" +241147,Lightning Charging Cable,1,14.95,08/20/19 17:33,"976 Hill St, Dallas, TX 75001" +241148,AA Batteries (4-pack),1,3.84,08/31/19 15:50,"27 Center St, Los Angeles, CA 90001" +241149,AA Batteries (4-pack),1,3.84,08/17/19 19:47,"935 Meadow St, Boston, MA 02215" +241150,Flatscreen TV,1,300,08/06/19 13:21,"336 Cherry St, San Francisco, CA 94016" +241151,USB-C Charging Cable,1,11.95,08/04/19 22:30,"474 Johnson St, San Francisco, CA 94016" +241152,AA Batteries (4-pack),1,3.84,08/14/19 11:44,"861 Meadow St, Boston, MA 02215" +241153,34in Ultrawide Monitor,1,379.99,08/17/19 15:34,"151 Center St, Boston, MA 02215" +241154,AAA Batteries (4-pack),1,2.99,08/28/19 08:25,"296 West St, Boston, MA 02215" +241155,ThinkPad Laptop,1,999.99,08/03/19 05:35,"693 Lake St, Boston, MA 02215" +241156,ThinkPad Laptop,1,999.99,08/14/19 05:58,"659 6th St, New York City, NY 10001" +241157,AA Batteries (4-pack),2,3.84,08/30/19 07:15,"367 Johnson St, New York City, NY 10001" +241158,Lightning Charging Cable,1,14.95,08/09/19 23:44,"730 Sunset St, Portland, OR 97035" +241159,USB-C Charging Cable,1,11.95,08/17/19 22:26,"453 Lincoln St, New York City, NY 10001" +241160,AAA Batteries (4-pack),1,2.99,08/01/19 18:19,"473 Park St, Los Angeles, CA 90001" +241161,AAA Batteries (4-pack),2,2.99,08/19/19 20:09,"20 Jackson St, San Francisco, CA 94016" +241162,AAA Batteries (4-pack),1,2.99,08/21/19 04:39,"9 Spruce St, San Francisco, CA 94016" +241163,iPhone,1,700,08/05/19 15:58,"906 Center St, New York City, NY 10001" +241164,Wired Headphones,1,11.99,08/22/19 10:14,"943 10th St, Boston, MA 02215" +241165,27in 4K Gaming Monitor,1,389.99,08/29/19 07:30,"244 5th St, New York City, NY 10001" +241166,Lightning Charging Cable,1,14.95,08/22/19 11:10,"779 Johnson St, New York City, NY 10001" +241167,AAA Batteries (4-pack),1,2.99,08/18/19 21:01,"572 South St, San Francisco, CA 94016" +241168,iPhone,1,700,08/17/19 11:47,"868 Ridge St, Austin, TX 73301" +241169,AAA Batteries (4-pack),1,2.99,08/09/19 00:50,"771 South St, Dallas, TX 75001" +241170,iPhone,1,700,08/08/19 11:53,"821 Wilson St, San Francisco, CA 94016" +241171,Bose SoundSport Headphones,1,99.99,08/04/19 19:17,"959 Jackson St, New York City, NY 10001" +241172,USB-C Charging Cable,1,11.95,08/01/19 11:05,"14 4th St, New York City, NY 10001" +241173,Apple Airpods Headphones,1,150,08/08/19 07:53,"345 Cedar St, Austin, TX 73301" +241174,Apple Airpods Headphones,1,150,08/20/19 21:55,"608 Park St, Los Angeles, CA 90001" +241175,AA Batteries (4-pack),1,3.84,08/01/19 14:31,"655 Lakeview St, San Francisco, CA 94016" +241176,ThinkPad Laptop,1,999.99,08/01/19 18:30,"9 Cherry St, Atlanta, GA 30301" +241177,Lightning Charging Cable,1,14.95,08/15/19 12:12,"50 Dogwood St, Boston, MA 02215" +241178,AA Batteries (4-pack),1,3.84,08/26/19 18:59,"771 Chestnut St, Dallas, TX 75001" +241179,Vareebadd Phone,1,400,08/03/19 18:10,"69 Spruce St, New York City, NY 10001" +241180,Lightning Charging Cable,1,14.95,08/20/19 10:40,"396 Lake St, San Francisco, CA 94016" +241181,Apple Airpods Headphones,1,150,08/06/19 20:25,"56 7th St, Boston, MA 02215" +241182,USB-C Charging Cable,1,11.95,08/09/19 16:20,"271 14th St, New York City, NY 10001" +241183,Google Phone,1,600,08/21/19 11:00,"157 Adams St, Seattle, WA 98101" +241184,Google Phone,1,600,08/27/19 14:45,"597 8th St, Austin, TX 73301" +241185,AAA Batteries (4-pack),1,2.99,08/01/19 15:01,"394 Church St, Los Angeles, CA 90001" +241186,USB-C Charging Cable,1,11.95,08/17/19 15:14,"307 Jefferson St, Atlanta, GA 30301" +241187,AA Batteries (4-pack),1,3.84,08/15/19 19:17,"253 8th St, Portland, OR 97035" +241188,Lightning Charging Cable,1,14.95,08/27/19 10:54,"522 West St, Seattle, WA 98101" +241189,Google Phone,1,600,08/16/19 11:49,"491 Jackson St, Los Angeles, CA 90001" +241189,Bose SoundSport Headphones,1,99.99,08/16/19 11:49,"491 Jackson St, Los Angeles, CA 90001" +241190,Apple Airpods Headphones,1,150,08/28/19 13:54,"828 Lincoln St, Boston, MA 02215" +241191,Lightning Charging Cable,1,14.95,08/07/19 19:54,"57 11th St, Dallas, TX 75001" +241192,AA Batteries (4-pack),1,3.84,08/10/19 17:58,"32 South St, San Francisco, CA 94016" +241193,ThinkPad Laptop,1,999.99,08/24/19 03:41,"636 Church St, Los Angeles, CA 90001" +241194,AA Batteries (4-pack),3,3.84,08/20/19 18:36,"717 Forest St, Los Angeles, CA 90001" +241195,Bose SoundSport Headphones,1,99.99,08/23/19 11:46,"254 Washington St, New York City, NY 10001" +241196,27in FHD Monitor,1,149.99,08/27/19 13:50,"321 Forest St, New York City, NY 10001" +241197,AAA Batteries (4-pack),1,2.99,08/06/19 12:02,"235 Cherry St, San Francisco, CA 94016" +241198,Wired Headphones,1,11.99,08/13/19 19:08,"51 Elm St, Seattle, WA 98101" +241199,Apple Airpods Headphones,1,150,08/01/19 07:46,"109 Lincoln St, Dallas, TX 75001" +241200,Bose SoundSport Headphones,1,99.99,08/29/19 16:09,"916 Elm St, San Francisco, CA 94016" +241201,Google Phone,1,600,08/07/19 12:48,"847 8th St, San Francisco, CA 94016" +241201,Wired Headphones,1,11.99,08/07/19 12:48,"847 8th St, San Francisco, CA 94016" +241202,AA Batteries (4-pack),1,3.84,08/04/19 13:33,"755 Jefferson St, San Francisco, CA 94016" +241203,ThinkPad Laptop,1,999.99,08/11/19 11:43,"740 12th St, Boston, MA 02215" +241204,AAA Batteries (4-pack),2,2.99,08/09/19 20:14,"435 Walnut St, Los Angeles, CA 90001" +241205,34in Ultrawide Monitor,1,379.99,08/29/19 10:29,"956 2nd St, Los Angeles, CA 90001" +241206,AA Batteries (4-pack),1,3.84,08/12/19 17:34,"533 Washington St, Dallas, TX 75001" +241207,Wired Headphones,1,11.99,08/14/19 08:25,"408 Wilson St, Boston, MA 02215" +241208,AAA Batteries (4-pack),2,2.99,08/17/19 21:24,"994 Chestnut St, New York City, NY 10001" +241209,AAA Batteries (4-pack),1,2.99,08/08/19 10:13,"529 9th St, Dallas, TX 75001" +241210,Bose SoundSport Headphones,1,99.99,08/30/19 18:54,"996 Church St, Dallas, TX 75001" +241211,USB-C Charging Cable,1,11.95,08/14/19 20:11,"930 Adams St, Boston, MA 02215" +241212,AAA Batteries (4-pack),1,2.99,08/23/19 23:04,"287 4th St, San Francisco, CA 94016" +241213,Bose SoundSport Headphones,1,99.99,08/14/19 02:11,"496 Madison St, San Francisco, CA 94016" +241214,Lightning Charging Cable,1,14.95,08/20/19 21:07,"473 Meadow St, New York City, NY 10001" +241215,27in FHD Monitor,1,149.99,08/21/19 12:41,"406 West St, Los Angeles, CA 90001" +241216,20in Monitor,1,109.99,08/01/19 19:29,"44 Jackson St, Atlanta, GA 30301" +241217,Apple Airpods Headphones,1,150,08/11/19 19:59,"484 Cedar St, Atlanta, GA 30301" +241218,USB-C Charging Cable,1,11.95,08/10/19 10:34,"373 Maple St, Atlanta, GA 30301" +241219,USB-C Charging Cable,1,11.95,08/11/19 15:46,"842 14th St, Dallas, TX 75001" +241220,Apple Airpods Headphones,1,150,08/04/19 23:25,"71 Walnut St, San Francisco, CA 94016" +241221,27in 4K Gaming Monitor,1,389.99,08/03/19 00:28,"361 Adams St, San Francisco, CA 94016" +241222,USB-C Charging Cable,1,11.95,08/26/19 10:25,"422 South St, New York City, NY 10001" +241223,AA Batteries (4-pack),2,3.84,08/31/19 16:14,"85 Hickory St, Los Angeles, CA 90001" +241224,AA Batteries (4-pack),1,3.84,08/09/19 22:13,"305 Wilson St, Dallas, TX 75001" +241225,Wired Headphones,1,11.99,08/06/19 22:40,"151 Hickory St, Austin, TX 73301" +241226,27in 4K Gaming Monitor,1,389.99,08/27/19 10:40,"742 Maple St, San Francisco, CA 94016" +241227,Wired Headphones,1,11.99,08/24/19 19:51,"664 12th St, San Francisco, CA 94016" +241228,USB-C Charging Cable,1,11.95,08/14/19 11:18,"779 Elm St, New York City, NY 10001" +241229,Lightning Charging Cable,1,14.95,08/02/19 14:11,"179 2nd St, Dallas, TX 75001" +241230,Vareebadd Phone,1,400,08/04/19 21:28,"164 Wilson St, Dallas, TX 75001" +241231,AAA Batteries (4-pack),1,2.99,08/30/19 10:49,"82 13th St, Boston, MA 02215" +241232,Macbook Pro Laptop,1,1700,08/03/19 13:24,"79 Hickory St, San Francisco, CA 94016" +241233,Apple Airpods Headphones,1,150,08/11/19 11:22,"12 7th St, Boston, MA 02215" +241234,20in Monitor,1,109.99,08/09/19 21:09,"59 Lakeview St, Los Angeles, CA 90001" +241235,iPhone,1,700,08/13/19 11:37,"745 Elm St, Atlanta, GA 30301" +241236,Google Phone,1,600,08/19/19 23:13,"131 Johnson St, New York City, NY 10001" +241236,Wired Headphones,3,11.99,08/19/19 23:13,"131 Johnson St, New York City, NY 10001" +241237,Wired Headphones,1,11.99,08/22/19 08:34,"452 Willow St, San Francisco, CA 94016" +241238,Bose SoundSport Headphones,1,99.99,08/03/19 19:14,"965 13th St, Los Angeles, CA 90001" +241239,AAA Batteries (4-pack),1,2.99,08/06/19 07:07,"886 Ridge St, Portland, OR 97035" +241240,LG Dryer,1,600.0,08/10/19 09:58,"730 Cedar St, New York City, NY 10001" +241241,AAA Batteries (4-pack),1,2.99,08/31/19 17:11,"23 Church St, Portland, OR 97035" +241242,27in 4K Gaming Monitor,1,389.99,08/18/19 01:01,"853 North St, Boston, MA 02215" +241243,Wired Headphones,1,11.99,08/01/19 09:27,"401 Johnson St, Boston, MA 02215" +241244,Wired Headphones,1,11.99,08/01/19 19:31,"511 Park St, Dallas, TX 75001" +241245,Wired Headphones,1,11.99,08/26/19 16:12,"775 13th St, San Francisco, CA 94016" +241246,USB-C Charging Cable,1,11.95,08/10/19 12:14,"153 Walnut St, San Francisco, CA 94016" +241247,Lightning Charging Cable,1,14.95,08/30/19 13:51,"788 Lakeview St, New York City, NY 10001" +241248,Lightning Charging Cable,1,14.95,08/28/19 16:30,"163 Madison St, Austin, TX 73301" +241249,Wired Headphones,1,11.99,08/30/19 22:30,"759 8th St, New York City, NY 10001" +241250,AA Batteries (4-pack),2,3.84,08/29/19 20:08,"960 River St, San Francisco, CA 94016" +241251,Bose SoundSport Headphones,1,99.99,08/15/19 11:21,"172 South St, San Francisco, CA 94016" +241252,USB-C Charging Cable,1,11.95,08/07/19 12:34,"922 Willow St, Portland, OR 97035" +241253,Lightning Charging Cable,1,14.95,08/28/19 20:14,"431 South St, Los Angeles, CA 90001" +241254,AA Batteries (4-pack),1,3.84,08/05/19 16:09,"43 Adams St, Boston, MA 02215" +241255,USB-C Charging Cable,1,11.95,08/15/19 18:22,"615 11th St, Los Angeles, CA 90001" +241256,AAA Batteries (4-pack),1,2.99,08/10/19 11:51,"528 Jackson St, San Francisco, CA 94016" +241257,34in Ultrawide Monitor,1,379.99,08/16/19 07:04,"982 5th St, New York City, NY 10001" +241258,Apple Airpods Headphones,1,150,08/20/19 09:34,"845 Park St, Atlanta, GA 30301" +241259,AAA Batteries (4-pack),2,2.99,08/26/19 22:48,"81 2nd St, New York City, NY 10001" +241260,Apple Airpods Headphones,1,150,08/07/19 20:26,"711 Madison St, San Francisco, CA 94016" +241261,AAA Batteries (4-pack),1,2.99,08/25/19 12:50,"541 South St, San Francisco, CA 94016" +241262,USB-C Charging Cable,1,11.95,08/01/19 16:50,"341 14th St, Austin, TX 73301" +241263,AAA Batteries (4-pack),1,2.99,08/22/19 13:36,"38 8th St, New York City, NY 10001" +241264,AAA Batteries (4-pack),1,2.99,08/25/19 19:54,"847 Hickory St, Atlanta, GA 30301" +241265,27in FHD Monitor,1,149.99,08/20/19 08:23,"940 Forest St, Boston, MA 02215" +241266,USB-C Charging Cable,1,11.95,08/29/19 18:09,"75 6th St, Atlanta, GA 30301" +241267,Wired Headphones,1,11.99,08/24/19 22:57,"129 4th St, San Francisco, CA 94016" +241268,USB-C Charging Cable,1,11.95,08/26/19 00:14,"87 Jefferson St, San Francisco, CA 94016" +241269,USB-C Charging Cable,1,11.95,08/12/19 14:22,"290 Willow St, New York City, NY 10001" +241270,USB-C Charging Cable,1,11.95,08/14/19 11:55,"957 Dogwood St, Los Angeles, CA 90001" +241271,Wired Headphones,1,11.99,08/22/19 16:31,"265 North St, Seattle, WA 98101" +241272,Apple Airpods Headphones,1,150,08/08/19 16:03,"614 Chestnut St, San Francisco, CA 94016" +241273,Lightning Charging Cable,1,14.95,08/05/19 10:35,"749 Lake St, San Francisco, CA 94016" +241274,AAA Batteries (4-pack),1,2.99,08/20/19 05:45,"699 Chestnut St, Dallas, TX 75001" +241275,AA Batteries (4-pack),1,3.84,08/18/19 20:24,"711 Dogwood St, Boston, MA 02215" +241276,AAA Batteries (4-pack),1,2.99,08/13/19 16:33,"710 Main St, Boston, MA 02215" +241277,Wired Headphones,1,11.99,08/14/19 15:59,"562 Willow St, Portland, OR 97035" +241278,27in 4K Gaming Monitor,1,389.99,08/15/19 08:51,"806 Lakeview St, Portland, ME 04101" +241279,Lightning Charging Cable,1,14.95,08/23/19 12:40,"731 Ridge St, San Francisco, CA 94016" +241280,USB-C Charging Cable,1,11.95,08/17/19 22:54,"936 8th St, San Francisco, CA 94016" +241281,Lightning Charging Cable,1,14.95,08/28/19 11:36,"689 Cedar St, Austin, TX 73301" +241282,Lightning Charging Cable,1,14.95,08/01/19 15:45,"506 9th St, Boston, MA 02215" +241283,Apple Airpods Headphones,1,150,08/17/19 11:19,"754 1st St, San Francisco, CA 94016" +241284,USB-C Charging Cable,1,11.95,08/12/19 07:24,"118 Hickory St, Boston, MA 02215" +241285,27in FHD Monitor,1,149.99,08/14/19 15:24,"849 Hickory St, Seattle, WA 98101" +241286,AA Batteries (4-pack),1,3.84,08/24/19 18:43,"853 Lake St, San Francisco, CA 94016" +241287,27in FHD Monitor,1,149.99,08/06/19 18:45,"863 5th St, Atlanta, GA 30301" +241288,34in Ultrawide Monitor,1,379.99,08/09/19 12:37,"1 Cherry St, Portland, OR 97035" +241289,AA Batteries (4-pack),1,3.84,08/08/19 12:14,"654 Cedar St, Boston, MA 02215" +241290,AA Batteries (4-pack),1,3.84,08/15/19 00:07,"869 11th St, Atlanta, GA 30301" +241291,Wired Headphones,1,11.99,08/07/19 20:52,"420 10th St, San Francisco, CA 94016" +241292,AAA Batteries (4-pack),2,2.99,08/19/19 15:17,"266 Hickory St, New York City, NY 10001" +241293,34in Ultrawide Monitor,1,379.99,08/29/19 17:16,"972 11th St, Boston, MA 02215" +241294,Bose SoundSport Headphones,1,99.99,08/21/19 19:42,"48 Church St, San Francisco, CA 94016" +241295,AAA Batteries (4-pack),1,2.99,08/10/19 18:48,"42 Spruce St, Austin, TX 73301" +241296,AA Batteries (4-pack),1,3.84,08/16/19 14:47,"42 Pine St, Dallas, TX 75001" +241297,Flatscreen TV,1,300,08/01/19 16:58,"851 10th St, Portland, OR 97035" +241298,iPhone,1,700,08/23/19 17:43,"978 West St, Dallas, TX 75001" +241299,USB-C Charging Cable,1,11.95,08/13/19 15:06,"382 West St, Austin, TX 73301" +241300,iPhone,1,700,08/05/19 20:30,"820 11th St, Los Angeles, CA 90001" +241301,USB-C Charging Cable,1,11.95,08/11/19 14:31,"534 Wilson St, Atlanta, GA 30301" +241302,USB-C Charging Cable,1,11.95,08/14/19 21:24,"823 North St, Boston, MA 02215" +241303,AAA Batteries (4-pack),3,2.99,08/06/19 21:22,"576 Pine St, Portland, OR 97035" +241304,Wired Headphones,3,11.99,08/13/19 12:11,"423 Sunset St, Boston, MA 02215" +241305,Apple Airpods Headphones,1,150,08/06/19 14:48,"604 13th St, Los Angeles, CA 90001" +241306,20in Monitor,1,109.99,08/14/19 18:41,"434 Pine St, New York City, NY 10001" +241307,AA Batteries (4-pack),1,3.84,08/04/19 15:26,"267 River St, Austin, TX 73301" +241308,Bose SoundSport Headphones,1,99.99,08/10/19 18:49,"4 Forest St, San Francisco, CA 94016" +241309,20in Monitor,1,109.99,08/28/19 10:30,"124 Pine St, Austin, TX 73301" +241310,34in Ultrawide Monitor,1,379.99,08/15/19 20:13,"102 Hill St, New York City, NY 10001" +241311,iPhone,1,700,08/09/19 20:50,"926 Center St, Dallas, TX 75001" +241311,Wired Headphones,2,11.99,08/09/19 20:50,"926 Center St, Dallas, TX 75001" +241312,Wired Headphones,2,11.99,08/03/19 15:26,"284 Forest St, Boston, MA 02215" +241313,Apple Airpods Headphones,1,150,08/29/19 00:05,"443 Lake St, Boston, MA 02215" +241314,Flatscreen TV,1,300,08/18/19 10:29,"545 7th St, San Francisco, CA 94016" +241315,AA Batteries (4-pack),1,3.84,08/14/19 13:11,"128 Willow St, Boston, MA 02215" +241316,Wired Headphones,1,11.99,08/28/19 13:15,"706 6th St, New York City, NY 10001" +241317,Apple Airpods Headphones,1,150,08/10/19 08:43,"734 13th St, Seattle, WA 98101" +241318,34in Ultrawide Monitor,1,379.99,08/07/19 17:46,"329 Maple St, Atlanta, GA 30301" +241319,AAA Batteries (4-pack),2,2.99,08/30/19 19:09,"444 Church St, New York City, NY 10001" +241320,Lightning Charging Cable,1,14.95,08/16/19 14:53,"497 9th St, Atlanta, GA 30301" +241321,iPhone,1,700,08/02/19 12:37,"463 11th St, Austin, TX 73301" +241322,AAA Batteries (4-pack),1,2.99,08/25/19 17:44,"639 5th St, Austin, TX 73301" +241323,Wired Headphones,1,11.99,08/01/19 18:54,"308 Johnson St, Los Angeles, CA 90001" +241324,USB-C Charging Cable,1,11.95,08/12/19 16:38,"949 Washington St, San Francisco, CA 94016" +241325,USB-C Charging Cable,1,11.95,08/28/19 17:57,"147 Highland St, Los Angeles, CA 90001" +241326,27in 4K Gaming Monitor,1,389.99,08/12/19 14:23,"968 8th St, Los Angeles, CA 90001" +,,,,, +241327,Google Phone,1,600,08/28/19 16:51,"659 Adams St, San Francisco, CA 94016" +241328,Wired Headphones,1,11.99,08/20/19 07:08,"727 Cherry St, Los Angeles, CA 90001" +241329,AA Batteries (4-pack),1,3.84,08/06/19 21:02,"843 12th St, Los Angeles, CA 90001" +241330,Lightning Charging Cable,1,14.95,08/31/19 16:55,"530 West St, New York City, NY 10001" +241331,AAA Batteries (4-pack),1,2.99,08/11/19 10:34,"955 Washington St, Los Angeles, CA 90001" +241331,34in Ultrawide Monitor,1,379.99,08/11/19 10:34,"955 Washington St, Los Angeles, CA 90001" +241332,27in 4K Gaming Monitor,1,389.99,08/30/19 13:20,"184 9th St, Dallas, TX 75001" +241333,Bose SoundSport Headphones,1,99.99,08/27/19 13:45,"844 Hill St, New York City, NY 10001" +241334,Bose SoundSport Headphones,1,99.99,08/26/19 12:10,"171 Lincoln St, Boston, MA 02215" +241335,Wired Headphones,1,11.99,08/17/19 13:01,"704 Adams St, Los Angeles, CA 90001" +241336,Apple Airpods Headphones,1,150,08/09/19 23:19,"476 Hickory St, New York City, NY 10001" +241336,AA Batteries (4-pack),1,3.84,08/09/19 23:19,"476 Hickory St, New York City, NY 10001" +241337,AAA Batteries (4-pack),4,2.99,08/18/19 12:23,"769 Elm St, Portland, ME 04101" +241338,27in 4K Gaming Monitor,1,389.99,08/30/19 10:14,"559 8th St, Dallas, TX 75001" +241339,ThinkPad Laptop,1,999.99,08/20/19 09:22,"452 Highland St, San Francisco, CA 94016" +241340,AAA Batteries (4-pack),1,2.99,08/12/19 18:16,"352 Meadow St, Dallas, TX 75001" +241341,Flatscreen TV,1,300,08/06/19 09:11,"173 Washington St, San Francisco, CA 94016" +241342,Bose SoundSport Headphones,1,99.99,08/10/19 11:03,"867 Walnut St, Los Angeles, CA 90001" +241343,iPhone,1,700,08/01/19 10:54,"323 6th St, Austin, TX 73301" +241344,USB-C Charging Cable,1,11.95,08/28/19 13:22,"495 Johnson St, San Francisco, CA 94016" +241345,27in 4K Gaming Monitor,1,389.99,08/07/19 09:51,"447 Cherry St, Atlanta, GA 30301" +241346,Flatscreen TV,1,300,08/17/19 10:38,"948 Meadow St, San Francisco, CA 94016" +241347,Bose SoundSport Headphones,1,99.99,08/06/19 11:34,"235 Hickory St, San Francisco, CA 94016" +241348,AAA Batteries (4-pack),1,2.99,08/11/19 10:28,"623 Highland St, New York City, NY 10001" +241349,ThinkPad Laptop,1,999.99,08/02/19 10:59,"440 11th St, San Francisco, CA 94016" +241350,Bose SoundSport Headphones,1,99.99,08/21/19 11:20,"305 Elm St, Dallas, TX 75001" +241351,USB-C Charging Cable,1,11.95,08/14/19 13:41,"684 Elm St, Seattle, WA 98101" +241352,AAA Batteries (4-pack),1,2.99,08/22/19 21:15,"110 Chestnut St, Portland, OR 97035" +241353,iPhone,1,700,08/21/19 07:33,"935 Center St, San Francisco, CA 94016" +241354,27in 4K Gaming Monitor,1,389.99,08/07/19 19:35,"514 South St, Boston, MA 02215" +241355,Bose SoundSport Headphones,1,99.99,08/02/19 20:01,"880 Park St, Atlanta, GA 30301" +241356,Macbook Pro Laptop,1,1700,08/09/19 22:30,"429 Jackson St, Los Angeles, CA 90001" +241357,Bose SoundSport Headphones,1,99.99,08/02/19 15:07,"252 Center St, Dallas, TX 75001" +241358,Apple Airpods Headphones,1,150,08/23/19 18:18,"776 7th St, San Francisco, CA 94016" +241359,Wired Headphones,1,11.99,08/09/19 12:21,"210 Ridge St, New York City, NY 10001" +241360,Wired Headphones,1,11.99,08/30/19 01:04,"879 Cedar St, San Francisco, CA 94016" +241361,AA Batteries (4-pack),1,3.84,08/18/19 17:06,"811 North St, Atlanta, GA 30301" +241362,Wired Headphones,1,11.99,08/19/19 12:37,"585 Sunset St, New York City, NY 10001" +241363,ThinkPad Laptop,1,999.99,08/18/19 13:53,"736 Church St, New York City, NY 10001" +241364,LG Washing Machine,1,600.0,08/14/19 19:30,"359 Lakeview St, Seattle, WA 98101" +241365,Bose SoundSport Headphones,1,99.99,08/08/19 16:18,"837 Lake St, New York City, NY 10001" +241366,Wired Headphones,3,11.99,08/25/19 23:49,"512 Ridge St, San Francisco, CA 94016" +241367,34in Ultrawide Monitor,1,379.99,08/02/19 20:00,"617 2nd St, Seattle, WA 98101" +241368,AA Batteries (4-pack),3,3.84,08/29/19 13:02,"714 Cedar St, Seattle, WA 98101" +241369,27in 4K Gaming Monitor,1,389.99,08/09/19 14:22,"154 Pine St, Boston, MA 02215" +241370,AAA Batteries (4-pack),1,2.99,08/28/19 12:57,"532 Cedar St, San Francisco, CA 94016" +241371,Macbook Pro Laptop,1,1700,08/14/19 10:52,"683 4th St, Dallas, TX 75001" +241372,Apple Airpods Headphones,1,150,08/09/19 20:43,"729 1st St, Seattle, WA 98101" +241373,ThinkPad Laptop,1,999.99,08/25/19 12:44,"946 8th St, Dallas, TX 75001" +241374,Lightning Charging Cable,2,14.95,08/14/19 11:27,"600 11th St, San Francisco, CA 94016" +241375,27in 4K Gaming Monitor,1,389.99,08/18/19 13:15,"238 7th St, Dallas, TX 75001" +241376,USB-C Charging Cable,1,11.95,08/27/19 14:16,"676 Jackson St, Austin, TX 73301" +241377,Flatscreen TV,1,300,08/27/19 11:10,"681 Lakeview St, San Francisco, CA 94016" +241378,Bose SoundSport Headphones,1,99.99,08/06/19 17:48,"817 Park St, Portland, OR 97035" +241379,Bose SoundSport Headphones,1,99.99,08/06/19 21:31,"188 Johnson St, San Francisco, CA 94016" +241380,Lightning Charging Cable,1,14.95,08/05/19 14:45,"205 1st St, Boston, MA 02215" +241381,Flatscreen TV,1,300,08/25/19 17:49,"243 Madison St, Atlanta, GA 30301" +241382,27in FHD Monitor,1,149.99,08/22/19 12:51,"456 Walnut St, Boston, MA 02215" +241383,USB-C Charging Cable,1,11.95,08/06/19 07:44,"638 13th St, San Francisco, CA 94016" +241384,Bose SoundSport Headphones,1,99.99,08/18/19 16:44,"562 Elm St, Los Angeles, CA 90001" +241385,Lightning Charging Cable,1,14.95,08/14/19 09:44,"84 Lake St, New York City, NY 10001" +241386,AAA Batteries (4-pack),2,2.99,08/22/19 22:46,"616 Hickory St, Seattle, WA 98101" +241387,Bose SoundSport Headphones,1,99.99,08/17/19 00:08,"419 Lake St, San Francisco, CA 94016" +241388,AA Batteries (4-pack),1,3.84,08/26/19 18:01,"842 Walnut St, San Francisco, CA 94016" +241389,Apple Airpods Headphones,1,150,08/22/19 12:18,"839 Lake St, Dallas, TX 75001" +241390,Macbook Pro Laptop,1,1700,08/30/19 09:35,"758 Lakeview St, Dallas, TX 75001" +241391,USB-C Charging Cable,1,11.95,08/18/19 16:38,"270 Chestnut St, Los Angeles, CA 90001" +241392,USB-C Charging Cable,1,11.95,08/13/19 07:37,"702 1st St, San Francisco, CA 94016" +241393,20in Monitor,1,109.99,08/26/19 23:34,"465 Willow St, Portland, OR 97035" +241394,USB-C Charging Cable,1,11.95,08/03/19 21:18,"650 14th St, Boston, MA 02215" +241395,ThinkPad Laptop,1,999.99,08/02/19 13:43,"424 Madison St, New York City, NY 10001" +241396,Wired Headphones,1,11.99,08/03/19 23:09,"781 Ridge St, Los Angeles, CA 90001" +241397,Apple Airpods Headphones,1,150,08/14/19 16:29,"411 13th St, Los Angeles, CA 90001" +241398,AA Batteries (4-pack),1,3.84,08/31/19 09:36,"278 7th St, Portland, ME 04101" +241399,Lightning Charging Cable,1,14.95,08/18/19 21:30,"717 Ridge St, Los Angeles, CA 90001" +241400,27in 4K Gaming Monitor,1,389.99,08/02/19 15:27,"595 Church St, Boston, MA 02215" +241401,AAA Batteries (4-pack),1,2.99,08/30/19 11:34,"818 Jefferson St, Boston, MA 02215" +241402,20in Monitor,1,109.99,08/28/19 15:01,"25 River St, San Francisco, CA 94016" +241403,Bose SoundSport Headphones,1,99.99,08/02/19 08:16,"732 6th St, Dallas, TX 75001" +241404,27in FHD Monitor,1,149.99,08/22/19 10:19,"411 Madison St, Portland, OR 97035" +241405,AA Batteries (4-pack),2,3.84,08/20/19 23:21,"311 Jefferson St, Boston, MA 02215" +241406,34in Ultrawide Monitor,1,379.99,08/05/19 12:04,"53 Johnson St, Los Angeles, CA 90001" +241407,USB-C Charging Cable,1,11.95,08/08/19 12:56,"551 Pine St, Dallas, TX 75001" +241408,34in Ultrawide Monitor,1,379.99,08/15/19 16:48,"356 5th St, Atlanta, GA 30301" +241409,USB-C Charging Cable,2,11.95,08/28/19 03:16,"507 6th St, New York City, NY 10001" +241410,Macbook Pro Laptop,1,1700,08/03/19 19:09,"366 Jefferson St, Seattle, WA 98101" +241411,Bose SoundSport Headphones,1,99.99,08/21/19 19:27,"600 Cedar St, San Francisco, CA 94016" +241412,Lightning Charging Cable,1,14.95,08/14/19 08:32,"767 14th St, San Francisco, CA 94016" +241413,iPhone,1,700,08/20/19 11:48,"128 Jackson St, San Francisco, CA 94016" +241414,Wired Headphones,2,11.99,08/04/19 20:28,"239 Chestnut St, Dallas, TX 75001" +241415,Lightning Charging Cable,1,14.95,08/24/19 16:38,"876 Highland St, San Francisco, CA 94016" +241416,27in FHD Monitor,1,149.99,08/26/19 12:43,"602 8th St, Los Angeles, CA 90001" +241417,USB-C Charging Cable,1,11.95,08/20/19 12:29,"635 Dogwood St, Portland, OR 97035" +241418,USB-C Charging Cable,1,11.95,08/31/19 17:44,"738 Pine St, Austin, TX 73301" +241419,Apple Airpods Headphones,1,150,08/03/19 21:55,"924 River St, Los Angeles, CA 90001" +241420,USB-C Charging Cable,1,11.95,08/31/19 21:04,"689 Wilson St, San Francisco, CA 94016" +241421,AAA Batteries (4-pack),2,2.99,08/19/19 01:05,"70 Highland St, San Francisco, CA 94016" +241422,Bose SoundSport Headphones,1,99.99,08/24/19 22:53,"157 5th St, San Francisco, CA 94016" +241423,AA Batteries (4-pack),1,3.84,08/30/19 15:19,"736 12th St, New York City, NY 10001" +241424,Lightning Charging Cable,1,14.95,08/09/19 19:42,"244 14th St, Boston, MA 02215" +241425,Wired Headphones,1,11.99,08/14/19 02:00,"268 8th St, San Francisco, CA 94016" +241426,iPhone,1,700,08/24/19 13:32,"941 Madison St, Dallas, TX 75001" +241427,Apple Airpods Headphones,1,150,08/29/19 13:33,"376 Highland St, San Francisco, CA 94016" +241428,27in FHD Monitor,1,149.99,08/07/19 11:47,"240 10th St, San Francisco, CA 94016" +241429,iPhone,1,700,08/31/19 12:12,"974 12th St, San Francisco, CA 94016" +241430,USB-C Charging Cable,1,11.95,08/22/19 22:52,"477 Walnut St, Los Angeles, CA 90001" +241431,AAA Batteries (4-pack),1,2.99,08/29/19 10:20,"993 Wilson St, San Francisco, CA 94016" +241432,USB-C Charging Cable,1,11.95,08/07/19 11:53,"790 Pine St, Boston, MA 02215" +241433,Bose SoundSport Headphones,1,99.99,08/29/19 17:13,"439 Forest St, Portland, ME 04101" +241434,Lightning Charging Cable,1,14.95,08/25/19 16:26,"935 Johnson St, Austin, TX 73301" +241435,Bose SoundSport Headphones,1,99.99,08/07/19 12:27,"423 Meadow St, Los Angeles, CA 90001" +241436,Google Phone,1,600,08/09/19 21:27,"119 12th St, Atlanta, GA 30301" +241437,Macbook Pro Laptop,1,1700,08/30/19 11:32,"140 West St, Seattle, WA 98101" +241438,AAA Batteries (4-pack),1,2.99,08/13/19 17:04,"921 Dogwood St, Boston, MA 02215" +241439,Wired Headphones,1,11.99,08/08/19 11:04,"673 2nd St, San Francisco, CA 94016" +241440,27in FHD Monitor,1,149.99,08/05/19 13:41,"163 Chestnut St, Los Angeles, CA 90001" +241441,Apple Airpods Headphones,1,150,08/13/19 11:48,"229 8th St, Los Angeles, CA 90001" +241442,Macbook Pro Laptop,1,1700,08/13/19 09:28,"853 9th St, Dallas, TX 75001" +241443,Bose SoundSport Headphones,1,99.99,08/28/19 18:56,"667 Dogwood St, Boston, MA 02215" +241444,Apple Airpods Headphones,1,150,08/05/19 09:42,"534 Hill St, Atlanta, GA 30301" +241445,Wired Headphones,1,11.99,08/14/19 11:25,"639 South St, San Francisco, CA 94016" +241446,Lightning Charging Cable,1,14.95,08/28/19 21:03,"437 Park St, Los Angeles, CA 90001" +241447,Wired Headphones,1,11.99,08/09/19 09:20,"263 Adams St, San Francisco, CA 94016" +241448,Vareebadd Phone,1,400,08/23/19 17:18,"625 Maple St, San Francisco, CA 94016" +241449,Macbook Pro Laptop,1,1700,08/27/19 21:34,"576 Main St, New York City, NY 10001" +241450,USB-C Charging Cable,1,11.95,08/18/19 22:27,"71 Hickory St, Los Angeles, CA 90001" +241451,AA Batteries (4-pack),2,3.84,08/05/19 17:23,"819 6th St, San Francisco, CA 94016" +241452,USB-C Charging Cable,1,11.95,08/26/19 23:38,"723 6th St, San Francisco, CA 94016" +241453,Wired Headphones,1,11.99,08/04/19 12:42,"922 Chestnut St, Atlanta, GA 30301" +241454,Lightning Charging Cable,1,14.95,08/25/19 11:57,"841 Ridge St, Boston, MA 02215" +241455,Flatscreen TV,1,300,08/04/19 20:38,"157 13th St, Austin, TX 73301" +241456,Lightning Charging Cable,1,14.95,08/29/19 17:06,"435 Madison St, Los Angeles, CA 90001" +241457,AA Batteries (4-pack),1,3.84,08/17/19 10:35,"782 River St, San Francisco, CA 94016" +241457,AA Batteries (4-pack),1,3.84,08/17/19 10:35,"782 River St, San Francisco, CA 94016" +241458,USB-C Charging Cable,1,11.95,08/29/19 14:32,"559 Jefferson St, Austin, TX 73301" +241459,27in FHD Monitor,1,149.99,08/02/19 11:52,"202 Maple St, Dallas, TX 75001" +241460,USB-C Charging Cable,1,11.95,08/04/19 21:05,"902 13th St, Seattle, WA 98101" +241461,AAA Batteries (4-pack),3,2.99,08/02/19 18:43,"980 Cedar St, Seattle, WA 98101" +241462,USB-C Charging Cable,1,11.95,08/07/19 20:50,"940 11th St, Atlanta, GA 30301" +241463,USB-C Charging Cable,1,11.95,08/17/19 00:10,"483 Wilson St, Atlanta, GA 30301" +241464,Flatscreen TV,1,300,08/29/19 08:56,"507 2nd St, New York City, NY 10001" +241465,AAA Batteries (4-pack),1,2.99,08/25/19 17:25,"831 1st St, Los Angeles, CA 90001" +241466,34in Ultrawide Monitor,1,379.99,08/11/19 03:04,"604 7th St, Seattle, WA 98101" +241467,Bose SoundSport Headphones,1,99.99,08/10/19 18:50,"717 Maple St, Boston, MA 02215" +241468,Lightning Charging Cable,1,14.95,08/18/19 20:31,"584 North St, Los Angeles, CA 90001" +241469,Bose SoundSport Headphones,1,99.99,08/10/19 23:00,"73 Main St, Los Angeles, CA 90001" +241470,Apple Airpods Headphones,1,150,08/17/19 21:25,"842 11th St, Atlanta, GA 30301" +241471,Lightning Charging Cable,1,14.95,08/15/19 12:17,"396 9th St, New York City, NY 10001" +241472,Lightning Charging Cable,1,14.95,08/10/19 11:33,"831 6th St, Boston, MA 02215" +241472,ThinkPad Laptop,1,999.99,08/10/19 11:33,"831 6th St, Boston, MA 02215" +241473,Macbook Pro Laptop,1,1700,08/22/19 21:55,"539 Maple St, Atlanta, GA 30301" +241474,34in Ultrawide Monitor,1,379.99,08/02/19 10:31,"845 Lincoln St, Boston, MA 02215" +241475,27in FHD Monitor,1,149.99,08/10/19 11:48,"59 6th St, Seattle, WA 98101" +241476,Flatscreen TV,1,300,08/05/19 17:03,"504 1st St, Los Angeles, CA 90001" +241477,Google Phone,1,600,08/31/19 23:11,"90 8th St, Los Angeles, CA 90001" +241478,USB-C Charging Cable,1,11.95,08/31/19 11:01,"440 Meadow St, Seattle, WA 98101" +241479,USB-C Charging Cable,1,11.95,08/09/19 13:47,"958 Chestnut St, San Francisco, CA 94016" +241480,Lightning Charging Cable,1,14.95,08/04/19 17:12,"321 Center St, Los Angeles, CA 90001" +241481,AAA Batteries (4-pack),2,2.99,08/31/19 10:43,"421 1st St, Dallas, TX 75001" +241482,AAA Batteries (4-pack),1,2.99,08/08/19 10:03,"230 Washington St, New York City, NY 10001" +241483,AAA Batteries (4-pack),1,2.99,08/31/19 12:13,"33 Lincoln St, Boston, MA 02215" +241484,USB-C Charging Cable,1,11.95,08/05/19 08:47,"940 Dogwood St, Boston, MA 02215" +241485,27in FHD Monitor,1,149.99,08/10/19 07:45,"521 Hickory St, Los Angeles, CA 90001" +241486,Wired Headphones,1,11.99,08/28/19 13:54,"350 Lakeview St, Boston, MA 02215" +241487,Macbook Pro Laptop,1,1700,08/08/19 14:54,"318 Lakeview St, San Francisco, CA 94016" +241488,27in 4K Gaming Monitor,1,389.99,08/14/19 08:13,"679 12th St, Seattle, WA 98101" +241488,Wired Headphones,1,11.99,08/14/19 08:13,"679 12th St, Seattle, WA 98101" +241489,Apple Airpods Headphones,1,150,08/27/19 18:00,"645 2nd St, Austin, TX 73301" +241490,AAA Batteries (4-pack),1,2.99,08/26/19 13:43,"251 North St, New York City, NY 10001" +241491,AAA Batteries (4-pack),1,2.99,08/26/19 21:30,"942 5th St, New York City, NY 10001" +241492,AAA Batteries (4-pack),1,2.99,08/25/19 13:24,"977 2nd St, San Francisco, CA 94016" +241493,AAA Batteries (4-pack),1,2.99,08/27/19 11:15,"365 5th St, Seattle, WA 98101" +241494,Lightning Charging Cable,1,14.95,08/04/19 08:25,"909 Walnut St, San Francisco, CA 94016" +241495,AAA Batteries (4-pack),1,2.99,08/27/19 19:40,"999 Walnut St, New York City, NY 10001" +241496,Apple Airpods Headphones,1,150,08/02/19 14:47,"164 7th St, Los Angeles, CA 90001" +241497,Bose SoundSport Headphones,1,99.99,08/10/19 18:49,"446 Spruce St, San Francisco, CA 94016" +241497,Bose SoundSport Headphones,1,99.99,08/10/19 18:49,"446 Spruce St, San Francisco, CA 94016" +241498,34in Ultrawide Monitor,1,379.99,08/19/19 15:25,"983 Jefferson St, New York City, NY 10001" +241499,Flatscreen TV,1,300,08/01/19 13:49,"564 Lakeview St, Dallas, TX 75001" +241500,Wired Headphones,1,11.99,08/26/19 14:23,"513 4th St, Boston, MA 02215" +241501,Lightning Charging Cable,1,14.95,08/28/19 18:28,"231 Lincoln St, New York City, NY 10001" +241502,Bose SoundSport Headphones,1,99.99,08/03/19 12:17,"757 Chestnut St, Boston, MA 02215" +241503,Bose SoundSport Headphones,1,99.99,08/11/19 18:28,"85 2nd St, New York City, NY 10001" +241504,iPhone,1,700,08/22/19 11:21,"828 Spruce St, Boston, MA 02215" +241505,USB-C Charging Cable,1,11.95,08/16/19 01:54,"836 9th St, Boston, MA 02215" +241506,27in 4K Gaming Monitor,1,389.99,08/26/19 12:53,"326 Walnut St, San Francisco, CA 94016" +241507,USB-C Charging Cable,1,11.95,08/13/19 13:52,"187 Wilson St, San Francisco, CA 94016" +241508,USB-C Charging Cable,1,11.95,08/10/19 18:10,"94 12th St, San Francisco, CA 94016" +241509,USB-C Charging Cable,2,11.95,08/16/19 11:24,"770 7th St, Dallas, TX 75001" +241510,Apple Airpods Headphones,1,150,08/26/19 18:16,"340 5th St, Portland, OR 97035" +241511,AA Batteries (4-pack),1,3.84,08/12/19 19:21,"843 6th St, San Francisco, CA 94016" +241512,USB-C Charging Cable,1,11.95,08/16/19 20:26,"582 Ridge St, Los Angeles, CA 90001" +241513,Bose SoundSport Headphones,1,99.99,08/28/19 07:53,"64 Johnson St, Boston, MA 02215" +241514,Bose SoundSport Headphones,1,99.99,08/26/19 11:07,"719 Sunset St, San Francisco, CA 94016" +241515,Wired Headphones,1,11.99,08/01/19 20:15,"977 Jackson St, Atlanta, GA 30301" +241515,ThinkPad Laptop,1,999.99,08/01/19 20:15,"977 Jackson St, Atlanta, GA 30301" +241516,USB-C Charging Cable,1,11.95,08/09/19 14:53,"226 Madison St, Los Angeles, CA 90001" +241517,27in 4K Gaming Monitor,1,389.99,08/02/19 20:01,"368 Wilson St, Dallas, TX 75001" +241518,USB-C Charging Cable,1,11.95,08/10/19 11:40,"526 2nd St, Atlanta, GA 30301" +241519,Lightning Charging Cable,1,14.95,08/25/19 20:13,"694 5th St, San Francisco, CA 94016" +241520,27in FHD Monitor,1,149.99,08/04/19 23:31,"758 Lincoln St, Boston, MA 02215" +241521,Lightning Charging Cable,1,14.95,08/29/19 22:23,"88 South St, New York City, NY 10001" +241522,USB-C Charging Cable,1,11.95,08/28/19 16:23,"944 River St, Atlanta, GA 30301" +241523,Apple Airpods Headphones,1,150,08/03/19 13:21,"190 Jefferson St, Dallas, TX 75001" +241524,USB-C Charging Cable,1,11.95,08/27/19 11:15,"791 5th St, Portland, ME 04101" +241525,Vareebadd Phone,1,400,08/15/19 16:22,"150 Spruce St, San Francisco, CA 94016" +241526,USB-C Charging Cable,2,11.95,08/13/19 17:15,"505 Lincoln St, Boston, MA 02215" +241527,Lightning Charging Cable,1,14.95,08/03/19 20:42,"736 Dogwood St, Dallas, TX 75001" +241528,LG Dryer,1,600.0,08/08/19 16:43,"4 Lake St, Boston, MA 02215" +241529,Wired Headphones,1,11.99,08/17/19 22:42,"77 Hickory St, San Francisco, CA 94016" +241530,AA Batteries (4-pack),1,3.84,08/24/19 20:34,"83 Elm St, San Francisco, CA 94016" +241531,Google Phone,1,600,08/26/19 23:33,"638 Dogwood St, Atlanta, GA 30301" +241532,Apple Airpods Headphones,1,150,08/20/19 19:38,"64 13th St, New York City, NY 10001" +241532,ThinkPad Laptop,1,999.99,08/20/19 19:38,"64 13th St, New York City, NY 10001" +241533,20in Monitor,1,109.99,08/29/19 18:44,"967 Main St, New York City, NY 10001" +241534,Wired Headphones,1,11.99,08/24/19 19:54,"221 Elm St, San Francisco, CA 94016" +241535,AA Batteries (4-pack),1,3.84,08/01/19 19:23,"223 Lakeview St, Seattle, WA 98101" +241535,Macbook Pro Laptop,1,1700,08/01/19 19:23,"223 Lakeview St, Seattle, WA 98101" +241536,AAA Batteries (4-pack),1,2.99,08/31/19 17:28,"74 10th St, New York City, NY 10001" +241537,Wired Headphones,1,11.99,08/25/19 16:15,"784 North St, New York City, NY 10001" +241538,Bose SoundSport Headphones,1,99.99,08/26/19 16:34,"584 2nd St, Los Angeles, CA 90001" +241539,Lightning Charging Cable,1,14.95,08/24/19 18:14,"984 Chestnut St, Atlanta, GA 30301" +241540,Wired Headphones,1,11.99,08/22/19 21:50,"592 13th St, San Francisco, CA 94016" +241541,Vareebadd Phone,1,400,08/31/19 16:43,"634 Walnut St, New York City, NY 10001" +241541,Bose SoundSport Headphones,1,99.99,08/31/19 16:43,"634 Walnut St, New York City, NY 10001" +241542,iPhone,1,700,08/10/19 15:41,"663 Pine St, Austin, TX 73301" +241543,Macbook Pro Laptop,1,1700,08/22/19 16:09,"614 North St, New York City, NY 10001" +241544,34in Ultrawide Monitor,1,379.99,08/31/19 16:29,"984 West St, New York City, NY 10001" +241545,AAA Batteries (4-pack),1,2.99,08/26/19 21:36,"252 Jackson St, Los Angeles, CA 90001" +241546,USB-C Charging Cable,2,11.95,08/21/19 13:24,"160 6th St, Los Angeles, CA 90001" +241547,Vareebadd Phone,1,400,08/01/19 19:05,"615 Spruce St, New York City, NY 10001" +241547,USB-C Charging Cable,1,11.95,08/01/19 19:05,"615 Spruce St, New York City, NY 10001" +241548,27in FHD Monitor,1,149.99,08/25/19 15:03,"2 Elm St, Los Angeles, CA 90001" +241549,USB-C Charging Cable,1,11.95,08/17/19 20:41,"252 Chestnut St, Seattle, WA 98101" +241550,iPhone,1,700,08/09/19 15:28,"434 Cedar St, New York City, NY 10001" +241551,USB-C Charging Cable,1,11.95,08/15/19 19:20,"107 South St, San Francisco, CA 94016" +241552,Wired Headphones,1,11.99,08/03/19 15:03,"247 Adams St, New York City, NY 10001" +241553,Apple Airpods Headphones,1,150,08/28/19 10:51,"834 2nd St, San Francisco, CA 94016" +241554,Wired Headphones,2,11.99,08/16/19 22:42,"243 6th St, San Francisco, CA 94016" +241555,Wired Headphones,1,11.99,08/26/19 02:37,"975 4th St, New York City, NY 10001" +241556,USB-C Charging Cable,1,11.95,08/15/19 16:14,"527 Ridge St, Austin, TX 73301" +241557,Bose SoundSport Headphones,1,99.99,08/14/19 00:45,"257 Ridge St, Atlanta, GA 30301" +241558,Wired Headphones,1,11.99,08/22/19 19:23,"975 South St, Seattle, WA 98101" +241559,Google Phone,1,600,08/05/19 22:09,"69 Highland St, Los Angeles, CA 90001" +241560,Macbook Pro Laptop,1,1700,08/29/19 17:23,"793 Main St, San Francisco, CA 94016" +241561,USB-C Charging Cable,1,11.95,08/03/19 13:55,"94 Ridge St, San Francisco, CA 94016" +241562,27in 4K Gaming Monitor,1,389.99,08/31/19 10:52,"355 9th St, New York City, NY 10001" +241563,USB-C Charging Cable,1,11.95,08/21/19 10:31,"778 Main St, Boston, MA 02215" +241564,AAA Batteries (4-pack),2,2.99,08/25/19 22:13,"3 1st St, Seattle, WA 98101" +241565,AAA Batteries (4-pack),1,2.99,08/30/19 13:30,"525 2nd St, San Francisco, CA 94016" +241566,iPhone,1,700,08/15/19 10:11,"380 13th St, Austin, TX 73301" +241567,20in Monitor,1,109.99,08/29/19 17:41,"72 9th St, Atlanta, GA 30301" +241568,27in 4K Gaming Monitor,1,389.99,08/06/19 20:42,"975 Madison St, Austin, TX 73301" +241569,USB-C Charging Cable,1,11.95,08/01/19 12:36,"883 2nd St, Los Angeles, CA 90001" +241570,27in 4K Gaming Monitor,1,389.99,08/23/19 15:30,"693 2nd St, San Francisco, CA 94016" +241571,Apple Airpods Headphones,1,150,08/02/19 07:52,"82 Jefferson St, Seattle, WA 98101" +241572,USB-C Charging Cable,1,11.95,08/01/19 10:46,"601 Elm St, Boston, MA 02215" +241573,AA Batteries (4-pack),1,3.84,08/06/19 18:53,"10 14th St, Los Angeles, CA 90001" +241574,27in FHD Monitor,1,149.99,08/24/19 13:59,"407 South St, New York City, NY 10001" +241575,Bose SoundSport Headphones,1,99.99,08/11/19 12:15,"62 Maple St, Austin, TX 73301" +241576,34in Ultrawide Monitor,1,379.99,08/23/19 21:15,"560 Jefferson St, Austin, TX 73301" +241577,Wired Headphones,1,11.99,08/31/19 07:07,"879 9th St, Los Angeles, CA 90001" +241578,27in 4K Gaming Monitor,1,389.99,08/11/19 11:45,"115 5th St, Dallas, TX 75001" +241579,27in 4K Gaming Monitor,1,389.99,08/09/19 15:05,"40 Meadow St, Seattle, WA 98101" +241580,Macbook Pro Laptop,1,1700,08/10/19 07:23,"53 Meadow St, Atlanta, GA 30301" +241581,AA Batteries (4-pack),1,3.84,08/12/19 14:39,"102 Johnson St, Atlanta, GA 30301" +241582,USB-C Charging Cable,1,11.95,08/15/19 17:03,"995 Center St, Portland, OR 97035" +241583,iPhone,1,700,08/25/19 14:32,"131 8th St, Austin, TX 73301" +241584,Lightning Charging Cable,1,14.95,08/15/19 16:59,"768 Elm St, New York City, NY 10001" +241585,27in 4K Gaming Monitor,1,389.99,08/09/19 13:09,"491 Hill St, San Francisco, CA 94016" +241586,Lightning Charging Cable,1,14.95,08/26/19 19:44,"486 Ridge St, Portland, OR 97035" +241587,Wired Headphones,1,11.99,08/27/19 09:17,"565 6th St, San Francisco, CA 94016" +241588,Lightning Charging Cable,1,14.95,08/10/19 18:29,"946 7th St, New York City, NY 10001" +241589,Lightning Charging Cable,1,14.95,08/23/19 13:15,"576 8th St, Boston, MA 02215" +241590,AAA Batteries (4-pack),1,2.99,08/16/19 19:35,"318 5th St, San Francisco, CA 94016" +241591,iPhone,1,700,08/24/19 17:07,"402 Walnut St, Atlanta, GA 30301" +241592,AA Batteries (4-pack),1,3.84,08/22/19 17:54,"101 Jefferson St, San Francisco, CA 94016" +241593,Wired Headphones,2,11.99,08/24/19 20:39,"326 Main St, Boston, MA 02215" +241594,Apple Airpods Headphones,1,150,08/28/19 04:21,"565 South St, San Francisco, CA 94016" +241595,iPhone,1,700,08/12/19 20:35,"848 7th St, Portland, OR 97035" +241596,AA Batteries (4-pack),2,3.84,08/27/19 16:34,"145 Sunset St, San Francisco, CA 94016" +241597,20in Monitor,1,109.99,08/15/19 20:07,"26 Jefferson St, Dallas, TX 75001" +241598,Flatscreen TV,1,300,08/31/19 22:46,"232 Chestnut St, Dallas, TX 75001" +241599,Lightning Charging Cable,1,14.95,08/17/19 21:11,"719 Hickory St, Dallas, TX 75001" +241600,ThinkPad Laptop,1,999.99,08/02/19 19:27,"885 South St, Seattle, WA 98101" +241601,iPhone,1,700,08/10/19 12:08,"931 Hickory St, Portland, OR 97035" +241601,Apple Airpods Headphones,1,150,08/10/19 12:08,"931 Hickory St, Portland, OR 97035" +241602,AA Batteries (4-pack),1,3.84,08/14/19 14:34,"308 Hickory St, San Francisco, CA 94016" +241603,AAA Batteries (4-pack),1,2.99,08/13/19 22:39,"703 Adams St, Boston, MA 02215" +241604,Apple Airpods Headphones,1,150,08/24/19 12:29,"233 11th St, San Francisco, CA 94016" +241605,Wired Headphones,1,11.99,08/07/19 12:18,"381 River St, Boston, MA 02215" +241606,Wired Headphones,1,11.99,08/04/19 19:45,"705 12th St, Seattle, WA 98101" +241607,AAA Batteries (4-pack),3,2.99,08/12/19 05:55,"504 12th St, Dallas, TX 75001" +241608,Apple Airpods Headphones,1,150,08/15/19 06:24,"736 Elm St, Atlanta, GA 30301" +241609,AA Batteries (4-pack),3,3.84,08/27/19 08:50,"15 Spruce St, Dallas, TX 75001" +241610,AAA Batteries (4-pack),1,2.99,08/16/19 16:18,"278 Chestnut St, Los Angeles, CA 90001" +241611,ThinkPad Laptop,1,999.99,08/18/19 20:37,"989 5th St, Austin, TX 73301" +241612,Wired Headphones,1,11.99,08/04/19 11:53,"782 North St, Boston, MA 02215" +241613,20in Monitor,1,109.99,08/23/19 03:55,"754 Willow St, San Francisco, CA 94016" +241614,20in Monitor,1,109.99,08/02/19 11:22,"734 Chestnut St, New York City, NY 10001" +241615,iPhone,1,700,08/24/19 18:26,"92 Forest St, Austin, TX 73301" +241616,AA Batteries (4-pack),1,3.84,08/16/19 20:18,"507 8th St, New York City, NY 10001" +241617,Wired Headphones,1,11.99,08/08/19 14:55,"63 Pine St, Seattle, WA 98101" +241618,Lightning Charging Cable,1,14.95,08/18/19 17:01,"371 4th St, Boston, MA 02215" +241619,AAA Batteries (4-pack),2,2.99,08/19/19 13:45,"754 Jackson St, Dallas, TX 75001" +241620,Wired Headphones,1,11.99,08/13/19 00:24,"317 Forest St, San Francisco, CA 94016" +241621,Apple Airpods Headphones,1,150,08/05/19 19:27,"532 6th St, Los Angeles, CA 90001" +241622,AAA Batteries (4-pack),2,2.99,08/03/19 23:13,"246 Highland St, San Francisco, CA 94016" +241623,AAA Batteries (4-pack),3,2.99,08/08/19 20:19,"514 2nd St, Dallas, TX 75001" +241624,27in FHD Monitor,1,149.99,08/26/19 14:12,"659 6th St, Seattle, WA 98101" +241625,AAA Batteries (4-pack),2,2.99,08/14/19 19:06,"93 Lakeview St, Boston, MA 02215" +241626,Apple Airpods Headphones,1,150,08/15/19 07:29,"647 Center St, San Francisco, CA 94016" +241627,AAA Batteries (4-pack),1,2.99,08/23/19 18:49,"758 West St, Dallas, TX 75001" +241628,Lightning Charging Cable,1,14.95,08/11/19 19:31,"869 11th St, San Francisco, CA 94016" +241629,AA Batteries (4-pack),1,3.84,08/29/19 08:57,"907 Lincoln St, San Francisco, CA 94016" +241630,USB-C Charging Cable,1,11.95,08/31/19 10:21,"263 Main St, Portland, ME 04101" +241631,27in 4K Gaming Monitor,1,389.99,08/14/19 18:11,"674 11th St, San Francisco, CA 94016" +241632,Lightning Charging Cable,1,14.95,08/25/19 15:21,"770 Elm St, Dallas, TX 75001" +241633,USB-C Charging Cable,1,11.95,08/16/19 10:34,"166 Sunset St, San Francisco, CA 94016" +241634,Bose SoundSport Headphones,1,99.99,08/10/19 17:28,"992 Madison St, San Francisco, CA 94016" +241635,iPhone,1,700,08/03/19 12:28,"73 Ridge St, Atlanta, GA 30301" +241636,AAA Batteries (4-pack),3,2.99,08/12/19 17:41,"268 14th St, Seattle, WA 98101" +241637,AAA Batteries (4-pack),1,2.99,08/04/19 18:08,"474 Center St, Los Angeles, CA 90001" +241638,Flatscreen TV,1,300,08/21/19 22:00,"258 Adams St, San Francisco, CA 94016" +241639,AA Batteries (4-pack),2,3.84,08/19/19 18:33,"13 West St, Boston, MA 02215" +241640,LG Washing Machine,1,600.0,08/25/19 12:40,"538 Sunset St, Los Angeles, CA 90001" +241641,Wired Headphones,2,11.99,08/04/19 10:21,"771 11th St, Los Angeles, CA 90001" +241642,AA Batteries (4-pack),1,3.84,08/17/19 13:24,"441 West St, Los Angeles, CA 90001" +241643,34in Ultrawide Monitor,1,379.99,08/25/19 13:28,"124 Lake St, San Francisco, CA 94016" +241644,Wired Headphones,1,11.99,08/01/19 10:47,"627 Walnut St, San Francisco, CA 94016" +241645,AAA Batteries (4-pack),2,2.99,08/22/19 23:37,"363 12th St, Austin, TX 73301" +241646,AAA Batteries (4-pack),1,2.99,08/20/19 21:02,"634 West St, Portland, OR 97035" +241647,Macbook Pro Laptop,1,1700,08/15/19 10:30,"295 Highland St, San Francisco, CA 94016" +241648,27in FHD Monitor,1,149.99,08/11/19 14:05,"140 Ridge St, San Francisco, CA 94016" +241649,Apple Airpods Headphones,1,150,08/28/19 15:04,"655 Hickory St, San Francisco, CA 94016" +241650,iPhone,1,700,08/24/19 00:56,"445 Hickory St, San Francisco, CA 94016" +241651,Google Phone,1,600,08/19/19 02:35,"486 Dogwood St, Atlanta, GA 30301" +241652,27in FHD Monitor,1,149.99,08/22/19 10:16,"275 Dogwood St, Los Angeles, CA 90001" +241653,20in Monitor,1,109.99,08/09/19 21:06,"99 13th St, Los Angeles, CA 90001" +241654,Lightning Charging Cable,1,14.95,08/07/19 10:14,"971 2nd St, San Francisco, CA 94016" +241655,USB-C Charging Cable,1,11.95,08/20/19 20:12,"880 Elm St, San Francisco, CA 94016" +241656,AAA Batteries (4-pack),1,2.99,08/09/19 02:20,"558 5th St, Los Angeles, CA 90001" +241657,AA Batteries (4-pack),3,3.84,08/27/19 20:23,"526 Washington St, Seattle, WA 98101" +241658,Lightning Charging Cable,1,14.95,08/13/19 05:42,"415 Church St, New York City, NY 10001" +241659,20in Monitor,1,109.99,08/05/19 17:56,"25 Lincoln St, San Francisco, CA 94016" +241660,Bose SoundSport Headphones,1,99.99,08/01/19 17:49,"475 Cherry St, New York City, NY 10001" +241661,USB-C Charging Cable,1,11.95,08/11/19 18:37,"44 13th St, Seattle, WA 98101" +241662,Bose SoundSport Headphones,1,99.99,08/05/19 22:24,"666 Highland St, New York City, NY 10001" +241663,Lightning Charging Cable,1,14.95,08/19/19 11:12,"981 Sunset St, Los Angeles, CA 90001" +241664,ThinkPad Laptop,1,999.99,08/11/19 13:49,"727 Forest St, Dallas, TX 75001" +241665,USB-C Charging Cable,1,11.95,08/21/19 20:00,"905 Walnut St, San Francisco, CA 94016" +241665,Bose SoundSport Headphones,1,99.99,08/21/19 20:00,"905 Walnut St, San Francisco, CA 94016" +241666,Lightning Charging Cable,1,14.95,08/23/19 19:40,"946 11th St, San Francisco, CA 94016" +241667,20in Monitor,1,109.99,08/07/19 19:48,"171 5th St, San Francisco, CA 94016" +241668,Wired Headphones,1,11.99,08/11/19 18:48,"79 6th St, San Francisco, CA 94016" +241669,Apple Airpods Headphones,1,150,08/02/19 23:51,"333 Jefferson St, Austin, TX 73301" +241670,34in Ultrawide Monitor,1,379.99,08/25/19 17:33,"529 Hickory St, Los Angeles, CA 90001" +241671,34in Ultrawide Monitor,1,379.99,08/10/19 10:57,"269 Adams St, Los Angeles, CA 90001" +241672,Google Phone,1,600,08/05/19 11:52,"360 Hill St, Atlanta, GA 30301" +241673,Wired Headphones,1,11.99,08/11/19 07:30,"955 Meadow St, Los Angeles, CA 90001" +241674,Bose SoundSport Headphones,1,99.99,08/31/19 16:12,"271 South St, San Francisco, CA 94016" +241675,Flatscreen TV,1,300,08/02/19 18:06,"347 Ridge St, New York City, NY 10001" +241676,AA Batteries (4-pack),1,3.84,08/01/19 13:28,"619 2nd St, Los Angeles, CA 90001" +241677,ThinkPad Laptop,1,999.99,08/16/19 11:38,"444 Pine St, Austin, TX 73301" +241678,Flatscreen TV,1,300,08/18/19 19:52,"326 5th St, Atlanta, GA 30301" +241679,Apple Airpods Headphones,1,150,08/04/19 13:48,"390 Chestnut St, Austin, TX 73301" +241680,Lightning Charging Cable,1,14.95,08/12/19 14:55,"306 12th St, New York City, NY 10001" +241681,AA Batteries (4-pack),2,3.84,08/24/19 08:51,"772 River St, Dallas, TX 75001" +241682,27in 4K Gaming Monitor,1,389.99,08/03/19 14:38,"517 Jackson St, San Francisco, CA 94016" +241683,Bose SoundSport Headphones,1,99.99,08/26/19 14:13,"297 Forest St, Seattle, WA 98101" +241684,Lightning Charging Cable,1,14.95,08/29/19 10:03,"714 8th St, Atlanta, GA 30301" +241685,USB-C Charging Cable,1,11.95,08/24/19 20:55,"150 Lake St, Los Angeles, CA 90001" +241686,Wired Headphones,1,11.99,08/23/19 17:04,"777 North St, Seattle, WA 98101" +241687,iPhone,1,700,08/10/19 15:15,"696 Cedar St, Atlanta, GA 30301" +241688,Bose SoundSport Headphones,1,99.99,08/01/19 15:09,"220 9th St, Portland, OR 97035" +241689,Lightning Charging Cable,1,14.95,08/16/19 21:49,"482 Spruce St, San Francisco, CA 94016" +241689,AA Batteries (4-pack),1,3.84,08/16/19 21:49,"482 Spruce St, San Francisco, CA 94016" +241690,USB-C Charging Cable,1,11.95,08/27/19 18:42,"826 1st St, San Francisco, CA 94016" +241691,Macbook Pro Laptop,1,1700,08/05/19 19:01,"809 North St, Seattle, WA 98101" +241692,USB-C Charging Cable,1,11.95,08/07/19 18:33,"284 7th St, Portland, OR 97035" +241693,27in FHD Monitor,1,149.99,08/31/19 21:14,"281 Adams St, Atlanta, GA 30301" +241694,AA Batteries (4-pack),4,3.84,08/14/19 09:30,"173 Pine St, Atlanta, GA 30301" +241695,Flatscreen TV,1,300,08/29/19 04:52,"422 Forest St, Seattle, WA 98101" +241696,Wired Headphones,1,11.99,08/05/19 11:31,"4 Maple St, Boston, MA 02215" +241697,Macbook Pro Laptop,1,1700,08/16/19 14:40,"470 2nd St, Portland, OR 97035" +241698,AA Batteries (4-pack),1,3.84,08/14/19 15:41,"555 Dogwood St, Los Angeles, CA 90001" +241699,Google Phone,1,600,08/07/19 10:51,"778 Willow St, Portland, ME 04101" +241700,20in Monitor,1,109.99,08/02/19 09:20,"246 10th St, San Francisco, CA 94016" +241701,Macbook Pro Laptop,1,1700,08/24/19 11:34,"211 Jefferson St, New York City, NY 10001" +241702,iPhone,1,700,08/30/19 19:43,"72 Hickory St, San Francisco, CA 94016" +241703,27in 4K Gaming Monitor,1,389.99,08/28/19 18:18,"493 Lincoln St, San Francisco, CA 94016" +241704,Apple Airpods Headphones,1,150,08/31/19 10:59,"135 Spruce St, Dallas, TX 75001" +241705,AAA Batteries (4-pack),1,2.99,08/18/19 22:02,"123 Lakeview St, New York City, NY 10001" +241706,USB-C Charging Cable,1,11.95,08/10/19 20:02,"171 Cherry St, San Francisco, CA 94016" +241707,AAA Batteries (4-pack),1,2.99,08/29/19 15:16,"682 Walnut St, Austin, TX 73301" +241708,AAA Batteries (4-pack),1,2.99,08/08/19 17:15,"777 Forest St, Austin, TX 73301" +241709,AAA Batteries (4-pack),4,2.99,08/03/19 12:10,"484 1st St, San Francisco, CA 94016" +241710,Vareebadd Phone,1,400,08/14/19 09:56,"735 West St, San Francisco, CA 94016" +241711,USB-C Charging Cable,1,11.95,08/21/19 21:46,"236 West St, Austin, TX 73301" +241712,ThinkPad Laptop,1,999.99,08/13/19 11:32,"37 Cherry St, Los Angeles, CA 90001" +241713,USB-C Charging Cable,1,11.95,08/18/19 18:18,"395 Washington St, Boston, MA 02215" +241714,AA Batteries (4-pack),1,3.84,08/30/19 18:41,"245 Main St, Austin, TX 73301" +241714,Lightning Charging Cable,1,14.95,08/30/19 18:41,"245 Main St, Austin, TX 73301" +241715,Wired Headphones,1,11.99,08/03/19 12:24,"295 12th St, San Francisco, CA 94016" +241716,Bose SoundSport Headphones,1,99.99,08/06/19 17:52,"951 5th St, New York City, NY 10001" +241717,Wired Headphones,1,11.99,08/31/19 20:49,"763 Wilson St, Dallas, TX 75001" +241718,Lightning Charging Cable,1,14.95,08/09/19 21:51,"823 4th St, San Francisco, CA 94016" +241719,AA Batteries (4-pack),1,3.84,08/15/19 08:45,"119 Highland St, Austin, TX 73301" +241720,Lightning Charging Cable,1,14.95,08/15/19 17:43,"837 Johnson St, Los Angeles, CA 90001" +241721,Macbook Pro Laptop,1,1700,08/30/19 19:04,"398 13th St, Los Angeles, CA 90001" +241722,Wired Headphones,1,11.99,08/10/19 16:03,"239 Dogwood St, Boston, MA 02215" +241723,Wired Headphones,1,11.99,08/18/19 18:03,"675 Hickory St, New York City, NY 10001" +241724,Wired Headphones,1,11.99,08/06/19 13:37,"141 Jackson St, Seattle, WA 98101" +241725,Lightning Charging Cable,1,14.95,08/15/19 15:35,"657 Johnson St, New York City, NY 10001" +241726,27in FHD Monitor,1,149.99,08/13/19 21:24,"771 7th St, New York City, NY 10001" +241727,Apple Airpods Headphones,1,150,08/18/19 20:44,"287 Elm St, San Francisco, CA 94016" +241728,20in Monitor,1,109.99,08/19/19 20:50,"913 14th St, Los Angeles, CA 90001" +241729,AAA Batteries (4-pack),2,2.99,08/22/19 20:35,"934 Hill St, Seattle, WA 98101" +241730,27in FHD Monitor,1,149.99,08/16/19 17:42,"732 5th St, San Francisco, CA 94016" +241731,AAA Batteries (4-pack),1,2.99,08/09/19 01:52,"435 6th St, San Francisco, CA 94016" +241732,Apple Airpods Headphones,1,150,08/12/19 13:46,"933 7th St, Los Angeles, CA 90001" +241733,AAA Batteries (4-pack),1,2.99,08/10/19 15:07,"198 Willow St, San Francisco, CA 94016" +241733,AA Batteries (4-pack),2,3.84,08/10/19 15:07,"198 Willow St, San Francisco, CA 94016" +241734,Apple Airpods Headphones,1,150,08/09/19 22:35,"998 South St, Austin, TX 73301" +241735,AAA Batteries (4-pack),1,2.99,08/10/19 13:12,"253 Dogwood St, Atlanta, GA 30301" +241736,Wired Headphones,1,11.99,08/31/19 22:38,"329 Johnson St, Los Angeles, CA 90001" +241737,iPhone,1,700,08/19/19 20:38,"846 Main St, Austin, TX 73301" +241738,Wired Headphones,1,11.99,08/03/19 14:14,"739 Washington St, Portland, OR 97035" +241739,Google Phone,1,600,08/09/19 22:58,"12 9th St, Portland, OR 97035" +241740,Apple Airpods Headphones,1,150,08/29/19 02:29,"240 Pine St, Boston, MA 02215" +241741,Google Phone,1,600,08/13/19 15:13,"44 8th St, Dallas, TX 75001" +241742,Bose SoundSport Headphones,1,99.99,08/12/19 17:47,"536 7th St, Boston, MA 02215" +241743,AA Batteries (4-pack),1,3.84,08/13/19 06:36,"469 4th St, Dallas, TX 75001" +241744,Lightning Charging Cable,1,14.95,08/17/19 09:57,"326 Forest St, San Francisco, CA 94016" +241745,Vareebadd Phone,1,400,08/02/19 19:11,"888 Madison St, San Francisco, CA 94016" +241745,USB-C Charging Cable,1,11.95,08/02/19 19:11,"888 Madison St, San Francisco, CA 94016" +241746,Lightning Charging Cable,1,14.95,08/23/19 07:39,"536 Pine St, San Francisco, CA 94016" +241747,AA Batteries (4-pack),1,3.84,08/19/19 16:27,"854 10th St, New York City, NY 10001" +241748,USB-C Charging Cable,1,11.95,08/23/19 06:24,"213 Adams St, San Francisco, CA 94016" +241749,USB-C Charging Cable,1,11.95,08/14/19 11:51,"118 Elm St, Austin, TX 73301" +241750,Lightning Charging Cable,1,14.95,08/01/19 19:48,"101 Wilson St, New York City, NY 10001" +241751,USB-C Charging Cable,1,11.95,08/04/19 23:22,"972 11th St, San Francisco, CA 94016" +241752,27in FHD Monitor,1,149.99,08/18/19 17:46,"174 Washington St, Los Angeles, CA 90001" +241753,Wired Headphones,1,11.99,08/17/19 12:11,"724 Pine St, Los Angeles, CA 90001" +241754,Lightning Charging Cable,1,14.95,08/22/19 01:04,"164 River St, Austin, TX 73301" +241755,27in 4K Gaming Monitor,1,389.99,08/18/19 13:33,"799 Jackson St, San Francisco, CA 94016" +241756,Apple Airpods Headphones,1,150,08/18/19 06:37,"29 Hickory St, San Francisco, CA 94016" +241757,USB-C Charging Cable,1,11.95,08/28/19 16:28,"618 Church St, Dallas, TX 75001" +241758,AA Batteries (4-pack),1,3.84,08/22/19 17:32,"202 2nd St, San Francisco, CA 94016" +241759,Lightning Charging Cable,1,14.95,08/27/19 19:48,"147 Lake St, San Francisco, CA 94016" +241760,Apple Airpods Headphones,1,150,08/22/19 18:01,"570 Spruce St, Seattle, WA 98101" +241761,Vareebadd Phone,1,400,08/07/19 11:59,"500 Ridge St, Seattle, WA 98101" +241762,Wired Headphones,1,11.99,08/02/19 21:13,"583 6th St, Los Angeles, CA 90001" +241763,Wired Headphones,1,11.99,08/16/19 12:01,"171 5th St, New York City, NY 10001" +241764,ThinkPad Laptop,1,999.99,08/25/19 09:56,"693 Main St, Los Angeles, CA 90001" +241765,AA Batteries (4-pack),2,3.84,08/06/19 22:50,"985 Church St, Atlanta, GA 30301" +241766,iPhone,1,700,08/14/19 18:03,"778 Pine St, San Francisco, CA 94016" +241766,Lightning Charging Cable,1,14.95,08/14/19 18:03,"778 Pine St, San Francisco, CA 94016" +241767,Apple Airpods Headphones,1,150,08/19/19 15:54,"857 Madison St, Austin, TX 73301" +241768,Bose SoundSport Headphones,1,99.99,08/10/19 22:35,"311 West St, Seattle, WA 98101" +241769,AA Batteries (4-pack),1,3.84,08/06/19 19:58,"445 2nd St, Los Angeles, CA 90001" +241770,USB-C Charging Cable,1,11.95,08/13/19 18:14,"345 Forest St, Seattle, WA 98101" +241771,Lightning Charging Cable,1,14.95,08/08/19 15:38,"760 11th St, San Francisco, CA 94016" +241772,27in FHD Monitor,1,149.99,08/30/19 17:31,"300 Maple St, Boston, MA 02215" +241773,Lightning Charging Cable,1,14.95,08/18/19 14:50,"9 Maple St, New York City, NY 10001" +241773,Vareebadd Phone,1,400,08/18/19 14:50,"9 Maple St, New York City, NY 10001" +241774,34in Ultrawide Monitor,1,379.99,08/15/19 17:19,"585 Hill St, Los Angeles, CA 90001" +241775,Flatscreen TV,1,300,08/11/19 20:21,"269 West St, Austin, TX 73301" +241776,Lightning Charging Cable,1,14.95,08/12/19 11:35,"962 Cedar St, Dallas, TX 75001" +241777,USB-C Charging Cable,1,11.95,08/13/19 06:12,"310 12th St, Atlanta, GA 30301" +241778,27in 4K Gaming Monitor,1,389.99,08/01/19 20:33,"823 Cherry St, New York City, NY 10001" +241779,AA Batteries (4-pack),1,3.84,08/06/19 13:14,"264 Ridge St, Boston, MA 02215" +241780,AAA Batteries (4-pack),2,2.99,08/09/19 12:00,"553 Ridge St, Dallas, TX 75001" +241781,Lightning Charging Cable,1,14.95,08/23/19 10:38,"182 Meadow St, New York City, NY 10001" +241782,34in Ultrawide Monitor,1,379.99,08/17/19 11:17,"11 North St, San Francisco, CA 94016" +241783,Bose SoundSport Headphones,1,99.99,08/28/19 13:04,"907 Main St, Dallas, TX 75001" +241784,AAA Batteries (4-pack),1,2.99,08/19/19 14:10,"658 River St, New York City, NY 10001" +241785,USB-C Charging Cable,1,11.95,08/06/19 18:56,"461 8th St, New York City, NY 10001" +241786,27in 4K Gaming Monitor,1,389.99,08/05/19 13:44,"189 Pine St, Los Angeles, CA 90001" +241787,27in 4K Gaming Monitor,1,389.99,08/15/19 14:29,"588 14th St, Boston, MA 02215" +241788,USB-C Charging Cable,1,11.95,08/19/19 18:52,"192 Chestnut St, Portland, OR 97035" +241789,Bose SoundSport Headphones,1,99.99,08/18/19 08:15,"721 7th St, New York City, NY 10001" +241790,AAA Batteries (4-pack),2,2.99,08/04/19 12:25,"31 9th St, Austin, TX 73301" +241791,AAA Batteries (4-pack),2,2.99,08/06/19 01:12,"525 6th St, Los Angeles, CA 90001" +241792,AAA Batteries (4-pack),1,2.99,08/04/19 03:42,"46 Main St, Dallas, TX 75001" +241793,AAA Batteries (4-pack),3,2.99,08/18/19 19:31,"547 7th St, Dallas, TX 75001" +241794,iPhone,1,700,08/31/19 09:40,"740 Willow St, New York City, NY 10001" +241795,Wired Headphones,1,11.99,08/25/19 18:16,"928 2nd St, Dallas, TX 75001" +241796,AAA Batteries (4-pack),1,2.99,08/16/19 09:47,"903 Highland St, Los Angeles, CA 90001" +241797,USB-C Charging Cable,1,11.95,08/04/19 08:26,"159 10th St, Boston, MA 02215" +241798,AAA Batteries (4-pack),1,2.99,08/15/19 07:34,"139 Forest St, Boston, MA 02215" +241799,Bose SoundSport Headphones,1,99.99,08/12/19 00:12,"407 Lake St, Atlanta, GA 30301" +241800,Bose SoundSport Headphones,1,99.99,08/03/19 22:55,"387 Johnson St, San Francisco, CA 94016" +241801,AAA Batteries (4-pack),1,2.99,08/10/19 10:43,"696 River St, San Francisco, CA 94016" +241802,20in Monitor,1,109.99,08/05/19 09:37,"84 5th St, New York City, NY 10001" +241803,Vareebadd Phone,1,400,08/23/19 14:46,"143 4th St, San Francisco, CA 94016" +241803,USB-C Charging Cable,1,11.95,08/23/19 14:46,"143 4th St, San Francisco, CA 94016" +241803,Wired Headphones,1,11.99,08/23/19 14:46,"143 4th St, San Francisco, CA 94016" +241804,Wired Headphones,1,11.99,08/21/19 21:06,"577 Lake St, San Francisco, CA 94016" +241805,AA Batteries (4-pack),2,3.84,08/14/19 13:50,"711 4th St, Austin, TX 73301" +241806,Lightning Charging Cable,1,14.95,08/09/19 19:43,"252 14th St, Austin, TX 73301" +241807,Wired Headphones,1,11.99,08/20/19 11:30,"26 North St, Los Angeles, CA 90001" +241808,AAA Batteries (4-pack),1,2.99,08/05/19 15:45,"779 4th St, New York City, NY 10001" +241809,Wired Headphones,1,11.99,08/06/19 12:58,"555 Pine St, Atlanta, GA 30301" +241810,Lightning Charging Cable,1,14.95,08/17/19 18:51,"580 West St, Seattle, WA 98101" +241811,Lightning Charging Cable,1,14.95,08/03/19 21:35,"464 Maple St, San Francisco, CA 94016" +241812,Apple Airpods Headphones,1,150,08/20/19 20:44,"402 Chestnut St, Atlanta, GA 30301" +241812,Wired Headphones,1,11.99,08/20/19 20:44,"402 Chestnut St, Atlanta, GA 30301" +241813,27in 4K Gaming Monitor,1,389.99,08/25/19 20:21,"225 Lakeview St, San Francisco, CA 94016" +241814,AA Batteries (4-pack),1,3.84,08/25/19 09:34,"871 14th St, Seattle, WA 98101" +241815,USB-C Charging Cable,1,11.95,08/20/19 12:51,"856 Meadow St, Seattle, WA 98101" +241816,Lightning Charging Cable,1,14.95,08/25/19 13:45,"247 West St, Boston, MA 02215" +241817,Wired Headphones,2,11.99,08/09/19 23:11,"667 10th St, San Francisco, CA 94016" +241818,AA Batteries (4-pack),1,3.84,08/31/19 16:50,"203 Chestnut St, Austin, TX 73301" +241819,LG Dryer,1,600.0,08/08/19 11:21,"816 Johnson St, San Francisco, CA 94016" +241820,AA Batteries (4-pack),1,3.84,08/14/19 10:44,"107 West St, San Francisco, CA 94016" +241821,iPhone,1,700,08/27/19 22:31,"20 Lincoln St, Boston, MA 02215" +241821,Lightning Charging Cable,1,14.95,08/27/19 22:31,"20 Lincoln St, Boston, MA 02215" +241822,Wired Headphones,1,11.99,08/12/19 22:00,"601 Meadow St, Atlanta, GA 30301" +241823,27in 4K Gaming Monitor,1,389.99,08/08/19 18:48,"153 North St, Los Angeles, CA 90001" +241824,AA Batteries (4-pack),1,3.84,08/27/19 16:34,"535 Hickory St, Austin, TX 73301" +241825,27in 4K Gaming Monitor,1,389.99,08/05/19 10:50,"339 14th St, San Francisco, CA 94016" +241826,USB-C Charging Cable,1,11.95,08/26/19 20:50,"486 Elm St, Los Angeles, CA 90001" +241827,AAA Batteries (4-pack),1,2.99,08/13/19 14:06,"659 13th St, Boston, MA 02215" +241828,20in Monitor,1,109.99,08/22/19 17:42,"962 12th St, San Francisco, CA 94016" +241829,AA Batteries (4-pack),1,3.84,08/28/19 10:55,"797 8th St, San Francisco, CA 94016" +241830,Wired Headphones,1,11.99,08/25/19 18:07,"935 Meadow St, Boston, MA 02215" +241831,AA Batteries (4-pack),1,3.84,08/05/19 00:26,"82 Sunset St, Dallas, TX 75001" +241832,AA Batteries (4-pack),1,3.84,08/31/19 10:33,"645 Elm St, San Francisco, CA 94016" +241833,AA Batteries (4-pack),1,3.84,08/31/19 21:23,"552 Sunset St, San Francisco, CA 94016" +241834,Google Phone,1,600,08/13/19 13:17,"158 Meadow St, Austin, TX 73301" +241834,Wired Headphones,1,11.99,08/13/19 13:17,"158 Meadow St, Austin, TX 73301" +241835,Bose SoundSport Headphones,1,99.99,08/04/19 20:20,"731 11th St, New York City, NY 10001" +241836,Google Phone,1,600,08/18/19 22:37,"720 Forest St, San Francisco, CA 94016" +241837,AAA Batteries (4-pack),3,2.99,08/20/19 07:56,"796 6th St, Boston, MA 02215" +241838,Apple Airpods Headphones,1,150,08/08/19 13:22,"524 Willow St, Boston, MA 02215" +241839,Bose SoundSport Headphones,1,99.99,08/11/19 09:21,"388 7th St, New York City, NY 10001" +241840,Apple Airpods Headphones,1,150,08/18/19 18:22,"64 Hickory St, Atlanta, GA 30301" +241841,AA Batteries (4-pack),1,3.84,08/26/19 14:43,"500 Jefferson St, San Francisco, CA 94016" +241842,27in FHD Monitor,1,149.99,08/21/19 20:47,"460 12th St, San Francisco, CA 94016" +241843,ThinkPad Laptop,1,999.99,08/03/19 18:57,"144 Lakeview St, Los Angeles, CA 90001" +241844,Wired Headphones,1,11.99,08/06/19 08:50,"945 Dogwood St, San Francisco, CA 94016" +241845,USB-C Charging Cable,1,11.95,08/12/19 19:18,"242 West St, Portland, OR 97035" +241846,USB-C Charging Cable,1,11.95,08/21/19 00:18,"971 Chestnut St, San Francisco, CA 94016" +241847,Lightning Charging Cable,1,14.95,08/11/19 11:26,"29 Jackson St, Los Angeles, CA 90001" +,,,,, +241848,Apple Airpods Headphones,1,150,08/06/19 19:43,"695 West St, Dallas, TX 75001" +241849,Apple Airpods Headphones,1,150,08/14/19 15:41,"429 Jackson St, Austin, TX 73301" +241850,Apple Airpods Headphones,1,150,08/10/19 11:02,"341 Hill St, San Francisco, CA 94016" +241851,AAA Batteries (4-pack),1,2.99,08/07/19 20:48,"973 Willow St, Boston, MA 02215" +241852,AAA Batteries (4-pack),1,2.99,08/24/19 15:06,"528 Hickory St, Dallas, TX 75001" +241853,20in Monitor,1,109.99,08/10/19 16:28,"196 Spruce St, Dallas, TX 75001" +241854,27in FHD Monitor,1,149.99,08/18/19 13:18,"456 Center St, Austin, TX 73301" +241855,27in 4K Gaming Monitor,1,389.99,08/31/19 19:11,"462 Church St, New York City, NY 10001" +241856,Lightning Charging Cable,1,14.95,08/14/19 00:09,"948 River St, Boston, MA 02215" +241857,iPhone,1,700,08/03/19 19:29,"168 River St, San Francisco, CA 94016" +241858,USB-C Charging Cable,1,11.95,08/13/19 12:01,"933 Sunset St, Portland, OR 97035" +241859,Apple Airpods Headphones,1,150,08/04/19 19:52,"981 11th St, Atlanta, GA 30301" +241860,AA Batteries (4-pack),1,3.84,08/24/19 01:14,"410 Willow St, San Francisco, CA 94016" +241861,Macbook Pro Laptop,1,1700,08/07/19 15:33,"793 Pine St, San Francisco, CA 94016" +241862,Lightning Charging Cable,1,14.95,08/16/19 11:08,"119 Highland St, Austin, TX 73301" +241863,Apple Airpods Headphones,1,150,08/25/19 20:32,"300 Hickory St, Seattle, WA 98101" +241864,27in 4K Gaming Monitor,1,389.99,08/18/19 19:53,"994 5th St, Seattle, WA 98101" +241865,Macbook Pro Laptop,1,1700,08/25/19 13:01,"307 Lakeview St, Boston, MA 02215" +241866,AA Batteries (4-pack),1,3.84,08/04/19 09:27,"78 Dogwood St, Boston, MA 02215" +241867,Macbook Pro Laptop,1,1700,08/30/19 12:14,"768 Maple St, Dallas, TX 75001" +241868,AA Batteries (4-pack),1,3.84,08/10/19 17:47,"775 14th St, Los Angeles, CA 90001" +241869,20in Monitor,1,109.99,08/06/19 19:05,"674 Spruce St, New York City, NY 10001" +241870,27in 4K Gaming Monitor,1,389.99,08/02/19 20:15,"376 Maple St, San Francisco, CA 94016" +241871,Lightning Charging Cable,1,14.95,08/15/19 20:47,"40 4th St, Dallas, TX 75001" +241872,Lightning Charging Cable,1,14.95,08/31/19 15:00,"565 Highland St, Dallas, TX 75001" +241873,Wired Headphones,1,11.99,08/03/19 23:05,"227 Jackson St, Boston, MA 02215" +241874,Google Phone,1,600,08/12/19 16:48,"653 Hickory St, Atlanta, GA 30301" +241874,Bose SoundSport Headphones,1,99.99,08/12/19 16:48,"653 Hickory St, Atlanta, GA 30301" +241875,AA Batteries (4-pack),1,3.84,08/10/19 06:17,"452 Washington St, New York City, NY 10001" +241876,Bose SoundSport Headphones,1,99.99,08/18/19 18:46,"537 South St, New York City, NY 10001" +241877,AAA Batteries (4-pack),2,2.99,08/05/19 06:43,"314 Ridge St, Dallas, TX 75001" +241878,Bose SoundSport Headphones,1,99.99,08/30/19 21:17,"343 Lake St, Atlanta, GA 30301" +241879,AAA Batteries (4-pack),1,2.99,08/01/19 21:21,"64 Dogwood St, San Francisco, CA 94016" +241880,AAA Batteries (4-pack),3,2.99,08/28/19 16:58,"122 Willow St, Portland, OR 97035" +241881,ThinkPad Laptop,1,999.99,08/22/19 16:46,"375 Adams St, New York City, NY 10001" +241882,27in 4K Gaming Monitor,1,389.99,08/18/19 12:26,"544 Main St, San Francisco, CA 94016" +241883,34in Ultrawide Monitor,1,379.99,08/16/19 17:11,"682 Dogwood St, Atlanta, GA 30301" +241884,iPhone,1,700,08/11/19 08:29,"624 Adams St, San Francisco, CA 94016" +241885,Wired Headphones,1,11.99,08/20/19 23:34,"607 River St, Dallas, TX 75001" +241885,Lightning Charging Cable,1,14.95,08/20/19 23:34,"607 River St, Dallas, TX 75001" +241886,AA Batteries (4-pack),1,3.84,08/04/19 19:21,"613 River St, San Francisco, CA 94016" +241887,Lightning Charging Cable,2,14.95,08/08/19 14:41,"274 5th St, Seattle, WA 98101" +241888,27in FHD Monitor,1,149.99,08/01/19 13:15,"987 North St, San Francisco, CA 94016" +241889,Apple Airpods Headphones,1,150,08/22/19 17:09,"537 Center St, New York City, NY 10001" +241890,USB-C Charging Cable,1,11.95,08/27/19 20:49,"939 1st St, Boston, MA 02215" +241891,27in 4K Gaming Monitor,1,389.99,08/02/19 10:39,"655 10th St, San Francisco, CA 94016" +241892,USB-C Charging Cable,1,11.95,08/04/19 10:53,"813 West St, Atlanta, GA 30301" +241893,Bose SoundSport Headphones,1,99.99,08/26/19 22:35,"919 1st St, San Francisco, CA 94016" +241894,20in Monitor,1,109.99,08/14/19 18:42,"592 Walnut St, San Francisco, CA 94016" +241895,AAA Batteries (4-pack),2,2.99,08/01/19 11:43,"347 Maple St, New York City, NY 10001" +241896,20in Monitor,1,109.99,08/08/19 11:16,"691 7th St, Los Angeles, CA 90001" +241897,AAA Batteries (4-pack),1,2.99,08/19/19 21:35,"670 10th St, Portland, OR 97035" +241898,Apple Airpods Headphones,1,150,08/26/19 11:43,"579 12th St, Boston, MA 02215" +241899,Lightning Charging Cable,1,14.95,08/29/19 19:48,"180 Maple St, Atlanta, GA 30301" +241900,USB-C Charging Cable,1,11.95,08/08/19 10:35,"323 Dogwood St, Dallas, TX 75001" +241901,Wired Headphones,1,11.99,08/02/19 19:21,"620 Adams St, San Francisco, CA 94016" +241902,ThinkPad Laptop,1,999.99,08/28/19 19:21,"819 North St, Austin, TX 73301" +241903,USB-C Charging Cable,1,11.95,08/24/19 16:32,"866 Hickory St, San Francisco, CA 94016" +241904,Bose SoundSport Headphones,1,99.99,08/01/19 11:15,"928 4th St, Atlanta, GA 30301" +241905,27in FHD Monitor,1,149.99,08/19/19 19:37,"552 Ridge St, Atlanta, GA 30301" +241906,AA Batteries (4-pack),3,3.84,08/16/19 15:54,"855 2nd St, Atlanta, GA 30301" +241907,Bose SoundSport Headphones,1,99.99,08/01/19 21:36,"546 2nd St, San Francisco, CA 94016" +241908,AAA Batteries (4-pack),1,2.99,08/18/19 20:29,"838 Adams St, Boston, MA 02215" +241909,Google Phone,1,600,08/23/19 18:04,"534 Hill St, Los Angeles, CA 90001" +241910,Wired Headphones,1,11.99,08/17/19 20:38,"665 Chestnut St, San Francisco, CA 94016" +241911,27in FHD Monitor,1,149.99,08/17/19 11:29,"818 Main St, Portland, OR 97035" +241912,AAA Batteries (4-pack),2,2.99,08/30/19 02:24,"910 Church St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +241913,AAA Batteries (4-pack),1,2.99,08/10/19 20:47,"81 5th St, San Francisco, CA 94016" +241914,Apple Airpods Headphones,1,150,08/08/19 18:23,"738 Wilson St, Boston, MA 02215" +241915,34in Ultrawide Monitor,1,379.99,08/10/19 11:40,"335 Park St, San Francisco, CA 94016" +241916,USB-C Charging Cable,1,11.95,08/04/19 19:54,"831 6th St, San Francisco, CA 94016" +241917,34in Ultrawide Monitor,1,379.99,08/18/19 16:36,"293 North St, Atlanta, GA 30301" +241918,AAA Batteries (4-pack),2,2.99,08/04/19 12:17,"503 Jefferson St, New York City, NY 10001" +241919,AA Batteries (4-pack),1,3.84,08/07/19 18:13,"802 Jackson St, Los Angeles, CA 90001" +241920,Apple Airpods Headphones,1,150,08/30/19 15:34,"638 West St, San Francisco, CA 94016" +241921,AAA Batteries (4-pack),1,2.99,08/06/19 13:59,"544 South St, Los Angeles, CA 90001" +241922,27in 4K Gaming Monitor,1,389.99,08/15/19 19:15,"57 14th St, Austin, TX 73301" +241923,27in FHD Monitor,1,149.99,08/24/19 16:37,"700 Jackson St, Dallas, TX 75001" +241924,iPhone,1,700,08/22/19 19:15,"776 Hickory St, San Francisco, CA 94016" +241924,Lightning Charging Cable,1,14.95,08/22/19 19:15,"776 Hickory St, San Francisco, CA 94016" +241925,LG Dryer,1,600.0,08/24/19 18:05,"407 1st St, Atlanta, GA 30301" +241926,Apple Airpods Headphones,1,150,08/12/19 22:42,"343 West St, San Francisco, CA 94016" +241927,Bose SoundSport Headphones,1,99.99,08/22/19 20:10,"161 Adams St, Boston, MA 02215" +241928,Lightning Charging Cable,1,14.95,08/25/19 14:51,"85 Hill St, Atlanta, GA 30301" +241929,AA Batteries (4-pack),1,3.84,08/29/19 16:29,"910 Church St, Los Angeles, CA 90001" +241930,USB-C Charging Cable,1,11.95,08/28/19 19:50,"193 6th St, Los Angeles, CA 90001" +241930,20in Monitor,1,109.99,08/28/19 19:50,"193 6th St, Los Angeles, CA 90001" +241931,AAA Batteries (4-pack),4,2.99,08/22/19 20:25,"379 1st St, Portland, OR 97035" +241932,Wired Headphones,1,11.99,08/29/19 22:04,"713 Dogwood St, San Francisco, CA 94016" +241933,AAA Batteries (4-pack),4,2.99,08/08/19 16:51,"963 Maple St, Dallas, TX 75001" +241934,AA Batteries (4-pack),4,3.84,08/09/19 02:59,"153 Main St, New York City, NY 10001" +241935,Macbook Pro Laptop,1,1700,08/24/19 17:38,"254 Park St, Seattle, WA 98101" +241936,AA Batteries (4-pack),1,3.84,08/19/19 17:37,"121 14th St, Atlanta, GA 30301" +241937,AAA Batteries (4-pack),2,2.99,08/01/19 17:48,"595 Walnut St, Atlanta, GA 30301" +241938,AAA Batteries (4-pack),1,2.99,08/21/19 21:41,"152 Spruce St, Boston, MA 02215" +241939,Lightning Charging Cable,2,14.95,08/06/19 12:29,"809 Spruce St, San Francisco, CA 94016" +241940,Apple Airpods Headphones,1,150,08/12/19 16:12,"834 Hickory St, Los Angeles, CA 90001" +241941,AA Batteries (4-pack),2,3.84,08/06/19 15:16,"599 Elm St, Boston, MA 02215" +241942,AA Batteries (4-pack),3,3.84,08/18/19 13:55,"873 12th St, San Francisco, CA 94016" +241943,Macbook Pro Laptop,1,1700,08/07/19 09:50,"302 1st St, New York City, NY 10001" +241944,USB-C Charging Cable,1,11.95,08/05/19 12:24,"802 Walnut St, Los Angeles, CA 90001" +241945,Lightning Charging Cable,1,14.95,08/29/19 15:57,"533 2nd St, Dallas, TX 75001" +241946,Lightning Charging Cable,1,14.95,08/27/19 16:00,"528 Center St, Austin, TX 73301" +241947,AA Batteries (4-pack),2,3.84,08/23/19 18:47,"16 Center St, San Francisco, CA 94016" +241948,Google Phone,1,600,08/17/19 07:17,"12 Cherry St, San Francisco, CA 94016" +241949,Wired Headphones,1,11.99,08/25/19 17:55,"585 Adams St, San Francisco, CA 94016" +241950,AA Batteries (4-pack),1,3.84,08/10/19 15:00,"702 10th St, San Francisco, CA 94016" +241951,Apple Airpods Headphones,1,150,08/08/19 20:30,"836 2nd St, Los Angeles, CA 90001" +241952,27in FHD Monitor,1,149.99,08/29/19 10:20,"66 14th St, Seattle, WA 98101" +241953,Flatscreen TV,1,300,08/09/19 09:15,"358 South St, San Francisco, CA 94016" +241954,20in Monitor,1,109.99,08/17/19 14:26,"632 Johnson St, Dallas, TX 75001" +241955,Macbook Pro Laptop,1,1700,08/27/19 13:56,"117 2nd St, San Francisco, CA 94016" +241956,20in Monitor,1,109.99,08/18/19 17:20,"602 Hickory St, Boston, MA 02215" +241957,Wired Headphones,1,11.99,08/31/19 16:37,"888 Jackson St, Boston, MA 02215" +241958,27in FHD Monitor,1,149.99,08/20/19 12:24,"494 10th St, San Francisco, CA 94016" +241959,AA Batteries (4-pack),1,3.84,08/26/19 10:55,"500 Willow St, New York City, NY 10001" +241960,USB-C Charging Cable,1,11.95,08/05/19 21:21,"722 Maple St, Portland, OR 97035" +241961,AA Batteries (4-pack),2,3.84,08/13/19 12:52,"888 Ridge St, Los Angeles, CA 90001" +241962,AA Batteries (4-pack),1,3.84,08/19/19 17:42,"806 West St, Los Angeles, CA 90001" +241963,Apple Airpods Headphones,1,150,08/23/19 14:56,"204 Wilson St, Seattle, WA 98101" +241964,Flatscreen TV,1,300,08/12/19 09:19,"610 Chestnut St, Dallas, TX 75001" +241965,AAA Batteries (4-pack),1,2.99,08/27/19 18:12,"375 Pine St, Dallas, TX 75001" +241966,AAA Batteries (4-pack),3,2.99,08/12/19 22:59,"570 11th St, New York City, NY 10001" +241967,USB-C Charging Cable,1,11.95,08/11/19 20:14,"516 Church St, Seattle, WA 98101" +241968,USB-C Charging Cable,1,11.95,08/18/19 14:04,"605 Main St, Atlanta, GA 30301" +241969,AA Batteries (4-pack),1,3.84,08/30/19 13:59,"53 Cherry St, Los Angeles, CA 90001" +241970,AA Batteries (4-pack),1,3.84,08/24/19 20:10,"298 7th St, Boston, MA 02215" +241971,Lightning Charging Cable,1,14.95,08/22/19 12:36,"420 Walnut St, Boston, MA 02215" +241972,Google Phone,1,600,08/27/19 12:26,"152 North St, Seattle, WA 98101" +241972,Wired Headphones,1,11.99,08/27/19 12:26,"152 North St, Seattle, WA 98101" +241973,Lightning Charging Cable,1,14.95,08/19/19 16:28,"722 South St, San Francisco, CA 94016" +241974,Lightning Charging Cable,1,14.95,08/02/19 20:52,"981 10th St, San Francisco, CA 94016" +241975,Apple Airpods Headphones,1,150,08/03/19 08:31,"219 Madison St, New York City, NY 10001" +241976,Macbook Pro Laptop,1,1700,08/18/19 18:23,"188 West St, New York City, NY 10001" +241977,AA Batteries (4-pack),2,3.84,08/24/19 15:05,"449 Lake St, Portland, OR 97035" +241978,AAA Batteries (4-pack),2,2.99,08/14/19 02:24,"464 13th St, Los Angeles, CA 90001" +241979,AA Batteries (4-pack),3,3.84,08/14/19 22:04,"276 Adams St, Boston, MA 02215" +241980,Wired Headphones,1,11.99,08/15/19 19:14,"906 North St, Austin, TX 73301" +241981,Lightning Charging Cable,1,14.95,08/31/19 19:27,"582 11th St, Los Angeles, CA 90001" +241982,Lightning Charging Cable,1,14.95,08/25/19 18:04,"42 Lincoln St, Dallas, TX 75001" +241983,AAA Batteries (4-pack),1,2.99,08/04/19 10:36,"640 14th St, Seattle, WA 98101" +241984,AAA Batteries (4-pack),1,2.99,08/13/19 11:15,"70 Forest St, Seattle, WA 98101" +241985,ThinkPad Laptop,1,999.99,08/14/19 13:12,"76 Lakeview St, Austin, TX 73301" +241986,Bose SoundSport Headphones,1,99.99,08/05/19 17:20,"914 Adams St, Boston, MA 02215" +241987,27in FHD Monitor,1,149.99,08/17/19 12:12,"941 13th St, Boston, MA 02215" +241988,AAA Batteries (4-pack),1,2.99,08/07/19 21:34,"8 Lake St, Boston, MA 02215" +241989,Wired Headphones,1,11.99,08/12/19 17:47,"243 12th St, Los Angeles, CA 90001" +241990,USB-C Charging Cable,2,11.95,08/26/19 10:12,"456 Forest St, New York City, NY 10001" +241991,USB-C Charging Cable,1,11.95,08/19/19 18:55,"349 Jefferson St, San Francisco, CA 94016" +241992,Google Phone,1,600,08/26/19 15:29,"690 West St, San Francisco, CA 94016" +241992,USB-C Charging Cable,1,11.95,08/26/19 15:29,"690 West St, San Francisco, CA 94016" +241993,USB-C Charging Cable,1,11.95,08/11/19 15:21,"207 Spruce St, Portland, OR 97035" +241994,AAA Batteries (4-pack),1,2.99,08/07/19 18:45,"561 Chestnut St, Portland, OR 97035" +241995,Macbook Pro Laptop,1,1700,08/11/19 11:40,"384 Spruce St, Portland, OR 97035" +241996,AA Batteries (4-pack),1,3.84,08/25/19 01:41,"240 Church St, Boston, MA 02215" +241996,Lightning Charging Cable,1,14.95,08/25/19 01:41,"240 Church St, Boston, MA 02215" +241997,Wired Headphones,1,11.99,08/20/19 20:23,"597 Dogwood St, Los Angeles, CA 90001" +241998,Wired Headphones,1,11.99,08/06/19 14:38,"35 Madison St, Los Angeles, CA 90001" +241999,Apple Airpods Headphones,1,150,08/28/19 07:26,"355 Willow St, New York City, NY 10001" +242000,20in Monitor,1,109.99,08/03/19 06:47,"612 Jefferson St, Seattle, WA 98101" +242001,34in Ultrawide Monitor,1,379.99,08/03/19 10:55,"608 Washington St, Austin, TX 73301" +242002,34in Ultrawide Monitor,1,379.99,08/12/19 13:13,"778 2nd St, Austin, TX 73301" +242003,AAA Batteries (4-pack),1,2.99,08/02/19 21:03,"396 9th St, Los Angeles, CA 90001" +242004,USB-C Charging Cable,1,11.95,08/31/19 22:02,"500 14th St, San Francisco, CA 94016" +242005,AA Batteries (4-pack),1,3.84,08/21/19 14:55,"601 1st St, Boston, MA 02215" +242006,ThinkPad Laptop,1,999.99,08/02/19 12:23,"969 Wilson St, San Francisco, CA 94016" +242007,Bose SoundSport Headphones,1,99.99,08/31/19 21:24,"781 1st St, San Francisco, CA 94016" +242008,Google Phone,1,600,08/21/19 13:18,"240 13th St, San Francisco, CA 94016" +242009,Bose SoundSport Headphones,1,99.99,08/05/19 13:59,"439 2nd St, San Francisco, CA 94016" +242010,ThinkPad Laptop,1,999.99,08/10/19 12:44,"878 6th St, Seattle, WA 98101" +242011,Bose SoundSport Headphones,1,99.99,08/25/19 09:58,"106 Jefferson St, San Francisco, CA 94016" +242012,AAA Batteries (4-pack),2,2.99,08/22/19 08:17,"118 South St, Los Angeles, CA 90001" +242013,27in FHD Monitor,1,149.99,08/13/19 11:20,"588 Highland St, Los Angeles, CA 90001" +242014,Wired Headphones,1,11.99,08/09/19 10:10,"473 Meadow St, Dallas, TX 75001" +242014,AA Batteries (4-pack),2,3.84,08/09/19 10:10,"473 Meadow St, Dallas, TX 75001" +242015,Wired Headphones,1,11.99,08/14/19 12:53,"975 Pine St, Seattle, WA 98101" +242016,Apple Airpods Headphones,1,150,08/22/19 21:03,"64 Elm St, Boston, MA 02215" +242017,USB-C Charging Cable,1,11.95,08/17/19 14:47,"680 14th St, New York City, NY 10001" +242018,AA Batteries (4-pack),1,3.84,08/29/19 12:15,"289 Center St, New York City, NY 10001" +242019,27in 4K Gaming Monitor,1,389.99,08/27/19 13:54,"919 7th St, San Francisco, CA 94016" +242020,27in FHD Monitor,1,149.99,08/03/19 08:20,"272 Sunset St, Dallas, TX 75001" +242021,AA Batteries (4-pack),1,3.84,08/31/19 17:04,"255 Pine St, San Francisco, CA 94016" +242022,AAA Batteries (4-pack),3,2.99,08/17/19 21:04,"698 Main St, San Francisco, CA 94016" +242023,20in Monitor,1,109.99,08/12/19 12:09,"636 North St, New York City, NY 10001" +242024,AA Batteries (4-pack),1,3.84,08/25/19 22:18,"665 4th St, Atlanta, GA 30301" +242025,Bose SoundSport Headphones,1,99.99,08/15/19 08:32,"57 Lakeview St, New York City, NY 10001" +242026,AA Batteries (4-pack),1,3.84,08/05/19 17:51,"219 Ridge St, Los Angeles, CA 90001" +242026,Google Phone,1,600,08/05/19 17:51,"219 Ridge St, Los Angeles, CA 90001" +242027,USB-C Charging Cable,1,11.95,08/26/19 09:51,"769 Jackson St, Atlanta, GA 30301" +242028,AAA Batteries (4-pack),1,2.99,08/27/19 07:30,"162 Lake St, San Francisco, CA 94016" +242029,Bose SoundSport Headphones,1,99.99,08/30/19 11:54,"613 5th St, Atlanta, GA 30301" +242030,Vareebadd Phone,1,400,08/14/19 18:20,"361 Lincoln St, San Francisco, CA 94016" +242031,Macbook Pro Laptop,1,1700,08/29/19 19:49,"994 Highland St, Portland, OR 97035" +242032,Flatscreen TV,1,300,08/19/19 18:40,"340 Dogwood St, Los Angeles, CA 90001" +242033,AA Batteries (4-pack),1,3.84,08/10/19 14:07,"107 Hill St, Los Angeles, CA 90001" +242034,USB-C Charging Cable,1,11.95,08/31/19 13:50,"336 South St, Atlanta, GA 30301" +242035,Lightning Charging Cable,1,14.95,08/21/19 03:49,"525 2nd St, New York City, NY 10001" +242036,Lightning Charging Cable,1,14.95,08/18/19 20:24,"516 Elm St, San Francisco, CA 94016" +242037,Lightning Charging Cable,1,14.95,08/09/19 21:08,"922 Jefferson St, Seattle, WA 98101" +242038,AAA Batteries (4-pack),1,2.99,08/09/19 05:56,"112 Cedar St, San Francisco, CA 94016" +242039,27in FHD Monitor,1,149.99,08/17/19 17:05,"218 West St, Portland, OR 97035" +242040,Bose SoundSport Headphones,1,99.99,08/10/19 09:45,"232 Spruce St, Boston, MA 02215" +242040,ThinkPad Laptop,1,999.99,08/10/19 09:45,"232 Spruce St, Boston, MA 02215" +242041,AA Batteries (4-pack),1,3.84,08/10/19 11:11,"723 Sunset St, New York City, NY 10001" +242042,iPhone,1,700,08/19/19 17:44,"876 1st St, San Francisco, CA 94016" +242043,Apple Airpods Headphones,1,150,08/11/19 13:26,"262 Sunset St, Atlanta, GA 30301" +242044,AAA Batteries (4-pack),2,2.99,08/11/19 23:06,"961 6th St, Los Angeles, CA 90001" +242045,Lightning Charging Cable,1,14.95,08/25/19 19:38,"227 Elm St, Portland, OR 97035" +242046,27in FHD Monitor,2,149.99,08/17/19 13:38,"714 1st St, Boston, MA 02215" +242047,ThinkPad Laptop,1,999.99,08/26/19 11:37,"867 14th St, San Francisco, CA 94016" +242048,AA Batteries (4-pack),1,3.84,08/11/19 20:47,"310 8th St, Boston, MA 02215" +242049,Macbook Pro Laptop,1,1700,08/17/19 13:31,"612 14th St, Austin, TX 73301" +242050,AA Batteries (4-pack),1,3.84,08/31/19 22:21,"154 Main St, Dallas, TX 75001" +242051,27in 4K Gaming Monitor,1,389.99,08/29/19 16:38,"505 10th St, San Francisco, CA 94016" +242052,Bose SoundSport Headphones,1,99.99,08/17/19 16:18,"976 Pine St, San Francisco, CA 94016" +242053,AAA Batteries (4-pack),3,2.99,09/01/19 01:24,"442 Hickory St, Portland, OR 97035" +242054,Apple Airpods Headphones,1,150,08/26/19 11:28,"163 10th St, San Francisco, CA 94016" +242055,Lightning Charging Cable,1,14.95,08/05/19 23:20,"798 Walnut St, New York City, NY 10001" +242056,27in 4K Gaming Monitor,1,389.99,08/22/19 11:55,"20 Washington St, Boston, MA 02215" +242057,27in 4K Gaming Monitor,1,389.99,08/24/19 16:23,"736 Main St, Los Angeles, CA 90001" +242058,iPhone,1,700,08/04/19 13:08,"677 Washington St, New York City, NY 10001" +242058,Apple Airpods Headphones,1,150,08/04/19 13:08,"677 Washington St, New York City, NY 10001" +242059,AAA Batteries (4-pack),1,2.99,08/23/19 16:33,"450 Hill St, New York City, NY 10001" +242060,AA Batteries (4-pack),1,3.84,08/27/19 18:09,"100 Meadow St, Portland, OR 97035" +242061,iPhone,1,700,08/28/19 21:41,"855 13th St, Atlanta, GA 30301" +242062,AAA Batteries (4-pack),6,2.99,08/22/19 16:49,"998 Cherry St, San Francisco, CA 94016" +242063,AAA Batteries (4-pack),2,2.99,08/30/19 15:51,"650 8th St, San Francisco, CA 94016" +242064,Apple Airpods Headphones,1,150,08/23/19 14:00,"402 Forest St, San Francisco, CA 94016" +242065,Macbook Pro Laptop,1,1700,08/11/19 09:22,"40 Dogwood St, Atlanta, GA 30301" +242066,AAA Batteries (4-pack),1,2.99,08/26/19 22:31,"860 Lincoln St, Dallas, TX 75001" +242067,USB-C Charging Cable,1,11.95,08/13/19 08:23,"612 Sunset St, Boston, MA 02215" +242068,Lightning Charging Cable,1,14.95,08/11/19 11:07,"786 Washington St, Seattle, WA 98101" +242069,iPhone,1,700,08/29/19 14:26,"121 Washington St, Atlanta, GA 30301" +242070,AA Batteries (4-pack),2,3.84,08/14/19 20:30,"689 Main St, New York City, NY 10001" +242071,Wired Headphones,1,11.99,08/02/19 15:23,"165 Lakeview St, Boston, MA 02215" +242072,AAA Batteries (4-pack),1,2.99,08/31/19 10:04,"769 West St, Boston, MA 02215" +242073,Lightning Charging Cable,1,14.95,08/17/19 12:47,"460 Church St, Atlanta, GA 30301" +242074,27in FHD Monitor,1,149.99,08/08/19 14:57,"140 Forest St, Atlanta, GA 30301" +242075,USB-C Charging Cable,1,11.95,08/02/19 10:20,"679 Maple St, Dallas, TX 75001" +242076,27in 4K Gaming Monitor,1,389.99,08/26/19 01:48,"293 Church St, Los Angeles, CA 90001" +242077,Apple Airpods Headphones,1,150,08/02/19 18:15,"857 West St, San Francisco, CA 94016" +242078,AAA Batteries (4-pack),2,2.99,08/17/19 10:15,"782 2nd St, Portland, OR 97035" +242079,Flatscreen TV,1,300,08/21/19 21:35,"813 6th St, Seattle, WA 98101" +242080,27in 4K Gaming Monitor,1,389.99,08/12/19 11:33,"394 2nd St, Los Angeles, CA 90001" +242081,AAA Batteries (4-pack),1,2.99,08/08/19 15:31,"492 9th St, San Francisco, CA 94016" +242082,Lightning Charging Cable,1,14.95,08/23/19 15:46,"340 Park St, Boston, MA 02215" +242083,USB-C Charging Cable,1,11.95,08/03/19 20:01,"787 Willow St, Los Angeles, CA 90001" +242084,27in FHD Monitor,1,149.99,08/15/19 15:49,"116 Jefferson St, San Francisco, CA 94016" +242085,AAA Batteries (4-pack),1,2.99,08/28/19 11:19,"223 Meadow St, San Francisco, CA 94016" +242086,Bose SoundSport Headphones,1,99.99,08/31/19 22:24,"76 Lake St, Austin, TX 73301" +242087,Macbook Pro Laptop,1,1700,08/10/19 10:21,"573 7th St, Los Angeles, CA 90001" +242088,Wired Headphones,1,11.99,08/16/19 19:06,"893 5th St, San Francisco, CA 94016" +242089,Wired Headphones,1,11.99,08/01/19 23:19,"11 North St, San Francisco, CA 94016" +242090,Wired Headphones,1,11.99,08/28/19 12:23,"408 West St, Los Angeles, CA 90001" +242091,USB-C Charging Cable,1,11.95,08/12/19 13:36,"181 11th St, Boston, MA 02215" +242092,Lightning Charging Cable,1,14.95,08/07/19 13:18,"474 4th St, Boston, MA 02215" +242093,Bose SoundSport Headphones,1,99.99,08/24/19 12:38,"829 Cherry St, Los Angeles, CA 90001" +242094,Bose SoundSport Headphones,2,99.99,08/25/19 09:33,"602 Lincoln St, Dallas, TX 75001" +242095,USB-C Charging Cable,1,11.95,08/23/19 07:02,"876 Lincoln St, Los Angeles, CA 90001" +242096,34in Ultrawide Monitor,1,379.99,08/19/19 17:47,"358 13th St, Atlanta, GA 30301" +242097,Wired Headphones,1,11.99,08/14/19 14:14,"463 Park St, Atlanta, GA 30301" +242098,USB-C Charging Cable,1,11.95,08/24/19 09:10,"47 Elm St, Dallas, TX 75001" +242099,USB-C Charging Cable,1,11.95,08/06/19 11:21,"532 South St, Los Angeles, CA 90001" +242100,USB-C Charging Cable,1,11.95,08/26/19 20:53,"905 8th St, Seattle, WA 98101" +242101,Flatscreen TV,1,300,08/30/19 13:11,"195 Wilson St, San Francisco, CA 94016" +242102,AA Batteries (4-pack),1,3.84,08/28/19 21:14,"797 7th St, New York City, NY 10001" +242103,AAA Batteries (4-pack),1,2.99,08/03/19 10:56,"631 Spruce St, Los Angeles, CA 90001" +242104,ThinkPad Laptop,1,999.99,08/18/19 16:34,"743 Jackson St, San Francisco, CA 94016" +242105,Bose SoundSport Headphones,1,99.99,08/03/19 17:17,"837 Chestnut St, Portland, OR 97035" +242106,Flatscreen TV,1,300,08/30/19 09:56,"669 1st St, Austin, TX 73301" +242107,AAA Batteries (4-pack),1,2.99,08/26/19 15:58,"79 Forest St, Seattle, WA 98101" +242108,iPhone,1,700,08/23/19 21:28,"134 Lakeview St, Atlanta, GA 30301" +242109,Lightning Charging Cable,1,14.95,08/12/19 11:57,"12 Center St, San Francisco, CA 94016" +242110,LG Washing Machine,1,600.0,08/11/19 12:47,"715 Cherry St, San Francisco, CA 94016" +242111,Wired Headphones,1,11.99,08/09/19 14:04,"823 2nd St, San Francisco, CA 94016" +242112,Apple Airpods Headphones,1,150,08/29/19 20:10,"991 4th St, Portland, OR 97035" +242113,Bose SoundSport Headphones,1,99.99,08/30/19 20:18,"1 Cedar St, Dallas, TX 75001" +242114,AA Batteries (4-pack),1,3.84,08/26/19 19:35,"722 9th St, Los Angeles, CA 90001" +242115,Bose SoundSport Headphones,1,99.99,08/13/19 21:59,"801 Church St, Los Angeles, CA 90001" +242116,Apple Airpods Headphones,1,150,08/17/19 16:22,"7 Sunset St, Los Angeles, CA 90001" +242117,USB-C Charging Cable,1,11.95,08/12/19 01:37,"699 Hill St, Los Angeles, CA 90001" +242118,27in 4K Gaming Monitor,1,389.99,08/14/19 19:31,"445 Lincoln St, Dallas, TX 75001" +242119,AA Batteries (4-pack),1,3.84,08/23/19 00:22,"755 Adams St, San Francisco, CA 94016" +242120,Lightning Charging Cable,1,14.95,08/15/19 11:11,"548 11th St, San Francisco, CA 94016" +242121,USB-C Charging Cable,1,11.95,08/05/19 00:09,"694 Spruce St, New York City, NY 10001" +242122,AAA Batteries (4-pack),1,2.99,08/24/19 10:57,"66 10th St, Atlanta, GA 30301" +242123,AA Batteries (4-pack),1,3.84,08/22/19 12:47,"59 Johnson St, Atlanta, GA 30301" +242123,Apple Airpods Headphones,1,150,08/22/19 12:47,"59 Johnson St, Atlanta, GA 30301" +242124,Bose SoundSport Headphones,1,99.99,08/02/19 20:16,"616 Jefferson St, New York City, NY 10001" +242125,Wired Headphones,1,11.99,08/27/19 17:03,"601 4th St, Atlanta, GA 30301" +242126,USB-C Charging Cable,1,11.95,08/18/19 23:49,"106 Pine St, Portland, ME 04101" +242127,Lightning Charging Cable,1,14.95,08/04/19 09:19,"939 Meadow St, New York City, NY 10001" +242128,ThinkPad Laptop,1,999.99,08/10/19 11:29,"510 8th St, Boston, MA 02215" +242129,Wired Headphones,1,11.99,08/06/19 22:55,"103 Hill St, Atlanta, GA 30301" +242130,34in Ultrawide Monitor,1,379.99,08/05/19 22:22,"232 Washington St, Atlanta, GA 30301" +242131,AAA Batteries (4-pack),1,2.99,08/07/19 12:59,"824 Jefferson St, San Francisco, CA 94016" +242132,Flatscreen TV,1,300,08/07/19 00:00,"963 Madison St, Austin, TX 73301" +242133,AAA Batteries (4-pack),5,2.99,08/21/19 14:34,"138 9th St, Boston, MA 02215" +242134,Bose SoundSport Headphones,1,99.99,08/03/19 17:27,"661 Adams St, Atlanta, GA 30301" +242135,AA Batteries (4-pack),2,3.84,08/24/19 14:21,"391 5th St, Seattle, WA 98101" +242136,Google Phone,1,600,08/12/19 00:03,"322 Maple St, Boston, MA 02215" +242137,Apple Airpods Headphones,1,150,08/27/19 17:09,"165 Church St, Atlanta, GA 30301" +242138,USB-C Charging Cable,1,11.95,08/23/19 17:36,"960 Walnut St, San Francisco, CA 94016" +242139,AAA Batteries (4-pack),1,2.99,08/24/19 19:30,"89 Sunset St, Boston, MA 02215" +242140,27in FHD Monitor,1,149.99,08/12/19 09:22,"613 Walnut St, Dallas, TX 75001" +242141,Bose SoundSport Headphones,1,99.99,08/16/19 12:24,"830 12th St, Boston, MA 02215" +242142,iPhone,1,700,08/01/19 10:09,"789 Madison St, San Francisco, CA 94016" +242142,Lightning Charging Cable,1,14.95,08/01/19 10:09,"789 Madison St, San Francisco, CA 94016" +242143,AA Batteries (4-pack),1,3.84,08/03/19 12:10,"388 Wilson St, Portland, ME 04101" +242144,AA Batteries (4-pack),1,3.84,08/02/19 18:15,"697 Lakeview St, Seattle, WA 98101" +242145,iPhone,1,700,08/24/19 23:29,"804 7th St, New York City, NY 10001" +242145,Wired Headphones,1,11.99,08/24/19 23:29,"804 7th St, New York City, NY 10001" +242146,AAA Batteries (4-pack),1,2.99,08/30/19 11:34,"441 10th St, Atlanta, GA 30301" +242147,Wired Headphones,1,11.99,08/13/19 12:55,"742 Meadow St, San Francisco, CA 94016" +242148,AA Batteries (4-pack),1,3.84,08/15/19 13:17,"922 Church St, Austin, TX 73301" +242149,Flatscreen TV,1,300,08/03/19 14:27,"7 14th St, Seattle, WA 98101" +242150,20in Monitor,1,109.99,08/22/19 15:12,"965 Jackson St, San Francisco, CA 94016" +242151,Macbook Pro Laptop,1,1700,08/04/19 07:21,"221 Walnut St, Los Angeles, CA 90001" +242152,Apple Airpods Headphones,1,150,08/22/19 20:41,"853 13th St, San Francisco, CA 94016" +242153,Lightning Charging Cable,1,14.95,08/02/19 18:16,"603 Sunset St, Los Angeles, CA 90001" +242154,USB-C Charging Cable,1,11.95,08/25/19 20:03,"919 Meadow St, Los Angeles, CA 90001" +242155,27in 4K Gaming Monitor,1,389.99,08/17/19 18:29,"989 12th St, New York City, NY 10001" +242156,20in Monitor,1,109.99,08/08/19 08:46,"811 River St, San Francisco, CA 94016" +242157,ThinkPad Laptop,1,999.99,08/08/19 17:39,"35 10th St, Seattle, WA 98101" +242158,USB-C Charging Cable,1,11.95,08/12/19 08:37,"509 Chestnut St, San Francisco, CA 94016" +242159,Lightning Charging Cable,1,14.95,08/31/19 21:08,"386 River St, San Francisco, CA 94016" +242160,Lightning Charging Cable,1,14.95,08/11/19 13:34,"249 Elm St, San Francisco, CA 94016" +242161,Lightning Charging Cable,1,14.95,08/16/19 21:50,"592 Lincoln St, Los Angeles, CA 90001" +242162,Apple Airpods Headphones,1,150,08/21/19 08:59,"993 Forest St, Los Angeles, CA 90001" +242163,Apple Airpods Headphones,1,150,08/19/19 16:49,"680 Willow St, San Francisco, CA 94016" +242164,Google Phone,1,600,08/10/19 13:10,"122 7th St, San Francisco, CA 94016" +242164,Bose SoundSport Headphones,1,99.99,08/10/19 13:10,"122 7th St, San Francisco, CA 94016" +242165,Apple Airpods Headphones,1,150,08/30/19 18:53,"197 River St, San Francisco, CA 94016" +242166,AAA Batteries (4-pack),3,2.99,08/22/19 20:50,"167 Elm St, Seattle, WA 98101" +242167,Lightning Charging Cable,1,14.95,08/08/19 16:52,"320 Center St, New York City, NY 10001" +242168,USB-C Charging Cable,1,11.95,08/01/19 13:06,"670 Lake St, Seattle, WA 98101" +242169,AA Batteries (4-pack),1,3.84,08/12/19 09:14,"395 4th St, Seattle, WA 98101" +242170,Flatscreen TV,1,300,08/08/19 13:18,"574 4th St, San Francisco, CA 94016" +242171,USB-C Charging Cable,1,11.95,08/16/19 18:47,"955 Cherry St, Austin, TX 73301" +242172,Bose SoundSport Headphones,1,99.99,08/03/19 20:14,"113 Hill St, Portland, OR 97035" +242173,USB-C Charging Cable,1,11.95,08/15/19 17:44,"677 South St, Portland, OR 97035" +242174,Flatscreen TV,1,300,08/26/19 10:59,"929 Jefferson St, Los Angeles, CA 90001" +242175,Wired Headphones,1,11.99,08/01/19 12:05,"535 Lake St, New York City, NY 10001" +242176,AA Batteries (4-pack),1,3.84,08/19/19 20:39,"958 Church St, Atlanta, GA 30301" +242177,USB-C Charging Cable,1,11.95,08/27/19 15:15,"710 Hickory St, Atlanta, GA 30301" +242178,AA Batteries (4-pack),1,3.84,08/30/19 19:30,"519 Cherry St, Austin, TX 73301" +242179,Bose SoundSport Headphones,1,99.99,08/28/19 20:04,"858 Park St, Los Angeles, CA 90001" +242180,Wired Headphones,1,11.99,08/29/19 19:21,"599 Main St, Los Angeles, CA 90001" +242181,Lightning Charging Cable,1,14.95,08/27/19 18:10,"316 South St, New York City, NY 10001" +242182,34in Ultrawide Monitor,1,379.99,08/23/19 14:30,"422 Pine St, Los Angeles, CA 90001" +242183,34in Ultrawide Monitor,1,379.99,08/23/19 19:15,"611 1st St, Dallas, TX 75001" +242184,Lightning Charging Cable,1,14.95,08/27/19 01:33,"784 Dogwood St, Los Angeles, CA 90001" +242185,USB-C Charging Cable,1,11.95,08/15/19 11:07,"433 Lincoln St, Dallas, TX 75001" +242186,AA Batteries (4-pack),1,3.84,08/09/19 05:11,"747 River St, Los Angeles, CA 90001" +242187,34in Ultrawide Monitor,1,379.99,08/10/19 18:32,"67 7th St, San Francisco, CA 94016" +242187,Apple Airpods Headphones,1,150,08/10/19 18:32,"67 7th St, San Francisco, CA 94016" +242188,Wired Headphones,1,11.99,08/14/19 22:56,"630 Hill St, San Francisco, CA 94016" +242189,AAA Batteries (4-pack),2,2.99,08/17/19 00:51,"652 Lincoln St, San Francisco, CA 94016" +242190,AAA Batteries (4-pack),2,2.99,08/09/19 18:59,"759 8th St, San Francisco, CA 94016" +242191,AA Batteries (4-pack),1,3.84,08/29/19 21:18,"669 1st St, Dallas, TX 75001" +242192,AA Batteries (4-pack),3,3.84,08/31/19 23:52,"118 8th St, Boston, MA 02215" +242193,Wired Headphones,1,11.99,08/16/19 12:55,"605 Church St, Seattle, WA 98101" +242194,Apple Airpods Headphones,1,150,08/30/19 08:06,"293 Jackson St, Dallas, TX 75001" +242195,Wired Headphones,1,11.99,08/01/19 18:51,"693 Ridge St, Austin, TX 73301" +242195,27in FHD Monitor,1,149.99,08/01/19 18:51,"693 Ridge St, Austin, TX 73301" +242196,Lightning Charging Cable,1,14.95,08/18/19 19:52,"276 9th St, Austin, TX 73301" +242197,Bose SoundSport Headphones,1,99.99,08/14/19 09:50,"850 South St, Dallas, TX 75001" +242198,Wired Headphones,1,11.99,08/06/19 20:32,"21 Wilson St, Los Angeles, CA 90001" +242199,Lightning Charging Cable,1,14.95,08/22/19 15:01,"123 4th St, Boston, MA 02215" +242200,34in Ultrawide Monitor,1,379.99,08/17/19 12:00,"580 14th St, Seattle, WA 98101" +242201,Lightning Charging Cable,1,14.95,08/07/19 11:52,"478 Jefferson St, San Francisco, CA 94016" +242202,Apple Airpods Headphones,1,150,08/21/19 21:19,"891 Jefferson St, Seattle, WA 98101" +242203,USB-C Charging Cable,1,11.95,08/27/19 23:24,"4 Main St, San Francisco, CA 94016" +242204,USB-C Charging Cable,1,11.95,08/24/19 12:05,"687 4th St, Boston, MA 02215" +242205,Apple Airpods Headphones,1,150,08/12/19 10:27,"496 Wilson St, San Francisco, CA 94016" +242206,USB-C Charging Cable,1,11.95,08/26/19 22:24,"582 Lake St, San Francisco, CA 94016" +242207,Apple Airpods Headphones,1,150,08/10/19 13:27,"690 Park St, San Francisco, CA 94016" +242208,Vareebadd Phone,1,400,08/18/19 19:17,"719 Walnut St, San Francisco, CA 94016" +242209,Wired Headphones,1,11.99,08/09/19 04:06,"875 Elm St, Boston, MA 02215" +242210,AAA Batteries (4-pack),1,2.99,08/30/19 09:44,"921 Hill St, Boston, MA 02215" +242211,Bose SoundSport Headphones,1,99.99,08/13/19 20:42,"129 Hickory St, New York City, NY 10001" +242212,AA Batteries (4-pack),2,3.84,08/06/19 21:41,"909 Jefferson St, Los Angeles, CA 90001" +242213,Macbook Pro Laptop,1,1700,08/11/19 10:42,"86 1st St, Portland, ME 04101" +242214,34in Ultrawide Monitor,1,379.99,08/31/19 21:36,"984 Park St, New York City, NY 10001" +242215,AA Batteries (4-pack),3,3.84,08/10/19 12:16,"904 West St, New York City, NY 10001" +242216,27in FHD Monitor,1,149.99,08/01/19 14:57,"262 Spruce St, Boston, MA 02215" +242217,Lightning Charging Cable,1,14.95,08/25/19 17:42,"90 4th St, Los Angeles, CA 90001" +242218,Lightning Charging Cable,1,14.95,08/11/19 13:08,"155 Lake St, New York City, NY 10001" +242219,USB-C Charging Cable,1,11.95,08/14/19 18:41,"374 Spruce St, Atlanta, GA 30301" +242220,AA Batteries (4-pack),1,3.84,08/16/19 15:00,"239 Pine St, Dallas, TX 75001" +242221,Flatscreen TV,1,300,08/04/19 11:38,"974 Cedar St, Seattle, WA 98101" +242222,USB-C Charging Cable,1,11.95,08/08/19 17:11,"758 Adams St, Dallas, TX 75001" +242223,20in Monitor,1,109.99,08/23/19 17:12,"247 10th St, Dallas, TX 75001" +242224,USB-C Charging Cable,2,11.95,08/26/19 20:51,"999 West St, Seattle, WA 98101" +242225,Apple Airpods Headphones,1,150,08/15/19 11:31,"840 Willow St, Seattle, WA 98101" +242226,Bose SoundSport Headphones,1,99.99,08/17/19 21:58,"768 West St, Los Angeles, CA 90001" +242227,AAA Batteries (4-pack),1,2.99,08/14/19 22:17,"699 8th St, Boston, MA 02215" +242228,AAA Batteries (4-pack),1,2.99,08/30/19 17:11,"837 14th St, Los Angeles, CA 90001" +242229,Apple Airpods Headphones,1,150,08/20/19 18:42,"17 Dogwood St, San Francisco, CA 94016" +242230,Wired Headphones,1,11.99,08/28/19 12:49,"60 North St, Atlanta, GA 30301" +242231,Apple Airpods Headphones,1,150,08/26/19 14:44,"249 Dogwood St, Atlanta, GA 30301" +242232,USB-C Charging Cable,1,11.95,08/31/19 00:08,"475 Adams St, Boston, MA 02215" +242233,USB-C Charging Cable,2,11.95,08/24/19 18:29,"108 Lincoln St, Portland, OR 97035" +242234,Bose SoundSport Headphones,1,99.99,08/21/19 09:18,"933 Church St, San Francisco, CA 94016" +242235,USB-C Charging Cable,1,11.95,08/20/19 12:05,"660 Cherry St, Dallas, TX 75001" +242236,Apple Airpods Headphones,1,150,08/18/19 06:54,"6 11th St, Portland, OR 97035" +242237,27in FHD Monitor,1,149.99,08/21/19 14:17,"628 Ridge St, New York City, NY 10001" +242238,AAA Batteries (4-pack),1,2.99,08/12/19 02:19,"66 Jefferson St, San Francisco, CA 94016" +242239,AA Batteries (4-pack),1,3.84,08/01/19 14:27,"277 11th St, San Francisco, CA 94016" +242240,Flatscreen TV,1,300,08/27/19 22:20,"57 Hickory St, Los Angeles, CA 90001" +242241,USB-C Charging Cable,1,11.95,08/04/19 18:00,"994 Lake St, Portland, OR 97035" +242242,27in FHD Monitor,1,149.99,08/27/19 18:45,"807 4th St, Seattle, WA 98101" +242243,AAA Batteries (4-pack),1,2.99,08/25/19 13:25,"714 Chestnut St, Atlanta, GA 30301" +242244,Bose SoundSport Headphones,1,99.99,08/29/19 15:46,"202 Chestnut St, New York City, NY 10001" +242245,Wired Headphones,1,11.99,08/20/19 19:38,"762 West St, Seattle, WA 98101" +242246,ThinkPad Laptop,1,999.99,08/12/19 19:34,"873 12th St, Seattle, WA 98101" +242247,34in Ultrawide Monitor,1,379.99,08/13/19 14:48,"293 Ridge St, San Francisco, CA 94016" +242248,Wired Headphones,1,11.99,08/20/19 15:09,"229 Adams St, Boston, MA 02215" +242249,AAA Batteries (4-pack),1,2.99,08/23/19 15:02,"20 Main St, Atlanta, GA 30301" +242250,20in Monitor,1,109.99,08/20/19 19:14,"363 Sunset St, Los Angeles, CA 90001" +242251,ThinkPad Laptop,1,999.99,08/30/19 16:07,"470 9th St, New York City, NY 10001" +242252,Wired Headphones,1,11.99,08/31/19 01:59,"278 2nd St, New York City, NY 10001" +242253,AAA Batteries (4-pack),3,2.99,08/06/19 11:26,"963 Forest St, San Francisco, CA 94016" +242254,iPhone,1,700,08/22/19 21:00,"293 Maple St, San Francisco, CA 94016" +242255,AA Batteries (4-pack),1,3.84,08/15/19 08:49,"207 North St, Los Angeles, CA 90001" +242256,AA Batteries (4-pack),1,3.84,08/18/19 19:31,"113 Chestnut St, New York City, NY 10001" +242257,34in Ultrawide Monitor,1,379.99,08/15/19 14:20,"875 12th St, Boston, MA 02215" +242258,20in Monitor,1,109.99,08/30/19 11:36,"525 Pine St, Atlanta, GA 30301" +242259,USB-C Charging Cable,1,11.95,08/19/19 17:33,"650 5th St, Atlanta, GA 30301" +242260,AAA Batteries (4-pack),1,2.99,08/22/19 08:54,"781 6th St, Los Angeles, CA 90001" +242261,ThinkPad Laptop,1,999.99,08/28/19 21:19,"365 4th St, Dallas, TX 75001" +242262,34in Ultrawide Monitor,1,379.99,08/30/19 20:25,"288 Meadow St, Los Angeles, CA 90001" +242263,Lightning Charging Cable,1,14.95,08/06/19 13:19,"504 2nd St, Atlanta, GA 30301" +242264,34in Ultrawide Monitor,1,379.99,08/07/19 19:18,"294 8th St, San Francisco, CA 94016" +242265,27in FHD Monitor,1,149.99,08/13/19 15:21,"597 Church St, San Francisco, CA 94016" +242266,Bose SoundSport Headphones,1,99.99,08/09/19 09:10,"481 6th St, Atlanta, GA 30301" +242267,Lightning Charging Cable,1,14.95,08/30/19 21:07,"576 Maple St, Los Angeles, CA 90001" +242268,Apple Airpods Headphones,1,150,08/09/19 22:50,"443 7th St, Atlanta, GA 30301" +242269,Lightning Charging Cable,1,14.95,08/18/19 16:02,"920 Highland St, San Francisco, CA 94016" +242270,USB-C Charging Cable,1,11.95,08/23/19 21:02,"512 Hill St, San Francisco, CA 94016" +242271,Wired Headphones,1,11.99,08/21/19 20:39,"562 Meadow St, New York City, NY 10001" +242272,Apple Airpods Headphones,1,150,08/26/19 13:25,"416 Main St, Seattle, WA 98101" +242273,Bose SoundSport Headphones,1,99.99,08/08/19 11:41,"726 Lakeview St, San Francisco, CA 94016" +242274,Lightning Charging Cable,1,14.95,08/01/19 15:38,"586 1st St, San Francisco, CA 94016" +242275,USB-C Charging Cable,1,11.95,08/30/19 11:25,"953 8th St, Los Angeles, CA 90001" +242276,Wired Headphones,1,11.99,08/26/19 20:34,"773 Forest St, Atlanta, GA 30301" +242277,AAA Batteries (4-pack),2,2.99,08/27/19 10:52,"920 River St, Los Angeles, CA 90001" +242278,Macbook Pro Laptop,1,1700,08/28/19 02:59,"281 Willow St, Los Angeles, CA 90001" +242279,iPhone,1,700,08/21/19 08:11,"796 Johnson St, San Francisco, CA 94016" +242279,Lightning Charging Cable,1,14.95,08/21/19 08:11,"796 Johnson St, San Francisco, CA 94016" +242280,USB-C Charging Cable,1,11.95,08/05/19 13:58,"252 Elm St, Los Angeles, CA 90001" +242281,Bose SoundSport Headphones,1,99.99,08/26/19 21:26,"325 Johnson St, Austin, TX 73301" +242282,Lightning Charging Cable,1,14.95,08/26/19 20:21,"625 10th St, Boston, MA 02215" +242283,Lightning Charging Cable,1,14.95,08/30/19 22:13,"533 Forest St, Portland, OR 97035" +242284,AAA Batteries (4-pack),2,2.99,08/11/19 15:15,"154 Cedar St, Los Angeles, CA 90001" +242284,Lightning Charging Cable,1,14.95,08/11/19 15:15,"154 Cedar St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +242285,Bose SoundSport Headphones,1,99.99,08/03/19 20:33,"163 Willow St, Austin, TX 73301" +242286,USB-C Charging Cable,1,11.95,08/23/19 06:58,"434 Madison St, Dallas, TX 75001" +242287,AAA Batteries (4-pack),1,2.99,08/02/19 12:45,"591 Cherry St, Portland, OR 97035" +242288,Bose SoundSport Headphones,1,99.99,08/10/19 02:06,"375 Chestnut St, New York City, NY 10001" +242289,USB-C Charging Cable,1,11.95,08/05/19 11:26,"204 Highland St, Austin, TX 73301" +242290,AA Batteries (4-pack),1,3.84,08/15/19 18:45,"83 Center St, Los Angeles, CA 90001" +242291,Apple Airpods Headphones,1,150,08/10/19 16:32,"403 Willow St, San Francisco, CA 94016" +242292,AAA Batteries (4-pack),1,2.99,08/08/19 20:43,"275 Elm St, Boston, MA 02215" +242293,Bose SoundSport Headphones,1,99.99,08/05/19 20:15,"635 River St, Atlanta, GA 30301" +242294,iPhone,1,700,08/03/19 20:56,"240 River St, Los Angeles, CA 90001" +242294,Lightning Charging Cable,1,14.95,08/03/19 20:56,"240 River St, Los Angeles, CA 90001" +242294,Wired Headphones,1,11.99,08/03/19 20:56,"240 River St, Los Angeles, CA 90001" +242295,Apple Airpods Headphones,1,150,08/26/19 09:57,"490 10th St, Atlanta, GA 30301" +242296,Lightning Charging Cable,1,14.95,08/23/19 18:03,"230 11th St, Boston, MA 02215" +242297,Wired Headphones,2,11.99,08/09/19 08:26,"850 Lake St, Los Angeles, CA 90001" +242298,Wired Headphones,1,11.99,08/25/19 11:29,"270 Jefferson St, San Francisco, CA 94016" +242299,AAA Batteries (4-pack),1,2.99,08/30/19 17:49,"516 Main St, Los Angeles, CA 90001" +242300,Google Phone,1,600,08/25/19 12:01,"79 Wilson St, New York City, NY 10001" +242301,USB-C Charging Cable,1,11.95,08/15/19 17:42,"733 2nd St, San Francisco, CA 94016" +242302,Apple Airpods Headphones,1,150,08/01/19 22:05,"478 6th St, San Francisco, CA 94016" +242303,AAA Batteries (4-pack),2,2.99,08/03/19 09:47,"31 7th St, Atlanta, GA 30301" +242304,Bose SoundSport Headphones,1,99.99,08/11/19 14:43,"127 10th St, San Francisco, CA 94016" +242305,Apple Airpods Headphones,1,150,08/27/19 20:48,"440 Spruce St, New York City, NY 10001" +242306,AAA Batteries (4-pack),1,2.99,08/26/19 07:38,"922 Maple St, Dallas, TX 75001" +242307,Apple Airpods Headphones,1,150,08/03/19 22:29,"284 6th St, Dallas, TX 75001" +242308,AA Batteries (4-pack),5,3.84,08/31/19 17:09,"405 Chestnut St, Boston, MA 02215" +242309,AAA Batteries (4-pack),1,2.99,08/28/19 00:51,"680 Johnson St, Seattle, WA 98101" +242310,ThinkPad Laptop,1,999.99,08/29/19 22:59,"365 2nd St, Los Angeles, CA 90001" +242311,20in Monitor,1,109.99,08/01/19 18:06,"34 West St, New York City, NY 10001" +242312,AAA Batteries (4-pack),1,2.99,08/02/19 20:47,"916 Park St, San Francisco, CA 94016" +242313,iPhone,1,700,08/26/19 16:54,"188 Johnson St, San Francisco, CA 94016" +242313,Lightning Charging Cable,1,14.95,08/26/19 16:54,"188 Johnson St, San Francisco, CA 94016" +242314,AA Batteries (4-pack),1,3.84,08/05/19 13:46,"589 Pine St, New York City, NY 10001" +242315,Google Phone,1,600,08/15/19 09:30,"285 Church St, San Francisco, CA 94016" +242316,Apple Airpods Headphones,1,150,08/22/19 08:24,"665 Church St, Atlanta, GA 30301" +242317,AAA Batteries (4-pack),1,2.99,08/27/19 21:47,"999 Pine St, Boston, MA 02215" +242318,Lightning Charging Cable,1,14.95,08/07/19 11:40,"514 14th St, Los Angeles, CA 90001" +242319,Lightning Charging Cable,1,14.95,08/29/19 10:58,"477 Johnson St, San Francisco, CA 94016" +242320,Wired Headphones,1,11.99,08/04/19 15:00,"339 Wilson St, New York City, NY 10001" +242321,AA Batteries (4-pack),1,3.84,08/25/19 19:01,"389 Hickory St, San Francisco, CA 94016" +242322,27in FHD Monitor,1,149.99,08/22/19 13:00,"767 12th St, Boston, MA 02215" +242323,Bose SoundSport Headphones,1,99.99,08/11/19 17:55,"154 North St, Seattle, WA 98101" +242324,Apple Airpods Headphones,1,150,08/25/19 19:36,"437 Lake St, New York City, NY 10001" +242325,AA Batteries (4-pack),1,3.84,08/21/19 14:51,"4 Lakeview St, San Francisco, CA 94016" +242326,Bose SoundSport Headphones,1,99.99,08/22/19 18:37,"464 Dogwood St, Los Angeles, CA 90001" +242327,Apple Airpods Headphones,1,150,08/14/19 11:11,"201 9th St, Boston, MA 02215" +242328,AA Batteries (4-pack),2,3.84,08/09/19 12:30,"97 Park St, San Francisco, CA 94016" +242329,27in 4K Gaming Monitor,1,389.99,08/06/19 16:17,"22 Cedar St, Atlanta, GA 30301" +242330,AAA Batteries (4-pack),1,2.99,08/26/19 21:37,"936 Walnut St, Seattle, WA 98101" +242331,Wired Headphones,1,11.99,08/21/19 12:16,"950 Lincoln St, Los Angeles, CA 90001" +242332,Wired Headphones,1,11.99,08/20/19 12:15,"511 Washington St, Los Angeles, CA 90001" +242333,Bose SoundSport Headphones,1,99.99,08/03/19 08:34,"270 14th St, Austin, TX 73301" +242334,Lightning Charging Cable,1,14.95,08/01/19 13:28,"710 Park St, Atlanta, GA 30301" +242335,Wired Headphones,1,11.99,08/28/19 17:37,"606 Washington St, Seattle, WA 98101" +242336,Google Phone,1,600,08/22/19 16:03,"45 Jefferson St, Seattle, WA 98101" +242337,AAA Batteries (4-pack),1,2.99,08/12/19 22:15,"397 Cedar St, San Francisco, CA 94016" +242338,iPhone,1,700,08/30/19 14:13,"520 Lincoln St, Boston, MA 02215" +242339,Wired Headphones,1,11.99,08/14/19 11:39,"875 Sunset St, Atlanta, GA 30301" +242340,Apple Airpods Headphones,1,150,08/27/19 21:52,"247 12th St, New York City, NY 10001" +242341,Apple Airpods Headphones,1,150,08/17/19 16:28,"378 Maple St, Atlanta, GA 30301" +242342,AAA Batteries (4-pack),1,2.99,08/30/19 08:56,"292 1st St, Los Angeles, CA 90001" +242343,AAA Batteries (4-pack),3,2.99,08/21/19 15:32,"524 1st St, Boston, MA 02215" +242344,Apple Airpods Headphones,1,150,08/27/19 15:48,"894 Madison St, San Francisco, CA 94016" +242345,Google Phone,1,600,08/09/19 19:06,"224 Forest St, Los Angeles, CA 90001" +242346,AAA Batteries (4-pack),1,2.99,08/18/19 19:20,"467 Wilson St, New York City, NY 10001" +242347,Wired Headphones,1,11.99,08/09/19 13:54,"121 Park St, Los Angeles, CA 90001" +242348,27in FHD Monitor,2,149.99,08/01/19 17:57,"870 5th St, Los Angeles, CA 90001" +242349,USB-C Charging Cable,1,11.95,08/31/19 23:05,"206 Jefferson St, San Francisco, CA 94016" +242350,AAA Batteries (4-pack),1,2.99,08/09/19 21:22,"726 Lincoln St, New York City, NY 10001" +242351,27in 4K Gaming Monitor,1,389.99,08/22/19 12:28,"443 Walnut St, Boston, MA 02215" +242352,Lightning Charging Cable,1,14.95,08/19/19 12:07,"748 Washington St, Los Angeles, CA 90001" +242353,USB-C Charging Cable,1,11.95,08/06/19 15:20,"902 Lake St, Portland, OR 97035" +242354,Apple Airpods Headphones,1,150,08/18/19 09:43,"564 Meadow St, Atlanta, GA 30301" +242355,34in Ultrawide Monitor,1,379.99,08/01/19 15:09,"987 13th St, Los Angeles, CA 90001" +242356,USB-C Charging Cable,1,11.95,08/09/19 13:36,"976 Madison St, San Francisco, CA 94016" +242357,Wired Headphones,1,11.99,08/11/19 19:22,"520 12th St, New York City, NY 10001" +242358,AAA Batteries (4-pack),1,2.99,08/31/19 10:44,"359 Hill St, Portland, OR 97035" +242359,Lightning Charging Cable,1,14.95,08/14/19 18:53,"337 Adams St, Austin, TX 73301" +242360,iPhone,1,700,08/24/19 13:29,"745 Pine St, Portland, OR 97035" +242361,USB-C Charging Cable,1,11.95,08/29/19 16:13,"837 6th St, Dallas, TX 75001" +242362,Google Phone,1,600,08/20/19 09:31,"753 Church St, New York City, NY 10001" +242363,Wired Headphones,1,11.99,08/06/19 10:37,"641 Adams St, Seattle, WA 98101" +242364,Lightning Charging Cable,1,14.95,08/06/19 20:48,"114 Walnut St, Atlanta, GA 30301" +242365,Apple Airpods Headphones,1,150,08/05/19 12:10,"986 13th St, Dallas, TX 75001" +242366,USB-C Charging Cable,1,11.95,08/31/19 11:35,"988 12th St, Atlanta, GA 30301" +242367,iPhone,1,700,08/19/19 12:33,"501 West St, Austin, TX 73301" +242368,Vareebadd Phone,1,400,08/20/19 22:54,"482 Main St, Los Angeles, CA 90001" +242369,USB-C Charging Cable,1,11.95,08/03/19 10:15,"674 Forest St, Atlanta, GA 30301" +242370,Wired Headphones,1,11.99,08/23/19 17:24,"495 Washington St, New York City, NY 10001" +242371,Flatscreen TV,1,300,08/22/19 19:21,"37 Washington St, Atlanta, GA 30301" +242372,AA Batteries (4-pack),1,3.84,08/23/19 18:28,"801 12th St, San Francisco, CA 94016" +242373,Apple Airpods Headphones,1,150,08/26/19 19:29,"234 Hickory St, Austin, TX 73301" +242374,Wired Headphones,1,11.99,08/28/19 21:53,"942 5th St, Boston, MA 02215" +242375,AAA Batteries (4-pack),1,2.99,08/11/19 08:20,"588 North St, Dallas, TX 75001" +242376,27in FHD Monitor,1,149.99,08/30/19 13:55,"705 Wilson St, New York City, NY 10001" +242377,Macbook Pro Laptop,1,1700,08/02/19 23:03,"217 Sunset St, Boston, MA 02215" +242378,Flatscreen TV,1,300,08/28/19 16:57,"297 Pine St, Los Angeles, CA 90001" +242379,Google Phone,1,600,08/08/19 11:43,"359 Wilson St, Atlanta, GA 30301" +242380,Macbook Pro Laptop,1,1700,08/26/19 15:31,"793 14th St, New York City, NY 10001" +242381,AAA Batteries (4-pack),1,2.99,08/28/19 16:17,"845 West St, Austin, TX 73301" +242382,34in Ultrawide Monitor,1,379.99,08/01/19 23:56,"265 Maple St, Seattle, WA 98101" +242383,AA Batteries (4-pack),1,3.84,08/09/19 18:13,"911 Washington St, Dallas, TX 75001" +242384,Lightning Charging Cable,1,14.95,08/11/19 19:25,"248 Hickory St, San Francisco, CA 94016" +242385,Lightning Charging Cable,1,14.95,08/12/19 18:10,"328 Spruce St, Portland, OR 97035" +242386,AAA Batteries (4-pack),2,2.99,08/31/19 17:55,"244 Highland St, San Francisco, CA 94016" +242387,Google Phone,1,600,08/30/19 07:35,"69 North St, New York City, NY 10001" +242388,Wired Headphones,1,11.99,08/03/19 22:24,"522 Walnut St, San Francisco, CA 94016" +242389,ThinkPad Laptop,1,999.99,08/08/19 17:26,"632 Ridge St, San Francisco, CA 94016" +242390,AA Batteries (4-pack),1,3.84,08/17/19 06:58,"887 Park St, Atlanta, GA 30301" +242391,AAA Batteries (4-pack),1,2.99,08/12/19 18:55,"826 Pine St, New York City, NY 10001" +242392,ThinkPad Laptop,1,999.99,08/05/19 13:21,"984 Pine St, Los Angeles, CA 90001" +242393,AA Batteries (4-pack),1,3.84,08/19/19 21:33,"935 Hill St, Atlanta, GA 30301" +242394,Wired Headphones,1,11.99,08/24/19 11:00,"465 Church St, San Francisco, CA 94016" +242395,Apple Airpods Headphones,1,150,08/12/19 23:01,"368 Adams St, Boston, MA 02215" +242396,Wired Headphones,1,11.99,08/08/19 19:54,"819 Elm St, Atlanta, GA 30301" +242397,Bose SoundSport Headphones,1,99.99,08/01/19 21:16,"413 12th St, Los Angeles, CA 90001" +242398,Flatscreen TV,1,300,08/31/19 15:45,"882 North St, San Francisco, CA 94016" +242399,20in Monitor,1,109.99,08/13/19 23:19,"266 Lincoln St, Seattle, WA 98101" +242400,Wired Headphones,1,11.99,08/10/19 20:29,"259 Center St, Seattle, WA 98101" +242401,iPhone,1,700,08/29/19 14:54,"66 Cedar St, New York City, NY 10001" +242402,Lightning Charging Cable,1,14.95,08/25/19 11:29,"246 River St, San Francisco, CA 94016" +242403,AAA Batteries (4-pack),1,2.99,08/01/19 10:29,"800 Forest St, Seattle, WA 98101" +242404,27in FHD Monitor,1,149.99,08/04/19 20:24,"628 Lakeview St, Atlanta, GA 30301" +242405,Bose SoundSport Headphones,1,99.99,08/12/19 16:17,"851 Church St, Seattle, WA 98101" +242406,Apple Airpods Headphones,1,150,08/12/19 22:35,"979 Chestnut St, Los Angeles, CA 90001" +242407,Google Phone,1,600,08/12/19 11:40,"587 South St, Boston, MA 02215" +242408,27in 4K Gaming Monitor,1,389.99,08/19/19 09:04,"993 5th St, Boston, MA 02215" +242409,Wired Headphones,1,11.99,08/01/19 12:15,"612 Hill St, New York City, NY 10001" +242410,AAA Batteries (4-pack),1,2.99,08/02/19 09:08,"296 West St, Boston, MA 02215" +242410,Lightning Charging Cable,1,14.95,08/02/19 09:08,"296 West St, Boston, MA 02215" +242411,27in 4K Gaming Monitor,1,389.99,08/18/19 17:46,"308 14th St, New York City, NY 10001" +242412,iPhone,1,700,08/26/19 14:15,"169 Washington St, Atlanta, GA 30301" +242413,ThinkPad Laptop,1,999.99,08/25/19 14:30,"226 4th St, Boston, MA 02215" +242414,AA Batteries (4-pack),1,3.84,08/20/19 13:02,"979 Lakeview St, San Francisco, CA 94016" +242415,AAA Batteries (4-pack),1,2.99,08/31/19 19:50,"810 River St, Boston, MA 02215" +242416,AAA Batteries (4-pack),1,2.99,08/28/19 05:39,"530 Lincoln St, Dallas, TX 75001" +242417,AA Batteries (4-pack),1,3.84,08/22/19 08:29,"480 Hickory St, San Francisco, CA 94016" +242418,Lightning Charging Cable,1,14.95,08/18/19 18:26,"164 Cedar St, Dallas, TX 75001" +242419,Apple Airpods Headphones,1,150,08/16/19 22:48,"971 Hickory St, Boston, MA 02215" +242420,27in FHD Monitor,1,149.99,08/23/19 20:34,"910 Meadow St, Dallas, TX 75001" +242421,Macbook Pro Laptop,1,1700,08/24/19 14:20,"57 Chestnut St, Los Angeles, CA 90001" +242422,AA Batteries (4-pack),1,3.84,08/22/19 00:53,"621 Jackson St, San Francisco, CA 94016" +242423,Lightning Charging Cable,1,14.95,08/16/19 11:28,"782 Church St, Austin, TX 73301" +242424,Google Phone,1,600,08/26/19 20:43,"314 6th St, San Francisco, CA 94016" +242425,iPhone,1,700,08/29/19 21:02,"255 Lakeview St, Boston, MA 02215" +242425,Wired Headphones,2,11.99,08/29/19 21:02,"255 Lakeview St, Boston, MA 02215" +242425,Wired Headphones,1,11.99,08/29/19 21:02,"255 Lakeview St, Boston, MA 02215" +242426,Lightning Charging Cable,1,14.95,08/02/19 21:22,"381 River St, Los Angeles, CA 90001" +242427,USB-C Charging Cable,1,11.95,08/22/19 12:01,"679 14th St, Seattle, WA 98101" +242428,AA Batteries (4-pack),1,3.84,08/12/19 18:04,"115 Chestnut St, Los Angeles, CA 90001" +242429,Lightning Charging Cable,1,14.95,08/10/19 00:46,"489 5th St, Boston, MA 02215" +242430,Lightning Charging Cable,2,14.95,08/12/19 19:45,"822 Forest St, Dallas, TX 75001" +242431,Lightning Charging Cable,1,14.95,08/08/19 18:17,"21 Hickory St, Boston, MA 02215" +242432,Lightning Charging Cable,1,14.95,08/05/19 20:03,"23 11th St, San Francisco, CA 94016" +242433,USB-C Charging Cable,1,11.95,08/23/19 18:24,"174 12th St, Boston, MA 02215" +242434,Bose SoundSport Headphones,1,99.99,08/08/19 21:33,"767 North St, Atlanta, GA 30301" +242435,Vareebadd Phone,1,400,08/21/19 15:41,"256 4th St, San Francisco, CA 94016" +242436,iPhone,1,700,08/26/19 20:20,"936 Elm St, Boston, MA 02215" +242436,Apple Airpods Headphones,1,150,08/26/19 20:20,"936 Elm St, Boston, MA 02215" +242437,Wired Headphones,1,11.99,08/05/19 17:59,"795 5th St, New York City, NY 10001" +242438,27in FHD Monitor,1,149.99,08/13/19 18:27,"596 8th St, New York City, NY 10001" +242439,Apple Airpods Headphones,1,150,08/28/19 12:58,"141 Chestnut St, Los Angeles, CA 90001" +242440,Flatscreen TV,1,300,08/11/19 11:54,"728 1st St, San Francisco, CA 94016" +242441,Bose SoundSport Headphones,1,99.99,08/22/19 09:59,"175 Cherry St, Dallas, TX 75001" +242442,AA Batteries (4-pack),1,3.84,08/18/19 11:37,"846 West St, San Francisco, CA 94016" +242443,AA Batteries (4-pack),1,3.84,08/26/19 13:11,"765 Sunset St, Boston, MA 02215" +242444,Lightning Charging Cable,1,14.95,08/19/19 10:45,"588 Lakeview St, Boston, MA 02215" +242445,AAA Batteries (4-pack),1,2.99,08/21/19 01:50,"136 Sunset St, Seattle, WA 98101" +242446,Lightning Charging Cable,1,14.95,08/05/19 21:12,"433 Spruce St, Atlanta, GA 30301" +242447,Apple Airpods Headphones,1,150,08/30/19 17:33,"43 14th St, Dallas, TX 75001" +242448,Flatscreen TV,1,300,08/20/19 12:25,"77 Dogwood St, San Francisco, CA 94016" +242449,USB-C Charging Cable,1,11.95,08/17/19 10:41,"448 Elm St, Portland, ME 04101" +242450,Macbook Pro Laptop,1,1700,08/13/19 10:25,"286 Elm St, Seattle, WA 98101" +242451,27in FHD Monitor,1,149.99,08/30/19 22:07,"746 Washington St, Seattle, WA 98101" +242452,Macbook Pro Laptop,1,1700,08/08/19 16:57,"82 12th St, New York City, NY 10001" +242453,Bose SoundSport Headphones,1,99.99,08/03/19 09:35,"168 Lincoln St, Portland, OR 97035" +242454,AAA Batteries (4-pack),1,2.99,08/06/19 13:16,"924 Lake St, New York City, NY 10001" +242455,ThinkPad Laptop,1,999.99,08/15/19 20:55,"767 Highland St, San Francisco, CA 94016" +242456,Lightning Charging Cable,1,14.95,08/08/19 08:37,"766 Maple St, Los Angeles, CA 90001" +242457,Apple Airpods Headphones,1,150,08/08/19 12:01,"191 Madison St, New York City, NY 10001" +242458,USB-C Charging Cable,1,11.95,08/13/19 20:58,"698 6th St, Los Angeles, CA 90001" +242459,ThinkPad Laptop,1,999.99,08/08/19 13:17,"31 1st St, Portland, OR 97035" +242460,Lightning Charging Cable,1,14.95,08/07/19 20:41,"675 Jefferson St, Atlanta, GA 30301" +242461,Apple Airpods Headphones,1,150,08/26/19 19:26,"976 North St, Boston, MA 02215" +242462,AA Batteries (4-pack),3,3.84,08/15/19 19:42,"234 8th St, Boston, MA 02215" +242462,Bose SoundSport Headphones,1,99.99,08/15/19 19:42,"234 8th St, Boston, MA 02215" +242463,AAA Batteries (4-pack),1,2.99,08/18/19 22:24,"566 5th St, San Francisco, CA 94016" +242464,34in Ultrawide Monitor,1,379.99,08/21/19 12:33,"238 Sunset St, Atlanta, GA 30301" +242465,27in FHD Monitor,1,149.99,08/03/19 21:23,"156 West St, San Francisco, CA 94016" +242466,AA Batteries (4-pack),1,3.84,08/17/19 13:57,"225 Hill St, Boston, MA 02215" +242467,Wired Headphones,1,11.99,08/17/19 20:33,"744 Cherry St, San Francisco, CA 94016" +242468,AA Batteries (4-pack),3,3.84,08/26/19 17:11,"501 Church St, San Francisco, CA 94016" +242469,USB-C Charging Cable,1,11.95,08/06/19 20:57,"93 Cherry St, Los Angeles, CA 90001" +242470,Bose SoundSport Headphones,1,99.99,08/10/19 22:07,"151 West St, Los Angeles, CA 90001" +242471,Apple Airpods Headphones,1,150,08/19/19 19:08,"237 Jefferson St, Los Angeles, CA 90001" +242472,Lightning Charging Cable,1,14.95,08/19/19 07:29,"299 1st St, San Francisco, CA 94016" +242473,Apple Airpods Headphones,1,150,08/03/19 07:14,"22 Pine St, San Francisco, CA 94016" +242474,34in Ultrawide Monitor,1,379.99,08/17/19 00:11,"467 4th St, New York City, NY 10001" +242475,USB-C Charging Cable,1,11.95,08/03/19 13:16,"42 Jackson St, Portland, OR 97035" +242476,AA Batteries (4-pack),1,3.84,08/05/19 12:32,"962 Dogwood St, Boston, MA 02215" +242477,Lightning Charging Cable,2,14.95,08/16/19 12:06,"380 Spruce St, Dallas, TX 75001" +242478,27in FHD Monitor,1,149.99,08/29/19 21:59,"477 2nd St, Seattle, WA 98101" +242479,Bose SoundSport Headphones,1,99.99,08/28/19 16:42,"262 Chestnut St, Los Angeles, CA 90001" +242480,Apple Airpods Headphones,1,150,08/11/19 22:26,"768 Johnson St, Dallas, TX 75001" +242481,Flatscreen TV,1,300,08/28/19 16:18,"537 Dogwood St, San Francisco, CA 94016" +242482,USB-C Charging Cable,3,11.95,08/20/19 15:19,"148 Main St, San Francisco, CA 94016" +242483,AA Batteries (4-pack),1,3.84,08/20/19 10:14,"594 Dogwood St, Atlanta, GA 30301" +242484,Lightning Charging Cable,1,14.95,08/01/19 20:56,"218 Center St, Seattle, WA 98101" +242485,27in FHD Monitor,1,149.99,08/24/19 03:12,"779 Cherry St, Boston, MA 02215" +242486,AAA Batteries (4-pack),3,2.99,08/18/19 14:57,"369 Church St, Portland, OR 97035" +242487,Wired Headphones,1,11.99,08/13/19 15:40,"437 Highland St, Los Angeles, CA 90001" +242488,Lightning Charging Cable,1,14.95,08/29/19 19:30,"823 North St, San Francisco, CA 94016" +242489,Google Phone,1,600,08/05/19 13:05,"718 Church St, San Francisco, CA 94016" +242490,Wired Headphones,1,11.99,08/15/19 11:08,"930 12th St, Atlanta, GA 30301" +242491,AA Batteries (4-pack),1,3.84,08/03/19 20:07,"971 Highland St, Seattle, WA 98101" +242492,27in FHD Monitor,1,149.99,08/15/19 12:26,"443 8th St, Dallas, TX 75001" +242493,ThinkPad Laptop,1,999.99,08/16/19 19:23,"361 Lake St, Los Angeles, CA 90001" +242494,AA Batteries (4-pack),1,3.84,08/10/19 12:48,"502 Spruce St, Austin, TX 73301" +242495,Wired Headphones,1,11.99,08/13/19 13:42,"639 6th St, Austin, TX 73301" +242496,AA Batteries (4-pack),2,3.84,08/09/19 17:40,"369 Meadow St, Los Angeles, CA 90001" +242497,Wired Headphones,1,11.99,08/09/19 03:26,"183 Jackson St, Boston, MA 02215" +242498,Google Phone,1,600,08/03/19 14:01,"742 Dogwood St, Atlanta, GA 30301" +242499,USB-C Charging Cable,1,11.95,08/21/19 23:15,"281 Hickory St, San Francisco, CA 94016" +242500,Apple Airpods Headphones,1,150,08/11/19 11:16,"726 Washington St, San Francisco, CA 94016" +242501,USB-C Charging Cable,1,11.95,08/27/19 17:52,"691 Johnson St, San Francisco, CA 94016" +242502,AAA Batteries (4-pack),1,2.99,08/09/19 16:19,"911 South St, San Francisco, CA 94016" +242503,34in Ultrawide Monitor,1,379.99,08/09/19 19:07,"814 Cherry St, Los Angeles, CA 90001" +242504,27in 4K Gaming Monitor,1,389.99,08/14/19 13:45,"753 Johnson St, Seattle, WA 98101" +242505,AA Batteries (4-pack),1,3.84,08/09/19 19:43,"509 Lakeview St, Los Angeles, CA 90001" +242506,Lightning Charging Cable,1,14.95,08/21/19 17:35,"779 Pine St, San Francisco, CA 94016" +242507,Lightning Charging Cable,1,14.95,08/03/19 23:15,"441 10th St, Seattle, WA 98101" +242508,Flatscreen TV,1,300,08/14/19 14:15,"713 Maple St, Dallas, TX 75001" +242509,Google Phone,1,600,08/03/19 11:25,"194 Washington St, Austin, TX 73301" +242510,34in Ultrawide Monitor,1,379.99,08/09/19 12:29,"893 Lake St, Los Angeles, CA 90001" +242511,Wired Headphones,1,11.99,08/24/19 05:40,"54 4th St, Seattle, WA 98101" +242512,USB-C Charging Cable,1,11.95,08/11/19 12:29,"459 Dogwood St, San Francisco, CA 94016" +242513,iPhone,1,700,08/02/19 10:14,"965 Lincoln St, Boston, MA 02215" +242513,Wired Headphones,1,11.99,08/02/19 10:14,"965 Lincoln St, Boston, MA 02215" +242514,Flatscreen TV,1,300,08/24/19 18:32,"725 Hickory St, Los Angeles, CA 90001" +242515,Apple Airpods Headphones,1,150,08/24/19 15:29,"734 5th St, Dallas, TX 75001" +242515,iPhone,1,700,08/24/19 15:29,"734 5th St, Dallas, TX 75001" +242516,34in Ultrawide Monitor,1,379.99,08/17/19 10:53,"429 Maple St, San Francisco, CA 94016" +242517,Google Phone,1,600,08/05/19 20:40,"152 Highland St, Portland, OR 97035" +242518,Bose SoundSport Headphones,1,99.99,08/17/19 15:04,"696 Church St, Boston, MA 02215" +242519,ThinkPad Laptop,1,999.99,08/01/19 19:03,"693 Church St, Portland, OR 97035" +242520,Apple Airpods Headphones,1,150,08/24/19 10:53,"777 Sunset St, New York City, NY 10001" +242521,USB-C Charging Cable,1,11.95,08/16/19 17:55,"332 Forest St, Austin, TX 73301" +242522,USB-C Charging Cable,1,11.95,08/25/19 17:47,"307 Dogwood St, Austin, TX 73301" +242523,USB-C Charging Cable,2,11.95,08/12/19 15:10,"654 4th St, Dallas, TX 75001" +242524,USB-C Charging Cable,1,11.95,08/08/19 21:28,"603 11th St, New York City, NY 10001" +242525,Wired Headphones,1,11.99,08/25/19 16:57,"290 Lincoln St, Austin, TX 73301" +242526,Google Phone,1,600,08/26/19 19:49,"540 Sunset St, Atlanta, GA 30301" +242527,Lightning Charging Cable,1,14.95,08/08/19 23:26,"929 Wilson St, San Francisco, CA 94016" +242528,Lightning Charging Cable,1,14.95,08/30/19 22:24,"794 6th St, Atlanta, GA 30301" +242528,27in 4K Gaming Monitor,1,389.99,08/30/19 22:24,"794 6th St, Atlanta, GA 30301" +242529,Bose SoundSport Headphones,1,99.99,08/14/19 15:27,"729 2nd St, Los Angeles, CA 90001" +242530,Google Phone,1,600,08/04/19 16:13,"492 Hickory St, Atlanta, GA 30301" +242531,AAA Batteries (4-pack),1,2.99,08/04/19 09:18,"690 Hill St, Los Angeles, CA 90001" +242532,27in 4K Gaming Monitor,1,389.99,08/26/19 07:47,"609 Lake St, Seattle, WA 98101" +242533,AA Batteries (4-pack),1,3.84,08/27/19 21:36,"407 Walnut St, Dallas, TX 75001" +242534,AAA Batteries (4-pack),1,2.99,08/30/19 19:11,"119 Elm St, Boston, MA 02215" +242535,Apple Airpods Headphones,1,150,08/29/19 16:00,"748 Meadow St, San Francisco, CA 94016" +242536,USB-C Charging Cable,1,11.95,08/01/19 17:13,"718 Elm St, Boston, MA 02215" +242537,iPhone,1,700,08/12/19 21:09,"612 10th St, San Francisco, CA 94016" +242537,Wired Headphones,1,11.99,08/12/19 21:09,"612 10th St, San Francisco, CA 94016" +242538,AA Batteries (4-pack),1,3.84,08/18/19 10:08,"247 Sunset St, Seattle, WA 98101" +242539,Apple Airpods Headphones,1,150,08/09/19 09:11,"358 Pine St, Los Angeles, CA 90001" +242539,AA Batteries (4-pack),1,3.84,08/09/19 09:11,"358 Pine St, Los Angeles, CA 90001" +242540,Apple Airpods Headphones,1,150,08/01/19 23:04,"866 Willow St, San Francisco, CA 94016" +242541,iPhone,1,700,08/26/19 15:19,"136 Lincoln St, San Francisco, CA 94016" +242542,Bose SoundSport Headphones,1,99.99,08/04/19 07:51,"116 Jefferson St, Portland, OR 97035" +242543,Bose SoundSport Headphones,1,99.99,08/27/19 00:38,"918 12th St, Los Angeles, CA 90001" +242544,Lightning Charging Cable,1,14.95,08/30/19 12:05,"149 Maple St, San Francisco, CA 94016" +242545,ThinkPad Laptop,1,999.99,08/27/19 13:21,"498 13th St, Los Angeles, CA 90001" +242546,Apple Airpods Headphones,1,150,08/09/19 12:09,"650 North St, San Francisco, CA 94016" +242547,AA Batteries (4-pack),1,3.84,08/21/19 17:50,"114 Washington St, Los Angeles, CA 90001" +242548,Apple Airpods Headphones,1,150,08/04/19 15:33,"555 10th St, Boston, MA 02215" +242549,AA Batteries (4-pack),2,3.84,08/20/19 15:37,"212 8th St, San Francisco, CA 94016" +242550,Lightning Charging Cable,2,14.95,08/14/19 00:32,"144 12th St, San Francisco, CA 94016" +242551,Wired Headphones,1,11.99,08/12/19 15:31,"693 Church St, Los Angeles, CA 90001" +242552,USB-C Charging Cable,1,11.95,08/25/19 17:43,"315 10th St, Portland, OR 97035" +242553,iPhone,1,700,08/22/19 01:46,"998 7th St, New York City, NY 10001" +242554,Lightning Charging Cable,1,14.95,08/14/19 14:32,"577 12th St, Portland, OR 97035" +242555,Wired Headphones,1,11.99,08/08/19 00:50,"174 Elm St, New York City, NY 10001" +242556,USB-C Charging Cable,1,11.95,08/04/19 14:09,"524 Forest St, Boston, MA 02215" +242557,Apple Airpods Headphones,1,150,08/16/19 07:13,"206 Elm St, New York City, NY 10001" +242558,USB-C Charging Cable,1,11.95,08/30/19 20:57,"4 Pine St, San Francisco, CA 94016" +242559,AA Batteries (4-pack),1,3.84,08/13/19 21:13,"209 5th St, San Francisco, CA 94016" +242560,27in FHD Monitor,1,149.99,08/10/19 14:25,"90 Lincoln St, Portland, OR 97035" +242561,AA Batteries (4-pack),1,3.84,08/21/19 23:15,"567 River St, Austin, TX 73301" +242562,Apple Airpods Headphones,1,150,08/14/19 08:49,"99 Park St, Los Angeles, CA 90001" +242563,iPhone,1,700,08/10/19 12:24,"823 4th St, New York City, NY 10001" +242564,USB-C Charging Cable,2,11.95,08/25/19 10:27,"33 7th St, Seattle, WA 98101" +242565,Bose SoundSport Headphones,1,99.99,08/06/19 17:08,"858 Wilson St, Seattle, WA 98101" +242566,AAA Batteries (4-pack),1,2.99,08/08/19 16:11,"349 14th St, New York City, NY 10001" +242567,Wired Headphones,1,11.99,08/21/19 14:47,"40 Maple St, Los Angeles, CA 90001" +242568,USB-C Charging Cable,1,11.95,08/30/19 09:14,"393 5th St, Boston, MA 02215" +242569,Apple Airpods Headphones,1,150,08/28/19 13:19,"273 10th St, Austin, TX 73301" +242570,AA Batteries (4-pack),3,3.84,08/23/19 22:09,"399 Lincoln St, Los Angeles, CA 90001" +242571,Lightning Charging Cable,2,14.95,08/15/19 11:12,"644 10th St, Los Angeles, CA 90001" +242572,AA Batteries (4-pack),4,3.84,08/07/19 23:11,"304 Meadow St, New York City, NY 10001" +242573,27in 4K Gaming Monitor,1,389.99,08/31/19 22:55,"109 Lincoln St, San Francisco, CA 94016" +242574,Lightning Charging Cable,1,14.95,08/24/19 22:01,"814 Willow St, San Francisco, CA 94016" +242575,AAA Batteries (4-pack),1,2.99,08/19/19 06:59,"427 Chestnut St, Dallas, TX 75001" +242576,Lightning Charging Cable,2,14.95,08/10/19 18:04,"599 1st St, Los Angeles, CA 90001" +242577,AA Batteries (4-pack),1,3.84,08/01/19 14:22,"917 14th St, Atlanta, GA 30301" +242578,AAA Batteries (4-pack),2,2.99,08/04/19 09:52,"578 Center St, San Francisco, CA 94016" +242579,Wired Headphones,1,11.99,08/24/19 16:18,"871 Cherry St, Austin, TX 73301" +242580,iPhone,1,700,08/20/19 20:36,"6 South St, San Francisco, CA 94016" +242581,AA Batteries (4-pack),1,3.84,08/01/19 19:14,"722 Hill St, Boston, MA 02215" +242581,Lightning Charging Cable,1,14.95,08/01/19 19:14,"722 Hill St, Boston, MA 02215" +242582,20in Monitor,1,109.99,08/11/19 21:52,"863 Hill St, Los Angeles, CA 90001" +242583,Bose SoundSport Headphones,1,99.99,08/09/19 13:42,"561 Spruce St, Atlanta, GA 30301" +242584,Lightning Charging Cable,1,14.95,08/20/19 15:23,"701 Adams St, Atlanta, GA 30301" +242585,ThinkPad Laptop,1,999.99,08/30/19 19:39,"561 South St, Seattle, WA 98101" +242586,iPhone,1,700,08/26/19 21:13,"913 Meadow St, San Francisco, CA 94016" +242587,Wired Headphones,1,11.99,08/12/19 16:30,"609 6th St, New York City, NY 10001" +242588,Lightning Charging Cable,1,14.95,08/12/19 09:14,"957 8th St, New York City, NY 10001" +242589,27in FHD Monitor,1,149.99,08/09/19 02:20,"600 4th St, Austin, TX 73301" +242590,AA Batteries (4-pack),1,3.84,08/27/19 09:08,"936 8th St, Portland, OR 97035" +242591,AA Batteries (4-pack),1,3.84,08/21/19 15:33,"453 Ridge St, Portland, OR 97035" +242592,AA Batteries (4-pack),2,3.84,08/15/19 12:17,"21 Highland St, Portland, OR 97035" +242593,ThinkPad Laptop,1,999.99,08/13/19 18:04,"647 8th St, New York City, NY 10001" +242594,Google Phone,1,600,08/01/19 14:03,"901 Highland St, Boston, MA 02215" +242595,Lightning Charging Cable,2,14.95,08/13/19 13:58,"897 12th St, Boston, MA 02215" +242596,Wired Headphones,1,11.99,08/20/19 00:39,"664 Pine St, New York City, NY 10001" +242597,AAA Batteries (4-pack),1,2.99,08/29/19 10:46,"156 Maple St, Los Angeles, CA 90001" +242598,Wired Headphones,1,11.99,08/18/19 22:27,"805 Hill St, Seattle, WA 98101" +242599,ThinkPad Laptop,1,999.99,08/22/19 16:59,"709 South St, Portland, OR 97035" +242600,Bose SoundSport Headphones,1,99.99,08/23/19 14:51,"459 Jackson St, Dallas, TX 75001" +242601,Apple Airpods Headphones,1,150,08/22/19 12:13,"245 2nd St, Boston, MA 02215" +242602,Vareebadd Phone,1,400,08/19/19 15:47,"480 Lake St, New York City, NY 10001" +242603,27in FHD Monitor,1,149.99,08/25/19 16:50,"610 Madison St, Seattle, WA 98101" +242604,AAA Batteries (4-pack),1,2.99,08/18/19 11:17,"808 Jefferson St, Austin, TX 73301" +242605,34in Ultrawide Monitor,1,379.99,08/13/19 15:05,"977 Chestnut St, New York City, NY 10001" +242606,Apple Airpods Headphones,1,150,08/04/19 12:51,"829 2nd St, Boston, MA 02215" +242607,Bose SoundSport Headphones,1,99.99,08/07/19 09:10,"740 4th St, New York City, NY 10001" +242608,27in 4K Gaming Monitor,1,389.99,08/10/19 00:39,"226 Elm St, San Francisco, CA 94016" +242609,Wired Headphones,1,11.99,08/28/19 18:15,"91 Hill St, New York City, NY 10001" +242610,Flatscreen TV,1,300,08/13/19 15:03,"806 Sunset St, Dallas, TX 75001" +242611,AAA Batteries (4-pack),2,2.99,08/09/19 22:35,"563 North St, Boston, MA 02215" +242612,AAA Batteries (4-pack),1,2.99,08/23/19 11:41,"970 Lincoln St, San Francisco, CA 94016" +242613,Bose SoundSport Headphones,1,99.99,08/05/19 20:04,"198 4th St, Boston, MA 02215" +242614,AAA Batteries (4-pack),1,2.99,08/17/19 17:35,"480 Washington St, Boston, MA 02215" +242615,Lightning Charging Cable,1,14.95,08/28/19 20:10,"642 Ridge St, Seattle, WA 98101" +242616,Wired Headphones,1,11.99,08/17/19 13:12,"553 Jefferson St, San Francisco, CA 94016" +242617,Google Phone,1,600,08/07/19 18:18,"193 South St, Portland, OR 97035" +242617,Bose SoundSport Headphones,1,99.99,08/07/19 18:18,"193 South St, Portland, OR 97035" +242618,AA Batteries (4-pack),1,3.84,08/10/19 13:45,"699 Spruce St, New York City, NY 10001" +242619,AAA Batteries (4-pack),1,2.99,08/03/19 09:52,"156 Adams St, Dallas, TX 75001" +242620,34in Ultrawide Monitor,1,379.99,08/01/19 20:10,"722 Meadow St, Los Angeles, CA 90001" +242621,Google Phone,1,600,08/01/19 21:32,"192 11th St, Boston, MA 02215" +242621,USB-C Charging Cable,1,11.95,08/01/19 21:32,"192 11th St, Boston, MA 02215" +242622,iPhone,1,700,08/09/19 07:32,"550 Madison St, San Francisco, CA 94016" +242623,AA Batteries (4-pack),1,3.84,08/31/19 12:57,"571 11th St, Atlanta, GA 30301" +242624,Apple Airpods Headphones,1,150,08/28/19 12:17,"126 11th St, San Francisco, CA 94016" +242625,Apple Airpods Headphones,1,150,08/09/19 13:36,"945 Wilson St, Austin, TX 73301" +242626,Wired Headphones,1,11.99,08/03/19 20:48,"130 West St, San Francisco, CA 94016" +242627,Google Phone,1,600,08/12/19 11:34,"608 Meadow St, Dallas, TX 75001" +242628,Wired Headphones,2,11.99,08/30/19 20:00,"20 8th St, Boston, MA 02215" +242629,LG Washing Machine,1,600.0,08/29/19 13:22,"594 Spruce St, Seattle, WA 98101" +242630,ThinkPad Laptop,1,999.99,08/07/19 11:02,"281 Main St, Dallas, TX 75001" +242631,AA Batteries (4-pack),1,3.84,08/29/19 09:48,"192 Main St, Atlanta, GA 30301" +242632,Wired Headphones,1,11.99,08/08/19 11:10,"363 9th St, Austin, TX 73301" +242633,Apple Airpods Headphones,1,150,08/28/19 11:18,"263 Lakeview St, Boston, MA 02215" +242634,Lightning Charging Cable,1,14.95,08/04/19 13:35,"978 Elm St, San Francisco, CA 94016" +242635,Flatscreen TV,1,300,08/25/19 17:35,"323 2nd St, San Francisco, CA 94016" +242636,Apple Airpods Headphones,1,150,08/20/19 18:15,"862 North St, Austin, TX 73301" +242637,USB-C Charging Cable,1,11.95,08/04/19 14:44,"693 Dogwood St, Boston, MA 02215" +242638,ThinkPad Laptop,1,999.99,08/30/19 12:23,"606 Main St, Los Angeles, CA 90001" +242639,Google Phone,1,600,08/27/19 15:54,"183 4th St, Dallas, TX 75001" +242640,Wired Headphones,1,11.99,08/05/19 20:44,"629 10th St, Austin, TX 73301" +242641,Lightning Charging Cable,1,14.95,08/30/19 15:58,"530 Park St, New York City, NY 10001" +242642,20in Monitor,1,109.99,08/02/19 10:24,"433 South St, Austin, TX 73301" +242643,iPhone,1,700,08/07/19 10:54,"226 Highland St, San Francisco, CA 94016" +242643,Apple Airpods Headphones,1,150,08/07/19 10:54,"226 Highland St, San Francisco, CA 94016" +242644,AA Batteries (4-pack),1,3.84,08/07/19 21:44,"253 Jefferson St, Dallas, TX 75001" +242645,27in 4K Gaming Monitor,1,389.99,08/27/19 09:42,"69 Sunset St, San Francisco, CA 94016" +242646,AA Batteries (4-pack),4,3.84,08/21/19 17:46,"914 River St, San Francisco, CA 94016" +242647,AAA Batteries (4-pack),1,2.99,08/01/19 19:14,"902 5th St, Boston, MA 02215" +242648,Lightning Charging Cable,1,14.95,08/05/19 19:48,"40 West St, Boston, MA 02215" +242649,AA Batteries (4-pack),1,3.84,08/13/19 21:12,"182 River St, Seattle, WA 98101" +242650,Wired Headphones,1,11.99,08/03/19 09:21,"432 1st St, New York City, NY 10001" +242651,Bose SoundSport Headphones,1,99.99,08/27/19 13:38,"333 Dogwood St, Los Angeles, CA 90001" +242652,AA Batteries (4-pack),1,3.84,08/28/19 08:32,"862 Elm St, Atlanta, GA 30301" +242653,USB-C Charging Cable,1,11.95,08/06/19 17:26,"14 Johnson St, San Francisco, CA 94016" +242654,Apple Airpods Headphones,1,150,08/25/19 19:58,"857 Meadow St, New York City, NY 10001" +242655,27in 4K Gaming Monitor,1,389.99,08/24/19 13:41,"611 Lincoln St, Atlanta, GA 30301" +242656,USB-C Charging Cable,1,11.95,08/16/19 15:54,"947 Spruce St, San Francisco, CA 94016" +242657,27in 4K Gaming Monitor,1,389.99,08/18/19 12:38,"512 Center St, San Francisco, CA 94016" +242658,USB-C Charging Cable,1,11.95,08/28/19 11:20,"100 Elm St, Austin, TX 73301" +242659,Google Phone,1,600,08/20/19 19:13,"850 Adams St, Boston, MA 02215" +242659,Bose SoundSport Headphones,1,99.99,08/20/19 19:13,"850 Adams St, Boston, MA 02215" +242660,AAA Batteries (4-pack),1,2.99,08/04/19 14:50,"413 4th St, Dallas, TX 75001" +242661,AAA Batteries (4-pack),1,2.99,08/30/19 10:24,"917 South St, Atlanta, GA 30301" +242662,Lightning Charging Cable,1,14.95,08/20/19 18:16,"377 5th St, Los Angeles, CA 90001" +242663,27in 4K Gaming Monitor,1,389.99,08/19/19 08:08,"35 13th St, San Francisco, CA 94016" +242664,AA Batteries (4-pack),1,3.84,08/15/19 15:42,"774 Jefferson St, San Francisco, CA 94016" +242665,27in 4K Gaming Monitor,1,389.99,08/04/19 21:05,"72 Washington St, Seattle, WA 98101" +242666,Flatscreen TV,1,300,08/05/19 10:43,"640 River St, Portland, OR 97035" +242667,Bose SoundSport Headphones,1,99.99,08/01/19 07:46,"754 1st St, Dallas, TX 75001" +242668,Lightning Charging Cable,1,14.95,08/27/19 14:17,"377 Highland St, Seattle, WA 98101" +242669,AAA Batteries (4-pack),2,2.99,08/26/19 17:52,"701 13th St, Dallas, TX 75001" +242670,AA Batteries (4-pack),1,3.84,08/24/19 22:33,"57 5th St, San Francisco, CA 94016" +242671,Wired Headphones,1,11.99,08/09/19 21:34,"990 Main St, Los Angeles, CA 90001" +242672,Apple Airpods Headphones,1,150,08/15/19 22:28,"577 Lakeview St, Dallas, TX 75001" +242673,Wired Headphones,1,11.99,08/28/19 11:27,"394 Center St, New York City, NY 10001" +242674,AA Batteries (4-pack),1,3.84,08/15/19 18:16,"762 Johnson St, New York City, NY 10001" +242675,iPhone,1,700,08/28/19 13:20,"988 2nd St, New York City, NY 10001" +242675,Apple Airpods Headphones,1,150,08/28/19 13:20,"988 2nd St, New York City, NY 10001" +242676,Bose SoundSport Headphones,1,99.99,08/06/19 07:25,"508 Forest St, Atlanta, GA 30301" +242677,Lightning Charging Cable,1,14.95,08/14/19 06:52,"707 Forest St, San Francisco, CA 94016" +242678,AAA Batteries (4-pack),4,2.99,08/17/19 13:32,"283 Cedar St, San Francisco, CA 94016" +242679,34in Ultrawide Monitor,1,379.99,08/08/19 10:00,"107 Main St, San Francisco, CA 94016" +242680,USB-C Charging Cable,1,11.95,08/26/19 10:39,"119 Adams St, Seattle, WA 98101" +242681,Macbook Pro Laptop,1,1700,08/04/19 10:56,"315 Spruce St, Dallas, TX 75001" +242682,Wired Headphones,1,11.99,08/17/19 11:04,"109 Hickory St, Boston, MA 02215" +242683,USB-C Charging Cable,3,11.95,08/10/19 00:04,"519 Ridge St, Dallas, TX 75001" +242684,AAA Batteries (4-pack),1,2.99,08/17/19 07:15,"828 Spruce St, Seattle, WA 98101" +242685,AAA Batteries (4-pack),2,2.99,08/10/19 09:27,"380 Lake St, Atlanta, GA 30301" +242686,20in Monitor,1,109.99,08/08/19 12:39,"767 8th St, Portland, OR 97035" +242687,Wired Headphones,1,11.99,08/01/19 16:09,"713 2nd St, Boston, MA 02215" +242688,Google Phone,1,600,08/01/19 10:49,"118 North St, San Francisco, CA 94016" +242689,AAA Batteries (4-pack),3,2.99,08/15/19 16:40,"630 Lakeview St, New York City, NY 10001" +242690,Flatscreen TV,1,300,08/12/19 20:52,"892 Willow St, Atlanta, GA 30301" +242691,Lightning Charging Cable,1,14.95,08/03/19 20:45,"292 Willow St, Dallas, TX 75001" +242691,Bose SoundSport Headphones,1,99.99,08/03/19 20:45,"292 Willow St, Dallas, TX 75001" +242692,27in FHD Monitor,1,149.99,08/09/19 19:43,"979 Maple St, Dallas, TX 75001" +242693,Macbook Pro Laptop,1,1700,08/17/19 13:29,"515 2nd St, San Francisco, CA 94016" +242694,USB-C Charging Cable,1,11.95,08/14/19 12:20,"709 Madison St, Austin, TX 73301" +242695,34in Ultrawide Monitor,1,379.99,08/17/19 12:44,"826 Elm St, New York City, NY 10001" +242696,USB-C Charging Cable,1,11.95,08/29/19 19:42,"40 Washington St, San Francisco, CA 94016" +242697,USB-C Charging Cable,1,11.95,08/14/19 13:47,"807 2nd St, San Francisco, CA 94016" +242698,USB-C Charging Cable,1,11.95,08/10/19 21:43,"98 Walnut St, San Francisco, CA 94016" +242699,27in 4K Gaming Monitor,1,389.99,08/10/19 07:30,"173 1st St, Portland, OR 97035" +242700,34in Ultrawide Monitor,1,379.99,08/29/19 19:42,"807 Forest St, San Francisco, CA 94016" +242701,Google Phone,1,600,08/27/19 13:26,"178 12th St, Atlanta, GA 30301" +242701,USB-C Charging Cable,1,11.95,08/27/19 13:26,"178 12th St, Atlanta, GA 30301" +242702,ThinkPad Laptop,1,999.99,08/03/19 00:34,"722 Park St, San Francisco, CA 94016" +242703,Wired Headphones,1,11.99,08/03/19 00:25,"609 Church St, San Francisco, CA 94016" +242704,LG Dryer,1,600.0,08/04/19 07:08,"151 Walnut St, Los Angeles, CA 90001" +242705,ThinkPad Laptop,1,999.99,08/28/19 21:53,"939 Cedar St, San Francisco, CA 94016" +242706,Wired Headphones,1,11.99,08/27/19 05:17,"977 Lake St, Portland, ME 04101" +242707,Lightning Charging Cable,1,14.95,08/27/19 17:02,"180 Lake St, Boston, MA 02215" +242708,Apple Airpods Headphones,1,150,08/11/19 15:09,"600 6th St, New York City, NY 10001" +242709,AAA Batteries (4-pack),1,2.99,08/12/19 21:12,"978 4th St, San Francisco, CA 94016" +242710,AA Batteries (4-pack),1,3.84,08/27/19 10:24,"346 Center St, Portland, OR 97035" +242711,34in Ultrawide Monitor,1,379.99,08/28/19 19:48,"163 Chestnut St, Austin, TX 73301" +242712,Lightning Charging Cable,2,14.95,08/30/19 20:03,"405 Hill St, New York City, NY 10001" +242713,Bose SoundSport Headphones,1,99.99,08/13/19 13:57,"304 Elm St, Boston, MA 02215" +242714,AAA Batteries (4-pack),1,2.99,08/05/19 08:27,"167 5th St, Los Angeles, CA 90001" +242715,Macbook Pro Laptop,1,1700,08/01/19 15:31,"847 14th St, Los Angeles, CA 90001" +242716,27in 4K Gaming Monitor,1,389.99,08/26/19 13:11,"35 Spruce St, San Francisco, CA 94016" +242717,Lightning Charging Cable,1,14.95,08/17/19 08:49,"82 Pine St, New York City, NY 10001" +242718,AAA Batteries (4-pack),2,2.99,08/18/19 06:51,"970 Wilson St, Boston, MA 02215" +242719,Apple Airpods Headphones,1,150,08/01/19 11:45,"332 9th St, Dallas, TX 75001" +242720,AA Batteries (4-pack),2,3.84,08/08/19 19:45,"918 Adams St, Portland, OR 97035" +242721,AAA Batteries (4-pack),1,2.99,08/16/19 22:54,"907 11th St, Seattle, WA 98101" +242722,Wired Headphones,1,11.99,08/04/19 18:26,"755 South St, New York City, NY 10001" +242723,Wired Headphones,1,11.99,08/17/19 20:37,"198 Forest St, Los Angeles, CA 90001" +242724,AA Batteries (4-pack),2,3.84,08/26/19 20:43,"744 Ridge St, Los Angeles, CA 90001" +242725,iPhone,1,700,08/21/19 12:45,"655 11th St, New York City, NY 10001" +242726,Bose SoundSport Headphones,1,99.99,08/23/19 16:26,"755 Adams St, New York City, NY 10001" +242727,USB-C Charging Cable,2,11.95,08/25/19 16:21,"815 Johnson St, New York City, NY 10001" +242728,Bose SoundSport Headphones,1,99.99,08/02/19 09:38,"810 6th St, Seattle, WA 98101" +242729,Google Phone,1,600,08/11/19 09:45,"784 Jackson St, Los Angeles, CA 90001" +242729,Wired Headphones,1,11.99,08/11/19 09:45,"784 Jackson St, Los Angeles, CA 90001" +242730,Lightning Charging Cable,1,14.95,08/15/19 20:23,"793 Highland St, San Francisco, CA 94016" +242731,Apple Airpods Headphones,1,150,08/27/19 13:40,"193 Pine St, San Francisco, CA 94016" +242732,Google Phone,1,600,08/19/19 19:29,"340 Lincoln St, New York City, NY 10001" +242733,Lightning Charging Cable,1,14.95,08/21/19 13:30,"120 Pine St, Los Angeles, CA 90001" +242734,Wired Headphones,1,11.99,08/17/19 18:02,"630 7th St, Boston, MA 02215" +242735,AA Batteries (4-pack),1,3.84,08/28/19 22:44,"971 10th St, Los Angeles, CA 90001" +242736,Apple Airpods Headphones,1,150,08/03/19 08:03,"519 Johnson St, Dallas, TX 75001" +242737,20in Monitor,1,109.99,08/10/19 16:47,"191 Willow St, San Francisco, CA 94016" +242738,AAA Batteries (4-pack),1,2.99,08/09/19 01:46,"566 Adams St, San Francisco, CA 94016" +242739,Apple Airpods Headphones,1,150,08/12/19 14:37,"912 Lakeview St, Portland, ME 04101" +242740,Apple Airpods Headphones,1,150,08/24/19 23:01,"868 Sunset St, San Francisco, CA 94016" +242741,Macbook Pro Laptop,1,1700,08/16/19 07:42,"539 6th St, San Francisco, CA 94016" +242742,AAA Batteries (4-pack),1,2.99,08/29/19 12:27,"795 Maple St, Los Angeles, CA 90001" +242743,AA Batteries (4-pack),3,3.84,08/29/19 10:09,"421 Pine St, Boston, MA 02215" +242744,Macbook Pro Laptop,1,1700,08/24/19 23:48,"139 11th St, San Francisco, CA 94016" +242745,Lightning Charging Cable,1,14.95,08/13/19 22:03,"1 12th St, San Francisco, CA 94016" +242746,27in FHD Monitor,1,149.99,08/30/19 05:33,"99 11th St, Los Angeles, CA 90001" +242747,AA Batteries (4-pack),1,3.84,08/25/19 07:29,"546 5th St, New York City, NY 10001" +242748,AA Batteries (4-pack),1,3.84,08/28/19 20:14,"351 4th St, Boston, MA 02215" +242749,AAA Batteries (4-pack),1,2.99,08/21/19 15:19,"961 7th St, Portland, OR 97035" +242750,Flatscreen TV,1,300,08/30/19 09:05,"809 4th St, Dallas, TX 75001" +242751,AA Batteries (4-pack),1,3.84,08/27/19 16:21,"968 Walnut St, Boston, MA 02215" +242752,AA Batteries (4-pack),3,3.84,08/05/19 13:13,"538 Lakeview St, Seattle, WA 98101" +242753,34in Ultrawide Monitor,1,379.99,08/16/19 01:13,"954 Madison St, New York City, NY 10001" +242754,Lightning Charging Cable,1,14.95,08/06/19 18:50,"376 Cherry St, Dallas, TX 75001" +242755,34in Ultrawide Monitor,1,379.99,08/12/19 21:46,"6 1st St, Los Angeles, CA 90001" +242756,34in Ultrawide Monitor,1,379.99,08/17/19 17:37,"761 Chestnut St, San Francisco, CA 94016" +242757,AAA Batteries (4-pack),1,2.99,08/29/19 11:45,"104 5th St, San Francisco, CA 94016" +242758,AA Batteries (4-pack),2,3.84,08/15/19 21:41,"188 Cherry St, Portland, OR 97035" +242759,34in Ultrawide Monitor,1,379.99,08/14/19 16:32,"325 Park St, Portland, OR 97035" +242760,AAA Batteries (4-pack),1,2.99,08/24/19 07:29,"451 Jackson St, Atlanta, GA 30301" +242761,Wired Headphones,1,11.99,08/18/19 10:22,"581 Spruce St, Atlanta, GA 30301" +242762,Lightning Charging Cable,1,14.95,08/10/19 20:49,"512 9th St, New York City, NY 10001" +242763,Wired Headphones,1,11.99,08/02/19 05:43,"451 Highland St, San Francisco, CA 94016" +242764,Apple Airpods Headphones,1,150,08/22/19 08:18,"794 River St, Boston, MA 02215" +242765,Wired Headphones,1,11.99,08/22/19 11:11,"528 Lake St, Los Angeles, CA 90001" +242766,Macbook Pro Laptop,1,1700,08/11/19 18:30,"681 West St, San Francisco, CA 94016" +242767,AAA Batteries (4-pack),3,2.99,08/03/19 08:13,"873 Cherry St, New York City, NY 10001" +242768,AAA Batteries (4-pack),2,2.99,08/22/19 12:32,"373 Willow St, New York City, NY 10001" +242769,Flatscreen TV,1,300,08/20/19 18:48,"960 Cherry St, New York City, NY 10001" +242770,Bose SoundSport Headphones,1,99.99,08/11/19 21:29,"898 12th St, Boston, MA 02215" +242771,AA Batteries (4-pack),1,3.84,08/21/19 11:36,"893 Willow St, New York City, NY 10001" +242772,AAA Batteries (4-pack),1,2.99,08/06/19 19:20,"268 South St, San Francisco, CA 94016" +242773,AAA Batteries (4-pack),4,2.99,08/29/19 14:36,"52 13th St, Seattle, WA 98101" +242774,Bose SoundSport Headphones,1,99.99,08/28/19 17:20,"729 8th St, Dallas, TX 75001" +242775,34in Ultrawide Monitor,1,379.99,08/29/19 14:12,"789 11th St, San Francisco, CA 94016" +242776,AA Batteries (4-pack),1,3.84,08/14/19 13:04,"51 Dogwood St, New York City, NY 10001" +242777,27in FHD Monitor,1,149.99,08/18/19 08:39,"914 Washington St, Portland, OR 97035" +242778,27in 4K Gaming Monitor,1,389.99,08/12/19 13:24,"372 Walnut St, Atlanta, GA 30301" +242779,Apple Airpods Headphones,1,150,08/13/19 07:44,"222 Church St, San Francisco, CA 94016" +242780,AA Batteries (4-pack),1,3.84,08/26/19 13:04,"860 8th St, Boston, MA 02215" +242781,USB-C Charging Cable,1,11.95,08/31/19 10:18,"183 Maple St, Dallas, TX 75001" +242782,Apple Airpods Headphones,1,150,08/02/19 16:18,"414 Johnson St, New York City, NY 10001" +242783,Lightning Charging Cable,1,14.95,08/30/19 11:15,"993 Lakeview St, Los Angeles, CA 90001" +242784,AA Batteries (4-pack),1,3.84,08/22/19 18:18,"500 North St, San Francisco, CA 94016" +242785,AAA Batteries (4-pack),1,2.99,08/28/19 23:15,"661 Maple St, Austin, TX 73301" +242786,Bose SoundSport Headphones,1,99.99,08/18/19 02:46,"505 Jefferson St, New York City, NY 10001" +242787,Google Phone,1,600,08/15/19 18:42,"676 Johnson St, New York City, NY 10001" +242787,USB-C Charging Cable,1,11.95,08/15/19 18:42,"676 Johnson St, New York City, NY 10001" +242788,AAA Batteries (4-pack),2,2.99,08/02/19 16:15,"111 Jefferson St, Seattle, WA 98101" +242789,Lightning Charging Cable,1,14.95,08/25/19 10:13,"759 1st St, Los Angeles, CA 90001" +242790,Apple Airpods Headphones,1,150,08/13/19 12:19,"464 Ridge St, Dallas, TX 75001" +242791,USB-C Charging Cable,1,11.95,08/31/19 22:20,"514 12th St, Atlanta, GA 30301" +242792,Lightning Charging Cable,1,14.95,08/12/19 22:30,"718 Church St, Dallas, TX 75001" +242793,Bose SoundSport Headphones,1,99.99,08/05/19 12:26,"767 Pine St, Seattle, WA 98101" +242794,USB-C Charging Cable,1,11.95,08/19/19 20:20,"34 South St, San Francisco, CA 94016" +242795,AAA Batteries (4-pack),3,2.99,08/25/19 18:50,"759 Hill St, San Francisco, CA 94016" +242796,Apple Airpods Headphones,1,150,08/18/19 21:56,"935 Center St, Los Angeles, CA 90001" +242797,Wired Headphones,1,11.99,08/03/19 19:20,"675 Lakeview St, Boston, MA 02215" +242798,AA Batteries (4-pack),1,3.84,08/16/19 16:42,"517 West St, Los Angeles, CA 90001" +242799,AA Batteries (4-pack),2,3.84,08/22/19 22:50,"5 6th St, San Francisco, CA 94016" +242800,Bose SoundSport Headphones,1,99.99,08/14/19 17:34,"292 Cedar St, Atlanta, GA 30301" +242801,Lightning Charging Cable,1,14.95,08/31/19 22:26,"766 North St, San Francisco, CA 94016" +242802,Wired Headphones,1,11.99,08/15/19 09:57,"202 7th St, New York City, NY 10001" +242803,Lightning Charging Cable,1,14.95,08/30/19 12:18,"887 North St, Boston, MA 02215" +242804,Google Phone,1,600,08/03/19 11:56,"678 Highland St, Los Angeles, CA 90001" +242805,Apple Airpods Headphones,1,150,08/26/19 09:45,"443 Sunset St, San Francisco, CA 94016" +242806,Wired Headphones,2,11.99,08/02/19 10:26,"305 Ridge St, Los Angeles, CA 90001" +242807,Flatscreen TV,1,300,08/13/19 09:35,"294 Lake St, Dallas, TX 75001" +242808,Wired Headphones,2,11.99,08/06/19 23:16,"987 Forest St, Boston, MA 02215" +242809,Lightning Charging Cable,1,14.95,08/04/19 08:08,"540 Main St, Seattle, WA 98101" +242810,USB-C Charging Cable,1,11.95,08/28/19 00:49,"8 Dogwood St, Dallas, TX 75001" +242811,AAA Batteries (4-pack),1,2.99,08/21/19 06:52,"215 Lake St, Atlanta, GA 30301" +242812,27in 4K Gaming Monitor,1,389.99,08/21/19 05:31,"338 5th St, Los Angeles, CA 90001" +242813,AA Batteries (4-pack),1,3.84,08/09/19 13:21,"553 Chestnut St, Atlanta, GA 30301" +242814,ThinkPad Laptop,1,999.99,08/12/19 07:28,"440 Main St, New York City, NY 10001" +242815,27in 4K Gaming Monitor,1,389.99,08/15/19 13:12,"19 River St, Dallas, TX 75001" +242816,iPhone,1,700,08/31/19 11:09,"682 Hill St, Los Angeles, CA 90001" +242817,AAA Batteries (4-pack),1,2.99,08/15/19 12:17,"858 Main St, Los Angeles, CA 90001" +242817,Google Phone,1,600,08/15/19 12:17,"858 Main St, Los Angeles, CA 90001" +242818,Wired Headphones,1,11.99,08/04/19 10:13,"596 13th St, Portland, ME 04101" +242819,Google Phone,1,600,08/14/19 10:27,"586 6th St, New York City, NY 10001" +242819,USB-C Charging Cable,1,11.95,08/14/19 10:27,"586 6th St, New York City, NY 10001" +242819,Wired Headphones,1,11.99,08/14/19 10:27,"586 6th St, New York City, NY 10001" +242820,Wired Headphones,1,11.99,08/10/19 17:28,"548 10th St, San Francisco, CA 94016" +242821,AAA Batteries (4-pack),1,2.99,08/03/19 12:54,"821 12th St, Boston, MA 02215" +242821,Wired Headphones,1,11.99,08/03/19 12:54,"821 12th St, Boston, MA 02215" +242822,Bose SoundSport Headphones,1,99.99,08/11/19 14:52,"115 River St, Austin, TX 73301" +242823,Flatscreen TV,1,300,08/12/19 10:33,"205 Willow St, Atlanta, GA 30301" +242824,Apple Airpods Headphones,1,150,08/25/19 22:07,"487 2nd St, San Francisco, CA 94016" +242825,27in FHD Monitor,1,149.99,08/05/19 12:50,"90 Jefferson St, Los Angeles, CA 90001" +242826,Lightning Charging Cable,1,14.95,08/12/19 16:33,"61 Hill St, New York City, NY 10001" +242827,Apple Airpods Headphones,1,150,08/20/19 16:20,"39 Forest St, San Francisco, CA 94016" +242828,AA Batteries (4-pack),3,3.84,08/25/19 14:01,"708 West St, Boston, MA 02215" +242829,Wired Headphones,1,11.99,08/21/19 18:43,"831 Forest St, Los Angeles, CA 90001" +242830,Lightning Charging Cable,1,14.95,08/15/19 19:50,"916 Lakeview St, Atlanta, GA 30301" +242831,Flatscreen TV,1,300,08/10/19 11:32,"141 Spruce St, New York City, NY 10001" +242832,Lightning Charging Cable,1,14.95,08/15/19 22:59,"842 Maple St, Portland, OR 97035" +242833,AAA Batteries (4-pack),3,2.99,08/01/19 14:55,"101 Washington St, Seattle, WA 98101" +242834,Apple Airpods Headphones,1,150,08/01/19 09:02,"263 Church St, Los Angeles, CA 90001" +242835,Vareebadd Phone,1,400,08/05/19 12:31,"116 Church St, Austin, TX 73301" +242835,USB-C Charging Cable,1,11.95,08/05/19 12:31,"116 Church St, Austin, TX 73301" +242836,27in FHD Monitor,1,149.99,08/07/19 15:36,"884 Ridge St, Boston, MA 02215" +242837,27in 4K Gaming Monitor,1,389.99,08/02/19 22:17,"120 Madison St, Los Angeles, CA 90001" +242838,Lightning Charging Cable,1,14.95,08/27/19 20:51,"337 11th St, San Francisco, CA 94016" +242839,AAA Batteries (4-pack),1,2.99,08/22/19 18:05,"540 Spruce St, Atlanta, GA 30301" +242840,Bose SoundSport Headphones,1,99.99,08/21/19 19:38,"372 Adams St, San Francisco, CA 94016" +242841,20in Monitor,1,109.99,08/19/19 16:38,"962 4th St, San Francisco, CA 94016" +242842,34in Ultrawide Monitor,1,379.99,08/16/19 12:08,"521 Pine St, San Francisco, CA 94016" +242843,AA Batteries (4-pack),1,3.84,08/25/19 18:38,"296 Elm St, Atlanta, GA 30301" +242844,Lightning Charging Cable,2,14.95,08/30/19 02:42,"24 Spruce St, Atlanta, GA 30301" +242845,Bose SoundSport Headphones,1,99.99,08/29/19 15:38,"631 River St, New York City, NY 10001" +242846,AA Batteries (4-pack),3,3.84,08/06/19 19:57,"374 Highland St, New York City, NY 10001" +242847,Wired Headphones,1,11.99,08/05/19 13:36,"101 14th St, Boston, MA 02215" +242848,Bose SoundSport Headphones,1,99.99,08/14/19 17:49,"293 Elm St, New York City, NY 10001" +242849,Google Phone,1,600,08/16/19 19:03,"948 Hickory St, San Francisco, CA 94016" +242850,27in FHD Monitor,1,149.99,08/09/19 14:58,"184 Main St, Boston, MA 02215" +242851,Apple Airpods Headphones,1,150,08/29/19 11:53,"154 9th St, New York City, NY 10001" +242852,Apple Airpods Headphones,1,150,08/12/19 21:53,"100 Spruce St, San Francisco, CA 94016" +242853,Apple Airpods Headphones,1,150,08/21/19 10:06,"434 Elm St, San Francisco, CA 94016" +242854,AA Batteries (4-pack),1,3.84,08/10/19 20:27,"364 Pine St, Austin, TX 73301" +242855,AAA Batteries (4-pack),1,2.99,08/11/19 10:22,"644 12th St, Austin, TX 73301" +242856,Lightning Charging Cable,1,14.95,08/17/19 04:39,"145 River St, Seattle, WA 98101" +242857,AAA Batteries (4-pack),1,2.99,08/16/19 16:27,"474 Walnut St, Seattle, WA 98101" +242858,Lightning Charging Cable,1,14.95,08/04/19 16:11,"708 Forest St, New York City, NY 10001" +242859,27in FHD Monitor,1,149.99,08/23/19 21:52,"320 Church St, Los Angeles, CA 90001" +242860,27in FHD Monitor,1,149.99,08/06/19 18:53,"260 Maple St, Seattle, WA 98101" +242861,Wired Headphones,1,11.99,08/27/19 11:24,"820 13th St, Los Angeles, CA 90001" +242862,AA Batteries (4-pack),1,3.84,08/02/19 13:06,"792 Wilson St, San Francisco, CA 94016" +242863,Lightning Charging Cable,1,14.95,08/29/19 19:49,"768 Meadow St, San Francisco, CA 94016" +242864,Apple Airpods Headphones,1,150,08/15/19 11:53,"254 Lake St, Boston, MA 02215" +242865,Lightning Charging Cable,1,14.95,08/30/19 08:29,"895 Cedar St, Seattle, WA 98101" +242866,34in Ultrawide Monitor,1,379.99,08/19/19 17:05,"898 4th St, Dallas, TX 75001" +242867,Apple Airpods Headphones,1,150,08/27/19 14:24,"726 5th St, San Francisco, CA 94016" +242868,USB-C Charging Cable,1,11.95,08/26/19 15:45,"210 Main St, Dallas, TX 75001" +242869,AA Batteries (4-pack),1,3.84,08/04/19 13:04,"775 Lakeview St, Boston, MA 02215" +242870,Bose SoundSport Headphones,1,99.99,08/11/19 11:29,"171 11th St, Los Angeles, CA 90001" +242871,AA Batteries (4-pack),2,3.84,08/27/19 12:06,"257 5th St, San Francisco, CA 94016" +242872,Apple Airpods Headphones,1,150,08/04/19 21:05,"907 Maple St, Boston, MA 02215" +242873,Bose SoundSport Headphones,1,99.99,08/28/19 14:15,"702 Dogwood St, Portland, OR 97035" +242874,Google Phone,1,600,08/27/19 19:47,"951 Dogwood St, San Francisco, CA 94016" +242875,Bose SoundSport Headphones,1,99.99,08/28/19 09:52,"917 North St, Austin, TX 73301" +242876,Wired Headphones,1,11.99,08/10/19 15:13,"847 Park St, Atlanta, GA 30301" +,,,,, +242877,Wired Headphones,1,11.99,08/12/19 12:08,"773 Jefferson St, Los Angeles, CA 90001" +242878,AA Batteries (4-pack),2,3.84,08/03/19 06:01,"569 Willow St, New York City, NY 10001" +242879,Wired Headphones,1,11.99,08/26/19 22:38,"803 1st St, Boston, MA 02215" +242880,Apple Airpods Headphones,1,150,08/14/19 05:51,"575 Dogwood St, Portland, OR 97035" +242881,Wired Headphones,1,11.99,08/03/19 18:56,"646 13th St, Boston, MA 02215" +242882,AAA Batteries (4-pack),1,2.99,08/10/19 21:14,"618 North St, New York City, NY 10001" +242883,Lightning Charging Cable,1,14.95,08/29/19 11:55,"798 Walnut St, Boston, MA 02215" +242884,AAA Batteries (4-pack),3,2.99,08/13/19 07:32,"652 River St, San Francisco, CA 94016" +242885,AA Batteries (4-pack),2,3.84,08/27/19 23:16,"454 Lakeview St, Austin, TX 73301" +242886,AA Batteries (4-pack),3,3.84,08/02/19 20:09,"726 10th St, San Francisco, CA 94016" +242887,AAA Batteries (4-pack),3,2.99,08/02/19 18:18,"909 Meadow St, San Francisco, CA 94016" +242888,USB-C Charging Cable,1,11.95,08/24/19 21:44,"910 Hill St, Boston, MA 02215" +242889,AA Batteries (4-pack),1,3.84,08/08/19 08:48,"849 Hickory St, Seattle, WA 98101" +242890,AAA Batteries (4-pack),1,2.99,08/05/19 22:34,"903 Hickory St, Dallas, TX 75001" +242891,USB-C Charging Cable,1,11.95,08/31/19 20:19,"935 Madison St, San Francisco, CA 94016" +242892,Bose SoundSport Headphones,1,99.99,08/09/19 18:55,"97 14th St, Atlanta, GA 30301" +242893,Bose SoundSport Headphones,1,99.99,08/14/19 09:48,"430 Lake St, San Francisco, CA 94016" +242894,Bose SoundSport Headphones,1,99.99,08/27/19 05:19,"135 Lake St, Seattle, WA 98101" +242895,27in 4K Gaming Monitor,1,389.99,08/19/19 18:16,"801 Hill St, San Francisco, CA 94016" +242896,Apple Airpods Headphones,1,150,08/22/19 19:03,"256 Jackson St, Atlanta, GA 30301" +242897,USB-C Charging Cable,1,11.95,08/23/19 17:34,"977 13th St, Dallas, TX 75001" +242898,27in FHD Monitor,1,149.99,08/04/19 12:55,"637 Walnut St, Atlanta, GA 30301" +242899,USB-C Charging Cable,1,11.95,08/28/19 19:22,"230 6th St, Los Angeles, CA 90001" +242900,USB-C Charging Cable,1,11.95,08/12/19 02:27,"73 Walnut St, Atlanta, GA 30301" +242901,Macbook Pro Laptop,1,1700,08/11/19 16:19,"841 Cedar St, San Francisco, CA 94016" +242902,Wired Headphones,1,11.99,08/19/19 00:30,"820 Madison St, San Francisco, CA 94016" +242903,ThinkPad Laptop,1,999.99,08/23/19 18:06,"121 Pine St, Portland, OR 97035" +242904,Bose SoundSport Headphones,1,99.99,08/28/19 19:47,"793 Washington St, New York City, NY 10001" +242905,USB-C Charging Cable,1,11.95,08/15/19 20:05,"401 Highland St, San Francisco, CA 94016" +242906,Wired Headphones,1,11.99,08/13/19 18:29,"831 Maple St, Los Angeles, CA 90001" +242907,Lightning Charging Cable,1,14.95,08/02/19 13:43,"178 Adams St, Boston, MA 02215" +242908,USB-C Charging Cable,1,11.95,08/01/19 11:56,"601 South St, San Francisco, CA 94016" +242909,Vareebadd Phone,1,400,08/02/19 20:43,"201 West St, Boston, MA 02215" +242910,Wired Headphones,1,11.99,08/23/19 23:09,"221 9th St, Los Angeles, CA 90001" +242911,27in 4K Gaming Monitor,1,389.99,08/12/19 21:55,"609 Hill St, Boston, MA 02215" +242912,Wired Headphones,1,11.99,08/25/19 15:58,"766 Jefferson St, Seattle, WA 98101" +242913,AAA Batteries (4-pack),3,2.99,08/13/19 10:36,"29 Lakeview St, Los Angeles, CA 90001" +242914,27in FHD Monitor,1,149.99,08/18/19 19:06,"615 River St, New York City, NY 10001" +242915,Lightning Charging Cable,1,14.95,08/05/19 21:31,"84 Pine St, Atlanta, GA 30301" +242916,Lightning Charging Cable,1,14.95,08/01/19 19:15,"606 Meadow St, Seattle, WA 98101" +242917,20in Monitor,1,109.99,08/16/19 13:56,"730 Elm St, Dallas, TX 75001" +242918,Wired Headphones,1,11.99,08/14/19 15:02,"181 Dogwood St, Los Angeles, CA 90001" +242919,LG Washing Machine,1,600.0,08/03/19 15:04,"690 Cherry St, Seattle, WA 98101" +242920,AA Batteries (4-pack),1,3.84,08/25/19 21:00,"140 Dogwood St, San Francisco, CA 94016" +242921,AAA Batteries (4-pack),1,2.99,08/13/19 16:45,"579 7th St, Boston, MA 02215" +242922,iPhone,1,700,08/04/19 14:49,"833 Lakeview St, San Francisco, CA 94016" +242923,AAA Batteries (4-pack),2,2.99,08/06/19 22:03,"158 Washington St, Atlanta, GA 30301" +242924,iPhone,1,700,08/01/19 21:23,"370 Cherry St, Seattle, WA 98101" +242925,ThinkPad Laptop,1,999.99,08/25/19 19:11,"748 Madison St, Los Angeles, CA 90001" +242926,Wired Headphones,1,11.99,08/31/19 18:10,"754 River St, Portland, ME 04101" +242927,Bose SoundSport Headphones,1,99.99,08/28/19 11:18,"931 14th St, San Francisco, CA 94016" +242928,USB-C Charging Cable,1,11.95,08/19/19 16:21,"193 West St, Dallas, TX 75001" +242929,Lightning Charging Cable,1,14.95,08/20/19 17:34,"732 Park St, San Francisco, CA 94016" +242930,27in FHD Monitor,1,149.99,08/19/19 19:20,"707 Center St, New York City, NY 10001" +242931,Macbook Pro Laptop,1,1700,08/22/19 16:52,"8 West St, Boston, MA 02215" +242932,27in 4K Gaming Monitor,1,389.99,08/09/19 15:33,"910 7th St, Atlanta, GA 30301" +242933,Wired Headphones,1,11.99,08/21/19 18:43,"91 Willow St, Atlanta, GA 30301" +242934,Bose SoundSport Headphones,1,99.99,08/28/19 04:21,"28 Wilson St, Los Angeles, CA 90001" +242935,Bose SoundSport Headphones,1,99.99,08/28/19 12:45,"525 Lincoln St, Dallas, TX 75001" +242936,USB-C Charging Cable,1,11.95,08/18/19 03:33,"20 11th St, San Francisco, CA 94016" +242937,iPhone,1,700,08/14/19 21:39,"136 1st St, Dallas, TX 75001" +242937,Wired Headphones,1,11.99,08/14/19 21:39,"136 1st St, Dallas, TX 75001" +242938,AA Batteries (4-pack),2,3.84,08/06/19 20:41,"221 Jefferson St, Atlanta, GA 30301" +242939,Lightning Charging Cable,1,14.95,08/30/19 13:52,"554 6th St, San Francisco, CA 94016" +242940,Lightning Charging Cable,1,14.95,08/05/19 13:14,"866 Forest St, Los Angeles, CA 90001" +242941,Macbook Pro Laptop,1,1700,08/19/19 19:32,"53 Pine St, Los Angeles, CA 90001" +242942,Bose SoundSport Headphones,1,99.99,08/13/19 23:25,"331 13th St, Boston, MA 02215" +242943,20in Monitor,1,109.99,08/07/19 21:13,"638 West St, San Francisco, CA 94016" +242943,Flatscreen TV,1,300,08/07/19 21:13,"638 West St, San Francisco, CA 94016" +242944,Vareebadd Phone,1,400,08/23/19 10:29,"236 Ridge St, Atlanta, GA 30301" +242945,34in Ultrawide Monitor,1,379.99,08/17/19 01:23,"646 9th St, Los Angeles, CA 90001" +242946,USB-C Charging Cable,1,11.95,08/04/19 21:24,"396 Sunset St, Seattle, WA 98101" +242947,AAA Batteries (4-pack),2,2.99,08/27/19 21:06,"82 13th St, Atlanta, GA 30301" +242948,Bose SoundSport Headphones,1,99.99,08/25/19 17:48,"534 Wilson St, Austin, TX 73301" +242949,27in 4K Gaming Monitor,1,389.99,08/04/19 08:33,"662 Pine St, Seattle, WA 98101" +242950,USB-C Charging Cable,1,11.95,08/04/19 23:20,"96 10th St, San Francisco, CA 94016" +242951,27in FHD Monitor,1,149.99,08/21/19 11:30,"109 Park St, Austin, TX 73301" +242951,Apple Airpods Headphones,1,150,08/21/19 11:30,"109 Park St, Austin, TX 73301" +242952,Macbook Pro Laptop,1,1700,08/09/19 19:52,"782 12th St, Austin, TX 73301" +242953,Bose SoundSport Headphones,1,99.99,08/06/19 18:33,"121 Hickory St, New York City, NY 10001" +242954,20in Monitor,1,109.99,08/31/19 20:39,"332 Lake St, Atlanta, GA 30301" +242955,AA Batteries (4-pack),1,3.84,08/18/19 08:23,"176 Lakeview St, Los Angeles, CA 90001" +242956,Vareebadd Phone,1,400,08/06/19 13:35,"28 10th St, Dallas, TX 75001" +242957,Lightning Charging Cable,1,14.95,08/17/19 20:22,"82 5th St, Los Angeles, CA 90001" +242958,AA Batteries (4-pack),2,3.84,08/16/19 01:25,"255 Lake St, Atlanta, GA 30301" +242959,iPhone,1,700,08/15/19 12:56,"848 13th St, New York City, NY 10001" +242959,Wired Headphones,1,11.99,08/15/19 12:56,"848 13th St, New York City, NY 10001" +242960,Macbook Pro Laptop,1,1700,08/21/19 14:17,"355 Pine St, Los Angeles, CA 90001" +242961,27in 4K Gaming Monitor,1,389.99,08/11/19 11:02,"703 Lake St, New York City, NY 10001" +242962,Bose SoundSport Headphones,1,99.99,08/28/19 17:54,"322 Washington St, Boston, MA 02215" +242963,AAA Batteries (4-pack),1,2.99,08/21/19 18:30,"876 12th St, Austin, TX 73301" +242964,LG Dryer,1,600.0,08/19/19 11:49,"338 9th St, San Francisco, CA 94016" +242965,Apple Airpods Headphones,1,150,08/10/19 08:36,"229 Jefferson St, Seattle, WA 98101" +242966,AAA Batteries (4-pack),1,2.99,08/17/19 16:15,"45 Willow St, San Francisco, CA 94016" +242967,USB-C Charging Cable,1,11.95,08/27/19 14:36,"622 Sunset St, Seattle, WA 98101" +242968,AA Batteries (4-pack),1,3.84,08/26/19 23:27,"922 Cedar St, Boston, MA 02215" +242969,Lightning Charging Cable,1,14.95,08/28/19 12:21,"224 11th St, Boston, MA 02215" +242970,Flatscreen TV,1,300,08/30/19 10:43,"151 Lakeview St, San Francisco, CA 94016" +242971,AAA Batteries (4-pack),3,2.99,08/08/19 11:19,"678 Walnut St, San Francisco, CA 94016" +242972,AAA Batteries (4-pack),1,2.99,08/23/19 16:48,"837 Sunset St, New York City, NY 10001" +242973,27in 4K Gaming Monitor,1,389.99,08/08/19 09:29,"626 13th St, Boston, MA 02215" +242974,Wired Headphones,1,11.99,08/12/19 07:50,"591 4th St, Seattle, WA 98101" +242975,iPhone,1,700,08/11/19 20:48,"880 Pine St, San Francisco, CA 94016" +242976,27in FHD Monitor,1,149.99,08/09/19 17:41,"21 Church St, New York City, NY 10001" +242977,AA Batteries (4-pack),1,3.84,08/29/19 21:49,"456 1st St, San Francisco, CA 94016" +242978,iPhone,1,700,08/08/19 14:34,"145 Jefferson St, Atlanta, GA 30301" +242979,AAA Batteries (4-pack),1,2.99,08/04/19 21:41,"987 Elm St, Atlanta, GA 30301" +242980,AA Batteries (4-pack),1,3.84,08/29/19 00:22,"96 West St, Austin, TX 73301" +242981,AA Batteries (4-pack),1,3.84,08/09/19 21:58,"684 Hickory St, Seattle, WA 98101" +242982,Lightning Charging Cable,1,14.95,08/17/19 21:15,"590 Lake St, New York City, NY 10001" +242983,ThinkPad Laptop,1,999.99,08/25/19 22:12,"364 Hill St, Seattle, WA 98101" +242984,Google Phone,1,600,08/20/19 18:11,"362 5th St, San Francisco, CA 94016" +242984,Wired Headphones,1,11.99,08/20/19 18:11,"362 5th St, San Francisco, CA 94016" +242985,20in Monitor,1,109.99,08/14/19 00:05,"158 Jackson St, Dallas, TX 75001" +242986,Bose SoundSport Headphones,1,99.99,08/21/19 08:51,"716 Maple St, Portland, OR 97035" +242987,Apple Airpods Headphones,1,150,08/08/19 13:11,"245 Highland St, San Francisco, CA 94016" +242988,LG Washing Machine,1,600.0,08/04/19 12:04,"909 9th St, Dallas, TX 75001" +242989,LG Washing Machine,1,600.0,08/31/19 15:16,"438 Church St, San Francisco, CA 94016" +242990,AAA Batteries (4-pack),1,2.99,08/04/19 09:08,"829 Hickory St, Austin, TX 73301" +242991,USB-C Charging Cable,1,11.95,08/23/19 12:06,"259 1st St, Los Angeles, CA 90001" +,,,,, +242992,Wired Headphones,1,11.99,08/10/19 12:30,"245 12th St, Seattle, WA 98101" +242993,Wired Headphones,1,11.99,08/15/19 16:02,"456 Highland St, San Francisco, CA 94016" +242994,20in Monitor,1,109.99,08/24/19 23:57,"780 Lincoln St, Dallas, TX 75001" +242994,Wired Headphones,1,11.99,08/24/19 23:57,"780 Lincoln St, Dallas, TX 75001" +242995,Lightning Charging Cable,1,14.95,08/14/19 10:32,"671 Willow St, New York City, NY 10001" +242996,Lightning Charging Cable,2,14.95,08/31/19 13:37,"160 6th St, New York City, NY 10001" +242997,Lightning Charging Cable,1,14.95,08/26/19 15:47,"989 Maple St, Atlanta, GA 30301" +242998,Wired Headphones,1,11.99,08/05/19 17:07,"840 Washington St, Atlanta, GA 30301" +242999,Google Phone,1,600,08/09/19 06:47,"609 Cherry St, Seattle, WA 98101" +243000,AA Batteries (4-pack),1,3.84,08/16/19 11:53,"959 Center St, San Francisco, CA 94016" +243001,ThinkPad Laptop,1,999.99,08/23/19 07:33,"810 Lincoln St, San Francisco, CA 94016" +243002,Wired Headphones,1,11.99,08/02/19 11:44,"104 Adams St, San Francisco, CA 94016" +243003,AA Batteries (4-pack),2,3.84,08/13/19 13:57,"232 Washington St, New York City, NY 10001" +243004,USB-C Charging Cable,1,11.95,08/06/19 19:37,"495 Cedar St, Boston, MA 02215" +243005,USB-C Charging Cable,1,11.95,08/28/19 13:39,"221 Forest St, Dallas, TX 75001" +243006,AAA Batteries (4-pack),2,2.99,08/03/19 10:25,"977 6th St, San Francisco, CA 94016" +243007,AA Batteries (4-pack),1,3.84,08/26/19 08:55,"435 Hill St, San Francisco, CA 94016" +243008,USB-C Charging Cable,1,11.95,08/23/19 11:28,"287 Wilson St, San Francisco, CA 94016" +243009,Macbook Pro Laptop,1,1700,08/26/19 20:51,"335 5th St, Dallas, TX 75001" +243010,Lightning Charging Cable,1,14.95,08/09/19 23:01,"386 Walnut St, Seattle, WA 98101" +243011,Lightning Charging Cable,1,14.95,08/20/19 22:39,"702 4th St, San Francisco, CA 94016" +243012,USB-C Charging Cable,1,11.95,08/08/19 16:32,"167 West St, Seattle, WA 98101" +243012,Wired Headphones,1,11.99,08/08/19 16:32,"167 West St, Seattle, WA 98101" +243013,AA Batteries (4-pack),1,3.84,08/19/19 19:16,"11 9th St, San Francisco, CA 94016" +243014,Lightning Charging Cable,1,14.95,08/31/19 08:25,"251 River St, Portland, OR 97035" +243015,Bose SoundSport Headphones,1,99.99,08/01/19 21:01,"501 9th St, Dallas, TX 75001" +243016,AAA Batteries (4-pack),1,2.99,08/10/19 10:32,"16 Church St, Los Angeles, CA 90001" +243017,AAA Batteries (4-pack),2,2.99,08/20/19 17:07,"857 Lakeview St, New York City, NY 10001" +243018,27in FHD Monitor,1,149.99,08/20/19 11:07,"896 Sunset St, New York City, NY 10001" +243019,34in Ultrawide Monitor,1,379.99,08/11/19 15:00,"180 Lakeview St, Portland, OR 97035" +243020,USB-C Charging Cable,1,11.95,08/13/19 22:17,"184 Meadow St, Los Angeles, CA 90001" +243021,AAA Batteries (4-pack),2,2.99,08/16/19 16:24,"892 5th St, Portland, OR 97035" +243022,Lightning Charging Cable,1,14.95,08/12/19 18:10,"302 South St, Los Angeles, CA 90001" +243023,Bose SoundSport Headphones,1,99.99,08/05/19 17:14,"888 5th St, Atlanta, GA 30301" +243024,AA Batteries (4-pack),1,3.84,08/12/19 23:48,"381 2nd St, Dallas, TX 75001" +243025,Apple Airpods Headphones,1,150,08/08/19 10:01,"903 Adams St, Atlanta, GA 30301" +243026,Bose SoundSport Headphones,1,99.99,08/16/19 21:12,"594 10th St, San Francisco, CA 94016" +243027,AA Batteries (4-pack),3,3.84,08/04/19 21:48,"998 1st St, Dallas, TX 75001" +243028,AAA Batteries (4-pack),1,2.99,08/01/19 11:03,"822 Spruce St, Portland, ME 04101" +243029,20in Monitor,1,109.99,08/15/19 06:42,"205 Chestnut St, San Francisco, CA 94016" +243030,Wired Headphones,1,11.99,08/02/19 22:38,"202 Main St, San Francisco, CA 94016" +243030,USB-C Charging Cable,2,11.95,08/02/19 22:38,"202 Main St, San Francisco, CA 94016" +243031,34in Ultrawide Monitor,1,379.99,08/18/19 13:27,"145 Maple St, Portland, OR 97035" +243032,34in Ultrawide Monitor,1,379.99,08/09/19 14:32,"636 Maple St, Boston, MA 02215" +243033,ThinkPad Laptop,1,999.99,08/12/19 14:54,"15 8th St, New York City, NY 10001" +243034,Lightning Charging Cable,1,14.95,08/26/19 08:41,"425 Maple St, San Francisco, CA 94016" +243035,Apple Airpods Headphones,1,150,08/16/19 17:06,"1 Pine St, Austin, TX 73301" +243036,Lightning Charging Cable,1,14.95,08/29/19 16:17,"732 9th St, Boston, MA 02215" +243037,Lightning Charging Cable,1,14.95,08/31/19 16:52,"16 Spruce St, Los Angeles, CA 90001" +243038,34in Ultrawide Monitor,1,379.99,08/02/19 18:24,"595 4th St, Portland, OR 97035" +243039,Lightning Charging Cable,2,14.95,08/01/19 11:03,"974 Elm St, Austin, TX 73301" +243040,27in 4K Gaming Monitor,1,389.99,08/06/19 15:11,"689 6th St, Los Angeles, CA 90001" +243041,iPhone,1,700,08/03/19 18:36,"121 Ridge St, Dallas, TX 75001" +243041,AA Batteries (4-pack),2,3.84,08/03/19 18:36,"121 Ridge St, Dallas, TX 75001" +243042,Apple Airpods Headphones,1,150,08/14/19 15:04,"987 Madison St, Los Angeles, CA 90001" +243043,27in 4K Gaming Monitor,1,389.99,08/14/19 23:27,"797 8th St, San Francisco, CA 94016" +243044,LG Dryer,1,600.0,08/13/19 22:21,"943 Park St, San Francisco, CA 94016" +243045,Wired Headphones,1,11.99,08/09/19 13:26,"411 Ridge St, New York City, NY 10001" +243046,Bose SoundSport Headphones,1,99.99,08/14/19 23:16,"748 Spruce St, Dallas, TX 75001" +243047,34in Ultrawide Monitor,1,379.99,08/18/19 00:29,"554 Madison St, Atlanta, GA 30301" +243048,AAA Batteries (4-pack),1,2.99,08/07/19 23:44,"708 14th St, Los Angeles, CA 90001" +243049,Lightning Charging Cable,1,14.95,08/08/19 05:09,"758 Washington St, Austin, TX 73301" +243050,Wired Headphones,1,11.99,08/21/19 22:56,"316 1st St, New York City, NY 10001" +243051,USB-C Charging Cable,1,11.95,08/19/19 10:46,"311 Jackson St, Atlanta, GA 30301" +243052,AA Batteries (4-pack),2,3.84,08/09/19 08:42,"467 Church St, Atlanta, GA 30301" +243053,USB-C Charging Cable,1,11.95,08/05/19 20:13,"191 Center St, Boston, MA 02215" +243054,Bose SoundSport Headphones,1,99.99,08/26/19 16:38,"951 Willow St, New York City, NY 10001" +243055,27in 4K Gaming Monitor,1,389.99,08/09/19 11:40,"724 Sunset St, Boston, MA 02215" +243056,AAA Batteries (4-pack),1,2.99,08/08/19 15:15,"972 9th St, Los Angeles, CA 90001" +243057,Lightning Charging Cable,1,14.95,08/08/19 16:18,"153 4th St, Dallas, TX 75001" +243058,AA Batteries (4-pack),1,3.84,08/11/19 11:11,"285 13th St, Portland, OR 97035" +243059,34in Ultrawide Monitor,1,379.99,08/11/19 14:31,"412 Maple St, Atlanta, GA 30301" +243060,Apple Airpods Headphones,1,150,08/14/19 07:36,"267 8th St, San Francisco, CA 94016" +243061,Google Phone,1,600,08/16/19 20:29,"853 Elm St, Los Angeles, CA 90001" +243061,Lightning Charging Cable,1,14.95,08/16/19 20:29,"853 Elm St, Los Angeles, CA 90001" +243062,Bose SoundSport Headphones,1,99.99,08/28/19 19:43,"875 Jefferson St, Portland, OR 97035" +243063,Bose SoundSport Headphones,1,99.99,08/11/19 12:22,"626 Madison St, Atlanta, GA 30301" +243064,20in Monitor,1,109.99,08/28/19 01:23,"635 Park St, New York City, NY 10001" +243065,USB-C Charging Cable,1,11.95,08/17/19 23:48,"284 Chestnut St, New York City, NY 10001" +243066,Wired Headphones,1,11.99,08/20/19 20:41,"922 South St, Los Angeles, CA 90001" +243067,Lightning Charging Cable,1,14.95,08/31/19 11:24,"3 Spruce St, Los Angeles, CA 90001" +243068,Wired Headphones,1,11.99,08/26/19 19:58,"187 Meadow St, Portland, OR 97035" +243069,Bose SoundSport Headphones,1,99.99,08/12/19 14:42,"733 Cedar St, Portland, OR 97035" +243070,AA Batteries (4-pack),2,3.84,08/23/19 14:13,"523 Lake St, San Francisco, CA 94016" +243071,Vareebadd Phone,1,400,08/16/19 22:33,"205 Elm St, Los Angeles, CA 90001" +243072,USB-C Charging Cable,1,11.95,08/29/19 23:19,"693 Spruce St, New York City, NY 10001" +243073,AAA Batteries (4-pack),2,2.99,08/07/19 22:23,"359 Dogwood St, Seattle, WA 98101" +243074,Lightning Charging Cable,1,14.95,08/28/19 11:09,"494 10th St, New York City, NY 10001" +243075,34in Ultrawide Monitor,1,379.99,08/20/19 02:58,"551 Adams St, Seattle, WA 98101" +243076,USB-C Charging Cable,1,11.95,08/28/19 11:53,"210 Park St, San Francisco, CA 94016" +243077,Lightning Charging Cable,1,14.95,08/22/19 14:13,"578 13th St, Atlanta, GA 30301" +243078,ThinkPad Laptop,1,999.99,08/04/19 09:08,"699 Hickory St, Seattle, WA 98101" +243079,USB-C Charging Cable,1,11.95,08/04/19 14:03,"639 Meadow St, New York City, NY 10001" +243080,AAA Batteries (4-pack),2,2.99,08/27/19 16:12,"658 9th St, New York City, NY 10001" +243081,AAA Batteries (4-pack),2,2.99,08/19/19 00:14,"819 Jefferson St, Dallas, TX 75001" +243082,Macbook Pro Laptop,1,1700,08/20/19 18:56,"810 Jackson St, Boston, MA 02215" +243083,USB-C Charging Cable,1,11.95,08/30/19 21:39,"899 5th St, Dallas, TX 75001" +243084,Flatscreen TV,1,300,08/20/19 10:11,"171 Lakeview St, Los Angeles, CA 90001" +243085,Macbook Pro Laptop,1,1700,08/08/19 12:48,"790 4th St, San Francisco, CA 94016" +243086,Bose SoundSport Headphones,1,99.99,08/20/19 22:50,"811 Willow St, San Francisco, CA 94016" +243087,Flatscreen TV,1,300,08/22/19 18:01,"269 Main St, San Francisco, CA 94016" +243088,Vareebadd Phone,1,400,08/13/19 19:10,"918 13th St, Boston, MA 02215" +243088,USB-C Charging Cable,1,11.95,08/13/19 19:10,"918 13th St, Boston, MA 02215" +243089,ThinkPad Laptop,1,999.99,08/26/19 00:07,"701 Cedar St, Portland, OR 97035" +243090,Flatscreen TV,1,300,08/21/19 21:09,"665 Spruce St, Portland, OR 97035" +243090,Bose SoundSport Headphones,1,99.99,08/21/19 21:09,"665 Spruce St, Portland, OR 97035" +243091,Wired Headphones,1,11.99,08/07/19 13:07,"730 Hill St, New York City, NY 10001" +243092,Lightning Charging Cable,1,14.95,08/06/19 01:07,"663 River St, Boston, MA 02215" +243093,Lightning Charging Cable,1,14.95,08/11/19 12:41,"257 Cedar St, New York City, NY 10001" +243094,AA Batteries (4-pack),1,3.84,08/16/19 15:45,"448 Spruce St, Dallas, TX 75001" +243095,USB-C Charging Cable,1,11.95,08/23/19 12:35,"913 River St, Seattle, WA 98101" +243096,34in Ultrawide Monitor,1,379.99,08/28/19 18:13,"706 2nd St, San Francisco, CA 94016" +243097,USB-C Charging Cable,1,11.95,08/13/19 12:48,"188 Lake St, San Francisco, CA 94016" +243098,27in FHD Monitor,1,149.99,08/18/19 19:58,"201 Sunset St, New York City, NY 10001" +243099,USB-C Charging Cable,1,11.95,08/16/19 10:21,"463 Willow St, San Francisco, CA 94016" +243100,34in Ultrawide Monitor,1,379.99,08/09/19 12:34,"237 10th St, Atlanta, GA 30301" +243101,Wired Headphones,1,11.99,08/06/19 16:05,"444 Jefferson St, San Francisco, CA 94016" +243102,AAA Batteries (4-pack),1,2.99,08/27/19 10:39,"347 West St, San Francisco, CA 94016" +243103,iPhone,1,700,08/02/19 13:11,"159 Adams St, Los Angeles, CA 90001" +243104,27in 4K Gaming Monitor,1,389.99,08/13/19 08:58,"959 Adams St, New York City, NY 10001" +243105,Apple Airpods Headphones,1,150,08/14/19 22:29,"449 7th St, Atlanta, GA 30301" +243106,27in FHD Monitor,1,149.99,08/15/19 20:21,"595 Lake St, Atlanta, GA 30301" +243107,27in FHD Monitor,1,149.99,08/15/19 10:48,"545 Church St, San Francisco, CA 94016" +243108,AAA Batteries (4-pack),2,2.99,08/05/19 19:02,"502 4th St, New York City, NY 10001" +243108,Wired Headphones,1,11.99,08/05/19 19:02,"502 4th St, New York City, NY 10001" +243109,Lightning Charging Cable,1,14.95,08/16/19 16:59,"451 Sunset St, Atlanta, GA 30301" +243110,Apple Airpods Headphones,1,150,08/21/19 13:54,"367 10th St, Boston, MA 02215" +243111,Bose SoundSport Headphones,1,99.99,08/08/19 12:45,"958 Johnson St, San Francisco, CA 94016" +243112,Lightning Charging Cable,2,14.95,08/25/19 20:26,"873 Cherry St, Seattle, WA 98101" +243113,ThinkPad Laptop,1,999.99,08/17/19 22:07,"986 Pine St, Los Angeles, CA 90001" +243114,Wired Headphones,1,11.99,08/04/19 08:13,"710 10th St, Austin, TX 73301" +243115,AA Batteries (4-pack),2,3.84,08/25/19 19:44,"164 Highland St, San Francisco, CA 94016" +243116,AAA Batteries (4-pack),1,2.99,08/26/19 18:17,"564 Adams St, Los Angeles, CA 90001" +243117,Flatscreen TV,1,300,08/28/19 17:32,"575 7th St, Los Angeles, CA 90001" +243118,AA Batteries (4-pack),1,3.84,08/12/19 18:52,"636 Park St, Seattle, WA 98101" +243119,Wired Headphones,1,11.99,08/27/19 12:02,"404 Lakeview St, Atlanta, GA 30301" +243120,Apple Airpods Headphones,1,150,08/26/19 23:41,"600 Church St, San Francisco, CA 94016" +243121,Wired Headphones,1,11.99,08/22/19 20:13,"842 6th St, Boston, MA 02215" +243122,Lightning Charging Cable,1,14.95,08/12/19 22:02,"767 6th St, Portland, OR 97035" +243123,Wired Headphones,1,11.99,08/24/19 19:36,"443 Cedar St, Los Angeles, CA 90001" +243124,Vareebadd Phone,1,400,08/18/19 17:37,"453 Ridge St, New York City, NY 10001" +243125,Wired Headphones,1,11.99,08/14/19 11:21,"112 5th St, Boston, MA 02215" +243126,Wired Headphones,1,11.99,08/01/19 12:39,"79 Pine St, San Francisco, CA 94016" +243127,ThinkPad Laptop,1,999.99,08/03/19 01:26,"86 Jackson St, Atlanta, GA 30301" +243128,27in 4K Gaming Monitor,1,389.99,08/26/19 17:04,"414 Lincoln St, San Francisco, CA 94016" +243129,AAA Batteries (4-pack),1,2.99,08/14/19 17:00,"241 12th St, San Francisco, CA 94016" +243130,Apple Airpods Headphones,1,150,08/01/19 09:33,"911 Lincoln St, Boston, MA 02215" +243131,Apple Airpods Headphones,1,150,08/18/19 14:57,"721 13th St, Los Angeles, CA 90001" +243132,27in 4K Gaming Monitor,1,389.99,08/30/19 00:16,"107 Hickory St, San Francisco, CA 94016" +243133,USB-C Charging Cable,1,11.95,08/07/19 12:12,"431 Hill St, San Francisco, CA 94016" +243134,Wired Headphones,1,11.99,08/05/19 19:09,"116 12th St, Portland, OR 97035" +243135,AAA Batteries (4-pack),1,2.99,08/10/19 21:26,"624 Highland St, Boston, MA 02215" +243136,AAA Batteries (4-pack),1,2.99,08/03/19 23:11,"672 Cedar St, Los Angeles, CA 90001" +243137,Lightning Charging Cable,1,14.95,08/23/19 15:21,"522 Lake St, San Francisco, CA 94016" +243138,AAA Batteries (4-pack),1,2.99,08/09/19 14:50,"472 River St, Boston, MA 02215" +243139,Wired Headphones,1,11.99,08/11/19 11:03,"532 13th St, New York City, NY 10001" +243140,27in 4K Gaming Monitor,1,389.99,08/31/19 19:21,"316 13th St, San Francisco, CA 94016" +243141,USB-C Charging Cable,1,11.95,08/03/19 22:32,"870 4th St, Los Angeles, CA 90001" +243142,Bose SoundSport Headphones,1,99.99,08/15/19 11:35,"904 Park St, Los Angeles, CA 90001" +243142,27in 4K Gaming Monitor,1,389.99,08/15/19 11:35,"904 Park St, Los Angeles, CA 90001" +243143,Wired Headphones,2,11.99,08/04/19 11:25,"489 South St, New York City, NY 10001" +243144,USB-C Charging Cable,2,11.95,08/06/19 09:09,"788 Walnut St, Portland, ME 04101" +243145,Vareebadd Phone,1,400,08/17/19 14:13,"8 1st St, San Francisco, CA 94016" +243146,USB-C Charging Cable,1,11.95,08/23/19 14:39,"706 8th St, New York City, NY 10001" +243147,Bose SoundSport Headphones,1,99.99,08/31/19 16:56,"256 Church St, Los Angeles, CA 90001" +243148,Wired Headphones,1,11.99,08/26/19 19:07,"546 Jefferson St, New York City, NY 10001" +243149,Lightning Charging Cable,1,14.95,08/19/19 18:08,"39 Park St, Los Angeles, CA 90001" +243150,20in Monitor,1,109.99,08/10/19 19:46,"958 Main St, Los Angeles, CA 90001" +243151,Lightning Charging Cable,1,14.95,08/09/19 14:16,"357 2nd St, Dallas, TX 75001" +243152,27in 4K Gaming Monitor,1,389.99,08/12/19 19:48,"386 Johnson St, San Francisco, CA 94016" +243153,USB-C Charging Cable,1,11.95,08/04/19 21:22,"314 7th St, Atlanta, GA 30301" +243154,27in FHD Monitor,1,149.99,08/28/19 10:16,"246 Church St, San Francisco, CA 94016" +243155,USB-C Charging Cable,1,11.95,08/25/19 22:28,"920 Forest St, Los Angeles, CA 90001" +243156,27in FHD Monitor,1,149.99,08/28/19 23:43,"675 Elm St, Boston, MA 02215" +243157,USB-C Charging Cable,1,11.95,08/11/19 09:54,"946 Lincoln St, San Francisco, CA 94016" +243158,AA Batteries (4-pack),1,3.84,08/27/19 13:40,"111 River St, Atlanta, GA 30301" +243159,USB-C Charging Cable,1,11.95,08/12/19 07:27,"997 North St, Boston, MA 02215" +243160,Apple Airpods Headphones,1,150,08/10/19 19:18,"792 5th St, Dallas, TX 75001" +243161,Lightning Charging Cable,1,14.95,08/09/19 20:24,"279 Dogwood St, Los Angeles, CA 90001" +243162,27in FHD Monitor,1,149.99,08/31/19 13:27,"169 Pine St, Seattle, WA 98101" +243163,AAA Batteries (4-pack),1,2.99,08/30/19 15:06,"993 North St, San Francisco, CA 94016" +243164,USB-C Charging Cable,1,11.95,08/14/19 15:04,"622 14th St, New York City, NY 10001" +243165,Wired Headphones,1,11.99,08/25/19 14:51,"859 South St, Seattle, WA 98101" +243166,iPhone,1,700,08/07/19 17:22,"48 Maple St, Atlanta, GA 30301" +243166,Wired Headphones,1,11.99,08/07/19 17:22,"48 Maple St, Atlanta, GA 30301" +243167,AAA Batteries (4-pack),1,2.99,08/14/19 20:57,"17 Lincoln St, San Francisco, CA 94016" +243168,USB-C Charging Cable,2,11.95,08/15/19 11:11,"423 10th St, Atlanta, GA 30301" +243169,Apple Airpods Headphones,1,150,08/04/19 13:29,"134 Main St, Los Angeles, CA 90001" +243170,Wired Headphones,1,11.99,08/25/19 10:48,"13 13th St, San Francisco, CA 94016" +243171,iPhone,1,700,08/11/19 02:09,"423 4th St, Austin, TX 73301" +243172,AAA Batteries (4-pack),1,2.99,08/28/19 20:39,"666 Meadow St, New York City, NY 10001" +243173,USB-C Charging Cable,1,11.95,08/21/19 08:13,"14 5th St, San Francisco, CA 94016" +243174,27in 4K Gaming Monitor,1,389.99,08/14/19 19:06,"86 West St, Boston, MA 02215" +243175,AAA Batteries (4-pack),1,2.99,08/26/19 18:50,"475 Cedar St, New York City, NY 10001" +243176,Lightning Charging Cable,1,14.95,08/01/19 15:03,"648 West St, Los Angeles, CA 90001" +243177,Wired Headphones,1,11.99,08/08/19 10:10,"159 Maple St, Portland, OR 97035" +243178,AA Batteries (4-pack),1,3.84,08/25/19 17:52,"88 11th St, New York City, NY 10001" +243179,Bose SoundSport Headphones,1,99.99,08/15/19 21:17,"367 11th St, Austin, TX 73301" +243179,iPhone,1,700,08/15/19 21:17,"367 11th St, Austin, TX 73301" +243180,27in FHD Monitor,1,149.99,08/14/19 11:54,"179 Lincoln St, Atlanta, GA 30301" +243181,AA Batteries (4-pack),1,3.84,08/17/19 10:29,"159 Willow St, Portland, OR 97035" +243182,Apple Airpods Headphones,1,150,08/16/19 22:42,"266 Walnut St, San Francisco, CA 94016" +243183,iPhone,1,700,08/28/19 18:47,"202 6th St, Boston, MA 02215" +243183,Wired Headphones,2,11.99,08/28/19 18:47,"202 6th St, Boston, MA 02215" +243184,iPhone,1,700,08/01/19 15:53,"73 Wilson St, Dallas, TX 75001" +243185,Apple Airpods Headphones,1,150,08/10/19 14:14,"408 Main St, San Francisco, CA 94016" +243186,USB-C Charging Cable,1,11.95,08/21/19 12:29,"825 Walnut St, Dallas, TX 75001" +243187,USB-C Charging Cable,1,11.95,08/01/19 10:59,"209 13th St, Austin, TX 73301" +243188,Wired Headphones,1,11.99,08/03/19 08:59,"894 West St, Boston, MA 02215" +243189,Lightning Charging Cable,1,14.95,08/18/19 17:11,"211 West St, San Francisco, CA 94016" +243190,Wired Headphones,1,11.99,08/14/19 19:38,"895 Willow St, Boston, MA 02215" +243191,Wired Headphones,1,11.99,08/07/19 13:01,"675 Wilson St, Los Angeles, CA 90001" +243192,AAA Batteries (4-pack),2,2.99,08/23/19 18:55,"981 Ridge St, New York City, NY 10001" +243193,USB-C Charging Cable,1,11.95,08/09/19 11:32,"535 Johnson St, Atlanta, GA 30301" +243194,AA Batteries (4-pack),1,3.84,08/06/19 21:02,"153 Adams St, San Francisco, CA 94016" +243195,Vareebadd Phone,1,400,08/19/19 23:37,"594 10th St, San Francisco, CA 94016" +,,,,, +243196,Google Phone,1,600,08/15/19 07:19,"650 Walnut St, Seattle, WA 98101" +243197,Lightning Charging Cable,1,14.95,08/28/19 06:15,"942 13th St, San Francisco, CA 94016" +243198,Google Phone,1,600,08/04/19 12:18,"377 14th St, Atlanta, GA 30301" +243199,USB-C Charging Cable,1,11.95,08/07/19 15:29,"311 Adams St, San Francisco, CA 94016" +243200,iPhone,1,700,08/14/19 11:17,"36 Johnson St, Seattle, WA 98101" +243201,Wired Headphones,1,11.99,08/11/19 15:12,"145 Lake St, San Francisco, CA 94016" +243202,ThinkPad Laptop,1,999.99,08/15/19 08:17,"191 1st St, Boston, MA 02215" +243203,Lightning Charging Cable,1,14.95,08/23/19 22:43,"237 13th St, New York City, NY 10001" +243204,iPhone,1,700,08/03/19 15:19,"165 Hill St, San Francisco, CA 94016" +243204,Wired Headphones,1,11.99,08/03/19 15:19,"165 Hill St, San Francisco, CA 94016" +243205,Google Phone,1,600,08/30/19 07:57,"144 Cherry St, Austin, TX 73301" +243206,Google Phone,1,600,08/13/19 09:37,"584 North St, Portland, ME 04101" +243206,Bose SoundSport Headphones,1,99.99,08/13/19 09:37,"584 North St, Portland, ME 04101" +243207,Apple Airpods Headphones,1,150,08/16/19 11:38,"390 Hill St, Los Angeles, CA 90001" +243208,34in Ultrawide Monitor,1,379.99,08/08/19 15:41,"948 Church St, Dallas, TX 75001" +243209,USB-C Charging Cable,1,11.95,08/22/19 00:51,"51 Sunset St, Atlanta, GA 30301" +243210,Lightning Charging Cable,1,14.95,08/24/19 22:41,"44 Wilson St, San Francisco, CA 94016" +243211,Wired Headphones,1,11.99,08/29/19 17:38,"217 Cherry St, Los Angeles, CA 90001" +243212,AA Batteries (4-pack),2,3.84,08/22/19 11:13,"612 Hill St, Austin, TX 73301" +243213,Bose SoundSport Headphones,1,99.99,08/24/19 15:20,"98 Park St, Los Angeles, CA 90001" +243214,27in FHD Monitor,1,149.99,08/27/19 19:08,"415 7th St, San Francisco, CA 94016" +243215,AAA Batteries (4-pack),2,2.99,08/21/19 16:30,"742 14th St, Portland, OR 97035" +243216,Google Phone,1,600,08/15/19 15:22,"334 Sunset St, New York City, NY 10001" +243217,AAA Batteries (4-pack),4,2.99,08/24/19 07:21,"961 2nd St, New York City, NY 10001" +243218,USB-C Charging Cable,2,11.95,08/31/19 16:34,"842 Lincoln St, Los Angeles, CA 90001" +243219,Flatscreen TV,1,300,08/02/19 07:52,"911 8th St, Los Angeles, CA 90001" +243220,Lightning Charging Cable,2,14.95,08/24/19 11:46,"612 Jackson St, Austin, TX 73301" +243221,ThinkPad Laptop,1,999.99,08/07/19 11:08,"428 7th St, Dallas, TX 75001" +243221,34in Ultrawide Monitor,1,379.99,08/07/19 11:08,"428 7th St, Dallas, TX 75001" +243222,Wired Headphones,1,11.99,08/25/19 21:28,"532 Cherry St, New York City, NY 10001" +243223,Lightning Charging Cable,1,14.95,08/10/19 15:56,"117 Forest St, San Francisco, CA 94016" +243224,AA Batteries (4-pack),2,3.84,08/03/19 10:33,"43 Sunset St, Dallas, TX 75001" +243225,Lightning Charging Cable,1,14.95,08/06/19 18:49,"796 5th St, Portland, OR 97035" +243226,AAA Batteries (4-pack),1,2.99,08/26/19 09:35,"394 Cherry St, Seattle, WA 98101" +243227,AA Batteries (4-pack),1,3.84,08/16/19 18:38,"865 Park St, Los Angeles, CA 90001" +243228,USB-C Charging Cable,1,11.95,08/27/19 15:38,"479 12th St, Seattle, WA 98101" +243229,AA Batteries (4-pack),1,3.84,08/04/19 16:32,"977 6th St, Atlanta, GA 30301" +243230,AA Batteries (4-pack),1,3.84,08/22/19 12:18,"654 8th St, San Francisco, CA 94016" +243231,Wired Headphones,1,11.99,08/08/19 15:01,"412 10th St, Atlanta, GA 30301" +243232,AAA Batteries (4-pack),1,2.99,08/28/19 15:14,"852 14th St, Los Angeles, CA 90001" +243233,Apple Airpods Headphones,1,150,08/05/19 21:02,"381 Madison St, Dallas, TX 75001" +243234,Bose SoundSport Headphones,1,99.99,08/03/19 18:49,"409 Hill St, Atlanta, GA 30301" +243235,Lightning Charging Cable,1,14.95,08/02/19 13:04,"645 Washington St, San Francisco, CA 94016" +243236,AA Batteries (4-pack),1,3.84,08/04/19 19:25,"406 River St, Austin, TX 73301" +243237,AA Batteries (4-pack),1,3.84,08/02/19 11:55,"235 Main St, San Francisco, CA 94016" +243238,AA Batteries (4-pack),1,3.84,08/07/19 08:56,"849 Jefferson St, Los Angeles, CA 90001" +243239,27in FHD Monitor,1,149.99,08/10/19 11:15,"398 Johnson St, San Francisco, CA 94016" +243240,Lightning Charging Cable,1,14.95,08/06/19 17:47,"846 Washington St, San Francisco, CA 94016" +243241,AA Batteries (4-pack),1,3.84,08/23/19 11:55,"72 Meadow St, Austin, TX 73301" +243242,Apple Airpods Headphones,1,150,08/09/19 15:50,"217 13th St, Portland, ME 04101" +243243,AA Batteries (4-pack),4,3.84,08/19/19 16:53,"866 9th St, Los Angeles, CA 90001" +243244,Apple Airpods Headphones,1,150,08/21/19 22:54,"973 Lincoln St, Los Angeles, CA 90001" +243245,27in 4K Gaming Monitor,1,389.99,08/11/19 18:32,"886 Center St, San Francisco, CA 94016" +243246,iPhone,1,700,08/14/19 12:26,"22 Center St, New York City, NY 10001" +243246,Lightning Charging Cable,1,14.95,08/14/19 12:26,"22 Center St, New York City, NY 10001" +243247,Wired Headphones,2,11.99,08/05/19 15:00,"858 4th St, Dallas, TX 75001" +243248,Wired Headphones,1,11.99,08/21/19 12:50,"585 5th St, Dallas, TX 75001" +243249,Wired Headphones,1,11.99,08/21/19 18:45,"75 Elm St, Dallas, TX 75001" +243250,Wired Headphones,1,11.99,08/23/19 08:02,"118 Main St, San Francisco, CA 94016" +243251,USB-C Charging Cable,2,11.95,08/10/19 19:43,"811 6th St, San Francisco, CA 94016" +243252,ThinkPad Laptop,1,999.99,08/30/19 13:14,"95 Meadow St, Los Angeles, CA 90001" +243253,ThinkPad Laptop,1,999.99,08/29/19 06:19,"256 Jefferson St, Atlanta, GA 30301" +243254,AA Batteries (4-pack),1,3.84,08/28/19 14:21,"326 Lakeview St, Atlanta, GA 30301" +243255,Google Phone,1,600,08/11/19 07:28,"381 Dogwood St, Boston, MA 02215" +243256,Lightning Charging Cable,1,14.95,08/16/19 16:25,"139 Hill St, Boston, MA 02215" +243257,USB-C Charging Cable,1,11.95,08/29/19 15:07,"691 Church St, New York City, NY 10001" +243258,Wired Headphones,1,11.99,08/06/19 21:43,"712 Adams St, Los Angeles, CA 90001" +243259,AA Batteries (4-pack),1,3.84,08/01/19 23:20,"787 Lincoln St, Portland, ME 04101" +243260,AA Batteries (4-pack),2,3.84,08/02/19 14:10,"327 Lakeview St, Boston, MA 02215" +243261,iPhone,1,700,08/20/19 19:56,"395 Hill St, San Francisco, CA 94016" +243262,Google Phone,1,600,08/25/19 14:55,"464 Willow St, Seattle, WA 98101" +243263,Apple Airpods Headphones,1,150,08/02/19 12:49,"924 9th St, Dallas, TX 75001" +243264,USB-C Charging Cable,1,11.95,08/06/19 13:09,"409 12th St, San Francisco, CA 94016" +243265,AA Batteries (4-pack),1,3.84,08/14/19 22:11,"664 North St, Boston, MA 02215" +243266,USB-C Charging Cable,3,11.95,08/03/19 21:51,"183 Ridge St, San Francisco, CA 94016" +243267,Wired Headphones,1,11.99,08/21/19 20:09,"333 8th St, Boston, MA 02215" +243268,Bose SoundSport Headphones,1,99.99,08/13/19 11:09,"938 Madison St, Los Angeles, CA 90001" +243269,Macbook Pro Laptop,1,1700,08/30/19 21:00,"517 Chestnut St, Boston, MA 02215" +243270,Lightning Charging Cable,1,14.95,08/28/19 08:26,"291 Lakeview St, Boston, MA 02215" +243271,AA Batteries (4-pack),3,3.84,08/06/19 16:50,"130 Jackson St, San Francisco, CA 94016" +243272,Lightning Charging Cable,1,14.95,08/07/19 11:48,"82 Cherry St, San Francisco, CA 94016" +243273,AAA Batteries (4-pack),1,2.99,08/01/19 09:53,"102 Lakeview St, Boston, MA 02215" +243274,Google Phone,1,600,08/01/19 13:43,"901 Chestnut St, New York City, NY 10001" +243275,AAA Batteries (4-pack),1,2.99,08/12/19 20:22,"129 Hill St, Portland, OR 97035" +243276,Lightning Charging Cable,1,14.95,08/29/19 21:29,"73 Cedar St, Los Angeles, CA 90001" +243277,USB-C Charging Cable,1,11.95,08/12/19 21:09,"517 Hickory St, San Francisco, CA 94016" +243278,Bose SoundSport Headphones,1,99.99,08/18/19 20:30,"434 9th St, Los Angeles, CA 90001" +243279,AAA Batteries (4-pack),1,2.99,08/02/19 09:19,"625 Willow St, New York City, NY 10001" +243280,Bose SoundSport Headphones,1,99.99,08/06/19 07:50,"373 Hill St, San Francisco, CA 94016" +243281,27in FHD Monitor,1,149.99,08/28/19 07:59,"222 Pine St, Seattle, WA 98101" +243282,AAA Batteries (4-pack),1,2.99,08/10/19 20:30,"993 River St, Portland, OR 97035" +243283,AA Batteries (4-pack),1,3.84,08/01/19 04:14,"885 Church St, Los Angeles, CA 90001" +243284,Bose SoundSport Headphones,1,99.99,08/22/19 15:57,"120 Cedar St, Atlanta, GA 30301" +243285,Lightning Charging Cable,1,14.95,08/28/19 15:39,"424 Madison St, Los Angeles, CA 90001" +243286,20in Monitor,1,109.99,08/16/19 21:03,"624 Hill St, Dallas, TX 75001" +243287,AAA Batteries (4-pack),1,2.99,08/18/19 00:49,"126 Madison St, Dallas, TX 75001" +243288,LG Washing Machine,1,600.0,08/17/19 16:42,"190 Cherry St, San Francisco, CA 94016" +243289,Wired Headphones,1,11.99,08/16/19 07:46,"94 South St, Boston, MA 02215" +243290,USB-C Charging Cable,1,11.95,08/14/19 22:16,"405 River St, San Francisco, CA 94016" +243291,Apple Airpods Headphones,1,150,08/30/19 11:29,"720 1st St, Portland, OR 97035" +243292,AA Batteries (4-pack),1,3.84,08/23/19 13:45,"413 Meadow St, Portland, OR 97035" +243293,Google Phone,1,600,08/24/19 01:57,"360 Highland St, Atlanta, GA 30301" +243294,USB-C Charging Cable,1,11.95,08/17/19 05:27,"364 Forest St, Portland, ME 04101" +243295,AA Batteries (4-pack),2,3.84,08/03/19 21:45,"812 4th St, Seattle, WA 98101" +243296,iPhone,1,700,08/05/19 13:20,"604 Sunset St, Austin, TX 73301" +243296,Lightning Charging Cable,1,14.95,08/05/19 13:20,"604 Sunset St, Austin, TX 73301" +243297,AAA Batteries (4-pack),3,2.99,08/26/19 11:21,"139 Madison St, Seattle, WA 98101" +243298,34in Ultrawide Monitor,1,379.99,08/08/19 09:10,"959 Highland St, San Francisco, CA 94016" +243298,Wired Headphones,1,11.99,08/08/19 09:10,"959 Highland St, San Francisco, CA 94016" +243299,Wired Headphones,1,11.99,08/21/19 17:30,"770 Hickory St, Los Angeles, CA 90001" +243300,AAA Batteries (4-pack),1,2.99,08/25/19 11:35,"424 10th St, Atlanta, GA 30301" +243301,Macbook Pro Laptop,1,1700,08/08/19 15:50,"259 Madison St, Los Angeles, CA 90001" +243302,Lightning Charging Cable,1,14.95,08/26/19 20:50,"884 Willow St, San Francisco, CA 94016" +243303,AAA Batteries (4-pack),1,2.99,08/27/19 08:41,"954 Washington St, Atlanta, GA 30301" +243304,USB-C Charging Cable,1,11.95,08/18/19 09:43,"39 5th St, San Francisco, CA 94016" +243305,AAA Batteries (4-pack),1,2.99,08/06/19 10:54,"258 9th St, Los Angeles, CA 90001" +243306,Apple Airpods Headphones,1,150,08/30/19 12:04,"697 8th St, San Francisco, CA 94016" +,,,,, +243307,Lightning Charging Cable,1,14.95,08/28/19 12:18,"850 Lake St, Los Angeles, CA 90001" +243308,Apple Airpods Headphones,1,150,08/03/19 11:01,"673 7th St, Atlanta, GA 30301" +243309,AAA Batteries (4-pack),1,2.99,08/28/19 23:47,"88 Lake St, San Francisco, CA 94016" +243310,Wired Headphones,1,11.99,08/14/19 22:32,"799 Center St, Austin, TX 73301" +243311,Bose SoundSport Headphones,1,99.99,08/17/19 15:00,"535 North St, San Francisco, CA 94016" +243312,USB-C Charging Cable,1,11.95,08/13/19 13:32,"234 Sunset St, Los Angeles, CA 90001" +243313,iPhone,1,700,08/04/19 17:25,"281 1st St, Dallas, TX 75001" +243314,AA Batteries (4-pack),2,3.84,08/25/19 06:19,"811 Lincoln St, Dallas, TX 75001" +243315,AA Batteries (4-pack),1,3.84,08/03/19 12:54,"358 Wilson St, Boston, MA 02215" +243316,Lightning Charging Cable,1,14.95,08/19/19 10:10,"215 4th St, San Francisco, CA 94016" +243317,Bose SoundSport Headphones,1,99.99,08/09/19 08:37,"232 7th St, Los Angeles, CA 90001" +243318,Macbook Pro Laptop,1,1700,08/02/19 15:21,"827 Meadow St, New York City, NY 10001" +243319,Apple Airpods Headphones,1,150,08/21/19 20:38,"534 Jackson St, Boston, MA 02215" +243320,Lightning Charging Cable,1,14.95,08/05/19 19:00,"549 Chestnut St, Seattle, WA 98101" +243321,USB-C Charging Cable,2,11.95,08/22/19 17:25,"741 Madison St, San Francisco, CA 94016" +243322,Vareebadd Phone,1,400,08/20/19 17:52,"260 Church St, San Francisco, CA 94016" +243323,Apple Airpods Headphones,1,150,08/14/19 16:48,"40 11th St, New York City, NY 10001" +243324,USB-C Charging Cable,1,11.95,08/11/19 12:39,"354 7th St, Boston, MA 02215" +243325,Wired Headphones,1,11.99,08/09/19 10:38,"336 Highland St, Seattle, WA 98101" +243326,iPhone,1,700,08/10/19 09:20,"837 Highland St, Los Angeles, CA 90001" +243327,Flatscreen TV,1,300,08/14/19 11:07,"221 5th St, Seattle, WA 98101" +243328,AA Batteries (4-pack),1,3.84,08/13/19 16:52,"356 South St, San Francisco, CA 94016" +243329,iPhone,1,700,08/24/19 19:22,"175 Maple St, San Francisco, CA 94016" +243330,Flatscreen TV,1,300,08/05/19 20:56,"397 Highland St, Dallas, TX 75001" +243331,Wired Headphones,1,11.99,08/26/19 14:46,"917 River St, Austin, TX 73301" +243332,Lightning Charging Cable,1,14.95,08/13/19 21:06,"458 North St, New York City, NY 10001" +243333,Bose SoundSport Headphones,1,99.99,08/13/19 12:00,"141 Walnut St, San Francisco, CA 94016" +243334,Wired Headphones,1,11.99,08/31/19 22:00,"346 Center St, San Francisco, CA 94016" +243335,AAA Batteries (4-pack),2,2.99,08/11/19 19:29,"734 14th St, Seattle, WA 98101" +243336,AAA Batteries (4-pack),2,2.99,08/01/19 07:14,"15 Lakeview St, San Francisco, CA 94016" +243337,AAA Batteries (4-pack),1,2.99,08/08/19 13:22,"617 Hill St, Boston, MA 02215" +243338,AA Batteries (4-pack),1,3.84,08/12/19 21:27,"184 North St, San Francisco, CA 94016" +243339,Lightning Charging Cable,1,14.95,08/07/19 16:10,"932 4th St, San Francisco, CA 94016" +243340,27in 4K Gaming Monitor,1,389.99,08/27/19 15:11,"651 Walnut St, Boston, MA 02215" +243341,Apple Airpods Headphones,1,150,08/27/19 07:19,"655 Highland St, Los Angeles, CA 90001" +243342,Wired Headphones,1,11.99,08/09/19 23:02,"334 Center St, San Francisco, CA 94016" +243343,AAA Batteries (4-pack),1,2.99,08/26/19 19:33,"207 Cedar St, San Francisco, CA 94016" +243344,ThinkPad Laptop,1,999.99,08/12/19 14:57,"31 8th St, Dallas, TX 75001" +243345,Lightning Charging Cable,1,14.95,08/06/19 16:30,"883 8th St, Dallas, TX 75001" +243346,Lightning Charging Cable,1,14.95,08/16/19 19:02,"457 Hickory St, New York City, NY 10001" +243347,Apple Airpods Headphones,1,150,08/27/19 15:10,"197 Hill St, Atlanta, GA 30301" +243348,iPhone,1,700,08/28/19 11:25,"899 Willow St, Dallas, TX 75001" +243349,Bose SoundSport Headphones,1,99.99,08/31/19 19:45,"352 Adams St, Seattle, WA 98101" +243350,Wired Headphones,1,11.99,08/15/19 18:49,"140 Walnut St, Los Angeles, CA 90001" +243351,Lightning Charging Cable,1,14.95,08/10/19 22:38,"232 5th St, San Francisco, CA 94016" +243352,Lightning Charging Cable,1,14.95,08/14/19 01:01,"938 8th St, New York City, NY 10001" +243353,USB-C Charging Cable,1,11.95,08/09/19 06:04,"706 Pine St, Boston, MA 02215" +243354,AAA Batteries (4-pack),1,2.99,08/19/19 16:29,"520 8th St, Los Angeles, CA 90001" +243355,USB-C Charging Cable,1,11.95,08/26/19 12:33,"509 Ridge St, New York City, NY 10001" +243356,Bose SoundSport Headphones,1,99.99,08/18/19 12:33,"454 Johnson St, San Francisco, CA 94016" +243357,Macbook Pro Laptop,1,1700,08/01/19 13:19,"667 Jackson St, Atlanta, GA 30301" +243358,AA Batteries (4-pack),2,3.84,08/23/19 18:13,"876 5th St, Atlanta, GA 30301" +243358,27in FHD Monitor,1,149.99,08/23/19 18:13,"876 5th St, Atlanta, GA 30301" +243359,Macbook Pro Laptop,1,1700,08/27/19 20:08,"388 11th St, San Francisco, CA 94016" +243360,Bose SoundSport Headphones,1,99.99,08/15/19 09:28,"729 Dogwood St, Portland, OR 97035" +243361,Lightning Charging Cable,1,14.95,08/06/19 08:32,"133 South St, New York City, NY 10001" +243362,Wired Headphones,1,11.99,08/07/19 14:10,"35 Park St, Los Angeles, CA 90001" +243363,34in Ultrawide Monitor,1,379.99,08/12/19 09:05,"472 Pine St, Austin, TX 73301" +243364,Wired Headphones,1,11.99,08/17/19 21:00,"186 9th St, Los Angeles, CA 90001" +243365,20in Monitor,1,109.99,08/04/19 03:47,"700 Center St, Boston, MA 02215" +243366,Lightning Charging Cable,1,14.95,08/30/19 14:34,"900 5th St, Portland, ME 04101" +243367,Lightning Charging Cable,1,14.95,08/20/19 22:55,"555 Lakeview St, Los Angeles, CA 90001" +243368,34in Ultrawide Monitor,1,379.99,08/18/19 16:23,"445 6th St, New York City, NY 10001" +243369,Bose SoundSport Headphones,1,99.99,08/15/19 21:55,"833 Meadow St, San Francisco, CA 94016" +243370,Lightning Charging Cable,1,14.95,08/24/19 20:24,"85 South St, Los Angeles, CA 90001" +243371,USB-C Charging Cable,1,11.95,08/11/19 19:33,"533 Cherry St, San Francisco, CA 94016" +243372,Apple Airpods Headphones,1,150,08/24/19 14:38,"971 4th St, New York City, NY 10001" +243373,Google Phone,1,600,08/21/19 13:49,"90 Meadow St, Dallas, TX 75001" +243374,27in FHD Monitor,1,149.99,08/12/19 20:01,"636 4th St, Seattle, WA 98101" +243375,USB-C Charging Cable,1,11.95,08/27/19 23:32,"506 Wilson St, Portland, OR 97035" +243376,USB-C Charging Cable,1,11.95,08/28/19 09:09,"371 Wilson St, New York City, NY 10001" +243377,20in Monitor,1,109.99,08/13/19 19:26,"137 Highland St, San Francisco, CA 94016" +243378,USB-C Charging Cable,2,11.95,08/16/19 20:16,"4 11th St, San Francisco, CA 94016" +243379,Apple Airpods Headphones,1,150,08/15/19 17:05,"759 Hickory St, Boston, MA 02215" +243380,AA Batteries (4-pack),2,3.84,08/19/19 14:20,"854 Elm St, Boston, MA 02215" +243381,AAA Batteries (4-pack),1,2.99,08/11/19 15:46,"451 Lake St, Atlanta, GA 30301" +243382,34in Ultrawide Monitor,1,379.99,08/12/19 15:19,"156 1st St, New York City, NY 10001" +243383,Wired Headphones,1,11.99,08/01/19 12:23,"516 2nd St, New York City, NY 10001" +243384,AAA Batteries (4-pack),1,2.99,08/11/19 10:10,"753 Chestnut St, Seattle, WA 98101" +243385,ThinkPad Laptop,1,999.99,08/14/19 20:14,"355 Forest St, San Francisco, CA 94016" +243386,AAA Batteries (4-pack),1,2.99,08/18/19 12:28,"736 Elm St, New York City, NY 10001" +243387,USB-C Charging Cable,1,11.95,08/07/19 20:11,"492 Walnut St, Atlanta, GA 30301" +243388,34in Ultrawide Monitor,1,379.99,08/04/19 19:22,"895 Maple St, Atlanta, GA 30301" +243389,AA Batteries (4-pack),1,3.84,08/23/19 22:38,"462 Forest St, Los Angeles, CA 90001" +243390,AA Batteries (4-pack),1,3.84,08/08/19 20:08,"250 Adams St, San Francisco, CA 94016" +243391,Lightning Charging Cable,1,14.95,08/13/19 20:35,"558 Cedar St, Atlanta, GA 30301" +243392,Apple Airpods Headphones,1,150,08/16/19 21:17,"319 Highland St, San Francisco, CA 94016" +243393,Google Phone,1,600,08/30/19 11:10,"769 Wilson St, San Francisco, CA 94016" +243394,USB-C Charging Cable,1,11.95,08/11/19 22:07,"104 Willow St, Portland, OR 97035" +243395,Lightning Charging Cable,1,14.95,08/24/19 10:05,"252 6th St, Boston, MA 02215" +243396,USB-C Charging Cable,1,11.95,08/04/19 13:31,"34 1st St, San Francisco, CA 94016" +243397,USB-C Charging Cable,1,11.95,08/29/19 09:52,"590 Walnut St, San Francisco, CA 94016" +243398,Wired Headphones,1,11.99,08/25/19 17:30,"338 Center St, Atlanta, GA 30301" +243399,AAA Batteries (4-pack),2,2.99,08/21/19 23:46,"333 5th St, San Francisco, CA 94016" +243400,Wired Headphones,1,11.99,08/20/19 07:59,"203 North St, San Francisco, CA 94016" +243400,Bose SoundSport Headphones,1,99.99,08/20/19 07:59,"203 North St, San Francisco, CA 94016" +243401,AA Batteries (4-pack),1,3.84,08/23/19 12:46,"650 Lakeview St, Los Angeles, CA 90001" +243402,27in FHD Monitor,1,149.99,08/23/19 18:01,"88 Walnut St, New York City, NY 10001" +243403,USB-C Charging Cable,1,11.95,08/16/19 10:19,"607 West St, Los Angeles, CA 90001" +243404,USB-C Charging Cable,1,11.95,08/26/19 08:59,"638 Johnson St, Los Angeles, CA 90001" +243405,Wired Headphones,1,11.99,08/07/19 18:16,"30 Lakeview St, Seattle, WA 98101" +243406,USB-C Charging Cable,1,11.95,08/30/19 19:32,"727 6th St, San Francisco, CA 94016" +243407,Wired Headphones,1,11.99,08/26/19 22:00,"273 Madison St, Portland, OR 97035" +243408,20in Monitor,1,109.99,08/22/19 08:49,"873 Wilson St, Los Angeles, CA 90001" +243409,Google Phone,1,600,08/18/19 17:22,"457 Walnut St, Austin, TX 73301" +243410,USB-C Charging Cable,1,11.95,08/23/19 22:02,"383 11th St, Los Angeles, CA 90001" +243411,Wired Headphones,1,11.99,08/31/19 16:05,"523 Washington St, San Francisco, CA 94016" +243412,Wired Headphones,1,11.99,08/17/19 21:08,"101 Cherry St, Seattle, WA 98101" +243413,Wired Headphones,1,11.99,08/11/19 08:09,"440 Spruce St, Dallas, TX 75001" +243414,USB-C Charging Cable,1,11.95,08/12/19 17:58,"807 Hickory St, Boston, MA 02215" +243415,Lightning Charging Cable,1,14.95,08/08/19 18:32,"783 Meadow St, Boston, MA 02215" +243416,Bose SoundSport Headphones,1,99.99,08/01/19 09:37,"894 2nd St, Seattle, WA 98101" +243417,Lightning Charging Cable,1,14.95,08/02/19 08:08,"503 Cedar St, Los Angeles, CA 90001" +243418,Bose SoundSport Headphones,1,99.99,08/19/19 13:54,"149 Adams St, Seattle, WA 98101" +243419,34in Ultrawide Monitor,1,379.99,08/24/19 20:07,"503 10th St, Portland, OR 97035" +243420,27in 4K Gaming Monitor,1,389.99,09/01/19 00:06,"349 Wilson St, Seattle, WA 98101" +243421,iPhone,1,700,08/24/19 17:13,"687 12th St, Portland, OR 97035" +243422,Lightning Charging Cable,1,14.95,08/25/19 11:01,"247 Lake St, Seattle, WA 98101" +243423,USB-C Charging Cable,1,11.95,08/01/19 23:09,"10 Jackson St, Atlanta, GA 30301" +243424,AA Batteries (4-pack),1,3.84,08/15/19 21:33,"739 Chestnut St, San Francisco, CA 94016" +243425,Bose SoundSport Headphones,1,99.99,08/10/19 17:49,"517 Johnson St, Austin, TX 73301" +243426,Vareebadd Phone,1,400,08/04/19 15:58,"923 Madison St, Los Angeles, CA 90001" +243426,USB-C Charging Cable,1,11.95,08/04/19 15:58,"923 Madison St, Los Angeles, CA 90001" +243427,27in FHD Monitor,1,149.99,08/29/19 19:37,"529 Main St, Boston, MA 02215" +243428,27in FHD Monitor,1,149.99,08/15/19 16:27,"816 Lincoln St, Boston, MA 02215" +243429,AA Batteries (4-pack),1,3.84,08/25/19 20:19,"659 1st St, New York City, NY 10001" +243430,Macbook Pro Laptop,1,1700,08/30/19 01:33,"774 Center St, San Francisco, CA 94016" +243431,USB-C Charging Cable,1,11.95,08/17/19 21:14,"48 Forest St, New York City, NY 10001" +243432,Macbook Pro Laptop,1,1700,08/07/19 12:24,"521 Jefferson St, San Francisco, CA 94016" +243433,27in FHD Monitor,1,149.99,08/20/19 20:29,"911 Jefferson St, Boston, MA 02215" +243434,AAA Batteries (4-pack),1,2.99,08/14/19 12:11,"606 Cedar St, Boston, MA 02215" +243435,Macbook Pro Laptop,1,1700,08/08/19 03:47,"752 1st St, Seattle, WA 98101" +243436,Macbook Pro Laptop,1,1700,08/31/19 19:17,"427 Forest St, San Francisco, CA 94016" +243437,Wired Headphones,1,11.99,08/07/19 16:39,"298 Lake St, New York City, NY 10001" +243438,Apple Airpods Headphones,1,150,08/17/19 13:41,"83 Lincoln St, Seattle, WA 98101" +243439,AA Batteries (4-pack),1,3.84,08/14/19 16:36,"735 Park St, Dallas, TX 75001" +243440,27in FHD Monitor,1,149.99,08/28/19 20:46,"693 11th St, Boston, MA 02215" +243441,AAA Batteries (4-pack),1,2.99,08/07/19 12:39,"165 5th St, San Francisco, CA 94016" +243442,Macbook Pro Laptop,1,1700,08/28/19 11:36,"446 4th St, Atlanta, GA 30301" +243443,Google Phone,1,600,08/11/19 16:25,"554 Cherry St, Los Angeles, CA 90001" +243444,Bose SoundSport Headphones,1,99.99,08/31/19 07:54,"742 9th St, Seattle, WA 98101" +243445,34in Ultrawide Monitor,1,379.99,08/30/19 11:32,"266 6th St, New York City, NY 10001" +243446,Lightning Charging Cable,1,14.95,08/12/19 17:53,"885 Park St, New York City, NY 10001" +243447,Lightning Charging Cable,1,14.95,08/10/19 11:27,"184 Forest St, Atlanta, GA 30301" +243448,Bose SoundSport Headphones,1,99.99,08/17/19 18:05,"507 14th St, Los Angeles, CA 90001" +243449,Macbook Pro Laptop,1,1700,08/20/19 17:24,"991 13th St, Seattle, WA 98101" +243450,27in FHD Monitor,1,149.99,08/23/19 23:03,"552 Pine St, New York City, NY 10001" +243451,AAA Batteries (4-pack),2,2.99,08/22/19 19:49,"654 10th St, San Francisco, CA 94016" +243452,Bose SoundSport Headphones,1,99.99,08/04/19 17:41,"253 Meadow St, New York City, NY 10001" +243453,Wired Headphones,3,11.99,08/06/19 19:49,"227 Washington St, Dallas, TX 75001" +243454,27in FHD Monitor,1,149.99,08/17/19 14:15,"828 11th St, Portland, OR 97035" +243455,AAA Batteries (4-pack),1,2.99,08/23/19 09:06,"215 Spruce St, San Francisco, CA 94016" +243456,Apple Airpods Headphones,1,150,08/30/19 20:32,"696 Walnut St, Boston, MA 02215" +243457,AA Batteries (4-pack),1,3.84,08/20/19 13:05,"972 Park St, San Francisco, CA 94016" +243458,AAA Batteries (4-pack),1,2.99,08/03/19 20:15,"272 7th St, Portland, ME 04101" +243459,Apple Airpods Headphones,1,150,08/17/19 16:45,"948 5th St, San Francisco, CA 94016" +243460,USB-C Charging Cable,1,11.95,08/03/19 23:08,"371 Ridge St, Atlanta, GA 30301" +243461,Flatscreen TV,1,300,08/18/19 08:33,"968 Elm St, Boston, MA 02215" +243462,AA Batteries (4-pack),2,3.84,08/15/19 00:35,"463 Johnson St, Seattle, WA 98101" +243463,27in 4K Gaming Monitor,1,389.99,08/04/19 10:19,"523 Hickory St, Los Angeles, CA 90001" +243464,AAA Batteries (4-pack),1,2.99,08/03/19 18:32,"634 Adams St, Austin, TX 73301" +243465,Wired Headphones,1,11.99,08/17/19 11:30,"819 5th St, New York City, NY 10001" +243466,Bose SoundSport Headphones,1,99.99,08/25/19 11:57,"634 6th St, Boston, MA 02215" +243467,Lightning Charging Cable,1,14.95,08/23/19 19:38,"259 14th St, Austin, TX 73301" +243468,Macbook Pro Laptop,1,1700,08/05/19 12:36,"264 13th St, San Francisco, CA 94016" +243469,AA Batteries (4-pack),1,3.84,08/27/19 16:06,"727 Church St, Atlanta, GA 30301" +243470,Lightning Charging Cable,2,14.95,08/17/19 20:24,"713 Adams St, Los Angeles, CA 90001" +243471,USB-C Charging Cable,1,11.95,08/19/19 05:46,"602 Hill St, San Francisco, CA 94016" +243472,Wired Headphones,1,11.99,08/23/19 13:24,"201 Meadow St, New York City, NY 10001" +243473,Lightning Charging Cable,1,14.95,08/26/19 13:13,"792 Walnut St, Los Angeles, CA 90001" +243474,Lightning Charging Cable,1,14.95,08/26/19 12:40,"678 Elm St, New York City, NY 10001" +243475,27in FHD Monitor,1,149.99,08/22/19 14:35,"123 Dogwood St, New York City, NY 10001" +243476,27in 4K Gaming Monitor,1,389.99,08/08/19 09:56,"978 4th St, San Francisco, CA 94016" +243477,Lightning Charging Cable,1,14.95,08/24/19 16:39,"397 Cedar St, Los Angeles, CA 90001" +243478,AAA Batteries (4-pack),1,2.99,08/05/19 09:33,"601 Hickory St, Los Angeles, CA 90001" +243479,Google Phone,1,600,08/30/19 23:55,"106 South St, Seattle, WA 98101" +243480,Vareebadd Phone,1,400,08/27/19 22:00,"167 Elm St, Boston, MA 02215" +243480,Wired Headphones,2,11.99,08/27/19 22:00,"167 Elm St, Boston, MA 02215" +243481,ThinkPad Laptop,1,999.99,08/18/19 18:57,"175 Adams St, Austin, TX 73301" +243482,AA Batteries (4-pack),1,3.84,08/13/19 01:45,"876 1st St, San Francisco, CA 94016" +243483,AAA Batteries (4-pack),1,2.99,08/24/19 16:18,"532 Washington St, Dallas, TX 75001" +243484,Wired Headphones,1,11.99,08/16/19 16:59,"906 Madison St, Seattle, WA 98101" +243485,USB-C Charging Cable,1,11.95,08/05/19 09:14,"732 2nd St, Los Angeles, CA 90001" +243486,Apple Airpods Headphones,1,150,08/25/19 23:03,"641 Madison St, San Francisco, CA 94016" +243487,USB-C Charging Cable,2,11.95,08/25/19 11:54,"376 Johnson St, Seattle, WA 98101" +243488,USB-C Charging Cable,1,11.95,08/10/19 00:27,"218 11th St, Dallas, TX 75001" +243489,Apple Airpods Headphones,1,150,08/11/19 17:42,"193 Pine St, Portland, OR 97035" +243490,AA Batteries (4-pack),1,3.84,08/12/19 10:14,"395 Church St, Atlanta, GA 30301" +243491,USB-C Charging Cable,2,11.95,08/30/19 17:36,"153 9th St, Los Angeles, CA 90001" +243492,AA Batteries (4-pack),2,3.84,08/13/19 12:09,"811 4th St, San Francisco, CA 94016" +243493,Lightning Charging Cable,1,14.95,08/01/19 11:42,"308 9th St, San Francisco, CA 94016" +243494,Bose SoundSport Headphones,1,99.99,08/28/19 11:00,"907 7th St, San Francisco, CA 94016" +243495,Flatscreen TV,1,300,08/24/19 00:26,"951 2nd St, Seattle, WA 98101" +243496,AAA Batteries (4-pack),2,2.99,08/14/19 22:06,"313 West St, Atlanta, GA 30301" +243497,27in FHD Monitor,1,149.99,08/24/19 19:00,"982 4th St, Los Angeles, CA 90001" +243498,AAA Batteries (4-pack),1,2.99,08/13/19 13:29,"89 Dogwood St, Boston, MA 02215" +243499,ThinkPad Laptop,1,999.99,08/15/19 23:10,"733 Pine St, San Francisco, CA 94016" +243500,ThinkPad Laptop,1,999.99,08/04/19 08:22,"406 West St, Los Angeles, CA 90001" +243501,Lightning Charging Cable,1,14.95,08/15/19 09:05,"903 North St, Portland, OR 97035" +243502,27in 4K Gaming Monitor,1,389.99,08/29/19 15:19,"58 Cedar St, San Francisco, CA 94016" +243503,Google Phone,1,600,08/25/19 18:53,"997 7th St, Los Angeles, CA 90001" +243504,Bose SoundSport Headphones,1,99.99,08/12/19 20:13,"973 Madison St, San Francisco, CA 94016" +243505,AAA Batteries (4-pack),1,2.99,08/27/19 18:43,"376 Hill St, New York City, NY 10001" +243506,USB-C Charging Cable,1,11.95,08/26/19 18:52,"178 South St, Portland, OR 97035" +243507,34in Ultrawide Monitor,1,379.99,08/14/19 15:48,"426 9th St, Boston, MA 02215" +243508,Lightning Charging Cable,1,14.95,08/09/19 14:44,"672 Walnut St, New York City, NY 10001" +243509,Apple Airpods Headphones,1,150,08/20/19 00:51,"687 6th St, New York City, NY 10001" +243510,Apple Airpods Headphones,1,150,08/23/19 15:52,"41 7th St, Portland, OR 97035" +243511,Wired Headphones,1,11.99,08/02/19 17:53,"704 Adams St, New York City, NY 10001" +243512,Wired Headphones,1,11.99,08/10/19 19:32,"469 11th St, San Francisco, CA 94016" +243513,Wired Headphones,1,11.99,08/28/19 10:59,"409 11th St, Los Angeles, CA 90001" +243514,27in FHD Monitor,1,149.99,08/29/19 15:58,"258 12th St, Seattle, WA 98101" +243515,Lightning Charging Cable,1,14.95,08/28/19 01:18,"289 West St, Atlanta, GA 30301" +243516,Google Phone,1,600,08/11/19 16:42,"171 14th St, Dallas, TX 75001" +243517,Bose SoundSport Headphones,1,99.99,08/18/19 22:27,"91 2nd St, Dallas, TX 75001" +243518,AA Batteries (4-pack),1,3.84,08/24/19 19:36,"400 14th St, Seattle, WA 98101" +243519,iPhone,1,700,08/07/19 17:29,"366 Hill St, Seattle, WA 98101" +243519,Lightning Charging Cable,1,14.95,08/07/19 17:29,"366 Hill St, Seattle, WA 98101" +243520,27in 4K Gaming Monitor,1,389.99,08/26/19 09:27,"280 South St, Atlanta, GA 30301" +243521,Wired Headphones,1,11.99,08/06/19 15:58,"877 Dogwood St, Boston, MA 02215" +243522,27in 4K Gaming Monitor,1,389.99,08/25/19 07:27,"990 9th St, New York City, NY 10001" +243522,27in 4K Gaming Monitor,1,389.99,08/25/19 07:27,"990 9th St, New York City, NY 10001" +243523,Lightning Charging Cable,1,14.95,08/20/19 20:40,"238 Elm St, San Francisco, CA 94016" +243523,Vareebadd Phone,1,400,08/20/19 20:40,"238 Elm St, San Francisco, CA 94016" +243524,AA Batteries (4-pack),1,3.84,08/29/19 21:55,"984 Lakeview St, Los Angeles, CA 90001" +243525,Lightning Charging Cable,1,14.95,08/04/19 15:51,"142 Willow St, Atlanta, GA 30301" +243526,AA Batteries (4-pack),1,3.84,08/24/19 20:50,"477 10th St, New York City, NY 10001" +243527,Google Phone,1,600,08/03/19 04:01,"629 6th St, New York City, NY 10001" +243528,AAA Batteries (4-pack),2,2.99,08/11/19 22:55,"609 River St, Dallas, TX 75001" +243529,Lightning Charging Cable,1,14.95,08/17/19 23:57,"836 Maple St, San Francisco, CA 94016" +243530,USB-C Charging Cable,1,11.95,08/04/19 07:38,"723 4th St, New York City, NY 10001" +243531,Bose SoundSport Headphones,1,99.99,08/23/19 09:33,"732 Johnson St, Portland, OR 97035" +243532,AAA Batteries (4-pack),1,2.99,08/16/19 15:24,"590 Jackson St, San Francisco, CA 94016" +243533,AAA Batteries (4-pack),1,2.99,08/06/19 08:06,"868 Chestnut St, Boston, MA 02215" +243534,ThinkPad Laptop,1,999.99,08/08/19 11:46,"129 Forest St, Seattle, WA 98101" +243535,Bose SoundSport Headphones,1,99.99,08/23/19 12:31,"970 South St, San Francisco, CA 94016" +243536,20in Monitor,1,109.99,08/11/19 07:07,"46 8th St, Dallas, TX 75001" +243537,Google Phone,1,600,08/19/19 09:21,"590 14th St, San Francisco, CA 94016" +243537,USB-C Charging Cable,2,11.95,08/19/19 09:21,"590 14th St, San Francisco, CA 94016" +243538,Wired Headphones,1,11.99,08/28/19 12:03,"966 Jackson St, New York City, NY 10001" +243539,Bose SoundSport Headphones,1,99.99,08/25/19 22:28,"700 Highland St, Los Angeles, CA 90001" +243540,Bose SoundSport Headphones,1,99.99,08/20/19 18:13,"371 Hickory St, New York City, NY 10001" +243541,AAA Batteries (4-pack),4,2.99,08/08/19 20:53,"738 Sunset St, Dallas, TX 75001" +243542,iPhone,1,700,08/18/19 15:16,"565 River St, New York City, NY 10001" +243543,AAA Batteries (4-pack),3,2.99,08/21/19 09:41,"207 Church St, Seattle, WA 98101" +243544,Lightning Charging Cable,1,14.95,08/09/19 17:12,"275 West St, Austin, TX 73301" +243545,Bose SoundSport Headphones,1,99.99,08/07/19 12:53,"397 5th St, Dallas, TX 75001" +243546,Wired Headphones,1,11.99,08/16/19 16:57,"936 Lake St, Austin, TX 73301" +243547,Flatscreen TV,1,300,08/11/19 10:10,"476 Hickory St, San Francisco, CA 94016" +243548,Wired Headphones,1,11.99,08/04/19 16:09,"379 North St, Los Angeles, CA 90001" +243549,AAA Batteries (4-pack),1,2.99,08/27/19 18:54,"520 Jefferson St, San Francisco, CA 94016" +243550,USB-C Charging Cable,1,11.95,08/10/19 05:18,"619 Wilson St, Seattle, WA 98101" +243551,Apple Airpods Headphones,1,150,08/17/19 08:48,"622 Chestnut St, San Francisco, CA 94016" +243552,AAA Batteries (4-pack),2,2.99,08/12/19 19:14,"123 Lake St, Dallas, TX 75001" +243553,Apple Airpods Headphones,1,150,08/14/19 21:10,"729 Cedar St, Dallas, TX 75001" +243554,iPhone,1,700,08/29/19 20:41,"865 10th St, Boston, MA 02215" +243555,Macbook Pro Laptop,1,1700,08/26/19 05:46,"994 2nd St, Portland, OR 97035" +243556,27in 4K Gaming Monitor,1,389.99,08/03/19 15:08,"470 Forest St, Atlanta, GA 30301" +243557,27in FHD Monitor,1,149.99,08/17/19 12:20,"368 6th St, Boston, MA 02215" +243558,USB-C Charging Cable,1,11.95,08/28/19 08:41,"444 Jackson St, Dallas, TX 75001" +243559,Lightning Charging Cable,1,14.95,08/04/19 20:17,"936 Jackson St, Atlanta, GA 30301" +243560,Apple Airpods Headphones,1,150,08/18/19 20:52,"953 Forest St, Los Angeles, CA 90001" +243561,AAA Batteries (4-pack),3,2.99,08/22/19 22:32,"82 Spruce St, Boston, MA 02215" +243562,USB-C Charging Cable,1,11.95,08/31/19 17:04,"445 Sunset St, Los Angeles, CA 90001" +243563,USB-C Charging Cable,1,11.95,08/13/19 22:40,"624 Cherry St, Portland, OR 97035" +243564,AA Batteries (4-pack),2,3.84,08/23/19 22:58,"567 4th St, Boston, MA 02215" +243565,iPhone,1,700,08/25/19 19:36,"530 Spruce St, New York City, NY 10001" +243566,Apple Airpods Headphones,1,150,08/31/19 17:04,"861 North St, San Francisco, CA 94016" +243567,Apple Airpods Headphones,1,150,08/24/19 23:46,"578 2nd St, New York City, NY 10001" +243568,Google Phone,1,600,08/18/19 12:54,"989 Lake St, New York City, NY 10001" +243569,AA Batteries (4-pack),1,3.84,08/13/19 17:37,"423 Meadow St, San Francisco, CA 94016" +243570,Lightning Charging Cable,1,14.95,08/20/19 13:36,"256 Dogwood St, Seattle, WA 98101" +243571,USB-C Charging Cable,1,11.95,08/09/19 11:36,"657 7th St, Boston, MA 02215" +243572,Apple Airpods Headphones,1,150,08/12/19 12:04,"836 Cherry St, Boston, MA 02215" +243573,34in Ultrawide Monitor,1,379.99,08/21/19 00:10,"307 11th St, Boston, MA 02215" +243574,AA Batteries (4-pack),1,3.84,08/23/19 09:28,"819 8th St, New York City, NY 10001" +243575,27in 4K Gaming Monitor,1,389.99,08/11/19 13:17,"397 1st St, Dallas, TX 75001" +243576,Lightning Charging Cable,1,14.95,08/06/19 04:48,"481 9th St, Los Angeles, CA 90001" +243577,USB-C Charging Cable,1,11.95,08/16/19 11:34,"703 Church St, Boston, MA 02215" +243578,Wired Headphones,1,11.99,08/27/19 12:27,"919 Wilson St, Portland, OR 97035" +243579,Apple Airpods Headphones,1,150,08/22/19 08:20,"21 South St, San Francisco, CA 94016" +243580,Wired Headphones,1,11.99,08/01/19 16:32,"972 Willow St, Los Angeles, CA 90001" +243581,Apple Airpods Headphones,1,150,08/14/19 01:59,"239 Jefferson St, Boston, MA 02215" +243582,iPhone,1,700,08/06/19 08:55,"860 Jackson St, Atlanta, GA 30301" +243583,Bose SoundSport Headphones,1,99.99,08/21/19 22:10,"594 Washington St, Atlanta, GA 30301" +243584,iPhone,1,700,08/14/19 16:01,"898 Center St, New York City, NY 10001" +243585,Lightning Charging Cable,1,14.95,08/31/19 16:44,"913 Lakeview St, Portland, OR 97035" +243586,iPhone,1,700,08/04/19 07:06,"820 11th St, Boston, MA 02215" +243586,Wired Headphones,1,11.99,08/04/19 07:06,"820 11th St, Boston, MA 02215" +243587,AA Batteries (4-pack),1,3.84,08/07/19 11:30,"279 13th St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +243588,Apple Airpods Headphones,1,150,08/14/19 14:08,"526 Lincoln St, Austin, TX 73301" +243589,20in Monitor,1,109.99,08/03/19 21:26,"478 Lincoln St, Boston, MA 02215" +243590,Bose SoundSport Headphones,1,99.99,08/13/19 16:31,"223 Wilson St, Atlanta, GA 30301" +243591,AA Batteries (4-pack),1,3.84,08/30/19 20:16,"624 Walnut St, Los Angeles, CA 90001" +243592,Wired Headphones,1,11.99,08/21/19 16:32,"72 Lincoln St, New York City, NY 10001" +243593,Lightning Charging Cable,1,14.95,08/07/19 17:20,"988 Ridge St, San Francisco, CA 94016" +243594,Wired Headphones,1,11.99,08/11/19 20:56,"439 Ridge St, Seattle, WA 98101" +243595,USB-C Charging Cable,1,11.95,08/24/19 16:19,"764 Hickory St, Austin, TX 73301" +243596,USB-C Charging Cable,1,11.95,08/06/19 11:13,"789 Elm St, San Francisco, CA 94016" +243597,20in Monitor,1,109.99,08/12/19 19:47,"225 Chestnut St, San Francisco, CA 94016" +243598,Wired Headphones,1,11.99,08/08/19 17:13,"773 2nd St, Portland, OR 97035" +243599,USB-C Charging Cable,1,11.95,08/26/19 11:24,"29 Highland St, Dallas, TX 75001" +243600,AAA Batteries (4-pack),1,2.99,08/04/19 15:39,"602 Chestnut St, New York City, NY 10001" +243601,Apple Airpods Headphones,1,150,08/16/19 00:07,"371 6th St, San Francisco, CA 94016" +243602,AA Batteries (4-pack),1,3.84,08/10/19 17:00,"938 Lake St, Portland, OR 97035" +243603,AAA Batteries (4-pack),1,2.99,08/05/19 17:12,"939 13th St, San Francisco, CA 94016" +243604,Flatscreen TV,1,300,08/11/19 22:27,"28 Pine St, Los Angeles, CA 90001" +243605,USB-C Charging Cable,1,11.95,08/09/19 18:11,"798 Dogwood St, Dallas, TX 75001" +243606,AAA Batteries (4-pack),1,2.99,08/08/19 17:14,"342 4th St, Dallas, TX 75001" +243607,Google Phone,1,600,08/08/19 21:14,"158 Jackson St, New York City, NY 10001" +243608,AA Batteries (4-pack),2,3.84,08/14/19 23:40,"125 South St, Seattle, WA 98101" +243609,Lightning Charging Cable,1,14.95,08/13/19 19:27,"242 Ridge St, Dallas, TX 75001" +243610,27in FHD Monitor,1,149.99,08/23/19 10:42,"94 Walnut St, New York City, NY 10001" +243611,AAA Batteries (4-pack),1,2.99,08/11/19 11:25,"543 Dogwood St, San Francisco, CA 94016" +243612,USB-C Charging Cable,1,11.95,08/04/19 18:49,"21 Maple St, San Francisco, CA 94016" +243613,Bose SoundSport Headphones,1,99.99,08/12/19 13:33,"667 Jefferson St, San Francisco, CA 94016" +243614,Bose SoundSport Headphones,1,99.99,08/29/19 13:37,"662 Chestnut St, San Francisco, CA 94016" +243615,Lightning Charging Cable,1,14.95,08/09/19 14:53,"776 9th St, Dallas, TX 75001" +243616,AA Batteries (4-pack),2,3.84,08/13/19 17:31,"302 Wilson St, Austin, TX 73301" +243617,Bose SoundSport Headphones,1,99.99,08/28/19 19:25,"293 South St, Los Angeles, CA 90001" +243618,ThinkPad Laptop,1,999.99,08/15/19 16:56,"739 4th St, New York City, NY 10001" +243619,Wired Headphones,1,11.99,08/27/19 20:04,"465 Church St, Portland, ME 04101" +243620,34in Ultrawide Monitor,1,379.99,08/24/19 08:49,"520 Church St, San Francisco, CA 94016" +243621,AA Batteries (4-pack),2,3.84,08/10/19 23:33,"836 Lincoln St, San Francisco, CA 94016" +243622,Lightning Charging Cable,1,14.95,08/08/19 20:05,"664 Center St, Dallas, TX 75001" +243623,Lightning Charging Cable,2,14.95,08/06/19 18:34,"487 Maple St, Atlanta, GA 30301" +243624,27in 4K Gaming Monitor,1,389.99,08/07/19 15:39,"888 Lakeview St, Dallas, TX 75001" +243625,ThinkPad Laptop,1,999.99,08/15/19 12:03,"741 Spruce St, Austin, TX 73301" +243626,iPhone,1,700,08/05/19 19:29,"3 Walnut St, Austin, TX 73301" +243627,USB-C Charging Cable,1,11.95,08/20/19 18:13,"345 Pine St, Los Angeles, CA 90001" +243628,20in Monitor,1,109.99,08/12/19 15:25,"487 Hickory St, San Francisco, CA 94016" +243629,AA Batteries (4-pack),1,3.84,08/31/19 18:23,"147 River St, Los Angeles, CA 90001" +243630,Wired Headphones,1,11.99,08/23/19 11:53,"80 Pine St, Los Angeles, CA 90001" +243631,AA Batteries (4-pack),1,3.84,08/12/19 11:13,"75 Ridge St, Atlanta, GA 30301" +243632,Apple Airpods Headphones,1,150,08/04/19 18:21,"125 Dogwood St, Dallas, TX 75001" +243633,USB-C Charging Cable,1,11.95,08/20/19 12:03,"124 Willow St, Seattle, WA 98101" +243634,Apple Airpods Headphones,1,150,08/23/19 11:47,"164 13th St, Dallas, TX 75001" +243635,AA Batteries (4-pack),2,3.84,08/19/19 22:13,"317 Johnson St, New York City, NY 10001" +243636,USB-C Charging Cable,1,11.95,08/20/19 20:28,"417 Meadow St, New York City, NY 10001" +243637,AA Batteries (4-pack),1,3.84,08/23/19 12:43,"895 10th St, New York City, NY 10001" +243638,Apple Airpods Headphones,1,150,08/02/19 15:55,"356 Adams St, San Francisco, CA 94016" +243639,Lightning Charging Cable,1,14.95,08/07/19 17:08,"285 Lake St, San Francisco, CA 94016" +243640,Bose SoundSport Headphones,1,99.99,08/27/19 12:45,"562 West St, Seattle, WA 98101" +243641,Wired Headphones,2,11.99,08/31/19 12:45,"780 Walnut St, Dallas, TX 75001" +243642,Macbook Pro Laptop,1,1700,08/15/19 06:35,"150 South St, Boston, MA 02215" +243643,Bose SoundSport Headphones,1,99.99,08/08/19 20:32,"923 9th St, Dallas, TX 75001" +243644,27in FHD Monitor,1,149.99,08/21/19 10:50,"158 13th St, New York City, NY 10001" +243645,Apple Airpods Headphones,1,150,08/16/19 12:37,"572 River St, Seattle, WA 98101" +243646,Apple Airpods Headphones,1,150,08/13/19 18:10,"271 Chestnut St, New York City, NY 10001" +243647,iPhone,1,700,08/21/19 12:38,"329 Dogwood St, Seattle, WA 98101" +243648,34in Ultrawide Monitor,1,379.99,08/26/19 20:56,"886 Cherry St, Portland, OR 97035" +243649,Bose SoundSport Headphones,1,99.99,08/08/19 18:26,"490 11th St, San Francisco, CA 94016" +243650,Wired Headphones,1,11.99,08/20/19 13:00,"511 6th St, Los Angeles, CA 90001" +243651,27in FHD Monitor,1,149.99,08/30/19 17:58,"561 Hickory St, Dallas, TX 75001" +243652,USB-C Charging Cable,2,11.95,08/12/19 21:20,"514 4th St, New York City, NY 10001" +243653,Lightning Charging Cable,1,14.95,08/29/19 17:57,"421 12th St, Los Angeles, CA 90001" +243654,34in Ultrawide Monitor,1,379.99,08/22/19 12:41,"272 West St, Portland, OR 97035" +243655,34in Ultrawide Monitor,1,379.99,08/31/19 15:08,"870 Main St, Los Angeles, CA 90001" +243656,AA Batteries (4-pack),1,3.84,08/12/19 10:38,"284 South St, San Francisco, CA 94016" +243657,20in Monitor,1,109.99,08/24/19 14:37,"407 1st St, Boston, MA 02215" +243658,Flatscreen TV,1,300,08/14/19 20:33,"500 6th St, Boston, MA 02215" +243659,27in FHD Monitor,1,149.99,08/23/19 08:53,"251 South St, Los Angeles, CA 90001" +243660,Bose SoundSport Headphones,1,99.99,08/04/19 20:48,"565 North St, Los Angeles, CA 90001" +243661,Wired Headphones,1,11.99,08/14/19 19:39,"322 Sunset St, Boston, MA 02215" +243662,AAA Batteries (4-pack),1,2.99,08/11/19 23:39,"442 Walnut St, Boston, MA 02215" +243663,Flatscreen TV,1,300,08/28/19 12:59,"78 Maple St, Seattle, WA 98101" +243664,Lightning Charging Cable,1,14.95,08/31/19 05:40,"223 10th St, Atlanta, GA 30301" +243665,Lightning Charging Cable,1,14.95,08/28/19 23:11,"960 Pine St, Boston, MA 02215" +243666,Wired Headphones,1,11.99,08/29/19 17:38,"411 2nd St, Atlanta, GA 30301" +243667,Wired Headphones,1,11.99,08/18/19 15:03,"776 Chestnut St, Portland, OR 97035" +243668,AAA Batteries (4-pack),1,2.99,08/30/19 15:26,"8 Sunset St, Dallas, TX 75001" +243669,USB-C Charging Cable,1,11.95,08/15/19 13:41,"162 Main St, San Francisco, CA 94016" +243670,Apple Airpods Headphones,1,150,08/10/19 18:25,"856 West St, Austin, TX 73301" +243671,Apple Airpods Headphones,1,150,08/04/19 19:31,"458 Hill St, Portland, OR 97035" +243672,Bose SoundSport Headphones,1,99.99,08/10/19 13:33,"771 Wilson St, San Francisco, CA 94016" +243673,AAA Batteries (4-pack),1,2.99,08/16/19 09:28,"78 West St, New York City, NY 10001" +243674,Bose SoundSport Headphones,1,99.99,08/06/19 02:17,"239 1st St, New York City, NY 10001" +243675,27in FHD Monitor,2,149.99,08/26/19 14:37,"466 Spruce St, Atlanta, GA 30301" +243676,AA Batteries (4-pack),1,3.84,08/18/19 19:44,"275 7th St, Seattle, WA 98101" +243677,Wired Headphones,1,11.99,08/14/19 10:36,"975 Meadow St, Los Angeles, CA 90001" +243678,USB-C Charging Cable,1,11.95,08/14/19 01:49,"176 Lakeview St, Atlanta, GA 30301" +243679,Apple Airpods Headphones,1,150,08/13/19 20:25,"868 Jackson St, San Francisco, CA 94016" +243679,Wired Headphones,1,11.99,08/13/19 20:25,"868 Jackson St, San Francisco, CA 94016" +243680,ThinkPad Laptop,1,999.99,08/30/19 08:33,"348 Johnson St, New York City, NY 10001" +243681,Apple Airpods Headphones,1,150,08/25/19 08:54,"620 Johnson St, Dallas, TX 75001" +243682,Bose SoundSport Headphones,1,99.99,08/26/19 19:48,"940 2nd St, Portland, OR 97035" +243683,AAA Batteries (4-pack),1,2.99,08/28/19 00:00,"662 Highland St, Austin, TX 73301" +243684,AAA Batteries (4-pack),1,2.99,08/30/19 11:00,"680 Forest St, San Francisco, CA 94016" +243685,Lightning Charging Cable,1,14.95,08/19/19 12:56,"56 North St, Boston, MA 02215" +243686,Flatscreen TV,1,300,08/15/19 13:05,"940 Dogwood St, Boston, MA 02215" +243687,Macbook Pro Laptop,1,1700,08/01/19 11:18,"860 Jackson St, Portland, ME 04101" +243688,AA Batteries (4-pack),1,3.84,08/20/19 19:22,"756 2nd St, Dallas, TX 75001" +243689,Bose SoundSport Headphones,1,99.99,08/27/19 17:36,"321 4th St, Atlanta, GA 30301" +243690,AA Batteries (4-pack),1,3.84,08/12/19 23:44,"415 14th St, Seattle, WA 98101" +243691,Bose SoundSport Headphones,1,99.99,08/17/19 18:05,"799 9th St, New York City, NY 10001" +243692,AA Batteries (4-pack),1,3.84,08/04/19 04:59,"272 Washington St, Austin, TX 73301" +243693,Apple Airpods Headphones,1,150,08/18/19 08:51,"217 Wilson St, San Francisco, CA 94016" +243694,USB-C Charging Cable,1,11.95,08/08/19 22:14,"878 7th St, Seattle, WA 98101" +243695,AAA Batteries (4-pack),1,2.99,08/27/19 12:56,"315 Madison St, Portland, OR 97035" +243696,AA Batteries (4-pack),2,3.84,08/15/19 10:28,"587 North St, San Francisco, CA 94016" +243697,iPhone,1,700,08/03/19 07:53,"972 11th St, San Francisco, CA 94016" +243698,Flatscreen TV,1,300,08/29/19 13:15,"294 Cherry St, Atlanta, GA 30301" +243699,Apple Airpods Headphones,1,150,08/04/19 01:29,"756 12th St, New York City, NY 10001" +243700,AA Batteries (4-pack),1,3.84,08/06/19 21:47,"565 Hill St, San Francisco, CA 94016" +243701,USB-C Charging Cable,1,11.95,08/05/19 15:50,"780 Elm St, Atlanta, GA 30301" +243702,Apple Airpods Headphones,1,150,08/26/19 23:40,"860 Madison St, Dallas, TX 75001" +243703,Lightning Charging Cable,1,14.95,08/04/19 18:02,"175 South St, New York City, NY 10001" +243704,Bose SoundSport Headphones,1,99.99,08/26/19 08:41,"541 Lake St, Los Angeles, CA 90001" +243705,27in FHD Monitor,1,149.99,08/23/19 12:10,"325 South St, San Francisco, CA 94016" +243706,Wired Headphones,1,11.99,08/19/19 15:12,"866 Dogwood St, Austin, TX 73301" +243707,Bose SoundSport Headphones,1,99.99,08/17/19 14:03,"100 11th St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +243708,iPhone,1,700,08/11/19 18:48,"749 11th St, Seattle, WA 98101" +243709,Bose SoundSport Headphones,1,99.99,08/07/19 14:34,"457 Forest St, Los Angeles, CA 90001" +243710,Lightning Charging Cable,1,14.95,08/29/19 18:59,"59 Jefferson St, New York City, NY 10001" +243711,27in 4K Gaming Monitor,1,389.99,08/03/19 13:23,"207 Jackson St, San Francisco, CA 94016" +243712,27in FHD Monitor,1,149.99,08/24/19 18:06,"480 Hill St, Los Angeles, CA 90001" +243713,27in 4K Gaming Monitor,1,389.99,08/25/19 18:07,"22 Hickory St, New York City, NY 10001" +243714,Macbook Pro Laptop,1,1700,08/15/19 19:40,"105 12th St, San Francisco, CA 94016" +243715,AAA Batteries (4-pack),2,2.99,08/04/19 19:15,"884 14th St, San Francisco, CA 94016" +243716,Bose SoundSport Headphones,1,99.99,08/04/19 20:16,"507 Dogwood St, New York City, NY 10001" +243717,AAA Batteries (4-pack),1,2.99,08/05/19 10:55,"48 Lake St, Atlanta, GA 30301" +243718,Lightning Charging Cable,1,14.95,08/30/19 15:29,"902 Park St, Los Angeles, CA 90001" +243719,AAA Batteries (4-pack),1,2.99,08/07/19 07:21,"230 Willow St, Portland, OR 97035" +243720,AAA Batteries (4-pack),1,2.99,08/30/19 07:47,"262 9th St, Atlanta, GA 30301" +243721,AA Batteries (4-pack),1,3.84,08/31/19 22:15,"270 Center St, Portland, OR 97035" +243722,27in FHD Monitor,1,149.99,08/24/19 12:51,"906 Meadow St, San Francisco, CA 94016" +243723,Lightning Charging Cable,1,14.95,08/02/19 13:39,"942 Johnson St, Los Angeles, CA 90001" +,,,,, +243724,Vareebadd Phone,1,400,08/29/19 14:27,"317 Cedar St, Atlanta, GA 30301" +243725,Lightning Charging Cable,1,14.95,08/14/19 21:58,"498 1st St, Seattle, WA 98101" +243725,Wired Headphones,1,11.99,08/14/19 21:58,"498 1st St, Seattle, WA 98101" +243726,Wired Headphones,1,11.99,08/27/19 22:27,"588 4th St, Dallas, TX 75001" +243727,Wired Headphones,2,11.99,08/10/19 13:31,"511 Center St, Boston, MA 02215" +243728,Wired Headphones,1,11.99,08/20/19 18:57,"959 Jefferson St, Austin, TX 73301" +243729,AA Batteries (4-pack),1,3.84,08/28/19 18:31,"781 Lakeview St, Atlanta, GA 30301" +243730,Wired Headphones,1,11.99,08/16/19 11:32,"272 Cherry St, Los Angeles, CA 90001" +243731,Lightning Charging Cable,1,14.95,08/17/19 11:54,"191 Highland St, New York City, NY 10001" +243732,27in FHD Monitor,1,149.99,08/17/19 14:30,"276 Madison St, Seattle, WA 98101" +243733,ThinkPad Laptop,1,999.99,08/29/19 18:36,"914 1st St, New York City, NY 10001" +243734,AA Batteries (4-pack),1,3.84,08/25/19 14:19,"623 Hickory St, Dallas, TX 75001" +243735,Wired Headphones,1,11.99,08/31/19 12:14,"754 Jefferson St, Dallas, TX 75001" +243735,20in Monitor,1,109.99,08/31/19 12:14,"754 Jefferson St, Dallas, TX 75001" +243736,Google Phone,1,600,08/16/19 12:57,"903 Cherry St, Dallas, TX 75001" +243737,Lightning Charging Cable,1,14.95,08/18/19 10:55,"332 Washington St, Dallas, TX 75001" +243738,USB-C Charging Cable,1,11.95,08/22/19 22:36,"353 5th St, San Francisco, CA 94016" +243738,Lightning Charging Cable,1,14.95,08/22/19 22:36,"353 5th St, San Francisco, CA 94016" +243739,ThinkPad Laptop,1,999.99,08/21/19 09:12,"161 Lincoln St, Los Angeles, CA 90001" +243740,Wired Headphones,1,11.99,08/05/19 12:12,"82 Park St, Austin, TX 73301" +243741,Lightning Charging Cable,1,14.95,08/15/19 09:19,"263 Hill St, Los Angeles, CA 90001" +243742,Lightning Charging Cable,1,14.95,08/15/19 12:28,"685 Washington St, Los Angeles, CA 90001" +243743,USB-C Charging Cable,1,11.95,08/06/19 20:57,"195 13th St, Dallas, TX 75001" +243744,AAA Batteries (4-pack),2,2.99,08/17/19 10:44,"47 Walnut St, Dallas, TX 75001" +243745,Lightning Charging Cable,1,14.95,08/06/19 09:41,"34 Spruce St, Los Angeles, CA 90001" +243746,Google Phone,1,600,08/26/19 10:27,"128 Elm St, New York City, NY 10001" +243746,Wired Headphones,1,11.99,08/26/19 10:27,"128 Elm St, New York City, NY 10001" +243747,Apple Airpods Headphones,1,150,08/18/19 16:30,"92 11th St, San Francisco, CA 94016" +243748,Google Phone,1,600,08/04/19 13:19,"997 River St, Boston, MA 02215" +243748,USB-C Charging Cable,1,11.95,08/04/19 13:19,"997 River St, Boston, MA 02215" +243748,Wired Headphones,1,11.99,08/04/19 13:19,"997 River St, Boston, MA 02215" +243749,AAA Batteries (4-pack),1,2.99,08/28/19 18:54,"574 5th St, New York City, NY 10001" +243750,Apple Airpods Headphones,1,150,08/29/19 22:41,"924 River St, New York City, NY 10001" +243751,Apple Airpods Headphones,1,150,08/18/19 21:28,"756 South St, New York City, NY 10001" +243752,Lightning Charging Cable,1,14.95,08/15/19 14:05,"321 South St, New York City, NY 10001" +243753,AA Batteries (4-pack),1,3.84,08/01/19 17:52,"580 Jackson St, Portland, OR 97035" +243754,27in FHD Monitor,1,149.99,08/31/19 19:15,"851 4th St, Atlanta, GA 30301" +243755,USB-C Charging Cable,1,11.95,08/26/19 19:29,"581 Elm St, New York City, NY 10001" +243755,iPhone,1,700,08/26/19 19:29,"581 Elm St, New York City, NY 10001" +243756,AAA Batteries (4-pack),2,2.99,08/22/19 17:44,"283 Park St, Dallas, TX 75001" +243757,Lightning Charging Cable,1,14.95,08/17/19 12:57,"268 Elm St, Seattle, WA 98101" +243758,Apple Airpods Headphones,1,150,08/29/19 11:15,"608 South St, Atlanta, GA 30301" +243759,27in FHD Monitor,1,149.99,08/25/19 09:38,"408 4th St, Boston, MA 02215" +243760,Wired Headphones,1,11.99,08/16/19 08:31,"548 Cedar St, New York City, NY 10001" +243761,20in Monitor,1,109.99,08/20/19 11:40,"707 North St, Dallas, TX 75001" +243762,Bose SoundSport Headphones,1,99.99,08/29/19 23:52,"545 Park St, Boston, MA 02215" +243763,AAA Batteries (4-pack),1,2.99,08/06/19 01:35,"568 Jackson St, Atlanta, GA 30301" +243764,Apple Airpods Headphones,1,150,08/21/19 11:07,"224 Adams St, Los Angeles, CA 90001" +243764,Bose SoundSport Headphones,1,99.99,08/21/19 11:07,"224 Adams St, Los Angeles, CA 90001" +243765,AAA Batteries (4-pack),1,2.99,08/20/19 15:02,"509 Meadow St, New York City, NY 10001" +243766,Flatscreen TV,1,300,08/01/19 22:21,"711 Cherry St, Dallas, TX 75001" +243767,USB-C Charging Cable,1,11.95,08/09/19 15:16,"572 11th St, San Francisco, CA 94016" +243768,Google Phone,1,600,08/07/19 01:51,"760 7th St, San Francisco, CA 94016" +243769,Wired Headphones,1,11.99,08/30/19 18:36,"354 Lakeview St, Dallas, TX 75001" +243770,iPhone,1,700,08/29/19 14:26,"175 2nd St, Los Angeles, CA 90001" +243771,Lightning Charging Cable,1,14.95,08/03/19 10:37,"658 Jackson St, San Francisco, CA 94016" +243772,AAA Batteries (4-pack),1,2.99,08/07/19 12:00,"728 Forest St, Los Angeles, CA 90001" +243773,Apple Airpods Headphones,1,150,08/11/19 13:45,"914 5th St, New York City, NY 10001" +243774,AA Batteries (4-pack),1,3.84,08/20/19 13:54,"525 West St, Los Angeles, CA 90001" +243775,Lightning Charging Cable,1,14.95,08/21/19 10:08,"172 Lincoln St, Atlanta, GA 30301" +243776,iPhone,1,700,08/30/19 10:40,"251 Lincoln St, Portland, OR 97035" +243777,AA Batteries (4-pack),1,3.84,08/21/19 17:14,"532 Adams St, San Francisco, CA 94016" +243778,AAA Batteries (4-pack),2,2.99,08/13/19 12:11,"775 Madison St, San Francisco, CA 94016" +243779,Lightning Charging Cable,1,14.95,08/16/19 20:14,"234 10th St, Seattle, WA 98101" +243780,AAA Batteries (4-pack),1,2.99,08/17/19 07:46,"341 Spruce St, Portland, OR 97035" +243781,Apple Airpods Headphones,1,150,08/25/19 12:36,"138 7th St, Dallas, TX 75001" +243782,Lightning Charging Cable,1,14.95,08/27/19 22:39,"250 Dogwood St, Austin, TX 73301" +243783,Bose SoundSport Headphones,1,99.99,08/26/19 18:49,"334 Adams St, Dallas, TX 75001" +243784,Google Phone,1,600,08/05/19 18:58,"450 Pine St, San Francisco, CA 94016" +243785,Bose SoundSport Headphones,1,99.99,08/11/19 22:20,"339 Pine St, Portland, OR 97035" +243786,Lightning Charging Cable,1,14.95,08/24/19 11:28,"994 Pine St, Boston, MA 02215" +243787,USB-C Charging Cable,1,11.95,08/27/19 20:05,"816 Lakeview St, Seattle, WA 98101" +243788,AA Batteries (4-pack),1,3.84,08/09/19 13:45,"900 Johnson St, Austin, TX 73301" +243789,Vareebadd Phone,1,400,08/19/19 13:19,"450 Church St, San Francisco, CA 94016" +243790,34in Ultrawide Monitor,1,379.99,08/08/19 07:15,"920 Ridge St, New York City, NY 10001" +243791,Bose SoundSport Headphones,1,99.99,08/30/19 18:32,"243 5th St, Los Angeles, CA 90001" +243792,AA Batteries (4-pack),2,3.84,08/03/19 14:28,"725 Maple St, Boston, MA 02215" +243793,27in FHD Monitor,1,149.99,08/30/19 13:56,"411 13th St, Seattle, WA 98101" +243794,USB-C Charging Cable,1,11.95,08/29/19 19:05,"40 2nd St, New York City, NY 10001" +243795,Lightning Charging Cable,1,14.95,08/06/19 15:50,"888 12th St, Seattle, WA 98101" +243796,Apple Airpods Headphones,1,150,08/02/19 19:26,"836 Hill St, Boston, MA 02215" +243797,Wired Headphones,2,11.99,08/22/19 22:58,"950 Lakeview St, San Francisco, CA 94016" +243798,Apple Airpods Headphones,1,150,08/08/19 15:21,"572 6th St, Seattle, WA 98101" +243799,AAA Batteries (4-pack),1,2.99,08/24/19 00:03,"743 Meadow St, Atlanta, GA 30301" +243800,Vareebadd Phone,1,400,08/26/19 18:35,"509 Chestnut St, Atlanta, GA 30301" +243800,USB-C Charging Cable,1,11.95,08/26/19 18:35,"509 Chestnut St, Atlanta, GA 30301" +243801,AAA Batteries (4-pack),1,2.99,08/31/19 12:49,"953 Forest St, Seattle, WA 98101" +243802,Bose SoundSport Headphones,1,99.99,08/13/19 11:07,"778 Elm St, Los Angeles, CA 90001" +243803,AA Batteries (4-pack),1,3.84,08/18/19 08:17,"418 Church St, San Francisco, CA 94016" +243804,AA Batteries (4-pack),1,3.84,08/08/19 13:54,"541 Lake St, Boston, MA 02215" +243804,34in Ultrawide Monitor,1,379.99,08/08/19 13:54,"541 Lake St, Boston, MA 02215" +243805,27in FHD Monitor,1,149.99,08/17/19 14:53,"821 Jackson St, Seattle, WA 98101" +243806,USB-C Charging Cable,1,11.95,08/12/19 09:54,"126 Walnut St, San Francisco, CA 94016" +243807,Flatscreen TV,1,300,08/24/19 23:32,"87 Lincoln St, Los Angeles, CA 90001" +243808,Lightning Charging Cable,1,14.95,08/21/19 16:58,"534 8th St, Los Angeles, CA 90001" +243809,20in Monitor,1,109.99,08/08/19 17:53,"507 Forest St, Portland, ME 04101" +243810,Lightning Charging Cable,1,14.95,08/07/19 12:20,"718 Spruce St, Portland, OR 97035" +243811,Macbook Pro Laptop,1,1700,08/08/19 14:17,"577 West St, San Francisco, CA 94016" +243812,Apple Airpods Headphones,1,150,08/02/19 00:59,"45 12th St, Los Angeles, CA 90001" +243813,27in FHD Monitor,1,149.99,08/09/19 18:57,"975 13th St, San Francisco, CA 94016" +243814,AAA Batteries (4-pack),1,2.99,08/04/19 08:43,"441 1st St, New York City, NY 10001" +243815,Macbook Pro Laptop,1,1700,08/22/19 19:03,"652 Lake St, San Francisco, CA 94016" +243816,Apple Airpods Headphones,1,150,08/07/19 15:13,"969 Jefferson St, Los Angeles, CA 90001" +243816,iPhone,1,700,08/07/19 15:13,"969 Jefferson St, Los Angeles, CA 90001" +243817,USB-C Charging Cable,1,11.95,08/27/19 14:01,"39 Meadow St, New York City, NY 10001" +243818,Lightning Charging Cable,1,14.95,08/09/19 09:01,"430 Park St, New York City, NY 10001" +243819,27in FHD Monitor,1,149.99,08/10/19 07:28,"716 Madison St, San Francisco, CA 94016" +243820,AAA Batteries (4-pack),1,2.99,08/22/19 14:59,"154 Walnut St, San Francisco, CA 94016" +243821,Google Phone,1,600,08/24/19 11:26,"486 Elm St, New York City, NY 10001" +243821,USB-C Charging Cable,1,11.95,08/24/19 11:26,"486 Elm St, New York City, NY 10001" +243822,USB-C Charging Cable,1,11.95,08/18/19 23:55,"926 Jefferson St, Los Angeles, CA 90001" +243822,Apple Airpods Headphones,1,150,08/18/19 23:55,"926 Jefferson St, Los Angeles, CA 90001" +243823,iPhone,1,700,08/02/19 10:01,"446 Meadow St, Austin, TX 73301" +243824,AAA Batteries (4-pack),1,2.99,08/05/19 17:30,"621 Washington St, Seattle, WA 98101" +243825,Wired Headphones,1,11.99,08/10/19 12:14,"191 Spruce St, Dallas, TX 75001" +243826,Lightning Charging Cable,1,14.95,08/07/19 14:01,"954 Jackson St, Dallas, TX 75001" +243827,AAA Batteries (4-pack),1,2.99,08/03/19 18:06,"556 Spruce St, Los Angeles, CA 90001" +243828,27in 4K Gaming Monitor,1,389.99,08/15/19 22:47,"677 Pine St, San Francisco, CA 94016" +243829,Bose SoundSport Headphones,1,99.99,08/30/19 10:48,"655 Johnson St, Atlanta, GA 30301" +243830,AA Batteries (4-pack),2,3.84,08/31/19 12:36,"416 Lakeview St, San Francisco, CA 94016" +243831,Google Phone,1,600,08/13/19 11:56,"257 8th St, San Francisco, CA 94016" +243832,Google Phone,1,600,08/05/19 17:27,"831 Pine St, Boston, MA 02215" +243832,USB-C Charging Cable,2,11.95,08/05/19 17:27,"831 Pine St, Boston, MA 02215" +243833,ThinkPad Laptop,1,999.99,08/07/19 11:16,"339 Elm St, New York City, NY 10001" +243834,AA Batteries (4-pack),1,3.84,08/28/19 17:06,"574 Adams St, Atlanta, GA 30301" +243835,Wired Headphones,1,11.99,08/12/19 00:43,"167 Lake St, New York City, NY 10001" +243836,Apple Airpods Headphones,1,150,08/22/19 06:54,"623 Madison St, Los Angeles, CA 90001" +243837,Wired Headphones,1,11.99,08/15/19 16:04,"377 Dogwood St, Seattle, WA 98101" +243838,LG Washing Machine,1,600.0,08/15/19 01:27,"906 Pine St, Boston, MA 02215" +243839,Macbook Pro Laptop,1,1700,08/19/19 04:06,"908 Lincoln St, Austin, TX 73301" +243840,Wired Headphones,1,11.99,08/09/19 12:36,"597 Center St, New York City, NY 10001" +243841,Bose SoundSport Headphones,1,99.99,08/19/19 18:31,"881 13th St, San Francisco, CA 94016" +243842,iPhone,1,700,08/02/19 08:49,"351 Adams St, San Francisco, CA 94016" +243842,Lightning Charging Cable,1,14.95,08/02/19 08:49,"351 Adams St, San Francisco, CA 94016" +243843,Bose SoundSport Headphones,1,99.99,08/23/19 16:08,"771 9th St, Austin, TX 73301" +243844,USB-C Charging Cable,1,11.95,08/18/19 20:58,"806 Forest St, Portland, ME 04101" +243845,Bose SoundSport Headphones,1,99.99,08/18/19 19:38,"405 1st St, San Francisco, CA 94016" +243846,Wired Headphones,1,11.99,08/28/19 21:04,"688 Lake St, New York City, NY 10001" +243847,USB-C Charging Cable,1,11.95,08/28/19 10:26,"856 Madison St, New York City, NY 10001" +243848,27in 4K Gaming Monitor,1,389.99,08/02/19 15:32,"327 1st St, Austin, TX 73301" +243849,Lightning Charging Cable,1,14.95,08/11/19 17:11,"269 13th St, Los Angeles, CA 90001" +243850,AAA Batteries (4-pack),1,2.99,08/13/19 12:17,"689 Lincoln St, New York City, NY 10001" +243851,Apple Airpods Headphones,1,150,08/05/19 21:06,"210 Dogwood St, Portland, OR 97035" +243852,20in Monitor,1,109.99,08/28/19 20:34,"954 Ridge St, Austin, TX 73301" +243853,20in Monitor,1,109.99,08/17/19 17:45,"368 Forest St, Los Angeles, CA 90001" +243854,Lightning Charging Cable,1,14.95,08/09/19 01:06,"445 Cherry St, Atlanta, GA 30301" +243855,Macbook Pro Laptop,1,1700,08/17/19 11:06,"665 North St, Dallas, TX 75001" +243856,iPhone,1,700,08/06/19 06:33,"493 North St, Austin, TX 73301" +243857,AA Batteries (4-pack),1,3.84,08/07/19 14:54,"193 Pine St, Los Angeles, CA 90001" +243858,27in FHD Monitor,1,149.99,08/21/19 23:01,"957 2nd St, New York City, NY 10001" +243859,27in 4K Gaming Monitor,1,389.99,08/06/19 21:51,"416 12th St, Atlanta, GA 30301" +243860,Apple Airpods Headphones,1,150,08/23/19 18:58,"59 10th St, Dallas, TX 75001" +243861,Wired Headphones,1,11.99,08/12/19 14:52,"686 North St, San Francisco, CA 94016" +243862,Lightning Charging Cable,1,14.95,08/16/19 01:49,"23 Willow St, San Francisco, CA 94016" +243863,AA Batteries (4-pack),1,3.84,08/18/19 13:38,"612 Walnut St, Austin, TX 73301" +243864,ThinkPad Laptop,1,999.99,08/31/19 14:32,"539 14th St, New York City, NY 10001" +243865,AA Batteries (4-pack),2,3.84,08/26/19 17:41,"943 Jefferson St, Austin, TX 73301" +243866,AAA Batteries (4-pack),3,2.99,08/14/19 18:08,"80 Hickory St, Seattle, WA 98101" +243867,34in Ultrawide Monitor,1,379.99,08/25/19 21:27,"448 Walnut St, Dallas, TX 75001" +243868,Lightning Charging Cable,2,14.95,08/05/19 13:44,"765 Jefferson St, Dallas, TX 75001" +243869,Apple Airpods Headphones,1,150,08/18/19 10:34,"190 Ridge St, New York City, NY 10001" +243870,Lightning Charging Cable,2,14.95,08/10/19 00:09,"576 Meadow St, Boston, MA 02215" +243871,Lightning Charging Cable,1,14.95,08/16/19 15:56,"795 West St, San Francisco, CA 94016" +243872,Lightning Charging Cable,1,14.95,08/04/19 00:10,"67 Sunset St, Austin, TX 73301" +243873,AA Batteries (4-pack),3,3.84,08/07/19 15:46,"921 River St, Portland, OR 97035" +243874,AA Batteries (4-pack),2,3.84,08/06/19 01:08,"545 7th St, Portland, OR 97035" +243875,Macbook Pro Laptop,1,1700,08/06/19 23:17,"14 Sunset St, Boston, MA 02215" +243876,Google Phone,1,600,08/16/19 21:26,"686 Washington St, Dallas, TX 75001" +243877,USB-C Charging Cable,1,11.95,08/15/19 13:35,"664 Hickory St, San Francisco, CA 94016" +243878,USB-C Charging Cable,1,11.95,08/30/19 18:19,"70 13th St, San Francisco, CA 94016" +243879,Flatscreen TV,1,300,08/25/19 22:58,"735 Highland St, Seattle, WA 98101" +243880,Macbook Pro Laptop,1,1700,08/16/19 18:48,"498 Lake St, New York City, NY 10001" +243881,Apple Airpods Headphones,1,150,08/20/19 07:42,"99 Highland St, Seattle, WA 98101" +243882,USB-C Charging Cable,1,11.95,08/26/19 12:05,"215 Cherry St, Dallas, TX 75001" +243883,Bose SoundSport Headphones,1,99.99,08/02/19 18:09,"759 Johnson St, San Francisco, CA 94016" +243884,iPhone,1,700,08/07/19 14:06,"692 Washington St, New York City, NY 10001" +243885,AAA Batteries (4-pack),4,2.99,08/03/19 14:59,"917 14th St, Seattle, WA 98101" +243886,AAA Batteries (4-pack),1,2.99,08/28/19 11:35,"606 Center St, Los Angeles, CA 90001" +243887,34in Ultrawide Monitor,1,379.99,08/15/19 22:27,"449 Lake St, New York City, NY 10001" +243888,AAA Batteries (4-pack),2,2.99,08/31/19 15:28,"379 2nd St, San Francisco, CA 94016" +243889,ThinkPad Laptop,1,999.99,08/21/19 07:21,"871 Jefferson St, San Francisco, CA 94016" +243890,Wired Headphones,1,11.99,08/18/19 10:13,"255 Willow St, Dallas, TX 75001" +243891,27in FHD Monitor,1,149.99,08/21/19 11:32,"674 13th St, Boston, MA 02215" +243892,USB-C Charging Cable,1,11.95,08/07/19 23:44,"932 Park St, Los Angeles, CA 90001" +243893,iPhone,1,700,08/07/19 04:26,"474 Spruce St, Austin, TX 73301" +243893,Lightning Charging Cable,1,14.95,08/07/19 04:26,"474 Spruce St, Austin, TX 73301" +243893,Wired Headphones,1,11.99,08/07/19 04:26,"474 Spruce St, Austin, TX 73301" +243894,Lightning Charging Cable,1,14.95,08/11/19 18:21,"389 Pine St, Boston, MA 02215" +243895,AAA Batteries (4-pack),1,2.99,08/21/19 20:59,"875 Lincoln St, Portland, OR 97035" +243896,27in FHD Monitor,1,149.99,08/21/19 14:06,"411 Forest St, Los Angeles, CA 90001" +243897,Lightning Charging Cable,1,14.95,08/05/19 10:27,"879 Adams St, Austin, TX 73301" +243898,Bose SoundSport Headphones,1,99.99,08/28/19 14:23,"612 Sunset St, San Francisco, CA 94016" +243899,34in Ultrawide Monitor,1,379.99,08/15/19 06:08,"488 Park St, San Francisco, CA 94016" +243900,Bose SoundSport Headphones,1,99.99,08/18/19 11:08,"305 Jackson St, Seattle, WA 98101" +243901,AAA Batteries (4-pack),1,2.99,08/24/19 10:40,"14 Lake St, San Francisco, CA 94016" +243902,USB-C Charging Cable,1,11.95,08/25/19 22:27,"524 12th St, New York City, NY 10001" +243903,USB-C Charging Cable,1,11.95,08/10/19 16:28,"873 Ridge St, Boston, MA 02215" +243904,ThinkPad Laptop,1,999.99,08/14/19 01:23,"138 Walnut St, New York City, NY 10001" +243905,AA Batteries (4-pack),1,3.84,08/15/19 13:41,"143 Cherry St, Atlanta, GA 30301" +243906,Apple Airpods Headphones,1,150,08/22/19 08:06,"747 Walnut St, Portland, OR 97035" +243907,Lightning Charging Cable,1,14.95,08/21/19 15:52,"727 Dogwood St, Austin, TX 73301" +243908,AAA Batteries (4-pack),1,2.99,08/24/19 10:40,"619 5th St, Dallas, TX 75001" +243909,AAA Batteries (4-pack),1,2.99,08/16/19 14:49,"13 Hill St, Boston, MA 02215" +243910,Vareebadd Phone,1,400,08/17/19 12:02,"767 Lincoln St, San Francisco, CA 94016" +243911,iPhone,1,700,08/27/19 01:15,"559 Lincoln St, San Francisco, CA 94016" +243911,Wired Headphones,1,11.99,08/27/19 01:15,"559 Lincoln St, San Francisco, CA 94016" +243912,ThinkPad Laptop,1,999.99,08/18/19 12:11,"630 Adams St, Seattle, WA 98101" +243913,USB-C Charging Cable,1,11.95,08/22/19 22:34,"661 Church St, San Francisco, CA 94016" +243914,Wired Headphones,1,11.99,08/18/19 16:04,"883 Spruce St, Los Angeles, CA 90001" +243915,Wired Headphones,1,11.99,08/11/19 14:12,"945 Willow St, New York City, NY 10001" +243916,Apple Airpods Headphones,1,150,08/09/19 17:08,"242 Hill St, Portland, OR 97035" +243917,AA Batteries (4-pack),1,3.84,08/04/19 13:26,"959 5th St, Boston, MA 02215" +243918,Flatscreen TV,1,300,08/16/19 17:32,"852 Sunset St, Atlanta, GA 30301" +243918,Bose SoundSport Headphones,1,99.99,08/16/19 17:32,"852 Sunset St, Atlanta, GA 30301" +243919,Bose SoundSport Headphones,1,99.99,08/22/19 07:27,"992 Elm St, San Francisco, CA 94016" +243920,20in Monitor,1,109.99,08/12/19 21:15,"439 9th St, Seattle, WA 98101" +243921,Macbook Pro Laptop,1,1700,08/01/19 23:00,"126 Center St, San Francisco, CA 94016" +243922,27in FHD Monitor,1,149.99,08/24/19 23:08,"979 12th St, Boston, MA 02215" +243923,AAA Batteries (4-pack),1,2.99,08/27/19 18:23,"312 Chestnut St, Boston, MA 02215" +243924,USB-C Charging Cable,1,11.95,08/20/19 19:23,"540 Spruce St, Los Angeles, CA 90001" +243925,Apple Airpods Headphones,1,150,08/31/19 21:43,"914 Spruce St, Seattle, WA 98101" +243926,Apple Airpods Headphones,1,150,08/06/19 17:41,"596 Adams St, San Francisco, CA 94016" +243927,AA Batteries (4-pack),1,3.84,08/11/19 15:10,"273 Cedar St, Boston, MA 02215" +243928,AA Batteries (4-pack),1,3.84,08/15/19 17:33,"674 4th St, San Francisco, CA 94016" +243929,Apple Airpods Headphones,1,150,08/10/19 16:55,"84 13th St, Atlanta, GA 30301" +243930,USB-C Charging Cable,1,11.95,08/18/19 12:25,"775 13th St, San Francisco, CA 94016" +243931,USB-C Charging Cable,1,11.95,08/27/19 14:21,"778 Ridge St, Los Angeles, CA 90001" +243932,USB-C Charging Cable,2,11.95,08/27/19 16:15,"887 Church St, Boston, MA 02215" +243933,Macbook Pro Laptop,1,1700,08/22/19 15:28,"328 Elm St, San Francisco, CA 94016" +243934,USB-C Charging Cable,1,11.95,08/29/19 20:44,"478 Johnson St, New York City, NY 10001" +243935,iPhone,1,700,08/17/19 11:28,"734 River St, New York City, NY 10001" +243936,USB-C Charging Cable,1,11.95,08/23/19 20:51,"4 Cedar St, Dallas, TX 75001" +243937,Apple Airpods Headphones,1,150,08/25/19 10:31,"245 Madison St, San Francisco, CA 94016" +243938,20in Monitor,1,109.99,08/01/19 08:42,"19 Park St, New York City, NY 10001" +243939,Wired Headphones,1,11.99,08/11/19 17:21,"399 Sunset St, Portland, OR 97035" +243940,Lightning Charging Cable,1,14.95,08/01/19 17:11,"842 Hill St, Atlanta, GA 30301" +243941,AAA Batteries (4-pack),1,2.99,08/25/19 11:55,"126 Lincoln St, San Francisco, CA 94016" +243942,ThinkPad Laptop,1,999.99,08/23/19 12:33,"868 North St, Dallas, TX 75001" +243943,AAA Batteries (4-pack),1,2.99,08/21/19 15:29,"369 5th St, San Francisco, CA 94016" +243944,USB-C Charging Cable,1,11.95,08/13/19 18:54,"322 Ridge St, Portland, OR 97035" +243945,Bose SoundSport Headphones,1,99.99,08/04/19 09:59,"826 Ridge St, San Francisco, CA 94016" +243946,USB-C Charging Cable,2,11.95,08/22/19 22:24,"417 Lake St, New York City, NY 10001" +243947,Lightning Charging Cable,2,14.95,08/23/19 09:56,"752 7th St, Austin, TX 73301" +243948,Bose SoundSport Headphones,1,99.99,08/04/19 13:36,"62 1st St, San Francisco, CA 94016" +243949,Bose SoundSport Headphones,1,99.99,08/30/19 01:55,"99 9th St, New York City, NY 10001" +243950,AAA Batteries (4-pack),2,2.99,08/13/19 19:21,"91 Dogwood St, Los Angeles, CA 90001" +243951,27in 4K Gaming Monitor,1,389.99,08/22/19 19:26,"375 West St, Los Angeles, CA 90001" +243952,27in 4K Gaming Monitor,1,389.99,08/06/19 03:48,"195 Spruce St, Austin, TX 73301" +243953,Bose SoundSport Headphones,1,99.99,08/25/19 11:09,"658 Meadow St, San Francisco, CA 94016" +243954,Lightning Charging Cable,1,14.95,08/05/19 20:51,"291 North St, Los Angeles, CA 90001" +243955,AAA Batteries (4-pack),1,2.99,08/25/19 01:14,"445 14th St, Los Angeles, CA 90001" +243955,AA Batteries (4-pack),1,3.84,08/25/19 01:14,"445 14th St, Los Angeles, CA 90001" +243956,AA Batteries (4-pack),1,3.84,08/31/19 06:23,"837 River St, Dallas, TX 75001" +243957,Wired Headphones,1,11.99,08/25/19 07:42,"147 4th St, New York City, NY 10001" +243958,AA Batteries (4-pack),1,3.84,08/22/19 19:53,"287 Center St, New York City, NY 10001" +243959,USB-C Charging Cable,1,11.95,08/30/19 20:53,"47 Madison St, Los Angeles, CA 90001" +243960,Apple Airpods Headphones,1,150,08/19/19 11:44,"953 Hill St, Seattle, WA 98101" +243961,LG Washing Machine,1,600.0,08/28/19 17:54,"864 Spruce St, San Francisco, CA 94016" +243962,AAA Batteries (4-pack),3,2.99,08/19/19 22:09,"653 9th St, Dallas, TX 75001" +243963,Apple Airpods Headphones,1,150,08/30/19 21:17,"254 Center St, San Francisco, CA 94016" +243964,ThinkPad Laptop,1,999.99,08/26/19 18:36,"350 6th St, Atlanta, GA 30301" +243965,AAA Batteries (4-pack),1,2.99,08/15/19 17:52,"98 Lakeview St, Los Angeles, CA 90001" +243966,Apple Airpods Headphones,1,150,08/16/19 19:08,"40 Elm St, San Francisco, CA 94016" +243967,Lightning Charging Cable,1,14.95,08/28/19 13:22,"921 Chestnut St, Atlanta, GA 30301" +243968,Google Phone,1,600,08/01/19 15:02,"785 1st St, Atlanta, GA 30301" +243968,Wired Headphones,1,11.99,08/01/19 15:02,"785 1st St, Atlanta, GA 30301" +243969,AAA Batteries (4-pack),1,2.99,08/19/19 20:20,"572 Lakeview St, Dallas, TX 75001" +243970,Bose SoundSport Headphones,1,99.99,08/26/19 15:15,"707 Washington St, San Francisco, CA 94016" +243971,27in 4K Gaming Monitor,1,389.99,08/08/19 18:00,"478 12th St, San Francisco, CA 94016" +243972,AAA Batteries (4-pack),2,2.99,08/21/19 10:04,"814 Meadow St, New York City, NY 10001" +243973,AA Batteries (4-pack),1,3.84,08/03/19 23:57,"371 Jackson St, Dallas, TX 75001" +243974,AAA Batteries (4-pack),3,2.99,08/31/19 06:30,"708 Lakeview St, Atlanta, GA 30301" +243975,AAA Batteries (4-pack),1,2.99,08/23/19 01:35,"270 Madison St, Los Angeles, CA 90001" +243976,Apple Airpods Headphones,1,150,08/02/19 01:03,"531 Hill St, Portland, OR 97035" +243977,USB-C Charging Cable,1,11.95,08/14/19 02:08,"832 Center St, San Francisco, CA 94016" +243978,Wired Headphones,1,11.99,08/08/19 14:54,"975 Ridge St, San Francisco, CA 94016" +243979,USB-C Charging Cable,1,11.95,08/17/19 12:33,"283 Hickory St, San Francisco, CA 94016" +243980,Wired Headphones,1,11.99,08/21/19 10:03,"521 Park St, Los Angeles, CA 90001" +243981,Wired Headphones,1,11.99,08/16/19 13:37,"436 Chestnut St, New York City, NY 10001" +243982,Bose SoundSport Headphones,1,99.99,08/13/19 05:48,"237 Willow St, Dallas, TX 75001" +243983,ThinkPad Laptop,1,999.99,08/20/19 17:35,"893 11th St, Atlanta, GA 30301" +243983,AA Batteries (4-pack),2,3.84,08/20/19 17:35,"893 11th St, Atlanta, GA 30301" +243984,AA Batteries (4-pack),1,3.84,08/01/19 17:21,"949 Madison St, Dallas, TX 75001" +243985,Apple Airpods Headphones,1,150,08/04/19 12:16,"304 10th St, San Francisco, CA 94016" +243986,Macbook Pro Laptop,1,1700,08/06/19 00:20,"515 Main St, Dallas, TX 75001" +243987,AA Batteries (4-pack),3,3.84,08/31/19 22:26,"29 8th St, New York City, NY 10001" +243988,LG Washing Machine,1,600.0,08/12/19 18:36,"168 Adams St, Dallas, TX 75001" +243989,iPhone,1,700,08/31/19 13:14,"195 Cedar St, San Francisco, CA 94016" +243990,Apple Airpods Headphones,1,150,08/11/19 20:14,"840 Madison St, New York City, NY 10001" +243991,USB-C Charging Cable,2,11.95,08/16/19 18:04,"767 Ridge St, Dallas, TX 75001" +243992,AAA Batteries (4-pack),4,2.99,08/05/19 13:38,"174 Meadow St, San Francisco, CA 94016" +243993,AA Batteries (4-pack),1,3.84,08/25/19 16:54,"158 Forest St, New York City, NY 10001" +243994,34in Ultrawide Monitor,1,379.99,08/05/19 01:06,"50 Jefferson St, Austin, TX 73301" +243995,AA Batteries (4-pack),1,3.84,08/10/19 14:26,"619 Walnut St, Boston, MA 02215" +243996,Google Phone,1,600,08/17/19 12:59,"528 West St, Dallas, TX 75001" +243997,Wired Headphones,1,11.99,08/27/19 08:25,"61 11th St, San Francisco, CA 94016" +243998,USB-C Charging Cable,1,11.95,08/11/19 18:26,"234 Center St, Portland, OR 97035" +243999,USB-C Charging Cable,1,11.95,08/13/19 21:56,"531 11th St, Boston, MA 02215" +244000,Google Phone,1,600,08/28/19 12:01,"325 Jackson St, San Francisco, CA 94016" +244001,Wired Headphones,2,11.99,08/03/19 13:01,"222 7th St, Los Angeles, CA 90001" +244002,Apple Airpods Headphones,1,150,08/03/19 09:36,"268 11th St, Boston, MA 02215" +244003,AAA Batteries (4-pack),1,2.99,08/23/19 11:08,"158 Adams St, Boston, MA 02215" +244004,Apple Airpods Headphones,1,150,08/16/19 07:44,"99 Hickory St, Atlanta, GA 30301" +244005,AA Batteries (4-pack),1,3.84,08/22/19 01:44,"611 10th St, Austin, TX 73301" +244006,AA Batteries (4-pack),2,3.84,08/18/19 18:30,"369 Cherry St, Portland, OR 97035" +244007,27in 4K Gaming Monitor,1,389.99,08/05/19 09:03,"634 Jackson St, Portland, OR 97035" +244008,USB-C Charging Cable,2,11.95,08/21/19 20:40,"774 5th St, Portland, OR 97035" +244009,Lightning Charging Cable,1,14.95,08/24/19 18:39,"573 8th St, Los Angeles, CA 90001" +244010,Apple Airpods Headphones,1,150,08/18/19 13:03,"94 Cedar St, San Francisco, CA 94016" +244011,Bose SoundSport Headphones,1,99.99,08/03/19 11:58,"582 2nd St, San Francisco, CA 94016" +244012,Apple Airpods Headphones,1,150,08/05/19 05:42,"454 6th St, Los Angeles, CA 90001" +244013,Flatscreen TV,1,300,08/07/19 16:20,"230 Forest St, Los Angeles, CA 90001" +244014,AA Batteries (4-pack),1,3.84,08/23/19 23:23,"835 South St, San Francisco, CA 94016" +244015,AA Batteries (4-pack),1,3.84,08/11/19 13:09,"455 Ridge St, Portland, OR 97035" +244016,Bose SoundSport Headphones,1,99.99,08/23/19 13:27,"670 Highland St, Boston, MA 02215" +244017,Apple Airpods Headphones,1,150,09/01/19 00:45,"295 13th St, San Francisco, CA 94016" +244018,USB-C Charging Cable,1,11.95,08/02/19 20:22,"569 Willow St, Austin, TX 73301" +244019,Bose SoundSport Headphones,1,99.99,08/20/19 22:42,"707 North St, Boston, MA 02215" +244020,Lightning Charging Cable,1,14.95,08/31/19 17:36,"195 South St, Los Angeles, CA 90001" +244021,Flatscreen TV,1,300,08/09/19 12:49,"304 Center St, Austin, TX 73301" +244022,Wired Headphones,1,11.99,08/20/19 19:35,"828 Sunset St, Boston, MA 02215" +244023,34in Ultrawide Monitor,1,379.99,08/21/19 17:57,"942 14th St, New York City, NY 10001" +244024,27in FHD Monitor,1,149.99,08/27/19 12:21,"95 Park St, San Francisco, CA 94016" +244025,Bose SoundSport Headphones,1,99.99,08/12/19 08:00,"869 Highland St, San Francisco, CA 94016" +244026,AAA Batteries (4-pack),1,2.99,08/29/19 17:30,"691 6th St, Atlanta, GA 30301" +244027,USB-C Charging Cable,1,11.95,08/27/19 11:40,"696 Forest St, San Francisco, CA 94016" +244028,Lightning Charging Cable,1,14.95,08/31/19 18:05,"165 Meadow St, Los Angeles, CA 90001" +244029,Google Phone,1,600,08/05/19 19:15,"270 South St, Los Angeles, CA 90001" +244030,Apple Airpods Headphones,1,150,08/05/19 00:07,"910 Pine St, San Francisco, CA 94016" +244031,USB-C Charging Cable,1,11.95,08/23/19 12:14,"826 Spruce St, Atlanta, GA 30301" +244032,Lightning Charging Cable,1,14.95,08/17/19 20:26,"75 8th St, Austin, TX 73301" +244033,27in FHD Monitor,1,149.99,08/13/19 21:20,"459 Jefferson St, San Francisco, CA 94016" +244034,Wired Headphones,1,11.99,08/17/19 21:53,"197 Elm St, Dallas, TX 75001" +244035,Wired Headphones,1,11.99,08/02/19 10:37,"181 South St, Seattle, WA 98101" +244036,20in Monitor,1,109.99,08/10/19 23:46,"715 13th St, San Francisco, CA 94016" +244037,Flatscreen TV,1,300,08/30/19 22:09,"717 Center St, Los Angeles, CA 90001" +244038,Google Phone,1,600,08/18/19 22:18,"13 13th St, Dallas, TX 75001" +244039,iPhone,1,700,08/12/19 22:39,"340 Willow St, Los Angeles, CA 90001" +244040,AA Batteries (4-pack),3,3.84,08/21/19 10:01,"554 1st St, San Francisco, CA 94016" +244041,Lightning Charging Cable,1,14.95,08/11/19 11:07,"401 Adams St, Atlanta, GA 30301" +244042,Bose SoundSport Headphones,1,99.99,08/09/19 10:19,"589 2nd St, San Francisco, CA 94016" +244043,Bose SoundSport Headphones,1,99.99,08/22/19 11:51,"547 Forest St, New York City, NY 10001" +244043,Flatscreen TV,1,300,08/22/19 11:51,"547 Forest St, New York City, NY 10001" +244044,27in FHD Monitor,1,149.99,08/03/19 10:52,"629 Forest St, Los Angeles, CA 90001" +244045,AA Batteries (4-pack),1,3.84,08/02/19 14:49,"600 South St, New York City, NY 10001" +244046,USB-C Charging Cable,1,11.95,08/01/19 11:22,"731 8th St, San Francisco, CA 94016" +244047,iPhone,1,700,08/23/19 01:59,"525 West St, Los Angeles, CA 90001" +244048,iPhone,1,700,08/26/19 09:36,"915 13th St, San Francisco, CA 94016" +244048,Wired Headphones,1,11.99,08/26/19 09:36,"915 13th St, San Francisco, CA 94016" +244049,AA Batteries (4-pack),2,3.84,08/13/19 18:57,"735 Spruce St, New York City, NY 10001" +244050,USB-C Charging Cable,1,11.95,08/06/19 08:36,"733 Park St, Boston, MA 02215" +244051,Bose SoundSport Headphones,1,99.99,08/19/19 22:23,"987 12th St, Los Angeles, CA 90001" +244052,Lightning Charging Cable,1,14.95,08/06/19 16:02,"738 Adams St, San Francisco, CA 94016" +244053,Bose SoundSport Headphones,1,99.99,08/21/19 10:24,"635 6th St, Boston, MA 02215" +244054,ThinkPad Laptop,1,999.99,08/31/19 16:38,"692 5th St, San Francisco, CA 94016" +244055,34in Ultrawide Monitor,1,379.99,08/27/19 09:50,"65 Dogwood St, San Francisco, CA 94016" +244056,Wired Headphones,1,11.99,08/24/19 20:05,"359 Adams St, Seattle, WA 98101" +244057,Apple Airpods Headphones,1,150,08/23/19 03:16,"18 Madison St, Portland, OR 97035" +244058,AAA Batteries (4-pack),5,2.99,08/18/19 20:02,"845 Cherry St, San Francisco, CA 94016" +244059,Google Phone,1,600,08/04/19 15:20,"535 Lakeview St, Austin, TX 73301" +244060,Macbook Pro Laptop,1,1700,08/09/19 23:28,"68 Center St, Austin, TX 73301" +244061,27in FHD Monitor,1,149.99,08/21/19 00:10,"583 Wilson St, Portland, ME 04101" +244062,Lightning Charging Cable,1,14.95,08/31/19 16:57,"188 North St, Boston, MA 02215" +244063,AAA Batteries (4-pack),1,2.99,08/02/19 10:12,"272 1st St, Los Angeles, CA 90001" +244064,USB-C Charging Cable,1,11.95,08/18/19 14:42,"110 Washington St, Los Angeles, CA 90001" +244065,iPhone,1,700,08/05/19 15:22,"932 Lincoln St, Atlanta, GA 30301" +244066,Lightning Charging Cable,1,14.95,08/06/19 08:55,"513 West St, Boston, MA 02215" +244067,USB-C Charging Cable,1,11.95,08/09/19 09:28,"349 Chestnut St, Boston, MA 02215" +244068,AAA Batteries (4-pack),2,2.99,08/31/19 18:50,"805 5th St, Los Angeles, CA 90001" +244069,iPhone,1,700,08/25/19 11:23,"158 West St, San Francisco, CA 94016" +244070,USB-C Charging Cable,1,11.95,08/16/19 19:52,"756 10th St, San Francisco, CA 94016" +244071,Wired Headphones,1,11.99,08/26/19 23:16,"430 Hickory St, Boston, MA 02215" +244072,LG Washing Machine,1,600.0,08/27/19 14:30,"701 11th St, New York City, NY 10001" +244073,USB-C Charging Cable,1,11.95,08/29/19 17:39,"746 Lakeview St, Austin, TX 73301" +244074,AA Batteries (4-pack),1,3.84,08/31/19 15:35,"79 Madison St, New York City, NY 10001" +244075,AAA Batteries (4-pack),2,2.99,08/07/19 11:22,"96 Chestnut St, New York City, NY 10001" +244076,Apple Airpods Headphones,1,150,08/03/19 09:57,"639 Washington St, Austin, TX 73301" +244077,Bose SoundSport Headphones,1,99.99,08/24/19 11:47,"363 Adams St, Portland, ME 04101" +244078,Wired Headphones,1,11.99,08/29/19 12:54,"690 Maple St, San Francisco, CA 94016" +244079,AA Batteries (4-pack),1,3.84,08/26/19 12:14,"50 Sunset St, San Francisco, CA 94016" +244080,34in Ultrawide Monitor,1,379.99,08/09/19 15:23,"408 9th St, New York City, NY 10001" +244081,AA Batteries (4-pack),4,3.84,08/14/19 15:51,"736 Forest St, Dallas, TX 75001" +244082,Bose SoundSport Headphones,1,99.99,08/31/19 17:11,"66 Chestnut St, New York City, NY 10001" +244083,iPhone,1,700,08/25/19 16:48,"874 Walnut St, San Francisco, CA 94016" +244083,Lightning Charging Cable,1,14.95,08/25/19 16:48,"874 Walnut St, San Francisco, CA 94016" +244083,Apple Airpods Headphones,1,150,08/25/19 16:48,"874 Walnut St, San Francisco, CA 94016" +244084,Lightning Charging Cable,1,14.95,08/03/19 13:12,"369 Lake St, Los Angeles, CA 90001" +244085,Wired Headphones,1,11.99,08/13/19 18:43,"570 Dogwood St, Los Angeles, CA 90001" +244086,AA Batteries (4-pack),1,3.84,08/08/19 12:52,"593 7th St, Boston, MA 02215" +244087,34in Ultrawide Monitor,1,379.99,08/13/19 17:57,"581 Elm St, Boston, MA 02215" +244088,Bose SoundSport Headphones,1,99.99,08/04/19 12:20,"327 Spruce St, New York City, NY 10001" +244089,Google Phone,1,600,08/22/19 18:03,"862 Walnut St, New York City, NY 10001" +244089,Wired Headphones,1,11.99,08/22/19 18:03,"862 Walnut St, New York City, NY 10001" +244090,AAA Batteries (4-pack),1,2.99,08/18/19 20:08,"747 Jefferson St, New York City, NY 10001" +244091,iPhone,1,700,08/16/19 23:55,"792 Chestnut St, San Francisco, CA 94016" +244092,AA Batteries (4-pack),1,3.84,08/11/19 13:36,"186 12th St, Portland, OR 97035" +244093,Lightning Charging Cable,1,14.95,08/25/19 18:56,"763 Hill St, Los Angeles, CA 90001" +244094,Bose SoundSport Headphones,1,99.99,08/16/19 21:28,"174 Cedar St, Boston, MA 02215" +244095,Wired Headphones,1,11.99,08/07/19 08:31,"305 Ridge St, Atlanta, GA 30301" +244096,USB-C Charging Cable,1,11.95,08/01/19 14:12,"185 Lincoln St, New York City, NY 10001" +244096,27in FHD Monitor,1,149.99,08/01/19 14:12,"185 Lincoln St, New York City, NY 10001" +244097,Wired Headphones,1,11.99,08/05/19 07:30,"81 7th St, Austin, TX 73301" +244097,USB-C Charging Cable,1,11.95,08/05/19 07:30,"81 7th St, Austin, TX 73301" +244098,Bose SoundSport Headphones,1,99.99,08/19/19 18:56,"207 Ridge St, San Francisco, CA 94016" +244099,Lightning Charging Cable,1,14.95,08/17/19 23:13,"861 4th St, San Francisco, CA 94016" +244100,AA Batteries (4-pack),2,3.84,08/03/19 10:15,"308 Johnson St, Boston, MA 02215" +244101,USB-C Charging Cable,1,11.95,08/19/19 12:50,"131 Chestnut St, Boston, MA 02215" +244102,Apple Airpods Headphones,1,150,08/23/19 17:08,"778 7th St, San Francisco, CA 94016" +244103,27in FHD Monitor,1,149.99,08/25/19 13:00,"399 Willow St, New York City, NY 10001" +244103,Google Phone,1,600,08/25/19 13:00,"399 Willow St, New York City, NY 10001" +244104,AAA Batteries (4-pack),2,2.99,08/04/19 17:30,"684 4th St, Boston, MA 02215" +244105,Macbook Pro Laptop,1,1700,08/25/19 01:17,"868 Chestnut St, San Francisco, CA 94016" +244106,AAA Batteries (4-pack),1,2.99,08/03/19 14:17,"855 Washington St, Seattle, WA 98101" +244107,AAA Batteries (4-pack),2,2.99,08/24/19 14:29,"378 Lincoln St, Atlanta, GA 30301" +244108,iPhone,1,700,08/17/19 16:45,"529 Madison St, Portland, OR 97035" +244109,34in Ultrawide Monitor,1,379.99,08/23/19 11:08,"221 13th St, San Francisco, CA 94016" +244110,Wired Headphones,1,11.99,08/03/19 10:42,"449 5th St, Boston, MA 02215" +244111,27in FHD Monitor,1,149.99,08/13/19 16:51,"473 South St, Austin, TX 73301" +244112,Bose SoundSport Headphones,1,99.99,08/03/19 18:59,"255 Jefferson St, Los Angeles, CA 90001" +244113,Wired Headphones,1,11.99,08/09/19 13:12,"48 Jefferson St, San Francisco, CA 94016" +244114,ThinkPad Laptop,1,999.99,08/14/19 09:36,"520 Lincoln St, Boston, MA 02215" +244114,Lightning Charging Cable,1,14.95,08/14/19 09:36,"520 Lincoln St, Boston, MA 02215" +244115,Bose SoundSport Headphones,1,99.99,08/27/19 14:41,"203 Church St, Atlanta, GA 30301" +244116,Wired Headphones,1,11.99,08/24/19 08:19,"83 Hickory St, New York City, NY 10001" +244117,AAA Batteries (4-pack),4,2.99,08/10/19 17:28,"246 14th St, Los Angeles, CA 90001" +244118,USB-C Charging Cable,1,11.95,08/28/19 21:05,"11 Pine St, Atlanta, GA 30301" +244119,AA Batteries (4-pack),1,3.84,08/27/19 03:28,"921 8th St, Los Angeles, CA 90001" +244120,Flatscreen TV,1,300,08/20/19 01:44,"244 14th St, San Francisco, CA 94016" +244121,Wired Headphones,1,11.99,08/13/19 06:51,"354 Main St, Los Angeles, CA 90001" +244122,iPhone,1,700,08/07/19 22:40,"274 11th St, Boston, MA 02215" +244123,20in Monitor,1,109.99,08/25/19 13:45,"36 Center St, San Francisco, CA 94016" +244124,Bose SoundSport Headphones,1,99.99,08/11/19 14:18,"791 Cherry St, Boston, MA 02215" +244125,Lightning Charging Cable,1,14.95,08/25/19 17:58,"156 Lake St, Atlanta, GA 30301" +244126,USB-C Charging Cable,2,11.95,08/07/19 23:41,"380 10th St, San Francisco, CA 94016" +244127,Macbook Pro Laptop,1,1700,08/04/19 16:59,"220 7th St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +244128,Macbook Pro Laptop,1,1700,08/19/19 14:40,"743 Forest St, New York City, NY 10001" +244129,Bose SoundSport Headphones,1,99.99,08/05/19 12:14,"726 Walnut St, San Francisco, CA 94016" +244130,AA Batteries (4-pack),1,3.84,08/09/19 12:42,"662 Dogwood St, Austin, TX 73301" +244131,Apple Airpods Headphones,1,150,08/30/19 09:26,"697 11th St, Los Angeles, CA 90001" +244132,Lightning Charging Cable,1,14.95,08/06/19 19:04,"204 River St, New York City, NY 10001" +244133,Wired Headphones,1,11.99,08/03/19 01:31,"270 Cherry St, San Francisco, CA 94016" +244134,Lightning Charging Cable,1,14.95,08/06/19 21:44,"346 Main St, Los Angeles, CA 90001" +244135,AAA Batteries (4-pack),3,2.99,08/06/19 23:56,"28 Washington St, San Francisco, CA 94016" +244136,AAA Batteries (4-pack),1,2.99,08/21/19 11:25,"880 Hill St, Dallas, TX 75001" +244137,AA Batteries (4-pack),2,3.84,08/06/19 21:05,"972 Highland St, San Francisco, CA 94016" +244138,USB-C Charging Cable,1,11.95,08/02/19 20:55,"444 Spruce St, Boston, MA 02215" +244139,AA Batteries (4-pack),2,3.84,08/05/19 19:22,"487 6th St, Atlanta, GA 30301" +244140,Lightning Charging Cable,1,14.95,08/31/19 16:53,"509 Church St, Los Angeles, CA 90001" +244141,Bose SoundSport Headphones,1,99.99,08/15/19 22:10,"361 1st St, Boston, MA 02215" +244142,USB-C Charging Cable,2,11.95,08/26/19 22:56,"873 Pine St, New York City, NY 10001" +244143,Lightning Charging Cable,1,14.95,08/17/19 20:38,"926 Maple St, Seattle, WA 98101" +244144,Apple Airpods Headphones,1,150,08/08/19 17:23,"918 6th St, Los Angeles, CA 90001" +244145,iPhone,1,700,08/07/19 10:45,"638 12th St, San Francisco, CA 94016" +244146,LG Dryer,1,600.0,08/11/19 23:08,"801 Willow St, San Francisco, CA 94016" +244147,USB-C Charging Cable,1,11.95,08/05/19 07:47,"449 Jefferson St, Los Angeles, CA 90001" +244148,Apple Airpods Headphones,1,150,08/01/19 23:53,"643 Maple St, New York City, NY 10001" +244149,LG Dryer,1,600.0,08/25/19 14:52,"556 Jefferson St, Boston, MA 02215" +244150,USB-C Charging Cable,1,11.95,08/20/19 00:55,"554 Highland St, Dallas, TX 75001" +244151,USB-C Charging Cable,1,11.95,08/17/19 22:38,"827 Pine St, San Francisco, CA 94016" +244152,Wired Headphones,1,11.99,08/31/19 02:20,"447 Johnson St, San Francisco, CA 94016" +244153,USB-C Charging Cable,2,11.95,08/23/19 19:41,"624 13th St, Los Angeles, CA 90001" +244154,Macbook Pro Laptop,1,1700,08/22/19 11:20,"576 9th St, Seattle, WA 98101" +244155,AAA Batteries (4-pack),1,2.99,08/12/19 15:24,"901 Lincoln St, New York City, NY 10001" +244156,USB-C Charging Cable,1,11.95,08/02/19 05:27,"902 Jefferson St, Los Angeles, CA 90001" +244157,Lightning Charging Cable,1,14.95,08/04/19 07:18,"599 Cherry St, Seattle, WA 98101" +244158,Lightning Charging Cable,1,14.95,08/09/19 08:35,"243 Highland St, New York City, NY 10001" +244159,AAA Batteries (4-pack),1,2.99,08/21/19 20:05,"577 Lakeview St, New York City, NY 10001" +244160,ThinkPad Laptop,1,999.99,08/25/19 23:24,"93 Dogwood St, Atlanta, GA 30301" +244161,Wired Headphones,1,11.99,08/20/19 12:50,"261 Lake St, Los Angeles, CA 90001" +244162,AAA Batteries (4-pack),2,2.99,08/28/19 17:07,"210 Hickory St, Boston, MA 02215" +244163,Lightning Charging Cable,1,14.95,08/16/19 21:11,"786 Church St, San Francisco, CA 94016" +244164,USB-C Charging Cable,1,11.95,08/13/19 08:58,"733 6th St, Boston, MA 02215" +244165,Macbook Pro Laptop,1,1700,08/05/19 18:26,"456 Cherry St, Los Angeles, CA 90001" +244166,Wired Headphones,1,11.99,08/17/19 13:49,"668 River St, Boston, MA 02215" +244167,USB-C Charging Cable,1,11.95,08/05/19 14:53,"684 Ridge St, Austin, TX 73301" +244168,Google Phone,1,600,08/18/19 21:24,"972 Pine St, Seattle, WA 98101" +244169,Bose SoundSport Headphones,1,99.99,08/02/19 13:52,"176 Cherry St, Boston, MA 02215" +244170,34in Ultrawide Monitor,1,379.99,08/08/19 13:36,"172 Hill St, Atlanta, GA 30301" +244171,AA Batteries (4-pack),3,3.84,08/07/19 15:04,"261 Willow St, Los Angeles, CA 90001" +244172,Macbook Pro Laptop,1,1700,08/28/19 11:08,"217 Main St, Dallas, TX 75001" +244172,34in Ultrawide Monitor,1,379.99,08/28/19 11:08,"217 Main St, Dallas, TX 75001" +244173,34in Ultrawide Monitor,1,379.99,08/17/19 12:15,"387 11th St, San Francisco, CA 94016" +244174,Bose SoundSport Headphones,1,99.99,08/23/19 15:28,"233 Walnut St, San Francisco, CA 94016" +244175,AA Batteries (4-pack),1,3.84,08/01/19 17:10,"815 13th St, Los Angeles, CA 90001" +244176,AA Batteries (4-pack),1,3.84,08/24/19 18:24,"97 11th St, Boston, MA 02215" +244177,USB-C Charging Cable,1,11.95,08/17/19 10:04,"983 Willow St, Dallas, TX 75001" +244178,Apple Airpods Headphones,1,150,08/11/19 18:26,"267 Ridge St, San Francisco, CA 94016" +244179,34in Ultrawide Monitor,1,379.99,08/06/19 11:10,"5 Jackson St, Los Angeles, CA 90001" +244180,AAA Batteries (4-pack),1,2.99,08/18/19 15:01,"179 Willow St, San Francisco, CA 94016" +244181,ThinkPad Laptop,1,999.99,08/19/19 00:40,"664 10th St, Atlanta, GA 30301" +244182,Bose SoundSport Headphones,1,99.99,08/27/19 11:52,"827 1st St, San Francisco, CA 94016" +244183,Lightning Charging Cable,1,14.95,08/03/19 15:15,"18 Highland St, Austin, TX 73301" +244184,AAA Batteries (4-pack),2,2.99,08/11/19 18:31,"441 Main St, New York City, NY 10001" +244184,Bose SoundSport Headphones,1,99.99,08/11/19 18:31,"441 Main St, New York City, NY 10001" +244185,Lightning Charging Cable,1,14.95,08/16/19 18:31,"337 South St, Boston, MA 02215" +244186,AA Batteries (4-pack),1,3.84,08/03/19 18:48,"868 South St, Los Angeles, CA 90001" +244187,AAA Batteries (4-pack),1,2.99,08/20/19 20:14,"839 Elm St, Seattle, WA 98101" +244188,Wired Headphones,1,11.99,08/08/19 14:08,"764 Main St, Portland, OR 97035" +244189,Lightning Charging Cable,1,14.95,08/23/19 12:15,"840 6th St, San Francisco, CA 94016" +244190,34in Ultrawide Monitor,1,379.99,08/05/19 11:37,"882 Lake St, Portland, OR 97035" +244191,Vareebadd Phone,1,400,08/27/19 16:08,"25 Highland St, New York City, NY 10001" +244191,USB-C Charging Cable,1,11.95,08/27/19 16:08,"25 Highland St, New York City, NY 10001" +244192,USB-C Charging Cable,1,11.95,08/31/19 14:47,"716 Cedar St, San Francisco, CA 94016" +244193,Macbook Pro Laptop,1,1700,08/29/19 19:08,"101 Willow St, Los Angeles, CA 90001" +244194,AAA Batteries (4-pack),1,2.99,08/01/19 12:36,"453 Lake St, Atlanta, GA 30301" +244195,Apple Airpods Headphones,1,150,08/05/19 01:21,"407 Meadow St, San Francisco, CA 94016" +244196,AA Batteries (4-pack),2,3.84,08/24/19 09:01,"565 Main St, Los Angeles, CA 90001" +244197,Apple Airpods Headphones,1,150,08/05/19 07:37,"864 Madison St, Los Angeles, CA 90001" +244198,Google Phone,1,600,08/02/19 22:43,"196 Johnson St, San Francisco, CA 94016" +244199,Apple Airpods Headphones,1,150,08/22/19 18:42,"563 4th St, San Francisco, CA 94016" +244200,AA Batteries (4-pack),1,3.84,08/11/19 01:14,"35 Lakeview St, Los Angeles, CA 90001" +244201,iPhone,1,700,08/15/19 18:00,"39 8th St, New York City, NY 10001" +244202,Wired Headphones,1,11.99,08/03/19 22:44,"945 Madison St, Boston, MA 02215" +244203,Wired Headphones,1,11.99,08/24/19 12:41,"132 9th St, San Francisco, CA 94016" +244204,AA Batteries (4-pack),2,3.84,08/19/19 12:55,"723 Forest St, Dallas, TX 75001" +244204,Google Phone,1,600,08/19/19 12:55,"723 Forest St, Dallas, TX 75001" +244205,Bose SoundSport Headphones,1,99.99,08/24/19 11:31,"447 5th St, San Francisco, CA 94016" +244206,AAA Batteries (4-pack),1,2.99,08/24/19 13:40,"66 Hill St, Atlanta, GA 30301" +244207,27in 4K Gaming Monitor,1,389.99,08/16/19 19:05,"888 Lake St, Austin, TX 73301" +244208,Wired Headphones,1,11.99,08/05/19 15:12,"379 Center St, San Francisco, CA 94016" +244209,USB-C Charging Cable,1,11.95,08/11/19 18:38,"423 11th St, Austin, TX 73301" +244210,AA Batteries (4-pack),2,3.84,08/30/19 21:31,"181 Pine St, Atlanta, GA 30301" +244211,USB-C Charging Cable,1,11.95,08/31/19 09:44,"519 Highland St, San Francisco, CA 94016" +244212,AA Batteries (4-pack),1,3.84,08/08/19 19:37,"836 Forest St, Los Angeles, CA 90001" +244213,20in Monitor,1,109.99,08/05/19 18:10,"237 Lake St, Atlanta, GA 30301" +244214,iPhone,1,700,08/14/19 21:21,"104 Elm St, San Francisco, CA 94016" +244215,Flatscreen TV,1,300,08/01/19 16:16,"954 Sunset St, Atlanta, GA 30301" +244215,Flatscreen TV,1,300,08/01/19 16:16,"954 Sunset St, Atlanta, GA 30301" +244216,27in FHD Monitor,1,149.99,08/06/19 08:41,"464 Willow St, Dallas, TX 75001" +244217,34in Ultrawide Monitor,1,379.99,08/19/19 18:21,"280 River St, New York City, NY 10001" +244218,Apple Airpods Headphones,1,150,08/08/19 21:16,"290 Dogwood St, Seattle, WA 98101" +244219,AAA Batteries (4-pack),1,2.99,08/07/19 22:50,"595 Jackson St, Los Angeles, CA 90001" +244220,27in 4K Gaming Monitor,1,389.99,08/16/19 11:25,"390 2nd St, San Francisco, CA 94016" +244221,Wired Headphones,1,11.99,08/23/19 16:08,"990 Jackson St, Austin, TX 73301" +244222,Apple Airpods Headphones,1,150,08/12/19 16:52,"645 Pine St, Austin, TX 73301" +244223,AA Batteries (4-pack),1,3.84,08/15/19 19:00,"752 14th St, Seattle, WA 98101" +244224,Lightning Charging Cable,1,14.95,08/14/19 12:07,"115 Lakeview St, Boston, MA 02215" +244224,27in 4K Gaming Monitor,1,389.99,08/14/19 12:07,"115 Lakeview St, Boston, MA 02215" +244225,Flatscreen TV,1,300,08/10/19 07:07,"736 Walnut St, New York City, NY 10001" +244226,AA Batteries (4-pack),1,3.84,08/20/19 16:36,"137 Pine St, Boston, MA 02215" +244227,AA Batteries (4-pack),1,3.84,08/11/19 21:42,"994 2nd St, Boston, MA 02215" +244228,20in Monitor,1,109.99,08/06/19 09:34,"66 Chestnut St, Boston, MA 02215" +244229,Bose SoundSport Headphones,1,99.99,08/25/19 10:33,"423 Johnson St, Portland, OR 97035" +244230,USB-C Charging Cable,1,11.95,08/07/19 17:55,"939 7th St, Dallas, TX 75001" +244231,AA Batteries (4-pack),3,3.84,08/18/19 08:55,"59 North St, Dallas, TX 75001" +244232,Apple Airpods Headphones,1,150,08/13/19 23:15,"314 River St, San Francisco, CA 94016" +244233,AA Batteries (4-pack),1,3.84,08/01/19 22:52,"180 Main St, San Francisco, CA 94016" +244234,27in 4K Gaming Monitor,1,389.99,08/18/19 19:56,"934 Center St, Portland, OR 97035" +244235,27in FHD Monitor,1,149.99,08/07/19 21:49,"436 9th St, Portland, ME 04101" +244236,AA Batteries (4-pack),3,3.84,08/27/19 09:28,"816 South St, San Francisco, CA 94016" +244237,Apple Airpods Headphones,1,150,08/24/19 15:37,"723 4th St, Portland, OR 97035" +244238,AAA Batteries (4-pack),1,2.99,08/23/19 17:14,"198 12th St, Austin, TX 73301" +244239,34in Ultrawide Monitor,1,379.99,08/23/19 01:07,"250 Lakeview St, Boston, MA 02215" +244240,Lightning Charging Cable,1,14.95,08/16/19 10:33,"904 Hill St, Austin, TX 73301" +244241,27in 4K Gaming Monitor,1,389.99,08/10/19 20:04,"612 Ridge St, Seattle, WA 98101" +244242,Flatscreen TV,1,300,08/26/19 17:25,"12 10th St, Seattle, WA 98101" +244243,USB-C Charging Cable,1,11.95,08/02/19 17:42,"206 Hill St, Atlanta, GA 30301" +244244,USB-C Charging Cable,1,11.95,08/29/19 19:59,"419 Highland St, Boston, MA 02215" +244245,27in 4K Gaming Monitor,1,389.99,08/08/19 14:22,"422 Maple St, San Francisco, CA 94016" +244246,AAA Batteries (4-pack),1,2.99,08/16/19 19:28,"768 Adams St, San Francisco, CA 94016" +244247,USB-C Charging Cable,1,11.95,08/18/19 12:44,"893 Sunset St, San Francisco, CA 94016" +244248,Lightning Charging Cable,1,14.95,08/14/19 12:49,"667 South St, San Francisco, CA 94016" +244249,Apple Airpods Headphones,1,150,08/01/19 11:12,"707 Dogwood St, Dallas, TX 75001" +244250,AAA Batteries (4-pack),4,2.99,08/15/19 22:24,"443 Dogwood St, Los Angeles, CA 90001" +244251,AA Batteries (4-pack),1,3.84,08/09/19 11:35,"932 8th St, Boston, MA 02215" +244252,Lightning Charging Cable,1,14.95,08/31/19 21:23,"945 Jefferson St, Dallas, TX 75001" +244253,USB-C Charging Cable,1,11.95,08/23/19 13:28,"512 8th St, San Francisco, CA 94016" +244254,Wired Headphones,1,11.99,08/07/19 19:31,"462 West St, Portland, OR 97035" +244255,Lightning Charging Cable,2,14.95,08/15/19 17:47,"330 12th St, Atlanta, GA 30301" +244256,Bose SoundSport Headphones,1,99.99,08/31/19 17:23,"670 Chestnut St, Atlanta, GA 30301" +244257,Vareebadd Phone,1,400,08/16/19 07:39,"76 9th St, Boston, MA 02215" +244258,Lightning Charging Cable,1,14.95,08/23/19 11:26,"606 8th St, San Francisco, CA 94016" +244259,AA Batteries (4-pack),2,3.84,08/14/19 07:07,"874 Chestnut St, Austin, TX 73301" +244260,Lightning Charging Cable,1,14.95,08/04/19 11:05,"934 9th St, New York City, NY 10001" +244261,27in 4K Gaming Monitor,1,389.99,08/21/19 19:02,"197 10th St, Portland, OR 97035" +244262,Bose SoundSport Headphones,1,99.99,08/22/19 10:03,"711 7th St, Boston, MA 02215" +244263,Google Phone,1,600,08/20/19 15:29,"579 North St, San Francisco, CA 94016" +244263,USB-C Charging Cable,1,11.95,08/20/19 15:29,"579 North St, San Francisco, CA 94016" +244264,Google Phone,1,600,08/30/19 05:10,"855 8th St, Austin, TX 73301" +244264,Wired Headphones,1,11.99,08/30/19 05:10,"855 8th St, Austin, TX 73301" +244265,27in FHD Monitor,1,149.99,08/20/19 23:56,"427 Pine St, Portland, ME 04101" +244266,AAA Batteries (4-pack),1,2.99,08/30/19 07:55,"500 Lincoln St, San Francisco, CA 94016" +244266,27in FHD Monitor,1,149.99,08/30/19 07:55,"500 Lincoln St, San Francisco, CA 94016" +244267,Flatscreen TV,1,300,08/10/19 14:45,"232 4th St, Seattle, WA 98101" +244268,AAA Batteries (4-pack),1,2.99,08/19/19 00:39,"609 Chestnut St, New York City, NY 10001" +244269,iPhone,1,700,08/03/19 09:19,"835 Pine St, Los Angeles, CA 90001" +244270,AA Batteries (4-pack),1,3.84,08/01/19 14:38,"7 9th St, Los Angeles, CA 90001" +244271,Wired Headphones,1,11.99,08/02/19 20:02,"703 Washington St, Dallas, TX 75001" +244272,Apple Airpods Headphones,1,150,08/23/19 20:16,"483 Washington St, Los Angeles, CA 90001" +244273,AAA Batteries (4-pack),4,2.99,08/21/19 00:33,"471 10th St, San Francisco, CA 94016" +244274,Apple Airpods Headphones,1,150,08/03/19 21:52,"369 Johnson St, Dallas, TX 75001" +244275,27in FHD Monitor,1,149.99,08/10/19 08:08,"586 Elm St, Dallas, TX 75001" +244276,AA Batteries (4-pack),1,3.84,08/29/19 17:30,"637 Spruce St, New York City, NY 10001" +244277,AA Batteries (4-pack),1,3.84,08/30/19 14:32,"529 Church St, San Francisco, CA 94016" +244278,USB-C Charging Cable,1,11.95,08/11/19 10:25,"644 8th St, San Francisco, CA 94016" +244278,34in Ultrawide Monitor,1,379.99,08/11/19 10:25,"644 8th St, San Francisco, CA 94016" +244279,AA Batteries (4-pack),1,3.84,08/22/19 21:11,"475 Dogwood St, Atlanta, GA 30301" +244280,Wired Headphones,1,11.99,08/13/19 18:00,"418 Cedar St, Seattle, WA 98101" +244281,USB-C Charging Cable,1,11.95,08/07/19 19:08,"165 Madison St, Austin, TX 73301" +244282,Vareebadd Phone,1,400,08/21/19 17:36,"735 5th St, Austin, TX 73301" +244282,USB-C Charging Cable,1,11.95,08/21/19 17:36,"735 5th St, Austin, TX 73301" +244283,Lightning Charging Cable,1,14.95,08/27/19 17:18,"169 Madison St, New York City, NY 10001" +244284,AA Batteries (4-pack),1,3.84,08/27/19 07:10,"512 Meadow St, Los Angeles, CA 90001" +244285,AAA Batteries (4-pack),1,2.99,08/21/19 15:21,"97 1st St, San Francisco, CA 94016" +244286,20in Monitor,1,109.99,08/26/19 12:43,"737 9th St, Dallas, TX 75001" +244287,Apple Airpods Headphones,1,150,08/01/19 11:48,"978 Sunset St, Los Angeles, CA 90001" +244288,27in 4K Gaming Monitor,1,389.99,08/08/19 11:33,"339 Spruce St, Los Angeles, CA 90001" +244289,Wired Headphones,1,11.99,08/07/19 13:46,"449 Hickory St, San Francisco, CA 94016" +244290,Apple Airpods Headphones,1,150,08/25/19 12:58,"589 Lincoln St, Los Angeles, CA 90001" +244291,AAA Batteries (4-pack),1,2.99,08/02/19 23:59,"163 Washington St, San Francisco, CA 94016" +244292,AA Batteries (4-pack),1,3.84,08/07/19 13:17,"971 Center St, Los Angeles, CA 90001" +244293,AA Batteries (4-pack),1,3.84,08/16/19 18:54,"586 Pine St, Atlanta, GA 30301" +244294,Bose SoundSport Headphones,1,99.99,08/07/19 11:03,"139 13th St, Boston, MA 02215" +244295,AAA Batteries (4-pack),1,2.99,08/31/19 23:13,"270 Chestnut St, Portland, ME 04101" +244295,AAA Batteries (4-pack),2,2.99,08/31/19 23:13,"270 Chestnut St, Portland, ME 04101" +244296,Wired Headphones,1,11.99,08/12/19 20:52,"679 Walnut St, Los Angeles, CA 90001" +244297,Wired Headphones,1,11.99,08/08/19 15:29,"26 Lakeview St, San Francisco, CA 94016" +244298,Lightning Charging Cable,1,14.95,08/23/19 21:50,"815 8th St, Boston, MA 02215" +244299,Apple Airpods Headphones,1,150,08/23/19 15:28,"225 Washington St, Atlanta, GA 30301" +244300,27in 4K Gaming Monitor,1,389.99,08/09/19 09:46,"428 Lake St, Los Angeles, CA 90001" +244301,AAA Batteries (4-pack),2,2.99,08/27/19 14:10,"652 Madison St, Portland, OR 97035" +244302,USB-C Charging Cable,1,11.95,08/21/19 10:55,"553 2nd St, Seattle, WA 98101" +244303,27in 4K Gaming Monitor,1,389.99,08/27/19 09:50,"816 Jefferson St, San Francisco, CA 94016" +244304,iPhone,1,700,08/25/19 11:46,"850 River St, San Francisco, CA 94016" +244305,AA Batteries (4-pack),2,3.84,08/03/19 23:56,"3 Chestnut St, New York City, NY 10001" +244306,Lightning Charging Cable,1,14.95,08/04/19 17:49,"498 Forest St, Dallas, TX 75001" +244307,27in FHD Monitor,1,149.99,08/09/19 15:34,"635 Washington St, Atlanta, GA 30301" +244308,USB-C Charging Cable,1,11.95,08/29/19 20:50,"706 Adams St, Austin, TX 73301" +244309,USB-C Charging Cable,1,11.95,08/16/19 09:54,"535 Madison St, Dallas, TX 75001" +244310,AA Batteries (4-pack),1,3.84,08/06/19 16:30,"8 Forest St, Los Angeles, CA 90001" +244311,Lightning Charging Cable,1,14.95,08/06/19 17:57,"906 Willow St, Los Angeles, CA 90001" +244312,ThinkPad Laptop,1,999.99,08/26/19 13:50,"159 6th St, San Francisco, CA 94016" +244313,AA Batteries (4-pack),2,3.84,08/23/19 08:11,"490 Highland St, New York City, NY 10001" +244314,Lightning Charging Cable,1,14.95,08/14/19 00:29,"802 10th St, San Francisco, CA 94016" +244315,34in Ultrawide Monitor,1,379.99,08/10/19 06:39,"581 Spruce St, Austin, TX 73301" +244316,Flatscreen TV,1,300,08/03/19 11:09,"11 Adams St, Seattle, WA 98101" +244317,Wired Headphones,1,11.99,08/21/19 13:18,"677 7th St, San Francisco, CA 94016" +244318,Apple Airpods Headphones,1,150,08/15/19 10:12,"271 Jefferson St, Dallas, TX 75001" +244319,ThinkPad Laptop,1,999.99,08/12/19 00:30,"118 10th St, New York City, NY 10001" +244320,Bose SoundSport Headphones,1,99.99,08/05/19 17:43,"342 Pine St, Dallas, TX 75001" +244321,AA Batteries (4-pack),1,3.84,08/29/19 15:48,"622 14th St, Boston, MA 02215" +244322,Macbook Pro Laptop,1,1700,08/25/19 00:36,"234 2nd St, San Francisco, CA 94016" +244323,AA Batteries (4-pack),1,3.84,08/17/19 15:50,"585 Elm St, San Francisco, CA 94016" +244324,Flatscreen TV,1,300,08/11/19 11:19,"787 Ridge St, Seattle, WA 98101" +244325,Apple Airpods Headphones,1,150,08/06/19 12:03,"487 Park St, Seattle, WA 98101" +244326,USB-C Charging Cable,1,11.95,08/16/19 12:58,"889 Center St, San Francisco, CA 94016" +244327,AA Batteries (4-pack),1,3.84,08/28/19 17:15,"135 5th St, Atlanta, GA 30301" +244328,Wired Headphones,1,11.99,08/30/19 16:42,"719 Lincoln St, San Francisco, CA 94016" +244329,Wired Headphones,1,11.99,08/14/19 09:39,"222 Highland St, New York City, NY 10001" +244330,Apple Airpods Headphones,1,150,08/30/19 13:38,"638 8th St, Los Angeles, CA 90001" +244331,Macbook Pro Laptop,1,1700,08/09/19 13:31,"13 Pine St, Dallas, TX 75001" +244332,AA Batteries (4-pack),2,3.84,08/17/19 00:24,"405 Ridge St, San Francisco, CA 94016" +244333,AAA Batteries (4-pack),1,2.99,08/07/19 19:57,"695 Church St, Dallas, TX 75001" +244334,Apple Airpods Headphones,1,150,08/10/19 22:54,"893 14th St, San Francisco, CA 94016" +244335,Flatscreen TV,1,300,08/29/19 18:05,"298 7th St, Los Angeles, CA 90001" +244336,Bose SoundSport Headphones,1,99.99,08/21/19 17:26,"236 Adams St, Seattle, WA 98101" +244337,AAA Batteries (4-pack),1,2.99,08/31/19 11:37,"117 River St, San Francisco, CA 94016" +244338,Lightning Charging Cable,1,14.95,08/04/19 18:48,"344 Adams St, New York City, NY 10001" +244339,Lightning Charging Cable,1,14.95,08/31/19 01:48,"30 River St, San Francisco, CA 94016" +244340,Lightning Charging Cable,1,14.95,08/16/19 10:27,"76 Madison St, Boston, MA 02215" +244341,Wired Headphones,1,11.99,08/12/19 12:52,"382 Sunset St, San Francisco, CA 94016" +244342,AAA Batteries (4-pack),1,2.99,08/20/19 22:35,"445 10th St, New York City, NY 10001" +244343,AA Batteries (4-pack),2,3.84,08/10/19 22:34,"984 South St, Boston, MA 02215" +244344,Apple Airpods Headphones,1,150,08/28/19 18:51,"676 West St, Portland, OR 97035" +244345,Lightning Charging Cable,1,14.95,08/26/19 17:56,"288 12th St, Los Angeles, CA 90001" +244346,iPhone,1,700,08/25/19 20:05,"778 Main St, San Francisco, CA 94016" +244347,Bose SoundSport Headphones,1,99.99,08/01/19 21:17,"297 8th St, San Francisco, CA 94016" +244348,AAA Batteries (4-pack),2,2.99,08/20/19 16:37,"586 Maple St, New York City, NY 10001" +244349,Bose SoundSport Headphones,1,99.99,08/19/19 12:14,"501 9th St, New York City, NY 10001" +244350,34in Ultrawide Monitor,1,379.99,08/07/19 14:04,"348 8th St, New York City, NY 10001" +244351,USB-C Charging Cable,1,11.95,08/01/19 19:40,"365 7th St, Los Angeles, CA 90001" +244352,iPhone,1,700,08/05/19 11:05,"431 Walnut St, Dallas, TX 75001" +244353,Wired Headphones,1,11.99,08/07/19 14:20,"937 River St, San Francisco, CA 94016" +244354,USB-C Charging Cable,1,11.95,08/15/19 13:48,"864 Meadow St, Boston, MA 02215" +244355,Macbook Pro Laptop,1,1700,08/09/19 20:01,"553 9th St, San Francisco, CA 94016" +244356,USB-C Charging Cable,1,11.95,08/09/19 14:09,"242 14th St, San Francisco, CA 94016" +244357,AA Batteries (4-pack),2,3.84,08/31/19 12:20,"455 6th St, Atlanta, GA 30301" +244358,Macbook Pro Laptop,1,1700,08/20/19 18:37,"401 9th St, New York City, NY 10001" +244359,Lightning Charging Cable,1,14.95,08/02/19 06:02,"275 West St, Seattle, WA 98101" +244360,AA Batteries (4-pack),2,3.84,08/01/19 12:46,"814 Cherry St, Dallas, TX 75001" +244361,AAA Batteries (4-pack),1,2.99,08/24/19 15:53,"585 13th St, Austin, TX 73301" +244362,AAA Batteries (4-pack),1,2.99,08/09/19 12:06,"685 5th St, Los Angeles, CA 90001" +244363,34in Ultrawide Monitor,1,379.99,08/09/19 22:01,"130 7th St, San Francisco, CA 94016" +244364,27in FHD Monitor,1,149.99,08/15/19 09:39,"130 Church St, Boston, MA 02215" +244365,Wired Headphones,1,11.99,08/13/19 21:48,"299 Lakeview St, Los Angeles, CA 90001" +244366,AAA Batteries (4-pack),1,2.99,08/23/19 13:51,"165 Wilson St, San Francisco, CA 94016" +244367,AAA Batteries (4-pack),1,2.99,08/27/19 17:06,"814 1st St, Los Angeles, CA 90001" +244368,AA Batteries (4-pack),2,3.84,08/10/19 12:44,"604 Lakeview St, Atlanta, GA 30301" +244369,Google Phone,1,600,08/02/19 08:26,"293 14th St, Seattle, WA 98101" +244370,Wired Headphones,2,11.99,08/09/19 17:50,"538 1st St, Atlanta, GA 30301" +244371,AA Batteries (4-pack),1,3.84,08/24/19 21:17,"462 Cedar St, New York City, NY 10001" +244372,27in 4K Gaming Monitor,1,389.99,08/26/19 15:06,"735 4th St, Austin, TX 73301" +244373,27in FHD Monitor,1,149.99,08/09/19 09:30,"434 1st St, Los Angeles, CA 90001" +244374,AAA Batteries (4-pack),2,2.99,08/10/19 21:25,"931 Madison St, San Francisco, CA 94016" +244375,Bose SoundSport Headphones,1,99.99,08/07/19 18:05,"160 7th St, Los Angeles, CA 90001" +244376,Apple Airpods Headphones,1,150,08/05/19 13:44,"599 Walnut St, Portland, OR 97035" +244377,Wired Headphones,1,11.99,08/25/19 22:03,"380 4th St, San Francisco, CA 94016" +244378,Apple Airpods Headphones,1,150,08/23/19 13:21,"371 Walnut St, Austin, TX 73301" +244379,USB-C Charging Cable,1,11.95,08/18/19 22:57,"359 Center St, Boston, MA 02215" +244380,AAA Batteries (4-pack),1,2.99,08/21/19 16:16,"245 Washington St, San Francisco, CA 94016" +244381,Bose SoundSport Headphones,1,99.99,08/08/19 19:17,"690 5th St, Dallas, TX 75001" +244382,iPhone,1,700,08/17/19 23:32,"545 6th St, Seattle, WA 98101" +244383,USB-C Charging Cable,1,11.95,08/05/19 17:13,"975 Jackson St, San Francisco, CA 94016" +244384,AA Batteries (4-pack),2,3.84,08/28/19 08:57,"907 Highland St, Austin, TX 73301" +244385,Lightning Charging Cable,1,14.95,08/18/19 17:38,"969 Sunset St, Dallas, TX 75001" +244386,Bose SoundSport Headphones,1,99.99,08/16/19 08:40,"107 Jackson St, Boston, MA 02215" +244387,Bose SoundSport Headphones,1,99.99,08/29/19 17:23,"358 Johnson St, Los Angeles, CA 90001" +244388,34in Ultrawide Monitor,1,379.99,08/21/19 13:54,"777 Elm St, Los Angeles, CA 90001" +244389,Lightning Charging Cable,2,14.95,08/02/19 23:05,"865 Sunset St, Atlanta, GA 30301" +244390,AAA Batteries (4-pack),2,2.99,08/27/19 19:07,"675 Spruce St, Portland, OR 97035" +244391,Wired Headphones,1,11.99,08/07/19 20:32,"99 Ridge St, Atlanta, GA 30301" +244392,Lightning Charging Cable,1,14.95,08/17/19 15:17,"27 6th St, San Francisco, CA 94016" +244393,34in Ultrawide Monitor,1,379.99,08/30/19 11:27,"602 13th St, San Francisco, CA 94016" +244394,USB-C Charging Cable,1,11.95,08/25/19 19:23,"276 Ridge St, Dallas, TX 75001" +244395,AAA Batteries (4-pack),1,2.99,08/08/19 09:46,"139 Chestnut St, New York City, NY 10001" +244396,AAA Batteries (4-pack),2,2.99,08/16/19 20:23,"913 5th St, Atlanta, GA 30301" +244397,Bose SoundSport Headphones,1,99.99,08/01/19 22:11,"664 Sunset St, Austin, TX 73301" +244398,AAA Batteries (4-pack),3,2.99,08/01/19 20:06,"990 Johnson St, Dallas, TX 75001" +244399,AA Batteries (4-pack),2,3.84,08/02/19 16:56,"689 2nd St, Seattle, WA 98101" +244400,Apple Airpods Headphones,1,150,08/03/19 17:34,"766 Church St, Portland, OR 97035" +244401,Lightning Charging Cable,1,14.95,08/24/19 22:07,"688 Pine St, Los Angeles, CA 90001" +244402,27in FHD Monitor,1,149.99,08/29/19 00:03,"600 Washington St, San Francisco, CA 94016" +244403,AA Batteries (4-pack),2,3.84,08/03/19 16:57,"373 2nd St, San Francisco, CA 94016" +244404,ThinkPad Laptop,1,999.99,08/27/19 00:55,"606 Madison St, San Francisco, CA 94016" +244405,AA Batteries (4-pack),1,3.84,08/03/19 20:04,"715 Willow St, San Francisco, CA 94016" +244406,Flatscreen TV,1,300,08/31/19 21:49,"666 Church St, New York City, NY 10001" +244407,AAA Batteries (4-pack),1,2.99,08/17/19 19:00,"631 Johnson St, Austin, TX 73301" +244408,Apple Airpods Headphones,1,150,08/17/19 21:00,"884 North St, Portland, ME 04101" +244409,Wired Headphones,1,11.99,08/07/19 17:05,"819 Church St, New York City, NY 10001" +244410,Wired Headphones,1,11.99,08/21/19 17:47,"36 Dogwood St, Seattle, WA 98101" +244411,AAA Batteries (4-pack),2,2.99,08/15/19 12:58,"104 Lake St, New York City, NY 10001" +244412,ThinkPad Laptop,1,999.99,08/28/19 20:56,"211 Church St, New York City, NY 10001" +244413,AA Batteries (4-pack),4,3.84,08/18/19 06:49,"603 Sunset St, Los Angeles, CA 90001" +244414,27in 4K Gaming Monitor,2,389.99,08/28/19 00:12,"384 Spruce St, San Francisco, CA 94016" +244415,Lightning Charging Cable,1,14.95,08/20/19 08:24,"595 Cedar St, Los Angeles, CA 90001" +244416,Wired Headphones,1,11.99,08/24/19 21:55,"103 Meadow St, Dallas, TX 75001" +244417,Apple Airpods Headphones,1,150,08/19/19 10:35,"331 Wilson St, Portland, OR 97035" +244418,Bose SoundSport Headphones,1,99.99,08/28/19 14:56,"590 Main St, Boston, MA 02215" +244419,AAA Batteries (4-pack),1,2.99,08/21/19 15:44,"81 13th St, Austin, TX 73301" +244420,iPhone,1,700,08/20/19 16:47,"214 Madison St, San Francisco, CA 94016" +244421,Macbook Pro Laptop,1,1700,08/28/19 18:19,"778 Maple St, Boston, MA 02215" +244422,AAA Batteries (4-pack),1,2.99,09/01/19 00:37,"645 11th St, New York City, NY 10001" +244423,AA Batteries (4-pack),1,3.84,08/23/19 17:42,"932 Cherry St, Los Angeles, CA 90001" +244424,Wired Headphones,2,11.99,08/23/19 18:00,"449 12th St, Los Angeles, CA 90001" +244425,Apple Airpods Headphones,1,150,08/19/19 16:11,"529 Dogwood St, San Francisco, CA 94016" +244426,AA Batteries (4-pack),2,3.84,08/28/19 07:13,"333 Lincoln St, San Francisco, CA 94016" +244427,USB-C Charging Cable,1,11.95,08/03/19 22:29,"857 Highland St, Portland, OR 97035" +244428,AA Batteries (4-pack),1,3.84,08/10/19 19:55,"376 6th St, Los Angeles, CA 90001" +244429,Wired Headphones,1,11.99,08/06/19 20:27,"982 2nd St, Portland, ME 04101" +244430,Bose SoundSport Headphones,1,99.99,08/05/19 12:23,"463 6th St, Portland, OR 97035" +244431,USB-C Charging Cable,1,11.95,08/18/19 08:21,"732 Maple St, Portland, OR 97035" +244432,Lightning Charging Cable,1,14.95,08/02/19 21:34,"617 Wilson St, Los Angeles, CA 90001" +244433,USB-C Charging Cable,1,11.95,08/08/19 13:49,"730 Elm St, Los Angeles, CA 90001" +244434,AAA Batteries (4-pack),1,2.99,08/26/19 16:16,"166 Elm St, Boston, MA 02215" +244435,Wired Headphones,1,11.99,08/02/19 21:24,"892 1st St, San Francisco, CA 94016" +244436,Bose SoundSport Headphones,1,99.99,08/29/19 19:39,"687 Willow St, Austin, TX 73301" +244437,27in 4K Gaming Monitor,1,389.99,08/16/19 09:24,"768 Church St, Los Angeles, CA 90001" +244438,USB-C Charging Cable,1,11.95,08/11/19 14:52,"283 Church St, Atlanta, GA 30301" +244439,27in 4K Gaming Monitor,1,389.99,08/12/19 10:33,"866 North St, Portland, ME 04101" +244440,20in Monitor,1,109.99,08/26/19 05:26,"145 North St, New York City, NY 10001" +244441,AA Batteries (4-pack),1,3.84,08/28/19 22:07,"813 9th St, San Francisco, CA 94016" +244442,Apple Airpods Headphones,1,150,08/09/19 12:11,"961 7th St, Portland, ME 04101" +244443,Lightning Charging Cable,1,14.95,08/19/19 12:50,"915 Ridge St, New York City, NY 10001" +244444,Flatscreen TV,1,300,08/13/19 12:38,"631 Chestnut St, San Francisco, CA 94016" +244445,AA Batteries (4-pack),1,3.84,08/31/19 20:28,"61 9th St, San Francisco, CA 94016" +244446,27in FHD Monitor,1,149.99,08/25/19 23:52,"250 Jackson St, San Francisco, CA 94016" +244447,AAA Batteries (4-pack),3,2.99,08/23/19 13:09,"858 Lakeview St, San Francisco, CA 94016" +244448,Wired Headphones,1,11.99,08/28/19 21:34,"17 Adams St, San Francisco, CA 94016" +244449,iPhone,1,700,08/13/19 19:32,"976 Madison St, Dallas, TX 75001" +244449,Lightning Charging Cable,1,14.95,08/13/19 19:32,"976 Madison St, Dallas, TX 75001" +244450,Lightning Charging Cable,1,14.95,08/20/19 21:06,"686 Hill St, San Francisco, CA 94016" +244451,Apple Airpods Headphones,1,150,08/11/19 19:41,"543 13th St, Atlanta, GA 30301" +244452,Lightning Charging Cable,1,14.95,08/25/19 13:53,"528 Maple St, Los Angeles, CA 90001" +244453,Google Phone,1,600,08/20/19 19:55,"955 8th St, Austin, TX 73301" +244453,USB-C Charging Cable,1,11.95,08/20/19 19:55,"955 8th St, Austin, TX 73301" +244454,AA Batteries (4-pack),1,3.84,08/12/19 17:49,"724 Spruce St, Boston, MA 02215" +244455,Lightning Charging Cable,1,14.95,08/10/19 15:41,"818 Center St, Seattle, WA 98101" +244456,20in Monitor,1,109.99,08/19/19 20:15,"205 Walnut St, New York City, NY 10001" +244457,Apple Airpods Headphones,1,150,08/27/19 16:35,"68 10th St, San Francisco, CA 94016" +244458,AA Batteries (4-pack),1,3.84,08/30/19 11:21,"826 Lincoln St, Dallas, TX 75001" +244459,AA Batteries (4-pack),1,3.84,08/22/19 21:14,"349 14th St, San Francisco, CA 94016" +244460,AAA Batteries (4-pack),3,2.99,08/17/19 14:48,"602 6th St, New York City, NY 10001" +244461,20in Monitor,1,109.99,08/14/19 15:36,"917 6th St, New York City, NY 10001" +244462,Vareebadd Phone,1,400,08/16/19 23:53,"698 Adams St, New York City, NY 10001" +244463,AAA Batteries (4-pack),1,2.99,08/22/19 19:00,"998 Forest St, Boston, MA 02215" +244464,27in FHD Monitor,1,149.99,08/23/19 13:55,"117 Cedar St, Los Angeles, CA 90001" +244465,34in Ultrawide Monitor,1,379.99,08/18/19 15:36,"735 Jefferson St, Los Angeles, CA 90001" +244466,Wired Headphones,1,11.99,08/24/19 00:16,"642 Spruce St, New York City, NY 10001" +244467,Wired Headphones,1,11.99,08/17/19 15:41,"924 Johnson St, Seattle, WA 98101" +244468,Google Phone,1,600,08/08/19 19:42,"978 Ridge St, Los Angeles, CA 90001" +244469,USB-C Charging Cable,1,11.95,08/07/19 21:51,"736 13th St, Los Angeles, CA 90001" +244470,27in 4K Gaming Monitor,1,389.99,08/10/19 21:16,"409 Maple St, Seattle, WA 98101" +244471,USB-C Charging Cable,1,11.95,08/04/19 16:31,"957 Church St, Los Angeles, CA 90001" +244472,USB-C Charging Cable,2,11.95,08/21/19 17:53,"49 6th St, New York City, NY 10001" +244473,Vareebadd Phone,1,400,08/19/19 01:42,"215 Meadow St, Atlanta, GA 30301" +244474,AAA Batteries (4-pack),1,2.99,08/14/19 13:35,"368 South St, Dallas, TX 75001" +244475,AA Batteries (4-pack),1,3.84,08/01/19 16:44,"980 Center St, Boston, MA 02215" +244476,AAA Batteries (4-pack),1,2.99,08/03/19 14:17,"142 Maple St, Dallas, TX 75001" +244477,Macbook Pro Laptop,1,1700,08/16/19 21:31,"471 Cherry St, New York City, NY 10001" +244478,27in 4K Gaming Monitor,1,389.99,08/06/19 20:57,"40 Highland St, San Francisco, CA 94016" +244479,27in 4K Gaming Monitor,1,389.99,08/28/19 00:39,"299 Lake St, Austin, TX 73301" +244480,iPhone,1,700,08/22/19 19:13,"525 1st St, San Francisco, CA 94016" +244481,Apple Airpods Headphones,1,150,08/11/19 11:53,"738 Jefferson St, Atlanta, GA 30301" +244482,AA Batteries (4-pack),1,3.84,08/06/19 17:46,"395 Cedar St, New York City, NY 10001" +244483,Flatscreen TV,1,300,08/02/19 16:32,"731 Madison St, Los Angeles, CA 90001" +244484,AAA Batteries (4-pack),1,2.99,08/23/19 10:52,"259 14th St, Los Angeles, CA 90001" +244485,Bose SoundSport Headphones,1,99.99,08/23/19 04:59,"686 12th St, Dallas, TX 75001" +244486,Apple Airpods Headphones,1,150,08/27/19 12:16,"730 10th St, Austin, TX 73301" +244487,USB-C Charging Cable,1,11.95,08/17/19 11:31,"550 Lake St, Atlanta, GA 30301" +244488,USB-C Charging Cable,1,11.95,08/22/19 19:21,"754 Pine St, Los Angeles, CA 90001" +244489,AAA Batteries (4-pack),1,2.99,08/13/19 21:54,"327 Jackson St, San Francisco, CA 94016" +244490,Bose SoundSport Headphones,1,99.99,08/12/19 12:11,"778 Sunset St, Los Angeles, CA 90001" +244491,USB-C Charging Cable,1,11.95,08/12/19 10:06,"27 Park St, San Francisco, CA 94016" +244492,Apple Airpods Headphones,1,150,08/25/19 16:48,"926 13th St, Boston, MA 02215" +244493,AAA Batteries (4-pack),1,2.99,08/14/19 21:32,"954 Church St, Dallas, TX 75001" +244494,AAA Batteries (4-pack),1,2.99,08/04/19 15:15,"530 River St, Los Angeles, CA 90001" +244495,Wired Headphones,1,11.99,08/31/19 09:30,"371 Lake St, Los Angeles, CA 90001" +244496,USB-C Charging Cable,2,11.95,08/08/19 09:39,"52 Lake St, San Francisco, CA 94016" +244497,ThinkPad Laptop,1,999.99,08/20/19 18:24,"529 Dogwood St, Los Angeles, CA 90001" +244498,AAA Batteries (4-pack),1,2.99,08/17/19 14:05,"736 Pine St, Los Angeles, CA 90001" +244499,Apple Airpods Headphones,1,150,08/28/19 20:45,"674 Spruce St, Boston, MA 02215" +244500,iPhone,1,700,08/30/19 22:52,"925 Park St, New York City, NY 10001" +244501,AAA Batteries (4-pack),2,2.99,08/08/19 14:29,"45 Willow St, Dallas, TX 75001" +244502,AAA Batteries (4-pack),1,2.99,08/21/19 20:33,"173 Willow St, Seattle, WA 98101" +244503,iPhone,1,700,08/29/19 09:10,"851 9th St, Dallas, TX 75001" +244504,AA Batteries (4-pack),1,3.84,08/02/19 19:51,"532 5th St, Dallas, TX 75001" +244505,Wired Headphones,1,11.99,08/30/19 19:08,"675 Pine St, New York City, NY 10001" +244506,34in Ultrawide Monitor,1,379.99,08/08/19 23:35,"76 Jackson St, Los Angeles, CA 90001" +244507,Apple Airpods Headphones,1,150,08/20/19 13:06,"693 West St, San Francisco, CA 94016" +244508,Wired Headphones,1,11.99,08/23/19 18:35,"352 Hickory St, Dallas, TX 75001" +244509,Flatscreen TV,1,300,08/07/19 12:55,"908 13th St, San Francisco, CA 94016" +244510,USB-C Charging Cable,1,11.95,08/07/19 11:55,"248 Lakeview St, Portland, OR 97035" +244511,27in FHD Monitor,1,149.99,08/29/19 15:10,"348 Lakeview St, Portland, OR 97035" +244512,Lightning Charging Cable,1,14.95,08/30/19 17:21,"819 Elm St, Dallas, TX 75001" +244513,iPhone,1,700,08/13/19 20:27,"19 7th St, Dallas, TX 75001" +244514,Google Phone,1,600,08/28/19 17:45,"240 Dogwood St, Los Angeles, CA 90001" +244514,USB-C Charging Cable,1,11.95,08/28/19 17:45,"240 Dogwood St, Los Angeles, CA 90001" +244515,Google Phone,1,600,08/05/19 12:19,"191 Jackson St, San Francisco, CA 94016" +244515,USB-C Charging Cable,1,11.95,08/05/19 12:19,"191 Jackson St, San Francisco, CA 94016" +244516,20in Monitor,1,109.99,08/12/19 22:12,"170 Pine St, San Francisco, CA 94016" +244517,USB-C Charging Cable,1,11.95,08/20/19 09:04,"784 Lincoln St, New York City, NY 10001" +244518,USB-C Charging Cable,1,11.95,08/16/19 21:27,"863 Chestnut St, New York City, NY 10001" +244519,AA Batteries (4-pack),1,3.84,08/25/19 16:44,"508 Washington St, San Francisco, CA 94016" +244520,Apple Airpods Headphones,1,150,08/24/19 21:21,"86 Park St, Portland, OR 97035" +244521,USB-C Charging Cable,1,11.95,08/19/19 09:54,"401 Sunset St, Los Angeles, CA 90001" +244522,Apple Airpods Headphones,1,150,08/07/19 21:00,"265 10th St, Portland, OR 97035" +244523,Lightning Charging Cable,1,14.95,08/30/19 22:30,"679 4th St, Atlanta, GA 30301" +244524,Wired Headphones,4,11.99,08/09/19 13:08,"344 Highland St, Dallas, TX 75001" +244525,AA Batteries (4-pack),1,3.84,08/19/19 14:16,"801 Jefferson St, San Francisco, CA 94016" +244526,Apple Airpods Headphones,1,150,08/14/19 11:14,"45 Adams St, Los Angeles, CA 90001" +244527,27in 4K Gaming Monitor,1,389.99,08/18/19 17:07,"252 Jefferson St, San Francisco, CA 94016" +244528,Apple Airpods Headphones,1,150,08/17/19 11:57,"679 Lake St, San Francisco, CA 94016" +244529,Apple Airpods Headphones,1,150,08/06/19 15:24,"180 7th St, New York City, NY 10001" +244530,USB-C Charging Cable,1,11.95,08/10/19 19:38,"703 Highland St, Austin, TX 73301" +244531,Vareebadd Phone,1,400,08/12/19 11:33,"292 1st St, Atlanta, GA 30301" +244531,USB-C Charging Cable,1,11.95,08/12/19 11:33,"292 1st St, Atlanta, GA 30301" +244532,USB-C Charging Cable,1,11.95,08/20/19 23:03,"880 Wilson St, Boston, MA 02215" +244533,AA Batteries (4-pack),1,3.84,08/07/19 12:37,"572 Lake St, San Francisco, CA 94016" +244534,AA Batteries (4-pack),1,3.84,08/03/19 19:11,"601 Park St, Los Angeles, CA 90001" +244535,Macbook Pro Laptop,1,1700,08/25/19 23:36,"431 Main St, San Francisco, CA 94016" +244536,34in Ultrawide Monitor,1,379.99,08/05/19 06:54,"138 1st St, Boston, MA 02215" +244537,27in FHD Monitor,1,149.99,08/03/19 19:48,"809 5th St, Dallas, TX 75001" +244538,USB-C Charging Cable,1,11.95,08/19/19 15:04,"956 12th St, Dallas, TX 75001" +244539,Google Phone,1,600,08/11/19 14:34,"466 Walnut St, Dallas, TX 75001" +244540,Wired Headphones,1,11.99,08/23/19 17:02,"603 Walnut St, San Francisco, CA 94016" +244541,34in Ultrawide Monitor,1,379.99,08/10/19 19:21,"339 Madison St, Seattle, WA 98101" +244542,AA Batteries (4-pack),2,3.84,08/24/19 01:07,"458 Lakeview St, San Francisco, CA 94016" +244543,AA Batteries (4-pack),1,3.84,08/26/19 20:06,"913 Adams St, Boston, MA 02215" +244544,Lightning Charging Cable,1,14.95,08/19/19 09:58,"169 14th St, Dallas, TX 75001" +244545,USB-C Charging Cable,1,11.95,08/10/19 16:47,"693 5th St, Boston, MA 02215" +244546,27in 4K Gaming Monitor,1,389.99,08/31/19 13:56,"329 Sunset St, Portland, OR 97035" +244547,ThinkPad Laptop,1,999.99,08/12/19 07:45,"363 River St, Austin, TX 73301" +244548,27in FHD Monitor,1,149.99,08/21/19 09:08,"216 Cedar St, San Francisco, CA 94016" +244549,27in 4K Gaming Monitor,1,389.99,08/23/19 10:06,"329 6th St, Boston, MA 02215" +244550,Bose SoundSport Headphones,1,99.99,08/04/19 01:14,"964 Washington St, San Francisco, CA 94016" +244551,34in Ultrawide Monitor,1,379.99,08/25/19 15:57,"313 Elm St, San Francisco, CA 94016" +244552,USB-C Charging Cable,1,11.95,08/17/19 20:23,"982 Maple St, Dallas, TX 75001" +244553,Lightning Charging Cable,1,14.95,08/31/19 20:08,"921 Pine St, Seattle, WA 98101" +244554,Wired Headphones,1,11.99,08/01/19 13:38,"10 Willow St, Boston, MA 02215" +244555,AAA Batteries (4-pack),2,2.99,08/14/19 16:27,"774 5th St, Austin, TX 73301" +244556,AAA Batteries (4-pack),4,2.99,08/30/19 05:24,"426 Ridge St, Seattle, WA 98101" +244557,AA Batteries (4-pack),2,3.84,08/25/19 20:15,"950 Sunset St, Los Angeles, CA 90001" +244558,Lightning Charging Cable,1,14.95,08/19/19 13:17,"200 5th St, Austin, TX 73301" +244559,Lightning Charging Cable,1,14.95,08/21/19 16:10,"245 Chestnut St, Atlanta, GA 30301" +244560,Wired Headphones,1,11.99,08/31/19 23:15,"566 Church St, New York City, NY 10001" +244561,Google Phone,1,600,08/08/19 14:06,"78 Meadow St, Dallas, TX 75001" +244561,34in Ultrawide Monitor,1,379.99,08/08/19 14:06,"78 Meadow St, Dallas, TX 75001" +244562,27in 4K Gaming Monitor,1,389.99,08/07/19 16:53,"42 Pine St, New York City, NY 10001" +244563,27in FHD Monitor,1,149.99,08/29/19 17:06,"275 Elm St, San Francisco, CA 94016" +244564,Apple Airpods Headphones,1,150,08/14/19 19:07,"976 Jackson St, Boston, MA 02215" +244565,Apple Airpods Headphones,1,150,08/07/19 00:43,"689 Adams St, San Francisco, CA 94016" +244566,USB-C Charging Cable,1,11.95,08/27/19 23:04,"735 Hill St, Dallas, TX 75001" +244567,Wired Headphones,1,11.99,08/05/19 18:16,"424 Wilson St, San Francisco, CA 94016" +244568,USB-C Charging Cable,1,11.95,08/18/19 16:42,"64 South St, Los Angeles, CA 90001" +244569,34in Ultrawide Monitor,1,379.99,08/13/19 08:05,"297 4th St, Austin, TX 73301" +244569,USB-C Charging Cable,1,11.95,08/13/19 08:05,"297 4th St, Austin, TX 73301" +244570,Lightning Charging Cable,1,14.95,08/03/19 08:05,"49 9th St, New York City, NY 10001" +244571,Wired Headphones,1,11.99,08/31/19 16:46,"619 Johnson St, Atlanta, GA 30301" +244572,AA Batteries (4-pack),1,3.84,08/07/19 14:26,"268 14th St, Seattle, WA 98101" +244573,Apple Airpods Headphones,1,150,08/20/19 09:51,"479 Pine St, Atlanta, GA 30301" +244574,AA Batteries (4-pack),1,3.84,08/24/19 05:29,"836 8th St, San Francisco, CA 94016" +244575,Bose SoundSport Headphones,1,99.99,08/06/19 15:57,"690 Madison St, San Francisco, CA 94016" +244576,27in 4K Gaming Monitor,1,389.99,08/12/19 19:37,"769 Pine St, San Francisco, CA 94016" +244577,Macbook Pro Laptop,1,1700,08/24/19 09:54,"360 Lakeview St, Los Angeles, CA 90001" +244578,Lightning Charging Cable,1,14.95,08/15/19 10:03,"60 West St, Austin, TX 73301" +244579,AA Batteries (4-pack),2,3.84,08/24/19 22:18,"188 Adams St, Dallas, TX 75001" +244580,Lightning Charging Cable,1,14.95,08/18/19 16:04,"982 Sunset St, San Francisco, CA 94016" +244581,USB-C Charging Cable,2,11.95,08/13/19 11:29,"93 4th St, Los Angeles, CA 90001" +244582,USB-C Charging Cable,1,11.95,08/25/19 22:25,"766 6th St, New York City, NY 10001" +244583,Wired Headphones,1,11.99,08/31/19 21:20,"345 Johnson St, Austin, TX 73301" +244584,27in 4K Gaming Monitor,1,389.99,08/31/19 10:12,"620 Cedar St, Dallas, TX 75001" +244585,AAA Batteries (4-pack),2,2.99,08/05/19 17:04,"124 Hill St, Austin, TX 73301" +244586,Wired Headphones,1,11.99,08/29/19 17:47,"751 Jefferson St, Atlanta, GA 30301" +244587,Bose SoundSport Headphones,1,99.99,08/11/19 22:51,"774 Washington St, Los Angeles, CA 90001" +244588,Macbook Pro Laptop,1,1700,08/16/19 23:30,"425 Ridge St, Portland, OR 97035" +244589,Lightning Charging Cable,1,14.95,08/31/19 23:16,"270 8th St, Los Angeles, CA 90001" +244590,Macbook Pro Laptop,1,1700,08/19/19 15:30,"493 8th St, Boston, MA 02215" +244590,ThinkPad Laptop,1,999.99,08/19/19 15:30,"493 8th St, Boston, MA 02215" +244591,Wired Headphones,1,11.99,08/17/19 14:08,"726 Meadow St, Austin, TX 73301" +244592,Lightning Charging Cable,1,14.95,08/06/19 15:44,"137 12th St, Seattle, WA 98101" +244593,AA Batteries (4-pack),1,3.84,08/15/19 15:51,"389 13th St, San Francisco, CA 94016" +244594,Apple Airpods Headphones,1,150,08/01/19 11:18,"231 West St, Boston, MA 02215" +244595,iPhone,1,700,08/09/19 11:36,"677 Church St, Portland, OR 97035" +244596,Wired Headphones,1,11.99,08/17/19 09:06,"477 Lincoln St, New York City, NY 10001" +244597,iPhone,1,700,08/04/19 11:35,"799 Sunset St, San Francisco, CA 94016" +244598,Lightning Charging Cable,1,14.95,08/12/19 07:09,"204 West St, New York City, NY 10001" +244599,AAA Batteries (4-pack),1,2.99,08/15/19 13:14,"142 Cherry St, New York City, NY 10001" +244600,34in Ultrawide Monitor,1,379.99,08/06/19 19:22,"29 Ridge St, Boston, MA 02215" +244601,Flatscreen TV,1,300,08/26/19 13:00,"307 Dogwood St, San Francisco, CA 94016" +244602,Apple Airpods Headphones,1,150,08/11/19 14:44,"162 Chestnut St, New York City, NY 10001" +244603,AA Batteries (4-pack),1,3.84,08/30/19 13:40,"735 Willow St, San Francisco, CA 94016" +244604,Lightning Charging Cable,1,14.95,08/23/19 09:43,"743 River St, San Francisco, CA 94016" +244605,Flatscreen TV,1,300,08/27/19 15:09,"939 Lakeview St, San Francisco, CA 94016" +244606,Apple Airpods Headphones,1,150,08/18/19 10:06,"216 10th St, San Francisco, CA 94016" +244607,Lightning Charging Cable,1,14.95,08/05/19 10:51,"975 6th St, Boston, MA 02215" +244608,Lightning Charging Cable,1,14.95,08/05/19 13:05,"233 River St, Atlanta, GA 30301" +244609,Apple Airpods Headphones,1,150,08/15/19 21:09,"941 Main St, San Francisco, CA 94016" +244610,Lightning Charging Cable,1,14.95,08/21/19 14:59,"819 Jackson St, Portland, OR 97035" +244611,Bose SoundSport Headphones,1,99.99,08/05/19 19:37,"720 Johnson St, Los Angeles, CA 90001" +244612,AAA Batteries (4-pack),3,2.99,08/20/19 21:16,"370 Lincoln St, Dallas, TX 75001" +244613,Lightning Charging Cable,1,14.95,08/21/19 01:00,"705 9th St, Seattle, WA 98101" +244614,AA Batteries (4-pack),2,3.84,08/22/19 09:24,"888 Cherry St, Atlanta, GA 30301" +244615,iPhone,1,700,08/29/19 10:08,"338 4th St, Los Angeles, CA 90001" +244616,Lightning Charging Cable,2,14.95,08/01/19 15:54,"508 Adams St, Los Angeles, CA 90001" +244617,Flatscreen TV,1,300,08/06/19 00:07,"818 14th St, Seattle, WA 98101" +244618,USB-C Charging Cable,1,11.95,08/06/19 22:19,"454 Willow St, San Francisco, CA 94016" +244619,Google Phone,1,600,08/08/19 17:33,"524 West St, Boston, MA 02215" +244620,Google Phone,1,600,08/18/19 11:58,"114 Maple St, Los Angeles, CA 90001" +244621,Macbook Pro Laptop,1,1700,08/26/19 10:21,"521 Wilson St, New York City, NY 10001" +244622,Apple Airpods Headphones,1,150,08/14/19 22:49,"374 Adams St, Boston, MA 02215" +244623,USB-C Charging Cable,1,11.95,08/21/19 21:02,"751 9th St, Seattle, WA 98101" +244624,34in Ultrawide Monitor,1,379.99,08/15/19 11:08,"770 Adams St, Austin, TX 73301" +244625,Lightning Charging Cable,1,14.95,08/05/19 12:40,"309 Willow St, Atlanta, GA 30301" +244626,AA Batteries (4-pack),2,3.84,08/14/19 14:13,"857 West St, San Francisco, CA 94016" +244627,USB-C Charging Cable,1,11.95,08/18/19 05:16,"235 Willow St, San Francisco, CA 94016" +244628,USB-C Charging Cable,1,11.95,08/11/19 11:48,"533 5th St, Atlanta, GA 30301" +244629,USB-C Charging Cable,1,11.95,08/26/19 12:50,"670 2nd St, Dallas, TX 75001" +244630,27in FHD Monitor,1,149.99,08/07/19 21:11,"735 Johnson St, Boston, MA 02215" +244631,AAA Batteries (4-pack),1,2.99,08/01/19 09:47,"967 5th St, Los Angeles, CA 90001" +244632,AA Batteries (4-pack),1,3.84,08/29/19 01:57,"2 Madison St, New York City, NY 10001" +244633,AAA Batteries (4-pack),1,2.99,08/16/19 22:45,"463 Elm St, Atlanta, GA 30301" +244634,Flatscreen TV,1,300,08/29/19 12:59,"607 Chestnut St, San Francisco, CA 94016" +244635,AA Batteries (4-pack),1,3.84,08/01/19 13:32,"75 5th St, Seattle, WA 98101" +244636,Wired Headphones,1,11.99,08/19/19 23:07,"881 Dogwood St, Austin, TX 73301" +244637,Vareebadd Phone,1,400,08/12/19 19:44,"665 Johnson St, San Francisco, CA 94016" +244637,USB-C Charging Cable,1,11.95,08/12/19 19:44,"665 Johnson St, San Francisco, CA 94016" +244637,Wired Headphones,1,11.99,08/12/19 19:44,"665 Johnson St, San Francisco, CA 94016" +244638,Lightning Charging Cable,1,14.95,08/13/19 11:09,"91 Sunset St, Austin, TX 73301" +244639,27in FHD Monitor,1,149.99,08/16/19 22:48,"161 Jackson St, Portland, OR 97035" +244640,AAA Batteries (4-pack),3,2.99,08/12/19 22:11,"572 5th St, Boston, MA 02215" +244641,Lightning Charging Cable,1,14.95,08/13/19 11:26,"702 10th St, Atlanta, GA 30301" +244642,Bose SoundSport Headphones,1,99.99,08/22/19 14:56,"607 Ridge St, Los Angeles, CA 90001" +244643,Lightning Charging Cable,1,14.95,08/15/19 07:33,"145 Pine St, Los Angeles, CA 90001" +244644,AAA Batteries (4-pack),1,2.99,08/31/19 16:20,"47 Johnson St, San Francisco, CA 94016" +244645,20in Monitor,1,109.99,08/16/19 13:07,"703 7th St, San Francisco, CA 94016" +244646,Bose SoundSport Headphones,1,99.99,08/28/19 22:33,"828 Meadow St, Atlanta, GA 30301" +244647,Wired Headphones,1,11.99,08/10/19 09:32,"108 12th St, Dallas, TX 75001" +244648,USB-C Charging Cable,1,11.95,08/05/19 23:32,"165 Church St, New York City, NY 10001" +244649,34in Ultrawide Monitor,1,379.99,08/13/19 15:04,"642 Center St, Dallas, TX 75001" +244650,Wired Headphones,1,11.99,08/09/19 15:36,"445 Johnson St, Seattle, WA 98101" +244651,Wired Headphones,1,11.99,08/13/19 16:05,"194 Lincoln St, Boston, MA 02215" +244652,Lightning Charging Cable,1,14.95,08/25/19 22:40,"569 Church St, Dallas, TX 75001" +244653,AAA Batteries (4-pack),1,2.99,08/01/19 18:58,"167 12th St, Dallas, TX 75001" +244654,Bose SoundSport Headphones,1,99.99,08/07/19 03:00,"88 North St, Boston, MA 02215" +244655,USB-C Charging Cable,1,11.95,08/13/19 00:33,"601 Meadow St, Dallas, TX 75001" +244656,AA Batteries (4-pack),1,3.84,08/25/19 17:35,"969 Lakeview St, Atlanta, GA 30301" +244657,Apple Airpods Headphones,1,150,08/29/19 14:13,"813 Lake St, Los Angeles, CA 90001" +244658,Apple Airpods Headphones,1,150,08/23/19 09:40,"375 7th St, San Francisco, CA 94016" +244659,Apple Airpods Headphones,1,150,08/06/19 09:29,"352 North St, Austin, TX 73301" +244660,USB-C Charging Cable,1,11.95,08/12/19 16:40,"44 Chestnut St, Atlanta, GA 30301" +244661,Wired Headphones,1,11.99,08/10/19 15:28,"417 Center St, Boston, MA 02215" +244662,AAA Batteries (4-pack),1,2.99,08/23/19 12:00,"707 Cherry St, Los Angeles, CA 90001" +244663,Wired Headphones,1,11.99,08/26/19 00:51,"517 Dogwood St, New York City, NY 10001" +244664,Lightning Charging Cable,1,14.95,08/02/19 20:30,"480 Lake St, Portland, OR 97035" +244665,Apple Airpods Headphones,1,150,08/12/19 09:17,"589 Pine St, Los Angeles, CA 90001" +244666,Bose SoundSport Headphones,1,99.99,08/07/19 15:26,"233 Lincoln St, Boston, MA 02215" +244667,iPhone,1,700,08/18/19 01:17,"601 4th St, Los Angeles, CA 90001" +244668,27in FHD Monitor,1,149.99,08/04/19 17:16,"852 Chestnut St, Seattle, WA 98101" +244669,ThinkPad Laptop,1,999.99,08/03/19 11:25,"653 Willow St, Dallas, TX 75001" +244670,27in FHD Monitor,1,149.99,08/25/19 13:43,"337 8th St, Boston, MA 02215" +244671,Wired Headphones,2,11.99,08/15/19 21:48,"400 Pine St, Boston, MA 02215" +244672,Google Phone,1,600,08/18/19 14:30,"524 Johnson St, Portland, OR 97035" +244673,Bose SoundSport Headphones,1,99.99,08/20/19 20:21,"222 Forest St, San Francisco, CA 94016" +244674,AA Batteries (4-pack),1,3.84,08/04/19 19:59,"197 Jackson St, Portland, OR 97035" +244675,Bose SoundSport Headphones,1,99.99,08/24/19 18:13,"141 6th St, San Francisco, CA 94016" +244676,Lightning Charging Cable,2,14.95,08/18/19 07:29,"655 Church St, Seattle, WA 98101" +244677,Macbook Pro Laptop,1,1700,08/11/19 06:57,"30 1st St, New York City, NY 10001" +244678,Apple Airpods Headphones,1,150,08/16/19 09:58,"318 Meadow St, Atlanta, GA 30301" +244679,Apple Airpods Headphones,1,150,08/15/19 14:46,"309 14th St, New York City, NY 10001" +244680,AAA Batteries (4-pack),5,2.99,08/27/19 12:31,"806 Pine St, New York City, NY 10001" +244681,Bose SoundSport Headphones,1,99.99,08/08/19 11:52,"534 Dogwood St, Los Angeles, CA 90001" +244681,34in Ultrawide Monitor,1,379.99,08/08/19 11:52,"534 Dogwood St, Los Angeles, CA 90001" +244682,Wired Headphones,1,11.99,08/27/19 19:26,"574 Church St, Los Angeles, CA 90001" +244683,Wired Headphones,1,11.99,08/20/19 23:33,"361 7th St, Boston, MA 02215" +244684,AAA Batteries (4-pack),2,2.99,08/30/19 10:55,"445 4th St, Los Angeles, CA 90001" +244685,34in Ultrawide Monitor,1,379.99,08/11/19 20:29,"34 Cherry St, Los Angeles, CA 90001" +244686,Apple Airpods Headphones,1,150,08/08/19 14:31,"999 8th St, Boston, MA 02215" +244687,Apple Airpods Headphones,1,150,08/01/19 22:06,"292 West St, Los Angeles, CA 90001" +244688,Bose SoundSport Headphones,1,99.99,08/15/19 18:14,"679 4th St, San Francisco, CA 94016" +244689,Lightning Charging Cable,2,14.95,08/04/19 17:12,"310 Johnson St, Los Angeles, CA 90001" +244690,27in 4K Gaming Monitor,1,389.99,08/31/19 21:25,"404 Highland St, Atlanta, GA 30301" +244691,AAA Batteries (4-pack),1,2.99,08/31/19 22:41,"488 Highland St, New York City, NY 10001" +244692,Lightning Charging Cable,1,14.95,08/19/19 20:33,"567 Elm St, San Francisco, CA 94016" +244693,Google Phone,1,600,08/20/19 14:08,"49 West St, Atlanta, GA 30301" +244693,Bose SoundSport Headphones,1,99.99,08/20/19 14:08,"49 West St, Atlanta, GA 30301" +,,,,, +244694,Wired Headphones,1,11.99,08/29/19 12:34,"350 Main St, Los Angeles, CA 90001" +244695,LG Dryer,1,600.0,08/15/19 22:07,"314 Jackson St, Los Angeles, CA 90001" +244696,Wired Headphones,1,11.99,08/22/19 11:56,"793 Washington St, Seattle, WA 98101" +244697,34in Ultrawide Monitor,1,379.99,08/07/19 19:55,"413 Dogwood St, Seattle, WA 98101" +244698,USB-C Charging Cable,1,11.95,08/12/19 00:11,"114 Elm St, San Francisco, CA 94016" +244699,AA Batteries (4-pack),1,3.84,08/13/19 12:26,"684 Elm St, Austin, TX 73301" +244700,27in FHD Monitor,1,149.99,08/21/19 13:44,"493 Hickory St, Dallas, TX 75001" +244701,34in Ultrawide Monitor,1,379.99,08/23/19 08:01,"407 Highland St, Atlanta, GA 30301" +244702,USB-C Charging Cable,1,11.95,08/28/19 13:16,"25 Elm St, New York City, NY 10001" +244703,27in FHD Monitor,1,149.99,08/08/19 11:41,"838 Cedar St, New York City, NY 10001" +244704,AAA Batteries (4-pack),1,2.99,08/11/19 17:33,"260 Ridge St, Seattle, WA 98101" +244705,iPhone,1,700,08/04/19 15:41,"908 Main St, Los Angeles, CA 90001" +244706,USB-C Charging Cable,1,11.95,08/19/19 18:18,"844 Johnson St, San Francisco, CA 94016" +244707,AAA Batteries (4-pack),4,2.99,08/06/19 08:03,"532 Hickory St, Boston, MA 02215" +244708,Macbook Pro Laptop,1,1700,08/28/19 23:59,"914 Park St, New York City, NY 10001" +244709,Apple Airpods Headphones,1,150,08/09/19 14:07,"400 Main St, Austin, TX 73301" +244710,Bose SoundSport Headphones,1,99.99,08/26/19 07:50,"100 Washington St, New York City, NY 10001" +244711,USB-C Charging Cable,1,11.95,08/02/19 13:05,"350 Maple St, San Francisco, CA 94016" +244712,USB-C Charging Cable,2,11.95,08/21/19 15:37,"697 Lakeview St, Seattle, WA 98101" +244713,Google Phone,1,600,08/19/19 05:53,"428 Spruce St, San Francisco, CA 94016" +244714,Flatscreen TV,1,300,08/31/19 07:04,"499 Center St, Atlanta, GA 30301" +244715,27in FHD Monitor,1,149.99,08/11/19 12:26,"937 Johnson St, Boston, MA 02215" +244716,Vareebadd Phone,1,400,08/01/19 12:53,"922 12th St, Seattle, WA 98101" +244717,AA Batteries (4-pack),2,3.84,08/09/19 19:45,"615 Sunset St, San Francisco, CA 94016" +244718,USB-C Charging Cable,1,11.95,08/06/19 17:56,"498 Church St, Dallas, TX 75001" +244719,Macbook Pro Laptop,1,1700,08/08/19 08:38,"863 9th St, San Francisco, CA 94016" +244720,27in FHD Monitor,1,149.99,08/21/19 09:34,"20 Washington St, Dallas, TX 75001" +244721,Lightning Charging Cable,1,14.95,08/15/19 09:30,"408 Highland St, San Francisco, CA 94016" +244722,Apple Airpods Headphones,1,150,08/12/19 11:31,"257 10th St, Seattle, WA 98101" +244723,Google Phone,1,600,08/14/19 11:10,"570 1st St, Portland, ME 04101" +244724,Bose SoundSport Headphones,1,99.99,08/28/19 16:15,"232 Jefferson St, Los Angeles, CA 90001" +244725,AA Batteries (4-pack),1,3.84,08/20/19 10:31,"870 Hill St, Dallas, TX 75001" +244726,AA Batteries (4-pack),1,3.84,08/10/19 18:20,"620 Cedar St, Portland, OR 97035" +244727,AA Batteries (4-pack),1,3.84,08/07/19 20:55,"244 Lincoln St, Austin, TX 73301" +244728,27in FHD Monitor,1,149.99,08/20/19 13:45,"155 Washington St, San Francisco, CA 94016" +244729,USB-C Charging Cable,1,11.95,08/04/19 22:31,"465 Lakeview St, Los Angeles, CA 90001" +244730,Apple Airpods Headphones,1,150,08/11/19 19:16,"900 Main St, Los Angeles, CA 90001" +244731,27in 4K Gaming Monitor,1,389.99,08/24/19 07:15,"143 West St, Atlanta, GA 30301" +244732,AA Batteries (4-pack),1,3.84,08/01/19 07:16,"58 Jackson St, Seattle, WA 98101" +244733,AAA Batteries (4-pack),1,2.99,08/31/19 16:27,"645 Sunset St, San Francisco, CA 94016" +244734,Bose SoundSport Headphones,1,99.99,08/14/19 20:08,"631 13th St, Los Angeles, CA 90001" +244735,Apple Airpods Headphones,1,150,08/31/19 13:42,"61 13th St, New York City, NY 10001" +244736,Lightning Charging Cable,3,14.95,08/21/19 18:29,"109 Lakeview St, San Francisco, CA 94016" +244737,USB-C Charging Cable,1,11.95,08/18/19 12:53,"568 Cherry St, San Francisco, CA 94016" +244738,Lightning Charging Cable,2,14.95,09/01/19 00:21,"320 Adams St, Austin, TX 73301" +244739,USB-C Charging Cable,2,11.95,08/18/19 22:09,"361 Madison St, New York City, NY 10001" +244740,Wired Headphones,2,11.99,08/01/19 22:39,"505 Hickory St, San Francisco, CA 94016" +244741,LG Dryer,1,600.0,08/02/19 16:04,"402 6th St, Austin, TX 73301" +244741,20in Monitor,1,109.99,08/02/19 16:04,"402 6th St, Austin, TX 73301" +244742,27in FHD Monitor,1,149.99,08/24/19 08:05,"473 Lake St, San Francisco, CA 94016" +244743,AA Batteries (4-pack),1,3.84,08/10/19 10:33,"125 Adams St, New York City, NY 10001" +244744,27in FHD Monitor,1,149.99,08/07/19 03:29,"260 12th St, Los Angeles, CA 90001" +244745,iPhone,1,700,08/18/19 02:06,"938 2nd St, Atlanta, GA 30301" +244746,USB-C Charging Cable,1,11.95,08/30/19 20:34,"725 Sunset St, Dallas, TX 75001" +244747,Lightning Charging Cable,1,14.95,08/17/19 07:32,"170 10th St, Los Angeles, CA 90001" +244748,Lightning Charging Cable,1,14.95,08/01/19 17:48,"179 Jackson St, Los Angeles, CA 90001" +244749,34in Ultrawide Monitor,1,379.99,08/02/19 13:07,"651 Jefferson St, San Francisco, CA 94016" +244750,iPhone,1,700,08/04/19 19:33,"230 Wilson St, Los Angeles, CA 90001" +244751,iPhone,1,700,08/02/19 17:59,"91 Lakeview St, San Francisco, CA 94016" +244752,Flatscreen TV,1,300,08/09/19 15:13,"143 6th St, San Francisco, CA 94016" +244753,USB-C Charging Cable,1,11.95,08/14/19 14:04,"674 Hill St, Atlanta, GA 30301" +244754,AAA Batteries (4-pack),2,2.99,08/20/19 19:16,"699 Center St, New York City, NY 10001" +244755,Bose SoundSport Headphones,1,99.99,08/20/19 22:26,"216 Pine St, Los Angeles, CA 90001" +244756,Bose SoundSport Headphones,1,99.99,08/17/19 17:21,"432 Hill St, New York City, NY 10001" +244757,27in FHD Monitor,1,149.99,08/18/19 09:11,"599 Forest St, Atlanta, GA 30301" +244758,iPhone,1,700,08/30/19 22:52,"280 Willow St, Los Angeles, CA 90001" +244759,AAA Batteries (4-pack),2,2.99,08/15/19 14:53,"6 Lake St, San Francisco, CA 94016" +244760,Apple Airpods Headphones,1,150,08/09/19 09:17,"610 Ridge St, New York City, NY 10001" +244761,AA Batteries (4-pack),1,3.84,08/21/19 14:23,"212 2nd St, Los Angeles, CA 90001" +244762,27in 4K Gaming Monitor,1,389.99,08/27/19 19:05,"474 Forest St, Portland, OR 97035" +244763,Macbook Pro Laptop,1,1700,08/24/19 13:39,"607 9th St, Seattle, WA 98101" +244764,Apple Airpods Headphones,1,150,08/31/19 20:54,"906 Lake St, Portland, ME 04101" +244765,Google Phone,1,600,08/21/19 12:26,"590 Cedar St, New York City, NY 10001" +244766,Wired Headphones,1,11.99,08/20/19 21:44,"678 Spruce St, Los Angeles, CA 90001" +244767,AAA Batteries (4-pack),1,2.99,08/14/19 21:27,"913 12th St, Boston, MA 02215" +244768,AA Batteries (4-pack),4,3.84,08/08/19 13:59,"84 Park St, Boston, MA 02215" +244769,Lightning Charging Cable,1,14.95,08/31/19 00:01,"118 Madison St, Los Angeles, CA 90001" +244769,USB-C Charging Cable,1,11.95,08/31/19 00:01,"118 Madison St, Los Angeles, CA 90001" +244770,Wired Headphones,1,11.99,08/12/19 13:05,"467 Spruce St, New York City, NY 10001" +244771,iPhone,1,700,08/24/19 08:26,"565 Jefferson St, Dallas, TX 75001" +244772,Lightning Charging Cable,1,14.95,08/12/19 16:38,"85 4th St, Austin, TX 73301" +244773,Apple Airpods Headphones,1,150,08/20/19 10:13,"372 Lakeview St, San Francisco, CA 94016" +244774,USB-C Charging Cable,1,11.95,08/06/19 23:09,"308 14th St, San Francisco, CA 94016" +244775,AA Batteries (4-pack),1,3.84,08/25/19 19:22,"266 Ridge St, Boston, MA 02215" +244776,AAA Batteries (4-pack),1,2.99,08/27/19 11:29,"994 6th St, Seattle, WA 98101" +244776,USB-C Charging Cable,1,11.95,08/27/19 11:29,"994 6th St, Seattle, WA 98101" +244777,Google Phone,1,600,08/26/19 23:51,"231 Willow St, San Francisco, CA 94016" +244777,Bose SoundSport Headphones,1,99.99,08/26/19 23:51,"231 Willow St, San Francisco, CA 94016" +244778,Macbook Pro Laptop,1,1700,08/21/19 17:14,"152 Johnson St, New York City, NY 10001" +244779,Flatscreen TV,1,300,08/22/19 21:22,"573 Jefferson St, New York City, NY 10001" +244780,Bose SoundSport Headphones,1,99.99,08/29/19 14:15,"684 North St, San Francisco, CA 94016" +244781,USB-C Charging Cable,1,11.95,08/15/19 18:17,"883 Park St, Dallas, TX 75001" +244782,AAA Batteries (4-pack),1,2.99,08/11/19 20:58,"588 Hickory St, Dallas, TX 75001" +244783,34in Ultrawide Monitor,1,379.99,08/26/19 20:03,"256 Hickory St, Austin, TX 73301" +244784,USB-C Charging Cable,1,11.95,08/22/19 20:32,"838 Highland St, Boston, MA 02215" +244785,Lightning Charging Cable,1,14.95,08/28/19 23:42,"293 Cedar St, San Francisco, CA 94016" +244786,34in Ultrawide Monitor,1,379.99,08/31/19 21:34,"409 Elm St, Los Angeles, CA 90001" +244787,Wired Headphones,1,11.99,08/08/19 14:39,"248 Willow St, Boston, MA 02215" +244788,iPhone,1,700,08/13/19 19:29,"59 Forest St, San Francisco, CA 94016" +244789,AA Batteries (4-pack),1,3.84,08/09/19 16:09,"649 2nd St, Dallas, TX 75001" +244790,34in Ultrawide Monitor,1,379.99,08/12/19 16:28,"344 Spruce St, Los Angeles, CA 90001" +244791,Apple Airpods Headphones,1,150,08/21/19 21:30,"37 Spruce St, Seattle, WA 98101" +244792,Lightning Charging Cable,1,14.95,08/07/19 11:44,"155 Madison St, New York City, NY 10001" +244793,AA Batteries (4-pack),1,3.84,08/27/19 18:54,"674 12th St, San Francisco, CA 94016" +244794,AA Batteries (4-pack),1,3.84,08/04/19 20:21,"142 Forest St, Portland, OR 97035" +244795,USB-C Charging Cable,1,11.95,08/08/19 14:06,"339 Center St, New York City, NY 10001" +244796,iPhone,1,700,08/06/19 15:24,"676 1st St, Boston, MA 02215" +244797,Bose SoundSport Headphones,1,99.99,08/22/19 10:39,"529 5th St, Los Angeles, CA 90001" +244798,27in 4K Gaming Monitor,1,389.99,08/01/19 07:43,"305 Meadow St, San Francisco, CA 94016" +244799,USB-C Charging Cable,1,11.95,08/23/19 21:57,"441 4th St, San Francisco, CA 94016" +244800,Apple Airpods Headphones,1,150,08/12/19 09:19,"450 South St, Los Angeles, CA 90001" +244800,Lightning Charging Cable,1,14.95,08/12/19 09:19,"450 South St, Los Angeles, CA 90001" +244801,27in FHD Monitor,1,149.99,08/21/19 16:11,"949 Johnson St, San Francisco, CA 94016" +244802,Lightning Charging Cable,1,14.95,08/09/19 16:16,"157 Willow St, New York City, NY 10001" +244803,Bose SoundSport Headphones,1,99.99,08/17/19 00:36,"442 Johnson St, Austin, TX 73301" +244804,27in FHD Monitor,1,149.99,08/15/19 11:26,"550 Cedar St, Portland, OR 97035" +244805,AAA Batteries (4-pack),2,2.99,08/01/19 11:59,"981 6th St, San Francisco, CA 94016" +244806,Lightning Charging Cable,1,14.95,08/01/19 13:19,"360 11th St, Austin, TX 73301" +244807,Bose SoundSport Headphones,1,99.99,08/02/19 13:54,"316 13th St, New York City, NY 10001" +244808,AA Batteries (4-pack),2,3.84,08/07/19 10:38,"563 South St, New York City, NY 10001" +244809,USB-C Charging Cable,1,11.95,08/04/19 13:05,"64 Maple St, Seattle, WA 98101" +244810,AAA Batteries (4-pack),1,2.99,08/06/19 09:49,"412 Church St, Dallas, TX 75001" +244811,Lightning Charging Cable,1,14.95,08/07/19 17:23,"461 9th St, Portland, OR 97035" +244812,Apple Airpods Headphones,1,150,08/10/19 10:22,"325 South St, Seattle, WA 98101" +244813,Wired Headphones,2,11.99,08/23/19 07:15,"341 Washington St, Seattle, WA 98101" +244814,Wired Headphones,1,11.99,08/19/19 23:26,"56 11th St, Los Angeles, CA 90001" +244815,Apple Airpods Headphones,1,150,08/06/19 07:26,"442 Church St, Atlanta, GA 30301" +244816,AAA Batteries (4-pack),2,2.99,08/02/19 21:47,"862 7th St, San Francisco, CA 94016" +244817,AAA Batteries (4-pack),1,2.99,08/20/19 04:27,"146 Washington St, San Francisco, CA 94016" +244818,AA Batteries (4-pack),1,3.84,08/25/19 12:27,"738 Washington St, Dallas, TX 75001" +244819,AA Batteries (4-pack),1,3.84,08/12/19 19:23,"903 Meadow St, San Francisco, CA 94016" +244820,AA Batteries (4-pack),2,3.84,08/02/19 16:48,"220 Meadow St, San Francisco, CA 94016" +244821,Lightning Charging Cable,1,14.95,08/11/19 18:15,"236 Forest St, Seattle, WA 98101" +244822,Apple Airpods Headphones,1,150,08/04/19 08:49,"437 Dogwood St, Boston, MA 02215" +244823,AAA Batteries (4-pack),1,2.99,08/14/19 09:58,"652 Johnson St, Los Angeles, CA 90001" +244824,iPhone,1,700,08/29/19 15:02,"713 Walnut St, Boston, MA 02215" +244825,Wired Headphones,1,11.99,08/26/19 10:49,"122 West St, Seattle, WA 98101" +244826,iPhone,1,700,08/21/19 14:36,"993 Sunset St, Austin, TX 73301" +244826,Apple Airpods Headphones,1,150,08/21/19 14:36,"993 Sunset St, Austin, TX 73301" +244827,Wired Headphones,1,11.99,08/30/19 12:04,"152 Pine St, San Francisco, CA 94016" +244828,34in Ultrawide Monitor,1,379.99,08/08/19 17:06,"855 10th St, Portland, OR 97035" +244829,20in Monitor,1,109.99,08/18/19 00:39,"55 11th St, Boston, MA 02215" +244830,Lightning Charging Cable,1,14.95,08/17/19 07:57,"997 4th St, Los Angeles, CA 90001" +244831,Lightning Charging Cable,1,14.95,08/04/19 17:04,"160 5th St, San Francisco, CA 94016" +244832,USB-C Charging Cable,1,11.95,08/05/19 22:08,"209 Spruce St, Boston, MA 02215" +244833,27in FHD Monitor,1,149.99,08/27/19 18:35,"612 4th St, San Francisco, CA 94016" +244834,Wired Headphones,1,11.99,08/22/19 21:29,"120 Hill St, Los Angeles, CA 90001" +244835,Flatscreen TV,1,300,08/17/19 19:29,"491 Hill St, San Francisco, CA 94016" +244836,Wired Headphones,1,11.99,08/09/19 13:01,"552 Hickory St, San Francisco, CA 94016" +244837,USB-C Charging Cable,1,11.95,08/26/19 20:51,"282 Cherry St, San Francisco, CA 94016" +244838,AA Batteries (4-pack),1,3.84,08/14/19 09:43,"529 Adams St, Los Angeles, CA 90001" +244839,Bose SoundSport Headphones,1,99.99,08/11/19 20:57,"75 Jefferson St, Portland, OR 97035" +244840,Wired Headphones,1,11.99,08/28/19 19:44,"816 Lakeview St, Atlanta, GA 30301" +244841,USB-C Charging Cable,1,11.95,08/29/19 21:26,"863 Spruce St, Portland, OR 97035" +244842,USB-C Charging Cable,1,11.95,08/14/19 19:48,"659 West St, San Francisco, CA 94016" +244842,Macbook Pro Laptop,1,1700,08/14/19 19:48,"659 West St, San Francisco, CA 94016" +244843,AA Batteries (4-pack),1,3.84,08/16/19 11:00,"873 Cherry St, Boston, MA 02215" +244844,34in Ultrawide Monitor,1,379.99,08/05/19 20:00,"84 1st St, Boston, MA 02215" +244845,Bose SoundSport Headphones,1,99.99,08/04/19 18:35,"713 West St, Dallas, TX 75001" +244846,Apple Airpods Headphones,1,150,08/13/19 17:32,"483 Main St, New York City, NY 10001" +244847,Google Phone,1,600,08/10/19 16:49,"692 North St, Portland, OR 97035" +244848,Apple Airpods Headphones,1,150,08/21/19 16:56,"307 Hill St, Portland, OR 97035" +244849,AA Batteries (4-pack),2,3.84,08/20/19 10:10,"64 North St, Atlanta, GA 30301" +244850,34in Ultrawide Monitor,1,379.99,08/23/19 19:43,"691 Church St, New York City, NY 10001" +244851,AA Batteries (4-pack),2,3.84,08/17/19 22:00,"685 12th St, San Francisco, CA 94016" +244852,Bose SoundSport Headphones,1,99.99,08/11/19 17:20,"282 Johnson St, Atlanta, GA 30301" +244853,Lightning Charging Cable,1,14.95,08/31/19 12:58,"520 North St, New York City, NY 10001" +244854,27in 4K Gaming Monitor,1,389.99,08/30/19 12:50,"336 Walnut St, San Francisco, CA 94016" +244855,Bose SoundSport Headphones,1,99.99,08/21/19 13:03,"635 River St, Atlanta, GA 30301" +244856,27in FHD Monitor,1,149.99,08/14/19 23:03,"783 Chestnut St, Los Angeles, CA 90001" +244857,Wired Headphones,1,11.99,08/31/19 15:42,"455 2nd St, Boston, MA 02215" +244858,AA Batteries (4-pack),4,3.84,08/14/19 20:57,"950 12th St, New York City, NY 10001" +244859,27in FHD Monitor,1,149.99,08/05/19 15:44,"582 Lake St, New York City, NY 10001" +244860,Flatscreen TV,1,300,08/23/19 15:52,"823 West St, New York City, NY 10001" +244861,AAA Batteries (4-pack),2,2.99,08/04/19 09:13,"716 7th St, New York City, NY 10001" +244862,Bose SoundSport Headphones,1,99.99,08/27/19 18:02,"492 6th St, Los Angeles, CA 90001" +244863,Bose SoundSport Headphones,1,99.99,08/09/19 20:41,"861 Hickory St, Los Angeles, CA 90001" +244864,Macbook Pro Laptop,1,1700,08/05/19 01:25,"304 Forest St, Atlanta, GA 30301" +244865,USB-C Charging Cable,1,11.95,08/16/19 10:52,"80 2nd St, New York City, NY 10001" +244866,iPhone,1,700,08/16/19 19:40,"743 Jackson St, San Francisco, CA 94016" +244867,Lightning Charging Cable,1,14.95,08/04/19 18:54,"270 Forest St, Seattle, WA 98101" +244868,Lightning Charging Cable,1,14.95,08/25/19 13:42,"40 10th St, Los Angeles, CA 90001" +244869,AA Batteries (4-pack),1,3.84,08/29/19 11:17,"793 Hill St, Austin, TX 73301" +244870,AA Batteries (4-pack),5,3.84,08/20/19 08:44,"344 Lake St, San Francisco, CA 94016" +244871,34in Ultrawide Monitor,1,379.99,08/29/19 17:38,"368 Highland St, Los Angeles, CA 90001" +244872,AA Batteries (4-pack),1,3.84,08/14/19 08:38,"337 Meadow St, Atlanta, GA 30301" +244873,AA Batteries (4-pack),1,3.84,08/24/19 10:40,"433 13th St, Los Angeles, CA 90001" +244874,AAA Batteries (4-pack),2,2.99,08/09/19 20:20,"249 Willow St, Atlanta, GA 30301" +244875,AA Batteries (4-pack),2,3.84,08/10/19 19:58,"629 Walnut St, Dallas, TX 75001" +244876,AAA Batteries (4-pack),1,2.99,08/22/19 10:59,"622 South St, San Francisco, CA 94016" +244877,Lightning Charging Cable,1,14.95,08/01/19 10:26,"532 12th St, Boston, MA 02215" +244878,Apple Airpods Headphones,1,150,08/18/19 15:49,"383 Jackson St, San Francisco, CA 94016" +244879,AA Batteries (4-pack),1,3.84,08/17/19 15:51,"953 10th St, Seattle, WA 98101" +244880,Lightning Charging Cable,1,14.95,08/08/19 11:28,"786 Highland St, New York City, NY 10001" +244881,AAA Batteries (4-pack),1,2.99,08/31/19 21:33,"883 Chestnut St, Portland, OR 97035" +244882,Lightning Charging Cable,1,14.95,08/04/19 01:01,"175 North St, Portland, OR 97035" +244883,27in 4K Gaming Monitor,1,389.99,08/07/19 17:14,"871 2nd St, San Francisco, CA 94016" +244884,34in Ultrawide Monitor,1,379.99,08/27/19 17:57,"472 South St, Atlanta, GA 30301" +244885,LG Washing Machine,1,600.0,08/04/19 01:35,"897 Jackson St, Dallas, TX 75001" +244886,Lightning Charging Cable,1,14.95,08/14/19 20:41,"581 Center St, New York City, NY 10001" +244887,AA Batteries (4-pack),2,3.84,08/06/19 13:35,"784 Johnson St, Boston, MA 02215" +244887,Lightning Charging Cable,1,14.95,08/06/19 13:35,"784 Johnson St, Boston, MA 02215" +244888,Flatscreen TV,1,300,08/25/19 14:00,"946 2nd St, San Francisco, CA 94016" +244889,Apple Airpods Headphones,1,150,08/06/19 21:43,"517 Wilson St, Los Angeles, CA 90001" +244890,USB-C Charging Cable,2,11.95,08/12/19 11:05,"888 Willow St, Portland, OR 97035" +244891,34in Ultrawide Monitor,1,379.99,08/25/19 20:12,"594 Chestnut St, San Francisco, CA 94016" +244892,Lightning Charging Cable,1,14.95,08/04/19 00:35,"595 Pine St, New York City, NY 10001" +244893,AA Batteries (4-pack),1,3.84,08/22/19 10:16,"443 Johnson St, Boston, MA 02215" +244894,Wired Headphones,1,11.99,08/22/19 21:18,"420 Maple St, Boston, MA 02215" +244895,Lightning Charging Cable,1,14.95,08/11/19 11:30,"133 Ridge St, New York City, NY 10001" +244896,34in Ultrawide Monitor,1,379.99,08/11/19 14:13,"682 Pine St, Portland, OR 97035" +244897,USB-C Charging Cable,1,11.95,08/25/19 17:51,"857 Cherry St, Austin, TX 73301" +244898,Lightning Charging Cable,1,14.95,08/13/19 19:56,"676 Adams St, San Francisco, CA 94016" +244899,Apple Airpods Headphones,1,150,08/14/19 10:42,"148 Hill St, Los Angeles, CA 90001" +244900,34in Ultrawide Monitor,1,379.99,08/26/19 13:21,"577 River St, Austin, TX 73301" +244901,Bose SoundSport Headphones,1,99.99,08/07/19 21:48,"401 8th St, Los Angeles, CA 90001" +244902,AA Batteries (4-pack),2,3.84,08/02/19 15:32,"122 Forest St, Atlanta, GA 30301" +244903,27in FHD Monitor,1,149.99,08/02/19 21:45,"747 Wilson St, Austin, TX 73301" +244904,AAA Batteries (4-pack),3,2.99,08/22/19 11:57,"269 Adams St, New York City, NY 10001" +244905,USB-C Charging Cable,1,11.95,08/06/19 16:06,"851 Church St, Los Angeles, CA 90001" +244906,20in Monitor,1,109.99,08/07/19 09:33,"958 Center St, San Francisco, CA 94016" +244907,AAA Batteries (4-pack),1,2.99,08/01/19 10:52,"963 Spruce St, Dallas, TX 75001" +244908,Lightning Charging Cable,1,14.95,08/06/19 22:58,"12 Dogwood St, Los Angeles, CA 90001" +244909,Bose SoundSport Headphones,1,99.99,08/05/19 04:33,"268 Church St, San Francisco, CA 94016" +244910,AA Batteries (4-pack),1,3.84,08/25/19 10:12,"757 Maple St, San Francisco, CA 94016" +244911,27in FHD Monitor,2,149.99,08/24/19 17:52,"983 Madison St, Los Angeles, CA 90001" +244911,AA Batteries (4-pack),1,3.84,08/24/19 17:52,"983 Madison St, Los Angeles, CA 90001" +244912,iPhone,1,700,08/27/19 18:18,"760 Jefferson St, Seattle, WA 98101" +244913,20in Monitor,1,109.99,08/04/19 21:03,"680 Walnut St, Seattle, WA 98101" +244914,Bose SoundSport Headphones,1,99.99,08/17/19 17:29,"768 Main St, San Francisco, CA 94016" +244915,USB-C Charging Cable,2,11.95,08/09/19 12:23,"604 Meadow St, San Francisco, CA 94016" +244916,USB-C Charging Cable,1,11.95,08/01/19 18:24,"84 Cedar St, New York City, NY 10001" +244917,Macbook Pro Laptop,1,1700,08/05/19 18:35,"465 Cedar St, Los Angeles, CA 90001" +244918,Bose SoundSport Headphones,1,99.99,08/14/19 06:25,"288 4th St, Portland, OR 97035" +244919,AA Batteries (4-pack),1,3.84,08/04/19 11:52,"698 Center St, Atlanta, GA 30301" +244920,ThinkPad Laptop,1,999.99,08/02/19 00:25,"335 Center St, San Francisco, CA 94016" +244921,Bose SoundSport Headphones,1,99.99,08/06/19 07:00,"80 Forest St, Atlanta, GA 30301" +244922,27in FHD Monitor,1,149.99,08/20/19 09:55,"511 South St, New York City, NY 10001" +244923,USB-C Charging Cable,1,11.95,08/30/19 13:57,"925 Walnut St, San Francisco, CA 94016" +244924,AA Batteries (4-pack),1,3.84,08/14/19 13:40,"412 Hill St, New York City, NY 10001" +244925,USB-C Charging Cable,1,11.95,08/15/19 14:21,"101 Elm St, Boston, MA 02215" +,,,,, +244926,iPhone,1,700,08/21/19 19:06,"545 10th St, Dallas, TX 75001" +244927,AAA Batteries (4-pack),1,2.99,08/23/19 19:36,"432 12th St, Austin, TX 73301" +244928,AA Batteries (4-pack),1,3.84,08/14/19 19:36,"461 Hill St, Seattle, WA 98101" +244929,20in Monitor,1,109.99,08/04/19 12:05,"306 Hickory St, Austin, TX 73301" +244930,AA Batteries (4-pack),1,3.84,08/22/19 14:54,"485 13th St, New York City, NY 10001" +244931,34in Ultrawide Monitor,1,379.99,08/03/19 19:26,"450 Chestnut St, Seattle, WA 98101" +244932,Google Phone,1,600,08/19/19 14:29,"693 11th St, Seattle, WA 98101" +244933,Apple Airpods Headphones,1,150,08/16/19 16:50,"37 Adams St, San Francisco, CA 94016" +244934,AAA Batteries (4-pack),2,2.99,08/29/19 13:49,"956 West St, Los Angeles, CA 90001" +244935,34in Ultrawide Monitor,1,379.99,08/13/19 12:57,"32 Ridge St, Dallas, TX 75001" +244936,iPhone,1,700,08/18/19 22:46,"36 9th St, Boston, MA 02215" +244937,Macbook Pro Laptop,1,1700,08/30/19 19:15,"45 Center St, Boston, MA 02215" +244938,Macbook Pro Laptop,1,1700,08/18/19 10:59,"539 Hickory St, New York City, NY 10001" +244939,Lightning Charging Cable,1,14.95,08/11/19 18:52,"78 Maple St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +244940,Wired Headphones,1,11.99,08/16/19 22:06,"644 Highland St, Atlanta, GA 30301" +244941,AA Batteries (4-pack),1,3.84,08/18/19 16:32,"966 11th St, Los Angeles, CA 90001" +244942,Apple Airpods Headphones,1,150,08/06/19 17:41,"995 River St, Austin, TX 73301" +244943,AAA Batteries (4-pack),1,2.99,08/23/19 13:20,"480 Maple St, Boston, MA 02215" +244944,iPhone,1,700,08/28/19 18:21,"113 Lake St, San Francisco, CA 94016" +244945,Apple Airpods Headphones,1,150,08/01/19 09:39,"269 River St, Boston, MA 02215" +244946,Wired Headphones,1,11.99,08/30/19 14:04,"647 Park St, Los Angeles, CA 90001" +244947,27in 4K Gaming Monitor,1,389.99,08/09/19 14:54,"759 River St, Dallas, TX 75001" +244948,Macbook Pro Laptop,1,1700,08/12/19 11:43,"297 6th St, Dallas, TX 75001" +244949,iPhone,1,700,08/19/19 17:31,"575 13th St, San Francisco, CA 94016" +244950,Lightning Charging Cable,1,14.95,08/12/19 17:30,"93 1st St, New York City, NY 10001" +244951,Lightning Charging Cable,1,14.95,08/04/19 12:42,"89 6th St, Austin, TX 73301" +244952,Apple Airpods Headphones,1,150,08/10/19 11:10,"690 4th St, Dallas, TX 75001" +244953,Google Phone,1,600,08/17/19 16:22,"672 Hickory St, Dallas, TX 75001" +244954,Google Phone,1,600,08/11/19 16:34,"44 Meadow St, San Francisco, CA 94016" +244955,iPhone,1,700,08/20/19 01:48,"652 Walnut St, Portland, OR 97035" +244956,Lightning Charging Cable,1,14.95,08/03/19 10:41,"242 Jefferson St, San Francisco, CA 94016" +244957,ThinkPad Laptop,1,999.99,08/11/19 18:03,"777 Jefferson St, Los Angeles, CA 90001" +244958,iPhone,1,700,08/08/19 17:34,"444 West St, Dallas, TX 75001" +244959,USB-C Charging Cable,1,11.95,08/05/19 11:20,"707 12th St, Dallas, TX 75001" +244960,Wired Headphones,1,11.99,08/26/19 16:54,"331 5th St, Seattle, WA 98101" +244961,Wired Headphones,1,11.99,08/11/19 21:00,"458 6th St, Seattle, WA 98101" +244962,USB-C Charging Cable,1,11.95,08/09/19 10:31,"741 Hickory St, Los Angeles, CA 90001" +244963,Wired Headphones,1,11.99,08/15/19 21:11,"583 Madison St, New York City, NY 10001" +244964,34in Ultrawide Monitor,1,379.99,08/09/19 18:21,"993 2nd St, Dallas, TX 75001" +244965,AAA Batteries (4-pack),4,2.99,08/04/19 11:48,"343 13th St, Boston, MA 02215" +244966,AA Batteries (4-pack),1,3.84,08/26/19 15:08,"225 Madison St, Boston, MA 02215" +244967,AA Batteries (4-pack),1,3.84,08/20/19 12:40,"312 2nd St, San Francisco, CA 94016" +244968,Lightning Charging Cable,1,14.95,08/16/19 08:23,"462 Lincoln St, Austin, TX 73301" +244969,USB-C Charging Cable,1,11.95,08/05/19 21:23,"354 Forest St, San Francisco, CA 94016" +244970,AA Batteries (4-pack),1,3.84,08/11/19 12:24,"723 Meadow St, New York City, NY 10001" +244971,USB-C Charging Cable,1,11.95,08/22/19 22:23,"584 Johnson St, Atlanta, GA 30301" +244972,Lightning Charging Cable,1,14.95,08/09/19 20:38,"449 Washington St, San Francisco, CA 94016" +244973,Apple Airpods Headphones,1,150,08/28/19 23:40,"461 10th St, New York City, NY 10001" +244974,Wired Headphones,1,11.99,08/27/19 12:04,"678 14th St, Dallas, TX 75001" +244975,AA Batteries (4-pack),1,3.84,08/02/19 10:06,"526 Jackson St, San Francisco, CA 94016" +244976,Macbook Pro Laptop,1,1700,08/02/19 22:42,"446 Main St, Los Angeles, CA 90001" +244977,USB-C Charging Cable,1,11.95,08/23/19 20:36,"102 Cedar St, San Francisco, CA 94016" +244978,USB-C Charging Cable,1,11.95,08/27/19 08:07,"359 Dogwood St, Atlanta, GA 30301" +244979,AAA Batteries (4-pack),1,2.99,08/23/19 11:03,"555 13th St, Los Angeles, CA 90001" +244980,27in FHD Monitor,1,149.99,08/13/19 21:01,"485 4th St, New York City, NY 10001" +244981,AAA Batteries (4-pack),1,2.99,08/31/19 10:09,"293 11th St, Seattle, WA 98101" +244982,AAA Batteries (4-pack),1,2.99,08/23/19 16:42,"872 8th St, New York City, NY 10001" +244983,AAA Batteries (4-pack),1,2.99,08/29/19 11:11,"37 Washington St, Boston, MA 02215" +244984,Vareebadd Phone,1,400,08/08/19 12:09,"614 Adams St, Seattle, WA 98101" +244985,USB-C Charging Cable,1,11.95,08/07/19 15:04,"64 Pine St, Atlanta, GA 30301" +244986,LG Washing Machine,1,600.0,08/20/19 21:22,"626 7th St, San Francisco, CA 94016" +244987,AAA Batteries (4-pack),1,2.99,08/29/19 09:40,"124 Hickory St, Atlanta, GA 30301" +244988,AAA Batteries (4-pack),1,2.99,08/11/19 18:02,"312 Washington St, Austin, TX 73301" +244989,Bose SoundSport Headphones,1,99.99,08/29/19 13:27,"234 1st St, Los Angeles, CA 90001" +244990,USB-C Charging Cable,1,11.95,08/22/19 17:02,"886 Center St, Los Angeles, CA 90001" +244991,iPhone,1,700,08/13/19 12:04,"698 Lincoln St, Atlanta, GA 30301" +244992,Apple Airpods Headphones,1,150,08/03/19 15:50,"802 Walnut St, Los Angeles, CA 90001" +244993,Wired Headphones,2,11.99,08/22/19 00:49,"224 Elm St, San Francisco, CA 94016" +244994,Lightning Charging Cable,1,14.95,08/18/19 14:26,"214 13th St, Los Angeles, CA 90001" +244995,Bose SoundSport Headphones,1,99.99,08/11/19 12:40,"344 Chestnut St, Atlanta, GA 30301" +244996,20in Monitor,1,109.99,08/17/19 09:12,"56 Elm St, Boston, MA 02215" +244997,Bose SoundSport Headphones,1,99.99,08/15/19 09:13,"845 Hickory St, New York City, NY 10001" +244997,AAA Batteries (4-pack),4,2.99,08/15/19 09:13,"845 Hickory St, New York City, NY 10001" +244998,34in Ultrawide Monitor,1,379.99,08/06/19 14:03,"64 Maple St, Los Angeles, CA 90001" +244999,Macbook Pro Laptop,1,1700,08/26/19 18:32,"225 Willow St, Portland, OR 97035" +245000,USB-C Charging Cable,2,11.95,08/22/19 19:23,"305 North St, Los Angeles, CA 90001" +245001,Apple Airpods Headphones,1,150,08/04/19 06:38,"621 Walnut St, Dallas, TX 75001" +245002,Lightning Charging Cable,1,14.95,08/05/19 11:15,"351 North St, San Francisco, CA 94016" +245003,USB-C Charging Cable,1,11.95,08/27/19 08:53,"205 Church St, Austin, TX 73301" +245004,Macbook Pro Laptop,1,1700,08/06/19 12:00,"386 Meadow St, Seattle, WA 98101" +245005,Lightning Charging Cable,1,14.95,08/22/19 02:39,"284 Dogwood St, Los Angeles, CA 90001" +245005,AAA Batteries (4-pack),3,2.99,08/22/19 02:39,"284 Dogwood St, Los Angeles, CA 90001" +245006,Lightning Charging Cable,1,14.95,08/18/19 19:34,"855 Park St, Los Angeles, CA 90001" +245007,iPhone,1,700,08/24/19 10:37,"594 9th St, New York City, NY 10001" +245007,Wired Headphones,2,11.99,08/24/19 10:37,"594 9th St, New York City, NY 10001" +245008,AA Batteries (4-pack),1,3.84,08/23/19 18:17,"761 Sunset St, New York City, NY 10001" +245009,Apple Airpods Headphones,1,150,08/03/19 00:09,"991 Lakeview St, Los Angeles, CA 90001" +245010,Apple Airpods Headphones,1,150,08/07/19 14:21,"802 Park St, Los Angeles, CA 90001" +245011,20in Monitor,1,109.99,08/21/19 20:04,"923 4th St, Los Angeles, CA 90001" +245012,AAA Batteries (4-pack),1,2.99,08/19/19 09:08,"359 14th St, San Francisco, CA 94016" +245013,LG Dryer,1,600.0,08/29/19 19:31,"247 8th St, New York City, NY 10001" +245014,Wired Headphones,1,11.99,08/28/19 07:10,"762 Jackson St, Boston, MA 02215" +245015,AAA Batteries (4-pack),1,2.99,08/08/19 10:29,"418 Spruce St, Los Angeles, CA 90001" +245016,Macbook Pro Laptop,1,1700,08/09/19 12:27,"227 Chestnut St, Boston, MA 02215" +245017,Apple Airpods Headphones,1,150,08/12/19 22:11,"783 Spruce St, San Francisco, CA 94016" +245018,AAA Batteries (4-pack),1,2.99,08/21/19 08:07,"899 Church St, Los Angeles, CA 90001" +245019,USB-C Charging Cable,1,11.95,08/07/19 16:14,"509 Meadow St, Portland, OR 97035" +245020,Wired Headphones,1,11.99,08/13/19 10:40,"903 Ridge St, San Francisco, CA 94016" +245021,Bose SoundSport Headphones,1,99.99,08/08/19 19:57,"293 Chestnut St, New York City, NY 10001" +245022,AA Batteries (4-pack),1,3.84,08/31/19 23:28,"658 14th St, Los Angeles, CA 90001" +245023,Wired Headphones,1,11.99,08/24/19 09:56,"812 9th St, Seattle, WA 98101" +245024,Google Phone,1,600,08/15/19 05:32,"339 Wilson St, Dallas, TX 75001" +245024,USB-C Charging Cable,1,11.95,08/15/19 05:32,"339 Wilson St, Dallas, TX 75001" +245024,Bose SoundSport Headphones,1,99.99,08/15/19 05:32,"339 Wilson St, Dallas, TX 75001" +245025,iPhone,1,700,08/29/19 20:03,"390 Willow St, San Francisco, CA 94016" +245026,20in Monitor,1,109.99,08/11/19 10:43,"172 2nd St, New York City, NY 10001" +245027,AA Batteries (4-pack),1,3.84,08/21/19 19:42,"226 Hickory St, New York City, NY 10001" +245028,20in Monitor,1,109.99,08/17/19 21:55,"599 Spruce St, Los Angeles, CA 90001" +245029,34in Ultrawide Monitor,1,379.99,08/28/19 21:29,"906 10th St, Boston, MA 02215" +245030,Bose SoundSport Headphones,1,99.99,08/01/19 20:31,"915 10th St, New York City, NY 10001" +245031,AA Batteries (4-pack),1,3.84,08/22/19 15:17,"16 11th St, San Francisco, CA 94016" +245032,AA Batteries (4-pack),1,3.84,08/12/19 17:22,"84 4th St, San Francisco, CA 94016" +245033,Lightning Charging Cable,1,14.95,08/05/19 10:45,"477 14th St, Austin, TX 73301" +245034,AAA Batteries (4-pack),1,2.99,08/23/19 10:36,"645 Maple St, Los Angeles, CA 90001" +245035,USB-C Charging Cable,1,11.95,09/01/19 00:17,"386 Meadow St, New York City, NY 10001" +245036,Vareebadd Phone,1,400,08/25/19 14:08,"330 Willow St, New York City, NY 10001" +245036,Wired Headphones,1,11.99,08/25/19 14:08,"330 Willow St, New York City, NY 10001" +245037,AA Batteries (4-pack),1,3.84,08/05/19 05:58,"73 Wilson St, Los Angeles, CA 90001" +245038,Macbook Pro Laptop,1,1700,08/29/19 17:28,"439 Willow St, Seattle, WA 98101" +245039,USB-C Charging Cable,1,11.95,08/03/19 17:04,"664 2nd St, San Francisco, CA 94016" +245040,27in FHD Monitor,1,149.99,08/28/19 11:56,"541 South St, Atlanta, GA 30301" +245041,Wired Headphones,1,11.99,08/15/19 18:52,"77 Meadow St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +245042,Bose SoundSport Headphones,1,99.99,08/09/19 15:19,"286 9th St, Portland, ME 04101" +245043,Bose SoundSport Headphones,1,99.99,08/23/19 17:41,"830 Pine St, New York City, NY 10001" +245044,Google Phone,1,600,08/19/19 13:17,"798 Lake St, Portland, OR 97035" +245045,AA Batteries (4-pack),1,3.84,08/14/19 20:24,"266 Maple St, Dallas, TX 75001" +245046,Apple Airpods Headphones,1,150,08/02/19 00:58,"694 Ridge St, Dallas, TX 75001" +245047,Lightning Charging Cable,1,14.95,08/10/19 10:33,"484 Center St, Seattle, WA 98101" +245048,Lightning Charging Cable,1,14.95,08/24/19 16:15,"3 Spruce St, San Francisco, CA 94016" +245049,27in 4K Gaming Monitor,1,389.99,08/03/19 10:46,"480 West St, Atlanta, GA 30301" +245050,Wired Headphones,1,11.99,08/05/19 16:01,"458 North St, San Francisco, CA 94016" +245051,Wired Headphones,1,11.99,08/22/19 07:57,"298 10th St, San Francisco, CA 94016" +245052,27in 4K Gaming Monitor,1,389.99,08/12/19 18:55,"185 Willow St, Los Angeles, CA 90001" +245053,AA Batteries (4-pack),1,3.84,08/01/19 19:40,"251 Lakeview St, Los Angeles, CA 90001" +245054,Lightning Charging Cable,1,14.95,08/25/19 14:41,"647 Jefferson St, Atlanta, GA 30301" +245055,34in Ultrawide Monitor,1,379.99,08/21/19 20:20,"436 River St, San Francisco, CA 94016" +245056,Lightning Charging Cable,1,14.95,08/15/19 22:57,"643 Pine St, New York City, NY 10001" +245057,USB-C Charging Cable,1,11.95,08/03/19 10:23,"814 1st St, San Francisco, CA 94016" +245058,Wired Headphones,2,11.99,08/20/19 19:13,"831 Pine St, New York City, NY 10001" +245059,Wired Headphones,1,11.99,08/11/19 13:34,"125 10th St, Boston, MA 02215" +245060,AAA Batteries (4-pack),1,2.99,08/25/19 17:22,"516 Adams St, Dallas, TX 75001" +245061,AA Batteries (4-pack),2,3.84,08/07/19 12:19,"393 Willow St, Boston, MA 02215" +245062,AAA Batteries (4-pack),1,2.99,08/24/19 07:20,"359 Jefferson St, Boston, MA 02215" +245063,AAA Batteries (4-pack),1,2.99,08/14/19 09:43,"301 Center St, Los Angeles, CA 90001" +245064,Lightning Charging Cable,1,14.95,08/26/19 03:03,"771 Chestnut St, Los Angeles, CA 90001" +245065,AAA Batteries (4-pack),1,2.99,08/08/19 07:57,"431 North St, Portland, OR 97035" +245066,AA Batteries (4-pack),2,3.84,08/09/19 07:35,"220 11th St, Dallas, TX 75001" +245067,Lightning Charging Cable,1,14.95,08/29/19 21:39,"346 Jackson St, Portland, OR 97035" +245068,20in Monitor,1,109.99,08/20/19 15:28,"260 North St, Dallas, TX 75001" +245069,Wired Headphones,1,11.99,08/02/19 18:02,"144 7th St, San Francisco, CA 94016" +245070,AAA Batteries (4-pack),4,2.99,08/31/19 14:17,"411 Madison St, Dallas, TX 75001" +245071,Lightning Charging Cable,1,14.95,08/02/19 19:54,"698 Ridge St, Boston, MA 02215" +245072,Macbook Pro Laptop,1,1700,08/06/19 20:09,"347 Johnson St, San Francisco, CA 94016" +245073,USB-C Charging Cable,1,11.95,08/14/19 16:24,"124 10th St, Portland, OR 97035" +245074,iPhone,1,700,08/29/19 15:16,"84 Meadow St, Dallas, TX 75001" +245074,Apple Airpods Headphones,1,150,08/29/19 15:16,"84 Meadow St, Dallas, TX 75001" +245075,Apple Airpods Headphones,1,150,08/26/19 22:13,"251 Walnut St, Boston, MA 02215" +245076,Lightning Charging Cable,1,14.95,08/03/19 10:12,"654 8th St, Los Angeles, CA 90001" +245077,Bose SoundSport Headphones,1,99.99,08/02/19 18:18,"288 Center St, Seattle, WA 98101" +245078,Lightning Charging Cable,1,14.95,08/27/19 00:17,"726 River St, Boston, MA 02215" +245079,Flatscreen TV,1,300,08/04/19 12:58,"616 Washington St, New York City, NY 10001" +245080,Wired Headphones,1,11.99,08/28/19 13:36,"116 Jackson St, Portland, OR 97035" +245081,Bose SoundSport Headphones,1,99.99,08/20/19 15:49,"606 Elm St, Atlanta, GA 30301" +245082,USB-C Charging Cable,1,11.95,08/27/19 21:32,"503 Highland St, New York City, NY 10001" +245083,27in FHD Monitor,1,149.99,08/27/19 22:53,"747 5th St, New York City, NY 10001" +245084,Wired Headphones,1,11.99,08/30/19 12:18,"21 Church St, Boston, MA 02215" +245085,27in FHD Monitor,1,149.99,08/06/19 10:48,"539 Sunset St, Los Angeles, CA 90001" +245086,ThinkPad Laptop,1,999.99,08/13/19 08:58,"113 Willow St, Los Angeles, CA 90001" +245087,iPhone,1,700,08/15/19 01:02,"668 8th St, San Francisco, CA 94016" +245087,Wired Headphones,1,11.99,08/15/19 01:02,"668 8th St, San Francisco, CA 94016" +245088,AAA Batteries (4-pack),1,2.99,08/08/19 15:41,"212 Center St, Los Angeles, CA 90001" +245089,34in Ultrawide Monitor,1,379.99,08/11/19 15:16,"614 Dogwood St, San Francisco, CA 94016" +245090,AAA Batteries (4-pack),3,2.99,08/09/19 18:40,"867 Washington St, San Francisco, CA 94016" +245091,Lightning Charging Cable,1,14.95,08/30/19 18:47,"923 West St, Atlanta, GA 30301" +245092,20in Monitor,1,109.99,08/26/19 21:53,"982 Sunset St, Austin, TX 73301" +245093,USB-C Charging Cable,1,11.95,08/20/19 07:54,"386 River St, New York City, NY 10001" +245094,Lightning Charging Cable,1,14.95,08/25/19 16:39,"572 Ridge St, San Francisco, CA 94016" +245095,ThinkPad Laptop,1,999.99,08/01/19 13:27,"511 11th St, Los Angeles, CA 90001" +245096,Apple Airpods Headphones,1,150,08/09/19 22:09,"407 Johnson St, San Francisco, CA 94016" +245097,Lightning Charging Cable,1,14.95,08/23/19 18:44,"660 10th St, New York City, NY 10001" +245098,AA Batteries (4-pack),1,3.84,08/15/19 17:02,"763 12th St, Portland, OR 97035" +245099,Wired Headphones,1,11.99,08/16/19 15:32,"742 10th St, Los Angeles, CA 90001" +245100,Bose SoundSport Headphones,1,99.99,08/07/19 00:55,"750 Dogwood St, Boston, MA 02215" +245101,Apple Airpods Headphones,1,150,08/15/19 08:10,"266 South St, Seattle, WA 98101" +245102,USB-C Charging Cable,1,11.95,08/22/19 08:34,"994 Jefferson St, New York City, NY 10001" +245103,Lightning Charging Cable,1,14.95,08/24/19 11:42,"78 North St, San Francisco, CA 94016" +245104,Flatscreen TV,1,300,08/20/19 10:25,"772 Maple St, San Francisco, CA 94016" +245105,AAA Batteries (4-pack),1,2.99,08/07/19 11:28,"45 Willow St, Boston, MA 02215" +245106,27in FHD Monitor,1,149.99,08/30/19 16:10,"242 Madison St, Portland, OR 97035" +245107,AA Batteries (4-pack),1,3.84,08/02/19 20:06,"200 Main St, Austin, TX 73301" +245108,AAA Batteries (4-pack),2,2.99,08/10/19 18:59,"226 13th St, San Francisco, CA 94016" +245109,Flatscreen TV,1,300,08/17/19 23:24,"580 11th St, San Francisco, CA 94016" +245110,34in Ultrawide Monitor,1,379.99,08/09/19 08:53,"543 4th St, San Francisco, CA 94016" +245111,USB-C Charging Cable,1,11.95,08/20/19 00:59,"216 5th St, Los Angeles, CA 90001" +245112,34in Ultrawide Monitor,1,379.99,08/19/19 12:34,"310 Meadow St, Dallas, TX 75001" +245113,20in Monitor,1,109.99,08/06/19 18:44,"451 Highland St, Boston, MA 02215" +245114,AAA Batteries (4-pack),2,2.99,08/19/19 13:26,"562 Walnut St, Atlanta, GA 30301" +245115,Apple Airpods Headphones,1,150,08/16/19 13:26,"584 6th St, San Francisco, CA 94016" +245116,20in Monitor,1,109.99,08/10/19 16:11,"141 Sunset St, San Francisco, CA 94016" +245117,USB-C Charging Cable,1,11.95,08/23/19 11:45,"886 10th St, Seattle, WA 98101" +245118,AA Batteries (4-pack),1,3.84,08/07/19 22:48,"436 Park St, Boston, MA 02215" +245119,Lightning Charging Cable,1,14.95,08/24/19 11:29,"241 Lincoln St, Austin, TX 73301" +245120,AAA Batteries (4-pack),1,2.99,08/13/19 17:10,"221 11th St, Boston, MA 02215" +245121,AA Batteries (4-pack),1,3.84,08/23/19 19:27,"558 Willow St, Dallas, TX 75001" +245122,Apple Airpods Headphones,1,150,08/15/19 19:30,"37 7th St, Boston, MA 02215" +245123,AAA Batteries (4-pack),1,2.99,08/02/19 18:23,"231 Spruce St, San Francisco, CA 94016" +245124,USB-C Charging Cable,1,11.95,08/26/19 20:51,"201 10th St, Seattle, WA 98101" +245125,Apple Airpods Headphones,1,150,08/18/19 13:25,"184 Maple St, New York City, NY 10001" +245126,USB-C Charging Cable,1,11.95,08/18/19 09:48,"124 12th St, Portland, ME 04101" +245127,USB-C Charging Cable,1,11.95,08/22/19 04:05,"10 Lake St, San Francisco, CA 94016" +245128,AAA Batteries (4-pack),2,2.99,08/18/19 12:34,"756 Cherry St, New York City, NY 10001" +245129,AAA Batteries (4-pack),2,2.99,08/20/19 13:54,"297 Maple St, Los Angeles, CA 90001" +245130,Wired Headphones,1,11.99,08/25/19 10:30,"747 Spruce St, Los Angeles, CA 90001" +245131,27in FHD Monitor,1,149.99,08/16/19 15:04,"489 Walnut St, Los Angeles, CA 90001" +245132,34in Ultrawide Monitor,1,379.99,08/30/19 12:32,"419 Lakeview St, San Francisco, CA 94016" +245133,Lightning Charging Cable,1,14.95,08/18/19 14:54,"932 River St, San Francisco, CA 94016" +245134,Wired Headphones,1,11.99,08/28/19 17:24,"149 Hill St, San Francisco, CA 94016" +245135,AA Batteries (4-pack),2,3.84,08/08/19 23:33,"391 Ridge St, San Francisco, CA 94016" +245136,AA Batteries (4-pack),1,3.84,08/13/19 18:45,"571 Lakeview St, Portland, OR 97035" +245137,AAA Batteries (4-pack),1,2.99,08/01/19 18:35,"527 14th St, San Francisco, CA 94016" +245138,Wired Headphones,1,11.99,08/21/19 13:46,"39 Jackson St, Dallas, TX 75001" +245139,Macbook Pro Laptop,1,1700,08/17/19 17:59,"755 Elm St, Seattle, WA 98101" +245140,AAA Batteries (4-pack),1,2.99,08/06/19 09:41,"675 West St, Los Angeles, CA 90001" +245141,Flatscreen TV,1,300,08/12/19 19:06,"989 Center St, Dallas, TX 75001" +245142,Wired Headphones,1,11.99,08/01/19 20:09,"779 Adams St, New York City, NY 10001" +245143,Google Phone,1,600,08/17/19 17:00,"844 Center St, Los Angeles, CA 90001" +245144,Lightning Charging Cable,1,14.95,08/30/19 11:44,"268 12th St, San Francisco, CA 94016" +245145,27in FHD Monitor,1,149.99,08/21/19 18:09,"696 Dogwood St, Austin, TX 73301" +245146,27in FHD Monitor,1,149.99,08/30/19 23:50,"377 Spruce St, Portland, OR 97035" +245147,27in FHD Monitor,1,149.99,08/16/19 17:07,"367 Adams St, San Francisco, CA 94016" +245148,iPhone,1,700,08/08/19 20:01,"170 7th St, Dallas, TX 75001" +245149,Flatscreen TV,1,300,08/21/19 21:50,"914 Johnson St, Atlanta, GA 30301" +245150,AAA Batteries (4-pack),1,2.99,08/23/19 17:02,"657 Maple St, Boston, MA 02215" +245151,Wired Headphones,1,11.99,08/16/19 19:06,"461 River St, San Francisco, CA 94016" +245152,Google Phone,1,600,08/14/19 16:44,"697 Cherry St, San Francisco, CA 94016" +245152,Bose SoundSport Headphones,1,99.99,08/14/19 16:44,"697 Cherry St, San Francisco, CA 94016" +245152,Wired Headphones,1,11.99,08/14/19 16:44,"697 Cherry St, San Francisco, CA 94016" +245153,Wired Headphones,1,11.99,08/15/19 17:55,"858 Hickory St, New York City, NY 10001" +245154,iPhone,1,700,08/12/19 17:20,"972 12th St, Boston, MA 02215" +245155,iPhone,1,700,08/10/19 17:16,"611 Adams St, New York City, NY 10001" +245155,Lightning Charging Cable,2,14.95,08/10/19 17:16,"611 Adams St, New York City, NY 10001" +245156,Lightning Charging Cable,1,14.95,08/11/19 07:24,"388 10th St, Austin, TX 73301" +245157,Bose SoundSport Headphones,1,99.99,08/27/19 22:32,"425 West St, Los Angeles, CA 90001" +245158,Vareebadd Phone,1,400,08/03/19 14:35,"101 Cedar St, San Francisco, CA 94016" +245159,Bose SoundSport Headphones,1,99.99,08/23/19 14:04,"844 Meadow St, Dallas, TX 75001" +245160,34in Ultrawide Monitor,1,379.99,08/25/19 13:19,"810 11th St, Austin, TX 73301" +245161,AA Batteries (4-pack),2,3.84,08/13/19 19:01,"815 South St, Austin, TX 73301" +245162,AAA Batteries (4-pack),1,2.99,08/15/19 04:03,"52 Meadow St, Los Angeles, CA 90001" +245163,AA Batteries (4-pack),1,3.84,08/29/19 19:29,"859 Forest St, Seattle, WA 98101" +245164,Wired Headphones,1,11.99,08/19/19 14:53,"841 11th St, San Francisco, CA 94016" +245165,Apple Airpods Headphones,1,150,08/22/19 15:56,"329 Hickory St, Atlanta, GA 30301" +245166,USB-C Charging Cable,1,11.95,08/01/19 18:56,"434 Jefferson St, New York City, NY 10001" +245167,AAA Batteries (4-pack),1,2.99,08/24/19 20:25,"440 Johnson St, Seattle, WA 98101" +245168,Google Phone,1,600,08/24/19 01:51,"546 Lake St, New York City, NY 10001" +245169,27in FHD Monitor,1,149.99,08/14/19 21:27,"962 Elm St, San Francisco, CA 94016" +245170,AAA Batteries (4-pack),1,2.99,08/21/19 16:18,"512 Walnut St, Boston, MA 02215" +245171,27in FHD Monitor,1,149.99,08/29/19 20:45,"492 Jackson St, San Francisco, CA 94016" +245172,USB-C Charging Cable,2,11.95,08/31/19 21:26,"685 Madison St, Seattle, WA 98101" +245173,Google Phone,1,600,08/04/19 11:58,"164 1st St, Los Angeles, CA 90001" +245173,Wired Headphones,1,11.99,08/04/19 11:58,"164 1st St, Los Angeles, CA 90001" +245174,iPhone,1,700,08/19/19 14:45,"226 12th St, New York City, NY 10001" +245175,Lightning Charging Cable,1,14.95,08/12/19 11:29,"754 Hill St, Portland, OR 97035" +245176,Bose SoundSport Headphones,1,99.99,09/01/19 00:19,"522 Park St, San Francisco, CA 94016" +245177,Apple Airpods Headphones,1,150,08/26/19 19:51,"805 Hickory St, Los Angeles, CA 90001" +245178,27in 4K Gaming Monitor,1,389.99,08/15/19 07:42,"185 Lakeview St, San Francisco, CA 94016" +245179,USB-C Charging Cable,1,11.95,08/25/19 16:53,"756 13th St, Los Angeles, CA 90001" +245180,USB-C Charging Cable,1,11.95,08/12/19 13:11,"242 13th St, Los Angeles, CA 90001" +245181,Wired Headphones,1,11.99,08/09/19 20:30,"635 11th St, Boston, MA 02215" +245182,27in FHD Monitor,1,149.99,08/25/19 10:11,"437 Sunset St, Dallas, TX 75001" +245183,USB-C Charging Cable,1,11.95,08/28/19 13:28,"635 10th St, Dallas, TX 75001" +245184,Lightning Charging Cable,1,14.95,08/04/19 00:35,"217 Maple St, Portland, OR 97035" +245185,AA Batteries (4-pack),2,3.84,08/25/19 09:23,"673 10th St, Boston, MA 02215" +245186,Apple Airpods Headphones,1,150,08/12/19 21:37,"294 Maple St, Los Angeles, CA 90001" +245187,27in 4K Gaming Monitor,1,389.99,08/17/19 13:54,"672 Highland St, New York City, NY 10001" +245188,Lightning Charging Cable,1,14.95,08/08/19 15:19,"153 North St, Los Angeles, CA 90001" +245189,AA Batteries (4-pack),1,3.84,08/24/19 15:26,"827 Elm St, Los Angeles, CA 90001" +245190,AA Batteries (4-pack),1,3.84,08/11/19 19:27,"629 Wilson St, New York City, NY 10001" +245191,AAA Batteries (4-pack),1,2.99,08/04/19 13:20,"225 Lakeview St, New York City, NY 10001" +245192,USB-C Charging Cable,1,11.95,08/22/19 16:22,"489 11th St, Atlanta, GA 30301" +245193,Wired Headphones,1,11.99,08/23/19 14:41,"901 Lakeview St, San Francisco, CA 94016" +245194,Lightning Charging Cable,1,14.95,08/05/19 02:38,"208 9th St, San Francisco, CA 94016" +245195,Wired Headphones,1,11.99,08/29/19 19:52,"5 South St, Boston, MA 02215" +245196,AA Batteries (4-pack),1,3.84,08/17/19 00:20,"560 South St, San Francisco, CA 94016" +245197,AA Batteries (4-pack),1,3.84,08/12/19 09:42,"708 Cherry St, San Francisco, CA 94016" +245198,Lightning Charging Cable,1,14.95,08/08/19 21:46,"141 Lake St, Boston, MA 02215" +245199,Apple Airpods Headphones,1,150,08/10/19 19:34,"709 14th St, San Francisco, CA 94016" +245200,Wired Headphones,2,11.99,08/03/19 06:39,"191 Cedar St, San Francisco, CA 94016" +245201,Apple Airpods Headphones,1,150,08/03/19 01:06,"706 Spruce St, Dallas, TX 75001" +245202,Lightning Charging Cable,2,14.95,08/23/19 20:53,"605 Main St, New York City, NY 10001" +245203,AAA Batteries (4-pack),1,2.99,08/05/19 18:44,"404 Maple St, Boston, MA 02215" +245204,Lightning Charging Cable,1,14.95,08/28/19 18:48,"729 Lake St, Seattle, WA 98101" +245205,ThinkPad Laptop,1,999.99,08/27/19 21:20,"38 2nd St, Portland, OR 97035" +245206,USB-C Charging Cable,1,11.95,08/28/19 16:02,"163 Park St, Boston, MA 02215" +245207,34in Ultrawide Monitor,1,379.99,08/14/19 19:50,"605 Willow St, San Francisco, CA 94016" +245208,iPhone,1,700,08/03/19 16:18,"149 Washington St, Seattle, WA 98101" +245209,USB-C Charging Cable,1,11.95,08/30/19 19:49,"169 Hickory St, Los Angeles, CA 90001" +245210,AAA Batteries (4-pack),2,2.99,08/19/19 11:48,"567 River St, New York City, NY 10001" +245211,AAA Batteries (4-pack),1,2.99,08/21/19 16:43,"688 Park St, Boston, MA 02215" +245212,USB-C Charging Cable,1,11.95,08/13/19 09:27,"886 River St, Los Angeles, CA 90001" +245213,Bose SoundSport Headphones,1,99.99,08/05/19 19:49,"326 10th St, San Francisco, CA 94016" +245214,AAA Batteries (4-pack),1,2.99,08/08/19 19:19,"698 Lakeview St, New York City, NY 10001" +245215,LG Washing Machine,1,600.0,08/16/19 14:28,"115 Forest St, San Francisco, CA 94016" +245216,USB-C Charging Cable,1,11.95,08/16/19 20:21,"968 Meadow St, Los Angeles, CA 90001" +245217,Flatscreen TV,1,300,08/22/19 14:16,"603 1st St, Los Angeles, CA 90001" +245218,LG Dryer,1,600.0,08/10/19 02:40,"611 Main St, San Francisco, CA 94016" +245219,Lightning Charging Cable,1,14.95,08/26/19 21:28,"781 Pine St, Boston, MA 02215" +245220,Bose SoundSport Headphones,1,99.99,08/27/19 13:55,"683 Main St, New York City, NY 10001" +245221,Wired Headphones,1,11.99,08/05/19 23:55,"872 Wilson St, Portland, OR 97035" +245222,Wired Headphones,1,11.99,08/10/19 10:41,"342 Dogwood St, Los Angeles, CA 90001" +245223,Wired Headphones,1,11.99,08/04/19 17:43,"519 13th St, San Francisco, CA 94016" +245224,AA Batteries (4-pack),1,3.84,08/01/19 15:53,"449 Dogwood St, Boston, MA 02215" +245225,Lightning Charging Cable,1,14.95,08/07/19 09:27,"336 Forest St, Portland, OR 97035" +245226,27in FHD Monitor,1,149.99,08/12/19 09:44,"418 Meadow St, Los Angeles, CA 90001" +245227,USB-C Charging Cable,2,11.95,08/27/19 20:39,"102 14th St, Dallas, TX 75001" +245228,27in FHD Monitor,1,149.99,08/16/19 21:25,"579 River St, Los Angeles, CA 90001" +245229,Apple Airpods Headphones,1,150,08/24/19 21:06,"776 7th St, Los Angeles, CA 90001" +245230,Apple Airpods Headphones,1,150,08/21/19 22:49,"347 Forest St, San Francisco, CA 94016" +245231,AA Batteries (4-pack),1,3.84,08/30/19 06:58,"962 7th St, Austin, TX 73301" +245232,USB-C Charging Cable,1,11.95,08/10/19 17:43,"782 Cedar St, Portland, OR 97035" +245233,Apple Airpods Headphones,1,150,08/05/19 21:26,"945 Dogwood St, Austin, TX 73301" +245234,Bose SoundSport Headphones,1,99.99,08/16/19 10:05,"808 Sunset St, San Francisco, CA 94016" +245235,Lightning Charging Cable,1,14.95,08/16/19 21:14,"808 Willow St, San Francisco, CA 94016" +245236,iPhone,1,700,08/03/19 16:59,"660 Highland St, Dallas, TX 75001" +245236,Lightning Charging Cable,1,14.95,08/03/19 16:59,"660 Highland St, Dallas, TX 75001" +245237,Lightning Charging Cable,1,14.95,08/31/19 14:40,"850 Lincoln St, Portland, ME 04101" +245238,34in Ultrawide Monitor,1,379.99,08/01/19 17:49,"134 13th St, Boston, MA 02215" +245239,Bose SoundSport Headphones,1,99.99,08/26/19 08:23,"31 8th St, New York City, NY 10001" +245240,USB-C Charging Cable,1,11.95,08/15/19 16:51,"25 Cedar St, Dallas, TX 75001" +245241,AA Batteries (4-pack),1,3.84,08/13/19 23:22,"625 Pine St, Boston, MA 02215" +245242,AAA Batteries (4-pack),1,2.99,08/11/19 19:42,"341 13th St, Boston, MA 02215" +245243,Lightning Charging Cable,1,14.95,08/05/19 00:27,"371 Jackson St, Los Angeles, CA 90001" +245244,USB-C Charging Cable,1,11.95,08/07/19 14:24,"226 13th St, Seattle, WA 98101" +245245,AAA Batteries (4-pack),1,2.99,08/26/19 19:42,"24 Jefferson St, San Francisco, CA 94016" +245246,AA Batteries (4-pack),1,3.84,08/04/19 07:23,"335 Spruce St, San Francisco, CA 94016" +245247,Bose SoundSport Headphones,1,99.99,08/06/19 23:16,"537 Maple St, Los Angeles, CA 90001" +245248,Macbook Pro Laptop,1,1700,08/19/19 14:33,"318 Jefferson St, Seattle, WA 98101" +245249,Apple Airpods Headphones,1,150,08/15/19 09:26,"443 Sunset St, Boston, MA 02215" +245250,27in FHD Monitor,1,149.99,08/12/19 10:12,"162 Spruce St, Dallas, TX 75001" +245251,20in Monitor,1,109.99,08/15/19 01:18,"228 Maple St, Dallas, TX 75001" +245252,USB-C Charging Cable,1,11.95,08/15/19 08:31,"230 North St, San Francisco, CA 94016" +245253,Bose SoundSport Headphones,1,99.99,08/23/19 17:00,"739 Wilson St, New York City, NY 10001" +245254,Apple Airpods Headphones,1,150,08/05/19 12:02,"707 11th St, Los Angeles, CA 90001" +245255,AA Batteries (4-pack),1,3.84,08/15/19 16:48,"212 4th St, Dallas, TX 75001" +245256,20in Monitor,1,109.99,08/17/19 22:42,"378 13th St, Los Angeles, CA 90001" +245257,AAA Batteries (4-pack),2,2.99,08/07/19 16:08,"322 Church St, San Francisco, CA 94016" +245258,Lightning Charging Cable,1,14.95,08/11/19 00:53,"460 Sunset St, San Francisco, CA 94016" +245259,USB-C Charging Cable,1,11.95,08/30/19 09:28,"29 Park St, Boston, MA 02215" +245260,34in Ultrawide Monitor,1,379.99,08/21/19 17:35,"769 Pine St, Atlanta, GA 30301" +245261,AA Batteries (4-pack),1,3.84,08/24/19 23:41,"525 Lake St, San Francisco, CA 94016" +245262,Lightning Charging Cable,1,14.95,08/24/19 18:12,"910 Main St, Boston, MA 02215" +245263,AAA Batteries (4-pack),1,2.99,08/20/19 09:05,"247 Jackson St, Boston, MA 02215" +245264,AAA Batteries (4-pack),1,2.99,08/24/19 08:22,"340 Madison St, San Francisco, CA 94016" +245264,Apple Airpods Headphones,1,150,08/24/19 08:22,"340 Madison St, San Francisco, CA 94016" +245265,Lightning Charging Cable,1,14.95,08/25/19 23:17,"539 5th St, Dallas, TX 75001" +245266,Bose SoundSport Headphones,1,99.99,08/09/19 11:37,"612 11th St, Los Angeles, CA 90001" +245267,Lightning Charging Cable,1,14.95,08/17/19 19:57,"943 Park St, Portland, OR 97035" +245268,Lightning Charging Cable,1,14.95,08/03/19 20:21,"804 Willow St, New York City, NY 10001" +245269,Lightning Charging Cable,1,14.95,08/04/19 09:05,"896 4th St, Austin, TX 73301" +245270,AAA Batteries (4-pack),1,2.99,08/14/19 14:50,"375 Pine St, Boston, MA 02215" +245271,20in Monitor,1,109.99,08/16/19 22:46,"280 Pine St, Seattle, WA 98101" +245272,USB-C Charging Cable,1,11.95,08/08/19 09:55,"423 Main St, San Francisco, CA 94016" +245273,AA Batteries (4-pack),2,3.84,08/31/19 23:35,"273 8th St, San Francisco, CA 94016" +245274,Apple Airpods Headphones,1,150,08/03/19 21:14,"135 Cedar St, San Francisco, CA 94016" +245275,Macbook Pro Laptop,1,1700,08/06/19 19:04,"44 8th St, Portland, OR 97035" +245276,AA Batteries (4-pack),1,3.84,08/24/19 04:15,"184 Center St, Los Angeles, CA 90001" +245277,Wired Headphones,1,11.99,08/31/19 23:13,"78 8th St, New York City, NY 10001" +245278,AAA Batteries (4-pack),3,2.99,08/10/19 14:23,"868 Chestnut St, Atlanta, GA 30301" +245279,AAA Batteries (4-pack),3,2.99,08/08/19 12:28,"900 Church St, Portland, OR 97035" +245280,AAA Batteries (4-pack),1,2.99,08/31/19 09:13,"411 Chestnut St, Boston, MA 02215" +245281,AAA Batteries (4-pack),1,2.99,08/26/19 21:20,"376 Washington St, San Francisco, CA 94016" +245282,Lightning Charging Cable,1,14.95,08/27/19 18:47,"288 Center St, Seattle, WA 98101" +245283,Flatscreen TV,1,300,08/12/19 10:18,"426 9th St, Boston, MA 02215" +245284,AA Batteries (4-pack),1,3.84,08/09/19 06:51,"806 12th St, New York City, NY 10001" +245285,Wired Headphones,1,11.99,08/21/19 16:38,"985 Elm St, Portland, OR 97035" +245286,34in Ultrawide Monitor,2,379.99,08/04/19 10:16,"959 Madison St, San Francisco, CA 94016" +245287,Lightning Charging Cable,1,14.95,08/31/19 20:20,"344 12th St, Seattle, WA 98101" +245288,Lightning Charging Cable,1,14.95,08/15/19 13:24,"66 Hickory St, Los Angeles, CA 90001" +245289,USB-C Charging Cable,1,11.95,08/07/19 09:18,"395 North St, Seattle, WA 98101" +245290,27in FHD Monitor,1,149.99,08/12/19 14:20,"283 Jackson St, San Francisco, CA 94016" +245291,AA Batteries (4-pack),1,3.84,08/10/19 20:04,"574 Maple St, Seattle, WA 98101" +245292,Wired Headphones,1,11.99,08/06/19 18:50,"608 10th St, Seattle, WA 98101" +245293,Lightning Charging Cable,1,14.95,08/26/19 21:30,"697 Madison St, Dallas, TX 75001" +245294,Bose SoundSport Headphones,1,99.99,08/02/19 22:37,"354 8th St, San Francisco, CA 94016" +245295,LG Washing Machine,1,600.0,08/03/19 18:48,"691 4th St, Seattle, WA 98101" +245296,AAA Batteries (4-pack),2,2.99,08/09/19 19:49,"426 Lincoln St, San Francisco, CA 94016" +245297,34in Ultrawide Monitor,1,379.99,08/14/19 13:16,"340 Lincoln St, Seattle, WA 98101" +245298,Flatscreen TV,1,300,08/02/19 12:11,"443 Center St, New York City, NY 10001" +245299,AA Batteries (4-pack),1,3.84,08/03/19 06:29,"3 Sunset St, Atlanta, GA 30301" +245300,27in 4K Gaming Monitor,1,389.99,08/01/19 09:24,"438 Dogwood St, Seattle, WA 98101" +245301,USB-C Charging Cable,1,11.95,08/19/19 18:52,"866 North St, Atlanta, GA 30301" +245302,Lightning Charging Cable,1,14.95,08/17/19 10:47,"800 Forest St, Boston, MA 02215" +245303,AA Batteries (4-pack),1,3.84,08/28/19 07:20,"605 4th St, Los Angeles, CA 90001" +245304,iPhone,1,700,08/19/19 15:29,"142 2nd St, San Francisco, CA 94016" +245305,Wired Headphones,1,11.99,08/01/19 15:45,"107 12th St, Boston, MA 02215" +245306,Wired Headphones,1,11.99,08/11/19 18:03,"80 Highland St, San Francisco, CA 94016" +245307,34in Ultrawide Monitor,1,379.99,08/30/19 22:24,"575 Cherry St, Los Angeles, CA 90001" +245308,Bose SoundSport Headphones,1,99.99,08/23/19 09:15,"57 Elm St, San Francisco, CA 94016" +245309,AA Batteries (4-pack),1,3.84,08/29/19 21:53,"387 6th St, Seattle, WA 98101" +245310,34in Ultrawide Monitor,1,379.99,08/24/19 10:30,"2 Washington St, Atlanta, GA 30301" +245311,USB-C Charging Cable,1,11.95,08/21/19 09:58,"145 Elm St, Austin, TX 73301" +245312,AA Batteries (4-pack),2,3.84,08/09/19 23:26,"306 Maple St, Boston, MA 02215" +245313,Flatscreen TV,1,300,08/28/19 17:45,"528 5th St, New York City, NY 10001" +245314,AA Batteries (4-pack),1,3.84,08/03/19 16:21,"689 1st St, San Francisco, CA 94016" +245315,AAA Batteries (4-pack),1,2.99,08/10/19 12:33,"194 West St, Seattle, WA 98101" +245316,Vareebadd Phone,1,400,08/05/19 10:12,"845 12th St, Los Angeles, CA 90001" +245316,USB-C Charging Cable,1,11.95,08/05/19 10:12,"845 12th St, Los Angeles, CA 90001" +245316,Wired Headphones,1,11.99,08/05/19 10:12,"845 12th St, Los Angeles, CA 90001" +245317,Wired Headphones,1,11.99,08/22/19 22:53,"3 4th St, Los Angeles, CA 90001" +245318,AAA Batteries (4-pack),2,2.99,08/06/19 16:28,"840 2nd St, Seattle, WA 98101" +245319,27in FHD Monitor,1,149.99,08/09/19 12:23,"450 Washington St, Los Angeles, CA 90001" +245319,USB-C Charging Cable,1,11.95,08/09/19 12:23,"450 Washington St, Los Angeles, CA 90001" +245320,34in Ultrawide Monitor,1,379.99,08/14/19 19:13,"854 Madison St, San Francisco, CA 94016" +245321,ThinkPad Laptop,1,999.99,08/28/19 21:47,"847 12th St, Boston, MA 02215" +245322,USB-C Charging Cable,1,11.95,08/06/19 21:48,"273 Adams St, Seattle, WA 98101" +245323,Apple Airpods Headphones,1,150,08/26/19 20:17,"338 Lake St, Los Angeles, CA 90001" +245324,Wired Headphones,1,11.99,08/09/19 12:47,"636 7th St, Seattle, WA 98101" +245325,Apple Airpods Headphones,1,150,08/31/19 12:59,"561 Hickory St, Portland, ME 04101" +245326,Apple Airpods Headphones,1,150,08/13/19 07:00,"337 Forest St, San Francisco, CA 94016" +245327,Apple Airpods Headphones,1,150,08/07/19 08:17,"504 Willow St, Los Angeles, CA 90001" +245328,Apple Airpods Headphones,1,150,08/15/19 11:41,"617 Washington St, Dallas, TX 75001" +245329,Apple Airpods Headphones,1,150,08/13/19 10:51,"426 Adams St, Portland, OR 97035" +245330,Lightning Charging Cable,1,14.95,08/08/19 07:58,"791 Washington St, San Francisco, CA 94016" +245331,USB-C Charging Cable,1,11.95,08/06/19 23:53,"919 8th St, Austin, TX 73301" +245332,Macbook Pro Laptop,1,1700,08/13/19 19:54,"328 Center St, New York City, NY 10001" +245333,Apple Airpods Headphones,1,150,08/31/19 23:43,"700 Chestnut St, Los Angeles, CA 90001" +245334,27in FHD Monitor,1,149.99,08/27/19 11:22,"260 River St, San Francisco, CA 94016" +245335,AAA Batteries (4-pack),1,2.99,08/26/19 21:32,"375 Ridge St, Seattle, WA 98101" +245336,Apple Airpods Headphones,1,150,08/01/19 11:37,"278 West St, Austin, TX 73301" +245337,Wired Headphones,1,11.99,08/08/19 23:37,"490 Willow St, Los Angeles, CA 90001" +245338,Apple Airpods Headphones,1,150,08/11/19 10:51,"599 Cedar St, Portland, ME 04101" +245339,Apple Airpods Headphones,1,150,08/07/19 20:25,"648 8th St, Atlanta, GA 30301" +245340,Bose SoundSport Headphones,1,99.99,08/14/19 17:50,"43 8th St, Austin, TX 73301" +245341,Vareebadd Phone,1,400,08/27/19 13:21,"458 14th St, Austin, TX 73301" +245342,AAA Batteries (4-pack),1,2.99,08/09/19 10:09,"461 Spruce St, Los Angeles, CA 90001" +245343,Bose SoundSport Headphones,1,99.99,08/23/19 11:00,"679 Walnut St, Portland, OR 97035" +245344,Flatscreen TV,1,300,08/15/19 17:22,"119 9th St, Seattle, WA 98101" +245345,AA Batteries (4-pack),3,3.84,08/05/19 23:06,"837 Jefferson St, Atlanta, GA 30301" +245346,27in 4K Gaming Monitor,1,389.99,08/25/19 19:09,"28 Lake St, New York City, NY 10001" +245347,Lightning Charging Cable,1,14.95,08/23/19 16:11,"613 Lake St, Los Angeles, CA 90001" +245348,Apple Airpods Headphones,1,150,08/14/19 16:08,"592 2nd St, Los Angeles, CA 90001" +245349,AA Batteries (4-pack),1,3.84,08/12/19 12:06,"187 12th St, Atlanta, GA 30301" +245350,Bose SoundSport Headphones,1,99.99,08/05/19 06:48,"804 North St, Portland, OR 97035" +245351,27in 4K Gaming Monitor,1,389.99,08/31/19 15:58,"871 Sunset St, Los Angeles, CA 90001" +245352,27in FHD Monitor,1,149.99,08/05/19 10:04,"80 Lake St, Boston, MA 02215" +245353,Macbook Pro Laptop,1,1700,08/09/19 17:54,"101 Johnson St, Atlanta, GA 30301" +245354,AAA Batteries (4-pack),1,2.99,08/15/19 22:56,"18 Washington St, San Francisco, CA 94016" +245355,AA Batteries (4-pack),1,3.84,08/12/19 18:40,"379 Highland St, Portland, ME 04101" +245356,Apple Airpods Headphones,1,150,08/13/19 13:45,"997 Adams St, San Francisco, CA 94016" +245357,Apple Airpods Headphones,1,150,08/14/19 15:56,"752 11th St, Los Angeles, CA 90001" +245358,Bose SoundSport Headphones,1,99.99,08/04/19 10:52,"239 Meadow St, Los Angeles, CA 90001" +245359,27in FHD Monitor,1,149.99,08/27/19 09:47,"63 14th St, Los Angeles, CA 90001" +245360,Apple Airpods Headphones,1,150,08/09/19 18:11,"25 Dogwood St, Los Angeles, CA 90001" +245361,Macbook Pro Laptop,1,1700,08/13/19 16:33,"502 11th St, New York City, NY 10001" +245362,USB-C Charging Cable,1,11.95,08/31/19 18:11,"264 River St, Boston, MA 02215" +245363,Flatscreen TV,1,300,08/17/19 18:09,"102 Highland St, Los Angeles, CA 90001" +245364,Lightning Charging Cable,1,14.95,08/14/19 19:52,"564 11th St, Boston, MA 02215" +245365,USB-C Charging Cable,1,11.95,08/13/19 23:54,"785 2nd St, Boston, MA 02215" +245366,27in 4K Gaming Monitor,1,389.99,08/19/19 19:02,"75 North St, Austin, TX 73301" +245367,USB-C Charging Cable,1,11.95,08/15/19 19:54,"104 13th St, New York City, NY 10001" +245368,AA Batteries (4-pack),1,3.84,08/09/19 08:43,"201 Cedar St, Austin, TX 73301" +245369,20in Monitor,1,109.99,08/14/19 14:08,"821 Pine St, Austin, TX 73301" +245370,Bose SoundSport Headphones,1,99.99,08/18/19 10:31,"369 4th St, New York City, NY 10001" +245371,Bose SoundSport Headphones,1,99.99,08/06/19 11:12,"309 5th St, San Francisco, CA 94016" +245372,AA Batteries (4-pack),1,3.84,08/21/19 20:09,"914 Meadow St, San Francisco, CA 94016" +245373,Vareebadd Phone,1,400,08/27/19 12:30,"17 Jefferson St, New York City, NY 10001" +245374,USB-C Charging Cable,1,11.95,08/05/19 19:15,"663 Main St, New York City, NY 10001" +245375,Wired Headphones,1,11.99,08/19/19 12:41,"191 Sunset St, Los Angeles, CA 90001" +245376,Lightning Charging Cable,1,14.95,08/16/19 22:15,"894 Meadow St, San Francisco, CA 94016" +245377,27in 4K Gaming Monitor,1,389.99,08/07/19 11:17,"127 10th St, Seattle, WA 98101" +245378,Apple Airpods Headphones,1,150,08/17/19 17:49,"797 6th St, Los Angeles, CA 90001" +245379,USB-C Charging Cable,1,11.95,08/29/19 12:00,"712 6th St, Dallas, TX 75001" +245380,20in Monitor,1,109.99,08/20/19 22:20,"524 5th St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +245381,Lightning Charging Cable,1,14.95,08/08/19 20:52,"286 Walnut St, Portland, OR 97035" +245382,Flatscreen TV,1,300,08/10/19 09:23,"243 Wilson St, San Francisco, CA 94016" +245383,ThinkPad Laptop,1,999.99,08/25/19 18:47,"535 5th St, Boston, MA 02215" +245384,Apple Airpods Headphones,1,150,08/12/19 23:19,"697 Willow St, Los Angeles, CA 90001" +245385,34in Ultrawide Monitor,1,379.99,08/29/19 23:03,"320 9th St, New York City, NY 10001" +245386,Bose SoundSport Headphones,1,99.99,08/15/19 08:23,"976 Dogwood St, Austin, TX 73301" +245387,Wired Headphones,2,11.99,08/10/19 19:53,"22 Cedar St, San Francisco, CA 94016" +245388,Apple Airpods Headphones,1,150,08/09/19 12:08,"107 Lakeview St, Seattle, WA 98101" +245389,Lightning Charging Cable,1,14.95,08/19/19 18:16,"299 Hickory St, Los Angeles, CA 90001" +245390,AA Batteries (4-pack),1,3.84,08/30/19 16:38,"802 5th St, San Francisco, CA 94016" +245391,27in FHD Monitor,1,149.99,08/03/19 10:15,"720 6th St, San Francisco, CA 94016" +245392,AAA Batteries (4-pack),1,2.99,08/03/19 14:44,"879 Lake St, Austin, TX 73301" +245393,USB-C Charging Cable,1,11.95,08/23/19 08:32,"881 7th St, Austin, TX 73301" +245394,Wired Headphones,1,11.99,08/22/19 19:55,"826 5th St, San Francisco, CA 94016" +245395,27in 4K Gaming Monitor,1,389.99,08/25/19 14:56,"676 10th St, Boston, MA 02215" +245396,AAA Batteries (4-pack),1,2.99,08/22/19 19:06,"990 River St, Austin, TX 73301" +245397,Wired Headphones,1,11.99,08/29/19 20:58,"337 2nd St, Los Angeles, CA 90001" +245398,iPhone,1,700,08/23/19 16:24,"606 Park St, Austin, TX 73301" +245398,Wired Headphones,1,11.99,08/23/19 16:24,"606 Park St, Austin, TX 73301" +245399,AAA Batteries (4-pack),1,2.99,08/05/19 16:15,"909 Hill St, New York City, NY 10001" +245400,Lightning Charging Cable,1,14.95,08/12/19 18:48,"744 7th St, San Francisco, CA 94016" +245401,Apple Airpods Headphones,1,150,08/31/19 16:51,"490 Park St, San Francisco, CA 94016" +245402,Wired Headphones,1,11.99,08/30/19 20:10,"190 Highland St, Atlanta, GA 30301" +245403,Bose SoundSport Headphones,1,99.99,08/28/19 21:05,"510 Willow St, San Francisco, CA 94016" +245404,34in Ultrawide Monitor,1,379.99,08/20/19 09:11,"308 West St, Austin, TX 73301" +245405,27in FHD Monitor,1,149.99,08/26/19 01:28,"656 Elm St, Portland, ME 04101" +245406,Google Phone,1,600,08/24/19 06:41,"487 Highland St, San Francisco, CA 94016" +245407,Wired Headphones,1,11.99,08/19/19 13:31,"589 Park St, New York City, NY 10001" +245408,Lightning Charging Cable,1,14.95,08/17/19 17:33,"775 Church St, Boston, MA 02215" +245409,USB-C Charging Cable,2,11.95,08/17/19 09:48,"493 Cedar St, Los Angeles, CA 90001" +245410,Lightning Charging Cable,2,14.95,08/20/19 11:41,"892 Dogwood St, Dallas, TX 75001" +245411,Wired Headphones,1,11.99,08/04/19 13:06,"909 Washington St, San Francisco, CA 94016" +245412,Apple Airpods Headphones,1,150,08/15/19 11:16,"367 13th St, San Francisco, CA 94016" +245413,Lightning Charging Cable,1,14.95,08/27/19 20:36,"887 Park St, San Francisco, CA 94016" +245414,Bose SoundSport Headphones,1,99.99,08/12/19 10:33,"565 Dogwood St, Austin, TX 73301" +,,,,, +245415,Macbook Pro Laptop,1,1700,08/31/19 14:55,"719 Spruce St, New York City, NY 10001" +245416,AA Batteries (4-pack),1,3.84,08/24/19 20:12,"989 Walnut St, Seattle, WA 98101" +245417,Lightning Charging Cable,1,14.95,08/05/19 08:01,"175 Jefferson St, Boston, MA 02215" +245418,Apple Airpods Headphones,1,150,08/24/19 09:05,"413 Jefferson St, San Francisco, CA 94016" +245419,Apple Airpods Headphones,1,150,08/11/19 15:07,"126 Center St, New York City, NY 10001" +245420,Google Phone,1,600,08/31/19 18:08,"873 Madison St, Los Angeles, CA 90001" +245420,Wired Headphones,1,11.99,08/31/19 18:08,"873 Madison St, Los Angeles, CA 90001" +245421,AA Batteries (4-pack),1,3.84,08/15/19 20:04,"841 South St, San Francisco, CA 94016" +245422,iPhone,1,700,08/14/19 23:51,"417 Adams St, Los Angeles, CA 90001" +245422,Wired Headphones,1,11.99,08/14/19 23:51,"417 Adams St, Los Angeles, CA 90001" +245423,Apple Airpods Headphones,1,150,08/15/19 16:42,"250 Church St, Los Angeles, CA 90001" +245424,AAA Batteries (4-pack),1,2.99,08/16/19 12:13,"44 West St, Boston, MA 02215" +245425,Bose SoundSport Headphones,1,99.99,08/31/19 21:07,"947 Willow St, San Francisco, CA 94016" +245426,Google Phone,1,600,08/27/19 13:54,"95 2nd St, Boston, MA 02215" +245427,Apple Airpods Headphones,1,150,08/03/19 09:26,"254 Adams St, San Francisco, CA 94016" +245428,Bose SoundSport Headphones,1,99.99,08/12/19 21:08,"750 Meadow St, Atlanta, GA 30301" +245429,Macbook Pro Laptop,1,1700,08/07/19 19:32,"598 8th St, Portland, OR 97035" +245430,Apple Airpods Headphones,1,150,08/07/19 13:47,"22 Maple St, New York City, NY 10001" +245431,AAA Batteries (4-pack),1,2.99,08/25/19 00:32,"123 Adams St, Portland, OR 97035" +245432,AAA Batteries (4-pack),1,2.99,08/18/19 19:36,"857 Sunset St, Los Angeles, CA 90001" +245433,34in Ultrawide Monitor,1,379.99,08/05/19 11:58,"307 10th St, Los Angeles, CA 90001" +245434,Lightning Charging Cable,1,14.95,08/06/19 14:14,"213 Hickory St, Los Angeles, CA 90001" +245435,AAA Batteries (4-pack),1,2.99,08/12/19 10:26,"442 12th St, Los Angeles, CA 90001" +245436,iPhone,1,700,08/17/19 19:24,"376 8th St, Portland, OR 97035" +245437,AAA Batteries (4-pack),1,2.99,08/03/19 19:20,"111 Jefferson St, San Francisco, CA 94016" +245438,Apple Airpods Headphones,1,150,08/29/19 09:21,"808 13th St, Atlanta, GA 30301" +245438,Lightning Charging Cable,1,14.95,08/29/19 09:21,"808 13th St, Atlanta, GA 30301" +245439,Lightning Charging Cable,1,14.95,08/21/19 13:33,"571 Lincoln St, New York City, NY 10001" +245440,Bose SoundSport Headphones,1,99.99,08/10/19 06:07,"542 12th St, Dallas, TX 75001" +245441,AA Batteries (4-pack),1,3.84,08/31/19 23:53,"685 Madison St, Los Angeles, CA 90001" +245442,Lightning Charging Cable,1,14.95,08/15/19 19:43,"760 Washington St, Los Angeles, CA 90001" +245443,AAA Batteries (4-pack),2,2.99,08/28/19 14:49,"575 Highland St, New York City, NY 10001" +245444,AAA Batteries (4-pack),1,2.99,08/20/19 15:05,"394 Highland St, Portland, OR 97035" +245445,Apple Airpods Headphones,1,150,08/21/19 12:51,"597 Dogwood St, Los Angeles, CA 90001" +245446,Apple Airpods Headphones,1,150,08/28/19 23:33,"759 4th St, Portland, OR 97035" +245447,Apple Airpods Headphones,1,150,08/01/19 11:29,"716 7th St, San Francisco, CA 94016" +245448,USB-C Charging Cable,1,11.95,08/09/19 19:40,"656 Chestnut St, Atlanta, GA 30301" +245449,AAA Batteries (4-pack),1,2.99,08/01/19 23:45,"240 Madison St, Seattle, WA 98101" +245450,USB-C Charging Cable,1,11.95,08/25/19 21:01,"376 South St, San Francisco, CA 94016" +245451,AAA Batteries (4-pack),1,2.99,08/02/19 06:34,"753 Center St, Atlanta, GA 30301" +245452,USB-C Charging Cable,1,11.95,08/23/19 21:02,"608 Ridge St, Portland, OR 97035" +245453,34in Ultrawide Monitor,1,379.99,08/18/19 12:48,"546 Jackson St, Atlanta, GA 30301" +245454,Apple Airpods Headphones,1,150,08/25/19 19:30,"876 12th St, San Francisco, CA 94016" +245455,Lightning Charging Cable,1,14.95,08/13/19 19:41,"86 Ridge St, New York City, NY 10001" +245456,AAA Batteries (4-pack),1,2.99,08/20/19 11:04,"734 Highland St, Dallas, TX 75001" +245457,Apple Airpods Headphones,1,150,08/23/19 04:26,"859 Jackson St, Portland, OR 97035" +245458,Lightning Charging Cable,1,14.95,08/06/19 19:40,"414 River St, San Francisco, CA 94016" +245459,AA Batteries (4-pack),1,3.84,08/24/19 16:03,"656 10th St, Portland, OR 97035" +245460,Wired Headphones,1,11.99,08/12/19 08:49,"448 Elm St, Atlanta, GA 30301" +245460,AAA Batteries (4-pack),1,2.99,08/12/19 08:49,"448 Elm St, Atlanta, GA 30301" +245461,Wired Headphones,1,11.99,08/07/19 15:02,"468 Church St, Dallas, TX 75001" +245462,Wired Headphones,1,11.99,08/02/19 22:59,"217 Hickory St, Portland, OR 97035" +245463,USB-C Charging Cable,1,11.95,08/16/19 00:23,"340 10th St, Atlanta, GA 30301" +245464,USB-C Charging Cable,1,11.95,08/23/19 18:16,"487 Willow St, Boston, MA 02215" +245465,iPhone,1,700,08/10/19 06:37,"807 7th St, San Francisco, CA 94016" +245466,ThinkPad Laptop,1,999.99,08/20/19 18:22,"87 North St, San Francisco, CA 94016" +245467,AAA Batteries (4-pack),2,2.99,08/02/19 20:45,"198 5th St, New York City, NY 10001" +245468,Apple Airpods Headphones,1,150,08/29/19 15:40,"548 Lake St, New York City, NY 10001" +245469,AA Batteries (4-pack),2,3.84,08/10/19 00:44,"344 Madison St, Seattle, WA 98101" +245470,Flatscreen TV,1,300,08/18/19 19:00,"744 Spruce St, Los Angeles, CA 90001" +245471,ThinkPad Laptop,1,999.99,08/24/19 09:46,"557 Hickory St, New York City, NY 10001" +245472,AAA Batteries (4-pack),1,2.99,08/14/19 11:52,"935 Sunset St, San Francisco, CA 94016" +245473,Google Phone,1,600,08/08/19 15:16,"717 Hickory St, San Francisco, CA 94016" +245474,20in Monitor,1,109.99,08/28/19 16:06,"678 Cherry St, Seattle, WA 98101" +245475,USB-C Charging Cable,1,11.95,08/26/19 13:34,"893 Ridge St, Dallas, TX 75001" +245476,USB-C Charging Cable,1,11.95,08/17/19 00:02,"62 Jefferson St, Portland, ME 04101" +245477,27in 4K Gaming Monitor,1,389.99,08/11/19 00:30,"649 6th St, Portland, OR 97035" +245478,20in Monitor,1,109.99,08/14/19 19:13,"619 Elm St, Austin, TX 73301" +245479,Wired Headphones,1,11.99,08/02/19 21:45,"634 Cherry St, Portland, OR 97035" +245480,20in Monitor,1,109.99,08/23/19 09:41,"328 Forest St, Los Angeles, CA 90001" +245481,27in 4K Gaming Monitor,1,389.99,08/28/19 11:22,"783 Adams St, Seattle, WA 98101" +245482,iPhone,1,700,08/30/19 17:09,"663 10th St, Austin, TX 73301" +245483,27in FHD Monitor,1,149.99,08/27/19 21:28,"195 North St, Los Angeles, CA 90001" +245484,AAA Batteries (4-pack),1,2.99,08/19/19 16:01,"890 Hill St, Seattle, WA 98101" +245485,Lightning Charging Cable,1,14.95,08/12/19 21:00,"744 Meadow St, San Francisco, CA 94016" +245486,34in Ultrawide Monitor,1,379.99,08/20/19 13:31,"369 Cedar St, San Francisco, CA 94016" +245487,AA Batteries (4-pack),2,3.84,08/30/19 08:50,"668 Adams St, Portland, OR 97035" +245488,iPhone,1,700,08/14/19 18:42,"607 2nd St, San Francisco, CA 94016" +245489,iPhone,1,700,08/05/19 08:08,"472 Center St, Boston, MA 02215" +245490,27in 4K Gaming Monitor,1,389.99,08/15/19 17:07,"555 Jackson St, Boston, MA 02215" +245491,iPhone,1,700,08/12/19 22:26,"341 Sunset St, San Francisco, CA 94016" +245492,ThinkPad Laptop,1,999.99,08/04/19 14:29,"56 7th St, Los Angeles, CA 90001" +245493,27in FHD Monitor,1,149.99,08/03/19 17:49,"363 9th St, New York City, NY 10001" +245493,AA Batteries (4-pack),3,3.84,08/03/19 17:49,"363 9th St, New York City, NY 10001" +245494,34in Ultrawide Monitor,1,379.99,08/11/19 12:03,"360 Wilson St, Dallas, TX 75001" +245495,20in Monitor,1,109.99,08/15/19 09:58,"448 Adams St, Boston, MA 02215" +245496,AA Batteries (4-pack),1,3.84,08/16/19 21:33,"808 Meadow St, Portland, ME 04101" +245497,Apple Airpods Headphones,1,150,08/20/19 14:50,"686 4th St, Atlanta, GA 30301" +245498,27in FHD Monitor,1,149.99,08/14/19 22:29,"755 4th St, San Francisco, CA 94016" +245499,Vareebadd Phone,1,400,08/18/19 13:08,"372 Spruce St, Dallas, TX 75001" +245500,Lightning Charging Cable,1,14.95,08/31/19 09:42,"757 Madison St, Atlanta, GA 30301" +245501,USB-C Charging Cable,1,11.95,08/09/19 06:02,"776 Maple St, San Francisco, CA 94016" +245502,AAA Batteries (4-pack),1,2.99,08/13/19 20:39,"312 11th St, Boston, MA 02215" +245503,USB-C Charging Cable,1,11.95,08/11/19 05:04,"447 Lake St, New York City, NY 10001" +245504,Lightning Charging Cable,1,14.95,08/18/19 15:11,"689 9th St, San Francisco, CA 94016" +245505,Wired Headphones,1,11.99,08/17/19 19:42,"242 14th St, San Francisco, CA 94016" +245506,Apple Airpods Headphones,1,150,08/07/19 20:55,"420 South St, San Francisco, CA 94016" +245507,AA Batteries (4-pack),1,3.84,08/06/19 16:04,"605 Cherry St, Los Angeles, CA 90001" +245508,Bose SoundSport Headphones,1,99.99,08/20/19 22:36,"995 Spruce St, Austin, TX 73301" +245509,Wired Headphones,1,11.99,08/26/19 14:03,"470 7th St, Portland, OR 97035" +245510,AA Batteries (4-pack),1,3.84,08/23/19 18:23,"826 Forest St, New York City, NY 10001" +245511,Apple Airpods Headphones,1,150,08/07/19 13:48,"678 Sunset St, New York City, NY 10001" +245512,AAA Batteries (4-pack),1,2.99,08/09/19 19:02,"284 Main St, Portland, OR 97035" +245513,Apple Airpods Headphones,1,150,08/18/19 12:59,"509 Ridge St, Atlanta, GA 30301" +245514,Wired Headphones,2,11.99,08/24/19 00:36,"369 Cherry St, New York City, NY 10001" +245515,27in FHD Monitor,1,149.99,08/24/19 13:17,"702 North St, San Francisco, CA 94016" +245516,Wired Headphones,1,11.99,08/18/19 16:09,"773 Highland St, Boston, MA 02215" +245517,Bose SoundSport Headphones,1,99.99,08/24/19 18:52,"726 Center St, Seattle, WA 98101" +245518,Lightning Charging Cable,1,14.95,08/22/19 20:44,"252 Jackson St, Boston, MA 02215" +245519,AA Batteries (4-pack),1,3.84,08/31/19 12:08,"355 14th St, San Francisco, CA 94016" +245520,Wired Headphones,1,11.99,08/06/19 10:58,"186 Lake St, San Francisco, CA 94016" +245521,Wired Headphones,1,11.99,08/21/19 12:27,"49 1st St, San Francisco, CA 94016" +245522,AA Batteries (4-pack),1,3.84,08/17/19 00:11,"647 5th St, Seattle, WA 98101" +245523,Lightning Charging Cable,1,14.95,08/14/19 13:56,"304 Madison St, Seattle, WA 98101" +245524,Flatscreen TV,1,300,08/27/19 11:48,"920 Meadow St, New York City, NY 10001" +245525,Apple Airpods Headphones,1,150,08/05/19 14:08,"354 Pine St, New York City, NY 10001" +245526,Lightning Charging Cable,1,14.95,08/11/19 10:35,"581 Lincoln St, Dallas, TX 75001" +245527,iPhone,1,700,08/30/19 23:36,"166 Chestnut St, San Francisco, CA 94016" +245527,Lightning Charging Cable,1,14.95,08/30/19 23:36,"166 Chestnut St, San Francisco, CA 94016" +245528,AAA Batteries (4-pack),4,2.99,08/15/19 09:43,"117 1st St, San Francisco, CA 94016" +245529,27in FHD Monitor,1,149.99,08/27/19 16:56,"790 Meadow St, Dallas, TX 75001" +245530,27in FHD Monitor,1,149.99,08/29/19 14:47,"176 Church St, Boston, MA 02215" +245531,27in FHD Monitor,1,149.99,08/29/19 17:53,"192 10th St, Los Angeles, CA 90001" +245532,34in Ultrawide Monitor,1,379.99,08/12/19 15:43,"467 Cedar St, San Francisco, CA 94016" +245533,USB-C Charging Cable,1,11.95,08/16/19 15:32,"38 Maple St, Portland, OR 97035" +245534,USB-C Charging Cable,1,11.95,08/05/19 17:16,"827 Elm St, New York City, NY 10001" +245535,Apple Airpods Headphones,1,150,08/02/19 10:02,"995 River St, Atlanta, GA 30301" +245536,AA Batteries (4-pack),1,3.84,08/23/19 13:50,"520 Jackson St, New York City, NY 10001" +245537,Apple Airpods Headphones,1,150,08/11/19 13:44,"153 Jackson St, San Francisco, CA 94016" +245538,Lightning Charging Cable,1,14.95,08/28/19 11:05,"344 South St, San Francisco, CA 94016" +245538,27in FHD Monitor,1,149.99,08/28/19 11:05,"344 South St, San Francisco, CA 94016" +245539,AA Batteries (4-pack),1,3.84,08/24/19 13:51,"358 Hickory St, Seattle, WA 98101" +245540,Macbook Pro Laptop,1,1700,08/05/19 11:26,"976 Hill St, Seattle, WA 98101" +245541,Lightning Charging Cable,1,14.95,08/16/19 09:41,"584 Church St, Seattle, WA 98101" +245542,Lightning Charging Cable,1,14.95,08/21/19 13:51,"547 Main St, Los Angeles, CA 90001" +245543,Wired Headphones,1,11.99,08/02/19 20:49,"766 9th St, Seattle, WA 98101" +245544,27in FHD Monitor,1,149.99,08/12/19 11:03,"548 Center St, Atlanta, GA 30301" +245545,Wired Headphones,1,11.99,08/10/19 20:02,"400 Highland St, New York City, NY 10001" +245546,AAA Batteries (4-pack),1,2.99,08/07/19 08:29,"302 Center St, Boston, MA 02215" +245547,Bose SoundSport Headphones,1,99.99,08/16/19 07:09,"394 Hickory St, San Francisco, CA 94016" +245548,Lightning Charging Cable,1,14.95,08/11/19 10:49,"55 9th St, Boston, MA 02215" +245549,Lightning Charging Cable,1,14.95,08/24/19 18:00,"633 Church St, Seattle, WA 98101" +245550,LG Dryer,1,600.0,08/29/19 13:28,"235 10th St, San Francisco, CA 94016" +245551,AAA Batteries (4-pack),1,2.99,08/27/19 17:30,"528 Jefferson St, San Francisco, CA 94016" +245552,Macbook Pro Laptop,1,1700,08/11/19 22:42,"195 South St, Atlanta, GA 30301" +245553,34in Ultrawide Monitor,1,379.99,08/28/19 09:57,"136 Forest St, Los Angeles, CA 90001" +245554,Bose SoundSport Headphones,1,99.99,08/17/19 23:20,"633 1st St, Los Angeles, CA 90001" +245555,Wired Headphones,1,11.99,08/05/19 17:55,"830 Johnson St, Atlanta, GA 30301" +245556,USB-C Charging Cable,1,11.95,08/30/19 19:00,"175 Chestnut St, Seattle, WA 98101" +245557,AA Batteries (4-pack),1,3.84,08/16/19 07:43,"220 7th St, Boston, MA 02215" +245558,Apple Airpods Headphones,1,150,08/25/19 20:22,"817 6th St, Portland, OR 97035" +245559,Lightning Charging Cable,1,14.95,08/10/19 18:39,"372 5th St, Seattle, WA 98101" +245560,AA Batteries (4-pack),3,3.84,08/10/19 18:34,"31 West St, Austin, TX 73301" +245561,USB-C Charging Cable,1,11.95,08/27/19 13:46,"377 Maple St, Boston, MA 02215" +245562,USB-C Charging Cable,1,11.95,08/07/19 00:27,"356 Lakeview St, Boston, MA 02215" +245563,iPhone,1,700,08/05/19 09:49,"247 Chestnut St, Austin, TX 73301" +245563,Lightning Charging Cable,1,14.95,08/05/19 09:49,"247 Chestnut St, Austin, TX 73301" +245564,Google Phone,1,600,08/26/19 16:54,"482 Elm St, Los Angeles, CA 90001" +245565,Lightning Charging Cable,1,14.95,08/14/19 01:06,"378 9th St, Atlanta, GA 30301" +245566,Wired Headphones,1,11.99,08/13/19 22:49,"329 South St, Austin, TX 73301" +245567,AA Batteries (4-pack),1,3.84,08/30/19 08:35,"837 Lakeview St, Los Angeles, CA 90001" +245568,34in Ultrawide Monitor,1,379.99,08/04/19 14:30,"647 Chestnut St, Dallas, TX 75001" +245569,Apple Airpods Headphones,1,150,08/17/19 17:34,"164 10th St, Los Angeles, CA 90001" +245570,USB-C Charging Cable,1,11.95,08/27/19 10:44,"817 Main St, Boston, MA 02215" +245571,Lightning Charging Cable,1,14.95,08/23/19 23:47,"387 Church St, Portland, OR 97035" +245572,Macbook Pro Laptop,1,1700,08/11/19 21:40,"997 14th St, Seattle, WA 98101" +245573,Flatscreen TV,1,300,08/29/19 20:06,"862 West St, Los Angeles, CA 90001" +245574,Apple Airpods Headphones,1,150,08/17/19 10:09,"821 Madison St, Seattle, WA 98101" +245575,Apple Airpods Headphones,1,150,08/21/19 21:15,"413 Johnson St, Dallas, TX 75001" +245576,Google Phone,1,600,08/04/19 11:13,"529 7th St, San Francisco, CA 94016" +245577,Bose SoundSport Headphones,1,99.99,08/31/19 07:44,"163 Spruce St, San Francisco, CA 94016" +245578,27in FHD Monitor,1,149.99,08/08/19 20:27,"35 Park St, Los Angeles, CA 90001" +245579,AA Batteries (4-pack),1,3.84,08/13/19 19:57,"686 Walnut St, Los Angeles, CA 90001" +245580,Bose SoundSport Headphones,1,99.99,08/08/19 20:26,"706 Ridge St, Dallas, TX 75001" +245581,AAA Batteries (4-pack),2,2.99,08/16/19 19:04,"157 Walnut St, Atlanta, GA 30301" +245582,USB-C Charging Cable,1,11.95,08/29/19 12:11,"492 Meadow St, San Francisco, CA 94016" +245583,Lightning Charging Cable,1,14.95,08/17/19 15:09,"760 Madison St, Seattle, WA 98101" +245584,Lightning Charging Cable,1,14.95,08/03/19 20:21,"467 Meadow St, Los Angeles, CA 90001" +245585,Wired Headphones,1,11.99,08/06/19 16:46,"219 South St, Boston, MA 02215" +245586,AA Batteries (4-pack),1,3.84,08/08/19 08:25,"841 Maple St, Los Angeles, CA 90001" +245587,27in FHD Monitor,1,149.99,08/26/19 18:26,"890 Maple St, San Francisco, CA 94016" +245588,Lightning Charging Cable,1,14.95,08/26/19 16:13,"453 Jefferson St, Dallas, TX 75001" +245589,AA Batteries (4-pack),1,3.84,08/08/19 17:29,"712 Lake St, Portland, OR 97035" +245590,iPhone,1,700,08/04/19 15:12,"597 13th St, San Francisco, CA 94016" +245591,iPhone,1,700,08/25/19 13:33,"815 2nd St, San Francisco, CA 94016" +245592,27in 4K Gaming Monitor,1,389.99,08/25/19 19:06,"302 Center St, Boston, MA 02215" +245593,USB-C Charging Cable,1,11.95,08/04/19 22:48,"821 Forest St, New York City, NY 10001" +245594,Lightning Charging Cable,1,14.95,08/25/19 05:54,"64 Wilson St, Los Angeles, CA 90001" +245595,LG Dryer,1,600.0,08/04/19 12:51,"411 Jackson St, Los Angeles, CA 90001" +245596,Apple Airpods Headphones,1,150,08/25/19 08:56,"452 West St, Los Angeles, CA 90001" +245597,20in Monitor,1,109.99,08/31/19 12:59,"126 Lake St, Portland, OR 97035" +245598,AA Batteries (4-pack),1,3.84,08/26/19 16:15,"187 Ridge St, San Francisco, CA 94016" +245599,USB-C Charging Cable,1,11.95,08/30/19 08:01,"764 12th St, Portland, ME 04101" +245600,Lightning Charging Cable,1,14.95,08/12/19 20:56,"978 South St, New York City, NY 10001" +245601,Lightning Charging Cable,1,14.95,08/12/19 17:20,"522 Lincoln St, Los Angeles, CA 90001" +245602,USB-C Charging Cable,3,11.95,08/06/19 14:14,"585 Jefferson St, Seattle, WA 98101" +245603,iPhone,1,700,08/28/19 17:31,"741 Elm St, Los Angeles, CA 90001" +245603,Wired Headphones,1,11.99,08/28/19 17:31,"741 Elm St, Los Angeles, CA 90001" +245604,34in Ultrawide Monitor,1,379.99,08/18/19 06:39,"209 10th St, New York City, NY 10001" +245605,27in FHD Monitor,1,149.99,08/20/19 21:24,"195 Church St, New York City, NY 10001" +245606,Wired Headphones,1,11.99,08/21/19 15:57,"409 Willow St, New York City, NY 10001" +245607,Wired Headphones,1,11.99,08/20/19 12:58,"471 5th St, New York City, NY 10001" +245608,Wired Headphones,1,11.99,08/06/19 12:12,"903 Dogwood St, Portland, ME 04101" +245609,USB-C Charging Cable,1,11.95,08/04/19 17:23,"46 Church St, San Francisco, CA 94016" +245610,USB-C Charging Cable,1,11.95,08/04/19 09:30,"412 Adams St, Dallas, TX 75001" +245611,Flatscreen TV,1,300,08/04/19 17:15,"563 Ridge St, San Francisco, CA 94016" +245612,iPhone,1,700,08/29/19 21:36,"869 Church St, Atlanta, GA 30301" +245613,Bose SoundSport Headphones,1,99.99,08/20/19 20:02,"71 River St, Boston, MA 02215" +245614,AAA Batteries (4-pack),2,2.99,08/05/19 16:58,"806 Wilson St, Austin, TX 73301" +245615,Wired Headphones,1,11.99,08/10/19 14:46,"918 Sunset St, San Francisco, CA 94016" +245616,USB-C Charging Cable,1,11.95,08/10/19 16:51,"284 Washington St, Los Angeles, CA 90001" +245617,AA Batteries (4-pack),1,3.84,08/02/19 16:22,"645 11th St, Atlanta, GA 30301" +245618,iPhone,1,700,08/23/19 16:51,"946 West St, Austin, TX 73301" +245619,AA Batteries (4-pack),1,3.84,08/22/19 16:23,"524 9th St, Dallas, TX 75001" +245620,Wired Headphones,1,11.99,08/06/19 16:06,"712 Lake St, San Francisco, CA 94016" +245621,34in Ultrawide Monitor,1,379.99,08/17/19 18:13,"868 Jackson St, San Francisco, CA 94016" +245622,Bose SoundSport Headphones,1,99.99,08/10/19 15:51,"625 Pine St, Dallas, TX 75001" +245623,USB-C Charging Cable,1,11.95,08/20/19 22:21,"566 5th St, Dallas, TX 75001" +245624,Lightning Charging Cable,1,14.95,08/21/19 00:03,"846 Jefferson St, Boston, MA 02215" +245625,AA Batteries (4-pack),6,3.84,08/24/19 07:48,"105 Cherry St, Los Angeles, CA 90001" +245626,Bose SoundSport Headphones,1,99.99,08/08/19 21:16,"593 Dogwood St, New York City, NY 10001" +245627,Wired Headphones,1,11.99,08/30/19 12:24,"476 Cedar St, Dallas, TX 75001" +245628,Lightning Charging Cable,1,14.95,08/16/19 12:26,"248 West St, Seattle, WA 98101" +245629,Apple Airpods Headphones,1,150,08/12/19 20:35,"372 Spruce St, San Francisco, CA 94016" +245630,27in FHD Monitor,1,149.99,08/29/19 11:41,"183 Johnson St, Seattle, WA 98101" +245631,Flatscreen TV,1,300,08/23/19 18:51,"16 Willow St, Los Angeles, CA 90001" +245632,Lightning Charging Cable,1,14.95,08/31/19 18:43,"395 Wilson St, New York City, NY 10001" +245633,Wired Headphones,2,11.99,08/26/19 21:48,"310 Madison St, Los Angeles, CA 90001" +245634,Lightning Charging Cable,1,14.95,08/03/19 23:19,"735 6th St, Los Angeles, CA 90001" +245635,Lightning Charging Cable,1,14.95,08/11/19 09:12,"432 North St, New York City, NY 10001" +245636,Bose SoundSport Headphones,1,99.99,08/20/19 20:08,"505 Lake St, Dallas, TX 75001" +245637,Google Phone,1,600,08/12/19 14:51,"830 Walnut St, Los Angeles, CA 90001" +245638,Wired Headphones,1,11.99,08/04/19 12:30,"475 Spruce St, Dallas, TX 75001" +245639,USB-C Charging Cable,1,11.95,08/25/19 11:59,"192 14th St, Los Angeles, CA 90001" +245640,USB-C Charging Cable,1,11.95,08/23/19 11:51,"239 7th St, Los Angeles, CA 90001" +245641,USB-C Charging Cable,1,11.95,08/07/19 10:03,"776 River St, Dallas, TX 75001" +245642,Macbook Pro Laptop,1,1700,08/16/19 17:00,"847 Elm St, San Francisco, CA 94016" +245643,ThinkPad Laptop,1,999.99,08/24/19 19:45,"606 Main St, Seattle, WA 98101" +245644,Bose SoundSport Headphones,1,99.99,08/18/19 16:53,"791 12th St, Atlanta, GA 30301" +245645,34in Ultrawide Monitor,1,379.99,08/02/19 17:28,"398 9th St, Portland, ME 04101" +245646,USB-C Charging Cable,1,11.95,08/29/19 21:52,"555 Lincoln St, Seattle, WA 98101" +245647,AA Batteries (4-pack),1,3.84,08/15/19 12:31,"748 Meadow St, Seattle, WA 98101" +245648,Bose SoundSport Headphones,1,99.99,08/28/19 16:15,"279 Adams St, San Francisco, CA 94016" +245648,AA Batteries (4-pack),1,3.84,08/28/19 16:15,"279 Adams St, San Francisco, CA 94016" +245649,AA Batteries (4-pack),1,3.84,08/14/19 20:46,"916 Forest St, Boston, MA 02215" +245650,Lightning Charging Cable,1,14.95,08/25/19 20:40,"963 6th St, Austin, TX 73301" +245651,Google Phone,1,600,08/12/19 16:55,"885 Park St, Los Angeles, CA 90001" +245652,AA Batteries (4-pack),1,3.84,08/23/19 10:50,"502 1st St, Seattle, WA 98101" +245653,Lightning Charging Cable,2,14.95,08/02/19 16:18,"487 9th St, New York City, NY 10001" +245654,AAA Batteries (4-pack),1,2.99,08/02/19 14:40,"743 6th St, San Francisco, CA 94016" +245655,iPhone,1,700,08/01/19 15:35,"340 Church St, Los Angeles, CA 90001" +245655,Lightning Charging Cable,1,14.95,08/01/19 15:35,"340 Church St, Los Angeles, CA 90001" +245656,Apple Airpods Headphones,1,150,08/23/19 12:24,"742 Spruce St, Los Angeles, CA 90001" +245657,Apple Airpods Headphones,1,150,08/31/19 07:54,"851 Madison St, New York City, NY 10001" +245658,27in FHD Monitor,1,149.99,08/10/19 21:18,"470 Main St, New York City, NY 10001" +245659,Lightning Charging Cable,1,14.95,08/31/19 07:00,"10 9th St, Los Angeles, CA 90001" +245660,USB-C Charging Cable,2,11.95,08/31/19 18:45,"714 13th St, Los Angeles, CA 90001" +245661,Lightning Charging Cable,1,14.95,08/25/19 23:14,"603 Jefferson St, San Francisco, CA 94016" +245662,Wired Headphones,1,11.99,08/30/19 01:46,"373 Meadow St, Dallas, TX 75001" +245663,AAA Batteries (4-pack),3,2.99,08/07/19 05:17,"562 Spruce St, San Francisco, CA 94016" +245664,Lightning Charging Cable,1,14.95,08/10/19 06:56,"379 4th St, San Francisco, CA 94016" +245665,AA Batteries (4-pack),1,3.84,08/04/19 10:23,"70 11th St, San Francisco, CA 94016" +245666,AA Batteries (4-pack),1,3.84,08/11/19 15:45,"891 6th St, San Francisco, CA 94016" +245667,Bose SoundSport Headphones,1,99.99,08/07/19 10:58,"992 Dogwood St, Los Angeles, CA 90001" +245668,Apple Airpods Headphones,1,150,08/13/19 10:21,"250 Church St, Los Angeles, CA 90001" +245669,Wired Headphones,1,11.99,08/09/19 13:53,"203 Maple St, Los Angeles, CA 90001" +245670,Lightning Charging Cable,2,14.95,08/02/19 11:21,"781 Highland St, New York City, NY 10001" +245671,AA Batteries (4-pack),1,3.84,08/30/19 10:47,"661 Pine St, Boston, MA 02215" +245672,AA Batteries (4-pack),1,3.84,08/09/19 12:43,"643 2nd St, San Francisco, CA 94016" +245673,Apple Airpods Headphones,1,150,08/05/19 07:18,"975 Main St, Portland, OR 97035" +245674,34in Ultrawide Monitor,1,379.99,08/30/19 14:42,"774 Park St, Austin, TX 73301" +245675,Macbook Pro Laptop,1,1700,08/24/19 20:35,"971 9th St, New York City, NY 10001" +245676,27in FHD Monitor,1,149.99,08/26/19 11:33,"144 10th St, San Francisco, CA 94016" +245677,Bose SoundSport Headphones,1,99.99,08/09/19 17:03,"561 River St, San Francisco, CA 94016" +245678,Lightning Charging Cable,1,14.95,08/04/19 12:02,"693 4th St, San Francisco, CA 94016" +245679,Google Phone,1,600,08/09/19 11:28,"982 Forest St, New York City, NY 10001" +245680,Lightning Charging Cable,1,14.95,08/19/19 16:32,"340 Lake St, San Francisco, CA 94016" +245681,Lightning Charging Cable,1,14.95,08/04/19 17:52,"999 Church St, Los Angeles, CA 90001" +245682,AAA Batteries (4-pack),1,2.99,08/25/19 18:02,"368 9th St, San Francisco, CA 94016" +245683,20in Monitor,1,109.99,08/23/19 11:44,"984 Walnut St, Seattle, WA 98101" +245684,USB-C Charging Cable,1,11.95,08/31/19 20:42,"291 Forest St, San Francisco, CA 94016" +245685,AA Batteries (4-pack),1,3.84,08/11/19 19:47,"300 Walnut St, Los Angeles, CA 90001" +245686,AAA Batteries (4-pack),1,2.99,08/31/19 21:49,"687 South St, San Francisco, CA 94016" +245687,Google Phone,1,600,08/09/19 10:47,"393 Adams St, Los Angeles, CA 90001" +245688,AAA Batteries (4-pack),2,2.99,08/07/19 09:52,"67 Adams St, San Francisco, CA 94016" +245689,Wired Headphones,1,11.99,08/26/19 11:54,"197 Jefferson St, Atlanta, GA 30301" +245690,AAA Batteries (4-pack),4,2.99,08/10/19 19:47,"205 Spruce St, Atlanta, GA 30301" +245691,Lightning Charging Cable,1,14.95,08/10/19 20:21,"750 Lincoln St, Los Angeles, CA 90001" +245692,ThinkPad Laptop,1,999.99,08/24/19 10:30,"675 Hickory St, Los Angeles, CA 90001" +245693,ThinkPad Laptop,1,999.99,08/05/19 12:48,"938 10th St, San Francisco, CA 94016" +245694,USB-C Charging Cable,1,11.95,08/11/19 18:55,"655 North St, New York City, NY 10001" +245695,USB-C Charging Cable,1,11.95,08/15/19 00:44,"237 Walnut St, Atlanta, GA 30301" +245696,27in FHD Monitor,1,149.99,08/14/19 21:25,"192 West St, Dallas, TX 75001" +245697,34in Ultrawide Monitor,1,379.99,08/10/19 12:23,"694 Washington St, Dallas, TX 75001" +245698,Bose SoundSport Headphones,1,99.99,08/19/19 12:15,"189 Church St, San Francisco, CA 94016" +245699,AAA Batteries (4-pack),1,2.99,08/30/19 18:49,"629 West St, Los Angeles, CA 90001" +245700,Flatscreen TV,1,300,08/20/19 23:04,"541 Cedar St, Los Angeles, CA 90001" +245701,Wired Headphones,1,11.99,08/27/19 07:39,"397 8th St, Dallas, TX 75001" +245702,USB-C Charging Cable,1,11.95,08/29/19 14:04,"6 2nd St, Portland, OR 97035" +245703,20in Monitor,1,109.99,08/19/19 13:48,"131 Cedar St, San Francisco, CA 94016" +245704,AAA Batteries (4-pack),1,2.99,08/04/19 22:39,"354 Forest St, Austin, TX 73301" +245705,Wired Headphones,1,11.99,08/12/19 12:20,"75 Adams St, Los Angeles, CA 90001" +245706,Macbook Pro Laptop,1,1700,08/05/19 14:36,"474 Lincoln St, Austin, TX 73301" +245707,ThinkPad Laptop,1,999.99,08/21/19 21:45,"363 5th St, Portland, OR 97035" +245708,27in FHD Monitor,1,149.99,08/25/19 15:47,"236 Lakeview St, San Francisco, CA 94016" +245709,ThinkPad Laptop,1,999.99,08/22/19 15:49,"833 5th St, Austin, TX 73301" +245710,Google Phone,1,600,08/19/19 11:30,"363 Elm St, San Francisco, CA 94016" +245711,USB-C Charging Cable,1,11.95,08/13/19 11:50,"403 Madison St, Los Angeles, CA 90001" +245712,Lightning Charging Cable,1,14.95,08/04/19 08:53,"727 Adams St, San Francisco, CA 94016" +245713,AAA Batteries (4-pack),1,2.99,08/08/19 10:13,"190 Lake St, Seattle, WA 98101" +245714,Apple Airpods Headphones,1,150,08/17/19 13:53,"658 10th St, New York City, NY 10001" +245715,USB-C Charging Cable,1,11.95,08/03/19 12:15,"557 Lake St, Atlanta, GA 30301" +245716,Lightning Charging Cable,1,14.95,08/13/19 12:54,"442 Jackson St, Los Angeles, CA 90001" +245717,iPhone,1,700,08/06/19 12:25,"432 Center St, Atlanta, GA 30301" +245718,USB-C Charging Cable,1,11.95,08/04/19 20:33,"790 5th St, New York City, NY 10001" +245719,Apple Airpods Headphones,1,150,08/31/19 14:18,"595 6th St, Boston, MA 02215" +245720,AA Batteries (4-pack),2,3.84,08/05/19 12:34,"460 Pine St, Boston, MA 02215" +245721,Apple Airpods Headphones,1,150,08/19/19 19:47,"952 Washington St, San Francisco, CA 94016" +245722,Apple Airpods Headphones,1,150,08/30/19 13:12,"112 Cherry St, Los Angeles, CA 90001" +245723,Lightning Charging Cable,1,14.95,08/15/19 06:22,"132 Lake St, Boston, MA 02215" +245724,Lightning Charging Cable,1,14.95,08/14/19 09:06,"210 West St, San Francisco, CA 94016" +245725,AAA Batteries (4-pack),2,2.99,08/31/19 12:17,"486 Hill St, New York City, NY 10001" +245726,Google Phone,1,600,08/31/19 21:14,"90 Lincoln St, New York City, NY 10001" +245727,Vareebadd Phone,1,400,08/26/19 17:44,"443 9th St, Dallas, TX 75001" +245727,USB-C Charging Cable,1,11.95,08/26/19 17:44,"443 9th St, Dallas, TX 75001" +245728,Lightning Charging Cable,1,14.95,08/07/19 17:27,"735 Willow St, Los Angeles, CA 90001" +245729,AAA Batteries (4-pack),2,2.99,08/15/19 19:50,"590 Cedar St, San Francisco, CA 94016" +245730,20in Monitor,1,109.99,08/12/19 18:49,"589 4th St, Los Angeles, CA 90001" +245731,Lightning Charging Cable,1,14.95,08/22/19 21:51,"272 Main St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +245732,27in FHD Monitor,1,149.99,08/29/19 16:31,"968 Lake St, San Francisco, CA 94016" +245733,Bose SoundSport Headphones,1,99.99,08/10/19 17:48,"340 11th St, Portland, OR 97035" +245734,Lightning Charging Cable,1,14.95,08/01/19 21:40,"965 Maple St, Atlanta, GA 30301" +245735,27in FHD Monitor,1,149.99,08/10/19 12:27,"472 5th St, Atlanta, GA 30301" +245736,iPhone,1,700,08/19/19 17:38,"849 4th St, Seattle, WA 98101" +245736,Lightning Charging Cable,2,14.95,08/19/19 17:38,"849 4th St, Seattle, WA 98101" +245737,Apple Airpods Headphones,1,150,08/04/19 09:26,"75 14th St, Los Angeles, CA 90001" +245738,AAA Batteries (4-pack),1,2.99,08/21/19 19:10,"557 Willow St, Seattle, WA 98101" +245739,USB-C Charging Cable,1,11.95,08/30/19 19:11,"102 8th St, Seattle, WA 98101" +245740,USB-C Charging Cable,1,11.95,08/31/19 10:34,"592 Wilson St, Los Angeles, CA 90001" +245741,Vareebadd Phone,1,400,08/22/19 11:27,"970 9th St, Seattle, WA 98101" +245742,AA Batteries (4-pack),1,3.84,08/29/19 20:51,"532 Walnut St, Seattle, WA 98101" +245743,Lightning Charging Cable,1,14.95,08/13/19 14:47,"847 Maple St, Los Angeles, CA 90001" +245744,27in FHD Monitor,1,149.99,08/07/19 20:54,"255 Sunset St, San Francisco, CA 94016" +245745,34in Ultrawide Monitor,1,379.99,08/09/19 08:54,"109 1st St, San Francisco, CA 94016" +245746,ThinkPad Laptop,1,999.99,08/28/19 14:09,"525 West St, San Francisco, CA 94016" +245747,AA Batteries (4-pack),1,3.84,08/04/19 21:13,"161 Pine St, Portland, ME 04101" +245748,AA Batteries (4-pack),1,3.84,08/28/19 21:48,"617 6th St, Los Angeles, CA 90001" +245749,USB-C Charging Cable,1,11.95,08/12/19 10:57,"68 1st St, Seattle, WA 98101" +245750,Lightning Charging Cable,1,14.95,08/03/19 16:27,"187 Chestnut St, Austin, TX 73301" +245751,iPhone,1,700,08/02/19 10:11,"235 North St, San Francisco, CA 94016" +245752,Lightning Charging Cable,1,14.95,08/14/19 16:55,"449 Chestnut St, San Francisco, CA 94016" +245753,AA Batteries (4-pack),2,3.84,08/08/19 18:32,"366 Cherry St, Austin, TX 73301" +245754,USB-C Charging Cable,1,11.95,08/22/19 23:44,"110 Center St, New York City, NY 10001" +245755,Vareebadd Phone,1,400,08/27/19 21:04,"25 Pine St, Austin, TX 73301" +245756,USB-C Charging Cable,1,11.95,08/31/19 11:31,"973 Johnson St, New York City, NY 10001" +245757,Wired Headphones,1,11.99,08/13/19 20:54,"197 7th St, San Francisco, CA 94016" +245758,27in FHD Monitor,1,149.99,08/26/19 11:49,"223 Dogwood St, New York City, NY 10001" +245759,iPhone,1,700,08/20/19 16:13,"461 9th St, Atlanta, GA 30301" +245760,Lightning Charging Cable,1,14.95,08/16/19 12:46,"81 Jackson St, Boston, MA 02215" +245761,Macbook Pro Laptop,1,1700,08/05/19 21:51,"213 9th St, San Francisco, CA 94016" +245762,USB-C Charging Cable,1,11.95,08/09/19 17:04,"262 Sunset St, Boston, MA 02215" +245763,USB-C Charging Cable,1,11.95,08/03/19 09:25,"418 9th St, Portland, ME 04101" +245764,Google Phone,1,600,08/23/19 16:36,"491 Lakeview St, Los Angeles, CA 90001" +245765,Wired Headphones,1,11.99,08/10/19 08:09,"319 Cedar St, San Francisco, CA 94016" +245766,AAA Batteries (4-pack),2,2.99,08/10/19 21:15,"178 11th St, San Francisco, CA 94016" +245767,Wired Headphones,1,11.99,08/23/19 20:49,"67 Lake St, Los Angeles, CA 90001" +245768,Flatscreen TV,1,300,08/17/19 09:38,"424 11th St, Boston, MA 02215" +245769,iPhone,1,700,08/05/19 16:28,"660 Church St, Boston, MA 02215" +245769,Lightning Charging Cable,1,14.95,08/05/19 16:28,"660 Church St, Boston, MA 02215" +245770,AAA Batteries (4-pack),2,2.99,08/02/19 20:56,"588 12th St, New York City, NY 10001" +245771,AA Batteries (4-pack),1,3.84,08/31/19 12:36,"842 Dogwood St, Boston, MA 02215" +245772,Apple Airpods Headphones,1,150,08/09/19 23:46,"405 Hill St, Boston, MA 02215" +245773,Google Phone,1,600,08/28/19 16:20,"89 Chestnut St, Boston, MA 02215" +245773,Wired Headphones,1,11.99,08/28/19 16:20,"89 Chestnut St, Boston, MA 02215" +245774,AA Batteries (4-pack),2,3.84,08/04/19 09:09,"66 Walnut St, Atlanta, GA 30301" +245775,iPhone,1,700,08/25/19 10:52,"585 Elm St, Los Angeles, CA 90001" +245775,Lightning Charging Cable,1,14.95,08/25/19 10:52,"585 Elm St, Los Angeles, CA 90001" +245776,Macbook Pro Laptop,1,1700,08/21/19 21:27,"814 Maple St, San Francisco, CA 94016" +245777,USB-C Charging Cable,1,11.95,08/21/19 10:53,"392 11th St, New York City, NY 10001" +245778,Vareebadd Phone,1,400,08/18/19 22:13,"943 Lake St, San Francisco, CA 94016" +245778,USB-C Charging Cable,1,11.95,08/18/19 22:13,"943 Lake St, San Francisco, CA 94016" +245779,ThinkPad Laptop,1,999.99,08/23/19 13:08,"965 Lakeview St, Atlanta, GA 30301" +245780,Vareebadd Phone,1,400,08/13/19 23:55,"911 Jackson St, San Francisco, CA 94016" +245781,Lightning Charging Cable,1,14.95,08/23/19 18:32,"724 Jackson St, Los Angeles, CA 90001" +245782,20in Monitor,1,109.99,08/09/19 13:36,"708 11th St, San Francisco, CA 94016" +245783,Apple Airpods Headphones,1,150,08/29/19 21:04,"914 1st St, Boston, MA 02215" +245784,AAA Batteries (4-pack),3,2.99,08/27/19 13:06,"672 12th St, New York City, NY 10001" +245785,ThinkPad Laptop,1,999.99,08/02/19 23:05,"175 14th St, San Francisco, CA 94016" +245786,AA Batteries (4-pack),1,3.84,08/09/19 22:50,"493 13th St, Seattle, WA 98101" +245787,iPhone,1,700,08/24/19 19:32,"928 Lake St, Los Angeles, CA 90001" +245788,27in 4K Gaming Monitor,1,389.99,08/04/19 14:24,"399 12th St, Seattle, WA 98101" +245789,Wired Headphones,1,11.99,08/13/19 22:59,"350 Adams St, Portland, OR 97035" +245790,AAA Batteries (4-pack),1,2.99,08/28/19 22:24,"627 Washington St, Portland, OR 97035" +245791,27in 4K Gaming Monitor,1,389.99,08/08/19 19:28,"717 14th St, San Francisco, CA 94016" +245792,AA Batteries (4-pack),1,3.84,08/09/19 18:27,"49 9th St, Boston, MA 02215" +245793,USB-C Charging Cable,1,11.95,08/10/19 21:24,"905 Madison St, Atlanta, GA 30301" +245794,Wired Headphones,1,11.99,08/18/19 06:51,"958 6th St, Atlanta, GA 30301" +245795,Bose SoundSport Headphones,1,99.99,08/01/19 18:21,"254 4th St, Austin, TX 73301" +245796,Bose SoundSport Headphones,1,99.99,08/03/19 15:23,"784 Cedar St, Austin, TX 73301" +245797,34in Ultrawide Monitor,1,379.99,08/11/19 23:59,"332 Jefferson St, San Francisco, CA 94016" +245798,USB-C Charging Cable,2,11.95,08/31/19 16:26,"283 6th St, Boston, MA 02215" +245799,Wired Headphones,1,11.99,08/14/19 09:03,"845 Lakeview St, Atlanta, GA 30301" +245800,Bose SoundSport Headphones,1,99.99,08/03/19 12:46,"69 12th St, Seattle, WA 98101" +245801,AAA Batteries (4-pack),1,2.99,08/12/19 20:53,"30 Main St, New York City, NY 10001" +245802,AA Batteries (4-pack),1,3.84,08/17/19 22:46,"934 Dogwood St, Los Angeles, CA 90001" +245803,Google Phone,1,600,08/26/19 00:57,"796 Jefferson St, Portland, OR 97035" +245804,USB-C Charging Cable,1,11.95,08/05/19 16:03,"970 Willow St, Boston, MA 02215" +245805,Lightning Charging Cable,1,14.95,08/03/19 10:29,"41 Park St, Dallas, TX 75001" +245806,Apple Airpods Headphones,1,150,08/01/19 18:24,"334 Cherry St, San Francisco, CA 94016" +245806,Lightning Charging Cable,1,14.95,08/01/19 18:24,"334 Cherry St, San Francisco, CA 94016" +245807,Google Phone,1,600,08/24/19 11:55,"736 River St, San Francisco, CA 94016" +245808,AA Batteries (4-pack),1,3.84,08/25/19 18:06,"79 Main St, Los Angeles, CA 90001" +245809,Flatscreen TV,1,300,08/04/19 09:27,"309 Johnson St, New York City, NY 10001" +245810,iPhone,1,700,08/20/19 10:35,"844 Washington St, Los Angeles, CA 90001" +245811,USB-C Charging Cable,1,11.95,08/22/19 14:13,"325 Chestnut St, New York City, NY 10001" +245812,Apple Airpods Headphones,1,150,08/30/19 07:25,"205 Dogwood St, Boston, MA 02215" +245813,Lightning Charging Cable,1,14.95,08/29/19 06:00,"191 West St, Seattle, WA 98101" +245814,iPhone,1,700,08/01/19 07:33,"372 Washington St, Austin, TX 73301" +245815,USB-C Charging Cable,1,11.95,08/04/19 22:07,"509 Chestnut St, San Francisco, CA 94016" +245816,AA Batteries (4-pack),1,3.84,08/27/19 07:40,"494 Adams St, Los Angeles, CA 90001" +245817,Wired Headphones,1,11.99,08/25/19 12:31,"827 Madison St, Atlanta, GA 30301" +245817,iPhone,1,700,08/25/19 12:31,"827 Madison St, Atlanta, GA 30301" +245818,Lightning Charging Cable,1,14.95,08/15/19 12:00,"137 Jackson St, Los Angeles, CA 90001" +245819,AA Batteries (4-pack),1,3.84,08/02/19 18:27,"150 2nd St, Portland, OR 97035" +245820,Bose SoundSport Headphones,1,99.99,08/20/19 11:15,"671 Madison St, San Francisco, CA 94016" +245821,27in FHD Monitor,1,149.99,08/29/19 10:08,"919 Sunset St, Los Angeles, CA 90001" +245822,AAA Batteries (4-pack),2,2.99,08/23/19 07:44,"874 South St, San Francisco, CA 94016" +245823,Lightning Charging Cable,1,14.95,08/02/19 19:14,"978 Lincoln St, San Francisco, CA 94016" +245824,ThinkPad Laptop,1,999.99,08/23/19 10:47,"608 Wilson St, San Francisco, CA 94016" +245824,ThinkPad Laptop,1,999.99,08/23/19 10:47,"608 Wilson St, San Francisco, CA 94016" +245825,Google Phone,1,600,08/25/19 12:35,"252 South St, Los Angeles, CA 90001" +245826,Wired Headphones,1,11.99,08/28/19 07:38,"211 Hill St, Seattle, WA 98101" +245827,Apple Airpods Headphones,1,150,08/28/19 08:03,"928 Center St, Portland, OR 97035" +245828,Bose SoundSport Headphones,1,99.99,08/20/19 12:09,"57 Lake St, Los Angeles, CA 90001" +245829,Bose SoundSport Headphones,1,99.99,08/06/19 12:03,"172 West St, San Francisco, CA 94016" +245830,Lightning Charging Cable,1,14.95,08/12/19 20:20,"678 7th St, New York City, NY 10001" +245831,27in FHD Monitor,1,149.99,08/20/19 18:04,"70 Meadow St, San Francisco, CA 94016" +245832,Flatscreen TV,1,300,08/07/19 12:30,"886 5th St, San Francisco, CA 94016" +245833,Bose SoundSport Headphones,1,99.99,08/10/19 17:53,"781 Sunset St, San Francisco, CA 94016" +245834,Lightning Charging Cable,1,14.95,08/29/19 21:22,"958 Sunset St, Portland, OR 97035" +245835,AA Batteries (4-pack),2,3.84,08/04/19 19:59,"258 Hill St, Los Angeles, CA 90001" +245836,Wired Headphones,1,11.99,08/11/19 15:36,"913 5th St, Seattle, WA 98101" +245837,AAA Batteries (4-pack),1,2.99,08/21/19 20:16,"493 Spruce St, Atlanta, GA 30301" +245838,Bose SoundSport Headphones,1,99.99,08/11/19 18:11,"601 Forest St, Austin, TX 73301" +245839,USB-C Charging Cable,1,11.95,08/03/19 22:24,"235 14th St, Los Angeles, CA 90001" +245840,Apple Airpods Headphones,1,150,08/15/19 13:17,"371 Adams St, Austin, TX 73301" +245841,Google Phone,1,600,08/08/19 01:05,"51 Johnson St, San Francisco, CA 94016" +245842,iPhone,1,700,08/13/19 17:50,"102 River St, New York City, NY 10001" +245843,27in FHD Monitor,1,149.99,08/23/19 08:17,"428 10th St, San Francisco, CA 94016" +245844,LG Dryer,1,600.0,08/27/19 09:17,"499 Elm St, Boston, MA 02215" +245845,USB-C Charging Cable,2,11.95,08/07/19 13:21,"152 Johnson St, Los Angeles, CA 90001" +245846,Lightning Charging Cable,1,14.95,08/03/19 17:33,"480 Hickory St, Portland, OR 97035" +245847,Apple Airpods Headphones,1,150,08/19/19 14:23,"636 Lake St, San Francisco, CA 94016" +245848,Wired Headphones,1,11.99,08/31/19 21:43,"457 Main St, Seattle, WA 98101" +245849,Google Phone,1,600,08/16/19 09:47,"326 Ridge St, New York City, NY 10001" +245850,Vareebadd Phone,1,400,08/09/19 13:29,"790 Hickory St, Seattle, WA 98101" +245851,Bose SoundSport Headphones,1,99.99,08/04/19 09:42,"663 Hickory St, Los Angeles, CA 90001" +245852,Lightning Charging Cable,1,14.95,08/07/19 12:45,"401 Hill St, Portland, ME 04101" +245853,AAA Batteries (4-pack),1,2.99,08/26/19 13:12,"57 Madison St, Seattle, WA 98101" +245854,Lightning Charging Cable,1,14.95,08/03/19 14:06,"526 Wilson St, Austin, TX 73301" +245855,USB-C Charging Cable,1,11.95,08/21/19 16:10,"478 Spruce St, Portland, OR 97035" +245855,AAA Batteries (4-pack),1,2.99,08/21/19 16:10,"478 Spruce St, Portland, OR 97035" +245856,Wired Headphones,1,11.99,08/28/19 19:58,"83 8th St, Los Angeles, CA 90001" +245857,AAA Batteries (4-pack),2,2.99,08/27/19 11:26,"629 Main St, San Francisco, CA 94016" +245858,AAA Batteries (4-pack),1,2.99,08/23/19 12:11,"127 Church St, San Francisco, CA 94016" +245859,AA Batteries (4-pack),2,3.84,08/24/19 13:41,"392 Meadow St, New York City, NY 10001" +245860,USB-C Charging Cable,1,11.95,08/17/19 19:57,"474 7th St, Atlanta, GA 30301" +245861,AAA Batteries (4-pack),1,2.99,08/19/19 13:20,"153 Dogwood St, New York City, NY 10001" +245862,AA Batteries (4-pack),2,3.84,08/06/19 10:27,"69 Johnson St, Los Angeles, CA 90001" +245863,AA Batteries (4-pack),4,3.84,08/08/19 17:00,"738 Madison St, Dallas, TX 75001" +245864,AAA Batteries (4-pack),2,2.99,08/02/19 12:43,"14 Park St, Boston, MA 02215" +245865,27in FHD Monitor,1,149.99,08/05/19 18:39,"234 Highland St, Austin, TX 73301" +245866,AAA Batteries (4-pack),1,2.99,08/17/19 23:57,"651 Washington St, Los Angeles, CA 90001" +245867,iPhone,1,700,08/02/19 16:17,"100 Hickory St, Portland, ME 04101" +245868,27in 4K Gaming Monitor,1,389.99,08/11/19 20:10,"165 Adams St, Boston, MA 02215" +245869,Google Phone,1,600,08/03/19 15:41,"363 Hill St, Portland, ME 04101" +245870,27in 4K Gaming Monitor,1,389.99,08/14/19 15:08,"716 Sunset St, Seattle, WA 98101" +245871,AA Batteries (4-pack),1,3.84,08/18/19 18:02,"280 4th St, San Francisco, CA 94016" +245872,AA Batteries (4-pack),1,3.84,08/06/19 20:04,"310 Hill St, Seattle, WA 98101" +245873,Wired Headphones,1,11.99,08/02/19 16:28,"854 Walnut St, Austin, TX 73301" +245874,AAA Batteries (4-pack),1,2.99,08/25/19 01:18,"804 14th St, Los Angeles, CA 90001" +245875,USB-C Charging Cable,1,11.95,08/26/19 15:12,"756 Willow St, Los Angeles, CA 90001" +245876,Lightning Charging Cable,1,14.95,08/22/19 17:58,"643 Sunset St, Seattle, WA 98101" +245877,Apple Airpods Headphones,1,150,08/12/19 09:57,"382 Pine St, New York City, NY 10001" +245878,Wired Headphones,1,11.99,08/28/19 18:16,"448 Walnut St, Los Angeles, CA 90001" +245879,Google Phone,1,600,08/02/19 00:36,"206 Sunset St, Dallas, TX 75001" +245879,Wired Headphones,1,11.99,08/02/19 00:36,"206 Sunset St, Dallas, TX 75001" +245880,Google Phone,1,600,08/03/19 02:22,"353 Johnson St, Atlanta, GA 30301" +245881,Flatscreen TV,1,300,09/01/19 02:27,"362 Wilson St, Atlanta, GA 30301" +245882,Lightning Charging Cable,1,14.95,08/31/19 10:15,"943 Johnson St, New York City, NY 10001" +245883,iPhone,1,700,08/25/19 12:01,"195 Wilson St, Portland, OR 97035" +245883,Lightning Charging Cable,1,14.95,08/25/19 12:01,"195 Wilson St, Portland, OR 97035" +245884,Bose SoundSport Headphones,1,99.99,08/11/19 10:39,"195 12th St, San Francisco, CA 94016" +245885,USB-C Charging Cable,1,11.95,08/14/19 00:38,"808 Lake St, San Francisco, CA 94016" +245886,Lightning Charging Cable,1,14.95,08/02/19 01:25,"417 Forest St, San Francisco, CA 94016" +245887,Flatscreen TV,1,300,08/07/19 22:52,"764 Dogwood St, San Francisco, CA 94016" +245888,AA Batteries (4-pack),1,3.84,08/19/19 01:38,"182 Chestnut St, Los Angeles, CA 90001" +245889,AA Batteries (4-pack),1,3.84,08/18/19 11:08,"632 Church St, Austin, TX 73301" +245889,Wired Headphones,1,11.99,08/18/19 11:08,"632 Church St, Austin, TX 73301" +245890,20in Monitor,1,109.99,08/17/19 18:49,"726 Johnson St, Los Angeles, CA 90001" +245891,USB-C Charging Cable,1,11.95,08/04/19 09:57,"263 1st St, Los Angeles, CA 90001" +245891,AAA Batteries (4-pack),1,2.99,08/04/19 09:57,"263 1st St, Los Angeles, CA 90001" +245892,USB-C Charging Cable,2,11.95,08/19/19 08:42,"466 Maple St, Boston, MA 02215" +245893,Apple Airpods Headphones,1,150,08/06/19 16:07,"212 Cherry St, San Francisco, CA 94016" +245894,Wired Headphones,1,11.99,08/10/19 14:55,"841 Madison St, Boston, MA 02215" +245895,Wired Headphones,1,11.99,08/29/19 16:47,"81 Pine St, Los Angeles, CA 90001" +245896,Vareebadd Phone,1,400,08/23/19 23:41,"833 Wilson St, Dallas, TX 75001" +245897,USB-C Charging Cable,1,11.95,08/25/19 11:54,"608 Hickory St, San Francisco, CA 94016" +245898,Flatscreen TV,1,300,08/14/19 22:46,"587 North St, Seattle, WA 98101" +245899,Flatscreen TV,1,300,08/22/19 22:28,"31 Adams St, Boston, MA 02215" +245900,Macbook Pro Laptop,1,1700,08/30/19 17:55,"305 Jefferson St, New York City, NY 10001" +245901,27in FHD Monitor,1,149.99,08/14/19 20:34,"102 Chestnut St, Dallas, TX 75001" +245902,Wired Headphones,1,11.99,08/26/19 23:13,"271 Elm St, Seattle, WA 98101" +245903,Lightning Charging Cable,1,14.95,08/02/19 16:39,"947 Hill St, Atlanta, GA 30301" +245904,ThinkPad Laptop,1,999.99,08/03/19 13:43,"731 Wilson St, New York City, NY 10001" +245905,Macbook Pro Laptop,1,1700,08/05/19 21:31,"958 Sunset St, Boston, MA 02215" +245906,27in FHD Monitor,1,149.99,08/25/19 00:19,"167 Center St, Austin, TX 73301" +245907,Google Phone,1,600,08/08/19 13:32,"751 Chestnut St, New York City, NY 10001" +245907,USB-C Charging Cable,1,11.95,08/08/19 13:32,"751 Chestnut St, New York City, NY 10001" +245908,Bose SoundSport Headphones,1,99.99,08/04/19 14:40,"1 7th St, Portland, OR 97035" +245909,27in 4K Gaming Monitor,1,389.99,08/09/19 15:43,"65 Park St, Seattle, WA 98101" +245910,AA Batteries (4-pack),1,3.84,08/17/19 20:26,"328 8th St, Boston, MA 02215" +245911,USB-C Charging Cable,1,11.95,08/31/19 12:01,"95 Lincoln St, New York City, NY 10001" +245912,Wired Headphones,1,11.99,08/03/19 19:43,"237 9th St, New York City, NY 10001" +245913,Wired Headphones,2,11.99,08/28/19 20:23,"743 Highland St, San Francisco, CA 94016" +245914,Bose SoundSport Headphones,1,99.99,08/12/19 08:18,"480 10th St, Atlanta, GA 30301" +245915,AA Batteries (4-pack),1,3.84,08/17/19 20:47,"356 Madison St, Seattle, WA 98101" +245915,34in Ultrawide Monitor,1,379.99,08/17/19 20:47,"356 Madison St, Seattle, WA 98101" +245916,Macbook Pro Laptop,1,1700,08/23/19 00:05,"450 Madison St, Portland, OR 97035" +245917,Apple Airpods Headphones,1,150,08/10/19 18:46,"893 Elm St, Boston, MA 02215" +245918,AA Batteries (4-pack),1,3.84,08/03/19 11:11,"425 Ridge St, Atlanta, GA 30301" +245919,ThinkPad Laptop,1,999.99,08/11/19 11:20,"907 Elm St, San Francisco, CA 94016" +245920,AA Batteries (4-pack),2,3.84,08/08/19 08:19,"412 Willow St, Atlanta, GA 30301" +245921,Macbook Pro Laptop,1,1700,08/03/19 19:16,"211 Spruce St, San Francisco, CA 94016" +245922,iPhone,1,700,08/04/19 11:50,"106 Lincoln St, Dallas, TX 75001" +245922,Wired Headphones,1,11.99,08/04/19 11:50,"106 Lincoln St, Dallas, TX 75001" +245923,Macbook Pro Laptop,1,1700,08/09/19 10:13,"589 Cherry St, Boston, MA 02215" +245924,AAA Batteries (4-pack),1,2.99,08/17/19 13:56,"803 West St, San Francisco, CA 94016" +245925,Flatscreen TV,1,300,08/16/19 19:13,"738 Cherry St, San Francisco, CA 94016" +245925,Macbook Pro Laptop,1,1700,08/16/19 19:13,"738 Cherry St, San Francisco, CA 94016" +245926,AA Batteries (4-pack),1,3.84,08/09/19 16:01,"262 South St, New York City, NY 10001" +245927,AA Batteries (4-pack),1,3.84,08/31/19 12:05,"878 River St, New York City, NY 10001" +245928,iPhone,1,700,08/13/19 23:24,"275 Elm St, San Francisco, CA 94016" +245929,Lightning Charging Cable,1,14.95,08/21/19 12:58,"445 Walnut St, Austin, TX 73301" +245930,Wired Headphones,1,11.99,08/27/19 10:48,"651 2nd St, Atlanta, GA 30301" +245931,20in Monitor,1,109.99,08/17/19 22:06,"256 River St, Seattle, WA 98101" +245932,Lightning Charging Cable,1,14.95,08/28/19 11:26,"596 Forest St, San Francisco, CA 94016" +245933,Lightning Charging Cable,2,14.95,08/31/19 14:16,"95 5th St, New York City, NY 10001" +245934,Lightning Charging Cable,1,14.95,08/25/19 15:28,"133 Park St, Boston, MA 02215" +245935,Lightning Charging Cable,1,14.95,08/23/19 18:38,"556 South St, Austin, TX 73301" +245936,USB-C Charging Cable,1,11.95,08/15/19 21:10,"140 Pine St, Los Angeles, CA 90001" +245937,Bose SoundSport Headphones,1,99.99,08/09/19 21:12,"918 Jefferson St, Atlanta, GA 30301" +245938,ThinkPad Laptop,1,999.99,08/10/19 13:53,"179 1st St, New York City, NY 10001" +245939,Lightning Charging Cable,1,14.95,08/18/19 14:51,"586 Sunset St, San Francisco, CA 94016" +245940,Lightning Charging Cable,1,14.95,08/03/19 00:52,"460 Forest St, Los Angeles, CA 90001" +245941,Lightning Charging Cable,1,14.95,08/28/19 17:38,"913 6th St, New York City, NY 10001" +245942,Lightning Charging Cable,1,14.95,08/21/19 20:34,"992 Hickory St, San Francisco, CA 94016" +245943,USB-C Charging Cable,1,11.95,08/11/19 13:10,"409 Ridge St, San Francisco, CA 94016" +245944,AAA Batteries (4-pack),1,2.99,08/23/19 11:47,"98 Main St, New York City, NY 10001" +245945,USB-C Charging Cable,1,11.95,08/01/19 09:54,"352 Cedar St, Boston, MA 02215" +245946,Google Phone,1,600,08/23/19 04:21,"714 River St, Boston, MA 02215" +245947,Wired Headphones,1,11.99,08/28/19 15:41,"805 Main St, Atlanta, GA 30301" +245948,ThinkPad Laptop,1,999.99,08/18/19 05:12,"818 Hill St, Atlanta, GA 30301" +245949,Lightning Charging Cable,1,14.95,08/22/19 14:01,"621 Hill St, Boston, MA 02215" +245950,Lightning Charging Cable,1,14.95,08/29/19 16:55,"303 Lake St, Portland, OR 97035" +245951,AAA Batteries (4-pack),4,2.99,08/29/19 20:26,"593 Willow St, Atlanta, GA 30301" +245952,USB-C Charging Cable,1,11.95,08/11/19 10:39,"748 2nd St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +245953,USB-C Charging Cable,1,11.95,08/26/19 22:16,"270 5th St, Dallas, TX 75001" +245954,Bose SoundSport Headphones,1,99.99,08/03/19 19:34,"575 River St, Atlanta, GA 30301" +245955,Wired Headphones,1,11.99,08/22/19 15:53,"139 Walnut St, Atlanta, GA 30301" +245956,AAA Batteries (4-pack),1,2.99,08/22/19 23:39,"240 South St, Austin, TX 73301" +245957,Apple Airpods Headphones,1,150,08/01/19 18:40,"861 Willow St, New York City, NY 10001" +245958,Lightning Charging Cable,1,14.95,08/30/19 23:45,"863 Lakeview St, New York City, NY 10001" +245959,Wired Headphones,1,11.99,08/09/19 08:42,"215 2nd St, Seattle, WA 98101" +245960,USB-C Charging Cable,1,11.95,08/14/19 11:41,"507 Center St, San Francisco, CA 94016" +245961,AA Batteries (4-pack),2,3.84,08/07/19 20:30,"984 5th St, Dallas, TX 75001" +245962,USB-C Charging Cable,1,11.95,08/26/19 08:30,"590 Church St, Los Angeles, CA 90001" +245963,Macbook Pro Laptop,1,1700,08/28/19 16:29,"876 11th St, Austin, TX 73301" +245964,Lightning Charging Cable,1,14.95,08/18/19 19:54,"102 Meadow St, Dallas, TX 75001" +245965,AAA Batteries (4-pack),1,2.99,08/18/19 14:38,"937 9th St, Boston, MA 02215" +245966,27in FHD Monitor,1,149.99,08/11/19 12:31,"412 South St, Los Angeles, CA 90001" +245967,Lightning Charging Cable,1,14.95,08/09/19 12:09,"249 Adams St, San Francisco, CA 94016" +245968,USB-C Charging Cable,1,11.95,08/29/19 17:56,"575 North St, Los Angeles, CA 90001" +245969,USB-C Charging Cable,1,11.95,08/23/19 20:38,"642 Lincoln St, San Francisco, CA 94016" +245970,27in 4K Gaming Monitor,1,389.99,08/31/19 02:37,"838 North St, San Francisco, CA 94016" +245971,Flatscreen TV,1,300,08/24/19 11:36,"644 Adams St, Boston, MA 02215" +245972,34in Ultrawide Monitor,1,379.99,08/21/19 07:38,"936 Sunset St, Seattle, WA 98101" +245973,20in Monitor,1,109.99,08/19/19 11:40,"521 Spruce St, San Francisco, CA 94016" +245974,AAA Batteries (4-pack),2,2.99,08/28/19 17:42,"358 13th St, Seattle, WA 98101" +245975,AA Batteries (4-pack),1,3.84,08/17/19 18:15,"395 Sunset St, Atlanta, GA 30301" +245976,Vareebadd Phone,1,400,08/21/19 09:36,"963 Lake St, Dallas, TX 75001" +245977,Apple Airpods Headphones,1,150,08/24/19 18:18,"534 8th St, Atlanta, GA 30301" +245978,Google Phone,1,600,08/29/19 14:36,"849 8th St, San Francisco, CA 94016" +245979,USB-C Charging Cable,1,11.95,08/09/19 18:37,"579 14th St, Atlanta, GA 30301" +245980,Flatscreen TV,1,300,08/05/19 10:08,"426 Lincoln St, Boston, MA 02215" +245981,USB-C Charging Cable,1,11.95,08/25/19 18:17,"572 6th St, New York City, NY 10001" +245982,AAA Batteries (4-pack),2,2.99,08/02/19 19:44,"205 Lake St, Atlanta, GA 30301" +245983,Wired Headphones,1,11.99,08/13/19 12:37,"605 10th St, San Francisco, CA 94016" +245984,LG Washing Machine,1,600.0,08/07/19 23:28,"385 Hill St, Boston, MA 02215" +245985,Wired Headphones,1,11.99,08/29/19 16:41,"194 Walnut St, Dallas, TX 75001" +245986,Flatscreen TV,1,300,08/08/19 23:15,"586 Center St, Los Angeles, CA 90001" +245987,ThinkPad Laptop,1,999.99,08/04/19 10:36,"852 Center St, Austin, TX 73301" +245988,Flatscreen TV,1,300,08/02/19 11:21,"137 South St, Los Angeles, CA 90001" +245989,Apple Airpods Headphones,1,150,08/18/19 12:07,"136 Highland St, New York City, NY 10001" +245990,Flatscreen TV,1,300,08/26/19 21:37,"177 Pine St, San Francisco, CA 94016" +245991,Lightning Charging Cable,1,14.95,08/19/19 20:12,"419 Washington St, Boston, MA 02215" +245991,USB-C Charging Cable,1,11.95,08/19/19 20:12,"419 Washington St, Boston, MA 02215" +245992,Flatscreen TV,1,300,08/04/19 11:29,"254 Main St, New York City, NY 10001" +245993,Wired Headphones,1,11.99,08/13/19 13:43,"420 Maple St, New York City, NY 10001" +245994,USB-C Charging Cable,1,11.95,08/26/19 10:24,"864 Jackson St, Seattle, WA 98101" +245995,Bose SoundSport Headphones,1,99.99,08/12/19 11:07,"821 Johnson St, Seattle, WA 98101" +245996,27in 4K Gaming Monitor,1,389.99,08/19/19 18:14,"352 Park St, San Francisco, CA 94016" +245997,Apple Airpods Headphones,1,150,08/10/19 09:08,"663 Sunset St, San Francisco, CA 94016" +245998,AAA Batteries (4-pack),3,2.99,08/25/19 18:53,"226 Forest St, San Francisco, CA 94016" +245999,Macbook Pro Laptop,1,1700,08/08/19 13:38,"277 14th St, Atlanta, GA 30301" +246000,USB-C Charging Cable,1,11.95,08/11/19 21:00,"957 4th St, Los Angeles, CA 90001" +246001,34in Ultrawide Monitor,1,379.99,08/04/19 22:38,"464 Willow St, Atlanta, GA 30301" +246002,ThinkPad Laptop,1,999.99,08/13/19 09:34,"329 Ridge St, Seattle, WA 98101" +246003,Bose SoundSport Headphones,1,99.99,08/31/19 07:29,"961 Elm St, San Francisco, CA 94016" +246004,Wired Headphones,1,11.99,08/16/19 09:33,"260 Spruce St, Austin, TX 73301" +246005,USB-C Charging Cable,1,11.95,08/14/19 14:43,"378 Madison St, Los Angeles, CA 90001" +246006,USB-C Charging Cable,1,11.95,08/14/19 09:04,"151 4th St, Boston, MA 02215" +246007,AA Batteries (4-pack),1,3.84,08/29/19 00:15,"369 4th St, San Francisco, CA 94016" +246008,Wired Headphones,1,11.99,08/16/19 12:31,"623 Sunset St, Atlanta, GA 30301" +246009,27in 4K Gaming Monitor,1,389.99,08/31/19 17:32,"892 Chestnut St, Los Angeles, CA 90001" +246010,Lightning Charging Cable,1,14.95,08/20/19 09:25,"730 Spruce St, San Francisco, CA 94016" +246011,34in Ultrawide Monitor,1,379.99,08/13/19 18:41,"573 4th St, Austin, TX 73301" +246012,AAA Batteries (4-pack),2,2.99,08/28/19 22:14,"108 Washington St, Portland, OR 97035" +246013,Google Phone,1,600,08/16/19 17:46,"828 8th St, New York City, NY 10001" +246013,Wired Headphones,1,11.99,08/16/19 17:46,"828 8th St, New York City, NY 10001" +246014,Apple Airpods Headphones,1,150,08/27/19 12:42,"617 13th St, Seattle, WA 98101" +246015,Apple Airpods Headphones,1,150,08/26/19 12:49,"97 Dogwood St, San Francisco, CA 94016" +246016,Apple Airpods Headphones,1,150,08/26/19 09:34,"585 2nd St, Atlanta, GA 30301" +246017,AA Batteries (4-pack),2,3.84,08/09/19 15:38,"888 North St, Los Angeles, CA 90001" +246018,27in FHD Monitor,1,149.99,08/17/19 00:53,"953 Lake St, New York City, NY 10001" +246019,USB-C Charging Cable,2,11.95,08/09/19 15:47,"400 Jefferson St, New York City, NY 10001" +246020,AAA Batteries (4-pack),1,2.99,08/10/19 10:30,"904 14th St, Atlanta, GA 30301" +246021,Wired Headphones,1,11.99,08/19/19 18:36,"78 13th St, San Francisco, CA 94016" +246022,AA Batteries (4-pack),2,3.84,08/21/19 18:49,"296 Adams St, San Francisco, CA 94016" +246023,Lightning Charging Cable,1,14.95,08/03/19 14:13,"810 Sunset St, Atlanta, GA 30301" +246024,Lightning Charging Cable,1,14.95,08/18/19 00:07,"204 12th St, Portland, ME 04101" +246025,Lightning Charging Cable,1,14.95,08/15/19 14:14,"539 Dogwood St, San Francisco, CA 94016" +246026,USB-C Charging Cable,1,11.95,08/13/19 18:08,"697 Church St, San Francisco, CA 94016" +246027,Wired Headphones,1,11.99,08/15/19 20:26,"178 Cherry St, Portland, ME 04101" +246028,Lightning Charging Cable,1,14.95,08/23/19 11:45,"997 Jackson St, San Francisco, CA 94016" +246029,Macbook Pro Laptop,1,1700,08/05/19 13:25,"364 Church St, Boston, MA 02215" +246030,AAA Batteries (4-pack),1,2.99,08/08/19 20:18,"456 Main St, Los Angeles, CA 90001" +246031,Flatscreen TV,1,300,08/15/19 12:13,"780 4th St, Portland, OR 97035" +246032,Lightning Charging Cable,1,14.95,08/09/19 09:13,"330 Madison St, Atlanta, GA 30301" +246033,AAA Batteries (4-pack),1,2.99,08/13/19 11:15,"593 Walnut St, Portland, OR 97035" +246034,27in 4K Gaming Monitor,1,389.99,08/08/19 22:14,"765 7th St, Seattle, WA 98101" +246035,USB-C Charging Cable,1,11.95,08/29/19 18:06,"30 Spruce St, Seattle, WA 98101" +246036,Wired Headphones,1,11.99,08/14/19 19:52,"88 Walnut St, Austin, TX 73301" +246037,Apple Airpods Headphones,1,150,08/31/19 18:35,"110 Ridge St, Dallas, TX 75001" +246038,Macbook Pro Laptop,1,1700,08/24/19 12:47,"942 Lakeview St, Los Angeles, CA 90001" +246039,27in 4K Gaming Monitor,1,389.99,08/11/19 20:10,"908 14th St, Boston, MA 02215" +246040,Bose SoundSport Headphones,1,99.99,08/14/19 19:29,"163 Willow St, New York City, NY 10001" +246041,AA Batteries (4-pack),1,3.84,08/05/19 07:09,"615 14th St, Boston, MA 02215" +246042,Flatscreen TV,1,300,08/17/19 06:02,"273 9th St, Boston, MA 02215" +246043,Vareebadd Phone,1,400,08/18/19 14:17,"90 Jefferson St, Los Angeles, CA 90001" +246044,ThinkPad Laptop,1,999.99,08/21/19 09:47,"294 Main St, Portland, ME 04101" +246045,USB-C Charging Cable,1,11.95,08/13/19 19:16,"640 Hickory St, Seattle, WA 98101" +246046,Wired Headphones,1,11.99,08/01/19 15:55,"223 11th St, New York City, NY 10001" +246047,Bose SoundSport Headphones,1,99.99,08/09/19 16:52,"813 Lakeview St, Los Angeles, CA 90001" +246048,Lightning Charging Cable,1,14.95,08/06/19 12:36,"491 9th St, San Francisco, CA 94016" +246049,USB-C Charging Cable,1,11.95,08/27/19 10:17,"932 River St, Los Angeles, CA 90001" +246050,Bose SoundSport Headphones,1,99.99,08/10/19 20:50,"700 Dogwood St, New York City, NY 10001" +246051,Lightning Charging Cable,2,14.95,08/22/19 21:38,"843 Wilson St, New York City, NY 10001" +246052,ThinkPad Laptop,1,999.99,08/15/19 11:31,"88 Lakeview St, Dallas, TX 75001" +246053,AA Batteries (4-pack),1,3.84,08/17/19 15:14,"61 Wilson St, Austin, TX 73301" +246054,AA Batteries (4-pack),1,3.84,08/11/19 12:26,"276 Forest St, Austin, TX 73301" +246055,Apple Airpods Headphones,1,150,08/12/19 00:33,"835 Lake St, Dallas, TX 75001" +246056,Bose SoundSport Headphones,1,99.99,08/19/19 13:21,"89 5th St, Dallas, TX 75001" +246057,Google Phone,1,600,08/17/19 12:31,"839 Ridge St, Portland, OR 97035" +246058,Lightning Charging Cable,1,14.95,08/24/19 21:15,"606 11th St, Portland, ME 04101" +246059,20in Monitor,1,109.99,08/27/19 21:54,"108 5th St, Seattle, WA 98101" +246060,ThinkPad Laptop,1,999.99,08/02/19 17:17,"632 Cedar St, San Francisco, CA 94016" +246061,20in Monitor,1,109.99,08/17/19 14:48,"702 Maple St, San Francisco, CA 94016" +246062,AA Batteries (4-pack),1,3.84,08/08/19 16:23,"958 13th St, Los Angeles, CA 90001" +246063,AAA Batteries (4-pack),1,2.99,08/26/19 08:01,"8 Cedar St, San Francisco, CA 94016" +246064,Apple Airpods Headphones,1,150,08/25/19 10:45,"798 Forest St, San Francisco, CA 94016" +246065,27in FHD Monitor,1,149.99,08/10/19 19:51,"116 Hill St, Boston, MA 02215" +246066,AA Batteries (4-pack),1,3.84,08/19/19 22:04,"938 6th St, San Francisco, CA 94016" +246067,AA Batteries (4-pack),1,3.84,08/19/19 07:36,"644 Spruce St, New York City, NY 10001" +246068,34in Ultrawide Monitor,1,379.99,08/23/19 03:43,"667 Center St, Portland, OR 97035" +246069,Google Phone,1,600,08/04/19 09:22,"101 1st St, Los Angeles, CA 90001" +246070,Lightning Charging Cable,2,14.95,08/07/19 20:58,"51 Highland St, San Francisco, CA 94016" +246071,Lightning Charging Cable,1,14.95,08/07/19 09:08,"857 Johnson St, Los Angeles, CA 90001" +246072,Bose SoundSport Headphones,1,99.99,08/12/19 17:05,"386 Lake St, Dallas, TX 75001" +246073,Macbook Pro Laptop,1,1700,08/12/19 20:14,"129 14th St, Seattle, WA 98101" +246074,AA Batteries (4-pack),1,3.84,08/30/19 21:42,"455 Johnson St, Boston, MA 02215" +246075,Lightning Charging Cable,1,14.95,08/05/19 03:22,"600 7th St, Los Angeles, CA 90001" +246076,Vareebadd Phone,1,400,08/22/19 09:29,"378 Willow St, Portland, OR 97035" +246077,ThinkPad Laptop,1,999.99,08/05/19 18:14,"865 Park St, Los Angeles, CA 90001" +246078,AAA Batteries (4-pack),1,2.99,08/15/19 01:16,"651 Highland St, Austin, TX 73301" +246079,iPhone,1,700,08/12/19 19:23,"401 Dogwood St, San Francisco, CA 94016" +246080,USB-C Charging Cable,1,11.95,08/09/19 10:44,"895 4th St, Dallas, TX 75001" +246081,Wired Headphones,1,11.99,08/18/19 15:15,"5 Sunset St, Los Angeles, CA 90001" +246082,Apple Airpods Headphones,1,150,08/13/19 16:42,"843 Elm St, Los Angeles, CA 90001" +246083,Wired Headphones,1,11.99,08/07/19 02:04,"950 Cherry St, Portland, OR 97035" +246084,27in FHD Monitor,1,149.99,08/18/19 13:05,"477 5th St, San Francisco, CA 94016" +246085,USB-C Charging Cable,1,11.95,08/03/19 10:12,"841 13th St, Boston, MA 02215" +246086,AA Batteries (4-pack),1,3.84,08/04/19 09:33,"979 Madison St, New York City, NY 10001" +246087,Apple Airpods Headphones,1,150,08/01/19 12:20,"709 Lake St, Boston, MA 02215" +246088,Macbook Pro Laptop,1,1700,08/04/19 16:57,"946 Willow St, San Francisco, CA 94016" +246089,AA Batteries (4-pack),3,3.84,08/24/19 14:12,"580 Johnson St, New York City, NY 10001" +246090,Flatscreen TV,1,300,08/06/19 20:00,"797 South St, New York City, NY 10001" +246091,Lightning Charging Cable,1,14.95,08/05/19 21:22,"248 10th St, Boston, MA 02215" +246092,USB-C Charging Cable,1,11.95,08/08/19 19:18,"661 Johnson St, Portland, ME 04101" +246093,27in FHD Monitor,1,149.99,08/20/19 23:12,"336 Elm St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +246094,27in 4K Gaming Monitor,1,389.99,08/16/19 22:45,"720 Wilson St, Dallas, TX 75001" +246095,Wired Headphones,1,11.99,08/27/19 11:16,"677 Elm St, New York City, NY 10001" +246096,Vareebadd Phone,1,400,08/14/19 21:48,"272 Forest St, Seattle, WA 98101" +246097,Wired Headphones,1,11.99,08/17/19 15:43,"730 Main St, Seattle, WA 98101" +246098,AAA Batteries (4-pack),1,2.99,08/31/19 17:01,"298 Lakeview St, Atlanta, GA 30301" +246099,USB-C Charging Cable,1,11.95,08/03/19 07:48,"45 Church St, Dallas, TX 75001" +246100,AA Batteries (4-pack),1,3.84,08/07/19 09:31,"448 Spruce St, Dallas, TX 75001" +246101,Lightning Charging Cable,1,14.95,08/16/19 11:25,"974 Willow St, Seattle, WA 98101" +246102,Bose SoundSport Headphones,1,99.99,08/07/19 14:57,"110 Johnson St, Los Angeles, CA 90001" +246103,AAA Batteries (4-pack),1,2.99,08/30/19 23:59,"553 Washington St, Dallas, TX 75001" +246104,Apple Airpods Headphones,1,150,08/05/19 15:01,"875 5th St, Dallas, TX 75001" +246105,Lightning Charging Cable,1,14.95,08/25/19 11:05,"745 Meadow St, New York City, NY 10001" +246106,AA Batteries (4-pack),1,3.84,08/19/19 15:59,"660 Hill St, Atlanta, GA 30301" +246107,Google Phone,1,600,08/09/19 07:58,"236 Madison St, San Francisco, CA 94016" +246108,ThinkPad Laptop,1,999.99,08/30/19 20:54,"752 Highland St, San Francisco, CA 94016" +246109,27in FHD Monitor,1,149.99,08/29/19 19:24,"436 Spruce St, San Francisco, CA 94016" +246110,20in Monitor,1,109.99,08/11/19 17:08,"723 Hill St, San Francisco, CA 94016" +246111,27in FHD Monitor,1,149.99,08/15/19 13:03,"945 Forest St, Seattle, WA 98101" +246112,Lightning Charging Cable,1,14.95,08/31/19 00:14,"470 Jackson St, Dallas, TX 75001" +246113,27in FHD Monitor,1,149.99,08/06/19 11:08,"354 6th St, Los Angeles, CA 90001" +246114,Macbook Pro Laptop,1,1700,08/03/19 12:05,"498 10th St, Seattle, WA 98101" +246115,USB-C Charging Cable,1,11.95,08/17/19 12:14,"847 Walnut St, Dallas, TX 75001" +246116,USB-C Charging Cable,1,11.95,08/07/19 18:12,"689 Jefferson St, San Francisco, CA 94016" +246117,Wired Headphones,1,11.99,08/23/19 10:26,"598 Sunset St, New York City, NY 10001" +246118,34in Ultrawide Monitor,1,379.99,08/02/19 11:03,"183 River St, Austin, TX 73301" +246119,AA Batteries (4-pack),1,3.84,08/30/19 22:33,"930 Willow St, Dallas, TX 75001" +246120,ThinkPad Laptop,1,999.99,08/21/19 14:51,"466 Main St, Atlanta, GA 30301" +246121,AA Batteries (4-pack),1,3.84,08/26/19 13:46,"232 14th St, San Francisco, CA 94016" +246122,Lightning Charging Cable,1,14.95,08/03/19 12:28,"778 Jackson St, Atlanta, GA 30301" +246122,Wired Headphones,1,11.99,08/03/19 12:28,"778 Jackson St, Atlanta, GA 30301" +246123,27in FHD Monitor,1,149.99,08/05/19 23:42,"858 Spruce St, Los Angeles, CA 90001" +246124,Lightning Charging Cable,1,14.95,08/27/19 12:09,"954 Cherry St, Portland, OR 97035" +246125,USB-C Charging Cable,1,11.95,08/15/19 21:21,"798 11th St, Los Angeles, CA 90001" +246126,Wired Headphones,1,11.99,08/12/19 01:36,"347 13th St, Boston, MA 02215" +246127,AA Batteries (4-pack),1,3.84,08/26/19 16:37,"665 Jackson St, San Francisco, CA 94016" +246128,LG Dryer,1,600.0,08/12/19 03:35,"486 Lake St, Boston, MA 02215" +246129,iPhone,1,700,08/27/19 17:16,"287 Main St, Portland, OR 97035" +246130,Bose SoundSport Headphones,1,99.99,08/07/19 01:15,"593 Walnut St, Seattle, WA 98101" +246131,27in FHD Monitor,1,149.99,08/17/19 18:03,"67 Lincoln St, Dallas, TX 75001" +246132,Lightning Charging Cable,1,14.95,08/19/19 20:29,"523 Lincoln St, Los Angeles, CA 90001" +246133,Lightning Charging Cable,1,14.95,08/24/19 10:02,"621 2nd St, Boston, MA 02215" +246134,Apple Airpods Headphones,1,150,08/25/19 15:57,"86 7th St, Boston, MA 02215" +246135,Bose SoundSport Headphones,1,99.99,08/14/19 22:28,"344 Jefferson St, Austin, TX 73301" +246136,Wired Headphones,1,11.99,08/22/19 12:38,"432 Hickory St, Los Angeles, CA 90001" +246137,27in 4K Gaming Monitor,1,389.99,08/17/19 19:54,"414 Center St, Los Angeles, CA 90001" +246138,Bose SoundSport Headphones,1,99.99,08/14/19 13:13,"726 South St, San Francisco, CA 94016" +246138,Apple Airpods Headphones,1,150,08/14/19 13:13,"726 South St, San Francisco, CA 94016" +246139,Lightning Charging Cable,1,14.95,08/05/19 20:48,"670 Washington St, Austin, TX 73301" +246140,Wired Headphones,1,11.99,08/25/19 23:53,"605 6th St, San Francisco, CA 94016" +246141,Flatscreen TV,1,300,08/21/19 18:09,"200 Madison St, Dallas, TX 75001" +246142,AAA Batteries (4-pack),1,2.99,08/27/19 18:14,"753 North St, Portland, OR 97035" +246143,USB-C Charging Cable,1,11.95,08/03/19 15:35,"807 Ridge St, Los Angeles, CA 90001" +246144,27in FHD Monitor,1,149.99,08/28/19 20:08,"104 Lakeview St, Los Angeles, CA 90001" +246145,Wired Headphones,1,11.99,08/26/19 02:45,"742 1st St, Austin, TX 73301" +246146,ThinkPad Laptop,1,999.99,08/17/19 14:51,"570 Washington St, Dallas, TX 75001" +246147,Apple Airpods Headphones,1,150,08/14/19 19:22,"205 Lakeview St, New York City, NY 10001" +246148,USB-C Charging Cable,1,11.95,08/04/19 14:18,"53 Hill St, New York City, NY 10001" +246149,AAA Batteries (4-pack),1,2.99,08/10/19 19:39,"382 Lakeview St, Dallas, TX 75001" +246150,AAA Batteries (4-pack),1,2.99,08/13/19 09:20,"356 North St, New York City, NY 10001" +246151,Google Phone,1,600,08/24/19 21:16,"849 8th St, Austin, TX 73301" +246151,USB-C Charging Cable,1,11.95,08/24/19 21:16,"849 8th St, Austin, TX 73301" +246152,27in 4K Gaming Monitor,1,389.99,08/18/19 17:16,"790 Sunset St, Atlanta, GA 30301" +246153,ThinkPad Laptop,1,999.99,08/20/19 19:48,"25 North St, Portland, OR 97035" +246154,20in Monitor,1,109.99,08/20/19 11:54,"644 Dogwood St, Seattle, WA 98101" +246155,27in 4K Gaming Monitor,1,389.99,08/28/19 12:39,"209 Park St, San Francisco, CA 94016" +246156,Bose SoundSport Headphones,1,99.99,08/31/19 22:45,"93 Forest St, New York City, NY 10001" +246157,20in Monitor,1,109.99,08/03/19 00:52,"770 Park St, Los Angeles, CA 90001" +246158,USB-C Charging Cable,1,11.95,08/07/19 14:30,"883 Dogwood St, San Francisco, CA 94016" +246159,USB-C Charging Cable,1,11.95,08/16/19 22:49,"847 Washington St, Austin, TX 73301" +246160,Apple Airpods Headphones,1,150,08/01/19 21:56,"297 Madison St, Boston, MA 02215" +246161,AA Batteries (4-pack),1,3.84,08/29/19 20:54,"968 Main St, Dallas, TX 75001" +246162,Lightning Charging Cable,1,14.95,08/13/19 04:52,"617 12th St, Seattle, WA 98101" +246163,Flatscreen TV,1,300,08/05/19 20:56,"282 4th St, San Francisco, CA 94016" +246164,Lightning Charging Cable,1,14.95,08/29/19 01:55,"795 Madison St, Boston, MA 02215" +246165,Apple Airpods Headphones,1,150,08/17/19 18:16,"232 Maple St, Los Angeles, CA 90001" +246166,Google Phone,1,600,08/22/19 12:21,"763 Ridge St, San Francisco, CA 94016" +246167,USB-C Charging Cable,1,11.95,08/14/19 12:56,"889 Jackson St, San Francisco, CA 94016" +246168,20in Monitor,1,109.99,08/24/19 09:18,"393 Center St, San Francisco, CA 94016" +246169,USB-C Charging Cable,2,11.95,08/15/19 18:34,"709 Church St, Portland, OR 97035" +246170,Wired Headphones,1,11.99,08/12/19 11:50,"411 2nd St, New York City, NY 10001" +246171,Wired Headphones,1,11.99,08/09/19 21:10,"603 4th St, New York City, NY 10001" +246172,USB-C Charging Cable,1,11.95,08/03/19 22:12,"250 Lakeview St, Los Angeles, CA 90001" +246173,Bose SoundSport Headphones,1,99.99,08/02/19 12:52,"509 Cedar St, New York City, NY 10001" +246174,AA Batteries (4-pack),1,3.84,08/10/19 16:36,"986 Hill St, San Francisco, CA 94016" +246175,AA Batteries (4-pack),1,3.84,08/21/19 12:10,"352 14th St, San Francisco, CA 94016" +246176,Flatscreen TV,1,300,08/13/19 02:23,"733 Walnut St, Portland, OR 97035" +246177,AAA Batteries (4-pack),2,2.99,08/07/19 15:47,"853 Church St, Austin, TX 73301" +246178,Macbook Pro Laptop,1,1700,08/18/19 11:54,"864 Washington St, Seattle, WA 98101" +246179,AA Batteries (4-pack),1,3.84,08/11/19 03:52,"944 Meadow St, San Francisco, CA 94016" +246180,ThinkPad Laptop,1,999.99,08/19/19 11:45,"605 Main St, Boston, MA 02215" +246181,Lightning Charging Cable,2,14.95,08/14/19 22:24,"412 Lakeview St, New York City, NY 10001" +246182,Apple Airpods Headphones,1,150,08/10/19 18:01,"721 Hill St, Dallas, TX 75001" +246183,AAA Batteries (4-pack),3,2.99,08/16/19 13:39,"619 14th St, Los Angeles, CA 90001" +246184,Lightning Charging Cable,1,14.95,08/24/19 10:09,"558 West St, Los Angeles, CA 90001" +246185,34in Ultrawide Monitor,1,379.99,08/17/19 00:24,"707 Johnson St, San Francisco, CA 94016" +246186,AA Batteries (4-pack),1,3.84,08/22/19 11:14,"496 Spruce St, New York City, NY 10001" +246187,Apple Airpods Headphones,1,150,08/17/19 22:49,"688 12th St, New York City, NY 10001" +246188,ThinkPad Laptop,1,999.99,08/13/19 17:49,"526 River St, Los Angeles, CA 90001" +246189,Wired Headphones,1,11.99,08/23/19 14:50,"549 Hill St, San Francisco, CA 94016" +246190,iPhone,1,700,08/28/19 13:01,"860 Forest St, Portland, OR 97035" +246191,ThinkPad Laptop,1,999.99,08/24/19 01:28,"107 Main St, Dallas, TX 75001" +246192,AA Batteries (4-pack),2,3.84,08/02/19 15:23,"395 Washington St, Austin, TX 73301" +246193,27in 4K Gaming Monitor,1,389.99,08/16/19 15:47,"37 Wilson St, Seattle, WA 98101" +246194,Wired Headphones,1,11.99,08/17/19 16:19,"222 Forest St, San Francisco, CA 94016" +246195,27in 4K Gaming Monitor,1,389.99,08/20/19 00:08,"439 14th St, Atlanta, GA 30301" +246196,Apple Airpods Headphones,1,150,08/06/19 15:36,"420 10th St, Seattle, WA 98101" +246197,ThinkPad Laptop,1,999.99,08/20/19 19:09,"458 2nd St, Austin, TX 73301" +246198,iPhone,1,700,08/23/19 09:30,"400 4th St, Seattle, WA 98101" +246199,Lightning Charging Cable,1,14.95,08/19/19 18:34,"311 Adams St, San Francisco, CA 94016" +246200,Bose SoundSport Headphones,1,99.99,08/26/19 13:05,"500 Elm St, Boston, MA 02215" +246201,Lightning Charging Cable,1,14.95,08/27/19 11:26,"847 Madison St, Portland, OR 97035" +246202,AA Batteries (4-pack),1,3.84,08/11/19 11:42,"810 West St, Atlanta, GA 30301" +246203,iPhone,1,700,08/22/19 19:19,"805 River St, Los Angeles, CA 90001" +246204,Lightning Charging Cable,1,14.95,08/15/19 22:20,"161 West St, New York City, NY 10001" +246205,Lightning Charging Cable,1,14.95,08/17/19 07:44,"561 1st St, San Francisco, CA 94016" +246206,Lightning Charging Cable,1,14.95,08/20/19 10:57,"65 13th St, Los Angeles, CA 90001" +246207,Wired Headphones,1,11.99,08/02/19 11:34,"199 5th St, Los Angeles, CA 90001" +246208,AA Batteries (4-pack),1,3.84,08/20/19 20:37,"109 Church St, San Francisco, CA 94016" +246209,AA Batteries (4-pack),1,3.84,08/12/19 02:07,"254 8th St, Portland, OR 97035" +246210,Lightning Charging Cable,1,14.95,08/07/19 07:53,"628 6th St, Dallas, TX 75001" +246211,AA Batteries (4-pack),1,3.84,08/21/19 21:12,"46 Elm St, Boston, MA 02215" +246212,Lightning Charging Cable,1,14.95,08/01/19 19:43,"618 Jackson St, New York City, NY 10001" +246213,AAA Batteries (4-pack),1,2.99,08/07/19 18:05,"832 11th St, Seattle, WA 98101" +246214,27in FHD Monitor,1,149.99,08/01/19 14:07,"470 13th St, Portland, OR 97035" +246215,AA Batteries (4-pack),1,3.84,08/21/19 15:33,"435 Main St, Dallas, TX 75001" +246216,Apple Airpods Headphones,1,150,08/03/19 11:39,"27 8th St, Boston, MA 02215" +246216,Google Phone,1,600,08/03/19 11:39,"27 8th St, Boston, MA 02215" +246217,Lightning Charging Cable,1,14.95,08/20/19 15:38,"516 Maple St, Atlanta, GA 30301" +246218,27in 4K Gaming Monitor,1,389.99,08/04/19 12:12,"535 Church St, New York City, NY 10001" +246219,27in FHD Monitor,1,149.99,08/10/19 20:18,"590 Cherry St, Boston, MA 02215" +246220,iPhone,1,700,08/19/19 18:35,"616 7th St, Los Angeles, CA 90001" +246221,AA Batteries (4-pack),1,3.84,08/21/19 19:18,"819 Church St, Atlanta, GA 30301" +246222,Google Phone,1,600,08/26/19 13:10,"96 Washington St, San Francisco, CA 94016" +246223,27in FHD Monitor,1,149.99,08/22/19 19:43,"51 Meadow St, Atlanta, GA 30301" +246224,AA Batteries (4-pack),1,3.84,08/01/19 12:17,"778 2nd St, Portland, OR 97035" +246225,Flatscreen TV,1,300,08/29/19 17:38,"14 Jefferson St, Los Angeles, CA 90001" +246226,Flatscreen TV,1,300,08/19/19 03:54,"375 Main St, Los Angeles, CA 90001" +246227,27in 4K Gaming Monitor,1,389.99,08/15/19 16:26,"623 Pine St, New York City, NY 10001" +246228,iPhone,1,700,08/18/19 13:59,"661 4th St, Portland, OR 97035" +246229,34in Ultrawide Monitor,1,379.99,08/09/19 23:58,"663 Jefferson St, San Francisco, CA 94016" +246230,USB-C Charging Cable,1,11.95,08/01/19 19:04,"255 West St, Seattle, WA 98101" +246231,AA Batteries (4-pack),1,3.84,08/10/19 12:50,"512 13th St, San Francisco, CA 94016" +246232,AA Batteries (4-pack),1,3.84,08/25/19 20:02,"555 Main St, Dallas, TX 75001" +246233,Lightning Charging Cable,1,14.95,09/01/19 04:18,"285 Center St, San Francisco, CA 94016" +246234,27in 4K Gaming Monitor,1,389.99,08/28/19 23:56,"967 Dogwood St, Austin, TX 73301" +246235,Lightning Charging Cable,1,14.95,08/28/19 15:12,"882 River St, Los Angeles, CA 90001" +246235,Lightning Charging Cable,1,14.95,08/28/19 15:12,"882 River St, Los Angeles, CA 90001" +246236,AAA Batteries (4-pack),2,2.99,08/01/19 21:17,"445 Jefferson St, Dallas, TX 75001" +246237,ThinkPad Laptop,1,999.99,08/23/19 17:50,"828 Jackson St, Boston, MA 02215" +246238,Lightning Charging Cable,1,14.95,08/23/19 22:50,"315 7th St, Los Angeles, CA 90001" +246239,Bose SoundSport Headphones,1,99.99,08/14/19 12:45,"464 13th St, Boston, MA 02215" +246240,Bose SoundSport Headphones,1,99.99,08/13/19 12:21,"627 Lakeview St, San Francisco, CA 94016" +246241,34in Ultrawide Monitor,1,379.99,08/20/19 14:01,"334 Wilson St, San Francisco, CA 94016" +246242,AAA Batteries (4-pack),4,2.99,08/06/19 23:00,"246 River St, Dallas, TX 75001" +246243,34in Ultrawide Monitor,1,379.99,08/29/19 19:24,"685 Hill St, San Francisco, CA 94016" +246244,iPhone,1,700,08/12/19 14:48,"888 Forest St, Los Angeles, CA 90001" +246245,Wired Headphones,1,11.99,08/03/19 10:02,"383 Lake St, Los Angeles, CA 90001" +246246,Wired Headphones,1,11.99,08/06/19 22:53,"523 Washington St, Los Angeles, CA 90001" +246247,USB-C Charging Cable,1,11.95,08/30/19 00:43,"268 Church St, New York City, NY 10001" +246248,Lightning Charging Cable,1,14.95,08/26/19 13:42,"401 12th St, Dallas, TX 75001" +246249,Lightning Charging Cable,1,14.95,08/28/19 10:36,"243 Lakeview St, Los Angeles, CA 90001" +246250,Wired Headphones,3,11.99,08/05/19 19:46,"779 Hill St, Portland, OR 97035" +246251,Lightning Charging Cable,1,14.95,08/26/19 07:26,"621 9th St, Portland, OR 97035" +246252,Lightning Charging Cable,1,14.95,08/12/19 18:09,"766 2nd St, Dallas, TX 75001" +246253,AA Batteries (4-pack),1,3.84,08/03/19 17:08,"236 Forest St, Boston, MA 02215" +246254,AA Batteries (4-pack),1,3.84,08/07/19 10:01,"688 Highland St, New York City, NY 10001" +246255,USB-C Charging Cable,1,11.95,08/03/19 23:55,"823 Lake St, Boston, MA 02215" +246256,Wired Headphones,1,11.99,08/27/19 11:04,"680 Lake St, San Francisco, CA 94016" +246257,Apple Airpods Headphones,1,150,08/23/19 12:20,"672 5th St, Atlanta, GA 30301" +246258,USB-C Charging Cable,1,11.95,08/09/19 13:19,"181 Willow St, Los Angeles, CA 90001" +246259,34in Ultrawide Monitor,1,379.99,08/03/19 16:14,"631 Meadow St, San Francisco, CA 94016" +246260,iPhone,1,700,08/06/19 16:47,"669 Walnut St, San Francisco, CA 94016" +246261,34in Ultrawide Monitor,1,379.99,08/26/19 23:27,"1 Park St, Portland, OR 97035" +246262,Wired Headphones,1,11.99,08/04/19 22:55,"480 Main St, Los Angeles, CA 90001" +246263,Lightning Charging Cable,1,14.95,08/06/19 09:14,"779 Jackson St, Dallas, TX 75001" +246264,ThinkPad Laptop,1,999.99,08/24/19 19:35,"93 Willow St, Austin, TX 73301" +246265,AA Batteries (4-pack),1,3.84,08/21/19 09:50,"838 River St, San Francisco, CA 94016" +246266,Macbook Pro Laptop,1,1700,08/27/19 22:44,"598 Center St, New York City, NY 10001" +246267,AA Batteries (4-pack),5,3.84,08/18/19 12:00,"980 Chestnut St, Boston, MA 02215" +246268,Macbook Pro Laptop,1,1700,08/05/19 18:04,"303 Pine St, Austin, TX 73301" +246269,Lightning Charging Cable,1,14.95,08/31/19 08:02,"375 11th St, Atlanta, GA 30301" +246270,USB-C Charging Cable,1,11.95,08/09/19 16:10,"327 2nd St, Los Angeles, CA 90001" +246271,Google Phone,1,600,08/20/19 10:57,"544 Meadow St, San Francisco, CA 94016" +246271,USB-C Charging Cable,1,11.95,08/20/19 10:57,"544 Meadow St, San Francisco, CA 94016" +246272,Wired Headphones,1,11.99,08/22/19 15:56,"786 West St, Austin, TX 73301" +246273,AA Batteries (4-pack),1,3.84,08/07/19 10:30,"385 Cedar St, Los Angeles, CA 90001" +246274,27in FHD Monitor,1,149.99,08/17/19 20:10,"70 Highland St, Los Angeles, CA 90001" +246275,Apple Airpods Headphones,1,150,08/21/19 13:44,"588 12th St, Dallas, TX 75001" +246276,AAA Batteries (4-pack),1,2.99,08/31/19 12:27,"523 9th St, San Francisco, CA 94016" +246277,Lightning Charging Cable,3,14.95,08/17/19 17:05,"305 Washington St, Boston, MA 02215" +246278,Apple Airpods Headphones,1,150,08/25/19 23:11,"100 Lakeview St, San Francisco, CA 94016" +246279,Macbook Pro Laptop,1,1700,08/21/19 12:09,"233 Pine St, San Francisco, CA 94016" +246280,27in FHD Monitor,2,149.99,08/17/19 22:51,"877 13th St, New York City, NY 10001" +246281,USB-C Charging Cable,1,11.95,08/28/19 11:55,"593 Sunset St, Seattle, WA 98101" +246282,Lightning Charging Cable,1,14.95,08/20/19 19:16,"60 4th St, San Francisco, CA 94016" +246283,Google Phone,1,600,08/10/19 14:01,"564 Cherry St, New York City, NY 10001" +246284,Lightning Charging Cable,1,14.95,08/08/19 19:24,"506 Walnut St, Portland, OR 97035" +246285,Wired Headphones,1,11.99,08/18/19 09:01,"618 Jackson St, Boston, MA 02215" +246286,20in Monitor,1,109.99,08/24/19 17:40,"336 2nd St, New York City, NY 10001" +246287,AAA Batteries (4-pack),1,2.99,08/28/19 14:08,"226 4th St, Los Angeles, CA 90001" +246288,Wired Headphones,1,11.99,08/13/19 18:44,"768 6th St, Atlanta, GA 30301" +246289,Lightning Charging Cable,1,14.95,08/01/19 08:49,"281 6th St, Los Angeles, CA 90001" +246290,Lightning Charging Cable,1,14.95,08/13/19 11:36,"97 Lakeview St, Los Angeles, CA 90001" +246291,AAA Batteries (4-pack),1,2.99,08/05/19 13:46,"638 2nd St, New York City, NY 10001" +246292,AA Batteries (4-pack),1,3.84,08/07/19 14:37,"986 Maple St, Boston, MA 02215" +246293,27in FHD Monitor,1,149.99,08/05/19 07:55,"246 Main St, Los Angeles, CA 90001" +246294,Lightning Charging Cable,1,14.95,08/20/19 13:36,"979 Cedar St, Austin, TX 73301" +246295,LG Washing Machine,1,600.0,08/20/19 06:02,"438 5th St, New York City, NY 10001" +246296,AAA Batteries (4-pack),2,2.99,08/14/19 14:23,"422 Madison St, New York City, NY 10001" +246297,27in FHD Monitor,1,149.99,08/22/19 14:20,"591 Cherry St, San Francisco, CA 94016" +246298,Wired Headphones,1,11.99,08/20/19 21:29,"497 Jackson St, San Francisco, CA 94016" +246299,20in Monitor,1,109.99,08/30/19 17:10,"639 Jackson St, Los Angeles, CA 90001" +246300,20in Monitor,1,109.99,08/07/19 13:32,"398 10th St, Portland, OR 97035" +246301,AA Batteries (4-pack),1,3.84,08/31/19 17:59,"581 9th St, New York City, NY 10001" +246302,AA Batteries (4-pack),1,3.84,08/06/19 19:41,"856 Highland St, San Francisco, CA 94016" +246303,AA Batteries (4-pack),1,3.84,08/06/19 19:54,"67 Washington St, Portland, OR 97035" +246304,AA Batteries (4-pack),1,3.84,08/19/19 11:14,"236 Main St, Austin, TX 73301" +246305,USB-C Charging Cable,2,11.95,08/30/19 11:22,"581 Hickory St, Dallas, TX 75001" +246306,AAA Batteries (4-pack),1,2.99,08/25/19 06:31,"826 12th St, San Francisco, CA 94016" +246307,USB-C Charging Cable,1,11.95,08/06/19 09:56,"436 Lake St, Los Angeles, CA 90001" +246308,Lightning Charging Cable,1,14.95,08/03/19 17:07,"654 8th St, New York City, NY 10001" +246309,Apple Airpods Headphones,1,150,08/12/19 12:37,"932 Dogwood St, New York City, NY 10001" +246310,AAA Batteries (4-pack),1,2.99,08/18/19 22:39,"235 Ridge St, Atlanta, GA 30301" +246311,Apple Airpods Headphones,1,150,08/19/19 21:26,"661 Cherry St, Dallas, TX 75001" +246312,AA Batteries (4-pack),1,3.84,08/28/19 11:39,"345 Forest St, San Francisco, CA 94016" +246313,20in Monitor,1,109.99,08/24/19 10:44,"611 5th St, New York City, NY 10001" +246314,Lightning Charging Cable,1,14.95,08/25/19 20:09,"53 Wilson St, Austin, TX 73301" +246315,20in Monitor,1,109.99,08/20/19 20:09,"881 Ridge St, Atlanta, GA 30301" +246316,Bose SoundSport Headphones,1,99.99,08/10/19 20:21,"974 West St, Los Angeles, CA 90001" +246317,Apple Airpods Headphones,1,150,08/21/19 11:17,"329 Hickory St, Dallas, TX 75001" +246318,AAA Batteries (4-pack),3,2.99,08/10/19 12:08,"1 1st St, Seattle, WA 98101" +246319,Lightning Charging Cable,1,14.95,08/28/19 14:53,"915 Hickory St, Dallas, TX 75001" +246320,Wired Headphones,1,11.99,08/22/19 14:21,"573 12th St, San Francisco, CA 94016" +246321,Lightning Charging Cable,1,14.95,08/02/19 19:51,"804 Hickory St, Portland, OR 97035" +246322,iPhone,1,700,08/29/19 16:15,"543 9th St, Los Angeles, CA 90001" +246322,Wired Headphones,1,11.99,08/29/19 16:15,"543 9th St, Los Angeles, CA 90001" +246323,Bose SoundSport Headphones,1,99.99,08/30/19 20:09,"531 Lakeview St, San Francisco, CA 94016" +246324,AAA Batteries (4-pack),1,2.99,08/29/19 11:20,"195 Sunset St, Boston, MA 02215" +246325,iPhone,1,700,08/26/19 18:54,"605 11th St, San Francisco, CA 94016" +246326,iPhone,1,700,08/26/19 18:47,"603 Jefferson St, Dallas, TX 75001" +246327,Wired Headphones,1,11.99,08/09/19 15:05,"492 Chestnut St, Los Angeles, CA 90001" +246328,Apple Airpods Headphones,1,150,08/26/19 15:23,"674 Wilson St, Boston, MA 02215" +246329,USB-C Charging Cable,1,11.95,08/25/19 11:50,"349 Church St, New York City, NY 10001" +246330,iPhone,1,700,08/19/19 11:55,"906 Pine St, San Francisco, CA 94016" +246330,Lightning Charging Cable,1,14.95,08/19/19 11:55,"906 Pine St, San Francisco, CA 94016" +246331,AA Batteries (4-pack),2,3.84,08/15/19 12:55,"304 Hill St, San Francisco, CA 94016" +246332,Apple Airpods Headphones,1,150,08/29/19 14:50,"501 Maple St, San Francisco, CA 94016" +246333,AA Batteries (4-pack),1,3.84,08/17/19 08:03,"921 11th St, Los Angeles, CA 90001" +246334,USB-C Charging Cable,1,11.95,08/31/19 18:27,"598 14th St, Austin, TX 73301" +246335,iPhone,1,700,09/01/19 02:41,"356 4th St, Dallas, TX 75001" +246335,Lightning Charging Cable,1,14.95,09/01/19 02:41,"356 4th St, Dallas, TX 75001" +246336,AAA Batteries (4-pack),2,2.99,08/01/19 10:56,"630 West St, Los Angeles, CA 90001" +246337,Lightning Charging Cable,2,14.95,08/20/19 20:38,"41 Ridge St, Boston, MA 02215" +246338,Apple Airpods Headphones,1,150,08/27/19 10:01,"483 Lincoln St, Los Angeles, CA 90001" +246339,AAA Batteries (4-pack),2,2.99,08/24/19 22:24,"393 12th St, Boston, MA 02215" +246340,AAA Batteries (4-pack),1,2.99,08/13/19 00:19,"831 Hill St, San Francisco, CA 94016" +246341,Apple Airpods Headphones,1,150,08/12/19 06:44,"46 1st St, New York City, NY 10001" +246342,AA Batteries (4-pack),1,3.84,08/14/19 12:04,"567 Park St, San Francisco, CA 94016" +246343,Wired Headphones,1,11.99,08/10/19 20:17,"488 Cherry St, Boston, MA 02215" +246344,AA Batteries (4-pack),1,3.84,08/31/19 08:57,"162 Maple St, Atlanta, GA 30301" +246345,AA Batteries (4-pack),1,3.84,08/10/19 17:58,"596 4th St, Boston, MA 02215" +246346,34in Ultrawide Monitor,1,379.99,08/21/19 14:30,"723 Lake St, Portland, OR 97035" +246347,Wired Headphones,1,11.99,08/07/19 13:05,"94 12th St, Dallas, TX 75001" +246348,27in 4K Gaming Monitor,1,389.99,08/06/19 17:51,"485 13th St, Boston, MA 02215" +246349,Lightning Charging Cable,1,14.95,08/14/19 23:41,"620 Willow St, Los Angeles, CA 90001" +246350,34in Ultrawide Monitor,1,379.99,08/28/19 00:36,"596 Johnson St, San Francisco, CA 94016" +246351,AAA Batteries (4-pack),2,2.99,08/30/19 17:20,"609 Pine St, Austin, TX 73301" +246352,AA Batteries (4-pack),1,3.84,08/26/19 14:08,"380 13th St, Atlanta, GA 30301" +246353,Lightning Charging Cable,1,14.95,08/25/19 13:42,"658 Hill St, New York City, NY 10001" +246354,27in FHD Monitor,1,149.99,08/31/19 13:16,"309 Highland St, New York City, NY 10001" +246355,Bose SoundSport Headphones,1,99.99,08/14/19 16:42,"669 Lakeview St, San Francisco, CA 94016" +246356,Google Phone,1,600,08/14/19 14:44,"643 Washington St, New York City, NY 10001" +246357,Wired Headphones,1,11.99,08/22/19 19:31,"61 Dogwood St, New York City, NY 10001" +246358,Bose SoundSport Headphones,1,99.99,08/12/19 10:33,"450 Cedar St, Los Angeles, CA 90001" +246359,27in FHD Monitor,1,149.99,08/02/19 21:47,"916 Elm St, San Francisco, CA 94016" +246360,Macbook Pro Laptop,1,1700,08/16/19 23:52,"524 Jackson St, Portland, OR 97035" +246361,AA Batteries (4-pack),1,3.84,08/25/19 22:02,"58 Center St, Los Angeles, CA 90001" +246362,Wired Headphones,1,11.99,08/16/19 21:14,"200 Cedar St, Seattle, WA 98101" +246363,Apple Airpods Headphones,1,150,08/29/19 21:39,"166 8th St, Dallas, TX 75001" +246364,AA Batteries (4-pack),1,3.84,08/21/19 14:45,"131 Main St, New York City, NY 10001" +246365,Lightning Charging Cable,1,14.95,08/26/19 06:07,"304 Highland St, San Francisco, CA 94016" +246366,AAA Batteries (4-pack),1,2.99,08/22/19 10:01,"896 Cedar St, Boston, MA 02215" +246367,USB-C Charging Cable,1,11.95,08/16/19 11:00,"421 Hill St, Los Angeles, CA 90001" +246368,iPhone,1,700,08/04/19 17:17,"575 River St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +246369,Lightning Charging Cable,1,14.95,08/07/19 19:35,"975 Adams St, Seattle, WA 98101" +246370,USB-C Charging Cable,1,11.95,08/27/19 15:14,"881 Elm St, Boston, MA 02215" +246371,AAA Batteries (4-pack),2,2.99,08/17/19 11:46,"266 Wilson St, San Francisco, CA 94016" +246372,AAA Batteries (4-pack),1,2.99,08/12/19 11:27,"982 Jackson St, Atlanta, GA 30301" +246373,27in 4K Gaming Monitor,1,389.99,08/24/19 06:33,"391 14th St, Seattle, WA 98101" +246374,Wired Headphones,1,11.99,08/29/19 22:08,"550 Hickory St, Boston, MA 02215" +246375,Lightning Charging Cable,1,14.95,08/07/19 10:11,"612 9th St, San Francisco, CA 94016" +246376,USB-C Charging Cable,1,11.95,08/26/19 10:24,"87 Park St, Atlanta, GA 30301" +246377,Bose SoundSport Headphones,1,99.99,08/30/19 18:42,"814 Jackson St, San Francisco, CA 94016" +246378,Apple Airpods Headphones,1,150,08/25/19 18:00,"929 9th St, San Francisco, CA 94016" +246379,USB-C Charging Cable,1,11.95,08/29/19 16:13,"443 Lakeview St, San Francisco, CA 94016" +246380,Bose SoundSport Headphones,1,99.99,08/13/19 18:35,"349 Lake St, Seattle, WA 98101" +246381,Apple Airpods Headphones,1,150,08/14/19 22:10,"176 Lakeview St, Los Angeles, CA 90001" +246382,Flatscreen TV,1,300,08/25/19 10:43,"705 River St, San Francisco, CA 94016" +246383,Apple Airpods Headphones,1,150,08/02/19 04:13,"78 Hill St, Atlanta, GA 30301" +246384,AAA Batteries (4-pack),2,2.99,08/26/19 19:36,"292 10th St, Boston, MA 02215" +246385,AA Batteries (4-pack),1,3.84,08/12/19 20:26,"624 4th St, Atlanta, GA 30301" +246386,Lightning Charging Cable,1,14.95,08/22/19 12:28,"191 7th St, Portland, OR 97035" +246387,Flatscreen TV,1,300,08/15/19 17:34,"181 Main St, San Francisco, CA 94016" +246388,USB-C Charging Cable,1,11.95,08/01/19 15:12,"535 North St, Seattle, WA 98101" +246389,Macbook Pro Laptop,1,1700,08/12/19 12:01,"457 Meadow St, Portland, OR 97035" +246390,27in 4K Gaming Monitor,1,389.99,08/01/19 17:10,"386 Sunset St, San Francisco, CA 94016" +246391,AAA Batteries (4-pack),2,2.99,08/29/19 12:08,"731 West St, Seattle, WA 98101" +246392,AAA Batteries (4-pack),1,2.99,08/12/19 07:17,"696 2nd St, Austin, TX 73301" +246393,34in Ultrawide Monitor,1,379.99,08/07/19 08:17,"950 7th St, Los Angeles, CA 90001" +246394,AA Batteries (4-pack),2,3.84,08/22/19 19:54,"729 4th St, Dallas, TX 75001" +246395,Lightning Charging Cable,1,14.95,08/04/19 13:24,"920 13th St, Portland, OR 97035" +246396,AA Batteries (4-pack),1,3.84,08/11/19 16:56,"355 Meadow St, Los Angeles, CA 90001" +246397,Apple Airpods Headphones,1,150,08/11/19 18:59,"180 Pine St, San Francisco, CA 94016" +246398,iPhone,1,700,08/10/19 11:10,"250 River St, Boston, MA 02215" +246399,Wired Headphones,1,11.99,08/18/19 18:53,"975 10th St, San Francisco, CA 94016" +246400,Macbook Pro Laptop,1,1700,08/13/19 15:01,"701 River St, San Francisco, CA 94016" +,,,,, +246401,AAA Batteries (4-pack),1,2.99,08/21/19 13:09,"173 Lakeview St, Los Angeles, CA 90001" +246402,Bose SoundSport Headphones,1,99.99,08/13/19 08:53,"640 Jackson St, San Francisco, CA 94016" +246403,Apple Airpods Headphones,1,150,08/20/19 21:07,"262 Sunset St, Atlanta, GA 30301" +246404,AA Batteries (4-pack),1,3.84,08/03/19 14:52,"103 Spruce St, Boston, MA 02215" +246405,AA Batteries (4-pack),1,3.84,08/21/19 11:25,"88 4th St, New York City, NY 10001" +246406,AAA Batteries (4-pack),2,2.99,08/07/19 22:32,"713 4th St, Los Angeles, CA 90001" +246407,Wired Headphones,1,11.99,08/09/19 17:29,"633 7th St, Austin, TX 73301" +246408,Vareebadd Phone,1,400,08/09/19 09:21,"717 Sunset St, Dallas, TX 75001" +246409,Apple Airpods Headphones,1,150,08/26/19 15:10,"392 11th St, Portland, OR 97035" +246410,Flatscreen TV,1,300,08/11/19 22:20,"115 6th St, Portland, OR 97035" +246411,AA Batteries (4-pack),1,3.84,08/30/19 19:30,"833 Lake St, Los Angeles, CA 90001" +246412,Macbook Pro Laptop,1,1700,08/01/19 13:34,"749 12th St, Boston, MA 02215" +246413,AAA Batteries (4-pack),1,2.99,08/29/19 11:04,"812 Cedar St, Austin, TX 73301" +246413,AAA Batteries (4-pack),2,2.99,08/29/19 11:04,"812 Cedar St, Austin, TX 73301" +246414,27in FHD Monitor,1,149.99,08/29/19 14:05,"944 Madison St, Los Angeles, CA 90001" +246415,AA Batteries (4-pack),1,3.84,08/06/19 18:38,"232 Cherry St, Dallas, TX 75001" +246416,27in FHD Monitor,1,149.99,08/31/19 15:57,"144 Lakeview St, Boston, MA 02215" +246417,Macbook Pro Laptop,1,1700,08/27/19 22:46,"806 Park St, San Francisco, CA 94016" +246418,AA Batteries (4-pack),1,3.84,08/24/19 17:46,"356 Madison St, Los Angeles, CA 90001" +246419,AAA Batteries (4-pack),1,2.99,08/16/19 08:12,"511 North St, New York City, NY 10001" +246420,USB-C Charging Cable,1,11.95,08/05/19 14:13,"649 Wilson St, San Francisco, CA 94016" +246421,Bose SoundSport Headphones,1,99.99,08/29/19 12:14,"39 2nd St, Portland, OR 97035" +246422,20in Monitor,1,109.99,08/04/19 20:29,"13 Lakeview St, San Francisco, CA 94016" +246423,Apple Airpods Headphones,1,150,08/03/19 23:00,"938 North St, New York City, NY 10001" +246424,AAA Batteries (4-pack),2,2.99,08/26/19 10:32,"606 Cedar St, Boston, MA 02215" +246425,ThinkPad Laptop,1,999.99,08/11/19 18:34,"916 12th St, Los Angeles, CA 90001" +246426,27in FHD Monitor,1,149.99,08/16/19 13:39,"947 Park St, Los Angeles, CA 90001" +246427,USB-C Charging Cable,1,11.95,08/21/19 16:17,"658 Chestnut St, Austin, TX 73301" +246428,AAA Batteries (4-pack),2,2.99,08/18/19 12:02,"818 2nd St, San Francisco, CA 94016" +246429,Lightning Charging Cable,1,14.95,08/28/19 23:32,"397 4th St, San Francisco, CA 94016" +246430,AAA Batteries (4-pack),1,2.99,08/12/19 20:05,"741 13th St, Atlanta, GA 30301" +246431,AA Batteries (4-pack),1,3.84,08/19/19 18:10,"590 6th St, New York City, NY 10001" +246432,AA Batteries (4-pack),2,3.84,08/19/19 23:35,"922 Main St, Los Angeles, CA 90001" +246433,27in 4K Gaming Monitor,1,389.99,08/26/19 10:14,"272 Maple St, San Francisco, CA 94016" +246434,Wired Headphones,1,11.99,08/21/19 21:48,"601 Hickory St, Los Angeles, CA 90001" +246435,Vareebadd Phone,1,400,08/11/19 02:21,"745 Main St, Dallas, TX 75001" +246436,AA Batteries (4-pack),1,3.84,08/23/19 14:38,"547 Hill St, Boston, MA 02215" +246437,AA Batteries (4-pack),1,3.84,08/16/19 12:40,"53 Adams St, Dallas, TX 75001" +246438,AAA Batteries (4-pack),1,2.99,08/07/19 22:28,"526 Elm St, San Francisco, CA 94016" +246439,LG Dryer,1,600.0,08/27/19 19:46,"426 River St, Boston, MA 02215" +246440,Lightning Charging Cable,1,14.95,08/11/19 11:03,"555 Main St, Seattle, WA 98101" +246441,27in FHD Monitor,1,149.99,08/27/19 09:32,"816 Lake St, Austin, TX 73301" +246442,Lightning Charging Cable,1,14.95,08/28/19 19:35,"452 6th St, Dallas, TX 75001" +246443,Lightning Charging Cable,1,14.95,08/19/19 11:42,"431 1st St, Seattle, WA 98101" +246444,Vareebadd Phone,1,400,08/27/19 12:34,"535 Hill St, Austin, TX 73301" +246445,USB-C Charging Cable,2,11.95,08/09/19 20:09,"980 West St, Atlanta, GA 30301" +246446,27in 4K Gaming Monitor,1,389.99,08/23/19 13:29,"177 Madison St, Boston, MA 02215" +246447,AA Batteries (4-pack),1,3.84,08/21/19 19:15,"419 Cedar St, Portland, ME 04101" +246448,AAA Batteries (4-pack),1,2.99,08/01/19 17:28,"406 Sunset St, Boston, MA 02215" +246449,USB-C Charging Cable,1,11.95,08/31/19 01:52,"2 Sunset St, Boston, MA 02215" +246450,Flatscreen TV,1,300,08/08/19 15:06,"984 Lakeview St, Dallas, TX 75001" +246451,34in Ultrawide Monitor,1,379.99,08/07/19 09:27,"511 Madison St, Dallas, TX 75001" +246452,AAA Batteries (4-pack),1,2.99,08/04/19 11:57,"526 Jefferson St, San Francisco, CA 94016" +246453,USB-C Charging Cable,1,11.95,08/14/19 17:01,"264 River St, Boston, MA 02215" +246454,Bose SoundSport Headphones,1,99.99,08/06/19 21:55,"114 Walnut St, Los Angeles, CA 90001" +246455,AAA Batteries (4-pack),1,2.99,08/02/19 13:31,"983 Ridge St, Boston, MA 02215" +246456,34in Ultrawide Monitor,1,379.99,08/17/19 09:40,"779 8th St, Dallas, TX 75001" +246457,Wired Headphones,1,11.99,08/13/19 19:23,"866 11th St, Los Angeles, CA 90001" +246458,Lightning Charging Cable,1,14.95,08/15/19 20:48,"388 Elm St, Los Angeles, CA 90001" +246459,AAA Batteries (4-pack),1,2.99,09/01/19 02:07,"954 9th St, Dallas, TX 75001" +246460,Lightning Charging Cable,1,14.95,08/15/19 20:20,"856 Wilson St, San Francisco, CA 94016" +246461,AAA Batteries (4-pack),1,2.99,08/02/19 10:18,"244 12th St, Atlanta, GA 30301" +246462,USB-C Charging Cable,1,11.95,08/28/19 14:42,"647 1st St, San Francisco, CA 94016" +246463,Lightning Charging Cable,2,14.95,08/02/19 17:46,"342 10th St, Boston, MA 02215" +246464,USB-C Charging Cable,1,11.95,08/27/19 12:02,"646 Dogwood St, Los Angeles, CA 90001" +246465,USB-C Charging Cable,1,11.95,08/06/19 10:41,"380 West St, Atlanta, GA 30301" +246466,ThinkPad Laptop,1,999.99,08/30/19 19:53,"171 5th St, Portland, OR 97035" +246467,AAA Batteries (4-pack),1,2.99,08/01/19 22:56,"833 Church St, San Francisco, CA 94016" +246468,Bose SoundSport Headphones,1,99.99,08/03/19 19:46,"296 South St, Los Angeles, CA 90001" +246469,20in Monitor,1,109.99,08/09/19 15:16,"998 Cedar St, Atlanta, GA 30301" +246470,iPhone,1,700,08/18/19 19:10,"92 Madison St, Portland, ME 04101" +246471,Lightning Charging Cable,1,14.95,08/19/19 12:22,"932 Jackson St, Los Angeles, CA 90001" +246472,AA Batteries (4-pack),2,3.84,08/04/19 22:15,"242 Washington St, Dallas, TX 75001" +246473,AAA Batteries (4-pack),3,2.99,08/29/19 19:58,"410 7th St, Boston, MA 02215" +246474,27in FHD Monitor,1,149.99,08/04/19 20:36,"699 Jefferson St, New York City, NY 10001" +246475,Lightning Charging Cable,1,14.95,08/15/19 21:59,"9 Lake St, San Francisco, CA 94016" +246476,USB-C Charging Cable,1,11.95,08/05/19 17:55,"98 Highland St, New York City, NY 10001" +246477,Bose SoundSport Headphones,1,99.99,08/28/19 14:16,"315 2nd St, Seattle, WA 98101" +246478,Apple Airpods Headphones,1,150,08/03/19 09:14,"188 Cedar St, Portland, OR 97035" +246479,iPhone,1,700,08/13/19 11:48,"564 Highland St, New York City, NY 10001" +246480,AAA Batteries (4-pack),4,2.99,08/13/19 11:24,"587 West St, Portland, ME 04101" +246481,Apple Airpods Headphones,1,150,08/07/19 20:18,"617 Elm St, San Francisco, CA 94016" +246482,iPhone,1,700,08/13/19 15:24,"599 Chestnut St, San Francisco, CA 94016" +246482,Lightning Charging Cable,1,14.95,08/13/19 15:24,"599 Chestnut St, San Francisco, CA 94016" +246483,27in FHD Monitor,1,149.99,08/25/19 15:25,"215 5th St, Dallas, TX 75001" +246484,USB-C Charging Cable,1,11.95,08/29/19 14:38,"545 11th St, Boston, MA 02215" +246485,20in Monitor,1,109.99,08/18/19 18:25,"361 5th St, Austin, TX 73301" +246486,Apple Airpods Headphones,1,150,08/11/19 13:00,"440 Lincoln St, San Francisco, CA 94016" +246487,Lightning Charging Cable,1,14.95,08/27/19 12:43,"772 7th St, New York City, NY 10001" +246488,Lightning Charging Cable,1,14.95,08/23/19 16:19,"629 11th St, Dallas, TX 75001" +246489,Apple Airpods Headphones,1,150,08/25/19 08:34,"808 South St, New York City, NY 10001" +246490,Apple Airpods Headphones,1,150,08/27/19 15:16,"318 14th St, Boston, MA 02215" +246491,34in Ultrawide Monitor,1,379.99,08/02/19 20:54,"104 Wilson St, Los Angeles, CA 90001" +246492,Bose SoundSport Headphones,1,99.99,08/12/19 16:27,"519 6th St, Boston, MA 02215" +246493,AAA Batteries (4-pack),1,2.99,08/15/19 16:29,"34 Lakeview St, Portland, OR 97035" +246494,AAA Batteries (4-pack),3,2.99,08/10/19 13:24,"768 Ridge St, San Francisco, CA 94016" +246495,AAA Batteries (4-pack),2,2.99,08/13/19 17:02,"645 Dogwood St, Los Angeles, CA 90001" +246496,AAA Batteries (4-pack),1,2.99,08/27/19 18:01,"218 Spruce St, Boston, MA 02215" +246497,Wired Headphones,1,11.99,08/25/19 21:59,"203 Willow St, Seattle, WA 98101" +246497,USB-C Charging Cable,1,11.95,08/25/19 21:59,"203 Willow St, Seattle, WA 98101" +246498,Lightning Charging Cable,1,14.95,08/25/19 13:12,"414 Pine St, Los Angeles, CA 90001" +246499,Apple Airpods Headphones,1,150,08/04/19 16:53,"440 4th St, Portland, OR 97035" +246500,Flatscreen TV,1,300,08/16/19 00:49,"184 Pine St, Seattle, WA 98101" +246501,Lightning Charging Cable,1,14.95,08/09/19 08:10,"452 Hickory St, San Francisco, CA 94016" +246502,AA Batteries (4-pack),1,3.84,08/10/19 10:26,"451 South St, San Francisco, CA 94016" +246503,USB-C Charging Cable,1,11.95,08/30/19 08:22,"614 Park St, Los Angeles, CA 90001" +246504,27in 4K Gaming Monitor,1,389.99,08/16/19 11:16,"694 14th St, San Francisco, CA 94016" +246505,AAA Batteries (4-pack),2,2.99,08/07/19 15:55,"262 Wilson St, Los Angeles, CA 90001" +246506,27in 4K Gaming Monitor,1,389.99,08/01/19 15:11,"11 Hickory St, New York City, NY 10001" +246507,Wired Headphones,1,11.99,08/29/19 21:56,"602 Forest St, Austin, TX 73301" +246508,Wired Headphones,2,11.99,08/16/19 10:34,"92 Lincoln St, San Francisco, CA 94016" +246509,Lightning Charging Cable,1,14.95,08/01/19 19:07,"743 Willow St, Los Angeles, CA 90001" +246510,Wired Headphones,1,11.99,08/19/19 11:00,"566 Center St, Seattle, WA 98101" +246511,Lightning Charging Cable,1,14.95,08/29/19 20:38,"660 Madison St, Los Angeles, CA 90001" +246512,Apple Airpods Headphones,1,150,08/02/19 18:09,"275 11th St, Boston, MA 02215" +246513,Wired Headphones,1,11.99,08/06/19 10:15,"547 Lincoln St, Seattle, WA 98101" +246514,AA Batteries (4-pack),1,3.84,08/13/19 07:40,"962 Cherry St, Los Angeles, CA 90001" +246515,Lightning Charging Cable,1,14.95,08/10/19 10:08,"343 Lincoln St, Dallas, TX 75001" +246516,USB-C Charging Cable,1,11.95,08/02/19 22:53,"37 4th St, Seattle, WA 98101" +246517,Wired Headphones,1,11.99,08/21/19 22:55,"223 Chestnut St, New York City, NY 10001" +246518,Apple Airpods Headphones,1,150,08/16/19 12:41,"101 12th St, Los Angeles, CA 90001" +246519,AAA Batteries (4-pack),1,2.99,08/12/19 08:31,"84 North St, New York City, NY 10001" +,,,,, +246520,Bose SoundSport Headphones,2,99.99,08/22/19 11:14,"109 14th St, Atlanta, GA 30301" +246521,34in Ultrawide Monitor,1,379.99,08/27/19 11:43,"707 Cherry St, New York City, NY 10001" +246522,Wired Headphones,1,11.99,08/13/19 18:31,"892 Ridge St, San Francisco, CA 94016" +246523,Google Phone,1,600,08/13/19 21:10,"527 Pine St, San Francisco, CA 94016" +246524,Flatscreen TV,1,300,08/15/19 17:17,"759 8th St, Los Angeles, CA 90001" +246525,Flatscreen TV,1,300,08/26/19 13:37,"461 12th St, Boston, MA 02215" +246526,Apple Airpods Headphones,1,150,08/05/19 20:03,"261 10th St, San Francisco, CA 94016" +246527,USB-C Charging Cable,1,11.95,08/25/19 08:20,"255 Lakeview St, San Francisco, CA 94016" +246528,Wired Headphones,1,11.99,08/22/19 16:45,"479 Forest St, New York City, NY 10001" +246529,AAA Batteries (4-pack),5,2.99,08/18/19 16:35,"179 Ridge St, Los Angeles, CA 90001" +246530,AA Batteries (4-pack),1,3.84,08/08/19 01:36,"407 Jackson St, New York City, NY 10001" +246531,AA Batteries (4-pack),2,3.84,08/26/19 19:48,"522 Maple St, Seattle, WA 98101" +246532,20in Monitor,1,109.99,08/26/19 22:29,"64 6th St, San Francisco, CA 94016" +246533,Google Phone,1,600,08/16/19 13:34,"250 North St, San Francisco, CA 94016" +246534,Lightning Charging Cable,1,14.95,08/10/19 12:22,"719 Center St, New York City, NY 10001" +246535,Bose SoundSport Headphones,1,99.99,08/02/19 08:32,"187 West St, Boston, MA 02215" +246536,Wired Headphones,1,11.99,08/03/19 09:25,"857 Willow St, Los Angeles, CA 90001" +246537,USB-C Charging Cable,1,11.95,08/10/19 21:00,"939 2nd St, New York City, NY 10001" +246538,Apple Airpods Headphones,1,150,08/23/19 11:42,"173 Ridge St, Los Angeles, CA 90001" +246539,34in Ultrawide Monitor,1,379.99,08/18/19 21:43,"144 Sunset St, Boston, MA 02215" +246540,iPhone,1,700,08/03/19 17:29,"818 13th St, Dallas, TX 75001" +246540,Lightning Charging Cable,1,14.95,08/03/19 17:29,"818 13th St, Dallas, TX 75001" +246541,AAA Batteries (4-pack),1,2.99,08/30/19 16:10,"434 Center St, San Francisco, CA 94016" +246542,AA Batteries (4-pack),2,3.84,08/31/19 14:52,"10 Sunset St, Los Angeles, CA 90001" +246543,Lightning Charging Cable,1,14.95,08/02/19 15:57,"135 12th St, Atlanta, GA 30301" +246544,iPhone,1,700,08/27/19 07:49,"365 1st St, New York City, NY 10001" +246545,Wired Headphones,1,11.99,08/26/19 18:51,"768 2nd St, Austin, TX 73301" +246546,USB-C Charging Cable,2,11.95,08/05/19 14:24,"804 Pine St, New York City, NY 10001" +246547,Bose SoundSport Headphones,1,99.99,08/07/19 00:23,"880 5th St, Seattle, WA 98101" +246548,Bose SoundSport Headphones,1,99.99,08/05/19 08:40,"948 Lincoln St, New York City, NY 10001" +246549,AA Batteries (4-pack),1,3.84,08/24/19 22:24,"802 Walnut St, Boston, MA 02215" +246550,Flatscreen TV,1,300,08/11/19 16:06,"158 Highland St, San Francisco, CA 94016" +246550,iPhone,1,700,08/11/19 16:06,"158 Highland St, San Francisco, CA 94016" +246551,Lightning Charging Cable,1,14.95,08/20/19 23:58,"103 Highland St, Boston, MA 02215" +246552,LG Washing Machine,1,600.0,08/19/19 09:30,"905 Hill St, Atlanta, GA 30301" +246553,Google Phone,1,600,08/05/19 06:59,"645 Ridge St, Boston, MA 02215" +246554,Lightning Charging Cable,1,14.95,08/22/19 11:43,"917 South St, Dallas, TX 75001" +246555,Wired Headphones,2,11.99,08/07/19 18:09,"447 2nd St, New York City, NY 10001" +246556,Bose SoundSport Headphones,1,99.99,08/21/19 18:04,"84 4th St, Los Angeles, CA 90001" +246557,27in FHD Monitor,1,149.99,08/26/19 17:56,"398 4th St, Austin, TX 73301" +246558,iPhone,1,700,08/03/19 15:02,"657 8th St, San Francisco, CA 94016" +246559,Lightning Charging Cable,1,14.95,08/29/19 02:44,"818 6th St, Los Angeles, CA 90001" +246560,Flatscreen TV,1,300,08/23/19 16:53,"215 North St, New York City, NY 10001" +246561,AA Batteries (4-pack),1,3.84,08/23/19 13:23,"413 Washington St, San Francisco, CA 94016" +246562,AAA Batteries (4-pack),3,2.99,08/08/19 18:09,"463 Wilson St, Los Angeles, CA 90001" +246563,Flatscreen TV,1,300,08/15/19 00:03,"667 Meadow St, Dallas, TX 75001" +246564,Lightning Charging Cable,1,14.95,08/24/19 07:25,"907 Cedar St, San Francisco, CA 94016" +246565,20in Monitor,1,109.99,08/18/19 18:05,"14 North St, San Francisco, CA 94016" +246566,27in FHD Monitor,1,149.99,08/20/19 18:18,"241 Johnson St, Austin, TX 73301" +246567,Bose SoundSport Headphones,1,99.99,08/09/19 23:02,"893 Washington St, Seattle, WA 98101" +246568,Lightning Charging Cable,1,14.95,08/28/19 01:28,"765 1st St, San Francisco, CA 94016" +246569,USB-C Charging Cable,1,11.95,08/20/19 19:34,"798 Chestnut St, Los Angeles, CA 90001" +246570,Apple Airpods Headphones,1,150,08/15/19 14:10,"404 2nd St, San Francisco, CA 94016" +246571,Apple Airpods Headphones,1,150,08/12/19 21:48,"940 Hill St, San Francisco, CA 94016" +246572,AA Batteries (4-pack),1,3.84,08/06/19 19:57,"898 Chestnut St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +246573,USB-C Charging Cable,1,11.95,08/31/19 11:05,"361 Spruce St, Los Angeles, CA 90001" +246574,Wired Headphones,1,11.99,08/01/19 22:39,"975 Jefferson St, Atlanta, GA 30301" +246575,ThinkPad Laptop,1,999.99,08/09/19 14:07,"341 2nd St, San Francisco, CA 94016" +246576,Bose SoundSport Headphones,1,99.99,08/28/19 10:45,"242 Forest St, Los Angeles, CA 90001" +246577,Apple Airpods Headphones,1,150,08/26/19 10:35,"320 Washington St, Atlanta, GA 30301" +246578,34in Ultrawide Monitor,1,379.99,08/11/19 21:24,"564 Center St, New York City, NY 10001" +246579,AAA Batteries (4-pack),1,2.99,08/27/19 11:29,"624 Pine St, Boston, MA 02215" +246580,Lightning Charging Cable,1,14.95,08/22/19 09:54,"237 Lincoln St, New York City, NY 10001" +246581,Google Phone,1,600,08/08/19 16:06,"880 1st St, Austin, TX 73301" +246582,AA Batteries (4-pack),1,3.84,08/15/19 12:01,"768 Park St, Portland, OR 97035" +246583,27in FHD Monitor,1,149.99,08/10/19 16:44,"632 Walnut St, San Francisco, CA 94016" +246584,AAA Batteries (4-pack),1,2.99,08/27/19 01:09,"528 Cedar St, Los Angeles, CA 90001" +246585,USB-C Charging Cable,1,11.95,08/05/19 06:01,"511 4th St, Los Angeles, CA 90001" +246585,Lightning Charging Cable,1,14.95,08/05/19 06:01,"511 4th St, Los Angeles, CA 90001" +246586,Bose SoundSport Headphones,1,99.99,08/29/19 00:13,"757 11th St, San Francisco, CA 94016" +246587,Apple Airpods Headphones,1,150,08/05/19 22:58,"826 7th St, San Francisco, CA 94016" +246588,Macbook Pro Laptop,1,1700,08/10/19 16:18,"928 4th St, Seattle, WA 98101" +246589,USB-C Charging Cable,2,11.95,08/18/19 20:26,"994 Cherry St, Portland, OR 97035" +246590,Apple Airpods Headphones,1,150,08/29/19 19:56,"900 Ridge St, Dallas, TX 75001" +246591,ThinkPad Laptop,1,999.99,08/09/19 21:03,"427 1st St, Los Angeles, CA 90001" +246591,AAA Batteries (4-pack),2,2.99,08/09/19 21:03,"427 1st St, Los Angeles, CA 90001" +246592,Apple Airpods Headphones,1,150,08/03/19 06:13,"882 River St, Austin, TX 73301" +246593,AA Batteries (4-pack),1,3.84,08/02/19 18:19,"349 12th St, Portland, OR 97035" +246594,34in Ultrawide Monitor,1,379.99,08/08/19 12:54,"986 Center St, San Francisco, CA 94016" +246595,27in 4K Gaming Monitor,1,389.99,08/30/19 23:34,"148 5th St, Seattle, WA 98101" +246596,USB-C Charging Cable,1,11.95,08/01/19 21:21,"224 North St, Dallas, TX 75001" +246597,iPhone,1,700,08/24/19 16:18,"723 Adams St, Atlanta, GA 30301" +246598,iPhone,1,700,08/21/19 11:16,"208 Adams St, New York City, NY 10001" +246598,Lightning Charging Cable,1,14.95,08/21/19 11:16,"208 Adams St, New York City, NY 10001" +246598,Apple Airpods Headphones,1,150,08/21/19 11:16,"208 Adams St, New York City, NY 10001" +246599,34in Ultrawide Monitor,1,379.99,08/15/19 08:18,"121 River St, San Francisco, CA 94016" +246600,AAA Batteries (4-pack),1,2.99,08/09/19 15:38,"888 River St, Seattle, WA 98101" +246601,Macbook Pro Laptop,1,1700,08/17/19 11:19,"876 Chestnut St, Seattle, WA 98101" +246602,Lightning Charging Cable,1,14.95,08/27/19 17:06,"901 Maple St, Austin, TX 73301" +246603,AA Batteries (4-pack),1,3.84,08/07/19 09:51,"491 Church St, San Francisco, CA 94016" +246604,Lightning Charging Cable,1,14.95,08/09/19 23:35,"695 7th St, Los Angeles, CA 90001" +246605,Lightning Charging Cable,1,14.95,08/20/19 12:02,"223 Lake St, Austin, TX 73301" +246606,27in 4K Gaming Monitor,1,389.99,08/12/19 07:53,"939 6th St, New York City, NY 10001" +246607,AA Batteries (4-pack),1,3.84,08/09/19 21:50,"929 13th St, Portland, OR 97035" +246608,Wired Headphones,1,11.99,08/06/19 14:56,"163 Walnut St, San Francisco, CA 94016" +246609,Macbook Pro Laptop,1,1700,08/05/19 18:19,"837 Walnut St, Portland, OR 97035" +246610,Bose SoundSport Headphones,1,99.99,08/05/19 19:15,"199 Jefferson St, San Francisco, CA 94016" +246611,Apple Airpods Headphones,1,150,08/02/19 22:12,"323 Johnson St, New York City, NY 10001" +246612,27in FHD Monitor,1,149.99,08/03/19 15:58,"230 13th St, Seattle, WA 98101" +246613,Bose SoundSport Headphones,1,99.99,08/16/19 21:30,"339 Center St, San Francisco, CA 94016" +246614,AAA Batteries (4-pack),1,2.99,08/27/19 13:27,"191 Pine St, San Francisco, CA 94016" +246615,Lightning Charging Cable,1,14.95,08/25/19 12:09,"577 Willow St, San Francisco, CA 94016" +246616,Google Phone,1,600,08/10/19 13:03,"911 Hill St, Atlanta, GA 30301" +246616,USB-C Charging Cable,1,11.95,08/10/19 13:03,"911 Hill St, Atlanta, GA 30301" +246617,Flatscreen TV,1,300,08/07/19 09:12,"135 9th St, San Francisco, CA 94016" +246618,LG Washing Machine,1,600.0,08/18/19 19:57,"304 Wilson St, Boston, MA 02215" +246619,Wired Headphones,1,11.99,08/06/19 16:05,"844 Hill St, Seattle, WA 98101" +246620,Wired Headphones,1,11.99,08/22/19 23:58,"14 Maple St, Portland, OR 97035" +246621,27in FHD Monitor,1,149.99,08/24/19 11:24,"395 Lakeview St, San Francisco, CA 94016" +246622,ThinkPad Laptop,1,999.99,08/31/19 19:41,"29 Elm St, San Francisco, CA 94016" +246623,Bose SoundSport Headphones,1,99.99,08/30/19 09:47,"861 8th St, Boston, MA 02215" +246624,Vareebadd Phone,1,400,08/14/19 13:19,"679 Madison St, Seattle, WA 98101" +246625,20in Monitor,1,109.99,08/06/19 17:19,"479 2nd St, Boston, MA 02215" +246626,AAA Batteries (4-pack),1,2.99,08/13/19 11:05,"331 Willow St, Los Angeles, CA 90001" +246627,Wired Headphones,1,11.99,08/13/19 11:11,"134 Johnson St, Atlanta, GA 30301" +246628,Lightning Charging Cable,2,14.95,08/10/19 13:52,"7 5th St, Austin, TX 73301" +246629,AAA Batteries (4-pack),1,2.99,08/22/19 18:35,"709 Highland St, Boston, MA 02215" +246630,27in 4K Gaming Monitor,1,389.99,08/21/19 19:47,"441 Lakeview St, Los Angeles, CA 90001" +246631,27in 4K Gaming Monitor,1,389.99,08/16/19 11:28,"128 Willow St, San Francisco, CA 94016" +246632,ThinkPad Laptop,1,999.99,08/09/19 01:56,"518 South St, San Francisco, CA 94016" +246633,iPhone,1,700,08/04/19 17:20,"413 Cedar St, Boston, MA 02215" +246634,Vareebadd Phone,1,400,08/18/19 20:33,"191 North St, San Francisco, CA 94016" +246635,ThinkPad Laptop,1,999.99,08/22/19 18:35,"684 10th St, Portland, OR 97035" +246636,34in Ultrawide Monitor,1,379.99,08/15/19 14:35,"277 Elm St, Portland, OR 97035" +246637,USB-C Charging Cable,1,11.95,08/05/19 01:24,"886 Lincoln St, Austin, TX 73301" +246638,Bose SoundSport Headphones,1,99.99,08/05/19 22:34,"582 9th St, New York City, NY 10001" +246639,27in 4K Gaming Monitor,1,389.99,08/15/19 11:31,"218 11th St, Boston, MA 02215" +246640,Apple Airpods Headphones,1,150,08/22/19 10:41,"501 1st St, Boston, MA 02215" +246641,Bose SoundSport Headphones,1,99.99,08/08/19 11:48,"979 4th St, Dallas, TX 75001" +246642,iPhone,1,700,08/28/19 16:21,"913 1st St, New York City, NY 10001" +246643,Apple Airpods Headphones,1,150,08/12/19 20:31,"780 Sunset St, San Francisco, CA 94016" +246644,USB-C Charging Cable,1,11.95,08/20/19 13:31,"435 West St, New York City, NY 10001" +246645,20in Monitor,1,109.99,08/03/19 16:29,"347 Church St, San Francisco, CA 94016" +246646,Vareebadd Phone,1,400,08/02/19 13:35,"677 Jackson St, San Francisco, CA 94016" +246647,USB-C Charging Cable,2,11.95,08/23/19 15:09,"199 10th St, San Francisco, CA 94016" +246648,AAA Batteries (4-pack),1,2.99,08/16/19 14:35,"907 Center St, San Francisco, CA 94016" +246649,Bose SoundSport Headphones,1,99.99,08/18/19 13:41,"738 Jefferson St, Seattle, WA 98101" +246650,Wired Headphones,1,11.99,08/16/19 16:53,"353 Spruce St, Atlanta, GA 30301" +246651,AAA Batteries (4-pack),1,2.99,08/14/19 17:59,"720 Lake St, San Francisco, CA 94016" +246652,AA Batteries (4-pack),1,3.84,08/25/19 10:47,"390 14th St, San Francisco, CA 94016" +246653,Bose SoundSport Headphones,1,99.99,08/11/19 06:29,"281 5th St, Dallas, TX 75001" +246654,AA Batteries (4-pack),1,3.84,08/09/19 12:02,"910 Madison St, San Francisco, CA 94016" +246655,USB-C Charging Cable,1,11.95,08/15/19 19:09,"125 West St, Dallas, TX 75001" +246656,AAA Batteries (4-pack),1,2.99,08/26/19 14:18,"936 Johnson St, San Francisco, CA 94016" +246657,Lightning Charging Cable,1,14.95,08/24/19 10:23,"72 5th St, San Francisco, CA 94016" +246658,AAA Batteries (4-pack),1,2.99,08/19/19 13:16,"333 Maple St, Atlanta, GA 30301" +246659,Lightning Charging Cable,1,14.95,08/16/19 19:19,"415 Center St, New York City, NY 10001" +246660,AA Batteries (4-pack),3,3.84,08/25/19 11:59,"751 Elm St, Dallas, TX 75001" +246661,Google Phone,1,600,08/29/19 14:26,"615 9th St, San Francisco, CA 94016" +246662,Apple Airpods Headphones,1,150,08/04/19 23:00,"287 Wilson St, Boston, MA 02215" +246663,Wired Headphones,2,11.99,08/06/19 15:16,"618 Cherry St, San Francisco, CA 94016" +246664,Lightning Charging Cable,3,14.95,08/09/19 22:28,"622 Chestnut St, Los Angeles, CA 90001" +246665,Google Phone,1,600,08/11/19 10:55,"511 Meadow St, Dallas, TX 75001" +246665,Bose SoundSport Headphones,1,99.99,08/11/19 10:55,"511 Meadow St, Dallas, TX 75001" +246666,Apple Airpods Headphones,1,150,08/02/19 11:03,"752 2nd St, Los Angeles, CA 90001" +246667,AA Batteries (4-pack),2,3.84,08/17/19 10:08,"729 North St, San Francisco, CA 94016" +246668,Lightning Charging Cable,1,14.95,08/15/19 12:36,"59 Jefferson St, Dallas, TX 75001" +246669,AAA Batteries (4-pack),1,2.99,08/19/19 15:24,"66 14th St, San Francisco, CA 94016" +246670,iPhone,1,700,08/28/19 20:51,"222 Willow St, New York City, NY 10001" +246671,Lightning Charging Cable,1,14.95,08/23/19 12:11,"755 5th St, San Francisco, CA 94016" +246672,USB-C Charging Cable,1,11.95,08/14/19 22:26,"554 Willow St, Boston, MA 02215" +246673,AA Batteries (4-pack),1,3.84,08/12/19 23:01,"514 Maple St, Atlanta, GA 30301" +246674,AAA Batteries (4-pack),1,2.99,08/11/19 09:01,"197 Highland St, San Francisco, CA 94016" +246675,27in 4K Gaming Monitor,1,389.99,08/15/19 21:26,"605 10th St, Seattle, WA 98101" +246676,USB-C Charging Cable,1,11.95,08/11/19 13:25,"939 2nd St, Boston, MA 02215" +246677,27in FHD Monitor,1,149.99,08/03/19 16:07,"399 Lake St, Los Angeles, CA 90001" +246678,Bose SoundSport Headphones,1,99.99,08/19/19 17:53,"204 North St, New York City, NY 10001" +246679,Wired Headphones,1,11.99,08/20/19 14:59,"786 Lakeview St, New York City, NY 10001" +246680,27in FHD Monitor,1,149.99,08/30/19 08:28,"819 Maple St, Seattle, WA 98101" +246681,Wired Headphones,1,11.99,08/04/19 21:08,"65 Park St, Portland, OR 97035" +246682,34in Ultrawide Monitor,1,379.99,08/22/19 06:00,"591 Sunset St, Portland, OR 97035" +246683,AAA Batteries (4-pack),1,2.99,08/10/19 19:02,"982 4th St, Los Angeles, CA 90001" +246684,USB-C Charging Cable,1,11.95,08/30/19 18:04,"853 1st St, Seattle, WA 98101" +246685,USB-C Charging Cable,1,11.95,08/11/19 11:59,"326 Walnut St, Portland, ME 04101" +246686,AA Batteries (4-pack),1,3.84,08/26/19 15:00,"321 Washington St, Seattle, WA 98101" +246687,AA Batteries (4-pack),1,3.84,08/03/19 12:45,"757 Lincoln St, Los Angeles, CA 90001" +246688,Lightning Charging Cable,1,14.95,08/04/19 18:53,"450 Hickory St, San Francisco, CA 94016" +246689,Bose SoundSport Headphones,1,99.99,08/08/19 16:40,"798 6th St, Atlanta, GA 30301" +246690,27in FHD Monitor,1,149.99,08/01/19 11:23,"465 Hill St, San Francisco, CA 94016" +246691,Apple Airpods Headphones,1,150,08/07/19 16:18,"522 12th St, San Francisco, CA 94016" +246692,AAA Batteries (4-pack),1,2.99,08/24/19 13:47,"975 2nd St, San Francisco, CA 94016" +246692,AAA Batteries (4-pack),1,2.99,08/24/19 13:47,"975 2nd St, San Francisco, CA 94016" +246693,USB-C Charging Cable,1,11.95,08/28/19 09:08,"328 Johnson St, Dallas, TX 75001" +246694,Lightning Charging Cable,1,14.95,08/30/19 18:49,"328 Center St, San Francisco, CA 94016" +246695,LG Dryer,1,600.0,08/14/19 00:12,"412 Main St, Los Angeles, CA 90001" +246696,27in FHD Monitor,1,149.99,08/17/19 10:14,"227 Jefferson St, Portland, OR 97035" +246697,Wired Headphones,1,11.99,08/31/19 22:28,"965 Maple St, Los Angeles, CA 90001" +246698,Lightning Charging Cable,1,14.95,08/18/19 18:02,"339 Jefferson St, New York City, NY 10001" +246698,AA Batteries (4-pack),2,3.84,08/18/19 18:02,"339 Jefferson St, New York City, NY 10001" +246699,27in 4K Gaming Monitor,1,389.99,08/11/19 17:00,"539 South St, Los Angeles, CA 90001" +246700,Macbook Pro Laptop,1,1700,08/02/19 06:48,"402 6th St, Dallas, TX 75001" +246701,Wired Headphones,1,11.99,08/18/19 18:59,"353 West St, Seattle, WA 98101" +246702,Apple Airpods Headphones,1,150,08/21/19 08:05,"584 9th St, Seattle, WA 98101" +246703,Flatscreen TV,1,300,08/25/19 12:56,"399 Wilson St, New York City, NY 10001" +246703,AA Batteries (4-pack),1,3.84,08/25/19 12:56,"399 Wilson St, New York City, NY 10001" +246704,Wired Headphones,1,11.99,08/14/19 20:24,"809 Meadow St, Los Angeles, CA 90001" +246705,ThinkPad Laptop,1,999.99,08/03/19 00:03,"361 Lake St, Los Angeles, CA 90001" +246706,20in Monitor,1,109.99,08/01/19 18:16,"2 Walnut St, San Francisco, CA 94016" +246707,AAA Batteries (4-pack),1,2.99,08/02/19 18:46,"281 Sunset St, San Francisco, CA 94016" +246708,Macbook Pro Laptop,1,1700,08/13/19 02:55,"668 Pine St, New York City, NY 10001" +246709,20in Monitor,1,109.99,08/24/19 13:04,"126 Lake St, Portland, OR 97035" +246710,Lightning Charging Cable,1,14.95,08/28/19 12:07,"650 Johnson St, New York City, NY 10001" +246711,20in Monitor,1,109.99,08/27/19 12:47,"750 Walnut St, Los Angeles, CA 90001" +246712,Bose SoundSport Headphones,1,99.99,08/21/19 03:41,"572 Elm St, San Francisco, CA 94016" +246713,Apple Airpods Headphones,1,150,08/04/19 22:24,"811 Washington St, New York City, NY 10001" +246714,LG Washing Machine,1,600.0,08/23/19 01:39,"350 North St, Dallas, TX 75001" +246715,AAA Batteries (4-pack),1,2.99,08/02/19 19:47,"295 Sunset St, Seattle, WA 98101" +246716,AA Batteries (4-pack),1,3.84,08/30/19 18:49,"714 Madison St, Los Angeles, CA 90001" +246717,Wired Headphones,1,11.99,08/09/19 09:48,"478 Washington St, San Francisco, CA 94016" +246718,27in FHD Monitor,1,149.99,08/17/19 10:42,"587 Ridge St, San Francisco, CA 94016" +246719,Apple Airpods Headphones,1,150,08/22/19 22:02,"563 2nd St, Dallas, TX 75001" +246720,Wired Headphones,1,11.99,08/17/19 21:29,"155 West St, Atlanta, GA 30301" +246721,AA Batteries (4-pack),2,3.84,08/13/19 19:56,"836 Maple St, Atlanta, GA 30301" +246722,iPhone,1,700,08/18/19 20:07,"692 4th St, New York City, NY 10001" +246722,Apple Airpods Headphones,1,150,08/18/19 20:07,"692 4th St, New York City, NY 10001" +246723,AAA Batteries (4-pack),1,2.99,08/20/19 10:44,"637 Park St, New York City, NY 10001" +246724,27in FHD Monitor,1,149.99,08/09/19 19:07,"964 Spruce St, Portland, OR 97035" +246725,34in Ultrawide Monitor,1,379.99,08/26/19 13:15,"184 Lake St, New York City, NY 10001" +246726,34in Ultrawide Monitor,1,379.99,08/29/19 15:00,"658 Sunset St, New York City, NY 10001" +246727,27in 4K Gaming Monitor,1,389.99,08/19/19 10:04,"405 Johnson St, New York City, NY 10001" +246728,Wired Headphones,2,11.99,08/13/19 21:45,"496 13th St, Seattle, WA 98101" +246729,AAA Batteries (4-pack),1,2.99,08/21/19 22:03,"219 9th St, Los Angeles, CA 90001" +246730,iPhone,1,700,08/08/19 13:26,"133 Johnson St, Boston, MA 02215" +246731,AA Batteries (4-pack),1,3.84,08/02/19 22:28,"716 Cherry St, Seattle, WA 98101" +246732,USB-C Charging Cable,1,11.95,08/06/19 22:06,"478 Cherry St, Austin, TX 73301" +246733,Macbook Pro Laptop,1,1700,08/26/19 22:49,"679 Lake St, Austin, TX 73301" +246734,27in FHD Monitor,1,149.99,08/18/19 22:43,"567 Sunset St, Seattle, WA 98101" +246735,USB-C Charging Cable,1,11.95,08/28/19 06:55,"912 South St, San Francisco, CA 94016" +246736,AAA Batteries (4-pack),3,2.99,08/20/19 11:21,"790 Center St, Portland, ME 04101" +246737,Bose SoundSport Headphones,1,99.99,08/04/19 14:19,"226 Center St, Boston, MA 02215" +246738,ThinkPad Laptop,1,999.99,08/01/19 20:07,"552 Hickory St, New York City, NY 10001" +246739,AA Batteries (4-pack),1,3.84,08/18/19 15:06,"364 6th St, San Francisco, CA 94016" +246740,Lightning Charging Cable,1,14.95,08/05/19 14:38,"970 8th St, San Francisco, CA 94016" +246741,AA Batteries (4-pack),1,3.84,08/13/19 16:25,"436 Washington St, Seattle, WA 98101" +246742,USB-C Charging Cable,1,11.95,08/14/19 20:20,"710 1st St, San Francisco, CA 94016" +246743,ThinkPad Laptop,1,999.99,08/29/19 07:51,"169 Hill St, Atlanta, GA 30301" +246744,34in Ultrawide Monitor,1,379.99,08/26/19 21:16,"734 Washington St, Boston, MA 02215" +246745,iPhone,1,700,08/14/19 23:43,"680 Hill St, New York City, NY 10001" +246746,Apple Airpods Headphones,1,150,08/31/19 15:14,"717 Dogwood St, Boston, MA 02215" +246747,Bose SoundSport Headphones,1,99.99,08/13/19 16:39,"987 5th St, San Francisco, CA 94016" +246748,LG Washing Machine,1,600.0,08/25/19 14:01,"379 Adams St, Austin, TX 73301" +246749,iPhone,1,700,08/19/19 14:18,"804 Church St, Boston, MA 02215" +246750,AAA Batteries (4-pack),1,2.99,08/17/19 20:29,"2 North St, Boston, MA 02215" +246751,AA Batteries (4-pack),1,3.84,08/11/19 10:31,"303 Walnut St, Los Angeles, CA 90001" +246752,AA Batteries (4-pack),1,3.84,08/13/19 22:35,"372 14th St, Seattle, WA 98101" +246753,USB-C Charging Cable,1,11.95,08/07/19 10:21,"627 Lakeview St, San Francisco, CA 94016" +246754,27in 4K Gaming Monitor,1,389.99,08/23/19 13:56,"958 12th St, Los Angeles, CA 90001" +246755,iPhone,1,700,08/22/19 23:25,"320 9th St, San Francisco, CA 94016" +246756,Lightning Charging Cable,1,14.95,08/08/19 17:51,"477 Johnson St, Seattle, WA 98101" +246757,27in 4K Gaming Monitor,1,389.99,08/03/19 22:49,"288 10th St, New York City, NY 10001" +246758,34in Ultrawide Monitor,1,379.99,08/05/19 10:57,"755 Church St, Portland, OR 97035" +246759,27in 4K Gaming Monitor,1,389.99,08/09/19 10:25,"201 Adams St, New York City, NY 10001" +246760,Lightning Charging Cable,1,14.95,08/29/19 13:37,"110 Jackson St, Dallas, TX 75001" +246761,Lightning Charging Cable,1,14.95,08/20/19 15:28,"40 Lake St, Los Angeles, CA 90001" +246762,Macbook Pro Laptop,1,1700,08/29/19 07:58,"336 Cedar St, New York City, NY 10001" +246763,Apple Airpods Headphones,1,150,08/30/19 10:45,"311 1st St, New York City, NY 10001" +246764,AAA Batteries (4-pack),1,2.99,08/06/19 11:43,"166 Lakeview St, Dallas, TX 75001" +246765,USB-C Charging Cable,1,11.95,08/23/19 11:36,"691 12th St, New York City, NY 10001" +246766,34in Ultrawide Monitor,1,379.99,08/26/19 12:43,"605 Spruce St, Seattle, WA 98101" +246767,Wired Headphones,2,11.99,08/19/19 14:18,"331 Lakeview St, San Francisco, CA 94016" +246768,20in Monitor,1,109.99,08/02/19 10:50,"413 Hickory St, San Francisco, CA 94016" +246769,USB-C Charging Cable,1,11.95,08/17/19 08:50,"781 12th St, Atlanta, GA 30301" +246770,Bose SoundSport Headphones,1,99.99,08/14/19 15:57,"719 9th St, San Francisco, CA 94016" +246771,Macbook Pro Laptop,1,1700,08/31/19 14:05,"139 11th St, Seattle, WA 98101" +246772,Wired Headphones,1,11.99,08/29/19 00:48,"260 Jefferson St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +246773,Macbook Pro Laptop,1,1700,08/05/19 17:03,"715 Lakeview St, Dallas, TX 75001" +246774,AA Batteries (4-pack),1,3.84,08/28/19 13:30,"200 Chestnut St, Atlanta, GA 30301" +246775,Bose SoundSport Headphones,1,99.99,08/03/19 22:16,"923 Hickory St, Boston, MA 02215" +246776,AA Batteries (4-pack),1,3.84,08/14/19 14:00,"537 9th St, Dallas, TX 75001" +246777,USB-C Charging Cable,1,11.95,08/08/19 17:31,"368 11th St, Boston, MA 02215" +246778,27in FHD Monitor,1,149.99,08/09/19 09:41,"315 2nd St, Atlanta, GA 30301" +246779,USB-C Charging Cable,1,11.95,08/03/19 21:39,"203 13th St, New York City, NY 10001" +246780,Wired Headphones,1,11.99,08/25/19 15:26,"203 Main St, Boston, MA 02215" +246781,Vareebadd Phone,1,400,08/26/19 13:23,"933 Chestnut St, Austin, TX 73301" +246782,USB-C Charging Cable,1,11.95,08/27/19 16:57,"453 Washington St, Los Angeles, CA 90001" +246783,34in Ultrawide Monitor,1,379.99,08/28/19 21:45,"660 Maple St, Seattle, WA 98101" +246784,Wired Headphones,1,11.99,08/30/19 11:31,"806 Church St, Atlanta, GA 30301" +246785,27in FHD Monitor,1,149.99,08/13/19 22:20,"347 12th St, Boston, MA 02215" +246786,34in Ultrawide Monitor,1,379.99,08/06/19 11:38,"534 Jackson St, Seattle, WA 98101" +246787,20in Monitor,1,109.99,08/30/19 12:10,"145 7th St, Portland, OR 97035" +246788,27in 4K Gaming Monitor,1,389.99,08/31/19 16:21,"219 9th St, New York City, NY 10001" +246789,AAA Batteries (4-pack),1,2.99,08/09/19 20:50,"908 12th St, Austin, TX 73301" +246790,Google Phone,1,600,08/28/19 23:17,"709 Wilson St, Seattle, WA 98101" +246791,AA Batteries (4-pack),2,3.84,08/29/19 20:57,"447 Adams St, San Francisco, CA 94016" +246792,USB-C Charging Cable,1,11.95,08/03/19 15:58,"703 Hill St, Atlanta, GA 30301" +246793,iPhone,1,700,08/15/19 12:19,"918 Johnson St, Boston, MA 02215" +246794,iPhone,1,700,08/07/19 12:04,"960 Maple St, New York City, NY 10001" +246795,Wired Headphones,1,11.99,08/17/19 10:36,"241 11th St, New York City, NY 10001" +246796,20in Monitor,1,109.99,08/08/19 17:08,"901 14th St, New York City, NY 10001" +246797,Bose SoundSport Headphones,1,99.99,08/28/19 19:34,"297 7th St, Los Angeles, CA 90001" +246798,Bose SoundSport Headphones,1,99.99,08/14/19 08:33,"985 Pine St, Boston, MA 02215" +246799,LG Dryer,1,600.0,08/01/19 13:14,"3 11th St, Seattle, WA 98101" +246800,Bose SoundSport Headphones,1,99.99,08/04/19 18:37,"121 2nd St, Boston, MA 02215" +246801,AA Batteries (4-pack),1,3.84,08/30/19 18:19,"858 2nd St, Seattle, WA 98101" +246802,Lightning Charging Cable,1,14.95,08/11/19 21:18,"885 Adams St, Atlanta, GA 30301" +246803,Apple Airpods Headphones,1,150,08/24/19 20:05,"341 Church St, Portland, OR 97035" +246804,Bose SoundSport Headphones,1,99.99,08/23/19 11:16,"87 Lakeview St, Atlanta, GA 30301" +246805,Wired Headphones,1,11.99,08/06/19 11:09,"892 South St, Portland, OR 97035" +246806,AA Batteries (4-pack),1,3.84,08/17/19 14:07,"463 Washington St, Atlanta, GA 30301" +246807,AA Batteries (4-pack),1,3.84,08/24/19 11:11,"579 Lincoln St, New York City, NY 10001" +246808,Apple Airpods Headphones,1,150,08/10/19 12:37,"819 Meadow St, Los Angeles, CA 90001" +246809,Bose SoundSport Headphones,1,99.99,08/28/19 19:33,"857 6th St, Austin, TX 73301" +246810,Apple Airpods Headphones,1,150,08/15/19 20:33,"218 Cherry St, Atlanta, GA 30301" +246811,Lightning Charging Cable,1,14.95,08/18/19 18:48,"528 Washington St, Dallas, TX 75001" +246812,AA Batteries (4-pack),1,3.84,08/07/19 13:05,"87 West St, San Francisco, CA 94016" +246813,Apple Airpods Headphones,1,150,08/25/19 17:06,"120 Lincoln St, New York City, NY 10001" +246814,Google Phone,1,600,08/21/19 20:33,"445 Jefferson St, Austin, TX 73301" +246815,USB-C Charging Cable,2,11.95,08/18/19 20:22,"654 Church St, Los Angeles, CA 90001" +246816,Google Phone,1,600,08/23/19 18:22,"357 Lake St, Dallas, TX 75001" +246817,27in 4K Gaming Monitor,1,389.99,08/26/19 10:43,"346 Madison St, Portland, OR 97035" +246818,34in Ultrawide Monitor,1,379.99,08/05/19 13:42,"592 9th St, New York City, NY 10001" +246819,27in FHD Monitor,1,149.99,08/01/19 11:10,"612 Lincoln St, San Francisco, CA 94016" +246820,Bose SoundSport Headphones,1,99.99,08/08/19 13:48,"77 6th St, Boston, MA 02215" +246821,27in FHD Monitor,1,149.99,08/04/19 10:11,"469 7th St, Boston, MA 02215" +246822,Apple Airpods Headphones,1,150,08/25/19 09:55,"372 Chestnut St, San Francisco, CA 94016" +246823,AAA Batteries (4-pack),1,2.99,08/27/19 09:36,"368 Maple St, Portland, OR 97035" +246824,Google Phone,1,600,08/04/19 20:14,"801 Highland St, Los Angeles, CA 90001" +246825,AA Batteries (4-pack),2,3.84,08/30/19 14:03,"69 12th St, San Francisco, CA 94016" +246826,Flatscreen TV,1,300,08/23/19 11:15,"465 Ridge St, Austin, TX 73301" +246827,Wired Headphones,1,11.99,08/17/19 18:57,"483 Johnson St, Portland, OR 97035" +246828,AAA Batteries (4-pack),1,2.99,08/07/19 09:27,"394 Park St, Los Angeles, CA 90001" +246829,34in Ultrawide Monitor,1,379.99,08/26/19 20:53,"371 Elm St, Los Angeles, CA 90001" +246830,AA Batteries (4-pack),1,3.84,08/17/19 17:12,"590 Johnson St, Los Angeles, CA 90001" +246831,27in FHD Monitor,1,149.99,08/26/19 16:04,"756 11th St, Los Angeles, CA 90001" +246832,AA Batteries (4-pack),1,3.84,08/28/19 06:00,"686 Hickory St, Seattle, WA 98101" +246833,Bose SoundSport Headphones,1,99.99,08/12/19 14:50,"990 8th St, Dallas, TX 75001" +246834,Google Phone,1,600,08/20/19 11:16,"894 Park St, San Francisco, CA 94016" +246835,Apple Airpods Headphones,1,150,08/01/19 09:06,"141 River St, San Francisco, CA 94016" +246836,AAA Batteries (4-pack),1,2.99,08/03/19 16:39,"398 9th St, Atlanta, GA 30301" +246837,20in Monitor,1,109.99,08/14/19 15:29,"96 11th St, Los Angeles, CA 90001" +246838,Lightning Charging Cable,1,14.95,08/25/19 19:05,"434 Meadow St, Seattle, WA 98101" +246839,Google Phone,1,600,08/15/19 01:13,"228 Jefferson St, San Francisco, CA 94016" +246840,AA Batteries (4-pack),2,3.84,08/07/19 19:25,"59 1st St, Boston, MA 02215" +246841,Vareebadd Phone,1,400,08/02/19 09:44,"207 5th St, Seattle, WA 98101" +246841,USB-C Charging Cable,1,11.95,08/02/19 09:44,"207 5th St, Seattle, WA 98101" +246842,AA Batteries (4-pack),1,3.84,08/04/19 20:20,"873 Hickory St, Los Angeles, CA 90001" +246843,Apple Airpods Headphones,1,150,08/11/19 16:29,"587 River St, Seattle, WA 98101" +246844,Wired Headphones,1,11.99,08/22/19 05:10,"17 6th St, New York City, NY 10001" +246845,Lightning Charging Cable,1,14.95,08/12/19 17:48,"51 Elm St, New York City, NY 10001" +246846,Flatscreen TV,1,300,08/12/19 10:48,"842 South St, Boston, MA 02215" +246847,AA Batteries (4-pack),3,3.84,08/06/19 13:01,"770 Church St, Austin, TX 73301" +246848,Lightning Charging Cable,1,14.95,08/13/19 17:15,"333 Jefferson St, San Francisco, CA 94016" +246849,34in Ultrawide Monitor,1,379.99,08/12/19 17:36,"328 Lincoln St, Boston, MA 02215" +246850,Bose SoundSport Headphones,1,99.99,08/07/19 10:00,"752 14th St, Austin, TX 73301" +246851,Lightning Charging Cable,1,14.95,08/11/19 15:47,"833 Park St, New York City, NY 10001" +246852,Wired Headphones,1,11.99,08/03/19 09:58,"202 Elm St, Dallas, TX 75001" +246853,Lightning Charging Cable,1,14.95,08/06/19 21:07,"55 5th St, Los Angeles, CA 90001" +246854,Lightning Charging Cable,1,14.95,08/15/19 13:38,"256 Lake St, Los Angeles, CA 90001" +246855,27in 4K Gaming Monitor,1,389.99,08/08/19 21:22,"137 Dogwood St, Portland, ME 04101" +246856,34in Ultrawide Monitor,1,379.99,08/17/19 18:10,"738 Dogwood St, New York City, NY 10001" +246857,ThinkPad Laptop,1,999.99,08/16/19 20:36,"67 River St, Seattle, WA 98101" +246858,27in FHD Monitor,1,149.99,08/20/19 21:26,"37 Hill St, Seattle, WA 98101" +246859,Bose SoundSport Headphones,1,99.99,08/15/19 18:10,"66 13th St, San Francisco, CA 94016" +246860,27in 4K Gaming Monitor,1,389.99,08/05/19 16:19,"803 Lakeview St, Los Angeles, CA 90001" +246861,USB-C Charging Cable,2,11.95,08/06/19 15:39,"870 Hill St, Seattle, WA 98101" +246862,USB-C Charging Cable,1,11.95,08/18/19 17:53,"47 9th St, Boston, MA 02215" +246863,Lightning Charging Cable,1,14.95,08/12/19 23:39,"320 Hill St, San Francisco, CA 94016" +246864,Google Phone,1,600,08/04/19 18:33,"994 Spruce St, New York City, NY 10001" +246865,USB-C Charging Cable,2,11.95,08/12/19 10:52,"680 Highland St, Atlanta, GA 30301" +246866,Macbook Pro Laptop,1,1700,08/09/19 20:04,"488 Ridge St, New York City, NY 10001" +246867,34in Ultrawide Monitor,1,379.99,08/03/19 17:35,"763 River St, New York City, NY 10001" +246868,34in Ultrawide Monitor,1,379.99,08/26/19 13:21,"754 Washington St, Atlanta, GA 30301" +246869,Wired Headphones,1,11.99,08/08/19 09:58,"203 Chestnut St, New York City, NY 10001" +246870,AAA Batteries (4-pack),4,2.99,08/25/19 05:53,"16 Park St, Seattle, WA 98101" +246871,iPhone,1,700,08/23/19 20:12,"295 Washington St, San Francisco, CA 94016" +246872,27in 4K Gaming Monitor,1,389.99,08/27/19 19:28,"451 Lincoln St, Portland, OR 97035" +246873,Wired Headphones,1,11.99,08/10/19 11:44,"275 Lake St, Boston, MA 02215" +246874,Wired Headphones,1,11.99,08/23/19 19:22,"387 Maple St, Atlanta, GA 30301" +246875,Apple Airpods Headphones,1,150,08/15/19 18:58,"100 Sunset St, San Francisco, CA 94016" +246876,27in 4K Gaming Monitor,1,389.99,08/10/19 07:43,"569 5th St, San Francisco, CA 94016" +246877,USB-C Charging Cable,1,11.95,08/12/19 12:57,"639 Lakeview St, Los Angeles, CA 90001" +246878,34in Ultrawide Monitor,1,379.99,08/07/19 22:22,"474 Johnson St, San Francisco, CA 94016" +246879,Google Phone,1,600,08/08/19 04:35,"243 11th St, Austin, TX 73301" +246880,34in Ultrawide Monitor,1,379.99,08/30/19 17:43,"287 Elm St, Dallas, TX 75001" +246881,USB-C Charging Cable,1,11.95,08/11/19 12:38,"335 Adams St, Portland, OR 97035" +246882,AA Batteries (4-pack),2,3.84,08/25/19 16:58,"146 13th St, Los Angeles, CA 90001" +246883,Flatscreen TV,1,300,08/16/19 13:48,"53 Adams St, Los Angeles, CA 90001" +246884,Lightning Charging Cable,1,14.95,08/11/19 19:54,"197 Jackson St, Portland, OR 97035" +246885,AA Batteries (4-pack),2,3.84,08/18/19 14:09,"970 Hill St, Los Angeles, CA 90001" +246886,AAA Batteries (4-pack),1,2.99,08/27/19 14:21,"626 Cedar St, San Francisco, CA 94016" +246886,AAA Batteries (4-pack),1,2.99,08/27/19 14:21,"626 Cedar St, San Francisco, CA 94016" +246887,Apple Airpods Headphones,1,150,08/09/19 08:42,"369 Main St, San Francisco, CA 94016" +246888,Apple Airpods Headphones,1,150,08/16/19 23:42,"251 Madison St, San Francisco, CA 94016" +246889,Wired Headphones,1,11.99,08/16/19 13:26,"852 5th St, Dallas, TX 75001" +246890,AAA Batteries (4-pack),1,2.99,08/11/19 11:44,"614 Jackson St, Boston, MA 02215" +246890,Bose SoundSport Headphones,1,99.99,08/11/19 11:44,"614 Jackson St, Boston, MA 02215" +246891,Apple Airpods Headphones,1,150,08/15/19 19:55,"799 Elm St, New York City, NY 10001" +246892,Apple Airpods Headphones,1,150,08/11/19 03:40,"606 Ridge St, Los Angeles, CA 90001" +246893,AA Batteries (4-pack),1,3.84,08/27/19 08:02,"565 Chestnut St, San Francisco, CA 94016" +246894,Apple Airpods Headphones,1,150,08/19/19 06:00,"681 8th St, San Francisco, CA 94016" +246895,AA Batteries (4-pack),2,3.84,08/21/19 21:05,"366 Chestnut St, Atlanta, GA 30301" +246896,USB-C Charging Cable,2,11.95,08/27/19 19:49,"403 Adams St, New York City, NY 10001" +246897,USB-C Charging Cable,1,11.95,08/04/19 20:45,"375 North St, San Francisco, CA 94016" +246898,ThinkPad Laptop,1,999.99,08/18/19 17:23,"754 1st St, Boston, MA 02215" +246899,Lightning Charging Cable,1,14.95,08/11/19 12:49,"322 Spruce St, San Francisco, CA 94016" +246900,AAA Batteries (4-pack),3,2.99,08/27/19 17:27,"648 12th St, Boston, MA 02215" +246901,AAA Batteries (4-pack),2,2.99,08/23/19 23:23,"739 14th St, Dallas, TX 75001" +246902,AAA Batteries (4-pack),1,2.99,08/31/19 11:10,"988 Spruce St, Austin, TX 73301" +246903,Google Phone,1,600,08/08/19 19:09,"916 Ridge St, New York City, NY 10001" +246904,Lightning Charging Cable,1,14.95,08/08/19 00:52,"951 River St, Los Angeles, CA 90001" +246905,Lightning Charging Cable,1,14.95,08/28/19 15:26,"246 Elm St, San Francisco, CA 94016" +246906,27in FHD Monitor,1,149.99,08/18/19 07:04,"4 South St, Los Angeles, CA 90001" +246907,Lightning Charging Cable,1,14.95,08/03/19 15:03,"160 Jefferson St, San Francisco, CA 94016" +246908,34in Ultrawide Monitor,1,379.99,08/14/19 10:41,"127 4th St, San Francisco, CA 94016" +246909,AAA Batteries (4-pack),1,2.99,08/15/19 19:37,"708 Ridge St, Atlanta, GA 30301" +246910,Lightning Charging Cable,1,14.95,08/07/19 19:49,"44 Forest St, Austin, TX 73301" +246911,Wired Headphones,1,11.99,08/17/19 06:47,"824 Main St, Portland, ME 04101" +246912,Vareebadd Phone,1,400,08/26/19 21:54,"273 South St, Boston, MA 02215" +246913,27in 4K Gaming Monitor,1,389.99,08/29/19 07:48,"296 14th St, Los Angeles, CA 90001" +246914,AAA Batteries (4-pack),1,2.99,08/12/19 21:10,"967 Wilson St, Atlanta, GA 30301" +246915,AA Batteries (4-pack),1,3.84,08/11/19 21:01,"264 Spruce St, Boston, MA 02215" +246916,Apple Airpods Headphones,1,150,08/31/19 11:43,"784 South St, Atlanta, GA 30301" +246917,34in Ultrawide Monitor,1,379.99,08/31/19 14:33,"802 10th St, Dallas, TX 75001" +246918,AA Batteries (4-pack),1,3.84,08/28/19 07:20,"704 Madison St, Atlanta, GA 30301" +246919,AAA Batteries (4-pack),1,2.99,08/30/19 08:37,"280 Sunset St, Portland, OR 97035" +246920,Macbook Pro Laptop,1,1700,08/23/19 14:21,"23 6th St, Los Angeles, CA 90001" +246921,AAA Batteries (4-pack),1,2.99,08/31/19 18:12,"185 1st St, Boston, MA 02215" +246922,AAA Batteries (4-pack),1,2.99,08/17/19 20:58,"479 Washington St, San Francisco, CA 94016" +246923,USB-C Charging Cable,1,11.95,08/07/19 17:14,"286 2nd St, New York City, NY 10001" +246924,Flatscreen TV,1,300,08/30/19 08:41,"48 Forest St, Seattle, WA 98101" +246924,AAA Batteries (4-pack),1,2.99,08/30/19 08:41,"48 Forest St, Seattle, WA 98101" +246925,Google Phone,1,600,08/11/19 11:48,"399 8th St, Los Angeles, CA 90001" +246925,Wired Headphones,1,11.99,08/11/19 11:48,"399 8th St, Los Angeles, CA 90001" +246926,ThinkPad Laptop,1,999.99,08/02/19 13:45,"260 12th St, San Francisco, CA 94016" +246927,AA Batteries (4-pack),1,3.84,08/21/19 10:14,"496 Highland St, San Francisco, CA 94016" +246928,AAA Batteries (4-pack),1,2.99,08/31/19 17:04,"163 Willow St, San Francisco, CA 94016" +246929,ThinkPad Laptop,1,999.99,08/21/19 13:13,"746 7th St, Dallas, TX 75001" +246930,USB-C Charging Cable,1,11.95,08/30/19 17:58,"944 Ridge St, Los Angeles, CA 90001" +246930,34in Ultrawide Monitor,1,379.99,08/30/19 17:58,"944 Ridge St, Los Angeles, CA 90001" +246931,Google Phone,1,600,08/21/19 16:58,"187 2nd St, San Francisco, CA 94016" +246932,ThinkPad Laptop,1,999.99,08/01/19 19:25,"609 1st St, New York City, NY 10001" +246933,iPhone,1,700,08/29/19 17:20,"350 Maple St, Austin, TX 73301" +246934,USB-C Charging Cable,1,11.95,08/21/19 14:49,"683 13th St, Los Angeles, CA 90001" +246935,iPhone,1,700,08/15/19 20:31,"504 Park St, Atlanta, GA 30301" +246936,iPhone,1,700,08/11/19 09:40,"821 Maple St, Atlanta, GA 30301" +246937,iPhone,1,700,08/04/19 14:00,"98 Spruce St, Seattle, WA 98101" +246938,Google Phone,1,600,08/24/19 21:31,"596 West St, San Francisco, CA 94016" +246939,Flatscreen TV,1,300,08/01/19 12:48,"75 Cedar St, Portland, OR 97035" +246940,USB-C Charging Cable,1,11.95,08/05/19 12:45,"597 Highland St, Portland, OR 97035" +246941,Lightning Charging Cable,1,14.95,08/22/19 15:09,"157 Adams St, New York City, NY 10001" +246942,Macbook Pro Laptop,1,1700,08/04/19 20:45,"744 Meadow St, San Francisco, CA 94016" +246943,USB-C Charging Cable,1,11.95,08/31/19 18:57,"981 Highland St, Dallas, TX 75001" +246944,Apple Airpods Headphones,1,150,08/30/19 20:48,"933 West St, Dallas, TX 75001" +246945,Lightning Charging Cable,1,14.95,08/07/19 21:19,"861 Ridge St, San Francisco, CA 94016" +246946,Lightning Charging Cable,2,14.95,08/30/19 20:30,"915 Chestnut St, Austin, TX 73301" +246947,AA Batteries (4-pack),2,3.84,08/15/19 08:21,"411 6th St, Seattle, WA 98101" +246948,Bose SoundSport Headphones,1,99.99,08/29/19 12:57,"811 Meadow St, New York City, NY 10001" +246949,USB-C Charging Cable,1,11.95,08/18/19 12:27,"125 Lincoln St, Portland, OR 97035" +246950,USB-C Charging Cable,1,11.95,08/29/19 11:36,"296 Cedar St, Los Angeles, CA 90001" +246951,Google Phone,1,600,08/01/19 10:15,"901 Spruce St, Los Angeles, CA 90001" +246951,USB-C Charging Cable,1,11.95,08/01/19 10:15,"901 Spruce St, Los Angeles, CA 90001" +246952,AAA Batteries (4-pack),1,2.99,08/22/19 19:51,"936 2nd St, Boston, MA 02215" +246953,Lightning Charging Cable,2,14.95,08/22/19 13:33,"814 Walnut St, Boston, MA 02215" +246954,AAA Batteries (4-pack),2,2.99,08/22/19 12:32,"863 5th St, San Francisco, CA 94016" +246955,34in Ultrawide Monitor,1,379.99,08/02/19 21:32,"615 Cherry St, Dallas, TX 75001" +246956,Wired Headphones,1,11.99,08/23/19 17:03,"206 Wilson St, Austin, TX 73301" +246957,Apple Airpods Headphones,1,150,08/16/19 12:39,"683 Hickory St, Los Angeles, CA 90001" +246958,ThinkPad Laptop,1,999.99,08/26/19 16:59,"871 11th St, Portland, OR 97035" +246959,AA Batteries (4-pack),1,3.84,08/09/19 00:20,"36 5th St, Portland, ME 04101" +246960,iPhone,1,700,08/22/19 07:55,"506 Dogwood St, San Francisco, CA 94016" +246961,34in Ultrawide Monitor,1,379.99,08/23/19 22:55,"554 2nd St, Los Angeles, CA 90001" +246962,AAA Batteries (4-pack),1,2.99,08/17/19 22:11,"836 Dogwood St, Atlanta, GA 30301" +246963,ThinkPad Laptop,1,999.99,08/24/19 21:42,"764 6th St, New York City, NY 10001" +246964,iPhone,1,700,08/07/19 21:34,"539 Forest St, Dallas, TX 75001" +246965,27in 4K Gaming Monitor,1,389.99,08/12/19 00:00,"600 Highland St, Portland, OR 97035" +246966,AAA Batteries (4-pack),1,2.99,08/27/19 11:13,"598 11th St, San Francisco, CA 94016" +246967,AAA Batteries (4-pack),1,2.99,08/27/19 17:18,"716 Washington St, Atlanta, GA 30301" +246968,Wired Headphones,1,11.99,08/15/19 08:26,"582 7th St, Atlanta, GA 30301" +246969,27in FHD Monitor,1,149.99,08/25/19 22:19,"536 North St, New York City, NY 10001" +246970,27in FHD Monitor,1,149.99,08/09/19 03:23,"737 Ridge St, Los Angeles, CA 90001" +246971,Vareebadd Phone,1,400,08/05/19 18:59,"719 Willow St, San Francisco, CA 94016" +246972,Flatscreen TV,1,300,08/22/19 09:18,"307 South St, Portland, ME 04101" +246973,USB-C Charging Cable,1,11.95,08/19/19 17:32,"98 7th St, San Francisco, CA 94016" +246974,ThinkPad Laptop,1,999.99,08/11/19 15:21,"905 Jefferson St, Los Angeles, CA 90001" +246975,Wired Headphones,2,11.99,08/29/19 08:09,"304 Lincoln St, Portland, OR 97035" +246976,USB-C Charging Cable,1,11.95,08/18/19 09:39,"539 Jefferson St, Boston, MA 02215" +246977,34in Ultrawide Monitor,1,379.99,08/01/19 23:12,"854 Ridge St, Atlanta, GA 30301" +246978,Lightning Charging Cable,1,14.95,08/28/19 15:12,"931 Center St, New York City, NY 10001" +246979,AAA Batteries (4-pack),1,2.99,08/11/19 13:30,"427 2nd St, Los Angeles, CA 90001" +246980,Lightning Charging Cable,1,14.95,08/26/19 16:06,"859 Dogwood St, San Francisco, CA 94016" +246981,AA Batteries (4-pack),2,3.84,08/24/19 17:00,"743 Forest St, San Francisco, CA 94016" +246982,Apple Airpods Headphones,1,150,08/29/19 12:24,"118 Elm St, Los Angeles, CA 90001" +246983,Vareebadd Phone,1,400,08/29/19 14:01,"390 Pine St, Seattle, WA 98101" +246984,AAA Batteries (4-pack),1,2.99,08/25/19 11:13,"971 2nd St, Atlanta, GA 30301" +246985,Lightning Charging Cable,1,14.95,08/20/19 17:33,"320 Pine St, San Francisco, CA 94016" +246986,27in FHD Monitor,1,149.99,08/15/19 18:35,"908 Lake St, Los Angeles, CA 90001" +246987,AAA Batteries (4-pack),2,2.99,09/01/19 00:03,"891 Pine St, San Francisco, CA 94016" +246988,Google Phone,1,600,08/29/19 16:43,"668 Meadow St, Portland, OR 97035" +246989,Lightning Charging Cable,1,14.95,08/18/19 19:38,"751 Church St, Los Angeles, CA 90001" +246990,USB-C Charging Cable,1,11.95,08/28/19 09:49,"219 Ridge St, Austin, TX 73301" +246991,AA Batteries (4-pack),1,3.84,08/23/19 15:41,"675 Madison St, San Francisco, CA 94016" +246992,Wired Headphones,1,11.99,08/29/19 13:32,"833 Pine St, Austin, TX 73301" +246993,USB-C Charging Cable,1,11.95,08/20/19 16:19,"595 Jefferson St, Portland, OR 97035" +246994,34in Ultrawide Monitor,1,379.99,08/05/19 13:04,"115 Johnson St, Boston, MA 02215" +246995,Wired Headphones,2,11.99,08/18/19 11:30,"155 Johnson St, Austin, TX 73301" +246996,AAA Batteries (4-pack),2,2.99,08/16/19 09:38,"234 Jefferson St, Seattle, WA 98101" +246997,Lightning Charging Cable,1,14.95,08/17/19 12:43,"598 Cherry St, New York City, NY 10001" +246998,AA Batteries (4-pack),2,3.84,08/25/19 08:52,"600 River St, Portland, OR 97035" +246999,Apple Airpods Headphones,1,150,08/03/19 20:00,"681 5th St, Austin, TX 73301" +247000,Lightning Charging Cable,1,14.95,08/01/19 09:56,"377 Cedar St, San Francisco, CA 94016" +247001,Bose SoundSport Headphones,1,99.99,08/20/19 20:48,"392 Ridge St, San Francisco, CA 94016" +247002,Lightning Charging Cable,2,14.95,08/10/19 12:25,"697 Johnson St, New York City, NY 10001" +247003,USB-C Charging Cable,1,11.95,08/02/19 15:06,"698 1st St, San Francisco, CA 94016" +247004,USB-C Charging Cable,1,11.95,08/10/19 11:49,"185 Madison St, Seattle, WA 98101" +247005,iPhone,1,700,08/23/19 02:24,"855 12th St, San Francisco, CA 94016" +247006,Lightning Charging Cable,1,14.95,08/31/19 12:01,"357 Chestnut St, New York City, NY 10001" +247007,Bose SoundSport Headphones,1,99.99,08/30/19 18:26,"849 North St, Los Angeles, CA 90001" +247008,USB-C Charging Cable,1,11.95,08/13/19 16:27,"162 Hill St, San Francisco, CA 94016" +247009,USB-C Charging Cable,1,11.95,08/06/19 13:46,"546 Meadow St, Austin, TX 73301" +247010,AA Batteries (4-pack),1,3.84,08/23/19 17:01,"406 Lake St, Los Angeles, CA 90001" +247011,34in Ultrawide Monitor,1,379.99,08/21/19 11:07,"373 Jefferson St, Los Angeles, CA 90001" +247012,Apple Airpods Headphones,1,150,08/02/19 18:04,"166 13th St, New York City, NY 10001" +247013,AAA Batteries (4-pack),2,2.99,08/27/19 23:06,"756 Sunset St, Los Angeles, CA 90001" +247014,Google Phone,1,600,08/31/19 12:01,"818 Jefferson St, San Francisco, CA 94016" +247014,AA Batteries (4-pack),1,3.84,08/31/19 12:01,"818 Jefferson St, San Francisco, CA 94016" +247015,USB-C Charging Cable,1,11.95,08/08/19 18:06,"810 Jackson St, Portland, OR 97035" +247016,27in FHD Monitor,1,149.99,08/21/19 17:56,"558 Meadow St, San Francisco, CA 94016" +247017,Wired Headphones,1,11.99,08/03/19 17:39,"698 11th St, San Francisco, CA 94016" +247018,Apple Airpods Headphones,1,150,08/22/19 09:35,"14 1st St, San Francisco, CA 94016" +247019,AA Batteries (4-pack),1,3.84,08/27/19 06:37,"550 Madison St, Boston, MA 02215" +247019,Wired Headphones,1,11.99,08/27/19 06:37,"550 Madison St, Boston, MA 02215" +247020,USB-C Charging Cable,1,11.95,08/22/19 14:26,"519 Meadow St, Los Angeles, CA 90001" +247021,Apple Airpods Headphones,1,150,08/13/19 18:18,"715 8th St, Portland, OR 97035" +247022,AA Batteries (4-pack),1,3.84,08/18/19 19:29,"515 5th St, Boston, MA 02215" +247023,27in FHD Monitor,1,149.99,08/06/19 12:49,"97 Wilson St, Los Angeles, CA 90001" +247024,Lightning Charging Cable,1,14.95,08/08/19 12:43,"966 Highland St, San Francisco, CA 94016" +247025,Flatscreen TV,1,300,08/12/19 13:41,"978 Highland St, New York City, NY 10001" +247026,27in 4K Gaming Monitor,1,389.99,08/29/19 13:03,"330 Adams St, Los Angeles, CA 90001" +247027,Google Phone,1,600,08/17/19 11:40,"460 Lakeview St, Portland, OR 97035" +247028,Apple Airpods Headphones,1,150,08/31/19 19:08,"210 Pine St, New York City, NY 10001" +247029,AA Batteries (4-pack),1,3.84,08/03/19 21:02,"514 Ridge St, San Francisco, CA 94016" +247030,AA Batteries (4-pack),1,3.84,08/01/19 20:58,"292 North St, San Francisco, CA 94016" +247031,Flatscreen TV,1,300,08/23/19 23:26,"24 West St, Seattle, WA 98101" +247032,34in Ultrawide Monitor,1,379.99,08/14/19 13:16,"385 1st St, San Francisco, CA 94016" +247033,Lightning Charging Cable,1,14.95,08/28/19 20:03,"731 10th St, Portland, OR 97035" +247034,AA Batteries (4-pack),1,3.84,08/15/19 11:30,"997 10th St, San Francisco, CA 94016" +247035,Flatscreen TV,1,300,08/22/19 13:13,"537 14th St, Atlanta, GA 30301" +247036,iPhone,1,700,08/07/19 03:10,"671 Jackson St, New York City, NY 10001" +247037,AAA Batteries (4-pack),1,2.99,08/04/19 13:15,"811 Lincoln St, San Francisco, CA 94016" +247038,AAA Batteries (4-pack),1,2.99,08/31/19 13:21,"535 Center St, Austin, TX 73301" +247039,AAA Batteries (4-pack),4,2.99,08/22/19 07:46,"870 Center St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +247040,USB-C Charging Cable,1,11.95,08/27/19 17:30,"883 Jackson St, Austin, TX 73301" +247041,iPhone,1,700,08/26/19 22:30,"241 Maple St, Los Angeles, CA 90001" +247041,Lightning Charging Cable,1,14.95,08/26/19 22:30,"241 Maple St, Los Angeles, CA 90001" +247042,34in Ultrawide Monitor,1,379.99,08/26/19 13:39,"380 Willow St, San Francisco, CA 94016" +247043,Bose SoundSport Headphones,1,99.99,08/25/19 16:23,"699 Park St, San Francisco, CA 94016" +247044,AA Batteries (4-pack),1,3.84,08/22/19 23:08,"914 Center St, San Francisco, CA 94016" +247045,Macbook Pro Laptop,1,1700,08/13/19 18:54,"647 Spruce St, San Francisco, CA 94016" +247046,Wired Headphones,1,11.99,08/30/19 19:44,"873 Center St, Dallas, TX 75001" +247047,Flatscreen TV,1,300,08/10/19 22:36,"52 Willow St, Boston, MA 02215" +247048,USB-C Charging Cable,1,11.95,08/31/19 08:16,"749 Jefferson St, Boston, MA 02215" +247049,Bose SoundSport Headphones,1,99.99,08/10/19 11:29,"965 West St, San Francisco, CA 94016" +247050,USB-C Charging Cable,1,11.95,08/05/19 20:51,"389 Cherry St, Dallas, TX 75001" +247051,USB-C Charging Cable,1,11.95,08/06/19 13:15,"834 Madison St, San Francisco, CA 94016" +247052,34in Ultrawide Monitor,1,379.99,08/14/19 12:40,"692 9th St, Los Angeles, CA 90001" +247053,AA Batteries (4-pack),1,3.84,08/21/19 22:00,"557 Wilson St, Atlanta, GA 30301" +247054,Lightning Charging Cable,1,14.95,08/28/19 16:42,"614 West St, Los Angeles, CA 90001" +247055,AA Batteries (4-pack),1,3.84,08/02/19 10:18,"646 Ridge St, San Francisco, CA 94016" +247056,USB-C Charging Cable,1,11.95,08/29/19 19:54,"26 Spruce St, Atlanta, GA 30301" +247057,Lightning Charging Cable,1,14.95,08/06/19 20:45,"16 11th St, Atlanta, GA 30301" +247058,34in Ultrawide Monitor,1,379.99,08/17/19 17:03,"292 Cedar St, Portland, OR 97035" +247059,Bose SoundSport Headphones,1,99.99,08/09/19 14:46,"320 Jackson St, San Francisco, CA 94016" +247060,34in Ultrawide Monitor,1,379.99,08/24/19 21:52,"1 5th St, New York City, NY 10001" +247061,Apple Airpods Headphones,1,150,08/08/19 11:12,"701 Johnson St, New York City, NY 10001" +247062,Wired Headphones,1,11.99,08/29/19 11:34,"850 2nd St, New York City, NY 10001" +247063,Bose SoundSport Headphones,1,99.99,08/10/19 10:07,"190 Jefferson St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +247064,USB-C Charging Cable,1,11.95,08/22/19 06:38,"392 Center St, Los Angeles, CA 90001" +247065,USB-C Charging Cable,1,11.95,08/04/19 18:16,"630 5th St, Seattle, WA 98101" +247066,Lightning Charging Cable,1,14.95,08/13/19 07:43,"478 Jackson St, Boston, MA 02215" +247067,Lightning Charging Cable,2,14.95,08/31/19 18:50,"394 11th St, Portland, OR 97035" +247068,AA Batteries (4-pack),1,3.84,08/27/19 21:44,"227 South St, Los Angeles, CA 90001" +,,,,, +247069,AA Batteries (4-pack),1,3.84,08/02/19 15:08,"223 Jefferson St, San Francisco, CA 94016" +247070,27in 4K Gaming Monitor,1,389.99,08/06/19 18:27,"482 Forest St, Boston, MA 02215" +247071,Lightning Charging Cable,1,14.95,08/05/19 15:46,"147 1st St, Seattle, WA 98101" +247072,Wired Headphones,1,11.99,08/10/19 22:34,"907 Jefferson St, New York City, NY 10001" +247073,Flatscreen TV,1,300,08/04/19 11:30,"874 Cedar St, Atlanta, GA 30301" +247074,34in Ultrawide Monitor,1,379.99,08/19/19 14:43,"494 Adams St, San Francisco, CA 94016" +247075,27in FHD Monitor,1,149.99,08/29/19 08:15,"694 Highland St, Los Angeles, CA 90001" +247076,AA Batteries (4-pack),1,3.84,08/17/19 14:30,"555 Spruce St, Boston, MA 02215" +247077,USB-C Charging Cable,2,11.95,08/11/19 12:00,"646 West St, San Francisco, CA 94016" +247078,AAA Batteries (4-pack),1,2.99,08/19/19 11:50,"42 River St, Portland, OR 97035" +247079,Bose SoundSport Headphones,1,99.99,08/20/19 20:33,"922 Forest St, Atlanta, GA 30301" +247080,Bose SoundSport Headphones,1,99.99,08/29/19 14:48,"395 Walnut St, Atlanta, GA 30301" +247081,USB-C Charging Cable,1,11.95,08/30/19 21:06,"800 13th St, New York City, NY 10001" +247082,AAA Batteries (4-pack),3,2.99,08/07/19 21:54,"350 Main St, Dallas, TX 75001" +247083,Vareebadd Phone,1,400,08/04/19 18:45,"293 Lakeview St, Atlanta, GA 30301" +247084,ThinkPad Laptop,1,999.99,08/20/19 09:10,"427 Madison St, Boston, MA 02215" +247085,27in 4K Gaming Monitor,1,389.99,08/26/19 12:32,"931 2nd St, New York City, NY 10001" +247086,Wired Headphones,1,11.99,08/28/19 07:40,"749 Pine St, Boston, MA 02215" +247087,iPhone,1,700,08/21/19 08:18,"916 12th St, San Francisco, CA 94016" +247088,AA Batteries (4-pack),1,3.84,08/07/19 08:01,"173 North St, San Francisco, CA 94016" +247089,AAA Batteries (4-pack),1,2.99,08/08/19 09:15,"933 Walnut St, Los Angeles, CA 90001" +247090,Apple Airpods Headphones,1,150,08/19/19 09:38,"853 9th St, New York City, NY 10001" +247091,20in Monitor,1,109.99,08/07/19 16:45,"931 Ridge St, Los Angeles, CA 90001" +247092,27in FHD Monitor,1,149.99,08/08/19 12:10,"798 Hill St, Boston, MA 02215" +247093,Wired Headphones,1,11.99,08/22/19 18:45,"57 Chestnut St, San Francisco, CA 94016" +247094,AA Batteries (4-pack),1,3.84,08/15/19 01:27,"859 Lake St, New York City, NY 10001" +247095,Wired Headphones,2,11.99,08/19/19 16:20,"860 11th St, San Francisco, CA 94016" +247096,Apple Airpods Headphones,1,150,08/03/19 01:00,"539 West St, San Francisco, CA 94016" +247097,ThinkPad Laptop,1,999.99,08/23/19 09:42,"649 Maple St, Austin, TX 73301" +247098,Macbook Pro Laptop,1,1700,08/16/19 20:47,"19 Madison St, Los Angeles, CA 90001" +247099,Lightning Charging Cable,1,14.95,08/31/19 13:31,"559 North St, Los Angeles, CA 90001" +247100,Lightning Charging Cable,1,14.95,08/03/19 18:31,"19 River St, Dallas, TX 75001" +247101,27in FHD Monitor,1,149.99,08/28/19 01:25,"308 Pine St, Dallas, TX 75001" +247102,AA Batteries (4-pack),1,3.84,08/11/19 18:01,"315 Pine St, San Francisco, CA 94016" +247103,Macbook Pro Laptop,1,1700,08/20/19 16:50,"395 Forest St, Atlanta, GA 30301" +247104,USB-C Charging Cable,1,11.95,08/15/19 00:03,"842 Lincoln St, Los Angeles, CA 90001" +247105,27in FHD Monitor,1,149.99,08/14/19 12:05,"821 River St, Dallas, TX 75001" +247106,AAA Batteries (4-pack),1,2.99,08/04/19 14:05,"178 13th St, Dallas, TX 75001" +247107,Wired Headphones,1,11.99,08/13/19 13:06,"115 9th St, New York City, NY 10001" +247108,AA Batteries (4-pack),1,3.84,08/31/19 17:49,"843 Willow St, Dallas, TX 75001" +247109,AAA Batteries (4-pack),1,2.99,08/07/19 17:28,"366 Highland St, Austin, TX 73301" +247110,AAA Batteries (4-pack),2,2.99,08/07/19 04:16,"689 Wilson St, San Francisco, CA 94016" +247111,Lightning Charging Cable,1,14.95,08/30/19 21:12,"704 South St, Los Angeles, CA 90001" +247112,AA Batteries (4-pack),2,3.84,08/14/19 22:49,"651 Maple St, Austin, TX 73301" +247113,AAA Batteries (4-pack),1,2.99,08/11/19 12:42,"312 Chestnut St, San Francisco, CA 94016" +247114,USB-C Charging Cable,1,11.95,08/26/19 20:47,"976 Adams St, Dallas, TX 75001" +247115,Apple Airpods Headphones,1,150,08/13/19 17:21,"591 11th St, Los Angeles, CA 90001" +247116,Wired Headphones,1,11.99,08/22/19 21:51,"519 Washington St, Atlanta, GA 30301" +247117,27in FHD Monitor,1,149.99,08/02/19 21:27,"738 Center St, Austin, TX 73301" +247118,USB-C Charging Cable,1,11.95,08/25/19 08:38,"331 West St, San Francisco, CA 94016" +247119,34in Ultrawide Monitor,1,379.99,08/24/19 09:43,"154 Madison St, Los Angeles, CA 90001" +247120,AA Batteries (4-pack),4,3.84,08/13/19 00:02,"941 10th St, New York City, NY 10001" +247121,LG Dryer,1,600.0,08/05/19 10:19,"571 Wilson St, San Francisco, CA 94016" +247122,USB-C Charging Cable,1,11.95,08/31/19 12:20,"172 Hill St, Dallas, TX 75001" +247123,Apple Airpods Headphones,1,150,08/28/19 13:33,"477 6th St, San Francisco, CA 94016" +247124,Bose SoundSport Headphones,1,99.99,08/24/19 11:03,"213 Pine St, Los Angeles, CA 90001" +247125,AAA Batteries (4-pack),1,2.99,08/31/19 09:11,"409 Ridge St, New York City, NY 10001" +247126,ThinkPad Laptop,1,999.99,08/18/19 15:17,"500 Church St, New York City, NY 10001" +247127,USB-C Charging Cable,1,11.95,08/28/19 21:21,"485 Madison St, San Francisco, CA 94016" +247128,AA Batteries (4-pack),3,3.84,08/15/19 17:41,"639 North St, San Francisco, CA 94016" +247129,USB-C Charging Cable,1,11.95,08/18/19 08:59,"79 River St, Boston, MA 02215" +247130,USB-C Charging Cable,1,11.95,08/08/19 17:20,"78 Pine St, Austin, TX 73301" +247131,USB-C Charging Cable,1,11.95,08/30/19 19:22,"958 11th St, New York City, NY 10001" +247132,27in FHD Monitor,1,149.99,08/03/19 22:53,"839 Jefferson St, New York City, NY 10001" +247133,USB-C Charging Cable,1,11.95,08/14/19 13:00,"893 Hickory St, Portland, OR 97035" +247134,Bose SoundSport Headphones,1,99.99,08/19/19 15:13,"975 9th St, San Francisco, CA 94016" +247135,AAA Batteries (4-pack),1,2.99,08/22/19 21:43,"100 Cherry St, Portland, OR 97035" +247136,AA Batteries (4-pack),3,3.84,08/15/19 17:56,"510 Madison St, San Francisco, CA 94016" +247137,Wired Headphones,1,11.99,08/04/19 18:45,"710 Jefferson St, San Francisco, CA 94016" +247138,Apple Airpods Headphones,1,150,08/08/19 12:32,"332 Chestnut St, Portland, ME 04101" +247139,27in FHD Monitor,1,149.99,08/07/19 23:39,"422 Madison St, Boston, MA 02215" +247140,27in FHD Monitor,1,149.99,08/08/19 20:09,"510 14th St, Seattle, WA 98101" +247141,AA Batteries (4-pack),1,3.84,08/13/19 09:57,"62 2nd St, Dallas, TX 75001" +247142,27in FHD Monitor,1,149.99,08/08/19 19:38,"108 West St, San Francisco, CA 94016" +247143,27in FHD Monitor,1,149.99,08/06/19 19:02,"904 Church St, New York City, NY 10001" +247144,AAA Batteries (4-pack),1,2.99,08/05/19 11:53,"357 Elm St, Dallas, TX 75001" +247145,Bose SoundSport Headphones,1,99.99,08/13/19 19:35,"10 1st St, San Francisco, CA 94016" +247146,AA Batteries (4-pack),1,3.84,08/17/19 21:28,"154 11th St, New York City, NY 10001" +247147,Lightning Charging Cable,1,14.95,08/08/19 11:02,"374 Johnson St, Los Angeles, CA 90001" +247148,LG Dryer,1,600.0,08/12/19 19:56,"368 Adams St, New York City, NY 10001" +247149,AAA Batteries (4-pack),1,2.99,08/21/19 18:37,"640 Forest St, Los Angeles, CA 90001" +247150,AAA Batteries (4-pack),2,2.99,08/06/19 20:15,"276 Chestnut St, Atlanta, GA 30301" +247151,AAA Batteries (4-pack),2,2.99,08/18/19 00:37,"876 10th St, New York City, NY 10001" +247152,ThinkPad Laptop,1,999.99,08/28/19 16:59,"921 Wilson St, San Francisco, CA 94016" +247153,AAA Batteries (4-pack),1,2.99,08/19/19 22:56,"948 10th St, New York City, NY 10001" +247153,20in Monitor,1,109.99,08/19/19 22:56,"948 10th St, New York City, NY 10001" +247154,Macbook Pro Laptop,1,1700,08/06/19 23:33,"794 Washington St, Los Angeles, CA 90001" +247155,Lightning Charging Cable,1,14.95,08/25/19 12:08,"459 Chestnut St, Atlanta, GA 30301" +247156,27in FHD Monitor,1,149.99,08/20/19 20:44,"401 1st St, Dallas, TX 75001" +247157,Flatscreen TV,1,300,08/31/19 15:58,"355 5th St, Atlanta, GA 30301" +247158,Wired Headphones,1,11.99,08/19/19 19:06,"336 West St, Los Angeles, CA 90001" +247159,Flatscreen TV,1,300,08/13/19 18:56,"600 Washington St, Los Angeles, CA 90001" +247160,USB-C Charging Cable,1,11.95,08/30/19 13:12,"811 Church St, New York City, NY 10001" +247161,Wired Headphones,1,11.99,08/18/19 15:25,"686 9th St, Boston, MA 02215" +247162,Apple Airpods Headphones,1,150,08/19/19 16:36,"90 11th St, Austin, TX 73301" +247163,Apple Airpods Headphones,1,150,08/13/19 21:04,"557 Spruce St, Dallas, TX 75001" +247164,Apple Airpods Headphones,1,150,08/06/19 17:24,"153 Maple St, San Francisco, CA 94016" +247165,Bose SoundSport Headphones,1,99.99,08/30/19 13:05,"314 8th St, New York City, NY 10001" +247166,Apple Airpods Headphones,1,150,08/25/19 15:45,"917 Dogwood St, Seattle, WA 98101" +247167,27in 4K Gaming Monitor,1,389.99,08/20/19 11:14,"690 Chestnut St, San Francisco, CA 94016" +247168,Apple Airpods Headphones,1,150,08/17/19 08:47,"26 Dogwood St, New York City, NY 10001" +247169,AAA Batteries (4-pack),1,2.99,08/04/19 22:26,"713 5th St, San Francisco, CA 94016" +247170,AA Batteries (4-pack),1,3.84,08/09/19 20:46,"14 Chestnut St, Atlanta, GA 30301" +247171,Macbook Pro Laptop,1,1700,08/19/19 11:23,"949 9th St, Seattle, WA 98101" +247172,Bose SoundSport Headphones,1,99.99,08/09/19 09:20,"635 Wilson St, Austin, TX 73301" +247173,Lightning Charging Cable,1,14.95,08/28/19 13:21,"98 Cedar St, Dallas, TX 75001" +247174,Lightning Charging Cable,1,14.95,08/28/19 17:18,"898 Adams St, Dallas, TX 75001" +247175,Bose SoundSport Headphones,1,99.99,08/07/19 06:15,"750 Sunset St, Portland, OR 97035" +247176,Bose SoundSport Headphones,1,99.99,08/22/19 07:28,"439 1st St, Atlanta, GA 30301" +247177,AA Batteries (4-pack),1,3.84,08/26/19 16:30,"619 Wilson St, Los Angeles, CA 90001" +247178,AAA Batteries (4-pack),1,2.99,08/23/19 22:13,"139 Center St, Los Angeles, CA 90001" +247179,Bose SoundSport Headphones,1,99.99,08/01/19 22:50,"658 7th St, Austin, TX 73301" +247180,20in Monitor,1,109.99,08/03/19 18:40,"919 River St, Boston, MA 02215" +247181,Apple Airpods Headphones,1,150,08/28/19 18:24,"562 Highland St, Dallas, TX 75001" +247182,Lightning Charging Cable,1,14.95,08/28/19 20:56,"394 Forest St, Los Angeles, CA 90001" +247183,Flatscreen TV,1,300,08/11/19 08:53,"417 Wilson St, San Francisco, CA 94016" +247184,Bose SoundSport Headphones,1,99.99,08/18/19 17:44,"764 Washington St, Boston, MA 02215" +247185,Flatscreen TV,1,300,08/22/19 13:51,"986 Spruce St, Austin, TX 73301" +247186,Wired Headphones,1,11.99,08/14/19 13:58,"792 12th St, San Francisco, CA 94016" +247187,AAA Batteries (4-pack),2,2.99,08/19/19 10:59,"900 Cedar St, San Francisco, CA 94016" +247188,iPhone,1,700,08/31/19 11:59,"539 Lake St, Portland, OR 97035" +247189,AA Batteries (4-pack),1,3.84,08/22/19 14:03,"251 Madison St, Dallas, TX 75001" +247190,34in Ultrawide Monitor,1,379.99,08/12/19 20:14,"696 River St, Boston, MA 02215" +247191,USB-C Charging Cable,1,11.95,08/10/19 11:52,"158 North St, Los Angeles, CA 90001" +247192,Flatscreen TV,1,300,08/08/19 11:07,"39 Madison St, New York City, NY 10001" +247193,Apple Airpods Headphones,1,150,08/22/19 17:59,"736 Walnut St, San Francisco, CA 94016" +247194,Bose SoundSport Headphones,1,99.99,08/03/19 18:33,"426 Ridge St, Los Angeles, CA 90001" +247195,Apple Airpods Headphones,1,150,08/07/19 18:07,"972 Chestnut St, Seattle, WA 98101" +247196,AA Batteries (4-pack),1,3.84,08/14/19 20:32,"496 Walnut St, Los Angeles, CA 90001" +247197,AA Batteries (4-pack),2,3.84,08/01/19 14:08,"735 Highland St, Austin, TX 73301" +247198,AAA Batteries (4-pack),1,2.99,08/20/19 11:39,"742 Pine St, Dallas, TX 75001" +247199,USB-C Charging Cable,1,11.95,08/20/19 18:26,"891 North St, Atlanta, GA 30301" +247200,Macbook Pro Laptop,1,1700,08/30/19 07:41,"13 Dogwood St, Dallas, TX 75001" +247201,Apple Airpods Headphones,1,150,08/09/19 18:58,"716 Cherry St, Boston, MA 02215" +247202,USB-C Charging Cable,1,11.95,08/12/19 04:32,"298 Maple St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +247203,27in 4K Gaming Monitor,1,389.99,08/26/19 12:01,"624 Washington St, New York City, NY 10001" +247204,AA Batteries (4-pack),3,3.84,08/19/19 14:02,"30 5th St, Boston, MA 02215" +247205,AAA Batteries (4-pack),1,2.99,08/25/19 07:44,"382 Madison St, Los Angeles, CA 90001" +247206,AA Batteries (4-pack),1,3.84,08/23/19 14:21,"986 Sunset St, Dallas, TX 75001" +247207,AA Batteries (4-pack),1,3.84,08/14/19 18:16,"613 Sunset St, San Francisco, CA 94016" +247208,34in Ultrawide Monitor,1,379.99,08/25/19 16:38,"413 4th St, Portland, OR 97035" +247209,USB-C Charging Cable,1,11.95,08/19/19 12:30,"682 Forest St, San Francisco, CA 94016" +247210,Wired Headphones,1,11.99,08/23/19 19:43,"555 8th St, Los Angeles, CA 90001" +247211,Google Phone,1,600,08/17/19 01:21,"126 Johnson St, New York City, NY 10001" +247212,Google Phone,1,600,08/09/19 08:38,"62 Chestnut St, Los Angeles, CA 90001" +247213,Bose SoundSport Headphones,1,99.99,08/16/19 15:28,"928 Church St, Boston, MA 02215" +247214,Apple Airpods Headphones,1,150,08/20/19 13:55,"346 Park St, Portland, OR 97035" +247215,Lightning Charging Cable,1,14.95,08/27/19 15:51,"799 Center St, San Francisco, CA 94016" +247216,AA Batteries (4-pack),1,3.84,08/17/19 20:28,"26 11th St, San Francisco, CA 94016" +247217,Wired Headphones,1,11.99,08/10/19 13:43,"68 Lincoln St, Seattle, WA 98101" +247218,Apple Airpods Headphones,1,150,08/17/19 15:09,"445 8th St, Seattle, WA 98101" +247219,27in FHD Monitor,1,149.99,08/21/19 12:08,"568 10th St, San Francisco, CA 94016" +247220,USB-C Charging Cable,1,11.95,08/20/19 13:09,"491 4th St, San Francisco, CA 94016" +247221,27in FHD Monitor,1,149.99,08/11/19 10:08,"51 13th St, Portland, ME 04101" +247222,USB-C Charging Cable,1,11.95,08/26/19 00:20,"631 6th St, Los Angeles, CA 90001" +247223,Flatscreen TV,1,300,08/20/19 12:55,"216 South St, Los Angeles, CA 90001" +247224,Bose SoundSport Headphones,1,99.99,08/09/19 20:19,"868 Hickory St, Los Angeles, CA 90001" +247225,Bose SoundSport Headphones,1,99.99,08/28/19 10:28,"492 Park St, San Francisco, CA 94016" +247226,AA Batteries (4-pack),1,3.84,08/19/19 17:37,"475 Pine St, Los Angeles, CA 90001" +247227,AAA Batteries (4-pack),2,2.99,08/18/19 16:13,"11 Hill St, Dallas, TX 75001" +247228,Google Phone,1,600,08/25/19 16:01,"1 5th St, Portland, OR 97035" +247229,Apple Airpods Headphones,1,150,08/29/19 10:14,"335 Jefferson St, Dallas, TX 75001" +247230,27in FHD Monitor,1,149.99,08/22/19 15:14,"40 14th St, San Francisco, CA 94016" +247231,20in Monitor,1,109.99,08/19/19 12:44,"76 South St, Dallas, TX 75001" +247232,USB-C Charging Cable,1,11.95,08/23/19 18:59,"65 Highland St, Austin, TX 73301" +247233,Apple Airpods Headphones,1,150,08/12/19 20:16,"307 Hickory St, Atlanta, GA 30301" +247234,ThinkPad Laptop,1,999.99,08/29/19 09:09,"422 Wilson St, Atlanta, GA 30301" +247235,ThinkPad Laptop,1,999.99,08/17/19 13:44,"777 West St, Seattle, WA 98101" +247236,USB-C Charging Cable,1,11.95,08/21/19 19:18,"259 Lake St, San Francisco, CA 94016" +247237,Google Phone,1,600,08/07/19 15:29,"634 1st St, New York City, NY 10001" +247237,Wired Headphones,1,11.99,08/07/19 15:29,"634 1st St, New York City, NY 10001" +247238,AA Batteries (4-pack),1,3.84,08/31/19 15:15,"118 5th St, Boston, MA 02215" +247239,USB-C Charging Cable,1,11.95,08/07/19 16:54,"657 Meadow St, Seattle, WA 98101" +247240,iPhone,1,700,08/19/19 22:32,"390 Madison St, San Francisco, CA 94016" +247241,AAA Batteries (4-pack),1,2.99,08/03/19 00:21,"291 Elm St, San Francisco, CA 94016" +247242,Apple Airpods Headphones,1,150,08/29/19 03:00,"46 Hill St, Atlanta, GA 30301" +247243,Macbook Pro Laptop,1,1700,08/24/19 16:45,"606 Washington St, Austin, TX 73301" +247244,27in FHD Monitor,1,149.99,08/07/19 12:36,"121 Main St, Austin, TX 73301" +247245,20in Monitor,1,109.99,08/31/19 10:56,"942 Hickory St, Boston, MA 02215" +247246,Apple Airpods Headphones,1,150,08/27/19 17:42,"113 8th St, San Francisco, CA 94016" +247247,34in Ultrawide Monitor,1,379.99,08/30/19 08:29,"145 River St, New York City, NY 10001" +247248,AAA Batteries (4-pack),2,2.99,08/21/19 00:54,"511 Lincoln St, Dallas, TX 75001" +247249,20in Monitor,1,109.99,08/16/19 23:25,"149 Cherry St, San Francisco, CA 94016" +247250,iPhone,1,700,08/01/19 18:13,"740 4th St, Boston, MA 02215" +247251,AA Batteries (4-pack),1,3.84,08/15/19 15:49,"562 Johnson St, Los Angeles, CA 90001" +247252,Wired Headphones,1,11.99,08/11/19 11:07,"566 Maple St, Boston, MA 02215" +247253,USB-C Charging Cable,1,11.95,08/02/19 12:06,"154 Lincoln St, Boston, MA 02215" +247254,Apple Airpods Headphones,1,150,08/19/19 21:39,"48 Sunset St, Los Angeles, CA 90001" +247255,AAA Batteries (4-pack),2,2.99,08/17/19 13:38,"899 Washington St, San Francisco, CA 94016" +247256,AAA Batteries (4-pack),2,2.99,08/05/19 12:21,"132 7th St, Austin, TX 73301" +247257,Lightning Charging Cable,1,14.95,08/28/19 16:16,"926 11th St, Atlanta, GA 30301" +247258,Apple Airpods Headphones,1,150,08/27/19 18:45,"100 Ridge St, New York City, NY 10001" +247259,USB-C Charging Cable,2,11.95,08/31/19 13:05,"983 Cherry St, Seattle, WA 98101" +247260,ThinkPad Laptop,1,999.99,08/09/19 09:13,"187 8th St, San Francisco, CA 94016" +247261,Lightning Charging Cable,1,14.95,08/25/19 20:32,"453 12th St, New York City, NY 10001" +247262,Wired Headphones,1,11.99,08/29/19 14:49,"53 Center St, Boston, MA 02215" +247263,AAA Batteries (4-pack),1,2.99,08/28/19 12:10,"82 Lincoln St, New York City, NY 10001" +247264,AA Batteries (4-pack),1,3.84,08/22/19 18:45,"31 Cherry St, Boston, MA 02215" +247265,Bose SoundSport Headphones,1,99.99,08/27/19 19:51,"717 Willow St, Los Angeles, CA 90001" +247266,ThinkPad Laptop,1,999.99,08/09/19 08:33,"396 Madison St, Atlanta, GA 30301" +247267,Apple Airpods Headphones,1,150,08/20/19 16:59,"175 14th St, Portland, ME 04101" +247268,27in FHD Monitor,1,149.99,08/11/19 20:19,"79 Church St, Boston, MA 02215" +247269,Wired Headphones,1,11.99,08/08/19 01:59,"554 8th St, San Francisco, CA 94016" +247270,Apple Airpods Headphones,1,150,08/08/19 16:13,"562 Adams St, New York City, NY 10001" +247271,34in Ultrawide Monitor,1,379.99,08/31/19 19:52,"261 8th St, Atlanta, GA 30301" +247272,AAA Batteries (4-pack),1,2.99,08/19/19 19:14,"970 Highland St, Seattle, WA 98101" +247273,27in FHD Monitor,1,149.99,08/03/19 11:02,"886 Cedar St, Los Angeles, CA 90001" +247274,AAA Batteries (4-pack),1,2.99,08/06/19 23:48,"174 12th St, Dallas, TX 75001" +247275,20in Monitor,1,109.99,08/13/19 22:19,"985 Walnut St, Portland, OR 97035" +247276,34in Ultrawide Monitor,1,379.99,08/29/19 21:52,"289 Jackson St, San Francisco, CA 94016" +247277,Wired Headphones,1,11.99,08/28/19 10:02,"89 North St, Dallas, TX 75001" +247278,Lightning Charging Cable,1,14.95,08/24/19 18:21,"766 Walnut St, Seattle, WA 98101" +247279,AA Batteries (4-pack),1,3.84,08/15/19 10:02,"158 Madison St, Boston, MA 02215" +247280,Lightning Charging Cable,1,14.95,08/16/19 10:12,"505 9th St, San Francisco, CA 94016" +247281,ThinkPad Laptop,1,999.99,08/30/19 16:13,"937 4th St, New York City, NY 10001" +247282,AA Batteries (4-pack),1,3.84,08/10/19 15:27,"653 Willow St, San Francisco, CA 94016" +247283,27in 4K Gaming Monitor,1,389.99,08/13/19 20:59,"246 Center St, Atlanta, GA 30301" +247284,Google Phone,1,600,08/19/19 13:51,"528 6th St, Boston, MA 02215" +247285,Bose SoundSport Headphones,1,99.99,08/17/19 11:19,"994 Cedar St, Los Angeles, CA 90001" +247286,AAA Batteries (4-pack),1,2.99,08/17/19 17:51,"636 Washington St, San Francisco, CA 94016" +247287,Wired Headphones,1,11.99,08/16/19 12:56,"458 8th St, Boston, MA 02215" +247288,USB-C Charging Cable,3,11.95,08/15/19 16:50,"438 11th St, Los Angeles, CA 90001" +247289,27in 4K Gaming Monitor,1,389.99,08/31/19 22:19,"237 Lake St, San Francisco, CA 94016" +247290,Flatscreen TV,1,300,08/05/19 10:13,"856 6th St, San Francisco, CA 94016" +247291,Apple Airpods Headphones,1,150,08/21/19 11:50,"419 Madison St, Los Angeles, CA 90001" +247292,USB-C Charging Cable,1,11.95,08/16/19 21:17,"862 Hill St, Portland, OR 97035" +247293,AAA Batteries (4-pack),1,2.99,08/31/19 22:58,"379 Forest St, Austin, TX 73301" +247294,Lightning Charging Cable,1,14.95,08/06/19 22:12,"476 Johnson St, San Francisco, CA 94016" +247295,Flatscreen TV,1,300,08/11/19 10:53,"557 Maple St, Seattle, WA 98101" +247296,Lightning Charging Cable,1,14.95,08/26/19 16:57,"271 Adams St, Austin, TX 73301" +247297,AA Batteries (4-pack),1,3.84,08/13/19 10:32,"174 Hickory St, Boston, MA 02215" +247298,AA Batteries (4-pack),1,3.84,08/26/19 14:01,"20 Lake St, New York City, NY 10001" +247299,Lightning Charging Cable,1,14.95,08/14/19 00:04,"849 Hill St, Boston, MA 02215" +247300,ThinkPad Laptop,1,999.99,08/16/19 13:42,"775 Madison St, San Francisco, CA 94016" +247301,20in Monitor,1,109.99,08/27/19 18:54,"491 Hill St, Atlanta, GA 30301" +247302,Lightning Charging Cable,1,14.95,08/02/19 18:07,"738 Ridge St, San Francisco, CA 94016" +247303,Lightning Charging Cable,1,14.95,08/12/19 14:02,"688 7th St, Seattle, WA 98101" +247304,Bose SoundSport Headphones,1,99.99,08/20/19 07:55,"626 8th St, Los Angeles, CA 90001" +247305,Lightning Charging Cable,1,14.95,08/29/19 11:20,"685 Spruce St, Dallas, TX 75001" +247306,AA Batteries (4-pack),1,3.84,08/29/19 20:50,"130 Hickory St, New York City, NY 10001" +247307,AA Batteries (4-pack),1,3.84,08/04/19 09:42,"402 Cherry St, New York City, NY 10001" +247308,AAA Batteries (4-pack),1,2.99,08/09/19 08:09,"486 Walnut St, San Francisco, CA 94016" +247309,AA Batteries (4-pack),1,3.84,08/19/19 22:44,"393 5th St, Los Angeles, CA 90001" +247310,iPhone,1,700,08/22/19 15:44,"210 Cedar St, Dallas, TX 75001" +247310,Lightning Charging Cable,1,14.95,08/22/19 15:44,"210 Cedar St, Dallas, TX 75001" +247311,AAA Batteries (4-pack),1,2.99,08/01/19 21:21,"419 Lincoln St, San Francisco, CA 94016" +247312,USB-C Charging Cable,1,11.95,08/22/19 18:38,"469 North St, Boston, MA 02215" +247313,USB-C Charging Cable,1,11.95,08/23/19 21:29,"171 13th St, San Francisco, CA 94016" +247314,Macbook Pro Laptop,1,1700,08/20/19 12:11,"370 Cherry St, Atlanta, GA 30301" +247315,Wired Headphones,1,11.99,08/09/19 08:16,"741 11th St, Portland, OR 97035" +247316,Lightning Charging Cable,1,14.95,08/08/19 20:30,"751 6th St, San Francisco, CA 94016" +247317,AA Batteries (4-pack),1,3.84,08/16/19 19:35,"145 Lincoln St, Los Angeles, CA 90001" +247318,Google Phone,1,600,08/27/19 21:58,"945 Forest St, New York City, NY 10001" +247318,USB-C Charging Cable,1,11.95,08/27/19 21:58,"945 Forest St, New York City, NY 10001" +247319,Lightning Charging Cable,1,14.95,08/13/19 19:49,"780 Elm St, Los Angeles, CA 90001" +247320,27in 4K Gaming Monitor,1,389.99,08/08/19 17:54,"734 Spruce St, San Francisco, CA 94016" +247321,34in Ultrawide Monitor,1,379.99,08/09/19 13:20,"39 Washington St, Boston, MA 02215" +247322,USB-C Charging Cable,1,11.95,08/14/19 16:32,"891 Willow St, Atlanta, GA 30301" +247323,USB-C Charging Cable,1,11.95,08/20/19 12:51,"669 Pine St, Atlanta, GA 30301" +247324,USB-C Charging Cable,1,11.95,08/09/19 15:38,"859 13th St, San Francisco, CA 94016" +247325,27in 4K Gaming Monitor,1,389.99,08/09/19 20:53,"153 4th St, San Francisco, CA 94016" +247326,27in 4K Gaming Monitor,1,389.99,08/11/19 17:48,"170 Elm St, Los Angeles, CA 90001" +247327,Wired Headphones,1,11.99,08/21/19 12:52,"740 Chestnut St, San Francisco, CA 94016" +247328,AAA Batteries (4-pack),1,2.99,08/03/19 15:39,"995 12th St, Seattle, WA 98101" +247329,Google Phone,1,600,08/06/19 21:17,"512 West St, San Francisco, CA 94016" +247330,Macbook Pro Laptop,1,1700,08/25/19 23:48,"449 West St, San Francisco, CA 94016" +247331,Lightning Charging Cable,1,14.95,08/28/19 09:21,"428 Park St, Boston, MA 02215" +247332,Apple Airpods Headphones,1,150,08/30/19 19:13,"477 8th St, Los Angeles, CA 90001" +247333,27in FHD Monitor,1,149.99,08/15/19 23:33,"992 River St, Boston, MA 02215" +247334,AAA Batteries (4-pack),2,2.99,08/03/19 12:16,"555 Main St, New York City, NY 10001" +247335,AAA Batteries (4-pack),5,2.99,08/25/19 19:44,"105 9th St, Los Angeles, CA 90001" +247336,Flatscreen TV,1,300,08/16/19 11:03,"976 Jefferson St, Boston, MA 02215" +247337,AAA Batteries (4-pack),3,2.99,08/26/19 20:22,"986 Hickory St, San Francisco, CA 94016" +247338,AA Batteries (4-pack),2,3.84,08/21/19 01:07,"579 Jackson St, Boston, MA 02215" +247339,USB-C Charging Cable,1,11.95,08/24/19 10:13,"495 South St, San Francisco, CA 94016" +247340,Wired Headphones,1,11.99,08/14/19 13:35,"511 Meadow St, San Francisco, CA 94016" +247341,Wired Headphones,1,11.99,08/06/19 16:16,"24 Church St, Los Angeles, CA 90001" +247342,iPhone,1,700,08/17/19 20:23,"611 Lake St, Seattle, WA 98101" +247342,Wired Headphones,1,11.99,08/17/19 20:23,"611 Lake St, Seattle, WA 98101" +247343,Bose SoundSport Headphones,1,99.99,08/23/19 19:05,"265 Willow St, New York City, NY 10001" +247344,34in Ultrawide Monitor,1,379.99,08/12/19 10:35,"240 Cherry St, Dallas, TX 75001" +247345,Lightning Charging Cable,1,14.95,08/17/19 17:30,"449 Elm St, San Francisco, CA 94016" +247346,Lightning Charging Cable,1,14.95,08/22/19 21:20,"576 Lake St, Boston, MA 02215" +247346,27in FHD Monitor,1,149.99,08/22/19 21:20,"576 Lake St, Boston, MA 02215" +247347,20in Monitor,1,109.99,08/12/19 09:33,"688 West St, New York City, NY 10001" +247348,AA Batteries (4-pack),1,3.84,08/20/19 11:42,"88 Hickory St, Atlanta, GA 30301" +247349,Apple Airpods Headphones,1,150,08/24/19 09:39,"951 Jackson St, New York City, NY 10001" +247350,Flatscreen TV,1,300,08/03/19 04:30,"326 10th St, San Francisco, CA 94016" +247351,Wired Headphones,1,11.99,08/19/19 23:26,"55 Jefferson St, Austin, TX 73301" +247352,USB-C Charging Cable,1,11.95,08/29/19 19:34,"510 Adams St, New York City, NY 10001" +247353,Wired Headphones,1,11.99,08/17/19 10:56,"269 6th St, Atlanta, GA 30301" +247354,Lightning Charging Cable,1,14.95,08/15/19 11:47,"661 Walnut St, Los Angeles, CA 90001" +247355,Wired Headphones,1,11.99,08/18/19 14:13,"569 6th St, Atlanta, GA 30301" +247356,Apple Airpods Headphones,1,150,08/23/19 15:27,"395 Spruce St, New York City, NY 10001" +247357,AAA Batteries (4-pack),1,2.99,08/25/19 15:39,"40 8th St, Los Angeles, CA 90001" +247358,27in FHD Monitor,1,149.99,08/06/19 19:59,"937 6th St, New York City, NY 10001" +247359,iPhone,1,700,08/28/19 13:33,"133 7th St, San Francisco, CA 94016" +247360,USB-C Charging Cable,1,11.95,08/10/19 14:46,"765 Lincoln St, Boston, MA 02215" +247361,Lightning Charging Cable,1,14.95,08/18/19 10:29,"360 Washington St, Los Angeles, CA 90001" +247362,USB-C Charging Cable,1,11.95,08/01/19 15:37,"328 13th St, New York City, NY 10001" +247363,27in 4K Gaming Monitor,1,389.99,08/07/19 20:20,"743 4th St, New York City, NY 10001" +247364,USB-C Charging Cable,1,11.95,08/16/19 16:38,"127 8th St, San Francisco, CA 94016" +,,,,, +247365,Bose SoundSport Headphones,1,99.99,08/08/19 15:33,"282 Park St, Seattle, WA 98101" +247366,iPhone,1,700,08/17/19 00:30,"27 13th St, Dallas, TX 75001" +247367,Google Phone,1,600,08/12/19 01:15,"753 Ridge St, Los Angeles, CA 90001" +247368,AAA Batteries (4-pack),1,2.99,08/08/19 07:42,"481 4th St, San Francisco, CA 94016" +247369,USB-C Charging Cable,1,11.95,08/27/19 23:56,"320 Cherry St, Portland, ME 04101" +247370,AA Batteries (4-pack),1,3.84,08/16/19 12:28,"115 8th St, Los Angeles, CA 90001" +247371,USB-C Charging Cable,1,11.95,08/29/19 22:36,"25 9th St, San Francisco, CA 94016" +247372,27in FHD Monitor,1,149.99,08/28/19 11:19,"868 Maple St, San Francisco, CA 94016" +247373,Wired Headphones,1,11.99,08/17/19 19:49,"640 Church St, Boston, MA 02215" +247374,Lightning Charging Cable,1,14.95,08/24/19 17:33,"146 9th St, San Francisco, CA 94016" +247375,Flatscreen TV,1,300,08/18/19 18:37,"815 4th St, San Francisco, CA 94016" +247376,USB-C Charging Cable,1,11.95,08/21/19 00:22,"535 Willow St, Austin, TX 73301" +247377,Bose SoundSport Headphones,1,99.99,08/28/19 21:17,"445 Lincoln St, Los Angeles, CA 90001" +247378,Lightning Charging Cable,1,14.95,08/30/19 13:33,"774 Jackson St, San Francisco, CA 94016" +247379,Wired Headphones,2,11.99,08/08/19 17:21,"139 Willow St, Portland, ME 04101" +247380,Apple Airpods Headphones,1,150,08/02/19 00:00,"907 1st St, New York City, NY 10001" +247381,Flatscreen TV,1,300,08/26/19 12:45,"288 North St, New York City, NY 10001" +247382,Lightning Charging Cable,1,14.95,08/12/19 16:34,"312 Lake St, San Francisco, CA 94016" +247383,AA Batteries (4-pack),1,3.84,08/01/19 16:25,"960 1st St, Los Angeles, CA 90001" +247384,27in 4K Gaming Monitor,1,389.99,08/11/19 11:43,"391 Dogwood St, New York City, NY 10001" +247385,USB-C Charging Cable,1,11.95,08/21/19 18:11,"52 Dogwood St, New York City, NY 10001" +247386,Bose SoundSport Headphones,1,99.99,08/31/19 15:06,"837 Willow St, Los Angeles, CA 90001" +247387,AAA Batteries (4-pack),1,2.99,08/19/19 13:34,"236 Jackson St, Dallas, TX 75001" +247388,Flatscreen TV,1,300,08/28/19 22:47,"795 Ridge St, Boston, MA 02215" +247389,Apple Airpods Headphones,1,150,08/18/19 15:07,"523 Washington St, San Francisco, CA 94016" +247390,Bose SoundSport Headphones,1,99.99,08/19/19 03:46,"240 Hill St, New York City, NY 10001" +247390,Bose SoundSport Headphones,1,99.99,08/19/19 03:46,"240 Hill St, New York City, NY 10001" +247391,ThinkPad Laptop,1,999.99,08/10/19 11:39,"904 Highland St, New York City, NY 10001" +247392,Lightning Charging Cable,1,14.95,08/15/19 20:43,"451 Lake St, New York City, NY 10001" +247393,Lightning Charging Cable,1,14.95,08/09/19 12:38,"793 2nd St, Atlanta, GA 30301" +247394,Apple Airpods Headphones,1,150,08/29/19 09:30,"18 Forest St, New York City, NY 10001" +247395,20in Monitor,1,109.99,08/20/19 14:31,"691 Forest St, Austin, TX 73301" +247396,Wired Headphones,1,11.99,08/22/19 13:39,"650 Highland St, San Francisco, CA 94016" +247397,USB-C Charging Cable,1,11.95,08/11/19 18:49,"242 4th St, Los Angeles, CA 90001" +247398,AA Batteries (4-pack),1,3.84,08/20/19 23:22,"635 Hill St, San Francisco, CA 94016" +247399,Wired Headphones,1,11.99,08/21/19 11:40,"11 Lincoln St, Dallas, TX 75001" +247400,USB-C Charging Cable,1,11.95,08/05/19 21:12,"936 4th St, Los Angeles, CA 90001" +247401,iPhone,1,700,08/01/19 20:41,"792 Highland St, San Francisco, CA 94016" +247402,iPhone,1,700,08/30/19 21:38,"851 Ridge St, Los Angeles, CA 90001" +247403,34in Ultrawide Monitor,1,379.99,08/19/19 21:27,"144 Lakeview St, San Francisco, CA 94016" +247404,Google Phone,1,600,08/14/19 11:54,"686 Center St, New York City, NY 10001" +247404,Wired Headphones,1,11.99,08/14/19 11:54,"686 Center St, New York City, NY 10001" +247405,USB-C Charging Cable,1,11.95,08/31/19 11:17,"979 12th St, San Francisco, CA 94016" +247406,Lightning Charging Cable,1,14.95,08/07/19 16:51,"856 Madison St, Boston, MA 02215" +247407,Apple Airpods Headphones,1,150,08/30/19 16:10,"465 Cedar St, San Francisco, CA 94016" +247408,USB-C Charging Cable,1,11.95,08/04/19 11:56,"31 Willow St, New York City, NY 10001" +247409,USB-C Charging Cable,2,11.95,08/26/19 13:32,"628 Spruce St, Seattle, WA 98101" +247410,AA Batteries (4-pack),1,3.84,08/13/19 23:24,"213 9th St, Portland, OR 97035" +247411,AA Batteries (4-pack),1,3.84,08/15/19 11:27,"9 2nd St, Los Angeles, CA 90001" +247412,AA Batteries (4-pack),1,3.84,08/28/19 17:16,"446 Highland St, Portland, ME 04101" +247413,USB-C Charging Cable,1,11.95,08/13/19 11:34,"285 Jefferson St, Dallas, TX 75001" +247414,iPhone,1,700,08/07/19 21:43,"765 River St, New York City, NY 10001" +247415,Flatscreen TV,1,300,08/07/19 22:25,"25 Lake St, Los Angeles, CA 90001" +247416,Wired Headphones,1,11.99,08/04/19 13:36,"527 Lincoln St, Boston, MA 02215" +247417,Wired Headphones,1,11.99,08/01/19 20:58,"369 12th St, Dallas, TX 75001" +247418,USB-C Charging Cable,1,11.95,08/03/19 23:27,"152 Pine St, Dallas, TX 75001" +247419,Bose SoundSport Headphones,1,99.99,08/05/19 21:32,"895 9th St, Austin, TX 73301" +247420,AAA Batteries (4-pack),1,2.99,08/01/19 13:54,"442 Park St, New York City, NY 10001" +247421,Wired Headphones,1,11.99,08/24/19 11:16,"253 Center St, San Francisco, CA 94016" +247422,AAA Batteries (4-pack),2,2.99,08/29/19 21:44,"95 Sunset St, Los Angeles, CA 90001" +247423,27in 4K Gaming Monitor,1,389.99,08/29/19 02:09,"483 Elm St, Dallas, TX 75001" +247424,Bose SoundSport Headphones,1,99.99,08/16/19 18:52,"292 Sunset St, Dallas, TX 75001" +247425,20in Monitor,1,109.99,08/28/19 14:43,"946 10th St, Atlanta, GA 30301" +247426,Vareebadd Phone,1,400,08/23/19 14:52,"464 Lake St, San Francisco, CA 94016" +247427,USB-C Charging Cable,1,11.95,08/09/19 15:01,"677 10th St, Los Angeles, CA 90001" +247428,iPhone,1,700,08/29/19 16:57,"49 7th St, Dallas, TX 75001" +247428,Apple Airpods Headphones,1,150,08/29/19 16:57,"49 7th St, Dallas, TX 75001" +247429,Google Phone,1,600,08/11/19 15:00,"107 Madison St, Dallas, TX 75001" +247430,iPhone,1,700,08/05/19 15:05,"338 Adams St, San Francisco, CA 94016" +247431,Lightning Charging Cable,1,14.95,08/28/19 14:37,"173 4th St, Dallas, TX 75001" +247432,USB-C Charging Cable,1,11.95,08/20/19 20:09,"15 Hickory St, Los Angeles, CA 90001" +247433,Flatscreen TV,1,300,08/12/19 12:45,"200 North St, Boston, MA 02215" +247434,iPhone,1,700,08/02/19 19:12,"954 Walnut St, New York City, NY 10001" +247435,Lightning Charging Cable,1,14.95,08/26/19 14:00,"945 6th St, Seattle, WA 98101" +247436,AAA Batteries (4-pack),1,2.99,08/03/19 21:12,"315 Lake St, Seattle, WA 98101" +247437,AAA Batteries (4-pack),1,2.99,08/07/19 19:11,"298 13th St, Seattle, WA 98101" +247438,AAA Batteries (4-pack),1,2.99,08/24/19 05:01,"330 Willow St, San Francisco, CA 94016" +247439,Flatscreen TV,1,300,08/04/19 17:06,"115 Chestnut St, Los Angeles, CA 90001" +247440,Lightning Charging Cable,2,14.95,08/20/19 10:33,"143 Washington St, Portland, OR 97035" +247441,Macbook Pro Laptop,1,1700,08/02/19 14:01,"170 Adams St, Boston, MA 02215" +247442,27in FHD Monitor,1,149.99,08/23/19 10:02,"247 River St, Seattle, WA 98101" +247443,20in Monitor,1,109.99,08/30/19 21:59,"409 Chestnut St, Los Angeles, CA 90001" +247444,USB-C Charging Cable,1,11.95,08/21/19 18:10,"177 5th St, San Francisco, CA 94016" +247445,AA Batteries (4-pack),1,3.84,08/01/19 18:10,"807 Main St, Dallas, TX 75001" +247446,Wired Headphones,1,11.99,08/15/19 14:16,"271 5th St, Boston, MA 02215" +247447,Wired Headphones,1,11.99,08/15/19 07:47,"747 6th St, San Francisco, CA 94016" +247448,AAA Batteries (4-pack),1,2.99,08/30/19 10:43,"682 8th St, New York City, NY 10001" +247449,Wired Headphones,1,11.99,08/21/19 17:54,"624 River St, Atlanta, GA 30301" +247450,AA Batteries (4-pack),1,3.84,08/10/19 19:51,"476 Highland St, Dallas, TX 75001" +247451,Lightning Charging Cable,1,14.95,08/17/19 20:50,"226 5th St, San Francisco, CA 94016" +247452,USB-C Charging Cable,1,11.95,08/16/19 22:26,"670 Lakeview St, San Francisco, CA 94016" +247453,USB-C Charging Cable,1,11.95,08/08/19 17:57,"477 Church St, Boston, MA 02215" +247454,USB-C Charging Cable,1,11.95,08/10/19 18:15,"790 Cherry St, Boston, MA 02215" +247455,Wired Headphones,1,11.99,08/24/19 02:42,"66 River St, Portland, OR 97035" +247456,Apple Airpods Headphones,1,150,08/14/19 10:29,"20 Hickory St, Los Angeles, CA 90001" +247457,AAA Batteries (4-pack),1,2.99,08/05/19 12:46,"205 Willow St, Seattle, WA 98101" +247458,USB-C Charging Cable,1,11.95,08/08/19 15:12,"583 Madison St, San Francisco, CA 94016" +247459,AA Batteries (4-pack),1,3.84,08/05/19 15:53,"433 Elm St, Los Angeles, CA 90001" +247460,Apple Airpods Headphones,1,150,08/15/19 15:55,"53 Cherry St, Seattle, WA 98101" +247461,iPhone,1,700,08/03/19 15:58,"272 7th St, Boston, MA 02215" +247462,34in Ultrawide Monitor,1,379.99,08/10/19 00:46,"790 7th St, San Francisco, CA 94016" +247463,Google Phone,1,600,08/14/19 18:01,"9 Walnut St, Portland, OR 97035" +247464,20in Monitor,1,109.99,08/17/19 15:59,"668 Cedar St, Los Angeles, CA 90001" +247465,Lightning Charging Cable,1,14.95,08/29/19 15:27,"823 Sunset St, Seattle, WA 98101" +247466,USB-C Charging Cable,1,11.95,08/28/19 10:34,"396 Cherry St, Los Angeles, CA 90001" +247467,USB-C Charging Cable,1,11.95,08/28/19 18:40,"227 Chestnut St, San Francisco, CA 94016" +247468,Apple Airpods Headphones,1,150,08/17/19 14:08,"741 Washington St, Dallas, TX 75001" +247469,Wired Headphones,3,11.99,08/09/19 19:13,"403 Forest St, San Francisco, CA 94016" +247470,AA Batteries (4-pack),1,3.84,08/18/19 12:10,"811 Washington St, Seattle, WA 98101" +247471,Flatscreen TV,1,300,08/31/19 12:02,"245 14th St, Los Angeles, CA 90001" +247472,AA Batteries (4-pack),1,3.84,08/05/19 12:28,"843 Lincoln St, Atlanta, GA 30301" +247473,Wired Headphones,1,11.99,08/22/19 15:29,"602 Elm St, San Francisco, CA 94016" +247474,AA Batteries (4-pack),1,3.84,08/06/19 20:32,"135 Main St, Boston, MA 02215" +247475,Lightning Charging Cable,1,14.95,08/17/19 13:55,"318 Maple St, Seattle, WA 98101" +247476,Google Phone,1,600,08/25/19 20:57,"743 12th St, Los Angeles, CA 90001" +247476,USB-C Charging Cable,1,11.95,08/25/19 20:57,"743 12th St, Los Angeles, CA 90001" +247476,Bose SoundSport Headphones,1,99.99,08/25/19 20:57,"743 12th St, Los Angeles, CA 90001" +247477,iPhone,1,700,08/04/19 19:33,"160 Maple St, San Francisco, CA 94016" +247478,USB-C Charging Cable,1,11.95,08/13/19 08:07,"433 14th St, San Francisco, CA 94016" +247479,Wired Headphones,2,11.99,08/29/19 08:58,"715 Wilson St, Los Angeles, CA 90001" +247480,Macbook Pro Laptop,1,1700,08/28/19 12:56,"410 Pine St, Atlanta, GA 30301" +247481,Apple Airpods Headphones,1,150,08/08/19 23:57,"284 2nd St, San Francisco, CA 94016" +247482,Wired Headphones,1,11.99,08/18/19 15:17,"202 9th St, Seattle, WA 98101" +247483,AA Batteries (4-pack),1,3.84,08/12/19 19:54,"549 Church St, Atlanta, GA 30301" +247484,34in Ultrawide Monitor,1,379.99,08/03/19 10:12,"797 Park St, San Francisco, CA 94016" +247485,27in FHD Monitor,1,149.99,08/16/19 09:32,"355 13th St, San Francisco, CA 94016" +247486,Lightning Charging Cable,1,14.95,08/28/19 21:37,"478 1st St, San Francisco, CA 94016" +247487,Bose SoundSport Headphones,1,99.99,08/05/19 20:10,"206 12th St, San Francisco, CA 94016" +247488,Apple Airpods Headphones,1,150,08/09/19 20:10,"619 Center St, San Francisco, CA 94016" +247489,Google Phone,1,600,08/13/19 14:17,"570 Dogwood St, Los Angeles, CA 90001" +247490,Flatscreen TV,1,300,08/05/19 00:43,"608 Madison St, San Francisco, CA 94016" +247491,Google Phone,1,600,08/20/19 23:38,"444 Hill St, Los Angeles, CA 90001" +247492,AAA Batteries (4-pack),2,2.99,08/03/19 20:30,"854 9th St, San Francisco, CA 94016" +247493,Google Phone,1,600,08/15/19 22:00,"565 North St, Los Angeles, CA 90001" +247493,USB-C Charging Cable,2,11.95,08/15/19 22:00,"565 North St, Los Angeles, CA 90001" +247493,Wired Headphones,1,11.99,08/15/19 22:00,"565 North St, Los Angeles, CA 90001" +247494,34in Ultrawide Monitor,1,379.99,08/28/19 10:28,"536 Jefferson St, Boston, MA 02215" +247495,AAA Batteries (4-pack),2,2.99,08/04/19 22:46,"302 9th St, Seattle, WA 98101" +247496,Flatscreen TV,1,300,08/20/19 19:49,"751 Wilson St, San Francisco, CA 94016" +247497,27in 4K Gaming Monitor,1,389.99,08/30/19 20:08,"132 Church St, Seattle, WA 98101" +247498,AAA Batteries (4-pack),2,2.99,08/07/19 13:31,"550 Jackson St, San Francisco, CA 94016" +247499,Apple Airpods Headphones,1,150,08/09/19 21:17,"893 7th St, New York City, NY 10001" +247500,Apple Airpods Headphones,1,150,08/16/19 14:59,"773 Adams St, New York City, NY 10001" +247501,Flatscreen TV,1,300,08/02/19 22:26,"113 Jackson St, Dallas, TX 75001" +247502,AA Batteries (4-pack),5,3.84,08/10/19 16:37,"203 5th St, Portland, ME 04101" +247503,Lightning Charging Cable,1,14.95,08/29/19 18:43,"63 Ridge St, San Francisco, CA 94016" +247504,Bose SoundSport Headphones,1,99.99,08/16/19 14:21,"252 Lakeview St, San Francisco, CA 94016" +247505,AAA Batteries (4-pack),2,2.99,08/24/19 10:55,"8 Johnson St, Portland, OR 97035" +247506,20in Monitor,1,109.99,08/08/19 14:19,"788 14th St, San Francisco, CA 94016" +247507,AAA Batteries (4-pack),1,2.99,08/12/19 13:54,"215 River St, Los Angeles, CA 90001" +247508,27in FHD Monitor,1,149.99,08/12/19 23:00,"940 Cherry St, New York City, NY 10001" +247509,20in Monitor,1,109.99,08/19/19 08:04,"362 Lincoln St, Boston, MA 02215" +247510,Bose SoundSport Headphones,1,99.99,08/26/19 21:51,"16 13th St, Seattle, WA 98101" +247511,Lightning Charging Cable,1,14.95,08/12/19 14:45,"450 Pine St, Los Angeles, CA 90001" +247512,AAA Batteries (4-pack),1,2.99,08/06/19 08:21,"842 Meadow St, Atlanta, GA 30301" +247513,USB-C Charging Cable,1,11.95,08/28/19 10:14,"403 11th St, San Francisco, CA 94016" +247514,Bose SoundSport Headphones,1,99.99,08/21/19 18:40,"385 2nd St, Portland, OR 97035" +247515,Macbook Pro Laptop,1,1700,08/03/19 23:15,"722 River St, Los Angeles, CA 90001" +247516,Apple Airpods Headphones,1,150,08/16/19 17:01,"415 Chestnut St, Atlanta, GA 30301" +247517,Lightning Charging Cable,1,14.95,08/09/19 20:13,"679 Lakeview St, San Francisco, CA 94016" +247518,iPhone,1,700,08/20/19 11:02,"163 Adams St, Dallas, TX 75001" +247519,34in Ultrawide Monitor,1,379.99,08/06/19 06:15,"332 13th St, San Francisco, CA 94016" +247520,AAA Batteries (4-pack),2,2.99,08/07/19 13:57,"812 Cedar St, San Francisco, CA 94016" +247521,USB-C Charging Cable,1,11.95,08/21/19 11:28,"395 Hickory St, Boston, MA 02215" +247522,USB-C Charging Cable,1,11.95,08/04/19 15:22,"397 Walnut St, San Francisco, CA 94016" +247523,Google Phone,1,600,08/27/19 16:26,"720 Hill St, Atlanta, GA 30301" +247524,Apple Airpods Headphones,1,150,08/22/19 09:58,"429 8th St, Atlanta, GA 30301" +247525,Wired Headphones,1,11.99,08/04/19 23:21,"261 Washington St, San Francisco, CA 94016" +247526,Lightning Charging Cable,1,14.95,08/16/19 21:45,"41 Cherry St, Boston, MA 02215" +247527,27in FHD Monitor,1,149.99,08/02/19 16:30,"976 Willow St, New York City, NY 10001" +247528,Apple Airpods Headphones,1,150,08/26/19 12:34,"500 Sunset St, Austin, TX 73301" +247529,27in 4K Gaming Monitor,1,389.99,08/24/19 00:45,"324 10th St, Los Angeles, CA 90001" +247530,Apple Airpods Headphones,1,150,08/31/19 22:06,"693 Willow St, Austin, TX 73301" +247531,34in Ultrawide Monitor,1,379.99,08/17/19 00:10,"627 Lakeview St, Seattle, WA 98101" +247532,Vareebadd Phone,1,400,08/06/19 20:55,"208 Washington St, Dallas, TX 75001" +247533,Lightning Charging Cable,1,14.95,08/05/19 19:03,"284 Park St, Atlanta, GA 30301" +247534,Wired Headphones,1,11.99,08/22/19 14:59,"559 Madison St, Dallas, TX 75001" +247535,27in 4K Gaming Monitor,1,389.99,08/20/19 17:21,"693 Sunset St, San Francisco, CA 94016" +247536,Google Phone,1,600,08/03/19 06:13,"61 6th St, San Francisco, CA 94016" +247536,USB-C Charging Cable,1,11.95,08/03/19 06:13,"61 6th St, San Francisco, CA 94016" +247537,Wired Headphones,1,11.99,08/29/19 21:55,"97 4th St, New York City, NY 10001" +247538,20in Monitor,1,109.99,08/07/19 13:28,"327 Lincoln St, Seattle, WA 98101" +247539,AAA Batteries (4-pack),1,2.99,08/27/19 12:07,"109 12th St, San Francisco, CA 94016" +247540,Macbook Pro Laptop,1,1700,08/18/19 09:20,"412 Church St, Seattle, WA 98101" +247541,AAA Batteries (4-pack),3,2.99,08/07/19 11:44,"87 Highland St, San Francisco, CA 94016" +247542,Flatscreen TV,1,300,08/05/19 19:21,"922 Willow St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +247543,AA Batteries (4-pack),1,3.84,08/11/19 22:58,"783 Park St, Boston, MA 02215" +247544,Wired Headphones,1,11.99,08/16/19 21:09,"847 Center St, Austin, TX 73301" +247545,Bose SoundSport Headphones,1,99.99,08/02/19 16:29,"285 Hill St, Seattle, WA 98101" +247546,AAA Batteries (4-pack),1,2.99,08/12/19 09:52,"140 River St, Dallas, TX 75001" +247547,Apple Airpods Headphones,1,150,08/09/19 14:23,"346 5th St, Atlanta, GA 30301" +247548,Wired Headphones,1,11.99,08/01/19 12:29,"264 Lakeview St, San Francisco, CA 94016" +247549,Lightning Charging Cable,1,14.95,08/27/19 11:32,"798 6th St, Dallas, TX 75001" +247550,Apple Airpods Headphones,1,150,08/29/19 23:37,"645 Jefferson St, Los Angeles, CA 90001" +247551,AAA Batteries (4-pack),1,2.99,08/14/19 17:01,"883 Washington St, Dallas, TX 75001" +247552,Apple Airpods Headphones,1,150,08/29/19 12:17,"88 Chestnut St, Los Angeles, CA 90001" +247552,Apple Airpods Headphones,1,150,08/29/19 12:17,"88 Chestnut St, Los Angeles, CA 90001" +247553,Wired Headphones,1,11.99,08/27/19 18:32,"551 Elm St, Dallas, TX 75001" +247554,USB-C Charging Cable,1,11.95,08/23/19 21:32,"693 Church St, Seattle, WA 98101" +247555,AA Batteries (4-pack),2,3.84,08/23/19 08:03,"223 Maple St, Boston, MA 02215" +247556,Google Phone,1,600,08/17/19 18:43,"256 Jefferson St, Los Angeles, CA 90001" +247557,20in Monitor,1,109.99,08/13/19 19:47,"342 Johnson St, San Francisco, CA 94016" +247558,34in Ultrawide Monitor,1,379.99,08/21/19 13:53,"94 Adams St, Dallas, TX 75001" +247559,Lightning Charging Cable,1,14.95,08/14/19 13:22,"875 Cedar St, New York City, NY 10001" +247560,27in 4K Gaming Monitor,1,389.99,08/02/19 18:47,"619 6th St, San Francisco, CA 94016" +247561,AAA Batteries (4-pack),1,2.99,08/02/19 12:51,"114 2nd St, Portland, OR 97035" +247562,Apple Airpods Headphones,1,150,08/04/19 16:42,"345 11th St, Los Angeles, CA 90001" +247563,27in 4K Gaming Monitor,1,389.99,08/04/19 21:12,"748 Highland St, Boston, MA 02215" +247564,AA Batteries (4-pack),1,3.84,08/29/19 19:36,"285 10th St, Los Angeles, CA 90001" +247565,Google Phone,1,600,08/17/19 10:35,"165 Walnut St, New York City, NY 10001" +247566,Wired Headphones,1,11.99,08/25/19 11:44,"110 Maple St, Portland, OR 97035" +247567,USB-C Charging Cable,1,11.95,08/21/19 20:10,"56 Hill St, New York City, NY 10001" +247568,34in Ultrawide Monitor,1,379.99,08/30/19 09:48,"74 West St, Austin, TX 73301" +247569,ThinkPad Laptop,1,999.99,08/08/19 22:06,"487 14th St, Atlanta, GA 30301" +247570,34in Ultrawide Monitor,1,379.99,08/07/19 11:58,"850 11th St, Dallas, TX 75001" +247571,Apple Airpods Headphones,1,150,08/10/19 23:57,"293 13th St, Boston, MA 02215" +247572,Wired Headphones,1,11.99,08/31/19 14:01,"846 Center St, Atlanta, GA 30301" +247573,AAA Batteries (4-pack),1,2.99,08/04/19 12:14,"568 Main St, Dallas, TX 75001" +247574,27in 4K Gaming Monitor,1,389.99,08/09/19 08:46,"634 Maple St, Los Angeles, CA 90001" +247575,Flatscreen TV,1,300,08/05/19 16:07,"540 Lincoln St, Los Angeles, CA 90001" +247576,AA Batteries (4-pack),1,3.84,08/25/19 18:22,"554 River St, San Francisco, CA 94016" +247577,Wired Headphones,1,11.99,08/11/19 10:58,"545 Hill St, Atlanta, GA 30301" +247578,AAA Batteries (4-pack),2,2.99,08/30/19 09:21,"791 South St, Atlanta, GA 30301" +247579,Flatscreen TV,1,300,08/27/19 12:02,"950 Chestnut St, Portland, OR 97035" +247580,Vareebadd Phone,1,400,08/10/19 17:26,"403 Dogwood St, Portland, OR 97035" +247580,USB-C Charging Cable,1,11.95,08/10/19 17:26,"403 Dogwood St, Portland, OR 97035" +247581,AA Batteries (4-pack),1,3.84,08/07/19 20:55,"113 8th St, San Francisco, CA 94016" +247582,Flatscreen TV,1,300,08/04/19 08:18,"490 2nd St, San Francisco, CA 94016" +247583,Wired Headphones,1,11.99,08/25/19 06:57,"550 Jefferson St, Atlanta, GA 30301" +247584,Macbook Pro Laptop,1,1700,08/26/19 07:43,"697 2nd St, Atlanta, GA 30301" +247585,Google Phone,1,600,08/21/19 20:19,"694 Hill St, Austin, TX 73301" +247586,AAA Batteries (4-pack),1,2.99,08/30/19 13:09,"392 Willow St, Boston, MA 02215" +247587,Apple Airpods Headphones,1,150,08/27/19 17:53,"627 8th St, San Francisco, CA 94016" +247588,Lightning Charging Cable,1,14.95,08/03/19 20:23,"389 6th St, Dallas, TX 75001" +247589,USB-C Charging Cable,1,11.95,08/24/19 22:39,"154 Spruce St, New York City, NY 10001" +247590,34in Ultrawide Monitor,1,379.99,08/20/19 17:23,"699 4th St, Boston, MA 02215" +247591,Wired Headphones,1,11.99,08/17/19 19:36,"765 Cherry St, New York City, NY 10001" +247592,Apple Airpods Headphones,1,150,08/16/19 15:18,"715 8th St, Austin, TX 73301" +247593,Apple Airpods Headphones,1,150,08/22/19 20:36,"698 Jackson St, Boston, MA 02215" +247594,iPhone,1,700,08/29/19 11:14,"466 Center St, San Francisco, CA 94016" +247595,27in FHD Monitor,1,149.99,08/15/19 08:47,"373 Main St, New York City, NY 10001" +247596,AAA Batteries (4-pack),3,2.99,08/22/19 20:18,"924 8th St, Boston, MA 02215" +247597,20in Monitor,1,109.99,08/27/19 14:40,"168 1st St, Los Angeles, CA 90001" +247598,Lightning Charging Cable,1,14.95,08/28/19 23:11,"492 14th St, San Francisco, CA 94016" +247599,Bose SoundSport Headphones,1,99.99,08/03/19 10:43,"70 Lakeview St, Dallas, TX 75001" +247600,Apple Airpods Headphones,1,150,08/04/19 18:05,"764 Main St, Dallas, TX 75001" +247601,Bose SoundSport Headphones,1,99.99,08/11/19 12:41,"840 Jefferson St, Seattle, WA 98101" +247602,Lightning Charging Cable,1,14.95,08/03/19 09:40,"831 Pine St, Seattle, WA 98101" +247603,AA Batteries (4-pack),3,3.84,08/14/19 21:39,"26 Willow St, Los Angeles, CA 90001" +247604,Lightning Charging Cable,1,14.95,08/15/19 16:54,"902 Jackson St, San Francisco, CA 94016" +247605,AAA Batteries (4-pack),1,2.99,08/13/19 01:45,"230 Lincoln St, Austin, TX 73301" +247606,AAA Batteries (4-pack),1,2.99,08/17/19 20:39,"815 Chestnut St, New York City, NY 10001" +247607,Wired Headphones,1,11.99,08/31/19 18:41,"519 Jackson St, Seattle, WA 98101" +247608,AAA Batteries (4-pack),2,2.99,08/30/19 09:47,"236 Chestnut St, San Francisco, CA 94016" +247609,27in 4K Gaming Monitor,1,389.99,08/25/19 17:08,"697 Meadow St, New York City, NY 10001" +247610,Lightning Charging Cable,1,14.95,08/13/19 00:46,"739 Jackson St, Boston, MA 02215" +247611,27in 4K Gaming Monitor,1,389.99,08/08/19 10:48,"907 Willow St, New York City, NY 10001" +247612,Lightning Charging Cable,1,14.95,08/16/19 21:34,"98 6th St, Atlanta, GA 30301" +247613,Lightning Charging Cable,1,14.95,08/01/19 17:39,"661 13th St, Los Angeles, CA 90001" +247614,Lightning Charging Cable,1,14.95,08/02/19 19:57,"771 Cedar St, Seattle, WA 98101" +247615,Flatscreen TV,1,300,08/18/19 08:45,"742 Forest St, New York City, NY 10001" +247616,AA Batteries (4-pack),1,3.84,08/21/19 11:42,"612 Willow St, San Francisco, CA 94016" +247617,USB-C Charging Cable,1,11.95,08/19/19 15:07,"158 Meadow St, San Francisco, CA 94016" +247618,Google Phone,1,600,08/11/19 10:59,"183 Cherry St, Portland, ME 04101" +247619,Bose SoundSport Headphones,1,99.99,08/03/19 19:20,"825 Park St, Los Angeles, CA 90001" +247620,Bose SoundSport Headphones,1,99.99,08/27/19 15:52,"294 Pine St, New York City, NY 10001" +247621,iPhone,1,700,08/21/19 11:16,"470 Park St, New York City, NY 10001" +247622,27in FHD Monitor,1,149.99,08/30/19 07:18,"443 Washington St, Dallas, TX 75001" +247623,AA Batteries (4-pack),1,3.84,08/16/19 13:29,"802 Lake St, Boston, MA 02215" +247624,Google Phone,1,600,08/23/19 11:12,"953 8th St, San Francisco, CA 94016" +247624,USB-C Charging Cable,1,11.95,08/23/19 11:12,"953 8th St, San Francisco, CA 94016" +247625,27in 4K Gaming Monitor,1,389.99,08/06/19 18:27,"423 Lakeview St, Boston, MA 02215" +247626,AAA Batteries (4-pack),1,2.99,08/04/19 18:42,"291 South St, Boston, MA 02215" +247627,AAA Batteries (4-pack),3,2.99,08/16/19 19:32,"892 Lakeview St, Atlanta, GA 30301" +247628,Lightning Charging Cable,1,14.95,08/17/19 11:44,"769 6th St, Portland, OR 97035" +247629,34in Ultrawide Monitor,1,379.99,08/19/19 07:38,"293 Main St, Austin, TX 73301" +247630,iPhone,1,700,08/25/19 19:06,"290 Jefferson St, Austin, TX 73301" +247631,ThinkPad Laptop,1,999.99,08/22/19 20:39,"435 Cedar St, New York City, NY 10001" +247632,Lightning Charging Cable,1,14.95,08/31/19 19:06,"286 Meadow St, San Francisco, CA 94016" +247633,USB-C Charging Cable,1,11.95,08/28/19 11:22,"454 West St, Portland, OR 97035" +247634,Apple Airpods Headphones,1,150,08/18/19 15:06,"113 Dogwood St, New York City, NY 10001" +247635,Lightning Charging Cable,1,14.95,08/14/19 07:08,"603 Chestnut St, New York City, NY 10001" +247636,34in Ultrawide Monitor,1,379.99,08/17/19 08:13,"30 4th St, Atlanta, GA 30301" +247637,Apple Airpods Headphones,1,150,08/08/19 19:16,"19 Ridge St, Austin, TX 73301" +247638,Wired Headphones,1,11.99,08/22/19 12:42,"600 Dogwood St, San Francisco, CA 94016" +247639,Bose SoundSport Headphones,1,99.99,08/28/19 11:18,"313 Jefferson St, Atlanta, GA 30301" +247640,Lightning Charging Cable,1,14.95,08/21/19 09:19,"992 Madison St, New York City, NY 10001" +247641,Wired Headphones,1,11.99,08/23/19 09:18,"741 Hill St, New York City, NY 10001" +247642,34in Ultrawide Monitor,1,379.99,08/25/19 10:47,"464 Elm St, Atlanta, GA 30301" +247643,Bose SoundSport Headphones,1,99.99,08/13/19 16:09,"955 Lake St, San Francisco, CA 94016" +247644,Apple Airpods Headphones,1,150,08/06/19 15:27,"412 10th St, San Francisco, CA 94016" +247645,Apple Airpods Headphones,1,150,08/29/19 11:43,"27 Jackson St, New York City, NY 10001" +247646,AA Batteries (4-pack),1,3.84,08/06/19 21:30,"247 11th St, Boston, MA 02215" +247647,Wired Headphones,1,11.99,08/16/19 15:55,"281 Church St, Seattle, WA 98101" +247648,27in 4K Gaming Monitor,1,389.99,08/09/19 11:46,"299 Hickory St, Boston, MA 02215" +247649,Lightning Charging Cable,1,14.95,08/08/19 09:58,"22 Adams St, Seattle, WA 98101" +247650,Wired Headphones,1,11.99,08/06/19 22:37,"244 Church St, San Francisco, CA 94016" +247651,Apple Airpods Headphones,1,150,08/10/19 20:36,"483 Washington St, New York City, NY 10001" +247652,27in 4K Gaming Monitor,1,389.99,08/29/19 16:49,"315 2nd St, New York City, NY 10001" +247653,AAA Batteries (4-pack),1,2.99,08/02/19 15:40,"410 1st St, San Francisco, CA 94016" +247654,Wired Headphones,1,11.99,08/08/19 21:05,"272 Wilson St, Austin, TX 73301" +247655,AAA Batteries (4-pack),3,2.99,08/02/19 20:01,"318 6th St, Austin, TX 73301" +247656,Bose SoundSport Headphones,1,99.99,08/24/19 15:51,"7 12th St, Boston, MA 02215" +247657,Apple Airpods Headphones,1,150,08/01/19 16:34,"697 Lake St, Seattle, WA 98101" +247658,AA Batteries (4-pack),2,3.84,08/08/19 22:02,"660 Church St, San Francisco, CA 94016" +247659,iPhone,1,700,08/26/19 06:27,"886 Ridge St, Seattle, WA 98101" +247660,AA Batteries (4-pack),1,3.84,08/15/19 22:06,"978 Johnson St, Boston, MA 02215" +247661,AA Batteries (4-pack),2,3.84,08/10/19 15:45,"644 Center St, Seattle, WA 98101" +247662,Wired Headphones,1,11.99,08/29/19 12:18,"364 Maple St, Boston, MA 02215" +247663,AA Batteries (4-pack),5,3.84,08/07/19 07:27,"270 Hickory St, Dallas, TX 75001" +247664,27in FHD Monitor,1,149.99,08/17/19 12:01,"864 Adams St, New York City, NY 10001" +247665,ThinkPad Laptop,1,999.99,08/26/19 00:17,"580 Adams St, Portland, OR 97035" +247666,Wired Headphones,1,11.99,08/04/19 22:35,"968 Elm St, Portland, OR 97035" +247667,27in 4K Gaming Monitor,1,389.99,08/31/19 13:33,"553 6th St, Los Angeles, CA 90001" +247668,AAA Batteries (4-pack),1,2.99,08/06/19 11:44,"826 Highland St, Boston, MA 02215" +247669,AAA Batteries (4-pack),1,2.99,08/22/19 16:47,"582 Ridge St, San Francisco, CA 94016" +247670,Google Phone,1,600,08/29/19 18:43,"969 Spruce St, Boston, MA 02215" +247670,USB-C Charging Cable,1,11.95,08/29/19 18:43,"969 Spruce St, Boston, MA 02215" +247671,Bose SoundSport Headphones,1,99.99,08/31/19 17:03,"854 River St, Los Angeles, CA 90001" +247672,Flatscreen TV,1,300,08/05/19 22:08,"608 Hill St, Boston, MA 02215" +247673,Wired Headphones,1,11.99,08/10/19 12:38,"299 River St, San Francisco, CA 94016" +247674,AA Batteries (4-pack),1,3.84,08/15/19 13:30,"532 9th St, Los Angeles, CA 90001" +247675,Lightning Charging Cable,1,14.95,08/11/19 21:07,"230 14th St, New York City, NY 10001" +247676,AAA Batteries (4-pack),1,2.99,08/30/19 16:15,"67 Willow St, Boston, MA 02215" +247677,Google Phone,1,600,08/10/19 21:37,"498 Center St, Los Angeles, CA 90001" +247678,Flatscreen TV,1,300,08/24/19 02:36,"308 Adams St, Seattle, WA 98101" +247679,Macbook Pro Laptop,1,1700,08/29/19 10:09,"543 Forest St, New York City, NY 10001" +247680,Lightning Charging Cable,1,14.95,08/12/19 11:57,"972 Ridge St, Boston, MA 02215" +247681,Wired Headphones,1,11.99,08/18/19 12:19,"601 Pine St, Atlanta, GA 30301" +247682,Bose SoundSport Headphones,1,99.99,08/09/19 20:36,"658 11th St, Los Angeles, CA 90001" +247683,Flatscreen TV,1,300,08/18/19 06:15,"585 Dogwood St, San Francisco, CA 94016" +247684,20in Monitor,1,109.99,08/20/19 21:45,"44 Lake St, Portland, OR 97035" +247685,Wired Headphones,1,11.99,08/22/19 19:55,"620 Pine St, Dallas, TX 75001" +247686,Apple Airpods Headphones,1,150,08/21/19 19:54,"383 Jefferson St, Boston, MA 02215" +247687,Wired Headphones,1,11.99,08/12/19 19:22,"558 2nd St, Portland, OR 97035" +247688,AAA Batteries (4-pack),1,2.99,08/15/19 13:25,"619 Lakeview St, San Francisco, CA 94016" +247689,AAA Batteries (4-pack),1,2.99,08/06/19 13:42,"790 Chestnut St, Dallas, TX 75001" +247690,Apple Airpods Headphones,1,150,08/20/19 03:16,"100 6th St, Portland, OR 97035" +247691,Wired Headphones,1,11.99,08/30/19 20:57,"987 Madison St, San Francisco, CA 94016" +247692,Wired Headphones,2,11.99,08/11/19 20:43,"99 Maple St, New York City, NY 10001" +247693,Bose SoundSport Headphones,1,99.99,08/22/19 01:12,"451 Center St, Atlanta, GA 30301" +247694,Lightning Charging Cable,1,14.95,08/19/19 18:31,"128 12th St, Los Angeles, CA 90001" +247695,Bose SoundSport Headphones,1,99.99,08/09/19 14:34,"111 6th St, San Francisco, CA 94016" +247696,Bose SoundSport Headphones,1,99.99,08/17/19 15:22,"1 11th St, San Francisco, CA 94016" +247697,Lightning Charging Cable,1,14.95,08/08/19 16:42,"606 Johnson St, San Francisco, CA 94016" +247698,Vareebadd Phone,1,400,08/12/19 12:12,"970 Lake St, Portland, OR 97035" +247699,AA Batteries (4-pack),1,3.84,08/07/19 20:32,"638 Pine St, Seattle, WA 98101" +247700,Wired Headphones,1,11.99,08/11/19 21:08,"171 Park St, San Francisco, CA 94016" +247700,27in 4K Gaming Monitor,1,389.99,08/11/19 21:08,"171 Park St, San Francisco, CA 94016" +247701,ThinkPad Laptop,1,999.99,08/10/19 18:01,"824 Willow St, Seattle, WA 98101" +247702,Lightning Charging Cable,1,14.95,08/28/19 00:30,"77 Hickory St, New York City, NY 10001" +247703,Apple Airpods Headphones,1,150,08/25/19 16:26,"538 12th St, Los Angeles, CA 90001" +247704,Apple Airpods Headphones,1,150,08/13/19 23:01,"862 Maple St, Los Angeles, CA 90001" +247705,ThinkPad Laptop,1,999.99,08/22/19 16:15,"839 14th St, Los Angeles, CA 90001" +247706,Bose SoundSport Headphones,1,99.99,08/12/19 08:30,"973 9th St, Los Angeles, CA 90001" +247707,USB-C Charging Cable,1,11.95,08/25/19 05:44,"389 Spruce St, New York City, NY 10001" +247708,Bose SoundSport Headphones,1,99.99,08/14/19 11:30,"826 Center St, Dallas, TX 75001" +247709,Bose SoundSport Headphones,1,99.99,08/27/19 13:06,"130 Madison St, Portland, OR 97035" +247710,AAA Batteries (4-pack),1,2.99,08/30/19 20:05,"349 Hickory St, Boston, MA 02215" +247711,ThinkPad Laptop,1,999.99,08/31/19 12:51,"172 6th St, San Francisco, CA 94016" +247712,AAA Batteries (4-pack),1,2.99,08/08/19 10:57,"674 Main St, Dallas, TX 75001" +247713,Apple Airpods Headphones,1,150,08/12/19 09:38,"80 Park St, San Francisco, CA 94016" +247714,Apple Airpods Headphones,1,150,08/24/19 14:29,"110 8th St, San Francisco, CA 94016" +247715,AA Batteries (4-pack),3,3.84,08/03/19 22:39,"455 4th St, New York City, NY 10001" +247716,Lightning Charging Cable,2,14.95,08/13/19 12:59,"584 West St, New York City, NY 10001" +247717,iPhone,1,700,08/28/19 06:32,"816 6th St, San Francisco, CA 94016" +247718,AAA Batteries (4-pack),1,2.99,08/09/19 12:26,"48 Park St, San Francisco, CA 94016" +247718,AAA Batteries (4-pack),1,2.99,08/09/19 12:26,"48 Park St, San Francisco, CA 94016" +247719,AA Batteries (4-pack),1,3.84,08/13/19 17:40,"423 Jackson St, Portland, OR 97035" +247720,Wired Headphones,1,11.99,08/05/19 02:11,"7 West St, Atlanta, GA 30301" +247721,Wired Headphones,1,11.99,08/05/19 10:52,"272 Washington St, Boston, MA 02215" +247722,AAA Batteries (4-pack),1,2.99,08/20/19 11:12,"794 Spruce St, Boston, MA 02215" +247723,AA Batteries (4-pack),1,3.84,08/08/19 10:53,"876 Walnut St, San Francisco, CA 94016" +247724,AAA Batteries (4-pack),2,2.99,08/21/19 16:52,"692 Hill St, Atlanta, GA 30301" +247725,20in Monitor,1,109.99,08/13/19 20:58,"594 Main St, Seattle, WA 98101" +247726,AAA Batteries (4-pack),1,2.99,08/28/19 15:37,"832 Madison St, San Francisco, CA 94016" +247727,Lightning Charging Cable,1,14.95,08/16/19 17:10,"482 4th St, Atlanta, GA 30301" +247728,AAA Batteries (4-pack),1,2.99,08/26/19 21:40,"496 9th St, Atlanta, GA 30301" +247729,20in Monitor,1,109.99,08/14/19 06:33,"732 West St, Portland, OR 97035" +247730,34in Ultrawide Monitor,1,379.99,08/20/19 18:08,"466 10th St, Austin, TX 73301" +247731,USB-C Charging Cable,1,11.95,08/11/19 20:20,"514 6th St, Dallas, TX 75001" +247732,Wired Headphones,2,11.99,08/22/19 18:42,"894 North St, Dallas, TX 75001" +247733,Wired Headphones,1,11.99,08/14/19 14:50,"911 9th St, San Francisco, CA 94016" +247734,AA Batteries (4-pack),1,3.84,08/28/19 11:28,"533 Madison St, Atlanta, GA 30301" +247735,Lightning Charging Cable,2,14.95,08/18/19 07:26,"974 11th St, Los Angeles, CA 90001" +247736,Apple Airpods Headphones,1,150,08/28/19 10:26,"267 Cherry St, Austin, TX 73301" +247737,AA Batteries (4-pack),1,3.84,08/31/19 00:46,"539 Washington St, Seattle, WA 98101" +247738,Wired Headphones,1,11.99,08/25/19 12:39,"532 5th St, Boston, MA 02215" +247739,iPhone,1,700,08/24/19 15:20,"842 6th St, New York City, NY 10001" +247740,LG Washing Machine,1,600.0,08/10/19 09:17,"765 Cherry St, San Francisco, CA 94016" +247741,Lightning Charging Cable,1,14.95,08/13/19 13:30,"74 1st St, New York City, NY 10001" +247742,Macbook Pro Laptop,1,1700,08/07/19 18:59,"944 Washington St, Austin, TX 73301" +247743,USB-C Charging Cable,1,11.95,08/15/19 12:27,"710 13th St, Dallas, TX 75001" +247744,USB-C Charging Cable,1,11.95,08/09/19 15:45,"559 Lakeview St, Austin, TX 73301" +247745,USB-C Charging Cable,1,11.95,08/24/19 23:39,"111 Park St, Los Angeles, CA 90001" +247746,AA Batteries (4-pack),1,3.84,08/25/19 15:50,"42 14th St, Boston, MA 02215" +247747,USB-C Charging Cable,1,11.95,08/26/19 11:20,"443 River St, Los Angeles, CA 90001" +247748,Lightning Charging Cable,1,14.95,08/09/19 21:36,"688 Ridge St, San Francisco, CA 94016" +247749,Apple Airpods Headphones,1,150,08/21/19 14:27,"289 Lake St, San Francisco, CA 94016" +247750,27in 4K Gaming Monitor,1,389.99,08/15/19 08:56,"879 Willow St, Los Angeles, CA 90001" +247751,USB-C Charging Cable,1,11.95,08/18/19 15:01,"418 Center St, Dallas, TX 75001" +247752,Bose SoundSport Headphones,1,99.99,08/12/19 23:21,"341 Center St, Los Angeles, CA 90001" +247753,AA Batteries (4-pack),1,3.84,08/14/19 20:09,"762 Center St, Portland, OR 97035" +247754,Lightning Charging Cable,1,14.95,08/25/19 16:57,"270 Ridge St, Los Angeles, CA 90001" +247755,Google Phone,1,600,08/26/19 16:40,"708 Main St, Los Angeles, CA 90001" +247755,USB-C Charging Cable,1,11.95,08/26/19 16:40,"708 Main St, Los Angeles, CA 90001" +247756,27in FHD Monitor,1,149.99,08/07/19 10:36,"566 Lake St, Los Angeles, CA 90001" +247757,USB-C Charging Cable,1,11.95,08/08/19 22:27,"941 North St, New York City, NY 10001" +247758,AA Batteries (4-pack),1,3.84,08/18/19 21:24,"658 Ridge St, Atlanta, GA 30301" +247759,AA Batteries (4-pack),1,3.84,08/28/19 16:38,"501 7th St, San Francisco, CA 94016" +247760,Lightning Charging Cable,1,14.95,08/24/19 17:17,"540 Walnut St, Los Angeles, CA 90001" +247761,AAA Batteries (4-pack),1,2.99,08/30/19 20:58,"66 Madison St, Portland, OR 97035" +247762,USB-C Charging Cable,1,11.95,08/13/19 13:35,"825 Jackson St, San Francisco, CA 94016" +247763,AAA Batteries (4-pack),1,2.99,08/04/19 18:54,"358 14th St, San Francisco, CA 94016" +247764,Apple Airpods Headphones,1,150,08/08/19 22:59,"597 Forest St, San Francisco, CA 94016" +247765,27in FHD Monitor,1,149.99,08/10/19 10:52,"330 13th St, Atlanta, GA 30301" +247766,Apple Airpods Headphones,1,150,08/25/19 08:46,"279 8th St, San Francisco, CA 94016" +247767,USB-C Charging Cable,1,11.95,08/25/19 17:07,"205 Meadow St, San Francisco, CA 94016" +247768,Bose SoundSport Headphones,1,99.99,08/06/19 21:28,"273 Spruce St, Boston, MA 02215" +247769,Wired Headphones,2,11.99,08/31/19 20:19,"320 12th St, Portland, OR 97035" +247770,Flatscreen TV,1,300,08/22/19 20:40,"726 13th St, San Francisco, CA 94016" +247771,USB-C Charging Cable,1,11.95,08/20/19 16:19,"861 Main St, San Francisco, CA 94016" +247772,27in FHD Monitor,1,149.99,08/20/19 11:56,"302 14th St, Dallas, TX 75001" +247773,AA Batteries (4-pack),2,3.84,08/10/19 23:25,"186 Jefferson St, San Francisco, CA 94016" +247774,Apple Airpods Headphones,1,150,08/31/19 12:49,"51 Dogwood St, Boston, MA 02215" +247775,AAA Batteries (4-pack),1,2.99,08/28/19 21:35,"993 West St, San Francisco, CA 94016" +247776,Lightning Charging Cable,1,14.95,08/13/19 16:02,"565 Church St, Portland, OR 97035" +247777,Bose SoundSport Headphones,1,99.99,08/03/19 18:19,"101 Meadow St, New York City, NY 10001" +247778,Lightning Charging Cable,1,14.95,08/12/19 13:25,"188 Willow St, New York City, NY 10001" +247779,Wired Headphones,1,11.99,08/25/19 18:51,"815 Washington St, New York City, NY 10001" +247780,AAA Batteries (4-pack),1,2.99,08/28/19 12:25,"990 Wilson St, Atlanta, GA 30301" +247781,Bose SoundSport Headphones,1,99.99,08/22/19 22:03,"7 Walnut St, Los Angeles, CA 90001" +247782,AA Batteries (4-pack),2,3.84,08/29/19 20:13,"289 4th St, Dallas, TX 75001" +247783,Flatscreen TV,1,300,08/13/19 16:56,"918 6th St, San Francisco, CA 94016" +247784,Apple Airpods Headphones,1,150,08/24/19 13:22,"419 7th St, Los Angeles, CA 90001" +247785,Bose SoundSport Headphones,1,99.99,08/30/19 13:20,"40 2nd St, New York City, NY 10001" +247786,AA Batteries (4-pack),1,3.84,08/22/19 21:37,"669 Pine St, Los Angeles, CA 90001" +247787,27in FHD Monitor,1,149.99,08/17/19 22:30,"21 8th St, Boston, MA 02215" +247788,Wired Headphones,1,11.99,08/13/19 19:18,"955 13th St, Dallas, TX 75001" +247789,Wired Headphones,1,11.99,08/04/19 14:28,"767 Jefferson St, New York City, NY 10001" +247790,Lightning Charging Cable,1,14.95,08/16/19 09:44,"471 Maple St, Seattle, WA 98101" +247791,AAA Batteries (4-pack),1,2.99,08/31/19 09:17,"955 13th St, Boston, MA 02215" +247792,Macbook Pro Laptop,1,1700,08/28/19 21:26,"874 4th St, New York City, NY 10001" +247793,Wired Headphones,1,11.99,08/14/19 00:51,"262 Chestnut St, San Francisco, CA 94016" +247794,Wired Headphones,1,11.99,08/28/19 16:43,"192 13th St, Boston, MA 02215" +247795,Bose SoundSport Headphones,1,99.99,08/28/19 10:41,"707 Dogwood St, San Francisco, CA 94016" +247796,AAA Batteries (4-pack),1,2.99,08/12/19 18:49,"822 Meadow St, San Francisco, CA 94016" +247797,AA Batteries (4-pack),2,3.84,08/06/19 21:14,"394 Cedar St, Los Angeles, CA 90001" +247798,20in Monitor,1,109.99,08/08/19 12:56,"456 Cherry St, Los Angeles, CA 90001" +247799,Flatscreen TV,1,300,08/04/19 11:47,"394 Park St, New York City, NY 10001" +247800,AAA Batteries (4-pack),1,2.99,08/17/19 09:54,"212 13th St, San Francisco, CA 94016" +247801,USB-C Charging Cable,1,11.95,08/11/19 00:48,"405 8th St, Portland, OR 97035" +247802,AA Batteries (4-pack),2,3.84,08/11/19 16:36,"157 Church St, Dallas, TX 75001" +247803,34in Ultrawide Monitor,1,379.99,08/13/19 18:09,"314 5th St, Los Angeles, CA 90001" +247804,AAA Batteries (4-pack),1,2.99,08/08/19 17:02,"426 Cherry St, Seattle, WA 98101" +247805,ThinkPad Laptop,1,999.99,08/23/19 14:05,"189 Main St, Atlanta, GA 30301" +247806,Lightning Charging Cable,1,14.95,08/27/19 12:11,"745 Center St, Portland, OR 97035" +247807,Lightning Charging Cable,1,14.95,08/17/19 09:53,"754 Sunset St, Austin, TX 73301" +247808,Wired Headphones,1,11.99,08/06/19 08:56,"881 Center St, San Francisco, CA 94016" +247809,USB-C Charging Cable,1,11.95,08/14/19 19:47,"278 Lake St, Los Angeles, CA 90001" +247810,AAA Batteries (4-pack),1,2.99,08/05/19 17:41,"24 Lincoln St, New York City, NY 10001" +247811,34in Ultrawide Monitor,1,379.99,08/04/19 05:18,"223 West St, Boston, MA 02215" +247812,Google Phone,1,600,08/22/19 22:52,"739 Jefferson St, Atlanta, GA 30301" +247813,AAA Batteries (4-pack),1,2.99,08/11/19 16:28,"606 10th St, San Francisco, CA 94016" +247814,AA Batteries (4-pack),1,3.84,08/10/19 11:41,"884 Johnson St, Boston, MA 02215" +247815,Bose SoundSport Headphones,1,99.99,08/08/19 10:51,"449 11th St, Austin, TX 73301" +247816,AA Batteries (4-pack),1,3.84,08/24/19 20:52,"566 13th St, San Francisco, CA 94016" +247817,Bose SoundSport Headphones,1,99.99,08/05/19 05:43,"217 North St, San Francisco, CA 94016" +247818,Vareebadd Phone,1,400,08/09/19 21:20,"869 Pine St, Boston, MA 02215" +247819,Macbook Pro Laptop,1,1700,08/21/19 17:38,"803 Meadow St, San Francisco, CA 94016" +247820,20in Monitor,1,109.99,08/18/19 13:47,"515 Elm St, New York City, NY 10001" +247821,Macbook Pro Laptop,1,1700,08/02/19 13:03,"911 River St, Boston, MA 02215" +247822,Wired Headphones,1,11.99,08/07/19 14:00,"987 9th St, Austin, TX 73301" +247823,34in Ultrawide Monitor,1,379.99,08/06/19 13:01,"794 Hickory St, New York City, NY 10001" +247824,Apple Airpods Headphones,1,150,08/11/19 08:52,"805 Meadow St, New York City, NY 10001" +247825,Bose SoundSport Headphones,1,99.99,08/14/19 23:34,"362 5th St, Dallas, TX 75001" +247826,Bose SoundSport Headphones,1,99.99,08/18/19 18:07,"129 Meadow St, Los Angeles, CA 90001" +247827,Bose SoundSport Headphones,1,99.99,08/13/19 09:16,"362 Forest St, Boston, MA 02215" +247828,Wired Headphones,1,11.99,08/04/19 18:46,"564 14th St, San Francisco, CA 94016" +247829,Wired Headphones,1,11.99,08/25/19 03:05,"877 South St, Boston, MA 02215" +247830,Bose SoundSport Headphones,1,99.99,08/21/19 11:23,"780 River St, Austin, TX 73301" +247831,USB-C Charging Cable,1,11.95,08/23/19 20:51,"760 Cedar St, Los Angeles, CA 90001" +247832,AA Batteries (4-pack),1,3.84,08/04/19 07:21,"784 5th St, San Francisco, CA 94016" +247833,Lightning Charging Cable,1,14.95,08/17/19 10:10,"873 14th St, Seattle, WA 98101" +247834,USB-C Charging Cable,1,11.95,08/04/19 09:34,"548 11th St, San Francisco, CA 94016" +247835,Lightning Charging Cable,1,14.95,08/26/19 09:13,"680 Madison St, San Francisco, CA 94016" +247836,Lightning Charging Cable,1,14.95,08/13/19 05:34,"473 Lincoln St, Portland, OR 97035" +247837,AAA Batteries (4-pack),1,2.99,08/23/19 21:55,"374 11th St, Portland, OR 97035" +247838,Lightning Charging Cable,1,14.95,08/30/19 13:37,"755 Meadow St, Seattle, WA 98101" +247839,Macbook Pro Laptop,1,1700,08/19/19 21:56,"382 Lake St, Los Angeles, CA 90001" +247840,AA Batteries (4-pack),2,3.84,08/04/19 23:51,"20 Forest St, San Francisco, CA 94016" +247841,AAA Batteries (4-pack),1,2.99,08/11/19 16:47,"641 Lakeview St, Dallas, TX 75001" +247842,AAA Batteries (4-pack),1,2.99,08/09/19 13:40,"177 Willow St, Austin, TX 73301" +247843,Vareebadd Phone,1,400,08/22/19 22:33,"311 West St, Atlanta, GA 30301" +247843,USB-C Charging Cable,1,11.95,08/22/19 22:33,"311 West St, Atlanta, GA 30301" +247844,iPhone,1,700,08/18/19 01:03,"337 5th St, Dallas, TX 75001" +247845,AAA Batteries (4-pack),1,2.99,08/31/19 19:21,"557 Main St, Atlanta, GA 30301" +247846,AA Batteries (4-pack),2,3.84,08/25/19 13:43,"317 North St, New York City, NY 10001" +247847,USB-C Charging Cable,1,11.95,08/19/19 19:43,"533 Hill St, San Francisco, CA 94016" +247848,Wired Headphones,1,11.99,08/28/19 08:23,"57 6th St, Seattle, WA 98101" +247849,Wired Headphones,1,11.99,08/22/19 11:53,"436 Pine St, Los Angeles, CA 90001" +247850,AA Batteries (4-pack),1,3.84,08/16/19 16:03,"22 8th St, San Francisco, CA 94016" +247851,Wired Headphones,1,11.99,08/21/19 10:45,"183 Sunset St, San Francisco, CA 94016" +247852,Google Phone,1,600,08/16/19 06:51,"606 1st St, Boston, MA 02215" +247853,27in FHD Monitor,1,149.99,08/05/19 21:27,"724 14th St, Atlanta, GA 30301" +247854,Lightning Charging Cable,1,14.95,08/19/19 10:56,"289 4th St, Austin, TX 73301" +247855,Wired Headphones,1,11.99,08/27/19 10:44,"450 Jefferson St, San Francisco, CA 94016" +247856,Lightning Charging Cable,1,14.95,08/29/19 16:44,"467 9th St, Seattle, WA 98101" +247857,USB-C Charging Cable,1,11.95,08/29/19 21:02,"832 6th St, Dallas, TX 75001" +247858,AA Batteries (4-pack),2,3.84,08/18/19 15:45,"191 4th St, New York City, NY 10001" +247859,Apple Airpods Headphones,1,150,08/01/19 05:47,"904 Jefferson St, San Francisco, CA 94016" +247860,Wired Headphones,1,11.99,08/01/19 10:57,"859 South St, San Francisco, CA 94016" +247860,Apple Airpods Headphones,1,150,08/01/19 10:57,"859 South St, San Francisco, CA 94016" +247861,iPhone,1,700,08/19/19 18:45,"157 Willow St, Atlanta, GA 30301" +247862,AAA Batteries (4-pack),1,2.99,08/08/19 19:45,"269 Jefferson St, Dallas, TX 75001" +247863,AAA Batteries (4-pack),1,2.99,08/20/19 21:08,"642 4th St, San Francisco, CA 94016" +247864,iPhone,1,700,08/03/19 10:42,"78 Willow St, Los Angeles, CA 90001" +247865,27in 4K Gaming Monitor,1,389.99,08/29/19 18:51,"420 Willow St, Boston, MA 02215" +247866,AAA Batteries (4-pack),2,2.99,08/19/19 13:01,"370 Cedar St, Boston, MA 02215" +247867,Wired Headphones,2,11.99,08/30/19 18:40,"283 Forest St, Dallas, TX 75001" +247868,Lightning Charging Cable,1,14.95,08/19/19 18:22,"787 13th St, Portland, OR 97035" +247869,USB-C Charging Cable,1,11.95,08/15/19 21:43,"504 Park St, San Francisco, CA 94016" +247870,AAA Batteries (4-pack),2,2.99,08/23/19 10:17,"545 Main St, Dallas, TX 75001" +247871,Lightning Charging Cable,1,14.95,08/11/19 23:05,"111 11th St, San Francisco, CA 94016" +247872,Lightning Charging Cable,1,14.95,08/29/19 12:58,"933 2nd St, Austin, TX 73301" +247873,AAA Batteries (4-pack),1,2.99,08/05/19 19:44,"174 Washington St, Boston, MA 02215" +247874,Apple Airpods Headphones,1,150,08/12/19 10:20,"958 Adams St, Los Angeles, CA 90001" +247875,Wired Headphones,1,11.99,08/05/19 20:04,"1 14th St, Los Angeles, CA 90001" +247876,Macbook Pro Laptop,1,1700,08/28/19 09:17,"149 6th St, Atlanta, GA 30301" +247877,Macbook Pro Laptop,1,1700,08/22/19 19:18,"591 Adams St, New York City, NY 10001" +247878,Bose SoundSport Headphones,1,99.99,08/06/19 01:02,"366 West St, Austin, TX 73301" +247879,AAA Batteries (4-pack),2,2.99,08/23/19 19:04,"105 Lakeview St, Los Angeles, CA 90001" +247880,Macbook Pro Laptop,1,1700,08/22/19 00:44,"764 North St, San Francisco, CA 94016" +247881,AA Batteries (4-pack),1,3.84,08/31/19 23:03,"147 Washington St, New York City, NY 10001" +247882,Apple Airpods Headphones,1,150,08/30/19 15:40,"922 Park St, Los Angeles, CA 90001" +247883,iPhone,1,700,08/27/19 06:02,"567 14th St, Seattle, WA 98101" +247884,AA Batteries (4-pack),3,3.84,08/16/19 08:06,"304 Main St, Atlanta, GA 30301" +247885,Bose SoundSport Headphones,1,99.99,08/09/19 10:42,"597 Walnut St, San Francisco, CA 94016" +247886,USB-C Charging Cable,1,11.95,08/30/19 11:34,"89 Hill St, Los Angeles, CA 90001" +247887,Apple Airpods Headphones,1,150,08/22/19 19:21,"943 Jackson St, San Francisco, CA 94016" +247888,Wired Headphones,2,11.99,08/04/19 16:04,"604 4th St, Atlanta, GA 30301" +247889,AAA Batteries (4-pack),2,2.99,08/16/19 08:34,"850 North St, Seattle, WA 98101" +247890,Bose SoundSport Headphones,1,99.99,08/27/19 23:49,"797 Maple St, Boston, MA 02215" +247891,Google Phone,1,600,08/30/19 11:15,"53 Meadow St, New York City, NY 10001" +247891,Wired Headphones,1,11.99,08/30/19 11:15,"53 Meadow St, New York City, NY 10001" +247892,Lightning Charging Cable,1,14.95,08/12/19 20:30,"515 14th St, San Francisco, CA 94016" +247893,AAA Batteries (4-pack),1,2.99,08/20/19 00:17,"269 West St, Atlanta, GA 30301" +247894,Macbook Pro Laptop,1,1700,08/01/19 22:18,"52 Washington St, Portland, OR 97035" +247895,27in FHD Monitor,1,149.99,08/12/19 17:26,"675 Washington St, San Francisco, CA 94016" +247896,Bose SoundSport Headphones,1,99.99,08/04/19 08:41,"472 Lake St, San Francisco, CA 94016" +247897,Apple Airpods Headphones,1,150,08/10/19 12:00,"531 Elm St, San Francisco, CA 94016" +247898,Macbook Pro Laptop,1,1700,08/10/19 00:48,"412 1st St, New York City, NY 10001" +247899,27in FHD Monitor,1,149.99,08/20/19 23:12,"405 Ridge St, Seattle, WA 98101" +247900,Lightning Charging Cable,1,14.95,08/26/19 21:23,"930 Forest St, San Francisco, CA 94016" +247901,USB-C Charging Cable,1,11.95,08/09/19 22:55,"472 Lakeview St, San Francisco, CA 94016" +247902,AAA Batteries (4-pack),1,2.99,08/15/19 12:58,"761 River St, New York City, NY 10001" +247903,USB-C Charging Cable,1,11.95,08/31/19 09:29,"173 South St, Los Angeles, CA 90001" +247904,Apple Airpods Headphones,1,150,08/25/19 14:42,"291 11th St, San Francisco, CA 94016" +247905,20in Monitor,1,109.99,08/05/19 01:44,"95 Jackson St, San Francisco, CA 94016" +247906,AA Batteries (4-pack),1,3.84,08/15/19 09:17,"605 Main St, Los Angeles, CA 90001" +247907,Lightning Charging Cable,1,14.95,08/04/19 11:17,"678 Jackson St, Seattle, WA 98101" +247908,Lightning Charging Cable,1,14.95,08/04/19 21:25,"418 Sunset St, San Francisco, CA 94016" +247909,USB-C Charging Cable,1,11.95,08/15/19 21:53,"836 Highland St, Los Angeles, CA 90001" +247910,Bose SoundSport Headphones,1,99.99,08/11/19 15:34,"982 Hill St, Portland, OR 97035" +247911,Google Phone,1,600,08/12/19 13:03,"189 South St, Seattle, WA 98101" +247911,Wired Headphones,1,11.99,08/12/19 13:03,"189 South St, Seattle, WA 98101" +247912,AAA Batteries (4-pack),1,2.99,08/09/19 18:35,"963 Wilson St, Los Angeles, CA 90001" +247913,AA Batteries (4-pack),2,3.84,08/12/19 19:35,"180 1st St, Boston, MA 02215" +247914,Bose SoundSport Headphones,1,99.99,08/06/19 20:01,"455 Forest St, San Francisco, CA 94016" +247915,Wired Headphones,1,11.99,08/30/19 18:01,"781 Washington St, San Francisco, CA 94016" +247915,USB-C Charging Cable,1,11.95,08/30/19 18:01,"781 Washington St, San Francisco, CA 94016" +247916,ThinkPad Laptop,1,999.99,08/02/19 11:08,"327 Jefferson St, Atlanta, GA 30301" +247917,Lightning Charging Cable,1,14.95,08/26/19 22:14,"206 Jackson St, San Francisco, CA 94016" +247918,Google Phone,1,600,08/16/19 11:13,"164 Lake St, San Francisco, CA 94016" +247919,iPhone,1,700,08/18/19 12:23,"894 13th St, Dallas, TX 75001" +247920,AA Batteries (4-pack),1,3.84,08/18/19 15:11,"255 Lakeview St, San Francisco, CA 94016" +247921,USB-C Charging Cable,1,11.95,08/06/19 10:07,"86 Johnson St, San Francisco, CA 94016" +247922,iPhone,1,700,08/23/19 18:54,"766 Hill St, Seattle, WA 98101" +247923,AAA Batteries (4-pack),1,2.99,08/24/19 08:53,"235 Spruce St, San Francisco, CA 94016" +247924,AA Batteries (4-pack),1,3.84,08/04/19 21:59,"194 9th St, Seattle, WA 98101" +247925,AA Batteries (4-pack),1,3.84,08/05/19 16:58,"318 South St, New York City, NY 10001" +247926,AA Batteries (4-pack),2,3.84,08/22/19 20:50,"662 Spruce St, Dallas, TX 75001" +247927,Bose SoundSport Headphones,1,99.99,08/21/19 13:02,"195 Meadow St, Boston, MA 02215" +247928,ThinkPad Laptop,1,999.99,08/01/19 17:11,"280 8th St, New York City, NY 10001" +247929,Flatscreen TV,1,300,08/11/19 11:59,"790 Forest St, Los Angeles, CA 90001" +247930,20in Monitor,1,109.99,08/20/19 10:54,"199 Washington St, Boston, MA 02215" +247931,Bose SoundSport Headphones,1,99.99,08/07/19 12:19,"444 Willow St, Boston, MA 02215" +247931,iPhone,1,700,08/07/19 12:19,"444 Willow St, Boston, MA 02215" +247932,Wired Headphones,1,11.99,08/15/19 10:04,"465 Spruce St, Los Angeles, CA 90001" +247933,Lightning Charging Cable,1,14.95,08/15/19 20:54,"155 1st St, Boston, MA 02215" +247934,27in FHD Monitor,1,149.99,08/30/19 20:02,"16 South St, San Francisco, CA 94016" +247935,Apple Airpods Headphones,1,150,08/25/19 15:37,"76 Center St, San Francisco, CA 94016" +247936,20in Monitor,1,109.99,08/23/19 14:16,"842 Willow St, San Francisco, CA 94016" +247937,USB-C Charging Cable,1,11.95,08/27/19 16:35,"990 Pine St, San Francisco, CA 94016" +247938,iPhone,1,700,08/04/19 09:50,"411 Lakeview St, Austin, TX 73301" +247939,Wired Headphones,1,11.99,08/24/19 15:27,"883 5th St, Atlanta, GA 30301" +247940,Flatscreen TV,1,300,08/16/19 17:41,"554 5th St, San Francisco, CA 94016" +247940,Apple Airpods Headphones,1,150,08/16/19 17:41,"554 5th St, San Francisco, CA 94016" +247941,27in 4K Gaming Monitor,1,389.99,08/18/19 14:58,"437 1st St, Austin, TX 73301" +247942,USB-C Charging Cable,2,11.95,08/13/19 12:06,"860 Forest St, San Francisco, CA 94016" +247943,27in 4K Gaming Monitor,1,389.99,08/31/19 09:07,"716 Johnson St, New York City, NY 10001" +247944,AA Batteries (4-pack),1,3.84,08/02/19 23:52,"941 10th St, New York City, NY 10001" +247945,USB-C Charging Cable,1,11.95,08/18/19 14:30,"579 Chestnut St, Dallas, TX 75001" +247946,USB-C Charging Cable,1,11.95,08/04/19 16:51,"202 Center St, New York City, NY 10001" +247947,Lightning Charging Cable,1,14.95,08/20/19 12:05,"656 Madison St, San Francisco, CA 94016" +247948,Google Phone,1,600,08/20/19 20:14,"275 Pine St, Atlanta, GA 30301" +247948,USB-C Charging Cable,1,11.95,08/20/19 20:14,"275 Pine St, Atlanta, GA 30301" +247949,USB-C Charging Cable,1,11.95,08/03/19 15:46,"124 Forest St, San Francisco, CA 94016" +247950,Lightning Charging Cable,1,14.95,08/13/19 19:52,"619 8th St, New York City, NY 10001" +247951,Lightning Charging Cable,1,14.95,08/24/19 17:33,"626 Jefferson St, Boston, MA 02215" +247952,AAA Batteries (4-pack),1,2.99,08/18/19 21:12,"993 North St, San Francisco, CA 94016" +247953,Apple Airpods Headphones,1,150,08/12/19 22:31,"694 Adams St, Dallas, TX 75001" +247954,27in FHD Monitor,1,149.99,08/11/19 10:40,"805 Meadow St, Los Angeles, CA 90001" +247955,27in 4K Gaming Monitor,1,389.99,08/31/19 13:24,"441 8th St, New York City, NY 10001" +247956,Flatscreen TV,1,300,08/02/19 10:20,"186 Cherry St, Atlanta, GA 30301" +247957,AAA Batteries (4-pack),1,2.99,08/30/19 17:31,"517 5th St, Los Angeles, CA 90001" +247958,AAA Batteries (4-pack),1,2.99,08/30/19 22:42,"233 Jackson St, San Francisco, CA 94016" +247959,Bose SoundSport Headphones,1,99.99,08/11/19 14:09,"457 Washington St, Los Angeles, CA 90001" +247960,AAA Batteries (4-pack),1,2.99,08/01/19 22:56,"50 Jackson St, Boston, MA 02215" +247961,Lightning Charging Cable,1,14.95,08/30/19 08:43,"271 Lake St, New York City, NY 10001" +247962,AA Batteries (4-pack),1,3.84,08/06/19 10:16,"348 Walnut St, San Francisco, CA 94016" +247963,20in Monitor,1,109.99,08/04/19 07:58,"995 Dogwood St, New York City, NY 10001" +247964,USB-C Charging Cable,1,11.95,08/19/19 22:35,"754 Cedar St, San Francisco, CA 94016" +247965,iPhone,1,700,08/02/19 13:04,"885 14th St, Los Angeles, CA 90001" +247966,USB-C Charging Cable,1,11.95,08/16/19 12:26,"846 Lake St, San Francisco, CA 94016" +247967,Apple Airpods Headphones,1,150,08/19/19 08:28,"437 Park St, Los Angeles, CA 90001" +247968,Google Phone,1,600,08/26/19 22:42,"861 North St, San Francisco, CA 94016" +247969,20in Monitor,1,109.99,08/06/19 18:42,"176 Madison St, Boston, MA 02215" +247970,Lightning Charging Cable,1,14.95,08/27/19 12:53,"46 Main St, New York City, NY 10001" +247971,Apple Airpods Headphones,1,150,08/17/19 16:32,"479 Hill St, Austin, TX 73301" +247972,Apple Airpods Headphones,1,150,08/13/19 22:02,"901 13th St, New York City, NY 10001" +247973,Apple Airpods Headphones,1,150,08/28/19 13:27,"566 7th St, Dallas, TX 75001" +247974,20in Monitor,2,109.99,08/08/19 12:20,"312 Walnut St, Atlanta, GA 30301" +247975,Apple Airpods Headphones,1,150,08/17/19 22:55,"560 Pine St, Los Angeles, CA 90001" +247976,Lightning Charging Cable,1,14.95,08/21/19 09:49,"822 1st St, Boston, MA 02215" +247977,USB-C Charging Cable,1,11.95,08/28/19 12:27,"309 Dogwood St, San Francisco, CA 94016" +247978,Lightning Charging Cable,2,14.95,08/19/19 19:51,"607 Johnson St, Seattle, WA 98101" +247979,27in 4K Gaming Monitor,1,389.99,08/26/19 14:44,"684 8th St, Portland, ME 04101" +247980,20in Monitor,1,109.99,08/24/19 10:29,"570 Lakeview St, Seattle, WA 98101" +247981,AAA Batteries (4-pack),1,2.99,08/05/19 14:06,"182 North St, Los Angeles, CA 90001" +247982,Wired Headphones,1,11.99,08/16/19 11:20,"890 Dogwood St, Boston, MA 02215" +247983,27in FHD Monitor,1,149.99,08/15/19 11:51,"972 Church St, San Francisco, CA 94016" +247984,Wired Headphones,1,11.99,08/26/19 14:58,"866 Wilson St, Atlanta, GA 30301" +247985,Apple Airpods Headphones,1,150,08/07/19 12:48,"174 West St, Los Angeles, CA 90001" +247986,Wired Headphones,1,11.99,08/06/19 21:42,"555 North St, New York City, NY 10001" +247987,Lightning Charging Cable,1,14.95,08/02/19 21:56,"128 11th St, New York City, NY 10001" +247988,AA Batteries (4-pack),3,3.84,08/03/19 09:57,"789 5th St, Austin, TX 73301" +247989,Apple Airpods Headphones,1,150,08/10/19 14:27,"331 Lincoln St, Boston, MA 02215" +247990,iPhone,1,700,08/17/19 14:42,"325 Willow St, San Francisco, CA 94016" +247991,Bose SoundSport Headphones,1,99.99,08/28/19 10:41,"132 Lincoln St, Boston, MA 02215" +247992,Google Phone,1,600,08/09/19 17:28,"788 Adams St, San Francisco, CA 94016" +247993,AAA Batteries (4-pack),1,2.99,08/10/19 19:22,"889 8th St, San Francisco, CA 94016" +247994,Lightning Charging Cable,1,14.95,08/25/19 19:17,"304 Church St, Seattle, WA 98101" +247995,Wired Headphones,1,11.99,08/26/19 16:37,"283 Cedar St, Portland, OR 97035" +247996,AA Batteries (4-pack),1,3.84,08/02/19 14:41,"943 Washington St, Boston, MA 02215" +247997,Bose SoundSport Headphones,1,99.99,08/03/19 07:31,"33 2nd St, New York City, NY 10001" +247998,ThinkPad Laptop,1,999.99,08/23/19 12:34,"289 Lake St, Los Angeles, CA 90001" +247999,iPhone,1,700,08/30/19 13:16,"610 North St, San Francisco, CA 94016" +248000,Bose SoundSport Headphones,1,99.99,08/26/19 08:44,"115 Jefferson St, Boston, MA 02215" +248001,USB-C Charging Cable,1,11.95,08/07/19 19:55,"818 Elm St, Atlanta, GA 30301" +248002,AA Batteries (4-pack),1,3.84,08/27/19 15:18,"260 Jackson St, Los Angeles, CA 90001" +248003,Wired Headphones,1,11.99,08/22/19 10:44,"964 West St, Portland, OR 97035" +248004,Wired Headphones,1,11.99,08/26/19 12:38,"647 Center St, Los Angeles, CA 90001" +248005,Apple Airpods Headphones,1,150,08/31/19 20:44,"462 6th St, Boston, MA 02215" +248006,USB-C Charging Cable,1,11.95,08/24/19 22:43,"593 Center St, New York City, NY 10001" +248007,AAA Batteries (4-pack),2,2.99,08/06/19 21:27,"775 Park St, New York City, NY 10001" +248008,USB-C Charging Cable,1,11.95,08/13/19 12:28,"252 Jackson St, New York City, NY 10001" +248009,AA Batteries (4-pack),1,3.84,08/12/19 09:22,"771 Hill St, San Francisco, CA 94016" +248010,Bose SoundSport Headphones,1,99.99,08/21/19 22:32,"317 Madison St, Portland, OR 97035" +248011,AAA Batteries (4-pack),1,2.99,08/01/19 21:34,"13 West St, San Francisco, CA 94016" +248012,Macbook Pro Laptop,1,1700,08/04/19 12:11,"588 Walnut St, New York City, NY 10001" +248013,AA Batteries (4-pack),2,3.84,08/08/19 19:37,"6 Washington St, Seattle, WA 98101" +248014,iPhone,1,700,08/19/19 12:25,"118 Jefferson St, San Francisco, CA 94016" +248015,27in 4K Gaming Monitor,1,389.99,08/22/19 12:02,"243 Dogwood St, Atlanta, GA 30301" +248016,34in Ultrawide Monitor,1,379.99,08/10/19 16:41,"709 Pine St, Austin, TX 73301" +248017,AAA Batteries (4-pack),1,2.99,08/04/19 04:59,"321 North St, Los Angeles, CA 90001" +248018,27in 4K Gaming Monitor,1,389.99,08/20/19 21:53,"429 Park St, Los Angeles, CA 90001" +248019,Bose SoundSport Headphones,1,99.99,08/03/19 10:24,"591 Forest St, San Francisco, CA 94016" +248020,iPhone,1,700,08/08/19 11:35,"676 Madison St, New York City, NY 10001" +248020,Apple Airpods Headphones,1,150,08/08/19 11:35,"676 Madison St, New York City, NY 10001" +248021,Macbook Pro Laptop,1,1700,08/27/19 08:33,"549 Lake St, San Francisco, CA 94016" +248021,Wired Headphones,1,11.99,08/27/19 08:33,"549 Lake St, San Francisco, CA 94016" +248022,USB-C Charging Cable,1,11.95,08/28/19 15:56,"875 Walnut St, San Francisco, CA 94016" +248023,AA Batteries (4-pack),1,3.84,08/27/19 11:55,"530 4th St, San Francisco, CA 94016" +248024,Bose SoundSport Headphones,1,99.99,08/23/19 13:12,"568 14th St, Atlanta, GA 30301" +248025,Apple Airpods Headphones,1,150,08/28/19 07:50,"46 North St, New York City, NY 10001" +248026,Wired Headphones,1,11.99,08/23/19 19:11,"789 Park St, Boston, MA 02215" +248027,iPhone,1,700,08/08/19 18:13,"569 Main St, New York City, NY 10001" +248027,Wired Headphones,1,11.99,08/08/19 18:13,"569 Main St, New York City, NY 10001" +248028,Apple Airpods Headphones,1,150,08/14/19 20:53,"842 North St, New York City, NY 10001" +248029,Bose SoundSport Headphones,1,99.99,08/19/19 15:09,"518 7th St, New York City, NY 10001" +248030,20in Monitor,1,109.99,08/25/19 23:04,"423 5th St, Dallas, TX 75001" +248031,Lightning Charging Cable,1,14.95,08/31/19 08:31,"802 6th St, Boston, MA 02215" +248032,Flatscreen TV,1,300,08/30/19 15:41,"717 8th St, Los Angeles, CA 90001" +248033,AAA Batteries (4-pack),3,2.99,08/10/19 14:59,"972 1st St, Seattle, WA 98101" +248034,Apple Airpods Headphones,1,150,08/11/19 20:18,"322 Dogwood St, Dallas, TX 75001" +248035,Macbook Pro Laptop,1,1700,08/03/19 23:21,"145 Elm St, New York City, NY 10001" +248036,ThinkPad Laptop,1,999.99,08/22/19 12:08,"82 Spruce St, Atlanta, GA 30301" +248037,Wired Headphones,1,11.99,08/12/19 14:39,"553 Maple St, New York City, NY 10001" +248038,27in FHD Monitor,1,149.99,08/24/19 12:34,"537 Jefferson St, Dallas, TX 75001" +248039,AA Batteries (4-pack),1,3.84,08/01/19 17:29,"42 Adams St, New York City, NY 10001" +248040,AA Batteries (4-pack),3,3.84,08/16/19 12:10,"796 Spruce St, San Francisco, CA 94016" +248041,ThinkPad Laptop,1,999.99,08/25/19 20:47,"188 Maple St, Boston, MA 02215" +248042,Wired Headphones,1,11.99,08/08/19 15:50,"350 Willow St, Dallas, TX 75001" +248043,AA Batteries (4-pack),1,3.84,08/27/19 17:23,"803 1st St, Atlanta, GA 30301" +248044,Bose SoundSport Headphones,1,99.99,08/26/19 17:43,"410 4th St, Boston, MA 02215" +248045,USB-C Charging Cable,1,11.95,08/01/19 11:36,"988 5th St, Los Angeles, CA 90001" +248046,Wired Headphones,1,11.99,08/17/19 17:34,"958 4th St, San Francisco, CA 94016" +248047,34in Ultrawide Monitor,1,379.99,08/20/19 13:03,"531 Sunset St, Dallas, TX 75001" +248048,Wired Headphones,1,11.99,08/26/19 10:47,"879 Jefferson St, Seattle, WA 98101" +248049,AA Batteries (4-pack),1,3.84,08/29/19 21:40,"637 Adams St, Boston, MA 02215" +248050,AAA Batteries (4-pack),1,2.99,08/14/19 13:21,"991 Highland St, Austin, TX 73301" +248051,Google Phone,1,600,08/23/19 14:45,"851 Highland St, Atlanta, GA 30301" +248052,Apple Airpods Headphones,1,150,08/31/19 22:07,"70 Lincoln St, Atlanta, GA 30301" +248053,AA Batteries (4-pack),1,3.84,08/17/19 18:13,"999 West St, New York City, NY 10001" +248054,AA Batteries (4-pack),1,3.84,08/15/19 10:51,"887 Sunset St, San Francisco, CA 94016" +248055,Wired Headphones,1,11.99,08/18/19 14:39,"290 Center St, Boston, MA 02215" +248056,Lightning Charging Cable,1,14.95,08/18/19 11:22,"120 Lake St, San Francisco, CA 94016" +248056,USB-C Charging Cable,1,11.95,08/18/19 11:22,"120 Lake St, San Francisco, CA 94016" +248057,USB-C Charging Cable,1,11.95,08/23/19 18:28,"934 Hill St, San Francisco, CA 94016" +248058,Bose SoundSport Headphones,1,99.99,08/04/19 18:59,"826 Ridge St, Dallas, TX 75001" +248059,27in 4K Gaming Monitor,1,389.99,08/23/19 12:28,"313 10th St, Seattle, WA 98101" +248060,Wired Headphones,1,11.99,08/08/19 12:45,"369 Wilson St, San Francisco, CA 94016" +248061,AAA Batteries (4-pack),1,2.99,08/11/19 11:01,"822 Adams St, Los Angeles, CA 90001" +248062,AAA Batteries (4-pack),1,2.99,08/25/19 21:07,"861 10th St, Atlanta, GA 30301" +248063,AAA Batteries (4-pack),1,2.99,08/10/19 20:26,"732 Willow St, San Francisco, CA 94016" +248064,AAA Batteries (4-pack),1,2.99,08/20/19 16:16,"802 13th St, Seattle, WA 98101" +248065,34in Ultrawide Monitor,1,379.99,08/05/19 17:47,"981 9th St, San Francisco, CA 94016" +248066,Wired Headphones,1,11.99,08/22/19 19:25,"94 5th St, New York City, NY 10001" +248067,USB-C Charging Cable,1,11.95,08/10/19 16:43,"701 Madison St, Boston, MA 02215" +248068,AA Batteries (4-pack),2,3.84,08/15/19 21:39,"5 Main St, Portland, OR 97035" +248069,Wired Headphones,1,11.99,08/16/19 19:21,"918 12th St, Austin, TX 73301" +248070,20in Monitor,1,109.99,08/13/19 00:44,"687 9th St, Los Angeles, CA 90001" +248071,AAA Batteries (4-pack),1,2.99,08/11/19 18:19,"139 Jackson St, Atlanta, GA 30301" +248072,Wired Headphones,1,11.99,08/11/19 20:33,"12 Main St, Dallas, TX 75001" +248073,Lightning Charging Cable,1,14.95,08/20/19 14:30,"523 2nd St, Dallas, TX 75001" +248074,27in 4K Gaming Monitor,1,389.99,08/14/19 19:52,"424 11th St, Seattle, WA 98101" +248075,Google Phone,1,600,08/04/19 11:55,"863 5th St, Los Angeles, CA 90001" +248075,USB-C Charging Cable,1,11.95,08/04/19 11:55,"863 5th St, Los Angeles, CA 90001" +248076,Bose SoundSport Headphones,1,99.99,08/07/19 12:53,"291 Ridge St, San Francisco, CA 94016" +248077,27in 4K Gaming Monitor,1,389.99,08/28/19 14:55,"934 Forest St, San Francisco, CA 94016" +248078,USB-C Charging Cable,1,11.95,08/17/19 03:53,"718 12th St, Boston, MA 02215" +248079,AA Batteries (4-pack),1,3.84,08/10/19 10:34,"919 Spruce St, San Francisco, CA 94016" +248080,Apple Airpods Headphones,1,150,08/11/19 09:09,"522 Park St, Boston, MA 02215" +248081,Wired Headphones,1,11.99,08/04/19 13:20,"182 North St, New York City, NY 10001" +248082,Wired Headphones,1,11.99,08/21/19 18:21,"590 Cedar St, San Francisco, CA 94016" +248083,Wired Headphones,1,11.99,08/21/19 11:55,"935 South St, Austin, TX 73301" +248084,AA Batteries (4-pack),1,3.84,08/06/19 06:55,"10 13th St, Los Angeles, CA 90001" +248085,27in FHD Monitor,1,149.99,08/06/19 15:30,"13 South St, San Francisco, CA 94016" +248086,20in Monitor,1,109.99,08/17/19 10:53,"330 Washington St, Seattle, WA 98101" +248087,USB-C Charging Cable,1,11.95,08/01/19 22:31,"695 4th St, Los Angeles, CA 90001" +248088,Lightning Charging Cable,1,14.95,08/13/19 20:40,"731 14th St, Seattle, WA 98101" +248089,iPhone,1,700,08/07/19 16:33,"147 13th St, Los Angeles, CA 90001" +248090,Apple Airpods Headphones,1,150,08/09/19 18:09,"265 Jackson St, San Francisco, CA 94016" +248091,20in Monitor,1,109.99,08/24/19 23:37,"782 Lincoln St, New York City, NY 10001" +248092,27in FHD Monitor,1,149.99,08/24/19 01:13,"690 North St, Seattle, WA 98101" +248093,Lightning Charging Cable,1,14.95,08/28/19 10:25,"176 Hickory St, San Francisco, CA 94016" +248094,Google Phone,1,600,08/25/19 11:08,"893 Lincoln St, Boston, MA 02215" +248095,Bose SoundSport Headphones,1,99.99,08/19/19 13:34,"540 Chestnut St, San Francisco, CA 94016" +248096,AAA Batteries (4-pack),1,2.99,08/20/19 11:27,"136 Forest St, New York City, NY 10001" +248097,Apple Airpods Headphones,1,150,08/13/19 19:07,"904 Jefferson St, Portland, OR 97035" +248098,Apple Airpods Headphones,1,150,08/01/19 18:44,"530 Johnson St, San Francisco, CA 94016" +248099,AAA Batteries (4-pack),1,2.99,08/24/19 17:50,"739 1st St, Los Angeles, CA 90001" +248100,Wired Headphones,1,11.99,08/01/19 09:18,"693 West St, Los Angeles, CA 90001" +248101,Wired Headphones,1,11.99,08/26/19 17:47,"831 Jackson St, Portland, ME 04101" +248102,AA Batteries (4-pack),5,3.84,08/21/19 17:57,"823 Hickory St, Seattle, WA 98101" +248103,USB-C Charging Cable,1,11.95,08/05/19 14:06,"254 14th St, Dallas, TX 75001" +248104,AAA Batteries (4-pack),3,2.99,08/09/19 20:53,"345 Madison St, New York City, NY 10001" +248105,AA Batteries (4-pack),1,3.84,08/15/19 17:38,"328 Adams St, Dallas, TX 75001" +248106,ThinkPad Laptop,1,999.99,08/24/19 17:24,"610 Main St, San Francisco, CA 94016" +248107,AA Batteries (4-pack),1,3.84,08/02/19 10:50,"173 5th St, New York City, NY 10001" +248108,AA Batteries (4-pack),1,3.84,08/12/19 21:39,"520 11th St, Boston, MA 02215" +248109,AAA Batteries (4-pack),1,2.99,08/11/19 20:49,"337 12th St, Austin, TX 73301" +248110,Wired Headphones,1,11.99,08/17/19 22:36,"141 12th St, Dallas, TX 75001" +248111,Bose SoundSport Headphones,1,99.99,08/17/19 08:02,"979 Lakeview St, New York City, NY 10001" +248112,Lightning Charging Cable,1,14.95,08/21/19 13:00,"144 Forest St, Boston, MA 02215" +248113,AA Batteries (4-pack),1,3.84,08/31/19 14:08,"367 4th St, San Francisco, CA 94016" +248114,Bose SoundSport Headphones,1,99.99,08/21/19 19:11,"82 Spruce St, Seattle, WA 98101" +248115,Wired Headphones,1,11.99,08/20/19 10:10,"181 Highland St, New York City, NY 10001" +248116,AAA Batteries (4-pack),1,2.99,08/16/19 18:48,"508 Johnson St, New York City, NY 10001" +248117,AA Batteries (4-pack),1,3.84,08/15/19 20:25,"743 Meadow St, San Francisco, CA 94016" +248118,ThinkPad Laptop,1,999.99,08/15/19 19:17,"230 Forest St, Los Angeles, CA 90001" +248119,Wired Headphones,1,11.99,08/23/19 16:35,"520 Lincoln St, San Francisco, CA 94016" +248120,Apple Airpods Headphones,1,150,08/06/19 11:18,"447 2nd St, Dallas, TX 75001" +248121,27in FHD Monitor,1,149.99,08/04/19 21:18,"997 North St, Los Angeles, CA 90001" +248122,iPhone,1,700,08/11/19 13:33,"563 Cedar St, Los Angeles, CA 90001" +248122,Apple Airpods Headphones,1,150,08/11/19 13:33,"563 Cedar St, Los Angeles, CA 90001" +248123,USB-C Charging Cable,1,11.95,08/26/19 23:17,"934 Cherry St, San Francisco, CA 94016" +248124,Lightning Charging Cable,1,14.95,08/24/19 12:10,"370 Park St, Atlanta, GA 30301" +248125,USB-C Charging Cable,1,11.95,08/28/19 16:53,"546 Cherry St, San Francisco, CA 94016" +248126,AA Batteries (4-pack),1,3.84,08/05/19 19:27,"750 Maple St, San Francisco, CA 94016" +248127,34in Ultrawide Monitor,1,379.99,08/21/19 13:28,"888 Walnut St, Boston, MA 02215" +248128,20in Monitor,1,109.99,08/03/19 16:15,"5 Hill St, Los Angeles, CA 90001" +248129,20in Monitor,1,109.99,08/05/19 15:56,"189 Meadow St, Dallas, TX 75001" +248130,20in Monitor,1,109.99,08/10/19 17:02,"548 Meadow St, Dallas, TX 75001" +248131,Lightning Charging Cable,1,14.95,08/21/19 07:41,"376 Lincoln St, Atlanta, GA 30301" +,,,,, +248132,AAA Batteries (4-pack),2,2.99,08/10/19 07:48,"708 Hickory St, Boston, MA 02215" +248133,USB-C Charging Cable,1,11.95,08/12/19 14:06,"386 Madison St, Dallas, TX 75001" +248134,ThinkPad Laptop,1,999.99,08/03/19 12:56,"691 Chestnut St, San Francisco, CA 94016" +248135,USB-C Charging Cable,1,11.95,08/30/19 20:12,"271 Adams St, San Francisco, CA 94016" +248136,Lightning Charging Cable,1,14.95,08/28/19 17:44,"164 12th St, Dallas, TX 75001" +248137,Wired Headphones,1,11.99,08/27/19 13:20,"729 Hill St, Boston, MA 02215" +248138,AA Batteries (4-pack),1,3.84,08/14/19 20:38,"199 5th St, Atlanta, GA 30301" +248139,Apple Airpods Headphones,1,150,08/19/19 22:59,"311 7th St, Portland, OR 97035" +248140,AAA Batteries (4-pack),1,2.99,08/17/19 12:51,"318 11th St, New York City, NY 10001" +248141,Apple Airpods Headphones,1,150,08/13/19 11:21,"50 North St, Seattle, WA 98101" +248142,AA Batteries (4-pack),1,3.84,08/23/19 09:53,"827 Center St, Portland, OR 97035" +248143,LG Dryer,1,600.0,08/25/19 14:24,"995 Wilson St, Seattle, WA 98101" +248144,AA Batteries (4-pack),2,3.84,08/06/19 10:17,"877 Jefferson St, Los Angeles, CA 90001" +248145,34in Ultrawide Monitor,1,379.99,08/20/19 09:48,"899 Dogwood St, San Francisco, CA 94016" +248146,Flatscreen TV,1,300,08/24/19 21:38,"802 Hickory St, Los Angeles, CA 90001" +248147,iPhone,1,700,08/17/19 21:28,"57 Hickory St, Boston, MA 02215" +248147,Lightning Charging Cable,1,14.95,08/17/19 21:28,"57 Hickory St, Boston, MA 02215" +248148,27in FHD Monitor,1,149.99,08/13/19 12:17,"40 Jefferson St, Boston, MA 02215" +248149,Lightning Charging Cable,1,14.95,08/21/19 17:29,"424 Madison St, Boston, MA 02215" +248150,Lightning Charging Cable,2,14.95,08/16/19 11:33,"536 North St, Portland, OR 97035" +248151,AAA Batteries (4-pack),1,2.99,08/17/19 11:01,"779 10th St, New York City, NY 10001" +248152,Bose SoundSport Headphones,1,99.99,08/30/19 22:45,"428 Johnson St, San Francisco, CA 94016" +248153,AA Batteries (4-pack),1,3.84,08/01/19 11:38,"344 2nd St, Los Angeles, CA 90001" +248154,20in Monitor,1,109.99,08/17/19 16:53,"495 Lincoln St, New York City, NY 10001" +248155,Wired Headphones,1,11.99,08/23/19 12:19,"606 Lake St, Los Angeles, CA 90001" +248156,Wired Headphones,1,11.99,08/20/19 18:57,"608 11th St, San Francisco, CA 94016" +248157,Bose SoundSport Headphones,1,99.99,08/20/19 23:04,"141 Main St, Seattle, WA 98101" +248158,Wired Headphones,1,11.99,08/15/19 14:39,"900 Lakeview St, Los Angeles, CA 90001" +248159,AAA Batteries (4-pack),3,2.99,08/06/19 14:16,"223 Hill St, San Francisco, CA 94016" +248160,Apple Airpods Headphones,1,150,08/24/19 10:18,"815 Lincoln St, New York City, NY 10001" +248161,Wired Headphones,4,11.99,08/08/19 23:25,"968 Wilson St, Dallas, TX 75001" +248162,AAA Batteries (4-pack),2,2.99,08/21/19 13:11,"613 Chestnut St, San Francisco, CA 94016" +248163,Lightning Charging Cable,1,14.95,08/01/19 19:09,"453 Pine St, New York City, NY 10001" +248164,iPhone,1,700,08/31/19 08:16,"276 Ridge St, Los Angeles, CA 90001" +248165,iPhone,1,700,08/16/19 14:44,"269 Church St, Boston, MA 02215" +248165,Lightning Charging Cable,1,14.95,08/16/19 14:44,"269 Church St, Boston, MA 02215" +248166,AAA Batteries (4-pack),2,2.99,08/26/19 14:36,"858 Highland St, Atlanta, GA 30301" +248167,27in FHD Monitor,1,149.99,08/14/19 00:26,"654 Sunset St, Dallas, TX 75001" +248168,Google Phone,1,600,08/28/19 19:30,"373 River St, San Francisco, CA 94016" +248169,AA Batteries (4-pack),1,3.84,08/11/19 20:54,"213 Adams St, Los Angeles, CA 90001" +248170,27in FHD Monitor,1,149.99,08/30/19 14:28,"646 Center St, San Francisco, CA 94016" +248171,AAA Batteries (4-pack),1,2.99,08/11/19 00:22,"679 Maple St, Boston, MA 02215" +248172,AA Batteries (4-pack),1,3.84,08/21/19 12:18,"604 6th St, Los Angeles, CA 90001" +248173,USB-C Charging Cable,1,11.95,08/28/19 18:20,"45 Park St, Portland, OR 97035" +248174,Lightning Charging Cable,1,14.95,08/23/19 15:01,"316 1st St, San Francisco, CA 94016" +248175,USB-C Charging Cable,1,11.95,08/01/19 15:12,"341 Park St, Boston, MA 02215" +248176,USB-C Charging Cable,1,11.95,08/18/19 16:33,"12 Elm St, San Francisco, CA 94016" +248177,Apple Airpods Headphones,1,150,08/23/19 21:15,"505 Hill St, San Francisco, CA 94016" +248178,AAA Batteries (4-pack),3,2.99,08/29/19 15:20,"415 Meadow St, New York City, NY 10001" +248179,Apple Airpods Headphones,1,150,08/22/19 11:06,"92 Madison St, Austin, TX 73301" +248180,34in Ultrawide Monitor,1,379.99,08/27/19 16:48,"200 Lake St, Atlanta, GA 30301" +248181,USB-C Charging Cable,1,11.95,08/16/19 18:14,"456 13th St, Atlanta, GA 30301" +248182,ThinkPad Laptop,1,999.99,08/18/19 07:34,"215 South St, New York City, NY 10001" +248183,Macbook Pro Laptop,1,1700,08/19/19 18:03,"431 Highland St, San Francisco, CA 94016" +248184,USB-C Charging Cable,1,11.95,08/05/19 13:30,"324 Park St, Atlanta, GA 30301" +248185,Wired Headphones,3,11.99,08/15/19 13:53,"251 Park St, Atlanta, GA 30301" +248186,AAA Batteries (4-pack),4,2.99,08/05/19 15:23,"436 1st St, Los Angeles, CA 90001" +248187,iPhone,1,700,08/31/19 22:46,"50 11th St, Los Angeles, CA 90001" +248188,USB-C Charging Cable,1,11.95,08/09/19 14:08,"874 West St, Seattle, WA 98101" +248189,27in FHD Monitor,1,149.99,08/22/19 09:42,"953 West St, Boston, MA 02215" +248190,USB-C Charging Cable,1,11.95,08/01/19 10:08,"538 North St, Atlanta, GA 30301" +248191,Bose SoundSport Headphones,1,99.99,08/25/19 10:26,"235 Pine St, San Francisco, CA 94016" +248192,USB-C Charging Cable,1,11.95,08/30/19 21:49,"785 4th St, New York City, NY 10001" +248193,AAA Batteries (4-pack),1,2.99,08/18/19 16:17,"626 Cherry St, San Francisco, CA 94016" +248194,USB-C Charging Cable,1,11.95,08/29/19 18:25,"727 North St, Boston, MA 02215" +248195,AAA Batteries (4-pack),1,2.99,08/04/19 18:50,"358 Center St, Los Angeles, CA 90001" +248196,AA Batteries (4-pack),2,3.84,08/29/19 22:37,"644 Cherry St, San Francisco, CA 94016" +248197,AA Batteries (4-pack),1,3.84,08/13/19 14:55,"843 6th St, Portland, ME 04101" +248198,Lightning Charging Cable,1,14.95,08/21/19 21:14,"42 Willow St, Los Angeles, CA 90001" +248199,AA Batteries (4-pack),1,3.84,08/10/19 10:42,"414 Hickory St, San Francisco, CA 94016" +248200,AAA Batteries (4-pack),4,2.99,08/09/19 07:56,"54 Willow St, Seattle, WA 98101" +248201,AA Batteries (4-pack),1,3.84,08/20/19 10:47,"623 8th St, Dallas, TX 75001" +248202,iPhone,1,700,08/02/19 00:39,"63 12th St, Los Angeles, CA 90001" +248203,AAA Batteries (4-pack),1,2.99,08/10/19 16:35,"817 6th St, Boston, MA 02215" +248204,AAA Batteries (4-pack),1,2.99,08/13/19 19:10,"773 Park St, Seattle, WA 98101" +248205,AAA Batteries (4-pack),1,2.99,08/15/19 20:45,"579 Adams St, Atlanta, GA 30301" +248206,27in FHD Monitor,1,149.99,08/04/19 20:59,"942 Forest St, San Francisco, CA 94016" +248207,AAA Batteries (4-pack),1,2.99,08/16/19 21:00,"902 Spruce St, Atlanta, GA 30301" +248208,Macbook Pro Laptop,1,1700,08/06/19 22:00,"112 Ridge St, Boston, MA 02215" +248209,AA Batteries (4-pack),1,3.84,08/27/19 20:39,"374 Park St, Atlanta, GA 30301" +248210,Lightning Charging Cable,1,14.95,08/23/19 13:38,"505 Johnson St, Los Angeles, CA 90001" +248211,27in 4K Gaming Monitor,1,389.99,08/14/19 09:21,"595 Lake St, New York City, NY 10001" +248212,27in 4K Gaming Monitor,1,389.99,08/04/19 22:25,"606 8th St, New York City, NY 10001" +248213,USB-C Charging Cable,1,11.95,08/04/19 12:26,"323 Park St, Boston, MA 02215" +248214,27in 4K Gaming Monitor,1,389.99,08/24/19 08:51,"227 Forest St, Los Angeles, CA 90001" +248215,Wired Headphones,1,11.99,08/15/19 21:03,"292 4th St, Seattle, WA 98101" +248216,Apple Airpods Headphones,1,150,08/24/19 19:19,"377 Willow St, Los Angeles, CA 90001" +248217,AAA Batteries (4-pack),2,2.99,08/01/19 14:43,"247 River St, Los Angeles, CA 90001" +248218,Wired Headphones,1,11.99,08/18/19 16:57,"706 Highland St, Austin, TX 73301" +248219,USB-C Charging Cable,1,11.95,08/29/19 11:17,"415 11th St, San Francisco, CA 94016" +248220,AA Batteries (4-pack),1,3.84,08/18/19 20:15,"608 Washington St, San Francisco, CA 94016" +248221,AA Batteries (4-pack),1,3.84,08/04/19 12:09,"1 Church St, San Francisco, CA 94016" +248222,AA Batteries (4-pack),2,3.84,08/29/19 10:27,"471 2nd St, New York City, NY 10001" +248223,AA Batteries (4-pack),1,3.84,08/30/19 18:03,"679 Johnson St, Seattle, WA 98101" +248224,Macbook Pro Laptop,1,1700,08/03/19 11:21,"381 Walnut St, Seattle, WA 98101" +248225,27in 4K Gaming Monitor,1,389.99,08/08/19 11:51,"869 West St, New York City, NY 10001" +248226,Bose SoundSport Headphones,1,99.99,08/25/19 11:32,"986 Main St, New York City, NY 10001" +248227,Lightning Charging Cable,1,14.95,08/23/19 11:20,"200 Ridge St, Atlanta, GA 30301" +248228,AAA Batteries (4-pack),3,2.99,08/07/19 21:14,"929 Madison St, Boston, MA 02215" +248229,AA Batteries (4-pack),1,3.84,08/12/19 19:16,"349 12th St, New York City, NY 10001" +248230,Flatscreen TV,1,300,08/13/19 08:22,"804 Hickory St, New York City, NY 10001" +248231,27in 4K Gaming Monitor,1,389.99,08/07/19 01:36,"695 Dogwood St, New York City, NY 10001" +248232,USB-C Charging Cable,1,11.95,08/03/19 13:20,"914 South St, San Francisco, CA 94016" +248233,Apple Airpods Headphones,1,150,08/20/19 19:08,"168 Wilson St, Austin, TX 73301" +248234,27in FHD Monitor,1,149.99,08/21/19 10:40,"406 Lake St, Boston, MA 02215" +248235,Apple Airpods Headphones,1,150,08/20/19 15:34,"98 Adams St, Portland, ME 04101" +248236,Lightning Charging Cable,1,14.95,08/05/19 21:20,"171 13th St, Dallas, TX 75001" +248237,AA Batteries (4-pack),1,3.84,08/23/19 19:13,"958 Park St, San Francisco, CA 94016" +248238,Apple Airpods Headphones,1,150,08/04/19 16:50,"89 4th St, Dallas, TX 75001" +248238,27in 4K Gaming Monitor,1,389.99,08/04/19 16:50,"89 4th St, Dallas, TX 75001" +248239,Wired Headphones,1,11.99,08/12/19 09:18,"369 8th St, San Francisco, CA 94016" +248240,Apple Airpods Headphones,1,150,08/11/19 17:45,"13 Lakeview St, Seattle, WA 98101" +248240,Wired Headphones,1,11.99,08/11/19 17:45,"13 Lakeview St, Seattle, WA 98101" +248241,Lightning Charging Cable,1,14.95,08/14/19 09:28,"184 13th St, San Francisco, CA 94016" +248242,Wired Headphones,1,11.99,08/22/19 18:31,"411 West St, Seattle, WA 98101" +248243,27in 4K Gaming Monitor,1,389.99,08/03/19 11:16,"968 Park St, Los Angeles, CA 90001" +248244,Google Phone,1,600,08/13/19 12:45,"125 Hickory St, Los Angeles, CA 90001" +248245,Wired Headphones,1,11.99,08/26/19 06:47,"587 Pine St, San Francisco, CA 94016" +248246,USB-C Charging Cable,1,11.95,08/24/19 19:12,"985 Johnson St, Los Angeles, CA 90001" +248247,Google Phone,1,600,08/23/19 12:28,"897 Ridge St, Seattle, WA 98101" +248248,AAA Batteries (4-pack),2,2.99,08/18/19 22:53,"39 West St, Dallas, TX 75001" +248249,Bose SoundSport Headphones,1,99.99,08/28/19 12:45,"976 South St, Boston, MA 02215" +248250,USB-C Charging Cable,1,11.95,08/12/19 09:01,"669 Lincoln St, San Francisco, CA 94016" +248251,Apple Airpods Headphones,1,150,08/07/19 16:16,"427 West St, Dallas, TX 75001" +248251,Wired Headphones,1,11.99,08/07/19 16:16,"427 West St, Dallas, TX 75001" +248252,Lightning Charging Cable,1,14.95,08/30/19 18:17,"643 8th St, Los Angeles, CA 90001" +248253,AA Batteries (4-pack),2,3.84,08/10/19 15:06,"647 6th St, Atlanta, GA 30301" +248254,Flatscreen TV,1,300,08/18/19 13:28,"456 Willow St, San Francisco, CA 94016" +248255,Lightning Charging Cable,1,14.95,08/16/19 14:06,"765 Washington St, New York City, NY 10001" +248256,Lightning Charging Cable,1,14.95,08/17/19 20:03,"912 Dogwood St, Austin, TX 73301" +248257,Wired Headphones,1,11.99,08/08/19 16:07,"951 Highland St, Dallas, TX 75001" +248258,AAA Batteries (4-pack),4,2.99,08/26/19 00:10,"842 Wilson St, Los Angeles, CA 90001" +248259,AA Batteries (4-pack),1,3.84,08/03/19 09:02,"340 Dogwood St, Los Angeles, CA 90001" +248260,Google Phone,1,600,08/17/19 22:21,"950 Washington St, Atlanta, GA 30301" +248261,Flatscreen TV,1,300,08/05/19 18:43,"805 Church St, San Francisco, CA 94016" +248262,AA Batteries (4-pack),1,3.84,08/24/19 15:26,"421 12th St, Austin, TX 73301" +248263,Wired Headphones,1,11.99,08/10/19 23:59,"305 Dogwood St, Seattle, WA 98101" +248264,AA Batteries (4-pack),2,3.84,08/01/19 18:34,"368 Johnson St, San Francisco, CA 94016" +248265,Bose SoundSport Headphones,1,99.99,08/24/19 12:09,"771 10th St, Los Angeles, CA 90001" +248266,Bose SoundSport Headphones,1,99.99,08/29/19 08:22,"449 North St, Austin, TX 73301" +248267,Macbook Pro Laptop,1,1700,08/26/19 23:02,"154 12th St, San Francisco, CA 94016" +248268,34in Ultrawide Monitor,1,379.99,08/02/19 15:15,"405 6th St, San Francisco, CA 94016" +248269,Lightning Charging Cable,1,14.95,08/30/19 12:57,"988 Church St, Dallas, TX 75001" +248270,USB-C Charging Cable,1,11.95,08/06/19 15:42,"492 South St, Atlanta, GA 30301" +248271,AAA Batteries (4-pack),1,2.99,08/07/19 23:20,"509 14th St, Portland, OR 97035" +248272,AA Batteries (4-pack),1,3.84,08/03/19 07:14,"389 Cherry St, Boston, MA 02215" +248273,Apple Airpods Headphones,1,150,08/15/19 22:05,"69 10th St, San Francisco, CA 94016" +248274,AA Batteries (4-pack),1,3.84,08/22/19 13:16,"967 10th St, San Francisco, CA 94016" +248275,Lightning Charging Cable,1,14.95,08/31/19 22:06,"980 Adams St, Dallas, TX 75001" +248276,USB-C Charging Cable,1,11.95,08/25/19 15:49,"309 River St, Atlanta, GA 30301" +248277,Google Phone,1,600,08/17/19 07:49,"388 Jackson St, Atlanta, GA 30301" +248278,Wired Headphones,1,11.99,08/21/19 10:46,"570 Willow St, Atlanta, GA 30301" +248279,Bose SoundSport Headphones,1,99.99,08/09/19 14:02,"947 9th St, Atlanta, GA 30301" +248280,AA Batteries (4-pack),1,3.84,08/29/19 15:01,"575 Chestnut St, Seattle, WA 98101" +248281,27in FHD Monitor,1,149.99,08/03/19 19:06,"15 Johnson St, Dallas, TX 75001" +248282,Apple Airpods Headphones,1,150,08/19/19 21:46,"434 Johnson St, Seattle, WA 98101" +248283,34in Ultrawide Monitor,1,379.99,08/19/19 19:20,"231 8th St, Dallas, TX 75001" +248284,Wired Headphones,1,11.99,08/23/19 19:24,"449 West St, San Francisco, CA 94016" +248285,Wired Headphones,1,11.99,08/12/19 09:24,"892 Adams St, Austin, TX 73301" +248286,20in Monitor,1,109.99,08/19/19 18:50,"292 North St, San Francisco, CA 94016" +248287,Macbook Pro Laptop,1,1700,08/13/19 09:37,"429 6th St, Los Angeles, CA 90001" +248288,Lightning Charging Cable,1,14.95,08/28/19 10:32,"530 8th St, Los Angeles, CA 90001" +248289,Apple Airpods Headphones,1,150,08/22/19 23:52,"772 8th St, Dallas, TX 75001" +248290,Macbook Pro Laptop,1,1700,08/12/19 09:17,"91 Jefferson St, Dallas, TX 75001" +248291,iPhone,1,700,08/13/19 08:58,"767 11th St, Austin, TX 73301" +248292,27in FHD Monitor,1,149.99,08/04/19 11:42,"255 Chestnut St, Austin, TX 73301" +248293,Wired Headphones,1,11.99,08/11/19 19:45,"590 6th St, Boston, MA 02215" +248294,USB-C Charging Cable,1,11.95,08/17/19 20:25,"215 Johnson St, Austin, TX 73301" +248295,Wired Headphones,1,11.99,08/24/19 05:45,"506 Center St, Seattle, WA 98101" +248296,20in Monitor,1,109.99,08/28/19 14:00,"413 Cherry St, San Francisco, CA 94016" +248297,AAA Batteries (4-pack),1,2.99,08/13/19 11:33,"412 6th St, San Francisco, CA 94016" +248298,AA Batteries (4-pack),2,3.84,08/31/19 17:08,"675 9th St, New York City, NY 10001" +248299,Wired Headphones,1,11.99,08/07/19 18:25,"705 Wilson St, San Francisco, CA 94016" +248300,AA Batteries (4-pack),1,3.84,08/31/19 20:04,"263 Walnut St, Los Angeles, CA 90001" +248301,Wired Headphones,1,11.99,08/15/19 00:59,"41 North St, Dallas, TX 75001" +248302,USB-C Charging Cable,1,11.95,08/18/19 23:43,"341 Center St, San Francisco, CA 94016" +248303,Wired Headphones,1,11.99,08/09/19 15:09,"827 Maple St, New York City, NY 10001" +248304,AAA Batteries (4-pack),7,2.99,08/23/19 20:35,"908 Ridge St, New York City, NY 10001" +248305,Apple Airpods Headphones,1,150,08/20/19 21:38,"213 Sunset St, Boston, MA 02215" +248306,Apple Airpods Headphones,1,150,08/29/19 15:41,"399 River St, New York City, NY 10001" +248307,AAA Batteries (4-pack),1,2.99,08/11/19 22:00,"815 Ridge St, San Francisco, CA 94016" +248308,Apple Airpods Headphones,1,150,08/31/19 19:50,"211 Lincoln St, Dallas, TX 75001" +248309,Lightning Charging Cable,1,14.95,08/25/19 10:37,"963 Lake St, New York City, NY 10001" +248310,Lightning Charging Cable,1,14.95,08/17/19 11:18,"414 Cedar St, Boston, MA 02215" +248311,27in FHD Monitor,1,149.99,08/13/19 12:10,"606 Lake St, Portland, OR 97035" +248312,Lightning Charging Cable,1,14.95,08/12/19 20:43,"49 Meadow St, Los Angeles, CA 90001" +248313,USB-C Charging Cable,1,11.95,08/12/19 17:02,"560 Dogwood St, San Francisco, CA 94016" +248314,Apple Airpods Headphones,1,150,08/31/19 10:24,"133 Meadow St, Atlanta, GA 30301" +248315,ThinkPad Laptop,1,999.99,08/03/19 09:16,"892 4th St, San Francisco, CA 94016" +248316,Lightning Charging Cable,1,14.95,08/08/19 18:52,"414 Highland St, Los Angeles, CA 90001" +248317,Apple Airpods Headphones,1,150,08/29/19 19:29,"996 7th St, Los Angeles, CA 90001" +248318,AA Batteries (4-pack),1,3.84,08/10/19 18:56,"197 Ridge St, San Francisco, CA 94016" +248319,20in Monitor,1,109.99,08/06/19 19:33,"725 River St, Portland, OR 97035" +248320,AA Batteries (4-pack),1,3.84,08/30/19 13:38,"981 Walnut St, San Francisco, CA 94016" +248321,Wired Headphones,1,11.99,08/03/19 20:14,"798 Jefferson St, San Francisco, CA 94016" +248322,AA Batteries (4-pack),2,3.84,08/28/19 11:56,"380 Jefferson St, Dallas, TX 75001" +248323,AAA Batteries (4-pack),1,2.99,08/07/19 01:11,"837 Maple St, San Francisco, CA 94016" +248324,27in 4K Gaming Monitor,1,389.99,08/18/19 00:29,"72 River St, Portland, OR 97035" +248325,USB-C Charging Cable,1,11.95,08/31/19 01:31,"120 Maple St, New York City, NY 10001" +248326,Flatscreen TV,1,300,08/09/19 16:11,"501 North St, Boston, MA 02215" +248327,Apple Airpods Headphones,1,150,08/06/19 18:51,"332 14th St, Seattle, WA 98101" +248328,AA Batteries (4-pack),1,3.84,08/14/19 21:01,"753 Lincoln St, Los Angeles, CA 90001" +248329,27in FHD Monitor,1,149.99,08/25/19 11:28,"875 Lake St, Austin, TX 73301" +248330,AAA Batteries (4-pack),1,2.99,08/11/19 08:42,"818 Forest St, Los Angeles, CA 90001" +248331,Lightning Charging Cable,1,14.95,08/08/19 13:25,"314 Ridge St, New York City, NY 10001" +248332,ThinkPad Laptop,1,999.99,08/13/19 13:57,"844 Dogwood St, Portland, OR 97035" +248333,AAA Batteries (4-pack),1,2.99,08/12/19 08:05,"225 Jackson St, San Francisco, CA 94016" +248334,Bose SoundSport Headphones,1,99.99,08/21/19 10:24,"936 9th St, Los Angeles, CA 90001" +248335,27in FHD Monitor,2,149.99,08/25/19 21:48,"938 Park St, Dallas, TX 75001" +248336,AAA Batteries (4-pack),2,2.99,08/21/19 16:06,"950 River St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +248337,Wired Headphones,1,11.99,08/10/19 11:22,"457 Cherry St, Atlanta, GA 30301" +248338,AA Batteries (4-pack),1,3.84,08/14/19 20:22,"6 Cherry St, Los Angeles, CA 90001" +248339,Lightning Charging Cable,1,14.95,08/22/19 12:27,"370 4th St, New York City, NY 10001" +248340,Wired Headphones,1,11.99,08/18/19 10:33,"110 Jackson St, Austin, TX 73301" +248341,USB-C Charging Cable,1,11.95,08/31/19 20:33,"3 Pine St, Austin, TX 73301" +248342,LG Dryer,1,600.0,08/01/19 07:58,"175 9th St, Atlanta, GA 30301" +248343,AAA Batteries (4-pack),1,2.99,08/07/19 09:12,"373 Pine St, Los Angeles, CA 90001" +248344,USB-C Charging Cable,1,11.95,08/20/19 18:04,"343 Madison St, Boston, MA 02215" +248344,AAA Batteries (4-pack),1,2.99,08/20/19 18:04,"343 Madison St, Boston, MA 02215" +248345,27in 4K Gaming Monitor,1,389.99,08/03/19 16:47,"831 Maple St, Austin, TX 73301" +248346,Lightning Charging Cable,1,14.95,08/13/19 13:36,"729 Lakeview St, Seattle, WA 98101" +248347,AAA Batteries (4-pack),1,2.99,08/08/19 11:59,"785 Jefferson St, New York City, NY 10001" +248348,AA Batteries (4-pack),1,3.84,08/27/19 13:53,"328 Ridge St, Boston, MA 02215" +248349,34in Ultrawide Monitor,1,379.99,08/07/19 01:12,"489 1st St, Boston, MA 02215" +248349,USB-C Charging Cable,1,11.95,08/07/19 01:12,"489 1st St, Boston, MA 02215" +248350,Bose SoundSport Headphones,1,99.99,08/03/19 23:57,"23 Jackson St, San Francisco, CA 94016" +248351,AA Batteries (4-pack),2,3.84,08/10/19 21:09,"918 Center St, Atlanta, GA 30301" +248352,iPhone,1,700,08/29/19 13:31,"733 5th St, Los Angeles, CA 90001" +248353,ThinkPad Laptop,1,999.99,08/21/19 17:17,"514 12th St, New York City, NY 10001" +248354,34in Ultrawide Monitor,1,379.99,08/17/19 10:26,"667 Center St, San Francisco, CA 94016" +248355,AA Batteries (4-pack),1,3.84,08/23/19 12:24,"522 Park St, Austin, TX 73301" +248356,AAA Batteries (4-pack),1,2.99,08/19/19 13:50,"427 Elm St, Dallas, TX 75001" +248357,27in 4K Gaming Monitor,1,389.99,08/09/19 18:36,"894 9th St, Boston, MA 02215" +248358,AA Batteries (4-pack),2,3.84,08/02/19 09:39,"723 Pine St, Los Angeles, CA 90001" +248359,34in Ultrawide Monitor,1,379.99,08/10/19 07:25,"283 Park St, Los Angeles, CA 90001" +248360,AA Batteries (4-pack),1,3.84,08/03/19 12:00,"494 Adams St, Austin, TX 73301" +248361,Lightning Charging Cable,1,14.95,08/04/19 10:41,"666 Jefferson St, Austin, TX 73301" +248362,AA Batteries (4-pack),1,3.84,08/03/19 08:57,"488 Hickory St, San Francisco, CA 94016" +248363,Lightning Charging Cable,1,14.95,08/03/19 12:34,"106 Elm St, San Francisco, CA 94016" +248363,20in Monitor,1,109.99,08/03/19 12:34,"106 Elm St, San Francisco, CA 94016" +248364,AAA Batteries (4-pack),1,2.99,08/10/19 12:50,"827 5th St, Dallas, TX 75001" +248365,AAA Batteries (4-pack),5,2.99,08/09/19 02:56,"866 11th St, San Francisco, CA 94016" +248366,34in Ultrawide Monitor,1,379.99,08/17/19 17:46,"715 Center St, Boston, MA 02215" +248367,Wired Headphones,1,11.99,08/20/19 15:29,"723 Adams St, Portland, ME 04101" +248368,Apple Airpods Headphones,1,150,08/23/19 17:37,"43 Johnson St, Boston, MA 02215" +248369,Lightning Charging Cable,1,14.95,08/28/19 11:10,"151 South St, New York City, NY 10001" +248370,Wired Headphones,2,11.99,08/02/19 12:14,"996 Adams St, San Francisco, CA 94016" +248371,AAA Batteries (4-pack),1,2.99,08/28/19 08:11,"951 Cedar St, New York City, NY 10001" +248372,27in 4K Gaming Monitor,1,389.99,08/26/19 16:35,"783 Willow St, San Francisco, CA 94016" +248373,AA Batteries (4-pack),1,3.84,08/19/19 16:34,"456 South St, Los Angeles, CA 90001" +248374,Flatscreen TV,1,300,08/09/19 10:29,"889 Sunset St, Boston, MA 02215" +248375,Wired Headphones,1,11.99,08/27/19 16:07,"338 Elm St, Atlanta, GA 30301" +248376,AAA Batteries (4-pack),1,2.99,08/03/19 13:01,"688 Lake St, Dallas, TX 75001" +248377,27in FHD Monitor,1,149.99,08/20/19 18:21,"169 9th St, San Francisco, CA 94016" +248378,USB-C Charging Cable,1,11.95,08/16/19 21:07,"659 Dogwood St, New York City, NY 10001" +248379,27in 4K Gaming Monitor,1,389.99,08/08/19 13:25,"862 Jackson St, Seattle, WA 98101" +248380,Wired Headphones,1,11.99,08/02/19 13:02,"264 Johnson St, Dallas, TX 75001" +248381,Bose SoundSport Headphones,1,99.99,08/30/19 21:39,"174 12th St, Boston, MA 02215" +248382,Bose SoundSport Headphones,1,99.99,08/27/19 13:09,"319 6th St, New York City, NY 10001" +248383,Apple Airpods Headphones,1,150,08/22/19 10:40,"786 North St, Seattle, WA 98101" +248384,USB-C Charging Cable,1,11.95,08/07/19 08:21,"787 North St, Boston, MA 02215" +248385,Apple Airpods Headphones,1,150,08/15/19 17:12,"275 Elm St, Boston, MA 02215" +248386,Lightning Charging Cable,1,14.95,08/10/19 06:00,"71 Lake St, San Francisco, CA 94016" +248387,AAA Batteries (4-pack),1,2.99,08/25/19 13:24,"368 1st St, San Francisco, CA 94016" +248388,USB-C Charging Cable,1,11.95,08/26/19 14:59,"8 6th St, Los Angeles, CA 90001" +248389,USB-C Charging Cable,1,11.95,08/25/19 21:52,"165 1st St, Boston, MA 02215" +248390,Lightning Charging Cable,1,14.95,08/04/19 21:22,"231 Highland St, Portland, OR 97035" +248391,USB-C Charging Cable,1,11.95,08/28/19 21:15,"270 Dogwood St, San Francisco, CA 94016" +248392,AAA Batteries (4-pack),1,2.99,08/05/19 09:07,"585 5th St, Atlanta, GA 30301" +248393,20in Monitor,1,109.99,08/28/19 06:24,"490 2nd St, Seattle, WA 98101" +248394,iPhone,1,700,08/09/19 17:35,"519 Cherry St, San Francisco, CA 94016" +248395,AAA Batteries (4-pack),1,2.99,08/28/19 13:18,"138 Dogwood St, Dallas, TX 75001" +248396,AAA Batteries (4-pack),1,2.99,08/18/19 20:47,"619 Pine St, Atlanta, GA 30301" +248397,USB-C Charging Cable,1,11.95,08/08/19 17:08,"923 West St, Boston, MA 02215" +248398,Wired Headphones,1,11.99,08/09/19 11:42,"95 Sunset St, Boston, MA 02215" +248399,Wired Headphones,1,11.99,08/03/19 15:48,"139 Dogwood St, New York City, NY 10001" +248400,Lightning Charging Cable,1,14.95,08/31/19 12:41,"258 Madison St, Portland, ME 04101" +248401,Wired Headphones,1,11.99,08/31/19 17:30,"669 Walnut St, Los Angeles, CA 90001" +248402,AAA Batteries (4-pack),2,2.99,08/08/19 13:07,"478 Pine St, Seattle, WA 98101" +248403,Bose SoundSport Headphones,1,99.99,08/18/19 18:26,"244 Cherry St, Portland, ME 04101" +248404,Wired Headphones,1,11.99,08/03/19 09:08,"879 4th St, Dallas, TX 75001" +248405,Lightning Charging Cable,1,14.95,08/12/19 19:31,"148 12th St, Boston, MA 02215" +248406,AA Batteries (4-pack),1,3.84,08/07/19 01:14,"751 Meadow St, New York City, NY 10001" +248407,Lightning Charging Cable,1,14.95,08/05/19 19:28,"581 1st St, New York City, NY 10001" +248408,AAA Batteries (4-pack),1,2.99,08/26/19 14:12,"431 Park St, New York City, NY 10001" +248409,Wired Headphones,1,11.99,08/30/19 12:06,"520 Church St, Austin, TX 73301" +248410,iPhone,1,700,08/09/19 19:53,"372 12th St, San Francisco, CA 94016" +248410,Apple Airpods Headphones,1,150,08/09/19 19:53,"372 12th St, San Francisco, CA 94016" +248411,Wired Headphones,1,11.99,08/05/19 17:27,"812 10th St, New York City, NY 10001" +248412,20in Monitor,1,109.99,08/12/19 00:17,"507 8th St, Atlanta, GA 30301" +248413,Apple Airpods Headphones,1,150,08/09/19 22:43,"893 Church St, Los Angeles, CA 90001" +248414,Wired Headphones,1,11.99,08/11/19 18:31,"881 12th St, San Francisco, CA 94016" +248415,Macbook Pro Laptop,1,1700,08/17/19 18:08,"851 4th St, Los Angeles, CA 90001" +248416,USB-C Charging Cable,2,11.95,08/20/19 10:34,"763 Walnut St, Los Angeles, CA 90001" +248417,USB-C Charging Cable,1,11.95,08/03/19 19:55,"140 River St, San Francisco, CA 94016" +248418,AA Batteries (4-pack),1,3.84,08/01/19 09:56,"299 Sunset St, Boston, MA 02215" +248419,Bose SoundSport Headphones,1,99.99,08/22/19 10:53,"7 9th St, Seattle, WA 98101" +248420,Bose SoundSport Headphones,1,99.99,08/16/19 18:34,"878 Adams St, New York City, NY 10001" +248421,Wired Headphones,1,11.99,08/29/19 19:50,"342 Washington St, San Francisco, CA 94016" +248422,Lightning Charging Cable,1,14.95,08/16/19 19:45,"390 Wilson St, San Francisco, CA 94016" +248423,Wired Headphones,1,11.99,08/30/19 17:53,"711 Main St, Boston, MA 02215" +248424,AA Batteries (4-pack),1,3.84,08/12/19 09:32,"574 5th St, Boston, MA 02215" +248425,Apple Airpods Headphones,1,150,08/25/19 20:27,"709 Highland St, Austin, TX 73301" +248426,Bose SoundSport Headphones,1,99.99,08/10/19 11:53,"519 Washington St, Atlanta, GA 30301" +248427,34in Ultrawide Monitor,1,379.99,08/26/19 14:44,"289 4th St, Portland, OR 97035" +248428,AAA Batteries (4-pack),3,2.99,08/10/19 21:52,"849 West St, San Francisco, CA 94016" +248429,Apple Airpods Headphones,1,150,08/12/19 03:00,"762 Adams St, San Francisco, CA 94016" +248430,USB-C Charging Cable,1,11.95,08/05/19 08:26,"10 14th St, San Francisco, CA 94016" +248431,USB-C Charging Cable,1,11.95,08/05/19 01:14,"379 Meadow St, Boston, MA 02215" +248432,AAA Batteries (4-pack),3,2.99,08/15/19 19:48,"817 Spruce St, Portland, ME 04101" +248433,27in 4K Gaming Monitor,1,389.99,08/28/19 20:52,"521 Elm St, New York City, NY 10001" +248434,Lightning Charging Cable,1,14.95,08/10/19 15:08,"463 Meadow St, San Francisco, CA 94016" +248435,Wired Headphones,1,11.99,08/15/19 19:07,"879 12th St, San Francisco, CA 94016" +248436,AAA Batteries (4-pack),5,2.99,08/25/19 20:32,"685 Cedar St, Seattle, WA 98101" +248437,Wired Headphones,2,11.99,08/07/19 12:22,"810 10th St, San Francisco, CA 94016" +248438,LG Washing Machine,1,600.0,08/25/19 16:29,"42 Center St, Atlanta, GA 30301" +248439,AA Batteries (4-pack),1,3.84,08/20/19 00:28,"845 Forest St, Dallas, TX 75001" +248440,ThinkPad Laptop,1,999.99,08/15/19 13:55,"434 11th St, New York City, NY 10001" +248441,Bose SoundSport Headphones,1,99.99,08/24/19 11:47,"266 River St, San Francisco, CA 94016" +248442,Lightning Charging Cable,1,14.95,08/01/19 16:09,"761 2nd St, New York City, NY 10001" +248443,34in Ultrawide Monitor,1,379.99,08/08/19 19:56,"188 12th St, San Francisco, CA 94016" +248444,Lightning Charging Cable,1,14.95,08/28/19 11:44,"229 Maple St, Boston, MA 02215" +248445,AAA Batteries (4-pack),1,2.99,08/13/19 23:19,"266 1st St, Dallas, TX 75001" +248446,Lightning Charging Cable,1,14.95,08/17/19 20:06,"935 Highland St, Boston, MA 02215" +248447,USB-C Charging Cable,1,11.95,08/04/19 09:57,"111 Ridge St, San Francisco, CA 94016" +248448,USB-C Charging Cable,1,11.95,08/03/19 21:16,"39 4th St, Portland, OR 97035" +248449,20in Monitor,1,109.99,08/25/19 12:58,"196 Lakeview St, Austin, TX 73301" +248450,AA Batteries (4-pack),1,3.84,08/30/19 20:51,"480 Church St, New York City, NY 10001" +248451,Google Phone,1,600,08/20/19 15:40,"706 Maple St, Los Angeles, CA 90001" +248452,Apple Airpods Headphones,1,150,08/28/19 17:56,"401 Wilson St, San Francisco, CA 94016" +248453,AAA Batteries (4-pack),2,2.99,08/05/19 18:58,"735 River St, Boston, MA 02215" +248454,Lightning Charging Cable,1,14.95,08/02/19 13:12,"643 9th St, Dallas, TX 75001" +248455,27in FHD Monitor,1,149.99,08/23/19 22:12,"698 Lakeview St, Boston, MA 02215" +248456,AA Batteries (4-pack),1,3.84,08/03/19 10:34,"174 Johnson St, Los Angeles, CA 90001" +248457,AAA Batteries (4-pack),1,2.99,08/14/19 20:53,"792 Cedar St, Seattle, WA 98101" +248458,USB-C Charging Cable,1,11.95,08/27/19 01:13,"34 8th St, Los Angeles, CA 90001" +248459,ThinkPad Laptop,1,999.99,08/06/19 16:54,"934 Highland St, Austin, TX 73301" +248460,Bose SoundSport Headphones,1,99.99,08/30/19 09:20,"94 Walnut St, Dallas, TX 75001" +248461,Lightning Charging Cable,1,14.95,08/31/19 16:06,"369 South St, Dallas, TX 75001" +248462,Google Phone,1,600,08/19/19 22:59,"270 9th St, New York City, NY 10001" +248463,34in Ultrawide Monitor,1,379.99,08/12/19 15:42,"624 Highland St, San Francisco, CA 94016" +248464,Bose SoundSport Headphones,1,99.99,08/07/19 17:16,"134 Johnson St, Boston, MA 02215" +248465,AAA Batteries (4-pack),1,2.99,08/11/19 23:07,"528 North St, Portland, OR 97035" +248466,AA Batteries (4-pack),1,3.84,08/24/19 08:13,"223 Hickory St, Boston, MA 02215" +248467,Lightning Charging Cable,1,14.95,08/01/19 18:50,"524 5th St, San Francisco, CA 94016" +248468,USB-C Charging Cable,1,11.95,08/12/19 10:41,"87 Dogwood St, Los Angeles, CA 90001" +248469,27in FHD Monitor,1,149.99,08/03/19 16:49,"61 1st St, Los Angeles, CA 90001" +248470,Apple Airpods Headphones,1,150,08/02/19 19:07,"211 Chestnut St, Boston, MA 02215" +248471,AA Batteries (4-pack),1,3.84,08/27/19 12:26,"484 Willow St, Seattle, WA 98101" +248472,Macbook Pro Laptop,1,1700,08/18/19 09:07,"524 Dogwood St, San Francisco, CA 94016" +248473,USB-C Charging Cable,1,11.95,08/10/19 21:57,"799 Center St, New York City, NY 10001" +248474,AA Batteries (4-pack),1,3.84,08/03/19 13:48,"287 Meadow St, San Francisco, CA 94016" +248475,27in 4K Gaming Monitor,1,389.99,08/14/19 14:33,"437 Chestnut St, New York City, NY 10001" +248476,27in FHD Monitor,1,149.99,08/04/19 13:11,"399 Park St, Los Angeles, CA 90001" +248477,USB-C Charging Cable,1,11.95,08/07/19 20:36,"894 Center St, San Francisco, CA 94016" +248478,Bose SoundSport Headphones,1,99.99,08/21/19 18:11,"548 Johnson St, San Francisco, CA 94016" +248479,Bose SoundSport Headphones,1,99.99,08/24/19 13:34,"132 Washington St, New York City, NY 10001" +248480,Flatscreen TV,1,300,08/08/19 03:49,"94 South St, San Francisco, CA 94016" +248481,AA Batteries (4-pack),1,3.84,08/20/19 07:58,"145 Walnut St, Seattle, WA 98101" +248482,Google Phone,1,600,08/19/19 14:22,"414 Park St, Dallas, TX 75001" +248482,Wired Headphones,1,11.99,08/19/19 14:22,"414 Park St, Dallas, TX 75001" +248483,USB-C Charging Cable,1,11.95,08/12/19 14:07,"329 Madison St, Portland, OR 97035" +248484,Bose SoundSport Headphones,1,99.99,08/09/19 18:29,"404 7th St, New York City, NY 10001" +248485,27in FHD Monitor,1,149.99,08/15/19 18:33,"390 Sunset St, Dallas, TX 75001" +248486,iPhone,1,700,08/29/19 18:44,"431 Cherry St, San Francisco, CA 94016" +248487,AAA Batteries (4-pack),1,2.99,08/06/19 21:24,"399 River St, Seattle, WA 98101" +248488,Wired Headphones,1,11.99,08/13/19 09:22,"427 2nd St, Dallas, TX 75001" +248489,AA Batteries (4-pack),1,3.84,08/14/19 01:30,"187 5th St, San Francisco, CA 94016" +248490,AAA Batteries (4-pack),1,2.99,08/20/19 17:08,"672 Johnson St, San Francisco, CA 94016" +248491,Apple Airpods Headphones,1,150,08/30/19 20:39,"677 5th St, San Francisco, CA 94016" +248492,USB-C Charging Cable,1,11.95,08/17/19 16:10,"580 14th St, Dallas, TX 75001" +248493,Bose SoundSport Headphones,1,99.99,08/14/19 15:16,"724 Jackson St, Portland, OR 97035" +248494,Bose SoundSport Headphones,1,99.99,08/16/19 12:11,"499 1st St, Austin, TX 73301" +248495,Flatscreen TV,1,300,08/21/19 15:01,"478 12th St, New York City, NY 10001" +248496,27in FHD Monitor,1,149.99,08/23/19 11:46,"931 Chestnut St, Boston, MA 02215" +248497,USB-C Charging Cable,1,11.95,08/25/19 12:16,"359 Wilson St, Seattle, WA 98101" +248498,Apple Airpods Headphones,1,150,08/26/19 17:41,"763 Pine St, Boston, MA 02215" +248499,Wired Headphones,1,11.99,08/15/19 18:08,"51 North St, Dallas, TX 75001" +248500,USB-C Charging Cable,1,11.95,08/20/19 19:18,"623 4th St, Boston, MA 02215" +248501,AA Batteries (4-pack),1,3.84,08/17/19 21:54,"284 Center St, Atlanta, GA 30301" +248502,Bose SoundSport Headphones,1,99.99,08/17/19 12:29,"48 Willow St, Los Angeles, CA 90001" +248503,AAA Batteries (4-pack),1,2.99,08/10/19 17:05,"774 8th St, New York City, NY 10001" +248504,USB-C Charging Cable,1,11.95,08/09/19 14:31,"8 Lincoln St, Dallas, TX 75001" +248505,34in Ultrawide Monitor,1,379.99,08/22/19 15:29,"842 10th St, New York City, NY 10001" +248506,Lightning Charging Cable,1,14.95,08/16/19 14:19,"225 14th St, San Francisco, CA 94016" +248507,27in 4K Gaming Monitor,1,389.99,08/29/19 14:12,"398 8th St, Dallas, TX 75001" +248508,Vareebadd Phone,1,400,08/30/19 21:39,"232 Cedar St, Boston, MA 02215" +248508,USB-C Charging Cable,1,11.95,08/30/19 21:39,"232 Cedar St, Boston, MA 02215" +248509,27in FHD Monitor,1,149.99,08/08/19 09:36,"780 13th St, San Francisco, CA 94016" +248510,Vareebadd Phone,1,400,08/29/19 13:29,"119 4th St, Dallas, TX 75001" +248510,Bose SoundSport Headphones,1,99.99,08/29/19 13:29,"119 4th St, Dallas, TX 75001" +248511,27in FHD Monitor,1,149.99,08/24/19 13:55,"9 West St, Portland, OR 97035" +248512,Bose SoundSport Headphones,1,99.99,08/11/19 21:44,"443 Spruce St, Atlanta, GA 30301" +248513,27in FHD Monitor,1,149.99,08/13/19 09:55,"523 Madison St, Los Angeles, CA 90001" +248514,USB-C Charging Cable,1,11.95,08/16/19 22:24,"594 West St, Boston, MA 02215" +248515,Apple Airpods Headphones,1,150,08/31/19 11:43,"505 South St, Seattle, WA 98101" +248516,Wired Headphones,1,11.99,08/22/19 20:54,"658 Chestnut St, Los Angeles, CA 90001" +248517,Google Phone,1,600,08/30/19 03:05,"196 Lakeview St, Los Angeles, CA 90001" +248518,Apple Airpods Headphones,1,150,08/02/19 11:26,"843 Park St, San Francisco, CA 94016" +248519,USB-C Charging Cable,1,11.95,08/28/19 10:54,"313 1st St, Portland, OR 97035" +248520,20in Monitor,1,109.99,08/06/19 16:39,"276 Walnut St, Dallas, TX 75001" +248521,34in Ultrawide Monitor,1,379.99,08/23/19 13:34,"229 Jefferson St, Portland, OR 97035" +248522,AA Batteries (4-pack),1,3.84,08/14/19 21:20,"894 West St, San Francisco, CA 94016" +248523,AAA Batteries (4-pack),1,2.99,08/27/19 10:05,"943 1st St, Boston, MA 02215" +248524,ThinkPad Laptop,1,999.99,08/26/19 10:27,"704 Maple St, Los Angeles, CA 90001" +248525,20in Monitor,1,109.99,08/16/19 10:19,"375 Center St, Atlanta, GA 30301" +248526,Lightning Charging Cable,1,14.95,08/30/19 19:39,"78 Lincoln St, Boston, MA 02215" +248527,27in 4K Gaming Monitor,1,389.99,08/18/19 11:03,"834 11th St, San Francisco, CA 94016" +248528,Flatscreen TV,1,300,08/22/19 11:14,"556 Madison St, Austin, TX 73301" +248529,Lightning Charging Cable,1,14.95,08/29/19 09:43,"445 6th St, New York City, NY 10001" +248530,20in Monitor,1,109.99,08/10/19 12:02,"628 12th St, New York City, NY 10001" +248531,Bose SoundSport Headphones,1,99.99,08/23/19 15:20,"598 11th St, Boston, MA 02215" +248532,AA Batteries (4-pack),1,3.84,08/05/19 14:25,"846 Cherry St, Los Angeles, CA 90001" +248532,AAA Batteries (4-pack),1,2.99,08/05/19 14:25,"846 Cherry St, Los Angeles, CA 90001" +248533,Apple Airpods Headphones,1,150,08/08/19 20:23,"759 Jefferson St, New York City, NY 10001" +248534,Macbook Pro Laptop,1,1700,08/28/19 10:18,"757 5th St, Seattle, WA 98101" +248535,USB-C Charging Cable,1,11.95,08/30/19 11:51,"454 Highland St, Los Angeles, CA 90001" +248536,Lightning Charging Cable,1,14.95,08/15/19 07:32,"889 South St, Atlanta, GA 30301" +248537,Google Phone,1,600,08/03/19 20:12,"718 Johnson St, Boston, MA 02215" +248538,Bose SoundSport Headphones,1,99.99,08/02/19 14:06,"114 4th St, San Francisco, CA 94016" +248539,USB-C Charging Cable,2,11.95,08/04/19 02:26,"444 North St, Boston, MA 02215" +248540,27in FHD Monitor,1,149.99,08/28/19 11:55,"526 Sunset St, New York City, NY 10001" +248541,AAA Batteries (4-pack),1,2.99,08/27/19 20:55,"520 7th St, Seattle, WA 98101" +248542,Wired Headphones,1,11.99,08/13/19 15:14,"883 4th St, San Francisco, CA 94016" +248543,AA Batteries (4-pack),1,3.84,08/11/19 10:21,"573 9th St, Seattle, WA 98101" +248544,AAA Batteries (4-pack),1,2.99,08/18/19 20:52,"549 Hickory St, Dallas, TX 75001" +248545,AAA Batteries (4-pack),1,2.99,08/18/19 20:09,"543 Lincoln St, San Francisco, CA 94016" +248546,Apple Airpods Headphones,1,150,08/10/19 09:13,"609 Main St, San Francisco, CA 94016" +248547,Wired Headphones,2,11.99,08/19/19 12:23,"240 Washington St, Los Angeles, CA 90001" +248548,Apple Airpods Headphones,1,150,08/26/19 19:09,"882 Lincoln St, New York City, NY 10001" +248549,Bose SoundSport Headphones,1,99.99,08/13/19 15:23,"503 4th St, Dallas, TX 75001" +248550,ThinkPad Laptop,1,999.99,08/23/19 15:27,"635 River St, Atlanta, GA 30301" +248551,Lightning Charging Cable,1,14.95,08/06/19 09:08,"88 Chestnut St, Los Angeles, CA 90001" +248552,Lightning Charging Cable,1,14.95,08/13/19 19:18,"636 Dogwood St, Los Angeles, CA 90001" +248553,Wired Headphones,1,11.99,08/29/19 11:37,"78 Lake St, San Francisco, CA 94016" +248554,Bose SoundSport Headphones,1,99.99,08/13/19 08:46,"657 Center St, New York City, NY 10001" +248555,Google Phone,1,600,08/14/19 14:44,"845 Jackson St, San Francisco, CA 94016" +248556,Wired Headphones,1,11.99,08/04/19 19:06,"965 Maple St, San Francisco, CA 94016" +248557,Lightning Charging Cable,1,14.95,08/29/19 20:17,"552 2nd St, Los Angeles, CA 90001" +248558,Flatscreen TV,1,300,08/30/19 07:35,"581 7th St, San Francisco, CA 94016" +248559,Flatscreen TV,1,300,08/17/19 14:56,"332 Chestnut St, Atlanta, GA 30301" +248560,iPhone,1,700,08/28/19 14:14,"211 4th St, New York City, NY 10001" +248561,Apple Airpods Headphones,1,150,08/20/19 14:18,"203 Walnut St, Dallas, TX 75001" +248562,Lightning Charging Cable,1,14.95,08/17/19 17:21,"8 8th St, San Francisco, CA 94016" +248563,AAA Batteries (4-pack),2,2.99,08/04/19 09:41,"294 North St, Los Angeles, CA 90001" +248564,USB-C Charging Cable,2,11.95,08/23/19 19:34,"114 Sunset St, New York City, NY 10001" +248565,27in FHD Monitor,1,149.99,08/07/19 21:43,"350 North St, New York City, NY 10001" +248566,AA Batteries (4-pack),1,3.84,08/03/19 07:39,"141 Church St, Boston, MA 02215" +248567,Bose SoundSport Headphones,1,99.99,08/14/19 17:07,"6 Johnson St, Seattle, WA 98101" +248568,Vareebadd Phone,1,400,08/30/19 14:45,"915 7th St, San Francisco, CA 94016" +248569,AA Batteries (4-pack),1,3.84,08/23/19 21:54,"687 Hill St, Los Angeles, CA 90001" +248570,Wired Headphones,1,11.99,08/16/19 20:27,"255 Hill St, Boston, MA 02215" +248571,iPhone,1,700,08/30/19 04:46,"317 Lake St, Dallas, TX 75001" +248571,Wired Headphones,2,11.99,08/30/19 04:46,"317 Lake St, Dallas, TX 75001" +248572,Wired Headphones,2,11.99,08/27/19 09:16,"592 Pine St, Seattle, WA 98101" +248573,Apple Airpods Headphones,1,150,08/11/19 23:08,"31 Madison St, Los Angeles, CA 90001" +248574,Google Phone,1,600,08/11/19 08:56,"502 South St, Los Angeles, CA 90001" +248575,Apple Airpods Headphones,1,150,08/03/19 20:34,"35 Lakeview St, San Francisco, CA 94016" +248576,AA Batteries (4-pack),1,3.84,08/25/19 15:34,"162 Forest St, Seattle, WA 98101" +248577,AAA Batteries (4-pack),1,2.99,08/06/19 14:21,"27 Jefferson St, New York City, NY 10001" +248578,Bose SoundSport Headphones,1,99.99,08/27/19 09:06,"834 Center St, New York City, NY 10001" +248579,Bose SoundSport Headphones,1,99.99,08/03/19 11:17,"297 10th St, San Francisco, CA 94016" +248580,34in Ultrawide Monitor,1,379.99,08/14/19 11:42,"963 Meadow St, Atlanta, GA 30301" +248581,AA Batteries (4-pack),2,3.84,08/09/19 17:35,"550 7th St, New York City, NY 10001" +248582,27in FHD Monitor,1,149.99,08/13/19 11:37,"826 Forest St, San Francisco, CA 94016" +248583,USB-C Charging Cable,1,11.95,08/31/19 20:24,"355 5th St, Portland, OR 97035" +248584,Apple Airpods Headphones,1,150,08/23/19 07:06,"39 Ridge St, San Francisco, CA 94016" +248585,AA Batteries (4-pack),1,3.84,08/04/19 14:14,"110 10th St, Los Angeles, CA 90001" +248586,AAA Batteries (4-pack),1,2.99,08/22/19 06:40,"795 South St, New York City, NY 10001" +248587,Google Phone,1,600,08/04/19 00:44,"112 Adams St, Seattle, WA 98101" +248587,USB-C Charging Cable,1,11.95,08/04/19 00:44,"112 Adams St, Seattle, WA 98101" +248588,USB-C Charging Cable,1,11.95,08/02/19 17:58,"553 Washington St, San Francisco, CA 94016" +248589,AA Batteries (4-pack),1,3.84,08/14/19 21:27,"859 Hill St, Atlanta, GA 30301" +248590,27in 4K Gaming Monitor,1,389.99,08/04/19 00:26,"830 Sunset St, San Francisco, CA 94016" +248591,34in Ultrawide Monitor,1,379.99,08/05/19 14:33,"986 Park St, Austin, TX 73301" +248592,USB-C Charging Cable,1,11.95,08/14/19 22:04,"339 Jefferson St, Dallas, TX 75001" +248593,Google Phone,1,600,08/14/19 14:09,"67 Lincoln St, San Francisco, CA 94016" +248593,USB-C Charging Cable,1,11.95,08/14/19 14:09,"67 Lincoln St, San Francisco, CA 94016" +248594,AA Batteries (4-pack),3,3.84,08/27/19 16:46,"473 Hill St, New York City, NY 10001" +248595,USB-C Charging Cable,1,11.95,08/29/19 19:00,"248 2nd St, Los Angeles, CA 90001" +248596,Wired Headphones,1,11.99,08/22/19 13:03,"7 South St, Los Angeles, CA 90001" +248597,AAA Batteries (4-pack),2,2.99,08/07/19 11:11,"106 Wilson St, Boston, MA 02215" +248598,Lightning Charging Cable,1,14.95,08/18/19 03:22,"107 Hill St, New York City, NY 10001" +248599,USB-C Charging Cable,1,11.95,08/11/19 16:08,"516 North St, Atlanta, GA 30301" +248600,Flatscreen TV,1,300,08/22/19 21:38,"751 Chestnut St, New York City, NY 10001" +248601,20in Monitor,1,109.99,08/27/19 11:41,"842 6th St, Atlanta, GA 30301" +248602,iPhone,1,700,08/23/19 00:49,"252 Lakeview St, San Francisco, CA 94016" +248603,Flatscreen TV,1,300,08/20/19 11:39,"804 Main St, Austin, TX 73301" +248604,Lightning Charging Cable,1,14.95,08/13/19 12:46,"374 Dogwood St, New York City, NY 10001" +248605,USB-C Charging Cable,1,11.95,08/20/19 11:51,"955 Lakeview St, San Francisco, CA 94016" +248606,Flatscreen TV,1,300,08/20/19 00:28,"448 Meadow St, San Francisco, CA 94016" +248607,Lightning Charging Cable,1,14.95,08/26/19 21:35,"249 Church St, Portland, OR 97035" +248608,Apple Airpods Headphones,1,150,08/31/19 23:38,"909 Forest St, Austin, TX 73301" +248609,Wired Headphones,1,11.99,08/31/19 14:59,"159 Washington St, New York City, NY 10001" +248610,Bose SoundSport Headphones,1,99.99,08/18/19 09:26,"454 Park St, San Francisco, CA 94016" +248611,USB-C Charging Cable,3,11.95,08/09/19 22:06,"490 Elm St, Seattle, WA 98101" +248612,27in 4K Gaming Monitor,1,389.99,08/06/19 14:14,"409 Hickory St, New York City, NY 10001" +248613,Google Phone,1,600,08/24/19 07:20,"277 1st St, Los Angeles, CA 90001" +248613,USB-C Charging Cable,1,11.95,08/24/19 07:20,"277 1st St, Los Angeles, CA 90001" +248614,27in FHD Monitor,1,149.99,08/13/19 21:41,"150 Willow St, San Francisco, CA 94016" +248615,Lightning Charging Cable,2,14.95,08/27/19 15:16,"543 Maple St, San Francisco, CA 94016" +248616,Macbook Pro Laptop,1,1700,08/31/19 00:12,"934 Lakeview St, Portland, OR 97035" +248617,Lightning Charging Cable,1,14.95,08/10/19 11:41,"331 Dogwood St, San Francisco, CA 94016" +248618,AAA Batteries (4-pack),1,2.99,08/20/19 17:09,"139 8th St, San Francisco, CA 94016" +248619,Wired Headphones,1,11.99,08/18/19 14:23,"667 Jackson St, Los Angeles, CA 90001" +248620,Bose SoundSport Headphones,1,99.99,08/23/19 23:44,"155 13th St, Boston, MA 02215" +248621,Bose SoundSport Headphones,1,99.99,08/08/19 19:56,"775 Cherry St, Portland, OR 97035" +248622,Vareebadd Phone,1,400,08/29/19 11:02,"6 North St, Boston, MA 02215" +248622,USB-C Charging Cable,1,11.95,08/29/19 11:02,"6 North St, Boston, MA 02215" +248623,Wired Headphones,1,11.99,08/03/19 15:30,"922 Adams St, San Francisco, CA 94016" +248624,AAA Batteries (4-pack),1,2.99,08/05/19 12:12,"810 Adams St, San Francisco, CA 94016" +248625,iPhone,1,700,08/31/19 18:15,"191 6th St, Atlanta, GA 30301" +248625,34in Ultrawide Monitor,1,379.99,08/31/19 18:15,"191 6th St, Atlanta, GA 30301" +248626,AA Batteries (4-pack),1,3.84,08/03/19 18:06,"886 10th St, Portland, OR 97035" +248627,USB-C Charging Cable,1,11.95,08/25/19 18:14,"61 Adams St, Los Angeles, CA 90001" +248628,USB-C Charging Cable,1,11.95,08/30/19 02:57,"456 Cherry St, San Francisco, CA 94016" +248629,Lightning Charging Cable,1,14.95,08/21/19 00:19,"265 Elm St, Atlanta, GA 30301" +248630,Wired Headphones,2,11.99,08/04/19 19:05,"779 Lincoln St, Boston, MA 02215" +248631,Lightning Charging Cable,1,14.95,08/28/19 11:36,"722 9th St, Austin, TX 73301" +248632,Wired Headphones,1,11.99,08/06/19 00:31,"754 Park St, Boston, MA 02215" +248633,Apple Airpods Headphones,1,150,08/13/19 11:19,"694 Lakeview St, Dallas, TX 75001" +248634,Flatscreen TV,1,300,08/21/19 14:56,"565 Willow St, Seattle, WA 98101" +248635,AAA Batteries (4-pack),3,2.99,08/24/19 10:47,"436 Willow St, Seattle, WA 98101" +248636,Wired Headphones,1,11.99,08/28/19 19:44,"800 4th St, Dallas, TX 75001" +248637,Bose SoundSport Headphones,1,99.99,08/24/19 08:07,"777 Dogwood St, Los Angeles, CA 90001" +248638,Flatscreen TV,1,300,08/22/19 06:21,"178 Forest St, New York City, NY 10001" +248639,Wired Headphones,1,11.99,08/09/19 17:00,"849 7th St, San Francisco, CA 94016" +248640,27in FHD Monitor,1,149.99,08/29/19 10:30,"119 Hickory St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +248641,Lightning Charging Cable,1,14.95,08/24/19 23:07,"601 Willow St, San Francisco, CA 94016" +248642,Wired Headphones,1,11.99,08/15/19 16:18,"98 Lake St, Austin, TX 73301" +248643,iPhone,1,700,08/13/19 05:46,"696 2nd St, San Francisco, CA 94016" +248644,Bose SoundSport Headphones,1,99.99,08/17/19 23:49,"688 6th St, San Francisco, CA 94016" +248645,27in 4K Gaming Monitor,1,389.99,08/25/19 17:49,"889 Highland St, Boston, MA 02215" +248646,AAA Batteries (4-pack),1,2.99,08/05/19 09:09,"402 10th St, San Francisco, CA 94016" +248647,USB-C Charging Cable,1,11.95,08/02/19 10:40,"579 Main St, Dallas, TX 75001" +248648,Wired Headphones,1,11.99,08/18/19 22:12,"162 Washington St, Los Angeles, CA 90001" +248649,Wired Headphones,1,11.99,08/07/19 18:59,"368 1st St, New York City, NY 10001" +248650,USB-C Charging Cable,2,11.95,08/15/19 23:33,"54 Meadow St, Seattle, WA 98101" +248651,Bose SoundSport Headphones,1,99.99,08/28/19 02:22,"475 Hickory St, Portland, ME 04101" +248652,AAA Batteries (4-pack),1,2.99,08/31/19 18:40,"37 Center St, Seattle, WA 98101" +248653,34in Ultrawide Monitor,1,379.99,08/01/19 20:05,"89 Jackson St, Boston, MA 02215" +248654,AAA Batteries (4-pack),1,2.99,08/23/19 20:49,"865 6th St, Austin, TX 73301" +248655,USB-C Charging Cable,1,11.95,08/28/19 15:41,"588 Meadow St, Atlanta, GA 30301" +248656,20in Monitor,1,109.99,08/24/19 10:13,"876 River St, San Francisco, CA 94016" +248656,AAA Batteries (4-pack),1,2.99,08/24/19 10:13,"876 River St, San Francisco, CA 94016" +248657,Lightning Charging Cable,1,14.95,08/26/19 11:01,"460 River St, Los Angeles, CA 90001" +248658,ThinkPad Laptop,1,999.99,08/06/19 17:31,"267 Johnson St, New York City, NY 10001" +248659,Bose SoundSport Headphones,1,99.99,08/12/19 15:51,"556 Adams St, Boston, MA 02215" +248660,LG Washing Machine,1,600.0,08/25/19 18:11,"994 14th St, San Francisco, CA 94016" +248661,Wired Headphones,1,11.99,08/28/19 10:52,"66 Cedar St, San Francisco, CA 94016" +248662,AAA Batteries (4-pack),1,2.99,08/20/19 15:59,"929 Cherry St, Los Angeles, CA 90001" +248663,Apple Airpods Headphones,1,150,08/30/19 21:34,"148 Lake St, Seattle, WA 98101" +248664,AA Batteries (4-pack),1,3.84,08/30/19 00:09,"598 Jackson St, San Francisco, CA 94016" +248665,27in 4K Gaming Monitor,1,389.99,08/20/19 20:43,"71 10th St, Seattle, WA 98101" +248666,27in 4K Gaming Monitor,1,389.99,08/08/19 08:35,"140 Forest St, New York City, NY 10001" +248667,27in FHD Monitor,1,149.99,08/08/19 17:24,"796 10th St, Los Angeles, CA 90001" +248668,Wired Headphones,1,11.99,09/01/19 01:49,"629 Church St, Los Angeles, CA 90001" +248669,34in Ultrawide Monitor,2,379.99,08/29/19 21:51,"78 1st St, Austin, TX 73301" +248670,Macbook Pro Laptop,1,1700,08/01/19 13:12,"15 Hill St, Austin, TX 73301" +248671,USB-C Charging Cable,1,11.95,08/06/19 17:57,"936 Johnson St, Los Angeles, CA 90001" +248672,Wired Headphones,1,11.99,08/19/19 13:54,"241 Jackson St, Dallas, TX 75001" +248673,AAA Batteries (4-pack),1,2.99,08/19/19 09:59,"830 8th St, Atlanta, GA 30301" +248674,Bose SoundSport Headphones,1,99.99,08/14/19 13:39,"578 Dogwood St, Los Angeles, CA 90001" +248675,iPhone,1,700,08/16/19 10:52,"529 Cedar St, San Francisco, CA 94016" +248676,Wired Headphones,1,11.99,08/28/19 19:36,"398 Maple St, Austin, TX 73301" +248676,34in Ultrawide Monitor,1,379.99,08/28/19 19:36,"398 Maple St, Austin, TX 73301" +248677,AAA Batteries (4-pack),1,2.99,08/08/19 15:57,"322 Cedar St, New York City, NY 10001" +248678,AA Batteries (4-pack),2,3.84,08/14/19 21:00,"944 West St, Dallas, TX 75001" +248679,Bose SoundSport Headphones,1,99.99,08/08/19 04:46,"381 1st St, Dallas, TX 75001" +248680,USB-C Charging Cable,1,11.95,08/02/19 18:43,"135 Washington St, New York City, NY 10001" +248680,Google Phone,1,600,08/02/19 18:43,"135 Washington St, New York City, NY 10001" +248681,ThinkPad Laptop,1,999.99,08/20/19 11:59,"9 Spruce St, San Francisco, CA 94016" +248682,Lightning Charging Cable,3,14.95,08/13/19 11:10,"155 Pine St, San Francisco, CA 94016" +248683,AA Batteries (4-pack),1,3.84,08/18/19 23:11,"183 Elm St, Los Angeles, CA 90001" +248684,Flatscreen TV,1,300,08/18/19 08:24,"767 Lake St, San Francisco, CA 94016" +248685,Wired Headphones,1,11.99,08/13/19 17:23,"415 Washington St, Dallas, TX 75001" +248686,Lightning Charging Cable,1,14.95,08/25/19 16:53,"618 Madison St, San Francisco, CA 94016" +248687,27in 4K Gaming Monitor,1,389.99,08/12/19 21:17,"594 River St, Boston, MA 02215" +248688,AA Batteries (4-pack),2,3.84,08/05/19 11:28,"78 Dogwood St, Los Angeles, CA 90001" +248689,AAA Batteries (4-pack),2,2.99,08/22/19 23:12,"227 Jackson St, Atlanta, GA 30301" +248690,20in Monitor,1,109.99,08/12/19 13:53,"52 Dogwood St, Austin, TX 73301" +248691,Lightning Charging Cable,1,14.95,08/30/19 22:06,"118 Main St, Portland, OR 97035" +248692,Flatscreen TV,1,300,08/21/19 16:32,"111 Hill St, New York City, NY 10001" +248692,Wired Headphones,1,11.99,08/21/19 16:32,"111 Hill St, New York City, NY 10001" +248693,Wired Headphones,1,11.99,08/02/19 17:21,"804 Lakeview St, Dallas, TX 75001" +248694,USB-C Charging Cable,1,11.95,08/10/19 22:53,"628 Pine St, Austin, TX 73301" +248695,Apple Airpods Headphones,1,150,08/31/19 11:03,"276 6th St, San Francisco, CA 94016" +248696,AA Batteries (4-pack),1,3.84,08/22/19 14:42,"153 Adams St, Los Angeles, CA 90001" +248697,USB-C Charging Cable,1,11.95,08/30/19 17:32,"139 Elm St, Seattle, WA 98101" +248698,iPhone,1,700,08/25/19 10:27,"206 Wilson St, New York City, NY 10001" +248699,Macbook Pro Laptop,1,1700,08/10/19 06:35,"403 Pine St, Los Angeles, CA 90001" +248700,Lightning Charging Cable,1,14.95,08/17/19 15:02,"727 Spruce St, Portland, OR 97035" +248701,USB-C Charging Cable,1,11.95,08/26/19 07:09,"147 Johnson St, San Francisco, CA 94016" +248702,AA Batteries (4-pack),1,3.84,08/16/19 23:40,"970 Cedar St, Dallas, TX 75001" +248703,20in Monitor,1,109.99,08/01/19 19:44,"685 14th St, Los Angeles, CA 90001" +248704,AAA Batteries (4-pack),1,2.99,08/08/19 11:39,"418 Washington St, Boston, MA 02215" +248705,Lightning Charging Cable,1,14.95,08/10/19 22:54,"997 Madison St, San Francisco, CA 94016" +248706,Apple Airpods Headphones,1,150,08/02/19 11:07,"652 2nd St, San Francisco, CA 94016" +248707,Flatscreen TV,1,300,08/10/19 11:53,"426 Dogwood St, Austin, TX 73301" +248708,USB-C Charging Cable,1,11.95,08/23/19 00:27,"355 Hill St, Boston, MA 02215" +248709,Apple Airpods Headphones,1,150,08/25/19 12:43,"284 7th St, San Francisco, CA 94016" +248710,27in 4K Gaming Monitor,1,389.99,08/23/19 10:09,"35 14th St, Dallas, TX 75001" +248711,Lightning Charging Cable,1,14.95,08/30/19 10:23,"767 Center St, Seattle, WA 98101" +248712,USB-C Charging Cable,1,11.95,08/09/19 13:51,"352 Church St, Boston, MA 02215" +248713,USB-C Charging Cable,1,11.95,08/17/19 02:53,"124 Center St, Portland, OR 97035" +248714,AAA Batteries (4-pack),1,2.99,08/21/19 21:11,"846 Elm St, Los Angeles, CA 90001" +248715,Bose SoundSport Headphones,1,99.99,08/31/19 19:30,"341 Madison St, Seattle, WA 98101" +248716,Wired Headphones,1,11.99,08/06/19 18:28,"178 1st St, New York City, NY 10001" +248717,20in Monitor,1,109.99,08/08/19 09:45,"895 Hickory St, Dallas, TX 75001" +248718,AAA Batteries (4-pack),1,2.99,08/25/19 17:13,"818 12th St, Los Angeles, CA 90001" +248719,Macbook Pro Laptop,1,1700,08/18/19 20:27,"950 Cedar St, Portland, OR 97035" +248720,27in 4K Gaming Monitor,1,389.99,08/20/19 09:55,"306 14th St, Los Angeles, CA 90001" +248721,Wired Headphones,1,11.99,08/11/19 15:52,"646 1st St, Portland, OR 97035" +248722,Apple Airpods Headphones,1,150,08/27/19 12:22,"583 Walnut St, San Francisco, CA 94016" +248723,AA Batteries (4-pack),1,3.84,08/16/19 07:13,"285 Lincoln St, New York City, NY 10001" +248724,Google Phone,1,600,08/11/19 18:57,"303 Adams St, New York City, NY 10001" +248725,iPhone,1,700,08/25/19 14:34,"343 Hickory St, Seattle, WA 98101" +248726,USB-C Charging Cable,1,11.95,08/29/19 08:28,"133 Willow St, Austin, TX 73301" +248727,27in FHD Monitor,1,149.99,08/04/19 21:02,"803 Ridge St, Atlanta, GA 30301" +248728,USB-C Charging Cable,1,11.95,08/21/19 10:17,"574 South St, Austin, TX 73301" +248729,Wired Headphones,1,11.99,08/27/19 08:25,"596 Meadow St, New York City, NY 10001" +248730,Wired Headphones,1,11.99,08/31/19 12:37,"29 Willow St, San Francisco, CA 94016" +248731,Bose SoundSport Headphones,1,99.99,08/26/19 18:05,"908 6th St, Seattle, WA 98101" +248732,AA Batteries (4-pack),1,3.84,08/13/19 15:45,"482 Jackson St, San Francisco, CA 94016" +248733,Apple Airpods Headphones,1,150,08/29/19 11:11,"222 Washington St, New York City, NY 10001" +248734,27in FHD Monitor,1,149.99,08/02/19 12:24,"63 Meadow St, New York City, NY 10001" +248735,AAA Batteries (4-pack),2,2.99,08/30/19 09:06,"526 Main St, San Francisco, CA 94016" +248736,34in Ultrawide Monitor,1,379.99,08/08/19 23:09,"34 10th St, Los Angeles, CA 90001" +248737,Lightning Charging Cable,1,14.95,08/21/19 10:16,"414 Sunset St, San Francisco, CA 94016" +248738,Macbook Pro Laptop,1,1700,08/11/19 08:36,"214 Meadow St, Portland, OR 97035" +248739,USB-C Charging Cable,1,11.95,08/10/19 00:27,"181 Church St, Atlanta, GA 30301" +248740,AAA Batteries (4-pack),1,2.99,08/01/19 23:12,"972 Highland St, Los Angeles, CA 90001" +248741,Wired Headphones,1,11.99,08/21/19 15:18,"1 Willow St, Boston, MA 02215" +248742,Vareebadd Phone,1,400,08/19/19 19:23,"812 Pine St, Atlanta, GA 30301" +248742,USB-C Charging Cable,1,11.95,08/19/19 19:23,"812 Pine St, Atlanta, GA 30301" +248743,AA Batteries (4-pack),1,3.84,08/20/19 12:58,"939 8th St, Portland, ME 04101" +248743,Lightning Charging Cable,1,14.95,08/20/19 12:58,"939 8th St, Portland, ME 04101" +248744,Apple Airpods Headphones,1,150,08/16/19 09:23,"174 Main St, Seattle, WA 98101" +248745,Bose SoundSport Headphones,1,99.99,08/31/19 19:31,"510 Lincoln St, Los Angeles, CA 90001" +248746,Wired Headphones,2,11.99,08/08/19 21:51,"120 1st St, San Francisco, CA 94016" +248747,Macbook Pro Laptop,1,1700,08/10/19 10:25,"561 Dogwood St, San Francisco, CA 94016" +248748,AA Batteries (4-pack),2,3.84,08/01/19 11:05,"523 12th St, Dallas, TX 75001" +248749,AA Batteries (4-pack),1,3.84,08/13/19 03:07,"272 Hill St, San Francisco, CA 94016" +248750,AA Batteries (4-pack),1,3.84,08/22/19 17:07,"941 Cherry St, San Francisco, CA 94016" +248751,Wired Headphones,1,11.99,08/03/19 16:52,"804 Dogwood St, Dallas, TX 75001" +248752,USB-C Charging Cable,1,11.95,08/30/19 13:50,"184 Jefferson St, Los Angeles, CA 90001" +248753,27in 4K Gaming Monitor,1,389.99,08/19/19 15:50,"638 Lincoln St, San Francisco, CA 94016" +248754,AA Batteries (4-pack),2,3.84,08/01/19 16:27,"171 Cherry St, San Francisco, CA 94016" +248755,Wired Headphones,1,11.99,08/17/19 13:22,"312 14th St, New York City, NY 10001" +248756,Bose SoundSport Headphones,1,99.99,08/08/19 11:44,"35 Highland St, Seattle, WA 98101" +248757,20in Monitor,1,109.99,08/03/19 12:11,"615 11th St, Seattle, WA 98101" +248758,Apple Airpods Headphones,1,150,08/26/19 19:09,"927 4th St, San Francisco, CA 94016" +248759,AAA Batteries (4-pack),1,2.99,08/17/19 15:40,"274 1st St, Dallas, TX 75001" +248760,Lightning Charging Cable,2,14.95,08/22/19 08:40,"755 Elm St, Los Angeles, CA 90001" +248761,Apple Airpods Headphones,1,150,08/05/19 15:42,"169 Spruce St, San Francisco, CA 94016" +248762,Apple Airpods Headphones,1,150,08/05/19 13:11,"861 Jefferson St, Seattle, WA 98101" +248763,AAA Batteries (4-pack),1,2.99,08/07/19 19:30,"368 13th St, San Francisco, CA 94016" +248764,27in 4K Gaming Monitor,1,389.99,08/01/19 08:33,"873 Park St, San Francisco, CA 94016" +248765,Bose SoundSport Headphones,1,99.99,08/06/19 09:03,"580 River St, Portland, OR 97035" +248766,AAA Batteries (4-pack),1,2.99,08/12/19 17:00,"82 Spruce St, Austin, TX 73301" +248767,27in FHD Monitor,1,149.99,08/21/19 08:47,"808 Hickory St, Dallas, TX 75001" +248768,Flatscreen TV,1,300,08/21/19 18:22,"412 Center St, Los Angeles, CA 90001" +248769,Bose SoundSport Headphones,1,99.99,08/07/19 19:59,"269 1st St, Atlanta, GA 30301" +248770,Bose SoundSport Headphones,1,99.99,08/23/19 12:34,"475 9th St, San Francisco, CA 94016" +248770,Lightning Charging Cable,1,14.95,08/23/19 12:34,"475 9th St, San Francisco, CA 94016" +248771,Flatscreen TV,1,300,08/28/19 18:25,"188 8th St, Atlanta, GA 30301" +248772,USB-C Charging Cable,1,11.95,08/23/19 12:57,"313 Center St, Los Angeles, CA 90001" +248773,AA Batteries (4-pack),1,3.84,08/20/19 12:41,"780 Highland St, San Francisco, CA 94016" +248774,AA Batteries (4-pack),1,3.84,08/14/19 13:15,"525 Sunset St, Los Angeles, CA 90001" +248775,USB-C Charging Cable,1,11.95,08/28/19 11:15,"286 Cedar St, Seattle, WA 98101" +248776,Google Phone,1,600,08/25/19 14:29,"188 Lincoln St, Atlanta, GA 30301" +248777,Wired Headphones,1,11.99,08/22/19 01:02,"874 Adams St, Portland, OR 97035" +248778,Lightning Charging Cable,1,14.95,08/28/19 18:51,"59 Park St, New York City, NY 10001" +248779,LG Washing Machine,1,600.0,08/14/19 20:45,"55 Park St, New York City, NY 10001" +248780,AAA Batteries (4-pack),1,2.99,08/11/19 08:24,"326 14th St, San Francisco, CA 94016" +248781,27in 4K Gaming Monitor,1,389.99,08/07/19 16:16,"398 South St, New York City, NY 10001" +248782,AAA Batteries (4-pack),3,2.99,08/28/19 16:10,"200 2nd St, Boston, MA 02215" +248783,iPhone,1,700,08/19/19 12:07,"515 Ridge St, Dallas, TX 75001" +248784,27in FHD Monitor,1,149.99,08/26/19 22:06,"190 Maple St, New York City, NY 10001" +248785,Lightning Charging Cable,1,14.95,08/02/19 21:01,"397 Sunset St, New York City, NY 10001" +248786,USB-C Charging Cable,1,11.95,08/21/19 13:35,"433 Johnson St, San Francisco, CA 94016" +248787,Vareebadd Phone,1,400,08/03/19 11:17,"869 12th St, New York City, NY 10001" +248787,USB-C Charging Cable,1,11.95,08/03/19 11:17,"869 12th St, New York City, NY 10001" +248788,Apple Airpods Headphones,1,150,08/21/19 16:49,"24 Walnut St, San Francisco, CA 94016" +248789,AA Batteries (4-pack),2,3.84,08/26/19 08:26,"988 Maple St, Portland, OR 97035" +248790,AAA Batteries (4-pack),1,2.99,08/24/19 16:28,"993 Washington St, Los Angeles, CA 90001" +248791,AAA Batteries (4-pack),2,2.99,08/16/19 17:59,"413 Willow St, Los Angeles, CA 90001" +248792,ThinkPad Laptop,1,999.99,08/25/19 14:37,"213 Adams St, San Francisco, CA 94016" +248793,Bose SoundSport Headphones,1,99.99,08/05/19 13:26,"803 Jefferson St, New York City, NY 10001" +248794,Bose SoundSport Headphones,1,99.99,08/22/19 17:36,"879 13th St, Atlanta, GA 30301" +248795,AA Batteries (4-pack),1,3.84,08/11/19 20:23,"337 14th St, San Francisco, CA 94016" +248796,USB-C Charging Cable,1,11.95,08/09/19 12:32,"827 Meadow St, San Francisco, CA 94016" +248797,iPhone,1,700,08/05/19 17:52,"225 7th St, Atlanta, GA 30301" +248798,20in Monitor,1,109.99,08/03/19 18:35,"615 Cedar St, Atlanta, GA 30301" +248799,27in 4K Gaming Monitor,1,389.99,08/05/19 11:47,"226 Main St, New York City, NY 10001" +248800,iPhone,1,700,08/05/19 11:21,"324 Church St, Boston, MA 02215" +248801,27in FHD Monitor,1,149.99,08/15/19 05:29,"891 Jackson St, Atlanta, GA 30301" +248802,AA Batteries (4-pack),1,3.84,08/14/19 08:21,"804 1st St, Atlanta, GA 30301" +248803,Wired Headphones,1,11.99,08/29/19 21:39,"99 Maple St, Boston, MA 02215" +248804,34in Ultrawide Monitor,1,379.99,08/21/19 20:40,"638 Jackson St, Los Angeles, CA 90001" +248805,AAA Batteries (4-pack),1,2.99,08/22/19 14:31,"143 Meadow St, Atlanta, GA 30301" +248806,USB-C Charging Cable,1,11.95,08/20/19 10:26,"962 12th St, Portland, ME 04101" +248807,Wired Headphones,1,11.99,08/29/19 14:22,"224 Highland St, New York City, NY 10001" +248808,AA Batteries (4-pack),2,3.84,08/08/19 20:48,"469 Lake St, Los Angeles, CA 90001" +248809,iPhone,1,700,08/24/19 19:48,"757 Forest St, Atlanta, GA 30301" +248810,Apple Airpods Headphones,1,150,08/07/19 08:26,"397 12th St, Los Angeles, CA 90001" +248811,AA Batteries (4-pack),1,3.84,08/03/19 17:53,"428 Highland St, Seattle, WA 98101" +248812,USB-C Charging Cable,1,11.95,08/05/19 13:14,"217 Wilson St, New York City, NY 10001" +248813,Wired Headphones,1,11.99,08/17/19 21:46,"603 5th St, Seattle, WA 98101" +248814,Apple Airpods Headphones,1,150,08/23/19 00:55,"78 Ridge St, San Francisco, CA 94016" +248815,AA Batteries (4-pack),1,3.84,08/17/19 18:45,"177 Cherry St, Los Angeles, CA 90001" +248816,AA Batteries (4-pack),1,3.84,08/24/19 18:12,"42 Jefferson St, New York City, NY 10001" +248817,AAA Batteries (4-pack),4,2.99,08/21/19 11:28,"195 Church St, Atlanta, GA 30301" +248818,USB-C Charging Cable,1,11.95,08/19/19 22:20,"771 Forest St, San Francisco, CA 94016" +248819,Wired Headphones,1,11.99,08/21/19 10:13,"505 4th St, Austin, TX 73301" +248820,34in Ultrawide Monitor,1,379.99,08/11/19 19:15,"592 Main St, Seattle, WA 98101" +248821,Flatscreen TV,1,300,08/31/19 15:57,"785 Adams St, Los Angeles, CA 90001" +248822,27in FHD Monitor,1,149.99,08/06/19 08:05,"378 Dogwood St, Atlanta, GA 30301" +248823,Macbook Pro Laptop,1,1700,08/23/19 10:59,"663 Center St, Portland, OR 97035" +248824,27in FHD Monitor,1,149.99,08/17/19 15:33,"135 13th St, San Francisco, CA 94016" +248825,AAA Batteries (4-pack),1,2.99,08/16/19 20:44,"787 Pine St, San Francisco, CA 94016" +248826,AAA Batteries (4-pack),1,2.99,08/10/19 22:20,"367 Lake St, Seattle, WA 98101" +248827,USB-C Charging Cable,1,11.95,08/08/19 10:30,"976 Meadow St, Seattle, WA 98101" +248828,27in FHD Monitor,1,149.99,08/23/19 19:44,"428 North St, Dallas, TX 75001" +248829,AAA Batteries (4-pack),2,2.99,08/13/19 12:27,"596 Johnson St, Portland, OR 97035" +248830,Wired Headphones,1,11.99,08/27/19 09:42,"951 12th St, San Francisco, CA 94016" +248831,Lightning Charging Cable,1,14.95,08/26/19 17:46,"454 Main St, New York City, NY 10001" +248832,Apple Airpods Headphones,1,150,08/10/19 16:12,"906 Meadow St, San Francisco, CA 94016" +248833,USB-C Charging Cable,2,11.95,08/24/19 23:55,"928 Center St, Los Angeles, CA 90001" +248834,AAA Batteries (4-pack),1,2.99,08/18/19 19:23,"524 Jefferson St, Seattle, WA 98101" +248835,Google Phone,1,600,08/13/19 21:24,"551 Pine St, Portland, OR 97035" +248836,27in 4K Gaming Monitor,1,389.99,08/17/19 10:32,"145 Maple St, Los Angeles, CA 90001" +248836,27in 4K Gaming Monitor,1,389.99,08/17/19 10:32,"145 Maple St, Los Angeles, CA 90001" +248837,Google Phone,1,600,08/14/19 12:42,"690 8th St, Boston, MA 02215" +248837,USB-C Charging Cable,2,11.95,08/14/19 12:42,"690 8th St, Boston, MA 02215" +248838,Lightning Charging Cable,1,14.95,08/12/19 16:57,"300 Lincoln St, Atlanta, GA 30301" +248839,27in 4K Gaming Monitor,1,389.99,08/20/19 14:29,"669 Wilson St, New York City, NY 10001" +248840,USB-C Charging Cable,2,11.95,08/10/19 15:31,"552 Willow St, Los Angeles, CA 90001" +248841,ThinkPad Laptop,1,999.99,08/06/19 17:40,"593 Sunset St, Dallas, TX 75001" +248842,Flatscreen TV,1,300,08/25/19 23:36,"43 4th St, Dallas, TX 75001" +248843,27in FHD Monitor,1,149.99,08/07/19 14:53,"254 11th St, San Francisco, CA 94016" +248844,AA Batteries (4-pack),4,3.84,08/29/19 17:55,"458 Center St, Atlanta, GA 30301" +248845,ThinkPad Laptop,1,999.99,08/20/19 10:51,"71 6th St, Dallas, TX 75001" +248846,Bose SoundSport Headphones,1,99.99,08/10/19 19:42,"570 Ridge St, Los Angeles, CA 90001" +248847,34in Ultrawide Monitor,1,379.99,08/15/19 17:22,"473 Lake St, New York City, NY 10001" +248848,AAA Batteries (4-pack),1,2.99,08/22/19 10:16,"188 Madison St, San Francisco, CA 94016" +248849,27in 4K Gaming Monitor,1,389.99,08/02/19 11:46,"415 13th St, New York City, NY 10001" +248850,Bose SoundSport Headphones,1,99.99,08/27/19 18:43,"968 Cedar St, New York City, NY 10001" +248851,27in 4K Gaming Monitor,1,389.99,08/10/19 11:26,"503 14th St, Boston, MA 02215" +248852,iPhone,1,700,08/26/19 13:44,"828 Wilson St, Austin, TX 73301" +248853,Lightning Charging Cable,1,14.95,08/31/19 18:00,"47 13th St, Atlanta, GA 30301" +248854,AA Batteries (4-pack),1,3.84,08/31/19 08:45,"430 Wilson St, San Francisco, CA 94016" +248855,AAA Batteries (4-pack),1,2.99,08/31/19 06:41,"29 Wilson St, Dallas, TX 75001" +248856,AA Batteries (4-pack),1,3.84,08/30/19 08:14,"587 Lake St, New York City, NY 10001" +248857,AAA Batteries (4-pack),1,2.99,08/29/19 16:31,"812 West St, Seattle, WA 98101" +248858,AA Batteries (4-pack),2,3.84,08/29/19 13:43,"711 Park St, Portland, OR 97035" +248859,Apple Airpods Headphones,1,150,08/31/19 00:34,"531 Wilson St, Dallas, TX 75001" +248860,AAA Batteries (4-pack),1,2.99,08/04/19 13:08,"309 9th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +248861,USB-C Charging Cable,1,11.95,08/20/19 14:41,"28 Sunset St, Seattle, WA 98101" +248862,Bose SoundSport Headphones,1,99.99,08/19/19 12:10,"531 Walnut St, San Francisco, CA 94016" +248863,Apple Airpods Headphones,1,150,08/13/19 06:02,"68 Ridge St, San Francisco, CA 94016" +248864,Lightning Charging Cable,1,14.95,08/20/19 23:22,"242 Maple St, San Francisco, CA 94016" +248865,AA Batteries (4-pack),2,3.84,08/12/19 17:37,"872 Jefferson St, Los Angeles, CA 90001" +248866,Lightning Charging Cable,1,14.95,08/18/19 14:48,"865 Church St, Austin, TX 73301" +248867,Apple Airpods Headphones,1,150,08/29/19 16:03,"749 Forest St, Boston, MA 02215" +248868,34in Ultrawide Monitor,1,379.99,08/22/19 20:57,"327 Willow St, Atlanta, GA 30301" +248869,AA Batteries (4-pack),1,3.84,08/07/19 07:11,"125 Cherry St, Boston, MA 02215" +248870,Bose SoundSport Headphones,1,99.99,08/15/19 15:22,"75 Walnut St, Dallas, TX 75001" +248871,AAA Batteries (4-pack),1,2.99,08/29/19 13:13,"926 West St, Los Angeles, CA 90001" +248872,Flatscreen TV,1,300,08/15/19 23:20,"802 9th St, Boston, MA 02215" +248873,Lightning Charging Cable,1,14.95,08/19/19 13:49,"874 14th St, Boston, MA 02215" +248874,Wired Headphones,1,11.99,08/27/19 15:42,"309 Highland St, New York City, NY 10001" +248875,USB-C Charging Cable,1,11.95,08/20/19 04:22,"944 Chestnut St, Los Angeles, CA 90001" +248876,AAA Batteries (4-pack),1,2.99,08/12/19 12:13,"97 Church St, New York City, NY 10001" +248877,AAA Batteries (4-pack),3,2.99,08/11/19 22:31,"885 West St, New York City, NY 10001" +248878,Wired Headphones,1,11.99,08/20/19 08:22,"939 Lincoln St, Los Angeles, CA 90001" +248879,AAA Batteries (4-pack),1,2.99,08/23/19 00:06,"640 Lake St, San Francisco, CA 94016" +248880,USB-C Charging Cable,1,11.95,08/13/19 10:12,"437 Meadow St, Los Angeles, CA 90001" +248881,Wired Headphones,1,11.99,08/15/19 12:07,"841 7th St, Los Angeles, CA 90001" +248882,ThinkPad Laptop,1,999.99,08/03/19 11:05,"769 Jackson St, Dallas, TX 75001" +248883,27in 4K Gaming Monitor,1,389.99,08/27/19 07:17,"419 Jackson St, Seattle, WA 98101" +248884,Wired Headphones,1,11.99,08/10/19 11:57,"736 Cedar St, Los Angeles, CA 90001" +248885,Wired Headphones,1,11.99,08/29/19 00:49,"8 11th St, Portland, OR 97035" +248886,Apple Airpods Headphones,1,150,08/20/19 08:11,"480 Forest St, Los Angeles, CA 90001" +248887,AA Batteries (4-pack),3,3.84,08/01/19 22:34,"165 Madison St, Boston, MA 02215" +248888,AAA Batteries (4-pack),2,2.99,08/15/19 17:34,"530 North St, San Francisco, CA 94016" +248889,USB-C Charging Cable,1,11.95,08/08/19 10:47,"50 Willow St, Atlanta, GA 30301" +248890,Google Phone,1,600,08/18/19 12:09,"70 Park St, Austin, TX 73301" +248890,USB-C Charging Cable,1,11.95,08/18/19 12:09,"70 Park St, Austin, TX 73301" +248891,AA Batteries (4-pack),1,3.84,08/30/19 00:22,"988 7th St, New York City, NY 10001" +248892,Apple Airpods Headphones,1,150,08/05/19 13:40,"573 14th St, San Francisco, CA 94016" +248892,USB-C Charging Cable,1,11.95,08/05/19 13:40,"573 14th St, San Francisco, CA 94016" +248893,Wired Headphones,1,11.99,08/14/19 10:53,"265 Johnson St, Austin, TX 73301" +248894,Apple Airpods Headphones,1,150,08/28/19 00:22,"776 Lake St, San Francisco, CA 94016" +248895,Bose SoundSport Headphones,1,99.99,08/11/19 09:48,"322 Center St, Atlanta, GA 30301" +248896,27in FHD Monitor,1,149.99,08/28/19 12:38,"899 Wilson St, New York City, NY 10001" +248897,27in FHD Monitor,1,149.99,08/05/19 17:37,"327 Maple St, San Francisco, CA 94016" +248898,AA Batteries (4-pack),1,3.84,08/07/19 08:55,"690 11th St, Seattle, WA 98101" +248899,Bose SoundSport Headphones,1,99.99,08/26/19 22:32,"163 Main St, New York City, NY 10001" +248900,Wired Headphones,1,11.99,08/11/19 01:07,"333 North St, New York City, NY 10001" +248901,Wired Headphones,1,11.99,08/02/19 03:35,"600 13th St, San Francisco, CA 94016" +248902,Bose SoundSport Headphones,1,99.99,08/05/19 22:54,"186 Maple St, New York City, NY 10001" +248903,Wired Headphones,1,11.99,08/26/19 21:30,"428 Park St, Austin, TX 73301" +248903,Lightning Charging Cable,1,14.95,08/26/19 21:30,"428 Park St, Austin, TX 73301" +248904,Apple Airpods Headphones,1,150,08/04/19 21:51,"232 Jefferson St, Atlanta, GA 30301" +248905,Macbook Pro Laptop,1,1700,08/19/19 18:19,"952 11th St, New York City, NY 10001" +248906,USB-C Charging Cable,1,11.95,08/31/19 09:29,"673 12th St, Portland, OR 97035" +248907,LG Washing Machine,1,600.0,08/09/19 14:42,"819 Forest St, New York City, NY 10001" +248908,iPhone,1,700,08/31/19 11:43,"542 9th St, Seattle, WA 98101" +248909,iPhone,1,700,08/02/19 22:36,"886 Hill St, Los Angeles, CA 90001" +248910,Google Phone,1,600,08/17/19 20:32,"491 Spruce St, Los Angeles, CA 90001" +248911,AA Batteries (4-pack),2,3.84,08/30/19 12:22,"860 Johnson St, Austin, TX 73301" +248912,AA Batteries (4-pack),3,3.84,08/10/19 16:41,"182 Main St, Portland, OR 97035" +248913,Apple Airpods Headphones,1,150,08/21/19 21:07,"686 Adams St, Seattle, WA 98101" +248914,USB-C Charging Cable,1,11.95,08/11/19 21:32,"318 Madison St, Seattle, WA 98101" +248915,27in 4K Gaming Monitor,1,389.99,08/26/19 13:23,"646 Forest St, New York City, NY 10001" +248916,34in Ultrawide Monitor,1,379.99,08/08/19 14:27,"564 7th St, Atlanta, GA 30301" +248917,Lightning Charging Cable,1,14.95,08/24/19 10:25,"287 Dogwood St, Los Angeles, CA 90001" +248918,USB-C Charging Cable,1,11.95,08/16/19 17:24,"520 Jefferson St, New York City, NY 10001" +248919,Lightning Charging Cable,1,14.95,08/31/19 18:57,"148 Center St, Los Angeles, CA 90001" +248920,Lightning Charging Cable,1,14.95,08/03/19 19:31,"968 Lincoln St, Los Angeles, CA 90001" +248921,AAA Batteries (4-pack),2,2.99,08/16/19 12:59,"941 Dogwood St, Los Angeles, CA 90001" +248922,LG Washing Machine,1,600.0,08/01/19 09:44,"203 Highland St, San Francisco, CA 94016" +248923,34in Ultrawide Monitor,1,379.99,08/23/19 17:55,"573 Jackson St, Seattle, WA 98101" +248924,USB-C Charging Cable,1,11.95,08/01/19 18:51,"250 Park St, San Francisco, CA 94016" +248925,Wired Headphones,1,11.99,08/24/19 09:41,"862 Jackson St, San Francisco, CA 94016" +248926,Macbook Pro Laptop,1,1700,08/09/19 09:27,"164 Center St, San Francisco, CA 94016" +248927,27in 4K Gaming Monitor,1,389.99,08/13/19 14:33,"926 Dogwood St, San Francisco, CA 94016" +248928,AA Batteries (4-pack),1,3.84,08/05/19 11:50,"73 Madison St, Austin, TX 73301" +248929,27in FHD Monitor,1,149.99,08/30/19 14:36,"563 Cedar St, Portland, ME 04101" +248930,Lightning Charging Cable,1,14.95,08/12/19 09:17,"37 Cedar St, San Francisco, CA 94016" +248931,AA Batteries (4-pack),1,3.84,08/02/19 13:57,"843 River St, Austin, TX 73301" +248932,USB-C Charging Cable,1,11.95,08/31/19 23:19,"863 South St, San Francisco, CA 94016" +248933,Lightning Charging Cable,1,14.95,08/08/19 09:42,"196 4th St, Austin, TX 73301" +248934,Apple Airpods Headphones,1,150,08/22/19 12:12,"217 West St, Portland, OR 97035" +248935,34in Ultrawide Monitor,1,379.99,08/23/19 23:44,"568 Sunset St, New York City, NY 10001" +248936,Bose SoundSport Headphones,1,99.99,08/06/19 21:13,"681 Chestnut St, Boston, MA 02215" +248937,Apple Airpods Headphones,1,150,08/27/19 18:25,"785 Hickory St, Los Angeles, CA 90001" +248938,iPhone,1,700,08/13/19 18:04,"715 Sunset St, New York City, NY 10001" +248938,Lightning Charging Cable,2,14.95,08/13/19 18:04,"715 Sunset St, New York City, NY 10001" +248939,AAA Batteries (4-pack),1,2.99,08/28/19 12:16,"33 Cherry St, San Francisco, CA 94016" +248940,27in 4K Gaming Monitor,1,389.99,08/08/19 16:03,"143 Cedar St, Austin, TX 73301" +248941,AA Batteries (4-pack),1,3.84,08/15/19 21:41,"378 Elm St, Dallas, TX 75001" +248942,Google Phone,1,600,08/23/19 18:36,"267 Elm St, Los Angeles, CA 90001" +248943,Apple Airpods Headphones,1,150,08/13/19 16:33,"404 Adams St, Los Angeles, CA 90001" +248944,AAA Batteries (4-pack),9,2.99,08/05/19 11:01,"31 9th St, Portland, OR 97035" +248945,27in 4K Gaming Monitor,1,389.99,08/21/19 14:47,"559 Lake St, San Francisco, CA 94016" +248946,Vareebadd Phone,1,400,08/03/19 07:03,"370 Hickory St, Los Angeles, CA 90001" +248947,AA Batteries (4-pack),1,3.84,08/17/19 16:56,"130 Forest St, Seattle, WA 98101" +248948,Apple Airpods Headphones,1,150,08/08/19 16:44,"492 Church St, San Francisco, CA 94016" +248949,USB-C Charging Cable,1,11.95,08/13/19 16:03,"573 Dogwood St, San Francisco, CA 94016" +248950,27in FHD Monitor,1,149.99,08/08/19 10:23,"721 North St, San Francisco, CA 94016" +248951,AAA Batteries (4-pack),1,2.99,08/02/19 12:51,"631 Johnson St, Portland, OR 97035" +248952,ThinkPad Laptop,1,999.99,08/16/19 10:54,"289 Chestnut St, Seattle, WA 98101" +248953,Google Phone,1,600,08/13/19 00:14,"754 Hickory St, Seattle, WA 98101" +248954,AA Batteries (4-pack),1,3.84,08/12/19 11:49,"742 Cherry St, Austin, TX 73301" +248955,Flatscreen TV,1,300,08/14/19 18:16,"597 12th St, Portland, OR 97035" +248956,Flatscreen TV,1,300,08/15/19 21:17,"521 1st St, San Francisco, CA 94016" +248957,AA Batteries (4-pack),1,3.84,08/15/19 13:20,"797 Lakeview St, San Francisco, CA 94016" +248958,AAA Batteries (4-pack),2,2.99,08/03/19 02:12,"527 Johnson St, Dallas, TX 75001" +248959,27in FHD Monitor,1,149.99,08/05/19 11:08,"823 Hickory St, San Francisco, CA 94016" +248960,Lightning Charging Cable,1,14.95,08/24/19 11:28,"812 Adams St, San Francisco, CA 94016" +248961,AAA Batteries (4-pack),1,2.99,08/02/19 11:20,"546 Meadow St, Boston, MA 02215" +248962,Apple Airpods Headphones,1,150,08/30/19 19:27,"11 Dogwood St, Los Angeles, CA 90001" +248963,Lightning Charging Cable,1,14.95,08/02/19 11:57,"627 North St, Boston, MA 02215" +248964,AA Batteries (4-pack),1,3.84,08/12/19 10:56,"533 South St, Boston, MA 02215" +248965,27in 4K Gaming Monitor,1,389.99,08/07/19 07:37,"219 Jackson St, Los Angeles, CA 90001" +248966,Lightning Charging Cable,1,14.95,08/06/19 09:54,"487 7th St, San Francisco, CA 94016" +248967,Wired Headphones,1,11.99,08/09/19 19:55,"300 Cherry St, Portland, ME 04101" +248968,Wired Headphones,1,11.99,08/24/19 19:47,"986 Hickory St, Los Angeles, CA 90001" +248969,34in Ultrawide Monitor,1,379.99,08/21/19 22:14,"754 Johnson St, Los Angeles, CA 90001" +248970,Apple Airpods Headphones,1,150,08/22/19 14:52,"914 Park St, New York City, NY 10001" +248971,27in FHD Monitor,1,149.99,08/27/19 19:48,"285 2nd St, Los Angeles, CA 90001" +248972,Wired Headphones,1,11.99,08/03/19 11:36,"492 Adams St, Austin, TX 73301" +248973,Lightning Charging Cable,1,14.95,08/08/19 21:20,"406 Lakeview St, Seattle, WA 98101" +248974,USB-C Charging Cable,1,11.95,08/18/19 22:09,"483 Main St, Boston, MA 02215" +248974,Lightning Charging Cable,1,14.95,08/18/19 22:09,"483 Main St, Boston, MA 02215" +248975,Wired Headphones,2,11.99,08/01/19 18:42,"452 Ridge St, San Francisco, CA 94016" +248976,AAA Batteries (4-pack),2,2.99,08/20/19 08:30,"494 Park St, Los Angeles, CA 90001" +248977,AAA Batteries (4-pack),1,2.99,08/19/19 15:19,"170 Sunset St, San Francisco, CA 94016" +248978,Lightning Charging Cable,1,14.95,08/20/19 00:31,"561 Pine St, San Francisco, CA 94016" +248979,Apple Airpods Headphones,1,150,08/28/19 16:09,"170 Cedar St, San Francisco, CA 94016" +248980,AAA Batteries (4-pack),2,2.99,08/21/19 09:04,"954 Main St, San Francisco, CA 94016" +248981,USB-C Charging Cable,1,11.95,08/25/19 15:49,"988 Hickory St, Atlanta, GA 30301" +248982,USB-C Charging Cable,1,11.95,08/06/19 19:43,"453 Lincoln St, San Francisco, CA 94016" +248983,AA Batteries (4-pack),2,3.84,08/02/19 17:58,"919 12th St, Los Angeles, CA 90001" +248984,AAA Batteries (4-pack),2,2.99,08/29/19 22:35,"74 Washington St, Seattle, WA 98101" +248985,AAA Batteries (4-pack),3,2.99,08/23/19 13:20,"539 Wilson St, San Francisco, CA 94016" +248986,Bose SoundSport Headphones,1,99.99,08/13/19 09:01,"976 Dogwood St, Seattle, WA 98101" +248987,Google Phone,1,600,08/31/19 16:20,"555 Hill St, Boston, MA 02215" +248987,Wired Headphones,1,11.99,08/31/19 16:20,"555 Hill St, Boston, MA 02215" +248988,iPhone,1,700,08/07/19 09:38,"917 9th St, San Francisco, CA 94016" +248989,34in Ultrawide Monitor,1,379.99,08/26/19 18:13,"397 2nd St, San Francisco, CA 94016" +248990,AA Batteries (4-pack),2,3.84,08/06/19 03:32,"751 10th St, San Francisco, CA 94016" +248991,ThinkPad Laptop,1,999.99,08/13/19 12:27,"638 Johnson St, Boston, MA 02215" +248992,USB-C Charging Cable,1,11.95,08/22/19 22:51,"485 Maple St, Los Angeles, CA 90001" +248993,27in FHD Monitor,1,149.99,08/12/19 17:11,"978 Church St, Dallas, TX 75001" +248994,AA Batteries (4-pack),2,3.84,08/17/19 18:36,"566 Elm St, New York City, NY 10001" +248995,Lightning Charging Cable,2,14.95,08/17/19 16:06,"96 North St, Portland, OR 97035" +248996,34in Ultrawide Monitor,1,379.99,08/02/19 18:05,"345 Hickory St, Los Angeles, CA 90001" +248997,27in FHD Monitor,1,149.99,08/11/19 19:28,"200 Sunset St, Los Angeles, CA 90001" +248998,Bose SoundSport Headphones,1,99.99,08/07/19 13:24,"556 Highland St, Portland, OR 97035" +248999,iPhone,1,700,08/06/19 22:03,"709 9th St, Seattle, WA 98101" +248999,Lightning Charging Cable,1,14.95,08/06/19 22:03,"709 9th St, Seattle, WA 98101" +249000,Apple Airpods Headphones,1,150,08/21/19 12:08,"514 Meadow St, Austin, TX 73301" +249001,27in FHD Monitor,1,149.99,08/30/19 20:30,"519 River St, San Francisco, CA 94016" +249002,USB-C Charging Cable,1,11.95,08/25/19 17:47,"548 Forest St, Boston, MA 02215" +249003,iPhone,1,700,08/15/19 00:33,"741 Spruce St, Boston, MA 02215" +249003,Lightning Charging Cable,1,14.95,08/15/19 00:33,"741 Spruce St, Boston, MA 02215" +249004,20in Monitor,1,109.99,08/30/19 22:27,"593 Main St, Atlanta, GA 30301" +249005,Flatscreen TV,1,300,08/28/19 09:55,"369 Adams St, Seattle, WA 98101" +249006,Flatscreen TV,1,300,08/11/19 17:34,"647 Ridge St, Boston, MA 02215" +249007,Apple Airpods Headphones,1,150,08/14/19 18:09,"507 Spruce St, Austin, TX 73301" +249008,Apple Airpods Headphones,1,150,08/19/19 18:21,"207 7th St, Austin, TX 73301" +249009,27in 4K Gaming Monitor,1,389.99,08/25/19 06:44,"503 North St, Boston, MA 02215" +249010,AAA Batteries (4-pack),1,2.99,08/07/19 13:46,"663 Lake St, San Francisco, CA 94016" +249011,Bose SoundSport Headphones,1,99.99,08/22/19 09:17,"424 6th St, Atlanta, GA 30301" +249012,Flatscreen TV,1,300,08/15/19 16:05,"841 1st St, San Francisco, CA 94016" +249013,Lightning Charging Cable,1,14.95,08/13/19 20:12,"326 Wilson St, San Francisco, CA 94016" +249014,AAA Batteries (4-pack),4,2.99,08/05/19 11:54,"83 6th St, Dallas, TX 75001" +249015,AAA Batteries (4-pack),1,2.99,08/08/19 12:38,"445 Center St, Boston, MA 02215" +249016,Lightning Charging Cable,1,14.95,08/06/19 17:05,"248 Willow St, San Francisco, CA 94016" +249017,Wired Headphones,1,11.99,08/01/19 17:04,"323 2nd St, Los Angeles, CA 90001" +249018,AAA Batteries (4-pack),1,2.99,08/11/19 15:46,"924 Forest St, Boston, MA 02215" +249018,Wired Headphones,1,11.99,08/11/19 15:46,"924 Forest St, Boston, MA 02215" +249019,20in Monitor,1,109.99,08/08/19 12:08,"144 Lakeview St, San Francisco, CA 94016" +249020,AAA Batteries (4-pack),4,2.99,08/01/19 18:19,"396 Forest St, Dallas, TX 75001" +249021,ThinkPad Laptop,1,999.99,08/14/19 15:37,"574 Lake St, Seattle, WA 98101" +249022,Lightning Charging Cable,3,14.95,08/29/19 11:33,"504 Elm St, Boston, MA 02215" +249023,iPhone,1,700,08/10/19 11:26,"693 Jefferson St, San Francisco, CA 94016" +249024,20in Monitor,1,109.99,08/26/19 14:39,"786 Church St, Boston, MA 02215" +249025,Wired Headphones,1,11.99,08/05/19 10:59,"597 Johnson St, Los Angeles, CA 90001" +249026,Lightning Charging Cable,1,14.95,08/08/19 20:31,"438 Lincoln St, Portland, OR 97035" +249027,Lightning Charging Cable,1,14.95,08/04/19 19:17,"74 Jefferson St, Dallas, TX 75001" +249028,20in Monitor,1,109.99,08/10/19 14:49,"362 North St, San Francisco, CA 94016" +249029,USB-C Charging Cable,1,11.95,08/02/19 23:51,"470 Dogwood St, New York City, NY 10001" +249030,ThinkPad Laptop,1,999.99,08/10/19 19:36,"700 Washington St, Portland, OR 97035" +249031,USB-C Charging Cable,1,11.95,08/13/19 15:32,"534 Highland St, San Francisco, CA 94016" +249032,iPhone,1,700,08/30/19 12:48,"918 Hill St, Dallas, TX 75001" +249033,AAA Batteries (4-pack),2,2.99,08/06/19 13:17,"28 Dogwood St, San Francisco, CA 94016" +249034,AAA Batteries (4-pack),1,2.99,08/09/19 09:08,"610 Chestnut St, Austin, TX 73301" +249035,AA Batteries (4-pack),1,3.84,08/26/19 11:10,"919 Cedar St, Seattle, WA 98101" +249036,Wired Headphones,1,11.99,08/30/19 20:51,"225 West St, Los Angeles, CA 90001" +249037,Wired Headphones,2,11.99,08/25/19 12:25,"278 Hill St, Austin, TX 73301" +249038,AA Batteries (4-pack),2,3.84,08/18/19 09:03,"822 7th St, Boston, MA 02215" +249039,AAA Batteries (4-pack),3,2.99,08/05/19 07:44,"356 Lake St, Seattle, WA 98101" +249040,Lightning Charging Cable,1,14.95,08/09/19 19:22,"234 Hickory St, Austin, TX 73301" +249041,USB-C Charging Cable,1,11.95,08/23/19 08:10,"971 Dogwood St, Seattle, WA 98101" +249042,Wired Headphones,1,11.99,08/04/19 18:02,"823 Jackson St, Dallas, TX 75001" +249043,Lightning Charging Cable,1,14.95,08/15/19 09:01,"586 Jefferson St, Dallas, TX 75001" +249044,USB-C Charging Cable,1,11.95,08/20/19 19:39,"820 North St, Boston, MA 02215" +249045,AA Batteries (4-pack),1,3.84,08/18/19 23:35,"549 Chestnut St, Los Angeles, CA 90001" +249046,Apple Airpods Headphones,1,150,08/31/19 08:13,"336 West St, Seattle, WA 98101" +249047,Wired Headphones,1,11.99,08/09/19 13:53,"891 Church St, Seattle, WA 98101" +249048,Wired Headphones,2,11.99,08/21/19 19:01,"628 11th St, Los Angeles, CA 90001" +249049,Wired Headphones,1,11.99,08/07/19 12:02,"714 6th St, Seattle, WA 98101" +249050,34in Ultrawide Monitor,1,379.99,08/06/19 16:38,"533 2nd St, San Francisco, CA 94016" +249051,USB-C Charging Cable,1,11.95,08/15/19 16:40,"17 Lincoln St, Atlanta, GA 30301" +249052,Apple Airpods Headphones,1,150,08/30/19 23:41,"197 North St, San Francisco, CA 94016" +249053,AA Batteries (4-pack),3,3.84,08/09/19 20:37,"500 Center St, Atlanta, GA 30301" +249054,Flatscreen TV,1,300,08/15/19 21:44,"131 Main St, San Francisco, CA 94016" +249055,iPhone,1,700,08/29/19 13:22,"413 Main St, Dallas, TX 75001" +249056,20in Monitor,1,109.99,08/12/19 19:50,"505 2nd St, Los Angeles, CA 90001" +249057,Google Phone,1,600,08/10/19 16:32,"90 Jackson St, New York City, NY 10001" +249057,USB-C Charging Cable,1,11.95,08/10/19 16:32,"90 Jackson St, New York City, NY 10001" +249058,Macbook Pro Laptop,1,1700,08/07/19 18:14,"729 Hill St, Boston, MA 02215" +249059,AA Batteries (4-pack),1,3.84,08/25/19 19:50,"972 Lincoln St, San Francisco, CA 94016" +249060,Lightning Charging Cable,1,14.95,08/19/19 17:43,"596 11th St, Los Angeles, CA 90001" +249061,Flatscreen TV,1,300,08/12/19 21:59,"837 Hickory St, San Francisco, CA 94016" +249062,Bose SoundSport Headphones,1,99.99,08/01/19 21:32,"815 Lakeview St, Los Angeles, CA 90001" +249063,AA Batteries (4-pack),1,3.84,08/10/19 12:42,"99 Jefferson St, Atlanta, GA 30301" +249064,Vareebadd Phone,1,400,08/24/19 07:57,"368 14th St, New York City, NY 10001" +249064,USB-C Charging Cable,1,11.95,08/24/19 07:57,"368 14th St, New York City, NY 10001" +249065,Wired Headphones,1,11.99,08/17/19 20:29,"307 Ridge St, New York City, NY 10001" +249066,Wired Headphones,1,11.99,08/10/19 18:46,"71 12th St, Los Angeles, CA 90001" +249067,AA Batteries (4-pack),1,3.84,08/06/19 02:16,"230 Park St, New York City, NY 10001" +249068,USB-C Charging Cable,1,11.95,08/26/19 20:03,"140 5th St, San Francisco, CA 94016" +249069,Bose SoundSport Headphones,1,99.99,08/14/19 19:47,"802 Hickory St, San Francisco, CA 94016" +249070,LG Washing Machine,1,600.0,08/28/19 09:08,"458 Madison St, Boston, MA 02215" +249071,Lightning Charging Cable,1,14.95,08/20/19 14:34,"461 6th St, New York City, NY 10001" +249072,Lightning Charging Cable,1,14.95,08/12/19 16:36,"420 Jackson St, San Francisco, CA 94016" +249073,27in 4K Gaming Monitor,1,389.99,08/14/19 21:03,"728 Adams St, Los Angeles, CA 90001" +249074,Lightning Charging Cable,1,14.95,08/28/19 11:52,"571 Pine St, New York City, NY 10001" +249075,34in Ultrawide Monitor,1,379.99,08/14/19 12:44,"97 Park St, San Francisco, CA 94016" +249076,AA Batteries (4-pack),1,3.84,08/30/19 23:01,"440 10th St, Portland, OR 97035" +249077,Macbook Pro Laptop,1,1700,08/18/19 21:14,"968 6th St, New York City, NY 10001" +249078,AA Batteries (4-pack),3,3.84,08/30/19 15:13,"650 Lincoln St, Boston, MA 02215" +249079,USB-C Charging Cable,1,11.95,08/17/19 06:24,"555 5th St, Seattle, WA 98101" +249080,Flatscreen TV,1,300,08/07/19 09:18,"892 4th St, Seattle, WA 98101" +249081,Bose SoundSport Headphones,1,99.99,08/21/19 00:05,"96 West St, Atlanta, GA 30301" +249082,ThinkPad Laptop,1,999.99,08/15/19 13:20,"980 Jefferson St, Atlanta, GA 30301" +249083,AAA Batteries (4-pack),2,2.99,08/15/19 21:35,"605 Lincoln St, New York City, NY 10001" +249084,Lightning Charging Cable,2,14.95,08/14/19 15:41,"251 9th St, San Francisco, CA 94016" +249085,Apple Airpods Headphones,1,150,08/24/19 17:02,"899 Forest St, San Francisco, CA 94016" +249086,AA Batteries (4-pack),1,3.84,08/15/19 15:39,"97 Park St, San Francisco, CA 94016" +249087,27in 4K Gaming Monitor,1,389.99,08/29/19 19:18,"951 9th St, Los Angeles, CA 90001" +249088,AA Batteries (4-pack),2,3.84,08/07/19 11:51,"343 12th St, Seattle, WA 98101" +249089,USB-C Charging Cable,1,11.95,08/15/19 08:00,"629 1st St, Atlanta, GA 30301" +249090,Bose SoundSport Headphones,1,99.99,08/05/19 16:51,"146 Cherry St, Los Angeles, CA 90001" +249091,iPhone,1,700,08/06/19 18:23,"108 Johnson St, Seattle, WA 98101" +249092,AA Batteries (4-pack),1,3.84,08/13/19 11:43,"521 River St, Los Angeles, CA 90001" +249093,AA Batteries (4-pack),1,3.84,08/02/19 21:04,"895 Lake St, Boston, MA 02215" +249094,Bose SoundSport Headphones,1,99.99,08/01/19 17:08,"809 Hill St, Atlanta, GA 30301" +249095,ThinkPad Laptop,1,999.99,08/24/19 17:39,"519 1st St, Atlanta, GA 30301" +249096,27in FHD Monitor,1,149.99,08/07/19 09:57,"161 Pine St, Los Angeles, CA 90001" +249097,AA Batteries (4-pack),1,3.84,08/29/19 11:31,"824 Hill St, Los Angeles, CA 90001" +249098,Apple Airpods Headphones,1,150,08/09/19 12:32,"432 Church St, San Francisco, CA 94016" +249099,AA Batteries (4-pack),1,3.84,08/17/19 21:00,"120 Cedar St, Austin, TX 73301" +249100,Apple Airpods Headphones,1,150,08/10/19 00:59,"97 10th St, Atlanta, GA 30301" +249101,Vareebadd Phone,1,400,08/27/19 12:35,"998 Johnson St, Los Angeles, CA 90001" +249101,USB-C Charging Cable,1,11.95,08/27/19 12:35,"998 Johnson St, Los Angeles, CA 90001" +249102,USB-C Charging Cable,1,11.95,08/22/19 11:58,"632 Lakeview St, Atlanta, GA 30301" +249103,Wired Headphones,1,11.99,08/09/19 19:55,"584 Center St, San Francisco, CA 94016" +249104,AAA Batteries (4-pack),2,2.99,08/07/19 11:53,"897 Adams St, Austin, TX 73301" +249105,34in Ultrawide Monitor,1,379.99,08/03/19 11:14,"920 West St, Boston, MA 02215" +249106,Bose SoundSport Headphones,1,99.99,08/13/19 13:28,"915 Chestnut St, Atlanta, GA 30301" +249107,AA Batteries (4-pack),1,3.84,08/13/19 19:52,"122 Dogwood St, Atlanta, GA 30301" +249108,AAA Batteries (4-pack),1,2.99,08/07/19 19:09,"180 Walnut St, New York City, NY 10001" +249109,AAA Batteries (4-pack),1,2.99,08/06/19 07:36,"764 Wilson St, Seattle, WA 98101" +249110,Wired Headphones,1,11.99,08/29/19 14:00,"955 2nd St, Boston, MA 02215" +249111,USB-C Charging Cable,1,11.95,08/08/19 11:22,"286 Maple St, San Francisco, CA 94016" +249112,Apple Airpods Headphones,1,150,08/24/19 09:14,"721 2nd St, San Francisco, CA 94016" +249113,34in Ultrawide Monitor,1,379.99,08/14/19 18:21,"164 5th St, San Francisco, CA 94016" +249114,Apple Airpods Headphones,1,150,08/18/19 12:05,"353 Lake St, New York City, NY 10001" +249115,AA Batteries (4-pack),1,3.84,08/26/19 15:53,"42 Jackson St, San Francisco, CA 94016" +249116,Lightning Charging Cable,1,14.95,08/25/19 21:18,"907 North St, New York City, NY 10001" +249117,AA Batteries (4-pack),1,3.84,08/17/19 21:36,"693 Hill St, New York City, NY 10001" +249117,Lightning Charging Cable,1,14.95,08/17/19 21:36,"693 Hill St, New York City, NY 10001" +249118,Wired Headphones,1,11.99,08/25/19 01:38,"794 11th St, Boston, MA 02215" +249119,Wired Headphones,1,11.99,08/28/19 14:10,"806 4th St, Portland, OR 97035" +249120,AA Batteries (4-pack),1,3.84,08/28/19 18:14,"186 Jefferson St, Portland, ME 04101" +249121,Wired Headphones,1,11.99,08/31/19 14:31,"184 11th St, Portland, OR 97035" +249122,Vareebadd Phone,1,400,08/29/19 19:12,"712 Meadow St, Boston, MA 02215" +249123,AAA Batteries (4-pack),1,2.99,08/28/19 07:32,"809 Wilson St, Los Angeles, CA 90001" +249124,AAA Batteries (4-pack),1,2.99,08/14/19 08:29,"738 1st St, Austin, TX 73301" +249125,Apple Airpods Headphones,1,150,08/20/19 07:54,"848 Ridge St, San Francisco, CA 94016" +249126,Apple Airpods Headphones,1,150,08/01/19 19:38,"862 Lincoln St, New York City, NY 10001" +249127,AA Batteries (4-pack),1,3.84,08/26/19 12:41,"512 Dogwood St, Los Angeles, CA 90001" +249128,34in Ultrawide Monitor,1,379.99,08/31/19 17:32,"757 Wilson St, Boston, MA 02215" +249129,Wired Headphones,1,11.99,08/07/19 11:41,"666 10th St, New York City, NY 10001" +249130,Macbook Pro Laptop,1,1700,08/17/19 21:14,"668 11th St, San Francisco, CA 94016" +249131,Apple Airpods Headphones,1,150,08/27/19 21:27,"528 North St, Los Angeles, CA 90001" +249132,Lightning Charging Cable,1,14.95,08/19/19 16:46,"338 6th St, Dallas, TX 75001" +249133,ThinkPad Laptop,1,999.99,08/01/19 12:33,"518 5th St, Portland, OR 97035" +249134,AAA Batteries (4-pack),1,2.99,08/02/19 14:13,"641 Pine St, Boston, MA 02215" +249135,iPhone,1,700,08/30/19 12:57,"291 6th St, San Francisco, CA 94016" +249135,Lightning Charging Cable,1,14.95,08/30/19 12:57,"291 6th St, San Francisco, CA 94016" +249136,AA Batteries (4-pack),2,3.84,08/08/19 23:01,"468 Walnut St, Los Angeles, CA 90001" +249137,Flatscreen TV,1,300,08/05/19 14:38,"804 Lincoln St, Boston, MA 02215" +249138,iPhone,1,700,08/02/19 06:53,"503 Cherry St, San Francisco, CA 94016" +249139,Macbook Pro Laptop,1,1700,08/09/19 11:37,"965 Hill St, Austin, TX 73301" +249140,Bose SoundSport Headphones,1,99.99,08/03/19 10:03,"598 Adams St, Atlanta, GA 30301" +249141,Apple Airpods Headphones,1,150,08/24/19 15:35,"160 Lakeview St, San Francisco, CA 94016" +249142,USB-C Charging Cable,2,11.95,08/13/19 17:10,"335 Spruce St, Dallas, TX 75001" +249143,AAA Batteries (4-pack),2,2.99,08/16/19 10:02,"60 Walnut St, San Francisco, CA 94016" +249144,ThinkPad Laptop,1,999.99,08/07/19 10:13,"306 Maple St, Los Angeles, CA 90001" +249145,AAA Batteries (4-pack),2,2.99,08/05/19 00:22,"660 Hickory St, New York City, NY 10001" +249146,34in Ultrawide Monitor,1,379.99,08/15/19 06:29,"354 Main St, Los Angeles, CA 90001" +249147,34in Ultrawide Monitor,1,379.99,08/30/19 09:29,"781 13th St, Portland, OR 97035" +249148,Macbook Pro Laptop,1,1700,08/22/19 10:44,"762 Elm St, San Francisco, CA 94016" +249149,AA Batteries (4-pack),1,3.84,08/25/19 17:03,"25 Wilson St, Los Angeles, CA 90001" +249150,iPhone,1,700,08/22/19 12:41,"615 10th St, Seattle, WA 98101" +249150,Bose SoundSport Headphones,1,99.99,08/22/19 12:41,"615 10th St, Seattle, WA 98101" +249151,Google Phone,1,600,08/04/19 02:21,"249 Lake St, Austin, TX 73301" +249152,AAA Batteries (4-pack),1,2.99,08/26/19 11:39,"844 Center St, Boston, MA 02215" +249153,Bose SoundSport Headphones,1,99.99,08/02/19 16:00,"944 Church St, Portland, OR 97035" +249154,Bose SoundSport Headphones,1,99.99,08/18/19 19:22,"444 Cedar St, Seattle, WA 98101" +249155,AAA Batteries (4-pack),1,2.99,08/16/19 17:21,"116 Church St, New York City, NY 10001" +249156,iPhone,1,700,08/11/19 21:43,"881 Adams St, Los Angeles, CA 90001" +249157,Lightning Charging Cable,1,14.95,08/20/19 20:08,"172 Sunset St, Seattle, WA 98101" +249158,Apple Airpods Headphones,1,150,08/01/19 18:44,"967 South St, San Francisco, CA 94016" +249159,27in 4K Gaming Monitor,1,389.99,08/01/19 12:24,"146 Hill St, Los Angeles, CA 90001" +249160,Apple Airpods Headphones,1,150,08/17/19 14:25,"527 6th St, San Francisco, CA 94016" +249161,Wired Headphones,1,11.99,08/01/19 15:36,"738 Park St, Atlanta, GA 30301" +249162,AAA Batteries (4-pack),1,2.99,08/14/19 21:53,"930 2nd St, Boston, MA 02215" +249163,Wired Headphones,1,11.99,08/20/19 11:05,"876 9th St, Boston, MA 02215" +249164,Lightning Charging Cable,3,14.95,08/13/19 13:22,"713 Wilson St, San Francisco, CA 94016" +249165,Apple Airpods Headphones,1,150,08/26/19 16:17,"25 Lincoln St, San Francisco, CA 94016" +249166,AAA Batteries (4-pack),1,2.99,08/10/19 14:32,"866 10th St, Austin, TX 73301" +249167,AA Batteries (4-pack),1,3.84,08/21/19 10:51,"324 Church St, Los Angeles, CA 90001" +249168,Apple Airpods Headphones,1,150,08/24/19 15:27,"183 Willow St, Boston, MA 02215" +249169,AA Batteries (4-pack),1,3.84,08/11/19 18:28,"257 Cherry St, San Francisco, CA 94016" +249170,AA Batteries (4-pack),2,3.84,08/11/19 13:24,"50 Main St, Atlanta, GA 30301" +249171,Bose SoundSport Headphones,1,99.99,08/10/19 15:29,"296 Cherry St, Boston, MA 02215" +249172,Bose SoundSport Headphones,1,99.99,08/23/19 06:36,"853 Chestnut St, Los Angeles, CA 90001" +249173,ThinkPad Laptop,1,999.99,08/15/19 12:38,"716 Pine St, Los Angeles, CA 90001" +249174,Macbook Pro Laptop,1,1700,08/24/19 15:26,"774 Walnut St, Portland, ME 04101" +249175,Apple Airpods Headphones,1,150,08/03/19 13:55,"748 6th St, Seattle, WA 98101" +249176,AAA Batteries (4-pack),1,2.99,08/10/19 19:35,"938 South St, San Francisco, CA 94016" +249177,Wired Headphones,1,11.99,08/19/19 23:09,"359 14th St, Los Angeles, CA 90001" +249178,USB-C Charging Cable,1,11.95,08/10/19 17:39,"404 Park St, San Francisco, CA 94016" +249179,Apple Airpods Headphones,1,150,08/11/19 13:43,"333 Meadow St, New York City, NY 10001" +249180,Apple Airpods Headphones,1,150,08/03/19 13:21,"136 Spruce St, San Francisco, CA 94016" +249181,Flatscreen TV,1,300,08/07/19 15:03,"955 14th St, New York City, NY 10001" +249182,ThinkPad Laptop,1,999.99,08/03/19 23:05,"666 Cherry St, Seattle, WA 98101" +249183,Bose SoundSport Headphones,1,99.99,08/12/19 14:37,"349 Park St, New York City, NY 10001" +249184,34in Ultrawide Monitor,1,379.99,08/23/19 17:11,"486 5th St, New York City, NY 10001" +249185,iPhone,1,700,08/16/19 16:16,"152 Lake St, New York City, NY 10001" +249186,34in Ultrawide Monitor,1,379.99,08/05/19 12:12,"937 Spruce St, Atlanta, GA 30301" +249187,iPhone,1,700,08/22/19 08:32,"900 Jefferson St, San Francisco, CA 94016" +249187,Wired Headphones,1,11.99,08/22/19 08:32,"900 Jefferson St, San Francisco, CA 94016" +249188,Lightning Charging Cable,1,14.95,08/21/19 11:06,"301 Spruce St, Dallas, TX 75001" +249189,USB-C Charging Cable,1,11.95,08/28/19 10:41,"138 5th St, San Francisco, CA 94016" +249190,Google Phone,1,600,08/11/19 11:50,"902 Adams St, Atlanta, GA 30301" +249191,Lightning Charging Cable,1,14.95,08/30/19 19:50,"579 14th St, San Francisco, CA 94016" +249192,AAA Batteries (4-pack),1,2.99,08/29/19 14:08,"92 Meadow St, San Francisco, CA 94016" +249193,AAA Batteries (4-pack),1,2.99,08/26/19 15:18,"125 10th St, Austin, TX 73301" +249194,Wired Headphones,1,11.99,08/02/19 23:14,"221 Adams St, New York City, NY 10001" +249195,AA Batteries (4-pack),1,3.84,08/17/19 14:51,"656 1st St, New York City, NY 10001" +249196,AA Batteries (4-pack),1,3.84,08/06/19 02:55,"442 Madison St, Boston, MA 02215" +249197,Vareebadd Phone,1,400,08/30/19 16:36,"985 14th St, San Francisco, CA 94016" +249198,Apple Airpods Headphones,1,150,08/04/19 21:02,"41 Jefferson St, Dallas, TX 75001" +249199,Google Phone,1,600,08/21/19 13:42,"144 Lincoln St, Portland, OR 97035" +249200,AA Batteries (4-pack),2,3.84,08/09/19 21:32,"289 Pine St, Dallas, TX 75001" +249201,Bose SoundSport Headphones,1,99.99,08/15/19 19:58,"603 8th St, Dallas, TX 75001" +249202,Wired Headphones,1,11.99,08/28/19 14:07,"60 14th St, New York City, NY 10001" +249203,Flatscreen TV,1,300,08/14/19 16:02,"824 Walnut St, Boston, MA 02215" +249204,Bose SoundSport Headphones,1,99.99,08/13/19 11:32,"738 Highland St, San Francisco, CA 94016" +249205,Bose SoundSport Headphones,1,99.99,08/11/19 15:48,"947 14th St, Atlanta, GA 30301" +249206,Apple Airpods Headphones,1,150,08/22/19 19:41,"592 Center St, Atlanta, GA 30301" +249207,27in 4K Gaming Monitor,1,389.99,08/29/19 19:13,"249 Adams St, Atlanta, GA 30301" +249208,Vareebadd Phone,1,400,08/09/19 08:00,"890 12th St, Seattle, WA 98101" +249209,USB-C Charging Cable,1,11.95,08/20/19 13:02,"187 Jefferson St, New York City, NY 10001" +249210,Apple Airpods Headphones,1,150,08/09/19 18:16,"685 South St, Seattle, WA 98101" +249211,34in Ultrawide Monitor,1,379.99,08/31/19 21:36,"42 Highland St, New York City, NY 10001" +249212,USB-C Charging Cable,1,11.95,08/18/19 23:34,"808 Madison St, Los Angeles, CA 90001" +249213,Wired Headphones,1,11.99,08/06/19 23:43,"699 11th St, Dallas, TX 75001" +249214,AA Batteries (4-pack),1,3.84,08/21/19 20:05,"89 14th St, Los Angeles, CA 90001" +249215,AA Batteries (4-pack),1,3.84,08/08/19 14:46,"227 River St, Los Angeles, CA 90001" +249216,Lightning Charging Cable,1,14.95,08/20/19 10:32,"943 Park St, Boston, MA 02215" +249217,34in Ultrawide Monitor,1,379.99,08/07/19 23:17,"810 Highland St, Dallas, TX 75001" +249218,iPhone,1,700,08/23/19 13:27,"392 Washington St, Portland, OR 97035" +249219,34in Ultrawide Monitor,1,379.99,08/06/19 18:13,"473 North St, Atlanta, GA 30301" +249220,Bose SoundSport Headphones,1,99.99,08/16/19 19:04,"427 Jefferson St, Dallas, TX 75001" +249221,iPhone,1,700,08/26/19 20:11,"869 Center St, Boston, MA 02215" +249222,USB-C Charging Cable,1,11.95,08/03/19 22:39,"462 Cherry St, Dallas, TX 75001" +249223,USB-C Charging Cable,1,11.95,08/13/19 10:51,"47 Adams St, Los Angeles, CA 90001" +249224,USB-C Charging Cable,1,11.95,08/20/19 09:52,"16 Wilson St, San Francisco, CA 94016" +249225,Macbook Pro Laptop,1,1700,08/27/19 09:38,"796 Chestnut St, San Francisco, CA 94016" +249226,AA Batteries (4-pack),1,3.84,08/03/19 17:37,"234 Willow St, New York City, NY 10001" +249227,ThinkPad Laptop,1,999.99,08/31/19 14:26,"103 Lakeview St, San Francisco, CA 94016" +249228,AA Batteries (4-pack),2,3.84,08/31/19 10:08,"961 Lake St, Seattle, WA 98101" +249229,Apple Airpods Headphones,1,150,08/23/19 16:54,"6 River St, San Francisco, CA 94016" +141234,Vareebadd Phone,1,400.0,01/22/19 23:47,"998 South St, Los Angeles, CA 90001" +141234,USB-C Charging Cable,2,11.95,01/22/19 23:47,"998 South St, Los Angeles, CA 90001" +141235,34in Ultrawide Monitor,1,379.99,01/03/19 00:40,"977 Church St, San Francisco, CA 94016" +141236,AAA Batteries (4-pack),1,2.99,01/18/19 16:50,"616 2nd St, San Francisco, CA 94016" +141237,ThinkPad Laptop,1,999.99,01/14/19 11:57,"223 10th St, Seattle, WA 98101" +141238,Google Phone,1,600.0,01/29/19 11:48,"511 Willow St, Atlanta, GA 30301" +141239,Bose SoundSport Headphones,1,99.99,01/08/19 14:21,"152 Hill St, New York City, NY 10001" +141240,AA Batteries (4-pack),1,3.84,01/30/19 20:59,"75 Park St, San Francisco, CA 94016" +141241,Vareebadd Phone,1,400.0,01/12/19 13:45,"631 Hill St, Los Angeles, CA 90001" +141241,Wired Headphones,3,11.99,01/12/19 13:45,"631 Hill St, Los Angeles, CA 90001" +141242,Lightning Charging Cable,2,14.95,01/10/19 12:40,"839 Park St, Dallas, TX 75001" +141243,iPhone,1,700.0,01/09/19 19:56,"305 North St, Los Angeles, CA 90001" +141244,USB-C Charging Cable,1,11.95,01/11/19 13:25,"882 Spruce St, Los Angeles, CA 90001" +141245,Wired Headphones,1,11.99,01/02/19 16:33,"779 Hill St, New York City, NY 10001" +141246,Bose SoundSport Headphones,1,99.99,01/20/19 18:56,"159 Lake St, Boston, MA 02215" +141247,Lightning Charging Cable,1,14.95,01/15/19 04:41,"466 Ridge St, San Francisco, CA 94016" +141248,AAA Batteries (4-pack),2,2.99,01/26/19 20:49,"496 Lakeview St, Los Angeles, CA 90001" +141249,AAA Batteries (4-pack),1,2.99,01/13/19 12:27,"704 Sunset St, Seattle, WA 98101" +141250,Lightning Charging Cable,1,14.95,01/19/19 18:43,"397 12th St, San Francisco, CA 94016" +141251,ThinkPad Laptop,1,999.99,01/13/19 18:57,"136 1st St, San Francisco, CA 94016" +141252,AAA Batteries (4-pack),1,2.99,01/16/19 13:07,"938 Cherry St, Dallas, TX 75001" +141253,Apple Airpods Headphones,1,150.0,01/16/19 15:49,"712 Dogwood St, Los Angeles, CA 90001" +141254,USB-C Charging Cable,1,11.95,01/22/19 14:33,"679 Johnson St, San Francisco, CA 94016" +141255,27in FHD Monitor,1,149.99,01/15/19 10:18,"898 Church St, Los Angeles, CA 90001" +141256,AA Batteries (4-pack),1,3.84,01/09/19 19:49,"170 Lakeview St, Boston, MA 02215" +141257,Wired Headphones,1,11.99,01/22/19 15:42,"928 4th St, Seattle, WA 98101" +141258,iPhone,1,700.0,01/17/19 22:09,"908 Lakeview St, San Francisco, CA 94016" +141259,Lightning Charging Cable,1,14.95,01/06/19 07:17,"349 Hill St, Seattle, WA 98101" +141260,AAA Batteries (4-pack),1,2.99,01/09/19 10:21,"972 8th St, Dallas, TX 75001" +141261,Wired Headphones,1,11.99,01/28/19 19:32,"826 Jackson St, Los Angeles, CA 90001" +141262,20in Monitor,1,109.99,01/12/19 11:59,"822 14th St, Dallas, TX 75001" +141263,27in FHD Monitor,1,149.99,01/20/19 22:55,"332 Willow St, Seattle, WA 98101" +141264,AA Batteries (4-pack),1,3.84,01/29/19 23:01,"611 Walnut St, Seattle, WA 98101" +141265,USB-C Charging Cable,1,11.95,01/01/19 07:57,"282 13th St, Portland, ME 04101" +141266,Lightning Charging Cable,1,14.95,01/28/19 13:11,"640 Lake St, Boston, MA 02215" +141267,AAA Batteries (4-pack),1,2.99,01/26/19 10:04,"557 Church St, Portland, OR 97035" +141268,Apple Airpods Headphones,1,150.0,01/04/19 15:56,"111 Highland St, Dallas, TX 75001" +141269,AAA Batteries (4-pack),1,2.99,01/07/19 19:19,"157 Sunset St, Atlanta, GA 30301" +141270,Bose SoundSport Headphones,1,99.99,01/18/19 09:26,"647 1st St, Boston, MA 02215" +141271,AAA Batteries (4-pack),1,2.99,01/13/19 13:54,"971 14th St, Atlanta, GA 30301" +141272,Lightning Charging Cable,1,14.95,01/23/19 17:05,"300 Wilson St, Portland, OR 97035" +141273,Lightning Charging Cable,1,14.95,01/15/19 08:53,"30 Ridge St, San Francisco, CA 94016" +141274,Bose SoundSport Headphones,1,99.99,01/16/19 21:21,"346 Lakeview St, Boston, MA 02215" +141275,LG Dryer,1,600.0,01/13/19 19:01,"880 10th St, Atlanta, GA 30301" +141276,ThinkPad Laptop,1,999.99,01/03/19 19:04,"47 11th St, Los Angeles, CA 90001" +141277,Google Phone,1,600.0,01/20/19 20:22,"778 Highland St, Boston, MA 02215" +141278,Flatscreen TV,1,300.0,01/03/19 12:44,"801 Adams St, San Francisco, CA 94016" +141279,Lightning Charging Cable,1,14.95,01/03/19 18:54,"631 Wilson St, Austin, TX 73301" +141280,Apple Airpods Headphones,1,150.0,01/13/19 10:07,"975 Hill St, Los Angeles, CA 90001" +141281,USB-C Charging Cable,1,11.95,01/18/19 13:31,"919 Cedar St, San Francisco, CA 94016" +141282,AAA Batteries (4-pack),1,2.99,01/02/19 14:49,"916 5th St, Portland, ME 04101" +141283,USB-C Charging Cable,2,11.95,01/25/19 18:34,"991 Hickory St, Seattle, WA 98101" +141284,AA Batteries (4-pack),3,3.84,01/18/19 21:23,"641 Lincoln St, San Francisco, CA 94016" +141285,Google Phone,1,600.0,01/05/19 16:47,"267 Lincoln St, Los Angeles, CA 90001" +141286,LG Washing Machine,1,600.0,01/25/19 07:33,"319 11th St, San Francisco, CA 94016" +141287,Apple Airpods Headphones,1,150.0,01/14/19 02:51,"62 Cherry St, Boston, MA 02215" +141288,USB-C Charging Cable,1,11.95,01/10/19 11:45,"871 Dogwood St, Los Angeles, CA 90001" +141289,USB-C Charging Cable,1,11.95,01/15/19 21:10,"638 South St, Boston, MA 02215" +141290,Lightning Charging Cable,1,14.95,01/22/19 20:42,"165 Pine St, San Francisco, CA 94016" +141291,Bose SoundSport Headphones,1,99.99,01/05/19 18:33,"300 Lincoln St, New York City, NY 10001" +141292,Wired Headphones,1,11.99,01/06/19 12:06,"638 Hickory St, San Francisco, CA 94016" +141293,Google Phone,1,600.0,01/02/19 19:55,"294 14th St, Seattle, WA 98101" +141294,Lightning Charging Cable,1,14.95,01/09/19 08:32,"551 8th St, Los Angeles, CA 90001" +141295,Apple Airpods Headphones,1,150.0,01/31/19 12:30,"466 Lincoln St, Seattle, WA 98101" +141296,Macbook Pro Laptop,1,1700.0,01/01/19 19:17,"209 Jackson St, New York City, NY 10001" +141297,Apple Airpods Headphones,1,150.0,01/13/19 12:22,"188 Lake St, New York City, NY 10001" +141298,Apple Airpods Headphones,1,150.0,01/11/19 19:54,"465 11th St, Portland, OR 97035" +141299,USB-C Charging Cable,1,11.95,01/15/19 10:35,"962 River St, San Francisco, CA 94016" +141300,Wired Headphones,1,11.99,01/07/19 21:18,"151 11th St, Los Angeles, CA 90001" +141301,AAA Batteries (4-pack),1,2.99,01/07/19 18:52,"687 Jefferson St, Boston, MA 02215" +141302,Bose SoundSport Headphones,1,99.99,01/19/19 13:46,"761 10th St, Boston, MA 02215" +141303,Wired Headphones,1,11.99,01/18/19 19:53,"538 1st St, New York City, NY 10001" +141304,Bose SoundSport Headphones,1,99.99,01/01/19 11:02,"920 Chestnut St, Boston, MA 02215" +141305,iPhone,1,700.0,01/21/19 21:08,"831 7th St, Los Angeles, CA 90001" +141306,Google Phone,1,600.0,01/11/19 19:21,"48 Johnson St, Austin, TX 73301" +141306,USB-C Charging Cable,1,11.95,01/11/19 19:21,"48 Johnson St, Austin, TX 73301" +141307,USB-C Charging Cable,1,11.95,01/18/19 17:30,"406 Jackson St, San Francisco, CA 94016" +141308,Wired Headphones,1,11.99,01/14/19 15:30,"174 12th St, San Francisco, CA 94016" +141309,USB-C Charging Cable,1,11.95,01/23/19 07:42,"251 West St, Boston, MA 02215" +141310,AAA Batteries (4-pack),3,2.99,01/12/19 21:43,"944 Forest St, Boston, MA 02215" +141311,Lightning Charging Cable,1,14.95,01/02/19 17:14,"529 Meadow St, Portland, OR 97035" +141312,USB-C Charging Cable,1,11.95,01/22/19 09:52,"850 Jackson St, Los Angeles, CA 90001" +141313,AAA Batteries (4-pack),1,2.99,01/28/19 13:06,"196 Jackson St, New York City, NY 10001" +141314,Wired Headphones,1,11.99,01/19/19 11:32,"117 8th St, New York City, NY 10001" +141315,AA Batteries (4-pack),4,3.84,01/22/19 12:37,"622 6th St, Atlanta, GA 30301" +141316,27in 4K Gaming Monitor,1,389.99,01/13/19 19:46,"160 Chestnut St, Atlanta, GA 30301" +141317,AAA Batteries (4-pack),2,2.99,01/11/19 18:00,"380 North St, Austin, TX 73301" +141318,Apple Airpods Headphones,1,150.0,01/31/19 21:05,"526 12th St, San Francisco, CA 94016" +141319,Wired Headphones,2,11.99,01/14/19 09:14,"994 Highland St, Los Angeles, CA 90001" +141320,27in 4K Gaming Monitor,1,389.99,01/07/19 12:13,"545 Dogwood St, San Francisco, CA 94016" +141321,Bose SoundSport Headphones,1,99.99,01/24/19 12:13,"223 Walnut St, San Francisco, CA 94016" +141322,iPhone,1,700.0,01/18/19 17:43,"187 14th St, Atlanta, GA 30301" +141323,Bose SoundSport Headphones,1,99.99,01/26/19 22:46,"621 13th St, Portland, OR 97035" +141324,Wired Headphones,1,11.99,01/17/19 08:31,"286 Maple St, Boston, MA 02215" +141325,Bose SoundSport Headphones,1,99.99,01/16/19 17:23,"348 14th St, San Francisco, CA 94016" +141326,AA Batteries (4-pack),1,3.84,01/18/19 18:56,"112 South St, New York City, NY 10001" +141327,LG Washing Machine,1,600.0,01/12/19 00:37,"397 13th St, Los Angeles, CA 90001" +141328,AA Batteries (4-pack),1,3.84,01/27/19 23:07,"202 Willow St, Dallas, TX 75001" +141329,Wired Headphones,1,11.99,01/06/19 13:01,"133 Willow St, Los Angeles, CA 90001" +141330,AAA Batteries (4-pack),1,2.99,01/10/19 13:14,"253 River St, San Francisco, CA 94016" +141331,AAA Batteries (4-pack),2,2.99,01/17/19 22:55,"644 Cedar St, Boston, MA 02215" +141332,AAA Batteries (4-pack),1,2.99,01/21/19 20:53,"247 Adams St, San Francisco, CA 94016" +141333,Lightning Charging Cable,1,14.95,01/28/19 09:32,"33 Forest St, Seattle, WA 98101" +141334,Wired Headphones,1,11.99,01/18/19 14:43,"627 9th St, Atlanta, GA 30301" +141335,Wired Headphones,1,11.99,01/10/19 15:26,"125 Jefferson St, Seattle, WA 98101" +141336,AA Batteries (4-pack),1,3.84,01/30/19 17:57,"286 1st St, San Francisco, CA 94016" +141337,AAA Batteries (4-pack),1,2.99,01/09/19 14:42,"657 7th St, Los Angeles, CA 90001" +141338,AA Batteries (4-pack),1,3.84,01/02/19 11:59,"700 4th St, San Francisco, CA 94016" +141339,AA Batteries (4-pack),1,3.84,01/16/19 17:42,"2 South St, San Francisco, CA 94016" +141340,Lightning Charging Cable,1,14.95,01/06/19 20:12,"329 Main St, Seattle, WA 98101" +141341,Lightning Charging Cable,1,14.95,01/07/19 15:38,"702 Meadow St, Atlanta, GA 30301" +141342,27in FHD Monitor,1,149.99,01/13/19 08:35,"624 South St, Dallas, TX 75001" +141343,AA Batteries (4-pack),2,3.84,01/19/19 00:32,"726 Dogwood St, Atlanta, GA 30301" +141344,Wired Headphones,1,11.99,01/04/19 08:11,"94 14th St, New York City, NY 10001" +141345,Apple Airpods Headphones,1,150.0,01/06/19 19:03,"139 7th St, Atlanta, GA 30301" +141346,Lightning Charging Cable,1,14.95,01/18/19 16:36,"166 4th St, Atlanta, GA 30301" +141347,Bose SoundSport Headphones,1,99.99,01/23/19 08:57,"884 Willow St, Atlanta, GA 30301" +141348,AAA Batteries (4-pack),1,2.99,01/05/19 19:00,"474 Elm St, Dallas, TX 75001" +141349,AA Batteries (4-pack),1,3.84,01/23/19 16:08,"865 Spruce St, San Francisco, CA 94016" +141350,Lightning Charging Cable,1,14.95,01/06/19 08:01,"364 Dogwood St, Seattle, WA 98101" +141351,iPhone,1,700.0,01/11/19 09:07,"432 Lakeview St, Dallas, TX 75001" +141352,Wired Headphones,1,11.99,01/11/19 12:46,"550 Madison St, San Francisco, CA 94016" +141353,20in Monitor,1,109.99,01/30/19 12:50,"340 West St, San Francisco, CA 94016" +141354,AAA Batteries (4-pack),1,2.99,01/30/19 07:54,"481 Adams St, Boston, MA 02215" +141355,AA Batteries (4-pack),1,3.84,01/01/19 20:12,"781 Lincoln St, New York City, NY 10001" +141356,34in Ultrawide Monitor,1,379.99,01/09/19 16:36,"430 11th St, Atlanta, GA 30301" +141357,Flatscreen TV,1,300.0,01/16/19 20:24,"512 Sunset St, Seattle, WA 98101" +141358,Apple Airpods Headphones,1,150.0,01/16/19 12:08,"571 Lakeview St, Boston, MA 02215" +141359,AAA Batteries (4-pack),2,2.99,01/02/19 23:11,"635 Center St, Boston, MA 02215" +141360,AAA Batteries (4-pack),1,2.99,01/15/19 17:33,"791 Meadow St, New York City, NY 10001" +141361,Flatscreen TV,1,300.0,01/25/19 01:19,"142 10th St, Seattle, WA 98101" +141362,AAA Batteries (4-pack),1,2.99,01/20/19 13:39,"459 Meadow St, Atlanta, GA 30301" +141363,AAA Batteries (4-pack),1,2.99,01/03/19 16:13,"740 1st St, New York City, NY 10001" +141364,AA Batteries (4-pack),1,3.84,01/10/19 19:52,"241 10th St, San Francisco, CA 94016" +141365,Apple Airpods Headphones,1,150.0,01/05/19 21:42,"315 Dogwood St, Austin, TX 73301" +141366,Apple Airpods Headphones,1,150.0,01/20/19 20:33,"451 Madison St, Los Angeles, CA 90001" +141367,Apple Airpods Headphones,1,150.0,01/27/19 23:20,"689 South St, Portland, OR 97035" +141368,AAA Batteries (4-pack),1,2.99,01/08/19 09:50,"321 North St, Boston, MA 02215" +141369,Apple Airpods Headphones,1,150.0,01/21/19 19:25,"694 Walnut St, Atlanta, GA 30301" +141370,Apple Airpods Headphones,1,150.0,01/14/19 11:25,"359 Jackson St, San Francisco, CA 94016" +141371,Lightning Charging Cable,1,14.95,01/06/19 17:59,"256 11th St, San Francisco, CA 94016" +141372,Lightning Charging Cable,1,14.95,01/05/19 00:44,"874 Jackson St, Atlanta, GA 30301" +141373,34in Ultrawide Monitor,1,379.99,01/17/19 12:14,"118 North St, Austin, TX 73301" +141374,27in 4K Gaming Monitor,1,389.99,01/10/19 15:53,"415 Ridge St, New York City, NY 10001" +141375,27in FHD Monitor,1,149.99,01/28/19 16:06,"669 Forest St, Atlanta, GA 30301" +141376,Bose SoundSport Headphones,1,99.99,01/23/19 20:32,"472 Spruce St, Atlanta, GA 30301" +141377,AAA Batteries (4-pack),1,2.99,01/29/19 22:05,"601 9th St, Atlanta, GA 30301" +141378,Bose SoundSport Headphones,1,99.99,01/09/19 15:36,"176 Madison St, San Francisco, CA 94016" +141379,Lightning Charging Cable,1,14.95,01/22/19 12:53,"842 Cedar St, Los Angeles, CA 90001" +141380,Bose SoundSport Headphones,1,99.99,01/12/19 11:15,"146 Lincoln St, Austin, TX 73301" +141381,34in Ultrawide Monitor,1,379.99,01/04/19 20:38,"59 Jackson St, Los Angeles, CA 90001" +141382,Wired Headphones,1,11.99,01/04/19 17:16,"496 12th St, New York City, NY 10001" +141383,Google Phone,1,600.0,01/03/19 08:18,"451 2nd St, Austin, TX 73301" +141384,AAA Batteries (4-pack),2,2.99,01/24/19 11:31,"925 Cherry St, Los Angeles, CA 90001" +141384,USB-C Charging Cable,1,11.95,01/24/19 11:31,"925 Cherry St, Los Angeles, CA 90001" +141385,Bose SoundSport Headphones,1,99.99,01/30/19 21:32,"998 13th St, Boston, MA 02215" +141386,AAA Batteries (4-pack),1,2.99,01/04/19 04:57,"464 9th St, San Francisco, CA 94016" +141387,Lightning Charging Cable,1,14.95,01/08/19 01:16,"967 South St, Boston, MA 02215" +141388,Apple Airpods Headphones,1,150.0,01/06/19 10:02,"596 Lincoln St, San Francisco, CA 94016" +141389,AA Batteries (4-pack),2,3.84,01/18/19 22:42,"303 1st St, San Francisco, CA 94016" +141390,Lightning Charging Cable,1,14.95,01/28/19 21:19,"220 Highland St, Los Angeles, CA 90001" +141391,Flatscreen TV,1,300.0,01/15/19 15:36,"988 Wilson St, Dallas, TX 75001" +141392,Wired Headphones,1,11.99,01/28/19 10:25,"743 7th St, Austin, TX 73301" +141393,AA Batteries (4-pack),1,3.84,01/26/19 00:50,"645 11th St, Los Angeles, CA 90001" +141394,Wired Headphones,1,11.99,01/30/19 13:37,"217 7th St, Seattle, WA 98101" +141395,iPhone,1,700.0,01/12/19 16:29,"885 Center St, Los Angeles, CA 90001" +141395,Lightning Charging Cable,1,14.95,01/12/19 16:29,"885 Center St, Los Angeles, CA 90001" +141396,Lightning Charging Cable,1,14.95,01/04/19 10:33,"100 Lincoln St, New York City, NY 10001" +141397,Apple Airpods Headphones,1,150.0,01/21/19 20:31,"27 7th St, Dallas, TX 75001" +141398,AAA Batteries (4-pack),1,2.99,01/02/19 21:23,"428 Elm St, Portland, OR 97035" +141398,USB-C Charging Cable,1,11.95,01/02/19 21:23,"428 Elm St, Portland, OR 97035" +141399,USB-C Charging Cable,1,11.95,01/24/19 23:07,"193 Dogwood St, New York City, NY 10001" +141400,Bose SoundSport Headphones,1,99.99,01/23/19 03:36,"880 Lake St, New York City, NY 10001" +141401,ThinkPad Laptop,1,999.99,01/15/19 15:39,"190 1st St, New York City, NY 10001" +141402,Apple Airpods Headphones,1,150.0,01/30/19 10:30,"632 Main St, Dallas, TX 75001" +141403,AAA Batteries (4-pack),1,2.99,01/23/19 09:07,"235 Adams St, San Francisco, CA 94016" +141404,LG Washing Machine,1,600.0,01/07/19 11:29,"275 Walnut St, San Francisco, CA 94016" +141405,USB-C Charging Cable,1,11.95,01/30/19 21:33,"23 Hill St, Austin, TX 73301" +141406,34in Ultrawide Monitor,1,379.99,01/27/19 13:09,"276 Pine St, New York City, NY 10001" +141407,Vareebadd Phone,1,400.0,01/28/19 17:32,"83 West St, Dallas, TX 75001" +141408,Apple Airpods Headphones,1,150.0,01/15/19 04:26,"542 Chestnut St, Dallas, TX 75001" +141409,Lightning Charging Cable,1,14.95,01/02/19 15:55,"693 Elm St, New York City, NY 10001" +141410,USB-C Charging Cable,1,11.95,01/04/19 21:27,"735 Willow St, Boston, MA 02215" +141411,Apple Airpods Headphones,1,150.0,01/29/19 14:17,"619 Madison St, Portland, ME 04101" +141412,27in FHD Monitor,1,149.99,01/15/19 12:14,"891 Meadow St, Portland, OR 97035" +141413,AAA Batteries (4-pack),1,2.99,01/21/19 15:25,"711 Cedar St, San Francisco, CA 94016" +141414,Bose SoundSport Headphones,1,99.99,01/14/19 17:35,"933 Elm St, San Francisco, CA 94016" +141415,Bose SoundSport Headphones,1,99.99,01/15/19 12:08,"279 Forest St, Portland, OR 97035" +141416,USB-C Charging Cable,1,11.95,01/14/19 09:42,"193 Center St, New York City, NY 10001" +141417,34in Ultrawide Monitor,1,379.99,01/10/19 13:23,"785 5th St, Seattle, WA 98101" +141418,Wired Headphones,1,11.99,01/17/19 09:49,"510 North St, San Francisco, CA 94016" +141419,Lightning Charging Cable,1,14.95,01/20/19 12:15,"320 River St, Los Angeles, CA 90001" +141420,Apple Airpods Headphones,1,150.0,01/05/19 17:22,"904 12th St, San Francisco, CA 94016" +141421,AAA Batteries (4-pack),1,2.99,01/15/19 07:46,"855 Hill St, San Francisco, CA 94016" +141422,34in Ultrawide Monitor,1,379.99,01/25/19 16:27,"809 Main St, Atlanta, GA 30301" +141423,Apple Airpods Headphones,1,150.0,01/09/19 11:52,"48 Park St, Boston, MA 02215" +141424,Apple Airpods Headphones,1,150.0,01/17/19 23:27,"360 Ridge St, San Francisco, CA 94016" +141425,20in Monitor,1,109.99,01/09/19 21:36,"611 Lakeview St, Atlanta, GA 30301" +141426,27in FHD Monitor,1,149.99,01/09/19 17:14,"443 Maple St, Los Angeles, CA 90001" +141427,Macbook Pro Laptop,1,1700.0,01/19/19 19:29,"868 Madison St, Los Angeles, CA 90001" +141428,ThinkPad Laptop,1,999.99,01/06/19 11:33,"347 Main St, Portland, OR 97035" +141429,AAA Batteries (4-pack),1,2.99,01/21/19 19:41,"829 River St, New York City, NY 10001" +141430,Wired Headphones,1,11.99,01/30/19 13:54,"366 Jefferson St, Los Angeles, CA 90001" +141431,AAA Batteries (4-pack),1,2.99,01/05/19 23:20,"148 13th St, San Francisco, CA 94016" +141432,Apple Airpods Headphones,1,150.0,01/08/19 18:33,"729 Meadow St, Boston, MA 02215" +141433,USB-C Charging Cable,1,11.95,01/28/19 01:13,"602 Cherry St, New York City, NY 10001" +141434,Wired Headphones,1,11.99,01/19/19 07:42,"873 Highland St, Portland, OR 97035" +141435,AAA Batteries (4-pack),1,2.99,01/10/19 20:26,"181 Johnson St, Boston, MA 02215" +141436,USB-C Charging Cable,1,11.95,01/30/19 15:54,"279 Maple St, Los Angeles, CA 90001" +141437,Google Phone,1,600.0,01/22/19 15:46,"284 Pine St, Seattle, WA 98101" +141438,Lightning Charging Cable,1,14.95,01/25/19 11:12,"226 Ridge St, Los Angeles, CA 90001" +141439,AAA Batteries (4-pack),4,2.99,01/18/19 17:50,"235 West St, Los Angeles, CA 90001" +141440,Wired Headphones,1,11.99,01/21/19 01:21,"826 Cherry St, Portland, OR 97035" +141441,AA Batteries (4-pack),1,3.84,01/19/19 21:52,"61 Dogwood St, Seattle, WA 98101" +141442,34in Ultrawide Monitor,1,379.99,01/06/19 23:57,"506 Johnson St, Boston, MA 02215" +141443,20in Monitor,1,109.99,01/15/19 07:15,"253 Washington St, San Francisco, CA 94016" +141444,Apple Airpods Headphones,1,150.0,01/03/19 12:26,"469 12th St, San Francisco, CA 94016" +141445,Wired Headphones,1,11.99,01/11/19 13:36,"307 Elm St, New York City, NY 10001" +141446,20in Monitor,1,109.99,01/09/19 19:15,"26 1st St, Seattle, WA 98101" +141447,iPhone,1,700.0,01/10/19 09:34,"661 11th St, Atlanta, GA 30301" +141447,Lightning Charging Cable,1,14.95,01/10/19 09:34,"661 11th St, Atlanta, GA 30301" +141448,Wired Headphones,1,11.99,01/31/19 14:17,"681 Cedar St, Los Angeles, CA 90001" +141449,34in Ultrawide Monitor,1,379.99,01/24/19 23:12,"670 Spruce St, New York City, NY 10001" +141450,27in FHD Monitor,1,149.99,01/12/19 20:47,"744 1st St, Dallas, TX 75001" +141451,USB-C Charging Cable,1,11.95,01/17/19 20:00,"829 Walnut St, Boston, MA 02215" +141452,AAA Batteries (4-pack),1,2.99,01/01/19 11:29,"627 Johnson St, San Francisco, CA 94016" +141453,Apple Airpods Headphones,1,150.0,01/09/19 11:35,"34 Center St, Los Angeles, CA 90001" +141454,Apple Airpods Headphones,1,150.0,01/27/19 11:27,"693 Maple St, Los Angeles, CA 90001" +141455,AAA Batteries (4-pack),1,2.99,01/15/19 09:10,"481 River St, Los Angeles, CA 90001" +141456,Wired Headphones,1,11.99,01/26/19 21:35,"698 River St, San Francisco, CA 94016" +141457,Google Phone,1,600.0,01/21/19 20:00,"947 Lakeview St, Seattle, WA 98101" +141458,Macbook Pro Laptop,1,1700.0,01/11/19 22:11,"372 Park St, Los Angeles, CA 90001" +141459,Wired Headphones,1,11.99,01/08/19 21:23,"514 Spruce St, San Francisco, CA 94016" +141459,AA Batteries (4-pack),1,3.84,01/08/19 21:23,"514 Spruce St, San Francisco, CA 94016" +141460,Wired Headphones,3,11.99,01/17/19 14:58,"566 9th St, Dallas, TX 75001" +141461,Macbook Pro Laptop,1,1700.0,01/05/19 20:12,"810 Maple St, Portland, OR 97035" +141462,Bose SoundSport Headphones,1,99.99,01/18/19 19:00,"519 Washington St, Los Angeles, CA 90001" +141463,AA Batteries (4-pack),1,3.84,01/14/19 17:24,"608 Jefferson St, Portland, OR 97035" +141464,USB-C Charging Cable,1,11.95,01/04/19 14:36,"836 River St, Boston, MA 02215" +141465,USB-C Charging Cable,1,11.95,01/19/19 10:43,"481 1st St, Los Angeles, CA 90001" +141466,Wired Headphones,1,11.99,01/02/19 20:11,"36 West St, San Francisco, CA 94016" +141467,AAA Batteries (4-pack),2,2.99,01/18/19 19:11,"461 Adams St, San Francisco, CA 94016" +141468,Lightning Charging Cable,1,14.95,01/17/19 00:05,"970 1st St, San Francisco, CA 94016" +141469,Lightning Charging Cable,1,14.95,01/06/19 22:56,"472 Cherry St, Seattle, WA 98101" +141470,AAA Batteries (4-pack),1,2.99,01/17/19 17:56,"674 Lake St, Boston, MA 02215" +141471,iPhone,1,700.0,01/24/19 11:50,"823 Center St, Austin, TX 73301" +141471,Lightning Charging Cable,1,14.95,01/24/19 11:50,"823 Center St, Austin, TX 73301" +141471,Apple Airpods Headphones,1,150.0,01/24/19 11:50,"823 Center St, Austin, TX 73301" +141472,27in FHD Monitor,1,149.99,01/03/19 23:33,"239 Lincoln St, Atlanta, GA 30301" +141473,AAA Batteries (4-pack),1,2.99,01/30/19 14:00,"246 Ridge St, Dallas, TX 75001" +141474,AAA Batteries (4-pack),1,2.99,01/09/19 19:29,"821 Johnson St, New York City, NY 10001" +141475,Wired Headphones,1,11.99,01/21/19 13:42,"848 Adams St, Portland, OR 97035" +141476,AAA Batteries (4-pack),1,2.99,01/01/19 13:50,"70 Park St, San Francisco, CA 94016" +141477,Bose SoundSport Headphones,1,99.99,01/16/19 12:04,"62 10th St, San Francisco, CA 94016" +141478,LG Washing Machine,1,600.0,01/18/19 12:48,"224 Madison St, Austin, TX 73301" +141479,USB-C Charging Cable,1,11.95,01/12/19 11:45,"433 6th St, New York City, NY 10001" +141480,Lightning Charging Cable,1,14.95,01/21/19 12:45,"631 Willow St, Los Angeles, CA 90001" +141480,AAA Batteries (4-pack),1,2.99,01/21/19 12:45,"631 Willow St, Los Angeles, CA 90001" +141481,Bose SoundSport Headphones,1,99.99,01/31/19 07:13,"886 Washington St, Austin, TX 73301" +141482,Lightning Charging Cable,1,14.95,01/24/19 11:05,"230 Pine St, New York City, NY 10001" +141483,Lightning Charging Cable,1,14.95,01/16/19 21:31,"334 9th St, Los Angeles, CA 90001" +141484,AA Batteries (4-pack),1,3.84,01/08/19 12:22,"732 Willow St, San Francisco, CA 94016" +141485,iPhone,1,700.0,01/14/19 12:46,"836 Park St, San Francisco, CA 94016" +141486,Google Phone,1,600.0,01/26/19 11:11,"444 Lincoln St, San Francisco, CA 94016" +141487,Bose SoundSport Headphones,1,99.99,01/13/19 14:14,"241 11th St, New York City, NY 10001" +141488,20in Monitor,1,109.99,01/26/19 21:37,"243 Spruce St, Los Angeles, CA 90001" +141489,27in FHD Monitor,1,149.99,01/27/19 19:57,"995 Elm St, Atlanta, GA 30301" +141490,Lightning Charging Cable,1,14.95,01/19/19 12:19,"670 11th St, New York City, NY 10001" +141491,34in Ultrawide Monitor,1,379.99,01/21/19 02:14,"647 Main St, San Francisco, CA 94016" +141492,Lightning Charging Cable,1,14.95,01/13/19 12:47,"657 Chestnut St, Los Angeles, CA 90001" +141493,AAA Batteries (4-pack),1,2.99,01/01/19 10:37,"963 13th St, Los Angeles, CA 90001" +141494,Wired Headphones,1,11.99,01/06/19 13:25,"455 Main St, Atlanta, GA 30301" +141495,Wired Headphones,1,11.99,01/25/19 14:24,"81 Forest St, Portland, OR 97035" +141496,Lightning Charging Cable,1,14.95,01/04/19 13:29,"678 13th St, New York City, NY 10001" +141497,ThinkPad Laptop,1,999.99,01/20/19 21:50,"572 North St, San Francisco, CA 94016" +141497,Apple Airpods Headphones,1,150.0,01/20/19 21:50,"572 North St, San Francisco, CA 94016" +141498,Bose SoundSport Headphones,1,99.99,01/24/19 11:14,"795 11th St, Atlanta, GA 30301" +141499,Lightning Charging Cable,1,14.95,01/24/19 16:39,"964 Church St, San Francisco, CA 94016" +141500,Apple Airpods Headphones,1,150.0,01/28/19 17:32,"678 Lakeview St, Atlanta, GA 30301" +141501,Lightning Charging Cable,1,14.95,01/15/19 22:33,"237 Chestnut St, Dallas, TX 75001" +141502,34in Ultrawide Monitor,1,379.99,01/21/19 21:08,"807 9th St, Austin, TX 73301" +141503,AA Batteries (4-pack),2,3.84,01/11/19 07:48,"893 West St, Dallas, TX 75001" +141504,USB-C Charging Cable,1,11.95,01/27/19 09:59,"184 Pine St, Los Angeles, CA 90001" +,,,,, +141505,USB-C Charging Cable,2,11.95,01/18/19 08:25,"927 5th St, San Francisco, CA 94016" +141506,AA Batteries (4-pack),1,3.84,01/06/19 17:46,"411 6th St, Austin, TX 73301" +141507,USB-C Charging Cable,1,11.95,01/29/19 10:17,"896 2nd St, San Francisco, CA 94016" +141508,Apple Airpods Headphones,1,150,01/23/19 11:21,"580 Hill St, Dallas, TX 75001" +141509,USB-C Charging Cable,1,11.95,01/24/19 06:24,"177 Pine St, San Francisco, CA 94016" +141510,27in 4K Gaming Monitor,1,389.99,01/18/19 13:54,"259 10th St, Austin, TX 73301" +141511,USB-C Charging Cable,1,11.95,01/18/19 20:54,"118 Johnson St, Boston, MA 02215" +141512,iPhone,1,700,01/19/19 18:26,"762 13th St, San Francisco, CA 94016" +141513,ThinkPad Laptop,1,999.99,01/17/19 16:55,"800 Pine St, San Francisco, CA 94016" +141514,Wired Headphones,1,11.99,01/12/19 13:32,"846 Center St, Atlanta, GA 30301" +141515,Lightning Charging Cable,1,14.95,01/28/19 07:18,"18 Lake St, San Francisco, CA 94016" +141516,AAA Batteries (4-pack),1,2.99,01/22/19 00:21,"75 11th St, Portland, ME 04101" +141517,USB-C Charging Cable,1,11.95,01/09/19 21:10,"860 Walnut St, San Francisco, CA 94016" +141518,Lightning Charging Cable,1,14.95,01/17/19 13:12,"424 11th St, Seattle, WA 98101" +141519,Apple Airpods Headphones,1,150,01/12/19 11:39,"495 South St, New York City, NY 10001" +141520,USB-C Charging Cable,1,11.95,01/16/19 15:59,"475 Highland St, Los Angeles, CA 90001" +141521,Lightning Charging Cable,1,14.95,01/24/19 12:58,"819 River St, Atlanta, GA 30301" +141522,Apple Airpods Headphones,1,150,01/31/19 21:22,"207 Walnut St, Los Angeles, CA 90001" +141523,27in FHD Monitor,1,149.99,01/10/19 14:49,"741 Wilson St, San Francisco, CA 94016" +141524,Wired Headphones,1,11.99,01/25/19 11:50,"898 Park St, San Francisco, CA 94016" +141525,AA Batteries (4-pack),1,3.84,01/03/19 09:14,"594 11th St, Atlanta, GA 30301" +141526,27in FHD Monitor,1,149.99,01/22/19 19:04,"131 Madison St, Los Angeles, CA 90001" +141527,Lightning Charging Cable,1,14.95,01/16/19 18:23,"147 Washington St, New York City, NY 10001" +141528,34in Ultrawide Monitor,1,379.99,01/29/19 14:41,"468 Forest St, Boston, MA 02215" +141529,USB-C Charging Cable,1,11.95,01/02/19 18:59,"560 6th St, San Francisco, CA 94016" +141530,iPhone,1,700,01/12/19 10:48,"761 9th St, Dallas, TX 75001" +141531,USB-C Charging Cable,1,11.95,01/11/19 20:44,"362 Wilson St, Boston, MA 02215" +141532,USB-C Charging Cable,2,11.95,01/06/19 20:14,"842 Cedar St, Dallas, TX 75001" +141533,Wired Headphones,1,11.99,01/27/19 17:08,"209 Jefferson St, New York City, NY 10001" +141534,Wired Headphones,1,11.99,01/31/19 09:58,"193 Highland St, New York City, NY 10001" +141535,AA Batteries (4-pack),1,3.84,01/22/19 10:15,"707 8th St, Los Angeles, CA 90001" +141535,Wired Headphones,1,11.99,01/22/19 10:15,"707 8th St, Los Angeles, CA 90001" +141536,Bose SoundSport Headphones,1,99.99,01/21/19 19:34,"306 Hill St, San Francisco, CA 94016" +141537,27in FHD Monitor,1,149.99,01/07/19 23:17,"817 1st St, Los Angeles, CA 90001" +141538,27in FHD Monitor,1,149.99,01/27/19 19:38,"762 West St, Boston, MA 02215" +141539,Macbook Pro Laptop,1,1700,01/09/19 16:20,"245 South St, San Francisco, CA 94016" +141540,27in 4K Gaming Monitor,1,389.99,01/12/19 20:50,"75 13th St, New York City, NY 10001" +141541,Bose SoundSport Headphones,1,99.99,01/19/19 20:42,"35 10th St, New York City, NY 10001" +141542,AAA Batteries (4-pack),1,2.99,01/13/19 10:02,"770 5th St, San Francisco, CA 94016" +141543,AA Batteries (4-pack),1,3.84,01/16/19 18:25,"363 8th St, Dallas, TX 75001" +141544,Macbook Pro Laptop,1,1700,01/19/19 13:25,"305 Elm St, San Francisco, CA 94016" +141545,Bose SoundSport Headphones,1,99.99,01/06/19 21:02,"92 Chestnut St, Seattle, WA 98101" +141546,AAA Batteries (4-pack),1,2.99,01/23/19 06:13,"289 Lakeview St, Dallas, TX 75001" +141547,Bose SoundSport Headphones,1,99.99,01/22/19 15:40,"213 1st St, Seattle, WA 98101" +141548,iPhone,1,700,01/10/19 21:29,"286 Willow St, Dallas, TX 75001" +141549,USB-C Charging Cable,1,11.95,01/06/19 11:06,"254 Highland St, Boston, MA 02215" +141550,Apple Airpods Headphones,1,150,01/25/19 05:20,"795 Park St, Austin, TX 73301" +141551,AA Batteries (4-pack),1,3.84,01/11/19 13:03,"758 4th St, Austin, TX 73301" +141552,AAA Batteries (4-pack),1,2.99,01/14/19 16:35,"173 9th St, Dallas, TX 75001" +141553,Wired Headphones,1,11.99,01/05/19 10:07,"40 Lakeview St, San Francisco, CA 94016" +141554,Bose SoundSport Headphones,1,99.99,01/23/19 22:33,"416 Johnson St, New York City, NY 10001" +141555,AAA Batteries (4-pack),1,2.99,01/07/19 08:55,"260 Center St, San Francisco, CA 94016" +141556,USB-C Charging Cable,1,11.95,01/28/19 13:52,"650 4th St, New York City, NY 10001" +141557,USB-C Charging Cable,1,11.95,01/15/19 11:55,"53 2nd St, San Francisco, CA 94016" +141558,27in FHD Monitor,1,149.99,01/12/19 17:29,"357 River St, San Francisco, CA 94016" +141559,Wired Headphones,2,11.99,01/07/19 12:22,"903 Dogwood St, Los Angeles, CA 90001" +141560,Bose SoundSport Headphones,1,99.99,01/20/19 10:23,"110 Wilson St, New York City, NY 10001" +141561,iPhone,1,700,01/25/19 14:19,"115 North St, San Francisco, CA 94016" +141562,Lightning Charging Cable,1,14.95,01/13/19 20:43,"445 13th St, Seattle, WA 98101" +141563,AAA Batteries (4-pack),1,2.99,01/29/19 13:26,"347 Lincoln St, Los Angeles, CA 90001" +141564,34in Ultrawide Monitor,1,379.99,01/12/19 15:23,"315 11th St, Dallas, TX 75001" +141564,Google Phone,1,600,01/12/19 15:23,"315 11th St, Dallas, TX 75001" +141565,34in Ultrawide Monitor,1,379.99,01/05/19 20:02,"132 West St, San Francisco, CA 94016" +141566,Vareebadd Phone,1,400,01/16/19 12:46,"462 Johnson St, San Francisco, CA 94016" +141566,Bose SoundSport Headphones,1,99.99,01/16/19 12:46,"462 Johnson St, San Francisco, CA 94016" +141567,USB-C Charging Cable,1,11.95,01/02/19 10:53,"513 Adams St, Dallas, TX 75001" +141568,Macbook Pro Laptop,1,1700,01/05/19 13:54,"935 Willow St, Los Angeles, CA 90001" +141569,USB-C Charging Cable,1,11.95,01/15/19 18:17,"832 13th St, Boston, MA 02215" +141570,iPhone,1,700,01/09/19 17:16,"50 Sunset St, Dallas, TX 75001" +141571,ThinkPad Laptop,1,999.99,01/05/19 17:33,"882 Jefferson St, San Francisco, CA 94016" +141572,Lightning Charging Cable,1,14.95,01/16/19 07:22,"786 Hickory St, Los Angeles, CA 90001" +141573,USB-C Charging Cable,1,11.95,01/14/19 18:47,"280 Cherry St, San Francisco, CA 94016" +141574,Bose SoundSport Headphones,1,99.99,01/02/19 15:31,"554 River St, Dallas, TX 75001" +141575,Apple Airpods Headphones,1,150,01/12/19 17:43,"896 Ridge St, San Francisco, CA 94016" +141576,ThinkPad Laptop,1,999.99,01/05/19 10:02,"401 Washington St, New York City, NY 10001" +141577,Bose SoundSport Headphones,1,99.99,01/07/19 16:46,"825 South St, Boston, MA 02215" +141578,Lightning Charging Cable,1,14.95,01/28/19 20:28,"864 West St, Austin, TX 73301" +141579,AAA Batteries (4-pack),1,2.99,01/11/19 15:32,"904 12th St, Seattle, WA 98101" +141580,AA Batteries (4-pack),1,3.84,01/04/19 10:48,"949 Dogwood St, San Francisco, CA 94016" +141581,34in Ultrawide Monitor,1,379.99,01/22/19 20:46,"796 Lakeview St, New York City, NY 10001" +141582,AA Batteries (4-pack),1,3.84,01/07/19 20:38,"459 Willow St, San Francisco, CA 94016" +141583,AAA Batteries (4-pack),3,2.99,01/19/19 15:40,"388 Center St, Atlanta, GA 30301" +141584,USB-C Charging Cable,1,11.95,01/09/19 12:13,"52 8th St, New York City, NY 10001" +141585,27in FHD Monitor,1,149.99,01/04/19 08:20,"110 Elm St, New York City, NY 10001" +141586,Lightning Charging Cable,1,14.95,01/01/19 11:10,"380 Wilson St, San Francisco, CA 94016" +141587,AA Batteries (4-pack),1,3.84,01/07/19 13:09,"310 Forest St, New York City, NY 10001" +141588,Lightning Charging Cable,1,14.95,01/17/19 12:43,"938 Spruce St, Boston, MA 02215" +141589,AA Batteries (4-pack),1,3.84,01/07/19 13:23,"203 Sunset St, San Francisco, CA 94016" +141590,iPhone,1,700,01/03/19 23:10,"435 Ridge St, Boston, MA 02215" +141591,Apple Airpods Headphones,1,150,01/22/19 20:01,"699 Adams St, Los Angeles, CA 90001" +141592,USB-C Charging Cable,1,11.95,01/04/19 11:44,"738 Meadow St, Seattle, WA 98101" +141593,AAA Batteries (4-pack),1,2.99,01/29/19 20:22,"758 Dogwood St, New York City, NY 10001" +141594,Apple Airpods Headphones,1,150,01/18/19 12:22,"315 1st St, San Francisco, CA 94016" +141595,Apple Airpods Headphones,1,150,01/26/19 17:21,"143 North St, San Francisco, CA 94016" +141596,Apple Airpods Headphones,1,150,01/13/19 13:06,"136 Forest St, Dallas, TX 75001" +141597,Google Phone,1,600,01/14/19 04:33,"648 Forest St, Portland, OR 97035" +141597,Wired Headphones,1,11.99,01/14/19 04:33,"648 Forest St, Portland, OR 97035" +141598,AAA Batteries (4-pack),1,2.99,01/18/19 07:09,"702 Wilson St, Los Angeles, CA 90001" +141599,Flatscreen TV,1,300,01/12/19 13:12,"983 Hickory St, Seattle, WA 98101" +141600,Lightning Charging Cable,2,14.95,01/07/19 15:47,"161 Main St, San Francisco, CA 94016" +141601,Bose SoundSport Headphones,1,99.99,01/06/19 13:10,"271 Dogwood St, Boston, MA 02215" +141602,ThinkPad Laptop,1,999.99,01/11/19 13:28,"152 2nd St, New York City, NY 10001" +141603,Bose SoundSport Headphones,1,99.99,01/22/19 19:57,"471 2nd St, Boston, MA 02215" +141604,Wired Headphones,1,11.99,01/19/19 23:08,"428 Adams St, New York City, NY 10001" +141605,AA Batteries (4-pack),1,3.84,01/26/19 23:45,"821 Pine St, Atlanta, GA 30301" +141606,USB-C Charging Cable,1,11.95,01/26/19 11:34,"546 Cherry St, Dallas, TX 75001" +141607,AA Batteries (4-pack),1,3.84,01/25/19 00:15,"197 12th St, San Francisco, CA 94016" +141608,AAA Batteries (4-pack),1,2.99,01/29/19 13:37,"875 Johnson St, San Francisco, CA 94016" +141609,AAA Batteries (4-pack),1,2.99,01/28/19 07:11,"444 Cherry St, San Francisco, CA 94016" +141610,AAA Batteries (4-pack),1,2.99,01/04/19 07:34,"511 Pine St, Dallas, TX 75001" +141611,Macbook Pro Laptop,1,1700,01/23/19 11:30,"305 6th St, Los Angeles, CA 90001" +141612,Macbook Pro Laptop,1,1700,01/19/19 12:48,"236 1st St, San Francisco, CA 94016" +141613,USB-C Charging Cable,1,11.95,01/12/19 09:59,"120 Jefferson St, San Francisco, CA 94016" +141614,Apple Airpods Headphones,1,150,01/02/19 20:25,"37 Sunset St, Portland, OR 97035" +141615,AAA Batteries (4-pack),1,2.99,01/21/19 18:33,"647 6th St, San Francisco, CA 94016" +141616,34in Ultrawide Monitor,1,379.99,01/20/19 12:06,"200 Pine St, New York City, NY 10001" +141617,Wired Headphones,1,11.99,01/31/19 15:39,"449 West St, Los Angeles, CA 90001" +141618,Apple Airpods Headphones,1,150,01/13/19 18:04,"27 River St, San Francisco, CA 94016" +141619,AAA Batteries (4-pack),2,2.99,01/01/19 14:52,"723 Lincoln St, Seattle, WA 98101" +141620,27in 4K Gaming Monitor,1,389.99,01/07/19 20:20,"148 1st St, New York City, NY 10001" +141621,AA Batteries (4-pack),1,3.84,01/09/19 22:09,"206 Cedar St, Atlanta, GA 30301" +141622,Flatscreen TV,1,300,01/20/19 05:37,"254 12th St, Atlanta, GA 30301" +141623,Wired Headphones,1,11.99,01/20/19 19:44,"905 Park St, Los Angeles, CA 90001" +141624,27in 4K Gaming Monitor,1,389.99,01/22/19 15:15,"650 South St, Los Angeles, CA 90001" +141625,27in FHD Monitor,1,149.99,01/14/19 16:29,"560 9th St, San Francisco, CA 94016" +141626,Bose SoundSport Headphones,1,99.99,01/02/19 16:34,"924 Cedar St, New York City, NY 10001" +141627,Lightning Charging Cable,1,14.95,01/26/19 09:27,"110 Highland St, Seattle, WA 98101" +141628,Macbook Pro Laptop,1,1700,01/10/19 10:33,"191 Lake St, San Francisco, CA 94016" +141629,AA Batteries (4-pack),1,3.84,01/10/19 10:01,"424 8th St, San Francisco, CA 94016" +141630,Lightning Charging Cable,1,14.95,01/30/19 09:51,"450 Willow St, Atlanta, GA 30301" +141631,USB-C Charging Cable,1,11.95,01/22/19 10:12,"433 Willow St, Boston, MA 02215" +141632,AA Batteries (4-pack),1,3.84,01/30/19 14:52,"677 Center St, Los Angeles, CA 90001" +141633,Lightning Charging Cable,1,14.95,01/01/19 17:35,"583 Jackson St, Portland, OR 97035" +141634,Google Phone,1,600,01/31/19 22:20,"943 Church St, Atlanta, GA 30301" +141635,iPhone,1,700,01/23/19 11:27,"921 Lake St, New York City, NY 10001" +141636,Lightning Charging Cable,2,14.95,01/25/19 18:44,"652 Lakeview St, Seattle, WA 98101" +141637,AA Batteries (4-pack),1,3.84,01/15/19 17:44,"854 River St, San Francisco, CA 94016" +141638,AAA Batteries (4-pack),1,2.99,01/05/19 16:49,"124 10th St, San Francisco, CA 94016" +141639,20in Monitor,1,109.99,01/24/19 05:37,"7 Main St, Boston, MA 02215" +141640,Wired Headphones,1,11.99,01/08/19 17:53,"891 Washington St, Atlanta, GA 30301" +141641,Apple Airpods Headphones,1,150,01/15/19 13:39,"516 11th St, San Francisco, CA 94016" +141642,34in Ultrawide Monitor,1,379.99,01/24/19 16:24,"851 Sunset St, Los Angeles, CA 90001" +141643,AA Batteries (4-pack),1,3.84,01/23/19 00:39,"630 Lakeview St, Los Angeles, CA 90001" +141644,Lightning Charging Cable,1,14.95,01/20/19 21:45,"971 7th St, San Francisco, CA 94016" +141645,Macbook Pro Laptop,1,1700,01/25/19 12:50,"867 Washington St, New York City, NY 10001" +141646,USB-C Charging Cable,1,11.95,01/02/19 13:11,"48 Pine St, San Francisco, CA 94016" +141647,USB-C Charging Cable,1,11.95,01/17/19 21:17,"460 13th St, San Francisco, CA 94016" +141648,Apple Airpods Headphones,1,150,01/29/19 08:49,"305 Forest St, New York City, NY 10001" +141649,Wired Headphones,1,11.99,01/24/19 19:42,"56 1st St, San Francisco, CA 94016" +141650,USB-C Charging Cable,1,11.95,01/20/19 20:06,"723 2nd St, New York City, NY 10001" +141651,Wired Headphones,1,11.99,01/10/19 16:13,"819 9th St, San Francisco, CA 94016" +141652,USB-C Charging Cable,1,11.95,01/15/19 08:23,"708 Dogwood St, Los Angeles, CA 90001" +141653,Lightning Charging Cable,1,14.95,01/25/19 11:22,"923 Walnut St, Dallas, TX 75001" +141654,Google Phone,1,600,01/22/19 11:26,"128 Walnut St, Seattle, WA 98101" +141654,USB-C Charging Cable,1,11.95,01/22/19 11:26,"128 Walnut St, Seattle, WA 98101" +141655,Lightning Charging Cable,1,14.95,01/22/19 12:04,"609 5th St, Boston, MA 02215" +141656,Apple Airpods Headphones,1,150,01/05/19 20:54,"851 Lincoln St, Dallas, TX 75001" +141657,27in FHD Monitor,1,149.99,01/28/19 13:30,"531 Elm St, Boston, MA 02215" +141658,Google Phone,1,600,01/13/19 20:19,"399 River St, Boston, MA 02215" +141659,Macbook Pro Laptop,1,1700,01/15/19 18:50,"438 Ridge St, Los Angeles, CA 90001" +141660,AAA Batteries (4-pack),3,2.99,01/20/19 19:16,"683 Maple St, Los Angeles, CA 90001" +141661,27in FHD Monitor,1,149.99,01/18/19 19:27,"521 Pine St, Atlanta, GA 30301" +141662,Wired Headphones,1,11.99,01/01/19 19:44,"63 Washington St, San Francisco, CA 94016" +141663,AA Batteries (4-pack),1,3.84,01/01/19 07:22,"689 Church St, Dallas, TX 75001" +141664,20in Monitor,1,109.99,01/12/19 21:27,"712 Walnut St, Los Angeles, CA 90001" +141665,USB-C Charging Cable,1,11.95,01/06/19 12:54,"783 Pine St, New York City, NY 10001" +141666,Lightning Charging Cable,1,14.95,01/09/19 11:26,"447 4th St, San Francisco, CA 94016" +141667,Google Phone,1,600,01/23/19 16:06,"685 14th St, Atlanta, GA 30301" +141668,Bose SoundSport Headphones,1,99.99,01/17/19 14:35,"483 Main St, Atlanta, GA 30301" +141669,AAA Batteries (4-pack),2,2.99,01/24/19 12:29,"864 Hickory St, Dallas, TX 75001" +141670,AAA Batteries (4-pack),1,2.99,01/16/19 19:07,"155 Washington St, New York City, NY 10001" +141671,Apple Airpods Headphones,1,150,01/04/19 17:29,"22 River St, Boston, MA 02215" +141672,AAA Batteries (4-pack),1,2.99,01/26/19 13:06,"213 14th St, San Francisco, CA 94016" +141673,AAA Batteries (4-pack),1,2.99,01/04/19 14:54,"151 Lakeview St, Portland, OR 97035" +141674,Flatscreen TV,1,300,01/01/19 17:55,"798 Spruce St, Boston, MA 02215" +141675,Lightning Charging Cable,1,14.95,01/10/19 01:39,"602 Chestnut St, Los Angeles, CA 90001" +141676,AAA Batteries (4-pack),1,2.99,01/19/19 09:18,"569 Jefferson St, New York City, NY 10001" +141677,Bose SoundSport Headphones,1,99.99,01/24/19 14:38,"857 13th St, New York City, NY 10001" +141677,Google Phone,1,600,01/24/19 14:38,"857 13th St, New York City, NY 10001" +141678,Google Phone,1,600,01/09/19 12:38,"140 Dogwood St, Los Angeles, CA 90001" +141679,Apple Airpods Headphones,1,150,02/01/19 00:48,"890 8th St, San Francisco, CA 94016" +141680,Google Phone,1,600,01/10/19 23:04,"105 Forest St, Atlanta, GA 30301" +141680,USB-C Charging Cable,1,11.95,01/10/19 23:04,"105 Forest St, Atlanta, GA 30301" +141681,Flatscreen TV,1,300,01/17/19 21:47,"892 Main St, Boston, MA 02215" +141682,Wired Headphones,2,11.99,01/09/19 09:49,"8 6th St, Seattle, WA 98101" +141683,Google Phone,1,600,01/28/19 11:18,"991 7th St, San Francisco, CA 94016" +141684,LG Washing Machine,1,600.0,01/12/19 22:13,"163 Jackson St, New York City, NY 10001" +141685,Bose SoundSport Headphones,1,99.99,01/19/19 20:03,"697 13th St, Seattle, WA 98101" +141686,LG Washing Machine,1,600.0,01/07/19 13:09,"538 Highland St, Los Angeles, CA 90001" +141687,Bose SoundSport Headphones,1,99.99,01/16/19 20:36,"939 9th St, San Francisco, CA 94016" +141688,USB-C Charging Cable,1,11.95,01/06/19 10:18,"934 Dogwood St, Dallas, TX 75001" +141689,Macbook Pro Laptop,1,1700,01/20/19 21:05,"925 Adams St, Seattle, WA 98101" +141690,Wired Headphones,1,11.99,01/26/19 17:17,"687 Sunset St, Atlanta, GA 30301" +141691,AA Batteries (4-pack),1,3.84,01/23/19 09:04,"654 Chestnut St, Los Angeles, CA 90001" +141692,Wired Headphones,1,11.99,01/17/19 13:39,"32 Hill St, San Francisco, CA 94016" +141693,iPhone,1,700,01/23/19 14:07,"600 Hill St, San Francisco, CA 94016" +141694,Lightning Charging Cable,1,14.95,01/08/19 20:57,"709 Lakeview St, Atlanta, GA 30301" +141695,AAA Batteries (4-pack),1,2.99,01/16/19 15:57,"47 Cedar St, San Francisco, CA 94016" +141696,AAA Batteries (4-pack),2,2.99,01/18/19 07:16,"301 Lake St, Boston, MA 02215" +141697,USB-C Charging Cable,1,11.95,01/18/19 23:24,"302 Highland St, Seattle, WA 98101" +141698,iPhone,1,700,01/04/19 09:58,"444 10th St, New York City, NY 10001" +141699,AAA Batteries (4-pack),3,2.99,01/29/19 09:51,"854 Adams St, San Francisco, CA 94016" +141700,iPhone,1,700,01/19/19 00:24,"429 Pine St, Boston, MA 02215" +141701,AA Batteries (4-pack),1,3.84,01/07/19 20:38,"926 North St, Dallas, TX 75001" +141702,Wired Headphones,1,11.99,01/20/19 16:05,"752 Johnson St, New York City, NY 10001" +141703,Apple Airpods Headphones,1,150,01/03/19 22:08,"909 Chestnut St, Seattle, WA 98101" +141704,AAA Batteries (4-pack),1,2.99,01/17/19 12:41,"28 Main St, Austin, TX 73301" +141705,AA Batteries (4-pack),1,3.84,01/13/19 14:35,"495 South St, San Francisco, CA 94016" +141706,AA Batteries (4-pack),2,3.84,01/08/19 13:41,"698 Lakeview St, Dallas, TX 75001" +141707,AAA Batteries (4-pack),1,2.99,01/11/19 23:15,"758 Pine St, San Francisco, CA 94016" +141708,Lightning Charging Cable,1,14.95,01/25/19 21:13,"312 8th St, Atlanta, GA 30301" +141709,LG Dryer,1,600.0,01/24/19 15:37,"873 4th St, Los Angeles, CA 90001" +141710,27in FHD Monitor,1,149.99,01/28/19 22:15,"600 Forest St, Portland, ME 04101" +141711,AA Batteries (4-pack),1,3.84,01/28/19 18:49,"336 Hickory St, Seattle, WA 98101" +141712,Bose SoundSport Headphones,1,99.99,01/25/19 23:47,"49 10th St, Boston, MA 02215" +141713,Apple Airpods Headphones,1,150,01/25/19 23:18,"437 11th St, New York City, NY 10001" +141714,USB-C Charging Cable,1,11.95,01/31/19 22:17,"255 Park St, San Francisco, CA 94016" +141715,Bose SoundSport Headphones,1,99.99,01/31/19 22:48,"681 10th St, Los Angeles, CA 90001" +141716,AA Batteries (4-pack),1,3.84,01/13/19 07:55,"854 Spruce St, Dallas, TX 75001" +141717,Wired Headphones,2,11.99,01/22/19 22:42,"444 Sunset St, Portland, OR 97035" +141718,AAA Batteries (4-pack),1,2.99,01/27/19 19:00,"48 South St, San Francisco, CA 94016" +141719,AA Batteries (4-pack),1,3.84,01/13/19 21:59,"924 Washington St, Austin, TX 73301" +141720,USB-C Charging Cable,1,11.95,01/24/19 17:40,"439 10th St, Boston, MA 02215" +141721,AAA Batteries (4-pack),3,2.99,01/09/19 18:15,"303 Madison St, San Francisco, CA 94016" +141722,Wired Headphones,1,11.99,01/24/19 00:13,"947 Wilson St, Atlanta, GA 30301" +141723,AA Batteries (4-pack),5,3.84,01/03/19 19:10,"67 11th St, Boston, MA 02215" +141724,ThinkPad Laptop,1,999.99,01/21/19 09:08,"677 1st St, Portland, OR 97035" +141725,Lightning Charging Cable,1,14.95,01/31/19 21:54,"859 Sunset St, New York City, NY 10001" +141726,AA Batteries (4-pack),1,3.84,01/04/19 11:33,"685 Lakeview St, Boston, MA 02215" +141727,Lightning Charging Cable,1,14.95,01/07/19 09:20,"907 11th St, Seattle, WA 98101" +141728,AAA Batteries (4-pack),1,2.99,01/26/19 23:39,"499 Forest St, Portland, OR 97035" +141729,AA Batteries (4-pack),1,3.84,01/24/19 16:51,"716 7th St, San Francisco, CA 94016" +141730,AAA Batteries (4-pack),2,2.99,01/26/19 16:39,"650 Elm St, Dallas, TX 75001" +141731,AA Batteries (4-pack),1,3.84,01/02/19 11:26,"980 Cherry St, New York City, NY 10001" +141732,AAA Batteries (4-pack),1,2.99,01/11/19 14:39,"721 River St, San Francisco, CA 94016" +141733,USB-C Charging Cable,1,11.95,01/30/19 22:35,"572 6th St, Seattle, WA 98101" +141734,20in Monitor,1,109.99,01/20/19 14:46,"62 Highland St, New York City, NY 10001" +141735,AA Batteries (4-pack),4,3.84,01/10/19 17:12,"402 South St, San Francisco, CA 94016" +141736,LG Dryer,1,600.0,01/28/19 13:22,"792 11th St, San Francisco, CA 94016" +141737,Flatscreen TV,1,300,01/24/19 01:49,"60 1st St, Portland, OR 97035" +141738,27in FHD Monitor,1,149.99,01/20/19 16:52,"327 Walnut St, New York City, NY 10001" +141739,Lightning Charging Cable,1,14.95,01/25/19 17:22,"504 Jefferson St, Boston, MA 02215" +141740,AAA Batteries (4-pack),4,2.99,01/03/19 15:51,"832 Willow St, Los Angeles, CA 90001" +141741,AAA Batteries (4-pack),2,2.99,01/15/19 12:26,"377 Elm St, Austin, TX 73301" +141742,USB-C Charging Cable,2,11.95,01/30/19 13:04,"776 14th St, Dallas, TX 75001" +141743,AA Batteries (4-pack),2,3.84,01/04/19 23:48,"21 Dogwood St, Atlanta, GA 30301" +141744,Wired Headphones,1,11.99,01/07/19 18:37,"174 Madison St, San Francisco, CA 94016" +141745,iPhone,1,700,01/11/19 14:42,"853 1st St, Los Angeles, CA 90001" +141746,USB-C Charging Cable,1,11.95,01/05/19 17:55,"785 Dogwood St, San Francisco, CA 94016" +141747,AAA Batteries (4-pack),2,2.99,01/19/19 16:30,"453 Cedar St, New York City, NY 10001" +141748,AAA Batteries (4-pack),1,2.99,01/21/19 16:47,"342 Ridge St, Dallas, TX 75001" +141749,27in 4K Gaming Monitor,1,389.99,01/03/19 02:49,"6 Dogwood St, New York City, NY 10001" +141750,USB-C Charging Cable,1,11.95,01/08/19 07:45,"499 2nd St, Portland, ME 04101" +141751,Wired Headphones,1,11.99,01/29/19 16:30,"779 Lincoln St, Los Angeles, CA 90001" +141752,Lightning Charging Cable,1,14.95,01/27/19 16:54,"117 Park St, New York City, NY 10001" +141753,20in Monitor,1,109.99,01/07/19 09:37,"122 5th St, Atlanta, GA 30301" +141754,Lightning Charging Cable,1,14.95,01/13/19 20:26,"457 Pine St, Boston, MA 02215" +141755,Flatscreen TV,1,300,01/20/19 20:54,"844 Cedar St, Boston, MA 02215" +141756,20in Monitor,1,109.99,01/03/19 10:36,"621 Jefferson St, San Francisco, CA 94016" +141757,USB-C Charging Cable,2,11.95,01/16/19 23:08,"548 Willow St, San Francisco, CA 94016" +141758,AAA Batteries (4-pack),1,2.99,01/23/19 13:46,"802 2nd St, Atlanta, GA 30301" +141759,AA Batteries (4-pack),1,3.84,01/24/19 13:06,"161 Park St, San Francisco, CA 94016" +141760,Wired Headphones,1,11.99,01/15/19 19:06,"622 9th St, Portland, OR 97035" +141761,AAA Batteries (4-pack),1,2.99,01/16/19 20:44,"666 Lincoln St, Los Angeles, CA 90001" +141762,USB-C Charging Cable,1,11.95,01/16/19 00:40,"204 Willow St, New York City, NY 10001" +141763,AAA Batteries (4-pack),1,2.99,01/27/19 10:48,"681 Lincoln St, New York City, NY 10001" +141763,Macbook Pro Laptop,1,1700,01/27/19 10:48,"681 Lincoln St, New York City, NY 10001" +141764,Flatscreen TV,1,300,01/10/19 12:45,"522 Jackson St, Seattle, WA 98101" +141765,34in Ultrawide Monitor,1,379.99,01/12/19 18:19,"432 Lakeview St, Austin, TX 73301" +141766,Apple Airpods Headphones,1,150,01/13/19 19:02,"933 Hill St, New York City, NY 10001" +141767,27in FHD Monitor,1,149.99,01/03/19 16:02,"340 6th St, Los Angeles, CA 90001" +141768,AA Batteries (4-pack),4,3.84,01/10/19 14:03,"630 Jackson St, New York City, NY 10001" +141769,Wired Headphones,1,11.99,01/30/19 23:19,"712 Park St, Atlanta, GA 30301" +141770,ThinkPad Laptop,1,999.99,01/06/19 13:38,"193 10th St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +141771,27in FHD Monitor,1,149.99,01/24/19 09:04,"124 9th St, New York City, NY 10001" +141772,Lightning Charging Cable,1,14.95,01/10/19 11:37,"689 Wilson St, Los Angeles, CA 90001" +141773,27in FHD Monitor,1,149.99,01/08/19 15:03,"997 2nd St, Los Angeles, CA 90001" +141774,27in FHD Monitor,1,149.99,01/24/19 19:46,"786 Johnson St, San Francisco, CA 94016" +141775,Lightning Charging Cable,1,14.95,01/14/19 10:45,"604 7th St, San Francisco, CA 94016" +141776,Wired Headphones,1,11.99,01/31/19 12:55,"460 Meadow St, San Francisco, CA 94016" +141777,iPhone,1,700,01/03/19 15:56,"984 Wilson St, San Francisco, CA 94016" +141778,Wired Headphones,1,11.99,01/29/19 01:45,"684 Adams St, New York City, NY 10001" +141779,Lightning Charging Cable,1,14.95,01/18/19 21:11,"357 Sunset St, Seattle, WA 98101" +141780,AA Batteries (4-pack),1,3.84,01/01/19 23:35,"761 Johnson St, San Francisco, CA 94016" +141781,AA Batteries (4-pack),1,3.84,01/20/19 13:41,"715 North St, Boston, MA 02215" +141782,27in FHD Monitor,1,149.99,01/27/19 13:28,"408 Lincoln St, Boston, MA 02215" +141783,AA Batteries (4-pack),1,3.84,01/17/19 06:50,"898 Chestnut St, San Francisco, CA 94016" +141784,27in 4K Gaming Monitor,1,389.99,01/19/19 11:45,"368 South St, Los Angeles, CA 90001" +141785,Bose SoundSport Headphones,1,99.99,01/26/19 21:08,"331 River St, Portland, ME 04101" +141786,AAA Batteries (4-pack),1,2.99,01/30/19 19:22,"903 Madison St, Boston, MA 02215" +141787,AAA Batteries (4-pack),1,2.99,01/22/19 16:29,"185 Highland St, Dallas, TX 75001" +141788,Flatscreen TV,1,300,01/13/19 18:18,"540 Washington St, Atlanta, GA 30301" +141789,27in 4K Gaming Monitor,1,389.99,01/30/19 12:37,"209 5th St, Seattle, WA 98101" +141790,Wired Headphones,1,11.99,01/29/19 06:57,"937 Hickory St, Portland, OR 97035" +141791,34in Ultrawide Monitor,1,379.99,01/15/19 10:46,"956 Washington St, New York City, NY 10001" +141792,27in 4K Gaming Monitor,1,389.99,01/22/19 21:09,"458 Adams St, Dallas, TX 75001" +141793,Bose SoundSport Headphones,1,99.99,01/24/19 23:09,"842 Chestnut St, New York City, NY 10001" +141794,Wired Headphones,1,11.99,01/16/19 22:29,"456 Walnut St, Los Angeles, CA 90001" +141795,AAA Batteries (4-pack),2,2.99,01/28/19 19:12,"731 7th St, Los Angeles, CA 90001" +141796,Wired Headphones,1,11.99,01/04/19 19:33,"349 12th St, Atlanta, GA 30301" +141797,27in FHD Monitor,1,149.99,01/28/19 14:34,"738 Willow St, San Francisco, CA 94016" +141798,AA Batteries (4-pack),1,3.84,01/08/19 18:06,"855 Center St, Portland, OR 97035" +141799,Wired Headphones,1,11.99,01/11/19 21:28,"313 Highland St, Atlanta, GA 30301" +141800,AA Batteries (4-pack),1,3.84,01/14/19 18:47,"394 Jackson St, Boston, MA 02215" +141801,USB-C Charging Cable,1,11.95,01/30/19 08:16,"549 South St, San Francisco, CA 94016" +141802,AAA Batteries (4-pack),1,2.99,01/23/19 14:04,"593 Walnut St, Boston, MA 02215" +141802,USB-C Charging Cable,1,11.95,01/23/19 14:04,"593 Walnut St, Boston, MA 02215" +141803,Wired Headphones,1,11.99,01/13/19 12:04,"762 Washington St, Austin, TX 73301" +141804,iPhone,1,700,01/15/19 17:35,"473 12th St, San Francisco, CA 94016" +141805,AA Batteries (4-pack),2,3.84,01/12/19 21:23,"455 6th St, Los Angeles, CA 90001" +141806,Apple Airpods Headphones,1,150,01/03/19 22:01,"677 6th St, San Francisco, CA 94016" +141807,AAA Batteries (4-pack),3,2.99,01/20/19 12:48,"228 North St, San Francisco, CA 94016" +141808,AA Batteries (4-pack),1,3.84,01/30/19 01:06,"304 Main St, Boston, MA 02215" +141809,Lightning Charging Cable,1,14.95,01/26/19 20:50,"397 14th St, Dallas, TX 75001" +141810,AAA Batteries (4-pack),3,2.99,01/16/19 18:18,"797 Johnson St, New York City, NY 10001" +141811,Wired Headphones,2,11.99,01/08/19 20:28,"270 Meadow St, Los Angeles, CA 90001" +141812,Apple Airpods Headphones,1,150,01/17/19 14:59,"325 Cherry St, Dallas, TX 75001" +141813,Google Phone,1,600,01/24/19 17:40,"304 9th St, San Francisco, CA 94016" +141814,Lightning Charging Cable,1,14.95,01/12/19 12:58,"599 2nd St, Seattle, WA 98101" +141815,27in FHD Monitor,1,149.99,01/10/19 13:34,"707 Spruce St, San Francisco, CA 94016" +141816,Wired Headphones,1,11.99,01/18/19 18:33,"803 11th St, San Francisco, CA 94016" +141817,27in FHD Monitor,1,149.99,01/21/19 12:05,"172 Lincoln St, San Francisco, CA 94016" +141818,Flatscreen TV,1,300,01/31/19 09:51,"827 Forest St, Boston, MA 02215" +141819,AAA Batteries (4-pack),1,2.99,01/05/19 10:39,"668 2nd St, Boston, MA 02215" +141820,AA Batteries (4-pack),1,3.84,01/07/19 15:25,"950 2nd St, Boston, MA 02215" +141821,USB-C Charging Cable,1,11.95,01/25/19 12:16,"781 6th St, Portland, OR 97035" +141822,Apple Airpods Headphones,1,150,01/13/19 11:52,"676 Washington St, San Francisco, CA 94016" +141823,iPhone,1,700,01/11/19 11:33,"65 Hickory St, Los Angeles, CA 90001" +141824,27in 4K Gaming Monitor,1,389.99,01/29/19 10:05,"578 12th St, Los Angeles, CA 90001" +141825,USB-C Charging Cable,1,11.95,01/19/19 18:23,"429 Johnson St, San Francisco, CA 94016" +141826,AA Batteries (4-pack),1,3.84,01/30/19 12:25,"850 Spruce St, Atlanta, GA 30301" +141827,34in Ultrawide Monitor,1,379.99,01/02/19 18:06,"447 Pine St, Austin, TX 73301" +141828,Wired Headphones,1,11.99,01/11/19 14:37,"156 1st St, Seattle, WA 98101" +141829,USB-C Charging Cable,1,11.95,01/21/19 10:48,"625 Pine St, Los Angeles, CA 90001" +141830,Wired Headphones,1,11.99,01/04/19 09:43,"604 Dogwood St, San Francisco, CA 94016" +141831,Bose SoundSport Headphones,1,99.99,01/20/19 18:02,"494 2nd St, San Francisco, CA 94016" +141832,AAA Batteries (4-pack),1,2.99,01/28/19 09:02,"314 Washington St, Atlanta, GA 30301" +141833,AA Batteries (4-pack),1,3.84,01/20/19 16:30,"676 Hill St, San Francisco, CA 94016" +141834,AAA Batteries (4-pack),1,2.99,01/18/19 12:33,"37 Pine St, New York City, NY 10001" +141835,LG Dryer,1,600.0,01/26/19 22:33,"527 Church St, San Francisco, CA 94016" +141836,AA Batteries (4-pack),1,3.84,01/19/19 12:24,"437 Ridge St, Austin, TX 73301" +141837,Lightning Charging Cable,1,14.95,01/12/19 16:29,"468 Jackson St, San Francisco, CA 94016" +141838,Flatscreen TV,1,300,01/16/19 12:23,"501 Ridge St, New York City, NY 10001" +141839,Lightning Charging Cable,1,14.95,01/18/19 17:50,"199 Church St, New York City, NY 10001" +141840,AA Batteries (4-pack),2,3.84,01/29/19 15:20,"288 Lakeview St, Seattle, WA 98101" +141841,Flatscreen TV,1,300,01/14/19 17:36,"391 Lake St, Atlanta, GA 30301" +141842,Google Phone,1,600,01/04/19 01:01,"240 Cherry St, Boston, MA 02215" +141843,Bose SoundSport Headphones,1,99.99,01/18/19 08:51,"144 6th St, New York City, NY 10001" +141844,USB-C Charging Cable,1,11.95,01/10/19 22:33,"562 North St, New York City, NY 10001" +141845,Apple Airpods Headphones,1,150,01/29/19 06:49,"390 Dogwood St, Atlanta, GA 30301" +141846,Google Phone,1,600,01/25/19 23:27,"755 South St, Los Angeles, CA 90001" +141846,USB-C Charging Cable,1,11.95,01/25/19 23:27,"755 South St, Los Angeles, CA 90001" +141847,27in FHD Monitor,1,149.99,01/01/19 21:35,"454 Johnson St, Boston, MA 02215" +141848,Apple Airpods Headphones,1,150,01/12/19 19:34,"129 Walnut St, Los Angeles, CA 90001" +141849,Macbook Pro Laptop,1,1700,01/14/19 17:24,"620 11th St, Dallas, TX 75001" +141850,ThinkPad Laptop,1,999.99,01/19/19 18:48,"920 Cedar St, Atlanta, GA 30301" +141851,Wired Headphones,1,11.99,01/10/19 12:22,"567 Willow St, Seattle, WA 98101" +141852,27in 4K Gaming Monitor,1,389.99,01/07/19 12:42,"247 Willow St, San Francisco, CA 94016" +141853,AAA Batteries (4-pack),1,2.99,01/29/19 14:10,"995 Adams St, Los Angeles, CA 90001" +141854,USB-C Charging Cable,1,11.95,01/26/19 15:26,"605 9th St, Portland, OR 97035" +141855,AA Batteries (4-pack),2,3.84,01/13/19 19:34,"467 13th St, Los Angeles, CA 90001" +141856,Apple Airpods Headphones,1,150,01/23/19 21:11,"367 10th St, Austin, TX 73301" +141857,Macbook Pro Laptop,1,1700,01/15/19 15:08,"898 Wilson St, Dallas, TX 75001" +141858,Bose SoundSport Headphones,1,99.99,01/06/19 20:49,"287 North St, Portland, OR 97035" +141859,Wired Headphones,1,11.99,01/22/19 22:02,"677 10th St, Austin, TX 73301" +141860,AA Batteries (4-pack),1,3.84,01/14/19 18:48,"167 12th St, New York City, NY 10001" +141861,AA Batteries (4-pack),1,3.84,01/26/19 11:30,"492 8th St, San Francisco, CA 94016" +141862,Wired Headphones,1,11.99,01/05/19 16:16,"534 5th St, San Francisco, CA 94016" +141863,Vareebadd Phone,1,400,01/06/19 10:04,"851 2nd St, Austin, TX 73301" +141863,USB-C Charging Cable,1,11.95,01/06/19 10:04,"851 2nd St, Austin, TX 73301" +141864,Wired Headphones,1,11.99,01/29/19 07:44,"326 South St, San Francisco, CA 94016" +141865,Bose SoundSport Headphones,1,99.99,01/25/19 07:55,"178 5th St, Austin, TX 73301" +141866,Flatscreen TV,1,300,01/13/19 12:59,"745 Church St, Austin, TX 73301" +141867,AAA Batteries (4-pack),1,2.99,01/21/19 08:50,"443 6th St, Los Angeles, CA 90001" +141868,Apple Airpods Headphones,1,150,01/10/19 12:52,"267 7th St, New York City, NY 10001" +141869,Apple Airpods Headphones,1,150,01/28/19 12:51,"573 Adams St, Los Angeles, CA 90001" +141870,AAA Batteries (4-pack),1,2.99,01/04/19 08:17,"909 5th St, Portland, OR 97035" +141871,Wired Headphones,1,11.99,01/29/19 13:32,"763 Chestnut St, Los Angeles, CA 90001" +141872,USB-C Charging Cable,1,11.95,01/12/19 13:31,"300 Cedar St, Seattle, WA 98101" +141873,Macbook Pro Laptop,1,1700,01/18/19 14:27,"569 Chestnut St, San Francisco, CA 94016" +141874,AAA Batteries (4-pack),1,2.99,01/16/19 19:05,"518 River St, Los Angeles, CA 90001" +141875,Wired Headphones,1,11.99,01/12/19 21:56,"829 12th St, Austin, TX 73301" +141876,Flatscreen TV,1,300,01/29/19 19:41,"410 8th St, Boston, MA 02215" +141877,AA Batteries (4-pack),1,3.84,01/08/19 14:09,"472 Main St, Atlanta, GA 30301" +141878,20in Monitor,1,109.99,01/03/19 12:40,"346 Willow St, Dallas, TX 75001" +141879,ThinkPad Laptop,1,999.99,01/19/19 10:56,"128 8th St, San Francisco, CA 94016" +141880,Lightning Charging Cable,1,14.95,01/13/19 19:37,"942 Hill St, San Francisco, CA 94016" +141881,Bose SoundSport Headphones,1,99.99,01/09/19 16:22,"184 Dogwood St, Atlanta, GA 30301" +141882,AAA Batteries (4-pack),1,2.99,01/05/19 19:09,"381 West St, Boston, MA 02215" +141883,Lightning Charging Cable,2,14.95,01/18/19 16:49,"241 Church St, Boston, MA 02215" +141884,AA Batteries (4-pack),1,3.84,01/19/19 16:44,"681 Highland St, Portland, OR 97035" +141885,ThinkPad Laptop,1,999.99,01/23/19 14:23,"588 Elm St, San Francisco, CA 94016" +141886,AAA Batteries (4-pack),2,2.99,01/26/19 11:21,"943 Main St, Atlanta, GA 30301" +141887,Wired Headphones,1,11.99,01/10/19 18:49,"472 9th St, Seattle, WA 98101" +141888,USB-C Charging Cable,1,11.95,01/22/19 22:54,"420 Cedar St, San Francisco, CA 94016" +141889,iPhone,1,700,01/27/19 21:35,"925 Church St, Los Angeles, CA 90001" +141890,Google Phone,1,600,01/08/19 17:39,"670 Church St, Los Angeles, CA 90001" +141890,Bose SoundSport Headphones,1,99.99,01/08/19 17:39,"670 Church St, Los Angeles, CA 90001" +141891,USB-C Charging Cable,1,11.95,01/14/19 12:12,"945 Wilson St, Dallas, TX 75001" +141892,Bose SoundSport Headphones,1,99.99,01/04/19 05:42,"534 Lake St, Boston, MA 02215" +141893,Apple Airpods Headphones,1,150,01/16/19 20:52,"387 12th St, Atlanta, GA 30301" +141894,Google Phone,1,600,01/02/19 22:06,"669 9th St, San Francisco, CA 94016" +141895,Lightning Charging Cable,1,14.95,01/12/19 23:11,"559 Cherry St, San Francisco, CA 94016" +141896,Bose SoundSport Headphones,1,99.99,01/09/19 12:07,"873 Dogwood St, Boston, MA 02215" +141897,Lightning Charging Cable,1,14.95,01/01/19 10:26,"225 Johnson St, Austin, TX 73301" +141898,AA Batteries (4-pack),1,3.84,01/06/19 20:05,"267 Elm St, New York City, NY 10001" +141899,AAA Batteries (4-pack),1,2.99,01/07/19 08:55,"989 Washington St, Los Angeles, CA 90001" +141900,AAA Batteries (4-pack),1,2.99,01/03/19 14:09,"174 Maple St, Dallas, TX 75001" +141901,AAA Batteries (4-pack),1,2.99,01/01/19 23:16,"664 Spruce St, Dallas, TX 75001" +141902,USB-C Charging Cable,1,11.95,01/11/19 09:25,"202 Forest St, Los Angeles, CA 90001" +141903,AA Batteries (4-pack),1,3.84,01/05/19 19:28,"412 2nd St, Dallas, TX 75001" +141904,ThinkPad Laptop,1,999.99,01/14/19 20:12,"159 Pine St, Portland, OR 97035" +141905,LG Dryer,1,600.0,01/31/19 12:21,"385 2nd St, Los Angeles, CA 90001" +141906,Lightning Charging Cable,1,14.95,01/06/19 11:42,"418 Willow St, San Francisco, CA 94016" +141907,20in Monitor,1,109.99,01/11/19 10:01,"281 Ridge St, New York City, NY 10001" +141908,Apple Airpods Headphones,1,150,01/11/19 14:55,"359 Hickory St, Los Angeles, CA 90001" +141909,LG Dryer,1,600.0,01/22/19 18:26,"877 1st St, Portland, OR 97035" +141910,Wired Headphones,1,11.99,01/20/19 09:40,"522 Washington St, San Francisco, CA 94016" +141911,Wired Headphones,1,11.99,01/23/19 08:47,"884 2nd St, Portland, OR 97035" +141912,34in Ultrawide Monitor,1,379.99,01/29/19 08:26,"975 Pine St, Atlanta, GA 30301" +141913,27in 4K Gaming Monitor,1,389.99,01/17/19 04:42,"969 5th St, New York City, NY 10001" +141914,AAA Batteries (4-pack),1,2.99,01/11/19 01:47,"938 West St, San Francisco, CA 94016" +141915,AAA Batteries (4-pack),2,2.99,01/14/19 06:07,"601 2nd St, New York City, NY 10001" +141916,AAA Batteries (4-pack),1,2.99,01/22/19 18:12,"427 Willow St, San Francisco, CA 94016" +141917,Wired Headphones,1,11.99,01/07/19 20:23,"996 4th St, San Francisco, CA 94016" +141918,AA Batteries (4-pack),2,3.84,01/29/19 05:34,"431 South St, Los Angeles, CA 90001" +141919,AAA Batteries (4-pack),1,2.99,01/16/19 10:41,"824 Hickory St, Los Angeles, CA 90001" +141920,USB-C Charging Cable,1,11.95,01/18/19 18:07,"334 South St, Boston, MA 02215" +141921,AAA Batteries (4-pack),1,2.99,01/03/19 08:53,"76 Cherry St, San Francisco, CA 94016" +141922,USB-C Charging Cable,1,11.95,01/08/19 11:17,"130 12th St, San Francisco, CA 94016" +141923,Google Phone,1,600,01/01/19 19:08,"223 Jackson St, Seattle, WA 98101" +141924,AA Batteries (4-pack),1,3.84,01/16/19 22:49,"894 1st St, Portland, OR 97035" +141925,USB-C Charging Cable,1,11.95,01/22/19 18:28,"389 Lakeview St, New York City, NY 10001" +141926,Lightning Charging Cable,1,14.95,01/06/19 11:23,"249 Wilson St, Atlanta, GA 30301" +141927,Wired Headphones,1,11.99,01/29/19 19:53,"618 Spruce St, Boston, MA 02215" +141928,34in Ultrawide Monitor,1,379.99,01/05/19 17:46,"752 River St, Los Angeles, CA 90001" +141929,AAA Batteries (4-pack),1,2.99,01/10/19 11:26,"346 Cedar St, New York City, NY 10001" +141930,AA Batteries (4-pack),2,3.84,01/16/19 23:21,"486 River St, Atlanta, GA 30301" +141931,Google Phone,1,600,01/12/19 11:57,"921 Spruce St, Los Angeles, CA 90001" +141932,AAA Batteries (4-pack),1,2.99,01/12/19 23:09,"720 4th St, Seattle, WA 98101" +141933,Apple Airpods Headphones,1,150,01/16/19 19:43,"210 Church St, Atlanta, GA 30301" +141934,iPhone,1,700,01/28/19 13:22,"678 10th St, Boston, MA 02215" +141935,Lightning Charging Cable,1,14.95,01/10/19 15:04,"62 11th St, Atlanta, GA 30301" +141936,20in Monitor,1,109.99,01/11/19 10:49,"915 Center St, New York City, NY 10001" +141937,AA Batteries (4-pack),1,3.84,01/28/19 13:32,"540 14th St, New York City, NY 10001" +141938,AA Batteries (4-pack),1,3.84,01/20/19 13:27,"89 West St, Los Angeles, CA 90001" +141939,Bose SoundSport Headphones,1,99.99,01/14/19 18:54,"226 Hickory St, Boston, MA 02215" +141940,iPhone,1,700,01/23/19 12:37,"493 6th St, San Francisco, CA 94016" +141940,Lightning Charging Cable,1,14.95,01/23/19 12:37,"493 6th St, San Francisco, CA 94016" +141941,Lightning Charging Cable,1,14.95,01/26/19 07:15,"433 Lake St, Los Angeles, CA 90001" +141942,AA Batteries (4-pack),1,3.84,01/16/19 20:56,"915 Maple St, Austin, TX 73301" +141943,Apple Airpods Headphones,1,150,01/27/19 23:00,"150 1st St, Dallas, TX 75001" +141943,Lightning Charging Cable,1,14.95,01/27/19 23:00,"150 1st St, Dallas, TX 75001" +141944,Lightning Charging Cable,1,14.95,01/15/19 11:42,"768 Adams St, Dallas, TX 75001" +141945,Google Phone,1,600,01/21/19 23:39,"800 West St, Boston, MA 02215" +141946,Wired Headphones,1,11.99,01/09/19 03:14,"302 Meadow St, San Francisco, CA 94016" +141947,Apple Airpods Headphones,1,150,01/25/19 23:05,"504 Sunset St, San Francisco, CA 94016" +141948,Wired Headphones,1,11.99,01/21/19 07:10,"625 Dogwood St, San Francisco, CA 94016" +141949,Wired Headphones,1,11.99,01/03/19 18:32,"700 11th St, Los Angeles, CA 90001" +141950,AA Batteries (4-pack),2,3.84,01/01/19 21:14,"714 Johnson St, Boston, MA 02215" +141951,Lightning Charging Cable,1,14.95,01/18/19 22:32,"670 Church St, Seattle, WA 98101" +141952,Wired Headphones,1,11.99,01/19/19 12:55,"828 Madison St, Los Angeles, CA 90001" +141953,Wired Headphones,1,11.99,01/01/19 19:48,"220 6th St, Los Angeles, CA 90001" +141954,Lightning Charging Cable,1,14.95,01/10/19 11:12,"288 Meadow St, Boston, MA 02215" +141955,AAA Batteries (4-pack),1,2.99,01/03/19 07:35,"36 Hickory St, Portland, OR 97035" +141956,Lightning Charging Cable,1,14.95,01/15/19 18:02,"322 Ridge St, New York City, NY 10001" +141957,AAA Batteries (4-pack),2,2.99,01/18/19 05:45,"672 Willow St, Los Angeles, CA 90001" +141958,Google Phone,1,600,01/17/19 08:02,"822 West St, Seattle, WA 98101" +141959,27in FHD Monitor,1,149.99,01/31/19 05:10,"581 Church St, Los Angeles, CA 90001" +141960,ThinkPad Laptop,1,999.99,01/05/19 15:05,"544 River St, San Francisco, CA 94016" +141961,34in Ultrawide Monitor,1,379.99,01/31/19 10:14,"651 Center St, Dallas, TX 75001" +141962,Apple Airpods Headphones,1,150,01/07/19 06:09,"230 Willow St, San Francisco, CA 94016" +141963,ThinkPad Laptop,1,999.99,01/19/19 13:45,"668 13th St, Los Angeles, CA 90001" +141964,27in 4K Gaming Monitor,1,389.99,01/22/19 19:15,"895 13th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +141965,Wired Headphones,1,11.99,01/02/19 09:45,"803 8th St, Boston, MA 02215" +141966,ThinkPad Laptop,1,999.99,01/02/19 04:17,"726 14th St, Austin, TX 73301" +141967,USB-C Charging Cable,1,11.95,01/06/19 00:29,"534 Spruce St, San Francisco, CA 94016" +141968,Lightning Charging Cable,1,14.95,01/03/19 16:19,"73 Center St, Boston, MA 02215" +141969,Google Phone,1,600,01/27/19 21:55,"326 Jackson St, Los Angeles, CA 90001" +141969,Bose SoundSport Headphones,1,99.99,01/27/19 21:55,"326 Jackson St, Los Angeles, CA 90001" +141970,USB-C Charging Cable,1,11.95,01/29/19 09:29,"421 Jackson St, Boston, MA 02215" +141971,iPhone,1,700,01/04/19 08:08,"468 Lakeview St, Austin, TX 73301" +141972,34in Ultrawide Monitor,1,379.99,01/14/19 14:00,"580 Church St, Boston, MA 02215" +141973,AA Batteries (4-pack),1,3.84,01/07/19 11:58,"965 Church St, Los Angeles, CA 90001" +141974,AA Batteries (4-pack),2,3.84,01/05/19 12:42,"431 Dogwood St, San Francisco, CA 94016" +141975,Lightning Charging Cable,1,14.95,01/03/19 19:13,"196 Lakeview St, Boston, MA 02215" +141976,Lightning Charging Cable,1,14.95,01/27/19 23:26,"364 Cedar St, Atlanta, GA 30301" +141977,AAA Batteries (4-pack),2,2.99,01/11/19 00:09,"534 Lincoln St, New York City, NY 10001" +141978,Lightning Charging Cable,1,14.95,01/04/19 08:00,"515 9th St, New York City, NY 10001" +141979,USB-C Charging Cable,2,11.95,01/20/19 09:25,"597 Meadow St, San Francisco, CA 94016" +141980,AA Batteries (4-pack),1,3.84,01/25/19 22:11,"311 Forest St, San Francisco, CA 94016" +141981,Lightning Charging Cable,1,14.95,01/25/19 12:12,"806 13th St, Atlanta, GA 30301" +141982,Bose SoundSport Headphones,1,99.99,01/12/19 16:11,"464 Madison St, Austin, TX 73301" +141983,Lightning Charging Cable,1,14.95,01/21/19 22:23,"885 7th St, San Francisco, CA 94016" +141984,iPhone,1,700,01/20/19 21:07,"62 Cherry St, Atlanta, GA 30301" +141985,Apple Airpods Headphones,1,150,01/16/19 14:32,"632 Hickory St, Austin, TX 73301" +141986,Google Phone,1,600,01/28/19 14:47,"61 11th St, Austin, TX 73301" +141987,Lightning Charging Cable,1,14.95,01/20/19 16:17,"267 Lincoln St, Seattle, WA 98101" +141988,20in Monitor,1,109.99,01/20/19 19:01,"643 Jackson St, Boston, MA 02215" +141989,Lightning Charging Cable,1,14.95,01/02/19 07:33,"777 Center St, Seattle, WA 98101" +141990,Wired Headphones,1,11.99,01/29/19 13:35,"570 12th St, Portland, ME 04101" +141991,27in FHD Monitor,1,149.99,01/11/19 14:25,"441 Pine St, Seattle, WA 98101" +141992,Apple Airpods Headphones,1,150,01/04/19 17:31,"804 11th St, New York City, NY 10001" +141993,AA Batteries (4-pack),1,3.84,01/14/19 22:58,"511 Forest St, Portland, OR 97035" +141994,iPhone,1,700,01/12/19 15:19,"282 1st St, Boston, MA 02215" +141995,Wired Headphones,1,11.99,01/01/19 07:51,"549 North St, Atlanta, GA 30301" +141996,34in Ultrawide Monitor,1,379.99,01/24/19 12:33,"251 Sunset St, San Francisco, CA 94016" +141997,Bose SoundSport Headphones,1,99.99,01/15/19 12:17,"92 North St, New York City, NY 10001" +141998,Bose SoundSport Headphones,1,99.99,01/10/19 16:24,"176 Church St, Los Angeles, CA 90001" +141999,LG Washing Machine,1,600.0,01/13/19 22:20,"593 Church St, Portland, OR 97035" +142000,Wired Headphones,1,11.99,01/17/19 14:34,"885 10th St, Atlanta, GA 30301" +142001,Flatscreen TV,1,300,01/06/19 15:36,"787 Sunset St, Boston, MA 02215" +142002,27in 4K Gaming Monitor,1,389.99,01/07/19 13:57,"277 Spruce St, Dallas, TX 75001" +142003,AAA Batteries (4-pack),1,2.99,01/14/19 16:51,"245 Walnut St, Dallas, TX 75001" +142004,27in FHD Monitor,1,149.99,01/14/19 12:14,"690 Jefferson St, San Francisco, CA 94016" +142005,Apple Airpods Headphones,1,150,01/03/19 10:19,"8 4th St, New York City, NY 10001" +142006,Bose SoundSport Headphones,1,99.99,01/23/19 16:42,"328 North St, New York City, NY 10001" +142007,20in Monitor,1,109.99,01/09/19 17:32,"656 6th St, Los Angeles, CA 90001" +142008,AA Batteries (4-pack),1,3.84,01/13/19 17:45,"578 Ridge St, New York City, NY 10001" +142009,iPhone,1,700,01/18/19 15:34,"800 Johnson St, New York City, NY 10001" +142010,AAA Batteries (4-pack),2,2.99,01/18/19 20:09,"68 Johnson St, Los Angeles, CA 90001" +142011,Wired Headphones,1,11.99,01/20/19 10:41,"823 Hickory St, Los Angeles, CA 90001" +142012,Bose SoundSport Headphones,1,99.99,01/15/19 10:00,"901 Lakeview St, Los Angeles, CA 90001" +142013,20in Monitor,1,109.99,01/08/19 13:04,"921 Adams St, Boston, MA 02215" +142014,34in Ultrawide Monitor,1,379.99,01/01/19 15:15,"187 Jackson St, Atlanta, GA 30301" +142015,Lightning Charging Cable,1,14.95,01/31/19 23:12,"959 North St, San Francisco, CA 94016" +142016,AA Batteries (4-pack),1,3.84,01/09/19 18:24,"83 South St, San Francisco, CA 94016" +142017,AAA Batteries (4-pack),1,2.99,01/31/19 06:07,"719 2nd St, Dallas, TX 75001" +142018,USB-C Charging Cable,1,11.95,01/18/19 15:31,"649 Lincoln St, Atlanta, GA 30301" +142019,Macbook Pro Laptop,1,1700,01/04/19 09:03,"206 11th St, San Francisco, CA 94016" +142020,iPhone,1,700,01/12/19 07:26,"816 12th St, Dallas, TX 75001" +142020,Lightning Charging Cable,1,14.95,01/12/19 07:26,"816 12th St, Dallas, TX 75001" +142021,27in FHD Monitor,1,149.99,01/03/19 16:34,"863 Hickory St, Austin, TX 73301" +142022,USB-C Charging Cable,1,11.95,01/01/19 12:03,"567 Main St, Boston, MA 02215" +142023,Bose SoundSport Headphones,1,99.99,01/08/19 14:07,"206 Forest St, San Francisco, CA 94016" +142024,Apple Airpods Headphones,1,150,01/06/19 17:59,"332 Park St, San Francisco, CA 94016" +142025,Apple Airpods Headphones,1,150,01/27/19 12:04,"916 1st St, Dallas, TX 75001" +142026,Lightning Charging Cable,1,14.95,01/03/19 14:33,"769 South St, Seattle, WA 98101" +142026,Apple Airpods Headphones,1,150,01/03/19 14:33,"769 South St, Seattle, WA 98101" +142027,AAA Batteries (4-pack),2,2.99,01/24/19 11:53,"194 Washington St, Portland, OR 97035" +142028,Wired Headphones,1,11.99,01/01/19 11:59,"25 Jackson St, New York City, NY 10001" +142029,USB-C Charging Cable,2,11.95,01/20/19 12:09,"107 Ridge St, Dallas, TX 75001" +142030,USB-C Charging Cable,1,11.95,01/01/19 12:33,"218 Washington St, San Francisco, CA 94016" +142031,27in 4K Gaming Monitor,1,389.99,01/26/19 10:57,"350 Willow St, Atlanta, GA 30301" +142032,Vareebadd Phone,1,400,01/14/19 12:18,"2 6th St, San Francisco, CA 94016" +142033,27in FHD Monitor,1,149.99,01/22/19 21:30,"135 Walnut St, New York City, NY 10001" +142034,AAA Batteries (4-pack),1,2.99,01/22/19 21:28,"257 13th St, Austin, TX 73301" +142035,USB-C Charging Cable,1,11.95,01/06/19 14:24,"509 Madison St, New York City, NY 10001" +142036,Wired Headphones,1,11.99,01/05/19 22:45,"883 Cherry St, Atlanta, GA 30301" +142037,AAA Batteries (4-pack),2,2.99,01/15/19 06:54,"823 Wilson St, Boston, MA 02215" +142038,Apple Airpods Headphones,1,150,01/31/19 18:45,"958 Maple St, Los Angeles, CA 90001" +142039,Apple Airpods Headphones,1,150,01/16/19 01:35,"274 2nd St, Atlanta, GA 30301" +142040,Flatscreen TV,1,300,01/14/19 11:29,"288 12th St, Boston, MA 02215" +142041,Macbook Pro Laptop,1,1700,01/31/19 12:04,"676 Madison St, Austin, TX 73301" +142042,AA Batteries (4-pack),1,3.84,01/25/19 05:27,"121 Highland St, San Francisco, CA 94016" +142043,AAA Batteries (4-pack),2,2.99,01/16/19 21:38,"986 Sunset St, Atlanta, GA 30301" +142044,AA Batteries (4-pack),1,3.84,01/02/19 22:42,"521 Park St, Boston, MA 02215" +142045,Wired Headphones,1,11.99,01/03/19 00:45,"188 1st St, New York City, NY 10001" +142046,AA Batteries (4-pack),1,3.84,01/14/19 15:16,"840 Johnson St, New York City, NY 10001" +142047,iPhone,1,700,01/23/19 12:14,"459 Pine St, Seattle, WA 98101" +142048,AA Batteries (4-pack),2,3.84,01/23/19 19:20,"267 12th St, New York City, NY 10001" +142049,Macbook Pro Laptop,1,1700,01/11/19 19:33,"397 Pine St, Los Angeles, CA 90001" +142050,AA Batteries (4-pack),2,3.84,01/22/19 21:08,"982 13th St, San Francisco, CA 94016" +142051,Bose SoundSport Headphones,2,99.99,01/08/19 14:03,"888 5th St, Dallas, TX 75001" +142052,Lightning Charging Cable,2,14.95,01/09/19 09:39,"316 13th St, San Francisco, CA 94016" +142053,Lightning Charging Cable,1,14.95,01/03/19 11:24,"262 Church St, Dallas, TX 75001" +142054,20in Monitor,1,109.99,01/10/19 10:25,"877 Cherry St, San Francisco, CA 94016" +142055,Wired Headphones,1,11.99,01/19/19 08:35,"73 Johnson St, Boston, MA 02215" +142056,Lightning Charging Cable,1,14.95,01/19/19 18:20,"71 Dogwood St, New York City, NY 10001" +142057,Wired Headphones,1,11.99,01/23/19 07:40,"771 4th St, San Francisco, CA 94016" +142058,USB-C Charging Cable,2,11.95,01/21/19 11:16,"824 10th St, Boston, MA 02215" +142059,Macbook Pro Laptop,1,1700,01/19/19 10:30,"942 10th St, New York City, NY 10001" +142060,iPhone,1,700,01/24/19 08:43,"258 9th St, Boston, MA 02215" +142061,Bose SoundSport Headphones,1,99.99,01/01/19 18:07,"935 Lincoln St, Atlanta, GA 30301" +142062,Apple Airpods Headphones,1,150,01/13/19 15:10,"539 Jefferson St, Los Angeles, CA 90001" +142063,AAA Batteries (4-pack),1,2.99,01/27/19 19:32,"91 Jefferson St, Atlanta, GA 30301" +142064,AAA Batteries (4-pack),1,2.99,01/06/19 20:27,"332 Willow St, Atlanta, GA 30301" +142065,Wired Headphones,1,11.99,01/27/19 15:02,"996 Madison St, New York City, NY 10001" +142066,AAA Batteries (4-pack),1,2.99,01/31/19 15:57,"144 Lincoln St, New York City, NY 10001" +142067,34in Ultrawide Monitor,1,379.99,01/23/19 23:34,"921 Sunset St, Dallas, TX 75001" +142068,27in FHD Monitor,1,149.99,01/20/19 07:51,"498 Jackson St, Dallas, TX 75001" +142069,27in FHD Monitor,1,149.99,01/21/19 17:05,"723 Forest St, Seattle, WA 98101" +142070,iPhone,1,700,01/26/19 22:39,"586 South St, Austin, TX 73301" +142071,iPhone,1,700,01/11/19 10:24,"827 Pine St, Dallas, TX 75001" +142072,AA Batteries (4-pack),1,3.84,01/27/19 14:21,"133 Washington St, San Francisco, CA 94016" +142073,USB-C Charging Cable,1,11.95,01/07/19 18:53,"149 Spruce St, New York City, NY 10001" +142074,Wired Headphones,1,11.99,01/03/19 11:55,"86 2nd St, Dallas, TX 75001" +142075,AA Batteries (4-pack),2,3.84,01/29/19 18:02,"727 River St, Los Angeles, CA 90001" +142076,AAA Batteries (4-pack),1,2.99,01/15/19 13:38,"217 Park St, New York City, NY 10001" +142077,Wired Headphones,1,11.99,01/11/19 21:18,"92 Church St, Boston, MA 02215" +142078,USB-C Charging Cable,1,11.95,01/06/19 22:25,"385 2nd St, New York City, NY 10001" +142079,Wired Headphones,1,11.99,01/17/19 08:41,"579 Meadow St, San Francisco, CA 94016" +142080,AAA Batteries (4-pack),1,2.99,01/11/19 05:52,"188 Spruce St, New York City, NY 10001" +142081,AA Batteries (4-pack),1,3.84,01/17/19 17:44,"211 Park St, San Francisco, CA 94016" +142082,Google Phone,1,600,01/31/19 23:06,"157 Ridge St, Los Angeles, CA 90001" +142083,Lightning Charging Cable,1,14.95,01/14/19 15:11,"170 7th St, San Francisco, CA 94016" +142084,AAA Batteries (4-pack),1,2.99,01/12/19 11:27,"341 9th St, Seattle, WA 98101" +142085,Lightning Charging Cable,1,14.95,01/15/19 08:57,"191 West St, Atlanta, GA 30301" +142086,Macbook Pro Laptop,1,1700,01/30/19 21:03,"837 Wilson St, Los Angeles, CA 90001" +142087,Bose SoundSport Headphones,1,99.99,01/26/19 19:56,"36 Adams St, New York City, NY 10001" +142088,Apple Airpods Headphones,1,150,01/25/19 21:10,"718 10th St, San Francisco, CA 94016" +142089,34in Ultrawide Monitor,1,379.99,01/30/19 19:40,"94 7th St, New York City, NY 10001" +142090,USB-C Charging Cable,2,11.95,01/13/19 19:21,"763 Madison St, Los Angeles, CA 90001" +142091,Apple Airpods Headphones,1,150,01/24/19 12:34,"483 North St, Portland, OR 97035" +142092,Apple Airpods Headphones,1,150,01/26/19 14:32,"74 Willow St, San Francisco, CA 94016" +142093,Lightning Charging Cable,1,14.95,01/07/19 18:24,"104 6th St, Los Angeles, CA 90001" +142094,iPhone,1,700,01/03/19 13:40,"722 Cedar St, Boston, MA 02215" +142095,Apple Airpods Headphones,1,150,01/04/19 19:14,"859 Center St, Los Angeles, CA 90001" +142096,USB-C Charging Cable,1,11.95,01/06/19 16:52,"702 8th St, Boston, MA 02215" +142097,USB-C Charging Cable,1,11.95,01/10/19 09:07,"111 Elm St, Portland, ME 04101" +142098,ThinkPad Laptop,1,999.99,01/04/19 15:29,"115 Lake St, San Francisco, CA 94016" +142099,Wired Headphones,1,11.99,01/24/19 15:33,"716 Dogwood St, Dallas, TX 75001" +142100,AAA Batteries (4-pack),1,2.99,01/16/19 10:22,"228 Maple St, New York City, NY 10001" +142101,USB-C Charging Cable,2,11.95,01/11/19 13:17,"779 Chestnut St, New York City, NY 10001" +142101,Bose SoundSport Headphones,1,99.99,01/11/19 13:17,"779 Chestnut St, New York City, NY 10001" +142102,AA Batteries (4-pack),1,3.84,01/09/19 21:40,"187 Main St, New York City, NY 10001" +142103,Lightning Charging Cable,1,14.95,01/17/19 06:51,"359 North St, Portland, OR 97035" +142104,Vareebadd Phone,1,400,01/05/19 10:05,"104 Dogwood St, Boston, MA 02215" +142105,AAA Batteries (4-pack),1,2.99,01/01/19 14:07,"670 2nd St, Seattle, WA 98101" +142106,Wired Headphones,1,11.99,01/28/19 10:14,"474 2nd St, Boston, MA 02215" +142107,AAA Batteries (4-pack),2,2.99,01/25/19 11:42,"803 Jackson St, Seattle, WA 98101" +142108,iPhone,1,700,01/26/19 19:01,"204 Chestnut St, Seattle, WA 98101" +142109,ThinkPad Laptop,1,999.99,01/23/19 17:57,"557 7th St, Seattle, WA 98101" +142110,Lightning Charging Cable,1,14.95,01/24/19 15:54,"177 Cherry St, New York City, NY 10001" +142111,Bose SoundSport Headphones,1,99.99,01/03/19 12:14,"999 Dogwood St, San Francisco, CA 94016" +142112,Macbook Pro Laptop,1,1700,01/16/19 21:36,"572 Lincoln St, Atlanta, GA 30301" +142113,ThinkPad Laptop,1,999.99,01/08/19 19:47,"16 Center St, Dallas, TX 75001" +142114,AA Batteries (4-pack),1,3.84,01/31/19 09:41,"733 Pine St, New York City, NY 10001" +142115,Vareebadd Phone,1,400,01/02/19 19:50,"434 Washington St, San Francisco, CA 94016" +142116,Wired Headphones,1,11.99,01/23/19 21:17,"702 Sunset St, San Francisco, CA 94016" +142117,Google Phone,1,600,01/15/19 19:25,"765 Sunset St, New York City, NY 10001" +142118,27in 4K Gaming Monitor,1,389.99,01/10/19 11:14,"45 9th St, Los Angeles, CA 90001" +142119,Apple Airpods Headphones,1,150,01/26/19 11:43,"279 11th St, New York City, NY 10001" +142120,USB-C Charging Cable,1,11.95,01/06/19 10:26,"690 Jefferson St, Dallas, TX 75001" +142121,AAA Batteries (4-pack),1,2.99,01/15/19 12:21,"379 6th St, Los Angeles, CA 90001" +142122,20in Monitor,1,109.99,01/14/19 07:00,"458 Chestnut St, Los Angeles, CA 90001" +142123,Lightning Charging Cable,3,14.95,01/22/19 22:42,"368 Dogwood St, Portland, OR 97035" +142124,AA Batteries (4-pack),4,3.84,01/06/19 08:25,"293 Jefferson St, Los Angeles, CA 90001" +142125,27in 4K Gaming Monitor,1,389.99,01/16/19 23:56,"154 Elm St, Boston, MA 02215" +142126,34in Ultrawide Monitor,1,379.99,01/18/19 12:48,"474 5th St, Boston, MA 02215" +142127,Google Phone,1,600,01/29/19 17:21,"379 Willow St, Atlanta, GA 30301" +142127,USB-C Charging Cable,1,11.95,01/29/19 17:21,"379 Willow St, Atlanta, GA 30301" +142128,27in FHD Monitor,1,149.99,01/19/19 16:47,"565 12th St, San Francisco, CA 94016" +142129,34in Ultrawide Monitor,1,379.99,01/09/19 15:54,"606 Washington St, Dallas, TX 75001" +142130,USB-C Charging Cable,1,11.95,01/21/19 10:21,"651 Washington St, Seattle, WA 98101" +142131,USB-C Charging Cable,1,11.95,01/07/19 19:58,"74 Maple St, New York City, NY 10001" +142132,Wired Headphones,1,11.99,01/10/19 20:47,"993 12th St, Los Angeles, CA 90001" +142133,Bose SoundSport Headphones,1,99.99,01/20/19 20:35,"602 11th St, Atlanta, GA 30301" +142134,Bose SoundSport Headphones,1,99.99,01/26/19 08:49,"104 Johnson St, Los Angeles, CA 90001" +142135,USB-C Charging Cable,1,11.95,01/18/19 19:39,"371 Jefferson St, Portland, OR 97035" +142136,AA Batteries (4-pack),1,3.84,01/15/19 13:53,"220 2nd St, Los Angeles, CA 90001" +142137,20in Monitor,1,109.99,01/26/19 12:20,"372 Elm St, Dallas, TX 75001" +142138,AAA Batteries (4-pack),2,2.99,01/20/19 23:34,"491 Church St, San Francisco, CA 94016" +142139,USB-C Charging Cable,1,11.95,01/13/19 22:50,"504 1st St, Los Angeles, CA 90001" +142140,Wired Headphones,1,11.99,01/18/19 14:24,"197 8th St, Seattle, WA 98101" +142141,Apple Airpods Headphones,1,150,01/16/19 10:43,"438 11th St, Boston, MA 02215" +142142,Bose SoundSport Headphones,1,99.99,01/30/19 23:47,"125 Sunset St, New York City, NY 10001" +142143,AAA Batteries (4-pack),2,2.99,01/04/19 23:13,"213 8th St, Los Angeles, CA 90001" +142144,AAA Batteries (4-pack),1,2.99,01/29/19 12:03,"948 Church St, New York City, NY 10001" +142144,AA Batteries (4-pack),2,3.84,01/29/19 12:03,"948 Church St, New York City, NY 10001" +142145,27in 4K Gaming Monitor,1,389.99,01/07/19 12:56,"101 Forest St, New York City, NY 10001" +142146,27in FHD Monitor,1,149.99,01/02/19 11:26,"122 5th St, New York City, NY 10001" +142147,Apple Airpods Headphones,1,150,01/25/19 09:39,"486 5th St, Seattle, WA 98101" +142148,Macbook Pro Laptop,1,1700,01/01/19 11:36,"752 Sunset St, San Francisco, CA 94016" +142149,Wired Headphones,1,11.99,01/27/19 17:38,"278 Washington St, Los Angeles, CA 90001" +142150,iPhone,1,700,01/17/19 20:04,"454 10th St, Seattle, WA 98101" +142151,AAA Batteries (4-pack),1,2.99,01/29/19 11:20,"285 8th St, Seattle, WA 98101" +142151,USB-C Charging Cable,1,11.95,01/29/19 11:20,"285 8th St, Seattle, WA 98101" +142152,AA Batteries (4-pack),1,3.84,01/14/19 14:37,"857 Lincoln St, San Francisco, CA 94016" +142153,Bose SoundSport Headphones,1,99.99,01/06/19 10:37,"954 1st St, Dallas, TX 75001" +142154,USB-C Charging Cable,3,11.95,01/10/19 13:10,"108 West St, Los Angeles, CA 90001" +142155,Bose SoundSport Headphones,1,99.99,01/30/19 16:12,"235 Center St, San Francisco, CA 94016" +142156,AA Batteries (4-pack),1,3.84,01/03/19 12:23,"444 South St, Boston, MA 02215" +142157,27in 4K Gaming Monitor,1,389.99,01/20/19 19:56,"496 13th St, San Francisco, CA 94016" +142158,AA Batteries (4-pack),1,3.84,01/23/19 18:19,"932 7th St, Los Angeles, CA 90001" +142159,Bose SoundSport Headphones,1,99.99,01/28/19 21:05,"811 14th St, Boston, MA 02215" +142160,Wired Headphones,2,11.99,01/24/19 12:26,"34 Church St, Seattle, WA 98101" +142161,AAA Batteries (4-pack),1,2.99,01/18/19 11:08,"775 7th St, Atlanta, GA 30301" +142162,Apple Airpods Headphones,1,150,01/25/19 17:30,"430 Lakeview St, Austin, TX 73301" +142163,AAA Batteries (4-pack),1,2.99,01/27/19 21:07,"213 Church St, San Francisco, CA 94016" +142164,Macbook Pro Laptop,1,1700,01/21/19 10:42,"415 Forest St, Portland, OR 97035" +142165,AAA Batteries (4-pack),3,2.99,01/26/19 12:34,"948 Lakeview St, Boston, MA 02215" +142166,27in 4K Gaming Monitor,1,389.99,01/14/19 17:51,"864 6th St, Portland, OR 97035" +142167,Lightning Charging Cable,1,14.95,01/23/19 19:14,"587 River St, San Francisco, CA 94016" +142168,Lightning Charging Cable,1,14.95,01/28/19 23:47,"729 6th St, Portland, OR 97035" +142169,27in 4K Gaming Monitor,1,389.99,01/24/19 18:29,"933 2nd St, Boston, MA 02215" +142170,ThinkPad Laptop,1,999.99,01/16/19 11:33,"477 Park St, Portland, OR 97035" +142171,Wired Headphones,1,11.99,01/05/19 22:56,"303 Sunset St, Dallas, TX 75001" +142172,Bose SoundSport Headphones,1,99.99,01/07/19 20:48,"599 North St, New York City, NY 10001" +142173,27in 4K Gaming Monitor,1,389.99,01/15/19 01:12,"522 Hickory St, New York City, NY 10001" +142174,AAA Batteries (4-pack),2,2.99,01/03/19 08:50,"759 11th St, Portland, ME 04101" +142175,AAA Batteries (4-pack),5,2.99,01/14/19 20:24,"667 4th St, San Francisco, CA 94016" +142176,Lightning Charging Cable,1,14.95,01/04/19 10:41,"721 Jackson St, San Francisco, CA 94016" +142177,Bose SoundSport Headphones,1,99.99,01/24/19 03:23,"967 Main St, Los Angeles, CA 90001" +142178,27in 4K Gaming Monitor,1,389.99,01/07/19 13:06,"741 West St, Austin, TX 73301" +142179,Lightning Charging Cable,1,14.95,01/05/19 23:23,"383 Madison St, Portland, ME 04101" +142180,Lightning Charging Cable,1,14.95,01/04/19 10:08,"291 Chestnut St, Seattle, WA 98101" +142181,AAA Batteries (4-pack),1,2.99,01/23/19 14:34,"950 Dogwood St, San Francisco, CA 94016" +,,,,, +142182,Wired Headphones,1,11.99,01/13/19 15:22,"863 Pine St, San Francisco, CA 94016" +142183,Wired Headphones,1,11.99,01/11/19 18:11,"655 North St, Atlanta, GA 30301" +142184,AAA Batteries (4-pack),1,2.99,01/13/19 23:05,"403 13th St, Los Angeles, CA 90001" +142185,AAA Batteries (4-pack),1,2.99,01/18/19 07:22,"89 8th St, Atlanta, GA 30301" +142186,AA Batteries (4-pack),2,3.84,01/30/19 10:27,"667 9th St, San Francisco, CA 94016" +142187,iPhone,1,700,01/03/19 18:51,"297 River St, Seattle, WA 98101" +142188,AAA Batteries (4-pack),2,2.99,01/28/19 09:05,"472 Dogwood St, Atlanta, GA 30301" +142189,27in 4K Gaming Monitor,1,389.99,01/18/19 14:23,"968 River St, Portland, ME 04101" +142190,Apple Airpods Headphones,1,150,01/16/19 13:30,"969 Johnson St, Dallas, TX 75001" +142191,USB-C Charging Cable,1,11.95,01/05/19 12:57,"942 Washington St, San Francisco, CA 94016" +142192,Wired Headphones,1,11.99,01/08/19 22:48,"180 Walnut St, San Francisco, CA 94016" +142193,Wired Headphones,1,11.99,01/05/19 17:54,"421 North St, Seattle, WA 98101" +142194,27in 4K Gaming Monitor,1,389.99,01/27/19 20:43,"22 Jefferson St, New York City, NY 10001" +142195,Lightning Charging Cable,1,14.95,01/11/19 06:34,"452 Main St, New York City, NY 10001" +142196,AAA Batteries (4-pack),1,2.99,01/27/19 14:27,"238 Pine St, New York City, NY 10001" +142197,AA Batteries (4-pack),1,3.84,01/18/19 23:26,"6 South St, Portland, OR 97035" +142198,ThinkPad Laptop,1,999.99,01/26/19 22:14,"560 Hill St, Seattle, WA 98101" +142199,Lightning Charging Cable,1,14.95,01/13/19 08:04,"662 Johnson St, New York City, NY 10001" +142200,AA Batteries (4-pack),3,3.84,01/14/19 11:37,"93 Madison St, Dallas, TX 75001" +142201,USB-C Charging Cable,1,11.95,01/18/19 11:32,"968 Cedar St, Dallas, TX 75001" +142202,AA Batteries (4-pack),1,3.84,01/02/19 23:44,"111 Center St, San Francisco, CA 94016" +142202,20in Monitor,1,109.99,01/02/19 23:44,"111 Center St, San Francisco, CA 94016" +142203,34in Ultrawide Monitor,1,379.99,01/05/19 13:48,"455 Forest St, Atlanta, GA 30301" +142204,Apple Airpods Headphones,1,150,01/26/19 19:57,"631 Highland St, Seattle, WA 98101" +142205,Apple Airpods Headphones,1,150,01/04/19 12:17,"71 Walnut St, New York City, NY 10001" +142206,Apple Airpods Headphones,1,150,01/15/19 12:50,"100 1st St, Boston, MA 02215" +142207,Bose SoundSport Headphones,1,99.99,01/29/19 16:55,"648 Adams St, Dallas, TX 75001" +142208,AA Batteries (4-pack),1,3.84,01/05/19 23:30,"441 Cherry St, New York City, NY 10001" +142209,27in FHD Monitor,1,149.99,01/05/19 11:02,"300 Center St, Dallas, TX 75001" +142210,Wired Headphones,1,11.99,01/08/19 15:55,"873 Cherry St, San Francisco, CA 94016" +142211,Macbook Pro Laptop,1,1700,01/03/19 14:53,"397 14th St, San Francisco, CA 94016" +142212,34in Ultrawide Monitor,1,379.99,01/08/19 10:55,"420 Maple St, Atlanta, GA 30301" +142213,27in 4K Gaming Monitor,1,389.99,01/07/19 21:26,"509 Hickory St, San Francisco, CA 94016" +142214,Google Phone,1,600,01/06/19 14:54,"67 Lake St, Boston, MA 02215" +142214,Wired Headphones,1,11.99,01/06/19 14:54,"67 Lake St, Boston, MA 02215" +142215,AAA Batteries (4-pack),3,2.99,01/09/19 21:14,"187 Chestnut St, San Francisco, CA 94016" +142216,Wired Headphones,1,11.99,01/28/19 10:29,"880 Willow St, Seattle, WA 98101" +142217,Flatscreen TV,1,300,01/01/19 20:56,"146 Highland St, Boston, MA 02215" +142218,27in FHD Monitor,1,149.99,01/03/19 21:06,"347 Johnson St, San Francisco, CA 94016" +142219,Flatscreen TV,1,300,01/17/19 23:15,"142 Jackson St, Dallas, TX 75001" +142220,AAA Batteries (4-pack),3,2.99,01/16/19 19:31,"749 7th St, San Francisco, CA 94016" +142221,Apple Airpods Headphones,1,150,01/15/19 23:33,"287 Cedar St, Dallas, TX 75001" +142222,AAA Batteries (4-pack),1,2.99,01/31/19 11:09,"818 Park St, New York City, NY 10001" +142223,AAA Batteries (4-pack),1,2.99,01/31/19 13:25,"724 Hill St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +142224,AA Batteries (4-pack),1,3.84,01/11/19 16:02,"589 11th St, San Francisco, CA 94016" +142225,AA Batteries (4-pack),2,3.84,01/07/19 21:13,"826 Jefferson St, Dallas, TX 75001" +142226,Wired Headphones,1,11.99,01/16/19 10:30,"452 Spruce St, San Francisco, CA 94016" +142227,USB-C Charging Cable,1,11.95,01/24/19 22:32,"118 1st St, Los Angeles, CA 90001" +142228,AAA Batteries (4-pack),1,2.99,01/08/19 14:06,"64 Spruce St, Dallas, TX 75001" +142229,27in 4K Gaming Monitor,1,389.99,01/21/19 22:04,"333 Highland St, Los Angeles, CA 90001" +142230,USB-C Charging Cable,1,11.95,01/26/19 17:50,"155 Maple St, Austin, TX 73301" +142230,USB-C Charging Cable,1,11.95,01/26/19 17:50,"155 Maple St, Austin, TX 73301" +142231,Bose SoundSport Headphones,1,99.99,01/13/19 07:44,"259 Center St, San Francisco, CA 94016" +142232,Wired Headphones,3,11.99,01/11/19 14:20,"692 Cedar St, Dallas, TX 75001" +142233,AAA Batteries (4-pack),2,2.99,01/13/19 12:01,"588 Highland St, Portland, OR 97035" +142234,AA Batteries (4-pack),3,3.84,01/28/19 21:52,"14 Hill St, San Francisco, CA 94016" +142235,AA Batteries (4-pack),2,3.84,01/18/19 00:45,"683 Jackson St, Atlanta, GA 30301" +142236,Vareebadd Phone,1,400,01/21/19 10:10,"674 Dogwood St, San Francisco, CA 94016" +142237,Bose SoundSport Headphones,1,99.99,01/24/19 14:21,"420 13th St, Atlanta, GA 30301" +142238,AA Batteries (4-pack),1,3.84,01/21/19 10:01,"949 4th St, Atlanta, GA 30301" +142239,Wired Headphones,1,11.99,01/10/19 21:03,"612 9th St, San Francisco, CA 94016" +142240,USB-C Charging Cable,2,11.95,01/24/19 10:37,"942 Hill St, Seattle, WA 98101" +142241,USB-C Charging Cable,1,11.95,01/10/19 19:55,"346 Highland St, Austin, TX 73301" +142242,Bose SoundSport Headphones,1,99.99,01/10/19 21:26,"282 Hickory St, Dallas, TX 75001" +142243,Lightning Charging Cable,1,14.95,01/19/19 13:02,"408 Walnut St, Boston, MA 02215" +142244,Flatscreen TV,1,300,01/16/19 13:10,"682 Lake St, New York City, NY 10001" +142245,Wired Headphones,1,11.99,01/15/19 10:34,"121 Ridge St, Los Angeles, CA 90001" +142246,AA Batteries (4-pack),1,3.84,01/17/19 13:53,"365 10th St, Atlanta, GA 30301" +142247,Lightning Charging Cable,1,14.95,01/22/19 12:41,"395 Madison St, San Francisco, CA 94016" +142248,iPhone,1,700,01/11/19 09:56,"772 Lakeview St, Seattle, WA 98101" +142249,iPhone,1,700,01/14/19 13:02,"386 Hill St, New York City, NY 10001" +142250,Wired Headphones,1,11.99,01/11/19 23:00,"233 Elm St, Seattle, WA 98101" +142251,AA Batteries (4-pack),2,3.84,01/29/19 11:38,"488 9th St, Austin, TX 73301" +142252,AAA Batteries (4-pack),1,2.99,01/13/19 17:42,"64 7th St, New York City, NY 10001" +142253,Google Phone,1,600,01/07/19 10:25,"245 14th St, Los Angeles, CA 90001" +142254,AAA Batteries (4-pack),1,2.99,01/28/19 21:14,"864 Cherry St, Dallas, TX 75001" +142255,Wired Headphones,1,11.99,01/10/19 13:52,"813 Center St, San Francisco, CA 94016" +142256,Wired Headphones,1,11.99,01/30/19 09:06,"214 Highland St, Los Angeles, CA 90001" +142257,20in Monitor,1,109.99,01/05/19 04:32,"324 11th St, Los Angeles, CA 90001" +142258,AAA Batteries (4-pack),1,2.99,01/26/19 12:17,"548 Jefferson St, Seattle, WA 98101" +142259,34in Ultrawide Monitor,1,379.99,01/21/19 18:52,"959 North St, New York City, NY 10001" +142260,USB-C Charging Cable,1,11.95,01/20/19 17:00,"222 Highland St, Austin, TX 73301" +142261,ThinkPad Laptop,1,999.99,01/04/19 05:02,"862 Walnut St, Boston, MA 02215" +142261,AAA Batteries (4-pack),1,2.99,01/04/19 05:02,"862 Walnut St, Boston, MA 02215" +142262,AAA Batteries (4-pack),2,2.99,01/30/19 12:09,"200 Cedar St, New York City, NY 10001" +142263,Lightning Charging Cable,1,14.95,01/26/19 16:54,"218 Church St, Atlanta, GA 30301" +142264,Bose SoundSport Headphones,1,99.99,01/28/19 15:45,"400 12th St, Atlanta, GA 30301" +142265,AA Batteries (4-pack),1,3.84,01/10/19 12:26,"736 Center St, Atlanta, GA 30301" +142266,Apple Airpods Headphones,1,150,01/09/19 22:41,"804 1st St, Los Angeles, CA 90001" +142267,Lightning Charging Cable,1,14.95,01/02/19 18:35,"215 Meadow St, San Francisco, CA 94016" +142268,Bose SoundSport Headphones,1,99.99,01/21/19 19:57,"307 11th St, New York City, NY 10001" +142269,AA Batteries (4-pack),1,3.84,01/10/19 09:24,"357 10th St, Los Angeles, CA 90001" +142270,Macbook Pro Laptop,1,1700,01/21/19 16:14,"68 Meadow St, Los Angeles, CA 90001" +142271,AA Batteries (4-pack),2,3.84,01/06/19 10:08,"176 Jackson St, Los Angeles, CA 90001" +142272,iPhone,1,700,01/13/19 13:56,"927 Elm St, San Francisco, CA 94016" +142273,Wired Headphones,1,11.99,01/11/19 20:19,"52 Pine St, Austin, TX 73301" +142274,27in FHD Monitor,1,149.99,01/16/19 12:38,"704 Forest St, Boston, MA 02215" +142275,iPhone,1,700,01/08/19 10:04,"924 12th St, San Francisco, CA 94016" +142276,AA Batteries (4-pack),1,3.84,01/29/19 12:59,"586 Pine St, San Francisco, CA 94016" +142277,27in 4K Gaming Monitor,1,389.99,01/22/19 18:37,"243 Meadow St, Atlanta, GA 30301" +142278,27in FHD Monitor,1,149.99,01/29/19 01:15,"556 11th St, Los Angeles, CA 90001" +142279,USB-C Charging Cable,1,11.95,01/25/19 17:45,"197 Church St, New York City, NY 10001" +142280,Wired Headphones,1,11.99,01/26/19 16:57,"206 Cedar St, Los Angeles, CA 90001" +142281,Apple Airpods Headphones,1,150,01/15/19 08:28,"740 Center St, Austin, TX 73301" +142282,Wired Headphones,1,11.99,01/19/19 23:48,"145 Main St, Portland, OR 97035" +142283,AA Batteries (4-pack),3,3.84,01/15/19 13:08,"454 Spruce St, San Francisco, CA 94016" +142284,AAA Batteries (4-pack),1,2.99,01/26/19 14:02,"272 5th St, San Francisco, CA 94016" +142285,AAA Batteries (4-pack),1,2.99,01/20/19 12:03,"121 9th St, San Francisco, CA 94016" +142286,27in FHD Monitor,1,149.99,01/02/19 17:32,"635 10th St, San Francisco, CA 94016" +142287,iPhone,1,700,01/02/19 16:20,"540 Church St, San Francisco, CA 94016" +142288,Wired Headphones,1,11.99,01/31/19 12:16,"866 River St, Los Angeles, CA 90001" +142289,Lightning Charging Cable,1,14.95,01/05/19 07:18,"863 6th St, San Francisco, CA 94016" +142290,Bose SoundSport Headphones,1,99.99,01/31/19 11:13,"136 River St, Austin, TX 73301" +142291,34in Ultrawide Monitor,1,379.99,01/31/19 22:17,"105 Ridge St, Portland, ME 04101" +142292,Lightning Charging Cable,1,14.95,01/03/19 21:34,"421 5th St, Los Angeles, CA 90001" +142293,Vareebadd Phone,1,400,01/06/19 23:23,"924 Lakeview St, San Francisco, CA 94016" +142294,USB-C Charging Cable,1,11.95,01/23/19 19:37,"311 Sunset St, Los Angeles, CA 90001" +142295,Vareebadd Phone,1,400,01/12/19 15:38,"850 8th St, San Francisco, CA 94016" +142295,USB-C Charging Cable,1,11.95,01/12/19 15:38,"850 8th St, San Francisco, CA 94016" +142296,Google Phone,1,600,01/31/19 11:08,"357 Walnut St, New York City, NY 10001" +142296,Wired Headphones,1,11.99,01/31/19 11:08,"357 Walnut St, New York City, NY 10001" +142297,Lightning Charging Cable,1,14.95,01/30/19 10:30,"836 1st St, Boston, MA 02215" +142298,USB-C Charging Cable,1,11.95,01/29/19 21:12,"377 2nd St, Seattle, WA 98101" +142299,Lightning Charging Cable,1,14.95,01/05/19 21:29,"571 Spruce St, Atlanta, GA 30301" +142300,USB-C Charging Cable,1,11.95,01/11/19 00:19,"52 Chestnut St, Atlanta, GA 30301" +142301,Bose SoundSport Headphones,1,99.99,01/23/19 13:08,"475 Hickory St, Dallas, TX 75001" +142302,Wired Headphones,1,11.99,01/31/19 14:24,"450 North St, Dallas, TX 75001" +142303,Bose SoundSport Headphones,1,99.99,01/22/19 18:38,"910 Main St, San Francisco, CA 94016" +142304,20in Monitor,1,109.99,01/16/19 19:46,"310 Johnson St, San Francisco, CA 94016" +142305,Lightning Charging Cable,1,14.95,01/31/19 18:46,"728 Meadow St, New York City, NY 10001" +142306,Bose SoundSport Headphones,1,99.99,01/14/19 01:29,"385 Center St, Boston, MA 02215" +142307,AA Batteries (4-pack),1,3.84,01/25/19 15:58,"186 Forest St, Dallas, TX 75001" +142308,Lightning Charging Cable,1,14.95,01/12/19 21:40,"626 7th St, New York City, NY 10001" +142309,27in FHD Monitor,1,149.99,01/26/19 20:26,"128 12th St, Los Angeles, CA 90001" +142310,AA Batteries (4-pack),1,3.84,01/18/19 13:26,"82 13th St, San Francisco, CA 94016" +142311,Macbook Pro Laptop,1,1700,01/07/19 14:44,"655 Forest St, Los Angeles, CA 90001" +142312,27in FHD Monitor,1,149.99,01/07/19 05:47,"543 14th St, Los Angeles, CA 90001" +142313,Wired Headphones,1,11.99,01/01/19 10:32,"138 Meadow St, Los Angeles, CA 90001" +142314,ThinkPad Laptop,1,999.99,01/25/19 19:46,"271 Meadow St, San Francisco, CA 94016" +142315,AA Batteries (4-pack),2,3.84,01/07/19 07:11,"590 Hill St, Dallas, TX 75001" +142316,Bose SoundSport Headphones,1,99.99,01/09/19 17:40,"803 Maple St, Boston, MA 02215" +142317,AA Batteries (4-pack),1,3.84,01/28/19 14:36,"923 Sunset St, San Francisco, CA 94016" +142318,Apple Airpods Headphones,1,150,01/07/19 13:15,"362 River St, Austin, TX 73301" +142319,USB-C Charging Cable,1,11.95,01/13/19 10:49,"711 Lake St, San Francisco, CA 94016" +142320,Bose SoundSport Headphones,1,99.99,01/27/19 18:20,"930 Park St, Los Angeles, CA 90001" +142321,USB-C Charging Cable,2,11.95,01/12/19 20:29,"607 Lincoln St, Los Angeles, CA 90001" +142322,ThinkPad Laptop,1,999.99,01/23/19 18:46,"419 Main St, Boston, MA 02215" +142323,Lightning Charging Cable,1,14.95,01/07/19 21:21,"790 Forest St, Seattle, WA 98101" +142324,USB-C Charging Cable,1,11.95,01/08/19 20:22,"257 Lakeview St, San Francisco, CA 94016" +142325,AA Batteries (4-pack),4,3.84,01/28/19 13:27,"771 4th St, Los Angeles, CA 90001" +142326,Wired Headphones,1,11.99,01/30/19 00:44,"530 13th St, San Francisco, CA 94016" +142327,27in 4K Gaming Monitor,1,389.99,01/08/19 18:35,"175 Highland St, Atlanta, GA 30301" +142328,Lightning Charging Cable,1,14.95,01/27/19 16:25,"377 5th St, New York City, NY 10001" +142329,USB-C Charging Cable,1,11.95,01/01/19 22:49,"101 Maple St, San Francisco, CA 94016" +142330,AA Batteries (4-pack),1,3.84,01/20/19 09:49,"772 Elm St, Los Angeles, CA 90001" +142331,Lightning Charging Cable,1,14.95,02/01/19 03:11,"769 Lakeview St, New York City, NY 10001" +142332,AAA Batteries (4-pack),1,2.99,01/30/19 12:05,"424 Lake St, Atlanta, GA 30301" +142333,Lightning Charging Cable,1,14.95,01/07/19 01:35,"741 Washington St, New York City, NY 10001" +142334,27in FHD Monitor,1,149.99,01/19/19 14:51,"665 Spruce St, Los Angeles, CA 90001" +142335,AAA Batteries (4-pack),1,2.99,01/22/19 11:41,"379 Hill St, Los Angeles, CA 90001" +142336,iPhone,1,700,01/02/19 21:08,"436 South St, Dallas, TX 75001" +142337,AAA Batteries (4-pack),1,2.99,01/09/19 11:05,"4 5th St, Seattle, WA 98101" +142338,Bose SoundSport Headphones,1,99.99,01/27/19 19:01,"522 6th St, San Francisco, CA 94016" +142339,AA Batteries (4-pack),1,3.84,01/28/19 18:47,"622 Jackson St, New York City, NY 10001" +142340,AA Batteries (4-pack),1,3.84,01/22/19 19:32,"635 Ridge St, Los Angeles, CA 90001" +142341,20in Monitor,1,109.99,01/25/19 17:23,"127 Walnut St, Dallas, TX 75001" +142342,AA Batteries (4-pack),1,3.84,01/27/19 20:14,"680 Center St, Los Angeles, CA 90001" +142343,AAA Batteries (4-pack),1,2.99,01/01/19 12:21,"380 Lake St, New York City, NY 10001" +142344,USB-C Charging Cable,1,11.95,01/04/19 09:04,"232 Jefferson St, Los Angeles, CA 90001" +142345,ThinkPad Laptop,1,999.99,01/29/19 20:10,"876 8th St, San Francisco, CA 94016" +142346,USB-C Charging Cable,1,11.95,01/10/19 21:49,"977 Willow St, San Francisco, CA 94016" +142347,Flatscreen TV,1,300,01/18/19 20:43,"167 Lincoln St, Seattle, WA 98101" +142348,AAA Batteries (4-pack),1,2.99,01/09/19 13:56,"596 Park St, San Francisco, CA 94016" +142349,Macbook Pro Laptop,1,1700,01/17/19 18:06,"182 Lincoln St, San Francisco, CA 94016" +142350,AAA Batteries (4-pack),1,2.99,01/08/19 15:53,"824 11th St, Dallas, TX 75001" +142351,AA Batteries (4-pack),2,3.84,01/05/19 09:23,"26 Church St, Portland, OR 97035" +142352,Flatscreen TV,1,300,01/28/19 15:04,"892 Cedar St, San Francisco, CA 94016" +142353,AAA Batteries (4-pack),2,2.99,01/05/19 18:47,"422 5th St, Los Angeles, CA 90001" +142354,Apple Airpods Headphones,1,150,01/21/19 22:40,"348 River St, New York City, NY 10001" +142355,USB-C Charging Cable,1,11.95,01/17/19 20:10,"963 9th St, San Francisco, CA 94016" +142356,Google Phone,1,600,01/26/19 09:59,"940 6th St, New York City, NY 10001" +142357,Apple Airpods Headphones,1,150,01/11/19 00:20,"524 Ridge St, Dallas, TX 75001" +142358,34in Ultrawide Monitor,1,379.99,01/25/19 17:47,"707 Walnut St, Boston, MA 02215" +142359,Wired Headphones,1,11.99,01/18/19 21:55,"945 11th St, Atlanta, GA 30301" +142360,Flatscreen TV,1,300,01/11/19 14:50,"322 2nd St, Portland, OR 97035" +142361,Flatscreen TV,1,300,01/14/19 01:48,"153 6th St, Dallas, TX 75001" +142362,34in Ultrawide Monitor,1,379.99,01/01/19 08:54,"813 Forest St, San Francisco, CA 94016" +142363,ThinkPad Laptop,1,999.99,01/06/19 16:31,"485 Park St, Portland, OR 97035" +142364,Bose SoundSport Headphones,1,99.99,01/01/19 22:13,"143 Hickory St, Atlanta, GA 30301" +142365,Vareebadd Phone,1,400,01/03/19 14:00,"615 8th St, Austin, TX 73301" +142366,Lightning Charging Cable,1,14.95,01/25/19 07:01,"967 Lincoln St, New York City, NY 10001" +142367,AAA Batteries (4-pack),1,2.99,01/27/19 21:09,"39 Elm St, Seattle, WA 98101" +142368,USB-C Charging Cable,1,11.95,01/27/19 00:24,"996 9th St, Dallas, TX 75001" +142369,Wired Headphones,1,11.99,01/12/19 19:23,"633 1st St, Boston, MA 02215" +142370,Wired Headphones,1,11.99,01/19/19 18:01,"276 7th St, Seattle, WA 98101" +142371,USB-C Charging Cable,1,11.95,01/21/19 12:56,"786 Elm St, Boston, MA 02215" +142371,Wired Headphones,1,11.99,01/21/19 12:56,"786 Elm St, Boston, MA 02215" +142372,Apple Airpods Headphones,1,150,01/05/19 09:24,"336 Ridge St, Seattle, WA 98101" +142373,USB-C Charging Cable,1,11.95,01/02/19 10:24,"201 5th St, Boston, MA 02215" +142374,AA Batteries (4-pack),1,3.84,01/31/19 09:01,"934 6th St, Seattle, WA 98101" +142375,Lightning Charging Cable,1,14.95,01/16/19 22:14,"205 South St, Los Angeles, CA 90001" +142376,34in Ultrawide Monitor,1,379.99,01/27/19 16:28,"562 Forest St, Portland, OR 97035" +142377,Wired Headphones,1,11.99,01/18/19 13:50,"280 Main St, Seattle, WA 98101" +142378,20in Monitor,1,109.99,01/12/19 23:17,"434 Willow St, San Francisco, CA 94016" +142379,27in FHD Monitor,1,149.99,01/21/19 20:35,"603 South St, San Francisco, CA 94016" +142380,ThinkPad Laptop,1,999.99,01/27/19 17:07,"26 River St, San Francisco, CA 94016" +142381,Bose SoundSport Headphones,1,99.99,01/22/19 19:45,"739 Cherry St, Atlanta, GA 30301" +142382,Lightning Charging Cable,1,14.95,01/15/19 09:07,"834 Dogwood St, Los Angeles, CA 90001" +142383,AAA Batteries (4-pack),2,2.99,01/16/19 12:08,"460 13th St, New York City, NY 10001" +142384,20in Monitor,1,109.99,01/20/19 12:35,"878 Wilson St, Seattle, WA 98101" +142385,Bose SoundSport Headphones,1,99.99,01/07/19 15:55,"574 Madison St, New York City, NY 10001" +142386,Macbook Pro Laptop,1,1700,01/29/19 07:52,"629 12th St, Dallas, TX 75001" +142387,Lightning Charging Cable,1,14.95,01/29/19 20:41,"359 Cherry St, San Francisco, CA 94016" +142388,Wired Headphones,1,11.99,01/07/19 16:14,"897 Hickory St, Dallas, TX 75001" +142389,AA Batteries (4-pack),1,3.84,01/08/19 08:29,"661 Jackson St, Boston, MA 02215" +142390,Bose SoundSport Headphones,1,99.99,01/08/19 20:37,"689 10th St, New York City, NY 10001" +142391,USB-C Charging Cable,1,11.95,01/07/19 10:03,"795 Pine St, San Francisco, CA 94016" +142392,Google Phone,1,600,01/25/19 01:18,"853 Adams St, New York City, NY 10001" +142393,AAA Batteries (4-pack),1,2.99,01/17/19 19:16,"752 Church St, San Francisco, CA 94016" +142394,Apple Airpods Headphones,1,150,01/24/19 14:55,"507 Hickory St, San Francisco, CA 94016" +142395,Google Phone,1,600,01/08/19 13:45,"596 Madison St, San Francisco, CA 94016" +142395,20in Monitor,1,109.99,01/08/19 13:45,"596 Madison St, San Francisco, CA 94016" +142396,Wired Headphones,1,11.99,01/03/19 20:19,"5 Elm St, San Francisco, CA 94016" +142397,Lightning Charging Cable,1,14.95,01/24/19 12:50,"564 5th St, Dallas, TX 75001" +142398,AA Batteries (4-pack),2,3.84,01/31/19 19:21,"62 Willow St, New York City, NY 10001" +142399,AAA Batteries (4-pack),2,2.99,01/16/19 16:50,"584 Adams St, Portland, ME 04101" +142400,Apple Airpods Headphones,1,150,01/15/19 13:24,"77 13th St, Boston, MA 02215" +142401,Lightning Charging Cable,1,14.95,01/06/19 10:47,"767 Washington St, Atlanta, GA 30301" +142402,iPhone,1,700,01/18/19 14:28,"103 Washington St, Los Angeles, CA 90001" +142403,Wired Headphones,1,11.99,01/06/19 14:29,"937 Main St, Los Angeles, CA 90001" +142404,USB-C Charging Cable,1,11.95,01/07/19 01:11,"945 Walnut St, New York City, NY 10001" +142405,AAA Batteries (4-pack),1,2.99,01/16/19 11:43,"440 Madison St, Atlanta, GA 30301" +142406,27in FHD Monitor,1,149.99,01/12/19 17:52,"308 South St, Los Angeles, CA 90001" +142407,Apple Airpods Headphones,1,150,01/08/19 21:24,"825 Meadow St, Atlanta, GA 30301" +142408,Wired Headphones,1,11.99,01/16/19 21:09,"191 Jackson St, Dallas, TX 75001" +142409,Google Phone,1,600,01/29/19 12:46,"112 North St, Boston, MA 02215" +142410,Wired Headphones,1,11.99,01/11/19 21:09,"430 4th St, Atlanta, GA 30301" +142411,AA Batteries (4-pack),1,3.84,01/22/19 10:55,"992 Ridge St, Seattle, WA 98101" +142412,Bose SoundSport Headphones,1,99.99,01/06/19 22:19,"695 Forest St, San Francisco, CA 94016" +142413,Apple Airpods Headphones,1,150,01/27/19 10:38,"477 Highland St, San Francisco, CA 94016" +142414,USB-C Charging Cable,2,11.95,01/21/19 16:34,"81 6th St, Los Angeles, CA 90001" +142415,Apple Airpods Headphones,1,150,01/08/19 21:53,"774 Cedar St, Boston, MA 02215" +142416,Lightning Charging Cable,1,14.95,01/30/19 08:38,"139 Maple St, Los Angeles, CA 90001" +142417,iPhone,1,700,01/28/19 00:14,"355 Main St, Los Angeles, CA 90001" +142418,Macbook Pro Laptop,1,1700,01/22/19 19:15,"448 Hickory St, Portland, ME 04101" +142419,USB-C Charging Cable,1,11.95,01/06/19 21:02,"884 6th St, Boston, MA 02215" +142420,Wired Headphones,1,11.99,01/13/19 23:26,"4 Lakeview St, Boston, MA 02215" +142421,Apple Airpods Headphones,1,150,01/08/19 18:14,"92 4th St, Boston, MA 02215" +142422,Apple Airpods Headphones,1,150,01/05/19 18:15,"888 River St, New York City, NY 10001" +142423,AA Batteries (4-pack),1,3.84,01/28/19 20:03,"571 Elm St, Seattle, WA 98101" +142424,USB-C Charging Cable,1,11.95,01/03/19 12:58,"338 11th St, San Francisco, CA 94016" +142425,Apple Airpods Headphones,1,150,01/19/19 00:46,"569 6th St, San Francisco, CA 94016" +142426,iPhone,1,700,01/30/19 23:59,"452 Highland St, Atlanta, GA 30301" +142427,Lightning Charging Cable,1,14.95,01/30/19 13:06,"674 Highland St, New York City, NY 10001" +142428,Bose SoundSport Headphones,1,99.99,01/18/19 13:47,"474 Main St, Portland, OR 97035" +142429,iPhone,1,700,01/07/19 12:41,"660 Lake St, Atlanta, GA 30301" +142430,Wired Headphones,1,11.99,01/27/19 19:21,"482 7th St, Los Angeles, CA 90001" +142431,iPhone,1,700,01/02/19 09:37,"387 Hill St, Los Angeles, CA 90001" +142432,Apple Airpods Headphones,1,150,01/12/19 07:08,"294 14th St, Seattle, WA 98101" +142432,USB-C Charging Cable,1,11.95,01/12/19 07:08,"294 14th St, Seattle, WA 98101" +142433,iPhone,1,700,01/10/19 12:39,"564 Willow St, Boston, MA 02215" +142434,Wired Headphones,1,11.99,01/12/19 14:33,"387 Main St, Austin, TX 73301" +142435,Bose SoundSport Headphones,1,99.99,01/14/19 00:00,"720 Main St, Portland, OR 97035" +142436,Google Phone,1,600,01/20/19 08:30,"773 7th St, Los Angeles, CA 90001" +142437,Apple Airpods Headphones,1,150,01/06/19 18:43,"773 Pine St, San Francisco, CA 94016" +142438,USB-C Charging Cable,1,11.95,01/17/19 15:01,"582 1st St, San Francisco, CA 94016" +142439,Lightning Charging Cable,1,14.95,01/05/19 14:57,"542 2nd St, Los Angeles, CA 90001" +142440,Bose SoundSport Headphones,1,99.99,01/20/19 19:53,"532 9th St, Portland, OR 97035" +142441,USB-C Charging Cable,1,11.95,01/02/19 12:11,"784 11th St, Los Angeles, CA 90001" +142442,Lightning Charging Cable,1,14.95,01/21/19 13:53,"874 South St, Boston, MA 02215" +142443,Bose SoundSport Headphones,1,99.99,01/14/19 16:01,"345 South St, New York City, NY 10001" +142444,AAA Batteries (4-pack),1,2.99,01/25/19 16:34,"511 13th St, Atlanta, GA 30301" +142445,Apple Airpods Headphones,1,150,01/14/19 18:11,"812 4th St, Dallas, TX 75001" +142446,ThinkPad Laptop,1,999.99,01/16/19 07:24,"477 Ridge St, San Francisco, CA 94016" +142447,Apple Airpods Headphones,1,150,01/30/19 13:39,"943 7th St, Los Angeles, CA 90001" +142448,USB-C Charging Cable,1,11.95,01/16/19 20:31,"724 River St, New York City, NY 10001" +142449,Apple Airpods Headphones,1,150,01/12/19 17:32,"712 8th St, San Francisco, CA 94016" +142450,iPhone,1,700,01/13/19 22:57,"664 4th St, Dallas, TX 75001" +142450,Lightning Charging Cable,1,14.95,01/13/19 22:57,"664 4th St, Dallas, TX 75001" +142451,USB-C Charging Cable,1,11.95,01/23/19 14:01,"784 West St, Boston, MA 02215" +142452,27in FHD Monitor,1,149.99,01/18/19 12:36,"181 Elm St, Dallas, TX 75001" +142453,27in 4K Gaming Monitor,1,389.99,01/13/19 22:28,"84 Maple St, Dallas, TX 75001" +142454,Bose SoundSport Headphones,1,99.99,01/12/19 09:43,"301 Hickory St, Dallas, TX 75001" +142455,27in 4K Gaming Monitor,1,389.99,01/20/19 20:05,"116 Chestnut St, Portland, OR 97035" +142456,Lightning Charging Cable,1,14.95,01/21/19 19:25,"565 Spruce St, Austin, TX 73301" +142457,Vareebadd Phone,1,400,01/29/19 09:40,"295 Spruce St, San Francisco, CA 94016" +142457,USB-C Charging Cable,1,11.95,01/29/19 09:40,"295 Spruce St, San Francisco, CA 94016" +142458,USB-C Charging Cable,1,11.95,01/17/19 23:07,"242 4th St, Portland, OR 97035" +142459,Macbook Pro Laptop,1,1700,01/09/19 11:49,"236 Park St, Portland, OR 97035" +142460,Wired Headphones,1,11.99,01/18/19 16:33,"947 Ridge St, Seattle, WA 98101" +142461,Bose SoundSport Headphones,1,99.99,01/31/19 18:15,"574 Wilson St, Austin, TX 73301" +142462,iPhone,1,700,01/16/19 12:47,"292 Sunset St, New York City, NY 10001" +142463,27in FHD Monitor,1,149.99,01/04/19 22:41,"58 Park St, Los Angeles, CA 90001" +142464,AA Batteries (4-pack),1,3.84,01/02/19 20:13,"992 Dogwood St, Austin, TX 73301" +142465,Apple Airpods Headphones,1,150,01/25/19 15:49,"695 River St, San Francisco, CA 94016" +142466,Lightning Charging Cable,1,14.95,01/24/19 19:39,"656 Park St, San Francisco, CA 94016" +142467,Wired Headphones,1,11.99,01/02/19 16:05,"474 Willow St, Atlanta, GA 30301" +142468,Lightning Charging Cable,1,14.95,01/16/19 08:36,"542 Chestnut St, Atlanta, GA 30301" +142469,AAA Batteries (4-pack),2,2.99,01/17/19 21:32,"891 Willow St, New York City, NY 10001" +142470,Lightning Charging Cable,1,14.95,01/24/19 17:31,"525 12th St, Austin, TX 73301" +142471,AA Batteries (4-pack),1,3.84,01/30/19 10:18,"249 West St, Seattle, WA 98101" +142472,20in Monitor,1,109.99,01/10/19 16:56,"808 1st St, Los Angeles, CA 90001" +142473,Bose SoundSport Headphones,1,99.99,01/03/19 20:27,"863 6th St, Seattle, WA 98101" +142474,Macbook Pro Laptop,1,1700,01/13/19 16:21,"957 8th St, Los Angeles, CA 90001" +142475,Apple Airpods Headphones,1,150,01/20/19 16:58,"174 West St, Los Angeles, CA 90001" +142476,AA Batteries (4-pack),3,3.84,01/15/19 00:04,"934 Wilson St, San Francisco, CA 94016" +142477,AAA Batteries (4-pack),1,2.99,01/08/19 20:00,"870 Meadow St, Los Angeles, CA 90001" +142478,AA Batteries (4-pack),1,3.84,01/23/19 15:35,"874 Park St, Austin, TX 73301" +142479,AA Batteries (4-pack),1,3.84,01/13/19 16:45,"172 Willow St, San Francisco, CA 94016" +142480,Lightning Charging Cable,1,14.95,01/01/19 21:45,"555 Meadow St, Austin, TX 73301" +142481,iPhone,1,700,01/19/19 10:49,"710 Lake St, Los Angeles, CA 90001" +142481,Wired Headphones,1,11.99,01/19/19 10:49,"710 Lake St, Los Angeles, CA 90001" +142482,USB-C Charging Cable,1,11.95,01/18/19 17:36,"913 6th St, New York City, NY 10001" +142483,Wired Headphones,1,11.99,01/25/19 15:32,"357 Adams St, Dallas, TX 75001" +142484,Google Phone,1,600,01/11/19 18:16,"122 Elm St, Portland, OR 97035" +142485,iPhone,1,700,01/11/19 18:34,"392 Willow St, Portland, OR 97035" +142486,AAA Batteries (4-pack),2,2.99,01/21/19 17:37,"409 Adams St, Los Angeles, CA 90001" +142487,Wired Headphones,1,11.99,01/25/19 12:18,"916 6th St, Atlanta, GA 30301" +142488,27in FHD Monitor,1,149.99,01/26/19 07:12,"656 Chestnut St, Dallas, TX 75001" +142489,Wired Headphones,1,11.99,01/12/19 00:11,"924 Pine St, Los Angeles, CA 90001" +142489,iPhone,1,700,01/12/19 00:11,"924 Pine St, Los Angeles, CA 90001" +142490,AA Batteries (4-pack),1,3.84,01/04/19 20:05,"629 Park St, New York City, NY 10001" +142491,USB-C Charging Cable,1,11.95,01/03/19 16:15,"871 13th St, San Francisco, CA 94016" +142492,AA Batteries (4-pack),1,3.84,01/25/19 12:14,"826 Elm St, San Francisco, CA 94016" +142493,AAA Batteries (4-pack),1,2.99,01/14/19 13:52,"885 14th St, Dallas, TX 75001" +142494,Wired Headphones,1,11.99,01/26/19 19:41,"950 Ridge St, Atlanta, GA 30301" +142495,AAA Batteries (4-pack),1,2.99,01/04/19 16:27,"796 Lake St, New York City, NY 10001" +142496,27in FHD Monitor,1,149.99,01/31/19 12:55,"645 Lake St, Seattle, WA 98101" +142497,Apple Airpods Headphones,1,150,01/02/19 08:04,"173 Meadow St, Dallas, TX 75001" +142498,Apple Airpods Headphones,1,150,01/18/19 14:24,"289 Pine St, San Francisco, CA 94016" +142499,Wired Headphones,1,11.99,01/31/19 06:02,"727 1st St, Austin, TX 73301" +142500,USB-C Charging Cable,1,11.95,01/02/19 16:32,"868 Main St, Atlanta, GA 30301" +142501,Lightning Charging Cable,1,14.95,01/16/19 12:14,"555 10th St, Los Angeles, CA 90001" +142502,34in Ultrawide Monitor,1,379.99,01/12/19 12:20,"361 Walnut St, Los Angeles, CA 90001" +142503,Lightning Charging Cable,2,14.95,01/03/19 09:49,"111 Walnut St, Portland, OR 97035" +142504,iPhone,1,700,01/25/19 12:12,"517 Dogwood St, Austin, TX 73301" +142505,Apple Airpods Headphones,1,150,01/29/19 07:19,"84 Spruce St, Los Angeles, CA 90001" +142506,AA Batteries (4-pack),1,3.84,01/17/19 13:02,"471 Willow St, San Francisco, CA 94016" +142507,AA Batteries (4-pack),2,3.84,01/21/19 11:42,"959 Lincoln St, Los Angeles, CA 90001" +142508,Lightning Charging Cable,1,14.95,01/15/19 03:24,"676 Lake St, San Francisco, CA 94016" +142509,AAA Batteries (4-pack),1,2.99,01/18/19 20:32,"366 10th St, Boston, MA 02215" +142510,Wired Headphones,1,11.99,01/16/19 13:42,"523 River St, San Francisco, CA 94016" +142511,iPhone,1,700,01/24/19 18:49,"453 Meadow St, Austin, TX 73301" +142512,AA Batteries (4-pack),1,3.84,01/07/19 15:15,"203 Wilson St, Boston, MA 02215" +142513,USB-C Charging Cable,1,11.95,01/22/19 21:08,"698 Park St, Boston, MA 02215" +142514,ThinkPad Laptop,1,999.99,01/23/19 10:38,"456 5th St, Los Angeles, CA 90001" +142515,iPhone,1,700,01/08/19 10:47,"820 Center St, Atlanta, GA 30301" +142516,Apple Airpods Headphones,1,150,01/11/19 22:53,"356 14th St, Seattle, WA 98101" +142517,27in FHD Monitor,1,149.99,01/03/19 09:37,"397 Park St, Los Angeles, CA 90001" +142518,Lightning Charging Cable,1,14.95,01/14/19 12:08,"873 Spruce St, Atlanta, GA 30301" +142518,AAA Batteries (4-pack),1,2.99,01/14/19 12:08,"873 Spruce St, Atlanta, GA 30301" +142519,34in Ultrawide Monitor,1,379.99,01/16/19 19:45,"542 Hill St, San Francisco, CA 94016" +142520,27in FHD Monitor,1,149.99,01/27/19 19:23,"935 Spruce St, Dallas, TX 75001" +142521,Flatscreen TV,1,300,01/04/19 17:12,"103 Jefferson St, Seattle, WA 98101" +142522,USB-C Charging Cable,1,11.95,01/14/19 13:16,"76 14th St, Los Angeles, CA 90001" +142523,AA Batteries (4-pack),1,3.84,01/18/19 16:59,"355 Jefferson St, San Francisco, CA 94016" +142524,Lightning Charging Cable,1,14.95,01/24/19 19:23,"741 West St, Los Angeles, CA 90001" +142525,AA Batteries (4-pack),1,3.84,01/08/19 20:42,"297 Dogwood St, Boston, MA 02215" +142526,AA Batteries (4-pack),1,3.84,01/19/19 11:56,"688 Main St, Dallas, TX 75001" +142527,USB-C Charging Cable,1,11.95,01/09/19 14:44,"116 Center St, Seattle, WA 98101" +142528,Vareebadd Phone,1,400,01/28/19 11:19,"218 Sunset St, San Francisco, CA 94016" +142528,USB-C Charging Cable,1,11.95,01/28/19 11:19,"218 Sunset St, San Francisco, CA 94016" +142528,Bose SoundSport Headphones,1,99.99,01/28/19 11:19,"218 Sunset St, San Francisco, CA 94016" +142529,Bose SoundSport Headphones,1,99.99,01/25/19 15:13,"128 Lincoln St, Los Angeles, CA 90001" +142530,Wired Headphones,1,11.99,01/18/19 15:50,"772 Jefferson St, Los Angeles, CA 90001" +142531,Bose SoundSport Headphones,1,99.99,01/09/19 17:42,"208 Highland St, New York City, NY 10001" +142532,AAA Batteries (4-pack),4,2.99,01/16/19 16:46,"432 14th St, Dallas, TX 75001" +142533,Wired Headphones,1,11.99,01/07/19 00:18,"235 Highland St, San Francisco, CA 94016" +142534,Wired Headphones,1,11.99,01/01/19 13:56,"499 Adams St, San Francisco, CA 94016" +142535,USB-C Charging Cable,1,11.95,01/26/19 20:51,"327 Jefferson St, Los Angeles, CA 90001" +142536,27in FHD Monitor,1,149.99,01/31/19 19:05,"338 Walnut St, Boston, MA 02215" +142537,USB-C Charging Cable,1,11.95,01/13/19 17:49,"699 Highland St, New York City, NY 10001" +142538,27in FHD Monitor,1,149.99,01/28/19 09:08,"915 Lincoln St, San Francisco, CA 94016" +142539,Bose SoundSport Headphones,1,99.99,01/07/19 11:48,"351 Jackson St, Los Angeles, CA 90001" +142540,Apple Airpods Headphones,1,150,01/31/19 15:42,"502 1st St, Boston, MA 02215" +142541,AA Batteries (4-pack),1,3.84,01/02/19 19:33,"914 1st St, Los Angeles, CA 90001" +142542,AA Batteries (4-pack),3,3.84,01/20/19 23:52,"539 Main St, Atlanta, GA 30301" +142543,Apple Airpods Headphones,1,150,01/01/19 19:28,"83 Maple St, Los Angeles, CA 90001" +142544,Lightning Charging Cable,1,14.95,01/07/19 09:38,"601 1st St, Seattle, WA 98101" +142545,Apple Airpods Headphones,1,150,01/27/19 21:41,"96 Main St, Portland, OR 97035" +142546,Google Phone,1,600,01/19/19 17:00,"90 Lincoln St, Boston, MA 02215" +142547,iPhone,1,700,01/06/19 02:48,"914 Main St, San Francisco, CA 94016" +142547,Lightning Charging Cable,1,14.95,01/06/19 02:48,"914 Main St, San Francisco, CA 94016" +142548,ThinkPad Laptop,1,999.99,01/13/19 23:45,"960 Dogwood St, San Francisco, CA 94016" +142549,USB-C Charging Cable,1,11.95,01/03/19 13:26,"446 2nd St, Portland, OR 97035" +142550,AA Batteries (4-pack),1,3.84,01/23/19 21:58,"664 Madison St, Los Angeles, CA 90001" +142551,AAA Batteries (4-pack),1,2.99,01/13/19 20:25,"465 Pine St, Los Angeles, CA 90001" +142552,Bose SoundSport Headphones,1,99.99,01/07/19 09:06,"569 Park St, Dallas, TX 75001" +142553,Macbook Pro Laptop,1,1700,01/12/19 15:46,"333 6th St, Los Angeles, CA 90001" +142554,27in FHD Monitor,1,149.99,01/16/19 20:44,"353 6th St, Los Angeles, CA 90001" +142555,Wired Headphones,1,11.99,01/22/19 18:46,"582 Sunset St, Atlanta, GA 30301" +142555,AAA Batteries (4-pack),2,2.99,01/22/19 18:46,"582 Sunset St, Atlanta, GA 30301" +142556,LG Washing Machine,1,600.0,01/18/19 21:13,"708 2nd St, Austin, TX 73301" +142557,iPhone,1,700,01/21/19 19:25,"736 Wilson St, Boston, MA 02215" +142558,Wired Headphones,1,11.99,01/22/19 21:43,"2 River St, Atlanta, GA 30301" +142559,AA Batteries (4-pack),1,3.84,01/09/19 21:12,"738 Pine St, Dallas, TX 75001" +142560,Wired Headphones,1,11.99,01/07/19 16:16,"207 Wilson St, San Francisco, CA 94016" +142561,Apple Airpods Headphones,1,150,01/10/19 03:35,"984 Dogwood St, Los Angeles, CA 90001" +142562,Apple Airpods Headphones,1,150,01/30/19 19:13,"136 Jefferson St, Atlanta, GA 30301" +142563,Wired Headphones,1,11.99,01/25/19 11:14,"409 11th St, Los Angeles, CA 90001" +142564,Macbook Pro Laptop,1,1700,01/24/19 10:43,"255 Washington St, Atlanta, GA 30301" +142565,Apple Airpods Headphones,1,150,01/06/19 13:38,"109 14th St, New York City, NY 10001" +142566,AAA Batteries (4-pack),2,2.99,01/19/19 15:02,"546 Pine St, New York City, NY 10001" +142567,Bose SoundSport Headphones,1,99.99,01/09/19 23:02,"62 10th St, Los Angeles, CA 90001" +142568,AAA Batteries (4-pack),1,2.99,01/06/19 00:01,"988 Ridge St, Atlanta, GA 30301" +142569,Macbook Pro Laptop,1,1700,01/19/19 21:10,"523 River St, Seattle, WA 98101" +142570,AAA Batteries (4-pack),1,2.99,01/23/19 11:59,"663 2nd St, San Francisco, CA 94016" +142571,34in Ultrawide Monitor,1,379.99,01/30/19 19:11,"276 Church St, Boston, MA 02215" +142572,AA Batteries (4-pack),1,3.84,01/04/19 14:42,"945 Jackson St, Los Angeles, CA 90001" +142572,AAA Batteries (4-pack),3,2.99,01/04/19 14:42,"945 Jackson St, Los Angeles, CA 90001" +142573,ThinkPad Laptop,1,999.99,01/31/19 21:06,"691 Ridge St, Los Angeles, CA 90001" +142574,Wired Headphones,1,11.99,01/22/19 21:43,"811 Ridge St, San Francisco, CA 94016" +142575,AA Batteries (4-pack),3,3.84,01/10/19 22:08,"621 7th St, Los Angeles, CA 90001" +142576,27in 4K Gaming Monitor,1,389.99,01/24/19 09:52,"598 Cherry St, Boston, MA 02215" +142577,AA Batteries (4-pack),1,3.84,01/03/19 19:33,"61 Chestnut St, Atlanta, GA 30301" +142577,iPhone,1,700,01/03/19 19:33,"61 Chestnut St, Atlanta, GA 30301" +142578,USB-C Charging Cable,1,11.95,01/07/19 19:41,"998 Lakeview St, Austin, TX 73301" +142579,iPhone,1,700,01/30/19 11:06,"304 Forest St, Los Angeles, CA 90001" +,,,,, +142580,USB-C Charging Cable,1,11.95,01/26/19 18:46,"981 Cherry St, Atlanta, GA 30301" +142581,AAA Batteries (4-pack),1,2.99,01/09/19 11:25,"997 Lincoln St, Los Angeles, CA 90001" +142582,Bose SoundSport Headphones,1,99.99,01/25/19 16:35,"590 1st St, San Francisco, CA 94016" +142583,Bose SoundSport Headphones,1,99.99,01/21/19 08:53,"136 Park St, New York City, NY 10001" +142584,Lightning Charging Cable,1,14.95,01/11/19 03:23,"703 1st St, San Francisco, CA 94016" +142585,34in Ultrawide Monitor,1,379.99,01/23/19 23:45,"91 Ridge St, Boston, MA 02215" +142586,ThinkPad Laptop,1,999.99,01/31/19 16:16,"534 Lakeview St, Austin, TX 73301" +142587,USB-C Charging Cable,1,11.95,01/02/19 19:44,"422 8th St, Los Angeles, CA 90001" +142588,34in Ultrawide Monitor,1,379.99,01/17/19 07:40,"227 4th St, Boston, MA 02215" +142589,Apple Airpods Headphones,1,150,01/26/19 19:39,"342 Cedar St, San Francisco, CA 94016" +142590,Apple Airpods Headphones,1,150,01/30/19 11:51,"261 Cherry St, Dallas, TX 75001" +142591,Macbook Pro Laptop,1,1700,01/13/19 12:33,"320 Chestnut St, Los Angeles, CA 90001" +142592,Wired Headphones,1,11.99,01/10/19 22:20,"618 Main St, New York City, NY 10001" +142593,27in FHD Monitor,1,149.99,01/16/19 04:08,"644 Sunset St, San Francisco, CA 94016" +142594,AAA Batteries (4-pack),1,2.99,01/04/19 21:47,"856 Lake St, Seattle, WA 98101" +142595,Flatscreen TV,1,300,01/22/19 23:34,"113 South St, Boston, MA 02215" +142596,Lightning Charging Cable,1,14.95,01/12/19 19:52,"609 7th St, New York City, NY 10001" +142597,AA Batteries (4-pack),1,3.84,01/27/19 10:16,"754 10th St, Austin, TX 73301" +142598,iPhone,1,700,01/29/19 22:27,"148 8th St, Portland, OR 97035" +142599,AAA Batteries (4-pack),1,2.99,01/11/19 01:46,"630 5th St, Atlanta, GA 30301" +142600,Lightning Charging Cable,1,14.95,01/08/19 16:55,"369 Jackson St, New York City, NY 10001" +142601,Lightning Charging Cable,1,14.95,01/06/19 21:19,"359 Forest St, Seattle, WA 98101" +142602,Google Phone,1,600,01/13/19 16:12,"115 13th St, New York City, NY 10001" +142603,USB-C Charging Cable,1,11.95,01/04/19 14:08,"11 Lakeview St, Boston, MA 02215" +142604,Google Phone,1,600,01/21/19 11:03,"340 9th St, New York City, NY 10001" +142604,USB-C Charging Cable,1,11.95,01/21/19 11:03,"340 9th St, New York City, NY 10001" +142605,Lightning Charging Cable,1,14.95,01/11/19 14:17,"44 1st St, San Francisco, CA 94016" +142606,Apple Airpods Headphones,1,150,01/06/19 20:40,"686 6th St, Portland, OR 97035" +142607,Apple Airpods Headphones,1,150,01/27/19 14:09,"431 2nd St, Dallas, TX 75001" +142608,Google Phone,1,600,01/01/19 15:11,"684 Walnut St, Los Angeles, CA 90001" +142609,Wired Headphones,1,11.99,01/28/19 05:38,"256 Chestnut St, Seattle, WA 98101" +142610,Lightning Charging Cable,1,14.95,01/13/19 08:28,"468 Wilson St, Boston, MA 02215" +142611,Apple Airpods Headphones,1,150,01/03/19 10:27,"640 Washington St, Austin, TX 73301" +142612,Bose SoundSport Headphones,1,99.99,01/29/19 08:32,"224 13th St, Seattle, WA 98101" +142613,Lightning Charging Cable,1,14.95,01/04/19 10:38,"580 Forest St, Seattle, WA 98101" +142614,AA Batteries (4-pack),1,3.84,01/27/19 13:13,"429 Adams St, San Francisco, CA 94016" +142615,iPhone,1,700,01/10/19 21:53,"127 Adams St, Los Angeles, CA 90001" +142616,Lightning Charging Cable,2,14.95,01/09/19 17:08,"179 River St, Seattle, WA 98101" +142617,Google Phone,1,600,01/29/19 00:05,"730 Willow St, San Francisco, CA 94016" +142617,USB-C Charging Cable,1,11.95,01/29/19 00:05,"730 Willow St, San Francisco, CA 94016" +142618,Vareebadd Phone,1,400,01/11/19 18:25,"394 Wilson St, Dallas, TX 75001" +142619,Macbook Pro Laptop,1,1700,01/17/19 08:00,"378 8th St, Seattle, WA 98101" +142620,Wired Headphones,1,11.99,01/25/19 19:12,"147 Main St, Boston, MA 02215" +142621,34in Ultrawide Monitor,1,379.99,01/02/19 10:59,"570 Cherry St, Boston, MA 02215" +142622,USB-C Charging Cable,1,11.95,01/02/19 08:23,"784 Jefferson St, Austin, TX 73301" +142623,27in 4K Gaming Monitor,1,389.99,01/30/19 19:56,"523 Willow St, Los Angeles, CA 90001" +142624,USB-C Charging Cable,1,11.95,01/14/19 06:39,"745 1st St, Boston, MA 02215" +142625,Wired Headphones,1,11.99,01/07/19 23:02,"735 14th St, Boston, MA 02215" +142626,Apple Airpods Headphones,1,150,01/17/19 02:59,"743 13th St, San Francisco, CA 94016" +142627,AA Batteries (4-pack),1,3.84,01/27/19 13:15,"723 Dogwood St, Atlanta, GA 30301" +142628,AA Batteries (4-pack),2,3.84,01/01/19 18:30,"176 Washington St, Los Angeles, CA 90001" +142629,27in 4K Gaming Monitor,1,389.99,01/23/19 06:14,"537 Hill St, Los Angeles, CA 90001" +142630,USB-C Charging Cable,2,11.95,01/27/19 20:21,"947 Cedar St, Seattle, WA 98101" +142631,Lightning Charging Cable,1,14.95,01/18/19 08:37,"896 Spruce St, Portland, OR 97035" +142632,Wired Headphones,1,11.99,01/30/19 21:59,"780 2nd St, Dallas, TX 75001" +142633,Bose SoundSport Headphones,1,99.99,01/21/19 22:40,"70 Dogwood St, Los Angeles, CA 90001" +142634,AAA Batteries (4-pack),1,2.99,01/26/19 13:41,"994 Forest St, San Francisco, CA 94016" +142635,Wired Headphones,1,11.99,01/11/19 11:52,"449 Maple St, Atlanta, GA 30301" +142636,AA Batteries (4-pack),1,3.84,01/21/19 19:44,"138 Cedar St, Austin, TX 73301" +142637,ThinkPad Laptop,1,999.99,01/30/19 01:29,"890 14th St, Seattle, WA 98101" +142638,Bose SoundSport Headphones,1,99.99,01/04/19 17:54,"563 Pine St, Seattle, WA 98101" +142639,AAA Batteries (4-pack),1,2.99,01/01/19 17:40,"773 7th St, Portland, OR 97035" +142640,20in Monitor,1,109.99,01/15/19 12:45,"126 Johnson St, San Francisco, CA 94016" +142641,Bose SoundSport Headphones,1,99.99,01/02/19 07:02,"687 Main St, New York City, NY 10001" +142642,ThinkPad Laptop,1,999.99,01/31/19 16:55,"455 West St, New York City, NY 10001" +142643,USB-C Charging Cable,1,11.95,01/15/19 17:58,"5 Maple St, New York City, NY 10001" +142644,AA Batteries (4-pack),1,3.84,01/02/19 22:02,"868 North St, New York City, NY 10001" +142645,Bose SoundSport Headphones,1,99.99,01/01/19 11:29,"473 Dogwood St, Portland, OR 97035" +142646,USB-C Charging Cable,1,11.95,01/14/19 18:46,"207 Lake St, Austin, TX 73301" +142647,27in FHD Monitor,1,149.99,01/31/19 04:51,"55 Pine St, Portland, OR 97035" +142648,AAA Batteries (4-pack),1,2.99,01/28/19 19:42,"917 5th St, San Francisco, CA 94016" +142649,Lightning Charging Cable,1,14.95,01/24/19 06:33,"651 Park St, New York City, NY 10001" +142650,Wired Headphones,1,11.99,01/02/19 20:15,"708 9th St, Boston, MA 02215" +142651,Apple Airpods Headphones,1,150,01/12/19 15:41,"709 Park St, San Francisco, CA 94016" +142652,LG Dryer,1,600.0,01/24/19 11:16,"911 West St, New York City, NY 10001" +142653,Lightning Charging Cable,1,14.95,01/31/19 10:01,"319 Hill St, Dallas, TX 75001" +142654,Bose SoundSport Headphones,1,99.99,01/05/19 22:37,"207 Madison St, San Francisco, CA 94016" +142655,Apple Airpods Headphones,1,150,01/11/19 23:48,"879 Lakeview St, New York City, NY 10001" +142656,Apple Airpods Headphones,1,150,01/27/19 21:21,"954 11th St, New York City, NY 10001" +142657,USB-C Charging Cable,1,11.95,01/14/19 16:48,"582 4th St, Portland, OR 97035" +142658,AA Batteries (4-pack),1,3.84,01/05/19 11:27,"129 Hill St, San Francisco, CA 94016" +142659,Flatscreen TV,1,300,01/29/19 18:21,"946 Highland St, Austin, TX 73301" +142660,34in Ultrawide Monitor,1,379.99,01/16/19 06:33,"473 9th St, San Francisco, CA 94016" +142661,AAA Batteries (4-pack),1,2.99,01/13/19 19:10,"413 Sunset St, New York City, NY 10001" +142662,Bose SoundSport Headphones,1,99.99,01/02/19 15:22,"898 Park St, Seattle, WA 98101" +142663,Flatscreen TV,1,300,01/13/19 10:46,"19 6th St, Austin, TX 73301" +142664,AA Batteries (4-pack),2,3.84,01/04/19 14:11,"255 Adams St, San Francisco, CA 94016" +142665,USB-C Charging Cable,1,11.95,01/21/19 08:23,"208 7th St, Los Angeles, CA 90001" +142666,iPhone,1,700,01/24/19 18:21,"360 Center St, Dallas, TX 75001" +142667,AAA Batteries (4-pack),2,2.99,01/08/19 11:19,"189 Chestnut St, Seattle, WA 98101" +142668,AAA Batteries (4-pack),1,2.99,01/14/19 17:18,"918 7th St, San Francisco, CA 94016" +142669,Apple Airpods Headphones,1,150,01/15/19 10:55,"241 Willow St, San Francisco, CA 94016" +142670,Bose SoundSport Headphones,1,99.99,01/22/19 16:14,"538 Lincoln St, Austin, TX 73301" +142671,Wired Headphones,1,11.99,01/03/19 19:42,"284 Elm St, Atlanta, GA 30301" +142672,USB-C Charging Cable,1,11.95,01/28/19 23:22,"497 1st St, Portland, OR 97035" +142673,27in 4K Gaming Monitor,1,389.99,01/19/19 18:33,"383 South St, Portland, OR 97035" +142674,Bose SoundSport Headphones,1,99.99,01/29/19 18:35,"150 Sunset St, Boston, MA 02215" +142675,Wired Headphones,1,11.99,01/19/19 13:41,"384 4th St, Austin, TX 73301" +142676,USB-C Charging Cable,1,11.95,01/20/19 19:51,"889 Chestnut St, Los Angeles, CA 90001" +142677,Apple Airpods Headphones,1,150,01/21/19 14:15,"322 Church St, Portland, OR 97035" +142678,Wired Headphones,1,11.99,01/19/19 12:12,"250 Jackson St, Boston, MA 02215" +142679,Google Phone,1,600,01/16/19 16:49,"728 Lakeview St, Boston, MA 02215" +142680,AAA Batteries (4-pack),3,2.99,01/24/19 13:20,"609 South St, Los Angeles, CA 90001" +142681,Apple Airpods Headphones,1,150,01/03/19 23:00,"877 11th St, San Francisco, CA 94016" +142682,Macbook Pro Laptop,1,1700,01/31/19 13:58,"901 Elm St, Los Angeles, CA 90001" +142683,USB-C Charging Cable,1,11.95,01/26/19 15:14,"802 2nd St, Los Angeles, CA 90001" +142684,AA Batteries (4-pack),1,3.84,01/02/19 18:44,"151 West St, San Francisco, CA 94016" +142685,Bose SoundSport Headphones,1,99.99,01/14/19 11:55,"415 Johnson St, Austin, TX 73301" +142686,Lightning Charging Cable,1,14.95,01/16/19 18:59,"907 2nd St, Boston, MA 02215" +142687,34in Ultrawide Monitor,1,379.99,01/04/19 20:02,"923 1st St, Dallas, TX 75001" +142688,USB-C Charging Cable,1,11.95,01/17/19 13:53,"412 6th St, Seattle, WA 98101" +142689,AAA Batteries (4-pack),2,2.99,01/30/19 10:56,"571 Main St, Austin, TX 73301" +142690,Wired Headphones,1,11.99,01/21/19 15:38,"747 Pine St, San Francisco, CA 94016" +142691,USB-C Charging Cable,1,11.95,01/24/19 17:57,"883 Sunset St, Boston, MA 02215" +142692,Wired Headphones,1,11.99,01/17/19 16:17,"463 River St, Boston, MA 02215" +142693,Apple Airpods Headphones,1,150,01/26/19 13:52,"589 Chestnut St, Dallas, TX 75001" +142694,27in 4K Gaming Monitor,1,389.99,01/02/19 22:27,"509 River St, Atlanta, GA 30301" +142695,Wired Headphones,2,11.99,01/11/19 08:04,"598 Wilson St, Los Angeles, CA 90001" +142696,Bose SoundSport Headphones,1,99.99,01/05/19 00:14,"201 South St, New York City, NY 10001" +142697,AA Batteries (4-pack),2,3.84,01/12/19 12:33,"227 6th St, Austin, TX 73301" +142698,AA Batteries (4-pack),1,3.84,01/09/19 09:59,"245 12th St, Dallas, TX 75001" +142699,AAA Batteries (4-pack),1,2.99,01/05/19 20:42,"606 Hickory St, Los Angeles, CA 90001" +142700,AAA Batteries (4-pack),1,2.99,01/18/19 07:45,"771 Washington St, Dallas, TX 75001" +142701,AAA Batteries (4-pack),1,2.99,01/04/19 21:18,"347 South St, Dallas, TX 75001" +142702,AA Batteries (4-pack),1,3.84,01/15/19 01:07,"701 Jackson St, Atlanta, GA 30301" +142703,AAA Batteries (4-pack),1,2.99,01/18/19 10:18,"847 Park St, Boston, MA 02215" +142704,Lightning Charging Cable,1,14.95,01/19/19 14:19,"276 Willow St, New York City, NY 10001" +142705,27in 4K Gaming Monitor,1,389.99,01/23/19 08:33,"751 Wilson St, Los Angeles, CA 90001" +142706,AA Batteries (4-pack),1,3.84,01/30/19 09:32,"744 Cherry St, Los Angeles, CA 90001" +142707,AA Batteries (4-pack),1,3.84,01/28/19 23:40,"388 Center St, Dallas, TX 75001" +142708,Macbook Pro Laptop,1,1700,01/22/19 19:14,"492 6th St, Dallas, TX 75001" +142709,AAA Batteries (4-pack),1,2.99,01/26/19 08:28,"161 North St, Los Angeles, CA 90001" +142710,iPhone,1,700,01/01/19 08:50,"50 2nd St, Seattle, WA 98101" +142710,Apple Airpods Headphones,1,150,01/01/19 08:50,"50 2nd St, Seattle, WA 98101" +142711,Wired Headphones,1,11.99,01/31/19 20:08,"522 Willow St, San Francisco, CA 94016" +142712,Flatscreen TV,1,300,01/31/19 15:26,"351 5th St, Boston, MA 02215" +142713,AAA Batteries (4-pack),1,2.99,01/07/19 18:29,"522 Adams St, San Francisco, CA 94016" +142714,USB-C Charging Cable,1,11.95,01/28/19 18:25,"202 7th St, Atlanta, GA 30301" +142715,27in 4K Gaming Monitor,1,389.99,01/11/19 18:15,"962 13th St, New York City, NY 10001" +142716,USB-C Charging Cable,1,11.95,01/31/19 16:39,"127 Main St, Dallas, TX 75001" +142717,AAA Batteries (4-pack),2,2.99,01/08/19 22:03,"627 5th St, Portland, OR 97035" +142718,27in 4K Gaming Monitor,1,389.99,01/17/19 22:33,"37 Ridge St, San Francisco, CA 94016" +142719,27in FHD Monitor,1,149.99,01/04/19 15:08,"369 Spruce St, New York City, NY 10001" +142720,Lightning Charging Cable,1,14.95,01/23/19 10:35,"134 Elm St, New York City, NY 10001" +142721,Lightning Charging Cable,1,14.95,01/25/19 23:26,"743 Chestnut St, Dallas, TX 75001" +142722,Lightning Charging Cable,1,14.95,01/27/19 16:23,"519 Jefferson St, San Francisco, CA 94016" +142723,Bose SoundSport Headphones,1,99.99,01/22/19 10:25,"454 13th St, San Francisco, CA 94016" +142724,AAA Batteries (4-pack),1,2.99,01/30/19 17:59,"743 Lake St, San Francisco, CA 94016" +142725,USB-C Charging Cable,2,11.95,01/22/19 11:02,"366 1st St, New York City, NY 10001" +142726,Wired Headphones,1,11.99,01/24/19 08:50,"40 South St, San Francisco, CA 94016" +142727,Apple Airpods Headphones,1,150,01/13/19 21:56,"122 Spruce St, Seattle, WA 98101" +142727,Wired Headphones,1,11.99,01/13/19 21:56,"122 Spruce St, Seattle, WA 98101" +142728,Apple Airpods Headphones,1,150,01/14/19 06:47,"302 Highland St, San Francisco, CA 94016" +142729,AAA Batteries (4-pack),1,2.99,01/21/19 10:30,"634 5th St, San Francisco, CA 94016" +142730,Bose SoundSport Headphones,1,99.99,01/12/19 10:15,"388 2nd St, San Francisco, CA 94016" +142731,iPhone,1,700,01/24/19 00:26,"348 Cedar St, Boston, MA 02215" +142732,Wired Headphones,1,11.99,01/02/19 22:11,"390 Lake St, Seattle, WA 98101" +142733,LG Dryer,1,600.0,01/05/19 20:38,"603 Wilson St, Los Angeles, CA 90001" +142734,AA Batteries (4-pack),2,3.84,01/23/19 11:28,"534 Cherry St, New York City, NY 10001" +142735,Wired Headphones,2,11.99,01/19/19 20:01,"474 Sunset St, Dallas, TX 75001" +142736,USB-C Charging Cable,1,11.95,01/30/19 12:50,"610 Chestnut St, San Francisco, CA 94016" +142737,iPhone,1,700,01/22/19 16:50,"617 Adams St, San Francisco, CA 94016" +142737,Wired Headphones,1,11.99,01/22/19 16:50,"617 Adams St, San Francisco, CA 94016" +142738,20in Monitor,1,109.99,01/16/19 22:59,"49 Elm St, Atlanta, GA 30301" +142739,Bose SoundSport Headphones,1,99.99,01/29/19 19:30,"968 West St, New York City, NY 10001" +142740,Google Phone,1,600,01/11/19 13:03,"886 6th St, Los Angeles, CA 90001" +142740,Wired Headphones,1,11.99,01/11/19 13:03,"886 6th St, Los Angeles, CA 90001" +142741,Lightning Charging Cable,1,14.95,01/09/19 20:26,"226 Dogwood St, Boston, MA 02215" +142742,Bose SoundSport Headphones,1,99.99,01/07/19 04:02,"913 Cedar St, Portland, OR 97035" +142743,AA Batteries (4-pack),3,3.84,01/30/19 18:50,"441 Walnut St, Atlanta, GA 30301" +142744,20in Monitor,1,109.99,01/11/19 11:00,"604 2nd St, Dallas, TX 75001" +142745,USB-C Charging Cable,1,11.95,01/09/19 01:33,"946 14th St, Boston, MA 02215" +142746,27in FHD Monitor,1,149.99,01/08/19 03:25,"392 Wilson St, New York City, NY 10001" +142747,Flatscreen TV,1,300,01/17/19 15:53,"913 Washington St, Boston, MA 02215" +142748,AA Batteries (4-pack),1,3.84,01/29/19 00:09,"531 Cedar St, Austin, TX 73301" +142749,AAA Batteries (4-pack),1,2.99,01/02/19 19:12,"255 Johnson St, San Francisco, CA 94016" +142750,USB-C Charging Cable,1,11.95,01/01/19 19:14,"642 Willow St, San Francisco, CA 94016" +142751,AA Batteries (4-pack),1,3.84,01/04/19 18:01,"825 10th St, San Francisco, CA 94016" +142752,27in 4K Gaming Monitor,1,389.99,01/29/19 16:34,"697 Walnut St, Portland, OR 97035" +142753,Macbook Pro Laptop,1,1700,01/26/19 10:43,"794 Hickory St, Boston, MA 02215" +142754,Bose SoundSport Headphones,1,99.99,01/07/19 13:10,"543 Center St, Portland, OR 97035" +142755,USB-C Charging Cable,1,11.95,01/17/19 20:01,"202 Center St, San Francisco, CA 94016" +142756,Wired Headphones,1,11.99,01/18/19 15:11,"337 Wilson St, Los Angeles, CA 90001" +142757,Lightning Charging Cable,1,14.95,01/06/19 22:46,"902 South St, Boston, MA 02215" +142758,Apple Airpods Headphones,1,150,01/13/19 11:01,"897 13th St, Los Angeles, CA 90001" +142759,AA Batteries (4-pack),2,3.84,01/17/19 21:17,"560 8th St, Los Angeles, CA 90001" +142760,Flatscreen TV,1,300,01/26/19 21:56,"370 1st St, Austin, TX 73301" +142761,AA Batteries (4-pack),2,3.84,01/04/19 14:47,"932 Walnut St, Portland, OR 97035" +142762,AA Batteries (4-pack),2,3.84,01/27/19 15:01,"81 Willow St, San Francisco, CA 94016" +142763,ThinkPad Laptop,1,999.99,01/10/19 17:19,"189 Church St, San Francisco, CA 94016" +142764,Apple Airpods Headphones,1,150,01/29/19 17:24,"441 1st St, Boston, MA 02215" +142765,USB-C Charging Cable,1,11.95,01/08/19 21:37,"248 Elm St, Los Angeles, CA 90001" +142766,USB-C Charging Cable,1,11.95,01/22/19 09:28,"840 Johnson St, Austin, TX 73301" +142767,USB-C Charging Cable,1,11.95,01/21/19 18:00,"93 Forest St, Dallas, TX 75001" +142768,Apple Airpods Headphones,1,150,01/12/19 22:38,"882 4th St, San Francisco, CA 94016" +142769,iPhone,1,700,01/29/19 13:26,"743 Elm St, Atlanta, GA 30301" +142770,AA Batteries (4-pack),1,3.84,01/20/19 15:41,"736 Willow St, Dallas, TX 75001" +142771,Flatscreen TV,1,300,01/27/19 14:10,"936 Hickory St, Atlanta, GA 30301" +142772,Bose SoundSport Headphones,1,99.99,01/17/19 18:02,"938 North St, Los Angeles, CA 90001" +142773,Bose SoundSport Headphones,1,99.99,01/17/19 01:28,"50 2nd St, Austin, TX 73301" +142774,USB-C Charging Cable,1,11.95,01/25/19 12:19,"359 Dogwood St, Atlanta, GA 30301" +142775,USB-C Charging Cable,2,11.95,01/10/19 15:13,"849 10th St, New York City, NY 10001" +142776,AA Batteries (4-pack),3,3.84,01/30/19 18:58,"290 Main St, San Francisco, CA 94016" +142777,AA Batteries (4-pack),2,3.84,01/20/19 21:08,"73 Church St, Boston, MA 02215" +142778,Flatscreen TV,1,300,01/15/19 13:12,"429 Center St, San Francisco, CA 94016" +142779,Lightning Charging Cable,1,14.95,01/02/19 01:55,"316 West St, New York City, NY 10001" +142780,AA Batteries (4-pack),1,3.84,01/30/19 20:57,"164 Cherry St, San Francisco, CA 94016" +142781,Google Phone,1,600,01/20/19 18:55,"19 9th St, Austin, TX 73301" +142782,AA Batteries (4-pack),2,3.84,01/21/19 11:10,"951 8th St, Los Angeles, CA 90001" +142783,iPhone,1,700,01/10/19 17:18,"724 Walnut St, Los Angeles, CA 90001" +142784,Wired Headphones,1,11.99,01/09/19 11:33,"232 Hill St, Los Angeles, CA 90001" +142785,20in Monitor,1,109.99,01/03/19 21:08,"340 Church St, Austin, TX 73301" +142786,20in Monitor,1,109.99,01/12/19 21:56,"246 4th St, Seattle, WA 98101" +142787,Lightning Charging Cable,1,14.95,01/31/19 17:38,"37 12th St, Boston, MA 02215" +142788,AAA Batteries (4-pack),1,2.99,01/28/19 02:15,"50 Forest St, New York City, NY 10001" +142789,27in FHD Monitor,1,149.99,01/28/19 23:10,"946 9th St, Boston, MA 02215" +142790,Wired Headphones,1,11.99,01/30/19 10:07,"455 Lincoln St, San Francisco, CA 94016" +142791,Apple Airpods Headphones,1,150,01/22/19 16:37,"893 Lakeview St, Austin, TX 73301" +142792,LG Washing Machine,1,600.0,01/04/19 21:03,"648 North St, San Francisco, CA 94016" +142793,Bose SoundSport Headphones,1,99.99,01/04/19 20:23,"621 Cedar St, San Francisco, CA 94016" +142794,Lightning Charging Cable,1,14.95,01/03/19 15:38,"235 Walnut St, Atlanta, GA 30301" +142795,Wired Headphones,2,11.99,01/24/19 15:10,"492 12th St, Seattle, WA 98101" +142796,Lightning Charging Cable,1,14.95,01/13/19 19:28,"60 5th St, Dallas, TX 75001" +142797,AA Batteries (4-pack),3,3.84,01/11/19 09:45,"707 Willow St, Los Angeles, CA 90001" +142798,AAA Batteries (4-pack),1,2.99,01/15/19 17:06,"867 Washington St, San Francisco, CA 94016" +142799,USB-C Charging Cable,1,11.95,01/06/19 06:11,"850 12th St, San Francisco, CA 94016" +142800,AAA Batteries (4-pack),2,2.99,01/10/19 15:21,"376 Washington St, Boston, MA 02215" +142801,Google Phone,1,600,01/13/19 14:01,"175 Forest St, Austin, TX 73301" +142801,Bose SoundSport Headphones,1,99.99,01/13/19 14:01,"175 Forest St, Austin, TX 73301" +142802,ThinkPad Laptop,1,999.99,01/03/19 19:02,"104 Jackson St, Seattle, WA 98101" +142803,Lightning Charging Cable,1,14.95,01/28/19 18:42,"658 Cherry St, Los Angeles, CA 90001" +142804,Lightning Charging Cable,1,14.95,01/09/19 22:07,"550 Hickory St, San Francisco, CA 94016" +142805,iPhone,1,700,01/24/19 21:36,"872 Lake St, New York City, NY 10001" +142806,Wired Headphones,1,11.99,01/06/19 03:24,"46 Jackson St, San Francisco, CA 94016" +142807,USB-C Charging Cable,1,11.95,01/12/19 11:03,"647 Meadow St, New York City, NY 10001" +142808,Lightning Charging Cable,2,14.95,01/11/19 08:43,"472 Dogwood St, New York City, NY 10001" +142809,Bose SoundSport Headphones,1,99.99,01/28/19 13:40,"469 Wilson St, Boston, MA 02215" +142810,USB-C Charging Cable,2,11.95,01/07/19 12:01,"618 Jackson St, New York City, NY 10001" +142811,Flatscreen TV,1,300,01/09/19 21:44,"570 Hill St, Boston, MA 02215" +142812,Lightning Charging Cable,1,14.95,01/10/19 04:38,"365 Spruce St, Los Angeles, CA 90001" +142813,Wired Headphones,1,11.99,01/27/19 18:26,"199 Madison St, Los Angeles, CA 90001" +142814,Bose SoundSport Headphones,1,99.99,01/11/19 12:01,"886 Adams St, Atlanta, GA 30301" +142815,27in FHD Monitor,1,149.99,01/30/19 19:41,"733 8th St, San Francisco, CA 94016" +142816,AAA Batteries (4-pack),1,2.99,01/30/19 14:19,"480 12th St, Los Angeles, CA 90001" +142817,USB-C Charging Cable,1,11.95,01/10/19 08:16,"80 Cedar St, New York City, NY 10001" +142818,Flatscreen TV,1,300,01/25/19 10:39,"425 11th St, San Francisco, CA 94016" +142819,34in Ultrawide Monitor,1,379.99,01/05/19 12:45,"282 4th St, San Francisco, CA 94016" +142820,AA Batteries (4-pack),3,3.84,01/16/19 15:45,"279 Washington St, San Francisco, CA 94016" +142821,USB-C Charging Cable,1,11.95,01/14/19 10:13,"780 Washington St, Los Angeles, CA 90001" +142822,AA Batteries (4-pack),2,3.84,01/03/19 22:19,"976 2nd St, San Francisco, CA 94016" +142823,Vareebadd Phone,1,400,01/16/19 14:46,"599 West St, Boston, MA 02215" +142824,34in Ultrawide Monitor,1,379.99,01/30/19 17:58,"665 Dogwood St, Los Angeles, CA 90001" +142825,AAA Batteries (4-pack),1,2.99,01/22/19 09:43,"341 Hill St, New York City, NY 10001" +142826,Flatscreen TV,1,300,01/04/19 01:55,"685 Willow St, San Francisco, CA 94016" +142827,27in FHD Monitor,1,149.99,01/05/19 14:38,"6 Dogwood St, Portland, ME 04101" +142828,Bose SoundSport Headphones,1,99.99,01/03/19 00:02,"427 12th St, San Francisco, CA 94016" +142829,Google Phone,1,600,01/16/19 13:10,"804 Spruce St, Seattle, WA 98101" +142830,AA Batteries (4-pack),1,3.84,01/08/19 15:52,"78 West St, Los Angeles, CA 90001" +142831,AA Batteries (4-pack),1,3.84,01/20/19 12:18,"146 Wilson St, Portland, OR 97035" +142832,Lightning Charging Cable,1,14.95,01/03/19 19:15,"131 Jackson St, Los Angeles, CA 90001" +142833,Vareebadd Phone,1,400,01/21/19 17:30,"883 Willow St, New York City, NY 10001" +142834,USB-C Charging Cable,1,11.95,01/26/19 00:25,"991 North St, Portland, OR 97035" +142835,AA Batteries (4-pack),1,3.84,01/25/19 07:00,"707 Sunset St, San Francisco, CA 94016" +142836,LG Dryer,1,600.0,01/09/19 16:00,"758 Sunset St, Boston, MA 02215" +142837,27in FHD Monitor,1,149.99,01/31/19 12:31,"856 Wilson St, New York City, NY 10001" +142838,27in FHD Monitor,1,149.99,01/12/19 09:48,"157 13th St, Seattle, WA 98101" +142839,AA Batteries (4-pack),5,3.84,01/19/19 21:53,"696 5th St, New York City, NY 10001" +142840,AAA Batteries (4-pack),1,2.99,01/15/19 21:59,"647 Washington St, Los Angeles, CA 90001" +142841,Bose SoundSport Headphones,1,99.99,01/05/19 06:41,"181 9th St, San Francisco, CA 94016" +142842,Flatscreen TV,1,300,01/26/19 15:59,"723 Lincoln St, Boston, MA 02215" +142843,USB-C Charging Cable,2,11.95,01/21/19 15:26,"449 Main St, San Francisco, CA 94016" +142844,27in 4K Gaming Monitor,1,389.99,01/12/19 10:27,"622 Jefferson St, San Francisco, CA 94016" +142845,iPhone,1,700,01/15/19 06:01,"632 9th St, Dallas, TX 75001" +142846,iPhone,1,700,01/17/19 16:43,"208 Center St, Los Angeles, CA 90001" +142846,Apple Airpods Headphones,1,150,01/17/19 16:43,"208 Center St, Los Angeles, CA 90001" +142847,27in FHD Monitor,1,149.99,01/24/19 20:57,"219 Park St, Los Angeles, CA 90001" +142848,Lightning Charging Cable,1,14.95,01/16/19 02:52,"670 Spruce St, Boston, MA 02215" +142849,AA Batteries (4-pack),4,3.84,01/06/19 15:31,"624 8th St, Atlanta, GA 30301" +142850,Lightning Charging Cable,1,14.95,01/15/19 23:31,"764 Chestnut St, Boston, MA 02215" +142851,Flatscreen TV,1,300,01/28/19 20:40,"615 13th St, Atlanta, GA 30301" +142852,Lightning Charging Cable,1,14.95,01/07/19 12:57,"844 2nd St, Portland, ME 04101" +142853,Wired Headphones,1,11.99,01/07/19 15:22,"455 Willow St, Portland, OR 97035" +142854,USB-C Charging Cable,1,11.95,01/29/19 13:12,"406 Willow St, Los Angeles, CA 90001" +142855,iPhone,1,700,01/16/19 16:57,"59 Ridge St, New York City, NY 10001" +142856,Wired Headphones,1,11.99,01/12/19 20:09,"416 1st St, Dallas, TX 75001" +142857,Apple Airpods Headphones,1,150,01/20/19 21:49,"492 Wilson St, New York City, NY 10001" +142858,USB-C Charging Cable,1,11.95,01/05/19 15:47,"116 Highland St, Seattle, WA 98101" +142859,Google Phone,1,600,01/22/19 15:10,"935 10th St, New York City, NY 10001" +142860,AA Batteries (4-pack),2,3.84,01/10/19 11:29,"45 1st St, Austin, TX 73301" +142861,ThinkPad Laptop,1,999.99,01/08/19 13:00,"526 Cherry St, Austin, TX 73301" +142862,27in 4K Gaming Monitor,1,389.99,01/01/19 17:11,"373 5th St, New York City, NY 10001" +142863,Flatscreen TV,1,300,01/15/19 00:54,"742 9th St, Los Angeles, CA 90001" +142864,Lightning Charging Cable,1,14.95,01/15/19 22:49,"465 Cherry St, Los Angeles, CA 90001" +142865,Macbook Pro Laptop,1,1700,01/12/19 14:41,"449 Park St, Dallas, TX 75001" +142866,Macbook Pro Laptop,1,1700,01/01/19 18:32,"231 6th St, San Francisco, CA 94016" +142866,Wired Headphones,1,11.99,01/01/19 18:32,"231 6th St, San Francisco, CA 94016" +142867,USB-C Charging Cable,1,11.95,01/09/19 12:15,"393 9th St, San Francisco, CA 94016" +142868,Apple Airpods Headphones,1,150,01/12/19 22:42,"900 Wilson St, San Francisco, CA 94016" +142869,Vareebadd Phone,1,400,01/25/19 09:20,"93 Chestnut St, Seattle, WA 98101" +142869,Wired Headphones,1,11.99,01/25/19 09:20,"93 Chestnut St, Seattle, WA 98101" +142870,Bose SoundSport Headphones,1,99.99,01/08/19 11:58,"851 North St, Los Angeles, CA 90001" +142871,27in FHD Monitor,1,149.99,01/21/19 01:12,"857 8th St, Los Angeles, CA 90001" +142872,Apple Airpods Headphones,1,150,01/01/19 05:50,"797 Pine St, Los Angeles, CA 90001" +142873,Apple Airpods Headphones,1,150,01/16/19 13:38,"98 Dogwood St, New York City, NY 10001" +142874,27in FHD Monitor,1,149.99,01/05/19 19:56,"766 Cherry St, Atlanta, GA 30301" +142875,Bose SoundSport Headphones,1,99.99,01/14/19 14:04,"519 Hickory St, Los Angeles, CA 90001" +142876,20in Monitor,1,109.99,01/28/19 23:02,"689 Cherry St, Seattle, WA 98101" +142877,AAA Batteries (4-pack),1,2.99,01/26/19 10:25,"903 Madison St, Boston, MA 02215" +142878,Flatscreen TV,1,300,01/07/19 11:51,"902 2nd St, Portland, OR 97035" +142879,Bose SoundSport Headphones,1,99.99,01/10/19 21:29,"557 5th St, New York City, NY 10001" +142880,Macbook Pro Laptop,1,1700,01/15/19 19:24,"333 13th St, Atlanta, GA 30301" +142881,27in FHD Monitor,1,149.99,01/09/19 09:27,"376 Maple St, San Francisco, CA 94016" +142882,Flatscreen TV,1,300,01/07/19 16:31,"394 Willow St, Boston, MA 02215" +142883,Lightning Charging Cable,1,14.95,01/06/19 15:21,"910 Cedar St, Los Angeles, CA 90001" +142884,34in Ultrawide Monitor,1,379.99,01/09/19 10:25,"234 Willow St, New York City, NY 10001" +142885,Wired Headphones,1,11.99,01/12/19 03:09,"607 5th St, San Francisco, CA 94016" +142886,USB-C Charging Cable,2,11.95,01/11/19 23:32,"793 7th St, Dallas, TX 75001" +142887,27in FHD Monitor,1,149.99,01/16/19 10:29,"133 1st St, San Francisco, CA 94016" +142888,Apple Airpods Headphones,1,150,01/29/19 21:07,"702 Wilson St, San Francisco, CA 94016" +142889,34in Ultrawide Monitor,1,379.99,01/11/19 09:10,"252 North St, Austin, TX 73301" +142890,AAA Batteries (4-pack),1,2.99,01/08/19 13:03,"652 Johnson St, San Francisco, CA 94016" +142891,LG Washing Machine,1,600.0,01/13/19 10:44,"586 Walnut St, Austin, TX 73301" +142892,AA Batteries (4-pack),1,3.84,01/25/19 19:59,"776 Pine St, Dallas, TX 75001" +142893,AAA Batteries (4-pack),1,2.99,01/02/19 00:57,"337 Walnut St, Boston, MA 02215" +142894,Google Phone,1,600,01/02/19 14:40,"908 Lakeview St, Los Angeles, CA 90001" +142895,iPhone,1,700,01/26/19 10:18,"179 Meadow St, San Francisco, CA 94016" +142896,USB-C Charging Cable,1,11.95,01/17/19 11:24,"487 Walnut St, Boston, MA 02215" +142897,27in FHD Monitor,1,149.99,01/17/19 10:21,"10 Ridge St, San Francisco, CA 94016" +142898,AA Batteries (4-pack),1,3.84,01/21/19 03:47,"163 Meadow St, Portland, ME 04101" +142899,AA Batteries (4-pack),1,3.84,01/28/19 17:25,"568 Highland St, Dallas, TX 75001" +142900,AAA Batteries (4-pack),1,2.99,01/27/19 11:10,"49 Forest St, Austin, TX 73301" +142901,34in Ultrawide Monitor,1,379.99,01/01/19 19:22,"285 North St, New York City, NY 10001" +142902,AA Batteries (4-pack),1,3.84,01/07/19 07:51,"520 Highland St, Boston, MA 02215" +142903,Lightning Charging Cable,1,14.95,01/14/19 18:38,"823 Jackson St, Boston, MA 02215" +142904,Lightning Charging Cable,1,14.95,01/10/19 20:04,"876 North St, San Francisco, CA 94016" +142905,Apple Airpods Headphones,1,150,01/18/19 22:25,"307 Forest St, Los Angeles, CA 90001" +142906,Wired Headphones,1,11.99,01/25/19 18:17,"884 14th St, Atlanta, GA 30301" +142907,Apple Airpods Headphones,1,150,01/13/19 15:14,"912 Wilson St, Portland, OR 97035" +142908,USB-C Charging Cable,1,11.95,01/14/19 07:33,"972 North St, San Francisco, CA 94016" +142909,Google Phone,1,600,01/15/19 11:53,"307 West St, San Francisco, CA 94016" +142909,USB-C Charging Cable,1,11.95,01/15/19 11:53,"307 West St, San Francisco, CA 94016" +142910,Apple Airpods Headphones,1,150,01/27/19 15:09,"668 Main St, New York City, NY 10001" +142911,USB-C Charging Cable,1,11.95,01/31/19 17:08,"279 Adams St, Dallas, TX 75001" +142912,AAA Batteries (4-pack),1,2.99,01/14/19 13:24,"899 River St, Boston, MA 02215" +142913,34in Ultrawide Monitor,1,379.99,01/14/19 16:08,"749 Washington St, San Francisco, CA 94016" +142914,AA Batteries (4-pack),1,3.84,01/17/19 13:53,"68 Jackson St, Atlanta, GA 30301" +142915,Wired Headphones,1,11.99,01/08/19 09:33,"195 6th St, San Francisco, CA 94016" +142916,AAA Batteries (4-pack),2,2.99,01/17/19 11:19,"392 Hickory St, Los Angeles, CA 90001" +142917,Bose SoundSport Headphones,1,99.99,01/01/19 16:15,"345 Jefferson St, New York City, NY 10001" +142918,USB-C Charging Cable,1,11.95,01/31/19 15:38,"322 Highland St, Portland, OR 97035" +142919,Bose SoundSport Headphones,1,99.99,01/17/19 21:39,"314 Elm St, Los Angeles, CA 90001" +142920,Apple Airpods Headphones,1,150,01/20/19 11:55,"943 Spruce St, San Francisco, CA 94016" +142921,Wired Headphones,1,11.99,01/26/19 21:28,"540 Dogwood St, Seattle, WA 98101" +142922,Lightning Charging Cable,1,14.95,02/01/19 00:15,"23 Meadow St, Seattle, WA 98101" +142923,20in Monitor,1,109.99,01/20/19 11:17,"117 Lincoln St, Austin, TX 73301" +142924,Vareebadd Phone,1,400,01/31/19 15:12,"759 Park St, Dallas, TX 75001" +142925,AA Batteries (4-pack),1,3.84,01/05/19 10:36,"326 8th St, Boston, MA 02215" +142926,iPhone,1,700,01/17/19 23:59,"297 North St, New York City, NY 10001" +142927,Apple Airpods Headphones,1,150,01/21/19 09:37,"547 Highland St, New York City, NY 10001" +142928,Apple Airpods Headphones,1,150,01/13/19 23:18,"731 Madison St, San Francisco, CA 94016" +142929,USB-C Charging Cable,1,11.95,01/20/19 09:15,"984 Church St, San Francisco, CA 94016" +142930,Bose SoundSport Headphones,1,99.99,01/19/19 20:24,"278 14th St, Dallas, TX 75001" +142931,27in FHD Monitor,1,149.99,01/03/19 06:07,"443 Cedar St, Austin, TX 73301" +142932,Apple Airpods Headphones,1,150,01/29/19 19:54,"676 Spruce St, San Francisco, CA 94016" +142933,Wired Headphones,1,11.99,01/17/19 09:17,"427 Center St, Los Angeles, CA 90001" +142934,Lightning Charging Cable,1,14.95,01/14/19 08:17,"711 South St, New York City, NY 10001" +142935,ThinkPad Laptop,1,999.99,01/12/19 16:59,"30 9th St, Dallas, TX 75001" +142936,iPhone,1,700,01/14/19 10:30,"811 Ridge St, Atlanta, GA 30301" +142936,Lightning Charging Cable,1,14.95,01/14/19 10:30,"811 Ridge St, Atlanta, GA 30301" +142937,AA Batteries (4-pack),1,3.84,01/14/19 14:08,"814 Church St, San Francisco, CA 94016" +142938,USB-C Charging Cable,1,11.95,01/05/19 16:19,"648 Church St, Atlanta, GA 30301" +142939,Wired Headphones,1,11.99,01/21/19 18:50,"87 Meadow St, San Francisco, CA 94016" +142940,34in Ultrawide Monitor,1,379.99,01/06/19 00:17,"183 Center St, Boston, MA 02215" +142941,iPhone,1,700,01/21/19 01:25,"386 13th St, Seattle, WA 98101" +142942,AAA Batteries (4-pack),3,2.99,01/01/19 11:33,"932 Lakeview St, San Francisco, CA 94016" +142943,Wired Headphones,1,11.99,01/11/19 21:41,"13 Johnson St, New York City, NY 10001" +142944,AA Batteries (4-pack),2,3.84,01/16/19 19:04,"723 Hickory St, Atlanta, GA 30301" +142945,USB-C Charging Cable,1,11.95,01/21/19 01:25,"122 Forest St, Portland, OR 97035" +142946,Apple Airpods Headphones,1,150,01/23/19 18:53,"459 Adams St, Boston, MA 02215" +142947,Wired Headphones,2,11.99,01/20/19 06:49,"438 Highland St, San Francisco, CA 94016" +142948,Lightning Charging Cable,1,14.95,01/20/19 10:43,"283 9th St, Portland, OR 97035" +142949,Vareebadd Phone,1,400,01/14/19 22:43,"627 Ridge St, San Francisco, CA 94016" +142949,Wired Headphones,1,11.99,01/14/19 22:43,"627 Ridge St, San Francisco, CA 94016" +142950,AAA Batteries (4-pack),1,2.99,01/05/19 11:49,"978 Meadow St, Los Angeles, CA 90001" +142951,27in FHD Monitor,1,149.99,01/15/19 06:39,"195 Chestnut St, San Francisco, CA 94016" +142952,Flatscreen TV,1,300,01/21/19 18:22,"376 Willow St, New York City, NY 10001" +142953,AA Batteries (4-pack),1,3.84,01/20/19 21:38,"124 Sunset St, Seattle, WA 98101" +142954,27in FHD Monitor,1,149.99,01/28/19 22:09,"356 Willow St, San Francisco, CA 94016" +142955,AA Batteries (4-pack),2,3.84,01/16/19 10:31,"198 Jefferson St, Boston, MA 02215" +142956,AA Batteries (4-pack),3,3.84,01/11/19 23:11,"653 4th St, Dallas, TX 75001" +142957,Lightning Charging Cable,1,14.95,01/05/19 11:28,"859 11th St, San Francisco, CA 94016" +142958,AA Batteries (4-pack),2,3.84,01/01/19 08:00,"94 13th St, New York City, NY 10001" +142959,20in Monitor,1,109.99,01/27/19 23:42,"257 Washington St, Seattle, WA 98101" +142960,Bose SoundSport Headphones,1,99.99,01/16/19 07:28,"585 Park St, Dallas, TX 75001" +142961,AA Batteries (4-pack),2,3.84,01/21/19 14:16,"507 Sunset St, Los Angeles, CA 90001" +142962,AA Batteries (4-pack),1,3.84,01/31/19 17:09,"278 Pine St, Seattle, WA 98101" +142963,USB-C Charging Cable,1,11.95,01/13/19 12:25,"878 Chestnut St, Dallas, TX 75001" +142964,Bose SoundSport Headphones,1,99.99,01/09/19 22:55,"343 Hickory St, San Francisco, CA 94016" +142965,AA Batteries (4-pack),1,3.84,01/07/19 15:29,"399 Johnson St, San Francisco, CA 94016" +142966,Lightning Charging Cable,1,14.95,01/06/19 06:30,"141 West St, Seattle, WA 98101" +142967,USB-C Charging Cable,1,11.95,01/23/19 14:22,"771 Jefferson St, New York City, NY 10001" +142968,AA Batteries (4-pack),2,3.84,01/09/19 09:02,"129 Chestnut St, Austin, TX 73301" +142969,AAA Batteries (4-pack),1,2.99,01/16/19 15:00,"334 13th St, San Francisco, CA 94016" +142970,USB-C Charging Cable,1,11.95,01/07/19 21:52,"4 5th St, New York City, NY 10001" +142971,Google Phone,1,600,01/22/19 21:16,"437 Center St, San Francisco, CA 94016" +142972,Wired Headphones,1,11.99,01/11/19 06:46,"677 Main St, Seattle, WA 98101" +142973,iPhone,1,700,01/29/19 16:47,"941 Washington St, San Francisco, CA 94016" +142974,ThinkPad Laptop,1,999.99,01/19/19 16:54,"542 Elm St, San Francisco, CA 94016" +142975,34in Ultrawide Monitor,1,379.99,01/22/19 22:00,"401 11th St, San Francisco, CA 94016" +142976,USB-C Charging Cable,2,11.95,01/14/19 11:24,"124 Spruce St, San Francisco, CA 94016" +142977,Bose SoundSport Headphones,1,99.99,01/29/19 13:52,"590 Church St, San Francisco, CA 94016" +142978,Lightning Charging Cable,1,14.95,01/11/19 17:37,"345 West St, Austin, TX 73301" +142979,34in Ultrawide Monitor,1,379.99,01/21/19 20:22,"355 Elm St, Portland, OR 97035" +142980,Bose SoundSport Headphones,1,99.99,01/14/19 04:56,"358 14th St, New York City, NY 10001" +142981,Lightning Charging Cable,1,14.95,01/06/19 14:59,"969 River St, Los Angeles, CA 90001" +142982,Lightning Charging Cable,1,14.95,01/29/19 21:45,"270 Hickory St, Dallas, TX 75001" +142983,AA Batteries (4-pack),1,3.84,01/18/19 08:44,"848 4th St, Seattle, WA 98101" +142984,Wired Headphones,1,11.99,01/03/19 21:43,"740 14th St, Austin, TX 73301" +142985,27in FHD Monitor,1,149.99,01/09/19 16:28,"984 Park St, New York City, NY 10001" +142986,Apple Airpods Headphones,1,150,01/25/19 12:19,"797 11th St, San Francisco, CA 94016" +142987,AAA Batteries (4-pack),1,2.99,01/26/19 06:23,"250 4th St, Los Angeles, CA 90001" +142988,Apple Airpods Headphones,1,150,01/21/19 10:15,"868 Highland St, Seattle, WA 98101" +142989,Wired Headphones,1,11.99,01/17/19 22:43,"562 South St, San Francisco, CA 94016" +142990,34in Ultrawide Monitor,1,379.99,01/16/19 13:55,"976 13th St, New York City, NY 10001" +142991,34in Ultrawide Monitor,1,379.99,01/10/19 23:04,"141 Jackson St, San Francisco, CA 94016" +142992,20in Monitor,1,109.99,01/19/19 17:18,"338 Walnut St, Los Angeles, CA 90001" +142993,AA Batteries (4-pack),1,3.84,01/12/19 12:03,"973 North St, New York City, NY 10001" +142994,Wired Headphones,1,11.99,01/07/19 13:04,"46 Washington St, Portland, OR 97035" +142995,27in 4K Gaming Monitor,1,389.99,01/27/19 17:44,"518 Maple St, Boston, MA 02215" +142996,27in FHD Monitor,1,149.99,01/16/19 18:58,"315 8th St, Seattle, WA 98101" +142997,AAA Batteries (4-pack),1,2.99,01/31/19 21:44,"131 5th St, San Francisco, CA 94016" +142998,Lightning Charging Cable,1,14.95,01/20/19 15:25,"670 2nd St, Los Angeles, CA 90001" +142999,AA Batteries (4-pack),1,3.84,01/22/19 13:13,"742 6th St, Los Angeles, CA 90001" +143000,Wired Headphones,1,11.99,01/22/19 12:14,"956 Hickory St, San Francisco, CA 94016" +143001,Lightning Charging Cable,1,14.95,01/29/19 10:18,"1 Pine St, Atlanta, GA 30301" +143002,USB-C Charging Cable,1,11.95,01/31/19 13:14,"520 8th St, New York City, NY 10001" +143003,Lightning Charging Cable,1,14.95,01/17/19 15:41,"522 Hickory St, New York City, NY 10001" +143004,Wired Headphones,1,11.99,01/12/19 09:54,"323 Church St, New York City, NY 10001" +143005,AAA Batteries (4-pack),1,2.99,01/17/19 18:09,"506 2nd St, Austin, TX 73301" +143006,USB-C Charging Cable,1,11.95,01/04/19 09:19,"959 Pine St, Atlanta, GA 30301" +143007,Bose SoundSport Headphones,1,99.99,01/12/19 07:29,"472 Wilson St, San Francisco, CA 94016" +143008,Lightning Charging Cable,1,14.95,01/08/19 06:04,"386 Madison St, San Francisco, CA 94016" +143009,USB-C Charging Cable,1,11.95,01/15/19 14:38,"523 13th St, Seattle, WA 98101" +143010,USB-C Charging Cable,1,11.95,01/15/19 13:21,"319 7th St, Los Angeles, CA 90001" +143011,AAA Batteries (4-pack),3,2.99,01/25/19 18:22,"128 Johnson St, San Francisco, CA 94016" +143012,USB-C Charging Cable,1,11.95,01/09/19 17:40,"884 13th St, Boston, MA 02215" +143013,AAA Batteries (4-pack),2,2.99,01/18/19 14:44,"194 Adams St, New York City, NY 10001" +143014,USB-C Charging Cable,1,11.95,01/13/19 18:46,"683 Hickory St, San Francisco, CA 94016" +143015,Lightning Charging Cable,1,14.95,01/18/19 12:16,"760 Elm St, Dallas, TX 75001" +143016,ThinkPad Laptop,1,999.99,01/27/19 11:45,"573 Highland St, San Francisco, CA 94016" +143017,Bose SoundSport Headphones,1,99.99,01/06/19 07:07,"316 Washington St, San Francisco, CA 94016" +143018,Google Phone,1,600,01/09/19 12:58,"219 Center St, San Francisco, CA 94016" +143019,Flatscreen TV,1,300,01/03/19 14:51,"674 Jefferson St, Portland, OR 97035" +143020,USB-C Charging Cable,1,11.95,01/05/19 18:50,"242 Center St, San Francisco, CA 94016" +143021,Apple Airpods Headphones,1,150,01/27/19 21:08,"897 Lincoln St, New York City, NY 10001" +143022,34in Ultrawide Monitor,1,379.99,01/24/19 19:56,"10 Hill St, Los Angeles, CA 90001" +143023,USB-C Charging Cable,1,11.95,01/10/19 14:25,"321 Sunset St, San Francisco, CA 94016" +143024,iPhone,1,700,01/20/19 11:25,"633 Center St, Atlanta, GA 30301" +143025,27in FHD Monitor,1,149.99,01/28/19 22:22,"809 Center St, San Francisco, CA 94016" +143026,AAA Batteries (4-pack),1,2.99,01/01/19 17:50,"525 River St, Portland, OR 97035" +143027,34in Ultrawide Monitor,1,379.99,01/17/19 16:23,"403 Maple St, San Francisco, CA 94016" +143028,Lightning Charging Cable,1,14.95,01/21/19 16:47,"170 Lincoln St, Portland, OR 97035" +143029,27in 4K Gaming Monitor,1,389.99,01/27/19 11:34,"555 8th St, San Francisco, CA 94016" +143030,AAA Batteries (4-pack),1,2.99,01/05/19 21:56,"670 12th St, Dallas, TX 75001" +143031,Apple Airpods Headphones,1,150,01/31/19 20:02,"141 14th St, San Francisco, CA 94016" +143032,USB-C Charging Cable,1,11.95,01/02/19 23:01,"989 6th St, Los Angeles, CA 90001" +143033,Macbook Pro Laptop,1,1700,01/26/19 08:05,"703 Spruce St, Seattle, WA 98101" +143034,Bose SoundSport Headphones,1,99.99,01/01/19 17:35,"493 13th St, Seattle, WA 98101" +143035,USB-C Charging Cable,1,11.95,01/30/19 19:14,"598 Elm St, Austin, TX 73301" +143036,34in Ultrawide Monitor,1,379.99,01/01/19 09:57,"882 Spruce St, Portland, OR 97035" +143037,Lightning Charging Cable,1,14.95,01/11/19 22:21,"639 4th St, Dallas, TX 75001" +143038,Lightning Charging Cable,1,14.95,01/30/19 14:05,"670 5th St, Atlanta, GA 30301" +143039,Vareebadd Phone,1,400,01/17/19 21:19,"620 Meadow St, Los Angeles, CA 90001" +143040,Macbook Pro Laptop,1,1700,01/17/19 23:01,"994 2nd St, Dallas, TX 75001" +143041,USB-C Charging Cable,1,11.95,01/01/19 16:30,"930 Johnson St, New York City, NY 10001" +143042,AA Batteries (4-pack),1,3.84,01/28/19 18:00,"609 12th St, San Francisco, CA 94016" +143043,34in Ultrawide Monitor,1,379.99,01/04/19 04:01,"141 Lincoln St, Boston, MA 02215" +143044,AAA Batteries (4-pack),1,2.99,01/08/19 18:36,"206 Main St, Los Angeles, CA 90001" +143045,AAA Batteries (4-pack),1,2.99,01/12/19 17:36,"576 Church St, Los Angeles, CA 90001" +143046,27in 4K Gaming Monitor,1,389.99,01/09/19 09:24,"988 Cedar St, Boston, MA 02215" +143047,Lightning Charging Cable,1,14.95,01/08/19 23:56,"851 5th St, Austin, TX 73301" +143048,27in FHD Monitor,1,149.99,01/17/19 01:17,"623 10th St, San Francisco, CA 94016" +143049,Apple Airpods Headphones,1,150,01/06/19 20:16,"605 Church St, Boston, MA 02215" +143050,AAA Batteries (4-pack),1,2.99,01/22/19 18:30,"288 Highland St, Seattle, WA 98101" +143051,Apple Airpods Headphones,1,150,01/23/19 21:40,"846 Ridge St, San Francisco, CA 94016" +143052,AA Batteries (4-pack),1,3.84,01/01/19 18:10,"245 Church St, Portland, OR 97035" +143053,Apple Airpods Headphones,1,150,01/23/19 16:58,"794 Meadow St, San Francisco, CA 94016" +143054,USB-C Charging Cable,1,11.95,01/11/19 14:09,"714 West St, Los Angeles, CA 90001" +143055,Macbook Pro Laptop,1,1700,01/04/19 15:19,"965 Pine St, Dallas, TX 75001" +143056,AAA Batteries (4-pack),1,2.99,01/18/19 17:20,"622 8th St, Boston, MA 02215" +143057,AA Batteries (4-pack),1,3.84,01/02/19 16:00,"594 Forest St, Los Angeles, CA 90001" +143058,AA Batteries (4-pack),2,3.84,01/02/19 16:39,"795 9th St, Portland, ME 04101" +143059,20in Monitor,1,109.99,01/22/19 18:23,"849 Willow St, Seattle, WA 98101" +143060,Wired Headphones,1,11.99,01/12/19 16:14,"57 13th St, San Francisco, CA 94016" +143061,Bose SoundSport Headphones,1,99.99,01/09/19 19:50,"276 River St, Seattle, WA 98101" +143062,34in Ultrawide Monitor,1,379.99,01/01/19 20:34,"699 North St, San Francisco, CA 94016" +143063,Bose SoundSport Headphones,1,99.99,01/26/19 08:10,"660 Madison St, Boston, MA 02215" +143064,Wired Headphones,1,11.99,01/19/19 17:23,"131 Hill St, Austin, TX 73301" +143065,Macbook Pro Laptop,1,1700,01/21/19 12:35,"651 5th St, Austin, TX 73301" +143066,AA Batteries (4-pack),1,3.84,01/30/19 12:57,"237 Lakeview St, Los Angeles, CA 90001" +143067,27in FHD Monitor,1,149.99,01/20/19 23:47,"296 Park St, Portland, ME 04101" +143068,Bose SoundSport Headphones,1,99.99,01/24/19 11:35,"821 Hickory St, New York City, NY 10001" +143069,Wired Headphones,2,11.99,01/30/19 10:46,"4 Lake St, Los Angeles, CA 90001" +143070,27in FHD Monitor,1,149.99,01/16/19 19:43,"521 Forest St, Portland, ME 04101" +143071,Vareebadd Phone,1,400,01/24/19 22:41,"489 Pine St, Portland, ME 04101" +143072,Apple Airpods Headphones,1,150,01/16/19 20:55,"314 Lake St, Austin, TX 73301" +143073,Wired Headphones,1,11.99,01/23/19 11:12,"985 5th St, Dallas, TX 75001" +143074,Bose SoundSport Headphones,1,99.99,01/11/19 10:03,"29 2nd St, Los Angeles, CA 90001" +143075,AA Batteries (4-pack),1,3.84,01/18/19 14:47,"10 Jackson St, Austin, TX 73301" +143076,Lightning Charging Cable,1,14.95,01/25/19 15:16,"183 Meadow St, Los Angeles, CA 90001" +143077,AA Batteries (4-pack),1,3.84,01/30/19 19:16,"917 Hill St, Los Angeles, CA 90001" +143078,USB-C Charging Cable,1,11.95,01/07/19 17:50,"705 Sunset St, Dallas, TX 75001" +143079,AA Batteries (4-pack),1,3.84,01/11/19 20:57,"725 Chestnut St, Los Angeles, CA 90001" +143079,27in FHD Monitor,1,149.99,01/11/19 20:57,"725 Chestnut St, Los Angeles, CA 90001" +143080,Google Phone,1,600,01/05/19 13:41,"684 Johnson St, Boston, MA 02215" +143080,USB-C Charging Cable,1,11.95,01/05/19 13:41,"684 Johnson St, Boston, MA 02215" +143081,AAA Batteries (4-pack),4,2.99,01/24/19 08:53,"658 12th St, New York City, NY 10001" +143082,20in Monitor,1,109.99,01/25/19 00:17,"564 Ridge St, Portland, OR 97035" +143083,Apple Airpods Headphones,1,150,01/22/19 15:08,"296 Cherry St, New York City, NY 10001" +143083,AA Batteries (4-pack),2,3.84,01/22/19 15:08,"296 Cherry St, New York City, NY 10001" +143084,Bose SoundSport Headphones,1,99.99,01/30/19 19:59,"767 Meadow St, Los Angeles, CA 90001" +143085,AA Batteries (4-pack),1,3.84,01/04/19 16:13,"626 Church St, New York City, NY 10001" +143086,LG Washing Machine,1,600.0,01/04/19 10:17,"982 14th St, Los Angeles, CA 90001" +143087,USB-C Charging Cable,1,11.95,01/16/19 20:56,"227 Park St, Los Angeles, CA 90001" +143088,USB-C Charging Cable,1,11.95,01/09/19 23:12,"65 Pine St, Austin, TX 73301" +143089,Apple Airpods Headphones,1,150,01/31/19 10:29,"687 Jefferson St, Boston, MA 02215" +143090,27in 4K Gaming Monitor,1,389.99,01/07/19 20:11,"1 West St, San Francisco, CA 94016" +143091,Lightning Charging Cable,1,14.95,01/08/19 20:42,"719 Jackson St, San Francisco, CA 94016" +143092,USB-C Charging Cable,1,11.95,01/27/19 16:35,"403 13th St, New York City, NY 10001" +143093,AAA Batteries (4-pack),1,2.99,01/25/19 21:13,"903 Main St, San Francisco, CA 94016" +143094,Bose SoundSport Headphones,1,99.99,01/04/19 17:06,"69 Meadow St, San Francisco, CA 94016" +143095,Apple Airpods Headphones,1,150,01/31/19 18:30,"81 Lakeview St, Los Angeles, CA 90001" +143096,Bose SoundSport Headphones,1,99.99,01/01/19 13:23,"208 Church St, New York City, NY 10001" +143097,34in Ultrawide Monitor,1,379.99,01/17/19 13:46,"382 Jefferson St, New York City, NY 10001" +143098,Macbook Pro Laptop,1,1700,01/21/19 19:16,"849 Pine St, San Francisco, CA 94016" +143099,AA Batteries (4-pack),1,3.84,01/20/19 06:45,"710 Ridge St, New York City, NY 10001" +143100,USB-C Charging Cable,1,11.95,01/04/19 19:11,"97 1st St, San Francisco, CA 94016" +143101,Wired Headphones,1,11.99,01/21/19 19:20,"740 13th St, New York City, NY 10001" +143102,AAA Batteries (4-pack),3,2.99,01/16/19 20:28,"929 Sunset St, Portland, OR 97035" +143103,Apple Airpods Headphones,1,150,01/08/19 19:35,"931 Spruce St, San Francisco, CA 94016" +143104,Wired Headphones,1,11.99,01/23/19 09:13,"82 5th St, Austin, TX 73301" +143105,AAA Batteries (4-pack),1,2.99,01/09/19 19:12,"837 12th St, San Francisco, CA 94016" +143106,USB-C Charging Cable,1,11.95,01/21/19 06:29,"398 Willow St, San Francisco, CA 94016" +143107,Apple Airpods Headphones,1,150,01/06/19 00:24,"40 River St, Los Angeles, CA 90001" +143108,AAA Batteries (4-pack),1,2.99,01/30/19 22:17,"243 14th St, Boston, MA 02215" +143109,AAA Batteries (4-pack),1,2.99,01/20/19 13:35,"806 Wilson St, Boston, MA 02215" +143110,Lightning Charging Cable,1,14.95,01/25/19 06:20,"779 Jefferson St, New York City, NY 10001" +143111,Lightning Charging Cable,1,14.95,01/14/19 00:08,"297 Spruce St, New York City, NY 10001" +143112,Google Phone,1,600,01/21/19 07:30,"671 Jefferson St, San Francisco, CA 94016" +143112,USB-C Charging Cable,2,11.95,01/21/19 07:30,"671 Jefferson St, San Francisco, CA 94016" +143113,AAA Batteries (4-pack),1,2.99,01/14/19 01:03,"885 Pine St, Los Angeles, CA 90001" +143114,Wired Headphones,1,11.99,01/06/19 18:42,"35 1st St, Los Angeles, CA 90001" +143115,34in Ultrawide Monitor,1,379.99,01/07/19 23:27,"408 South St, Los Angeles, CA 90001" +143116,AA Batteries (4-pack),1,3.84,01/20/19 19:42,"778 Spruce St, Austin, TX 73301" +143117,Bose SoundSport Headphones,1,99.99,01/28/19 09:26,"610 5th St, Atlanta, GA 30301" +143118,AA Batteries (4-pack),2,3.84,01/11/19 13:42,"706 Chestnut St, Boston, MA 02215" +143118,USB-C Charging Cable,1,11.95,01/11/19 13:42,"706 Chestnut St, Boston, MA 02215" +143119,AAA Batteries (4-pack),2,2.99,01/05/19 11:00,"528 Washington St, Dallas, TX 75001" +143120,Lightning Charging Cable,1,14.95,01/22/19 18:14,"412 Chestnut St, Atlanta, GA 30301" +143121,Apple Airpods Headphones,1,150,01/25/19 20:12,"591 Lincoln St, Dallas, TX 75001" +143122,27in 4K Gaming Monitor,1,389.99,01/15/19 11:49,"130 Cedar St, Los Angeles, CA 90001" +143123,34in Ultrawide Monitor,1,379.99,01/13/19 19:56,"246 Washington St, Dallas, TX 75001" +143124,AAA Batteries (4-pack),2,2.99,01/04/19 21:20,"604 6th St, San Francisco, CA 94016" +143125,USB-C Charging Cable,1,11.95,01/15/19 17:30,"815 Highland St, San Francisco, CA 94016" +143126,27in FHD Monitor,1,149.99,01/09/19 22:32,"987 7th St, Boston, MA 02215" +143127,AA Batteries (4-pack),1,3.84,01/22/19 11:53,"111 Jackson St, San Francisco, CA 94016" +143128,Google Phone,1,600,01/06/19 16:38,"821 Spruce St, San Francisco, CA 94016" +143128,USB-C Charging Cable,1,11.95,01/06/19 16:38,"821 Spruce St, San Francisco, CA 94016" +143128,Wired Headphones,1,11.99,01/06/19 16:38,"821 Spruce St, San Francisco, CA 94016" +143129,Lightning Charging Cable,1,14.95,01/06/19 20:46,"566 Church St, Portland, OR 97035" +143130,Apple Airpods Headphones,1,150,01/05/19 10:44,"776 Main St, San Francisco, CA 94016" +143131,27in FHD Monitor,1,149.99,01/24/19 00:26,"213 Spruce St, San Francisco, CA 94016" +143132,AAA Batteries (4-pack),1,2.99,01/28/19 11:11,"468 Cherry St, Boston, MA 02215" +143133,20in Monitor,1,109.99,01/28/19 14:06,"486 South St, San Francisco, CA 94016" +143134,AA Batteries (4-pack),2,3.84,01/10/19 21:42,"954 Jefferson St, Atlanta, GA 30301" +143135,Macbook Pro Laptop,1,1700,01/05/19 00:55,"805 South St, Boston, MA 02215" +143136,34in Ultrawide Monitor,1,379.99,01/18/19 13:36,"885 Chestnut St, New York City, NY 10001" +143137,AAA Batteries (4-pack),1,2.99,01/26/19 15:54,"311 10th St, San Francisco, CA 94016" +143138,Apple Airpods Headphones,1,150,01/01/19 13:05,"132 1st St, Atlanta, GA 30301" +143139,ThinkPad Laptop,1,999.99,01/07/19 14:54,"786 Lake St, San Francisco, CA 94016" +143140,Wired Headphones,1,11.99,01/27/19 07:51,"395 Hickory St, Atlanta, GA 30301" +143141,Apple Airpods Headphones,1,150,01/11/19 12:18,"724 8th St, Boston, MA 02215" +143142,Google Phone,1,600,01/05/19 09:07,"630 6th St, Los Angeles, CA 90001" +143143,Lightning Charging Cable,1,14.95,01/11/19 09:23,"255 Washington St, San Francisco, CA 94016" +143144,Flatscreen TV,1,300,01/18/19 09:41,"623 Lakeview St, San Francisco, CA 94016" +143145,20in Monitor,1,109.99,01/12/19 11:38,"703 Lincoln St, Los Angeles, CA 90001" +143146,Bose SoundSport Headphones,1,99.99,01/24/19 08:11,"491 Wilson St, New York City, NY 10001" +143147,AAA Batteries (4-pack),1,2.99,01/09/19 20:19,"460 Maple St, Los Angeles, CA 90001" +143147,AAA Batteries (4-pack),3,2.99,01/09/19 20:19,"460 Maple St, Los Angeles, CA 90001" +143148,Apple Airpods Headphones,1,150,01/20/19 10:20,"42 Lincoln St, Los Angeles, CA 90001" +143149,Flatscreen TV,1,300,01/17/19 17:51,"352 Highland St, New York City, NY 10001" +143150,Apple Airpods Headphones,1,150,01/26/19 11:52,"421 7th St, New York City, NY 10001" +,,,,, +143151,AA Batteries (4-pack),2,3.84,01/02/19 12:34,"790 13th St, New York City, NY 10001" +143152,Lightning Charging Cable,1,14.95,01/18/19 17:14,"579 South St, Los Angeles, CA 90001" +143153,27in FHD Monitor,1,149.99,01/10/19 09:52,"313 Wilson St, San Francisco, CA 94016" +143154,27in 4K Gaming Monitor,1,389.99,01/01/19 15:28,"139 Lakeview St, Austin, TX 73301" +143155,AAA Batteries (4-pack),2,2.99,01/06/19 21:52,"744 Lake St, New York City, NY 10001" +143156,Bose SoundSport Headphones,1,99.99,01/08/19 15:47,"50 Forest St, San Francisco, CA 94016" +143157,Wired Headphones,1,11.99,01/04/19 18:27,"868 Dogwood St, Seattle, WA 98101" +143158,Macbook Pro Laptop,1,1700,01/03/19 14:08,"959 Chestnut St, San Francisco, CA 94016" +143159,USB-C Charging Cable,1,11.95,01/14/19 15:05,"742 Johnson St, San Francisco, CA 94016" +143160,AAA Batteries (4-pack),1,2.99,01/30/19 13:33,"526 Cherry St, Austin, TX 73301" +143161,27in FHD Monitor,1,149.99,01/13/19 19:02,"872 10th St, San Francisco, CA 94016" +143162,Lightning Charging Cable,1,14.95,01/30/19 15:52,"295 Cedar St, Los Angeles, CA 90001" +143163,Lightning Charging Cable,1,14.95,01/10/19 16:39,"318 Park St, Dallas, TX 75001" +143164,AA Batteries (4-pack),1,3.84,01/02/19 10:53,"900 Dogwood St, Boston, MA 02215" +143165,Wired Headphones,1,11.99,01/10/19 09:30,"383 Center St, San Francisco, CA 94016" +143166,USB-C Charging Cable,2,11.95,01/13/19 20:31,"839 Highland St, Los Angeles, CA 90001" +143167,Bose SoundSport Headphones,1,99.99,01/23/19 21:57,"475 Maple St, Atlanta, GA 30301" +143168,iPhone,1,700,01/03/19 12:36,"845 Cedar St, Los Angeles, CA 90001" +143169,Lightning Charging Cable,1,14.95,01/19/19 08:14,"814 Hickory St, Atlanta, GA 30301" +143170,AAA Batteries (4-pack),1,2.99,01/07/19 19:16,"259 Sunset St, Boston, MA 02215" +143171,Bose SoundSport Headphones,1,99.99,01/17/19 07:29,"206 Highland St, New York City, NY 10001" +143172,27in FHD Monitor,1,149.99,01/29/19 21:41,"29 4th St, Dallas, TX 75001" +143173,Apple Airpods Headphones,1,150,01/22/19 14:12,"263 Maple St, San Francisco, CA 94016" +143174,27in 4K Gaming Monitor,1,389.99,01/13/19 16:30,"196 Lincoln St, Dallas, TX 75001" +143175,34in Ultrawide Monitor,1,379.99,01/30/19 21:02,"886 Washington St, Boston, MA 02215" +143176,Macbook Pro Laptop,1,1700,01/10/19 16:51,"609 South St, New York City, NY 10001" +143177,iPhone,1,700,01/22/19 08:43,"813 Lake St, Portland, OR 97035" +143178,Flatscreen TV,1,300,01/13/19 12:44,"533 Willow St, Portland, OR 97035" +143179,Wired Headphones,2,11.99,01/11/19 02:36,"534 River St, San Francisco, CA 94016" +143180,AAA Batteries (4-pack),1,2.99,01/29/19 13:46,"2 Park St, San Francisco, CA 94016" +143181,Lightning Charging Cable,1,14.95,01/22/19 18:00,"561 Hill St, Los Angeles, CA 90001" +143182,Apple Airpods Headphones,1,150,01/16/19 17:46,"451 Main St, Dallas, TX 75001" +143183,Apple Airpods Headphones,1,150,01/24/19 17:49,"487 Spruce St, Seattle, WA 98101" +143184,34in Ultrawide Monitor,1,379.99,01/25/19 11:46,"862 Hickory St, New York City, NY 10001" +143185,AA Batteries (4-pack),1,3.84,01/14/19 20:06,"777 Park St, San Francisco, CA 94016" +143186,Apple Airpods Headphones,1,150,01/02/19 12:08,"829 Dogwood St, San Francisco, CA 94016" +143187,USB-C Charging Cable,1,11.95,01/08/19 20:49,"246 10th St, Dallas, TX 75001" +143188,iPhone,1,700,01/03/19 21:05,"21 Sunset St, New York City, NY 10001" +143189,Lightning Charging Cable,1,14.95,01/08/19 20:55,"331 Church St, Los Angeles, CA 90001" +143190,Wired Headphones,1,11.99,01/20/19 19:28,"264 10th St, Boston, MA 02215" +143191,Flatscreen TV,1,300,01/29/19 22:47,"567 Lake St, Boston, MA 02215" +143192,Bose SoundSport Headphones,1,99.99,01/23/19 05:53,"197 Lake St, San Francisco, CA 94016" +143193,AAA Batteries (4-pack),1,2.99,01/27/19 15:01,"897 River St, Los Angeles, CA 90001" +143194,Apple Airpods Headphones,1,150,01/12/19 18:15,"674 Lincoln St, Boston, MA 02215" +143195,LG Washing Machine,1,600.0,01/23/19 23:57,"938 Sunset St, Portland, OR 97035" +143196,34in Ultrawide Monitor,1,379.99,01/01/19 19:38,"837 6th St, San Francisco, CA 94016" +143197,AA Batteries (4-pack),1,3.84,01/23/19 08:39,"223 Elm St, Boston, MA 02215" +143198,AA Batteries (4-pack),1,3.84,01/02/19 19:50,"837 Hill St, Los Angeles, CA 90001" +143199,27in FHD Monitor,1,149.99,01/21/19 22:45,"559 Park St, San Francisco, CA 94016" +143200,Wired Headphones,1,11.99,01/31/19 14:36,"441 Willow St, Atlanta, GA 30301" +143201,AAA Batteries (4-pack),2,2.99,01/17/19 19:59,"214 Willow St, San Francisco, CA 94016" +143202,20in Monitor,1,109.99,01/25/19 17:23,"668 Lakeview St, Seattle, WA 98101" +143203,Lightning Charging Cable,1,14.95,01/29/19 23:31,"343 Pine St, San Francisco, CA 94016" +143204,Bose SoundSport Headphones,1,99.99,01/21/19 09:48,"632 Washington St, New York City, NY 10001" +143205,Bose SoundSport Headphones,1,99.99,01/11/19 11:58,"646 6th St, Dallas, TX 75001" +143206,AAA Batteries (4-pack),3,2.99,01/05/19 00:02,"163 Sunset St, New York City, NY 10001" +143207,Apple Airpods Headphones,1,150,01/25/19 14:58,"938 Lakeview St, Atlanta, GA 30301" +143208,27in 4K Gaming Monitor,1,389.99,01/24/19 15:44,"383 9th St, Los Angeles, CA 90001" +143209,20in Monitor,1,109.99,01/20/19 18:11,"164 5th St, New York City, NY 10001" +143210,27in FHD Monitor,1,149.99,01/23/19 21:29,"993 Cedar St, New York City, NY 10001" +143211,27in 4K Gaming Monitor,1,389.99,01/09/19 23:21,"223 4th St, San Francisco, CA 94016" +143212,Wired Headphones,1,11.99,01/15/19 16:05,"374 Meadow St, New York City, NY 10001" +143213,Macbook Pro Laptop,1,1700,01/30/19 22:34,"610 Elm St, Los Angeles, CA 90001" +143214,USB-C Charging Cable,1,11.95,01/17/19 20:32,"241 Lake St, New York City, NY 10001" +143215,AAA Batteries (4-pack),1,2.99,01/20/19 13:25,"39 Lake St, Austin, TX 73301" +143216,Wired Headphones,1,11.99,01/02/19 19:05,"462 Chestnut St, San Francisco, CA 94016" +143217,Lightning Charging Cable,1,14.95,01/16/19 23:24,"896 Center St, Los Angeles, CA 90001" +143218,USB-C Charging Cable,1,11.95,01/06/19 10:17,"145 5th St, Atlanta, GA 30301" +143219,20in Monitor,1,109.99,01/03/19 00:35,"169 Church St, Los Angeles, CA 90001" +143220,USB-C Charging Cable,1,11.95,01/19/19 18:02,"386 Walnut St, Boston, MA 02215" +143221,Apple Airpods Headphones,1,150,01/22/19 09:27,"674 West St, Boston, MA 02215" +143222,Bose SoundSport Headphones,1,99.99,01/10/19 12:28,"136 Cherry St, Austin, TX 73301" +143223,Wired Headphones,1,11.99,01/18/19 15:17,"464 Meadow St, Dallas, TX 75001" +143224,AAA Batteries (4-pack),3,2.99,01/23/19 20:39,"899 Elm St, Atlanta, GA 30301" +143225,27in 4K Gaming Monitor,1,389.99,01/16/19 21:53,"943 9th St, Boston, MA 02215" +143226,AA Batteries (4-pack),1,3.84,01/04/19 17:48,"330 12th St, Atlanta, GA 30301" +143227,Bose SoundSport Headphones,1,99.99,01/22/19 10:17,"698 Dogwood St, San Francisco, CA 94016" +143228,Apple Airpods Headphones,1,150,01/03/19 17:56,"709 River St, Atlanta, GA 30301" +143229,USB-C Charging Cable,1,11.95,01/22/19 13:51,"155 Willow St, San Francisco, CA 94016" +143230,AAA Batteries (4-pack),1,2.99,01/10/19 20:03,"353 Madison St, Boston, MA 02215" +143231,20in Monitor,1,109.99,01/24/19 22:10,"416 1st St, Boston, MA 02215" +143232,Wired Headphones,2,11.99,01/24/19 18:00,"431 Willow St, Atlanta, GA 30301" +143233,Lightning Charging Cable,1,14.95,01/06/19 11:46,"815 6th St, Austin, TX 73301" +143234,Bose SoundSport Headphones,1,99.99,01/16/19 13:26,"221 Maple St, Boston, MA 02215" +143235,Wired Headphones,1,11.99,01/27/19 17:39,"490 Dogwood St, Austin, TX 73301" +143236,AAA Batteries (4-pack),2,2.99,01/11/19 20:28,"143 Adams St, Portland, ME 04101" +143237,Flatscreen TV,1,300,01/06/19 10:08,"677 Park St, San Francisco, CA 94016" +143238,Lightning Charging Cable,1,14.95,01/10/19 09:10,"161 Forest St, San Francisco, CA 94016" +143239,Vareebadd Phone,1,400,01/20/19 07:05,"23 1st St, Portland, OR 97035" +143240,AA Batteries (4-pack),1,3.84,01/12/19 17:09,"660 Lake St, Portland, ME 04101" +143241,Lightning Charging Cable,1,14.95,01/29/19 22:20,"638 South St, Dallas, TX 75001" +143242,AA Batteries (4-pack),1,3.84,01/25/19 22:37,"301 Meadow St, New York City, NY 10001" +143243,iPhone,1,700,01/09/19 20:24,"836 13th St, Los Angeles, CA 90001" +143244,AA Batteries (4-pack),1,3.84,01/10/19 20:44,"792 8th St, Los Angeles, CA 90001" +143245,Lightning Charging Cable,1,14.95,01/31/19 14:21,"329 Ridge St, Dallas, TX 75001" +143246,Wired Headphones,1,11.99,01/13/19 15:12,"235 Willow St, Seattle, WA 98101" +143247,Lightning Charging Cable,1,14.95,01/05/19 12:22,"836 12th St, Los Angeles, CA 90001" +143248,Bose SoundSport Headphones,1,99.99,01/20/19 11:55,"304 Wilson St, Atlanta, GA 30301" +143249,Wired Headphones,1,11.99,01/28/19 12:05,"869 13th St, Boston, MA 02215" +143250,27in FHD Monitor,1,149.99,01/03/19 14:49,"448 10th St, Los Angeles, CA 90001" +143251,USB-C Charging Cable,1,11.95,01/15/19 09:19,"290 Johnson St, San Francisco, CA 94016" +143252,AA Batteries (4-pack),1,3.84,01/28/19 23:24,"159 Sunset St, Atlanta, GA 30301" +143253,Wired Headphones,1,11.99,01/11/19 15:03,"663 Center St, San Francisco, CA 94016" +143254,Google Phone,1,600,01/16/19 14:02,"800 Meadow St, San Francisco, CA 94016" +143254,USB-C Charging Cable,1,11.95,01/16/19 14:02,"800 Meadow St, San Francisco, CA 94016" +143255,Flatscreen TV,1,300,01/28/19 23:07,"581 Chestnut St, New York City, NY 10001" +143256,Lightning Charging Cable,1,14.95,01/21/19 17:04,"399 10th St, Portland, OR 97035" +143257,27in FHD Monitor,1,149.99,01/26/19 08:59,"243 Washington St, Portland, OR 97035" +143258,Apple Airpods Headphones,1,150,01/10/19 19:49,"10 West St, Dallas, TX 75001" +143259,Apple Airpods Headphones,1,150,01/12/19 13:32,"99 Lake St, San Francisco, CA 94016" +143260,Apple Airpods Headphones,1,150,01/27/19 03:07,"530 Johnson St, Seattle, WA 98101" +143261,ThinkPad Laptop,1,999.99,01/24/19 17:11,"873 Maple St, Los Angeles, CA 90001" +143262,Apple Airpods Headphones,1,150,01/10/19 10:39,"112 Hickory St, Los Angeles, CA 90001" +143263,Wired Headphones,1,11.99,01/24/19 12:43,"182 West St, Seattle, WA 98101" +143264,Lightning Charging Cable,1,14.95,01/24/19 16:52,"452 West St, Austin, TX 73301" +143265,iPhone,1,700,01/11/19 11:38,"964 Lakeview St, Boston, MA 02215" +143265,Wired Headphones,1,11.99,01/11/19 11:38,"964 Lakeview St, Boston, MA 02215" +143266,Wired Headphones,1,11.99,01/24/19 16:22,"528 River St, Atlanta, GA 30301" +143267,USB-C Charging Cable,1,11.95,01/03/19 16:51,"601 6th St, Dallas, TX 75001" +143268,27in 4K Gaming Monitor,1,389.99,01/18/19 23:50,"217 8th St, Austin, TX 73301" +143269,AAA Batteries (4-pack),1,2.99,01/12/19 09:08,"12 Elm St, Los Angeles, CA 90001" +143270,Lightning Charging Cable,2,14.95,01/31/19 17:27,"548 Walnut St, San Francisco, CA 94016" +143271,Google Phone,1,600,01/27/19 10:02,"508 Cherry St, San Francisco, CA 94016" +143272,Google Phone,1,600,01/11/19 00:11,"662 Ridge St, Boston, MA 02215" +143273,iPhone,1,700,01/20/19 18:20,"204 Ridge St, Boston, MA 02215" +143273,Apple Airpods Headphones,1,150,01/20/19 18:20,"204 Ridge St, Boston, MA 02215" +143274,27in FHD Monitor,1,149.99,01/31/19 13:13,"996 Madison St, New York City, NY 10001" +143275,Lightning Charging Cable,1,14.95,01/08/19 17:41,"638 Dogwood St, Los Angeles, CA 90001" +143276,AA Batteries (4-pack),1,3.84,01/11/19 09:02,"804 9th St, Dallas, TX 75001" +143277,Bose SoundSport Headphones,1,99.99,01/10/19 16:43,"668 1st St, Los Angeles, CA 90001" +143278,Wired Headphones,1,11.99,01/03/19 21:23,"42 North St, San Francisco, CA 94016" +143279,iPhone,1,700,01/29/19 11:22,"293 Cedar St, Los Angeles, CA 90001" +143280,AA Batteries (4-pack),1,3.84,01/01/19 08:40,"146 Dogwood St, San Francisco, CA 94016" +143281,27in FHD Monitor,1,149.99,01/04/19 14:24,"769 Church St, Seattle, WA 98101" +143282,AAA Batteries (4-pack),1,2.99,01/23/19 16:48,"558 Madison St, Boston, MA 02215" +143283,AA Batteries (4-pack),2,3.84,01/22/19 12:53,"821 Jefferson St, Portland, OR 97035" +143284,iPhone,1,700,01/19/19 21:50,"231 11th St, New York City, NY 10001" +143285,AAA Batteries (4-pack),1,2.99,01/25/19 06:08,"730 West St, Los Angeles, CA 90001" +143286,USB-C Charging Cable,1,11.95,01/26/19 12:29,"763 Ridge St, Boston, MA 02215" +143287,Wired Headphones,1,11.99,01/10/19 12:45,"416 North St, New York City, NY 10001" +143288,Bose SoundSport Headphones,1,99.99,01/09/19 13:27,"203 River St, Atlanta, GA 30301" +143289,AAA Batteries (4-pack),1,2.99,01/17/19 19:49,"304 South St, Los Angeles, CA 90001" +143290,Lightning Charging Cable,1,14.95,01/15/19 17:03,"133 5th St, Los Angeles, CA 90001" +143291,AAA Batteries (4-pack),1,2.99,01/03/19 17:44,"546 Cedar St, San Francisco, CA 94016" +143292,Lightning Charging Cable,1,14.95,01/11/19 10:08,"954 Spruce St, Los Angeles, CA 90001" +143293,AAA Batteries (4-pack),2,2.99,01/16/19 18:40,"279 Sunset St, Boston, MA 02215" +143294,AAA Batteries (4-pack),2,2.99,01/12/19 13:16,"467 Madison St, Portland, OR 97035" +143295,Flatscreen TV,1,300,01/12/19 23:10,"309 North St, Los Angeles, CA 90001" +143296,27in FHD Monitor,1,149.99,01/21/19 16:55,"789 14th St, Los Angeles, CA 90001" +143297,Lightning Charging Cable,1,14.95,01/12/19 19:51,"341 Madison St, San Francisco, CA 94016" +143298,Wired Headphones,1,11.99,01/12/19 09:22,"420 Church St, San Francisco, CA 94016" +143299,Macbook Pro Laptop,1,1700,01/18/19 15:50,"961 11th St, Dallas, TX 75001" +143300,AA Batteries (4-pack),2,3.84,01/03/19 00:47,"700 Center St, New York City, NY 10001" +143301,USB-C Charging Cable,1,11.95,01/02/19 19:34,"936 Elm St, San Francisco, CA 94016" +143302,Apple Airpods Headphones,1,150,01/27/19 14:43,"435 Wilson St, Seattle, WA 98101" +143303,AA Batteries (4-pack),1,3.84,01/09/19 22:50,"359 Cherry St, Dallas, TX 75001" +143304,Apple Airpods Headphones,1,150,01/24/19 16:40,"474 4th St, Atlanta, GA 30301" +143305,34in Ultrawide Monitor,1,379.99,01/27/19 17:42,"565 Johnson St, Boston, MA 02215" +143306,Apple Airpods Headphones,1,150,01/31/19 10:17,"266 Main St, New York City, NY 10001" +143307,Wired Headphones,1,11.99,01/05/19 19:52,"386 Cherry St, Seattle, WA 98101" +143308,Lightning Charging Cable,1,14.95,01/01/19 10:56,"203 11th St, San Francisco, CA 94016" +143308,AAA Batteries (4-pack),2,2.99,01/01/19 10:56,"203 11th St, San Francisco, CA 94016" +143309,Google Phone,1,600,01/07/19 14:28,"503 2nd St, Seattle, WA 98101" +143310,Wired Headphones,1,11.99,01/06/19 19:54,"5 7th St, San Francisco, CA 94016" +143311,Bose SoundSport Headphones,1,99.99,01/09/19 11:34,"629 Jackson St, San Francisco, CA 94016" +143312,Lightning Charging Cable,1,14.95,01/10/19 17:45,"295 Hill St, New York City, NY 10001" +143313,AA Batteries (4-pack),1,3.84,01/26/19 18:58,"149 Johnson St, Austin, TX 73301" +143314,AA Batteries (4-pack),1,3.84,01/15/19 21:23,"375 5th St, Boston, MA 02215" +143315,USB-C Charging Cable,1,11.95,01/23/19 18:15,"112 8th St, Austin, TX 73301" +143316,USB-C Charging Cable,1,11.95,01/16/19 23:01,"551 4th St, Portland, OR 97035" +143317,Bose SoundSport Headphones,1,99.99,01/22/19 19:41,"503 Pine St, Austin, TX 73301" +143318,AAA Batteries (4-pack),1,2.99,01/19/19 23:02,"325 Johnson St, San Francisco, CA 94016" +143319,USB-C Charging Cable,1,11.95,01/18/19 20:18,"998 Walnut St, San Francisco, CA 94016" +143320,USB-C Charging Cable,1,11.95,01/20/19 10:30,"365 7th St, San Francisco, CA 94016" +143321,Macbook Pro Laptop,1,1700,01/31/19 13:20,"982 Jefferson St, New York City, NY 10001" +143322,USB-C Charging Cable,1,11.95,01/02/19 03:27,"538 Spruce St, Portland, OR 97035" +143323,27in FHD Monitor,1,149.99,01/10/19 20:41,"880 9th St, Los Angeles, CA 90001" +143324,Macbook Pro Laptop,1,1700,01/23/19 23:20,"87 Johnson St, Portland, OR 97035" +143325,USB-C Charging Cable,1,11.95,01/09/19 14:02,"968 Center St, Portland, OR 97035" +143326,Bose SoundSport Headphones,1,99.99,01/31/19 10:48,"415 North St, Seattle, WA 98101" +143327,AAA Batteries (4-pack),1,2.99,01/16/19 08:23,"540 Church St, New York City, NY 10001" +143328,AAA Batteries (4-pack),1,2.99,01/18/19 19:12,"176 Willow St, Dallas, TX 75001" +143329,AA Batteries (4-pack),1,3.84,01/01/19 10:14,"775 Cedar St, Portland, OR 97035" +143330,27in FHD Monitor,1,149.99,01/18/19 17:49,"964 West St, Boston, MA 02215" +143331,Bose SoundSport Headphones,1,99.99,01/24/19 16:24,"492 Chestnut St, San Francisco, CA 94016" +143332,27in FHD Monitor,1,149.99,01/11/19 15:02,"497 10th St, San Francisco, CA 94016" +143333,USB-C Charging Cable,1,11.95,01/06/19 14:05,"170 10th St, New York City, NY 10001" +143334,AA Batteries (4-pack),1,3.84,01/03/19 20:26,"480 Meadow St, Dallas, TX 75001" +143335,Apple Airpods Headphones,1,150,01/06/19 16:24,"182 12th St, Los Angeles, CA 90001" +143336,ThinkPad Laptop,1,999.99,01/10/19 15:24,"889 8th St, San Francisco, CA 94016" +143337,AAA Batteries (4-pack),1,2.99,01/24/19 09:43,"468 Jefferson St, Boston, MA 02215" +143338,AAA Batteries (4-pack),6,2.99,01/16/19 13:38,"390 Ridge St, San Francisco, CA 94016" +143339,Lightning Charging Cable,1,14.95,01/24/19 07:16,"125 Willow St, San Francisco, CA 94016" +143340,AA Batteries (4-pack),1,3.84,01/01/19 15:04,"427 Lincoln St, Atlanta, GA 30301" +143341,Google Phone,1,600,01/22/19 17:43,"541 Willow St, Dallas, TX 75001" +143341,USB-C Charging Cable,1,11.95,01/22/19 17:43,"541 Willow St, Dallas, TX 75001" +143342,AA Batteries (4-pack),1,3.84,01/08/19 05:41,"127 Meadow St, Atlanta, GA 30301" +143343,AAA Batteries (4-pack),1,2.99,01/15/19 08:50,"885 Pine St, Los Angeles, CA 90001" +143344,USB-C Charging Cable,1,11.95,01/05/19 22:54,"763 Pine St, Atlanta, GA 30301" +143345,USB-C Charging Cable,1,11.95,01/03/19 12:05,"355 Main St, San Francisco, CA 94016" +143346,USB-C Charging Cable,1,11.95,01/13/19 19:00,"408 North St, San Francisco, CA 94016" +143347,iPhone,1,700,01/12/19 07:45,"197 Hill St, Portland, OR 97035" +143348,Bose SoundSport Headphones,1,99.99,01/27/19 17:23,"497 Lincoln St, Seattle, WA 98101" +143349,Wired Headphones,1,11.99,01/13/19 19:08,"388 2nd St, New York City, NY 10001" +143350,Lightning Charging Cable,1,14.95,01/17/19 20:02,"813 Forest St, New York City, NY 10001" +143351,Macbook Pro Laptop,1,1700,01/12/19 15:20,"481 5th St, Boston, MA 02215" +143352,AA Batteries (4-pack),1,3.84,01/27/19 18:05,"269 Lincoln St, New York City, NY 10001" +143353,27in FHD Monitor,1,149.99,01/19/19 10:17,"594 13th St, San Francisco, CA 94016" +143354,Flatscreen TV,1,300,01/27/19 15:10,"501 14th St, Portland, OR 97035" +143355,Lightning Charging Cable,1,14.95,01/29/19 10:21,"892 Wilson St, Seattle, WA 98101" +143356,Lightning Charging Cable,1,14.95,01/18/19 14:29,"489 7th St, Atlanta, GA 30301" +143357,AA Batteries (4-pack),1,3.84,01/13/19 14:29,"753 Hickory St, San Francisco, CA 94016" +143358,AAA Batteries (4-pack),1,2.99,01/06/19 10:33,"708 Ridge St, Boston, MA 02215" +143359,27in 4K Gaming Monitor,1,389.99,01/11/19 14:34,"784 Elm St, New York City, NY 10001" +143360,Wired Headphones,1,11.99,01/20/19 12:23,"63 Hickory St, New York City, NY 10001" +143361,Apple Airpods Headphones,1,150,01/11/19 12:30,"503 Center St, San Francisco, CA 94016" +143362,USB-C Charging Cable,1,11.95,01/04/19 07:06,"429 5th St, Boston, MA 02215" +143363,Lightning Charging Cable,1,14.95,01/12/19 12:09,"256 12th St, Seattle, WA 98101" +143364,Lightning Charging Cable,1,14.95,01/04/19 10:45,"400 Forest St, Atlanta, GA 30301" +143365,AAA Batteries (4-pack),1,2.99,01/24/19 13:50,"317 Hickory St, Austin, TX 73301" +143366,AAA Batteries (4-pack),1,2.99,01/18/19 16:51,"111 Hill St, San Francisco, CA 94016" +143367,AA Batteries (4-pack),1,3.84,01/13/19 13:32,"467 Cherry St, Dallas, TX 75001" +143368,27in 4K Gaming Monitor,1,389.99,01/14/19 13:37,"564 West St, San Francisco, CA 94016" +143369,27in 4K Gaming Monitor,1,389.99,01/03/19 23:43,"42 Hickory St, Boston, MA 02215" +143370,Bose SoundSport Headphones,1,99.99,01/30/19 14:43,"752 Ridge St, San Francisco, CA 94016" +143371,Apple Airpods Headphones,1,150,01/31/19 06:43,"336 Church St, Atlanta, GA 30301" +143372,AA Batteries (4-pack),1,3.84,01/17/19 19:10,"898 West St, Seattle, WA 98101" +143373,USB-C Charging Cable,1,11.95,01/31/19 07:04,"420 7th St, Seattle, WA 98101" +143374,Lightning Charging Cable,1,14.95,01/10/19 22:16,"416 Highland St, Boston, MA 02215" +143375,Apple Airpods Headphones,1,150,01/01/19 11:49,"461 Sunset St, Atlanta, GA 30301" +143376,AA Batteries (4-pack),1,3.84,01/15/19 13:06,"408 Church St, Boston, MA 02215" +143377,Bose SoundSport Headphones,1,99.99,01/10/19 16:46,"924 Washington St, Austin, TX 73301" +143378,USB-C Charging Cable,1,11.95,01/02/19 22:33,"725 River St, Austin, TX 73301" +143379,27in 4K Gaming Monitor,1,389.99,01/07/19 11:32,"806 Washington St, San Francisco, CA 94016" +143380,27in FHD Monitor,1,149.99,01/25/19 18:08,"280 Dogwood St, Los Angeles, CA 90001" +143381,Google Phone,1,600,01/14/19 21:46,"235 7th St, Atlanta, GA 30301" +143382,Wired Headphones,1,11.99,01/27/19 18:03,"456 Center St, San Francisco, CA 94016" +143383,20in Monitor,1,109.99,01/11/19 22:03,"898 8th St, Los Angeles, CA 90001" +143384,LG Dryer,1,600.0,01/23/19 23:43,"150 10th St, Los Angeles, CA 90001" +143385,Apple Airpods Headphones,1,150,01/20/19 14:31,"847 Walnut St, Austin, TX 73301" +143386,20in Monitor,1,109.99,01/28/19 21:39,"797 Elm St, Seattle, WA 98101" +143387,Lightning Charging Cable,1,14.95,01/30/19 09:18,"712 2nd St, San Francisco, CA 94016" +143388,Apple Airpods Headphones,1,150,01/31/19 20:06,"288 Adams St, Los Angeles, CA 90001" +143389,Wired Headphones,1,11.99,01/04/19 22:47,"619 8th St, Boston, MA 02215" +143390,Bose SoundSport Headphones,1,99.99,01/08/19 23:28,"351 8th St, San Francisco, CA 94016" +143391,AAA Batteries (4-pack),1,2.99,01/02/19 11:47,"447 Cedar St, San Francisco, CA 94016" +143392,Flatscreen TV,1,300,01/05/19 20:13,"631 North St, San Francisco, CA 94016" +143393,Lightning Charging Cable,2,14.95,01/16/19 12:29,"212 13th St, San Francisco, CA 94016" +143394,Apple Airpods Headphones,1,150,01/12/19 19:11,"200 6th St, Seattle, WA 98101" +143395,AAA Batteries (4-pack),2,2.99,01/09/19 21:00,"586 Walnut St, Boston, MA 02215" +143396,Apple Airpods Headphones,1,150,01/02/19 15:29,"612 14th St, Atlanta, GA 30301" +143397,AAA Batteries (4-pack),1,2.99,01/15/19 19:49,"430 North St, Seattle, WA 98101" +143398,USB-C Charging Cable,1,11.95,01/28/19 21:55,"298 1st St, San Francisco, CA 94016" +143399,Vareebadd Phone,1,400,01/03/19 00:30,"553 Chestnut St, Portland, OR 97035" +143399,Wired Headphones,2,11.99,01/03/19 00:30,"553 Chestnut St, Portland, OR 97035" +143400,Lightning Charging Cable,1,14.95,01/15/19 22:44,"553 Adams St, Los Angeles, CA 90001" +143401,27in 4K Gaming Monitor,1,389.99,01/23/19 12:30,"862 5th St, New York City, NY 10001" +143402,Macbook Pro Laptop,1,1700,01/29/19 09:07,"531 6th St, Dallas, TX 75001" +143403,USB-C Charging Cable,1,11.95,01/07/19 17:25,"985 Park St, Portland, OR 97035" +143404,27in FHD Monitor,1,149.99,01/12/19 13:20,"185 8th St, Portland, OR 97035" +143405,AAA Batteries (4-pack),1,2.99,01/18/19 11:21,"501 Chestnut St, Boston, MA 02215" +143406,20in Monitor,1,109.99,01/05/19 22:47,"928 Sunset St, Dallas, TX 75001" +143407,Apple Airpods Headphones,1,150,01/30/19 12:43,"318 7th St, Boston, MA 02215" +143408,27in 4K Gaming Monitor,1,389.99,01/17/19 21:38,"106 7th St, San Francisco, CA 94016" +143409,Google Phone,1,600,01/10/19 13:10,"471 Hill St, San Francisco, CA 94016" +143410,Flatscreen TV,1,300,01/08/19 14:40,"431 North St, Atlanta, GA 30301" +143411,AA Batteries (4-pack),2,3.84,01/12/19 19:19,"445 Johnson St, Los Angeles, CA 90001" +143412,USB-C Charging Cable,1,11.95,01/11/19 19:43,"139 Cedar St, Los Angeles, CA 90001" +143413,Lightning Charging Cable,1,14.95,01/12/19 14:14,"429 11th St, Boston, MA 02215" +143414,USB-C Charging Cable,1,11.95,01/03/19 17:13,"776 Jackson St, Atlanta, GA 30301" +143415,Lightning Charging Cable,1,14.95,01/22/19 23:39,"515 2nd St, Los Angeles, CA 90001" +143416,20in Monitor,1,109.99,01/14/19 15:14,"518 North St, San Francisco, CA 94016" +143417,iPhone,1,700,01/18/19 19:50,"804 7th St, New York City, NY 10001" +143418,Macbook Pro Laptop,1,1700,01/21/19 21:12,"594 Ridge St, Los Angeles, CA 90001" +143419,27in FHD Monitor,1,149.99,01/28/19 08:41,"566 South St, Seattle, WA 98101" +143420,iPhone,1,700,01/31/19 14:30,"444 2nd St, Los Angeles, CA 90001" +143421,34in Ultrawide Monitor,1,379.99,01/24/19 07:33,"82 Pine St, Boston, MA 02215" +143422,27in 4K Gaming Monitor,1,389.99,01/09/19 12:49,"29 Johnson St, Los Angeles, CA 90001" +143423,USB-C Charging Cable,1,11.95,01/19/19 13:30,"356 Maple St, Los Angeles, CA 90001" +143424,AA Batteries (4-pack),2,3.84,01/07/19 19:46,"454 8th St, Dallas, TX 75001" +143425,AAA Batteries (4-pack),1,2.99,01/15/19 22:41,"118 Cedar St, Dallas, TX 75001" +143426,Wired Headphones,2,11.99,01/16/19 13:48,"973 11th St, Los Angeles, CA 90001" +143427,iPhone,1,700,01/03/19 21:11,"375 Elm St, San Francisco, CA 94016" +143428,Vareebadd Phone,1,400,01/11/19 16:23,"242 Lakeview St, New York City, NY 10001" +143429,27in FHD Monitor,1,149.99,01/31/19 10:31,"682 Walnut St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +143430,Wired Headphones,1,11.99,01/22/19 09:37,"695 Cedar St, San Francisco, CA 94016" +143431,Lightning Charging Cable,1,14.95,01/08/19 19:09,"862 Meadow St, Atlanta, GA 30301" +143432,USB-C Charging Cable,1,11.95,01/02/19 02:19,"923 12th St, Atlanta, GA 30301" +143433,USB-C Charging Cable,1,11.95,01/01/19 09:27,"78 Adams St, Los Angeles, CA 90001" +143434,27in FHD Monitor,1,149.99,01/14/19 14:06,"285 Wilson St, San Francisco, CA 94016" +143435,Lightning Charging Cable,1,14.95,01/19/19 19:28,"493 Sunset St, Austin, TX 73301" +143436,27in FHD Monitor,1,149.99,01/24/19 12:28,"897 Washington St, Boston, MA 02215" +143437,USB-C Charging Cable,1,11.95,01/11/19 18:25,"955 Lincoln St, Austin, TX 73301" +143438,Flatscreen TV,1,300,01/05/19 11:28,"755 Jackson St, Boston, MA 02215" +143439,Flatscreen TV,1,300,01/01/19 19:30,"113 River St, Dallas, TX 75001" +143440,AAA Batteries (4-pack),1,2.99,01/26/19 14:56,"447 8th St, Austin, TX 73301" +143441,AA Batteries (4-pack),1,3.84,01/02/19 15:16,"817 Hill St, Boston, MA 02215" +143442,ThinkPad Laptop,1,999.99,01/22/19 10:06,"385 South St, Los Angeles, CA 90001" +143443,Wired Headphones,1,11.99,01/20/19 17:36,"470 River St, Austin, TX 73301" +143444,Apple Airpods Headphones,1,150,01/29/19 11:01,"291 11th St, New York City, NY 10001" +143444,Apple Airpods Headphones,1,150,01/29/19 11:01,"291 11th St, New York City, NY 10001" +143445,Wired Headphones,1,11.99,01/26/19 18:52,"858 Maple St, New York City, NY 10001" +143446,Flatscreen TV,1,300,01/23/19 21:11,"257 Hill St, Atlanta, GA 30301" +143447,Bose SoundSport Headphones,1,99.99,01/09/19 07:50,"28 Hill St, Dallas, TX 75001" +143447,Wired Headphones,1,11.99,01/09/19 07:50,"28 Hill St, Dallas, TX 75001" +143448,USB-C Charging Cable,1,11.95,01/30/19 16:13,"705 Johnson St, Atlanta, GA 30301" +143449,ThinkPad Laptop,1,999.99,01/26/19 09:38,"869 Lakeview St, Los Angeles, CA 90001" +143450,Wired Headphones,1,11.99,01/20/19 10:20,"806 Ridge St, Austin, TX 73301" +143451,27in 4K Gaming Monitor,1,389.99,01/16/19 16:47,"382 South St, Austin, TX 73301" +143452,USB-C Charging Cable,1,11.95,01/10/19 19:20,"236 Lake St, Dallas, TX 75001" +143453,Apple Airpods Headphones,1,150,01/10/19 03:52,"321 Willow St, Dallas, TX 75001" +143454,Lightning Charging Cable,1,14.95,01/08/19 12:08,"761 14th St, Boston, MA 02215" +143455,Macbook Pro Laptop,1,1700,01/08/19 15:12,"470 9th St, San Francisco, CA 94016" +143456,ThinkPad Laptop,1,999.99,01/23/19 10:00,"232 Hickory St, Los Angeles, CA 90001" +143457,Google Phone,1,600,01/24/19 17:11,"69 Ridge St, New York City, NY 10001" +143458,Wired Headphones,1,11.99,01/11/19 20:42,"634 Jefferson St, Boston, MA 02215" +143459,Apple Airpods Headphones,1,150,01/06/19 14:10,"593 Meadow St, Los Angeles, CA 90001" +143460,USB-C Charging Cable,1,11.95,01/04/19 12:19,"115 Chestnut St, San Francisco, CA 94016" +143461,Bose SoundSport Headphones,1,99.99,01/01/19 20:25,"357 River St, Boston, MA 02215" +143462,34in Ultrawide Monitor,1,379.99,01/12/19 15:30,"199 Maple St, San Francisco, CA 94016" +,,,,, +143463,27in FHD Monitor,1,149.99,01/31/19 12:37,"538 Adams St, San Francisco, CA 94016" +143464,Macbook Pro Laptop,1,1700,01/30/19 18:31,"922 Ridge St, Seattle, WA 98101" +143465,USB-C Charging Cable,1,11.95,01/29/19 15:55,"556 Spruce St, Boston, MA 02215" +143466,USB-C Charging Cable,1,11.95,01/06/19 17:29,"205 Willow St, San Francisco, CA 94016" +143467,USB-C Charging Cable,2,11.95,01/18/19 21:18,"244 Chestnut St, New York City, NY 10001" +143468,Bose SoundSport Headphones,1,99.99,01/06/19 22:13,"745 7th St, San Francisco, CA 94016" +143469,AA Batteries (4-pack),1,3.84,01/14/19 12:42,"996 Meadow St, Dallas, TX 75001" +143469,AA Batteries (4-pack),1,3.84,01/14/19 12:42,"996 Meadow St, Dallas, TX 75001" +143470,Apple Airpods Headphones,1,150,01/04/19 20:57,"30 West St, Seattle, WA 98101" +143471,Wired Headphones,1,11.99,01/23/19 19:52,"207 2nd St, Portland, OR 97035" +143472,USB-C Charging Cable,1,11.95,01/30/19 08:18,"611 Forest St, San Francisco, CA 94016" +143473,iPhone,1,700,01/16/19 19:17,"161 Walnut St, Dallas, TX 75001" +143474,Lightning Charging Cable,1,14.95,01/17/19 20:44,"9 Adams St, San Francisco, CA 94016" +143475,Bose SoundSport Headphones,1,99.99,01/25/19 08:44,"944 Cedar St, Boston, MA 02215" +143476,Wired Headphones,1,11.99,01/06/19 02:01,"388 10th St, San Francisco, CA 94016" +143477,iPhone,1,700,01/23/19 17:36,"371 Sunset St, Los Angeles, CA 90001" +143478,ThinkPad Laptop,1,999.99,01/25/19 04:56,"546 Adams St, San Francisco, CA 94016" +143479,Wired Headphones,1,11.99,01/14/19 21:06,"618 South St, San Francisco, CA 94016" +143480,Wired Headphones,1,11.99,01/02/19 20:26,"522 Main St, San Francisco, CA 94016" +143481,AAA Batteries (4-pack),1,2.99,01/09/19 13:53,"273 Cherry St, New York City, NY 10001" +143482,AAA Batteries (4-pack),2,2.99,01/10/19 19:18,"815 Meadow St, Portland, OR 97035" +143483,Apple Airpods Headphones,1,150,01/06/19 17:22,"126 Forest St, San Francisco, CA 94016" +143484,Bose SoundSport Headphones,1,99.99,01/13/19 18:37,"987 Jefferson St, Dallas, TX 75001" +143485,USB-C Charging Cable,1,11.95,01/09/19 11:50,"766 Cedar St, Los Angeles, CA 90001" +143486,USB-C Charging Cable,1,11.95,01/22/19 00:39,"603 Johnson St, Boston, MA 02215" +143487,USB-C Charging Cable,1,11.95,01/17/19 22:01,"983 Adams St, Los Angeles, CA 90001" +143488,Wired Headphones,1,11.99,01/05/19 20:25,"635 Dogwood St, Boston, MA 02215" +143489,Bose SoundSport Headphones,1,99.99,01/18/19 05:38,"766 Highland St, New York City, NY 10001" +143490,AA Batteries (4-pack),1,3.84,01/19/19 19:05,"737 Cherry St, Los Angeles, CA 90001" +143491,Bose SoundSport Headphones,1,99.99,01/22/19 13:35,"835 South St, New York City, NY 10001" +143492,USB-C Charging Cable,1,11.95,01/11/19 13:02,"223 Hill St, San Francisco, CA 94016" +143493,AAA Batteries (4-pack),1,2.99,01/01/19 11:32,"395 Cherry St, Dallas, TX 75001" +143494,AA Batteries (4-pack),1,3.84,01/17/19 12:32,"611 Maple St, Los Angeles, CA 90001" +143495,34in Ultrawide Monitor,1,379.99,01/30/19 15:48,"230 Wilson St, Austin, TX 73301" +143496,Lightning Charging Cable,1,14.95,01/29/19 20:51,"248 Chestnut St, Los Angeles, CA 90001" +143497,Apple Airpods Headphones,1,150,01/09/19 18:43,"643 13th St, San Francisco, CA 94016" +143498,27in FHD Monitor,1,149.99,01/04/19 20:50,"136 11th St, Los Angeles, CA 90001" +143499,27in 4K Gaming Monitor,1,389.99,01/14/19 12:38,"251 Jefferson St, Atlanta, GA 30301" +143500,27in FHD Monitor,1,149.99,01/27/19 08:19,"128 Spruce St, New York City, NY 10001" +143501,20in Monitor,1,109.99,01/21/19 20:45,"428 13th St, Los Angeles, CA 90001" +143502,USB-C Charging Cable,1,11.95,01/15/19 22:07,"701 Meadow St, San Francisco, CA 94016" +143503,27in FHD Monitor,1,149.99,01/13/19 13:00,"47 Main St, San Francisco, CA 94016" +143504,USB-C Charging Cable,1,11.95,01/15/19 08:43,"565 Lincoln St, Los Angeles, CA 90001" +143505,Apple Airpods Headphones,1,150,01/22/19 20:16,"876 Jefferson St, New York City, NY 10001" +143506,Lightning Charging Cable,2,14.95,01/13/19 00:16,"28 10th St, New York City, NY 10001" +143507,AAA Batteries (4-pack),1,2.99,01/21/19 17:33,"276 4th St, New York City, NY 10001" +143508,Wired Headphones,1,11.99,01/14/19 14:54,"439 River St, Atlanta, GA 30301" +143509,ThinkPad Laptop,1,999.99,01/14/19 13:19,"660 River St, Boston, MA 02215" +143510,ThinkPad Laptop,1,999.99,01/29/19 07:01,"880 Hickory St, Atlanta, GA 30301" +143511,Wired Headphones,1,11.99,01/09/19 23:38,"465 13th St, Atlanta, GA 30301" +143512,AAA Batteries (4-pack),3,2.99,01/07/19 08:17,"694 Highland St, Boston, MA 02215" +143513,AAA Batteries (4-pack),3,2.99,01/12/19 13:14,"721 Jefferson St, Boston, MA 02215" +143514,Apple Airpods Headphones,1,150,01/28/19 12:29,"546 6th St, New York City, NY 10001" +143515,Lightning Charging Cable,1,14.95,01/02/19 21:26,"136 Maple St, San Francisco, CA 94016" +143516,AAA Batteries (4-pack),1,2.99,01/12/19 23:10,"480 Park St, Seattle, WA 98101" +143517,Lightning Charging Cable,1,14.95,01/18/19 23:42,"116 Jackson St, Boston, MA 02215" +143518,AA Batteries (4-pack),1,3.84,01/30/19 21:44,"950 4th St, Austin, TX 73301" +143519,27in 4K Gaming Monitor,1,389.99,01/23/19 23:19,"463 West St, Dallas, TX 75001" +143520,Lightning Charging Cable,1,14.95,01/06/19 21:49,"937 Lincoln St, Dallas, TX 75001" +143521,AA Batteries (4-pack),2,3.84,01/31/19 13:33,"407 West St, Seattle, WA 98101" +143522,AA Batteries (4-pack),1,3.84,01/20/19 15:36,"448 13th St, Los Angeles, CA 90001" +143523,Macbook Pro Laptop,1,1700,01/31/19 16:17,"869 Cedar St, Boston, MA 02215" +143524,iPhone,1,700,01/21/19 22:54,"823 Cherry St, Dallas, TX 75001" +143524,Wired Headphones,1,11.99,01/21/19 22:54,"823 Cherry St, Dallas, TX 75001" +143525,USB-C Charging Cable,1,11.95,01/20/19 08:53,"530 Walnut St, San Francisco, CA 94016" +143526,ThinkPad Laptop,1,999.99,01/13/19 12:32,"36 Maple St, Atlanta, GA 30301" +143527,27in FHD Monitor,1,149.99,01/10/19 11:50,"966 4th St, San Francisco, CA 94016" +143528,iPhone,1,700,01/08/19 11:43,"521 Hill St, Portland, OR 97035" +143529,Macbook Pro Laptop,1,1700,01/31/19 20:05,"386 Highland St, Seattle, WA 98101" +143530,Bose SoundSport Headphones,1,99.99,01/15/19 11:20,"38 Lakeview St, Austin, TX 73301" +143531,USB-C Charging Cable,1,11.95,01/11/19 15:51,"655 4th St, San Francisco, CA 94016" +143532,Apple Airpods Headphones,2,150,01/27/19 14:23,"796 Madison St, Boston, MA 02215" +143533,Lightning Charging Cable,1,14.95,01/20/19 19:25,"52 Elm St, San Francisco, CA 94016" +143534,Lightning Charging Cable,1,14.95,01/18/19 14:28,"18 North St, New York City, NY 10001" +143535,USB-C Charging Cable,1,11.95,01/25/19 12:18,"76 5th St, New York City, NY 10001" +143536,27in FHD Monitor,1,149.99,01/19/19 11:15,"842 1st St, Portland, OR 97035" +143537,AA Batteries (4-pack),2,3.84,01/26/19 21:07,"732 11th St, Austin, TX 73301" +143538,iPhone,1,700,01/22/19 01:40,"252 13th St, Boston, MA 02215" +143539,Lightning Charging Cable,1,14.95,01/21/19 11:09,"977 River St, San Francisco, CA 94016" +143540,Macbook Pro Laptop,1,1700,01/07/19 01:17,"857 2nd St, Los Angeles, CA 90001" +143541,Wired Headphones,1,11.99,01/08/19 19:28,"317 13th St, New York City, NY 10001" +143542,Lightning Charging Cable,1,14.95,01/20/19 18:58,"240 2nd St, San Francisco, CA 94016" +143543,27in 4K Gaming Monitor,1,389.99,01/13/19 10:31,"321 Lincoln St, Portland, OR 97035" +143544,Apple Airpods Headphones,1,150,01/08/19 16:46,"920 Church St, Seattle, WA 98101" +143545,Lightning Charging Cable,1,14.95,01/11/19 22:36,"232 Lake St, Atlanta, GA 30301" +143546,Bose SoundSport Headphones,1,99.99,01/15/19 16:25,"88 South St, Portland, OR 97035" +143547,Lightning Charging Cable,1,14.95,01/29/19 17:49,"422 Dogwood St, Austin, TX 73301" +143548,AAA Batteries (4-pack),1,2.99,01/20/19 20:17,"861 6th St, Portland, OR 97035" +143549,27in 4K Gaming Monitor,1,389.99,01/08/19 07:52,"684 Center St, San Francisco, CA 94016" +143550,USB-C Charging Cable,1,11.95,01/10/19 18:02,"982 Spruce St, Boston, MA 02215" +143551,Wired Headphones,1,11.99,01/03/19 06:23,"5 North St, Boston, MA 02215" +143552,Lightning Charging Cable,1,14.95,01/18/19 15:24,"360 Hill St, San Francisco, CA 94016" +143553,AAA Batteries (4-pack),4,2.99,01/30/19 10:38,"916 Ridge St, Seattle, WA 98101" +143554,Wired Headphones,2,11.99,01/28/19 06:31,"619 Sunset St, Dallas, TX 75001" +143555,Wired Headphones,1,11.99,01/17/19 20:58,"66 8th St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +143556,Lightning Charging Cable,1,14.95,01/05/19 13:14,"738 Washington St, Los Angeles, CA 90001" +143557,iPhone,1,700,01/04/19 11:15,"298 12th St, New York City, NY 10001" +143558,Wired Headphones,1,11.99,01/20/19 16:55,"66 13th St, San Francisco, CA 94016" +143559,Flatscreen TV,1,300,01/16/19 20:17,"852 Church St, Boston, MA 02215" +143560,Google Phone,1,600,01/12/19 12:19,"762 Pine St, Portland, OR 97035" +143561,Apple Airpods Headphones,1,150,01/13/19 14:56,"612 Madison St, Dallas, TX 75001" +143562,Lightning Charging Cable,1,14.95,01/28/19 22:04,"628 Adams St, Austin, TX 73301" +143563,34in Ultrawide Monitor,1,379.99,01/25/19 12:57,"878 14th St, New York City, NY 10001" +143564,Lightning Charging Cable,1,14.95,01/28/19 16:18,"264 Lakeview St, New York City, NY 10001" +143565,Apple Airpods Headphones,1,150,01/01/19 19:10,"846 Willow St, San Francisco, CA 94016" +143566,Wired Headphones,1,11.99,01/18/19 19:54,"907 2nd St, Los Angeles, CA 90001" +143566,27in 4K Gaming Monitor,1,389.99,01/18/19 19:54,"907 2nd St, Los Angeles, CA 90001" +143567,Wired Headphones,1,11.99,01/24/19 02:54,"529 Cedar St, San Francisco, CA 94016" +143568,LG Dryer,1,600.0,01/21/19 01:22,"988 Chestnut St, Los Angeles, CA 90001" +143569,AAA Batteries (4-pack),1,2.99,01/31/19 14:44,"375 4th St, Boston, MA 02215" +143570,20in Monitor,1,109.99,01/21/19 00:38,"615 Hickory St, Atlanta, GA 30301" +143571,USB-C Charging Cable,1,11.95,01/13/19 22:48,"360 Forest St, Portland, OR 97035" +143572,AA Batteries (4-pack),1,3.84,01/10/19 12:24,"358 Pine St, San Francisco, CA 94016" +143573,AA Batteries (4-pack),1,3.84,01/05/19 14:27,"539 8th St, Boston, MA 02215" +143574,Bose SoundSport Headphones,1,99.99,01/22/19 19:54,"18 Center St, San Francisco, CA 94016" +143575,AAA Batteries (4-pack),1,2.99,01/22/19 20:44,"161 South St, Dallas, TX 75001" +143576,iPhone,1,700,01/21/19 10:44,"14 2nd St, New York City, NY 10001" +143577,Lightning Charging Cable,1,14.95,01/09/19 12:00,"155 8th St, New York City, NY 10001" +143578,34in Ultrawide Monitor,1,379.99,01/11/19 13:38,"417 Jefferson St, Dallas, TX 75001" +143579,20in Monitor,1,109.99,01/31/19 14:06,"148 Jefferson St, Boston, MA 02215" +143580,Lightning Charging Cable,1,14.95,01/19/19 15:25,"454 Elm St, Los Angeles, CA 90001" +143581,AAA Batteries (4-pack),1,2.99,01/27/19 10:06,"457 1st St, Boston, MA 02215" +143582,Apple Airpods Headphones,1,150,01/16/19 18:20,"252 Park St, Los Angeles, CA 90001" +143583,Bose SoundSport Headphones,1,99.99,01/11/19 12:43,"794 Willow St, San Francisco, CA 94016" +143584,Apple Airpods Headphones,1,150,01/20/19 19:43,"115 Sunset St, Boston, MA 02215" +143585,27in 4K Gaming Monitor,1,389.99,01/09/19 10:43,"962 Johnson St, Los Angeles, CA 90001" +143586,AAA Batteries (4-pack),1,2.99,01/26/19 18:04,"279 14th St, Dallas, TX 75001" +143587,AAA Batteries (4-pack),1,2.99,01/28/19 13:07,"428 Madison St, Austin, TX 73301" +143588,27in 4K Gaming Monitor,1,389.99,01/20/19 21:45,"191 Spruce St, Austin, TX 73301" +143589,AA Batteries (4-pack),2,3.84,01/17/19 19:28,"631 Lincoln St, Los Angeles, CA 90001" +143590,Lightning Charging Cable,1,14.95,01/21/19 15:11,"218 4th St, Los Angeles, CA 90001" +143591,Flatscreen TV,1,300,01/04/19 00:04,"810 Meadow St, New York City, NY 10001" +143592,Wired Headphones,1,11.99,01/22/19 10:15,"166 River St, San Francisco, CA 94016" +143593,AAA Batteries (4-pack),1,2.99,01/28/19 23:17,"611 Madison St, Atlanta, GA 30301" +143594,34in Ultrawide Monitor,1,379.99,01/01/19 17:36,"67 Lakeview St, Boston, MA 02215" +143595,Wired Headphones,1,11.99,01/22/19 18:49,"77 River St, Portland, OR 97035" +143596,Wired Headphones,1,11.99,01/14/19 12:29,"112 4th St, Boston, MA 02215" +143597,AAA Batteries (4-pack),1,2.99,01/19/19 00:12,"240 2nd St, San Francisco, CA 94016" +143598,USB-C Charging Cable,1,11.95,01/21/19 20:27,"377 Meadow St, New York City, NY 10001" +143599,20in Monitor,1,109.99,01/18/19 18:13,"104 Lincoln St, Seattle, WA 98101" +143600,27in FHD Monitor,1,149.99,01/02/19 11:02,"286 12th St, Seattle, WA 98101" +143601,Apple Airpods Headphones,1,150,01/19/19 16:47,"469 Park St, Seattle, WA 98101" +143602,AA Batteries (4-pack),1,3.84,01/25/19 16:44,"191 Adams St, Portland, OR 97035" +143603,AA Batteries (4-pack),3,3.84,01/24/19 18:49,"205 Washington St, Los Angeles, CA 90001" +143604,Lightning Charging Cable,1,14.95,01/25/19 21:15,"818 Madison St, Portland, OR 97035" +143605,Wired Headphones,1,11.99,01/19/19 12:31,"390 Highland St, New York City, NY 10001" +143606,Flatscreen TV,1,300,01/14/19 18:36,"29 Lakeview St, Portland, OR 97035" +143607,Flatscreen TV,1,300,01/12/19 19:47,"995 Wilson St, Boston, MA 02215" +143608,Apple Airpods Headphones,1,150,01/05/19 18:24,"520 Walnut St, Los Angeles, CA 90001" +143609,AAA Batteries (4-pack),1,2.99,01/23/19 15:07,"487 South St, New York City, NY 10001" +143610,iPhone,1,700,01/22/19 21:31,"885 Chestnut St, Los Angeles, CA 90001" +143611,AA Batteries (4-pack),1,3.84,01/21/19 19:27,"18 12th St, New York City, NY 10001" +143612,AAA Batteries (4-pack),1,2.99,01/13/19 16:29,"39 Madison St, Boston, MA 02215" +143613,Lightning Charging Cable,1,14.95,01/05/19 14:48,"591 Lake St, Los Angeles, CA 90001" +143614,Lightning Charging Cable,1,14.95,01/24/19 12:29,"552 Meadow St, Seattle, WA 98101" +143615,Apple Airpods Headphones,1,150,01/09/19 10:50,"32 12th St, Dallas, TX 75001" +143616,Lightning Charging Cable,1,14.95,01/24/19 21:26,"299 8th St, Los Angeles, CA 90001" +143617,27in 4K Gaming Monitor,1,389.99,01/23/19 13:45,"822 North St, Seattle, WA 98101" +143617,Flatscreen TV,1,300,01/23/19 13:45,"822 North St, Seattle, WA 98101" +143618,Lightning Charging Cable,1,14.95,01/03/19 23:26,"772 13th St, Dallas, TX 75001" +143619,Apple Airpods Headphones,2,150,01/07/19 12:12,"665 10th St, Boston, MA 02215" +143620,USB-C Charging Cable,1,11.95,01/30/19 21:32,"501 Dogwood St, Atlanta, GA 30301" +143621,AAA Batteries (4-pack),1,2.99,01/15/19 09:56,"219 Lake St, Los Angeles, CA 90001" +143622,Apple Airpods Headphones,1,150,01/09/19 19:10,"774 4th St, Austin, TX 73301" +143623,iPhone,1,700,01/25/19 19:17,"503 Lake St, New York City, NY 10001" +143624,27in FHD Monitor,1,149.99,01/14/19 09:37,"497 Center St, New York City, NY 10001" +143625,20in Monitor,1,109.99,01/20/19 16:42,"711 Spruce St, Portland, OR 97035" +143626,34in Ultrawide Monitor,1,379.99,01/24/19 10:48,"134 Forest St, Boston, MA 02215" +143627,Apple Airpods Headphones,1,150,01/15/19 23:12,"920 Washington St, Los Angeles, CA 90001" +143628,Lightning Charging Cable,1,14.95,01/09/19 10:56,"852 Forest St, New York City, NY 10001" +143629,Lightning Charging Cable,2,14.95,01/09/19 13:09,"346 Lake St, Boston, MA 02215" +143630,ThinkPad Laptop,1,999.99,01/21/19 19:55,"593 Adams St, New York City, NY 10001" +143631,34in Ultrawide Monitor,1,379.99,01/02/19 11:52,"99 Spruce St, San Francisco, CA 94016" +143632,Wired Headphones,2,11.99,01/04/19 23:03,"511 Center St, New York City, NY 10001" +143633,27in FHD Monitor,1,149.99,01/02/19 07:27,"610 Jackson St, New York City, NY 10001" +143634,Apple Airpods Headphones,1,150,01/19/19 17:45,"901 14th St, New York City, NY 10001" +143635,Wired Headphones,1,11.99,01/04/19 16:52,"774 9th St, Seattle, WA 98101" +143636,Lightning Charging Cable,1,14.95,01/21/19 00:14,"284 Pine St, San Francisco, CA 94016" +143637,AA Batteries (4-pack),1,3.84,01/06/19 15:11,"696 Park St, New York City, NY 10001" +143638,Wired Headphones,1,11.99,01/19/19 22:20,"377 West St, Dallas, TX 75001" +143639,Lightning Charging Cable,1,14.95,01/22/19 15:21,"187 Jackson St, San Francisco, CA 94016" +143640,Lightning Charging Cable,1,14.95,01/01/19 19:32,"21 Highland St, New York City, NY 10001" +143641,USB-C Charging Cable,1,11.95,01/24/19 09:57,"350 Dogwood St, Los Angeles, CA 90001" +143642,Vareebadd Phone,1,400,01/21/19 06:23,"268 5th St, Los Angeles, CA 90001" +143643,USB-C Charging Cable,1,11.95,01/30/19 19:58,"218 Walnut St, Los Angeles, CA 90001" +143644,AA Batteries (4-pack),2,3.84,01/23/19 12:44,"552 11th St, Boston, MA 02215" +143645,20in Monitor,1,109.99,01/03/19 08:35,"528 13th St, San Francisco, CA 94016" +143646,Lightning Charging Cable,1,14.95,01/04/19 18:07,"168 Meadow St, San Francisco, CA 94016" +143647,Bose SoundSport Headphones,1,99.99,01/11/19 21:04,"866 9th St, San Francisco, CA 94016" +143648,34in Ultrawide Monitor,1,379.99,01/21/19 23:10,"824 Highland St, San Francisco, CA 94016" +143649,AA Batteries (4-pack),1,3.84,01/30/19 20:53,"182 South St, Boston, MA 02215" +143650,27in FHD Monitor,1,149.99,02/01/19 01:19,"60 Pine St, Dallas, TX 75001" +143651,Flatscreen TV,1,300,01/31/19 17:05,"560 West St, Dallas, TX 75001" +143652,34in Ultrawide Monitor,1,379.99,01/20/19 21:26,"698 Hickory St, Los Angeles, CA 90001" +143653,Macbook Pro Laptop,1,1700,01/11/19 16:26,"683 6th St, Seattle, WA 98101" +143654,27in 4K Gaming Monitor,1,389.99,01/07/19 09:33,"577 13th St, New York City, NY 10001" +143655,Lightning Charging Cable,1,14.95,01/12/19 11:36,"327 6th St, Austin, TX 73301" +143656,Flatscreen TV,1,300,01/18/19 20:37,"175 13th St, Atlanta, GA 30301" +143657,AA Batteries (4-pack),1,3.84,01/02/19 17:39,"819 River St, San Francisco, CA 94016" +,,,,, +143658,AA Batteries (4-pack),1,3.84,01/19/19 19:07,"856 Hickory St, New York City, NY 10001" +143659,Wired Headphones,1,11.99,01/31/19 12:43,"35 Maple St, Atlanta, GA 30301" +143660,USB-C Charging Cable,1,11.95,01/09/19 11:47,"325 Lincoln St, San Francisco, CA 94016" +143661,27in FHD Monitor,2,149.99,01/11/19 07:52,"260 Pine St, San Francisco, CA 94016" +143661,34in Ultrawide Monitor,1,379.99,01/11/19 07:52,"260 Pine St, San Francisco, CA 94016" +143662,34in Ultrawide Monitor,1,379.99,01/28/19 16:03,"911 Chestnut St, San Francisco, CA 94016" +143663,Flatscreen TV,1,300,01/24/19 13:25,"640 Dogwood St, Seattle, WA 98101" +143664,USB-C Charging Cable,1,11.95,01/21/19 21:11,"793 River St, San Francisco, CA 94016" +143665,Bose SoundSport Headphones,1,99.99,01/22/19 09:56,"779 7th St, Los Angeles, CA 90001" +143666,AA Batteries (4-pack),1,3.84,01/14/19 04:40,"479 2nd St, New York City, NY 10001" +143667,Apple Airpods Headphones,1,150,01/26/19 23:42,"182 Ridge St, Seattle, WA 98101" +143668,USB-C Charging Cable,1,11.95,01/09/19 21:07,"943 4th St, Dallas, TX 75001" +143669,Bose SoundSport Headphones,1,99.99,01/31/19 21:56,"572 Center St, Seattle, WA 98101" +143670,20in Monitor,1,109.99,01/15/19 18:02,"160 River St, Dallas, TX 75001" +143671,AA Batteries (4-pack),1,3.84,01/22/19 21:46,"985 North St, Atlanta, GA 30301" +143672,Bose SoundSport Headphones,1,99.99,01/17/19 23:36,"894 Main St, New York City, NY 10001" +143673,Wired Headphones,1,11.99,01/21/19 18:37,"360 Adams St, Seattle, WA 98101" +143674,Vareebadd Phone,1,400,01/19/19 19:12,"96 Adams St, Los Angeles, CA 90001" +143675,Apple Airpods Headphones,1,150,01/10/19 21:09,"514 Forest St, New York City, NY 10001" +143676,Wired Headphones,1,11.99,01/26/19 11:57,"647 8th St, New York City, NY 10001" +143677,34in Ultrawide Monitor,1,379.99,01/02/19 13:49,"86 Forest St, Seattle, WA 98101" +143678,Google Phone,1,600,01/05/19 12:52,"527 River St, Boston, MA 02215" +143679,20in Monitor,1,109.99,01/02/19 17:12,"948 5th St, Los Angeles, CA 90001" +143680,AAA Batteries (4-pack),2,2.99,01/21/19 11:04,"85 10th St, New York City, NY 10001" +143681,27in 4K Gaming Monitor,1,389.99,01/29/19 00:48,"79 Madison St, New York City, NY 10001" +143682,Bose SoundSport Headphones,1,99.99,01/02/19 09:45,"247 2nd St, Portland, OR 97035" +143683,Google Phone,1,600,01/15/19 13:35,"466 7th St, Atlanta, GA 30301" +143684,USB-C Charging Cable,1,11.95,01/24/19 16:25,"954 Chestnut St, San Francisco, CA 94016" +143685,Google Phone,1,600,01/18/19 08:38,"656 10th St, Atlanta, GA 30301" +143686,AAA Batteries (4-pack),1,2.99,01/25/19 16:33,"221 11th St, Portland, OR 97035" +143687,Lightning Charging Cable,1,14.95,01/09/19 07:27,"755 2nd St, San Francisco, CA 94016" +143688,Google Phone,1,600,01/22/19 10:19,"69 5th St, San Francisco, CA 94016" +143688,Wired Headphones,1,11.99,01/22/19 10:19,"69 5th St, San Francisco, CA 94016" +143689,27in FHD Monitor,1,149.99,01/04/19 11:45,"374 Spruce St, San Francisco, CA 94016" +143690,Google Phone,1,600,01/14/19 08:43,"565 River St, Portland, ME 04101" +143691,Wired Headphones,1,11.99,01/05/19 22:46,"455 7th St, New York City, NY 10001" +143692,Apple Airpods Headphones,1,150,01/08/19 20:39,"734 Ridge St, New York City, NY 10001" +143693,Lightning Charging Cable,1,14.95,01/31/19 19:37,"547 Center St, Dallas, TX 75001" +143694,USB-C Charging Cable,1,11.95,01/31/19 21:36,"14 Sunset St, San Francisco, CA 94016" +143695,AA Batteries (4-pack),1,3.84,01/25/19 10:58,"212 Madison St, Portland, OR 97035" +143696,Wired Headphones,1,11.99,01/02/19 19:09,"213 Spruce St, San Francisco, CA 94016" +143697,USB-C Charging Cable,1,11.95,01/16/19 12:24,"903 Lake St, Austin, TX 73301" +143698,AA Batteries (4-pack),3,3.84,01/19/19 22:33,"120 Willow St, San Francisco, CA 94016" +143699,Bose SoundSport Headphones,1,99.99,01/02/19 14:41,"265 Maple St, Portland, OR 97035" +143700,AAA Batteries (4-pack),2,2.99,01/09/19 19:04,"487 8th St, Seattle, WA 98101" +143701,Wired Headphones,1,11.99,01/04/19 06:58,"809 Maple St, New York City, NY 10001" +143702,Macbook Pro Laptop,1,1700,01/03/19 11:45,"358 Washington St, Los Angeles, CA 90001" +143703,Apple Airpods Headphones,1,150,01/14/19 22:06,"636 11th St, Dallas, TX 75001" +143704,Bose SoundSport Headphones,1,99.99,01/02/19 13:01,"19 1st St, Los Angeles, CA 90001" +143705,USB-C Charging Cable,1,11.95,01/23/19 16:42,"281 Hickory St, Atlanta, GA 30301" +143706,Flatscreen TV,1,300,01/15/19 18:13,"697 Ridge St, San Francisco, CA 94016" +143707,AA Batteries (4-pack),2,3.84,01/31/19 09:41,"51 South St, Dallas, TX 75001" +143708,27in FHD Monitor,1,149.99,01/26/19 22:28,"422 Pine St, Boston, MA 02215" +143709,Bose SoundSport Headphones,1,99.99,01/25/19 23:45,"491 Chestnut St, Austin, TX 73301" +143710,Wired Headphones,1,11.99,01/09/19 18:29,"792 Wilson St, Austin, TX 73301" +143711,AA Batteries (4-pack),1,3.84,01/30/19 10:36,"707 Meadow St, Portland, ME 04101" +143712,AA Batteries (4-pack),1,3.84,01/30/19 22:30,"613 11th St, Los Angeles, CA 90001" +143713,AAA Batteries (4-pack),1,2.99,01/11/19 22:34,"48 Lincoln St, Los Angeles, CA 90001" +143714,ThinkPad Laptop,1,999.99,01/25/19 08:31,"206 Highland St, Los Angeles, CA 90001" +143715,Apple Airpods Headphones,1,150,01/25/19 15:33,"4 Spruce St, San Francisco, CA 94016" +143715,Flatscreen TV,1,300,01/25/19 15:33,"4 Spruce St, San Francisco, CA 94016" +143716,Lightning Charging Cable,1,14.95,01/25/19 22:43,"686 12th St, Los Angeles, CA 90001" +143717,AA Batteries (4-pack),1,3.84,01/20/19 11:02,"493 Willow St, Boston, MA 02215" +143718,ThinkPad Laptop,1,999.99,01/14/19 13:00,"294 Highland St, New York City, NY 10001" +143719,AAA Batteries (4-pack),1,2.99,01/26/19 12:45,"186 Lakeview St, Seattle, WA 98101" +143720,34in Ultrawide Monitor,1,379.99,01/18/19 18:55,"175 Lincoln St, San Francisco, CA 94016" +143721,USB-C Charging Cable,1,11.95,01/08/19 21:13,"162 8th St, Seattle, WA 98101" +143722,20in Monitor,1,109.99,01/06/19 19:11,"193 Johnson St, Atlanta, GA 30301" +143723,ThinkPad Laptop,1,999.99,01/29/19 12:27,"122 Lake St, San Francisco, CA 94016" +143724,Lightning Charging Cable,1,14.95,01/05/19 07:03,"147 Meadow St, Atlanta, GA 30301" +143725,AA Batteries (4-pack),2,3.84,01/17/19 10:46,"843 Forest St, Dallas, TX 75001" +143726,AAA Batteries (4-pack),1,2.99,01/24/19 10:10,"686 Spruce St, Atlanta, GA 30301" +143727,AA Batteries (4-pack),2,3.84,01/15/19 21:43,"957 Hickory St, Boston, MA 02215" +143728,AAA Batteries (4-pack),1,2.99,01/11/19 09:53,"730 Madison St, Seattle, WA 98101" +143729,AAA Batteries (4-pack),4,2.99,01/05/19 22:49,"605 Highland St, Austin, TX 73301" +143730,Wired Headphones,1,11.99,01/06/19 21:24,"373 13th St, San Francisco, CA 94016" +143731,Apple Airpods Headphones,1,150,01/18/19 17:07,"798 Sunset St, San Francisco, CA 94016" +143732,Google Phone,1,600,01/08/19 01:16,"842 8th St, Los Angeles, CA 90001" +143733,Bose SoundSport Headphones,1,99.99,01/24/19 19:54,"147 Adams St, San Francisco, CA 94016" +143734,AA Batteries (4-pack),1,3.84,01/15/19 15:31,"780 8th St, San Francisco, CA 94016" +143735,27in 4K Gaming Monitor,1,389.99,01/15/19 14:18,"90 14th St, San Francisco, CA 94016" +143736,iPhone,1,700,01/29/19 10:06,"162 12th St, Atlanta, GA 30301" +143737,Flatscreen TV,1,300,01/02/19 17:10,"924 Ridge St, Seattle, WA 98101" +143738,Wired Headphones,1,11.99,01/30/19 17:23,"488 Elm St, New York City, NY 10001" +143739,AA Batteries (4-pack),1,3.84,01/25/19 15:03,"928 Park St, San Francisco, CA 94016" +143740,Bose SoundSport Headphones,1,99.99,01/27/19 08:18,"875 Lincoln St, Los Angeles, CA 90001" +143741,AA Batteries (4-pack),1,3.84,01/04/19 14:38,"221 8th St, New York City, NY 10001" +143742,Lightning Charging Cable,1,14.95,01/21/19 11:31,"480 10th St, San Francisco, CA 94016" +143743,Apple Airpods Headphones,1,150,01/25/19 11:19,"462 Elm St, San Francisco, CA 94016" +143744,AA Batteries (4-pack),1,3.84,01/03/19 17:00,"281 Hickory St, San Francisco, CA 94016" +143745,Flatscreen TV,1,300,01/31/19 11:55,"39 Wilson St, Atlanta, GA 30301" +143746,AA Batteries (4-pack),1,3.84,01/08/19 02:20,"404 Meadow St, San Francisco, CA 94016" +143747,Bose SoundSport Headphones,1,99.99,01/07/19 13:58,"485 14th St, San Francisco, CA 94016" +143748,Wired Headphones,1,11.99,01/01/19 10:04,"689 Main St, Los Angeles, CA 90001" +143749,Wired Headphones,1,11.99,01/23/19 08:08,"433 Maple St, Seattle, WA 98101" +143750,Macbook Pro Laptop,1,1700,01/12/19 14:52,"190 Washington St, Boston, MA 02215" +143751,AA Batteries (4-pack),1,3.84,01/28/19 01:03,"391 Pine St, San Francisco, CA 94016" +143752,AA Batteries (4-pack),1,3.84,01/31/19 10:47,"742 8th St, Seattle, WA 98101" +143753,Wired Headphones,1,11.99,01/11/19 19:16,"958 Chestnut St, Dallas, TX 75001" +143754,Apple Airpods Headphones,1,150,01/09/19 10:53,"424 10th St, Dallas, TX 75001" +143755,Wired Headphones,1,11.99,01/06/19 11:49,"564 4th St, San Francisco, CA 94016" +143756,AA Batteries (4-pack),1,3.84,01/29/19 11:24,"242 Cherry St, Los Angeles, CA 90001" +143757,AAA Batteries (4-pack),1,2.99,01/04/19 16:47,"322 Pine St, San Francisco, CA 94016" +143758,Flatscreen TV,1,300,01/07/19 12:18,"412 6th St, Boston, MA 02215" +143759,Bose SoundSport Headphones,1,99.99,01/04/19 22:02,"300 Washington St, Atlanta, GA 30301" +143760,AAA Batteries (4-pack),1,2.99,01/04/19 18:52,"894 12th St, San Francisco, CA 94016" +143761,Google Phone,1,600,01/02/19 16:36,"921 13th St, New York City, NY 10001" +143762,20in Monitor,1,109.99,01/31/19 10:54,"525 12th St, San Francisco, CA 94016" +143763,27in FHD Monitor,1,149.99,01/15/19 11:04,"687 8th St, Seattle, WA 98101" +143764,Lightning Charging Cable,1,14.95,01/26/19 16:27,"786 1st St, Los Angeles, CA 90001" +143765,Macbook Pro Laptop,1,1700,01/17/19 08:31,"629 Meadow St, Boston, MA 02215" +143766,AA Batteries (4-pack),1,3.84,01/04/19 22:09,"863 6th St, Boston, MA 02215" +143767,Bose SoundSport Headphones,1,99.99,01/08/19 11:17,"667 5th St, San Francisco, CA 94016" +143768,AAA Batteries (4-pack),1,2.99,01/28/19 20:01,"398 River St, Portland, OR 97035" +143769,Wired Headphones,1,11.99,01/29/19 07:41,"356 Washington St, Dallas, TX 75001" +143770,Wired Headphones,1,11.99,01/20/19 10:39,"126 River St, Portland, ME 04101" +143771,Wired Headphones,1,11.99,01/01/19 18:51,"515 Cherry St, Los Angeles, CA 90001" +143772,27in FHD Monitor,1,149.99,01/14/19 15:22,"324 Willow St, Portland, OR 97035" +143773,AA Batteries (4-pack),1,3.84,01/03/19 13:52,"417 14th St, New York City, NY 10001" +143774,Apple Airpods Headphones,1,150,01/14/19 23:21,"896 Pine St, Seattle, WA 98101" +143775,iPhone,1,700,01/06/19 13:06,"215 4th St, Seattle, WA 98101" +143776,34in Ultrawide Monitor,1,379.99,01/01/19 10:12,"469 Maple St, Boston, MA 02215" +143777,27in FHD Monitor,1,149.99,01/26/19 10:43,"488 Madison St, Atlanta, GA 30301" +143778,Wired Headphones,1,11.99,01/27/19 12:09,"557 River St, Seattle, WA 98101" +143779,Flatscreen TV,1,300,01/15/19 19:19,"817 Chestnut St, San Francisco, CA 94016" +143780,Wired Headphones,1,11.99,01/02/19 10:29,"88 14th St, Los Angeles, CA 90001" +143781,AA Batteries (4-pack),1,3.84,01/01/19 14:00,"655 Lake St, Seattle, WA 98101" +143782,27in FHD Monitor,1,149.99,01/18/19 18:11,"35 Center St, Los Angeles, CA 90001" +143783,Flatscreen TV,1,300,01/26/19 10:30,"633 Wilson St, Portland, OR 97035" +143784,AA Batteries (4-pack),1,3.84,01/20/19 15:30,"711 Wilson St, Atlanta, GA 30301" +143785,Wired Headphones,1,11.99,01/12/19 14:35,"971 5th St, Atlanta, GA 30301" +143786,AA Batteries (4-pack),1,3.84,01/22/19 15:07,"974 North St, Dallas, TX 75001" +143787,ThinkPad Laptop,1,999.99,01/22/19 15:13,"539 Lake St, San Francisco, CA 94016" +143788,USB-C Charging Cable,1,11.95,01/10/19 20:49,"312 Cherry St, Los Angeles, CA 90001" +143789,iPhone,1,700,01/18/19 23:14,"318 Elm St, Seattle, WA 98101" +143790,Wired Headphones,1,11.99,01/21/19 16:14,"765 North St, Boston, MA 02215" +143791,Lightning Charging Cable,1,14.95,01/01/19 10:07,"314 Willow St, Portland, ME 04101" +143792,AA Batteries (4-pack),1,3.84,01/19/19 15:05,"689 6th St, San Francisco, CA 94016" +143793,Lightning Charging Cable,1,14.95,01/20/19 18:27,"2 8th St, Los Angeles, CA 90001" +143794,USB-C Charging Cable,1,11.95,01/23/19 19:47,"670 Walnut St, San Francisco, CA 94016" +143795,Apple Airpods Headphones,1,150,01/14/19 16:18,"546 14th St, Portland, OR 97035" +143796,Flatscreen TV,1,300,01/09/19 18:36,"586 2nd St, Seattle, WA 98101" +143797,27in 4K Gaming Monitor,1,389.99,01/04/19 13:27,"922 Highland St, Los Angeles, CA 90001" +143798,Apple Airpods Headphones,1,150,01/05/19 11:25,"725 Ridge St, Los Angeles, CA 90001" +143799,27in FHD Monitor,1,149.99,01/01/19 20:09,"936 Hill St, Austin, TX 73301" +143800,Wired Headphones,2,11.99,01/25/19 16:46,"870 North St, San Francisco, CA 94016" +143801,Bose SoundSport Headphones,1,99.99,01/21/19 12:09,"819 Cherry St, Atlanta, GA 30301" +143802,USB-C Charging Cable,1,11.95,01/18/19 17:14,"816 Maple St, Los Angeles, CA 90001" +143803,AAA Batteries (4-pack),1,2.99,01/10/19 16:43,"348 Dogwood St, New York City, NY 10001" +143804,Wired Headphones,1,11.99,01/07/19 17:51,"398 4th St, Seattle, WA 98101" +143805,ThinkPad Laptop,1,999.99,01/10/19 01:04,"391 Dogwood St, Dallas, TX 75001" +143806,AA Batteries (4-pack),1,3.84,01/17/19 16:45,"96 Hickory St, Los Angeles, CA 90001" +143807,34in Ultrawide Monitor,1,379.99,01/22/19 16:15,"931 13th St, Boston, MA 02215" +143808,USB-C Charging Cable,1,11.95,01/12/19 10:42,"493 Center St, Boston, MA 02215" +143809,Wired Headphones,1,11.99,01/20/19 17:58,"110 North St, Dallas, TX 75001" +143810,AAA Batteries (4-pack),3,2.99,01/14/19 22:29,"563 South St, Los Angeles, CA 90001" +143811,USB-C Charging Cable,1,11.95,01/11/19 12:47,"204 Lincoln St, Boston, MA 02215" +143812,Bose SoundSport Headphones,1,99.99,01/08/19 12:21,"603 Washington St, Boston, MA 02215" +143813,Apple Airpods Headphones,1,150,01/05/19 18:59,"610 Sunset St, Dallas, TX 75001" +143814,AA Batteries (4-pack),1,3.84,01/01/19 16:27,"43 Park St, San Francisco, CA 94016" +143815,Google Phone,1,600,01/09/19 17:01,"917 Washington St, Seattle, WA 98101" +143816,AAA Batteries (4-pack),1,2.99,01/18/19 12:14,"438 Highland St, Los Angeles, CA 90001" +143817,27in FHD Monitor,1,149.99,01/19/19 09:42,"976 Wilson St, Portland, ME 04101" +143818,Google Phone,1,600,01/25/19 21:46,"873 Dogwood St, Portland, ME 04101" +143819,Wired Headphones,1,11.99,01/13/19 12:17,"904 4th St, Los Angeles, CA 90001" +143820,USB-C Charging Cable,1,11.95,01/31/19 11:35,"554 10th St, Atlanta, GA 30301" +143821,Bose SoundSport Headphones,1,99.99,01/14/19 20:40,"934 Chestnut St, San Francisco, CA 94016" +143822,AAA Batteries (4-pack),1,2.99,01/24/19 16:56,"982 Maple St, San Francisco, CA 94016" +143823,iPhone,1,700,01/27/19 18:56,"46 Chestnut St, Los Angeles, CA 90001" +143823,Lightning Charging Cable,1,14.95,01/27/19 18:56,"46 Chestnut St, Los Angeles, CA 90001" +143824,20in Monitor,1,109.99,01/20/19 19:19,"725 Jackson St, Los Angeles, CA 90001" +143825,AA Batteries (4-pack),1,3.84,01/07/19 11:38,"727 8th St, Seattle, WA 98101" +143826,AA Batteries (4-pack),1,3.84,01/19/19 18:24,"378 10th St, Los Angeles, CA 90001" +143827,Apple Airpods Headphones,1,150,01/08/19 11:10,"283 Cherry St, Seattle, WA 98101" +143828,Lightning Charging Cable,1,14.95,01/01/19 07:11,"825 13th St, Los Angeles, CA 90001" +143829,Wired Headphones,1,11.99,01/20/19 13:20,"451 Forest St, Austin, TX 73301" +143830,AAA Batteries (4-pack),1,2.99,01/13/19 09:22,"269 4th St, Los Angeles, CA 90001" +143831,20in Monitor,1,109.99,01/06/19 12:12,"436 7th St, New York City, NY 10001" +143832,Flatscreen TV,1,300,01/20/19 03:29,"212 Highland St, San Francisco, CA 94016" +143833,Lightning Charging Cable,1,14.95,01/21/19 21:37,"454 Adams St, Boston, MA 02215" +143834,Wired Headphones,1,11.99,01/17/19 07:27,"63 9th St, San Francisco, CA 94016" +143835,AA Batteries (4-pack),2,3.84,01/07/19 13:36,"546 Cedar St, Atlanta, GA 30301" +143836,Bose SoundSport Headphones,1,99.99,01/10/19 10:51,"739 North St, New York City, NY 10001" +143837,AAA Batteries (4-pack),2,2.99,01/19/19 22:23,"135 Forest St, New York City, NY 10001" +143838,AA Batteries (4-pack),1,3.84,01/18/19 20:58,"816 Forest St, Los Angeles, CA 90001" +143838,AA Batteries (4-pack),1,3.84,01/18/19 20:58,"816 Forest St, Los Angeles, CA 90001" +143839,20in Monitor,1,109.99,01/14/19 19:44,"909 Elm St, San Francisco, CA 94016" +143840,AAA Batteries (4-pack),1,2.99,01/06/19 11:34,"669 Willow St, San Francisco, CA 94016" +143841,Bose SoundSport Headphones,1,99.99,01/13/19 20:12,"374 Lakeview St, Seattle, WA 98101" +143842,Wired Headphones,1,11.99,01/13/19 11:13,"878 Spruce St, Boston, MA 02215" +143843,USB-C Charging Cable,1,11.95,01/19/19 12:54,"208 Elm St, New York City, NY 10001" +143844,Wired Headphones,1,11.99,01/07/19 15:49,"984 Cherry St, Atlanta, GA 30301" +143845,USB-C Charging Cable,1,11.95,01/03/19 17:12,"12 Elm St, Los Angeles, CA 90001" +143846,Macbook Pro Laptop,1,1700,01/25/19 14:29,"535 7th St, San Francisco, CA 94016" +143847,Wired Headphones,1,11.99,01/01/19 22:43,"623 North St, San Francisco, CA 94016" +143848,USB-C Charging Cable,1,11.95,01/14/19 07:30,"980 Madison St, Boston, MA 02215" +143849,ThinkPad Laptop,1,999.99,01/21/19 14:14,"965 Forest St, San Francisco, CA 94016" +143850,Apple Airpods Headphones,1,150,01/31/19 19:48,"264 Lakeview St, Los Angeles, CA 90001" +143851,AAA Batteries (4-pack),1,2.99,01/12/19 11:19,"866 Jackson St, New York City, NY 10001" +143852,34in Ultrawide Monitor,1,379.99,01/08/19 11:09,"804 14th St, San Francisco, CA 94016" +143853,27in 4K Gaming Monitor,1,389.99,01/08/19 10:12,"204 Main St, Austin, TX 73301" +143854,AA Batteries (4-pack),1,3.84,01/21/19 19:54,"2 Wilson St, Seattle, WA 98101" +143855,Wired Headphones,1,11.99,01/23/19 18:07,"972 Walnut St, Los Angeles, CA 90001" +143856,20in Monitor,1,109.99,01/12/19 11:23,"705 Adams St, Portland, ME 04101" +143857,USB-C Charging Cable,1,11.95,01/20/19 09:29,"879 North St, Dallas, TX 75001" +143858,ThinkPad Laptop,1,999.99,01/12/19 12:30,"506 1st St, Los Angeles, CA 90001" +143859,34in Ultrawide Monitor,1,379.99,01/31/19 17:53,"691 Lincoln St, San Francisco, CA 94016" +143860,34in Ultrawide Monitor,1,379.99,01/22/19 07:23,"116 Lakeview St, San Francisco, CA 94016" +143861,27in FHD Monitor,1,149.99,01/26/19 14:44,"101 Adams St, Atlanta, GA 30301" +143862,USB-C Charging Cable,1,11.95,01/22/19 17:15,"512 Meadow St, Los Angeles, CA 90001" +143863,Bose SoundSport Headphones,1,99.99,01/09/19 18:45,"389 Forest St, San Francisco, CA 94016" +143864,AAA Batteries (4-pack),3,2.99,01/06/19 21:11,"387 Center St, Boston, MA 02215" +143865,AAA Batteries (4-pack),1,2.99,01/03/19 10:19,"124 North St, Seattle, WA 98101" +143866,Wired Headphones,1,11.99,01/19/19 09:22,"23 Hickory St, San Francisco, CA 94016" +143867,USB-C Charging Cable,1,11.95,01/10/19 20:57,"952 Main St, San Francisco, CA 94016" +143868,AA Batteries (4-pack),1,3.84,01/06/19 11:41,"154 Church St, San Francisco, CA 94016" +143869,Apple Airpods Headphones,1,150,01/22/19 19:35,"324 Adams St, Portland, OR 97035" +143870,Apple Airpods Headphones,1,150,01/08/19 14:24,"237 14th St, Boston, MA 02215" +143871,iPhone,1,700,01/21/19 10:51,"262 5th St, Portland, OR 97035" +143872,Wired Headphones,1,11.99,01/31/19 15:52,"722 West St, Los Angeles, CA 90001" +143873,USB-C Charging Cable,1,11.95,01/27/19 08:05,"588 Highland St, Seattle, WA 98101" +143874,34in Ultrawide Monitor,1,379.99,01/16/19 23:39,"869 West St, San Francisco, CA 94016" +143875,Google Phone,1,600,01/07/19 05:49,"382 Willow St, San Francisco, CA 94016" +143876,AA Batteries (4-pack),1,3.84,01/11/19 14:31,"943 4th St, San Francisco, CA 94016" +143877,Apple Airpods Headphones,1,150,01/23/19 23:49,"215 Jefferson St, San Francisco, CA 94016" +143878,27in FHD Monitor,1,149.99,01/15/19 22:15,"557 2nd St, Portland, OR 97035" +143879,USB-C Charging Cable,1,11.95,01/13/19 19:21,"512 Elm St, Los Angeles, CA 90001" +143880,27in FHD Monitor,1,149.99,01/20/19 21:54,"929 Washington St, Portland, ME 04101" +143881,ThinkPad Laptop,1,999.99,01/13/19 14:26,"677 14th St, Seattle, WA 98101" +143882,Lightning Charging Cable,1,14.95,01/04/19 10:30,"974 12th St, Los Angeles, CA 90001" +143883,Google Phone,1,600,01/22/19 19:17,"820 Highland St, New York City, NY 10001" +143883,USB-C Charging Cable,2,11.95,01/22/19 19:17,"820 Highland St, New York City, NY 10001" +143883,Bose SoundSport Headphones,1,99.99,01/22/19 19:17,"820 Highland St, New York City, NY 10001" +143884,Bose SoundSport Headphones,1,99.99,01/01/19 20:04,"232 Elm St, San Francisco, CA 94016" +143885,Apple Airpods Headphones,1,150,01/20/19 09:58,"62 Willow St, Boston, MA 02215" +143886,AAA Batteries (4-pack),2,2.99,01/18/19 20:17,"751 1st St, San Francisco, CA 94016" +143887,20in Monitor,1,109.99,01/18/19 22:09,"132 Highland St, Seattle, WA 98101" +143888,AA Batteries (4-pack),1,3.84,01/21/19 09:54,"54 14th St, San Francisco, CA 94016" +143889,AAA Batteries (4-pack),1,2.99,01/09/19 19:04,"171 Walnut St, Los Angeles, CA 90001" +143890,Bose SoundSport Headphones,1,99.99,01/16/19 19:04,"799 Jackson St, San Francisco, CA 94016" +143891,27in 4K Gaming Monitor,1,389.99,01/15/19 11:22,"706 Lake St, San Francisco, CA 94016" +143892,Macbook Pro Laptop,1,1700,01/09/19 21:05,"603 7th St, San Francisco, CA 94016" +143893,Wired Headphones,1,11.99,01/21/19 13:01,"961 Chestnut St, Portland, OR 97035" +143894,Bose SoundSport Headphones,1,99.99,01/02/19 20:58,"999 Cedar St, Portland, OR 97035" +143895,Lightning Charging Cable,1,14.95,01/21/19 10:30,"836 Highland St, San Francisco, CA 94016" +143896,27in FHD Monitor,1,149.99,01/26/19 09:27,"733 2nd St, Seattle, WA 98101" +143897,Lightning Charging Cable,1,14.95,01/03/19 23:02,"175 6th St, Atlanta, GA 30301" +143898,USB-C Charging Cable,1,11.95,01/06/19 12:05,"187 Elm St, Los Angeles, CA 90001" +143899,AA Batteries (4-pack),1,3.84,01/12/19 17:40,"438 10th St, New York City, NY 10001" +143900,USB-C Charging Cable,1,11.95,01/31/19 05:17,"28 Elm St, New York City, NY 10001" +143900,Google Phone,1,600,01/31/19 05:17,"28 Elm St, New York City, NY 10001" +143901,AAA Batteries (4-pack),1,2.99,01/25/19 13:09,"523 Chestnut St, Atlanta, GA 30301" +143902,Wired Headphones,1,11.99,01/24/19 06:33,"544 Cherry St, Los Angeles, CA 90001" +143903,Apple Airpods Headphones,1,150,01/27/19 15:49,"388 6th St, New York City, NY 10001" +143904,Wired Headphones,1,11.99,01/26/19 18:53,"296 Meadow St, San Francisco, CA 94016" +143905,20in Monitor,1,109.99,01/21/19 04:59,"42 6th St, Atlanta, GA 30301" +143906,AAA Batteries (4-pack),3,2.99,01/23/19 00:10,"74 Church St, San Francisco, CA 94016" +143907,Lightning Charging Cable,1,14.95,01/29/19 16:23,"624 Main St, San Francisco, CA 94016" +143908,27in 4K Gaming Monitor,1,389.99,01/29/19 00:56,"707 River St, New York City, NY 10001" +143909,AAA Batteries (4-pack),1,2.99,01/02/19 20:15,"354 Chestnut St, Los Angeles, CA 90001" +143910,AAA Batteries (4-pack),2,2.99,01/06/19 12:04,"347 Highland St, New York City, NY 10001" +143911,Google Phone,1,600,01/01/19 18:40,"820 North St, Boston, MA 02215" +143912,27in 4K Gaming Monitor,1,389.99,01/10/19 12:40,"912 2nd St, Dallas, TX 75001" +143913,USB-C Charging Cable,1,11.95,01/15/19 19:25,"247 Wilson St, Portland, ME 04101" +143914,Lightning Charging Cable,1,14.95,01/02/19 14:17,"196 11th St, Los Angeles, CA 90001" +143915,USB-C Charging Cable,1,11.95,01/18/19 21:24,"675 Madison St, New York City, NY 10001" +143916,AAA Batteries (4-pack),1,2.99,01/01/19 18:26,"967 8th St, New York City, NY 10001" +143917,AAA Batteries (4-pack),1,2.99,01/08/19 13:17,"341 7th St, Atlanta, GA 30301" +143918,Lightning Charging Cable,1,14.95,01/14/19 10:29,"557 12th St, New York City, NY 10001" +143919,Flatscreen TV,1,300,01/30/19 12:04,"728 Wilson St, New York City, NY 10001" +143920,Bose SoundSport Headphones,1,99.99,01/31/19 12:19,"346 Forest St, Los Angeles, CA 90001" +143921,AA Batteries (4-pack),3,3.84,01/23/19 19:27,"308 Cherry St, Boston, MA 02215" +143922,Lightning Charging Cable,1,14.95,01/08/19 05:48,"475 Highland St, San Francisco, CA 94016" +143923,ThinkPad Laptop,1,999.99,01/17/19 12:54,"243 Elm St, Dallas, TX 75001" +143924,Wired Headphones,1,11.99,01/04/19 15:38,"501 Madison St, New York City, NY 10001" +143925,Macbook Pro Laptop,1,1700,01/26/19 13:51,"598 Center St, New York City, NY 10001" +143926,Apple Airpods Headphones,1,150,01/13/19 00:59,"446 5th St, Los Angeles, CA 90001" +143927,Bose SoundSport Headphones,1,99.99,01/19/19 17:08,"972 Madison St, Boston, MA 02215" +143928,Google Phone,1,600,01/26/19 16:09,"997 1st St, New York City, NY 10001" +143929,Wired Headphones,1,11.99,01/22/19 17:05,"570 Main St, San Francisco, CA 94016" +143930,Lightning Charging Cable,1,14.95,01/28/19 16:58,"661 Adams St, Atlanta, GA 30301" +143931,27in 4K Gaming Monitor,1,389.99,01/24/19 19:40,"901 Lakeview St, San Francisco, CA 94016" +143932,Lightning Charging Cable,1,14.95,01/19/19 08:09,"425 11th St, Portland, OR 97035" +143933,Vareebadd Phone,1,400,01/02/19 19:45,"161 North St, Dallas, TX 75001" +143934,Lightning Charging Cable,1,14.95,01/29/19 16:31,"34 Willow St, Los Angeles, CA 90001" +143935,iPhone,1,700,01/21/19 10:26,"474 Church St, San Francisco, CA 94016" +143935,Lightning Charging Cable,1,14.95,01/21/19 10:26,"474 Church St, San Francisco, CA 94016" +143936,Bose SoundSport Headphones,1,99.99,01/01/19 13:45,"634 Church St, San Francisco, CA 94016" +143937,Apple Airpods Headphones,1,150,01/14/19 04:36,"210 Park St, Seattle, WA 98101" +143938,34in Ultrawide Monitor,1,379.99,01/20/19 17:19,"328 Walnut St, Austin, TX 73301" +143939,AAA Batteries (4-pack),1,2.99,01/30/19 19:50,"215 Walnut St, Portland, OR 97035" +143940,Apple Airpods Headphones,1,150,01/31/19 18:30,"841 13th St, Dallas, TX 75001" +143941,AA Batteries (4-pack),1,3.84,01/29/19 21:51,"387 Walnut St, Atlanta, GA 30301" +143942,Apple Airpods Headphones,1,150,01/22/19 13:00,"214 Lakeview St, Seattle, WA 98101" +143943,AAA Batteries (4-pack),1,2.99,01/04/19 00:24,"880 Cedar St, Boston, MA 02215" +143944,Bose SoundSport Headphones,1,99.99,01/06/19 10:59,"85 Lakeview St, Boston, MA 02215" +143945,27in 4K Gaming Monitor,1,389.99,01/09/19 23:19,"7 Walnut St, Portland, OR 97035" +143946,Wired Headphones,1,11.99,01/03/19 10:05,"725 4th St, San Francisco, CA 94016" +143947,Apple Airpods Headphones,1,150,01/15/19 18:09,"89 Madison St, San Francisco, CA 94016" +143948,AA Batteries (4-pack),2,3.84,01/04/19 17:01,"394 1st St, Los Angeles, CA 90001" +143949,Apple Airpods Headphones,1,150,01/17/19 16:22,"126 Madison St, Austin, TX 73301" +143950,34in Ultrawide Monitor,1,379.99,01/25/19 07:30,"431 Center St, New York City, NY 10001" +143951,Wired Headphones,1,11.99,01/28/19 13:07,"853 Lakeview St, Los Angeles, CA 90001" +143952,AAA Batteries (4-pack),2,2.99,01/29/19 11:23,"785 Cedar St, Dallas, TX 75001" +143953,iPhone,1,700,01/17/19 19:49,"653 Cedar St, Austin, TX 73301" +143954,27in 4K Gaming Monitor,1,389.99,01/02/19 16:25,"849 North St, Atlanta, GA 30301" +143955,27in 4K Gaming Monitor,1,389.99,01/11/19 20:56,"843 Chestnut St, Boston, MA 02215" +143956,AA Batteries (4-pack),1,3.84,01/18/19 11:19,"921 Walnut St, Seattle, WA 98101" +143957,USB-C Charging Cable,1,11.95,01/02/19 11:30,"910 13th St, San Francisco, CA 94016" +143958,Lightning Charging Cable,1,14.95,01/23/19 21:45,"22 Highland St, Portland, OR 97035" +143959,34in Ultrawide Monitor,1,379.99,01/18/19 15:12,"786 South St, Portland, OR 97035" +143960,AAA Batteries (4-pack),1,2.99,01/22/19 16:31,"146 Elm St, Atlanta, GA 30301" +143961,AAA Batteries (4-pack),2,2.99,01/01/19 23:52,"226 2nd St, Los Angeles, CA 90001" +143962,USB-C Charging Cable,1,11.95,01/03/19 09:00,"632 Lakeview St, Seattle, WA 98101" +143963,AA Batteries (4-pack),2,3.84,01/08/19 09:45,"401 Madison St, Boston, MA 02215" +143964,USB-C Charging Cable,2,11.95,01/30/19 14:29,"751 Ridge St, San Francisco, CA 94016" +143965,iPhone,1,700,01/22/19 16:38,"246 Hill St, Los Angeles, CA 90001" +143966,Bose SoundSport Headphones,1,99.99,01/20/19 10:11,"821 11th St, Seattle, WA 98101" +143967,27in FHD Monitor,1,149.99,01/01/19 13:13,"527 Center St, Portland, ME 04101" +143968,20in Monitor,1,109.99,01/27/19 10:54,"282 13th St, Boston, MA 02215" +143969,AAA Batteries (4-pack),1,2.99,01/15/19 17:33,"93 West St, Boston, MA 02215" +143970,USB-C Charging Cable,1,11.95,01/10/19 07:40,"246 Lakeview St, New York City, NY 10001" +143971,AA Batteries (4-pack),1,3.84,01/23/19 17:09,"670 Meadow St, Boston, MA 02215" +143972,Bose SoundSport Headphones,1,99.99,01/11/19 09:56,"697 Church St, San Francisco, CA 94016" +143973,Lightning Charging Cable,1,14.95,01/09/19 17:42,"38 North St, San Francisco, CA 94016" +143974,Bose SoundSport Headphones,1,99.99,01/10/19 16:31,"225 Jackson St, Dallas, TX 75001" +143975,Lightning Charging Cable,1,14.95,01/18/19 20:35,"683 4th St, Los Angeles, CA 90001" +143976,Bose SoundSport Headphones,1,99.99,01/04/19 07:45,"262 Maple St, Los Angeles, CA 90001" +143977,AAA Batteries (4-pack),2,2.99,01/31/19 20:54,"883 Lakeview St, San Francisco, CA 94016" +143978,Flatscreen TV,1,300,01/30/19 17:54,"44 River St, Los Angeles, CA 90001" +143979,AA Batteries (4-pack),1,3.84,01/02/19 12:41,"222 Elm St, Boston, MA 02215" +143980,USB-C Charging Cable,1,11.95,01/04/19 16:04,"546 Park St, San Francisco, CA 94016" +143981,Vareebadd Phone,1,400,01/24/19 18:10,"94 10th St, New York City, NY 10001" +143981,Wired Headphones,1,11.99,01/24/19 18:10,"94 10th St, New York City, NY 10001" +143982,27in FHD Monitor,1,149.99,01/27/19 20:22,"911 Lake St, New York City, NY 10001" +143983,USB-C Charging Cable,3,11.95,01/14/19 12:00,"889 6th St, Portland, OR 97035" +143984,AA Batteries (4-pack),1,3.84,01/21/19 11:22,"697 West St, Atlanta, GA 30301" +143985,27in 4K Gaming Monitor,1,389.99,01/15/19 08:28,"647 Walnut St, Atlanta, GA 30301" +143986,AAA Batteries (4-pack),2,2.99,01/10/19 22:32,"490 Adams St, San Francisco, CA 94016" +143987,27in FHD Monitor,1,149.99,01/07/19 16:00,"947 Cedar St, Dallas, TX 75001" +143988,Wired Headphones,1,11.99,01/04/19 06:12,"145 Maple St, Seattle, WA 98101" +143989,34in Ultrawide Monitor,1,379.99,01/21/19 19:53,"78 Cedar St, Austin, TX 73301" +143990,USB-C Charging Cable,1,11.95,01/29/19 17:57,"694 Spruce St, Seattle, WA 98101" +143991,27in 4K Gaming Monitor,1,389.99,01/03/19 10:42,"880 Sunset St, San Francisco, CA 94016" +143992,20in Monitor,1,109.99,01/05/19 21:07,"756 Washington St, San Francisco, CA 94016" +143993,AAA Batteries (4-pack),2,2.99,01/13/19 20:26,"955 Lake St, Dallas, TX 75001" +143994,ThinkPad Laptop,1,999.99,01/15/19 23:57,"388 Forest St, Los Angeles, CA 90001" +143995,Apple Airpods Headphones,1,150,01/03/19 11:32,"392 Walnut St, Atlanta, GA 30301" +143996,Google Phone,1,600,01/22/19 12:44,"901 2nd St, Los Angeles, CA 90001" +143997,Wired Headphones,1,11.99,01/21/19 16:03,"73 Park St, Seattle, WA 98101" +143998,20in Monitor,1,109.99,01/04/19 22:06,"94 Cedar St, Los Angeles, CA 90001" +143999,Apple Airpods Headphones,1,150,01/05/19 08:32,"677 Jefferson St, Los Angeles, CA 90001" +144000,Wired Headphones,1,11.99,01/04/19 12:33,"142 Ridge St, Austin, TX 73301" +144001,USB-C Charging Cable,1,11.95,01/06/19 10:01,"841 Elm St, San Francisco, CA 94016" +144002,AAA Batteries (4-pack),2,2.99,01/17/19 06:18,"108 Forest St, Dallas, TX 75001" +144003,Apple Airpods Headphones,1,150,01/24/19 02:11,"199 Washington St, Los Angeles, CA 90001" +144004,Lightning Charging Cable,1,14.95,01/09/19 11:07,"744 Cherry St, Los Angeles, CA 90001" +144005,AA Batteries (4-pack),1,3.84,01/03/19 13:14,"329 Cherry St, San Francisco, CA 94016" +144006,USB-C Charging Cable,1,11.95,01/19/19 22:21,"984 5th St, Los Angeles, CA 90001" +144007,Wired Headphones,1,11.99,01/21/19 19:09,"954 Chestnut St, San Francisco, CA 94016" +144008,20in Monitor,1,109.99,01/24/19 09:28,"385 Willow St, New York City, NY 10001" +144009,34in Ultrawide Monitor,1,379.99,01/16/19 00:50,"682 Washington St, San Francisco, CA 94016" +144010,Lightning Charging Cable,1,14.95,01/21/19 12:01,"652 Lake St, Boston, MA 02215" +144011,AAA Batteries (4-pack),1,2.99,01/11/19 12:55,"498 Lake St, San Francisco, CA 94016" +144012,AA Batteries (4-pack),1,3.84,01/05/19 10:54,"322 Pine St, New York City, NY 10001" +144013,Bose SoundSport Headphones,1,99.99,01/08/19 18:55,"994 Chestnut St, San Francisco, CA 94016" +144014,AAA Batteries (4-pack),1,2.99,01/05/19 13:48,"177 1st St, Boston, MA 02215" +144015,ThinkPad Laptop,1,999.99,01/07/19 10:47,"290 Main St, New York City, NY 10001" +144016,USB-C Charging Cable,1,11.95,01/24/19 22:41,"998 5th St, Los Angeles, CA 90001" +144017,27in FHD Monitor,1,149.99,01/04/19 18:44,"771 Church St, Portland, OR 97035" +144018,Lightning Charging Cable,1,14.95,01/03/19 22:19,"542 11th St, New York City, NY 10001" +144019,Wired Headphones,1,11.99,01/15/19 10:37,"415 Wilson St, Seattle, WA 98101" +144020,iPhone,1,700,01/30/19 13:35,"580 Ridge St, Boston, MA 02215" +144021,Bose SoundSport Headphones,1,99.99,01/01/19 15:12,"923 Forest St, Portland, OR 97035" +144022,AA Batteries (4-pack),1,3.84,01/18/19 20:42,"326 12th St, Portland, OR 97035" +144023,AA Batteries (4-pack),2,3.84,01/05/19 16:56,"527 Hickory St, San Francisco, CA 94016" +144024,27in 4K Gaming Monitor,1,389.99,01/17/19 20:25,"538 Willow St, San Francisco, CA 94016" +144025,AAA Batteries (4-pack),1,2.99,01/13/19 09:10,"652 Sunset St, San Francisco, CA 94016" +144026,Wired Headphones,1,11.99,01/29/19 18:59,"405 Meadow St, Dallas, TX 75001" +144027,USB-C Charging Cable,1,11.95,01/20/19 09:04,"728 Forest St, New York City, NY 10001" +144028,Apple Airpods Headphones,1,150,01/10/19 12:46,"499 9th St, Los Angeles, CA 90001" +144029,Google Phone,1,600,01/09/19 17:32,"768 Dogwood St, Atlanta, GA 30301" +144030,Wired Headphones,1,11.99,01/16/19 09:59,"202 2nd St, Seattle, WA 98101" +144031,AAA Batteries (4-pack),2,2.99,01/31/19 21:16,"240 13th St, Seattle, WA 98101" +144032,Google Phone,1,600,01/12/19 20:14,"42 North St, New York City, NY 10001" +144033,Macbook Pro Laptop,1,1700,01/03/19 17:41,"442 Madison St, Dallas, TX 75001" +144034,AA Batteries (4-pack),1,3.84,01/23/19 23:51,"582 Sunset St, Dallas, TX 75001" +144034,27in FHD Monitor,1,149.99,01/23/19 23:51,"582 Sunset St, Dallas, TX 75001" +144035,USB-C Charging Cable,1,11.95,01/16/19 10:38,"266 Hill St, Portland, ME 04101" +144036,Lightning Charging Cable,2,14.95,01/07/19 12:22,"91 Maple St, Dallas, TX 75001" +144037,Lightning Charging Cable,1,14.95,01/27/19 19:49,"438 Meadow St, Austin, TX 73301" +144038,Vareebadd Phone,1,400,01/11/19 13:44,"368 Wilson St, Dallas, TX 75001" +144039,Wired Headphones,1,11.99,01/05/19 20:06,"4 2nd St, New York City, NY 10001" +144040,Flatscreen TV,1,300,01/24/19 16:43,"971 7th St, New York City, NY 10001" +144041,20in Monitor,1,109.99,01/13/19 00:42,"843 Park St, San Francisco, CA 94016" +144042,AA Batteries (4-pack),1,3.84,01/09/19 20:53,"963 Johnson St, San Francisco, CA 94016" +144043,iPhone,1,700,01/22/19 22:25,"421 Main St, Boston, MA 02215" +144044,ThinkPad Laptop,1,999.99,01/06/19 21:23,"897 Sunset St, San Francisco, CA 94016" +144045,USB-C Charging Cable,1,11.95,01/11/19 12:37,"298 Cherry St, San Francisco, CA 94016" +144046,Flatscreen TV,1,300,01/20/19 13:43,"597 Church St, Dallas, TX 75001" +144047,Apple Airpods Headphones,1,150,01/03/19 15:01,"549 Hickory St, Los Angeles, CA 90001" +144048,Wired Headphones,1,11.99,01/15/19 13:40,"29 Dogwood St, New York City, NY 10001" +144049,Google Phone,1,600,01/14/19 18:46,"854 Pine St, Boston, MA 02215" +144050,ThinkPad Laptop,1,999.99,01/15/19 12:02,"844 Elm St, San Francisco, CA 94016" +144051,AAA Batteries (4-pack),1,2.99,01/29/19 18:57,"874 Meadow St, Austin, TX 73301" +144052,Lightning Charging Cable,1,14.95,01/08/19 19:19,"989 Cherry St, Atlanta, GA 30301" +144053,Wired Headphones,1,11.99,01/31/19 22:47,"102 North St, Boston, MA 02215" +144054,ThinkPad Laptop,1,999.99,01/19/19 21:47,"247 West St, Dallas, TX 75001" +144055,AAA Batteries (4-pack),1,2.99,01/03/19 09:04,"977 6th St, New York City, NY 10001" +144056,AAA Batteries (4-pack),2,2.99,01/05/19 17:25,"458 14th St, San Francisco, CA 94016" +144057,Vareebadd Phone,1,400,01/01/19 18:45,"674 Meadow St, San Francisco, CA 94016" +144058,27in 4K Gaming Monitor,1,389.99,01/07/19 08:06,"696 Lincoln St, Los Angeles, CA 90001" +144059,Wired Headphones,1,11.99,01/28/19 16:13,"749 Center St, Atlanta, GA 30301" +144060,Wired Headphones,2,11.99,01/01/19 19:21,"874 Cedar St, San Francisco, CA 94016" +144061,AAA Batteries (4-pack),2,2.99,01/27/19 11:43,"692 13th St, New York City, NY 10001" +144062,Bose SoundSport Headphones,1,99.99,01/03/19 13:47,"222 Dogwood St, San Francisco, CA 94016" +144063,LG Dryer,1,600.0,01/20/19 21:38,"598 Main St, San Francisco, CA 94016" +144064,iPhone,1,700,01/31/19 15:19,"68 4th St, Los Angeles, CA 90001" +144065,Lightning Charging Cable,1,14.95,01/25/19 12:39,"724 Ridge St, Seattle, WA 98101" +144066,20in Monitor,1,109.99,01/17/19 11:28,"919 Cherry St, Seattle, WA 98101" +144067,LG Dryer,1,600.0,01/02/19 21:21,"300 Ridge St, San Francisco, CA 94016" +144068,27in FHD Monitor,1,149.99,01/02/19 18:31,"463 River St, San Francisco, CA 94016" +144069,Lightning Charging Cable,1,14.95,01/17/19 14:59,"574 Lake St, Los Angeles, CA 90001" +144070,ThinkPad Laptop,1,999.99,01/04/19 21:51,"199 Center St, Los Angeles, CA 90001" +144071,Apple Airpods Headphones,1,150,01/08/19 14:10,"345 11th St, Los Angeles, CA 90001" +144072,Apple Airpods Headphones,1,150,01/11/19 22:45,"932 Wilson St, Dallas, TX 75001" +144073,Wired Headphones,1,11.99,01/22/19 14:44,"287 Maple St, Boston, MA 02215" +144074,AA Batteries (4-pack),1,3.84,01/24/19 15:36,"922 North St, Boston, MA 02215" +144075,Wired Headphones,1,11.99,01/28/19 21:34,"576 Pine St, Boston, MA 02215" +,,,,, +144076,LG Washing Machine,1,600.0,01/30/19 23:10,"145 Willow St, San Francisco, CA 94016" +144077,Apple Airpods Headphones,1,150,01/31/19 21:50,"699 Park St, Seattle, WA 98101" +144078,Bose SoundSport Headphones,1,99.99,01/21/19 19:09,"391 1st St, New York City, NY 10001" +144079,Bose SoundSport Headphones,1,99.99,01/19/19 19:48,"326 West St, Dallas, TX 75001" +144080,AA Batteries (4-pack),1,3.84,01/31/19 11:25,"87 Washington St, San Francisco, CA 94016" +144081,AA Batteries (4-pack),1,3.84,01/05/19 23:12,"271 Church St, Los Angeles, CA 90001" +144082,20in Monitor,1,109.99,01/20/19 11:45,"280 Lake St, San Francisco, CA 94016" +144083,AA Batteries (4-pack),2,3.84,01/11/19 05:03,"918 West St, San Francisco, CA 94016" +144084,Apple Airpods Headphones,1,150,01/04/19 10:27,"819 Highland St, Los Angeles, CA 90001" +144085,LG Dryer,1,600.0,01/25/19 20:57,"721 2nd St, Atlanta, GA 30301" +144086,Google Phone,1,600,01/16/19 22:27,"129 13th St, New York City, NY 10001" +144087,Apple Airpods Headphones,1,150,01/14/19 17:13,"499 Maple St, New York City, NY 10001" +144088,AA Batteries (4-pack),1,3.84,01/11/19 13:17,"475 Cedar St, Dallas, TX 75001" +144089,27in FHD Monitor,1,149.99,01/23/19 20:01,"734 Elm St, New York City, NY 10001" +144090,27in 4K Gaming Monitor,1,389.99,01/09/19 19:57,"695 Jefferson St, Boston, MA 02215" +144091,Bose SoundSport Headphones,1,99.99,01/21/19 22:50,"994 South St, Austin, TX 73301" +144092,AAA Batteries (4-pack),1,2.99,01/18/19 18:28,"866 Hill St, Portland, ME 04101" +144093,Apple Airpods Headphones,1,150,01/17/19 15:09,"296 Jackson St, San Francisco, CA 94016" +144094,Apple Airpods Headphones,1,150,01/09/19 12:53,"61 Spruce St, San Francisco, CA 94016" +144095,Bose SoundSport Headphones,1,99.99,01/12/19 18:22,"790 9th St, San Francisco, CA 94016" +144096,Apple Airpods Headphones,1,150,01/02/19 23:05,"821 Washington St, Portland, OR 97035" +144097,AA Batteries (4-pack),1,3.84,01/22/19 23:38,"977 Meadow St, New York City, NY 10001" +144098,AA Batteries (4-pack),7,3.84,01/03/19 14:34,"188 South St, San Francisco, CA 94016" +144099,AAA Batteries (4-pack),1,2.99,01/28/19 13:41,"63 Forest St, Seattle, WA 98101" +144100,USB-C Charging Cable,1,11.95,01/06/19 13:06,"168 5th St, Los Angeles, CA 90001" +144101,iPhone,1,700,01/20/19 07:50,"391 Church St, Seattle, WA 98101" +144101,Wired Headphones,1,11.99,01/20/19 07:50,"391 Church St, Seattle, WA 98101" +144102,Apple Airpods Headphones,1,150,01/22/19 18:10,"129 Willow St, New York City, NY 10001" +144103,Lightning Charging Cable,1,14.95,01/11/19 02:17,"67 Lake St, Boston, MA 02215" +144104,Bose SoundSport Headphones,1,99.99,01/31/19 11:24,"1 South St, Dallas, TX 75001" +144104,AA Batteries (4-pack),2,3.84,01/31/19 11:24,"1 South St, Dallas, TX 75001" +144105,AA Batteries (4-pack),2,3.84,01/26/19 13:25,"282 Maple St, Dallas, TX 75001" +144106,Vareebadd Phone,1,400,01/25/19 14:38,"612 Jefferson St, New York City, NY 10001" +144107,Google Phone,1,600,01/05/19 16:09,"513 South St, Boston, MA 02215" +144107,Wired Headphones,1,11.99,01/05/19 16:09,"513 South St, Boston, MA 02215" +144108,20in Monitor,1,109.99,01/03/19 09:15,"320 Spruce St, Atlanta, GA 30301" +144109,Wired Headphones,1,11.99,01/22/19 11:28,"858 Hickory St, Los Angeles, CA 90001" +144110,Wired Headphones,1,11.99,01/22/19 08:01,"472 Sunset St, Los Angeles, CA 90001" +144111,Apple Airpods Headphones,1,150,01/03/19 12:54,"440 Highland St, Austin, TX 73301" +144112,AA Batteries (4-pack),1,3.84,01/12/19 11:25,"594 Lincoln St, New York City, NY 10001" +144113,Bose SoundSport Headphones,1,99.99,01/10/19 20:35,"557 14th St, San Francisco, CA 94016" +144113,AAA Batteries (4-pack),2,2.99,01/10/19 20:35,"557 14th St, San Francisco, CA 94016" +144114,AAA Batteries (4-pack),1,2.99,01/22/19 14:01,"179 7th St, Atlanta, GA 30301" +144115,Wired Headphones,1,11.99,01/20/19 06:52,"745 10th St, San Francisco, CA 94016" +144116,Lightning Charging Cable,1,14.95,01/29/19 17:00,"762 Park St, San Francisco, CA 94016" +144117,AAA Batteries (4-pack),1,2.99,01/05/19 22:31,"786 2nd St, Los Angeles, CA 90001" +144118,Wired Headphones,1,11.99,01/02/19 09:51,"951 Sunset St, Portland, OR 97035" +144119,Lightning Charging Cable,1,14.95,01/23/19 22:15,"9 Cedar St, Los Angeles, CA 90001" +144120,Wired Headphones,1,11.99,01/24/19 22:16,"730 Adams St, San Francisco, CA 94016" +144121,USB-C Charging Cable,1,11.95,01/04/19 22:31,"405 2nd St, Seattle, WA 98101" +144122,AAA Batteries (4-pack),3,2.99,01/29/19 18:32,"27 14th St, Dallas, TX 75001" +144123,Lightning Charging Cable,1,14.95,01/03/19 00:47,"440 Spruce St, New York City, NY 10001" +144124,Apple Airpods Headphones,1,150,01/12/19 15:42,"806 Cedar St, Boston, MA 02215" +144125,USB-C Charging Cable,1,11.95,01/22/19 13:20,"307 Center St, Los Angeles, CA 90001" +144126,27in FHD Monitor,1,149.99,01/01/19 22:02,"313 Willow St, Atlanta, GA 30301" +144127,Wired Headphones,1,11.99,01/28/19 20:02,"670 Sunset St, New York City, NY 10001" +144128,USB-C Charging Cable,1,11.95,01/29/19 16:19,"852 Chestnut St, San Francisco, CA 94016" +144129,iPhone,1,700,01/03/19 23:48,"642 2nd St, Los Angeles, CA 90001" +144130,Google Phone,1,600,01/15/19 23:26,"846 Spruce St, Dallas, TX 75001" +144131,Wired Headphones,1,11.99,01/08/19 14:18,"8 Lincoln St, Seattle, WA 98101" +144132,ThinkPad Laptop,1,999.99,01/23/19 02:58,"478 Maple St, Los Angeles, CA 90001" +144133,AA Batteries (4-pack),1,3.84,01/01/19 17:04,"112 9th St, Dallas, TX 75001" +144134,AAA Batteries (4-pack),3,2.99,01/19/19 10:44,"357 7th St, Atlanta, GA 30301" +144135,Wired Headphones,1,11.99,01/16/19 21:29,"485 Highland St, Seattle, WA 98101" +144136,AAA Batteries (4-pack),2,2.99,01/24/19 15:32,"821 Center St, San Francisco, CA 94016" +144137,iPhone,1,700,01/12/19 19:09,"182 Walnut St, Los Angeles, CA 90001" +144138,Apple Airpods Headphones,1,150,01/28/19 21:10,"70 Sunset St, San Francisco, CA 94016" +144139,Wired Headphones,1,11.99,01/11/19 19:45,"246 6th St, New York City, NY 10001" +144140,AA Batteries (4-pack),1,3.84,01/29/19 12:52,"880 Ridge St, San Francisco, CA 94016" +144141,AA Batteries (4-pack),1,3.84,01/16/19 10:45,"161 Ridge St, Portland, OR 97035" +144142,Wired Headphones,1,11.99,01/21/19 10:49,"387 Washington St, Seattle, WA 98101" +144143,USB-C Charging Cable,1,11.95,01/13/19 09:00,"238 Lincoln St, Austin, TX 73301" +144144,Apple Airpods Headphones,1,150,01/10/19 16:54,"979 Lake St, Seattle, WA 98101" +144145,Bose SoundSport Headphones,1,99.99,01/06/19 23:50,"184 Highland St, Austin, TX 73301" +144146,Bose SoundSport Headphones,1,99.99,01/22/19 00:05,"586 Spruce St, Austin, TX 73301" +144147,AAA Batteries (4-pack),2,2.99,01/30/19 13:10,"438 Cherry St, Atlanta, GA 30301" +144148,Macbook Pro Laptop,1,1700,01/24/19 23:57,"337 Wilson St, Seattle, WA 98101" +144149,Google Phone,1,600,01/03/19 11:14,"24 Washington St, Austin, TX 73301" +144150,Bose SoundSport Headphones,1,99.99,01/12/19 00:44,"582 Highland St, Atlanta, GA 30301" +144151,Google Phone,1,600,01/11/19 23:35,"282 Willow St, San Francisco, CA 94016" +144152,Wired Headphones,1,11.99,01/25/19 20:13,"97 Spruce St, Los Angeles, CA 90001" +144153,Apple Airpods Headphones,1,150,01/12/19 19:14,"613 12th St, San Francisco, CA 94016" +144153,iPhone,1,700,01/12/19 19:14,"613 12th St, San Francisco, CA 94016" +144154,34in Ultrawide Monitor,1,379.99,01/10/19 17:46,"76 Forest St, New York City, NY 10001" +144155,Wired Headphones,1,11.99,01/25/19 13:40,"338 Park St, San Francisco, CA 94016" +144156,Lightning Charging Cable,1,14.95,01/06/19 14:33,"620 12th St, Austin, TX 73301" +144157,AA Batteries (4-pack),1,3.84,01/29/19 21:03,"580 Jefferson St, Portland, OR 97035" +144158,34in Ultrawide Monitor,1,379.99,01/16/19 19:36,"771 South St, Los Angeles, CA 90001" +144159,Lightning Charging Cable,1,14.95,01/09/19 08:41,"165 5th St, Los Angeles, CA 90001" +144160,Wired Headphones,1,11.99,01/19/19 14:06,"225 Sunset St, New York City, NY 10001" +144161,USB-C Charging Cable,2,11.95,01/20/19 20:30,"335 11th St, Boston, MA 02215" +144162,Wired Headphones,1,11.99,01/03/19 22:05,"863 Pine St, Dallas, TX 75001" +144163,Lightning Charging Cable,1,14.95,01/29/19 10:05,"345 Pine St, Los Angeles, CA 90001" +144164,20in Monitor,1,109.99,01/25/19 19:38,"739 Main St, Seattle, WA 98101" +144165,34in Ultrawide Monitor,1,379.99,01/17/19 10:10,"45 West St, Boston, MA 02215" +144166,Lightning Charging Cable,1,14.95,01/20/19 20:00,"792 Willow St, San Francisco, CA 94016" +144167,iPhone,1,700,01/02/19 10:58,"385 Highland St, San Francisco, CA 94016" +144167,Wired Headphones,1,11.99,01/02/19 10:58,"385 Highland St, San Francisco, CA 94016" +144168,Wired Headphones,1,11.99,01/04/19 17:14,"956 River St, Los Angeles, CA 90001" +144169,USB-C Charging Cable,1,11.95,01/26/19 11:42,"221 1st St, Austin, TX 73301" +144170,20in Monitor,1,109.99,01/10/19 13:57,"919 River St, Atlanta, GA 30301" +144171,34in Ultrawide Monitor,1,379.99,01/06/19 03:15,"855 7th St, Boston, MA 02215" +144172,ThinkPad Laptop,1,999.99,01/26/19 19:04,"799 Lincoln St, San Francisco, CA 94016" +,,,,, +144173,AAA Batteries (4-pack),1,2.99,01/13/19 09:25,"727 Adams St, San Francisco, CA 94016" +144174,Google Phone,1,600,01/17/19 05:31,"180 River St, San Francisco, CA 94016" +144175,USB-C Charging Cable,1,11.95,01/26/19 21:52,"831 Cherry St, Seattle, WA 98101" +144176,27in 4K Gaming Monitor,1,389.99,01/12/19 00:08,"349 River St, New York City, NY 10001" +144177,AAA Batteries (4-pack),2,2.99,01/10/19 21:27,"947 9th St, San Francisco, CA 94016" +144178,27in 4K Gaming Monitor,1,389.99,01/14/19 12:51,"613 7th St, Portland, OR 97035" +144179,Google Phone,1,600,01/03/19 13:13,"632 Spruce St, Portland, OR 97035" +144180,27in FHD Monitor,1,149.99,01/24/19 00:14,"805 8th St, Los Angeles, CA 90001" +144181,Wired Headphones,1,11.99,01/31/19 22:30,"369 Ridge St, Boston, MA 02215" +144182,Bose SoundSport Headphones,1,99.99,01/27/19 22:14,"490 Johnson St, Boston, MA 02215" +144183,Apple Airpods Headphones,1,150,01/18/19 19:17,"248 1st St, Dallas, TX 75001" +144184,AAA Batteries (4-pack),2,2.99,01/04/19 13:19,"245 Dogwood St, San Francisco, CA 94016" +144185,LG Washing Machine,1,600.0,01/04/19 10:54,"254 Maple St, Los Angeles, CA 90001" +144186,Wired Headphones,1,11.99,01/04/19 20:24,"728 1st St, New York City, NY 10001" +144187,AAA Batteries (4-pack),1,2.99,01/02/19 10:38,"875 Wilson St, New York City, NY 10001" +144188,27in 4K Gaming Monitor,1,389.99,01/24/19 20:33,"555 Cherry St, Portland, OR 97035" +144189,AA Batteries (4-pack),1,3.84,01/31/19 18:14,"438 Johnson St, Atlanta, GA 30301" +144190,Apple Airpods Headphones,1,150,01/22/19 10:28,"11 Madison St, Dallas, TX 75001" +144191,Lightning Charging Cable,1,14.95,01/25/19 18:18,"650 Adams St, Austin, TX 73301" +144192,AA Batteries (4-pack),2,3.84,01/11/19 18:02,"307 Dogwood St, New York City, NY 10001" +144193,USB-C Charging Cable,1,11.95,01/04/19 23:52,"116 Willow St, San Francisco, CA 94016" +144194,Wired Headphones,1,11.99,01/16/19 11:34,"766 Highland St, New York City, NY 10001" +144195,Bose SoundSport Headphones,1,99.99,01/03/19 18:33,"765 Walnut St, Boston, MA 02215" +144196,ThinkPad Laptop,1,999.99,01/08/19 15:10,"192 Madison St, New York City, NY 10001" +144197,Lightning Charging Cable,1,14.95,01/07/19 13:26,"961 Madison St, Dallas, TX 75001" +144198,AAA Batteries (4-pack),1,2.99,01/01/19 21:52,"271 5th St, Portland, OR 97035" +144199,USB-C Charging Cable,1,11.95,01/07/19 20:07,"158 9th St, Boston, MA 02215" +144200,Lightning Charging Cable,1,14.95,01/23/19 02:42,"653 Main St, Portland, OR 97035" +144201,Lightning Charging Cable,1,14.95,01/31/19 23:20,"788 Willow St, San Francisco, CA 94016" +144202,USB-C Charging Cable,1,11.95,01/20/19 17:23,"67 Willow St, San Francisco, CA 94016" +144203,iPhone,1,700,01/23/19 01:18,"524 Center St, New York City, NY 10001" +144204,Bose SoundSport Headphones,1,99.99,01/27/19 21:43,"223 Jefferson St, San Francisco, CA 94016" +144205,ThinkPad Laptop,1,999.99,01/17/19 22:28,"690 Chestnut St, New York City, NY 10001" +144206,AAA Batteries (4-pack),3,2.99,01/08/19 11:31,"242 Cedar St, Dallas, TX 75001" +144207,AA Batteries (4-pack),1,3.84,01/15/19 16:08,"433 Lincoln St, Los Angeles, CA 90001" +144208,Wired Headphones,1,11.99,01/28/19 14:17,"83 River St, Boston, MA 02215" +144209,AAA Batteries (4-pack),1,2.99,01/15/19 20:15,"238 Sunset St, San Francisco, CA 94016" +144210,USB-C Charging Cable,1,11.95,01/15/19 19:27,"235 8th St, San Francisco, CA 94016" +144211,Vareebadd Phone,1,400,01/27/19 20:49,"657 Hickory St, New York City, NY 10001" +144212,AAA Batteries (4-pack),5,2.99,01/06/19 19:07,"761 Cherry St, Portland, OR 97035" +144213,Apple Airpods Headphones,1,150,01/14/19 08:15,"809 14th St, Boston, MA 02215" +144214,Apple Airpods Headphones,1,150,01/20/19 14:47,"126 Washington St, Boston, MA 02215" +144215,iPhone,1,700,01/03/19 04:50,"551 Cherry St, San Francisco, CA 94016" +144216,AA Batteries (4-pack),1,3.84,01/01/19 18:37,"867 Pine St, Portland, OR 97035" +144217,Lightning Charging Cable,1,14.95,01/16/19 09:54,"881 Park St, Los Angeles, CA 90001" +144218,AAA Batteries (4-pack),2,2.99,01/26/19 19:25,"426 12th St, Austin, TX 73301" +144219,ThinkPad Laptop,1,999.99,01/23/19 19:21,"253 Wilson St, San Francisco, CA 94016" +144220,Apple Airpods Headphones,1,150,01/23/19 19:53,"703 Highland St, San Francisco, CA 94016" +144221,Flatscreen TV,1,300,01/16/19 04:15,"53 North St, New York City, NY 10001" +144222,AA Batteries (4-pack),1,3.84,01/31/19 19:08,"932 Johnson St, Boston, MA 02215" +144223,Google Phone,1,600,01/28/19 12:39,"515 Hill St, Atlanta, GA 30301" +144223,USB-C Charging Cable,1,11.95,01/28/19 12:39,"515 Hill St, Atlanta, GA 30301" +144224,34in Ultrawide Monitor,1,379.99,01/04/19 17:32,"449 Lakeview St, New York City, NY 10001" +144225,USB-C Charging Cable,1,11.95,01/19/19 18:52,"563 6th St, New York City, NY 10001" +144226,Wired Headphones,2,11.99,01/30/19 10:52,"155 Highland St, San Francisco, CA 94016" +144227,Apple Airpods Headphones,1,150,01/05/19 12:26,"498 Johnson St, San Francisco, CA 94016" +144228,AA Batteries (4-pack),2,3.84,01/03/19 16:38,"227 Lincoln St, San Francisco, CA 94016" +144229,Apple Airpods Headphones,1,150,01/24/19 22:57,"918 9th St, Los Angeles, CA 90001" +144230,AA Batteries (4-pack),1,3.84,01/24/19 18:24,"546 Elm St, Los Angeles, CA 90001" +144231,Vareebadd Phone,1,400,01/19/19 13:14,"247 Elm St, Dallas, TX 75001" +144232,AA Batteries (4-pack),1,3.84,01/10/19 18:59,"672 4th St, Dallas, TX 75001" +144233,USB-C Charging Cable,2,11.95,01/29/19 12:59,"627 10th St, San Francisco, CA 94016" +144234,USB-C Charging Cable,1,11.95,01/02/19 18:25,"32 Dogwood St, Seattle, WA 98101" +144235,27in FHD Monitor,1,149.99,01/18/19 10:59,"868 Cedar St, Boston, MA 02215" +144236,Wired Headphones,1,11.99,01/07/19 18:47,"301 4th St, Los Angeles, CA 90001" +144237,Vareebadd Phone,1,400,01/07/19 13:04,"189 9th St, Austin, TX 73301" +144238,Google Phone,1,600,01/06/19 12:37,"7 Meadow St, Atlanta, GA 30301" +144239,AA Batteries (4-pack),1,3.84,01/22/19 11:24,"840 Jackson St, San Francisco, CA 94016" +144240,27in FHD Monitor,1,149.99,01/09/19 11:26,"855 Lincoln St, San Francisco, CA 94016" +144241,Lightning Charging Cable,1,14.95,01/17/19 17:00,"701 Highland St, Boston, MA 02215" +144242,USB-C Charging Cable,2,11.95,01/05/19 23:23,"801 Madison St, New York City, NY 10001" +144243,Bose SoundSport Headphones,1,99.99,01/28/19 18:50,"963 Meadow St, Seattle, WA 98101" +144244,AAA Batteries (4-pack),1,2.99,01/21/19 10:09,"641 Lincoln St, San Francisco, CA 94016" +144245,Flatscreen TV,1,300,01/08/19 13:16,"842 Madison St, Atlanta, GA 30301" +144246,ThinkPad Laptop,1,999.99,01/27/19 20:39,"243 Willow St, Los Angeles, CA 90001" +,,,,, +144247,USB-C Charging Cable,1,11.95,01/30/19 20:27,"132 12th St, New York City, NY 10001" +144248,Wired Headphones,1,11.99,01/10/19 21:28,"874 6th St, Los Angeles, CA 90001" +144249,Bose SoundSport Headphones,1,99.99,01/23/19 02:34,"190 Pine St, San Francisco, CA 94016" +144250,Flatscreen TV,1,300,01/23/19 10:58,"739 Hill St, Seattle, WA 98101" +144251,AAA Batteries (4-pack),1,2.99,01/21/19 20:57,"349 1st St, Los Angeles, CA 90001" +144252,AAA Batteries (4-pack),1,2.99,01/10/19 15:27,"69 Dogwood St, New York City, NY 10001" +144253,27in 4K Gaming Monitor,1,389.99,01/28/19 18:12,"482 Meadow St, Atlanta, GA 30301" +144254,iPhone,1,700,01/11/19 23:28,"34 Jefferson St, Los Angeles, CA 90001" +144255,USB-C Charging Cable,1,11.95,01/02/19 23:47,"762 Highland St, Los Angeles, CA 90001" +144256,USB-C Charging Cable,1,11.95,01/09/19 14:41,"817 Forest St, Austin, TX 73301" +144257,USB-C Charging Cable,2,11.95,01/11/19 02:02,"642 14th St, San Francisco, CA 94016" +144258,Wired Headphones,1,11.99,01/22/19 10:42,"885 Adams St, Austin, TX 73301" +144259,AA Batteries (4-pack),2,3.84,01/09/19 05:45,"496 Lakeview St, New York City, NY 10001" +144260,Wired Headphones,1,11.99,01/06/19 17:25,"572 West St, Atlanta, GA 30301" +144261,Apple Airpods Headphones,1,150,01/19/19 18:08,"156 Forest St, Los Angeles, CA 90001" +144262,AA Batteries (4-pack),1,3.84,01/09/19 10:08,"308 Main St, Austin, TX 73301" +144262,Bose SoundSport Headphones,1,99.99,01/09/19 10:08,"308 Main St, Austin, TX 73301" +144263,USB-C Charging Cable,1,11.95,01/14/19 16:42,"196 Pine St, San Francisco, CA 94016" +144264,Wired Headphones,1,11.99,01/12/19 11:36,"580 Lakeview St, Los Angeles, CA 90001" +144265,34in Ultrawide Monitor,1,379.99,01/12/19 15:58,"429 Johnson St, San Francisco, CA 94016" +144266,LG Dryer,1,600.0,01/25/19 20:38,"989 North St, Dallas, TX 75001" +144267,Apple Airpods Headphones,1,150,01/15/19 13:56,"439 7th St, New York City, NY 10001" +144268,AAA Batteries (4-pack),2,2.99,01/25/19 13:22,"40 9th St, San Francisco, CA 94016" +144269,ThinkPad Laptop,1,999.99,01/02/19 08:16,"846 12th St, Dallas, TX 75001" +144270,AAA Batteries (4-pack),1,2.99,01/23/19 07:01,"118 Sunset St, Atlanta, GA 30301" +144271,Macbook Pro Laptop,1,1700,01/15/19 11:10,"17 9th St, San Francisco, CA 94016" +144272,AAA Batteries (4-pack),2,2.99,01/17/19 13:18,"898 2nd St, Austin, TX 73301" +144272,Flatscreen TV,1,300,01/17/19 13:18,"898 2nd St, Austin, TX 73301" +144273,Google Phone,1,600,01/31/19 10:36,"235 Ridge St, San Francisco, CA 94016" +144274,Lightning Charging Cable,1,14.95,01/23/19 12:56,"573 6th St, New York City, NY 10001" +144275,AA Batteries (4-pack),2,3.84,01/08/19 18:43,"315 11th St, Boston, MA 02215" +144276,Lightning Charging Cable,1,14.95,01/30/19 19:16,"817 Jefferson St, Dallas, TX 75001" +144277,27in FHD Monitor,1,149.99,01/21/19 17:45,"538 4th St, New York City, NY 10001" +144278,USB-C Charging Cable,1,11.95,01/31/19 19:40,"152 Wilson St, San Francisco, CA 94016" +144279,Macbook Pro Laptop,1,1700,01/28/19 10:00,"526 2nd St, San Francisco, CA 94016" +144280,Lightning Charging Cable,1,14.95,01/11/19 20:29,"323 Lincoln St, San Francisco, CA 94016" +144281,34in Ultrawide Monitor,1,379.99,01/25/19 19:49,"860 11th St, Atlanta, GA 30301" +144282,Lightning Charging Cable,1,14.95,01/09/19 20:58,"485 Pine St, Los Angeles, CA 90001" +144283,Lightning Charging Cable,1,14.95,01/13/19 19:53,"725 Lakeview St, Boston, MA 02215" +144284,USB-C Charging Cable,1,11.95,01/14/19 11:19,"397 5th St, Los Angeles, CA 90001" +144285,AA Batteries (4-pack),1,3.84,01/01/19 20:49,"75 7th St, Los Angeles, CA 90001" +144286,USB-C Charging Cable,1,11.95,01/19/19 19:43,"829 6th St, Austin, TX 73301" +144287,AAA Batteries (4-pack),1,2.99,01/14/19 19:52,"843 Jackson St, New York City, NY 10001" +144288,ThinkPad Laptop,1,999.99,01/03/19 12:17,"876 4th St, Seattle, WA 98101" +144289,Apple Airpods Headphones,1,150,01/04/19 08:10,"337 Pine St, Boston, MA 02215" +144290,AAA Batteries (4-pack),3,2.99,01/10/19 01:41,"405 Pine St, New York City, NY 10001" +144291,Flatscreen TV,1,300,01/25/19 14:01,"524 Elm St, Dallas, TX 75001" +144292,27in FHD Monitor,1,149.99,01/12/19 19:08,"978 Elm St, Boston, MA 02215" +144293,USB-C Charging Cable,1,11.95,01/28/19 08:04,"946 14th St, New York City, NY 10001" +144294,AA Batteries (4-pack),1,3.84,01/13/19 15:32,"93 Walnut St, Los Angeles, CA 90001" +144295,AA Batteries (4-pack),1,3.84,01/02/19 20:18,"179 6th St, New York City, NY 10001" +144296,27in FHD Monitor,1,149.99,01/18/19 15:10,"124 9th St, Los Angeles, CA 90001" +144297,AAA Batteries (4-pack),1,2.99,01/08/19 17:29,"371 Center St, New York City, NY 10001" +144298,USB-C Charging Cable,1,11.95,01/25/19 01:24,"923 Forest St, Los Angeles, CA 90001" +144299,Macbook Pro Laptop,1,1700,01/17/19 12:02,"720 Jefferson St, Atlanta, GA 30301" +144300,Bose SoundSport Headphones,1,99.99,01/22/19 12:09,"944 Cedar St, New York City, NY 10001" +144301,Flatscreen TV,1,300,01/21/19 14:18,"137 Highland St, Los Angeles, CA 90001" +144302,AAA Batteries (4-pack),1,2.99,01/19/19 10:53,"68 Walnut St, San Francisco, CA 94016" +144303,Lightning Charging Cable,1,14.95,01/24/19 09:41,"386 Dogwood St, New York City, NY 10001" +144304,20in Monitor,1,109.99,01/11/19 17:15,"265 Center St, Portland, OR 97035" +144305,Lightning Charging Cable,1,14.95,01/18/19 15:56,"942 Walnut St, Los Angeles, CA 90001" +144306,USB-C Charging Cable,2,11.95,01/24/19 11:42,"644 Sunset St, Dallas, TX 75001" +144307,Google Phone,1,600,01/07/19 09:53,"575 Ridge St, Portland, OR 97035" +144307,Bose SoundSport Headphones,2,99.99,01/07/19 09:53,"575 Ridge St, Portland, OR 97035" +144308,27in FHD Monitor,1,149.99,01/08/19 13:35,"131 6th St, Boston, MA 02215" +144309,Lightning Charging Cable,1,14.95,01/07/19 13:20,"334 Pine St, New York City, NY 10001" +144310,Bose SoundSport Headphones,1,99.99,01/02/19 21:20,"326 Pine St, San Francisco, CA 94016" +144311,Apple Airpods Headphones,1,150,01/02/19 16:55,"256 8th St, Los Angeles, CA 90001" +144312,AA Batteries (4-pack),2,3.84,01/09/19 01:45,"442 10th St, New York City, NY 10001" +144313,Apple Airpods Headphones,1,150,01/15/19 23:22,"947 Cedar St, Boston, MA 02215" +144314,Lightning Charging Cable,1,14.95,01/16/19 11:34,"774 9th St, Dallas, TX 75001" +144315,AA Batteries (4-pack),1,3.84,01/19/19 04:19,"914 11th St, Los Angeles, CA 90001" +144316,34in Ultrawide Monitor,1,379.99,01/30/19 17:34,"89 River St, Boston, MA 02215" +144317,LG Dryer,1,600.0,01/14/19 19:30,"312 Spruce St, Los Angeles, CA 90001" +144318,AAA Batteries (4-pack),1,2.99,01/31/19 19:42,"36 Washington St, Dallas, TX 75001" +144319,USB-C Charging Cable,1,11.95,01/26/19 16:44,"791 Pine St, Seattle, WA 98101" +144320,Bose SoundSport Headphones,1,99.99,01/13/19 20:24,"278 Willow St, Portland, OR 97035" +144321,Apple Airpods Headphones,1,150,01/01/19 08:53,"195 1st St, Atlanta, GA 30301" +144322,Google Phone,1,600,01/01/19 10:37,"732 Park St, Los Angeles, CA 90001" +144323,27in 4K Gaming Monitor,1,389.99,01/28/19 18:18,"347 Hill St, Austin, TX 73301" +144324,34in Ultrawide Monitor,1,379.99,01/01/19 15:31,"188 Meadow St, San Francisco, CA 94016" +144325,Wired Headphones,1,11.99,01/24/19 18:11,"2 Church St, Los Angeles, CA 90001" +144326,USB-C Charging Cable,1,11.95,01/13/19 15:11,"26 Forest St, Los Angeles, CA 90001" +144327,Wired Headphones,1,11.99,01/31/19 17:25,"916 Highland St, Austin, TX 73301" +144328,ThinkPad Laptop,1,999.99,01/21/19 09:09,"515 Forest St, San Francisco, CA 94016" +144329,Google Phone,1,600,01/13/19 16:21,"608 11th St, Boston, MA 02215" +144330,Lightning Charging Cable,1,14.95,01/18/19 17:12,"245 14th St, Seattle, WA 98101" +144331,Apple Airpods Headphones,1,150,01/05/19 14:45,"828 Hill St, Los Angeles, CA 90001" +144332,Lightning Charging Cable,1,14.95,01/03/19 19:30,"169 Johnson St, Atlanta, GA 30301" +144333,Google Phone,1,600,01/31/19 16:50,"108 West St, Atlanta, GA 30301" +144334,Wired Headphones,1,11.99,01/24/19 17:28,"126 Johnson St, San Francisco, CA 94016" +144335,USB-C Charging Cable,1,11.95,01/31/19 14:00,"338 Hickory St, Los Angeles, CA 90001" +144336,Bose SoundSport Headphones,1,99.99,01/21/19 17:54,"472 12th St, San Francisco, CA 94016" +144337,Lightning Charging Cable,1,14.95,01/15/19 19:08,"884 Willow St, Los Angeles, CA 90001" +144338,Macbook Pro Laptop,1,1700,01/02/19 16:54,"218 Meadow St, Los Angeles, CA 90001" +144339,USB-C Charging Cable,2,11.95,01/21/19 15:39,"974 Lincoln St, Los Angeles, CA 90001" +144340,iPhone,1,700,01/18/19 20:02,"425 Lakeview St, Los Angeles, CA 90001" +144340,Lightning Charging Cable,1,14.95,01/18/19 20:02,"425 Lakeview St, Los Angeles, CA 90001" +144341,Apple Airpods Headphones,1,150,01/23/19 06:38,"404 Pine St, Dallas, TX 75001" +144342,USB-C Charging Cable,1,11.95,01/06/19 16:21,"276 5th St, San Francisco, CA 94016" +144343,AA Batteries (4-pack),1,3.84,01/01/19 19:43,"243 Lakeview St, San Francisco, CA 94016" +144344,AA Batteries (4-pack),2,3.84,01/01/19 15:05,"332 Lakeview St, San Francisco, CA 94016" +144345,Google Phone,1,600,01/02/19 22:46,"368 1st St, San Francisco, CA 94016" +144345,Bose SoundSport Headphones,1,99.99,01/02/19 22:46,"368 1st St, San Francisco, CA 94016" +144346,Lightning Charging Cable,1,14.95,01/18/19 21:12,"383 Johnson St, San Francisco, CA 94016" +144347,USB-C Charging Cable,1,11.95,01/06/19 09:59,"423 Lakeview St, Boston, MA 02215" +144347,AA Batteries (4-pack),1,3.84,01/06/19 09:59,"423 Lakeview St, Boston, MA 02215" +144348,Google Phone,1,600,01/07/19 12:36,"595 Willow St, Portland, OR 97035" +144349,Lightning Charging Cable,1,14.95,01/10/19 13:23,"413 6th St, Boston, MA 02215" +144350,27in 4K Gaming Monitor,1,389.99,01/29/19 22:29,"524 Chestnut St, Los Angeles, CA 90001" +144351,Apple Airpods Headphones,1,150,01/14/19 12:37,"677 Adams St, San Francisco, CA 94016" +144352,USB-C Charging Cable,1,11.95,01/26/19 00:19,"473 Meadow St, Atlanta, GA 30301" +144353,Lightning Charging Cable,1,14.95,01/06/19 06:00,"859 Cedar St, New York City, NY 10001" +144354,34in Ultrawide Monitor,1,379.99,01/02/19 14:11,"567 Dogwood St, Portland, OR 97035" +144355,USB-C Charging Cable,1,11.95,01/29/19 07:48,"763 13th St, Portland, OR 97035" +144356,AAA Batteries (4-pack),3,2.99,01/08/19 19:52,"791 Meadow St, Portland, OR 97035" +144357,Wired Headphones,1,11.99,01/24/19 19:17,"954 2nd St, San Francisco, CA 94016" +144358,Vareebadd Phone,1,400,01/20/19 11:15,"355 7th St, Dallas, TX 75001" +144359,34in Ultrawide Monitor,1,379.99,01/01/19 16:55,"961 Adams St, Austin, TX 73301" +144359,USB-C Charging Cable,1,11.95,01/01/19 16:55,"961 Adams St, Austin, TX 73301" +144360,Lightning Charging Cable,1,14.95,01/01/19 11:19,"731 2nd St, San Francisco, CA 94016" +144361,AA Batteries (4-pack),1,3.84,01/03/19 05:30,"986 8th St, San Francisco, CA 94016" +144362,Lightning Charging Cable,1,14.95,01/26/19 17:16,"511 Park St, Atlanta, GA 30301" +144363,Apple Airpods Headphones,1,150,01/07/19 20:29,"755 12th St, Dallas, TX 75001" +144364,USB-C Charging Cable,2,11.95,01/15/19 19:37,"62 Lakeview St, New York City, NY 10001" +144365,Bose SoundSport Headphones,1,99.99,01/15/19 15:12,"359 13th St, Seattle, WA 98101" +144366,Apple Airpods Headphones,1,150,01/18/19 19:57,"440 Washington St, Portland, OR 97035" +144367,Lightning Charging Cable,1,14.95,01/03/19 21:15,"919 Jackson St, Seattle, WA 98101" +144368,AA Batteries (4-pack),4,3.84,01/30/19 11:19,"184 Madison St, Boston, MA 02215" +144369,Google Phone,1,600,01/11/19 14:03,"455 West St, Boston, MA 02215" +144369,Bose SoundSport Headphones,1,99.99,01/11/19 14:03,"455 West St, Boston, MA 02215" +144370,Wired Headphones,1,11.99,01/27/19 19:33,"85 9th St, Los Angeles, CA 90001" +144371,AAA Batteries (4-pack),1,2.99,01/26/19 18:04,"630 Sunset St, Atlanta, GA 30301" +144372,Bose SoundSport Headphones,1,99.99,01/09/19 20:12,"474 Cherry St, Austin, TX 73301" +144373,AA Batteries (4-pack),1,3.84,01/08/19 09:17,"647 Forest St, Austin, TX 73301" +144374,AAA Batteries (4-pack),1,2.99,01/21/19 14:16,"798 Lake St, Los Angeles, CA 90001" +144374,Google Phone,1,600,01/21/19 14:16,"798 Lake St, Los Angeles, CA 90001" +144375,USB-C Charging Cable,1,11.95,01/14/19 18:36,"381 Maple St, Dallas, TX 75001" +144376,USB-C Charging Cable,1,11.95,01/19/19 17:42,"924 Washington St, San Francisco, CA 94016" +144377,Bose SoundSport Headphones,1,99.99,01/14/19 09:59,"95 12th St, New York City, NY 10001" +144378,USB-C Charging Cable,1,11.95,01/25/19 11:11,"828 Cherry St, Los Angeles, CA 90001" +144379,Wired Headphones,1,11.99,01/24/19 14:47,"938 6th St, Austin, TX 73301" +144380,Bose SoundSport Headphones,1,99.99,01/07/19 14:59,"164 Johnson St, Los Angeles, CA 90001" +144381,Bose SoundSport Headphones,1,99.99,01/13/19 10:46,"29 4th St, New York City, NY 10001" +144382,Apple Airpods Headphones,1,150,01/13/19 16:23,"674 Highland St, San Francisco, CA 94016" +144383,27in FHD Monitor,1,149.99,01/28/19 09:01,"841 Ridge St, Portland, OR 97035" +144384,AA Batteries (4-pack),2,3.84,01/14/19 19:38,"323 Madison St, Boston, MA 02215" +144385,Apple Airpods Headphones,1,150,01/07/19 13:05,"82 Pine St, San Francisco, CA 94016" +144386,Flatscreen TV,1,300,01/11/19 07:49,"109 8th St, Atlanta, GA 30301" +144387,AAA Batteries (4-pack),1,2.99,01/02/19 00:17,"776 1st St, New York City, NY 10001" +144388,Lightning Charging Cable,1,14.95,01/01/19 10:21,"931 13th St, Atlanta, GA 30301" +144389,Apple Airpods Headphones,1,150,01/30/19 19:10,"850 Wilson St, Boston, MA 02215" +144390,AA Batteries (4-pack),1,3.84,01/04/19 12:19,"41 Walnut St, San Francisco, CA 94016" +144391,Bose SoundSport Headphones,1,99.99,01/09/19 21:28,"197 Meadow St, San Francisco, CA 94016" +144392,Macbook Pro Laptop,1,1700,01/04/19 11:23,"552 Madison St, Dallas, TX 75001" +144393,Macbook Pro Laptop,1,1700,01/13/19 11:21,"76 Pine St, Atlanta, GA 30301" +144394,AA Batteries (4-pack),1,3.84,01/08/19 10:53,"135 Cherry St, Boston, MA 02215" +144395,Lightning Charging Cable,1,14.95,01/02/19 19:45,"615 Highland St, Seattle, WA 98101" +144396,USB-C Charging Cable,1,11.95,01/04/19 02:14,"54 Church St, Dallas, TX 75001" +144397,Lightning Charging Cable,1,14.95,01/27/19 11:06,"669 14th St, Austin, TX 73301" +144398,AA Batteries (4-pack),1,3.84,01/08/19 12:54,"699 Jackson St, Los Angeles, CA 90001" +144399,Macbook Pro Laptop,1,1700,01/30/19 16:21,"89 Lake St, San Francisco, CA 94016" +144400,27in 4K Gaming Monitor,1,389.99,01/20/19 19:20,"519 Forest St, Atlanta, GA 30301" +144401,Flatscreen TV,1,300,01/29/19 08:00,"895 Spruce St, Seattle, WA 98101" +144402,Macbook Pro Laptop,1,1700,01/26/19 20:37,"338 Lake St, San Francisco, CA 94016" +144403,USB-C Charging Cable,1,11.95,01/05/19 11:57,"71 13th St, Austin, TX 73301" +144404,Google Phone,1,600,01/10/19 15:29,"524 6th St, Boston, MA 02215" +144405,iPhone,1,700,01/30/19 12:47,"971 Church St, Los Angeles, CA 90001" +144406,ThinkPad Laptop,1,999.99,01/06/19 21:00,"495 10th St, Austin, TX 73301" +144407,Wired Headphones,1,11.99,01/31/19 10:39,"295 Johnson St, San Francisco, CA 94016" +144408,Bose SoundSport Headphones,1,99.99,01/14/19 21:45,"861 Spruce St, New York City, NY 10001" +144409,Lightning Charging Cable,1,14.95,01/11/19 14:38,"448 2nd St, San Francisco, CA 94016" +144410,Wired Headphones,1,11.99,01/22/19 18:47,"664 6th St, San Francisco, CA 94016" +144411,AA Batteries (4-pack),2,3.84,01/25/19 16:51,"225 11th St, Los Angeles, CA 90001" +,,,,, +144412,Apple Airpods Headphones,1,150,01/14/19 17:41,"148 Dogwood St, San Francisco, CA 94016" +144413,Lightning Charging Cable,1,14.95,01/13/19 15:44,"668 4th St, Dallas, TX 75001" +144414,Flatscreen TV,1,300,01/22/19 12:38,"388 4th St, San Francisco, CA 94016" +144415,ThinkPad Laptop,1,999.99,01/23/19 20:22,"980 Ridge St, San Francisco, CA 94016" +144416,AA Batteries (4-pack),2,3.84,01/20/19 14:12,"658 Elm St, San Francisco, CA 94016" +144417,34in Ultrawide Monitor,1,379.99,01/18/19 19:51,"115 10th St, Atlanta, GA 30301" +144418,34in Ultrawide Monitor,1,379.99,01/31/19 16:55,"906 Park St, Atlanta, GA 30301" +144419,Apple Airpods Headphones,1,150,01/28/19 18:24,"251 Washington St, Portland, ME 04101" +144420,Bose SoundSport Headphones,1,99.99,01/10/19 21:15,"555 Sunset St, Dallas, TX 75001" +144421,Apple Airpods Headphones,1,150,01/24/19 10:34,"828 Center St, Atlanta, GA 30301" +144422,ThinkPad Laptop,1,999.99,01/14/19 21:32,"773 Cherry St, New York City, NY 10001" +144423,Flatscreen TV,1,300,01/14/19 16:51,"622 Ridge St, Portland, OR 97035" +144424,Bose SoundSport Headphones,1,99.99,01/25/19 18:47,"304 Willow St, San Francisco, CA 94016" +144425,Google Phone,1,600,01/18/19 08:34,"303 Lakeview St, San Francisco, CA 94016" +144425,USB-C Charging Cable,1,11.95,01/18/19 08:34,"303 Lakeview St, San Francisco, CA 94016" +144426,Wired Headphones,1,11.99,01/15/19 11:31,"561 1st St, Los Angeles, CA 90001" +144427,Bose SoundSport Headphones,1,99.99,01/15/19 18:39,"130 Adams St, Seattle, WA 98101" +144428,Flatscreen TV,1,300,01/10/19 16:18,"330 Cedar St, San Francisco, CA 94016" +144429,Bose SoundSport Headphones,1,99.99,01/05/19 22:36,"524 Sunset St, Seattle, WA 98101" +144430,34in Ultrawide Monitor,1,379.99,01/11/19 09:28,"237 9th St, San Francisco, CA 94016" +144431,LG Washing Machine,1,600.0,01/09/19 10:26,"665 8th St, New York City, NY 10001" +144432,AAA Batteries (4-pack),1,2.99,01/18/19 19:12,"718 Spruce St, San Francisco, CA 94016" +144433,AAA Batteries (4-pack),1,2.99,01/26/19 13:13,"984 Elm St, Boston, MA 02215" +144434,Bose SoundSport Headphones,1,99.99,01/31/19 23:47,"823 5th St, Boston, MA 02215" +144435,27in 4K Gaming Monitor,1,389.99,01/20/19 09:37,"564 4th St, San Francisco, CA 94016" +144436,USB-C Charging Cable,1,11.95,01/29/19 20:09,"979 Church St, Portland, OR 97035" +144437,AAA Batteries (4-pack),1,2.99,01/07/19 09:31,"421 Walnut St, Dallas, TX 75001" +144438,AAA Batteries (4-pack),2,2.99,01/30/19 21:21,"151 Willow St, Atlanta, GA 30301" +144439,Wired Headphones,1,11.99,01/03/19 04:30,"505 Hill St, Atlanta, GA 30301" +144440,34in Ultrawide Monitor,1,379.99,01/02/19 22:36,"642 Hickory St, Los Angeles, CA 90001" +144441,Apple Airpods Headphones,1,150,01/22/19 11:13,"896 Forest St, Boston, MA 02215" +144442,Flatscreen TV,1,300,01/27/19 19:39,"151 Adams St, San Francisco, CA 94016" +144443,34in Ultrawide Monitor,1,379.99,01/18/19 08:29,"285 Dogwood St, San Francisco, CA 94016" +144444,Lightning Charging Cable,1,14.95,01/29/19 10:28,"832 12th St, San Francisco, CA 94016" +144445,USB-C Charging Cable,1,11.95,01/27/19 09:39,"981 Cherry St, Austin, TX 73301" +144446,20in Monitor,1,109.99,01/13/19 08:46,"452 4th St, Boston, MA 02215" +144447,LG Washing Machine,1,600.0,01/16/19 18:19,"594 Jackson St, New York City, NY 10001" +144448,AA Batteries (4-pack),1,3.84,01/26/19 13:08,"557 Center St, San Francisco, CA 94016" +144449,Bose SoundSport Headphones,1,99.99,01/04/19 00:20,"481 14th St, Los Angeles, CA 90001" +144450,Google Phone,1,600,01/28/19 12:41,"701 Main St, Boston, MA 02215" +144450,USB-C Charging Cable,1,11.95,01/28/19 12:41,"701 Main St, Boston, MA 02215" +144451,Apple Airpods Headphones,1,150,01/22/19 18:25,"120 9th St, Portland, OR 97035" +144452,USB-C Charging Cable,1,11.95,01/06/19 12:08,"797 10th St, Boston, MA 02215" +144453,iPhone,1,700,01/13/19 14:14,"712 14th St, New York City, NY 10001" +144454,Apple Airpods Headphones,1,150,01/14/19 13:18,"145 Meadow St, New York City, NY 10001" +144455,34in Ultrawide Monitor,1,379.99,01/21/19 11:13,"691 River St, Atlanta, GA 30301" +144456,USB-C Charging Cable,1,11.95,01/10/19 18:52,"988 Chestnut St, San Francisco, CA 94016" +144457,Lightning Charging Cable,1,14.95,01/08/19 18:32,"156 1st St, San Francisco, CA 94016" +144458,Macbook Pro Laptop,1,1700,01/21/19 10:30,"297 Spruce St, Boston, MA 02215" +144459,USB-C Charging Cable,1,11.95,01/26/19 19:14,"684 Johnson St, Austin, TX 73301" +144460,Bose SoundSport Headphones,1,99.99,01/06/19 23:51,"507 Lincoln St, San Francisco, CA 94016" +144461,AA Batteries (4-pack),2,3.84,01/11/19 13:48,"855 Chestnut St, San Francisco, CA 94016" +144462,34in Ultrawide Monitor,1,379.99,01/15/19 04:19,"669 Washington St, Los Angeles, CA 90001" +144463,Wired Headphones,1,11.99,01/15/19 16:56,"592 Adams St, Portland, ME 04101" +144464,Bose SoundSport Headphones,1,99.99,01/27/19 09:45,"654 West St, Los Angeles, CA 90001" +144465,ThinkPad Laptop,1,999.99,01/24/19 13:08,"869 Park St, Dallas, TX 75001" +144466,ThinkPad Laptop,1,999.99,01/08/19 16:59,"635 Walnut St, Austin, TX 73301" +144467,AA Batteries (4-pack),1,3.84,01/31/19 20:26,"21 Sunset St, Atlanta, GA 30301" +144468,LG Dryer,1,600.0,01/26/19 08:14,"807 9th St, Los Angeles, CA 90001" +144469,Wired Headphones,1,11.99,01/04/19 08:05,"537 10th St, San Francisco, CA 94016" +144470,Google Phone,1,600,01/08/19 10:48,"586 Center St, New York City, NY 10001" +144470,USB-C Charging Cable,1,11.95,01/08/19 10:48,"586 Center St, New York City, NY 10001" +144471,USB-C Charging Cable,1,11.95,01/29/19 03:55,"680 Main St, Portland, ME 04101" +144472,Wired Headphones,1,11.99,01/06/19 22:27,"761 8th St, Los Angeles, CA 90001" +144473,27in FHD Monitor,1,149.99,01/01/19 16:43,"11 Hill St, Boston, MA 02215" +144474,Google Phone,1,600,01/24/19 23:43,"408 14th St, San Francisco, CA 94016" +144474,Wired Headphones,1,11.99,01/24/19 23:43,"408 14th St, San Francisco, CA 94016" +144475,Apple Airpods Headphones,1,150,01/02/19 11:26,"550 4th St, New York City, NY 10001" +144476,AAA Batteries (4-pack),1,2.99,01/10/19 20:50,"141 Ridge St, Los Angeles, CA 90001" +144477,27in FHD Monitor,1,149.99,01/23/19 18:13,"599 Adams St, Seattle, WA 98101" +144477,ThinkPad Laptop,1,999.99,01/23/19 18:13,"599 Adams St, Seattle, WA 98101" +144478,27in 4K Gaming Monitor,1,389.99,01/13/19 13:16,"149 Wilson St, Los Angeles, CA 90001" +144479,AA Batteries (4-pack),1,3.84,01/18/19 16:35,"138 Spruce St, New York City, NY 10001" +144480,AAA Batteries (4-pack),3,2.99,01/01/19 16:16,"713 Washington St, New York City, NY 10001" +144481,Bose SoundSport Headphones,1,99.99,01/23/19 16:07,"174 Johnson St, San Francisco, CA 94016" +144482,USB-C Charging Cable,1,11.95,01/21/19 15:24,"261 Highland St, San Francisco, CA 94016" +144483,Google Phone,1,600,01/14/19 15:29,"406 Forest St, Dallas, TX 75001" +144484,Wired Headphones,1,11.99,01/18/19 14:01,"694 Jackson St, Atlanta, GA 30301" +144485,LG Dryer,1,600.0,01/05/19 14:39,"128 10th St, Los Angeles, CA 90001" +144486,AAA Batteries (4-pack),1,2.99,01/18/19 17:08,"424 7th St, Portland, OR 97035" +144487,Wired Headphones,1,11.99,01/02/19 21:07,"991 Pine St, Portland, OR 97035" +144488,Bose SoundSport Headphones,1,99.99,01/24/19 14:57,"785 Pine St, San Francisco, CA 94016" +144489,Wired Headphones,1,11.99,01/08/19 07:38,"914 Center St, Los Angeles, CA 90001" +144490,Lightning Charging Cable,1,14.95,01/31/19 13:45,"936 7th St, San Francisco, CA 94016" +144491,34in Ultrawide Monitor,1,379.99,01/20/19 22:40,"996 Walnut St, Boston, MA 02215" +144492,Apple Airpods Headphones,1,150,01/21/19 17:14,"204 7th St, Los Angeles, CA 90001" +144493,USB-C Charging Cable,1,11.95,01/26/19 07:44,"604 5th St, Boston, MA 02215" +144494,Flatscreen TV,1,300,01/03/19 20:59,"13 Meadow St, Los Angeles, CA 90001" +144495,AA Batteries (4-pack),2,3.84,01/13/19 21:01,"958 Johnson St, New York City, NY 10001" +144496,AA Batteries (4-pack),1,3.84,01/31/19 14:40,"940 Elm St, New York City, NY 10001" +144497,iPhone,1,700,01/13/19 20:14,"718 Walnut St, Dallas, TX 75001" +144498,AA Batteries (4-pack),1,3.84,01/23/19 10:14,"38 6th St, Los Angeles, CA 90001" +144499,USB-C Charging Cable,1,11.95,01/06/19 18:59,"259 Center St, San Francisco, CA 94016" +144500,Lightning Charging Cable,1,14.95,01/20/19 22:47,"233 Washington St, Atlanta, GA 30301" +144501,27in FHD Monitor,1,149.99,01/08/19 01:00,"528 Spruce St, Portland, OR 97035" +144502,AAA Batteries (4-pack),2,2.99,01/30/19 09:48,"824 River St, Los Angeles, CA 90001" +144503,Bose SoundSport Headphones,1,99.99,01/17/19 08:27,"886 Lakeview St, Seattle, WA 98101" +144504,ThinkPad Laptop,1,999.99,01/02/19 19:28,"873 8th St, Atlanta, GA 30301" +144505,Wired Headphones,1,11.99,01/05/19 09:34,"497 Sunset St, New York City, NY 10001" +144506,Lightning Charging Cable,1,14.95,01/03/19 14:43,"291 8th St, New York City, NY 10001" +144507,Wired Headphones,1,11.99,01/11/19 22:37,"91 Main St, Los Angeles, CA 90001" +144508,34in Ultrawide Monitor,1,379.99,01/22/19 04:08,"79 Lakeview St, New York City, NY 10001" +144509,Apple Airpods Headphones,1,150,01/30/19 13:00,"848 South St, Portland, ME 04101" +144510,USB-C Charging Cable,1,11.95,01/26/19 09:14,"576 Elm St, Boston, MA 02215" +144511,Bose SoundSport Headphones,1,99.99,01/12/19 20:13,"584 Dogwood St, Los Angeles, CA 90001" +144512,20in Monitor,1,109.99,01/14/19 10:15,"951 Forest St, Atlanta, GA 30301" +144513,AA Batteries (4-pack),1,3.84,01/08/19 21:49,"12 Cedar St, Boston, MA 02215" +144514,Lightning Charging Cable,1,14.95,01/02/19 04:21,"229 North St, Boston, MA 02215" +144515,AAA Batteries (4-pack),4,2.99,01/10/19 21:03,"225 8th St, Seattle, WA 98101" +144516,AAA Batteries (4-pack),2,2.99,01/24/19 02:28,"20 Main St, New York City, NY 10001" +144517,AAA Batteries (4-pack),1,2.99,01/21/19 13:05,"593 Walnut St, Los Angeles, CA 90001" +144518,34in Ultrawide Monitor,1,379.99,01/05/19 10:29,"875 6th St, Boston, MA 02215" +144519,Lightning Charging Cable,1,14.95,01/01/19 16:23,"25 South St, Los Angeles, CA 90001" +144520,20in Monitor,1,109.99,01/28/19 19:46,"374 Madison St, Atlanta, GA 30301" +144521,Wired Headphones,1,11.99,01/18/19 16:37,"507 7th St, New York City, NY 10001" +144522,Wired Headphones,1,11.99,01/10/19 19:41,"745 Pine St, Los Angeles, CA 90001" +144523,Google Phone,1,600,01/05/19 16:57,"336 4th St, Dallas, TX 75001" +144524,Wired Headphones,1,11.99,01/22/19 12:23,"273 Chestnut St, New York City, NY 10001" +144525,USB-C Charging Cable,1,11.95,01/16/19 12:53,"335 Maple St, Los Angeles, CA 90001" +144526,ThinkPad Laptop,1,999.99,01/06/19 07:25,"687 North St, Atlanta, GA 30301" +144527,Flatscreen TV,1,300,01/23/19 22:27,"641 7th St, New York City, NY 10001" +144528,AAA Batteries (4-pack),2,2.99,01/04/19 12:24,"683 7th St, Los Angeles, CA 90001" +144529,Apple Airpods Headphones,1,150,01/25/19 07:51,"394 Pine St, Seattle, WA 98101" +144530,Bose SoundSport Headphones,1,99.99,01/30/19 03:23,"445 Forest St, New York City, NY 10001" +144531,ThinkPad Laptop,1,999.99,01/20/19 12:01,"881 River St, Portland, ME 04101" +144532,Google Phone,1,600,01/07/19 22:03,"867 Cedar St, Portland, OR 97035" +144533,AA Batteries (4-pack),1,3.84,01/06/19 18:38,"636 Lake St, Seattle, WA 98101" +144534,AAA Batteries (4-pack),3,2.99,01/09/19 12:34,"832 Maple St, Boston, MA 02215" +144535,Wired Headphones,1,11.99,01/03/19 11:57,"182 South St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +144536,34in Ultrawide Monitor,1,379.99,01/29/19 19:30,"58 South St, Boston, MA 02215" +144537,USB-C Charging Cable,1,11.95,01/03/19 21:15,"181 1st St, Boston, MA 02215" +144538,iPhone,1,700,01/23/19 14:57,"628 South St, San Francisco, CA 94016" +144538,27in FHD Monitor,1,149.99,01/23/19 14:57,"628 South St, San Francisco, CA 94016" +144539,Lightning Charging Cable,1,14.95,01/12/19 13:28,"538 West St, Seattle, WA 98101" +144540,AA Batteries (4-pack),1,3.84,01/30/19 17:24,"927 7th St, San Francisco, CA 94016" +144541,Apple Airpods Headphones,1,150,01/29/19 13:53,"713 Hickory St, Portland, OR 97035" +144542,Wired Headphones,1,11.99,01/22/19 18:48,"198 Hill St, San Francisco, CA 94016" +144543,Bose SoundSport Headphones,1,99.99,01/04/19 23:22,"75 Hickory St, Atlanta, GA 30301" +144544,AA Batteries (4-pack),1,3.84,01/25/19 22:12,"361 5th St, Los Angeles, CA 90001" +144545,Wired Headphones,1,11.99,01/31/19 13:01,"874 1st St, Austin, TX 73301" +144546,Lightning Charging Cable,1,14.95,01/27/19 00:15,"921 Center St, San Francisco, CA 94016" +144547,Apple Airpods Headphones,1,150,01/26/19 11:35,"525 Dogwood St, Seattle, WA 98101" +144548,Bose SoundSport Headphones,1,99.99,01/04/19 08:18,"433 Spruce St, San Francisco, CA 94016" +144549,20in Monitor,1,109.99,01/10/19 21:30,"693 9th St, Austin, TX 73301" +144550,iPhone,1,700,01/26/19 17:22,"477 Wilson St, San Francisco, CA 94016" +144551,27in FHD Monitor,1,149.99,01/11/19 12:13,"890 9th St, Boston, MA 02215" +144552,27in 4K Gaming Monitor,1,389.99,01/03/19 13:26,"778 Dogwood St, San Francisco, CA 94016" +144553,34in Ultrawide Monitor,1,379.99,01/06/19 09:57,"379 Hickory St, San Francisco, CA 94016" +144554,AA Batteries (4-pack),1,3.84,01/27/19 16:28,"755 Hill St, Boston, MA 02215" +144555,27in FHD Monitor,1,149.99,01/23/19 14:33,"613 10th St, San Francisco, CA 94016" +144556,Wired Headphones,1,11.99,01/02/19 22:43,"454 8th St, Los Angeles, CA 90001" +144557,AAA Batteries (4-pack),1,2.99,01/20/19 09:50,"622 1st St, Los Angeles, CA 90001" +144558,iPhone,1,700,01/25/19 09:05,"848 Church St, Portland, OR 97035" +144559,iPhone,1,700,01/23/19 15:26,"501 Park St, Atlanta, GA 30301" +144560,Wired Headphones,2,11.99,01/17/19 13:21,"335 Church St, San Francisco, CA 94016" +144561,USB-C Charging Cable,1,11.95,01/21/19 08:19,"579 Hickory St, San Francisco, CA 94016" +144562,Lightning Charging Cable,1,14.95,01/27/19 17:49,"634 2nd St, San Francisco, CA 94016" +144563,AA Batteries (4-pack),1,3.84,01/20/19 21:19,"319 Lakeview St, Los Angeles, CA 90001" +144564,Google Phone,1,600,01/12/19 07:53,"227 14th St, San Francisco, CA 94016" +144565,AA Batteries (4-pack),1,3.84,01/01/19 21:53,"780 7th St, San Francisco, CA 94016" +144566,Macbook Pro Laptop,1,1700,01/07/19 16:07,"643 Johnson St, Austin, TX 73301" +144567,27in FHD Monitor,1,149.99,01/03/19 10:01,"435 12th St, Seattle, WA 98101" +144568,USB-C Charging Cable,1,11.95,01/22/19 16:38,"932 8th St, Los Angeles, CA 90001" +144569,Apple Airpods Headphones,1,150,01/13/19 23:22,"813 Highland St, Austin, TX 73301" +144570,AA Batteries (4-pack),1,3.84,01/26/19 10:09,"265 9th St, San Francisco, CA 94016" +144571,AAA Batteries (4-pack),1,2.99,01/23/19 08:21,"183 Lakeview St, Dallas, TX 75001" +144572,Macbook Pro Laptop,1,1700,01/17/19 11:36,"257 Pine St, Portland, OR 97035" +144573,Wired Headphones,1,11.99,01/20/19 20:15,"934 Cherry St, Portland, OR 97035" +144574,20in Monitor,1,109.99,01/16/19 19:06,"481 Willow St, Dallas, TX 75001" +144575,27in FHD Monitor,1,149.99,01/02/19 18:05,"957 Highland St, San Francisco, CA 94016" +144576,Lightning Charging Cable,1,14.95,01/31/19 10:12,"539 Park St, San Francisco, CA 94016" +144577,Wired Headphones,1,11.99,01/29/19 10:54,"341 Chestnut St, Portland, OR 97035" +144578,USB-C Charging Cable,1,11.95,01/08/19 20:56,"226 Sunset St, Atlanta, GA 30301" +144579,AAA Batteries (4-pack),1,2.99,01/17/19 18:18,"804 Chestnut St, New York City, NY 10001" +144580,Wired Headphones,1,11.99,01/20/19 17:55,"10 Willow St, Austin, TX 73301" +144581,AA Batteries (4-pack),1,3.84,01/22/19 12:59,"23 Madison St, Boston, MA 02215" +144582,AA Batteries (4-pack),1,3.84,01/08/19 23:40,"574 Washington St, Seattle, WA 98101" +144582,Lightning Charging Cable,2,14.95,01/08/19 23:40,"574 Washington St, Seattle, WA 98101" +144583,USB-C Charging Cable,2,11.95,01/10/19 13:15,"741 Sunset St, Boston, MA 02215" +144584,Bose SoundSport Headphones,1,99.99,01/03/19 14:45,"19 Spruce St, San Francisco, CA 94016" +144585,Lightning Charging Cable,1,14.95,01/03/19 22:43,"859 9th St, San Francisco, CA 94016" +144586,Apple Airpods Headphones,1,150,01/15/19 13:09,"633 Spruce St, San Francisco, CA 94016" +144586,Wired Headphones,1,11.99,01/15/19 13:09,"633 Spruce St, San Francisco, CA 94016" +144587,Bose SoundSport Headphones,1,99.99,01/14/19 13:08,"842 6th St, Austin, TX 73301" +144588,AAA Batteries (4-pack),1,2.99,01/26/19 15:31,"964 Elm St, San Francisco, CA 94016" +144589,Apple Airpods Headphones,1,150,01/11/19 12:38,"693 Pine St, Dallas, TX 75001" +144590,Lightning Charging Cable,2,14.95,01/25/19 15:07,"103 5th St, Atlanta, GA 30301" +144591,Wired Headphones,1,11.99,01/29/19 17:16,"751 9th St, New York City, NY 10001" +144592,Wired Headphones,1,11.99,01/05/19 20:43,"628 14th St, New York City, NY 10001" +144593,Macbook Pro Laptop,1,1700,01/14/19 12:15,"462 6th St, Los Angeles, CA 90001" +144594,ThinkPad Laptop,1,999.99,01/01/19 05:49,"179 River St, Los Angeles, CA 90001" +144595,Lightning Charging Cable,1,14.95,01/13/19 14:02,"325 Meadow St, San Francisco, CA 94016" +144596,20in Monitor,1,109.99,01/21/19 23:14,"724 14th St, Atlanta, GA 30301" +144597,27in FHD Monitor,1,149.99,01/13/19 21:58,"778 Sunset St, Los Angeles, CA 90001" +144598,Google Phone,1,600,01/28/19 09:32,"431 Chestnut St, Portland, OR 97035" +144599,Lightning Charging Cable,1,14.95,01/16/19 13:33,"733 Church St, New York City, NY 10001" +144600,AAA Batteries (4-pack),3,2.99,01/17/19 14:04,"667 Walnut St, Dallas, TX 75001" +144601,AAA Batteries (4-pack),1,2.99,01/04/19 07:48,"678 Center St, San Francisco, CA 94016" +144602,34in Ultrawide Monitor,1,379.99,01/20/19 14:31,"177 Jackson St, San Francisco, CA 94016" +144603,ThinkPad Laptop,1,999.99,01/09/19 18:00,"340 Maple St, San Francisco, CA 94016" +144604,Lightning Charging Cable,1,14.95,01/18/19 20:05,"62 Lincoln St, Seattle, WA 98101" +144605,Flatscreen TV,1,300,01/02/19 16:41,"982 Wilson St, San Francisco, CA 94016" +144606,AA Batteries (4-pack),1,3.84,01/03/19 20:52,"801 West St, Los Angeles, CA 90001" +144607,Lightning Charging Cable,1,14.95,01/23/19 11:27,"3 1st St, San Francisco, CA 94016" +144608,34in Ultrawide Monitor,1,379.99,01/27/19 12:30,"483 Wilson St, San Francisco, CA 94016" +144609,Bose SoundSport Headphones,1,99.99,01/13/19 09:56,"777 South St, Dallas, TX 75001" +144610,AAA Batteries (4-pack),1,2.99,01/17/19 23:14,"408 Chestnut St, Los Angeles, CA 90001" +144611,Apple Airpods Headphones,1,150,01/28/19 07:52,"585 6th St, Portland, OR 97035" +144612,Wired Headphones,1,11.99,01/11/19 01:18,"607 Elm St, San Francisco, CA 94016" +144613,AA Batteries (4-pack),1,3.84,01/17/19 22:09,"632 Sunset St, Austin, TX 73301" +144614,Bose SoundSport Headphones,1,99.99,01/14/19 18:03,"598 Hickory St, San Francisco, CA 94016" +144615,Wired Headphones,1,11.99,01/26/19 10:16,"550 Jackson St, Los Angeles, CA 90001" +144616,Bose SoundSport Headphones,1,99.99,01/12/19 21:16,"539 Cherry St, Austin, TX 73301" +144617,27in 4K Gaming Monitor,1,389.99,01/08/19 19:41,"358 Pine St, Boston, MA 02215" +144618,27in 4K Gaming Monitor,1,389.99,01/31/19 08:03,"232 Main St, San Francisco, CA 94016" +144619,LG Dryer,1,600.0,01/31/19 20:53,"279 6th St, Atlanta, GA 30301" +144620,27in FHD Monitor,1,149.99,01/07/19 12:55,"98 North St, San Francisco, CA 94016" +144621,ThinkPad Laptop,1,999.99,01/26/19 12:21,"9 Johnson St, Atlanta, GA 30301" +144622,20in Monitor,1,109.99,01/31/19 18:54,"787 South St, Portland, OR 97035" +144623,ThinkPad Laptop,1,999.99,01/23/19 14:05,"968 6th St, Seattle, WA 98101" +144624,AAA Batteries (4-pack),2,2.99,01/25/19 11:51,"631 Lakeview St, San Francisco, CA 94016" +144625,Lightning Charging Cable,1,14.95,01/26/19 22:09,"983 6th St, Seattle, WA 98101" +144626,20in Monitor,1,109.99,01/04/19 23:12,"50 Lakeview St, Boston, MA 02215" +144627,34in Ultrawide Monitor,1,379.99,01/05/19 16:45,"463 Lake St, San Francisco, CA 94016" +144628,Wired Headphones,1,11.99,01/17/19 16:19,"690 Cherry St, San Francisco, CA 94016" +144629,AA Batteries (4-pack),1,3.84,01/07/19 16:05,"417 Johnson St, Boston, MA 02215" +144630,Apple Airpods Headphones,1,150,01/15/19 14:29,"838 Jackson St, Boston, MA 02215" +144631,USB-C Charging Cable,1,11.95,01/28/19 16:31,"828 Hill St, New York City, NY 10001" +144632,Bose SoundSport Headphones,1,99.99,01/23/19 12:34,"358 Lake St, Los Angeles, CA 90001" +144633,AAA Batteries (4-pack),1,2.99,01/03/19 12:18,"282 Johnson St, Boston, MA 02215" +144634,AAA Batteries (4-pack),1,2.99,01/21/19 18:13,"280 4th St, Los Angeles, CA 90001" +144635,AA Batteries (4-pack),1,3.84,01/25/19 09:42,"384 Ridge St, Austin, TX 73301" +144636,USB-C Charging Cable,1,11.95,01/13/19 11:25,"210 9th St, Los Angeles, CA 90001" +144636,27in FHD Monitor,1,149.99,01/13/19 11:25,"210 9th St, Los Angeles, CA 90001" +144637,iPhone,1,700,01/07/19 21:36,"984 Church St, Dallas, TX 75001" +144637,Lightning Charging Cable,1,14.95,01/07/19 21:36,"984 Church St, Dallas, TX 75001" +144638,Wired Headphones,2,11.99,01/14/19 14:28,"938 Wilson St, Boston, MA 02215" +144639,27in 4K Gaming Monitor,1,389.99,01/27/19 13:57,"446 Chestnut St, San Francisco, CA 94016" +144640,Wired Headphones,1,11.99,01/01/19 20:57,"685 Chestnut St, San Francisco, CA 94016" +144641,AA Batteries (4-pack),1,3.84,01/28/19 16:40,"824 12th St, San Francisco, CA 94016" +144642,Lightning Charging Cable,1,14.95,01/22/19 19:47,"220 Wilson St, Los Angeles, CA 90001" +144643,ThinkPad Laptop,1,999.99,01/17/19 20:52,"283 Highland St, Dallas, TX 75001" +144644,AAA Batteries (4-pack),1,2.99,01/25/19 20:02,"473 Center St, San Francisco, CA 94016" +144645,iPhone,1,700,01/26/19 13:08,"991 Jefferson St, San Francisco, CA 94016" +144646,Bose SoundSport Headphones,1,99.99,01/07/19 15:36,"561 South St, Portland, OR 97035" +144647,Lightning Charging Cable,1,14.95,01/30/19 22:52,"978 4th St, San Francisco, CA 94016" +144648,USB-C Charging Cable,3,11.95,01/10/19 19:56,"568 Lakeview St, San Francisco, CA 94016" +144649,iPhone,1,700,01/28/19 10:40,"672 Chestnut St, New York City, NY 10001" +144650,Bose SoundSport Headphones,1,99.99,01/29/19 21:20,"36 North St, Los Angeles, CA 90001" +144651,Lightning Charging Cable,1,14.95,01/20/19 20:25,"33 Wilson St, New York City, NY 10001" +144652,Flatscreen TV,1,300,01/12/19 15:04,"752 Spruce St, Boston, MA 02215" +144653,34in Ultrawide Monitor,1,379.99,01/14/19 22:23,"150 Sunset St, New York City, NY 10001" +144654,AA Batteries (4-pack),2,3.84,01/31/19 13:13,"889 12th St, Los Angeles, CA 90001" +144655,Apple Airpods Headphones,1,150,01/17/19 20:48,"610 Cedar St, Los Angeles, CA 90001" +144656,27in FHD Monitor,1,149.99,01/16/19 15:56,"252 Lake St, New York City, NY 10001" +144657,USB-C Charging Cable,1,11.95,01/05/19 15:24,"821 Highland St, Boston, MA 02215" +144658,USB-C Charging Cable,1,11.95,01/25/19 18:50,"486 2nd St, Atlanta, GA 30301" +144659,AA Batteries (4-pack),1,3.84,01/14/19 06:31,"822 Main St, Boston, MA 02215" +144660,AAA Batteries (4-pack),1,2.99,01/22/19 08:20,"320 Center St, Los Angeles, CA 90001" +144661,Lightning Charging Cable,1,14.95,01/28/19 16:05,"813 Maple St, San Francisco, CA 94016" +144662,Flatscreen TV,1,300,01/15/19 15:34,"609 4th St, Seattle, WA 98101" +144663,Lightning Charging Cable,1,14.95,01/15/19 17:52,"839 Church St, Los Angeles, CA 90001" +144664,USB-C Charging Cable,1,11.95,01/14/19 10:16,"615 11th St, New York City, NY 10001" +144665,USB-C Charging Cable,1,11.95,01/22/19 16:22,"668 5th St, Portland, ME 04101" +144666,AAA Batteries (4-pack),1,2.99,01/13/19 16:04,"686 13th St, New York City, NY 10001" +144667,USB-C Charging Cable,1,11.95,01/19/19 16:27,"584 Main St, San Francisco, CA 94016" +144668,AAA Batteries (4-pack),1,2.99,01/19/19 13:42,"455 9th St, Portland, OR 97035" +144669,Apple Airpods Headphones,2,150,01/29/19 12:43,"247 Hickory St, San Francisco, CA 94016" +144670,USB-C Charging Cable,1,11.95,01/01/19 11:57,"203 Elm St, San Francisco, CA 94016" +144671,USB-C Charging Cable,1,11.95,01/12/19 17:33,"109 South St, San Francisco, CA 94016" +144672,LG Washing Machine,1,600.0,01/01/19 11:37,"221 River St, Boston, MA 02215" +144673,AA Batteries (4-pack),1,3.84,01/10/19 15:28,"840 Spruce St, San Francisco, CA 94016" +144674,Google Phone,1,600,01/12/19 10:54,"732 Center St, Boston, MA 02215" +144675,USB-C Charging Cable,1,11.95,01/30/19 16:02,"418 Chestnut St, New York City, NY 10001" +144676,Flatscreen TV,1,300,01/31/19 21:40,"597 Ridge St, Atlanta, GA 30301" +144677,Lightning Charging Cable,1,14.95,01/01/19 16:29,"229 Washington St, Austin, TX 73301" +144678,Wired Headphones,1,11.99,01/03/19 12:33,"697 Pine St, Boston, MA 02215" +144679,Wired Headphones,1,11.99,01/29/19 18:28,"766 Walnut St, Austin, TX 73301" +144680,Apple Airpods Headphones,1,150,01/28/19 20:27,"675 7th St, Seattle, WA 98101" +144681,Bose SoundSport Headphones,1,99.99,01/22/19 09:41,"108 9th St, Portland, OR 97035" +144682,AA Batteries (4-pack),2,3.84,01/25/19 19:21,"911 11th St, San Francisco, CA 94016" +144683,Bose SoundSport Headphones,1,99.99,01/11/19 11:02,"983 11th St, New York City, NY 10001" +144684,AAA Batteries (4-pack),3,2.99,01/24/19 20:32,"304 12th St, Seattle, WA 98101" +144685,Wired Headphones,1,11.99,01/27/19 21:52,"262 2nd St, Los Angeles, CA 90001" +144686,USB-C Charging Cable,2,11.95,01/08/19 16:00,"621 Walnut St, Austin, TX 73301" +144687,Wired Headphones,1,11.99,01/23/19 15:32,"548 Lincoln St, Portland, OR 97035" +144688,Lightning Charging Cable,1,14.95,01/08/19 18:18,"713 Meadow St, San Francisco, CA 94016" +144689,Google Phone,1,600,01/08/19 23:34,"929 Cherry St, Atlanta, GA 30301" +144690,AAA Batteries (4-pack),1,2.99,01/07/19 13:48,"135 Cherry St, San Francisco, CA 94016" +144691,AAA Batteries (4-pack),1,2.99,01/18/19 21:29,"874 11th St, San Francisco, CA 94016" +144692,iPhone,1,700,01/15/19 11:29,"322 Cedar St, Portland, OR 97035" +144693,Flatscreen TV,1,300,01/23/19 23:53,"740 Lakeview St, Boston, MA 02215" +144694,AA Batteries (4-pack),1,3.84,01/08/19 18:29,"291 Johnson St, Dallas, TX 75001" +144695,Lightning Charging Cable,1,14.95,01/12/19 23:27,"988 North St, Los Angeles, CA 90001" +144696,AAA Batteries (4-pack),1,2.99,01/14/19 00:59,"938 Willow St, Portland, OR 97035" +144697,Vareebadd Phone,1,400,01/20/19 21:29,"373 Lake St, Seattle, WA 98101" +144698,Bose SoundSport Headphones,2,99.99,01/19/19 07:55,"434 North St, San Francisco, CA 94016" +144699,Lightning Charging Cable,1,14.95,01/06/19 18:04,"674 Spruce St, Portland, OR 97035" +144700,AA Batteries (4-pack),5,3.84,01/28/19 21:17,"864 9th St, Boston, MA 02215" +144701,ThinkPad Laptop,1,999.99,01/27/19 07:36,"418 Washington St, San Francisco, CA 94016" +144702,27in FHD Monitor,1,149.99,01/03/19 20:54,"330 West St, Los Angeles, CA 90001" +144703,Bose SoundSport Headphones,1,99.99,01/14/19 11:20,"446 2nd St, Portland, OR 97035" +144704,AA Batteries (4-pack),1,3.84,01/30/19 22:53,"612 Hickory St, New York City, NY 10001" +144705,AA Batteries (4-pack),1,3.84,01/06/19 16:05,"955 12th St, Atlanta, GA 30301" +144706,AA Batteries (4-pack),1,3.84,01/01/19 12:27,"894 12th St, Austin, TX 73301" +144707,AAA Batteries (4-pack),2,2.99,01/21/19 13:18,"805 Pine St, Dallas, TX 75001" +144708,USB-C Charging Cable,1,11.95,01/17/19 21:47,"903 11th St, Portland, OR 97035" +144709,Macbook Pro Laptop,1,1700,01/14/19 17:29,"635 North St, San Francisco, CA 94016" +144710,AAA Batteries (4-pack),3,2.99,01/14/19 01:04,"300 Walnut St, New York City, NY 10001" +144711,AAA Batteries (4-pack),1,2.99,01/08/19 16:23,"637 9th St, New York City, NY 10001" +144712,USB-C Charging Cable,1,11.95,01/30/19 12:41,"758 Pine St, San Francisco, CA 94016" +144713,Wired Headphones,1,11.99,01/11/19 20:26,"472 Church St, Atlanta, GA 30301" +144714,AAA Batteries (4-pack),1,2.99,01/02/19 17:47,"833 10th St, San Francisco, CA 94016" +144715,USB-C Charging Cable,1,11.95,01/05/19 20:22,"137 Cherry St, Portland, OR 97035" +144716,Wired Headphones,1,11.99,01/16/19 13:12,"133 8th St, San Francisco, CA 94016" +144717,iPhone,1,700,01/08/19 17:03,"414 North St, San Francisco, CA 94016" +144718,Wired Headphones,1,11.99,01/26/19 12:09,"104 Ridge St, Dallas, TX 75001" +144719,AAA Batteries (4-pack),1,2.99,01/21/19 14:42,"202 14th St, San Francisco, CA 94016" +144720,Lightning Charging Cable,1,14.95,01/12/19 15:23,"805 Center St, Atlanta, GA 30301" +144721,27in FHD Monitor,1,149.99,01/09/19 13:01,"440 North St, Atlanta, GA 30301" +144722,ThinkPad Laptop,1,999.99,01/19/19 18:31,"974 Pine St, Seattle, WA 98101" +144723,Google Phone,1,600,01/17/19 10:32,"975 7th St, Seattle, WA 98101" +144723,USB-C Charging Cable,1,11.95,01/17/19 10:32,"975 7th St, Seattle, WA 98101" +144724,Vareebadd Phone,1,400,01/28/19 17:42,"342 Wilson St, New York City, NY 10001" +144724,USB-C Charging Cable,1,11.95,01/28/19 17:42,"342 Wilson St, New York City, NY 10001" +144725,Bose SoundSport Headphones,1,99.99,01/24/19 23:54,"334 Sunset St, New York City, NY 10001" +144726,Bose SoundSport Headphones,1,99.99,01/03/19 19:35,"610 Cherry St, Los Angeles, CA 90001" +144727,Bose SoundSport Headphones,1,99.99,01/09/19 10:00,"371 8th St, Portland, OR 97035" +144728,Wired Headphones,1,11.99,01/09/19 17:54,"112 9th St, Seattle, WA 98101" +144729,Bose SoundSport Headphones,1,99.99,01/08/19 15:01,"992 South St, New York City, NY 10001" +144730,Google Phone,1,600,01/04/19 10:47,"42 Ridge St, Boston, MA 02215" +144731,AAA Batteries (4-pack),1,2.99,01/07/19 15:10,"949 5th St, San Francisco, CA 94016" +144732,Flatscreen TV,1,300,01/24/19 09:48,"39 North St, New York City, NY 10001" +144733,AAA Batteries (4-pack),1,2.99,01/13/19 00:01,"166 North St, Los Angeles, CA 90001" +144734,USB-C Charging Cable,1,11.95,01/28/19 18:27,"796 Pine St, Portland, ME 04101" +144735,Google Phone,1,600,01/23/19 23:24,"450 Meadow St, Austin, TX 73301" +144735,Wired Headphones,1,11.99,01/23/19 23:24,"450 Meadow St, Austin, TX 73301" +144736,Google Phone,1,600,01/18/19 22:46,"324 Maple St, Dallas, TX 75001" +144737,Wired Headphones,1,11.99,01/26/19 21:07,"231 Willow St, New York City, NY 10001" +144738,AAA Batteries (4-pack),2,2.99,01/28/19 18:31,"744 Walnut St, San Francisco, CA 94016" +144739,Bose SoundSport Headphones,1,99.99,01/31/19 20:15,"789 5th St, Los Angeles, CA 90001" +144740,27in 4K Gaming Monitor,1,389.99,01/10/19 17:41,"395 South St, New York City, NY 10001" +144741,27in FHD Monitor,1,149.99,01/03/19 19:17,"306 Cherry St, Los Angeles, CA 90001" +144742,Lightning Charging Cable,1,14.95,01/16/19 21:07,"10 10th St, San Francisco, CA 94016" +144743,Wired Headphones,1,11.99,01/06/19 14:54,"811 Adams St, Seattle, WA 98101" +144744,USB-C Charging Cable,1,11.95,01/12/19 10:33,"15 Forest St, Atlanta, GA 30301" +144745,AAA Batteries (4-pack),1,2.99,01/22/19 11:31,"817 2nd St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +144746,AAA Batteries (4-pack),1,2.99,01/16/19 17:07,"951 Elm St, Los Angeles, CA 90001" +144747,AAA Batteries (4-pack),1,2.99,01/24/19 18:30,"608 13th St, Dallas, TX 75001" +144748,27in 4K Gaming Monitor,1,389.99,01/05/19 20:27,"570 8th St, San Francisco, CA 94016" +144749,Macbook Pro Laptop,1,1700,01/10/19 16:03,"283 West St, Dallas, TX 75001" +144750,AAA Batteries (4-pack),1,2.99,01/20/19 17:55,"326 Cedar St, New York City, NY 10001" +144751,Lightning Charging Cable,1,14.95,01/30/19 02:35,"457 Madison St, San Francisco, CA 94016" +144752,Bose SoundSport Headphones,1,99.99,01/06/19 21:13,"847 Ridge St, Boston, MA 02215" +144753,AAA Batteries (4-pack),1,2.99,01/24/19 13:25,"173 4th St, Los Angeles, CA 90001" +144754,Apple Airpods Headphones,1,150,01/31/19 14:45,"776 Highland St, Seattle, WA 98101" +144755,AAA Batteries (4-pack),1,2.99,01/07/19 16:47,"915 West St, Atlanta, GA 30301" +144756,Flatscreen TV,1,300,01/28/19 16:46,"317 13th St, San Francisco, CA 94016" +144757,Bose SoundSport Headphones,1,99.99,01/12/19 12:14,"961 5th St, San Francisco, CA 94016" +144758,Apple Airpods Headphones,1,150,01/23/19 14:47,"690 Jackson St, San Francisco, CA 94016" +144759,AA Batteries (4-pack),1,3.84,01/03/19 22:42,"943 12th St, San Francisco, CA 94016" +144760,Lightning Charging Cable,1,14.95,01/17/19 21:31,"219 Pine St, New York City, NY 10001" +144761,27in FHD Monitor,1,149.99,01/14/19 09:34,"797 West St, Los Angeles, CA 90001" +144762,Wired Headphones,1,11.99,01/31/19 08:33,"981 Cedar St, Los Angeles, CA 90001" +144763,34in Ultrawide Monitor,1,379.99,01/08/19 20:54,"36 Cedar St, Los Angeles, CA 90001" +144764,USB-C Charging Cable,1,11.95,01/02/19 13:59,"223 Hill St, Dallas, TX 75001" +144765,Apple Airpods Headphones,1,150,01/03/19 22:16,"178 Adams St, New York City, NY 10001" +144766,USB-C Charging Cable,1,11.95,01/01/19 20:16,"333 Willow St, New York City, NY 10001" +144767,27in 4K Gaming Monitor,1,389.99,01/05/19 07:53,"228 Church St, San Francisco, CA 94016" +144768,Lightning Charging Cable,1,14.95,01/27/19 14:11,"927 Meadow St, Los Angeles, CA 90001" +144769,AAA Batteries (4-pack),5,2.99,01/12/19 23:59,"842 5th St, Los Angeles, CA 90001" +144770,USB-C Charging Cable,1,11.95,01/08/19 15:05,"279 Jackson St, Austin, TX 73301" +144771,USB-C Charging Cable,1,11.95,01/22/19 10:10,"383 Meadow St, Los Angeles, CA 90001" +144772,Lightning Charging Cable,1,14.95,01/29/19 10:31,"567 West St, San Francisco, CA 94016" +144773,AAA Batteries (4-pack),1,2.99,01/24/19 16:34,"810 Hickory St, Portland, OR 97035" +144774,AA Batteries (4-pack),1,3.84,01/12/19 10:06,"160 5th St, New York City, NY 10001" +144775,AAA Batteries (4-pack),3,2.99,01/07/19 19:21,"204 Ridge St, Los Angeles, CA 90001" +144776,Macbook Pro Laptop,1,1700,01/16/19 20:10,"185 Hickory St, San Francisco, CA 94016" +144777,USB-C Charging Cable,1,11.95,01/24/19 19:07,"922 6th St, Austin, TX 73301" +144778,Apple Airpods Headphones,1,150,01/28/19 12:40,"374 Lincoln St, Los Angeles, CA 90001" +144779,Flatscreen TV,1,300,01/12/19 20:48,"581 Lake St, New York City, NY 10001" +144780,AA Batteries (4-pack),1,3.84,01/20/19 18:49,"737 12th St, San Francisco, CA 94016" +144781,Lightning Charging Cable,1,14.95,01/25/19 20:20,"167 4th St, Atlanta, GA 30301" +144782,Apple Airpods Headphones,1,150,01/19/19 15:08,"177 10th St, San Francisco, CA 94016" +144782,USB-C Charging Cable,2,11.95,01/19/19 15:08,"177 10th St, San Francisco, CA 94016" +144783,Wired Headphones,1,11.99,01/12/19 11:35,"51 Jefferson St, Los Angeles, CA 90001" +144784,Flatscreen TV,1,300,01/12/19 22:10,"741 4th St, San Francisco, CA 94016" +144785,Apple Airpods Headphones,1,150,01/29/19 14:02,"392 Willow St, Seattle, WA 98101" +144786,USB-C Charging Cable,1,11.95,01/28/19 10:42,"301 8th St, Los Angeles, CA 90001" +144786,AA Batteries (4-pack),1,3.84,01/28/19 10:42,"301 8th St, Los Angeles, CA 90001" +144787,iPhone,1,700,01/12/19 20:10,"301 Meadow St, San Francisco, CA 94016" +144788,iPhone,1,700,01/23/19 18:43,"701 Elm St, Boston, MA 02215" +144789,Bose SoundSport Headphones,1,99.99,01/16/19 21:29,"436 Madison St, Seattle, WA 98101" +144790,AAA Batteries (4-pack),1,2.99,01/07/19 08:03,"161 Forest St, Los Angeles, CA 90001" +144791,Wired Headphones,1,11.99,01/16/19 07:56,"104 10th St, San Francisco, CA 94016" +144792,USB-C Charging Cable,1,11.95,01/12/19 11:04,"152 2nd St, Los Angeles, CA 90001" +144793,ThinkPad Laptop,1,999.99,01/18/19 11:22,"666 Cherry St, Seattle, WA 98101" +144794,Google Phone,1,600,01/11/19 12:24,"933 Ridge St, San Francisco, CA 94016" +144795,AA Batteries (4-pack),2,3.84,01/24/19 04:06,"94 7th St, San Francisco, CA 94016" +144795,27in 4K Gaming Monitor,1,389.99,01/24/19 04:06,"94 7th St, San Francisco, CA 94016" +144796,AAA Batteries (4-pack),2,2.99,01/26/19 19:15,"602 Cedar St, Portland, OR 97035" +144797,USB-C Charging Cable,1,11.95,01/16/19 17:40,"133 Park St, New York City, NY 10001" +144798,Lightning Charging Cable,2,14.95,01/28/19 10:11,"524 Center St, New York City, NY 10001" +144799,USB-C Charging Cable,1,11.95,01/29/19 20:30,"354 Forest St, Seattle, WA 98101" +144800,AA Batteries (4-pack),1,3.84,01/16/19 12:18,"968 Lincoln St, Seattle, WA 98101" +144801,27in FHD Monitor,1,149.99,01/13/19 06:52,"151 5th St, New York City, NY 10001" +144802,Bose SoundSport Headphones,1,99.99,01/06/19 19:55,"313 Chestnut St, Los Angeles, CA 90001" +144803,Lightning Charging Cable,1,14.95,01/25/19 22:15,"120 Church St, Boston, MA 02215" +144804,AAA Batteries (4-pack),1,2.99,01/23/19 12:13,"430 Johnson St, New York City, NY 10001" +144805,ThinkPad Laptop,1,999.99,01/18/19 17:53,"354 10th St, San Francisco, CA 94016" +144806,Wired Headphones,1,11.99,01/12/19 20:05,"557 9th St, New York City, NY 10001" +144807,Apple Airpods Headphones,1,150,01/09/19 08:28,"804 Adams St, Boston, MA 02215" +144808,27in FHD Monitor,1,149.99,01/14/19 20:11,"14 West St, San Francisco, CA 94016" +144809,Wired Headphones,1,11.99,01/16/19 22:26,"745 9th St, San Francisco, CA 94016" +144810,AA Batteries (4-pack),1,3.84,01/29/19 10:57,"339 Hill St, San Francisco, CA 94016" +144811,AAA Batteries (4-pack),1,2.99,01/29/19 13:07,"675 Park St, Seattle, WA 98101" +144812,AAA Batteries (4-pack),4,2.99,01/18/19 20:40,"873 Park St, Portland, OR 97035" +144813,Flatscreen TV,1,300,01/01/19 22:04,"944 Meadow St, San Francisco, CA 94016" +144814,USB-C Charging Cable,1,11.95,01/07/19 22:25,"835 Main St, Los Angeles, CA 90001" +144815,Bose SoundSport Headphones,1,99.99,01/17/19 19:17,"534 Chestnut St, Portland, OR 97035" +144816,USB-C Charging Cable,1,11.95,01/09/19 17:13,"749 West St, Atlanta, GA 30301" +144817,AA Batteries (4-pack),2,3.84,01/26/19 16:14,"642 Ridge St, New York City, NY 10001" +144818,USB-C Charging Cable,1,11.95,01/24/19 23:06,"674 North St, San Francisco, CA 94016" +144819,ThinkPad Laptop,1,999.99,01/06/19 22:35,"217 7th St, Portland, OR 97035" +144820,Apple Airpods Headphones,1,150,01/24/19 10:57,"315 Jefferson St, Boston, MA 02215" +144821,Lightning Charging Cable,1,14.95,01/02/19 12:05,"95 14th St, San Francisco, CA 94016" +144822,iPhone,1,700,01/03/19 23:47,"838 Cherry St, Los Angeles, CA 90001" +,,,,, +144823,AAA Batteries (4-pack),1,2.99,01/10/19 02:42,"399 Lakeview St, New York City, NY 10001" +144824,27in 4K Gaming Monitor,1,389.99,01/28/19 15:04,"745 4th St, Austin, TX 73301" +144825,Wired Headphones,1,11.99,01/28/19 16:10,"263 Willow St, San Francisco, CA 94016" +144826,Flatscreen TV,1,300,01/06/19 16:12,"139 Lakeview St, New York City, NY 10001" +144827,27in FHD Monitor,1,149.99,01/12/19 16:02,"474 Cherry St, Atlanta, GA 30301" +144828,AA Batteries (4-pack),3,3.84,01/29/19 19:30,"61 Park St, Dallas, TX 75001" +144829,Bose SoundSport Headphones,1,99.99,01/28/19 14:13,"262 West St, New York City, NY 10001" +144830,AA Batteries (4-pack),1,3.84,01/20/19 11:30,"290 Ridge St, New York City, NY 10001" +144831,Wired Headphones,1,11.99,01/07/19 12:35,"322 Center St, San Francisco, CA 94016" +144832,ThinkPad Laptop,1,999.99,01/04/19 02:09,"53 Chestnut St, Austin, TX 73301" +144833,iPhone,1,700,01/31/19 14:04,"367 River St, Seattle, WA 98101" +144834,Lightning Charging Cable,1,14.95,01/31/19 14:37,"849 Highland St, San Francisco, CA 94016" +144835,AA Batteries (4-pack),1,3.84,01/06/19 13:49,"445 Meadow St, San Francisco, CA 94016" +144836,Apple Airpods Headphones,1,150,01/29/19 17:16,"718 Chestnut St, New York City, NY 10001" +144837,Bose SoundSport Headphones,1,99.99,01/23/19 19:27,"373 Meadow St, Austin, TX 73301" +144838,Apple Airpods Headphones,1,150,01/08/19 18:38,"113 Willow St, Los Angeles, CA 90001" +144839,USB-C Charging Cable,1,11.95,01/25/19 04:48,"638 West St, San Francisco, CA 94016" +144840,Lightning Charging Cable,1,14.95,01/16/19 07:04,"583 Sunset St, Seattle, WA 98101" +144841,iPhone,1,700,01/16/19 20:42,"656 4th St, Los Angeles, CA 90001" +144842,AA Batteries (4-pack),1,3.84,01/23/19 13:55,"929 Jefferson St, Portland, OR 97035" +144843,Google Phone,1,600,01/26/19 16:31,"723 Cherry St, San Francisco, CA 94016" +144843,Wired Headphones,1,11.99,01/26/19 16:31,"723 Cherry St, San Francisco, CA 94016" +144844,USB-C Charging Cable,1,11.95,01/28/19 22:48,"118 Washington St, Dallas, TX 75001" +144845,USB-C Charging Cable,1,11.95,01/17/19 05:41,"833 Jackson St, New York City, NY 10001" +144846,AAA Batteries (4-pack),2,2.99,01/31/19 19:57,"778 Elm St, Austin, TX 73301" +144847,AAA Batteries (4-pack),1,2.99,01/20/19 10:16,"938 2nd St, Atlanta, GA 30301" +144848,iPhone,1,700,01/08/19 22:01,"401 Jefferson St, Los Angeles, CA 90001" +144849,27in FHD Monitor,1,149.99,01/13/19 01:02,"391 13th St, Dallas, TX 75001" +144850,USB-C Charging Cable,1,11.95,01/18/19 15:44,"740 Johnson St, Boston, MA 02215" +144851,Wired Headphones,1,11.99,01/20/19 18:14,"441 Park St, San Francisco, CA 94016" +144852,Apple Airpods Headphones,1,150,01/02/19 00:52,"33 Lake St, San Francisco, CA 94016" +144853,AAA Batteries (4-pack),1,2.99,01/25/19 11:48,"380 Meadow St, Los Angeles, CA 90001" +144854,Apple Airpods Headphones,1,150,01/25/19 22:01,"245 Meadow St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +144855,AA Batteries (4-pack),2,3.84,01/15/19 13:55,"960 Lake St, Boston, MA 02215" +144856,USB-C Charging Cable,1,11.95,01/20/19 14:48,"38 6th St, New York City, NY 10001" +144857,Wired Headphones,2,11.99,01/27/19 20:30,"469 14th St, New York City, NY 10001" +144858,Lightning Charging Cable,1,14.95,01/04/19 08:35,"847 4th St, Los Angeles, CA 90001" +144859,Bose SoundSport Headphones,1,99.99,01/06/19 13:43,"320 Elm St, San Francisco, CA 94016" +144860,Bose SoundSport Headphones,1,99.99,01/26/19 20:25,"355 Meadow St, New York City, NY 10001" +144861,Wired Headphones,1,11.99,01/10/19 15:55,"876 Lake St, Portland, OR 97035" +144862,Wired Headphones,1,11.99,01/08/19 11:42,"595 Elm St, San Francisco, CA 94016" +144863,27in 4K Gaming Monitor,1,389.99,01/03/19 18:33,"200 Park St, San Francisco, CA 94016" +144864,AAA Batteries (4-pack),2,2.99,01/25/19 09:32,"847 Hickory St, Seattle, WA 98101" +144865,Wired Headphones,1,11.99,01/12/19 21:17,"293 Lakeview St, Atlanta, GA 30301" +144866,Apple Airpods Headphones,1,150,01/09/19 14:36,"43 Sunset St, Los Angeles, CA 90001" +144867,Macbook Pro Laptop,1,1700,01/26/19 13:50,"648 8th St, Los Angeles, CA 90001" +144868,ThinkPad Laptop,1,999.99,01/04/19 10:41,"891 Church St, Los Angeles, CA 90001" +144869,Wired Headphones,1,11.99,01/04/19 11:52,"804 13th St, Seattle, WA 98101" +144870,Wired Headphones,2,11.99,01/10/19 11:30,"77 North St, New York City, NY 10001" +144871,Vareebadd Phone,1,400,01/20/19 17:25,"769 Washington St, New York City, NY 10001" +144872,Google Phone,1,600,01/31/19 20:08,"314 9th St, Atlanta, GA 30301" +144873,Apple Airpods Headphones,1,150,01/30/19 22:38,"446 6th St, New York City, NY 10001" +144874,34in Ultrawide Monitor,1,379.99,01/24/19 12:01,"89 Ridge St, Dallas, TX 75001" +144875,Wired Headphones,1,11.99,01/15/19 11:57,"910 Main St, New York City, NY 10001" +144876,iPhone,1,700,01/23/19 09:05,"740 Pine St, Los Angeles, CA 90001" +144877,USB-C Charging Cable,1,11.95,01/11/19 22:32,"287 6th St, San Francisco, CA 94016" +144878,27in 4K Gaming Monitor,1,389.99,01/18/19 21:20,"94 1st St, San Francisco, CA 94016" +144879,AAA Batteries (4-pack),1,2.99,01/31/19 15:38,"787 5th St, New York City, NY 10001" +144880,Apple Airpods Headphones,1,150,01/29/19 19:14,"783 Cherry St, Atlanta, GA 30301" +144880,Flatscreen TV,1,300,01/29/19 19:14,"783 Cherry St, Atlanta, GA 30301" +144881,34in Ultrawide Monitor,1,379.99,01/17/19 13:19,"680 Johnson St, Portland, ME 04101" +144882,34in Ultrawide Monitor,1,379.99,01/10/19 18:58,"729 Highland St, San Francisco, CA 94016" +144883,AA Batteries (4-pack),1,3.84,01/07/19 04:59,"56 Adams St, San Francisco, CA 94016" +144884,AAA Batteries (4-pack),1,2.99,01/02/19 09:27,"667 Wilson St, Los Angeles, CA 90001" +144885,Google Phone,1,600,01/05/19 12:18,"843 Walnut St, New York City, NY 10001" +144886,Bose SoundSport Headphones,1,99.99,01/03/19 17:06,"201 1st St, Dallas, TX 75001" +144887,Flatscreen TV,1,300,01/31/19 16:33,"406 Wilson St, Los Angeles, CA 90001" +144888,Google Phone,1,600,01/01/19 09:58,"991 Washington St, Portland, OR 97035" +144889,20in Monitor,1,109.99,01/10/19 00:15,"292 Lincoln St, San Francisco, CA 94016" +144890,34in Ultrawide Monitor,1,379.99,01/19/19 13:50,"91 West St, Los Angeles, CA 90001" +144891,Bose SoundSport Headphones,1,99.99,01/28/19 15:04,"368 Chestnut St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +144892,USB-C Charging Cable,1,11.95,01/15/19 12:11,"736 Cherry St, New York City, NY 10001" +144893,Apple Airpods Headphones,1,150,01/12/19 18:29,"176 Adams St, Los Angeles, CA 90001" +144894,Google Phone,1,600,01/17/19 17:14,"54 5th St, Los Angeles, CA 90001" +144895,27in 4K Gaming Monitor,1,389.99,01/10/19 21:10,"430 Hill St, New York City, NY 10001" +144896,Apple Airpods Headphones,1,150,01/03/19 18:53,"695 Main St, Dallas, TX 75001" +144896,ThinkPad Laptop,1,999.99,01/03/19 18:53,"695 Main St, Dallas, TX 75001" +144897,USB-C Charging Cable,1,11.95,01/24/19 10:59,"310 Washington St, Boston, MA 02215" +144898,Apple Airpods Headphones,1,150,01/18/19 00:42,"447 Madison St, Boston, MA 02215" +144899,AA Batteries (4-pack),1,3.84,01/27/19 15:41,"361 Meadow St, Los Angeles, CA 90001" +144900,Bose SoundSport Headphones,1,99.99,01/04/19 11:35,"775 Highland St, San Francisco, CA 94016" +144901,20in Monitor,1,109.99,01/15/19 20:08,"108 Jefferson St, Portland, ME 04101" +144902,34in Ultrawide Monitor,1,379.99,01/19/19 20:05,"225 Main St, Portland, OR 97035" +144903,27in FHD Monitor,1,149.99,01/21/19 11:01,"293 Lake St, San Francisco, CA 94016" +144904,AAA Batteries (4-pack),2,2.99,01/21/19 23:18,"528 Madison St, Dallas, TX 75001" +144905,27in FHD Monitor,1,149.99,01/25/19 14:05,"261 Adams St, San Francisco, CA 94016" +144906,AA Batteries (4-pack),1,3.84,01/31/19 18:18,"727 Forest St, Boston, MA 02215" +144907,USB-C Charging Cable,1,11.95,01/19/19 23:01,"777 Sunset St, Portland, ME 04101" +144908,Flatscreen TV,1,300,01/10/19 20:39,"705 Lake St, Portland, OR 97035" +144909,Wired Headphones,1,11.99,01/20/19 13:41,"932 Lakeview St, Los Angeles, CA 90001" +144910,USB-C Charging Cable,1,11.95,01/14/19 16:04,"927 Walnut St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +144911,Bose SoundSport Headphones,1,99.99,01/16/19 16:56,"279 1st St, New York City, NY 10001" +144912,27in FHD Monitor,1,149.99,01/17/19 01:40,"188 South St, Dallas, TX 75001" +144913,AAA Batteries (4-pack),5,2.99,01/15/19 01:32,"733 13th St, San Francisco, CA 94016" +144914,Lightning Charging Cable,1,14.95,01/10/19 17:47,"196 9th St, Los Angeles, CA 90001" +144915,Lightning Charging Cable,1,14.95,01/02/19 15:52,"353 Jefferson St, Los Angeles, CA 90001" +144916,Lightning Charging Cable,1,14.95,01/08/19 09:03,"975 Washington St, Portland, OR 97035" +144917,Lightning Charging Cable,1,14.95,01/04/19 01:28,"331 Center St, San Francisco, CA 94016" +144918,Wired Headphones,1,11.99,01/16/19 18:37,"75 Chestnut St, Atlanta, GA 30301" +144919,USB-C Charging Cable,1,11.95,01/04/19 15:13,"971 North St, Boston, MA 02215" +144920,USB-C Charging Cable,1,11.95,01/11/19 19:19,"538 Center St, Los Angeles, CA 90001" +144921,Bose SoundSport Headphones,1,99.99,01/17/19 21:50,"517 Madison St, San Francisco, CA 94016" +144922,34in Ultrawide Monitor,1,379.99,01/29/19 20:28,"303 Maple St, Seattle, WA 98101" +144923,AAA Batteries (4-pack),1,2.99,01/15/19 11:32,"376 Cedar St, Los Angeles, CA 90001" +144924,Wired Headphones,1,11.99,01/13/19 21:17,"111 7th St, Los Angeles, CA 90001" +144925,AAA Batteries (4-pack),1,2.99,01/20/19 12:16,"950 2nd St, Dallas, TX 75001" +144926,AAA Batteries (4-pack),1,2.99,01/07/19 11:40,"275 Main St, New York City, NY 10001" +144927,34in Ultrawide Monitor,1,379.99,01/14/19 20:14,"735 Highland St, New York City, NY 10001" +144928,AA Batteries (4-pack),1,3.84,01/07/19 15:00,"947 2nd St, Atlanta, GA 30301" +144929,AAA Batteries (4-pack),3,2.99,01/10/19 09:46,"517 Cedar St, San Francisco, CA 94016" +144930,Bose SoundSport Headphones,1,99.99,01/21/19 17:43,"480 Park St, Austin, TX 73301" +144931,USB-C Charging Cable,1,11.95,01/10/19 19:18,"845 Cedar St, New York City, NY 10001" +144932,Flatscreen TV,1,300,01/23/19 12:23,"267 South St, Boston, MA 02215" +144933,Wired Headphones,1,11.99,01/04/19 23:55,"365 Adams St, Seattle, WA 98101" +,,,,, +144934,iPhone,1,700,01/23/19 12:00,"551 2nd St, Los Angeles, CA 90001" +144934,Wired Headphones,1,11.99,01/23/19 12:00,"551 2nd St, Los Angeles, CA 90001" +144935,27in 4K Gaming Monitor,1,389.99,01/25/19 18:17,"210 Meadow St, Atlanta, GA 30301" +144936,AAA Batteries (4-pack),1,2.99,01/21/19 14:18,"483 2nd St, New York City, NY 10001" +144937,USB-C Charging Cable,1,11.95,01/15/19 10:28,"817 Lakeview St, Seattle, WA 98101" +144938,USB-C Charging Cable,2,11.95,01/09/19 12:28,"385 Lakeview St, Seattle, WA 98101" +144939,Apple Airpods Headphones,2,150,01/25/19 14:35,"123 10th St, Boston, MA 02215" +144940,ThinkPad Laptop,1,999.99,01/17/19 17:11,"451 13th St, Atlanta, GA 30301" +144941,Lightning Charging Cable,1,14.95,01/10/19 01:09,"261 South St, Portland, OR 97035" +144942,USB-C Charging Cable,1,11.95,01/27/19 13:43,"726 Elm St, New York City, NY 10001" +144943,USB-C Charging Cable,1,11.95,01/17/19 15:19,"306 Park St, Austin, TX 73301" +144944,Wired Headphones,2,11.99,01/27/19 17:20,"959 Lake St, Portland, OR 97035" +144945,Wired Headphones,1,11.99,01/09/19 12:38,"398 12th St, Atlanta, GA 30301" +144946,LG Washing Machine,1,600.0,01/06/19 14:51,"458 Church St, San Francisco, CA 94016" +144947,Wired Headphones,1,11.99,01/20/19 17:01,"863 Wilson St, Dallas, TX 75001" +144948,AA Batteries (4-pack),1,3.84,01/14/19 13:05,"550 Forest St, Seattle, WA 98101" +144949,iPhone,1,700,01/17/19 14:38,"252 4th St, San Francisco, CA 94016" +144949,Wired Headphones,1,11.99,01/17/19 14:38,"252 4th St, San Francisco, CA 94016" +144950,Bose SoundSport Headphones,1,99.99,01/31/19 13:56,"304 Johnson St, Los Angeles, CA 90001" +144951,Bose SoundSport Headphones,1,99.99,01/15/19 03:41,"102 Cherry St, New York City, NY 10001" +144952,20in Monitor,1,109.99,01/04/19 09:49,"808 8th St, San Francisco, CA 94016" +144953,Apple Airpods Headphones,1,150,01/26/19 11:21,"381 Jefferson St, Boston, MA 02215" +144954,USB-C Charging Cable,1,11.95,01/09/19 15:22,"868 North St, Los Angeles, CA 90001" +144955,27in 4K Gaming Monitor,1,389.99,01/30/19 11:44,"267 12th St, Dallas, TX 75001" +144956,Bose SoundSport Headphones,1,99.99,01/21/19 12:51,"970 1st St, Los Angeles, CA 90001" +144957,iPhone,1,700,01/18/19 14:17,"638 Cherry St, San Francisco, CA 94016" +144958,Lightning Charging Cable,1,14.95,01/23/19 13:29,"702 2nd St, Atlanta, GA 30301" +144959,27in 4K Gaming Monitor,1,389.99,01/01/19 19:37,"566 Lake St, Atlanta, GA 30301" +144960,USB-C Charging Cable,1,11.95,01/28/19 10:56,"226 5th St, Los Angeles, CA 90001" +144961,27in FHD Monitor,1,149.99,01/09/19 12:39,"924 8th St, Los Angeles, CA 90001" +144962,AA Batteries (4-pack),1,3.84,01/08/19 12:30,"625 7th St, New York City, NY 10001" +144963,AA Batteries (4-pack),1,3.84,01/31/19 17:27,"510 1st St, San Francisco, CA 94016" +144964,Macbook Pro Laptop,1,1700,01/18/19 14:24,"17 Forest St, Seattle, WA 98101" +144965,Wired Headphones,1,11.99,01/02/19 20:19,"789 9th St, Seattle, WA 98101" +144966,USB-C Charging Cable,1,11.95,01/21/19 13:14,"98 Maple St, Dallas, TX 75001" +144967,USB-C Charging Cable,1,11.95,01/18/19 18:21,"680 Maple St, New York City, NY 10001" +144968,USB-C Charging Cable,1,11.95,01/01/19 14:13,"797 Dogwood St, Atlanta, GA 30301" +144969,20in Monitor,1,109.99,01/18/19 10:39,"641 13th St, Austin, TX 73301" +144970,Bose SoundSport Headphones,1,99.99,01/30/19 11:50,"859 Meadow St, Dallas, TX 75001" +144971,Lightning Charging Cable,1,14.95,01/29/19 11:21,"920 Chestnut St, Portland, OR 97035" +144972,Lightning Charging Cable,1,14.95,01/24/19 21:10,"734 5th St, Seattle, WA 98101" +144973,Macbook Pro Laptop,1,1700,01/05/19 18:16,"36 Spruce St, Los Angeles, CA 90001" +144974,Wired Headphones,1,11.99,01/26/19 19:13,"996 12th St, New York City, NY 10001" +144975,USB-C Charging Cable,1,11.95,01/09/19 16:33,"677 4th St, Seattle, WA 98101" +144976,34in Ultrawide Monitor,1,379.99,01/01/19 12:17,"468 4th St, Boston, MA 02215" +144977,Bose SoundSport Headphones,1,99.99,01/16/19 14:29,"274 Chestnut St, Atlanta, GA 30301" +144978,USB-C Charging Cable,1,11.95,01/24/19 11:07,"720 North St, Dallas, TX 75001" +144979,Flatscreen TV,1,300,01/20/19 16:07,"294 Washington St, Dallas, TX 75001" +144980,Wired Headphones,1,11.99,01/14/19 23:25,"219 Wilson St, Los Angeles, CA 90001" +144981,Bose SoundSport Headphones,1,99.99,01/10/19 07:50,"898 West St, Dallas, TX 75001" +144982,AAA Batteries (4-pack),2,2.99,01/05/19 09:36,"49 Chestnut St, Los Angeles, CA 90001" +144983,AAA Batteries (4-pack),1,2.99,01/16/19 19:08,"578 Pine St, Portland, OR 97035" +144984,Vareebadd Phone,1,400,01/10/19 13:49,"411 Center St, Boston, MA 02215" +144984,Wired Headphones,1,11.99,01/10/19 13:49,"411 Center St, Boston, MA 02215" +144985,Lightning Charging Cable,1,14.95,01/16/19 15:05,"719 Spruce St, Boston, MA 02215" +144986,Lightning Charging Cable,1,14.95,01/29/19 18:51,"699 Center St, Boston, MA 02215" +144987,27in 4K Gaming Monitor,1,389.99,01/16/19 15:32,"850 Meadow St, Portland, ME 04101" +144988,AAA Batteries (4-pack),3,2.99,01/15/19 22:32,"990 Cedar St, Los Angeles, CA 90001" +144989,Lightning Charging Cable,1,14.95,01/18/19 11:07,"153 12th St, Austin, TX 73301" +144990,AA Batteries (4-pack),1,3.84,01/26/19 09:38,"726 10th St, Dallas, TX 75001" +144991,AAA Batteries (4-pack),1,2.99,01/12/19 19:17,"231 River St, New York City, NY 10001" +144992,Lightning Charging Cable,1,14.95,01/21/19 08:50,"460 Ridge St, New York City, NY 10001" +144993,USB-C Charging Cable,1,11.95,01/11/19 09:53,"925 6th St, New York City, NY 10001" +144994,iPhone,1,700,01/17/19 12:35,"510 Main St, Los Angeles, CA 90001" +144995,Google Phone,1,600,01/06/19 14:07,"882 Jefferson St, New York City, NY 10001" +144996,Apple Airpods Headphones,1,150,01/18/19 10:43,"687 South St, Boston, MA 02215" +144997,AA Batteries (4-pack),1,3.84,01/11/19 21:26,"3 Forest St, San Francisco, CA 94016" +144998,USB-C Charging Cable,1,11.95,01/31/19 13:12,"545 Highland St, Dallas, TX 75001" +144999,USB-C Charging Cable,1,11.95,01/03/19 18:41,"486 Lake St, Portland, OR 97035" +145000,Apple Airpods Headphones,1,150,01/22/19 17:30,"93 Willow St, Los Angeles, CA 90001" +145001,AA Batteries (4-pack),1,3.84,01/08/19 16:35,"827 Cedar St, New York City, NY 10001" +145002,AA Batteries (4-pack),3,3.84,01/29/19 14:13,"486 Lake St, New York City, NY 10001" +145003,27in 4K Gaming Monitor,1,389.99,01/22/19 15:19,"26 Forest St, Atlanta, GA 30301" +145004,Apple Airpods Headphones,1,150,01/29/19 10:58,"503 South St, San Francisco, CA 94016" +145005,34in Ultrawide Monitor,1,379.99,01/29/19 21:06,"259 Pine St, San Francisco, CA 94016" +145006,iPhone,1,700,01/16/19 14:59,"488 Elm St, San Francisco, CA 94016" +145007,Flatscreen TV,1,300,01/26/19 10:28,"615 Center St, Los Angeles, CA 90001" +145008,Bose SoundSport Headphones,1,99.99,01/06/19 03:27,"798 Hill St, Seattle, WA 98101" +145009,Wired Headphones,1,11.99,01/20/19 17:45,"269 13th St, San Francisco, CA 94016" +145010,34in Ultrawide Monitor,1,379.99,01/31/19 22:14,"930 Lake St, San Francisco, CA 94016" +145011,Wired Headphones,1,11.99,01/17/19 00:06,"536 Jefferson St, New York City, NY 10001" +145012,34in Ultrawide Monitor,1,379.99,01/29/19 09:31,"552 North St, San Francisco, CA 94016" +145013,Lightning Charging Cable,1,14.95,01/29/19 23:02,"834 Center St, Atlanta, GA 30301" +145014,Apple Airpods Headphones,1,150,01/20/19 17:02,"955 Jackson St, Portland, ME 04101" +145015,Apple Airpods Headphones,1,150,01/26/19 15:27,"610 North St, Seattle, WA 98101" +145016,Lightning Charging Cable,1,14.95,01/09/19 11:11,"402 Johnson St, San Francisco, CA 94016" +145017,Google Phone,1,600,01/18/19 19:16,"579 11th St, Los Angeles, CA 90001" +145018,AA Batteries (4-pack),1,3.84,01/04/19 14:17,"253 7th St, Portland, ME 04101" +145019,iPhone,1,700,01/18/19 14:59,"785 10th St, New York City, NY 10001" +145020,AAA Batteries (4-pack),1,2.99,01/06/19 01:48,"383 10th St, New York City, NY 10001" +145021,Lightning Charging Cable,1,14.95,01/02/19 13:22,"786 Hickory St, San Francisco, CA 94016" +145022,34in Ultrawide Monitor,1,379.99,01/25/19 17:59,"598 Pine St, San Francisco, CA 94016" +145023,AA Batteries (4-pack),1,3.84,01/17/19 14:47,"987 10th St, Austin, TX 73301" +145024,AAA Batteries (4-pack),1,2.99,01/18/19 21:32,"150 Hickory St, Atlanta, GA 30301" +145025,20in Monitor,1,109.99,01/16/19 13:52,"267 6th St, San Francisco, CA 94016" +145026,27in 4K Gaming Monitor,1,389.99,01/27/19 09:29,"318 Pine St, Austin, TX 73301" +145027,USB-C Charging Cable,1,11.95,01/24/19 22:35,"960 Ridge St, San Francisco, CA 94016" +145028,USB-C Charging Cable,1,11.95,01/01/19 14:49,"925 River St, Los Angeles, CA 90001" +145029,iPhone,1,700,01/07/19 13:41,"558 2nd St, Atlanta, GA 30301" +145030,Wired Headphones,1,11.99,01/30/19 19:52,"84 Chestnut St, Boston, MA 02215" +145031,AAA Batteries (4-pack),2,2.99,01/23/19 21:32,"581 Center St, Portland, ME 04101" +145032,Google Phone,1,600,01/28/19 14:50,"175 North St, Seattle, WA 98101" +145033,Wired Headphones,2,11.99,01/26/19 20:06,"779 Johnson St, Boston, MA 02215" +145034,ThinkPad Laptop,1,999.99,01/25/19 16:34,"418 Willow St, Dallas, TX 75001" +145035,AA Batteries (4-pack),1,3.84,01/03/19 21:55,"599 Willow St, Dallas, TX 75001" +145036,USB-C Charging Cable,1,11.95,01/10/19 19:49,"184 Meadow St, Los Angeles, CA 90001" +145037,AAA Batteries (4-pack),1,2.99,01/20/19 11:02,"181 Wilson St, Atlanta, GA 30301" +145038,Wired Headphones,1,11.99,01/23/19 15:44,"958 2nd St, San Francisco, CA 94016" +145039,USB-C Charging Cable,2,11.95,01/31/19 12:35,"965 14th St, Los Angeles, CA 90001" +145040,34in Ultrawide Monitor,1,379.99,01/25/19 10:52,"984 Lakeview St, Seattle, WA 98101" +145041,Apple Airpods Headphones,1,150,01/09/19 12:09,"734 11th St, New York City, NY 10001" +145042,Bose SoundSport Headphones,1,99.99,01/09/19 18:02,"72 Dogwood St, Portland, OR 97035" +145043,ThinkPad Laptop,1,999.99,01/08/19 14:25,"250 Church St, Boston, MA 02215" +145044,Lightning Charging Cable,2,14.95,01/06/19 21:39,"781 Lake St, Dallas, TX 75001" +145045,Wired Headphones,1,11.99,01/22/19 22:17,"359 13th St, Seattle, WA 98101" +145046,Lightning Charging Cable,1,14.95,01/19/19 18:06,"905 West St, Dallas, TX 75001" +145047,USB-C Charging Cable,1,11.95,01/31/19 08:32,"310 Lake St, Seattle, WA 98101" +145048,AA Batteries (4-pack),1,3.84,01/19/19 11:46,"323 Jackson St, San Francisco, CA 94016" +145049,27in FHD Monitor,1,149.99,01/07/19 10:02,"853 Park St, San Francisco, CA 94016" +145050,AA Batteries (4-pack),1,3.84,01/23/19 13:00,"23 Lake St, Portland, OR 97035" +145051,34in Ultrawide Monitor,1,379.99,01/29/19 12:14,"178 Madison St, Austin, TX 73301" +145052,Wired Headphones,1,11.99,01/30/19 13:49,"262 North St, San Francisco, CA 94016" +145053,Wired Headphones,1,11.99,01/26/19 20:56,"990 North St, New York City, NY 10001" +145054,27in FHD Monitor,1,149.99,01/05/19 13:33,"783 10th St, San Francisco, CA 94016" +145055,AAA Batteries (4-pack),1,2.99,01/23/19 11:41,"115 Hill St, Los Angeles, CA 90001" +145056,USB-C Charging Cable,1,11.95,01/16/19 02:18,"585 Highland St, Atlanta, GA 30301" +145057,LG Washing Machine,1,600.0,01/14/19 17:03,"348 River St, San Francisco, CA 94016" +145058,Apple Airpods Headphones,1,150,01/26/19 20:31,"704 5th St, San Francisco, CA 94016" +145059,27in FHD Monitor,1,149.99,01/14/19 11:30,"867 Lake St, New York City, NY 10001" +145060,USB-C Charging Cable,1,11.95,01/19/19 10:34,"666 11th St, Boston, MA 02215" +145061,Apple Airpods Headphones,1,150,01/08/19 18:22,"850 Jefferson St, San Francisco, CA 94016" +145062,Google Phone,1,600,01/07/19 21:29,"153 Jefferson St, New York City, NY 10001" +145062,Lightning Charging Cable,2,14.95,01/07/19 21:29,"153 Jefferson St, New York City, NY 10001" +145063,27in FHD Monitor,1,149.99,01/22/19 16:52,"880 8th St, New York City, NY 10001" +145064,USB-C Charging Cable,1,11.95,01/19/19 19:21,"423 Dogwood St, Los Angeles, CA 90001" +145065,Vareebadd Phone,1,400,01/06/19 18:31,"948 6th St, New York City, NY 10001" +145066,27in 4K Gaming Monitor,1,389.99,01/14/19 17:11,"472 Center St, Austin, TX 73301" +145067,AAA Batteries (4-pack),1,2.99,01/01/19 18:15,"291 Chestnut St, Los Angeles, CA 90001" +145068,USB-C Charging Cable,1,11.95,01/12/19 20:51,"581 Center St, Los Angeles, CA 90001" +145069,AAA Batteries (4-pack),2,2.99,01/03/19 19:36,"381 South St, New York City, NY 10001" +145070,USB-C Charging Cable,1,11.95,01/22/19 00:55,"499 Center St, Atlanta, GA 30301" +145071,USB-C Charging Cable,1,11.95,01/20/19 18:35,"184 1st St, San Francisco, CA 94016" +145072,27in FHD Monitor,1,149.99,01/04/19 16:53,"331 River St, Boston, MA 02215" +145073,AAA Batteries (4-pack),2,2.99,01/28/19 11:32,"867 River St, Boston, MA 02215" +145074,Lightning Charging Cable,1,14.95,01/01/19 10:42,"919 Park St, Los Angeles, CA 90001" +145075,Lightning Charging Cable,1,14.95,01/08/19 23:12,"719 Forest St, Boston, MA 02215" +145076,AA Batteries (4-pack),1,3.84,01/15/19 22:49,"565 Madison St, San Francisco, CA 94016" +145077,Wired Headphones,1,11.99,01/30/19 12:34,"130 Meadow St, Atlanta, GA 30301" +145078,Apple Airpods Headphones,1,150,01/16/19 20:07,"386 South St, San Francisco, CA 94016" +145079,Wired Headphones,2,11.99,01/06/19 21:20,"786 13th St, Los Angeles, CA 90001" +145080,iPhone,1,700,01/28/19 07:30,"173 8th St, San Francisco, CA 94016" +145081,Bose SoundSport Headphones,1,99.99,01/22/19 14:59,"700 Lincoln St, Seattle, WA 98101" +145082,AA Batteries (4-pack),1,3.84,01/02/19 23:39,"711 4th St, Los Angeles, CA 90001" +145083,AAA Batteries (4-pack),2,2.99,01/30/19 20:07,"547 11th St, San Francisco, CA 94016" +145084,Bose SoundSport Headphones,1,99.99,01/25/19 09:40,"7 2nd St, New York City, NY 10001" +145085,AAA Batteries (4-pack),2,2.99,01/28/19 11:18,"584 Sunset St, San Francisco, CA 94016" +145086,USB-C Charging Cable,1,11.95,01/01/19 11:56,"884 Ridge St, Boston, MA 02215" +145087,Lightning Charging Cable,1,14.95,01/05/19 10:10,"915 4th St, San Francisco, CA 94016" +145088,Macbook Pro Laptop,1,1700,01/19/19 14:20,"168 River St, San Francisco, CA 94016" +145089,Wired Headphones,2,11.99,01/31/19 14:47,"513 Ridge St, Atlanta, GA 30301" +145090,Bose SoundSport Headphones,1,99.99,01/01/19 19:40,"791 13th St, Austin, TX 73301" +145091,AA Batteries (4-pack),1,3.84,01/15/19 19:46,"396 11th St, Los Angeles, CA 90001" +145092,Wired Headphones,1,11.99,01/20/19 11:41,"542 4th St, Portland, OR 97035" +145093,Apple Airpods Headphones,1,150,01/27/19 22:25,"903 Lincoln St, San Francisco, CA 94016" +145094,Lightning Charging Cable,1,14.95,01/11/19 14:26,"514 Main St, Los Angeles, CA 90001" +145095,Macbook Pro Laptop,1,1700,01/30/19 16:08,"593 Elm St, Atlanta, GA 30301" +145095,Bose SoundSport Headphones,1,99.99,01/30/19 16:08,"593 Elm St, Atlanta, GA 30301" +145096,Google Phone,1,600,01/28/19 16:36,"730 10th St, Atlanta, GA 30301" +145097,Google Phone,1,600,01/09/19 16:09,"502 Johnson St, Boston, MA 02215" +145098,AA Batteries (4-pack),1,3.84,01/17/19 12:29,"556 Washington St, New York City, NY 10001" +145099,Wired Headphones,1,11.99,01/02/19 01:31,"602 Cherry St, Seattle, WA 98101" +145100,Bose SoundSport Headphones,1,99.99,01/03/19 10:58,"148 12th St, Boston, MA 02215" +145101,USB-C Charging Cable,1,11.95,01/16/19 09:28,"147 10th St, Atlanta, GA 30301" +145102,27in FHD Monitor,1,149.99,01/12/19 10:03,"294 Elm St, Austin, TX 73301" +145103,USB-C Charging Cable,1,11.95,01/13/19 06:16,"211 7th St, San Francisco, CA 94016" +145104,Flatscreen TV,1,300,01/29/19 19:31,"818 Hickory St, Dallas, TX 75001" +145105,USB-C Charging Cable,1,11.95,01/11/19 12:07,"203 9th St, Boston, MA 02215" +145106,USB-C Charging Cable,2,11.95,01/27/19 17:14,"601 Lincoln St, New York City, NY 10001" +145107,AA Batteries (4-pack),1,3.84,01/13/19 09:41,"886 Walnut St, Los Angeles, CA 90001" +145108,20in Monitor,1,109.99,01/30/19 13:52,"900 Washington St, Los Angeles, CA 90001" +145109,Wired Headphones,2,11.99,01/21/19 19:55,"248 Lincoln St, Dallas, TX 75001" +145110,AA Batteries (4-pack),1,3.84,01/22/19 16:52,"636 Washington St, Atlanta, GA 30301" +145111,AA Batteries (4-pack),1,3.84,01/06/19 18:21,"752 South St, Dallas, TX 75001" +145112,USB-C Charging Cable,2,11.95,01/24/19 11:34,"640 12th St, Los Angeles, CA 90001" +145113,34in Ultrawide Monitor,1,379.99,01/09/19 22:11,"125 Highland St, New York City, NY 10001" +145114,Lightning Charging Cable,2,14.95,01/06/19 17:27,"899 Forest St, San Francisco, CA 94016" +145115,AAA Batteries (4-pack),2,2.99,01/12/19 11:26,"31 Wilson St, Dallas, TX 75001" +145116,Lightning Charging Cable,1,14.95,01/09/19 11:37,"485 Main St, New York City, NY 10001" +145117,27in FHD Monitor,1,149.99,01/11/19 01:20,"134 Hill St, Los Angeles, CA 90001" +145118,AA Batteries (4-pack),1,3.84,01/06/19 09:02,"27 Cherry St, Los Angeles, CA 90001" +145119,iPhone,1,700,01/14/19 11:55,"5 South St, Austin, TX 73301" +145120,Apple Airpods Headphones,1,150,01/07/19 11:53,"762 South St, San Francisco, CA 94016" +145120,20in Monitor,1,109.99,01/07/19 11:53,"762 South St, San Francisco, CA 94016" +145121,ThinkPad Laptop,1,999.99,01/26/19 19:16,"927 12th St, New York City, NY 10001" +145122,USB-C Charging Cable,2,11.95,01/12/19 09:48,"462 9th St, Atlanta, GA 30301" +145123,iPhone,1,700,01/12/19 10:55,"216 13th St, Seattle, WA 98101" +145123,Apple Airpods Headphones,1,150,01/12/19 10:55,"216 13th St, Seattle, WA 98101" +145124,Vareebadd Phone,1,400,01/04/19 14:32,"860 4th St, San Francisco, CA 94016" +145125,Bose SoundSport Headphones,1,99.99,01/10/19 12:39,"535 Spruce St, Portland, OR 97035" +145126,Lightning Charging Cable,2,14.95,01/06/19 14:15,"193 Chestnut St, New York City, NY 10001" +145127,27in FHD Monitor,1,149.99,01/26/19 15:23,"768 6th St, San Francisco, CA 94016" +145128,Wired Headphones,1,11.99,01/05/19 20:05,"824 10th St, San Francisco, CA 94016" +145129,AAA Batteries (4-pack),1,2.99,01/31/19 12:57,"79 Center St, New York City, NY 10001" +145130,Lightning Charging Cable,1,14.95,01/01/19 08:04,"362 Johnson St, Los Angeles, CA 90001" +145131,AA Batteries (4-pack),1,3.84,01/02/19 12:51,"298 Park St, Los Angeles, CA 90001" +145132,34in Ultrawide Monitor,1,379.99,01/31/19 16:05,"401 Hickory St, Seattle, WA 98101" +145133,20in Monitor,1,109.99,01/28/19 20:40,"756 5th St, Atlanta, GA 30301" +145134,Flatscreen TV,1,300,01/12/19 17:05,"406 2nd St, Dallas, TX 75001" +145135,Apple Airpods Headphones,1,150,01/26/19 22:33,"880 Maple St, Los Angeles, CA 90001" +145136,AA Batteries (4-pack),1,3.84,01/10/19 19:49,"589 Center St, Los Angeles, CA 90001" +145137,27in FHD Monitor,1,149.99,01/13/19 16:43,"158 9th St, Seattle, WA 98101" +145138,USB-C Charging Cable,1,11.95,01/18/19 21:56,"128 13th St, Los Angeles, CA 90001" +145139,AAA Batteries (4-pack),1,2.99,01/19/19 10:05,"594 Hill St, New York City, NY 10001" +145140,USB-C Charging Cable,1,11.95,01/30/19 11:34,"18 Jackson St, Dallas, TX 75001" +145141,27in FHD Monitor,1,149.99,01/23/19 11:58,"624 1st St, Portland, OR 97035" +145142,AA Batteries (4-pack),1,3.84,01/26/19 21:07,"155 West St, San Francisco, CA 94016" +145143,USB-C Charging Cable,1,11.95,01/01/19 14:10,"708 Cherry St, San Francisco, CA 94016" +145144,Apple Airpods Headphones,1,150,01/24/19 23:51,"266 13th St, Portland, OR 97035" +145145,Google Phone,1,600,01/31/19 08:32,"51 Meadow St, New York City, NY 10001" +145146,Wired Headphones,1,11.99,01/14/19 23:50,"827 Lakeview St, San Francisco, CA 94016" +145147,Apple Airpods Headphones,1,150,01/26/19 17:26,"998 Wilson St, Atlanta, GA 30301" +145148,USB-C Charging Cable,1,11.95,01/06/19 19:36,"550 Washington St, Boston, MA 02215" +145149,AA Batteries (4-pack),2,3.84,01/20/19 15:21,"967 8th St, Boston, MA 02215" +145150,34in Ultrawide Monitor,1,379.99,01/05/19 08:09,"183 Wilson St, Los Angeles, CA 90001" +145151,AAA Batteries (4-pack),1,2.99,01/21/19 08:37,"474 Lakeview St, Boston, MA 02215" +145152,Google Phone,1,600,01/17/19 10:45,"67 Jackson St, Los Angeles, CA 90001" +145152,USB-C Charging Cable,1,11.95,01/17/19 10:45,"67 Jackson St, Los Angeles, CA 90001" +145153,Apple Airpods Headphones,1,150,01/05/19 17:54,"844 4th St, Los Angeles, CA 90001" +145154,Google Phone,1,600,01/27/19 23:54,"311 Spruce St, Atlanta, GA 30301" +145155,20in Monitor,1,109.99,01/20/19 23:07,"174 11th St, San Francisco, CA 94016" +145156,iPhone,1,700,01/17/19 14:49,"771 13th St, Dallas, TX 75001" +145157,20in Monitor,1,109.99,01/27/19 19:20,"294 10th St, Atlanta, GA 30301" +145157,Bose SoundSport Headphones,1,99.99,01/27/19 19:20,"294 10th St, Atlanta, GA 30301" +145158,Apple Airpods Headphones,1,150,01/03/19 23:10,"864 Lake St, Los Angeles, CA 90001" +145159,ThinkPad Laptop,1,999.99,01/13/19 21:12,"726 Main St, Austin, TX 73301" +145160,ThinkPad Laptop,1,999.99,01/30/19 16:14,"171 Madison St, Los Angeles, CA 90001" +145161,USB-C Charging Cable,1,11.95,01/23/19 20:32,"834 Washington St, Boston, MA 02215" +145162,Lightning Charging Cable,1,14.95,01/11/19 11:35,"565 Jefferson St, Los Angeles, CA 90001" +145163,Lightning Charging Cable,1,14.95,01/05/19 11:32,"392 Maple St, Los Angeles, CA 90001" +145164,USB-C Charging Cable,1,11.95,01/19/19 18:17,"353 Jackson St, Los Angeles, CA 90001" +145165,27in 4K Gaming Monitor,1,389.99,01/29/19 16:28,"394 13th St, Los Angeles, CA 90001" +145166,USB-C Charging Cable,1,11.95,01/24/19 16:15,"670 River St, New York City, NY 10001" +145167,Macbook Pro Laptop,1,1700,01/09/19 07:55,"858 Lincoln St, San Francisco, CA 94016" +145168,AA Batteries (4-pack),1,3.84,01/14/19 19:42,"474 Lincoln St, Austin, TX 73301" +145169,Lightning Charging Cable,1,14.95,01/07/19 16:46,"181 River St, Dallas, TX 75001" +145170,Apple Airpods Headphones,1,150,01/21/19 11:47,"53 Church St, Seattle, WA 98101" +145171,20in Monitor,1,109.99,01/14/19 13:25,"466 Center St, San Francisco, CA 94016" +145172,Google Phone,1,600,01/22/19 15:27,"955 1st St, New York City, NY 10001" +145173,Wired Headphones,1,11.99,01/04/19 16:21,"964 Maple St, San Francisco, CA 94016" +145174,Google Phone,1,600,01/15/19 14:50,"622 10th St, San Francisco, CA 94016" +145174,Wired Headphones,2,11.99,01/15/19 14:50,"622 10th St, San Francisco, CA 94016" +145175,USB-C Charging Cable,1,11.95,01/12/19 10:56,"509 Lakeview St, Boston, MA 02215" +145176,iPhone,1,700,01/30/19 15:30,"926 Highland St, Seattle, WA 98101" +145177,AA Batteries (4-pack),1,3.84,01/25/19 20:15,"707 Maple St, San Francisco, CA 94016" +145178,Apple Airpods Headphones,1,150,01/19/19 22:51,"295 Meadow St, Austin, TX 73301" +145179,USB-C Charging Cable,1,11.95,01/13/19 16:00,"356 Lincoln St, San Francisco, CA 94016" +145180,Wired Headphones,1,11.99,01/23/19 14:28,"710 Park St, Portland, OR 97035" +145181,34in Ultrawide Monitor,1,379.99,01/09/19 14:41,"484 Walnut St, San Francisco, CA 94016" +145182,20in Monitor,1,109.99,01/03/19 01:08,"980 Center St, Dallas, TX 75001" +145183,34in Ultrawide Monitor,1,379.99,01/25/19 20:58,"422 4th St, Seattle, WA 98101" +145184,USB-C Charging Cable,1,11.95,01/23/19 22:14,"880 7th St, San Francisco, CA 94016" +145185,27in FHD Monitor,1,149.99,01/21/19 12:02,"94 2nd St, Austin, TX 73301" +145186,Lightning Charging Cable,1,14.95,01/22/19 16:08,"509 Park St, Seattle, WA 98101" +145187,AA Batteries (4-pack),1,3.84,01/26/19 10:53,"160 Willow St, Boston, MA 02215" +145188,iPhone,1,700,01/25/19 20:18,"50 11th St, Atlanta, GA 30301" +145189,Bose SoundSport Headphones,1,99.99,01/07/19 21:39,"470 Cedar St, Austin, TX 73301" +145190,AAA Batteries (4-pack),1,2.99,01/20/19 15:52,"357 Jackson St, San Francisco, CA 94016" +145191,Apple Airpods Headphones,1,150,01/27/19 11:06,"891 Walnut St, Atlanta, GA 30301" +145192,AA Batteries (4-pack),2,3.84,01/30/19 20:07,"175 Lakeview St, Dallas, TX 75001" +145193,USB-C Charging Cable,1,11.95,01/21/19 07:29,"782 1st St, Atlanta, GA 30301" +145194,Flatscreen TV,1,300,01/12/19 14:16,"761 10th St, Portland, OR 97035" +145195,Wired Headphones,1,11.99,01/28/19 11:15,"174 West St, Dallas, TX 75001" +145196,Wired Headphones,1,11.99,01/18/19 21:39,"110 Meadow St, San Francisco, CA 94016" +145197,AAA Batteries (4-pack),1,2.99,01/09/19 11:55,"230 Hill St, Boston, MA 02215" +145198,27in 4K Gaming Monitor,1,389.99,01/16/19 08:26,"779 Lakeview St, New York City, NY 10001" +145199,Apple Airpods Headphones,1,150,01/04/19 22:18,"42 Main St, San Francisco, CA 94016" +145200,USB-C Charging Cable,1,11.95,01/27/19 01:09,"555 Main St, New York City, NY 10001" +145201,Apple Airpods Headphones,1,150,01/26/19 21:15,"516 Sunset St, Boston, MA 02215" +145202,ThinkPad Laptop,1,999.99,01/16/19 14:35,"232 Lincoln St, Dallas, TX 75001" +145203,Apple Airpods Headphones,1,150,01/21/19 17:23,"448 Jefferson St, San Francisco, CA 94016" +145204,Vareebadd Phone,1,400,01/21/19 02:34,"266 2nd St, San Francisco, CA 94016" +145205,AAA Batteries (4-pack),2,2.99,01/11/19 23:49,"839 Spruce St, Seattle, WA 98101" +145206,Bose SoundSport Headphones,1,99.99,01/13/19 12:25,"345 Jackson St, Dallas, TX 75001" +145207,Wired Headphones,1,11.99,01/27/19 17:43,"930 Main St, San Francisco, CA 94016" +145208,Apple Airpods Headphones,1,150,01/12/19 15:28,"247 Johnson St, Austin, TX 73301" +145209,ThinkPad Laptop,1,999.99,01/26/19 13:39,"889 Hill St, Atlanta, GA 30301" +145210,AA Batteries (4-pack),1,3.84,01/10/19 14:10,"536 12th St, San Francisco, CA 94016" +145211,Apple Airpods Headphones,1,150,01/26/19 13:00,"695 Maple St, Atlanta, GA 30301" +145212,Bose SoundSport Headphones,1,99.99,01/30/19 17:23,"647 4th St, Dallas, TX 75001" +145213,Macbook Pro Laptop,1,1700,01/06/19 13:59,"667 Lincoln St, Portland, OR 97035" +145214,Lightning Charging Cable,1,14.95,01/21/19 17:02,"144 13th St, New York City, NY 10001" +145215,AAA Batteries (4-pack),1,2.99,01/15/19 19:15,"50 Hill St, San Francisco, CA 94016" +145216,34in Ultrawide Monitor,1,379.99,01/27/19 09:22,"871 Madison St, New York City, NY 10001" +145217,USB-C Charging Cable,1,11.95,01/09/19 21:12,"935 6th St, San Francisco, CA 94016" +145218,USB-C Charging Cable,1,11.95,01/24/19 10:01,"70 Adams St, Los Angeles, CA 90001" +145219,Google Phone,1,600,01/09/19 21:41,"387 Jackson St, New York City, NY 10001" +145220,Google Phone,1,600,01/24/19 07:03,"177 9th St, Atlanta, GA 30301" +145220,USB-C Charging Cable,1,11.95,01/24/19 07:03,"177 9th St, Atlanta, GA 30301" +145220,Wired Headphones,1,11.99,01/24/19 07:03,"177 9th St, Atlanta, GA 30301" +145221,27in FHD Monitor,1,149.99,01/08/19 09:39,"313 6th St, San Francisco, CA 94016" +145222,ThinkPad Laptop,1,999.99,01/27/19 22:26,"497 West St, Portland, OR 97035" +145223,Wired Headphones,1,11.99,01/23/19 06:07,"201 Pine St, Seattle, WA 98101" +145224,Lightning Charging Cable,1,14.95,01/30/19 22:45,"407 Meadow St, Portland, OR 97035" +145225,Vareebadd Phone,1,400,01/19/19 12:28,"247 Maple St, Los Angeles, CA 90001" +145226,AAA Batteries (4-pack),1,2.99,01/22/19 18:03,"806 North St, Portland, OR 97035" +145227,27in 4K Gaming Monitor,1,389.99,01/19/19 21:06,"245 Meadow St, San Francisco, CA 94016" +145228,ThinkPad Laptop,1,999.99,01/22/19 19:52,"13 14th St, Boston, MA 02215" +145229,34in Ultrawide Monitor,1,379.99,01/16/19 16:06,"486 Cherry St, Boston, MA 02215" +145230,27in 4K Gaming Monitor,1,389.99,01/17/19 15:24,"984 Ridge St, San Francisco, CA 94016" +145231,27in 4K Gaming Monitor,1,389.99,01/14/19 10:24,"853 Jackson St, Seattle, WA 98101" +145232,Wired Headphones,1,11.99,01/23/19 18:33,"127 Ridge St, Los Angeles, CA 90001" +145233,Wired Headphones,2,11.99,01/23/19 21:05,"592 North St, San Francisco, CA 94016" +145234,Wired Headphones,1,11.99,01/30/19 16:14,"414 Sunset St, Boston, MA 02215" +145235,AA Batteries (4-pack),2,3.84,01/17/19 16:53,"332 14th St, Los Angeles, CA 90001" +145236,Wired Headphones,1,11.99,01/03/19 08:20,"647 11th St, Boston, MA 02215" +145237,USB-C Charging Cable,1,11.95,01/02/19 16:58,"839 Chestnut St, Los Angeles, CA 90001" +145238,Apple Airpods Headphones,1,150,01/24/19 15:57,"74 Spruce St, San Francisco, CA 94016" +145239,AAA Batteries (4-pack),2,2.99,01/09/19 15:57,"298 Cherry St, Dallas, TX 75001" +145240,AA Batteries (4-pack),1,3.84,01/06/19 11:08,"14 11th St, Atlanta, GA 30301" +145241,34in Ultrawide Monitor,1,379.99,01/30/19 22:31,"638 Adams St, Seattle, WA 98101" +145241,iPhone,1,700,01/30/19 22:31,"638 Adams St, Seattle, WA 98101" +145242,Apple Airpods Headphones,1,150,01/14/19 14:51,"63 Elm St, Los Angeles, CA 90001" +,,,,, +145243,34in Ultrawide Monitor,1,379.99,01/15/19 15:51,"885 5th St, Dallas, TX 75001" +145244,Lightning Charging Cable,1,14.95,01/09/19 11:05,"648 Church St, San Francisco, CA 94016" +145245,AAA Batteries (4-pack),1,2.99,01/12/19 22:23,"867 2nd St, New York City, NY 10001" +145246,Lightning Charging Cable,1,14.95,01/16/19 22:00,"284 Elm St, Los Angeles, CA 90001" +145247,Apple Airpods Headphones,1,150,01/02/19 07:40,"602 8th St, New York City, NY 10001" +145248,USB-C Charging Cable,1,11.95,01/02/19 08:55,"169 12th St, Los Angeles, CA 90001" +145249,Flatscreen TV,1,300,01/18/19 19:49,"795 Park St, Dallas, TX 75001" +145250,USB-C Charging Cable,1,11.95,01/18/19 13:05,"729 12th St, Boston, MA 02215" +145251,Wired Headphones,3,11.99,01/26/19 10:26,"386 12th St, Los Angeles, CA 90001" +145252,AA Batteries (4-pack),1,3.84,01/23/19 12:16,"707 Johnson St, Seattle, WA 98101" +145253,Apple Airpods Headphones,1,150,01/09/19 06:59,"339 Madison St, Atlanta, GA 30301" +145254,Wired Headphones,1,11.99,01/28/19 18:22,"788 1st St, New York City, NY 10001" +145255,Lightning Charging Cable,1,14.95,01/26/19 09:09,"194 5th St, San Francisco, CA 94016" +145256,34in Ultrawide Monitor,1,379.99,01/20/19 20:55,"204 Adams St, Dallas, TX 75001" +145257,AAA Batteries (4-pack),1,2.99,01/02/19 23:35,"66 Maple St, Atlanta, GA 30301" +145258,AAA Batteries (4-pack),1,2.99,01/31/19 06:35,"577 10th St, San Francisco, CA 94016" +145259,Lightning Charging Cable,1,14.95,01/11/19 18:26,"714 Lakeview St, Seattle, WA 98101" +145260,Flatscreen TV,1,300,01/17/19 12:53,"760 1st St, Los Angeles, CA 90001" +145261,20in Monitor,1,109.99,01/26/19 00:38,"941 Maple St, San Francisco, CA 94016" +145262,AAA Batteries (4-pack),1,2.99,01/09/19 08:41,"556 Pine St, Los Angeles, CA 90001" +145263,20in Monitor,1,109.99,01/29/19 16:14,"657 West St, San Francisco, CA 94016" +145264,USB-C Charging Cable,2,11.95,01/29/19 18:17,"593 River St, Dallas, TX 75001" +145265,34in Ultrawide Monitor,1,379.99,01/26/19 20:05,"578 River St, New York City, NY 10001" +145266,Lightning Charging Cable,1,14.95,01/10/19 17:27,"12 14th St, Seattle, WA 98101" +145267,Google Phone,1,600,01/09/19 10:55,"938 South St, Seattle, WA 98101" +145268,34in Ultrawide Monitor,1,379.99,01/28/19 20:13,"362 Meadow St, Boston, MA 02215" +145269,Wired Headphones,1,11.99,01/08/19 19:30,"241 Park St, New York City, NY 10001" +145270,USB-C Charging Cable,1,11.95,01/23/19 18:40,"624 Maple St, San Francisco, CA 94016" +145271,Flatscreen TV,1,300,01/16/19 20:59,"394 Chestnut St, Los Angeles, CA 90001" +145272,Wired Headphones,1,11.99,01/11/19 13:32,"79 2nd St, San Francisco, CA 94016" +145273,AA Batteries (4-pack),1,3.84,01/23/19 12:21,"425 7th St, Portland, OR 97035" +145274,Apple Airpods Headphones,1,150,01/29/19 14:14,"929 Ridge St, Seattle, WA 98101" +145275,AA Batteries (4-pack),1,3.84,01/09/19 02:33,"3 9th St, Seattle, WA 98101" +145276,Apple Airpods Headphones,1,150,01/03/19 18:21,"111 11th St, San Francisco, CA 94016" +145277,Macbook Pro Laptop,1,1700,01/11/19 17:50,"43 Highland St, Los Angeles, CA 90001" +145278,Apple Airpods Headphones,1,150,01/21/19 20:48,"921 Madison St, Los Angeles, CA 90001" +145279,Wired Headphones,1,11.99,01/26/19 14:11,"406 Maple St, Atlanta, GA 30301" +145280,AAA Batteries (4-pack),1,2.99,01/28/19 12:34,"218 Adams St, Los Angeles, CA 90001" +145281,Macbook Pro Laptop,1,1700,01/14/19 12:17,"536 Lincoln St, San Francisco, CA 94016" +145282,USB-C Charging Cable,1,11.95,01/06/19 00:19,"260 Cherry St, San Francisco, CA 94016" +145283,AA Batteries (4-pack),1,3.84,01/09/19 15:41,"794 Lake St, Seattle, WA 98101" +145284,USB-C Charging Cable,1,11.95,01/16/19 20:25,"298 South St, Austin, TX 73301" +145285,USB-C Charging Cable,1,11.95,01/30/19 16:07,"952 10th St, San Francisco, CA 94016" +145286,Macbook Pro Laptop,1,1700,01/13/19 05:58,"206 Cherry St, Boston, MA 02215" +145287,Bose SoundSport Headphones,1,99.99,01/20/19 10:07,"776 Adams St, Boston, MA 02215" +,,,,, +145288,Bose SoundSport Headphones,1,99.99,01/18/19 19:48,"501 Dogwood St, Dallas, TX 75001" +145289,Lightning Charging Cable,1,14.95,01/05/19 18:05,"19 7th St, San Francisco, CA 94016" +145290,AA Batteries (4-pack),1,3.84,01/26/19 17:10,"3 Lake St, San Francisco, CA 94016" +145291,AAA Batteries (4-pack),1,2.99,01/05/19 20:51,"38 South St, Los Angeles, CA 90001" +145292,27in FHD Monitor,1,149.99,01/06/19 10:19,"687 Jefferson St, Atlanta, GA 30301" +145293,Wired Headphones,1,11.99,01/18/19 22:03,"6 Center St, Seattle, WA 98101" +145294,27in FHD Monitor,1,149.99,01/23/19 20:43,"861 5th St, Atlanta, GA 30301" +145295,20in Monitor,1,109.99,01/14/19 18:37,"224 Willow St, Los Angeles, CA 90001" +145296,AA Batteries (4-pack),1,3.84,01/17/19 21:19,"909 Chestnut St, Atlanta, GA 30301" +145297,Bose SoundSport Headphones,1,99.99,01/17/19 06:50,"175 Church St, Dallas, TX 75001" +145298,AA Batteries (4-pack),2,3.84,01/03/19 20:22,"609 Lakeview St, Los Angeles, CA 90001" +145299,Apple Airpods Headphones,1,150,01/18/19 18:42,"528 Hickory St, San Francisco, CA 94016" +145300,AAA Batteries (4-pack),1,2.99,01/23/19 18:58,"449 Forest St, Los Angeles, CA 90001" +145301,34in Ultrawide Monitor,1,379.99,01/30/19 15:02,"500 Wilson St, San Francisco, CA 94016" +145302,Apple Airpods Headphones,1,150,01/08/19 21:29,"886 Elm St, New York City, NY 10001" +145303,USB-C Charging Cable,1,11.95,01/04/19 00:19,"889 14th St, Austin, TX 73301" +145304,AAA Batteries (4-pack),1,2.99,01/11/19 12:43,"275 South St, Boston, MA 02215" +145305,Wired Headphones,1,11.99,01/21/19 12:02,"44 Ridge St, Atlanta, GA 30301" +145306,Apple Airpods Headphones,1,150,01/19/19 19:09,"745 Walnut St, San Francisco, CA 94016" +145307,AA Batteries (4-pack),2,3.84,01/01/19 19:21,"938 Park St, San Francisco, CA 94016" +145308,ThinkPad Laptop,1,999.99,01/15/19 21:53,"654 9th St, San Francisco, CA 94016" +145309,Bose SoundSport Headphones,1,99.99,01/27/19 08:47,"291 10th St, Dallas, TX 75001" +145310,AA Batteries (4-pack),1,3.84,01/02/19 21:54,"528 11th St, San Francisco, CA 94016" +145311,Apple Airpods Headphones,1,150,01/23/19 20:32,"202 Cedar St, New York City, NY 10001" +145312,Lightning Charging Cable,1,14.95,01/03/19 16:01,"283 South St, Austin, TX 73301" +145313,USB-C Charging Cable,1,11.95,01/01/19 14:07,"690 Wilson St, San Francisco, CA 94016" +145314,Lightning Charging Cable,1,14.95,01/04/19 13:25,"437 North St, San Francisco, CA 94016" +145315,AAA Batteries (4-pack),1,2.99,01/26/19 20:16,"117 Dogwood St, Seattle, WA 98101" +145316,Lightning Charging Cable,1,14.95,01/21/19 23:44,"928 Pine St, Boston, MA 02215" +145317,Wired Headphones,1,11.99,01/03/19 14:38,"377 Cherry St, Atlanta, GA 30301" +145318,Lightning Charging Cable,1,14.95,01/26/19 12:21,"373 Sunset St, San Francisco, CA 94016" +145319,Macbook Pro Laptop,1,1700,01/26/19 00:05,"521 10th St, San Francisco, CA 94016" +145320,AA Batteries (4-pack),1,3.84,01/27/19 23:46,"497 Walnut St, Los Angeles, CA 90001" +145321,AA Batteries (4-pack),5,3.84,01/03/19 21:09,"22 14th St, San Francisco, CA 94016" +145322,Lightning Charging Cable,1,14.95,01/14/19 09:47,"906 12th St, Los Angeles, CA 90001" +145323,Flatscreen TV,1,300,01/20/19 09:46,"52 Cherry St, New York City, NY 10001" +145324,20in Monitor,1,109.99,01/17/19 14:11,"452 Lake St, Los Angeles, CA 90001" +145325,AA Batteries (4-pack),1,3.84,01/11/19 12:11,"868 Elm St, Los Angeles, CA 90001" +145326,LG Dryer,1,600.0,01/12/19 23:45,"227 12th St, San Francisco, CA 94016" +145327,ThinkPad Laptop,1,999.99,01/02/19 12:18,"17 Church St, New York City, NY 10001" +145328,Vareebadd Phone,1,400,01/15/19 08:36,"730 Maple St, Austin, TX 73301" +145329,Lightning Charging Cable,1,14.95,01/25/19 20:25,"647 Cherry St, New York City, NY 10001" +145330,Lightning Charging Cable,1,14.95,01/08/19 18:51,"105 11th St, Boston, MA 02215" +145331,USB-C Charging Cable,1,11.95,01/31/19 23:33,"747 8th St, San Francisco, CA 94016" +145332,AAA Batteries (4-pack),1,2.99,01/27/19 16:57,"665 Dogwood St, San Francisco, CA 94016" +145333,USB-C Charging Cable,1,11.95,01/04/19 23:58,"271 Chestnut St, Seattle, WA 98101" +145334,34in Ultrawide Monitor,1,379.99,01/02/19 19:00,"245 Jefferson St, Austin, TX 73301" +145335,34in Ultrawide Monitor,1,379.99,01/13/19 14:54,"838 Walnut St, Austin, TX 73301" +145336,Lightning Charging Cable,1,14.95,01/29/19 11:28,"290 Lake St, New York City, NY 10001" +145337,USB-C Charging Cable,1,11.95,01/01/19 20:28,"442 Lakeview St, Austin, TX 73301" +145338,iPhone,1,700,01/09/19 16:14,"314 South St, Los Angeles, CA 90001" +145338,Lightning Charging Cable,1,14.95,01/09/19 16:14,"314 South St, Los Angeles, CA 90001" +145339,USB-C Charging Cable,1,11.95,01/31/19 11:53,"653 9th St, Los Angeles, CA 90001" +145340,Lightning Charging Cable,1,14.95,01/18/19 15:37,"463 Sunset St, Dallas, TX 75001" +145341,AA Batteries (4-pack),2,3.84,01/15/19 07:49,"205 Church St, Boston, MA 02215" +145342,Flatscreen TV,1,300,01/14/19 08:45,"105 10th St, Boston, MA 02215" +145343,Wired Headphones,1,11.99,01/22/19 22:41,"909 West St, San Francisco, CA 94016" +145343,Macbook Pro Laptop,1,1700,01/22/19 22:41,"909 West St, San Francisco, CA 94016" +145344,Bose SoundSport Headphones,1,99.99,01/07/19 16:40,"944 River St, Seattle, WA 98101" +145345,Apple Airpods Headphones,1,150,01/29/19 10:16,"425 Cedar St, Boston, MA 02215" +145346,27in FHD Monitor,1,149.99,01/01/19 12:40,"168 7th St, San Francisco, CA 94016" +145347,Lightning Charging Cable,1,14.95,01/07/19 20:20,"181 Jefferson St, Los Angeles, CA 90001" +145348,Bose SoundSport Headphones,1,99.99,01/11/19 14:51,"908 Lake St, Los Angeles, CA 90001" +145349,AA Batteries (4-pack),1,3.84,01/19/19 20:44,"91 Wilson St, San Francisco, CA 94016" +145350,27in 4K Gaming Monitor,1,389.99,01/18/19 09:45,"427 14th St, Los Angeles, CA 90001" +145351,27in FHD Monitor,1,149.99,01/31/19 23:33,"860 West St, Portland, OR 97035" +145352,Vareebadd Phone,1,400,01/11/19 08:01,"232 13th St, Boston, MA 02215" +145352,Wired Headphones,1,11.99,01/11/19 08:01,"232 13th St, Boston, MA 02215" +145352,27in 4K Gaming Monitor,1,389.99,01/11/19 08:01,"232 13th St, Boston, MA 02215" +145353,AA Batteries (4-pack),1,3.84,01/22/19 18:07,"945 Meadow St, Los Angeles, CA 90001" +145354,Apple Airpods Headphones,1,150,01/28/19 14:32,"641 Washington St, Portland, OR 97035" +145355,ThinkPad Laptop,1,999.99,01/27/19 23:18,"763 Main St, Boston, MA 02215" +145356,34in Ultrawide Monitor,1,379.99,01/20/19 14:29,"542 Lakeview St, Atlanta, GA 30301" +145357,34in Ultrawide Monitor,1,379.99,01/10/19 01:19,"660 11th St, Boston, MA 02215" +145358,27in FHD Monitor,1,149.99,01/13/19 19:32,"378 Ridge St, Boston, MA 02215" +145359,Bose SoundSport Headphones,1,99.99,01/25/19 16:28,"747 7th St, Los Angeles, CA 90001" +145359,Apple Airpods Headphones,1,150,01/25/19 16:28,"747 7th St, Los Angeles, CA 90001" +145360,USB-C Charging Cable,2,11.95,01/31/19 01:12,"794 Lake St, New York City, NY 10001" +145361,ThinkPad Laptop,1,999.99,01/31/19 18:37,"412 Lake St, Dallas, TX 75001" +145362,AA Batteries (4-pack),1,3.84,01/16/19 14:43,"331 Walnut St, San Francisco, CA 94016" +145363,20in Monitor,1,109.99,01/21/19 22:36,"430 Jefferson St, New York City, NY 10001" +145364,USB-C Charging Cable,1,11.95,01/25/19 22:10,"563 11th St, San Francisco, CA 94016" +145365,AAA Batteries (4-pack),1,2.99,01/28/19 22:31,"25 Hill St, Boston, MA 02215" +145366,Apple Airpods Headphones,1,150,01/12/19 14:53,"100 Madison St, San Francisco, CA 94016" +145367,Bose SoundSport Headphones,1,99.99,01/18/19 12:00,"296 7th St, San Francisco, CA 94016" +145368,USB-C Charging Cable,1,11.95,01/31/19 21:52,"708 5th St, Los Angeles, CA 90001" +145369,Google Phone,1,600,01/21/19 22:03,"133 Lake St, San Francisco, CA 94016" +145370,Wired Headphones,1,11.99,01/19/19 19:18,"470 Hill St, Austin, TX 73301" +145371,USB-C Charging Cable,1,11.95,01/24/19 17:32,"618 North St, Boston, MA 02215" +145372,AA Batteries (4-pack),1,3.84,01/20/19 15:48,"233 Highland St, New York City, NY 10001" +145373,27in FHD Monitor,1,149.99,01/02/19 23:37,"348 Park St, New York City, NY 10001" +145374,USB-C Charging Cable,1,11.95,01/07/19 12:00,"492 Hickory St, San Francisco, CA 94016" +145375,34in Ultrawide Monitor,1,379.99,01/18/19 19:35,"716 14th St, Portland, OR 97035" +145376,AA Batteries (4-pack),3,3.84,01/27/19 04:44,"272 Cherry St, San Francisco, CA 94016" +145377,Lightning Charging Cable,1,14.95,01/19/19 22:01,"435 Walnut St, Boston, MA 02215" +145378,AA Batteries (4-pack),2,3.84,01/06/19 00:38,"968 13th St, Los Angeles, CA 90001" +145379,AAA Batteries (4-pack),1,2.99,01/22/19 13:04,"842 Spruce St, Austin, TX 73301" +145380,AA Batteries (4-pack),1,3.84,01/26/19 00:11,"4 Washington St, Seattle, WA 98101" +145381,Lightning Charging Cable,1,14.95,01/09/19 12:25,"798 Hickory St, New York City, NY 10001" +145382,ThinkPad Laptop,1,999.99,01/15/19 11:21,"802 4th St, San Francisco, CA 94016" +145383,Apple Airpods Headphones,1,150,01/07/19 11:58,"366 Cherry St, Los Angeles, CA 90001" +145384,Lightning Charging Cable,1,14.95,01/28/19 11:26,"143 Cedar St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +145385,Lightning Charging Cable,1,14.95,01/15/19 10:58,"519 Jackson St, Los Angeles, CA 90001" +145386,AA Batteries (4-pack),1,3.84,01/26/19 19:27,"481 Lakeview St, Austin, TX 73301" +145387,Wired Headphones,1,11.99,01/12/19 08:47,"585 Pine St, Boston, MA 02215" +145388,AAA Batteries (4-pack),1,2.99,01/31/19 15:26,"285 Sunset St, San Francisco, CA 94016" +145389,USB-C Charging Cable,1,11.95,01/30/19 18:17,"117 14th St, Austin, TX 73301" +145390,Wired Headphones,1,11.99,01/10/19 14:30,"703 5th St, Austin, TX 73301" +145391,27in 4K Gaming Monitor,1,389.99,01/29/19 18:44,"61 7th St, Austin, TX 73301" +145392,USB-C Charging Cable,1,11.95,01/28/19 15:18,"219 11th St, San Francisco, CA 94016" +145393,27in FHD Monitor,2,149.99,01/14/19 23:16,"65 Ridge St, New York City, NY 10001" +145394,AA Batteries (4-pack),1,3.84,01/22/19 14:26,"141 River St, Portland, OR 97035" +145395,Wired Headphones,1,11.99,01/04/19 15:43,"430 Chestnut St, San Francisco, CA 94016" +145396,Wired Headphones,1,11.99,01/15/19 13:16,"364 Washington St, San Francisco, CA 94016" +145397,Apple Airpods Headphones,1,150,01/06/19 20:26,"709 11th St, Austin, TX 73301" +145398,27in 4K Gaming Monitor,1,389.99,01/30/19 19:36,"847 Wilson St, New York City, NY 10001" +145399,iPhone,1,700,01/14/19 19:23,"959 6th St, Portland, OR 97035" +145399,Lightning Charging Cable,1,14.95,01/14/19 19:23,"959 6th St, Portland, OR 97035" +145400,USB-C Charging Cable,1,11.95,01/08/19 16:26,"511 7th St, Los Angeles, CA 90001" +145401,27in FHD Monitor,1,149.99,01/14/19 15:11,"623 6th St, Dallas, TX 75001" +145402,Lightning Charging Cable,1,14.95,01/14/19 08:41,"335 Chestnut St, Atlanta, GA 30301" +145403,27in FHD Monitor,1,149.99,01/01/19 20:41,"610 Jackson St, New York City, NY 10001" +145404,Wired Headphones,1,11.99,01/02/19 17:27,"505 9th St, San Francisco, CA 94016" +145405,Wired Headphones,1,11.99,01/15/19 07:12,"450 Forest St, Los Angeles, CA 90001" +145406,AAA Batteries (4-pack),1,2.99,01/25/19 23:23,"17 Jefferson St, San Francisco, CA 94016" +145407,Google Phone,1,600,01/28/19 14:33,"98 14th St, New York City, NY 10001" +145408,Wired Headphones,1,11.99,01/20/19 22:28,"672 Adams St, Los Angeles, CA 90001" +145409,USB-C Charging Cable,1,11.95,01/31/19 06:39,"994 Elm St, Boston, MA 02215" +145410,AAA Batteries (4-pack),1,2.99,01/30/19 15:39,"503 2nd St, Boston, MA 02215" +145411,AAA Batteries (4-pack),3,2.99,01/14/19 13:03,"589 1st St, Portland, ME 04101" +145412,Google Phone,1,600,01/02/19 14:28,"282 Johnson St, Los Angeles, CA 90001" +145413,27in FHD Monitor,1,149.99,01/24/19 11:09,"671 Walnut St, Los Angeles, CA 90001" +145414,iPhone,1,700,01/19/19 10:23,"218 5th St, Boston, MA 02215" +145415,USB-C Charging Cable,1,11.95,01/12/19 13:42,"848 13th St, Portland, OR 97035" +145416,Bose SoundSport Headphones,1,99.99,01/15/19 11:39,"348 Walnut St, San Francisco, CA 94016" +145417,Wired Headphones,1,11.99,01/22/19 18:30,"956 Washington St, Dallas, TX 75001" +145418,USB-C Charging Cable,1,11.95,01/21/19 21:11,"560 Spruce St, San Francisco, CA 94016" +145419,34in Ultrawide Monitor,1,379.99,01/07/19 20:22,"154 13th St, Boston, MA 02215" +145420,AAA Batteries (4-pack),3,2.99,01/29/19 18:51,"829 Chestnut St, San Francisco, CA 94016" +145421,AA Batteries (4-pack),1,3.84,01/07/19 19:55,"65 Highland St, Portland, OR 97035" +145422,AA Batteries (4-pack),1,3.84,01/21/19 21:59,"703 Ridge St, Seattle, WA 98101" +145423,27in 4K Gaming Monitor,1,389.99,01/08/19 10:50,"449 Main St, Atlanta, GA 30301" +145424,Wired Headphones,1,11.99,01/25/19 11:17,"677 Ridge St, San Francisco, CA 94016" +145425,USB-C Charging Cable,2,11.95,01/20/19 11:13,"985 1st St, Los Angeles, CA 90001" +145426,AA Batteries (4-pack),1,3.84,01/24/19 16:55,"749 4th St, Dallas, TX 75001" +145427,AA Batteries (4-pack),2,3.84,01/27/19 15:19,"148 South St, San Francisco, CA 94016" +145427,20in Monitor,1,109.99,01/27/19 15:19,"148 South St, San Francisco, CA 94016" +145428,USB-C Charging Cable,1,11.95,01/08/19 17:21,"411 10th St, Portland, OR 97035" +145429,Bose SoundSport Headphones,1,99.99,01/20/19 22:33,"21 10th St, Boston, MA 02215" +145430,34in Ultrawide Monitor,1,379.99,01/03/19 21:14,"247 Sunset St, Atlanta, GA 30301" +145431,Apple Airpods Headphones,1,150,01/01/19 10:56,"668 Forest St, Los Angeles, CA 90001" +145432,AAA Batteries (4-pack),1,2.99,01/08/19 20:23,"632 Hill St, Los Angeles, CA 90001" +145433,ThinkPad Laptop,1,999.99,01/21/19 09:00,"560 1st St, Los Angeles, CA 90001" +145434,Wired Headphones,1,11.99,01/15/19 21:08,"265 Johnson St, San Francisco, CA 94016" +145435,iPhone,1,700,01/08/19 22:00,"400 Highland St, New York City, NY 10001" +145435,Lightning Charging Cable,1,14.95,01/08/19 22:00,"400 Highland St, New York City, NY 10001" +145436,Flatscreen TV,1,300,01/11/19 09:25,"929 Lincoln St, New York City, NY 10001" +145437,Vareebadd Phone,1,400,01/30/19 12:40,"589 Chestnut St, New York City, NY 10001" +145438,Lightning Charging Cable,1,14.95,01/01/19 14:56,"75 4th St, Boston, MA 02215" +145439,34in Ultrawide Monitor,1,379.99,01/03/19 12:06,"857 10th St, Atlanta, GA 30301" +145440,Apple Airpods Headphones,1,150,01/29/19 19:01,"570 Pine St, Los Angeles, CA 90001" +145441,Bose SoundSport Headphones,1,99.99,01/14/19 08:46,"146 6th St, Boston, MA 02215" +145442,AA Batteries (4-pack),1,3.84,01/19/19 15:46,"128 West St, San Francisco, CA 94016" +145443,AA Batteries (4-pack),1,3.84,01/05/19 20:01,"455 South St, New York City, NY 10001" +145444,Lightning Charging Cable,1,14.95,01/01/19 07:59,"175 13th St, San Francisco, CA 94016" +145445,AAA Batteries (4-pack),1,2.99,01/21/19 08:34,"53 Jackson St, San Francisco, CA 94016" +145446,Lightning Charging Cable,1,14.95,01/06/19 16:53,"355 4th St, Dallas, TX 75001" +145447,Lightning Charging Cable,1,14.95,01/03/19 11:28,"294 2nd St, San Francisco, CA 94016" +145448,AAA Batteries (4-pack),5,2.99,01/22/19 20:01,"73 13th St, San Francisco, CA 94016" +145449,AAA Batteries (4-pack),1,2.99,01/05/19 20:42,"466 1st St, Los Angeles, CA 90001" +145450,27in FHD Monitor,1,149.99,01/05/19 21:17,"142 Highland St, Austin, TX 73301" +145451,AAA Batteries (4-pack),1,2.99,01/03/19 21:39,"97 Church St, San Francisco, CA 94016" +,,,,, +145452,AAA Batteries (4-pack),1,2.99,01/19/19 09:27,"83 Forest St, Atlanta, GA 30301" +145453,AA Batteries (4-pack),1,3.84,01/12/19 17:38,"101 1st St, San Francisco, CA 94016" +145454,Wired Headphones,1,11.99,01/20/19 07:13,"499 Washington St, San Francisco, CA 94016" +145455,AAA Batteries (4-pack),2,2.99,01/25/19 15:47,"788 Hill St, Dallas, TX 75001" +145456,AA Batteries (4-pack),1,3.84,01/25/19 10:15,"709 12th St, Dallas, TX 75001" +145457,Wired Headphones,1,11.99,01/23/19 23:20,"469 Hickory St, Atlanta, GA 30301" +145458,USB-C Charging Cable,1,11.95,01/21/19 19:55,"730 Adams St, Dallas, TX 75001" +145459,Lightning Charging Cable,1,14.95,01/18/19 11:49,"912 Spruce St, Los Angeles, CA 90001" +145460,AAA Batteries (4-pack),2,2.99,01/26/19 11:50,"836 South St, Los Angeles, CA 90001" +145461,USB-C Charging Cable,1,11.95,01/08/19 22:23,"754 Willow St, Los Angeles, CA 90001" +145462,Wired Headphones,1,11.99,01/16/19 23:11,"116 North St, New York City, NY 10001" +145463,AA Batteries (4-pack),1,3.84,01/30/19 08:53,"476 Sunset St, San Francisco, CA 94016" +145464,Apple Airpods Headphones,1,150,01/08/19 00:17,"62 Wilson St, San Francisco, CA 94016" +145465,AA Batteries (4-pack),1,3.84,01/02/19 19:31,"173 Lincoln St, New York City, NY 10001" +145466,Apple Airpods Headphones,1,150,01/22/19 13:35,"233 Park St, New York City, NY 10001" +145467,USB-C Charging Cable,1,11.95,01/22/19 23:53,"166 Hickory St, Boston, MA 02215" +145468,27in FHD Monitor,1,149.99,01/11/19 17:24,"910 Ridge St, San Francisco, CA 94016" +145469,Lightning Charging Cable,1,14.95,01/28/19 18:01,"727 Walnut St, Los Angeles, CA 90001" +145470,Google Phone,1,600,01/02/19 19:25,"135 South St, Portland, OR 97035" +145470,USB-C Charging Cable,1,11.95,01/02/19 19:25,"135 South St, Portland, OR 97035" +145471,AA Batteries (4-pack),1,3.84,01/21/19 20:49,"22 Dogwood St, San Francisco, CA 94016" +145472,27in FHD Monitor,1,149.99,01/31/19 10:47,"963 1st St, Boston, MA 02215" +145473,Wired Headphones,1,11.99,01/19/19 23:30,"438 Cedar St, Los Angeles, CA 90001" +145474,27in FHD Monitor,1,149.99,01/05/19 10:18,"492 Church St, San Francisco, CA 94016" +145475,Apple Airpods Headphones,1,150,01/31/19 00:02,"897 1st St, Boston, MA 02215" +145476,USB-C Charging Cable,1,11.95,01/31/19 18:16,"299 Willow St, San Francisco, CA 94016" +145477,34in Ultrawide Monitor,1,379.99,01/31/19 20:23,"475 Walnut St, Dallas, TX 75001" +145478,Apple Airpods Headphones,1,150,01/16/19 20:39,"538 Center St, San Francisco, CA 94016" +145479,Lightning Charging Cable,1,14.95,01/06/19 16:00,"15 Ridge St, Austin, TX 73301" +145480,Lightning Charging Cable,1,14.95,01/14/19 21:08,"194 Hill St, Boston, MA 02215" +145481,AAA Batteries (4-pack),2,2.99,01/31/19 12:03,"430 8th St, Boston, MA 02215" +145482,Flatscreen TV,1,300,01/03/19 15:57,"157 Wilson St, Los Angeles, CA 90001" +145483,Vareebadd Phone,1,400,01/21/19 22:22,"848 Spruce St, Seattle, WA 98101" +145483,USB-C Charging Cable,1,11.95,01/21/19 22:22,"848 Spruce St, Seattle, WA 98101" +145484,iPhone,1,700,01/17/19 10:17,"879 Park St, Boston, MA 02215" +145484,Lightning Charging Cable,1,14.95,01/17/19 10:17,"879 Park St, Boston, MA 02215" +145485,20in Monitor,1,109.99,01/19/19 23:11,"268 Jackson St, Los Angeles, CA 90001" +145486,AA Batteries (4-pack),2,3.84,01/20/19 07:16,"45 Highland St, San Francisco, CA 94016" +145487,Wired Headphones,1,11.99,01/30/19 12:18,"649 Lakeview St, San Francisco, CA 94016" +145488,USB-C Charging Cable,1,11.95,01/05/19 21:48,"300 Hill St, Seattle, WA 98101" +145489,Flatscreen TV,1,300,01/05/19 11:15,"300 9th St, Austin, TX 73301" +145490,Apple Airpods Headphones,1,150,01/09/19 17:17,"96 Spruce St, San Francisco, CA 94016" +145491,USB-C Charging Cable,1,11.95,01/24/19 21:14,"160 Lincoln St, Dallas, TX 75001" +145492,Lightning Charging Cable,2,14.95,01/01/19 11:39,"689 5th St, Austin, TX 73301" +145493,Bose SoundSport Headphones,1,99.99,01/07/19 20:35,"563 Center St, Boston, MA 02215" +145494,Flatscreen TV,1,300,01/03/19 15:06,"285 7th St, San Francisco, CA 94016" +145495,Wired Headphones,1,11.99,01/23/19 16:57,"978 2nd St, Atlanta, GA 30301" +145496,AAA Batteries (4-pack),1,2.99,01/18/19 20:57,"27 11th St, San Francisco, CA 94016" +145497,Wired Headphones,1,11.99,01/28/19 12:04,"380 4th St, San Francisco, CA 94016" +145498,AAA Batteries (4-pack),3,2.99,01/31/19 15:23,"207 7th St, San Francisco, CA 94016" +,,,,, +145499,USB-C Charging Cable,1,11.95,01/06/19 23:44,"816 Madison St, Los Angeles, CA 90001" +145500,Macbook Pro Laptop,1,1700,01/07/19 20:42,"610 Church St, Los Angeles, CA 90001" +145501,AAA Batteries (4-pack),1,2.99,01/23/19 17:04,"282 7th St, Seattle, WA 98101" +145502,34in Ultrawide Monitor,1,379.99,01/16/19 12:31,"425 5th St, San Francisco, CA 94016" +145503,AA Batteries (4-pack),1,3.84,01/15/19 20:48,"869 Ridge St, New York City, NY 10001" +145504,AAA Batteries (4-pack),2,2.99,01/01/19 19:28,"163 2nd St, Boston, MA 02215" +145505,USB-C Charging Cable,2,11.95,01/23/19 08:35,"540 Lake St, San Francisco, CA 94016" +145505,USB-C Charging Cable,1,11.95,01/23/19 08:35,"540 Lake St, San Francisco, CA 94016" +145506,USB-C Charging Cable,2,11.95,01/08/19 22:35,"587 11th St, San Francisco, CA 94016" +145507,USB-C Charging Cable,1,11.95,01/02/19 12:06,"119 Dogwood St, San Francisco, CA 94016" +145508,Wired Headphones,1,11.99,01/30/19 13:30,"502 Chestnut St, Portland, OR 97035" +145509,27in FHD Monitor,1,149.99,01/07/19 07:21,"856 7th St, Dallas, TX 75001" +145510,AAA Batteries (4-pack),4,2.99,01/06/19 16:42,"246 Wilson St, San Francisco, CA 94016" +145511,Lightning Charging Cable,1,14.95,01/19/19 21:32,"926 Elm St, San Francisco, CA 94016" +145512,AAA Batteries (4-pack),1,2.99,01/22/19 14:15,"354 Johnson St, Boston, MA 02215" +145513,Wired Headphones,1,11.99,01/26/19 11:36,"362 14th St, San Francisco, CA 94016" +145514,Apple Airpods Headphones,1,150,01/09/19 18:49,"77 9th St, New York City, NY 10001" +145515,AA Batteries (4-pack),2,3.84,01/31/19 10:52,"659 Maple St, San Francisco, CA 94016" +145516,Bose SoundSport Headphones,1,99.99,01/26/19 10:33,"430 North St, San Francisco, CA 94016" +145517,Google Phone,1,600,01/05/19 23:14,"455 Washington St, New York City, NY 10001" +145518,Lightning Charging Cable,1,14.95,01/29/19 11:36,"848 Washington St, New York City, NY 10001" +145519,iPhone,1,700,01/12/19 11:38,"646 Madison St, Atlanta, GA 30301" +145520,AAA Batteries (4-pack),2,2.99,01/03/19 20:34,"793 Park St, Seattle, WA 98101" +145521,Lightning Charging Cable,1,14.95,01/29/19 15:13,"399 Center St, Los Angeles, CA 90001" +145522,27in FHD Monitor,1,149.99,01/29/19 17:23,"604 Lakeview St, Austin, TX 73301" +145523,USB-C Charging Cable,1,11.95,01/27/19 01:04,"738 Main St, San Francisco, CA 94016" +145524,AAA Batteries (4-pack),1,2.99,01/25/19 21:35,"994 12th St, Seattle, WA 98101" +145525,Lightning Charging Cable,2,14.95,01/23/19 13:12,"765 Maple St, New York City, NY 10001" +145526,Apple Airpods Headphones,1,150,01/12/19 19:24,"786 7th St, Dallas, TX 75001" +145527,Lightning Charging Cable,1,14.95,01/11/19 21:17,"179 Washington St, New York City, NY 10001" +145528,Apple Airpods Headphones,1,150,01/11/19 18:57,"423 Sunset St, Boston, MA 02215" +145529,AA Batteries (4-pack),1,3.84,01/16/19 00:59,"469 South St, New York City, NY 10001" +145530,Lightning Charging Cable,1,14.95,01/19/19 18:44,"595 5th St, San Francisco, CA 94016" +145531,USB-C Charging Cable,1,11.95,01/08/19 21:18,"277 Walnut St, San Francisco, CA 94016" +145532,27in FHD Monitor,1,149.99,01/02/19 13:50,"406 West St, Dallas, TX 75001" +145533,AA Batteries (4-pack),1,3.84,01/14/19 12:47,"395 South St, Dallas, TX 75001" +145534,Apple Airpods Headphones,1,150,01/22/19 17:07,"700 Hickory St, New York City, NY 10001" +145534,AAA Batteries (4-pack),1,2.99,01/22/19 17:07,"700 Hickory St, New York City, NY 10001" +145535,Wired Headphones,2,11.99,01/25/19 01:50,"537 Maple St, San Francisco, CA 94016" +145536,34in Ultrawide Monitor,1,379.99,01/23/19 12:49,"748 14th St, San Francisco, CA 94016" +145537,Apple Airpods Headphones,1,150,01/12/19 11:49,"588 Dogwood St, San Francisco, CA 94016" +145538,20in Monitor,1,109.99,01/18/19 15:55,"782 Park St, Boston, MA 02215" +145539,Bose SoundSport Headphones,1,99.99,01/20/19 16:54,"911 Hill St, New York City, NY 10001" +145540,Lightning Charging Cable,1,14.95,01/01/19 04:15,"106 7th St, Atlanta, GA 30301" +145541,iPhone,1,700,01/05/19 22:55,"218 South St, Boston, MA 02215" +145542,AA Batteries (4-pack),1,3.84,01/01/19 19:47,"536 Spruce St, Atlanta, GA 30301" +145543,Lightning Charging Cable,1,14.95,01/24/19 08:17,"94 Highland St, Atlanta, GA 30301" +145544,Wired Headphones,2,11.99,01/24/19 01:03,"32 Highland St, San Francisco, CA 94016" +145545,USB-C Charging Cable,1,11.95,01/02/19 15:47,"675 14th St, New York City, NY 10001" +145546,Apple Airpods Headphones,1,150,01/03/19 01:37,"164 9th St, San Francisco, CA 94016" +145547,AA Batteries (4-pack),1,3.84,01/08/19 14:38,"877 Dogwood St, New York City, NY 10001" +145548,Apple Airpods Headphones,1,150,01/19/19 22:33,"418 Johnson St, San Francisco, CA 94016" +145549,Bose SoundSport Headphones,1,99.99,01/28/19 13:34,"385 River St, Boston, MA 02215" +145550,USB-C Charging Cable,1,11.95,01/14/19 15:18,"149 Hickory St, San Francisco, CA 94016" +145551,ThinkPad Laptop,1,999.99,01/08/19 16:42,"991 Church St, Atlanta, GA 30301" +145552,Apple Airpods Headphones,1,150,01/04/19 21:11,"288 Elm St, Los Angeles, CA 90001" +145553,Apple Airpods Headphones,1,150,01/26/19 18:08,"332 Lincoln St, Portland, OR 97035" +145554,AAA Batteries (4-pack),2,2.99,01/10/19 15:53,"278 Lake St, San Francisco, CA 94016" +145555,Wired Headphones,2,11.99,01/23/19 18:34,"411 11th St, San Francisco, CA 94016" +145556,AA Batteries (4-pack),1,3.84,01/14/19 10:58,"470 Madison St, San Francisco, CA 94016" +145557,Wired Headphones,1,11.99,01/30/19 06:56,"197 Johnson St, San Francisco, CA 94016" +145558,ThinkPad Laptop,1,999.99,01/21/19 16:31,"404 Sunset St, Atlanta, GA 30301" +145558,Wired Headphones,1,11.99,01/21/19 16:31,"404 Sunset St, Atlanta, GA 30301" +145559,Google Phone,1,600,01/07/19 15:29,"765 Center St, Boston, MA 02215" +145560,iPhone,1,700,01/23/19 13:00,"420 6th St, Los Angeles, CA 90001" +145561,Bose SoundSport Headphones,1,99.99,01/20/19 15:59,"827 Highland St, Austin, TX 73301" +145562,Apple Airpods Headphones,1,150,01/24/19 15:06,"747 Jefferson St, Boston, MA 02215" +145563,USB-C Charging Cable,2,11.95,01/21/19 20:43,"866 5th St, Seattle, WA 98101" +145564,AAA Batteries (4-pack),1,2.99,01/12/19 16:44,"597 Ridge St, New York City, NY 10001" +145565,Lightning Charging Cable,1,14.95,01/11/19 17:04,"605 2nd St, Atlanta, GA 30301" +145566,AA Batteries (4-pack),1,3.84,01/16/19 10:37,"99 7th St, New York City, NY 10001" +145567,Lightning Charging Cable,2,14.95,01/07/19 18:07,"994 Washington St, New York City, NY 10001" +145568,AA Batteries (4-pack),1,3.84,01/13/19 18:54,"781 8th St, Boston, MA 02215" +145569,AAA Batteries (4-pack),1,2.99,01/01/19 15:45,"244 11th St, San Francisco, CA 94016" +145570,Lightning Charging Cable,1,14.95,01/10/19 00:03,"202 Jefferson St, Seattle, WA 98101" +145571,27in 4K Gaming Monitor,1,389.99,01/13/19 20:29,"728 Adams St, San Francisco, CA 94016" +145572,AA Batteries (4-pack),1,3.84,01/05/19 21:43,"139 1st St, Boston, MA 02215" +145573,Google Phone,1,600,01/22/19 19:45,"430 Walnut St, San Francisco, CA 94016" +145574,Apple Airpods Headphones,1,150,01/23/19 16:31,"334 Cherry St, New York City, NY 10001" +145575,27in 4K Gaming Monitor,1,389.99,01/20/19 23:52,"582 Church St, Boston, MA 02215" +145576,Lightning Charging Cable,1,14.95,01/03/19 19:38,"182 1st St, Atlanta, GA 30301" +145577,USB-C Charging Cable,1,11.95,01/23/19 18:02,"89 Dogwood St, San Francisco, CA 94016" +145578,AAA Batteries (4-pack),1,2.99,01/20/19 11:47,"782 5th St, Seattle, WA 98101" +145579,AAA Batteries (4-pack),1,2.99,01/08/19 14:32,"750 Washington St, New York City, NY 10001" +145580,USB-C Charging Cable,1,11.95,01/31/19 22:53,"863 Sunset St, Dallas, TX 75001" +145581,AA Batteries (4-pack),1,3.84,01/13/19 14:59,"250 Center St, Austin, TX 73301" +145582,Apple Airpods Headphones,1,150,01/28/19 17:03,"785 Johnson St, Boston, MA 02215" +145583,27in FHD Monitor,1,149.99,01/09/19 10:48,"952 Spruce St, Los Angeles, CA 90001" +145584,USB-C Charging Cable,1,11.95,01/23/19 16:01,"287 Park St, Dallas, TX 75001" +145584,Bose SoundSport Headphones,1,99.99,01/23/19 16:01,"287 Park St, Dallas, TX 75001" +145585,AA Batteries (4-pack),1,3.84,01/16/19 19:48,"873 Center St, Atlanta, GA 30301" +145586,AA Batteries (4-pack),1,3.84,01/01/19 16:51,"339 4th St, Los Angeles, CA 90001" +145587,Bose SoundSport Headphones,1,99.99,01/20/19 15:28,"504 Jefferson St, Portland, ME 04101" +145588,AAA Batteries (4-pack),1,2.99,01/04/19 09:37,"191 Sunset St, Portland, ME 04101" +145589,AAA Batteries (4-pack),1,2.99,01/03/19 21:23,"135 6th St, Portland, OR 97035" +145590,Lightning Charging Cable,1,14.95,01/28/19 00:52,"352 Jackson St, Boston, MA 02215" +145591,AAA Batteries (4-pack),1,2.99,01/17/19 15:12,"766 Madison St, San Francisco, CA 94016" +145592,AAA Batteries (4-pack),1,2.99,01/22/19 21:49,"595 Wilson St, Seattle, WA 98101" +145593,Wired Headphones,1,11.99,01/16/19 15:07,"997 Elm St, New York City, NY 10001" +145593,Wired Headphones,1,11.99,01/16/19 15:07,"997 Elm St, New York City, NY 10001" +145594,AA Batteries (4-pack),1,3.84,01/18/19 11:00,"912 Cedar St, Portland, OR 97035" +145595,AA Batteries (4-pack),1,3.84,01/18/19 15:17,"129 Forest St, Austin, TX 73301" +145596,AA Batteries (4-pack),1,3.84,01/28/19 16:05,"970 Walnut St, Seattle, WA 98101" +145597,Lightning Charging Cable,1,14.95,01/12/19 16:22,"100 Adams St, Portland, OR 97035" +145598,Macbook Pro Laptop,1,1700,01/12/19 21:25,"599 River St, New York City, NY 10001" +145599,Apple Airpods Headphones,1,150,01/11/19 20:16,"66 2nd St, Seattle, WA 98101" +145600,34in Ultrawide Monitor,1,379.99,01/22/19 20:28,"254 Hickory St, Seattle, WA 98101" +145601,Macbook Pro Laptop,1,1700,01/14/19 07:47,"683 Jefferson St, Dallas, TX 75001" +145602,Lightning Charging Cable,1,14.95,01/26/19 11:51,"218 Church St, Portland, OR 97035" +145603,Flatscreen TV,1,300,01/29/19 08:25,"340 4th St, Los Angeles, CA 90001" +145604,27in FHD Monitor,1,149.99,01/30/19 18:56,"562 Dogwood St, San Francisco, CA 94016" +145605,USB-C Charging Cable,1,11.95,01/09/19 13:24,"171 Elm St, Portland, ME 04101" +145606,AA Batteries (4-pack),1,3.84,01/02/19 20:40,"832 Church St, Seattle, WA 98101" +145607,Flatscreen TV,1,300,01/30/19 12:52,"973 Jackson St, Los Angeles, CA 90001" +145608,27in FHD Monitor,1,149.99,01/04/19 16:52,"957 Jackson St, New York City, NY 10001" +145609,iPhone,1,700,01/06/19 18:14,"6 Forest St, Boston, MA 02215" +145609,Lightning Charging Cable,1,14.95,01/06/19 18:14,"6 Forest St, Boston, MA 02215" +145610,USB-C Charging Cable,1,11.95,01/14/19 14:01,"417 8th St, New York City, NY 10001" +145611,AA Batteries (4-pack),1,3.84,01/01/19 16:17,"57 8th St, Los Angeles, CA 90001" +145612,27in FHD Monitor,1,149.99,01/30/19 18:58,"366 10th St, Portland, OR 97035" +145613,Bose SoundSport Headphones,1,99.99,01/10/19 13:08,"223 Cedar St, Austin, TX 73301" +145614,Apple Airpods Headphones,1,150,01/28/19 15:08,"173 Jefferson St, San Francisco, CA 94016" +145615,Wired Headphones,2,11.99,01/29/19 09:32,"143 Dogwood St, San Francisco, CA 94016" +145616,AAA Batteries (4-pack),1,2.99,01/19/19 09:25,"466 9th St, New York City, NY 10001" +145617,AA Batteries (4-pack),3,3.84,01/15/19 15:41,"28 7th St, San Francisco, CA 94016" +145618,AA Batteries (4-pack),2,3.84,01/30/19 12:51,"719 Washington St, Atlanta, GA 30301" +145619,AA Batteries (4-pack),1,3.84,01/23/19 18:01,"837 Adams St, San Francisco, CA 94016" +145620,iPhone,1,700,01/09/19 23:25,"972 Lakeview St, San Francisco, CA 94016" +145621,Google Phone,1,600,01/17/19 11:30,"387 5th St, Dallas, TX 75001" +145621,USB-C Charging Cable,1,11.95,01/17/19 11:30,"387 5th St, Dallas, TX 75001" +145622,AAA Batteries (4-pack),2,2.99,01/28/19 18:47,"818 Hill St, San Francisco, CA 94016" +145623,USB-C Charging Cable,1,11.95,01/20/19 23:14,"752 Jackson St, Seattle, WA 98101" +145624,USB-C Charging Cable,1,11.95,01/04/19 18:39,"471 Washington St, Los Angeles, CA 90001" +145625,Macbook Pro Laptop,1,1700,01/17/19 21:59,"728 Church St, Boston, MA 02215" +145626,Lightning Charging Cable,1,14.95,01/25/19 17:07,"152 Johnson St, San Francisco, CA 94016" +145627,USB-C Charging Cable,1,11.95,01/17/19 11:16,"793 Spruce St, New York City, NY 10001" +145628,27in 4K Gaming Monitor,1,389.99,01/27/19 01:35,"729 Lakeview St, San Francisco, CA 94016" +145629,Lightning Charging Cable,1,14.95,01/23/19 22:06,"517 Cedar St, San Francisco, CA 94016" +145630,27in FHD Monitor,1,149.99,01/28/19 21:48,"413 Lincoln St, Los Angeles, CA 90001" +145631,AA Batteries (4-pack),2,3.84,01/03/19 07:46,"755 Willow St, Atlanta, GA 30301" +145632,AAA Batteries (4-pack),2,2.99,01/11/19 12:53,"863 Wilson St, Austin, TX 73301" +145633,ThinkPad Laptop,1,999.99,01/18/19 21:53,"715 Walnut St, Seattle, WA 98101" +145634,Wired Headphones,1,11.99,01/10/19 22:35,"38 4th St, Los Angeles, CA 90001" +145635,Google Phone,1,600,01/09/19 22:00,"972 Center St, New York City, NY 10001" +145636,AAA Batteries (4-pack),3,2.99,01/21/19 09:49,"257 Elm St, Dallas, TX 75001" +145637,Macbook Pro Laptop,1,1700,01/21/19 13:59,"446 Church St, New York City, NY 10001" +145638,Bose SoundSport Headphones,1,99.99,01/08/19 13:14,"182 River St, New York City, NY 10001" +145639,AAA Batteries (4-pack),2,2.99,01/14/19 16:22,"627 1st St, San Francisco, CA 94016" +145640,Bose SoundSport Headphones,1,99.99,01/05/19 09:25,"993 1st St, Portland, OR 97035" +145641,AA Batteries (4-pack),2,3.84,01/26/19 15:45,"878 Meadow St, New York City, NY 10001" +145642,Lightning Charging Cable,1,14.95,01/18/19 17:25,"524 Lincoln St, Boston, MA 02215" +145643,27in 4K Gaming Monitor,1,389.99,01/25/19 13:46,"46 Center St, Atlanta, GA 30301" +145644,Wired Headphones,1,11.99,01/21/19 12:26,"176 South St, Portland, OR 97035" +145645,Lightning Charging Cable,1,14.95,01/05/19 18:24,"453 Hickory St, Seattle, WA 98101" +145646,Apple Airpods Headphones,1,150,01/15/19 21:59,"680 Ridge St, Boston, MA 02215" +145647,iPhone,1,700,01/01/19 03:40,"655 Meadow St, Boston, MA 02215" +145648,Flatscreen TV,1,300,01/19/19 18:43,"318 13th St, Los Angeles, CA 90001" +145649,Flatscreen TV,1,300,01/22/19 17:37,"286 Walnut St, New York City, NY 10001" +145650,Bose SoundSport Headphones,1,99.99,01/13/19 11:00,"417 Center St, San Francisco, CA 94016" +145651,Wired Headphones,2,11.99,01/14/19 10:55,"304 1st St, Portland, ME 04101" +145652,Flatscreen TV,1,300,01/25/19 10:35,"239 Hickory St, Los Angeles, CA 90001" +145653,27in 4K Gaming Monitor,1,389.99,01/16/19 21:31,"387 7th St, New York City, NY 10001" +145654,Apple Airpods Headphones,1,150,01/05/19 21:22,"150 Elm St, Los Angeles, CA 90001" +145655,AAA Batteries (4-pack),3,2.99,01/15/19 11:07,"253 7th St, Portland, OR 97035" +145656,AA Batteries (4-pack),1,3.84,01/17/19 04:55,"697 2nd St, Dallas, TX 75001" +145657,27in FHD Monitor,1,149.99,01/05/19 12:50,"919 Park St, Dallas, TX 75001" +145658,USB-C Charging Cable,1,11.95,01/31/19 22:52,"944 Center St, Los Angeles, CA 90001" +145659,AAA Batteries (4-pack),2,2.99,01/26/19 17:46,"329 Johnson St, Los Angeles, CA 90001" +145659,Wired Headphones,1,11.99,01/26/19 17:46,"329 Johnson St, Los Angeles, CA 90001" +145660,Flatscreen TV,1,300,01/08/19 08:50,"585 Washington St, Los Angeles, CA 90001" +145661,27in 4K Gaming Monitor,1,389.99,01/15/19 10:38,"846 North St, Los Angeles, CA 90001" +145662,LG Dryer,1,600.0,01/20/19 20:18,"473 Dogwood St, Boston, MA 02215" +145663,AAA Batteries (4-pack),1,2.99,01/22/19 08:43,"362 9th St, Portland, OR 97035" +145664,Lightning Charging Cable,1,14.95,01/22/19 21:32,"345 Willow St, Dallas, TX 75001" +145665,34in Ultrawide Monitor,1,379.99,01/06/19 14:40,"458 9th St, San Francisco, CA 94016" +145666,ThinkPad Laptop,1,999.99,01/06/19 13:18,"155 Cherry St, Portland, ME 04101" +145667,USB-C Charging Cable,1,11.95,01/07/19 13:29,"278 11th St, Los Angeles, CA 90001" +145668,Lightning Charging Cable,1,14.95,01/23/19 21:01,"583 9th St, San Francisco, CA 94016" +145669,Bose SoundSport Headphones,1,99.99,01/28/19 18:57,"33 Walnut St, San Francisco, CA 94016" +145670,Bose SoundSport Headphones,1,99.99,01/25/19 20:42,"108 2nd St, New York City, NY 10001" +145671,Vareebadd Phone,1,400,01/07/19 09:02,"11 Park St, San Francisco, CA 94016" +145671,USB-C Charging Cable,1,11.95,01/07/19 09:02,"11 Park St, San Francisco, CA 94016" +145671,Wired Headphones,1,11.99,01/07/19 09:02,"11 Park St, San Francisco, CA 94016" +145672,USB-C Charging Cable,1,11.95,01/23/19 17:36,"530 8th St, Austin, TX 73301" +145673,Lightning Charging Cable,1,14.95,01/24/19 22:35,"893 Highland St, Seattle, WA 98101" +145674,iPhone,1,700,01/26/19 20:51,"916 Willow St, San Francisco, CA 94016" +145674,Lightning Charging Cable,1,14.95,01/26/19 20:51,"916 Willow St, San Francisco, CA 94016" +145675,Vareebadd Phone,1,400,01/08/19 15:37,"876 Elm St, Seattle, WA 98101" +145676,AAA Batteries (4-pack),1,2.99,01/14/19 15:21,"827 2nd St, Los Angeles, CA 90001" +145677,27in 4K Gaming Monitor,1,389.99,01/21/19 19:54,"258 Maple St, Austin, TX 73301" +145678,Apple Airpods Headphones,1,150,01/20/19 11:33,"506 South St, New York City, NY 10001" +145679,USB-C Charging Cable,1,11.95,01/10/19 11:54,"700 7th St, San Francisco, CA 94016" +145680,Lightning Charging Cable,1,14.95,01/04/19 22:31,"948 9th St, Austin, TX 73301" +145681,20in Monitor,1,109.99,01/03/19 11:44,"493 Lakeview St, San Francisco, CA 94016" +145682,Flatscreen TV,1,300,01/05/19 02:01,"718 Willow St, Los Angeles, CA 90001" +145683,Google Phone,1,600,01/23/19 11:14,"246 10th St, Seattle, WA 98101" +145684,34in Ultrawide Monitor,1,379.99,01/17/19 20:27,"459 Center St, San Francisco, CA 94016" +145685,Lightning Charging Cable,1,14.95,01/12/19 16:12,"915 Walnut St, Boston, MA 02215" +145686,Lightning Charging Cable,2,14.95,01/02/19 17:29,"665 13th St, San Francisco, CA 94016" +145687,Lightning Charging Cable,1,14.95,01/12/19 16:49,"150 Lake St, San Francisco, CA 94016" +145688,Macbook Pro Laptop,1,1700,01/31/19 20:22,"903 Maple St, San Francisco, CA 94016" +145689,Bose SoundSport Headphones,1,99.99,01/02/19 00:56,"235 Hickory St, Austin, TX 73301" +145690,AAA Batteries (4-pack),1,2.99,01/16/19 13:58,"785 Church St, Boston, MA 02215" +145691,Apple Airpods Headphones,1,150,01/12/19 12:38,"550 Lake St, San Francisco, CA 94016" +145692,27in 4K Gaming Monitor,1,389.99,01/16/19 11:05,"478 4th St, Los Angeles, CA 90001" +145692,Bose SoundSport Headphones,1,99.99,01/16/19 11:05,"478 4th St, Los Angeles, CA 90001" +145693,Wired Headphones,1,11.99,01/10/19 13:50,"600 Washington St, Los Angeles, CA 90001" +145694,Wired Headphones,1,11.99,01/27/19 20:56,"570 Wilson St, Austin, TX 73301" +145695,USB-C Charging Cable,2,11.95,01/02/19 10:20,"273 South St, Dallas, TX 75001" +145696,Lightning Charging Cable,1,14.95,01/30/19 23:21,"914 Pine St, Los Angeles, CA 90001" +145697,Vareebadd Phone,1,400,01/27/19 19:25,"453 Main St, Los Angeles, CA 90001" +145698,Wired Headphones,1,11.99,01/05/19 20:30,"647 Madison St, San Francisco, CA 94016" +145699,Bose SoundSport Headphones,1,99.99,01/06/19 17:19,"115 Church St, Atlanta, GA 30301" +145700,Apple Airpods Headphones,1,150,01/12/19 20:20,"28 Hickory St, San Francisco, CA 94016" +145701,Macbook Pro Laptop,1,1700,02/01/19 02:33,"18 Cedar St, San Francisco, CA 94016" +145702,20in Monitor,1,109.99,01/22/19 11:35,"181 Maple St, Boston, MA 02215" +145703,USB-C Charging Cable,1,11.95,01/20/19 22:13,"647 Cherry St, Los Angeles, CA 90001" +145704,Flatscreen TV,1,300,01/04/19 13:04,"125 6th St, New York City, NY 10001" +145705,Wired Headphones,1,11.99,01/08/19 09:03,"874 Dogwood St, Austin, TX 73301" +145706,20in Monitor,1,109.99,01/16/19 22:48,"322 Church St, Austin, TX 73301" +145707,AA Batteries (4-pack),2,3.84,01/13/19 16:57,"636 Spruce St, New York City, NY 10001" +145708,34in Ultrawide Monitor,1,379.99,01/07/19 20:09,"583 5th St, San Francisco, CA 94016" +145709,AA Batteries (4-pack),1,3.84,01/28/19 11:58,"978 1st St, Los Angeles, CA 90001" +145710,27in 4K Gaming Monitor,1,389.99,01/02/19 12:52,"572 Cherry St, Los Angeles, CA 90001" +145711,Lightning Charging Cable,1,14.95,01/05/19 16:10,"25 Church St, San Francisco, CA 94016" +145712,Lightning Charging Cable,1,14.95,01/22/19 08:03,"969 11th St, San Francisco, CA 94016" +145713,27in 4K Gaming Monitor,1,389.99,01/07/19 22:55,"554 11th St, Los Angeles, CA 90001" +145714,Bose SoundSport Headphones,1,99.99,01/07/19 19:22,"353 12th St, New York City, NY 10001" +145715,Google Phone,1,600,01/14/19 07:26,"454 Meadow St, Los Angeles, CA 90001" +145716,Lightning Charging Cable,1,14.95,01/10/19 01:40,"196 Ridge St, New York City, NY 10001" +145717,20in Monitor,1,109.99,01/27/19 12:16,"106 Lakeview St, Boston, MA 02215" +145718,Apple Airpods Headphones,1,150,01/26/19 19:28,"70 Sunset St, Austin, TX 73301" +145719,Wired Headphones,1,11.99,01/21/19 17:37,"23 14th St, San Francisco, CA 94016" +145720,iPhone,1,700,01/10/19 11:54,"250 4th St, Atlanta, GA 30301" +145721,Google Phone,1,600,01/01/19 21:49,"916 Forest St, Portland, OR 97035" +145722,AAA Batteries (4-pack),1,2.99,01/05/19 14:33,"36 14th St, Los Angeles, CA 90001" +145723,27in 4K Gaming Monitor,1,389.99,01/19/19 14:57,"389 West St, Boston, MA 02215" +145724,AA Batteries (4-pack),1,3.84,01/23/19 06:52,"127 Maple St, Los Angeles, CA 90001" +145725,Wired Headphones,2,11.99,01/25/19 15:32,"191 Center St, Los Angeles, CA 90001" +145726,20in Monitor,1,109.99,01/16/19 08:28,"989 Ridge St, New York City, NY 10001" +145727,Lightning Charging Cable,1,14.95,01/01/19 19:07,"908 Walnut St, Portland, OR 97035" +145728,Google Phone,1,600,01/16/19 07:11,"253 Lake St, San Francisco, CA 94016" +145728,USB-C Charging Cable,1,11.95,01/16/19 07:11,"253 Lake St, San Francisco, CA 94016" +145729,34in Ultrawide Monitor,1,379.99,01/23/19 11:00,"36 Spruce St, San Francisco, CA 94016" +145730,Wired Headphones,1,11.99,01/31/19 20:58,"918 Jefferson St, Portland, OR 97035" +145731,27in 4K Gaming Monitor,1,389.99,01/01/19 15:36,"522 Cherry St, Los Angeles, CA 90001" +145732,Apple Airpods Headphones,1,150,01/13/19 14:50,"870 Elm St, Dallas, TX 75001" +145733,AAA Batteries (4-pack),1,2.99,01/07/19 11:44,"99 Dogwood St, New York City, NY 10001" +145734,Vareebadd Phone,1,400,01/03/19 19:04,"375 Wilson St, Boston, MA 02215" +145735,AAA Batteries (4-pack),2,2.99,01/05/19 16:43,"658 Cherry St, Seattle, WA 98101" +145736,Wired Headphones,1,11.99,01/03/19 12:04,"94 4th St, Los Angeles, CA 90001" +145737,USB-C Charging Cable,1,11.95,01/04/19 15:30,"389 Meadow St, Los Angeles, CA 90001" +145738,Lightning Charging Cable,1,14.95,01/22/19 01:01,"104 South St, San Francisco, CA 94016" +145739,ThinkPad Laptop,1,999.99,01/23/19 18:35,"428 Hill St, Seattle, WA 98101" +145740,AAA Batteries (4-pack),1,2.99,01/08/19 21:02,"603 Hickory St, New York City, NY 10001" +145741,USB-C Charging Cable,1,11.95,01/11/19 18:46,"86 Jefferson St, San Francisco, CA 94016" +145742,Lightning Charging Cable,1,14.95,01/31/19 22:46,"577 12th St, Boston, MA 02215" +145743,AA Batteries (4-pack),5,3.84,01/12/19 19:12,"560 Washington St, San Francisco, CA 94016" +145744,27in 4K Gaming Monitor,1,389.99,01/21/19 21:04,"19 Johnson St, Los Angeles, CA 90001" +145745,Flatscreen TV,1,300,01/28/19 15:56,"900 Lakeview St, Los Angeles, CA 90001" +145746,34in Ultrawide Monitor,1,379.99,01/08/19 20:35,"774 Cherry St, Boston, MA 02215" +145747,Wired Headphones,1,11.99,01/26/19 18:41,"264 Washington St, Boston, MA 02215" +145748,AA Batteries (4-pack),1,3.84,01/27/19 06:35,"259 Jackson St, Dallas, TX 75001" +145749,34in Ultrawide Monitor,1,379.99,01/27/19 21:40,"652 West St, Dallas, TX 75001" +145750,Flatscreen TV,1,300,01/23/19 22:10,"44 Lakeview St, San Francisco, CA 94016" +145751,Flatscreen TV,1,300,01/07/19 06:25,"168 Elm St, Boston, MA 02215" +145752,USB-C Charging Cable,1,11.95,01/06/19 19:50,"125 4th St, Los Angeles, CA 90001" +145753,Bose SoundSport Headphones,1,99.99,01/13/19 20:43,"114 4th St, Los Angeles, CA 90001" +145754,27in 4K Gaming Monitor,1,389.99,01/26/19 19:26,"716 Hickory St, San Francisco, CA 94016" +145755,Apple Airpods Headphones,1,150,01/14/19 18:44,"500 West St, Boston, MA 02215" +145756,AAA Batteries (4-pack),2,2.99,01/04/19 15:34,"636 Willow St, Seattle, WA 98101" +145757,AAA Batteries (4-pack),2,2.99,01/18/19 14:27,"126 12th St, Los Angeles, CA 90001" +145758,Apple Airpods Headphones,1,150,01/13/19 19:04,"512 Pine St, Seattle, WA 98101" +145759,Bose SoundSport Headphones,1,99.99,01/01/19 07:15,"55 1st St, Boston, MA 02215" +145760,AAA Batteries (4-pack),1,2.99,01/12/19 20:09,"447 11th St, Austin, TX 73301" +145761,Apple Airpods Headphones,1,150,01/31/19 20:06,"965 Jefferson St, Los Angeles, CA 90001" +145762,Wired Headphones,1,11.99,01/31/19 13:21,"265 8th St, San Francisco, CA 94016" +145763,Google Phone,1,600,01/05/19 11:17,"486 5th St, Boston, MA 02215" +145764,AA Batteries (4-pack),2,3.84,01/19/19 09:39,"437 Washington St, San Francisco, CA 94016" +145765,27in 4K Gaming Monitor,1,389.99,01/27/19 11:46,"860 Johnson St, Atlanta, GA 30301" +145766,34in Ultrawide Monitor,1,379.99,01/09/19 17:00,"223 Jackson St, Seattle, WA 98101" +145767,ThinkPad Laptop,1,999.99,01/22/19 22:54,"215 Meadow St, San Francisco, CA 94016" +145768,Apple Airpods Headphones,1,150,01/15/19 09:25,"708 Hill St, Los Angeles, CA 90001" +145769,27in FHD Monitor,1,149.99,01/23/19 16:32,"301 7th St, Seattle, WA 98101" +145770,ThinkPad Laptop,1,999.99,01/29/19 16:01,"332 Elm St, San Francisco, CA 94016" +145771,Apple Airpods Headphones,1,150,01/28/19 18:58,"185 Willow St, San Francisco, CA 94016" +145772,Lightning Charging Cable,1,14.95,01/11/19 21:37,"223 Elm St, New York City, NY 10001" +145773,Apple Airpods Headphones,1,150,01/07/19 10:39,"227 9th St, Boston, MA 02215" +145774,27in FHD Monitor,1,149.99,01/30/19 15:54,"15 6th St, San Francisco, CA 94016" +145775,AAA Batteries (4-pack),1,2.99,01/25/19 00:27,"179 1st St, Seattle, WA 98101" +145776,USB-C Charging Cable,1,11.95,01/20/19 20:55,"903 8th St, Los Angeles, CA 90001" +145777,27in FHD Monitor,2,149.99,01/09/19 13:28,"416 Cherry St, Los Angeles, CA 90001" +145778,Apple Airpods Headphones,1,150,01/20/19 19:36,"381 14th St, Los Angeles, CA 90001" +145779,Lightning Charging Cable,1,14.95,01/15/19 21:38,"79 14th St, Atlanta, GA 30301" +145780,Lightning Charging Cable,1,14.95,01/17/19 17:31,"335 Hill St, Portland, OR 97035" +145781,AA Batteries (4-pack),1,3.84,01/05/19 11:38,"274 Lakeview St, Boston, MA 02215" +145782,Wired Headphones,2,11.99,01/13/19 17:50,"499 Ridge St, New York City, NY 10001" +145783,AA Batteries (4-pack),2,3.84,01/14/19 22:21,"316 Center St, Boston, MA 02215" +145784,AAA Batteries (4-pack),3,2.99,01/04/19 07:26,"698 Chestnut St, Dallas, TX 75001" +145785,Apple Airpods Headphones,1,150,01/25/19 08:05,"277 9th St, Atlanta, GA 30301" +145786,USB-C Charging Cable,1,11.95,01/06/19 17:54,"542 Park St, Boston, MA 02215" +145787,Apple Airpods Headphones,1,150,01/30/19 17:37,"863 Highland St, Portland, OR 97035" +145788,Vareebadd Phone,1,400,01/03/19 15:29,"217 South St, Seattle, WA 98101" +145789,27in FHD Monitor,1,149.99,01/15/19 19:13,"443 Johnson St, Portland, OR 97035" +145790,34in Ultrawide Monitor,1,379.99,01/06/19 12:27,"264 Cherry St, Boston, MA 02215" +145791,Google Phone,1,600,01/30/19 22:24,"316 Ridge St, San Francisco, CA 94016" +145791,USB-C Charging Cable,1,11.95,01/30/19 22:24,"316 Ridge St, San Francisco, CA 94016" +145791,Bose SoundSport Headphones,1,99.99,01/30/19 22:24,"316 Ridge St, San Francisco, CA 94016" +145792,Bose SoundSport Headphones,1,99.99,01/03/19 15:13,"283 Adams St, Boston, MA 02215" +145793,27in FHD Monitor,1,149.99,01/21/19 11:06,"401 10th St, Boston, MA 02215" +145794,AA Batteries (4-pack),1,3.84,01/19/19 11:39,"559 Lincoln St, Atlanta, GA 30301" +145795,AA Batteries (4-pack),2,3.84,01/21/19 16:26,"434 Adams St, Los Angeles, CA 90001" +145796,Bose SoundSport Headphones,1,99.99,01/03/19 11:56,"705 Dogwood St, San Francisco, CA 94016" +145797,USB-C Charging Cable,1,11.95,01/24/19 22:49,"848 Washington St, Boston, MA 02215" +145798,LG Dryer,1,600.0,01/31/19 20:59,"199 Meadow St, Los Angeles, CA 90001" +145799,Macbook Pro Laptop,1,1700,01/29/19 12:35,"714 Jackson St, Boston, MA 02215" +145800,AAA Batteries (4-pack),2,2.99,01/09/19 18:32,"11 Maple St, Dallas, TX 75001" +145801,Apple Airpods Headphones,2,150,01/09/19 09:43,"423 Cherry St, Austin, TX 73301" +145802,Bose SoundSport Headphones,1,99.99,01/22/19 11:03,"12 Adams St, Boston, MA 02215" +145803,Lightning Charging Cable,1,14.95,01/21/19 12:49,"717 Church St, Austin, TX 73301" +145804,USB-C Charging Cable,1,11.95,01/21/19 08:56,"487 11th St, San Francisco, CA 94016" +145805,27in 4K Gaming Monitor,1,389.99,01/15/19 13:26,"665 Sunset St, San Francisco, CA 94016" +145806,AA Batteries (4-pack),2,3.84,01/05/19 19:09,"640 Chestnut St, San Francisco, CA 94016" +145807,27in FHD Monitor,1,149.99,01/30/19 13:58,"176 Main St, New York City, NY 10001" +145808,AA Batteries (4-pack),1,3.84,01/01/19 19:52,"990 Hill St, Boston, MA 02215" +145809,AA Batteries (4-pack),1,3.84,01/01/19 19:27,"281 2nd St, San Francisco, CA 94016" +145810,Lightning Charging Cable,1,14.95,01/25/19 20:34,"571 Lakeview St, New York City, NY 10001" +145811,ThinkPad Laptop,1,999.99,01/19/19 21:59,"398 Madison St, Dallas, TX 75001" +145812,AA Batteries (4-pack),1,3.84,01/24/19 20:23,"686 Lakeview St, San Francisco, CA 94016" +145813,20in Monitor,1,109.99,01/14/19 19:09,"248 South St, San Francisco, CA 94016" +145814,USB-C Charging Cable,1,11.95,01/14/19 15:24,"580 Washington St, San Francisco, CA 94016" +145815,Lightning Charging Cable,1,14.95,01/28/19 18:31,"858 Hickory St, San Francisco, CA 94016" +145816,Apple Airpods Headphones,1,150,01/18/19 22:54,"981 Johnson St, Austin, TX 73301" +145817,AA Batteries (4-pack),2,3.84,01/03/19 13:14,"988 7th St, Portland, OR 97035" +145818,ThinkPad Laptop,1,999.99,01/13/19 11:20,"535 Hickory St, New York City, NY 10001" +145819,AAA Batteries (4-pack),2,2.99,01/30/19 20:09,"502 Jackson St, San Francisco, CA 94016" +145820,AA Batteries (4-pack),1,3.84,01/09/19 22:18,"55 14th St, Los Angeles, CA 90001" +145821,Lightning Charging Cable,1,14.95,01/20/19 17:28,"785 2nd St, San Francisco, CA 94016" +145822,Flatscreen TV,1,300,01/12/19 09:47,"953 Cherry St, Dallas, TX 75001" +145823,Apple Airpods Headphones,1,150,01/15/19 13:26,"885 10th St, San Francisco, CA 94016" +145824,AAA Batteries (4-pack),1,2.99,01/13/19 22:33,"717 Cedar St, Los Angeles, CA 90001" +145825,34in Ultrawide Monitor,1,379.99,01/29/19 14:45,"34 Washington St, Atlanta, GA 30301" +145826,Wired Headphones,1,11.99,01/24/19 20:14,"54 Lincoln St, Los Angeles, CA 90001" +145827,AA Batteries (4-pack),2,3.84,01/10/19 23:35,"857 Willow St, San Francisco, CA 94016" +145828,34in Ultrawide Monitor,1,379.99,01/24/19 00:42,"254 Lake St, Los Angeles, CA 90001" +145829,AAA Batteries (4-pack),1,2.99,01/31/19 21:47,"519 Johnson St, Dallas, TX 75001" +145830,AA Batteries (4-pack),2,3.84,01/13/19 16:19,"200 Hill St, Portland, OR 97035" +145831,iPhone,1,700,01/11/19 15:56,"994 Lake St, Atlanta, GA 30301" +145831,Wired Headphones,1,11.99,01/11/19 15:56,"994 Lake St, Atlanta, GA 30301" +145832,USB-C Charging Cable,1,11.95,01/24/19 00:15,"536 Chestnut St, Los Angeles, CA 90001" +145833,Vareebadd Phone,1,400,01/26/19 18:06,"652 8th St, New York City, NY 10001" +145833,Bose SoundSport Headphones,1,99.99,01/26/19 18:06,"652 8th St, New York City, NY 10001" +145834,Apple Airpods Headphones,1,150,01/25/19 11:07,"940 North St, Portland, OR 97035" +145835,LG Dryer,1,600.0,01/16/19 18:00,"806 Walnut St, Portland, OR 97035" +145836,20in Monitor,1,109.99,01/15/19 20:34,"619 Hickory St, Dallas, TX 75001" +145837,20in Monitor,1,109.99,01/28/19 14:24,"347 Wilson St, San Francisco, CA 94016" +145838,Bose SoundSport Headphones,1,99.99,01/15/19 11:56,"535 Pine St, San Francisco, CA 94016" +145839,AAA Batteries (4-pack),2,2.99,01/18/19 18:16,"490 Washington St, Atlanta, GA 30301" +145839,AAA Batteries (4-pack),3,2.99,01/18/19 18:16,"490 Washington St, Atlanta, GA 30301" +145840,27in 4K Gaming Monitor,1,389.99,01/23/19 17:49,"291 Hickory St, Dallas, TX 75001" +145841,USB-C Charging Cable,1,11.95,01/02/19 20:43,"328 West St, Los Angeles, CA 90001" +145841,Wired Headphones,1,11.99,01/02/19 20:43,"328 West St, Los Angeles, CA 90001" +145842,Lightning Charging Cable,1,14.95,01/24/19 18:40,"215 Pine St, Austin, TX 73301" +145843,AAA Batteries (4-pack),1,2.99,01/27/19 20:35,"542 Jefferson St, Atlanta, GA 30301" +145844,USB-C Charging Cable,1,11.95,01/05/19 15:42,"654 Pine St, Austin, TX 73301" +145845,USB-C Charging Cable,1,11.95,01/21/19 18:38,"558 6th St, San Francisco, CA 94016" +145846,Wired Headphones,1,11.99,01/18/19 11:58,"582 Meadow St, San Francisco, CA 94016" +145847,Lightning Charging Cable,1,14.95,01/14/19 22:18,"15 8th St, Seattle, WA 98101" +145848,Wired Headphones,1,11.99,01/26/19 23:17,"245 Cedar St, Portland, OR 97035" +145849,34in Ultrawide Monitor,1,379.99,01/25/19 13:36,"229 Ridge St, Atlanta, GA 30301" +145850,20in Monitor,1,109.99,01/12/19 13:49,"665 Main St, Dallas, TX 75001" +145851,iPhone,1,700,01/14/19 13:21,"558 Lake St, Seattle, WA 98101" +145852,Apple Airpods Headphones,1,150,01/28/19 18:27,"838 8th St, San Francisco, CA 94016" +145853,AA Batteries (4-pack),1,3.84,01/12/19 12:11,"142 Hill St, Dallas, TX 75001" +145854,Wired Headphones,1,11.99,01/18/19 18:36,"452 Walnut St, New York City, NY 10001" +145855,Wired Headphones,1,11.99,01/17/19 19:01,"140 Main St, Boston, MA 02215" +145856,Lightning Charging Cable,1,14.95,01/09/19 19:19,"786 Spruce St, San Francisco, CA 94016" +145857,Lightning Charging Cable,1,14.95,01/02/19 11:22,"699 Highland St, Atlanta, GA 30301" +,,,,, +145858,27in FHD Monitor,1,149.99,01/21/19 12:24,"345 Cedar St, San Francisco, CA 94016" +145859,Lightning Charging Cable,1,14.95,01/08/19 11:04,"90 South St, New York City, NY 10001" +145860,Apple Airpods Headphones,1,150,01/03/19 08:19,"774 Church St, Boston, MA 02215" +145861,AA Batteries (4-pack),1,3.84,01/08/19 11:39,"626 Meadow St, Austin, TX 73301" +145862,ThinkPad Laptop,1,999.99,01/22/19 21:31,"319 Jefferson St, Boston, MA 02215" +145863,Bose SoundSport Headphones,1,99.99,01/06/19 08:38,"566 4th St, San Francisco, CA 94016" +145864,USB-C Charging Cable,1,11.95,01/14/19 19:13,"331 Adams St, Los Angeles, CA 90001" +145865,34in Ultrawide Monitor,1,379.99,01/12/19 11:02,"940 11th St, Atlanta, GA 30301" +145866,AA Batteries (4-pack),1,3.84,01/28/19 09:42,"596 Main St, Dallas, TX 75001" +145867,27in FHD Monitor,1,149.99,01/24/19 14:29,"242 Forest St, Dallas, TX 75001" +145868,USB-C Charging Cable,1,11.95,01/16/19 20:11,"179 Lake St, New York City, NY 10001" +145869,USB-C Charging Cable,1,11.95,01/02/19 09:11,"506 Washington St, Boston, MA 02215" +145870,Google Phone,1,600,01/31/19 21:03,"338 Madison St, Boston, MA 02215" +145870,Bose SoundSport Headphones,1,99.99,01/31/19 21:03,"338 Madison St, Boston, MA 02215" +145871,ThinkPad Laptop,1,999.99,01/14/19 15:46,"580 Wilson St, Dallas, TX 75001" +145872,iPhone,1,700,01/18/19 13:56,"423 Main St, Los Angeles, CA 90001" +145872,Lightning Charging Cable,1,14.95,01/18/19 13:56,"423 Main St, Los Angeles, CA 90001" +145873,Vareebadd Phone,1,400,01/09/19 17:33,"559 Johnson St, New York City, NY 10001" +145874,Wired Headphones,2,11.99,01/16/19 10:05,"229 Cherry St, Atlanta, GA 30301" +145875,USB-C Charging Cable,1,11.95,01/28/19 20:41,"945 Cedar St, Seattle, WA 98101" +145876,AAA Batteries (4-pack),1,2.99,01/14/19 11:21,"908 Lincoln St, Boston, MA 02215" +145876,AAA Batteries (4-pack),1,2.99,01/14/19 11:21,"908 Lincoln St, Boston, MA 02215" +145877,Apple Airpods Headphones,1,150,01/29/19 13:21,"355 Meadow St, Dallas, TX 75001" +145878,Wired Headphones,1,11.99,01/04/19 03:07,"296 2nd St, Atlanta, GA 30301" +145879,34in Ultrawide Monitor,1,379.99,01/23/19 23:13,"466 Jackson St, Portland, OR 97035" +145880,Lightning Charging Cable,1,14.95,01/10/19 20:42,"803 Cherry St, Dallas, TX 75001" +145881,Wired Headphones,1,11.99,01/18/19 15:37,"678 12th St, New York City, NY 10001" +145882,Flatscreen TV,1,300,01/17/19 19:55,"651 Ridge St, San Francisco, CA 94016" +145883,Lightning Charging Cable,1,14.95,01/09/19 14:55,"295 West St, Portland, OR 97035" +145884,Apple Airpods Headphones,1,150,01/19/19 09:42,"996 Highland St, San Francisco, CA 94016" +145885,Apple Airpods Headphones,1,150,01/16/19 12:23,"755 Chestnut St, Atlanta, GA 30301" +145886,AAA Batteries (4-pack),1,2.99,01/24/19 12:02,"403 Park St, Atlanta, GA 30301" +145887,USB-C Charging Cable,1,11.95,01/10/19 06:35,"102 8th St, Austin, TX 73301" +145888,Apple Airpods Headphones,1,150,01/06/19 18:01,"480 Chestnut St, Los Angeles, CA 90001" +145889,20in Monitor,1,109.99,01/25/19 22:53,"652 Cedar St, Dallas, TX 75001" +145890,Lightning Charging Cable,1,14.95,01/04/19 08:54,"939 Church St, Portland, OR 97035" +145891,Bose SoundSport Headphones,1,99.99,01/21/19 22:52,"411 Cherry St, Dallas, TX 75001" +145892,AA Batteries (4-pack),1,3.84,01/03/19 16:29,"866 Highland St, Los Angeles, CA 90001" +145893,USB-C Charging Cable,1,11.95,01/19/19 08:04,"609 Dogwood St, Atlanta, GA 30301" +145894,USB-C Charging Cable,1,11.95,01/20/19 18:18,"178 Chestnut St, San Francisco, CA 94016" +145895,AAA Batteries (4-pack),3,2.99,01/14/19 23:40,"754 Forest St, San Francisco, CA 94016" +145896,27in FHD Monitor,1,149.99,01/19/19 13:55,"352 14th St, Atlanta, GA 30301" +145897,27in FHD Monitor,1,149.99,01/05/19 20:16,"79 Meadow St, Los Angeles, CA 90001" +145898,AA Batteries (4-pack),2,3.84,01/19/19 13:09,"314 12th St, San Francisco, CA 94016" +145899,Wired Headphones,1,11.99,01/16/19 12:39,"124 9th St, Dallas, TX 75001" +145900,AAA Batteries (4-pack),2,2.99,01/04/19 13:20,"527 Forest St, Seattle, WA 98101" +145901,Lightning Charging Cable,1,14.95,01/10/19 10:45,"458 5th St, Portland, OR 97035" +145902,Bose SoundSport Headphones,1,99.99,01/29/19 14:37,"977 10th St, San Francisco, CA 94016" +145903,Google Phone,1,600,01/15/19 06:26,"402 Cedar St, Atlanta, GA 30301" +145904,Bose SoundSport Headphones,1,99.99,01/09/19 11:45,"238 Highland St, Seattle, WA 98101" +145905,Wired Headphones,1,11.99,01/08/19 22:54,"361 Walnut St, Los Angeles, CA 90001" +145906,USB-C Charging Cable,1,11.95,01/26/19 21:10,"795 River St, Seattle, WA 98101" +145907,Macbook Pro Laptop,1,1700,01/29/19 12:52,"99 13th St, New York City, NY 10001" +145908,27in 4K Gaming Monitor,1,389.99,01/16/19 19:32,"95 Church St, New York City, NY 10001" +145909,20in Monitor,1,109.99,01/14/19 13:30,"360 Lakeview St, San Francisco, CA 94016" +145910,Flatscreen TV,1,300,01/10/19 20:16,"513 4th St, Seattle, WA 98101" +145911,Apple Airpods Headphones,1,150,01/26/19 10:01,"7 Highland St, Boston, MA 02215" +145912,USB-C Charging Cable,1,11.95,01/18/19 21:13,"90 Willow St, Los Angeles, CA 90001" +145913,Lightning Charging Cable,1,14.95,01/20/19 09:50,"570 7th St, Boston, MA 02215" +145914,Wired Headphones,1,11.99,01/18/19 21:11,"33 North St, Los Angeles, CA 90001" +145915,ThinkPad Laptop,1,999.99,01/24/19 19:48,"504 West St, San Francisco, CA 94016" +145916,Lightning Charging Cable,1,14.95,01/11/19 12:59,"490 Jefferson St, Austin, TX 73301" +145917,Google Phone,1,600,01/12/19 22:18,"717 12th St, San Francisco, CA 94016" +145918,Wired Headphones,1,11.99,01/19/19 18:20,"54 Washington St, New York City, NY 10001" +145919,27in FHD Monitor,1,149.99,01/18/19 12:57,"766 2nd St, Boston, MA 02215" +145920,Lightning Charging Cable,1,14.95,01/27/19 17:39,"815 Main St, Portland, ME 04101" +145921,Wired Headphones,1,11.99,01/04/19 19:59,"538 River St, Seattle, WA 98101" +145922,AAA Batteries (4-pack),1,2.99,01/07/19 10:31,"872 2nd St, Boston, MA 02215" +145923,Flatscreen TV,1,300,01/17/19 09:58,"334 Pine St, Boston, MA 02215" +145924,Wired Headphones,1,11.99,01/27/19 08:37,"714 Pine St, San Francisco, CA 94016" +145925,Flatscreen TV,1,300,01/25/19 21:28,"525 Cedar St, Boston, MA 02215" +145926,USB-C Charging Cable,1,11.95,01/01/19 18:42,"582 14th St, New York City, NY 10001" +145927,Lightning Charging Cable,1,14.95,01/21/19 01:21,"768 Johnson St, San Francisco, CA 94016" +145928,AA Batteries (4-pack),2,3.84,01/10/19 14:41,"361 Maple St, New York City, NY 10001" +145929,Google Phone,1,600,01/30/19 20:53,"773 Ridge St, Dallas, TX 75001" +145930,Lightning Charging Cable,1,14.95,01/09/19 12:10,"272 1st St, New York City, NY 10001" +145931,iPhone,1,700,01/27/19 13:51,"352 6th St, New York City, NY 10001" +145932,ThinkPad Laptop,1,999.99,01/10/19 14:58,"740 10th St, Portland, ME 04101" +145933,Lightning Charging Cable,1,14.95,01/20/19 12:47,"842 Sunset St, Los Angeles, CA 90001" +145934,Lightning Charging Cable,1,14.95,01/05/19 21:17,"513 2nd St, Seattle, WA 98101" +145935,Lightning Charging Cable,1,14.95,01/15/19 06:25,"131 6th St, San Francisco, CA 94016" +145936,Wired Headphones,1,11.99,01/19/19 14:26,"816 Hill St, San Francisco, CA 94016" +145937,USB-C Charging Cable,1,11.95,01/11/19 21:04,"690 5th St, San Francisco, CA 94016" +145938,iPhone,1,700,01/29/19 19:50,"245 Wilson St, San Francisco, CA 94016" +145939,AAA Batteries (4-pack),1,2.99,01/13/19 21:51,"808 Cedar St, New York City, NY 10001" +145940,Wired Headphones,1,11.99,01/31/19 10:05,"227 13th St, Atlanta, GA 30301" +145941,27in 4K Gaming Monitor,1,389.99,01/23/19 21:26,"819 Center St, Boston, MA 02215" +145942,Lightning Charging Cable,1,14.95,01/01/19 11:35,"14 Madison St, New York City, NY 10001" +145943,USB-C Charging Cable,1,11.95,01/30/19 18:53,"353 10th St, San Francisco, CA 94016" +145944,AAA Batteries (4-pack),1,2.99,01/16/19 17:51,"376 5th St, Los Angeles, CA 90001" +145945,Flatscreen TV,1,300,01/19/19 18:07,"822 Hill St, Seattle, WA 98101" +145946,20in Monitor,1,109.99,01/24/19 10:57,"573 Spruce St, Austin, TX 73301" +145947,Lightning Charging Cable,1,14.95,01/22/19 09:33,"953 4th St, San Francisco, CA 94016" +145948,Bose SoundSport Headphones,1,99.99,01/28/19 11:55,"452 Highland St, Dallas, TX 75001" +145949,iPhone,1,700,01/03/19 20:08,"30 River St, Los Angeles, CA 90001" +145950,34in Ultrawide Monitor,1,379.99,01/08/19 00:27,"563 Chestnut St, New York City, NY 10001" +145951,AA Batteries (4-pack),2,3.84,01/12/19 21:36,"437 Church St, Dallas, TX 75001" +145952,Apple Airpods Headphones,1,150,01/23/19 08:24,"479 Center St, New York City, NY 10001" +145953,Lightning Charging Cable,1,14.95,01/29/19 09:38,"611 Chestnut St, Atlanta, GA 30301" +145954,Macbook Pro Laptop,1,1700,01/22/19 09:28,"321 Cherry St, Dallas, TX 75001" +145955,34in Ultrawide Monitor,1,379.99,01/12/19 23:19,"306 Elm St, New York City, NY 10001" +145956,Vareebadd Phone,1,400,01/03/19 13:10,"186 1st St, Boston, MA 02215" +145957,AAA Batteries (4-pack),1,2.99,01/09/19 13:46,"679 Washington St, Seattle, WA 98101" +145958,iPhone,1,700,01/22/19 19:28,"663 Sunset St, Dallas, TX 75001" +145959,AA Batteries (4-pack),1,3.84,01/27/19 10:11,"823 4th St, New York City, NY 10001" +145960,AAA Batteries (4-pack),1,2.99,01/27/19 11:51,"974 Lincoln St, Los Angeles, CA 90001" +145961,20in Monitor,1,109.99,01/19/19 20:46,"918 Elm St, Seattle, WA 98101" +145962,AA Batteries (4-pack),1,3.84,01/26/19 15:51,"405 Hill St, Los Angeles, CA 90001" +145963,34in Ultrawide Monitor,1,379.99,01/24/19 06:31,"993 12th St, Dallas, TX 75001" +145964,Bose SoundSport Headphones,1,99.99,01/27/19 12:54,"546 9th St, San Francisco, CA 94016" +145965,ThinkPad Laptop,1,999.99,01/11/19 17:33,"151 8th St, Boston, MA 02215" +145966,iPhone,1,700,01/14/19 15:53,"831 Forest St, Atlanta, GA 30301" +145967,USB-C Charging Cable,1,11.95,01/26/19 20:57,"719 North St, Los Angeles, CA 90001" +145968,Wired Headphones,1,11.99,01/16/19 20:04,"831 Elm St, New York City, NY 10001" +145969,AAA Batteries (4-pack),1,2.99,01/07/19 12:28,"345 Willow St, Seattle, WA 98101" +145970,USB-C Charging Cable,1,11.95,01/17/19 13:40,"24 Forest St, Seattle, WA 98101" +145971,iPhone,1,700,01/23/19 13:05,"655 Jackson St, Los Angeles, CA 90001" +145972,iPhone,1,700,01/13/19 09:12,"369 Highland St, New York City, NY 10001" +145973,Vareebadd Phone,1,400,01/23/19 09:37,"79 Center St, New York City, NY 10001" +145974,AA Batteries (4-pack),1,3.84,01/26/19 15:24,"368 Maple St, Boston, MA 02215" +145975,USB-C Charging Cable,1,11.95,01/19/19 07:12,"786 6th St, Atlanta, GA 30301" +145976,AA Batteries (4-pack),1,3.84,01/23/19 22:11,"308 Lake St, Boston, MA 02215" +145977,USB-C Charging Cable,1,11.95,01/17/19 17:27,"307 Center St, New York City, NY 10001" +145978,AAA Batteries (4-pack),1,2.99,01/01/19 18:21,"770 Madison St, New York City, NY 10001" +145979,AAA Batteries (4-pack),1,2.99,01/30/19 19:34,"391 Wilson St, New York City, NY 10001" +145980,Lightning Charging Cable,1,14.95,01/25/19 00:45,"37 Highland St, San Francisco, CA 94016" +145981,27in FHD Monitor,1,149.99,01/20/19 23:05,"303 Lakeview St, Seattle, WA 98101" +145982,Macbook Pro Laptop,1,1700,01/14/19 16:58,"742 13th St, San Francisco, CA 94016" +145983,AA Batteries (4-pack),2,3.84,01/02/19 17:42,"163 Cherry St, Boston, MA 02215" +145984,USB-C Charging Cable,1,11.95,01/06/19 19:34,"460 2nd St, Boston, MA 02215" +145985,AA Batteries (4-pack),1,3.84,01/27/19 20:57,"345 2nd St, Seattle, WA 98101" +145986,ThinkPad Laptop,1,999.99,01/26/19 08:35,"131 7th St, Atlanta, GA 30301" +145987,Bose SoundSport Headphones,1,99.99,01/03/19 16:28,"54 Washington St, San Francisco, CA 94016" +145988,Lightning Charging Cable,1,14.95,01/10/19 21:57,"300 River St, San Francisco, CA 94016" +145989,USB-C Charging Cable,1,11.95,01/29/19 13:54,"516 4th St, Los Angeles, CA 90001" +145990,Flatscreen TV,1,300,01/16/19 23:07,"710 2nd St, New York City, NY 10001" +145991,AAA Batteries (4-pack),1,2.99,01/24/19 19:09,"441 Chestnut St, San Francisco, CA 94016" +145992,Wired Headphones,1,11.99,01/28/19 08:36,"761 South St, Atlanta, GA 30301" +145993,LG Dryer,1,600.0,01/04/19 09:01,"895 River St, Dallas, TX 75001" +145994,Lightning Charging Cable,1,14.95,01/04/19 12:21,"289 Lincoln St, San Francisco, CA 94016" +145995,Lightning Charging Cable,1,14.95,01/25/19 13:30,"926 Ridge St, San Francisco, CA 94016" +145996,Lightning Charging Cable,1,14.95,01/12/19 22:47,"538 River St, San Francisco, CA 94016" +145997,AA Batteries (4-pack),1,3.84,01/02/19 10:12,"766 Church St, Portland, OR 97035" +145998,Google Phone,1,600,01/08/19 07:42,"536 Meadow St, Portland, OR 97035" +145998,USB-C Charging Cable,1,11.95,01/08/19 07:42,"536 Meadow St, Portland, OR 97035" +145998,Wired Headphones,1,11.99,01/08/19 07:42,"536 Meadow St, Portland, OR 97035" +145999,Flatscreen TV,1,300,01/03/19 16:02,"405 Dogwood St, Boston, MA 02215" +146000,Wired Headphones,1,11.99,01/14/19 15:21,"684 Sunset St, San Francisco, CA 94016" +146001,AAA Batteries (4-pack),4,2.99,01/23/19 15:09,"674 Lakeview St, Atlanta, GA 30301" +146002,USB-C Charging Cable,1,11.95,01/24/19 01:22,"249 13th St, San Francisco, CA 94016" +146003,Wired Headphones,1,11.99,01/31/19 13:52,"44 9th St, San Francisco, CA 94016" +146004,Lightning Charging Cable,1,14.95,01/23/19 16:04,"120 Cedar St, New York City, NY 10001" +146005,Wired Headphones,1,11.99,01/18/19 11:11,"168 Johnson St, San Francisco, CA 94016" +146006,Lightning Charging Cable,1,14.95,01/08/19 16:54,"176 Lakeview St, Seattle, WA 98101" +146007,34in Ultrawide Monitor,1,379.99,01/20/19 11:32,"202 Willow St, San Francisco, CA 94016" +146008,Apple Airpods Headphones,1,150,01/22/19 08:52,"510 Wilson St, Boston, MA 02215" +146009,iPhone,1,700,01/23/19 20:56,"417 Washington St, New York City, NY 10001" +146009,Wired Headphones,1,11.99,01/23/19 20:56,"417 Washington St, New York City, NY 10001" +146010,iPhone,1,700,01/13/19 13:57,"48 Lincoln St, Portland, OR 97035" +146010,Lightning Charging Cable,1,14.95,01/13/19 13:57,"48 Lincoln St, Portland, OR 97035" +146011,iPhone,1,700,01/31/19 12:38,"649 Chestnut St, Atlanta, GA 30301" +146012,Lightning Charging Cable,1,14.95,01/02/19 15:10,"912 Ridge St, Portland, OR 97035" +146013,AA Batteries (4-pack),2,3.84,01/11/19 14:39,"862 Spruce St, Boston, MA 02215" +146014,iPhone,1,700,01/27/19 21:52,"373 Main St, Portland, OR 97035" +146015,AA Batteries (4-pack),1,3.84,01/09/19 11:54,"824 6th St, New York City, NY 10001" +146016,AAA Batteries (4-pack),1,2.99,01/23/19 20:05,"717 South St, Atlanta, GA 30301" +146017,AA Batteries (4-pack),1,3.84,01/27/19 21:19,"409 River St, Boston, MA 02215" +146018,Wired Headphones,1,11.99,01/28/19 12:23,"619 13th St, Portland, OR 97035" +146019,AAA Batteries (4-pack),1,2.99,01/14/19 00:08,"424 River St, Los Angeles, CA 90001" +146020,34in Ultrawide Monitor,1,379.99,01/31/19 09:42,"88 Washington St, Los Angeles, CA 90001" +146021,AA Batteries (4-pack),1,3.84,01/26/19 20:17,"755 11th St, Seattle, WA 98101" +146022,27in FHD Monitor,1,149.99,01/18/19 12:08,"993 Pine St, Atlanta, GA 30301" +146023,AAA Batteries (4-pack),1,2.99,01/02/19 20:15,"718 Madison St, Portland, ME 04101" +146024,AAA Batteries (4-pack),1,2.99,01/04/19 20:49,"360 South St, New York City, NY 10001" +146025,AA Batteries (4-pack),2,3.84,01/15/19 18:41,"362 West St, Seattle, WA 98101" +146026,20in Monitor,1,109.99,01/28/19 15:45,"504 5th St, San Francisco, CA 94016" +146027,Lightning Charging Cable,2,14.95,01/22/19 18:14,"761 Spruce St, Dallas, TX 75001" +146028,27in FHD Monitor,1,149.99,01/30/19 16:37,"178 Pine St, Boston, MA 02215" +146029,Bose SoundSport Headphones,1,99.99,01/31/19 14:32,"639 Johnson St, San Francisco, CA 94016" +146030,ThinkPad Laptop,1,999.99,01/10/19 12:29,"424 Lincoln St, New York City, NY 10001" +146031,Apple Airpods Headphones,1,150,01/01/19 09:59,"65 10th St, Seattle, WA 98101" +146032,Lightning Charging Cable,1,14.95,01/23/19 16:10,"752 10th St, Seattle, WA 98101" +146033,USB-C Charging Cable,1,11.95,01/11/19 13:30,"644 West St, Boston, MA 02215" +146034,Lightning Charging Cable,1,14.95,01/01/19 21:03,"611 Wilson St, Seattle, WA 98101" +146035,Google Phone,1,600,01/06/19 16:03,"192 9th St, Atlanta, GA 30301" +146035,USB-C Charging Cable,1,11.95,01/06/19 16:03,"192 9th St, Atlanta, GA 30301" +146036,Apple Airpods Headphones,1,150,01/22/19 00:31,"391 Elm St, Dallas, TX 75001" +146037,27in 4K Gaming Monitor,1,389.99,01/21/19 19:02,"344 Ridge St, Seattle, WA 98101" +146038,iPhone,1,700,01/30/19 19:35,"236 Maple St, Dallas, TX 75001" +146039,Wired Headphones,1,11.99,01/24/19 16:42,"777 Spruce St, Los Angeles, CA 90001" +146040,Macbook Pro Laptop,1,1700,01/31/19 14:30,"612 River St, San Francisco, CA 94016" +146041,USB-C Charging Cable,1,11.95,01/01/19 17:38,"749 Center St, Boston, MA 02215" +146042,AAA Batteries (4-pack),2,2.99,01/04/19 23:50,"796 Jackson St, Austin, TX 73301" +146043,27in FHD Monitor,1,149.99,01/18/19 09:50,"686 Madison St, San Francisco, CA 94016" +146044,Flatscreen TV,1,300,01/19/19 11:51,"824 Maple St, Los Angeles, CA 90001" +146045,Wired Headphones,1,11.99,01/01/19 14:34,"488 Pine St, Portland, OR 97035" +146046,27in FHD Monitor,1,149.99,01/19/19 19:06,"863 South St, Austin, TX 73301" +146047,Lightning Charging Cable,1,14.95,01/15/19 11:30,"979 Elm St, San Francisco, CA 94016" +146048,AAA Batteries (4-pack),1,2.99,01/20/19 13:13,"191 Washington St, Dallas, TX 75001" +146049,Bose SoundSport Headphones,1,99.99,01/18/19 10:26,"77 Highland St, New York City, NY 10001" +146050,Google Phone,1,600,01/19/19 19:10,"495 Spruce St, New York City, NY 10001" +146051,Google Phone,1,600,01/15/19 17:37,"7 6th St, New York City, NY 10001" +146052,AAA Batteries (4-pack),1,2.99,01/01/19 21:35,"369 Cedar St, Boston, MA 02215" +146053,27in FHD Monitor,1,149.99,01/17/19 19:48,"776 7th St, Boston, MA 02215" +146054,Macbook Pro Laptop,1,1700,01/21/19 14:46,"295 Madison St, Austin, TX 73301" +146055,Bose SoundSport Headphones,1,99.99,01/13/19 13:58,"598 2nd St, Atlanta, GA 30301" +146056,AAA Batteries (4-pack),1,2.99,01/06/19 22:50,"618 Hill St, Dallas, TX 75001" +146057,Flatscreen TV,1,300,01/08/19 15:41,"887 Cherry St, San Francisco, CA 94016" +146058,27in 4K Gaming Monitor,1,389.99,01/12/19 22:40,"809 Cherry St, San Francisco, CA 94016" +146059,Apple Airpods Headphones,1,150,01/15/19 13:32,"887 Chestnut St, Boston, MA 02215" +146060,iPhone,1,700,01/23/19 11:23,"141 Madison St, Boston, MA 02215" +146061,Lightning Charging Cable,1,14.95,01/19/19 08:44,"523 Lincoln St, Austin, TX 73301" +146062,USB-C Charging Cable,1,11.95,01/16/19 16:48,"911 Center St, Los Angeles, CA 90001" +146063,USB-C Charging Cable,1,11.95,01/26/19 11:27,"975 Elm St, San Francisco, CA 94016" +146064,AAA Batteries (4-pack),1,2.99,01/10/19 11:35,"719 Center St, Dallas, TX 75001" +146065,34in Ultrawide Monitor,1,379.99,01/01/19 13:55,"963 Forest St, San Francisco, CA 94016" +146066,Lightning Charging Cable,1,14.95,01/15/19 11:33,"738 Johnson St, San Francisco, CA 94016" +146067,Google Phone,1,600,01/11/19 12:47,"204 Chestnut St, New York City, NY 10001" +146068,iPhone,1,700,01/05/19 19:13,"491 River St, New York City, NY 10001" +146069,27in FHD Monitor,1,149.99,01/28/19 12:43,"250 1st St, San Francisco, CA 94016" +146070,iPhone,1,700,01/07/19 10:16,"61 Church St, Dallas, TX 75001" +146071,AAA Batteries (4-pack),1,2.99,01/16/19 12:30,"568 Lake St, Dallas, TX 75001" +146072,Wired Headphones,1,11.99,01/03/19 10:37,"974 Pine St, New York City, NY 10001" +146073,AAA Batteries (4-pack),4,2.99,01/14/19 11:30,"516 River St, San Francisco, CA 94016" +146074,Bose SoundSport Headphones,1,99.99,01/18/19 12:39,"317 14th St, Los Angeles, CA 90001" +146075,34in Ultrawide Monitor,1,379.99,01/05/19 08:43,"943 Adams St, Atlanta, GA 30301" +146076,Lightning Charging Cable,1,14.95,01/27/19 13:41,"91 Johnson St, Austin, TX 73301" +146077,AA Batteries (4-pack),1,3.84,01/13/19 09:29,"625 South St, Atlanta, GA 30301" +146078,AA Batteries (4-pack),3,3.84,01/02/19 18:59,"934 Lakeview St, Seattle, WA 98101" +146079,USB-C Charging Cable,1,11.95,01/11/19 09:25,"118 Meadow St, New York City, NY 10001" +146080,AA Batteries (4-pack),1,3.84,01/21/19 21:41,"992 West St, Atlanta, GA 30301" +146081,20in Monitor,1,109.99,01/08/19 11:34,"582 Park St, New York City, NY 10001" +146082,34in Ultrawide Monitor,1,379.99,01/18/19 02:36,"623 Chestnut St, New York City, NY 10001" +146083,Bose SoundSport Headphones,1,99.99,01/28/19 13:31,"412 Madison St, San Francisco, CA 94016" +146084,Wired Headphones,1,11.99,01/02/19 11:21,"350 9th St, Dallas, TX 75001" +146085,USB-C Charging Cable,1,11.95,01/19/19 09:50,"902 1st St, San Francisco, CA 94016" +146086,Bose SoundSport Headphones,1,99.99,01/24/19 15:02,"686 Cedar St, Boston, MA 02215" +146087,20in Monitor,1,109.99,01/28/19 02:24,"90 Jackson St, Seattle, WA 98101" +146088,Lightning Charging Cable,1,14.95,01/08/19 21:07,"950 9th St, Dallas, TX 75001" +146089,Bose SoundSport Headphones,1,99.99,01/18/19 12:51,"696 Walnut St, San Francisco, CA 94016" +146090,Lightning Charging Cable,1,14.95,01/23/19 13:56,"931 Hickory St, Seattle, WA 98101" +146091,27in FHD Monitor,1,149.99,01/10/19 20:02,"128 Center St, Boston, MA 02215" +146092,AA Batteries (4-pack),1,3.84,01/10/19 12:47,"758 Sunset St, Atlanta, GA 30301" +146093,AA Batteries (4-pack),1,3.84,01/11/19 20:24,"583 River St, New York City, NY 10001" +146094,20in Monitor,1,109.99,01/22/19 12:43,"172 14th St, Los Angeles, CA 90001" +146095,Wired Headphones,1,11.99,01/15/19 01:57,"456 Main St, Dallas, TX 75001" +146096,Apple Airpods Headphones,1,150,01/06/19 18:18,"890 South St, New York City, NY 10001" +146097,Lightning Charging Cable,1,14.95,01/26/19 06:30,"262 Madison St, Boston, MA 02215" +146098,Apple Airpods Headphones,1,150,01/25/19 14:42,"773 Jackson St, New York City, NY 10001" +146099,AAA Batteries (4-pack),1,2.99,01/04/19 13:26,"802 Hickory St, New York City, NY 10001" +146100,AAA Batteries (4-pack),1,2.99,01/18/19 11:21,"639 Park St, San Francisco, CA 94016" +146101,Apple Airpods Headphones,1,150,01/24/19 19:40,"384 Sunset St, Dallas, TX 75001" +146102,Wired Headphones,1,11.99,01/07/19 15:38,"523 River St, Portland, OR 97035" +146103,34in Ultrawide Monitor,1,379.99,01/18/19 18:36,"459 2nd St, San Francisco, CA 94016" +146104,27in FHD Monitor,1,149.99,01/30/19 16:36,"342 Maple St, Portland, OR 97035" +146105,27in 4K Gaming Monitor,1,389.99,01/14/19 13:54,"201 River St, San Francisco, CA 94016" +146106,USB-C Charging Cable,1,11.95,01/04/19 11:09,"405 Elm St, Seattle, WA 98101" +146107,Wired Headphones,1,11.99,01/13/19 10:49,"629 Adams St, Portland, OR 97035" +146108,AAA Batteries (4-pack),2,2.99,01/03/19 11:52,"630 12th St, Dallas, TX 75001" +146109,Lightning Charging Cable,1,14.95,01/13/19 11:08,"619 5th St, Portland, OR 97035" +146110,Lightning Charging Cable,3,14.95,01/11/19 12:37,"50 Washington St, Dallas, TX 75001" +146111,AAA Batteries (4-pack),3,2.99,01/20/19 16:41,"492 6th St, San Francisco, CA 94016" +146111,Lightning Charging Cable,2,14.95,01/20/19 16:41,"492 6th St, San Francisco, CA 94016" +146112,Wired Headphones,2,11.99,01/08/19 12:11,"752 14th St, Los Angeles, CA 90001" +146113,Macbook Pro Laptop,1,1700,01/08/19 13:21,"487 South St, Dallas, TX 75001" +146114,Lightning Charging Cable,1,14.95,01/30/19 12:56,"108 Lake St, Portland, OR 97035" +146115,LG Dryer,1,600.0,01/26/19 14:57,"458 Highland St, San Francisco, CA 94016" +146116,Wired Headphones,1,11.99,01/10/19 13:50,"910 Walnut St, New York City, NY 10001" +146117,27in FHD Monitor,1,149.99,01/10/19 22:49,"741 Jefferson St, San Francisco, CA 94016" +146118,USB-C Charging Cable,1,11.95,01/13/19 21:52,"48 Center St, Boston, MA 02215" +146118,Wired Headphones,1,11.99,01/13/19 21:52,"48 Center St, Boston, MA 02215" +146119,Lightning Charging Cable,1,14.95,01/15/19 12:25,"843 Park St, Dallas, TX 75001" +146120,27in 4K Gaming Monitor,1,389.99,01/20/19 10:13,"390 Spruce St, Los Angeles, CA 90001" +146121,Wired Headphones,1,11.99,01/15/19 14:15,"710 Maple St, San Francisco, CA 94016" +146122,AA Batteries (4-pack),1,3.84,01/24/19 09:41,"222 Pine St, New York City, NY 10001" +146123,Apple Airpods Headphones,1,150,01/14/19 20:32,"704 13th St, Dallas, TX 75001" +146124,27in 4K Gaming Monitor,1,389.99,01/03/19 22:40,"296 7th St, Austin, TX 73301" +146125,Lightning Charging Cable,1,14.95,01/02/19 14:26,"366 Walnut St, Atlanta, GA 30301" +146126,USB-C Charging Cable,1,11.95,01/16/19 14:43,"446 4th St, Los Angeles, CA 90001" +146127,Apple Airpods Headphones,1,150,01/10/19 15:34,"340 North St, Boston, MA 02215" +146128,AAA Batteries (4-pack),1,2.99,01/11/19 22:13,"560 Walnut St, San Francisco, CA 94016" +146129,34in Ultrawide Monitor,1,379.99,01/22/19 17:59,"226 9th St, Austin, TX 73301" +146130,AAA Batteries (4-pack),1,2.99,01/08/19 17:01,"272 River St, Atlanta, GA 30301" +146131,AAA Batteries (4-pack),1,2.99,01/16/19 22:09,"947 Washington St, San Francisco, CA 94016" +146132,Google Phone,1,600,01/23/19 15:52,"64 Hickory St, Los Angeles, CA 90001" +146133,iPhone,1,700,01/02/19 10:35,"604 2nd St, New York City, NY 10001" +146134,20in Monitor,1,109.99,01/10/19 19:47,"716 1st St, Los Angeles, CA 90001" +146135,Lightning Charging Cable,1,14.95,01/22/19 22:33,"605 Madison St, New York City, NY 10001" +146136,ThinkPad Laptop,1,999.99,01/17/19 09:26,"342 Washington St, Austin, TX 73301" +146137,Flatscreen TV,1,300,01/05/19 18:45,"990 Forest St, Portland, OR 97035" +146138,AAA Batteries (4-pack),1,2.99,01/15/19 11:36,"442 4th St, Portland, OR 97035" +146139,Wired Headphones,1,11.99,01/04/19 16:51,"614 12th St, San Francisco, CA 94016" +146140,AA Batteries (4-pack),2,3.84,01/20/19 19:22,"918 Lake St, Atlanta, GA 30301" +146141,Lightning Charging Cable,1,14.95,01/24/19 19:34,"929 Park St, Atlanta, GA 30301" +146142,Macbook Pro Laptop,1,1700,01/10/19 17:11,"444 Highland St, Dallas, TX 75001" +146143,AAA Batteries (4-pack),1,2.99,01/14/19 11:30,"502 Washington St, San Francisco, CA 94016" +146144,27in 4K Gaming Monitor,1,389.99,01/21/19 17:17,"581 Meadow St, Atlanta, GA 30301" +146145,Lightning Charging Cable,1,14.95,01/01/19 15:09,"937 Cedar St, Portland, ME 04101" +146146,ThinkPad Laptop,1,999.99,01/19/19 11:37,"448 6th St, San Francisco, CA 94016" +146147,USB-C Charging Cable,1,11.95,01/04/19 21:13,"492 Elm St, Los Angeles, CA 90001" +146148,20in Monitor,1,109.99,01/04/19 14:00,"62 Highland St, Atlanta, GA 30301" +146149,Macbook Pro Laptop,1,1700,01/07/19 11:11,"776 Pine St, San Francisco, CA 94016" +146150,Bose SoundSport Headphones,1,99.99,01/13/19 18:41,"300 West St, Los Angeles, CA 90001" +146151,Bose SoundSport Headphones,1,99.99,01/15/19 20:13,"832 Dogwood St, Boston, MA 02215" +146152,AAA Batteries (4-pack),1,2.99,01/11/19 22:00,"122 South St, New York City, NY 10001" +146153,20in Monitor,1,109.99,01/20/19 12:33,"478 Church St, Portland, ME 04101" +146154,Flatscreen TV,1,300,01/19/19 19:04,"961 West St, Dallas, TX 75001" +146155,AAA Batteries (4-pack),1,2.99,01/11/19 13:22,"472 Madison St, San Francisco, CA 94016" +146156,27in FHD Monitor,1,149.99,01/16/19 19:36,"751 Main St, New York City, NY 10001" +146157,Wired Headphones,1,11.99,01/07/19 09:57,"821 Adams St, Atlanta, GA 30301" +146158,Wired Headphones,1,11.99,01/23/19 09:19,"862 Johnson St, Los Angeles, CA 90001" +146159,AA Batteries (4-pack),1,3.84,01/28/19 22:35,"898 Main St, San Francisco, CA 94016" +146160,Macbook Pro Laptop,1,1700,01/21/19 00:53,"967 6th St, Seattle, WA 98101" +146161,Macbook Pro Laptop,1,1700,01/26/19 10:23,"780 4th St, Atlanta, GA 30301" +146162,AAA Batteries (4-pack),1,2.99,01/24/19 21:00,"709 Hickory St, New York City, NY 10001" +146163,USB-C Charging Cable,1,11.95,01/01/19 11:53,"705 Madison St, Dallas, TX 75001" +146164,USB-C Charging Cable,1,11.95,01/01/19 11:25,"235 8th St, Boston, MA 02215" +146165,Google Phone,1,600,01/08/19 19:13,"730 Wilson St, San Francisco, CA 94016" +146166,AAA Batteries (4-pack),2,2.99,01/17/19 08:43,"475 Elm St, Austin, TX 73301" +146167,Apple Airpods Headphones,1,150,01/18/19 09:23,"548 Lincoln St, San Francisco, CA 94016" +146168,34in Ultrawide Monitor,1,379.99,01/07/19 07:49,"773 Walnut St, Seattle, WA 98101" +146169,AAA Batteries (4-pack),1,2.99,01/24/19 14:45,"9 5th St, San Francisco, CA 94016" +146170,Wired Headphones,1,11.99,01/22/19 22:10,"159 Madison St, Seattle, WA 98101" +146171,AA Batteries (4-pack),1,3.84,01/20/19 23:56,"663 12th St, San Francisco, CA 94016" +146172,Vareebadd Phone,1,400,01/17/19 09:22,"168 Chestnut St, Seattle, WA 98101" +146173,iPhone,1,700,01/22/19 19:26,"552 Dogwood St, Boston, MA 02215" +146174,Apple Airpods Headphones,1,150,01/03/19 07:18,"558 River St, Dallas, TX 75001" +146175,USB-C Charging Cable,1,11.95,01/06/19 15:29,"492 13th St, Boston, MA 02215" +146176,Lightning Charging Cable,1,14.95,01/30/19 19:00,"272 Meadow St, Atlanta, GA 30301" +146177,27in 4K Gaming Monitor,1,389.99,01/30/19 09:04,"701 Adams St, Los Angeles, CA 90001" +146178,Lightning Charging Cable,2,14.95,01/29/19 00:23,"605 River St, San Francisco, CA 94016" +146179,Apple Airpods Headphones,1,150,01/02/19 01:21,"996 Wilson St, Atlanta, GA 30301" +146180,AAA Batteries (4-pack),1,2.99,01/26/19 10:34,"643 Lake St, Boston, MA 02215" +146181,Bose SoundSport Headphones,1,99.99,01/22/19 20:19,"640 Forest St, Seattle, WA 98101" +146182,Apple Airpods Headphones,1,150,01/31/19 16:12,"8 7th St, New York City, NY 10001" +146183,Macbook Pro Laptop,1,1700,01/08/19 01:43,"147 West St, Portland, ME 04101" +146184,Macbook Pro Laptop,1,1700,01/12/19 10:09,"963 Lincoln St, San Francisco, CA 94016" +146185,Wired Headphones,1,11.99,01/23/19 08:43,"47 River St, San Francisco, CA 94016" +146186,Bose SoundSport Headphones,1,99.99,01/22/19 21:46,"279 Wilson St, Atlanta, GA 30301" +146187,Apple Airpods Headphones,1,150,01/29/19 08:45,"259 Spruce St, New York City, NY 10001" +146188,Wired Headphones,1,11.99,01/15/19 15:05,"285 Main St, Seattle, WA 98101" +146189,USB-C Charging Cable,1,11.95,01/30/19 21:26,"880 Ridge St, Boston, MA 02215" +146190,AA Batteries (4-pack),2,3.84,01/09/19 20:50,"994 Johnson St, Los Angeles, CA 90001" +146191,Lightning Charging Cable,1,14.95,01/15/19 12:18,"895 6th St, San Francisco, CA 94016" +146192,Bose SoundSport Headphones,1,99.99,01/05/19 17:54,"191 Jackson St, Atlanta, GA 30301" +146193,AA Batteries (4-pack),1,3.84,01/16/19 19:42,"148 Adams St, San Francisco, CA 94016" +146194,AA Batteries (4-pack),1,3.84,01/05/19 11:10,"999 Lakeview St, San Francisco, CA 94016" +146195,Apple Airpods Headphones,1,150,01/15/19 19:24,"580 Chestnut St, Austin, TX 73301" +146196,AAA Batteries (4-pack),1,2.99,01/22/19 21:28,"961 Willow St, Atlanta, GA 30301" +146197,Bose SoundSport Headphones,1,99.99,01/16/19 17:45,"731 Cherry St, Los Angeles, CA 90001" +146198,AAA Batteries (4-pack),1,2.99,01/08/19 05:35,"629 11th St, Seattle, WA 98101" +146198,AA Batteries (4-pack),3,3.84,01/08/19 05:35,"629 11th St, Seattle, WA 98101" +146199,Apple Airpods Headphones,1,150,01/12/19 14:08,"434 2nd St, Portland, OR 97035" +146200,Apple Airpods Headphones,1,150,01/04/19 12:59,"960 Chestnut St, Portland, OR 97035" +146201,20in Monitor,1,109.99,01/03/19 11:50,"543 Cherry St, Atlanta, GA 30301" +146202,Lightning Charging Cable,1,14.95,01/26/19 23:43,"295 8th St, New York City, NY 10001" +146203,Lightning Charging Cable,1,14.95,01/16/19 21:42,"261 5th St, Portland, ME 04101" +146204,Apple Airpods Headphones,1,150,01/13/19 22:30,"458 Church St, New York City, NY 10001" +146205,27in FHD Monitor,1,149.99,01/28/19 11:01,"278 7th St, Dallas, TX 75001" +146206,Flatscreen TV,1,300,01/27/19 18:01,"855 11th St, Boston, MA 02215" +146207,Bose SoundSport Headphones,1,99.99,01/11/19 14:25,"358 12th St, Atlanta, GA 30301" +146208,Lightning Charging Cable,1,14.95,01/31/19 16:04,"108 6th St, San Francisco, CA 94016" +146209,AA Batteries (4-pack),2,3.84,01/29/19 21:23,"745 Adams St, Boston, MA 02215" +146210,USB-C Charging Cable,1,11.95,01/26/19 18:59,"530 River St, San Francisco, CA 94016" +146211,AAA Batteries (4-pack),1,2.99,01/25/19 00:42,"924 West St, Seattle, WA 98101" +146212,ThinkPad Laptop,1,999.99,01/12/19 19:20,"731 Adams St, Seattle, WA 98101" +146213,27in FHD Monitor,1,149.99,01/12/19 17:12,"276 Elm St, New York City, NY 10001" +146214,AAA Batteries (4-pack),1,2.99,01/18/19 12:54,"86 2nd St, Seattle, WA 98101" +146215,Bose SoundSport Headphones,1,99.99,01/28/19 13:51,"396 North St, Austin, TX 73301" +146216,Vareebadd Phone,1,400,01/07/19 17:10,"486 Adams St, Boston, MA 02215" +146217,Apple Airpods Headphones,1,150,01/07/19 17:50,"235 1st St, San Francisco, CA 94016" +146218,AA Batteries (4-pack),1,3.84,01/02/19 14:23,"456 Meadow St, Seattle, WA 98101" +146219,AA Batteries (4-pack),1,3.84,01/29/19 21:01,"922 Wilson St, Los Angeles, CA 90001" +146220,Wired Headphones,1,11.99,01/18/19 13:48,"479 Willow St, New York City, NY 10001" +146221,Lightning Charging Cable,1,14.95,01/25/19 09:59,"937 Forest St, San Francisco, CA 94016" +146222,Apple Airpods Headphones,1,150,01/18/19 22:16,"105 Chestnut St, Seattle, WA 98101" +146223,Lightning Charging Cable,1,14.95,01/24/19 20:35,"912 10th St, San Francisco, CA 94016" +146224,AA Batteries (4-pack),2,3.84,01/22/19 11:36,"738 Willow St, Seattle, WA 98101" +146225,AA Batteries (4-pack),1,3.84,01/01/19 15:33,"607 Ridge St, Atlanta, GA 30301" +146226,Macbook Pro Laptop,1,1700,01/27/19 06:40,"82 Walnut St, New York City, NY 10001" +146227,Apple Airpods Headphones,1,150,01/13/19 22:59,"82 Chestnut St, Los Angeles, CA 90001" +146228,Bose SoundSport Headphones,1,99.99,01/13/19 18:00,"575 Meadow St, San Francisco, CA 94016" +146229,AA Batteries (4-pack),1,3.84,01/21/19 08:02,"306 11th St, Dallas, TX 75001" +146230,iPhone,1,700,01/19/19 10:22,"637 Center St, San Francisco, CA 94016" +146230,Wired Headphones,1,11.99,01/19/19 10:22,"637 Center St, San Francisco, CA 94016" +146231,AA Batteries (4-pack),2,3.84,01/13/19 04:23,"71 Park St, Austin, TX 73301" +146232,27in FHD Monitor,1,149.99,01/29/19 13:03,"653 River St, San Francisco, CA 94016" +146233,ThinkPad Laptop,1,999.99,01/05/19 20:45,"556 Center St, New York City, NY 10001" +146234,LG Washing Machine,1,600.0,01/31/19 14:37,"841 Spruce St, San Francisco, CA 94016" +146235,Wired Headphones,1,11.99,01/06/19 23:46,"611 Lakeview St, Dallas, TX 75001" +146236,USB-C Charging Cable,1,11.95,01/24/19 18:06,"290 Park St, Boston, MA 02215" +146237,Wired Headphones,1,11.99,01/22/19 02:31,"109 Washington St, Dallas, TX 75001" +146238,27in 4K Gaming Monitor,1,389.99,01/01/19 21:11,"364 Park St, San Francisco, CA 94016" +146239,USB-C Charging Cable,1,11.95,01/25/19 15:54,"340 14th St, Los Angeles, CA 90001" +146240,AA Batteries (4-pack),4,3.84,01/15/19 14:29,"526 Walnut St, Portland, OR 97035" +146241,LG Dryer,1,600.0,01/16/19 11:38,"927 Elm St, San Francisco, CA 94016" +146242,AAA Batteries (4-pack),2,2.99,01/27/19 23:08,"593 5th St, San Francisco, CA 94016" +146243,Wired Headphones,1,11.99,01/02/19 19:46,"210 12th St, San Francisco, CA 94016" +146244,USB-C Charging Cable,1,11.95,01/12/19 08:52,"924 Church St, Austin, TX 73301" +146245,iPhone,1,700,01/19/19 22:26,"112 Lakeview St, Portland, OR 97035" +146246,Google Phone,1,600,01/18/19 15:20,"719 Washington St, San Francisco, CA 94016" +146246,Wired Headphones,1,11.99,01/18/19 15:20,"719 Washington St, San Francisco, CA 94016" +146247,Google Phone,1,600,01/05/19 19:17,"573 12th St, Seattle, WA 98101" +146248,Wired Headphones,1,11.99,01/29/19 19:51,"923 Meadow St, San Francisco, CA 94016" +146249,iPhone,1,700,01/02/19 21:00,"707 Madison St, San Francisco, CA 94016" +146250,Apple Airpods Headphones,1,150,01/15/19 17:11,"950 Lakeview St, Atlanta, GA 30301" +146251,USB-C Charging Cable,1,11.95,01/09/19 14:58,"497 2nd St, Atlanta, GA 30301" +146252,AAA Batteries (4-pack),2,2.99,01/04/19 08:14,"645 South St, New York City, NY 10001" +146253,Flatscreen TV,1,300,01/18/19 13:54,"587 Park St, Dallas, TX 75001" +146253,AAA Batteries (4-pack),1,2.99,01/18/19 13:54,"587 Park St, Dallas, TX 75001" +146254,Vareebadd Phone,1,400,01/25/19 00:09,"161 Pine St, New York City, NY 10001" +146255,AA Batteries (4-pack),2,3.84,01/30/19 12:58,"313 12th St, San Francisco, CA 94016" +146256,27in 4K Gaming Monitor,1,389.99,01/17/19 12:46,"535 Pine St, New York City, NY 10001" +146257,27in FHD Monitor,1,149.99,01/31/19 08:52,"503 Jackson St, Los Angeles, CA 90001" +146258,Lightning Charging Cable,1,14.95,01/14/19 10:15,"293 1st St, New York City, NY 10001" +146259,AA Batteries (4-pack),1,3.84,01/08/19 17:38,"5 Hill St, Atlanta, GA 30301" +146260,Google Phone,1,600,01/05/19 00:26,"491 Forest St, San Francisco, CA 94016" +146260,USB-C Charging Cable,2,11.95,01/05/19 00:26,"491 Forest St, San Francisco, CA 94016" +146260,Wired Headphones,1,11.99,01/05/19 00:26,"491 Forest St, San Francisco, CA 94016" +146261,AA Batteries (4-pack),1,3.84,01/27/19 18:17,"96 Pine St, Portland, OR 97035" +146262,Apple Airpods Headphones,1,150,01/16/19 22:04,"366 Maple St, Portland, OR 97035" +146263,Wired Headphones,1,11.99,01/03/19 20:06,"54 1st St, Atlanta, GA 30301" +146264,Apple Airpods Headphones,1,150,01/04/19 22:51,"224 Highland St, San Francisco, CA 94016" +146265,Bose SoundSport Headphones,1,99.99,01/27/19 14:30,"170 Cedar St, Los Angeles, CA 90001" +146266,27in 4K Gaming Monitor,1,389.99,01/14/19 21:50,"421 Center St, Austin, TX 73301" +146267,Wired Headphones,1,11.99,01/14/19 08:49,"743 Ridge St, Seattle, WA 98101" +146268,USB-C Charging Cable,1,11.95,01/11/19 17:14,"746 Pine St, New York City, NY 10001" +146269,27in FHD Monitor,1,149.99,01/06/19 13:03,"887 River St, Atlanta, GA 30301" +146270,Flatscreen TV,1,300,01/25/19 19:37,"653 Hill St, Seattle, WA 98101" +146271,AA Batteries (4-pack),1,3.84,01/01/19 10:55,"809 Jefferson St, Dallas, TX 75001" +146272,AA Batteries (4-pack),1,3.84,01/08/19 21:02,"818 Hickory St, Los Angeles, CA 90001" +146273,34in Ultrawide Monitor,1,379.99,01/12/19 17:46,"999 Church St, Austin, TX 73301" +146274,AAA Batteries (4-pack),1,2.99,01/09/19 18:38,"974 North St, Portland, ME 04101" +146275,AA Batteries (4-pack),1,3.84,01/10/19 21:40,"368 Cherry St, San Francisco, CA 94016" +146276,AA Batteries (4-pack),1,3.84,01/05/19 11:35,"333 Ridge St, Austin, TX 73301" +146277,AAA Batteries (4-pack),1,2.99,01/27/19 11:35,"458 11th St, San Francisco, CA 94016" +146278,Lightning Charging Cable,1,14.95,01/10/19 21:11,"53 River St, New York City, NY 10001" +146279,LG Dryer,1,600.0,01/08/19 16:55,"151 Adams St, San Francisco, CA 94016" +146280,Macbook Pro Laptop,1,1700,01/03/19 20:35,"995 Chestnut St, Los Angeles, CA 90001" +146281,AAA Batteries (4-pack),1,2.99,01/22/19 19:45,"832 2nd St, Portland, ME 04101" +146282,Apple Airpods Headphones,1,150,01/16/19 10:36,"624 Lincoln St, Los Angeles, CA 90001" +146283,Google Phone,1,600,01/15/19 22:24,"443 13th St, Los Angeles, CA 90001" +146283,USB-C Charging Cable,1,11.95,01/15/19 22:24,"443 13th St, Los Angeles, CA 90001" +146284,Wired Headphones,1,11.99,01/22/19 12:56,"670 North St, Dallas, TX 75001" +146285,iPhone,1,700,01/30/19 18:02,"510 Hill St, San Francisco, CA 94016" +146285,Lightning Charging Cable,1,14.95,01/30/19 18:02,"510 Hill St, San Francisco, CA 94016" +146286,Macbook Pro Laptop,1,1700,01/03/19 12:27,"803 Cedar St, Los Angeles, CA 90001" +146287,Macbook Pro Laptop,1,1700,01/18/19 15:52,"329 Center St, San Francisco, CA 94016" +146288,AA Batteries (4-pack),1,3.84,01/19/19 08:47,"723 North St, San Francisco, CA 94016" +146289,iPhone,1,700,01/29/19 22:48,"217 Lake St, Dallas, TX 75001" +146290,Wired Headphones,1,11.99,01/30/19 11:23,"454 Elm St, Boston, MA 02215" +146291,Apple Airpods Headphones,1,150,01/09/19 15:02,"987 West St, Portland, OR 97035" +146292,AA Batteries (4-pack),2,3.84,01/11/19 21:18,"554 7th St, Dallas, TX 75001" +146293,Bose SoundSport Headphones,1,99.99,01/13/19 05:30,"415 Walnut St, New York City, NY 10001" +146294,Bose SoundSport Headphones,1,99.99,01/27/19 19:11,"523 12th St, Los Angeles, CA 90001" +146295,AAA Batteries (4-pack),1,2.99,01/01/19 17:01,"626 Cherry St, Portland, OR 97035" +146296,Vareebadd Phone,1,400,01/04/19 22:36,"122 Chestnut St, Austin, TX 73301" +146297,Bose SoundSport Headphones,1,99.99,01/20/19 20:45,"907 Willow St, Austin, TX 73301" +146298,USB-C Charging Cable,1,11.95,01/11/19 09:35,"167 Center St, Atlanta, GA 30301" +146298,AA Batteries (4-pack),1,3.84,01/11/19 09:35,"167 Center St, Atlanta, GA 30301" +146299,Apple Airpods Headphones,1,150,01/31/19 22:36,"740 Main St, San Francisco, CA 94016" +146300,Google Phone,1,600,01/29/19 18:32,"659 Walnut St, Portland, OR 97035" +146300,USB-C Charging Cable,1,11.95,01/29/19 18:32,"659 Walnut St, Portland, OR 97035" +146300,Wired Headphones,1,11.99,01/29/19 18:32,"659 Walnut St, Portland, OR 97035" +146301,AAA Batteries (4-pack),1,2.99,01/09/19 11:27,"312 12th St, Los Angeles, CA 90001" +146302,USB-C Charging Cable,1,11.95,01/12/19 18:22,"442 4th St, Seattle, WA 98101" +146303,Lightning Charging Cable,1,14.95,01/21/19 18:23,"182 Elm St, Los Angeles, CA 90001" +146304,Wired Headphones,1,11.99,01/20/19 20:54,"42 10th St, Boston, MA 02215" +146305,Wired Headphones,1,11.99,01/31/19 17:24,"762 Chestnut St, New York City, NY 10001" +146306,Google Phone,1,600,01/04/19 15:14,"332 9th St, Austin, TX 73301" +146307,USB-C Charging Cable,1,11.95,01/03/19 16:07,"362 6th St, Boston, MA 02215" +146308,AA Batteries (4-pack),1,3.84,01/13/19 14:37,"600 Lake St, San Francisco, CA 94016" +146309,Google Phone,1,600,01/01/19 07:54,"222 Center St, San Francisco, CA 94016" +146309,Wired Headphones,1,11.99,01/01/19 07:54,"222 Center St, San Francisco, CA 94016" +146310,AAA Batteries (4-pack),1,2.99,01/07/19 01:00,"974 Lakeview St, San Francisco, CA 94016" +146311,27in 4K Gaming Monitor,1,389.99,01/03/19 14:25,"885 Cedar St, Los Angeles, CA 90001" +146312,Wired Headphones,1,11.99,01/06/19 10:07,"43 Adams St, San Francisco, CA 94016" +146313,Lightning Charging Cable,1,14.95,01/19/19 19:51,"826 South St, Los Angeles, CA 90001" +146314,AAA Batteries (4-pack),1,2.99,01/27/19 19:02,"985 Cedar St, Portland, OR 97035" +146315,USB-C Charging Cable,1,11.95,01/10/19 01:15,"448 Spruce St, Atlanta, GA 30301" +146316,USB-C Charging Cable,1,11.95,01/10/19 18:56,"100 Park St, San Francisco, CA 94016" +146317,AAA Batteries (4-pack),3,2.99,01/18/19 09:13,"849 8th St, New York City, NY 10001" +146318,AA Batteries (4-pack),4,3.84,01/09/19 14:56,"392 Elm St, Portland, ME 04101" +146319,Google Phone,1,600,01/16/19 08:16,"315 Dogwood St, San Francisco, CA 94016" +146320,AA Batteries (4-pack),2,3.84,01/10/19 13:11,"382 8th St, San Francisco, CA 94016" +146321,27in FHD Monitor,1,149.99,01/30/19 11:36,"318 River St, Boston, MA 02215" +146322,Wired Headphones,2,11.99,01/25/19 19:04,"445 Meadow St, San Francisco, CA 94016" +146323,AA Batteries (4-pack),6,3.84,01/29/19 17:32,"427 Cedar St, Boston, MA 02215" +146324,Bose SoundSport Headphones,1,99.99,01/25/19 10:35,"317 Center St, New York City, NY 10001" +146325,ThinkPad Laptop,1,999.99,01/07/19 23:13,"376 South St, Boston, MA 02215" +146326,27in FHD Monitor,1,149.99,01/15/19 20:21,"21 Dogwood St, Los Angeles, CA 90001" +146327,Flatscreen TV,1,300,01/27/19 13:55,"249 Main St, New York City, NY 10001" +146328,Macbook Pro Laptop,1,1700,01/25/19 15:37,"190 Washington St, San Francisco, CA 94016" +146329,AAA Batteries (4-pack),2,2.99,01/27/19 08:40,"4 Sunset St, Boston, MA 02215" +146330,Google Phone,1,600,01/01/19 16:36,"825 4th St, Austin, TX 73301" +146330,Bose SoundSport Headphones,1,99.99,01/01/19 16:36,"825 4th St, Austin, TX 73301" +146331,Lightning Charging Cable,1,14.95,01/24/19 03:31,"655 14th St, Los Angeles, CA 90001" +146332,Apple Airpods Headphones,1,150,01/03/19 17:14,"168 5th St, Los Angeles, CA 90001" +146333,USB-C Charging Cable,1,11.95,01/26/19 17:17,"931 Park St, San Francisco, CA 94016" +146334,Wired Headphones,1,11.99,01/31/19 10:41,"688 Walnut St, San Francisco, CA 94016" +146335,34in Ultrawide Monitor,1,379.99,01/17/19 11:49,"575 Wilson St, San Francisco, CA 94016" +146336,iPhone,1,700,01/06/19 18:21,"13 Pine St, Seattle, WA 98101" +146337,AAA Batteries (4-pack),2,2.99,01/29/19 09:49,"47 Sunset St, Seattle, WA 98101" +146338,27in FHD Monitor,1,149.99,01/11/19 13:55,"607 Church St, New York City, NY 10001" +146339,Wired Headphones,1,11.99,01/20/19 15:49,"463 Forest St, Portland, OR 97035" +146340,34in Ultrawide Monitor,1,379.99,01/24/19 09:17,"601 Johnson St, San Francisco, CA 94016" +146341,Flatscreen TV,1,300,01/07/19 00:11,"846 Jefferson St, Atlanta, GA 30301" +146342,iPhone,1,700,01/23/19 10:26,"12 Jefferson St, New York City, NY 10001" +146342,Wired Headphones,1,11.99,01/23/19 10:26,"12 Jefferson St, New York City, NY 10001" +146343,AA Batteries (4-pack),2,3.84,01/19/19 20:01,"499 6th St, New York City, NY 10001" +146343,AAA Batteries (4-pack),1,2.99,01/19/19 20:01,"499 6th St, New York City, NY 10001" +146344,Bose SoundSport Headphones,1,99.99,01/04/19 10:39,"889 6th St, Boston, MA 02215" +146345,Bose SoundSport Headphones,1,99.99,01/04/19 19:14,"384 1st St, San Francisco, CA 94016" +146346,27in FHD Monitor,1,149.99,01/05/19 18:13,"80 Sunset St, Seattle, WA 98101" +146347,Lightning Charging Cable,1,14.95,01/13/19 18:54,"358 6th St, Austin, TX 73301" +146348,Wired Headphones,1,11.99,01/12/19 16:14,"613 Walnut St, Los Angeles, CA 90001" +146348,iPhone,1,700,01/12/19 16:14,"613 Walnut St, Los Angeles, CA 90001" +146349,Lightning Charging Cable,1,14.95,01/25/19 21:25,"631 13th St, San Francisco, CA 94016" +146350,Google Phone,1,600,01/31/19 17:50,"313 North St, Los Angeles, CA 90001" +146351,USB-C Charging Cable,1,11.95,01/17/19 08:22,"477 6th St, Los Angeles, CA 90001" +146352,AA Batteries (4-pack),1,3.84,01/21/19 11:33,"56 Cedar St, Los Angeles, CA 90001" +146353,27in 4K Gaming Monitor,1,389.99,01/03/19 00:08,"423 Johnson St, San Francisco, CA 94016" +146354,Lightning Charging Cable,1,14.95,01/30/19 06:13,"37 Cherry St, Los Angeles, CA 90001" +146355,USB-C Charging Cable,1,11.95,01/20/19 00:13,"924 Hill St, New York City, NY 10001" +146356,Macbook Pro Laptop,1,1700,01/08/19 23:03,"908 Willow St, Austin, TX 73301" +146357,Lightning Charging Cable,1,14.95,01/18/19 17:24,"845 Chestnut St, New York City, NY 10001" +146358,20in Monitor,1,109.99,01/08/19 00:56,"400 Ridge St, New York City, NY 10001" +146359,AA Batteries (4-pack),1,3.84,01/25/19 09:31,"744 Forest St, Boston, MA 02215" +146360,USB-C Charging Cable,1,11.95,01/15/19 22:01,"877 Pine St, New York City, NY 10001" +146361,Google Phone,1,600,01/05/19 10:10,"88 9th St, San Francisco, CA 94016" +146362,27in FHD Monitor,1,149.99,01/26/19 18:55,"829 Hill St, Dallas, TX 75001" +146363,Wired Headphones,1,11.99,01/16/19 18:17,"989 Adams St, Los Angeles, CA 90001" +146364,AA Batteries (4-pack),2,3.84,01/31/19 16:25,"813 7th St, Boston, MA 02215" +146365,iPhone,1,700,01/05/19 12:21,"549 5th St, San Francisco, CA 94016" +146366,Bose SoundSport Headphones,1,99.99,01/31/19 14:53,"575 Hickory St, New York City, NY 10001" +146367,AA Batteries (4-pack),1,3.84,01/19/19 13:15,"740 Lakeview St, Boston, MA 02215" +146368,AAA Batteries (4-pack),1,2.99,01/12/19 15:52,"43 Jackson St, Austin, TX 73301" +146369,Lightning Charging Cable,1,14.95,01/11/19 06:30,"239 7th St, Los Angeles, CA 90001" +146370,iPhone,1,700,01/18/19 08:36,"198 Lake St, Seattle, WA 98101" +146371,Apple Airpods Headphones,1,150,01/27/19 18:28,"812 8th St, New York City, NY 10001" +146372,AA Batteries (4-pack),2,3.84,01/23/19 15:58,"888 Ridge St, Portland, OR 97035" +146373,27in 4K Gaming Monitor,1,389.99,01/19/19 17:56,"900 Church St, San Francisco, CA 94016" +146374,27in 4K Gaming Monitor,1,389.99,01/07/19 08:28,"779 Meadow St, Dallas, TX 75001" +146375,Apple Airpods Headphones,1,150,01/01/19 12:27,"788 Forest St, New York City, NY 10001" +146376,USB-C Charging Cable,1,11.95,01/06/19 10:24,"794 North St, Los Angeles, CA 90001" +146377,20in Monitor,1,109.99,01/05/19 16:41,"209 Willow St, New York City, NY 10001" +146378,Lightning Charging Cable,1,14.95,01/10/19 05:45,"554 2nd St, Portland, ME 04101" +146379,27in FHD Monitor,1,149.99,01/30/19 09:39,"915 Hill St, Atlanta, GA 30301" +146380,Apple Airpods Headphones,1,150,01/11/19 12:35,"311 Maple St, San Francisco, CA 94016" +146381,Lightning Charging Cable,1,14.95,01/04/19 12:30,"413 9th St, Portland, OR 97035" +146382,Lightning Charging Cable,1,14.95,01/25/19 21:25,"587 2nd St, Boston, MA 02215" +146383,AAA Batteries (4-pack),2,2.99,01/04/19 12:22,"504 Pine St, Seattle, WA 98101" +146384,Google Phone,1,600,01/08/19 22:37,"519 Adams St, San Francisco, CA 94016" +146385,USB-C Charging Cable,1,11.95,01/21/19 23:35,"979 Lake St, Boston, MA 02215" +146386,Apple Airpods Headphones,1,150,01/06/19 10:43,"919 Willow St, Los Angeles, CA 90001" +146387,Lightning Charging Cable,1,14.95,01/31/19 09:02,"78 Ridge St, New York City, NY 10001" +146388,Bose SoundSport Headphones,1,99.99,01/21/19 12:17,"103 2nd St, Seattle, WA 98101" +146389,Lightning Charging Cable,1,14.95,01/11/19 12:01,"469 12th St, Los Angeles, CA 90001" +146390,20in Monitor,1,109.99,01/06/19 22:42,"986 13th St, San Francisco, CA 94016" +146391,Macbook Pro Laptop,1,1700,01/15/19 20:00,"473 Dogwood St, Boston, MA 02215" +146392,AAA Batteries (4-pack),2,2.99,01/09/19 19:13,"465 Madison St, Los Angeles, CA 90001" +146393,Lightning Charging Cable,1,14.95,01/08/19 17:27,"499 6th St, Atlanta, GA 30301" +146394,AA Batteries (4-pack),1,3.84,01/09/19 09:04,"986 Lincoln St, Atlanta, GA 30301" +146395,LG Dryer,1,600.0,01/13/19 00:03,"682 Madison St, San Francisco, CA 94016" +146396,34in Ultrawide Monitor,1,379.99,01/28/19 03:13,"194 9th St, Austin, TX 73301" +146397,Macbook Pro Laptop,1,1700,01/04/19 19:54,"382 West St, Los Angeles, CA 90001" +146398,AAA Batteries (4-pack),1,2.99,01/24/19 12:08,"903 Spruce St, Los Angeles, CA 90001" +146399,Lightning Charging Cable,1,14.95,01/22/19 11:12,"914 Lakeview St, Seattle, WA 98101" +146400,Vareebadd Phone,1,400,01/01/19 20:35,"80 Hill St, Portland, ME 04101" +146401,ThinkPad Laptop,1,999.99,01/15/19 20:19,"129 5th St, San Francisco, CA 94016" +146402,27in 4K Gaming Monitor,1,389.99,01/04/19 10:15,"870 4th St, San Francisco, CA 94016" +146403,AA Batteries (4-pack),1,3.84,01/03/19 21:32,"44 Lake St, Austin, TX 73301" +146404,AA Batteries (4-pack),1,3.84,01/05/19 21:02,"940 7th St, Los Angeles, CA 90001" +146405,Wired Headphones,1,11.99,01/26/19 16:40,"493 4th St, Seattle, WA 98101" +146406,Wired Headphones,1,11.99,01/28/19 05:59,"117 Cherry St, Los Angeles, CA 90001" +146407,Apple Airpods Headphones,1,150,01/31/19 19:42,"186 2nd St, Los Angeles, CA 90001" +146408,LG Dryer,1,600.0,01/30/19 08:47,"753 North St, Dallas, TX 75001" +146409,USB-C Charging Cable,1,11.95,01/11/19 15:33,"720 Pine St, Dallas, TX 75001" +146410,USB-C Charging Cable,1,11.95,01/11/19 15:15,"865 13th St, San Francisco, CA 94016" +146411,Bose SoundSport Headphones,1,99.99,01/20/19 13:14,"619 Church St, New York City, NY 10001" +146412,USB-C Charging Cable,1,11.95,01/28/19 16:01,"860 Meadow St, Dallas, TX 75001" +146413,AA Batteries (4-pack),1,3.84,01/06/19 18:57,"881 West St, Los Angeles, CA 90001" +146414,27in 4K Gaming Monitor,1,389.99,01/25/19 18:19,"554 6th St, New York City, NY 10001" +146415,27in 4K Gaming Monitor,1,389.99,01/28/19 14:04,"761 Pine St, Los Angeles, CA 90001" +146416,20in Monitor,1,109.99,01/03/19 10:54,"301 10th St, Los Angeles, CA 90001" +146417,LG Washing Machine,1,600.0,01/08/19 12:32,"915 Lakeview St, San Francisco, CA 94016" +146418,Lightning Charging Cable,1,14.95,01/03/19 22:52,"607 Walnut St, Dallas, TX 75001" +146419,Apple Airpods Headphones,1,150,01/19/19 10:35,"908 Dogwood St, San Francisco, CA 94016" +146420,Wired Headphones,1,11.99,01/09/19 15:10,"74 Hill St, Austin, TX 73301" +146421,AA Batteries (4-pack),1,3.84,01/08/19 19:09,"400 North St, New York City, NY 10001" +146422,20in Monitor,1,109.99,01/12/19 15:10,"575 2nd St, Portland, OR 97035" +146423,27in FHD Monitor,1,149.99,01/18/19 18:10,"403 Wilson St, New York City, NY 10001" +146424,Bose SoundSport Headphones,1,99.99,02/01/19 00:54,"76 Willow St, Austin, TX 73301" +146425,Wired Headphones,1,11.99,01/18/19 02:04,"886 Center St, Seattle, WA 98101" +146426,AA Batteries (4-pack),1,3.84,01/28/19 17:07,"551 9th St, Portland, OR 97035" +146427,AAA Batteries (4-pack),2,2.99,01/22/19 09:58,"316 Jackson St, New York City, NY 10001" +146428,Bose SoundSport Headphones,1,99.99,01/12/19 17:00,"655 Spruce St, Los Angeles, CA 90001" +146429,Lightning Charging Cable,1,14.95,01/10/19 17:37,"11 Center St, Atlanta, GA 30301" +146430,Google Phone,1,600,01/17/19 13:30,"437 11th St, Dallas, TX 75001" +146431,Lightning Charging Cable,1,14.95,01/18/19 12:46,"532 Washington St, Dallas, TX 75001" +146432,27in 4K Gaming Monitor,1,389.99,01/10/19 17:20,"102 8th St, Dallas, TX 75001" +146433,Bose SoundSport Headphones,1,99.99,01/05/19 12:01,"663 Main St, Dallas, TX 75001" +146434,Lightning Charging Cable,1,14.95,01/19/19 10:14,"646 Meadow St, San Francisco, CA 94016" +146435,Bose SoundSport Headphones,1,99.99,01/12/19 09:48,"818 Elm St, Portland, ME 04101" +146436,27in 4K Gaming Monitor,1,389.99,01/16/19 20:51,"98 Pine St, Atlanta, GA 30301" +146437,Macbook Pro Laptop,1,1700,01/08/19 21:21,"785 Church St, Dallas, TX 75001" +146438,27in FHD Monitor,1,149.99,01/15/19 06:44,"375 Pine St, Los Angeles, CA 90001" +146439,Bose SoundSport Headphones,1,99.99,01/15/19 11:00,"234 Hickory St, New York City, NY 10001" +146440,Wired Headphones,1,11.99,01/01/19 14:34,"788 9th St, San Francisco, CA 94016" +146441,AAA Batteries (4-pack),2,2.99,01/16/19 10:01,"883 Cherry St, Portland, ME 04101" +146442,Bose SoundSport Headphones,1,99.99,01/17/19 17:44,"618 Park St, Atlanta, GA 30301" +146443,Bose SoundSport Headphones,1,99.99,01/19/19 15:44,"592 Church St, Austin, TX 73301" +146444,Bose SoundSport Headphones,1,99.99,01/22/19 17:54,"755 Forest St, Boston, MA 02215" +146445,AA Batteries (4-pack),1,3.84,01/10/19 06:16,"668 Lakeview St, Atlanta, GA 30301" +146446,AAA Batteries (4-pack),1,2.99,01/01/19 22:11,"965 Elm St, Austin, TX 73301" +146447,USB-C Charging Cable,1,11.95,01/02/19 23:32,"871 9th St, Seattle, WA 98101" +146448,AAA Batteries (4-pack),2,2.99,01/14/19 08:07,"735 Maple St, Boston, MA 02215" +146448,Google Phone,1,600,01/14/19 08:07,"735 Maple St, Boston, MA 02215" +146449,AA Batteries (4-pack),1,3.84,01/18/19 07:42,"339 2nd St, Seattle, WA 98101" +146450,AA Batteries (4-pack),1,3.84,01/01/19 21:18,"399 Jefferson St, New York City, NY 10001" +146451,Bose SoundSport Headphones,1,99.99,01/23/19 12:01,"856 8th St, New York City, NY 10001" +146452,Bose SoundSport Headphones,1,99.99,01/20/19 14:14,"215 Lake St, Los Angeles, CA 90001" +146453,USB-C Charging Cable,2,11.95,01/28/19 21:19,"222 13th St, Seattle, WA 98101" +146454,27in FHD Monitor,1,149.99,01/26/19 08:01,"742 5th St, New York City, NY 10001" +146455,AA Batteries (4-pack),1,3.84,01/13/19 16:08,"549 Spruce St, Los Angeles, CA 90001" +146456,USB-C Charging Cable,1,11.95,01/05/19 03:27,"284 6th St, Boston, MA 02215" +146457,USB-C Charging Cable,1,11.95,01/19/19 16:36,"780 Jackson St, San Francisco, CA 94016" +146458,Bose SoundSport Headphones,1,99.99,01/06/19 13:36,"87 South St, Atlanta, GA 30301" +146459,27in 4K Gaming Monitor,1,389.99,01/29/19 15:55,"697 Hickory St, Boston, MA 02215" +146460,20in Monitor,1,109.99,01/05/19 12:06,"141 5th St, Los Angeles, CA 90001" +146461,27in 4K Gaming Monitor,1,389.99,01/17/19 09:03,"606 6th St, San Francisco, CA 94016" +146462,AA Batteries (4-pack),1,3.84,01/17/19 19:44,"526 Wilson St, Los Angeles, CA 90001" +146463,AAA Batteries (4-pack),1,2.99,01/19/19 12:22,"35 7th St, San Francisco, CA 94016" +146464,Lightning Charging Cable,1,14.95,01/12/19 12:35,"522 Elm St, Atlanta, GA 30301" +146465,Lightning Charging Cable,1,14.95,01/03/19 19:53,"79 Hickory St, Boston, MA 02215" +146466,AAA Batteries (4-pack),1,2.99,01/18/19 01:05,"539 14th St, Los Angeles, CA 90001" +146467,USB-C Charging Cable,3,11.95,01/07/19 21:42,"329 Elm St, San Francisco, CA 94016" +146468,AA Batteries (4-pack),1,3.84,01/01/19 21:30,"735 South St, San Francisco, CA 94016" +146469,Bose SoundSport Headphones,1,99.99,01/31/19 18:39,"323 Jackson St, San Francisco, CA 94016" +146470,AAA Batteries (4-pack),2,2.99,01/26/19 13:42,"818 Hill St, Boston, MA 02215" +146471,27in FHD Monitor,1,149.99,01/29/19 13:20,"979 7th St, San Francisco, CA 94016" +146472,Google Phone,1,600,01/04/19 08:25,"474 Center St, Boston, MA 02215" +146473,Apple Airpods Headphones,1,150,01/22/19 16:42,"129 Maple St, Seattle, WA 98101" +146474,LG Dryer,1,600.0,01/15/19 14:07,"337 River St, Boston, MA 02215" +146475,Bose SoundSport Headphones,1,99.99,01/22/19 07:38,"774 Adams St, Boston, MA 02215" +146476,Wired Headphones,1,11.99,01/02/19 19:47,"386 Meadow St, San Francisco, CA 94016" +146477,USB-C Charging Cable,1,11.95,01/11/19 13:02,"137 Meadow St, San Francisco, CA 94016" +146478,Lightning Charging Cable,1,14.95,01/13/19 12:57,"146 6th St, Los Angeles, CA 90001" +146479,Bose SoundSport Headphones,1,99.99,01/25/19 21:09,"840 Willow St, Seattle, WA 98101" +146480,Bose SoundSport Headphones,1,99.99,01/07/19 17:46,"745 Johnson St, San Francisco, CA 94016" +146481,Macbook Pro Laptop,1,1700,01/12/19 13:32,"740 Wilson St, Boston, MA 02215" +146482,Wired Headphones,1,11.99,01/29/19 22:11,"874 Maple St, New York City, NY 10001" +146483,27in 4K Gaming Monitor,1,389.99,01/29/19 12:40,"178 10th St, San Francisco, CA 94016" +146484,AAA Batteries (4-pack),1,2.99,01/13/19 17:14,"291 Chestnut St, Atlanta, GA 30301" +146485,AAA Batteries (4-pack),2,2.99,01/14/19 12:51,"54 Pine St, Atlanta, GA 30301" +146486,Lightning Charging Cable,1,14.95,01/28/19 13:23,"796 10th St, Atlanta, GA 30301" +146487,Bose SoundSport Headphones,1,99.99,01/21/19 16:42,"625 River St, Seattle, WA 98101" +146488,AAA Batteries (4-pack),3,2.99,01/25/19 01:13,"133 Washington St, Austin, TX 73301" +146489,AA Batteries (4-pack),2,3.84,01/16/19 18:11,"244 Lincoln St, San Francisco, CA 94016" +146490,Bose SoundSport Headphones,1,99.99,01/20/19 21:33,"841 2nd St, San Francisco, CA 94016" +146491,AA Batteries (4-pack),1,3.84,01/13/19 22:18,"740 Pine St, Boston, MA 02215" +146492,Wired Headphones,1,11.99,01/02/19 18:03,"375 Washington St, Los Angeles, CA 90001" +146493,USB-C Charging Cable,1,11.95,01/20/19 11:09,"147 Forest St, San Francisco, CA 94016" +146494,USB-C Charging Cable,1,11.95,01/26/19 10:47,"79 Adams St, Boston, MA 02215" +146495,Lightning Charging Cable,1,14.95,01/14/19 19:54,"830 1st St, Dallas, TX 75001" +146496,Wired Headphones,1,11.99,01/14/19 12:12,"667 4th St, New York City, NY 10001" +146497,20in Monitor,1,109.99,01/29/19 07:03,"975 North St, Los Angeles, CA 90001" +146498,AA Batteries (4-pack),2,3.84,01/30/19 00:44,"853 Jefferson St, Los Angeles, CA 90001" +146499,Wired Headphones,1,11.99,01/29/19 23:14,"255 Maple St, Austin, TX 73301" +146499,Wired Headphones,1,11.99,01/29/19 23:14,"255 Maple St, Austin, TX 73301" +146500,AA Batteries (4-pack),1,3.84,01/03/19 21:41,"28 Willow St, Portland, ME 04101" +146501,USB-C Charging Cable,1,11.95,01/25/19 14:16,"784 Meadow St, Los Angeles, CA 90001" +146502,Wired Headphones,1,11.99,01/05/19 15:08,"525 4th St, Los Angeles, CA 90001" +146503,USB-C Charging Cable,1,11.95,01/16/19 19:37,"994 Hill St, New York City, NY 10001" +146504,USB-C Charging Cable,1,11.95,01/29/19 15:01,"902 6th St, Atlanta, GA 30301" +146505,USB-C Charging Cable,1,11.95,01/14/19 11:48,"103 Lincoln St, New York City, NY 10001" +146506,27in FHD Monitor,1,149.99,01/16/19 23:54,"760 North St, Portland, OR 97035" +146507,AA Batteries (4-pack),1,3.84,01/11/19 08:45,"415 West St, San Francisco, CA 94016" +146508,Apple Airpods Headphones,1,150,01/29/19 19:29,"807 Maple St, Boston, MA 02215" +146509,AAA Batteries (4-pack),1,2.99,01/06/19 10:39,"596 Adams St, New York City, NY 10001" +146510,Lightning Charging Cable,1,14.95,01/17/19 22:04,"246 Spruce St, Seattle, WA 98101" +146511,Wired Headphones,1,11.99,01/07/19 18:33,"984 13th St, Atlanta, GA 30301" +146512,Vareebadd Phone,1,400,01/16/19 18:17,"262 Pine St, Boston, MA 02215" +146512,USB-C Charging Cable,1,11.95,01/16/19 18:17,"262 Pine St, Boston, MA 02215" +146513,Bose SoundSport Headphones,1,99.99,01/22/19 14:45,"204 Adams St, San Francisco, CA 94016" +146514,AA Batteries (4-pack),1,3.84,01/12/19 16:50,"666 2nd St, Los Angeles, CA 90001" +146515,iPhone,1,700,01/07/19 12:00,"567 Meadow St, Dallas, TX 75001" +146516,AAA Batteries (4-pack),1,2.99,01/06/19 18:46,"971 6th St, New York City, NY 10001" +146517,27in FHD Monitor,1,149.99,01/04/19 06:25,"310 7th St, Boston, MA 02215" +146518,Vareebadd Phone,1,400,01/07/19 16:46,"311 Adams St, New York City, NY 10001" +146519,Lightning Charging Cable,1,14.95,01/07/19 21:01,"356 6th St, Seattle, WA 98101" +146520,27in 4K Gaming Monitor,1,389.99,01/28/19 13:50,"113 Dogwood St, Boston, MA 02215" +146521,AAA Batteries (4-pack),1,2.99,01/24/19 09:58,"151 14th St, San Francisco, CA 94016" +146522,ThinkPad Laptop,1,999.99,01/21/19 09:52,"21 Madison St, San Francisco, CA 94016" +146523,Vareebadd Phone,1,400,01/27/19 09:14,"944 4th St, San Francisco, CA 94016" +146523,Bose SoundSport Headphones,1,99.99,01/27/19 09:14,"944 4th St, San Francisco, CA 94016" +146524,Bose SoundSport Headphones,1,99.99,01/16/19 22:11,"219 Lakeview St, Portland, OR 97035" +146525,Lightning Charging Cable,1,14.95,01/05/19 13:23,"827 Johnson St, Dallas, TX 75001" +146526,AAA Batteries (4-pack),1,2.99,01/18/19 19:19,"270 10th St, Austin, TX 73301" +146527,20in Monitor,1,109.99,01/01/19 23:07,"589 Forest St, San Francisco, CA 94016" +146528,Wired Headphones,1,11.99,01/23/19 22:37,"383 13th St, Dallas, TX 75001" +146529,34in Ultrawide Monitor,1,379.99,01/12/19 07:20,"749 Jefferson St, Portland, OR 97035" +146530,AA Batteries (4-pack),1,3.84,01/06/19 13:55,"722 Walnut St, Austin, TX 73301" +146531,AAA Batteries (4-pack),1,2.99,01/23/19 13:44,"41 7th St, San Francisco, CA 94016" +146532,Flatscreen TV,1,300,01/21/19 09:23,"528 Adams St, New York City, NY 10001" +146533,AA Batteries (4-pack),1,3.84,01/26/19 19:24,"112 10th St, San Francisco, CA 94016" +146534,Apple Airpods Headphones,1,150,01/02/19 19:30,"685 2nd St, New York City, NY 10001" +146535,AAA Batteries (4-pack),1,2.99,01/15/19 19:32,"871 12th St, Los Angeles, CA 90001" +146536,ThinkPad Laptop,1,999.99,01/26/19 04:00,"230 Highland St, Los Angeles, CA 90001" +146537,27in 4K Gaming Monitor,1,389.99,01/19/19 21:51,"103 Willow St, Portland, ME 04101" +146538,AAA Batteries (4-pack),2,2.99,01/21/19 10:44,"875 Madison St, Atlanta, GA 30301" +146539,Google Phone,1,600,01/07/19 22:16,"192 8th St, Seattle, WA 98101" +146539,USB-C Charging Cable,1,11.95,01/07/19 22:16,"192 8th St, Seattle, WA 98101" +146540,Google Phone,1,600,01/21/19 19:15,"41 2nd St, New York City, NY 10001" +146541,20in Monitor,1,109.99,01/23/19 21:53,"258 11th St, San Francisco, CA 94016" +146542,USB-C Charging Cable,1,11.95,01/30/19 10:19,"98 Park St, Los Angeles, CA 90001" +146543,27in 4K Gaming Monitor,1,389.99,01/24/19 15:19,"103 11th St, Boston, MA 02215" +146544,USB-C Charging Cable,1,11.95,01/02/19 17:22,"543 Jackson St, Portland, ME 04101" +146545,ThinkPad Laptop,1,999.99,01/05/19 12:22,"588 Sunset St, Boston, MA 02215" +146546,AA Batteries (4-pack),1,3.84,01/15/19 11:46,"903 Jefferson St, San Francisco, CA 94016" +146547,AA Batteries (4-pack),2,3.84,01/21/19 14:30,"388 Park St, Boston, MA 02215" +146548,AAA Batteries (4-pack),1,2.99,01/28/19 14:48,"148 Hickory St, Portland, OR 97035" +146549,Bose SoundSport Headphones,1,99.99,01/19/19 16:31,"223 13th St, Los Angeles, CA 90001" +146550,AA Batteries (4-pack),1,3.84,01/04/19 22:19,"155 Pine St, Austin, TX 73301" +146551,27in FHD Monitor,1,149.99,01/19/19 23:47,"97 Chestnut St, Los Angeles, CA 90001" +146552,Vareebadd Phone,1,400,01/13/19 20:38,"947 Hickory St, Austin, TX 73301" +146553,Wired Headphones,1,11.99,01/20/19 19:12,"934 Pine St, Los Angeles, CA 90001" +146554,Flatscreen TV,1,300,01/16/19 09:55,"710 13th St, Los Angeles, CA 90001" +146555,Lightning Charging Cable,1,14.95,01/23/19 20:02,"524 Meadow St, New York City, NY 10001" +146556,USB-C Charging Cable,1,11.95,01/29/19 12:21,"695 Lake St, Atlanta, GA 30301" +146557,Lightning Charging Cable,1,14.95,01/22/19 21:51,"599 Highland St, Boston, MA 02215" +146558,Lightning Charging Cable,3,14.95,01/21/19 13:35,"255 Cedar St, Atlanta, GA 30301" +146559,27in FHD Monitor,1,149.99,01/08/19 15:32,"670 Jackson St, Boston, MA 02215" +146560,AAA Batteries (4-pack),2,2.99,01/09/19 11:10,"4 4th St, Atlanta, GA 30301" +146561,Bose SoundSport Headphones,1,99.99,01/29/19 19:42,"298 Maple St, New York City, NY 10001" +146562,Flatscreen TV,1,300,01/01/19 12:03,"907 1st St, Portland, OR 97035" +146563,USB-C Charging Cable,1,11.95,01/13/19 21:01,"419 8th St, Austin, TX 73301" +146564,Google Phone,1,600,01/31/19 11:17,"290 Cedar St, Los Angeles, CA 90001" +146565,34in Ultrawide Monitor,1,379.99,01/08/19 14:40,"563 9th St, New York City, NY 10001" +146566,AAA Batteries (4-pack),1,2.99,01/29/19 17:43,"831 10th St, San Francisco, CA 94016" +146567,20in Monitor,1,109.99,01/24/19 09:28,"733 13th St, Los Angeles, CA 90001" +146568,Apple Airpods Headphones,1,150,01/16/19 15:28,"626 River St, New York City, NY 10001" +146569,AAA Batteries (4-pack),1,2.99,01/14/19 12:20,"626 Forest St, Portland, OR 97035" +146570,Apple Airpods Headphones,1,150,01/22/19 08:32,"556 Walnut St, Boston, MA 02215" +146571,Lightning Charging Cable,1,14.95,01/19/19 11:07,"327 Washington St, New York City, NY 10001" +146572,Google Phone,1,600,01/13/19 19:11,"898 12th St, San Francisco, CA 94016" +146573,Apple Airpods Headphones,1,150,01/21/19 20:33,"705 Wilson St, Portland, OR 97035" +146574,Wired Headphones,1,11.99,01/02/19 18:08,"201 River St, San Francisco, CA 94016" +146575,ThinkPad Laptop,1,999.99,01/18/19 12:36,"900 Forest St, San Francisco, CA 94016" +146576,AA Batteries (4-pack),1,3.84,01/06/19 07:58,"380 6th St, Dallas, TX 75001" +146577,iPhone,1,700,01/22/19 18:41,"877 Highland St, San Francisco, CA 94016" +146578,Bose SoundSport Headphones,1,99.99,01/30/19 13:00,"851 River St, Boston, MA 02215" +146579,27in FHD Monitor,1,149.99,01/26/19 20:37,"723 Church St, Atlanta, GA 30301" +146580,Lightning Charging Cable,1,14.95,01/28/19 13:45,"123 Chestnut St, San Francisco, CA 94016" +146581,AAA Batteries (4-pack),1,2.99,01/13/19 09:39,"629 13th St, San Francisco, CA 94016" +146582,AAA Batteries (4-pack),1,2.99,01/28/19 21:39,"573 Dogwood St, Los Angeles, CA 90001" +146583,AAA Batteries (4-pack),2,2.99,01/07/19 13:18,"503 Willow St, Atlanta, GA 30301" +146584,Lightning Charging Cable,1,14.95,01/19/19 20:34,"350 Highland St, Atlanta, GA 30301" +146585,Flatscreen TV,1,300,01/29/19 22:10,"476 Highland St, Los Angeles, CA 90001" +146586,Google Phone,1,600,01/26/19 22:16,"723 Washington St, San Francisco, CA 94016" +146587,20in Monitor,1,109.99,01/04/19 12:29,"850 Spruce St, Atlanta, GA 30301" +146588,Apple Airpods Headphones,1,150,01/11/19 15:30,"205 Jackson St, Boston, MA 02215" +146589,AAA Batteries (4-pack),1,2.99,01/06/19 16:58,"288 Cedar St, San Francisco, CA 94016" +146590,AAA Batteries (4-pack),1,2.99,01/17/19 14:10,"749 14th St, Los Angeles, CA 90001" +146591,Lightning Charging Cable,1,14.95,01/08/19 16:53,"891 4th St, San Francisco, CA 94016" +146591,iPhone,1,700,01/08/19 16:53,"891 4th St, San Francisco, CA 94016" +146592,20in Monitor,1,109.99,01/09/19 13:19,"479 Washington St, New York City, NY 10001" +146593,Google Phone,1,600,01/05/19 17:19,"435 Hill St, San Francisco, CA 94016" +146594,Lightning Charging Cable,1,14.95,01/26/19 11:47,"669 13th St, New York City, NY 10001" +146595,USB-C Charging Cable,1,11.95,01/28/19 12:31,"230 North St, Portland, OR 97035" +146596,USB-C Charging Cable,1,11.95,01/24/19 22:28,"47 6th St, New York City, NY 10001" +146597,Wired Headphones,1,11.99,01/07/19 09:02,"730 Forest St, Atlanta, GA 30301" +146598,Bose SoundSport Headphones,1,99.99,01/09/19 16:53,"208 Willow St, Atlanta, GA 30301" +146599,Macbook Pro Laptop,1,1700,01/06/19 08:54,"632 Adams St, Boston, MA 02215" +146600,AA Batteries (4-pack),2,3.84,01/10/19 11:17,"809 Walnut St, Dallas, TX 75001" +146601,LG Washing Machine,1,600.0,01/23/19 09:52,"842 1st St, Portland, OR 97035" +146602,27in FHD Monitor,1,149.99,01/16/19 19:59,"956 4th St, Los Angeles, CA 90001" +146603,Lightning Charging Cable,1,14.95,01/30/19 22:02,"985 Jefferson St, Dallas, TX 75001" +146604,Google Phone,1,600,01/04/19 15:56,"142 6th St, Atlanta, GA 30301" +146605,AAA Batteries (4-pack),2,2.99,01/24/19 01:57,"732 1st St, New York City, NY 10001" +146606,AAA Batteries (4-pack),1,2.99,01/16/19 16:03,"883 Main St, San Francisco, CA 94016" +146607,Wired Headphones,1,11.99,01/11/19 05:54,"58 13th St, New York City, NY 10001" +146608,Lightning Charging Cable,1,14.95,01/22/19 08:21,"161 Ridge St, Los Angeles, CA 90001" +146609,Lightning Charging Cable,1,14.95,01/13/19 22:08,"199 Ridge St, Los Angeles, CA 90001" +146610,Apple Airpods Headphones,1,150,01/21/19 15:38,"115 Cedar St, Los Angeles, CA 90001" +146611,Google Phone,1,600,01/26/19 19:25,"60 South St, Los Angeles, CA 90001" +146612,Wired Headphones,1,11.99,01/31/19 17:57,"824 12th St, Seattle, WA 98101" +146613,Bose SoundSport Headphones,1,99.99,01/01/19 19:35,"370 Johnson St, Dallas, TX 75001" +146614,AAA Batteries (4-pack),2,2.99,01/05/19 09:26,"406 Center St, New York City, NY 10001" +146615,USB-C Charging Cable,1,11.95,01/28/19 00:43,"803 Forest St, Boston, MA 02215" +146616,Lightning Charging Cable,1,14.95,01/24/19 21:57,"872 Sunset St, Atlanta, GA 30301" +146617,USB-C Charging Cable,1,11.95,01/26/19 10:40,"225 Sunset St, San Francisco, CA 94016" +146618,USB-C Charging Cable,1,11.95,01/04/19 16:23,"246 North St, San Francisco, CA 94016" +146619,Bose SoundSport Headphones,1,99.99,01/14/19 23:06,"557 Willow St, New York City, NY 10001" +146620,AAA Batteries (4-pack),1,2.99,01/27/19 18:14,"239 Jackson St, Dallas, TX 75001" +146621,Bose SoundSport Headphones,1,99.99,01/24/19 14:37,"558 8th St, San Francisco, CA 94016" +,,,,, +146622,Lightning Charging Cable,1,14.95,01/11/19 10:53,"675 Highland St, Los Angeles, CA 90001" +146623,Apple Airpods Headphones,1,150,01/22/19 15:21,"168 10th St, Austin, TX 73301" +146624,iPhone,1,700,01/05/19 14:44,"847 8th St, Boston, MA 02215" +146625,USB-C Charging Cable,1,11.95,01/12/19 20:25,"934 6th St, New York City, NY 10001" +146625,AA Batteries (4-pack),1,3.84,01/12/19 20:25,"934 6th St, New York City, NY 10001" +146626,Bose SoundSport Headphones,1,99.99,01/03/19 22:46,"814 Chestnut St, San Francisco, CA 94016" +146627,Apple Airpods Headphones,1,150,01/17/19 15:26,"65 Park St, Portland, OR 97035" +146628,AAA Batteries (4-pack),3,2.99,01/25/19 13:18,"738 Lincoln St, Seattle, WA 98101" +146629,Lightning Charging Cable,1,14.95,01/27/19 20:12,"113 Spruce St, San Francisco, CA 94016" +146630,Wired Headphones,1,11.99,01/05/19 18:28,"175 12th St, Seattle, WA 98101" +146631,20in Monitor,1,109.99,01/22/19 18:23,"210 Walnut St, Seattle, WA 98101" +146632,Lightning Charging Cable,1,14.95,01/07/19 18:07,"649 Washington St, Dallas, TX 75001" +146633,iPhone,1,700,01/07/19 16:43,"985 14th St, Portland, OR 97035" +146634,Apple Airpods Headphones,1,150,01/06/19 23:20,"810 Sunset St, Austin, TX 73301" +146635,ThinkPad Laptop,1,999.99,01/23/19 16:18,"178 14th St, New York City, NY 10001" +146636,Vareebadd Phone,1,400,01/31/19 18:30,"266 8th St, Atlanta, GA 30301" +146637,Apple Airpods Headphones,1,150,01/28/19 19:04,"900 Meadow St, Dallas, TX 75001" +146638,Wired Headphones,1,11.99,01/14/19 12:47,"47 Chestnut St, Seattle, WA 98101" +146639,27in 4K Gaming Monitor,1,389.99,01/25/19 16:19,"216 Jackson St, Portland, OR 97035" +146640,Wired Headphones,1,11.99,01/12/19 21:36,"586 Lake St, San Francisco, CA 94016" +146641,Bose SoundSport Headphones,1,99.99,01/05/19 13:07,"80 7th St, Seattle, WA 98101" +146642,Bose SoundSport Headphones,1,99.99,01/24/19 09:24,"800 Hill St, San Francisco, CA 94016" +146643,Lightning Charging Cable,1,14.95,01/09/19 10:37,"962 14th St, San Francisco, CA 94016" +146644,AAA Batteries (4-pack),2,2.99,01/17/19 09:14,"900 Hickory St, Boston, MA 02215" +146645,27in 4K Gaming Monitor,1,389.99,01/06/19 17:31,"783 Maple St, Los Angeles, CA 90001" +146646,Wired Headphones,1,11.99,01/21/19 21:10,"538 9th St, Los Angeles, CA 90001" +146647,AAA Batteries (4-pack),1,2.99,01/28/19 12:59,"338 Jackson St, Dallas, TX 75001" +146648,AAA Batteries (4-pack),2,2.99,01/02/19 17:05,"451 7th St, Dallas, TX 75001" +146649,Google Phone,1,600,01/07/19 13:40,"466 West St, Los Angeles, CA 90001" +146649,Bose SoundSport Headphones,1,99.99,01/07/19 13:40,"466 West St, Los Angeles, CA 90001" +146650,Bose SoundSport Headphones,1,99.99,01/07/19 19:20,"390 Chestnut St, San Francisco, CA 94016" +146651,ThinkPad Laptop,1,999.99,01/31/19 00:56,"625 Maple St, San Francisco, CA 94016" +146652,Wired Headphones,1,11.99,01/18/19 12:27,"261 2nd St, New York City, NY 10001" +146653,AA Batteries (4-pack),1,3.84,01/07/19 10:50,"263 11th St, San Francisco, CA 94016" +146654,27in FHD Monitor,1,149.99,01/10/19 11:23,"763 Cherry St, Los Angeles, CA 90001" +146655,AAA Batteries (4-pack),1,2.99,01/14/19 20:12,"575 6th St, Portland, OR 97035" +146656,USB-C Charging Cable,1,11.95,01/07/19 19:19,"2 11th St, Atlanta, GA 30301" +146657,AAA Batteries (4-pack),2,2.99,01/22/19 12:56,"28 Sunset St, Seattle, WA 98101" +146658,AA Batteries (4-pack),3,3.84,01/13/19 14:28,"734 Main St, Los Angeles, CA 90001" +146659,AA Batteries (4-pack),1,3.84,01/27/19 03:18,"589 Hill St, Dallas, TX 75001" +146660,Apple Airpods Headphones,1,150,01/06/19 10:16,"720 Elm St, San Francisco, CA 94016" +146661,Wired Headphones,1,11.99,01/24/19 12:41,"205 11th St, San Francisco, CA 94016" +146662,Bose SoundSport Headphones,1,99.99,01/24/19 13:15,"458 Highland St, Los Angeles, CA 90001" +146663,27in 4K Gaming Monitor,1,389.99,01/25/19 10:53,"193 Spruce St, Los Angeles, CA 90001" +146664,27in FHD Monitor,1,149.99,01/10/19 12:34,"211 Lakeview St, New York City, NY 10001" +146665,USB-C Charging Cable,1,11.95,01/25/19 10:21,"330 9th St, Portland, OR 97035" +146666,AA Batteries (4-pack),1,3.84,01/27/19 17:27,"116 Adams St, Seattle, WA 98101" +146667,Flatscreen TV,1,300,01/15/19 14:33,"940 Hill St, Boston, MA 02215" +146668,Bose SoundSport Headphones,1,99.99,01/27/19 14:26,"912 Sunset St, San Francisco, CA 94016" +146669,Lightning Charging Cable,1,14.95,01/08/19 17:52,"792 14th St, Los Angeles, CA 90001" +146670,Apple Airpods Headphones,1,150,01/28/19 10:44,"229 5th St, Dallas, TX 75001" +146671,Wired Headphones,1,11.99,01/13/19 20:47,"861 10th St, San Francisco, CA 94016" +146672,20in Monitor,1,109.99,01/14/19 16:47,"793 Madison St, San Francisco, CA 94016" +146673,Lightning Charging Cable,1,14.95,01/01/19 22:13,"133 1st St, Seattle, WA 98101" +146674,Flatscreen TV,1,300,01/17/19 23:31,"976 Elm St, San Francisco, CA 94016" +146675,Vareebadd Phone,1,400,01/14/19 15:14,"344 Washington St, Atlanta, GA 30301" +146676,Lightning Charging Cable,1,14.95,01/30/19 08:08,"412 Madison St, Los Angeles, CA 90001" +146677,AA Batteries (4-pack),1,3.84,01/14/19 19:06,"998 Spruce St, Boston, MA 02215" +146678,Macbook Pro Laptop,1,1700,01/26/19 21:30,"160 Spruce St, Los Angeles, CA 90001" +146679,Wired Headphones,1,11.99,01/15/19 11:57,"208 Lakeview St, Boston, MA 02215" +146680,Lightning Charging Cable,1,14.95,01/02/19 12:01,"832 Johnson St, San Francisco, CA 94016" +146681,USB-C Charging Cable,1,11.95,01/05/19 06:39,"24 Cedar St, San Francisco, CA 94016" +146682,ThinkPad Laptop,1,999.99,01/25/19 10:04,"451 Lincoln St, Portland, OR 97035" +146683,27in 4K Gaming Monitor,1,389.99,01/17/19 11:33,"589 Main St, Portland, OR 97035" +146684,USB-C Charging Cable,1,11.95,01/11/19 17:29,"602 Dogwood St, Boston, MA 02215" +146685,Lightning Charging Cable,1,14.95,01/11/19 22:34,"653 Highland St, San Francisco, CA 94016" +146686,Lightning Charging Cable,1,14.95,01/08/19 16:43,"759 Lake St, Austin, TX 73301" +146687,USB-C Charging Cable,1,11.95,01/29/19 14:43,"229 14th St, Boston, MA 02215" +146688,Lightning Charging Cable,1,14.95,01/03/19 08:22,"482 South St, San Francisco, CA 94016" +146689,Flatscreen TV,1,300,01/31/19 20:18,"976 Walnut St, New York City, NY 10001" +146690,AA Batteries (4-pack),1,3.84,01/01/19 10:11,"896 Lakeview St, Los Angeles, CA 90001" +146691,Lightning Charging Cable,1,14.95,01/12/19 13:23,"915 Washington St, Los Angeles, CA 90001" +146692,20in Monitor,1,109.99,01/16/19 20:23,"303 Dogwood St, Austin, TX 73301" +146693,34in Ultrawide Monitor,1,379.99,01/19/19 06:54,"813 Cedar St, Boston, MA 02215" +146694,AAA Batteries (4-pack),1,2.99,01/13/19 00:50,"376 Pine St, Seattle, WA 98101" +146695,27in FHD Monitor,1,149.99,01/20/19 14:44,"979 9th St, Seattle, WA 98101" +146696,iPhone,1,700,01/31/19 06:54,"484 South St, Seattle, WA 98101" +146697,USB-C Charging Cable,1,11.95,01/12/19 21:39,"12 6th St, San Francisco, CA 94016" +146698,Apple Airpods Headphones,1,150,01/06/19 07:12,"704 Chestnut St, Boston, MA 02215" +146699,USB-C Charging Cable,1,11.95,01/01/19 19:23,"608 Main St, Dallas, TX 75001" +146700,AA Batteries (4-pack),2,3.84,01/04/19 15:00,"953 West St, New York City, NY 10001" +146701,Wired Headphones,1,11.99,01/01/19 15:54,"798 Lincoln St, Atlanta, GA 30301" +146702,ThinkPad Laptop,1,999.99,01/31/19 09:06,"494 Lake St, New York City, NY 10001" +146703,AA Batteries (4-pack),1,3.84,01/12/19 17:42,"725 Johnson St, Seattle, WA 98101" +146704,AA Batteries (4-pack),1,3.84,01/22/19 18:15,"362 Spruce St, Los Angeles, CA 90001" +146705,Lightning Charging Cable,1,14.95,01/02/19 11:56,"784 Center St, Austin, TX 73301" +146706,USB-C Charging Cable,1,11.95,01/07/19 22:54,"552 South St, Los Angeles, CA 90001" +146707,AA Batteries (4-pack),2,3.84,01/29/19 17:55,"870 South St, San Francisco, CA 94016" +146708,Macbook Pro Laptop,1,1700,01/25/19 02:38,"861 Madison St, San Francisco, CA 94016" +146709,Lightning Charging Cable,1,14.95,01/17/19 13:08,"336 9th St, San Francisco, CA 94016" +146710,USB-C Charging Cable,1,11.95,01/04/19 14:39,"5 Highland St, Boston, MA 02215" +146711,Apple Airpods Headphones,1,150,01/27/19 22:49,"490 12th St, New York City, NY 10001" +146712,AA Batteries (4-pack),1,3.84,01/09/19 09:10,"465 Lakeview St, Dallas, TX 75001" +146713,USB-C Charging Cable,1,11.95,01/05/19 10:41,"333 13th St, San Francisco, CA 94016" +146714,AA Batteries (4-pack),3,3.84,01/01/19 20:25,"72 River St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +146715,Bose SoundSport Headphones,1,99.99,01/17/19 07:06,"853 Adams St, New York City, NY 10001" +146716,34in Ultrawide Monitor,1,379.99,01/27/19 02:45,"964 5th St, New York City, NY 10001" +146717,Wired Headphones,1,11.99,01/03/19 05:51,"164 Hickory St, Austin, TX 73301" +146718,AAA Batteries (4-pack),1,2.99,01/29/19 05:48,"968 Cedar St, Portland, OR 97035" +146719,34in Ultrawide Monitor,1,379.99,01/23/19 16:47,"554 8th St, Boston, MA 02215" +146720,Wired Headphones,1,11.99,01/08/19 20:48,"736 Center St, Boston, MA 02215" +146721,Wired Headphones,1,11.99,01/18/19 14:24,"146 Center St, Austin, TX 73301" +146722,Lightning Charging Cable,1,14.95,01/20/19 16:56,"945 Lincoln St, Portland, OR 97035" +146723,Lightning Charging Cable,1,14.95,01/18/19 12:08,"17 Johnson St, Los Angeles, CA 90001" +146724,27in 4K Gaming Monitor,1,389.99,01/23/19 00:38,"728 Maple St, San Francisco, CA 94016" +146725,Wired Headphones,1,11.99,01/31/19 10:42,"407 Wilson St, Los Angeles, CA 90001" +146726,Macbook Pro Laptop,1,1700,01/19/19 15:35,"443 Chestnut St, Atlanta, GA 30301" +146727,USB-C Charging Cable,1,11.95,01/23/19 17:35,"882 5th St, Los Angeles, CA 90001" +146728,AA Batteries (4-pack),1,3.84,01/09/19 09:29,"344 Sunset St, San Francisco, CA 94016" +146729,Lightning Charging Cable,1,14.95,01/19/19 12:19,"690 Willow St, Atlanta, GA 30301" +146730,Bose SoundSport Headphones,1,99.99,01/07/19 18:55,"910 Sunset St, Portland, ME 04101" +146731,34in Ultrawide Monitor,1,379.99,01/26/19 15:11,"69 Church St, New York City, NY 10001" +146732,AA Batteries (4-pack),1,3.84,01/02/19 23:22,"508 Johnson St, San Francisco, CA 94016" +146733,iPhone,1,700,01/26/19 20:30,"901 Wilson St, Los Angeles, CA 90001" +146734,AAA Batteries (4-pack),1,2.99,01/02/19 01:48,"801 Chestnut St, Seattle, WA 98101" +146735,34in Ultrawide Monitor,1,379.99,01/05/19 23:49,"554 Madison St, Los Angeles, CA 90001" +146736,Apple Airpods Headphones,1,150,01/13/19 11:10,"555 Jefferson St, San Francisco, CA 94016" +146737,USB-C Charging Cable,1,11.95,01/05/19 18:22,"815 Main St, Portland, OR 97035" +146738,USB-C Charging Cable,1,11.95,01/23/19 17:01,"3 Walnut St, Seattle, WA 98101" +146739,Bose SoundSport Headphones,1,99.99,01/30/19 18:24,"160 13th St, Portland, ME 04101" +146740,Vareebadd Phone,1,400,01/12/19 11:30,"282 River St, Atlanta, GA 30301" +146740,Wired Headphones,1,11.99,01/12/19 11:30,"282 River St, Atlanta, GA 30301" +146741,Lightning Charging Cable,1,14.95,01/02/19 16:28,"521 West St, Seattle, WA 98101" +146742,Flatscreen TV,1,300,01/10/19 13:32,"625 Jackson St, Seattle, WA 98101" +146743,USB-C Charging Cable,1,11.95,01/16/19 09:31,"486 Ridge St, New York City, NY 10001" +146744,AA Batteries (4-pack),1,3.84,01/10/19 18:13,"246 10th St, New York City, NY 10001" +146745,USB-C Charging Cable,1,11.95,01/07/19 10:19,"214 14th St, San Francisco, CA 94016" +146746,Apple Airpods Headphones,1,150,01/12/19 14:28,"801 6th St, Atlanta, GA 30301" +146747,USB-C Charging Cable,1,11.95,01/28/19 21:20,"149 South St, Seattle, WA 98101" +146747,27in FHD Monitor,1,149.99,01/28/19 21:20,"149 South St, Seattle, WA 98101" +146748,Apple Airpods Headphones,1,150,01/08/19 15:52,"849 11th St, Los Angeles, CA 90001" +146749,Wired Headphones,1,11.99,01/03/19 14:41,"952 Johnson St, Atlanta, GA 30301" +146750,Apple Airpods Headphones,1,150,01/30/19 14:17,"710 Johnson St, Los Angeles, CA 90001" +146751,AAA Batteries (4-pack),1,2.99,01/27/19 21:24,"395 11th St, Portland, ME 04101" +146752,Google Phone,1,600,01/20/19 14:46,"548 Center St, Atlanta, GA 30301" +146753,34in Ultrawide Monitor,1,379.99,01/30/19 00:00,"787 9th St, San Francisco, CA 94016" +146754,iPhone,1,700,01/16/19 11:38,"127 Cherry St, Austin, TX 73301" +146755,USB-C Charging Cable,2,11.95,01/07/19 18:15,"673 Pine St, Atlanta, GA 30301" +146756,Bose SoundSport Headphones,1,99.99,01/24/19 15:21,"14 Park St, New York City, NY 10001" +146757,Apple Airpods Headphones,1,150,01/09/19 13:36,"761 Dogwood St, Los Angeles, CA 90001" +146758,AAA Batteries (4-pack),1,2.99,01/01/19 17:16,"134 Center St, Seattle, WA 98101" +146759,iPhone,1,700,01/09/19 19:49,"553 Willow St, San Francisco, CA 94016" +146759,Lightning Charging Cable,1,14.95,01/09/19 19:49,"553 Willow St, San Francisco, CA 94016" +146760,Apple Airpods Headphones,1,150,01/11/19 20:17,"505 10th St, Atlanta, GA 30301" +146761,Wired Headphones,1,11.99,01/15/19 16:21,"595 Wilson St, Austin, TX 73301" +146762,Google Phone,1,600,01/19/19 07:07,"242 Walnut St, Dallas, TX 75001" +146763,AA Batteries (4-pack),1,3.84,01/02/19 17:12,"376 14th St, Portland, OR 97035" +146764,Bose SoundSport Headphones,1,99.99,01/22/19 16:30,"952 1st St, San Francisco, CA 94016" +146765,AAA Batteries (4-pack),2,2.99,01/20/19 20:32,"428 Sunset St, San Francisco, CA 94016" +146766,27in 4K Gaming Monitor,1,389.99,01/24/19 20:16,"441 Lakeview St, Boston, MA 02215" +146767,27in FHD Monitor,1,149.99,01/25/19 16:15,"732 Main St, San Francisco, CA 94016" +146768,27in 4K Gaming Monitor,1,389.99,01/25/19 05:44,"513 Adams St, Boston, MA 02215" +146769,Wired Headphones,1,11.99,01/22/19 20:56,"291 Lincoln St, Boston, MA 02215" +146770,Lightning Charging Cable,1,14.95,01/18/19 21:52,"339 West St, Los Angeles, CA 90001" +146771,ThinkPad Laptop,1,999.99,01/21/19 22:13,"548 Ridge St, Dallas, TX 75001" +146772,USB-C Charging Cable,1,11.95,01/30/19 16:46,"646 Park St, New York City, NY 10001" +146773,Lightning Charging Cable,1,14.95,01/19/19 16:47,"822 2nd St, New York City, NY 10001" +146774,Apple Airpods Headphones,1,150,01/19/19 01:06,"969 Hill St, Portland, OR 97035" +146775,27in FHD Monitor,1,149.99,01/31/19 16:30,"944 Wilson St, Los Angeles, CA 90001" +146776,Apple Airpods Headphones,1,150,01/02/19 21:44,"311 Walnut St, Seattle, WA 98101" +146777,Wired Headphones,1,11.99,01/03/19 21:03,"794 North St, Los Angeles, CA 90001" +146778,27in FHD Monitor,1,149.99,01/08/19 22:46,"732 Lakeview St, New York City, NY 10001" +146779,USB-C Charging Cable,3,11.95,01/09/19 12:21,"700 2nd St, Los Angeles, CA 90001" +146780,USB-C Charging Cable,2,11.95,01/25/19 14:30,"305 Wilson St, Los Angeles, CA 90001" +146781,34in Ultrawide Monitor,1,379.99,01/05/19 16:45,"805 Lincoln St, San Francisco, CA 94016" +146782,Bose SoundSport Headphones,1,99.99,01/07/19 23:33,"18 Jefferson St, Atlanta, GA 30301" +146783,Lightning Charging Cable,1,14.95,01/04/19 14:08,"854 North St, San Francisco, CA 94016" +146784,Apple Airpods Headphones,1,150,01/23/19 23:45,"223 Lakeview St, Portland, OR 97035" +146784,AAA Batteries (4-pack),1,2.99,01/23/19 23:45,"223 Lakeview St, Portland, OR 97035" +146785,AA Batteries (4-pack),1,3.84,01/15/19 17:07,"170 10th St, Los Angeles, CA 90001" +146786,Google Phone,1,600,01/27/19 19:13,"331 Wilson St, New York City, NY 10001" +146786,Wired Headphones,1,11.99,01/27/19 19:13,"331 Wilson St, New York City, NY 10001" +146787,Lightning Charging Cable,1,14.95,01/10/19 07:30,"221 Main St, Boston, MA 02215" +146788,Macbook Pro Laptop,1,1700,01/13/19 15:48,"1 9th St, San Francisco, CA 94016" +146789,Apple Airpods Headphones,1,150,01/04/19 18:21,"317 12th St, New York City, NY 10001" +146790,Apple Airpods Headphones,1,150,01/27/19 15:01,"11 1st St, Boston, MA 02215" +146791,Apple Airpods Headphones,1,150,01/27/19 09:10,"118 Maple St, New York City, NY 10001" +146792,Vareebadd Phone,1,400,01/10/19 21:59,"95 South St, New York City, NY 10001" +146793,Lightning Charging Cable,1,14.95,01/01/19 18:55,"432 River St, Dallas, TX 75001" +146794,Lightning Charging Cable,1,14.95,01/31/19 08:49,"445 Lake St, San Francisco, CA 94016" +146795,AA Batteries (4-pack),1,3.84,01/20/19 21:38,"558 9th St, San Francisco, CA 94016" +146796,Bose SoundSport Headphones,1,99.99,01/24/19 21:23,"952 Jackson St, San Francisco, CA 94016" +146797,Wired Headphones,1,11.99,01/05/19 11:16,"734 Ridge St, Portland, OR 97035" +146798,34in Ultrawide Monitor,1,379.99,01/13/19 19:06,"257 Elm St, San Francisco, CA 94016" +,,,,, +146799,Apple Airpods Headphones,1,150,01/24/19 16:15,"449 Sunset St, Los Angeles, CA 90001" +146800,Wired Headphones,1,11.99,01/14/19 22:07,"645 11th St, Portland, OR 97035" +146801,AA Batteries (4-pack),1,3.84,01/21/19 18:23,"507 12th St, Los Angeles, CA 90001" +146802,Google Phone,1,600,01/11/19 12:17,"671 Maple St, Los Angeles, CA 90001" +146803,Lightning Charging Cable,1,14.95,01/27/19 10:37,"713 Highland St, Los Angeles, CA 90001" +146804,Lightning Charging Cable,1,14.95,01/30/19 14:38,"1 Meadow St, San Francisco, CA 94016" +146805,Wired Headphones,1,11.99,01/30/19 09:44,"68 West St, Seattle, WA 98101" +146806,Macbook Pro Laptop,1,1700,01/31/19 00:23,"887 Johnson St, Austin, TX 73301" +146807,Lightning Charging Cable,1,14.95,01/26/19 12:22,"982 6th St, Portland, OR 97035" +146808,Apple Airpods Headphones,1,150,01/04/19 08:15,"173 Highland St, Seattle, WA 98101" +146809,Macbook Pro Laptop,1,1700,01/31/19 16:56,"81 Willow St, Boston, MA 02215" +146810,Google Phone,1,600,01/15/19 12:09,"560 Church St, New York City, NY 10001" +146810,Wired Headphones,2,11.99,01/15/19 12:09,"560 Church St, New York City, NY 10001" +146811,USB-C Charging Cable,2,11.95,01/07/19 22:37,"820 11th St, Seattle, WA 98101" +146812,AAA Batteries (4-pack),1,2.99,01/27/19 10:18,"286 Johnson St, Los Angeles, CA 90001" +146813,USB-C Charging Cable,1,11.95,01/26/19 04:59,"203 Sunset St, Boston, MA 02215" +146814,Vareebadd Phone,1,400,01/22/19 12:04,"885 Park St, San Francisco, CA 94016" +146815,Wired Headphones,1,11.99,01/23/19 20:41,"792 Highland St, Los Angeles, CA 90001" +146816,Apple Airpods Headphones,1,150,01/16/19 11:46,"629 Washington St, San Francisco, CA 94016" +146817,Lightning Charging Cable,1,14.95,01/28/19 14:48,"342 12th St, Dallas, TX 75001" +146818,AAA Batteries (4-pack),1,2.99,01/04/19 13:20,"807 4th St, San Francisco, CA 94016" +146819,Apple Airpods Headphones,1,150,01/29/19 00:26,"772 West St, Seattle, WA 98101" +146820,Bose SoundSport Headphones,1,99.99,01/29/19 18:58,"464 Lakeview St, Los Angeles, CA 90001" +146821,Lightning Charging Cable,1,14.95,01/28/19 10:21,"336 Church St, Boston, MA 02215" +146822,USB-C Charging Cable,1,11.95,01/06/19 22:50,"913 Spruce St, Boston, MA 02215" +146823,Wired Headphones,2,11.99,01/01/19 21:01,"802 14th St, New York City, NY 10001" +146824,20in Monitor,1,109.99,01/01/19 19:57,"109 Highland St, San Francisco, CA 94016" +146825,Wired Headphones,1,11.99,01/21/19 21:38,"907 Walnut St, Boston, MA 02215" +146826,AA Batteries (4-pack),1,3.84,01/09/19 16:27,"112 1st St, Atlanta, GA 30301" +146827,Lightning Charging Cable,1,14.95,01/08/19 08:41,"839 7th St, San Francisco, CA 94016" +146828,USB-C Charging Cable,1,11.95,01/01/19 09:43,"145 Johnson St, Los Angeles, CA 90001" +146829,USB-C Charging Cable,1,11.95,01/16/19 19:17,"917 Washington St, Austin, TX 73301" +146830,Bose SoundSport Headphones,1,99.99,01/31/19 19:42,"518 10th St, New York City, NY 10001" +146831,Google Phone,1,600,01/22/19 09:02,"929 Park St, New York City, NY 10001" +146831,Bose SoundSport Headphones,1,99.99,01/22/19 09:02,"929 Park St, New York City, NY 10001" +,,,,, +146832,Wired Headphones,1,11.99,01/17/19 19:01,"269 Jefferson St, Los Angeles, CA 90001" +146833,AA Batteries (4-pack),1,3.84,01/26/19 21:42,"357 Jefferson St, Boston, MA 02215" +146834,Apple Airpods Headphones,1,150,01/04/19 20:43,"857 River St, Los Angeles, CA 90001" +146834,27in 4K Gaming Monitor,1,389.99,01/04/19 20:43,"857 River St, Los Angeles, CA 90001" +146835,27in FHD Monitor,1,149.99,01/21/19 20:43,"177 Lake St, Atlanta, GA 30301" +146836,iPhone,1,700,01/29/19 13:10,"612 Meadow St, Seattle, WA 98101" +146837,Wired Headphones,1,11.99,01/18/19 16:43,"57 6th St, Dallas, TX 75001" +146838,27in FHD Monitor,1,149.99,01/25/19 11:35,"742 5th St, Seattle, WA 98101" +146839,AA Batteries (4-pack),2,3.84,01/18/19 16:09,"172 11th St, Atlanta, GA 30301" +146840,iPhone,1,700,01/18/19 08:07,"863 Sunset St, Seattle, WA 98101" +146841,AAA Batteries (4-pack),2,2.99,01/25/19 09:46,"145 Sunset St, Boston, MA 02215" +146842,Lightning Charging Cable,1,14.95,01/31/19 09:39,"113 Hill St, Portland, ME 04101" +146843,Lightning Charging Cable,1,14.95,01/08/19 12:04,"33 Lake St, Atlanta, GA 30301" +146844,27in FHD Monitor,1,149.99,01/09/19 18:59,"654 7th St, New York City, NY 10001" +146845,34in Ultrawide Monitor,1,379.99,01/07/19 23:15,"231 Madison St, San Francisco, CA 94016" +146846,Lightning Charging Cable,1,14.95,01/19/19 15:20,"766 Cedar St, New York City, NY 10001" +146847,AAA Batteries (4-pack),1,2.99,01/10/19 13:31,"627 South St, Los Angeles, CA 90001" +146848,Wired Headphones,1,11.99,01/27/19 20:10,"362 Maple St, Portland, OR 97035" +146849,Macbook Pro Laptop,1,1700,01/24/19 07:51,"543 13th St, Dallas, TX 75001" +146850,AA Batteries (4-pack),1,3.84,01/07/19 11:50,"9 13th St, San Francisco, CA 94016" +146851,Google Phone,1,600,01/28/19 10:34,"856 River St, Dallas, TX 75001" +146851,USB-C Charging Cable,1,11.95,01/28/19 10:34,"856 River St, Dallas, TX 75001" +146852,AAA Batteries (4-pack),1,2.99,01/11/19 13:59,"305 Chestnut St, Austin, TX 73301" +146853,AA Batteries (4-pack),1,3.84,01/21/19 21:55,"684 Jefferson St, Dallas, TX 75001" +146854,iPhone,1,700,01/22/19 19:36,"945 7th St, New York City, NY 10001" +146854,Lightning Charging Cable,1,14.95,01/22/19 19:36,"945 7th St, New York City, NY 10001" +146855,Bose SoundSport Headphones,1,99.99,01/05/19 16:09,"811 13th St, New York City, NY 10001" +146856,USB-C Charging Cable,1,11.95,01/28/19 21:30,"12 12th St, New York City, NY 10001" +146857,AAA Batteries (4-pack),2,2.99,01/24/19 21:51,"116 South St, Boston, MA 02215" +146858,27in 4K Gaming Monitor,1,389.99,01/21/19 22:04,"380 13th St, New York City, NY 10001" +146859,Lightning Charging Cable,1,14.95,01/25/19 16:58,"684 Washington St, San Francisco, CA 94016" +146860,Lightning Charging Cable,1,14.95,01/23/19 18:13,"198 Highland St, San Francisco, CA 94016" +146861,Macbook Pro Laptop,1,1700,01/03/19 23:26,"692 Sunset St, Austin, TX 73301" +146862,AA Batteries (4-pack),1,3.84,01/06/19 12:49,"219 Lakeview St, Austin, TX 73301" +146863,AAA Batteries (4-pack),2,2.99,01/06/19 11:52,"27 6th St, Seattle, WA 98101" +146864,Wired Headphones,1,11.99,01/31/19 22:02,"271 8th St, Austin, TX 73301" +146864,iPhone,1,700,01/31/19 22:02,"271 8th St, Austin, TX 73301" +146865,AAA Batteries (4-pack),3,2.99,01/10/19 12:49,"347 West St, Portland, OR 97035" +146866,iPhone,1,700,01/01/19 14:08,"942 11th St, Seattle, WA 98101" +146867,Wired Headphones,1,11.99,01/20/19 14:46,"122 10th St, Portland, OR 97035" +146868,Wired Headphones,1,11.99,01/24/19 04:43,"128 Washington St, Seattle, WA 98101" +146869,Apple Airpods Headphones,1,150,01/08/19 16:34,"253 River St, San Francisco, CA 94016" +146870,AA Batteries (4-pack),4,3.84,01/04/19 20:11,"944 South St, San Francisco, CA 94016" +146871,27in FHD Monitor,1,149.99,01/18/19 00:31,"894 Cedar St, New York City, NY 10001" +146872,Bose SoundSport Headphones,1,99.99,01/13/19 00:45,"597 Sunset St, Los Angeles, CA 90001" +146873,Flatscreen TV,1,300,01/05/19 20:34,"781 North St, San Francisco, CA 94016" +146874,AAA Batteries (4-pack),1,2.99,01/24/19 10:13,"523 Pine St, Boston, MA 02215" +146875,Wired Headphones,1,11.99,01/09/19 18:24,"115 2nd St, Atlanta, GA 30301" +146876,Lightning Charging Cable,1,14.95,01/09/19 18:48,"227 Jefferson St, New York City, NY 10001" +146877,Apple Airpods Headphones,1,150,01/09/19 21:39,"349 Park St, Dallas, TX 75001" +146878,ThinkPad Laptop,1,999.99,01/30/19 15:40,"665 Hill St, New York City, NY 10001" +146879,AA Batteries (4-pack),1,3.84,01/31/19 20:10,"946 13th St, San Francisco, CA 94016" +146880,AAA Batteries (4-pack),3,2.99,01/09/19 19:27,"833 Elm St, San Francisco, CA 94016" +146881,Lightning Charging Cable,1,14.95,01/16/19 12:21,"289 Wilson St, San Francisco, CA 94016" +146882,AAA Batteries (4-pack),2,2.99,01/04/19 10:31,"678 River St, San Francisco, CA 94016" +146883,20in Monitor,1,109.99,01/24/19 07:38,"394 Hill St, Los Angeles, CA 90001" +146884,20in Monitor,1,109.99,01/24/19 15:02,"28 Highland St, San Francisco, CA 94016" +146885,AAA Batteries (4-pack),1,2.99,01/06/19 22:16,"997 Hickory St, Los Angeles, CA 90001" +146886,27in FHD Monitor,1,149.99,01/08/19 14:17,"820 10th St, Los Angeles, CA 90001" +146887,iPhone,1,700,01/28/19 19:54,"246 Walnut St, Los Angeles, CA 90001" +146888,iPhone,1,700,01/22/19 10:31,"902 9th St, Portland, ME 04101" +146888,Lightning Charging Cable,1,14.95,01/22/19 10:31,"902 9th St, Portland, ME 04101" +146889,AAA Batteries (4-pack),1,2.99,01/05/19 09:49,"953 Pine St, New York City, NY 10001" +146890,USB-C Charging Cable,1,11.95,01/13/19 22:43,"440 Ridge St, San Francisco, CA 94016" +146891,AAA Batteries (4-pack),1,2.99,01/20/19 22:27,"153 Washington St, San Francisco, CA 94016" +146892,Apple Airpods Headphones,1,150,01/16/19 10:21,"905 13th St, Boston, MA 02215" +146893,Lightning Charging Cable,1,14.95,01/05/19 21:20,"741 Chestnut St, Los Angeles, CA 90001" +146894,Wired Headphones,2,11.99,01/20/19 20:06,"659 Lakeview St, New York City, NY 10001" +146895,Lightning Charging Cable,1,14.95,01/28/19 10:28,"180 Spruce St, Boston, MA 02215" +146896,USB-C Charging Cable,1,11.95,01/04/19 20:20,"560 Madison St, San Francisco, CA 94016" +146897,Google Phone,1,600,01/27/19 01:10,"904 Highland St, Seattle, WA 98101" +146898,USB-C Charging Cable,1,11.95,01/15/19 10:25,"236 Pine St, Austin, TX 73301" +146899,Vareebadd Phone,1,400,01/10/19 13:00,"462 13th St, Los Angeles, CA 90001" +146900,Bose SoundSport Headphones,1,99.99,01/11/19 13:24,"881 Wilson St, New York City, NY 10001" +146901,AA Batteries (4-pack),1,3.84,01/19/19 19:02,"925 Johnson St, Austin, TX 73301" +146902,AAA Batteries (4-pack),1,2.99,01/08/19 11:21,"477 11th St, New York City, NY 10001" +146903,27in 4K Gaming Monitor,1,389.99,01/07/19 11:01,"206 Walnut St, San Francisco, CA 94016" +146904,iPhone,1,700,01/17/19 22:43,"623 Pine St, Los Angeles, CA 90001" +146905,Flatscreen TV,1,300,01/02/19 11:48,"615 Lakeview St, Los Angeles, CA 90001" +146906,27in 4K Gaming Monitor,1,389.99,01/06/19 11:20,"286 Cedar St, Los Angeles, CA 90001" +146907,Lightning Charging Cable,1,14.95,01/14/19 18:14,"941 Forest St, Boston, MA 02215" +146908,27in FHD Monitor,1,149.99,01/15/19 10:15,"294 9th St, New York City, NY 10001" +146909,AA Batteries (4-pack),1,3.84,01/08/19 05:26,"958 Walnut St, Boston, MA 02215" +146910,AAA Batteries (4-pack),1,2.99,01/02/19 13:59,"667 4th St, San Francisco, CA 94016" +146911,Lightning Charging Cable,1,14.95,01/31/19 20:38,"513 Johnson St, Seattle, WA 98101" +146912,Apple Airpods Headphones,1,150,01/20/19 11:08,"252 Main St, Los Angeles, CA 90001" +146913,USB-C Charging Cable,1,11.95,01/11/19 16:59,"37 West St, Seattle, WA 98101" +146914,27in FHD Monitor,1,149.99,01/07/19 14:02,"827 Lakeview St, San Francisco, CA 94016" +146915,Bose SoundSport Headphones,1,99.99,01/02/19 10:59,"720 Highland St, San Francisco, CA 94016" +146916,USB-C Charging Cable,1,11.95,01/15/19 11:37,"611 8th St, San Francisco, CA 94016" +146917,iPhone,1,700,01/11/19 11:03,"228 11th St, Los Angeles, CA 90001" +146918,Apple Airpods Headphones,1,150,01/06/19 22:45,"452 Lincoln St, Seattle, WA 98101" +146919,Flatscreen TV,1,300,01/24/19 14:32,"606 Willow St, San Francisco, CA 94016" +146920,AA Batteries (4-pack),1,3.84,01/16/19 12:20,"228 Cedar St, Los Angeles, CA 90001" +146921,Vareebadd Phone,1,400,01/13/19 12:29,"971 14th St, New York City, NY 10001" +146922,ThinkPad Laptop,1,999.99,01/27/19 16:46,"896 10th St, New York City, NY 10001" +146923,AA Batteries (4-pack),1,3.84,01/11/19 20:24,"14 4th St, Dallas, TX 75001" +146924,Wired Headphones,1,11.99,01/05/19 21:41,"605 Highland St, Los Angeles, CA 90001" +146925,AAA Batteries (4-pack),2,2.99,01/16/19 12:48,"627 Maple St, Dallas, TX 75001" +146926,27in FHD Monitor,1,149.99,01/22/19 13:45,"727 Spruce St, New York City, NY 10001" +146927,AAA Batteries (4-pack),1,2.99,01/27/19 18:06,"748 Forest St, San Francisco, CA 94016" +146928,Wired Headphones,1,11.99,01/31/19 01:07,"585 Pine St, San Francisco, CA 94016" +146929,AAA Batteries (4-pack),1,2.99,01/13/19 19:16,"557 River St, New York City, NY 10001" +146930,USB-C Charging Cable,2,11.95,01/10/19 19:20,"52 Hickory St, Los Angeles, CA 90001" +146931,USB-C Charging Cable,1,11.95,01/18/19 06:27,"627 Adams St, New York City, NY 10001" +146932,AA Batteries (4-pack),1,3.84,01/24/19 20:50,"12 Dogwood St, Seattle, WA 98101" +146933,Wired Headphones,1,11.99,01/27/19 17:06,"301 Willow St, Dallas, TX 75001" +146934,27in 4K Gaming Monitor,1,389.99,01/29/19 21:48,"907 Forest St, San Francisco, CA 94016" +146935,AAA Batteries (4-pack),2,2.99,01/12/19 13:38,"393 Cedar St, Dallas, TX 75001" +146936,Apple Airpods Headphones,1,150,01/22/19 08:22,"956 Cedar St, San Francisco, CA 94016" +146937,USB-C Charging Cable,1,11.95,01/04/19 14:07,"692 6th St, San Francisco, CA 94016" +146938,Bose SoundSport Headphones,1,99.99,01/07/19 20:01,"42 West St, Seattle, WA 98101" +146939,USB-C Charging Cable,1,11.95,01/02/19 11:32,"443 South St, Atlanta, GA 30301" +146940,USB-C Charging Cable,1,11.95,01/04/19 10:09,"843 Meadow St, San Francisco, CA 94016" +146941,AAA Batteries (4-pack),1,2.99,01/06/19 17:00,"883 Center St, New York City, NY 10001" +146942,AAA Batteries (4-pack),1,2.99,01/10/19 12:09,"635 South St, Boston, MA 02215" +146943,27in 4K Gaming Monitor,1,389.99,01/14/19 07:32,"677 Madison St, Austin, TX 73301" +146944,34in Ultrawide Monitor,1,379.99,01/11/19 12:16,"98 Elm St, Los Angeles, CA 90001" +146945,Bose SoundSport Headphones,1,99.99,01/07/19 17:46,"286 14th St, San Francisco, CA 94016" +146946,Vareebadd Phone,1,400,01/24/19 13:38,"421 Highland St, Boston, MA 02215" +146947,34in Ultrawide Monitor,1,379.99,01/05/19 12:09,"206 Center St, Los Angeles, CA 90001" +146948,Wired Headphones,1,11.99,01/07/19 18:48,"974 Madison St, Boston, MA 02215" +146949,USB-C Charging Cable,1,11.95,01/31/19 18:55,"895 Park St, Austin, TX 73301" +146950,27in 4K Gaming Monitor,1,389.99,01/06/19 21:55,"137 Adams St, Atlanta, GA 30301" +146951,AAA Batteries (4-pack),1,2.99,01/19/19 08:43,"844 Pine St, Dallas, TX 75001" +146952,27in FHD Monitor,1,149.99,01/16/19 08:11,"605 Spruce St, San Francisco, CA 94016" +146953,Lightning Charging Cable,1,14.95,01/16/19 17:13,"643 Lakeview St, Los Angeles, CA 90001" +146954,Lightning Charging Cable,1,14.95,01/10/19 12:05,"623 2nd St, Los Angeles, CA 90001" +146955,AAA Batteries (4-pack),2,2.99,01/25/19 01:33,"291 Wilson St, Boston, MA 02215" +146956,Wired Headphones,1,11.99,01/01/19 18:50,"564 Lakeview St, Boston, MA 02215" +146957,Bose SoundSport Headphones,1,99.99,01/15/19 16:29,"95 Meadow St, San Francisco, CA 94016" +146958,AA Batteries (4-pack),1,3.84,01/08/19 19:01,"310 Main St, Dallas, TX 75001" +146959,27in FHD Monitor,1,149.99,01/08/19 15:25,"793 Spruce St, Seattle, WA 98101" +146960,Wired Headphones,1,11.99,01/23/19 12:04,"101 Pine St, Atlanta, GA 30301" +146961,Apple Airpods Headphones,1,150,01/01/19 10:00,"702 Adams St, Boston, MA 02215" +146962,Lightning Charging Cable,1,14.95,01/03/19 00:31,"810 Center St, Dallas, TX 75001" +146963,Wired Headphones,1,11.99,01/20/19 20:02,"124 Lake St, San Francisco, CA 94016" +146964,Bose SoundSport Headphones,1,99.99,01/02/19 11:38,"873 Elm St, New York City, NY 10001" +146965,Lightning Charging Cable,1,14.95,01/27/19 13:03,"357 Elm St, Dallas, TX 75001" +146966,Wired Headphones,1,11.99,01/20/19 12:12,"501 Cedar St, Portland, OR 97035" +146967,Apple Airpods Headphones,1,150,01/09/19 17:27,"364 Center St, San Francisco, CA 94016" +146968,Google Phone,1,600,01/10/19 17:45,"724 Washington St, Seattle, WA 98101" +146969,Bose SoundSport Headphones,1,99.99,01/10/19 21:08,"186 11th St, Los Angeles, CA 90001" +146970,Wired Headphones,1,11.99,01/29/19 13:57,"575 Cedar St, Portland, OR 97035" +146971,USB-C Charging Cable,1,11.95,01/14/19 16:34,"120 11th St, Portland, OR 97035" +146972,AA Batteries (4-pack),2,3.84,01/14/19 14:09,"307 Main St, Boston, MA 02215" +146973,USB-C Charging Cable,2,11.95,01/18/19 20:05,"590 4th St, Dallas, TX 75001" +146974,AAA Batteries (4-pack),1,2.99,01/04/19 15:09,"120 14th St, Atlanta, GA 30301" +146975,AAA Batteries (4-pack),1,2.99,01/08/19 13:59,"457 Washington St, Portland, OR 97035" +146976,Wired Headphones,1,11.99,01/13/19 14:14,"618 Park St, San Francisco, CA 94016" +146977,AAA Batteries (4-pack),2,2.99,01/03/19 18:48,"342 Hill St, Los Angeles, CA 90001" +146977,ThinkPad Laptop,1,999.99,01/03/19 18:48,"342 Hill St, Los Angeles, CA 90001" +146978,Google Phone,1,600,01/06/19 22:33,"362 Madison St, Los Angeles, CA 90001" +146979,Bose SoundSport Headphones,1,99.99,01/15/19 12:18,"3 7th St, San Francisco, CA 94016" +146980,27in 4K Gaming Monitor,1,389.99,01/25/19 19:42,"663 Meadow St, San Francisco, CA 94016" +146981,Flatscreen TV,1,300,01/05/19 17:06,"353 Elm St, Atlanta, GA 30301" +146982,Wired Headphones,1,11.99,01/18/19 15:35,"432 River St, Atlanta, GA 30301" +146983,27in FHD Monitor,1,149.99,01/26/19 20:59,"325 Spruce St, Los Angeles, CA 90001" +146984,AA Batteries (4-pack),1,3.84,01/23/19 18:20,"681 12th St, San Francisco, CA 94016" +146985,AAA Batteries (4-pack),1,2.99,01/14/19 09:06,"961 West St, Boston, MA 02215" +146986,AAA Batteries (4-pack),1,2.99,01/20/19 20:26,"225 Willow St, San Francisco, CA 94016" +146987,27in FHD Monitor,1,149.99,01/14/19 09:13,"365 2nd St, San Francisco, CA 94016" +146988,AAA Batteries (4-pack),1,2.99,01/17/19 20:28,"635 9th St, Seattle, WA 98101" +146989,20in Monitor,1,109.99,01/19/19 11:56,"952 Johnson St, New York City, NY 10001" +146990,AA Batteries (4-pack),1,3.84,01/18/19 19:55,"772 2nd St, Boston, MA 02215" +146991,Bose SoundSport Headphones,1,99.99,01/13/19 11:21,"609 Meadow St, San Francisco, CA 94016" +146992,AAA Batteries (4-pack),2,2.99,01/23/19 17:13,"29 Park St, Austin, TX 73301" +146993,Wired Headphones,1,11.99,01/22/19 11:09,"355 Jefferson St, Boston, MA 02215" +146994,Lightning Charging Cable,1,14.95,01/01/19 19:37,"890 Wilson St, San Francisco, CA 94016" +146995,Bose SoundSport Headphones,1,99.99,01/29/19 16:03,"618 1st St, Los Angeles, CA 90001" +146996,Lightning Charging Cable,1,14.95,01/05/19 18:34,"648 Forest St, New York City, NY 10001" +146997,USB-C Charging Cable,1,11.95,01/10/19 21:55,"299 Johnson St, Los Angeles, CA 90001" +146998,USB-C Charging Cable,1,11.95,01/20/19 15:48,"396 6th St, Boston, MA 02215" +146999,Flatscreen TV,1,300,01/08/19 01:30,"724 Dogwood St, New York City, NY 10001" +147000,Apple Airpods Headphones,1,150,01/21/19 22:23,"964 Cherry St, New York City, NY 10001" +147001,USB-C Charging Cable,1,11.95,01/20/19 15:51,"707 8th St, Los Angeles, CA 90001" +147002,AAA Batteries (4-pack),1,2.99,01/30/19 20:31,"52 13th St, Seattle, WA 98101" +147002,Wired Headphones,1,11.99,01/30/19 20:31,"52 13th St, Seattle, WA 98101" +147003,Apple Airpods Headphones,1,150,01/08/19 14:51,"460 Spruce St, New York City, NY 10001" +147004,Wired Headphones,1,11.99,01/04/19 20:06,"558 Walnut St, San Francisco, CA 94016" +147005,34in Ultrawide Monitor,1,379.99,01/19/19 21:43,"497 Adams St, San Francisco, CA 94016" +147005,Wired Headphones,1,11.99,01/19/19 21:43,"497 Adams St, San Francisco, CA 94016" +147006,Lightning Charging Cable,1,14.95,01/27/19 19:43,"368 Adams St, Boston, MA 02215" +147007,Bose SoundSport Headphones,1,99.99,01/21/19 11:50,"89 Lakeview St, San Francisco, CA 94016" +147008,AAA Batteries (4-pack),1,2.99,01/02/19 00:43,"816 7th St, Portland, OR 97035" +147009,27in 4K Gaming Monitor,1,389.99,01/01/19 21:09,"830 14th St, Boston, MA 02215" +147010,Flatscreen TV,1,300,01/21/19 21:52,"580 1st St, New York City, NY 10001" +147011,Flatscreen TV,1,300,01/08/19 17:18,"16 River St, Los Angeles, CA 90001" +147012,AA Batteries (4-pack),1,3.84,01/21/19 14:56,"950 2nd St, San Francisco, CA 94016" +147013,ThinkPad Laptop,1,999.99,01/30/19 11:05,"339 Ridge St, Los Angeles, CA 90001" +147014,Google Phone,1,600,01/25/19 01:03,"931 Cedar St, Atlanta, GA 30301" +147015,ThinkPad Laptop,1,999.99,01/27/19 19:21,"174 Elm St, Dallas, TX 75001" +147016,iPhone,1,700,01/31/19 11:48,"233 8th St, Portland, OR 97035" +147017,Wired Headphones,1,11.99,01/11/19 19:39,"935 Forest St, Boston, MA 02215" +147018,27in FHD Monitor,1,149.99,01/07/19 12:38,"876 9th St, Portland, OR 97035" +147019,AA Batteries (4-pack),1,3.84,01/02/19 13:53,"604 Lake St, San Francisco, CA 94016" +147020,Macbook Pro Laptop,1,1700,01/24/19 19:49,"914 Washington St, Austin, TX 73301" +147021,AAA Batteries (4-pack),1,2.99,01/29/19 15:26,"432 Walnut St, Dallas, TX 75001" +147022,AAA Batteries (4-pack),1,2.99,01/23/19 21:32,"854 Cherry St, Los Angeles, CA 90001" +147023,Lightning Charging Cable,1,14.95,01/01/19 11:46,"70 Ridge St, Austin, TX 73301" +147024,AA Batteries (4-pack),1,3.84,01/17/19 19:26,"131 6th St, Los Angeles, CA 90001" +147025,Lightning Charging Cable,1,14.95,01/07/19 14:25,"544 2nd St, New York City, NY 10001" +147026,27in FHD Monitor,1,149.99,01/22/19 18:33,"620 14th St, Austin, TX 73301" +147027,USB-C Charging Cable,1,11.95,01/20/19 17:39,"258 Washington St, Austin, TX 73301" +147028,Wired Headphones,1,11.99,01/05/19 13:56,"787 Meadow St, New York City, NY 10001" +147029,Apple Airpods Headphones,1,150,01/13/19 21:37,"336 11th St, San Francisco, CA 94016" +147030,USB-C Charging Cable,1,11.95,01/14/19 12:46,"318 9th St, Austin, TX 73301" +147031,USB-C Charging Cable,1,11.95,01/07/19 19:15,"648 4th St, Los Angeles, CA 90001" +147032,Wired Headphones,1,11.99,01/19/19 09:43,"786 North St, Los Angeles, CA 90001" +147033,27in FHD Monitor,1,149.99,01/11/19 11:11,"895 Cherry St, New York City, NY 10001" +147034,AA Batteries (4-pack),2,3.84,01/18/19 08:48,"646 Dogwood St, Seattle, WA 98101" +147035,iPhone,1,700,01/21/19 04:10,"575 1st St, Los Angeles, CA 90001" +147036,Vareebadd Phone,1,400,01/21/19 15:25,"771 South St, Dallas, TX 75001" +147037,20in Monitor,1,109.99,01/09/19 18:18,"962 Lakeview St, Seattle, WA 98101" +147038,AAA Batteries (4-pack),1,2.99,01/15/19 19:48,"645 13th St, Dallas, TX 75001" +147039,AAA Batteries (4-pack),1,2.99,01/05/19 13:43,"132 Church St, San Francisco, CA 94016" +147040,AA Batteries (4-pack),2,3.84,01/17/19 20:10,"105 Johnson St, New York City, NY 10001" +147041,Lightning Charging Cable,1,14.95,01/16/19 19:38,"522 Hickory St, San Francisco, CA 94016" +147042,USB-C Charging Cable,1,11.95,01/19/19 17:43,"152 Lincoln St, Austin, TX 73301" +147043,34in Ultrawide Monitor,1,379.99,01/06/19 17:34,"255 Forest St, Seattle, WA 98101" +147044,AA Batteries (4-pack),1,3.84,01/27/19 07:50,"634 10th St, New York City, NY 10001" +147045,Bose SoundSport Headphones,1,99.99,01/20/19 12:18,"479 Maple St, San Francisco, CA 94016" +147046,AAA Batteries (4-pack),1,2.99,01/16/19 15:34,"431 1st St, Los Angeles, CA 90001" +147047,Macbook Pro Laptop,1,1700,01/22/19 21:17,"659 Dogwood St, San Francisco, CA 94016" +147048,AA Batteries (4-pack),1,3.84,01/05/19 08:24,"105 West St, Portland, OR 97035" +147049,Google Phone,1,600,01/26/19 17:47,"795 Lakeview St, Seattle, WA 98101" +147050,USB-C Charging Cable,1,11.95,01/04/19 18:45,"13 Park St, San Francisco, CA 94016" +147051,ThinkPad Laptop,1,999.99,01/31/19 10:16,"451 Pine St, Boston, MA 02215" +147052,Google Phone,1,600,01/24/19 16:24,"75 8th St, San Francisco, CA 94016" +147052,USB-C Charging Cable,1,11.95,01/24/19 16:24,"75 8th St, San Francisco, CA 94016" +147053,USB-C Charging Cable,1,11.95,01/20/19 13:50,"676 Adams St, Portland, OR 97035" +147054,USB-C Charging Cable,1,11.95,01/17/19 07:41,"92 Chestnut St, San Francisco, CA 94016" +147055,Lightning Charging Cable,1,14.95,01/11/19 14:58,"734 Sunset St, Seattle, WA 98101" +147056,34in Ultrawide Monitor,1,379.99,01/12/19 01:31,"30 13th St, San Francisco, CA 94016" +147057,Apple Airpods Headphones,1,150,01/17/19 17:49,"324 Park St, San Francisco, CA 94016" +147058,AAA Batteries (4-pack),3,2.99,01/14/19 18:10,"401 10th St, Atlanta, GA 30301" +147059,27in FHD Monitor,1,149.99,01/26/19 12:06,"687 Willow St, San Francisco, CA 94016" +147060,USB-C Charging Cable,1,11.95,01/28/19 23:26,"963 Walnut St, New York City, NY 10001" +147061,34in Ultrawide Monitor,1,379.99,01/09/19 13:38,"410 Lakeview St, Los Angeles, CA 90001" +147062,USB-C Charging Cable,1,11.95,01/10/19 16:37,"59 6th St, Los Angeles, CA 90001" +147063,Apple Airpods Headphones,1,150,01/23/19 16:16,"493 Hill St, San Francisco, CA 94016" +147064,Apple Airpods Headphones,1,150,01/17/19 21:30,"116 Wilson St, Boston, MA 02215" +147065,AAA Batteries (4-pack),1,2.99,01/19/19 20:07,"317 Cherry St, New York City, NY 10001" +147066,Apple Airpods Headphones,1,150,01/06/19 20:07,"165 Hill St, San Francisco, CA 94016" +147067,34in Ultrawide Monitor,1,379.99,01/22/19 23:56,"523 Cedar St, San Francisco, CA 94016" +147068,iPhone,1,700,01/25/19 15:37,"244 South St, Seattle, WA 98101" +147069,Lightning Charging Cable,1,14.95,01/08/19 21:42,"388 West St, Los Angeles, CA 90001" +147070,AA Batteries (4-pack),1,3.84,01/30/19 18:11,"833 Cedar St, New York City, NY 10001" +147071,Lightning Charging Cable,1,14.95,01/06/19 18:26,"306 Park St, New York City, NY 10001" +147072,Bose SoundSport Headphones,1,99.99,01/12/19 09:40,"557 Hickory St, Los Angeles, CA 90001" +147073,LG Dryer,1,600.0,01/23/19 15:46,"995 Lincoln St, Portland, OR 97035" +147074,Macbook Pro Laptop,1,1700,01/24/19 09:42,"337 Wilson St, Los Angeles, CA 90001" +147075,USB-C Charging Cable,1,11.95,01/17/19 11:48,"250 Adams St, Los Angeles, CA 90001" +147076,AAA Batteries (4-pack),4,2.99,01/17/19 18:06,"234 Church St, Dallas, TX 75001" +147077,Google Phone,1,600,01/10/19 14:48,"156 6th St, Boston, MA 02215" +147078,AA Batteries (4-pack),2,3.84,01/10/19 15:19,"824 West St, San Francisco, CA 94016" +147079,Flatscreen TV,1,300,01/20/19 14:18,"284 Sunset St, San Francisco, CA 94016" +147080,Apple Airpods Headphones,1,150,01/26/19 21:24,"465 11th St, Los Angeles, CA 90001" +147081,27in FHD Monitor,1,149.99,01/04/19 20:51,"539 Sunset St, San Francisco, CA 94016" +147082,Wired Headphones,1,11.99,01/14/19 09:39,"730 Chestnut St, Atlanta, GA 30301" +147083,Lightning Charging Cable,1,14.95,01/31/19 13:50,"829 13th St, San Francisco, CA 94016" +147084,Wired Headphones,1,11.99,01/24/19 11:23,"605 4th St, San Francisco, CA 94016" +147085,AAA Batteries (4-pack),1,2.99,01/15/19 16:20,"710 Lake St, Austin, TX 73301" +147086,Flatscreen TV,1,300,01/14/19 23:15,"611 Johnson St, San Francisco, CA 94016" +147087,AA Batteries (4-pack),1,3.84,01/03/19 19:15,"538 7th St, Atlanta, GA 30301" +147088,27in FHD Monitor,1,149.99,01/16/19 17:46,"830 Madison St, Atlanta, GA 30301" +147089,27in 4K Gaming Monitor,1,389.99,01/10/19 23:06,"990 North St, Seattle, WA 98101" +147090,Flatscreen TV,1,300,01/01/19 14:16,"122 Willow St, Los Angeles, CA 90001" +147091,Apple Airpods Headphones,1,150,01/24/19 18:39,"210 Highland St, Boston, MA 02215" +147092,USB-C Charging Cable,1,11.95,01/16/19 23:47,"297 West St, Los Angeles, CA 90001" +147093,USB-C Charging Cable,1,11.95,01/30/19 22:27,"299 7th St, San Francisco, CA 94016" +147094,Apple Airpods Headphones,1,150,01/07/19 21:55,"71 9th St, Portland, OR 97035" +147095,Lightning Charging Cable,1,14.95,01/24/19 14:49,"230 13th St, Boston, MA 02215" +147096,USB-C Charging Cable,1,11.95,01/20/19 16:49,"760 7th St, Boston, MA 02215" +147097,27in FHD Monitor,1,149.99,01/17/19 19:21,"304 Lake St, San Francisco, CA 94016" +147098,Wired Headphones,1,11.99,01/29/19 15:26,"432 Chestnut St, Los Angeles, CA 90001" +147099,Lightning Charging Cable,1,14.95,01/09/19 20:45,"104 Cedar St, San Francisco, CA 94016" +147100,USB-C Charging Cable,1,11.95,01/12/19 19:44,"622 Meadow St, Seattle, WA 98101" +147101,Macbook Pro Laptop,1,1700,01/22/19 10:08,"353 Madison St, Boston, MA 02215" +147102,Lightning Charging Cable,1,14.95,01/24/19 10:24,"101 Johnson St, San Francisco, CA 94016" +147103,Lightning Charging Cable,2,14.95,01/29/19 17:53,"528 South St, New York City, NY 10001" +147104,AAA Batteries (4-pack),1,2.99,01/15/19 02:04,"104 Lakeview St, Dallas, TX 75001" +147104,27in 4K Gaming Monitor,1,389.99,01/15/19 02:04,"104 Lakeview St, Dallas, TX 75001" +147105,34in Ultrawide Monitor,1,379.99,01/30/19 17:32,"974 Ridge St, Los Angeles, CA 90001" +147106,Bose SoundSport Headphones,1,99.99,01/31/19 11:03,"840 11th St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +147107,Lightning Charging Cable,2,14.95,01/26/19 21:59,"453 6th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +147108,AA Batteries (4-pack),1,3.84,01/16/19 16:21,"419 Pine St, San Francisco, CA 94016" +147109,27in FHD Monitor,1,149.99,01/12/19 08:00,"682 Lakeview St, San Francisco, CA 94016" +147110,USB-C Charging Cable,1,11.95,01/15/19 17:32,"192 Elm St, Portland, ME 04101" +147111,Bose SoundSport Headphones,1,99.99,01/20/19 20:48,"418 Cherry St, San Francisco, CA 94016" +147112,Lightning Charging Cable,1,14.95,01/25/19 12:22,"376 Ridge St, Seattle, WA 98101" +147113,20in Monitor,1,109.99,01/30/19 19:13,"39 Highland St, San Francisco, CA 94016" +147114,USB-C Charging Cable,1,11.95,01/06/19 09:37,"495 11th St, Los Angeles, CA 90001" +147115,Wired Headphones,1,11.99,01/27/19 11:42,"706 North St, San Francisco, CA 94016" +147116,USB-C Charging Cable,1,11.95,01/15/19 19:07,"964 Main St, New York City, NY 10001" +147117,LG Washing Machine,1,600.0,01/14/19 08:29,"961 12th St, San Francisco, CA 94016" +147118,27in 4K Gaming Monitor,1,389.99,01/20/19 11:16,"457 North St, Seattle, WA 98101" +147119,iPhone,1,700,01/31/19 22:11,"407 Main St, Dallas, TX 75001" +147119,Apple Airpods Headphones,1,150,01/31/19 22:11,"407 Main St, Dallas, TX 75001" +147120,AAA Batteries (4-pack),1,2.99,01/15/19 01:47,"443 Ridge St, Seattle, WA 98101" +147121,Flatscreen TV,1,300,01/04/19 23:29,"77 River St, Dallas, TX 75001" +147122,AAA Batteries (4-pack),1,2.99,01/08/19 12:33,"573 9th St, Atlanta, GA 30301" +147123,Macbook Pro Laptop,1,1700,01/04/19 16:23,"28 4th St, San Francisco, CA 94016" +147124,27in FHD Monitor,1,149.99,01/19/19 09:06,"704 Madison St, Portland, OR 97035" +147125,Apple Airpods Headphones,1,150,01/16/19 19:04,"862 Ridge St, San Francisco, CA 94016" +147126,Google Phone,1,600,01/06/19 23:28,"11 Ridge St, San Francisco, CA 94016" +147127,Wired Headphones,1,11.99,01/31/19 16:51,"639 Highland St, New York City, NY 10001" +147128,AA Batteries (4-pack),1,3.84,01/25/19 10:24,"2 Jefferson St, San Francisco, CA 94016" +147129,Apple Airpods Headphones,1,150,01/27/19 15:36,"82 Adams St, Boston, MA 02215" +147130,Lightning Charging Cable,1,14.95,01/04/19 14:31,"626 10th St, Atlanta, GA 30301" +147131,27in FHD Monitor,1,149.99,01/09/19 17:55,"265 Jefferson St, San Francisco, CA 94016" +147132,Lightning Charging Cable,1,14.95,01/21/19 18:59,"352 Hickory St, Boston, MA 02215" +147133,AAA Batteries (4-pack),1,2.99,01/29/19 16:15,"792 6th St, San Francisco, CA 94016" +147134,AA Batteries (4-pack),1,3.84,01/22/19 09:42,"853 Walnut St, Seattle, WA 98101" +147135,Bose SoundSport Headphones,1,99.99,01/09/19 21:28,"965 Park St, Boston, MA 02215" +147136,34in Ultrawide Monitor,1,379.99,01/27/19 15:05,"353 Wilson St, Boston, MA 02215" +147137,Apple Airpods Headphones,1,150,01/02/19 14:45,"643 13th St, Los Angeles, CA 90001" +147138,AAA Batteries (4-pack),1,2.99,01/06/19 14:43,"580 14th St, Portland, ME 04101" +147139,Lightning Charging Cable,1,14.95,01/04/19 15:18,"968 7th St, Los Angeles, CA 90001" +147140,20in Monitor,1,109.99,01/28/19 16:04,"359 Adams St, Los Angeles, CA 90001" +147141,34in Ultrawide Monitor,1,379.99,01/22/19 11:41,"207 Lincoln St, Atlanta, GA 30301" +147142,Wired Headphones,1,11.99,01/07/19 00:09,"917 Jackson St, Seattle, WA 98101" +147143,AA Batteries (4-pack),1,3.84,01/14/19 08:35,"171 Church St, New York City, NY 10001" +147144,iPhone,1,700,01/25/19 20:35,"33 Pine St, Atlanta, GA 30301" +147145,Bose SoundSport Headphones,1,99.99,01/28/19 12:29,"812 5th St, Boston, MA 02215" +147146,Google Phone,1,600,01/14/19 23:03,"967 1st St, Dallas, TX 75001" +147147,Wired Headphones,1,11.99,01/27/19 18:09,"37 Hill St, Los Angeles, CA 90001" +147148,Apple Airpods Headphones,1,150,01/20/19 10:57,"815 Cherry St, Portland, OR 97035" +147149,USB-C Charging Cable,1,11.95,01/02/19 19:26,"949 Main St, Seattle, WA 98101" +147150,AA Batteries (4-pack),3,3.84,01/02/19 18:00,"383 Spruce St, San Francisco, CA 94016" +147151,Lightning Charging Cable,1,14.95,01/18/19 13:15,"164 Willow St, Boston, MA 02215" +147152,27in 4K Gaming Monitor,1,389.99,01/01/19 18:50,"107 11th St, San Francisco, CA 94016" +147153,Flatscreen TV,1,300,01/03/19 10:58,"910 Adams St, Portland, OR 97035" +147154,Lightning Charging Cable,1,14.95,01/17/19 09:30,"313 4th St, New York City, NY 10001" +147155,AA Batteries (4-pack),1,3.84,01/08/19 16:05,"466 Sunset St, San Francisco, CA 94016" +147156,Lightning Charging Cable,1,14.95,01/21/19 09:56,"847 9th St, Seattle, WA 98101" +147157,Wired Headphones,2,11.99,01/13/19 10:12,"766 Ridge St, Los Angeles, CA 90001" +147158,Apple Airpods Headphones,1,150,01/30/19 13:59,"318 Adams St, Los Angeles, CA 90001" +147159,Apple Airpods Headphones,1,150,01/22/19 16:45,"234 8th St, Portland, OR 97035" +147160,AA Batteries (4-pack),1,3.84,01/08/19 23:54,"6 Hill St, Dallas, TX 75001" +147161,Lightning Charging Cable,1,14.95,01/10/19 00:44,"751 Maple St, San Francisco, CA 94016" +147162,Bose SoundSport Headphones,1,99.99,01/19/19 23:39,"939 Maple St, Los Angeles, CA 90001" +147163,AAA Batteries (4-pack),3,2.99,01/14/19 08:53,"291 Sunset St, San Francisco, CA 94016" +147164,iPhone,1,700,01/01/19 22:53,"915 Meadow St, New York City, NY 10001" +147165,AAA Batteries (4-pack),1,2.99,01/20/19 10:51,"382 12th St, San Francisco, CA 94016" +147166,Apple Airpods Headphones,1,150,01/11/19 22:22,"633 10th St, San Francisco, CA 94016" +147167,USB-C Charging Cable,1,11.95,01/05/19 17:59,"613 Johnson St, San Francisco, CA 94016" +147168,Wired Headphones,1,11.99,01/28/19 09:09,"68 Lakeview St, San Francisco, CA 94016" +147169,Lightning Charging Cable,1,14.95,01/05/19 21:28,"953 Lincoln St, Seattle, WA 98101" +147170,Bose SoundSport Headphones,1,99.99,01/10/19 13:00,"614 Highland St, Seattle, WA 98101" +147171,Wired Headphones,1,11.99,01/24/19 17:37,"677 Walnut St, San Francisco, CA 94016" +147172,AAA Batteries (4-pack),1,2.99,01/22/19 20:28,"273 Pine St, Portland, OR 97035" +147173,Flatscreen TV,1,300,01/12/19 12:18,"856 Chestnut St, Los Angeles, CA 90001" +147174,Apple Airpods Headphones,1,150,01/19/19 01:44,"211 Jefferson St, Austin, TX 73301" +147175,Google Phone,1,600,01/18/19 17:39,"196 Adams St, Dallas, TX 75001" +147176,Wired Headphones,1,11.99,01/05/19 13:55,"52 7th St, Portland, OR 97035" +147177,AA Batteries (4-pack),1,3.84,01/30/19 10:48,"214 Pine St, Portland, OR 97035" +147178,34in Ultrawide Monitor,1,379.99,01/16/19 11:09,"352 Lincoln St, New York City, NY 10001" +147179,Macbook Pro Laptop,1,1700,01/07/19 18:10,"238 2nd St, Los Angeles, CA 90001" +147180,20in Monitor,1,109.99,01/26/19 13:06,"842 5th St, Boston, MA 02215" +147181,Wired Headphones,1,11.99,01/02/19 23:41,"989 Elm St, Boston, MA 02215" +147182,Wired Headphones,1,11.99,01/19/19 12:36,"755 Adams St, Seattle, WA 98101" +147183,Lightning Charging Cable,1,14.95,01/30/19 18:33,"350 Hickory St, Boston, MA 02215" +147184,ThinkPad Laptop,1,999.99,01/19/19 13:42,"76 Jackson St, Portland, OR 97035" +147185,Lightning Charging Cable,1,14.95,01/09/19 21:36,"261 West St, San Francisco, CA 94016" +147186,ThinkPad Laptop,1,999.99,01/29/19 08:08,"223 Highland St, Seattle, WA 98101" +147187,Lightning Charging Cable,1,14.95,01/09/19 20:06,"976 5th St, Los Angeles, CA 90001" +147188,ThinkPad Laptop,1,999.99,01/27/19 16:26,"20 Washington St, Los Angeles, CA 90001" +147189,Wired Headphones,1,11.99,01/18/19 22:56,"655 Main St, San Francisco, CA 94016" +147190,Wired Headphones,1,11.99,01/07/19 15:53,"683 Cedar St, Portland, ME 04101" +147191,USB-C Charging Cable,2,11.95,01/29/19 20:38,"43 Jackson St, Los Angeles, CA 90001" +147192,Apple Airpods Headphones,1,150,01/29/19 09:38,"33 6th St, Los Angeles, CA 90001" +147193,Lightning Charging Cable,2,14.95,01/21/19 12:06,"797 Main St, San Francisco, CA 94016" +147194,27in 4K Gaming Monitor,1,389.99,01/24/19 22:35,"789 8th St, San Francisco, CA 94016" +147195,Lightning Charging Cable,1,14.95,01/30/19 20:04,"416 West St, San Francisco, CA 94016" +147196,LG Washing Machine,1,600.0,01/23/19 18:54,"798 Johnson St, New York City, NY 10001" +147197,AA Batteries (4-pack),1,3.84,01/15/19 12:23,"907 Cedar St, Boston, MA 02215" +147197,Bose SoundSport Headphones,1,99.99,01/15/19 12:23,"907 Cedar St, Boston, MA 02215" +147198,Wired Headphones,1,11.99,01/15/19 20:30,"309 10th St, New York City, NY 10001" +147199,Apple Airpods Headphones,1,150,01/26/19 06:29,"164 Meadow St, Dallas, TX 75001" +147200,iPhone,1,700,01/10/19 20:48,"230 North St, Atlanta, GA 30301" +147201,ThinkPad Laptop,1,999.99,01/05/19 10:03,"876 6th St, San Francisco, CA 94016" +147202,Macbook Pro Laptop,1,1700,01/11/19 20:57,"370 14th St, Los Angeles, CA 90001" +147203,USB-C Charging Cable,1,11.95,01/28/19 14:57,"249 11th St, Seattle, WA 98101" +147204,AAA Batteries (4-pack),1,2.99,01/04/19 09:26,"533 Hickory St, Dallas, TX 75001" +147205,USB-C Charging Cable,1,11.95,01/10/19 16:27,"281 1st St, Atlanta, GA 30301" +147206,Bose SoundSport Headphones,1,99.99,01/03/19 18:48,"813 Sunset St, Los Angeles, CA 90001" +147207,Wired Headphones,1,11.99,01/06/19 21:38,"686 West St, New York City, NY 10001" +147208,Apple Airpods Headphones,1,150,01/24/19 20:03,"161 Madison St, San Francisco, CA 94016" +147209,AAA Batteries (4-pack),1,2.99,01/05/19 16:42,"175 Madison St, Boston, MA 02215" +147210,27in 4K Gaming Monitor,1,389.99,01/10/19 08:44,"147 Sunset St, Boston, MA 02215" +147211,USB-C Charging Cable,1,11.95,01/27/19 22:25,"912 6th St, San Francisco, CA 94016" +147212,Lightning Charging Cable,1,14.95,01/04/19 09:19,"356 7th St, Dallas, TX 75001" +147213,Wired Headphones,1,11.99,01/18/19 15:11,"508 Ridge St, Boston, MA 02215" +147214,iPhone,1,700,01/27/19 12:36,"806 11th St, New York City, NY 10001" +147215,Apple Airpods Headphones,1,150,01/14/19 23:47,"193 2nd St, New York City, NY 10001" +147216,USB-C Charging Cable,1,11.95,01/12/19 08:35,"561 Johnson St, San Francisco, CA 94016" +147217,27in 4K Gaming Monitor,1,389.99,01/24/19 18:21,"643 4th St, Austin, TX 73301" +147218,AAA Batteries (4-pack),2,2.99,01/29/19 09:53,"454 Meadow St, Los Angeles, CA 90001" +147219,AAA Batteries (4-pack),1,2.99,01/24/19 11:06,"303 4th St, New York City, NY 10001" +147220,AAA Batteries (4-pack),4,2.99,01/11/19 08:18,"757 Lake St, Dallas, TX 75001" +147221,AAA Batteries (4-pack),2,2.99,01/29/19 18:04,"186 West St, Dallas, TX 75001" +147222,Google Phone,1,600,01/03/19 19:31,"749 Wilson St, New York City, NY 10001" +147223,AAA Batteries (4-pack),1,2.99,01/18/19 14:00,"290 4th St, New York City, NY 10001" +147224,Wired Headphones,1,11.99,01/06/19 17:01,"362 Hill St, San Francisco, CA 94016" +147225,USB-C Charging Cable,1,11.95,01/19/19 12:37,"854 Lincoln St, Boston, MA 02215" +147226,AAA Batteries (4-pack),1,2.99,01/10/19 10:47,"528 North St, Atlanta, GA 30301" +147227,Lightning Charging Cable,1,14.95,01/15/19 18:11,"579 Elm St, San Francisco, CA 94016" +147228,AAA Batteries (4-pack),2,2.99,01/12/19 14:45,"518 Wilson St, Portland, OR 97035" +147229,AA Batteries (4-pack),2,3.84,01/22/19 11:43,"785 Chestnut St, New York City, NY 10001" +147230,Apple Airpods Headphones,1,150,01/17/19 02:57,"136 Hill St, New York City, NY 10001" +147231,Bose SoundSport Headphones,1,99.99,01/05/19 12:17,"392 North St, New York City, NY 10001" +147232,20in Monitor,1,109.99,01/24/19 22:22,"560 Sunset St, Los Angeles, CA 90001" +147233,Lightning Charging Cable,1,14.95,01/26/19 18:24,"156 Willow St, San Francisco, CA 94016" +147234,Apple Airpods Headphones,1,150,01/12/19 20:04,"947 West St, Atlanta, GA 30301" +147235,Apple Airpods Headphones,1,150,01/22/19 13:56,"725 Johnson St, Los Angeles, CA 90001" +147236,USB-C Charging Cable,1,11.95,01/22/19 11:43,"495 Maple St, San Francisco, CA 94016" +147236,AAA Batteries (4-pack),1,2.99,01/22/19 11:43,"495 Maple St, San Francisco, CA 94016" +147237,USB-C Charging Cable,1,11.95,01/07/19 21:14,"848 Meadow St, San Francisco, CA 94016" +147238,Bose SoundSport Headphones,1,99.99,01/07/19 16:52,"107 Hill St, Austin, TX 73301" +147239,Google Phone,1,600,01/10/19 15:23,"68 8th St, San Francisco, CA 94016" +147240,Lightning Charging Cable,1,14.95,01/01/19 21:55,"20 14th St, Austin, TX 73301" +147241,Wired Headphones,1,11.99,01/13/19 08:15,"691 5th St, Portland, OR 97035" +147242,AAA Batteries (4-pack),1,2.99,01/18/19 17:30,"818 Park St, San Francisco, CA 94016" +147243,ThinkPad Laptop,1,999.99,01/07/19 12:08,"219 Johnson St, Austin, TX 73301" +147244,27in 4K Gaming Monitor,1,389.99,01/07/19 13:28,"336 7th St, Los Angeles, CA 90001" +147245,Wired Headphones,2,11.99,01/03/19 23:01,"182 Willow St, Atlanta, GA 30301" +147246,34in Ultrawide Monitor,1,379.99,01/03/19 11:12,"748 Willow St, Boston, MA 02215" +147247,Apple Airpods Headphones,1,150,01/12/19 20:25,"630 Lake St, Atlanta, GA 30301" +147248,AA Batteries (4-pack),1,3.84,01/16/19 08:30,"265 8th St, San Francisco, CA 94016" +147249,AA Batteries (4-pack),1,3.84,01/28/19 16:03,"47 Forest St, Austin, TX 73301" +147250,AAA Batteries (4-pack),1,2.99,01/07/19 10:28,"769 4th St, Austin, TX 73301" +147251,Apple Airpods Headphones,1,150,01/24/19 11:47,"463 12th St, Austin, TX 73301" +147252,Apple Airpods Headphones,1,150,01/12/19 12:18,"780 Lakeview St, Portland, OR 97035" +147253,34in Ultrawide Monitor,1,379.99,01/22/19 11:36,"355 Madison St, San Francisco, CA 94016" +147254,Wired Headphones,1,11.99,01/21/19 02:46,"178 Church St, Atlanta, GA 30301" +147255,AAA Batteries (4-pack),1,2.99,01/06/19 12:48,"679 Center St, Los Angeles, CA 90001" +147256,Lightning Charging Cable,1,14.95,01/24/19 18:08,"42 5th St, San Francisco, CA 94016" +147257,Wired Headphones,1,11.99,01/28/19 14:44,"612 Cedar St, San Francisco, CA 94016" +147258,Lightning Charging Cable,1,14.95,01/11/19 19:49,"700 Hill St, New York City, NY 10001" +147259,USB-C Charging Cable,1,11.95,01/25/19 09:11,"431 Jefferson St, Los Angeles, CA 90001" +147260,Google Phone,1,600,01/21/19 20:55,"249 Wilson St, Dallas, TX 75001" +147261,Macbook Pro Laptop,1,1700,01/30/19 21:27,"482 Willow St, Atlanta, GA 30301" +147262,Wired Headphones,1,11.99,01/30/19 15:42,"392 Cedar St, Los Angeles, CA 90001" +147263,Lightning Charging Cable,1,14.95,01/27/19 17:06,"467 4th St, Los Angeles, CA 90001" +147264,Wired Headphones,1,11.99,01/09/19 23:51,"594 West St, Seattle, WA 98101" +147264,Lightning Charging Cable,1,14.95,01/09/19 23:51,"594 West St, Seattle, WA 98101" +147265,USB-C Charging Cable,1,11.95,01/14/19 19:39,"792 Lincoln St, San Francisco, CA 94016" +147266,Bose SoundSport Headphones,1,99.99,01/20/19 11:45,"505 Church St, Dallas, TX 75001" +147267,Lightning Charging Cable,2,14.95,01/15/19 17:17,"251 West St, Austin, TX 73301" +147268,USB-C Charging Cable,1,11.95,01/07/19 12:47,"174 Maple St, Boston, MA 02215" +147269,27in 4K Gaming Monitor,1,389.99,01/31/19 11:29,"805 Madison St, Portland, ME 04101" +147270,27in 4K Gaming Monitor,1,389.99,01/24/19 11:21,"781 Jefferson St, San Francisco, CA 94016" +147271,USB-C Charging Cable,1,11.95,01/04/19 18:32,"435 Elm St, Dallas, TX 75001" +147272,Flatscreen TV,1,300,01/31/19 17:08,"922 River St, New York City, NY 10001" +147272,Macbook Pro Laptop,1,1700,01/31/19 17:08,"922 River St, New York City, NY 10001" +147273,AAA Batteries (4-pack),1,2.99,01/18/19 14:57,"861 Chestnut St, New York City, NY 10001" +147274,Bose SoundSport Headphones,1,99.99,01/22/19 01:49,"40 4th St, Los Angeles, CA 90001" +147275,Wired Headphones,1,11.99,01/02/19 13:43,"124 6th St, Boston, MA 02215" +147276,AA Batteries (4-pack),1,3.84,01/01/19 14:45,"554 10th St, San Francisco, CA 94016" +147277,AA Batteries (4-pack),1,3.84,01/30/19 15:28,"771 West St, San Francisco, CA 94016" +147278,AA Batteries (4-pack),1,3.84,01/22/19 09:36,"730 Sunset St, New York City, NY 10001" +147279,USB-C Charging Cable,1,11.95,01/26/19 11:08,"205 12th St, Dallas, TX 75001" +147280,Lightning Charging Cable,1,14.95,01/19/19 11:40,"543 6th St, San Francisco, CA 94016" +147281,Wired Headphones,1,11.99,01/05/19 08:16,"708 West St, San Francisco, CA 94016" +147282,AA Batteries (4-pack),1,3.84,01/25/19 11:03,"196 7th St, Los Angeles, CA 90001" +147283,Apple Airpods Headphones,1,150,01/10/19 09:49,"510 Spruce St, San Francisco, CA 94016" +147284,AA Batteries (4-pack),1,3.84,01/02/19 16:18,"812 6th St, Boston, MA 02215" +147285,Wired Headphones,1,11.99,01/10/19 09:23,"72 10th St, Boston, MA 02215" +147286,Apple Airpods Headphones,1,150,01/02/19 20:41,"699 Adams St, Los Angeles, CA 90001" +147287,Bose SoundSport Headphones,1,99.99,01/20/19 01:05,"637 Walnut St, Atlanta, GA 30301" +147288,Macbook Pro Laptop,1,1700,01/25/19 21:28,"268 Walnut St, New York City, NY 10001" +147289,Bose SoundSport Headphones,1,99.99,01/02/19 09:03,"858 Chestnut St, Portland, OR 97035" +147290,AAA Batteries (4-pack),1,2.99,01/10/19 08:57,"850 11th St, New York City, NY 10001" +147291,Apple Airpods Headphones,1,150,01/12/19 20:42,"118 2nd St, Atlanta, GA 30301" +147292,AAA Batteries (4-pack),1,2.99,01/19/19 17:11,"346 Lake St, Los Angeles, CA 90001" +147293,Lightning Charging Cable,1,14.95,01/28/19 05:16,"923 Willow St, Los Angeles, CA 90001" +147294,AAA Batteries (4-pack),1,2.99,01/11/19 00:33,"797 Willow St, Boston, MA 02215" +147295,AA Batteries (4-pack),1,3.84,01/03/19 06:48,"357 7th St, Los Angeles, CA 90001" +147296,LG Dryer,1,600.0,01/10/19 07:42,"987 10th St, Portland, OR 97035" +147297,Lightning Charging Cable,1,14.95,01/05/19 20:10,"750 7th St, San Francisco, CA 94016" +147298,AA Batteries (4-pack),1,3.84,01/02/19 07:52,"369 2nd St, Los Angeles, CA 90001" +147299,AA Batteries (4-pack),2,3.84,01/17/19 14:07,"302 Washington St, Boston, MA 02215" +147300,27in FHD Monitor,1,149.99,01/31/19 15:24,"839 8th St, San Francisco, CA 94016" +147301,AAA Batteries (4-pack),2,2.99,01/20/19 21:28,"734 Adams St, Atlanta, GA 30301" +147302,Macbook Pro Laptop,1,1700,01/10/19 00:11,"907 Madison St, Austin, TX 73301" +147302,AAA Batteries (4-pack),1,2.99,01/10/19 00:11,"907 Madison St, Austin, TX 73301" +147303,27in FHD Monitor,1,149.99,01/29/19 18:13,"212 Hill St, San Francisco, CA 94016" +147304,Lightning Charging Cable,1,14.95,01/29/19 09:37,"513 Ridge St, Los Angeles, CA 90001" +147305,Lightning Charging Cable,1,14.95,01/30/19 06:00,"500 1st St, San Francisco, CA 94016" +147306,Wired Headphones,2,11.99,01/30/19 21:07,"738 9th St, New York City, NY 10001" +147307,Wired Headphones,1,11.99,01/14/19 08:22,"746 Jefferson St, Austin, TX 73301" +147308,20in Monitor,1,109.99,01/13/19 21:51,"698 Johnson St, Atlanta, GA 30301" +147309,AA Batteries (4-pack),4,3.84,01/08/19 10:09,"977 Lakeview St, Los Angeles, CA 90001" +147310,ThinkPad Laptop,1,999.99,01/30/19 12:15,"444 Madison St, Boston, MA 02215" +147311,Lightning Charging Cable,1,14.95,01/17/19 21:17,"16 10th St, Atlanta, GA 30301" +147312,Lightning Charging Cable,1,14.95,01/29/19 16:25,"36 1st St, Dallas, TX 75001" +147313,USB-C Charging Cable,1,11.95,01/21/19 08:57,"761 11th St, Atlanta, GA 30301" +147314,Bose SoundSport Headphones,1,99.99,01/22/19 15:49,"304 10th St, Los Angeles, CA 90001" +147315,Bose SoundSport Headphones,1,99.99,01/10/19 19:05,"329 Lakeview St, Dallas, TX 75001" +147316,Google Phone,1,600,01/24/19 17:31,"642 13th St, Boston, MA 02215" +147317,Macbook Pro Laptop,1,1700,01/02/19 14:46,"543 Adams St, Los Angeles, CA 90001" +147318,Lightning Charging Cable,1,14.95,01/07/19 21:54,"346 Hickory St, San Francisco, CA 94016" +147319,Vareebadd Phone,1,400,01/07/19 10:30,"3 Main St, San Francisco, CA 94016" +147320,Lightning Charging Cable,1,14.95,01/02/19 14:40,"213 Walnut St, Los Angeles, CA 90001" +147321,27in 4K Gaming Monitor,1,389.99,01/20/19 02:51,"920 Jackson St, San Francisco, CA 94016" +147322,ThinkPad Laptop,1,999.99,01/23/19 20:14,"272 Cherry St, Portland, ME 04101" +147323,USB-C Charging Cable,1,11.95,01/15/19 16:51,"358 Sunset St, San Francisco, CA 94016" +147324,Apple Airpods Headphones,1,150,01/11/19 11:00,"250 Adams St, San Francisco, CA 94016" +147325,AA Batteries (4-pack),1,3.84,01/14/19 10:48,"872 Cherry St, Dallas, TX 75001" +147326,27in 4K Gaming Monitor,1,389.99,01/18/19 20:53,"493 Meadow St, New York City, NY 10001" +147327,27in FHD Monitor,1,149.99,01/14/19 00:08,"801 Willow St, San Francisco, CA 94016" +147328,ThinkPad Laptop,1,999.99,01/03/19 11:57,"389 11th St, Dallas, TX 75001" +147329,Lightning Charging Cable,2,14.95,01/14/19 00:00,"960 2nd St, Los Angeles, CA 90001" +147330,Bose SoundSport Headphones,1,99.99,01/25/19 15:30,"410 Pine St, New York City, NY 10001" +147331,Wired Headphones,1,11.99,01/11/19 09:50,"427 Walnut St, San Francisco, CA 94016" +147332,Wired Headphones,1,11.99,01/19/19 13:35,"669 Meadow St, Dallas, TX 75001" +147333,Bose SoundSport Headphones,1,99.99,01/22/19 23:17,"107 Madison St, Portland, OR 97035" +147334,iPhone,1,700,01/19/19 17:27,"305 Maple St, Dallas, TX 75001" +147334,Wired Headphones,1,11.99,01/19/19 17:27,"305 Maple St, Dallas, TX 75001" +147335,Apple Airpods Headphones,1,150,01/31/19 21:13,"281 9th St, San Francisco, CA 94016" +147336,AA Batteries (4-pack),1,3.84,01/03/19 06:39,"432 14th St, Portland, OR 97035" +147337,AA Batteries (4-pack),3,3.84,01/17/19 19:37,"630 Center St, Boston, MA 02215" +147338,27in 4K Gaming Monitor,1,389.99,01/11/19 14:31,"979 Jackson St, Austin, TX 73301" +147339,Lightning Charging Cable,1,14.95,01/21/19 08:31,"985 Walnut St, Austin, TX 73301" +147340,Bose SoundSport Headphones,1,99.99,01/31/19 17:08,"295 Lakeview St, Seattle, WA 98101" +147341,AA Batteries (4-pack),1,3.84,01/29/19 18:25,"706 Park St, Seattle, WA 98101" +147342,27in 4K Gaming Monitor,1,389.99,01/10/19 11:51,"426 Center St, Portland, OR 97035" +147343,Apple Airpods Headphones,1,150,01/14/19 14:01,"574 10th St, Atlanta, GA 30301" +147344,Apple Airpods Headphones,1,150,01/09/19 08:25,"409 Jefferson St, San Francisco, CA 94016" +147345,AA Batteries (4-pack),1,3.84,01/12/19 20:20,"850 Forest St, Dallas, TX 75001" +147346,Lightning Charging Cable,1,14.95,01/07/19 17:52,"983 Main St, San Francisco, CA 94016" +147347,Bose SoundSport Headphones,1,99.99,01/24/19 21:43,"147 Church St, Los Angeles, CA 90001" +147348,Apple Airpods Headphones,1,150,01/06/19 21:34,"156 Washington St, San Francisco, CA 94016" +147349,27in FHD Monitor,1,149.99,01/17/19 09:20,"664 12th St, San Francisco, CA 94016" +147350,Wired Headphones,1,11.99,01/10/19 00:21,"877 7th St, San Francisco, CA 94016" +147351,USB-C Charging Cable,1,11.95,01/02/19 00:55,"424 West St, Atlanta, GA 30301" +147352,AAA Batteries (4-pack),1,2.99,01/22/19 20:44,"105 Pine St, Boston, MA 02215" +147353,Apple Airpods Headphones,1,150,01/13/19 11:37,"577 Dogwood St, Dallas, TX 75001" +147354,USB-C Charging Cable,1,11.95,01/19/19 10:21,"29 Hickory St, Seattle, WA 98101" +147355,Wired Headphones,1,11.99,01/12/19 02:22,"937 8th St, Austin, TX 73301" +147356,Macbook Pro Laptop,1,1700,01/02/19 12:50,"623 4th St, New York City, NY 10001" +147357,Apple Airpods Headphones,1,150,01/09/19 09:03,"812 7th St, Portland, ME 04101" +147358,AAA Batteries (4-pack),1,2.99,01/09/19 06:49,"392 4th St, Los Angeles, CA 90001" +147359,Lightning Charging Cable,2,14.95,01/27/19 10:28,"238 River St, Seattle, WA 98101" +147360,AAA Batteries (4-pack),1,2.99,01/28/19 19:39,"773 Spruce St, San Francisco, CA 94016" +147361,Lightning Charging Cable,1,14.95,01/08/19 18:45,"187 River St, Los Angeles, CA 90001" +147362,34in Ultrawide Monitor,1,379.99,01/28/19 22:25,"632 Church St, New York City, NY 10001" +147363,Lightning Charging Cable,1,14.95,01/14/19 21:05,"115 13th St, Dallas, TX 75001" +147364,ThinkPad Laptop,1,999.99,01/28/19 14:28,"32 8th St, Portland, OR 97035" +147365,Macbook Pro Laptop,1,1700,01/01/19 19:42,"614 7th St, New York City, NY 10001" +147366,Macbook Pro Laptop,1,1700,01/01/19 13:09,"187 Hickory St, San Francisco, CA 94016" +147367,AA Batteries (4-pack),1,3.84,01/05/19 18:55,"43 Lincoln St, San Francisco, CA 94016" +147368,AAA Batteries (4-pack),1,2.99,01/08/19 13:59,"830 1st St, Boston, MA 02215" +147369,ThinkPad Laptop,1,999.99,01/05/19 10:58,"810 Johnson St, San Francisco, CA 94016" +147370,Flatscreen TV,1,300,01/15/19 22:59,"292 Meadow St, Boston, MA 02215" +147371,Macbook Pro Laptop,1,1700,01/28/19 02:34,"904 Sunset St, New York City, NY 10001" +147372,Lightning Charging Cable,1,14.95,01/16/19 14:36,"180 14th St, Boston, MA 02215" +147373,Flatscreen TV,1,300,01/23/19 03:29,"748 Highland St, Portland, ME 04101" +147374,20in Monitor,1,109.99,01/15/19 22:18,"568 Lakeview St, San Francisco, CA 94016" +147375,27in 4K Gaming Monitor,1,389.99,01/30/19 09:58,"160 4th St, Austin, TX 73301" +147376,20in Monitor,1,109.99,01/13/19 21:42,"608 Park St, Portland, ME 04101" +147377,USB-C Charging Cable,1,11.95,01/31/19 13:12,"644 9th St, Dallas, TX 75001" +147378,Lightning Charging Cable,1,14.95,01/07/19 13:31,"735 Elm St, San Francisco, CA 94016" +147379,27in FHD Monitor,1,149.99,01/21/19 13:20,"158 2nd St, Austin, TX 73301" +147380,27in 4K Gaming Monitor,1,389.99,01/13/19 23:15,"128 Center St, Los Angeles, CA 90001" +147381,AA Batteries (4-pack),1,3.84,01/14/19 12:26,"238 4th St, San Francisco, CA 94016" +147382,USB-C Charging Cable,1,11.95,01/07/19 20:10,"763 5th St, Dallas, TX 75001" +147383,USB-C Charging Cable,1,11.95,01/07/19 13:23,"455 6th St, Boston, MA 02215" +147384,Google Phone,1,600,01/30/19 18:18,"39 Hickory St, Los Angeles, CA 90001" +147385,Wired Headphones,1,11.99,01/09/19 19:51,"253 13th St, Seattle, WA 98101" +147386,27in FHD Monitor,1,149.99,01/14/19 13:16,"549 Wilson St, Los Angeles, CA 90001" +147387,Bose SoundSport Headphones,1,99.99,01/10/19 14:49,"807 Hill St, New York City, NY 10001" +147388,Wired Headphones,2,11.99,01/26/19 05:59,"704 10th St, New York City, NY 10001" +147389,Apple Airpods Headphones,1,150,01/25/19 11:21,"543 Park St, San Francisco, CA 94016" +147390,Apple Airpods Headphones,1,150,01/18/19 15:24,"654 Spruce St, Seattle, WA 98101" +147391,Lightning Charging Cable,1,14.95,01/31/19 15:30,"840 Hill St, New York City, NY 10001" +147392,Wired Headphones,1,11.99,01/10/19 19:32,"387 Highland St, Portland, OR 97035" +147393,Flatscreen TV,1,300,01/15/19 08:41,"21 West St, New York City, NY 10001" +147394,AAA Batteries (4-pack),1,2.99,01/31/19 18:11,"715 Highland St, Portland, OR 97035" +147395,USB-C Charging Cable,1,11.95,01/25/19 21:16,"460 4th St, Portland, OR 97035" +147396,Wired Headphones,1,11.99,01/18/19 11:15,"491 Dogwood St, Austin, TX 73301" +147397,Wired Headphones,1,11.99,01/30/19 13:34,"753 Lakeview St, New York City, NY 10001" +147398,Wired Headphones,1,11.99,01/10/19 10:18,"377 10th St, Boston, MA 02215" +147399,AA Batteries (4-pack),1,3.84,01/31/19 12:04,"211 River St, San Francisco, CA 94016" +147399,27in FHD Monitor,1,149.99,01/31/19 12:04,"211 River St, San Francisco, CA 94016" +147400,ThinkPad Laptop,1,999.99,01/10/19 15:07,"844 Willow St, Seattle, WA 98101" +147401,iPhone,1,700,01/30/19 17:12,"344 1st St, Portland, OR 97035" +147401,Lightning Charging Cable,1,14.95,01/30/19 17:12,"344 1st St, Portland, OR 97035" +147402,Macbook Pro Laptop,1,1700,01/22/19 23:14,"453 11th St, Boston, MA 02215" +147403,Bose SoundSport Headphones,1,99.99,01/21/19 19:25,"273 Main St, New York City, NY 10001" +147404,USB-C Charging Cable,1,11.95,01/28/19 19:15,"485 Washington St, Los Angeles, CA 90001" +147405,Macbook Pro Laptop,1,1700,01/12/19 13:52,"693 Lake St, San Francisco, CA 94016" +147406,Lightning Charging Cable,2,14.95,01/04/19 18:23,"447 Lake St, San Francisco, CA 94016" +147407,AAA Batteries (4-pack),1,2.99,01/04/19 18:11,"554 5th St, Boston, MA 02215" +147408,27in FHD Monitor,1,149.99,01/04/19 12:00,"781 Maple St, Los Angeles, CA 90001" +147409,Vareebadd Phone,1,400,01/14/19 12:56,"806 7th St, San Francisco, CA 94016" +147409,USB-C Charging Cable,1,11.95,01/14/19 12:56,"806 7th St, San Francisco, CA 94016" +147410,Wired Headphones,1,11.99,01/13/19 11:13,"775 Hill St, Dallas, TX 75001" +147411,AAA Batteries (4-pack),1,2.99,01/17/19 11:43,"942 5th St, New York City, NY 10001" +147412,Lightning Charging Cable,3,14.95,01/12/19 21:34,"811 Sunset St, Seattle, WA 98101" +147413,Google Phone,1,600,01/03/19 10:59,"731 1st St, Boston, MA 02215" +147414,27in FHD Monitor,1,149.99,01/22/19 18:09,"884 Dogwood St, Los Angeles, CA 90001" +147415,Lightning Charging Cable,1,14.95,01/10/19 18:12,"708 Hickory St, Los Angeles, CA 90001" +147416,Lightning Charging Cable,1,14.95,01/23/19 18:29,"569 West St, Boston, MA 02215" +147417,USB-C Charging Cable,1,11.95,01/04/19 17:07,"864 Lakeview St, New York City, NY 10001" +147418,Google Phone,1,600,01/12/19 14:46,"452 1st St, Seattle, WA 98101" +147418,USB-C Charging Cable,2,11.95,01/12/19 14:46,"452 1st St, Seattle, WA 98101" +147419,USB-C Charging Cable,1,11.95,01/11/19 11:11,"414 5th St, Boston, MA 02215" +147420,Wired Headphones,1,11.99,01/24/19 10:42,"623 River St, San Francisco, CA 94016" +147421,AAA Batteries (4-pack),1,2.99,01/13/19 15:34,"54 Cherry St, Seattle, WA 98101" +147422,AA Batteries (4-pack),1,3.84,01/15/19 14:27,"756 12th St, San Francisco, CA 94016" +147423,Lightning Charging Cable,1,14.95,01/16/19 19:30,"673 South St, San Francisco, CA 94016" +147424,Apple Airpods Headphones,1,150,01/31/19 14:49,"394 Jefferson St, New York City, NY 10001" +147425,27in 4K Gaming Monitor,1,389.99,01/01/19 14:54,"447 10th St, New York City, NY 10001" +147426,AA Batteries (4-pack),1,3.84,01/17/19 13:39,"609 5th St, Los Angeles, CA 90001" +147427,27in 4K Gaming Monitor,1,389.99,01/05/19 23:52,"690 1st St, Dallas, TX 75001" +,,,,, +147428,Wired Headphones,1,11.99,01/16/19 13:04,"485 Lake St, Seattle, WA 98101" +147429,Lightning Charging Cable,1,14.95,01/15/19 19:41,"935 Highland St, Los Angeles, CA 90001" +147430,AA Batteries (4-pack),2,3.84,01/13/19 23:24,"873 North St, Los Angeles, CA 90001" +147431,Wired Headphones,1,11.99,01/11/19 09:35,"641 14th St, Los Angeles, CA 90001" +147432,iPhone,1,700,01/14/19 13:45,"758 Center St, Los Angeles, CA 90001" +147433,Wired Headphones,3,11.99,01/23/19 16:39,"582 11th St, Los Angeles, CA 90001" +147434,USB-C Charging Cable,1,11.95,01/05/19 14:39,"120 Spruce St, Seattle, WA 98101" +147435,AAA Batteries (4-pack),4,2.99,01/08/19 18:33,"519 Ridge St, Austin, TX 73301" +147436,USB-C Charging Cable,1,11.95,01/07/19 10:26,"341 Hill St, Dallas, TX 75001" +147437,Lightning Charging Cable,1,14.95,01/17/19 13:09,"310 Cedar St, Portland, OR 97035" +147438,AAA Batteries (4-pack),1,2.99,01/13/19 11:50,"288 Lakeview St, San Francisco, CA 94016" +147439,AA Batteries (4-pack),2,3.84,01/08/19 20:04,"370 Maple St, Los Angeles, CA 90001" +147440,ThinkPad Laptop,1,999.99,01/25/19 22:55,"961 South St, Boston, MA 02215" +147441,ThinkPad Laptop,1,999.99,01/15/19 12:16,"436 Jefferson St, San Francisco, CA 94016" +147442,Wired Headphones,1,11.99,01/09/19 18:29,"665 Main St, Atlanta, GA 30301" +147443,AA Batteries (4-pack),1,3.84,01/19/19 12:41,"721 Park St, Seattle, WA 98101" +147444,USB-C Charging Cable,1,11.95,01/05/19 14:00,"316 Park St, Seattle, WA 98101" +147445,USB-C Charging Cable,1,11.95,01/15/19 10:19,"977 8th St, Portland, OR 97035" +147446,Apple Airpods Headphones,1,150,01/25/19 08:56,"489 Wilson St, New York City, NY 10001" +147447,Google Phone,1,600,01/16/19 12:13,"170 Hickory St, Atlanta, GA 30301" +147448,AA Batteries (4-pack),1,3.84,01/13/19 16:37,"939 7th St, San Francisco, CA 94016" +147449,Macbook Pro Laptop,1,1700,01/13/19 10:06,"147 Chestnut St, San Francisco, CA 94016" +147449,AA Batteries (4-pack),2,3.84,01/13/19 10:06,"147 Chestnut St, San Francisco, CA 94016" +147450,AA Batteries (4-pack),2,3.84,01/25/19 10:58,"108 Center St, San Francisco, CA 94016" +147451,Wired Headphones,1,11.99,01/18/19 09:03,"994 Dogwood St, Seattle, WA 98101" +147451,Apple Airpods Headphones,1,150,01/18/19 09:03,"994 Dogwood St, Seattle, WA 98101" +147452,Apple Airpods Headphones,1,150,01/02/19 08:42,"423 Jackson St, New York City, NY 10001" +147453,20in Monitor,1,109.99,01/07/19 20:24,"548 9th St, San Francisco, CA 94016" +147454,Macbook Pro Laptop,1,1700,01/02/19 14:04,"976 Maple St, San Francisco, CA 94016" +147455,Wired Headphones,1,11.99,01/21/19 21:21,"223 Chestnut St, Los Angeles, CA 90001" +147456,Lightning Charging Cable,1,14.95,01/06/19 17:38,"424 Highland St, Seattle, WA 98101" +147457,iPhone,1,700,01/23/19 19:19,"225 Main St, Los Angeles, CA 90001" +147457,Apple Airpods Headphones,1,150,01/23/19 19:19,"225 Main St, Los Angeles, CA 90001" +147458,Apple Airpods Headphones,1,150,01/17/19 13:44,"115 6th St, San Francisco, CA 94016" +147459,Bose SoundSport Headphones,1,99.99,01/12/19 18:56,"242 Johnson St, Los Angeles, CA 90001" +147460,Macbook Pro Laptop,1,1700,01/14/19 19:28,"333 10th St, New York City, NY 10001" +147461,AA Batteries (4-pack),1,3.84,01/19/19 09:41,"78 Elm St, New York City, NY 10001" +147462,Flatscreen TV,1,300,01/26/19 17:44,"513 10th St, Austin, TX 73301" +147463,20in Monitor,1,109.99,01/14/19 21:45,"164 Willow St, Atlanta, GA 30301" +147464,AA Batteries (4-pack),1,3.84,01/02/19 15:02,"365 Cherry St, Atlanta, GA 30301" +147465,Apple Airpods Headphones,1,150,01/13/19 22:02,"667 6th St, Boston, MA 02215" +147466,27in FHD Monitor,1,149.99,01/18/19 11:51,"901 Highland St, San Francisco, CA 94016" +147467,Wired Headphones,1,11.99,01/08/19 19:15,"360 Church St, New York City, NY 10001" +147468,AAA Batteries (4-pack),1,2.99,01/04/19 22:05,"739 Park St, Seattle, WA 98101" +147469,AAA Batteries (4-pack),1,2.99,02/01/19 02:32,"447 West St, Austin, TX 73301" +147470,USB-C Charging Cable,1,11.95,01/11/19 14:15,"620 Johnson St, Los Angeles, CA 90001" +147471,AA Batteries (4-pack),1,3.84,01/18/19 21:53,"248 12th St, Boston, MA 02215" +147471,Lightning Charging Cable,1,14.95,01/18/19 21:53,"248 12th St, Boston, MA 02215" +147472,Lightning Charging Cable,1,14.95,01/20/19 19:04,"933 Center St, San Francisco, CA 94016" +147473,USB-C Charging Cable,1,11.95,01/07/19 17:06,"586 4th St, Seattle, WA 98101" +147474,20in Monitor,1,109.99,01/23/19 23:08,"815 Sunset St, San Francisco, CA 94016" +147475,LG Washing Machine,1,600.0,01/19/19 07:37,"732 Meadow St, Boston, MA 02215" +147476,USB-C Charging Cable,1,11.95,01/12/19 15:48,"760 Johnson St, San Francisco, CA 94016" +147477,Lightning Charging Cable,1,14.95,01/23/19 17:37,"560 Johnson St, Atlanta, GA 30301" +147478,AAA Batteries (4-pack),1,2.99,02/01/19 00:50,"801 Forest St, Los Angeles, CA 90001" +147479,AAA Batteries (4-pack),1,2.99,01/08/19 18:31,"999 Main St, Los Angeles, CA 90001" +147480,AAA Batteries (4-pack),4,2.99,01/27/19 11:58,"455 South St, Atlanta, GA 30301" +147481,AAA Batteries (4-pack),1,2.99,01/24/19 11:47,"699 Main St, San Francisco, CA 94016" +147482,Apple Airpods Headphones,1,150,01/29/19 08:13,"147 2nd St, Atlanta, GA 30301" +147483,Apple Airpods Headphones,1,150,01/15/19 15:46,"198 Ridge St, San Francisco, CA 94016" +147484,AA Batteries (4-pack),1,3.84,01/22/19 19:56,"215 Lake St, San Francisco, CA 94016" +147485,20in Monitor,1,109.99,01/09/19 20:48,"808 Johnson St, San Francisco, CA 94016" +147486,Wired Headphones,1,11.99,01/02/19 12:49,"555 5th St, Austin, TX 73301" +147487,Wired Headphones,1,11.99,01/14/19 16:09,"165 Washington St, Atlanta, GA 30301" +147488,AA Batteries (4-pack),2,3.84,01/10/19 20:21,"334 Center St, Boston, MA 02215" +147489,Wired Headphones,1,11.99,02/01/19 00:09,"223 5th St, Los Angeles, CA 90001" +147490,27in 4K Gaming Monitor,1,389.99,01/12/19 15:57,"563 North St, Los Angeles, CA 90001" +147491,AA Batteries (4-pack),1,3.84,01/05/19 08:09,"81 4th St, New York City, NY 10001" +147492,AA Batteries (4-pack),1,3.84,01/03/19 12:45,"363 Ridge St, San Francisco, CA 94016" +147493,27in 4K Gaming Monitor,1,389.99,01/20/19 21:35,"754 Hickory St, Portland, ME 04101" +147494,Wired Headphones,1,11.99,01/21/19 21:58,"653 Elm St, New York City, NY 10001" +147495,AAA Batteries (4-pack),2,2.99,01/12/19 20:33,"712 Jackson St, Dallas, TX 75001" +147496,Wired Headphones,1,11.99,01/05/19 14:30,"904 Chestnut St, San Francisco, CA 94016" +147497,ThinkPad Laptop,1,999.99,01/27/19 12:20,"513 Lakeview St, Portland, OR 97035" +147498,Wired Headphones,1,11.99,01/15/19 12:53,"834 Jackson St, Los Angeles, CA 90001" +147499,AAA Batteries (4-pack),1,2.99,01/02/19 17:37,"664 4th St, San Francisco, CA 94016" +147500,AAA Batteries (4-pack),1,2.99,01/16/19 17:06,"145 Johnson St, Portland, ME 04101" +147501,20in Monitor,1,109.99,01/23/19 11:25,"180 5th St, Los Angeles, CA 90001" +147502,20in Monitor,1,109.99,01/02/19 17:20,"616 Meadow St, San Francisco, CA 94016" +147503,Bose SoundSport Headphones,1,99.99,01/25/19 16:50,"370 Jefferson St, Atlanta, GA 30301" +147504,AA Batteries (4-pack),1,3.84,01/05/19 11:20,"626 Cedar St, Boston, MA 02215" +147505,iPhone,1,700,01/28/19 22:55,"879 Maple St, San Francisco, CA 94016" +147506,Vareebadd Phone,1,400,01/06/19 15:53,"583 Park St, Dallas, TX 75001" +147507,Flatscreen TV,1,300,01/21/19 12:20,"817 Church St, New York City, NY 10001" +147508,27in FHD Monitor,1,149.99,01/09/19 23:02,"396 Wilson St, San Francisco, CA 94016" +147509,USB-C Charging Cable,1,11.95,01/25/19 07:06,"73 Jefferson St, San Francisco, CA 94016" +147510,iPhone,1,700,01/01/19 06:48,"330 6th St, Los Angeles, CA 90001" +147511,27in 4K Gaming Monitor,1,389.99,01/15/19 18:28,"963 12th St, New York City, NY 10001" +147512,Lightning Charging Cable,1,14.95,01/23/19 16:04,"914 Maple St, San Francisco, CA 94016" +147513,USB-C Charging Cable,3,11.95,01/13/19 17:16,"978 Jefferson St, Dallas, TX 75001" +147514,Google Phone,1,600,01/21/19 15:54,"751 14th St, New York City, NY 10001" +147515,Bose SoundSport Headphones,1,99.99,01/05/19 08:22,"19 12th St, San Francisco, CA 94016" +147516,Macbook Pro Laptop,1,1700,01/29/19 08:51,"37 4th St, San Francisco, CA 94016" +147517,Apple Airpods Headphones,1,150,01/30/19 11:07,"578 4th St, Seattle, WA 98101" +147518,34in Ultrawide Monitor,1,379.99,01/25/19 11:58,"476 1st St, San Francisco, CA 94016" +147519,AA Batteries (4-pack),1,3.84,01/06/19 00:24,"969 4th St, San Francisco, CA 94016" +147520,AA Batteries (4-pack),1,3.84,01/05/19 14:21,"334 Wilson St, New York City, NY 10001" +147521,Wired Headphones,1,11.99,01/01/19 17:28,"217 Church St, San Francisco, CA 94016" +147522,USB-C Charging Cable,1,11.95,01/02/19 15:08,"22 Cedar St, Los Angeles, CA 90001" +147523,USB-C Charging Cable,1,11.95,01/12/19 18:55,"577 Pine St, San Francisco, CA 94016" +147524,20in Monitor,1,109.99,01/24/19 13:31,"411 12th St, Boston, MA 02215" +147525,Lightning Charging Cable,2,14.95,01/09/19 10:59,"4 Hill St, Dallas, TX 75001" +147526,Bose SoundSport Headphones,1,99.99,01/26/19 11:30,"653 14th St, Boston, MA 02215" +147527,Wired Headphones,1,11.99,01/08/19 17:30,"607 9th St, Atlanta, GA 30301" +147528,Lightning Charging Cable,1,14.95,01/17/19 14:06,"322 14th St, Boston, MA 02215" +147528,AAA Batteries (4-pack),1,2.99,01/17/19 14:06,"322 14th St, Boston, MA 02215" +147529,AAA Batteries (4-pack),2,2.99,01/12/19 17:43,"67 Forest St, Dallas, TX 75001" +147530,Wired Headphones,1,11.99,01/10/19 16:57,"137 10th St, Austin, TX 73301" +147531,AA Batteries (4-pack),1,3.84,01/14/19 11:27,"597 Highland St, Dallas, TX 75001" +147532,AAA Batteries (4-pack),1,2.99,01/07/19 16:26,"590 Cedar St, San Francisco, CA 94016" +147533,Wired Headphones,1,11.99,01/29/19 15:09,"689 10th St, New York City, NY 10001" +147534,34in Ultrawide Monitor,1,379.99,01/29/19 20:40,"577 Wilson St, Los Angeles, CA 90001" +147535,Macbook Pro Laptop,1,1700,01/04/19 10:54,"373 Hill St, Boston, MA 02215" +147536,Apple Airpods Headphones,1,150,01/19/19 11:31,"337 Elm St, Los Angeles, CA 90001" +147537,Apple Airpods Headphones,1,150,01/31/19 18:11,"656 Sunset St, Seattle, WA 98101" +147538,ThinkPad Laptop,1,999.99,01/09/19 11:36,"714 Forest St, New York City, NY 10001" +147539,Wired Headphones,1,11.99,01/21/19 19:23,"403 9th St, San Francisco, CA 94016" +147540,Wired Headphones,1,11.99,01/13/19 08:31,"417 Center St, New York City, NY 10001" +147541,USB-C Charging Cable,1,11.95,01/03/19 19:20,"205 13th St, New York City, NY 10001" +147542,AA Batteries (4-pack),1,3.84,01/04/19 18:35,"455 1st St, Dallas, TX 75001" +147543,20in Monitor,1,109.99,01/19/19 18:28,"218 10th St, Los Angeles, CA 90001" +147544,Lightning Charging Cable,1,14.95,01/24/19 21:30,"397 Lake St, Los Angeles, CA 90001" +147545,AA Batteries (4-pack),1,3.84,01/21/19 18:47,"231 Center St, San Francisco, CA 94016" +147546,iPhone,1,700,01/30/19 16:15,"194 12th St, Los Angeles, CA 90001" +147546,Apple Airpods Headphones,1,150,01/30/19 16:15,"194 12th St, Los Angeles, CA 90001" +147547,USB-C Charging Cable,1,11.95,01/13/19 19:24,"394 West St, Boston, MA 02215" +147548,27in 4K Gaming Monitor,1,389.99,01/17/19 20:44,"273 Chestnut St, Portland, OR 97035" +147549,27in FHD Monitor,1,149.99,01/17/19 10:26,"821 Walnut St, San Francisco, CA 94016" +147550,Lightning Charging Cable,1,14.95,01/17/19 16:09,"710 Hill St, Boston, MA 02215" +147551,Wired Headphones,1,11.99,01/03/19 23:11,"861 11th St, Los Angeles, CA 90001" +147552,Wired Headphones,1,11.99,01/23/19 14:04,"722 11th St, San Francisco, CA 94016" +147553,USB-C Charging Cable,1,11.95,01/21/19 23:52,"637 Forest St, Austin, TX 73301" +147554,AAA Batteries (4-pack),2,2.99,01/13/19 07:49,"710 Wilson St, Dallas, TX 75001" +147555,Wired Headphones,1,11.99,01/16/19 17:31,"531 Sunset St, San Francisco, CA 94016" +147556,27in FHD Monitor,1,149.99,01/19/19 08:31,"368 Cedar St, Portland, OR 97035" +147557,Flatscreen TV,1,300,01/01/19 16:36,"617 10th St, Dallas, TX 75001" +147558,Lightning Charging Cable,1,14.95,01/31/19 19:07,"790 Center St, Seattle, WA 98101" +147559,USB-C Charging Cable,1,11.95,01/21/19 01:16,"574 Cedar St, Los Angeles, CA 90001" +147560,AAA Batteries (4-pack),1,2.99,01/02/19 12:56,"706 Church St, San Francisco, CA 94016" +147561,34in Ultrawide Monitor,1,379.99,01/16/19 20:44,"463 7th St, Los Angeles, CA 90001" +147562,27in 4K Gaming Monitor,1,389.99,01/26/19 21:08,"354 1st St, Los Angeles, CA 90001" +147563,Bose SoundSport Headphones,1,99.99,01/08/19 21:42,"426 West St, Boston, MA 02215" +147564,27in FHD Monitor,1,149.99,01/19/19 12:40,"278 Washington St, San Francisco, CA 94016" +147565,Google Phone,1,600,01/16/19 17:08,"450 Adams St, New York City, NY 10001" +147566,Macbook Pro Laptop,1,1700,01/17/19 22:07,"355 Main St, Los Angeles, CA 90001" +147567,Lightning Charging Cable,1,14.95,01/18/19 22:27,"473 Center St, San Francisco, CA 94016" +147568,AA Batteries (4-pack),3,3.84,01/08/19 12:59,"795 Adams St, San Francisco, CA 94016" +147569,Wired Headphones,1,11.99,01/11/19 01:04,"263 Johnson St, Los Angeles, CA 90001" +147570,USB-C Charging Cable,1,11.95,01/16/19 15:45,"897 7th St, San Francisco, CA 94016" +147571,Flatscreen TV,1,300,01/12/19 15:33,"806 Jackson St, Boston, MA 02215" +147572,USB-C Charging Cable,1,11.95,01/02/19 20:08,"378 Johnson St, San Francisco, CA 94016" +147573,Apple Airpods Headphones,1,150,01/24/19 21:18,"99 Spruce St, San Francisco, CA 94016" +147574,Lightning Charging Cable,1,14.95,01/13/19 09:27,"782 Washington St, Los Angeles, CA 90001" +147575,Google Phone,1,600,01/22/19 21:25,"654 South St, San Francisco, CA 94016" +147576,Bose SoundSport Headphones,1,99.99,01/06/19 12:36,"366 West St, Boston, MA 02215" +147577,AAA Batteries (4-pack),2,2.99,01/22/19 13:15,"816 Johnson St, Austin, TX 73301" +147578,Apple Airpods Headphones,1,150,01/22/19 14:23,"244 Center St, Dallas, TX 75001" +147579,USB-C Charging Cable,1,11.95,01/25/19 21:19,"170 5th St, Dallas, TX 75001" +147580,34in Ultrawide Monitor,1,379.99,01/03/19 17:55,"329 Park St, San Francisco, CA 94016" +147581,AAA Batteries (4-pack),1,2.99,01/18/19 08:12,"22 Maple St, Los Angeles, CA 90001" +147582,USB-C Charging Cable,1,11.95,01/20/19 09:12,"636 6th St, Seattle, WA 98101" +147583,Google Phone,1,600,01/24/19 09:30,"52 6th St, Austin, TX 73301" +147584,Lightning Charging Cable,1,14.95,01/19/19 07:58,"556 2nd St, Atlanta, GA 30301" +147585,Lightning Charging Cable,1,14.95,01/03/19 10:59,"906 North St, Portland, OR 97035" +147586,USB-C Charging Cable,1,11.95,01/06/19 16:21,"758 Highland St, San Francisco, CA 94016" +147587,iPhone,1,700,01/11/19 21:58,"995 Sunset St, Atlanta, GA 30301" +147588,34in Ultrawide Monitor,1,379.99,01/01/19 20:22,"888 4th St, San Francisco, CA 94016" +147589,Bose SoundSport Headphones,1,99.99,01/04/19 23:50,"919 Ridge St, Los Angeles, CA 90001" +147590,Macbook Pro Laptop,1,1700,01/16/19 14:18,"652 Maple St, San Francisco, CA 94016" +147591,AA Batteries (4-pack),1,3.84,01/29/19 17:59,"890 Hickory St, Boston, MA 02215" +147592,Wired Headphones,1,11.99,01/16/19 19:03,"105 Washington St, Atlanta, GA 30301" +147593,Lightning Charging Cable,1,14.95,01/21/19 02:13,"806 Meadow St, Los Angeles, CA 90001" +147594,iPhone,1,700,01/15/19 12:43,"141 Highland St, Seattle, WA 98101" +147594,Lightning Charging Cable,2,14.95,01/15/19 12:43,"141 Highland St, Seattle, WA 98101" +147595,Lightning Charging Cable,1,14.95,01/12/19 15:04,"910 Highland St, San Francisco, CA 94016" +147596,AAA Batteries (4-pack),1,2.99,01/08/19 13:25,"152 Dogwood St, Seattle, WA 98101" +147597,34in Ultrawide Monitor,1,379.99,01/16/19 19:46,"76 Wilson St, Atlanta, GA 30301" +147598,Lightning Charging Cable,1,14.95,01/13/19 08:53,"678 5th St, Los Angeles, CA 90001" +147599,USB-C Charging Cable,1,11.95,01/16/19 14:53,"329 10th St, Portland, OR 97035" +147600,AA Batteries (4-pack),1,3.84,01/31/19 11:13,"872 Jefferson St, Los Angeles, CA 90001" +147601,iPhone,1,700,01/12/19 14:13,"555 West St, Atlanta, GA 30301" +147601,Wired Headphones,1,11.99,01/12/19 14:13,"555 West St, Atlanta, GA 30301" +147602,Bose SoundSport Headphones,1,99.99,01/09/19 10:03,"251 14th St, Los Angeles, CA 90001" +147603,AA Batteries (4-pack),1,3.84,01/19/19 14:45,"986 Ridge St, Dallas, TX 75001" +147604,USB-C Charging Cable,1,11.95,01/02/19 07:46,"561 5th St, San Francisco, CA 94016" +147605,USB-C Charging Cable,1,11.95,01/28/19 19:22,"459 7th St, Atlanta, GA 30301" +147606,USB-C Charging Cable,1,11.95,01/12/19 00:15,"728 Sunset St, San Francisco, CA 94016" +147607,Lightning Charging Cable,1,14.95,01/12/19 19:22,"736 Main St, New York City, NY 10001" +147608,Apple Airpods Headphones,1,150,01/20/19 16:44,"919 Jackson St, Portland, ME 04101" +147609,Wired Headphones,1,11.99,01/22/19 13:03,"411 8th St, Portland, OR 97035" +147610,Bose SoundSport Headphones,1,99.99,01/28/19 13:16,"977 West St, Boston, MA 02215" +147611,27in 4K Gaming Monitor,1,389.99,01/04/19 14:15,"394 Wilson St, New York City, NY 10001" +147612,Bose SoundSport Headphones,1,99.99,01/02/19 23:01,"151 South St, Los Angeles, CA 90001" +147613,Apple Airpods Headphones,1,150,01/19/19 20:57,"504 4th St, San Francisco, CA 94016" +147614,AA Batteries (4-pack),3,3.84,01/14/19 20:47,"993 Lake St, New York City, NY 10001" +147615,27in FHD Monitor,1,149.99,01/02/19 13:18,"509 Walnut St, Los Angeles, CA 90001" +147616,USB-C Charging Cable,1,11.95,01/23/19 20:21,"548 Meadow St, Portland, OR 97035" +147617,AA Batteries (4-pack),1,3.84,01/24/19 22:57,"475 7th St, Austin, TX 73301" +147618,ThinkPad Laptop,1,999.99,01/16/19 00:23,"942 9th St, Seattle, WA 98101" +147619,USB-C Charging Cable,1,11.95,01/30/19 08:56,"96 Madison St, Los Angeles, CA 90001" +147619,Apple Airpods Headphones,1,150,01/30/19 08:56,"96 Madison St, Los Angeles, CA 90001" +147620,Lightning Charging Cable,1,14.95,01/10/19 10:31,"145 Spruce St, Seattle, WA 98101" +147621,27in FHD Monitor,1,149.99,01/17/19 11:42,"389 Adams St, Portland, ME 04101" +147622,Lightning Charging Cable,1,14.95,01/31/19 02:03,"651 Madison St, San Francisco, CA 94016" +147623,Apple Airpods Headphones,1,150,01/20/19 07:55,"110 Cedar St, San Francisco, CA 94016" +147624,AA Batteries (4-pack),2,3.84,01/07/19 20:05,"166 5th St, Los Angeles, CA 90001" +147625,ThinkPad Laptop,1,999.99,01/17/19 21:09,"367 West St, New York City, NY 10001" +147626,Wired Headphones,1,11.99,01/31/19 20:58,"874 North St, San Francisco, CA 94016" +147627,ThinkPad Laptop,1,999.99,01/28/19 14:08,"555 Maple St, San Francisco, CA 94016" +147628,Wired Headphones,1,11.99,01/17/19 12:42,"24 Chestnut St, Seattle, WA 98101" +147629,27in FHD Monitor,1,149.99,01/29/19 20:35,"515 Meadow St, San Francisco, CA 94016" +147629,27in 4K Gaming Monitor,1,389.99,01/29/19 20:35,"515 Meadow St, San Francisco, CA 94016" +147630,USB-C Charging Cable,1,11.95,01/08/19 12:37,"360 Elm St, San Francisco, CA 94016" +147631,Google Phone,1,600,01/20/19 14:21,"910 Willow St, New York City, NY 10001" +147632,USB-C Charging Cable,1,11.95,01/09/19 18:43,"282 Ridge St, Los Angeles, CA 90001" +147633,Google Phone,1,600,01/25/19 20:51,"686 Spruce St, San Francisco, CA 94016" +147633,Wired Headphones,1,11.99,01/25/19 20:51,"686 Spruce St, San Francisco, CA 94016" +147634,Macbook Pro Laptop,1,1700,01/19/19 06:22,"656 12th St, San Francisco, CA 94016" +147635,Apple Airpods Headphones,1,150,01/23/19 13:18,"937 Adams St, Atlanta, GA 30301" +147636,AA Batteries (4-pack),1,3.84,01/22/19 13:40,"682 Center St, San Francisco, CA 94016" +147637,AA Batteries (4-pack),1,3.84,01/05/19 14:35,"361 Highland St, Los Angeles, CA 90001" +147638,Bose SoundSport Headphones,1,99.99,01/05/19 19:42,"266 2nd St, San Francisco, CA 94016" +147639,Apple Airpods Headphones,1,150,01/17/19 00:11,"933 13th St, Boston, MA 02215" +147640,Macbook Pro Laptop,1,1700,01/28/19 12:34,"100 1st St, Boston, MA 02215" +147641,Flatscreen TV,1,300,01/07/19 14:17,"960 Cherry St, New York City, NY 10001" +147642,27in FHD Monitor,1,149.99,01/11/19 18:45,"753 Park St, Atlanta, GA 30301" +147643,USB-C Charging Cable,2,11.95,01/08/19 21:15,"941 Walnut St, Austin, TX 73301" +147644,USB-C Charging Cable,1,11.95,01/12/19 11:43,"205 Willow St, Seattle, WA 98101" +147645,AA Batteries (4-pack),1,3.84,01/28/19 09:18,"415 Pine St, Los Angeles, CA 90001" +147646,iPhone,1,700,01/26/19 18:38,"746 Sunset St, Austin, TX 73301" +147647,Apple Airpods Headphones,1,150,01/25/19 17:22,"954 Lakeview St, Portland, OR 97035" +147648,USB-C Charging Cable,1,11.95,01/15/19 18:25,"72 Highland St, San Francisco, CA 94016" +147648,AA Batteries (4-pack),1,3.84,01/15/19 18:25,"72 Highland St, San Francisco, CA 94016" +147649,iPhone,1,700,01/10/19 14:24,"17 River St, San Francisco, CA 94016" +147650,USB-C Charging Cable,1,11.95,01/15/19 15:05,"281 10th St, New York City, NY 10001" +147651,34in Ultrawide Monitor,1,379.99,01/29/19 09:26,"89 2nd St, Seattle, WA 98101" +147652,iPhone,1,700,01/20/19 10:42,"362 9th St, Los Angeles, CA 90001" +147653,AA Batteries (4-pack),1,3.84,01/18/19 12:07,"628 Pine St, New York City, NY 10001" +147654,Apple Airpods Headphones,1,150,01/31/19 08:15,"831 Jefferson St, San Francisco, CA 94016" +147655,27in FHD Monitor,1,149.99,01/30/19 17:44,"569 Park St, New York City, NY 10001" +147656,Flatscreen TV,1,300,01/22/19 14:55,"824 Lakeview St, New York City, NY 10001" +147657,Wired Headphones,1,11.99,01/14/19 16:47,"684 12th St, Austin, TX 73301" +147658,AA Batteries (4-pack),1,3.84,01/28/19 20:38,"886 6th St, Boston, MA 02215" +147659,Lightning Charging Cable,1,14.95,01/19/19 15:31,"107 Cherry St, Los Angeles, CA 90001" +147660,20in Monitor,1,109.99,01/10/19 21:47,"882 Walnut St, Boston, MA 02215" +147661,Lightning Charging Cable,1,14.95,01/12/19 15:30,"639 West St, San Francisco, CA 94016" +147662,AA Batteries (4-pack),1,3.84,01/20/19 09:24,"696 River St, New York City, NY 10001" +147663,Bose SoundSport Headphones,1,99.99,01/08/19 00:01,"17 Hill St, Atlanta, GA 30301" +147664,34in Ultrawide Monitor,1,379.99,01/18/19 21:41,"776 Jefferson St, San Francisco, CA 94016" +147665,USB-C Charging Cable,1,11.95,01/26/19 12:58,"205 Wilson St, Los Angeles, CA 90001" +147666,USB-C Charging Cable,1,11.95,01/23/19 17:45,"316 Lake St, San Francisco, CA 94016" +147667,27in 4K Gaming Monitor,1,389.99,01/12/19 16:15,"937 Cedar St, Austin, TX 73301" +147668,Macbook Pro Laptop,1,1700,01/30/19 06:41,"735 Main St, Seattle, WA 98101" +147669,AA Batteries (4-pack),1,3.84,01/05/19 23:15,"494 Chestnut St, Portland, OR 97035" +147670,AA Batteries (4-pack),1,3.84,01/18/19 11:58,"928 Dogwood St, Portland, OR 97035" +147671,Flatscreen TV,1,300,01/04/19 16:51,"811 11th St, Dallas, TX 75001" +147672,AA Batteries (4-pack),1,3.84,01/19/19 11:35,"273 Jefferson St, Portland, OR 97035" +147673,AA Batteries (4-pack),3,3.84,01/08/19 18:04,"286 Chestnut St, San Francisco, CA 94016" +147674,Apple Airpods Headphones,1,150,01/01/19 10:47,"848 10th St, Atlanta, GA 30301" +147675,34in Ultrawide Monitor,1,379.99,01/01/19 22:34,"525 Highland St, Boston, MA 02215" +147676,Lightning Charging Cable,1,14.95,01/13/19 08:50,"644 Sunset St, Atlanta, GA 30301" +147677,AAA Batteries (4-pack),1,2.99,01/20/19 12:18,"658 Lakeview St, Portland, OR 97035" +147678,Bose SoundSport Headphones,1,99.99,01/11/19 20:47,"357 South St, Los Angeles, CA 90001" +147679,27in FHD Monitor,1,149.99,01/30/19 16:44,"703 Meadow St, Los Angeles, CA 90001" +147680,AAA Batteries (4-pack),1,2.99,01/06/19 23:12,"488 Forest St, Atlanta, GA 30301" +147681,Vareebadd Phone,1,400,01/08/19 22:12,"60 14th St, Seattle, WA 98101" +147682,34in Ultrawide Monitor,1,379.99,01/09/19 13:20,"766 10th St, San Francisco, CA 94016" +147683,Apple Airpods Headphones,1,150,01/27/19 09:12,"905 Jefferson St, San Francisco, CA 94016" +147684,AAA Batteries (4-pack),1,2.99,01/04/19 10:28,"8 Lakeview St, New York City, NY 10001" +147685,USB-C Charging Cable,1,11.95,01/25/19 17:39,"423 Maple St, San Francisco, CA 94016" +147686,AAA Batteries (4-pack),1,2.99,01/26/19 18:37,"704 12th St, New York City, NY 10001" +147687,Wired Headphones,1,11.99,01/30/19 12:14,"668 5th St, Seattle, WA 98101" +147688,Vareebadd Phone,1,400,01/10/19 16:53,"272 Johnson St, Los Angeles, CA 90001" +147689,iPhone,1,700,01/10/19 18:48,"273 8th St, Atlanta, GA 30301" +147690,Wired Headphones,1,11.99,01/11/19 14:52,"563 Sunset St, San Francisco, CA 94016" +147691,AAA Batteries (4-pack),1,2.99,01/27/19 23:56,"430 Elm St, Dallas, TX 75001" +147692,AAA Batteries (4-pack),1,2.99,01/01/19 16:28,"350 14th St, San Francisco, CA 94016" +147693,USB-C Charging Cable,1,11.95,01/26/19 16:39,"623 11th St, Boston, MA 02215" +147694,AA Batteries (4-pack),1,3.84,01/30/19 22:58,"302 Elm St, Los Angeles, CA 90001" +147695,Apple Airpods Headphones,1,150,01/01/19 13:17,"68 Lakeview St, Portland, OR 97035" +147696,34in Ultrawide Monitor,1,379.99,01/04/19 22:58,"45 Cedar St, Portland, OR 97035" +147697,AA Batteries (4-pack),1,3.84,01/24/19 12:31,"351 12th St, Atlanta, GA 30301" +147698,Flatscreen TV,1,300,01/18/19 16:39,"213 Main St, San Francisco, CA 94016" +147699,AAA Batteries (4-pack),1,2.99,01/17/19 10:06,"930 Lake St, Los Angeles, CA 90001" +147700,Lightning Charging Cable,1,14.95,01/05/19 09:42,"257 Center St, Dallas, TX 75001" +147701,Lightning Charging Cable,2,14.95,01/17/19 13:04,"837 Church St, Seattle, WA 98101" +147702,Wired Headphones,1,11.99,01/19/19 23:41,"979 Pine St, New York City, NY 10001" +147703,Lightning Charging Cable,1,14.95,01/14/19 23:06,"196 Forest St, New York City, NY 10001" +147704,AA Batteries (4-pack),1,3.84,01/22/19 23:45,"198 Cedar St, San Francisco, CA 94016" +147705,27in FHD Monitor,1,149.99,01/13/19 10:42,"108 Cherry St, Seattle, WA 98101" +147706,20in Monitor,1,109.99,01/19/19 13:07,"307 6th St, New York City, NY 10001" +147707,Apple Airpods Headphones,1,150,01/15/19 08:02,"828 Spruce St, San Francisco, CA 94016" +147708,USB-C Charging Cable,1,11.95,01/14/19 07:45,"741 Madison St, Seattle, WA 98101" +147709,AA Batteries (4-pack),3,3.84,01/18/19 19:12,"449 6th St, Dallas, TX 75001" +147710,Lightning Charging Cable,1,14.95,01/31/19 00:19,"577 Elm St, San Francisco, CA 94016" +147711,Lightning Charging Cable,1,14.95,01/30/19 17:11,"871 Wilson St, San Francisco, CA 94016" +147712,20in Monitor,1,109.99,01/20/19 00:24,"106 Elm St, Dallas, TX 75001" +147713,Flatscreen TV,1,300,01/22/19 11:47,"115 Wilson St, Los Angeles, CA 90001" +147714,AAA Batteries (4-pack),1,2.99,01/20/19 22:52,"239 Park St, New York City, NY 10001" +147715,iPhone,1,700,01/19/19 22:19,"521 Jefferson St, Los Angeles, CA 90001" +147716,Wired Headphones,1,11.99,01/23/19 13:53,"840 5th St, San Francisco, CA 94016" +147717,AAA Batteries (4-pack),3,2.99,01/21/19 08:07,"214 Maple St, Atlanta, GA 30301" +147718,27in FHD Monitor,1,149.99,01/04/19 21:09,"276 Center St, Boston, MA 02215" +147719,Apple Airpods Headphones,1,150,01/15/19 23:41,"792 Johnson St, Boston, MA 02215" +147720,Bose SoundSport Headphones,1,99.99,01/07/19 18:41,"304 Wilson St, Los Angeles, CA 90001" +147721,Bose SoundSport Headphones,1,99.99,01/15/19 17:40,"945 Adams St, Atlanta, GA 30301" +147722,USB-C Charging Cable,1,11.95,01/19/19 10:15,"334 Sunset St, Los Angeles, CA 90001" +147723,iPhone,1,700,01/13/19 01:23,"790 13th St, New York City, NY 10001" +147724,AA Batteries (4-pack),2,3.84,01/13/19 14:03,"522 North St, New York City, NY 10001" +147725,Apple Airpods Headphones,1,150,01/08/19 08:35,"143 Spruce St, Boston, MA 02215" +147726,Lightning Charging Cable,1,14.95,01/20/19 07:26,"130 Hickory St, Seattle, WA 98101" +147727,Apple Airpods Headphones,1,150,01/22/19 10:21,"164 Main St, Dallas, TX 75001" +147728,USB-C Charging Cable,1,11.95,01/05/19 22:51,"460 Dogwood St, Austin, TX 73301" +147729,Bose SoundSport Headphones,1,99.99,01/31/19 21:16,"770 Wilson St, San Francisco, CA 94016" +147730,27in FHD Monitor,1,149.99,01/30/19 15:52,"118 Jefferson St, San Francisco, CA 94016" +147731,iPhone,1,700,01/24/19 12:17,"285 Church St, New York City, NY 10001" +147732,Lightning Charging Cable,1,14.95,01/22/19 03:21,"852 Sunset St, San Francisco, CA 94016" +147733,34in Ultrawide Monitor,1,379.99,01/09/19 07:35,"898 Cedar St, San Francisco, CA 94016" +147734,Apple Airpods Headphones,1,150,01/23/19 12:10,"227 West St, Dallas, TX 75001" +147735,27in FHD Monitor,1,149.99,01/06/19 18:47,"621 9th St, Atlanta, GA 30301" +147736,Apple Airpods Headphones,1,150,01/05/19 19:58,"362 Church St, San Francisco, CA 94016" +147737,AAA Batteries (4-pack),1,2.99,01/05/19 18:04,"691 Cedar St, Los Angeles, CA 90001" +147738,34in Ultrawide Monitor,1,379.99,01/23/19 14:30,"240 Meadow St, New York City, NY 10001" +147739,AAA Batteries (4-pack),2,2.99,01/18/19 22:04,"99 Jefferson St, Los Angeles, CA 90001" +147740,AAA Batteries (4-pack),1,2.99,01/07/19 21:45,"551 6th St, San Francisco, CA 94016" +147741,27in FHD Monitor,1,149.99,01/31/19 14:16,"214 Elm St, Portland, OR 97035" +147742,Bose SoundSport Headphones,1,99.99,01/30/19 06:54,"401 Lakeview St, Seattle, WA 98101" +147743,Flatscreen TV,1,300,01/08/19 13:46,"500 Jefferson St, San Francisco, CA 94016" +147744,Lightning Charging Cable,1,14.95,01/25/19 16:32,"394 Washington St, Atlanta, GA 30301" +147745,Bose SoundSport Headphones,1,99.99,01/15/19 13:36,"210 Adams St, Atlanta, GA 30301" +147746,Wired Headphones,1,11.99,01/14/19 15:32,"968 Main St, Austin, TX 73301" +147747,27in FHD Monitor,1,149.99,01/13/19 17:31,"455 Walnut St, Portland, OR 97035" +147748,USB-C Charging Cable,1,11.95,01/09/19 11:12,"776 Meadow St, Austin, TX 73301" +147749,27in FHD Monitor,1,149.99,01/29/19 11:05,"781 Elm St, Atlanta, GA 30301" +147750,AA Batteries (4-pack),1,3.84,01/05/19 11:39,"22 Chestnut St, Atlanta, GA 30301" +147751,Bose SoundSport Headphones,1,99.99,01/11/19 23:57,"464 8th St, Portland, OR 97035" +147752,AAA Batteries (4-pack),1,2.99,01/27/19 13:08,"39 Church St, San Francisco, CA 94016" +147753,Apple Airpods Headphones,1,150,01/15/19 19:17,"286 Church St, San Francisco, CA 94016" +147754,AAA Batteries (4-pack),1,2.99,01/25/19 18:22,"625 Lakeview St, Los Angeles, CA 90001" +147755,ThinkPad Laptop,1,999.99,01/12/19 21:10,"127 13th St, Austin, TX 73301" +147756,AA Batteries (4-pack),1,3.84,01/28/19 20:40,"641 2nd St, San Francisco, CA 94016" +147757,Flatscreen TV,1,300,01/24/19 00:22,"319 Jackson St, Atlanta, GA 30301" +147758,Lightning Charging Cable,1,14.95,01/17/19 19:18,"629 Willow St, San Francisco, CA 94016" +147759,Flatscreen TV,1,300,01/17/19 23:15,"400 Wilson St, Atlanta, GA 30301" +147760,27in 4K Gaming Monitor,1,389.99,01/05/19 00:56,"996 Forest St, Portland, OR 97035" +147761,AA Batteries (4-pack),1,3.84,01/21/19 12:18,"249 Willow St, San Francisco, CA 94016" +147762,USB-C Charging Cable,1,11.95,01/26/19 12:10,"83 11th St, Atlanta, GA 30301" +147763,AA Batteries (4-pack),1,3.84,01/11/19 03:03,"95 Adams St, San Francisco, CA 94016" +147764,Wired Headphones,1,11.99,01/16/19 17:04,"440 Park St, Los Angeles, CA 90001" +147765,ThinkPad Laptop,1,999.99,01/13/19 19:10,"290 Church St, Austin, TX 73301" +147766,AAA Batteries (4-pack),1,2.99,01/23/19 23:47,"893 11th St, New York City, NY 10001" +147767,Flatscreen TV,1,300,01/28/19 17:10,"51 4th St, New York City, NY 10001" +147768,Macbook Pro Laptop,1,1700,01/03/19 11:36,"150 Adams St, Austin, TX 73301" +,,,,, +147769,AAA Batteries (4-pack),1,2.99,01/31/19 13:22,"386 Jefferson St, Los Angeles, CA 90001" +147770,USB-C Charging Cable,2,11.95,01/31/19 10:36,"853 Meadow St, Los Angeles, CA 90001" +147771,Apple Airpods Headphones,1,150,01/06/19 01:18,"240 1st St, Los Angeles, CA 90001" +147772,iPhone,1,700,01/29/19 02:01,"173 1st St, San Francisco, CA 94016" +147773,USB-C Charging Cable,1,11.95,01/03/19 08:20,"780 Highland St, Dallas, TX 75001" +147774,AAA Batteries (4-pack),1,2.99,01/13/19 09:49,"721 Jackson St, San Francisco, CA 94016" +147775,AAA Batteries (4-pack),2,2.99,01/14/19 01:25,"74 4th St, Atlanta, GA 30301" +147776,27in 4K Gaming Monitor,1,389.99,01/08/19 16:05,"209 5th St, New York City, NY 10001" +147777,AAA Batteries (4-pack),3,2.99,01/24/19 21:25,"178 Elm St, Portland, ME 04101" +147778,Apple Airpods Headphones,1,150,01/06/19 16:21,"367 Hill St, Dallas, TX 75001" +147779,Flatscreen TV,1,300,01/08/19 18:29,"118 Elm St, Boston, MA 02215" +147780,Bose SoundSport Headphones,1,99.99,01/04/19 13:56,"629 14th St, Los Angeles, CA 90001" +147781,USB-C Charging Cable,1,11.95,01/03/19 05:13,"245 River St, San Francisco, CA 94016" +147782,AA Batteries (4-pack),1,3.84,01/15/19 00:00,"182 West St, Boston, MA 02215" +147783,Wired Headphones,1,11.99,01/21/19 09:51,"810 Church St, Los Angeles, CA 90001" +147784,Lightning Charging Cable,1,14.95,01/01/19 22:35,"55 8th St, San Francisco, CA 94016" +147785,AA Batteries (4-pack),1,3.84,01/15/19 22:35,"367 7th St, Austin, TX 73301" +147786,iPhone,1,700,01/14/19 17:35,"83 Adams St, San Francisco, CA 94016" +147787,Apple Airpods Headphones,1,150,01/09/19 15:03,"413 Johnson St, San Francisco, CA 94016" +147788,AAA Batteries (4-pack),1,2.99,01/12/19 17:25,"777 Elm St, Los Angeles, CA 90001" +147789,27in 4K Gaming Monitor,1,389.99,01/07/19 14:42,"984 Main St, Seattle, WA 98101" +147790,AAA Batteries (4-pack),1,2.99,01/24/19 09:02,"555 Cherry St, San Francisco, CA 94016" +147791,20in Monitor,1,109.99,01/05/19 18:47,"808 River St, Dallas, TX 75001" +147792,USB-C Charging Cable,1,11.95,01/28/19 21:19,"197 2nd St, New York City, NY 10001" +147793,AAA Batteries (4-pack),1,2.99,01/09/19 17:01,"675 Cherry St, Portland, OR 97035" +147794,iPhone,1,700,01/05/19 10:41,"70 Lincoln St, Austin, TX 73301" +147795,Lightning Charging Cable,1,14.95,01/13/19 08:52,"709 Wilson St, Atlanta, GA 30301" +147796,AAA Batteries (4-pack),1,2.99,01/19/19 11:31,"645 12th St, Dallas, TX 75001" +147797,USB-C Charging Cable,1,11.95,01/13/19 13:19,"467 Lake St, Los Angeles, CA 90001" +147798,27in 4K Gaming Monitor,1,389.99,01/07/19 22:08,"944 Hickory St, Boston, MA 02215" +147799,Macbook Pro Laptop,1,1700,01/31/19 17:51,"754 2nd St, Portland, ME 04101" +147800,USB-C Charging Cable,1,11.95,01/17/19 20:58,"375 Jackson St, San Francisco, CA 94016" +147801,USB-C Charging Cable,1,11.95,01/18/19 16:51,"880 Elm St, Portland, OR 97035" +147802,ThinkPad Laptop,1,999.99,01/11/19 14:51,"642 8th St, Austin, TX 73301" +147803,Wired Headphones,1,11.99,01/02/19 14:45,"501 West St, Portland, OR 97035" +147804,AA Batteries (4-pack),1,3.84,01/31/19 18:36,"553 Forest St, San Francisco, CA 94016" +147805,Wired Headphones,1,11.99,01/02/19 08:21,"922 Sunset St, Dallas, TX 75001" +147806,Bose SoundSport Headphones,1,99.99,01/25/19 07:57,"976 Washington St, New York City, NY 10001" +147807,ThinkPad Laptop,1,999.99,01/29/19 18:57,"416 7th St, Seattle, WA 98101" +147808,ThinkPad Laptop,1,999.99,01/04/19 21:36,"562 2nd St, Los Angeles, CA 90001" +147809,iPhone,1,700,01/17/19 17:02,"665 5th St, Atlanta, GA 30301" +147810,iPhone,1,700,01/09/19 17:24,"272 Sunset St, San Francisco, CA 94016" +147811,Lightning Charging Cable,1,14.95,01/02/19 13:29,"180 Johnson St, Portland, OR 97035" +147812,Apple Airpods Headphones,1,150,01/09/19 20:58,"912 Pine St, Los Angeles, CA 90001" +147813,34in Ultrawide Monitor,1,379.99,01/04/19 15:00,"579 Hickory St, Los Angeles, CA 90001" +147814,Lightning Charging Cable,1,14.95,01/23/19 23:03,"142 Spruce St, San Francisco, CA 94016" +147815,27in FHD Monitor,1,149.99,01/07/19 17:31,"252 Walnut St, Austin, TX 73301" +147816,Lightning Charging Cable,1,14.95,01/24/19 08:47,"477 8th St, Boston, MA 02215" +147817,Wired Headphones,1,11.99,01/13/19 18:44,"828 Lakeview St, Austin, TX 73301" +147818,Macbook Pro Laptop,1,1700,01/14/19 19:35,"404 Lincoln St, Boston, MA 02215" +147819,Lightning Charging Cable,1,14.95,01/10/19 08:04,"948 Washington St, Boston, MA 02215" +147820,27in 4K Gaming Monitor,1,389.99,01/09/19 23:43,"499 8th St, Dallas, TX 75001" +147821,AA Batteries (4-pack),1,3.84,01/18/19 12:33,"169 Park St, Boston, MA 02215" +147822,Wired Headphones,1,11.99,01/08/19 13:07,"302 9th St, Los Angeles, CA 90001" +147823,Bose SoundSport Headphones,1,99.99,01/19/19 15:48,"972 Cherry St, Los Angeles, CA 90001" +147824,AAA Batteries (4-pack),1,2.99,01/16/19 12:08,"476 13th St, Atlanta, GA 30301" +147825,27in FHD Monitor,1,149.99,01/14/19 18:09,"973 11th St, San Francisco, CA 94016" +147826,Apple Airpods Headphones,1,150,01/28/19 09:42,"771 Jackson St, Atlanta, GA 30301" +147827,Lightning Charging Cable,1,14.95,01/10/19 12:35,"144 Lakeview St, Los Angeles, CA 90001" +147828,Flatscreen TV,1,300,01/15/19 15:12,"515 Adams St, Dallas, TX 75001" +147829,20in Monitor,1,109.99,01/02/19 23:10,"276 Highland St, Portland, OR 97035" +147830,iPhone,1,700,01/04/19 19:51,"241 Lincoln St, Seattle, WA 98101" +147831,Google Phone,1,600,01/03/19 18:06,"922 Meadow St, New York City, NY 10001" +147831,Wired Headphones,1,11.99,01/03/19 18:06,"922 Meadow St, New York City, NY 10001" +147832,AAA Batteries (4-pack),1,2.99,01/16/19 16:34,"381 Adams St, Seattle, WA 98101" +147833,34in Ultrawide Monitor,1,379.99,01/29/19 20:23,"811 Ridge St, San Francisco, CA 94016" +147834,Bose SoundSport Headphones,1,99.99,01/08/19 10:17,"701 14th St, Los Angeles, CA 90001" +147835,AAA Batteries (4-pack),1,2.99,01/17/19 18:33,"236 West St, Boston, MA 02215" +147836,27in 4K Gaming Monitor,1,389.99,01/25/19 15:41,"574 Johnson St, Atlanta, GA 30301" +147837,Google Phone,1,600,01/20/19 10:11,"443 Hickory St, Seattle, WA 98101" +147838,Lightning Charging Cable,1,14.95,01/13/19 18:15,"547 Madison St, Seattle, WA 98101" +147839,AA Batteries (4-pack),1,3.84,01/22/19 10:05,"544 Jefferson St, Seattle, WA 98101" +147840,Lightning Charging Cable,1,14.95,01/07/19 16:59,"974 River St, New York City, NY 10001" +147841,Bose SoundSport Headphones,1,99.99,01/31/19 15:03,"184 Hill St, Dallas, TX 75001" +147842,AAA Batteries (4-pack),3,2.99,01/11/19 12:42,"158 6th St, Dallas, TX 75001" +147843,USB-C Charging Cable,2,11.95,01/18/19 17:13,"277 Hickory St, Los Angeles, CA 90001" +147844,USB-C Charging Cable,1,11.95,01/06/19 08:56,"313 Highland St, Boston, MA 02215" +147845,AA Batteries (4-pack),2,3.84,01/01/19 09:14,"432 14th St, New York City, NY 10001" +147846,ThinkPad Laptop,1,999.99,01/23/19 12:16,"763 10th St, San Francisco, CA 94016" +147847,Wired Headphones,1,11.99,01/13/19 12:13,"236 Park St, Boston, MA 02215" +147848,Wired Headphones,1,11.99,01/21/19 20:06,"879 Highland St, San Francisco, CA 94016" +147849,Apple Airpods Headphones,1,150,01/04/19 21:27,"323 Maple St, Boston, MA 02215" +147850,Lightning Charging Cable,1,14.95,01/09/19 07:26,"425 Dogwood St, Dallas, TX 75001" +147851,iPhone,1,700,01/13/19 00:03,"335 7th St, Austin, TX 73301" +147852,Lightning Charging Cable,1,14.95,01/21/19 18:17,"3 Cedar St, Boston, MA 02215" +147853,Bose SoundSport Headphones,1,99.99,01/23/19 22:49,"371 Jefferson St, San Francisco, CA 94016" +147854,AA Batteries (4-pack),1,3.84,01/24/19 05:43,"197 Church St, San Francisco, CA 94016" +147855,Lightning Charging Cable,1,14.95,01/04/19 16:52,"85 Meadow St, San Francisco, CA 94016" +147856,20in Monitor,1,109.99,01/08/19 22:31,"790 14th St, San Francisco, CA 94016" +147857,Bose SoundSport Headphones,1,99.99,01/17/19 07:33,"106 5th St, Los Angeles, CA 90001" +147858,Google Phone,1,600,01/30/19 12:16,"621 4th St, San Francisco, CA 94016" +147859,Apple Airpods Headphones,1,150,01/03/19 22:30,"70 Park St, Los Angeles, CA 90001" +147860,Apple Airpods Headphones,1,150,01/09/19 09:50,"160 13th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +147861,Lightning Charging Cable,1,14.95,01/09/19 21:45,"35 5th St, Los Angeles, CA 90001" +147862,34in Ultrawide Monitor,1,379.99,01/15/19 05:05,"924 Adams St, San Francisco, CA 94016" +147863,ThinkPad Laptop,1,999.99,01/02/19 15:07,"199 Meadow St, Boston, MA 02215" +147864,Wired Headphones,2,11.99,01/08/19 11:03,"878 Main St, San Francisco, CA 94016" +147865,Lightning Charging Cable,1,14.95,01/06/19 23:10,"238 Center St, Los Angeles, CA 90001" +147866,Apple Airpods Headphones,1,150,01/22/19 10:29,"921 River St, Atlanta, GA 30301" +147867,USB-C Charging Cable,1,11.95,01/31/19 11:51,"56 4th St, Atlanta, GA 30301" +147868,Apple Airpods Headphones,1,150,01/01/19 17:45,"390 Hickory St, Boston, MA 02215" +147869,iPhone,1,700,01/06/19 19:24,"2 Highland St, Los Angeles, CA 90001" +147869,Lightning Charging Cable,1,14.95,01/06/19 19:24,"2 Highland St, Los Angeles, CA 90001" +147870,USB-C Charging Cable,1,11.95,01/12/19 19:00,"59 Jackson St, New York City, NY 10001" +147871,AAA Batteries (4-pack),2,2.99,01/20/19 19:29,"775 Cedar St, Atlanta, GA 30301" +147872,Apple Airpods Headphones,1,150,01/17/19 13:52,"106 North St, Atlanta, GA 30301" +147873,Bose SoundSport Headphones,1,99.99,01/26/19 13:46,"106 Washington St, San Francisco, CA 94016" +147874,USB-C Charging Cable,1,11.95,01/31/19 11:15,"7 West St, Los Angeles, CA 90001" +147875,Macbook Pro Laptop,1,1700,01/12/19 13:53,"947 6th St, New York City, NY 10001" +147876,Lightning Charging Cable,1,14.95,01/24/19 16:34,"654 Maple St, San Francisco, CA 94016" +147877,20in Monitor,1,109.99,01/26/19 00:49,"355 West St, Seattle, WA 98101" +147878,AAA Batteries (4-pack),1,2.99,01/19/19 08:40,"535 Maple St, Boston, MA 02215" +147879,Google Phone,1,600,01/17/19 21:02,"481 Adams St, Atlanta, GA 30301" +147880,Lightning Charging Cable,1,14.95,01/29/19 13:53,"887 5th St, New York City, NY 10001" +147881,AA Batteries (4-pack),1,3.84,01/19/19 16:44,"488 Lincoln St, Boston, MA 02215" +147882,Vareebadd Phone,1,400,01/05/19 22:33,"295 14th St, Los Angeles, CA 90001" +147882,USB-C Charging Cable,1,11.95,01/05/19 22:33,"295 14th St, Los Angeles, CA 90001" +147883,USB-C Charging Cable,1,11.95,01/18/19 22:30,"688 Highland St, New York City, NY 10001" +147884,Wired Headphones,1,11.99,01/24/19 23:30,"356 Highland St, Atlanta, GA 30301" +147885,AAA Batteries (4-pack),2,2.99,01/12/19 14:58,"564 13th St, Portland, OR 97035" +147886,27in FHD Monitor,1,149.99,01/02/19 18:09,"800 Jefferson St, Boston, MA 02215" +147887,AAA Batteries (4-pack),3,2.99,01/17/19 13:58,"3 Forest St, New York City, NY 10001" +147888,AA Batteries (4-pack),4,3.84,01/20/19 21:56,"724 Lakeview St, Seattle, WA 98101" +147889,Bose SoundSport Headphones,1,99.99,01/03/19 18:55,"546 Hickory St, Seattle, WA 98101" +147890,34in Ultrawide Monitor,1,379.99,01/04/19 11:27,"927 Elm St, Seattle, WA 98101" +147891,Lightning Charging Cable,1,14.95,01/26/19 16:28,"930 Pine St, Seattle, WA 98101" +147892,27in 4K Gaming Monitor,1,389.99,01/24/19 21:58,"640 Willow St, Boston, MA 02215" +147893,Bose SoundSport Headphones,1,99.99,01/17/19 13:27,"972 Willow St, New York City, NY 10001" +147894,Google Phone,1,600,01/24/19 10:51,"622 Jackson St, Seattle, WA 98101" +147895,iPhone,1,700,01/15/19 07:23,"329 Cherry St, Atlanta, GA 30301" +147896,27in FHD Monitor,1,149.99,01/27/19 14:53,"521 Church St, Seattle, WA 98101" +147897,27in FHD Monitor,1,149.99,01/28/19 22:03,"239 Park St, Dallas, TX 75001" +147898,Apple Airpods Headphones,1,150,01/30/19 20:37,"655 Meadow St, Boston, MA 02215" +147899,Bose SoundSport Headphones,1,99.99,01/15/19 12:04,"815 2nd St, San Francisco, CA 94016" +147900,iPhone,1,700,01/07/19 16:16,"908 Chestnut St, Los Angeles, CA 90001" +147900,Lightning Charging Cable,1,14.95,01/07/19 16:16,"908 Chestnut St, Los Angeles, CA 90001" +147901,Lightning Charging Cable,1,14.95,01/19/19 12:25,"548 Sunset St, Portland, OR 97035" +147902,Lightning Charging Cable,1,14.95,01/30/19 14:23,"24 Hill St, New York City, NY 10001" +147903,27in FHD Monitor,1,149.99,01/07/19 13:02,"305 Forest St, San Francisco, CA 94016" +147904,Bose SoundSport Headphones,1,99.99,01/02/19 14:43,"681 5th St, Boston, MA 02215" +147904,Bose SoundSport Headphones,1,99.99,01/02/19 14:43,"681 5th St, Boston, MA 02215" +147905,AAA Batteries (4-pack),2,2.99,01/25/19 11:49,"972 River St, Los Angeles, CA 90001" +147906,Bose SoundSport Headphones,1,99.99,01/28/19 18:03,"779 7th St, Los Angeles, CA 90001" +147907,Lightning Charging Cable,1,14.95,01/11/19 18:05,"843 Dogwood St, Los Angeles, CA 90001" +147908,USB-C Charging Cable,1,11.95,01/11/19 10:02,"521 Cedar St, Seattle, WA 98101" +147909,Bose SoundSport Headphones,1,99.99,01/14/19 12:22,"633 Adams St, San Francisco, CA 94016" +147910,USB-C Charging Cable,1,11.95,01/01/19 19:05,"11 Madison St, Dallas, TX 75001" +147910,Macbook Pro Laptop,1,1700,01/01/19 19:05,"11 Madison St, Dallas, TX 75001" +147911,Bose SoundSport Headphones,1,99.99,01/19/19 10:06,"717 Church St, Dallas, TX 75001" +147912,USB-C Charging Cable,1,11.95,01/29/19 12:07,"27 Madison St, Boston, MA 02215" +147912,Wired Headphones,2,11.99,01/29/19 12:07,"27 Madison St, Boston, MA 02215" +147913,Flatscreen TV,1,300,01/08/19 06:48,"813 Lincoln St, San Francisco, CA 94016" +147914,Wired Headphones,1,11.99,01/17/19 16:46,"419 Lakeview St, Portland, OR 97035" +147915,LG Washing Machine,1,600.0,01/13/19 10:12,"456 2nd St, Atlanta, GA 30301" +147916,USB-C Charging Cable,1,11.95,01/18/19 11:01,"529 West St, Los Angeles, CA 90001" +147917,Apple Airpods Headphones,1,150,01/04/19 10:19,"931 Jefferson St, Los Angeles, CA 90001" +147918,27in FHD Monitor,1,149.99,01/23/19 08:07,"192 Cedar St, Los Angeles, CA 90001" +147919,USB-C Charging Cable,1,11.95,01/11/19 11:25,"616 Pine St, Dallas, TX 75001" +147920,Apple Airpods Headphones,1,150,01/01/19 07:51,"153 Willow St, San Francisco, CA 94016" +147921,Apple Airpods Headphones,1,150,01/28/19 17:50,"393 Jefferson St, Austin, TX 73301" +147922,Bose SoundSport Headphones,1,99.99,01/15/19 12:55,"77 13th St, Portland, OR 97035" +147923,Wired Headphones,1,11.99,01/22/19 15:32,"257 Park St, Portland, ME 04101" +147924,Apple Airpods Headphones,1,150,01/06/19 20:13,"979 Walnut St, Seattle, WA 98101" +147925,AAA Batteries (4-pack),1,2.99,01/12/19 09:42,"464 Johnson St, San Francisco, CA 94016" +147926,ThinkPad Laptop,1,999.99,01/30/19 13:48,"911 Walnut St, San Francisco, CA 94016" +147927,Lightning Charging Cable,1,14.95,01/08/19 09:11,"407 Dogwood St, New York City, NY 10001" +147928,27in 4K Gaming Monitor,1,389.99,01/27/19 14:23,"648 Spruce St, Atlanta, GA 30301" +147929,34in Ultrawide Monitor,1,379.99,01/21/19 21:46,"443 Pine St, San Francisco, CA 94016" +147930,27in 4K Gaming Monitor,1,389.99,01/29/19 19:31,"144 9th St, Atlanta, GA 30301" +147931,Lightning Charging Cable,1,14.95,01/16/19 13:29,"647 Cherry St, Dallas, TX 75001" +147932,AAA Batteries (4-pack),1,2.99,01/27/19 16:59,"644 5th St, Portland, OR 97035" +147933,Lightning Charging Cable,1,14.95,01/23/19 22:29,"564 Wilson St, San Francisco, CA 94016" +147934,Google Phone,1,600,01/26/19 15:37,"529 10th St, Dallas, TX 75001" +147934,Wired Headphones,1,11.99,01/26/19 15:37,"529 10th St, Dallas, TX 75001" +147935,27in 4K Gaming Monitor,1,389.99,01/11/19 12:59,"738 Forest St, Boston, MA 02215" +147936,USB-C Charging Cable,1,11.95,01/07/19 20:25,"732 13th St, New York City, NY 10001" +147937,Apple Airpods Headphones,1,150,01/19/19 16:27,"56 Meadow St, Los Angeles, CA 90001" +147938,27in FHD Monitor,1,149.99,01/26/19 21:32,"849 Cherry St, San Francisco, CA 94016" +147939,USB-C Charging Cable,1,11.95,01/03/19 08:34,"16 Elm St, San Francisco, CA 94016" +147940,Google Phone,1,600,01/26/19 19:35,"471 2nd St, Los Angeles, CA 90001" +147941,iPhone,1,700,01/02/19 23:33,"972 North St, Seattle, WA 98101" +147942,USB-C Charging Cable,1,11.95,01/05/19 12:52,"659 Walnut St, Seattle, WA 98101" +147943,AA Batteries (4-pack),1,3.84,01/13/19 20:27,"281 Spruce St, Atlanta, GA 30301" +147944,Lightning Charging Cable,1,14.95,01/31/19 23:45,"282 6th St, Dallas, TX 75001" +147945,Wired Headphones,1,11.99,01/30/19 18:56,"19 2nd St, San Francisco, CA 94016" +147946,USB-C Charging Cable,1,11.95,01/18/19 00:42,"228 11th St, Atlanta, GA 30301" +147947,Wired Headphones,1,11.99,01/08/19 08:45,"50 12th St, New York City, NY 10001" +147948,Flatscreen TV,1,300,01/06/19 22:07,"960 Ridge St, Atlanta, GA 30301" +147949,Wired Headphones,1,11.99,01/21/19 11:59,"368 11th St, New York City, NY 10001" +147950,ThinkPad Laptop,1,999.99,01/27/19 21:58,"158 Jackson St, San Francisco, CA 94016" +147951,Wired Headphones,1,11.99,01/03/19 07:37,"997 River St, Los Angeles, CA 90001" +147952,Lightning Charging Cable,1,14.95,01/04/19 18:32,"518 9th St, Los Angeles, CA 90001" +147953,USB-C Charging Cable,1,11.95,01/21/19 13:41,"528 9th St, New York City, NY 10001" +147954,20in Monitor,1,109.99,01/19/19 19:44,"526 14th St, Los Angeles, CA 90001" +147955,USB-C Charging Cable,1,11.95,01/24/19 08:12,"399 12th St, Atlanta, GA 30301" +147956,iPhone,1,700,01/11/19 23:00,"50 14th St, Portland, ME 04101" +147956,Apple Airpods Headphones,1,150,01/11/19 23:00,"50 14th St, Portland, ME 04101" +147957,Wired Headphones,1,11.99,01/06/19 18:05,"440 Dogwood St, Boston, MA 02215" +147958,Lightning Charging Cable,1,14.95,01/31/19 16:09,"641 Sunset St, Portland, OR 97035" +147959,Apple Airpods Headphones,1,150,01/10/19 20:48,"151 Elm St, Los Angeles, CA 90001" +147960,27in 4K Gaming Monitor,1,389.99,01/14/19 16:45,"174 Ridge St, Dallas, TX 75001" +147961,27in 4K Gaming Monitor,1,389.99,01/19/19 17:08,"793 Jackson St, Los Angeles, CA 90001" +147962,Flatscreen TV,1,300,01/01/19 16:36,"264 Madison St, Seattle, WA 98101" +147963,Lightning Charging Cable,1,14.95,01/27/19 11:23,"236 12th St, Boston, MA 02215" +147964,Bose SoundSport Headphones,1,99.99,01/21/19 16:39,"236 Lincoln St, Atlanta, GA 30301" +147965,AA Batteries (4-pack),1,3.84,01/16/19 15:38,"269 4th St, San Francisco, CA 94016" +147966,Lightning Charging Cable,1,14.95,01/21/19 12:37,"597 Willow St, New York City, NY 10001" +147967,27in FHD Monitor,1,149.99,01/22/19 18:37,"573 Wilson St, Portland, OR 97035" +147968,AA Batteries (4-pack),1,3.84,01/20/19 19:00,"681 Spruce St, Portland, ME 04101" +147969,AA Batteries (4-pack),1,3.84,01/21/19 19:41,"600 North St, San Francisco, CA 94016" +147970,Lightning Charging Cable,2,14.95,01/08/19 20:23,"19 Sunset St, Los Angeles, CA 90001" +147970,Bose SoundSport Headphones,1,99.99,01/08/19 20:23,"19 Sunset St, Los Angeles, CA 90001" +147971,Wired Headphones,1,11.99,01/14/19 19:13,"220 14th St, San Francisco, CA 94016" +147972,USB-C Charging Cable,1,11.95,01/24/19 19:14,"266 North St, San Francisco, CA 94016" +147973,27in FHD Monitor,1,149.99,01/30/19 19:57,"44 Madison St, Los Angeles, CA 90001" +147974,AAA Batteries (4-pack),1,2.99,01/19/19 20:50,"76 Lake St, Boston, MA 02215" +147975,Apple Airpods Headphones,1,150,01/24/19 12:05,"125 Walnut St, Dallas, TX 75001" +147976,AAA Batteries (4-pack),1,2.99,01/05/19 19:23,"818 Highland St, Dallas, TX 75001" +147977,Lightning Charging Cable,1,14.95,01/24/19 11:48,"597 Highland St, New York City, NY 10001" +147978,Lightning Charging Cable,1,14.95,01/17/19 21:47,"66 Cedar St, Portland, OR 97035" +147979,AAA Batteries (4-pack),1,2.99,01/03/19 21:32,"67 Cedar St, Austin, TX 73301" +147980,Macbook Pro Laptop,1,1700,01/05/19 17:27,"390 South St, Los Angeles, CA 90001" +147981,Google Phone,1,600,01/02/19 11:21,"94 River St, San Francisco, CA 94016" +147982,AA Batteries (4-pack),1,3.84,01/11/19 07:39,"162 Hickory St, Atlanta, GA 30301" +147982,Bose SoundSport Headphones,2,99.99,01/11/19 07:39,"162 Hickory St, Atlanta, GA 30301" +147983,iPhone,1,700,01/05/19 18:48,"528 Walnut St, San Francisco, CA 94016" +147984,AA Batteries (4-pack),1,3.84,01/23/19 14:46,"850 West St, New York City, NY 10001" +147984,27in 4K Gaming Monitor,1,389.99,01/23/19 14:46,"850 West St, New York City, NY 10001" +147985,AAA Batteries (4-pack),1,2.99,01/01/19 07:12,"932 11th St, San Francisco, CA 94016" +147986,Lightning Charging Cable,1,14.95,01/23/19 19:51,"454 10th St, Los Angeles, CA 90001" +147986,AA Batteries (4-pack),1,3.84,01/23/19 19:51,"454 10th St, Los Angeles, CA 90001" +147987,Flatscreen TV,1,300,01/14/19 14:46,"8 Lake St, Seattle, WA 98101" +147988,Bose SoundSport Headphones,1,99.99,01/28/19 10:44,"203 Chestnut St, Atlanta, GA 30301" +147989,Bose SoundSport Headphones,1,99.99,01/09/19 22:23,"947 Sunset St, Dallas, TX 75001" +147990,AAA Batteries (4-pack),3,2.99,01/09/19 11:50,"871 11th St, Portland, OR 97035" +147991,Bose SoundSport Headphones,1,99.99,01/09/19 17:39,"744 10th St, San Francisco, CA 94016" +147992,Wired Headphones,1,11.99,01/03/19 10:15,"410 Adams St, Portland, OR 97035" +147993,Lightning Charging Cable,1,14.95,01/09/19 08:01,"775 Hickory St, Los Angeles, CA 90001" +147994,Wired Headphones,1,11.99,01/08/19 12:22,"67 Hickory St, Portland, OR 97035" +147995,27in FHD Monitor,1,149.99,01/03/19 21:34,"872 5th St, New York City, NY 10001" +147996,34in Ultrawide Monitor,1,379.99,01/19/19 22:48,"242 Willow St, Dallas, TX 75001" +147997,Wired Headphones,1,11.99,01/23/19 20:01,"90 11th St, Boston, MA 02215" +147998,Lightning Charging Cable,1,14.95,01/25/19 09:28,"524 Maple St, Dallas, TX 75001" +147999,Wired Headphones,1,11.99,01/07/19 14:15,"938 Cherry St, San Francisco, CA 94016" +148000,USB-C Charging Cable,1,11.95,01/12/19 09:54,"815 Cherry St, San Francisco, CA 94016" +148001,34in Ultrawide Monitor,1,379.99,01/06/19 20:07,"460 West St, San Francisco, CA 94016" +148002,Apple Airpods Headphones,1,150,01/30/19 15:59,"398 Ridge St, San Francisco, CA 94016" +148003,34in Ultrawide Monitor,1,379.99,01/04/19 22:17,"659 8th St, Boston, MA 02215" +148004,AA Batteries (4-pack),1,3.84,01/18/19 19:57,"826 8th St, Atlanta, GA 30301" +148005,AA Batteries (4-pack),1,3.84,01/08/19 16:54,"123 Maple St, San Francisco, CA 94016" +148006,Lightning Charging Cable,1,14.95,01/25/19 08:33,"264 Meadow St, Los Angeles, CA 90001" +148007,Wired Headphones,1,11.99,01/01/19 18:17,"952 Forest St, Los Angeles, CA 90001" +148008,Wired Headphones,1,11.99,01/27/19 17:46,"460 Lake St, San Francisco, CA 94016" +148009,AAA Batteries (4-pack),1,2.99,01/18/19 06:47,"681 2nd St, Dallas, TX 75001" +148010,27in FHD Monitor,1,149.99,01/03/19 08:27,"485 Lincoln St, San Francisco, CA 94016" +148011,AAA Batteries (4-pack),1,2.99,01/01/19 16:39,"521 Park St, San Francisco, CA 94016" +148012,Bose SoundSport Headphones,1,99.99,01/27/19 19:52,"99 North St, San Francisco, CA 94016" +148013,34in Ultrawide Monitor,1,379.99,01/19/19 15:42,"657 5th St, San Francisco, CA 94016" +148014,Flatscreen TV,1,300,01/11/19 16:15,"23 Elm St, Portland, OR 97035" +148015,Apple Airpods Headphones,1,150,01/14/19 17:58,"47 Church St, San Francisco, CA 94016" +148016,Apple Airpods Headphones,1,150,01/22/19 11:18,"159 Main St, New York City, NY 10001" +148017,USB-C Charging Cable,1,11.95,01/25/19 11:03,"148 Jefferson St, Boston, MA 02215" +148018,AA Batteries (4-pack),3,3.84,01/02/19 14:44,"645 Elm St, Austin, TX 73301" +148019,Apple Airpods Headphones,1,150,01/07/19 09:14,"816 Hill St, Dallas, TX 75001" +148019,Lightning Charging Cable,1,14.95,01/07/19 09:14,"816 Hill St, Dallas, TX 75001" +148020,USB-C Charging Cable,1,11.95,01/10/19 20:17,"169 South St, San Francisco, CA 94016" +148021,Flatscreen TV,1,300,01/06/19 10:04,"191 Willow St, Atlanta, GA 30301" +148022,AA Batteries (4-pack),2,3.84,01/06/19 18:43,"656 Adams St, Boston, MA 02215" +148023,Lightning Charging Cable,1,14.95,01/30/19 09:27,"908 4th St, San Francisco, CA 94016" +148024,27in 4K Gaming Monitor,1,389.99,01/24/19 00:10,"997 Lake St, Austin, TX 73301" +148025,Flatscreen TV,1,300,01/29/19 19:09,"764 Ridge St, San Francisco, CA 94016" +148026,AA Batteries (4-pack),2,3.84,01/28/19 21:58,"579 North St, Seattle, WA 98101" +148027,AA Batteries (4-pack),2,3.84,01/30/19 11:18,"971 10th St, Austin, TX 73301" +148028,27in 4K Gaming Monitor,1,389.99,01/27/19 00:05,"47 Lake St, Seattle, WA 98101" +148029,Bose SoundSport Headphones,1,99.99,01/01/19 09:58,"316 Madison St, Dallas, TX 75001" +148030,27in 4K Gaming Monitor,1,389.99,01/22/19 14:11,"377 Main St, Portland, OR 97035" +148031,USB-C Charging Cable,1,11.95,01/14/19 22:10,"966 Jackson St, Portland, OR 97035" +148032,AA Batteries (4-pack),1,3.84,01/28/19 07:15,"451 Spruce St, Boston, MA 02215" +148033,USB-C Charging Cable,1,11.95,01/02/19 17:12,"113 Washington St, New York City, NY 10001" +148034,Lightning Charging Cable,1,14.95,01/26/19 09:17,"650 5th St, Dallas, TX 75001" +148035,27in 4K Gaming Monitor,1,389.99,01/02/19 10:39,"809 5th St, San Francisco, CA 94016" +148036,Flatscreen TV,1,300,01/15/19 15:24,"794 Wilson St, San Francisco, CA 94016" +148037,Apple Airpods Headphones,1,150,01/31/19 10:35,"558 Cedar St, Portland, OR 97035" +148038,AAA Batteries (4-pack),2,2.99,01/30/19 13:11,"307 Cherry St, Seattle, WA 98101" +148039,Lightning Charging Cable,2,14.95,01/30/19 10:22,"945 Park St, Portland, OR 97035" +148040,AA Batteries (4-pack),1,3.84,01/13/19 11:02,"8 Willow St, San Francisco, CA 94016" +148041,iPhone,1,700,01/18/19 20:28,"762 Spruce St, New York City, NY 10001" +148042,Bose SoundSport Headphones,1,99.99,01/12/19 16:56,"379 Highland St, Dallas, TX 75001" +148043,20in Monitor,1,109.99,01/15/19 11:14,"930 Willow St, New York City, NY 10001" +148044,AAA Batteries (4-pack),2,2.99,01/12/19 20:10,"242 12th St, Los Angeles, CA 90001" +148045,AAA Batteries (4-pack),1,2.99,01/15/19 10:03,"671 Center St, Los Angeles, CA 90001" +148046,Apple Airpods Headphones,1,150,01/07/19 19:27,"111 Cedar St, Atlanta, GA 30301" +148047,Apple Airpods Headphones,1,150,01/29/19 10:23,"593 Cherry St, Los Angeles, CA 90001" +148047,AAA Batteries (4-pack),1,2.99,01/29/19 10:23,"593 Cherry St, Los Angeles, CA 90001" +148048,27in FHD Monitor,1,149.99,01/28/19 13:15,"244 Cherry St, Los Angeles, CA 90001" +148049,AA Batteries (4-pack),1,3.84,01/09/19 15:39,"395 Sunset St, San Francisco, CA 94016" +148050,Apple Airpods Headphones,1,150,01/03/19 13:57,"173 Maple St, Boston, MA 02215" +148051,AAA Batteries (4-pack),1,2.99,01/12/19 19:33,"339 Cherry St, Seattle, WA 98101" +148052,AAA Batteries (4-pack),1,2.99,01/08/19 19:16,"191 Main St, Portland, OR 97035" +148053,Apple Airpods Headphones,1,150,01/20/19 15:57,"425 Lake St, Boston, MA 02215" +148054,Wired Headphones,1,11.99,01/27/19 13:46,"771 Wilson St, Los Angeles, CA 90001" +148055,Apple Airpods Headphones,1,150,01/02/19 09:51,"576 6th St, Boston, MA 02215" +148056,Lightning Charging Cable,1,14.95,01/02/19 10:37,"648 Madison St, San Francisco, CA 94016" +148057,Google Phone,1,600,01/28/19 20:06,"137 5th St, San Francisco, CA 94016" +148057,USB-C Charging Cable,1,11.95,01/28/19 20:06,"137 5th St, San Francisco, CA 94016" +148058,Apple Airpods Headphones,1,150,01/20/19 21:47,"912 8th St, San Francisco, CA 94016" +148059,Google Phone,1,600,01/23/19 12:08,"234 4th St, San Francisco, CA 94016" +148059,USB-C Charging Cable,1,11.95,01/23/19 12:08,"234 4th St, San Francisco, CA 94016" +148060,27in 4K Gaming Monitor,1,389.99,01/21/19 18:54,"601 14th St, San Francisco, CA 94016" +148061,USB-C Charging Cable,1,11.95,01/26/19 15:29,"60 Willow St, Los Angeles, CA 90001" +148062,Wired Headphones,1,11.99,01/09/19 18:03,"734 Forest St, Boston, MA 02215" +148063,AA Batteries (4-pack),3,3.84,01/04/19 03:17,"27 Wilson St, San Francisco, CA 94016" +148064,Lightning Charging Cable,1,14.95,01/21/19 10:43,"411 Walnut St, San Francisco, CA 94016" +148065,AA Batteries (4-pack),1,3.84,01/05/19 23:26,"134 Maple St, Austin, TX 73301" +148066,Bose SoundSport Headphones,1,99.99,01/23/19 15:07,"36 Ridge St, Los Angeles, CA 90001" +148067,Macbook Pro Laptop,1,1700,01/08/19 07:31,"860 11th St, Atlanta, GA 30301" +148068,AAA Batteries (4-pack),1,2.99,01/09/19 14:59,"553 Chestnut St, Seattle, WA 98101" +148069,ThinkPad Laptop,1,999.99,01/03/19 19:44,"445 14th St, Atlanta, GA 30301" +148070,USB-C Charging Cable,1,11.95,01/18/19 11:30,"375 Wilson St, Los Angeles, CA 90001" +148071,Bose SoundSport Headphones,1,99.99,01/07/19 22:52,"762 Washington St, Boston, MA 02215" +148072,Wired Headphones,1,11.99,01/01/19 16:06,"738 Jefferson St, Atlanta, GA 30301" +148073,Wired Headphones,1,11.99,01/07/19 14:52,"961 8th St, Dallas, TX 75001" +148074,Lightning Charging Cable,1,14.95,01/02/19 12:53,"222 Adams St, Los Angeles, CA 90001" +148075,Flatscreen TV,1,300,01/11/19 19:52,"694 Maple St, San Francisco, CA 94016" +148076,AAA Batteries (4-pack),1,2.99,01/03/19 11:41,"395 Jackson St, Los Angeles, CA 90001" +148077,34in Ultrawide Monitor,1,379.99,01/14/19 11:30,"387 Jefferson St, Los Angeles, CA 90001" +148078,USB-C Charging Cable,1,11.95,01/25/19 22:31,"92 River St, San Francisco, CA 94016" +148079,ThinkPad Laptop,1,999.99,01/25/19 10:13,"949 West St, San Francisco, CA 94016" +148080,Lightning Charging Cable,1,14.95,01/12/19 18:51,"793 Forest St, San Francisco, CA 94016" +148081,Bose SoundSport Headphones,1,99.99,01/10/19 12:51,"28 2nd St, Atlanta, GA 30301" +148082,Flatscreen TV,1,300,01/19/19 22:15,"140 North St, Austin, TX 73301" +148083,AA Batteries (4-pack),2,3.84,01/28/19 21:00,"954 10th St, Boston, MA 02215" +148084,Lightning Charging Cable,1,14.95,01/29/19 21:27,"959 Hill St, San Francisco, CA 94016" +148085,AA Batteries (4-pack),2,3.84,01/22/19 10:16,"296 Johnson St, New York City, NY 10001" +148086,Lightning Charging Cable,1,14.95,01/09/19 09:50,"222 Cedar St, Dallas, TX 75001" +148087,AAA Batteries (4-pack),1,2.99,01/11/19 22:00,"482 1st St, Portland, OR 97035" +148088,Flatscreen TV,1,300,01/07/19 14:42,"346 North St, Los Angeles, CA 90001" +148089,20in Monitor,1,109.99,01/21/19 14:30,"59 Spruce St, New York City, NY 10001" +148090,Apple Airpods Headphones,1,150,01/16/19 17:41,"948 1st St, Dallas, TX 75001" +148091,Lightning Charging Cable,1,14.95,01/09/19 13:32,"27 14th St, Boston, MA 02215" +148092,Lightning Charging Cable,2,14.95,01/21/19 15:53,"973 Spruce St, New York City, NY 10001" +148093,Apple Airpods Headphones,1,150,01/23/19 08:41,"352 Wilson St, Boston, MA 02215" +148094,Apple Airpods Headphones,1,150,01/08/19 20:15,"436 Elm St, Boston, MA 02215" +148095,Flatscreen TV,1,300,01/14/19 06:34,"447 4th St, Los Angeles, CA 90001" +148096,AAA Batteries (4-pack),1,2.99,01/27/19 21:25,"24 Ridge St, Austin, TX 73301" +148097,iPhone,1,700,01/07/19 20:53,"420 Adams St, Los Angeles, CA 90001" +148098,Lightning Charging Cable,2,14.95,01/29/19 14:06,"94 Adams St, Boston, MA 02215" +148099,USB-C Charging Cable,1,11.95,01/21/19 07:34,"910 8th St, Austin, TX 73301" +148100,AA Batteries (4-pack),1,3.84,01/04/19 08:19,"604 Adams St, Los Angeles, CA 90001" +148101,Bose SoundSport Headphones,1,99.99,01/03/19 20:36,"461 Hickory St, Boston, MA 02215" +148102,USB-C Charging Cable,2,11.95,01/18/19 05:56,"196 Hickory St, Boston, MA 02215" +148103,USB-C Charging Cable,1,11.95,01/01/19 09:33,"516 Jackson St, Seattle, WA 98101" +148104,iPhone,1,700,01/12/19 19:26,"77 2nd St, Dallas, TX 75001" +148105,27in 4K Gaming Monitor,1,389.99,01/07/19 13:10,"181 Spruce St, Los Angeles, CA 90001" +148106,USB-C Charging Cable,1,11.95,01/13/19 00:21,"869 6th St, Seattle, WA 98101" +148107,AAA Batteries (4-pack),2,2.99,01/24/19 18:10,"641 1st St, Los Angeles, CA 90001" +148108,USB-C Charging Cable,1,11.95,01/24/19 14:52,"303 Main St, Boston, MA 02215" +148109,27in FHD Monitor,1,149.99,01/31/19 23:14,"242 7th St, Portland, OR 97035" +148110,Lightning Charging Cable,1,14.95,01/20/19 12:11,"554 11th St, San Francisco, CA 94016" +148111,USB-C Charging Cable,1,11.95,01/22/19 16:54,"71 Church St, Los Angeles, CA 90001" +148112,Apple Airpods Headphones,1,150,01/15/19 21:30,"970 14th St, San Francisco, CA 94016" +148113,AA Batteries (4-pack),4,3.84,01/25/19 22:12,"577 Lakeview St, New York City, NY 10001" +148114,iPhone,1,700,01/28/19 11:39,"722 8th St, Boston, MA 02215" +148115,Apple Airpods Headphones,1,150,01/31/19 13:07,"688 Sunset St, Los Angeles, CA 90001" +148116,USB-C Charging Cable,1,11.95,01/18/19 15:41,"802 Willow St, Seattle, WA 98101" +148117,Wired Headphones,1,11.99,01/09/19 12:52,"677 Walnut St, Austin, TX 73301" +148118,34in Ultrawide Monitor,1,379.99,01/14/19 18:46,"444 Church St, San Francisco, CA 94016" +148119,34in Ultrawide Monitor,1,379.99,01/08/19 18:07,"998 North St, Los Angeles, CA 90001" +148120,Apple Airpods Headphones,1,150,01/06/19 15:44,"869 8th St, Los Angeles, CA 90001" +148121,Lightning Charging Cable,1,14.95,01/20/19 11:38,"386 Meadow St, Dallas, TX 75001" +148122,AAA Batteries (4-pack),1,2.99,01/28/19 20:27,"566 Lakeview St, Boston, MA 02215" +148123,Wired Headphones,1,11.99,01/12/19 18:22,"237 2nd St, Atlanta, GA 30301" +148124,27in 4K Gaming Monitor,1,389.99,01/12/19 18:51,"645 Meadow St, San Francisco, CA 94016" +148125,Bose SoundSport Headphones,1,99.99,01/07/19 14:07,"766 10th St, Seattle, WA 98101" +148126,Apple Airpods Headphones,1,150,01/17/19 12:28,"247 South St, Los Angeles, CA 90001" +148127,Wired Headphones,2,11.99,01/03/19 14:48,"627 Forest St, Los Angeles, CA 90001" +148128,Macbook Pro Laptop,1,1700,01/08/19 21:36,"638 Ridge St, Austin, TX 73301" +148129,iPhone,1,700,01/23/19 09:43,"998 12th St, Los Angeles, CA 90001" +148130,Wired Headphones,1,11.99,01/28/19 18:14,"404 Wilson St, New York City, NY 10001" +148131,Lightning Charging Cable,1,14.95,01/15/19 13:29,"759 South St, New York City, NY 10001" +148132,AA Batteries (4-pack),1,3.84,01/24/19 21:23,"391 Spruce St, Atlanta, GA 30301" +148133,27in FHD Monitor,1,149.99,01/04/19 11:34,"221 Lakeview St, San Francisco, CA 94016" +148134,USB-C Charging Cable,1,11.95,01/05/19 10:45,"588 Chestnut St, Dallas, TX 75001" +148135,USB-C Charging Cable,1,11.95,01/26/19 10:40,"292 Jackson St, Portland, OR 97035" +148136,Wired Headphones,1,11.99,01/18/19 17:43,"476 Lake St, Atlanta, GA 30301" +148137,Apple Airpods Headphones,1,150,01/27/19 17:45,"709 6th St, San Francisco, CA 94016" +148138,AA Batteries (4-pack),1,3.84,01/02/19 19:23,"62 Maple St, San Francisco, CA 94016" +148139,iPhone,1,700,01/13/19 13:43,"459 13th St, Portland, OR 97035" +148140,34in Ultrawide Monitor,1,379.99,01/02/19 19:48,"42 Forest St, San Francisco, CA 94016" +148141,AA Batteries (4-pack),1,3.84,01/04/19 15:49,"793 Pine St, Portland, OR 97035" +148142,AAA Batteries (4-pack),1,2.99,01/04/19 23:02,"523 Lincoln St, Seattle, WA 98101" +148143,Wired Headphones,1,11.99,01/07/19 17:41,"903 Main St, Dallas, TX 75001" +148144,Flatscreen TV,1,300,01/09/19 21:58,"401 North St, Los Angeles, CA 90001" +148145,27in FHD Monitor,1,149.99,01/19/19 18:36,"492 Forest St, New York City, NY 10001" +148146,AA Batteries (4-pack),3,3.84,01/06/19 12:37,"896 Dogwood St, Austin, TX 73301" +148147,Apple Airpods Headphones,1,150,01/18/19 07:39,"201 Hickory St, Los Angeles, CA 90001" +148148,27in 4K Gaming Monitor,1,389.99,01/09/19 21:23,"269 Sunset St, New York City, NY 10001" +148149,USB-C Charging Cable,1,11.95,01/20/19 11:33,"800 River St, Seattle, WA 98101" +148150,34in Ultrawide Monitor,1,379.99,01/20/19 09:22,"248 Madison St, Boston, MA 02215" +148151,Wired Headphones,1,11.99,01/16/19 12:26,"810 Highland St, Atlanta, GA 30301" +148152,20in Monitor,1,109.99,01/03/19 00:48,"436 Walnut St, Portland, OR 97035" +148153,27in 4K Gaming Monitor,1,389.99,01/21/19 13:00,"779 Lakeview St, Austin, TX 73301" +148154,Macbook Pro Laptop,1,1700,01/27/19 17:07,"962 2nd St, Portland, ME 04101" +148155,Apple Airpods Headphones,1,150,01/19/19 19:26,"89 Chestnut St, Los Angeles, CA 90001" +148156,AA Batteries (4-pack),2,3.84,01/06/19 01:00,"947 Wilson St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +148157,Apple Airpods Headphones,1,150,01/18/19 05:51,"53 12th St, Portland, ME 04101" +148158,Bose SoundSport Headphones,1,99.99,01/16/19 19:08,"98 Hill St, Dallas, TX 75001" +148159,AA Batteries (4-pack),2,3.84,01/22/19 17:01,"395 Jefferson St, Los Angeles, CA 90001" +148160,Lightning Charging Cable,1,14.95,01/17/19 14:09,"311 Sunset St, Los Angeles, CA 90001" +148161,Flatscreen TV,1,300,01/14/19 16:40,"589 Forest St, Los Angeles, CA 90001" +148162,Lightning Charging Cable,1,14.95,01/07/19 12:20,"723 10th St, Boston, MA 02215" +148163,AA Batteries (4-pack),1,3.84,01/14/19 05:30,"164 9th St, New York City, NY 10001" +148164,USB-C Charging Cable,1,11.95,01/03/19 16:36,"737 Wilson St, Seattle, WA 98101" +148165,AAA Batteries (4-pack),4,2.99,01/15/19 17:12,"372 9th St, Seattle, WA 98101" +148166,Apple Airpods Headphones,1,150,01/21/19 11:23,"70 Park St, Los Angeles, CA 90001" +148167,AA Batteries (4-pack),3,3.84,01/02/19 20:54,"127 Sunset St, Seattle, WA 98101" +148168,Google Phone,1,600,01/03/19 10:43,"45 Spruce St, San Francisco, CA 94016" +148168,USB-C Charging Cable,1,11.95,01/03/19 10:43,"45 Spruce St, San Francisco, CA 94016" +148168,Lightning Charging Cable,1,14.95,01/03/19 10:43,"45 Spruce St, San Francisco, CA 94016" +148169,iPhone,1,700,01/15/19 18:35,"907 Spruce St, San Francisco, CA 94016" +148170,Wired Headphones,1,11.99,01/13/19 12:32,"41 Hickory St, Seattle, WA 98101" +148171,USB-C Charging Cable,1,11.95,01/08/19 15:03,"486 9th St, Dallas, TX 75001" +148172,Macbook Pro Laptop,1,1700,01/28/19 22:25,"417 10th St, San Francisco, CA 94016" +148173,Lightning Charging Cable,1,14.95,01/28/19 13:31,"944 Adams St, Austin, TX 73301" +148174,Apple Airpods Headphones,1,150,01/03/19 19:20,"111 Ridge St, Austin, TX 73301" +148175,Google Phone,1,600,01/25/19 14:52,"853 Pine St, Portland, OR 97035" +148176,Apple Airpods Headphones,1,150,01/23/19 10:31,"64 Spruce St, Austin, TX 73301" +148177,27in 4K Gaming Monitor,1,389.99,01/12/19 08:07,"235 Madison St, Los Angeles, CA 90001" +148178,Macbook Pro Laptop,1,1700,01/26/19 15:08,"404 Washington St, Boston, MA 02215" +148179,Wired Headphones,1,11.99,01/04/19 10:15,"553 Ridge St, Boston, MA 02215" +148180,AA Batteries (4-pack),2,3.84,01/05/19 18:50,"927 6th St, Atlanta, GA 30301" +148181,Wired Headphones,1,11.99,01/01/19 18:45,"309 Park St, Los Angeles, CA 90001" +148182,Bose SoundSport Headphones,1,99.99,01/17/19 15:03,"492 12th St, Los Angeles, CA 90001" +148183,Flatscreen TV,1,300,01/15/19 17:48,"732 Forest St, San Francisco, CA 94016" +148184,Lightning Charging Cable,1,14.95,01/15/19 17:11,"549 8th St, New York City, NY 10001" +148185,ThinkPad Laptop,1,999.99,01/22/19 22:18,"738 Wilson St, Dallas, TX 75001" +148186,Wired Headphones,2,11.99,01/20/19 21:13,"368 Main St, Boston, MA 02215" +148187,Wired Headphones,2,11.99,01/22/19 06:30,"893 Center St, Dallas, TX 75001" +148188,Bose SoundSport Headphones,1,99.99,01/06/19 07:00,"116 Sunset St, San Francisco, CA 94016" +148189,34in Ultrawide Monitor,1,379.99,01/15/19 18:27,"428 Spruce St, San Francisco, CA 94016" +148190,USB-C Charging Cable,1,11.95,01/11/19 09:18,"321 Meadow St, Atlanta, GA 30301" +148191,Bose SoundSport Headphones,1,99.99,01/18/19 14:57,"799 Ridge St, Boston, MA 02215" +148192,USB-C Charging Cable,1,11.95,01/28/19 16:10,"464 Lake St, San Francisco, CA 94016" +148193,27in FHD Monitor,1,149.99,01/11/19 21:38,"912 Walnut St, Dallas, TX 75001" +148194,Lightning Charging Cable,1,14.95,01/27/19 09:43,"849 Lakeview St, Los Angeles, CA 90001" +148195,USB-C Charging Cable,1,11.95,01/24/19 19:45,"715 Willow St, Austin, TX 73301" +148196,27in 4K Gaming Monitor,1,389.99,01/09/19 20:41,"774 Hill St, Dallas, TX 75001" +148197,AA Batteries (4-pack),1,3.84,01/05/19 10:29,"636 Madison St, San Francisco, CA 94016" +148198,Wired Headphones,1,11.99,01/15/19 15:50,"233 Dogwood St, Dallas, TX 75001" +148199,Wired Headphones,1,11.99,01/01/19 11:42,"348 Dogwood St, Atlanta, GA 30301" +148200,Apple Airpods Headphones,1,150,01/08/19 21:43,"261 River St, Boston, MA 02215" +148201,Google Phone,1,600,01/28/19 01:24,"133 7th St, Boston, MA 02215" +148202,USB-C Charging Cable,1,11.95,01/19/19 19:09,"800 Elm St, Atlanta, GA 30301" +148203,Bose SoundSport Headphones,1,99.99,01/19/19 21:08,"769 River St, New York City, NY 10001" +148204,AA Batteries (4-pack),1,3.84,01/31/19 20:02,"493 7th St, New York City, NY 10001" +148205,Apple Airpods Headphones,1,150,01/05/19 20:24,"960 Pine St, Atlanta, GA 30301" +148206,Wired Headphones,1,11.99,01/17/19 20:29,"217 Highland St, Seattle, WA 98101" +148207,27in 4K Gaming Monitor,1,389.99,01/19/19 18:28,"565 Elm St, New York City, NY 10001" +148208,Lightning Charging Cable,1,14.95,01/13/19 22:26,"525 Sunset St, San Francisco, CA 94016" +148209,27in 4K Gaming Monitor,1,389.99,01/10/19 15:15,"977 9th St, Atlanta, GA 30301" +148210,Lightning Charging Cable,1,14.95,01/21/19 22:44,"612 Walnut St, New York City, NY 10001" +148211,USB-C Charging Cable,1,11.95,01/25/19 22:04,"995 4th St, Austin, TX 73301" +148212,USB-C Charging Cable,1,11.95,01/04/19 23:05,"737 13th St, Portland, OR 97035" +148213,Apple Airpods Headphones,1,150,01/26/19 18:30,"376 Ridge St, Austin, TX 73301" +148214,Bose SoundSport Headphones,1,99.99,01/18/19 22:02,"887 10th St, Austin, TX 73301" +148215,Apple Airpods Headphones,1,150,01/21/19 18:00,"612 Jackson St, Portland, OR 97035" +148216,Wired Headphones,1,11.99,01/28/19 23:41,"132 2nd St, Portland, OR 97035" +148217,AAA Batteries (4-pack),1,2.99,01/15/19 10:53,"888 Pine St, San Francisco, CA 94016" +148218,iPhone,1,700,01/12/19 10:04,"260 Chestnut St, San Francisco, CA 94016" +148219,Macbook Pro Laptop,1,1700,01/09/19 19:14,"44 Ridge St, Los Angeles, CA 90001" +148220,Macbook Pro Laptop,1,1700,01/28/19 16:22,"605 11th St, Dallas, TX 75001" +148221,AA Batteries (4-pack),1,3.84,01/17/19 17:06,"180 Center St, San Francisco, CA 94016" +148222,34in Ultrawide Monitor,1,379.99,01/09/19 12:08,"249 14th St, Portland, OR 97035" +148223,USB-C Charging Cable,1,11.95,01/11/19 13:02,"924 Main St, Los Angeles, CA 90001" +148224,Apple Airpods Headphones,1,150,01/14/19 12:35,"19 Walnut St, Portland, OR 97035" +148225,Wired Headphones,1,11.99,01/26/19 14:34,"385 14th St, Boston, MA 02215" +148226,AAA Batteries (4-pack),2,2.99,01/25/19 03:04,"252 Lakeview St, Portland, ME 04101" +148227,Lightning Charging Cable,1,14.95,01/31/19 11:35,"670 Washington St, Seattle, WA 98101" +148228,Wired Headphones,1,11.99,01/14/19 23:24,"99 7th St, San Francisco, CA 94016" +148229,AAA Batteries (4-pack),2,2.99,01/05/19 16:25,"932 11th St, San Francisco, CA 94016" +148230,ThinkPad Laptop,1,999.99,01/05/19 20:41,"910 Church St, San Francisco, CA 94016" +148231,27in 4K Gaming Monitor,1,389.99,01/22/19 18:11,"65 Willow St, Los Angeles, CA 90001" +148232,Lightning Charging Cable,2,14.95,01/08/19 19:19,"544 Spruce St, New York City, NY 10001" +148233,Wired Headphones,1,11.99,01/31/19 10:14,"349 Lakeview St, Atlanta, GA 30301" +148234,AA Batteries (4-pack),1,3.84,01/18/19 13:46,"940 Highland St, Los Angeles, CA 90001" +148235,20in Monitor,1,109.99,01/17/19 09:41,"900 Main St, San Francisco, CA 94016" +148236,USB-C Charging Cable,1,11.95,01/22/19 15:29,"277 14th St, Seattle, WA 98101" +148237,AAA Batteries (4-pack),1,2.99,01/23/19 00:06,"742 Wilson St, Los Angeles, CA 90001" +148238,AA Batteries (4-pack),1,3.84,01/06/19 20:35,"38 Cherry St, Dallas, TX 75001" +148239,Wired Headphones,1,11.99,01/02/19 07:59,"142 Park St, San Francisco, CA 94016" +148240,USB-C Charging Cable,1,11.95,01/19/19 16:14,"224 North St, San Francisco, CA 94016" +148241,27in FHD Monitor,1,149.99,01/30/19 16:07,"735 11th St, San Francisco, CA 94016" +148242,Lightning Charging Cable,1,14.95,01/16/19 12:37,"87 4th St, New York City, NY 10001" +148243,Lightning Charging Cable,1,14.95,01/21/19 18:05,"743 Sunset St, Atlanta, GA 30301" +148244,Wired Headphones,1,11.99,01/01/19 20:19,"909 Chestnut St, Portland, OR 97035" +148245,AA Batteries (4-pack),1,3.84,01/24/19 15:12,"902 Church St, Austin, TX 73301" +148246,USB-C Charging Cable,1,11.95,01/21/19 08:06,"567 Cedar St, San Francisco, CA 94016" +148247,Macbook Pro Laptop,1,1700,01/15/19 19:14,"75 Highland St, New York City, NY 10001" +148248,USB-C Charging Cable,1,11.95,01/17/19 15:41,"141 12th St, New York City, NY 10001" +148249,USB-C Charging Cable,1,11.95,01/11/19 02:42,"145 North St, New York City, NY 10001" +148250,USB-C Charging Cable,1,11.95,01/23/19 17:12,"368 11th St, Los Angeles, CA 90001" +148251,Lightning Charging Cable,2,14.95,01/26/19 22:26,"163 12th St, Seattle, WA 98101" +148252,Apple Airpods Headphones,1,150,01/23/19 21:57,"137 7th St, New York City, NY 10001" +148253,iPhone,1,700,01/18/19 23:01,"197 4th St, Los Angeles, CA 90001" +148253,Lightning Charging Cable,1,14.95,01/18/19 23:01,"197 4th St, Los Angeles, CA 90001" +148254,USB-C Charging Cable,1,11.95,01/25/19 16:58,"160 Cherry St, Austin, TX 73301" +148255,Bose SoundSport Headphones,1,99.99,01/16/19 16:57,"856 Elm St, Atlanta, GA 30301" +148256,Google Phone,1,600,01/20/19 10:22,"717 9th St, Los Angeles, CA 90001" +148257,Apple Airpods Headphones,1,150,01/21/19 14:53,"976 Dogwood St, San Francisco, CA 94016" +148258,Lightning Charging Cable,2,14.95,01/24/19 16:02,"80 South St, Dallas, TX 75001" +148259,Apple Airpods Headphones,1,150,01/29/19 16:49,"180 South St, Seattle, WA 98101" +148260,27in 4K Gaming Monitor,1,389.99,01/20/19 12:59,"262 12th St, Los Angeles, CA 90001" +148261,AA Batteries (4-pack),1,3.84,01/05/19 17:49,"464 12th St, New York City, NY 10001" +148262,USB-C Charging Cable,2,11.95,01/27/19 12:19,"54 Johnson St, Los Angeles, CA 90001" +148263,Bose SoundSport Headphones,1,99.99,01/04/19 16:09,"912 Madison St, Los Angeles, CA 90001" +148264,AAA Batteries (4-pack),1,2.99,01/18/19 20:24,"232 Dogwood St, Los Angeles, CA 90001" +148265,Bose SoundSport Headphones,1,99.99,01/07/19 18:02,"933 Madison St, Boston, MA 02215" +148266,Bose SoundSport Headphones,1,99.99,01/22/19 00:09,"2 Washington St, San Francisco, CA 94016" +148267,Macbook Pro Laptop,1,1700,01/06/19 20:51,"104 13th St, New York City, NY 10001" +148268,Apple Airpods Headphones,1,150,01/08/19 21:19,"751 1st St, Atlanta, GA 30301" +148269,Apple Airpods Headphones,1,150,01/31/19 18:59,"793 Maple St, New York City, NY 10001" +148270,Lightning Charging Cable,1,14.95,01/25/19 16:39,"834 12th St, New York City, NY 10001" +148271,Vareebadd Phone,1,400,01/28/19 17:48,"530 Cherry St, Portland, OR 97035" +148272,Google Phone,1,600,01/02/19 22:26,"852 Adams St, Los Angeles, CA 90001" +148273,Wired Headphones,1,11.99,01/08/19 16:04,"618 9th St, Austin, TX 73301" +148274,Lightning Charging Cable,1,14.95,01/23/19 01:58,"395 Dogwood St, Dallas, TX 75001" +148275,USB-C Charging Cable,1,11.95,01/24/19 09:40,"6 Hickory St, Los Angeles, CA 90001" +148276,27in 4K Gaming Monitor,1,389.99,01/04/19 12:14,"896 4th St, New York City, NY 10001" +148277,USB-C Charging Cable,1,11.95,01/18/19 17:51,"987 Willow St, Dallas, TX 75001" +148278,AAA Batteries (4-pack),3,2.99,01/21/19 20:11,"264 North St, Dallas, TX 75001" +148279,34in Ultrawide Monitor,1,379.99,01/19/19 13:34,"718 Center St, Portland, OR 97035" +148280,USB-C Charging Cable,1,11.95,01/05/19 10:31,"471 Hickory St, Atlanta, GA 30301" +148281,Wired Headphones,1,11.99,01/05/19 23:38,"661 Dogwood St, Seattle, WA 98101" +148282,27in FHD Monitor,1,149.99,01/13/19 19:24,"815 11th St, Los Angeles, CA 90001" +148283,Wired Headphones,1,11.99,01/07/19 21:03,"614 South St, New York City, NY 10001" +148284,27in FHD Monitor,1,149.99,01/19/19 01:29,"381 Park St, Portland, OR 97035" +148285,iPhone,1,700,01/05/19 09:51,"171 Hill St, Portland, OR 97035" +148286,Apple Airpods Headphones,1,150,01/06/19 22:32,"612 West St, Los Angeles, CA 90001" +148287,USB-C Charging Cable,1,11.95,01/31/19 14:13,"925 Lincoln St, Seattle, WA 98101" +148288,USB-C Charging Cable,1,11.95,01/11/19 19:59,"909 13th St, Los Angeles, CA 90001" +148289,AA Batteries (4-pack),2,3.84,01/25/19 16:33,"35 Hickory St, Los Angeles, CA 90001" +148290,Wired Headphones,1,11.99,01/02/19 10:52,"320 Church St, Dallas, TX 75001" +148291,Vareebadd Phone,1,400,01/28/19 18:53,"675 Jackson St, San Francisco, CA 94016" +148291,USB-C Charging Cable,2,11.95,01/28/19 18:53,"675 Jackson St, San Francisco, CA 94016" +148292,AAA Batteries (4-pack),2,2.99,01/20/19 13:24,"262 4th St, New York City, NY 10001" +148293,Lightning Charging Cable,1,14.95,01/14/19 06:38,"127 4th St, San Francisco, CA 94016" +148294,20in Monitor,2,109.99,01/04/19 18:43,"541 Adams St, New York City, NY 10001" +148295,Lightning Charging Cable,1,14.95,01/06/19 21:13,"66 Center St, San Francisco, CA 94016" +148296,AA Batteries (4-pack),1,3.84,01/23/19 19:17,"407 North St, Boston, MA 02215" +148297,AAA Batteries (4-pack),1,2.99,01/12/19 07:46,"332 10th St, Austin, TX 73301" +148298,Macbook Pro Laptop,1,1700,01/18/19 19:42,"186 Johnson St, San Francisco, CA 94016" +148299,USB-C Charging Cable,1,11.95,01/11/19 05:33,"329 13th St, Dallas, TX 75001" +148300,AA Batteries (4-pack),1,3.84,01/06/19 10:20,"875 4th St, New York City, NY 10001" +148301,AA Batteries (4-pack),2,3.84,01/06/19 23:28,"764 13th St, San Francisco, CA 94016" +148302,Wired Headphones,1,11.99,01/05/19 11:13,"726 Chestnut St, Austin, TX 73301" +148303,34in Ultrawide Monitor,1,379.99,01/02/19 13:08,"629 7th St, Austin, TX 73301" +148304,Lightning Charging Cable,1,14.95,01/28/19 19:01,"265 Pine St, Atlanta, GA 30301" +148305,27in 4K Gaming Monitor,1,389.99,01/12/19 12:30,"147 Pine St, Los Angeles, CA 90001" +148306,Apple Airpods Headphones,1,150,01/30/19 22:36,"601 Adams St, San Francisco, CA 94016" +148307,Wired Headphones,1,11.99,01/29/19 18:52,"555 River St, Atlanta, GA 30301" +148308,Apple Airpods Headphones,1,150,01/01/19 20:58,"47 2nd St, Atlanta, GA 30301" +148309,Flatscreen TV,1,300,01/10/19 23:37,"80 2nd St, Los Angeles, CA 90001" +148310,AAA Batteries (4-pack),2,2.99,01/13/19 23:02,"106 Hill St, Los Angeles, CA 90001" +148311,Macbook Pro Laptop,1,1700,01/23/19 13:09,"698 4th St, San Francisco, CA 94016" +148312,Flatscreen TV,1,300,01/17/19 00:59,"544 1st St, Los Angeles, CA 90001" +148313,Bose SoundSport Headphones,1,99.99,01/20/19 11:32,"646 10th St, Seattle, WA 98101" +148314,AA Batteries (4-pack),1,3.84,01/11/19 09:18,"389 Willow St, San Francisco, CA 94016" +148315,Lightning Charging Cable,1,14.95,01/22/19 11:11,"742 Cherry St, Dallas, TX 75001" +148316,USB-C Charging Cable,1,11.95,01/28/19 20:23,"73 Lakeview St, Dallas, TX 75001" +148317,Lightning Charging Cable,1,14.95,01/14/19 14:29,"873 Maple St, New York City, NY 10001" +148318,AA Batteries (4-pack),1,3.84,01/06/19 21:10,"738 Pine St, Dallas, TX 75001" +148319,AA Batteries (4-pack),1,3.84,01/04/19 12:03,"783 Ridge St, Atlanta, GA 30301" +148320,Macbook Pro Laptop,1,1700,01/05/19 11:31,"772 Hill St, Los Angeles, CA 90001" +148321,Wired Headphones,1,11.99,01/27/19 10:51,"102 Adams St, Atlanta, GA 30301" +148322,AA Batteries (4-pack),2,3.84,01/07/19 17:16,"842 Washington St, Los Angeles, CA 90001" +148323,Apple Airpods Headphones,1,150,01/18/19 17:56,"574 Elm St, Los Angeles, CA 90001" +148324,27in 4K Gaming Monitor,1,389.99,01/30/19 13:58,"976 North St, San Francisco, CA 94016" +148325,Macbook Pro Laptop,1,1700,01/03/19 15:29,"743 Washington St, New York City, NY 10001" +148326,34in Ultrawide Monitor,1,379.99,01/13/19 11:45,"682 1st St, San Francisco, CA 94016" +148327,Lightning Charging Cable,1,14.95,01/22/19 13:47,"682 Hill St, San Francisco, CA 94016" +148328,Bose SoundSport Headphones,1,99.99,01/28/19 11:13,"264 Madison St, Atlanta, GA 30301" +148329,27in FHD Monitor,1,149.99,01/25/19 21:05,"387 12th St, San Francisco, CA 94016" +148330,AA Batteries (4-pack),2,3.84,01/03/19 08:01,"4 Dogwood St, Los Angeles, CA 90001" +148331,Wired Headphones,1,11.99,01/28/19 23:57,"597 7th St, Boston, MA 02215" +148332,USB-C Charging Cable,1,11.95,01/11/19 14:15,"660 4th St, New York City, NY 10001" +148333,AA Batteries (4-pack),1,3.84,01/10/19 20:21,"803 4th St, New York City, NY 10001" +148334,USB-C Charging Cable,1,11.95,01/11/19 17:57,"184 Johnson St, San Francisco, CA 94016" +148335,Lightning Charging Cable,1,14.95,01/10/19 19:24,"864 River St, Dallas, TX 75001" +148336,Apple Airpods Headphones,1,150,01/23/19 13:05,"876 Lincoln St, San Francisco, CA 94016" +148337,AAA Batteries (4-pack),2,2.99,01/15/19 21:02,"182 Church St, Atlanta, GA 30301" +148338,Flatscreen TV,1,300,01/08/19 12:46,"663 Dogwood St, Boston, MA 02215" +148339,20in Monitor,1,109.99,02/01/19 02:14,"682 Maple St, Los Angeles, CA 90001" +148340,20in Monitor,1,109.99,01/07/19 15:11,"840 Ridge St, New York City, NY 10001" +148341,AAA Batteries (4-pack),2,2.99,01/23/19 11:43,"396 Madison St, New York City, NY 10001" +148342,AA Batteries (4-pack),2,3.84,01/02/19 08:39,"259 8th St, Seattle, WA 98101" +148343,Google Phone,1,600,01/04/19 15:01,"925 Main St, Portland, OR 97035" +148344,Bose SoundSport Headphones,1,99.99,01/27/19 22:04,"70 Pine St, Boston, MA 02215" +,,,,, +148345,Bose SoundSport Headphones,1,99.99,01/30/19 12:44,"612 Main St, New York City, NY 10001" +148346,Wired Headphones,1,11.99,01/31/19 09:24,"131 Main St, New York City, NY 10001" +148347,AA Batteries (4-pack),1,3.84,01/29/19 18:06,"937 10th St, Atlanta, GA 30301" +148348,AA Batteries (4-pack),1,3.84,01/19/19 00:07,"85 Wilson St, Dallas, TX 75001" +148349,Wired Headphones,1,11.99,01/03/19 19:04,"790 10th St, San Francisco, CA 94016" +148350,Google Phone,1,600,01/15/19 16:46,"955 10th St, Austin, TX 73301" +148351,AA Batteries (4-pack),1,3.84,01/14/19 01:11,"477 11th St, Portland, OR 97035" +148352,AA Batteries (4-pack),2,3.84,01/05/19 10:51,"478 Walnut St, San Francisco, CA 94016" +148353,USB-C Charging Cable,1,11.95,01/26/19 07:32,"344 Park St, New York City, NY 10001" +148354,AA Batteries (4-pack),1,3.84,01/09/19 18:30,"788 5th St, Boston, MA 02215" +148355,AAA Batteries (4-pack),1,2.99,01/30/19 15:53,"680 8th St, New York City, NY 10001" +148356,USB-C Charging Cable,1,11.95,01/14/19 16:58,"880 Center St, Seattle, WA 98101" +148357,AAA Batteries (4-pack),1,2.99,01/23/19 21:57,"46 Spruce St, Dallas, TX 75001" +148358,27in FHD Monitor,1,149.99,01/28/19 23:50,"11 Sunset St, Portland, OR 97035" +148359,Bose SoundSport Headphones,1,99.99,01/08/19 17:53,"80 Madison St, San Francisco, CA 94016" +148360,Flatscreen TV,1,300,01/10/19 10:48,"813 Jackson St, New York City, NY 10001" +148361,AA Batteries (4-pack),1,3.84,01/17/19 11:10,"390 Madison St, New York City, NY 10001" +148362,Apple Airpods Headphones,1,150,01/11/19 08:58,"176 Cedar St, Austin, TX 73301" +148363,AAA Batteries (4-pack),2,2.99,01/25/19 11:02,"379 Spruce St, San Francisco, CA 94016" +148364,27in 4K Gaming Monitor,1,389.99,01/05/19 21:35,"242 10th St, New York City, NY 10001" +148365,Bose SoundSport Headphones,1,99.99,01/09/19 11:28,"244 13th St, New York City, NY 10001" +148366,USB-C Charging Cable,1,11.95,01/07/19 15:42,"565 Lake St, Portland, OR 97035" +148367,AA Batteries (4-pack),1,3.84,01/29/19 15:56,"181 Sunset St, Boston, MA 02215" +148368,34in Ultrawide Monitor,1,379.99,01/29/19 10:52,"695 Lincoln St, San Francisco, CA 94016" +148369,27in 4K Gaming Monitor,1,389.99,01/19/19 11:46,"824 13th St, Los Angeles, CA 90001" +148370,AA Batteries (4-pack),1,3.84,01/27/19 09:29,"371 Lincoln St, Portland, OR 97035" +148371,AA Batteries (4-pack),1,3.84,01/06/19 15:37,"349 Cherry St, Boston, MA 02215" +148372,AA Batteries (4-pack),1,3.84,01/18/19 19:02,"194 Elm St, Portland, OR 97035" +148373,Wired Headphones,1,11.99,01/20/19 17:08,"315 North St, Dallas, TX 75001" +148374,27in FHD Monitor,1,149.99,01/24/19 17:02,"677 9th St, New York City, NY 10001" +148375,Bose SoundSport Headphones,1,99.99,01/29/19 11:18,"604 River St, New York City, NY 10001" +148376,Lightning Charging Cable,1,14.95,01/09/19 10:46,"410 Forest St, Seattle, WA 98101" +148377,AAA Batteries (4-pack),1,2.99,01/27/19 17:23,"382 Willow St, Atlanta, GA 30301" +148378,Lightning Charging Cable,1,14.95,01/12/19 17:56,"768 13th St, Portland, OR 97035" +148379,Wired Headphones,1,11.99,01/30/19 11:42,"537 Center St, San Francisco, CA 94016" +148380,iPhone,1,700,01/23/19 22:19,"484 Maple St, Boston, MA 02215" +148380,Apple Airpods Headphones,1,150,01/23/19 22:19,"484 Maple St, Boston, MA 02215" +148381,Google Phone,1,600,01/20/19 12:27,"340 Sunset St, Portland, OR 97035" +148382,27in 4K Gaming Monitor,1,389.99,01/23/19 09:34,"472 Dogwood St, New York City, NY 10001" +148383,Apple Airpods Headphones,1,150,01/14/19 12:33,"823 13th St, New York City, NY 10001" +148384,AAA Batteries (4-pack),1,2.99,01/26/19 13:01,"21 Cedar St, San Francisco, CA 94016" +148385,AAA Batteries (4-pack),2,2.99,01/11/19 14:33,"42 Washington St, Los Angeles, CA 90001" +148386,AA Batteries (4-pack),2,3.84,01/21/19 17:49,"231 Center St, Seattle, WA 98101" +148387,Macbook Pro Laptop,1,1700,01/27/19 15:12,"295 Lakeview St, San Francisco, CA 94016" +148388,AAA Batteries (4-pack),1,2.99,01/01/19 22:02,"76 Jackson St, San Francisco, CA 94016" +,,,,, +148389,Wired Headphones,2,11.99,01/23/19 00:09,"89 River St, Dallas, TX 75001" +148390,USB-C Charging Cable,1,11.95,01/13/19 21:54,"726 Jackson St, New York City, NY 10001" +148391,Bose SoundSport Headphones,1,99.99,01/04/19 17:51,"488 7th St, San Francisco, CA 94016" +148392,Flatscreen TV,1,300,01/13/19 10:01,"341 Spruce St, Los Angeles, CA 90001" +148393,AAA Batteries (4-pack),1,2.99,01/26/19 12:03,"686 Lincoln St, Boston, MA 02215" +148394,Apple Airpods Headphones,1,150,01/01/19 11:17,"786 North St, New York City, NY 10001" +148395,Apple Airpods Headphones,1,150,01/25/19 11:21,"501 Spruce St, Los Angeles, CA 90001" +148396,USB-C Charging Cable,1,11.95,01/14/19 15:48,"544 11th St, Atlanta, GA 30301" +148397,Bose SoundSport Headphones,1,99.99,01/31/19 20:54,"928 North St, Boston, MA 02215" +148398,Bose SoundSport Headphones,1,99.99,01/18/19 11:54,"461 Johnson St, San Francisco, CA 94016" +148399,Apple Airpods Headphones,1,150,01/17/19 17:37,"478 9th St, Dallas, TX 75001" +148400,Lightning Charging Cable,1,14.95,01/08/19 07:59,"786 1st St, San Francisco, CA 94016" +148401,Apple Airpods Headphones,1,150,01/15/19 18:21,"382 2nd St, Boston, MA 02215" +148402,Lightning Charging Cable,1,14.95,01/20/19 23:24,"392 Washington St, Los Angeles, CA 90001" +148403,20in Monitor,1,109.99,01/03/19 19:28,"712 Madison St, Atlanta, GA 30301" +148404,USB-C Charging Cable,1,11.95,01/22/19 15:37,"146 Highland St, San Francisco, CA 94016" +148405,Macbook Pro Laptop,1,1700,01/09/19 18:05,"108 Hickory St, Austin, TX 73301" +148406,Apple Airpods Headphones,1,150,01/24/19 07:24,"519 Forest St, San Francisco, CA 94016" +148407,AA Batteries (4-pack),1,3.84,01/21/19 12:25,"557 River St, New York City, NY 10001" +148408,AAA Batteries (4-pack),2,2.99,01/12/19 16:41,"427 Ridge St, Atlanta, GA 30301" +148409,ThinkPad Laptop,1,999.99,01/05/19 11:28,"826 2nd St, New York City, NY 10001" +148410,34in Ultrawide Monitor,1,379.99,01/18/19 10:14,"935 Wilson St, Los Angeles, CA 90001" +148411,iPhone,1,700,01/31/19 21:05,"786 Cedar St, Boston, MA 02215" +148412,Bose SoundSport Headphones,1,99.99,01/30/19 12:52,"594 Highland St, Portland, OR 97035" +148413,20in Monitor,1,109.99,01/01/19 10:02,"115 West St, Los Angeles, CA 90001" +148414,USB-C Charging Cable,1,11.95,01/25/19 14:25,"469 8th St, Portland, OR 97035" +148415,AA Batteries (4-pack),2,3.84,01/25/19 15:57,"874 Highland St, Los Angeles, CA 90001" +148416,Bose SoundSport Headphones,1,99.99,01/05/19 12:38,"736 8th St, Boston, MA 02215" +148417,27in FHD Monitor,1,149.99,01/05/19 13:09,"197 7th St, Portland, ME 04101" +148418,Bose SoundSport Headphones,1,99.99,01/26/19 12:13,"650 12th St, Seattle, WA 98101" +148419,Wired Headphones,1,11.99,01/15/19 23:55,"208 Pine St, Dallas, TX 75001" +148420,Wired Headphones,1,11.99,01/22/19 18:44,"893 Washington St, Dallas, TX 75001" +148421,iPhone,1,700,01/26/19 18:38,"996 12th St, San Francisco, CA 94016" +148422,Wired Headphones,1,11.99,01/03/19 09:28,"856 Johnson St, New York City, NY 10001" +148423,Apple Airpods Headphones,1,150,01/10/19 16:26,"759 River St, San Francisco, CA 94016" +148424,Apple Airpods Headphones,1,150,01/30/19 23:57,"524 Pine St, Atlanta, GA 30301" +148425,USB-C Charging Cable,1,11.95,01/05/19 12:18,"261 Hill St, Los Angeles, CA 90001" +148426,Google Phone,1,600,01/31/19 21:36,"841 North St, Portland, OR 97035" +148427,27in 4K Gaming Monitor,1,389.99,01/25/19 14:53,"802 Main St, Dallas, TX 75001" +148428,27in FHD Monitor,1,149.99,01/25/19 19:47,"686 Pine St, Seattle, WA 98101" +148429,Lightning Charging Cable,1,14.95,02/01/19 00:03,"387 11th St, Seattle, WA 98101" +148430,Lightning Charging Cable,1,14.95,01/25/19 22:50,"7 4th St, Los Angeles, CA 90001" +148431,Wired Headphones,1,11.99,01/11/19 21:31,"703 Dogwood St, San Francisco, CA 94016" +148432,AA Batteries (4-pack),1,3.84,01/06/19 23:13,"685 Park St, San Francisco, CA 94016" +148433,Bose SoundSport Headphones,1,99.99,01/04/19 21:55,"877 Willow St, Los Angeles, CA 90001" +148434,Wired Headphones,1,11.99,01/08/19 15:18,"20 Forest St, Austin, TX 73301" +148435,Macbook Pro Laptop,1,1700,01/29/19 21:18,"765 Adams St, Los Angeles, CA 90001" +148436,Wired Headphones,1,11.99,01/31/19 18:02,"474 Center St, Los Angeles, CA 90001" +148437,27in FHD Monitor,1,149.99,01/25/19 15:51,"815 14th St, Seattle, WA 98101" +148438,Vareebadd Phone,1,400,01/03/19 08:38,"658 Elm St, Atlanta, GA 30301" +148439,Wired Headphones,1,11.99,01/13/19 12:27,"577 Hill St, Los Angeles, CA 90001" +148440,USB-C Charging Cable,1,11.95,01/29/19 20:54,"392 Sunset St, New York City, NY 10001" +148441,Lightning Charging Cable,1,14.95,01/14/19 17:46,"94 Lakeview St, San Francisco, CA 94016" +148442,AA Batteries (4-pack),2,3.84,01/04/19 20:46,"329 13th St, Boston, MA 02215" +148443,LG Dryer,1,600.0,01/21/19 20:39,"830 6th St, Los Angeles, CA 90001" +148444,AA Batteries (4-pack),2,3.84,01/16/19 23:11,"661 Madison St, Atlanta, GA 30301" +148445,AAA Batteries (4-pack),1,2.99,01/11/19 08:09,"293 Ridge St, New York City, NY 10001" +148446,Google Phone,1,600,01/06/19 09:53,"441 Elm St, New York City, NY 10001" +148447,Apple Airpods Headphones,1,150,01/21/19 17:27,"849 Chestnut St, Los Angeles, CA 90001" +148448,Bose SoundSport Headphones,1,99.99,01/28/19 21:21,"931 Spruce St, Seattle, WA 98101" +148449,20in Monitor,1,109.99,01/28/19 13:01,"708 Johnson St, Atlanta, GA 30301" +148450,Apple Airpods Headphones,1,150,01/06/19 11:19,"48 Jackson St, Los Angeles, CA 90001" +148451,Wired Headphones,1,11.99,01/29/19 12:59,"639 14th St, Atlanta, GA 30301" +148452,Macbook Pro Laptop,1,1700,01/26/19 03:45,"561 Lincoln St, Los Angeles, CA 90001" +148453,iPhone,1,700,01/21/19 15:13,"251 4th St, New York City, NY 10001" +148453,Wired Headphones,1,11.99,01/21/19 15:13,"251 4th St, New York City, NY 10001" +148454,Bose SoundSport Headphones,1,99.99,01/14/19 17:30,"205 8th St, Portland, OR 97035" +148455,ThinkPad Laptop,1,999.99,01/01/19 22:43,"957 Maple St, Los Angeles, CA 90001" +148456,USB-C Charging Cable,1,11.95,01/17/19 14:14,"467 Washington St, Boston, MA 02215" +148457,Lightning Charging Cable,1,14.95,01/11/19 14:48,"97 12th St, Seattle, WA 98101" +148458,Apple Airpods Headphones,1,150,01/12/19 19:56,"823 2nd St, San Francisco, CA 94016" +148459,ThinkPad Laptop,1,999.99,01/11/19 12:20,"719 Ridge St, San Francisco, CA 94016" +148460,Apple Airpods Headphones,1,150,01/23/19 08:46,"878 Walnut St, Portland, ME 04101" +148461,Bose SoundSport Headphones,1,99.99,01/06/19 17:30,"337 Wilson St, San Francisco, CA 94016" +148462,AA Batteries (4-pack),2,3.84,01/14/19 15:17,"522 2nd St, New York City, NY 10001" +148463,Lightning Charging Cable,1,14.95,01/11/19 18:35,"280 Chestnut St, New York City, NY 10001" +148464,USB-C Charging Cable,1,11.95,01/16/19 09:20,"152 8th St, San Francisco, CA 94016" +148465,Bose SoundSport Headphones,1,99.99,01/04/19 09:28,"796 10th St, Seattle, WA 98101" +148466,27in 4K Gaming Monitor,1,389.99,01/23/19 06:54,"939 7th St, San Francisco, CA 94016" +148467,Google Phone,1,600,01/11/19 14:13,"403 2nd St, Boston, MA 02215" +148468,AA Batteries (4-pack),1,3.84,01/08/19 11:44,"482 Main St, Portland, OR 97035" +148469,27in FHD Monitor,1,149.99,01/05/19 18:28,"879 Lakeview St, Los Angeles, CA 90001" +148470,27in FHD Monitor,1,149.99,01/26/19 20:30,"788 Johnson St, Portland, OR 97035" +148471,AA Batteries (4-pack),1,3.84,01/06/19 13:20,"587 Highland St, Boston, MA 02215" +148472,Apple Airpods Headphones,1,150,01/20/19 18:50,"54 Lakeview St, Austin, TX 73301" +148473,Wired Headphones,1,11.99,01/14/19 02:19,"509 Adams St, Los Angeles, CA 90001" +148474,Wired Headphones,1,11.99,01/13/19 21:25,"973 Ridge St, Austin, TX 73301" +148475,USB-C Charging Cable,1,11.95,01/07/19 14:09,"510 Park St, Portland, OR 97035" +148476,USB-C Charging Cable,1,11.95,01/21/19 12:29,"883 Main St, Portland, OR 97035" +148477,AA Batteries (4-pack),1,3.84,01/12/19 20:15,"610 West St, Austin, TX 73301" +148478,27in 4K Gaming Monitor,1,389.99,01/18/19 09:47,"131 Washington St, San Francisco, CA 94016" +148479,AA Batteries (4-pack),2,3.84,01/19/19 17:43,"966 4th St, Los Angeles, CA 90001" +148480,AA Batteries (4-pack),1,3.84,01/11/19 18:39,"967 Sunset St, Boston, MA 02215" +148481,AAA Batteries (4-pack),2,2.99,01/02/19 18:51,"437 2nd St, Atlanta, GA 30301" +148482,34in Ultrawide Monitor,1,379.99,01/10/19 19:39,"36 2nd St, Boston, MA 02215" +148483,Flatscreen TV,1,300,01/13/19 17:00,"253 River St, Boston, MA 02215" +148484,USB-C Charging Cable,1,11.95,01/19/19 16:01,"411 Madison St, San Francisco, CA 94016" +148485,Bose SoundSport Headphones,1,99.99,01/27/19 14:30,"592 River St, Seattle, WA 98101" +148486,Google Phone,1,600,01/28/19 11:02,"298 8th St, Austin, TX 73301" +148487,Google Phone,1,600,01/22/19 16:40,"313 Dogwood St, San Francisco, CA 94016" +148488,Bose SoundSport Headphones,1,99.99,01/15/19 23:00,"952 1st St, Dallas, TX 75001" +148489,Lightning Charging Cable,1,14.95,01/03/19 18:13,"564 Willow St, Seattle, WA 98101" +148490,Bose SoundSport Headphones,1,99.99,01/03/19 13:22,"424 9th St, Boston, MA 02215" +148491,iPhone,1,700,01/19/19 13:38,"282 14th St, New York City, NY 10001" +148492,Lightning Charging Cable,1,14.95,01/20/19 18:40,"568 Cherry St, Dallas, TX 75001" +148493,Wired Headphones,1,11.99,01/13/19 03:58,"217 Adams St, New York City, NY 10001" +148494,27in FHD Monitor,1,149.99,01/07/19 02:31,"536 Hickory St, San Francisco, CA 94016" +148495,AAA Batteries (4-pack),1,2.99,01/28/19 14:22,"530 4th St, Portland, OR 97035" +148496,Lightning Charging Cable,1,14.95,01/07/19 20:20,"887 Spruce St, San Francisco, CA 94016" +148497,27in 4K Gaming Monitor,1,389.99,01/29/19 14:02,"333 Madison St, San Francisco, CA 94016" +148498,Wired Headphones,1,11.99,01/28/19 12:10,"562 11th St, Dallas, TX 75001" +148499,27in 4K Gaming Monitor,1,389.99,01/19/19 09:10,"97 Sunset St, Atlanta, GA 30301" +148500,iPhone,1,700,01/21/19 15:09,"727 7th St, New York City, NY 10001" +148500,Wired Headphones,2,11.99,01/21/19 15:09,"727 7th St, New York City, NY 10001" +148501,Google Phone,1,600,01/16/19 16:00,"958 Adams St, New York City, NY 10001" +148501,USB-C Charging Cable,1,11.95,01/16/19 16:00,"958 Adams St, New York City, NY 10001" +148502,27in FHD Monitor,1,149.99,01/23/19 02:31,"244 Willow St, Dallas, TX 75001" +148503,20in Monitor,1,109.99,01/31/19 15:57,"557 Washington St, San Francisco, CA 94016" +148504,Wired Headphones,1,11.99,01/07/19 19:10,"473 Main St, Los Angeles, CA 90001" +148505,34in Ultrawide Monitor,1,379.99,01/03/19 14:20,"166 Pine St, San Francisco, CA 94016" +148506,34in Ultrawide Monitor,1,379.99,01/28/19 14:20,"437 Cherry St, Los Angeles, CA 90001" +148507,USB-C Charging Cable,1,11.95,01/31/19 18:57,"884 Sunset St, San Francisco, CA 94016" +148508,27in 4K Gaming Monitor,1,389.99,01/24/19 18:45,"821 6th St, Seattle, WA 98101" +148509,27in FHD Monitor,1,149.99,01/30/19 11:19,"748 7th St, San Francisco, CA 94016" +148510,AA Batteries (4-pack),3,3.84,01/23/19 13:35,"212 5th St, San Francisco, CA 94016" +148511,27in FHD Monitor,1,149.99,01/04/19 15:13,"331 Washington St, Dallas, TX 75001" +148512,Wired Headphones,1,11.99,01/13/19 09:19,"104 Cedar St, Atlanta, GA 30301" +148513,Lightning Charging Cable,1,14.95,01/18/19 10:26,"726 Ridge St, Los Angeles, CA 90001" +148514,Vareebadd Phone,1,400,01/26/19 21:44,"326 Cherry St, Boston, MA 02215" +148515,Macbook Pro Laptop,1,1700,01/04/19 10:42,"536 Jefferson St, Portland, OR 97035" +148516,Macbook Pro Laptop,1,1700,01/10/19 23:34,"15 Highland St, Boston, MA 02215" +148517,Apple Airpods Headphones,1,150,01/29/19 19:49,"751 West St, Dallas, TX 75001" +148518,Lightning Charging Cable,2,14.95,01/12/19 14:16,"563 Wilson St, Austin, TX 73301" +148519,AA Batteries (4-pack),2,3.84,01/31/19 14:48,"462 Forest St, San Francisco, CA 94016" +148520,Lightning Charging Cable,1,14.95,01/14/19 22:17,"617 Elm St, San Francisco, CA 94016" +148521,AA Batteries (4-pack),1,3.84,01/03/19 20:42,"87 North St, Atlanta, GA 30301" +148522,Wired Headphones,1,11.99,01/20/19 19:32,"105 Lakeview St, Seattle, WA 98101" +148523,AA Batteries (4-pack),1,3.84,01/22/19 03:06,"525 Jefferson St, Portland, OR 97035" +148524,AA Batteries (4-pack),1,3.84,01/28/19 01:56,"677 Lake St, Portland, OR 97035" +148525,Lightning Charging Cable,1,14.95,01/30/19 11:09,"294 Hickory St, Seattle, WA 98101" +148526,AA Batteries (4-pack),3,3.84,01/09/19 08:56,"389 14th St, Portland, OR 97035" +148527,Bose SoundSport Headphones,1,99.99,01/27/19 16:13,"275 Lake St, Atlanta, GA 30301" +148528,AAA Batteries (4-pack),2,2.99,01/10/19 20:46,"934 Maple St, New York City, NY 10001" +148529,Google Phone,1,600,01/02/19 06:02,"511 Lincoln St, New York City, NY 10001" +148529,USB-C Charging Cable,1,11.95,01/02/19 06:02,"511 Lincoln St, New York City, NY 10001" +148530,Flatscreen TV,1,300,01/31/19 20:47,"644 West St, New York City, NY 10001" +148531,AAA Batteries (4-pack),2,2.99,01/13/19 12:50,"232 Washington St, San Francisco, CA 94016" +148532,Lightning Charging Cable,2,14.95,01/06/19 22:47,"851 Elm St, Los Angeles, CA 90001" +148533,LG Washing Machine,1,600.0,01/24/19 13:49,"100 Walnut St, Boston, MA 02215" +148534,27in 4K Gaming Monitor,1,389.99,01/07/19 09:08,"645 11th St, San Francisco, CA 94016" +148535,Apple Airpods Headphones,1,150,01/16/19 10:59,"661 West St, Boston, MA 02215" +148536,AAA Batteries (4-pack),1,2.99,01/29/19 11:45,"166 Wilson St, Atlanta, GA 30301" +148537,USB-C Charging Cable,1,11.95,01/05/19 13:10,"633 Adams St, Los Angeles, CA 90001" +148538,ThinkPad Laptop,1,999.99,01/15/19 18:18,"347 Willow St, New York City, NY 10001" +148539,USB-C Charging Cable,1,11.95,01/16/19 09:05,"347 Meadow St, Boston, MA 02215" +148540,Apple Airpods Headphones,1,150,01/06/19 13:40,"14 Maple St, Portland, OR 97035" +148541,iPhone,1,700,01/10/19 13:24,"98 Pine St, San Francisco, CA 94016" +148541,Lightning Charging Cable,1,14.95,01/10/19 13:24,"98 Pine St, San Francisco, CA 94016" +148542,USB-C Charging Cable,1,11.95,01/25/19 11:14,"946 4th St, Boston, MA 02215" +148543,27in 4K Gaming Monitor,1,389.99,01/06/19 15:11,"763 Johnson St, New York City, NY 10001" +148544,Apple Airpods Headphones,1,150,01/25/19 19:27,"910 Wilson St, San Francisco, CA 94016" +148545,27in FHD Monitor,1,149.99,01/04/19 10:06,"843 Meadow St, Los Angeles, CA 90001" +148546,AA Batteries (4-pack),1,3.84,01/11/19 08:46,"295 1st St, San Francisco, CA 94016" +148547,27in FHD Monitor,1,149.99,01/09/19 18:29,"285 Hill St, Atlanta, GA 30301" +148548,Lightning Charging Cable,1,14.95,01/03/19 12:47,"933 7th St, San Francisco, CA 94016" +148549,Wired Headphones,1,11.99,01/13/19 15:49,"848 6th St, San Francisco, CA 94016" +148550,AA Batteries (4-pack),1,3.84,01/31/19 21:25,"737 10th St, Austin, TX 73301" +148551,AAA Batteries (4-pack),2,2.99,01/17/19 22:37,"940 Jackson St, San Francisco, CA 94016" +148552,USB-C Charging Cable,1,11.95,01/20/19 14:33,"984 14th St, Portland, OR 97035" +148553,Flatscreen TV,1,300,01/20/19 17:47,"342 Washington St, Boston, MA 02215" +148554,USB-C Charging Cable,1,11.95,01/08/19 11:04,"560 Spruce St, New York City, NY 10001" +148555,Lightning Charging Cable,1,14.95,01/08/19 16:58,"72 Chestnut St, San Francisco, CA 94016" +148556,Apple Airpods Headphones,1,150,01/16/19 19:10,"271 Maple St, San Francisco, CA 94016" +148557,Apple Airpods Headphones,1,150,01/15/19 23:43,"422 6th St, Austin, TX 73301" +148557,Lightning Charging Cable,1,14.95,01/15/19 23:43,"422 6th St, Austin, TX 73301" +148558,Lightning Charging Cable,1,14.95,01/09/19 13:06,"885 10th St, Los Angeles, CA 90001" +148559,USB-C Charging Cable,1,11.95,01/26/19 22:58,"639 Park St, San Francisco, CA 94016" +148560,Macbook Pro Laptop,1,1700,01/24/19 08:55,"740 Walnut St, San Francisco, CA 94016" +148561,Wired Headphones,1,11.99,01/29/19 21:17,"955 Forest St, Dallas, TX 75001" +148562,27in FHD Monitor,1,149.99,01/23/19 10:44,"157 Elm St, Los Angeles, CA 90001" +148563,27in FHD Monitor,1,149.99,01/25/19 01:04,"268 Cherry St, Boston, MA 02215" +148564,Bose SoundSport Headphones,1,99.99,01/29/19 08:55,"214 7th St, Los Angeles, CA 90001" +148565,Wired Headphones,1,11.99,01/15/19 21:12,"810 1st St, Los Angeles, CA 90001" +148566,Wired Headphones,1,11.99,01/26/19 20:40,"328 Lakeview St, San Francisco, CA 94016" +148567,AAA Batteries (4-pack),1,2.99,01/06/19 15:05,"864 Wilson St, Austin, TX 73301" +148568,Bose SoundSport Headphones,1,99.99,01/09/19 20:13,"385 Main St, Los Angeles, CA 90001" +148569,Lightning Charging Cable,1,14.95,01/31/19 23:53,"19 Jackson St, New York City, NY 10001" +148570,AAA Batteries (4-pack),1,2.99,01/29/19 12:16,"428 Forest St, New York City, NY 10001" +148571,ThinkPad Laptop,1,999.99,01/03/19 11:46,"356 Spruce St, Dallas, TX 75001" +148572,Wired Headphones,1,11.99,01/21/19 17:50,"792 Dogwood St, San Francisco, CA 94016" +148573,Google Phone,1,600,01/05/19 20:59,"410 Lake St, Los Angeles, CA 90001" +148574,AAA Batteries (4-pack),3,2.99,01/23/19 15:06,"785 14th St, Los Angeles, CA 90001" +148575,Lightning Charging Cable,1,14.95,01/28/19 12:37,"258 Sunset St, Dallas, TX 75001" +148576,AAA Batteries (4-pack),1,2.99,01/13/19 19:43,"958 North St, Austin, TX 73301" +148577,Bose SoundSport Headphones,1,99.99,01/29/19 02:07,"975 13th St, Atlanta, GA 30301" +148578,iPhone,1,700,01/12/19 13:43,"165 Dogwood St, New York City, NY 10001" +148578,Lightning Charging Cable,1,14.95,01/12/19 13:43,"165 Dogwood St, New York City, NY 10001" +148579,ThinkPad Laptop,1,999.99,01/22/19 19:22,"532 Forest St, Los Angeles, CA 90001" +148580,Apple Airpods Headphones,1,150,01/15/19 21:56,"892 Maple St, Dallas, TX 75001" +148581,Wired Headphones,1,11.99,01/09/19 18:11,"219 12th St, Austin, TX 73301" +148582,USB-C Charging Cable,1,11.95,01/22/19 10:43,"321 Jackson St, Dallas, TX 75001" +148583,AAA Batteries (4-pack),1,2.99,01/06/19 16:27,"191 Lakeview St, Los Angeles, CA 90001" +148584,AAA Batteries (4-pack),1,2.99,01/09/19 07:17,"908 Cedar St, Los Angeles, CA 90001" +148585,Lightning Charging Cable,1,14.95,01/04/19 21:50,"626 Washington St, San Francisco, CA 94016" +148586,USB-C Charging Cable,1,11.95,01/13/19 23:04,"175 Willow St, Los Angeles, CA 90001" +148587,Bose SoundSport Headphones,1,99.99,01/12/19 09:53,"523 6th St, Portland, OR 97035" +148588,AAA Batteries (4-pack),1,2.99,01/28/19 23:38,"136 Wilson St, Dallas, TX 75001" +148589,Lightning Charging Cable,1,14.95,01/08/19 08:09,"349 Sunset St, Austin, TX 73301" +148590,Wired Headphones,1,11.99,01/14/19 20:55,"605 Willow St, Austin, TX 73301" +148591,Macbook Pro Laptop,1,1700,01/06/19 05:58,"668 Lincoln St, Seattle, WA 98101" +148592,Apple Airpods Headphones,1,150,01/07/19 00:06,"771 Forest St, Atlanta, GA 30301" +148593,AAA Batteries (4-pack),1,2.99,01/09/19 11:12,"184 5th St, Austin, TX 73301" +148594,USB-C Charging Cable,1,11.95,01/21/19 00:15,"684 Walnut St, Dallas, TX 75001" +148595,Wired Headphones,1,11.99,01/25/19 18:52,"893 6th St, Los Angeles, CA 90001" +148596,Apple Airpods Headphones,1,150,01/26/19 12:59,"594 West St, Boston, MA 02215" +148597,AAA Batteries (4-pack),4,2.99,01/12/19 11:53,"687 Spruce St, Boston, MA 02215" +148598,iPhone,1,700,01/06/19 16:49,"907 Jefferson St, New York City, NY 10001" +148599,USB-C Charging Cable,1,11.95,01/23/19 13:22,"218 Ridge St, Boston, MA 02215" +148600,AA Batteries (4-pack),1,3.84,01/06/19 19:35,"209 Lakeview St, San Francisco, CA 94016" +148601,27in 4K Gaming Monitor,1,389.99,01/10/19 21:24,"542 11th St, Boston, MA 02215" +148602,USB-C Charging Cable,2,11.95,01/26/19 09:21,"187 Johnson St, Atlanta, GA 30301" +148603,Vareebadd Phone,1,400,01/28/19 00:03,"579 Chestnut St, Dallas, TX 75001" +148604,Lightning Charging Cable,1,14.95,01/17/19 10:31,"713 10th St, San Francisco, CA 94016" +148605,Apple Airpods Headphones,1,150,01/20/19 15:41,"707 Johnson St, Los Angeles, CA 90001" +148606,Lightning Charging Cable,1,14.95,01/07/19 13:13,"34 Adams St, Boston, MA 02215" +148607,Lightning Charging Cable,1,14.95,01/31/19 21:50,"904 Elm St, Boston, MA 02215" +148608,Apple Airpods Headphones,1,150,01/13/19 08:48,"488 10th St, Los Angeles, CA 90001" +148609,AAA Batteries (4-pack),2,2.99,01/09/19 12:15,"998 Johnson St, Los Angeles, CA 90001" +148610,Apple Airpods Headphones,1,150,01/17/19 08:04,"302 Dogwood St, Los Angeles, CA 90001" +148611,Lightning Charging Cable,1,14.95,01/09/19 19:50,"723 River St, San Francisco, CA 94016" +148612,USB-C Charging Cable,1,11.95,01/27/19 07:53,"837 Cherry St, Boston, MA 02215" +148613,Bose SoundSport Headphones,1,99.99,01/11/19 13:18,"180 Wilson St, Los Angeles, CA 90001" +148614,AA Batteries (4-pack),1,3.84,01/27/19 19:38,"618 Willow St, San Francisco, CA 94016" +148615,USB-C Charging Cable,1,11.95,01/10/19 17:53,"772 5th St, New York City, NY 10001" +148616,iPhone,1,700,01/10/19 10:55,"489 Willow St, Los Angeles, CA 90001" +148617,27in 4K Gaming Monitor,1,389.99,01/24/19 16:20,"859 Hickory St, San Francisco, CA 94016" +148618,Lightning Charging Cable,1,14.95,01/09/19 14:53,"685 1st St, Austin, TX 73301" +148619,USB-C Charging Cable,1,11.95,01/19/19 11:03,"420 Lakeview St, Los Angeles, CA 90001" +148620,USB-C Charging Cable,2,11.95,01/14/19 17:18,"692 Main St, San Francisco, CA 94016" +148620,AAA Batteries (4-pack),1,2.99,01/14/19 17:18,"692 Main St, San Francisco, CA 94016" +148621,AA Batteries (4-pack),2,3.84,01/11/19 18:48,"704 Lincoln St, Austin, TX 73301" +148622,USB-C Charging Cable,1,11.95,01/27/19 21:41,"205 Hickory St, Atlanta, GA 30301" +148623,AAA Batteries (4-pack),1,2.99,01/08/19 00:01,"168 10th St, Los Angeles, CA 90001" +148624,Vareebadd Phone,1,400,01/08/19 15:13,"186 Hickory St, Atlanta, GA 30301" +148625,20in Monitor,1,109.99,01/21/19 12:00,"694 2nd St, Boston, MA 02215" +148626,Bose SoundSport Headphones,1,99.99,01/26/19 10:43,"418 Lakeview St, New York City, NY 10001" +148627,Apple Airpods Headphones,1,150,01/08/19 09:54,"827 Willow St, New York City, NY 10001" +148628,Wired Headphones,1,11.99,01/25/19 12:51,"108 Lincoln St, Los Angeles, CA 90001" +148629,USB-C Charging Cable,1,11.95,01/23/19 13:45,"318 11th St, San Francisco, CA 94016" +148630,iPhone,1,700,01/12/19 17:41,"951 7th St, Boston, MA 02215" +148631,20in Monitor,1,109.99,01/05/19 23:13,"834 Main St, Seattle, WA 98101" +148632,AAA Batteries (4-pack),1,2.99,01/18/19 12:44,"304 Park St, San Francisco, CA 94016" +148633,Lightning Charging Cable,1,14.95,01/11/19 14:36,"392 Lakeview St, San Francisco, CA 94016" +148634,AA Batteries (4-pack),2,3.84,01/08/19 19:08,"131 Ridge St, Seattle, WA 98101" +148635,Apple Airpods Headphones,1,150,01/26/19 18:37,"846 Spruce St, Seattle, WA 98101" +148636,34in Ultrawide Monitor,1,379.99,01/24/19 16:53,"811 Hill St, Los Angeles, CA 90001" +148637,ThinkPad Laptop,1,999.99,01/26/19 10:00,"590 11th St, Dallas, TX 75001" +148638,Lightning Charging Cable,1,14.95,01/30/19 18:47,"468 Madison St, Austin, TX 73301" +148639,Flatscreen TV,1,300,01/30/19 10:37,"968 Washington St, Seattle, WA 98101" +148640,Apple Airpods Headphones,1,150,01/23/19 22:37,"881 River St, Boston, MA 02215" +148641,AAA Batteries (4-pack),3,2.99,01/26/19 14:21,"596 Hickory St, Austin, TX 73301" +148642,Macbook Pro Laptop,1,1700,01/03/19 10:01,"745 Cedar St, Los Angeles, CA 90001" +148643,AA Batteries (4-pack),1,3.84,01/06/19 06:30,"731 Dogwood St, Seattle, WA 98101" +148644,AA Batteries (4-pack),1,3.84,01/10/19 09:08,"625 12th St, Atlanta, GA 30301" +148645,Bose SoundSport Headphones,1,99.99,01/21/19 07:36,"160 River St, New York City, NY 10001" +148646,AAA Batteries (4-pack),2,2.99,01/17/19 22:39,"922 Highland St, Dallas, TX 75001" +148647,USB-C Charging Cable,1,11.95,01/02/19 13:26,"113 Elm St, San Francisco, CA 94016" +148648,ThinkPad Laptop,1,999.99,01/31/19 13:15,"134 Washington St, Portland, ME 04101" +148649,LG Dryer,1,600.0,01/29/19 19:30,"834 Johnson St, San Francisco, CA 94016" +148650,Apple Airpods Headphones,1,150,01/16/19 17:31,"918 Maple St, Seattle, WA 98101" +148651,AAA Batteries (4-pack),1,2.99,01/01/19 11:40,"550 Center St, Atlanta, GA 30301" +148652,27in FHD Monitor,1,149.99,01/16/19 11:07,"500 Lincoln St, Los Angeles, CA 90001" +148653,USB-C Charging Cable,1,11.95,01/20/19 21:48,"972 11th St, Los Angeles, CA 90001" +148654,AAA Batteries (4-pack),3,2.99,01/21/19 08:29,"715 1st St, Atlanta, GA 30301" +148655,Google Phone,1,600,01/20/19 21:28,"174 Lakeview St, Seattle, WA 98101" +148655,Bose SoundSport Headphones,1,99.99,01/20/19 21:28,"174 Lakeview St, Seattle, WA 98101" +148655,Wired Headphones,1,11.99,01/20/19 21:28,"174 Lakeview St, Seattle, WA 98101" +148656,Wired Headphones,1,11.99,01/23/19 06:45,"242 Pine St, Seattle, WA 98101" +148657,Macbook Pro Laptop,1,1700,01/13/19 13:02,"843 Willow St, New York City, NY 10001" +148658,Lightning Charging Cable,1,14.95,01/05/19 00:46,"399 Chestnut St, Boston, MA 02215" +148659,USB-C Charging Cable,1,11.95,01/31/19 00:06,"829 Dogwood St, San Francisco, CA 94016" +148660,Apple Airpods Headphones,1,150,01/29/19 13:28,"837 Washington St, Atlanta, GA 30301" +148661,AAA Batteries (4-pack),3,2.99,01/28/19 14:09,"843 Hill St, Seattle, WA 98101" +148662,AAA Batteries (4-pack),1,2.99,01/26/19 07:32,"812 Ridge St, San Francisco, CA 94016" +148663,Lightning Charging Cable,1,14.95,01/16/19 22:34,"284 Spruce St, San Francisco, CA 94016" +148664,Flatscreen TV,1,300,01/16/19 18:46,"855 10th St, Atlanta, GA 30301" +148665,USB-C Charging Cable,1,11.95,01/21/19 00:09,"33 Main St, Los Angeles, CA 90001" +148666,Bose SoundSport Headphones,1,99.99,01/27/19 06:42,"405 12th St, Los Angeles, CA 90001" +148667,27in FHD Monitor,1,149.99,01/03/19 22:28,"722 Hill St, San Francisco, CA 94016" +148668,AA Batteries (4-pack),1,3.84,01/16/19 11:09,"9 6th St, Los Angeles, CA 90001" +148669,LG Dryer,1,600.0,01/30/19 06:19,"248 Elm St, Boston, MA 02215" +148670,Lightning Charging Cable,1,14.95,01/04/19 10:18,"503 Lincoln St, San Francisco, CA 94016" +148671,27in 4K Gaming Monitor,1,389.99,01/29/19 08:30,"749 Washington St, Dallas, TX 75001" +148671,27in 4K Gaming Monitor,1,389.99,01/29/19 08:30,"749 Washington St, Dallas, TX 75001" +148672,27in FHD Monitor,1,149.99,01/16/19 17:50,"899 Hickory St, Los Angeles, CA 90001" +148673,Wired Headphones,1,11.99,01/11/19 04:47,"101 14th St, New York City, NY 10001" +148674,iPhone,1,700,01/14/19 17:28,"574 Sunset St, San Francisco, CA 94016" +148674,Lightning Charging Cable,1,14.95,01/14/19 17:28,"574 Sunset St, San Francisco, CA 94016" +148675,Apple Airpods Headphones,1,150,01/20/19 09:10,"701 Ridge St, San Francisco, CA 94016" +148676,USB-C Charging Cable,1,11.95,01/14/19 12:15,"953 13th St, Portland, OR 97035" +148677,USB-C Charging Cable,1,11.95,01/24/19 18:33,"532 Willow St, Boston, MA 02215" +148678,USB-C Charging Cable,1,11.95,01/10/19 13:50,"455 North St, San Francisco, CA 94016" +148679,AA Batteries (4-pack),2,3.84,01/01/19 11:15,"34 Madison St, Portland, OR 97035" +148680,27in FHD Monitor,1,149.99,01/01/19 20:39,"617 7th St, Los Angeles, CA 90001" +148681,AAA Batteries (4-pack),2,2.99,01/19/19 15:59,"225 Lakeview St, New York City, NY 10001" +148682,Bose SoundSport Headphones,1,99.99,01/29/19 11:24,"429 13th St, Boston, MA 02215" +148683,Apple Airpods Headphones,1,150,01/06/19 08:56,"149 Pine St, Boston, MA 02215" +148684,Apple Airpods Headphones,1,150,01/17/19 19:34,"2 2nd St, San Francisco, CA 94016" +148685,AAA Batteries (4-pack),1,2.99,01/20/19 13:43,"603 Center St, Boston, MA 02215" +148686,iPhone,1,700,01/26/19 19:17,"805 Jackson St, New York City, NY 10001" +148687,USB-C Charging Cable,1,11.95,01/31/19 19:01,"949 Cherry St, San Francisco, CA 94016" +148688,AA Batteries (4-pack),3,3.84,01/21/19 12:24,"378 Walnut St, San Francisco, CA 94016" +148689,Lightning Charging Cable,1,14.95,01/10/19 12:17,"930 Dogwood St, Atlanta, GA 30301" +148690,ThinkPad Laptop,1,999.99,01/17/19 20:27,"948 Elm St, New York City, NY 10001" +148691,AAA Batteries (4-pack),1,2.99,01/19/19 09:49,"174 Madison St, San Francisco, CA 94016" +148692,Wired Headphones,1,11.99,01/24/19 20:31,"503 14th St, Seattle, WA 98101" +148693,Wired Headphones,2,11.99,01/28/19 18:43,"666 West St, Austin, TX 73301" +148694,Macbook Pro Laptop,1,1700,01/01/19 18:57,"446 Meadow St, Los Angeles, CA 90001" +148695,Bose SoundSport Headphones,1,99.99,01/21/19 22:14,"981 14th St, San Francisco, CA 94016" +148696,AA Batteries (4-pack),1,3.84,01/23/19 06:53,"414 Cedar St, Portland, OR 97035" +148697,20in Monitor,1,109.99,01/31/19 15:08,"429 Lakeview St, Los Angeles, CA 90001" +148698,27in FHD Monitor,1,149.99,01/27/19 23:48,"922 Maple St, Portland, OR 97035" +148699,AAA Batteries (4-pack),2,2.99,01/26/19 13:28,"519 Sunset St, New York City, NY 10001" +148700,Apple Airpods Headphones,1,150,01/24/19 16:25,"392 9th St, Boston, MA 02215" +148701,Lightning Charging Cable,1,14.95,01/10/19 12:40,"857 4th St, New York City, NY 10001" +148702,USB-C Charging Cable,1,11.95,01/26/19 20:19,"155 7th St, San Francisco, CA 94016" +148703,Lightning Charging Cable,1,14.95,01/17/19 17:17,"616 Center St, San Francisco, CA 94016" +148704,27in 4K Gaming Monitor,1,389.99,01/05/19 12:58,"662 Main St, Portland, OR 97035" +148705,AAA Batteries (4-pack),1,2.99,01/01/19 18:55,"685 Lake St, Dallas, TX 75001" +148706,Apple Airpods Headphones,1,150,01/01/19 18:38,"698 Sunset St, New York City, NY 10001" +148707,AA Batteries (4-pack),1,3.84,01/21/19 13:27,"526 Cedar St, Dallas, TX 75001" +148708,Apple Airpods Headphones,1,150,01/16/19 10:15,"277 10th St, Atlanta, GA 30301" +148709,USB-C Charging Cable,1,11.95,01/03/19 19:50,"400 Main St, Seattle, WA 98101" +148710,27in 4K Gaming Monitor,1,389.99,01/10/19 06:49,"729 Hickory St, Atlanta, GA 30301" +148711,iPhone,1,700,01/12/19 06:50,"578 Cedar St, Atlanta, GA 30301" +148711,Lightning Charging Cable,1,14.95,01/12/19 06:50,"578 Cedar St, Atlanta, GA 30301" +148712,iPhone,1,700,01/24/19 21:06,"678 Main St, Austin, TX 73301" +148713,27in 4K Gaming Monitor,1,389.99,01/09/19 13:17,"210 Spruce St, Los Angeles, CA 90001" +148714,Lightning Charging Cable,1,14.95,01/12/19 04:51,"935 Wilson St, Boston, MA 02215" +148715,Lightning Charging Cable,1,14.95,01/25/19 23:01,"35 1st St, San Francisco, CA 94016" +148716,AA Batteries (4-pack),1,3.84,01/29/19 22:14,"525 4th St, Boston, MA 02215" +148717,Wired Headphones,1,11.99,01/15/19 18:38,"665 West St, New York City, NY 10001" +148718,AA Batteries (4-pack),2,3.84,01/12/19 22:54,"528 Hill St, San Francisco, CA 94016" +148719,Lightning Charging Cable,1,14.95,01/28/19 20:46,"587 Spruce St, New York City, NY 10001" +148720,USB-C Charging Cable,1,11.95,01/07/19 18:49,"955 Lincoln St, San Francisco, CA 94016" +148721,Wired Headphones,1,11.99,01/31/19 09:55,"85 Lake St, San Francisco, CA 94016" +148722,Macbook Pro Laptop,1,1700,01/22/19 20:35,"957 9th St, Dallas, TX 75001" +148723,Bose SoundSport Headphones,1,99.99,01/25/19 11:47,"830 Ridge St, Boston, MA 02215" +148724,AAA Batteries (4-pack),1,2.99,01/26/19 22:59,"847 12th St, Boston, MA 02215" +148725,ThinkPad Laptop,1,999.99,01/25/19 14:34,"285 10th St, Portland, OR 97035" +148726,USB-C Charging Cable,1,11.95,01/12/19 17:07,"331 9th St, San Francisco, CA 94016" +148727,Google Phone,1,600,01/20/19 19:35,"210 13th St, Atlanta, GA 30301" +148728,Bose SoundSport Headphones,1,99.99,01/18/19 14:25,"513 Cedar St, Austin, TX 73301" +148729,Wired Headphones,1,11.99,01/19/19 07:21,"343 Elm St, Dallas, TX 75001" +148730,20in Monitor,1,109.99,01/04/19 10:10,"845 River St, New York City, NY 10001" +148731,Lightning Charging Cable,2,14.95,01/14/19 19:28,"250 Main St, Dallas, TX 75001" +148732,Lightning Charging Cable,1,14.95,01/28/19 16:53,"554 Jefferson St, Austin, TX 73301" +148733,AA Batteries (4-pack),1,3.84,01/02/19 10:25,"482 North St, New York City, NY 10001" +148734,AA Batteries (4-pack),1,3.84,01/19/19 06:09,"435 2nd St, Dallas, TX 75001" +148735,Lightning Charging Cable,2,14.95,01/14/19 10:16,"214 Cedar St, Los Angeles, CA 90001" +148736,Lightning Charging Cable,1,14.95,01/13/19 08:27,"581 Jefferson St, Austin, TX 73301" +148737,ThinkPad Laptop,1,999.99,01/22/19 15:20,"244 Sunset St, Seattle, WA 98101" +148738,LG Dryer,1,600.0,01/20/19 13:21,"406 Sunset St, San Francisco, CA 94016" +148739,AA Batteries (4-pack),2,3.84,01/17/19 18:44,"548 5th St, San Francisco, CA 94016" +148740,Google Phone,1,600,01/08/19 19:26,"371 2nd St, Boston, MA 02215" +148741,AA Batteries (4-pack),1,3.84,01/26/19 12:44,"319 Hill St, San Francisco, CA 94016" +148742,Bose SoundSport Headphones,1,99.99,01/02/19 10:33,"927 Spruce St, Los Angeles, CA 90001" +148743,Wired Headphones,1,11.99,01/17/19 13:25,"251 Spruce St, New York City, NY 10001" +148744,AAA Batteries (4-pack),1,2.99,01/31/19 11:55,"176 Wilson St, San Francisco, CA 94016" +148745,27in FHD Monitor,1,149.99,01/19/19 13:46,"781 6th St, Atlanta, GA 30301" +148746,20in Monitor,1,109.99,01/19/19 20:36,"77 Johnson St, Dallas, TX 75001" +148747,Lightning Charging Cable,1,14.95,01/01/19 15:54,"62 Lincoln St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +148748,iPhone,1,700,01/02/19 17:41,"13 Lincoln St, Atlanta, GA 30301" +148749,AA Batteries (4-pack),1,3.84,01/05/19 23:50,"684 13th St, San Francisco, CA 94016" +148750,27in FHD Monitor,1,149.99,01/01/19 11:06,"526 Lake St, Portland, OR 97035" +148751,Lightning Charging Cable,1,14.95,01/19/19 11:42,"938 Jefferson St, San Francisco, CA 94016" +148752,Apple Airpods Headphones,1,150,01/24/19 12:56,"705 Johnson St, San Francisco, CA 94016" +148753,Bose SoundSport Headphones,1,99.99,01/07/19 11:29,"378 Main St, Dallas, TX 75001" +148754,Bose SoundSport Headphones,1,99.99,01/17/19 21:11,"329 4th St, San Francisco, CA 94016" +148755,Lightning Charging Cable,1,14.95,01/06/19 20:14,"455 5th St, Los Angeles, CA 90001" +148756,Wired Headphones,1,11.99,01/19/19 13:16,"994 Willow St, San Francisco, CA 94016" +148757,Wired Headphones,1,11.99,01/02/19 13:05,"123 8th St, Seattle, WA 98101" +148758,Macbook Pro Laptop,1,1700,01/31/19 22:26,"922 14th St, New York City, NY 10001" +148759,AA Batteries (4-pack),1,3.84,01/28/19 19:11,"752 Spruce St, Austin, TX 73301" +148760,AA Batteries (4-pack),3,3.84,01/09/19 14:05,"855 Lake St, San Francisco, CA 94016" +148761,AAA Batteries (4-pack),2,2.99,01/24/19 14:45,"744 Cedar St, New York City, NY 10001" +148762,Lightning Charging Cable,1,14.95,01/22/19 15:20,"53 Lincoln St, San Francisco, CA 94016" +148763,AAA Batteries (4-pack),1,2.99,01/30/19 12:08,"443 South St, San Francisco, CA 94016" +148764,USB-C Charging Cable,1,11.95,01/15/19 04:06,"777 Jefferson St, Seattle, WA 98101" +148765,AAA Batteries (4-pack),3,2.99,01/22/19 19:33,"165 7th St, Seattle, WA 98101" +148766,Wired Headphones,1,11.99,01/02/19 18:23,"207 North St, New York City, NY 10001" +148767,iPhone,1,700,01/06/19 14:13,"945 12th St, Seattle, WA 98101" +148768,AAA Batteries (4-pack),1,2.99,01/25/19 14:12,"651 Elm St, Los Angeles, CA 90001" +148769,Lightning Charging Cable,1,14.95,01/17/19 07:55,"699 Wilson St, San Francisco, CA 94016" +148770,Flatscreen TV,1,300,01/20/19 17:50,"581 Main St, Austin, TX 73301" +148771,20in Monitor,1,109.99,01/05/19 11:31,"907 Pine St, Boston, MA 02215" +148772,34in Ultrawide Monitor,1,379.99,01/11/19 23:13,"240 Highland St, Boston, MA 02215" +148773,AAA Batteries (4-pack),1,2.99,01/07/19 14:04,"515 Lakeview St, New York City, NY 10001" +148774,27in FHD Monitor,1,149.99,01/27/19 18:32,"454 West St, New York City, NY 10001" +148775,LG Washing Machine,1,600.0,01/29/19 02:59,"546 5th St, Dallas, TX 75001" +148776,Lightning Charging Cable,2,14.95,01/24/19 15:45,"63 1st St, Seattle, WA 98101" +148777,34in Ultrawide Monitor,1,379.99,01/31/19 10:52,"375 5th St, San Francisco, CA 94016" +148778,USB-C Charging Cable,1,11.95,01/02/19 12:51,"155 Cedar St, San Francisco, CA 94016" +148779,Vareebadd Phone,1,400,01/21/19 14:44,"788 11th St, San Francisco, CA 94016" +148780,AA Batteries (4-pack),1,3.84,01/17/19 01:23,"286 North St, San Francisco, CA 94016" +148781,Google Phone,1,600,01/26/19 12:21,"793 Meadow St, San Francisco, CA 94016" +148782,AA Batteries (4-pack),3,3.84,01/24/19 15:52,"413 Adams St, San Francisco, CA 94016" +148783,34in Ultrawide Monitor,1,379.99,01/11/19 07:21,"123 14th St, New York City, NY 10001" +148784,Lightning Charging Cable,1,14.95,01/13/19 21:26,"468 7th St, New York City, NY 10001" +148785,AAA Batteries (4-pack),1,2.99,01/02/19 14:24,"628 North St, Los Angeles, CA 90001" +148786,Bose SoundSport Headphones,1,99.99,01/21/19 02:02,"504 Highland St, Atlanta, GA 30301" +148787,AA Batteries (4-pack),1,3.84,01/16/19 07:58,"39 Lincoln St, Portland, OR 97035" +148788,ThinkPad Laptop,1,999.99,01/10/19 11:52,"642 7th St, Boston, MA 02215" +148789,Lightning Charging Cable,1,14.95,01/06/19 15:56,"407 Adams St, Boston, MA 02215" +148790,Lightning Charging Cable,1,14.95,01/09/19 12:41,"549 14th St, Austin, TX 73301" +148791,ThinkPad Laptop,1,999.99,01/30/19 07:12,"565 Lakeview St, San Francisco, CA 94016" +148792,Apple Airpods Headphones,1,150,01/24/19 12:55,"664 10th St, San Francisco, CA 94016" +148793,AA Batteries (4-pack),3,3.84,01/28/19 23:03,"965 Chestnut St, San Francisco, CA 94016" +148794,Wired Headphones,1,11.99,01/04/19 17:44,"995 Hill St, Austin, TX 73301" +148795,Apple Airpods Headphones,1,150,01/28/19 10:05,"550 1st St, Boston, MA 02215" +148796,Bose SoundSport Headphones,1,99.99,01/10/19 19:32,"715 Cherry St, Portland, OR 97035" +148797,Lightning Charging Cable,1,14.95,01/18/19 09:29,"294 South St, San Francisco, CA 94016" +148798,AAA Batteries (4-pack),1,2.99,01/21/19 18:46,"462 Washington St, Los Angeles, CA 90001" +148799,iPhone,1,700,01/19/19 17:29,"954 Spruce St, Austin, TX 73301" +148800,iPhone,1,700,01/23/19 14:36,"201 8th St, Dallas, TX 75001" +148801,AAA Batteries (4-pack),1,2.99,01/05/19 08:09,"263 Jackson St, San Francisco, CA 94016" +148802,AAA Batteries (4-pack),1,2.99,01/25/19 23:03,"707 Hickory St, San Francisco, CA 94016" +148803,27in 4K Gaming Monitor,1,389.99,01/17/19 06:29,"928 Adams St, Portland, OR 97035" +148804,USB-C Charging Cable,1,11.95,01/14/19 20:50,"768 Elm St, Austin, TX 73301" +148805,AA Batteries (4-pack),2,3.84,01/30/19 01:07,"40 Lakeview St, Los Angeles, CA 90001" +148805,Wired Headphones,1,11.99,01/30/19 01:07,"40 Lakeview St, Los Angeles, CA 90001" +148806,Apple Airpods Headphones,1,150,01/14/19 12:27,"363 Adams St, Seattle, WA 98101" +148807,Apple Airpods Headphones,1,150,01/11/19 10:31,"131 Center St, New York City, NY 10001" +148808,Bose SoundSport Headphones,1,99.99,01/13/19 23:24,"503 Lake St, Atlanta, GA 30301" +148809,USB-C Charging Cable,1,11.95,01/30/19 16:10,"902 Adams St, Portland, ME 04101" +148810,AA Batteries (4-pack),1,3.84,01/04/19 11:28,"346 Sunset St, Los Angeles, CA 90001" +148811,Macbook Pro Laptop,1,1700,01/25/19 19:47,"654 Hill St, Dallas, TX 75001" +148812,Lightning Charging Cable,1,14.95,01/16/19 22:44,"121 Adams St, Dallas, TX 75001" +148813,Apple Airpods Headphones,1,150,01/14/19 01:11,"660 Hill St, Dallas, TX 75001" +148814,27in FHD Monitor,1,149.99,01/09/19 00:24,"614 Chestnut St, Atlanta, GA 30301" +148815,34in Ultrawide Monitor,1,379.99,01/22/19 13:12,"398 Park St, San Francisco, CA 94016" +148816,Lightning Charging Cable,1,14.95,01/09/19 19:02,"119 Meadow St, New York City, NY 10001" +148817,Bose SoundSport Headphones,1,99.99,01/06/19 11:09,"763 Church St, Portland, OR 97035" +148818,iPhone,1,700,01/06/19 18:48,"127 11th St, Los Angeles, CA 90001" +148819,Bose SoundSport Headphones,1,99.99,01/24/19 18:15,"557 Wilson St, Atlanta, GA 30301" +148820,USB-C Charging Cable,1,11.95,01/05/19 21:08,"204 Lake St, Portland, OR 97035" +148821,USB-C Charging Cable,1,11.95,01/17/19 20:30,"873 4th St, Los Angeles, CA 90001" +148822,Lightning Charging Cable,1,14.95,01/29/19 14:49,"76 2nd St, Austin, TX 73301" +148823,20in Monitor,1,109.99,01/21/19 12:33,"871 Lincoln St, Dallas, TX 75001" +148824,Macbook Pro Laptop,1,1700,01/20/19 14:21,"134 Hickory St, Portland, OR 97035" +148825,Vareebadd Phone,1,400,01/07/19 19:32,"472 Washington St, New York City, NY 10001" +148826,Wired Headphones,1,11.99,01/05/19 15:54,"324 North St, Seattle, WA 98101" +148827,27in FHD Monitor,1,149.99,01/23/19 12:10,"92 Center St, San Francisco, CA 94016" +148828,AA Batteries (4-pack),1,3.84,01/05/19 18:31,"684 Madison St, San Francisco, CA 94016" +148829,AA Batteries (4-pack),1,3.84,01/12/19 14:23,"305 Center St, San Francisco, CA 94016" +148830,Bose SoundSport Headphones,1,99.99,01/14/19 09:03,"221 11th St, Los Angeles, CA 90001" +148831,Flatscreen TV,1,300,01/29/19 19:33,"675 River St, Boston, MA 02215" +148831,27in 4K Gaming Monitor,1,389.99,01/29/19 19:33,"675 River St, Boston, MA 02215" +148832,Flatscreen TV,1,300,01/03/19 20:23,"306 Ridge St, San Francisco, CA 94016" +148833,USB-C Charging Cable,1,11.95,01/24/19 07:10,"628 Lakeview St, San Francisco, CA 94016" +148834,AAA Batteries (4-pack),1,2.99,01/07/19 15:26,"15 Washington St, San Francisco, CA 94016" +148835,Lightning Charging Cable,1,14.95,01/26/19 13:33,"170 Willow St, Dallas, TX 75001" +148836,iPhone,1,700,01/24/19 23:08,"495 Madison St, Seattle, WA 98101" +148837,20in Monitor,1,109.99,01/05/19 15:58,"554 10th St, San Francisco, CA 94016" +148838,LG Washing Machine,1,600.0,01/14/19 15:37,"490 Walnut St, Austin, TX 73301" +148839,AA Batteries (4-pack),1,3.84,01/02/19 12:53,"799 Elm St, San Francisco, CA 94016" +148840,Lightning Charging Cable,1,14.95,01/06/19 23:50,"566 Meadow St, San Francisco, CA 94016" +148841,AAA Batteries (4-pack),1,2.99,01/06/19 21:58,"403 Walnut St, Seattle, WA 98101" +148842,Apple Airpods Headphones,1,150,01/19/19 12:47,"388 Chestnut St, Los Angeles, CA 90001" +148843,AAA Batteries (4-pack),1,2.99,01/12/19 18:45,"978 North St, Los Angeles, CA 90001" +148844,AA Batteries (4-pack),1,3.84,01/29/19 22:01,"337 Park St, Seattle, WA 98101" +148845,ThinkPad Laptop,1,999.99,01/23/19 17:51,"272 Johnson St, New York City, NY 10001" +148846,20in Monitor,1,109.99,01/16/19 23:54,"387 Sunset St, San Francisco, CA 94016" +148847,Wired Headphones,1,11.99,01/03/19 15:46,"591 North St, Seattle, WA 98101" +148848,Bose SoundSport Headphones,1,99.99,01/14/19 01:06,"772 Ridge St, Seattle, WA 98101" +148849,USB-C Charging Cable,1,11.95,01/26/19 20:08,"886 13th St, New York City, NY 10001" +148850,AA Batteries (4-pack),1,3.84,01/30/19 13:37,"6 14th St, Dallas, TX 75001" +148851,Bose SoundSport Headphones,1,99.99,01/09/19 20:46,"99 Wilson St, New York City, NY 10001" +148852,Google Phone,1,600,01/07/19 18:09,"751 Maple St, Los Angeles, CA 90001" +148853,Bose SoundSport Headphones,1,99.99,01/31/19 04:54,"421 Hill St, Dallas, TX 75001" +148854,Wired Headphones,1,11.99,01/21/19 18:35,"952 North St, Austin, TX 73301" +148855,AA Batteries (4-pack),1,3.84,01/16/19 19:16,"410 Walnut St, New York City, NY 10001" +148855,Lightning Charging Cable,1,14.95,01/16/19 19:16,"410 Walnut St, New York City, NY 10001" +148856,iPhone,1,700,01/31/19 08:37,"951 Johnson St, Atlanta, GA 30301" +148857,Apple Airpods Headphones,1,150,01/03/19 11:25,"620 Main St, Atlanta, GA 30301" +148858,AAA Batteries (4-pack),1,2.99,01/29/19 10:04,"627 Lincoln St, Atlanta, GA 30301" +148859,Wired Headphones,1,11.99,01/07/19 15:39,"725 Park St, San Francisco, CA 94016" +148860,AA Batteries (4-pack),4,3.84,01/24/19 11:59,"959 Washington St, Los Angeles, CA 90001" +148861,Lightning Charging Cable,1,14.95,01/18/19 15:24,"730 Lakeview St, Portland, OR 97035" +148862,Wired Headphones,1,11.99,01/10/19 06:24,"534 Lincoln St, Los Angeles, CA 90001" +148863,AA Batteries (4-pack),1,3.84,01/10/19 19:20,"251 Park St, Los Angeles, CA 90001" +148864,27in FHD Monitor,1,149.99,01/24/19 11:45,"100 Walnut St, New York City, NY 10001" +148865,34in Ultrawide Monitor,1,379.99,01/31/19 13:58,"203 11th St, Austin, TX 73301" +148866,USB-C Charging Cable,1,11.95,01/17/19 04:31,"365 Johnson St, Portland, OR 97035" +148867,Lightning Charging Cable,1,14.95,01/06/19 14:35,"762 7th St, San Francisco, CA 94016" +148868,AAA Batteries (4-pack),2,2.99,01/05/19 11:44,"291 Johnson St, San Francisco, CA 94016" +148869,Wired Headphones,1,11.99,01/16/19 19:46,"604 Lake St, Los Angeles, CA 90001" +148870,USB-C Charging Cable,1,11.95,01/20/19 22:20,"125 Madison St, Boston, MA 02215" +148871,Wired Headphones,1,11.99,01/07/19 10:43,"630 Willow St, San Francisco, CA 94016" +148872,USB-C Charging Cable,1,11.95,01/17/19 13:58,"119 Walnut St, Atlanta, GA 30301" +148873,Bose SoundSport Headphones,1,99.99,01/10/19 10:21,"293 13th St, San Francisco, CA 94016" +148874,27in 4K Gaming Monitor,1,389.99,01/17/19 15:20,"54 Lake St, San Francisco, CA 94016" +148875,Macbook Pro Laptop,1,1700,01/08/19 17:26,"619 Ridge St, Portland, OR 97035" +148876,AAA Batteries (4-pack),1,2.99,01/03/19 10:55,"388 North St, San Francisco, CA 94016" +148877,USB-C Charging Cable,1,11.95,01/21/19 18:27,"424 Cedar St, New York City, NY 10001" +148877,27in FHD Monitor,1,149.99,01/21/19 18:27,"424 Cedar St, New York City, NY 10001" +148878,AA Batteries (4-pack),1,3.84,01/27/19 16:24,"743 7th St, San Francisco, CA 94016" +148879,USB-C Charging Cable,1,11.95,01/28/19 08:52,"343 Adams St, San Francisco, CA 94016" +148880,20in Monitor,1,109.99,01/26/19 11:38,"960 Elm St, San Francisco, CA 94016" +148881,LG Dryer,1,600.0,01/22/19 22:51,"693 Maple St, San Francisco, CA 94016" +148882,Lightning Charging Cable,1,14.95,01/05/19 07:49,"933 13th St, Austin, TX 73301" +148883,34in Ultrawide Monitor,1,379.99,01/07/19 21:11,"846 Meadow St, Portland, OR 97035" +148884,Apple Airpods Headphones,1,150,01/24/19 00:24,"290 Dogwood St, Dallas, TX 75001" +148885,LG Washing Machine,1,600.0,01/23/19 08:26,"476 Adams St, Los Angeles, CA 90001" +148886,Lightning Charging Cable,1,14.95,01/02/19 20:44,"681 Walnut St, Dallas, TX 75001" +148887,USB-C Charging Cable,1,11.95,01/06/19 15:39,"896 Madison St, Boston, MA 02215" +148888,AA Batteries (4-pack),1,3.84,01/06/19 20:44,"554 4th St, New York City, NY 10001" +148889,27in FHD Monitor,1,149.99,01/01/19 12:46,"265 North St, Atlanta, GA 30301" +148890,USB-C Charging Cable,1,11.95,01/23/19 08:12,"416 12th St, Los Angeles, CA 90001" +148891,AAA Batteries (4-pack),2,2.99,01/04/19 13:07,"687 13th St, Dallas, TX 75001" +148892,AAA Batteries (4-pack),2,2.99,01/27/19 16:43,"978 South St, Los Angeles, CA 90001" +148893,AAA Batteries (4-pack),1,2.99,01/20/19 16:33,"553 Washington St, Portland, OR 97035" +148893,Bose SoundSport Headphones,1,99.99,01/20/19 16:33,"553 Washington St, Portland, OR 97035" +148894,Bose SoundSport Headphones,1,99.99,01/16/19 12:24,"988 2nd St, Portland, OR 97035" +148895,Apple Airpods Headphones,1,150,01/12/19 20:40,"945 Center St, Los Angeles, CA 90001" +148896,Bose SoundSport Headphones,1,99.99,01/06/19 14:24,"263 River St, San Francisco, CA 94016" +148897,USB-C Charging Cable,1,11.95,01/21/19 17:35,"20 Meadow St, Austin, TX 73301" +148898,Apple Airpods Headphones,1,150,01/06/19 09:39,"790 Maple St, San Francisco, CA 94016" +148899,Flatscreen TV,1,300,01/04/19 17:06,"704 Cherry St, Boston, MA 02215" +148900,34in Ultrawide Monitor,1,379.99,01/19/19 10:34,"121 Lincoln St, San Francisco, CA 94016" +148900,Google Phone,1,600,01/19/19 10:34,"121 Lincoln St, San Francisco, CA 94016" +148901,AAA Batteries (4-pack),1,2.99,01/10/19 16:38,"223 Walnut St, San Francisco, CA 94016" +148902,Wired Headphones,1,11.99,01/27/19 22:09,"839 8th St, Los Angeles, CA 90001" +148903,AAA Batteries (4-pack),1,2.99,01/29/19 09:18,"497 Jefferson St, Boston, MA 02215" +148904,34in Ultrawide Monitor,1,379.99,01/12/19 12:12,"952 Church St, Los Angeles, CA 90001" +148905,27in FHD Monitor,1,149.99,01/14/19 22:42,"355 Lake St, Los Angeles, CA 90001" +148906,34in Ultrawide Monitor,1,379.99,01/29/19 12:56,"438 Center St, Boston, MA 02215" +148907,AA Batteries (4-pack),1,3.84,01/09/19 18:52,"64 13th St, Dallas, TX 75001" +148908,AA Batteries (4-pack),1,3.84,01/03/19 18:11,"302 Adams St, Atlanta, GA 30301" +148909,AAA Batteries (4-pack),1,2.99,01/11/19 18:56,"982 Lakeview St, Los Angeles, CA 90001" +148910,AAA Batteries (4-pack),1,2.99,01/17/19 08:41,"546 Elm St, New York City, NY 10001" +148911,27in 4K Gaming Monitor,1,389.99,01/18/19 09:49,"326 Maple St, Atlanta, GA 30301" +148912,Lightning Charging Cable,1,14.95,01/05/19 17:29,"662 Church St, Seattle, WA 98101" +148913,USB-C Charging Cable,1,11.95,01/17/19 22:11,"226 13th St, Boston, MA 02215" +148914,AAA Batteries (4-pack),1,2.99,01/13/19 18:03,"980 Chestnut St, Dallas, TX 75001" +148915,ThinkPad Laptop,1,999.99,01/13/19 22:14,"253 Wilson St, Atlanta, GA 30301" +148916,AAA Batteries (4-pack),1,2.99,01/18/19 19:01,"212 Jackson St, San Francisco, CA 94016" +148917,Wired Headphones,1,11.99,01/15/19 20:10,"809 8th St, Seattle, WA 98101" +148918,USB-C Charging Cable,1,11.95,01/23/19 11:09,"957 Church St, San Francisco, CA 94016" +148919,Apple Airpods Headphones,1,150,01/31/19 13:34,"863 Main St, Dallas, TX 75001" +148920,Wired Headphones,1,11.99,01/10/19 14:26,"241 8th St, Los Angeles, CA 90001" +148921,Macbook Pro Laptop,1,1700,01/13/19 17:29,"608 West St, Atlanta, GA 30301" +148922,Bose SoundSport Headphones,1,99.99,01/03/19 21:13,"880 Madison St, New York City, NY 10001" +148923,Google Phone,1,600,01/11/19 09:05,"129 Jackson St, New York City, NY 10001" +148923,USB-C Charging Cable,1,11.95,01/11/19 09:05,"129 Jackson St, New York City, NY 10001" +148923,Wired Headphones,1,11.99,01/11/19 09:05,"129 Jackson St, New York City, NY 10001" +148924,Wired Headphones,1,11.99,01/01/19 23:55,"679 Willow St, Boston, MA 02215" +148925,AAA Batteries (4-pack),1,2.99,01/16/19 18:19,"591 Sunset St, San Francisco, CA 94016" +148926,Lightning Charging Cable,1,14.95,01/31/19 11:48,"49 Ridge St, Austin, TX 73301" +148927,AAA Batteries (4-pack),1,2.99,01/11/19 12:33,"737 Jefferson St, San Francisco, CA 94016" +148928,20in Monitor,1,109.99,01/01/19 16:40,"911 South St, Portland, OR 97035" +148929,AAA Batteries (4-pack),1,2.99,01/06/19 04:33,"892 Maple St, Atlanta, GA 30301" +148930,USB-C Charging Cable,1,11.95,01/14/19 16:16,"618 Main St, Dallas, TX 75001" +148931,Apple Airpods Headphones,1,150,01/08/19 20:10,"901 Madison St, Los Angeles, CA 90001" +148932,iPhone,1,700,01/15/19 19:10,"36 7th St, San Francisco, CA 94016" +148933,Flatscreen TV,1,300,01/06/19 18:31,"892 Washington St, Dallas, TX 75001" +148934,Bose SoundSport Headphones,1,99.99,01/22/19 10:00,"962 Highland St, Portland, ME 04101" +148935,iPhone,1,700,01/07/19 21:15,"133 Spruce St, Atlanta, GA 30301" +148936,AA Batteries (4-pack),3,3.84,01/09/19 22:39,"487 North St, Dallas, TX 75001" +148937,LG Washing Machine,1,600.0,01/13/19 16:01,"696 Chestnut St, San Francisco, CA 94016" +148938,AAA Batteries (4-pack),1,2.99,01/24/19 20:07,"950 14th St, Los Angeles, CA 90001" +148939,Bose SoundSport Headphones,1,99.99,01/24/19 07:44,"753 Washington St, New York City, NY 10001" +148940,Wired Headphones,1,11.99,01/07/19 10:22,"620 Wilson St, San Francisco, CA 94016" +148941,AAA Batteries (4-pack),1,2.99,01/01/19 14:12,"195 Main St, Los Angeles, CA 90001" +148941,Google Phone,1,600,01/01/19 14:12,"195 Main St, Los Angeles, CA 90001" +148942,Bose SoundSport Headphones,1,99.99,01/27/19 23:50,"174 Hill St, San Francisco, CA 94016" +148943,AA Batteries (4-pack),1,3.84,01/12/19 22:41,"597 Pine St, Atlanta, GA 30301" +148944,Wired Headphones,1,11.99,01/30/19 12:17,"726 Jefferson St, Boston, MA 02215" +148945,Wired Headphones,1,11.99,01/20/19 18:26,"473 West St, San Francisco, CA 94016" +148946,27in FHD Monitor,1,149.99,01/07/19 00:26,"781 Johnson St, Los Angeles, CA 90001" +148947,Macbook Pro Laptop,1,1700,01/06/19 13:24,"439 5th St, Portland, ME 04101" +148948,Bose SoundSport Headphones,1,99.99,01/05/19 18:18,"366 West St, Portland, OR 97035" +148949,USB-C Charging Cable,1,11.95,01/23/19 10:34,"559 Cherry St, Dallas, TX 75001" +148950,AAA Batteries (4-pack),2,2.99,01/14/19 16:46,"47 5th St, New York City, NY 10001" +148951,USB-C Charging Cable,1,11.95,01/22/19 11:22,"947 10th St, Los Angeles, CA 90001" +148952,AA Batteries (4-pack),1,3.84,01/11/19 15:32,"507 Lake St, New York City, NY 10001" +148953,27in 4K Gaming Monitor,1,389.99,01/22/19 22:49,"932 Dogwood St, Seattle, WA 98101" +148954,Flatscreen TV,1,300,01/03/19 21:09,"512 Jefferson St, Seattle, WA 98101" +148955,Lightning Charging Cable,1,14.95,01/14/19 20:21,"243 Elm St, Boston, MA 02215" +148956,AAA Batteries (4-pack),1,2.99,01/12/19 20:55,"210 River St, San Francisco, CA 94016" +148957,AAA Batteries (4-pack),1,2.99,01/22/19 15:19,"147 Jackson St, San Francisco, CA 94016" +148958,AAA Batteries (4-pack),3,2.99,01/25/19 13:05,"772 14th St, New York City, NY 10001" +148959,iPhone,1,700,01/13/19 14:41,"259 Hill St, Portland, OR 97035" +148959,Wired Headphones,2,11.99,01/13/19 14:41,"259 Hill St, Portland, OR 97035" +148960,Wired Headphones,1,11.99,01/27/19 09:32,"462 Dogwood St, Austin, TX 73301" +148961,AA Batteries (4-pack),2,3.84,01/28/19 14:39,"670 Chestnut St, Atlanta, GA 30301" +148962,Lightning Charging Cable,1,14.95,01/01/19 09:04,"663 North St, Atlanta, GA 30301" +148963,Lightning Charging Cable,1,14.95,01/24/19 12:27,"127 Main St, New York City, NY 10001" +148963,Google Phone,1,600,01/24/19 12:27,"127 Main St, New York City, NY 10001" +148964,20in Monitor,1,109.99,01/04/19 14:42,"558 Highland St, Seattle, WA 98101" +148965,Lightning Charging Cable,1,14.95,01/29/19 17:04,"968 Wilson St, Boston, MA 02215" +148966,20in Monitor,1,109.99,01/08/19 20:20,"33 Forest St, New York City, NY 10001" +148967,20in Monitor,1,109.99,01/13/19 12:12,"423 Hill St, Dallas, TX 75001" +148968,Wired Headphones,1,11.99,01/25/19 17:05,"743 North St, New York City, NY 10001" +148969,AA Batteries (4-pack),1,3.84,01/25/19 14:39,"365 Lakeview St, Atlanta, GA 30301" +148970,Bose SoundSport Headphones,1,99.99,01/06/19 21:36,"400 14th St, San Francisco, CA 94016" +148971,AA Batteries (4-pack),1,3.84,01/17/19 23:22,"193 South St, San Francisco, CA 94016" +148972,ThinkPad Laptop,1,999.99,01/19/19 19:04,"110 Church St, Los Angeles, CA 90001" +148973,ThinkPad Laptop,1,999.99,01/01/19 19:34,"687 Ridge St, San Francisco, CA 94016" +148974,Google Phone,1,600,01/03/19 11:37,"818 Lakeview St, San Francisco, CA 94016" +148975,Bose SoundSport Headphones,1,99.99,01/04/19 16:49,"756 Walnut St, Dallas, TX 75001" +148976,USB-C Charging Cable,1,11.95,01/14/19 23:25,"752 Johnson St, Boston, MA 02215" +148977,27in FHD Monitor,1,149.99,01/25/19 20:30,"694 Center St, San Francisco, CA 94016" +148978,iPhone,1,700,01/11/19 17:01,"669 River St, New York City, NY 10001" +148979,Apple Airpods Headphones,1,150,01/30/19 11:12,"283 Dogwood St, New York City, NY 10001" +148980,Wired Headphones,1,11.99,01/21/19 08:01,"243 12th St, Atlanta, GA 30301" +148981,Wired Headphones,1,11.99,01/31/19 20:43,"478 Forest St, Seattle, WA 98101" +148982,ThinkPad Laptop,1,999.99,01/15/19 12:09,"341 10th St, New York City, NY 10001" +148983,Apple Airpods Headphones,1,150,01/11/19 15:59,"37 5th St, San Francisco, CA 94016" +148984,Wired Headphones,1,11.99,01/20/19 11:11,"269 Maple St, New York City, NY 10001" +148985,AA Batteries (4-pack),1,3.84,01/30/19 19:02,"876 Main St, Portland, OR 97035" +148986,27in FHD Monitor,1,149.99,01/10/19 17:54,"268 North St, San Francisco, CA 94016" +148987,AA Batteries (4-pack),1,3.84,01/21/19 12:58,"807 Walnut St, New York City, NY 10001" +148988,USB-C Charging Cable,1,11.95,01/15/19 18:13,"209 8th St, New York City, NY 10001" +148989,AA Batteries (4-pack),1,3.84,01/09/19 11:24,"798 North St, New York City, NY 10001" +148990,34in Ultrawide Monitor,1,379.99,01/12/19 07:25,"667 10th St, San Francisco, CA 94016" +148991,USB-C Charging Cable,1,11.95,01/18/19 13:25,"682 Hill St, Austin, TX 73301" +148992,Bose SoundSport Headphones,1,99.99,01/04/19 10:53,"749 9th St, Dallas, TX 75001" +148993,AAA Batteries (4-pack),2,2.99,01/05/19 19:23,"341 South St, Los Angeles, CA 90001" +148994,Lightning Charging Cable,1,14.95,01/02/19 01:45,"390 11th St, Los Angeles, CA 90001" +148995,Wired Headphones,1,11.99,01/30/19 14:53,"525 River St, Boston, MA 02215" +148996,Wired Headphones,1,11.99,01/23/19 08:56,"144 Jackson St, Los Angeles, CA 90001" +148997,AAA Batteries (4-pack),1,2.99,01/15/19 19:00,"901 West St, Portland, OR 97035" +148998,iPhone,1,700,01/10/19 22:01,"354 River St, San Francisco, CA 94016" +148998,Lightning Charging Cable,1,14.95,01/10/19 22:01,"354 River St, San Francisco, CA 94016" +148999,AA Batteries (4-pack),2,3.84,01/22/19 22:21,"568 Willow St, Boston, MA 02215" +149000,Wired Headphones,1,11.99,01/21/19 21:37,"810 11th St, Boston, MA 02215" +149001,20in Monitor,1,109.99,01/23/19 14:31,"731 Lakeview St, Dallas, TX 75001" +149002,Lightning Charging Cable,1,14.95,01/18/19 14:19,"470 Park St, Portland, ME 04101" +149002,Bose SoundSport Headphones,1,99.99,01/18/19 14:19,"470 Park St, Portland, ME 04101" +149003,USB-C Charging Cable,1,11.95,01/19/19 14:41,"515 14th St, New York City, NY 10001" +149004,ThinkPad Laptop,1,999.99,01/05/19 19:00,"395 Park St, Seattle, WA 98101" +149005,Wired Headphones,1,11.99,01/19/19 19:42,"413 14th St, San Francisco, CA 94016" +149006,Macbook Pro Laptop,1,1700,01/26/19 08:59,"821 Adams St, Dallas, TX 75001" +149007,Lightning Charging Cable,1,14.95,01/22/19 03:53,"834 Wilson St, Los Angeles, CA 90001" +149008,Wired Headphones,1,11.99,01/25/19 14:54,"163 1st St, Boston, MA 02215" +149009,AA Batteries (4-pack),2,3.84,01/24/19 12:24,"534 South St, Los Angeles, CA 90001" +149010,AA Batteries (4-pack),1,3.84,01/07/19 20:35,"246 Spruce St, San Francisco, CA 94016" +149011,ThinkPad Laptop,1,999.99,01/10/19 11:41,"702 Wilson St, Los Angeles, CA 90001" +149012,27in 4K Gaming Monitor,1,389.99,01/24/19 13:09,"902 Forest St, New York City, NY 10001" +149013,Wired Headphones,1,11.99,01/16/19 00:31,"7 1st St, Boston, MA 02215" +149014,Lightning Charging Cable,1,14.95,01/26/19 21:05,"593 Cedar St, Seattle, WA 98101" +149015,Wired Headphones,2,11.99,01/24/19 11:33,"237 Lake St, Los Angeles, CA 90001" +149016,Macbook Pro Laptop,1,1700,01/15/19 11:24,"605 Pine St, Atlanta, GA 30301" +149017,Vareebadd Phone,1,400,01/03/19 19:18,"527 Johnson St, San Francisco, CA 94016" +149018,20in Monitor,1,109.99,01/15/19 23:18,"967 Center St, Dallas, TX 75001" +149019,AA Batteries (4-pack),1,3.84,01/08/19 08:07,"420 Church St, New York City, NY 10001" +149020,Wired Headphones,1,11.99,01/22/19 18:12,"171 Wilson St, San Francisco, CA 94016" +149020,Bose SoundSport Headphones,1,99.99,01/22/19 18:12,"171 Wilson St, San Francisco, CA 94016" +149021,Apple Airpods Headphones,1,150,01/18/19 20:00,"565 Maple St, Los Angeles, CA 90001" +149022,Bose SoundSport Headphones,1,99.99,01/22/19 15:56,"982 Meadow St, New York City, NY 10001" +149023,AA Batteries (4-pack),1,3.84,01/25/19 15:58,"520 Hill St, New York City, NY 10001" +149024,Lightning Charging Cable,1,14.95,01/03/19 09:13,"977 Willow St, San Francisco, CA 94016" +149025,Macbook Pro Laptop,1,1700,01/21/19 11:38,"130 Hill St, San Francisco, CA 94016" +149026,Wired Headphones,1,11.99,01/07/19 20:36,"632 5th St, Seattle, WA 98101" +149027,Apple Airpods Headphones,1,150,01/09/19 23:46,"504 Walnut St, San Francisco, CA 94016" +149028,Lightning Charging Cable,1,14.95,01/05/19 19:16,"4 South St, New York City, NY 10001" +149029,20in Monitor,1,109.99,01/16/19 19:25,"159 Wilson St, Boston, MA 02215" +149030,Bose SoundSport Headphones,1,99.99,01/01/19 17:44,"869 11th St, San Francisco, CA 94016" +149031,ThinkPad Laptop,1,999.99,01/09/19 15:44,"477 Pine St, San Francisco, CA 94016" +149032,USB-C Charging Cable,1,11.95,01/22/19 20:22,"19 Lake St, Boston, MA 02215" +149033,USB-C Charging Cable,1,11.95,01/26/19 20:02,"443 Lakeview St, Seattle, WA 98101" +149034,AAA Batteries (4-pack),2,2.99,01/07/19 10:41,"555 Hill St, Atlanta, GA 30301" +149035,Apple Airpods Headphones,1,150,01/31/19 20:30,"577 Forest St, Boston, MA 02215" +149036,Flatscreen TV,1,300,01/12/19 22:52,"31 6th St, Atlanta, GA 30301" +149037,Wired Headphones,1,11.99,01/23/19 10:44,"722 Highland St, Boston, MA 02215" +149038,Google Phone,1,600,01/09/19 18:47,"432 Sunset St, San Francisco, CA 94016" +149038,USB-C Charging Cable,1,11.95,01/09/19 18:47,"432 Sunset St, San Francisco, CA 94016" +149039,iPhone,1,700,01/31/19 20:31,"503 Forest St, San Francisco, CA 94016" +149040,34in Ultrawide Monitor,1,379.99,01/13/19 17:49,"459 South St, San Francisco, CA 94016" +149041,Macbook Pro Laptop,1,1700,01/03/19 19:38,"56 Center St, Austin, TX 73301" +149042,AA Batteries (4-pack),1,3.84,01/23/19 10:07,"705 10th St, Los Angeles, CA 90001" +149043,Bose SoundSport Headphones,1,99.99,01/05/19 22:10,"58 Lincoln St, San Francisco, CA 94016" +149044,AAA Batteries (4-pack),1,2.99,01/12/19 15:44,"940 Pine St, Atlanta, GA 30301" +149045,iPhone,1,700,01/13/19 10:13,"658 Center St, New York City, NY 10001" +149046,Bose SoundSport Headphones,1,99.99,01/21/19 14:08,"64 Chestnut St, San Francisco, CA 94016" +149047,USB-C Charging Cable,1,11.95,01/12/19 18:10,"179 Cherry St, Austin, TX 73301" +149048,iPhone,1,700,01/07/19 18:45,"17 Walnut St, Atlanta, GA 30301" +149049,34in Ultrawide Monitor,1,379.99,01/27/19 14:19,"179 Sunset St, Dallas, TX 75001" +149050,Bose SoundSport Headphones,1,99.99,01/17/19 11:41,"559 6th St, Dallas, TX 75001" +149051,Google Phone,1,600,01/06/19 19:38,"487 Cherry St, Boston, MA 02215" +149052,LG Dryer,1,600.0,01/11/19 22:58,"102 12th St, Los Angeles, CA 90001" +149053,AA Batteries (4-pack),1,3.84,01/23/19 19:47,"810 10th St, Boston, MA 02215" +149054,USB-C Charging Cable,1,11.95,01/22/19 16:10,"246 12th St, Los Angeles, CA 90001" +149055,27in 4K Gaming Monitor,1,389.99,01/01/19 14:31,"532 6th St, New York City, NY 10001" +149056,Bose SoundSport Headphones,1,99.99,01/12/19 11:18,"236 Hill St, Atlanta, GA 30301" +149057,Flatscreen TV,1,300,01/25/19 12:22,"357 Meadow St, New York City, NY 10001" +149058,Lightning Charging Cable,1,14.95,01/12/19 11:39,"351 Lake St, Dallas, TX 75001" +149059,AAA Batteries (4-pack),1,2.99,01/21/19 22:25,"162 Hill St, Austin, TX 73301" +149060,Apple Airpods Headphones,1,150,01/24/19 08:36,"802 13th St, Atlanta, GA 30301" +149061,ThinkPad Laptop,1,999.99,01/08/19 10:24,"351 Highland St, Los Angeles, CA 90001" +149062,Flatscreen TV,1,300,01/27/19 14:40,"812 6th St, Los Angeles, CA 90001" +149063,AA Batteries (4-pack),1,3.84,01/21/19 09:04,"670 10th St, San Francisco, CA 94016" +149064,AAA Batteries (4-pack),2,2.99,01/11/19 15:11,"487 Walnut St, Boston, MA 02215" +149065,27in FHD Monitor,1,149.99,01/05/19 22:25,"16 Main St, Atlanta, GA 30301" +149066,Google Phone,1,600,01/10/19 23:23,"508 Washington St, Seattle, WA 98101" +149067,AAA Batteries (4-pack),1,2.99,01/07/19 22:58,"916 1st St, New York City, NY 10001" +149068,34in Ultrawide Monitor,1,379.99,01/24/19 09:23,"654 Jefferson St, New York City, NY 10001" +149069,Lightning Charging Cable,1,14.95,01/02/19 09:54,"273 River St, Boston, MA 02215" +149070,USB-C Charging Cable,1,11.95,01/16/19 13:46,"577 Chestnut St, Atlanta, GA 30301" +149071,Apple Airpods Headphones,1,150,01/03/19 20:58,"715 Lincoln St, Los Angeles, CA 90001" +149072,Apple Airpods Headphones,1,150,01/02/19 08:27,"830 7th St, San Francisco, CA 94016" +149073,AA Batteries (4-pack),1,3.84,01/27/19 17:24,"541 Meadow St, San Francisco, CA 94016" +149074,Lightning Charging Cable,1,14.95,01/16/19 04:29,"522 Center St, Los Angeles, CA 90001" +149075,Bose SoundSport Headphones,1,99.99,01/20/19 20:14,"939 North St, San Francisco, CA 94016" +149076,AAA Batteries (4-pack),1,2.99,01/25/19 11:03,"385 Dogwood St, Boston, MA 02215" +149077,Apple Airpods Headphones,1,150,01/11/19 13:26,"457 Madison St, Los Angeles, CA 90001" +149078,Bose SoundSport Headphones,1,99.99,01/21/19 15:25,"520 8th St, Los Angeles, CA 90001" +149079,USB-C Charging Cable,1,11.95,01/22/19 10:41,"644 Lakeview St, Boston, MA 02215" +149080,Bose SoundSport Headphones,1,99.99,01/24/19 19:18,"223 Madison St, Boston, MA 02215" +149081,Flatscreen TV,1,300,01/06/19 15:10,"243 Cherry St, San Francisco, CA 94016" +149082,USB-C Charging Cable,1,11.95,01/20/19 16:18,"567 Maple St, Los Angeles, CA 90001" +149083,USB-C Charging Cable,3,11.95,01/11/19 14:11,"274 6th St, New York City, NY 10001" +149084,Apple Airpods Headphones,1,150,01/07/19 20:30,"933 North St, New York City, NY 10001" +149085,AA Batteries (4-pack),1,3.84,01/24/19 18:55,"164 Lakeview St, Portland, OR 97035" +149086,Wired Headphones,1,11.99,01/24/19 20:42,"166 Willow St, San Francisco, CA 94016" +149087,Bose SoundSport Headphones,1,99.99,01/03/19 18:15,"516 Walnut St, Los Angeles, CA 90001" +149088,ThinkPad Laptop,1,999.99,01/26/19 17:43,"448 Hickory St, Atlanta, GA 30301" +149089,Lightning Charging Cable,1,14.95,01/20/19 02:40,"792 Forest St, New York City, NY 10001" +149090,AA Batteries (4-pack),1,3.84,01/13/19 12:51,"42 5th St, Atlanta, GA 30301" +149091,20in Monitor,1,109.99,01/07/19 22:42,"98 Sunset St, Dallas, TX 75001" +149092,AA Batteries (4-pack),2,3.84,01/14/19 20:17,"819 South St, Los Angeles, CA 90001" +149093,Wired Headphones,1,11.99,01/13/19 18:53,"895 12th St, San Francisco, CA 94016" +149094,ThinkPad Laptop,1,999.99,01/17/19 21:54,"94 Adams St, New York City, NY 10001" +149095,Lightning Charging Cable,1,14.95,01/27/19 10:09,"993 6th St, San Francisco, CA 94016" +149096,27in FHD Monitor,1,149.99,01/14/19 10:25,"785 Lake St, San Francisco, CA 94016" +149097,Lightning Charging Cable,1,14.95,01/14/19 13:16,"494 14th St, Seattle, WA 98101" +149098,USB-C Charging Cable,1,11.95,01/29/19 11:09,"609 7th St, San Francisco, CA 94016" +149099,Bose SoundSport Headphones,1,99.99,01/15/19 21:00,"794 7th St, New York City, NY 10001" +149100,Apple Airpods Headphones,1,150,01/25/19 14:09,"792 Lake St, Portland, OR 97035" +149101,Wired Headphones,1,11.99,01/10/19 16:57,"828 Park St, Atlanta, GA 30301" +149102,20in Monitor,1,109.99,01/29/19 10:27,"791 Walnut St, San Francisco, CA 94016" +149103,Google Phone,1,600,01/01/19 18:56,"843 Lakeview St, Los Angeles, CA 90001" +149104,AAA Batteries (4-pack),1,2.99,01/29/19 10:44,"50 River St, San Francisco, CA 94016" +149105,Apple Airpods Headphones,1,150,01/13/19 18:48,"44 Maple St, New York City, NY 10001" +149106,Apple Airpods Headphones,1,150,01/20/19 08:52,"218 Hill St, Atlanta, GA 30301" +149107,Bose SoundSport Headphones,1,99.99,01/11/19 12:19,"555 Jefferson St, New York City, NY 10001" +149108,Macbook Pro Laptop,1,1700,01/16/19 08:52,"847 North St, New York City, NY 10001" +149109,Bose SoundSport Headphones,1,99.99,01/12/19 00:16,"451 West St, Boston, MA 02215" +149110,34in Ultrawide Monitor,1,379.99,01/19/19 17:29,"854 14th St, Austin, TX 73301" +149111,USB-C Charging Cable,1,11.95,01/08/19 19:33,"686 Washington St, Austin, TX 73301" +149112,USB-C Charging Cable,1,11.95,01/13/19 17:39,"819 Hickory St, Atlanta, GA 30301" +149113,Macbook Pro Laptop,1,1700,01/13/19 00:14,"311 14th St, San Francisco, CA 94016" +149114,AA Batteries (4-pack),1,3.84,01/31/19 11:59,"406 Spruce St, Portland, OR 97035" +149115,Lightning Charging Cable,1,14.95,01/05/19 18:41,"499 Hill St, Seattle, WA 98101" +149116,iPhone,1,700,01/08/19 00:29,"50 Meadow St, New York City, NY 10001" +149117,USB-C Charging Cable,1,11.95,01/08/19 18:11,"698 1st St, New York City, NY 10001" +149118,Macbook Pro Laptop,1,1700,01/06/19 03:07,"819 North St, Los Angeles, CA 90001" +149119,Flatscreen TV,1,300,01/03/19 11:48,"523 Walnut St, Los Angeles, CA 90001" +149120,Apple Airpods Headphones,1,150,01/21/19 12:28,"430 Spruce St, Dallas, TX 75001" +149121,Flatscreen TV,1,300,01/19/19 22:50,"438 Johnson St, Los Angeles, CA 90001" +149122,AA Batteries (4-pack),1,3.84,01/03/19 17:47,"108 Ridge St, New York City, NY 10001" +149123,Apple Airpods Headphones,1,150,01/04/19 17:45,"440 Lakeview St, New York City, NY 10001" +149124,Macbook Pro Laptop,1,1700,01/12/19 14:05,"539 Dogwood St, San Francisco, CA 94016" +149125,AA Batteries (4-pack),2,3.84,01/13/19 20:12,"91 Adams St, New York City, NY 10001" +149126,Flatscreen TV,1,300,01/24/19 13:29,"250 Walnut St, Los Angeles, CA 90001" +149127,Flatscreen TV,1,300,01/04/19 08:18,"955 Adams St, San Francisco, CA 94016" +149128,Bose SoundSport Headphones,1,99.99,01/20/19 05:46,"150 Lincoln St, New York City, NY 10001" +149129,AA Batteries (4-pack),4,3.84,01/13/19 17:10,"713 Sunset St, Los Angeles, CA 90001" +149130,27in 4K Gaming Monitor,1,389.99,01/31/19 00:37,"763 Hill St, Boston, MA 02215" +149131,Lightning Charging Cable,1,14.95,01/29/19 20:23,"654 Elm St, Portland, OR 97035" +149132,AA Batteries (4-pack),1,3.84,01/21/19 08:19,"752 Maple St, Portland, OR 97035" +149133,USB-C Charging Cable,1,11.95,01/28/19 17:17,"445 12th St, Seattle, WA 98101" +149134,Lightning Charging Cable,1,14.95,01/16/19 20:07,"509 Chestnut St, Atlanta, GA 30301" +149135,USB-C Charging Cable,2,11.95,01/02/19 12:14,"505 Johnson St, Portland, OR 97035" +149136,AA Batteries (4-pack),1,3.84,01/13/19 14:41,"182 Ridge St, Los Angeles, CA 90001" +149137,AAA Batteries (4-pack),1,2.99,01/12/19 18:41,"738 8th St, San Francisco, CA 94016" +149138,USB-C Charging Cable,1,11.95,01/08/19 15:29,"242 Maple St, Boston, MA 02215" +149139,34in Ultrawide Monitor,1,379.99,01/12/19 16:21,"372 Lake St, Seattle, WA 98101" +149140,34in Ultrawide Monitor,1,379.99,01/06/19 17:11,"25 Park St, Los Angeles, CA 90001" +149141,Lightning Charging Cable,1,14.95,01/11/19 20:35,"66 Lincoln St, Boston, MA 02215" +149142,AAA Batteries (4-pack),1,2.99,01/30/19 12:41,"893 7th St, San Francisco, CA 94016" +149143,Apple Airpods Headphones,1,150,01/25/19 10:46,"376 Jefferson St, Portland, OR 97035" +149144,Lightning Charging Cable,1,14.95,01/12/19 08:59,"636 Meadow St, New York City, NY 10001" +149145,Lightning Charging Cable,1,14.95,01/23/19 12:27,"363 Washington St, Seattle, WA 98101" +149146,iPhone,1,700,01/21/19 20:53,"528 Pine St, New York City, NY 10001" +149147,27in FHD Monitor,1,149.99,01/23/19 05:22,"717 Maple St, Portland, OR 97035" +149148,Bose SoundSport Headphones,1,99.99,01/28/19 19:26,"968 12th St, Atlanta, GA 30301" +149149,AA Batteries (4-pack),1,3.84,01/22/19 18:42,"430 Adams St, Atlanta, GA 30301" +149150,USB-C Charging Cable,1,11.95,01/12/19 13:28,"203 Jackson St, New York City, NY 10001" +149151,AA Batteries (4-pack),1,3.84,01/25/19 14:47,"41 Lincoln St, Los Angeles, CA 90001" +149152,34in Ultrawide Monitor,1,379.99,01/12/19 16:10,"544 11th St, San Francisco, CA 94016" +149153,Bose SoundSport Headphones,1,99.99,01/31/19 19:36,"644 8th St, Atlanta, GA 30301" +149154,34in Ultrawide Monitor,1,379.99,01/02/19 00:38,"943 West St, Portland, OR 97035" +149155,USB-C Charging Cable,1,11.95,01/09/19 03:40,"181 Elm St, Los Angeles, CA 90001" +149156,Apple Airpods Headphones,1,150,01/12/19 12:43,"385 Park St, Seattle, WA 98101" +149157,Lightning Charging Cable,2,14.95,01/19/19 20:59,"22 9th St, Boston, MA 02215" +149158,AA Batteries (4-pack),1,3.84,01/17/19 20:33,"73 Willow St, New York City, NY 10001" +149159,Apple Airpods Headphones,1,150,01/03/19 11:44,"979 Jefferson St, Portland, OR 97035" +149160,Vareebadd Phone,1,400,01/09/19 14:05,"984 12th St, New York City, NY 10001" +149161,Lightning Charging Cable,1,14.95,01/27/19 01:24,"276 West St, Seattle, WA 98101" +149162,Wired Headphones,1,11.99,01/16/19 21:19,"941 Meadow St, Dallas, TX 75001" +149163,Wired Headphones,1,11.99,01/12/19 13:27,"315 North St, Dallas, TX 75001" +149164,34in Ultrawide Monitor,1,379.99,01/25/19 19:05,"603 Lake St, Boston, MA 02215" +149165,Apple Airpods Headphones,1,150,01/23/19 14:24,"165 Jefferson St, Seattle, WA 98101" +149166,AAA Batteries (4-pack),1,2.99,01/28/19 16:49,"879 14th St, San Francisco, CA 94016" +149167,Wired Headphones,1,11.99,01/06/19 21:28,"777 Hill St, Austin, TX 73301" +149168,AAA Batteries (4-pack),1,2.99,01/24/19 12:46,"748 Elm St, Dallas, TX 75001" +149169,iPhone,1,700,01/12/19 21:53,"961 Hill St, Austin, TX 73301" +149170,USB-C Charging Cable,1,11.95,01/08/19 10:56,"648 Lake St, San Francisco, CA 94016" +149171,Wired Headphones,1,11.99,01/28/19 22:35,"796 5th St, San Francisco, CA 94016" +149172,Lightning Charging Cable,1,14.95,01/26/19 08:58,"281 Cedar St, Los Angeles, CA 90001" +149173,iPhone,1,700,01/17/19 18:35,"926 4th St, Los Angeles, CA 90001" +149174,AAA Batteries (4-pack),2,2.99,01/08/19 20:00,"874 Lake St, Boston, MA 02215" +149175,AAA Batteries (4-pack),1,2.99,01/03/19 18:09,"248 Lincoln St, Austin, TX 73301" +149176,AAA Batteries (4-pack),1,2.99,01/09/19 19:53,"498 8th St, San Francisco, CA 94016" +149177,iPhone,1,700,01/10/19 21:04,"779 Washington St, Dallas, TX 75001" +149178,Lightning Charging Cable,1,14.95,01/01/19 19:20,"311 Adams St, Los Angeles, CA 90001" +149179,Bose SoundSport Headphones,1,99.99,01/29/19 18:48,"112 Lincoln St, San Francisco, CA 94016" +149179,iPhone,1,700,01/29/19 18:48,"112 Lincoln St, San Francisco, CA 94016" +149180,27in 4K Gaming Monitor,1,389.99,01/05/19 09:33,"853 Maple St, Dallas, TX 75001" +149181,Bose SoundSport Headphones,1,99.99,01/05/19 13:11,"552 North St, Dallas, TX 75001" +149182,Wired Headphones,1,11.99,01/17/19 10:54,"187 Cedar St, New York City, NY 10001" +149183,Wired Headphones,1,11.99,01/14/19 13:18,"472 Lake St, Austin, TX 73301" +149184,27in FHD Monitor,1,149.99,01/21/19 21:00,"580 2nd St, Dallas, TX 75001" +149185,Bose SoundSport Headphones,1,99.99,01/12/19 14:48,"683 1st St, Los Angeles, CA 90001" +149186,27in FHD Monitor,1,149.99,01/28/19 21:00,"936 Park St, Dallas, TX 75001" +149187,Lightning Charging Cable,1,14.95,01/30/19 20:16,"558 Main St, Seattle, WA 98101" +149188,Google Phone,1,600,01/22/19 07:18,"617 2nd St, Atlanta, GA 30301" +149189,Google Phone,1,600,01/07/19 20:13,"117 Lake St, Boston, MA 02215" +149189,Bose SoundSport Headphones,1,99.99,01/07/19 20:13,"117 Lake St, Boston, MA 02215" +149190,AA Batteries (4-pack),1,3.84,01/02/19 23:39,"604 2nd St, Los Angeles, CA 90001" +149191,27in FHD Monitor,1,149.99,01/18/19 21:09,"373 Lincoln St, Portland, OR 97035" +149192,AA Batteries (4-pack),4,3.84,01/23/19 10:53,"162 Church St, New York City, NY 10001" +149193,Lightning Charging Cable,1,14.95,01/28/19 10:44,"366 12th St, New York City, NY 10001" +149194,AAA Batteries (4-pack),1,2.99,01/20/19 21:04,"149 13th St, Los Angeles, CA 90001" +149195,iPhone,1,700,01/01/19 08:43,"793 Park St, Austin, TX 73301" +149195,Lightning Charging Cable,1,14.95,01/01/19 08:43,"793 Park St, Austin, TX 73301" +149196,USB-C Charging Cable,1,11.95,01/07/19 10:36,"402 5th St, Boston, MA 02215" +149197,Lightning Charging Cable,1,14.95,01/03/19 23:58,"305 Maple St, San Francisco, CA 94016" +149198,ThinkPad Laptop,1,999.99,01/02/19 22:09,"79 Highland St, New York City, NY 10001" +149199,Apple Airpods Headphones,1,150,01/15/19 00:25,"625 Adams St, Boston, MA 02215" +149200,AA Batteries (4-pack),1,3.84,01/20/19 12:00,"474 West St, Los Angeles, CA 90001" +149201,AAA Batteries (4-pack),1,2.99,01/05/19 22:48,"581 Lincoln St, San Francisco, CA 94016" +149202,AA Batteries (4-pack),1,3.84,01/17/19 18:17,"817 5th St, San Francisco, CA 94016" +149203,Bose SoundSport Headphones,1,99.99,01/06/19 14:18,"457 Lakeview St, Dallas, TX 75001" +149204,Wired Headphones,1,11.99,01/14/19 20:18,"895 Spruce St, Boston, MA 02215" +149205,Bose SoundSport Headphones,1,99.99,01/17/19 22:16,"170 Madison St, Seattle, WA 98101" +149206,AAA Batteries (4-pack),1,2.99,01/16/19 11:34,"298 12th St, Atlanta, GA 30301" +149207,Bose SoundSport Headphones,1,99.99,01/27/19 18:11,"820 Cedar St, Seattle, WA 98101" +149208,AA Batteries (4-pack),1,3.84,01/06/19 09:19,"614 Wilson St, Los Angeles, CA 90001" +149209,USB-C Charging Cable,1,11.95,01/18/19 17:06,"574 11th St, New York City, NY 10001" +149210,Apple Airpods Headphones,1,150,01/06/19 14:19,"244 5th St, San Francisco, CA 94016" +149211,Bose SoundSport Headphones,1,99.99,01/28/19 20:38,"599 River St, Atlanta, GA 30301" +149212,ThinkPad Laptop,1,999.99,01/08/19 23:11,"995 12th St, Los Angeles, CA 90001" +149213,AAA Batteries (4-pack),1,2.99,01/25/19 06:47,"469 Cherry St, New York City, NY 10001" +149214,Lightning Charging Cable,1,14.95,01/02/19 12:37,"347 Washington St, Seattle, WA 98101" +149215,iPhone,1,700,01/18/19 09:07,"688 Sunset St, Dallas, TX 75001" +149216,Bose SoundSport Headphones,1,99.99,01/15/19 11:43,"96 8th St, Boston, MA 02215" +149217,Wired Headphones,1,11.99,01/18/19 10:40,"10 West St, San Francisco, CA 94016" +149218,AAA Batteries (4-pack),1,2.99,01/04/19 23:53,"356 Hill St, Boston, MA 02215" +149219,iPhone,1,700,01/08/19 05:10,"111 1st St, Boston, MA 02215" +149220,AA Batteries (4-pack),1,3.84,01/19/19 13:49,"165 6th St, Boston, MA 02215" +149221,USB-C Charging Cable,1,11.95,01/03/19 16:45,"346 4th St, Boston, MA 02215" +149222,Wired Headphones,1,11.99,01/13/19 15:20,"914 Wilson St, San Francisco, CA 94016" +149223,Macbook Pro Laptop,1,1700,01/09/19 11:27,"606 Madison St, Atlanta, GA 30301" +149224,27in 4K Gaming Monitor,1,389.99,02/01/19 01:12,"916 8th St, Boston, MA 02215" +149225,Wired Headphones,1,11.99,01/07/19 15:47,"56 1st St, San Francisco, CA 94016" +149226,Lightning Charging Cable,1,14.95,01/28/19 10:08,"950 Meadow St, San Francisco, CA 94016" +149227,34in Ultrawide Monitor,1,379.99,01/11/19 15:01,"483 4th St, Portland, OR 97035" +149228,AA Batteries (4-pack),2,3.84,01/05/19 17:53,"151 Sunset St, New York City, NY 10001" +149229,Bose SoundSport Headphones,1,99.99,01/06/19 20:20,"312 Park St, Los Angeles, CA 90001" +149230,Wired Headphones,1,11.99,01/05/19 20:03,"235 2nd St, Los Angeles, CA 90001" +149231,Wired Headphones,1,11.99,01/12/19 17:03,"929 Maple St, Los Angeles, CA 90001" +149232,iPhone,1,700,01/11/19 15:02,"582 Highland St, New York City, NY 10001" +149233,AA Batteries (4-pack),1,3.84,01/10/19 01:15,"594 Cherry St, Seattle, WA 98101" +149234,ThinkPad Laptop,1,999.99,01/29/19 19:24,"983 Center St, Austin, TX 73301" +149235,USB-C Charging Cable,1,11.95,01/18/19 11:10,"430 Ridge St, Los Angeles, CA 90001" +149236,AA Batteries (4-pack),3,3.84,01/22/19 10:56,"299 Jackson St, Seattle, WA 98101" +149237,USB-C Charging Cable,1,11.95,01/26/19 08:27,"905 Center St, Dallas, TX 75001" +149238,USB-C Charging Cable,2,11.95,01/18/19 18:14,"788 Adams St, Atlanta, GA 30301" +149239,Bose SoundSport Headphones,1,99.99,01/23/19 19:39,"293 North St, Los Angeles, CA 90001" +149240,Wired Headphones,1,11.99,01/30/19 13:05,"768 11th St, Dallas, TX 75001" +149241,Wired Headphones,1,11.99,01/28/19 19:29,"407 Hill St, Portland, OR 97035" +149242,Wired Headphones,1,11.99,01/20/19 10:59,"17 12th St, San Francisco, CA 94016" +149243,Wired Headphones,1,11.99,01/11/19 18:59,"198 Jackson St, Los Angeles, CA 90001" +149244,USB-C Charging Cable,1,11.95,01/03/19 08:13,"107 Pine St, San Francisco, CA 94016" +149245,27in FHD Monitor,1,149.99,01/17/19 16:50,"81 South St, Boston, MA 02215" +149246,AA Batteries (4-pack),1,3.84,01/13/19 11:38,"347 12th St, Portland, OR 97035" +149247,Bose SoundSport Headphones,1,99.99,01/15/19 12:55,"880 Johnson St, New York City, NY 10001" +149248,Vareebadd Phone,1,400,01/02/19 12:04,"580 Meadow St, Los Angeles, CA 90001" +149249,Lightning Charging Cable,1,14.95,01/08/19 16:38,"470 Pine St, Seattle, WA 98101" +149250,Lightning Charging Cable,1,14.95,01/17/19 17:09,"769 8th St, San Francisco, CA 94016" +149251,Apple Airpods Headphones,1,150,01/26/19 08:01,"801 Meadow St, New York City, NY 10001" +149252,Bose SoundSport Headphones,1,99.99,01/12/19 10:22,"883 Adams St, Seattle, WA 98101" +149253,AA Batteries (4-pack),2,3.84,01/31/19 21:05,"963 Willow St, New York City, NY 10001" +149254,iPhone,1,700,01/05/19 14:30,"653 1st St, San Francisco, CA 94016" +149255,Bose SoundSport Headphones,1,99.99,01/18/19 17:53,"882 Sunset St, Atlanta, GA 30301" +149256,Bose SoundSport Headphones,1,99.99,01/23/19 22:13,"127 Madison St, Seattle, WA 98101" +149257,USB-C Charging Cable,1,11.95,01/05/19 18:11,"866 Hickory St, Austin, TX 73301" +149258,USB-C Charging Cable,1,11.95,01/21/19 03:06,"378 Center St, New York City, NY 10001" +149259,Bose SoundSport Headphones,1,99.99,01/08/19 18:24,"611 14th St, Boston, MA 02215" +149260,Apple Airpods Headphones,1,150,01/14/19 15:13,"826 10th St, San Francisco, CA 94016" +149261,Apple Airpods Headphones,2,150,01/01/19 23:45,"59 Dogwood St, Austin, TX 73301" +149262,Apple Airpods Headphones,1,150,01/24/19 09:57,"812 Lakeview St, San Francisco, CA 94016" +149263,Lightning Charging Cable,1,14.95,01/25/19 11:24,"697 Washington St, Seattle, WA 98101" +149264,iPhone,1,700,01/07/19 17:26,"579 Elm St, Seattle, WA 98101" +149265,27in 4K Gaming Monitor,1,389.99,01/23/19 17:03,"228 River St, Seattle, WA 98101" +149266,AA Batteries (4-pack),1,3.84,01/23/19 15:53,"489 Hickory St, New York City, NY 10001" +149267,USB-C Charging Cable,1,11.95,01/21/19 01:01,"107 Hill St, Boston, MA 02215" +149268,27in FHD Monitor,1,149.99,01/30/19 22:49,"157 Forest St, Atlanta, GA 30301" +149269,AA Batteries (4-pack),1,3.84,01/28/19 19:00,"178 Adams St, Seattle, WA 98101" +149270,AAA Batteries (4-pack),1,2.99,01/19/19 15:36,"234 Jackson St, New York City, NY 10001" +149271,iPhone,1,700,01/18/19 14:00,"849 13th St, Atlanta, GA 30301" +149271,Lightning Charging Cable,1,14.95,01/18/19 14:00,"849 13th St, Atlanta, GA 30301" +149272,Macbook Pro Laptop,1,1700,01/15/19 00:21,"124 8th St, San Francisco, CA 94016" +149273,AA Batteries (4-pack),1,3.84,01/30/19 12:25,"164 Dogwood St, Boston, MA 02215" +149274,Bose SoundSport Headphones,1,99.99,01/06/19 15:25,"738 Hill St, New York City, NY 10001" +149275,Apple Airpods Headphones,1,150,01/24/19 12:47,"54 Meadow St, Los Angeles, CA 90001" +149276,Macbook Pro Laptop,1,1700,01/30/19 00:32,"696 Jefferson St, Los Angeles, CA 90001" +149277,AA Batteries (4-pack),1,3.84,01/21/19 23:17,"396 8th St, Atlanta, GA 30301" +149278,34in Ultrawide Monitor,1,379.99,01/12/19 20:04,"515 Spruce St, Dallas, TX 75001" +149279,AAA Batteries (4-pack),1,2.99,01/03/19 17:23,"697 Sunset St, Atlanta, GA 30301" +149280,27in FHD Monitor,1,149.99,01/23/19 09:22,"829 River St, New York City, NY 10001" +149281,AA Batteries (4-pack),1,3.84,01/19/19 08:24,"718 Lincoln St, New York City, NY 10001" +149282,Apple Airpods Headphones,1,150,01/04/19 11:43,"928 2nd St, Seattle, WA 98101" +149283,Apple Airpods Headphones,1,150,01/05/19 19:30,"58 Spruce St, Austin, TX 73301" +149284,AAA Batteries (4-pack),1,2.99,01/07/19 11:59,"224 Elm St, Los Angeles, CA 90001" +149285,Wired Headphones,1,11.99,01/10/19 14:50,"897 9th St, San Francisco, CA 94016" +149286,Bose SoundSport Headphones,1,99.99,01/16/19 12:05,"871 11th St, Boston, MA 02215" +149287,USB-C Charging Cable,1,11.95,01/03/19 12:33,"733 Maple St, Los Angeles, CA 90001" +149288,Wired Headphones,1,11.99,01/01/19 09:14,"882 Jefferson St, Dallas, TX 75001" +149289,Bose SoundSport Headphones,2,99.99,01/11/19 22:32,"595 Lakeview St, Atlanta, GA 30301" +149290,27in 4K Gaming Monitor,1,389.99,01/12/19 13:33,"494 Ridge St, San Francisco, CA 94016" +149291,Lightning Charging Cable,2,14.95,01/24/19 06:59,"914 10th St, Boston, MA 02215" +149292,Lightning Charging Cable,1,14.95,01/17/19 12:31,"235 14th St, New York City, NY 10001" +149293,Lightning Charging Cable,1,14.95,01/23/19 13:27,"37 6th St, Dallas, TX 75001" +149294,Google Phone,1,600,01/25/19 21:26,"159 Hill St, Boston, MA 02215" +149295,AA Batteries (4-pack),1,3.84,01/26/19 10:28,"219 Pine St, New York City, NY 10001" +149296,Flatscreen TV,1,300,01/25/19 14:45,"977 Dogwood St, Boston, MA 02215" +149297,Flatscreen TV,1,300,01/16/19 14:43,"829 Pine St, New York City, NY 10001" +149298,AA Batteries (4-pack),1,3.84,01/14/19 17:48,"322 Cedar St, Los Angeles, CA 90001" +149299,Lightning Charging Cable,1,14.95,01/02/19 20:59,"241 Dogwood St, San Francisco, CA 94016" +149300,Lightning Charging Cable,1,14.95,01/18/19 11:52,"566 Spruce St, Boston, MA 02215" +149301,Bose SoundSport Headphones,1,99.99,01/28/19 16:38,"24 Center St, Seattle, WA 98101" +149302,20in Monitor,1,109.99,01/21/19 23:38,"716 Forest St, New York City, NY 10001" +149303,27in FHD Monitor,1,149.99,01/07/19 21:10,"780 9th St, San Francisco, CA 94016" +149304,AA Batteries (4-pack),1,3.84,01/11/19 14:23,"590 Highland St, Austin, TX 73301" +149305,Wired Headphones,1,11.99,01/18/19 15:28,"950 Lake St, Atlanta, GA 30301" +149306,20in Monitor,1,109.99,01/08/19 12:40,"142 14th St, Seattle, WA 98101" +149307,AA Batteries (4-pack),1,3.84,01/18/19 21:25,"278 Jackson St, New York City, NY 10001" +149308,Macbook Pro Laptop,1,1700,01/23/19 10:42,"834 13th St, Boston, MA 02215" +149309,AA Batteries (4-pack),1,3.84,01/11/19 17:48,"984 Park St, Portland, OR 97035" +149310,Apple Airpods Headphones,1,150,01/27/19 22:14,"422 West St, Portland, OR 97035" +149311,Lightning Charging Cable,1,14.95,01/19/19 23:51,"722 Chestnut St, Los Angeles, CA 90001" +149312,USB-C Charging Cable,1,11.95,01/11/19 20:26,"390 Madison St, San Francisco, CA 94016" +149313,Wired Headphones,1,11.99,01/19/19 11:31,"431 Pine St, San Francisco, CA 94016" +149314,Flatscreen TV,1,300,01/15/19 16:24,"612 Sunset St, Los Angeles, CA 90001" +149315,Lightning Charging Cable,1,14.95,01/03/19 09:06,"390 12th St, New York City, NY 10001" +149316,ThinkPad Laptop,1,999.99,01/29/19 15:22,"972 Highland St, Los Angeles, CA 90001" +149317,27in FHD Monitor,1,149.99,01/07/19 14:08,"151 10th St, Dallas, TX 75001" +149318,27in 4K Gaming Monitor,1,389.99,01/06/19 07:38,"79 7th St, San Francisco, CA 94016" +149319,USB-C Charging Cable,1,11.95,01/19/19 18:07,"532 Lakeview St, San Francisco, CA 94016" +149320,20in Monitor,1,109.99,01/17/19 10:33,"495 Willow St, San Francisco, CA 94016" +149321,Wired Headphones,1,11.99,01/10/19 21:00,"222 West St, Los Angeles, CA 90001" +149322,USB-C Charging Cable,1,11.95,01/30/19 12:53,"877 Forest St, Portland, OR 97035" +149323,Apple Airpods Headphones,1,150,01/21/19 12:15,"427 Adams St, New York City, NY 10001" +149324,USB-C Charging Cable,1,11.95,01/07/19 15:43,"431 14th St, New York City, NY 10001" +149325,Wired Headphones,1,11.99,01/24/19 17:06,"702 Elm St, Portland, ME 04101" +149326,34in Ultrawide Monitor,1,379.99,01/18/19 10:11,"457 Jefferson St, New York City, NY 10001" +149327,USB-C Charging Cable,1,11.95,01/08/19 02:48,"303 Hill St, Boston, MA 02215" +149328,USB-C Charging Cable,1,11.95,01/09/19 10:11,"83 Park St, Seattle, WA 98101" +149329,AAA Batteries (4-pack),1,2.99,01/30/19 17:18,"974 Ridge St, San Francisco, CA 94016" +149330,AA Batteries (4-pack),1,3.84,01/08/19 13:43,"755 Lake St, Los Angeles, CA 90001" +149331,Apple Airpods Headphones,1,150,01/07/19 18:02,"700 Chestnut St, San Francisco, CA 94016" +149332,Lightning Charging Cable,1,14.95,01/25/19 22:09,"982 Meadow St, Los Angeles, CA 90001" +149333,Wired Headphones,1,11.99,01/19/19 15:17,"981 Pine St, Los Angeles, CA 90001" +149334,Wired Headphones,1,11.99,01/19/19 14:02,"379 Lakeview St, Portland, OR 97035" +149335,20in Monitor,1,109.99,01/30/19 20:17,"106 2nd St, San Francisco, CA 94016" +149336,USB-C Charging Cable,1,11.95,01/19/19 22:40,"412 Center St, Los Angeles, CA 90001" +149337,Wired Headphones,1,11.99,01/22/19 23:29,"446 Walnut St, San Francisco, CA 94016" +149338,AA Batteries (4-pack),1,3.84,01/21/19 11:39,"892 Walnut St, Boston, MA 02215" +149339,AAA Batteries (4-pack),1,2.99,01/03/19 12:27,"921 Cedar St, Portland, OR 97035" +149340,Google Phone,1,600,01/01/19 11:00,"562 Meadow St, Seattle, WA 98101" +149340,Bose SoundSport Headphones,1,99.99,01/01/19 11:00,"562 Meadow St, Seattle, WA 98101" +149341,AAA Batteries (4-pack),1,2.99,01/03/19 16:07,"155 Lake St, Atlanta, GA 30301" +149342,Apple Airpods Headphones,1,150,01/30/19 15:24,"955 Adams St, Los Angeles, CA 90001" +149343,USB-C Charging Cable,1,11.95,01/07/19 08:28,"738 Johnson St, San Francisco, CA 94016" +149344,AA Batteries (4-pack),1,3.84,01/17/19 13:20,"871 Spruce St, Boston, MA 02215" +149345,34in Ultrawide Monitor,1,379.99,01/11/19 18:08,"34 Madison St, Austin, TX 73301" +149346,AA Batteries (4-pack),2,3.84,01/12/19 05:56,"450 Lakeview St, Austin, TX 73301" +149347,AAA Batteries (4-pack),1,2.99,01/21/19 21:07,"871 8th St, Dallas, TX 75001" +149348,Wired Headphones,2,11.99,01/27/19 19:53,"484 Adams St, San Francisco, CA 94016" +149349,20in Monitor,1,109.99,01/06/19 15:08,"632 River St, Austin, TX 73301" +149350,Apple Airpods Headphones,1,150,01/18/19 12:22,"671 Madison St, San Francisco, CA 94016" +149351,USB-C Charging Cable,1,11.95,01/24/19 13:15,"385 4th St, San Francisco, CA 94016" +149352,34in Ultrawide Monitor,1,379.99,01/11/19 09:40,"516 South St, Los Angeles, CA 90001" +149353,34in Ultrawide Monitor,1,379.99,01/13/19 13:22,"4 5th St, Boston, MA 02215" +149354,AAA Batteries (4-pack),2,2.99,01/15/19 17:54,"91 South St, Los Angeles, CA 90001" +149355,27in 4K Gaming Monitor,1,389.99,01/30/19 14:21,"510 Washington St, San Francisco, CA 94016" +149355,USB-C Charging Cable,1,11.95,01/30/19 14:21,"510 Washington St, San Francisco, CA 94016" +149356,USB-C Charging Cable,1,11.95,01/02/19 18:30,"148 Cedar St, San Francisco, CA 94016" +149357,AA Batteries (4-pack),2,3.84,01/18/19 10:53,"293 Lake St, San Francisco, CA 94016" +149358,Lightning Charging Cable,1,14.95,01/18/19 14:45,"424 West St, Boston, MA 02215" +149359,Lightning Charging Cable,1,14.95,01/20/19 22:57,"704 Madison St, San Francisco, CA 94016" +149360,Lightning Charging Cable,1,14.95,01/20/19 11:35,"299 North St, San Francisco, CA 94016" +149361,Wired Headphones,1,11.99,01/21/19 08:46,"87 North St, Los Angeles, CA 90001" +149362,Lightning Charging Cable,1,14.95,01/28/19 17:30,"850 Jackson St, Austin, TX 73301" +149363,Wired Headphones,1,11.99,01/27/19 11:13,"388 Lincoln St, Austin, TX 73301" +149364,Wired Headphones,2,11.99,01/29/19 19:02,"757 Center St, Dallas, TX 75001" +149365,Wired Headphones,1,11.99,01/07/19 18:27,"311 Washington St, San Francisco, CA 94016" +149366,USB-C Charging Cable,1,11.95,01/05/19 07:22,"179 Lake St, Austin, TX 73301" +,,,,, +149367,AAA Batteries (4-pack),1,2.99,01/17/19 04:40,"866 13th St, Austin, TX 73301" +149368,Bose SoundSport Headphones,1,99.99,01/06/19 22:02,"69 5th St, New York City, NY 10001" +149369,AAA Batteries (4-pack),2,2.99,01/13/19 20:17,"485 West St, San Francisco, CA 94016" +149370,27in FHD Monitor,1,149.99,01/03/19 21:52,"595 South St, New York City, NY 10001" +149371,34in Ultrawide Monitor,1,379.99,01/07/19 10:16,"487 South St, San Francisco, CA 94016" +149372,Bose SoundSport Headphones,1,99.99,01/17/19 15:19,"444 Sunset St, Dallas, TX 75001" +149373,Macbook Pro Laptop,1,1700,01/26/19 17:06,"20 Walnut St, New York City, NY 10001" +149374,Lightning Charging Cable,1,14.95,01/19/19 11:33,"180 Adams St, Dallas, TX 75001" +149375,27in FHD Monitor,1,149.99,01/10/19 05:03,"923 Forest St, Seattle, WA 98101" +149376,Lightning Charging Cable,1,14.95,01/05/19 22:25,"287 Walnut St, San Francisco, CA 94016" +149377,AA Batteries (4-pack),1,3.84,01/20/19 19:15,"119 Hickory St, San Francisco, CA 94016" +149378,Apple Airpods Headphones,1,150,01/12/19 20:10,"571 Meadow St, Boston, MA 02215" +149379,Wired Headphones,1,11.99,01/01/19 21:12,"223 Meadow St, San Francisco, CA 94016" +149380,AA Batteries (4-pack),1,3.84,01/11/19 12:22,"179 13th St, Dallas, TX 75001" +149381,Apple Airpods Headphones,1,150,01/25/19 20:23,"216 10th St, Seattle, WA 98101" +149382,Lightning Charging Cable,1,14.95,01/03/19 21:08,"931 9th St, Portland, OR 97035" +149383,Wired Headphones,1,11.99,01/13/19 13:23,"97 River St, Austin, TX 73301" +149384,ThinkPad Laptop,1,999.99,01/26/19 19:38,"838 7th St, Dallas, TX 75001" +149385,AA Batteries (4-pack),1,3.84,01/12/19 15:00,"115 Park St, Atlanta, GA 30301" +149386,Lightning Charging Cable,2,14.95,01/30/19 13:15,"390 2nd St, Atlanta, GA 30301" +149387,Apple Airpods Headphones,1,150,01/09/19 15:27,"586 Cedar St, New York City, NY 10001" +149388,27in FHD Monitor,1,149.99,01/16/19 07:46,"17 Park St, Boston, MA 02215" +149389,Lightning Charging Cable,1,14.95,01/18/19 19:08,"979 14th St, San Francisco, CA 94016" +149390,USB-C Charging Cable,1,11.95,01/13/19 07:01,"497 Spruce St, Atlanta, GA 30301" +149391,AA Batteries (4-pack),3,3.84,01/28/19 10:59,"18 Center St, Boston, MA 02215" +149392,ThinkPad Laptop,1,999.99,01/05/19 14:25,"969 Forest St, Dallas, TX 75001" +149393,Lightning Charging Cable,1,14.95,01/19/19 13:58,"915 Willow St, San Francisco, CA 94016" +149394,Wired Headphones,1,11.99,01/06/19 07:37,"751 West St, Seattle, WA 98101" +149395,Apple Airpods Headphones,1,150,01/19/19 04:13,"865 Sunset St, Dallas, TX 75001" +149396,USB-C Charging Cable,1,11.95,01/18/19 16:51,"363 North St, Portland, OR 97035" +149397,Apple Airpods Headphones,1,150,01/16/19 09:22,"138 West St, Seattle, WA 98101" +149398,Wired Headphones,1,11.99,01/14/19 05:53,"838 Cherry St, Seattle, WA 98101" +149399,27in 4K Gaming Monitor,1,389.99,01/31/19 00:16,"487 Lake St, Dallas, TX 75001" +149400,USB-C Charging Cable,1,11.95,01/05/19 15:48,"938 6th St, San Francisco, CA 94016" +149401,AA Batteries (4-pack),1,3.84,01/17/19 11:26,"199 Hill St, Atlanta, GA 30301" +149402,Wired Headphones,1,11.99,01/13/19 15:37,"752 Willow St, Dallas, TX 75001" +149403,Bose SoundSport Headphones,1,99.99,01/05/19 12:28,"434 10th St, Dallas, TX 75001" +149404,27in 4K Gaming Monitor,1,389.99,01/15/19 21:34,"369 9th St, Seattle, WA 98101" +149405,Bose SoundSport Headphones,1,99.99,01/19/19 16:38,"680 River St, San Francisco, CA 94016" +149406,Bose SoundSport Headphones,1,99.99,01/15/19 06:18,"134 Spruce St, San Francisco, CA 94016" +149407,Apple Airpods Headphones,1,150,01/30/19 20:40,"6 Wilson St, San Francisco, CA 94016" +149408,ThinkPad Laptop,1,999.99,01/28/19 09:49,"172 Meadow St, Atlanta, GA 30301" +149409,Apple Airpods Headphones,1,150,01/14/19 17:53,"898 Highland St, San Francisco, CA 94016" +149410,USB-C Charging Cable,1,11.95,01/25/19 18:24,"243 Madison St, Austin, TX 73301" +149411,Wired Headphones,2,11.99,01/26/19 21:15,"862 Meadow St, Dallas, TX 75001" +149412,Wired Headphones,1,11.99,01/06/19 10:54,"153 Washington St, Boston, MA 02215" +149413,AA Batteries (4-pack),3,3.84,01/02/19 12:47,"411 Meadow St, Dallas, TX 75001" +149414,USB-C Charging Cable,1,11.95,01/16/19 10:53,"862 Walnut St, San Francisco, CA 94016" +149415,Macbook Pro Laptop,1,1700,01/16/19 10:13,"126 Highland St, Austin, TX 73301" +149416,34in Ultrawide Monitor,1,379.99,01/23/19 13:34,"405 Hickory St, Seattle, WA 98101" +149417,27in FHD Monitor,1,149.99,01/14/19 14:03,"2 12th St, Atlanta, GA 30301" +149418,27in 4K Gaming Monitor,1,389.99,01/23/19 20:49,"718 5th St, Seattle, WA 98101" +149419,AAA Batteries (4-pack),1,2.99,01/13/19 09:37,"552 Adams St, Dallas, TX 75001" +149420,34in Ultrawide Monitor,1,379.99,01/09/19 14:02,"264 Maple St, New York City, NY 10001" +149421,USB-C Charging Cable,1,11.95,01/26/19 13:39,"738 5th St, Austin, TX 73301" +149422,AA Batteries (4-pack),1,3.84,01/26/19 11:08,"586 Main St, Seattle, WA 98101" +149423,27in FHD Monitor,1,149.99,01/19/19 14:58,"225 Lincoln St, Dallas, TX 75001" +149424,Bose SoundSport Headphones,1,99.99,01/29/19 06:18,"120 12th St, New York City, NY 10001" +149424,iPhone,1,700,01/29/19 06:18,"120 12th St, New York City, NY 10001" +149425,20in Monitor,1,109.99,01/22/19 19:41,"602 Meadow St, Boston, MA 02215" +149426,Apple Airpods Headphones,1,150,01/02/19 08:12,"942 Meadow St, Austin, TX 73301" +149427,27in FHD Monitor,1,149.99,01/18/19 10:03,"364 Meadow St, San Francisco, CA 94016" +149428,Macbook Pro Laptop,1,1700,01/02/19 19:38,"351 Church St, San Francisco, CA 94016" +149429,USB-C Charging Cable,1,11.95,01/20/19 15:15,"812 Maple St, New York City, NY 10001" +149430,iPhone,1,700,01/13/19 23:32,"201 Spruce St, Portland, ME 04101" +149430,Wired Headphones,1,11.99,01/13/19 23:32,"201 Spruce St, Portland, ME 04101" +149431,ThinkPad Laptop,1,999.99,01/26/19 15:25,"655 Cedar St, Los Angeles, CA 90001" +149432,Lightning Charging Cable,1,14.95,01/08/19 21:30,"675 Lakeview St, Boston, MA 02215" +149433,USB-C Charging Cable,1,11.95,01/15/19 12:53,"522 Willow St, Seattle, WA 98101" +149434,AA Batteries (4-pack),1,3.84,01/04/19 08:20,"47 2nd St, San Francisco, CA 94016" +149435,34in Ultrawide Monitor,1,379.99,01/22/19 07:44,"747 Dogwood St, Los Angeles, CA 90001" +149436,Bose SoundSport Headphones,1,99.99,01/06/19 20:45,"788 2nd St, San Francisco, CA 94016" +149437,AA Batteries (4-pack),1,3.84,01/11/19 22:38,"689 Church St, Dallas, TX 75001" +149438,Wired Headphones,2,11.99,01/22/19 07:28,"841 Elm St, Boston, MA 02215" +149439,Bose SoundSport Headphones,1,99.99,01/11/19 19:50,"562 Meadow St, Boston, MA 02215" +149440,USB-C Charging Cable,1,11.95,01/26/19 13:23,"502 Cherry St, New York City, NY 10001" +149441,Apple Airpods Headphones,1,150,01/14/19 18:27,"445 11th St, Boston, MA 02215" +149442,Apple Airpods Headphones,1,150,01/05/19 15:37,"75 11th St, San Francisco, CA 94016" +149443,34in Ultrawide Monitor,1,379.99,01/09/19 04:25,"443 Jefferson St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +149444,AAA Batteries (4-pack),2,2.99,01/21/19 04:41,"519 8th St, Boston, MA 02215" +149445,USB-C Charging Cable,1,11.95,01/20/19 00:53,"835 8th St, San Francisco, CA 94016" +149446,Lightning Charging Cable,1,14.95,01/14/19 15:38,"636 Hill St, San Francisco, CA 94016" +149447,AAA Batteries (4-pack),2,2.99,01/04/19 21:15,"452 13th St, Los Angeles, CA 90001" +149448,Flatscreen TV,1,300,01/10/19 00:17,"291 River St, New York City, NY 10001" +149449,Wired Headphones,1,11.99,01/14/19 22:15,"59 Elm St, Atlanta, GA 30301" +149450,Lightning Charging Cable,1,14.95,01/18/19 20:02,"622 South St, Boston, MA 02215" +149451,iPhone,1,700,01/16/19 09:51,"449 2nd St, San Francisco, CA 94016" +149451,Lightning Charging Cable,1,14.95,01/16/19 09:51,"449 2nd St, San Francisco, CA 94016" +149452,Wired Headphones,1,11.99,01/15/19 15:26,"837 Main St, Atlanta, GA 30301" +149453,Apple Airpods Headphones,1,150,01/07/19 07:10,"445 Washington St, Portland, ME 04101" +149454,AAA Batteries (4-pack),1,2.99,01/24/19 08:45,"952 Sunset St, Austin, TX 73301" +149455,USB-C Charging Cable,1,11.95,01/03/19 12:25,"551 West St, Los Angeles, CA 90001" +149456,Lightning Charging Cable,1,14.95,01/08/19 14:11,"466 South St, Seattle, WA 98101" +149457,AAA Batteries (4-pack),1,2.99,01/31/19 09:42,"367 8th St, Boston, MA 02215" +149458,iPhone,1,700,01/28/19 22:21,"282 Sunset St, San Francisco, CA 94016" +149459,Wired Headphones,1,11.99,01/17/19 09:37,"966 Adams St, New York City, NY 10001" +149460,AA Batteries (4-pack),1,3.84,01/14/19 11:28,"41 Elm St, Boston, MA 02215" +149461,AA Batteries (4-pack),1,3.84,01/09/19 10:18,"453 Madison St, Portland, OR 97035" +149462,Bose SoundSport Headphones,1,99.99,01/13/19 10:16,"995 13th St, Portland, OR 97035" +149463,USB-C Charging Cable,1,11.95,01/25/19 19:46,"816 South St, San Francisco, CA 94016" +149464,34in Ultrawide Monitor,1,379.99,01/01/19 22:43,"261 Willow St, San Francisco, CA 94016" +149465,27in FHD Monitor,1,149.99,01/02/19 10:08,"514 Meadow St, Atlanta, GA 30301" +149466,Lightning Charging Cable,1,14.95,01/29/19 08:58,"855 Cedar St, San Francisco, CA 94016" +149467,Wired Headphones,1,11.99,01/10/19 14:00,"257 Maple St, San Francisco, CA 94016" +149468,Bose SoundSport Headphones,1,99.99,01/10/19 09:55,"343 4th St, San Francisco, CA 94016" +149469,Lightning Charging Cable,1,14.95,01/26/19 18:50,"688 Elm St, San Francisco, CA 94016" +149470,USB-C Charging Cable,1,11.95,01/23/19 13:44,"16 Spruce St, San Francisco, CA 94016" +149471,34in Ultrawide Monitor,1,379.99,01/05/19 23:04,"340 Willow St, Atlanta, GA 30301" +149472,Lightning Charging Cable,1,14.95,01/11/19 11:12,"798 5th St, Los Angeles, CA 90001" +149473,AAA Batteries (4-pack),1,2.99,01/23/19 09:33,"409 Sunset St, Atlanta, GA 30301" +149474,Wired Headphones,1,11.99,01/09/19 18:38,"237 Meadow St, Los Angeles, CA 90001" +149475,iPhone,1,700,01/16/19 14:52,"495 Walnut St, Austin, TX 73301" +149475,Apple Airpods Headphones,1,150,01/16/19 14:52,"495 Walnut St, Austin, TX 73301" +149476,USB-C Charging Cable,1,11.95,01/23/19 15:25,"531 Cherry St, San Francisco, CA 94016" +149477,Lightning Charging Cable,1,14.95,01/15/19 11:31,"30 Main St, Seattle, WA 98101" +149478,Wired Headphones,1,11.99,01/17/19 16:42,"126 Hill St, Boston, MA 02215" +149479,27in FHD Monitor,1,149.99,01/28/19 12:22,"851 Lincoln St, Atlanta, GA 30301" +149480,Lightning Charging Cable,1,14.95,01/29/19 22:31,"629 Jackson St, Portland, OR 97035" +149481,Google Phone,1,600,01/15/19 14:26,"543 Forest St, Seattle, WA 98101" +149482,Apple Airpods Headphones,1,150,01/31/19 19:44,"780 Main St, New York City, NY 10001" +149483,Wired Headphones,1,11.99,01/22/19 10:43,"266 13th St, Los Angeles, CA 90001" +149484,Wired Headphones,1,11.99,01/21/19 09:22,"877 9th St, New York City, NY 10001" +149485,Lightning Charging Cable,1,14.95,01/03/19 18:16,"272 Park St, San Francisco, CA 94016" +149486,AA Batteries (4-pack),1,3.84,01/04/19 10:30,"456 7th St, Atlanta, GA 30301" +149487,Wired Headphones,1,11.99,01/18/19 16:20,"810 Center St, Atlanta, GA 30301" +149488,AAA Batteries (4-pack),2,2.99,01/15/19 18:47,"436 Church St, Boston, MA 02215" +149489,AAA Batteries (4-pack),1,2.99,01/16/19 09:43,"887 Madison St, San Francisco, CA 94016" +149490,LG Dryer,1,600.0,01/28/19 16:36,"742 River St, San Francisco, CA 94016" +149490,Apple Airpods Headphones,1,150,01/28/19 16:36,"742 River St, San Francisco, CA 94016" +149491,34in Ultrawide Monitor,1,379.99,01/02/19 11:07,"754 9th St, Dallas, TX 75001" +149492,AAA Batteries (4-pack),4,2.99,01/07/19 16:00,"543 Wilson St, New York City, NY 10001" +149493,USB-C Charging Cable,1,11.95,01/03/19 18:25,"4 Elm St, Los Angeles, CA 90001" +149494,Lightning Charging Cable,1,14.95,01/30/19 12:48,"304 South St, Atlanta, GA 30301" +149495,iPhone,1,700,01/16/19 23:52,"317 Main St, New York City, NY 10001" +149496,34in Ultrawide Monitor,1,379.99,01/18/19 11:04,"287 North St, Atlanta, GA 30301" +149497,AAA Batteries (4-pack),3,2.99,01/05/19 03:18,"793 Meadow St, Seattle, WA 98101" +149498,27in 4K Gaming Monitor,1,389.99,01/07/19 11:59,"296 Main St, Austin, TX 73301" +149499,Bose SoundSport Headphones,1,99.99,01/24/19 06:10,"295 North St, Dallas, TX 75001" +149500,Wired Headphones,1,11.99,01/09/19 22:01,"611 Sunset St, Atlanta, GA 30301" +149501,Wired Headphones,2,11.99,01/20/19 19:24,"633 Spruce St, Boston, MA 02215" +149502,AAA Batteries (4-pack),1,2.99,01/17/19 13:23,"998 Park St, San Francisco, CA 94016" +149503,AAA Batteries (4-pack),1,2.99,01/25/19 15:17,"820 Forest St, San Francisco, CA 94016" +149504,Bose SoundSport Headphones,1,99.99,01/15/19 07:34,"918 4th St, Austin, TX 73301" +149505,Wired Headphones,1,11.99,01/17/19 22:51,"569 4th St, Los Angeles, CA 90001" +149506,ThinkPad Laptop,1,999.99,01/01/19 08:02,"742 6th St, Los Angeles, CA 90001" +149507,27in FHD Monitor,1,149.99,01/27/19 23:17,"426 Main St, Portland, ME 04101" +149508,Apple Airpods Headphones,1,150,01/16/19 09:03,"953 South St, Austin, TX 73301" +149509,AA Batteries (4-pack),2,3.84,01/23/19 19:48,"930 4th St, Dallas, TX 75001" +149510,Lightning Charging Cable,1,14.95,01/09/19 15:03,"695 9th St, Atlanta, GA 30301" +149510,34in Ultrawide Monitor,1,379.99,01/09/19 15:03,"695 9th St, Atlanta, GA 30301" +149511,Macbook Pro Laptop,1,1700,01/12/19 21:16,"227 Washington St, San Francisco, CA 94016" +149512,Bose SoundSport Headphones,1,99.99,01/08/19 16:55,"587 10th St, San Francisco, CA 94016" +149513,Lightning Charging Cable,1,14.95,01/18/19 16:57,"572 Chestnut St, Dallas, TX 75001" +149513,Lightning Charging Cable,1,14.95,01/18/19 16:57,"572 Chestnut St, Dallas, TX 75001" +149514,27in 4K Gaming Monitor,1,389.99,01/20/19 09:18,"947 Wilson St, Seattle, WA 98101" +149515,Wired Headphones,1,11.99,01/13/19 11:58,"678 Forest St, Boston, MA 02215" +149516,Wired Headphones,1,11.99,01/03/19 10:15,"406 2nd St, New York City, NY 10001" +149517,27in FHD Monitor,1,149.99,01/16/19 14:53,"770 Johnson St, San Francisco, CA 94016" +149518,Lightning Charging Cable,1,14.95,01/23/19 05:27,"870 Park St, Dallas, TX 75001" +149519,iPhone,1,700,01/10/19 19:48,"87 Willow St, Atlanta, GA 30301" +149520,AAA Batteries (4-pack),1,2.99,01/26/19 12:20,"883 Lakeview St, Dallas, TX 75001" +149521,Flatscreen TV,1,300,01/22/19 20:54,"187 2nd St, Los Angeles, CA 90001" +149522,AAA Batteries (4-pack),2,2.99,01/07/19 01:13,"16 Madison St, Seattle, WA 98101" +149523,27in 4K Gaming Monitor,1,389.99,01/20/19 12:51,"542 Forest St, Atlanta, GA 30301" +149524,USB-C Charging Cable,1,11.95,01/06/19 18:05,"588 Forest St, Atlanta, GA 30301" +149525,34in Ultrawide Monitor,1,379.99,01/20/19 22:15,"429 Wilson St, Boston, MA 02215" +149526,Wired Headphones,1,11.99,01/13/19 11:31,"161 Highland St, Dallas, TX 75001" +149527,Lightning Charging Cable,1,14.95,01/31/19 21:52,"421 Lakeview St, Dallas, TX 75001" +149528,USB-C Charging Cable,1,11.95,01/24/19 15:08,"581 14th St, San Francisco, CA 94016" +149529,ThinkPad Laptop,1,999.99,01/26/19 15:48,"612 Center St, New York City, NY 10001" +149530,AA Batteries (4-pack),3,3.84,01/14/19 08:55,"58 1st St, Austin, TX 73301" +149531,34in Ultrawide Monitor,1,379.99,01/30/19 11:03,"694 Willow St, San Francisco, CA 94016" +149532,34in Ultrawide Monitor,1,379.99,01/31/19 15:22,"513 North St, San Francisco, CA 94016" +149533,34in Ultrawide Monitor,1,379.99,01/01/19 10:59,"993 12th St, New York City, NY 10001" +149534,Vareebadd Phone,1,400,01/30/19 20:47,"700 11th St, Los Angeles, CA 90001" +149535,Lightning Charging Cable,1,14.95,01/31/19 11:09,"975 Meadow St, Dallas, TX 75001" +149536,AA Batteries (4-pack),2,3.84,01/26/19 09:00,"441 Jackson St, New York City, NY 10001" +149537,AAA Batteries (4-pack),4,2.99,01/05/19 03:19,"2 Wilson St, Dallas, TX 75001" +149538,Wired Headphones,1,11.99,01/27/19 23:40,"311 8th St, Portland, OR 97035" +149539,Flatscreen TV,1,300,01/09/19 23:11,"471 Hickory St, Los Angeles, CA 90001" +149540,Wired Headphones,1,11.99,01/11/19 20:46,"934 Washington St, New York City, NY 10001" +149540,LG Dryer,1,600.0,01/11/19 20:46,"934 Washington St, New York City, NY 10001" +149541,Flatscreen TV,1,300,01/21/19 09:47,"400 Lakeview St, Boston, MA 02215" +149542,Lightning Charging Cable,1,14.95,01/15/19 16:28,"325 9th St, New York City, NY 10001" +149543,iPhone,1,700,01/22/19 10:16,"300 Willow St, Los Angeles, CA 90001" +149543,Wired Headphones,1,11.99,01/22/19 10:16,"300 Willow St, Los Angeles, CA 90001" +149544,Lightning Charging Cable,2,14.95,01/20/19 18:31,"183 Lincoln St, Los Angeles, CA 90001" +149545,AA Batteries (4-pack),1,3.84,01/10/19 14:26,"724 Lake St, Austin, TX 73301" +149546,Vareebadd Phone,1,400,01/08/19 11:38,"288 2nd St, New York City, NY 10001" +149547,Lightning Charging Cable,1,14.95,01/08/19 22:55,"421 Johnson St, Dallas, TX 75001" +149548,Apple Airpods Headphones,1,150,01/25/19 16:48,"987 West St, Los Angeles, CA 90001" +149549,AA Batteries (4-pack),1,3.84,01/06/19 13:57,"436 River St, San Francisco, CA 94016" +149550,AA Batteries (4-pack),2,3.84,01/03/19 21:42,"296 Madison St, San Francisco, CA 94016" +149551,Wired Headphones,1,11.99,01/29/19 22:29,"955 Walnut St, San Francisco, CA 94016" +149552,LG Washing Machine,1,600.0,01/08/19 06:49,"809 Elm St, Seattle, WA 98101" +149553,Macbook Pro Laptop,1,1700,01/11/19 18:59,"255 Madison St, San Francisco, CA 94016" +,,,,, +149554,Flatscreen TV,1,300,01/01/19 18:12,"242 9th St, Portland, OR 97035" +149555,Wired Headphones,1,11.99,01/10/19 13:59,"637 Lincoln St, Los Angeles, CA 90001" +149556,Apple Airpods Headphones,1,150,01/31/19 21:21,"9 Hill St, New York City, NY 10001" +149557,27in FHD Monitor,1,149.99,01/23/19 04:49,"377 Church St, New York City, NY 10001" +149558,AA Batteries (4-pack),1,3.84,01/11/19 12:04,"106 8th St, New York City, NY 10001" +149559,Lightning Charging Cable,1,14.95,01/27/19 14:22,"571 9th St, New York City, NY 10001" +149560,20in Monitor,1,109.99,01/19/19 19:39,"544 Maple St, Los Angeles, CA 90001" +149561,Apple Airpods Headphones,1,150,01/23/19 10:44,"9 Elm St, Los Angeles, CA 90001" +149562,USB-C Charging Cable,1,11.95,01/19/19 20:14,"884 Ridge St, Los Angeles, CA 90001" +149563,AAA Batteries (4-pack),2,2.99,01/23/19 18:26,"918 Wilson St, Portland, OR 97035" +149564,27in 4K Gaming Monitor,1,389.99,01/26/19 08:14,"778 10th St, Los Angeles, CA 90001" +149565,Macbook Pro Laptop,1,1700,01/08/19 21:43,"299 4th St, Boston, MA 02215" +149566,Wired Headphones,2,11.99,01/30/19 18:12,"656 Walnut St, San Francisco, CA 94016" +149567,AA Batteries (4-pack),2,3.84,01/10/19 20:42,"596 4th St, Atlanta, GA 30301" +149568,AA Batteries (4-pack),1,3.84,01/28/19 21:44,"658 8th St, Los Angeles, CA 90001" +149569,Lightning Charging Cable,1,14.95,01/26/19 12:56,"54 11th St, San Francisco, CA 94016" +149570,Macbook Pro Laptop,1,1700,01/03/19 07:43,"192 Johnson St, Dallas, TX 75001" +149571,Wired Headphones,1,11.99,01/11/19 10:47,"496 11th St, San Francisco, CA 94016" +149572,Bose SoundSport Headphones,1,99.99,01/06/19 19:51,"480 14th St, Austin, TX 73301" +149573,AAA Batteries (4-pack),2,2.99,02/01/19 01:36,"416 Walnut St, Dallas, TX 75001" +149574,USB-C Charging Cable,1,11.95,02/01/19 01:10,"680 8th St, Atlanta, GA 30301" +149575,Apple Airpods Headphones,1,150,01/01/19 18:07,"393 5th St, San Francisco, CA 94016" +149576,Lightning Charging Cable,1,14.95,01/26/19 15:44,"602 Forest St, San Francisco, CA 94016" +149577,AAA Batteries (4-pack),1,2.99,01/07/19 00:45,"54 Jefferson St, Dallas, TX 75001" +149578,Google Phone,1,600,01/14/19 08:54,"39 Meadow St, San Francisco, CA 94016" +149579,Wired Headphones,1,11.99,01/15/19 19:07,"653 Hickory St, Portland, OR 97035" +149580,Wired Headphones,2,11.99,01/14/19 16:26,"538 10th St, San Francisco, CA 94016" +149581,27in FHD Monitor,1,149.99,01/03/19 12:25,"967 Willow St, New York City, NY 10001" +149582,Lightning Charging Cable,1,14.95,01/03/19 09:56,"215 Church St, San Francisco, CA 94016" +149583,Wired Headphones,1,11.99,01/31/19 18:03,"316 Church St, Dallas, TX 75001" +149584,AA Batteries (4-pack),1,3.84,01/01/19 12:28,"514 Highland St, Los Angeles, CA 90001" +149585,Wired Headphones,1,11.99,01/24/19 18:32,"725 Lakeview St, Los Angeles, CA 90001" +149586,AA Batteries (4-pack),2,3.84,01/10/19 16:15,"477 Cherry St, San Francisco, CA 94016" +149587,Bose SoundSport Headphones,1,99.99,01/02/19 08:28,"532 10th St, San Francisco, CA 94016" +149588,27in FHD Monitor,1,149.99,01/26/19 02:02,"267 Cedar St, San Francisco, CA 94016" +149589,AA Batteries (4-pack),1,3.84,01/17/19 20:03,"60 Walnut St, Los Angeles, CA 90001" +149590,AAA Batteries (4-pack),1,2.99,01/27/19 23:14,"304 River St, Atlanta, GA 30301" +149591,Apple Airpods Headphones,1,150,01/26/19 10:42,"296 Spruce St, Los Angeles, CA 90001" +149592,Bose SoundSport Headphones,1,99.99,01/03/19 12:24,"381 Hickory St, Boston, MA 02215" +149593,Bose SoundSport Headphones,1,99.99,01/26/19 22:22,"406 Meadow St, Los Angeles, CA 90001" +149594,iPhone,1,700,01/30/19 09:28,"617 Church St, Los Angeles, CA 90001" +149595,USB-C Charging Cable,1,11.95,01/05/19 09:58,"160 Church St, Los Angeles, CA 90001" +149596,Lightning Charging Cable,1,14.95,01/19/19 07:33,"876 Lincoln St, New York City, NY 10001" +149597,USB-C Charging Cable,1,11.95,01/26/19 18:43,"571 7th St, Boston, MA 02215" +149598,Apple Airpods Headphones,1,150,01/24/19 05:09,"174 1st St, Boston, MA 02215" +149599,34in Ultrawide Monitor,1,379.99,01/21/19 18:57,"38 Park St, Seattle, WA 98101" +149600,Macbook Pro Laptop,1,1700,01/24/19 10:13,"529 14th St, Atlanta, GA 30301" +149601,Google Phone,1,600,01/25/19 13:29,"791 Cedar St, San Francisco, CA 94016" +149601,Wired Headphones,1,11.99,01/25/19 13:29,"791 Cedar St, San Francisco, CA 94016" +149602,Apple Airpods Headphones,1,150,01/17/19 08:33,"162 Park St, San Francisco, CA 94016" +149603,ThinkPad Laptop,1,999.99,01/06/19 08:57,"917 Walnut St, New York City, NY 10001" +149604,USB-C Charging Cable,1,11.95,01/23/19 20:22,"622 Spruce St, Los Angeles, CA 90001" +149605,Apple Airpods Headphones,1,150,01/16/19 21:32,"480 Cedar St, San Francisco, CA 94016" +149606,Lightning Charging Cable,1,14.95,01/13/19 14:19,"746 Johnson St, Atlanta, GA 30301" +149607,Wired Headphones,1,11.99,01/16/19 09:45,"401 Hickory St, San Francisco, CA 94016" +149608,Bose SoundSport Headphones,1,99.99,01/22/19 16:39,"373 Jefferson St, Seattle, WA 98101" +149609,Wired Headphones,1,11.99,01/17/19 20:51,"206 Sunset St, Portland, ME 04101" +149610,USB-C Charging Cable,1,11.95,01/23/19 16:00,"276 Meadow St, Los Angeles, CA 90001" +149611,USB-C Charging Cable,1,11.95,01/19/19 14:54,"555 Elm St, New York City, NY 10001" +149612,27in FHD Monitor,1,149.99,01/06/19 23:04,"706 2nd St, Atlanta, GA 30301" +149613,USB-C Charging Cable,1,11.95,01/10/19 14:22,"502 North St, Seattle, WA 98101" +149614,Wired Headphones,1,11.99,01/17/19 21:15,"244 Sunset St, Boston, MA 02215" +149615,Wired Headphones,2,11.99,01/16/19 16:24,"873 8th St, Dallas, TX 75001" +149616,34in Ultrawide Monitor,1,379.99,01/01/19 21:56,"951 Jackson St, San Francisco, CA 94016" +149617,27in FHD Monitor,1,149.99,01/19/19 18:12,"642 Spruce St, San Francisco, CA 94016" +149618,AAA Batteries (4-pack),2,2.99,01/04/19 07:14,"710 Wilson St, Portland, ME 04101" +149619,USB-C Charging Cable,1,11.95,01/30/19 20:08,"248 Madison St, Dallas, TX 75001" +149620,27in FHD Monitor,1,149.99,01/11/19 09:46,"324 Walnut St, Austin, TX 73301" +149621,USB-C Charging Cable,2,11.95,01/30/19 21:49,"488 Pine St, Seattle, WA 98101" +149622,AA Batteries (4-pack),2,3.84,01/01/19 11:27,"91 6th St, Los Angeles, CA 90001" +149623,AAA Batteries (4-pack),2,2.99,01/03/19 17:45,"740 13th St, New York City, NY 10001" +149624,Macbook Pro Laptop,1,1700,01/12/19 15:42,"548 Park St, Seattle, WA 98101" +149625,Apple Airpods Headphones,1,150,01/15/19 20:21,"33 Johnson St, New York City, NY 10001" +149626,AAA Batteries (4-pack),1,2.99,01/03/19 17:13,"354 Johnson St, Seattle, WA 98101" +149627,Wired Headphones,1,11.99,01/19/19 11:38,"865 5th St, Los Angeles, CA 90001" +149628,Wired Headphones,1,11.99,01/10/19 18:50,"610 North St, Dallas, TX 75001" +149629,Lightning Charging Cable,1,14.95,01/01/19 08:59,"386 Walnut St, San Francisco, CA 94016" +149630,Bose SoundSport Headphones,1,99.99,01/12/19 06:59,"652 North St, Los Angeles, CA 90001" +149631,AA Batteries (4-pack),2,3.84,01/06/19 11:08,"920 Park St, Boston, MA 02215" +149632,Macbook Pro Laptop,1,1700,01/13/19 14:18,"442 12th St, Portland, ME 04101" +149633,Lightning Charging Cable,1,14.95,01/15/19 16:47,"844 10th St, Los Angeles, CA 90001" +149634,Macbook Pro Laptop,1,1700,01/19/19 09:20,"494 Walnut St, Boston, MA 02215" +149635,AA Batteries (4-pack),1,3.84,01/20/19 15:46,"694 Walnut St, New York City, NY 10001" +149636,Apple Airpods Headphones,1,150,01/14/19 11:05,"358 4th St, Boston, MA 02215" +149637,Wired Headphones,1,11.99,01/24/19 13:51,"40 Madison St, Boston, MA 02215" +149638,iPhone,1,700,01/23/19 23:53,"868 Chestnut St, Seattle, WA 98101" +149639,Lightning Charging Cable,1,14.95,01/30/19 15:12,"805 Lake St, New York City, NY 10001" +149640,Apple Airpods Headphones,1,150,01/18/19 09:21,"77 Adams St, New York City, NY 10001" +149641,20in Monitor,1,109.99,01/19/19 16:06,"32 5th St, San Francisco, CA 94016" +149642,USB-C Charging Cable,1,11.95,01/05/19 01:01,"323 11th St, San Francisco, CA 94016" +149643,Bose SoundSport Headphones,1,99.99,01/04/19 14:10,"893 4th St, New York City, NY 10001" +149644,AA Batteries (4-pack),1,3.84,01/26/19 07:31,"839 Lincoln St, Seattle, WA 98101" +149645,iPhone,1,700,01/22/19 19:22,"117 11th St, San Francisco, CA 94016" +149646,27in 4K Gaming Monitor,1,389.99,01/05/19 11:21,"649 Lincoln St, Boston, MA 02215" +149647,Bose SoundSport Headphones,1,99.99,01/02/19 15:51,"858 Pine St, Los Angeles, CA 90001" +149648,Lightning Charging Cable,1,14.95,01/29/19 19:55,"149 10th St, Austin, TX 73301" +149648,27in 4K Gaming Monitor,1,389.99,01/29/19 19:55,"149 10th St, Austin, TX 73301" +149649,27in FHD Monitor,1,149.99,01/08/19 13:15,"254 14th St, Seattle, WA 98101" +149650,27in FHD Monitor,1,149.99,01/01/19 16:53,"758 Dogwood St, Los Angeles, CA 90001" +149651,27in 4K Gaming Monitor,1,389.99,01/12/19 14:47,"612 Wilson St, Los Angeles, CA 90001" +149652,Wired Headphones,1,11.99,01/22/19 21:28,"273 Church St, San Francisco, CA 94016" +149653,iPhone,1,700,01/29/19 15:05,"360 Jefferson St, New York City, NY 10001" +149654,Lightning Charging Cable,1,14.95,01/07/19 13:18,"636 5th St, Portland, OR 97035" +149655,AAA Batteries (4-pack),1,2.99,01/01/19 20:36,"611 Center St, Atlanta, GA 30301" +149656,Lightning Charging Cable,1,14.95,01/11/19 18:36,"384 Madison St, San Francisco, CA 94016" +149657,Lightning Charging Cable,1,14.95,01/01/19 22:17,"124 Hickory St, San Francisco, CA 94016" +149658,AAA Batteries (4-pack),1,2.99,01/18/19 18:37,"452 12th St, Los Angeles, CA 90001" +149659,Lightning Charging Cable,1,14.95,01/22/19 20:51,"77 9th St, Boston, MA 02215" +149660,ThinkPad Laptop,1,999.99,01/20/19 12:35,"178 5th St, New York City, NY 10001" +149661,Wired Headphones,1,11.99,01/17/19 13:57,"278 Jackson St, Los Angeles, CA 90001" +149662,Lightning Charging Cable,1,14.95,01/13/19 14:10,"847 14th St, Boston, MA 02215" +149663,Google Phone,1,600,01/17/19 16:06,"65 Walnut St, Los Angeles, CA 90001" +149664,Apple Airpods Headphones,1,150,01/02/19 14:37,"925 Johnson St, Seattle, WA 98101" +149665,USB-C Charging Cable,1,11.95,01/20/19 14:24,"129 Cherry St, Dallas, TX 75001" +149666,Apple Airpods Headphones,1,150,01/14/19 08:05,"445 13th St, San Francisco, CA 94016" +149667,Wired Headphones,1,11.99,01/24/19 18:14,"166 Cedar St, Portland, ME 04101" +149668,27in FHD Monitor,1,149.99,01/31/19 21:11,"384 Walnut St, San Francisco, CA 94016" +149669,USB-C Charging Cable,1,11.95,01/09/19 05:49,"633 7th St, Seattle, WA 98101" +149670,AAA Batteries (4-pack),1,2.99,01/18/19 00:43,"831 10th St, Boston, MA 02215" +149671,AAA Batteries (4-pack),1,2.99,01/08/19 13:23,"251 Dogwood St, San Francisco, CA 94016" +149672,AAA Batteries (4-pack),2,2.99,01/20/19 12:18,"139 Madison St, New York City, NY 10001" +149673,Google Phone,1,600,01/12/19 08:07,"802 Jefferson St, San Francisco, CA 94016" +149673,Wired Headphones,1,11.99,01/12/19 08:07,"802 Jefferson St, San Francisco, CA 94016" +149674,Apple Airpods Headphones,1,150,01/13/19 19:12,"380 Main St, San Francisco, CA 94016" +149675,USB-C Charging Cable,1,11.95,01/24/19 19:55,"282 8th St, New York City, NY 10001" +149676,USB-C Charging Cable,1,11.95,01/17/19 13:20,"179 Elm St, Austin, TX 73301" +149677,Apple Airpods Headphones,1,150,01/12/19 01:35,"330 6th St, Atlanta, GA 30301" +149678,Flatscreen TV,1,300,01/09/19 21:57,"283 10th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +149679,34in Ultrawide Monitor,1,379.99,01/16/19 18:59,"695 Pine St, New York City, NY 10001" +149680,Lightning Charging Cable,1,14.95,01/14/19 19:52,"120 2nd St, Los Angeles, CA 90001" +149681,AAA Batteries (4-pack),1,2.99,01/27/19 11:19,"872 Chestnut St, New York City, NY 10001" +149682,USB-C Charging Cable,1,11.95,01/12/19 21:10,"733 Willow St, Portland, OR 97035" +149683,27in 4K Gaming Monitor,1,389.99,01/12/19 12:25,"200 Johnson St, New York City, NY 10001" +149684,27in FHD Monitor,1,149.99,01/31/19 11:22,"622 Maple St, New York City, NY 10001" +149685,AA Batteries (4-pack),2,3.84,01/30/19 17:57,"815 Elm St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +149686,Lightning Charging Cable,1,14.95,01/03/19 23:08,"810 Lakeview St, Los Angeles, CA 90001" +149687,Apple Airpods Headphones,1,150,01/21/19 11:48,"938 River St, Austin, TX 73301" +149688,USB-C Charging Cable,2,11.95,01/24/19 21:54,"60 Cherry St, San Francisco, CA 94016" +149689,Vareebadd Phone,1,400,01/20/19 07:21,"359 Chestnut St, San Francisco, CA 94016" +149689,Wired Headphones,1,11.99,01/20/19 07:21,"359 Chestnut St, San Francisco, CA 94016" +149690,USB-C Charging Cable,2,11.95,01/07/19 08:26,"670 Madison St, San Francisco, CA 94016" +149691,AA Batteries (4-pack),1,3.84,01/21/19 11:26,"899 Willow St, Portland, OR 97035" +149692,Apple Airpods Headphones,1,150,01/13/19 15:55,"596 Hickory St, San Francisco, CA 94016" +149693,Lightning Charging Cable,1,14.95,01/30/19 20:50,"40 10th St, Portland, OR 97035" +149694,Google Phone,1,600,01/14/19 19:21,"600 Park St, Los Angeles, CA 90001" +149694,USB-C Charging Cable,1,11.95,01/14/19 19:21,"600 Park St, Los Angeles, CA 90001" +149695,Bose SoundSport Headphones,1,99.99,01/15/19 18:33,"942 Johnson St, Los Angeles, CA 90001" +149696,USB-C Charging Cable,1,11.95,01/17/19 15:54,"562 9th St, New York City, NY 10001" +149697,Flatscreen TV,1,300,01/08/19 18:59,"464 West St, Boston, MA 02215" +149698,iPhone,1,700,01/21/19 12:13,"166 Sunset St, Boston, MA 02215" +149699,27in FHD Monitor,1,149.99,01/17/19 21:03,"52 10th St, San Francisco, CA 94016" +149700,USB-C Charging Cable,1,11.95,01/23/19 08:06,"287 Washington St, San Francisco, CA 94016" +149701,AAA Batteries (4-pack),2,2.99,01/30/19 22:30,"582 Elm St, New York City, NY 10001" +149702,Lightning Charging Cable,1,14.95,01/04/19 17:22,"147 Wilson St, New York City, NY 10001" +149703,USB-C Charging Cable,1,11.95,01/03/19 10:05,"888 Maple St, New York City, NY 10001" +149704,27in FHD Monitor,1,149.99,01/28/19 20:39,"512 Church St, Los Angeles, CA 90001" +149705,Macbook Pro Laptop,1,1700,01/07/19 15:49,"876 Hickory St, New York City, NY 10001" +149706,27in 4K Gaming Monitor,1,389.99,01/22/19 17:24,"655 13th St, New York City, NY 10001" +149707,AA Batteries (4-pack),1,3.84,01/10/19 23:27,"286 West St, Atlanta, GA 30301" +149708,Wired Headphones,1,11.99,01/20/19 15:39,"151 8th St, Dallas, TX 75001" +149709,Bose SoundSport Headphones,1,99.99,01/05/19 11:04,"783 Meadow St, New York City, NY 10001" +149710,USB-C Charging Cable,1,11.95,01/16/19 11:55,"873 Jackson St, Los Angeles, CA 90001" +149711,AAA Batteries (4-pack),3,2.99,01/17/19 11:15,"224 South St, Los Angeles, CA 90001" +149712,Lightning Charging Cable,1,14.95,01/15/19 14:15,"844 Jackson St, Los Angeles, CA 90001" +149713,27in FHD Monitor,1,149.99,01/08/19 13:48,"227 11th St, Boston, MA 02215" +149714,Macbook Pro Laptop,1,1700,01/22/19 11:17,"654 1st St, Los Angeles, CA 90001" +149715,USB-C Charging Cable,1,11.95,01/02/19 16:28,"206 10th St, Boston, MA 02215" +149716,Bose SoundSport Headphones,1,99.99,01/11/19 11:09,"105 Madison St, San Francisco, CA 94016" +149717,AAA Batteries (4-pack),5,2.99,01/29/19 18:06,"663 Elm St, Boston, MA 02215" +149718,27in 4K Gaming Monitor,1,389.99,01/03/19 00:09,"812 11th St, San Francisco, CA 94016" +149719,20in Monitor,1,109.99,01/07/19 11:18,"27 West St, New York City, NY 10001" +149720,iPhone,1,700,01/15/19 12:04,"399 Chestnut St, New York City, NY 10001" +149721,34in Ultrawide Monitor,1,379.99,01/08/19 18:54,"95 Madison St, New York City, NY 10001" +149722,Vareebadd Phone,1,400,01/19/19 23:48,"633 Hickory St, Dallas, TX 75001" +149722,USB-C Charging Cable,1,11.95,01/19/19 23:48,"633 Hickory St, Dallas, TX 75001" +149722,Wired Headphones,1,11.99,01/19/19 23:48,"633 Hickory St, Dallas, TX 75001" +149723,Bose SoundSport Headphones,1,99.99,01/21/19 22:11,"340 1st St, San Francisco, CA 94016" +149724,USB-C Charging Cable,1,11.95,01/17/19 12:24,"569 13th St, San Francisco, CA 94016" +149725,AA Batteries (4-pack),1,3.84,01/02/19 08:26,"50 Cherry St, Portland, OR 97035" +149726,iPhone,1,700,01/17/19 13:03,"55 Ridge St, Boston, MA 02215" +149727,Lightning Charging Cable,1,14.95,01/01/19 19:13,"129 Church St, Dallas, TX 75001" +149728,Lightning Charging Cable,1,14.95,01/02/19 13:56,"699 Spruce St, Los Angeles, CA 90001" +149729,iPhone,1,700,01/22/19 12:50,"449 10th St, Austin, TX 73301" +149730,Macbook Pro Laptop,1,1700,01/23/19 16:09,"234 Hill St, New York City, NY 10001" +149731,Google Phone,1,600,01/02/19 13:12,"840 5th St, New York City, NY 10001" +149732,Apple Airpods Headphones,1,150,01/03/19 00:54,"538 2nd St, Boston, MA 02215" +149733,Wired Headphones,1,11.99,01/06/19 22:07,"908 Center St, New York City, NY 10001" +149734,Bose SoundSport Headphones,1,99.99,01/02/19 15:05,"335 Cherry St, Boston, MA 02215" +149735,Apple Airpods Headphones,1,150,01/17/19 22:58,"490 Pine St, San Francisco, CA 94016" +149736,USB-C Charging Cable,1,11.95,01/17/19 18:01,"395 7th St, Los Angeles, CA 90001" +149737,34in Ultrawide Monitor,1,379.99,01/01/19 15:09,"531 5th St, San Francisco, CA 94016" +149738,USB-C Charging Cable,1,11.95,01/18/19 13:13,"993 7th St, Seattle, WA 98101" +149739,34in Ultrawide Monitor,1,379.99,01/22/19 11:28,"938 Cherry St, San Francisco, CA 94016" +149740,AAA Batteries (4-pack),1,2.99,01/18/19 05:23,"767 Sunset St, Portland, OR 97035" +149741,27in FHD Monitor,1,149.99,01/11/19 13:56,"395 North St, San Francisco, CA 94016" +149742,USB-C Charging Cable,1,11.95,01/27/19 10:48,"600 West St, New York City, NY 10001" +149743,iPhone,1,700,01/07/19 12:04,"14 Maple St, Seattle, WA 98101" +149744,Apple Airpods Headphones,1,150,01/22/19 12:42,"107 South St, Boston, MA 02215" +149745,Apple Airpods Headphones,1,150,01/03/19 21:08,"594 Maple St, New York City, NY 10001" +149746,USB-C Charging Cable,1,11.95,01/12/19 11:18,"168 Chestnut St, Los Angeles, CA 90001" +149747,ThinkPad Laptop,1,999.99,01/26/19 10:13,"994 11th St, Dallas, TX 75001" +149748,Wired Headphones,1,11.99,01/07/19 15:39,"545 Adams St, Boston, MA 02215" +149749,USB-C Charging Cable,1,11.95,01/17/19 22:55,"800 Lakeview St, San Francisco, CA 94016" +149750,Wired Headphones,1,11.99,01/05/19 10:21,"388 Washington St, San Francisco, CA 94016" +149751,USB-C Charging Cable,1,11.95,01/11/19 20:29,"420 2nd St, New York City, NY 10001" +149752,20in Monitor,1,109.99,01/16/19 16:16,"83 Willow St, Portland, OR 97035" +149753,Bose SoundSport Headphones,1,99.99,01/09/19 11:18,"317 Elm St, Los Angeles, CA 90001" +149754,34in Ultrawide Monitor,1,379.99,01/05/19 10:45,"231 2nd St, San Francisco, CA 94016" +149755,Wired Headphones,1,11.99,01/19/19 18:58,"881 Adams St, Los Angeles, CA 90001" +149756,Apple Airpods Headphones,1,150,01/16/19 19:58,"375 Dogwood St, Atlanta, GA 30301" +149757,AA Batteries (4-pack),1,3.84,01/24/19 18:04,"689 5th St, Los Angeles, CA 90001" +149758,Google Phone,1,600,01/10/19 10:19,"104 Madison St, Seattle, WA 98101" +149759,Wired Headphones,1,11.99,01/12/19 08:02,"494 Madison St, Los Angeles, CA 90001" +149760,USB-C Charging Cable,1,11.95,01/29/19 10:52,"353 4th St, Dallas, TX 75001" +149761,Apple Airpods Headphones,1,150,01/30/19 15:36,"48 Lake St, Boston, MA 02215" +149762,27in FHD Monitor,2,149.99,01/09/19 07:26,"268 Madison St, Los Angeles, CA 90001" +149763,34in Ultrawide Monitor,1,379.99,01/20/19 14:55,"864 Chestnut St, San Francisco, CA 94016" +149764,Bose SoundSport Headphones,1,99.99,01/01/19 09:23,"907 Madison St, New York City, NY 10001" +149765,Wired Headphones,1,11.99,01/14/19 14:29,"267 Washington St, Portland, ME 04101" +149766,AAA Batteries (4-pack),1,2.99,01/14/19 09:18,"309 1st St, Boston, MA 02215" +149767,34in Ultrawide Monitor,1,379.99,01/24/19 15:33,"165 Wilson St, Portland, OR 97035" +149768,AA Batteries (4-pack),1,3.84,01/03/19 13:44,"406 Park St, San Francisco, CA 94016" +149769,AAA Batteries (4-pack),2,2.99,01/01/19 21:52,"16 Center St, Atlanta, GA 30301" +149769,AAA Batteries (4-pack),1,2.99,01/01/19 21:52,"16 Center St, Atlanta, GA 30301" +149770,Google Phone,1,600,01/02/19 10:00,"451 Dogwood St, Portland, ME 04101" +149771,AA Batteries (4-pack),1,3.84,01/27/19 14:21,"304 4th St, San Francisco, CA 94016" +149772,Lightning Charging Cable,1,14.95,01/11/19 12:08,"832 Johnson St, Dallas, TX 75001" +149773,iPhone,1,700,01/12/19 00:48,"215 8th St, San Francisco, CA 94016" +149774,Apple Airpods Headphones,1,150,01/10/19 00:24,"187 14th St, Portland, OR 97035" +149775,34in Ultrawide Monitor,1,379.99,01/04/19 12:15,"236 Jefferson St, New York City, NY 10001" +149776,USB-C Charging Cable,1,11.95,01/27/19 00:18,"492 Cedar St, Dallas, TX 75001" +149777,AAA Batteries (4-pack),2,2.99,01/25/19 18:34,"762 Elm St, New York City, NY 10001" +149778,AA Batteries (4-pack),2,3.84,01/17/19 09:40,"394 Walnut St, Los Angeles, CA 90001" +149779,Wired Headphones,1,11.99,01/22/19 18:24,"887 11th St, Los Angeles, CA 90001" +149780,Wired Headphones,1,11.99,01/17/19 18:58,"40 Center St, Dallas, TX 75001" +149781,Wired Headphones,1,11.99,01/19/19 01:01,"828 Spruce St, Dallas, TX 75001" +149782,27in FHD Monitor,1,149.99,01/25/19 09:49,"315 7th St, Los Angeles, CA 90001" +149783,iPhone,1,700,01/06/19 15:31,"669 Main St, Los Angeles, CA 90001" +149784,AAA Batteries (4-pack),1,2.99,01/01/19 12:45,"512 Adams St, New York City, NY 10001" +149785,iPhone,1,700,01/15/19 16:39,"90 Pine St, Los Angeles, CA 90001" +149785,Lightning Charging Cable,1,14.95,01/15/19 16:39,"90 Pine St, Los Angeles, CA 90001" +149786,Lightning Charging Cable,1,14.95,01/30/19 07:56,"656 South St, New York City, NY 10001" +149787,ThinkPad Laptop,1,999.99,01/31/19 13:08,"290 Wilson St, Boston, MA 02215" +149788,Wired Headphones,1,11.99,01/08/19 15:40,"688 Church St, San Francisco, CA 94016" +149789,AAA Batteries (4-pack),1,2.99,01/12/19 12:45,"114 Main St, New York City, NY 10001" +149790,AAA Batteries (4-pack),2,2.99,01/31/19 12:39,"475 13th St, San Francisco, CA 94016" +149791,20in Monitor,1,109.99,01/02/19 13:50,"381 Church St, Atlanta, GA 30301" +149792,Vareebadd Phone,1,400,01/03/19 10:01,"483 Lincoln St, Atlanta, GA 30301" +149793,34in Ultrawide Monitor,1,379.99,01/15/19 20:40,"680 Jefferson St, New York City, NY 10001" +149794,AAA Batteries (4-pack),2,2.99,01/26/19 12:06,"919 Walnut St, San Francisco, CA 94016" +149795,AA Batteries (4-pack),2,3.84,01/19/19 15:52,"481 Elm St, New York City, NY 10001" +149796,27in FHD Monitor,1,149.99,01/07/19 16:30,"29 North St, Los Angeles, CA 90001" +149797,Lightning Charging Cable,1,14.95,01/14/19 20:21,"899 Hickory St, Atlanta, GA 30301" +149798,20in Monitor,1,109.99,01/02/19 13:21,"638 West St, Atlanta, GA 30301" +149799,AAA Batteries (4-pack),2,2.99,01/03/19 11:43,"540 Jackson St, San Francisco, CA 94016" +149800,AAA Batteries (4-pack),1,2.99,01/15/19 18:32,"267 Willow St, Los Angeles, CA 90001" +149801,Google Phone,1,600,01/23/19 16:04,"256 5th St, Atlanta, GA 30301" +149801,Wired Headphones,1,11.99,01/23/19 16:04,"256 5th St, Atlanta, GA 30301" +149802,iPhone,1,700,01/18/19 17:37,"949 Adams St, Los Angeles, CA 90001" +149803,AA Batteries (4-pack),1,3.84,01/08/19 16:58,"34 Ridge St, San Francisco, CA 94016" +149804,AA Batteries (4-pack),2,3.84,01/14/19 12:34,"192 Elm St, Seattle, WA 98101" +149805,AA Batteries (4-pack),2,3.84,01/22/19 11:40,"558 West St, Los Angeles, CA 90001" +149806,Lightning Charging Cable,1,14.95,01/23/19 16:58,"965 Washington St, San Francisco, CA 94016" +149807,AAA Batteries (4-pack),2,2.99,01/24/19 22:00,"241 Lincoln St, Seattle, WA 98101" +149808,AA Batteries (4-pack),2,3.84,01/30/19 10:36,"530 Jefferson St, Los Angeles, CA 90001" +149809,Bose SoundSport Headphones,1,99.99,01/09/19 20:21,"723 Chestnut St, Austin, TX 73301" +149810,Lightning Charging Cable,1,14.95,01/03/19 08:27,"404 Highland St, Atlanta, GA 30301" +149811,Macbook Pro Laptop,1,1700,01/02/19 14:52,"158 4th St, Atlanta, GA 30301" +149812,iPhone,1,700,01/09/19 12:37,"602 Cedar St, San Francisco, CA 94016" +149812,Lightning Charging Cable,1,14.95,01/09/19 12:37,"602 Cedar St, San Francisco, CA 94016" +149813,USB-C Charging Cable,2,11.95,01/21/19 16:13,"725 Jackson St, Los Angeles, CA 90001" +149814,AAA Batteries (4-pack),2,2.99,01/30/19 12:41,"546 13th St, Seattle, WA 98101" +149815,Lightning Charging Cable,1,14.95,01/25/19 01:11,"598 Jackson St, Boston, MA 02215" +149816,AAA Batteries (4-pack),1,2.99,01/16/19 09:27,"923 13th St, San Francisco, CA 94016" +149817,27in FHD Monitor,1,149.99,01/14/19 16:50,"343 Willow St, Los Angeles, CA 90001" +149818,USB-C Charging Cable,1,11.95,01/08/19 17:49,"759 Hill St, Atlanta, GA 30301" +149819,Lightning Charging Cable,1,14.95,01/29/19 19:33,"322 Church St, San Francisco, CA 94016" +149820,AAA Batteries (4-pack),1,2.99,01/30/19 23:12,"938 9th St, Atlanta, GA 30301" +149821,USB-C Charging Cable,1,11.95,01/02/19 01:00,"925 Washington St, San Francisco, CA 94016" +149822,ThinkPad Laptop,1,999.99,01/17/19 08:31,"691 Willow St, Atlanta, GA 30301" +149823,Wired Headphones,1,11.99,01/10/19 09:15,"998 Cherry St, Boston, MA 02215" +149824,Google Phone,1,600,01/15/19 20:44,"296 Washington St, Portland, OR 97035" +149824,USB-C Charging Cable,1,11.95,01/15/19 20:44,"296 Washington St, Portland, OR 97035" +149825,AAA Batteries (4-pack),1,2.99,01/01/19 21:06,"746 Cedar St, New York City, NY 10001" +149826,AAA Batteries (4-pack),1,2.99,01/18/19 01:10,"878 West St, Portland, ME 04101" +149827,AA Batteries (4-pack),1,3.84,01/03/19 22:18,"749 Dogwood St, Boston, MA 02215" +149828,ThinkPad Laptop,1,999.99,01/14/19 13:34,"686 Cherry St, San Francisco, CA 94016" +149829,27in 4K Gaming Monitor,1,389.99,01/10/19 14:08,"888 6th St, Boston, MA 02215" +149830,Apple Airpods Headphones,1,150,01/25/19 14:12,"275 Jackson St, Boston, MA 02215" +149831,AA Batteries (4-pack),1,3.84,01/19/19 21:09,"329 South St, Austin, TX 73301" +149832,Lightning Charging Cable,1,14.95,01/14/19 09:40,"491 Sunset St, Los Angeles, CA 90001" +149833,USB-C Charging Cable,1,11.95,01/19/19 20:31,"283 Madison St, Boston, MA 02215" +149834,AAA Batteries (4-pack),1,2.99,01/13/19 17:42,"926 Cedar St, Los Angeles, CA 90001" +149835,AA Batteries (4-pack),1,3.84,01/07/19 06:38,"724 7th St, Seattle, WA 98101" +149836,Wired Headphones,1,11.99,01/18/19 22:48,"98 2nd St, Los Angeles, CA 90001" +149837,AAA Batteries (4-pack),2,2.99,01/14/19 15:53,"216 South St, Seattle, WA 98101" +149838,Vareebadd Phone,1,400,01/17/19 16:55,"299 Madison St, San Francisco, CA 94016" +149839,Lightning Charging Cable,1,14.95,01/02/19 14:31,"942 Elm St, Atlanta, GA 30301" +149840,Lightning Charging Cable,1,14.95,01/17/19 12:34,"275 Center St, Seattle, WA 98101" +149841,Bose SoundSport Headphones,1,99.99,01/17/19 12:15,"108 6th St, New York City, NY 10001" +149842,USB-C Charging Cable,1,11.95,01/27/19 21:41,"957 Spruce St, Seattle, WA 98101" +149843,Wired Headphones,1,11.99,01/03/19 18:13,"520 Park St, Dallas, TX 75001" +149844,Google Phone,1,600,01/30/19 17:56,"753 Dogwood St, San Francisco, CA 94016" +149845,27in FHD Monitor,1,149.99,01/02/19 17:54,"911 Maple St, Dallas, TX 75001" +149846,AA Batteries (4-pack),1,3.84,01/14/19 15:52,"339 7th St, Dallas, TX 75001" +149847,Lightning Charging Cable,1,14.95,01/24/19 10:02,"971 4th St, San Francisco, CA 94016" +149848,AAA Batteries (4-pack),2,2.99,01/10/19 07:41,"779 9th St, Los Angeles, CA 90001" +149849,Wired Headphones,1,11.99,01/19/19 16:59,"450 West St, Los Angeles, CA 90001" +149850,27in 4K Gaming Monitor,1,389.99,01/09/19 12:28,"669 Sunset St, Dallas, TX 75001" +149851,AA Batteries (4-pack),2,3.84,01/03/19 20:26,"161 Jackson St, Boston, MA 02215" +149852,Bose SoundSport Headphones,1,99.99,01/27/19 10:36,"951 Walnut St, Los Angeles, CA 90001" +149853,Wired Headphones,1,11.99,01/02/19 08:58,"740 Center St, Los Angeles, CA 90001" +149854,20in Monitor,1,109.99,01/02/19 14:11,"477 Johnson St, San Francisco, CA 94016" +149855,20in Monitor,1,109.99,01/22/19 21:31,"768 South St, San Francisco, CA 94016" +149856,27in FHD Monitor,1,149.99,01/22/19 20:53,"494 Madison St, Atlanta, GA 30301" +149857,Macbook Pro Laptop,1,1700,01/10/19 12:12,"905 6th St, Los Angeles, CA 90001" +149858,34in Ultrawide Monitor,1,379.99,01/25/19 17:53,"395 Hickory St, Portland, OR 97035" +149859,AAA Batteries (4-pack),2,2.99,01/15/19 12:57,"441 Park St, Los Angeles, CA 90001" +149860,Apple Airpods Headphones,1,150,01/08/19 11:29,"45 6th St, Los Angeles, CA 90001" +149861,20in Monitor,1,109.99,01/13/19 22:12,"194 Hill St, San Francisco, CA 94016" +149862,AAA Batteries (4-pack),1,2.99,01/16/19 09:05,"31 Park St, New York City, NY 10001" +149863,Bose SoundSport Headphones,1,99.99,01/12/19 19:51,"645 Hill St, Los Angeles, CA 90001" +149864,iPhone,1,700,01/22/19 10:45,"719 Cherry St, Austin, TX 73301" +149865,27in FHD Monitor,1,149.99,01/28/19 13:11,"59 4th St, Los Angeles, CA 90001" +149866,Wired Headphones,1,11.99,01/12/19 19:57,"197 Highland St, San Francisco, CA 94016" +149867,AAA Batteries (4-pack),1,2.99,01/23/19 20:49,"513 4th St, New York City, NY 10001" +149868,Wired Headphones,1,11.99,01/09/19 23:28,"910 9th St, Boston, MA 02215" +149869,20in Monitor,1,109.99,01/20/19 12:36,"569 12th St, Dallas, TX 75001" +149870,Lightning Charging Cable,1,14.95,01/09/19 09:39,"666 Meadow St, Atlanta, GA 30301" +149871,AAA Batteries (4-pack),1,2.99,01/25/19 21:24,"726 Lakeview St, Los Angeles, CA 90001" +149872,AA Batteries (4-pack),2,3.84,01/13/19 10:32,"941 Washington St, New York City, NY 10001" +149873,27in FHD Monitor,1,149.99,01/22/19 22:34,"809 10th St, San Francisco, CA 94016" +149873,20in Monitor,1,109.99,01/22/19 22:34,"809 10th St, San Francisco, CA 94016" +149874,AAA Batteries (4-pack),1,2.99,01/13/19 20:21,"911 Jefferson St, New York City, NY 10001" +149875,Wired Headphones,1,11.99,01/05/19 19:59,"755 14th St, San Francisco, CA 94016" +149876,Lightning Charging Cable,1,14.95,01/23/19 07:39,"112 Willow St, Los Angeles, CA 90001" +149877,27in 4K Gaming Monitor,1,389.99,01/22/19 04:55,"257 Hickory St, San Francisco, CA 94016" +149878,27in 4K Gaming Monitor,1,389.99,01/27/19 20:50,"864 11th St, Atlanta, GA 30301" +149879,34in Ultrawide Monitor,1,379.99,01/10/19 10:32,"989 11th St, Los Angeles, CA 90001" +149880,USB-C Charging Cable,1,11.95,01/27/19 20:26,"901 Sunset St, Los Angeles, CA 90001" +149881,Wired Headphones,1,11.99,01/16/19 09:12,"868 9th St, Los Angeles, CA 90001" +149882,USB-C Charging Cable,1,11.95,01/23/19 12:47,"343 Lincoln St, San Francisco, CA 94016" +149883,Apple Airpods Headphones,1,150,01/13/19 18:37,"966 Church St, San Francisco, CA 94016" +149884,Macbook Pro Laptop,1,1700,01/13/19 00:41,"854 Washington St, Boston, MA 02215" +149885,Apple Airpods Headphones,1,150,01/03/19 22:03,"206 Hill St, New York City, NY 10001" +149886,34in Ultrawide Monitor,1,379.99,01/05/19 13:58,"593 North St, Los Angeles, CA 90001" +149887,Bose SoundSport Headphones,1,99.99,01/05/19 12:18,"571 Jefferson St, San Francisco, CA 94016" +149888,USB-C Charging Cable,1,11.95,01/19/19 15:00,"752 Walnut St, San Francisco, CA 94016" +149889,Apple Airpods Headphones,1,150,01/30/19 08:54,"634 Walnut St, Los Angeles, CA 90001" +149890,AA Batteries (4-pack),1,3.84,01/10/19 09:25,"894 5th St, New York City, NY 10001" +149891,34in Ultrawide Monitor,1,379.99,01/22/19 18:05,"809 6th St, Seattle, WA 98101" +149892,Lightning Charging Cable,1,14.95,01/13/19 21:22,"132 Lake St, New York City, NY 10001" +149893,Apple Airpods Headphones,1,150,01/18/19 12:28,"712 Wilson St, Seattle, WA 98101" +149894,iPhone,1,700,01/26/19 18:41,"253 Madison St, Los Angeles, CA 90001" +149895,ThinkPad Laptop,1,999.99,01/24/19 18:05,"338 6th St, Boston, MA 02215" +149896,34in Ultrawide Monitor,1,379.99,01/16/19 12:58,"408 Lake St, Los Angeles, CA 90001" +149897,AA Batteries (4-pack),1,3.84,01/06/19 01:42,"158 6th St, Boston, MA 02215" +149898,34in Ultrawide Monitor,1,379.99,01/11/19 23:27,"11 Church St, San Francisco, CA 94016" +149899,Wired Headphones,1,11.99,01/06/19 03:11,"27 6th St, Austin, TX 73301" +149900,Lightning Charging Cable,1,14.95,01/11/19 11:49,"603 Ridge St, Dallas, TX 75001" +149901,Lightning Charging Cable,1,14.95,01/18/19 10:02,"864 Cherry St, San Francisco, CA 94016" +149902,AA Batteries (4-pack),2,3.84,01/12/19 12:41,"927 2nd St, San Francisco, CA 94016" +149903,AAA Batteries (4-pack),4,2.99,01/01/19 23:27,"271 Spruce St, San Francisco, CA 94016" +149904,Bose SoundSport Headphones,1,99.99,01/09/19 19:18,"452 Walnut St, San Francisco, CA 94016" +149905,AAA Batteries (4-pack),3,2.99,01/27/19 20:42,"892 13th St, San Francisco, CA 94016" +149906,Macbook Pro Laptop,1,1700,01/09/19 17:04,"708 Center St, San Francisco, CA 94016" +149907,Wired Headphones,1,11.99,01/27/19 18:21,"462 Ridge St, Seattle, WA 98101" +149908,Apple Airpods Headphones,1,150,01/22/19 20:51,"390 Church St, San Francisco, CA 94016" +149909,Lightning Charging Cable,1,14.95,01/17/19 16:01,"24 9th St, San Francisco, CA 94016" +149910,20in Monitor,1,109.99,01/24/19 17:55,"185 Chestnut St, Portland, OR 97035" +149911,Bose SoundSport Headphones,1,99.99,01/26/19 21:11,"147 Elm St, San Francisco, CA 94016" +149912,LG Washing Machine,1,600.0,01/05/19 10:33,"410 River St, Portland, OR 97035" +149913,AAA Batteries (4-pack),1,2.99,01/13/19 19:57,"934 13th St, Atlanta, GA 30301" +149914,Wired Headphones,1,11.99,01/12/19 09:14,"367 Spruce St, Dallas, TX 75001" +149915,AA Batteries (4-pack),1,3.84,01/13/19 14:37,"970 Pine St, San Francisco, CA 94016" +149916,27in FHD Monitor,1,149.99,01/26/19 22:50,"735 9th St, Los Angeles, CA 90001" +149917,Apple Airpods Headphones,1,150,01/17/19 14:46,"486 6th St, Seattle, WA 98101" +149918,Google Phone,1,600,01/14/19 11:13,"553 North St, Dallas, TX 75001" +149919,AAA Batteries (4-pack),2,2.99,01/17/19 16:29,"95 Jackson St, Atlanta, GA 30301" +149920,Wired Headphones,1,11.99,01/09/19 18:51,"750 12th St, San Francisco, CA 94016" +149921,AA Batteries (4-pack),1,3.84,01/26/19 13:15,"417 Wilson St, New York City, NY 10001" +149922,AA Batteries (4-pack),1,3.84,01/05/19 22:19,"516 River St, Los Angeles, CA 90001" +149923,20in Monitor,1,109.99,01/28/19 17:06,"979 Meadow St, San Francisco, CA 94016" +149924,AA Batteries (4-pack),1,3.84,01/19/19 22:20,"402 Chestnut St, Los Angeles, CA 90001" +149925,ThinkPad Laptop,1,999.99,01/16/19 14:06,"4 1st St, San Francisco, CA 94016" +149926,27in FHD Monitor,1,149.99,01/22/19 00:54,"665 6th St, San Francisco, CA 94016" +149927,Lightning Charging Cable,1,14.95,01/03/19 11:47,"586 Dogwood St, Los Angeles, CA 90001" +149928,iPhone,1,700,01/01/19 16:00,"914 Dogwood St, Dallas, TX 75001" +149929,Bose SoundSport Headphones,1,99.99,01/30/19 19:09,"739 Wilson St, Los Angeles, CA 90001" +149930,Bose SoundSport Headphones,1,99.99,01/04/19 07:57,"972 2nd St, Los Angeles, CA 90001" +149931,AAA Batteries (4-pack),2,2.99,01/07/19 09:32,"948 North St, Atlanta, GA 30301" +149932,Apple Airpods Headphones,1,150,01/11/19 19:47,"823 Meadow St, Los Angeles, CA 90001" +149933,Lightning Charging Cable,1,14.95,01/30/19 18:53,"475 Elm St, San Francisco, CA 94016" +149934,Vareebadd Phone,1,400,01/18/19 16:27,"637 4th St, San Francisco, CA 94016" +149934,Wired Headphones,1,11.99,01/18/19 16:27,"637 4th St, San Francisco, CA 94016" +149935,AAA Batteries (4-pack),1,2.99,01/27/19 15:38,"250 Hill St, Los Angeles, CA 90001" +149936,27in 4K Gaming Monitor,1,389.99,01/25/19 17:46,"764 12th St, Austin, TX 73301" +149937,Google Phone,1,600,01/16/19 13:42,"799 8th St, San Francisco, CA 94016" +149938,AA Batteries (4-pack),1,3.84,01/09/19 10:37,"333 Lake St, New York City, NY 10001" +149939,USB-C Charging Cable,2,11.95,01/21/19 12:53,"35 Jefferson St, San Francisco, CA 94016" +149940,Wired Headphones,1,11.99,01/14/19 18:08,"340 Main St, Boston, MA 02215" +149941,Lightning Charging Cable,1,14.95,01/27/19 10:27,"942 Jefferson St, San Francisco, CA 94016" +149942,Lightning Charging Cable,2,14.95,01/30/19 09:13,"544 14th St, Austin, TX 73301" +149943,AAA Batteries (4-pack),1,2.99,01/27/19 21:36,"351 Cherry St, San Francisco, CA 94016" +149944,USB-C Charging Cable,1,11.95,01/01/19 18:16,"912 11th St, San Francisco, CA 94016" +149945,20in Monitor,1,109.99,01/09/19 18:47,"174 South St, Dallas, TX 75001" +149946,Apple Airpods Headphones,1,150,01/31/19 06:52,"623 11th St, San Francisco, CA 94016" +149947,27in 4K Gaming Monitor,1,389.99,01/06/19 13:07,"662 Spruce St, Los Angeles, CA 90001" +149948,Lightning Charging Cable,1,14.95,01/22/19 13:21,"361 Church St, San Francisco, CA 94016" +149949,Bose SoundSport Headphones,1,99.99,01/30/19 13:21,"609 Park St, Los Angeles, CA 90001" +149950,AAA Batteries (4-pack),1,2.99,01/12/19 21:46,"485 Pine St, Boston, MA 02215" +149951,Apple Airpods Headphones,1,150,01/12/19 18:36,"118 11th St, New York City, NY 10001" +149952,USB-C Charging Cable,1,11.95,01/30/19 02:03,"467 Hill St, Los Angeles, CA 90001" +149953,AA Batteries (4-pack),1,3.84,01/21/19 08:24,"673 Pine St, Boston, MA 02215" +149954,USB-C Charging Cable,1,11.95,01/16/19 20:19,"557 Church St, Los Angeles, CA 90001" +149955,27in FHD Monitor,1,149.99,01/17/19 10:24,"372 10th St, Dallas, TX 75001" +149956,Apple Airpods Headphones,1,150,01/29/19 16:56,"110 6th St, Boston, MA 02215" +149957,AA Batteries (4-pack),1,3.84,01/25/19 09:35,"338 Willow St, New York City, NY 10001" +149958,AAA Batteries (4-pack),1,2.99,01/14/19 20:35,"22 Sunset St, Seattle, WA 98101" +149959,34in Ultrawide Monitor,1,379.99,01/05/19 20:45,"677 11th St, San Francisco, CA 94016" +149960,USB-C Charging Cable,1,11.95,01/19/19 21:11,"924 5th St, Boston, MA 02215" +149961,AA Batteries (4-pack),1,3.84,01/01/19 15:43,"406 Hickory St, Atlanta, GA 30301" +149962,Lightning Charging Cable,1,14.95,01/01/19 22:33,"484 Hill St, Atlanta, GA 30301" +149963,Apple Airpods Headphones,1,150,01/02/19 21:13,"189 5th St, Austin, TX 73301" +149964,AA Batteries (4-pack),1,3.84,01/03/19 11:06,"463 Cherry St, Boston, MA 02215" +149965,AA Batteries (4-pack),2,3.84,01/15/19 10:05,"46 10th St, New York City, NY 10001" +149966,Flatscreen TV,1,300,01/23/19 15:48,"152 11th St, Seattle, WA 98101" +149967,AA Batteries (4-pack),1,3.84,01/03/19 09:09,"578 Forest St, San Francisco, CA 94016" +149968,Vareebadd Phone,1,400,01/18/19 11:00,"134 8th St, New York City, NY 10001" +149969,USB-C Charging Cable,1,11.95,01/25/19 11:14,"907 Dogwood St, San Francisco, CA 94016" +149970,Wired Headphones,1,11.99,01/12/19 08:25,"465 Cherry St, Seattle, WA 98101" +149971,Wired Headphones,1,11.99,01/10/19 23:27,"632 Jackson St, New York City, NY 10001" +149972,AAA Batteries (4-pack),2,2.99,01/13/19 09:36,"563 Lake St, Atlanta, GA 30301" +149973,Flatscreen TV,1,300,01/28/19 11:54,"965 13th St, San Francisco, CA 94016" +149974,Lightning Charging Cable,1,14.95,01/27/19 16:47,"371 Elm St, Dallas, TX 75001" +149975,USB-C Charging Cable,1,11.95,01/26/19 14:59,"223 Forest St, San Francisco, CA 94016" +149976,iPhone,1,700,01/27/19 20:59,"41 Highland St, San Francisco, CA 94016" +149977,Bose SoundSport Headphones,1,99.99,01/27/19 04:53,"222 13th St, Atlanta, GA 30301" +149978,USB-C Charging Cable,1,11.95,01/26/19 17:20,"338 Maple St, New York City, NY 10001" +149979,Bose SoundSport Headphones,1,99.99,01/15/19 12:06,"822 Madison St, San Francisco, CA 94016" +149980,AA Batteries (4-pack),1,3.84,01/20/19 17:30,"717 Forest St, San Francisco, CA 94016" +149981,AAA Batteries (4-pack),2,2.99,01/20/19 23:27,"715 Madison St, New York City, NY 10001" +149982,Apple Airpods Headphones,1,150,01/25/19 18:51,"311 Sunset St, Portland, ME 04101" +149983,27in 4K Gaming Monitor,1,389.99,01/03/19 20:15,"968 Hickory St, New York City, NY 10001" +149984,34in Ultrawide Monitor,1,379.99,01/06/19 15:21,"635 North St, Atlanta, GA 30301" +149985,AAA Batteries (4-pack),1,2.99,01/01/19 17:48,"782 10th St, San Francisco, CA 94016" +149986,Wired Headphones,1,11.99,01/13/19 05:35,"896 5th St, Seattle, WA 98101" +149987,USB-C Charging Cable,1,11.95,01/21/19 07:08,"738 Jackson St, Los Angeles, CA 90001" +149988,AA Batteries (4-pack),1,3.84,01/04/19 18:56,"194 Cherry St, Los Angeles, CA 90001" +149989,Apple Airpods Headphones,1,150,01/24/19 20:14,"94 Pine St, Portland, OR 97035" +149990,Wired Headphones,1,11.99,01/23/19 09:09,"932 Washington St, Austin, TX 73301" +149991,Bose SoundSport Headphones,1,99.99,01/31/19 11:51,"904 River St, Dallas, TX 75001" +149992,Lightning Charging Cable,1,14.95,01/20/19 09:23,"60 River St, Dallas, TX 75001" +149993,AAA Batteries (4-pack),1,2.99,01/11/19 10:19,"730 Church St, Dallas, TX 75001" +149994,USB-C Charging Cable,1,11.95,01/16/19 22:09,"911 Johnson St, San Francisco, CA 94016" +149995,Lightning Charging Cable,1,14.95,01/29/19 16:14,"541 Highland St, San Francisco, CA 94016" +149996,20in Monitor,1,109.99,01/19/19 10:14,"475 Jefferson St, New York City, NY 10001" +149997,ThinkPad Laptop,1,999.99,01/06/19 17:40,"740 12th St, New York City, NY 10001" +149998,Wired Headphones,1,11.99,01/26/19 11:59,"613 Washington St, San Francisco, CA 94016" +149999,Wired Headphones,1,11.99,01/26/19 09:46,"714 Willow St, Los Angeles, CA 90001" +150000,USB-C Charging Cable,1,11.95,01/16/19 11:54,"639 Johnson St, San Francisco, CA 94016" +150001,AAA Batteries (4-pack),4,2.99,01/11/19 01:21,"433 Willow St, Boston, MA 02215" +150002,Apple Airpods Headphones,1,150,01/25/19 10:17,"511 South St, Los Angeles, CA 90001" +150003,iPhone,1,700,01/22/19 13:36,"925 South St, Los Angeles, CA 90001" +150004,Apple Airpods Headphones,1,150,01/31/19 19:59,"132 2nd St, New York City, NY 10001" +150005,AAA Batteries (4-pack),1,2.99,01/20/19 21:08,"20 Spruce St, San Francisco, CA 94016" +150006,Google Phone,1,600,01/05/19 12:34,"626 West St, San Francisco, CA 94016" +150007,AA Batteries (4-pack),1,3.84,01/30/19 12:11,"818 Sunset St, San Francisco, CA 94016" +150008,AA Batteries (4-pack),1,3.84,01/20/19 21:39,"62 Hill St, New York City, NY 10001" +150009,Wired Headphones,1,11.99,01/18/19 01:45,"275 Hickory St, Portland, OR 97035" +150010,USB-C Charging Cable,1,11.95,01/02/19 09:32,"776 Adams St, Los Angeles, CA 90001" +150011,Wired Headphones,1,11.99,01/01/19 15:34,"433 Main St, San Francisco, CA 94016" +150012,Bose SoundSport Headphones,1,99.99,01/19/19 13:33,"507 Wilson St, Seattle, WA 98101" +150013,AAA Batteries (4-pack),1,2.99,01/22/19 21:12,"238 14th St, Portland, OR 97035" +150014,Apple Airpods Headphones,1,150,01/19/19 11:50,"959 Jackson St, Portland, OR 97035" +150015,AA Batteries (4-pack),1,3.84,01/27/19 19:41,"832 1st St, Boston, MA 02215" +150016,AAA Batteries (4-pack),1,2.99,01/15/19 14:55,"255 Lincoln St, Los Angeles, CA 90001" +150017,Wired Headphones,1,11.99,01/29/19 12:51,"810 River St, Austin, TX 73301" +150018,Google Phone,1,600,01/02/19 16:44,"681 South St, Boston, MA 02215" +150019,Lightning Charging Cable,1,14.95,01/08/19 19:32,"110 Maple St, Atlanta, GA 30301" +150020,Wired Headphones,1,11.99,01/16/19 18:00,"694 Jackson St, Seattle, WA 98101" +150021,AAA Batteries (4-pack),1,2.99,01/04/19 16:52,"402 6th St, Boston, MA 02215" +150022,Wired Headphones,1,11.99,01/15/19 14:18,"225 Chestnut St, San Francisco, CA 94016" +150022,Vareebadd Phone,1,400,01/15/19 14:18,"225 Chestnut St, San Francisco, CA 94016" +150023,Wired Headphones,1,11.99,01/28/19 11:21,"102 Lake St, Dallas, TX 75001" +150024,AA Batteries (4-pack),3,3.84,01/29/19 18:07,"208 14th St, Portland, ME 04101" +150025,AAA Batteries (4-pack),1,2.99,01/09/19 07:51,"533 Hickory St, San Francisco, CA 94016" +150026,iPhone,1,700,01/12/19 22:05,"233 River St, Seattle, WA 98101" +150026,Apple Airpods Headphones,1,150,01/12/19 22:05,"233 River St, Seattle, WA 98101" +150027,Lightning Charging Cable,1,14.95,01/05/19 19:35,"104 9th St, New York City, NY 10001" +150028,AAA Batteries (4-pack),1,2.99,01/31/19 06:25,"671 Cherry St, Seattle, WA 98101" +150029,27in 4K Gaming Monitor,1,389.99,01/31/19 14:37,"22 Lincoln St, Seattle, WA 98101" +150030,USB-C Charging Cable,1,11.95,01/13/19 09:04,"979 Walnut St, San Francisco, CA 94016" +150031,Apple Airpods Headphones,1,150,01/02/19 18:51,"785 Cherry St, New York City, NY 10001" +150032,ThinkPad Laptop,1,999.99,01/10/19 16:03,"143 5th St, Austin, TX 73301" +150033,AA Batteries (4-pack),2,3.84,01/04/19 12:17,"118 Jefferson St, New York City, NY 10001" +150034,Bose SoundSport Headphones,1,99.99,01/26/19 08:20,"699 4th St, San Francisco, CA 94016" +150035,Wired Headphones,1,11.99,01/24/19 12:49,"618 Lake St, Los Angeles, CA 90001" +150036,Lightning Charging Cable,1,14.95,01/21/19 18:34,"634 Maple St, Portland, OR 97035" +150037,AA Batteries (4-pack),1,3.84,01/10/19 01:39,"809 Cedar St, Portland, ME 04101" +150038,Flatscreen TV,1,300,01/09/19 13:10,"385 10th St, Atlanta, GA 30301" +150039,27in FHD Monitor,1,149.99,01/31/19 02:34,"921 Lakeview St, Atlanta, GA 30301" +150040,27in FHD Monitor,1,149.99,01/31/19 12:44,"659 2nd St, San Francisco, CA 94016" +150041,Apple Airpods Headphones,1,150,01/31/19 10:43,"914 Walnut St, San Francisco, CA 94016" +150041,Google Phone,1,600,01/31/19 10:43,"914 Walnut St, San Francisco, CA 94016" +150042,Wired Headphones,2,11.99,01/08/19 23:37,"276 Main St, Boston, MA 02215" +150043,USB-C Charging Cable,1,11.95,01/04/19 14:21,"932 Church St, New York City, NY 10001" +150044,AAA Batteries (4-pack),2,2.99,01/09/19 18:58,"842 10th St, Austin, TX 73301" +150045,Wired Headphones,1,11.99,01/28/19 22:10,"654 South St, Austin, TX 73301" +150046,AAA Batteries (4-pack),1,2.99,01/19/19 19:21,"614 Cedar St, New York City, NY 10001" +150047,Lightning Charging Cable,1,14.95,01/30/19 15:59,"52 5th St, New York City, NY 10001" +150048,Lightning Charging Cable,1,14.95,01/05/19 16:23,"682 River St, New York City, NY 10001" +150049,AAA Batteries (4-pack),2,2.99,01/26/19 04:31,"649 4th St, Seattle, WA 98101" +150050,34in Ultrawide Monitor,1,379.99,01/28/19 16:01,"578 Jefferson St, Dallas, TX 75001" +150051,Lightning Charging Cable,1,14.95,01/19/19 11:44,"501 Elm St, San Francisco, CA 94016" +150052,Google Phone,1,600,01/24/19 23:29,"470 West St, Boston, MA 02215" +150053,USB-C Charging Cable,1,11.95,01/19/19 04:10,"115 Maple St, San Francisco, CA 94016" +150054,USB-C Charging Cable,1,11.95,01/21/19 12:13,"510 Church St, Portland, OR 97035" +150055,AAA Batteries (4-pack),1,2.99,01/27/19 22:23,"447 7th St, Boston, MA 02215" +150056,USB-C Charging Cable,2,11.95,01/26/19 16:54,"266 Center St, San Francisco, CA 94016" +150057,AA Batteries (4-pack),1,3.84,01/06/19 14:21,"288 7th St, Los Angeles, CA 90001" +150058,Macbook Pro Laptop,1,1700,01/23/19 08:15,"644 Washington St, Boston, MA 02215" +150059,Lightning Charging Cable,1,14.95,01/03/19 22:11,"259 Madison St, Seattle, WA 98101" +150060,Lightning Charging Cable,1,14.95,01/07/19 15:19,"384 Ridge St, Atlanta, GA 30301" +150061,AAA Batteries (4-pack),1,2.99,01/24/19 12:55,"212 Hickory St, San Francisco, CA 94016" +150062,AA Batteries (4-pack),1,3.84,01/12/19 09:30,"386 Cedar St, New York City, NY 10001" +150063,Lightning Charging Cable,1,14.95,01/01/19 16:35,"493 Lincoln St, Dallas, TX 75001" +150064,LG Dryer,1,600.0,01/09/19 06:42,"448 Main St, Los Angeles, CA 90001" +150065,AAA Batteries (4-pack),2,2.99,01/25/19 15:00,"185 Lakeview St, San Francisco, CA 94016" +150066,AAA Batteries (4-pack),1,2.99,01/05/19 06:40,"661 8th St, New York City, NY 10001" +150067,Wired Headphones,1,11.99,01/31/19 18:12,"247 South St, Austin, TX 73301" +150068,27in 4K Gaming Monitor,1,389.99,01/24/19 14:01,"135 9th St, Seattle, WA 98101" +150068,Wired Headphones,1,11.99,01/24/19 14:01,"135 9th St, Seattle, WA 98101" +150069,Apple Airpods Headphones,1,150,01/12/19 14:04,"690 Church St, Los Angeles, CA 90001" +150070,Google Phone,1,600,01/01/19 21:15,"926 13th St, Los Angeles, CA 90001" +150070,Wired Headphones,1,11.99,01/01/19 21:15,"926 13th St, Los Angeles, CA 90001" +150071,Flatscreen TV,1,300,01/17/19 20:14,"306 North St, Austin, TX 73301" +150072,USB-C Charging Cable,1,11.95,01/17/19 11:43,"230 Pine St, Los Angeles, CA 90001" +150073,Lightning Charging Cable,1,14.95,01/02/19 17:26,"56 Ridge St, Los Angeles, CA 90001" +150074,Vareebadd Phone,1,400,01/27/19 21:00,"277 Meadow St, Atlanta, GA 30301" +150075,Wired Headphones,1,11.99,01/23/19 18:15,"798 2nd St, Portland, ME 04101" +150076,27in 4K Gaming Monitor,1,389.99,01/11/19 23:10,"951 9th St, Seattle, WA 98101" +150077,Lightning Charging Cable,1,14.95,01/12/19 22:31,"594 Spruce St, San Francisco, CA 94016" +150078,Lightning Charging Cable,1,14.95,01/14/19 19:24,"249 Park St, Austin, TX 73301" +150079,Lightning Charging Cable,1,14.95,01/26/19 22:11,"351 Meadow St, San Francisco, CA 94016" +150080,USB-C Charging Cable,1,11.95,01/22/19 16:59,"959 Lakeview St, San Francisco, CA 94016" +150081,USB-C Charging Cable,1,11.95,01/30/19 21:26,"379 Forest St, San Francisco, CA 94016" +150082,AA Batteries (4-pack),1,3.84,01/17/19 14:59,"454 Lake St, Atlanta, GA 30301" +150083,USB-C Charging Cable,1,11.95,01/15/19 11:45,"391 2nd St, San Francisco, CA 94016" +150084,Lightning Charging Cable,1,14.95,01/14/19 09:54,"174 Chestnut St, New York City, NY 10001" +150085,ThinkPad Laptop,1,999.99,01/20/19 16:23,"682 11th St, San Francisco, CA 94016" +150086,Wired Headphones,1,11.99,01/25/19 16:02,"563 12th St, Boston, MA 02215" +150087,Google Phone,1,600,01/19/19 21:05,"161 4th St, Los Angeles, CA 90001" +150088,27in FHD Monitor,1,149.99,01/05/19 12:59,"196 5th St, Atlanta, GA 30301" +150089,Lightning Charging Cable,1,14.95,01/10/19 17:07,"769 Washington St, Boston, MA 02215" +150090,Google Phone,1,600,01/24/19 08:21,"623 Spruce St, San Francisco, CA 94016" +150090,USB-C Charging Cable,1,11.95,01/24/19 08:21,"623 Spruce St, San Francisco, CA 94016" +150091,Bose SoundSport Headphones,2,99.99,01/19/19 19:03,"400 4th St, Portland, OR 97035" +150092,Bose SoundSport Headphones,1,99.99,01/30/19 16:07,"773 11th St, Los Angeles, CA 90001" +150093,Wired Headphones,1,11.99,01/23/19 11:47,"451 14th St, Dallas, TX 75001" +150094,Apple Airpods Headphones,1,150,01/02/19 10:28,"815 Walnut St, Los Angeles, CA 90001" +150095,AA Batteries (4-pack),2,3.84,01/20/19 08:41,"535 Hill St, Boston, MA 02215" +150096,USB-C Charging Cable,1,11.95,01/28/19 17:38,"994 Lakeview St, Portland, ME 04101" +150097,Lightning Charging Cable,1,14.95,01/10/19 09:58,"152 Madison St, San Francisco, CA 94016" +150098,iPhone,1,700,01/21/19 10:20,"918 6th St, Dallas, TX 75001" +150099,Lightning Charging Cable,1,14.95,01/31/19 00:28,"724 1st St, Boston, MA 02215" +150100,34in Ultrawide Monitor,1,379.99,01/25/19 23:52,"684 Park St, San Francisco, CA 94016" +150101,Vareebadd Phone,1,400,01/02/19 23:01,"909 9th St, Dallas, TX 75001" +150101,Wired Headphones,1,11.99,01/02/19 23:01,"909 9th St, Dallas, TX 75001" +150102,34in Ultrawide Monitor,1,379.99,01/17/19 11:46,"402 8th St, Seattle, WA 98101" +150103,Wired Headphones,1,11.99,01/05/19 11:30,"17 River St, New York City, NY 10001" +150104,Flatscreen TV,1,300,01/23/19 08:16,"904 Wilson St, Boston, MA 02215" +150105,27in FHD Monitor,1,149.99,01/12/19 08:25,"522 13th St, San Francisco, CA 94016" +150106,34in Ultrawide Monitor,1,379.99,01/03/19 18:58,"780 West St, Austin, TX 73301" +150107,Google Phone,1,600,01/19/19 11:10,"362 Cherry St, Boston, MA 02215" +150108,AA Batteries (4-pack),1,3.84,01/25/19 10:46,"618 Dogwood St, Los Angeles, CA 90001" +150109,iPhone,2,700,01/11/19 17:15,"985 Park St, San Francisco, CA 94016" +150109,Lightning Charging Cable,1,14.95,01/11/19 17:15,"985 Park St, San Francisco, CA 94016" +150110,AAA Batteries (4-pack),2,2.99,01/03/19 15:47,"236 Johnson St, Los Angeles, CA 90001" +150111,Wired Headphones,1,11.99,01/10/19 14:43,"542 Highland St, Boston, MA 02215" +150112,Google Phone,1,600,01/27/19 16:31,"796 1st St, Atlanta, GA 30301" +150113,27in FHD Monitor,1,149.99,01/04/19 13:30,"342 14th St, Boston, MA 02215" +150114,AAA Batteries (4-pack),6,2.99,01/27/19 14:22,"23 Elm St, Boston, MA 02215" +150115,USB-C Charging Cable,2,11.95,01/05/19 18:22,"121 Lake St, San Francisco, CA 94016" +150116,Wired Headphones,1,11.99,01/20/19 09:59,"169 Dogwood St, San Francisco, CA 94016" +150117,AA Batteries (4-pack),1,3.84,01/24/19 11:57,"904 River St, Atlanta, GA 30301" +150118,Lightning Charging Cable,1,14.95,01/14/19 17:45,"698 2nd St, Dallas, TX 75001" +150119,Bose SoundSport Headphones,1,99.99,01/03/19 21:56,"976 Elm St, Atlanta, GA 30301" +150120,Bose SoundSport Headphones,1,99.99,01/23/19 09:52,"699 Church St, San Francisco, CA 94016" +150121,AAA Batteries (4-pack),1,2.99,01/24/19 20:54,"957 8th St, New York City, NY 10001" +150122,AA Batteries (4-pack),1,3.84,01/06/19 11:40,"814 Walnut St, Seattle, WA 98101" +150123,Wired Headphones,1,11.99,01/20/19 00:40,"431 Cherry St, New York City, NY 10001" +150124,USB-C Charging Cable,1,11.95,01/23/19 08:26,"989 Maple St, Los Angeles, CA 90001" +150125,USB-C Charging Cable,1,11.95,01/02/19 12:58,"651 Maple St, New York City, NY 10001" +150126,Bose SoundSport Headphones,1,99.99,01/07/19 15:11,"449 Cedar St, Los Angeles, CA 90001" +150127,34in Ultrawide Monitor,1,379.99,01/23/19 14:52,"340 Ridge St, Boston, MA 02215" +150128,27in 4K Gaming Monitor,1,389.99,01/20/19 18:29,"858 Elm St, Boston, MA 02215" +150129,USB-C Charging Cable,2,11.95,01/13/19 21:37,"196 Hickory St, Seattle, WA 98101" +150130,AA Batteries (4-pack),1,3.84,01/05/19 14:12,"617 8th St, Seattle, WA 98101" +150131,USB-C Charging Cable,2,11.95,01/29/19 08:33,"602 Pine St, Los Angeles, CA 90001" +150132,Apple Airpods Headphones,1,150,01/30/19 18:37,"549 South St, Seattle, WA 98101" +150133,Wired Headphones,1,11.99,01/13/19 10:14,"438 9th St, Boston, MA 02215" +150134,AA Batteries (4-pack),2,3.84,01/23/19 09:39,"691 10th St, Los Angeles, CA 90001" +150135,iPhone,1,700,01/29/19 15:56,"197 14th St, Los Angeles, CA 90001" +150136,Apple Airpods Headphones,1,150,01/12/19 10:38,"26 Elm St, Los Angeles, CA 90001" +150137,Wired Headphones,2,11.99,01/22/19 14:50,"831 Jefferson St, Portland, ME 04101" +150138,20in Monitor,1,109.99,01/06/19 10:44,"69 Elm St, Seattle, WA 98101" +150139,27in FHD Monitor,1,149.99,01/04/19 10:33,"822 Wilson St, Portland, OR 97035" +150140,AAA Batteries (4-pack),1,2.99,01/12/19 02:46,"928 Walnut St, San Francisco, CA 94016" +150141,USB-C Charging Cable,1,11.95,01/31/19 09:41,"420 Sunset St, San Francisco, CA 94016" +150142,Macbook Pro Laptop,1,1700,01/01/19 10:07,"162 11th St, Los Angeles, CA 90001" +150143,AAA Batteries (4-pack),1,2.99,01/17/19 00:42,"373 13th St, New York City, NY 10001" +150144,Vareebadd Phone,1,400,01/27/19 20:18,"456 Sunset St, Seattle, WA 98101" +150145,AAA Batteries (4-pack),1,2.99,01/25/19 19:30,"707 Cherry St, San Francisco, CA 94016" +150146,AAA Batteries (4-pack),1,2.99,01/08/19 23:51,"546 12th St, New York City, NY 10001" +150147,USB-C Charging Cable,1,11.95,01/06/19 15:45,"929 9th St, Seattle, WA 98101" +150148,Bose SoundSport Headphones,1,99.99,01/04/19 11:57,"821 South St, Austin, TX 73301" +150149,AA Batteries (4-pack),1,3.84,01/12/19 12:40,"956 Chestnut St, New York City, NY 10001" +150150,Flatscreen TV,1,300,01/07/19 07:40,"93 1st St, San Francisco, CA 94016" +150151,USB-C Charging Cable,1,11.95,01/16/19 21:47,"50 6th St, San Francisco, CA 94016" +150152,Lightning Charging Cable,1,14.95,01/27/19 13:12,"262 Dogwood St, Los Angeles, CA 90001" +150153,AAA Batteries (4-pack),1,2.99,01/17/19 14:35,"534 1st St, New York City, NY 10001" +150154,Macbook Pro Laptop,1,1700,01/18/19 14:23,"174 Spruce St, Atlanta, GA 30301" +150155,USB-C Charging Cable,1,11.95,01/16/19 19:43,"668 10th St, New York City, NY 10001" +150156,AAA Batteries (4-pack),1,2.99,01/28/19 12:59,"741 River St, San Francisco, CA 94016" +150157,20in Monitor,1,109.99,01/11/19 22:12,"620 Park St, San Francisco, CA 94016" +150158,34in Ultrawide Monitor,1,379.99,01/03/19 11:51,"856 Sunset St, New York City, NY 10001" +150159,27in 4K Gaming Monitor,1,389.99,01/08/19 07:53,"173 West St, Atlanta, GA 30301" +150160,20in Monitor,1,109.99,01/27/19 21:20,"425 Center St, Boston, MA 02215" +150161,Lightning Charging Cable,1,14.95,01/16/19 17:42,"387 Forest St, Portland, OR 97035" +150162,USB-C Charging Cable,1,11.95,01/21/19 14:13,"205 Hickory St, Seattle, WA 98101" +150163,Google Phone,1,600,01/14/19 14:41,"787 Walnut St, San Francisco, CA 94016" +150164,Lightning Charging Cable,1,14.95,01/27/19 18:01,"385 6th St, San Francisco, CA 94016" +150165,27in 4K Gaming Monitor,1,389.99,01/19/19 21:51,"960 River St, New York City, NY 10001" +150166,Vareebadd Phone,1,400,01/15/19 15:23,"636 Ridge St, Boston, MA 02215" +150167,Bose SoundSport Headphones,1,99.99,01/14/19 13:32,"493 Main St, San Francisco, CA 94016" +150168,Bose SoundSport Headphones,1,99.99,01/14/19 18:36,"27 Chestnut St, Portland, OR 97035" +150169,Wired Headphones,1,11.99,01/24/19 14:45,"669 Walnut St, Boston, MA 02215" +150170,Lightning Charging Cable,1,14.95,01/11/19 22:23,"231 South St, Dallas, TX 75001" +150171,AAA Batteries (4-pack),1,2.99,01/26/19 22:50,"260 Walnut St, New York City, NY 10001" +150172,Lightning Charging Cable,1,14.95,01/28/19 18:36,"535 Meadow St, Boston, MA 02215" +150173,iPhone,1,700,01/08/19 11:10,"628 Wilson St, Atlanta, GA 30301" +150174,Lightning Charging Cable,1,14.95,01/22/19 20:04,"568 Maple St, San Francisco, CA 94016" +150175,USB-C Charging Cable,1,11.95,01/04/19 12:22,"407 9th St, Portland, OR 97035" +150176,AA Batteries (4-pack),2,3.84,01/05/19 23:19,"544 Chestnut St, Boston, MA 02215" +150177,Apple Airpods Headphones,1,150,01/07/19 10:32,"632 Cherry St, Dallas, TX 75001" +150177,Wired Headphones,1,11.99,01/07/19 10:32,"632 Cherry St, Dallas, TX 75001" +150178,AAA Batteries (4-pack),1,2.99,01/30/19 07:53,"591 Spruce St, Dallas, TX 75001" +150179,USB-C Charging Cable,1,11.95,01/11/19 09:04,"336 Madison St, Portland, OR 97035" +150180,Macbook Pro Laptop,1,1700,01/30/19 04:50,"187 Spruce St, Seattle, WA 98101" +150181,AA Batteries (4-pack),1,3.84,01/12/19 20:53,"497 Lincoln St, Portland, OR 97035" +150182,USB-C Charging Cable,1,11.95,01/13/19 23:46,"635 Ridge St, Austin, TX 73301" +150183,Lightning Charging Cable,1,14.95,01/15/19 08:43,"955 13th St, Los Angeles, CA 90001" +150184,Bose SoundSport Headphones,1,99.99,01/07/19 23:13,"312 Washington St, Boston, MA 02215" +150185,Lightning Charging Cable,1,14.95,01/12/19 21:38,"351 1st St, Portland, ME 04101" +150186,Bose SoundSport Headphones,1,99.99,01/29/19 22:43,"751 Lincoln St, San Francisco, CA 94016" +150187,Bose SoundSport Headphones,1,99.99,01/26/19 10:57,"943 Cedar St, San Francisco, CA 94016" +150188,Lightning Charging Cable,1,14.95,01/24/19 10:36,"456 Spruce St, Dallas, TX 75001" +150189,Vareebadd Phone,1,400,01/03/19 08:58,"251 Hickory St, Austin, TX 73301" +150190,Apple Airpods Headphones,1,150,01/23/19 13:19,"725 Jefferson St, New York City, NY 10001" +150191,Lightning Charging Cable,1,14.95,01/29/19 18:18,"527 Madison St, Austin, TX 73301" +150192,Google Phone,1,600,01/10/19 18:02,"139 Cherry St, Dallas, TX 75001" +150192,Wired Headphones,1,11.99,01/10/19 18:02,"139 Cherry St, Dallas, TX 75001" +150193,Bose SoundSport Headphones,1,99.99,01/24/19 12:17,"522 South St, Los Angeles, CA 90001" +150194,27in FHD Monitor,1,149.99,01/24/19 16:05,"226 Hickory St, San Francisco, CA 94016" +150195,AA Batteries (4-pack),1,3.84,01/05/19 21:52,"617 12th St, Seattle, WA 98101" +150196,USB-C Charging Cable,1,11.95,01/07/19 10:28,"518 9th St, Los Angeles, CA 90001" +150197,USB-C Charging Cable,1,11.95,01/13/19 19:38,"722 Walnut St, Atlanta, GA 30301" +150198,Vareebadd Phone,1,400,01/30/19 18:30,"772 2nd St, Portland, OR 97035" +150199,Wired Headphones,1,11.99,01/17/19 23:24,"814 Forest St, Austin, TX 73301" +150200,USB-C Charging Cable,1,11.95,01/06/19 11:40,"380 River St, San Francisco, CA 94016" +150201,Wired Headphones,1,11.99,01/10/19 14:41,"870 Walnut St, Los Angeles, CA 90001" +150202,Macbook Pro Laptop,1,1700,01/13/19 11:14,"356 Jackson St, Atlanta, GA 30301" +150203,AA Batteries (4-pack),1,3.84,01/27/19 03:42,"466 9th St, San Francisco, CA 94016" +150204,Lightning Charging Cable,1,14.95,01/20/19 20:55,"299 6th St, San Francisco, CA 94016" +150205,Apple Airpods Headphones,1,150,01/20/19 08:29,"137 Ridge St, Dallas, TX 75001" +150206,Google Phone,1,600,01/25/19 08:56,"350 River St, Portland, OR 97035" +150206,USB-C Charging Cable,1,11.95,01/25/19 08:56,"350 River St, Portland, OR 97035" +150207,AA Batteries (4-pack),1,3.84,01/11/19 21:32,"756 Elm St, San Francisco, CA 94016" +150208,AAA Batteries (4-pack),1,2.99,01/14/19 21:07,"85 Meadow St, Austin, TX 73301" +150209,Wired Headphones,1,11.99,01/25/19 19:29,"848 12th St, Seattle, WA 98101" +150210,USB-C Charging Cable,2,11.95,01/17/19 20:03,"568 Maple St, Seattle, WA 98101" +150211,Apple Airpods Headphones,1,150,01/29/19 11:35,"483 10th St, Boston, MA 02215" +150212,Apple Airpods Headphones,1,150,01/18/19 14:06,"198 9th St, San Francisco, CA 94016" +150213,Lightning Charging Cable,1,14.95,01/18/19 16:12,"604 14th St, Los Angeles, CA 90001" +150214,Lightning Charging Cable,1,14.95,01/12/19 22:45,"591 4th St, Los Angeles, CA 90001" +150215,Bose SoundSport Headphones,1,99.99,01/07/19 22:58,"832 13th St, San Francisco, CA 94016" +150216,Apple Airpods Headphones,1,150,01/31/19 21:35,"604 11th St, Boston, MA 02215" +150217,20in Monitor,1,109.99,01/19/19 07:53,"132 Highland St, New York City, NY 10001" +150218,27in 4K Gaming Monitor,1,389.99,01/14/19 19:17,"773 Pine St, San Francisco, CA 94016" +150219,Macbook Pro Laptop,1,1700,01/06/19 22:23,"608 Adams St, Los Angeles, CA 90001" +150220,34in Ultrawide Monitor,1,379.99,01/06/19 23:25,"910 14th St, San Francisco, CA 94016" +150221,iPhone,1,700,01/09/19 13:28,"303 8th St, Austin, TX 73301" +150221,Lightning Charging Cable,1,14.95,01/09/19 13:28,"303 8th St, Austin, TX 73301" +150222,Google Phone,1,600,01/25/19 19:28,"235 Cedar St, Boston, MA 02215" +150223,Macbook Pro Laptop,1,1700,01/03/19 19:49,"189 Main St, Los Angeles, CA 90001" +150224,Macbook Pro Laptop,1,1700,01/10/19 00:01,"90 Elm St, Atlanta, GA 30301" +150225,AA Batteries (4-pack),1,3.84,01/18/19 15:12,"944 Walnut St, Los Angeles, CA 90001" +150226,USB-C Charging Cable,1,11.95,01/04/19 21:57,"828 Church St, New York City, NY 10001" +150227,Apple Airpods Headphones,1,150,01/24/19 09:09,"960 4th St, Portland, ME 04101" +150228,Lightning Charging Cable,1,14.95,01/23/19 18:42,"301 10th St, Los Angeles, CA 90001" +150229,AA Batteries (4-pack),2,3.84,01/07/19 17:54,"511 11th St, Los Angeles, CA 90001" +150230,27in 4K Gaming Monitor,1,389.99,01/07/19 10:02,"31 Cedar St, San Francisco, CA 94016" +150231,27in FHD Monitor,1,149.99,01/18/19 18:36,"965 8th St, Los Angeles, CA 90001" +150232,Lightning Charging Cable,1,14.95,01/25/19 14:08,"635 West St, Atlanta, GA 30301" +150233,AA Batteries (4-pack),2,3.84,01/14/19 21:34,"756 Johnson St, New York City, NY 10001" +150234,Apple Airpods Headphones,1,150,01/27/19 14:24,"647 Cedar St, Los Angeles, CA 90001" +150235,Wired Headphones,1,11.99,01/16/19 19:59,"23 Dogwood St, New York City, NY 10001" +150236,USB-C Charging Cable,1,11.95,01/28/19 10:03,"816 Park St, Austin, TX 73301" +150237,AA Batteries (4-pack),1,3.84,01/07/19 18:39,"168 4th St, New York City, NY 10001" +150238,20in Monitor,1,109.99,01/07/19 15:15,"766 Main St, San Francisco, CA 94016" +150239,USB-C Charging Cable,1,11.95,01/22/19 19:22,"178 Cedar St, San Francisco, CA 94016" +150240,Apple Airpods Headphones,1,150,01/23/19 00:40,"226 Willow St, Los Angeles, CA 90001" +150241,iPhone,1,700,01/14/19 10:29,"818 Spruce St, New York City, NY 10001" +150242,AAA Batteries (4-pack),1,2.99,01/25/19 15:59,"696 9th St, San Francisco, CA 94016" +150243,Macbook Pro Laptop,1,1700,01/31/19 10:56,"197 Chestnut St, Dallas, TX 75001" +150244,AAA Batteries (4-pack),1,2.99,01/03/19 11:25,"964 2nd St, San Francisco, CA 94016" +150244,Lightning Charging Cable,1,14.95,01/03/19 11:25,"964 2nd St, San Francisco, CA 94016" +150245,AA Batteries (4-pack),2,3.84,01/30/19 22:36,"65 South St, Dallas, TX 75001" +150246,AAA Batteries (4-pack),2,2.99,01/17/19 11:57,"551 Church St, New York City, NY 10001" +150247,Wired Headphones,1,11.99,01/20/19 09:11,"607 Lakeview St, Boston, MA 02215" +150248,AAA Batteries (4-pack),1,2.99,01/05/19 11:00,"916 Lincoln St, Seattle, WA 98101" +150249,Bose SoundSport Headphones,1,99.99,01/13/19 15:59,"454 1st St, San Francisco, CA 94016" +150250,20in Monitor,1,109.99,01/28/19 06:47,"423 North St, New York City, NY 10001" +150251,27in 4K Gaming Monitor,1,389.99,01/21/19 19:13,"385 Walnut St, Portland, OR 97035" +150252,Bose SoundSport Headphones,1,99.99,01/30/19 13:58,"341 8th St, New York City, NY 10001" +150253,Lightning Charging Cable,1,14.95,01/06/19 02:14,"326 Lakeview St, Austin, TX 73301" +150254,34in Ultrawide Monitor,1,379.99,01/29/19 13:07,"733 Dogwood St, Los Angeles, CA 90001" +150255,Lightning Charging Cable,1,14.95,01/25/19 19:22,"429 2nd St, New York City, NY 10001" +150256,Google Phone,1,600,01/02/19 00:01,"600 4th St, San Francisco, CA 94016" +150257,LG Dryer,1,600.0,01/19/19 12:44,"37 Meadow St, Dallas, TX 75001" +150258,Lightning Charging Cable,1,14.95,01/13/19 20:30,"948 1st St, Los Angeles, CA 90001" +150259,AA Batteries (4-pack),1,3.84,01/16/19 11:39,"491 Forest St, San Francisco, CA 94016" +150260,27in 4K Gaming Monitor,1,389.99,01/19/19 07:33,"185 Johnson St, Boston, MA 02215" +150261,Apple Airpods Headphones,1,150,01/24/19 18:23,"316 Lake St, New York City, NY 10001" +150262,Bose SoundSport Headphones,1,99.99,01/18/19 09:34,"359 2nd St, San Francisco, CA 94016" +150263,Wired Headphones,1,11.99,01/06/19 22:45,"456 Sunset St, Los Angeles, CA 90001" +150264,Bose SoundSport Headphones,1,99.99,01/15/19 15:18,"503 Spruce St, Los Angeles, CA 90001" +150265,Lightning Charging Cable,1,14.95,01/03/19 15:41,"420 11th St, New York City, NY 10001" +150266,Bose SoundSport Headphones,1,99.99,01/26/19 13:15,"753 9th St, Boston, MA 02215" +150267,USB-C Charging Cable,1,11.95,01/25/19 06:41,"296 Dogwood St, Los Angeles, CA 90001" +150268,AAA Batteries (4-pack),1,2.99,01/16/19 17:27,"824 Walnut St, San Francisco, CA 94016" +150269,Apple Airpods Headphones,1,150,01/13/19 14:47,"587 Main St, Los Angeles, CA 90001" +150270,Apple Airpods Headphones,1,150,01/02/19 21:39,"639 Adams St, New York City, NY 10001" +150271,USB-C Charging Cable,1,11.95,01/24/19 21:08,"139 1st St, San Francisco, CA 94016" +150272,Wired Headphones,2,11.99,01/01/19 09:47,"176 Highland St, San Francisco, CA 94016" +150273,Flatscreen TV,1,300,01/17/19 05:07,"138 Jefferson St, San Francisco, CA 94016" +150274,Wired Headphones,1,11.99,01/06/19 17:34,"643 Highland St, Boston, MA 02215" +150275,27in FHD Monitor,1,149.99,01/27/19 01:16,"244 Spruce St, Dallas, TX 75001" +150276,USB-C Charging Cable,1,11.95,01/03/19 16:00,"43 Walnut St, Boston, MA 02215" +150277,USB-C Charging Cable,1,11.95,01/04/19 20:44,"184 6th St, San Francisco, CA 94016" +150278,LG Washing Machine,1,600.0,01/24/19 17:14,"134 12th St, Portland, OR 97035" +150279,AAA Batteries (4-pack),1,2.99,01/03/19 12:25,"816 West St, Portland, OR 97035" +150280,Wired Headphones,1,11.99,01/13/19 01:26,"160 Walnut St, Boston, MA 02215" +150281,27in 4K Gaming Monitor,1,389.99,01/24/19 11:33,"536 South St, New York City, NY 10001" +150282,Google Phone,1,600,01/15/19 23:56,"559 Jackson St, Los Angeles, CA 90001" +150282,USB-C Charging Cable,1,11.95,01/15/19 23:56,"559 Jackson St, Los Angeles, CA 90001" +150283,Apple Airpods Headphones,1,150,01/14/19 14:11,"792 Lincoln St, Los Angeles, CA 90001" +150284,AAA Batteries (4-pack),2,2.99,01/24/19 21:38,"895 Johnson St, San Francisco, CA 94016" +150285,USB-C Charging Cable,1,11.95,01/05/19 13:58,"277 9th St, San Francisco, CA 94016" +150286,Google Phone,1,600,01/20/19 09:52,"9 Chestnut St, Los Angeles, CA 90001" +150287,Bose SoundSport Headphones,1,99.99,01/29/19 10:50,"587 Cherry St, Austin, TX 73301" +150288,Macbook Pro Laptop,1,1700,01/09/19 10:52,"636 West St, New York City, NY 10001" +150289,Wired Headphones,2,11.99,01/08/19 19:52,"882 Adams St, Los Angeles, CA 90001" +150290,Apple Airpods Headphones,1,150,01/05/19 14:19,"149 West St, Boston, MA 02215" +150291,Lightning Charging Cable,1,14.95,01/02/19 12:16,"523 Forest St, Atlanta, GA 30301" +150292,Wired Headphones,1,11.99,01/16/19 18:13,"862 Ridge St, Dallas, TX 75001" +150293,USB-C Charging Cable,2,11.95,01/22/19 15:54,"417 Highland St, Los Angeles, CA 90001" +150294,AA Batteries (4-pack),1,3.84,01/01/19 23:46,"593 11th St, Seattle, WA 98101" +150295,Macbook Pro Laptop,1,1700,01/12/19 21:43,"468 Hill St, San Francisco, CA 94016" +150296,Wired Headphones,1,11.99,01/13/19 23:09,"721 10th St, Dallas, TX 75001" +150297,AAA Batteries (4-pack),1,2.99,01/27/19 10:55,"875 Lincoln St, New York City, NY 10001" +150298,AA Batteries (4-pack),1,3.84,01/18/19 19:13,"156 10th St, San Francisco, CA 94016" +150299,Apple Airpods Headphones,1,150,01/04/19 16:18,"785 Jefferson St, New York City, NY 10001" +150300,AA Batteries (4-pack),1,3.84,01/28/19 17:15,"385 Dogwood St, Austin, TX 73301" +150301,27in 4K Gaming Monitor,1,389.99,01/12/19 12:55,"249 Main St, Boston, MA 02215" +150302,Macbook Pro Laptop,1,1700,01/04/19 18:15,"637 Washington St, Dallas, TX 75001" +150303,Bose SoundSport Headphones,1,99.99,01/21/19 16:30,"873 Cedar St, Seattle, WA 98101" +150304,AA Batteries (4-pack),1,3.84,01/10/19 09:34,"174 Madison St, Dallas, TX 75001" +150305,AA Batteries (4-pack),2,3.84,01/08/19 18:59,"875 Lake St, Boston, MA 02215" +150306,Google Phone,1,600,01/07/19 14:34,"810 West St, San Francisco, CA 94016" +150306,USB-C Charging Cable,2,11.95,01/07/19 14:34,"810 West St, San Francisco, CA 94016" +150307,27in 4K Gaming Monitor,1,389.99,01/26/19 20:14,"987 River St, Boston, MA 02215" +150308,iPhone,1,700,01/20/19 16:58,"431 Park St, Dallas, TX 75001" +150309,USB-C Charging Cable,1,11.95,01/08/19 21:10,"829 Spruce St, Atlanta, GA 30301" +150310,Bose SoundSport Headphones,1,99.99,01/26/19 18:26,"831 1st St, Los Angeles, CA 90001" +150311,USB-C Charging Cable,1,11.95,01/17/19 11:34,"714 Walnut St, Los Angeles, CA 90001" +150312,AAA Batteries (4-pack),1,2.99,01/16/19 16:39,"964 Willow St, San Francisco, CA 94016" +150313,27in 4K Gaming Monitor,1,389.99,01/12/19 00:22,"71 Johnson St, San Francisco, CA 94016" +150314,Google Phone,1,600,01/06/19 13:19,"236 Adams St, Dallas, TX 75001" +150314,iPhone,1,700,01/06/19 13:19,"236 Adams St, Dallas, TX 75001" +150315,27in FHD Monitor,1,149.99,01/17/19 21:52,"561 Hickory St, Los Angeles, CA 90001" +150316,Flatscreen TV,1,300,01/28/19 20:27,"669 Madison St, Atlanta, GA 30301" +150317,27in 4K Gaming Monitor,1,389.99,01/02/19 15:09,"702 14th St, Los Angeles, CA 90001" +150318,Bose SoundSport Headphones,1,99.99,01/10/19 09:30,"536 Dogwood St, Seattle, WA 98101" +150319,Apple Airpods Headphones,1,150,01/10/19 13:39,"316 Cedar St, Dallas, TX 75001" +150320,AAA Batteries (4-pack),3,2.99,01/26/19 18:12,"834 Sunset St, Atlanta, GA 30301" +150321,Bose SoundSport Headphones,1,99.99,01/22/19 09:18,"829 Maple St, Seattle, WA 98101" +150322,Apple Airpods Headphones,1,150,01/14/19 14:42,"142 5th St, Boston, MA 02215" +150323,Lightning Charging Cable,1,14.95,01/10/19 09:52,"941 Dogwood St, San Francisco, CA 94016" +150324,20in Monitor,1,109.99,01/13/19 21:01,"311 Cedar St, San Francisco, CA 94016" +150325,USB-C Charging Cable,1,11.95,01/31/19 13:22,"657 Cherry St, Seattle, WA 98101" +150326,Bose SoundSport Headphones,1,99.99,01/27/19 21:38,"823 Willow St, Los Angeles, CA 90001" +150327,Google Phone,1,600,01/07/19 13:51,"5 Meadow St, Los Angeles, CA 90001" +150328,iPhone,1,700,01/11/19 21:39,"978 10th St, Dallas, TX 75001" +150329,AAA Batteries (4-pack),2,2.99,01/16/19 09:02,"641 Johnson St, Austin, TX 73301" +150330,Bose SoundSport Headphones,1,99.99,01/18/19 08:45,"29 13th St, San Francisco, CA 94016" +150330,ThinkPad Laptop,1,999.99,01/18/19 08:45,"29 13th St, San Francisco, CA 94016" +150331,Bose SoundSport Headphones,1,99.99,01/19/19 14:01,"150 Highland St, San Francisco, CA 94016" +150332,Apple Airpods Headphones,1,150,01/04/19 20:14,"452 Meadow St, San Francisco, CA 94016" +150333,Apple Airpods Headphones,1,150,01/15/19 20:30,"876 Chestnut St, Austin, TX 73301" +150334,AA Batteries (4-pack),1,3.84,01/23/19 02:04,"218 14th St, San Francisco, CA 94016" +150335,AA Batteries (4-pack),1,3.84,01/16/19 20:31,"446 Main St, Boston, MA 02215" +150336,Lightning Charging Cable,1,14.95,01/14/19 16:36,"131 Main St, Dallas, TX 75001" +150337,Lightning Charging Cable,2,14.95,01/05/19 22:29,"717 5th St, Dallas, TX 75001" +150338,Google Phone,1,600,01/09/19 16:36,"965 Hickory St, Portland, OR 97035" +150339,Wired Headphones,1,11.99,01/19/19 09:52,"835 Cedar St, Los Angeles, CA 90001" +150340,Lightning Charging Cable,1,14.95,01/28/19 02:00,"584 West St, Dallas, TX 75001" +150341,Lightning Charging Cable,1,14.95,01/29/19 17:10,"999 Elm St, Boston, MA 02215" +150342,AA Batteries (4-pack),1,3.84,01/03/19 22:26,"366 11th St, New York City, NY 10001" +150343,AAA Batteries (4-pack),2,2.99,01/18/19 09:59,"292 7th St, San Francisco, CA 94016" +150343,AAA Batteries (4-pack),2,2.99,01/18/19 09:59,"292 7th St, San Francisco, CA 94016" +150344,AAA Batteries (4-pack),2,2.99,01/02/19 06:19,"52 Madison St, Austin, TX 73301" +150345,27in FHD Monitor,1,149.99,01/27/19 16:49,"131 Lake St, Los Angeles, CA 90001" +150346,Apple Airpods Headphones,1,150,01/31/19 19:01,"820 Maple St, San Francisco, CA 94016" +150347,AA Batteries (4-pack),1,3.84,01/05/19 14:03,"215 Maple St, San Francisco, CA 94016" +150348,27in 4K Gaming Monitor,1,389.99,01/23/19 13:13,"231 Elm St, Seattle, WA 98101" +150349,iPhone,1,700,01/21/19 21:45,"103 West St, Portland, ME 04101" +150350,AA Batteries (4-pack),2,3.84,01/01/19 15:40,"746 1st St, Portland, OR 97035" +150351,Lightning Charging Cable,1,14.95,01/27/19 20:14,"47 Lake St, New York City, NY 10001" +150352,AA Batteries (4-pack),1,3.84,01/10/19 07:32,"210 Lincoln St, New York City, NY 10001" +150353,AA Batteries (4-pack),1,3.84,01/18/19 13:19,"68 Wilson St, Boston, MA 02215" +150354,AAA Batteries (4-pack),1,2.99,01/24/19 16:17,"15 Park St, San Francisco, CA 94016" +150355,AA Batteries (4-pack),1,3.84,01/17/19 10:09,"635 Madison St, Los Angeles, CA 90001" +150356,Bose SoundSport Headphones,1,99.99,01/24/19 22:31,"661 Chestnut St, Boston, MA 02215" +150357,AA Batteries (4-pack),1,3.84,01/27/19 18:45,"243 5th St, Seattle, WA 98101" +150358,AAA Batteries (4-pack),1,2.99,01/03/19 18:14,"755 Spruce St, San Francisco, CA 94016" +150359,Wired Headphones,1,11.99,01/15/19 22:35,"45 Church St, Austin, TX 73301" +150360,Lightning Charging Cable,1,14.95,01/01/19 14:49,"832 Elm St, Atlanta, GA 30301" +150361,Flatscreen TV,1,300,01/04/19 19:53,"750 11th St, Boston, MA 02215" +150362,Bose SoundSport Headphones,1,99.99,01/22/19 14:25,"511 Lake St, Dallas, TX 75001" +150363,Wired Headphones,1,11.99,01/07/19 07:19,"275 Spruce St, Los Angeles, CA 90001" +150364,USB-C Charging Cable,1,11.95,01/24/19 18:05,"78 Forest St, Boston, MA 02215" +150365,USB-C Charging Cable,1,11.95,01/10/19 03:27,"522 West St, Boston, MA 02215" +150366,AA Batteries (4-pack),1,3.84,01/10/19 11:47,"699 5th St, Atlanta, GA 30301" +150367,USB-C Charging Cable,1,11.95,01/02/19 19:57,"975 Highland St, Boston, MA 02215" +150368,AAA Batteries (4-pack),1,2.99,01/29/19 16:07,"115 Elm St, Los Angeles, CA 90001" +150369,Flatscreen TV,1,300,01/06/19 20:23,"957 Sunset St, Los Angeles, CA 90001" +150370,Bose SoundSport Headphones,1,99.99,01/11/19 15:01,"236 Wilson St, Los Angeles, CA 90001" +150371,Lightning Charging Cable,1,14.95,01/29/19 13:13,"731 10th St, Dallas, TX 75001" +150372,20in Monitor,1,109.99,01/18/19 23:21,"104 Sunset St, Boston, MA 02215" +150373,AAA Batteries (4-pack),1,2.99,01/30/19 16:31,"436 Cedar St, Dallas, TX 75001" +150374,Lightning Charging Cable,1,14.95,01/18/19 09:04,"422 West St, Portland, OR 97035" +150375,34in Ultrawide Monitor,1,379.99,01/07/19 12:53,"264 Main St, Portland, ME 04101" +150376,27in 4K Gaming Monitor,1,389.99,01/15/19 03:12,"940 Park St, Atlanta, GA 30301" +150377,iPhone,1,700,01/21/19 20:55,"254 1st St, Dallas, TX 75001" +150378,USB-C Charging Cable,1,11.95,01/11/19 08:05,"111 Cedar St, Atlanta, GA 30301" +150379,Google Phone,1,600,01/31/19 17:28,"354 Jefferson St, Los Angeles, CA 90001" +150380,Flatscreen TV,1,300,01/05/19 09:50,"187 Dogwood St, Seattle, WA 98101" +150381,AAA Batteries (4-pack),2,2.99,01/13/19 21:13,"990 7th St, San Francisco, CA 94016" +150382,Lightning Charging Cable,1,14.95,01/06/19 07:52,"765 13th St, Los Angeles, CA 90001" +150383,USB-C Charging Cable,1,11.95,01/29/19 21:01,"718 Highland St, Dallas, TX 75001" +150384,Wired Headphones,1,11.99,01/10/19 10:50,"544 Ridge St, New York City, NY 10001" +150385,AAA Batteries (4-pack),1,2.99,01/19/19 15:46,"291 Chestnut St, Seattle, WA 98101" +150386,Apple Airpods Headphones,1,150,01/10/19 23:06,"560 Main St, San Francisco, CA 94016" +150387,Flatscreen TV,1,300,01/16/19 14:04,"892 5th St, Boston, MA 02215" +150388,AA Batteries (4-pack),4,3.84,01/02/19 22:50,"470 Wilson St, New York City, NY 10001" +150388,iPhone,1,700,01/02/19 22:50,"470 Wilson St, New York City, NY 10001" +150389,AAA Batteries (4-pack),1,2.99,01/14/19 23:56,"114 Elm St, New York City, NY 10001" +150390,iPhone,1,700,01/11/19 12:26,"181 Sunset St, Dallas, TX 75001" +150390,Wired Headphones,1,11.99,01/11/19 12:26,"181 Sunset St, Dallas, TX 75001" +150391,AAA Batteries (4-pack),1,2.99,01/31/19 22:51,"980 2nd St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +150392,USB-C Charging Cable,1,11.95,01/01/19 16:34,"562 Washington St, San Francisco, CA 94016" +150393,USB-C Charging Cable,1,11.95,01/24/19 16:53,"837 Johnson St, Boston, MA 02215" +150394,27in FHD Monitor,1,149.99,01/23/19 23:07,"304 2nd St, Los Angeles, CA 90001" +150395,Wired Headphones,1,11.99,01/15/19 17:58,"283 8th St, San Francisco, CA 94016" +150396,Bose SoundSport Headphones,1,99.99,01/14/19 11:22,"927 Lakeview St, Seattle, WA 98101" +150397,Wired Headphones,1,11.99,01/04/19 14:06,"264 Church St, Los Angeles, CA 90001" +150398,Wired Headphones,1,11.99,01/12/19 10:05,"706 13th St, Los Angeles, CA 90001" +150399,Wired Headphones,1,11.99,01/09/19 12:42,"580 9th St, Boston, MA 02215" +150400,USB-C Charging Cable,1,11.95,01/02/19 13:22,"718 11th St, Portland, OR 97035" +150401,AAA Batteries (4-pack),3,2.99,01/15/19 18:09,"98 5th St, Los Angeles, CA 90001" +150402,Wired Headphones,1,11.99,01/20/19 11:29,"705 10th St, Seattle, WA 98101" +150403,34in Ultrawide Monitor,1,379.99,01/23/19 11:15,"695 Elm St, San Francisco, CA 94016" +150404,iPhone,1,700,01/17/19 12:14,"369 5th St, San Francisco, CA 94016" +150405,27in FHD Monitor,1,149.99,01/18/19 22:36,"918 Sunset St, San Francisco, CA 94016" +150406,Wired Headphones,1,11.99,01/09/19 17:43,"21 Chestnut St, Los Angeles, CA 90001" +150407,AAA Batteries (4-pack),1,2.99,01/25/19 22:13,"333 Meadow St, Boston, MA 02215" +150408,Macbook Pro Laptop,1,1700,01/30/19 11:15,"538 Chestnut St, Boston, MA 02215" +150409,Lightning Charging Cable,1,14.95,01/17/19 01:19,"13 6th St, Portland, OR 97035" +150410,Google Phone,1,600,01/24/19 13:18,"735 7th St, Los Angeles, CA 90001" +150411,Lightning Charging Cable,1,14.95,01/11/19 19:18,"904 Willow St, Los Angeles, CA 90001" +150412,AAA Batteries (4-pack),1,2.99,01/22/19 07:31,"158 Maple St, San Francisco, CA 94016" +150413,Wired Headphones,1,11.99,01/10/19 21:35,"277 Johnson St, San Francisco, CA 94016" +150414,LG Dryer,1,600.0,01/20/19 11:45,"119 14th St, Seattle, WA 98101" +150415,USB-C Charging Cable,1,11.95,01/03/19 19:54,"290 14th St, Boston, MA 02215" +150416,Wired Headphones,1,11.99,01/31/19 10:03,"194 Spruce St, Los Angeles, CA 90001" +150417,27in FHD Monitor,1,149.99,01/10/19 17:56,"505 Center St, San Francisco, CA 94016" +150418,Bose SoundSport Headphones,1,99.99,01/08/19 14:32,"690 Wilson St, Los Angeles, CA 90001" +150419,AAA Batteries (4-pack),2,2.99,01/09/19 23:11,"394 Hickory St, Boston, MA 02215" +150420,USB-C Charging Cable,1,11.95,01/13/19 18:18,"574 River St, New York City, NY 10001" +150420,AA Batteries (4-pack),1,3.84,01/13/19 18:18,"574 River St, New York City, NY 10001" +150421,Apple Airpods Headphones,1,150,01/16/19 16:55,"107 8th St, Los Angeles, CA 90001" +150422,AA Batteries (4-pack),1,3.84,01/12/19 11:01,"178 Chestnut St, Seattle, WA 98101" +150423,AAA Batteries (4-pack),2,2.99,01/18/19 08:12,"410 10th St, Atlanta, GA 30301" +150424,AAA Batteries (4-pack),3,2.99,01/26/19 12:23,"138 2nd St, Seattle, WA 98101" +150425,USB-C Charging Cable,1,11.95,01/06/19 10:20,"492 Cherry St, Los Angeles, CA 90001" +150426,27in FHD Monitor,1,149.99,01/05/19 01:26,"945 Center St, Los Angeles, CA 90001" +150426,Bose SoundSport Headphones,1,99.99,01/05/19 01:26,"945 Center St, Los Angeles, CA 90001" +150427,AA Batteries (4-pack),1,3.84,01/05/19 19:16,"109 4th St, Seattle, WA 98101" +150428,AA Batteries (4-pack),2,3.84,01/14/19 16:54,"582 Dogwood St, New York City, NY 10001" +150429,20in Monitor,1,109.99,01/31/19 07:08,"389 West St, Los Angeles, CA 90001" +150430,Vareebadd Phone,1,400,01/23/19 19:40,"352 Dogwood St, Los Angeles, CA 90001" +150431,AAA Batteries (4-pack),2,2.99,01/13/19 21:26,"274 Sunset St, Portland, OR 97035" +150432,27in FHD Monitor,1,149.99,01/20/19 17:15,"744 Wilson St, New York City, NY 10001" +150433,USB-C Charging Cable,1,11.95,01/11/19 13:00,"656 River St, Atlanta, GA 30301" +150434,Wired Headphones,2,11.99,01/11/19 17:03,"495 14th St, Portland, OR 97035" +150435,AAA Batteries (4-pack),2,2.99,01/01/19 17:00,"773 Church St, New York City, NY 10001" +150436,iPhone,1,700,01/29/19 08:54,"681 Highland St, Los Angeles, CA 90001" +150437,Apple Airpods Headphones,1,150,01/27/19 21:48,"356 Wilson St, San Francisco, CA 94016" +150438,Bose SoundSport Headphones,1,99.99,01/01/19 14:12,"807 Hill St, San Francisco, CA 94016" +150439,Vareebadd Phone,1,400,01/23/19 23:57,"196 South St, San Francisco, CA 94016" +150440,Apple Airpods Headphones,1,150,01/24/19 17:02,"925 9th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +150441,Macbook Pro Laptop,1,1700,01/22/19 13:44,"173 Maple St, New York City, NY 10001" +150442,Apple Airpods Headphones,1,150,01/25/19 11:04,"783 Church St, Seattle, WA 98101" +150443,Bose SoundSport Headphones,1,99.99,01/19/19 00:05,"276 Walnut St, New York City, NY 10001" +150444,ThinkPad Laptop,1,999.99,01/21/19 12:25,"865 14th St, New York City, NY 10001" +150445,Google Phone,1,600,01/30/19 19:23,"889 River St, San Francisco, CA 94016" +150446,34in Ultrawide Monitor,1,379.99,01/15/19 10:05,"415 Sunset St, Atlanta, GA 30301" +150447,Wired Headphones,1,11.99,01/02/19 05:52,"706 5th St, San Francisco, CA 94016" +150448,27in FHD Monitor,1,149.99,01/07/19 21:51,"163 12th St, Los Angeles, CA 90001" +150449,iPhone,1,700,01/01/19 15:49,"970 10th St, Los Angeles, CA 90001" +150450,iPhone,1,700,01/20/19 14:58,"272 Meadow St, Portland, OR 97035" +150451,USB-C Charging Cable,1,11.95,01/17/19 16:04,"36 Main St, San Francisco, CA 94016" +150452,27in 4K Gaming Monitor,1,389.99,01/19/19 07:34,"579 2nd St, Austin, TX 73301" +150453,AA Batteries (4-pack),1,3.84,01/19/19 22:56,"353 Hickory St, Portland, OR 97035" +150454,Apple Airpods Headphones,1,150,01/09/19 18:59,"389 1st St, Seattle, WA 98101" +150455,Wired Headphones,1,11.99,01/25/19 09:13,"706 Cherry St, Atlanta, GA 30301" +150456,27in 4K Gaming Monitor,1,389.99,01/22/19 03:57,"663 Dogwood St, Dallas, TX 75001" +150456,USB-C Charging Cable,1,11.95,01/22/19 03:57,"663 Dogwood St, Dallas, TX 75001" +150457,27in FHD Monitor,1,149.99,01/23/19 11:47,"615 Meadow St, Los Angeles, CA 90001" +150458,27in 4K Gaming Monitor,1,389.99,01/01/19 13:11,"401 12th St, New York City, NY 10001" +150459,AA Batteries (4-pack),1,3.84,01/06/19 15:05,"756 Dogwood St, San Francisco, CA 94016" +150460,Apple Airpods Headphones,1,150,01/04/19 10:43,"845 10th St, Atlanta, GA 30301" +150461,Bose SoundSport Headphones,1,99.99,01/15/19 20:40,"194 Dogwood St, Boston, MA 02215" +150462,AA Batteries (4-pack),2,3.84,01/05/19 12:27,"909 11th St, Los Angeles, CA 90001" +150462,AA Batteries (4-pack),2,3.84,01/05/19 12:27,"909 11th St, Los Angeles, CA 90001" +150463,Macbook Pro Laptop,1,1700,01/10/19 19:59,"351 Adams St, San Francisco, CA 94016" +150464,Wired Headphones,1,11.99,01/27/19 23:32,"712 Hickory St, Boston, MA 02215" +150465,USB-C Charging Cable,1,11.95,01/02/19 11:30,"541 Lakeview St, Seattle, WA 98101" +150466,AA Batteries (4-pack),2,3.84,01/31/19 11:23,"961 5th St, Los Angeles, CA 90001" +150467,Apple Airpods Headphones,1,150,01/18/19 12:32,"577 Highland St, Atlanta, GA 30301" +150468,ThinkPad Laptop,1,999.99,01/18/19 08:06,"110 Chestnut St, Portland, ME 04101" +150469,Lightning Charging Cable,2,14.95,01/27/19 16:54,"866 2nd St, San Francisco, CA 94016" +150470,Apple Airpods Headphones,1,150,01/12/19 10:36,"106 Hill St, Seattle, WA 98101" +150471,Google Phone,1,600,01/27/19 12:31,"510 Madison St, New York City, NY 10001" +150472,34in Ultrawide Monitor,1,379.99,01/21/19 17:10,"443 Hill St, New York City, NY 10001" +150473,27in FHD Monitor,1,149.99,01/06/19 04:00,"787 Adams St, Atlanta, GA 30301" +150474,Bose SoundSport Headphones,1,99.99,01/29/19 07:57,"799 Cedar St, Atlanta, GA 30301" +150475,USB-C Charging Cable,1,11.95,01/20/19 12:26,"534 Pine St, San Francisco, CA 94016" +150476,AAA Batteries (4-pack),1,2.99,01/31/19 23:04,"457 Hickory St, San Francisco, CA 94016" +150477,AA Batteries (4-pack),2,3.84,01/13/19 12:21,"622 9th St, San Francisco, CA 94016" +150478,USB-C Charging Cable,1,11.95,01/26/19 00:33,"767 Main St, San Francisco, CA 94016" +150479,Apple Airpods Headphones,1,150,01/05/19 20:22,"927 Adams St, Dallas, TX 75001" +150480,AA Batteries (4-pack),1,3.84,01/29/19 15:31,"93 Pine St, Portland, OR 97035" +150481,Wired Headphones,1,11.99,01/27/19 13:09,"283 North St, Portland, ME 04101" +150482,Lightning Charging Cable,1,14.95,01/31/19 16:16,"979 Lincoln St, Atlanta, GA 30301" +150483,Macbook Pro Laptop,1,1700,01/07/19 09:15,"215 4th St, Dallas, TX 75001" +150484,Apple Airpods Headphones,1,150,01/05/19 12:56,"794 10th St, Los Angeles, CA 90001" +150485,AAA Batteries (4-pack),1,2.99,01/31/19 12:09,"207 9th St, New York City, NY 10001" +150486,27in 4K Gaming Monitor,1,389.99,01/15/19 13:14,"607 2nd St, Los Angeles, CA 90001" +150487,AA Batteries (4-pack),2,3.84,01/19/19 09:17,"985 Dogwood St, San Francisco, CA 94016" +150488,USB-C Charging Cable,1,11.95,01/22/19 18:32,"945 4th St, San Francisco, CA 94016" +150489,Bose SoundSport Headphones,1,99.99,01/04/19 18:13,"363 4th St, New York City, NY 10001" +150490,27in 4K Gaming Monitor,1,389.99,01/18/19 10:46,"783 Meadow St, Austin, TX 73301" +150491,AA Batteries (4-pack),2,3.84,01/15/19 20:22,"722 Hickory St, Los Angeles, CA 90001" +150492,USB-C Charging Cable,1,11.95,01/28/19 21:41,"980 Hill St, Seattle, WA 98101" +150493,AA Batteries (4-pack),2,3.84,01/12/19 10:46,"272 4th St, Boston, MA 02215" +150494,AAA Batteries (4-pack),2,2.99,01/02/19 16:01,"359 Main St, San Francisco, CA 94016" +150495,27in FHD Monitor,1,149.99,01/06/19 10:50,"700 Church St, New York City, NY 10001" +150496,27in 4K Gaming Monitor,1,389.99,01/05/19 17:39,"951 South St, Seattle, WA 98101" +150497,USB-C Charging Cable,1,11.95,01/03/19 20:29,"980 6th St, San Francisco, CA 94016" +150498,27in 4K Gaming Monitor,1,389.99,01/28/19 22:09,"928 Elm St, Los Angeles, CA 90001" +150499,Google Phone,1,600,01/18/19 14:52,"181 Cherry St, Boston, MA 02215" +150500,AA Batteries (4-pack),1,3.84,01/15/19 09:43,"242 5th St, Dallas, TX 75001" +150501,Lightning Charging Cable,1,14.95,01/11/19 20:19,"587 Willow St, Atlanta, GA 30301" +150502,AAA Batteries (4-pack),1,2.99,01/07/19 17:02,"438 Adams St, Los Angeles, CA 90001" +150503,AA Batteries (4-pack),1,3.84,01/31/19 12:17,"774 9th St, New York City, NY 10001" +150504,iPhone,1,700,01/21/19 10:07,"999 12th St, Portland, OR 97035" +150504,Google Phone,1,600,01/21/19 10:07,"999 12th St, Portland, OR 97035" +150505,AAA Batteries (4-pack),1,2.99,01/18/19 08:51,"123 13th St, San Francisco, CA 94016" +150506,USB-C Charging Cable,1,11.95,01/08/19 19:59,"714 Lincoln St, Los Angeles, CA 90001" +150507,Bose SoundSport Headphones,1,99.99,01/15/19 11:43,"536 Meadow St, Austin, TX 73301" +150508,AA Batteries (4-pack),1,3.84,01/23/19 18:12,"933 10th St, San Francisco, CA 94016" +150509,20in Monitor,1,109.99,01/01/19 11:24,"757 Chestnut St, San Francisco, CA 94016" +150510,Lightning Charging Cable,1,14.95,01/17/19 12:59,"277 West St, Los Angeles, CA 90001" +150511,Lightning Charging Cable,1,14.95,01/30/19 15:46,"778 Park St, Boston, MA 02215" +150512,Macbook Pro Laptop,1,1700,01/03/19 13:28,"448 Johnson St, Dallas, TX 75001" +150513,AAA Batteries (4-pack),1,2.99,01/05/19 15:31,"490 Johnson St, Boston, MA 02215" +150514,AAA Batteries (4-pack),1,2.99,01/07/19 21:04,"730 Hickory St, San Francisco, CA 94016" +150515,Lightning Charging Cable,1,14.95,01/28/19 13:26,"156 North St, Atlanta, GA 30301" +150516,34in Ultrawide Monitor,1,379.99,01/12/19 15:12,"233 2nd St, Los Angeles, CA 90001" +150517,Flatscreen TV,1,300,01/06/19 22:03,"654 Willow St, Los Angeles, CA 90001" +150518,Bose SoundSport Headphones,1,99.99,01/25/19 18:28,"692 Cedar St, New York City, NY 10001" +150519,AA Batteries (4-pack),1,3.84,01/11/19 22:23,"905 Park St, Dallas, TX 75001" +150520,Google Phone,1,600,01/08/19 17:53,"989 Maple St, Los Angeles, CA 90001" +150521,27in FHD Monitor,1,149.99,01/12/19 16:13,"435 Adams St, Portland, OR 97035" +150522,USB-C Charging Cable,1,11.95,01/08/19 18:17,"891 Lakeview St, San Francisco, CA 94016" +150523,Lightning Charging Cable,1,14.95,01/28/19 18:06,"365 Lakeview St, San Francisco, CA 94016" +150524,20in Monitor,1,109.99,01/01/19 21:17,"998 8th St, San Francisco, CA 94016" +150525,AAA Batteries (4-pack),1,2.99,01/06/19 20:07,"37 Spruce St, San Francisco, CA 94016" +150526,iPhone,1,700,01/25/19 10:44,"313 Main St, Los Angeles, CA 90001" +150527,AA Batteries (4-pack),1,3.84,01/30/19 09:00,"547 Lincoln St, Los Angeles, CA 90001" +150528,AA Batteries (4-pack),1,3.84,01/18/19 06:59,"887 West St, San Francisco, CA 94016" +150529,AAA Batteries (4-pack),1,2.99,01/26/19 10:39,"154 6th St, San Francisco, CA 94016" +150530,27in FHD Monitor,1,149.99,01/03/19 17:16,"376 Highland St, Seattle, WA 98101" +150531,20in Monitor,1,109.99,01/06/19 19:41,"330 12th St, Los Angeles, CA 90001" +150532,Apple Airpods Headphones,1,150,01/05/19 22:09,"531 River St, Los Angeles, CA 90001" +150533,USB-C Charging Cable,1,11.95,01/26/19 14:04,"780 6th St, San Francisco, CA 94016" +150534,Lightning Charging Cable,1,14.95,01/16/19 15:30,"947 Madison St, Austin, TX 73301" +150535,Apple Airpods Headphones,1,150,01/02/19 23:13,"609 12th St, San Francisco, CA 94016" +150536,Wired Headphones,1,11.99,01/20/19 12:03,"627 South St, Dallas, TX 75001" +150537,Lightning Charging Cable,1,14.95,01/23/19 09:46,"222 9th St, New York City, NY 10001" +150538,AA Batteries (4-pack),1,3.84,01/08/19 00:08,"157 Highland St, New York City, NY 10001" +150539,Google Phone,1,600,01/20/19 16:56,"372 Church St, Los Angeles, CA 90001" +150540,USB-C Charging Cable,1,11.95,01/01/19 08:59,"643 Meadow St, Dallas, TX 75001" +150540,Bose SoundSport Headphones,1,99.99,01/01/19 08:59,"643 Meadow St, Dallas, TX 75001" +150541,AAA Batteries (4-pack),1,2.99,01/08/19 15:35,"176 Chestnut St, Atlanta, GA 30301" +150542,Lightning Charging Cable,1,14.95,01/11/19 12:22,"608 Jackson St, Boston, MA 02215" +150543,Apple Airpods Headphones,1,150,01/17/19 19:15,"127 Sunset St, Atlanta, GA 30301" +150544,27in 4K Gaming Monitor,1,389.99,01/20/19 05:56,"441 Church St, San Francisco, CA 94016" +150545,Wired Headphones,1,11.99,01/05/19 17:34,"205 Maple St, Boston, MA 02215" +150546,Lightning Charging Cable,1,14.95,01/17/19 19:10,"819 Chestnut St, Dallas, TX 75001" +150547,AAA Batteries (4-pack),2,2.99,01/09/19 16:29,"437 9th St, Los Angeles, CA 90001" +150548,Wired Headphones,1,11.99,01/29/19 17:22,"32 Maple St, San Francisco, CA 94016" +150549,Bose SoundSport Headphones,1,99.99,01/17/19 20:43,"882 Elm St, Los Angeles, CA 90001" +150550,AAA Batteries (4-pack),1,2.99,01/31/19 20:03,"731 South St, Atlanta, GA 30301" +150551,27in 4K Gaming Monitor,1,389.99,01/24/19 23:19,"625 River St, San Francisco, CA 94016" +150552,USB-C Charging Cable,1,11.95,01/27/19 12:19,"348 Dogwood St, Austin, TX 73301" +150553,Google Phone,1,600,01/13/19 10:48,"758 South St, San Francisco, CA 94016" +150554,USB-C Charging Cable,1,11.95,01/20/19 15:30,"340 11th St, San Francisco, CA 94016" +150555,Apple Airpods Headphones,1,150,01/12/19 13:04,"384 Cedar St, New York City, NY 10001" +150556,Google Phone,1,600,01/16/19 23:48,"907 Center St, Austin, TX 73301" +150557,Google Phone,1,600,01/22/19 14:59,"53 7th St, Los Angeles, CA 90001" +150557,USB-C Charging Cable,1,11.95,01/22/19 14:59,"53 7th St, Los Angeles, CA 90001" +150558,Lightning Charging Cable,1,14.95,01/17/19 21:48,"101 11th St, San Francisco, CA 94016" +150559,Wired Headphones,1,11.99,01/04/19 09:41,"211 Walnut St, Portland, OR 97035" +150560,Bose SoundSport Headphones,1,99.99,01/02/19 14:21,"937 Adams St, Austin, TX 73301" +150561,Lightning Charging Cable,1,14.95,01/14/19 21:17,"930 Church St, San Francisco, CA 94016" +150562,iPhone,1,700,01/06/19 12:44,"2 Adams St, Atlanta, GA 30301" +150563,USB-C Charging Cable,1,11.95,01/26/19 19:12,"288 Madison St, Portland, OR 97035" +150564,AA Batteries (4-pack),1,3.84,01/31/19 15:00,"820 Maple St, New York City, NY 10001" +150565,Apple Airpods Headphones,1,150,01/20/19 20:50,"776 Highland St, San Francisco, CA 94016" +150566,34in Ultrawide Monitor,1,379.99,01/27/19 10:02,"338 Forest St, San Francisco, CA 94016" +150567,USB-C Charging Cable,1,11.95,01/05/19 20:59,"633 Adams St, San Francisco, CA 94016" +150568,Lightning Charging Cable,2,14.95,01/16/19 15:12,"563 13th St, Dallas, TX 75001" +150568,Google Phone,1,600,01/16/19 15:12,"563 13th St, Dallas, TX 75001" +150569,AAA Batteries (4-pack),1,2.99,01/03/19 17:03,"976 Park St, Los Angeles, CA 90001" +150570,Lightning Charging Cable,1,14.95,01/02/19 17:25,"123 North St, Seattle, WA 98101" +150571,Lightning Charging Cable,1,14.95,01/29/19 11:57,"897 Johnson St, San Francisco, CA 94016" +150572,AAA Batteries (4-pack),1,2.99,01/16/19 18:30,"225 Spruce St, San Francisco, CA 94016" +150573,AAA Batteries (4-pack),1,2.99,01/26/19 08:15,"184 10th St, San Francisco, CA 94016" +150574,USB-C Charging Cable,1,11.95,01/09/19 13:33,"554 Cedar St, Los Angeles, CA 90001" +150575,AAA Batteries (4-pack),1,2.99,01/15/19 11:49,"660 Jefferson St, Boston, MA 02215" +150576,Wired Headphones,1,11.99,01/11/19 19:48,"827 5th St, Austin, TX 73301" +150577,AA Batteries (4-pack),3,3.84,01/15/19 16:15,"108 Jackson St, San Francisco, CA 94016" +150578,34in Ultrawide Monitor,1,379.99,01/16/19 16:35,"333 Washington St, Los Angeles, CA 90001" +150579,iPhone,1,700,01/22/19 21:25,"713 South St, New York City, NY 10001" +150580,AAA Batteries (4-pack),3,2.99,01/14/19 21:08,"579 Lincoln St, San Francisco, CA 94016" +150581,Google Phone,1,600,01/27/19 13:17,"830 Church St, Atlanta, GA 30301" +150582,Lightning Charging Cable,1,14.95,01/24/19 11:50,"373 Hickory St, Portland, OR 97035" +150583,Lightning Charging Cable,1,14.95,01/06/19 16:38,"751 8th St, Los Angeles, CA 90001" +150584,27in 4K Gaming Monitor,1,389.99,01/15/19 12:45,"237 Sunset St, Portland, OR 97035" +150585,Apple Airpods Headphones,1,150,01/04/19 00:12,"482 Lakeview St, Atlanta, GA 30301" +150586,USB-C Charging Cable,1,11.95,01/19/19 12:49,"70 West St, Boston, MA 02215" +150587,Wired Headphones,1,11.99,01/06/19 12:16,"604 11th St, New York City, NY 10001" +150588,Lightning Charging Cable,1,14.95,01/28/19 19:27,"827 West St, Boston, MA 02215" +150589,iPhone,1,700,01/21/19 19:29,"766 Main St, Seattle, WA 98101" +150589,Lightning Charging Cable,1,14.95,01/21/19 19:29,"766 Main St, Seattle, WA 98101" +150590,Flatscreen TV,1,300,01/19/19 21:09,"698 Maple St, San Francisco, CA 94016" +150591,USB-C Charging Cable,1,11.95,01/20/19 07:15,"570 Highland St, San Francisco, CA 94016" +150592,USB-C Charging Cable,1,11.95,01/28/19 11:28,"745 River St, Boston, MA 02215" +150593,Lightning Charging Cable,1,14.95,01/30/19 13:07,"584 Cherry St, Portland, OR 97035" +150594,Wired Headphones,1,11.99,01/14/19 12:34,"862 Church St, Los Angeles, CA 90001" +150595,Lightning Charging Cable,1,14.95,01/11/19 10:49,"102 12th St, Los Angeles, CA 90001" +150596,AAA Batteries (4-pack),1,2.99,01/31/19 18:16,"488 Johnson St, San Francisco, CA 94016" +150597,Apple Airpods Headphones,1,150,01/17/19 13:08,"98 Walnut St, Dallas, TX 75001" +150598,Lightning Charging Cable,1,14.95,01/15/19 18:08,"87 Spruce St, Los Angeles, CA 90001" +150599,Bose SoundSport Headphones,1,99.99,01/20/19 14:22,"96 Johnson St, Dallas, TX 75001" +150600,Wired Headphones,1,11.99,01/16/19 09:22,"246 Lincoln St, Boston, MA 02215" +150601,Bose SoundSport Headphones,1,99.99,01/25/19 15:21,"679 Hickory St, San Francisco, CA 94016" +150602,Wired Headphones,1,11.99,01/19/19 20:06,"621 13th St, New York City, NY 10001" +150603,iPhone,1,700,01/30/19 10:45,"447 Church St, San Francisco, CA 94016" +150603,Lightning Charging Cable,1,14.95,01/30/19 10:45,"447 Church St, San Francisco, CA 94016" +150604,Lightning Charging Cable,1,14.95,01/31/19 18:19,"965 Pine St, San Francisco, CA 94016" +150605,Wired Headphones,1,11.99,01/09/19 09:43,"414 13th St, Portland, OR 97035" +150606,AAA Batteries (4-pack),1,2.99,01/19/19 16:28,"856 West St, Atlanta, GA 30301" +150607,AA Batteries (4-pack),1,3.84,01/13/19 16:58,"996 10th St, Los Angeles, CA 90001" +150608,Google Phone,1,600,01/16/19 14:03,"767 10th St, Los Angeles, CA 90001" +150609,ThinkPad Laptop,1,999.99,01/14/19 16:11,"506 Lakeview St, Los Angeles, CA 90001" +150610,Bose SoundSport Headphones,1,99.99,01/03/19 07:56,"324 Sunset St, San Francisco, CA 94016" +150611,Apple Airpods Headphones,1,150,01/25/19 15:38,"948 Main St, Atlanta, GA 30301" +150612,Bose SoundSport Headphones,1,99.99,01/27/19 11:56,"137 Maple St, Atlanta, GA 30301" +150613,Wired Headphones,1,11.99,01/02/19 09:52,"379 Willow St, New York City, NY 10001" +150614,Lightning Charging Cable,1,14.95,01/10/19 22:44,"13 Pine St, San Francisco, CA 94016" +150615,Apple Airpods Headphones,2,150,01/02/19 03:05,"749 Elm St, Austin, TX 73301" +150616,Flatscreen TV,1,300,01/16/19 17:02,"236 Jefferson St, Los Angeles, CA 90001" +150617,Apple Airpods Headphones,1,150,01/04/19 17:37,"271 12th St, Los Angeles, CA 90001" +150618,Lightning Charging Cable,1,14.95,01/30/19 19:00,"616 Center St, San Francisco, CA 94016" +150619,Flatscreen TV,1,300,01/30/19 20:44,"506 Forest St, San Francisco, CA 94016" +150620,Apple Airpods Headphones,1,150,01/07/19 10:52,"115 Adams St, Los Angeles, CA 90001" +150621,Wired Headphones,1,11.99,01/03/19 22:16,"488 7th St, Los Angeles, CA 90001" +150622,34in Ultrawide Monitor,1,379.99,01/11/19 20:36,"434 Adams St, Los Angeles, CA 90001" +150623,34in Ultrawide Monitor,1,379.99,01/13/19 15:39,"528 River St, Portland, OR 97035" +150624,Wired Headphones,1,11.99,01/12/19 08:49,"283 Spruce St, Los Angeles, CA 90001" +150625,AA Batteries (4-pack),1,3.84,01/15/19 17:01,"684 Jefferson St, San Francisco, CA 94016" +150626,iPhone,1,700,01/30/19 21:11,"605 Cherry St, Portland, OR 97035" +150627,USB-C Charging Cable,1,11.95,01/09/19 00:19,"451 Center St, New York City, NY 10001" +150628,Apple Airpods Headphones,1,150,01/06/19 09:11,"275 Lake St, Los Angeles, CA 90001" +150629,USB-C Charging Cable,1,11.95,01/01/19 11:01,"520 Maple St, Los Angeles, CA 90001" +150629,Apple Airpods Headphones,1,150,01/01/19 11:01,"520 Maple St, Los Angeles, CA 90001" +150630,Bose SoundSport Headphones,1,99.99,01/09/19 17:11,"811 Johnson St, San Francisco, CA 94016" +150630,AA Batteries (4-pack),1,3.84,01/09/19 17:11,"811 Johnson St, San Francisco, CA 94016" +150631,AAA Batteries (4-pack),1,2.99,01/26/19 01:19,"413 North St, Los Angeles, CA 90001" +150632,USB-C Charging Cable,1,11.95,01/06/19 08:23,"678 Center St, Boston, MA 02215" +150633,Wired Headphones,1,11.99,01/02/19 08:13,"695 4th St, Boston, MA 02215" +150634,Wired Headphones,1,11.99,01/10/19 14:24,"449 River St, San Francisco, CA 94016" +150635,Flatscreen TV,1,300,01/14/19 23:02,"619 Forest St, New York City, NY 10001" +150636,AAA Batteries (4-pack),1,2.99,01/08/19 12:21,"647 North St, Atlanta, GA 30301" +150637,Macbook Pro Laptop,1,1700,01/18/19 17:38,"5 7th St, Portland, OR 97035" +150638,Google Phone,1,600,01/30/19 23:45,"732 11th St, Los Angeles, CA 90001" +150639,Bose SoundSport Headphones,1,99.99,01/19/19 19:57,"16 Walnut St, New York City, NY 10001" +150640,USB-C Charging Cable,2,11.95,01/21/19 11:34,"130 Chestnut St, Seattle, WA 98101" +150641,Bose SoundSport Headphones,1,99.99,01/21/19 13:46,"396 Jackson St, Los Angeles, CA 90001" +150642,iPhone,1,700,01/17/19 08:43,"625 Meadow St, San Francisco, CA 94016" +150643,Bose SoundSport Headphones,1,99.99,01/27/19 07:07,"50 Johnson St, Austin, TX 73301" +150644,AA Batteries (4-pack),1,3.84,01/12/19 21:46,"607 10th St, San Francisco, CA 94016" +150645,Lightning Charging Cable,1,14.95,01/09/19 13:31,"957 West St, New York City, NY 10001" +150646,Bose SoundSport Headphones,1,99.99,01/29/19 17:08,"427 Center St, Los Angeles, CA 90001" +150647,AA Batteries (4-pack),1,3.84,01/01/19 09:53,"885 10th St, San Francisco, CA 94016" +150648,Apple Airpods Headphones,1,150,01/13/19 18:37,"590 Church St, San Francisco, CA 94016" +150649,Flatscreen TV,1,300,01/24/19 09:55,"507 1st St, San Francisco, CA 94016" +150650,Bose SoundSport Headphones,1,99.99,01/02/19 20:23,"350 Ridge St, Boston, MA 02215" +150651,Google Phone,1,600,01/19/19 14:04,"822 Church St, Dallas, TX 75001" +150652,27in FHD Monitor,1,149.99,01/24/19 00:02,"894 Elm St, New York City, NY 10001" +150653,Lightning Charging Cable,1,14.95,01/17/19 15:41,"578 Adams St, Portland, OR 97035" +150654,Wired Headphones,1,11.99,01/29/19 16:54,"722 Cherry St, Atlanta, GA 30301" +150655,LG Dryer,1,600.0,01/14/19 18:54,"708 North St, Portland, OR 97035" +150656,USB-C Charging Cable,1,11.95,01/06/19 10:01,"119 Walnut St, Dallas, TX 75001" +150657,USB-C Charging Cable,1,11.95,01/17/19 05:48,"19 2nd St, Boston, MA 02215" +150658,AAA Batteries (4-pack),2,2.99,01/25/19 01:12,"287 4th St, San Francisco, CA 94016" +150659,Wired Headphones,1,11.99,01/19/19 17:06,"907 Lake St, San Francisco, CA 94016" +150660,Apple Airpods Headphones,1,150,01/22/19 17:40,"125 5th St, Dallas, TX 75001" +150661,Wired Headphones,1,11.99,01/07/19 08:31,"173 Elm St, Dallas, TX 75001" +150662,Wired Headphones,1,11.99,01/12/19 20:56,"274 Highland St, Los Angeles, CA 90001" +150663,Lightning Charging Cable,1,14.95,01/30/19 13:36,"732 12th St, Los Angeles, CA 90001" +150664,USB-C Charging Cable,1,11.95,01/31/19 16:07,"265 Center St, San Francisco, CA 94016" +150665,AAA Batteries (4-pack),2,2.99,01/30/19 13:13,"651 Lake St, Dallas, TX 75001" +150666,LG Dryer,1,600.0,01/17/19 22:53,"242 2nd St, Seattle, WA 98101" +150666,34in Ultrawide Monitor,1,379.99,01/17/19 22:53,"242 2nd St, Seattle, WA 98101" +150667,Apple Airpods Headphones,1,150,01/29/19 21:07,"320 Pine St, Dallas, TX 75001" +150668,Lightning Charging Cable,1,14.95,01/11/19 11:38,"125 14th St, Atlanta, GA 30301" +150669,Lightning Charging Cable,1,14.95,01/04/19 08:27,"943 South St, Los Angeles, CA 90001" +150670,Lightning Charging Cable,1,14.95,01/09/19 20:29,"147 Ridge St, Boston, MA 02215" +150671,27in FHD Monitor,1,149.99,01/10/19 19:45,"735 6th St, Portland, OR 97035" +150672,USB-C Charging Cable,1,11.95,01/16/19 14:20,"155 Forest St, Dallas, TX 75001" +150673,20in Monitor,1,109.99,01/23/19 03:42,"153 Wilson St, Dallas, TX 75001" +150674,ThinkPad Laptop,1,999.99,01/28/19 12:20,"147 North St, New York City, NY 10001" +150675,Bose SoundSport Headphones,1,99.99,01/31/19 17:47,"453 Forest St, Portland, OR 97035" +150676,LG Dryer,1,600.0,01/11/19 14:07,"704 10th St, Los Angeles, CA 90001" +150677,Apple Airpods Headphones,1,150,01/21/19 13:53,"319 11th St, Los Angeles, CA 90001" +150678,AA Batteries (4-pack),1,3.84,01/28/19 11:27,"827 Hickory St, San Francisco, CA 94016" +150679,USB-C Charging Cable,1,11.95,01/14/19 10:25,"118 6th St, Los Angeles, CA 90001" +150680,Flatscreen TV,1,300,01/27/19 19:34,"882 Washington St, San Francisco, CA 94016" +150681,Lightning Charging Cable,1,14.95,01/19/19 15:32,"41 Jackson St, Dallas, TX 75001" +150682,Apple Airpods Headphones,1,150,01/01/19 12:57,"435 11th St, Seattle, WA 98101" +150683,USB-C Charging Cable,1,11.95,01/25/19 23:24,"71 Spruce St, New York City, NY 10001" +150684,Macbook Pro Laptop,1,1700,01/09/19 11:49,"967 Hickory St, Atlanta, GA 30301" +150685,Wired Headphones,2,11.99,01/09/19 16:55,"138 West St, Los Angeles, CA 90001" +150686,AAA Batteries (4-pack),1,2.99,01/30/19 00:28,"698 Main St, Boston, MA 02215" +150687,Apple Airpods Headphones,1,150,01/06/19 14:48,"28 14th St, New York City, NY 10001" +150688,AA Batteries (4-pack),1,3.84,01/31/19 12:07,"486 Park St, Atlanta, GA 30301" +150689,Bose SoundSport Headphones,1,99.99,01/31/19 06:37,"63 Jackson St, San Francisco, CA 94016" +150690,ThinkPad Laptop,1,999.99,01/23/19 12:22,"216 Ridge St, San Francisco, CA 94016" +150691,AAA Batteries (4-pack),1,2.99,01/09/19 16:43,"907 West St, Boston, MA 02215" +150692,LG Dryer,1,600.0,01/17/19 10:23,"535 Wilson St, Boston, MA 02215" +150693,USB-C Charging Cable,1,11.95,01/11/19 17:10,"946 Ridge St, Seattle, WA 98101" +150694,34in Ultrawide Monitor,1,379.99,01/14/19 07:51,"937 Jackson St, Atlanta, GA 30301" +150695,Wired Headphones,1,11.99,01/17/19 18:10,"987 Washington St, Atlanta, GA 30301" +150696,AA Batteries (4-pack),1,3.84,01/19/19 13:04,"281 Main St, Austin, TX 73301" +150697,USB-C Charging Cable,1,11.95,01/06/19 11:45,"880 Maple St, San Francisco, CA 94016" +150698,Google Phone,1,600,01/24/19 17:09,"430 12th St, Boston, MA 02215" +150699,Bose SoundSport Headphones,1,99.99,01/13/19 14:46,"372 Highland St, New York City, NY 10001" +150699,AAA Batteries (4-pack),2,2.99,01/13/19 14:46,"372 Highland St, New York City, NY 10001" +150700,LG Washing Machine,1,600.0,01/12/19 17:21,"805 Cedar St, Seattle, WA 98101" +150701,Wired Headphones,1,11.99,01/06/19 09:24,"206 Adams St, San Francisco, CA 94016" +150702,Apple Airpods Headphones,1,150,01/01/19 22:40,"507 11th St, New York City, NY 10001" +150703,27in FHD Monitor,1,149.99,01/08/19 20:42,"70 Highland St, San Francisco, CA 94016" +150704,AA Batteries (4-pack),1,3.84,01/22/19 16:30,"291 Madison St, Dallas, TX 75001" +150705,Apple Airpods Headphones,1,150,01/09/19 02:40,"979 Dogwood St, Seattle, WA 98101" +150706,Bose SoundSport Headphones,1,99.99,01/12/19 21:45,"598 Cedar St, New York City, NY 10001" +150707,Lightning Charging Cable,1,14.95,01/08/19 22:21,"317 14th St, San Francisco, CA 94016" +150708,20in Monitor,1,109.99,01/25/19 19:39,"108 Church St, New York City, NY 10001" +150709,USB-C Charging Cable,1,11.95,01/30/19 07:22,"860 10th St, San Francisco, CA 94016" +150710,Lightning Charging Cable,1,14.95,01/21/19 16:02,"911 Wilson St, Boston, MA 02215" +150711,AAA Batteries (4-pack),1,2.99,01/18/19 00:10,"462 7th St, New York City, NY 10001" +150712,ThinkPad Laptop,1,999.99,01/14/19 22:27,"132 14th St, New York City, NY 10001" +150713,AAA Batteries (4-pack),1,2.99,01/01/19 16:32,"940 River St, San Francisco, CA 94016" +150714,Lightning Charging Cable,1,14.95,01/25/19 16:24,"560 9th St, Los Angeles, CA 90001" +150715,20in Monitor,1,109.99,01/09/19 18:29,"133 Meadow St, San Francisco, CA 94016" +150716,iPhone,1,700,01/04/19 11:47,"464 Cedar St, San Francisco, CA 94016" +150717,Apple Airpods Headphones,1,150,01/22/19 18:59,"560 11th St, Seattle, WA 98101" +150718,Bose SoundSport Headphones,1,99.99,01/28/19 09:38,"782 Sunset St, Boston, MA 02215" +150719,AA Batteries (4-pack),1,3.84,01/25/19 12:15,"993 Cedar St, Portland, ME 04101" +150720,Wired Headphones,1,11.99,01/24/19 13:41,"887 Chestnut St, Atlanta, GA 30301" +150721,Lightning Charging Cable,2,14.95,01/14/19 13:49,"834 Church St, New York City, NY 10001" +150722,Flatscreen TV,1,300,01/25/19 09:02,"451 Ridge St, Portland, OR 97035" +150723,Lightning Charging Cable,1,14.95,01/10/19 01:18,"754 Lakeview St, Austin, TX 73301" +150724,Lightning Charging Cable,1,14.95,01/12/19 02:56,"149 West St, Seattle, WA 98101" +150725,AA Batteries (4-pack),1,3.84,01/17/19 15:55,"575 Jackson St, San Francisco, CA 94016" +150726,Lightning Charging Cable,1,14.95,01/24/19 13:12,"65 Madison St, Los Angeles, CA 90001" +150727,AA Batteries (4-pack),1,3.84,01/03/19 12:39,"786 Willow St, Boston, MA 02215" +150728,Wired Headphones,1,11.99,01/25/19 22:30,"978 Lincoln St, Austin, TX 73301" +150729,20in Monitor,1,109.99,01/29/19 08:00,"439 10th St, Los Angeles, CA 90001" +150730,USB-C Charging Cable,1,11.95,01/21/19 15:46,"383 Washington St, Atlanta, GA 30301" +150731,Google Phone,1,600,01/12/19 07:44,"64 Meadow St, San Francisco, CA 94016" +150732,Google Phone,1,600,01/20/19 21:06,"910 Lincoln St, Boston, MA 02215" +150733,iPhone,1,700,01/24/19 12:35,"538 Chestnut St, Dallas, TX 75001" +150734,34in Ultrawide Monitor,1,379.99,01/11/19 17:04,"290 10th St, New York City, NY 10001" +150735,AAA Batteries (4-pack),1,2.99,01/10/19 12:35,"491 Chestnut St, New York City, NY 10001" +150736,27in 4K Gaming Monitor,1,389.99,01/11/19 13:06,"856 Washington St, San Francisco, CA 94016" +150737,iPhone,1,700,01/27/19 21:34,"384 13th St, Los Angeles, CA 90001" +150738,Apple Airpods Headphones,1,150,01/14/19 06:43,"264 Forest St, San Francisco, CA 94016" +150739,AA Batteries (4-pack),1,3.84,01/18/19 17:03,"539 8th St, New York City, NY 10001" +150740,Macbook Pro Laptop,1,1700,01/11/19 16:48,"837 Johnson St, Atlanta, GA 30301" +150741,AAA Batteries (4-pack),1,2.99,01/14/19 02:54,"235 Wilson St, New York City, NY 10001" +150742,AAA Batteries (4-pack),1,2.99,01/12/19 11:34,"43 4th St, Los Angeles, CA 90001" +150743,Lightning Charging Cable,1,14.95,01/07/19 16:14,"111 Washington St, New York City, NY 10001" +150744,34in Ultrawide Monitor,1,379.99,01/10/19 19:09,"627 2nd St, New York City, NY 10001" +150745,Lightning Charging Cable,1,14.95,01/03/19 23:09,"722 Highland St, Los Angeles, CA 90001" +150746,Wired Headphones,1,11.99,01/11/19 23:57,"759 Lakeview St, Los Angeles, CA 90001" +150747,Vareebadd Phone,1,400,01/26/19 17:22,"361 Madison St, Boston, MA 02215" +150748,Apple Airpods Headphones,1,150,01/25/19 18:34,"920 Meadow St, Los Angeles, CA 90001" +150749,AA Batteries (4-pack),2,3.84,01/07/19 10:51,"405 Church St, Atlanta, GA 30301" +150750,USB-C Charging Cable,1,11.95,01/10/19 22:28,"905 South St, New York City, NY 10001" +150751,AAA Batteries (4-pack),1,2.99,01/01/19 22:26,"280 Sunset St, New York City, NY 10001" +150752,Wired Headphones,1,11.99,01/29/19 11:12,"122 5th St, Los Angeles, CA 90001" +150753,AA Batteries (4-pack),1,3.84,01/09/19 14:57,"939 Hill St, Portland, OR 97035" +150754,AA Batteries (4-pack),1,3.84,01/14/19 21:03,"725 6th St, New York City, NY 10001" +150755,Lightning Charging Cable,1,14.95,01/17/19 14:46,"194 Center St, Los Angeles, CA 90001" +150756,AAA Batteries (4-pack),1,2.99,01/15/19 18:12,"961 Jefferson St, Austin, TX 73301" +150757,34in Ultrawide Monitor,1,379.99,01/22/19 05:01,"164 Cherry St, Portland, OR 97035" +150758,Wired Headphones,1,11.99,01/19/19 17:27,"725 Jefferson St, Atlanta, GA 30301" +150759,Wired Headphones,1,11.99,01/06/19 14:27,"884 Wilson St, Dallas, TX 75001" +150760,Apple Airpods Headphones,1,150,01/17/19 20:32,"42 Hickory St, New York City, NY 10001" +150761,Wired Headphones,1,11.99,01/07/19 10:32,"658 8th St, Boston, MA 02215" +150762,Macbook Pro Laptop,1,1700,01/21/19 12:52,"36 6th St, San Francisco, CA 94016" +150763,Vareebadd Phone,1,400,01/30/19 21:33,"121 North St, Seattle, WA 98101" +150764,Bose SoundSport Headphones,1,99.99,01/30/19 12:30,"748 Jackson St, Los Angeles, CA 90001" +150765,Wired Headphones,1,11.99,01/08/19 04:46,"914 Highland St, Seattle, WA 98101" +150766,Apple Airpods Headphones,1,150,01/14/19 13:50,"174 South St, Boston, MA 02215" +150767,Lightning Charging Cable,1,14.95,01/05/19 10:17,"173 2nd St, Dallas, TX 75001" +150768,AAA Batteries (4-pack),1,2.99,01/17/19 19:18,"788 Forest St, Portland, ME 04101" +150769,AA Batteries (4-pack),2,3.84,01/28/19 20:22,"179 Highland St, Seattle, WA 98101" +150770,USB-C Charging Cable,1,11.95,01/19/19 21:04,"828 5th St, San Francisco, CA 94016" +150771,AAA Batteries (4-pack),1,2.99,01/30/19 23:59,"741 Willow St, Dallas, TX 75001" +150772,Bose SoundSport Headphones,1,99.99,01/29/19 02:03,"320 Walnut St, New York City, NY 10001" +150773,iPhone,1,700,01/16/19 02:18,"216 6th St, San Francisco, CA 94016" +150774,27in 4K Gaming Monitor,1,389.99,01/07/19 18:13,"373 Church St, Los Angeles, CA 90001" +150775,27in 4K Gaming Monitor,1,389.99,01/27/19 11:01,"768 Washington St, Atlanta, GA 30301" +150776,AAA Batteries (4-pack),1,2.99,01/18/19 16:34,"386 Center St, Los Angeles, CA 90001" +150777,Lightning Charging Cable,1,14.95,01/02/19 00:20,"590 1st St, Los Angeles, CA 90001" +150778,Lightning Charging Cable,1,14.95,01/12/19 09:09,"911 13th St, Los Angeles, CA 90001" +150779,Apple Airpods Headphones,1,150,01/29/19 15:05,"456 Lincoln St, Atlanta, GA 30301" +150780,USB-C Charging Cable,1,11.95,01/06/19 23:11,"558 Dogwood St, Seattle, WA 98101" +150781,Lightning Charging Cable,1,14.95,01/13/19 18:11,"367 Spruce St, New York City, NY 10001" +150782,Lightning Charging Cable,1,14.95,01/26/19 15:38,"620 Walnut St, Atlanta, GA 30301" +150783,Lightning Charging Cable,1,14.95,01/13/19 22:51,"733 11th St, Los Angeles, CA 90001" +150784,Wired Headphones,2,11.99,01/23/19 10:30,"493 Church St, Atlanta, GA 30301" +150785,Lightning Charging Cable,1,14.95,01/18/19 13:13,"629 14th St, San Francisco, CA 94016" +150786,Bose SoundSport Headphones,1,99.99,01/11/19 19:02,"50 Main St, Portland, OR 97035" +150787,AA Batteries (4-pack),1,3.84,01/31/19 15:28,"90 Chestnut St, Dallas, TX 75001" +150788,AA Batteries (4-pack),2,3.84,01/07/19 19:21,"337 Jefferson St, Boston, MA 02215" +150789,AA Batteries (4-pack),2,3.84,01/11/19 10:08,"604 Washington St, Boston, MA 02215" +150790,AAA Batteries (4-pack),1,2.99,01/13/19 08:25,"432 Sunset St, New York City, NY 10001" +150791,Macbook Pro Laptop,1,1700,01/18/19 12:15,"655 Wilson St, Atlanta, GA 30301" +150792,Wired Headphones,1,11.99,01/19/19 19:49,"815 Meadow St, Dallas, TX 75001" +150793,Google Phone,1,600,01/01/19 12:24,"583 Hill St, New York City, NY 10001" +150793,Bose SoundSport Headphones,1,99.99,01/01/19 12:24,"583 Hill St, New York City, NY 10001" +150794,34in Ultrawide Monitor,1,379.99,01/30/19 10:45,"679 West St, Boston, MA 02215" +150795,27in FHD Monitor,1,149.99,01/18/19 09:33,"203 Sunset St, New York City, NY 10001" +150796,Flatscreen TV,1,300,01/01/19 10:31,"220 South St, Los Angeles, CA 90001" +150797,AAA Batteries (4-pack),3,2.99,01/04/19 14:50,"112 1st St, San Francisco, CA 94016" +150798,Lightning Charging Cable,1,14.95,01/01/19 12:50,"404 Elm St, New York City, NY 10001" +150799,Vareebadd Phone,1,400,01/14/19 20:19,"818 8th St, New York City, NY 10001" +150800,Lightning Charging Cable,1,14.95,01/23/19 08:35,"393 Sunset St, San Francisco, CA 94016" +150801,AA Batteries (4-pack),3,3.84,01/03/19 23:25,"112 Madison St, San Francisco, CA 94016" +150802,ThinkPad Laptop,1,999.99,01/19/19 17:55,"113 12th St, Boston, MA 02215" +150803,Macbook Pro Laptop,1,1700,01/25/19 19:01,"454 South St, Los Angeles, CA 90001" +150804,AAA Batteries (4-pack),1,2.99,01/29/19 04:59,"297 Lincoln St, Los Angeles, CA 90001" +150805,AA Batteries (4-pack),1,3.84,01/30/19 13:59,"101 Park St, Boston, MA 02215" +150806,USB-C Charging Cable,1,11.95,01/27/19 10:58,"281 12th St, Los Angeles, CA 90001" +150807,iPhone,1,700,01/31/19 12:28,"733 Washington St, San Francisco, CA 94016" +150807,Lightning Charging Cable,1,14.95,01/31/19 12:28,"733 Washington St, San Francisco, CA 94016" +150808,Vareebadd Phone,1,400,01/12/19 06:42,"855 Church St, Los Angeles, CA 90001" +150809,AAA Batteries (4-pack),1,2.99,01/02/19 02:10,"184 Adams St, San Francisco, CA 94016" +150810,Apple Airpods Headphones,1,150,01/12/19 06:27,"554 Adams St, San Francisco, CA 94016" +150811,iPhone,1,700,01/08/19 10:40,"584 Park St, San Francisco, CA 94016" +150811,Lightning Charging Cable,1,14.95,01/08/19 10:40,"584 Park St, San Francisco, CA 94016" +150812,34in Ultrawide Monitor,1,379.99,01/05/19 12:25,"532 Main St, Boston, MA 02215" +150813,34in Ultrawide Monitor,1,379.99,01/21/19 20:19,"193 Chestnut St, Dallas, TX 75001" +150814,AA Batteries (4-pack),1,3.84,01/02/19 15:09,"152 8th St, Los Angeles, CA 90001" +150815,iPhone,1,700,01/16/19 17:42,"172 Hickory St, San Francisco, CA 94016" +150816,USB-C Charging Cable,2,11.95,01/28/19 13:22,"861 West St, Seattle, WA 98101" +150817,Apple Airpods Headphones,1,150,01/30/19 19:35,"192 Jackson St, New York City, NY 10001" +150818,Flatscreen TV,1,300,01/18/19 09:50,"938 11th St, New York City, NY 10001" +150819,Apple Airpods Headphones,1,150,01/01/19 14:46,"376 Highland St, San Francisco, CA 94016" +150820,Macbook Pro Laptop,1,1700,01/12/19 12:12,"994 Willow St, Dallas, TX 75001" +150821,Lightning Charging Cable,2,14.95,01/11/19 17:27,"45 Johnson St, San Francisco, CA 94016" +150822,AAA Batteries (4-pack),1,2.99,01/01/19 19:39,"162 Jefferson St, New York City, NY 10001" +150823,Macbook Pro Laptop,1,1700,01/11/19 23:48,"824 1st St, Atlanta, GA 30301" +150824,AAA Batteries (4-pack),1,2.99,01/30/19 17:57,"189 Church St, Atlanta, GA 30301" +150825,Flatscreen TV,1,300,01/27/19 06:59,"239 Hill St, Boston, MA 02215" +150826,AA Batteries (4-pack),2,3.84,01/18/19 19:40,"235 Hickory St, Austin, TX 73301" +150827,Lightning Charging Cable,1,14.95,01/19/19 14:37,"618 Walnut St, Atlanta, GA 30301" +150828,Bose SoundSport Headphones,1,99.99,01/02/19 21:09,"103 South St, Los Angeles, CA 90001" +150829,Wired Headphones,1,11.99,01/29/19 23:48,"946 Jackson St, San Francisco, CA 94016" +150830,Wired Headphones,1,11.99,01/13/19 18:38,"54 Lake St, Los Angeles, CA 90001" +150831,USB-C Charging Cable,1,11.95,01/25/19 10:02,"11 Wilson St, Los Angeles, CA 90001" +150832,Lightning Charging Cable,3,14.95,01/23/19 14:05,"86 1st St, Dallas, TX 75001" +150833,20in Monitor,1,109.99,01/20/19 22:19,"77 10th St, Atlanta, GA 30301" +150834,AA Batteries (4-pack),1,3.84,01/26/19 07:26,"899 Jackson St, Los Angeles, CA 90001" +150835,AA Batteries (4-pack),1,3.84,01/05/19 20:28,"321 Center St, Los Angeles, CA 90001" +150836,Google Phone,1,600,01/19/19 12:39,"462 Jefferson St, Los Angeles, CA 90001" +150837,Wired Headphones,1,11.99,01/19/19 15:47,"894 Main St, Los Angeles, CA 90001" +150838,USB-C Charging Cable,1,11.95,01/18/19 19:17,"319 Center St, Los Angeles, CA 90001" +150839,AAA Batteries (4-pack),1,2.99,01/18/19 09:50,"558 Church St, New York City, NY 10001" +150840,USB-C Charging Cable,1,11.95,01/15/19 12:02,"435 Hickory St, San Francisco, CA 94016" +150841,USB-C Charging Cable,1,11.95,01/05/19 14:24,"865 Jackson St, Seattle, WA 98101" +150842,Bose SoundSport Headphones,1,99.99,01/17/19 15:33,"840 Main St, Seattle, WA 98101" +150843,AA Batteries (4-pack),1,3.84,01/18/19 20:28,"865 1st St, New York City, NY 10001" +150844,Lightning Charging Cable,2,14.95,01/15/19 13:30,"879 8th St, San Francisco, CA 94016" +150845,Flatscreen TV,1,300,01/17/19 20:28,"471 Church St, Portland, OR 97035" +150846,Apple Airpods Headphones,1,150,01/18/19 07:31,"544 11th St, Austin, TX 73301" +150847,AAA Batteries (4-pack),1,2.99,01/19/19 14:40,"938 North St, San Francisco, CA 94016" +150848,Apple Airpods Headphones,1,150,01/11/19 07:53,"773 Lakeview St, New York City, NY 10001" +150849,AAA Batteries (4-pack),1,2.99,01/15/19 12:45,"958 1st St, San Francisco, CA 94016" +150850,Wired Headphones,1,11.99,01/18/19 12:48,"890 Wilson St, New York City, NY 10001" +150851,Wired Headphones,2,11.99,01/17/19 15:27,"741 Park St, Atlanta, GA 30301" +150852,Lightning Charging Cable,1,14.95,01/15/19 10:44,"448 4th St, San Francisco, CA 94016" +150853,AAA Batteries (4-pack),1,2.99,01/01/19 20:48,"861 Cherry St, Los Angeles, CA 90001" +150854,Apple Airpods Headphones,1,150,01/14/19 08:02,"515 Sunset St, San Francisco, CA 94016" +150855,AAA Batteries (4-pack),1,2.99,01/23/19 00:16,"680 Meadow St, Seattle, WA 98101" +150856,USB-C Charging Cable,1,11.95,01/19/19 11:28,"802 Church St, San Francisco, CA 94016" +150857,ThinkPad Laptop,1,999.99,01/06/19 09:39,"235 Maple St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +150858,20in Monitor,1,109.99,01/09/19 14:32,"264 North St, Los Angeles, CA 90001" +150859,Lightning Charging Cable,1,14.95,01/25/19 21:13,"440 South St, Los Angeles, CA 90001" +150860,Apple Airpods Headphones,1,150,01/16/19 14:30,"953 Wilson St, Austin, TX 73301" +150861,AAA Batteries (4-pack),1,2.99,01/05/19 16:26,"182 7th St, San Francisco, CA 94016" +150862,AA Batteries (4-pack),1,3.84,01/17/19 16:35,"472 Dogwood St, San Francisco, CA 94016" +150863,AAA Batteries (4-pack),1,2.99,01/09/19 14:25,"909 Center St, Los Angeles, CA 90001" +150864,iPhone,1,700,01/16/19 16:58,"651 Highland St, New York City, NY 10001" +150864,Wired Headphones,1,11.99,01/16/19 16:58,"651 Highland St, New York City, NY 10001" +150865,AAA Batteries (4-pack),2,2.99,01/17/19 19:25,"948 12th St, Seattle, WA 98101" +150866,AAA Batteries (4-pack),1,2.99,01/13/19 10:14,"640 Walnut St, Atlanta, GA 30301" +150867,Wired Headphones,1,11.99,01/16/19 20:51,"398 4th St, Austin, TX 73301" +150868,USB-C Charging Cable,1,11.95,01/18/19 20:30,"716 Jackson St, Portland, OR 97035" +150869,AAA Batteries (4-pack),1,2.99,01/23/19 22:19,"990 9th St, Seattle, WA 98101" +150870,Google Phone,1,600,01/05/19 22:36,"570 Johnson St, Los Angeles, CA 90001" +150871,Vareebadd Phone,1,400,01/14/19 21:24,"149 Cedar St, Dallas, TX 75001" +150871,iPhone,1,700,01/14/19 21:24,"149 Cedar St, Dallas, TX 75001" +150872,Apple Airpods Headphones,1,150,01/08/19 22:46,"979 Church St, Portland, ME 04101" +150873,Wired Headphones,1,11.99,01/02/19 09:00,"522 Forest St, Los Angeles, CA 90001" +150874,Lightning Charging Cable,1,14.95,01/07/19 13:58,"102 Willow St, San Francisco, CA 94016" +150875,AA Batteries (4-pack),2,3.84,01/14/19 10:09,"647 6th St, New York City, NY 10001" +150875,27in FHD Monitor,1,149.99,01/14/19 10:09,"647 6th St, New York City, NY 10001" +150876,ThinkPad Laptop,1,999.99,01/09/19 12:47,"251 Main St, San Francisco, CA 94016" +150877,USB-C Charging Cable,1,11.95,01/20/19 11:54,"424 Meadow St, New York City, NY 10001" +150878,Wired Headphones,1,11.99,01/14/19 01:33,"186 Madison St, Los Angeles, CA 90001" +150879,AAA Batteries (4-pack),2,2.99,01/26/19 16:43,"926 North St, Atlanta, GA 30301" +150880,Lightning Charging Cable,1,14.95,01/27/19 13:07,"834 Sunset St, Austin, TX 73301" +150881,Lightning Charging Cable,1,14.95,01/12/19 20:40,"518 Church St, Portland, OR 97035" +150882,27in FHD Monitor,1,149.99,01/27/19 14:17,"263 Elm St, New York City, NY 10001" +150883,Google Phone,1,600,01/18/19 15:04,"698 Ridge St, San Francisco, CA 94016" +150883,USB-C Charging Cable,1,11.95,01/18/19 15:04,"698 Ridge St, San Francisco, CA 94016" +150884,Wired Headphones,1,11.99,01/31/19 15:58,"140 Pine St, San Francisco, CA 94016" +150885,AAA Batteries (4-pack),1,2.99,01/16/19 21:00,"484 7th St, New York City, NY 10001" +150886,AAA Batteries (4-pack),2,2.99,01/17/19 18:30,"190 1st St, Boston, MA 02215" +150887,Apple Airpods Headphones,1,150,01/30/19 13:31,"296 Jefferson St, San Francisco, CA 94016" +150888,Bose SoundSport Headphones,1,99.99,01/14/19 07:08,"488 Jefferson St, Austin, TX 73301" +150889,27in 4K Gaming Monitor,1,389.99,01/16/19 16:28,"544 8th St, Los Angeles, CA 90001" +150890,Flatscreen TV,1,300,01/08/19 22:39,"171 Wilson St, San Francisco, CA 94016" +150891,Lightning Charging Cable,1,14.95,01/21/19 14:44,"103 Maple St, Los Angeles, CA 90001" +150892,Wired Headphones,1,11.99,01/23/19 06:32,"606 Spruce St, Dallas, TX 75001" +150893,Bose SoundSport Headphones,1,99.99,01/02/19 00:02,"197 South St, Atlanta, GA 30301" +150894,USB-C Charging Cable,1,11.95,01/12/19 13:42,"101 Johnson St, Los Angeles, CA 90001" +150895,AA Batteries (4-pack),1,3.84,01/20/19 16:11,"839 11th St, San Francisco, CA 94016" +150896,Lightning Charging Cable,1,14.95,01/19/19 11:43,"869 6th St, San Francisco, CA 94016" +150897,Lightning Charging Cable,1,14.95,01/12/19 08:10,"215 Highland St, Atlanta, GA 30301" +150898,Bose SoundSport Headphones,1,99.99,01/01/19 13:34,"348 Adams St, Los Angeles, CA 90001" +150899,20in Monitor,1,109.99,01/30/19 10:19,"844 South St, Seattle, WA 98101" +150900,AA Batteries (4-pack),1,3.84,01/09/19 20:30,"646 Dogwood St, San Francisco, CA 94016" +150901,AA Batteries (4-pack),1,3.84,01/25/19 06:19,"485 Lakeview St, San Francisco, CA 94016" +150902,AA Batteries (4-pack),1,3.84,01/02/19 19:09,"468 Sunset St, San Francisco, CA 94016" +150903,AAA Batteries (4-pack),2,2.99,01/19/19 20:56,"47 Lake St, San Francisco, CA 94016" +150904,AAA Batteries (4-pack),1,2.99,01/06/19 18:32,"430 Lakeview St, San Francisco, CA 94016" +150905,AAA Batteries (4-pack),1,2.99,01/04/19 22:16,"610 5th St, San Francisco, CA 94016" +150906,34in Ultrawide Monitor,1,379.99,01/15/19 21:58,"412 South St, Seattle, WA 98101" +150907,27in FHD Monitor,1,149.99,01/16/19 19:29,"511 5th St, Boston, MA 02215" +150908,27in FHD Monitor,1,149.99,01/05/19 04:14,"474 Main St, Atlanta, GA 30301" +150909,34in Ultrawide Monitor,1,379.99,01/31/19 16:25,"398 5th St, Boston, MA 02215" +150910,USB-C Charging Cable,1,11.95,01/03/19 13:38,"724 Center St, San Francisco, CA 94016" +150911,ThinkPad Laptop,1,999.99,01/15/19 20:01,"215 Wilson St, Portland, OR 97035" +150912,27in FHD Monitor,1,149.99,01/16/19 11:58,"407 10th St, San Francisco, CA 94016" +150913,AAA Batteries (4-pack),2,2.99,01/25/19 19:48,"251 Lincoln St, Seattle, WA 98101" +150914,AAA Batteries (4-pack),1,2.99,01/22/19 19:52,"210 11th St, San Francisco, CA 94016" +150915,Lightning Charging Cable,1,14.95,01/26/19 14:49,"636 6th St, San Francisco, CA 94016" +150916,Bose SoundSport Headphones,1,99.99,01/17/19 07:31,"712 Wilson St, Portland, OR 97035" +150917,27in 4K Gaming Monitor,1,389.99,01/30/19 09:58,"534 North St, Atlanta, GA 30301" +150918,34in Ultrawide Monitor,1,379.99,01/03/19 15:23,"278 Spruce St, San Francisco, CA 94016" +150919,Apple Airpods Headphones,1,150,01/02/19 14:29,"456 14th St, Los Angeles, CA 90001" +150920,USB-C Charging Cable,1,11.95,01/07/19 21:03,"6 Highland St, New York City, NY 10001" +150921,27in 4K Gaming Monitor,1,389.99,01/31/19 21:18,"900 Church St, San Francisco, CA 94016" +150922,AA Batteries (4-pack),1,3.84,01/04/19 23:18,"825 12th St, Portland, OR 97035" +150923,Bose SoundSport Headphones,1,99.99,01/21/19 11:13,"602 12th St, Boston, MA 02215" +150924,AA Batteries (4-pack),1,3.84,01/30/19 18:28,"537 11th St, Seattle, WA 98101" +150925,AAA Batteries (4-pack),2,2.99,01/12/19 12:33,"432 North St, Austin, TX 73301" +150926,Macbook Pro Laptop,1,1700,01/21/19 20:58,"189 North St, Portland, OR 97035" +150927,27in FHD Monitor,1,149.99,01/20/19 20:54,"157 Johnson St, Dallas, TX 75001" +150928,AA Batteries (4-pack),1,3.84,01/08/19 18:38,"921 Lake St, San Francisco, CA 94016" +150929,Apple Airpods Headphones,1,150,01/07/19 08:29,"460 Jackson St, New York City, NY 10001" +150930,Wired Headphones,1,11.99,01/14/19 11:14,"243 Adams St, New York City, NY 10001" +150931,27in FHD Monitor,1,149.99,01/05/19 20:48,"577 13th St, Los Angeles, CA 90001" +150932,20in Monitor,1,109.99,01/10/19 14:56,"287 Park St, Los Angeles, CA 90001" +150933,AAA Batteries (4-pack),1,2.99,01/06/19 20:10,"778 Wilson St, San Francisco, CA 94016" +150934,34in Ultrawide Monitor,1,379.99,01/17/19 19:18,"598 4th St, Seattle, WA 98101" +150935,AAA Batteries (4-pack),4,2.99,01/13/19 13:52,"565 Jefferson St, Dallas, TX 75001" +150936,AA Batteries (4-pack),2,3.84,01/05/19 23:34,"246 Wilson St, San Francisco, CA 94016" +150937,27in 4K Gaming Monitor,1,389.99,01/29/19 17:18,"100 Cherry St, Portland, OR 97035" +150938,34in Ultrawide Monitor,1,379.99,01/24/19 17:41,"888 Washington St, Los Angeles, CA 90001" +150939,USB-C Charging Cable,1,11.95,01/09/19 10:23,"983 Hill St, Austin, TX 73301" +150940,Bose SoundSport Headphones,1,99.99,01/14/19 22:49,"529 West St, San Francisco, CA 94016" +150941,Apple Airpods Headphones,1,150,01/25/19 15:32,"151 Sunset St, Los Angeles, CA 90001" +150942,AA Batteries (4-pack),2,3.84,01/21/19 14:40,"775 Jackson St, San Francisco, CA 94016" +150943,AAA Batteries (4-pack),1,2.99,01/16/19 00:13,"956 Lake St, San Francisco, CA 94016" +150944,AA Batteries (4-pack),1,3.84,01/06/19 11:12,"737 Sunset St, Seattle, WA 98101" +150945,AA Batteries (4-pack),1,3.84,01/01/19 10:23,"456 Meadow St, Los Angeles, CA 90001" +150946,Lightning Charging Cable,1,14.95,01/06/19 19:07,"494 Jackson St, San Francisco, CA 94016" +150947,AAA Batteries (4-pack),1,2.99,01/08/19 21:49,"926 4th St, Dallas, TX 75001" +150948,AAA Batteries (4-pack),1,2.99,01/23/19 10:46,"814 Adams St, Dallas, TX 75001" +150949,USB-C Charging Cable,1,11.95,01/13/19 20:27,"198 Forest St, Dallas, TX 75001" +150950,Wired Headphones,1,11.99,01/19/19 12:03,"280 Sunset St, Dallas, TX 75001" +150951,USB-C Charging Cable,1,11.95,01/25/19 19:48,"70 Center St, Boston, MA 02215" +150952,Lightning Charging Cable,1,14.95,01/26/19 10:46,"498 Lakeview St, Los Angeles, CA 90001" +150953,Wired Headphones,1,11.99,01/18/19 19:34,"877 Hill St, Los Angeles, CA 90001" +150954,USB-C Charging Cable,1,11.95,01/25/19 05:40,"740 9th St, San Francisco, CA 94016" +150955,ThinkPad Laptop,1,999.99,01/31/19 09:29,"37 Spruce St, New York City, NY 10001" +150956,AAA Batteries (4-pack),1,2.99,01/14/19 15:07,"691 Maple St, Boston, MA 02215" +150957,Wired Headphones,1,11.99,01/21/19 09:21,"369 Washington St, Los Angeles, CA 90001" +150958,Apple Airpods Headphones,1,150,01/16/19 15:58,"698 Chestnut St, New York City, NY 10001" +150959,Lightning Charging Cable,1,14.95,01/29/19 17:27,"520 Lincoln St, Los Angeles, CA 90001" +150960,Wired Headphones,1,11.99,01/16/19 12:36,"667 Washington St, Portland, OR 97035" +150961,USB-C Charging Cable,1,11.95,01/01/19 21:44,"301 Lincoln St, Boston, MA 02215" +150962,Wired Headphones,1,11.99,01/20/19 11:50,"892 South St, San Francisco, CA 94016" +150963,AA Batteries (4-pack),1,3.84,01/31/19 12:08,"867 9th St, Austin, TX 73301" +150964,Lightning Charging Cable,1,14.95,01/08/19 15:49,"536 Meadow St, New York City, NY 10001" +150965,AA Batteries (4-pack),1,3.84,01/17/19 11:31,"803 Spruce St, Seattle, WA 98101" +150966,20in Monitor,1,109.99,01/10/19 16:03,"383 Chestnut St, San Francisco, CA 94016" +150967,Google Phone,1,600,01/11/19 09:14,"879 11th St, Dallas, TX 75001" +150968,USB-C Charging Cable,1,11.95,01/24/19 17:24,"681 Cherry St, San Francisco, CA 94016" +150969,Google Phone,1,600,01/07/19 09:02,"911 Ridge St, Boston, MA 02215" +150970,Bose SoundSport Headphones,1,99.99,01/24/19 20:19,"444 Cedar St, Atlanta, GA 30301" +150971,AA Batteries (4-pack),1,3.84,01/26/19 11:05,"404 Hickory St, Los Angeles, CA 90001" +150972,USB-C Charging Cable,1,11.95,01/08/19 18:47,"128 Church St, Boston, MA 02215" +150973,USB-C Charging Cable,1,11.95,01/27/19 21:26,"276 1st St, New York City, NY 10001" +150974,AA Batteries (4-pack),2,3.84,01/28/19 13:11,"618 Walnut St, Seattle, WA 98101" +150975,AA Batteries (4-pack),1,3.84,01/27/19 14:33,"731 Jackson St, Dallas, TX 75001" +150976,USB-C Charging Cable,1,11.95,01/19/19 06:03,"878 Hill St, Dallas, TX 75001" +150977,AAA Batteries (4-pack),3,2.99,01/17/19 10:46,"525 Wilson St, Dallas, TX 75001" +150978,ThinkPad Laptop,1,999.99,01/23/19 11:08,"151 West St, San Francisco, CA 94016" +,,,,, +150979,Apple Airpods Headphones,1,150,01/30/19 19:28,"985 North St, New York City, NY 10001" +150980,Wired Headphones,1,11.99,01/12/19 20:17,"496 Chestnut St, San Francisco, CA 94016" +150981,Macbook Pro Laptop,1,1700,01/29/19 05:59,"65 9th St, Los Angeles, CA 90001" +150982,Apple Airpods Headphones,1,150,01/23/19 06:37,"66 Maple St, Boston, MA 02215" +150983,Wired Headphones,1,11.99,01/17/19 08:47,"564 1st St, San Francisco, CA 94016" +150984,Lightning Charging Cable,1,14.95,01/06/19 20:49,"896 9th St, Los Angeles, CA 90001" +150985,AAA Batteries (4-pack),2,2.99,01/15/19 11:47,"138 9th St, Portland, OR 97035" +150986,Lightning Charging Cable,1,14.95,01/18/19 15:08,"125 Madison St, San Francisco, CA 94016" +150987,Bose SoundSport Headphones,1,99.99,01/27/19 10:48,"848 Park St, San Francisco, CA 94016" +150988,27in FHD Monitor,1,149.99,01/11/19 15:08,"406 6th St, Atlanta, GA 30301" +150989,USB-C Charging Cable,1,11.95,01/22/19 14:57,"861 11th St, San Francisco, CA 94016" +150990,iPhone,1,700,01/26/19 13:33,"608 Wilson St, San Francisco, CA 94016" +150991,Apple Airpods Headphones,1,150,01/28/19 23:15,"318 Hill St, Boston, MA 02215" +150992,20in Monitor,1,109.99,01/18/19 10:46,"536 Meadow St, Dallas, TX 75001" +150993,Google Phone,1,600,01/29/19 11:54,"845 7th St, Los Angeles, CA 90001" +150994,Bose SoundSport Headphones,1,99.99,01/15/19 17:26,"471 7th St, Austin, TX 73301" +150995,AA Batteries (4-pack),3,3.84,01/30/19 22:16,"777 North St, Los Angeles, CA 90001" +150996,USB-C Charging Cable,1,11.95,01/24/19 14:24,"801 South St, Los Angeles, CA 90001" +150997,Wired Headphones,1,11.99,01/21/19 00:32,"845 Sunset St, San Francisco, CA 94016" +150998,20in Monitor,1,109.99,01/18/19 18:56,"797 Hickory St, San Francisco, CA 94016" +150999,20in Monitor,1,109.99,01/27/19 18:46,"882 Highland St, Austin, TX 73301" +151000,Vareebadd Phone,1,400,01/16/19 08:32,"376 Hill St, Los Angeles, CA 90001" +151000,USB-C Charging Cable,1,11.95,01/16/19 08:32,"376 Hill St, Los Angeles, CA 90001" +151001,AAA Batteries (4-pack),1,2.99,01/22/19 11:25,"877 12th St, Portland, OR 97035" +151002,Lightning Charging Cable,1,14.95,01/16/19 20:14,"166 Cedar St, Dallas, TX 75001" +151003,AAA Batteries (4-pack),2,2.99,01/17/19 12:46,"675 South St, Austin, TX 73301" +151004,Google Phone,1,600,01/04/19 11:56,"837 Spruce St, Austin, TX 73301" +151004,USB-C Charging Cable,1,11.95,01/04/19 11:56,"837 Spruce St, Austin, TX 73301" +151005,Apple Airpods Headphones,1,150,01/30/19 16:30,"946 Highland St, San Francisco, CA 94016" +151006,AAA Batteries (4-pack),2,2.99,01/16/19 14:27,"693 Park St, San Francisco, CA 94016" +151007,Apple Airpods Headphones,1,150,01/31/19 10:59,"824 7th St, Boston, MA 02215" +151008,Wired Headphones,1,11.99,01/08/19 13:24,"834 Forest St, Dallas, TX 75001" +151009,Lightning Charging Cable,1,14.95,01/20/19 09:53,"538 8th St, San Francisco, CA 94016" +151010,Bose SoundSport Headphones,1,99.99,01/25/19 20:52,"287 Hill St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +151011,Bose SoundSport Headphones,1,99.99,01/02/19 17:52,"859 Church St, San Francisco, CA 94016" +151012,27in 4K Gaming Monitor,1,389.99,01/08/19 07:23,"115 South St, Boston, MA 02215" +151013,AA Batteries (4-pack),1,3.84,01/02/19 20:20,"600 Cedar St, Austin, TX 73301" +151014,USB-C Charging Cable,1,11.95,01/15/19 13:28,"209 Washington St, San Francisco, CA 94016" +151015,AAA Batteries (4-pack),3,2.99,01/24/19 12:49,"218 Sunset St, Boston, MA 02215" +151016,Lightning Charging Cable,1,14.95,01/05/19 20:52,"852 Jackson St, Los Angeles, CA 90001" +151017,Apple Airpods Headphones,1,150,01/26/19 08:25,"707 Jackson St, New York City, NY 10001" +151018,USB-C Charging Cable,1,11.95,01/08/19 13:56,"624 North St, San Francisco, CA 94016" +151019,USB-C Charging Cable,1,11.95,01/12/19 10:25,"496 Cherry St, Portland, OR 97035" +151020,ThinkPad Laptop,1,999.99,01/31/19 22:38,"237 14th St, New York City, NY 10001" +151021,Apple Airpods Headphones,1,150,01/25/19 12:23,"35 7th St, Boston, MA 02215" +151022,Lightning Charging Cable,1,14.95,01/11/19 19:06,"647 Dogwood St, Los Angeles, CA 90001" +151022,34in Ultrawide Monitor,1,379.99,01/11/19 19:06,"647 Dogwood St, Los Angeles, CA 90001" +151023,AAA Batteries (4-pack),1,2.99,01/08/19 14:09,"298 Hickory St, Los Angeles, CA 90001" +151024,AAA Batteries (4-pack),2,2.99,01/19/19 15:17,"537 8th St, Portland, ME 04101" +151025,Apple Airpods Headphones,1,150,01/11/19 17:31,"173 Cedar St, New York City, NY 10001" +151026,AAA Batteries (4-pack),2,2.99,01/25/19 12:36,"88 9th St, Atlanta, GA 30301" +151027,iPhone,1,700,01/07/19 17:50,"969 Lakeview St, Los Angeles, CA 90001" +151028,34in Ultrawide Monitor,1,379.99,01/31/19 12:13,"761 8th St, Boston, MA 02215" +151029,USB-C Charging Cable,1,11.95,01/21/19 21:16,"881 Elm St, Los Angeles, CA 90001" +151030,AAA Batteries (4-pack),3,2.99,01/02/19 20:46,"274 Wilson St, Boston, MA 02215" +151031,AA Batteries (4-pack),1,3.84,01/04/19 14:10,"12 Center St, Los Angeles, CA 90001" +151032,27in FHD Monitor,1,149.99,01/04/19 15:36,"303 Highland St, New York City, NY 10001" +151033,AAA Batteries (4-pack),1,2.99,01/30/19 16:07,"150 Cedar St, Seattle, WA 98101" +151034,27in FHD Monitor,1,149.99,01/01/19 20:46,"885 South St, Seattle, WA 98101" +151035,Bose SoundSport Headphones,1,99.99,01/16/19 09:18,"912 Washington St, New York City, NY 10001" +151036,iPhone,1,700,01/21/19 14:17,"549 Park St, Los Angeles, CA 90001" +151036,Lightning Charging Cable,1,14.95,01/21/19 14:17,"549 Park St, Los Angeles, CA 90001" +151037,34in Ultrawide Monitor,1,379.99,01/21/19 22:20,"417 Washington St, Los Angeles, CA 90001" +151038,USB-C Charging Cable,1,11.95,01/27/19 00:02,"903 Jefferson St, Boston, MA 02215" +151039,AA Batteries (4-pack),1,3.84,01/05/19 09:42,"641 1st St, San Francisco, CA 94016" +151040,iPhone,1,700,01/26/19 21:47,"213 Lincoln St, San Francisco, CA 94016" +151041,20in Monitor,1,109.99,01/09/19 10:48,"686 Dogwood St, San Francisco, CA 94016" +151042,Flatscreen TV,1,300,01/08/19 08:08,"168 Jefferson St, Los Angeles, CA 90001" +151043,Wired Headphones,1,11.99,01/10/19 20:21,"615 14th St, San Francisco, CA 94016" +151044,Apple Airpods Headphones,1,150,01/20/19 14:09,"52 Main St, New York City, NY 10001" +151045,Bose SoundSport Headphones,1,99.99,01/14/19 20:05,"604 Jackson St, New York City, NY 10001" +151046,Wired Headphones,1,11.99,01/16/19 17:01,"575 Center St, Portland, OR 97035" +151047,AA Batteries (4-pack),2,3.84,01/08/19 21:51,"321 13th St, Los Angeles, CA 90001" +151048,ThinkPad Laptop,1,999.99,01/18/19 14:28,"498 North St, Los Angeles, CA 90001" +151049,Macbook Pro Laptop,1,1700,01/11/19 10:58,"331 Cherry St, Seattle, WA 98101" +151050,Bose SoundSport Headphones,1,99.99,01/12/19 14:11,"241 Jefferson St, New York City, NY 10001" +151051,Google Phone,1,600,01/16/19 07:54,"431 Wilson St, Boston, MA 02215" +151052,20in Monitor,1,109.99,01/01/19 10:55,"247 North St, Los Angeles, CA 90001" +151053,AAA Batteries (4-pack),1,2.99,01/07/19 10:03,"829 Johnson St, San Francisco, CA 94016" +151054,Wired Headphones,1,11.99,01/06/19 19:23,"814 South St, Seattle, WA 98101" +151055,Apple Airpods Headphones,1,150,01/11/19 16:49,"752 4th St, San Francisco, CA 94016" +151055,AA Batteries (4-pack),1,3.84,01/11/19 16:49,"752 4th St, San Francisco, CA 94016" +151056,Apple Airpods Headphones,1,150,01/21/19 09:20,"516 6th St, Dallas, TX 75001" +151057,USB-C Charging Cable,1,11.95,01/05/19 21:05,"904 Cherry St, New York City, NY 10001" +151058,34in Ultrawide Monitor,1,379.99,01/06/19 13:27,"621 Park St, Los Angeles, CA 90001" +151059,Apple Airpods Headphones,1,150,01/14/19 07:38,"606 Elm St, San Francisco, CA 94016" +151060,Bose SoundSport Headphones,1,99.99,01/08/19 15:40,"183 Forest St, San Francisco, CA 94016" +151061,AAA Batteries (4-pack),1,2.99,01/26/19 17:02,"962 Hill St, Dallas, TX 75001" +151062,34in Ultrawide Monitor,1,379.99,01/07/19 19:20,"974 14th St, Los Angeles, CA 90001" +151063,34in Ultrawide Monitor,1,379.99,01/05/19 15:43,"718 Cedar St, Dallas, TX 75001" +151064,Apple Airpods Headphones,1,150,01/01/19 10:07,"636 Pine St, Dallas, TX 75001" +151065,27in 4K Gaming Monitor,1,389.99,01/22/19 19:48,"360 Park St, Dallas, TX 75001" +151066,Lightning Charging Cable,1,14.95,01/27/19 10:39,"531 River St, San Francisco, CA 94016" +151067,Bose SoundSport Headphones,1,99.99,01/31/19 10:51,"79 1st St, New York City, NY 10001" +151068,LG Washing Machine,1,600.0,01/08/19 22:30,"761 Lincoln St, Boston, MA 02215" +151069,Vareebadd Phone,1,400,01/03/19 23:27,"853 9th St, Los Angeles, CA 90001" +151069,USB-C Charging Cable,1,11.95,01/03/19 23:27,"853 9th St, Los Angeles, CA 90001" +151070,USB-C Charging Cable,1,11.95,01/10/19 12:05,"951 Ridge St, Austin, TX 73301" +151071,Lightning Charging Cable,1,14.95,01/04/19 20:35,"910 9th St, Boston, MA 02215" +151072,Bose SoundSport Headphones,1,99.99,01/05/19 22:14,"611 Walnut St, New York City, NY 10001" +151073,AA Batteries (4-pack),2,3.84,01/26/19 07:31,"911 Meadow St, Dallas, TX 75001" +151074,Flatscreen TV,1,300,01/09/19 10:33,"449 Center St, Boston, MA 02215" +151074,AAA Batteries (4-pack),3,2.99,01/09/19 10:33,"449 Center St, Boston, MA 02215" +151075,Vareebadd Phone,1,400,01/26/19 13:36,"561 14th St, Seattle, WA 98101" +151076,Lightning Charging Cable,1,14.95,01/25/19 23:07,"789 10th St, San Francisco, CA 94016" +151077,Wired Headphones,1,11.99,01/13/19 15:13,"625 River St, Los Angeles, CA 90001" +151078,Apple Airpods Headphones,1,150,01/06/19 18:19,"835 Main St, Atlanta, GA 30301" +151079,AA Batteries (4-pack),1,3.84,01/22/19 00:21,"123 Elm St, New York City, NY 10001" +151080,iPhone,1,700,01/01/19 11:51,"776 6th St, Atlanta, GA 30301" +151080,Lightning Charging Cable,1,14.95,01/01/19 11:51,"776 6th St, Atlanta, GA 30301" +151081,AAA Batteries (4-pack),1,2.99,01/01/19 20:55,"214 14th St, Austin, TX 73301" +151082,iPhone,1,700,01/29/19 13:05,"832 Wilson St, Dallas, TX 75001" +151082,Lightning Charging Cable,1,14.95,01/29/19 13:05,"832 Wilson St, Dallas, TX 75001" +151083,AA Batteries (4-pack),1,3.84,01/07/19 13:20,"631 Chestnut St, Austin, TX 73301" +151084,AA Batteries (4-pack),1,3.84,01/14/19 06:18,"185 Meadow St, San Francisco, CA 94016" +151085,27in FHD Monitor,1,149.99,01/19/19 10:28,"54 Lake St, Boston, MA 02215" +151086,27in 4K Gaming Monitor,1,389.99,01/10/19 04:21,"222 Jefferson St, San Francisco, CA 94016" +151087,Lightning Charging Cable,1,14.95,01/16/19 21:22,"329 Hill St, Seattle, WA 98101" +151088,AAA Batteries (4-pack),1,2.99,01/08/19 17:58,"327 8th St, Boston, MA 02215" +151089,USB-C Charging Cable,1,11.95,01/17/19 13:10,"661 9th St, Dallas, TX 75001" +151090,Apple Airpods Headphones,1,150,01/08/19 13:35,"182 Highland St, Seattle, WA 98101" +151091,AA Batteries (4-pack),1,3.84,01/14/19 15:01,"603 Jefferson St, Portland, OR 97035" +151092,Macbook Pro Laptop,1,1700,01/28/19 08:21,"987 Walnut St, Portland, OR 97035" +151093,Google Phone,1,600,01/18/19 15:17,"287 Elm St, Dallas, TX 75001" +151093,USB-C Charging Cable,1,11.95,01/18/19 15:17,"287 Elm St, Dallas, TX 75001" +151093,Wired Headphones,3,11.99,01/18/19 15:17,"287 Elm St, Dallas, TX 75001" +151094,Lightning Charging Cable,1,14.95,01/08/19 18:02,"954 7th St, Los Angeles, CA 90001" +151095,Bose SoundSport Headphones,1,99.99,01/10/19 17:50,"998 Park St, Dallas, TX 75001" +151096,USB-C Charging Cable,1,11.95,01/29/19 11:10,"809 West St, Atlanta, GA 30301" +151096,Macbook Pro Laptop,1,1700,01/29/19 11:10,"809 West St, Atlanta, GA 30301" +151097,AAA Batteries (4-pack),1,2.99,01/11/19 18:39,"813 Church St, San Francisco, CA 94016" +151098,Macbook Pro Laptop,1,1700,01/28/19 05:42,"748 Cherry St, San Francisco, CA 94016" +151099,Wired Headphones,1,11.99,01/25/19 01:11,"437 South St, Portland, OR 97035" +151100,Apple Airpods Headphones,1,150,01/28/19 09:46,"506 4th St, New York City, NY 10001" +151101,AA Batteries (4-pack),2,3.84,01/28/19 18:27,"25 Highland St, Dallas, TX 75001" +151102,USB-C Charging Cable,1,11.95,01/03/19 09:27,"29 13th St, Los Angeles, CA 90001" +151103,AAA Batteries (4-pack),1,2.99,01/11/19 21:45,"476 Adams St, Dallas, TX 75001" +151104,AAA Batteries (4-pack),1,2.99,01/03/19 22:47,"578 Lincoln St, New York City, NY 10001" +151105,AAA Batteries (4-pack),1,2.99,01/13/19 16:41,"142 Dogwood St, New York City, NY 10001" +151106,Lightning Charging Cable,1,14.95,01/19/19 10:38,"91 Hickory St, San Francisco, CA 94016" +151107,Macbook Pro Laptop,1,1700,01/30/19 16:53,"237 7th St, Atlanta, GA 30301" +151108,iPhone,1,700,01/27/19 23:26,"774 Wilson St, Boston, MA 02215" +151109,34in Ultrawide Monitor,1,379.99,01/16/19 09:00,"603 Hickory St, Portland, OR 97035" +151110,ThinkPad Laptop,1,999.99,01/24/19 17:21,"871 Church St, San Francisco, CA 94016" +151111,Macbook Pro Laptop,1,1700,01/20/19 21:19,"602 Hickory St, Boston, MA 02215" +151112,iPhone,1,700,01/28/19 11:41,"367 Lake St, Dallas, TX 75001" +151113,AAA Batteries (4-pack),1,2.99,01/29/19 12:07,"927 Cedar St, New York City, NY 10001" +151114,USB-C Charging Cable,1,11.95,01/11/19 18:09,"978 Elm St, Atlanta, GA 30301" +151115,AA Batteries (4-pack),2,3.84,01/16/19 14:23,"312 Jackson St, Boston, MA 02215" +151116,27in FHD Monitor,1,149.99,01/24/19 20:36,"578 Church St, New York City, NY 10001" +151117,27in FHD Monitor,1,149.99,01/26/19 11:49,"832 Sunset St, Seattle, WA 98101" +151118,Wired Headphones,1,11.99,01/06/19 11:36,"834 Johnson St, Boston, MA 02215" +151119,Lightning Charging Cable,1,14.95,01/04/19 20:10,"839 Cedar St, San Francisco, CA 94016" +151120,Flatscreen TV,1,300,01/29/19 22:43,"215 2nd St, Boston, MA 02215" +151121,Apple Airpods Headphones,1,150,01/08/19 10:55,"281 River St, Dallas, TX 75001" +151122,USB-C Charging Cable,1,11.95,01/28/19 12:34,"815 Forest St, Portland, OR 97035" +151123,USB-C Charging Cable,1,11.95,01/16/19 19:29,"830 Church St, San Francisco, CA 94016" +151124,AA Batteries (4-pack),2,3.84,01/01/19 16:37,"703 Adams St, Seattle, WA 98101" +151125,Lightning Charging Cable,1,14.95,01/25/19 22:55,"603 Dogwood St, New York City, NY 10001" +151126,USB-C Charging Cable,1,11.95,01/16/19 13:46,"182 Center St, Boston, MA 02215" +151127,Apple Airpods Headphones,1,150,01/16/19 21:08,"273 14th St, Dallas, TX 75001" +151128,Apple Airpods Headphones,1,150,01/02/19 23:46,"852 Meadow St, Portland, OR 97035" +151129,Apple Airpods Headphones,1,150,01/12/19 15:02,"434 14th St, San Francisco, CA 94016" +151130,AAA Batteries (4-pack),2,2.99,01/06/19 16:33,"750 Ridge St, Atlanta, GA 30301" +151131,USB-C Charging Cable,1,11.95,01/25/19 12:51,"193 Meadow St, San Francisco, CA 94016" +151132,AA Batteries (4-pack),2,3.84,01/25/19 21:03,"301 1st St, Los Angeles, CA 90001" +151133,Flatscreen TV,1,300,01/29/19 21:57,"844 Dogwood St, Austin, TX 73301" +151134,AA Batteries (4-pack),1,3.84,01/22/19 14:55,"962 Church St, San Francisco, CA 94016" +151135,27in 4K Gaming Monitor,1,389.99,01/22/19 10:57,"512 Meadow St, Boston, MA 02215" +151136,27in FHD Monitor,1,149.99,01/29/19 18:39,"82 Meadow St, Los Angeles, CA 90001" +151137,AA Batteries (4-pack),1,3.84,01/06/19 07:48,"941 Maple St, Seattle, WA 98101" +151138,Lightning Charging Cable,1,14.95,01/17/19 10:23,"536 Meadow St, Atlanta, GA 30301" +151139,AA Batteries (4-pack),2,3.84,01/09/19 23:09,"440 Chestnut St, Dallas, TX 75001" +151140,Lightning Charging Cable,1,14.95,01/14/19 20:04,"846 5th St, San Francisco, CA 94016" +151141,Macbook Pro Laptop,1,1700,01/15/19 18:06,"98 Ridge St, Dallas, TX 75001" +151142,AAA Batteries (4-pack),2,2.99,01/19/19 21:25,"914 West St, Los Angeles, CA 90001" +151143,Wired Headphones,1,11.99,01/09/19 02:16,"59 Lake St, Los Angeles, CA 90001" +151144,AAA Batteries (4-pack),1,2.99,01/21/19 15:00,"564 Cherry St, New York City, NY 10001" +151145,Lightning Charging Cable,2,14.95,01/07/19 19:55,"26 9th St, Atlanta, GA 30301" +151146,Lightning Charging Cable,1,14.95,01/16/19 19:34,"214 6th St, Dallas, TX 75001" +151147,USB-C Charging Cable,1,11.95,01/13/19 20:41,"696 Adams St, Seattle, WA 98101" +151148,20in Monitor,1,109.99,01/16/19 20:34,"429 Dogwood St, Dallas, TX 75001" +151149,34in Ultrawide Monitor,1,379.99,01/15/19 15:46,"80 Spruce St, San Francisco, CA 94016" +151150,USB-C Charging Cable,1,11.95,01/01/19 19:55,"846 Cherry St, Austin, TX 73301" +151151,AA Batteries (4-pack),1,3.84,01/31/19 14:48,"376 Maple St, Boston, MA 02215" +151152,ThinkPad Laptop,1,999.99,01/21/19 21:32,"129 Dogwood St, Austin, TX 73301" +151153,Apple Airpods Headphones,1,150,01/28/19 17:41,"118 2nd St, New York City, NY 10001" +151154,AAA Batteries (4-pack),1,2.99,01/02/19 02:48,"801 4th St, San Francisco, CA 94016" +151155,iPhone,1,700,01/23/19 05:48,"133 5th St, San Francisco, CA 94016" +151156,Apple Airpods Headphones,1,150,01/31/19 19:58,"901 Johnson St, San Francisco, CA 94016" +151157,27in FHD Monitor,1,149.99,01/06/19 20:30,"859 Hickory St, Dallas, TX 75001" +151158,Apple Airpods Headphones,1,150,01/11/19 09:54,"207 Madison St, Portland, OR 97035" +151159,Wired Headphones,2,11.99,01/05/19 14:33,"513 Highland St, San Francisco, CA 94016" +151160,USB-C Charging Cable,1,11.95,01/24/19 22:53,"872 12th St, New York City, NY 10001" +151161,Google Phone,1,600,01/06/19 03:53,"982 Adams St, Portland, OR 97035" +151162,Wired Headphones,1,11.99,01/25/19 20:16,"314 7th St, Atlanta, GA 30301" +151163,Macbook Pro Laptop,1,1700,01/22/19 13:23,"227 River St, Portland, OR 97035" +151164,20in Monitor,1,109.99,01/01/19 08:40,"575 5th St, San Francisco, CA 94016" +151165,USB-C Charging Cable,1,11.95,01/11/19 21:58,"53 Main St, Atlanta, GA 30301" +151166,Lightning Charging Cable,1,14.95,01/28/19 18:38,"586 6th St, Los Angeles, CA 90001" +151167,Bose SoundSport Headphones,1,99.99,01/23/19 19:02,"117 Maple St, Boston, MA 02215" +151168,AAA Batteries (4-pack),2,2.99,01/27/19 20:59,"792 7th St, San Francisco, CA 94016" +151169,Google Phone,1,600,01/28/19 14:50,"485 Jefferson St, Boston, MA 02215" +151170,iPhone,1,700,01/04/19 20:07,"6 West St, Los Angeles, CA 90001" +151170,Lightning Charging Cable,1,14.95,01/04/19 20:07,"6 West St, Los Angeles, CA 90001" +151171,USB-C Charging Cable,1,11.95,01/04/19 12:13,"586 8th St, Dallas, TX 75001" +151172,Apple Airpods Headphones,1,150,01/15/19 07:30,"998 8th St, Austin, TX 73301" +151173,34in Ultrawide Monitor,1,379.99,01/20/19 21:54,"55 Ridge St, Austin, TX 73301" +151174,Google Phone,1,600,01/15/19 00:12,"733 Church St, Los Angeles, CA 90001" +151175,Apple Airpods Headphones,1,150,01/18/19 22:54,"195 Walnut St, Portland, OR 97035" +151176,AAA Batteries (4-pack),1,2.99,01/18/19 18:47,"995 11th St, Boston, MA 02215" +151177,Wired Headphones,1,11.99,01/19/19 15:42,"731 4th St, Boston, MA 02215" +151178,AA Batteries (4-pack),2,3.84,01/15/19 22:27,"842 9th St, San Francisco, CA 94016" +151179,Wired Headphones,1,11.99,01/02/19 09:14,"173 Madison St, Boston, MA 02215" +151180,AAA Batteries (4-pack),1,2.99,01/15/19 19:33,"261 11th St, Austin, TX 73301" +151181,Lightning Charging Cable,1,14.95,01/26/19 09:23,"587 Hickory St, Boston, MA 02215" +151182,AAA Batteries (4-pack),1,2.99,01/12/19 11:11,"450 Jackson St, Seattle, WA 98101" +151183,Bose SoundSport Headphones,1,99.99,01/10/19 09:48,"302 Chestnut St, San Francisco, CA 94016" +151184,Wired Headphones,1,11.99,01/08/19 09:42,"605 Chestnut St, Boston, MA 02215" +151185,Apple Airpods Headphones,1,150,01/20/19 18:31,"219 Main St, San Francisco, CA 94016" +151186,Apple Airpods Headphones,1,150,01/27/19 20:55,"609 Highland St, San Francisco, CA 94016" +151187,LG Washing Machine,1,600.0,01/20/19 16:40,"515 4th St, Boston, MA 02215" +151188,iPhone,1,700,01/10/19 14:43,"896 Center St, Seattle, WA 98101" +151189,27in FHD Monitor,1,149.99,01/07/19 13:33,"422 Spruce St, Los Angeles, CA 90001" +151190,Lightning Charging Cable,1,14.95,01/03/19 01:25,"282 Adams St, Los Angeles, CA 90001" +151191,USB-C Charging Cable,1,11.95,01/15/19 02:18,"807 Johnson St, Los Angeles, CA 90001" +151192,AAA Batteries (4-pack),1,2.99,01/19/19 13:29,"19 Hickory St, San Francisco, CA 94016" +151193,Wired Headphones,1,11.99,01/23/19 23:28,"821 Main St, Seattle, WA 98101" +151194,AA Batteries (4-pack),1,3.84,01/24/19 08:28,"76 Johnson St, Los Angeles, CA 90001" +151195,AA Batteries (4-pack),2,3.84,01/18/19 21:49,"28 Washington St, San Francisco, CA 94016" +151196,AAA Batteries (4-pack),1,2.99,01/10/19 18:00,"89 Ridge St, San Francisco, CA 94016" +151197,USB-C Charging Cable,1,11.95,01/08/19 07:34,"715 Church St, Atlanta, GA 30301" +151198,AAA Batteries (4-pack),3,2.99,01/02/19 12:38,"560 Center St, Boston, MA 02215" +151199,Apple Airpods Headphones,1,150,01/23/19 23:16,"844 1st St, New York City, NY 10001" +151200,AA Batteries (4-pack),2,3.84,01/26/19 16:52,"789 7th St, San Francisco, CA 94016" +151201,27in 4K Gaming Monitor,1,389.99,01/11/19 17:14,"718 Washington St, Los Angeles, CA 90001" +151202,Google Phone,1,600,01/16/19 11:11,"517 Meadow St, Atlanta, GA 30301" +151202,USB-C Charging Cable,1,11.95,01/16/19 11:11,"517 Meadow St, Atlanta, GA 30301" +151203,AA Batteries (4-pack),1,3.84,01/08/19 16:58,"941 Church St, San Francisco, CA 94016" +151204,Wired Headphones,1,11.99,01/24/19 10:39,"65 Lake St, San Francisco, CA 94016" +151205,AA Batteries (4-pack),1,3.84,01/07/19 18:32,"522 Adams St, San Francisco, CA 94016" +151206,Google Phone,1,600,01/11/19 16:37,"428 Main St, Seattle, WA 98101" +151207,27in 4K Gaming Monitor,1,389.99,01/06/19 17:38,"353 Sunset St, San Francisco, CA 94016" +151208,AAA Batteries (4-pack),1,2.99,01/14/19 16:45,"874 South St, Seattle, WA 98101" +151209,Lightning Charging Cable,1,14.95,01/26/19 14:44,"333 Hickory St, San Francisco, CA 94016" +151210,AA Batteries (4-pack),1,3.84,01/09/19 08:25,"300 8th St, San Francisco, CA 94016" +151211,AA Batteries (4-pack),1,3.84,01/22/19 19:52,"144 Hickory St, Dallas, TX 75001" +151212,Lightning Charging Cable,1,14.95,01/20/19 14:40,"519 Adams St, San Francisco, CA 94016" +151213,27in 4K Gaming Monitor,1,389.99,01/25/19 15:57,"367 14th St, Austin, TX 73301" +151214,AAA Batteries (4-pack),1,2.99,01/25/19 06:04,"995 Jefferson St, San Francisco, CA 94016" +151215,AAA Batteries (4-pack),2,2.99,01/31/19 18:55,"147 Adams St, Seattle, WA 98101" +151216,27in FHD Monitor,1,149.99,01/19/19 12:16,"771 Main St, San Francisco, CA 94016" +151217,Wired Headphones,1,11.99,01/14/19 17:52,"544 Lincoln St, Boston, MA 02215" +151218,Apple Airpods Headphones,1,150,01/30/19 10:12,"232 Sunset St, Los Angeles, CA 90001" +151219,Flatscreen TV,1,300,01/03/19 19:18,"700 12th St, Seattle, WA 98101" +151220,Bose SoundSport Headphones,1,99.99,01/16/19 11:52,"401 1st St, San Francisco, CA 94016" +151221,34in Ultrawide Monitor,1,379.99,01/03/19 14:08,"477 Hill St, Dallas, TX 75001" +151222,Macbook Pro Laptop,1,1700,01/19/19 15:15,"201 Sunset St, San Francisco, CA 94016" +151223,Wired Headphones,1,11.99,01/24/19 20:09,"647 2nd St, San Francisco, CA 94016" +151224,iPhone,1,700,01/09/19 17:54,"644 Cherry St, Atlanta, GA 30301" +151225,Bose SoundSport Headphones,1,99.99,01/08/19 20:38,"825 9th St, San Francisco, CA 94016" +151226,Wired Headphones,1,11.99,01/09/19 22:24,"548 Lincoln St, Dallas, TX 75001" +151227,Wired Headphones,1,11.99,01/24/19 19:57,"934 6th St, Austin, TX 73301" +151228,27in FHD Monitor,1,149.99,01/16/19 12:33,"71 14th St, Portland, OR 97035" +151229,Wired Headphones,2,11.99,01/14/19 20:47,"935 South St, Los Angeles, CA 90001" +151230,Lightning Charging Cable,1,14.95,01/01/19 19:11,"686 Walnut St, San Francisco, CA 94016" +151231,Wired Headphones,1,11.99,01/10/19 07:59,"210 Park St, San Francisco, CA 94016" +151232,Apple Airpods Headphones,1,150,01/13/19 07:30,"340 Maple St, Atlanta, GA 30301" +151233,AA Batteries (4-pack),1,3.84,01/05/19 18:49,"476 Center St, San Francisco, CA 94016" +151234,Google Phone,1,600,01/13/19 11:39,"275 Wilson St, San Francisco, CA 94016" +151235,Wired Headphones,2,11.99,01/12/19 14:32,"125 11th St, Portland, ME 04101" +151236,Lightning Charging Cable,1,14.95,01/15/19 20:14,"952 Wilson St, San Francisco, CA 94016" +151237,AA Batteries (4-pack),5,3.84,01/27/19 20:55,"860 Jefferson St, Seattle, WA 98101" +151238,AAA Batteries (4-pack),1,2.99,01/30/19 17:08,"249 8th St, Portland, OR 97035" +151239,AAA Batteries (4-pack),2,2.99,01/02/19 12:00,"554 Center St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +151240,ThinkPad Laptop,1,999.99,01/31/19 15:40,"805 6th St, Dallas, TX 75001" +151241,34in Ultrawide Monitor,1,379.99,01/22/19 20:00,"906 6th St, San Francisco, CA 94016" +151242,USB-C Charging Cable,1,11.95,01/21/19 18:07,"763 2nd St, Dallas, TX 75001" +151243,AAA Batteries (4-pack),1,2.99,01/15/19 08:02,"790 12th St, Atlanta, GA 30301" +151244,Wired Headphones,1,11.99,01/13/19 17:16,"677 Elm St, San Francisco, CA 94016" +151245,27in FHD Monitor,1,149.99,01/09/19 11:13,"750 Ridge St, Dallas, TX 75001" +151246,AAA Batteries (4-pack),1,2.99,01/06/19 16:03,"321 9th St, Dallas, TX 75001" +151247,Lightning Charging Cable,1,14.95,01/26/19 00:44,"987 Chestnut St, Boston, MA 02215" +151248,Wired Headphones,1,11.99,01/14/19 17:41,"42 13th St, Dallas, TX 75001" +151249,AA Batteries (4-pack),2,3.84,01/01/19 14:43,"213 Spruce St, Los Angeles, CA 90001" +151250,Apple Airpods Headphones,1,150,01/22/19 12:08,"978 Lakeview St, Seattle, WA 98101" +151251,Wired Headphones,1,11.99,01/14/19 07:19,"870 Washington St, San Francisco, CA 94016" +151252,27in FHD Monitor,1,149.99,01/18/19 18:51,"526 Lakeview St, Dallas, TX 75001" +151253,USB-C Charging Cable,2,11.95,01/29/19 12:00,"969 5th St, Los Angeles, CA 90001" +151254,Wired Headphones,1,11.99,01/15/19 22:22,"901 Wilson St, New York City, NY 10001" +151255,AA Batteries (4-pack),3,3.84,01/06/19 08:23,"665 Pine St, San Francisco, CA 94016" +151255,AA Batteries (4-pack),1,3.84,01/06/19 08:23,"665 Pine St, San Francisco, CA 94016" +151256,Google Phone,1,600,01/06/19 12:45,"593 Hickory St, San Francisco, CA 94016" +151257,Lightning Charging Cable,1,14.95,01/24/19 19:44,"279 Hill St, Los Angeles, CA 90001" +151258,27in FHD Monitor,1,149.99,01/31/19 18:04,"365 2nd St, Atlanta, GA 30301" +151259,Google Phone,1,600,01/10/19 13:24,"209 Center St, Portland, ME 04101" +151259,USB-C Charging Cable,2,11.95,01/10/19 13:24,"209 Center St, Portland, ME 04101" +151259,Wired Headphones,1,11.99,01/10/19 13:24,"209 Center St, Portland, ME 04101" +151260,Flatscreen TV,1,300,01/28/19 08:49,"528 Madison St, Atlanta, GA 30301" +151261,27in FHD Monitor,2,149.99,01/11/19 18:24,"263 Ridge St, New York City, NY 10001" +151262,USB-C Charging Cable,2,11.95,01/01/19 20:14,"678 Forest St, New York City, NY 10001" +151263,iPhone,1,700,01/17/19 03:09,"832 Meadow St, Los Angeles, CA 90001" +151264,34in Ultrawide Monitor,1,379.99,01/18/19 14:57,"340 4th St, New York City, NY 10001" +151265,AAA Batteries (4-pack),3,2.99,01/09/19 18:52,"822 Adams St, San Francisco, CA 94016" +151266,34in Ultrawide Monitor,1,379.99,01/04/19 12:56,"575 4th St, New York City, NY 10001" +151267,27in FHD Monitor,1,149.99,01/13/19 01:45,"924 1st St, San Francisco, CA 94016" +151268,LG Washing Machine,1,600.0,01/28/19 12:02,"145 10th St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +151269,Wired Headphones,1,11.99,01/01/19 10:16,"291 Adams St, New York City, NY 10001" +151270,iPhone,1,700,01/01/19 17:56,"38 6th St, San Francisco, CA 94016" +151271,Bose SoundSport Headphones,1,99.99,01/18/19 18:30,"917 13th St, Los Angeles, CA 90001" +151272,Macbook Pro Laptop,1,1700,01/11/19 21:49,"924 Church St, Atlanta, GA 30301" +151273,USB-C Charging Cable,1,11.95,01/18/19 08:59,"409 Forest St, Atlanta, GA 30301" +151274,Macbook Pro Laptop,1,1700,01/14/19 13:49,"30 13th St, Boston, MA 02215" +151275,Wired Headphones,1,11.99,01/22/19 09:51,"901 5th St, Los Angeles, CA 90001" +151276,Lightning Charging Cable,1,14.95,01/11/19 17:22,"131 Lake St, New York City, NY 10001" +151277,Apple Airpods Headphones,1,150,01/03/19 10:38,"294 Cherry St, San Francisco, CA 94016" +151278,34in Ultrawide Monitor,1,379.99,01/13/19 19:25,"722 Willow St, Portland, OR 97035" +151279,ThinkPad Laptop,1,999.99,01/06/19 09:27,"484 Johnson St, San Francisco, CA 94016" +151280,AA Batteries (4-pack),1,3.84,01/11/19 19:44,"315 Sunset St, New York City, NY 10001" +151281,Wired Headphones,1,11.99,01/27/19 21:18,"439 North St, Seattle, WA 98101" +151282,27in FHD Monitor,1,149.99,01/20/19 23:28,"840 South St, Portland, OR 97035" +151283,Bose SoundSport Headphones,1,99.99,01/20/19 17:41,"768 Adams St, San Francisco, CA 94016" +151284,USB-C Charging Cable,2,11.95,01/17/19 20:02,"12 6th St, San Francisco, CA 94016" +151285,Apple Airpods Headphones,1,150,01/07/19 16:14,"601 7th St, San Francisco, CA 94016" +151286,AAA Batteries (4-pack),2,2.99,01/19/19 18:03,"599 5th St, Dallas, TX 75001" +151287,Flatscreen TV,1,300,01/16/19 08:06,"852 Walnut St, Dallas, TX 75001" +151288,Apple Airpods Headphones,1,150,01/21/19 22:56,"325 Jackson St, Boston, MA 02215" +151289,AA Batteries (4-pack),1,3.84,01/25/19 17:32,"877 Jefferson St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +151290,AAA Batteries (4-pack),3,2.99,01/30/19 18:12,"161 10th St, New York City, NY 10001" +151291,LG Dryer,1,600.0,01/16/19 17:58,"141 Cherry St, Dallas, TX 75001" +151292,Apple Airpods Headphones,1,150,01/10/19 16:23,"632 West St, Boston, MA 02215" +151293,AAA Batteries (4-pack),1,2.99,01/28/19 11:37,"914 Chestnut St, San Francisco, CA 94016" +151294,Wired Headphones,2,11.99,01/17/19 21:49,"983 Jefferson St, New York City, NY 10001" +151295,Lightning Charging Cable,1,14.95,01/27/19 13:40,"15 Ridge St, Atlanta, GA 30301" +151296,27in 4K Gaming Monitor,1,389.99,01/14/19 11:33,"702 Lake St, San Francisco, CA 94016" +151297,Wired Headphones,1,11.99,01/27/19 16:40,"245 1st St, New York City, NY 10001" +151298,AAA Batteries (4-pack),1,2.99,01/16/19 14:31,"628 Center St, San Francisco, CA 94016" +151299,Wired Headphones,1,11.99,01/25/19 06:19,"310 14th St, Dallas, TX 75001" +151300,34in Ultrawide Monitor,1,379.99,01/12/19 11:32,"372 Church St, Boston, MA 02215" +151301,AAA Batteries (4-pack),1,2.99,01/11/19 21:18,"628 South St, Portland, ME 04101" +151302,USB-C Charging Cable,1,11.95,01/16/19 15:46,"971 Main St, Dallas, TX 75001" +151303,Flatscreen TV,1,300,01/30/19 11:32,"407 Willow St, Portland, OR 97035" +151304,Lightning Charging Cable,1,14.95,01/27/19 16:06,"205 Walnut St, Los Angeles, CA 90001" +151305,Apple Airpods Headphones,1,150,01/14/19 11:07,"726 Lakeview St, San Francisco, CA 94016" +151306,Wired Headphones,1,11.99,01/03/19 18:34,"458 Church St, Austin, TX 73301" +151307,34in Ultrawide Monitor,1,379.99,01/16/19 13:32,"252 West St, San Francisco, CA 94016" +151308,Bose SoundSport Headphones,1,99.99,01/14/19 01:12,"472 6th St, Los Angeles, CA 90001" +151309,27in 4K Gaming Monitor,1,389.99,01/26/19 14:43,"860 Pine St, Austin, TX 73301" +151310,Bose SoundSport Headphones,1,99.99,01/07/19 11:17,"535 Willow St, Boston, MA 02215" +151311,AAA Batteries (4-pack),2,2.99,01/19/19 21:03,"700 5th St, Seattle, WA 98101" +151312,AA Batteries (4-pack),1,3.84,01/06/19 12:53,"105 Chestnut St, Seattle, WA 98101" +151313,20in Monitor,1,109.99,01/24/19 15:48,"619 7th St, Boston, MA 02215" +151314,USB-C Charging Cable,1,11.95,01/14/19 15:24,"945 Lake St, Austin, TX 73301" +151315,Apple Airpods Headphones,1,150,01/19/19 10:26,"919 Sunset St, Portland, OR 97035" +151316,Wired Headphones,1,11.99,01/20/19 19:41,"206 2nd St, Los Angeles, CA 90001" +151317,Wired Headphones,1,11.99,01/05/19 13:13,"148 Ridge St, New York City, NY 10001" +151318,Bose SoundSport Headphones,1,99.99,01/08/19 13:19,"823 11th St, Atlanta, GA 30301" +151319,Apple Airpods Headphones,1,150,01/14/19 11:43,"247 Ridge St, Boston, MA 02215" +151320,27in FHD Monitor,1,149.99,01/29/19 23:21,"519 1st St, Los Angeles, CA 90001" +151320,27in FHD Monitor,1,149.99,01/29/19 23:21,"519 1st St, Los Angeles, CA 90001" +151321,Apple Airpods Headphones,1,150,01/10/19 18:39,"266 7th St, New York City, NY 10001" +151322,Google Phone,1,600,01/17/19 15:01,"763 Lakeview St, Seattle, WA 98101" +151323,USB-C Charging Cable,1,11.95,01/22/19 20:47,"616 Lakeview St, Boston, MA 02215" +151324,AAA Batteries (4-pack),2,2.99,01/08/19 17:47,"891 6th St, San Francisco, CA 94016" +151324,AA Batteries (4-pack),1,3.84,01/08/19 17:47,"891 6th St, San Francisco, CA 94016" +151325,AAA Batteries (4-pack),5,2.99,01/23/19 07:39,"811 Meadow St, Seattle, WA 98101" +151326,AAA Batteries (4-pack),2,2.99,01/16/19 12:37,"145 Walnut St, San Francisco, CA 94016" +151327,Flatscreen TV,1,300,01/15/19 20:18,"535 Washington St, Atlanta, GA 30301" +151328,AA Batteries (4-pack),1,3.84,01/28/19 12:38,"457 Ridge St, Boston, MA 02215" +151329,Apple Airpods Headphones,1,150,01/25/19 23:25,"665 Main St, Los Angeles, CA 90001" +151330,Macbook Pro Laptop,1,1700,01/08/19 19:00,"777 2nd St, Atlanta, GA 30301" +151331,Lightning Charging Cable,2,14.95,01/16/19 13:31,"956 12th St, Atlanta, GA 30301" +151332,Lightning Charging Cable,1,14.95,01/31/19 12:25,"583 Cedar St, San Francisco, CA 94016" +151333,34in Ultrawide Monitor,1,379.99,01/31/19 10:01,"377 Church St, San Francisco, CA 94016" +151334,27in 4K Gaming Monitor,1,389.99,01/19/19 13:40,"380 Church St, Boston, MA 02215" +151335,AA Batteries (4-pack),1,3.84,01/12/19 13:29,"289 Main St, San Francisco, CA 94016" +151336,AAA Batteries (4-pack),1,2.99,01/16/19 17:28,"298 Meadow St, New York City, NY 10001" +151337,AA Batteries (4-pack),1,3.84,01/28/19 21:59,"799 Sunset St, Dallas, TX 75001" +151338,Apple Airpods Headphones,1,150,01/12/19 10:55,"935 Lakeview St, San Francisco, CA 94016" +151339,27in FHD Monitor,1,149.99,01/17/19 10:35,"601 Madison St, New York City, NY 10001" +151340,AA Batteries (4-pack),1,3.84,01/14/19 18:57,"556 South St, Boston, MA 02215" +151341,USB-C Charging Cable,1,11.95,01/05/19 11:00,"202 Spruce St, San Francisco, CA 94016" +151342,Google Phone,1,600,01/28/19 08:31,"107 Cherry St, San Francisco, CA 94016" +151343,Apple Airpods Headphones,1,150,01/19/19 23:12,"194 Adams St, Seattle, WA 98101" +151344,Flatscreen TV,1,300,01/09/19 10:56,"137 Lakeview St, Boston, MA 02215" +151345,AA Batteries (4-pack),1,3.84,01/25/19 16:30,"684 Ridge St, San Francisco, CA 94016" +151346,LG Washing Machine,1,600.0,01/25/19 11:13,"580 Lakeview St, San Francisco, CA 94016" +151347,Bose SoundSport Headphones,1,99.99,01/17/19 12:55,"691 West St, Dallas, TX 75001" +151348,Google Phone,1,600,01/08/19 13:25,"691 Johnson St, Los Angeles, CA 90001" +151349,27in FHD Monitor,1,149.99,01/13/19 22:37,"381 Washington St, San Francisco, CA 94016" +151350,AAA Batteries (4-pack),1,2.99,01/01/19 12:05,"217 South St, Boston, MA 02215" +151351,AA Batteries (4-pack),1,3.84,01/22/19 14:03,"692 Willow St, San Francisco, CA 94016" +151352,Wired Headphones,2,11.99,01/13/19 19:32,"461 Jackson St, New York City, NY 10001" +151353,USB-C Charging Cable,1,11.95,01/05/19 23:50,"968 Jefferson St, Austin, TX 73301" +151354,Vareebadd Phone,1,400,01/02/19 01:07,"536 Madison St, Boston, MA 02215" +151354,USB-C Charging Cable,1,11.95,01/02/19 01:07,"536 Madison St, Boston, MA 02215" +151355,iPhone,1,700,01/28/19 15:23,"55 Johnson St, New York City, NY 10001" +151355,Lightning Charging Cable,1,14.95,01/28/19 15:23,"55 Johnson St, New York City, NY 10001" +151356,AA Batteries (4-pack),4,3.84,01/06/19 12:00,"555 Ridge St, Portland, OR 97035" +151357,27in 4K Gaming Monitor,1,389.99,01/20/19 22:05,"533 Lincoln St, San Francisco, CA 94016" +151358,AAA Batteries (4-pack),1,2.99,01/05/19 13:47,"236 Hickory St, Dallas, TX 75001" +151359,ThinkPad Laptop,1,999.99,01/26/19 12:34,"750 Hill St, Los Angeles, CA 90001" +151360,USB-C Charging Cable,1,11.95,01/01/19 13:55,"487 Cherry St, Austin, TX 73301" +151361,AA Batteries (4-pack),1,3.84,01/23/19 08:28,"683 River St, New York City, NY 10001" +151362,Wired Headphones,1,11.99,01/03/19 00:01,"982 Church St, Los Angeles, CA 90001" +151363,Lightning Charging Cable,1,14.95,01/10/19 10:38,"244 13th St, Boston, MA 02215" +151364,AA Batteries (4-pack),6,3.84,01/21/19 12:03,"931 1st St, San Francisco, CA 94016" +151365,Flatscreen TV,1,300,01/01/19 19:08,"782 Meadow St, New York City, NY 10001" +151366,USB-C Charging Cable,1,11.95,01/17/19 13:57,"25 North St, Seattle, WA 98101" +151367,Google Phone,1,600,01/07/19 18:54,"836 8th St, San Francisco, CA 94016" +151368,27in FHD Monitor,1,149.99,01/13/19 16:59,"143 Washington St, Atlanta, GA 30301" +151369,34in Ultrawide Monitor,1,379.99,01/31/19 10:11,"218 Madison St, Dallas, TX 75001" +151370,AA Batteries (4-pack),1,3.84,01/26/19 21:55,"294 Adams St, Atlanta, GA 30301" +151371,Bose SoundSport Headphones,1,99.99,01/09/19 06:06,"108 Jackson St, San Francisco, CA 94016" +151372,AAA Batteries (4-pack),1,2.99,01/28/19 13:00,"967 Chestnut St, San Francisco, CA 94016" +151373,Bose SoundSport Headphones,1,99.99,01/20/19 13:33,"614 Spruce St, Los Angeles, CA 90001" +151373,Lightning Charging Cable,1,14.95,01/20/19 13:33,"614 Spruce St, Los Angeles, CA 90001" +151374,Flatscreen TV,1,300,01/15/19 14:05,"871 Dogwood St, Seattle, WA 98101" +151375,Vareebadd Phone,1,400,01/24/19 17:53,"949 13th St, San Francisco, CA 94016" +151376,AAA Batteries (4-pack),1,2.99,01/15/19 11:28,"369 11th St, Los Angeles, CA 90001" +151377,Lightning Charging Cable,1,14.95,01/08/19 19:41,"16 Jefferson St, Los Angeles, CA 90001" +151378,27in 4K Gaming Monitor,1,389.99,01/21/19 14:53,"13 Main St, Dallas, TX 75001" +151379,Flatscreen TV,1,300,01/20/19 17:05,"89 West St, Los Angeles, CA 90001" +151380,AA Batteries (4-pack),2,3.84,01/20/19 11:23,"490 Cedar St, Boston, MA 02215" +151381,AA Batteries (4-pack),1,3.84,01/06/19 18:32,"298 Washington St, Seattle, WA 98101" +151382,20in Monitor,1,109.99,01/22/19 08:08,"707 Elm St, San Francisco, CA 94016" +151383,AA Batteries (4-pack),2,3.84,01/04/19 18:38,"715 Highland St, Seattle, WA 98101" +151384,USB-C Charging Cable,1,11.95,01/10/19 06:47,"370 Adams St, New York City, NY 10001" +151385,AAA Batteries (4-pack),1,2.99,01/03/19 15:32,"614 West St, Los Angeles, CA 90001" +151386,27in FHD Monitor,1,149.99,01/12/19 07:24,"816 Walnut St, Los Angeles, CA 90001" +151387,iPhone,1,700,01/06/19 21:20,"933 Ridge St, Los Angeles, CA 90001" +151387,Lightning Charging Cable,1,14.95,01/06/19 21:20,"933 Ridge St, Los Angeles, CA 90001" +151388,27in FHD Monitor,1,149.99,01/19/19 22:04,"825 Elm St, Boston, MA 02215" +151389,Bose SoundSport Headphones,1,99.99,01/06/19 12:24,"174 13th St, San Francisco, CA 94016" +151390,34in Ultrawide Monitor,1,379.99,01/09/19 14:33,"113 Madison St, Los Angeles, CA 90001" +151391,AAA Batteries (4-pack),1,2.99,01/15/19 20:21,"799 7th St, Atlanta, GA 30301" +151392,iPhone,1,700,01/03/19 12:37,"351 Sunset St, Boston, MA 02215" +151393,Wired Headphones,1,11.99,01/25/19 07:55,"774 Hickory St, New York City, NY 10001" +151394,Lightning Charging Cable,1,14.95,01/05/19 16:26,"884 Ridge St, San Francisco, CA 94016" +151395,AAA Batteries (4-pack),5,2.99,01/27/19 02:11,"638 13th St, Los Angeles, CA 90001" +151396,27in FHD Monitor,1,149.99,01/27/19 21:42,"121 North St, Austin, TX 73301" +151397,Apple Airpods Headphones,1,150,01/22/19 09:11,"394 7th St, Boston, MA 02215" +151398,Apple Airpods Headphones,1,150,01/15/19 20:09,"436 Hickory St, Austin, TX 73301" +151399,Apple Airpods Headphones,1,150,01/21/19 16:23,"807 Sunset St, Los Angeles, CA 90001" +151400,USB-C Charging Cable,1,11.95,01/19/19 19:14,"663 Hickory St, San Francisco, CA 94016" +151401,27in 4K Gaming Monitor,1,389.99,01/24/19 06:50,"702 Lakeview St, Los Angeles, CA 90001" +151402,USB-C Charging Cable,1,11.95,01/05/19 15:03,"272 Highland St, New York City, NY 10001" +151402,27in 4K Gaming Monitor,1,389.99,01/05/19 15:03,"272 Highland St, New York City, NY 10001" +151403,Lightning Charging Cable,1,14.95,01/31/19 23:29,"863 Forest St, San Francisco, CA 94016" +151404,AA Batteries (4-pack),1,3.84,01/21/19 09:16,"486 Lincoln St, Seattle, WA 98101" +151405,Wired Headphones,1,11.99,01/29/19 08:13,"809 Highland St, Boston, MA 02215" +151406,ThinkPad Laptop,1,999.99,01/02/19 17:33,"473 Walnut St, Austin, TX 73301" +151407,AA Batteries (4-pack),1,3.84,01/23/19 13:40,"804 Maple St, San Francisco, CA 94016" +151408,Lightning Charging Cable,1,14.95,01/26/19 21:57,"165 Pine St, San Francisco, CA 94016" +151409,34in Ultrawide Monitor,1,379.99,01/30/19 17:11,"246 Lake St, San Francisco, CA 94016" +151410,ThinkPad Laptop,1,999.99,01/31/19 01:20,"906 Cedar St, Boston, MA 02215" +151411,AA Batteries (4-pack),1,3.84,01/25/19 22:58,"956 12th St, New York City, NY 10001" +151412,USB-C Charging Cable,1,11.95,01/25/19 00:36,"8 Johnson St, Dallas, TX 75001" +151413,Wired Headphones,1,11.99,01/12/19 17:36,"406 Elm St, Los Angeles, CA 90001" +151414,AA Batteries (4-pack),1,3.84,01/08/19 23:38,"134 14th St, Portland, ME 04101" +151415,Lightning Charging Cable,1,14.95,01/25/19 19:31,"456 9th St, New York City, NY 10001" +151416,Google Phone,1,600,01/25/19 17:25,"98 River St, San Francisco, CA 94016" +151417,Bose SoundSport Headphones,1,99.99,01/25/19 22:22,"612 South St, New York City, NY 10001" +151418,USB-C Charging Cable,1,11.95,01/14/19 11:34,"165 Adams St, Atlanta, GA 30301" +151419,AAA Batteries (4-pack),1,2.99,01/12/19 08:10,"923 Lakeview St, San Francisco, CA 94016" +151420,USB-C Charging Cable,1,11.95,01/14/19 14:23,"960 Spruce St, Dallas, TX 75001" +151421,Google Phone,1,600,01/21/19 11:11,"972 Lincoln St, Los Angeles, CA 90001" +151421,USB-C Charging Cable,1,11.95,01/21/19 11:11,"972 Lincoln St, Los Angeles, CA 90001" +151422,Vareebadd Phone,1,400,01/03/19 22:08,"218 Highland St, Austin, TX 73301" +151423,AA Batteries (4-pack),1,3.84,01/18/19 08:36,"497 Lake St, Portland, ME 04101" +151424,AAA Batteries (4-pack),3,2.99,01/24/19 20:56,"55 Lincoln St, New York City, NY 10001" +151425,Wired Headphones,1,11.99,01/30/19 23:03,"451 Willow St, Seattle, WA 98101" +151426,Vareebadd Phone,1,400,01/18/19 18:53,"972 Elm St, Boston, MA 02215" +151427,Vareebadd Phone,1,400,01/07/19 20:55,"488 14th St, Portland, ME 04101" +151428,AA Batteries (4-pack),1,3.84,01/30/19 12:36,"426 Sunset St, New York City, NY 10001" +151429,Lightning Charging Cable,1,14.95,01/14/19 17:02,"741 Jefferson St, Boston, MA 02215" +151430,iPhone,1,700,01/17/19 13:16,"421 Chestnut St, San Francisco, CA 94016" +151431,Lightning Charging Cable,1,14.95,01/12/19 08:39,"299 Lincoln St, San Francisco, CA 94016" +151432,USB-C Charging Cable,1,11.95,01/06/19 21:01,"592 Jackson St, New York City, NY 10001" +151433,27in 4K Gaming Monitor,1,389.99,01/06/19 09:06,"312 Lake St, Los Angeles, CA 90001" +151434,AA Batteries (4-pack),2,3.84,01/03/19 16:37,"598 11th St, Boston, MA 02215" +151435,Lightning Charging Cable,2,14.95,01/18/19 10:41,"155 Church St, Atlanta, GA 30301" +151436,AA Batteries (4-pack),1,3.84,01/10/19 16:48,"945 Willow St, New York City, NY 10001" +151437,Lightning Charging Cable,1,14.95,01/15/19 14:59,"699 Lincoln St, New York City, NY 10001" +151438,27in FHD Monitor,1,149.99,01/26/19 12:33,"855 Lake St, Dallas, TX 75001" +151439,ThinkPad Laptop,1,999.99,01/06/19 21:47,"120 Wilson St, Dallas, TX 75001" +151440,Apple Airpods Headphones,1,150,01/03/19 12:18,"951 Church St, Los Angeles, CA 90001" +151441,Apple Airpods Headphones,1,150,01/17/19 11:24,"702 5th St, Dallas, TX 75001" +151442,Apple Airpods Headphones,1,150,01/09/19 16:46,"114 10th St, Portland, OR 97035" +151443,USB-C Charging Cable,1,11.95,01/15/19 22:03,"104 2nd St, Austin, TX 73301" +151444,AA Batteries (4-pack),1,3.84,01/25/19 05:01,"548 Cherry St, New York City, NY 10001" +151444,27in 4K Gaming Monitor,1,389.99,01/25/19 05:01,"548 Cherry St, New York City, NY 10001" +151445,AA Batteries (4-pack),2,3.84,01/13/19 01:42,"268 Johnson St, Seattle, WA 98101" +151446,Apple Airpods Headphones,1,150,01/14/19 22:37,"584 Highland St, San Francisco, CA 94016" +151447,Wired Headphones,1,11.99,01/16/19 18:07,"422 Highland St, San Francisco, CA 94016" +151448,27in 4K Gaming Monitor,1,389.99,01/05/19 15:03,"144 Lake St, San Francisco, CA 94016" +151449,AAA Batteries (4-pack),1,2.99,01/14/19 16:13,"307 Dogwood St, Boston, MA 02215" +151450,Bose SoundSport Headphones,1,99.99,01/31/19 10:40,"278 Hill St, Los Angeles, CA 90001" +151451,USB-C Charging Cable,1,11.95,01/21/19 16:16,"944 4th St, Austin, TX 73301" +151452,Apple Airpods Headphones,1,150,01/02/19 09:32,"195 Park St, Austin, TX 73301" +151453,Bose SoundSport Headphones,1,99.99,01/20/19 11:45,"624 Forest St, San Francisco, CA 94016" +151454,AAA Batteries (4-pack),2,2.99,01/10/19 13:55,"872 Jackson St, Boston, MA 02215" +151455,USB-C Charging Cable,1,11.95,01/03/19 23:14,"44 Cherry St, Austin, TX 73301" +151456,AAA Batteries (4-pack),2,2.99,01/06/19 20:02,"58 Willow St, Atlanta, GA 30301" +151457,AAA Batteries (4-pack),2,2.99,01/14/19 10:06,"735 Highland St, San Francisco, CA 94016" +151458,Apple Airpods Headphones,1,150,01/08/19 22:06,"754 Washington St, Portland, OR 97035" +151459,Macbook Pro Laptop,1,1700,01/29/19 15:39,"257 Maple St, Los Angeles, CA 90001" +151460,27in FHD Monitor,1,149.99,01/03/19 13:43,"790 Elm St, Portland, OR 97035" +151460,USB-C Charging Cable,1,11.95,01/03/19 13:43,"790 Elm St, Portland, OR 97035" +151461,Macbook Pro Laptop,1,1700,01/25/19 21:24,"976 13th St, Seattle, WA 98101" +151462,Wired Headphones,1,11.99,01/07/19 21:24,"452 Cedar St, San Francisco, CA 94016" +151463,Apple Airpods Headphones,1,150,01/02/19 15:01,"253 Lake St, Seattle, WA 98101" +151464,27in 4K Gaming Monitor,1,389.99,01/08/19 16:40,"526 9th St, Dallas, TX 75001" +151465,Apple Airpods Headphones,1,150,01/09/19 10:43,"911 Maple St, Los Angeles, CA 90001" +151466,USB-C Charging Cable,1,11.95,01/29/19 19:06,"114 Center St, Boston, MA 02215" +151467,27in 4K Gaming Monitor,1,389.99,01/10/19 10:42,"952 Cedar St, Boston, MA 02215" +151468,34in Ultrawide Monitor,1,379.99,01/22/19 14:59,"837 2nd St, Portland, ME 04101" +151469,AAA Batteries (4-pack),3,2.99,01/13/19 14:28,"227 14th St, San Francisco, CA 94016" +151470,Wired Headphones,1,11.99,01/30/19 15:10,"721 7th St, Atlanta, GA 30301" +151471,34in Ultrawide Monitor,1,379.99,01/08/19 20:15,"260 Dogwood St, Boston, MA 02215" +151472,USB-C Charging Cable,1,11.95,01/18/19 23:20,"86 Johnson St, Boston, MA 02215" +151473,USB-C Charging Cable,1,11.95,01/18/19 08:13,"565 Center St, Seattle, WA 98101" +151474,USB-C Charging Cable,1,11.95,01/09/19 20:15,"853 South St, Boston, MA 02215" +151475,Wired Headphones,1,11.99,01/25/19 12:00,"600 River St, Boston, MA 02215" +151476,27in FHD Monitor,1,149.99,01/20/19 22:23,"850 14th St, Dallas, TX 75001" +151477,Apple Airpods Headphones,1,150,01/12/19 11:33,"106 Jefferson St, Boston, MA 02215" +151478,ThinkPad Laptop,1,999.99,01/16/19 14:47,"918 Forest St, Dallas, TX 75001" +151479,Lightning Charging Cable,2,14.95,01/08/19 19:57,"19 Wilson St, San Francisco, CA 94016" +151480,Flatscreen TV,1,300,01/11/19 11:13,"799 Lake St, Los Angeles, CA 90001" +151481,USB-C Charging Cable,1,11.95,01/13/19 04:11,"259 North St, New York City, NY 10001" +151482,Flatscreen TV,1,300,01/19/19 00:04,"946 Willow St, Atlanta, GA 30301" +151483,Wired Headphones,1,11.99,01/21/19 23:47,"264 Adams St, Dallas, TX 75001" +151484,Lightning Charging Cable,1,14.95,01/20/19 06:39,"776 12th St, New York City, NY 10001" +151485,AA Batteries (4-pack),1,3.84,01/31/19 12:26,"305 Jackson St, San Francisco, CA 94016" +151486,ThinkPad Laptop,1,999.99,01/14/19 15:16,"575 Walnut St, Portland, OR 97035" +151487,AAA Batteries (4-pack),1,2.99,01/10/19 17:49,"259 1st St, Atlanta, GA 30301" +151488,Bose SoundSport Headphones,1,99.99,01/27/19 15:11,"622 4th St, Boston, MA 02215" +151489,USB-C Charging Cable,1,11.95,01/06/19 16:24,"210 7th St, San Francisco, CA 94016" +151490,AAA Batteries (4-pack),1,2.99,01/05/19 16:45,"801 Forest St, Seattle, WA 98101" +151491,Wired Headphones,1,11.99,01/14/19 17:43,"251 Wilson St, San Francisco, CA 94016" +151492,Bose SoundSport Headphones,1,99.99,01/12/19 13:46,"944 1st St, Seattle, WA 98101" +151493,USB-C Charging Cable,1,11.95,01/18/19 16:46,"465 Walnut St, Austin, TX 73301" +151494,AA Batteries (4-pack),1,3.84,01/04/19 19:32,"642 5th St, San Francisco, CA 94016" +151495,USB-C Charging Cable,1,11.95,01/01/19 12:21,"70 Spruce St, New York City, NY 10001" +151496,USB-C Charging Cable,2,11.95,01/12/19 14:04,"32 Cedar St, San Francisco, CA 94016" +151497,Bose SoundSport Headphones,1,99.99,01/09/19 08:18,"318 North St, Los Angeles, CA 90001" +151498,ThinkPad Laptop,1,999.99,01/10/19 16:30,"540 Forest St, San Francisco, CA 94016" +151499,27in 4K Gaming Monitor,1,389.99,01/12/19 10:50,"787 Sunset St, San Francisco, CA 94016" +151500,27in FHD Monitor,1,149.99,01/14/19 20:14,"921 North St, Los Angeles, CA 90001" +151501,AAA Batteries (4-pack),1,2.99,01/30/19 16:12,"111 2nd St, Austin, TX 73301" +151502,Apple Airpods Headphones,1,150,01/01/19 23:07,"642 Johnson St, Austin, TX 73301" +151503,iPhone,1,700,01/29/19 03:56,"636 North St, Atlanta, GA 30301" +151504,Wired Headphones,1,11.99,01/08/19 09:21,"241 West St, Los Angeles, CA 90001" +151505,34in Ultrawide Monitor,1,379.99,01/18/19 06:40,"323 Adams St, Los Angeles, CA 90001" +151506,Google Phone,1,600,01/16/19 15:21,"291 Willow St, New York City, NY 10001" +151507,Bose SoundSport Headphones,1,99.99,01/28/19 20:35,"606 Madison St, Austin, TX 73301" +151508,AAA Batteries (4-pack),1,2.99,01/30/19 14:11,"539 Hickory St, Seattle, WA 98101" +151509,Google Phone,1,600,01/24/19 07:49,"427 11th St, New York City, NY 10001" +151510,LG Dryer,1,600.0,01/05/19 12:31,"878 Hill St, San Francisco, CA 94016" +151511,AA Batteries (4-pack),1,3.84,01/11/19 21:34,"120 Meadow St, Seattle, WA 98101" +151512,ThinkPad Laptop,1,999.99,01/31/19 15:55,"286 8th St, Austin, TX 73301" +151513,Google Phone,1,600,01/10/19 04:39,"200 Elm St, Boston, MA 02215" +151514,USB-C Charging Cable,1,11.95,01/18/19 17:01,"229 Chestnut St, Atlanta, GA 30301" +151515,20in Monitor,1,109.99,01/28/19 17:56,"645 5th St, San Francisco, CA 94016" +151516,AAA Batteries (4-pack),1,2.99,01/07/19 21:20,"548 9th St, New York City, NY 10001" +151517,20in Monitor,1,109.99,01/10/19 07:25,"157 Center St, Los Angeles, CA 90001" +151518,Wired Headphones,1,11.99,01/05/19 16:29,"362 4th St, Seattle, WA 98101" +151519,AAA Batteries (4-pack),1,2.99,01/27/19 17:02,"545 12th St, New York City, NY 10001" +151520,AA Batteries (4-pack),1,3.84,01/29/19 09:45,"99 12th St, Boston, MA 02215" +151521,Lightning Charging Cable,1,14.95,01/16/19 20:20,"15 Madison St, Los Angeles, CA 90001" +151522,Wired Headphones,1,11.99,01/22/19 22:56,"210 Madison St, Boston, MA 02215" +151523,AAA Batteries (4-pack),2,2.99,01/15/19 11:21,"468 Chestnut St, Boston, MA 02215" +151524,Apple Airpods Headphones,1,150,01/09/19 16:40,"13 5th St, Atlanta, GA 30301" +151525,USB-C Charging Cable,1,11.95,01/01/19 17:37,"724 Maple St, San Francisco, CA 94016" +151526,USB-C Charging Cable,1,11.95,01/12/19 20:28,"509 12th St, Dallas, TX 75001" +151527,AA Batteries (4-pack),1,3.84,01/27/19 23:33,"883 Ridge St, Boston, MA 02215" +151528,USB-C Charging Cable,1,11.95,01/04/19 19:00,"236 1st St, San Francisco, CA 94016" +151529,20in Monitor,1,109.99,01/25/19 10:04,"200 Maple St, Austin, TX 73301" +151530,Macbook Pro Laptop,1,1700,01/03/19 16:46,"122 Walnut St, San Francisco, CA 94016" +151531,Apple Airpods Headphones,1,150,01/08/19 06:58,"963 7th St, Los Angeles, CA 90001" +151532,AA Batteries (4-pack),1,3.84,01/16/19 15:44,"142 North St, New York City, NY 10001" +151533,34in Ultrawide Monitor,1,379.99,01/29/19 17:02,"849 Lakeview St, San Francisco, CA 94016" +151534,Lightning Charging Cable,2,14.95,01/05/19 11:50,"46 Lakeview St, San Francisco, CA 94016" +151535,Lightning Charging Cable,1,14.95,01/06/19 18:54,"701 4th St, Portland, OR 97035" +151536,Lightning Charging Cable,1,14.95,01/25/19 10:50,"678 Main St, Los Angeles, CA 90001" +151537,Bose SoundSport Headphones,1,99.99,01/28/19 17:59,"730 Sunset St, Austin, TX 73301" +151538,34in Ultrawide Monitor,1,379.99,01/19/19 17:06,"964 Maple St, San Francisco, CA 94016" +151539,Flatscreen TV,1,300,01/04/19 18:43,"619 10th St, Dallas, TX 75001" +151540,AAA Batteries (4-pack),1,2.99,01/20/19 15:26,"65 12th St, San Francisco, CA 94016" +151541,Bose SoundSport Headphones,1,99.99,01/08/19 12:01,"578 Wilson St, Los Angeles, CA 90001" +151542,AAA Batteries (4-pack),1,2.99,01/21/19 14:12,"176 8th St, Los Angeles, CA 90001" +151543,Google Phone,1,600,01/17/19 01:55,"68 9th St, New York City, NY 10001" +151544,AA Batteries (4-pack),1,3.84,01/12/19 17:20,"291 North St, Portland, OR 97035" +151545,AAA Batteries (4-pack),1,2.99,01/06/19 22:00,"394 1st St, Dallas, TX 75001" +151546,Wired Headphones,1,11.99,01/08/19 14:36,"956 Lake St, Atlanta, GA 30301" +151547,Wired Headphones,2,11.99,01/04/19 09:32,"306 8th St, Los Angeles, CA 90001" +151548,AAA Batteries (4-pack),1,2.99,01/06/19 10:52,"622 Cherry St, San Francisco, CA 94016" +151549,Wired Headphones,1,11.99,01/22/19 01:26,"422 Hill St, Austin, TX 73301" +151550,Apple Airpods Headphones,1,150,01/22/19 18:20,"886 Hickory St, San Francisco, CA 94016" +151551,Wired Headphones,1,11.99,01/16/19 23:14,"799 Center St, San Francisco, CA 94016" +151552,Vareebadd Phone,1,400,01/09/19 18:50,"620 Main St, San Francisco, CA 94016" +151553,Bose SoundSport Headphones,1,99.99,01/22/19 07:12,"797 Johnson St, New York City, NY 10001" +151554,27in FHD Monitor,1,149.99,01/09/19 17:20,"522 5th St, New York City, NY 10001" +151555,34in Ultrawide Monitor,1,379.99,01/05/19 19:09,"102 Sunset St, San Francisco, CA 94016" +151556,Lightning Charging Cable,1,14.95,01/24/19 19:19,"721 9th St, San Francisco, CA 94016" +151557,20in Monitor,1,109.99,01/19/19 21:36,"439 14th St, San Francisco, CA 94016" +151558,USB-C Charging Cable,1,11.95,01/22/19 21:16,"261 13th St, San Francisco, CA 94016" +151559,Apple Airpods Headphones,1,150,01/01/19 13:16,"563 Jackson St, San Francisco, CA 94016" +151560,AA Batteries (4-pack),2,3.84,01/04/19 11:37,"285 Maple St, Los Angeles, CA 90001" +151561,AA Batteries (4-pack),2,3.84,01/28/19 09:24,"636 Wilson St, San Francisco, CA 94016" +151562,27in FHD Monitor,1,149.99,01/23/19 11:34,"606 Park St, Boston, MA 02215" +151563,AAA Batteries (4-pack),1,2.99,01/16/19 13:27,"896 Lincoln St, Dallas, TX 75001" +151564,20in Monitor,1,109.99,01/19/19 14:44,"883 South St, New York City, NY 10001" +151565,27in 4K Gaming Monitor,1,389.99,01/23/19 21:53,"911 Washington St, Atlanta, GA 30301" +151566,Wired Headphones,1,11.99,01/28/19 18:38,"263 9th St, New York City, NY 10001" +151567,27in 4K Gaming Monitor,1,389.99,01/19/19 18:59,"647 Lakeview St, Seattle, WA 98101" +151568,Lightning Charging Cable,1,14.95,01/03/19 18:23,"484 8th St, Dallas, TX 75001" +151569,AA Batteries (4-pack),1,3.84,01/27/19 00:30,"244 7th St, Atlanta, GA 30301" +151570,Lightning Charging Cable,2,14.95,01/18/19 13:20,"251 Lincoln St, Atlanta, GA 30301" +151571,Apple Airpods Headphones,1,150,01/28/19 11:49,"478 6th St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +151572,USB-C Charging Cable,1,11.95,01/05/19 20:28,"311 Willow St, Portland, OR 97035" +151573,Bose SoundSport Headphones,1,99.99,01/26/19 11:33,"890 5th St, Austin, TX 73301" +151574,AAA Batteries (4-pack),1,2.99,01/31/19 20:33,"350 6th St, Seattle, WA 98101" +151575,AA Batteries (4-pack),1,3.84,01/05/19 12:19,"128 6th St, San Francisco, CA 94016" +151576,Macbook Pro Laptop,1,1700,01/17/19 06:45,"277 Adams St, Atlanta, GA 30301" +151577,AA Batteries (4-pack),1,3.84,01/22/19 19:01,"872 Hickory St, Boston, MA 02215" +151578,Bose SoundSport Headphones,1,99.99,01/10/19 02:55,"441 Wilson St, New York City, NY 10001" +151579,Bose SoundSport Headphones,1,99.99,01/31/19 15:39,"352 10th St, Los Angeles, CA 90001" +151580,AA Batteries (4-pack),1,3.84,01/17/19 18:58,"910 10th St, Los Angeles, CA 90001" +151581,LG Washing Machine,1,600.0,01/31/19 06:01,"894 Sunset St, Seattle, WA 98101" +151582,AAA Batteries (4-pack),1,2.99,01/08/19 18:11,"700 Elm St, Boston, MA 02215" +151583,Lightning Charging Cable,1,14.95,01/04/19 10:44,"563 Center St, Portland, ME 04101" +151584,AAA Batteries (4-pack),1,2.99,01/03/19 17:06,"655 Willow St, Portland, OR 97035" +151585,Lightning Charging Cable,1,14.95,01/12/19 20:03,"230 Wilson St, Los Angeles, CA 90001" +151586,34in Ultrawide Monitor,1,379.99,01/01/19 15:29,"90 12th St, Austin, TX 73301" +151587,Bose SoundSport Headphones,1,99.99,01/17/19 21:21,"532 Forest St, Portland, OR 97035" +151588,iPhone,1,700,01/04/19 11:28,"971 11th St, New York City, NY 10001" +151589,ThinkPad Laptop,1,999.99,01/29/19 16:15,"940 Johnson St, Atlanta, GA 30301" +151590,USB-C Charging Cable,1,11.95,01/09/19 15:55,"620 Jefferson St, New York City, NY 10001" +151591,Apple Airpods Headphones,1,150,01/15/19 10:48,"578 Johnson St, Los Angeles, CA 90001" +151592,USB-C Charging Cable,1,11.95,01/31/19 13:37,"648 Dogwood St, San Francisco, CA 94016" +151593,AAA Batteries (4-pack),1,2.99,01/20/19 13:02,"227 Adams St, New York City, NY 10001" +151594,AA Batteries (4-pack),1,3.84,01/06/19 19:53,"951 West St, San Francisco, CA 94016" +151595,AA Batteries (4-pack),1,3.84,01/18/19 10:41,"943 Highland St, Dallas, TX 75001" +151596,34in Ultrawide Monitor,1,379.99,01/30/19 13:34,"386 5th St, Boston, MA 02215" +151597,Google Phone,1,600,01/17/19 12:45,"15 Pine St, Los Angeles, CA 90001" +151597,USB-C Charging Cable,1,11.95,01/17/19 12:45,"15 Pine St, Los Angeles, CA 90001" +151598,AA Batteries (4-pack),2,3.84,01/15/19 10:52,"141 Wilson St, Boston, MA 02215" +151599,Lightning Charging Cable,1,14.95,01/03/19 11:09,"76 Washington St, Los Angeles, CA 90001" +151600,USB-C Charging Cable,1,11.95,01/27/19 22:39,"276 Highland St, Los Angeles, CA 90001" +151601,Wired Headphones,1,11.99,01/16/19 16:51,"157 Dogwood St, San Francisco, CA 94016" +151602,Bose SoundSport Headphones,1,99.99,01/18/19 17:25,"410 Meadow St, New York City, NY 10001" +151602,34in Ultrawide Monitor,1,379.99,01/18/19 17:25,"410 Meadow St, New York City, NY 10001" +151603,Bose SoundSport Headphones,1,99.99,01/16/19 11:38,"58 Ridge St, Boston, MA 02215" +151604,Bose SoundSport Headphones,1,99.99,01/30/19 16:30,"209 Madison St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +151605,Flatscreen TV,1,300,01/01/19 19:24,"349 2nd St, Atlanta, GA 30301" +151606,20in Monitor,1,109.99,01/16/19 09:37,"305 Maple St, Atlanta, GA 30301" +151607,Apple Airpods Headphones,1,150,01/07/19 02:36,"705 Hickory St, Boston, MA 02215" +151608,Lightning Charging Cable,1,14.95,01/04/19 08:56,"581 Hickory St, Seattle, WA 98101" +151609,Flatscreen TV,1,300,01/06/19 21:58,"947 13th St, New York City, NY 10001" +151610,Lightning Charging Cable,1,14.95,01/24/19 06:14,"531 Wilson St, San Francisco, CA 94016" +151611,Flatscreen TV,1,300,01/14/19 23:50,"589 Lake St, Portland, OR 97035" +151612,Flatscreen TV,1,300,01/09/19 22:09,"786 4th St, Los Angeles, CA 90001" +151613,Bose SoundSport Headphones,1,99.99,01/21/19 16:22,"311 Ridge St, San Francisco, CA 94016" +151614,iPhone,1,700,01/27/19 15:33,"867 11th St, Atlanta, GA 30301" +151615,AA Batteries (4-pack),2,3.84,01/01/19 16:07,"528 12th St, San Francisco, CA 94016" +151616,Bose SoundSport Headphones,1,99.99,01/29/19 16:29,"619 14th St, San Francisco, CA 94016" +151617,34in Ultrawide Monitor,1,379.99,01/22/19 20:11,"363 Walnut St, Los Angeles, CA 90001" +151618,34in Ultrawide Monitor,1,379.99,01/13/19 08:38,"252 12th St, New York City, NY 10001" +151619,AAA Batteries (4-pack),1,2.99,01/29/19 19:47,"847 Lakeview St, Portland, ME 04101" +151620,USB-C Charging Cable,1,11.95,01/01/19 11:28,"695 Hickory St, San Francisco, CA 94016" +151621,Apple Airpods Headphones,1,150,01/31/19 10:03,"128 Johnson St, New York City, NY 10001" +151622,Apple Airpods Headphones,2,150,01/02/19 17:12,"377 Johnson St, Seattle, WA 98101" +151623,USB-C Charging Cable,1,11.95,01/07/19 21:22,"861 Lincoln St, Los Angeles, CA 90001" +151624,Bose SoundSport Headphones,1,99.99,01/20/19 14:44,"488 Highland St, Austin, TX 73301" +151625,Apple Airpods Headphones,1,150,01/07/19 14:56,"304 Main St, Atlanta, GA 30301" +151626,34in Ultrawide Monitor,1,379.99,01/03/19 19:20,"201 Maple St, Dallas, TX 75001" +151627,Apple Airpods Headphones,1,150,01/21/19 13:17,"419 Church St, Boston, MA 02215" +151627,20in Monitor,2,109.99,01/21/19 13:17,"419 Church St, Boston, MA 02215" +151628,Apple Airpods Headphones,1,150,01/06/19 21:26,"326 6th St, Atlanta, GA 30301" +151629,Wired Headphones,1,11.99,01/23/19 12:08,"88 West St, New York City, NY 10001" +151630,USB-C Charging Cable,1,11.95,01/24/19 21:41,"329 14th St, Boston, MA 02215" +151631,Wired Headphones,1,11.99,01/24/19 22:58,"225 Cherry St, Los Angeles, CA 90001" +151632,27in 4K Gaming Monitor,1,389.99,01/23/19 06:31,"78 Highland St, Seattle, WA 98101" +151632,Wired Headphones,1,11.99,01/23/19 06:31,"78 Highland St, Seattle, WA 98101" +151633,Apple Airpods Headphones,1,150,01/30/19 07:36,"43 Church St, Los Angeles, CA 90001" +151634,USB-C Charging Cable,1,11.95,01/08/19 12:44,"957 West St, Los Angeles, CA 90001" +151635,USB-C Charging Cable,1,11.95,01/04/19 18:31,"664 Main St, Dallas, TX 75001" +151636,20in Monitor,1,109.99,01/16/19 11:54,"888 West St, San Francisco, CA 94016" +151637,AA Batteries (4-pack),1,3.84,01/22/19 21:29,"300 Main St, Dallas, TX 75001" +151638,Wired Headphones,1,11.99,01/25/19 14:36,"35 South St, San Francisco, CA 94016" +151639,Wired Headphones,1,11.99,01/26/19 08:42,"299 North St, New York City, NY 10001" +151640,Wired Headphones,1,11.99,01/05/19 23:53,"605 Chestnut St, Boston, MA 02215" +151641,AAA Batteries (4-pack),4,2.99,01/14/19 08:01,"542 Lake St, Atlanta, GA 30301" +151642,Wired Headphones,1,11.99,01/23/19 01:05,"443 5th St, Dallas, TX 75001" +151643,Google Phone,1,600,01/12/19 15:32,"859 Dogwood St, San Francisco, CA 94016" +151644,Lightning Charging Cable,1,14.95,01/02/19 15:01,"734 Lakeview St, Boston, MA 02215" +151645,Apple Airpods Headphones,1,150,01/09/19 22:37,"824 Jefferson St, Los Angeles, CA 90001" +151646,Macbook Pro Laptop,1,1700,01/04/19 01:22,"126 7th St, New York City, NY 10001" +151647,USB-C Charging Cable,1,11.95,01/11/19 18:59,"926 River St, Dallas, TX 75001" +151648,AAA Batteries (4-pack),1,2.99,01/25/19 17:00,"473 Center St, San Francisco, CA 94016" +151648,Vareebadd Phone,1,400,01/25/19 17:00,"473 Center St, San Francisco, CA 94016" +151649,USB-C Charging Cable,1,11.95,01/02/19 23:51,"375 Lincoln St, New York City, NY 10001" +151650,AA Batteries (4-pack),1,3.84,01/09/19 21:18,"669 Wilson St, Los Angeles, CA 90001" +151651,AAA Batteries (4-pack),1,2.99,01/20/19 12:55,"12 Hickory St, Dallas, TX 75001" +151651,USB-C Charging Cable,1,11.95,01/20/19 12:55,"12 Hickory St, Dallas, TX 75001" +151652,27in FHD Monitor,1,149.99,01/25/19 17:35,"268 River St, San Francisco, CA 94016" +151653,Bose SoundSport Headphones,1,99.99,01/29/19 12:29,"904 Forest St, Los Angeles, CA 90001" +151654,34in Ultrawide Monitor,1,379.99,01/14/19 13:52,"722 7th St, San Francisco, CA 94016" +151655,ThinkPad Laptop,1,999.99,01/04/19 18:41,"781 South St, San Francisco, CA 94016" +151656,Lightning Charging Cable,1,14.95,01/29/19 11:46,"846 Johnson St, Boston, MA 02215" +151657,Wired Headphones,1,11.99,01/23/19 17:49,"93 Willow St, Boston, MA 02215" +151658,34in Ultrawide Monitor,1,379.99,01/17/19 19:48,"227 Sunset St, San Francisco, CA 94016" +151659,Wired Headphones,1,11.99,01/26/19 13:38,"39 2nd St, San Francisco, CA 94016" +151660,AAA Batteries (4-pack),1,2.99,01/01/19 11:01,"453 11th St, San Francisco, CA 94016" +151661,Flatscreen TV,1,300,01/15/19 16:04,"454 Church St, Boston, MA 02215" +151662,AA Batteries (4-pack),1,3.84,01/26/19 08:46,"470 Lake St, Los Angeles, CA 90001" +151663,Wired Headphones,1,11.99,01/27/19 11:18,"682 Washington St, Atlanta, GA 30301" +151664,Lightning Charging Cable,1,14.95,01/19/19 10:58,"671 South St, Boston, MA 02215" +151665,Flatscreen TV,1,300,01/31/19 12:33,"895 Ridge St, San Francisco, CA 94016" +151666,Apple Airpods Headphones,1,150,01/10/19 08:15,"205 Washington St, San Francisco, CA 94016" +151667,Wired Headphones,1,11.99,01/21/19 21:21,"93 Walnut St, Boston, MA 02215" +151668,Google Phone,1,600,01/30/19 16:03,"329 9th St, San Francisco, CA 94016" +151668,Wired Headphones,1,11.99,01/30/19 16:03,"329 9th St, San Francisco, CA 94016" +151669,Bose SoundSport Headphones,1,99.99,01/28/19 12:04,"235 12th St, Los Angeles, CA 90001" +151670,AA Batteries (4-pack),2,3.84,01/31/19 20:10,"717 Forest St, San Francisco, CA 94016" +151671,iPhone,1,700,01/21/19 01:22,"844 5th St, New York City, NY 10001" +151672,USB-C Charging Cable,1,11.95,01/22/19 18:45,"422 Center St, San Francisco, CA 94016" +151673,Bose SoundSport Headphones,1,99.99,01/01/19 09:54,"998 4th St, New York City, NY 10001" +151674,AA Batteries (4-pack),1,3.84,01/30/19 20:48,"165 Wilson St, New York City, NY 10001" +151675,USB-C Charging Cable,1,11.95,01/24/19 14:29,"4 Church St, San Francisco, CA 94016" +151676,Wired Headphones,1,11.99,01/13/19 11:15,"766 Lakeview St, Portland, OR 97035" +151677,Lightning Charging Cable,1,14.95,01/25/19 14:22,"374 Johnson St, San Francisco, CA 94016" +151677,USB-C Charging Cable,1,11.95,01/25/19 14:22,"374 Johnson St, San Francisco, CA 94016" +151678,AA Batteries (4-pack),1,3.84,01/15/19 23:47,"708 Hickory St, New York City, NY 10001" +151679,Lightning Charging Cable,1,14.95,01/11/19 01:32,"162 Johnson St, New York City, NY 10001" +151680,Wired Headphones,1,11.99,01/07/19 21:35,"592 Lakeview St, Boston, MA 02215" +151681,ThinkPad Laptop,1,999.99,01/22/19 20:46,"787 Sunset St, Los Angeles, CA 90001" +151682,Apple Airpods Headphones,1,150,01/23/19 20:07,"178 Cherry St, Atlanta, GA 30301" +151683,Bose SoundSport Headphones,1,99.99,01/06/19 18:02,"197 Ridge St, San Francisco, CA 94016" +151684,ThinkPad Laptop,1,999.99,01/24/19 18:01,"284 Jefferson St, New York City, NY 10001" +151685,Wired Headphones,1,11.99,01/19/19 22:23,"184 Spruce St, New York City, NY 10001" +151686,LG Dryer,1,600.0,01/30/19 13:52,"799 Lakeview St, Boston, MA 02215" +151687,ThinkPad Laptop,1,999.99,01/23/19 15:16,"151 11th St, Atlanta, GA 30301" +151688,34in Ultrawide Monitor,1,379.99,01/03/19 23:08,"747 Meadow St, Austin, TX 73301" +151689,Apple Airpods Headphones,1,150,01/19/19 03:27,"426 North St, Atlanta, GA 30301" +151690,AAA Batteries (4-pack),1,2.99,01/09/19 15:33,"889 Jefferson St, Atlanta, GA 30301" +151691,USB-C Charging Cable,2,11.95,01/13/19 20:16,"853 Washington St, Los Angeles, CA 90001" +151692,AAA Batteries (4-pack),1,2.99,01/20/19 12:09,"840 Hickory St, Austin, TX 73301" +151693,27in FHD Monitor,1,149.99,01/27/19 19:00,"810 Sunset St, Dallas, TX 75001" +151694,Wired Headphones,1,11.99,01/11/19 12:02,"905 Wilson St, Dallas, TX 75001" +151695,ThinkPad Laptop,1,999.99,01/03/19 05:46,"245 7th St, Dallas, TX 75001" +151696,Apple Airpods Headphones,1,150,01/02/19 22:02,"530 5th St, Dallas, TX 75001" +151697,Bose SoundSport Headphones,1,99.99,01/22/19 12:02,"696 Maple St, New York City, NY 10001" +151698,Flatscreen TV,1,300,01/06/19 16:55,"800 Ridge St, Los Angeles, CA 90001" +151699,Lightning Charging Cable,1,14.95,01/27/19 15:56,"6 7th St, San Francisco, CA 94016" +151700,Apple Airpods Headphones,1,150,01/16/19 17:52,"660 Willow St, New York City, NY 10001" +151701,AAA Batteries (4-pack),1,2.99,01/18/19 19:30,"901 West St, San Francisco, CA 94016" +151702,USB-C Charging Cable,1,11.95,01/23/19 19:52,"915 Chestnut St, Portland, ME 04101" +151703,Bose SoundSport Headphones,1,99.99,01/29/19 18:50,"893 Ridge St, Seattle, WA 98101" +151704,ThinkPad Laptop,1,999.99,01/02/19 11:26,"816 Meadow St, San Francisco, CA 94016" +151705,AA Batteries (4-pack),1,3.84,01/04/19 07:34,"227 Hickory St, San Francisco, CA 94016" +151706,27in FHD Monitor,1,149.99,01/18/19 07:52,"515 Forest St, San Francisco, CA 94016" +151707,USB-C Charging Cable,1,11.95,01/03/19 21:32,"429 14th St, Seattle, WA 98101" +151708,USB-C Charging Cable,1,11.95,01/17/19 12:37,"215 Main St, Portland, OR 97035" +151709,Lightning Charging Cable,1,14.95,01/17/19 10:27,"936 Johnson St, Austin, TX 73301" +151710,USB-C Charging Cable,1,11.95,01/31/19 18:30,"648 Madison St, Boston, MA 02215" +151711,Bose SoundSport Headphones,1,99.99,01/10/19 09:12,"21 Willow St, Boston, MA 02215" +151712,AAA Batteries (4-pack),7,2.99,01/12/19 23:14,"635 4th St, Dallas, TX 75001" +151713,Bose SoundSport Headphones,2,99.99,01/30/19 20:40,"219 Jackson St, Los Angeles, CA 90001" +151714,AAA Batteries (4-pack),5,2.99,01/16/19 12:31,"3 8th St, Boston, MA 02215" +151715,AAA Batteries (4-pack),1,2.99,01/06/19 19:44,"748 Main St, New York City, NY 10001" +151716,Lightning Charging Cable,1,14.95,01/10/19 10:36,"885 Cherry St, Dallas, TX 75001" +151717,AA Batteries (4-pack),1,3.84,01/04/19 15:15,"516 14th St, Los Angeles, CA 90001" +151718,34in Ultrawide Monitor,1,379.99,01/24/19 15:06,"253 Forest St, Dallas, TX 75001" +151719,USB-C Charging Cable,1,11.95,01/31/19 20:58,"472 Johnson St, Los Angeles, CA 90001" +151720,Vareebadd Phone,1,400,01/09/19 11:15,"568 Elm St, Portland, ME 04101" +151721,Wired Headphones,1,11.99,01/19/19 13:37,"140 Walnut St, Los Angeles, CA 90001" +151722,LG Washing Machine,1,600.0,01/30/19 15:30,"331 Wilson St, Boston, MA 02215" +151723,20in Monitor,1,109.99,01/10/19 22:25,"659 4th St, Boston, MA 02215" +151724,Apple Airpods Headphones,1,150,01/25/19 20:24,"985 1st St, San Francisco, CA 94016" +151725,Macbook Pro Laptop,1,1700,01/24/19 08:16,"602 Lake St, San Francisco, CA 94016" +151726,27in FHD Monitor,1,149.99,01/06/19 22:33,"910 Center St, Los Angeles, CA 90001" +151727,Apple Airpods Headphones,1,150,01/05/19 15:14,"601 6th St, New York City, NY 10001" +151728,iPhone,1,700,01/04/19 09:01,"825 Hill St, Dallas, TX 75001" +151728,Lightning Charging Cable,1,14.95,01/04/19 09:01,"825 Hill St, Dallas, TX 75001" +151729,Lightning Charging Cable,1,14.95,01/25/19 19:49,"166 Lakeview St, New York City, NY 10001" +151730,Lightning Charging Cable,1,14.95,01/23/19 23:19,"864 West St, San Francisco, CA 94016" +151731,iPhone,1,700,01/29/19 10:52,"208 Main St, Boston, MA 02215" +151732,Wired Headphones,1,11.99,01/01/19 19:00,"613 Cherry St, New York City, NY 10001" +151733,27in 4K Gaming Monitor,1,389.99,01/04/19 00:19,"392 South St, San Francisco, CA 94016" +151734,Apple Airpods Headphones,1,150,01/03/19 01:35,"94 Dogwood St, Los Angeles, CA 90001" +151735,USB-C Charging Cable,1,11.95,01/07/19 23:44,"15 Highland St, Boston, MA 02215" +151736,USB-C Charging Cable,1,11.95,01/04/19 13:09,"101 13th St, Atlanta, GA 30301" +151737,ThinkPad Laptop,1,999.99,01/22/19 15:20,"389 13th St, Los Angeles, CA 90001" +151738,USB-C Charging Cable,1,11.95,01/19/19 13:01,"884 Hickory St, Boston, MA 02215" +151739,27in 4K Gaming Monitor,1,389.99,01/18/19 08:48,"277 14th St, San Francisco, CA 94016" +151740,27in FHD Monitor,1,149.99,01/18/19 15:49,"482 Pine St, New York City, NY 10001" +151741,USB-C Charging Cable,1,11.95,01/13/19 08:28,"607 Wilson St, Atlanta, GA 30301" +151742,AAA Batteries (4-pack),1,2.99,01/17/19 00:10,"55 12th St, Boston, MA 02215" +151743,AA Batteries (4-pack),1,3.84,01/04/19 09:41,"231 8th St, San Francisco, CA 94016" +151744,Macbook Pro Laptop,1,1700,01/27/19 19:22,"36 Ridge St, Dallas, TX 75001" +151745,AAA Batteries (4-pack),1,2.99,01/13/19 18:13,"985 North St, Seattle, WA 98101" +151746,Apple Airpods Headphones,1,150,01/22/19 09:19,"110 Elm St, Atlanta, GA 30301" +151747,AA Batteries (4-pack),3,3.84,01/07/19 20:55,"920 11th St, Dallas, TX 75001" +151747,Bose SoundSport Headphones,1,99.99,01/07/19 20:55,"920 11th St, Dallas, TX 75001" +151748,Bose SoundSport Headphones,1,99.99,01/10/19 09:54,"589 9th St, San Francisco, CA 94016" +151749,AAA Batteries (4-pack),1,2.99,01/31/19 09:00,"49 River St, New York City, NY 10001" +151750,Google Phone,1,600,01/22/19 14:31,"280 Pine St, New York City, NY 10001" +151751,AAA Batteries (4-pack),1,2.99,01/17/19 12:03,"549 Meadow St, Seattle, WA 98101" +151752,AA Batteries (4-pack),1,3.84,01/10/19 16:58,"480 River St, San Francisco, CA 94016" +151753,Flatscreen TV,1,300,01/01/19 16:43,"82 Main St, Los Angeles, CA 90001" +151754,Lightning Charging Cable,1,14.95,01/13/19 20:32,"274 Dogwood St, Los Angeles, CA 90001" +151755,AAA Batteries (4-pack),1,2.99,01/19/19 13:19,"118 Church St, San Francisco, CA 94016" +151756,34in Ultrawide Monitor,1,379.99,01/15/19 14:50,"846 Chestnut St, San Francisco, CA 94016" +151757,Apple Airpods Headphones,1,150,01/02/19 06:41,"7 Maple St, San Francisco, CA 94016" +151758,USB-C Charging Cable,1,11.95,01/15/19 08:54,"510 Park St, San Francisco, CA 94016" +151759,AAA Batteries (4-pack),1,2.99,01/08/19 21:24,"559 Wilson St, Portland, OR 97035" +151760,Wired Headphones,2,11.99,01/04/19 14:17,"56 Meadow St, Dallas, TX 75001" +151761,AAA Batteries (4-pack),1,2.99,01/11/19 14:32,"179 Lincoln St, Boston, MA 02215" +151762,Bose SoundSport Headphones,1,99.99,01/28/19 17:07,"837 Wilson St, Seattle, WA 98101" +151763,Apple Airpods Headphones,1,150,01/02/19 22:34,"284 Maple St, Seattle, WA 98101" +151764,AAA Batteries (4-pack),1,2.99,01/31/19 07:32,"836 5th St, San Francisco, CA 94016" +151765,AAA Batteries (4-pack),3,2.99,01/28/19 15:57,"891 North St, San Francisco, CA 94016" +151766,Flatscreen TV,1,300,01/21/19 20:43,"428 10th St, Los Angeles, CA 90001" +151767,AA Batteries (4-pack),1,3.84,01/22/19 17:32,"24 1st St, Seattle, WA 98101" +151768,Apple Airpods Headphones,1,150,01/29/19 21:53,"133 Pine St, San Francisco, CA 94016" +151769,Apple Airpods Headphones,1,150,01/27/19 14:08,"628 Cherry St, San Francisco, CA 94016" +151770,Wired Headphones,1,11.99,01/31/19 09:39,"388 10th St, San Francisco, CA 94016" +151771,Lightning Charging Cable,2,14.95,01/20/19 21:17,"352 Center St, Los Angeles, CA 90001" +151772,27in FHD Monitor,1,149.99,01/11/19 18:21,"750 Park St, San Francisco, CA 94016" +151773,USB-C Charging Cable,1,11.95,01/29/19 21:15,"685 Sunset St, Los Angeles, CA 90001" +151774,Lightning Charging Cable,1,14.95,01/12/19 19:41,"235 Wilson St, Dallas, TX 75001" +151775,Lightning Charging Cable,1,14.95,01/06/19 10:06,"221 Lake St, Atlanta, GA 30301" +151776,Lightning Charging Cable,1,14.95,01/17/19 15:57,"957 Hill St, Boston, MA 02215" +151777,AAA Batteries (4-pack),3,2.99,01/07/19 18:11,"825 2nd St, San Francisco, CA 94016" +151778,Apple Airpods Headphones,1,150,01/20/19 12:08,"786 Highland St, Los Angeles, CA 90001" +151779,Bose SoundSport Headphones,1,99.99,01/30/19 08:42,"142 Chestnut St, San Francisco, CA 94016" +151779,27in FHD Monitor,1,149.99,01/30/19 08:42,"142 Chestnut St, San Francisco, CA 94016" +151780,USB-C Charging Cable,1,11.95,01/05/19 13:13,"657 12th St, San Francisco, CA 94016" +151781,AA Batteries (4-pack),2,3.84,01/03/19 14:11,"655 Cherry St, New York City, NY 10001" +151782,Vareebadd Phone,1,400,01/28/19 01:06,"764 Cedar St, Portland, OR 97035" +151782,USB-C Charging Cable,1,11.95,01/28/19 01:06,"764 Cedar St, Portland, OR 97035" +151783,Wired Headphones,1,11.99,01/30/19 14:39,"76 Maple St, Seattle, WA 98101" +151784,Lightning Charging Cable,1,14.95,01/30/19 00:40,"132 Cherry St, New York City, NY 10001" +151785,Lightning Charging Cable,1,14.95,01/10/19 11:42,"51 South St, Los Angeles, CA 90001" +151786,Bose SoundSport Headphones,1,99.99,01/06/19 12:46,"586 Lake St, New York City, NY 10001" +151787,ThinkPad Laptop,1,999.99,01/29/19 12:37,"3 Lake St, San Francisco, CA 94016" +151788,27in FHD Monitor,1,149.99,01/16/19 12:12,"133 Hickory St, San Francisco, CA 94016" +151789,Apple Airpods Headphones,1,150,01/22/19 14:47,"416 Highland St, New York City, NY 10001" +151790,20in Monitor,2,109.99,01/08/19 08:39,"871 Madison St, New York City, NY 10001" +151791,AA Batteries (4-pack),2,3.84,01/13/19 14:37,"384 5th St, San Francisco, CA 94016" +151792,iPhone,1,700,01/01/19 22:59,"628 Church St, San Francisco, CA 94016" +151792,Apple Airpods Headphones,1,150,01/01/19 22:59,"628 Church St, San Francisco, CA 94016" +151793,Wired Headphones,2,11.99,01/30/19 11:31,"637 Highland St, Portland, OR 97035" +151794,Lightning Charging Cable,1,14.95,01/10/19 10:33,"316 West St, Seattle, WA 98101" +151795,AA Batteries (4-pack),1,3.84,01/23/19 11:31,"856 South St, Seattle, WA 98101" +151796,iPhone,1,700,01/22/19 17:56,"186 Wilson St, Portland, OR 97035" +151797,ThinkPad Laptop,1,999.99,01/28/19 09:33,"94 Ridge St, San Francisco, CA 94016" +151798,AAA Batteries (4-pack),1,2.99,01/11/19 15:47,"730 8th St, San Francisco, CA 94016" +151799,AAA Batteries (4-pack),2,2.99,01/11/19 11:52,"330 Chestnut St, San Francisco, CA 94016" +151800,27in 4K Gaming Monitor,1,389.99,01/03/19 18:17,"265 5th St, Boston, MA 02215" +151801,Lightning Charging Cable,1,14.95,01/11/19 21:08,"269 Highland St, San Francisco, CA 94016" +151802,Apple Airpods Headphones,1,150,01/10/19 20:19,"361 10th St, Atlanta, GA 30301" +151803,Google Phone,1,600,01/14/19 10:02,"4 Maple St, Los Angeles, CA 90001" +151803,Wired Headphones,1,11.99,01/14/19 10:02,"4 Maple St, Los Angeles, CA 90001" +151804,USB-C Charging Cable,1,11.95,01/26/19 23:49,"172 Hill St, Seattle, WA 98101" +151805,Wired Headphones,1,11.99,01/05/19 02:52,"96 Church St, New York City, NY 10001" +151806,AAA Batteries (4-pack),1,2.99,01/28/19 10:38,"816 Ridge St, New York City, NY 10001" +151807,Lightning Charging Cable,2,14.95,01/12/19 08:16,"468 4th St, San Francisco, CA 94016" +151808,34in Ultrawide Monitor,1,379.99,01/22/19 15:48,"45 Jackson St, San Francisco, CA 94016" +151809,34in Ultrawide Monitor,1,379.99,01/03/19 15:45,"208 River St, Boston, MA 02215" +151810,Macbook Pro Laptop,1,1700,01/16/19 14:01,"580 6th St, Los Angeles, CA 90001" +151811,Apple Airpods Headphones,1,150,01/24/19 21:58,"665 Cherry St, Atlanta, GA 30301" +151812,Macbook Pro Laptop,1,1700,01/27/19 14:40,"340 4th St, Portland, OR 97035" +151813,AA Batteries (4-pack),1,3.84,01/29/19 09:56,"70 Ridge St, Los Angeles, CA 90001" +151814,Apple Airpods Headphones,1,150,01/14/19 19:06,"114 4th St, New York City, NY 10001" +151815,AA Batteries (4-pack),1,3.84,01/23/19 15:21,"21 Ridge St, San Francisco, CA 94016" +151816,Wired Headphones,1,11.99,01/08/19 11:55,"574 Cherry St, San Francisco, CA 94016" +151817,Bose SoundSport Headphones,1,99.99,01/02/19 22:37,"387 6th St, Seattle, WA 98101" +151818,AAA Batteries (4-pack),2,2.99,01/14/19 16:18,"165 11th St, Portland, OR 97035" +151819,Lightning Charging Cable,1,14.95,01/15/19 16:48,"218 5th St, Atlanta, GA 30301" +151820,27in 4K Gaming Monitor,1,389.99,01/22/19 18:18,"842 Washington St, New York City, NY 10001" +151821,Macbook Pro Laptop,1,1700,01/05/19 11:26,"92 8th St, New York City, NY 10001" +151822,Macbook Pro Laptop,1,1700,01/24/19 19:43,"374 Forest St, Los Angeles, CA 90001" +151823,27in FHD Monitor,1,149.99,01/07/19 14:09,"507 South St, Austin, TX 73301" +151824,34in Ultrawide Monitor,1,379.99,01/16/19 12:00,"400 Main St, Boston, MA 02215" +151825,Wired Headphones,1,11.99,01/19/19 10:01,"196 10th St, Boston, MA 02215" +151826,27in 4K Gaming Monitor,1,389.99,01/23/19 22:26,"26 Lake St, Los Angeles, CA 90001" +151827,Lightning Charging Cable,1,14.95,01/21/19 20:53,"642 Jackson St, New York City, NY 10001" +151828,27in FHD Monitor,1,149.99,01/27/19 11:30,"145 6th St, San Francisco, CA 94016" +151829,AA Batteries (4-pack),2,3.84,01/20/19 19:41,"791 Jackson St, Los Angeles, CA 90001" +151830,Apple Airpods Headphones,1,150,01/04/19 10:02,"379 South St, San Francisco, CA 94016" +151831,Lightning Charging Cable,1,14.95,01/09/19 10:23,"121 South St, Seattle, WA 98101" +151832,Lightning Charging Cable,1,14.95,01/08/19 10:46,"320 North St, New York City, NY 10001" +151833,USB-C Charging Cable,1,11.95,01/20/19 14:14,"75 Meadow St, Los Angeles, CA 90001" +151834,Bose SoundSport Headphones,1,99.99,01/03/19 11:11,"731 Spruce St, San Francisco, CA 94016" +151835,AA Batteries (4-pack),3,3.84,01/25/19 17:23,"976 Pine St, San Francisco, CA 94016" +151836,20in Monitor,1,109.99,01/01/19 16:48,"916 Walnut St, Boston, MA 02215" +151837,Macbook Pro Laptop,1,1700,01/19/19 11:14,"320 Spruce St, New York City, NY 10001" +151838,34in Ultrawide Monitor,1,379.99,01/11/19 09:38,"534 Pine St, San Francisco, CA 94016" +151839,Bose SoundSport Headphones,1,99.99,01/20/19 12:54,"894 Lincoln St, Atlanta, GA 30301" +151840,AAA Batteries (4-pack),1,2.99,01/11/19 11:46,"135 North St, Los Angeles, CA 90001" +151841,Flatscreen TV,1,300,01/07/19 21:24,"617 Cedar St, Dallas, TX 75001" +151842,Wired Headphones,1,11.99,01/27/19 11:11,"800 Meadow St, Los Angeles, CA 90001" +151843,AA Batteries (4-pack),1,3.84,01/07/19 15:41,"431 Jefferson St, Dallas, TX 75001" +151844,AAA Batteries (4-pack),1,2.99,01/07/19 11:14,"163 Park St, Boston, MA 02215" +151845,Bose SoundSport Headphones,1,99.99,01/15/19 15:09,"646 Wilson St, Los Angeles, CA 90001" +151846,AA Batteries (4-pack),1,3.84,01/26/19 11:38,"878 Adams St, San Francisco, CA 94016" +151847,Apple Airpods Headphones,1,150,01/03/19 16:43,"799 Adams St, Seattle, WA 98101" +151848,USB-C Charging Cable,1,11.95,01/24/19 21:38,"125 West St, Seattle, WA 98101" +151849,27in FHD Monitor,1,149.99,01/03/19 17:29,"270 River St, San Francisco, CA 94016" +151850,USB-C Charging Cable,1,11.95,01/23/19 20:32,"372 Washington St, San Francisco, CA 94016" +151851,ThinkPad Laptop,1,999.99,01/18/19 12:47,"895 Church St, Dallas, TX 75001" +151852,AAA Batteries (4-pack),1,2.99,01/21/19 18:38,"347 River St, Los Angeles, CA 90001" +151853,AA Batteries (4-pack),1,3.84,01/16/19 09:35,"466 Madison St, Dallas, TX 75001" +151854,Lightning Charging Cable,1,14.95,01/02/19 10:20,"646 Center St, San Francisco, CA 94016" +151855,Lightning Charging Cable,1,14.95,01/07/19 17:55,"733 West St, New York City, NY 10001" +151856,Wired Headphones,1,11.99,01/30/19 13:05,"131 11th St, Atlanta, GA 30301" +151857,USB-C Charging Cable,1,11.95,01/16/19 20:23,"809 Main St, New York City, NY 10001" +151857,Apple Airpods Headphones,1,150,01/16/19 20:23,"809 Main St, New York City, NY 10001" +151858,iPhone,1,700,01/06/19 11:22,"33 Johnson St, San Francisco, CA 94016" +151859,AAA Batteries (4-pack),1,2.99,01/25/19 00:30,"717 Cherry St, Dallas, TX 75001" +151860,AAA Batteries (4-pack),1,2.99,01/25/19 13:37,"739 Church St, Seattle, WA 98101" +151861,AA Batteries (4-pack),2,3.84,01/21/19 17:53,"77 5th St, Dallas, TX 75001" +151862,Google Phone,1,600,01/02/19 19:26,"491 Hill St, Dallas, TX 75001" +151863,Apple Airpods Headphones,1,150,01/19/19 13:58,"511 Church St, Los Angeles, CA 90001" +151864,AA Batteries (4-pack),1,3.84,01/22/19 11:35,"865 Maple St, Los Angeles, CA 90001" +151865,Bose SoundSport Headphones,1,99.99,01/07/19 22:14,"550 Elm St, Boston, MA 02215" +151866,USB-C Charging Cable,1,11.95,01/19/19 22:57,"453 12th St, Los Angeles, CA 90001" +151867,34in Ultrawide Monitor,1,379.99,01/07/19 17:22,"324 Adams St, New York City, NY 10001" +151868,34in Ultrawide Monitor,1,379.99,01/27/19 15:10,"665 Wilson St, Austin, TX 73301" +151869,AAA Batteries (4-pack),1,2.99,01/08/19 02:53,"538 Ridge St, Boston, MA 02215" +151870,27in FHD Monitor,1,149.99,01/12/19 20:49,"832 Washington St, Los Angeles, CA 90001" +151871,iPhone,1,700,01/22/19 23:45,"593 Church St, Seattle, WA 98101" +151871,Lightning Charging Cable,1,14.95,01/22/19 23:45,"593 Church St, Seattle, WA 98101" +151872,AA Batteries (4-pack),1,3.84,01/26/19 20:11,"983 10th St, Seattle, WA 98101" +151873,27in FHD Monitor,1,149.99,01/31/19 15:21,"741 Hill St, Los Angeles, CA 90001" +151874,Wired Headphones,1,11.99,01/04/19 21:40,"359 14th St, Los Angeles, CA 90001" +151875,Lightning Charging Cable,1,14.95,01/20/19 11:03,"161 Forest St, Austin, TX 73301" +151876,USB-C Charging Cable,1,11.95,01/08/19 10:54,"874 11th St, Atlanta, GA 30301" +151877,Lightning Charging Cable,1,14.95,01/10/19 11:07,"737 Cedar St, Los Angeles, CA 90001" +151878,27in 4K Gaming Monitor,1,389.99,01/03/19 16:02,"601 South St, San Francisco, CA 94016" +151879,AA Batteries (4-pack),1,3.84,01/29/19 02:57,"277 River St, Atlanta, GA 30301" +151880,AAA Batteries (4-pack),1,2.99,01/07/19 17:34,"681 Johnson St, Los Angeles, CA 90001" +151881,Lightning Charging Cable,1,14.95,01/08/19 22:53,"947 9th St, San Francisco, CA 94016" +151882,27in FHD Monitor,1,149.99,01/01/19 10:28,"243 Willow St, New York City, NY 10001" +151883,ThinkPad Laptop,1,999.99,01/08/19 15:47,"667 Jackson St, San Francisco, CA 94016" +151884,Wired Headphones,1,11.99,01/10/19 23:31,"771 Pine St, Los Angeles, CA 90001" +151885,Flatscreen TV,1,300,01/08/19 12:16,"911 Johnson St, New York City, NY 10001" +151886,USB-C Charging Cable,1,11.95,01/07/19 10:55,"183 11th St, Los Angeles, CA 90001" +151887,Wired Headphones,1,11.99,01/13/19 13:26,"488 Dogwood St, Seattle, WA 98101" +151888,Apple Airpods Headphones,1,150,01/25/19 09:28,"29 Park St, Portland, ME 04101" +151889,AAA Batteries (4-pack),1,2.99,01/26/19 19:40,"36 11th St, Atlanta, GA 30301" +151890,AAA Batteries (4-pack),1,2.99,01/23/19 15:44,"608 4th St, New York City, NY 10001" +151891,Lightning Charging Cable,1,14.95,01/21/19 22:50,"218 Meadow St, Seattle, WA 98101" +151892,Bose SoundSport Headphones,1,99.99,01/31/19 16:54,"41 Elm St, New York City, NY 10001" +151893,USB-C Charging Cable,1,11.95,01/22/19 15:31,"72 2nd St, Dallas, TX 75001" +151894,27in FHD Monitor,1,149.99,01/19/19 11:39,"910 1st St, Los Angeles, CA 90001" +151895,Bose SoundSport Headphones,1,99.99,01/22/19 16:16,"590 Jackson St, New York City, NY 10001" +151896,Flatscreen TV,1,300,01/30/19 19:02,"550 4th St, Boston, MA 02215" +151896,AAA Batteries (4-pack),2,2.99,01/30/19 19:02,"550 4th St, Boston, MA 02215" +151897,Lightning Charging Cable,1,14.95,01/04/19 08:12,"106 Pine St, Los Angeles, CA 90001" +151898,AA Batteries (4-pack),1,3.84,01/17/19 21:09,"618 Willow St, Los Angeles, CA 90001" +151899,34in Ultrawide Monitor,1,379.99,01/17/19 13:05,"322 Madison St, Austin, TX 73301" +151900,Google Phone,1,600,01/05/19 22:21,"904 Jackson St, Atlanta, GA 30301" +151901,Bose SoundSport Headphones,1,99.99,01/08/19 09:31,"323 11th St, Boston, MA 02215" +151902,Google Phone,1,600,01/13/19 20:19,"870 Hickory St, San Francisco, CA 94016" +151903,Wired Headphones,1,11.99,01/11/19 15:51,"342 Sunset St, Atlanta, GA 30301" +151904,USB-C Charging Cable,1,11.95,01/09/19 00:52,"36 10th St, New York City, NY 10001" +151905,27in 4K Gaming Monitor,1,389.99,01/22/19 23:25,"797 Lakeview St, New York City, NY 10001" +151906,Apple Airpods Headphones,1,150,01/22/19 21:16,"842 4th St, Los Angeles, CA 90001" +151907,USB-C Charging Cable,1,11.95,01/05/19 10:48,"618 Wilson St, San Francisco, CA 94016" +151908,Lightning Charging Cable,1,14.95,01/02/19 21:35,"264 10th St, Dallas, TX 75001" +151909,Lightning Charging Cable,1,14.95,01/19/19 00:39,"72 Center St, Boston, MA 02215" +151910,Macbook Pro Laptop,1,1700,01/21/19 10:13,"395 Chestnut St, Atlanta, GA 30301" +151911,Apple Airpods Headphones,1,150,01/30/19 18:37,"19 13th St, New York City, NY 10001" +151912,AA Batteries (4-pack),3,3.84,01/04/19 23:01,"144 Main St, New York City, NY 10001" +151913,Apple Airpods Headphones,1,150,01/06/19 18:42,"788 Pine St, Seattle, WA 98101" +151914,USB-C Charging Cable,1,11.95,01/30/19 10:55,"277 Pine St, Los Angeles, CA 90001" +151915,AAA Batteries (4-pack),2,2.99,01/29/19 11:24,"973 Highland St, San Francisco, CA 94016" +151916,LG Dryer,1,600.0,01/14/19 16:58,"559 Dogwood St, New York City, NY 10001" +151917,ThinkPad Laptop,1,999.99,01/18/19 16:47,"978 Jefferson St, Atlanta, GA 30301" +151918,Flatscreen TV,1,300,01/21/19 22:55,"66 Elm St, Portland, OR 97035" +151919,AA Batteries (4-pack),1,3.84,01/29/19 17:13,"448 Cedar St, Los Angeles, CA 90001" +151920,Wired Headphones,1,11.99,01/07/19 13:13,"290 Walnut St, San Francisco, CA 94016" +151921,Lightning Charging Cable,1,14.95,01/29/19 21:13,"653 Church St, Los Angeles, CA 90001" +151922,AA Batteries (4-pack),1,3.84,01/14/19 23:18,"297 River St, Seattle, WA 98101" +151923,AA Batteries (4-pack),1,3.84,01/15/19 22:08,"389 Lake St, Boston, MA 02215" +151924,AA Batteries (4-pack),1,3.84,01/24/19 06:08,"159 River St, New York City, NY 10001" +151925,Lightning Charging Cable,1,14.95,01/14/19 22:35,"999 Lincoln St, Atlanta, GA 30301" +151926,Wired Headphones,1,11.99,01/16/19 16:30,"627 8th St, San Francisco, CA 94016" +151927,27in 4K Gaming Monitor,1,389.99,01/08/19 14:04,"543 Johnson St, Boston, MA 02215" +151928,AA Batteries (4-pack),1,3.84,01/11/19 17:05,"718 Church St, Los Angeles, CA 90001" +151929,20in Monitor,1,109.99,01/13/19 13:56,"783 Lake St, Portland, OR 97035" +151930,AAA Batteries (4-pack),5,2.99,01/14/19 14:11,"692 5th St, Boston, MA 02215" +151931,iPhone,1,700,01/13/19 20:00,"369 Dogwood St, Seattle, WA 98101" +151931,Apple Airpods Headphones,1,150,01/13/19 20:00,"369 Dogwood St, Seattle, WA 98101" +151932,USB-C Charging Cable,1,11.95,01/12/19 14:23,"823 10th St, Portland, OR 97035" +151933,AAA Batteries (4-pack),1,2.99,01/25/19 15:16,"575 Sunset St, New York City, NY 10001" +151934,AAA Batteries (4-pack),1,2.99,01/22/19 10:47,"5 Wilson St, Dallas, TX 75001" +151935,Google Phone,1,600,01/03/19 15:33,"67 6th St, New York City, NY 10001" +151936,AAA Batteries (4-pack),3,2.99,01/20/19 14:17,"72 Highland St, San Francisco, CA 94016" +151937,Wired Headphones,1,11.99,01/23/19 21:14,"486 12th St, Seattle, WA 98101" +151938,Apple Airpods Headphones,1,150,01/17/19 11:32,"770 10th St, Dallas, TX 75001" +151939,Vareebadd Phone,1,400,01/19/19 11:45,"15 Park St, Austin, TX 73301" +151940,Apple Airpods Headphones,1,150,01/08/19 12:11,"546 West St, Dallas, TX 75001" +151941,iPhone,1,700,01/18/19 20:56,"122 14th St, Los Angeles, CA 90001" +151942,iPhone,1,700,01/23/19 15:32,"518 6th St, Dallas, TX 75001" +151943,USB-C Charging Cable,1,11.95,01/31/19 12:36,"274 Sunset St, San Francisco, CA 94016" +151944,AA Batteries (4-pack),1,3.84,01/30/19 17:46,"665 Jackson St, Seattle, WA 98101" +151945,Lightning Charging Cable,1,14.95,01/26/19 10:31,"660 Willow St, San Francisco, CA 94016" +151946,AAA Batteries (4-pack),1,2.99,01/09/19 12:39,"758 Johnson St, New York City, NY 10001" +151947,iPhone,1,700,01/03/19 08:22,"277 5th St, San Francisco, CA 94016" +151947,Apple Airpods Headphones,1,150,01/03/19 08:22,"277 5th St, San Francisco, CA 94016" +151948,34in Ultrawide Monitor,1,379.99,01/25/19 23:08,"881 Spruce St, Los Angeles, CA 90001" +151949,Apple Airpods Headphones,1,150,01/24/19 11:37,"910 Dogwood St, New York City, NY 10001" +151950,Google Phone,1,600,01/04/19 22:16,"580 Dogwood St, Los Angeles, CA 90001" +151951,AAA Batteries (4-pack),1,2.99,01/09/19 11:47,"596 12th St, Boston, MA 02215" +151951,Google Phone,1,600,01/09/19 11:47,"596 12th St, Boston, MA 02215" +151952,iPhone,1,700,01/05/19 12:00,"801 10th St, San Francisco, CA 94016" +151953,USB-C Charging Cable,1,11.95,01/07/19 20:40,"300 Jackson St, San Francisco, CA 94016" +151954,USB-C Charging Cable,3,11.95,01/01/19 11:28,"647 South St, Boston, MA 02215" +151955,27in 4K Gaming Monitor,1,389.99,01/09/19 22:08,"983 Wilson St, Boston, MA 02215" +151956,Google Phone,1,600,01/29/19 15:19,"998 Walnut St, New York City, NY 10001" +151957,Flatscreen TV,1,300,01/06/19 21:08,"748 7th St, Austin, TX 73301" +151958,AA Batteries (4-pack),1,3.84,01/18/19 20:30,"308 North St, Los Angeles, CA 90001" +151959,Apple Airpods Headphones,1,150,01/22/19 16:04,"448 13th St, San Francisco, CA 94016" +151960,Macbook Pro Laptop,1,1700,01/06/19 11:35,"311 Ridge St, Boston, MA 02215" +151961,Wired Headphones,1,11.99,01/22/19 21:48,"927 Johnson St, Los Angeles, CA 90001" +151962,Macbook Pro Laptop,1,1700,01/07/19 21:24,"184 Lincoln St, New York City, NY 10001" +151963,Wired Headphones,1,11.99,01/22/19 08:56,"179 Highland St, Los Angeles, CA 90001" +151964,AA Batteries (4-pack),1,3.84,01/28/19 13:45,"189 Walnut St, Boston, MA 02215" +151965,Macbook Pro Laptop,1,1700,01/29/19 18:07,"509 Walnut St, New York City, NY 10001" +151966,Lightning Charging Cable,1,14.95,01/09/19 19:14,"961 Chestnut St, Boston, MA 02215" +151967,ThinkPad Laptop,1,999.99,01/15/19 11:47,"131 North St, San Francisco, CA 94016" +151968,34in Ultrawide Monitor,1,379.99,01/09/19 09:38,"701 Chestnut St, San Francisco, CA 94016" +151969,Wired Headphones,1,11.99,01/08/19 14:05,"793 Walnut St, Boston, MA 02215" +151970,iPhone,1,700,01/24/19 08:22,"858 Walnut St, Los Angeles, CA 90001" +151971,27in 4K Gaming Monitor,1,389.99,01/10/19 16:01,"403 Washington St, San Francisco, CA 94016" +151972,Flatscreen TV,1,300,01/09/19 13:31,"27 Meadow St, New York City, NY 10001" +151973,Vareebadd Phone,1,400,01/20/19 11:17,"112 Ridge St, Los Angeles, CA 90001" +151974,Wired Headphones,1,11.99,01/16/19 16:21,"450 Jackson St, Dallas, TX 75001" +151975,Bose SoundSport Headphones,1,99.99,01/01/19 13:05,"483 8th St, Atlanta, GA 30301" +151976,Macbook Pro Laptop,1,1700,01/11/19 11:43,"552 South St, Los Angeles, CA 90001" +151977,USB-C Charging Cable,1,11.95,01/04/19 22:00,"682 Main St, San Francisco, CA 94016" +151978,Apple Airpods Headphones,1,150,01/19/19 20:56,"714 Johnson St, Los Angeles, CA 90001" +151979,Lightning Charging Cable,1,14.95,01/16/19 07:55,"909 Lincoln St, San Francisco, CA 94016" +151980,AA Batteries (4-pack),1,3.84,01/31/19 20:45,"21 Lakeview St, Atlanta, GA 30301" +151981,Wired Headphones,1,11.99,01/05/19 11:44,"845 7th St, San Francisco, CA 94016" +151982,USB-C Charging Cable,1,11.95,01/19/19 12:59,"411 Sunset St, Los Angeles, CA 90001" +151983,Wired Headphones,1,11.99,01/02/19 00:29,"384 Cherry St, Portland, OR 97035" +151984,USB-C Charging Cable,1,11.95,01/13/19 12:53,"938 Lakeview St, Los Angeles, CA 90001" +151985,USB-C Charging Cable,2,11.95,01/24/19 08:48,"498 4th St, Los Angeles, CA 90001" +151986,Macbook Pro Laptop,1,1700,01/02/19 23:06,"861 Lincoln St, Portland, OR 97035" +151987,AA Batteries (4-pack),1,3.84,01/19/19 15:25,"595 Ridge St, San Francisco, CA 94016" +151988,Wired Headphones,1,11.99,01/01/19 15:28,"144 11th St, Boston, MA 02215" +151989,Wired Headphones,2,11.99,01/24/19 11:12,"358 North St, San Francisco, CA 94016" +151990,Apple Airpods Headphones,1,150,01/05/19 07:43,"437 1st St, Dallas, TX 75001" +151990,Apple Airpods Headphones,1,150,01/05/19 07:43,"437 1st St, Dallas, TX 75001" +151991,ThinkPad Laptop,1,999.99,01/31/19 12:22,"289 8th St, Atlanta, GA 30301" +151992,AA Batteries (4-pack),2,3.84,01/27/19 14:39,"194 9th St, San Francisco, CA 94016" +151993,AAA Batteries (4-pack),5,2.99,01/17/19 18:56,"577 Johnson St, New York City, NY 10001" +151994,AAA Batteries (4-pack),1,2.99,01/13/19 20:53,"960 Meadow St, San Francisco, CA 94016" +151995,USB-C Charging Cable,1,11.95,01/11/19 11:16,"62 Washington St, New York City, NY 10001" +151996,Google Phone,1,600,01/05/19 11:56,"739 Elm St, San Francisco, CA 94016" +151997,20in Monitor,1,109.99,01/29/19 19:43,"367 9th St, New York City, NY 10001" +151998,Flatscreen TV,1,300,01/24/19 15:17,"862 2nd St, Boston, MA 02215" +151999,Google Phone,1,600,01/17/19 10:07,"1 Jefferson St, Austin, TX 73301" +152000,20in Monitor,1,109.99,01/08/19 09:54,"348 Hill St, New York City, NY 10001" +152001,Google Phone,1,600,01/04/19 15:56,"541 Johnson St, San Francisco, CA 94016" +152002,34in Ultrawide Monitor,1,379.99,01/25/19 21:55,"808 12th St, Los Angeles, CA 90001" +152003,Wired Headphones,1,11.99,01/07/19 06:13,"508 River St, Dallas, TX 75001" +152004,AAA Batteries (4-pack),2,2.99,01/06/19 11:41,"280 Adams St, Seattle, WA 98101" +152005,Bose SoundSport Headphones,1,99.99,01/24/19 11:35,"53 North St, Dallas, TX 75001" +152006,USB-C Charging Cable,1,11.95,01/28/19 13:41,"225 Pine St, Dallas, TX 75001" +152007,AA Batteries (4-pack),2,3.84,01/23/19 22:13,"190 Chestnut St, Los Angeles, CA 90001" +152008,Flatscreen TV,1,300,01/13/19 13:24,"739 8th St, New York City, NY 10001" +152009,27in FHD Monitor,1,149.99,01/08/19 21:09,"709 Washington St, Seattle, WA 98101" +152010,Lightning Charging Cable,1,14.95,01/06/19 13:23,"348 Highland St, Atlanta, GA 30301" +152011,AA Batteries (4-pack),1,3.84,01/30/19 16:04,"904 11th St, San Francisco, CA 94016" +152012,Wired Headphones,1,11.99,01/06/19 20:22,"440 Willow St, Los Angeles, CA 90001" +152013,Bose SoundSport Headphones,1,99.99,01/02/19 10:04,"501 Cedar St, Atlanta, GA 30301" +152014,USB-C Charging Cable,1,11.95,01/15/19 17:48,"225 North St, San Francisco, CA 94016" +152015,LG Dryer,1,600.0,01/21/19 20:19,"864 North St, Atlanta, GA 30301" +152016,iPhone,1,700,01/08/19 18:19,"612 Ridge St, Los Angeles, CA 90001" +152017,Apple Airpods Headphones,1,150,01/02/19 00:45,"673 Highland St, Los Angeles, CA 90001" +152018,USB-C Charging Cable,1,11.95,01/14/19 18:33,"213 14th St, San Francisco, CA 94016" +152019,ThinkPad Laptop,1,999.99,01/23/19 14:47,"105 Spruce St, Atlanta, GA 30301" +152020,AA Batteries (4-pack),1,3.84,01/17/19 21:10,"896 5th St, Atlanta, GA 30301" +152021,USB-C Charging Cable,1,11.95,01/10/19 15:04,"615 13th St, Boston, MA 02215" +152022,Apple Airpods Headphones,2,150,01/18/19 11:15,"62 Lake St, Los Angeles, CA 90001" +152023,Apple Airpods Headphones,1,150,01/26/19 22:05,"434 Lake St, Portland, OR 97035" +152023,Lightning Charging Cable,1,14.95,01/26/19 22:05,"434 Lake St, Portland, OR 97035" +152024,USB-C Charging Cable,1,11.95,01/19/19 03:06,"794 12th St, Dallas, TX 75001" +152025,34in Ultrawide Monitor,1,379.99,01/29/19 15:42,"150 North St, Austin, TX 73301" +152026,Wired Headphones,1,11.99,01/23/19 23:18,"918 Wilson St, San Francisco, CA 94016" +152027,34in Ultrawide Monitor,1,379.99,01/24/19 01:48,"245 Maple St, Atlanta, GA 30301" +152028,Bose SoundSport Headphones,1,99.99,01/04/19 11:25,"56 Highland St, Seattle, WA 98101" +152029,Apple Airpods Headphones,2,150,01/24/19 17:46,"101 13th St, Boston, MA 02215" +152030,ThinkPad Laptop,1,999.99,01/28/19 13:38,"5 Wilson St, New York City, NY 10001" +152031,Wired Headphones,1,11.99,01/22/19 15:57,"433 Center St, New York City, NY 10001" +152032,Lightning Charging Cable,1,14.95,01/19/19 15:11,"879 Jefferson St, New York City, NY 10001" +152033,Lightning Charging Cable,1,14.95,01/26/19 10:27,"540 13th St, San Francisco, CA 94016" +152034,AAA Batteries (4-pack),1,2.99,01/03/19 20:29,"269 Maple St, New York City, NY 10001" +152035,34in Ultrawide Monitor,1,379.99,01/27/19 18:11,"388 10th St, Los Angeles, CA 90001" +152036,Lightning Charging Cable,1,14.95,01/08/19 11:05,"932 Willow St, Los Angeles, CA 90001" +152037,Wired Headphones,1,11.99,01/11/19 10:17,"486 Washington St, Los Angeles, CA 90001" +152038,Wired Headphones,1,11.99,01/14/19 21:45,"797 Spruce St, Dallas, TX 75001" +152039,USB-C Charging Cable,1,11.95,01/15/19 13:17,"970 Madison St, Los Angeles, CA 90001" +152040,Bose SoundSport Headphones,1,99.99,01/23/19 12:21,"157 8th St, New York City, NY 10001" +152041,Flatscreen TV,1,300,01/02/19 09:36,"73 Park St, San Francisco, CA 94016" +152042,iPhone,1,700,01/01/19 14:03,"607 12th St, Los Angeles, CA 90001" +152043,Apple Airpods Headphones,1,150,01/18/19 13:34,"814 10th St, Atlanta, GA 30301" +152044,Bose SoundSport Headphones,1,99.99,01/31/19 07:44,"339 Forest St, Seattle, WA 98101" +152045,USB-C Charging Cable,1,11.95,01/18/19 10:38,"496 Dogwood St, San Francisco, CA 94016" +152046,Apple Airpods Headphones,1,150,01/03/19 09:43,"280 Highland St, San Francisco, CA 94016" +152047,34in Ultrawide Monitor,1,379.99,01/21/19 01:00,"264 Adams St, Los Angeles, CA 90001" +152048,AA Batteries (4-pack),1,3.84,01/11/19 14:44,"278 Hickory St, New York City, NY 10001" +152049,Apple Airpods Headphones,1,150,01/04/19 12:40,"398 Wilson St, Boston, MA 02215" +152050,USB-C Charging Cable,1,11.95,01/08/19 11:07,"990 Willow St, Dallas, TX 75001" +152051,Bose SoundSport Headphones,1,99.99,01/07/19 13:18,"295 Lake St, San Francisco, CA 94016" +152052,Lightning Charging Cable,1,14.95,01/31/19 10:46,"875 Jackson St, Austin, TX 73301" +152053,USB-C Charging Cable,1,11.95,01/05/19 11:04,"685 12th St, San Francisco, CA 94016" +152054,AAA Batteries (4-pack),2,2.99,01/06/19 11:16,"54 Lake St, San Francisco, CA 94016" +152055,Apple Airpods Headphones,1,150,01/26/19 11:46,"755 5th St, Dallas, TX 75001" +152056,AA Batteries (4-pack),1,3.84,01/16/19 12:14,"249 Sunset St, Los Angeles, CA 90001" +152057,AA Batteries (4-pack),1,3.84,01/20/19 14:04,"793 Dogwood St, Los Angeles, CA 90001" +152058,Wired Headphones,1,11.99,01/12/19 13:58,"101 Adams St, Los Angeles, CA 90001" +152059,AA Batteries (4-pack),1,3.84,01/24/19 14:00,"596 Madison St, Portland, OR 97035" +152060,Apple Airpods Headphones,1,150,01/05/19 21:42,"343 14th St, San Francisco, CA 94016" +152061,USB-C Charging Cable,1,11.95,01/25/19 10:36,"147 Church St, Los Angeles, CA 90001" +152062,27in FHD Monitor,1,149.99,01/04/19 11:13,"927 River St, Seattle, WA 98101" +152063,Bose SoundSport Headphones,1,99.99,01/14/19 11:02,"929 Sunset St, San Francisco, CA 94016" +152064,Bose SoundSport Headphones,1,99.99,01/26/19 12:16,"524 Pine St, Boston, MA 02215" +152065,Bose SoundSport Headphones,1,99.99,01/12/19 06:55,"232 9th St, Austin, TX 73301" +152065,Wired Headphones,1,11.99,01/12/19 06:55,"232 9th St, Austin, TX 73301" +152066,AA Batteries (4-pack),1,3.84,01/19/19 19:10,"282 Main St, San Francisco, CA 94016" +152067,27in FHD Monitor,1,149.99,01/26/19 12:54,"171 Lincoln St, Austin, TX 73301" +152068,USB-C Charging Cable,1,11.95,01/21/19 21:58,"276 6th St, New York City, NY 10001" +152069,Wired Headphones,1,11.99,01/07/19 12:43,"939 6th St, Los Angeles, CA 90001" +152070,AAA Batteries (4-pack),1,2.99,01/21/19 12:11,"680 4th St, Portland, OR 97035" +152070,Wired Headphones,1,11.99,01/21/19 12:11,"680 4th St, Portland, OR 97035" +152071,AA Batteries (4-pack),1,3.84,01/17/19 07:14,"335 Park St, Los Angeles, CA 90001" +152072,34in Ultrawide Monitor,1,379.99,01/28/19 13:54,"939 Willow St, Seattle, WA 98101" +152073,AA Batteries (4-pack),3,3.84,01/09/19 13:11,"318 Washington St, Boston, MA 02215" +152074,Macbook Pro Laptop,1,1700,01/26/19 14:40,"725 Cherry St, San Francisco, CA 94016" +152075,USB-C Charging Cable,1,11.95,01/30/19 19:01,"707 River St, Atlanta, GA 30301" +152076,34in Ultrawide Monitor,1,379.99,01/15/19 03:43,"350 Park St, San Francisco, CA 94016" +152077,Google Phone,1,600,01/05/19 21:10,"682 Cherry St, Los Angeles, CA 90001" +152077,USB-C Charging Cable,1,11.95,01/05/19 21:10,"682 Cherry St, Los Angeles, CA 90001" +152078,27in FHD Monitor,1,149.99,01/25/19 16:08,"991 8th St, Portland, OR 97035" +152079,Lightning Charging Cable,1,14.95,01/07/19 16:27,"958 7th St, San Francisco, CA 94016" +152080,Lightning Charging Cable,1,14.95,01/27/19 13:54,"598 Lake St, New York City, NY 10001" +152081,Wired Headphones,3,11.99,01/25/19 06:57,"673 8th St, San Francisco, CA 94016" +152082,Bose SoundSport Headphones,1,99.99,01/14/19 11:43,"558 South St, Dallas, TX 75001" +152083,USB-C Charging Cable,1,11.95,01/28/19 09:46,"696 Jackson St, Portland, OR 97035" +152084,iPhone,1,700,01/13/19 23:05,"954 13th St, Los Angeles, CA 90001" +152085,Lightning Charging Cable,1,14.95,01/10/19 15:48,"695 Hickory St, Atlanta, GA 30301" +152086,Apple Airpods Headphones,1,150,01/01/19 19:53,"397 Madison St, New York City, NY 10001" +152087,AAA Batteries (4-pack),1,2.99,01/10/19 12:41,"227 4th St, Seattle, WA 98101" +152088,Apple Airpods Headphones,1,150,01/24/19 11:05,"792 West St, San Francisco, CA 94016" +152089,Bose SoundSport Headphones,1,99.99,01/13/19 17:20,"383 12th St, Dallas, TX 75001" +152090,Bose SoundSport Headphones,1,99.99,01/25/19 19:26,"361 4th St, Atlanta, GA 30301" +152090,Bose SoundSport Headphones,1,99.99,01/25/19 19:26,"361 4th St, Atlanta, GA 30301" +152091,USB-C Charging Cable,1,11.95,01/20/19 06:07,"305 Forest St, New York City, NY 10001" +152092,Bose SoundSport Headphones,1,99.99,01/10/19 13:09,"844 Adams St, San Francisco, CA 94016" +152093,USB-C Charging Cable,2,11.95,01/15/19 06:39,"176 Church St, Los Angeles, CA 90001" +152094,Apple Airpods Headphones,1,150,01/02/19 22:16,"179 8th St, Dallas, TX 75001" +152095,AAA Batteries (4-pack),1,2.99,01/04/19 17:52,"953 9th St, Boston, MA 02215" +152096,Flatscreen TV,1,300,01/20/19 22:54,"900 Center St, Austin, TX 73301" +152097,Lightning Charging Cable,1,14.95,01/26/19 14:14,"969 12th St, New York City, NY 10001" +152098,Apple Airpods Headphones,1,150,01/08/19 14:34,"813 Cedar St, Boston, MA 02215" +152099,Apple Airpods Headphones,1,150,01/01/19 19:09,"240 Madison St, San Francisco, CA 94016" +152100,34in Ultrawide Monitor,1,379.99,01/13/19 16:57,"553 Pine St, Austin, TX 73301" +152101,USB-C Charging Cable,1,11.95,01/06/19 11:48,"929 1st St, Boston, MA 02215" +152102,AAA Batteries (4-pack),1,2.99,01/24/19 12:52,"247 Wilson St, Atlanta, GA 30301" +152103,AAA Batteries (4-pack),1,2.99,01/18/19 18:40,"956 Spruce St, Los Angeles, CA 90001" +152104,AAA Batteries (4-pack),1,2.99,01/14/19 22:42,"496 Hill St, Boston, MA 02215" +152105,Bose SoundSport Headphones,1,99.99,01/01/19 17:22,"997 Cedar St, Portland, OR 97035" +152106,Apple Airpods Headphones,1,150,01/03/19 00:00,"596 West St, New York City, NY 10001" +152107,Wired Headphones,1,11.99,01/14/19 18:17,"688 Wilson St, New York City, NY 10001" +152108,AAA Batteries (4-pack),1,2.99,01/31/19 10:39,"861 13th St, New York City, NY 10001" +152109,Wired Headphones,1,11.99,01/17/19 08:55,"905 11th St, San Francisco, CA 94016" +152110,Apple Airpods Headphones,1,150,01/07/19 11:57,"259 Lincoln St, Portland, OR 97035" +152111,AA Batteries (4-pack),1,3.84,01/03/19 22:10,"324 8th St, Dallas, TX 75001" +152112,Apple Airpods Headphones,1,150,01/18/19 11:49,"396 Lake St, Austin, TX 73301" +152113,Lightning Charging Cable,1,14.95,01/25/19 14:51,"110 Maple St, San Francisco, CA 94016" +152114,AAA Batteries (4-pack),1,2.99,01/27/19 23:35,"228 Lincoln St, Seattle, WA 98101" +152115,Lightning Charging Cable,1,14.95,01/10/19 21:09,"656 Walnut St, Los Angeles, CA 90001" +152116,USB-C Charging Cable,1,11.95,01/18/19 02:06,"104 Ridge St, San Francisco, CA 94016" +152117,AAA Batteries (4-pack),1,2.99,01/14/19 11:03,"781 Lincoln St, Los Angeles, CA 90001" +152118,Lightning Charging Cable,1,14.95,01/11/19 10:16,"723 Elm St, New York City, NY 10001" +152119,34in Ultrawide Monitor,1,379.99,01/31/19 15:36,"11 Hill St, San Francisco, CA 94016" +152120,Lightning Charging Cable,1,14.95,01/14/19 12:33,"771 Elm St, Atlanta, GA 30301" +152121,USB-C Charging Cable,1,11.95,01/12/19 14:54,"921 Chestnut St, San Francisco, CA 94016" +152122,Wired Headphones,1,11.99,01/06/19 15:46,"983 Park St, San Francisco, CA 94016" +152123,27in FHD Monitor,1,149.99,01/13/19 16:03,"541 Center St, Austin, TX 73301" +152124,27in FHD Monitor,1,149.99,01/03/19 21:23,"683 Forest St, Boston, MA 02215" +152125,Macbook Pro Laptop,1,1700,01/04/19 19:09,"54 Church St, Portland, ME 04101" +152126,Bose SoundSport Headphones,1,99.99,01/27/19 19:28,"877 8th St, Dallas, TX 75001" +152127,Wired Headphones,1,11.99,01/24/19 15:01,"120 Madison St, Boston, MA 02215" +152128,USB-C Charging Cable,1,11.95,01/05/19 03:04,"365 Main St, San Francisco, CA 94016" +152129,27in FHD Monitor,1,149.99,01/15/19 16:08,"466 Ridge St, Los Angeles, CA 90001" +152130,AAA Batteries (4-pack),1,2.99,01/09/19 00:22,"537 River St, Seattle, WA 98101" +152131,iPhone,1,700,01/28/19 19:37,"677 10th St, San Francisco, CA 94016" +152132,ThinkPad Laptop,1,999.99,01/27/19 12:30,"880 Forest St, Los Angeles, CA 90001" +152133,Apple Airpods Headphones,1,150,01/04/19 19:39,"822 Maple St, Austin, TX 73301" +152134,AA Batteries (4-pack),3,3.84,01/12/19 16:01,"187 Jackson St, Atlanta, GA 30301" +152135,20in Monitor,1,109.99,01/06/19 11:29,"866 North St, Seattle, WA 98101" +152136,Lightning Charging Cable,1,14.95,01/25/19 13:39,"764 Washington St, New York City, NY 10001" +152137,Wired Headphones,1,11.99,01/27/19 16:53,"768 Lake St, Atlanta, GA 30301" +152138,AAA Batteries (4-pack),1,2.99,01/24/19 10:29,"798 11th St, San Francisco, CA 94016" +152139,USB-C Charging Cable,1,11.95,01/24/19 14:43,"354 Hill St, Boston, MA 02215" +152140,AA Batteries (4-pack),1,3.84,01/09/19 15:43,"382 Pine St, San Francisco, CA 94016" +152141,AAA Batteries (4-pack),1,2.99,01/03/19 12:41,"938 Meadow St, New York City, NY 10001" +152142,Bose SoundSport Headphones,1,99.99,01/27/19 10:48,"254 Cherry St, Portland, OR 97035" +152143,USB-C Charging Cable,1,11.95,01/06/19 12:47,"689 Church St, Los Angeles, CA 90001" +152144,Google Phone,1,600,01/02/19 16:26,"294 South St, New York City, NY 10001" +152145,20in Monitor,1,109.99,01/19/19 17:13,"196 Chestnut St, Dallas, TX 75001" +152146,20in Monitor,1,109.99,01/14/19 09:32,"761 River St, Boston, MA 02215" +152147,AAA Batteries (4-pack),1,2.99,01/10/19 10:10,"833 Maple St, Los Angeles, CA 90001" +152148,Bose SoundSport Headphones,1,99.99,01/01/19 12:27,"311 Lake St, Atlanta, GA 30301" +152149,USB-C Charging Cable,1,11.95,01/14/19 11:42,"528 Spruce St, New York City, NY 10001" +152150,27in 4K Gaming Monitor,1,389.99,01/05/19 03:57,"538 10th St, Portland, OR 97035" +152151,Flatscreen TV,1,300,01/10/19 18:44,"902 13th St, San Francisco, CA 94016" +152152,AA Batteries (4-pack),1,3.84,01/26/19 13:45,"778 Main St, Portland, ME 04101" +152153,Lightning Charging Cable,1,14.95,01/26/19 20:39,"402 Church St, Atlanta, GA 30301" +152154,Wired Headphones,1,11.99,01/29/19 13:26,"549 2nd St, Los Angeles, CA 90001" +152154,AAA Batteries (4-pack),1,2.99,01/29/19 13:26,"549 2nd St, Los Angeles, CA 90001" +152155,AA Batteries (4-pack),2,3.84,01/07/19 15:24,"139 4th St, Dallas, TX 75001" +152156,27in 4K Gaming Monitor,1,389.99,01/13/19 12:33,"16 5th St, New York City, NY 10001" +152157,AAA Batteries (4-pack),4,2.99,01/27/19 09:32,"533 Center St, San Francisco, CA 94016" +152158,AA Batteries (4-pack),1,3.84,01/09/19 05:42,"207 Forest St, Dallas, TX 75001" +152159,Apple Airpods Headphones,1,150,01/16/19 10:58,"592 Sunset St, Los Angeles, CA 90001" +152160,Bose SoundSport Headphones,1,99.99,01/03/19 10:27,"125 North St, San Francisco, CA 94016" +152161,27in 4K Gaming Monitor,1,389.99,01/17/19 07:01,"953 Hickory St, New York City, NY 10001" +152162,AA Batteries (4-pack),2,3.84,01/06/19 10:37,"139 Hill St, Dallas, TX 75001" +152163,Bose SoundSport Headphones,1,99.99,01/22/19 20:37,"657 2nd St, Los Angeles, CA 90001" +152164,Lightning Charging Cable,1,14.95,01/26/19 12:45,"529 Forest St, San Francisco, CA 94016" +152165,AA Batteries (4-pack),1,3.84,01/19/19 17:37,"123 River St, New York City, NY 10001" +152166,AAA Batteries (4-pack),1,2.99,01/23/19 16:30,"58 Forest St, New York City, NY 10001" +152167,Lightning Charging Cable,1,14.95,01/19/19 13:13,"372 Pine St, Seattle, WA 98101" +152168,ThinkPad Laptop,1,999.99,01/07/19 11:17,"931 Ridge St, Los Angeles, CA 90001" +152169,Wired Headphones,2,11.99,01/14/19 15:36,"240 Lincoln St, Los Angeles, CA 90001" +152170,Apple Airpods Headphones,1,150,01/28/19 19:07,"779 Meadow St, Boston, MA 02215" +152171,AA Batteries (4-pack),1,3.84,01/12/19 01:34,"157 Willow St, San Francisco, CA 94016" +152172,AAA Batteries (4-pack),1,2.99,01/30/19 18:23,"210 Washington St, Atlanta, GA 30301" +152173,Bose SoundSport Headphones,1,99.99,01/14/19 18:02,"160 Jefferson St, Portland, OR 97035" +152174,27in FHD Monitor,1,149.99,01/23/19 11:24,"725 Forest St, New York City, NY 10001" +152175,AAA Batteries (4-pack),1,2.99,01/16/19 12:07,"344 10th St, Los Angeles, CA 90001" +152176,USB-C Charging Cable,2,11.95,01/31/19 19:01,"33 Forest St, New York City, NY 10001" +152177,AAA Batteries (4-pack),1,2.99,01/06/19 13:48,"537 Chestnut St, Dallas, TX 75001" +152178,27in 4K Gaming Monitor,1,389.99,01/10/19 20:59,"58 Meadow St, Seattle, WA 98101" +152179,27in 4K Gaming Monitor,1,389.99,01/29/19 09:09,"9 Lake St, Austin, TX 73301" +152180,27in FHD Monitor,1,149.99,01/27/19 02:26,"643 Forest St, Atlanta, GA 30301" +152181,Bose SoundSport Headphones,1,99.99,01/11/19 23:06,"896 13th St, Los Angeles, CA 90001" +152182,20in Monitor,1,109.99,01/12/19 15:07,"519 Church St, San Francisco, CA 94016" +152183,34in Ultrawide Monitor,1,379.99,01/23/19 22:09,"681 Cedar St, Boston, MA 02215" +152184,Vareebadd Phone,1,400,01/15/19 18:32,"667 14th St, Boston, MA 02215" +152185,Lightning Charging Cable,1,14.95,01/11/19 23:19,"335 Dogwood St, San Francisco, CA 94016" +152186,Bose SoundSport Headphones,2,99.99,01/04/19 11:04,"706 12th St, San Francisco, CA 94016" +152187,27in FHD Monitor,1,149.99,01/27/19 13:51,"256 Hill St, Portland, OR 97035" +152188,iPhone,1,700,01/19/19 14:25,"211 Dogwood St, Dallas, TX 75001" +152188,Lightning Charging Cable,1,14.95,01/19/19 14:25,"211 Dogwood St, Dallas, TX 75001" +152189,Lightning Charging Cable,1,14.95,01/06/19 21:27,"275 West St, Austin, TX 73301" +152190,ThinkPad Laptop,1,999.99,01/16/19 09:32,"757 Washington St, San Francisco, CA 94016" +152191,USB-C Charging Cable,1,11.95,01/07/19 17:06,"364 River St, Dallas, TX 75001" +152192,AAA Batteries (4-pack),2,2.99,01/17/19 15:20,"673 Church St, San Francisco, CA 94016" +152193,Wired Headphones,1,11.99,01/25/19 11:23,"572 River St, San Francisco, CA 94016" +152194,34in Ultrawide Monitor,1,379.99,01/20/19 08:36,"801 Jefferson St, Dallas, TX 75001" +152195,Lightning Charging Cable,1,14.95,01/16/19 11:10,"747 Ridge St, Seattle, WA 98101" +152196,Apple Airpods Headphones,1,150,01/28/19 19:58,"813 Jackson St, Atlanta, GA 30301" +152197,Lightning Charging Cable,1,14.95,01/11/19 01:09,"437 Walnut St, San Francisco, CA 94016" +152198,AA Batteries (4-pack),3,3.84,01/06/19 23:48,"241 Meadow St, Boston, MA 02215" +152199,Apple Airpods Headphones,1,150,01/19/19 15:55,"870 Wilson St, Los Angeles, CA 90001" +152200,20in Monitor,1,109.99,01/02/19 10:22,"455 Church St, New York City, NY 10001" +152201,USB-C Charging Cable,1,11.95,01/31/19 14:20,"34 Spruce St, San Francisco, CA 94016" +152202,Wired Headphones,1,11.99,01/04/19 12:53,"440 Park St, San Francisco, CA 94016" +152203,27in FHD Monitor,1,149.99,01/28/19 13:00,"397 Hickory St, Atlanta, GA 30301" +152203,AA Batteries (4-pack),1,3.84,01/28/19 13:00,"397 Hickory St, Atlanta, GA 30301" +152204,Apple Airpods Headphones,1,150,01/11/19 11:27,"959 Park St, San Francisco, CA 94016" +152205,34in Ultrawide Monitor,1,379.99,01/11/19 15:17,"549 Washington St, Atlanta, GA 30301" +152206,27in FHD Monitor,1,149.99,01/09/19 11:50,"314 Highland St, Boston, MA 02215" +152207,AA Batteries (4-pack),2,3.84,01/25/19 04:53,"448 Sunset St, San Francisco, CA 94016" +152208,Google Phone,1,600,01/09/19 11:07,"424 7th St, Seattle, WA 98101" +152209,LG Dryer,1,600.0,01/27/19 11:45,"503 8th St, Portland, OR 97035" +152210,Wired Headphones,1,11.99,01/30/19 20:58,"448 Lakeview St, Atlanta, GA 30301" +152211,Apple Airpods Headphones,1,150,01/19/19 21:08,"58 Park St, San Francisco, CA 94016" +152212,AA Batteries (4-pack),3,3.84,01/17/19 11:03,"435 Johnson St, San Francisco, CA 94016" +152213,Macbook Pro Laptop,1,1700,01/10/19 18:39,"419 Maple St, Los Angeles, CA 90001" +152214,Wired Headphones,1,11.99,01/19/19 00:16,"253 Ridge St, Los Angeles, CA 90001" +152215,Lightning Charging Cable,1,14.95,01/13/19 14:15,"378 4th St, Los Angeles, CA 90001" +152216,Lightning Charging Cable,1,14.95,01/30/19 06:26,"43 Park St, Boston, MA 02215" +152217,AA Batteries (4-pack),1,3.84,01/05/19 16:25,"427 Lakeview St, San Francisco, CA 94016" +152218,AAA Batteries (4-pack),1,2.99,01/11/19 19:25,"654 Meadow St, Los Angeles, CA 90001" +152219,AA Batteries (4-pack),3,3.84,01/20/19 15:34,"283 North St, Austin, TX 73301" +152220,Wired Headphones,1,11.99,01/31/19 12:27,"545 9th St, San Francisco, CA 94016" +152221,Flatscreen TV,1,300,01/22/19 21:53,"396 7th St, Los Angeles, CA 90001" +152222,27in 4K Gaming Monitor,1,389.99,01/11/19 22:16,"25 Spruce St, San Francisco, CA 94016" +152223,Vareebadd Phone,1,400,01/17/19 21:48,"599 12th St, Los Angeles, CA 90001" +152223,USB-C Charging Cable,1,11.95,01/17/19 21:48,"599 12th St, Los Angeles, CA 90001" +152224,Wired Headphones,1,11.99,01/27/19 23:34,"279 River St, Seattle, WA 98101" +152225,Flatscreen TV,1,300,01/06/19 13:29,"18 Chestnut St, Portland, OR 97035" +152226,iPhone,1,700,01/05/19 13:53,"237 Lincoln St, San Francisco, CA 94016" +152227,AA Batteries (4-pack),2,3.84,01/29/19 11:20,"724 Spruce St, San Francisco, CA 94016" +152228,Bose SoundSport Headphones,1,99.99,01/12/19 16:38,"895 9th St, Austin, TX 73301" +152229,Vareebadd Phone,1,400,01/04/19 19:04,"675 Cherry St, Atlanta, GA 30301" +152230,Macbook Pro Laptop,1,1700,01/15/19 15:21,"510 Church St, Seattle, WA 98101" +152231,Lightning Charging Cable,1,14.95,01/27/19 13:06,"840 5th St, Dallas, TX 75001" +152232,20in Monitor,1,109.99,01/10/19 11:46,"225 Washington St, Seattle, WA 98101" +152233,27in 4K Gaming Monitor,1,389.99,01/31/19 12:47,"820 Maple St, Seattle, WA 98101" +152234,Lightning Charging Cable,1,14.95,01/26/19 16:03,"50 Center St, Portland, OR 97035" +152235,USB-C Charging Cable,1,11.95,01/10/19 22:32,"198 12th St, Austin, TX 73301" +152236,AA Batteries (4-pack),2,3.84,01/25/19 17:16,"502 River St, Dallas, TX 75001" +152237,AA Batteries (4-pack),1,3.84,01/30/19 10:10,"565 1st St, Seattle, WA 98101" +152238,LG Washing Machine,1,600.0,01/11/19 15:36,"366 Washington St, San Francisco, CA 94016" +152239,Apple Airpods Headphones,1,150,01/25/19 21:47,"209 Ridge St, Seattle, WA 98101" +152240,AA Batteries (4-pack),1,3.84,01/08/19 09:36,"875 Maple St, San Francisco, CA 94016" +152241,AAA Batteries (4-pack),1,2.99,01/08/19 11:52,"614 River St, San Francisco, CA 94016" +152242,USB-C Charging Cable,1,11.95,01/19/19 12:44,"664 1st St, San Francisco, CA 94016" +152243,27in 4K Gaming Monitor,1,389.99,01/05/19 04:37,"20 Jefferson St, San Francisco, CA 94016" +152244,Google Phone,1,600,01/20/19 22:15,"107 Elm St, San Francisco, CA 94016" +152245,27in 4K Gaming Monitor,1,389.99,01/19/19 23:15,"613 Spruce St, Seattle, WA 98101" +152246,USB-C Charging Cable,1,11.95,01/29/19 20:50,"132 4th St, Atlanta, GA 30301" +152247,AA Batteries (4-pack),1,3.84,01/08/19 10:17,"823 Center St, Los Angeles, CA 90001" +152248,Google Phone,1,600,01/01/19 22:25,"549 River St, New York City, NY 10001" +152248,USB-C Charging Cable,1,11.95,01/01/19 22:25,"549 River St, New York City, NY 10001" +152249,Apple Airpods Headphones,1,150,01/26/19 14:04,"754 1st St, Austin, TX 73301" +152250,AA Batteries (4-pack),1,3.84,01/01/19 11:05,"156 Cherry St, Los Angeles, CA 90001" +152251,AAA Batteries (4-pack),3,2.99,01/04/19 10:28,"334 Center St, Seattle, WA 98101" +152252,27in 4K Gaming Monitor,1,389.99,01/13/19 14:55,"858 Madison St, San Francisco, CA 94016" +152253,Lightning Charging Cable,1,14.95,01/20/19 19:01,"29 Ridge St, Dallas, TX 75001" +152254,Wired Headphones,1,11.99,01/07/19 12:01,"164 Adams St, Los Angeles, CA 90001" +152255,Flatscreen TV,1,300,01/01/19 09:35,"872 Dogwood St, San Francisco, CA 94016" +152256,27in 4K Gaming Monitor,1,389.99,01/10/19 20:00,"463 13th St, Atlanta, GA 30301" +152257,Bose SoundSport Headphones,1,99.99,01/03/19 04:54,"497 Dogwood St, New York City, NY 10001" +152258,Lightning Charging Cable,1,14.95,01/17/19 11:21,"237 Cedar St, San Francisco, CA 94016" +152259,Apple Airpods Headphones,1,150,01/13/19 14:30,"62 Pine St, San Francisco, CA 94016" +152260,34in Ultrawide Monitor,1,379.99,01/27/19 22:21,"751 6th St, Los Angeles, CA 90001" +152261,Wired Headphones,1,11.99,01/29/19 07:44,"730 Madison St, Los Angeles, CA 90001" +152262,USB-C Charging Cable,1,11.95,01/01/19 22:06,"194 West St, Atlanta, GA 30301" +152263,34in Ultrawide Monitor,1,379.99,01/13/19 16:27,"741 Center St, New York City, NY 10001" +152264,AAA Batteries (4-pack),1,2.99,01/06/19 19:34,"558 Elm St, Austin, TX 73301" +152265,AAA Batteries (4-pack),1,2.99,01/09/19 14:01,"958 Chestnut St, Los Angeles, CA 90001" +152266,Apple Airpods Headphones,1,150,01/08/19 18:53,"816 Walnut St, Boston, MA 02215" +152267,Apple Airpods Headphones,1,150,01/09/19 23:00,"14 Highland St, San Francisco, CA 94016" +152268,Lightning Charging Cable,1,14.95,01/12/19 13:22,"342 Meadow St, Dallas, TX 75001" +152269,USB-C Charging Cable,1,11.95,01/12/19 15:41,"833 Chestnut St, San Francisco, CA 94016" +152270,Lightning Charging Cable,1,14.95,01/07/19 18:59,"145 Main St, Los Angeles, CA 90001" +152271,Lightning Charging Cable,1,14.95,01/12/19 06:22,"809 13th St, New York City, NY 10001" +152272,Google Phone,1,600,01/02/19 14:41,"768 Elm St, Portland, OR 97035" +152273,Wired Headphones,1,11.99,01/05/19 09:22,"803 10th St, San Francisco, CA 94016" +152274,Macbook Pro Laptop,1,1700,01/15/19 13:29,"932 Lincoln St, San Francisco, CA 94016" +152275,20in Monitor,1,109.99,01/29/19 21:47,"83 Washington St, Seattle, WA 98101" +152276,Lightning Charging Cable,1,14.95,01/09/19 10:46,"143 Washington St, San Francisco, CA 94016" +152277,ThinkPad Laptop,1,999.99,01/11/19 09:33,"576 6th St, Dallas, TX 75001" +152278,USB-C Charging Cable,1,11.95,01/05/19 10:25,"927 Adams St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +152279,Apple Airpods Headphones,1,150,01/20/19 20:21,"883 Meadow St, Boston, MA 02215" +152280,AA Batteries (4-pack),2,3.84,01/11/19 18:31,"534 Cherry St, New York City, NY 10001" +152281,Bose SoundSport Headphones,1,99.99,01/17/19 08:58,"320 Pine St, New York City, NY 10001" +152282,Google Phone,1,600,01/27/19 10:48,"826 Lake St, New York City, NY 10001" +152282,USB-C Charging Cable,3,11.95,01/27/19 10:48,"826 Lake St, New York City, NY 10001" +152283,Bose SoundSport Headphones,1,99.99,01/15/19 12:08,"154 Maple St, Boston, MA 02215" +152284,USB-C Charging Cable,1,11.95,01/05/19 23:21,"802 Cedar St, San Francisco, CA 94016" +152285,iPhone,1,700,01/31/19 22:51,"949 1st St, Los Angeles, CA 90001" +152286,27in 4K Gaming Monitor,1,389.99,01/13/19 16:42,"851 Cherry St, San Francisco, CA 94016" +152287,AAA Batteries (4-pack),3,2.99,01/18/19 19:58,"519 Elm St, San Francisco, CA 94016" +152288,Lightning Charging Cable,1,14.95,01/16/19 00:30,"167 4th St, San Francisco, CA 94016" +152289,27in FHD Monitor,1,149.99,01/15/19 14:50,"110 Lincoln St, Boston, MA 02215" +152290,Lightning Charging Cable,1,14.95,01/15/19 14:36,"638 11th St, Seattle, WA 98101" +152291,Google Phone,1,600,01/11/19 12:07,"938 Walnut St, Los Angeles, CA 90001" +152291,USB-C Charging Cable,2,11.95,01/11/19 12:07,"938 Walnut St, Los Angeles, CA 90001" +152292,34in Ultrawide Monitor,1,379.99,01/01/19 08:55,"603 North St, Los Angeles, CA 90001" +152293,USB-C Charging Cable,1,11.95,01/18/19 21:22,"405 Lakeview St, Portland, OR 97035" +152294,Macbook Pro Laptop,1,1700,01/24/19 17:31,"312 14th St, Los Angeles, CA 90001" +152295,Bose SoundSport Headphones,1,99.99,01/09/19 22:17,"26 West St, Dallas, TX 75001" +152296,27in FHD Monitor,1,149.99,01/09/19 18:39,"757 Forest St, San Francisco, CA 94016" +152297,Bose SoundSport Headphones,1,99.99,01/15/19 15:14,"428 Jackson St, San Francisco, CA 94016" +152298,Wired Headphones,1,11.99,01/19/19 17:43,"854 Walnut St, San Francisco, CA 94016" +152299,Bose SoundSport Headphones,1,99.99,01/25/19 11:46,"671 West St, San Francisco, CA 94016" +152300,Lightning Charging Cable,1,14.95,01/14/19 08:18,"647 Lakeview St, San Francisco, CA 94016" +152301,USB-C Charging Cable,1,11.95,01/08/19 07:04,"223 Highland St, Los Angeles, CA 90001" +152302,USB-C Charging Cable,1,11.95,01/03/19 13:33,"317 Hill St, Portland, OR 97035" +152303,USB-C Charging Cable,1,11.95,01/25/19 12:57,"666 Meadow St, Boston, MA 02215" +152304,AAA Batteries (4-pack),1,2.99,01/19/19 02:26,"380 Ridge St, Seattle, WA 98101" +152305,AA Batteries (4-pack),1,3.84,01/19/19 14:51,"291 Johnson St, Los Angeles, CA 90001" +152306,AA Batteries (4-pack),1,3.84,01/01/19 11:01,"551 13th St, Los Angeles, CA 90001" +152307,Google Phone,1,600,01/02/19 11:45,"839 Jackson St, New York City, NY 10001" +152308,Lightning Charging Cable,1,14.95,01/01/19 07:32,"283 Adams St, Los Angeles, CA 90001" +152309,Wired Headphones,1,11.99,01/04/19 12:18,"145 12th St, New York City, NY 10001" +152310,AA Batteries (4-pack),1,3.84,01/31/19 15:45,"766 2nd St, Atlanta, GA 30301" +152311,Apple Airpods Headphones,1,150,01/08/19 16:12,"29 Washington St, New York City, NY 10001" +152312,Lightning Charging Cable,1,14.95,01/23/19 09:37,"603 Madison St, Seattle, WA 98101" +152313,USB-C Charging Cable,1,11.95,01/25/19 17:10,"82 Church St, Dallas, TX 75001" +152314,iPhone,1,700,01/13/19 19:15,"536 9th St, San Francisco, CA 94016" +152314,Lightning Charging Cable,1,14.95,01/13/19 19:15,"536 9th St, San Francisco, CA 94016" +152315,AA Batteries (4-pack),1,3.84,01/08/19 09:27,"885 Jackson St, Seattle, WA 98101" +152316,Macbook Pro Laptop,1,1700,01/25/19 10:21,"893 Johnson St, Atlanta, GA 30301" +152317,20in Monitor,1,109.99,01/28/19 13:13,"632 Lake St, New York City, NY 10001" +152318,AA Batteries (4-pack),1,3.84,01/03/19 13:15,"282 Cedar St, San Francisco, CA 94016" +152319,USB-C Charging Cable,2,11.95,01/16/19 20:22,"130 Pine St, Atlanta, GA 30301" +152320,AAA Batteries (4-pack),3,2.99,01/25/19 07:32,"138 8th St, Austin, TX 73301" +152321,Bose SoundSport Headphones,1,99.99,01/31/19 19:47,"682 Pine St, Boston, MA 02215" +152322,27in 4K Gaming Monitor,1,389.99,01/01/19 11:08,"804 Willow St, San Francisco, CA 94016" +152323,34in Ultrawide Monitor,1,379.99,01/03/19 15:50,"216 Willow St, New York City, NY 10001" +152324,Bose SoundSport Headphones,1,99.99,01/04/19 13:28,"21 Lake St, Los Angeles, CA 90001" +152325,AA Batteries (4-pack),1,3.84,01/07/19 00:49,"513 4th St, New York City, NY 10001" +152326,USB-C Charging Cable,1,11.95,01/13/19 11:47,"355 Maple St, San Francisco, CA 94016" +152327,USB-C Charging Cable,1,11.95,01/28/19 04:59,"576 11th St, Dallas, TX 75001" +152328,ThinkPad Laptop,1,999.99,01/27/19 19:10,"304 Jefferson St, Austin, TX 73301" +152329,Bose SoundSport Headphones,1,99.99,01/27/19 17:24,"614 Dogwood St, San Francisco, CA 94016" +152330,Lightning Charging Cable,2,14.95,01/15/19 15:59,"405 12th St, New York City, NY 10001" +152331,AAA Batteries (4-pack),1,2.99,01/13/19 21:57,"614 12th St, New York City, NY 10001" +152332,USB-C Charging Cable,1,11.95,01/02/19 20:16,"959 11th St, San Francisco, CA 94016" +152333,Lightning Charging Cable,1,14.95,01/10/19 18:38,"784 Meadow St, San Francisco, CA 94016" +152334,Lightning Charging Cable,1,14.95,01/22/19 10:52,"942 Forest St, San Francisco, CA 94016" +152335,USB-C Charging Cable,1,11.95,01/06/19 20:00,"595 Walnut St, Dallas, TX 75001" +152336,27in FHD Monitor,1,149.99,01/15/19 13:28,"673 7th St, San Francisco, CA 94016" +152337,Wired Headphones,1,11.99,01/16/19 15:23,"971 Sunset St, San Francisco, CA 94016" +152338,Wired Headphones,1,11.99,01/02/19 15:34,"46 11th St, Los Angeles, CA 90001" +152339,USB-C Charging Cable,1,11.95,01/11/19 14:05,"658 Main St, San Francisco, CA 94016" +152340,USB-C Charging Cable,1,11.95,01/08/19 23:59,"667 Lincoln St, Los Angeles, CA 90001" +152341,Lightning Charging Cable,1,14.95,01/27/19 17:44,"829 Forest St, Los Angeles, CA 90001" +152342,AAA Batteries (4-pack),2,2.99,01/29/19 14:01,"532 Dogwood St, Seattle, WA 98101" +152343,Wired Headphones,1,11.99,01/29/19 00:34,"403 1st St, Atlanta, GA 30301" +152344,iPhone,1,700,01/25/19 01:56,"77 West St, San Francisco, CA 94016" +152345,AA Batteries (4-pack),1,3.84,01/08/19 19:44,"879 Hill St, New York City, NY 10001" +152346,Lightning Charging Cable,1,14.95,01/12/19 16:26,"211 Hickory St, Los Angeles, CA 90001" +152347,USB-C Charging Cable,1,11.95,01/20/19 17:43,"852 Lake St, Los Angeles, CA 90001" +152348,USB-C Charging Cable,1,11.95,01/02/19 00:25,"74 1st St, San Francisco, CA 94016" +152349,Vareebadd Phone,1,400,01/28/19 14:54,"530 12th St, Portland, OR 97035" +152349,USB-C Charging Cable,1,11.95,01/28/19 14:54,"530 12th St, Portland, OR 97035" +152350,Bose SoundSport Headphones,1,99.99,01/01/19 13:54,"13 Washington St, New York City, NY 10001" +152351,Apple Airpods Headphones,1,150,01/07/19 18:20,"251 Chestnut St, Atlanta, GA 30301" +152352,AA Batteries (4-pack),1,3.84,01/08/19 10:24,"653 Elm St, New York City, NY 10001" +152353,USB-C Charging Cable,1,11.95,01/19/19 15:50,"39 10th St, San Francisco, CA 94016" +152354,Lightning Charging Cable,1,14.95,01/24/19 21:20,"560 Willow St, Portland, OR 97035" +152355,Wired Headphones,1,11.99,01/22/19 12:30,"686 9th St, Dallas, TX 75001" +152356,AAA Batteries (4-pack),1,2.99,01/15/19 15:30,"772 7th St, Portland, OR 97035" +152357,ThinkPad Laptop,1,999.99,01/28/19 15:05,"541 4th St, New York City, NY 10001" +152358,Google Phone,1,600,01/16/19 17:43,"938 Hill St, Boston, MA 02215" +152359,Wired Headphones,1,11.99,01/15/19 15:16,"658 Park St, Dallas, TX 75001" +152360,27in 4K Gaming Monitor,1,389.99,01/14/19 07:46,"449 Jackson St, San Francisco, CA 94016" +152361,AAA Batteries (4-pack),1,2.99,01/31/19 18:19,"822 Cedar St, Seattle, WA 98101" +152362,iPhone,1,700,01/27/19 20:15,"155 2nd St, San Francisco, CA 94016" +152362,Lightning Charging Cable,1,14.95,01/27/19 20:15,"155 2nd St, San Francisco, CA 94016" +152362,Macbook Pro Laptop,1,1700,01/27/19 20:15,"155 2nd St, San Francisco, CA 94016" +152363,27in FHD Monitor,1,149.99,01/17/19 15:12,"321 Sunset St, Los Angeles, CA 90001" +152364,Apple Airpods Headphones,1,150,01/06/19 16:02,"16 Spruce St, Portland, ME 04101" +152365,AA Batteries (4-pack),1,3.84,01/08/19 12:57,"714 6th St, Seattle, WA 98101" +152366,Flatscreen TV,1,300,01/20/19 11:35,"735 South St, San Francisco, CA 94016" +152367,Lightning Charging Cable,1,14.95,01/17/19 09:38,"403 13th St, Dallas, TX 75001" +152368,34in Ultrawide Monitor,1,379.99,01/11/19 21:25,"375 2nd St, San Francisco, CA 94016" +152369,Wired Headphones,1,11.99,01/11/19 23:55,"91 7th St, Portland, OR 97035" +152370,AAA Batteries (4-pack),1,2.99,01/30/19 20:02,"238 Madison St, San Francisco, CA 94016" +152371,ThinkPad Laptop,1,999.99,01/25/19 11:36,"16 Spruce St, Seattle, WA 98101" +152372,USB-C Charging Cable,1,11.95,01/21/19 23:51,"593 14th St, San Francisco, CA 94016" +152373,ThinkPad Laptop,1,999.99,01/01/19 15:32,"594 4th St, Portland, OR 97035" +152374,Bose SoundSport Headphones,1,99.99,01/06/19 20:45,"520 Park St, San Francisco, CA 94016" +152375,AA Batteries (4-pack),1,3.84,01/26/19 07:37,"973 Maple St, Atlanta, GA 30301" +152376,iPhone,1,700,01/21/19 21:00,"597 Lincoln St, Portland, ME 04101" +152376,iPhone,1,700,01/21/19 21:00,"597 Lincoln St, Portland, ME 04101" +152377,34in Ultrawide Monitor,1,379.99,01/04/19 22:22,"585 Meadow St, Dallas, TX 75001" +152377,27in FHD Monitor,1,149.99,01/04/19 22:22,"585 Meadow St, Dallas, TX 75001" +152378,Lightning Charging Cable,1,14.95,01/20/19 20:10,"249 Highland St, San Francisco, CA 94016" +152379,AAA Batteries (4-pack),1,2.99,01/29/19 17:41,"230 7th St, New York City, NY 10001" +152380,AAA Batteries (4-pack),1,2.99,01/01/19 13:18,"960 Elm St, Austin, TX 73301" +152381,iPhone,1,700,01/23/19 12:28,"699 Jackson St, Boston, MA 02215" +152382,Bose SoundSport Headphones,1,99.99,01/13/19 13:00,"5 Cedar St, San Francisco, CA 94016" +152383,Apple Airpods Headphones,1,150,01/05/19 22:41,"778 South St, Los Angeles, CA 90001" +152384,AAA Batteries (4-pack),1,2.99,01/18/19 21:00,"821 Highland St, Atlanta, GA 30301" +152385,AAA Batteries (4-pack),2,2.99,01/03/19 14:23,"478 Church St, New York City, NY 10001" +152386,34in Ultrawide Monitor,1,379.99,01/14/19 15:05,"392 10th St, Boston, MA 02215" +152387,Lightning Charging Cable,1,14.95,01/10/19 07:47,"851 5th St, Austin, TX 73301" +152388,AA Batteries (4-pack),2,3.84,01/10/19 22:13,"238 11th St, Los Angeles, CA 90001" +152389,AA Batteries (4-pack),2,3.84,01/03/19 16:04,"567 14th St, New York City, NY 10001" +152390,USB-C Charging Cable,1,11.95,01/04/19 10:50,"379 Jackson St, Los Angeles, CA 90001" +152391,Bose SoundSport Headphones,1,99.99,01/15/19 23:56,"282 Spruce St, Los Angeles, CA 90001" +152392,Lightning Charging Cable,1,14.95,01/05/19 15:34,"205 13th St, Los Angeles, CA 90001" +152393,27in FHD Monitor,1,149.99,01/25/19 15:34,"6 11th St, San Francisco, CA 94016" +152394,27in 4K Gaming Monitor,1,389.99,01/11/19 13:33,"980 Park St, San Francisco, CA 94016" +152395,AA Batteries (4-pack),1,3.84,01/04/19 22:15,"240 Park St, San Francisco, CA 94016" +152396,27in FHD Monitor,1,149.99,01/28/19 09:34,"159 Sunset St, San Francisco, CA 94016" +152397,AAA Batteries (4-pack),3,2.99,01/12/19 19:30,"732 Spruce St, Dallas, TX 75001" +152398,Apple Airpods Headphones,1,150,01/28/19 19:35,"967 Hill St, New York City, NY 10001" +152399,Lightning Charging Cable,1,14.95,01/28/19 12:24,"997 Ridge St, Austin, TX 73301" +152400,AAA Batteries (4-pack),2,2.99,01/17/19 10:43,"573 8th St, Los Angeles, CA 90001" +152401,AAA Batteries (4-pack),5,2.99,01/11/19 13:43,"305 Lincoln St, Portland, OR 97035" +152402,Wired Headphones,1,11.99,01/08/19 23:04,"193 Meadow St, Atlanta, GA 30301" +152403,AA Batteries (4-pack),1,3.84,01/09/19 10:40,"207 Johnson St, San Francisco, CA 94016" +152404,USB-C Charging Cable,1,11.95,01/13/19 13:45,"527 Pine St, Dallas, TX 75001" +152405,Macbook Pro Laptop,1,1700,01/04/19 14:25,"304 Park St, New York City, NY 10001" +152406,iPhone,1,700,01/01/19 13:48,"285 Lincoln St, San Francisco, CA 94016" +152407,27in 4K Gaming Monitor,1,389.99,01/03/19 06:54,"834 Johnson St, Boston, MA 02215" +152408,Bose SoundSport Headphones,1,99.99,01/24/19 09:28,"592 Maple St, San Francisco, CA 94016" +152409,Bose SoundSport Headphones,1,99.99,01/14/19 21:07,"324 Park St, Los Angeles, CA 90001" +152410,AA Batteries (4-pack),1,3.84,01/05/19 14:13,"598 Walnut St, Boston, MA 02215" +152411,20in Monitor,1,109.99,01/15/19 11:09,"621 5th St, Los Angeles, CA 90001" +152412,AA Batteries (4-pack),1,3.84,01/16/19 19:33,"324 Jefferson St, Los Angeles, CA 90001" +152413,34in Ultrawide Monitor,1,379.99,01/25/19 10:06,"325 9th St, New York City, NY 10001" +152414,Lightning Charging Cable,1,14.95,01/25/19 11:56,"965 12th St, Los Angeles, CA 90001" +152415,USB-C Charging Cable,1,11.95,01/02/19 11:22,"756 12th St, Seattle, WA 98101" +152416,Apple Airpods Headphones,1,150,01/29/19 14:09,"945 Lakeview St, New York City, NY 10001" +152417,Bose SoundSport Headphones,1,99.99,01/29/19 06:05,"175 Jackson St, Portland, OR 97035" +152418,AAA Batteries (4-pack),1,2.99,01/30/19 12:31,"268 Highland St, Los Angeles, CA 90001" +152419,Lightning Charging Cable,1,14.95,01/22/19 22:41,"939 Jackson St, San Francisco, CA 94016" +152420,USB-C Charging Cable,1,11.95,01/22/19 12:53,"387 South St, Dallas, TX 75001" +152421,Bose SoundSport Headphones,1,99.99,01/16/19 09:24,"567 North St, Atlanta, GA 30301" +152422,AAA Batteries (4-pack),1,2.99,01/31/19 20:09,"290 Meadow St, Los Angeles, CA 90001" +152423,34in Ultrawide Monitor,1,379.99,01/22/19 16:31,"476 Highland St, Dallas, TX 75001" +152424,USB-C Charging Cable,2,11.95,01/30/19 12:17,"486 2nd St, Dallas, TX 75001" +152425,Bose SoundSport Headphones,1,99.99,01/17/19 07:42,"884 Elm St, Boston, MA 02215" +152426,AAA Batteries (4-pack),2,2.99,01/14/19 22:12,"552 Washington St, Atlanta, GA 30301" +152427,AAA Batteries (4-pack),2,2.99,01/04/19 09:58,"692 Cherry St, San Francisco, CA 94016" +152428,Lightning Charging Cable,1,14.95,01/08/19 09:26,"411 Main St, San Francisco, CA 94016" +152429,Wired Headphones,1,11.99,01/21/19 23:30,"635 11th St, Seattle, WA 98101" +152430,Apple Airpods Headphones,1,150,01/12/19 15:12,"52 4th St, Portland, OR 97035" +152431,34in Ultrawide Monitor,1,379.99,01/26/19 08:12,"761 13th St, Los Angeles, CA 90001" +152432,AA Batteries (4-pack),1,3.84,01/05/19 07:59,"548 Jackson St, Los Angeles, CA 90001" +152433,Lightning Charging Cable,1,14.95,01/11/19 18:47,"803 Willow St, San Francisco, CA 94016" +152434,Wired Headphones,1,11.99,01/09/19 22:21,"164 Park St, New York City, NY 10001" +152435,AAA Batteries (4-pack),1,2.99,01/22/19 20:26,"326 4th St, Seattle, WA 98101" +152436,ThinkPad Laptop,1,999.99,01/02/19 20:33,"604 5th St, San Francisco, CA 94016" +152437,AA Batteries (4-pack),1,3.84,01/19/19 21:18,"373 Walnut St, Portland, OR 97035" +152438,USB-C Charging Cable,1,11.95,01/18/19 13:07,"364 Sunset St, San Francisco, CA 94016" +152439,Lightning Charging Cable,1,14.95,01/20/19 12:45,"642 Spruce St, Seattle, WA 98101" +152440,Wired Headphones,1,11.99,01/10/19 12:12,"672 13th St, Los Angeles, CA 90001" +152441,Lightning Charging Cable,1,14.95,01/19/19 10:42,"15 Highland St, Austin, TX 73301" +152442,Flatscreen TV,1,300,01/08/19 23:38,"403 Elm St, San Francisco, CA 94016" +152443,20in Monitor,1,109.99,01/27/19 22:28,"177 Adams St, Los Angeles, CA 90001" +152444,Wired Headphones,1,11.99,01/14/19 16:55,"472 8th St, San Francisco, CA 94016" +152444,AAA Batteries (4-pack),1,2.99,01/14/19 16:55,"472 8th St, San Francisco, CA 94016" +152445,Lightning Charging Cable,1,14.95,01/20/19 23:53,"602 North St, New York City, NY 10001" +152446,34in Ultrawide Monitor,1,379.99,01/07/19 22:35,"807 7th St, Austin, TX 73301" +152447,ThinkPad Laptop,1,999.99,01/17/19 20:57,"624 Willow St, Los Angeles, CA 90001" +152448,USB-C Charging Cable,1,11.95,01/22/19 22:12,"205 Forest St, Los Angeles, CA 90001" +152449,AAA Batteries (4-pack),1,2.99,01/17/19 09:35,"237 Ridge St, Atlanta, GA 30301" +152450,Bose SoundSport Headphones,1,99.99,01/28/19 19:41,"566 Maple St, Boston, MA 02215" +152451,AAA Batteries (4-pack),3,2.99,01/14/19 09:35,"912 Maple St, Portland, OR 97035" +152452,Lightning Charging Cable,1,14.95,01/30/19 00:40,"472 6th St, San Francisco, CA 94016" +152453,USB-C Charging Cable,1,11.95,01/07/19 23:37,"169 Wilson St, Atlanta, GA 30301" +152454,Apple Airpods Headphones,1,150,01/11/19 20:08,"308 Pine St, Los Angeles, CA 90001" +152455,AA Batteries (4-pack),1,3.84,01/05/19 15:22,"632 13th St, New York City, NY 10001" +152456,AAA Batteries (4-pack),2,2.99,01/29/19 17:41,"246 Maple St, Los Angeles, CA 90001" +152457,34in Ultrawide Monitor,1,379.99,01/02/19 16:16,"730 1st St, San Francisco, CA 94016" +152458,27in FHD Monitor,1,149.99,01/15/19 19:43,"763 Jefferson St, Atlanta, GA 30301" +152459,iPhone,1,700,01/30/19 20:53,"116 Main St, Portland, OR 97035" +152459,Lightning Charging Cable,2,14.95,01/30/19 20:53,"116 Main St, Portland, OR 97035" +152460,Lightning Charging Cable,1,14.95,01/31/19 14:48,"88 Lakeview St, Los Angeles, CA 90001" +152461,Apple Airpods Headphones,1,150,01/01/19 13:48,"873 Cedar St, Boston, MA 02215" +152462,Bose SoundSport Headphones,1,99.99,01/27/19 16:32,"973 Spruce St, Portland, ME 04101" +152463,Macbook Pro Laptop,1,1700,01/15/19 15:40,"153 14th St, Atlanta, GA 30301" +152464,Apple Airpods Headphones,1,150,01/21/19 14:03,"839 Main St, Portland, OR 97035" +152465,AAA Batteries (4-pack),1,2.99,01/27/19 18:00,"644 Church St, Los Angeles, CA 90001" +152466,Lightning Charging Cable,1,14.95,01/11/19 00:41,"944 Jackson St, San Francisco, CA 94016" +152467,Bose SoundSport Headphones,1,99.99,01/15/19 21:39,"765 2nd St, Atlanta, GA 30301" +152468,AA Batteries (4-pack),1,3.84,01/16/19 15:10,"780 2nd St, San Francisco, CA 94016" +152469,AA Batteries (4-pack),1,3.84,01/02/19 17:09,"869 14th St, San Francisco, CA 94016" +152470,AAA Batteries (4-pack),1,2.99,01/04/19 05:02,"605 Walnut St, Los Angeles, CA 90001" +152471,AA Batteries (4-pack),2,3.84,01/21/19 13:55,"760 Willow St, Boston, MA 02215" +152472,Bose SoundSport Headphones,1,99.99,01/15/19 11:37,"969 2nd St, New York City, NY 10001" +152473,USB-C Charging Cable,1,11.95,01/28/19 19:23,"43 6th St, Los Angeles, CA 90001" +152473,iPhone,1,700,01/28/19 19:23,"43 6th St, Los Angeles, CA 90001" +152474,Google Phone,1,600,01/20/19 19:39,"918 Sunset St, San Francisco, CA 94016" +152475,USB-C Charging Cable,1,11.95,01/10/19 21:28,"30 Lakeview St, Dallas, TX 75001" +152476,Bose SoundSport Headphones,1,99.99,01/09/19 19:10,"156 4th St, Portland, ME 04101" +152477,Wired Headphones,3,11.99,01/14/19 13:59,"299 Elm St, New York City, NY 10001" +152478,Macbook Pro Laptop,1,1700,01/12/19 11:38,"998 Washington St, Dallas, TX 75001" +152479,27in 4K Gaming Monitor,1,389.99,01/15/19 16:49,"929 Main St, New York City, NY 10001" +152480,20in Monitor,1,109.99,01/27/19 17:57,"367 Spruce St, Los Angeles, CA 90001" +152481,USB-C Charging Cable,1,11.95,01/10/19 11:22,"35 Highland St, San Francisco, CA 94016" +152482,AA Batteries (4-pack),1,3.84,01/04/19 04:31,"551 Hickory St, San Francisco, CA 94016" +152483,Bose SoundSport Headphones,1,99.99,01/13/19 19:41,"95 13th St, Los Angeles, CA 90001" +152484,Flatscreen TV,1,300,01/26/19 12:09,"434 5th St, New York City, NY 10001" +152485,AA Batteries (4-pack),2,3.84,01/12/19 22:50,"401 Ridge St, Boston, MA 02215" +152486,AAA Batteries (4-pack),1,2.99,01/02/19 17:02,"91 Forest St, San Francisco, CA 94016" +152487,27in FHD Monitor,1,149.99,01/22/19 23:55,"334 8th St, Boston, MA 02215" +152488,Lightning Charging Cable,1,14.95,01/30/19 10:01,"640 Chestnut St, New York City, NY 10001" +152489,Lightning Charging Cable,1,14.95,01/24/19 10:38,"94 14th St, San Francisco, CA 94016" +152490,AA Batteries (4-pack),1,3.84,01/29/19 19:51,"951 Forest St, Portland, OR 97035" +152491,27in 4K Gaming Monitor,1,389.99,01/18/19 13:29,"797 10th St, New York City, NY 10001" +152492,USB-C Charging Cable,2,11.95,01/03/19 21:27,"879 Pine St, New York City, NY 10001" +152493,Lightning Charging Cable,1,14.95,01/10/19 13:57,"573 13th St, San Francisco, CA 94016" +152494,Lightning Charging Cable,1,14.95,01/18/19 23:45,"566 11th St, Boston, MA 02215" +152495,AAA Batteries (4-pack),1,2.99,01/01/19 06:45,"292 10th St, Dallas, TX 75001" +152496,Bose SoundSport Headphones,1,99.99,01/04/19 05:10,"903 Jackson St, San Francisco, CA 94016" +152497,Apple Airpods Headphones,1,150,01/27/19 18:09,"176 1st St, Austin, TX 73301" +152498,Wired Headphones,1,11.99,01/04/19 11:19,"520 Cedar St, Atlanta, GA 30301" +152499,Apple Airpods Headphones,1,150,01/31/19 13:12,"504 12th St, Atlanta, GA 30301" +152500,Wired Headphones,1,11.99,01/28/19 14:54,"73 11th St, Los Angeles, CA 90001" +152501,USB-C Charging Cable,1,11.95,01/31/19 21:00,"239 Jefferson St, Los Angeles, CA 90001" +152502,AA Batteries (4-pack),2,3.84,01/27/19 18:10,"543 Spruce St, Los Angeles, CA 90001" +152503,AA Batteries (4-pack),1,3.84,01/24/19 20:33,"820 Park St, Seattle, WA 98101" +152504,27in FHD Monitor,1,149.99,01/10/19 10:40,"242 Ridge St, Los Angeles, CA 90001" +152505,USB-C Charging Cable,1,11.95,01/19/19 13:01,"89 14th St, Atlanta, GA 30301" +152506,USB-C Charging Cable,1,11.95,01/19/19 14:19,"466 4th St, Austin, TX 73301" +152507,Wired Headphones,1,11.99,01/13/19 09:19,"134 Pine St, Seattle, WA 98101" +152508,Macbook Pro Laptop,1,1700,01/12/19 15:54,"879 Jackson St, Dallas, TX 75001" +152509,Bose SoundSport Headphones,1,99.99,01/11/19 11:37,"936 Cedar St, San Francisco, CA 94016" +152510,iPhone,1,700,01/15/19 13:33,"214 Johnson St, Austin, TX 73301" +152511,Wired Headphones,1,11.99,01/31/19 17:41,"8 9th St, Atlanta, GA 30301" +152512,Google Phone,1,600,01/16/19 17:10,"534 Ridge St, Portland, OR 97035" +152512,USB-C Charging Cable,1,11.95,01/16/19 17:10,"534 Ridge St, Portland, OR 97035" +152513,27in FHD Monitor,1,149.99,01/15/19 16:20,"409 Maple St, San Francisco, CA 94016" +152514,27in 4K Gaming Monitor,1,389.99,01/05/19 11:18,"509 Church St, Dallas, TX 75001" +152515,27in 4K Gaming Monitor,1,389.99,01/01/19 10:23,"564 Main St, New York City, NY 10001" +152516,AAA Batteries (4-pack),2,2.99,01/10/19 07:51,"432 Chestnut St, San Francisco, CA 94016" +152517,Bose SoundSport Headphones,1,99.99,01/13/19 10:34,"143 River St, Portland, OR 97035" +152518,AA Batteries (4-pack),1,3.84,01/29/19 13:57,"20 14th St, Atlanta, GA 30301" +152519,USB-C Charging Cable,1,11.95,01/30/19 17:32,"283 Pine St, New York City, NY 10001" +152520,Lightning Charging Cable,1,14.95,01/21/19 17:37,"789 Forest St, San Francisco, CA 94016" +152521,Macbook Pro Laptop,1,1700,01/20/19 06:29,"55 11th St, Seattle, WA 98101" +152522,ThinkPad Laptop,1,999.99,01/09/19 15:19,"9 Meadow St, San Francisco, CA 94016" +152523,20in Monitor,1,109.99,01/13/19 16:28,"801 Spruce St, Boston, MA 02215" +152524,Bose SoundSport Headphones,1,99.99,01/20/19 10:52,"306 12th St, Austin, TX 73301" +152525,USB-C Charging Cable,1,11.95,01/17/19 14:25,"44 River St, Atlanta, GA 30301" +152526,AAA Batteries (4-pack),1,2.99,01/06/19 14:37,"952 Center St, New York City, NY 10001" +152527,Wired Headphones,1,11.99,01/11/19 10:12,"403 West St, Atlanta, GA 30301" +152528,Apple Airpods Headphones,1,150,01/03/19 19:27,"212 Spruce St, Austin, TX 73301" +152529,Wired Headphones,1,11.99,01/21/19 19:13,"184 10th St, New York City, NY 10001" +152530,AA Batteries (4-pack),1,3.84,01/04/19 14:21,"841 Highland St, San Francisco, CA 94016" +152531,AA Batteries (4-pack),3,3.84,01/01/19 05:30,"82 Adams St, Portland, ME 04101" +152532,AA Batteries (4-pack),1,3.84,01/27/19 12:10,"570 Johnson St, Seattle, WA 98101" +152533,Google Phone,1,600,01/27/19 00:11,"712 9th St, San Francisco, CA 94016" +152534,USB-C Charging Cable,1,11.95,01/26/19 19:06,"511 Madison St, San Francisco, CA 94016" +152535,AA Batteries (4-pack),1,3.84,01/05/19 13:17,"273 Washington St, New York City, NY 10001" +152536,Lightning Charging Cable,1,14.95,01/08/19 13:15,"898 10th St, Dallas, TX 75001" +152537,Lightning Charging Cable,1,14.95,01/19/19 20:17,"760 Madison St, Los Angeles, CA 90001" +152538,34in Ultrawide Monitor,1,379.99,01/29/19 23:26,"274 River St, Boston, MA 02215" +152539,USB-C Charging Cable,1,11.95,01/09/19 22:21,"697 Adams St, New York City, NY 10001" +152540,Apple Airpods Headphones,1,150,01/28/19 17:42,"588 8th St, Boston, MA 02215" +152541,USB-C Charging Cable,1,11.95,01/09/19 14:43,"840 13th St, San Francisco, CA 94016" +152542,AAA Batteries (4-pack),2,2.99,01/13/19 18:34,"521 Adams St, Seattle, WA 98101" +152543,ThinkPad Laptop,1,999.99,01/16/19 18:50,"827 Dogwood St, Seattle, WA 98101" +152543,Vareebadd Phone,1,400,01/16/19 18:50,"827 Dogwood St, Seattle, WA 98101" +152544,AA Batteries (4-pack),1,3.84,01/16/19 17:40,"81 Jackson St, New York City, NY 10001" +152545,Apple Airpods Headphones,1,150,01/18/19 17:25,"603 Cherry St, San Francisco, CA 94016" +152546,AA Batteries (4-pack),1,3.84,01/21/19 07:22,"849 Highland St, New York City, NY 10001" +152547,USB-C Charging Cable,1,11.95,01/20/19 14:00,"859 Sunset St, San Francisco, CA 94016" +152548,Wired Headphones,1,11.99,01/29/19 00:13,"1 Park St, Atlanta, GA 30301" +152549,Apple Airpods Headphones,1,150,01/04/19 20:50,"253 Forest St, San Francisco, CA 94016" +152550,Apple Airpods Headphones,1,150,01/28/19 15:25,"342 Walnut St, Austin, TX 73301" +152551,Macbook Pro Laptop,1,1700,01/15/19 19:41,"424 10th St, New York City, NY 10001" +152552,AAA Batteries (4-pack),1,2.99,01/22/19 12:12,"946 West St, Los Angeles, CA 90001" +152553,Flatscreen TV,1,300,01/10/19 16:42,"141 7th St, Los Angeles, CA 90001" +152554,AA Batteries (4-pack),1,3.84,01/16/19 22:43,"559 5th St, Boston, MA 02215" +152555,AA Batteries (4-pack),1,3.84,01/05/19 17:24,"993 Adams St, Seattle, WA 98101" +152556,USB-C Charging Cable,1,11.95,01/18/19 10:25,"635 Park St, Los Angeles, CA 90001" +152557,Lightning Charging Cable,1,14.95,01/25/19 11:56,"314 North St, San Francisco, CA 94016" +152558,Wired Headphones,2,11.99,01/29/19 16:16,"637 Park St, San Francisco, CA 94016" +152559,20in Monitor,1,109.99,01/23/19 16:48,"281 Lakeview St, Los Angeles, CA 90001" +152560,AA Batteries (4-pack),2,3.84,01/05/19 21:12,"744 Church St, San Francisco, CA 94016" +152561,27in FHD Monitor,1,149.99,01/30/19 07:48,"371 Jefferson St, Atlanta, GA 30301" +152562,Lightning Charging Cable,1,14.95,01/26/19 09:48,"774 Lakeview St, New York City, NY 10001" +152563,Apple Airpods Headphones,1,150,01/25/19 00:10,"272 Hill St, Boston, MA 02215" +152564,USB-C Charging Cable,1,11.95,01/14/19 14:34,"793 13th St, Austin, TX 73301" +152565,Wired Headphones,1,11.99,01/11/19 14:54,"190 Highland St, San Francisco, CA 94016" +152566,Apple Airpods Headphones,1,150,01/23/19 13:24,"790 4th St, Atlanta, GA 30301" +152567,Lightning Charging Cable,1,14.95,01/04/19 23:11,"625 5th St, San Francisco, CA 94016" +152568,Lightning Charging Cable,1,14.95,01/16/19 17:07,"662 Washington St, New York City, NY 10001" +152569,AA Batteries (4-pack),2,3.84,01/27/19 04:52,"62 Hill St, Atlanta, GA 30301" +152570,Lightning Charging Cable,1,14.95,01/24/19 19:18,"498 Jackson St, New York City, NY 10001" +152571,Apple Airpods Headphones,1,150,01/19/19 15:55,"546 Willow St, Los Angeles, CA 90001" +152572,Wired Headphones,1,11.99,01/26/19 18:26,"340 Pine St, Atlanta, GA 30301" +152573,AAA Batteries (4-pack),1,2.99,01/07/19 19:50,"906 Park St, San Francisco, CA 94016" +152574,Wired Headphones,1,11.99,01/19/19 08:48,"974 Madison St, New York City, NY 10001" +152575,Flatscreen TV,1,300,01/03/19 12:05,"913 Dogwood St, Dallas, TX 75001" +152576,27in FHD Monitor,1,149.99,01/05/19 00:06,"308 11th St, Atlanta, GA 30301" +152577,Lightning Charging Cable,1,14.95,01/26/19 17:54,"232 Jefferson St, Dallas, TX 75001" +152578,34in Ultrawide Monitor,1,379.99,01/10/19 21:35,"400 Willow St, Boston, MA 02215" +152579,USB-C Charging Cable,2,11.95,01/20/19 07:36,"761 Lincoln St, San Francisco, CA 94016" +152580,Lightning Charging Cable,1,14.95,01/24/19 11:08,"359 West St, Los Angeles, CA 90001" +152581,AA Batteries (4-pack),1,3.84,01/29/19 08:12,"503 Walnut St, Seattle, WA 98101" +152582,USB-C Charging Cable,1,11.95,01/07/19 02:21,"695 Cherry St, Los Angeles, CA 90001" +152583,Bose SoundSport Headphones,1,99.99,01/15/19 13:59,"990 Church St, New York City, NY 10001" +152584,Wired Headphones,1,11.99,01/03/19 19:02,"43 13th St, San Francisco, CA 94016" +152585,USB-C Charging Cable,1,11.95,01/23/19 12:00,"817 Johnson St, Seattle, WA 98101" +152586,Wired Headphones,1,11.99,01/30/19 20:51,"733 Washington St, San Francisco, CA 94016" +152587,AA Batteries (4-pack),1,3.84,01/27/19 13:37,"837 Forest St, New York City, NY 10001" +152587,Macbook Pro Laptop,1,1700,01/27/19 13:37,"837 Forest St, New York City, NY 10001" +152588,AA Batteries (4-pack),1,3.84,01/13/19 13:35,"356 8th St, Los Angeles, CA 90001" +152589,Wired Headphones,1,11.99,01/28/19 21:29,"696 12th St, San Francisco, CA 94016" +152590,AA Batteries (4-pack),1,3.84,01/26/19 17:51,"194 Hill St, Boston, MA 02215" +152591,AA Batteries (4-pack),2,3.84,01/07/19 18:20,"336 12th St, Dallas, TX 75001" +152592,iPhone,1,700,01/13/19 19:01,"374 Lake St, San Francisco, CA 94016" +152592,Lightning Charging Cable,1,14.95,01/13/19 19:01,"374 Lake St, San Francisco, CA 94016" +152593,Google Phone,1,600,01/10/19 12:16,"851 Walnut St, Atlanta, GA 30301" +152594,USB-C Charging Cable,2,11.95,01/12/19 10:01,"115 Lakeview St, Dallas, TX 75001" +152595,27in 4K Gaming Monitor,1,389.99,01/28/19 10:51,"441 5th St, Los Angeles, CA 90001" +152596,AAA Batteries (4-pack),1,2.99,01/03/19 15:34,"308 Hickory St, Los Angeles, CA 90001" +152597,Lightning Charging Cable,1,14.95,01/21/19 15:18,"387 1st St, Seattle, WA 98101" +152598,Lightning Charging Cable,1,14.95,01/09/19 19:08,"945 Spruce St, New York City, NY 10001" +152599,Apple Airpods Headphones,1,150,01/14/19 17:28,"807 Cedar St, Seattle, WA 98101" +152600,20in Monitor,1,109.99,01/28/19 17:10,"345 Wilson St, New York City, NY 10001" +152601,AAA Batteries (4-pack),2,2.99,01/16/19 21:34,"430 Cedar St, Atlanta, GA 30301" +152602,27in FHD Monitor,1,149.99,01/19/19 22:49,"684 Hill St, New York City, NY 10001" +152603,Bose SoundSport Headphones,1,99.99,01/11/19 15:33,"909 Cedar St, Portland, ME 04101" +152604,Flatscreen TV,1,300,01/06/19 20:39,"913 Lake St, Dallas, TX 75001" +152605,Apple Airpods Headphones,1,150,01/21/19 15:31,"777 10th St, Los Angeles, CA 90001" +152606,Flatscreen TV,1,300,01/12/19 14:14,"107 7th St, New York City, NY 10001" +152607,Bose SoundSport Headphones,1,99.99,01/22/19 15:53,"357 4th St, Seattle, WA 98101" +152608,Bose SoundSport Headphones,1,99.99,01/14/19 17:06,"486 Church St, Boston, MA 02215" +152609,AA Batteries (4-pack),2,3.84,01/28/19 14:18,"891 Maple St, San Francisco, CA 94016" +152610,AAA Batteries (4-pack),3,2.99,01/29/19 12:52,"471 Meadow St, San Francisco, CA 94016" +152611,Bose SoundSport Headphones,1,99.99,01/24/19 20:01,"774 Park St, Seattle, WA 98101" +152612,AAA Batteries (4-pack),1,2.99,01/02/19 11:02,"916 Center St, New York City, NY 10001" +152613,USB-C Charging Cable,1,11.95,01/21/19 12:29,"687 Pine St, Atlanta, GA 30301" +152614,Lightning Charging Cable,1,14.95,01/04/19 10:12,"375 Lakeview St, Seattle, WA 98101" +152615,USB-C Charging Cable,1,11.95,01/01/19 08:54,"459 Jackson St, New York City, NY 10001" +152616,Wired Headphones,1,11.99,01/22/19 18:01,"74 Park St, Austin, TX 73301" +152617,27in FHD Monitor,1,149.99,01/29/19 08:39,"502 Jackson St, Dallas, TX 75001" +152618,Apple Airpods Headphones,1,150,01/05/19 19:06,"85 Washington St, New York City, NY 10001" +152619,Lightning Charging Cable,1,14.95,01/18/19 06:54,"147 Sunset St, Los Angeles, CA 90001" +152620,Macbook Pro Laptop,1,1700,01/05/19 15:50,"450 Lakeview St, San Francisco, CA 94016" +152621,USB-C Charging Cable,1,11.95,01/20/19 10:12,"498 Willow St, San Francisco, CA 94016" +152622,AA Batteries (4-pack),2,3.84,01/26/19 23:48,"796 Lincoln St, San Francisco, CA 94016" +152623,Macbook Pro Laptop,1,1700,01/26/19 11:15,"934 14th St, Los Angeles, CA 90001" +152624,Apple Airpods Headphones,1,150,01/06/19 19:56,"237 Main St, Austin, TX 73301" +152625,LG Washing Machine,1,600.0,01/24/19 16:22,"522 Madison St, Los Angeles, CA 90001" +152626,Bose SoundSport Headphones,1,99.99,01/23/19 19:38,"185 11th St, San Francisco, CA 94016" +152627,34in Ultrawide Monitor,1,379.99,01/12/19 19:18,"422 Washington St, Austin, TX 73301" +152628,Wired Headphones,1,11.99,01/20/19 10:32,"146 North St, Boston, MA 02215" +152629,USB-C Charging Cable,1,11.95,01/24/19 16:26,"283 Walnut St, Boston, MA 02215" +152630,Macbook Pro Laptop,1,1700,01/26/19 18:03,"764 10th St, Los Angeles, CA 90001" +152631,Apple Airpods Headphones,1,150,01/07/19 10:43,"21 Adams St, Dallas, TX 75001" +152632,27in FHD Monitor,1,149.99,01/07/19 01:54,"427 Jackson St, Los Angeles, CA 90001" +152633,USB-C Charging Cable,2,11.95,01/07/19 17:14,"755 Madison St, San Francisco, CA 94016" +152634,Bose SoundSport Headphones,1,99.99,01/25/19 20:05,"556 7th St, San Francisco, CA 94016" +152635,AA Batteries (4-pack),1,3.84,01/16/19 11:52,"42 Meadow St, Los Angeles, CA 90001" +152636,iPhone,1,700,01/06/19 11:57,"94 9th St, Portland, OR 97035" +152636,Wired Headphones,1,11.99,01/06/19 11:57,"94 9th St, Portland, OR 97035" +152637,AA Batteries (4-pack),1,3.84,01/18/19 09:34,"869 Lincoln St, Dallas, TX 75001" +152638,Wired Headphones,1,11.99,01/04/19 17:59,"972 Park St, Portland, OR 97035" +152639,AAA Batteries (4-pack),1,2.99,01/22/19 01:20,"184 1st St, Dallas, TX 75001" +152640,AA Batteries (4-pack),1,3.84,01/19/19 00:50,"598 Hickory St, New York City, NY 10001" +152641,Lightning Charging Cable,1,14.95,01/02/19 13:15,"286 River St, New York City, NY 10001" +152642,USB-C Charging Cable,1,11.95,01/21/19 09:32,"216 Lakeview St, San Francisco, CA 94016" +152643,27in FHD Monitor,1,149.99,01/20/19 13:33,"999 12th St, Atlanta, GA 30301" +152644,27in FHD Monitor,1,149.99,01/09/19 15:40,"735 Highland St, New York City, NY 10001" +152645,AAA Batteries (4-pack),1,2.99,01/28/19 11:09,"448 West St, Atlanta, GA 30301" +152646,Macbook Pro Laptop,1,1700,01/12/19 12:21,"202 Main St, New York City, NY 10001" +152647,AA Batteries (4-pack),1,3.84,01/26/19 16:30,"259 Park St, Los Angeles, CA 90001" +152648,Lightning Charging Cable,1,14.95,01/23/19 23:37,"795 2nd St, San Francisco, CA 94016" +152649,27in FHD Monitor,1,149.99,01/21/19 18:28,"731 Park St, San Francisco, CA 94016" +152650,USB-C Charging Cable,1,11.95,01/07/19 09:42,"186 Spruce St, New York City, NY 10001" +152651,Google Phone,1,600,01/08/19 18:41,"92 14th St, Los Angeles, CA 90001" +152651,USB-C Charging Cable,2,11.95,01/08/19 18:41,"92 14th St, Los Angeles, CA 90001" +152652,Lightning Charging Cable,3,14.95,01/07/19 16:15,"53 Jefferson St, San Francisco, CA 94016" +152653,AA Batteries (4-pack),2,3.84,01/18/19 12:54,"909 Adams St, San Francisco, CA 94016" +152654,Apple Airpods Headphones,2,150,01/08/19 12:00,"836 Sunset St, Atlanta, GA 30301" +152655,Bose SoundSport Headphones,1,99.99,01/25/19 19:45,"199 Washington St, Seattle, WA 98101" +152656,ThinkPad Laptop,1,999.99,01/13/19 15:22,"440 Lake St, Boston, MA 02215" +152657,Lightning Charging Cable,1,14.95,01/25/19 12:41,"409 Lakeview St, Portland, ME 04101" +152658,27in 4K Gaming Monitor,1,389.99,01/03/19 17:03,"874 10th St, San Francisco, CA 94016" +152659,Apple Airpods Headphones,1,150,01/13/19 19:39,"108 2nd St, Los Angeles, CA 90001" +152660,USB-C Charging Cable,2,11.95,01/23/19 14:15,"92 Hickory St, Los Angeles, CA 90001" +152661,Bose SoundSport Headphones,1,99.99,01/28/19 11:50,"382 Adams St, Atlanta, GA 30301" +152662,USB-C Charging Cable,2,11.95,01/02/19 10:48,"35 Center St, Austin, TX 73301" +152663,AAA Batteries (4-pack),1,2.99,01/01/19 19:38,"582 10th St, Boston, MA 02215" +152664,AA Batteries (4-pack),1,3.84,01/29/19 12:53,"197 Lakeview St, Dallas, TX 75001" +152665,20in Monitor,1,109.99,01/14/19 21:24,"700 West St, San Francisco, CA 94016" +152666,Wired Headphones,1,11.99,01/27/19 19:49,"554 Walnut St, Los Angeles, CA 90001" +152667,20in Monitor,1,109.99,01/16/19 22:37,"737 West St, Portland, OR 97035" +152668,27in FHD Monitor,1,149.99,01/09/19 12:20,"25 Hickory St, Atlanta, GA 30301" +152669,ThinkPad Laptop,1,999.99,01/01/19 13:23,"688 9th St, New York City, NY 10001" +152670,Bose SoundSport Headphones,1,99.99,01/02/19 11:32,"172 Church St, Los Angeles, CA 90001" +152671,AA Batteries (4-pack),1,3.84,01/26/19 21:14,"695 Jefferson St, Los Angeles, CA 90001" +152672,USB-C Charging Cable,1,11.95,01/11/19 08:05,"28 14th St, San Francisco, CA 94016" +152673,Lightning Charging Cable,1,14.95,01/18/19 00:15,"250 Pine St, San Francisco, CA 94016" +152674,USB-C Charging Cable,1,11.95,01/03/19 21:57,"300 Elm St, San Francisco, CA 94016" +152675,AA Batteries (4-pack),1,3.84,01/21/19 22:10,"286 Highland St, Atlanta, GA 30301" +152676,20in Monitor,1,109.99,01/25/19 11:06,"205 West St, Los Angeles, CA 90001" +152677,Wired Headphones,1,11.99,01/01/19 20:54,"941 Pine St, San Francisco, CA 94016" +152678,Wired Headphones,1,11.99,01/07/19 10:39,"609 10th St, Dallas, TX 75001" +152679,27in 4K Gaming Monitor,1,389.99,01/28/19 00:23,"580 Ridge St, Los Angeles, CA 90001" +152680,AAA Batteries (4-pack),1,2.99,01/16/19 08:06,"59 Highland St, New York City, NY 10001" +152681,AA Batteries (4-pack),2,3.84,01/31/19 14:59,"523 Cedar St, San Francisco, CA 94016" +152682,Apple Airpods Headphones,1,150,01/14/19 06:54,"301 Lincoln St, Seattle, WA 98101" +152683,Wired Headphones,1,11.99,01/03/19 18:09,"386 Walnut St, Boston, MA 02215" +152684,AAA Batteries (4-pack),1,2.99,01/10/19 10:25,"814 Cedar St, San Francisco, CA 94016" +152685,Lightning Charging Cable,1,14.95,01/06/19 07:59,"801 Lincoln St, Atlanta, GA 30301" +152686,AAA Batteries (4-pack),1,2.99,01/16/19 09:56,"462 7th St, San Francisco, CA 94016" +152687,ThinkPad Laptop,1,999.99,01/04/19 12:49,"201 10th St, San Francisco, CA 94016" +152688,AAA Batteries (4-pack),1,2.99,01/29/19 13:04,"439 Washington St, Los Angeles, CA 90001" +152689,Wired Headphones,1,11.99,01/06/19 19:54,"920 Walnut St, Boston, MA 02215" +152690,USB-C Charging Cable,1,11.95,01/10/19 21:14,"457 Willow St, Portland, ME 04101" +152691,USB-C Charging Cable,1,11.95,01/23/19 09:47,"955 Hill St, Seattle, WA 98101" +152692,Wired Headphones,1,11.99,01/19/19 11:25,"203 Main St, Portland, OR 97035" +152693,Apple Airpods Headphones,1,150,01/20/19 12:33,"800 Center St, Portland, OR 97035" +152694,AA Batteries (4-pack),1,3.84,01/16/19 14:40,"874 Adams St, New York City, NY 10001" +152695,Lightning Charging Cable,1,14.95,01/21/19 11:25,"103 Dogwood St, New York City, NY 10001" +152696,Wired Headphones,1,11.99,01/03/19 07:04,"136 6th St, Austin, TX 73301" +152697,27in 4K Gaming Monitor,1,389.99,01/24/19 10:27,"662 North St, New York City, NY 10001" +152698,Lightning Charging Cable,1,14.95,02/01/19 00:18,"852 South St, Los Angeles, CA 90001" +152699,Flatscreen TV,1,300,01/02/19 21:52,"346 Lake St, San Francisco, CA 94016" +152700,Google Phone,1,600,01/21/19 20:14,"295 Hickory St, Los Angeles, CA 90001" +152701,34in Ultrawide Monitor,1,379.99,01/16/19 15:31,"964 Spruce St, Boston, MA 02215" +152702,Apple Airpods Headphones,1,150,01/12/19 17:23,"762 Church St, Austin, TX 73301" +152703,Apple Airpods Headphones,1,150,01/27/19 09:57,"723 2nd St, New York City, NY 10001" +152704,Bose SoundSport Headphones,1,99.99,01/31/19 14:56,"285 Jackson St, Dallas, TX 75001" +152705,USB-C Charging Cable,1,11.95,01/31/19 16:04,"994 Highland St, San Francisco, CA 94016" +152706,AA Batteries (4-pack),6,3.84,01/17/19 14:29,"988 Center St, Boston, MA 02215" +152707,ThinkPad Laptop,1,999.99,01/22/19 16:41,"306 Ridge St, Dallas, TX 75001" +152708,Google Phone,1,600,01/16/19 11:26,"777 5th St, Los Angeles, CA 90001" +152709,USB-C Charging Cable,1,11.95,01/02/19 15:17,"288 4th St, San Francisco, CA 94016" +152710,iPhone,1,700,01/10/19 09:04,"780 Willow St, Los Angeles, CA 90001" +152711,Lightning Charging Cable,2,14.95,01/28/19 17:05,"601 10th St, Atlanta, GA 30301" +152712,USB-C Charging Cable,1,11.95,01/17/19 23:56,"140 Main St, Dallas, TX 75001" +152713,AAA Batteries (4-pack),3,2.99,01/02/19 16:40,"109 Highland St, Boston, MA 02215" +152714,Apple Airpods Headphones,1,150,01/03/19 21:18,"821 Washington St, Los Angeles, CA 90001" +152715,Lightning Charging Cable,2,14.95,01/08/19 18:58,"480 10th St, San Francisco, CA 94016" +152716,Apple Airpods Headphones,1,150,01/28/19 21:21,"53 10th St, Dallas, TX 75001" +152717,Apple Airpods Headphones,1,150,01/18/19 15:11,"634 Elm St, Los Angeles, CA 90001" +152718,AA Batteries (4-pack),2,3.84,01/26/19 13:31,"174 8th St, New York City, NY 10001" +152719,Apple Airpods Headphones,1,150,01/25/19 20:43,"494 Elm St, San Francisco, CA 94016" +152720,Wired Headphones,1,11.99,01/12/19 20:15,"323 5th St, San Francisco, CA 94016" +152721,Wired Headphones,1,11.99,01/31/19 21:55,"963 4th St, Boston, MA 02215" +152722,Lightning Charging Cable,1,14.95,01/20/19 12:51,"450 Wilson St, Boston, MA 02215" +152723,AAA Batteries (4-pack),1,2.99,01/31/19 21:28,"273 Cherry St, Dallas, TX 75001" +152724,AAA Batteries (4-pack),1,2.99,01/23/19 15:42,"775 Cherry St, Seattle, WA 98101" +152725,Wired Headphones,1,11.99,01/20/19 10:12,"396 7th St, Portland, OR 97035" +152726,27in 4K Gaming Monitor,1,389.99,01/10/19 12:54,"39 9th St, Boston, MA 02215" +152727,27in FHD Monitor,1,149.99,01/19/19 12:12,"247 Walnut St, San Francisco, CA 94016" +152728,Wired Headphones,1,11.99,01/24/19 14:06,"948 Ridge St, Dallas, TX 75001" +152729,USB-C Charging Cable,1,11.95,01/18/19 14:47,"659 4th St, San Francisco, CA 94016" +152730,Lightning Charging Cable,1,14.95,01/03/19 18:29,"245 Lake St, Los Angeles, CA 90001" +152731,Lightning Charging Cable,1,14.95,01/20/19 18:03,"449 River St, San Francisco, CA 94016" +152732,AAA Batteries (4-pack),2,2.99,01/07/19 03:49,"978 Cherry St, Atlanta, GA 30301" +152733,ThinkPad Laptop,1,999.99,01/14/19 09:39,"743 Meadow St, Los Angeles, CA 90001" +152734,Lightning Charging Cable,1,14.95,01/27/19 12:57,"841 Spruce St, San Francisco, CA 94016" +152735,USB-C Charging Cable,1,11.95,01/19/19 17:53,"198 5th St, New York City, NY 10001" +152736,LG Dryer,1,600.0,01/13/19 22:16,"974 Cedar St, Los Angeles, CA 90001" +152737,Flatscreen TV,1,300,01/01/19 20:02,"763 13th St, San Francisco, CA 94016" +152738,Apple Airpods Headphones,1,150,01/26/19 09:58,"383 Church St, Los Angeles, CA 90001" +152739,Flatscreen TV,1,300,01/21/19 19:40,"232 Church St, Seattle, WA 98101" +152740,Lightning Charging Cable,1,14.95,01/21/19 16:11,"435 River St, Seattle, WA 98101" +152741,34in Ultrawide Monitor,1,379.99,01/03/19 15:18,"43 West St, Seattle, WA 98101" +152742,iPhone,1,700,01/20/19 20:29,"611 Adams St, Los Angeles, CA 90001" +152742,Lightning Charging Cable,1,14.95,01/20/19 20:29,"611 Adams St, Los Angeles, CA 90001" +152743,Apple Airpods Headphones,1,150,01/31/19 19:55,"170 Lincoln St, New York City, NY 10001" +152744,AAA Batteries (4-pack),1,2.99,01/26/19 16:07,"969 5th St, Seattle, WA 98101" +152745,Lightning Charging Cable,1,14.95,01/21/19 23:05,"896 River St, Dallas, TX 75001" +152746,34in Ultrawide Monitor,1,379.99,01/26/19 21:32,"887 Sunset St, Los Angeles, CA 90001" +152747,Bose SoundSport Headphones,1,99.99,01/04/19 18:32,"203 Ridge St, San Francisco, CA 94016" +152748,Google Phone,1,600,01/17/19 11:59,"498 South St, Boston, MA 02215" +152749,Bose SoundSport Headphones,1,99.99,01/16/19 10:49,"127 Meadow St, Dallas, TX 75001" +152750,34in Ultrawide Monitor,1,379.99,01/23/19 17:27,"668 Dogwood St, Boston, MA 02215" +152751,27in 4K Gaming Monitor,1,389.99,01/27/19 22:17,"288 Park St, Los Angeles, CA 90001" +,,,,, +152752,Google Phone,1,600,01/03/19 14:08,"894 Adams St, San Francisco, CA 94016" +152752,Bose SoundSport Headphones,1,99.99,01/03/19 14:08,"894 Adams St, San Francisco, CA 94016" +152752,Wired Headphones,1,11.99,01/03/19 14:08,"894 Adams St, San Francisco, CA 94016" +152753,iPhone,1,700,01/13/19 11:42,"54 Main St, Boston, MA 02215" +152754,Wired Headphones,1,11.99,01/20/19 01:32,"795 Meadow St, Austin, TX 73301" +152755,Flatscreen TV,1,300,01/03/19 21:39,"529 Forest St, San Francisco, CA 94016" +152756,AA Batteries (4-pack),1,3.84,01/17/19 08:16,"860 Walnut St, San Francisco, CA 94016" +152757,AAA Batteries (4-pack),1,2.99,01/30/19 17:55,"761 Cedar St, San Francisco, CA 94016" +152758,Bose SoundSport Headphones,1,99.99,01/27/19 16:56,"634 Cherry St, San Francisco, CA 94016" +152759,Flatscreen TV,1,300,01/01/19 17:07,"399 Main St, San Francisco, CA 94016" +152760,iPhone,1,700,01/30/19 18:17,"707 7th St, Portland, OR 97035" +152760,Wired Headphones,1,11.99,01/30/19 18:17,"707 7th St, Portland, OR 97035" +152761,Lightning Charging Cable,1,14.95,01/28/19 22:12,"558 Hill St, Atlanta, GA 30301" +152762,Bose SoundSport Headphones,1,99.99,01/20/19 22:38,"306 South St, Boston, MA 02215" +152763,AA Batteries (4-pack),1,3.84,01/14/19 20:07,"684 10th St, San Francisco, CA 94016" +152764,Wired Headphones,1,11.99,01/15/19 00:38,"276 River St, Atlanta, GA 30301" +152765,Wired Headphones,1,11.99,01/27/19 10:57,"148 Spruce St, Los Angeles, CA 90001" +152766,Lightning Charging Cable,1,14.95,01/29/19 23:21,"755 Madison St, Austin, TX 73301" +152767,USB-C Charging Cable,1,11.95,01/02/19 22:17,"292 Willow St, San Francisco, CA 94016" +152768,Lightning Charging Cable,1,14.95,01/11/19 08:02,"641 Wilson St, Dallas, TX 75001" +152769,Flatscreen TV,1,300,01/19/19 16:30,"125 Maple St, Dallas, TX 75001" +152770,34in Ultrawide Monitor,1,379.99,01/04/19 13:44,"14 Spruce St, Austin, TX 73301" +152771,USB-C Charging Cable,1,11.95,01/11/19 15:30,"180 11th St, Dallas, TX 75001" +152772,20in Monitor,1,109.99,01/03/19 12:35,"900 Main St, Los Angeles, CA 90001" +152773,27in FHD Monitor,1,149.99,01/03/19 05:17,"750 Sunset St, Seattle, WA 98101" +152774,27in FHD Monitor,1,149.99,01/02/19 13:00,"123 Church St, New York City, NY 10001" +152775,Flatscreen TV,1,300,01/10/19 23:18,"142 Chestnut St, Los Angeles, CA 90001" +152776,ThinkPad Laptop,1,999.99,01/28/19 16:14,"902 Chestnut St, Los Angeles, CA 90001" +152777,USB-C Charging Cable,1,11.95,01/23/19 10:59,"764 Jefferson St, Seattle, WA 98101" +152778,Bose SoundSport Headphones,1,99.99,01/11/19 17:40,"121 Jackson St, San Francisco, CA 94016" +152779,AA Batteries (4-pack),1,3.84,01/31/19 00:12,"224 Hill St, Los Angeles, CA 90001" +152780,USB-C Charging Cable,1,11.95,01/15/19 13:10,"574 Lincoln St, Seattle, WA 98101" +152781,AAA Batteries (4-pack),2,2.99,01/12/19 11:08,"476 Hill St, Dallas, TX 75001" +152782,Apple Airpods Headphones,1,150,01/19/19 14:27,"347 Jackson St, San Francisco, CA 94016" +152783,Flatscreen TV,1,300,01/26/19 15:48,"219 Elm St, Seattle, WA 98101" +152784,AA Batteries (4-pack),1,3.84,01/26/19 15:03,"933 Highland St, San Francisco, CA 94016" +152785,Apple Airpods Headphones,1,150,01/02/19 15:49,"337 Madison St, Los Angeles, CA 90001" +152786,AAA Batteries (4-pack),1,2.99,01/11/19 16:54,"841 Elm St, Los Angeles, CA 90001" +152787,USB-C Charging Cable,1,11.95,01/09/19 17:45,"249 2nd St, Los Angeles, CA 90001" +152788,27in FHD Monitor,1,149.99,01/24/19 13:46,"260 Cherry St, New York City, NY 10001" +152789,20in Monitor,1,109.99,01/28/19 15:46,"632 Dogwood St, San Francisco, CA 94016" +152790,Lightning Charging Cable,2,14.95,01/05/19 00:02,"719 14th St, San Francisco, CA 94016" +152791,27in 4K Gaming Monitor,1,389.99,01/13/19 23:35,"328 Highland St, New York City, NY 10001" +152792,20in Monitor,1,109.99,01/16/19 17:27,"565 Willow St, Los Angeles, CA 90001" +152793,Lightning Charging Cable,1,14.95,01/24/19 08:43,"857 8th St, New York City, NY 10001" +152794,AA Batteries (4-pack),2,3.84,01/27/19 16:22,"377 13th St, Seattle, WA 98101" +152795,27in 4K Gaming Monitor,1,389.99,01/01/19 12:13,"204 9th St, New York City, NY 10001" +152796,AAA Batteries (4-pack),1,2.99,01/20/19 18:09,"896 2nd St, Los Angeles, CA 90001" +152797,USB-C Charging Cable,1,11.95,01/24/19 06:18,"389 Meadow St, Boston, MA 02215" +152798,AA Batteries (4-pack),2,3.84,01/31/19 18:09,"721 Hill St, Portland, OR 97035" +152799,Flatscreen TV,1,300,01/06/19 21:22,"44 1st St, Portland, OR 97035" +152800,Google Phone,1,600,01/21/19 20:21,"805 Jefferson St, San Francisco, CA 94016" +152801,Google Phone,1,600,01/14/19 18:31,"582 14th St, Los Angeles, CA 90001" +152802,Lightning Charging Cable,1,14.95,01/26/19 11:38,"586 2nd St, Boston, MA 02215" +152803,Wired Headphones,1,11.99,01/22/19 16:57,"715 Wilson St, Dallas, TX 75001" +152804,AA Batteries (4-pack),3,3.84,01/28/19 13:27,"168 River St, Atlanta, GA 30301" +152805,USB-C Charging Cable,1,11.95,01/02/19 12:41,"274 Main St, Los Angeles, CA 90001" +152806,Flatscreen TV,1,300,01/07/19 23:31,"878 11th St, Los Angeles, CA 90001" +152807,27in FHD Monitor,1,149.99,01/29/19 22:35,"786 Maple St, New York City, NY 10001" +152808,34in Ultrawide Monitor,1,379.99,01/31/19 00:55,"961 Dogwood St, San Francisco, CA 94016" +152809,USB-C Charging Cable,2,11.95,01/12/19 13:37,"413 11th St, Seattle, WA 98101" +152810,Google Phone,1,600,01/20/19 11:50,"568 Highland St, San Francisco, CA 94016" +152810,USB-C Charging Cable,1,11.95,01/20/19 11:50,"568 Highland St, San Francisco, CA 94016" +152810,Bose SoundSport Headphones,1,99.99,01/20/19 11:50,"568 Highland St, San Francisco, CA 94016" +152811,Flatscreen TV,1,300,01/31/19 16:32,"40 Spruce St, New York City, NY 10001" +152812,27in 4K Gaming Monitor,1,389.99,01/10/19 08:04,"328 Willow St, Dallas, TX 75001" +152813,iPhone,1,700,01/23/19 06:31,"217 13th St, Los Angeles, CA 90001" +152814,USB-C Charging Cable,1,11.95,01/02/19 16:51,"736 9th St, Dallas, TX 75001" +152815,Wired Headphones,1,11.99,01/22/19 15:51,"324 Johnson St, San Francisco, CA 94016" +152816,USB-C Charging Cable,1,11.95,01/10/19 15:41,"424 12th St, Los Angeles, CA 90001" +152817,Bose SoundSport Headphones,1,99.99,01/28/19 14:53,"933 Pine St, Atlanta, GA 30301" +152818,Lightning Charging Cable,1,14.95,01/13/19 14:52,"619 Lincoln St, New York City, NY 10001" +152819,USB-C Charging Cable,1,11.95,01/10/19 15:02,"446 Cherry St, San Francisco, CA 94016" +152820,AAA Batteries (4-pack),3,2.99,01/28/19 12:19,"607 Wilson St, San Francisco, CA 94016" +152821,27in FHD Monitor,1,149.99,01/22/19 13:48,"517 12th St, Portland, OR 97035" +152822,27in FHD Monitor,1,149.99,01/18/19 09:56,"71 4th St, San Francisco, CA 94016" +152823,27in FHD Monitor,1,149.99,01/28/19 15:07,"942 10th St, Los Angeles, CA 90001" +152824,Macbook Pro Laptop,1,1700,01/09/19 21:32,"602 Spruce St, Atlanta, GA 30301" +152825,Wired Headphones,1,11.99,01/31/19 09:43,"487 Lake St, San Francisco, CA 94016" +152826,USB-C Charging Cable,1,11.95,01/21/19 14:25,"913 South St, Boston, MA 02215" +152827,ThinkPad Laptop,1,999.99,01/01/19 13:55,"393 7th St, New York City, NY 10001" +152828,Wired Headphones,1,11.99,01/25/19 08:15,"101 Lakeview St, Los Angeles, CA 90001" +152829,Apple Airpods Headphones,1,150,01/29/19 19:54,"118 North St, New York City, NY 10001" +152830,Flatscreen TV,1,300,01/14/19 19:27,"807 Madison St, Portland, OR 97035" +152831,Lightning Charging Cable,1,14.95,01/06/19 00:42,"890 14th St, San Francisco, CA 94016" +152832,USB-C Charging Cable,1,11.95,01/07/19 15:57,"969 12th St, San Francisco, CA 94016" +152833,AAA Batteries (4-pack),2,2.99,01/09/19 07:53,"224 Chestnut St, Dallas, TX 75001" +152834,Lightning Charging Cable,1,14.95,01/21/19 11:52,"693 2nd St, San Francisco, CA 94016" +152835,Macbook Pro Laptop,1,1700,01/01/19 17:52,"241 Hickory St, Los Angeles, CA 90001" +152836,AAA Batteries (4-pack),1,2.99,01/08/19 20:57,"561 Park St, Dallas, TX 75001" +152837,AA Batteries (4-pack),1,3.84,01/17/19 09:29,"474 Sunset St, San Francisco, CA 94016" +152838,Apple Airpods Headphones,1,150,01/27/19 12:04,"205 Forest St, San Francisco, CA 94016" +152839,27in FHD Monitor,1,149.99,01/18/19 09:00,"45 Main St, San Francisco, CA 94016" +152840,Lightning Charging Cable,1,14.95,01/06/19 22:41,"600 West St, Boston, MA 02215" +152841,Lightning Charging Cable,1,14.95,01/29/19 23:21,"130 Pine St, Boston, MA 02215" +152842,34in Ultrawide Monitor,1,379.99,01/04/19 08:34,"722 Willow St, San Francisco, CA 94016" +152843,27in FHD Monitor,1,149.99,01/21/19 20:14,"968 Johnson St, San Francisco, CA 94016" +152844,Apple Airpods Headphones,1,150,01/01/19 16:25,"685 14th St, Los Angeles, CA 90001" +152845,Lightning Charging Cable,1,14.95,01/27/19 17:15,"774 10th St, Atlanta, GA 30301" +152846,Wired Headphones,1,11.99,01/19/19 18:24,"722 6th St, New York City, NY 10001" +152847,LG Washing Machine,1,600.0,01/23/19 21:09,"926 Adams St, Boston, MA 02215" +152848,27in FHD Monitor,1,149.99,01/04/19 17:35,"533 Lake St, San Francisco, CA 94016" +152849,27in 4K Gaming Monitor,1,389.99,01/09/19 15:23,"986 Johnson St, Boston, MA 02215" +152850,Lightning Charging Cable,1,14.95,01/24/19 05:18,"463 Lincoln St, San Francisco, CA 94016" +152851,Lightning Charging Cable,1,14.95,01/09/19 23:25,"271 2nd St, San Francisco, CA 94016" +152852,AA Batteries (4-pack),1,3.84,01/30/19 12:18,"511 Center St, Los Angeles, CA 90001" +152853,Apple Airpods Headphones,1,150,01/30/19 21:07,"312 14th St, San Francisco, CA 94016" +152854,Lightning Charging Cable,1,14.95,01/20/19 15:11,"402 Sunset St, Portland, OR 97035" +152854,USB-C Charging Cable,1,11.95,01/20/19 15:11,"402 Sunset St, Portland, OR 97035" +152855,Lightning Charging Cable,1,14.95,01/18/19 10:29,"526 Hickory St, Dallas, TX 75001" +152856,AAA Batteries (4-pack),1,2.99,01/05/19 16:37,"347 Wilson St, Seattle, WA 98101" +152857,Wired Headphones,1,11.99,01/23/19 18:23,"518 5th St, Dallas, TX 75001" +152858,USB-C Charging Cable,1,11.95,01/31/19 13:05,"937 Meadow St, San Francisco, CA 94016" +152859,27in 4K Gaming Monitor,1,389.99,01/19/19 14:34,"421 Washington St, Los Angeles, CA 90001" +152860,USB-C Charging Cable,1,11.95,01/02/19 10:17,"919 Cedar St, Dallas, TX 75001" +152861,AAA Batteries (4-pack),2,2.99,01/15/19 04:00,"393 Hill St, Seattle, WA 98101" +152862,iPhone,1,700,01/07/19 12:00,"52 Meadow St, Portland, ME 04101" +152862,Wired Headphones,1,11.99,01/07/19 12:00,"52 Meadow St, Portland, ME 04101" +152863,Lightning Charging Cable,1,14.95,01/21/19 01:34,"846 1st St, San Francisco, CA 94016" +152864,Bose SoundSport Headphones,1,99.99,01/14/19 13:16,"856 River St, Seattle, WA 98101" +152865,USB-C Charging Cable,1,11.95,01/02/19 11:18,"729 1st St, New York City, NY 10001" +152866,AA Batteries (4-pack),1,3.84,01/19/19 14:28,"378 Center St, New York City, NY 10001" +152867,Macbook Pro Laptop,1,1700,01/07/19 15:04,"448 Spruce St, Portland, OR 97035" +152868,Wired Headphones,1,11.99,01/23/19 20:21,"69 Ridge St, San Francisco, CA 94016" +152869,Lightning Charging Cable,1,14.95,01/26/19 10:38,"569 Lincoln St, San Francisco, CA 94016" +152870,AAA Batteries (4-pack),1,2.99,01/12/19 13:16,"321 Johnson St, San Francisco, CA 94016" +152871,Wired Headphones,1,11.99,01/31/19 18:50,"462 Cherry St, Boston, MA 02215" +152872,ThinkPad Laptop,1,999.99,01/03/19 15:30,"278 North St, New York City, NY 10001" +152873,34in Ultrawide Monitor,1,379.99,01/02/19 18:23,"679 Lake St, San Francisco, CA 94016" +152874,Apple Airpods Headphones,1,150,01/29/19 14:11,"423 Meadow St, Los Angeles, CA 90001" +152875,Apple Airpods Headphones,1,150,01/19/19 00:35,"307 Ridge St, Atlanta, GA 30301" +152876,USB-C Charging Cable,1,11.95,01/27/19 10:03,"603 Cherry St, San Francisco, CA 94016" +152877,USB-C Charging Cable,1,11.95,01/26/19 12:57,"244 Jefferson St, Dallas, TX 75001" +152878,AA Batteries (4-pack),1,3.84,01/10/19 14:17,"649 Center St, San Francisco, CA 94016" +152879,Apple Airpods Headphones,1,150,01/24/19 16:01,"470 2nd St, New York City, NY 10001" +152880,20in Monitor,1,109.99,01/14/19 17:34,"217 12th St, Austin, TX 73301" +152881,Wired Headphones,1,11.99,01/15/19 12:33,"737 West St, New York City, NY 10001" +152882,USB-C Charging Cable,1,11.95,01/11/19 09:10,"967 2nd St, San Francisco, CA 94016" +152883,AA Batteries (4-pack),1,3.84,01/14/19 18:44,"773 Forest St, Seattle, WA 98101" +152884,Macbook Pro Laptop,1,1700,01/26/19 12:27,"465 Highland St, Dallas, TX 75001" +152885,iPhone,1,700,01/17/19 08:12,"831 Main St, Los Angeles, CA 90001" +152885,Wired Headphones,2,11.99,01/17/19 08:12,"831 Main St, Los Angeles, CA 90001" +152886,USB-C Charging Cable,1,11.95,01/22/19 20:11,"592 South St, Portland, ME 04101" +152887,Apple Airpods Headphones,1,150,01/25/19 12:38,"778 Dogwood St, Atlanta, GA 30301" +152888,Wired Headphones,1,11.99,01/23/19 12:10,"117 11th St, New York City, NY 10001" +152889,27in FHD Monitor,1,149.99,01/12/19 17:47,"340 Madison St, Los Angeles, CA 90001" +152890,Flatscreen TV,1,300,01/11/19 20:51,"818 5th St, New York City, NY 10001" +152891,Flatscreen TV,1,300,01/20/19 09:09,"142 Spruce St, Los Angeles, CA 90001" +152892,USB-C Charging Cable,1,11.95,01/27/19 08:17,"110 Church St, Boston, MA 02215" +152893,Lightning Charging Cable,1,14.95,01/29/19 05:01,"981 11th St, San Francisco, CA 94016" +152894,Lightning Charging Cable,1,14.95,01/31/19 09:59,"223 14th St, Austin, TX 73301" +152895,Bose SoundSport Headphones,1,99.99,01/18/19 15:05,"981 Center St, Boston, MA 02215" +152896,Google Phone,1,600,01/08/19 17:07,"972 Madison St, San Francisco, CA 94016" +152897,Lightning Charging Cable,1,14.95,01/25/19 18:54,"274 Jefferson St, New York City, NY 10001" +152898,iPhone,1,700,01/16/19 23:49,"75 Dogwood St, Los Angeles, CA 90001" +152899,iPhone,1,700,01/30/19 20:41,"956 Ridge St, New York City, NY 10001" +152900,AAA Batteries (4-pack),1,2.99,01/02/19 08:55,"446 Jefferson St, Austin, TX 73301" +152901,AA Batteries (4-pack),1,3.84,01/07/19 09:24,"539 Willow St, Boston, MA 02215" +152902,AAA Batteries (4-pack),1,2.99,01/22/19 14:19,"831 Elm St, Portland, ME 04101" +152903,Flatscreen TV,1,300,01/13/19 21:06,"994 Hill St, Boston, MA 02215" +152904,AA Batteries (4-pack),1,3.84,01/09/19 16:49,"82 Highland St, San Francisco, CA 94016" +152905,Lightning Charging Cable,1,14.95,01/02/19 23:45,"71 1st St, Atlanta, GA 30301" +152906,AA Batteries (4-pack),1,3.84,01/27/19 09:33,"432 Johnson St, Los Angeles, CA 90001" +152907,Google Phone,1,600,01/16/19 12:19,"427 1st St, San Francisco, CA 94016" +152908,Apple Airpods Headphones,1,150,01/04/19 10:15,"778 Jackson St, Seattle, WA 98101" +152909,Apple Airpods Headphones,1,150,01/10/19 10:35,"393 Lincoln St, Boston, MA 02215" +152910,Wired Headphones,2,11.99,01/08/19 17:00,"624 Sunset St, San Francisco, CA 94016" +152911,AAA Batteries (4-pack),1,2.99,01/07/19 18:05,"194 Lincoln St, Austin, TX 73301" +152912,USB-C Charging Cable,1,11.95,01/11/19 10:18,"636 Meadow St, Boston, MA 02215" +152913,USB-C Charging Cable,1,11.95,01/08/19 22:07,"265 Hill St, Los Angeles, CA 90001" +152914,Google Phone,1,600,01/11/19 20:06,"944 Lakeview St, Dallas, TX 75001" +152915,ThinkPad Laptop,1,999.99,01/15/19 20:54,"884 Jackson St, Austin, TX 73301" +152916,AA Batteries (4-pack),1,3.84,01/26/19 18:02,"718 Forest St, Boston, MA 02215" +152917,27in 4K Gaming Monitor,1,389.99,01/17/19 22:59,"977 Chestnut St, Seattle, WA 98101" +152918,AAA Batteries (4-pack),2,2.99,01/02/19 16:07,"503 Adams St, Los Angeles, CA 90001" +152919,20in Monitor,1,109.99,01/02/19 11:47,"134 14th St, Dallas, TX 75001" +152920,USB-C Charging Cable,1,11.95,01/13/19 19:49,"663 Sunset St, San Francisco, CA 94016" +152921,USB-C Charging Cable,1,11.95,01/22/19 12:58,"855 Walnut St, Atlanta, GA 30301" +152922,Flatscreen TV,1,300,01/13/19 21:59,"94 10th St, Boston, MA 02215" +152923,AAA Batteries (4-pack),2,2.99,01/01/19 12:33,"803 Ridge St, San Francisco, CA 94016" +152924,ThinkPad Laptop,1,999.99,01/15/19 10:01,"281 4th St, San Francisco, CA 94016" +152925,iPhone,1,700,01/17/19 18:31,"696 North St, Boston, MA 02215" +152925,Wired Headphones,1,11.99,01/17/19 18:31,"696 North St, Boston, MA 02215" +152926,Bose SoundSport Headphones,1,99.99,01/31/19 23:01,"901 Jefferson St, Los Angeles, CA 90001" +152927,27in 4K Gaming Monitor,1,389.99,01/08/19 01:03,"819 11th St, New York City, NY 10001" +152928,AA Batteries (4-pack),1,3.84,01/13/19 17:43,"272 Jefferson St, San Francisco, CA 94016" +152929,AA Batteries (4-pack),1,3.84,01/20/19 15:11,"992 Johnson St, Boston, MA 02215" +152930,Lightning Charging Cable,1,14.95,01/02/19 22:27,"979 5th St, San Francisco, CA 94016" +152931,34in Ultrawide Monitor,1,379.99,01/06/19 15:15,"131 Elm St, Boston, MA 02215" +152932,Apple Airpods Headphones,1,150,01/02/19 17:02,"89 Walnut St, San Francisco, CA 94016" +152933,USB-C Charging Cable,1,11.95,01/27/19 00:01,"571 Lake St, Boston, MA 02215" +152934,Wired Headphones,1,11.99,01/21/19 15:43,"817 Elm St, Dallas, TX 75001" +152935,AA Batteries (4-pack),2,3.84,01/08/19 15:56,"852 Center St, San Francisco, CA 94016" +152936,Vareebadd Phone,1,400,01/17/19 11:28,"773 Lake St, San Francisco, CA 94016" +152937,27in FHD Monitor,1,149.99,01/25/19 18:40,"494 11th St, Austin, TX 73301" +152938,AAA Batteries (4-pack),1,2.99,01/15/19 09:39,"666 Johnson St, Los Angeles, CA 90001" +152939,Apple Airpods Headphones,1,150,01/12/19 10:40,"214 Main St, Los Angeles, CA 90001" +152940,AAA Batteries (4-pack),1,2.99,01/03/19 09:04,"817 Church St, Dallas, TX 75001" +152941,USB-C Charging Cable,1,11.95,01/05/19 20:50,"389 Pine St, New York City, NY 10001" +152942,AAA Batteries (4-pack),1,2.99,01/22/19 16:03,"890 Center St, Atlanta, GA 30301" +152943,Bose SoundSport Headphones,1,99.99,01/09/19 08:57,"576 Johnson St, Atlanta, GA 30301" +152944,Lightning Charging Cable,1,14.95,01/09/19 16:33,"453 4th St, New York City, NY 10001" +152945,Apple Airpods Headphones,1,150,01/13/19 15:43,"366 River St, Portland, OR 97035" +152946,AAA Batteries (4-pack),1,2.99,01/31/19 05:08,"582 Cedar St, Atlanta, GA 30301" +152947,AAA Batteries (4-pack),1,2.99,01/11/19 09:10,"697 Spruce St, Portland, OR 97035" +152948,Macbook Pro Laptop,1,1700,01/27/19 17:10,"973 Hickory St, Austin, TX 73301" +152949,Flatscreen TV,1,300,01/05/19 14:55,"365 11th St, San Francisco, CA 94016" +152950,Wired Headphones,1,11.99,01/18/19 17:50,"173 South St, Portland, OR 97035" +152951,USB-C Charging Cable,1,11.95,01/09/19 23:04,"66 Hill St, Atlanta, GA 30301" +152952,AAA Batteries (4-pack),1,2.99,01/09/19 21:45,"394 River St, Atlanta, GA 30301" +152953,AA Batteries (4-pack),1,3.84,01/22/19 15:37,"101 Forest St, Portland, OR 97035" +152954,Wired Headphones,1,11.99,01/15/19 19:31,"804 5th St, Seattle, WA 98101" +152955,AAA Batteries (4-pack),3,2.99,01/15/19 14:10,"145 Washington St, New York City, NY 10001" +152956,AA Batteries (4-pack),3,3.84,01/14/19 12:11,"243 Cherry St, San Francisco, CA 94016" +152957,AA Batteries (4-pack),1,3.84,01/06/19 18:51,"336 Hill St, Austin, TX 73301" +152958,iPhone,1,700,01/17/19 23:02,"19 Pine St, Atlanta, GA 30301" +152959,Bose SoundSport Headphones,1,99.99,01/23/19 17:49,"644 Park St, Los Angeles, CA 90001" +152960,27in FHD Monitor,1,149.99,01/01/19 20:50,"371 5th St, Boston, MA 02215" +152961,27in FHD Monitor,1,149.99,01/05/19 00:50,"261 Park St, Los Angeles, CA 90001" +152962,Lightning Charging Cable,1,14.95,01/19/19 06:29,"765 West St, San Francisco, CA 94016" +152963,USB-C Charging Cable,1,11.95,01/17/19 15:41,"466 Jackson St, Boston, MA 02215" +152964,Flatscreen TV,1,300,01/14/19 13:07,"52 Ridge St, Seattle, WA 98101" +152965,AAA Batteries (4-pack),1,2.99,01/08/19 11:22,"861 Elm St, Boston, MA 02215" +152966,Macbook Pro Laptop,1,1700,01/17/19 11:35,"537 6th St, New York City, NY 10001" +152967,AAA Batteries (4-pack),1,2.99,01/19/19 13:05,"711 Hill St, Portland, OR 97035" +152968,Bose SoundSport Headphones,1,99.99,01/03/19 14:39,"701 13th St, Austin, TX 73301" +152969,Wired Headphones,1,11.99,01/13/19 10:00,"844 Maple St, Boston, MA 02215" +152970,AA Batteries (4-pack),3,3.84,01/31/19 22:16,"351 Main St, Los Angeles, CA 90001" +152970,Google Phone,1,600,01/31/19 22:16,"351 Main St, Los Angeles, CA 90001" +152971,Wired Headphones,1,11.99,01/22/19 13:29,"458 Jefferson St, Atlanta, GA 30301" +152972,ThinkPad Laptop,1,999.99,01/02/19 02:47,"556 Forest St, Los Angeles, CA 90001" +152973,LG Dryer,1,600.0,01/30/19 00:58,"725 Lakeview St, San Francisco, CA 94016" +152974,AAA Batteries (4-pack),1,2.99,01/27/19 19:04,"980 Elm St, Portland, OR 97035" +152975,AA Batteries (4-pack),1,3.84,01/03/19 19:33,"108 Highland St, San Francisco, CA 94016" +152976,34in Ultrawide Monitor,1,379.99,01/25/19 10:28,"799 Ridge St, Los Angeles, CA 90001" +152977,AA Batteries (4-pack),1,3.84,01/04/19 12:45,"312 Madison St, Seattle, WA 98101" +152977,Bose SoundSport Headphones,1,99.99,01/04/19 12:45,"312 Madison St, Seattle, WA 98101" +152978,AA Batteries (4-pack),1,3.84,01/30/19 19:40,"181 Meadow St, Los Angeles, CA 90001" +152979,AAA Batteries (4-pack),1,2.99,01/13/19 12:15,"768 Lake St, San Francisco, CA 94016" +152980,Bose SoundSport Headphones,1,99.99,01/28/19 17:02,"347 Chestnut St, Austin, TX 73301" +152981,AA Batteries (4-pack),2,3.84,01/05/19 14:03,"42 Lakeview St, San Francisco, CA 94016" +152982,34in Ultrawide Monitor,1,379.99,01/28/19 19:29,"302 Washington St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +152983,Bose SoundSport Headphones,1,99.99,01/27/19 18:01,"857 4th St, Austin, TX 73301" +152984,Wired Headphones,1,11.99,01/04/19 10:11,"86 Adams St, Boston, MA 02215" +152985,Flatscreen TV,1,300,01/14/19 10:58,"73 Meadow St, Atlanta, GA 30301" +152986,AAA Batteries (4-pack),1,2.99,01/14/19 18:58,"820 Lake St, Boston, MA 02215" +152987,Vareebadd Phone,1,400,01/30/19 09:27,"797 2nd St, Boston, MA 02215" +152987,Bose SoundSport Headphones,1,99.99,01/30/19 09:27,"797 2nd St, Boston, MA 02215" +152988,Lightning Charging Cable,1,14.95,01/10/19 08:58,"661 Spruce St, Austin, TX 73301" +152989,Lightning Charging Cable,1,14.95,01/30/19 13:13,"586 Dogwood St, San Francisco, CA 94016" +152990,Apple Airpods Headphones,1,150,01/07/19 20:49,"569 11th St, Los Angeles, CA 90001" +152991,Bose SoundSport Headphones,1,99.99,01/31/19 12:00,"771 Lincoln St, Los Angeles, CA 90001" +152992,AA Batteries (4-pack),1,3.84,01/15/19 20:58,"792 Chestnut St, San Francisco, CA 94016" +152993,20in Monitor,1,109.99,01/26/19 18:53,"920 10th St, Dallas, TX 75001" +152994,AAA Batteries (4-pack),1,2.99,01/13/19 12:08,"204 Lake St, Los Angeles, CA 90001" +152995,Apple Airpods Headphones,1,150,01/14/19 07:29,"163 North St, San Francisco, CA 94016" +152996,Lightning Charging Cable,1,14.95,01/28/19 00:51,"852 8th St, Portland, OR 97035" +152997,27in FHD Monitor,1,149.99,01/03/19 12:15,"884 Ridge St, San Francisco, CA 94016" +152998,USB-C Charging Cable,1,11.95,01/31/19 19:45,"77 8th St, San Francisco, CA 94016" +152999,20in Monitor,1,109.99,01/31/19 19:40,"336 Main St, Los Angeles, CA 90001" +153000,AAA Batteries (4-pack),1,2.99,01/10/19 14:46,"210 Spruce St, Atlanta, GA 30301" +153001,AAA Batteries (4-pack),2,2.99,01/15/19 19:53,"564 Lincoln St, San Francisco, CA 94016" +153002,34in Ultrawide Monitor,1,379.99,01/16/19 15:52,"809 Johnson St, Portland, OR 97035" +153003,Lightning Charging Cable,1,14.95,01/09/19 15:48,"602 4th St, San Francisco, CA 94016" +153004,Wired Headphones,1,11.99,01/01/19 11:38,"481 Cedar St, Atlanta, GA 30301" +153005,27in 4K Gaming Monitor,1,389.99,01/13/19 19:06,"225 8th St, Boston, MA 02215" +153006,Lightning Charging Cable,1,14.95,01/16/19 22:46,"882 Adams St, New York City, NY 10001" +153007,Lightning Charging Cable,1,14.95,01/04/19 16:17,"375 7th St, Seattle, WA 98101" +153008,iPhone,1,700,01/25/19 20:21,"417 Church St, Atlanta, GA 30301" +153009,Lightning Charging Cable,1,14.95,01/15/19 00:39,"664 River St, San Francisco, CA 94016" +153010,Lightning Charging Cable,1,14.95,01/22/19 11:47,"306 10th St, Atlanta, GA 30301" +153011,AA Batteries (4-pack),1,3.84,01/14/19 12:45,"506 Sunset St, New York City, NY 10001" +153012,Flatscreen TV,1,300,01/31/19 11:20,"47 Adams St, San Francisco, CA 94016" +153013,Wired Headphones,1,11.99,01/09/19 22:59,"867 Washington St, San Francisco, CA 94016" +153014,Apple Airpods Headphones,1,150,01/01/19 21:59,"414 8th St, Boston, MA 02215" +153015,27in 4K Gaming Monitor,1,389.99,01/22/19 20:51,"347 Center St, Boston, MA 02215" +153015,27in FHD Monitor,1,149.99,01/22/19 20:51,"347 Center St, Boston, MA 02215" +153016,Flatscreen TV,1,300,01/03/19 10:39,"945 Chestnut St, Austin, TX 73301" +153017,AAA Batteries (4-pack),1,2.99,01/07/19 01:16,"576 Dogwood St, Los Angeles, CA 90001" +153018,ThinkPad Laptop,1,999.99,01/17/19 17:32,"894 Washington St, San Francisco, CA 94016" +153019,USB-C Charging Cable,1,11.95,01/06/19 23:12,"413 Dogwood St, New York City, NY 10001" +153020,AA Batteries (4-pack),2,3.84,01/06/19 22:27,"186 River St, Atlanta, GA 30301" +153021,Macbook Pro Laptop,1,1700,01/23/19 23:43,"513 6th St, San Francisco, CA 94016" +153022,Apple Airpods Headphones,1,150,01/15/19 08:17,"19 Cedar St, Los Angeles, CA 90001" +153023,AA Batteries (4-pack),1,3.84,01/23/19 15:38,"139 West St, Atlanta, GA 30301" +153024,27in 4K Gaming Monitor,1,389.99,01/07/19 07:08,"264 1st St, San Francisco, CA 94016" +153025,27in 4K Gaming Monitor,1,389.99,01/25/19 20:18,"729 West St, Atlanta, GA 30301" +153026,Lightning Charging Cable,1,14.95,01/29/19 17:27,"58 1st St, Boston, MA 02215" +153027,Flatscreen TV,1,300,01/23/19 23:16,"988 Center St, Boston, MA 02215" +153028,Lightning Charging Cable,2,14.95,01/28/19 22:40,"172 Lincoln St, Austin, TX 73301" +153029,34in Ultrawide Monitor,1,379.99,01/25/19 10:46,"525 13th St, San Francisco, CA 94016" +153030,27in 4K Gaming Monitor,1,389.99,01/31/19 13:33,"241 Washington St, Seattle, WA 98101" +153031,Lightning Charging Cable,1,14.95,01/18/19 10:40,"125 Main St, Austin, TX 73301" +153032,Wired Headphones,1,11.99,01/29/19 22:15,"872 Ridge St, New York City, NY 10001" +153033,Lightning Charging Cable,1,14.95,01/22/19 16:47,"164 8th St, Atlanta, GA 30301" +153034,Wired Headphones,2,11.99,01/19/19 15:05,"335 7th St, San Francisco, CA 94016" +153035,USB-C Charging Cable,1,11.95,01/25/19 11:59,"474 11th St, Seattle, WA 98101" +153036,Wired Headphones,1,11.99,02/01/19 02:01,"362 Cedar St, Boston, MA 02215" +153037,Wired Headphones,1,11.99,01/29/19 16:43,"856 North St, New York City, NY 10001" +153038,AA Batteries (4-pack),1,3.84,01/25/19 18:38,"891 Cedar St, Portland, OR 97035" +153039,34in Ultrawide Monitor,1,379.99,01/25/19 12:35,"121 Dogwood St, Atlanta, GA 30301" +153040,20in Monitor,1,109.99,01/06/19 17:12,"843 14th St, New York City, NY 10001" +153041,USB-C Charging Cable,1,11.95,01/12/19 10:52,"808 Ridge St, Atlanta, GA 30301" +153042,AA Batteries (4-pack),1,3.84,01/15/19 22:42,"731 8th St, Dallas, TX 75001" +153043,Bose SoundSport Headphones,1,99.99,01/01/19 17:12,"488 Willow St, Dallas, TX 75001" +153044,AAA Batteries (4-pack),1,2.99,01/07/19 14:04,"936 9th St, Austin, TX 73301" +153045,20in Monitor,1,109.99,01/20/19 11:15,"652 Adams St, Los Angeles, CA 90001" +153046,Lightning Charging Cable,1,14.95,01/10/19 21:00,"980 5th St, Austin, TX 73301" +153047,27in FHD Monitor,1,149.99,01/30/19 17:46,"2 Lake St, Austin, TX 73301" +153048,AAA Batteries (4-pack),1,2.99,01/08/19 15:02,"846 Elm St, Atlanta, GA 30301" +153049,Bose SoundSport Headphones,1,99.99,01/11/19 20:38,"723 7th St, Boston, MA 02215" +153050,USB-C Charging Cable,1,11.95,01/05/19 15:47,"597 North St, San Francisco, CA 94016" +153051,iPhone,1,700,01/20/19 22:30,"479 Cherry St, San Francisco, CA 94016" +153052,USB-C Charging Cable,1,11.95,01/27/19 12:04,"572 Maple St, San Francisco, CA 94016" +153053,Wired Headphones,1,11.99,01/08/19 16:25,"508 13th St, Dallas, TX 75001" +153054,USB-C Charging Cable,1,11.95,01/15/19 17:13,"170 South St, Atlanta, GA 30301" +153055,Flatscreen TV,1,300,01/14/19 16:25,"536 4th St, Austin, TX 73301" +153056,Wired Headphones,1,11.99,01/19/19 15:06,"743 Willow St, San Francisco, CA 94016" +153057,27in 4K Gaming Monitor,1,389.99,01/16/19 21:43,"657 13th St, Austin, TX 73301" +153058,Lightning Charging Cable,1,14.95,01/25/19 21:17,"56 Forest St, New York City, NY 10001" +153059,AAA Batteries (4-pack),1,2.99,01/26/19 20:45,"28 Lake St, Los Angeles, CA 90001" +153060,Lightning Charging Cable,1,14.95,01/20/19 19:18,"515 Lakeview St, Austin, TX 73301" +153061,Flatscreen TV,1,300,01/29/19 18:07,"494 Highland St, Boston, MA 02215" +153062,Apple Airpods Headphones,1,150,01/17/19 00:01,"234 Hickory St, Austin, TX 73301" +153063,AAA Batteries (4-pack),1,2.99,01/10/19 11:50,"647 Willow St, San Francisco, CA 94016" +153064,USB-C Charging Cable,1,11.95,01/03/19 08:59,"985 5th St, New York City, NY 10001" +153065,Wired Headphones,1,11.99,01/15/19 20:03,"944 Maple St, New York City, NY 10001" +153066,Lightning Charging Cable,1,14.95,01/25/19 01:37,"735 1st St, San Francisco, CA 94016" +153067,AA Batteries (4-pack),1,3.84,01/11/19 10:43,"607 Pine St, Seattle, WA 98101" +153068,34in Ultrawide Monitor,1,379.99,01/27/19 09:37,"26 Madison St, San Francisco, CA 94016" +153069,Apple Airpods Headphones,1,150,01/19/19 20:21,"804 Park St, Seattle, WA 98101" +153070,USB-C Charging Cable,1,11.95,01/31/19 18:37,"475 Park St, San Francisco, CA 94016" +153071,AA Batteries (4-pack),1,3.84,01/16/19 08:21,"111 Lincoln St, New York City, NY 10001" +153071,Wired Headphones,1,11.99,01/16/19 08:21,"111 Lincoln St, New York City, NY 10001" +153072,AA Batteries (4-pack),2,3.84,01/23/19 22:57,"560 Lakeview St, Atlanta, GA 30301" +153073,ThinkPad Laptop,1,999.99,01/01/19 20:33,"326 7th St, San Francisco, CA 94016" +153073,Wired Headphones,2,11.99,01/01/19 20:33,"326 7th St, San Francisco, CA 94016" +153074,Apple Airpods Headphones,1,150,01/19/19 13:24,"322 Lakeview St, Los Angeles, CA 90001" +153075,AA Batteries (4-pack),1,3.84,01/07/19 00:31,"133 Chestnut St, Los Angeles, CA 90001" +153076,AA Batteries (4-pack),2,3.84,01/14/19 22:13,"108 Jackson St, San Francisco, CA 94016" +153077,Vareebadd Phone,1,400,01/04/19 10:33,"596 1st St, New York City, NY 10001" +153078,Wired Headphones,1,11.99,01/24/19 12:45,"450 1st St, San Francisco, CA 94016" +153079,Bose SoundSport Headphones,1,99.99,01/28/19 18:42,"799 Maple St, Los Angeles, CA 90001" +153080,Wired Headphones,1,11.99,01/06/19 16:02,"653 Main St, Portland, ME 04101" +153081,Lightning Charging Cable,1,14.95,01/26/19 17:40,"349 Walnut St, San Francisco, CA 94016" +153082,USB-C Charging Cable,1,11.95,01/14/19 15:00,"205 Lincoln St, New York City, NY 10001" +153083,Lightning Charging Cable,1,14.95,01/28/19 12:32,"160 Adams St, Atlanta, GA 30301" +153084,Apple Airpods Headphones,1,150,01/31/19 14:38,"167 5th St, Atlanta, GA 30301" +153085,27in FHD Monitor,1,149.99,01/15/19 22:18,"886 West St, Los Angeles, CA 90001" +153086,Wired Headphones,1,11.99,01/29/19 13:32,"358 River St, Boston, MA 02215" +153087,27in 4K Gaming Monitor,1,389.99,01/23/19 20:06,"559 11th St, Portland, OR 97035" +153088,LG Dryer,1,600.0,01/04/19 16:44,"625 Main St, Portland, OR 97035" +153089,Vareebadd Phone,1,400,01/31/19 23:09,"878 Ridge St, Los Angeles, CA 90001" +153089,USB-C Charging Cable,1,11.95,01/31/19 23:09,"878 Ridge St, Los Angeles, CA 90001" +153090,USB-C Charging Cable,1,11.95,01/08/19 11:59,"586 6th St, Dallas, TX 75001" +153091,USB-C Charging Cable,1,11.95,01/21/19 17:32,"814 River St, Seattle, WA 98101" +153092,Lightning Charging Cable,1,14.95,01/11/19 16:14,"183 Meadow St, Seattle, WA 98101" +153093,34in Ultrawide Monitor,1,379.99,01/02/19 18:38,"975 Walnut St, Seattle, WA 98101" +153094,AA Batteries (4-pack),1,3.84,01/18/19 00:51,"431 Spruce St, Seattle, WA 98101" +153095,AAA Batteries (4-pack),2,2.99,01/06/19 12:43,"521 Cedar St, New York City, NY 10001" +153096,34in Ultrawide Monitor,1,379.99,01/26/19 20:17,"700 Washington St, Los Angeles, CA 90001" +153097,Macbook Pro Laptop,1,1700,01/05/19 12:38,"109 9th St, Dallas, TX 75001" +153098,USB-C Charging Cable,1,11.95,01/29/19 23:28,"398 Park St, Los Angeles, CA 90001" +153099,Google Phone,1,600,01/03/19 11:15,"686 Park St, Boston, MA 02215" +153100,Wired Headphones,1,11.99,01/04/19 17:46,"513 5th St, Portland, ME 04101" +153101,27in FHD Monitor,1,149.99,01/16/19 09:48,"975 Maple St, Austin, TX 73301" +153102,AA Batteries (4-pack),2,3.84,01/13/19 17:05,"167 6th St, Boston, MA 02215" +153103,AAA Batteries (4-pack),2,2.99,01/28/19 12:19,"738 Main St, Atlanta, GA 30301" +153104,ThinkPad Laptop,1,999.99,01/30/19 14:46,"647 Elm St, Portland, OR 97035" +153105,Lightning Charging Cable,1,14.95,01/11/19 19:24,"891 9th St, Atlanta, GA 30301" +153106,iPhone,1,700,01/14/19 21:50,"726 Adams St, New York City, NY 10001" +153107,Lightning Charging Cable,1,14.95,01/19/19 16:03,"981 Church St, San Francisco, CA 94016" +153108,AAA Batteries (4-pack),1,2.99,01/25/19 14:00,"507 Johnson St, Los Angeles, CA 90001" +153109,Bose SoundSport Headphones,1,99.99,01/07/19 23:20,"90 South St, Boston, MA 02215" +153110,iPhone,1,700,01/10/19 20:36,"422 Johnson St, Los Angeles, CA 90001" +153111,27in 4K Gaming Monitor,1,389.99,01/09/19 19:02,"19 Lincoln St, San Francisco, CA 94016" +153112,Bose SoundSport Headphones,1,99.99,01/15/19 02:23,"337 Sunset St, San Francisco, CA 94016" +153113,27in FHD Monitor,1,149.99,02/01/19 01:23,"650 11th St, Portland, OR 97035" +153114,AA Batteries (4-pack),1,3.84,01/04/19 18:08,"451 Center St, San Francisco, CA 94016" +153115,Macbook Pro Laptop,1,1700,01/30/19 18:28,"231 Hill St, Seattle, WA 98101" +153116,AAA Batteries (4-pack),5,2.99,01/04/19 10:50,"593 Sunset St, Austin, TX 73301" +153117,Flatscreen TV,1,300,01/10/19 05:05,"665 Walnut St, Boston, MA 02215" +153118,34in Ultrawide Monitor,1,379.99,01/01/19 12:02,"796 4th St, San Francisco, CA 94016" +153119,Bose SoundSport Headphones,1,99.99,01/20/19 15:40,"591 Jackson St, New York City, NY 10001" +153120,AA Batteries (4-pack),2,3.84,01/02/19 22:02,"121 7th St, Austin, TX 73301" +153121,Apple Airpods Headphones,1,150,01/27/19 17:09,"397 Lake St, Los Angeles, CA 90001" +153122,AA Batteries (4-pack),1,3.84,01/20/19 08:22,"325 South St, Los Angeles, CA 90001" +153123,Lightning Charging Cable,1,14.95,01/13/19 13:59,"909 11th St, Los Angeles, CA 90001" +153124,AAA Batteries (4-pack),1,2.99,01/05/19 12:51,"358 Dogwood St, Boston, MA 02215" +153125,Lightning Charging Cable,2,14.95,01/26/19 22:04,"87 Cedar St, Boston, MA 02215" +153126,Google Phone,1,600,01/30/19 14:25,"100 Washington St, New York City, NY 10001" +153127,27in FHD Monitor,1,149.99,01/03/19 23:26,"651 Forest St, Dallas, TX 75001" +153128,USB-C Charging Cable,2,11.95,01/28/19 00:57,"301 Hickory St, San Francisco, CA 94016" +153129,27in 4K Gaming Monitor,1,389.99,01/13/19 01:45,"190 Center St, Boston, MA 02215" +153130,Lightning Charging Cable,2,14.95,01/12/19 18:53,"32 Jefferson St, Seattle, WA 98101" +153131,Wired Headphones,2,11.99,01/09/19 04:18,"80 Spruce St, San Francisco, CA 94016" +153132,USB-C Charging Cable,1,11.95,01/24/19 19:55,"447 Lakeview St, New York City, NY 10001" +153133,ThinkPad Laptop,1,999.99,01/13/19 13:23,"159 Adams St, San Francisco, CA 94016" +153134,USB-C Charging Cable,1,11.95,01/28/19 20:00,"310 14th St, Boston, MA 02215" +153135,Wired Headphones,1,11.99,01/26/19 21:09,"38 Center St, Seattle, WA 98101" +153136,27in 4K Gaming Monitor,1,389.99,01/22/19 11:56,"483 5th St, San Francisco, CA 94016" +153137,Lightning Charging Cable,1,14.95,01/09/19 15:09,"658 Cherry St, New York City, NY 10001" +153138,iPhone,1,700,01/28/19 13:11,"864 Adams St, San Francisco, CA 94016" +153139,USB-C Charging Cable,1,11.95,01/06/19 20:45,"501 Adams St, Atlanta, GA 30301" +153140,Lightning Charging Cable,1,14.95,01/28/19 21:12,"169 Ridge St, Atlanta, GA 30301" +153141,USB-C Charging Cable,1,11.95,01/02/19 11:45,"243 Pine St, Los Angeles, CA 90001" +153142,Apple Airpods Headphones,1,150,01/17/19 18:23,"93 Forest St, Los Angeles, CA 90001" +153143,Wired Headphones,1,11.99,01/21/19 16:05,"886 5th St, San Francisco, CA 94016" +153144,27in FHD Monitor,1,149.99,01/17/19 13:38,"426 North St, San Francisco, CA 94016" +153145,AA Batteries (4-pack),1,3.84,01/14/19 18:59,"679 10th St, Austin, TX 73301" +153146,USB-C Charging Cable,1,11.95,01/21/19 02:06,"564 Cedar St, Portland, OR 97035" +153147,Wired Headphones,1,11.99,01/15/19 16:16,"660 12th St, Los Angeles, CA 90001" +153148,27in FHD Monitor,1,149.99,01/08/19 09:49,"48 12th St, Portland, OR 97035" +153149,Apple Airpods Headphones,1,150,01/21/19 19:25,"613 Wilson St, San Francisco, CA 94016" +153150,34in Ultrawide Monitor,1,379.99,01/15/19 23:15,"395 Maple St, Los Angeles, CA 90001" +153151,Apple Airpods Headphones,1,150,01/23/19 17:26,"349 10th St, San Francisco, CA 94016" +153152,Lightning Charging Cable,1,14.95,01/21/19 23:50,"70 Church St, San Francisco, CA 94016" +153153,20in Monitor,1,109.99,01/09/19 11:19,"932 8th St, San Francisco, CA 94016" +153154,Lightning Charging Cable,1,14.95,01/07/19 14:56,"395 5th St, Portland, OR 97035" +153155,Wired Headphones,1,11.99,01/04/19 09:51,"842 Ridge St, Atlanta, GA 30301" +153156,Flatscreen TV,1,300,01/30/19 14:37,"555 11th St, Dallas, TX 75001" +153157,27in FHD Monitor,1,149.99,01/02/19 10:28,"865 Main St, Seattle, WA 98101" +153158,Bose SoundSport Headphones,1,99.99,01/14/19 19:35,"663 Ridge St, Austin, TX 73301" +153159,Apple Airpods Headphones,1,150,01/04/19 05:43,"449 Adams St, San Francisco, CA 94016" +153160,AAA Batteries (4-pack),1,2.99,01/18/19 12:54,"403 Spruce St, San Francisco, CA 94016" +153161,USB-C Charging Cable,2,11.95,01/26/19 20:14,"799 Lakeview St, Dallas, TX 75001" +153162,Bose SoundSport Headphones,1,99.99,01/09/19 14:28,"108 11th St, New York City, NY 10001" +153163,Lightning Charging Cable,1,14.95,01/10/19 10:27,"211 Sunset St, Atlanta, GA 30301" +153164,iPhone,1,700,01/07/19 09:25,"607 Dogwood St, San Francisco, CA 94016" +153164,Lightning Charging Cable,1,14.95,01/07/19 09:25,"607 Dogwood St, San Francisco, CA 94016" +153165,34in Ultrawide Monitor,1,379.99,01/21/19 21:51,"646 Main St, San Francisco, CA 94016" +153166,USB-C Charging Cable,1,11.95,01/25/19 04:19,"132 Spruce St, San Francisco, CA 94016" +153167,Google Phone,1,600,01/26/19 13:03,"911 Adams St, Boston, MA 02215" +153168,Lightning Charging Cable,1,14.95,01/08/19 12:42,"782 North St, San Francisco, CA 94016" +153169,27in 4K Gaming Monitor,1,389.99,01/10/19 10:04,"604 Lincoln St, Boston, MA 02215" +153170,AAA Batteries (4-pack),1,2.99,01/11/19 14:08,"362 6th St, Boston, MA 02215" +153171,iPhone,1,700,01/30/19 18:33,"646 Meadow St, Portland, OR 97035" +153172,USB-C Charging Cable,1,11.95,01/18/19 19:41,"955 2nd St, Seattle, WA 98101" +153173,USB-C Charging Cable,1,11.95,01/26/19 09:52,"96 Willow St, Boston, MA 02215" +153174,USB-C Charging Cable,1,11.95,01/23/19 12:45,"149 Sunset St, Dallas, TX 75001" +153175,Bose SoundSport Headphones,1,99.99,01/03/19 13:04,"103 4th St, Los Angeles, CA 90001" +153176,AAA Batteries (4-pack),1,2.99,01/28/19 22:39,"156 South St, New York City, NY 10001" +153177,Wired Headphones,1,11.99,01/06/19 14:12,"93 1st St, New York City, NY 10001" +153178,Lightning Charging Cable,1,14.95,01/07/19 20:11,"906 Sunset St, Austin, TX 73301" +153179,Lightning Charging Cable,1,14.95,01/08/19 19:43,"641 Walnut St, San Francisco, CA 94016" +153180,Google Phone,1,600,01/13/19 18:59,"460 12th St, New York City, NY 10001" +153181,USB-C Charging Cable,1,11.95,01/10/19 15:25,"359 Washington St, Atlanta, GA 30301" +153182,Wired Headphones,1,11.99,01/19/19 22:29,"302 4th St, San Francisco, CA 94016" +153183,Vareebadd Phone,1,400,01/25/19 11:33,"44 South St, Los Angeles, CA 90001" +153184,Apple Airpods Headphones,1,150,01/05/19 13:09,"683 Walnut St, San Francisco, CA 94016" +153185,Bose SoundSport Headphones,1,99.99,01/01/19 15:42,"96 7th St, Atlanta, GA 30301" +153186,ThinkPad Laptop,1,999.99,01/10/19 23:26,"987 Lincoln St, Boston, MA 02215" +153187,USB-C Charging Cable,1,11.95,01/18/19 18:21,"260 Lincoln St, New York City, NY 10001" +153188,AA Batteries (4-pack),1,3.84,01/20/19 20:02,"2 2nd St, Dallas, TX 75001" +153189,34in Ultrawide Monitor,1,379.99,01/11/19 09:14,"736 Madison St, Los Angeles, CA 90001" +153190,Bose SoundSport Headphones,1,99.99,01/18/19 06:26,"900 1st St, San Francisco, CA 94016" +153191,Lightning Charging Cable,1,14.95,01/30/19 20:14,"412 Elm St, San Francisco, CA 94016" +153192,34in Ultrawide Monitor,1,379.99,01/11/19 12:53,"814 Chestnut St, Boston, MA 02215" +153193,USB-C Charging Cable,2,11.95,01/07/19 21:23,"773 Walnut St, Seattle, WA 98101" +153194,iPhone,1,700,01/04/19 19:59,"651 Pine St, New York City, NY 10001" +153195,USB-C Charging Cable,1,11.95,01/27/19 12:00,"791 Highland St, San Francisco, CA 94016" +153196,Apple Airpods Headphones,1,150,01/03/19 14:56,"638 South St, Los Angeles, CA 90001" +153197,Flatscreen TV,1,300,01/12/19 10:07,"224 2nd St, Atlanta, GA 30301" +153198,USB-C Charging Cable,1,11.95,01/24/19 20:39,"515 Ridge St, Atlanta, GA 30301" +153199,34in Ultrawide Monitor,1,379.99,01/04/19 19:56,"205 8th St, New York City, NY 10001" +153200,Bose SoundSport Headphones,1,99.99,01/27/19 23:51,"487 Main St, Los Angeles, CA 90001" +153201,AAA Batteries (4-pack),2,2.99,01/23/19 12:47,"387 Willow St, Seattle, WA 98101" +153202,Lightning Charging Cable,1,14.95,01/15/19 21:14,"731 Lakeview St, Boston, MA 02215" +153203,Lightning Charging Cable,1,14.95,01/28/19 14:20,"913 Sunset St, San Francisco, CA 94016" +153204,Flatscreen TV,1,300,01/27/19 02:17,"573 14th St, San Francisco, CA 94016" +153205,USB-C Charging Cable,1,11.95,01/23/19 21:30,"117 Willow St, Dallas, TX 75001" +153206,Lightning Charging Cable,1,14.95,01/30/19 16:50,"324 Forest St, Atlanta, GA 30301" +153207,Wired Headphones,1,11.99,01/08/19 13:52,"776 5th St, New York City, NY 10001" +153208,Lightning Charging Cable,1,14.95,01/29/19 12:56,"311 1st St, San Francisco, CA 94016" +153209,Apple Airpods Headphones,1,150,01/12/19 12:10,"979 Spruce St, New York City, NY 10001" +153210,Google Phone,1,600,01/20/19 20:29,"619 Madison St, Austin, TX 73301" +153211,AAA Batteries (4-pack),2,2.99,01/09/19 11:36,"237 6th St, Atlanta, GA 30301" +153212,Bose SoundSport Headphones,1,99.99,01/27/19 16:33,"931 14th St, San Francisco, CA 94016" +153213,iPhone,1,700,01/25/19 10:59,"462 Park St, San Francisco, CA 94016" +153214,34in Ultrawide Monitor,1,379.99,01/03/19 08:01,"476 Center St, San Francisco, CA 94016" +153215,Wired Headphones,1,11.99,01/02/19 00:16,"708 13th St, Dallas, TX 75001" +153216,USB-C Charging Cable,1,11.95,01/24/19 23:38,"560 Dogwood St, Boston, MA 02215" +153217,Apple Airpods Headphones,1,150,01/12/19 14:14,"566 Elm St, San Francisco, CA 94016" +153218,ThinkPad Laptop,1,999.99,01/29/19 07:54,"203 Ridge St, Seattle, WA 98101" +153219,34in Ultrawide Monitor,1,379.99,01/27/19 09:32,"783 Lake St, San Francisco, CA 94016" +153220,Lightning Charging Cable,1,14.95,01/01/19 13:13,"236 Hickory St, Atlanta, GA 30301" +153221,AA Batteries (4-pack),1,3.84,01/10/19 08:21,"963 Walnut St, Atlanta, GA 30301" +153222,Lightning Charging Cable,1,14.95,01/22/19 21:12,"535 Hill St, Dallas, TX 75001" +153223,AA Batteries (4-pack),1,3.84,01/29/19 09:10,"279 Church St, Los Angeles, CA 90001" +153224,AA Batteries (4-pack),1,3.84,01/28/19 18:51,"293 South St, San Francisco, CA 94016" +153225,Wired Headphones,1,11.99,01/18/19 08:16,"632 Cherry St, Portland, OR 97035" +153226,Macbook Pro Laptop,1,1700,01/04/19 22:44,"459 Ridge St, San Francisco, CA 94016" +153227,AA Batteries (4-pack),1,3.84,01/30/19 00:38,"120 Adams St, Los Angeles, CA 90001" +153228,27in 4K Gaming Monitor,1,389.99,01/29/19 16:52,"696 Main St, Dallas, TX 75001" +153229,Bose SoundSport Headphones,1,99.99,01/08/19 20:23,"436 North St, Los Angeles, CA 90001" +153230,Bose SoundSport Headphones,1,99.99,01/22/19 01:55,"405 Church St, San Francisco, CA 94016" +153231,Wired Headphones,1,11.99,01/16/19 15:02,"748 Johnson St, Boston, MA 02215" +153232,iPhone,1,700,01/23/19 10:05,"849 Highland St, San Francisco, CA 94016" +153233,iPhone,1,700,01/01/19 21:18,"915 12th St, Portland, OR 97035" +153234,AA Batteries (4-pack),1,3.84,01/18/19 17:33,"697 Madison St, Portland, OR 97035" +153235,27in FHD Monitor,1,149.99,01/20/19 19:48,"354 Sunset St, San Francisco, CA 94016" +153236,Wired Headphones,1,11.99,01/28/19 19:02,"600 Jefferson St, Seattle, WA 98101" +153237,Lightning Charging Cable,1,14.95,01/04/19 13:56,"392 North St, New York City, NY 10001" +153238,Apple Airpods Headphones,1,150,01/17/19 13:45,"201 Hill St, San Francisco, CA 94016" +153239,Bose SoundSport Headphones,1,99.99,01/19/19 08:01,"437 Lincoln St, Dallas, TX 75001" +153240,34in Ultrawide Monitor,1,379.99,01/01/19 17:40,"773 4th St, Los Angeles, CA 90001" +153241,AAA Batteries (4-pack),2,2.99,01/15/19 11:56,"161 14th St, San Francisco, CA 94016" +153242,Wired Headphones,1,11.99,01/05/19 15:55,"545 Ridge St, San Francisco, CA 94016" +153243,Apple Airpods Headphones,1,150,01/12/19 12:24,"297 Johnson St, Los Angeles, CA 90001" +153244,Lightning Charging Cable,1,14.95,01/09/19 13:43,"692 10th St, San Francisco, CA 94016" +153245,Apple Airpods Headphones,1,150,01/24/19 18:01,"979 Madison St, Boston, MA 02215" +153246,Lightning Charging Cable,1,14.95,01/05/19 14:09,"960 Highland St, San Francisco, CA 94016" +153247,Wired Headphones,1,11.99,01/29/19 15:14,"676 Walnut St, Atlanta, GA 30301" +153248,AAA Batteries (4-pack),1,2.99,01/25/19 20:57,"574 River St, New York City, NY 10001" +153249,AAA Batteries (4-pack),2,2.99,01/15/19 14:38,"275 North St, Boston, MA 02215" +153249,27in 4K Gaming Monitor,2,389.99,01/15/19 14:38,"275 North St, Boston, MA 02215" +153250,27in 4K Gaming Monitor,1,389.99,01/26/19 10:02,"810 Pine St, New York City, NY 10001" +153251,ThinkPad Laptop,1,999.99,01/15/19 12:23,"202 Sunset St, San Francisco, CA 94016" +153251,27in 4K Gaming Monitor,1,389.99,01/15/19 12:23,"202 Sunset St, San Francisco, CA 94016" +153252,AAA Batteries (4-pack),2,2.99,01/02/19 15:33,"949 Center St, San Francisco, CA 94016" +153253,AA Batteries (4-pack),2,3.84,01/29/19 00:08,"509 Elm St, Seattle, WA 98101" +153254,Wired Headphones,2,11.99,01/21/19 21:14,"331 Spruce St, Los Angeles, CA 90001" +153255,Flatscreen TV,1,300,01/19/19 21:12,"523 Cherry St, San Francisco, CA 94016" +153256,Apple Airpods Headphones,1,150,01/16/19 12:19,"806 Lincoln St, Atlanta, GA 30301" +153257,Apple Airpods Headphones,1,150,01/10/19 13:34,"224 Dogwood St, Austin, TX 73301" +153258,ThinkPad Laptop,1,999.99,01/06/19 07:37,"299 1st St, San Francisco, CA 94016" +153259,ThinkPad Laptop,1,999.99,01/31/19 10:43,"257 Lake St, San Francisco, CA 94016" +153260,20in Monitor,1,109.99,01/29/19 22:14,"26 Spruce St, San Francisco, CA 94016" +153261,Bose SoundSport Headphones,1,99.99,01/10/19 21:21,"277 5th St, San Francisco, CA 94016" +153262,AA Batteries (4-pack),3,3.84,01/09/19 13:59,"630 North St, Dallas, TX 75001" +153263,Lightning Charging Cable,1,14.95,01/30/19 13:18,"914 Center St, Los Angeles, CA 90001" +153264,Lightning Charging Cable,1,14.95,01/25/19 15:49,"149 Pine St, Dallas, TX 75001" +153265,27in FHD Monitor,1,149.99,01/25/19 19:12,"140 Johnson St, Seattle, WA 98101" +153266,Bose SoundSport Headphones,1,99.99,01/17/19 09:16,"329 Lake St, Atlanta, GA 30301" +153267,AAA Batteries (4-pack),1,2.99,01/01/19 21:20,"17 Lincoln St, Atlanta, GA 30301" +153268,Lightning Charging Cable,1,14.95,01/03/19 20:04,"228 Spruce St, Los Angeles, CA 90001" +153269,ThinkPad Laptop,1,999.99,01/22/19 14:46,"741 Lincoln St, San Francisco, CA 94016" +153270,USB-C Charging Cable,1,11.95,01/26/19 19:42,"652 Main St, Los Angeles, CA 90001" +153271,Vareebadd Phone,1,400,01/02/19 19:24,"477 12th St, San Francisco, CA 94016" +153272,Lightning Charging Cable,1,14.95,01/04/19 12:40,"384 River St, San Francisco, CA 94016" +153273,Apple Airpods Headphones,1,150,01/11/19 20:54,"898 Lincoln St, Portland, OR 97035" +153274,Wired Headphones,1,11.99,01/19/19 18:51,"972 Chestnut St, San Francisco, CA 94016" +153275,USB-C Charging Cable,1,11.95,01/02/19 10:32,"810 Chestnut St, San Francisco, CA 94016" +153276,AAA Batteries (4-pack),1,2.99,01/25/19 08:04,"8 Sunset St, Dallas, TX 75001" +153277,USB-C Charging Cable,1,11.95,01/01/19 13:03,"724 Sunset St, San Francisco, CA 94016" +153278,Apple Airpods Headphones,1,150,01/03/19 04:41,"573 River St, New York City, NY 10001" +153279,AA Batteries (4-pack),1,3.84,01/14/19 12:28,"847 2nd St, New York City, NY 10001" +153280,Lightning Charging Cable,1,14.95,01/11/19 18:32,"485 Madison St, San Francisco, CA 94016" +153281,Apple Airpods Headphones,1,150,01/04/19 20:32,"653 Lakeview St, San Francisco, CA 94016" +153282,20in Monitor,1,109.99,01/19/19 21:44,"824 4th St, Atlanta, GA 30301" +153283,AA Batteries (4-pack),3,3.84,01/26/19 15:10,"197 Elm St, San Francisco, CA 94016" +153284,Google Phone,1,600,01/06/19 18:59,"213 Wilson St, New York City, NY 10001" +153285,USB-C Charging Cable,1,11.95,01/12/19 18:17,"554 9th St, New York City, NY 10001" +153286,AA Batteries (4-pack),1,3.84,01/19/19 16:52,"748 Dogwood St, New York City, NY 10001" +153287,Lightning Charging Cable,1,14.95,01/22/19 20:48,"948 Main St, San Francisco, CA 94016" +153288,USB-C Charging Cable,2,11.95,01/03/19 14:04,"774 12th St, San Francisco, CA 94016" +153289,Bose SoundSport Headphones,1,99.99,01/10/19 10:03,"461 13th St, San Francisco, CA 94016" +153290,AAA Batteries (4-pack),1,2.99,01/25/19 07:18,"883 Hill St, Seattle, WA 98101" +153291,Apple Airpods Headphones,1,150,01/29/19 09:42,"95 Chestnut St, San Francisco, CA 94016" +153292,Wired Headphones,1,11.99,01/01/19 15:26,"633 Hill St, New York City, NY 10001" +153293,Apple Airpods Headphones,1,150,01/30/19 21:54,"776 Cedar St, San Francisco, CA 94016" +153294,27in 4K Gaming Monitor,1,389.99,01/12/19 21:33,"618 Lincoln St, Los Angeles, CA 90001" +153295,iPhone,1,700,01/30/19 15:41,"535 North St, Boston, MA 02215" +153296,AA Batteries (4-pack),2,3.84,01/12/19 05:52,"505 9th St, San Francisco, CA 94016" +153297,27in FHD Monitor,1,149.99,01/11/19 11:15,"660 West St, New York City, NY 10001" +153298,Lightning Charging Cable,1,14.95,01/13/19 12:01,"363 Maple St, Portland, OR 97035" +153299,iPhone,1,700,01/31/19 12:07,"260 Willow St, Portland, OR 97035" +153299,Lightning Charging Cable,1,14.95,01/31/19 12:07,"260 Willow St, Portland, OR 97035" +153300,Wired Headphones,1,11.99,01/16/19 09:23,"801 Wilson St, San Francisco, CA 94016" +153301,Apple Airpods Headphones,1,150,01/17/19 19:54,"959 Church St, Dallas, TX 75001" +153302,20in Monitor,1,109.99,01/26/19 13:09,"459 Jackson St, San Francisco, CA 94016" +153303,AAA Batteries (4-pack),2,2.99,01/25/19 17:36,"976 Maple St, San Francisco, CA 94016" +153304,USB-C Charging Cable,1,11.95,01/06/19 10:10,"781 Maple St, Los Angeles, CA 90001" +153305,USB-C Charging Cable,1,11.95,01/06/19 07:11,"218 Jackson St, San Francisco, CA 94016" +153306,Wired Headphones,1,11.99,01/13/19 09:39,"417 Church St, Austin, TX 73301" +153307,Wired Headphones,1,11.99,01/05/19 06:11,"825 Cedar St, Dallas, TX 75001" +153308,Lightning Charging Cable,1,14.95,01/30/19 21:10,"540 Willow St, Dallas, TX 75001" +153309,Google Phone,1,600,01/22/19 14:33,"398 Lincoln St, Dallas, TX 75001" +153310,Lightning Charging Cable,1,14.95,01/12/19 13:34,"386 12th St, Boston, MA 02215" +153311,Apple Airpods Headphones,1,150,01/22/19 11:01,"436 Pine St, San Francisco, CA 94016" +153312,Bose SoundSport Headphones,1,99.99,01/19/19 14:36,"935 2nd St, San Francisco, CA 94016" +153313,Wired Headphones,1,11.99,01/07/19 16:38,"99 4th St, Seattle, WA 98101" +153314,ThinkPad Laptop,1,999.99,01/08/19 18:26,"976 Jackson St, Portland, OR 97035" +153315,USB-C Charging Cable,1,11.95,01/14/19 18:36,"741 Pine St, San Francisco, CA 94016" +153316,AA Batteries (4-pack),1,3.84,01/20/19 12:00,"984 Highland St, San Francisco, CA 94016" +153317,Vareebadd Phone,1,400,01/17/19 11:43,"546 West St, Dallas, TX 75001" +153318,AAA Batteries (4-pack),2,2.99,01/14/19 00:29,"657 Lakeview St, New York City, NY 10001" +153319,Lightning Charging Cable,1,14.95,01/09/19 09:39,"503 13th St, New York City, NY 10001" +153320,Lightning Charging Cable,1,14.95,01/14/19 17:47,"574 5th St, Atlanta, GA 30301" +153321,USB-C Charging Cable,1,11.95,01/15/19 19:44,"884 Jefferson St, Austin, TX 73301" +153322,27in 4K Gaming Monitor,1,389.99,01/02/19 22:43,"193 14th St, Seattle, WA 98101" +153323,iPhone,1,700,01/30/19 15:39,"330 Wilson St, San Francisco, CA 94016" +153324,27in FHD Monitor,1,149.99,01/15/19 19:49,"341 Cherry St, Austin, TX 73301" +153325,LG Washing Machine,1,600.0,01/16/19 13:21,"936 Pine St, Austin, TX 73301" +153326,Wired Headphones,1,11.99,01/11/19 22:49,"620 6th St, Los Angeles, CA 90001" +153327,ThinkPad Laptop,1,999.99,01/03/19 11:41,"139 Adams St, Portland, OR 97035" +153328,AA Batteries (4-pack),1,3.84,01/31/19 15:05,"314 4th St, Boston, MA 02215" +153329,AAA Batteries (4-pack),2,2.99,01/03/19 19:58,"333 1st St, San Francisco, CA 94016" +153330,27in FHD Monitor,1,149.99,01/14/19 10:38,"242 Madison St, Dallas, TX 75001" +153331,Bose SoundSport Headphones,1,99.99,01/07/19 18:14,"744 1st St, Atlanta, GA 30301" +153332,27in 4K Gaming Monitor,1,389.99,01/17/19 07:19,"982 Jefferson St, Dallas, TX 75001" +153333,34in Ultrawide Monitor,1,379.99,01/18/19 07:13,"709 Adams St, San Francisco, CA 94016" +153334,Apple Airpods Headphones,1,150,01/08/19 18:14,"549 Center St, Los Angeles, CA 90001" +153335,Flatscreen TV,1,300,01/06/19 08:52,"325 Madison St, San Francisco, CA 94016" +153335,20in Monitor,1,109.99,01/06/19 08:52,"325 Madison St, San Francisco, CA 94016" +153336,34in Ultrawide Monitor,1,379.99,01/02/19 16:24,"719 Johnson St, New York City, NY 10001" +153337,Lightning Charging Cable,1,14.95,01/01/19 20:59,"519 Lake St, New York City, NY 10001" +153338,iPhone,1,700,01/14/19 12:03,"310 Hill St, Dallas, TX 75001" +153339,Wired Headphones,1,11.99,01/28/19 00:23,"155 North St, Boston, MA 02215" +153340,Flatscreen TV,1,300,01/28/19 14:46,"340 Cherry St, San Francisco, CA 94016" +153341,Lightning Charging Cable,1,14.95,01/05/19 18:13,"376 Cherry St, Seattle, WA 98101" +153342,27in 4K Gaming Monitor,1,389.99,01/13/19 15:18,"987 Highland St, Austin, TX 73301" +153343,27in 4K Gaming Monitor,1,389.99,01/02/19 09:29,"427 4th St, San Francisco, CA 94016" +153344,AAA Batteries (4-pack),3,2.99,01/03/19 12:35,"223 Washington St, Boston, MA 02215" +153345,Lightning Charging Cable,1,14.95,01/29/19 11:26,"984 11th St, San Francisco, CA 94016" +153346,Wired Headphones,1,11.99,01/01/19 23:41,"325 Lakeview St, Portland, OR 97035" +153346,AAA Batteries (4-pack),2,2.99,01/01/19 23:41,"325 Lakeview St, Portland, OR 97035" +153347,34in Ultrawide Monitor,1,379.99,01/09/19 21:28,"166 Jackson St, Boston, MA 02215" +153348,Apple Airpods Headphones,1,150,01/24/19 15:05,"577 Forest St, Boston, MA 02215" +153349,ThinkPad Laptop,1,999.99,01/27/19 21:55,"890 Hickory St, Boston, MA 02215" +153350,AAA Batteries (4-pack),1,2.99,01/07/19 12:15,"460 South St, San Francisco, CA 94016" +153351,Lightning Charging Cable,1,14.95,01/11/19 18:49,"935 Elm St, Los Angeles, CA 90001" +153352,Google Phone,1,600,01/01/19 15:59,"393 Washington St, Los Angeles, CA 90001" +153353,AAA Batteries (4-pack),1,2.99,01/25/19 12:05,"23 Sunset St, San Francisco, CA 94016" +153354,Wired Headphones,1,11.99,01/13/19 19:12,"854 Pine St, Portland, OR 97035" +153355,AAA Batteries (4-pack),1,2.99,01/19/19 22:20,"616 8th St, Seattle, WA 98101" +153356,Google Phone,1,600,01/21/19 06:01,"402 1st St, Atlanta, GA 30301" +153357,34in Ultrawide Monitor,1,379.99,01/28/19 11:19,"630 Chestnut St, New York City, NY 10001" +153358,27in 4K Gaming Monitor,1,389.99,01/29/19 16:54,"269 14th St, Seattle, WA 98101" +153359,Bose SoundSport Headphones,1,99.99,01/29/19 12:11,"403 13th St, New York City, NY 10001" +153360,34in Ultrawide Monitor,1,379.99,01/21/19 17:31,"668 Pine St, New York City, NY 10001" +153361,AA Batteries (4-pack),2,3.84,01/20/19 18:53,"527 Forest St, Seattle, WA 98101" +153362,AA Batteries (4-pack),1,3.84,01/07/19 18:26,"727 Forest St, San Francisco, CA 94016" +153363,34in Ultrawide Monitor,1,379.99,01/01/19 11:35,"890 9th St, Dallas, TX 75001" +153364,ThinkPad Laptop,1,999.99,01/30/19 20:10,"890 Sunset St, San Francisco, CA 94016" +153365,AAA Batteries (4-pack),2,2.99,01/20/19 03:08,"900 Adams St, Seattle, WA 98101" +153366,Wired Headphones,1,11.99,01/21/19 10:20,"133 10th St, Boston, MA 02215" +153367,AAA Batteries (4-pack),1,2.99,01/05/19 14:17,"735 Pine St, San Francisco, CA 94016" +153368,AA Batteries (4-pack),1,3.84,01/06/19 20:29,"687 River St, New York City, NY 10001" +153369,USB-C Charging Cable,1,11.95,01/09/19 22:30,"106 Elm St, Los Angeles, CA 90001" +153370,34in Ultrawide Monitor,1,379.99,01/29/19 21:12,"432 Madison St, Boston, MA 02215" +153371,AA Batteries (4-pack),1,3.84,01/25/19 12:32,"83 Madison St, Dallas, TX 75001" +153372,Apple Airpods Headphones,1,150,01/02/19 12:47,"941 River St, Los Angeles, CA 90001" +153373,AAA Batteries (4-pack),1,2.99,01/06/19 14:34,"807 Highland St, Austin, TX 73301" +153374,Flatscreen TV,1,300,01/25/19 19:49,"862 Forest St, Dallas, TX 75001" +153375,Apple Airpods Headphones,1,150,01/07/19 14:09,"577 2nd St, Seattle, WA 98101" +153376,Lightning Charging Cable,1,14.95,01/05/19 09:23,"4 14th St, Dallas, TX 75001" +153377,AA Batteries (4-pack),1,3.84,01/23/19 20:33,"646 Elm St, New York City, NY 10001" +153378,Bose SoundSport Headphones,1,99.99,01/27/19 20:46,"298 North St, Atlanta, GA 30301" +153379,27in FHD Monitor,1,149.99,01/08/19 19:24,"827 Forest St, Austin, TX 73301" +153380,Apple Airpods Headphones,1,150,01/04/19 19:35,"928 Jefferson St, Austin, TX 73301" +153381,USB-C Charging Cable,1,11.95,01/22/19 20:25,"222 Maple St, San Francisco, CA 94016" +153382,Bose SoundSport Headphones,1,99.99,01/04/19 18:31,"247 12th St, Dallas, TX 75001" +153383,Wired Headphones,1,11.99,01/22/19 11:08,"594 Spruce St, Atlanta, GA 30301" +153384,AA Batteries (4-pack),1,3.84,01/18/19 18:14,"882 Washington St, San Francisco, CA 94016" +153385,Lightning Charging Cable,1,14.95,01/21/19 09:23,"965 12th St, Seattle, WA 98101" +153386,AA Batteries (4-pack),2,3.84,01/12/19 14:24,"858 Ridge St, New York City, NY 10001" +153387,Wired Headphones,1,11.99,01/29/19 15:06,"77 10th St, San Francisco, CA 94016" +153388,Bose SoundSport Headphones,1,99.99,01/17/19 10:45,"622 Sunset St, Los Angeles, CA 90001" +153389,LG Dryer,1,600.0,01/31/19 21:49,"508 Meadow St, Boston, MA 02215" +153390,AA Batteries (4-pack),1,3.84,01/23/19 14:44,"961 Madison St, San Francisco, CA 94016" +,,,,, +153391,AAA Batteries (4-pack),1,2.99,01/18/19 14:50,"763 Church St, Los Angeles, CA 90001" +153392,Bose SoundSport Headphones,1,99.99,01/13/19 09:50,"918 14th St, Atlanta, GA 30301" +153393,AAA Batteries (4-pack),2,2.99,01/03/19 16:07,"806 Spruce St, Dallas, TX 75001" +153394,Lightning Charging Cable,1,14.95,01/24/19 16:09,"37 4th St, New York City, NY 10001" +153395,27in 4K Gaming Monitor,1,389.99,01/19/19 01:12,"876 Hickory St, Atlanta, GA 30301" +153396,USB-C Charging Cable,1,11.95,01/31/19 13:24,"538 Chestnut St, Boston, MA 02215" +153397,USB-C Charging Cable,1,11.95,01/26/19 23:00,"119 Lakeview St, New York City, NY 10001" +153397,Lightning Charging Cable,1,14.95,01/26/19 23:00,"119 Lakeview St, New York City, NY 10001" +153398,Macbook Pro Laptop,1,1700,01/25/19 14:38,"792 Main St, Austin, TX 73301" +153399,27in FHD Monitor,1,149.99,01/18/19 00:12,"840 9th St, San Francisco, CA 94016" +153400,USB-C Charging Cable,1,11.95,01/10/19 20:44,"849 Johnson St, Seattle, WA 98101" +153401,Macbook Pro Laptop,1,1700,01/16/19 11:38,"81 Forest St, Boston, MA 02215" +153402,ThinkPad Laptop,1,999.99,01/22/19 18:15,"536 Forest St, Austin, TX 73301" +153403,AA Batteries (4-pack),1,3.84,01/01/19 21:21,"228 Jefferson St, San Francisco, CA 94016" +153404,AAA Batteries (4-pack),1,2.99,01/16/19 15:02,"888 1st St, New York City, NY 10001" +153405,34in Ultrawide Monitor,1,379.99,01/16/19 20:11,"490 Johnson St, Los Angeles, CA 90001" +153406,Wired Headphones,1,11.99,01/13/19 08:33,"254 Lakeview St, San Francisco, CA 94016" +153407,AA Batteries (4-pack),3,3.84,01/29/19 14:38,"330 8th St, New York City, NY 10001" +153408,Lightning Charging Cable,1,14.95,01/25/19 02:54,"967 14th St, Seattle, WA 98101" +153409,Wired Headphones,1,11.99,01/16/19 15:40,"82 10th St, Austin, TX 73301" +153410,20in Monitor,1,109.99,01/01/19 07:30,"966 Washington St, Austin, TX 73301" +153411,AA Batteries (4-pack),1,3.84,01/26/19 10:53,"575 6th St, Seattle, WA 98101" +153412,AA Batteries (4-pack),1,3.84,01/15/19 21:29,"247 9th St, Seattle, WA 98101" +153413,Wired Headphones,1,11.99,01/31/19 10:01,"457 Center St, Austin, TX 73301" +153414,Flatscreen TV,1,300,01/17/19 13:34,"905 6th St, Dallas, TX 75001" +153415,27in FHD Monitor,1,149.99,01/19/19 19:01,"703 River St, Portland, OR 97035" +153416,Lightning Charging Cable,2,14.95,01/24/19 14:19,"798 Johnson St, Dallas, TX 75001" +153417,Lightning Charging Cable,1,14.95,01/03/19 23:33,"175 Forest St, San Francisco, CA 94016" +153418,Flatscreen TV,1,300,01/15/19 09:39,"491 12th St, San Francisco, CA 94016" +153419,iPhone,1,700,01/17/19 00:05,"459 Main St, San Francisco, CA 94016" +153420,Bose SoundSport Headphones,1,99.99,01/16/19 16:22,"826 Forest St, Los Angeles, CA 90001" +153421,27in 4K Gaming Monitor,1,389.99,01/10/19 09:56,"569 Cherry St, Dallas, TX 75001" +153422,Lightning Charging Cable,1,14.95,01/01/19 11:25,"531 Lakeview St, San Francisco, CA 94016" +153423,AAA Batteries (4-pack),1,2.99,01/08/19 18:49,"873 Forest St, San Francisco, CA 94016" +153424,USB-C Charging Cable,1,11.95,01/27/19 13:54,"695 7th St, San Francisco, CA 94016" +153425,Macbook Pro Laptop,1,1700,01/16/19 09:13,"244 Jackson St, Boston, MA 02215" +153426,Macbook Pro Laptop,1,1700,01/05/19 17:29,"39 8th St, Atlanta, GA 30301" +153427,27in FHD Monitor,1,149.99,01/11/19 19:34,"799 Dogwood St, Los Angeles, CA 90001" +153428,AAA Batteries (4-pack),1,2.99,01/20/19 10:17,"999 Washington St, Los Angeles, CA 90001" +153429,Wired Headphones,1,11.99,01/30/19 20:44,"523 Lakeview St, San Francisco, CA 94016" +153430,Macbook Pro Laptop,1,1700,01/09/19 13:20,"821 6th St, New York City, NY 10001" +153430,Apple Airpods Headphones,1,150,01/09/19 13:20,"821 6th St, New York City, NY 10001" +153431,Apple Airpods Headphones,1,150,01/09/19 21:55,"685 7th St, Portland, OR 97035" +153432,Lightning Charging Cable,1,14.95,01/11/19 18:46,"816 13th St, Boston, MA 02215" +153433,Bose SoundSport Headphones,1,99.99,01/14/19 14:17,"696 Jefferson St, Los Angeles, CA 90001" +153434,Flatscreen TV,1,300,01/19/19 11:08,"860 Cherry St, San Francisco, CA 94016" +153435,USB-C Charging Cable,1,11.95,01/22/19 14:25,"101 Hill St, Boston, MA 02215" +153436,AA Batteries (4-pack),2,3.84,01/30/19 17:32,"262 Church St, San Francisco, CA 94016" +153437,Apple Airpods Headphones,1,150,01/21/19 08:30,"913 5th St, San Francisco, CA 94016" +153438,AA Batteries (4-pack),1,3.84,01/23/19 17:11,"807 Pine St, Austin, TX 73301" +153439,Wired Headphones,1,11.99,01/24/19 18:58,"723 Meadow St, San Francisco, CA 94016" +153440,Lightning Charging Cable,1,14.95,01/26/19 20:16,"337 7th St, New York City, NY 10001" +153441,20in Monitor,1,109.99,01/26/19 19:48,"105 12th St, Dallas, TX 75001" +153442,AA Batteries (4-pack),1,3.84,01/03/19 10:57,"301 Forest St, Portland, OR 97035" +153443,USB-C Charging Cable,1,11.95,01/30/19 15:55,"40 5th St, Dallas, TX 75001" +153444,AAA Batteries (4-pack),2,2.99,01/25/19 19:51,"520 Ridge St, Atlanta, GA 30301" +153445,Lightning Charging Cable,1,14.95,01/06/19 09:14,"853 Dogwood St, Atlanta, GA 30301" +153446,Wired Headphones,1,11.99,01/05/19 00:49,"473 Sunset St, San Francisco, CA 94016" +153447,Apple Airpods Headphones,1,150,01/28/19 20:33,"157 8th St, Atlanta, GA 30301" +153448,Lightning Charging Cable,2,14.95,01/25/19 12:14,"438 9th St, Los Angeles, CA 90001" +153449,iPhone,1,700,01/10/19 16:07,"232 4th St, Portland, ME 04101" +153450,Flatscreen TV,1,300,01/12/19 13:54,"580 6th St, New York City, NY 10001" +153451,USB-C Charging Cable,1,11.95,01/08/19 15:12,"920 Hill St, San Francisco, CA 94016" +153452,USB-C Charging Cable,1,11.95,01/06/19 02:18,"84 4th St, Los Angeles, CA 90001" +153453,34in Ultrawide Monitor,1,379.99,01/18/19 14:36,"769 9th St, Los Angeles, CA 90001" +153454,Macbook Pro Laptop,1,1700,01/15/19 11:16,"123 Dogwood St, New York City, NY 10001" +153455,USB-C Charging Cable,1,11.95,01/02/19 18:36,"202 11th St, Boston, MA 02215" +153456,Wired Headphones,1,11.99,01/29/19 23:00,"477 8th St, Los Angeles, CA 90001" +153457,AA Batteries (4-pack),1,3.84,01/15/19 16:49,"607 7th St, San Francisco, CA 94016" +153458,Flatscreen TV,1,300,01/30/19 11:35,"249 Sunset St, San Francisco, CA 94016" +153459,Apple Airpods Headphones,1,150,01/13/19 09:53,"320 Wilson St, San Francisco, CA 94016" +153460,AA Batteries (4-pack),1,3.84,01/17/19 14:42,"829 Main St, San Francisco, CA 94016" +153461,Lightning Charging Cable,2,14.95,01/11/19 18:03,"963 Lake St, Seattle, WA 98101" +153462,20in Monitor,1,109.99,01/06/19 17:52,"18 Jackson St, New York City, NY 10001" +153463,AA Batteries (4-pack),1,3.84,01/05/19 14:29,"620 North St, Austin, TX 73301" +153464,AAA Batteries (4-pack),2,2.99,01/23/19 22:19,"807 13th St, New York City, NY 10001" +153465,Lightning Charging Cable,1,14.95,01/15/19 06:24,"30 Lincoln St, New York City, NY 10001" +153466,AAA Batteries (4-pack),1,2.99,01/11/19 21:38,"527 Lakeview St, Los Angeles, CA 90001" +153467,iPhone,1,700,01/06/19 23:51,"512 Main St, Los Angeles, CA 90001" +153468,Wired Headphones,1,11.99,01/28/19 21:27,"28 Washington St, Los Angeles, CA 90001" +153469,Apple Airpods Headphones,1,150,01/24/19 10:49,"731 5th St, Seattle, WA 98101" +153470,Lightning Charging Cable,1,14.95,01/24/19 18:58,"919 Chestnut St, Atlanta, GA 30301" +153471,27in 4K Gaming Monitor,1,389.99,01/07/19 21:07,"365 Ridge St, Boston, MA 02215" +153472,Lightning Charging Cable,1,14.95,01/24/19 12:14,"262 Sunset St, Portland, ME 04101" +153473,Macbook Pro Laptop,1,1700,01/11/19 22:26,"529 5th St, Portland, OR 97035" +153474,AA Batteries (4-pack),1,3.84,01/11/19 18:31,"973 Cedar St, San Francisco, CA 94016" +153475,AA Batteries (4-pack),1,3.84,01/01/19 11:27,"239 Ridge St, New York City, NY 10001" +153476,27in 4K Gaming Monitor,1,389.99,01/12/19 17:58,"911 Elm St, Atlanta, GA 30301" +153477,Vareebadd Phone,1,400,01/19/19 19:23,"383 Maple St, Portland, OR 97035" +153477,Wired Headphones,1,11.99,01/19/19 19:23,"383 Maple St, Portland, OR 97035" +153478,20in Monitor,1,109.99,01/02/19 19:12,"878 Church St, Los Angeles, CA 90001" +153479,27in FHD Monitor,1,149.99,01/22/19 16:57,"476 Pine St, Boston, MA 02215" +153480,20in Monitor,1,109.99,01/24/19 14:06,"222 Ridge St, Boston, MA 02215" +153481,34in Ultrawide Monitor,1,379.99,01/05/19 18:46,"133 Maple St, Portland, OR 97035" +153482,27in FHD Monitor,1,149.99,01/18/19 21:09,"739 Highland St, Los Angeles, CA 90001" +153483,Wired Headphones,1,11.99,01/21/19 13:28,"839 Cherry St, Seattle, WA 98101" +153484,Wired Headphones,1,11.99,01/27/19 18:35,"710 12th St, Atlanta, GA 30301" +153485,Bose SoundSport Headphones,1,99.99,01/29/19 16:24,"11 8th St, Boston, MA 02215" +153486,34in Ultrawide Monitor,1,379.99,01/29/19 12:06,"779 Hill St, New York City, NY 10001" +153487,Vareebadd Phone,1,400,01/12/19 14:45,"332 Jackson St, Boston, MA 02215" +153488,Flatscreen TV,1,300,01/10/19 10:04,"221 5th St, Seattle, WA 98101" +153489,Wired Headphones,1,11.99,01/31/19 16:01,"498 13th St, Los Angeles, CA 90001" +153490,Macbook Pro Laptop,1,1700,01/02/19 08:55,"668 Jefferson St, Atlanta, GA 30301" +153491,Apple Airpods Headphones,1,150,01/10/19 15:57,"310 Forest St, San Francisco, CA 94016" +153491,20in Monitor,1,109.99,01/10/19 15:57,"310 Forest St, San Francisco, CA 94016" +153492,Lightning Charging Cable,1,14.95,01/04/19 14:09,"778 2nd St, Los Angeles, CA 90001" +153493,AAA Batteries (4-pack),1,2.99,01/13/19 21:07,"772 Wilson St, Portland, OR 97035" +153494,Google Phone,1,600,01/20/19 15:16,"236 2nd St, Dallas, TX 75001" +153495,ThinkPad Laptop,1,999.99,01/24/19 12:04,"245 Sunset St, Boston, MA 02215" +153496,Bose SoundSport Headphones,1,99.99,01/11/19 14:16,"98 2nd St, New York City, NY 10001" +153497,34in Ultrawide Monitor,1,379.99,01/11/19 19:26,"46 Cherry St, San Francisco, CA 94016" +153498,AAA Batteries (4-pack),1,2.99,01/04/19 22:08,"454 Dogwood St, Seattle, WA 98101" +153499,Wired Headphones,1,11.99,01/29/19 10:03,"217 Washington St, San Francisco, CA 94016" +153500,Apple Airpods Headphones,1,150,01/09/19 03:15,"557 Lincoln St, Dallas, TX 75001" +153501,Lightning Charging Cable,1,14.95,01/07/19 20:47,"518 Park St, Dallas, TX 75001" +153502,AA Batteries (4-pack),1,3.84,01/14/19 15:31,"187 Johnson St, Los Angeles, CA 90001" +153503,Wired Headphones,1,11.99,01/26/19 01:51,"747 Jackson St, New York City, NY 10001" +153504,AAA Batteries (4-pack),2,2.99,01/29/19 10:44,"879 2nd St, Portland, OR 97035" +153505,Vareebadd Phone,1,400,01/01/19 17:37,"267 River St, New York City, NY 10001" +153506,Macbook Pro Laptop,1,1700,01/30/19 12:10,"390 West St, Dallas, TX 75001" +153507,Macbook Pro Laptop,1,1700,01/03/19 12:31,"526 Walnut St, San Francisco, CA 94016" +153508,Lightning Charging Cable,1,14.95,01/14/19 12:18,"987 Spruce St, Boston, MA 02215" +153509,27in 4K Gaming Monitor,1,389.99,01/23/19 19:32,"306 Cherry St, Los Angeles, CA 90001" +153510,AA Batteries (4-pack),1,3.84,01/23/19 05:07,"704 Lake St, Boston, MA 02215" +153511,Bose SoundSport Headphones,1,99.99,01/01/19 18:41,"915 Main St, Dallas, TX 75001" +153512,Bose SoundSport Headphones,1,99.99,01/09/19 16:21,"10 13th St, Los Angeles, CA 90001" +153513,AA Batteries (4-pack),2,3.84,01/31/19 11:51,"671 Ridge St, Dallas, TX 75001" +153514,AAA Batteries (4-pack),1,2.99,01/17/19 14:59,"537 Elm St, Portland, ME 04101" +153515,Wired Headphones,1,11.99,01/23/19 10:31,"337 Maple St, Dallas, TX 75001" +153516,Bose SoundSport Headphones,1,99.99,01/17/19 21:38,"687 Park St, San Francisco, CA 94016" +153517,34in Ultrawide Monitor,1,379.99,01/15/19 09:49,"934 Ridge St, San Francisco, CA 94016" +153517,27in 4K Gaming Monitor,1,389.99,01/15/19 09:49,"934 Ridge St, San Francisco, CA 94016" +153518,USB-C Charging Cable,1,11.95,01/19/19 19:30,"820 Lake St, Los Angeles, CA 90001" +153519,iPhone,1,700,01/22/19 10:21,"66 Sunset St, Austin, TX 73301" +153519,Lightning Charging Cable,1,14.95,01/22/19 10:21,"66 Sunset St, Austin, TX 73301" +153520,Apple Airpods Headphones,1,150,01/19/19 12:49,"901 Lakeview St, Atlanta, GA 30301" +153521,Vareebadd Phone,1,400,01/13/19 01:31,"128 Johnson St, Portland, ME 04101" +153522,iPhone,1,700,01/27/19 21:23,"648 9th St, Los Angeles, CA 90001" +153523,Apple Airpods Headphones,1,150,01/09/19 21:14,"285 Cherry St, Austin, TX 73301" +153524,27in 4K Gaming Monitor,1,389.99,01/04/19 23:54,"979 1st St, San Francisco, CA 94016" +153525,AAA Batteries (4-pack),1,2.99,01/13/19 17:22,"624 Maple St, Boston, MA 02215" +153526,27in FHD Monitor,1,149.99,01/13/19 19:35,"308 Lakeview St, San Francisco, CA 94016" +153527,AAA Batteries (4-pack),1,2.99,01/10/19 09:09,"164 4th St, San Francisco, CA 94016" +153528,Flatscreen TV,1,300,01/14/19 18:54,"693 West St, San Francisco, CA 94016" +153529,USB-C Charging Cable,1,11.95,01/08/19 08:58,"905 River St, Boston, MA 02215" +153530,Bose SoundSport Headphones,1,99.99,01/29/19 19:03,"266 Hill St, Boston, MA 02215" +153531,USB-C Charging Cable,1,11.95,01/14/19 19:15,"696 Wilson St, New York City, NY 10001" +153532,Wired Headphones,2,11.99,01/22/19 17:09,"453 6th St, Los Angeles, CA 90001" +153533,20in Monitor,1,109.99,01/07/19 20:32,"831 Adams St, San Francisco, CA 94016" +153534,AAA Batteries (4-pack),1,2.99,01/10/19 20:06,"133 Forest St, San Francisco, CA 94016" +153535,20in Monitor,1,109.99,01/15/19 15:29,"346 North St, Boston, MA 02215" +153536,Lightning Charging Cable,1,14.95,01/24/19 20:06,"648 1st St, Portland, OR 97035" +153537,ThinkPad Laptop,1,999.99,01/13/19 21:45,"460 Dogwood St, Los Angeles, CA 90001" +153538,27in 4K Gaming Monitor,1,389.99,01/31/19 15:49,"993 9th St, Portland, OR 97035" +153539,Lightning Charging Cable,1,14.95,01/26/19 08:42,"713 Madison St, Seattle, WA 98101" +153540,AAA Batteries (4-pack),1,2.99,01/27/19 10:19,"291 River St, Los Angeles, CA 90001" +153541,AAA Batteries (4-pack),1,2.99,01/16/19 23:13,"532 Elm St, San Francisco, CA 94016" +153542,Bose SoundSport Headphones,1,99.99,01/08/19 11:05,"799 Jefferson St, Atlanta, GA 30301" +153543,20in Monitor,1,109.99,01/07/19 14:15,"595 Ridge St, Los Angeles, CA 90001" +153544,iPhone,1,700,01/24/19 19:38,"725 13th St, Portland, OR 97035" +153545,AAA Batteries (4-pack),1,2.99,01/30/19 15:46,"757 Willow St, Dallas, TX 75001" +153546,AA Batteries (4-pack),1,3.84,01/05/19 01:40,"708 Chestnut St, San Francisco, CA 94016" +153547,AA Batteries (4-pack),1,3.84,01/17/19 13:50,"398 South St, Los Angeles, CA 90001" +153548,Lightning Charging Cable,1,14.95,01/11/19 11:43,"954 Highland St, Boston, MA 02215" +153549,Apple Airpods Headphones,1,150,01/05/19 09:40,"73 6th St, New York City, NY 10001" +153550,Google Phone,1,600,01/12/19 01:00,"792 7th St, Los Angeles, CA 90001" +153551,AA Batteries (4-pack),1,3.84,01/26/19 13:26,"136 13th St, San Francisco, CA 94016" +153552,AAA Batteries (4-pack),1,2.99,01/22/19 22:38,"872 North St, San Francisco, CA 94016" +153553,20in Monitor,1,109.99,01/02/19 21:53,"531 Sunset St, Portland, OR 97035" +153554,ThinkPad Laptop,1,999.99,01/18/19 23:57,"580 Cedar St, Portland, OR 97035" +153555,Bose SoundSport Headphones,1,99.99,01/06/19 01:01,"70 North St, Portland, OR 97035" +153556,Wired Headphones,1,11.99,01/05/19 15:45,"325 Main St, New York City, NY 10001" +153557,20in Monitor,1,109.99,01/25/19 20:36,"565 8th St, Los Angeles, CA 90001" +153558,USB-C Charging Cable,1,11.95,01/24/19 21:45,"135 Jackson St, Los Angeles, CA 90001" +153559,27in FHD Monitor,1,149.99,01/24/19 14:53,"594 13th St, New York City, NY 10001" +153560,AA Batteries (4-pack),1,3.84,01/05/19 18:47,"620 Dogwood St, Seattle, WA 98101" +153561,Lightning Charging Cable,1,14.95,01/29/19 13:13,"949 11th St, Los Angeles, CA 90001" +153562,Lightning Charging Cable,1,14.95,01/20/19 16:36,"71 8th St, Portland, OR 97035" +153563,Bose SoundSport Headphones,1,99.99,01/03/19 12:12,"164 Sunset St, San Francisco, CA 94016" +153564,Vareebadd Phone,1,400,01/04/19 12:16,"353 Adams St, Boston, MA 02215" +153564,USB-C Charging Cable,1,11.95,01/04/19 12:16,"353 Adams St, Boston, MA 02215" +153565,AA Batteries (4-pack),1,3.84,01/21/19 14:26,"405 Hill St, Portland, OR 97035" +153566,USB-C Charging Cable,1,11.95,01/16/19 12:58,"620 Washington St, Los Angeles, CA 90001" +153567,AAA Batteries (4-pack),1,2.99,01/11/19 15:11,"947 12th St, Dallas, TX 75001" +153568,27in 4K Gaming Monitor,1,389.99,01/20/19 12:15,"402 Hill St, Dallas, TX 75001" +153569,AAA Batteries (4-pack),1,2.99,01/13/19 18:47,"417 13th St, Atlanta, GA 30301" +153570,Wired Headphones,1,11.99,01/24/19 13:45,"760 Sunset St, Atlanta, GA 30301" +153571,USB-C Charging Cable,1,11.95,01/30/19 11:16,"520 8th St, San Francisco, CA 94016" +153572,Lightning Charging Cable,1,14.95,01/18/19 22:14,"112 Ridge St, Los Angeles, CA 90001" +153573,Lightning Charging Cable,1,14.95,01/14/19 09:58,"558 Center St, Boston, MA 02215" +153574,34in Ultrawide Monitor,1,379.99,01/25/19 17:44,"689 Elm St, San Francisco, CA 94016" +153575,27in FHD Monitor,1,149.99,01/05/19 10:32,"61 Dogwood St, Boston, MA 02215" +153576,Apple Airpods Headphones,1,150,01/25/19 09:23,"259 Willow St, Atlanta, GA 30301" +153577,USB-C Charging Cable,1,11.95,01/05/19 06:41,"569 Jackson St, Boston, MA 02215" +153578,Apple Airpods Headphones,1,150,01/26/19 14:41,"580 Adams St, Portland, OR 97035" +153579,AA Batteries (4-pack),1,3.84,01/30/19 19:14,"893 12th St, Boston, MA 02215" +153580,AA Batteries (4-pack),1,3.84,01/25/19 13:38,"602 Willow St, Los Angeles, CA 90001" +153581,Lightning Charging Cable,1,14.95,01/15/19 18:50,"519 7th St, Seattle, WA 98101" +153582,Google Phone,1,600,01/08/19 05:41,"971 10th St, Portland, ME 04101" +153582,Lightning Charging Cable,1,14.95,01/08/19 05:41,"971 10th St, Portland, ME 04101" +153583,Flatscreen TV,1,300,01/07/19 15:20,"725 South St, Austin, TX 73301" +153584,USB-C Charging Cable,1,11.95,01/21/19 08:42,"414 Washington St, New York City, NY 10001" +153585,Apple Airpods Headphones,1,150,01/08/19 23:14,"307 Willow St, New York City, NY 10001" +153586,Wired Headphones,1,11.99,01/23/19 22:36,"765 5th St, New York City, NY 10001" +153587,Google Phone,1,600,01/04/19 23:00,"252 Maple St, Boston, MA 02215" +153588,AA Batteries (4-pack),3,3.84,01/20/19 18:34,"153 14th St, New York City, NY 10001" +153589,Macbook Pro Laptop,1,1700,01/19/19 10:57,"805 Elm St, Los Angeles, CA 90001" +153590,Lightning Charging Cable,1,14.95,01/02/19 06:49,"172 Cedar St, Dallas, TX 75001" +153591,AAA Batteries (4-pack),2,2.99,01/03/19 12:16,"460 5th St, Seattle, WA 98101" +153592,AA Batteries (4-pack),1,3.84,01/13/19 20:22,"491 5th St, Boston, MA 02215" +153593,USB-C Charging Cable,1,11.95,01/01/19 17:40,"78 Forest St, San Francisco, CA 94016" +153594,Macbook Pro Laptop,1,1700,01/17/19 11:01,"608 Johnson St, Los Angeles, CA 90001" +153595,Bose SoundSport Headphones,1,99.99,01/18/19 12:23,"595 Forest St, San Francisco, CA 94016" +153596,Lightning Charging Cable,1,14.95,01/11/19 17:43,"636 Main St, Boston, MA 02215" +153597,AAA Batteries (4-pack),1,2.99,01/06/19 23:24,"494 Cedar St, Atlanta, GA 30301" +153598,AA Batteries (4-pack),1,3.84,01/17/19 18:00,"730 7th St, Seattle, WA 98101" +153599,Lightning Charging Cable,1,14.95,01/04/19 15:04,"933 11th St, Seattle, WA 98101" +153600,AAA Batteries (4-pack),1,2.99,01/30/19 19:13,"75 Park St, San Francisco, CA 94016" +153601,USB-C Charging Cable,1,11.95,01/08/19 00:14,"29 12th St, New York City, NY 10001" +,,,,, +153602,Lightning Charging Cable,1,14.95,01/22/19 11:55,"866 7th St, Portland, OR 97035" +153603,Apple Airpods Headphones,1,150,01/01/19 13:53,"268 Cedar St, Los Angeles, CA 90001" +153604,20in Monitor,1,109.99,01/01/19 13:36,"9 8th St, San Francisco, CA 94016" +153605,Lightning Charging Cable,1,14.95,01/18/19 10:34,"349 Main St, San Francisco, CA 94016" +153606,AA Batteries (4-pack),1,3.84,01/11/19 13:54,"639 Elm St, San Francisco, CA 94016" +153607,Lightning Charging Cable,1,14.95,01/24/19 14:51,"984 Pine St, New York City, NY 10001" +153608,Bose SoundSport Headphones,1,99.99,01/22/19 20:38,"274 5th St, Boston, MA 02215" +153609,34in Ultrawide Monitor,1,379.99,01/12/19 10:33,"832 Chestnut St, San Francisco, CA 94016" +153610,Flatscreen TV,1,300,01/13/19 22:29,"256 South St, Atlanta, GA 30301" +153611,AA Batteries (4-pack),1,3.84,01/21/19 00:51,"701 4th St, Seattle, WA 98101" +153612,Apple Airpods Headphones,1,150,01/13/19 13:35,"960 Spruce St, San Francisco, CA 94016" +153613,AA Batteries (4-pack),3,3.84,01/06/19 08:52,"607 Lakeview St, New York City, NY 10001" +153614,AAA Batteries (4-pack),1,2.99,01/10/19 20:30,"394 Forest St, Boston, MA 02215" +153615,Flatscreen TV,1,300,01/08/19 13:50,"986 14th St, Austin, TX 73301" +153616,27in 4K Gaming Monitor,1,389.99,01/26/19 13:33,"203 Willow St, Los Angeles, CA 90001" +153617,AA Batteries (4-pack),1,3.84,01/01/19 11:18,"334 Pine St, Dallas, TX 75001" +153618,LG Washing Machine,1,600.0,01/07/19 17:21,"313 Meadow St, Boston, MA 02215" +153619,34in Ultrawide Monitor,1,379.99,01/01/19 17:58,"747 11th St, San Francisco, CA 94016" +153620,Lightning Charging Cable,1,14.95,01/14/19 19:45,"892 Washington St, Los Angeles, CA 90001" +153621,Bose SoundSport Headphones,1,99.99,01/09/19 09:38,"699 9th St, San Francisco, CA 94016" +153622,ThinkPad Laptop,1,999.99,01/15/19 10:06,"978 11th St, Portland, OR 97035" +153623,Bose SoundSport Headphones,1,99.99,01/13/19 09:59,"925 Pine St, San Francisco, CA 94016" +153624,AA Batteries (4-pack),1,3.84,01/22/19 14:10,"269 Dogwood St, Atlanta, GA 30301" +153625,Lightning Charging Cable,1,14.95,01/01/19 17:36,"330 Chestnut St, Los Angeles, CA 90001" +153626,20in Monitor,1,109.99,01/16/19 13:09,"267 Lake St, Boston, MA 02215" +153627,Wired Headphones,1,11.99,01/22/19 22:09,"841 Jackson St, Los Angeles, CA 90001" +153628,34in Ultrawide Monitor,1,379.99,01/07/19 21:13,"804 Park St, New York City, NY 10001" +153629,ThinkPad Laptop,1,999.99,01/26/19 17:46,"402 River St, Boston, MA 02215" +153630,Apple Airpods Headphones,1,150,01/15/19 12:45,"995 Willow St, New York City, NY 10001" +153631,LG Washing Machine,1,600.0,01/09/19 09:49,"259 Pine St, New York City, NY 10001" +153632,LG Washing Machine,1,600.0,01/08/19 21:30,"873 8th St, Boston, MA 02215" +153633,iPhone,1,700,01/16/19 14:16,"501 12th St, Boston, MA 02215" +153634,34in Ultrawide Monitor,1,379.99,01/24/19 15:12,"146 Madison St, Boston, MA 02215" +153635,AA Batteries (4-pack),1,3.84,01/09/19 00:08,"550 10th St, San Francisco, CA 94016" +153636,Flatscreen TV,1,300,01/08/19 18:17,"446 Maple St, New York City, NY 10001" +153637,AA Batteries (4-pack),1,3.84,01/14/19 16:14,"353 Walnut St, New York City, NY 10001" +153638,27in FHD Monitor,1,149.99,01/22/19 17:43,"549 Center St, San Francisco, CA 94016" +153639,AA Batteries (4-pack),1,3.84,01/12/19 05:40,"898 7th St, New York City, NY 10001" +153640,Macbook Pro Laptop,1,1700,01/18/19 20:15,"314 Forest St, Portland, OR 97035" +153641,USB-C Charging Cable,1,11.95,01/05/19 22:50,"71 Forest St, Boston, MA 02215" +153642,Apple Airpods Headphones,1,150,01/24/19 15:37,"327 6th St, San Francisco, CA 94016" +153643,AAA Batteries (4-pack),1,2.99,01/02/19 12:16,"708 2nd St, Seattle, WA 98101" +,,,,, +153644,27in 4K Gaming Monitor,1,389.99,01/20/19 19:46,"778 Madison St, Los Angeles, CA 90001" +153645,Bose SoundSport Headphones,1,99.99,01/21/19 09:10,"211 11th St, Boston, MA 02215" +153646,Lightning Charging Cable,1,14.95,01/26/19 17:18,"976 Center St, San Francisco, CA 94016" +153647,Bose SoundSport Headphones,1,99.99,01/14/19 16:19,"437 10th St, San Francisco, CA 94016" +153648,USB-C Charging Cable,1,11.95,01/21/19 23:50,"407 Lake St, Dallas, TX 75001" +153649,Apple Airpods Headphones,1,150,01/05/19 00:19,"1 Walnut St, Los Angeles, CA 90001" +153650,Lightning Charging Cable,1,14.95,01/12/19 07:56,"190 Main St, Boston, MA 02215" +153651,27in FHD Monitor,1,149.99,01/15/19 16:56,"699 Lincoln St, Dallas, TX 75001" +153652,AA Batteries (4-pack),1,3.84,01/11/19 09:41,"501 Church St, Atlanta, GA 30301" +153653,USB-C Charging Cable,1,11.95,01/04/19 07:23,"69 Sunset St, Boston, MA 02215" +153654,Apple Airpods Headphones,1,150,01/08/19 20:16,"689 6th St, Los Angeles, CA 90001" +153655,AAA Batteries (4-pack),3,2.99,01/19/19 22:22,"897 2nd St, San Francisco, CA 94016" +153656,Lightning Charging Cable,1,14.95,01/14/19 14:13,"480 7th St, Dallas, TX 75001" +153657,AAA Batteries (4-pack),4,2.99,01/28/19 15:55,"853 Maple St, Boston, MA 02215" +153658,20in Monitor,1,109.99,01/20/19 08:20,"621 Willow St, Seattle, WA 98101" +,,,,, +153659,Wired Headphones,1,11.99,01/25/19 18:01,"637 Walnut St, Portland, OR 97035" +153660,AA Batteries (4-pack),2,3.84,01/02/19 09:16,"823 Wilson St, San Francisco, CA 94016" +153661,27in 4K Gaming Monitor,1,389.99,01/18/19 11:25,"873 Washington St, Atlanta, GA 30301" +153662,Macbook Pro Laptop,1,1700,01/04/19 02:27,"402 Lake St, Seattle, WA 98101" +153663,Flatscreen TV,1,300,01/09/19 12:01,"286 5th St, Austin, TX 73301" +153664,Bose SoundSport Headphones,1,99.99,01/12/19 13:20,"752 8th St, San Francisco, CA 94016" +153665,Wired Headphones,1,11.99,01/29/19 15:25,"531 Church St, San Francisco, CA 94016" +153666,Google Phone,1,600,01/30/19 16:13,"462 10th St, San Francisco, CA 94016" +153667,USB-C Charging Cable,1,11.95,01/13/19 15:42,"738 Hill St, Austin, TX 73301" +153668,AAA Batteries (4-pack),1,2.99,01/07/19 16:52,"65 1st St, Boston, MA 02215" +153669,AAA Batteries (4-pack),2,2.99,01/22/19 16:03,"612 Main St, San Francisco, CA 94016" +153670,Apple Airpods Headphones,1,150,01/12/19 17:48,"512 Highland St, New York City, NY 10001" +153671,Wired Headphones,1,11.99,01/11/19 03:49,"478 Elm St, Seattle, WA 98101" +153672,AA Batteries (4-pack),1,3.84,01/26/19 20:42,"514 Hill St, San Francisco, CA 94016" +153673,34in Ultrawide Monitor,1,379.99,01/30/19 21:05,"421 Wilson St, San Francisco, CA 94016" +153674,Wired Headphones,1,11.99,01/20/19 18:12,"321 11th St, Atlanta, GA 30301" +153675,Apple Airpods Headphones,1,150,01/08/19 21:04,"616 5th St, Portland, OR 97035" +153676,Lightning Charging Cable,1,14.95,01/05/19 19:56,"557 Cherry St, Boston, MA 02215" +153677,Lightning Charging Cable,1,14.95,01/13/19 18:52,"384 Jefferson St, Portland, OR 97035" +153678,AAA Batteries (4-pack),1,2.99,01/28/19 05:52,"521 Wilson St, Los Angeles, CA 90001" +153679,LG Washing Machine,1,600.0,01/19/19 19:56,"435 Church St, Los Angeles, CA 90001" +153680,iPhone,1,700,01/03/19 17:01,"114 Jefferson St, Boston, MA 02215" +153681,Wired Headphones,1,11.99,01/07/19 18:33,"663 6th St, Dallas, TX 75001" +153682,Lightning Charging Cable,1,14.95,01/05/19 20:34,"48 Forest St, Dallas, TX 75001" +153683,USB-C Charging Cable,1,11.95,01/20/19 12:34,"5 Church St, Los Angeles, CA 90001" +153684,AA Batteries (4-pack),1,3.84,01/10/19 16:49,"41 Church St, New York City, NY 10001" +153685,AAA Batteries (4-pack),1,2.99,01/02/19 14:36,"446 Adams St, Portland, OR 97035" +153686,Vareebadd Phone,1,400,01/04/19 10:57,"16 Hill St, New York City, NY 10001" +153687,Flatscreen TV,1,300,01/13/19 06:46,"308 10th St, New York City, NY 10001" +153688,Lightning Charging Cable,1,14.95,01/31/19 23:30,"242 Dogwood St, Dallas, TX 75001" +153689,27in 4K Gaming Monitor,1,389.99,01/28/19 19:31,"551 Madison St, Boston, MA 02215" +153690,Google Phone,1,600,01/07/19 07:12,"458 4th St, San Francisco, CA 94016" +153691,USB-C Charging Cable,1,11.95,01/23/19 01:41,"9 Lakeview St, New York City, NY 10001" +153692,AA Batteries (4-pack),5,3.84,01/16/19 20:43,"670 Washington St, San Francisco, CA 94016" +153693,USB-C Charging Cable,1,11.95,01/22/19 16:33,"180 14th St, San Francisco, CA 94016" +153694,Lightning Charging Cable,1,14.95,01/06/19 11:55,"661 14th St, Dallas, TX 75001" +153695,27in FHD Monitor,1,149.99,01/11/19 20:03,"57 Highland St, Atlanta, GA 30301" +153696,iPhone,1,700,01/09/19 22:26,"100 11th St, Boston, MA 02215" +153697,ThinkPad Laptop,1,999.99,01/24/19 11:06,"195 Highland St, Los Angeles, CA 90001" +153698,Flatscreen TV,1,300,01/14/19 12:53,"534 4th St, Dallas, TX 75001" +153699,AAA Batteries (4-pack),1,2.99,01/04/19 08:58,"768 Highland St, Austin, TX 73301" +153700,27in FHD Monitor,1,149.99,01/20/19 09:30,"613 South St, Los Angeles, CA 90001" +153701,AAA Batteries (4-pack),1,2.99,01/31/19 16:54,"430 Elm St, Atlanta, GA 30301" +153702,AAA Batteries (4-pack),1,2.99,01/25/19 16:00,"433 Cherry St, Los Angeles, CA 90001" +153703,Bose SoundSport Headphones,1,99.99,01/09/19 19:51,"640 Park St, Seattle, WA 98101" +153704,27in FHD Monitor,1,149.99,01/12/19 18:36,"113 Center St, New York City, NY 10001" +153705,Apple Airpods Headphones,1,150,01/31/19 16:28,"438 Willow St, Austin, TX 73301" +153706,Apple Airpods Headphones,1,150,01/14/19 20:37,"292 Highland St, New York City, NY 10001" +153707,27in FHD Monitor,1,149.99,01/28/19 04:15,"297 13th St, Los Angeles, CA 90001" +153708,Bose SoundSport Headphones,1,99.99,01/18/19 10:49,"823 Jefferson St, Austin, TX 73301" +153709,AAA Batteries (4-pack),1,2.99,01/15/19 15:08,"119 Maple St, Boston, MA 02215" +153710,Bose SoundSport Headphones,1,99.99,01/22/19 11:02,"825 Sunset St, Dallas, TX 75001" +153711,Wired Headphones,1,11.99,01/01/19 16:45,"561 Cherry St, Boston, MA 02215" +153712,AA Batteries (4-pack),1,3.84,01/09/19 05:23,"978 Jackson St, New York City, NY 10001" +153713,Apple Airpods Headphones,1,150,01/06/19 15:18,"582 Park St, Seattle, WA 98101" +153714,Wired Headphones,1,11.99,01/03/19 21:44,"20 Sunset St, Los Angeles, CA 90001" +153715,AAA Batteries (4-pack),1,2.99,01/22/19 17:55,"154 Highland St, Atlanta, GA 30301" +153716,Bose SoundSport Headphones,1,99.99,01/14/19 10:11,"76 South St, San Francisco, CA 94016" +153717,Lightning Charging Cable,1,14.95,01/06/19 19:24,"729 Dogwood St, Los Angeles, CA 90001" +153718,27in 4K Gaming Monitor,1,389.99,01/11/19 18:36,"14 Johnson St, Boston, MA 02215" +153719,Macbook Pro Laptop,1,1700,01/30/19 02:21,"886 13th St, Los Angeles, CA 90001" +153720,Vareebadd Phone,1,400,01/09/19 20:52,"120 River St, Atlanta, GA 30301" +153721,Macbook Pro Laptop,1,1700,01/31/19 00:59,"716 Chestnut St, San Francisco, CA 94016" +153722,Flatscreen TV,1,300,01/13/19 20:57,"314 Washington St, Dallas, TX 75001" +153723,USB-C Charging Cable,2,11.95,01/05/19 12:45,"505 Ridge St, San Francisco, CA 94016" +153724,AA Batteries (4-pack),1,3.84,01/21/19 14:51,"889 Chestnut St, Dallas, TX 75001" +153725,27in 4K Gaming Monitor,1,389.99,01/19/19 21:23,"501 Meadow St, Portland, OR 97035" +153726,Lightning Charging Cable,1,14.95,01/24/19 13:18,"423 Dogwood St, San Francisco, CA 94016" +153727,Apple Airpods Headphones,1,150,01/24/19 13:27,"445 Elm St, Boston, MA 02215" +153728,USB-C Charging Cable,1,11.95,01/31/19 17:10,"585 Hickory St, New York City, NY 10001" +153729,USB-C Charging Cable,1,11.95,01/20/19 10:48,"395 Willow St, San Francisco, CA 94016" +153730,USB-C Charging Cable,1,11.95,01/30/19 19:25,"44 Highland St, Portland, OR 97035" +153731,Macbook Pro Laptop,1,1700,01/31/19 01:54,"823 Walnut St, Dallas, TX 75001" +153732,Wired Headphones,1,11.99,01/07/19 08:52,"987 South St, Los Angeles, CA 90001" +153733,Bose SoundSport Headphones,1,99.99,01/26/19 19:53,"805 Washington St, Los Angeles, CA 90001" +153734,iPhone,1,700,01/08/19 14:23,"600 Hill St, Dallas, TX 75001" +153735,Bose SoundSport Headphones,1,99.99,01/13/19 20:46,"397 Elm St, Boston, MA 02215" +153736,AAA Batteries (4-pack),3,2.99,01/15/19 23:48,"432 Elm St, San Francisco, CA 94016" +153737,AA Batteries (4-pack),1,3.84,01/07/19 10:30,"469 Pine St, Portland, OR 97035" +153738,Google Phone,1,600,01/09/19 10:56,"387 Dogwood St, Los Angeles, CA 90001" +153739,AA Batteries (4-pack),1,3.84,01/05/19 21:22,"890 9th St, Atlanta, GA 30301" +153740,Bose SoundSport Headphones,1,99.99,01/07/19 21:15,"123 Center St, Dallas, TX 75001" +153741,Bose SoundSport Headphones,1,99.99,01/12/19 16:44,"184 8th St, San Francisco, CA 94016" +153742,Bose SoundSport Headphones,1,99.99,01/21/19 19:35,"355 10th St, Boston, MA 02215" +153743,USB-C Charging Cable,1,11.95,01/24/19 21:44,"768 Ridge St, Los Angeles, CA 90001" +153744,AAA Batteries (4-pack),1,2.99,01/09/19 18:52,"934 Main St, Portland, ME 04101" +153745,Apple Airpods Headphones,1,150,01/21/19 22:35,"385 Adams St, Portland, OR 97035" +153746,AAA Batteries (4-pack),1,2.99,01/14/19 22:46,"106 Maple St, Los Angeles, CA 90001" +153747,AA Batteries (4-pack),1,3.84,01/19/19 18:51,"638 13th St, Boston, MA 02215" +153748,USB-C Charging Cable,1,11.95,01/11/19 19:04,"30 Cedar St, Portland, OR 97035" +153749,Lightning Charging Cable,1,14.95,01/05/19 13:43,"877 Hickory St, Dallas, TX 75001" +153750,AAA Batteries (4-pack),1,2.99,01/26/19 10:21,"481 Spruce St, Atlanta, GA 30301" +153751,iPhone,1,700,01/10/19 10:31,"951 Jefferson St, Seattle, WA 98101" +153752,USB-C Charging Cable,1,11.95,01/27/19 15:24,"410 Spruce St, Dallas, TX 75001" +153753,Lightning Charging Cable,1,14.95,01/09/19 07:44,"555 Walnut St, Austin, TX 73301" +153754,USB-C Charging Cable,1,11.95,01/10/19 19:08,"206 Hill St, Seattle, WA 98101" +153755,AA Batteries (4-pack),1,3.84,01/04/19 08:43,"962 6th St, San Francisco, CA 94016" +153756,iPhone,1,700,01/04/19 12:56,"518 Jackson St, San Francisco, CA 94016" +153757,Google Phone,1,600,01/17/19 19:33,"241 Church St, San Francisco, CA 94016" +153758,AAA Batteries (4-pack),2,2.99,01/24/19 06:56,"546 13th St, San Francisco, CA 94016" +153759,Google Phone,1,600,01/27/19 11:04,"303 Lincoln St, Dallas, TX 75001" +153760,Wired Headphones,1,11.99,01/25/19 14:52,"723 Lincoln St, San Francisco, CA 94016" +153761,Wired Headphones,1,11.99,01/14/19 08:22,"463 Hill St, Dallas, TX 75001" +153762,USB-C Charging Cable,1,11.95,01/03/19 21:42,"703 12th St, San Francisco, CA 94016" +153763,AA Batteries (4-pack),1,3.84,01/03/19 14:08,"455 Center St, Atlanta, GA 30301" +153764,AA Batteries (4-pack),1,3.84,01/02/19 13:52,"57 North St, New York City, NY 10001" +153765,AAA Batteries (4-pack),1,2.99,01/11/19 14:59,"309 Chestnut St, Portland, ME 04101" +153766,Apple Airpods Headphones,1,150,01/02/19 21:47,"925 Willow St, Atlanta, GA 30301" +153767,AA Batteries (4-pack),1,3.84,01/19/19 23:13,"814 6th St, Boston, MA 02215" +153768,27in 4K Gaming Monitor,1,389.99,01/22/19 07:31,"694 Hickory St, Atlanta, GA 30301" +153769,AAA Batteries (4-pack),3,2.99,01/25/19 21:05,"646 Elm St, San Francisco, CA 94016" +153770,AAA Batteries (4-pack),1,2.99,01/19/19 09:23,"708 1st St, Boston, MA 02215" +153771,AAA Batteries (4-pack),1,2.99,01/13/19 22:31,"967 13th St, Portland, OR 97035" +153772,AA Batteries (4-pack),1,3.84,01/14/19 20:31,"573 Wilson St, Atlanta, GA 30301" +153773,iPhone,1,700,01/15/19 10:50,"882 Forest St, Portland, OR 97035" +153774,AAA Batteries (4-pack),2,2.99,01/18/19 13:06,"971 Church St, Boston, MA 02215" +153775,Apple Airpods Headphones,1,150,01/28/19 15:52,"193 Maple St, Boston, MA 02215" +153776,USB-C Charging Cable,1,11.95,01/29/19 15:40,"473 5th St, Portland, OR 97035" +153777,iPhone,1,700,01/05/19 13:13,"868 Spruce St, New York City, NY 10001" +153777,Wired Headphones,1,11.99,01/05/19 13:13,"868 Spruce St, New York City, NY 10001" +153778,AAA Batteries (4-pack),1,2.99,01/09/19 21:38,"730 Johnson St, San Francisco, CA 94016" +153779,Apple Airpods Headphones,1,150,01/27/19 14:19,"45 8th St, Austin, TX 73301" +153780,USB-C Charging Cable,1,11.95,01/02/19 19:21,"154 2nd St, Los Angeles, CA 90001" +153781,Bose SoundSport Headphones,1,99.99,01/18/19 19:18,"796 South St, New York City, NY 10001" +153782,AA Batteries (4-pack),1,3.84,01/14/19 10:54,"824 River St, Portland, OR 97035" +153783,AA Batteries (4-pack),1,3.84,01/05/19 20:21,"900 11th St, San Francisco, CA 94016" +153784,Macbook Pro Laptop,1,1700,01/11/19 22:19,"903 Walnut St, San Francisco, CA 94016" +153785,AA Batteries (4-pack),1,3.84,01/10/19 10:28,"998 10th St, New York City, NY 10001" +153786,Bose SoundSport Headphones,1,99.99,01/07/19 10:00,"190 Madison St, Atlanta, GA 30301" +153787,27in 4K Gaming Monitor,1,389.99,01/29/19 16:19,"427 Lincoln St, Seattle, WA 98101" +153788,Flatscreen TV,1,300,01/08/19 17:04,"708 Ridge St, New York City, NY 10001" +153789,AAA Batteries (4-pack),1,2.99,01/29/19 11:41,"527 Center St, Dallas, TX 75001" +153790,AAA Batteries (4-pack),3,2.99,01/21/19 21:31,"557 8th St, Los Angeles, CA 90001" +153791,Bose SoundSport Headphones,1,99.99,01/24/19 01:02,"228 Sunset St, Austin, TX 73301" +153792,Google Phone,1,600,01/23/19 19:26,"639 Chestnut St, Seattle, WA 98101" +153792,USB-C Charging Cable,1,11.95,01/23/19 19:26,"639 Chestnut St, Seattle, WA 98101" +153793,Bose SoundSport Headphones,1,99.99,01/03/19 20:49,"563 9th St, Dallas, TX 75001" +153794,Lightning Charging Cable,1,14.95,01/01/19 15:08,"938 Highland St, New York City, NY 10001" +153795,Bose SoundSport Headphones,1,99.99,01/30/19 20:33,"944 11th St, San Francisco, CA 94016" +153796,Lightning Charging Cable,1,14.95,01/09/19 14:42,"144 Hill St, San Francisco, CA 94016" +153797,Bose SoundSport Headphones,1,99.99,01/08/19 19:43,"828 Hill St, Atlanta, GA 30301" +153798,AAA Batteries (4-pack),1,2.99,01/05/19 13:07,"539 4th St, San Francisco, CA 94016" +153799,USB-C Charging Cable,1,11.95,01/09/19 18:59,"244 5th St, Seattle, WA 98101" +153800,Lightning Charging Cable,1,14.95,01/11/19 01:56,"704 Church St, Austin, TX 73301" +153801,AA Batteries (4-pack),1,3.84,01/05/19 16:35,"793 North St, San Francisco, CA 94016" +153802,Flatscreen TV,1,300,01/25/19 18:30,"966 Lakeview St, Seattle, WA 98101" +153803,Apple Airpods Headphones,1,150,01/28/19 08:19,"311 Park St, Seattle, WA 98101" +153804,Wired Headphones,1,11.99,01/29/19 22:50,"863 Walnut St, Portland, OR 97035" +153805,Macbook Pro Laptop,1,1700,01/25/19 17:59,"936 14th St, Austin, TX 73301" +153806,AAA Batteries (4-pack),2,2.99,01/18/19 09:49,"401 Main St, New York City, NY 10001" +153807,USB-C Charging Cable,1,11.95,01/06/19 12:17,"737 Main St, New York City, NY 10001" +153808,34in Ultrawide Monitor,1,379.99,01/14/19 22:49,"465 Johnson St, Dallas, TX 75001" +153809,AAA Batteries (4-pack),1,2.99,01/11/19 00:03,"373 Cedar St, Boston, MA 02215" +153810,AA Batteries (4-pack),3,3.84,01/21/19 20:07,"550 Ridge St, New York City, NY 10001" +153811,34in Ultrawide Monitor,1,379.99,01/27/19 20:18,"488 Jackson St, Los Angeles, CA 90001" +153812,iPhone,1,700,01/08/19 12:10,"867 Jackson St, Seattle, WA 98101" +153813,Lightning Charging Cable,1,14.95,01/08/19 16:04,"270 Cherry St, Dallas, TX 75001" +153814,Lightning Charging Cable,1,14.95,01/23/19 09:05,"668 8th St, San Francisco, CA 94016" +153815,Apple Airpods Headphones,1,150,01/26/19 13:11,"947 Church St, San Francisco, CA 94016" +153816,USB-C Charging Cable,1,11.95,01/08/19 18:38,"637 14th St, Atlanta, GA 30301" +153817,Bose SoundSport Headphones,1,99.99,01/27/19 17:23,"676 10th St, San Francisco, CA 94016" +153818,Lightning Charging Cable,1,14.95,01/29/19 18:53,"410 South St, Portland, ME 04101" +153819,34in Ultrawide Monitor,1,379.99,01/09/19 10:45,"985 Jefferson St, Austin, TX 73301" +153820,Lightning Charging Cable,1,14.95,01/08/19 10:33,"21 Willow St, Atlanta, GA 30301" +153821,AAA Batteries (4-pack),1,2.99,01/17/19 10:28,"85 4th St, Boston, MA 02215" +153822,iPhone,1,700,01/16/19 16:16,"667 Ridge St, San Francisco, CA 94016" +153822,Apple Airpods Headphones,1,150,01/16/19 16:16,"667 Ridge St, San Francisco, CA 94016" +153823,Wired Headphones,1,11.99,01/07/19 08:50,"265 West St, Los Angeles, CA 90001" +153824,AA Batteries (4-pack),1,3.84,01/19/19 15:58,"5 Madison St, Dallas, TX 75001" +153825,USB-C Charging Cable,1,11.95,01/18/19 22:40,"463 Highland St, Portland, OR 97035" +153826,Lightning Charging Cable,1,14.95,01/28/19 18:23,"724 Forest St, Boston, MA 02215" +153827,USB-C Charging Cable,1,11.95,01/01/19 07:23,"859 West St, San Francisco, CA 94016" +153828,Flatscreen TV,1,300,01/18/19 20:42,"256 Walnut St, Los Angeles, CA 90001" +153829,Lightning Charging Cable,1,14.95,01/24/19 16:29,"527 Willow St, New York City, NY 10001" +153830,iPhone,1,700,01/06/19 21:04,"234 Center St, Seattle, WA 98101" +153831,27in 4K Gaming Monitor,1,389.99,01/16/19 10:16,"23 12th St, San Francisco, CA 94016" +153832,Google Phone,1,600,01/07/19 14:50,"463 13th St, Portland, ME 04101" +153833,Wired Headphones,1,11.99,01/27/19 14:34,"990 Wilson St, Portland, OR 97035" +,,,,, +153834,AA Batteries (4-pack),2,3.84,01/06/19 11:44,"573 Hickory St, Los Angeles, CA 90001" +153835,AAA Batteries (4-pack),1,2.99,01/21/19 23:29,"792 14th St, Dallas, TX 75001" +153836,27in 4K Gaming Monitor,1,389.99,01/03/19 14:01,"53 2nd St, Seattle, WA 98101" +153837,Macbook Pro Laptop,1,1700,01/04/19 10:55,"623 River St, Dallas, TX 75001" +153838,AA Batteries (4-pack),2,3.84,01/17/19 10:41,"963 4th St, Los Angeles, CA 90001" +153839,AA Batteries (4-pack),2,3.84,01/17/19 12:23,"531 West St, San Francisco, CA 94016" +153840,AAA Batteries (4-pack),1,2.99,01/21/19 18:29,"681 13th St, Los Angeles, CA 90001" +153841,Bose SoundSport Headphones,1,99.99,01/11/19 12:15,"247 Adams St, San Francisco, CA 94016" +153842,Lightning Charging Cable,1,14.95,01/18/19 02:41,"465 Lakeview St, Los Angeles, CA 90001" +153843,Apple Airpods Headphones,1,150,01/22/19 17:18,"269 9th St, New York City, NY 10001" +153844,USB-C Charging Cable,1,11.95,01/25/19 22:57,"807 Lincoln St, San Francisco, CA 94016" +153845,Wired Headphones,1,11.99,01/07/19 13:30,"601 Washington St, New York City, NY 10001" +153846,Apple Airpods Headphones,1,150,01/30/19 22:38,"622 5th St, New York City, NY 10001" +153847,Flatscreen TV,1,300,01/12/19 22:29,"508 8th St, Dallas, TX 75001" +153848,AA Batteries (4-pack),2,3.84,01/19/19 21:58,"77 7th St, Portland, OR 97035" +153849,Wired Headphones,1,11.99,01/19/19 19:38,"593 9th St, New York City, NY 10001" +153850,34in Ultrawide Monitor,1,379.99,01/04/19 21:20,"809 Lakeview St, Boston, MA 02215" +153851,20in Monitor,1,109.99,01/04/19 18:41,"448 Center St, Los Angeles, CA 90001" +153852,27in FHD Monitor,1,149.99,01/19/19 02:35,"543 Adams St, Boston, MA 02215" +153853,iPhone,1,700,01/06/19 17:30,"716 Spruce St, Dallas, TX 75001" +153854,USB-C Charging Cable,1,11.95,01/24/19 10:49,"448 9th St, San Francisco, CA 94016" +153855,27in FHD Monitor,1,149.99,01/12/19 17:37,"353 Maple St, San Francisco, CA 94016" +153856,20in Monitor,1,109.99,01/17/19 19:57,"388 12th St, New York City, NY 10001" +153857,Lightning Charging Cable,1,14.95,01/07/19 10:54,"131 Chestnut St, Boston, MA 02215" +153858,Lightning Charging Cable,1,14.95,01/22/19 20:54,"171 Cherry St, San Francisco, CA 94016" +153859,iPhone,1,700,01/07/19 16:31,"363 Lake St, Boston, MA 02215" +153859,Lightning Charging Cable,1,14.95,01/07/19 16:31,"363 Lake St, Boston, MA 02215" +153860,Lightning Charging Cable,1,14.95,01/22/19 20:06,"307 Cherry St, San Francisco, CA 94016" +153861,Lightning Charging Cable,1,14.95,01/14/19 13:08,"503 6th St, Boston, MA 02215" +153862,Apple Airpods Headphones,1,150,01/26/19 10:03,"100 Sunset St, San Francisco, CA 94016" +153863,27in FHD Monitor,1,149.99,01/24/19 20:07,"649 Sunset St, San Francisco, CA 94016" +153864,AAA Batteries (4-pack),2,2.99,01/04/19 20:38,"859 Washington St, New York City, NY 10001" +153865,Lightning Charging Cable,1,14.95,01/04/19 12:33,"98 7th St, New York City, NY 10001" +153866,Apple Airpods Headphones,1,150,01/22/19 15:27,"874 Elm St, San Francisco, CA 94016" +153867,AAA Batteries (4-pack),1,2.99,01/31/19 12:19,"836 Dogwood St, Portland, OR 97035" +153868,Lightning Charging Cable,1,14.95,01/26/19 11:44,"569 Center St, San Francisco, CA 94016" +153869,USB-C Charging Cable,2,11.95,01/05/19 15:33,"960 Lakeview St, Dallas, TX 75001" +153870,27in 4K Gaming Monitor,1,389.99,01/22/19 19:09,"193 Wilson St, San Francisco, CA 94016" +153871,Flatscreen TV,1,300,01/12/19 14:35,"494 Madison St, Portland, OR 97035" +153872,Bose SoundSport Headphones,1,99.99,01/03/19 17:42,"8 Spruce St, Los Angeles, CA 90001" +153873,Lightning Charging Cable,1,14.95,01/15/19 20:52,"264 Ridge St, San Francisco, CA 94016" +153874,AAA Batteries (4-pack),2,2.99,01/02/19 12:43,"62 Meadow St, Boston, MA 02215" +153875,Lightning Charging Cable,1,14.95,01/17/19 14:24,"247 Sunset St, San Francisco, CA 94016" +153876,AA Batteries (4-pack),1,3.84,01/25/19 17:57,"149 Church St, Atlanta, GA 30301" +153877,AA Batteries (4-pack),1,3.84,01/26/19 14:36,"615 South St, San Francisco, CA 94016" +153878,Apple Airpods Headphones,1,150,01/18/19 02:14,"736 12th St, Atlanta, GA 30301" +153879,Lightning Charging Cable,1,14.95,01/11/19 00:35,"583 2nd St, San Francisco, CA 94016" +153880,Lightning Charging Cable,1,14.95,01/12/19 11:27,"369 South St, San Francisco, CA 94016" +153881,Vareebadd Phone,1,400,01/20/19 16:04,"500 Ridge St, Los Angeles, CA 90001" +153882,Flatscreen TV,1,300,01/03/19 14:28,"654 Main St, Seattle, WA 98101" +153883,27in 4K Gaming Monitor,1,389.99,01/26/19 18:52,"801 4th St, San Francisco, CA 94016" +153884,Lightning Charging Cable,1,14.95,01/09/19 15:00,"475 Forest St, New York City, NY 10001" +153885,USB-C Charging Cable,1,11.95,01/02/19 15:38,"18 Lake St, San Francisco, CA 94016" +153886,Flatscreen TV,1,300,01/25/19 13:23,"645 Washington St, Seattle, WA 98101" +153887,AAA Batteries (4-pack),1,2.99,01/26/19 09:37,"531 River St, New York City, NY 10001" +153888,Lightning Charging Cable,1,14.95,01/22/19 23:45,"819 Sunset St, Los Angeles, CA 90001" +153889,Wired Headphones,1,11.99,01/01/19 17:56,"874 Pine St, Los Angeles, CA 90001" +153890,34in Ultrawide Monitor,1,379.99,01/11/19 13:11,"779 Willow St, Dallas, TX 75001" +153891,27in FHD Monitor,1,149.99,01/05/19 14:08,"791 13th St, Portland, OR 97035" +153892,Lightning Charging Cable,2,14.95,01/29/19 21:12,"482 Main St, Boston, MA 02215" +153893,AA Batteries (4-pack),1,3.84,01/13/19 19:15,"476 Washington St, Boston, MA 02215" +153894,Lightning Charging Cable,1,14.95,01/22/19 15:50,"409 Adams St, Portland, OR 97035" +153895,AAA Batteries (4-pack),2,2.99,01/09/19 16:14,"949 North St, San Francisco, CA 94016" +153896,USB-C Charging Cable,1,11.95,01/15/19 18:03,"451 Chestnut St, New York City, NY 10001" +153897,Apple Airpods Headphones,1,150,01/18/19 14:08,"602 Spruce St, Austin, TX 73301" +153898,AAA Batteries (4-pack),1,2.99,01/08/19 00:17,"728 Meadow St, San Francisco, CA 94016" +153899,USB-C Charging Cable,1,11.95,01/18/19 17:02,"787 2nd St, Los Angeles, CA 90001" +153900,USB-C Charging Cable,1,11.95,01/29/19 08:51,"143 Wilson St, San Francisco, CA 94016" +153901,Bose SoundSport Headphones,1,99.99,01/19/19 00:34,"445 Ridge St, Dallas, TX 75001" +153902,Apple Airpods Headphones,1,150,01/08/19 15:12,"81 West St, New York City, NY 10001" +153903,Lightning Charging Cable,1,14.95,01/22/19 15:00,"562 2nd St, Portland, OR 97035" +153904,USB-C Charging Cable,1,11.95,01/18/19 17:30,"487 Main St, Dallas, TX 75001" +153905,34in Ultrawide Monitor,1,379.99,01/23/19 20:27,"921 7th St, New York City, NY 10001" +153906,Lightning Charging Cable,1,14.95,01/20/19 06:03,"88 Hill St, Seattle, WA 98101" +153907,Google Phone,1,600,01/21/19 18:55,"959 Church St, Los Angeles, CA 90001" +153908,27in FHD Monitor,1,149.99,01/03/19 13:59,"358 Forest St, Austin, TX 73301" +153909,USB-C Charging Cable,1,11.95,01/02/19 19:23,"664 4th St, Boston, MA 02215" +153910,Apple Airpods Headphones,1,150,01/20/19 04:01,"978 Willow St, San Francisco, CA 94016" +153911,Lightning Charging Cable,1,14.95,01/30/19 15:57,"316 10th St, San Francisco, CA 94016" +153912,20in Monitor,1,109.99,01/07/19 19:31,"854 4th St, San Francisco, CA 94016" +153913,USB-C Charging Cable,1,11.95,01/12/19 11:26,"777 Wilson St, Boston, MA 02215" +153914,Wired Headphones,1,11.99,01/25/19 09:19,"712 Lincoln St, Portland, OR 97035" +153915,Lightning Charging Cable,1,14.95,01/10/19 16:45,"518 7th St, San Francisco, CA 94016" +153916,AAA Batteries (4-pack),1,2.99,01/14/19 11:41,"907 North St, New York City, NY 10001" +153917,27in FHD Monitor,1,149.99,01/03/19 18:24,"241 14th St, Dallas, TX 75001" +153918,20in Monitor,1,109.99,01/05/19 08:37,"620 12th St, Seattle, WA 98101" +153919,Lightning Charging Cable,1,14.95,01/29/19 13:52,"568 14th St, Los Angeles, CA 90001" +153920,AAA Batteries (4-pack),1,2.99,01/08/19 21:09,"815 Johnson St, Atlanta, GA 30301" +153921,AA Batteries (4-pack),1,3.84,01/14/19 19:22,"258 Dogwood St, New York City, NY 10001" +153921,Lightning Charging Cable,1,14.95,01/14/19 19:22,"258 Dogwood St, New York City, NY 10001" +153922,34in Ultrawide Monitor,1,379.99,01/14/19 19:20,"843 5th St, Los Angeles, CA 90001" +153923,Lightning Charging Cable,1,14.95,01/10/19 22:04,"595 Dogwood St, San Francisco, CA 94016" +153924,Google Phone,1,600,01/15/19 14:11,"794 2nd St, Dallas, TX 75001" +153924,USB-C Charging Cable,1,11.95,01/15/19 14:11,"794 2nd St, Dallas, TX 75001" +153925,Wired Headphones,2,11.99,01/26/19 22:14,"601 Hickory St, Portland, ME 04101" +153926,Google Phone,1,600,01/09/19 13:04,"223 Park St, Los Angeles, CA 90001" +153927,Google Phone,1,600,01/10/19 13:53,"655 Cherry St, Los Angeles, CA 90001" +153927,Wired Headphones,1,11.99,01/10/19 13:53,"655 Cherry St, Los Angeles, CA 90001" +153928,27in 4K Gaming Monitor,1,389.99,01/09/19 18:22,"136 Ridge St, San Francisco, CA 94016" +153929,AAA Batteries (4-pack),1,2.99,01/12/19 20:51,"592 Hickory St, Austin, TX 73301" +153930,27in FHD Monitor,1,149.99,01/10/19 10:39,"11 River St, Portland, OR 97035" +153931,Bose SoundSport Headphones,1,99.99,01/22/19 14:56,"352 5th St, Austin, TX 73301" +153932,Bose SoundSport Headphones,1,99.99,01/04/19 14:39,"380 Lincoln St, Seattle, WA 98101" +153932,Macbook Pro Laptop,1,1700,01/04/19 14:39,"380 Lincoln St, Seattle, WA 98101" +153933,AAA Batteries (4-pack),3,2.99,01/04/19 09:25,"291 Dogwood St, Portland, OR 97035" +153934,Lightning Charging Cable,1,14.95,01/26/19 21:33,"344 Jackson St, Seattle, WA 98101" +153935,27in 4K Gaming Monitor,1,389.99,01/09/19 18:36,"496 Park St, Dallas, TX 75001" +153936,AAA Batteries (4-pack),2,2.99,01/14/19 16:16,"543 Washington St, San Francisco, CA 94016" +153937,Bose SoundSport Headphones,1,99.99,01/31/19 18:20,"976 1st St, Los Angeles, CA 90001" +153938,AAA Batteries (4-pack),2,2.99,01/04/19 11:32,"431 Forest St, Dallas, TX 75001" +153939,AA Batteries (4-pack),1,3.84,01/04/19 19:44,"472 13th St, Portland, OR 97035" +153939,AAA Batteries (4-pack),3,2.99,01/04/19 19:44,"472 13th St, Portland, OR 97035" +153940,USB-C Charging Cable,1,11.95,01/06/19 18:08,"906 Center St, San Francisco, CA 94016" +153941,27in 4K Gaming Monitor,1,389.99,01/31/19 20:17,"746 5th St, Los Angeles, CA 90001" +153942,Macbook Pro Laptop,1,1700,01/02/19 16:41,"941 11th St, Dallas, TX 75001" +153942,20in Monitor,1,109.99,01/02/19 16:41,"941 11th St, Dallas, TX 75001" +153943,Google Phone,1,600,01/03/19 19:31,"293 5th St, Dallas, TX 75001" +153943,USB-C Charging Cable,1,11.95,01/03/19 19:31,"293 5th St, Dallas, TX 75001" +153944,Apple Airpods Headphones,1,150,01/29/19 15:33,"643 Pine St, Boston, MA 02215" +153945,AA Batteries (4-pack),1,3.84,01/22/19 17:19,"830 Maple St, Dallas, TX 75001" +153946,27in FHD Monitor,1,149.99,01/05/19 20:19,"619 Washington St, San Francisco, CA 94016" +153947,Lightning Charging Cable,1,14.95,01/16/19 10:29,"991 1st St, San Francisco, CA 94016" +153948,Lightning Charging Cable,1,14.95,01/21/19 19:40,"465 Lincoln St, Atlanta, GA 30301" +153949,Bose SoundSport Headphones,1,99.99,01/09/19 22:57,"317 Dogwood St, San Francisco, CA 94016" +153950,AAA Batteries (4-pack),2,2.99,01/06/19 09:58,"380 West St, Portland, OR 97035" +153951,Lightning Charging Cable,1,14.95,01/17/19 11:25,"441 Main St, Los Angeles, CA 90001" +153952,AAA Batteries (4-pack),1,2.99,01/18/19 23:22,"641 11th St, San Francisco, CA 94016" +153953,Wired Headphones,2,11.99,01/20/19 11:42,"764 Hill St, New York City, NY 10001" +153954,AAA Batteries (4-pack),1,2.99,01/08/19 18:53,"929 Adams St, Austin, TX 73301" +153955,Apple Airpods Headphones,1,150,01/01/19 13:57,"746 Adams St, New York City, NY 10001" +153956,27in 4K Gaming Monitor,1,389.99,01/21/19 17:14,"189 14th St, New York City, NY 10001" +153957,AA Batteries (4-pack),1,3.84,01/09/19 13:48,"391 6th St, Austin, TX 73301" +153957,Apple Airpods Headphones,1,150,01/09/19 13:48,"391 6th St, Austin, TX 73301" +153958,Lightning Charging Cable,1,14.95,01/09/19 08:44,"977 Park St, Seattle, WA 98101" +153959,27in 4K Gaming Monitor,1,389.99,01/27/19 10:27,"636 Johnson St, New York City, NY 10001" +153960,Wired Headphones,1,11.99,01/28/19 12:45,"605 Hickory St, Los Angeles, CA 90001" +153961,USB-C Charging Cable,1,11.95,01/16/19 15:32,"175 Lincoln St, Boston, MA 02215" +153962,AAA Batteries (4-pack),1,2.99,01/01/19 14:04,"708 Meadow St, Los Angeles, CA 90001" +153963,27in FHD Monitor,1,149.99,01/09/19 21:11,"33 Chestnut St, Boston, MA 02215" +153964,34in Ultrawide Monitor,1,379.99,01/22/19 19:41,"97 West St, Portland, OR 97035" +153965,AAA Batteries (4-pack),1,2.99,01/03/19 11:02,"289 Maple St, Los Angeles, CA 90001" +153966,Apple Airpods Headphones,1,150,01/18/19 18:16,"536 North St, San Francisco, CA 94016" +153967,27in FHD Monitor,1,149.99,01/08/19 13:29,"222 Madison St, Atlanta, GA 30301" +153968,27in 4K Gaming Monitor,1,389.99,01/31/19 17:13,"419 Jefferson St, Atlanta, GA 30301" +153969,Bose SoundSport Headphones,1,99.99,01/16/19 15:02,"517 Adams St, Los Angeles, CA 90001" +153970,Vareebadd Phone,1,400,01/09/19 17:53,"867 12th St, Boston, MA 02215" +153970,USB-C Charging Cable,1,11.95,01/09/19 17:53,"867 12th St, Boston, MA 02215" +153971,Wired Headphones,1,11.99,01/02/19 18:28,"272 14th St, Austin, TX 73301" +153972,iPhone,1,700,01/02/19 20:00,"195 North St, San Francisco, CA 94016" +153973,AAA Batteries (4-pack),1,2.99,01/26/19 23:21,"654 Johnson St, San Francisco, CA 94016" +153974,USB-C Charging Cable,1,11.95,01/23/19 22:23,"622 River St, San Francisco, CA 94016" +153975,Wired Headphones,1,11.99,01/11/19 17:36,"618 Chestnut St, New York City, NY 10001" +153976,Wired Headphones,1,11.99,01/03/19 12:20,"350 Madison St, Austin, TX 73301" +153977,ThinkPad Laptop,1,999.99,01/23/19 18:20,"766 Willow St, Dallas, TX 75001" +153978,ThinkPad Laptop,1,999.99,01/06/19 18:37,"430 River St, Boston, MA 02215" +153979,AA Batteries (4-pack),2,3.84,01/12/19 13:12,"392 Jefferson St, Los Angeles, CA 90001" +153980,AA Batteries (4-pack),2,3.84,01/26/19 20:11,"172 2nd St, Los Angeles, CA 90001" +153981,27in 4K Gaming Monitor,1,389.99,01/26/19 09:37,"615 2nd St, San Francisco, CA 94016" +153982,Flatscreen TV,1,300,01/17/19 18:24,"594 10th St, Austin, TX 73301" +153983,AAA Batteries (4-pack),1,2.99,01/13/19 15:51,"323 Willow St, San Francisco, CA 94016" +153984,AA Batteries (4-pack),1,3.84,01/13/19 17:29,"538 Madison St, Seattle, WA 98101" +153985,Google Phone,1,600,01/26/19 21:09,"470 Main St, New York City, NY 10001" +153985,Bose SoundSport Headphones,1,99.99,01/26/19 21:09,"470 Main St, New York City, NY 10001" +153986,ThinkPad Laptop,1,999.99,01/14/19 15:12,"379 West St, San Francisco, CA 94016" +153987,Flatscreen TV,1,300,01/25/19 11:30,"578 Church St, Los Angeles, CA 90001" +153988,AAA Batteries (4-pack),1,2.99,01/23/19 19:11,"544 West St, San Francisco, CA 94016" +153989,Lightning Charging Cable,1,14.95,01/30/19 21:17,"409 Church St, New York City, NY 10001" +153990,Lightning Charging Cable,1,14.95,01/14/19 22:23,"253 5th St, San Francisco, CA 94016" +153991,20in Monitor,1,109.99,01/27/19 21:33,"371 Ridge St, Los Angeles, CA 90001" +153992,AA Batteries (4-pack),1,3.84,01/08/19 21:50,"129 Center St, San Francisco, CA 94016" +153993,USB-C Charging Cable,1,11.95,01/18/19 21:29,"171 Forest St, Seattle, WA 98101" +153994,Bose SoundSport Headphones,1,99.99,01/28/19 18:38,"430 Dogwood St, Seattle, WA 98101" +,,,,, +153995,USB-C Charging Cable,1,11.95,01/06/19 18:42,"341 North St, Boston, MA 02215" +153996,34in Ultrawide Monitor,1,379.99,01/18/19 22:06,"614 Wilson St, Dallas, TX 75001" +153997,USB-C Charging Cable,1,11.95,01/22/19 23:43,"816 Lakeview St, San Francisco, CA 94016" +153998,AA Batteries (4-pack),1,3.84,01/28/19 22:26,"455 13th St, Los Angeles, CA 90001" +153999,Wired Headphones,1,11.99,01/22/19 10:49,"33 Highland St, Seattle, WA 98101" +154000,AAA Batteries (4-pack),1,2.99,01/26/19 14:00,"190 Jefferson St, Boston, MA 02215" +154001,Lightning Charging Cable,1,14.95,02/01/19 00:55,"272 Dogwood St, Dallas, TX 75001" +154002,Bose SoundSport Headphones,1,99.99,01/08/19 15:16,"951 Walnut St, Seattle, WA 98101" +154003,Bose SoundSport Headphones,1,99.99,01/22/19 00:00,"59 7th St, Boston, MA 02215" +154004,Wired Headphones,1,11.99,01/16/19 21:24,"385 West St, San Francisco, CA 94016" +154005,USB-C Charging Cable,1,11.95,01/04/19 08:54,"629 Hill St, Portland, OR 97035" +154006,27in 4K Gaming Monitor,1,389.99,01/15/19 16:52,"854 13th St, Seattle, WA 98101" +154007,Wired Headphones,1,11.99,01/24/19 20:52,"449 10th St, New York City, NY 10001" +154008,Wired Headphones,1,11.99,01/16/19 20:31,"146 8th St, San Francisco, CA 94016" +154009,Wired Headphones,1,11.99,01/11/19 13:38,"459 6th St, Los Angeles, CA 90001" +154010,Apple Airpods Headphones,1,150,01/18/19 10:36,"729 Hill St, Seattle, WA 98101" +154011,Apple Airpods Headphones,1,150,01/28/19 14:53,"457 4th St, Los Angeles, CA 90001" +154012,AAA Batteries (4-pack),1,2.99,01/25/19 18:17,"514 Ridge St, Los Angeles, CA 90001" +154013,Lightning Charging Cable,1,14.95,01/14/19 14:54,"957 Lakeview St, Boston, MA 02215" +154014,AAA Batteries (4-pack),1,2.99,01/08/19 10:33,"553 Meadow St, Los Angeles, CA 90001" +154015,Lightning Charging Cable,1,14.95,01/16/19 17:33,"346 Jackson St, Los Angeles, CA 90001" +154016,AAA Batteries (4-pack),2,2.99,01/20/19 18:41,"996 Spruce St, Los Angeles, CA 90001" +154017,USB-C Charging Cable,1,11.95,01/15/19 16:57,"405 Lake St, Los Angeles, CA 90001" +154018,Bose SoundSport Headphones,1,99.99,01/23/19 19:34,"408 Cedar St, Boston, MA 02215" +154019,Bose SoundSport Headphones,1,99.99,01/14/19 08:08,"644 Willow St, Los Angeles, CA 90001" +154020,Wired Headphones,1,11.99,01/13/19 07:56,"64 Highland St, Los Angeles, CA 90001" +154021,USB-C Charging Cable,1,11.95,01/04/19 00:00,"319 Cedar St, Seattle, WA 98101" +154022,27in FHD Monitor,1,149.99,01/15/19 01:39,"693 Jackson St, San Francisco, CA 94016" +154023,AAA Batteries (4-pack),1,2.99,01/13/19 09:08,"592 Lake St, Los Angeles, CA 90001" +154024,AAA Batteries (4-pack),2,2.99,01/12/19 08:10,"14 Jackson St, San Francisco, CA 94016" +154025,27in 4K Gaming Monitor,1,389.99,01/03/19 12:08,"482 Pine St, Los Angeles, CA 90001" +154026,Lightning Charging Cable,1,14.95,01/02/19 02:25,"158 Spruce St, New York City, NY 10001" +154027,Lightning Charging Cable,1,14.95,01/31/19 20:31,"942 South St, New York City, NY 10001" +154028,Lightning Charging Cable,1,14.95,01/01/19 19:02,"184 Center St, Atlanta, GA 30301" +154029,Wired Headphones,2,11.99,01/25/19 11:11,"746 Main St, Austin, TX 73301" +154030,27in FHD Monitor,1,149.99,01/05/19 16:05,"556 Elm St, Portland, OR 97035" +154031,USB-C Charging Cable,1,11.95,01/08/19 14:36,"69 Hickory St, Dallas, TX 75001" +154032,AAA Batteries (4-pack),1,2.99,01/02/19 08:03,"9 5th St, New York City, NY 10001" +154033,27in FHD Monitor,1,149.99,01/08/19 21:22,"894 Cedar St, San Francisco, CA 94016" +154034,AA Batteries (4-pack),3,3.84,01/08/19 12:56,"648 Jefferson St, San Francisco, CA 94016" +154035,Apple Airpods Headphones,1,150,01/18/19 00:16,"201 6th St, Los Angeles, CA 90001" +154036,Lightning Charging Cable,1,14.95,01/15/19 02:37,"659 Forest St, Dallas, TX 75001" +154037,Google Phone,1,600,01/23/19 12:45,"560 Lakeview St, San Francisco, CA 94016" +154038,27in FHD Monitor,1,149.99,01/09/19 00:47,"464 Main St, San Francisco, CA 94016" +154039,Wired Headphones,1,11.99,01/14/19 12:31,"789 Madison St, Boston, MA 02215" +154040,iPhone,1,700,01/25/19 21:42,"813 Church St, San Francisco, CA 94016" +154041,AA Batteries (4-pack),2,3.84,01/13/19 20:52,"485 Highland St, Los Angeles, CA 90001" +154042,AAA Batteries (4-pack),1,2.99,01/12/19 23:51,"382 10th St, Los Angeles, CA 90001" +154043,Lightning Charging Cable,1,14.95,01/18/19 17:47,"278 8th St, San Francisco, CA 94016" +154044,AAA Batteries (4-pack),1,2.99,01/03/19 13:37,"938 Hill St, San Francisco, CA 94016" +154045,AA Batteries (4-pack),1,3.84,01/07/19 22:08,"671 Dogwood St, New York City, NY 10001" +154046,Macbook Pro Laptop,1,1700,01/25/19 15:26,"827 Madison St, Los Angeles, CA 90001" +154047,Lightning Charging Cable,1,14.95,01/26/19 20:02,"707 Washington St, Los Angeles, CA 90001" +154048,Macbook Pro Laptop,1,1700,01/18/19 09:29,"322 Cedar St, New York City, NY 10001" +154049,27in 4K Gaming Monitor,1,389.99,01/27/19 05:40,"135 West St, Dallas, TX 75001" +154050,Wired Headphones,1,11.99,01/20/19 12:51,"228 Hill St, San Francisco, CA 94016" +154051,Google Phone,1,600,01/31/19 19:56,"75 2nd St, San Francisco, CA 94016" +154052,USB-C Charging Cable,1,11.95,01/18/19 13:06,"656 River St, Los Angeles, CA 90001" +154053,Lightning Charging Cable,1,14.95,01/09/19 15:22,"61 Sunset St, San Francisco, CA 94016" +154054,Lightning Charging Cable,1,14.95,01/15/19 11:53,"385 1st St, Austin, TX 73301" +154055,Wired Headphones,2,11.99,01/22/19 09:45,"203 6th St, New York City, NY 10001" +154056,AAA Batteries (4-pack),1,2.99,01/14/19 05:45,"887 Ridge St, Atlanta, GA 30301" +154057,ThinkPad Laptop,1,999.99,01/20/19 08:28,"9 Forest St, Boston, MA 02215" +154058,AAA Batteries (4-pack),1,2.99,01/31/19 10:23,"623 8th St, Los Angeles, CA 90001" +154059,USB-C Charging Cable,1,11.95,01/25/19 15:14,"608 South St, San Francisco, CA 94016" +154060,Bose SoundSport Headphones,1,99.99,01/24/19 11:35,"548 Highland St, San Francisco, CA 94016" +154061,Macbook Pro Laptop,1,1700,01/05/19 16:54,"700 Jefferson St, New York City, NY 10001" +154062,Apple Airpods Headphones,1,150,01/23/19 22:34,"67 Dogwood St, Atlanta, GA 30301" +154063,ThinkPad Laptop,1,999.99,01/28/19 13:22,"226 Hill St, Dallas, TX 75001" +154064,Bose SoundSport Headphones,1,99.99,01/02/19 11:37,"50 2nd St, Portland, ME 04101" +154065,AA Batteries (4-pack),2,3.84,01/01/19 08:22,"456 Walnut St, New York City, NY 10001" +154066,34in Ultrawide Monitor,1,379.99,01/18/19 22:37,"785 Lincoln St, Los Angeles, CA 90001" +154067,Lightning Charging Cable,1,14.95,01/03/19 15:37,"686 West St, Atlanta, GA 30301" +154068,AA Batteries (4-pack),1,3.84,01/03/19 15:53,"868 Hickory St, San Francisco, CA 94016" +154069,Apple Airpods Headphones,1,150,01/02/19 15:27,"237 North St, San Francisco, CA 94016" +154070,27in 4K Gaming Monitor,1,389.99,01/13/19 10:58,"465 Forest St, San Francisco, CA 94016" +154071,AAA Batteries (4-pack),1,2.99,01/31/19 16:07,"240 Forest St, Austin, TX 73301" +154072,27in FHD Monitor,1,149.99,01/09/19 16:22,"109 Ridge St, San Francisco, CA 94016" +154073,USB-C Charging Cable,1,11.95,01/31/19 20:26,"566 Lincoln St, Portland, OR 97035" +154074,USB-C Charging Cable,1,11.95,01/27/19 20:37,"198 Pine St, New York City, NY 10001" +154075,Wired Headphones,1,11.99,01/16/19 21:21,"260 2nd St, New York City, NY 10001" +154076,AAA Batteries (4-pack),2,2.99,01/27/19 20:35,"638 Maple St, Austin, TX 73301" +154077,Wired Headphones,1,11.99,01/19/19 21:03,"579 Sunset St, Boston, MA 02215" +154078,USB-C Charging Cable,1,11.95,01/30/19 11:13,"152 Church St, San Francisco, CA 94016" +154079,AA Batteries (4-pack),1,3.84,01/09/19 18:07,"959 Jackson St, San Francisco, CA 94016" +154080,Wired Headphones,1,11.99,01/15/19 19:00,"518 Johnson St, San Francisco, CA 94016" +154081,Wired Headphones,1,11.99,01/07/19 13:21,"498 2nd St, New York City, NY 10001" +154082,Lightning Charging Cable,1,14.95,01/22/19 22:17,"456 12th St, Dallas, TX 75001" +154083,Lightning Charging Cable,1,14.95,01/06/19 12:09,"716 Meadow St, New York City, NY 10001" +154084,Lightning Charging Cable,1,14.95,01/21/19 14:30,"336 Johnson St, Los Angeles, CA 90001" +154085,AAA Batteries (4-pack),1,2.99,01/29/19 08:51,"792 11th St, New York City, NY 10001" +154086,AAA Batteries (4-pack),3,2.99,01/22/19 13:06,"869 Forest St, Seattle, WA 98101" +154087,Lightning Charging Cable,2,14.95,01/25/19 20:22,"905 9th St, Boston, MA 02215" +154088,Bose SoundSport Headphones,1,99.99,01/26/19 21:40,"597 Washington St, Dallas, TX 75001" +154089,Apple Airpods Headphones,1,150,01/22/19 16:48,"754 Johnson St, San Francisco, CA 94016" +154090,Lightning Charging Cable,1,14.95,01/17/19 10:42,"401 South St, Dallas, TX 75001" +154091,AAA Batteries (4-pack),1,2.99,01/19/19 09:20,"818 Dogwood St, Seattle, WA 98101" +154092,USB-C Charging Cable,1,11.95,01/16/19 13:37,"975 Pine St, New York City, NY 10001" +154093,Apple Airpods Headphones,1,150,01/09/19 18:34,"810 Highland St, Boston, MA 02215" +154094,USB-C Charging Cable,1,11.95,01/28/19 17:16,"880 9th St, Seattle, WA 98101" +154095,AAA Batteries (4-pack),1,2.99,01/19/19 00:23,"92 Washington St, Dallas, TX 75001" +154096,34in Ultrawide Monitor,1,379.99,01/19/19 19:08,"866 Wilson St, San Francisco, CA 94016" +154097,27in 4K Gaming Monitor,1,389.99,01/25/19 03:56,"884 Willow St, San Francisco, CA 94016" +154098,Lightning Charging Cable,1,14.95,02/01/19 01:06,"481 Chestnut St, Atlanta, GA 30301" +154099,Vareebadd Phone,1,400,01/26/19 09:49,"19 Lakeview St, Boston, MA 02215" +154099,USB-C Charging Cable,2,11.95,01/26/19 09:49,"19 Lakeview St, Boston, MA 02215" +154099,Wired Headphones,1,11.99,01/26/19 09:49,"19 Lakeview St, Boston, MA 02215" +154100,Macbook Pro Laptop,1,1700,01/31/19 14:04,"919 8th St, San Francisco, CA 94016" +154101,Bose SoundSport Headphones,1,99.99,01/18/19 11:19,"874 2nd St, Los Angeles, CA 90001" +154102,27in FHD Monitor,1,149.99,01/29/19 13:24,"60 Jackson St, Dallas, TX 75001" +154103,Bose SoundSport Headphones,1,99.99,01/05/19 20:13,"344 Meadow St, Dallas, TX 75001" +154104,Wired Headphones,2,11.99,01/20/19 07:05,"905 Maple St, New York City, NY 10001" +154105,AA Batteries (4-pack),1,3.84,01/03/19 20:30,"725 Lake St, Boston, MA 02215" +154106,AA Batteries (4-pack),1,3.84,01/22/19 10:47,"156 Cedar St, Boston, MA 02215" +154107,Flatscreen TV,1,300,01/11/19 19:49,"953 11th St, San Francisco, CA 94016" +154108,34in Ultrawide Monitor,1,379.99,01/08/19 17:07,"138 13th St, Austin, TX 73301" +154109,Vareebadd Phone,1,400,01/16/19 01:09,"583 South St, Seattle, WA 98101" +154110,Apple Airpods Headphones,1,150,01/29/19 12:47,"102 Lake St, Dallas, TX 75001" +154111,Lightning Charging Cable,1,14.95,01/22/19 12:22,"118 6th St, San Francisco, CA 94016" +154112,27in 4K Gaming Monitor,1,389.99,01/03/19 17:40,"375 Maple St, San Francisco, CA 94016" +154113,27in 4K Gaming Monitor,1,389.99,01/22/19 20:52,"323 4th St, New York City, NY 10001" +154114,Flatscreen TV,1,300,01/07/19 16:38,"514 Hickory St, New York City, NY 10001" +154115,27in FHD Monitor,1,149.99,01/31/19 23:44,"31 5th St, Boston, MA 02215" +154116,Bose SoundSport Headphones,1,99.99,01/10/19 20:33,"931 Elm St, Atlanta, GA 30301" +154117,AAA Batteries (4-pack),3,2.99,01/27/19 20:44,"548 Ridge St, Portland, ME 04101" +154118,USB-C Charging Cable,1,11.95,01/18/19 17:27,"118 14th St, Los Angeles, CA 90001" +154119,USB-C Charging Cable,1,11.95,01/12/19 19:32,"48 Hill St, San Francisco, CA 94016" +154120,Macbook Pro Laptop,1,1700,01/01/19 15:19,"176 Lake St, Atlanta, GA 30301" +154121,20in Monitor,1,109.99,01/30/19 21:54,"510 10th St, San Francisco, CA 94016" +154122,Bose SoundSport Headphones,1,99.99,01/19/19 22:37,"202 Washington St, San Francisco, CA 94016" +154123,20in Monitor,1,109.99,01/19/19 12:07,"988 Elm St, Los Angeles, CA 90001" +154124,Apple Airpods Headphones,1,150,01/30/19 15:28,"331 Spruce St, San Francisco, CA 94016" +154124,27in FHD Monitor,1,149.99,01/30/19 15:28,"331 Spruce St, San Francisco, CA 94016" +154125,USB-C Charging Cable,1,11.95,01/21/19 08:37,"415 Highland St, Seattle, WA 98101" +154126,USB-C Charging Cable,1,11.95,01/26/19 21:52,"804 7th St, Los Angeles, CA 90001" +154127,Wired Headphones,1,11.99,01/08/19 19:28,"978 Main St, Dallas, TX 75001" +154128,USB-C Charging Cable,2,11.95,01/04/19 21:36,"669 Hill St, New York City, NY 10001" +154129,Lightning Charging Cable,1,14.95,01/07/19 09:45,"59 6th St, Los Angeles, CA 90001" +154130,27in 4K Gaming Monitor,1,389.99,01/10/19 11:41,"899 Center St, Seattle, WA 98101" +154131,Lightning Charging Cable,1,14.95,01/28/19 16:36,"907 Maple St, San Francisco, CA 94016" +154132,USB-C Charging Cable,1,11.95,01/31/19 20:18,"356 1st St, Portland, ME 04101" +154133,Wired Headphones,2,11.99,01/03/19 21:12,"825 Elm St, Portland, OR 97035" +154134,Apple Airpods Headphones,1,150,01/02/19 10:23,"142 Meadow St, Los Angeles, CA 90001" +154135,AA Batteries (4-pack),3,3.84,01/09/19 18:53,"997 Church St, Los Angeles, CA 90001" +154136,Vareebadd Phone,1,400,01/12/19 23:06,"387 13th St, Boston, MA 02215" +154137,34in Ultrawide Monitor,1,379.99,01/26/19 14:55,"433 Maple St, San Francisco, CA 94016" +154138,ThinkPad Laptop,1,999.99,01/17/19 22:21,"436 Dogwood St, Los Angeles, CA 90001" +154139,20in Monitor,1,109.99,01/16/19 17:01,"976 2nd St, Austin, TX 73301" +154140,27in FHD Monitor,1,149.99,01/04/19 14:49,"977 North St, San Francisco, CA 94016" +154141,20in Monitor,1,109.99,01/05/19 11:06,"969 Meadow St, San Francisco, CA 94016" +154142,AAA Batteries (4-pack),1,2.99,01/30/19 16:54,"102 Forest St, Seattle, WA 98101" +154143,USB-C Charging Cable,1,11.95,01/01/19 20:12,"551 Lakeview St, Boston, MA 02215" +154144,AA Batteries (4-pack),1,3.84,01/02/19 11:42,"386 11th St, Los Angeles, CA 90001" +154145,Lightning Charging Cable,1,14.95,01/18/19 04:46,"609 Ridge St, San Francisco, CA 94016" +154146,AA Batteries (4-pack),3,3.84,01/27/19 18:14,"70 Hill St, New York City, NY 10001" +154147,Wired Headphones,1,11.99,01/29/19 00:45,"932 12th St, New York City, NY 10001" +154148,Bose SoundSport Headphones,1,99.99,01/26/19 19:57,"787 Chestnut St, San Francisco, CA 94016" +154149,iPhone,1,700,01/14/19 19:34,"671 South St, Austin, TX 73301" +154149,Lightning Charging Cable,1,14.95,01/14/19 19:34,"671 South St, Austin, TX 73301" +154150,27in 4K Gaming Monitor,1,389.99,01/14/19 20:16,"995 Lake St, San Francisco, CA 94016" +154151,Macbook Pro Laptop,1,1700,01/15/19 22:28,"397 14th St, San Francisco, CA 94016" +154152,Apple Airpods Headphones,1,150,01/10/19 18:53,"375 Lincoln St, Boston, MA 02215" +154153,AA Batteries (4-pack),1,3.84,01/03/19 06:48,"444 4th St, Los Angeles, CA 90001" +154154,USB-C Charging Cable,1,11.95,01/03/19 18:25,"935 Elm St, New York City, NY 10001" +154155,AA Batteries (4-pack),1,3.84,01/31/19 17:46,"626 11th St, Austin, TX 73301" +154156,AAA Batteries (4-pack),1,2.99,01/03/19 18:42,"705 Spruce St, Portland, OR 97035" +154157,Macbook Pro Laptop,1,1700,01/23/19 18:54,"992 Hill St, Portland, OR 97035" +154158,20in Monitor,1,109.99,01/07/19 13:35,"572 Washington St, Los Angeles, CA 90001" +154159,AAA Batteries (4-pack),2,2.99,01/12/19 13:22,"577 Pine St, San Francisco, CA 94016" +154160,34in Ultrawide Monitor,1,379.99,01/18/19 14:49,"698 Johnson St, Los Angeles, CA 90001" +154161,Flatscreen TV,1,300,01/10/19 21:14,"443 Hill St, Austin, TX 73301" +154162,Bose SoundSport Headphones,1,99.99,01/24/19 10:17,"64 North St, New York City, NY 10001" +154163,iPhone,1,700,01/19/19 11:41,"687 5th St, Boston, MA 02215" +154163,Lightning Charging Cable,2,14.95,01/19/19 11:41,"687 5th St, Boston, MA 02215" +154164,Lightning Charging Cable,1,14.95,01/15/19 12:33,"846 6th St, San Francisco, CA 94016" +154165,Google Phone,1,600,01/29/19 10:34,"213 Walnut St, San Francisco, CA 94016" +154166,Apple Airpods Headphones,1,150,01/12/19 14:25,"137 Lincoln St, San Francisco, CA 94016" +154167,27in FHD Monitor,1,149.99,01/19/19 23:57,"339 Main St, Dallas, TX 75001" +154168,20in Monitor,1,109.99,01/11/19 19:36,"40 Wilson St, Los Angeles, CA 90001" +154169,AAA Batteries (4-pack),3,2.99,01/15/19 22:35,"934 Park St, Seattle, WA 98101" +154170,20in Monitor,1,109.99,01/09/19 12:46,"47 13th St, Los Angeles, CA 90001" +154171,Macbook Pro Laptop,1,1700,01/30/19 16:26,"302 Forest St, Seattle, WA 98101" +154172,Apple Airpods Headphones,1,150,01/02/19 18:11,"919 Ridge St, New York City, NY 10001" +154173,Apple Airpods Headphones,1,150,01/11/19 09:47,"786 8th St, San Francisco, CA 94016" +154174,iPhone,1,700,01/12/19 13:47,"631 Lincoln St, Los Angeles, CA 90001" +154175,Wired Headphones,2,11.99,01/22/19 18:12,"554 Lincoln St, Dallas, TX 75001" +154176,Macbook Pro Laptop,1,1700,01/09/19 11:38,"25 13th St, San Francisco, CA 94016" +154177,LG Dryer,1,600.0,01/04/19 23:39,"277 Center St, Los Angeles, CA 90001" +154178,Lightning Charging Cable,1,14.95,01/08/19 20:18,"965 Forest St, New York City, NY 10001" +154179,Apple Airpods Headphones,1,150,01/14/19 23:55,"573 Cherry St, San Francisco, CA 94016" +154180,20in Monitor,1,109.99,01/29/19 08:30,"451 Cherry St, Dallas, TX 75001" +154181,iPhone,1,700,01/16/19 01:12,"24 Lakeview St, Atlanta, GA 30301" +154182,AAA Batteries (4-pack),1,2.99,01/23/19 06:37,"90 Church St, Boston, MA 02215" +154183,Bose SoundSport Headphones,1,99.99,01/13/19 08:17,"896 Adams St, New York City, NY 10001" +154184,Lightning Charging Cable,1,14.95,01/27/19 14:53,"337 Jefferson St, New York City, NY 10001" +154185,AAA Batteries (4-pack),2,2.99,01/19/19 16:15,"400 Pine St, Seattle, WA 98101" +154186,Macbook Pro Laptop,1,1700,01/01/19 12:01,"853 Highland St, Dallas, TX 75001" +154187,AA Batteries (4-pack),1,3.84,01/09/19 17:09,"36 Hickory St, Los Angeles, CA 90001" +154188,USB-C Charging Cable,1,11.95,01/27/19 10:13,"332 North St, Dallas, TX 75001" +154189,AAA Batteries (4-pack),2,2.99,01/16/19 19:38,"651 Elm St, Austin, TX 73301" +154190,Lightning Charging Cable,1,14.95,01/02/19 08:22,"970 1st St, Portland, OR 97035" +154191,AAA Batteries (4-pack),3,2.99,01/20/19 15:14,"580 Cedar St, Boston, MA 02215" +154192,Bose SoundSport Headphones,1,99.99,01/22/19 19:17,"142 14th St, New York City, NY 10001" +154193,Bose SoundSport Headphones,1,99.99,01/02/19 21:37,"623 5th St, Seattle, WA 98101" +154194,Wired Headphones,1,11.99,01/03/19 14:53,"911 Cedar St, Dallas, TX 75001" +154195,20in Monitor,1,109.99,01/29/19 07:48,"510 Adams St, Atlanta, GA 30301" +154196,Wired Headphones,1,11.99,01/28/19 21:11,"811 Meadow St, New York City, NY 10001" +154197,Bose SoundSport Headphones,1,99.99,01/10/19 18:32,"697 Church St, San Francisco, CA 94016" +154198,AA Batteries (4-pack),1,3.84,01/21/19 14:23,"530 9th St, Los Angeles, CA 90001" +154199,AA Batteries (4-pack),1,3.84,01/12/19 21:16,"87 West St, Dallas, TX 75001" +154200,AAA Batteries (4-pack),1,2.99,01/05/19 23:50,"324 7th St, New York City, NY 10001" +154201,34in Ultrawide Monitor,1,379.99,01/25/19 16:10,"253 12th St, Los Angeles, CA 90001" +154202,AA Batteries (4-pack),1,3.84,01/07/19 17:41,"421 Walnut St, Austin, TX 73301" +154203,Apple Airpods Headphones,1,150,01/06/19 19:06,"50 Hill St, Los Angeles, CA 90001" +154204,Lightning Charging Cable,1,14.95,01/18/19 12:16,"999 Maple St, San Francisco, CA 94016" +154205,USB-C Charging Cable,1,11.95,01/05/19 10:40,"601 Walnut St, San Francisco, CA 94016" +154206,27in 4K Gaming Monitor,1,389.99,01/22/19 19:11,"983 Willow St, Dallas, TX 75001" +154207,iPhone,1,700,01/05/19 21:05,"171 Lakeview St, Austin, TX 73301" +154207,Wired Headphones,1,11.99,01/05/19 21:05,"171 Lakeview St, Austin, TX 73301" +154208,Apple Airpods Headphones,1,150,01/16/19 07:54,"883 Elm St, Los Angeles, CA 90001" +154209,Lightning Charging Cable,1,14.95,01/02/19 17:08,"594 River St, Boston, MA 02215" +154210,Wired Headphones,1,11.99,01/01/19 12:41,"744 Chestnut St, Los Angeles, CA 90001" +154211,27in 4K Gaming Monitor,1,389.99,01/08/19 20:02,"936 4th St, Boston, MA 02215" +154212,Apple Airpods Headphones,1,150,01/31/19 12:12,"43 7th St, Los Angeles, CA 90001" +154212,Apple Airpods Headphones,1,150,01/31/19 12:12,"43 7th St, Los Angeles, CA 90001" +154213,LG Dryer,1,600.0,01/12/19 10:24,"637 Cherry St, Boston, MA 02215" +154214,27in FHD Monitor,1,149.99,01/17/19 21:26,"65 North St, Austin, TX 73301" +154215,34in Ultrawide Monitor,1,379.99,01/17/19 20:00,"556 Walnut St, San Francisco, CA 94016" +154216,Lightning Charging Cable,1,14.95,01/25/19 07:32,"934 Lakeview St, Seattle, WA 98101" +154217,Bose SoundSport Headphones,1,99.99,01/14/19 23:18,"809 Walnut St, San Francisco, CA 94016" +154218,Apple Airpods Headphones,1,150,01/30/19 06:46,"105 South St, Atlanta, GA 30301" +154219,AA Batteries (4-pack),1,3.84,01/11/19 14:15,"512 North St, Portland, ME 04101" +154220,AA Batteries (4-pack),1,3.84,01/11/19 17:38,"371 Spruce St, New York City, NY 10001" +154221,AAA Batteries (4-pack),1,2.99,01/20/19 17:15,"240 9th St, Dallas, TX 75001" +154222,USB-C Charging Cable,1,11.95,01/28/19 18:50,"441 5th St, New York City, NY 10001" +154223,Flatscreen TV,1,300,01/30/19 08:08,"480 Adams St, San Francisco, CA 94016" +154224,Wired Headphones,1,11.99,01/14/19 18:57,"384 Jackson St, San Francisco, CA 94016" +154224,27in 4K Gaming Monitor,1,389.99,01/14/19 18:57,"384 Jackson St, San Francisco, CA 94016" +154225,Lightning Charging Cable,1,14.95,01/15/19 18:25,"878 South St, San Francisco, CA 94016" +154226,USB-C Charging Cable,1,11.95,01/16/19 18:47,"325 10th St, New York City, NY 10001" +154227,Macbook Pro Laptop,1,1700,01/31/19 07:59,"215 Adams St, Austin, TX 73301" +154228,Google Phone,1,600,01/29/19 12:42,"184 4th St, Los Angeles, CA 90001" +154229,Lightning Charging Cable,1,14.95,01/13/19 06:39,"878 North St, Portland, OR 97035" +154230,iPhone,1,700,01/10/19 17:20,"104 Hickory St, Seattle, WA 98101" +154230,Lightning Charging Cable,1,14.95,01/10/19 17:20,"104 Hickory St, Seattle, WA 98101" +154231,ThinkPad Laptop,1,999.99,01/30/19 10:46,"772 Adams St, Boston, MA 02215" +154232,Google Phone,1,600,01/31/19 13:09,"310 12th St, San Francisco, CA 94016" +154232,USB-C Charging Cable,1,11.95,01/31/19 13:09,"310 12th St, San Francisco, CA 94016" +154233,AA Batteries (4-pack),1,3.84,01/31/19 14:19,"461 Walnut St, Portland, OR 97035" +154234,Apple Airpods Headphones,1,150,01/19/19 00:29,"889 Lincoln St, Dallas, TX 75001" +154235,Flatscreen TV,1,300,01/12/19 11:21,"521 Main St, Los Angeles, CA 90001" +154236,USB-C Charging Cable,1,11.95,01/23/19 16:34,"359 Spruce St, Los Angeles, CA 90001" +154237,AAA Batteries (4-pack),2,2.99,01/28/19 07:26,"737 7th St, Austin, TX 73301" +154238,Vareebadd Phone,1,400,01/14/19 10:09,"188 11th St, San Francisco, CA 94016" +154239,AAA Batteries (4-pack),1,2.99,01/17/19 20:44,"660 Lakeview St, Seattle, WA 98101" +154240,Wired Headphones,1,11.99,01/23/19 11:16,"921 Pine St, San Francisco, CA 94016" +154241,Lightning Charging Cable,1,14.95,01/02/19 20:47,"53 Walnut St, Atlanta, GA 30301" +154242,27in 4K Gaming Monitor,1,389.99,01/14/19 12:38,"440 13th St, New York City, NY 10001" +154243,Lightning Charging Cable,1,14.95,01/21/19 15:49,"506 West St, San Francisco, CA 94016" +154244,27in FHD Monitor,1,149.99,01/21/19 19:22,"265 Jefferson St, New York City, NY 10001" +154245,Flatscreen TV,1,300,01/18/19 11:27,"11 5th St, Dallas, TX 75001" +154246,27in FHD Monitor,1,149.99,01/10/19 15:26,"863 Jefferson St, San Francisco, CA 94016" +154247,AA Batteries (4-pack),1,3.84,01/09/19 23:34,"346 West St, San Francisco, CA 94016" +154248,USB-C Charging Cable,1,11.95,01/09/19 12:36,"488 Dogwood St, Los Angeles, CA 90001" +154249,iPhone,1,700,01/25/19 09:27,"129 Ridge St, Seattle, WA 98101" +154249,Lightning Charging Cable,1,14.95,01/25/19 09:27,"129 Ridge St, Seattle, WA 98101" +154250,Macbook Pro Laptop,1,1700,01/20/19 23:22,"740 5th St, Los Angeles, CA 90001" +154251,iPhone,1,700,01/10/19 23:19,"754 Maple St, Los Angeles, CA 90001" +154252,USB-C Charging Cable,1,11.95,02/01/19 00:18,"833 Chestnut St, Seattle, WA 98101" +154253,Lightning Charging Cable,1,14.95,01/02/19 19:05,"444 Spruce St, San Francisco, CA 94016" +154254,USB-C Charging Cable,1,11.95,01/13/19 19:38,"869 Lincoln St, Austin, TX 73301" +154255,AA Batteries (4-pack),1,3.84,01/16/19 11:48,"900 Pine St, San Francisco, CA 94016" +154256,Bose SoundSport Headphones,1,99.99,01/09/19 16:48,"482 River St, San Francisco, CA 94016" +154257,AAA Batteries (4-pack),1,2.99,01/06/19 22:37,"511 4th St, San Francisco, CA 94016" +154258,Bose SoundSport Headphones,1,99.99,01/07/19 08:55,"858 4th St, Seattle, WA 98101" +154259,USB-C Charging Cable,1,11.95,01/23/19 13:32,"744 1st St, Los Angeles, CA 90001" +154260,AAA Batteries (4-pack),2,2.99,01/26/19 12:07,"348 14th St, Dallas, TX 75001" +154261,Bose SoundSport Headphones,1,99.99,01/10/19 11:04,"195 Chestnut St, Dallas, TX 75001" +154262,iPhone,1,700,01/14/19 19:43,"447 Lincoln St, Austin, TX 73301" +154263,Apple Airpods Headphones,1,150,01/16/19 15:48,"727 Willow St, Portland, OR 97035" +154264,AA Batteries (4-pack),2,3.84,01/07/19 00:52,"256 6th St, San Francisco, CA 94016" +154265,Wired Headphones,1,11.99,01/20/19 08:32,"828 4th St, Portland, OR 97035" +154266,Lightning Charging Cable,1,14.95,01/21/19 19:41,"107 Jefferson St, San Francisco, CA 94016" +154267,34in Ultrawide Monitor,1,379.99,01/02/19 17:00,"231 Pine St, San Francisco, CA 94016" +154268,Bose SoundSport Headphones,1,99.99,01/28/19 12:32,"71 2nd St, Dallas, TX 75001" +154269,LG Dryer,1,600.0,01/18/19 16:50,"605 Adams St, Los Angeles, CA 90001" +154270,iPhone,1,700,01/29/19 22:12,"439 West St, Seattle, WA 98101" +154271,Apple Airpods Headphones,1,150,01/18/19 17:03,"393 6th St, San Francisco, CA 94016" +154272,AAA Batteries (4-pack),1,2.99,01/14/19 05:31,"681 5th St, Portland, ME 04101" +154273,27in FHD Monitor,1,149.99,01/31/19 22:48,"428 Wilson St, Portland, OR 97035" +154274,Flatscreen TV,1,300,01/11/19 20:00,"478 River St, San Francisco, CA 94016" +154275,Apple Airpods Headphones,1,150,01/20/19 09:59,"929 Highland St, Boston, MA 02215" +154276,Bose SoundSport Headphones,1,99.99,01/20/19 20:28,"451 9th St, Boston, MA 02215" +154277,Lightning Charging Cable,1,14.95,01/14/19 18:10,"327 Elm St, Los Angeles, CA 90001" +154278,AA Batteries (4-pack),2,3.84,01/01/19 18:41,"136 Ridge St, San Francisco, CA 94016" +154279,ThinkPad Laptop,1,999.99,01/24/19 11:32,"481 2nd St, Boston, MA 02215" +154280,20in Monitor,1,109.99,01/03/19 22:56,"453 Highland St, Los Angeles, CA 90001" +154280,Bose SoundSport Headphones,1,99.99,01/03/19 22:56,"453 Highland St, Los Angeles, CA 90001" +154281,Apple Airpods Headphones,1,150,01/05/19 12:04,"133 Center St, Seattle, WA 98101" +154282,AA Batteries (4-pack),1,3.84,01/30/19 13:18,"17 11th St, San Francisco, CA 94016" +154283,20in Monitor,1,109.99,01/24/19 08:00,"641 7th St, Dallas, TX 75001" +154284,Apple Airpods Headphones,1,150,01/05/19 02:42,"58 Elm St, Boston, MA 02215" +154285,27in FHD Monitor,1,149.99,01/11/19 13:29,"697 9th St, Boston, MA 02215" +154286,Wired Headphones,1,11.99,01/08/19 11:09,"5 Jackson St, Boston, MA 02215" +154287,Lightning Charging Cable,1,14.95,01/29/19 23:20,"364 6th St, Dallas, TX 75001" +154288,Google Phone,1,600,01/14/19 15:24,"482 Chestnut St, Boston, MA 02215" +154289,27in 4K Gaming Monitor,1,389.99,01/16/19 08:43,"142 Wilson St, Los Angeles, CA 90001" +154290,Wired Headphones,1,11.99,01/29/19 17:46,"882 11th St, Austin, TX 73301" +154290,34in Ultrawide Monitor,1,379.99,01/29/19 17:46,"882 11th St, Austin, TX 73301" +154291,AA Batteries (4-pack),1,3.84,01/26/19 07:26,"644 Lakeview St, San Francisco, CA 94016" +154291,Vareebadd Phone,1,400,01/26/19 07:26,"644 Lakeview St, San Francisco, CA 94016" +154292,Bose SoundSport Headphones,1,99.99,01/03/19 12:59,"977 Spruce St, Los Angeles, CA 90001" +154293,USB-C Charging Cable,1,11.95,01/22/19 18:55,"562 Jefferson St, Dallas, TX 75001" +154294,Apple Airpods Headphones,1,150,01/15/19 15:27,"775 Washington St, Seattle, WA 98101" +154295,Bose SoundSport Headphones,1,99.99,01/15/19 21:12,"357 1st St, Boston, MA 02215" +154296,AAA Batteries (4-pack),1,2.99,01/27/19 20:16,"336 Jefferson St, San Francisco, CA 94016" +154297,USB-C Charging Cable,1,11.95,01/24/19 12:40,"661 Hill St, Los Angeles, CA 90001" +154298,Google Phone,1,600,01/21/19 01:54,"402 Meadow St, Dallas, TX 75001" +154299,Flatscreen TV,1,300,01/21/19 13:19,"860 Park St, Dallas, TX 75001" +154300,Wired Headphones,3,11.99,01/12/19 16:34,"331 Hill St, Los Angeles, CA 90001" +154301,USB-C Charging Cable,1,11.95,01/19/19 21:44,"710 2nd St, San Francisco, CA 94016" +154302,AA Batteries (4-pack),2,3.84,01/10/19 15:25,"388 Elm St, Portland, OR 97035" +154303,AAA Batteries (4-pack),2,2.99,01/19/19 12:27,"828 13th St, San Francisco, CA 94016" +154304,AAA Batteries (4-pack),3,2.99,01/27/19 09:25,"491 Wilson St, Austin, TX 73301" +154305,Wired Headphones,1,11.99,01/26/19 22:51,"987 Willow St, Atlanta, GA 30301" +154306,27in 4K Gaming Monitor,1,389.99,01/24/19 13:38,"981 Elm St, Portland, ME 04101" +154307,Flatscreen TV,2,300,01/11/19 11:07,"200 1st St, Los Angeles, CA 90001" +154308,Flatscreen TV,1,300,01/22/19 20:46,"638 Walnut St, Los Angeles, CA 90001" +154309,Flatscreen TV,1,300,01/28/19 16:42,"694 Johnson St, San Francisco, CA 94016" +154310,Lightning Charging Cable,1,14.95,01/18/19 10:41,"547 12th St, Los Angeles, CA 90001" +154311,27in FHD Monitor,1,149.99,01/12/19 11:03,"797 5th St, San Francisco, CA 94016" +154312,Lightning Charging Cable,1,14.95,01/06/19 20:43,"757 Washington St, Atlanta, GA 30301" +154313,AAA Batteries (4-pack),1,2.99,01/19/19 00:50,"913 Forest St, Austin, TX 73301" +154314,USB-C Charging Cable,1,11.95,01/31/19 14:23,"621 1st St, Dallas, TX 75001" +154315,Lightning Charging Cable,1,14.95,01/29/19 20:10,"230 14th St, Boston, MA 02215" +154316,iPhone,1,700,01/14/19 20:06,"581 Adams St, Dallas, TX 75001" +154316,Lightning Charging Cable,1,14.95,01/14/19 20:06,"581 Adams St, Dallas, TX 75001" +154317,USB-C Charging Cable,1,11.95,01/04/19 18:41,"964 Meadow St, Los Angeles, CA 90001" +154318,AA Batteries (4-pack),1,3.84,01/02/19 20:10,"952 8th St, New York City, NY 10001" +154319,Macbook Pro Laptop,1,1700,01/18/19 07:44,"718 Dogwood St, Portland, ME 04101" +154320,AA Batteries (4-pack),2,3.84,01/28/19 16:29,"841 5th St, New York City, NY 10001" +154321,Wired Headphones,1,11.99,01/23/19 19:51,"601 6th St, Los Angeles, CA 90001" +154322,Flatscreen TV,1,300,01/07/19 07:51,"747 Washington St, Los Angeles, CA 90001" +154323,20in Monitor,1,109.99,01/07/19 14:08,"67 South St, Boston, MA 02215" +154324,Lightning Charging Cable,1,14.95,01/25/19 22:35,"396 Ridge St, New York City, NY 10001" +154325,Lightning Charging Cable,1,14.95,01/07/19 07:03,"99 Highland St, Boston, MA 02215" +154326,34in Ultrawide Monitor,1,379.99,01/04/19 17:15,"106 Johnson St, Portland, OR 97035" +154327,34in Ultrawide Monitor,1,379.99,01/20/19 15:24,"895 Maple St, Atlanta, GA 30301" +154328,Wired Headphones,2,11.99,01/04/19 16:24,"280 1st St, Los Angeles, CA 90001" +154329,Wired Headphones,1,11.99,01/04/19 23:41,"712 Madison St, San Francisco, CA 94016" +154330,Bose SoundSport Headphones,1,99.99,01/18/19 13:19,"872 South St, Portland, OR 97035" +154331,ThinkPad Laptop,1,999.99,01/02/19 14:21,"388 10th St, Los Angeles, CA 90001" +154332,Vareebadd Phone,1,400,01/27/19 15:51,"752 Sunset St, San Francisco, CA 94016" +154332,Bose SoundSport Headphones,1,99.99,01/27/19 15:51,"752 Sunset St, San Francisco, CA 94016" +154333,Bose SoundSport Headphones,1,99.99,01/06/19 12:31,"748 Hickory St, San Francisco, CA 94016" +154334,Google Phone,1,600,01/21/19 13:42,"314 Lincoln St, Los Angeles, CA 90001" +154334,USB-C Charging Cable,1,11.95,01/21/19 13:42,"314 Lincoln St, Los Angeles, CA 90001" +154335,34in Ultrawide Monitor,1,379.99,01/08/19 00:08,"411 Park St, San Francisco, CA 94016" +154336,34in Ultrawide Monitor,1,379.99,01/07/19 11:44,"734 Lincoln St, Austin, TX 73301" +154337,USB-C Charging Cable,1,11.95,01/29/19 11:42,"927 Maple St, New York City, NY 10001" +154338,27in FHD Monitor,1,149.99,01/30/19 10:54,"781 6th St, Los Angeles, CA 90001" +154339,Wired Headphones,1,11.99,01/23/19 09:21,"101 4th St, Austin, TX 73301" +154340,Lightning Charging Cable,2,14.95,01/07/19 10:01,"899 Dogwood St, Seattle, WA 98101" +154341,ThinkPad Laptop,1,999.99,01/21/19 16:52,"133 Park St, Los Angeles, CA 90001" +154342,Wired Headphones,1,11.99,01/31/19 13:17,"916 Main St, Los Angeles, CA 90001" +154343,USB-C Charging Cable,1,11.95,01/29/19 02:20,"779 Johnson St, San Francisco, CA 94016" +154344,AAA Batteries (4-pack),2,2.99,01/01/19 04:45,"883 4th St, Seattle, WA 98101" +154345,Bose SoundSport Headphones,1,99.99,01/02/19 10:50,"699 13th St, Boston, MA 02215" +154346,Bose SoundSport Headphones,1,99.99,01/26/19 12:05,"725 Walnut St, Seattle, WA 98101" +154347,Wired Headphones,1,11.99,01/23/19 20:26,"619 6th St, Austin, TX 73301" +154348,Bose SoundSport Headphones,1,99.99,01/22/19 22:27,"895 8th St, Portland, ME 04101" +154349,Apple Airpods Headphones,1,150,01/20/19 14:27,"318 Highland St, Los Angeles, CA 90001" +154350,Wired Headphones,1,11.99,01/19/19 19:24,"58 North St, San Francisco, CA 94016" +154351,Apple Airpods Headphones,1,150,01/03/19 05:54,"900 7th St, Dallas, TX 75001" +154352,Vareebadd Phone,1,400,01/21/19 02:52,"637 8th St, San Francisco, CA 94016" +154352,USB-C Charging Cable,1,11.95,01/21/19 02:52,"637 8th St, San Francisco, CA 94016" +154353,AA Batteries (4-pack),1,3.84,01/05/19 22:31,"45 Cherry St, New York City, NY 10001" +154354,Bose SoundSport Headphones,1,99.99,01/08/19 22:36,"353 4th St, New York City, NY 10001" +154355,Wired Headphones,1,11.99,01/15/19 18:51,"456 Washington St, Atlanta, GA 30301" +154356,AAA Batteries (4-pack),1,2.99,01/22/19 21:48,"376 7th St, San Francisco, CA 94016" +154357,AAA Batteries (4-pack),2,2.99,01/31/19 19:23,"930 Madison St, New York City, NY 10001" +154358,Bose SoundSport Headphones,1,99.99,01/02/19 17:08,"430 Highland St, Los Angeles, CA 90001" +154359,Flatscreen TV,1,300,01/02/19 00:51,"37 West St, New York City, NY 10001" +154359,27in 4K Gaming Monitor,1,389.99,01/02/19 00:51,"37 West St, New York City, NY 10001" +154360,USB-C Charging Cable,1,11.95,01/26/19 20:00,"198 Chestnut St, Los Angeles, CA 90001" +154361,Macbook Pro Laptop,1,1700,01/11/19 22:58,"47 5th St, New York City, NY 10001" +154362,Apple Airpods Headphones,1,150,01/16/19 11:36,"799 West St, Los Angeles, CA 90001" +154363,Vareebadd Phone,1,400,01/04/19 13:33,"304 8th St, Dallas, TX 75001" +154364,27in FHD Monitor,1,149.99,01/23/19 19:43,"414 Pine St, New York City, NY 10001" +154365,Lightning Charging Cable,1,14.95,01/15/19 16:35,"332 Ridge St, Dallas, TX 75001" +154366,USB-C Charging Cable,1,11.95,01/23/19 07:41,"223 Center St, Portland, OR 97035" +154367,Lightning Charging Cable,1,14.95,01/11/19 19:04,"87 Walnut St, Seattle, WA 98101" +154368,Bose SoundSport Headphones,1,99.99,01/23/19 20:08,"727 Jefferson St, Seattle, WA 98101" +154369,Wired Headphones,1,11.99,01/21/19 14:01,"683 8th St, Dallas, TX 75001" +154369,Macbook Pro Laptop,1,1700,01/21/19 14:01,"683 8th St, Dallas, TX 75001" +154370,Google Phone,1,600,01/31/19 07:00,"816 11th St, Dallas, TX 75001" +154370,USB-C Charging Cable,1,11.95,01/31/19 07:00,"816 11th St, Dallas, TX 75001" +154371,AA Batteries (4-pack),1,3.84,01/11/19 18:31,"264 Johnson St, New York City, NY 10001" +154372,Flatscreen TV,1,300,01/01/19 15:13,"108 14th St, Los Angeles, CA 90001" +154373,Google Phone,1,600,01/30/19 20:14,"501 Madison St, San Francisco, CA 94016" +154374,AA Batteries (4-pack),1,3.84,01/18/19 17:34,"669 Jackson St, Portland, OR 97035" +154375,iPhone,1,700,01/12/19 11:47,"786 Center St, Atlanta, GA 30301" +154376,AAA Batteries (4-pack),3,2.99,01/30/19 18:11,"246 Cherry St, Dallas, TX 75001" +154377,Flatscreen TV,1,300,01/06/19 09:34,"285 Elm St, San Francisco, CA 94016" +154378,ThinkPad Laptop,1,999.99,01/22/19 17:37,"846 8th St, Los Angeles, CA 90001" +154379,27in FHD Monitor,1,149.99,01/28/19 20:16,"220 Ridge St, Los Angeles, CA 90001" +154380,iPhone,1,700,01/13/19 01:17,"474 12th St, Portland, OR 97035" +154381,AA Batteries (4-pack),1,3.84,01/26/19 20:29,"975 South St, San Francisco, CA 94016" +154382,Wired Headphones,1,11.99,01/17/19 13:35,"139 Hickory St, San Francisco, CA 94016" +154383,Google Phone,1,600,01/29/19 19:22,"156 Johnson St, Los Angeles, CA 90001" +154384,AA Batteries (4-pack),1,3.84,01/23/19 07:43,"153 Washington St, Dallas, TX 75001" +154385,AAA Batteries (4-pack),1,2.99,01/17/19 09:16,"780 Adams St, Austin, TX 73301" +154386,USB-C Charging Cable,1,11.95,01/18/19 14:08,"344 Maple St, Boston, MA 02215" +154387,AA Batteries (4-pack),1,3.84,01/28/19 23:11,"670 Elm St, Boston, MA 02215" +154388,27in 4K Gaming Monitor,1,389.99,01/07/19 22:43,"917 Spruce St, New York City, NY 10001" +154389,Lightning Charging Cable,1,14.95,01/26/19 08:48,"960 Madison St, Dallas, TX 75001" +154390,Lightning Charging Cable,1,14.95,01/21/19 13:24,"771 North St, Boston, MA 02215" +154391,AAA Batteries (4-pack),1,2.99,01/29/19 10:52,"40 13th St, Austin, TX 73301" +154392,AA Batteries (4-pack),2,3.84,01/11/19 22:04,"868 Cherry St, Los Angeles, CA 90001" +154393,Macbook Pro Laptop,1,1700,01/24/19 10:48,"921 1st St, New York City, NY 10001" +154394,iPhone,1,700,01/12/19 22:24,"232 Sunset St, Atlanta, GA 30301" +154394,Lightning Charging Cable,1,14.95,01/12/19 22:24,"232 Sunset St, Atlanta, GA 30301" +154394,Wired Headphones,1,11.99,01/12/19 22:24,"232 Sunset St, Atlanta, GA 30301" +154395,AAA Batteries (4-pack),1,2.99,01/14/19 11:47,"897 Maple St, Austin, TX 73301" +154396,Wired Headphones,1,11.99,01/31/19 18:06,"506 4th St, Dallas, TX 75001" +154397,Flatscreen TV,1,300,01/07/19 11:25,"422 5th St, Los Angeles, CA 90001" +154398,USB-C Charging Cable,1,11.95,01/02/19 00:00,"648 Elm St, Los Angeles, CA 90001" +154399,iPhone,1,700,01/12/19 11:45,"337 Elm St, Los Angeles, CA 90001" +154399,Lightning Charging Cable,1,14.95,01/12/19 11:45,"337 Elm St, Los Angeles, CA 90001" +154400,Wired Headphones,2,11.99,01/20/19 13:55,"294 Maple St, San Francisco, CA 94016" +154401,Wired Headphones,1,11.99,01/02/19 22:07,"843 West St, Portland, OR 97035" +154402,AA Batteries (4-pack),2,3.84,01/19/19 20:13,"163 North St, Boston, MA 02215" +154403,USB-C Charging Cable,1,11.95,01/18/19 11:54,"130 1st St, Atlanta, GA 30301" +154404,Bose SoundSport Headphones,1,99.99,01/03/19 19:59,"438 11th St, Atlanta, GA 30301" +154405,USB-C Charging Cable,1,11.95,01/29/19 16:39,"785 Cherry St, Atlanta, GA 30301" +154406,USB-C Charging Cable,1,11.95,01/22/19 11:24,"694 Dogwood St, San Francisco, CA 94016" +154407,34in Ultrawide Monitor,1,379.99,01/04/19 18:54,"371 Jefferson St, Boston, MA 02215" +154408,Google Phone,1,600,01/30/19 14:13,"932 8th St, Boston, MA 02215" +154408,USB-C Charging Cable,1,11.95,01/30/19 14:13,"932 8th St, Boston, MA 02215" +154409,USB-C Charging Cable,1,11.95,01/07/19 16:04,"284 Chestnut St, Boston, MA 02215" +154410,Wired Headphones,1,11.99,01/24/19 19:26,"55 Walnut St, New York City, NY 10001" +154411,USB-C Charging Cable,1,11.95,01/19/19 22:58,"904 Cedar St, New York City, NY 10001" +154412,AA Batteries (4-pack),3,3.84,01/05/19 21:09,"266 Lake St, Los Angeles, CA 90001" +154413,USB-C Charging Cable,2,11.95,01/11/19 22:20,"628 Wilson St, San Francisco, CA 94016" +154414,ThinkPad Laptop,1,999.99,01/04/19 08:19,"793 Highland St, San Francisco, CA 94016" +154415,AAA Batteries (4-pack),1,2.99,01/25/19 21:52,"348 South St, Boston, MA 02215" +154416,Wired Headphones,1,11.99,01/02/19 13:46,"914 Hickory St, San Francisco, CA 94016" +154417,Bose SoundSport Headphones,1,99.99,01/13/19 10:57,"408 Highland St, New York City, NY 10001" +154418,AA Batteries (4-pack),1,3.84,01/28/19 16:49,"51 South St, San Francisco, CA 94016" +154419,Flatscreen TV,1,300,01/19/19 11:19,"179 Lake St, San Francisco, CA 94016" +154420,Apple Airpods Headphones,1,150,01/25/19 18:31,"187 1st St, New York City, NY 10001" +154421,USB-C Charging Cable,2,11.95,01/30/19 13:19,"409 Adams St, Atlanta, GA 30301" +154422,20in Monitor,1,109.99,01/16/19 20:01,"941 Wilson St, Boston, MA 02215" +154423,Apple Airpods Headphones,1,150,01/08/19 00:46,"600 Church St, Dallas, TX 75001" +154424,Lightning Charging Cable,1,14.95,01/18/19 09:36,"684 Ridge St, Los Angeles, CA 90001" +154425,Apple Airpods Headphones,1,150,01/30/19 14:04,"26 13th St, New York City, NY 10001" +154426,Vareebadd Phone,1,400,01/17/19 03:14,"94 Lincoln St, Los Angeles, CA 90001" +154426,Wired Headphones,1,11.99,01/17/19 03:14,"94 Lincoln St, Los Angeles, CA 90001" +154427,AA Batteries (4-pack),1,3.84,01/09/19 14:19,"307 Hickory St, San Francisco, CA 94016" +154428,Bose SoundSport Headphones,1,99.99,01/14/19 20:12,"648 Chestnut St, Dallas, TX 75001" +154429,USB-C Charging Cable,1,11.95,01/17/19 18:37,"120 Dogwood St, Boston, MA 02215" +154430,Lightning Charging Cable,1,14.95,01/27/19 11:24,"482 Highland St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +154431,Wired Headphones,1,11.99,01/28/19 12:12,"203 14th St, San Francisco, CA 94016" +154432,Lightning Charging Cable,1,14.95,01/02/19 11:09,"550 Dogwood St, Boston, MA 02215" +154433,Wired Headphones,1,11.99,01/04/19 14:16,"498 Wilson St, Los Angeles, CA 90001" +154434,ThinkPad Laptop,1,999.99,01/28/19 01:20,"389 Hickory St, San Francisco, CA 94016" +154435,AAA Batteries (4-pack),1,2.99,01/12/19 17:42,"812 Lincoln St, New York City, NY 10001" +154436,USB-C Charging Cable,1,11.95,01/25/19 14:03,"975 Jackson St, San Francisco, CA 94016" +154437,Lightning Charging Cable,1,14.95,01/05/19 23:58,"381 West St, San Francisco, CA 94016" +154438,Lightning Charging Cable,2,14.95,01/01/19 17:29,"111 9th St, New York City, NY 10001" +154439,AA Batteries (4-pack),1,3.84,01/14/19 15:21,"540 Elm St, Atlanta, GA 30301" +154440,USB-C Charging Cable,1,11.95,01/29/19 11:20,"426 Cherry St, San Francisco, CA 94016" +154441,AA Batteries (4-pack),1,3.84,01/24/19 11:53,"12 Meadow St, Los Angeles, CA 90001" +154442,20in Monitor,1,109.99,01/11/19 14:17,"169 Wilson St, Portland, OR 97035" +154443,27in FHD Monitor,1,149.99,01/04/19 13:11,"216 Cedar St, Atlanta, GA 30301" +154444,27in 4K Gaming Monitor,1,389.99,01/12/19 13:28,"959 Maple St, San Francisco, CA 94016" +154444,Wired Headphones,1,11.99,01/12/19 13:28,"959 Maple St, San Francisco, CA 94016" +154445,Google Phone,1,600,01/07/19 00:41,"327 Cherry St, New York City, NY 10001" +154446,Wired Headphones,1,11.99,01/04/19 20:19,"998 1st St, Los Angeles, CA 90001" +154447,AAA Batteries (4-pack),2,2.99,01/16/19 08:29,"758 River St, Dallas, TX 75001" +154448,AAA Batteries (4-pack),2,2.99,01/04/19 17:19,"51 Dogwood St, Dallas, TX 75001" +154449,Lightning Charging Cable,1,14.95,01/08/19 20:15,"473 North St, Seattle, WA 98101" +154450,USB-C Charging Cable,1,11.95,01/27/19 17:20,"119 Meadow St, New York City, NY 10001" +154451,Wired Headphones,1,11.99,01/31/19 19:32,"832 Lake St, Austin, TX 73301" +154452,AAA Batteries (4-pack),1,2.99,01/03/19 20:37,"423 Church St, New York City, NY 10001" +154453,USB-C Charging Cable,1,11.95,01/11/19 20:14,"311 Church St, New York City, NY 10001" +154454,Wired Headphones,1,11.99,01/18/19 12:57,"996 Pine St, New York City, NY 10001" +154455,ThinkPad Laptop,1,999.99,01/19/19 22:52,"488 Walnut St, San Francisco, CA 94016" +154456,Apple Airpods Headphones,1,150,01/28/19 15:25,"500 Lake St, San Francisco, CA 94016" +154457,AAA Batteries (4-pack),2,2.99,01/26/19 18:48,"626 Cedar St, Seattle, WA 98101" +154458,AAA Batteries (4-pack),1,2.99,01/04/19 15:35,"342 Spruce St, Boston, MA 02215" +154459,Lightning Charging Cable,1,14.95,01/27/19 16:02,"340 14th St, Dallas, TX 75001" +154460,Lightning Charging Cable,1,14.95,01/30/19 10:42,"67 Pine St, New York City, NY 10001" +154461,AA Batteries (4-pack),1,3.84,01/08/19 18:11,"573 2nd St, Atlanta, GA 30301" +154462,USB-C Charging Cable,1,11.95,01/05/19 18:40,"533 4th St, Austin, TX 73301" +154463,Bose SoundSport Headphones,1,99.99,01/18/19 11:28,"8 1st St, San Francisco, CA 94016" +154464,USB-C Charging Cable,1,11.95,01/22/19 15:19,"211 Washington St, Seattle, WA 98101" +154465,Lightning Charging Cable,1,14.95,01/31/19 21:52,"858 Highland St, San Francisco, CA 94016" +154466,Lightning Charging Cable,1,14.95,01/26/19 19:59,"216 2nd St, Atlanta, GA 30301" +154467,AAA Batteries (4-pack),2,2.99,01/28/19 17:02,"342 1st St, Dallas, TX 75001" +154468,27in FHD Monitor,1,149.99,01/28/19 09:23,"887 Cherry St, New York City, NY 10001" +154469,iPhone,1,700,01/14/19 20:57,"797 8th St, Portland, OR 97035" +154470,AAA Batteries (4-pack),1,2.99,01/04/19 13:51,"266 5th St, San Francisco, CA 94016" +154471,Bose SoundSport Headphones,1,99.99,01/15/19 14:17,"839 Chestnut St, San Francisco, CA 94016" +154472,ThinkPad Laptop,1,999.99,01/31/19 22:26,"566 River St, Boston, MA 02215" +154473,USB-C Charging Cable,1,11.95,01/03/19 12:35,"306 Pine St, Atlanta, GA 30301" +154474,Apple Airpods Headphones,1,150,01/15/19 10:04,"356 Chestnut St, Seattle, WA 98101" +154475,Wired Headphones,1,11.99,01/20/19 15:54,"655 River St, Portland, OR 97035" +154476,20in Monitor,1,109.99,01/08/19 15:36,"962 Madison St, Seattle, WA 98101" +154477,Macbook Pro Laptop,1,1700,01/04/19 07:01,"949 Center St, Los Angeles, CA 90001" +154477,Wired Headphones,1,11.99,01/04/19 07:01,"949 Center St, Los Angeles, CA 90001" +154478,iPhone,1,700,01/06/19 18:25,"665 11th St, San Francisco, CA 94016" +154478,Apple Airpods Headphones,1,150,01/06/19 18:25,"665 11th St, San Francisco, CA 94016" +154479,AA Batteries (4-pack),1,3.84,01/29/19 11:44,"444 9th St, Boston, MA 02215" +154480,AAA Batteries (4-pack),1,2.99,01/12/19 19:44,"390 Elm St, San Francisco, CA 94016" +154481,AAA Batteries (4-pack),1,2.99,01/19/19 13:01,"199 6th St, San Francisco, CA 94016" +154482,27in 4K Gaming Monitor,1,389.99,01/25/19 21:57,"726 Willow St, San Francisco, CA 94016" +154483,Apple Airpods Headphones,1,150,01/22/19 11:12,"112 Wilson St, Austin, TX 73301" +154484,LG Washing Machine,1,600.0,01/19/19 12:39,"110 Lake St, New York City, NY 10001" +154485,AA Batteries (4-pack),2,3.84,01/11/19 18:55,"324 Highland St, Austin, TX 73301" +154486,AA Batteries (4-pack),1,3.84,01/16/19 14:23,"776 Center St, Boston, MA 02215" +154487,Google Phone,1,600,01/09/19 14:26,"399 2nd St, Dallas, TX 75001" +154488,iPhone,1,700,01/11/19 03:21,"139 Forest St, Los Angeles, CA 90001" +154489,AA Batteries (4-pack),1,3.84,01/04/19 17:18,"864 Elm St, Boston, MA 02215" +154490,Wired Headphones,1,11.99,01/25/19 15:27,"37 1st St, Seattle, WA 98101" +154491,USB-C Charging Cable,1,11.95,01/31/19 22:13,"21 North St, San Francisco, CA 94016" +154492,27in 4K Gaming Monitor,1,389.99,01/29/19 22:39,"47 Lake St, San Francisco, CA 94016" +154493,Bose SoundSport Headphones,1,99.99,01/03/19 20:38,"751 Sunset St, San Francisco, CA 94016" +154494,27in 4K Gaming Monitor,1,389.99,01/26/19 20:50,"53 Sunset St, San Francisco, CA 94016" +154495,USB-C Charging Cable,1,11.95,01/21/19 20:44,"130 10th St, Austin, TX 73301" +154496,AAA Batteries (4-pack),1,2.99,01/05/19 08:21,"334 Hill St, New York City, NY 10001" +154497,AA Batteries (4-pack),1,3.84,01/11/19 15:32,"750 Church St, Los Angeles, CA 90001" +154498,USB-C Charging Cable,1,11.95,01/18/19 12:32,"668 Jackson St, Portland, OR 97035" +154499,Bose SoundSport Headphones,1,99.99,01/24/19 15:15,"914 Willow St, Austin, TX 73301" +154499,Apple Airpods Headphones,1,150,01/24/19 15:15,"914 Willow St, Austin, TX 73301" +154500,USB-C Charging Cable,1,11.95,01/03/19 10:49,"382 12th St, New York City, NY 10001" +154501,USB-C Charging Cable,1,11.95,01/01/19 15:42,"897 8th St, New York City, NY 10001" +154502,iPhone,1,700,01/12/19 11:09,"192 West St, New York City, NY 10001" +154503,AA Batteries (4-pack),1,3.84,01/13/19 20:52,"286 Meadow St, New York City, NY 10001" +154504,USB-C Charging Cable,1,11.95,01/15/19 12:43,"99 Park St, Dallas, TX 75001" +154505,Apple Airpods Headphones,1,150,01/20/19 12:25,"29 Lake St, Boston, MA 02215" +154506,AA Batteries (4-pack),1,3.84,01/22/19 11:06,"290 Adams St, New York City, NY 10001" +154507,AA Batteries (4-pack),1,3.84,01/10/19 11:28,"193 Highland St, Los Angeles, CA 90001" +154508,Apple Airpods Headphones,1,150,01/14/19 11:23,"444 Park St, Boston, MA 02215" +154509,USB-C Charging Cable,1,11.95,01/06/19 20:02,"197 Elm St, Los Angeles, CA 90001" +154510,Apple Airpods Headphones,1,150,01/04/19 21:59,"236 Spruce St, Seattle, WA 98101" +154511,USB-C Charging Cable,1,11.95,01/10/19 10:51,"266 Lakeview St, Dallas, TX 75001" +154512,Bose SoundSport Headphones,1,99.99,01/18/19 01:39,"392 South St, San Francisco, CA 94016" +154513,AAA Batteries (4-pack),1,2.99,01/13/19 14:28,"865 West St, San Francisco, CA 94016" +154514,USB-C Charging Cable,1,11.95,01/20/19 17:40,"609 Spruce St, Los Angeles, CA 90001" +154515,AA Batteries (4-pack),2,3.84,01/24/19 01:04,"184 Center St, Dallas, TX 75001" +154516,Bose SoundSport Headphones,1,99.99,01/26/19 19:23,"243 4th St, San Francisco, CA 94016" +154517,Bose SoundSport Headphones,1,99.99,01/10/19 15:03,"393 Johnson St, San Francisco, CA 94016" +154518,iPhone,1,700,01/01/19 14:14,"552 Wilson St, Seattle, WA 98101" +154519,USB-C Charging Cable,1,11.95,01/12/19 13:35,"654 Jackson St, Dallas, TX 75001" +154519,Lightning Charging Cable,2,14.95,01/12/19 13:35,"654 Jackson St, Dallas, TX 75001" +154520,Lightning Charging Cable,1,14.95,01/24/19 15:20,"522 Johnson St, San Francisco, CA 94016" +154521,LG Dryer,1,600.0,01/16/19 09:27,"513 Lincoln St, Los Angeles, CA 90001" +154522,Google Phone,1,600,01/19/19 16:40,"583 2nd St, Seattle, WA 98101" +154523,USB-C Charging Cable,1,11.95,01/15/19 13:52,"214 Park St, Boston, MA 02215" +154524,Google Phone,1,600,01/02/19 14:28,"662 4th St, San Francisco, CA 94016" +154525,AA Batteries (4-pack),1,3.84,01/06/19 10:27,"465 Highland St, New York City, NY 10001" +154526,USB-C Charging Cable,1,11.95,01/03/19 23:21,"69 North St, San Francisco, CA 94016" +154527,ThinkPad Laptop,1,999.99,01/15/19 19:48,"171 Park St, Portland, OR 97035" +154528,27in 4K Gaming Monitor,1,389.99,01/04/19 11:21,"809 5th St, Atlanta, GA 30301" +154529,27in FHD Monitor,1,149.99,01/25/19 22:29,"530 Willow St, Dallas, TX 75001" +154530,Apple Airpods Headphones,1,150,01/12/19 20:12,"249 4th St, Los Angeles, CA 90001" +154531,Apple Airpods Headphones,1,150,01/10/19 01:13,"928 14th St, Atlanta, GA 30301" +154532,ThinkPad Laptop,1,999.99,01/04/19 22:31,"894 Lincoln St, Boston, MA 02215" +154533,Wired Headphones,1,11.99,01/26/19 13:43,"896 River St, Los Angeles, CA 90001" +154534,Lightning Charging Cable,1,14.95,01/07/19 07:57,"448 Hickory St, New York City, NY 10001" +154535,ThinkPad Laptop,1,999.99,01/26/19 21:42,"154 South St, San Francisco, CA 94016" +154536,20in Monitor,1,109.99,01/03/19 15:32,"479 Spruce St, Atlanta, GA 30301" +154537,Vareebadd Phone,1,400,01/06/19 14:34,"612 Hill St, Dallas, TX 75001" +154538,Lightning Charging Cable,1,14.95,01/05/19 21:35,"49 Madison St, Austin, TX 73301" +154539,27in 4K Gaming Monitor,1,389.99,01/15/19 09:24,"896 South St, Seattle, WA 98101" +154540,Apple Airpods Headphones,1,150,01/21/19 16:41,"644 Johnson St, Dallas, TX 75001" +154541,ThinkPad Laptop,1,999.99,01/06/19 19:46,"721 Elm St, San Francisco, CA 94016" +154542,20in Monitor,1,109.99,01/11/19 12:20,"167 Willow St, San Francisco, CA 94016" +154543,iPhone,1,700,01/23/19 12:50,"607 Lincoln St, Dallas, TX 75001" +154544,AAA Batteries (4-pack),1,2.99,01/15/19 12:39,"396 Spruce St, San Francisco, CA 94016" +154545,Lightning Charging Cable,1,14.95,01/26/19 21:07,"234 11th St, New York City, NY 10001" +154546,20in Monitor,1,109.99,01/13/19 13:56,"455 North St, Atlanta, GA 30301" +154547,iPhone,1,700,01/07/19 02:22,"493 Willow St, Atlanta, GA 30301" +154548,Macbook Pro Laptop,1,1700,01/10/19 10:34,"392 Church St, Los Angeles, CA 90001" +154549,Lightning Charging Cable,1,14.95,01/05/19 09:54,"575 Meadow St, Los Angeles, CA 90001" +154550,Lightning Charging Cable,1,14.95,01/23/19 16:04,"973 Highland St, Dallas, TX 75001" +154551,USB-C Charging Cable,1,11.95,01/07/19 09:44,"189 Wilson St, New York City, NY 10001" +154552,AA Batteries (4-pack),1,3.84,01/10/19 06:34,"798 1st St, Seattle, WA 98101" +154553,Lightning Charging Cable,1,14.95,01/21/19 21:20,"624 Hill St, Atlanta, GA 30301" +,,,,, +154554,Lightning Charging Cable,1,14.95,01/19/19 11:12,"462 North St, San Francisco, CA 94016" +154554,34in Ultrawide Monitor,1,379.99,01/19/19 11:12,"462 North St, San Francisco, CA 94016" +154555,Wired Headphones,1,11.99,01/08/19 07:32,"217 Walnut St, Boston, MA 02215" +154556,Flatscreen TV,1,300,01/27/19 18:53,"837 Washington St, Seattle, WA 98101" +154557,Bose SoundSport Headphones,1,99.99,01/03/19 22:39,"881 1st St, Seattle, WA 98101" +154558,Bose SoundSport Headphones,1,99.99,01/24/19 14:15,"141 Main St, Atlanta, GA 30301" +154559,Flatscreen TV,1,300,01/23/19 15:45,"428 Madison St, San Francisco, CA 94016" +154560,Apple Airpods Headphones,1,150,01/27/19 13:06,"980 Willow St, Portland, OR 97035" +154561,Wired Headphones,2,11.99,01/25/19 23:23,"112 Chestnut St, Boston, MA 02215" +154562,AAA Batteries (4-pack),2,2.99,01/10/19 10:56,"667 Elm St, Los Angeles, CA 90001" +154563,Apple Airpods Headphones,1,150,01/26/19 08:52,"943 South St, San Francisco, CA 94016" +154564,AA Batteries (4-pack),1,3.84,01/18/19 17:18,"628 River St, San Francisco, CA 94016" +154565,27in FHD Monitor,1,149.99,01/22/19 21:46,"991 Sunset St, Los Angeles, CA 90001" +154566,20in Monitor,1,109.99,01/11/19 00:08,"828 River St, Austin, TX 73301" +154567,Bose SoundSport Headphones,1,99.99,01/30/19 21:59,"933 7th St, Los Angeles, CA 90001" +154568,Wired Headphones,1,11.99,01/07/19 06:58,"512 Hickory St, San Francisco, CA 94016" +154569,27in 4K Gaming Monitor,1,389.99,01/31/19 10:24,"598 Center St, San Francisco, CA 94016" +154570,Apple Airpods Headphones,1,150,01/24/19 15:04,"801 Main St, Dallas, TX 75001" +154571,27in FHD Monitor,1,149.99,01/03/19 16:48,"740 South St, Dallas, TX 75001" +154572,AA Batteries (4-pack),3,3.84,01/24/19 23:07,"639 Lake St, Seattle, WA 98101" +154573,Lightning Charging Cable,1,14.95,01/24/19 17:08,"81 14th St, San Francisco, CA 94016" +154574,AAA Batteries (4-pack),2,2.99,01/14/19 19:01,"912 13th St, Los Angeles, CA 90001" +154575,USB-C Charging Cable,1,11.95,01/06/19 19:06,"551 Lincoln St, Los Angeles, CA 90001" +154576,Lightning Charging Cable,1,14.95,01/01/19 09:11,"540 7th St, Boston, MA 02215" +154577,20in Monitor,1,109.99,01/22/19 18:48,"936 14th St, San Francisco, CA 94016" +154578,Macbook Pro Laptop,1,1700,01/19/19 09:37,"243 Elm St, Boston, MA 02215" +154579,Wired Headphones,1,11.99,01/25/19 06:25,"737 14th St, Los Angeles, CA 90001" +154580,27in FHD Monitor,1,149.99,01/18/19 20:08,"443 Meadow St, Portland, OR 97035" +154581,Wired Headphones,1,11.99,01/16/19 11:11,"536 Madison St, New York City, NY 10001" +154582,Wired Headphones,1,11.99,01/31/19 17:56,"646 8th St, New York City, NY 10001" +154583,Apple Airpods Headphones,1,150,01/03/19 08:32,"356 Jackson St, Boston, MA 02215" +154584,AAA Batteries (4-pack),1,2.99,01/31/19 13:58,"693 Meadow St, San Francisco, CA 94016" +154585,Bose SoundSport Headphones,1,99.99,01/09/19 17:53,"457 Lake St, Los Angeles, CA 90001" +154586,Bose SoundSport Headphones,1,99.99,01/21/19 07:40,"963 River St, Boston, MA 02215" +154587,27in FHD Monitor,1,149.99,01/01/19 16:32,"278 Spruce St, Boston, MA 02215" +154588,Wired Headphones,2,11.99,01/16/19 13:51,"88 Spruce St, Los Angeles, CA 90001" +154589,AA Batteries (4-pack),1,3.84,01/29/19 19:29,"129 Jackson St, Dallas, TX 75001" +154590,27in 4K Gaming Monitor,1,389.99,01/31/19 19:59,"36 2nd St, San Francisco, CA 94016" +154591,27in FHD Monitor,1,149.99,01/17/19 14:21,"994 Willow St, Seattle, WA 98101" +154592,27in 4K Gaming Monitor,1,389.99,01/22/19 21:38,"813 8th St, Austin, TX 73301" +154593,Macbook Pro Laptop,1,1700,01/22/19 11:21,"405 13th St, Boston, MA 02215" +154594,Lightning Charging Cable,1,14.95,01/27/19 14:15,"213 Wilson St, Dallas, TX 75001" +154595,Wired Headphones,1,11.99,01/30/19 09:05,"626 Sunset St, Los Angeles, CA 90001" +154596,Lightning Charging Cable,1,14.95,01/09/19 17:21,"443 Hill St, Portland, OR 97035" +154597,Macbook Pro Laptop,1,1700,01/22/19 14:47,"490 Adams St, Seattle, WA 98101" +154598,Apple Airpods Headphones,1,150,01/20/19 20:42,"772 Hill St, Dallas, TX 75001" +154599,Bose SoundSport Headphones,1,99.99,01/04/19 22:07,"201 Elm St, Los Angeles, CA 90001" +154600,iPhone,1,700,01/04/19 15:04,"197 Highland St, San Francisco, CA 94016" +154601,AA Batteries (4-pack),1,3.84,01/31/19 18:30,"153 Jackson St, San Francisco, CA 94016" +154602,USB-C Charging Cable,1,11.95,01/22/19 15:51,"395 Elm St, San Francisco, CA 94016" +154603,AAA Batteries (4-pack),3,2.99,01/20/19 19:55,"889 Jefferson St, Los Angeles, CA 90001" +154604,Wired Headphones,1,11.99,01/04/19 20:16,"844 11th St, New York City, NY 10001" +154605,27in 4K Gaming Monitor,1,389.99,01/29/19 21:39,"236 1st St, Boston, MA 02215" +154606,Vareebadd Phone,1,400,01/29/19 11:55,"70 14th St, New York City, NY 10001" +154607,USB-C Charging Cable,1,11.95,01/04/19 13:43,"169 13th St, Atlanta, GA 30301" +154608,AA Batteries (4-pack),1,3.84,01/21/19 21:57,"621 Center St, Boston, MA 02215" +154609,Lightning Charging Cable,1,14.95,01/04/19 21:41,"553 Main St, Los Angeles, CA 90001" +154610,USB-C Charging Cable,1,11.95,01/31/19 20:38,"600 9th St, Boston, MA 02215" +154611,Flatscreen TV,1,300,01/17/19 10:46,"492 North St, Los Angeles, CA 90001" +154612,AAA Batteries (4-pack),2,2.99,01/28/19 16:49,"295 Park St, Dallas, TX 75001" +154613,Lightning Charging Cable,1,14.95,01/18/19 11:22,"504 13th St, Dallas, TX 75001" +154614,ThinkPad Laptop,1,999.99,01/17/19 11:13,"587 Main St, New York City, NY 10001" +154615,AA Batteries (4-pack),1,3.84,01/21/19 16:54,"732 Cedar St, Boston, MA 02215" +154616,Apple Airpods Headphones,1,150,01/28/19 07:31,"137 Madison St, San Francisco, CA 94016" +154617,Lightning Charging Cable,1,14.95,01/14/19 09:29,"13 4th St, Los Angeles, CA 90001" +154618,Lightning Charging Cable,1,14.95,01/29/19 09:51,"927 Chestnut St, New York City, NY 10001" +154619,AAA Batteries (4-pack),2,2.99,01/03/19 12:14,"463 14th St, Boston, MA 02215" +154620,AAA Batteries (4-pack),1,2.99,01/06/19 06:41,"228 13th St, Los Angeles, CA 90001" +154621,Vareebadd Phone,1,400,01/06/19 17:34,"170 Elm St, Seattle, WA 98101" +154622,AAA Batteries (4-pack),1,2.99,01/29/19 13:12,"292 Lakeview St, Atlanta, GA 30301" +154623,AAA Batteries (4-pack),1,2.99,01/26/19 16:45,"194 Ridge St, San Francisco, CA 94016" +154624,USB-C Charging Cable,1,11.95,01/10/19 00:01,"21 West St, Los Angeles, CA 90001" +154625,USB-C Charging Cable,1,11.95,01/12/19 13:56,"784 Maple St, Los Angeles, CA 90001" +154626,Apple Airpods Headphones,1,150,01/02/19 22:37,"333 West St, Atlanta, GA 30301" +154627,Apple Airpods Headphones,1,150,01/10/19 18:49,"140 South St, Dallas, TX 75001" +154628,AAA Batteries (4-pack),1,2.99,01/27/19 05:23,"681 8th St, Boston, MA 02215" +154629,AAA Batteries (4-pack),1,2.99,01/05/19 10:38,"944 Park St, Portland, OR 97035" +154630,20in Monitor,1,109.99,01/07/19 07:31,"981 12th St, Seattle, WA 98101" +154631,27in FHD Monitor,1,149.99,01/06/19 20:39,"225 1st St, Los Angeles, CA 90001" +154632,AAA Batteries (4-pack),2,2.99,01/20/19 09:10,"834 Church St, Seattle, WA 98101" +154633,Bose SoundSport Headphones,1,99.99,01/05/19 20:22,"951 8th St, Dallas, TX 75001" +154634,AAA Batteries (4-pack),1,2.99,01/31/19 22:50,"665 11th St, San Francisco, CA 94016" +154635,Bose SoundSport Headphones,1,99.99,01/27/19 23:38,"885 River St, San Francisco, CA 94016" +154636,27in FHD Monitor,1,149.99,01/26/19 08:13,"831 Main St, Atlanta, GA 30301" +154637,AA Batteries (4-pack),2,3.84,01/22/19 20:33,"750 Walnut St, Dallas, TX 75001" +154638,Google Phone,1,600,01/01/19 09:05,"253 11th St, Atlanta, GA 30301" +154638,USB-C Charging Cable,1,11.95,01/01/19 09:05,"253 11th St, Atlanta, GA 30301" +154639,Bose SoundSport Headphones,1,99.99,01/05/19 17:39,"137 10th St, Atlanta, GA 30301" +154640,Apple Airpods Headphones,1,150,01/03/19 09:14,"978 Park St, San Francisco, CA 94016" +154641,Bose SoundSport Headphones,1,99.99,01/09/19 13:45,"482 Sunset St, San Francisco, CA 94016" +154642,AAA Batteries (4-pack),2,2.99,01/07/19 11:17,"628 Washington St, Los Angeles, CA 90001" +154643,AAA Batteries (4-pack),2,2.99,01/30/19 21:56,"348 Jackson St, San Francisco, CA 94016" +154644,Apple Airpods Headphones,1,150,01/26/19 18:58,"630 Lincoln St, San Francisco, CA 94016" +154645,AAA Batteries (4-pack),1,2.99,01/29/19 15:44,"398 Hill St, Dallas, TX 75001" +154646,Bose SoundSport Headphones,1,99.99,01/13/19 09:48,"251 Spruce St, Los Angeles, CA 90001" +154647,USB-C Charging Cable,1,11.95,01/26/19 17:19,"763 Cedar St, New York City, NY 10001" +154648,ThinkPad Laptop,1,999.99,01/20/19 18:32,"803 1st St, San Francisco, CA 94016" +154649,USB-C Charging Cable,1,11.95,01/07/19 08:23,"743 Main St, San Francisco, CA 94016" +154650,USB-C Charging Cable,1,11.95,01/15/19 10:58,"18 9th St, Los Angeles, CA 90001" +154651,AA Batteries (4-pack),1,3.84,01/24/19 08:48,"170 Spruce St, New York City, NY 10001" +154652,Bose SoundSport Headphones,1,99.99,01/11/19 12:13,"31 Lincoln St, Dallas, TX 75001" +154653,Flatscreen TV,1,300,01/20/19 18:43,"360 Cedar St, San Francisco, CA 94016" +154654,Wired Headphones,1,11.99,01/16/19 16:36,"684 14th St, Boston, MA 02215" +154655,Lightning Charging Cable,1,14.95,01/19/19 19:09,"205 1st St, New York City, NY 10001" +154656,AAA Batteries (4-pack),1,2.99,01/11/19 16:13,"349 Sunset St, Dallas, TX 75001" +154657,iPhone,1,700,01/04/19 20:33,"538 Adams St, Atlanta, GA 30301" +154657,Apple Airpods Headphones,1,150,01/04/19 20:33,"538 Adams St, Atlanta, GA 30301" +154658,Lightning Charging Cable,1,14.95,01/29/19 09:08,"635 Spruce St, Boston, MA 02215" +154659,34in Ultrawide Monitor,1,379.99,01/06/19 05:12,"448 2nd St, San Francisco, CA 94016" +154660,AAA Batteries (4-pack),1,2.99,01/14/19 20:15,"586 Johnson St, Atlanta, GA 30301" +154661,ThinkPad Laptop,1,999.99,01/10/19 11:22,"886 North St, San Francisco, CA 94016" +154662,Google Phone,1,600,01/22/19 06:09,"621 Jackson St, Los Angeles, CA 90001" +154663,Bose SoundSport Headphones,1,99.99,01/10/19 20:02,"818 Maple St, San Francisco, CA 94016" +154664,Apple Airpods Headphones,1,150,01/19/19 17:46,"3 Adams St, Los Angeles, CA 90001" +154665,Google Phone,1,600,01/23/19 09:56,"394 Church St, Austin, TX 73301" +154665,Bose SoundSport Headphones,1,99.99,01/23/19 09:56,"394 Church St, Austin, TX 73301" +154666,Macbook Pro Laptop,1,1700,01/07/19 01:30,"147 West St, New York City, NY 10001" +154667,34in Ultrawide Monitor,1,379.99,01/25/19 15:40,"579 Lake St, Austin, TX 73301" +154668,Apple Airpods Headphones,1,150,01/13/19 13:28,"824 Cedar St, Boston, MA 02215" +154669,Apple Airpods Headphones,1,150,01/08/19 14:10,"312 Forest St, Atlanta, GA 30301" +154670,20in Monitor,1,109.99,01/23/19 08:30,"446 8th St, Dallas, TX 75001" +154671,27in FHD Monitor,1,149.99,01/10/19 08:13,"437 Hickory St, Atlanta, GA 30301" +154672,Lightning Charging Cable,1,14.95,01/04/19 20:48,"613 1st St, Austin, TX 73301" +154673,Apple Airpods Headphones,1,150,01/08/19 17:32,"846 Meadow St, Dallas, TX 75001" +154674,AAA Batteries (4-pack),1,2.99,01/26/19 19:08,"906 Madison St, Austin, TX 73301" +154675,USB-C Charging Cable,1,11.95,01/28/19 22:01,"982 Hill St, Los Angeles, CA 90001" +154676,Lightning Charging Cable,1,14.95,01/06/19 14:27,"579 12th St, Atlanta, GA 30301" +154677,Apple Airpods Headphones,1,150,01/04/19 15:18,"52 Cherry St, Boston, MA 02215" +154678,ThinkPad Laptop,1,999.99,01/29/19 17:12,"33 Walnut St, New York City, NY 10001" +154679,Wired Headphones,1,11.99,01/21/19 21:29,"102 Lakeview St, San Francisco, CA 94016" +154680,USB-C Charging Cable,1,11.95,01/22/19 15:23,"631 Cherry St, Boston, MA 02215" +154681,Wired Headphones,1,11.99,01/12/19 14:51,"120 Adams St, San Francisco, CA 94016" +154682,Wired Headphones,1,11.99,01/11/19 15:26,"810 14th St, New York City, NY 10001" +154683,Google Phone,1,600,01/25/19 21:22,"503 9th St, New York City, NY 10001" +154684,Lightning Charging Cable,1,14.95,01/27/19 05:04,"709 River St, San Francisco, CA 94016" +154685,Lightning Charging Cable,1,14.95,01/07/19 16:29,"485 6th St, Los Angeles, CA 90001" +154686,AAA Batteries (4-pack),1,2.99,01/29/19 21:14,"398 1st St, Boston, MA 02215" +154687,AA Batteries (4-pack),1,3.84,01/13/19 12:03,"914 Cherry St, Boston, MA 02215" +154688,AA Batteries (4-pack),1,3.84,01/13/19 18:34,"942 Lakeview St, San Francisco, CA 94016" +154689,Apple Airpods Headphones,1,150,01/09/19 18:34,"364 6th St, Boston, MA 02215" +154690,Lightning Charging Cable,1,14.95,01/13/19 11:42,"412 13th St, Boston, MA 02215" +154691,20in Monitor,1,109.99,01/08/19 01:10,"176 4th St, Portland, OR 97035" +154692,Lightning Charging Cable,1,14.95,01/04/19 20:29,"934 1st St, San Francisco, CA 94016" +154693,34in Ultrawide Monitor,1,379.99,01/14/19 10:48,"335 North St, Atlanta, GA 30301" +154694,Wired Headphones,1,11.99,01/25/19 15:20,"837 West St, Portland, OR 97035" +154695,Bose SoundSport Headphones,1,99.99,01/25/19 13:09,"287 10th St, Boston, MA 02215" +154696,Flatscreen TV,1,300,01/26/19 23:09,"721 13th St, San Francisco, CA 94016" +154697,Apple Airpods Headphones,1,150,01/07/19 12:49,"176 Forest St, Los Angeles, CA 90001" +154698,Bose SoundSport Headphones,1,99.99,01/03/19 22:19,"867 Willow St, Portland, ME 04101" +154699,AAA Batteries (4-pack),1,2.99,01/09/19 20:35,"194 14th St, Atlanta, GA 30301" +154700,Lightning Charging Cable,1,14.95,01/02/19 14:20,"282 Church St, San Francisco, CA 94016" +154701,Lightning Charging Cable,1,14.95,01/19/19 20:31,"271 Willow St, Portland, OR 97035" +154702,AAA Batteries (4-pack),2,2.99,01/31/19 20:29,"317 Elm St, Boston, MA 02215" +154703,AAA Batteries (4-pack),4,2.99,01/16/19 23:31,"18 Highland St, Los Angeles, CA 90001" +154704,USB-C Charging Cable,1,11.95,01/24/19 00:37,"275 Lake St, New York City, NY 10001" +154705,20in Monitor,1,109.99,01/13/19 18:33,"827 Walnut St, Austin, TX 73301" +154706,AA Batteries (4-pack),1,3.84,01/25/19 16:19,"782 11th St, Boston, MA 02215" +154707,27in 4K Gaming Monitor,1,389.99,01/24/19 20:36,"726 Lake St, Boston, MA 02215" +154708,Apple Airpods Headphones,1,150,01/01/19 17:43,"227 6th St, San Francisco, CA 94016" +154709,Wired Headphones,1,11.99,01/07/19 20:54,"224 Lakeview St, Portland, ME 04101" +154710,34in Ultrawide Monitor,1,379.99,01/19/19 10:26,"420 6th St, Seattle, WA 98101" +154711,AA Batteries (4-pack),1,3.84,01/04/19 08:54,"707 5th St, San Francisco, CA 94016" +154712,Apple Airpods Headphones,1,150,01/02/19 10:54,"896 West St, San Francisco, CA 94016" +154713,Lightning Charging Cable,2,14.95,01/19/19 17:54,"289 Johnson St, Seattle, WA 98101" +154714,34in Ultrawide Monitor,1,379.99,01/02/19 11:56,"823 Wilson St, Dallas, TX 75001" +154715,27in FHD Monitor,1,149.99,01/02/19 21:46,"83 Lakeview St, Seattle, WA 98101" +154716,USB-C Charging Cable,1,11.95,01/07/19 01:06,"667 Madison St, Seattle, WA 98101" +154717,USB-C Charging Cable,1,11.95,01/16/19 11:29,"161 10th St, Boston, MA 02215" +154718,Bose SoundSport Headphones,1,99.99,01/27/19 10:25,"395 Highland St, San Francisco, CA 94016" +154719,AA Batteries (4-pack),1,3.84,01/25/19 11:53,"587 River St, Atlanta, GA 30301" +154720,Lightning Charging Cable,1,14.95,01/19/19 18:05,"33 Lake St, San Francisco, CA 94016" +154721,Bose SoundSport Headphones,1,99.99,01/18/19 16:53,"287 River St, Dallas, TX 75001" +154722,LG Dryer,1,600.0,01/20/19 22:54,"475 Dogwood St, Dallas, TX 75001" +154723,AA Batteries (4-pack),1,3.84,01/11/19 13:04,"513 Jefferson St, Los Angeles, CA 90001" +154724,Apple Airpods Headphones,1,150,01/20/19 17:42,"378 Chestnut St, San Francisco, CA 94016" +154725,AA Batteries (4-pack),1,3.84,01/02/19 12:04,"514 Hickory St, Dallas, TX 75001" +154726,27in FHD Monitor,1,149.99,01/21/19 16:08,"708 6th St, San Francisco, CA 94016" +154727,ThinkPad Laptop,1,999.99,01/20/19 08:48,"580 Hill St, Los Angeles, CA 90001" +154728,Lightning Charging Cable,1,14.95,01/25/19 22:52,"677 Adams St, Los Angeles, CA 90001" +154729,Lightning Charging Cable,1,14.95,01/08/19 16:14,"209 11th St, San Francisco, CA 94016" +154730,Wired Headphones,1,11.99,01/13/19 14:19,"496 6th St, Seattle, WA 98101" +154731,USB-C Charging Cable,1,11.95,01/31/19 15:37,"646 Washington St, San Francisco, CA 94016" +154732,USB-C Charging Cable,1,11.95,01/26/19 08:40,"822 Walnut St, San Francisco, CA 94016" +154733,USB-C Charging Cable,1,11.95,01/11/19 00:58,"419 14th St, Los Angeles, CA 90001" +154734,Wired Headphones,1,11.99,01/16/19 06:38,"644 Sunset St, Portland, OR 97035" +154735,AAA Batteries (4-pack),1,2.99,01/28/19 20:08,"362 Elm St, Boston, MA 02215" +154736,AA Batteries (4-pack),3,3.84,01/31/19 00:53,"247 Jackson St, Portland, OR 97035" +154737,Apple Airpods Headphones,1,150,01/25/19 11:20,"588 Adams St, Atlanta, GA 30301" +154738,Apple Airpods Headphones,1,150,01/24/19 09:18,"870 Walnut St, Portland, OR 97035" +154739,Wired Headphones,1,11.99,01/29/19 21:41,"989 Main St, Atlanta, GA 30301" +154740,iPhone,1,700,01/26/19 22:07,"807 Hickory St, New York City, NY 10001" +154741,Bose SoundSport Headphones,1,99.99,01/06/19 08:29,"644 Dogwood St, Los Angeles, CA 90001" +154742,Macbook Pro Laptop,1,1700,01/23/19 16:01,"34 West St, Boston, MA 02215" +154743,AA Batteries (4-pack),1,3.84,01/17/19 17:49,"46 Lincoln St, Seattle, WA 98101" +154744,Vareebadd Phone,1,400,01/14/19 08:56,"359 Lincoln St, Portland, OR 97035" +154744,USB-C Charging Cable,3,11.95,01/14/19 08:56,"359 Lincoln St, Portland, OR 97035" +154745,Apple Airpods Headphones,1,150,01/27/19 17:56,"260 7th St, Portland, OR 97035" +154746,Apple Airpods Headphones,1,150,01/16/19 14:45,"411 Jefferson St, San Francisco, CA 94016" +154747,AA Batteries (4-pack),1,3.84,01/11/19 20:17,"701 2nd St, San Francisco, CA 94016" +154748,Lightning Charging Cable,1,14.95,01/17/19 13:07,"457 South St, Dallas, TX 75001" +154749,27in FHD Monitor,1,149.99,01/29/19 09:24,"6 8th St, Seattle, WA 98101" +154750,AA Batteries (4-pack),1,3.84,01/01/19 09:06,"147 11th St, New York City, NY 10001" +154751,Apple Airpods Headphones,1,150,01/18/19 22:37,"819 Elm St, San Francisco, CA 94016" +154752,Lightning Charging Cable,1,14.95,01/25/19 04:00,"176 Lake St, Atlanta, GA 30301" +154753,27in FHD Monitor,1,149.99,01/11/19 09:27,"129 11th St, San Francisco, CA 94016" +154754,Macbook Pro Laptop,1,1700,01/21/19 13:03,"187 Lake St, San Francisco, CA 94016" +154755,Apple Airpods Headphones,1,150,01/08/19 08:27,"942 8th St, Dallas, TX 75001" +154756,AA Batteries (4-pack),1,3.84,01/13/19 21:33,"965 Maple St, San Francisco, CA 94016" +154757,iPhone,1,700,01/16/19 18:07,"392 River St, Dallas, TX 75001" +154758,USB-C Charging Cable,1,11.95,01/23/19 19:50,"92 11th St, San Francisco, CA 94016" +154759,Lightning Charging Cable,1,14.95,01/03/19 13:32,"594 River St, Boston, MA 02215" +154760,AA Batteries (4-pack),1,3.84,01/17/19 20:58,"672 Highland St, San Francisco, CA 94016" +154761,AA Batteries (4-pack),1,3.84,01/16/19 17:21,"746 Forest St, Portland, OR 97035" +154762,USB-C Charging Cable,1,11.95,01/23/19 21:10,"611 Jackson St, Portland, OR 97035" +154763,Wired Headphones,1,11.99,01/20/19 13:58,"350 South St, New York City, NY 10001" +154764,Lightning Charging Cable,1,14.95,01/27/19 18:34,"739 9th St, Atlanta, GA 30301" +154765,34in Ultrawide Monitor,1,379.99,01/30/19 13:04,"646 Adams St, San Francisco, CA 94016" +154766,AAA Batteries (4-pack),1,2.99,01/22/19 21:05,"573 11th St, Austin, TX 73301" +154767,Macbook Pro Laptop,1,1700,01/26/19 19:14,"115 Highland St, San Francisco, CA 94016" +154768,Lightning Charging Cable,1,14.95,01/25/19 00:28,"424 North St, Los Angeles, CA 90001" +154769,Bose SoundSport Headphones,1,99.99,01/29/19 16:01,"689 Forest St, San Francisco, CA 94016" +154770,Wired Headphones,1,11.99,01/30/19 09:43,"1 10th St, Seattle, WA 98101" +154771,Flatscreen TV,1,300,01/13/19 17:57,"136 North St, San Francisco, CA 94016" +154772,Lightning Charging Cable,2,14.95,01/08/19 09:22,"866 10th St, San Francisco, CA 94016" +154773,Bose SoundSport Headphones,1,99.99,01/12/19 15:41,"906 Maple St, New York City, NY 10001" +154774,iPhone,1,700,01/08/19 04:19,"840 5th St, New York City, NY 10001" +154775,AAA Batteries (4-pack),1,2.99,01/14/19 15:18,"828 6th St, Atlanta, GA 30301" +154776,Lightning Charging Cable,1,14.95,01/07/19 17:58,"318 5th St, Atlanta, GA 30301" +154777,Flatscreen TV,1,300,01/11/19 08:07,"493 Church St, San Francisco, CA 94016" +154778,34in Ultrawide Monitor,1,379.99,01/28/19 04:41,"605 Wilson St, San Francisco, CA 94016" +154779,Wired Headphones,1,11.99,01/31/19 15:03,"712 Lincoln St, San Francisco, CA 94016" +154780,Bose SoundSport Headphones,1,99.99,01/07/19 07:24,"280 Dogwood St, San Francisco, CA 94016" +154781,Bose SoundSport Headphones,1,99.99,01/14/19 07:46,"882 Elm St, San Francisco, CA 94016" +154782,Lightning Charging Cable,1,14.95,01/08/19 23:56,"486 9th St, San Francisco, CA 94016" +154783,AAA Batteries (4-pack),1,2.99,01/15/19 09:12,"745 9th St, Dallas, TX 75001" +154783,Bose SoundSport Headphones,1,99.99,01/15/19 09:12,"745 9th St, Dallas, TX 75001" +154784,AA Batteries (4-pack),1,3.84,01/23/19 19:41,"393 Washington St, Los Angeles, CA 90001" +154785,AAA Batteries (4-pack),2,2.99,01/18/19 10:27,"730 9th St, Los Angeles, CA 90001" +154786,Bose SoundSport Headphones,1,99.99,01/13/19 17:36,"46 1st St, Boston, MA 02215" +154787,Macbook Pro Laptop,1,1700,01/09/19 22:23,"434 Walnut St, Seattle, WA 98101" +154788,AA Batteries (4-pack),1,3.84,01/08/19 16:22,"770 Main St, Austin, TX 73301" +154789,Lightning Charging Cable,1,14.95,01/07/19 11:15,"376 Maple St, Dallas, TX 75001" +154790,AA Batteries (4-pack),1,3.84,01/21/19 13:44,"820 Meadow St, Atlanta, GA 30301" +154791,Lightning Charging Cable,1,14.95,01/14/19 20:38,"200 Main St, Dallas, TX 75001" +154792,Wired Headphones,1,11.99,01/22/19 08:00,"703 12th St, Atlanta, GA 30301" +154793,20in Monitor,1,109.99,01/21/19 07:52,"596 Lake St, New York City, NY 10001" +154794,AA Batteries (4-pack),3,3.84,01/02/19 14:33,"460 12th St, Atlanta, GA 30301" +154795,Wired Headphones,1,11.99,01/28/19 21:32,"50 Main St, San Francisco, CA 94016" +154796,Bose SoundSport Headphones,1,99.99,01/09/19 19:31,"194 8th St, New York City, NY 10001" +154797,34in Ultrawide Monitor,1,379.99,01/31/19 15:29,"561 12th St, Los Angeles, CA 90001" +154798,USB-C Charging Cable,1,11.95,01/02/19 09:02,"797 11th St, San Francisco, CA 94016" +154799,Apple Airpods Headphones,1,150,01/09/19 11:21,"350 Forest St, Los Angeles, CA 90001" +154800,USB-C Charging Cable,1,11.95,01/14/19 19:48,"408 Hickory St, Los Angeles, CA 90001" +154801,Bose SoundSport Headphones,1,99.99,01/30/19 10:52,"263 Jackson St, San Francisco, CA 94016" +154802,34in Ultrawide Monitor,1,379.99,01/04/19 01:54,"72 11th St, Los Angeles, CA 90001" +154803,AAA Batteries (4-pack),1,2.99,01/12/19 23:09,"175 6th St, New York City, NY 10001" +154804,Wired Headphones,1,11.99,01/28/19 12:02,"749 Elm St, Seattle, WA 98101" +154805,ThinkPad Laptop,1,999.99,01/01/19 14:36,"997 10th St, San Francisco, CA 94016" +154806,Apple Airpods Headphones,1,150,01/01/19 11:28,"324 2nd St, San Francisco, CA 94016" +154807,AAA Batteries (4-pack),1,2.99,01/08/19 12:48,"107 Sunset St, Los Angeles, CA 90001" +154808,AA Batteries (4-pack),1,3.84,01/14/19 22:29,"993 Spruce St, Austin, TX 73301" +154809,Wired Headphones,1,11.99,01/26/19 17:32,"245 12th St, Dallas, TX 75001" +154810,AAA Batteries (4-pack),4,2.99,01/06/19 20:36,"749 Pine St, San Francisco, CA 94016" +154811,Wired Headphones,1,11.99,01/17/19 17:50,"597 Willow St, New York City, NY 10001" +154812,AAA Batteries (4-pack),2,2.99,01/07/19 15:40,"69 Hickory St, Los Angeles, CA 90001" +154813,USB-C Charging Cable,1,11.95,01/04/19 11:53,"465 Chestnut St, San Francisco, CA 94016" +154814,USB-C Charging Cable,1,11.95,01/30/19 14:57,"124 Washington St, New York City, NY 10001" +154815,Lightning Charging Cable,1,14.95,01/28/19 00:11,"399 Highland St, Los Angeles, CA 90001" +154815,AA Batteries (4-pack),1,3.84,01/28/19 00:11,"399 Highland St, Los Angeles, CA 90001" +154816,iPhone,1,700,01/03/19 22:53,"321 Washington St, San Francisco, CA 94016" +154816,Apple Airpods Headphones,1,150,01/03/19 22:53,"321 Washington St, San Francisco, CA 94016" +154817,Wired Headphones,1,11.99,01/11/19 22:16,"224 12th St, Austin, TX 73301" +154818,Apple Airpods Headphones,1,150,01/08/19 01:20,"393 Willow St, San Francisco, CA 94016" +154819,34in Ultrawide Monitor,1,379.99,01/22/19 16:58,"981 Pine St, Atlanta, GA 30301" +154820,27in FHD Monitor,1,149.99,01/27/19 13:09,"911 Jackson St, Seattle, WA 98101" +154821,AAA Batteries (4-pack),1,2.99,01/25/19 18:12,"548 10th St, New York City, NY 10001" +154822,Lightning Charging Cable,1,14.95,01/13/19 19:02,"333 Lake St, San Francisco, CA 94016" +154823,34in Ultrawide Monitor,1,379.99,01/21/19 22:25,"3 Main St, San Francisco, CA 94016" +154824,Apple Airpods Headphones,1,150,01/30/19 05:55,"454 6th St, San Francisco, CA 94016" +154825,USB-C Charging Cable,1,11.95,01/10/19 11:32,"891 Pine St, New York City, NY 10001" +154826,Wired Headphones,2,11.99,01/09/19 10:52,"205 14th St, Atlanta, GA 30301" +154827,iPhone,1,700,01/01/19 21:03,"869 North St, Boston, MA 02215" +154828,AA Batteries (4-pack),1,3.84,01/20/19 20:55,"490 Center St, Atlanta, GA 30301" +154829,AAA Batteries (4-pack),3,2.99,01/09/19 07:43,"422 Park St, San Francisco, CA 94016" +154830,Lightning Charging Cable,1,14.95,01/07/19 15:53,"686 2nd St, Atlanta, GA 30301" +154831,LG Dryer,1,600.0,01/03/19 07:39,"740 Elm St, San Francisco, CA 94016" +154832,Bose SoundSport Headphones,1,99.99,01/21/19 22:36,"442 Lakeview St, Atlanta, GA 30301" +154833,Lightning Charging Cable,1,14.95,01/25/19 12:49,"678 River St, Atlanta, GA 30301" +154834,Bose SoundSport Headphones,1,99.99,01/27/19 14:26,"69 12th St, Atlanta, GA 30301" +154835,34in Ultrawide Monitor,1,379.99,01/09/19 18:04,"794 1st St, Los Angeles, CA 90001" +154836,Lightning Charging Cable,1,14.95,01/01/19 14:01,"933 Johnson St, New York City, NY 10001" +154837,Macbook Pro Laptop,1,1700,01/01/19 09:33,"392 Park St, Boston, MA 02215" +154838,Apple Airpods Headphones,1,150,01/15/19 20:21,"953 Chestnut St, Austin, TX 73301" +154839,27in 4K Gaming Monitor,1,389.99,01/04/19 14:22,"409 1st St, New York City, NY 10001" +154840,Google Phone,1,600,01/04/19 07:34,"737 Maple St, New York City, NY 10001" +154841,AAA Batteries (4-pack),1,2.99,01/01/19 09:56,"264 South St, San Francisco, CA 94016" +154842,AAA Batteries (4-pack),1,2.99,01/20/19 21:22,"142 1st St, Seattle, WA 98101" +154843,Apple Airpods Headphones,1,150,01/11/19 12:00,"169 Sunset St, Portland, ME 04101" +154844,USB-C Charging Cable,1,11.95,01/17/19 16:02,"550 Center St, Los Angeles, CA 90001" +154845,USB-C Charging Cable,1,11.95,01/04/19 15:43,"198 Johnson St, San Francisco, CA 94016" +154846,AA Batteries (4-pack),1,3.84,01/21/19 21:50,"653 Madison St, Dallas, TX 75001" +154847,iPhone,1,700,01/07/19 20:41,"925 2nd St, Los Angeles, CA 90001" +154847,Lightning Charging Cable,1,14.95,01/07/19 20:41,"925 2nd St, Los Angeles, CA 90001" +154848,20in Monitor,1,109.99,01/11/19 11:49,"807 Chestnut St, Los Angeles, CA 90001" +154849,Wired Headphones,1,11.99,01/03/19 11:35,"422 Madison St, Austin, TX 73301" +154850,AA Batteries (4-pack),1,3.84,01/13/19 18:41,"98 14th St, Seattle, WA 98101" +154851,Apple Airpods Headphones,1,150,01/20/19 20:33,"722 Lakeview St, New York City, NY 10001" +154852,USB-C Charging Cable,2,11.95,01/16/19 14:42,"512 12th St, New York City, NY 10001" +154853,AAA Batteries (4-pack),3,2.99,01/27/19 13:59,"138 Lincoln St, Boston, MA 02215" +154854,iPhone,1,700,01/03/19 13:06,"894 5th St, New York City, NY 10001" +154855,Bose SoundSport Headphones,1,99.99,01/20/19 11:00,"771 Cherry St, Los Angeles, CA 90001" +154856,Lightning Charging Cable,1,14.95,01/10/19 17:03,"650 North St, New York City, NY 10001" +154857,Apple Airpods Headphones,1,150,01/26/19 08:08,"601 Forest St, Los Angeles, CA 90001" +154858,Lightning Charging Cable,1,14.95,01/17/19 23:05,"150 Cedar St, Austin, TX 73301" +154859,Lightning Charging Cable,2,14.95,01/15/19 13:36,"81 8th St, Boston, MA 02215" +154860,34in Ultrawide Monitor,1,379.99,01/17/19 20:39,"698 Forest St, Los Angeles, CA 90001" +154861,Wired Headphones,1,11.99,01/03/19 15:19,"253 Adams St, New York City, NY 10001" +,,,,, +154862,AA Batteries (4-pack),1,3.84,01/14/19 15:31,"308 South St, Dallas, TX 75001" +154863,USB-C Charging Cable,1,11.95,01/26/19 14:26,"753 Main St, Los Angeles, CA 90001" +154864,20in Monitor,1,109.99,01/21/19 05:52,"287 Lincoln St, San Francisco, CA 94016" +154865,Lightning Charging Cable,1,14.95,01/15/19 14:46,"549 Center St, New York City, NY 10001" +154866,USB-C Charging Cable,1,11.95,01/11/19 14:19,"356 Ridge St, San Francisco, CA 94016" +154867,ThinkPad Laptop,1,999.99,01/14/19 14:47,"477 Dogwood St, Seattle, WA 98101" +154868,USB-C Charging Cable,2,11.95,01/24/19 14:32,"718 Jefferson St, Dallas, TX 75001" +154869,iPhone,1,700,01/03/19 09:34,"973 4th St, San Francisco, CA 94016" +154869,Wired Headphones,1,11.99,01/03/19 09:34,"973 4th St, San Francisco, CA 94016" +154870,27in FHD Monitor,1,149.99,01/15/19 07:15,"664 Hickory St, Portland, OR 97035" +154871,Apple Airpods Headphones,1,150,01/28/19 09:50,"684 Chestnut St, Dallas, TX 75001" +154872,AAA Batteries (4-pack),2,2.99,01/17/19 17:07,"636 4th St, San Francisco, CA 94016" +154873,Wired Headphones,1,11.99,01/09/19 13:26,"979 Center St, San Francisco, CA 94016" +154874,27in 4K Gaming Monitor,1,389.99,01/23/19 16:08,"628 North St, Portland, OR 97035" +154875,Wired Headphones,1,11.99,01/23/19 14:56,"840 10th St, Atlanta, GA 30301" +154876,Lightning Charging Cable,1,14.95,01/14/19 12:49,"115 Lincoln St, Seattle, WA 98101" +154877,Bose SoundSport Headphones,1,99.99,01/24/19 22:10,"824 Jackson St, New York City, NY 10001" +154878,27in 4K Gaming Monitor,1,389.99,01/24/19 14:24,"505 Hickory St, Seattle, WA 98101" +154879,Lightning Charging Cable,1,14.95,01/28/19 17:03,"971 Main St, Dallas, TX 75001" +154880,AA Batteries (4-pack),1,3.84,01/11/19 08:59,"765 West St, Los Angeles, CA 90001" +154880,27in FHD Monitor,1,149.99,01/11/19 08:59,"765 West St, Los Angeles, CA 90001" +154881,Apple Airpods Headphones,1,150,01/08/19 21:36,"353 Wilson St, Portland, OR 97035" +154882,USB-C Charging Cable,1,11.95,01/22/19 11:36,"848 12th St, Boston, MA 02215" +154883,AA Batteries (4-pack),1,3.84,01/23/19 15:15,"575 6th St, Los Angeles, CA 90001" +154884,34in Ultrawide Monitor,1,379.99,01/05/19 18:54,"929 Forest St, Portland, OR 97035" +154885,Wired Headphones,1,11.99,01/22/19 19:54,"557 Park St, Boston, MA 02215" +154886,AAA Batteries (4-pack),1,2.99,01/29/19 15:05,"253 4th St, Portland, OR 97035" +154887,iPhone,1,700,01/24/19 12:03,"433 Maple St, Los Angeles, CA 90001" +154887,AA Batteries (4-pack),1,3.84,01/24/19 12:03,"433 Maple St, Los Angeles, CA 90001" +154888,USB-C Charging Cable,1,11.95,01/26/19 20:49,"900 West St, New York City, NY 10001" +154889,iPhone,1,700,01/26/19 09:46,"926 Spruce St, San Francisco, CA 94016" +154890,27in 4K Gaming Monitor,1,389.99,01/20/19 23:36,"643 5th St, San Francisco, CA 94016" +154891,Wired Headphones,1,11.99,01/06/19 13:34,"74 Lakeview St, Los Angeles, CA 90001" +154892,Bose SoundSport Headphones,1,99.99,01/09/19 21:04,"127 Washington St, Los Angeles, CA 90001" +154893,Bose SoundSport Headphones,1,99.99,01/12/19 02:03,"365 Pine St, San Francisco, CA 94016" +154894,20in Monitor,1,109.99,01/25/19 01:02,"971 2nd St, Los Angeles, CA 90001" +154895,USB-C Charging Cable,1,11.95,01/06/19 09:57,"560 Forest St, Los Angeles, CA 90001" +154896,Lightning Charging Cable,1,14.95,01/21/19 14:51,"545 Jefferson St, Atlanta, GA 30301" +154897,Wired Headphones,1,11.99,01/16/19 10:50,"203 12th St, Los Angeles, CA 90001" +154898,AA Batteries (4-pack),1,3.84,01/27/19 22:03,"221 North St, Austin, TX 73301" +154899,34in Ultrawide Monitor,1,379.99,01/11/19 12:17,"106 River St, Seattle, WA 98101" +154900,USB-C Charging Cable,1,11.95,01/25/19 10:13,"98 13th St, San Francisco, CA 94016" +154901,Apple Airpods Headphones,1,150,01/03/19 08:27,"166 Center St, Los Angeles, CA 90001" +154902,27in FHD Monitor,1,149.99,01/12/19 08:11,"873 6th St, New York City, NY 10001" +154903,Flatscreen TV,1,300,01/24/19 06:28,"608 Church St, New York City, NY 10001" +154904,AAA Batteries (4-pack),1,2.99,01/16/19 13:07,"145 Lake St, Atlanta, GA 30301" +154905,iPhone,1,700,01/31/19 13:09,"241 West St, Los Angeles, CA 90001" +154906,Apple Airpods Headphones,1,150,01/02/19 12:00,"918 10th St, New York City, NY 10001" +,,,,, +154907,AA Batteries (4-pack),2,3.84,01/15/19 15:13,"455 Hickory St, San Francisco, CA 94016" +154908,Lightning Charging Cable,1,14.95,01/18/19 23:33,"886 Park St, Los Angeles, CA 90001" +154909,AA Batteries (4-pack),1,3.84,01/26/19 05:59,"518 Chestnut St, Austin, TX 73301" +154910,Wired Headphones,1,11.99,01/27/19 14:15,"182 Chestnut St, Boston, MA 02215" +154911,Wired Headphones,1,11.99,01/11/19 12:18,"445 2nd St, New York City, NY 10001" +154912,27in FHD Monitor,1,149.99,01/05/19 08:28,"646 Lake St, Dallas, TX 75001" +154913,AA Batteries (4-pack),2,3.84,01/10/19 21:28,"233 Lakeview St, Dallas, TX 75001" +154914,Bose SoundSport Headphones,1,99.99,01/29/19 20:57,"13 5th St, San Francisco, CA 94016" +154915,Vareebadd Phone,1,400,01/13/19 18:27,"398 Forest St, New York City, NY 10001" +154916,Lightning Charging Cable,1,14.95,01/09/19 13:31,"223 10th St, New York City, NY 10001" +154917,Bose SoundSport Headphones,1,99.99,01/31/19 11:22,"940 Lakeview St, San Francisco, CA 94016" +154918,USB-C Charging Cable,2,11.95,01/25/19 21:23,"672 Dogwood St, Austin, TX 73301" +154919,27in FHD Monitor,1,149.99,01/03/19 12:56,"591 Lakeview St, Los Angeles, CA 90001" +154920,AA Batteries (4-pack),2,3.84,01/28/19 21:12,"225 14th St, Los Angeles, CA 90001" +154920,Bose SoundSport Headphones,1,99.99,01/28/19 21:12,"225 14th St, Los Angeles, CA 90001" +154921,Lightning Charging Cable,1,14.95,01/29/19 17:00,"153 14th St, San Francisco, CA 94016" +154922,USB-C Charging Cable,2,11.95,01/14/19 20:15,"46 Center St, Portland, OR 97035" +154923,Bose SoundSport Headphones,1,99.99,01/14/19 09:07,"605 9th St, Los Angeles, CA 90001" +154924,27in FHD Monitor,1,149.99,01/30/19 21:01,"406 Maple St, Dallas, TX 75001" +154924,Lightning Charging Cable,1,14.95,01/30/19 21:01,"406 Maple St, Dallas, TX 75001" +154925,USB-C Charging Cable,1,11.95,01/30/19 11:42,"179 Spruce St, San Francisco, CA 94016" +154926,27in FHD Monitor,1,149.99,01/26/19 00:40,"101 Cherry St, San Francisco, CA 94016" +154927,USB-C Charging Cable,1,11.95,01/08/19 13:11,"491 Walnut St, Los Angeles, CA 90001" +154928,Lightning Charging Cable,1,14.95,01/25/19 19:52,"173 Ridge St, Los Angeles, CA 90001" +154929,AA Batteries (4-pack),3,3.84,01/21/19 09:33,"231 Pine St, Atlanta, GA 30301" +154930,Vareebadd Phone,1,400,01/14/19 21:43,"519 10th St, Boston, MA 02215" +154930,USB-C Charging Cable,1,11.95,01/14/19 21:43,"519 10th St, Boston, MA 02215" +154930,Wired Headphones,1,11.99,01/14/19 21:43,"519 10th St, Boston, MA 02215" +154931,27in 4K Gaming Monitor,1,389.99,01/16/19 13:49,"901 Walnut St, San Francisco, CA 94016" +154932,AAA Batteries (4-pack),1,2.99,01/08/19 12:10,"443 1st St, Los Angeles, CA 90001" +154933,Google Phone,1,600,01/23/19 18:19,"398 1st St, Dallas, TX 75001" +154933,Bose SoundSport Headphones,1,99.99,01/23/19 18:19,"398 1st St, Dallas, TX 75001" +154934,AAA Batteries (4-pack),1,2.99,01/03/19 16:11,"588 North St, Dallas, TX 75001" +154935,AA Batteries (4-pack),1,3.84,01/12/19 12:27,"56 Hickory St, Austin, TX 73301" +154936,Flatscreen TV,1,300,01/27/19 11:42,"934 14th St, Los Angeles, CA 90001" +154937,Wired Headphones,1,11.99,01/18/19 17:28,"54 Washington St, San Francisco, CA 94016" +154938,iPhone,1,700,01/30/19 13:23,"503 9th St, Boston, MA 02215" +154939,Lightning Charging Cable,1,14.95,01/16/19 09:40,"985 4th St, Atlanta, GA 30301" +154940,Apple Airpods Headphones,1,150,01/10/19 10:49,"109 Willow St, Los Angeles, CA 90001" +154941,AAA Batteries (4-pack),1,2.99,01/23/19 13:14,"205 Park St, San Francisco, CA 94016" +154942,27in FHD Monitor,1,149.99,01/25/19 08:11,"744 12th St, Portland, OR 97035" +154943,Flatscreen TV,1,300,01/01/19 17:11,"205 Forest St, Boston, MA 02215" +154944,Apple Airpods Headphones,1,150,01/29/19 18:53,"111 Spruce St, San Francisco, CA 94016" +154945,AA Batteries (4-pack),2,3.84,01/03/19 12:19,"224 Church St, San Francisco, CA 94016" +154946,34in Ultrawide Monitor,1,379.99,01/20/19 00:11,"498 Cherry St, San Francisco, CA 94016" +154947,ThinkPad Laptop,1,999.99,01/25/19 10:50,"890 Spruce St, Dallas, TX 75001" +154948,ThinkPad Laptop,1,999.99,01/25/19 07:53,"516 9th St, Dallas, TX 75001" +154949,USB-C Charging Cable,1,11.95,01/17/19 07:21,"805 Main St, Dallas, TX 75001" +154950,27in FHD Monitor,1,149.99,01/20/19 09:58,"350 Maple St, Portland, OR 97035" +154951,USB-C Charging Cable,1,11.95,01/27/19 18:07,"902 6th St, San Francisco, CA 94016" +154952,Flatscreen TV,1,300,01/12/19 22:41,"503 Sunset St, Dallas, TX 75001" +154953,AAA Batteries (4-pack),1,2.99,01/06/19 17:48,"709 Hill St, San Francisco, CA 94016" +154954,iPhone,1,700,01/03/19 13:05,"466 South St, Atlanta, GA 30301" +154955,Apple Airpods Headphones,1,150,01/10/19 20:51,"73 2nd St, Austin, TX 73301" +154956,Wired Headphones,1,11.99,01/14/19 19:06,"658 11th St, Portland, OR 97035" +154957,Lightning Charging Cable,1,14.95,01/14/19 09:43,"380 Park St, Atlanta, GA 30301" +154958,Wired Headphones,1,11.99,01/18/19 09:21,"167 9th St, Seattle, WA 98101" +154959,AA Batteries (4-pack),1,3.84,01/31/19 09:29,"483 14th St, Boston, MA 02215" +154960,AA Batteries (4-pack),1,3.84,01/16/19 20:35,"942 Center St, Los Angeles, CA 90001" +154961,27in 4K Gaming Monitor,1,389.99,01/10/19 10:12,"838 Hickory St, Los Angeles, CA 90001" +154962,20in Monitor,1,109.99,01/18/19 19:13,"939 Church St, Portland, OR 97035" +154963,AA Batteries (4-pack),1,3.84,01/06/19 09:01,"344 Lincoln St, Los Angeles, CA 90001" +154964,Flatscreen TV,1,300,01/30/19 19:19,"259 Cedar St, Los Angeles, CA 90001" +154965,Bose SoundSport Headphones,1,99.99,01/26/19 10:38,"793 Hickory St, Los Angeles, CA 90001" +154966,Macbook Pro Laptop,1,1700,01/11/19 22:10,"684 Hill St, Seattle, WA 98101" +154967,Lightning Charging Cable,1,14.95,01/06/19 13:20,"659 11th St, Atlanta, GA 30301" +154968,USB-C Charging Cable,1,11.95,01/03/19 06:53,"900 Lincoln St, Portland, OR 97035" +154969,Bose SoundSport Headphones,1,99.99,01/24/19 18:07,"424 Park St, Los Angeles, CA 90001" +154970,27in FHD Monitor,1,149.99,01/02/19 17:38,"146 Madison St, Portland, ME 04101" +154971,Macbook Pro Laptop,1,1700,01/18/19 09:29,"258 Jefferson St, Los Angeles, CA 90001" +154972,USB-C Charging Cable,1,11.95,01/12/19 22:22,"566 Lakeview St, Los Angeles, CA 90001" +154973,AAA Batteries (4-pack),2,2.99,01/07/19 15:16,"200 Center St, Dallas, TX 75001" +154974,ThinkPad Laptop,1,999.99,01/03/19 18:13,"370 Dogwood St, Atlanta, GA 30301" +154975,USB-C Charging Cable,1,11.95,01/26/19 14:10,"825 9th St, San Francisco, CA 94016" +154976,AA Batteries (4-pack),2,3.84,01/11/19 01:24,"916 Cedar St, Dallas, TX 75001" +154977,Bose SoundSport Headphones,1,99.99,01/24/19 17:05,"654 Wilson St, Austin, TX 73301" +154978,Flatscreen TV,1,300,01/03/19 09:49,"690 Cherry St, Atlanta, GA 30301" +154979,USB-C Charging Cable,1,11.95,01/25/19 13:49,"615 Highland St, Los Angeles, CA 90001" +154980,Lightning Charging Cable,1,14.95,01/19/19 19:47,"558 Willow St, New York City, NY 10001" +154981,27in FHD Monitor,1,149.99,01/07/19 19:41,"780 13th St, Portland, OR 97035" +154982,USB-C Charging Cable,1,11.95,01/28/19 18:29,"27 Forest St, San Francisco, CA 94016" +154983,AA Batteries (4-pack),2,3.84,01/07/19 22:41,"277 Maple St, Seattle, WA 98101" +154984,AA Batteries (4-pack),1,3.84,01/05/19 13:50,"187 Sunset St, Portland, OR 97035" +154985,ThinkPad Laptop,1,999.99,01/01/19 20:22,"121 Wilson St, Los Angeles, CA 90001" +154986,USB-C Charging Cable,1,11.95,01/19/19 08:56,"777 Jackson St, Austin, TX 73301" +154987,AA Batteries (4-pack),1,3.84,01/08/19 13:59,"470 Johnson St, Dallas, TX 75001" +154988,ThinkPad Laptop,1,999.99,01/23/19 15:58,"959 Lincoln St, New York City, NY 10001" +154989,Wired Headphones,1,11.99,01/18/19 15:45,"454 10th St, Atlanta, GA 30301" +154990,Apple Airpods Headphones,1,150,01/05/19 11:16,"266 12th St, Seattle, WA 98101" +154991,Wired Headphones,1,11.99,01/06/19 13:06,"5 11th St, San Francisco, CA 94016" +154991,USB-C Charging Cable,1,11.95,01/06/19 13:06,"5 11th St, San Francisco, CA 94016" +154992,34in Ultrawide Monitor,1,379.99,01/08/19 11:41,"313 Church St, New York City, NY 10001" +154993,Wired Headphones,3,11.99,01/26/19 10:30,"483 Sunset St, New York City, NY 10001" +154994,USB-C Charging Cable,1,11.95,01/07/19 20:23,"809 2nd St, San Francisco, CA 94016" +154995,USB-C Charging Cable,1,11.95,01/16/19 23:08,"151 Highland St, San Francisco, CA 94016" +154996,Lightning Charging Cable,1,14.95,01/24/19 11:12,"77 14th St, Seattle, WA 98101" +154997,Lightning Charging Cable,1,14.95,01/09/19 21:07,"933 Center St, Los Angeles, CA 90001" +154998,AA Batteries (4-pack),2,3.84,01/03/19 00:46,"129 4th St, New York City, NY 10001" +154999,AA Batteries (4-pack),5,3.84,01/22/19 18:22,"500 West St, San Francisco, CA 94016" +155000,Bose SoundSport Headphones,1,99.99,01/25/19 15:08,"535 Jefferson St, Austin, TX 73301" +155001,AA Batteries (4-pack),1,3.84,01/02/19 14:34,"547 4th St, San Francisco, CA 94016" +155002,Lightning Charging Cable,1,14.95,01/09/19 21:50,"247 2nd St, Boston, MA 02215" +155003,AA Batteries (4-pack),1,3.84,01/07/19 11:08,"736 Maple St, New York City, NY 10001" +155004,Bose SoundSport Headphones,1,99.99,01/09/19 12:28,"250 Madison St, New York City, NY 10001" +155005,Bose SoundSport Headphones,1,99.99,01/18/19 16:07,"747 North St, San Francisco, CA 94016" +155006,AA Batteries (4-pack),3,3.84,01/03/19 22:59,"884 Lakeview St, San Francisco, CA 94016" +155007,Bose SoundSport Headphones,1,99.99,01/09/19 16:35,"730 Center St, Boston, MA 02215" +155008,AA Batteries (4-pack),2,3.84,01/25/19 20:35,"489 Elm St, Los Angeles, CA 90001" +155009,AAA Batteries (4-pack),2,2.99,01/01/19 12:28,"218 Johnson St, Portland, ME 04101" +155010,Wired Headphones,1,11.99,01/30/19 22:53,"992 Jackson St, San Francisco, CA 94016" +155010,AAA Batteries (4-pack),2,2.99,01/30/19 22:53,"992 Jackson St, San Francisco, CA 94016" +155011,20in Monitor,1,109.99,01/06/19 16:11,"220 Forest St, Dallas, TX 75001" +155012,AA Batteries (4-pack),1,3.84,01/03/19 14:11,"192 13th St, Dallas, TX 75001" +155013,Macbook Pro Laptop,1,1700,01/24/19 17:23,"751 Jackson St, Los Angeles, CA 90001" +155014,LG Dryer,1,600.0,01/03/19 21:07,"256 Spruce St, San Francisco, CA 94016" +155015,USB-C Charging Cable,1,11.95,01/08/19 11:55,"565 12th St, Los Angeles, CA 90001" +155016,34in Ultrawide Monitor,1,379.99,01/06/19 01:37,"522 Lincoln St, Portland, OR 97035" +155017,USB-C Charging Cable,1,11.95,02/01/19 00:36,"16 Johnson St, Dallas, TX 75001" +155018,AAA Batteries (4-pack),1,2.99,01/02/19 08:14,"249 Willow St, Dallas, TX 75001" +155019,Lightning Charging Cable,1,14.95,01/23/19 15:09,"972 4th St, Los Angeles, CA 90001" +155020,USB-C Charging Cable,1,11.95,01/01/19 22:30,"921 Cedar St, Los Angeles, CA 90001" +155021,34in Ultrawide Monitor,1,379.99,01/16/19 16:41,"826 Lakeview St, Austin, TX 73301" +155022,Macbook Pro Laptop,1,1700,01/17/19 19:35,"574 Sunset St, New York City, NY 10001" +155023,USB-C Charging Cable,1,11.95,01/31/19 17:57,"395 14th St, Seattle, WA 98101" +155024,Lightning Charging Cable,1,14.95,01/01/19 12:09,"757 Ridge St, New York City, NY 10001" +155025,Apple Airpods Headphones,1,150,01/28/19 11:05,"199 Elm St, Atlanta, GA 30301" +155026,Wired Headphones,1,11.99,01/07/19 14:07,"392 Jackson St, Seattle, WA 98101" +155027,ThinkPad Laptop,1,999.99,01/23/19 22:42,"141 4th St, Los Angeles, CA 90001" +155028,27in 4K Gaming Monitor,1,389.99,01/29/19 18:21,"773 13th St, Seattle, WA 98101" +155029,AAA Batteries (4-pack),1,2.99,01/24/19 10:48,"401 Wilson St, New York City, NY 10001" +155030,AA Batteries (4-pack),1,3.84,01/04/19 21:18,"669 12th St, New York City, NY 10001" +155031,34in Ultrawide Monitor,1,379.99,01/17/19 15:04,"987 14th St, New York City, NY 10001" +155032,AAA Batteries (4-pack),2,2.99,01/16/19 10:17,"559 South St, San Francisco, CA 94016" +155033,Bose SoundSport Headphones,1,99.99,01/03/19 20:39,"967 Cedar St, New York City, NY 10001" +155034,USB-C Charging Cable,2,11.95,01/20/19 10:51,"204 Center St, Boston, MA 02215" +155035,Lightning Charging Cable,1,14.95,01/14/19 18:15,"323 6th St, San Francisco, CA 94016" +155036,AA Batteries (4-pack),2,3.84,01/25/19 11:28,"462 Lake St, New York City, NY 10001" +155037,Macbook Pro Laptop,1,1700,01/19/19 23:56,"465 11th St, New York City, NY 10001" +155038,27in FHD Monitor,1,149.99,01/17/19 13:48,"348 Adams St, Los Angeles, CA 90001" +155039,USB-C Charging Cable,1,11.95,01/27/19 06:03,"455 12th St, San Francisco, CA 94016" +155040,AAA Batteries (4-pack),2,2.99,01/22/19 14:12,"126 8th St, Los Angeles, CA 90001" +155041,USB-C Charging Cable,2,11.95,01/18/19 00:49,"515 South St, Dallas, TX 75001" +155042,Google Phone,1,600,01/30/19 17:11,"153 Hickory St, Atlanta, GA 30301" +155043,Vareebadd Phone,1,400,01/29/19 10:29,"91 Main St, New York City, NY 10001" +155043,USB-C Charging Cable,1,11.95,01/29/19 10:29,"91 Main St, New York City, NY 10001" +155044,AA Batteries (4-pack),2,3.84,01/23/19 15:04,"386 1st St, San Francisco, CA 94016" +155045,USB-C Charging Cable,1,11.95,01/20/19 23:44,"550 10th St, Los Angeles, CA 90001" +155046,Lightning Charging Cable,1,14.95,01/21/19 11:03,"558 4th St, Portland, OR 97035" +155047,AAA Batteries (4-pack),1,2.99,01/05/19 18:05,"689 Elm St, New York City, NY 10001" +155048,iPhone,1,700,01/13/19 09:31,"60 Meadow St, New York City, NY 10001" +155048,Lightning Charging Cable,1,14.95,01/13/19 09:31,"60 Meadow St, New York City, NY 10001" +155049,27in 4K Gaming Monitor,1,389.99,01/21/19 14:28,"255 Chestnut St, San Francisco, CA 94016" +155050,AAA Batteries (4-pack),1,2.99,01/02/19 13:19,"256 Jefferson St, Boston, MA 02215" +155051,Google Phone,1,600,01/30/19 02:19,"32 Highland St, New York City, NY 10001" +155051,Wired Headphones,1,11.99,01/30/19 02:19,"32 Highland St, New York City, NY 10001" +155052,USB-C Charging Cable,1,11.95,01/05/19 08:42,"712 Spruce St, Boston, MA 02215" +155053,Wired Headphones,1,11.99,01/10/19 17:12,"583 Adams St, Boston, MA 02215" +155054,Bose SoundSport Headphones,1,99.99,01/20/19 22:43,"649 Lakeview St, Los Angeles, CA 90001" +155055,AAA Batteries (4-pack),3,2.99,01/21/19 17:31,"357 Johnson St, San Francisco, CA 94016" +155056,Bose SoundSport Headphones,1,99.99,01/28/19 21:01,"918 Church St, Los Angeles, CA 90001" +155057,USB-C Charging Cable,1,11.95,01/13/19 16:57,"9 6th St, Boston, MA 02215" +155058,USB-C Charging Cable,2,11.95,01/25/19 16:48,"561 Johnson St, Boston, MA 02215" +155059,34in Ultrawide Monitor,1,379.99,01/17/19 14:49,"975 Dogwood St, New York City, NY 10001" +155060,Lightning Charging Cable,1,14.95,01/18/19 22:17,"310 Wilson St, San Francisco, CA 94016" +155061,Lightning Charging Cable,1,14.95,01/14/19 21:55,"447 Hickory St, New York City, NY 10001" +155062,20in Monitor,1,109.99,01/28/19 08:35,"235 Ridge St, San Francisco, CA 94016" +155063,Lightning Charging Cable,1,14.95,01/11/19 16:57,"545 Spruce St, San Francisco, CA 94016" +155064,ThinkPad Laptop,1,999.99,01/04/19 21:32,"854 Park St, San Francisco, CA 94016" +155065,USB-C Charging Cable,1,11.95,01/02/19 11:56,"49 8th St, Seattle, WA 98101" +155066,AAA Batteries (4-pack),1,2.99,01/07/19 10:28,"851 Adams St, Seattle, WA 98101" +155067,AA Batteries (4-pack),1,3.84,01/27/19 20:53,"27 Maple St, Seattle, WA 98101" +155068,Wired Headphones,1,11.99,01/28/19 19:11,"29 Chestnut St, San Francisco, CA 94016" +155069,Flatscreen TV,1,300,01/11/19 10:40,"368 Madison St, San Francisco, CA 94016" +155070,Lightning Charging Cable,1,14.95,01/19/19 09:20,"767 Maple St, Los Angeles, CA 90001" +155071,Wired Headphones,1,11.99,01/14/19 08:08,"996 Hickory St, Austin, TX 73301" +155072,Apple Airpods Headphones,1,150,01/30/19 05:27,"336 River St, Los Angeles, CA 90001" +155073,AAA Batteries (4-pack),1,2.99,01/22/19 17:18,"942 5th St, Los Angeles, CA 90001" +155074,20in Monitor,1,109.99,01/02/19 13:49,"42 8th St, Portland, ME 04101" +155075,Apple Airpods Headphones,1,150,01/07/19 23:25,"11 Ridge St, San Francisco, CA 94016" +155076,USB-C Charging Cable,1,11.95,01/18/19 12:13,"648 Church St, San Francisco, CA 94016" +155077,Wired Headphones,1,11.99,01/27/19 00:58,"474 Adams St, Atlanta, GA 30301" +155078,AA Batteries (4-pack),1,3.84,01/14/19 02:53,"404 5th St, Dallas, TX 75001" +155079,Lightning Charging Cable,1,14.95,01/09/19 20:41,"850 Spruce St, Portland, ME 04101" +155080,AA Batteries (4-pack),1,3.84,01/18/19 16:47,"101 Cherry St, Dallas, TX 75001" +155081,Google Phone,1,600,01/05/19 12:14,"810 Hickory St, Seattle, WA 98101" +155082,Lightning Charging Cable,1,14.95,01/15/19 22:59,"782 Highland St, New York City, NY 10001" +155083,USB-C Charging Cable,1,11.95,01/19/19 19:39,"809 West St, Dallas, TX 75001" +155084,USB-C Charging Cable,1,11.95,01/08/19 19:20,"403 North St, Atlanta, GA 30301" +155085,27in 4K Gaming Monitor,1,389.99,01/27/19 20:24,"801 12th St, Atlanta, GA 30301" +155086,Wired Headphones,1,11.99,01/21/19 13:47,"252 2nd St, Atlanta, GA 30301" +155087,USB-C Charging Cable,1,11.95,01/11/19 06:59,"435 Ridge St, Portland, OR 97035" +155088,Wired Headphones,1,11.99,01/09/19 21:06,"67 Ridge St, Austin, TX 73301" +155089,AA Batteries (4-pack),1,3.84,01/03/19 19:01,"74 Jefferson St, Portland, OR 97035" +155090,Wired Headphones,1,11.99,01/05/19 18:54,"161 Dogwood St, New York City, NY 10001" +155091,27in 4K Gaming Monitor,1,389.99,01/06/19 22:03,"62 Cherry St, Atlanta, GA 30301" +155092,Apple Airpods Headphones,1,150,01/04/19 12:04,"455 Highland St, Austin, TX 73301" +155093,Wired Headphones,1,11.99,01/10/19 13:19,"902 Spruce St, Los Angeles, CA 90001" +155094,Apple Airpods Headphones,1,150,01/26/19 07:04,"122 Sunset St, San Francisco, CA 94016" +155095,USB-C Charging Cable,3,11.95,01/04/19 08:15,"253 Park St, San Francisco, CA 94016" +155096,Google Phone,1,600,01/09/19 20:38,"649 Sunset St, New York City, NY 10001" +155097,AA Batteries (4-pack),1,3.84,01/27/19 16:58,"287 Lincoln St, New York City, NY 10001" +155098,Google Phone,1,600,01/25/19 21:29,"80 Park St, Seattle, WA 98101" +155098,USB-C Charging Cable,1,11.95,01/25/19 21:29,"80 Park St, Seattle, WA 98101" +155099,Apple Airpods Headphones,1,150,01/10/19 21:18,"474 Highland St, Portland, OR 97035" +155100,AA Batteries (4-pack),1,3.84,01/07/19 19:58,"234 Maple St, Dallas, TX 75001" +155101,Flatscreen TV,1,300,01/08/19 01:41,"19 Forest St, Seattle, WA 98101" +155102,AAA Batteries (4-pack),1,2.99,01/26/19 21:18,"489 Hickory St, Los Angeles, CA 90001" +155103,AA Batteries (4-pack),1,3.84,01/19/19 16:19,"650 Lakeview St, New York City, NY 10001" +155104,Bose SoundSport Headphones,1,99.99,01/03/19 12:48,"141 14th St, New York City, NY 10001" +155105,Google Phone,1,600,01/01/19 11:18,"979 South St, Boston, MA 02215" +155106,Apple Airpods Headphones,1,150,01/08/19 18:33,"848 Hickory St, San Francisco, CA 94016" +155107,Google Phone,1,600,01/28/19 12:52,"595 West St, San Francisco, CA 94016" +155108,Vareebadd Phone,1,400,01/16/19 15:50,"375 Pine St, San Francisco, CA 94016" +155109,Lightning Charging Cable,1,14.95,01/15/19 11:24,"694 Lakeview St, Austin, TX 73301" +155110,AAA Batteries (4-pack),1,2.99,01/02/19 22:22,"119 9th St, Boston, MA 02215" +155110,AAA Batteries (4-pack),2,2.99,01/02/19 22:22,"119 9th St, Boston, MA 02215" +155111,Vareebadd Phone,1,400,01/26/19 11:02,"548 14th St, Dallas, TX 75001" +155112,AA Batteries (4-pack),1,3.84,01/25/19 17:24,"321 Park St, Boston, MA 02215" +155113,Wired Headphones,1,11.99,01/28/19 13:29,"75 12th St, Los Angeles, CA 90001" +155114,Lightning Charging Cable,1,14.95,01/15/19 12:41,"94 1st St, Boston, MA 02215" +155115,Macbook Pro Laptop,1,1700,01/12/19 18:43,"156 Maple St, San Francisco, CA 94016" +155116,Macbook Pro Laptop,1,1700,01/07/19 16:06,"222 Jefferson St, San Francisco, CA 94016" +155117,Lightning Charging Cable,1,14.95,01/29/19 19:14,"507 Center St, Boston, MA 02215" +155118,Macbook Pro Laptop,1,1700,01/14/19 16:59,"285 Jefferson St, San Francisco, CA 94016" +155119,USB-C Charging Cable,1,11.95,01/15/19 10:17,"423 Elm St, Dallas, TX 75001" +155120,27in FHD Monitor,1,149.99,01/21/19 23:08,"823 8th St, San Francisco, CA 94016" +155121,Wired Headphones,1,11.99,01/15/19 09:10,"51 Highland St, San Francisco, CA 94016" +155122,AAA Batteries (4-pack),1,2.99,01/11/19 15:53,"332 Spruce St, Atlanta, GA 30301" +155123,Wired Headphones,1,11.99,01/05/19 13:57,"5 River St, Boston, MA 02215" +155124,Wired Headphones,1,11.99,01/04/19 16:11,"469 Washington St, New York City, NY 10001" +155125,AAA Batteries (4-pack),1,2.99,01/08/19 15:55,"487 Forest St, Atlanta, GA 30301" +155126,AA Batteries (4-pack),2,3.84,01/16/19 08:34,"428 14th St, Los Angeles, CA 90001" +155127,AA Batteries (4-pack),1,3.84,01/03/19 11:45,"568 12th St, Seattle, WA 98101" +155128,Lightning Charging Cable,1,14.95,01/29/19 17:32,"163 Spruce St, Austin, TX 73301" +155129,20in Monitor,1,109.99,01/11/19 10:58,"788 Jefferson St, San Francisco, CA 94016" +155130,Macbook Pro Laptop,1,1700,01/01/19 16:27,"320 Lakeview St, Boston, MA 02215" +155131,Wired Headphones,1,11.99,01/28/19 07:53,"728 14th St, Seattle, WA 98101" +155132,27in 4K Gaming Monitor,1,389.99,01/27/19 08:48,"58 West St, Los Angeles, CA 90001" +155133,ThinkPad Laptop,1,999.99,01/03/19 20:08,"250 Hickory St, Atlanta, GA 30301" +155134,Macbook Pro Laptop,1,1700,01/24/19 19:15,"397 13th St, San Francisco, CA 94016" +155135,Bose SoundSport Headphones,1,99.99,01/14/19 01:06,"763 Willow St, Boston, MA 02215" +155136,Lightning Charging Cable,1,14.95,01/28/19 21:00,"756 South St, New York City, NY 10001" +155137,Vareebadd Phone,1,400,01/17/19 19:41,"909 2nd St, Austin, TX 73301" +155138,LG Washing Machine,1,600.0,01/25/19 19:56,"609 Cherry St, Portland, OR 97035" +155139,Apple Airpods Headphones,1,150,01/28/19 04:07,"183 9th St, New York City, NY 10001" +155139,USB-C Charging Cable,1,11.95,01/28/19 04:07,"183 9th St, New York City, NY 10001" +155140,USB-C Charging Cable,1,11.95,01/22/19 17:09,"820 Forest St, Austin, TX 73301" +155141,Macbook Pro Laptop,1,1700,01/13/19 10:35,"285 Adams St, Portland, ME 04101" +155142,Wired Headphones,1,11.99,01/06/19 09:47,"279 14th St, San Francisco, CA 94016" +155143,USB-C Charging Cable,1,11.95,01/23/19 18:16,"233 Hill St, Portland, OR 97035" +155144,AAA Batteries (4-pack),2,2.99,01/01/19 13:03,"629 Park St, Atlanta, GA 30301" +155145,AA Batteries (4-pack),3,3.84,01/12/19 02:30,"471 Ridge St, San Francisco, CA 94016" +155146,AA Batteries (4-pack),1,3.84,01/30/19 16:11,"183 North St, San Francisco, CA 94016" +155147,Wired Headphones,1,11.99,01/08/19 18:11,"787 Pine St, Los Angeles, CA 90001" +155148,AAA Batteries (4-pack),1,2.99,01/18/19 23:34,"620 Elm St, San Francisco, CA 94016" +155149,USB-C Charging Cable,1,11.95,01/03/19 20:43,"564 Hill St, Los Angeles, CA 90001" +155150,Google Phone,1,600,01/15/19 20:45,"899 Dogwood St, San Francisco, CA 94016" +155150,USB-C Charging Cable,1,11.95,01/15/19 20:45,"899 Dogwood St, San Francisco, CA 94016" +155151,ThinkPad Laptop,1,999.99,01/23/19 16:12,"710 Johnson St, New York City, NY 10001" +155152,AA Batteries (4-pack),2,3.84,01/04/19 09:10,"552 1st St, Atlanta, GA 30301" +155153,Flatscreen TV,1,300,01/09/19 22:09,"494 Forest St, New York City, NY 10001" +155154,34in Ultrawide Monitor,1,379.99,01/05/19 14:14,"737 7th St, New York City, NY 10001" +155155,Bose SoundSport Headphones,1,99.99,01/15/19 21:42,"924 Ridge St, Los Angeles, CA 90001" +155156,LG Dryer,1,600.0,01/13/19 20:59,"717 Church St, Dallas, TX 75001" +155157,Google Phone,1,600,01/20/19 23:42,"921 Hill St, Atlanta, GA 30301" +155157,USB-C Charging Cable,1,11.95,01/20/19 23:42,"921 Hill St, Atlanta, GA 30301" +155158,Lightning Charging Cable,1,14.95,01/02/19 18:04,"181 Pine St, Portland, OR 97035" +155159,AAA Batteries (4-pack),1,2.99,01/20/19 13:09,"452 8th St, Los Angeles, CA 90001" +155160,Lightning Charging Cable,1,14.95,01/01/19 20:03,"7 Elm St, San Francisco, CA 94016" +155161,USB-C Charging Cable,1,11.95,01/29/19 20:29,"739 Jackson St, Atlanta, GA 30301" +155162,AAA Batteries (4-pack),1,2.99,01/28/19 15:43,"827 7th St, Los Angeles, CA 90001" +155163,Apple Airpods Headphones,1,150,01/04/19 15:59,"81 2nd St, San Francisco, CA 94016" +155164,iPhone,1,700,01/03/19 20:10,"147 9th St, San Francisco, CA 94016" +155165,Google Phone,1,600,01/24/19 20:07,"759 Spruce St, Seattle, WA 98101" +155165,Wired Headphones,1,11.99,01/24/19 20:07,"759 Spruce St, Seattle, WA 98101" +155166,Google Phone,1,600,01/24/19 13:03,"852 5th St, Los Angeles, CA 90001" +155167,Bose SoundSport Headphones,1,99.99,01/28/19 14:27,"181 11th St, Atlanta, GA 30301" +155168,Lightning Charging Cable,1,14.95,01/19/19 17:06,"986 Meadow St, San Francisco, CA 94016" +155169,Wired Headphones,1,11.99,01/26/19 14:23,"451 Center St, Boston, MA 02215" +155170,27in 4K Gaming Monitor,1,389.99,01/09/19 18:25,"733 Hickory St, San Francisco, CA 94016" +155171,Macbook Pro Laptop,1,1700,01/15/19 13:46,"721 13th St, Boston, MA 02215" +155172,Wired Headphones,1,11.99,01/08/19 15:26,"541 West St, San Francisco, CA 94016" +155173,Macbook Pro Laptop,1,1700,01/19/19 09:45,"542 Hill St, Portland, OR 97035" +155174,Lightning Charging Cable,1,14.95,01/07/19 18:52,"55 1st St, Boston, MA 02215" +155175,Lightning Charging Cable,1,14.95,01/16/19 22:13,"527 8th St, San Francisco, CA 94016" +155176,AAA Batteries (4-pack),1,2.99,01/05/19 16:41,"37 Adams St, San Francisco, CA 94016" +155177,27in 4K Gaming Monitor,1,389.99,01/23/19 18:44,"169 Cherry St, San Francisco, CA 94016" +155178,Apple Airpods Headphones,1,150,01/24/19 16:54,"760 Cedar St, San Francisco, CA 94016" +155179,Lightning Charging Cable,1,14.95,01/31/19 22:21,"699 Dogwood St, Boston, MA 02215" +155180,AA Batteries (4-pack),1,3.84,01/05/19 16:57,"808 14th St, Los Angeles, CA 90001" +155181,Lightning Charging Cable,1,14.95,01/07/19 18:55,"948 Lakeview St, New York City, NY 10001" +155182,Wired Headphones,1,11.99,01/08/19 18:42,"761 10th St, San Francisco, CA 94016" +155183,Bose SoundSport Headphones,2,99.99,01/17/19 19:21,"135 Meadow St, San Francisco, CA 94016" +155184,Bose SoundSport Headphones,1,99.99,01/06/19 18:48,"372 Jackson St, Los Angeles, CA 90001" +155185,Lightning Charging Cable,1,14.95,01/23/19 11:56,"121 14th St, Boston, MA 02215" +155186,AAA Batteries (4-pack),3,2.99,01/08/19 13:13,"109 Main St, San Francisco, CA 94016" +155187,Wired Headphones,1,11.99,01/25/19 18:48,"266 Elm St, Austin, TX 73301" +155188,20in Monitor,1,109.99,01/25/19 13:40,"111 8th St, New York City, NY 10001" +155189,AA Batteries (4-pack),2,3.84,01/24/19 14:36,"863 Center St, Austin, TX 73301" +155190,USB-C Charging Cable,1,11.95,01/06/19 17:13,"182 Adams St, New York City, NY 10001" +155191,Wired Headphones,1,11.99,01/31/19 07:35,"919 Lake St, New York City, NY 10001" +155191,AAA Batteries (4-pack),1,2.99,01/31/19 07:35,"919 Lake St, New York City, NY 10001" +155192,Lightning Charging Cable,1,14.95,01/28/19 15:00,"225 5th St, Los Angeles, CA 90001" +155193,Lightning Charging Cable,1,14.95,01/03/19 14:04,"314 Park St, Portland, ME 04101" +155194,AAA Batteries (4-pack),2,2.99,01/21/19 11:47,"361 Washington St, Boston, MA 02215" +155195,27in FHD Monitor,1,149.99,01/06/19 20:35,"524 6th St, Atlanta, GA 30301" +155196,Wired Headphones,1,11.99,01/20/19 18:55,"31 Adams St, San Francisco, CA 94016" +155197,USB-C Charging Cable,1,11.95,01/07/19 21:00,"924 7th St, San Francisco, CA 94016" +155198,Lightning Charging Cable,1,14.95,01/09/19 21:28,"793 Jefferson St, New York City, NY 10001" +155199,AA Batteries (4-pack),1,3.84,01/02/19 21:17,"711 Maple St, Los Angeles, CA 90001" +155200,Bose SoundSport Headphones,1,99.99,01/27/19 20:41,"728 West St, New York City, NY 10001" +155201,USB-C Charging Cable,1,11.95,01/01/19 11:18,"399 10th St, San Francisco, CA 94016" +155202,USB-C Charging Cable,1,11.95,01/21/19 14:34,"230 North St, San Francisco, CA 94016" +155203,USB-C Charging Cable,1,11.95,01/28/19 23:11,"235 Highland St, Boston, MA 02215" +155204,USB-C Charging Cable,1,11.95,01/31/19 18:46,"266 Adams St, Los Angeles, CA 90001" +155205,Wired Headphones,1,11.99,01/08/19 06:47,"378 Adams St, Seattle, WA 98101" +155206,AA Batteries (4-pack),1,3.84,01/14/19 21:28,"796 Park St, Boston, MA 02215" +155207,AAA Batteries (4-pack),1,2.99,01/18/19 19:02,"209 10th St, San Francisco, CA 94016" +155208,Wired Headphones,1,11.99,01/17/19 22:28,"537 Elm St, Boston, MA 02215" +155209,27in 4K Gaming Monitor,1,389.99,01/05/19 15:35,"340 2nd St, San Francisco, CA 94016" +155210,Lightning Charging Cable,1,14.95,01/18/19 00:35,"912 Wilson St, Atlanta, GA 30301" +155211,34in Ultrawide Monitor,1,379.99,01/29/19 17:35,"767 1st St, Los Angeles, CA 90001" +155212,AA Batteries (4-pack),1,3.84,01/15/19 18:51,"974 Elm St, San Francisco, CA 94016" +155213,Lightning Charging Cable,1,14.95,01/11/19 22:37,"48 Maple St, New York City, NY 10001" +155214,Google Phone,1,600,01/03/19 20:56,"55 Dogwood St, Los Angeles, CA 90001" +155215,27in FHD Monitor,1,149.99,01/12/19 13:57,"61 Cherry St, San Francisco, CA 94016" +155216,Apple Airpods Headphones,1,150,01/14/19 10:35,"377 Spruce St, Boston, MA 02215" +155217,Google Phone,1,600,01/22/19 19:38,"657 Washington St, Portland, OR 97035" +155218,Bose SoundSport Headphones,1,99.99,01/06/19 10:39,"474 Johnson St, San Francisco, CA 94016" +155219,Macbook Pro Laptop,1,1700,01/21/19 20:30,"968 8th St, Austin, TX 73301" +155220,Bose SoundSport Headphones,1,99.99,01/07/19 12:30,"914 Sunset St, San Francisco, CA 94016" +155221,Lightning Charging Cable,1,14.95,01/03/19 10:47,"26 13th St, Los Angeles, CA 90001" +155222,27in FHD Monitor,1,149.99,01/20/19 19:00,"625 9th St, San Francisco, CA 94016" +155223,USB-C Charging Cable,1,11.95,01/14/19 13:28,"503 Meadow St, New York City, NY 10001" +155223,Wired Headphones,1,11.99,01/14/19 13:28,"503 Meadow St, New York City, NY 10001" +155224,27in FHD Monitor,1,149.99,01/31/19 20:48,"682 11th St, Austin, TX 73301" +155225,Google Phone,1,600,01/01/19 13:33,"572 Ridge St, Seattle, WA 98101" +155225,USB-C Charging Cable,1,11.95,01/01/19 13:33,"572 Ridge St, Seattle, WA 98101" +155226,Macbook Pro Laptop,1,1700,01/07/19 11:01,"549 10th St, Seattle, WA 98101" +155227,USB-C Charging Cable,1,11.95,01/22/19 20:34,"738 Pine St, Seattle, WA 98101" +155228,27in FHD Monitor,1,149.99,01/08/19 13:47,"3 9th St, San Francisco, CA 94016" +155229,Lightning Charging Cable,1,14.95,01/09/19 21:30,"983 Park St, Los Angeles, CA 90001" +155230,Lightning Charging Cable,1,14.95,01/06/19 19:57,"40 Cedar St, New York City, NY 10001" +155231,Apple Airpods Headphones,1,150,01/22/19 14:43,"226 4th St, New York City, NY 10001" +155232,AA Batteries (4-pack),1,3.84,01/05/19 13:17,"133 North St, New York City, NY 10001" +155233,Wired Headphones,1,11.99,01/22/19 05:58,"267 North St, Boston, MA 02215" +155234,Google Phone,1,600,01/21/19 17:23,"982 Willow St, San Francisco, CA 94016" +155234,USB-C Charging Cable,1,11.95,01/21/19 17:23,"982 Willow St, San Francisco, CA 94016" +155235,Bose SoundSport Headphones,1,99.99,01/17/19 07:24,"973 Elm St, San Francisco, CA 94016" +155236,Macbook Pro Laptop,1,1700,01/04/19 11:52,"520 Walnut St, San Francisco, CA 94016" +155237,Wired Headphones,1,11.99,01/12/19 10:51,"623 Washington St, Los Angeles, CA 90001" +155238,Apple Airpods Headphones,1,150,01/10/19 22:21,"161 12th St, San Francisco, CA 94016" +155239,27in FHD Monitor,2,149.99,01/08/19 18:52,"212 14th St, Portland, OR 97035" +155240,27in FHD Monitor,1,149.99,01/16/19 13:08,"177 Highland St, Los Angeles, CA 90001" +155241,AAA Batteries (4-pack),3,2.99,01/21/19 15:03,"965 4th St, Los Angeles, CA 90001" +155242,AA Batteries (4-pack),1,3.84,01/13/19 20:32,"731 Meadow St, Seattle, WA 98101" +155243,USB-C Charging Cable,1,11.95,01/15/19 16:41,"364 9th St, San Francisco, CA 94016" +155244,Macbook Pro Laptop,1,1700,01/13/19 13:22,"471 11th St, Portland, OR 97035" +155245,Lightning Charging Cable,1,14.95,01/03/19 02:09,"377 Lincoln St, Portland, OR 97035" +155246,USB-C Charging Cable,1,11.95,01/24/19 22:43,"759 Elm St, New York City, NY 10001" +155247,USB-C Charging Cable,1,11.95,01/08/19 20:41,"326 West St, Los Angeles, CA 90001" +155248,Flatscreen TV,1,300,01/06/19 22:22,"296 Meadow St, Boston, MA 02215" +155249,AA Batteries (4-pack),1,3.84,01/16/19 18:46,"28 Meadow St, New York City, NY 10001" +155250,Apple Airpods Headphones,1,150,01/29/19 14:01,"557 Pine St, Boston, MA 02215" +155251,Lightning Charging Cable,1,14.95,01/11/19 20:01,"298 Lake St, San Francisco, CA 94016" +155252,Lightning Charging Cable,2,14.95,01/19/19 17:53,"200 Cherry St, San Francisco, CA 94016" +155253,27in FHD Monitor,1,149.99,01/26/19 20:25,"202 Jefferson St, Atlanta, GA 30301" +155254,Lightning Charging Cable,1,14.95,01/18/19 21:03,"266 Meadow St, Austin, TX 73301" +155255,AA Batteries (4-pack),1,3.84,01/10/19 21:32,"927 6th St, Los Angeles, CA 90001" +155256,20in Monitor,1,109.99,01/09/19 04:13,"35 Maple St, Los Angeles, CA 90001" +155257,AA Batteries (4-pack),1,3.84,01/25/19 16:47,"2 Cherry St, Seattle, WA 98101" +155258,AA Batteries (4-pack),1,3.84,01/06/19 17:04,"873 Lake St, Dallas, TX 75001" +155259,Apple Airpods Headphones,1,150,01/30/19 13:17,"454 Meadow St, Dallas, TX 75001" +155260,AAA Batteries (4-pack),2,2.99,01/19/19 18:41,"599 Madison St, San Francisco, CA 94016" +155261,AAA Batteries (4-pack),1,2.99,01/21/19 11:08,"683 Sunset St, Boston, MA 02215" +155262,Lightning Charging Cable,1,14.95,01/19/19 12:57,"489 10th St, Seattle, WA 98101" +155263,Lightning Charging Cable,1,14.95,01/12/19 17:25,"456 8th St, New York City, NY 10001" +155264,AAA Batteries (4-pack),1,2.99,01/24/19 19:29,"410 Park St, New York City, NY 10001" +155265,AAA Batteries (4-pack),1,2.99,01/31/19 12:39,"430 West St, San Francisco, CA 94016" +155266,AAA Batteries (4-pack),1,2.99,01/16/19 14:36,"4 North St, San Francisco, CA 94016" +155267,AA Batteries (4-pack),1,3.84,01/28/19 14:03,"691 Walnut St, Los Angeles, CA 90001" +155268,Lightning Charging Cable,1,14.95,01/05/19 11:50,"810 Park St, New York City, NY 10001" +155269,Apple Airpods Headphones,1,150,01/03/19 11:38,"65 Cherry St, Boston, MA 02215" +155270,27in FHD Monitor,1,149.99,01/20/19 20:24,"53 Chestnut St, New York City, NY 10001" +155271,AA Batteries (4-pack),1,3.84,01/25/19 10:55,"797 Lake St, Atlanta, GA 30301" +155272,Bose SoundSport Headphones,1,99.99,01/27/19 12:03,"288 Hill St, Boston, MA 02215" +155273,iPhone,1,700,01/22/19 11:34,"709 North St, San Francisco, CA 94016" +155274,iPhone,1,700,01/27/19 02:13,"133 Main St, San Francisco, CA 94016" +155275,AAA Batteries (4-pack),1,2.99,01/02/19 13:07,"307 Lakeview St, New York City, NY 10001" +155276,AA Batteries (4-pack),1,3.84,01/17/19 20:34,"933 Cedar St, Seattle, WA 98101" +155277,AAA Batteries (4-pack),1,2.99,01/08/19 17:38,"319 River St, New York City, NY 10001" +155278,Apple Airpods Headphones,1,150,01/15/19 15:26,"849 Church St, Dallas, TX 75001" +155279,AAA Batteries (4-pack),1,2.99,01/30/19 11:52,"484 Wilson St, New York City, NY 10001" +155280,20in Monitor,1,109.99,01/14/19 18:40,"985 1st St, Los Angeles, CA 90001" +155281,AAA Batteries (4-pack),1,2.99,01/23/19 12:15,"118 Cherry St, Los Angeles, CA 90001" +155282,Lightning Charging Cable,1,14.95,01/26/19 13:28,"744 12th St, Dallas, TX 75001" +155283,AA Batteries (4-pack),1,3.84,01/08/19 19:14,"452 Washington St, New York City, NY 10001" +155284,AAA Batteries (4-pack),1,2.99,01/07/19 15:35,"677 5th St, Los Angeles, CA 90001" +155285,Flatscreen TV,1,300,01/01/19 11:16,"765 4th St, Atlanta, GA 30301" +155286,AAA Batteries (4-pack),2,2.99,01/24/19 14:07,"480 Sunset St, Portland, OR 97035" +155287,27in FHD Monitor,1,149.99,01/30/19 09:02,"812 Center St, Atlanta, GA 30301" +155288,ThinkPad Laptop,1,999.99,01/11/19 17:44,"622 11th St, Boston, MA 02215" +155289,20in Monitor,1,109.99,01/04/19 18:18,"619 9th St, Boston, MA 02215" +155290,AAA Batteries (4-pack),2,2.99,01/07/19 17:02,"239 South St, San Francisco, CA 94016" +155291,AAA Batteries (4-pack),2,2.99,01/25/19 02:25,"884 Highland St, San Francisco, CA 94016" +155292,Bose SoundSport Headphones,1,99.99,01/20/19 14:54,"895 Sunset St, Los Angeles, CA 90001" +155293,AA Batteries (4-pack),1,3.84,01/02/19 22:27,"947 Maple St, Seattle, WA 98101" +155294,Bose SoundSport Headphones,1,99.99,01/14/19 00:47,"657 Hickory St, Austin, TX 73301" +155295,27in FHD Monitor,1,149.99,01/12/19 22:15,"264 6th St, Los Angeles, CA 90001" +155296,Apple Airpods Headphones,1,150,01/12/19 12:01,"514 Maple St, Atlanta, GA 30301" +155297,Bose SoundSport Headphones,1,99.99,01/13/19 01:21,"119 Chestnut St, Portland, OR 97035" +155298,Bose SoundSport Headphones,1,99.99,01/06/19 10:06,"866 Spruce St, Portland, OR 97035" +155299,Bose SoundSport Headphones,1,99.99,01/07/19 23:59,"584 Pine St, Boston, MA 02215" +155300,USB-C Charging Cable,1,11.95,01/30/19 19:13,"211 Cherry St, San Francisco, CA 94016" +155301,Flatscreen TV,1,300,01/09/19 20:37,"340 12th St, Atlanta, GA 30301" +155302,27in 4K Gaming Monitor,1,389.99,01/25/19 09:16,"889 11th St, Los Angeles, CA 90001" +155303,Bose SoundSport Headphones,1,99.99,01/15/19 17:48,"715 14th St, Dallas, TX 75001" +155304,34in Ultrawide Monitor,1,379.99,01/18/19 11:57,"813 Sunset St, Boston, MA 02215" +155305,Wired Headphones,1,11.99,01/05/19 11:17,"245 11th St, Los Angeles, CA 90001" +155306,27in 4K Gaming Monitor,1,389.99,01/05/19 17:37,"481 Hickory St, Dallas, TX 75001" +155307,USB-C Charging Cable,1,11.95,01/10/19 12:35,"651 Jefferson St, New York City, NY 10001" +155308,Wired Headphones,1,11.99,01/24/19 22:50,"674 Cherry St, San Francisco, CA 94016" +155309,AAA Batteries (4-pack),3,2.99,01/03/19 22:55,"460 9th St, Seattle, WA 98101" +155310,Apple Airpods Headphones,1,150,01/23/19 14:18,"283 Ridge St, Seattle, WA 98101" +155311,Google Phone,1,600,01/31/19 12:51,"399 1st St, Dallas, TX 75001" +155312,Wired Headphones,1,11.99,01/06/19 19:57,"902 Adams St, Boston, MA 02215" +155313,AA Batteries (4-pack),2,3.84,01/04/19 12:20,"378 Jackson St, Portland, ME 04101" +155314,USB-C Charging Cable,1,11.95,01/20/19 10:24,"279 Park St, Atlanta, GA 30301" +155315,Lightning Charging Cable,1,14.95,01/26/19 16:10,"443 Jefferson St, San Francisco, CA 94016" +155316,AAA Batteries (4-pack),1,2.99,01/29/19 13:31,"621 11th St, San Francisco, CA 94016" +155317,AA Batteries (4-pack),1,3.84,01/08/19 15:37,"985 8th St, Seattle, WA 98101" +155318,Wired Headphones,1,11.99,01/15/19 06:25,"451 Park St, Boston, MA 02215" +155319,iPhone,1,700,01/29/19 08:38,"457 Sunset St, New York City, NY 10001" +155320,34in Ultrawide Monitor,1,379.99,01/09/19 16:49,"853 Cherry St, Los Angeles, CA 90001" +155321,Bose SoundSport Headphones,1,99.99,01/12/19 20:00,"434 Madison St, San Francisco, CA 94016" +155322,Bose SoundSport Headphones,1,99.99,01/10/19 12:53,"573 Lakeview St, Boston, MA 02215" +155323,Wired Headphones,1,11.99,01/01/19 03:43,"497 13th St, San Francisco, CA 94016" +155324,Lightning Charging Cable,1,14.95,01/26/19 21:17,"221 8th St, Portland, ME 04101" +155324,USB-C Charging Cable,1,11.95,01/26/19 21:17,"221 8th St, Portland, ME 04101" +155325,Wired Headphones,1,11.99,01/13/19 07:58,"469 9th St, Los Angeles, CA 90001" +155326,Wired Headphones,1,11.99,01/06/19 20:55,"437 Elm St, New York City, NY 10001" +155327,Lightning Charging Cable,1,14.95,01/12/19 13:43,"70 Washington St, Atlanta, GA 30301" +155328,Apple Airpods Headphones,1,150,01/09/19 21:19,"916 Meadow St, New York City, NY 10001" +155328,USB-C Charging Cable,1,11.95,01/09/19 21:19,"916 Meadow St, New York City, NY 10001" +155329,20in Monitor,1,109.99,01/03/19 17:54,"444 Dogwood St, Austin, TX 73301" +155330,Wired Headphones,1,11.99,01/16/19 09:59,"534 Cherry St, San Francisco, CA 94016" +155330,AAA Batteries (4-pack),1,2.99,01/16/19 09:59,"534 Cherry St, San Francisco, CA 94016" +155331,ThinkPad Laptop,1,999.99,01/31/19 14:45,"849 Elm St, San Francisco, CA 94016" +155332,Wired Headphones,1,11.99,01/19/19 17:21,"655 Jefferson St, New York City, NY 10001" +155333,USB-C Charging Cable,1,11.95,01/14/19 20:32,"513 14th St, Atlanta, GA 30301" +155334,27in 4K Gaming Monitor,1,389.99,01/26/19 08:54,"410 13th St, San Francisco, CA 94016" +155335,Bose SoundSport Headphones,1,99.99,01/22/19 00:11,"200 Madison St, San Francisco, CA 94016" +155336,Apple Airpods Headphones,1,150,01/26/19 14:57,"782 Willow St, San Francisco, CA 94016" +155337,USB-C Charging Cable,1,11.95,01/11/19 23:07,"186 Church St, Atlanta, GA 30301" +155338,20in Monitor,1,109.99,01/04/19 16:24,"678 Meadow St, Dallas, TX 75001" +155339,Lightning Charging Cable,1,14.95,01/23/19 01:31,"997 9th St, New York City, NY 10001" +155340,AA Batteries (4-pack),3,3.84,01/16/19 20:59,"540 Jefferson St, San Francisco, CA 94016" +155341,AA Batteries (4-pack),1,3.84,01/21/19 17:37,"59 Jackson St, Austin, TX 73301" +155342,Apple Airpods Headphones,1,150,01/27/19 18:17,"409 Willow St, Dallas, TX 75001" +155343,AA Batteries (4-pack),1,3.84,01/29/19 18:13,"187 7th St, Los Angeles, CA 90001" +155344,Vareebadd Phone,1,400,01/07/19 08:32,"279 8th St, Atlanta, GA 30301" +155344,USB-C Charging Cable,1,11.95,01/07/19 08:32,"279 8th St, Atlanta, GA 30301" +155345,USB-C Charging Cable,1,11.95,01/14/19 17:57,"408 14th St, Los Angeles, CA 90001" +155346,USB-C Charging Cable,1,11.95,01/07/19 18:22,"426 Washington St, San Francisco, CA 94016" +155347,Bose SoundSport Headphones,1,99.99,01/06/19 00:31,"530 Adams St, Los Angeles, CA 90001" +155348,Flatscreen TV,1,300,01/31/19 17:29,"393 7th St, San Francisco, CA 94016" +155349,Apple Airpods Headphones,1,150,01/16/19 18:33,"166 West St, Los Angeles, CA 90001" +155350,27in 4K Gaming Monitor,1,389.99,01/30/19 18:17,"722 Ridge St, Los Angeles, CA 90001" +155351,AA Batteries (4-pack),3,3.84,01/24/19 16:59,"139 Washington St, San Francisco, CA 94016" +155352,Wired Headphones,1,11.99,01/01/19 12:20,"391 11th St, Los Angeles, CA 90001" +155353,20in Monitor,1,109.99,01/09/19 13:16,"531 Lake St, San Francisco, CA 94016" +155354,Apple Airpods Headphones,1,150,01/06/19 18:33,"431 Walnut St, San Francisco, CA 94016" +155355,Lightning Charging Cable,1,14.95,01/18/19 15:21,"635 Park St, Austin, TX 73301" +155356,Apple Airpods Headphones,1,150,01/07/19 20:33,"142 Wilson St, San Francisco, CA 94016" +155357,Wired Headphones,2,11.99,01/21/19 09:20,"927 Cedar St, San Francisco, CA 94016" +155358,Flatscreen TV,1,300,01/17/19 13:30,"33 Jefferson St, New York City, NY 10001" +155359,Wired Headphones,1,11.99,01/12/19 11:55,"979 2nd St, Los Angeles, CA 90001" +155360,34in Ultrawide Monitor,1,379.99,01/23/19 18:39,"40 Dogwood St, Portland, OR 97035" +155361,USB-C Charging Cable,1,11.95,01/26/19 18:02,"716 Pine St, San Francisco, CA 94016" +155362,USB-C Charging Cable,1,11.95,01/08/19 20:42,"136 Sunset St, Boston, MA 02215" +155363,AA Batteries (4-pack),1,3.84,01/29/19 12:42,"758 9th St, New York City, NY 10001" +155364,AAA Batteries (4-pack),2,2.99,01/08/19 15:10,"826 12th St, Los Angeles, CA 90001" +,,,,, +155365,AA Batteries (4-pack),1,3.84,01/24/19 10:50,"47 Forest St, Atlanta, GA 30301" +155366,34in Ultrawide Monitor,1,379.99,01/14/19 10:16,"184 Lincoln St, New York City, NY 10001" +155367,Wired Headphones,2,11.99,01/19/19 19:36,"686 4th St, Los Angeles, CA 90001" +155368,27in 4K Gaming Monitor,1,389.99,01/16/19 13:41,"951 Walnut St, Atlanta, GA 30301" +155369,27in FHD Monitor,1,149.99,01/12/19 13:21,"124 Johnson St, Boston, MA 02215" +155370,Lightning Charging Cable,1,14.95,01/21/19 20:47,"538 Jefferson St, Dallas, TX 75001" +155371,LG Dryer,1,600.0,01/11/19 17:20,"362 Washington St, San Francisco, CA 94016" +155372,Bose SoundSport Headphones,1,99.99,01/05/19 14:50,"356 11th St, San Francisco, CA 94016" +155373,AA Batteries (4-pack),1,3.84,01/04/19 17:30,"62 Jackson St, Austin, TX 73301" +155374,Lightning Charging Cable,1,14.95,01/21/19 14:50,"542 Willow St, San Francisco, CA 94016" +155375,Google Phone,1,600,01/26/19 00:34,"427 Center St, New York City, NY 10001" +155376,AAA Batteries (4-pack),1,2.99,01/22/19 18:11,"296 Pine St, Dallas, TX 75001" +155377,Wired Headphones,1,11.99,01/04/19 15:37,"253 6th St, Boston, MA 02215" +155378,AAA Batteries (4-pack),2,2.99,01/17/19 00:53,"110 4th St, Los Angeles, CA 90001" +155379,AA Batteries (4-pack),1,3.84,01/27/19 19:09,"583 South St, Los Angeles, CA 90001" +155380,ThinkPad Laptop,1,999.99,01/16/19 11:05,"362 Dogwood St, San Francisco, CA 94016" +155381,Lightning Charging Cable,1,14.95,01/19/19 12:33,"406 Highland St, Atlanta, GA 30301" +155382,27in FHD Monitor,1,149.99,01/10/19 22:58,"610 Main St, Boston, MA 02215" +155383,Wired Headphones,1,11.99,01/22/19 08:18,"809 10th St, San Francisco, CA 94016" +155384,Bose SoundSport Headphones,1,99.99,01/11/19 19:26,"49 2nd St, San Francisco, CA 94016" +155385,27in 4K Gaming Monitor,1,389.99,01/06/19 09:11,"332 Hill St, Seattle, WA 98101" +155386,Wired Headphones,1,11.99,01/16/19 13:17,"741 6th St, Dallas, TX 75001" +155387,USB-C Charging Cable,1,11.95,01/12/19 10:51,"972 Dogwood St, Portland, OR 97035" +155388,34in Ultrawide Monitor,1,379.99,01/27/19 09:43,"771 River St, San Francisco, CA 94016" +155389,Bose SoundSport Headphones,1,99.99,01/02/19 10:01,"741 7th St, Seattle, WA 98101" +155390,Lightning Charging Cable,1,14.95,01/22/19 09:06,"912 4th St, New York City, NY 10001" +155391,AA Batteries (4-pack),1,3.84,01/23/19 19:25,"550 Jefferson St, Atlanta, GA 30301" +155392,Wired Headphones,1,11.99,01/19/19 19:32,"917 6th St, San Francisco, CA 94016" +155393,iPhone,1,700,01/13/19 12:54,"239 Walnut St, Los Angeles, CA 90001" +155394,27in FHD Monitor,1,149.99,01/04/19 08:05,"396 6th St, Boston, MA 02215" +155395,Lightning Charging Cable,1,14.95,01/18/19 14:34,"723 Lincoln St, Los Angeles, CA 90001" +155396,Apple Airpods Headphones,1,150,01/16/19 18:05,"957 Adams St, Los Angeles, CA 90001" +155396,AAA Batteries (4-pack),1,2.99,01/16/19 18:05,"957 Adams St, Los Angeles, CA 90001" +155397,Bose SoundSport Headphones,1,99.99,01/27/19 21:25,"442 River St, Seattle, WA 98101" +155398,AA Batteries (4-pack),1,3.84,01/03/19 20:34,"532 Lakeview St, Los Angeles, CA 90001" +155399,Bose SoundSport Headphones,1,99.99,01/19/19 14:27,"704 Maple St, San Francisco, CA 94016" +155400,Bose SoundSport Headphones,1,99.99,01/11/19 16:59,"636 Meadow St, New York City, NY 10001" +155401,iPhone,1,700,01/29/19 18:11,"352 Ridge St, Portland, OR 97035" +155402,27in FHD Monitor,1,149.99,01/03/19 11:35,"874 Park St, San Francisco, CA 94016" +155403,Apple Airpods Headphones,1,150,01/29/19 16:28,"700 Willow St, San Francisco, CA 94016" +155404,AAA Batteries (4-pack),2,2.99,01/30/19 17:06,"601 Jackson St, Atlanta, GA 30301" +155405,iPhone,1,700,01/26/19 21:02,"252 Pine St, New York City, NY 10001" +155406,Bose SoundSport Headphones,1,99.99,01/08/19 00:06,"246 4th St, Los Angeles, CA 90001" +155407,AAA Batteries (4-pack),2,2.99,01/10/19 18:53,"859 12th St, Atlanta, GA 30301" +155408,AAA Batteries (4-pack),1,2.99,01/25/19 23:08,"167 Sunset St, Los Angeles, CA 90001" +155409,AA Batteries (4-pack),1,3.84,01/31/19 20:10,"877 Walnut St, Atlanta, GA 30301" +155410,Macbook Pro Laptop,1,1700,01/28/19 18:47,"708 Main St, New York City, NY 10001" +155411,Wired Headphones,1,11.99,01/10/19 21:38,"273 North St, Austin, TX 73301" +155412,Lightning Charging Cable,1,14.95,01/28/19 23:16,"276 Adams St, Portland, ME 04101" +155413,Bose SoundSport Headphones,1,99.99,01/29/19 09:57,"316 Ridge St, Atlanta, GA 30301" +155414,USB-C Charging Cable,1,11.95,01/08/19 07:58,"56 North St, San Francisco, CA 94016" +155415,Lightning Charging Cable,1,14.95,01/24/19 19:19,"406 Johnson St, Portland, ME 04101" +155416,AAA Batteries (4-pack),1,2.99,01/05/19 12:04,"295 Hill St, San Francisco, CA 94016" +155417,AAA Batteries (4-pack),3,2.99,01/31/19 09:58,"442 Willow St, San Francisco, CA 94016" +155418,Lightning Charging Cable,2,14.95,01/26/19 15:46,"202 Adams St, New York City, NY 10001" +155419,AAA Batteries (4-pack),1,2.99,01/19/19 20:46,"60 South St, New York City, NY 10001" +155420,Wired Headphones,1,11.99,01/16/19 22:37,"480 1st St, Dallas, TX 75001" +155421,USB-C Charging Cable,1,11.95,01/17/19 15:17,"774 North St, Portland, ME 04101" +155422,AA Batteries (4-pack),1,3.84,01/17/19 19:59,"998 12th St, Los Angeles, CA 90001" +155423,AA Batteries (4-pack),1,3.84,01/18/19 23:27,"412 Maple St, Atlanta, GA 30301" +155424,AAA Batteries (4-pack),1,2.99,01/25/19 20:08,"538 Spruce St, San Francisco, CA 94016" +155424,27in FHD Monitor,1,149.99,01/25/19 20:08,"538 Spruce St, San Francisco, CA 94016" +155425,Macbook Pro Laptop,1,1700,01/02/19 21:50,"708 Johnson St, San Francisco, CA 94016" +155426,Google Phone,1,600,01/29/19 11:35,"684 Sunset St, San Francisco, CA 94016" +155426,USB-C Charging Cable,1,11.95,01/29/19 11:35,"684 Sunset St, San Francisco, CA 94016" +155427,AAA Batteries (4-pack),4,2.99,01/15/19 10:12,"299 Maple St, Los Angeles, CA 90001" +155428,27in 4K Gaming Monitor,1,389.99,01/15/19 18:07,"53 Madison St, San Francisco, CA 94016" +155429,Apple Airpods Headphones,1,150,01/18/19 12:59,"264 Highland St, Los Angeles, CA 90001" +155430,USB-C Charging Cable,1,11.95,01/19/19 21:26,"583 Adams St, New York City, NY 10001" +155431,34in Ultrawide Monitor,1,379.99,01/15/19 22:25,"665 Pine St, Atlanta, GA 30301" +155432,AA Batteries (4-pack),1,3.84,01/20/19 16:44,"948 5th St, San Francisco, CA 94016" +155433,AA Batteries (4-pack),1,3.84,01/03/19 14:24,"580 Adams St, San Francisco, CA 94016" +155434,Lightning Charging Cable,1,14.95,01/12/19 10:59,"532 Maple St, Seattle, WA 98101" +155435,Lightning Charging Cable,1,14.95,01/16/19 16:03,"625 Chestnut St, Portland, OR 97035" +155436,ThinkPad Laptop,1,999.99,01/31/19 22:00,"276 Elm St, Austin, TX 73301" +155437,34in Ultrawide Monitor,1,379.99,01/08/19 09:47,"256 Sunset St, Dallas, TX 75001" +155438,Bose SoundSport Headphones,1,99.99,01/17/19 10:15,"568 14th St, Boston, MA 02215" +155439,Google Phone,1,600,01/12/19 15:02,"229 6th St, New York City, NY 10001" +155440,27in FHD Monitor,1,149.99,01/01/19 12:22,"619 Highland St, New York City, NY 10001" +155441,Lightning Charging Cable,1,14.95,01/23/19 02:27,"960 West St, Los Angeles, CA 90001" +155442,Apple Airpods Headphones,1,150,01/16/19 04:23,"528 10th St, Boston, MA 02215" +155443,Apple Airpods Headphones,1,150,01/28/19 09:57,"63 8th St, Los Angeles, CA 90001" +155444,Bose SoundSport Headphones,1,99.99,01/02/19 19:56,"99 Adams St, Atlanta, GA 30301" +155445,USB-C Charging Cable,1,11.95,01/21/19 17:02,"204 6th St, San Francisco, CA 94016" +155446,USB-C Charging Cable,1,11.95,01/11/19 12:34,"888 Center St, Boston, MA 02215" +155447,AAA Batteries (4-pack),1,2.99,01/15/19 11:33,"682 Lake St, Dallas, TX 75001" +155447,Bose SoundSport Headphones,1,99.99,01/15/19 11:33,"682 Lake St, Dallas, TX 75001" +155448,34in Ultrawide Monitor,1,379.99,01/05/19 22:04,"345 Lakeview St, Portland, OR 97035" +155449,Google Phone,1,600,01/26/19 18:56,"977 Park St, Dallas, TX 75001" +155450,USB-C Charging Cable,1,11.95,01/26/19 09:59,"21 Washington St, Seattle, WA 98101" +155451,Bose SoundSport Headphones,1,99.99,01/10/19 20:49,"416 11th St, San Francisco, CA 94016" +155452,Bose SoundSport Headphones,1,99.99,01/17/19 20:01,"782 Cedar St, San Francisco, CA 94016" +155453,Bose SoundSport Headphones,1,99.99,01/15/19 08:13,"94 Main St, New York City, NY 10001" +155454,Apple Airpods Headphones,1,150,01/19/19 00:28,"582 Maple St, Portland, ME 04101" +155455,USB-C Charging Cable,1,11.95,01/06/19 21:00,"643 9th St, Portland, OR 97035" +155456,Vareebadd Phone,1,400,01/17/19 20:47,"106 Lakeview St, Atlanta, GA 30301" +155457,USB-C Charging Cable,1,11.95,01/14/19 21:15,"802 12th St, San Francisco, CA 94016" +155458,AA Batteries (4-pack),2,3.84,01/02/19 13:28,"600 North St, Seattle, WA 98101" +155458,Wired Headphones,2,11.99,01/02/19 13:28,"600 North St, Seattle, WA 98101" +155459,Apple Airpods Headphones,1,150,01/02/19 17:54,"369 14th St, New York City, NY 10001" +155460,Bose SoundSport Headphones,1,99.99,01/05/19 14:30,"610 Lake St, Boston, MA 02215" +155461,AA Batteries (4-pack),1,3.84,01/03/19 18:57,"559 6th St, San Francisco, CA 94016" +155462,AA Batteries (4-pack),1,3.84,01/31/19 18:42,"716 Dogwood St, San Francisco, CA 94016" +155463,20in Monitor,1,109.99,01/17/19 16:21,"175 2nd St, Seattle, WA 98101" +155464,Vareebadd Phone,1,400,01/19/19 10:11,"10 Meadow St, Boston, MA 02215" +155465,Apple Airpods Headphones,1,150,01/31/19 12:08,"431 Lake St, Austin, TX 73301" +155466,AA Batteries (4-pack),2,3.84,01/23/19 16:29,"342 8th St, New York City, NY 10001" +155467,AAA Batteries (4-pack),1,2.99,01/12/19 19:13,"731 Adams St, Seattle, WA 98101" +155468,Lightning Charging Cable,1,14.95,01/10/19 18:17,"104 Forest St, Boston, MA 02215" +155469,Flatscreen TV,1,300,01/08/19 13:06,"960 Willow St, San Francisco, CA 94016" +155470,27in FHD Monitor,1,149.99,01/06/19 19:41,"424 Main St, Dallas, TX 75001" +155471,AAA Batteries (4-pack),2,2.99,01/22/19 09:55,"893 12th St, Boston, MA 02215" +155472,27in FHD Monitor,1,149.99,01/21/19 08:08,"351 Dogwood St, Austin, TX 73301" +155473,AA Batteries (4-pack),1,3.84,01/01/19 10:42,"128 Washington St, Los Angeles, CA 90001" +155474,AAA Batteries (4-pack),2,2.99,01/28/19 18:02,"912 Jackson St, Los Angeles, CA 90001" +155475,AAA Batteries (4-pack),1,2.99,01/07/19 09:23,"990 9th St, Los Angeles, CA 90001" +155476,Wired Headphones,3,11.99,01/07/19 12:12,"905 Highland St, San Francisco, CA 94016" +155477,Lightning Charging Cable,1,14.95,01/12/19 18:55,"730 North St, Austin, TX 73301" +155478,iPhone,1,700,01/21/19 03:27,"755 North St, San Francisco, CA 94016" +155478,Wired Headphones,1,11.99,01/21/19 03:27,"755 North St, San Francisco, CA 94016" +155479,Bose SoundSport Headphones,1,99.99,01/17/19 15:28,"252 Spruce St, Dallas, TX 75001" +155480,USB-C Charging Cable,1,11.95,01/17/19 20:10,"867 Forest St, Los Angeles, CA 90001" +155481,Bose SoundSport Headphones,1,99.99,01/08/19 15:29,"468 Main St, Boston, MA 02215" +155482,Lightning Charging Cable,1,14.95,01/23/19 13:43,"802 Lakeview St, San Francisco, CA 94016" +155483,ThinkPad Laptop,1,999.99,01/27/19 10:16,"519 Main St, Boston, MA 02215" +155484,27in FHD Monitor,1,149.99,01/01/19 13:03,"102 Main St, Atlanta, GA 30301" +155485,Wired Headphones,1,11.99,01/27/19 23:15,"944 Willow St, Dallas, TX 75001" +155486,Lightning Charging Cable,1,14.95,01/28/19 19:22,"496 Ridge St, San Francisco, CA 94016" +155487,Wired Headphones,1,11.99,01/23/19 10:10,"111 2nd St, Seattle, WA 98101" +155488,USB-C Charging Cable,1,11.95,01/02/19 08:40,"482 13th St, Los Angeles, CA 90001" +155489,Flatscreen TV,1,300,01/07/19 14:34,"41 River St, Los Angeles, CA 90001" +155490,Lightning Charging Cable,1,14.95,01/14/19 20:44,"381 2nd St, Atlanta, GA 30301" +155491,USB-C Charging Cable,1,11.95,01/03/19 16:34,"524 14th St, New York City, NY 10001" +155492,Google Phone,1,600,01/03/19 12:23,"877 Meadow St, Boston, MA 02215" +155493,Bose SoundSport Headphones,1,99.99,01/28/19 19:56,"256 Lincoln St, Atlanta, GA 30301" +155494,Apple Airpods Headphones,1,150,01/04/19 08:17,"604 Meadow St, Boston, MA 02215" +155495,27in 4K Gaming Monitor,1,389.99,01/06/19 17:18,"902 Adams St, Los Angeles, CA 90001" +155496,Apple Airpods Headphones,1,150,01/04/19 23:20,"39 Walnut St, San Francisco, CA 94016" +155497,AA Batteries (4-pack),1,3.84,01/30/19 12:49,"693 Walnut St, San Francisco, CA 94016" +155498,USB-C Charging Cable,1,11.95,01/29/19 11:04,"888 Forest St, New York City, NY 10001" +155499,USB-C Charging Cable,1,11.95,01/04/19 18:31,"158 West St, Boston, MA 02215" +155500,AA Batteries (4-pack),1,3.84,01/23/19 10:55,"349 Jefferson St, San Francisco, CA 94016" +155501,Apple Airpods Headphones,1,150,01/18/19 23:54,"266 Elm St, New York City, NY 10001" +155502,Lightning Charging Cable,1,14.95,01/25/19 20:19,"918 Ridge St, Dallas, TX 75001" +155503,34in Ultrawide Monitor,1,379.99,01/17/19 10:57,"30 4th St, Atlanta, GA 30301" +155504,Lightning Charging Cable,1,14.95,01/10/19 14:07,"855 Adams St, San Francisco, CA 94016" +155505,27in FHD Monitor,1,149.99,01/25/19 14:14,"769 5th St, San Francisco, CA 94016" +155506,Apple Airpods Headphones,1,150,01/18/19 09:06,"830 1st St, Dallas, TX 75001" +155507,AAA Batteries (4-pack),2,2.99,01/28/19 02:12,"101 Cherry St, Dallas, TX 75001" +155508,AA Batteries (4-pack),1,3.84,01/11/19 11:29,"83 South St, Seattle, WA 98101" +155509,Lightning Charging Cable,1,14.95,01/31/19 00:43,"936 11th St, Portland, OR 97035" +155510,Google Phone,1,600,01/01/19 08:35,"318 Center St, New York City, NY 10001" +155511,ThinkPad Laptop,1,999.99,01/14/19 07:39,"138 Main St, Atlanta, GA 30301" +155512,USB-C Charging Cable,1,11.95,01/04/19 15:59,"521 2nd St, Los Angeles, CA 90001" +155513,Bose SoundSport Headphones,1,99.99,01/05/19 01:43,"814 Jackson St, San Francisco, CA 94016" +155514,AAA Batteries (4-pack),2,2.99,01/17/19 12:29,"129 Hickory St, Seattle, WA 98101" +155515,AA Batteries (4-pack),1,3.84,01/29/19 10:18,"362 14th St, San Francisco, CA 94016" +155516,Apple Airpods Headphones,1,150,01/01/19 12:26,"228 Dogwood St, Los Angeles, CA 90001" +155517,USB-C Charging Cable,1,11.95,01/28/19 21:10,"268 Chestnut St, Seattle, WA 98101" +155518,27in FHD Monitor,1,149.99,01/09/19 12:38,"457 11th St, Boston, MA 02215" +155519,Bose SoundSport Headphones,1,99.99,01/10/19 13:22,"554 Lincoln St, New York City, NY 10001" +155520,ThinkPad Laptop,1,999.99,01/31/19 10:15,"576 Adams St, San Francisco, CA 94016" +155521,Lightning Charging Cable,1,14.95,01/26/19 10:27,"21 Main St, San Francisco, CA 94016" +155522,Vareebadd Phone,1,400,01/24/19 12:37,"408 Wilson St, Los Angeles, CA 90001" +155522,USB-C Charging Cable,2,11.95,01/24/19 12:37,"408 Wilson St, Los Angeles, CA 90001" +155523,AAA Batteries (4-pack),3,2.99,01/11/19 18:25,"485 Maple St, Atlanta, GA 30301" +155523,ThinkPad Laptop,1,999.99,01/11/19 18:25,"485 Maple St, Atlanta, GA 30301" +155524,AAA Batteries (4-pack),2,2.99,01/08/19 04:35,"534 10th St, Boston, MA 02215" +155525,Macbook Pro Laptop,1,1700,01/27/19 08:34,"276 14th St, New York City, NY 10001" +155526,Apple Airpods Headphones,1,150,01/26/19 12:41,"782 Maple St, San Francisco, CA 94016" +155527,Bose SoundSport Headphones,1,99.99,01/06/19 06:52,"823 Ridge St, New York City, NY 10001" +155528,AAA Batteries (4-pack),1,2.99,01/11/19 20:38,"922 Sunset St, Seattle, WA 98101" +155529,ThinkPad Laptop,1,999.99,01/05/19 14:10,"295 9th St, San Francisco, CA 94016" +155530,USB-C Charging Cable,1,11.95,01/22/19 01:43,"348 Ridge St, Dallas, TX 75001" +155531,AA Batteries (4-pack),1,3.84,01/24/19 08:51,"92 Church St, New York City, NY 10001" +155532,USB-C Charging Cable,1,11.95,01/11/19 13:41,"199 Cherry St, Los Angeles, CA 90001" +155533,Apple Airpods Headphones,1,150,01/05/19 16:26,"665 Meadow St, Atlanta, GA 30301" +155534,Bose SoundSport Headphones,1,99.99,01/08/19 11:31,"308 6th St, Portland, OR 97035" +155535,USB-C Charging Cable,1,11.95,01/11/19 12:46,"78 Center St, New York City, NY 10001" +155536,Apple Airpods Headphones,1,150,01/22/19 19:32,"898 Cherry St, Los Angeles, CA 90001" +155537,AAA Batteries (4-pack),1,2.99,01/18/19 21:43,"125 Lakeview St, Los Angeles, CA 90001" +155538,AA Batteries (4-pack),1,3.84,01/16/19 17:13,"114 9th St, New York City, NY 10001" +155539,Apple Airpods Headphones,1,150,01/04/19 16:58,"579 13th St, Dallas, TX 75001" +155540,USB-C Charging Cable,2,11.95,01/16/19 12:43,"292 Jefferson St, Los Angeles, CA 90001" +155541,USB-C Charging Cable,1,11.95,01/02/19 14:09,"982 Hickory St, Atlanta, GA 30301" +155542,Bose SoundSport Headphones,2,99.99,01/26/19 19:23,"956 Ridge St, Los Angeles, CA 90001" +155543,Wired Headphones,2,11.99,01/09/19 23:28,"479 Cedar St, New York City, NY 10001" +155544,USB-C Charging Cable,1,11.95,01/11/19 19:05,"52 2nd St, Dallas, TX 75001" +155545,Lightning Charging Cable,1,14.95,01/26/19 13:37,"192 Center St, Austin, TX 73301" +155546,Apple Airpods Headphones,1,150,01/02/19 18:42,"643 6th St, San Francisco, CA 94016" +155547,Google Phone,1,600,01/01/19 18:32,"793 Meadow St, San Francisco, CA 94016" +155548,AA Batteries (4-pack),1,3.84,01/07/19 17:07,"605 9th St, Portland, ME 04101" +155549,Bose SoundSport Headphones,1,99.99,01/02/19 20:54,"620 Madison St, Seattle, WA 98101" +155550,USB-C Charging Cable,1,11.95,01/14/19 17:32,"446 Adams St, Boston, MA 02215" +155551,Wired Headphones,1,11.99,01/09/19 19:24,"293 Lake St, Dallas, TX 75001" +155552,Apple Airpods Headphones,1,150,01/02/19 23:29,"100 5th St, New York City, NY 10001" +155553,Flatscreen TV,1,300,01/25/19 22:28,"214 West St, Los Angeles, CA 90001" +155554,Bose SoundSport Headphones,1,99.99,01/21/19 09:53,"348 5th St, Atlanta, GA 30301" +155555,USB-C Charging Cable,1,11.95,01/20/19 10:43,"225 Elm St, San Francisco, CA 94016" +155556,AAA Batteries (4-pack),3,2.99,01/13/19 17:56,"300 West St, Los Angeles, CA 90001" +155557,Wired Headphones,1,11.99,01/04/19 15:23,"33 Hickory St, New York City, NY 10001" +155558,Lightning Charging Cable,1,14.95,01/07/19 12:05,"4 Willow St, Seattle, WA 98101" +155559,Lightning Charging Cable,1,14.95,01/13/19 16:16,"132 Center St, New York City, NY 10001" +155560,Apple Airpods Headphones,1,150,01/28/19 21:19,"337 6th St, Portland, OR 97035" +155561,27in 4K Gaming Monitor,1,389.99,01/31/19 18:44,"445 Lincoln St, San Francisco, CA 94016" +155562,Bose SoundSport Headphones,1,99.99,01/24/19 09:59,"914 River St, Los Angeles, CA 90001" +155563,AAA Batteries (4-pack),4,2.99,01/27/19 11:36,"49 Ridge St, Dallas, TX 75001" +155564,Wired Headphones,1,11.99,01/13/19 01:43,"13 West St, New York City, NY 10001" +155565,Lightning Charging Cable,1,14.95,01/15/19 06:59,"843 1st St, Seattle, WA 98101" +155566,iPhone,1,700,01/12/19 23:39,"627 West St, Portland, ME 04101" +155567,34in Ultrawide Monitor,1,379.99,01/28/19 21:33,"560 Church St, Dallas, TX 75001" +155568,20in Monitor,1,109.99,01/08/19 16:29,"597 Elm St, San Francisco, CA 94016" +155569,AA Batteries (4-pack),1,3.84,01/02/19 10:05,"150 4th St, Dallas, TX 75001" +155570,Google Phone,1,600,01/19/19 13:07,"185 7th St, Los Angeles, CA 90001" +155570,USB-C Charging Cable,1,11.95,01/19/19 13:07,"185 7th St, Los Angeles, CA 90001" +155570,Apple Airpods Headphones,1,150,01/19/19 13:07,"185 7th St, Los Angeles, CA 90001" +155571,AA Batteries (4-pack),1,3.84,01/15/19 10:40,"318 Lakeview St, Seattle, WA 98101" +155572,Google Phone,1,600,01/26/19 20:04,"158 Pine St, San Francisco, CA 94016" +155572,USB-C Charging Cable,1,11.95,01/26/19 20:04,"158 Pine St, San Francisco, CA 94016" +155573,27in 4K Gaming Monitor,1,389.99,01/14/19 04:21,"715 6th St, Austin, TX 73301" +155574,34in Ultrawide Monitor,1,379.99,01/22/19 08:32,"198 Sunset St, Boston, MA 02215" +155575,iPhone,1,700,01/06/19 11:30,"687 Cherry St, San Francisco, CA 94016" +155575,Lightning Charging Cable,1,14.95,01/06/19 11:30,"687 Cherry St, San Francisco, CA 94016" +155576,AA Batteries (4-pack),1,3.84,01/09/19 20:55,"562 Chestnut St, Los Angeles, CA 90001" +155577,USB-C Charging Cable,1,11.95,01/19/19 20:42,"897 5th St, Seattle, WA 98101" +155578,27in FHD Monitor,1,149.99,01/27/19 15:49,"505 Madison St, Boston, MA 02215" +155579,AA Batteries (4-pack),2,3.84,01/15/19 19:35,"435 Jackson St, Seattle, WA 98101" +155580,AA Batteries (4-pack),1,3.84,01/26/19 16:10,"562 Meadow St, Los Angeles, CA 90001" +155581,27in FHD Monitor,1,149.99,01/16/19 23:54,"995 Jefferson St, Boston, MA 02215" +155582,Lightning Charging Cable,1,14.95,01/18/19 11:25,"43 Lincoln St, San Francisco, CA 94016" +,,,,, +155583,Apple Airpods Headphones,1,150,01/15/19 22:04,"206 9th St, Boston, MA 02215" +155584,USB-C Charging Cable,1,11.95,01/01/19 17:55,"308 Lincoln St, Los Angeles, CA 90001" +155585,iPhone,1,700,01/11/19 07:01,"469 1st St, Atlanta, GA 30301" +155586,iPhone,1,700,01/05/19 16:56,"938 West St, Los Angeles, CA 90001" +155586,Wired Headphones,2,11.99,01/05/19 16:56,"938 West St, Los Angeles, CA 90001" +155587,ThinkPad Laptop,1,999.99,01/11/19 14:32,"504 9th St, Los Angeles, CA 90001" +155588,27in 4K Gaming Monitor,1,389.99,01/21/19 12:15,"613 North St, Los Angeles, CA 90001" +155589,Google Phone,1,600,01/28/19 18:08,"352 Pine St, San Francisco, CA 94016" +155589,Wired Headphones,1,11.99,01/28/19 18:08,"352 Pine St, San Francisco, CA 94016" +155590,USB-C Charging Cable,1,11.95,01/21/19 07:03,"461 Lake St, New York City, NY 10001" +155591,AA Batteries (4-pack),1,3.84,01/10/19 12:25,"318 Center St, San Francisco, CA 94016" +155592,20in Monitor,1,109.99,01/27/19 07:22,"648 Forest St, Los Angeles, CA 90001" +155593,Lightning Charging Cable,1,14.95,01/18/19 13:15,"825 Jackson St, Seattle, WA 98101" +155594,27in 4K Gaming Monitor,1,389.99,01/02/19 21:34,"93 Walnut St, San Francisco, CA 94016" +155595,27in 4K Gaming Monitor,1,389.99,01/25/19 20:58,"39 Washington St, San Francisco, CA 94016" +155596,AA Batteries (4-pack),4,3.84,01/10/19 20:26,"986 Park St, Portland, OR 97035" +155597,ThinkPad Laptop,1,999.99,01/07/19 18:25,"43 South St, Atlanta, GA 30301" +155598,Apple Airpods Headphones,1,150,01/24/19 12:09,"200 River St, Los Angeles, CA 90001" +155599,27in FHD Monitor,1,149.99,01/27/19 17:17,"589 Wilson St, Los Angeles, CA 90001" +155600,iPhone,1,700,01/11/19 20:23,"3 Adams St, Atlanta, GA 30301" +155601,AA Batteries (4-pack),1,3.84,01/29/19 10:03,"293 Wilson St, Seattle, WA 98101" +155602,iPhone,1,700,01/05/19 10:31,"701 Cherry St, New York City, NY 10001" +155603,Vareebadd Phone,1,400,01/11/19 11:24,"523 9th St, Seattle, WA 98101" +155603,Wired Headphones,1,11.99,01/11/19 11:24,"523 9th St, Seattle, WA 98101" +155604,AAA Batteries (4-pack),1,2.99,01/20/19 16:43,"5 Meadow St, Los Angeles, CA 90001" +155605,AA Batteries (4-pack),1,3.84,01/01/19 22:42,"305 Elm St, Seattle, WA 98101" +155606,AA Batteries (4-pack),1,3.84,01/31/19 11:11,"536 Maple St, New York City, NY 10001" +155607,AA Batteries (4-pack),1,3.84,01/17/19 18:57,"625 Meadow St, Los Angeles, CA 90001" +155608,Wired Headphones,1,11.99,01/12/19 20:37,"417 West St, Atlanta, GA 30301" +155609,Macbook Pro Laptop,1,1700,01/01/19 18:52,"22 Main St, San Francisco, CA 94016" +155610,Wired Headphones,1,11.99,01/15/19 19:12,"292 Lake St, Atlanta, GA 30301" +155611,Flatscreen TV,1,300,01/21/19 18:51,"826 6th St, New York City, NY 10001" +155612,Wired Headphones,2,11.99,01/25/19 21:16,"230 Dogwood St, Dallas, TX 75001" +155613,ThinkPad Laptop,1,999.99,01/13/19 22:21,"463 Jefferson St, Atlanta, GA 30301" +155613,USB-C Charging Cable,1,11.95,01/13/19 22:21,"463 Jefferson St, Atlanta, GA 30301" +155614,Wired Headphones,1,11.99,01/17/19 01:25,"589 Elm St, New York City, NY 10001" +155615,Wired Headphones,1,11.99,01/20/19 10:59,"311 6th St, San Francisco, CA 94016" +155616,Lightning Charging Cable,1,14.95,01/24/19 17:43,"834 Sunset St, New York City, NY 10001" +155617,27in 4K Gaming Monitor,1,389.99,01/26/19 19:07,"390 Spruce St, Los Angeles, CA 90001" +155618,Lightning Charging Cable,1,14.95,01/06/19 09:06,"194 Maple St, Portland, ME 04101" +155619,LG Dryer,1,600.0,01/13/19 22:48,"902 Madison St, Dallas, TX 75001" +155620,Flatscreen TV,1,300,01/20/19 12:16,"587 River St, San Francisco, CA 94016" +155621,USB-C Charging Cable,1,11.95,01/04/19 14:00,"331 8th St, Boston, MA 02215" +155622,Bose SoundSport Headphones,1,99.99,01/02/19 19:21,"710 Cherry St, Portland, ME 04101" +155623,Macbook Pro Laptop,1,1700,01/12/19 16:15,"930 7th St, San Francisco, CA 94016" +155624,34in Ultrawide Monitor,1,379.99,01/22/19 15:02,"547 13th St, San Francisco, CA 94016" +155625,Wired Headphones,1,11.99,01/07/19 17:24,"490 Dogwood St, Boston, MA 02215" +155626,Wired Headphones,1,11.99,01/29/19 15:31,"822 1st St, New York City, NY 10001" +155627,27in 4K Gaming Monitor,1,389.99,01/26/19 19:33,"570 Forest St, Boston, MA 02215" +155628,Bose SoundSport Headphones,1,99.99,01/24/19 06:00,"687 2nd St, Portland, ME 04101" +155629,iPhone,1,700,01/10/19 20:36,"699 4th St, Los Angeles, CA 90001" +155630,Flatscreen TV,1,300,01/07/19 21:25,"812 Hickory St, Boston, MA 02215" +155631,Lightning Charging Cable,1,14.95,01/01/19 13:32,"862 Hill St, Los Angeles, CA 90001" +155632,iPhone,1,700,01/07/19 02:28,"43 Johnson St, San Francisco, CA 94016" +155633,ThinkPad Laptop,1,999.99,01/30/19 13:03,"422 Hill St, San Francisco, CA 94016" +155633,iPhone,1,700,01/30/19 13:03,"422 Hill St, San Francisco, CA 94016" +155634,Wired Headphones,1,11.99,01/04/19 08:48,"56 13th St, Boston, MA 02215" +155635,Lightning Charging Cable,1,14.95,01/06/19 14:06,"541 Madison St, New York City, NY 10001" +155636,AAA Batteries (4-pack),1,2.99,01/22/19 20:47,"258 Main St, Portland, OR 97035" +155637,Google Phone,1,600,01/13/19 10:47,"149 Madison St, Atlanta, GA 30301" +155638,20in Monitor,1,109.99,01/20/19 16:15,"134 11th St, Los Angeles, CA 90001" +155639,AA Batteries (4-pack),1,3.84,01/28/19 21:04,"75 11th St, Seattle, WA 98101" +155640,AA Batteries (4-pack),2,3.84,01/12/19 21:39,"206 Cedar St, San Francisco, CA 94016" +155641,34in Ultrawide Monitor,1,379.99,01/05/19 21:02,"440 Willow St, Boston, MA 02215" +155642,AA Batteries (4-pack),2,3.84,01/16/19 12:35,"176 Cherry St, San Francisco, CA 94016" +155643,Wired Headphones,1,11.99,01/01/19 17:11,"416 Meadow St, San Francisco, CA 94016" +155644,Wired Headphones,1,11.99,01/04/19 08:37,"850 Cedar St, Los Angeles, CA 90001" +155645,27in 4K Gaming Monitor,1,389.99,01/31/19 19:48,"733 5th St, Boston, MA 02215" +155646,Apple Airpods Headphones,1,150,01/06/19 14:00,"748 7th St, Dallas, TX 75001" +155647,AAA Batteries (4-pack),1,2.99,01/20/19 12:37,"990 Maple St, Boston, MA 02215" +155648,AAA Batteries (4-pack),1,2.99,01/31/19 14:35,"699 Dogwood St, Austin, TX 73301" +155649,iPhone,1,700,01/09/19 17:58,"349 12th St, San Francisco, CA 94016" +155650,AAA Batteries (4-pack),2,2.99,01/11/19 14:59,"657 Ridge St, Austin, TX 73301" +155651,27in FHD Monitor,1,149.99,01/16/19 22:01,"510 Willow St, Los Angeles, CA 90001" +155652,Wired Headphones,1,11.99,01/22/19 22:04,"88 Adams St, Los Angeles, CA 90001" +155653,Apple Airpods Headphones,1,150,01/01/19 10:15,"793 11th St, Los Angeles, CA 90001" +155654,Bose SoundSport Headphones,1,99.99,01/31/19 16:59,"395 Johnson St, New York City, NY 10001" +155655,AAA Batteries (4-pack),2,2.99,01/18/19 17:15,"928 Park St, Los Angeles, CA 90001" +155656,Wired Headphones,1,11.99,01/26/19 12:30,"29 Lincoln St, San Francisco, CA 94016" +155657,USB-C Charging Cable,1,11.95,01/19/19 08:25,"973 Forest St, Dallas, TX 75001" +155658,Bose SoundSport Headphones,1,99.99,01/11/19 18:07,"968 Church St, San Francisco, CA 94016" +155659,USB-C Charging Cable,1,11.95,01/15/19 14:48,"173 Highland St, Austin, TX 73301" +155660,iPhone,1,700,01/14/19 19:13,"322 9th St, New York City, NY 10001" +155661,Apple Airpods Headphones,1,150,01/01/19 11:13,"987 Cherry St, Boston, MA 02215" +155662,Lightning Charging Cable,1,14.95,01/04/19 10:59,"327 River St, Los Angeles, CA 90001" +155663,Apple Airpods Headphones,1,150,01/17/19 21:02,"963 11th St, San Francisco, CA 94016" +155664,Lightning Charging Cable,1,14.95,01/10/19 15:15,"448 Chestnut St, Austin, TX 73301" +155665,Apple Airpods Headphones,1,150,01/05/19 21:52,"157 Hickory St, Boston, MA 02215" +155666,Bose SoundSport Headphones,1,99.99,01/13/19 18:12,"662 9th St, Boston, MA 02215" +155667,Bose SoundSport Headphones,1,99.99,01/31/19 13:04,"236 West St, Portland, OR 97035" +155668,20in Monitor,1,109.99,01/28/19 21:09,"587 Willow St, Atlanta, GA 30301" +155669,Flatscreen TV,1,300,01/08/19 12:49,"755 West St, New York City, NY 10001" +155670,Apple Airpods Headphones,1,150,01/08/19 14:53,"476 Cedar St, New York City, NY 10001" +155671,Wired Headphones,1,11.99,01/23/19 12:21,"14 Hickory St, San Francisco, CA 94016" +155672,27in 4K Gaming Monitor,1,389.99,01/29/19 18:14,"354 Lake St, Boston, MA 02215" +155673,Bose SoundSport Headphones,2,99.99,01/18/19 01:47,"968 7th St, San Francisco, CA 94016" +155674,Apple Airpods Headphones,1,150,01/16/19 15:02,"49 Sunset St, Dallas, TX 75001" +155675,27in 4K Gaming Monitor,1,389.99,01/17/19 17:47,"220 Spruce St, Portland, OR 97035" +155676,Wired Headphones,1,11.99,01/14/19 19:10,"918 7th St, San Francisco, CA 94016" +155677,USB-C Charging Cable,1,11.95,01/25/19 13:28,"66 West St, Atlanta, GA 30301" +155678,Lightning Charging Cable,1,14.95,01/14/19 08:13,"386 4th St, Portland, ME 04101" +155679,Google Phone,1,600,01/25/19 20:25,"839 Lake St, Los Angeles, CA 90001" +155680,Bose SoundSport Headphones,1,99.99,01/01/19 12:18,"30 Hickory St, Austin, TX 73301" +155681,Bose SoundSport Headphones,1,99.99,01/16/19 22:29,"456 Hickory St, San Francisco, CA 94016" +155682,AA Batteries (4-pack),4,3.84,01/29/19 08:36,"431 Dogwood St, Los Angeles, CA 90001" +155683,AAA Batteries (4-pack),1,2.99,01/13/19 12:10,"560 Hill St, Boston, MA 02215" +155684,Macbook Pro Laptop,1,1700,01/13/19 21:36,"12 Washington St, San Francisco, CA 94016" +155685,Wired Headphones,1,11.99,01/05/19 08:31,"686 1st St, San Francisco, CA 94016" +155686,AAA Batteries (4-pack),1,2.99,01/18/19 11:47,"766 Spruce St, Austin, TX 73301" +155687,USB-C Charging Cable,1,11.95,01/02/19 15:03,"12 Johnson St, Seattle, WA 98101" +155688,Lightning Charging Cable,1,14.95,01/25/19 12:41,"299 River St, San Francisco, CA 94016" +155689,Wired Headphones,1,11.99,01/17/19 12:45,"25 Elm St, San Francisco, CA 94016" +155690,AAA Batteries (4-pack),1,2.99,01/09/19 18:55,"336 Madison St, Austin, TX 73301" +155691,Wired Headphones,1,11.99,01/09/19 19:32,"842 North St, San Francisco, CA 94016" +155692,USB-C Charging Cable,1,11.95,01/31/19 23:16,"769 7th St, Boston, MA 02215" +155693,Apple Airpods Headphones,1,150,01/10/19 12:42,"170 Johnson St, Atlanta, GA 30301" +155694,Lightning Charging Cable,1,14.95,01/27/19 11:33,"285 1st St, Dallas, TX 75001" +155695,Lightning Charging Cable,1,14.95,01/06/19 18:21,"124 North St, Austin, TX 73301" +155696,Wired Headphones,1,11.99,01/09/19 08:04,"84 Willow St, Dallas, TX 75001" +155697,AAA Batteries (4-pack),1,2.99,01/15/19 22:23,"516 Ridge St, San Francisco, CA 94016" +155698,Apple Airpods Headphones,1,150,01/15/19 19:50,"806 Adams St, Los Angeles, CA 90001" +155699,AA Batteries (4-pack),2,3.84,01/19/19 12:20,"56 Cherry St, Atlanta, GA 30301" +155700,Wired Headphones,1,11.99,01/21/19 01:05,"697 West St, New York City, NY 10001" +155701,USB-C Charging Cable,1,11.95,01/01/19 20:58,"248 14th St, Dallas, TX 75001" +155702,AA Batteries (4-pack),1,3.84,01/17/19 08:17,"87 Cedar St, San Francisco, CA 94016" +155703,Lightning Charging Cable,1,14.95,01/15/19 20:56,"162 6th St, Los Angeles, CA 90001" +155704,USB-C Charging Cable,1,11.95,01/07/19 17:36,"290 River St, San Francisco, CA 94016" +155705,Google Phone,1,600,01/31/19 17:43,"615 9th St, Atlanta, GA 30301" +155706,USB-C Charging Cable,1,11.95,01/09/19 16:43,"185 Jefferson St, Boston, MA 02215" +155707,AA Batteries (4-pack),1,3.84,01/05/19 16:31,"259 8th St, San Francisco, CA 94016" +155708,AAA Batteries (4-pack),1,2.99,01/04/19 14:09,"55 Lincoln St, Los Angeles, CA 90001" +155709,AA Batteries (4-pack),1,3.84,01/13/19 15:54,"220 4th St, New York City, NY 10001" +155710,iPhone,1,700,01/15/19 12:11,"955 Highland St, Portland, OR 97035" +155711,34in Ultrawide Monitor,1,379.99,01/09/19 08:06,"705 10th St, Atlanta, GA 30301" +155712,Wired Headphones,1,11.99,01/06/19 21:51,"493 Center St, San Francisco, CA 94016" +155713,Apple Airpods Headphones,1,150,01/30/19 19:15,"96 River St, Atlanta, GA 30301" +155714,Bose SoundSport Headphones,1,99.99,01/05/19 14:56,"16 Park St, Boston, MA 02215" +155715,Lightning Charging Cable,1,14.95,01/22/19 06:56,"811 1st St, Los Angeles, CA 90001" +155716,AAA Batteries (4-pack),1,2.99,01/13/19 20:34,"28 Forest St, Los Angeles, CA 90001" +155717,Wired Headphones,1,11.99,01/26/19 10:44,"523 Lake St, Atlanta, GA 30301" +155718,Apple Airpods Headphones,1,150,02/01/19 01:01,"664 Jefferson St, Los Angeles, CA 90001" +155719,Wired Headphones,1,11.99,01/06/19 07:13,"953 6th St, San Francisco, CA 94016" +155720,Lightning Charging Cable,2,14.95,01/08/19 10:49,"953 6th St, San Francisco, CA 94016" +155721,27in 4K Gaming Monitor,1,389.99,01/03/19 19:05,"545 Jackson St, San Francisco, CA 94016" +155722,Lightning Charging Cable,1,14.95,01/20/19 23:40,"790 Walnut St, Atlanta, GA 30301" +155723,Wired Headphones,1,11.99,01/04/19 07:24,"327 Chestnut St, Austin, TX 73301" +155724,Apple Airpods Headphones,1,150,01/22/19 17:23,"710 Hickory St, San Francisco, CA 94016" +155725,Wired Headphones,1,11.99,01/10/19 16:39,"655 6th St, Austin, TX 73301" +155726,USB-C Charging Cable,1,11.95,01/03/19 22:41,"383 7th St, Boston, MA 02215" +155727,USB-C Charging Cable,1,11.95,01/26/19 12:22,"263 10th St, San Francisco, CA 94016" +155728,Google Phone,1,600,01/17/19 09:29,"249 Lake St, Boston, MA 02215" +155729,27in 4K Gaming Monitor,1,389.99,01/15/19 23:08,"690 Maple St, San Francisco, CA 94016" +155730,Flatscreen TV,1,300,01/29/19 14:41,"403 Park St, Los Angeles, CA 90001" +155731,ThinkPad Laptop,1,999.99,01/25/19 11:57,"94 Washington St, San Francisco, CA 94016" +155732,iPhone,1,700,01/05/19 16:09,"408 Main St, Boston, MA 02215" +155733,Vareebadd Phone,1,400,01/20/19 18:47,"19 7th St, Los Angeles, CA 90001" +155734,AA Batteries (4-pack),2,3.84,01/24/19 18:08,"272 Center St, Boston, MA 02215" +155735,Bose SoundSport Headphones,1,99.99,01/24/19 08:36,"496 10th St, Atlanta, GA 30301" +155736,Flatscreen TV,1,300,01/30/19 11:31,"658 6th St, Boston, MA 02215" +155737,Lightning Charging Cable,1,14.95,01/17/19 17:59,"186 12th St, Dallas, TX 75001" +155738,Wired Headphones,1,11.99,01/15/19 14:46,"464 Main St, Austin, TX 73301" +155739,Wired Headphones,1,11.99,01/20/19 23:13,"19 11th St, Boston, MA 02215" +155740,34in Ultrawide Monitor,1,379.99,01/17/19 20:48,"788 14th St, Los Angeles, CA 90001" +155741,20in Monitor,1,109.99,01/09/19 00:48,"796 13th St, Portland, OR 97035" +155742,Lightning Charging Cable,1,14.95,01/29/19 09:19,"130 Main St, San Francisco, CA 94016" +155743,20in Monitor,1,109.99,01/17/19 22:51,"406 Park St, San Francisco, CA 94016" +155744,Wired Headphones,1,11.99,01/24/19 09:43,"280 Center St, San Francisco, CA 94016" +155745,Google Phone,1,600,01/09/19 16:27,"687 Washington St, San Francisco, CA 94016" +155745,USB-C Charging Cable,1,11.95,01/09/19 16:27,"687 Washington St, San Francisco, CA 94016" +155746,Lightning Charging Cable,1,14.95,01/18/19 12:42,"910 Highland St, New York City, NY 10001" +155747,AAA Batteries (4-pack),1,2.99,01/01/19 16:19,"786 Church St, Boston, MA 02215" +155748,Lightning Charging Cable,1,14.95,01/02/19 00:25,"215 11th St, Seattle, WA 98101" +155749,Flatscreen TV,1,300,01/23/19 11:51,"396 Lakeview St, Dallas, TX 75001" +155750,Apple Airpods Headphones,1,150,01/25/19 22:04,"14 Park St, New York City, NY 10001" +155751,AA Batteries (4-pack),1,3.84,01/01/19 19:25,"290 Hickory St, Austin, TX 73301" +155752,Apple Airpods Headphones,1,150,01/18/19 12:36,"247 Lincoln St, Atlanta, GA 30301" +155753,Lightning Charging Cable,1,14.95,01/26/19 17:05,"589 Cedar St, New York City, NY 10001" +155754,AAA Batteries (4-pack),1,2.99,01/05/19 21:45,"488 8th St, Los Angeles, CA 90001" +155755,Bose SoundSport Headphones,1,99.99,01/22/19 18:57,"138 Main St, San Francisco, CA 94016" +155756,AAA Batteries (4-pack),1,2.99,01/21/19 17:09,"431 South St, Dallas, TX 75001" +155757,Flatscreen TV,1,300,01/23/19 13:22,"209 Cherry St, Austin, TX 73301" +155758,ThinkPad Laptop,1,999.99,01/21/19 10:03,"199 11th St, Austin, TX 73301" +155759,Flatscreen TV,1,300,01/04/19 14:20,"276 10th St, Los Angeles, CA 90001" +155760,20in Monitor,1,109.99,01/14/19 16:40,"419 Forest St, Dallas, TX 75001" +155761,27in FHD Monitor,1,149.99,01/05/19 19:01,"421 4th St, San Francisco, CA 94016" +155762,AAA Batteries (4-pack),1,2.99,01/16/19 22:15,"786 Lake St, New York City, NY 10001" +155763,Apple Airpods Headphones,1,150,01/14/19 14:35,"644 4th St, Atlanta, GA 30301" +155764,USB-C Charging Cable,1,11.95,01/31/19 20:58,"225 12th St, Portland, OR 97035" +155765,USB-C Charging Cable,1,11.95,01/13/19 15:02,"308 Madison St, San Francisco, CA 94016" +155766,Lightning Charging Cable,1,14.95,01/21/19 20:57,"140 14th St, San Francisco, CA 94016" +155767,Lightning Charging Cable,1,14.95,01/31/19 13:35,"331 Willow St, Boston, MA 02215" +155768,Wired Headphones,1,11.99,01/12/19 21:10,"169 Pine St, Los Angeles, CA 90001" +155769,Lightning Charging Cable,1,14.95,01/24/19 19:51,"64 Meadow St, Portland, OR 97035" +155770,Flatscreen TV,1,300,01/02/19 00:46,"532 West St, Dallas, TX 75001" +155771,AAA Batteries (4-pack),1,2.99,01/25/19 19:25,"465 Main St, Los Angeles, CA 90001" +155772,34in Ultrawide Monitor,1,379.99,01/25/19 16:06,"140 2nd St, New York City, NY 10001" +155773,Apple Airpods Headphones,1,150,01/15/19 07:41,"976 Lincoln St, Seattle, WA 98101" +155774,USB-C Charging Cable,1,11.95,01/25/19 13:31,"896 12th St, Austin, TX 73301" +155775,Wired Headphones,1,11.99,01/27/19 14:51,"427 Jackson St, Boston, MA 02215" +155776,Macbook Pro Laptop,1,1700,01/26/19 18:15,"25 Center St, Austin, TX 73301" +155777,AAA Batteries (4-pack),2,2.99,01/21/19 23:32,"120 Church St, Los Angeles, CA 90001" +155778,AA Batteries (4-pack),1,3.84,01/31/19 10:34,"449 Wilson St, San Francisco, CA 94016" +155779,27in FHD Monitor,1,149.99,01/20/19 11:03,"175 Meadow St, Dallas, TX 75001" +155780,Google Phone,2,600,01/01/19 10:31,"173 2nd St, San Francisco, CA 94016" +155781,Lightning Charging Cable,1,14.95,01/16/19 20:08,"537 12th St, New York City, NY 10001" +155782,27in 4K Gaming Monitor,1,389.99,01/14/19 09:39,"250 Hickory St, Seattle, WA 98101" +,,,,, +155783,Wired Headphones,1,11.99,01/07/19 18:58,"614 Chestnut St, Seattle, WA 98101" +155784,iPhone,1,700,01/13/19 00:58,"601 Wilson St, San Francisco, CA 94016" +155784,Lightning Charging Cable,1,14.95,01/13/19 00:58,"601 Wilson St, San Francisco, CA 94016" +155784,Wired Headphones,1,11.99,01/13/19 00:58,"601 Wilson St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +155785,Apple Airpods Headphones,1,150,01/07/19 09:43,"30 North St, San Francisco, CA 94016" +155786,Wired Headphones,1,11.99,01/25/19 17:45,"131 West St, Portland, OR 97035" +155787,Wired Headphones,1,11.99,01/13/19 09:34,"370 Park St, Austin, TX 73301" +155788,AAA Batteries (4-pack),1,2.99,01/02/19 19:07,"57 6th St, Portland, OR 97035" +155789,AAA Batteries (4-pack),1,2.99,01/11/19 18:07,"611 Forest St, San Francisco, CA 94016" +155790,USB-C Charging Cable,1,11.95,01/18/19 19:47,"693 Center St, New York City, NY 10001" +155791,Google Phone,1,600,01/31/19 20:48,"528 13th St, San Francisco, CA 94016" +155792,20in Monitor,1,109.99,01/26/19 18:28,"666 8th St, San Francisco, CA 94016" +155793,AA Batteries (4-pack),2,3.84,01/19/19 19:06,"803 Church St, San Francisco, CA 94016" +155794,Google Phone,1,600,01/10/19 09:06,"177 2nd St, Dallas, TX 75001" +155795,USB-C Charging Cable,1,11.95,01/03/19 12:57,"794 12th St, Atlanta, GA 30301" +155796,AA Batteries (4-pack),1,3.84,01/11/19 17:08,"861 River St, Los Angeles, CA 90001" +155797,Apple Airpods Headphones,1,150,01/27/19 20:45,"786 Main St, New York City, NY 10001" +155798,USB-C Charging Cable,1,11.95,01/20/19 12:28,"726 Park St, Los Angeles, CA 90001" +155799,Lightning Charging Cable,1,14.95,01/09/19 19:46,"113 Main St, San Francisco, CA 94016" +155800,AA Batteries (4-pack),1,3.84,01/28/19 22:36,"925 4th St, Boston, MA 02215" +155801,20in Monitor,1,109.99,01/29/19 07:04,"446 6th St, Portland, OR 97035" +155802,USB-C Charging Cable,1,11.95,01/03/19 18:11,"218 Ridge St, Portland, OR 97035" +155803,Lightning Charging Cable,1,14.95,01/20/19 09:37,"279 Center St, San Francisco, CA 94016" +155804,27in FHD Monitor,1,149.99,01/29/19 11:36,"625 Jefferson St, Portland, OR 97035" +155805,Lightning Charging Cable,1,14.95,01/01/19 20:38,"778 Highland St, Boston, MA 02215" +155806,Apple Airpods Headphones,1,150,01/21/19 17:43,"560 Wilson St, Los Angeles, CA 90001" +155807,27in FHD Monitor,1,149.99,01/29/19 14:13,"412 Washington St, San Francisco, CA 94016" +155808,AAA Batteries (4-pack),5,2.99,01/09/19 13:57,"572 Hill St, San Francisco, CA 94016" +155809,20in Monitor,1,109.99,01/22/19 14:25,"105 Forest St, Boston, MA 02215" +155810,34in Ultrawide Monitor,1,379.99,01/15/19 19:12,"420 Park St, San Francisco, CA 94016" +155811,AA Batteries (4-pack),1,3.84,01/22/19 22:26,"340 Hickory St, Portland, OR 97035" +155812,Apple Airpods Headphones,1,150,01/05/19 19:46,"945 4th St, Atlanta, GA 30301" +155813,AAA Batteries (4-pack),1,2.99,01/07/19 11:15,"201 10th St, Boston, MA 02215" +155814,AA Batteries (4-pack),1,3.84,01/24/19 15:28,"713 Cedar St, San Francisco, CA 94016" +155815,Lightning Charging Cable,1,14.95,01/04/19 21:26,"579 9th St, Boston, MA 02215" +155816,Bose SoundSport Headphones,1,99.99,01/04/19 17:26,"632 14th St, Boston, MA 02215" +155817,USB-C Charging Cable,2,11.95,01/07/19 23:02,"677 Adams St, Dallas, TX 75001" +155818,Wired Headphones,1,11.99,01/08/19 16:27,"434 1st St, San Francisco, CA 94016" +155819,AA Batteries (4-pack),1,3.84,01/10/19 19:31,"582 Chestnut St, Portland, OR 97035" +155820,AAA Batteries (4-pack),1,2.99,01/31/19 11:07,"115 14th St, Los Angeles, CA 90001" +155821,34in Ultrawide Monitor,1,379.99,01/20/19 20:35,"377 6th St, Los Angeles, CA 90001" +155822,AAA Batteries (4-pack),2,2.99,01/30/19 18:22,"431 6th St, Boston, MA 02215" +155823,Bose SoundSport Headphones,1,99.99,01/24/19 22:55,"770 Walnut St, San Francisco, CA 94016" +155824,ThinkPad Laptop,1,999.99,01/03/19 04:18,"92 4th St, Atlanta, GA 30301" +155825,Wired Headphones,1,11.99,01/25/19 20:05,"657 14th St, Boston, MA 02215" +155826,Lightning Charging Cable,1,14.95,01/04/19 12:50,"20 5th St, Austin, TX 73301" +155827,AA Batteries (4-pack),4,3.84,01/25/19 15:52,"189 12th St, Dallas, TX 75001" +155828,AAA Batteries (4-pack),1,2.99,01/03/19 09:49,"611 Lakeview St, Dallas, TX 75001" +155829,AA Batteries (4-pack),1,3.84,01/03/19 15:42,"606 Adams St, San Francisco, CA 94016" +155830,USB-C Charging Cable,3,11.95,01/21/19 08:34,"648 Willow St, New York City, NY 10001" +155831,Lightning Charging Cable,1,14.95,01/06/19 12:53,"392 West St, Atlanta, GA 30301" +155832,AAA Batteries (4-pack),1,2.99,01/24/19 22:17,"484 Ridge St, Boston, MA 02215" +155833,Wired Headphones,1,11.99,01/28/19 15:51,"936 Sunset St, Boston, MA 02215" +155834,Bose SoundSport Headphones,1,99.99,01/11/19 19:39,"135 South St, Dallas, TX 75001" +155835,AA Batteries (4-pack),1,3.84,01/26/19 10:23,"432 13th St, San Francisco, CA 94016" +155836,Google Phone,1,600,01/15/19 13:58,"157 Spruce St, Portland, OR 97035" +155837,Bose SoundSport Headphones,1,99.99,01/29/19 11:44,"910 Center St, Portland, OR 97035" +155838,AA Batteries (4-pack),2,3.84,01/08/19 09:24,"143 Washington St, San Francisco, CA 94016" +155839,iPhone,1,700,01/26/19 17:28,"421 Washington St, Portland, OR 97035" +155840,USB-C Charging Cable,1,11.95,01/08/19 22:22,"536 North St, Seattle, WA 98101" +155841,AA Batteries (4-pack),4,3.84,01/03/19 13:33,"68 8th St, San Francisco, CA 94016" +155842,USB-C Charging Cable,1,11.95,01/08/19 18:23,"814 10th St, Los Angeles, CA 90001" +155843,Lightning Charging Cable,1,14.95,01/08/19 23:28,"58 5th St, Seattle, WA 98101" +155844,AA Batteries (4-pack),1,3.84,01/21/19 22:35,"210 14th St, Seattle, WA 98101" +155845,Bose SoundSport Headphones,1,99.99,01/01/19 13:37,"612 River St, Boston, MA 02215" +155846,Bose SoundSport Headphones,1,99.99,01/27/19 14:38,"636 2nd St, San Francisco, CA 94016" +155847,AAA Batteries (4-pack),1,2.99,01/31/19 10:01,"672 Spruce St, San Francisco, CA 94016" +155848,AA Batteries (4-pack),2,3.84,01/31/19 13:26,"274 Jackson St, Dallas, TX 75001" +155849,27in FHD Monitor,1,149.99,01/13/19 13:37,"918 Meadow St, Atlanta, GA 30301" +155850,20in Monitor,1,109.99,01/06/19 20:57,"997 Park St, San Francisco, CA 94016" +155851,iPhone,1,700,01/24/19 15:16,"168 Highland St, San Francisco, CA 94016" +155851,Apple Airpods Headphones,1,150,01/24/19 15:16,"168 Highland St, San Francisco, CA 94016" +155852,Bose SoundSport Headphones,1,99.99,01/03/19 13:32,"737 Willow St, San Francisco, CA 94016" +155853,AAA Batteries (4-pack),1,2.99,01/04/19 12:41,"319 8th St, New York City, NY 10001" +155854,Apple Airpods Headphones,1,150,01/18/19 15:07,"687 Jefferson St, San Francisco, CA 94016" +155855,Google Phone,1,600,01/17/19 18:59,"238 Maple St, San Francisco, CA 94016" +155855,Bose SoundSport Headphones,1,99.99,01/17/19 18:59,"238 Maple St, San Francisco, CA 94016" +155856,Macbook Pro Laptop,1,1700,01/05/19 17:05,"560 Lakeview St, Portland, OR 97035" +155857,Lightning Charging Cable,2,14.95,01/13/19 12:51,"802 Ridge St, Los Angeles, CA 90001" +155858,AAA Batteries (4-pack),2,2.99,01/09/19 15:39,"771 Jefferson St, Atlanta, GA 30301" +155859,Lightning Charging Cable,1,14.95,01/26/19 21:49,"453 11th St, Boston, MA 02215" +155860,USB-C Charging Cable,1,11.95,01/18/19 11:16,"284 Jefferson St, San Francisco, CA 94016" +155861,Wired Headphones,1,11.99,01/06/19 23:00,"977 10th St, Los Angeles, CA 90001" +155862,AA Batteries (4-pack),1,3.84,01/12/19 13:01,"773 Willow St, Los Angeles, CA 90001" +155863,Lightning Charging Cable,1,14.95,01/15/19 10:14,"365 South St, Dallas, TX 75001" +155864,Lightning Charging Cable,1,14.95,01/18/19 15:25,"161 Lakeview St, Portland, OR 97035" +155865,Google Phone,1,600,01/15/19 00:41,"127 6th St, San Francisco, CA 94016" +155866,USB-C Charging Cable,1,11.95,01/08/19 14:53,"872 Washington St, Atlanta, GA 30301" +155867,27in FHD Monitor,1,149.99,01/17/19 22:48,"24 Chestnut St, Portland, OR 97035" +155868,USB-C Charging Cable,1,11.95,01/25/19 22:07,"664 Cherry St, Boston, MA 02215" +155869,Wired Headphones,1,11.99,01/05/19 22:48,"195 13th St, Boston, MA 02215" +155870,AAA Batteries (4-pack),2,2.99,01/19/19 23:29,"394 Highland St, San Francisco, CA 94016" +155871,27in FHD Monitor,1,149.99,01/02/19 14:32,"772 Church St, Los Angeles, CA 90001" +155872,Bose SoundSport Headphones,1,99.99,01/20/19 20:48,"712 Chestnut St, Atlanta, GA 30301" +155873,AAA Batteries (4-pack),3,2.99,01/19/19 10:40,"442 Wilson St, New York City, NY 10001" +155874,34in Ultrawide Monitor,1,379.99,01/11/19 10:37,"351 Meadow St, San Francisco, CA 94016" +155875,Lightning Charging Cable,1,14.95,01/04/19 18:21,"15 Lincoln St, Los Angeles, CA 90001" +155876,iPhone,1,700,01/04/19 14:46,"413 Adams St, Atlanta, GA 30301" +155877,34in Ultrawide Monitor,1,379.99,01/25/19 16:24,"653 Jefferson St, Los Angeles, CA 90001" +155878,Apple Airpods Headphones,1,150,01/05/19 19:39,"931 Church St, San Francisco, CA 94016" +155879,Lightning Charging Cable,1,14.95,01/05/19 09:38,"350 Adams St, San Francisco, CA 94016" +155880,20in Monitor,1,109.99,01/20/19 19:14,"613 Jefferson St, Los Angeles, CA 90001" +155881,Wired Headphones,1,11.99,01/17/19 13:22,"758 14th St, Los Angeles, CA 90001" +155882,Apple Airpods Headphones,1,150,01/12/19 07:56,"10 Maple St, Portland, OR 97035" +155883,Google Phone,1,600,01/13/19 21:39,"70 Hill St, Dallas, TX 75001" +155883,USB-C Charging Cable,1,11.95,01/13/19 21:39,"70 Hill St, Dallas, TX 75001" +155884,27in 4K Gaming Monitor,1,389.99,01/31/19 18:57,"729 Center St, New York City, NY 10001" +155885,Wired Headphones,1,11.99,01/10/19 12:36,"769 Washington St, Dallas, TX 75001" +155886,Wired Headphones,1,11.99,01/11/19 23:28,"632 14th St, Seattle, WA 98101" +155887,AAA Batteries (4-pack),1,2.99,01/11/19 20:46,"848 1st St, Los Angeles, CA 90001" +155888,Lightning Charging Cable,1,14.95,01/14/19 23:38,"483 Jefferson St, Los Angeles, CA 90001" +155888,Lightning Charging Cable,1,14.95,01/14/19 23:38,"483 Jefferson St, Los Angeles, CA 90001" +155889,Lightning Charging Cable,1,14.95,01/14/19 18:27,"664 7th St, Seattle, WA 98101" +155890,USB-C Charging Cable,1,11.95,01/05/19 22:24,"582 Sunset St, Los Angeles, CA 90001" +155891,Apple Airpods Headphones,1,150,01/25/19 13:56,"490 Lake St, San Francisco, CA 94016" +155892,Wired Headphones,1,11.99,01/09/19 14:46,"224 Lakeview St, Los Angeles, CA 90001" +155893,Macbook Pro Laptop,1,1700,01/11/19 10:00,"907 Lakeview St, Los Angeles, CA 90001" +155894,AA Batteries (4-pack),1,3.84,01/13/19 17:06,"662 West St, Atlanta, GA 30301" +155895,AAA Batteries (4-pack),1,2.99,01/27/19 17:06,"965 Jefferson St, San Francisco, CA 94016" +155896,Bose SoundSport Headphones,1,99.99,01/24/19 00:53,"863 Lincoln St, San Francisco, CA 94016" +155897,Apple Airpods Headphones,1,150,01/09/19 13:39,"537 9th St, Atlanta, GA 30301" +155898,iPhone,1,700,01/22/19 12:39,"403 Park St, Atlanta, GA 30301" +155899,iPhone,1,700,01/25/19 14:07,"117 6th St, Seattle, WA 98101" +155900,34in Ultrawide Monitor,1,379.99,01/17/19 14:00,"674 River St, San Francisco, CA 94016" +155901,Apple Airpods Headphones,1,150,01/05/19 19:13,"658 Sunset St, Boston, MA 02215" +155902,Wired Headphones,1,11.99,01/31/19 12:44,"347 8th St, Dallas, TX 75001" +155903,AA Batteries (4-pack),1,3.84,01/01/19 12:42,"225 Highland St, New York City, NY 10001" +155904,AA Batteries (4-pack),1,3.84,01/29/19 18:52,"261 Pine St, Los Angeles, CA 90001" +155905,AAA Batteries (4-pack),1,2.99,01/19/19 13:25,"55 North St, Boston, MA 02215" +155906,ThinkPad Laptop,1,999.99,01/11/19 20:32,"227 4th St, Los Angeles, CA 90001" +155906,AAA Batteries (4-pack),1,2.99,01/11/19 20:32,"227 4th St, Los Angeles, CA 90001" +155907,AA Batteries (4-pack),1,3.84,01/12/19 22:56,"941 8th St, San Francisco, CA 94016" +155908,AA Batteries (4-pack),1,3.84,01/17/19 20:22,"16 Highland St, Los Angeles, CA 90001" +155909,Apple Airpods Headphones,1,150,01/20/19 22:20,"913 1st St, Los Angeles, CA 90001" +155910,Lightning Charging Cable,1,14.95,01/14/19 11:35,"651 Forest St, San Francisco, CA 94016" +155911,Lightning Charging Cable,1,14.95,01/09/19 19:09,"947 Johnson St, San Francisco, CA 94016" +155912,USB-C Charging Cable,1,11.95,01/31/19 20:17,"800 Wilson St, Boston, MA 02215" +155913,AA Batteries (4-pack),1,3.84,01/01/19 06:56,"589 6th St, Austin, TX 73301" +155914,AA Batteries (4-pack),1,3.84,01/10/19 22:29,"234 Highland St, Dallas, TX 75001" +155915,USB-C Charging Cable,1,11.95,01/17/19 17:39,"367 8th St, New York City, NY 10001" +155916,AAA Batteries (4-pack),2,2.99,01/30/19 16:09,"454 Madison St, Dallas, TX 75001" +155917,ThinkPad Laptop,1,999.99,01/30/19 12:44,"933 Lake St, New York City, NY 10001" +155918,USB-C Charging Cable,3,11.95,01/15/19 12:32,"620 11th St, San Francisco, CA 94016" +155919,iPhone,1,700,01/16/19 06:08,"685 10th St, Austin, TX 73301" +155920,USB-C Charging Cable,1,11.95,01/20/19 12:56,"736 Jackson St, San Francisco, CA 94016" +155921,USB-C Charging Cable,1,11.95,01/16/19 14:55,"93 South St, Dallas, TX 75001" +155922,Apple Airpods Headphones,1,150,01/25/19 13:47,"301 Walnut St, New York City, NY 10001" +155923,Macbook Pro Laptop,1,1700,01/24/19 11:21,"960 Church St, New York City, NY 10001" +155924,Google Phone,1,600,01/24/19 09:19,"103 12th St, Seattle, WA 98101" +155924,Bose SoundSport Headphones,1,99.99,01/24/19 09:19,"103 12th St, Seattle, WA 98101" +155925,27in 4K Gaming Monitor,1,389.99,01/18/19 14:07,"901 11th St, Seattle, WA 98101" +155926,AA Batteries (4-pack),1,3.84,01/28/19 13:10,"271 5th St, Los Angeles, CA 90001" +155927,Lightning Charging Cable,1,14.95,01/25/19 23:56,"251 Center St, Atlanta, GA 30301" +155928,AA Batteries (4-pack),1,3.84,01/07/19 10:53,"370 Adams St, Boston, MA 02215" +155929,Bose SoundSport Headphones,1,99.99,01/18/19 14:40,"844 Dogwood St, Los Angeles, CA 90001" +155930,Bose SoundSport Headphones,1,99.99,01/02/19 11:00,"976 Church St, New York City, NY 10001" +155931,USB-C Charging Cable,1,11.95,01/21/19 17:45,"199 13th St, Los Angeles, CA 90001" +155932,Apple Airpods Headphones,1,150,01/18/19 18:55,"324 Cherry St, Atlanta, GA 30301" +155933,27in 4K Gaming Monitor,1,389.99,01/12/19 12:33,"283 Chestnut St, New York City, NY 10001" +155934,27in FHD Monitor,1,149.99,01/15/19 15:24,"936 Church St, Boston, MA 02215" +155935,Bose SoundSport Headphones,1,99.99,01/19/19 14:18,"311 Madison St, Portland, OR 97035" +155936,Lightning Charging Cable,1,14.95,01/25/19 19:20,"32 12th St, San Francisco, CA 94016" +155937,AA Batteries (4-pack),1,3.84,01/23/19 09:49,"955 7th St, Los Angeles, CA 90001" +155938,USB-C Charging Cable,1,11.95,01/24/19 11:52,"47 Madison St, Portland, OR 97035" +155939,Apple Airpods Headphones,1,150,01/20/19 23:43,"304 Jackson St, Dallas, TX 75001" +155940,Wired Headphones,1,11.99,01/20/19 18:55,"25 1st St, San Francisco, CA 94016" +155941,Wired Headphones,1,11.99,01/10/19 13:13,"431 Meadow St, Los Angeles, CA 90001" +155942,Wired Headphones,2,11.99,01/21/19 12:03,"800 8th St, Austin, TX 73301" +155943,AAA Batteries (4-pack),3,2.99,01/21/19 07:41,"661 Church St, Los Angeles, CA 90001" +155944,Wired Headphones,1,11.99,01/03/19 22:59,"183 Willow St, New York City, NY 10001" +155945,Lightning Charging Cable,2,14.95,01/03/19 15:35,"538 Willow St, Dallas, TX 75001" +155946,AAA Batteries (4-pack),2,2.99,01/04/19 07:40,"824 Maple St, San Francisco, CA 94016" +155947,Lightning Charging Cable,1,14.95,01/28/19 03:25,"642 Lake St, Portland, OR 97035" +155947,AA Batteries (4-pack),1,3.84,01/28/19 03:25,"642 Lake St, Portland, OR 97035" +155948,34in Ultrawide Monitor,1,379.99,01/28/19 14:44,"676 11th St, Austin, TX 73301" +155949,Lightning Charging Cable,1,14.95,01/29/19 08:57,"364 1st St, Atlanta, GA 30301" +155950,USB-C Charging Cable,1,11.95,01/21/19 07:56,"693 Wilson St, Seattle, WA 98101" +155951,Lightning Charging Cable,1,14.95,01/06/19 15:39,"870 2nd St, San Francisco, CA 94016" +155952,AA Batteries (4-pack),2,3.84,01/01/19 11:18,"739 River St, New York City, NY 10001" +155953,Vareebadd Phone,1,400,01/24/19 07:57,"958 Elm St, San Francisco, CA 94016" +155954,Apple Airpods Headphones,1,150,01/20/19 15:50,"592 5th St, Dallas, TX 75001" +155955,Macbook Pro Laptop,1,1700,01/12/19 22:59,"53 Hill St, San Francisco, CA 94016" +155956,AAA Batteries (4-pack),2,2.99,01/12/19 10:52,"750 Cherry St, Austin, TX 73301" +155957,Bose SoundSport Headphones,1,99.99,01/13/19 14:59,"237 Park St, San Francisco, CA 94016" +155958,Google Phone,1,600,01/24/19 11:17,"461 Elm St, Boston, MA 02215" +155958,USB-C Charging Cable,1,11.95,01/24/19 11:17,"461 Elm St, Boston, MA 02215" +155959,Apple Airpods Headphones,1,150,01/11/19 14:18,"100 13th St, San Francisco, CA 94016" +155960,AA Batteries (4-pack),1,3.84,01/20/19 15:03,"734 9th St, Boston, MA 02215" +155961,Apple Airpods Headphones,1,150,01/15/19 17:31,"970 13th St, Seattle, WA 98101" +155962,Lightning Charging Cable,1,14.95,01/29/19 15:35,"478 River St, Portland, OR 97035" +155963,Lightning Charging Cable,1,14.95,01/08/19 05:57,"566 Hickory St, Seattle, WA 98101" +155964,AAA Batteries (4-pack),1,2.99,01/28/19 16:21,"744 West St, Los Angeles, CA 90001" +155965,AA Batteries (4-pack),1,3.84,01/18/19 21:24,"750 Johnson St, San Francisco, CA 94016" +155966,20in Monitor,1,109.99,01/22/19 18:06,"18 Elm St, Austin, TX 73301" +155967,AA Batteries (4-pack),1,3.84,01/20/19 15:09,"266 2nd St, New York City, NY 10001" +155968,Wired Headphones,1,11.99,01/05/19 17:02,"44 Hickory St, New York City, NY 10001" +155969,34in Ultrawide Monitor,1,379.99,01/21/19 15:56,"729 Church St, San Francisco, CA 94016" +155970,Wired Headphones,1,11.99,01/31/19 20:40,"718 13th St, San Francisco, CA 94016" +155971,iPhone,1,700,01/11/19 17:50,"64 Wilson St, Portland, ME 04101" +155972,Bose SoundSport Headphones,1,99.99,01/09/19 17:38,"913 4th St, Austin, TX 73301" +155973,Apple Airpods Headphones,1,150,01/10/19 16:56,"605 7th St, San Francisco, CA 94016" +155974,AA Batteries (4-pack),1,3.84,01/30/19 13:40,"680 Forest St, San Francisco, CA 94016" +155975,27in 4K Gaming Monitor,1,389.99,01/14/19 11:23,"563 Meadow St, Dallas, TX 75001" +155976,34in Ultrawide Monitor,1,379.99,01/07/19 21:09,"423 Walnut St, Boston, MA 02215" +155977,Flatscreen TV,1,300,01/04/19 20:49,"531 River St, New York City, NY 10001" +155978,AA Batteries (4-pack),2,3.84,01/22/19 10:47,"953 Cherry St, New York City, NY 10001" +155979,AAA Batteries (4-pack),2,2.99,01/30/19 20:19,"234 12th St, New York City, NY 10001" +155980,Apple Airpods Headphones,1,150,01/30/19 14:02,"265 10th St, Los Angeles, CA 90001" +155981,Apple Airpods Headphones,1,150,01/16/19 12:13,"523 Cherry St, San Francisco, CA 94016" +155982,iPhone,1,700,01/28/19 18:54,"634 Madison St, Boston, MA 02215" +155982,Lightning Charging Cable,1,14.95,01/28/19 18:54,"634 Madison St, Boston, MA 02215" +155983,Bose SoundSport Headphones,1,99.99,01/19/19 13:43,"178 Jackson St, San Francisco, CA 94016" +155984,AAA Batteries (4-pack),1,2.99,01/09/19 19:13,"299 West St, Los Angeles, CA 90001" +155985,34in Ultrawide Monitor,1,379.99,01/23/19 12:58,"308 Lake St, Austin, TX 73301" +155986,AAA Batteries (4-pack),1,2.99,01/07/19 11:50,"384 Sunset St, Seattle, WA 98101" +155987,Bose SoundSport Headphones,1,99.99,01/17/19 00:24,"458 Sunset St, San Francisco, CA 94016" +155988,27in FHD Monitor,1,149.99,01/25/19 10:22,"789 Hill St, San Francisco, CA 94016" +155989,Wired Headphones,1,11.99,01/08/19 11:33,"974 Highland St, Portland, OR 97035" +155990,Lightning Charging Cable,1,14.95,01/03/19 14:37,"673 Hickory St, Boston, MA 02215" +155991,20in Monitor,1,109.99,01/23/19 22:04,"325 Forest St, Los Angeles, CA 90001" +155992,Wired Headphones,1,11.99,01/13/19 18:02,"648 14th St, Seattle, WA 98101" +155993,Bose SoundSport Headphones,1,99.99,01/03/19 12:47,"920 13th St, Seattle, WA 98101" +155994,Lightning Charging Cable,1,14.95,01/01/19 15:09,"100 Wilson St, New York City, NY 10001" +155995,Lightning Charging Cable,1,14.95,01/27/19 18:02,"196 Highland St, San Francisco, CA 94016" +155996,AAA Batteries (4-pack),1,2.99,01/02/19 14:11,"174 West St, Los Angeles, CA 90001" +155997,Wired Headphones,2,11.99,01/09/19 07:15,"433 North St, Dallas, TX 75001" +155998,Lightning Charging Cable,1,14.95,01/29/19 21:53,"238 1st St, San Francisco, CA 94016" +155999,AAA Batteries (4-pack),1,2.99,01/28/19 07:32,"74 Center St, Austin, TX 73301" +156000,AA Batteries (4-pack),1,3.84,01/18/19 00:53,"697 Chestnut St, New York City, NY 10001" +156001,Wired Headphones,1,11.99,01/10/19 16:28,"12 River St, Seattle, WA 98101" +156002,AA Batteries (4-pack),1,3.84,01/28/19 07:12,"448 Church St, Los Angeles, CA 90001" +156003,Apple Airpods Headphones,1,150,01/16/19 13:14,"95 Lincoln St, Los Angeles, CA 90001" +156004,Bose SoundSport Headphones,1,99.99,01/05/19 17:04,"65 Lakeview St, Dallas, TX 75001" +156005,USB-C Charging Cable,2,11.95,01/08/19 10:19,"259 North St, Seattle, WA 98101" +156006,AAA Batteries (4-pack),2,2.99,01/28/19 12:54,"907 12th St, Boston, MA 02215" +156007,Lightning Charging Cable,1,14.95,01/28/19 21:58,"976 Highland St, San Francisco, CA 94016" +156008,Apple Airpods Headphones,1,150,01/24/19 20:23,"158 Cedar St, Portland, OR 97035" +156009,Wired Headphones,1,11.99,01/21/19 18:57,"876 Maple St, Los Angeles, CA 90001" +156010,Wired Headphones,3,11.99,01/15/19 12:04,"260 9th St, New York City, NY 10001" +156011,Bose SoundSport Headphones,1,99.99,01/26/19 12:55,"582 7th St, Seattle, WA 98101" +156012,Wired Headphones,1,11.99,01/23/19 01:56,"948 Lakeview St, Portland, OR 97035" +156013,USB-C Charging Cable,1,11.95,01/20/19 16:46,"669 Jefferson St, Seattle, WA 98101" +156014,27in FHD Monitor,1,149.99,01/04/19 16:56,"580 Madison St, Los Angeles, CA 90001" +156015,20in Monitor,1,109.99,01/11/19 18:00,"194 Willow St, Los Angeles, CA 90001" +156016,Apple Airpods Headphones,1,150,01/15/19 09:55,"723 Lake St, Portland, OR 97035" +156017,AAA Batteries (4-pack),1,2.99,01/16/19 21:38,"75 14th St, Dallas, TX 75001" +156018,Macbook Pro Laptop,1,1700,01/20/19 12:37,"777 Washington St, Portland, ME 04101" +156019,USB-C Charging Cable,1,11.95,01/01/19 15:40,"79 Meadow St, Boston, MA 02215" +156020,AA Batteries (4-pack),1,3.84,01/04/19 09:17,"145 North St, San Francisco, CA 94016" +156021,AAA Batteries (4-pack),2,2.99,01/12/19 23:47,"763 Cherry St, Boston, MA 02215" +156022,Bose SoundSport Headphones,1,99.99,01/13/19 16:23,"313 6th St, Los Angeles, CA 90001" +156023,Lightning Charging Cable,1,14.95,01/13/19 15:14,"538 5th St, Atlanta, GA 30301" +156024,Macbook Pro Laptop,1,1700,01/23/19 10:17,"584 Center St, New York City, NY 10001" +156024,Apple Airpods Headphones,1,150,01/23/19 10:17,"584 Center St, New York City, NY 10001" +156025,AAA Batteries (4-pack),2,2.99,01/04/19 11:46,"868 Madison St, Los Angeles, CA 90001" +156026,34in Ultrawide Monitor,1,379.99,01/18/19 18:40,"13 7th St, New York City, NY 10001" +156027,AA Batteries (4-pack),1,3.84,01/07/19 09:57,"940 River St, Dallas, TX 75001" +156028,Wired Headphones,1,11.99,01/31/19 09:38,"464 Walnut St, Dallas, TX 75001" +156029,AAA Batteries (4-pack),1,2.99,01/26/19 14:00,"86 West St, Seattle, WA 98101" +156030,Lightning Charging Cable,1,14.95,01/05/19 11:00,"567 River St, San Francisco, CA 94016" +156031,Lightning Charging Cable,1,14.95,01/25/19 14:18,"915 Elm St, San Francisco, CA 94016" +156032,AAA Batteries (4-pack),4,2.99,01/21/19 15:15,"390 8th St, Los Angeles, CA 90001" +156033,27in FHD Monitor,1,149.99,01/13/19 09:37,"753 West St, San Francisco, CA 94016" +,,,,, +156034,AAA Batteries (4-pack),1,2.99,01/28/19 11:43,"330 River St, Austin, TX 73301" +156035,USB-C Charging Cable,1,11.95,01/12/19 11:16,"886 10th St, Atlanta, GA 30301" +156036,Lightning Charging Cable,1,14.95,01/12/19 20:57,"617 5th St, Los Angeles, CA 90001" +156037,ThinkPad Laptop,1,999.99,01/31/19 08:51,"614 Madison St, San Francisco, CA 94016" +156038,Apple Airpods Headphones,1,150,01/27/19 23:20,"907 Wilson St, Los Angeles, CA 90001" +156039,Wired Headphones,1,11.99,01/12/19 04:34,"306 Madison St, Los Angeles, CA 90001" +156040,Wired Headphones,1,11.99,01/20/19 15:27,"573 Meadow St, Boston, MA 02215" +156041,USB-C Charging Cable,2,11.95,01/11/19 13:03,"843 Hickory St, Boston, MA 02215" +,,,,, +156042,AAA Batteries (4-pack),1,2.99,01/13/19 03:26,"613 Main St, Atlanta, GA 30301" +156043,AAA Batteries (4-pack),1,2.99,01/21/19 20:12,"390 Walnut St, Los Angeles, CA 90001" +156044,AA Batteries (4-pack),1,3.84,01/21/19 13:22,"306 12th St, New York City, NY 10001" +156045,Bose SoundSport Headphones,1,99.99,01/30/19 10:53,"354 8th St, San Francisco, CA 94016" +156046,AA Batteries (4-pack),1,3.84,01/18/19 18:11,"510 14th St, Dallas, TX 75001" +156047,AA Batteries (4-pack),1,3.84,01/25/19 20:41,"289 Park St, San Francisco, CA 94016" +156048,iPhone,1,700,01/16/19 12:25,"275 Highland St, Los Angeles, CA 90001" +156048,Lightning Charging Cable,1,14.95,01/16/19 12:25,"275 Highland St, Los Angeles, CA 90001" +156049,AAA Batteries (4-pack),1,2.99,01/05/19 16:35,"692 Highland St, San Francisco, CA 94016" +156050,USB-C Charging Cable,1,11.95,01/10/19 14:00,"501 8th St, Boston, MA 02215" +156051,Bose SoundSport Headphones,1,99.99,01/15/19 09:45,"198 Jackson St, Los Angeles, CA 90001" +156052,AAA Batteries (4-pack),1,2.99,01/17/19 21:05,"781 Lake St, San Francisco, CA 94016" +156053,Lightning Charging Cable,1,14.95,01/24/19 12:22,"482 Jefferson St, Dallas, TX 75001" +156054,iPhone,1,700,01/22/19 23:33,"282 Elm St, New York City, NY 10001" +156055,Wired Headphones,1,11.99,01/04/19 19:45,"882 Pine St, New York City, NY 10001" +156056,AAA Batteries (4-pack),1,2.99,01/25/19 14:33,"429 Wilson St, Los Angeles, CA 90001" +156057,AAA Batteries (4-pack),2,2.99,01/09/19 20:06,"31 6th St, Austin, TX 73301" +156058,AAA Batteries (4-pack),2,2.99,01/13/19 15:30,"48 Willow St, Boston, MA 02215" +156059,AAA Batteries (4-pack),1,2.99,01/21/19 19:29,"686 Hill St, Dallas, TX 75001" +156060,Lightning Charging Cable,1,14.95,01/31/19 23:34,"285 12th St, New York City, NY 10001" +156061,AA Batteries (4-pack),1,3.84,01/30/19 11:26,"534 Spruce St, Portland, ME 04101" +156062,Wired Headphones,1,11.99,01/14/19 09:42,"847 2nd St, New York City, NY 10001" +156063,Apple Airpods Headphones,1,150,01/07/19 22:48,"319 Lincoln St, Portland, OR 97035" +156064,Bose SoundSport Headphones,1,99.99,01/15/19 23:44,"485 11th St, New York City, NY 10001" +156065,AA Batteries (4-pack),3,3.84,01/31/19 16:13,"964 8th St, San Francisco, CA 94016" +156066,27in 4K Gaming Monitor,1,389.99,01/13/19 17:22,"670 Maple St, Boston, MA 02215" +156067,Google Phone,1,600,01/17/19 13:25,"347 Highland St, Boston, MA 02215" +156068,USB-C Charging Cable,1,11.95,01/03/19 17:16,"468 Lake St, Portland, OR 97035" +156069,Bose SoundSport Headphones,1,99.99,01/02/19 23:16,"263 Forest St, Boston, MA 02215" +156070,Lightning Charging Cable,1,14.95,01/28/19 01:16,"798 Park St, Los Angeles, CA 90001" +156071,Lightning Charging Cable,2,14.95,01/15/19 16:35,"900 Madison St, Los Angeles, CA 90001" +156072,iPhone,1,700,01/28/19 14:19,"52 Cherry St, San Francisco, CA 94016" +156072,Apple Airpods Headphones,1,150,01/28/19 14:19,"52 Cherry St, San Francisco, CA 94016" +156073,27in FHD Monitor,1,149.99,01/29/19 21:54,"67 Cherry St, San Francisco, CA 94016" +156074,AAA Batteries (4-pack),1,2.99,01/29/19 19:50,"749 Jefferson St, San Francisco, CA 94016" +156075,Wired Headphones,1,11.99,01/05/19 18:00,"481 Cherry St, Los Angeles, CA 90001" +156076,iPhone,1,700,01/04/19 17:16,"605 7th St, Atlanta, GA 30301" +156077,AA Batteries (4-pack),1,3.84,01/16/19 18:18,"676 9th St, Los Angeles, CA 90001" +156078,Lightning Charging Cable,1,14.95,01/28/19 07:50,"74 12th St, Atlanta, GA 30301" +156079,Flatscreen TV,1,300,01/30/19 11:27,"530 Jackson St, Austin, TX 73301" +156080,Apple Airpods Headphones,1,150,01/16/19 17:06,"699 Dogwood St, Seattle, WA 98101" +156081,27in FHD Monitor,1,149.99,01/20/19 21:04,"284 Church St, Dallas, TX 75001" +156082,Macbook Pro Laptop,1,1700,01/07/19 18:25,"32 Cedar St, Austin, TX 73301" +156083,ThinkPad Laptop,1,999.99,01/15/19 11:50,"67 Dogwood St, Dallas, TX 75001" +156084,27in 4K Gaming Monitor,1,389.99,01/27/19 08:29,"432 Wilson St, Los Angeles, CA 90001" +156085,34in Ultrawide Monitor,1,379.99,01/27/19 11:29,"114 Main St, Boston, MA 02215" +156086,Lightning Charging Cable,1,14.95,01/06/19 21:53,"791 South St, San Francisco, CA 94016" +156087,27in 4K Gaming Monitor,1,389.99,01/30/19 14:07,"612 North St, San Francisco, CA 94016" +156088,iPhone,1,700,01/17/19 20:20,"744 Spruce St, Los Angeles, CA 90001" +156089,Google Phone,1,600,01/24/19 13:45,"102 Lake St, Austin, TX 73301" +156090,AA Batteries (4-pack),1,3.84,01/18/19 11:36,"562 Chestnut St, Boston, MA 02215" +156091,27in FHD Monitor,1,149.99,01/06/19 15:42,"598 Church St, Seattle, WA 98101" +156092,Lightning Charging Cable,1,14.95,01/09/19 01:26,"79 Pine St, Los Angeles, CA 90001" +156093,AA Batteries (4-pack),1,3.84,01/16/19 11:09,"576 South St, Boston, MA 02215" +156094,Wired Headphones,1,11.99,01/14/19 06:07,"114 12th St, Dallas, TX 75001" +156095,Bose SoundSport Headphones,1,99.99,01/07/19 11:55,"785 Main St, Boston, MA 02215" +156096,34in Ultrawide Monitor,1,379.99,01/05/19 16:02,"825 Lake St, Los Angeles, CA 90001" +156097,20in Monitor,1,109.99,01/22/19 20:40,"85 2nd St, Los Angeles, CA 90001" +156098,USB-C Charging Cable,1,11.95,01/10/19 09:40,"394 Dogwood St, New York City, NY 10001" +156099,34in Ultrawide Monitor,1,379.99,01/09/19 00:41,"142 Spruce St, San Francisco, CA 94016" +156100,Wired Headphones,1,11.99,01/07/19 10:27,"593 4th St, San Francisco, CA 94016" +156101,iPhone,1,700,01/12/19 16:12,"893 5th St, San Francisco, CA 94016" +156101,Lightning Charging Cable,2,14.95,01/12/19 16:12,"893 5th St, San Francisco, CA 94016" +156102,Macbook Pro Laptop,1,1700,01/26/19 18:40,"46 Hill St, San Francisco, CA 94016" +156103,Apple Airpods Headphones,1,150,01/21/19 22:29,"294 5th St, San Francisco, CA 94016" +156104,Vareebadd Phone,1,400,01/25/19 12:56,"367 Maple St, Portland, OR 97035" +156105,20in Monitor,1,109.99,01/09/19 17:58,"52 Spruce St, San Francisco, CA 94016" +156106,Lightning Charging Cable,2,14.95,01/20/19 19:33,"292 14th St, San Francisco, CA 94016" +156107,Lightning Charging Cable,1,14.95,01/18/19 14:15,"832 8th St, Portland, OR 97035" +156108,ThinkPad Laptop,1,999.99,01/13/19 13:52,"198 12th St, Seattle, WA 98101" +156109,Bose SoundSport Headphones,1,99.99,01/12/19 16:08,"664 Washington St, Los Angeles, CA 90001" +156110,AAA Batteries (4-pack),2,2.99,01/18/19 23:23,"6 South St, New York City, NY 10001" +156111,Lightning Charging Cable,1,14.95,01/22/19 17:40,"751 Jefferson St, Los Angeles, CA 90001" +156112,ThinkPad Laptop,1,999.99,01/28/19 13:27,"661 4th St, New York City, NY 10001" +156113,Lightning Charging Cable,1,14.95,01/13/19 13:07,"494 Chestnut St, Atlanta, GA 30301" +156114,Flatscreen TV,1,300,01/22/19 23:29,"740 8th St, San Francisco, CA 94016" +156115,USB-C Charging Cable,2,11.95,01/16/19 22:33,"664 Lake St, New York City, NY 10001" +156116,USB-C Charging Cable,1,11.95,01/21/19 22:52,"476 Willow St, New York City, NY 10001" +156117,USB-C Charging Cable,1,11.95,01/22/19 10:23,"323 Hill St, Los Angeles, CA 90001" +156118,27in 4K Gaming Monitor,1,389.99,01/19/19 16:16,"580 13th St, Los Angeles, CA 90001" +156119,AA Batteries (4-pack),1,3.84,01/01/19 11:42,"466 Walnut St, Portland, OR 97035" +156120,Lightning Charging Cable,1,14.95,01/18/19 21:38,"852 Park St, Portland, OR 97035" +156121,Google Phone,1,600,01/13/19 11:03,"250 Church St, Los Angeles, CA 90001" +156122,Wired Headphones,1,11.99,01/25/19 00:00,"252 Chestnut St, Boston, MA 02215" +156123,Bose SoundSport Headphones,1,99.99,01/29/19 18:12,"118 Adams St, Los Angeles, CA 90001" +156124,Wired Headphones,1,11.99,01/16/19 22:53,"177 10th St, San Francisco, CA 94016" +156125,AAA Batteries (4-pack),1,2.99,01/24/19 03:48,"60 Walnut St, New York City, NY 10001" +156126,iPhone,1,700,01/12/19 22:54,"795 Forest St, Portland, OR 97035" +156127,34in Ultrawide Monitor,1,379.99,01/17/19 19:15,"593 Pine St, New York City, NY 10001" +156128,Wired Headphones,1,11.99,01/03/19 15:42,"963 Dogwood St, Boston, MA 02215" +156129,AAA Batteries (4-pack),1,2.99,01/23/19 09:29,"768 Chestnut St, Portland, ME 04101" +156130,AAA Batteries (4-pack),1,2.99,01/23/19 10:46,"450 Main St, Boston, MA 02215" +156131,Bose SoundSport Headphones,1,99.99,01/03/19 04:59,"506 Meadow St, Atlanta, GA 30301" +156132,USB-C Charging Cable,1,11.95,01/14/19 02:11,"48 Spruce St, Atlanta, GA 30301" +156133,Lightning Charging Cable,1,14.95,01/07/19 17:27,"625 Meadow St, Atlanta, GA 30301" +156134,Bose SoundSport Headphones,1,99.99,01/06/19 14:38,"195 Johnson St, Seattle, WA 98101" +156135,Google Phone,1,600,01/02/19 08:35,"293 Lincoln St, New York City, NY 10001" +156136,USB-C Charging Cable,1,11.95,01/03/19 11:37,"263 Elm St, Dallas, TX 75001" +156137,AA Batteries (4-pack),1,3.84,01/22/19 15:37,"82 Walnut St, New York City, NY 10001" +156137,20in Monitor,1,109.99,01/22/19 15:37,"82 Walnut St, New York City, NY 10001" +156138,Flatscreen TV,1,300,01/07/19 22:36,"518 13th St, Seattle, WA 98101" +156139,Lightning Charging Cable,1,14.95,01/12/19 12:43,"364 1st St, Boston, MA 02215" +156140,Bose SoundSport Headphones,1,99.99,01/02/19 00:02,"491 Madison St, Atlanta, GA 30301" +156141,Google Phone,1,600,01/23/19 16:32,"397 Highland St, New York City, NY 10001" +156141,Bose SoundSport Headphones,1,99.99,01/23/19 16:32,"397 Highland St, New York City, NY 10001" +156142,Lightning Charging Cable,1,14.95,01/30/19 09:55,"720 Lake St, Seattle, WA 98101" +156143,Apple Airpods Headphones,1,150,01/31/19 21:43,"407 North St, Dallas, TX 75001" +156144,AA Batteries (4-pack),1,3.84,01/04/19 16:47,"928 10th St, New York City, NY 10001" +156145,Apple Airpods Headphones,1,150,01/21/19 00:00,"8 Elm St, San Francisco, CA 94016" +156146,Google Phone,1,600,01/05/19 11:04,"696 4th St, Atlanta, GA 30301" +156147,AA Batteries (4-pack),1,3.84,01/28/19 12:30,"47 Madison St, San Francisco, CA 94016" +156148,Bose SoundSport Headphones,1,99.99,01/18/19 20:41,"520 8th St, San Francisco, CA 94016" +156149,Apple Airpods Headphones,1,150,01/09/19 13:59,"186 2nd St, Austin, TX 73301" +156150,USB-C Charging Cable,1,11.95,01/02/19 18:52,"627 North St, Atlanta, GA 30301" +156151,Lightning Charging Cable,1,14.95,01/26/19 09:51,"942 Park St, Los Angeles, CA 90001" +156152,27in 4K Gaming Monitor,1,389.99,01/08/19 18:48,"188 Willow St, Atlanta, GA 30301" +156153,USB-C Charging Cable,1,11.95,01/31/19 12:10,"891 Meadow St, New York City, NY 10001" +156154,Macbook Pro Laptop,1,1700,01/23/19 10:38,"829 9th St, San Francisco, CA 94016" +156155,27in 4K Gaming Monitor,1,389.99,01/15/19 12:19,"263 North St, Atlanta, GA 30301" +156156,AA Batteries (4-pack),2,3.84,01/05/19 18:33,"20 Johnson St, Los Angeles, CA 90001" +156157,USB-C Charging Cable,1,11.95,01/17/19 17:19,"940 2nd St, Boston, MA 02215" +156158,AAA Batteries (4-pack),6,2.99,01/03/19 19:36,"247 Lincoln St, San Francisco, CA 94016" +156159,Macbook Pro Laptop,1,1700,01/19/19 22:44,"715 Pine St, New York City, NY 10001" +156160,Apple Airpods Headphones,1,150,01/10/19 13:48,"513 7th St, San Francisco, CA 94016" +156161,AA Batteries (4-pack),1,3.84,01/13/19 18:11,"781 Cherry St, San Francisco, CA 94016" +156162,AAA Batteries (4-pack),1,2.99,01/04/19 14:45,"712 Dogwood St, San Francisco, CA 94016" +156163,AA Batteries (4-pack),1,3.84,01/27/19 12:37,"391 Walnut St, Portland, OR 97035" +156164,Lightning Charging Cable,1,14.95,01/02/19 12:43,"554 South St, Seattle, WA 98101" +156165,Lightning Charging Cable,1,14.95,01/16/19 14:22,"506 Jackson St, Atlanta, GA 30301" +156166,Wired Headphones,1,11.99,01/10/19 16:05,"582 5th St, Boston, MA 02215" +156167,27in FHD Monitor,1,149.99,01/23/19 17:42,"440 Highland St, San Francisco, CA 94016" +,,,,, +156168,Bose SoundSport Headphones,1,99.99,01/04/19 11:45,"776 Ridge St, Atlanta, GA 30301" +156169,Wired Headphones,1,11.99,01/04/19 10:55,"227 Elm St, San Francisco, CA 94016" +156170,Bose SoundSport Headphones,1,99.99,01/25/19 19:17,"100 6th St, Los Angeles, CA 90001" +156171,AA Batteries (4-pack),1,3.84,01/17/19 20:28,"33 12th St, Atlanta, GA 30301" +156172,ThinkPad Laptop,1,999.99,01/08/19 18:57,"596 South St, Atlanta, GA 30301" +156173,Bose SoundSport Headphones,1,99.99,01/29/19 21:11,"386 Cherry St, San Francisco, CA 94016" +156174,Wired Headphones,1,11.99,01/05/19 15:47,"992 South St, Austin, TX 73301" +156175,Lightning Charging Cable,1,14.95,01/23/19 20:14,"613 Meadow St, Boston, MA 02215" +156176,Bose SoundSport Headphones,1,99.99,01/20/19 19:39,"595 14th St, San Francisco, CA 94016" +156177,AA Batteries (4-pack),2,3.84,01/26/19 06:26,"40 Cherry St, Portland, OR 97035" +156178,Apple Airpods Headphones,1,150,01/16/19 19:17,"118 Park St, San Francisco, CA 94016" +,,,,, +156179,Flatscreen TV,1,300,01/09/19 22:39,"878 Wilson St, San Francisco, CA 94016" +156180,AA Batteries (4-pack),1,3.84,01/22/19 10:01,"405 12th St, San Francisco, CA 94016" +156181,USB-C Charging Cable,1,11.95,01/18/19 12:00,"242 Adams St, Dallas, TX 75001" +156182,USB-C Charging Cable,1,11.95,01/01/19 14:27,"516 Lincoln St, Austin, TX 73301" +156183,AA Batteries (4-pack),1,3.84,01/28/19 20:13,"851 8th St, San Francisco, CA 94016" +156184,Wired Headphones,1,11.99,01/25/19 05:48,"645 Lake St, Dallas, TX 75001" +156185,Lightning Charging Cable,2,14.95,01/12/19 11:45,"744 5th St, Boston, MA 02215" +156186,AA Batteries (4-pack),3,3.84,01/22/19 17:01,"620 9th St, Portland, ME 04101" +156187,Lightning Charging Cable,1,14.95,01/23/19 19:56,"159 Wilson St, San Francisco, CA 94016" +156188,Macbook Pro Laptop,1,1700,01/11/19 08:04,"61 Main St, Los Angeles, CA 90001" +156189,34in Ultrawide Monitor,1,379.99,01/26/19 11:43,"730 Elm St, Boston, MA 02215" +156190,AA Batteries (4-pack),1,3.84,01/06/19 13:43,"102 2nd St, Los Angeles, CA 90001" +156191,Wired Headphones,1,11.99,01/05/19 16:07,"176 River St, San Francisco, CA 94016" +156192,AA Batteries (4-pack),1,3.84,01/21/19 21:45,"303 Hickory St, San Francisco, CA 94016" +156193,Apple Airpods Headphones,1,150,01/21/19 11:37,"804 Maple St, San Francisco, CA 94016" +156194,iPhone,1,700,01/14/19 22:32,"561 1st St, Austin, TX 73301" +156194,Wired Headphones,1,11.99,01/14/19 22:32,"561 1st St, Austin, TX 73301" +156195,Wired Headphones,1,11.99,01/29/19 17:23,"341 Park St, Boston, MA 02215" +156196,USB-C Charging Cable,1,11.95,01/18/19 11:36,"849 8th St, New York City, NY 10001" +156197,AAA Batteries (4-pack),1,2.99,01/09/19 18:10,"4 Hill St, San Francisco, CA 94016" +156198,Google Phone,1,600,01/31/19 10:51,"425 Sunset St, Los Angeles, CA 90001" +156199,Lightning Charging Cable,1,14.95,01/30/19 12:16,"362 Sunset St, San Francisco, CA 94016" +156200,iPhone,1,700,01/10/19 10:56,"766 Lakeview St, New York City, NY 10001" +156201,Wired Headphones,1,11.99,01/10/19 13:47,"841 Highland St, Portland, OR 97035" +156202,Lightning Charging Cable,1,14.95,01/20/19 20:54,"252 South St, Boston, MA 02215" +156203,27in 4K Gaming Monitor,1,389.99,01/09/19 19:23,"328 Highland St, Portland, OR 97035" +156204,USB-C Charging Cable,1,11.95,01/10/19 22:56,"789 River St, Austin, TX 73301" +156204,AAA Batteries (4-pack),1,2.99,01/10/19 22:56,"789 River St, Austin, TX 73301" +156205,Apple Airpods Headphones,1,150,01/02/19 05:36,"155 Dogwood St, Portland, OR 97035" +156206,USB-C Charging Cable,1,11.95,01/15/19 10:29,"374 11th St, New York City, NY 10001" +156207,Flatscreen TV,1,300,01/17/19 11:25,"2 Highland St, Atlanta, GA 30301" +156208,Apple Airpods Headphones,1,150,01/28/19 10:13,"894 South St, Atlanta, GA 30301" +156209,USB-C Charging Cable,1,11.95,01/02/19 20:44,"452 Cherry St, San Francisco, CA 94016" +156210,Apple Airpods Headphones,1,150,01/04/19 08:24,"40 7th St, Seattle, WA 98101" +156211,Wired Headphones,1,11.99,01/15/19 19:14,"375 Dogwood St, Atlanta, GA 30301" +156212,Apple Airpods Headphones,1,150,01/27/19 15:00,"998 Dogwood St, Los Angeles, CA 90001" +156213,AA Batteries (4-pack),3,3.84,01/07/19 21:12,"978 5th St, Austin, TX 73301" +156214,Macbook Pro Laptop,1,1700,01/10/19 18:58,"424 11th St, San Francisco, CA 94016" +156215,AA Batteries (4-pack),1,3.84,01/18/19 18:48,"995 Wilson St, New York City, NY 10001" +156216,Apple Airpods Headphones,1,150,01/06/19 14:33,"831 13th St, Los Angeles, CA 90001" +156217,ThinkPad Laptop,1,999.99,01/19/19 19:35,"585 Adams St, Seattle, WA 98101" +156218,Wired Headphones,1,11.99,01/12/19 08:25,"360 Church St, New York City, NY 10001" +156219,Wired Headphones,1,11.99,01/12/19 17:50,"22 5th St, Los Angeles, CA 90001" +156220,Google Phone,1,600,01/28/19 17:14,"550 Walnut St, Seattle, WA 98101" +156221,34in Ultrawide Monitor,1,379.99,01/05/19 14:58,"58 5th St, Portland, OR 97035" +156222,27in FHD Monitor,1,149.99,01/04/19 17:20,"86 Forest St, Los Angeles, CA 90001" +156223,iPhone,1,700,01/14/19 13:57,"733 7th St, San Francisco, CA 94016" +156223,Apple Airpods Headphones,1,150,01/14/19 13:57,"733 7th St, San Francisco, CA 94016" +156224,Wired Headphones,1,11.99,01/02/19 08:03,"74 10th St, Dallas, TX 75001" +156225,AA Batteries (4-pack),2,3.84,01/31/19 13:11,"546 Walnut St, Austin, TX 73301" +156226,Lightning Charging Cable,1,14.95,01/15/19 20:00,"849 Walnut St, Boston, MA 02215" +156227,AAA Batteries (4-pack),3,2.99,01/19/19 09:42,"139 10th St, Atlanta, GA 30301" +156228,ThinkPad Laptop,1,999.99,01/12/19 05:06,"163 Cedar St, San Francisco, CA 94016" +156229,Wired Headphones,1,11.99,01/13/19 22:13,"697 Cherry St, New York City, NY 10001" +156230,AA Batteries (4-pack),2,3.84,01/31/19 08:42,"634 Meadow St, New York City, NY 10001" +156231,AAA Batteries (4-pack),1,2.99,01/20/19 10:28,"964 13th St, Boston, MA 02215" +156232,AAA Batteries (4-pack),3,2.99,01/14/19 10:59,"548 Pine St, Los Angeles, CA 90001" +156233,Apple Airpods Headphones,1,150,01/12/19 07:50,"528 Cherry St, Dallas, TX 75001" +156234,AA Batteries (4-pack),1,3.84,01/14/19 20:23,"960 1st St, San Francisco, CA 94016" +156235,Lightning Charging Cable,1,14.95,01/04/19 15:16,"612 Meadow St, New York City, NY 10001" +156236,Bose SoundSport Headphones,1,99.99,01/24/19 15:04,"48 Main St, Los Angeles, CA 90001" +156237,Lightning Charging Cable,1,14.95,01/03/19 18:27,"185 Adams St, Boston, MA 02215" +156238,AA Batteries (4-pack),1,3.84,01/23/19 22:51,"505 Spruce St, Dallas, TX 75001" +156239,Wired Headphones,1,11.99,01/17/19 14:45,"142 Center St, Dallas, TX 75001" +156240,Apple Airpods Headphones,1,150,01/18/19 21:07,"137 River St, Los Angeles, CA 90001" +156241,AAA Batteries (4-pack),3,2.99,01/12/19 16:53,"896 Center St, San Francisco, CA 94016" +156241,Lightning Charging Cable,1,14.95,01/12/19 16:53,"896 Center St, San Francisco, CA 94016" +156242,AA Batteries (4-pack),4,3.84,01/08/19 14:12,"628 1st St, Dallas, TX 75001" +156243,Wired Headphones,1,11.99,01/25/19 13:26,"84 Sunset St, Austin, TX 73301" +156244,Apple Airpods Headphones,1,150,01/05/19 21:18,"898 Elm St, Dallas, TX 75001" +156245,AA Batteries (4-pack),1,3.84,01/19/19 18:15,"260 River St, Boston, MA 02215" +156246,Apple Airpods Headphones,1,150,01/02/19 10:41,"141 9th St, Seattle, WA 98101" +156247,USB-C Charging Cable,1,11.95,01/12/19 22:48,"838 Dogwood St, Los Angeles, CA 90001" +156248,Bose SoundSport Headphones,1,99.99,01/18/19 10:18,"732 Madison St, Atlanta, GA 30301" +156249,Wired Headphones,1,11.99,01/27/19 17:35,"150 Cherry St, Los Angeles, CA 90001" +156250,27in 4K Gaming Monitor,1,389.99,01/30/19 00:17,"331 Meadow St, Boston, MA 02215" +156251,Wired Headphones,1,11.99,01/06/19 23:34,"734 Forest St, Los Angeles, CA 90001" +156252,Apple Airpods Headphones,1,150,01/05/19 18:57,"431 River St, San Francisco, CA 94016" +156253,iPhone,1,700,01/20/19 17:48,"587 Wilson St, Los Angeles, CA 90001" +156254,AA Batteries (4-pack),1,3.84,01/20/19 15:40,"548 Maple St, Portland, OR 97035" +156255,AAA Batteries (4-pack),1,2.99,01/15/19 13:52,"690 Wilson St, New York City, NY 10001" +156256,Apple Airpods Headphones,1,150,01/06/19 17:12,"472 11th St, New York City, NY 10001" +156257,Apple Airpods Headphones,1,150,01/20/19 09:13,"649 River St, New York City, NY 10001" +156258,Lightning Charging Cable,1,14.95,01/15/19 18:37,"544 4th St, Dallas, TX 75001" +156259,Apple Airpods Headphones,1,150,01/21/19 11:02,"744 Cherry St, San Francisco, CA 94016" +156260,Bose SoundSport Headphones,1,99.99,01/16/19 21:13,"323 Park St, Los Angeles, CA 90001" +156261,Lightning Charging Cable,1,14.95,01/15/19 18:18,"103 Adams St, San Francisco, CA 94016" +156262,AAA Batteries (4-pack),2,2.99,01/30/19 19:31,"381 2nd St, New York City, NY 10001" +156263,AAA Batteries (4-pack),2,2.99,01/02/19 05:01,"338 13th St, New York City, NY 10001" +156264,ThinkPad Laptop,1,999.99,01/11/19 13:32,"866 2nd St, Portland, OR 97035" +156265,AAA Batteries (4-pack),2,2.99,01/14/19 19:24,"812 Washington St, Los Angeles, CA 90001" +156266,Lightning Charging Cable,1,14.95,01/15/19 16:01,"195 Pine St, Los Angeles, CA 90001" +156267,Lightning Charging Cable,1,14.95,01/06/19 21:41,"242 Maple St, Los Angeles, CA 90001" +156268,Lightning Charging Cable,1,14.95,01/02/19 21:03,"237 11th St, Los Angeles, CA 90001" +156269,27in 4K Gaming Monitor,1,389.99,01/09/19 11:20,"208 Main St, Portland, OR 97035" +156270,Lightning Charging Cable,1,14.95,01/10/19 21:06,"97 Ridge St, Los Angeles, CA 90001" +156271,AA Batteries (4-pack),1,3.84,01/11/19 20:48,"570 Lake St, Boston, MA 02215" +156272,Macbook Pro Laptop,1,1700,01/15/19 11:32,"207 Lincoln St, Boston, MA 02215" +156273,Bose SoundSport Headphones,1,99.99,01/18/19 16:51,"609 11th St, Boston, MA 02215" +156274,iPhone,1,700,01/23/19 19:03,"927 13th St, New York City, NY 10001" +156275,AAA Batteries (4-pack),2,2.99,01/20/19 07:13,"478 1st St, Boston, MA 02215" +156276,Apple Airpods Headphones,1,150,01/13/19 11:59,"405 2nd St, Seattle, WA 98101" +156277,Apple Airpods Headphones,1,150,01/15/19 12:57,"724 1st St, New York City, NY 10001" +156278,Flatscreen TV,1,300,01/18/19 12:07,"799 5th St, Seattle, WA 98101" +156279,USB-C Charging Cable,2,11.95,01/06/19 23:02,"885 River St, Atlanta, GA 30301" +156280,34in Ultrawide Monitor,1,379.99,01/19/19 14:49,"722 6th St, Atlanta, GA 30301" +156281,34in Ultrawide Monitor,1,379.99,01/09/19 09:31,"98 Highland St, Los Angeles, CA 90001" +156282,Vareebadd Phone,1,400,01/02/19 00:46,"928 West St, San Francisco, CA 94016" +156282,Wired Headphones,1,11.99,01/02/19 00:46,"928 West St, San Francisco, CA 94016" +156283,Wired Headphones,1,11.99,01/28/19 19:41,"627 Cherry St, Seattle, WA 98101" +156284,AA Batteries (4-pack),1,3.84,01/15/19 16:30,"310 8th St, Los Angeles, CA 90001" +156285,Wired Headphones,1,11.99,01/29/19 15:48,"669 Main St, Los Angeles, CA 90001" +156286,27in FHD Monitor,1,149.99,01/01/19 11:26,"454 Lincoln St, Los Angeles, CA 90001" +156287,iPhone,1,700,01/17/19 19:58,"605 Jefferson St, San Francisco, CA 94016" +156288,AAA Batteries (4-pack),3,2.99,01/31/19 07:37,"887 Ridge St, Los Angeles, CA 90001" +156289,LG Dryer,1,600.0,01/25/19 16:24,"868 13th St, Los Angeles, CA 90001" +156290,AA Batteries (4-pack),1,3.84,01/02/19 12:41,"154 Jefferson St, Atlanta, GA 30301" +156291,Bose SoundSport Headphones,1,99.99,01/07/19 12:56,"316 Main St, Los Angeles, CA 90001" +156292,AA Batteries (4-pack),2,3.84,01/19/19 22:26,"530 Highland St, San Francisco, CA 94016" +156293,USB-C Charging Cable,1,11.95,01/05/19 20:49,"322 Park St, Atlanta, GA 30301" +156294,USB-C Charging Cable,1,11.95,01/24/19 19:44,"518 7th St, Boston, MA 02215" +156295,Bose SoundSport Headphones,1,99.99,01/17/19 11:17,"21 Hickory St, Atlanta, GA 30301" +156296,AA Batteries (4-pack),2,3.84,01/17/19 23:45,"934 Jefferson St, Dallas, TX 75001" +156297,AAA Batteries (4-pack),1,2.99,01/26/19 02:14,"840 Center St, Atlanta, GA 30301" +156298,Wired Headphones,1,11.99,01/08/19 16:47,"560 Elm St, Boston, MA 02215" +156299,Wired Headphones,1,11.99,01/31/19 15:53,"581 Walnut St, San Francisco, CA 94016" +156300,Bose SoundSport Headphones,1,99.99,01/30/19 07:33,"961 Johnson St, Dallas, TX 75001" +156301,Flatscreen TV,1,300,01/11/19 16:33,"636 Highland St, Los Angeles, CA 90001" +156302,Wired Headphones,1,11.99,01/24/19 12:36,"898 South St, Boston, MA 02215" +156303,AAA Batteries (4-pack),1,2.99,01/25/19 11:13,"809 Adams St, New York City, NY 10001" +156304,AAA Batteries (4-pack),1,2.99,01/10/19 20:43,"403 Hill St, San Francisco, CA 94016" +156305,Bose SoundSport Headphones,1,99.99,01/16/19 15:44,"586 11th St, New York City, NY 10001" +156306,Apple Airpods Headphones,1,150,01/16/19 00:00,"479 10th St, Boston, MA 02215" +156307,AA Batteries (4-pack),1,3.84,01/05/19 22:37,"300 6th St, Portland, OR 97035" +156308,Bose SoundSport Headphones,1,99.99,01/14/19 17:48,"145 13th St, Boston, MA 02215" +156309,27in FHD Monitor,1,149.99,01/13/19 20:40,"472 Lincoln St, San Francisco, CA 94016" +156310,AAA Batteries (4-pack),2,2.99,01/22/19 13:10,"200 Highland St, New York City, NY 10001" +156311,AA Batteries (4-pack),2,3.84,01/08/19 18:43,"20 12th St, Los Angeles, CA 90001" +156312,AA Batteries (4-pack),1,3.84,01/07/19 15:36,"47 2nd St, Seattle, WA 98101" +156313,Bose SoundSport Headphones,1,99.99,01/17/19 17:50,"744 4th St, Atlanta, GA 30301" +156314,Bose SoundSport Headphones,1,99.99,01/12/19 00:18,"804 4th St, Seattle, WA 98101" +156315,AAA Batteries (4-pack),2,2.99,01/29/19 08:58,"374 North St, New York City, NY 10001" +156316,Bose SoundSport Headphones,1,99.99,01/31/19 17:35,"197 Main St, San Francisco, CA 94016" +156317,USB-C Charging Cable,1,11.95,01/24/19 15:49,"491 Pine St, Atlanta, GA 30301" +156318,Lightning Charging Cable,1,14.95,01/22/19 17:36,"840 5th St, Dallas, TX 75001" +156319,AA Batteries (4-pack),1,3.84,01/15/19 14:14,"681 Sunset St, Los Angeles, CA 90001" +156320,Google Phone,1,600,01/16/19 18:30,"517 Meadow St, Austin, TX 73301" +156320,USB-C Charging Cable,1,11.95,01/16/19 18:30,"517 Meadow St, Austin, TX 73301" +156321,27in FHD Monitor,1,149.99,01/09/19 12:21,"38 13th St, Atlanta, GA 30301" +156322,USB-C Charging Cable,1,11.95,01/04/19 12:00,"557 6th St, San Francisco, CA 94016" +156323,AA Batteries (4-pack),2,3.84,01/24/19 19:51,"578 Willow St, Los Angeles, CA 90001" +156324,Bose SoundSport Headphones,1,99.99,01/02/19 14:26,"736 Cedar St, Los Angeles, CA 90001" +156325,Wired Headphones,1,11.99,01/17/19 14:32,"673 Washington St, Seattle, WA 98101" +156326,27in FHD Monitor,1,149.99,01/31/19 08:18,"56 Wilson St, Boston, MA 02215" +156327,Bose SoundSport Headphones,1,99.99,01/23/19 18:48,"483 Highland St, Los Angeles, CA 90001" +156328,AAA Batteries (4-pack),5,2.99,01/09/19 13:34,"457 9th St, Los Angeles, CA 90001" +156329,34in Ultrawide Monitor,1,379.99,01/21/19 12:30,"345 8th St, San Francisco, CA 94016" +156330,Wired Headphones,1,11.99,01/14/19 20:56,"553 Lakeview St, Austin, TX 73301" +156331,Wired Headphones,1,11.99,01/06/19 21:09,"29 North St, Seattle, WA 98101" +156332,AA Batteries (4-pack),1,3.84,01/03/19 19:19,"292 Elm St, Los Angeles, CA 90001" +156333,Wired Headphones,1,11.99,01/10/19 21:11,"762 13th St, Los Angeles, CA 90001" +156334,Bose SoundSport Headphones,1,99.99,01/15/19 15:58,"283 North St, Los Angeles, CA 90001" +,,,,, +156335,Flatscreen TV,1,300,01/29/19 14:52,"352 Sunset St, Los Angeles, CA 90001" +156336,Wired Headphones,1,11.99,01/27/19 13:33,"981 8th St, New York City, NY 10001" +156337,AA Batteries (4-pack),1,3.84,02/01/19 03:14,"129 Lincoln St, Austin, TX 73301" +156338,iPhone,1,700,01/21/19 10:15,"71 Sunset St, San Francisco, CA 94016" +156339,Lightning Charging Cable,1,14.95,01/19/19 00:34,"1 West St, Los Angeles, CA 90001" +156340,Wired Headphones,1,11.99,01/06/19 20:23,"58 11th St, San Francisco, CA 94016" +156341,Apple Airpods Headphones,1,150,01/04/19 21:49,"539 4th St, Portland, ME 04101" +156342,USB-C Charging Cable,2,11.95,01/30/19 11:57,"760 14th St, Boston, MA 02215" +156343,Google Phone,1,600,01/09/19 16:49,"48 11th St, New York City, NY 10001" +156343,USB-C Charging Cable,1,11.95,01/09/19 16:49,"48 11th St, New York City, NY 10001" +156344,Wired Headphones,1,11.99,01/30/19 01:35,"464 Cherry St, San Francisco, CA 94016" +156345,USB-C Charging Cable,1,11.95,01/14/19 21:22,"617 Walnut St, San Francisco, CA 94016" +156346,Wired Headphones,1,11.99,01/07/19 15:12,"607 Chestnut St, San Francisco, CA 94016" +156347,27in FHD Monitor,1,149.99,01/18/19 11:42,"949 13th St, Dallas, TX 75001" +156348,Lightning Charging Cable,1,14.95,01/10/19 18:55,"878 Jefferson St, Los Angeles, CA 90001" +156349,20in Monitor,1,109.99,01/19/19 16:01,"370 Ridge St, New York City, NY 10001" +156350,Wired Headphones,1,11.99,01/19/19 15:33,"157 Church St, New York City, NY 10001" +156351,Wired Headphones,1,11.99,01/18/19 20:02,"557 10th St, San Francisco, CA 94016" +156352,AA Batteries (4-pack),3,3.84,01/30/19 14:10,"940 Highland St, San Francisco, CA 94016" +156353,Wired Headphones,1,11.99,01/28/19 08:02,"778 10th St, Los Angeles, CA 90001" +156354,Flatscreen TV,1,300,01/19/19 16:22,"778 North St, Austin, TX 73301" +156355,Google Phone,1,600,01/18/19 21:48,"578 Hill St, Boston, MA 02215" +156355,USB-C Charging Cable,2,11.95,01/18/19 21:48,"578 Hill St, Boston, MA 02215" +156356,Lightning Charging Cable,1,14.95,01/07/19 11:42,"688 Dogwood St, Los Angeles, CA 90001" +156357,27in FHD Monitor,1,149.99,01/10/19 19:33,"528 Lincoln St, Atlanta, GA 30301" +156358,27in 4K Gaming Monitor,1,389.99,01/22/19 08:15,"526 Cherry St, San Francisco, CA 94016" +156359,Wired Headphones,1,11.99,01/03/19 08:34,"299 Jackson St, Austin, TX 73301" +156360,Flatscreen TV,1,300,01/25/19 13:13,"154 Hill St, Boston, MA 02215" +156361,USB-C Charging Cable,1,11.95,01/09/19 20:58,"306 Center St, New York City, NY 10001" +156362,USB-C Charging Cable,1,11.95,01/25/19 22:26,"8 Johnson St, Atlanta, GA 30301" +156363,AA Batteries (4-pack),2,3.84,01/19/19 13:27,"930 Hill St, San Francisco, CA 94016" +156364,AAA Batteries (4-pack),1,2.99,01/24/19 01:31,"893 Madison St, San Francisco, CA 94016" +156365,LG Washing Machine,1,600.0,01/08/19 19:46,"504 Spruce St, Atlanta, GA 30301" +156365,USB-C Charging Cable,1,11.95,01/08/19 19:46,"504 Spruce St, Atlanta, GA 30301" +156366,Macbook Pro Laptop,1,1700,01/05/19 12:20,"906 4th St, Dallas, TX 75001" +156366,AA Batteries (4-pack),1,3.84,01/05/19 12:20,"906 4th St, Dallas, TX 75001" +156367,Wired Headphones,2,11.99,01/17/19 19:32,"305 Hill St, San Francisco, CA 94016" +156368,Lightning Charging Cable,1,14.95,01/07/19 14:40,"627 Jefferson St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +156369,Wired Headphones,1,11.99,01/18/19 08:43,"718 14th St, Portland, OR 97035" +156370,Lightning Charging Cable,1,14.95,01/25/19 14:35,"960 Sunset St, New York City, NY 10001" +156371,USB-C Charging Cable,1,11.95,01/30/19 19:44,"899 14th St, Boston, MA 02215" +156372,Lightning Charging Cable,1,14.95,01/12/19 10:00,"601 12th St, Los Angeles, CA 90001" +156373,Wired Headphones,1,11.99,01/02/19 15:10,"698 South St, Los Angeles, CA 90001" +156374,Wired Headphones,1,11.99,01/12/19 22:29,"845 Willow St, Austin, TX 73301" +156375,AAA Batteries (4-pack),2,2.99,01/31/19 18:11,"733 12th St, New York City, NY 10001" +156376,Lightning Charging Cable,1,14.95,01/06/19 11:44,"262 Willow St, New York City, NY 10001" +156377,Vareebadd Phone,1,400,01/03/19 18:00,"645 Cherry St, San Francisco, CA 94016" +156378,Bose SoundSport Headphones,1,99.99,01/10/19 15:15,"728 Spruce St, Portland, OR 97035" +156379,USB-C Charging Cable,1,11.95,01/30/19 11:09,"859 Dogwood St, Atlanta, GA 30301" +156380,AAA Batteries (4-pack),2,2.99,01/18/19 17:17,"557 Hill St, Austin, TX 73301" +156381,Macbook Pro Laptop,1,1700,01/09/19 12:23,"64 13th St, Boston, MA 02215" +156382,Google Phone,1,600,01/07/19 20:29,"770 4th St, Austin, TX 73301" +156382,USB-C Charging Cable,1,11.95,01/07/19 20:29,"770 4th St, Austin, TX 73301" +156383,AAA Batteries (4-pack),2,2.99,01/14/19 09:07,"105 Washington St, Los Angeles, CA 90001" +156384,27in FHD Monitor,1,149.99,01/13/19 08:42,"417 Walnut St, Seattle, WA 98101" +156385,AAA Batteries (4-pack),2,2.99,01/15/19 09:16,"204 12th St, San Francisco, CA 94016" +156386,Wired Headphones,1,11.99,01/28/19 21:51,"910 Spruce St, San Francisco, CA 94016" +156387,27in FHD Monitor,1,149.99,01/21/19 10:08,"176 South St, Portland, OR 97035" +156388,Google Phone,1,600,01/28/19 12:05,"850 Hickory St, Seattle, WA 98101" +156388,USB-C Charging Cable,1,11.95,01/28/19 12:05,"850 Hickory St, Seattle, WA 98101" +156389,AA Batteries (4-pack),1,3.84,01/13/19 11:29,"7 South St, Portland, OR 97035" +156390,LG Washing Machine,1,600.0,01/31/19 20:25,"18 Center St, Los Angeles, CA 90001" +156391,Bose SoundSport Headphones,1,99.99,01/13/19 10:54,"98 Forest St, Portland, OR 97035" +156392,AAA Batteries (4-pack),1,2.99,01/17/19 12:13,"542 9th St, New York City, NY 10001" +156393,Flatscreen TV,1,300,01/26/19 23:19,"789 Spruce St, Seattle, WA 98101" +156394,Macbook Pro Laptop,1,1700,01/30/19 11:56,"773 8th St, New York City, NY 10001" +156395,Lightning Charging Cable,1,14.95,01/05/19 07:29,"939 12th St, Atlanta, GA 30301" +156396,AAA Batteries (4-pack),1,2.99,01/15/19 22:00,"762 Wilson St, New York City, NY 10001" +156397,Apple Airpods Headphones,1,150,01/03/19 12:23,"920 Willow St, Portland, ME 04101" +156398,AA Batteries (4-pack),1,3.84,01/29/19 11:09,"389 Pine St, Los Angeles, CA 90001" +156399,Wired Headphones,1,11.99,01/26/19 22:20,"577 Jefferson St, Boston, MA 02215" +156400,Bose SoundSport Headphones,1,99.99,01/09/19 17:11,"217 Cedar St, New York City, NY 10001" +156401,34in Ultrawide Monitor,1,379.99,01/15/19 10:41,"224 Cherry St, Los Angeles, CA 90001" +156402,Lightning Charging Cable,1,14.95,01/22/19 11:50,"710 10th St, Dallas, TX 75001" +156403,Wired Headphones,2,11.99,01/18/19 20:13,"826 Adams St, San Francisco, CA 94016" +156404,Macbook Pro Laptop,1,1700,01/14/19 19:14,"761 Maple St, New York City, NY 10001" +156405,AA Batteries (4-pack),3,3.84,01/22/19 09:41,"793 4th St, San Francisco, CA 94016" +156406,Bose SoundSport Headphones,1,99.99,01/17/19 16:16,"766 5th St, San Francisco, CA 94016" +156407,AA Batteries (4-pack),1,3.84,01/02/19 20:20,"768 Lincoln St, Atlanta, GA 30301" +156408,Bose SoundSport Headphones,1,99.99,01/04/19 12:34,"51 Lake St, New York City, NY 10001" +156409,AA Batteries (4-pack),1,3.84,01/05/19 08:52,"410 Walnut St, New York City, NY 10001" +156410,AAA Batteries (4-pack),1,2.99,01/11/19 13:27,"478 8th St, San Francisco, CA 94016" +156411,AA Batteries (4-pack),2,3.84,01/28/19 17:38,"180 Main St, Dallas, TX 75001" +156412,Apple Airpods Headphones,1,150,01/24/19 20:14,"571 Wilson St, San Francisco, CA 94016" +156413,AA Batteries (4-pack),2,3.84,01/12/19 13:52,"338 Hill St, Dallas, TX 75001" +156414,AA Batteries (4-pack),1,3.84,01/13/19 19:07,"53 8th St, Los Angeles, CA 90001" +156415,Wired Headphones,1,11.99,01/02/19 20:16,"942 Elm St, Austin, TX 73301" +156416,USB-C Charging Cable,1,11.95,01/11/19 13:54,"401 Pine St, New York City, NY 10001" +156417,Apple Airpods Headphones,1,150,01/02/19 21:47,"454 North St, Los Angeles, CA 90001" +156418,Wired Headphones,1,11.99,01/24/19 10:53,"617 10th St, New York City, NY 10001" +156419,USB-C Charging Cable,1,11.95,01/18/19 20:36,"300 Main St, Dallas, TX 75001" +156420,Wired Headphones,1,11.99,01/04/19 07:43,"978 Johnson St, Portland, ME 04101" +156421,AAA Batteries (4-pack),1,2.99,01/19/19 15:19,"249 14th St, Portland, OR 97035" +156422,AA Batteries (4-pack),1,3.84,01/09/19 18:35,"346 Dogwood St, Dallas, TX 75001" +156423,34in Ultrawide Monitor,1,379.99,01/01/19 07:49,"757 South St, Los Angeles, CA 90001" +156424,Apple Airpods Headphones,1,150,01/26/19 11:54,"979 Highland St, San Francisco, CA 94016" +156425,AA Batteries (4-pack),1,3.84,01/31/19 15:02,"425 10th St, Atlanta, GA 30301" +156426,Wired Headphones,1,11.99,01/15/19 14:06,"37 Wilson St, Atlanta, GA 30301" +156427,AAA Batteries (4-pack),1,2.99,01/29/19 22:13,"64 Cedar St, Atlanta, GA 30301" +156428,Google Phone,1,600,01/21/19 18:55,"789 Center St, New York City, NY 10001" +156428,USB-C Charging Cable,1,11.95,01/21/19 18:55,"789 Center St, New York City, NY 10001" +156429,USB-C Charging Cable,1,11.95,01/22/19 12:26,"864 Center St, Los Angeles, CA 90001" +156430,Lightning Charging Cable,1,14.95,01/08/19 06:53,"852 13th St, Dallas, TX 75001" +156431,AA Batteries (4-pack),1,3.84,01/30/19 21:46,"94 11th St, Atlanta, GA 30301" +156432,Apple Airpods Headphones,1,150,01/11/19 15:42,"432 Jefferson St, Los Angeles, CA 90001" +156433,Wired Headphones,1,11.99,01/30/19 17:15,"192 Cherry St, New York City, NY 10001" +156434,Flatscreen TV,1,300,01/02/19 17:50,"179 Highland St, San Francisco, CA 94016" +156435,USB-C Charging Cable,1,11.95,01/07/19 01:17,"712 Chestnut St, Los Angeles, CA 90001" +156436,ThinkPad Laptop,1,999.99,01/20/19 07:33,"159 Pine St, New York City, NY 10001" +156437,Flatscreen TV,1,300,01/13/19 10:28,"988 Meadow St, Los Angeles, CA 90001" +156437,AA Batteries (4-pack),1,3.84,01/13/19 10:28,"988 Meadow St, Los Angeles, CA 90001" +156438,USB-C Charging Cable,1,11.95,01/16/19 10:04,"581 Johnson St, Los Angeles, CA 90001" +156438,34in Ultrawide Monitor,1,379.99,01/16/19 10:04,"581 Johnson St, Los Angeles, CA 90001" +156439,AA Batteries (4-pack),1,3.84,01/05/19 13:56,"989 7th St, San Francisco, CA 94016" +156440,AA Batteries (4-pack),1,3.84,01/16/19 07:56,"90 Lincoln St, San Francisco, CA 94016" +156441,Apple Airpods Headphones,1,150,01/29/19 21:10,"487 Johnson St, San Francisco, CA 94016" +156442,27in 4K Gaming Monitor,1,389.99,01/21/19 14:32,"639 River St, San Francisco, CA 94016" +156443,USB-C Charging Cable,1,11.95,01/22/19 16:52,"706 Sunset St, Seattle, WA 98101" +156444,LG Dryer,1,600.0,01/31/19 20:26,"157 Hill St, Dallas, TX 75001" +156445,Lightning Charging Cable,1,14.95,01/25/19 15:28,"413 Walnut St, New York City, NY 10001" +156446,AA Batteries (4-pack),1,3.84,01/12/19 22:34,"410 Madison St, New York City, NY 10001" +156447,Wired Headphones,1,11.99,01/10/19 15:53,"679 Lakeview St, Dallas, TX 75001" +156448,USB-C Charging Cable,1,11.95,01/25/19 19:48,"382 Hickory St, Seattle, WA 98101" +156449,AA Batteries (4-pack),2,3.84,01/24/19 13:04,"336 Pine St, San Francisco, CA 94016" +156449,Apple Airpods Headphones,1,150,01/24/19 13:04,"336 Pine St, San Francisco, CA 94016" +156450,Vareebadd Phone,1,400,01/20/19 20:34,"642 Jefferson St, New York City, NY 10001" +156451,20in Monitor,1,109.99,01/27/19 16:38,"943 Cedar St, Seattle, WA 98101" +156452,Wired Headphones,1,11.99,01/24/19 13:25,"96 Park St, Boston, MA 02215" +156453,20in Monitor,1,109.99,01/05/19 12:51,"230 Willow St, Los Angeles, CA 90001" +156454,Bose SoundSport Headphones,1,99.99,01/10/19 22:13,"743 Lake St, San Francisco, CA 94016" +156455,AA Batteries (4-pack),1,3.84,01/29/19 19:41,"652 Adams St, Los Angeles, CA 90001" +156456,AA Batteries (4-pack),1,3.84,01/23/19 13:14,"928 Pine St, Boston, MA 02215" +156457,Bose SoundSport Headphones,1,99.99,01/19/19 20:43,"544 2nd St, New York City, NY 10001" +156458,20in Monitor,1,109.99,01/20/19 05:00,"441 4th St, Seattle, WA 98101" +156458,Lightning Charging Cable,1,14.95,01/20/19 05:00,"441 4th St, Seattle, WA 98101" +156459,Lightning Charging Cable,1,14.95,01/25/19 08:11,"816 Lake St, Atlanta, GA 30301" +156460,Apple Airpods Headphones,1,150,01/18/19 19:03,"932 Lakeview St, Seattle, WA 98101" +156461,Vareebadd Phone,1,400,01/14/19 23:37,"144 Park St, San Francisco, CA 94016" +156462,AAA Batteries (4-pack),3,2.99,01/10/19 21:55,"277 Forest St, Boston, MA 02215" +156463,Bose SoundSport Headphones,1,99.99,01/21/19 06:44,"361 Hickory St, Los Angeles, CA 90001" +156464,Flatscreen TV,1,300,01/05/19 20:15,"437 Lincoln St, Dallas, TX 75001" +156465,Bose SoundSport Headphones,1,99.99,01/30/19 15:31,"297 8th St, New York City, NY 10001" +156466,Flatscreen TV,1,300,01/07/19 21:05,"517 5th St, Boston, MA 02215" +156467,Wired Headphones,1,11.99,01/22/19 17:56,"688 Wilson St, San Francisco, CA 94016" +156468,Apple Airpods Headphones,1,150,01/26/19 15:19,"641 Adams St, Los Angeles, CA 90001" +156469,iPhone,1,700,01/06/19 22:56,"336 Hill St, San Francisco, CA 94016" +156469,Lightning Charging Cable,1,14.95,01/06/19 22:56,"336 Hill St, San Francisco, CA 94016" +156470,USB-C Charging Cable,1,11.95,01/30/19 12:59,"329 Lincoln St, Portland, OR 97035" +156471,Lightning Charging Cable,1,14.95,01/20/19 12:35,"876 6th St, Los Angeles, CA 90001" +156471,Wired Headphones,1,11.99,01/20/19 12:35,"876 6th St, Los Angeles, CA 90001" +156472,Wired Headphones,1,11.99,01/19/19 06:09,"843 Cedar St, San Francisco, CA 94016" +156473,Wired Headphones,1,11.99,01/04/19 14:07,"632 Chestnut St, Boston, MA 02215" +156474,AAA Batteries (4-pack),1,2.99,01/20/19 14:07,"373 13th St, Los Angeles, CA 90001" +156475,USB-C Charging Cable,1,11.95,01/12/19 00:45,"521 Pine St, New York City, NY 10001" +156476,AAA Batteries (4-pack),1,2.99,01/10/19 15:06,"946 8th St, Los Angeles, CA 90001" +156476,AAA Batteries (4-pack),1,2.99,01/10/19 15:06,"946 8th St, Los Angeles, CA 90001" +156477,Apple Airpods Headphones,1,150,01/22/19 16:37,"310 Adams St, Atlanta, GA 30301" +156478,Flatscreen TV,1,300,01/03/19 08:45,"95 11th St, Boston, MA 02215" +156479,Lightning Charging Cable,1,14.95,01/18/19 18:23,"326 Ridge St, New York City, NY 10001" +156480,27in FHD Monitor,1,149.99,01/03/19 19:23,"431 Jefferson St, Dallas, TX 75001" +156481,Flatscreen TV,1,300,01/11/19 09:35,"290 Ridge St, Los Angeles, CA 90001" +156482,20in Monitor,1,109.99,01/26/19 16:05,"490 Pine St, Austin, TX 73301" +156483,USB-C Charging Cable,1,11.95,01/22/19 17:47,"75 Maple St, Portland, ME 04101" +156484,Google Phone,1,600,01/14/19 16:20,"967 Ridge St, Boston, MA 02215" +156485,Apple Airpods Headphones,1,150,01/21/19 22:22,"188 North St, New York City, NY 10001" +156486,Wired Headphones,1,11.99,01/14/19 12:23,"305 13th St, New York City, NY 10001" +156487,Lightning Charging Cable,1,14.95,01/05/19 11:13,"455 West St, Los Angeles, CA 90001" +156488,27in FHD Monitor,1,149.99,01/09/19 22:40,"973 4th St, Los Angeles, CA 90001" +156489,iPhone,1,700,01/27/19 22:03,"379 West St, San Francisco, CA 94016" +156490,34in Ultrawide Monitor,1,379.99,01/17/19 15:55,"364 5th St, Boston, MA 02215" +156491,USB-C Charging Cable,1,11.95,01/07/19 08:01,"851 Jackson St, Atlanta, GA 30301" +156491,Lightning Charging Cable,2,14.95,01/07/19 08:01,"851 Jackson St, Atlanta, GA 30301" +156492,Lightning Charging Cable,1,14.95,01/22/19 11:02,"630 Main St, Los Angeles, CA 90001" +156493,AA Batteries (4-pack),1,3.84,01/20/19 18:17,"638 1st St, San Francisco, CA 94016" +156494,Bose SoundSport Headphones,1,99.99,01/28/19 18:47,"796 5th St, San Francisco, CA 94016" +156495,Wired Headphones,1,11.99,01/03/19 09:56,"537 Park St, Boston, MA 02215" +156496,27in FHD Monitor,1,149.99,01/31/19 17:49,"51 10th St, Seattle, WA 98101" +156497,Bose SoundSport Headphones,1,99.99,01/26/19 19:25,"594 Jefferson St, Los Angeles, CA 90001" +156498,AAA Batteries (4-pack),2,2.99,01/05/19 07:39,"431 14th St, Los Angeles, CA 90001" +156499,ThinkPad Laptop,1,999.99,01/14/19 15:35,"21 Lake St, New York City, NY 10001" +156500,20in Monitor,1,109.99,01/20/19 18:00,"957 6th St, Dallas, TX 75001" +156501,Lightning Charging Cable,1,14.95,01/07/19 12:29,"58 Highland St, San Francisco, CA 94016" +156502,27in FHD Monitor,1,149.99,01/31/19 15:13,"409 Wilson St, Dallas, TX 75001" +156503,USB-C Charging Cable,1,11.95,01/24/19 14:15,"551 14th St, San Francisco, CA 94016" +156504,AAA Batteries (4-pack),1,2.99,01/27/19 23:22,"792 Lincoln St, Los Angeles, CA 90001" +156505,AAA Batteries (4-pack),1,2.99,01/22/19 22:42,"794 Sunset St, Boston, MA 02215" +156506,Lightning Charging Cable,1,14.95,01/12/19 11:57,"486 Adams St, San Francisco, CA 94016" +156507,AAA Batteries (4-pack),2,2.99,01/15/19 09:06,"587 9th St, San Francisco, CA 94016" +156508,34in Ultrawide Monitor,1,379.99,01/29/19 11:56,"786 2nd St, Dallas, TX 75001" +156509,iPhone,1,700,01/15/19 22:58,"998 14th St, Dallas, TX 75001" +156510,Macbook Pro Laptop,1,1700,01/14/19 12:18,"283 Jefferson St, San Francisco, CA 94016" +156511,Wired Headphones,1,11.99,01/30/19 15:33,"563 Ridge St, San Francisco, CA 94016" +156512,AA Batteries (4-pack),2,3.84,01/11/19 10:07,"440 Meadow St, Portland, OR 97035" +156513,Apple Airpods Headphones,1,150,01/19/19 16:43,"161 Center St, New York City, NY 10001" +156514,Apple Airpods Headphones,1,150,01/18/19 21:49,"90 Lake St, Los Angeles, CA 90001" +156514,Lightning Charging Cable,1,14.95,01/18/19 21:49,"90 Lake St, Los Angeles, CA 90001" +156515,Lightning Charging Cable,1,14.95,01/01/19 22:38,"112 Church St, Boston, MA 02215" +156516,Lightning Charging Cable,1,14.95,01/30/19 19:28,"323 Jefferson St, Los Angeles, CA 90001" +156517,Lightning Charging Cable,1,14.95,01/31/19 12:43,"411 9th St, Los Angeles, CA 90001" +156518,USB-C Charging Cable,1,11.95,01/20/19 23:11,"194 Wilson St, Seattle, WA 98101" +156519,USB-C Charging Cable,1,11.95,01/27/19 06:33,"259 1st St, Seattle, WA 98101" +156520,USB-C Charging Cable,1,11.95,01/09/19 20:58,"987 South St, Seattle, WA 98101" +156521,AAA Batteries (4-pack),1,2.99,01/04/19 11:41,"466 9th St, New York City, NY 10001" +156522,Bose SoundSport Headphones,1,99.99,01/16/19 15:15,"710 Hill St, Los Angeles, CA 90001" +156523,Google Phone,1,600,01/27/19 01:21,"965 Lakeview St, San Francisco, CA 94016" +156524,34in Ultrawide Monitor,1,379.99,01/19/19 12:38,"285 Main St, San Francisco, CA 94016" +156525,34in Ultrawide Monitor,1,379.99,01/03/19 11:47,"763 Lakeview St, Los Angeles, CA 90001" +156526,AA Batteries (4-pack),1,3.84,01/13/19 00:52,"513 Meadow St, Seattle, WA 98101" +156527,20in Monitor,1,109.99,01/01/19 16:32,"122 Chestnut St, Portland, ME 04101" +156528,AA Batteries (4-pack),1,3.84,01/24/19 12:11,"681 Dogwood St, San Francisco, CA 94016" +156529,AA Batteries (4-pack),2,3.84,01/25/19 09:27,"289 Lakeview St, Boston, MA 02215" +156530,USB-C Charging Cable,1,11.95,01/09/19 13:13,"904 Jackson St, Portland, ME 04101" +156531,Lightning Charging Cable,1,14.95,01/19/19 11:01,"889 4th St, Portland, OR 97035" +156532,Apple Airpods Headphones,1,150,01/21/19 17:54,"477 Washington St, Los Angeles, CA 90001" +156533,Bose SoundSport Headphones,1,99.99,01/16/19 18:10,"335 1st St, Atlanta, GA 30301" +156534,USB-C Charging Cable,1,11.95,01/04/19 10:59,"486 5th St, San Francisco, CA 94016" +156534,Lightning Charging Cable,1,14.95,01/04/19 10:59,"486 5th St, San Francisco, CA 94016" +156535,20in Monitor,1,109.99,01/14/19 20:15,"466 Elm St, Atlanta, GA 30301" +156536,Lightning Charging Cable,1,14.95,01/16/19 04:16,"663 5th St, New York City, NY 10001" +156537,Google Phone,1,600,01/01/19 09:06,"27 12th St, San Francisco, CA 94016" +156538,Google Phone,1,600,01/27/19 13:14,"765 Church St, San Francisco, CA 94016" +156539,Wired Headphones,1,11.99,01/02/19 13:26,"537 Meadow St, New York City, NY 10001" +156540,Google Phone,1,600,01/15/19 19:41,"33 Elm St, Atlanta, GA 30301" +156541,Lightning Charging Cable,1,14.95,01/20/19 18:57,"243 Lakeview St, Atlanta, GA 30301" +156542,Wired Headphones,1,11.99,01/07/19 10:44,"798 Spruce St, New York City, NY 10001" +156543,27in FHD Monitor,1,149.99,01/02/19 21:53,"675 Ridge St, Atlanta, GA 30301" +156544,AA Batteries (4-pack),1,3.84,01/12/19 20:00,"380 Park St, Boston, MA 02215" +156545,Bose SoundSport Headphones,1,99.99,01/15/19 11:57,"301 Cedar St, Portland, OR 97035" +156546,AAA Batteries (4-pack),1,2.99,01/03/19 18:29,"832 Johnson St, San Francisco, CA 94016" +156547,Apple Airpods Headphones,1,150,01/22/19 01:06,"81 Walnut St, Los Angeles, CA 90001" +156548,USB-C Charging Cable,2,11.95,01/24/19 12:35,"61 5th St, Portland, OR 97035" +156549,AAA Batteries (4-pack),1,2.99,01/06/19 09:40,"2 River St, Austin, TX 73301" +156550,AAA Batteries (4-pack),1,2.99,01/11/19 21:49,"15 Jefferson St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +156551,iPhone,1,700,01/11/19 14:13,"277 Elm St, Atlanta, GA 30301" +156552,20in Monitor,1,109.99,01/07/19 06:37,"312 West St, San Francisco, CA 94016" +156553,Wired Headphones,1,11.99,01/13/19 04:37,"716 Spruce St, New York City, NY 10001" +156554,27in FHD Monitor,1,149.99,01/28/19 15:46,"929 Pine St, Los Angeles, CA 90001" +156555,Bose SoundSport Headphones,1,99.99,01/14/19 21:19,"383 8th St, Portland, OR 97035" +156556,Macbook Pro Laptop,1,1700,01/24/19 11:14,"473 5th St, San Francisco, CA 94016" +156557,20in Monitor,1,109.99,01/11/19 16:16,"649 Lincoln St, Los Angeles, CA 90001" +156558,27in 4K Gaming Monitor,1,389.99,01/25/19 09:02,"191 Center St, Atlanta, GA 30301" +156559,Bose SoundSport Headphones,1,99.99,01/26/19 09:07,"824 Cherry St, Portland, OR 97035" +156560,AAA Batteries (4-pack),1,2.99,01/30/19 10:46,"466 13th St, San Francisco, CA 94016" +156561,Wired Headphones,1,11.99,01/06/19 09:53,"219 Spruce St, Los Angeles, CA 90001" +156562,AAA Batteries (4-pack),1,2.99,01/29/19 20:20,"724 10th St, Atlanta, GA 30301" +156563,Lightning Charging Cable,1,14.95,01/29/19 17:53,"499 Wilson St, Atlanta, GA 30301" +156564,27in FHD Monitor,1,149.99,01/20/19 16:53,"844 4th St, Boston, MA 02215" +156565,Lightning Charging Cable,1,14.95,01/29/19 11:30,"925 Lake St, Boston, MA 02215" +156566,Apple Airpods Headphones,1,150,01/04/19 20:50,"686 1st St, San Francisco, CA 94016" +156567,LG Dryer,1,600.0,01/15/19 10:34,"930 Cherry St, Atlanta, GA 30301" +156568,Bose SoundSport Headphones,1,99.99,01/12/19 06:40,"733 10th St, San Francisco, CA 94016" +156569,AA Batteries (4-pack),2,3.84,01/05/19 23:49,"260 Highland St, Austin, TX 73301" +156570,AA Batteries (4-pack),1,3.84,01/14/19 20:49,"321 Park St, Los Angeles, CA 90001" +156571,iPhone,1,700,01/02/19 10:48,"762 Johnson St, New York City, NY 10001" +156572,USB-C Charging Cable,1,11.95,01/24/19 00:41,"536 Washington St, Los Angeles, CA 90001" +156573,27in 4K Gaming Monitor,1,389.99,01/01/19 19:56,"982 Pine St, San Francisco, CA 94016" +156574,Wired Headphones,1,11.99,01/07/19 21:38,"142 4th St, Austin, TX 73301" +156575,Wired Headphones,1,11.99,01/05/19 16:45,"949 Dogwood St, San Francisco, CA 94016" +156576,AAA Batteries (4-pack),1,2.99,01/28/19 05:41,"515 13th St, New York City, NY 10001" +156577,Lightning Charging Cable,1,14.95,01/23/19 14:10,"544 9th St, San Francisco, CA 94016" +156578,27in 4K Gaming Monitor,1,389.99,01/28/19 21:29,"334 11th St, Seattle, WA 98101" +156579,Apple Airpods Headphones,1,150,01/21/19 11:06,"311 Wilson St, San Francisco, CA 94016" +156580,iPhone,1,700,01/04/19 09:31,"506 River St, San Francisco, CA 94016" +156580,Lightning Charging Cable,1,14.95,01/04/19 09:31,"506 River St, San Francisco, CA 94016" +156581,Wired Headphones,2,11.99,01/11/19 14:13,"645 Meadow St, Atlanta, GA 30301" +156582,AA Batteries (4-pack),1,3.84,01/11/19 19:06,"373 Cherry St, Dallas, TX 75001" +156583,USB-C Charging Cable,1,11.95,01/17/19 12:59,"578 Chestnut St, New York City, NY 10001" +156584,27in FHD Monitor,1,149.99,01/07/19 12:53,"619 10th St, Boston, MA 02215" +156585,ThinkPad Laptop,1,999.99,01/01/19 21:09,"870 6th St, New York City, NY 10001" +156586,Wired Headphones,1,11.99,01/05/19 01:14,"616 Spruce St, San Francisco, CA 94016" +156587,34in Ultrawide Monitor,1,379.99,01/24/19 11:00,"893 Chestnut St, San Francisco, CA 94016" +156588,iPhone,1,700,01/31/19 16:18,"532 Church St, Portland, ME 04101" +156589,ThinkPad Laptop,1,999.99,01/06/19 21:39,"54 Spruce St, Atlanta, GA 30301" +156589,USB-C Charging Cable,1,11.95,01/06/19 21:39,"54 Spruce St, Atlanta, GA 30301" +156590,AAA Batteries (4-pack),1,2.99,01/23/19 19:20,"990 Hickory St, Seattle, WA 98101" +156591,iPhone,1,700,01/12/19 12:18,"804 River St, Los Angeles, CA 90001" +156592,Google Phone,1,600,01/10/19 12:30,"506 12th St, Seattle, WA 98101" +156592,USB-C Charging Cable,1,11.95,01/10/19 12:30,"506 12th St, Seattle, WA 98101" +156593,Lightning Charging Cable,1,14.95,01/19/19 22:28,"403 5th St, New York City, NY 10001" +156594,Bose SoundSport Headphones,1,99.99,01/24/19 19:40,"669 9th St, San Francisco, CA 94016" +156595,AA Batteries (4-pack),1,3.84,01/08/19 20:55,"334 9th St, Dallas, TX 75001" +156596,Apple Airpods Headphones,1,150,01/08/19 17:09,"357 Spruce St, Austin, TX 73301" +156597,AAA Batteries (4-pack),1,2.99,01/10/19 11:21,"879 Hill St, Los Angeles, CA 90001" +156598,AAA Batteries (4-pack),2,2.99,01/11/19 11:41,"249 11th St, Los Angeles, CA 90001" +156599,Macbook Pro Laptop,1,1700,01/26/19 21:08,"408 Cedar St, New York City, NY 10001" +156600,AA Batteries (4-pack),2,3.84,01/06/19 14:15,"323 13th St, San Francisco, CA 94016" +156601,Bose SoundSport Headphones,1,99.99,01/23/19 16:55,"710 Jackson St, Portland, ME 04101" +156602,Wired Headphones,1,11.99,01/09/19 14:22,"151 10th St, Los Angeles, CA 90001" +156603,Flatscreen TV,1,300,01/18/19 16:06,"991 River St, New York City, NY 10001" +156604,20in Monitor,1,109.99,01/03/19 15:42,"869 1st St, Portland, OR 97035" +156605,27in FHD Monitor,1,149.99,01/05/19 11:02,"92 Hickory St, Portland, ME 04101" +156606,AAA Batteries (4-pack),1,2.99,01/21/19 14:54,"126 2nd St, Atlanta, GA 30301" +156607,Apple Airpods Headphones,1,150,01/27/19 08:19,"869 Sunset St, San Francisco, CA 94016" +156608,Apple Airpods Headphones,1,150,01/28/19 11:37,"933 Chestnut St, San Francisco, CA 94016" +156609,AAA Batteries (4-pack),1,2.99,01/12/19 13:52,"503 Lincoln St, Los Angeles, CA 90001" +156610,Macbook Pro Laptop,1,1700,01/02/19 07:58,"421 Johnson St, New York City, NY 10001" +156611,Apple Airpods Headphones,1,150,01/01/19 14:15,"551 2nd St, Portland, ME 04101" +156612,USB-C Charging Cable,1,11.95,01/14/19 22:39,"65 Willow St, Boston, MA 02215" +156613,27in 4K Gaming Monitor,1,389.99,01/10/19 09:56,"48 Park St, Dallas, TX 75001" +156614,USB-C Charging Cable,1,11.95,01/02/19 18:34,"955 14th St, San Francisco, CA 94016" +156614,AA Batteries (4-pack),1,3.84,01/02/19 18:34,"955 14th St, San Francisco, CA 94016" +156615,AAA Batteries (4-pack),1,2.99,01/06/19 22:55,"125 Cedar St, Boston, MA 02215" +156616,AA Batteries (4-pack),3,3.84,01/01/19 22:08,"141 13th St, San Francisco, CA 94016" +156617,USB-C Charging Cable,1,11.95,01/11/19 15:45,"866 South St, New York City, NY 10001" +156618,Lightning Charging Cable,1,14.95,01/25/19 22:43,"741 Cherry St, Seattle, WA 98101" +156619,Apple Airpods Headphones,1,150,01/29/19 20:42,"418 Jackson St, San Francisco, CA 94016" +156620,Macbook Pro Laptop,1,1700,01/01/19 22:38,"737 Hill St, Dallas, TX 75001" +156621,Vareebadd Phone,1,400,01/26/19 09:33,"246 Sunset St, Austin, TX 73301" +156622,Vareebadd Phone,1,400,01/22/19 14:40,"678 Adams St, Los Angeles, CA 90001" +156623,Lightning Charging Cable,1,14.95,01/13/19 17:55,"165 Lakeview St, San Francisco, CA 94016" +156624,Lightning Charging Cable,1,14.95,01/28/19 11:20,"479 River St, Los Angeles, CA 90001" +156625,Wired Headphones,1,11.99,01/24/19 07:24,"552 Dogwood St, New York City, NY 10001" +156626,USB-C Charging Cable,2,11.95,01/23/19 21:48,"779 Madison St, New York City, NY 10001" +156627,AA Batteries (4-pack),2,3.84,01/30/19 19:16,"613 South St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +156628,27in FHD Monitor,1,149.99,01/04/19 18:28,"562 Highland St, New York City, NY 10001" +156629,iPhone,1,700,01/10/19 12:09,"210 Jefferson St, San Francisco, CA 94016" +156630,USB-C Charging Cable,1,11.95,01/23/19 13:03,"778 14th St, San Francisco, CA 94016" +156631,USB-C Charging Cable,1,11.95,01/29/19 13:17,"295 Pine St, Boston, MA 02215" +156632,Bose SoundSport Headphones,1,99.99,01/17/19 19:02,"791 9th St, Seattle, WA 98101" +156633,USB-C Charging Cable,1,11.95,01/05/19 09:27,"149 Church St, San Francisco, CA 94016" +156634,iPhone,1,700,01/21/19 11:29,"742 Johnson St, San Francisco, CA 94016" +156635,Apple Airpods Headphones,1,150,01/12/19 18:10,"593 Chestnut St, San Francisco, CA 94016" +156636,27in 4K Gaming Monitor,1,389.99,01/29/19 14:11,"704 Highland St, Los Angeles, CA 90001" +156637,Apple Airpods Headphones,1,150,01/28/19 10:13,"182 Hill St, Boston, MA 02215" +156638,Flatscreen TV,1,300,01/14/19 11:42,"797 5th St, San Francisco, CA 94016" +156639,AAA Batteries (4-pack),1,2.99,01/15/19 00:39,"872 Cherry St, Portland, OR 97035" +156640,Macbook Pro Laptop,1,1700,01/14/19 13:11,"943 Elm St, San Francisco, CA 94016" +156641,27in 4K Gaming Monitor,1,389.99,01/24/19 18:37,"188 Jefferson St, Los Angeles, CA 90001" +156642,27in FHD Monitor,1,149.99,01/09/19 12:04,"598 Maple St, San Francisco, CA 94016" +156643,Lightning Charging Cable,1,14.95,01/12/19 23:14,"867 7th St, San Francisco, CA 94016" +156644,Wired Headphones,1,11.99,01/26/19 13:22,"67 Willow St, Atlanta, GA 30301" +156645,Lightning Charging Cable,1,14.95,01/28/19 23:45,"531 Jackson St, Boston, MA 02215" +156646,Bose SoundSport Headphones,1,99.99,01/06/19 18:15,"641 1st St, Seattle, WA 98101" +156647,Wired Headphones,1,11.99,01/11/19 01:53,"450 Hickory St, Seattle, WA 98101" +156648,AA Batteries (4-pack),1,3.84,01/06/19 00:03,"590 Sunset St, New York City, NY 10001" +156649,AA Batteries (4-pack),1,3.84,01/24/19 11:16,"714 Spruce St, Portland, OR 97035" +156650,Bose SoundSport Headphones,1,99.99,01/18/19 17:56,"819 Dogwood St, Austin, TX 73301" +156651,Lightning Charging Cable,1,14.95,01/23/19 12:14,"165 Park St, San Francisco, CA 94016" +156651,Wired Headphones,2,11.99,01/23/19 12:14,"165 Park St, San Francisco, CA 94016" +156652,27in 4K Gaming Monitor,1,389.99,01/17/19 14:27,"995 Johnson St, Atlanta, GA 30301" +156653,AAA Batteries (4-pack),1,2.99,01/02/19 15:36,"791 Madison St, Seattle, WA 98101" +156654,Wired Headphones,1,11.99,01/19/19 07:01,"763 Elm St, Portland, OR 97035" +156655,Wired Headphones,1,11.99,01/18/19 14:50,"520 10th St, Austin, TX 73301" +156656,20in Monitor,1,109.99,01/20/19 12:28,"102 Center St, Boston, MA 02215" +156657,Wired Headphones,1,11.99,01/24/19 15:27,"686 Main St, Los Angeles, CA 90001" +156658,27in 4K Gaming Monitor,1,389.99,01/27/19 17:57,"232 Jefferson St, Los Angeles, CA 90001" +156659,Wired Headphones,2,11.99,01/25/19 20:51,"267 12th St, Los Angeles, CA 90001" +156660,AAA Batteries (4-pack),1,2.99,01/28/19 21:32,"604 Jackson St, Boston, MA 02215" +156661,Apple Airpods Headphones,1,150,01/28/19 13:13,"212 Willow St, Austin, TX 73301" +156662,AA Batteries (4-pack),1,3.84,01/10/19 12:02,"838 Meadow St, New York City, NY 10001" +156663,Google Phone,1,600,01/04/19 09:06,"302 Jefferson St, Austin, TX 73301" +156664,LG Washing Machine,1,600.0,01/28/19 23:00,"377 5th St, Atlanta, GA 30301" +156665,Flatscreen TV,1,300,01/22/19 23:12,"262 4th St, Los Angeles, CA 90001" +156666,Apple Airpods Headphones,1,150,01/20/19 14:24,"802 Washington St, New York City, NY 10001" +156667,AAA Batteries (4-pack),1,2.99,01/20/19 11:00,"823 Park St, Los Angeles, CA 90001" +156668,27in FHD Monitor,1,149.99,01/03/19 15:10,"652 4th St, New York City, NY 10001" +156669,Lightning Charging Cable,1,14.95,01/16/19 17:15,"566 Lakeview St, Boston, MA 02215" +156670,Lightning Charging Cable,1,14.95,01/08/19 14:06,"734 6th St, Boston, MA 02215" +156670,AAA Batteries (4-pack),1,2.99,01/08/19 14:06,"734 6th St, Boston, MA 02215" +156671,27in 4K Gaming Monitor,1,389.99,01/04/19 16:32,"2 14th St, Los Angeles, CA 90001" +156672,Google Phone,1,600,01/08/19 16:16,"732 Forest St, Boston, MA 02215" +156673,Bose SoundSport Headphones,1,99.99,01/13/19 07:09,"698 Johnson St, Dallas, TX 75001" +156674,27in FHD Monitor,1,149.99,01/16/19 21:56,"668 Lincoln St, San Francisco, CA 94016" +156675,Google Phone,1,600,01/21/19 22:47,"59 Center St, Atlanta, GA 30301" +156676,AA Batteries (4-pack),2,3.84,01/08/19 18:01,"360 5th St, Dallas, TX 75001" +156677,USB-C Charging Cable,1,11.95,01/04/19 00:50,"472 Highland St, Dallas, TX 75001" +156678,Bose SoundSport Headphones,1,99.99,01/27/19 11:48,"480 Church St, Dallas, TX 75001" +156679,Lightning Charging Cable,1,14.95,01/03/19 16:15,"504 7th St, Los Angeles, CA 90001" +156680,Bose SoundSport Headphones,1,99.99,01/11/19 15:18,"854 8th St, New York City, NY 10001" +156681,Apple Airpods Headphones,1,150,01/12/19 14:11,"51 Lake St, Seattle, WA 98101" +156682,USB-C Charging Cable,1,11.95,01/01/19 18:37,"791 4th St, Dallas, TX 75001" +156683,Flatscreen TV,1,300,01/08/19 17:36,"475 Wilson St, Seattle, WA 98101" +156684,AA Batteries (4-pack),1,3.84,01/07/19 18:26,"507 Johnson St, Atlanta, GA 30301" +156685,AAA Batteries (4-pack),2,2.99,01/03/19 20:05,"852 Adams St, San Francisco, CA 94016" +156686,Lightning Charging Cable,1,14.95,01/29/19 09:59,"472 Jackson St, Dallas, TX 75001" +156687,AAA Batteries (4-pack),2,2.99,01/28/19 20:40,"997 11th St, New York City, NY 10001" +156688,Lightning Charging Cable,1,14.95,01/17/19 20:25,"331 North St, San Francisco, CA 94016" +156689,Lightning Charging Cable,1,14.95,01/15/19 16:37,"5 Park St, Los Angeles, CA 90001" +156690,AAA Batteries (4-pack),1,2.99,01/25/19 10:58,"543 Chestnut St, Dallas, TX 75001" +156691,34in Ultrawide Monitor,1,379.99,01/26/19 11:10,"892 4th St, San Francisco, CA 94016" +156692,AA Batteries (4-pack),2,3.84,01/19/19 20:29,"451 Park St, Dallas, TX 75001" +156693,Lightning Charging Cable,1,14.95,01/21/19 14:30,"300 Hickory St, Dallas, TX 75001" +156694,Lightning Charging Cable,2,14.95,01/31/19 22:23,"43 Hickory St, Seattle, WA 98101" +156695,USB-C Charging Cable,1,11.95,01/27/19 09:58,"267 River St, Seattle, WA 98101" +156696,Wired Headphones,1,11.99,01/01/19 16:31,"305 Lincoln St, San Francisco, CA 94016" +156697,USB-C Charging Cable,1,11.95,01/29/19 18:02,"93 Ridge St, Atlanta, GA 30301" +156698,34in Ultrawide Monitor,1,379.99,01/21/19 11:08,"415 6th St, San Francisco, CA 94016" +156699,AA Batteries (4-pack),1,3.84,01/01/19 10:26,"146 9th St, Dallas, TX 75001" +156700,Lightning Charging Cable,1,14.95,01/02/19 11:19,"911 South St, Dallas, TX 75001" +156701,27in FHD Monitor,1,149.99,01/01/19 13:52,"674 Madison St, San Francisco, CA 94016" +156702,20in Monitor,1,109.99,01/06/19 19:48,"207 Maple St, San Francisco, CA 94016" +156703,AA Batteries (4-pack),1,3.84,01/22/19 15:37,"809 Meadow St, San Francisco, CA 94016" +156703,Lightning Charging Cable,1,14.95,01/22/19 15:37,"809 Meadow St, San Francisco, CA 94016" +156704,Wired Headphones,1,11.99,01/01/19 12:40,"396 Madison St, New York City, NY 10001" +156705,AA Batteries (4-pack),1,3.84,01/05/19 15:01,"506 12th St, Seattle, WA 98101" +156706,USB-C Charging Cable,1,11.95,01/31/19 15:37,"264 Meadow St, Portland, OR 97035" +156707,Wired Headphones,1,11.99,01/29/19 03:57,"155 Center St, San Francisco, CA 94016" +156708,Flatscreen TV,1,300,01/17/19 21:37,"719 13th St, Los Angeles, CA 90001" +156709,Lightning Charging Cable,1,14.95,01/13/19 13:51,"591 Chestnut St, San Francisco, CA 94016" +156710,USB-C Charging Cable,1,11.95,01/20/19 18:16,"699 4th St, Boston, MA 02215" +156711,Bose SoundSport Headphones,1,99.99,01/27/19 13:03,"435 11th St, San Francisco, CA 94016" +156712,20in Monitor,1,109.99,01/31/19 14:34,"56 Park St, New York City, NY 10001" +156713,Flatscreen TV,1,300,01/29/19 14:34,"386 Willow St, Atlanta, GA 30301" +156714,Bose SoundSport Headphones,1,99.99,01/16/19 10:40,"447 Madison St, New York City, NY 10001" +156715,Lightning Charging Cable,1,14.95,01/09/19 20:48,"279 Walnut St, Austin, TX 73301" +156716,Macbook Pro Laptop,1,1700,01/03/19 18:27,"941 Jefferson St, Los Angeles, CA 90001" +156717,AAA Batteries (4-pack),2,2.99,01/31/19 10:32,"248 10th St, Boston, MA 02215" +156718,Lightning Charging Cable,1,14.95,01/09/19 17:23,"317 Hill St, Atlanta, GA 30301" +156719,Lightning Charging Cable,1,14.95,01/12/19 00:40,"290 13th St, San Francisco, CA 94016" +156720,Bose SoundSport Headphones,1,99.99,01/11/19 10:50,"585 Washington St, Atlanta, GA 30301" +156721,Lightning Charging Cable,1,14.95,01/29/19 16:55,"475 Walnut St, Los Angeles, CA 90001" +156722,AA Batteries (4-pack),2,3.84,01/03/19 21:09,"901 Wilson St, Atlanta, GA 30301" +156723,AA Batteries (4-pack),1,3.84,01/11/19 20:44,"274 14th St, Dallas, TX 75001" +156724,iPhone,1,700,01/05/19 17:00,"204 9th St, Los Angeles, CA 90001" +156725,USB-C Charging Cable,1,11.95,01/14/19 14:04,"88 5th St, Portland, OR 97035" +156726,Google Phone,1,600,01/27/19 21:53,"113 Dogwood St, Atlanta, GA 30301" +156726,USB-C Charging Cable,1,11.95,01/27/19 21:53,"113 Dogwood St, Atlanta, GA 30301" +156727,34in Ultrawide Monitor,1,379.99,01/22/19 17:46,"974 Pine St, San Francisco, CA 94016" +156728,Apple Airpods Headphones,1,150,01/08/19 10:37,"960 Jefferson St, Boston, MA 02215" +156729,20in Monitor,1,109.99,01/23/19 22:17,"581 Center St, Dallas, TX 75001" +156730,Lightning Charging Cable,1,14.95,01/25/19 10:26,"972 Pine St, Seattle, WA 98101" +156731,Lightning Charging Cable,1,14.95,01/23/19 19:10,"603 Madison St, San Francisco, CA 94016" +156732,USB-C Charging Cable,1,11.95,01/26/19 20:09,"506 Dogwood St, Los Angeles, CA 90001" +156733,ThinkPad Laptop,1,999.99,01/22/19 09:02,"760 North St, Los Angeles, CA 90001" +156734,27in 4K Gaming Monitor,1,389.99,01/19/19 11:20,"3 Park St, Atlanta, GA 30301" +156735,Wired Headphones,1,11.99,01/19/19 13:45,"274 River St, Portland, ME 04101" +156736,Wired Headphones,1,11.99,01/25/19 20:16,"721 Church St, San Francisco, CA 94016" +156736,Vareebadd Phone,1,400,01/25/19 20:16,"721 Church St, San Francisco, CA 94016" +156737,Google Phone,1,600,01/03/19 09:34,"434 Chestnut St, Atlanta, GA 30301" +156738,iPhone,1,700,01/08/19 11:08,"962 13th St, San Francisco, CA 94016" +156738,Lightning Charging Cable,1,14.95,01/08/19 11:08,"962 13th St, San Francisco, CA 94016" +156739,34in Ultrawide Monitor,1,379.99,01/09/19 10:17,"6 Elm St, Austin, TX 73301" +156740,Wired Headphones,1,11.99,01/17/19 18:39,"705 Wilson St, Dallas, TX 75001" +156741,Macbook Pro Laptop,1,1700,01/03/19 13:29,"475 Cedar St, Boston, MA 02215" +156742,USB-C Charging Cable,1,11.95,01/08/19 00:06,"755 Hill St, San Francisco, CA 94016" +156743,Wired Headphones,1,11.99,01/20/19 12:04,"365 Ridge St, Boston, MA 02215" +156744,USB-C Charging Cable,1,11.95,01/14/19 08:24,"580 Johnson St, Atlanta, GA 30301" +156745,Flatscreen TV,1,300,01/31/19 11:18,"680 6th St, Portland, ME 04101" +156746,Lightning Charging Cable,1,14.95,01/23/19 13:24,"799 Johnson St, San Francisco, CA 94016" +156747,Bose SoundSport Headphones,1,99.99,01/22/19 23:36,"504 Church St, Austin, TX 73301" +156748,AA Batteries (4-pack),1,3.84,01/11/19 09:27,"250 Spruce St, Austin, TX 73301" +156749,34in Ultrawide Monitor,1,379.99,01/14/19 21:28,"253 Cedar St, San Francisco, CA 94016" +156750,Bose SoundSport Headphones,1,99.99,01/29/19 15:23,"245 Lake St, San Francisco, CA 94016" +156751,Flatscreen TV,1,300,01/13/19 22:03,"882 Jackson St, Los Angeles, CA 90001" +156752,27in 4K Gaming Monitor,1,389.99,01/16/19 13:43,"360 Cedar St, Boston, MA 02215" +156753,USB-C Charging Cable,1,11.95,01/09/19 11:25,"634 Dogwood St, New York City, NY 10001" +156754,27in FHD Monitor,1,149.99,01/06/19 10:51,"486 14th St, San Francisco, CA 94016" +156755,AAA Batteries (4-pack),1,2.99,01/13/19 00:04,"566 Pine St, Los Angeles, CA 90001" +156756,27in 4K Gaming Monitor,1,389.99,01/23/19 11:21,"63 Hill St, Atlanta, GA 30301" +156757,Lightning Charging Cable,1,14.95,01/12/19 18:03,"686 Madison St, Los Angeles, CA 90001" +156758,Wired Headphones,2,11.99,01/20/19 11:05,"280 Cherry St, San Francisco, CA 94016" +156759,Bose SoundSport Headphones,1,99.99,01/16/19 12:35,"339 Johnson St, Austin, TX 73301" +156760,iPhone,1,700,01/15/19 09:42,"999 Maple St, Atlanta, GA 30301" +156760,Wired Headphones,1,11.99,01/15/19 09:42,"999 Maple St, Atlanta, GA 30301" +156760,USB-C Charging Cable,1,11.95,01/15/19 09:42,"999 Maple St, Atlanta, GA 30301" +156761,iPhone,1,700,01/06/19 14:02,"608 River St, New York City, NY 10001" +156761,Lightning Charging Cable,1,14.95,01/06/19 14:02,"608 River St, New York City, NY 10001" +156762,Lightning Charging Cable,2,14.95,01/25/19 18:53,"54 Lincoln St, Los Angeles, CA 90001" +156763,ThinkPad Laptop,1,999.99,01/08/19 19:54,"502 Adams St, Portland, OR 97035" +156764,ThinkPad Laptop,1,999.99,01/25/19 06:21,"824 Adams St, San Francisco, CA 94016" +156765,Lightning Charging Cable,1,14.95,01/31/19 08:20,"147 River St, Portland, ME 04101" +156766,Wired Headphones,1,11.99,01/12/19 18:45,"352 Cherry St, Los Angeles, CA 90001" +156767,Google Phone,1,600,01/28/19 10:40,"473 Lakeview St, Portland, OR 97035" +156768,USB-C Charging Cable,1,11.95,01/30/19 13:17,"694 7th St, Seattle, WA 98101" +156769,Wired Headphones,1,11.99,01/26/19 19:42,"796 South St, San Francisco, CA 94016" +156770,Lightning Charging Cable,1,14.95,01/02/19 21:40,"190 Cedar St, Boston, MA 02215" +156771,USB-C Charging Cable,2,11.95,01/28/19 22:17,"166 Lakeview St, Seattle, WA 98101" +156772,AA Batteries (4-pack),1,3.84,01/15/19 14:23,"56 Center St, New York City, NY 10001" +156773,20in Monitor,1,109.99,01/04/19 12:45,"206 12th St, New York City, NY 10001" +156774,20in Monitor,1,109.99,01/24/19 19:15,"114 Jackson St, Los Angeles, CA 90001" +156775,Lightning Charging Cable,1,14.95,01/30/19 23:53,"789 South St, San Francisco, CA 94016" +156776,USB-C Charging Cable,1,11.95,01/22/19 09:51,"5 Highland St, Los Angeles, CA 90001" +,,,,, +156777,27in 4K Gaming Monitor,1,389.99,01/18/19 00:01,"868 Willow St, Boston, MA 02215" +156778,Apple Airpods Headphones,1,150,01/17/19 18:15,"547 Church St, Boston, MA 02215" +156779,AA Batteries (4-pack),1,3.84,01/24/19 11:41,"249 Madison St, San Francisco, CA 94016" +156780,Wired Headphones,1,11.99,01/19/19 15:30,"101 Willow St, New York City, NY 10001" +156781,AA Batteries (4-pack),1,3.84,01/19/19 11:09,"928 Lake St, Los Angeles, CA 90001" +156782,Macbook Pro Laptop,1,1700,01/07/19 17:28,"949 10th St, San Francisco, CA 94016" +156783,Lightning Charging Cable,1,14.95,01/11/19 21:26,"337 River St, Dallas, TX 75001" +156784,iPhone,1,700,01/24/19 14:25,"566 Spruce St, Los Angeles, CA 90001" +156785,Apple Airpods Headphones,1,150,01/24/19 17:07,"75 South St, Boston, MA 02215" +156786,Macbook Pro Laptop,1,1700,01/29/19 08:51,"527 Main St, Dallas, TX 75001" +156787,AAA Batteries (4-pack),1,2.99,01/12/19 07:37,"922 Hill St, Seattle, WA 98101" +156788,USB-C Charging Cable,1,11.95,01/12/19 11:33,"626 13th St, Boston, MA 02215" +156789,34in Ultrawide Monitor,1,379.99,01/27/19 16:32,"510 Elm St, San Francisco, CA 94016" +156790,AAA Batteries (4-pack),1,2.99,01/05/19 16:14,"310 4th St, Seattle, WA 98101" +156791,AAA Batteries (4-pack),1,2.99,01/23/19 13:52,"531 10th St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +156792,34in Ultrawide Monitor,1,379.99,01/05/19 12:05,"817 12th St, Atlanta, GA 30301" +156793,Apple Airpods Headphones,1,150,01/31/19 09:47,"567 Sunset St, Los Angeles, CA 90001" +156794,Wired Headphones,1,11.99,01/13/19 11:52,"233 12th St, San Francisco, CA 94016" +156795,AA Batteries (4-pack),1,3.84,01/10/19 15:41,"49 13th St, San Francisco, CA 94016" +156796,Apple Airpods Headphones,1,150,01/16/19 15:15,"206 Pine St, Dallas, TX 75001" +156797,Lightning Charging Cable,1,14.95,01/28/19 10:52,"694 Maple St, San Francisco, CA 94016" +156797,Lightning Charging Cable,1,14.95,01/28/19 10:52,"694 Maple St, San Francisco, CA 94016" +156798,Lightning Charging Cable,1,14.95,01/07/19 11:12,"447 14th St, Portland, OR 97035" +156799,Apple Airpods Headphones,1,150,01/05/19 09:18,"756 13th St, Los Angeles, CA 90001" +156800,AAA Batteries (4-pack),1,2.99,01/04/19 12:41,"644 Johnson St, San Francisco, CA 94016" +156801,Google Phone,1,600,01/02/19 11:58,"955 West St, New York City, NY 10001" +156802,iPhone,1,700,01/07/19 17:31,"499 Meadow St, Portland, OR 97035" +156803,Bose SoundSport Headphones,1,99.99,01/11/19 13:42,"496 5th St, Los Angeles, CA 90001" +156804,AAA Batteries (4-pack),1,2.99,01/26/19 21:53,"818 Forest St, Dallas, TX 75001" +156805,USB-C Charging Cable,1,11.95,01/06/19 20:30,"145 Spruce St, Portland, OR 97035" +156806,AA Batteries (4-pack),2,3.84,01/12/19 17:10,"674 1st St, New York City, NY 10001" +156807,AA Batteries (4-pack),1,3.84,01/30/19 13:40,"495 Meadow St, Austin, TX 73301" +156808,AA Batteries (4-pack),1,3.84,01/02/19 14:22,"87 Lakeview St, Los Angeles, CA 90001" +156809,USB-C Charging Cable,1,11.95,01/21/19 09:37,"388 Spruce St, New York City, NY 10001" +156810,AAA Batteries (4-pack),2,2.99,01/26/19 16:05,"597 Hill St, San Francisco, CA 94016" +156811,iPhone,1,700,01/28/19 22:04,"558 5th St, Boston, MA 02215" +156812,34in Ultrawide Monitor,1,379.99,01/06/19 16:04,"477 Adams St, San Francisco, CA 94016" +156813,Macbook Pro Laptop,1,1700,01/27/19 11:17,"990 6th St, Dallas, TX 75001" +156814,Bose SoundSport Headphones,1,99.99,01/10/19 21:49,"861 9th St, San Francisco, CA 94016" +156815,Bose SoundSport Headphones,1,99.99,01/12/19 14:11,"337 Wilson St, San Francisco, CA 94016" +156816,AAA Batteries (4-pack),2,2.99,01/22/19 16:49,"212 Walnut St, Dallas, TX 75001" +156817,ThinkPad Laptop,1,999.99,01/14/19 20:17,"352 2nd St, New York City, NY 10001" +156818,USB-C Charging Cable,1,11.95,01/28/19 14:09,"582 Meadow St, Boston, MA 02215" +156819,Wired Headphones,1,11.99,01/31/19 18:30,"892 12th St, Portland, OR 97035" +156820,AAA Batteries (4-pack),2,2.99,01/18/19 01:05,"927 Hickory St, Boston, MA 02215" +156821,iPhone,1,700,01/23/19 22:16,"852 12th St, San Francisco, CA 94016" +156821,Lightning Charging Cable,1,14.95,01/23/19 22:16,"852 12th St, San Francisco, CA 94016" +156822,USB-C Charging Cable,1,11.95,01/25/19 17:20,"530 Jefferson St, San Francisco, CA 94016" +156823,34in Ultrawide Monitor,1,379.99,01/20/19 02:46,"319 Hickory St, New York City, NY 10001" +156824,AAA Batteries (4-pack),1,2.99,01/29/19 18:06,"192 Maple St, Atlanta, GA 30301" +156825,Wired Headphones,1,11.99,01/22/19 12:25,"945 11th St, Portland, OR 97035" +156826,Wired Headphones,1,11.99,01/07/19 22:36,"414 8th St, Austin, TX 73301" +156827,AAA Batteries (4-pack),1,2.99,01/10/19 03:09,"415 Hickory St, Portland, OR 97035" +156828,Bose SoundSport Headphones,1,99.99,01/06/19 11:12,"118 Adams St, San Francisco, CA 94016" +156829,Lightning Charging Cable,1,14.95,01/08/19 05:08,"568 Highland St, San Francisco, CA 94016" +156830,Lightning Charging Cable,1,14.95,01/26/19 17:38,"160 Chestnut St, Los Angeles, CA 90001" +156831,Apple Airpods Headphones,1,150,01/27/19 22:17,"797 Center St, Los Angeles, CA 90001" +156832,USB-C Charging Cable,1,11.95,01/19/19 18:59,"40 13th St, Portland, ME 04101" +156833,USB-C Charging Cable,1,11.95,01/14/19 09:57,"13 West St, New York City, NY 10001" +156834,Flatscreen TV,1,300,01/29/19 18:25,"132 Jefferson St, Portland, ME 04101" +156835,20in Monitor,1,109.99,01/21/19 18:33,"179 Park St, Los Angeles, CA 90001" +156836,iPhone,1,700,01/18/19 17:57,"910 9th St, Los Angeles, CA 90001" +156836,Wired Headphones,1,11.99,01/18/19 17:57,"910 9th St, Los Angeles, CA 90001" +156837,Apple Airpods Headphones,1,150,01/30/19 11:20,"322 10th St, Dallas, TX 75001" +156838,AAA Batteries (4-pack),1,2.99,01/21/19 13:29,"803 South St, San Francisco, CA 94016" +156839,USB-C Charging Cable,1,11.95,01/31/19 12:59,"371 Wilson St, Austin, TX 73301" +156840,Apple Airpods Headphones,1,150,01/15/19 17:31,"62 13th St, Los Angeles, CA 90001" +156841,AA Batteries (4-pack),3,3.84,01/27/19 22:30,"739 Wilson St, Dallas, TX 75001" +156842,Wired Headphones,1,11.99,01/30/19 18:29,"539 Forest St, Los Angeles, CA 90001" +156843,Bose SoundSport Headphones,1,99.99,01/21/19 07:38,"709 Walnut St, San Francisco, CA 94016" +156844,Lightning Charging Cable,1,14.95,01/10/19 17:25,"758 Sunset St, Atlanta, GA 30301" +156845,USB-C Charging Cable,1,11.95,01/29/19 22:34,"262 Walnut St, Dallas, TX 75001" +156846,Wired Headphones,1,11.99,01/24/19 07:32,"948 Washington St, Los Angeles, CA 90001" +156847,Lightning Charging Cable,1,14.95,01/11/19 21:14,"62 14th St, Seattle, WA 98101" +156848,34in Ultrawide Monitor,1,379.99,01/21/19 07:45,"117 Ridge St, Boston, MA 02215" +156849,iPhone,1,700,01/01/19 19:58,"530 Pine St, New York City, NY 10001" +156850,Lightning Charging Cable,1,14.95,01/19/19 22:25,"563 South St, Atlanta, GA 30301" +156851,Macbook Pro Laptop,1,1700,01/29/19 13:15,"323 1st St, Austin, TX 73301" +156852,AA Batteries (4-pack),1,3.84,01/03/19 12:02,"263 Dogwood St, Boston, MA 02215" +,,,,, +156853,AA Batteries (4-pack),3,3.84,01/21/19 10:58,"573 1st St, Seattle, WA 98101" +156854,Wired Headphones,1,11.99,01/27/19 13:50,"830 9th St, New York City, NY 10001" +156855,AAA Batteries (4-pack),1,2.99,01/01/19 21:43,"653 Ridge St, Los Angeles, CA 90001" +156856,Bose SoundSport Headphones,1,99.99,01/25/19 17:00,"877 12th St, Austin, TX 73301" +156857,Flatscreen TV,1,300,01/20/19 18:17,"957 4th St, Seattle, WA 98101" +156858,27in FHD Monitor,1,149.99,01/15/19 10:36,"536 5th St, Portland, OR 97035" +156859,iPhone,1,700,01/04/19 14:01,"275 6th St, Los Angeles, CA 90001" +156860,Wired Headphones,1,11.99,01/04/19 10:11,"207 North St, Austin, TX 73301" +156861,Vareebadd Phone,1,400,01/13/19 07:03,"650 Wilson St, Los Angeles, CA 90001" +156861,Wired Headphones,1,11.99,01/13/19 07:03,"650 Wilson St, Los Angeles, CA 90001" +156861,Wired Headphones,1,11.99,01/13/19 07:03,"650 Wilson St, Los Angeles, CA 90001" +,,,,, +156862,iPhone,1,700,01/09/19 19:02,"332 Church St, New York City, NY 10001" +156862,Apple Airpods Headphones,1,150,01/09/19 19:02,"332 Church St, New York City, NY 10001" +156863,20in Monitor,1,109.99,01/24/19 20:02,"691 River St, San Francisco, CA 94016" +156864,Lightning Charging Cable,1,14.95,01/03/19 01:51,"784 Elm St, Boston, MA 02215" +156865,Apple Airpods Headphones,1,150,01/14/19 06:42,"311 Maple St, Atlanta, GA 30301" +156866,Macbook Pro Laptop,1,1700,01/01/19 15:27,"354 Meadow St, Atlanta, GA 30301" +156867,Bose SoundSport Headphones,1,99.99,01/01/19 14:34,"753 7th St, Portland, OR 97035" +156868,Wired Headphones,1,11.99,01/03/19 20:47,"371 8th St, Boston, MA 02215" +156869,Wired Headphones,1,11.99,01/26/19 12:05,"803 7th St, Boston, MA 02215" +156870,iPhone,1,700,01/29/19 14:32,"685 10th St, San Francisco, CA 94016" +156870,Apple Airpods Headphones,1,150,01/29/19 14:32,"685 10th St, San Francisco, CA 94016" +156871,AAA Batteries (4-pack),2,2.99,01/28/19 17:36,"271 14th St, Portland, OR 97035" +156872,Lightning Charging Cable,1,14.95,01/29/19 22:05,"674 Wilson St, Los Angeles, CA 90001" +156873,AA Batteries (4-pack),2,3.84,01/11/19 19:53,"194 7th St, Seattle, WA 98101" +156874,USB-C Charging Cable,1,11.95,01/07/19 07:15,"930 Washington St, Dallas, TX 75001" +156875,27in FHD Monitor,1,149.99,01/04/19 17:20,"705 Lake St, Los Angeles, CA 90001" +156876,Wired Headphones,1,11.99,01/02/19 17:34,"245 Church St, Boston, MA 02215" +156877,AA Batteries (4-pack),1,3.84,01/11/19 11:41,"697 10th St, San Francisco, CA 94016" +156877,AAA Batteries (4-pack),1,2.99,01/11/19 11:41,"697 10th St, San Francisco, CA 94016" +156878,AA Batteries (4-pack),2,3.84,01/23/19 16:16,"500 Lincoln St, San Francisco, CA 94016" +156879,iPhone,1,700,01/13/19 19:25,"398 Sunset St, New York City, NY 10001" +156880,34in Ultrawide Monitor,1,379.99,01/29/19 23:47,"886 14th St, Boston, MA 02215" +156881,AA Batteries (4-pack),1,3.84,01/03/19 20:20,"128 2nd St, San Francisco, CA 94016" +156882,AA Batteries (4-pack),2,3.84,01/05/19 07:51,"972 River St, Atlanta, GA 30301" +156883,20in Monitor,1,109.99,01/03/19 03:22,"156 1st St, New York City, NY 10001" +156884,USB-C Charging Cable,1,11.95,01/13/19 03:06,"462 Wilson St, San Francisco, CA 94016" +156885,Lightning Charging Cable,1,14.95,01/08/19 06:02,"4 Spruce St, Los Angeles, CA 90001" +156886,AAA Batteries (4-pack),1,2.99,01/21/19 22:13,"997 Lake St, Dallas, TX 75001" +156887,27in FHD Monitor,1,149.99,01/16/19 12:18,"447 Pine St, Atlanta, GA 30301" +156888,iPhone,1,700,01/25/19 22:45,"399 Sunset St, Boston, MA 02215" +156889,34in Ultrawide Monitor,1,379.99,01/12/19 13:46,"830 10th St, New York City, NY 10001" +156890,20in Monitor,1,109.99,01/11/19 12:15,"397 Chestnut St, Los Angeles, CA 90001" +156891,AAA Batteries (4-pack),1,2.99,01/12/19 06:14,"837 Johnson St, Los Angeles, CA 90001" +156892,AA Batteries (4-pack),2,3.84,01/16/19 01:48,"83 Meadow St, Portland, OR 97035" +156893,Flatscreen TV,1,300,01/03/19 17:53,"637 5th St, Los Angeles, CA 90001" +156894,Bose SoundSport Headphones,1,99.99,01/02/19 12:17,"939 1st St, New York City, NY 10001" +156895,Macbook Pro Laptop,1,1700,01/19/19 23:22,"269 Madison St, Seattle, WA 98101" +156896,ThinkPad Laptop,1,999.99,01/22/19 12:13,"571 Elm St, San Francisco, CA 94016" +156897,Apple Airpods Headphones,1,150,01/31/19 06:58,"237 12th St, Atlanta, GA 30301" +156898,USB-C Charging Cable,1,11.95,01/10/19 14:53,"589 Elm St, San Francisco, CA 94016" +156899,USB-C Charging Cable,1,11.95,01/29/19 13:44,"636 Lake St, Atlanta, GA 30301" +156900,AA Batteries (4-pack),1,3.84,01/21/19 23:31,"76 Chestnut St, Los Angeles, CA 90001" +156901,34in Ultrawide Monitor,1,379.99,01/02/19 22:03,"252 6th St, San Francisco, CA 94016" +156902,Wired Headphones,1,11.99,01/02/19 10:20,"896 6th St, Los Angeles, CA 90001" +156903,Google Phone,1,600,01/01/19 14:14,"807 Adams St, Seattle, WA 98101" +156903,USB-C Charging Cable,1,11.95,01/01/19 14:14,"807 Adams St, Seattle, WA 98101" +156904,Apple Airpods Headphones,1,150,01/07/19 19:38,"659 Sunset St, Atlanta, GA 30301" +156905,27in FHD Monitor,1,149.99,01/04/19 11:03,"405 Pine St, Dallas, TX 75001" +156906,AAA Batteries (4-pack),1,2.99,01/24/19 23:16,"529 Meadow St, New York City, NY 10001" +156907,Apple Airpods Headphones,1,150,01/03/19 07:46,"898 Lincoln St, Boston, MA 02215" +156908,Bose SoundSport Headphones,1,99.99,01/12/19 12:04,"748 10th St, Boston, MA 02215" +156909,AAA Batteries (4-pack),1,2.99,01/29/19 13:49,"450 Pine St, Portland, OR 97035" +156910,AA Batteries (4-pack),1,3.84,01/19/19 22:54,"924 Johnson St, Boston, MA 02215" +156911,Lightning Charging Cable,1,14.95,01/13/19 15:44,"962 Chestnut St, Los Angeles, CA 90001" +156912,Lightning Charging Cable,2,14.95,01/30/19 11:04,"945 1st St, Boston, MA 02215" +156913,USB-C Charging Cable,1,11.95,01/22/19 18:10,"932 Pine St, New York City, NY 10001" +156914,ThinkPad Laptop,1,999.99,01/08/19 14:08,"347 North St, Boston, MA 02215" +156915,27in FHD Monitor,1,149.99,01/08/19 10:33,"538 Madison St, San Francisco, CA 94016" +156916,AA Batteries (4-pack),2,3.84,01/22/19 19:05,"4 12th St, San Francisco, CA 94016" +156917,20in Monitor,1,109.99,01/18/19 20:15,"573 Ridge St, San Francisco, CA 94016" +156918,Apple Airpods Headphones,1,150,01/11/19 14:39,"695 5th St, San Francisco, CA 94016" +156919,Bose SoundSport Headphones,1,99.99,01/04/19 01:35,"787 13th St, Atlanta, GA 30301" +156920,Lightning Charging Cable,1,14.95,01/21/19 16:19,"202 5th St, Portland, ME 04101" +156921,Wired Headphones,1,11.99,01/26/19 02:11,"529 Madison St, Austin, TX 73301" +156922,Macbook Pro Laptop,1,1700,01/16/19 10:01,"349 Meadow St, Seattle, WA 98101" +156923,Apple Airpods Headphones,1,150,01/26/19 20:40,"858 6th St, Los Angeles, CA 90001" +156924,Lightning Charging Cable,1,14.95,01/18/19 14:07,"909 Jackson St, Los Angeles, CA 90001" +156925,AAA Batteries (4-pack),1,2.99,01/13/19 19:36,"888 Washington St, San Francisco, CA 94016" +156926,Bose SoundSport Headphones,1,99.99,01/22/19 21:33,"746 5th St, Los Angeles, CA 90001" +156927,Lightning Charging Cable,1,14.95,01/13/19 00:50,"993 Johnson St, Portland, OR 97035" +156928,iPhone,1,700,01/20/19 17:58,"524 Willow St, San Francisco, CA 94016" +156929,Lightning Charging Cable,1,14.95,01/28/19 14:39,"721 Main St, Portland, OR 97035" +156930,Apple Airpods Headphones,1,150,01/12/19 23:16,"756 1st St, Austin, TX 73301" +156931,34in Ultrawide Monitor,1,379.99,01/13/19 21:20,"226 South St, San Francisco, CA 94016" +156932,20in Monitor,1,109.99,01/24/19 09:38,"615 13th St, Los Angeles, CA 90001" +156933,Flatscreen TV,1,300,01/24/19 08:58,"692 Jackson St, New York City, NY 10001" +156934,AAA Batteries (4-pack),1,2.99,01/20/19 20:48,"457 Spruce St, New York City, NY 10001" +156935,Wired Headphones,1,11.99,01/17/19 10:27,"278 Pine St, Los Angeles, CA 90001" +156936,iPhone,1,700,01/24/19 18:00,"149 Jackson St, Los Angeles, CA 90001" +156937,Wired Headphones,1,11.99,01/11/19 11:46,"5 Elm St, San Francisco, CA 94016" +156938,AAA Batteries (4-pack),3,2.99,01/14/19 17:38,"586 River St, Los Angeles, CA 90001" +156939,27in 4K Gaming Monitor,1,389.99,01/15/19 15:52,"455 12th St, Portland, ME 04101" +156940,Apple Airpods Headphones,1,150,01/21/19 00:20,"401 North St, Los Angeles, CA 90001" +156941,Wired Headphones,1,11.99,01/29/19 07:47,"142 Forest St, San Francisco, CA 94016" +156942,34in Ultrawide Monitor,2,379.99,01/12/19 18:50,"353 Church St, San Francisco, CA 94016" +156943,AAA Batteries (4-pack),1,2.99,01/31/19 19:08,"13 Jefferson St, Seattle, WA 98101" +156944,27in 4K Gaming Monitor,1,389.99,01/13/19 11:50,"262 Madison St, San Francisco, CA 94016" +156945,iPhone,1,700,01/24/19 14:34,"814 Lake St, Portland, OR 97035" +156946,AAA Batteries (4-pack),2,2.99,01/18/19 23:55,"371 1st St, Los Angeles, CA 90001" +156947,27in 4K Gaming Monitor,1,389.99,01/13/19 05:57,"981 Willow St, New York City, NY 10001" +156948,27in FHD Monitor,1,149.99,01/10/19 11:08,"590 Elm St, San Francisco, CA 94016" +156949,USB-C Charging Cable,1,11.95,01/11/19 13:05,"502 Dogwood St, San Francisco, CA 94016" +156950,Wired Headphones,1,11.99,01/27/19 13:59,"718 Lincoln St, Atlanta, GA 30301" +156951,USB-C Charging Cable,1,11.95,01/22/19 13:58,"535 Jackson St, San Francisco, CA 94016" +156952,iPhone,1,700,01/24/19 22:19,"408 Highland St, New York City, NY 10001" +156953,Macbook Pro Laptop,1,1700,01/14/19 15:17,"267 14th St, Los Angeles, CA 90001" +156954,AA Batteries (4-pack),1,3.84,01/21/19 11:00,"481 Lake St, Dallas, TX 75001" +156955,34in Ultrawide Monitor,1,379.99,01/27/19 13:22,"56 Cedar St, San Francisco, CA 94016" +156955,Wired Headphones,2,11.99,01/27/19 13:22,"56 Cedar St, San Francisco, CA 94016" +156956,Google Phone,1,600,01/22/19 14:34,"352 Sunset St, San Francisco, CA 94016" +156957,USB-C Charging Cable,1,11.95,01/05/19 23:23,"194 1st St, Los Angeles, CA 90001" +156958,Lightning Charging Cable,1,14.95,01/30/19 23:37,"486 Pine St, New York City, NY 10001" +156959,AAA Batteries (4-pack),2,2.99,01/12/19 14:30,"769 5th St, Seattle, WA 98101" +156960,iPhone,1,700,01/02/19 22:29,"749 Main St, San Francisco, CA 94016" +156960,Lightning Charging Cable,1,14.95,01/02/19 22:29,"749 Main St, San Francisco, CA 94016" +156961,ThinkPad Laptop,1,999.99,01/06/19 10:46,"239 Maple St, San Francisco, CA 94016" +156962,Wired Headphones,1,11.99,01/03/19 10:41,"852 11th St, Los Angeles, CA 90001" +156963,27in FHD Monitor,1,149.99,01/10/19 22:42,"516 Forest St, New York City, NY 10001" +156964,AA Batteries (4-pack),2,3.84,01/24/19 09:16,"887 Washington St, Los Angeles, CA 90001" +156965,AAA Batteries (4-pack),2,2.99,01/25/19 15:54,"656 Elm St, Portland, OR 97035" +156966,Bose SoundSport Headphones,1,99.99,01/25/19 23:20,"126 12th St, San Francisco, CA 94016" +156967,AA Batteries (4-pack),1,3.84,01/05/19 21:27,"733 North St, Atlanta, GA 30301" +156968,AAA Batteries (4-pack),1,2.99,01/02/19 19:11,"307 Maple St, Los Angeles, CA 90001" +156969,iPhone,1,700,01/16/19 02:13,"207 Forest St, Atlanta, GA 30301" +156970,Wired Headphones,1,11.99,01/04/19 21:01,"637 Center St, Atlanta, GA 30301" +156971,USB-C Charging Cable,1,11.95,01/08/19 09:33,"283 Pine St, New York City, NY 10001" +156972,AAA Batteries (4-pack),1,2.99,01/15/19 16:43,"612 8th St, San Francisco, CA 94016" +156973,Apple Airpods Headphones,1,150,01/23/19 11:20,"529 12th St, Boston, MA 02215" +156974,AAA Batteries (4-pack),3,2.99,01/04/19 13:22,"18 Hill St, New York City, NY 10001" +156975,Lightning Charging Cable,1,14.95,01/07/19 08:54,"564 Jefferson St, Atlanta, GA 30301" +156976,Wired Headphones,1,11.99,01/03/19 20:49,"393 Jefferson St, Boston, MA 02215" +156977,27in 4K Gaming Monitor,1,389.99,01/23/19 08:29,"162 4th St, Portland, OR 97035" +156978,Flatscreen TV,1,300,01/17/19 12:10,"377 2nd St, San Francisco, CA 94016" +156979,USB-C Charging Cable,1,11.95,01/19/19 17:40,"311 Dogwood St, San Francisco, CA 94016" +156980,Lightning Charging Cable,1,14.95,01/03/19 12:07,"895 10th St, Portland, OR 97035" +156981,AA Batteries (4-pack),1,3.84,01/18/19 12:39,"801 Meadow St, San Francisco, CA 94016" +156982,Apple Airpods Headphones,1,150,01/10/19 13:47,"682 Wilson St, Seattle, WA 98101" +156983,20in Monitor,1,109.99,01/10/19 14:03,"326 11th St, Seattle, WA 98101" +156984,Lightning Charging Cable,1,14.95,01/20/19 19:45,"992 Ridge St, New York City, NY 10001" +156985,Apple Airpods Headphones,1,150,01/26/19 19:14,"737 Washington St, Los Angeles, CA 90001" +156986,Vareebadd Phone,1,400,01/07/19 10:07,"297 West St, Austin, TX 73301" +156987,Google Phone,1,600,01/11/19 08:34,"319 9th St, Austin, TX 73301" +156988,ThinkPad Laptop,1,999.99,01/13/19 08:48,"761 7th St, San Francisco, CA 94016" +156989,Lightning Charging Cable,1,14.95,01/21/19 10:41,"283 Lincoln St, Portland, OR 97035" +156989,Lightning Charging Cable,1,14.95,01/21/19 10:41,"283 Lincoln St, Portland, OR 97035" +156990,USB-C Charging Cable,1,11.95,01/10/19 12:28,"324 Pine St, Los Angeles, CA 90001" +156991,Bose SoundSport Headphones,1,99.99,01/14/19 11:31,"361 6th St, San Francisco, CA 94016" +156992,Wired Headphones,1,11.99,01/05/19 20:40,"7 Highland St, San Francisco, CA 94016" +156993,Wired Headphones,1,11.99,01/03/19 19:06,"414 South St, Boston, MA 02215" +156994,USB-C Charging Cable,2,11.95,01/17/19 20:23,"892 Sunset St, Seattle, WA 98101" +156995,Bose SoundSport Headphones,1,99.99,01/09/19 17:19,"608 Jefferson St, Dallas, TX 75001" +156996,ThinkPad Laptop,1,999.99,01/24/19 10:29,"968 Lake St, New York City, NY 10001" +156997,USB-C Charging Cable,1,11.95,01/05/19 14:47,"459 Sunset St, New York City, NY 10001" +156998,AAA Batteries (4-pack),4,2.99,01/23/19 16:06,"148 Willow St, Los Angeles, CA 90001" +156999,AA Batteries (4-pack),1,3.84,01/10/19 00:47,"277 Lakeview St, San Francisco, CA 94016" +157000,Vareebadd Phone,1,400,01/07/19 13:59,"5 13th St, Los Angeles, CA 90001" +157001,USB-C Charging Cable,1,11.95,01/06/19 12:21,"486 Sunset St, New York City, NY 10001" +157002,AAA Batteries (4-pack),1,2.99,01/31/19 20:29,"721 Park St, San Francisco, CA 94016" +157003,AA Batteries (4-pack),1,3.84,01/14/19 18:57,"923 Hill St, Los Angeles, CA 90001" +157004,Lightning Charging Cable,1,14.95,01/10/19 11:13,"452 Ridge St, San Francisco, CA 94016" +157004,Wired Headphones,1,11.99,01/10/19 11:13,"452 Ridge St, San Francisco, CA 94016" +157005,Apple Airpods Headphones,1,150,01/22/19 11:46,"894 South St, San Francisco, CA 94016" +157006,Apple Airpods Headphones,1,150,01/09/19 12:11,"59 Washington St, Atlanta, GA 30301" +157007,AA Batteries (4-pack),2,3.84,01/04/19 15:58,"385 7th St, San Francisco, CA 94016" +157008,AAA Batteries (4-pack),2,2.99,01/27/19 00:32,"924 8th St, Portland, OR 97035" +157009,Bose SoundSport Headphones,1,99.99,01/30/19 18:16,"432 7th St, Austin, TX 73301" +157010,AA Batteries (4-pack),1,3.84,01/19/19 15:29,"599 Church St, Boston, MA 02215" +157011,Apple Airpods Headphones,1,150,01/17/19 13:25,"620 Adams St, Atlanta, GA 30301" +157012,Bose SoundSport Headphones,1,99.99,01/10/19 19:38,"865 South St, San Francisco, CA 94016" +157013,AA Batteries (4-pack),1,3.84,01/26/19 21:00,"504 Lakeview St, Los Angeles, CA 90001" +157014,AA Batteries (4-pack),2,3.84,01/01/19 15:39,"258 Pine St, Dallas, TX 75001" +157015,AAA Batteries (4-pack),2,2.99,01/06/19 13:21,"615 Sunset St, Los Angeles, CA 90001" +157016,Lightning Charging Cable,1,14.95,01/31/19 12:05,"678 8th St, Atlanta, GA 30301" +157017,Lightning Charging Cable,1,14.95,01/04/19 11:03,"512 Chestnut St, Seattle, WA 98101" +157018,Wired Headphones,1,11.99,01/24/19 14:25,"193 Willow St, San Francisco, CA 94016" +157019,27in 4K Gaming Monitor,1,389.99,01/10/19 21:24,"244 11th St, Austin, TX 73301" +157020,Wired Headphones,1,11.99,01/24/19 14:29,"891 Maple St, San Francisco, CA 94016" +157021,AAA Batteries (4-pack),1,2.99,01/12/19 10:24,"207 North St, San Francisco, CA 94016" +157022,Bose SoundSport Headphones,1,99.99,01/31/19 16:12,"331 Spruce St, New York City, NY 10001" +157023,ThinkPad Laptop,1,999.99,01/18/19 15:02,"400 7th St, Los Angeles, CA 90001" +157024,Bose SoundSport Headphones,2,99.99,01/25/19 12:02,"166 Walnut St, New York City, NY 10001" +157025,USB-C Charging Cable,1,11.95,01/27/19 19:57,"999 Park St, Los Angeles, CA 90001" +157026,AA Batteries (4-pack),1,3.84,01/12/19 17:42,"849 Park St, San Francisco, CA 94016" +157027,Bose SoundSport Headphones,1,99.99,01/23/19 16:46,"49 Jackson St, New York City, NY 10001" +157028,Wired Headphones,1,11.99,01/20/19 10:55,"717 10th St, Boston, MA 02215" +157029,AAA Batteries (4-pack),2,2.99,01/10/19 01:04,"104 2nd St, Dallas, TX 75001" +157030,Apple Airpods Headphones,1,150,01/13/19 17:22,"897 Pine St, Boston, MA 02215" +157031,Apple Airpods Headphones,1,150,02/01/19 00:07,"842 Dogwood St, New York City, NY 10001" +157032,Wired Headphones,1,11.99,01/30/19 15:28,"316 Spruce St, Austin, TX 73301" +157033,Lightning Charging Cable,1,14.95,01/03/19 16:17,"971 Cherry St, Atlanta, GA 30301" +157034,USB-C Charging Cable,1,11.95,01/22/19 22:17,"590 Maple St, Atlanta, GA 30301" +157035,Wired Headphones,1,11.99,01/13/19 14:34,"26 1st St, New York City, NY 10001" +157036,Vareebadd Phone,1,400,01/16/19 21:53,"715 Hill St, San Francisco, CA 94016" +157037,Bose SoundSport Headphones,1,99.99,01/04/19 21:14,"204 Chestnut St, San Francisco, CA 94016" +157038,USB-C Charging Cable,1,11.95,01/21/19 21:38,"470 9th St, Seattle, WA 98101" +157039,Macbook Pro Laptop,1,1700,01/29/19 11:56,"292 Forest St, San Francisco, CA 94016" +157040,27in FHD Monitor,1,149.99,01/12/19 14:30,"97 Adams St, San Francisco, CA 94016" +157041,Wired Headphones,1,11.99,01/04/19 13:16,"101 Forest St, Boston, MA 02215" +157042,Apple Airpods Headphones,1,150,01/30/19 23:37,"973 Dogwood St, New York City, NY 10001" +157043,27in FHD Monitor,1,149.99,01/10/19 23:10,"549 8th St, Los Angeles, CA 90001" +157044,USB-C Charging Cable,1,11.95,01/15/19 23:41,"838 7th St, Atlanta, GA 30301" +157045,Apple Airpods Headphones,1,150,01/29/19 08:37,"348 Park St, New York City, NY 10001" +157046,USB-C Charging Cable,1,11.95,01/14/19 16:08,"565 Spruce St, Los Angeles, CA 90001" +157047,Macbook Pro Laptop,1,1700,01/26/19 08:48,"615 7th St, New York City, NY 10001" +157048,27in FHD Monitor,1,149.99,01/17/19 22:34,"771 South St, New York City, NY 10001" +157049,Apple Airpods Headphones,1,150,01/26/19 22:30,"41 Dogwood St, New York City, NY 10001" +157050,Wired Headphones,1,11.99,01/13/19 20:26,"125 Washington St, Atlanta, GA 30301" +157051,AA Batteries (4-pack),1,3.84,01/12/19 17:16,"233 11th St, Los Angeles, CA 90001" +157052,Lightning Charging Cable,1,14.95,01/03/19 17:41,"207 Johnson St, Los Angeles, CA 90001" +157053,USB-C Charging Cable,1,11.95,01/12/19 11:46,"744 1st St, New York City, NY 10001" +157054,Apple Airpods Headphones,1,150,01/25/19 11:45,"243 1st St, Boston, MA 02215" +157055,AAA Batteries (4-pack),1,2.99,01/19/19 23:24,"692 2nd St, Seattle, WA 98101" +157056,Lightning Charging Cable,1,14.95,01/19/19 18:35,"670 Highland St, Portland, OR 97035" +157057,AA Batteries (4-pack),1,3.84,01/25/19 13:43,"334 Pine St, San Francisco, CA 94016" +157058,iPhone,1,700,01/22/19 10:11,"623 6th St, New York City, NY 10001" +157059,AA Batteries (4-pack),1,3.84,01/18/19 14:42,"647 Center St, Portland, OR 97035" +157060,Lightning Charging Cable,1,14.95,01/14/19 11:06,"289 Lincoln St, Seattle, WA 98101" +157061,AA Batteries (4-pack),1,3.84,01/14/19 11:48,"484 Jackson St, Portland, OR 97035" +157062,USB-C Charging Cable,1,11.95,01/16/19 12:14,"867 Lakeview St, San Francisco, CA 94016" +157063,USB-C Charging Cable,2,11.95,01/21/19 15:04,"584 Maple St, Los Angeles, CA 90001" +157064,Flatscreen TV,1,300,01/30/19 17:10,"638 6th St, Boston, MA 02215" +157065,27in 4K Gaming Monitor,1,389.99,01/26/19 16:14,"315 2nd St, New York City, NY 10001" +157066,Bose SoundSport Headphones,1,99.99,01/01/19 20:31,"589 West St, Los Angeles, CA 90001" +157067,USB-C Charging Cable,2,11.95,01/18/19 00:08,"501 1st St, San Francisco, CA 94016" +157068,Macbook Pro Laptop,1,1700,01/09/19 19:43,"411 4th St, Boston, MA 02215" +157069,Bose SoundSport Headphones,1,99.99,01/10/19 12:15,"765 Forest St, Dallas, TX 75001" +157070,Lightning Charging Cable,1,14.95,01/05/19 11:03,"4 Elm St, Dallas, TX 75001" +157070,Wired Headphones,1,11.99,01/05/19 11:03,"4 Elm St, Dallas, TX 75001" +157071,Bose SoundSport Headphones,1,99.99,01/18/19 17:03,"24 Jefferson St, San Francisco, CA 94016" +157072,AA Batteries (4-pack),2,3.84,01/17/19 21:57,"310 Maple St, Portland, OR 97035" +157073,27in 4K Gaming Monitor,1,389.99,01/25/19 02:24,"653 Washington St, Austin, TX 73301" +157074,Wired Headphones,1,11.99,01/13/19 18:28,"141 Washington St, Atlanta, GA 30301" +157075,Bose SoundSport Headphones,1,99.99,01/21/19 01:42,"150 1st St, Los Angeles, CA 90001" +157076,Wired Headphones,2,11.99,01/24/19 15:45,"300 10th St, Atlanta, GA 30301" +157077,AA Batteries (4-pack),1,3.84,01/20/19 13:18,"869 Jefferson St, New York City, NY 10001" +157078,AA Batteries (4-pack),1,3.84,01/05/19 15:52,"298 4th St, San Francisco, CA 94016" +157078,Apple Airpods Headphones,1,150,01/05/19 15:52,"298 4th St, San Francisco, CA 94016" +157079,AA Batteries (4-pack),2,3.84,01/09/19 18:46,"716 Hickory St, Dallas, TX 75001" +157080,Wired Headphones,1,11.99,01/14/19 15:51,"130 River St, Dallas, TX 75001" +157081,Apple Airpods Headphones,1,150,01/25/19 19:28,"417 Dogwood St, Austin, TX 73301" +157082,USB-C Charging Cable,1,11.95,01/18/19 18:06,"348 5th St, Austin, TX 73301" +157083,Bose SoundSport Headphones,1,99.99,01/13/19 17:07,"929 8th St, Seattle, WA 98101" +157084,iPhone,1,700,01/13/19 20:35,"912 Hickory St, New York City, NY 10001" +157085,Lightning Charging Cable,1,14.95,01/06/19 10:51,"706 8th St, Boston, MA 02215" +157086,ThinkPad Laptop,1,999.99,01/25/19 05:10,"494 Lakeview St, San Francisco, CA 94016" +157087,Apple Airpods Headphones,1,150,01/15/19 12:29,"1 Washington St, Boston, MA 02215" +157088,Lightning Charging Cable,1,14.95,01/17/19 23:00,"84 Hickory St, Dallas, TX 75001" +157089,27in FHD Monitor,1,149.99,01/17/19 18:16,"830 Cherry St, San Francisco, CA 94016" +157090,Flatscreen TV,1,300,01/25/19 12:59,"680 Dogwood St, Portland, OR 97035" +157091,20in Monitor,1,109.99,01/26/19 01:28,"417 13th St, San Francisco, CA 94016" +157092,Bose SoundSport Headphones,1,99.99,01/10/19 21:32,"139 14th St, Dallas, TX 75001" +157093,Wired Headphones,1,11.99,01/23/19 22:03,"618 Maple St, New York City, NY 10001" +157094,Lightning Charging Cable,1,14.95,01/15/19 19:42,"4 4th St, Portland, OR 97035" +157095,Apple Airpods Headphones,1,150,01/20/19 12:31,"488 11th St, Dallas, TX 75001" +157096,20in Monitor,1,109.99,01/18/19 13:50,"404 Spruce St, Austin, TX 73301" +157097,Wired Headphones,1,11.99,01/14/19 20:18,"71 Maple St, San Francisco, CA 94016" +157098,Apple Airpods Headphones,1,150,01/23/19 19:20,"491 Wilson St, Seattle, WA 98101" +157099,AAA Batteries (4-pack),1,2.99,01/27/19 01:32,"735 Dogwood St, Boston, MA 02215" +157100,Apple Airpods Headphones,1,150,01/13/19 18:01,"726 Jackson St, Dallas, TX 75001" +157101,USB-C Charging Cable,1,11.95,01/31/19 10:44,"630 Park St, Los Angeles, CA 90001" +157102,Lightning Charging Cable,1,14.95,01/22/19 18:10,"359 Sunset St, New York City, NY 10001" +157103,AA Batteries (4-pack),3,3.84,01/09/19 12:55,"291 Park St, San Francisco, CA 94016" +157104,27in FHD Monitor,1,149.99,01/14/19 19:09,"506 Johnson St, New York City, NY 10001" +157105,AA Batteries (4-pack),2,3.84,01/28/19 13:32,"620 Madison St, Portland, OR 97035" +157106,USB-C Charging Cable,1,11.95,01/03/19 16:54,"768 West St, San Francisco, CA 94016" +157107,USB-C Charging Cable,1,11.95,01/23/19 19:36,"519 Main St, San Francisco, CA 94016" +157108,Lightning Charging Cable,1,14.95,01/01/19 11:54,"214 Elm St, New York City, NY 10001" +157109,Apple Airpods Headphones,1,150,01/28/19 22:55,"81 North St, Austin, TX 73301" +157110,Lightning Charging Cable,1,14.95,01/09/19 18:07,"575 1st St, Los Angeles, CA 90001" +157111,AAA Batteries (4-pack),1,2.99,01/27/19 06:50,"642 Maple St, Boston, MA 02215" +157112,Wired Headphones,1,11.99,01/12/19 12:30,"495 Jackson St, Boston, MA 02215" +157113,Apple Airpods Headphones,1,150,01/28/19 18:11,"906 Center St, Los Angeles, CA 90001" +157114,AA Batteries (4-pack),2,3.84,01/25/19 14:31,"144 4th St, San Francisco, CA 94016" +157115,AAA Batteries (4-pack),1,2.99,01/10/19 23:51,"171 Cherry St, Seattle, WA 98101" +157116,iPhone,1,700,01/11/19 09:12,"533 Elm St, Seattle, WA 98101" +157117,iPhone,1,700,01/02/19 08:10,"540 9th St, San Francisco, CA 94016" +157118,AAA Batteries (4-pack),2,2.99,01/25/19 10:56,"22 Chestnut St, Dallas, TX 75001" +157119,Flatscreen TV,1,300,01/12/19 12:39,"55 Cedar St, New York City, NY 10001" +157120,USB-C Charging Cable,1,11.95,01/12/19 10:00,"666 Jefferson St, New York City, NY 10001" +157121,Lightning Charging Cable,1,14.95,01/23/19 13:25,"619 Lincoln St, New York City, NY 10001" +157122,iPhone,1,700,01/30/19 15:18,"985 Adams St, San Francisco, CA 94016" +157122,Apple Airpods Headphones,1,150,01/30/19 15:18,"985 Adams St, San Francisco, CA 94016" +157123,ThinkPad Laptop,1,999.99,01/20/19 11:01,"122 2nd St, Los Angeles, CA 90001" +157124,34in Ultrawide Monitor,1,379.99,01/24/19 19:53,"650 Park St, Atlanta, GA 30301" +157125,34in Ultrawide Monitor,1,379.99,01/05/19 00:09,"844 5th St, San Francisco, CA 94016" +157126,LG Washing Machine,1,600.0,01/13/19 08:58,"466 Church St, Seattle, WA 98101" +157127,AAA Batteries (4-pack),1,2.99,01/26/19 21:57,"886 North St, San Francisco, CA 94016" +157128,Bose SoundSport Headphones,1,99.99,01/09/19 18:51,"403 Main St, Seattle, WA 98101" +157129,Apple Airpods Headphones,1,150,01/31/19 20:51,"59 Chestnut St, San Francisco, CA 94016" +157130,AA Batteries (4-pack),2,3.84,01/17/19 09:25,"384 Forest St, Los Angeles, CA 90001" +157131,Flatscreen TV,1,300,01/27/19 09:12,"414 Sunset St, San Francisco, CA 94016" +157131,Google Phone,1,600,01/27/19 09:12,"414 Sunset St, San Francisco, CA 94016" +157132,Apple Airpods Headphones,1,150,01/18/19 01:28,"206 Chestnut St, Boston, MA 02215" +157133,Wired Headphones,1,11.99,01/28/19 05:51,"645 Chestnut St, San Francisco, CA 94016" +157134,Apple Airpods Headphones,1,150,01/28/19 18:09,"366 Cedar St, Atlanta, GA 30301" +157135,Apple Airpods Headphones,1,150,01/18/19 01:32,"667 River St, San Francisco, CA 94016" +157136,USB-C Charging Cable,1,11.95,01/28/19 17:09,"784 Jefferson St, Los Angeles, CA 90001" +157137,20in Monitor,1,109.99,01/30/19 23:34,"18 Spruce St, Dallas, TX 75001" +157138,Bose SoundSport Headphones,1,99.99,01/30/19 17:35,"82 Spruce St, Seattle, WA 98101" +157139,34in Ultrawide Monitor,1,379.99,01/13/19 12:39,"826 Forest St, Atlanta, GA 30301" +157140,27in FHD Monitor,1,149.99,01/06/19 07:56,"208 West St, Dallas, TX 75001" +157141,Google Phone,1,600,01/18/19 17:02,"938 Cedar St, San Francisco, CA 94016" +157141,Wired Headphones,2,11.99,01/18/19 17:02,"938 Cedar St, San Francisco, CA 94016" +157142,Lightning Charging Cable,1,14.95,01/07/19 15:12,"650 North St, San Francisco, CA 94016" +157143,20in Monitor,1,109.99,01/03/19 13:59,"609 4th St, Austin, TX 73301" +157144,Macbook Pro Laptop,1,1700,01/23/19 20:40,"349 5th St, New York City, NY 10001" +157145,Flatscreen TV,1,300,01/10/19 09:37,"980 Wilson St, San Francisco, CA 94016" +157146,Macbook Pro Laptop,1,1700,01/22/19 12:50,"151 Dogwood St, New York City, NY 10001" +157147,Wired Headphones,1,11.99,01/17/19 21:03,"415 Spruce St, Austin, TX 73301" +157148,Macbook Pro Laptop,1,1700,01/03/19 10:45,"873 North St, San Francisco, CA 94016" +157149,Wired Headphones,1,11.99,01/14/19 17:40,"973 Hill St, Boston, MA 02215" +157150,Bose SoundSport Headphones,1,99.99,01/11/19 16:44,"289 14th St, Seattle, WA 98101" +157151,Apple Airpods Headphones,1,150,01/16/19 10:45,"304 8th St, Austin, TX 73301" +157152,34in Ultrawide Monitor,1,379.99,01/04/19 22:59,"572 Lake St, Dallas, TX 75001" +157153,Lightning Charging Cable,1,14.95,01/23/19 09:04,"904 5th St, Los Angeles, CA 90001" +157154,ThinkPad Laptop,1,999.99,01/22/19 14:12,"138 Cedar St, Atlanta, GA 30301" +157155,Wired Headphones,1,11.99,01/22/19 09:28,"872 Hill St, San Francisco, CA 94016" +157156,Wired Headphones,1,11.99,01/18/19 18:43,"832 2nd St, New York City, NY 10001" +157157,USB-C Charging Cable,1,11.95,01/25/19 20:14,"425 Dogwood St, Boston, MA 02215" +157158,Wired Headphones,1,11.99,01/29/19 22:01,"745 Maple St, Los Angeles, CA 90001" +157159,Google Phone,1,600,01/16/19 14:35,"573 Highland St, Boston, MA 02215" +157160,27in FHD Monitor,1,149.99,01/25/19 22:29,"133 Church St, Los Angeles, CA 90001" +157161,Lightning Charging Cable,1,14.95,01/17/19 16:41,"976 Church St, Los Angeles, CA 90001" +157162,27in 4K Gaming Monitor,1,389.99,01/22/19 16:22,"940 Dogwood St, Boston, MA 02215" +157163,Vareebadd Phone,1,400,01/10/19 15:13,"477 Johnson St, Atlanta, GA 30301" +157163,USB-C Charging Cable,1,11.95,01/10/19 15:13,"477 Johnson St, Atlanta, GA 30301" +157164,iPhone,1,700,01/25/19 11:01,"537 Cherry St, San Francisco, CA 94016" +157165,27in 4K Gaming Monitor,1,389.99,01/09/19 19:21,"437 Forest St, Los Angeles, CA 90001" +157166,Google Phone,1,600,01/23/19 16:42,"419 Jackson St, Los Angeles, CA 90001" +157167,Bose SoundSport Headphones,1,99.99,01/25/19 08:16,"646 Sunset St, Dallas, TX 75001" +157168,27in FHD Monitor,1,149.99,01/18/19 22:35,"654 1st St, Los Angeles, CA 90001" +157169,AAA Batteries (4-pack),1,2.99,01/06/19 21:13,"633 Lake St, New York City, NY 10001" +157170,USB-C Charging Cable,1,11.95,01/01/19 23:56,"138 Johnson St, Los Angeles, CA 90001" +157171,Lightning Charging Cable,1,14.95,01/13/19 16:59,"281 Church St, Portland, OR 97035" +157172,Lightning Charging Cable,1,14.95,01/18/19 15:13,"52 8th St, Los Angeles, CA 90001" +157173,LG Dryer,1,600.0,01/29/19 15:00,"471 Chestnut St, Seattle, WA 98101" +157174,iPhone,1,700,01/11/19 14:02,"369 Main St, Boston, MA 02215" +157175,AAA Batteries (4-pack),2,2.99,01/22/19 20:06,"934 Forest St, New York City, NY 10001" +157176,Lightning Charging Cable,1,14.95,01/17/19 17:00,"144 14th St, New York City, NY 10001" +157177,AAA Batteries (4-pack),1,2.99,01/04/19 17:30,"543 Highland St, Portland, OR 97035" +157178,Macbook Pro Laptop,1,1700,01/22/19 20:31,"447 Washington St, Seattle, WA 98101" +157179,AA Batteries (4-pack),1,3.84,01/03/19 18:15,"670 Meadow St, Seattle, WA 98101" +157180,AA Batteries (4-pack),1,3.84,01/12/19 00:22,"665 Adams St, Dallas, TX 75001" +157181,AA Batteries (4-pack),3,3.84,01/24/19 14:04,"306 Main St, Austin, TX 73301" +157182,USB-C Charging Cable,1,11.95,01/08/19 13:19,"213 Spruce St, New York City, NY 10001" +157183,27in FHD Monitor,1,149.99,01/20/19 14:35,"841 Hill St, Seattle, WA 98101" +157184,AA Batteries (4-pack),1,3.84,01/17/19 20:34,"919 Hickory St, Dallas, TX 75001" +157185,Macbook Pro Laptop,1,1700,01/01/19 18:35,"736 Chestnut St, Los Angeles, CA 90001" +157186,Apple Airpods Headphones,1,150,01/10/19 19:21,"427 2nd St, San Francisco, CA 94016" +157187,AA Batteries (4-pack),1,3.84,01/31/19 20:38,"915 Walnut St, Austin, TX 73301" +157188,AA Batteries (4-pack),1,3.84,01/13/19 18:20,"788 Cedar St, Atlanta, GA 30301" +157189,Bose SoundSport Headphones,1,99.99,01/19/19 19:43,"794 Center St, Los Angeles, CA 90001" +157190,AAA Batteries (4-pack),1,2.99,01/17/19 17:23,"998 Pine St, San Francisco, CA 94016" +157191,iPhone,1,700,01/23/19 15:08,"836 2nd St, Los Angeles, CA 90001" +157192,AAA Batteries (4-pack),2,2.99,01/12/19 11:46,"971 Main St, San Francisco, CA 94016" +157193,USB-C Charging Cable,1,11.95,01/17/19 20:27,"76 Forest St, Austin, TX 73301" +157194,Lightning Charging Cable,1,14.95,01/14/19 11:49,"252 Church St, New York City, NY 10001" +157195,ThinkPad Laptop,1,999.99,01/04/19 11:32,"942 Elm St, Dallas, TX 75001" +157196,Lightning Charging Cable,2,14.95,01/13/19 10:59,"27 2nd St, San Francisco, CA 94016" +157197,Google Phone,1,600,01/19/19 04:34,"105 Meadow St, San Francisco, CA 94016" +157198,USB-C Charging Cable,1,11.95,01/31/19 11:48,"649 13th St, New York City, NY 10001" +157199,AA Batteries (4-pack),2,3.84,01/01/19 21:39,"766 Center St, Boston, MA 02215" +157200,Wired Headphones,2,11.99,01/09/19 10:04,"198 12th St, Portland, OR 97035" +157201,Macbook Pro Laptop,1,1700,01/24/19 10:20,"495 Meadow St, Boston, MA 02215" +157202,Apple Airpods Headphones,1,150,01/07/19 19:57,"449 2nd St, Austin, TX 73301" +157203,AA Batteries (4-pack),2,3.84,01/14/19 21:15,"153 South St, Dallas, TX 75001" +157204,Wired Headphones,1,11.99,01/17/19 17:42,"801 Wilson St, Boston, MA 02215" +157205,Macbook Pro Laptop,1,1700,01/20/19 17:34,"952 14th St, Los Angeles, CA 90001" +157206,Wired Headphones,1,11.99,01/13/19 16:58,"964 Wilson St, Dallas, TX 75001" +157207,Apple Airpods Headphones,1,150,01/10/19 14:29,"847 North St, San Francisco, CA 94016" +157208,Apple Airpods Headphones,1,150,01/27/19 17:26,"452 10th St, Portland, OR 97035" +157209,Google Phone,1,600,01/29/19 22:24,"690 Jackson St, Los Angeles, CA 90001" +157209,USB-C Charging Cable,1,11.95,01/29/19 22:24,"690 Jackson St, Los Angeles, CA 90001" +157210,34in Ultrawide Monitor,1,379.99,01/03/19 20:15,"525 Church St, San Francisco, CA 94016" +157211,27in 4K Gaming Monitor,1,389.99,01/26/19 17:59,"235 Chestnut St, Atlanta, GA 30301" +157212,AA Batteries (4-pack),1,3.84,01/22/19 19:56,"452 8th St, Seattle, WA 98101" +157213,iPhone,1,700,01/31/19 20:48,"366 12th St, Atlanta, GA 30301" +157214,Vareebadd Phone,1,400,01/01/19 21:35,"372 Sunset St, Los Angeles, CA 90001" +157215,Apple Airpods Headphones,1,150,02/01/19 01:08,"658 Church St, New York City, NY 10001" +157216,Lightning Charging Cable,1,14.95,01/19/19 18:28,"714 Meadow St, Dallas, TX 75001" +157217,27in FHD Monitor,1,149.99,01/28/19 12:15,"800 13th St, Atlanta, GA 30301" +157218,Macbook Pro Laptop,1,1700,01/04/19 12:37,"342 Main St, San Francisco, CA 94016" +157219,Apple Airpods Headphones,1,150,01/26/19 09:38,"607 Jefferson St, New York City, NY 10001" +157220,Lightning Charging Cable,1,14.95,01/05/19 12:18,"478 7th St, Atlanta, GA 30301" +157221,USB-C Charging Cable,1,11.95,01/28/19 21:51,"849 9th St, Los Angeles, CA 90001" +157222,USB-C Charging Cable,1,11.95,01/20/19 11:32,"903 River St, Dallas, TX 75001" +157223,USB-C Charging Cable,1,11.95,01/27/19 22:14,"792 River St, Los Angeles, CA 90001" +157224,Google Phone,1,600,01/15/19 09:23,"30 Hickory St, San Francisco, CA 94016" +157225,AAA Batteries (4-pack),3,2.99,01/02/19 20:56,"441 Johnson St, San Francisco, CA 94016" +157226,20in Monitor,1,109.99,01/06/19 22:38,"105 Lakeview St, Austin, TX 73301" +157227,Wired Headphones,1,11.99,01/26/19 20:00,"32 Main St, Atlanta, GA 30301" +157228,Wired Headphones,1,11.99,01/04/19 19:56,"546 1st St, Dallas, TX 75001" +157229,LG Dryer,1,600.0,01/07/19 05:47,"280 Dogwood St, New York City, NY 10001" +157230,Google Phone,1,600,01/15/19 08:38,"13 Jefferson St, San Francisco, CA 94016" +157230,USB-C Charging Cable,1,11.95,01/15/19 08:38,"13 Jefferson St, San Francisco, CA 94016" +157231,Lightning Charging Cable,1,14.95,01/04/19 19:02,"401 8th St, Boston, MA 02215" +157232,AAA Batteries (4-pack),1,2.99,01/23/19 14:03,"507 2nd St, Dallas, TX 75001" +157233,USB-C Charging Cable,1,11.95,01/29/19 11:58,"498 2nd St, Boston, MA 02215" +157234,Lightning Charging Cable,2,14.95,01/03/19 11:39,"267 5th St, Boston, MA 02215" +157235,Wired Headphones,1,11.99,01/07/19 12:57,"598 Madison St, Boston, MA 02215" +157236,AAA Batteries (4-pack),1,2.99,01/24/19 17:26,"843 5th St, Seattle, WA 98101" +157237,iPhone,1,700,01/28/19 08:03,"75 Elm St, New York City, NY 10001" +157237,Lightning Charging Cable,1,14.95,01/28/19 08:03,"75 Elm St, New York City, NY 10001" +157238,27in 4K Gaming Monitor,1,389.99,01/31/19 18:22,"392 Highland St, San Francisco, CA 94016" +157239,Apple Airpods Headphones,1,150,01/24/19 14:15,"382 Hickory St, Atlanta, GA 30301" +157240,27in FHD Monitor,1,149.99,01/28/19 21:11,"314 10th St, Los Angeles, CA 90001" +157241,USB-C Charging Cable,1,11.95,01/19/19 14:47,"756 Chestnut St, Seattle, WA 98101" +157242,Lightning Charging Cable,1,14.95,01/31/19 21:28,"567 7th St, Atlanta, GA 30301" +157243,Apple Airpods Headphones,1,150,01/03/19 01:05,"8 Sunset St, Seattle, WA 98101" +157244,AAA Batteries (4-pack),1,2.99,01/05/19 18:34,"679 Lakeview St, San Francisco, CA 94016" +157245,AAA Batteries (4-pack),1,2.99,01/19/19 11:03,"123 2nd St, San Francisco, CA 94016" +157246,iPhone,1,700,01/03/19 21:00,"426 Forest St, San Francisco, CA 94016" +157246,Lightning Charging Cable,1,14.95,01/03/19 21:00,"426 Forest St, San Francisco, CA 94016" +157247,AAA Batteries (4-pack),1,2.99,01/18/19 00:09,"558 Wilson St, Boston, MA 02215" +157248,Lightning Charging Cable,1,14.95,01/04/19 15:20,"774 Park St, Los Angeles, CA 90001" +157249,34in Ultrawide Monitor,1,379.99,01/20/19 23:24,"747 Elm St, Los Angeles, CA 90001" +157250,27in 4K Gaming Monitor,1,389.99,01/19/19 21:47,"384 8th St, Los Angeles, CA 90001" +157251,USB-C Charging Cable,1,11.95,01/12/19 13:15,"130 Hill St, San Francisco, CA 94016" +157252,Bose SoundSport Headphones,1,99.99,01/05/19 19:49,"385 Wilson St, Atlanta, GA 30301" +157253,USB-C Charging Cable,1,11.95,01/26/19 10:09,"891 Lincoln St, San Francisco, CA 94016" +157254,Apple Airpods Headphones,1,150,01/07/19 01:14,"278 11th St, Dallas, TX 75001" +157255,USB-C Charging Cable,1,11.95,01/31/19 12:26,"727 Cedar St, San Francisco, CA 94016" +157256,USB-C Charging Cable,2,11.95,01/09/19 15:32,"449 Jackson St, Austin, TX 73301" +157257,Macbook Pro Laptop,1,1700,01/02/19 10:25,"857 River St, Atlanta, GA 30301" +157258,Bose SoundSport Headphones,1,99.99,01/11/19 17:08,"539 Willow St, Portland, OR 97035" +157259,Wired Headphones,1,11.99,01/07/19 13:39,"130 Center St, New York City, NY 10001" +157260,Wired Headphones,1,11.99,01/23/19 14:12,"911 1st St, New York City, NY 10001" +157261,20in Monitor,1,109.99,01/25/19 19:26,"691 Maple St, Austin, TX 73301" +157262,iPhone,1,700,01/29/19 21:21,"509 4th St, Boston, MA 02215" +157262,Lightning Charging Cable,1,14.95,01/29/19 21:21,"509 4th St, Boston, MA 02215" +157263,Wired Headphones,1,11.99,01/11/19 19:00,"920 9th St, Boston, MA 02215" +157264,Apple Airpods Headphones,1,150,01/31/19 20:17,"693 10th St, New York City, NY 10001" +157265,Macbook Pro Laptop,1,1700,01/28/19 17:18,"849 Johnson St, Dallas, TX 75001" +157266,AAA Batteries (4-pack),1,2.99,01/03/19 12:07,"367 12th St, Boston, MA 02215" +157267,27in FHD Monitor,1,149.99,01/27/19 13:51,"274 Forest St, Atlanta, GA 30301" +157268,Wired Headphones,1,11.99,01/21/19 10:30,"817 4th St, New York City, NY 10001" +157269,Apple Airpods Headphones,1,150,01/03/19 09:43,"691 Lincoln St, New York City, NY 10001" +157270,Apple Airpods Headphones,1,150,01/02/19 16:06,"101 Park St, Seattle, WA 98101" +157271,Wired Headphones,1,11.99,01/16/19 13:07,"472 Park St, Los Angeles, CA 90001" +157272,20in Monitor,1,109.99,01/20/19 17:11,"850 Main St, San Francisco, CA 94016" +157273,34in Ultrawide Monitor,1,379.99,01/10/19 07:19,"353 8th St, New York City, NY 10001" +157274,AA Batteries (4-pack),2,3.84,01/13/19 15:40,"524 12th St, Portland, OR 97035" +157275,Bose SoundSport Headphones,1,99.99,01/27/19 09:40,"682 Main St, San Francisco, CA 94016" +157276,AA Batteries (4-pack),1,3.84,01/02/19 13:38,"92 Lake St, Atlanta, GA 30301" +157277,Wired Headphones,1,11.99,01/09/19 12:18,"612 Lake St, Seattle, WA 98101" +157278,27in 4K Gaming Monitor,1,389.99,01/06/19 21:00,"307 Dogwood St, Boston, MA 02215" +157279,20in Monitor,1,109.99,01/14/19 13:33,"988 13th St, Los Angeles, CA 90001" +157280,iPhone,1,700,01/04/19 06:01,"192 Highland St, Atlanta, GA 30301" +157281,Wired Headphones,1,11.99,01/26/19 08:36,"698 9th St, New York City, NY 10001" +157282,AA Batteries (4-pack),1,3.84,01/04/19 08:22,"910 Hill St, San Francisco, CA 94016" +157283,Bose SoundSport Headphones,1,99.99,01/12/19 03:07,"105 Pine St, Atlanta, GA 30301" +157284,Flatscreen TV,1,300,01/10/19 20:55,"725 Sunset St, Los Angeles, CA 90001" +157285,USB-C Charging Cable,1,11.95,01/20/19 10:47,"180 Park St, San Francisco, CA 94016" +157285,USB-C Charging Cable,1,11.95,01/20/19 10:47,"180 Park St, San Francisco, CA 94016" +157286,34in Ultrawide Monitor,1,379.99,01/11/19 10:55,"416 Main St, Atlanta, GA 30301" +157287,Lightning Charging Cable,1,14.95,01/22/19 22:34,"175 Walnut St, San Francisco, CA 94016" +157288,AAA Batteries (4-pack),1,2.99,01/30/19 18:38,"718 13th St, Dallas, TX 75001" +157289,AAA Batteries (4-pack),1,2.99,01/19/19 17:05,"547 Jefferson St, Dallas, TX 75001" +157290,USB-C Charging Cable,1,11.95,01/23/19 09:00,"543 11th St, Dallas, TX 75001" +157291,AAA Batteries (4-pack),1,2.99,01/09/19 17:44,"327 Hickory St, Boston, MA 02215" +157291,USB-C Charging Cable,1,11.95,01/09/19 17:44,"327 Hickory St, Boston, MA 02215" +157292,AA Batteries (4-pack),3,3.84,01/04/19 09:26,"10 7th St, San Francisco, CA 94016" +157293,iPhone,1,700,01/06/19 10:32,"952 Chestnut St, Portland, OR 97035" +157294,USB-C Charging Cable,1,11.95,01/31/19 08:17,"255 Wilson St, Los Angeles, CA 90001" +157295,AA Batteries (4-pack),2,3.84,01/08/19 17:56,"866 Hill St, Dallas, TX 75001" +157296,Wired Headphones,1,11.99,01/07/19 21:22,"306 Pine St, Los Angeles, CA 90001" +157297,USB-C Charging Cable,1,11.95,01/16/19 23:31,"2 Willow St, San Francisco, CA 94016" +157298,Lightning Charging Cable,1,14.95,01/13/19 06:08,"816 Cherry St, Dallas, TX 75001" +157299,Wired Headphones,1,11.99,01/11/19 20:45,"240 14th St, Portland, OR 97035" +157300,AA Batteries (4-pack),1,3.84,01/22/19 16:15,"668 13th St, Boston, MA 02215" +157300,Apple Airpods Headphones,1,150,01/22/19 16:15,"668 13th St, Boston, MA 02215" +157301,AAA Batteries (4-pack),1,2.99,01/31/19 18:11,"241 Lake St, Los Angeles, CA 90001" +157302,AAA Batteries (4-pack),1,2.99,01/12/19 11:03,"530 Wilson St, Los Angeles, CA 90001" +157303,Flatscreen TV,1,300,01/20/19 12:41,"209 Cherry St, San Francisco, CA 94016" +157304,Wired Headphones,1,11.99,01/14/19 17:37,"185 7th St, San Francisco, CA 94016" +157305,iPhone,1,700,01/27/19 16:53,"528 Walnut St, Boston, MA 02215" +157306,AA Batteries (4-pack),1,3.84,01/22/19 14:01,"477 Park St, Boston, MA 02215" +157307,Vareebadd Phone,1,400,01/24/19 12:51,"142 Cherry St, New York City, NY 10001" +157308,34in Ultrawide Monitor,1,379.99,01/03/19 12:12,"543 Lincoln St, Portland, OR 97035" +157309,USB-C Charging Cable,1,11.95,01/03/19 15:16,"254 10th St, New York City, NY 10001" +157310,USB-C Charging Cable,1,11.95,01/26/19 17:41,"126 Forest St, Austin, TX 73301" +157311,Lightning Charging Cable,1,14.95,01/09/19 17:43,"539 7th St, Los Angeles, CA 90001" +157312,USB-C Charging Cable,1,11.95,01/02/19 23:16,"65 7th St, Dallas, TX 75001" +157313,Flatscreen TV,1,300,01/01/19 10:59,"396 Wilson St, Boston, MA 02215" +157314,Apple Airpods Headphones,1,150,01/26/19 19:10,"472 Dogwood St, San Francisco, CA 94016" +157315,Lightning Charging Cable,1,14.95,01/31/19 13:55,"33 Sunset St, San Francisco, CA 94016" +157316,Macbook Pro Laptop,1,1700,01/12/19 13:56,"554 13th St, Portland, ME 04101" +157317,AA Batteries (4-pack),1,3.84,01/18/19 02:30,"867 Pine St, New York City, NY 10001" +157318,Macbook Pro Laptop,1,1700,01/31/19 14:57,"152 River St, Boston, MA 02215" +157319,Wired Headphones,1,11.99,01/18/19 23:50,"900 Washington St, San Francisco, CA 94016" +157320,Apple Airpods Headphones,1,150,01/28/19 21:50,"436 Madison St, Atlanta, GA 30301" +157321,Apple Airpods Headphones,1,150,01/30/19 12:47,"927 West St, Los Angeles, CA 90001" +157321,Apple Airpods Headphones,1,150,01/30/19 12:47,"927 West St, Los Angeles, CA 90001" +157322,27in 4K Gaming Monitor,1,389.99,01/16/19 12:36,"742 Highland St, Atlanta, GA 30301" +157323,AAA Batteries (4-pack),4,2.99,01/20/19 10:55,"203 South St, Seattle, WA 98101" +157324,USB-C Charging Cable,1,11.95,01/07/19 01:41,"918 Park St, Seattle, WA 98101" +157325,USB-C Charging Cable,1,11.95,01/26/19 17:58,"915 Jefferson St, New York City, NY 10001" +157326,20in Monitor,1,109.99,01/29/19 09:53,"264 Johnson St, San Francisco, CA 94016" +,,,,, +157327,AA Batteries (4-pack),1,3.84,01/10/19 16:12,"3 11th St, San Francisco, CA 94016" +157328,27in 4K Gaming Monitor,1,389.99,01/23/19 18:20,"339 10th St, Seattle, WA 98101" +157329,AA Batteries (4-pack),1,3.84,01/12/19 22:01,"852 Lake St, Dallas, TX 75001" +157330,Wired Headphones,2,11.99,01/18/19 17:04,"635 Meadow St, New York City, NY 10001" +157331,AAA Batteries (4-pack),1,2.99,01/10/19 12:22,"773 4th St, New York City, NY 10001" +157332,AAA Batteries (4-pack),2,2.99,01/09/19 19:33,"194 Lake St, San Francisco, CA 94016" +157333,Apple Airpods Headphones,1,150,01/27/19 16:44,"347 Elm St, Los Angeles, CA 90001" +157334,Lightning Charging Cable,2,14.95,01/11/19 14:42,"518 14th St, Dallas, TX 75001" +157335,Wired Headphones,1,11.99,01/05/19 16:48,"728 Main St, Boston, MA 02215" +157336,Lightning Charging Cable,2,14.95,01/28/19 19:30,"710 1st St, Boston, MA 02215" +157337,Lightning Charging Cable,1,14.95,01/12/19 17:51,"297 Madison St, New York City, NY 10001" +157337,27in FHD Monitor,1,149.99,01/12/19 17:51,"297 Madison St, New York City, NY 10001" +157338,27in FHD Monitor,1,149.99,01/18/19 14:22,"939 1st St, Austin, TX 73301" +157338,Wired Headphones,1,11.99,01/18/19 14:22,"939 1st St, Austin, TX 73301" +157339,Bose SoundSport Headphones,1,99.99,01/04/19 16:34,"638 Church St, Boston, MA 02215" +157340,Lightning Charging Cable,1,14.95,01/26/19 15:49,"720 12th St, Portland, OR 97035" +157341,Wired Headphones,1,11.99,01/07/19 10:14,"890 Main St, New York City, NY 10001" +157342,27in FHD Monitor,1,149.99,01/08/19 15:59,"871 Sunset St, Seattle, WA 98101" +157343,Bose SoundSport Headphones,1,99.99,01/23/19 18:00,"928 11th St, Austin, TX 73301" +157344,USB-C Charging Cable,1,11.95,01/13/19 14:51,"392 Elm St, New York City, NY 10001" +157345,AA Batteries (4-pack),1,3.84,01/26/19 20:06,"286 South St, New York City, NY 10001" +157346,USB-C Charging Cable,1,11.95,01/17/19 13:35,"157 Main St, Portland, OR 97035" +157347,AAA Batteries (4-pack),2,2.99,01/26/19 22:02,"838 River St, San Francisco, CA 94016" +157348,USB-C Charging Cable,1,11.95,01/21/19 16:32,"716 Jefferson St, Austin, TX 73301" +157349,Macbook Pro Laptop,1,1700,01/15/19 23:16,"78 Elm St, New York City, NY 10001" +157350,Lightning Charging Cable,1,14.95,01/08/19 20:46,"647 Park St, Dallas, TX 75001" +157351,USB-C Charging Cable,1,11.95,01/09/19 19:38,"821 West St, New York City, NY 10001" +157352,AAA Batteries (4-pack),1,2.99,01/02/19 17:31,"95 Church St, San Francisco, CA 94016" +157353,USB-C Charging Cable,1,11.95,01/05/19 12:35,"119 Hill St, Austin, TX 73301" +157354,AA Batteries (4-pack),1,3.84,01/16/19 19:17,"24 13th St, Los Angeles, CA 90001" +157355,Apple Airpods Headphones,1,150,01/19/19 19:15,"958 Meadow St, Portland, OR 97035" +157356,Apple Airpods Headphones,1,150,01/22/19 13:08,"862 Elm St, New York City, NY 10001" +157357,Apple Airpods Headphones,1,150,01/13/19 15:27,"729 Center St, Boston, MA 02215" +157358,AA Batteries (4-pack),2,3.84,01/23/19 09:28,"770 10th St, San Francisco, CA 94016" +157358,Flatscreen TV,1,300,01/23/19 09:28,"770 10th St, San Francisco, CA 94016" +157359,34in Ultrawide Monitor,1,379.99,01/16/19 17:31,"569 Madison St, Dallas, TX 75001" +157360,AAA Batteries (4-pack),1,2.99,01/08/19 22:39,"35 11th St, San Francisco, CA 94016" +157361,Lightning Charging Cable,1,14.95,01/02/19 12:36,"100 Ridge St, Austin, TX 73301" +157362,Apple Airpods Headphones,1,150,01/31/19 19:43,"276 Highland St, Los Angeles, CA 90001" +157363,AA Batteries (4-pack),1,3.84,01/25/19 09:30,"719 13th St, Atlanta, GA 30301" +157364,USB-C Charging Cable,1,11.95,01/26/19 12:23,"880 9th St, San Francisco, CA 94016" +157365,USB-C Charging Cable,1,11.95,01/06/19 12:58,"636 Jefferson St, San Francisco, CA 94016" +157366,Lightning Charging Cable,2,14.95,01/11/19 18:03,"740 Cherry St, New York City, NY 10001" +157367,Bose SoundSport Headphones,1,99.99,01/30/19 15:33,"992 4th St, Atlanta, GA 30301" +157368,ThinkPad Laptop,1,999.99,01/08/19 23:36,"684 Walnut St, Dallas, TX 75001" +157369,AAA Batteries (4-pack),1,2.99,01/21/19 21:47,"944 11th St, Austin, TX 73301" +157370,Wired Headphones,1,11.99,01/03/19 17:37,"703 Maple St, San Francisco, CA 94016" +157371,Google Phone,1,600,01/04/19 09:45,"437 4th St, Boston, MA 02215" +157372,Wired Headphones,1,11.99,01/06/19 10:11,"935 9th St, San Francisco, CA 94016" +157373,Bose SoundSport Headphones,1,99.99,01/16/19 19:39,"756 Dogwood St, Austin, TX 73301" +157374,Apple Airpods Headphones,1,150,01/25/19 08:07,"922 10th St, Los Angeles, CA 90001" +157375,Google Phone,1,600,01/26/19 20:40,"254 7th St, Los Angeles, CA 90001" +157376,Wired Headphones,2,11.99,01/04/19 07:46,"372 Main St, New York City, NY 10001" +157377,Apple Airpods Headphones,1,150,01/18/19 20:07,"917 Willow St, Atlanta, GA 30301" +157378,USB-C Charging Cable,1,11.95,01/09/19 08:57,"431 Jackson St, San Francisco, CA 94016" +157379,Apple Airpods Headphones,1,150,01/14/19 11:10,"964 Park St, Los Angeles, CA 90001" +157380,iPhone,1,700,01/07/19 14:08,"222 Dogwood St, New York City, NY 10001" +157381,Macbook Pro Laptop,1,1700,01/21/19 20:43,"192 Sunset St, Portland, ME 04101" +157382,USB-C Charging Cable,1,11.95,01/08/19 18:23,"288 Lakeview St, Seattle, WA 98101" +157383,34in Ultrawide Monitor,1,379.99,01/04/19 12:14,"693 Willow St, Los Angeles, CA 90001" +157384,USB-C Charging Cable,1,11.95,01/17/19 07:40,"348 2nd St, Dallas, TX 75001" +157385,AAA Batteries (4-pack),3,2.99,01/19/19 11:57,"572 South St, Boston, MA 02215" +157386,27in FHD Monitor,1,149.99,01/01/19 16:56,"880 West St, Portland, OR 97035" +157387,AA Batteries (4-pack),1,3.84,01/20/19 11:19,"883 Highland St, Los Angeles, CA 90001" +157388,AA Batteries (4-pack),1,3.84,01/01/19 07:38,"316 Adams St, Dallas, TX 75001" +157389,Google Phone,1,600,01/09/19 13:25,"240 2nd St, Los Angeles, CA 90001" +157389,Wired Headphones,1,11.99,01/09/19 13:25,"240 2nd St, Los Angeles, CA 90001" +157390,Bose SoundSport Headphones,1,99.99,01/03/19 21:55,"895 11th St, Portland, OR 97035" +157391,Lightning Charging Cable,2,14.95,01/28/19 00:13,"65 Ridge St, San Francisco, CA 94016" +157392,Apple Airpods Headphones,1,150,01/18/19 19:56,"162 14th St, Austin, TX 73301" +157393,Apple Airpods Headphones,1,150,01/31/19 15:34,"892 13th St, San Francisco, CA 94016" +157394,AA Batteries (4-pack),2,3.84,01/10/19 10:45,"968 Madison St, Seattle, WA 98101" +157395,Lightning Charging Cable,1,14.95,01/08/19 11:11,"7 Jefferson St, Los Angeles, CA 90001" +157396,AA Batteries (4-pack),1,3.84,01/21/19 18:18,"28 6th St, San Francisco, CA 94016" +157397,Bose SoundSport Headphones,1,99.99,01/14/19 08:11,"424 Lakeview St, Los Angeles, CA 90001" +157398,Wired Headphones,1,11.99,01/17/19 17:44,"672 Ridge St, San Francisco, CA 94016" +157399,Lightning Charging Cable,1,14.95,01/24/19 09:30,"239 Cedar St, Portland, OR 97035" +157400,Apple Airpods Headphones,1,150,01/15/19 12:42,"457 10th St, New York City, NY 10001" +157401,Lightning Charging Cable,1,14.95,01/04/19 18:21,"159 11th St, Los Angeles, CA 90001" +157402,AA Batteries (4-pack),1,3.84,01/16/19 17:26,"200 West St, Boston, MA 02215" +157403,Apple Airpods Headphones,1,150,01/18/19 00:32,"891 Washington St, San Francisco, CA 94016" +157404,Macbook Pro Laptop,1,1700,01/29/19 22:13,"160 Lakeview St, San Francisco, CA 94016" +157405,AA Batteries (4-pack),1,3.84,01/01/19 21:08,"178 2nd St, New York City, NY 10001" +157406,USB-C Charging Cable,1,11.95,01/04/19 12:03,"962 Washington St, Los Angeles, CA 90001" +157407,Bose SoundSport Headphones,1,99.99,01/03/19 14:02,"805 Ridge St, Los Angeles, CA 90001" +157408,Apple Airpods Headphones,1,150,01/28/19 17:33,"818 Walnut St, Portland, OR 97035" +157409,Bose SoundSport Headphones,1,99.99,01/01/19 15:46,"195 7th St, Portland, OR 97035" +157410,AAA Batteries (4-pack),1,2.99,01/27/19 17:44,"887 2nd St, Austin, TX 73301" +157411,ThinkPad Laptop,1,999.99,01/12/19 13:26,"248 Hickory St, Atlanta, GA 30301" +157412,27in 4K Gaming Monitor,1,389.99,01/14/19 17:03,"676 Cherry St, Los Angeles, CA 90001" +157413,USB-C Charging Cable,1,11.95,01/14/19 16:57,"773 West St, Austin, TX 73301" +157414,AA Batteries (4-pack),1,3.84,01/16/19 11:47,"520 13th St, San Francisco, CA 94016" +157415,Lightning Charging Cable,1,14.95,01/18/19 18:38,"143 Sunset St, Dallas, TX 75001" +157416,Apple Airpods Headphones,1,150,01/14/19 12:42,"36 Washington St, Portland, ME 04101" +157417,27in FHD Monitor,1,149.99,01/04/19 09:22,"399 Maple St, Seattle, WA 98101" +157418,USB-C Charging Cable,1,11.95,01/27/19 12:14,"871 13th St, Austin, TX 73301" +157419,AA Batteries (4-pack),1,3.84,01/28/19 21:25,"380 5th St, San Francisco, CA 94016" +157420,27in 4K Gaming Monitor,1,389.99,01/22/19 19:04,"901 Jefferson St, New York City, NY 10001" +157421,Wired Headphones,1,11.99,01/04/19 16:57,"564 Lakeview St, Boston, MA 02215" +157422,AA Batteries (4-pack),1,3.84,01/07/19 15:17,"407 Lake St, Boston, MA 02215" +157422,Wired Headphones,1,11.99,01/07/19 15:17,"407 Lake St, Boston, MA 02215" +157423,27in FHD Monitor,1,149.99,01/31/19 17:13,"533 Willow St, San Francisco, CA 94016" +157424,Google Phone,1,600,01/05/19 21:18,"309 Wilson St, New York City, NY 10001" +157425,20in Monitor,1,109.99,01/11/19 17:15,"125 4th St, Boston, MA 02215" +157426,27in FHD Monitor,1,149.99,01/14/19 17:04,"610 4th St, Los Angeles, CA 90001" +157427,USB-C Charging Cable,1,11.95,01/19/19 21:20,"900 Dogwood St, Los Angeles, CA 90001" +157428,Wired Headphones,1,11.99,01/07/19 08:30,"281 Sunset St, Seattle, WA 98101" +157429,Lightning Charging Cable,2,14.95,01/14/19 09:59,"595 Walnut St, San Francisco, CA 94016" +157430,AA Batteries (4-pack),3,3.84,01/11/19 17:01,"307 River St, San Francisco, CA 94016" +157431,Lightning Charging Cable,1,14.95,01/13/19 10:42,"106 10th St, Atlanta, GA 30301" +157432,20in Monitor,1,109.99,01/02/19 23:19,"269 Elm St, Los Angeles, CA 90001" +157433,Apple Airpods Headphones,1,150,01/25/19 18:18,"255 Cherry St, Atlanta, GA 30301" +157434,Macbook Pro Laptop,1,1700,01/26/19 21:11,"639 River St, San Francisco, CA 94016" +157435,AA Batteries (4-pack),3,3.84,01/20/19 12:32,"406 West St, San Francisco, CA 94016" +157436,AA Batteries (4-pack),1,3.84,01/23/19 19:14,"666 Hill St, Dallas, TX 75001" +157437,Vareebadd Phone,1,400,01/26/19 05:52,"257 Maple St, San Francisco, CA 94016" +157437,USB-C Charging Cable,1,11.95,01/26/19 05:52,"257 Maple St, San Francisco, CA 94016" +157438,USB-C Charging Cable,1,11.95,01/16/19 21:31,"491 South St, San Francisco, CA 94016" +157439,Flatscreen TV,1,300,01/16/19 09:33,"501 Forest St, Portland, OR 97035" +157440,Apple Airpods Headphones,1,150,01/27/19 10:05,"761 West St, Los Angeles, CA 90001" +157441,AA Batteries (4-pack),2,3.84,01/14/19 22:33,"244 North St, Seattle, WA 98101" +157442,Lightning Charging Cable,1,14.95,01/04/19 12:45,"414 North St, San Francisco, CA 94016" +157443,Lightning Charging Cable,2,14.95,01/17/19 09:26,"793 Hill St, San Francisco, CA 94016" +157444,20in Monitor,1,109.99,01/30/19 18:10,"89 Dogwood St, Atlanta, GA 30301" +157445,Apple Airpods Headphones,1,150,01/10/19 15:36,"215 Highland St, New York City, NY 10001" +157446,34in Ultrawide Monitor,1,379.99,01/19/19 12:42,"190 Madison St, New York City, NY 10001" +157447,34in Ultrawide Monitor,1,379.99,01/15/19 15:30,"923 Main St, Austin, TX 73301" +157448,Lightning Charging Cable,1,14.95,01/16/19 13:51,"399 Hill St, New York City, NY 10001" +157449,AAA Batteries (4-pack),1,2.99,01/23/19 14:29,"705 Elm St, Boston, MA 02215" +157450,AAA Batteries (4-pack),1,2.99,01/27/19 22:08,"651 South St, Atlanta, GA 30301" +157451,Lightning Charging Cable,1,14.95,01/18/19 19:53,"112 Center St, Dallas, TX 75001" +157452,AAA Batteries (4-pack),1,2.99,01/14/19 22:57,"889 Hickory St, Portland, OR 97035" +157453,Lightning Charging Cable,2,14.95,01/11/19 17:49,"901 2nd St, New York City, NY 10001" +157454,USB-C Charging Cable,1,11.95,01/14/19 11:31,"783 Main St, Seattle, WA 98101" +157455,AAA Batteries (4-pack),3,2.99,01/26/19 15:48,"89 Church St, Austin, TX 73301" +157456,Lightning Charging Cable,1,14.95,01/19/19 08:41,"921 Maple St, San Francisco, CA 94016" +157457,Wired Headphones,1,11.99,01/01/19 19:15,"396 Maple St, Dallas, TX 75001" +157458,Apple Airpods Headphones,1,150,01/22/19 10:48,"391 2nd St, Dallas, TX 75001" +157459,20in Monitor,1,109.99,01/07/19 18:54,"791 North St, New York City, NY 10001" +157460,Bose SoundSport Headphones,1,99.99,01/12/19 20:41,"657 12th St, San Francisco, CA 94016" +157461,iPhone,1,700,01/02/19 10:27,"802 Wilson St, Austin, TX 73301" +157462,USB-C Charging Cable,1,11.95,01/11/19 17:53,"891 13th St, Dallas, TX 75001" +157463,Apple Airpods Headphones,1,150,01/15/19 21:50,"649 4th St, Portland, OR 97035" +157464,27in 4K Gaming Monitor,1,389.99,01/02/19 17:30,"205 North St, Seattle, WA 98101" +157465,27in 4K Gaming Monitor,1,389.99,01/06/19 12:48,"613 Chestnut St, Portland, OR 97035" +157466,Apple Airpods Headphones,1,150,01/27/19 20:13,"878 5th St, San Francisco, CA 94016" +157467,Bose SoundSport Headphones,1,99.99,01/18/19 20:41,"297 Spruce St, Dallas, TX 75001" +157468,AAA Batteries (4-pack),2,2.99,01/16/19 18:45,"318 South St, San Francisco, CA 94016" +157469,Lightning Charging Cable,1,14.95,01/03/19 14:52,"47 Elm St, San Francisco, CA 94016" +157470,USB-C Charging Cable,1,11.95,01/24/19 18:46,"60 2nd St, San Francisco, CA 94016" +157471,Wired Headphones,1,11.99,01/11/19 10:54,"850 1st St, Seattle, WA 98101" +157472,Google Phone,1,600,01/27/19 19:45,"124 South St, San Francisco, CA 94016" +157473,Apple Airpods Headphones,1,150,01/12/19 14:55,"375 Forest St, Boston, MA 02215" +157474,Wired Headphones,1,11.99,01/14/19 13:53,"179 Forest St, Boston, MA 02215" +157475,USB-C Charging Cable,1,11.95,01/01/19 08:12,"467 4th St, Seattle, WA 98101" +157476,Lightning Charging Cable,1,14.95,01/20/19 14:40,"411 1st St, Portland, OR 97035" +157477,AAA Batteries (4-pack),1,2.99,01/17/19 10:19,"126 Lake St, Seattle, WA 98101" +157478,Lightning Charging Cable,2,14.95,01/06/19 23:46,"864 Maple St, Dallas, TX 75001" +157479,Lightning Charging Cable,1,14.95,01/04/19 13:55,"587 Washington St, Boston, MA 02215" +157480,iPhone,1,700,01/27/19 10:36,"713 4th St, New York City, NY 10001" +157480,Lightning Charging Cable,1,14.95,01/27/19 10:36,"713 4th St, New York City, NY 10001" +157480,Wired Headphones,1,11.99,01/27/19 10:36,"713 4th St, New York City, NY 10001" +157481,AA Batteries (4-pack),1,3.84,01/22/19 11:39,"749 Washington St, New York City, NY 10001" +157482,Lightning Charging Cable,1,14.95,01/22/19 15:12,"957 Church St, Los Angeles, CA 90001" +157483,27in 4K Gaming Monitor,1,389.99,01/21/19 20:00,"255 Madison St, Austin, TX 73301" +157484,Lightning Charging Cable,1,14.95,01/11/19 12:58,"416 Madison St, Los Angeles, CA 90001" +157485,Apple Airpods Headphones,1,150,01/07/19 20:29,"571 Willow St, San Francisco, CA 94016" +157486,USB-C Charging Cable,1,11.95,01/25/19 18:17,"280 Lake St, San Francisco, CA 94016" +157487,Wired Headphones,1,11.99,01/25/19 21:43,"990 Cherry St, Los Angeles, CA 90001" +157488,AA Batteries (4-pack),1,3.84,01/26/19 19:14,"581 Highland St, Seattle, WA 98101" +157489,USB-C Charging Cable,1,11.95,01/09/19 11:01,"7 Church St, New York City, NY 10001" +157490,AA Batteries (4-pack),1,3.84,01/01/19 20:54,"561 Park St, Boston, MA 02215" +157491,AA Batteries (4-pack),1,3.84,01/14/19 19:49,"958 Pine St, San Francisco, CA 94016" +157492,Macbook Pro Laptop,1,1700,01/01/19 23:57,"962 Main St, Boston, MA 02215" +157493,27in FHD Monitor,1,149.99,01/26/19 22:55,"427 Elm St, San Francisco, CA 94016" +157494,AAA Batteries (4-pack),1,2.99,01/30/19 12:34,"778 Maple St, Los Angeles, CA 90001" +157495,iPhone,1,700,01/07/19 14:25,"334 6th St, Los Angeles, CA 90001" +157496,iPhone,1,700,01/09/19 04:56,"492 10th St, Los Angeles, CA 90001" +157497,Wired Headphones,1,11.99,01/04/19 17:20,"995 Washington St, Dallas, TX 75001" +157498,iPhone,1,700,01/30/19 18:37,"186 Center St, Seattle, WA 98101" +157499,USB-C Charging Cable,1,11.95,01/20/19 10:51,"164 13th St, San Francisco, CA 94016" +157500,Wired Headphones,1,11.99,01/17/19 15:52,"131 Maple St, Seattle, WA 98101" +157501,AAA Batteries (4-pack),1,2.99,01/04/19 09:25,"169 River St, Austin, TX 73301" +157502,iPhone,1,700,01/18/19 13:05,"562 Sunset St, Los Angeles, CA 90001" +157502,Apple Airpods Headphones,1,150,01/18/19 13:05,"562 Sunset St, Los Angeles, CA 90001" +157503,AAA Batteries (4-pack),4,2.99,01/07/19 00:24,"14 Dogwood St, San Francisco, CA 94016" +157504,27in 4K Gaming Monitor,1,389.99,01/20/19 17:00,"186 Washington St, Atlanta, GA 30301" +157505,USB-C Charging Cable,1,11.95,01/06/19 22:38,"162 Main St, New York City, NY 10001" +157506,Lightning Charging Cable,1,14.95,01/14/19 00:37,"75 6th St, Seattle, WA 98101" +157507,Apple Airpods Headphones,1,150,01/02/19 15:10,"778 6th St, San Francisco, CA 94016" +157508,Bose SoundSport Headphones,1,99.99,01/04/19 17:56,"494 Meadow St, San Francisco, CA 94016" +157509,LG Washing Machine,1,600.0,01/22/19 11:20,"372 West St, San Francisco, CA 94016" +157510,Lightning Charging Cable,1,14.95,01/31/19 11:40,"147 Spruce St, Boston, MA 02215" +157511,Google Phone,1,600,01/07/19 17:29,"812 Highland St, Portland, ME 04101" +157512,AA Batteries (4-pack),2,3.84,01/08/19 09:53,"602 7th St, Boston, MA 02215" +157513,34in Ultrawide Monitor,1,379.99,01/24/19 17:55,"78 Walnut St, Atlanta, GA 30301" +157514,iPhone,1,700,01/24/19 08:10,"314 Maple St, Austin, TX 73301" +157515,27in FHD Monitor,1,149.99,01/03/19 14:58,"407 Park St, Seattle, WA 98101" +157516,Lightning Charging Cable,1,14.95,01/01/19 22:42,"94 Lake St, San Francisco, CA 94016" +157517,Lightning Charging Cable,1,14.95,01/31/19 13:57,"515 Madison St, Austin, TX 73301" +157518,Apple Airpods Headphones,1,150,01/21/19 17:14,"613 Meadow St, San Francisco, CA 94016" +157519,AAA Batteries (4-pack),4,2.99,01/14/19 08:52,"129 7th St, Portland, OR 97035" +157520,AAA Batteries (4-pack),4,2.99,01/17/19 21:46,"497 Wilson St, Atlanta, GA 30301" +157521,Bose SoundSport Headphones,1,99.99,01/28/19 20:06,"106 Chestnut St, San Francisco, CA 94016" +157522,AA Batteries (4-pack),1,3.84,01/11/19 12:18,"993 7th St, Boston, MA 02215" +157523,USB-C Charging Cable,1,11.95,01/20/19 18:03,"886 Meadow St, New York City, NY 10001" +157524,USB-C Charging Cable,1,11.95,01/31/19 16:29,"585 Ridge St, New York City, NY 10001" +157525,Apple Airpods Headphones,1,150,01/07/19 11:27,"130 Jackson St, Atlanta, GA 30301" +157526,Apple Airpods Headphones,1,150,01/15/19 14:08,"869 8th St, Atlanta, GA 30301" +157527,USB-C Charging Cable,1,11.95,01/15/19 20:59,"69 Highland St, New York City, NY 10001" +157528,Bose SoundSport Headphones,1,99.99,01/20/19 07:07,"780 Jefferson St, Los Angeles, CA 90001" +157529,USB-C Charging Cable,1,11.95,01/03/19 21:29,"891 North St, San Francisco, CA 94016" +157530,USB-C Charging Cable,1,11.95,01/09/19 00:29,"373 Pine St, New York City, NY 10001" +157531,Google Phone,1,600,01/26/19 18:01,"508 Cedar St, San Francisco, CA 94016" +157531,USB-C Charging Cable,1,11.95,01/26/19 18:01,"508 Cedar St, San Francisco, CA 94016" +157531,Wired Headphones,1,11.99,01/26/19 18:01,"508 Cedar St, San Francisco, CA 94016" +157532,AA Batteries (4-pack),1,3.84,01/30/19 11:34,"896 Forest St, Los Angeles, CA 90001" +157533,Apple Airpods Headphones,1,150,01/05/19 10:07,"242 Meadow St, Boston, MA 02215" +157534,USB-C Charging Cable,1,11.95,01/09/19 08:05,"832 Highland St, Seattle, WA 98101" +157535,20in Monitor,1,109.99,01/14/19 09:15,"600 Highland St, Boston, MA 02215" +157536,Lightning Charging Cable,1,14.95,01/10/19 22:17,"307 9th St, Boston, MA 02215" +157537,Wired Headphones,1,11.99,01/28/19 21:51,"662 Jackson St, Atlanta, GA 30301" +157538,ThinkPad Laptop,1,999.99,01/17/19 00:22,"192 Center St, Austin, TX 73301" +157539,AA Batteries (4-pack),1,3.84,01/24/19 14:10,"815 Hill St, Boston, MA 02215" +157540,Lightning Charging Cable,1,14.95,01/31/19 10:53,"698 Elm St, Dallas, TX 75001" +157541,AA Batteries (4-pack),2,3.84,01/08/19 19:06,"722 Johnson St, Dallas, TX 75001" +157542,USB-C Charging Cable,2,11.95,01/05/19 14:34,"71 Wilson St, Dallas, TX 75001" +157543,Bose SoundSport Headphones,1,99.99,01/17/19 11:58,"515 Cherry St, Atlanta, GA 30301" +157544,USB-C Charging Cable,1,11.95,01/11/19 19:40,"385 Wilson St, San Francisco, CA 94016" +157545,34in Ultrawide Monitor,1,379.99,01/03/19 12:37,"246 Adams St, New York City, NY 10001" +157546,Lightning Charging Cable,1,14.95,01/10/19 23:14,"976 11th St, Los Angeles, CA 90001" +157547,Lightning Charging Cable,1,14.95,01/09/19 02:06,"518 Forest St, San Francisco, CA 94016" +157548,USB-C Charging Cable,1,11.95,01/02/19 18:56,"948 Sunset St, San Francisco, CA 94016" +157549,Wired Headphones,1,11.99,01/17/19 00:58,"481 Park St, San Francisco, CA 94016" +157550,USB-C Charging Cable,1,11.95,01/27/19 19:44,"320 12th St, Seattle, WA 98101" +157551,AAA Batteries (4-pack),3,2.99,01/08/19 08:57,"980 6th St, Seattle, WA 98101" +157552,Vareebadd Phone,1,400,01/19/19 00:04,"780 Main St, Dallas, TX 75001" +157553,27in 4K Gaming Monitor,1,389.99,01/24/19 19:11,"241 5th St, San Francisco, CA 94016" +157554,Wired Headphones,1,11.99,01/15/19 23:53,"461 10th St, Seattle, WA 98101" +157555,Apple Airpods Headphones,1,150,01/06/19 16:43,"990 Meadow St, Austin, TX 73301" +157556,Lightning Charging Cable,1,14.95,01/25/19 10:58,"881 Cherry St, San Francisco, CA 94016" +157557,USB-C Charging Cable,1,11.95,01/02/19 16:05,"79 8th St, Boston, MA 02215" +157558,AAA Batteries (4-pack),1,2.99,01/08/19 14:13,"329 Cherry St, Austin, TX 73301" +157559,AAA Batteries (4-pack),1,2.99,01/04/19 21:55,"436 West St, Dallas, TX 75001" +157560,AAA Batteries (4-pack),2,2.99,01/11/19 13:44,"633 6th St, Dallas, TX 75001" +157561,USB-C Charging Cable,1,11.95,01/05/19 13:07,"502 5th St, San Francisco, CA 94016" +157562,Bose SoundSport Headphones,1,99.99,01/14/19 14:32,"89 12th St, New York City, NY 10001" +157563,20in Monitor,1,109.99,01/27/19 18:58,"435 10th St, Atlanta, GA 30301" +157564,USB-C Charging Cable,1,11.95,01/10/19 11:49,"878 Washington St, Seattle, WA 98101" +157565,Apple Airpods Headphones,1,150,01/26/19 17:12,"400 Sunset St, Boston, MA 02215" +157565,Apple Airpods Headphones,1,150,01/26/19 17:12,"400 Sunset St, Boston, MA 02215" +157566,Apple Airpods Headphones,1,150,01/13/19 11:37,"643 Maple St, San Francisco, CA 94016" +157567,Apple Airpods Headphones,1,150,01/17/19 22:34,"521 Main St, Los Angeles, CA 90001" +157568,USB-C Charging Cable,1,11.95,01/11/19 10:43,"245 10th St, Portland, OR 97035" +157569,Wired Headphones,1,11.99,01/11/19 04:53,"174 Washington St, Atlanta, GA 30301" +157570,iPhone,1,700,01/10/19 18:35,"32 River St, Los Angeles, CA 90001" +157571,Bose SoundSport Headphones,1,99.99,01/23/19 19:43,"207 Johnson St, San Francisco, CA 94016" +157572,Wired Headphones,1,11.99,01/21/19 12:24,"341 Adams St, Los Angeles, CA 90001" +157573,AAA Batteries (4-pack),1,2.99,01/26/19 15:57,"74 Hill St, Austin, TX 73301" +157574,34in Ultrawide Monitor,1,379.99,01/16/19 12:30,"743 West St, Los Angeles, CA 90001" +157575,27in FHD Monitor,1,149.99,01/13/19 15:28,"808 Johnson St, New York City, NY 10001" +157576,27in FHD Monitor,1,149.99,01/23/19 16:57,"928 Wilson St, San Francisco, CA 94016" +157577,Wired Headphones,1,11.99,01/01/19 12:28,"461 Meadow St, Atlanta, GA 30301" +157578,Apple Airpods Headphones,1,150,01/04/19 21:26,"308 Jackson St, Boston, MA 02215" +157579,USB-C Charging Cable,1,11.95,01/07/19 21:46,"773 Pine St, San Francisco, CA 94016" +157580,Lightning Charging Cable,1,14.95,01/15/19 21:24,"39 11th St, Los Angeles, CA 90001" +157581,Lightning Charging Cable,1,14.95,01/29/19 18:04,"955 Church St, Portland, OR 97035" +157582,AA Batteries (4-pack),1,3.84,01/31/19 11:03,"929 Ridge St, San Francisco, CA 94016" +157583,Apple Airpods Headphones,1,150,01/22/19 19:35,"926 Forest St, Boston, MA 02215" +157584,AAA Batteries (4-pack),1,2.99,01/17/19 10:06,"614 Johnson St, Seattle, WA 98101" +157585,Lightning Charging Cable,1,14.95,01/20/19 20:08,"81 11th St, Austin, TX 73301" +157586,Bose SoundSport Headphones,1,99.99,01/29/19 18:54,"868 Willow St, Atlanta, GA 30301" +157587,Wired Headphones,1,11.99,01/03/19 20:43,"392 Lakeview St, Los Angeles, CA 90001" +157588,34in Ultrawide Monitor,1,379.99,01/19/19 20:22,"540 1st St, Los Angeles, CA 90001" +157589,Wired Headphones,1,11.99,01/16/19 12:04,"804 14th St, Seattle, WA 98101" +157590,Bose SoundSport Headphones,1,99.99,01/01/19 20:28,"495 Johnson St, Seattle, WA 98101" +157591,Lightning Charging Cable,1,14.95,01/04/19 19:03,"379 4th St, Los Angeles, CA 90001" +157592,Lightning Charging Cable,2,14.95,01/25/19 21:36,"479 South St, Portland, OR 97035" +157593,Bose SoundSport Headphones,1,99.99,01/06/19 08:53,"119 12th St, Boston, MA 02215" +157594,Apple Airpods Headphones,1,150,01/31/19 08:03,"310 Park St, Portland, ME 04101" +157595,USB-C Charging Cable,2,11.95,01/17/19 15:41,"863 Spruce St, Los Angeles, CA 90001" +157596,Lightning Charging Cable,1,14.95,01/29/19 16:19,"797 Spruce St, Seattle, WA 98101" +157597,Apple Airpods Headphones,1,150,01/21/19 23:31,"958 North St, Seattle, WA 98101" +157598,Wired Headphones,1,11.99,01/04/19 16:36,"504 7th St, Seattle, WA 98101" +157599,34in Ultrawide Monitor,1,379.99,01/14/19 10:04,"795 Pine St, Seattle, WA 98101" +157600,Bose SoundSport Headphones,1,99.99,01/28/19 14:50,"937 Spruce St, San Francisco, CA 94016" +157601,Google Phone,1,600,01/24/19 16:12,"380 12th St, Austin, TX 73301" +157601,Wired Headphones,1,11.99,01/24/19 16:12,"380 12th St, Austin, TX 73301" +157602,AAA Batteries (4-pack),2,2.99,01/23/19 20:55,"676 10th St, Los Angeles, CA 90001" +157603,Apple Airpods Headphones,1,150,01/02/19 17:19,"220 Washington St, Boston, MA 02215" +157604,AAA Batteries (4-pack),1,2.99,01/21/19 15:17,"806 Willow St, Boston, MA 02215" +157605,AA Batteries (4-pack),1,3.84,01/15/19 20:31,"927 Dogwood St, New York City, NY 10001" +157606,AAA Batteries (4-pack),1,2.99,01/22/19 17:46,"826 14th St, San Francisco, CA 94016" +157607,ThinkPad Laptop,1,999.99,01/28/19 03:46,"619 11th St, New York City, NY 10001" +157608,ThinkPad Laptop,1,999.99,01/16/19 23:01,"276 Cherry St, Atlanta, GA 30301" +157609,AAA Batteries (4-pack),1,2.99,01/18/19 18:35,"208 9th St, Portland, ME 04101" +157610,Bose SoundSport Headphones,1,99.99,01/03/19 11:23,"449 Wilson St, Dallas, TX 75001" +157611,Lightning Charging Cable,1,14.95,01/31/19 16:24,"624 Cherry St, New York City, NY 10001" +157612,Wired Headphones,1,11.99,01/25/19 19:00,"594 4th St, San Francisco, CA 94016" +157613,34in Ultrawide Monitor,1,379.99,01/14/19 15:50,"955 9th St, Boston, MA 02215" +157614,34in Ultrawide Monitor,1,379.99,01/04/19 12:57,"411 Willow St, New York City, NY 10001" +157615,27in FHD Monitor,1,149.99,01/10/19 17:42,"224 2nd St, Portland, ME 04101" +157616,Bose SoundSport Headphones,1,99.99,01/21/19 14:44,"239 Willow St, Los Angeles, CA 90001" +157617,AAA Batteries (4-pack),1,2.99,01/21/19 14:00,"709 9th St, Portland, OR 97035" +157618,Macbook Pro Laptop,1,1700,01/27/19 09:38,"165 Walnut St, Austin, TX 73301" +157619,AAA Batteries (4-pack),1,2.99,01/25/19 22:11,"150 Meadow St, New York City, NY 10001" +157620,Apple Airpods Headphones,1,150,01/26/19 18:22,"517 Spruce St, Boston, MA 02215" +157621,Wired Headphones,1,11.99,01/22/19 05:21,"996 Jackson St, Dallas, TX 75001" +157622,34in Ultrawide Monitor,1,379.99,01/18/19 22:09,"642 2nd St, New York City, NY 10001" +157623,Lightning Charging Cable,1,14.95,01/03/19 08:13,"251 Maple St, Portland, ME 04101" +157624,Lightning Charging Cable,1,14.95,01/09/19 16:08,"733 Willow St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +157625,USB-C Charging Cable,2,11.95,01/23/19 21:07,"951 Willow St, Los Angeles, CA 90001" +157626,Wired Headphones,1,11.99,01/30/19 06:54,"429 Ridge St, San Francisco, CA 94016" +157627,ThinkPad Laptop,1,999.99,01/02/19 20:53,"655 12th St, Los Angeles, CA 90001" +157628,Lightning Charging Cable,1,14.95,01/22/19 12:22,"58 5th St, Seattle, WA 98101" +157629,USB-C Charging Cable,1,11.95,01/20/19 15:16,"332 Spruce St, San Francisco, CA 94016" +157630,AAA Batteries (4-pack),1,2.99,01/06/19 16:15,"663 North St, San Francisco, CA 94016" +157631,Flatscreen TV,1,300,01/23/19 18:48,"364 Park St, San Francisco, CA 94016" +157632,Lightning Charging Cable,1,14.95,01/27/19 23:31,"152 14th St, Seattle, WA 98101" +157633,34in Ultrawide Monitor,1,379.99,01/13/19 00:28,"367 8th St, Dallas, TX 75001" +157634,Macbook Pro Laptop,1,1700,01/15/19 09:49,"691 South St, Atlanta, GA 30301" +157635,Apple Airpods Headphones,1,150,01/06/19 10:06,"735 Forest St, San Francisco, CA 94016" +157636,Lightning Charging Cable,1,14.95,01/20/19 20:33,"506 Lincoln St, Los Angeles, CA 90001" +157637,ThinkPad Laptop,1,999.99,01/19/19 19:19,"674 14th St, Los Angeles, CA 90001" +157638,AA Batteries (4-pack),3,3.84,01/29/19 22:54,"779 1st St, San Francisco, CA 94016" +157639,27in 4K Gaming Monitor,1,389.99,01/15/19 15:10,"216 2nd St, Los Angeles, CA 90001" +157640,34in Ultrawide Monitor,1,379.99,01/11/19 17:40,"405 Forest St, Austin, TX 73301" +157641,Google Phone,1,600,01/26/19 19:55,"382 Adams St, Atlanta, GA 30301" +157642,Lightning Charging Cable,1,14.95,01/25/19 09:34,"408 Lake St, Seattle, WA 98101" +157643,27in 4K Gaming Monitor,1,389.99,01/18/19 15:07,"899 11th St, Boston, MA 02215" +157644,Lightning Charging Cable,1,14.95,01/15/19 17:38,"886 7th St, New York City, NY 10001" +157645,iPhone,1,700,01/07/19 01:15,"107 Madison St, Portland, ME 04101" +157645,Wired Headphones,1,11.99,01/07/19 01:15,"107 Madison St, Portland, ME 04101" +157646,Bose SoundSport Headphones,1,99.99,01/25/19 16:29,"751 10th St, Dallas, TX 75001" +157647,Lightning Charging Cable,1,14.95,01/06/19 10:06,"260 Ridge St, Dallas, TX 75001" +157648,AAA Batteries (4-pack),2,2.99,01/17/19 01:12,"343 Willow St, Portland, OR 97035" +157649,Bose SoundSport Headphones,1,99.99,01/03/19 09:22,"229 13th St, San Francisco, CA 94016" +157650,AAA Batteries (4-pack),1,2.99,01/16/19 04:35,"666 Willow St, Seattle, WA 98101" +157651,27in 4K Gaming Monitor,1,389.99,01/07/19 08:15,"520 Church St, San Francisco, CA 94016" +157652,Apple Airpods Headphones,1,150,01/15/19 13:00,"98 12th St, San Francisco, CA 94016" +157653,Lightning Charging Cable,1,14.95,01/09/19 21:28,"905 6th St, New York City, NY 10001" +157654,34in Ultrawide Monitor,1,379.99,01/15/19 09:01,"867 Washington St, San Francisco, CA 94016" +157655,27in 4K Gaming Monitor,1,389.99,01/01/19 13:42,"215 North St, Seattle, WA 98101" +157656,iPhone,1,700,01/15/19 09:21,"445 14th St, New York City, NY 10001" +157656,Lightning Charging Cable,1,14.95,01/15/19 09:21,"445 14th St, New York City, NY 10001" +157657,AAA Batteries (4-pack),2,2.99,01/17/19 19:11,"340 Elm St, Boston, MA 02215" +157658,iPhone,1,700,01/09/19 14:09,"729 8th St, Los Angeles, CA 90001" +157659,AAA Batteries (4-pack),2,2.99,01/09/19 11:13,"912 Center St, San Francisco, CA 94016" +157660,Wired Headphones,1,11.99,01/30/19 13:12,"333 North St, San Francisco, CA 94016" +157661,AA Batteries (4-pack),2,3.84,01/27/19 15:10,"609 Sunset St, Seattle, WA 98101" +157662,Lightning Charging Cable,1,14.95,01/15/19 05:50,"958 Lincoln St, Seattle, WA 98101" +157663,AAA Batteries (4-pack),1,2.99,01/21/19 18:59,"806 14th St, San Francisco, CA 94016" +157664,Macbook Pro Laptop,1,1700,01/31/19 09:05,"920 Church St, Boston, MA 02215" +157665,AA Batteries (4-pack),1,3.84,01/29/19 14:02,"840 10th St, Los Angeles, CA 90001" +157666,AAA Batteries (4-pack),2,2.99,01/28/19 13:45,"398 14th St, Los Angeles, CA 90001" +157667,USB-C Charging Cable,1,11.95,01/09/19 11:36,"206 Forest St, Austin, TX 73301" +157668,AAA Batteries (4-pack),2,2.99,01/05/19 11:24,"661 Elm St, Los Angeles, CA 90001" +157669,ThinkPad Laptop,1,999.99,01/25/19 13:26,"415 Wilson St, San Francisco, CA 94016" +157670,20in Monitor,1,109.99,01/07/19 13:42,"890 1st St, Dallas, TX 75001" +157671,Bose SoundSport Headphones,1,99.99,01/10/19 07:06,"573 South St, Portland, ME 04101" +157672,AA Batteries (4-pack),1,3.84,01/08/19 08:19,"803 Lincoln St, San Francisco, CA 94016" +157673,34in Ultrawide Monitor,1,379.99,01/30/19 22:19,"478 Wilson St, Atlanta, GA 30301" +157674,AAA Batteries (4-pack),2,2.99,01/08/19 18:15,"566 13th St, Dallas, TX 75001" +157675,iPhone,1,700,01/15/19 22:42,"201 12th St, Dallas, TX 75001" +157676,Macbook Pro Laptop,1,1700,01/15/19 19:29,"801 Center St, Boston, MA 02215" +157677,Bose SoundSport Headphones,1,99.99,01/27/19 01:58,"501 Jackson St, Atlanta, GA 30301" +,,,,, +157678,Wired Headphones,1,11.99,01/06/19 14:09,"613 9th St, Los Angeles, CA 90001" +157679,Google Phone,1,600,01/18/19 19:38,"754 Willow St, San Francisco, CA 94016" +157680,27in 4K Gaming Monitor,1,389.99,01/18/19 15:54,"404 North St, Los Angeles, CA 90001" +157681,Wired Headphones,1,11.99,01/03/19 10:15,"671 Highland St, Dallas, TX 75001" +157682,Wired Headphones,1,11.99,01/13/19 22:21,"760 8th St, Los Angeles, CA 90001" +157683,AAA Batteries (4-pack),1,2.99,01/17/19 17:25,"668 Forest St, Austin, TX 73301" +157684,Apple Airpods Headphones,1,150,01/04/19 13:08,"43 South St, Austin, TX 73301" +157685,Apple Airpods Headphones,1,150,01/22/19 13:03,"830 Meadow St, San Francisco, CA 94016" +157686,Apple Airpods Headphones,1,150,01/24/19 14:16,"94 Forest St, San Francisco, CA 94016" +157687,AAA Batteries (4-pack),1,2.99,01/01/19 13:21,"700 Hill St, Dallas, TX 75001" +157688,Apple Airpods Headphones,1,150,01/03/19 21:23,"117 Washington St, Los Angeles, CA 90001" +157689,Apple Airpods Headphones,1,150,01/02/19 17:37,"891 Ridge St, New York City, NY 10001" +157690,USB-C Charging Cable,1,11.95,01/14/19 12:00,"981 Church St, Dallas, TX 75001" +157691,Lightning Charging Cable,1,14.95,01/24/19 19:36,"918 Church St, San Francisco, CA 94016" +157692,Wired Headphones,1,11.99,01/05/19 13:33,"993 Cherry St, Boston, MA 02215" +157693,Wired Headphones,1,11.99,01/30/19 08:10,"603 Highland St, Los Angeles, CA 90001" +157694,20in Monitor,1,109.99,01/21/19 14:46,"253 Hill St, Boston, MA 02215" +157695,Apple Airpods Headphones,1,150,01/21/19 14:01,"202 Adams St, Los Angeles, CA 90001" +157696,AA Batteries (4-pack),1,3.84,01/21/19 10:15,"578 Church St, Atlanta, GA 30301" +157697,Lightning Charging Cable,1,14.95,01/04/19 21:13,"442 4th St, Boston, MA 02215" +157698,Lightning Charging Cable,1,14.95,01/09/19 01:00,"96 Pine St, Los Angeles, CA 90001" +157699,Lightning Charging Cable,2,14.95,01/15/19 20:33,"299 14th St, Dallas, TX 75001" +157700,AA Batteries (4-pack),3,3.84,01/20/19 15:38,"589 Dogwood St, New York City, NY 10001" +157701,USB-C Charging Cable,1,11.95,01/12/19 13:21,"644 Madison St, Los Angeles, CA 90001" +157702,Bose SoundSport Headphones,1,99.99,01/03/19 08:51,"377 6th St, New York City, NY 10001" +157703,AA Batteries (4-pack),1,3.84,01/05/19 09:34,"13 Adams St, New York City, NY 10001" +157704,AA Batteries (4-pack),1,3.84,01/23/19 17:13,"735 4th St, San Francisco, CA 94016" +157705,USB-C Charging Cable,1,11.95,01/01/19 22:20,"228 Adams St, Boston, MA 02215" +157706,Apple Airpods Headphones,1,150,01/23/19 22:07,"402 Lincoln St, New York City, NY 10001" +157707,20in Monitor,1,109.99,01/05/19 16:58,"759 6th St, San Francisco, CA 94016" +157708,AAA Batteries (4-pack),1,2.99,01/13/19 10:33,"221 Adams St, Los Angeles, CA 90001" +157709,AA Batteries (4-pack),2,3.84,01/17/19 22:21,"164 2nd St, New York City, NY 10001" +157710,AA Batteries (4-pack),1,3.84,01/02/19 10:59,"174 Lincoln St, Seattle, WA 98101" +157711,Bose SoundSport Headphones,1,99.99,01/07/19 10:21,"432 6th St, Los Angeles, CA 90001" +157712,Macbook Pro Laptop,1,1700,01/24/19 10:32,"578 Wilson St, Boston, MA 02215" +157713,USB-C Charging Cable,1,11.95,01/16/19 13:23,"17 Meadow St, San Francisco, CA 94016" +157714,Apple Airpods Headphones,1,150,01/12/19 19:35,"215 Madison St, Atlanta, GA 30301" +157715,Wired Headphones,1,11.99,01/09/19 12:52,"349 2nd St, New York City, NY 10001" +157716,Wired Headphones,2,11.99,01/10/19 20:16,"958 8th St, Dallas, TX 75001" +157717,USB-C Charging Cable,1,11.95,01/06/19 10:41,"905 Main St, San Francisco, CA 94016" +157718,ThinkPad Laptop,1,999.99,01/08/19 18:13,"798 Wilson St, Dallas, TX 75001" +157719,20in Monitor,1,109.99,01/23/19 15:38,"368 14th St, Atlanta, GA 30301" +157720,Wired Headphones,1,11.99,01/11/19 13:25,"34 Madison St, San Francisco, CA 94016" +157721,Wired Headphones,2,11.99,01/15/19 14:24,"644 Jefferson St, Boston, MA 02215" +157722,20in Monitor,1,109.99,01/18/19 12:02,"645 13th St, Los Angeles, CA 90001" +157723,Wired Headphones,1,11.99,01/10/19 12:37,"409 Ridge St, Atlanta, GA 30301" +157724,Macbook Pro Laptop,1,1700,01/11/19 14:35,"205 Lincoln St, Boston, MA 02215" +157725,34in Ultrawide Monitor,1,379.99,01/01/19 10:56,"937 West St, Seattle, WA 98101" +157726,AA Batteries (4-pack),1,3.84,01/21/19 07:42,"78 13th St, San Francisco, CA 94016" +157727,Bose SoundSport Headphones,1,99.99,01/25/19 14:43,"848 4th St, New York City, NY 10001" +157728,Lightning Charging Cable,1,14.95,01/28/19 20:10,"36 Cedar St, Boston, MA 02215" +157729,LG Washing Machine,1,600.0,01/17/19 19:43,"528 West St, Los Angeles, CA 90001" +157730,USB-C Charging Cable,1,11.95,01/26/19 15:10,"718 Madison St, Los Angeles, CA 90001" +157731,USB-C Charging Cable,1,11.95,01/01/19 21:15,"276 Spruce St, Boston, MA 02215" +157732,AA Batteries (4-pack),4,3.84,01/12/19 14:45,"810 Forest St, Portland, ME 04101" +157733,iPhone,1,700,01/24/19 08:45,"162 Walnut St, San Francisco, CA 94016" +157734,Lightning Charging Cable,1,14.95,01/27/19 15:12,"241 Adams St, Boston, MA 02215" +157735,AA Batteries (4-pack),1,3.84,01/16/19 06:49,"253 Spruce St, Seattle, WA 98101" +157736,34in Ultrawide Monitor,1,379.99,01/10/19 11:22,"394 Walnut St, Atlanta, GA 30301" +157737,AA Batteries (4-pack),1,3.84,01/12/19 06:01,"856 Spruce St, New York City, NY 10001" +157738,AA Batteries (4-pack),1,3.84,01/26/19 18:40,"153 Highland St, Seattle, WA 98101" +157739,Wired Headphones,1,11.99,01/23/19 23:05,"29 Dogwood St, Boston, MA 02215" +157740,AAA Batteries (4-pack),1,2.99,01/17/19 23:53,"842 Wilson St, Boston, MA 02215" +157741,AAA Batteries (4-pack),1,2.99,01/08/19 14:28,"820 Jackson St, San Francisco, CA 94016" +157742,Apple Airpods Headphones,1,150,01/19/19 19:54,"253 12th St, Atlanta, GA 30301" +157743,iPhone,1,700,01/28/19 19:59,"978 6th St, Austin, TX 73301" +157744,iPhone,1,700,01/23/19 17:38,"545 Cherry St, Atlanta, GA 30301" +157745,Apple Airpods Headphones,1,150,01/18/19 22:00,"207 6th St, Boston, MA 02215" +157746,27in FHD Monitor,1,149.99,01/12/19 13:10,"667 Adams St, Los Angeles, CA 90001" +157747,Bose SoundSport Headphones,1,99.99,01/16/19 15:57,"852 West St, Boston, MA 02215" +157748,Bose SoundSport Headphones,1,99.99,01/28/19 14:17,"202 Willow St, Dallas, TX 75001" +157749,Wired Headphones,1,11.99,01/29/19 15:40,"179 Dogwood St, Atlanta, GA 30301" +157750,AA Batteries (4-pack),4,3.84,01/07/19 12:24,"375 11th St, Los Angeles, CA 90001" +157751,Bose SoundSport Headphones,1,99.99,01/12/19 19:57,"661 Willow St, New York City, NY 10001" +157752,AA Batteries (4-pack),1,3.84,01/07/19 20:53,"285 5th St, Portland, OR 97035" +157753,27in 4K Gaming Monitor,1,389.99,01/26/19 10:44,"965 9th St, San Francisco, CA 94016" +157754,Wired Headphones,1,11.99,01/31/19 20:58,"684 Maple St, Boston, MA 02215" +157755,AAA Batteries (4-pack),1,2.99,01/30/19 13:19,"360 Meadow St, Los Angeles, CA 90001" +157756,Flatscreen TV,1,300,01/09/19 14:48,"784 Center St, San Francisco, CA 94016" +157757,USB-C Charging Cable,2,11.95,01/11/19 10:04,"400 Meadow St, San Francisco, CA 94016" +157758,27in FHD Monitor,1,149.99,01/05/19 21:34,"966 Church St, San Francisco, CA 94016" +157759,Lightning Charging Cable,1,14.95,01/17/19 15:39,"645 Main St, Seattle, WA 98101" +157760,Apple Airpods Headphones,1,150,01/05/19 11:41,"348 10th St, Dallas, TX 75001" +157761,27in FHD Monitor,1,149.99,01/10/19 10:44,"861 Church St, San Francisco, CA 94016" +157762,USB-C Charging Cable,1,11.95,01/12/19 19:37,"271 Hickory St, Dallas, TX 75001" +157763,Bose SoundSport Headphones,1,99.99,01/23/19 21:35,"587 Park St, Boston, MA 02215" +157764,AAA Batteries (4-pack),1,2.99,01/09/19 22:41,"629 Madison St, Dallas, TX 75001" +157765,USB-C Charging Cable,1,11.95,01/18/19 00:13,"786 Jefferson St, Dallas, TX 75001" +157766,Vareebadd Phone,1,400,01/28/19 22:02,"374 Dogwood St, Dallas, TX 75001" +157767,Apple Airpods Headphones,1,150,01/27/19 21:15,"19 Lake St, San Francisco, CA 94016" +157768,iPhone,1,700,01/28/19 15:43,"818 Forest St, Portland, ME 04101" +157769,ThinkPad Laptop,1,999.99,01/30/19 22:15,"621 Meadow St, San Francisco, CA 94016" +157770,ThinkPad Laptop,1,999.99,01/03/19 11:45,"564 12th St, San Francisco, CA 94016" +157771,Apple Airpods Headphones,1,150,01/18/19 21:08,"699 Meadow St, Atlanta, GA 30301" +157772,Macbook Pro Laptop,1,1700,01/28/19 10:50,"194 4th St, New York City, NY 10001" +157773,iPhone,1,700,02/01/19 00:05,"759 Adams St, New York City, NY 10001" +157774,Lightning Charging Cable,1,14.95,01/22/19 15:34,"342 7th St, Dallas, TX 75001" +157775,Bose SoundSport Headphones,1,99.99,01/26/19 15:35,"717 1st St, Dallas, TX 75001" +157776,AAA Batteries (4-pack),2,2.99,01/30/19 13:57,"599 9th St, San Francisco, CA 94016" +157777,AA Batteries (4-pack),1,3.84,01/19/19 13:22,"477 Ridge St, New York City, NY 10001" +157778,Wired Headphones,1,11.99,01/06/19 21:33,"99 Park St, San Francisco, CA 94016" +157779,Lightning Charging Cable,1,14.95,01/16/19 20:29,"180 11th St, New York City, NY 10001" +157780,Bose SoundSport Headphones,1,99.99,01/24/19 17:00,"920 11th St, Los Angeles, CA 90001" +157781,Bose SoundSport Headphones,1,99.99,01/26/19 12:03,"811 West St, Seattle, WA 98101" +157782,Apple Airpods Headphones,1,150,01/05/19 08:57,"155 Washington St, Seattle, WA 98101" +157783,27in FHD Monitor,1,149.99,01/29/19 22:09,"477 Meadow St, San Francisco, CA 94016" +157784,Google Phone,1,600,01/26/19 11:17,"257 Washington St, Seattle, WA 98101" +157784,USB-C Charging Cable,1,11.95,01/26/19 11:17,"257 Washington St, Seattle, WA 98101" +157785,Lightning Charging Cable,1,14.95,01/30/19 08:22,"294 4th St, San Francisco, CA 94016" +157786,Wired Headphones,1,11.99,01/09/19 15:44,"184 Sunset St, San Francisco, CA 94016" +157787,Google Phone,1,600,01/30/19 11:42,"119 4th St, San Francisco, CA 94016" +157788,27in FHD Monitor,1,149.99,01/01/19 20:06,"155 Wilson St, San Francisco, CA 94016" +157789,Wired Headphones,1,11.99,01/25/19 15:05,"880 River St, Los Angeles, CA 90001" +157790,20in Monitor,1,109.99,01/06/19 23:01,"758 7th St, Los Angeles, CA 90001" +157791,AAA Batteries (4-pack),1,2.99,01/20/19 19:45,"221 Willow St, San Francisco, CA 94016" +157792,AA Batteries (4-pack),1,3.84,01/13/19 18:55,"458 Jefferson St, Dallas, TX 75001" +157793,Wired Headphones,1,11.99,01/10/19 19:26,"165 Wilson St, New York City, NY 10001" +157794,Lightning Charging Cable,1,14.95,01/18/19 14:46,"922 13th St, Atlanta, GA 30301" +157795,34in Ultrawide Monitor,1,379.99,01/29/19 04:46,"797 North St, Los Angeles, CA 90001" +157796,USB-C Charging Cable,1,11.95,01/21/19 13:59,"615 Willow St, San Francisco, CA 94016" +157797,Apple Airpods Headphones,1,150,01/21/19 20:12,"874 6th St, Los Angeles, CA 90001" +157798,Apple Airpods Headphones,1,150,01/11/19 13:13,"547 West St, Seattle, WA 98101" +157799,27in 4K Gaming Monitor,1,389.99,01/28/19 21:00,"304 Adams St, Atlanta, GA 30301" +157800,Lightning Charging Cable,3,14.95,01/08/19 16:23,"67 Lakeview St, San Francisco, CA 94016" +157801,Bose SoundSport Headphones,1,99.99,01/25/19 08:12,"76 4th St, Boston, MA 02215" +157802,Lightning Charging Cable,1,14.95,01/18/19 09:31,"85 13th St, San Francisco, CA 94016" +157803,Lightning Charging Cable,1,14.95,01/09/19 20:57,"717 14th St, Dallas, TX 75001" +157804,AA Batteries (4-pack),3,3.84,01/08/19 07:24,"686 Lake St, Boston, MA 02215" +157805,Google Phone,1,600,01/25/19 20:30,"396 Lakeview St, Atlanta, GA 30301" +157806,Lightning Charging Cable,1,14.95,01/10/19 22:32,"182 Church St, San Francisco, CA 94016" +157807,Wired Headphones,1,11.99,01/11/19 12:35,"376 8th St, Seattle, WA 98101" +157808,Bose SoundSport Headphones,1,99.99,01/19/19 10:31,"745 13th St, San Francisco, CA 94016" +157809,USB-C Charging Cable,1,11.95,01/22/19 07:11,"155 South St, New York City, NY 10001" +157810,USB-C Charging Cable,1,11.95,01/06/19 18:35,"529 Spruce St, Seattle, WA 98101" +157811,Lightning Charging Cable,1,14.95,01/24/19 15:13,"35 2nd St, San Francisco, CA 94016" +157812,Bose SoundSport Headphones,1,99.99,01/08/19 06:45,"262 Park St, Los Angeles, CA 90001" +157813,Lightning Charging Cable,1,14.95,01/10/19 21:51,"243 Church St, Boston, MA 02215" +157814,Lightning Charging Cable,1,14.95,01/30/19 22:24,"859 2nd St, Dallas, TX 75001" +157815,ThinkPad Laptop,1,999.99,01/24/19 22:31,"55 Washington St, Seattle, WA 98101" +157816,Lightning Charging Cable,1,14.95,01/19/19 16:40,"430 11th St, Dallas, TX 75001" +157817,Lightning Charging Cable,1,14.95,01/13/19 12:12,"241 Elm St, Los Angeles, CA 90001" +157818,34in Ultrawide Monitor,1,379.99,01/19/19 12:07,"96 Elm St, San Francisco, CA 94016" +157819,Lightning Charging Cable,1,14.95,01/30/19 22:00,"656 Johnson St, Austin, TX 73301" +157820,27in 4K Gaming Monitor,1,389.99,01/08/19 12:42,"837 1st St, San Francisco, CA 94016" +157821,Apple Airpods Headphones,1,150,01/23/19 20:24,"328 Wilson St, Atlanta, GA 30301" +157822,34in Ultrawide Monitor,1,379.99,01/04/19 16:38,"898 Jackson St, Austin, TX 73301" +157823,AA Batteries (4-pack),1,3.84,01/25/19 16:38,"935 Sunset St, Atlanta, GA 30301" +157824,20in Monitor,1,109.99,01/18/19 17:04,"279 Cedar St, Portland, OR 97035" +157825,Google Phone,1,600,01/23/19 09:50,"315 2nd St, Austin, TX 73301" +157826,USB-C Charging Cable,2,11.95,01/03/19 18:57,"558 Meadow St, Portland, ME 04101" +157827,ThinkPad Laptop,1,999.99,01/23/19 16:34,"344 Jefferson St, Austin, TX 73301" +157828,AA Batteries (4-pack),1,3.84,01/16/19 18:20,"464 4th St, San Francisco, CA 94016" +157829,Vareebadd Phone,1,400,01/13/19 09:13,"278 Lake St, San Francisco, CA 94016" +157830,Bose SoundSport Headphones,1,99.99,01/04/19 15:18,"402 Highland St, San Francisco, CA 94016" +157831,34in Ultrawide Monitor,1,379.99,01/24/19 09:32,"434 Lakeview St, Boston, MA 02215" +157832,Wired Headphones,1,11.99,01/29/19 07:46,"604 11th St, Austin, TX 73301" +157833,AA Batteries (4-pack),1,3.84,01/08/19 22:01,"90 12th St, Seattle, WA 98101" +157834,USB-C Charging Cable,1,11.95,01/22/19 02:19,"507 Meadow St, Los Angeles, CA 90001" +157835,Macbook Pro Laptop,1,1700,01/11/19 16:50,"36 13th St, Seattle, WA 98101" +157836,USB-C Charging Cable,2,11.95,01/28/19 13:13,"777 Chestnut St, Dallas, TX 75001" +157837,AA Batteries (4-pack),1,3.84,01/26/19 19:22,"492 Elm St, Los Angeles, CA 90001" +157838,AAA Batteries (4-pack),2,2.99,01/16/19 08:48,"278 7th St, Los Angeles, CA 90001" +157839,iPhone,1,700,01/22/19 12:45,"25 6th St, San Francisco, CA 94016" +157839,Lightning Charging Cable,1,14.95,01/22/19 12:45,"25 6th St, San Francisco, CA 94016" +157840,27in 4K Gaming Monitor,1,389.99,01/06/19 17:16,"420 Church St, Portland, ME 04101" +157841,Lightning Charging Cable,1,14.95,01/30/19 09:09,"461 Hill St, Seattle, WA 98101" +157842,Bose SoundSport Headphones,1,99.99,01/07/19 17:35,"25 11th St, San Francisco, CA 94016" +157843,Lightning Charging Cable,1,14.95,01/26/19 18:12,"80 Center St, San Francisco, CA 94016" +157844,Lightning Charging Cable,1,14.95,01/22/19 21:01,"176 Willow St, San Francisco, CA 94016" +157845,Lightning Charging Cable,1,14.95,01/19/19 21:59,"702 9th St, Seattle, WA 98101" +157846,Apple Airpods Headphones,1,150,01/18/19 02:04,"259 Park St, Boston, MA 02215" +157847,AAA Batteries (4-pack),1,2.99,01/21/19 20:36,"420 12th St, Boston, MA 02215" +157848,20in Monitor,1,109.99,01/01/19 14:12,"692 Main St, Portland, ME 04101" +157849,AA Batteries (4-pack),1,3.84,01/23/19 15:00,"827 Center St, San Francisco, CA 94016" +157850,27in 4K Gaming Monitor,1,389.99,01/29/19 14:04,"975 Center St, Seattle, WA 98101" +157851,USB-C Charging Cable,1,11.95,01/25/19 15:14,"666 Adams St, Los Angeles, CA 90001" +157852,USB-C Charging Cable,1,11.95,01/11/19 20:33,"677 2nd St, San Francisco, CA 94016" +157853,AAA Batteries (4-pack),1,2.99,01/14/19 15:22,"220 Forest St, New York City, NY 10001" +157854,USB-C Charging Cable,1,11.95,01/27/19 21:58,"245 Elm St, San Francisco, CA 94016" +157855,Apple Airpods Headphones,1,150,01/31/19 12:55,"294 Cherry St, Atlanta, GA 30301" +157856,AAA Batteries (4-pack),1,2.99,01/27/19 10:35,"712 6th St, New York City, NY 10001" +157857,Apple Airpods Headphones,1,150,01/02/19 17:04,"926 Center St, San Francisco, CA 94016" +157858,AAA Batteries (4-pack),1,2.99,01/04/19 19:29,"668 Ridge St, Seattle, WA 98101" +157859,Lightning Charging Cable,1,14.95,01/29/19 16:26,"585 11th St, Seattle, WA 98101" +157860,Bose SoundSport Headphones,1,99.99,01/17/19 09:09,"940 Wilson St, Atlanta, GA 30301" +157861,Lightning Charging Cable,1,14.95,01/30/19 21:04,"68 5th St, San Francisco, CA 94016" +157862,Bose SoundSport Headphones,1,99.99,01/06/19 20:59,"185 Pine St, San Francisco, CA 94016" +157863,AAA Batteries (4-pack),1,2.99,01/22/19 15:19,"276 Jackson St, New York City, NY 10001" +157864,USB-C Charging Cable,1,11.95,01/09/19 19:08,"992 4th St, San Francisco, CA 94016" +157865,Apple Airpods Headphones,1,150,01/10/19 15:46,"890 6th St, San Francisco, CA 94016" +157866,AA Batteries (4-pack),1,3.84,01/27/19 13:58,"481 Lincoln St, Los Angeles, CA 90001" +157867,Lightning Charging Cable,1,14.95,01/25/19 17:19,"538 Chestnut St, New York City, NY 10001" +157868,34in Ultrawide Monitor,1,379.99,01/24/19 16:00,"362 12th St, New York City, NY 10001" +157869,Wired Headphones,1,11.99,01/11/19 21:25,"50 Washington St, Boston, MA 02215" +157870,Apple Airpods Headphones,1,150,01/28/19 13:00,"238 River St, Los Angeles, CA 90001" +157871,27in FHD Monitor,1,149.99,01/11/19 22:54,"689 Main St, Seattle, WA 98101" +157872,AAA Batteries (4-pack),1,2.99,01/10/19 17:59,"978 Elm St, San Francisco, CA 94016" +157873,AAA Batteries (4-pack),1,2.99,01/21/19 14:02,"230 South St, Los Angeles, CA 90001" +157874,Lightning Charging Cable,1,14.95,01/01/19 10:54,"31 Elm St, San Francisco, CA 94016" +157875,USB-C Charging Cable,1,11.95,01/27/19 19:47,"29 Forest St, Boston, MA 02215" +157876,Lightning Charging Cable,1,14.95,01/27/19 16:51,"591 Jackson St, San Francisco, CA 94016" +157877,Wired Headphones,1,11.99,01/09/19 16:04,"160 Lake St, San Francisco, CA 94016" +157878,iPhone,1,700,01/22/19 11:55,"441 Center St, Los Angeles, CA 90001" +157878,Wired Headphones,1,11.99,01/22/19 11:55,"441 Center St, Los Angeles, CA 90001" +157879,Lightning Charging Cable,1,14.95,01/30/19 21:49,"309 Johnson St, San Francisco, CA 94016" +,,,,, +157880,Bose SoundSport Headphones,1,99.99,01/02/19 19:40,"731 Cedar St, Dallas, TX 75001" +157881,Lightning Charging Cable,1,14.95,01/11/19 07:56,"472 Lincoln St, Los Angeles, CA 90001" +157882,USB-C Charging Cable,1,11.95,01/14/19 00:05,"371 Church St, Boston, MA 02215" +157883,Flatscreen TV,1,300,01/17/19 07:30,"905 5th St, New York City, NY 10001" +157884,USB-C Charging Cable,1,11.95,01/02/19 17:42,"839 Jefferson St, Boston, MA 02215" +157885,Lightning Charging Cable,1,14.95,01/16/19 08:52,"681 7th St, Austin, TX 73301" +157886,Wired Headphones,1,11.99,01/27/19 09:19,"155 Hickory St, New York City, NY 10001" +157887,Apple Airpods Headphones,1,150,01/17/19 12:21,"694 Johnson St, Atlanta, GA 30301" +157888,Vareebadd Phone,1,400,01/18/19 11:25,"102 4th St, Boston, MA 02215" +157889,Bose SoundSport Headphones,1,99.99,01/22/19 05:41,"99 1st St, Boston, MA 02215" +157890,iPhone,1,700,01/30/19 14:27,"817 Johnson St, New York City, NY 10001" +157891,34in Ultrawide Monitor,1,379.99,01/11/19 11:38,"336 Jefferson St, New York City, NY 10001" +157892,AA Batteries (4-pack),1,3.84,01/24/19 00:37,"960 River St, San Francisco, CA 94016" +157893,iPhone,1,700,01/16/19 11:11,"803 Cherry St, New York City, NY 10001" +157894,Wired Headphones,1,11.99,01/11/19 17:57,"728 6th St, Austin, TX 73301" +157895,Macbook Pro Laptop,1,1700,01/25/19 01:58,"272 Cedar St, Boston, MA 02215" +157896,USB-C Charging Cable,1,11.95,01/20/19 21:59,"185 Dogwood St, San Francisco, CA 94016" +157897,Lightning Charging Cable,1,14.95,01/02/19 10:47,"978 Wilson St, Atlanta, GA 30301" +157898,LG Dryer,1,600.0,01/27/19 06:12,"899 North St, San Francisco, CA 94016" +157899,Wired Headphones,1,11.99,01/19/19 22:14,"380 Center St, Portland, OR 97035" +157900,Flatscreen TV,1,300,01/31/19 14:08,"357 Lincoln St, New York City, NY 10001" +157901,AA Batteries (4-pack),2,3.84,01/05/19 04:58,"953 Sunset St, San Francisco, CA 94016" +157902,AAA Batteries (4-pack),1,2.99,01/10/19 00:04,"749 Lincoln St, New York City, NY 10001" +157903,Lightning Charging Cable,1,14.95,01/01/19 18:42,"240 River St, Los Angeles, CA 90001" +157904,27in 4K Gaming Monitor,1,389.99,01/19/19 21:02,"851 9th St, Boston, MA 02215" +157905,27in FHD Monitor,1,149.99,01/19/19 11:37,"541 Walnut St, Seattle, WA 98101" +157906,Wired Headphones,1,11.99,01/27/19 21:21,"9 Park St, Los Angeles, CA 90001" +157907,Lightning Charging Cable,1,14.95,01/17/19 10:39,"785 10th St, New York City, NY 10001" +157908,Apple Airpods Headphones,1,150,01/05/19 11:41,"201 14th St, Austin, TX 73301" +157909,Google Phone,1,600,01/11/19 11:06,"656 Washington St, San Francisco, CA 94016" +157910,Lightning Charging Cable,1,14.95,01/28/19 08:08,"521 Washington St, Dallas, TX 75001" +157910,AA Batteries (4-pack),2,3.84,01/28/19 08:08,"521 Washington St, Dallas, TX 75001" +157911,USB-C Charging Cable,1,11.95,01/23/19 14:49,"876 Jefferson St, Portland, OR 97035" +157912,27in FHD Monitor,1,149.99,01/20/19 14:02,"547 9th St, Los Angeles, CA 90001" +157913,Flatscreen TV,1,300,01/02/19 21:12,"442 11th St, Los Angeles, CA 90001" +157914,AAA Batteries (4-pack),2,2.99,01/07/19 19:03,"937 West St, San Francisco, CA 94016" +157915,Macbook Pro Laptop,1,1700,01/06/19 14:37,"199 13th St, San Francisco, CA 94016" +157916,Wired Headphones,1,11.99,01/26/19 10:11,"223 Jackson St, New York City, NY 10001" +157917,27in 4K Gaming Monitor,1,389.99,01/01/19 17:22,"62 Lincoln St, Dallas, TX 75001" +157918,AA Batteries (4-pack),1,3.84,01/27/19 13:28,"525 Washington St, Los Angeles, CA 90001" +157918,AAA Batteries (4-pack),1,2.99,01/27/19 13:28,"525 Washington St, Los Angeles, CA 90001" +157919,AAA Batteries (4-pack),1,2.99,01/08/19 10:35,"209 Willow St, Los Angeles, CA 90001" +157920,34in Ultrawide Monitor,1,379.99,01/18/19 10:55,"545 Main St, New York City, NY 10001" +157921,iPhone,1,700,01/26/19 23:00,"331 5th St, San Francisco, CA 94016" +157922,Google Phone,1,600,01/18/19 20:42,"74 11th St, Dallas, TX 75001" +157922,USB-C Charging Cable,1,11.95,01/18/19 20:42,"74 11th St, Dallas, TX 75001" +157923,Wired Headphones,1,11.99,01/22/19 14:09,"732 6th St, Boston, MA 02215" +157924,Lightning Charging Cable,1,14.95,01/19/19 15:44,"14 Cherry St, Dallas, TX 75001" +157925,Bose SoundSport Headphones,1,99.99,01/03/19 18:10,"299 Chestnut St, Austin, TX 73301" +157926,Apple Airpods Headphones,1,150,01/18/19 13:02,"688 West St, Seattle, WA 98101" +157927,AAA Batteries (4-pack),1,2.99,01/05/19 10:46,"404 Forest St, Los Angeles, CA 90001" +157928,AA Batteries (4-pack),1,3.84,01/22/19 20:57,"203 10th St, New York City, NY 10001" +157929,USB-C Charging Cable,1,11.95,01/27/19 20:53,"994 Cedar St, Los Angeles, CA 90001" +157930,Bose SoundSport Headphones,1,99.99,01/16/19 20:17,"933 Walnut St, Los Angeles, CA 90001" +157931,AA Batteries (4-pack),1,3.84,01/24/19 21:07,"702 Jackson St, San Francisco, CA 94016" +157932,Lightning Charging Cable,1,14.95,01/09/19 23:57,"320 West St, New York City, NY 10001" +157933,Apple Airpods Headphones,1,150,01/24/19 11:20,"590 Maple St, New York City, NY 10001" +157934,34in Ultrawide Monitor,1,379.99,01/19/19 11:04,"403 Forest St, Seattle, WA 98101" +157935,Wired Headphones,1,11.99,01/28/19 23:02,"122 Lakeview St, San Francisco, CA 94016" +157936,Lightning Charging Cable,2,14.95,01/06/19 17:04,"616 North St, Portland, ME 04101" +157937,Bose SoundSport Headphones,1,99.99,01/21/19 20:39,"710 Cedar St, Atlanta, GA 30301" +157938,AA Batteries (4-pack),1,3.84,01/09/19 09:03,"269 Spruce St, Portland, ME 04101" +157939,Lightning Charging Cable,1,14.95,01/13/19 08:53,"277 Adams St, Portland, ME 04101" +157940,27in 4K Gaming Monitor,1,389.99,01/11/19 10:11,"660 Jefferson St, Dallas, TX 75001" +157941,AA Batteries (4-pack),1,3.84,01/28/19 09:12,"347 South St, Boston, MA 02215" +157942,ThinkPad Laptop,1,999.99,01/08/19 22:10,"186 Forest St, Boston, MA 02215" +157943,Google Phone,1,600,01/04/19 00:40,"219 7th St, Seattle, WA 98101" +157944,AA Batteries (4-pack),1,3.84,01/08/19 12:08,"43 Ridge St, Los Angeles, CA 90001" +157945,Lightning Charging Cable,1,14.95,01/02/19 12:41,"508 Lakeview St, San Francisco, CA 94016" +157946,Apple Airpods Headphones,1,150,01/13/19 17:21,"108 6th St, Los Angeles, CA 90001" +157947,Bose SoundSport Headphones,1,99.99,01/27/19 14:00,"797 Sunset St, Boston, MA 02215" +157948,AAA Batteries (4-pack),2,2.99,01/05/19 07:12,"456 Cedar St, Dallas, TX 75001" +157949,AAA Batteries (4-pack),2,2.99,01/14/19 20:13,"524 Johnson St, San Francisco, CA 94016" +157950,USB-C Charging Cable,1,11.95,01/04/19 21:21,"509 Ridge St, San Francisco, CA 94016" +157951,Google Phone,1,600,01/09/19 22:57,"130 Dogwood St, Los Angeles, CA 90001" +157952,USB-C Charging Cable,2,11.95,01/09/19 09:22,"64 Maple St, Seattle, WA 98101" +157953,Flatscreen TV,1,300,01/25/19 17:04,"858 Maple St, Boston, MA 02215" +157954,Lightning Charging Cable,1,14.95,01/01/19 13:41,"31 Forest St, San Francisco, CA 94016" +157955,Lightning Charging Cable,1,14.95,01/19/19 12:23,"353 4th St, San Francisco, CA 94016" +157956,Lightning Charging Cable,1,14.95,01/12/19 00:51,"493 Dogwood St, Dallas, TX 75001" +157957,Apple Airpods Headphones,1,150,01/29/19 15:43,"876 8th St, Los Angeles, CA 90001" +157958,AA Batteries (4-pack),1,3.84,01/29/19 19:52,"305 Dogwood St, San Francisco, CA 94016" +157959,Macbook Pro Laptop,1,1700,01/05/19 09:04,"318 West St, Atlanta, GA 30301" +157960,AAA Batteries (4-pack),1,2.99,01/26/19 12:39,"541 13th St, Portland, OR 97035" +157961,Lightning Charging Cable,1,14.95,01/24/19 09:22,"171 Pine St, San Francisco, CA 94016" +157962,USB-C Charging Cable,1,11.95,01/04/19 09:01,"841 River St, Los Angeles, CA 90001" +157963,Apple Airpods Headphones,1,150,01/18/19 22:49,"34 Lake St, San Francisco, CA 94016" +157964,34in Ultrawide Monitor,1,379.99,01/23/19 22:11,"480 9th St, San Francisco, CA 94016" +157965,Apple Airpods Headphones,1,150,01/23/19 12:08,"517 Willow St, Portland, ME 04101" +157966,AAA Batteries (4-pack),3,2.99,01/02/19 21:57,"42 Elm St, San Francisco, CA 94016" +157967,Apple Airpods Headphones,1,150,01/17/19 13:23,"37 Lincoln St, Atlanta, GA 30301" +157968,AA Batteries (4-pack),1,3.84,01/24/19 22:10,"481 Cedar St, Los Angeles, CA 90001" +157968,iPhone,1,700,01/24/19 22:10,"481 Cedar St, Los Angeles, CA 90001" +157969,27in 4K Gaming Monitor,1,389.99,01/08/19 14:59,"631 Johnson St, New York City, NY 10001" +157970,USB-C Charging Cable,1,11.95,01/29/19 20:03,"58 Jackson St, Atlanta, GA 30301" +157971,Wired Headphones,1,11.99,01/13/19 14:24,"520 Jackson St, Portland, ME 04101" +157972,34in Ultrawide Monitor,1,379.99,01/14/19 21:30,"936 Lincoln St, San Francisco, CA 94016" +157973,AAA Batteries (4-pack),3,2.99,01/19/19 12:13,"218 Park St, Dallas, TX 75001" +157974,Lightning Charging Cable,1,14.95,01/25/19 15:59,"822 11th St, San Francisco, CA 94016" +157975,AAA Batteries (4-pack),1,2.99,01/23/19 22:44,"751 Jackson St, New York City, NY 10001" +157976,Lightning Charging Cable,1,14.95,01/28/19 12:54,"62 Dogwood St, New York City, NY 10001" +157977,27in 4K Gaming Monitor,1,389.99,01/04/19 19:00,"267 Center St, San Francisco, CA 94016" +157978,Macbook Pro Laptop,1,1700,01/18/19 11:04,"917 Ridge St, Los Angeles, CA 90001" +157979,Wired Headphones,1,11.99,01/08/19 18:33,"147 Forest St, San Francisco, CA 94016" +157980,Google Phone,1,600,01/10/19 20:50,"197 Pine St, San Francisco, CA 94016" +157980,USB-C Charging Cable,1,11.95,01/10/19 20:50,"197 Pine St, San Francisco, CA 94016" +157981,iPhone,1,700,01/07/19 18:49,"726 Park St, Portland, OR 97035" +157982,34in Ultrawide Monitor,1,379.99,01/16/19 21:21,"441 7th St, Dallas, TX 75001" +157983,AAA Batteries (4-pack),1,2.99,01/06/19 00:15,"554 Lincoln St, Boston, MA 02215" +157984,Wired Headphones,1,11.99,01/25/19 13:19,"595 Adams St, San Francisco, CA 94016" +157985,USB-C Charging Cable,1,11.95,01/04/19 19:58,"698 Spruce St, Portland, ME 04101" +157986,AAA Batteries (4-pack),2,2.99,01/06/19 19:55,"693 Lincoln St, Austin, TX 73301" +157987,Lightning Charging Cable,1,14.95,01/26/19 20:36,"912 North St, Atlanta, GA 30301" +157988,ThinkPad Laptop,1,999.99,01/15/19 22:58,"537 2nd St, San Francisco, CA 94016" +157989,Bose SoundSport Headphones,1,99.99,01/23/19 15:52,"786 Lakeview St, Dallas, TX 75001" +157990,Vareebadd Phone,1,400,01/07/19 17:53,"143 Ridge St, Seattle, WA 98101" +157991,Google Phone,1,600,01/20/19 18:50,"582 Chestnut St, New York City, NY 10001" +157991,USB-C Charging Cable,1,11.95,01/20/19 18:50,"582 Chestnut St, New York City, NY 10001" +157992,Google Phone,1,600,01/18/19 20:39,"428 Washington St, Los Angeles, CA 90001" +157992,Bose SoundSport Headphones,1,99.99,01/18/19 20:39,"428 Washington St, Los Angeles, CA 90001" +157993,27in FHD Monitor,1,149.99,01/17/19 01:44,"314 Johnson St, Dallas, TX 75001" +157994,ThinkPad Laptop,1,999.99,01/25/19 04:40,"152 Wilson St, Portland, OR 97035" +157995,Lightning Charging Cable,1,14.95,01/22/19 18:35,"477 12th St, Boston, MA 02215" +157996,20in Monitor,1,109.99,01/04/19 13:09,"52 9th St, Los Angeles, CA 90001" +157997,Google Phone,1,600,01/30/19 10:18,"580 12th St, San Francisco, CA 94016" +157998,Apple Airpods Headphones,1,150,01/13/19 22:08,"278 North St, Atlanta, GA 30301" +157999,27in FHD Monitor,1,149.99,01/11/19 00:23,"523 Sunset St, Dallas, TX 75001" +158000,USB-C Charging Cable,2,11.95,01/08/19 11:26,"137 Lakeview St, Atlanta, GA 30301" +158001,USB-C Charging Cable,2,11.95,01/25/19 23:42,"425 Ridge St, San Francisco, CA 94016" +158002,27in FHD Monitor,1,149.99,01/22/19 12:48,"172 Adams St, Boston, MA 02215" +158003,AA Batteries (4-pack),3,3.84,01/31/19 18:48,"404 9th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +158004,Vareebadd Phone,1,400,01/02/19 12:50,"519 13th St, Seattle, WA 98101" +158004,USB-C Charging Cable,1,11.95,01/02/19 12:50,"519 13th St, Seattle, WA 98101" +158005,USB-C Charging Cable,1,11.95,01/20/19 20:44,"499 Wilson St, San Francisco, CA 94016" +158006,Apple Airpods Headphones,1,150,01/20/19 10:30,"182 14th St, San Francisco, CA 94016" +158007,iPhone,1,700,01/17/19 21:36,"745 Walnut St, Boston, MA 02215" +158007,Lightning Charging Cable,1,14.95,01/17/19 21:36,"745 Walnut St, Boston, MA 02215" +158008,20in Monitor,1,109.99,01/14/19 21:28,"403 13th St, Los Angeles, CA 90001" +158009,USB-C Charging Cable,1,11.95,01/30/19 15:06,"813 Main St, Dallas, TX 75001" +158010,34in Ultrawide Monitor,1,379.99,01/14/19 23:29,"766 Elm St, New York City, NY 10001" +158011,AAA Batteries (4-pack),1,2.99,01/23/19 14:12,"510 Lakeview St, Boston, MA 02215" +158012,Bose SoundSport Headphones,1,99.99,01/08/19 13:44,"757 Hickory St, Dallas, TX 75001" +158013,Macbook Pro Laptop,1,1700,01/28/19 20:06,"985 Elm St, Seattle, WA 98101" +158014,Lightning Charging Cable,1,14.95,01/19/19 06:45,"374 Meadow St, Boston, MA 02215" +158015,Lightning Charging Cable,1,14.95,01/01/19 19:19,"636 Madison St, San Francisco, CA 94016" +158016,Lightning Charging Cable,1,14.95,01/25/19 17:57,"290 Maple St, San Francisco, CA 94016" +158017,Google Phone,1,600,01/19/19 23:35,"304 North St, Dallas, TX 75001" +158018,Wired Headphones,1,11.99,01/19/19 00:00,"433 Lake St, Los Angeles, CA 90001" +158019,AA Batteries (4-pack),2,3.84,01/25/19 21:09,"432 8th St, Dallas, TX 75001" +158020,AAA Batteries (4-pack),2,2.99,01/06/19 17:54,"796 Washington St, Los Angeles, CA 90001" +158021,Wired Headphones,1,11.99,01/16/19 01:33,"380 2nd St, Dallas, TX 75001" +158022,USB-C Charging Cable,1,11.95,01/12/19 16:31,"257 Spruce St, San Francisco, CA 94016" +158023,iPhone,1,700,01/26/19 14:34,"338 Center St, San Francisco, CA 94016" +158024,Wired Headphones,1,11.99,01/13/19 14:17,"417 Chestnut St, San Francisco, CA 94016" +158025,iPhone,1,700,01/21/19 11:54,"184 13th St, Boston, MA 02215" +158025,Lightning Charging Cable,1,14.95,01/21/19 11:54,"184 13th St, Boston, MA 02215" +158026,Apple Airpods Headphones,1,150,01/23/19 19:09,"845 Hickory St, San Francisco, CA 94016" +158027,AAA Batteries (4-pack),2,2.99,01/29/19 20:59,"313 Highland St, New York City, NY 10001" +158028,Flatscreen TV,1,300,01/27/19 21:46,"818 Park St, Boston, MA 02215" +158029,AAA Batteries (4-pack),1,2.99,01/25/19 13:25,"91 5th St, San Francisco, CA 94016" +158030,Apple Airpods Headphones,1,150,01/28/19 15:14,"284 Cherry St, Los Angeles, CA 90001" +158031,Apple Airpods Headphones,1,150,01/27/19 05:51,"428 2nd St, Portland, OR 97035" +158032,USB-C Charging Cable,2,11.95,01/16/19 14:16,"106 Lake St, Los Angeles, CA 90001" +158033,Lightning Charging Cable,1,14.95,01/11/19 12:51,"741 Spruce St, San Francisco, CA 94016" +158034,AAA Batteries (4-pack),4,2.99,01/18/19 19:28,"204 Ridge St, Seattle, WA 98101" +158035,Flatscreen TV,1,300,01/08/19 19:37,"557 6th St, Los Angeles, CA 90001" +158036,Lightning Charging Cable,1,14.95,01/16/19 18:20,"662 12th St, Atlanta, GA 30301" +158037,34in Ultrawide Monitor,1,379.99,01/22/19 19:03,"48 6th St, Los Angeles, CA 90001" +158038,AA Batteries (4-pack),1,3.84,01/28/19 19:52,"913 1st St, Dallas, TX 75001" +158039,AAA Batteries (4-pack),1,2.99,01/14/19 11:52,"58 11th St, New York City, NY 10001" +158040,Bose SoundSport Headphones,1,99.99,01/03/19 12:50,"550 Meadow St, Seattle, WA 98101" +158041,34in Ultrawide Monitor,1,379.99,01/19/19 23:37,"72 8th St, San Francisco, CA 94016" +158042,Lightning Charging Cable,3,14.95,01/10/19 12:34,"493 1st St, San Francisco, CA 94016" +158043,AA Batteries (4-pack),1,3.84,01/23/19 10:38,"947 12th St, Los Angeles, CA 90001" +158044,27in FHD Monitor,1,149.99,01/07/19 18:05,"562 5th St, Los Angeles, CA 90001" +158045,27in FHD Monitor,1,149.99,01/14/19 18:58,"724 North St, Portland, OR 97035" +158046,USB-C Charging Cable,1,11.95,01/31/19 18:10,"974 Pine St, San Francisco, CA 94016" +158047,iPhone,1,700,01/02/19 20:37,"284 Cherry St, Atlanta, GA 30301" +158048,Wired Headphones,1,11.99,01/11/19 08:19,"782 8th St, Boston, MA 02215" +158049,USB-C Charging Cable,1,11.95,01/20/19 18:05,"351 Maple St, New York City, NY 10001" +158050,Lightning Charging Cable,1,14.95,01/05/19 18:02,"857 Dogwood St, Los Angeles, CA 90001" +158051,Macbook Pro Laptop,1,1700,01/08/19 18:44,"652 Highland St, Austin, TX 73301" +158052,Lightning Charging Cable,1,14.95,01/07/19 23:13,"222 Cedar St, Los Angeles, CA 90001" +158053,AA Batteries (4-pack),1,3.84,01/02/19 09:25,"106 Adams St, Austin, TX 73301" +158054,Apple Airpods Headphones,1,150,01/16/19 12:31,"839 River St, San Francisco, CA 94016" +158055,Apple Airpods Headphones,1,150,01/18/19 20:55,"159 Dogwood St, Atlanta, GA 30301" +158056,AAA Batteries (4-pack),1,2.99,01/18/19 09:59,"853 Jackson St, Los Angeles, CA 90001" +158057,Macbook Pro Laptop,1,1700,01/13/19 21:41,"53 12th St, Boston, MA 02215" +158058,AA Batteries (4-pack),1,3.84,01/05/19 17:46,"407 Wilson St, Los Angeles, CA 90001" +158059,AA Batteries (4-pack),1,3.84,01/24/19 12:58,"801 Forest St, San Francisco, CA 94016" +158060,Wired Headphones,1,11.99,01/14/19 22:04,"151 Chestnut St, New York City, NY 10001" +158061,AA Batteries (4-pack),1,3.84,01/23/19 09:36,"827 Lincoln St, Los Angeles, CA 90001" +158062,ThinkPad Laptop,1,999.99,01/10/19 11:58,"901 4th St, San Francisco, CA 94016" +158063,Lightning Charging Cable,1,14.95,01/17/19 20:44,"210 6th St, San Francisco, CA 94016" +158064,AA Batteries (4-pack),1,3.84,01/24/19 16:33,"401 1st St, New York City, NY 10001" +158065,AAA Batteries (4-pack),1,2.99,01/27/19 22:17,"833 5th St, Atlanta, GA 30301" +158066,Wired Headphones,1,11.99,01/10/19 13:26,"364 6th St, Portland, ME 04101" +158067,Lightning Charging Cable,1,14.95,01/14/19 21:46,"131 Lakeview St, Dallas, TX 75001" +158068,Wired Headphones,1,11.99,01/16/19 19:57,"250 Meadow St, Austin, TX 73301" +158069,Flatscreen TV,1,300,01/17/19 16:22,"138 5th St, San Francisco, CA 94016" +158070,USB-C Charging Cable,2,11.95,01/26/19 13:50,"706 Highland St, Los Angeles, CA 90001" +158071,USB-C Charging Cable,1,11.95,01/08/19 11:35,"990 Ridge St, Seattle, WA 98101" +158072,USB-C Charging Cable,1,11.95,01/13/19 01:19,"937 Madison St, Portland, OR 97035" +158073,iPhone,1,700,01/05/19 08:56,"46 Elm St, Boston, MA 02215" +158073,Lightning Charging Cable,2,14.95,01/05/19 08:56,"46 Elm St, Boston, MA 02215" +158074,Apple Airpods Headphones,1,150,01/25/19 03:31,"984 Highland St, Dallas, TX 75001" +158075,USB-C Charging Cable,1,11.95,01/20/19 14:03,"848 13th St, Austin, TX 73301" +158076,Wired Headphones,1,11.99,01/24/19 17:39,"742 9th St, Los Angeles, CA 90001" +158077,27in FHD Monitor,1,149.99,01/11/19 17:26,"263 6th St, New York City, NY 10001" +158078,USB-C Charging Cable,1,11.95,01/16/19 20:29,"64 Jackson St, Boston, MA 02215" +158079,iPhone,1,700,01/07/19 19:27,"2 South St, Atlanta, GA 30301" +158079,Lightning Charging Cable,1,14.95,01/07/19 19:27,"2 South St, Atlanta, GA 30301" +158080,AAA Batteries (4-pack),2,2.99,01/22/19 11:52,"655 12th St, Los Angeles, CA 90001" +158081,USB-C Charging Cable,1,11.95,01/01/19 10:19,"59 5th St, San Francisco, CA 94016" +158082,27in FHD Monitor,1,149.99,01/29/19 17:06,"849 River St, Portland, OR 97035" +158083,AA Batteries (4-pack),2,3.84,01/28/19 15:30,"771 Spruce St, New York City, NY 10001" +158084,Apple Airpods Headphones,1,150,01/24/19 14:22,"610 Cherry St, New York City, NY 10001" +158085,Macbook Pro Laptop,1,1700,01/26/19 21:57,"681 Cherry St, Dallas, TX 75001" +158086,AA Batteries (4-pack),2,3.84,01/02/19 18:41,"896 Elm St, Portland, OR 97035" +158087,Apple Airpods Headphones,1,150,01/19/19 14:29,"381 Forest St, Los Angeles, CA 90001" +158088,USB-C Charging Cable,1,11.95,01/22/19 18:48,"434 North St, Austin, TX 73301" +158089,AA Batteries (4-pack),1,3.84,01/15/19 20:06,"134 River St, Los Angeles, CA 90001" +158090,Wired Headphones,1,11.99,01/18/19 22:50,"814 4th St, Los Angeles, CA 90001" +158091,Google Phone,1,600,01/27/19 11:06,"401 7th St, New York City, NY 10001" +158092,AA Batteries (4-pack),1,3.84,01/26/19 17:59,"758 Walnut St, Atlanta, GA 30301" +158093,AA Batteries (4-pack),1,3.84,01/20/19 12:08,"321 Church St, Seattle, WA 98101" +158094,USB-C Charging Cable,1,11.95,01/05/19 12:38,"149 Center St, New York City, NY 10001" +158095,Lightning Charging Cable,1,14.95,01/19/19 14:07,"200 Highland St, Atlanta, GA 30301" +158096,Apple Airpods Headphones,1,150,01/04/19 13:51,"348 4th St, Boston, MA 02215" +158097,AAA Batteries (4-pack),2,2.99,01/07/19 00:12,"53 Walnut St, Los Angeles, CA 90001" +158098,Wired Headphones,1,11.99,01/31/19 08:13,"556 Lake St, New York City, NY 10001" +158099,AA Batteries (4-pack),3,3.84,01/27/19 19:32,"235 13th St, Austin, TX 73301" +158100,USB-C Charging Cable,1,11.95,01/26/19 20:05,"677 Lakeview St, San Francisco, CA 94016" +158101,20in Monitor,1,109.99,01/17/19 22:09,"269 Madison St, San Francisco, CA 94016" +158102,AAA Batteries (4-pack),1,2.99,01/02/19 13:07,"419 Willow St, Seattle, WA 98101" +158103,Wired Headphones,1,11.99,01/24/19 17:39,"105 Lake St, Dallas, TX 75001" +158104,iPhone,1,700,01/13/19 07:33,"97 Hickory St, San Francisco, CA 94016" +158105,Lightning Charging Cable,1,14.95,01/06/19 13:27,"831 Cherry St, Austin, TX 73301" +158106,AA Batteries (4-pack),2,3.84,01/03/19 19:24,"435 Cherry St, Los Angeles, CA 90001" +158107,Flatscreen TV,1,300,01/04/19 11:25,"331 Lincoln St, San Francisco, CA 94016" +158108,Apple Airpods Headphones,1,150,01/08/19 08:59,"924 Washington St, Atlanta, GA 30301" +158109,Apple Airpods Headphones,1,150,01/30/19 23:58,"715 8th St, Dallas, TX 75001" +158110,Google Phone,1,600,01/12/19 19:26,"524 Hill St, New York City, NY 10001" +158111,USB-C Charging Cable,1,11.95,01/31/19 21:48,"915 11th St, Atlanta, GA 30301" +158112,Lightning Charging Cable,1,14.95,01/03/19 14:34,"859 Spruce St, Dallas, TX 75001" +158113,Lightning Charging Cable,1,14.95,01/25/19 23:06,"348 Ridge St, Boston, MA 02215" +158114,Macbook Pro Laptop,1,1700,01/21/19 20:37,"719 Main St, Portland, OR 97035" +158115,Bose SoundSport Headphones,1,99.99,01/01/19 10:57,"426 Jefferson St, Dallas, TX 75001" +158116,USB-C Charging Cable,1,11.95,02/01/19 00:24,"233 Wilson St, Seattle, WA 98101" +158117,Google Phone,1,600,01/20/19 22:30,"312 Park St, Atlanta, GA 30301" +158118,USB-C Charging Cable,1,11.95,01/21/19 11:01,"63 Meadow St, Boston, MA 02215" +158119,Bose SoundSport Headphones,1,99.99,01/16/19 20:06,"494 Forest St, Los Angeles, CA 90001" +158120,USB-C Charging Cable,2,11.95,01/26/19 23:02,"781 Dogwood St, San Francisco, CA 94016" +158121,Apple Airpods Headphones,1,150,01/05/19 23:08,"583 Cedar St, Los Angeles, CA 90001" +158122,Wired Headphones,1,11.99,01/31/19 18:37,"431 Chestnut St, San Francisco, CA 94016" +158123,Bose SoundSport Headphones,1,99.99,01/07/19 06:47,"906 Jefferson St, San Francisco, CA 94016" +158124,Wired Headphones,1,11.99,01/27/19 10:55,"15 North St, Austin, TX 73301" +158125,iPhone,1,700,01/03/19 17:03,"419 Walnut St, Dallas, TX 75001" +158126,USB-C Charging Cable,1,11.95,01/12/19 10:27,"89 12th St, Seattle, WA 98101" +158127,AA Batteries (4-pack),1,3.84,01/04/19 20:05,"997 14th St, Seattle, WA 98101" +158128,AA Batteries (4-pack),1,3.84,01/07/19 16:55,"194 13th St, Portland, ME 04101" +158129,AA Batteries (4-pack),1,3.84,01/01/19 19:25,"461 4th St, Los Angeles, CA 90001" +158130,34in Ultrawide Monitor,1,379.99,01/20/19 22:16,"197 Cherry St, Dallas, TX 75001" +158131,USB-C Charging Cable,1,11.95,01/07/19 23:32,"254 North St, Dallas, TX 75001" +158132,AA Batteries (4-pack),2,3.84,01/15/19 19:07,"19 Johnson St, Atlanta, GA 30301" +158133,27in 4K Gaming Monitor,1,389.99,01/08/19 10:00,"721 Lakeview St, San Francisco, CA 94016" +158134,USB-C Charging Cable,1,11.95,01/14/19 13:15,"840 Maple St, Los Angeles, CA 90001" +158135,Apple Airpods Headphones,1,150,01/25/19 23:54,"337 Lincoln St, New York City, NY 10001" +158136,iPhone,1,700,01/06/19 22:38,"263 11th St, Dallas, TX 75001" +158136,Lightning Charging Cable,1,14.95,01/06/19 22:38,"263 11th St, Dallas, TX 75001" +158137,USB-C Charging Cable,1,11.95,01/30/19 14:36,"33 Meadow St, Dallas, TX 75001" +158138,Lightning Charging Cable,2,14.95,01/27/19 16:09,"340 7th St, San Francisco, CA 94016" +158139,Lightning Charging Cable,1,14.95,01/07/19 19:57,"391 Hickory St, Dallas, TX 75001" +158140,20in Monitor,1,109.99,01/20/19 15:43,"525 12th St, Los Angeles, CA 90001" +158141,Bose SoundSport Headphones,1,99.99,01/17/19 12:20,"167 Jefferson St, San Francisco, CA 94016" +158142,20in Monitor,1,109.99,01/06/19 15:03,"524 South St, Los Angeles, CA 90001" +158143,Bose SoundSport Headphones,1,99.99,01/24/19 22:05,"132 Jefferson St, Los Angeles, CA 90001" +158144,USB-C Charging Cable,1,11.95,01/10/19 10:51,"276 Cedar St, Portland, OR 97035" +158145,AAA Batteries (4-pack),2,2.99,01/27/19 21:14,"749 4th St, San Francisco, CA 94016" +158145,AAA Batteries (4-pack),1,2.99,01/27/19 21:14,"749 4th St, San Francisco, CA 94016" +158146,iPhone,1,700,01/14/19 16:03,"811 Ridge St, Seattle, WA 98101" +158147,Wired Headphones,1,11.99,01/30/19 13:06,"298 14th St, New York City, NY 10001" +158148,Bose SoundSport Headphones,1,99.99,01/13/19 08:33,"46 South St, Dallas, TX 75001" +158149,AAA Batteries (4-pack),2,2.99,01/08/19 21:19,"914 6th St, Seattle, WA 98101" +158150,Lightning Charging Cable,1,14.95,01/03/19 16:18,"822 Hill St, Seattle, WA 98101" +158151,USB-C Charging Cable,1,11.95,01/09/19 09:24,"804 Chestnut St, New York City, NY 10001" +158152,ThinkPad Laptop,1,999.99,01/20/19 12:18,"184 Chestnut St, Austin, TX 73301" +158153,Apple Airpods Headphones,1,150,01/22/19 11:01,"319 River St, San Francisco, CA 94016" +158154,AAA Batteries (4-pack),1,2.99,01/20/19 14:04,"123 River St, Atlanta, GA 30301" +158155,Wired Headphones,1,11.99,01/23/19 17:02,"654 11th St, Seattle, WA 98101" +158156,Lightning Charging Cable,1,14.95,01/20/19 09:56,"832 Spruce St, Atlanta, GA 30301" +158157,Lightning Charging Cable,1,14.95,01/26/19 13:28,"325 Cherry St, Boston, MA 02215" +158158,AAA Batteries (4-pack),1,2.99,01/19/19 12:06,"447 Sunset St, Dallas, TX 75001" +158159,Bose SoundSport Headphones,1,99.99,01/20/19 17:08,"586 Cherry St, Los Angeles, CA 90001" +158160,USB-C Charging Cable,1,11.95,01/24/19 14:23,"317 Chestnut St, Los Angeles, CA 90001" +158161,Lightning Charging Cable,1,14.95,01/16/19 23:34,"705 South St, Atlanta, GA 30301" +158162,Wired Headphones,1,11.99,01/11/19 19:10,"790 Cherry St, San Francisco, CA 94016" +158163,Wired Headphones,1,11.99,01/03/19 10:31,"931 Spruce St, Portland, ME 04101" +158164,AA Batteries (4-pack),3,3.84,01/13/19 20:52,"879 4th St, Boston, MA 02215" +158165,27in 4K Gaming Monitor,1,389.99,01/03/19 14:59,"380 1st St, San Francisco, CA 94016" +158166,AA Batteries (4-pack),1,3.84,01/04/19 18:03,"514 Dogwood St, New York City, NY 10001" +158167,Macbook Pro Laptop,1,1700,01/24/19 20:47,"874 Lakeview St, Los Angeles, CA 90001" +158168,USB-C Charging Cable,1,11.95,01/12/19 20:30,"729 Willow St, Dallas, TX 75001" +158169,AA Batteries (4-pack),4,3.84,01/08/19 12:07,"537 Pine St, Los Angeles, CA 90001" +158170,Wired Headphones,1,11.99,01/01/19 18:07,"840 Jefferson St, San Francisco, CA 94016" +158171,Apple Airpods Headphones,1,150,01/29/19 21:57,"305 Ridge St, San Francisco, CA 94016" +158172,Wired Headphones,1,11.99,01/14/19 21:16,"388 Walnut St, San Francisco, CA 94016" +158173,Wired Headphones,1,11.99,01/08/19 23:33,"821 Ridge St, Seattle, WA 98101" +158174,AA Batteries (4-pack),1,3.84,01/27/19 15:32,"817 Cherry St, Seattle, WA 98101" +158175,Lightning Charging Cable,1,14.95,01/05/19 13:25,"373 Walnut St, San Francisco, CA 94016" +158176,AA Batteries (4-pack),1,3.84,01/14/19 14:48,"607 7th St, Los Angeles, CA 90001" +158177,Flatscreen TV,1,300,01/26/19 02:53,"838 Sunset St, New York City, NY 10001" +158178,AA Batteries (4-pack),1,3.84,01/03/19 16:30,"800 Walnut St, Dallas, TX 75001" +158179,Google Phone,1,600,01/05/19 17:03,"302 Highland St, Los Angeles, CA 90001" +158180,Wired Headphones,1,11.99,01/11/19 15:12,"962 Adams St, San Francisco, CA 94016" +158181,USB-C Charging Cable,1,11.95,01/07/19 10:11,"341 Hickory St, Los Angeles, CA 90001" +158182,34in Ultrawide Monitor,1,379.99,01/02/19 21:07,"375 8th St, Dallas, TX 75001" +158183,27in 4K Gaming Monitor,1,389.99,01/31/19 19:10,"312 Forest St, Los Angeles, CA 90001" +158184,Lightning Charging Cable,1,14.95,01/21/19 13:51,"174 Jefferson St, Boston, MA 02215" +158185,Google Phone,1,600,01/16/19 21:00,"643 South St, Portland, OR 97035" +158186,AA Batteries (4-pack),3,3.84,01/16/19 20:49,"819 10th St, Boston, MA 02215" +158187,AA Batteries (4-pack),2,3.84,01/11/19 16:23,"717 River St, Los Angeles, CA 90001" +158188,27in 4K Gaming Monitor,1,389.99,01/27/19 13:15,"318 North St, Dallas, TX 75001" +158189,AAA Batteries (4-pack),1,2.99,01/27/19 14:24,"865 Hill St, Los Angeles, CA 90001" +158190,AA Batteries (4-pack),3,3.84,01/28/19 09:24,"590 Church St, Los Angeles, CA 90001" +158191,27in FHD Monitor,1,149.99,01/22/19 10:05,"393 Dogwood St, Atlanta, GA 30301" +158192,USB-C Charging Cable,1,11.95,01/10/19 17:39,"952 River St, Portland, OR 97035" +158193,iPhone,1,700,01/31/19 23:40,"634 10th St, San Francisco, CA 94016" +158193,Lightning Charging Cable,1,14.95,01/31/19 23:40,"634 10th St, San Francisco, CA 94016" +158194,AAA Batteries (4-pack),3,2.99,01/02/19 23:57,"664 Jackson St, Los Angeles, CA 90001" +158195,Google Phone,1,600,01/03/19 10:29,"548 Johnson St, Portland, OR 97035" +158195,USB-C Charging Cable,2,11.95,01/03/19 10:29,"548 Johnson St, Portland, OR 97035" +158196,27in 4K Gaming Monitor,1,389.99,01/12/19 22:52,"765 Pine St, San Francisco, CA 94016" +158197,LG Dryer,1,600.0,01/25/19 14:21,"554 Jackson St, San Francisco, CA 94016" +158198,Apple Airpods Headphones,1,150,01/25/19 11:39,"945 Center St, San Francisco, CA 94016" +158199,Bose SoundSport Headphones,1,99.99,01/13/19 17:09,"566 12th St, Austin, TX 73301" +158200,27in 4K Gaming Monitor,1,389.99,01/15/19 21:24,"25 Park St, Dallas, TX 75001" +158201,AAA Batteries (4-pack),1,2.99,01/27/19 20:45,"763 Highland St, Boston, MA 02215" +158202,AA Batteries (4-pack),2,3.84,01/14/19 13:21,"316 12th St, Atlanta, GA 30301" +158203,Wired Headphones,1,11.99,01/04/19 11:00,"453 Madison St, Los Angeles, CA 90001" +158204,Wired Headphones,1,11.99,01/28/19 23:25,"210 Jefferson St, San Francisco, CA 94016" +158205,AA Batteries (4-pack),1,3.84,01/06/19 14:33,"604 Spruce St, San Francisco, CA 94016" +158206,Lightning Charging Cable,1,14.95,01/09/19 12:28,"834 Spruce St, Boston, MA 02215" +158207,Wired Headphones,1,11.99,01/12/19 16:01,"372 12th St, San Francisco, CA 94016" +158208,AAA Batteries (4-pack),1,2.99,01/13/19 12:55,"83 West St, Los Angeles, CA 90001" +158209,Vareebadd Phone,1,400,01/31/19 12:53,"206 Cedar St, San Francisco, CA 94016" +158210,Bose SoundSport Headphones,1,99.99,01/04/19 17:50,"651 14th St, San Francisco, CA 94016" +158211,Bose SoundSport Headphones,1,99.99,01/27/19 10:48,"232 Elm St, Atlanta, GA 30301" +158212,Apple Airpods Headphones,1,150,01/24/19 12:52,"609 Johnson St, Portland, ME 04101" +158213,Google Phone,1,600,01/13/19 17:46,"51 Hill St, San Francisco, CA 94016" +158214,USB-C Charging Cable,2,11.95,01/25/19 20:59,"479 Washington St, San Francisco, CA 94016" +158215,Wired Headphones,1,11.99,01/22/19 15:00,"932 South St, San Francisco, CA 94016" +158216,Lightning Charging Cable,1,14.95,01/09/19 17:44,"384 South St, Dallas, TX 75001" +158217,AAA Batteries (4-pack),1,2.99,01/11/19 14:24,"752 7th St, Dallas, TX 75001" +158218,AAA Batteries (4-pack),1,2.99,01/02/19 10:22,"896 Elm St, San Francisco, CA 94016" +158219,USB-C Charging Cable,2,11.95,01/22/19 21:55,"408 Highland St, San Francisco, CA 94016" +158220,27in 4K Gaming Monitor,1,389.99,01/16/19 11:02,"749 Jefferson St, Boston, MA 02215" +158221,USB-C Charging Cable,1,11.95,01/31/19 13:54,"735 Jackson St, New York City, NY 10001" +158222,AA Batteries (4-pack),1,3.84,01/18/19 12:31,"585 1st St, Portland, OR 97035" +158223,34in Ultrawide Monitor,1,379.99,01/29/19 15:18,"688 Johnson St, Boston, MA 02215" +158224,USB-C Charging Cable,1,11.95,01/23/19 16:55,"350 Willow St, Los Angeles, CA 90001" +158225,AA Batteries (4-pack),1,3.84,01/25/19 16:22,"631 7th St, Atlanta, GA 30301" +158226,27in FHD Monitor,1,149.99,01/25/19 22:20,"63 4th St, San Francisco, CA 94016" +158227,27in 4K Gaming Monitor,1,389.99,01/06/19 15:00,"851 Johnson St, Atlanta, GA 30301" +158228,Apple Airpods Headphones,1,150,01/10/19 18:49,"807 Dogwood St, Seattle, WA 98101" +158229,AAA Batteries (4-pack),1,2.99,01/13/19 14:02,"520 8th St, Boston, MA 02215" +158230,27in 4K Gaming Monitor,1,389.99,01/02/19 20:01,"296 River St, Los Angeles, CA 90001" +158231,34in Ultrawide Monitor,1,379.99,01/29/19 06:04,"73 4th St, New York City, NY 10001" +158232,AA Batteries (4-pack),1,3.84,01/09/19 21:30,"55 Meadow St, Los Angeles, CA 90001" +158233,Bose SoundSport Headphones,1,99.99,01/06/19 16:32,"683 13th St, San Francisco, CA 94016" +158234,Apple Airpods Headphones,1,150,01/13/19 11:36,"809 Adams St, Atlanta, GA 30301" +158235,AAA Batteries (4-pack),1,2.99,01/04/19 02:54,"597 Hickory St, New York City, NY 10001" +158236,AAA Batteries (4-pack),2,2.99,01/05/19 08:05,"345 Main St, San Francisco, CA 94016" +158237,Bose SoundSport Headphones,1,99.99,01/13/19 16:25,"600 Meadow St, San Francisco, CA 94016" +158238,Macbook Pro Laptop,1,1700,01/21/19 20:24,"272 12th St, Portland, OR 97035" +158239,USB-C Charging Cable,1,11.95,01/01/19 17:00,"921 North St, New York City, NY 10001" +158240,Apple Airpods Headphones,1,150,01/24/19 19:09,"334 Washington St, San Francisco, CA 94016" +158241,AA Batteries (4-pack),2,3.84,01/08/19 08:44,"430 10th St, San Francisco, CA 94016" +158242,Wired Headphones,1,11.99,01/31/19 20:59,"162 Jackson St, Boston, MA 02215" +158243,AAA Batteries (4-pack),1,2.99,01/07/19 14:44,"26 Adams St, Los Angeles, CA 90001" +158244,iPhone,1,700,01/26/19 13:03,"440 4th St, Austin, TX 73301" +158245,20in Monitor,1,109.99,01/10/19 13:28,"795 Pine St, Portland, OR 97035" +158246,Flatscreen TV,1,300,01/26/19 14:32,"50 Adams St, Dallas, TX 75001" +158246,AAA Batteries (4-pack),1,2.99,01/26/19 14:32,"50 Adams St, Dallas, TX 75001" +158247,AAA Batteries (4-pack),1,2.99,01/18/19 23:45,"618 13th St, Portland, OR 97035" +158248,Macbook Pro Laptop,1,1700,01/07/19 08:38,"303 Pine St, Austin, TX 73301" +158249,AAA Batteries (4-pack),2,2.99,01/13/19 14:48,"227 River St, Austin, TX 73301" +158249,Wired Headphones,2,11.99,01/13/19 14:48,"227 River St, Austin, TX 73301" +158250,AAA Batteries (4-pack),2,2.99,01/27/19 21:16,"447 Cedar St, Seattle, WA 98101" +158251,USB-C Charging Cable,1,11.95,01/29/19 17:50,"403 7th St, Seattle, WA 98101" +158252,Wired Headphones,1,11.99,01/29/19 16:28,"771 11th St, Seattle, WA 98101" +158253,LG Dryer,1,600.0,01/14/19 21:53,"348 Madison St, Portland, OR 97035" +158254,USB-C Charging Cable,1,11.95,01/05/19 04:15,"965 West St, Atlanta, GA 30301" +158255,Wired Headphones,1,11.99,01/04/19 12:02,"876 Lakeview St, Atlanta, GA 30301" +158256,Lightning Charging Cable,1,14.95,01/28/19 10:02,"334 Adams St, Los Angeles, CA 90001" +158257,USB-C Charging Cable,1,11.95,01/21/19 15:21,"20 2nd St, San Francisco, CA 94016" +158258,27in 4K Gaming Monitor,1,389.99,01/06/19 15:36,"766 Center St, New York City, NY 10001" +158259,Apple Airpods Headphones,1,150,01/27/19 19:50,"725 Spruce St, New York City, NY 10001" +158260,USB-C Charging Cable,1,11.95,01/07/19 17:31,"673 Lake St, Los Angeles, CA 90001" +158261,USB-C Charging Cable,1,11.95,01/08/19 20:43,"689 1st St, San Francisco, CA 94016" +158262,Wired Headphones,2,11.99,01/18/19 14:02,"249 Chestnut St, Austin, TX 73301" +158263,Wired Headphones,1,11.99,01/05/19 14:09,"207 Johnson St, Boston, MA 02215" +158264,34in Ultrawide Monitor,1,379.99,01/15/19 23:10,"18 Madison St, San Francisco, CA 94016" +158265,34in Ultrawide Monitor,1,379.99,01/25/19 12:46,"867 Maple St, New York City, NY 10001" +158266,27in FHD Monitor,1,149.99,01/28/19 10:16,"841 2nd St, Los Angeles, CA 90001" +158267,Flatscreen TV,1,300,01/04/19 23:24,"288 Spruce St, San Francisco, CA 94016" +158268,27in 4K Gaming Monitor,1,389.99,01/22/19 20:16,"264 12th St, New York City, NY 10001" +158269,Apple Airpods Headphones,1,150,01/23/19 10:28,"990 7th St, Portland, OR 97035" +158270,Apple Airpods Headphones,1,150,01/18/19 20:58,"5 Washington St, Los Angeles, CA 90001" +158271,Apple Airpods Headphones,1,150,01/03/19 12:33,"282 2nd St, Los Angeles, CA 90001" +158272,Wired Headphones,1,11.99,01/25/19 12:50,"781 Walnut St, San Francisco, CA 94016" +158273,Apple Airpods Headphones,1,150,01/30/19 09:11,"294 Elm St, Austin, TX 73301" +158274,Lightning Charging Cable,1,14.95,01/02/19 15:07,"723 Jackson St, New York City, NY 10001" +158275,Apple Airpods Headphones,1,150,01/07/19 09:19,"51 Jefferson St, San Francisco, CA 94016" +158276,LG Dryer,1,600.0,01/22/19 11:15,"209 Pine St, Dallas, TX 75001" +158277,Macbook Pro Laptop,1,1700,01/30/19 13:17,"853 Park St, San Francisco, CA 94016" +158278,USB-C Charging Cable,1,11.95,01/01/19 12:42,"882 8th St, San Francisco, CA 94016" +158279,AAA Batteries (4-pack),1,2.99,01/05/19 09:33,"965 Chestnut St, San Francisco, CA 94016" +158280,Lightning Charging Cable,1,14.95,01/06/19 13:03,"652 Ridge St, Seattle, WA 98101" +158281,USB-C Charging Cable,1,11.95,01/31/19 08:29,"298 Cherry St, Dallas, TX 75001" +158282,27in FHD Monitor,1,149.99,01/22/19 11:55,"893 West St, Atlanta, GA 30301" +158283,34in Ultrawide Monitor,1,379.99,01/25/19 06:20,"147 Jackson St, Los Angeles, CA 90001" +158284,USB-C Charging Cable,1,11.95,01/30/19 08:30,"648 13th St, Boston, MA 02215" +158285,27in FHD Monitor,1,149.99,01/12/19 09:37,"454 Dogwood St, San Francisco, CA 94016" +158286,Wired Headphones,1,11.99,01/05/19 20:02,"233 Washington St, New York City, NY 10001" +158287,AAA Batteries (4-pack),1,2.99,01/05/19 11:57,"16 Hill St, Portland, OR 97035" +158288,Bose SoundSport Headphones,1,99.99,01/29/19 09:22,"171 Elm St, San Francisco, CA 94016" +158289,27in 4K Gaming Monitor,1,389.99,01/07/19 15:32,"203 Highland St, Los Angeles, CA 90001" +158290,Lightning Charging Cable,1,14.95,01/12/19 14:57,"348 1st St, San Francisco, CA 94016" +158291,Wired Headphones,1,11.99,01/24/19 12:42,"50 Center St, New York City, NY 10001" +158292,Bose SoundSport Headphones,1,99.99,01/02/19 05:35,"41 Main St, San Francisco, CA 94016" +158293,Bose SoundSport Headphones,1,99.99,01/16/19 19:45,"864 Walnut St, New York City, NY 10001" +158294,AA Batteries (4-pack),1,3.84,01/24/19 12:04,"425 Spruce St, New York City, NY 10001" +158295,Vareebadd Phone,1,400,01/25/19 23:40,"188 Willow St, Los Angeles, CA 90001" +158296,20in Monitor,1,109.99,01/18/19 17:43,"389 North St, Los Angeles, CA 90001" +158297,Wired Headphones,1,11.99,01/10/19 18:04,"640 5th St, Portland, OR 97035" +158298,USB-C Charging Cable,1,11.95,01/25/19 11:23,"569 Wilson St, Portland, ME 04101" +158299,USB-C Charging Cable,1,11.95,01/16/19 08:11,"517 Madison St, San Francisco, CA 94016" +158299,27in FHD Monitor,2,149.99,01/16/19 08:11,"517 Madison St, San Francisco, CA 94016" +158300,AA Batteries (4-pack),2,3.84,01/06/19 13:52,"751 River St, Atlanta, GA 30301" +158301,AAA Batteries (4-pack),1,2.99,01/10/19 16:09,"818 Jackson St, Los Angeles, CA 90001" +158302,ThinkPad Laptop,1,999.99,01/02/19 21:02,"637 Jackson St, San Francisco, CA 94016" +158303,27in FHD Monitor,1,149.99,01/31/19 12:33,"476 Sunset St, Portland, OR 97035" +,,,,, +158304,AAA Batteries (4-pack),2,2.99,01/04/19 11:48,"130 Jefferson St, San Francisco, CA 94016" +158305,AA Batteries (4-pack),1,3.84,01/22/19 17:23,"357 Hickory St, Seattle, WA 98101" +158306,AAA Batteries (4-pack),5,2.99,01/02/19 10:33,"683 14th St, New York City, NY 10001" +158307,34in Ultrawide Monitor,1,379.99,01/02/19 15:08,"321 Elm St, Dallas, TX 75001" +158308,Apple Airpods Headphones,1,150,01/06/19 22:59,"13 9th St, Los Angeles, CA 90001" +158309,Google Phone,1,600,01/05/19 13:40,"3 14th St, Atlanta, GA 30301" +158310,20in Monitor,1,109.99,01/23/19 22:15,"45 Johnson St, Los Angeles, CA 90001" +158311,27in 4K Gaming Monitor,1,389.99,01/16/19 18:20,"778 Elm St, Los Angeles, CA 90001" +158312,Macbook Pro Laptop,1,1700,01/11/19 13:45,"102 Willow St, Portland, OR 97035" +158313,AAA Batteries (4-pack),1,2.99,01/11/19 22:25,"884 Lincoln St, Austin, TX 73301" +158314,27in 4K Gaming Monitor,1,389.99,01/26/19 06:56,"775 Hickory St, Portland, OR 97035" +158315,20in Monitor,1,109.99,01/21/19 09:54,"215 5th St, Austin, TX 73301" +158316,Lightning Charging Cable,1,14.95,01/24/19 18:30,"404 South St, Austin, TX 73301" +158317,AAA Batteries (4-pack),1,2.99,01/07/19 10:55,"36 Meadow St, Boston, MA 02215" +158318,Wired Headphones,1,11.99,01/10/19 10:34,"114 7th St, Austin, TX 73301" +158319,Apple Airpods Headphones,1,150,01/13/19 22:16,"75 Hill St, Seattle, WA 98101" +158320,Wired Headphones,1,11.99,01/15/19 19:16,"245 South St, Atlanta, GA 30301" +158321,27in 4K Gaming Monitor,1,389.99,01/01/19 08:25,"809 Hill St, Atlanta, GA 30301" +158322,AAA Batteries (4-pack),1,2.99,01/20/19 00:08,"583 Lakeview St, Los Angeles, CA 90001" +158323,AAA Batteries (4-pack),1,2.99,01/24/19 12:30,"752 Maple St, Los Angeles, CA 90001" +158323,Wired Headphones,2,11.99,01/24/19 12:30,"752 Maple St, Los Angeles, CA 90001" +158324,Apple Airpods Headphones,1,150,01/18/19 15:07,"459 Center St, Dallas, TX 75001" +158325,AAA Batteries (4-pack),2,2.99,01/27/19 06:48,"161 7th St, Los Angeles, CA 90001" +158326,USB-C Charging Cable,1,11.95,01/28/19 21:02,"675 Willow St, New York City, NY 10001" +158327,USB-C Charging Cable,1,11.95,01/15/19 20:55,"281 Meadow St, San Francisco, CA 94016" +158328,USB-C Charging Cable,1,11.95,01/20/19 09:25,"497 Pine St, Dallas, TX 75001" +158329,AA Batteries (4-pack),1,3.84,01/26/19 08:43,"849 Lincoln St, New York City, NY 10001" +158330,USB-C Charging Cable,1,11.95,01/02/19 15:15,"358 Johnson St, San Francisco, CA 94016" +158331,AAA Batteries (4-pack),3,2.99,01/22/19 11:44,"420 11th St, Los Angeles, CA 90001" +158332,27in 4K Gaming Monitor,1,389.99,01/15/19 10:21,"154 Jackson St, Dallas, TX 75001" +158333,27in FHD Monitor,1,149.99,01/18/19 13:48,"483 12th St, San Francisco, CA 94016" +158334,34in Ultrawide Monitor,1,379.99,01/22/19 08:33,"404 Cherry St, San Francisco, CA 94016" +158335,Macbook Pro Laptop,1,1700,01/19/19 01:40,"69 Walnut St, New York City, NY 10001" +158336,Lightning Charging Cable,1,14.95,01/28/19 17:52,"811 Cherry St, Dallas, TX 75001" +158337,AA Batteries (4-pack),3,3.84,01/14/19 13:15,"31 Hill St, Atlanta, GA 30301" +158338,Bose SoundSport Headphones,1,99.99,01/03/19 12:09,"504 West St, San Francisco, CA 94016" +158339,AA Batteries (4-pack),1,3.84,01/14/19 20:32,"61 Main St, Dallas, TX 75001" +158340,27in 4K Gaming Monitor,1,389.99,01/04/19 18:37,"176 Johnson St, San Francisco, CA 94016" +158341,USB-C Charging Cable,1,11.95,01/10/19 18:36,"334 Jackson St, Seattle, WA 98101" +158342,34in Ultrawide Monitor,1,379.99,01/22/19 13:34,"689 Park St, Los Angeles, CA 90001" +158343,Apple Airpods Headphones,1,150,01/02/19 12:41,"61 Forest St, San Francisco, CA 94016" +158344,Wired Headphones,1,11.99,01/10/19 08:24,"445 2nd St, New York City, NY 10001" +158345,USB-C Charging Cable,1,11.95,01/08/19 10:18,"349 Lake St, San Francisco, CA 94016" +158346,Wired Headphones,1,11.99,01/04/19 21:25,"422 Dogwood St, San Francisco, CA 94016" +158347,27in FHD Monitor,1,149.99,01/04/19 13:02,"942 Spruce St, San Francisco, CA 94016" +158348,Wired Headphones,1,11.99,01/28/19 17:47,"236 Dogwood St, Atlanta, GA 30301" +158349,AA Batteries (4-pack),2,3.84,01/25/19 19:56,"672 Hickory St, San Francisco, CA 94016" +158350,Lightning Charging Cable,1,14.95,01/27/19 19:38,"33 11th St, Portland, OR 97035" +158351,USB-C Charging Cable,2,11.95,01/09/19 22:25,"329 Dogwood St, Austin, TX 73301" +158352,AAA Batteries (4-pack),1,2.99,01/01/19 15:36,"906 Chestnut St, Boston, MA 02215" +158353,Bose SoundSport Headphones,1,99.99,01/24/19 17:41,"554 Pine St, Portland, OR 97035" +158354,iPhone,1,700,01/18/19 20:50,"811 Highland St, Los Angeles, CA 90001" +158354,Wired Headphones,1,11.99,01/18/19 20:50,"811 Highland St, Los Angeles, CA 90001" +158355,Google Phone,1,600,01/19/19 17:36,"274 River St, Los Angeles, CA 90001" +158356,AA Batteries (4-pack),3,3.84,01/23/19 14:39,"572 Church St, Atlanta, GA 30301" +158357,Wired Headphones,1,11.99,01/03/19 12:38,"430 Jackson St, Boston, MA 02215" +158358,AA Batteries (4-pack),1,3.84,01/08/19 19:30,"888 Cedar St, Seattle, WA 98101" +158359,Apple Airpods Headphones,1,150,01/29/19 17:07,"690 Spruce St, Seattle, WA 98101" +158360,iPhone,1,700,01/01/19 22:35,"639 Elm St, Austin, TX 73301" +158361,Google Phone,1,600,01/06/19 13:09,"888 Park St, Seattle, WA 98101" +158362,AAA Batteries (4-pack),4,2.99,01/25/19 14:12,"216 1st St, San Francisco, CA 94016" +158363,Bose SoundSport Headphones,1,99.99,01/09/19 13:14,"200 Center St, New York City, NY 10001" +158364,34in Ultrawide Monitor,1,379.99,01/12/19 08:45,"974 South St, Los Angeles, CA 90001" +158365,AAA Batteries (4-pack),1,2.99,01/14/19 16:25,"442 Main St, Dallas, TX 75001" +158366,iPhone,1,700,01/12/19 20:41,"530 14th St, Boston, MA 02215" +158366,Lightning Charging Cable,1,14.95,01/12/19 20:41,"530 14th St, Boston, MA 02215" +158367,Macbook Pro Laptop,1,1700,01/27/19 13:20,"465 6th St, Boston, MA 02215" +158368,20in Monitor,1,109.99,01/21/19 15:13,"825 Spruce St, Los Angeles, CA 90001" +158369,20in Monitor,1,109.99,01/19/19 22:04,"68 Center St, Atlanta, GA 30301" +158370,AA Batteries (4-pack),1,3.84,01/11/19 20:42,"426 Spruce St, Austin, TX 73301" +158371,Apple Airpods Headphones,1,150,01/19/19 20:42,"841 South St, Boston, MA 02215" +158372,Lightning Charging Cable,1,14.95,01/30/19 02:07,"180 5th St, Boston, MA 02215" +158373,AAA Batteries (4-pack),2,2.99,01/30/19 10:48,"608 Lake St, New York City, NY 10001" +158374,Wired Headphones,1,11.99,01/14/19 15:37,"670 Lincoln St, Los Angeles, CA 90001" +158375,iPhone,1,700,01/10/19 15:10,"415 4th St, Portland, OR 97035" +158376,AA Batteries (4-pack),1,3.84,01/05/19 14:13,"258 Lakeview St, Austin, TX 73301" +158377,Bose SoundSport Headphones,1,99.99,01/06/19 16:16,"509 14th St, Austin, TX 73301" +158378,AAA Batteries (4-pack),1,2.99,01/06/19 21:13,"83 14th St, San Francisco, CA 94016" +158379,USB-C Charging Cable,1,11.95,01/01/19 09:52,"440 14th St, New York City, NY 10001" +158380,USB-C Charging Cable,1,11.95,01/23/19 20:10,"4 Park St, Los Angeles, CA 90001" +158381,27in 4K Gaming Monitor,1,389.99,01/31/19 07:24,"869 West St, San Francisco, CA 94016" +158382,Wired Headphones,1,11.99,01/30/19 18:35,"342 Highland St, Dallas, TX 75001" +158383,AAA Batteries (4-pack),1,2.99,01/05/19 14:06,"834 7th St, Atlanta, GA 30301" +158384,iPhone,1,700,01/09/19 12:41,"679 Lakeview St, Atlanta, GA 30301" +158385,AA Batteries (4-pack),3,3.84,01/27/19 08:00,"303 Lake St, San Francisco, CA 94016" +158386,AA Batteries (4-pack),1,3.84,01/31/19 10:41,"611 Forest St, New York City, NY 10001" +158387,AA Batteries (4-pack),1,3.84,01/09/19 15:24,"378 13th St, Atlanta, GA 30301" +158388,Google Phone,1,600,01/29/19 18:16,"995 11th St, San Francisco, CA 94016" +158389,AA Batteries (4-pack),1,3.84,01/21/19 19:43,"939 11th St, Seattle, WA 98101" +158390,ThinkPad Laptop,1,999.99,01/18/19 10:27,"366 11th St, Seattle, WA 98101" +158391,34in Ultrawide Monitor,1,379.99,01/22/19 19:50,"68 Center St, Los Angeles, CA 90001" +158392,27in FHD Monitor,1,149.99,01/24/19 18:30,"893 Forest St, Los Angeles, CA 90001" +158393,27in 4K Gaming Monitor,1,389.99,01/21/19 12:56,"822 Ridge St, San Francisco, CA 94016" +158394,AA Batteries (4-pack),1,3.84,01/11/19 20:36,"915 Willow St, New York City, NY 10001" +158395,Apple Airpods Headphones,1,150,01/25/19 11:55,"134 9th St, Atlanta, GA 30301" +158396,AA Batteries (4-pack),2,3.84,01/10/19 12:33,"951 Dogwood St, Dallas, TX 75001" +158397,Google Phone,1,600,01/29/19 10:58,"579 Madison St, Atlanta, GA 30301" +158397,Wired Headphones,1,11.99,01/29/19 10:58,"579 Madison St, Atlanta, GA 30301" +158398,AA Batteries (4-pack),1,3.84,01/01/19 22:35,"592 Madison St, Atlanta, GA 30301" +158398,USB-C Charging Cable,2,11.95,01/01/19 22:35,"592 Madison St, Atlanta, GA 30301" +158399,27in FHD Monitor,1,149.99,01/26/19 11:18,"822 1st St, Los Angeles, CA 90001" +158400,27in FHD Monitor,1,149.99,01/20/19 12:02,"167 Meadow St, Boston, MA 02215" +158401,USB-C Charging Cable,2,11.95,01/01/19 09:52,"920 Jefferson St, New York City, NY 10001" +158402,Macbook Pro Laptop,1,1700,01/15/19 21:53,"33 9th St, Austin, TX 73301" +158403,Bose SoundSport Headphones,1,99.99,01/31/19 16:15,"273 Cedar St, Los Angeles, CA 90001" +158404,34in Ultrawide Monitor,1,379.99,01/19/19 11:58,"262 Spruce St, Los Angeles, CA 90001" +158405,ThinkPad Laptop,1,999.99,01/20/19 14:37,"996 Maple St, San Francisco, CA 94016" +158406,Lightning Charging Cable,1,14.95,01/18/19 19:19,"29 Lake St, Boston, MA 02215" +158407,Wired Headphones,1,11.99,01/15/19 09:51,"875 5th St, Seattle, WA 98101" +158408,Wired Headphones,1,11.99,01/01/19 21:57,"891 Main St, Los Angeles, CA 90001" +158409,AAA Batteries (4-pack),4,2.99,01/12/19 21:11,"698 Jackson St, Boston, MA 02215" +158410,Lightning Charging Cable,1,14.95,01/16/19 21:25,"235 Hill St, San Francisco, CA 94016" +158411,Apple Airpods Headphones,1,150,01/23/19 18:51,"214 4th St, Dallas, TX 75001" +158412,AAA Batteries (4-pack),1,2.99,01/29/19 10:22,"107 10th St, Los Angeles, CA 90001" +158413,LG Washing Machine,1,600.0,01/20/19 12:40,"519 7th St, San Francisco, CA 94016" +158414,AAA Batteries (4-pack),2,2.99,01/17/19 20:45,"801 Maple St, Portland, ME 04101" +158415,34in Ultrawide Monitor,1,379.99,01/23/19 19:01,"560 Lincoln St, Los Angeles, CA 90001" +158416,Apple Airpods Headphones,1,150,01/10/19 07:18,"13 Center St, Dallas, TX 75001" +158417,iPhone,1,700,01/07/19 19:45,"337 Johnson St, San Francisco, CA 94016" +158418,Bose SoundSport Headphones,1,99.99,01/09/19 22:37,"3 South St, Seattle, WA 98101" +158419,Wired Headphones,1,11.99,01/07/19 01:26,"132 Spruce St, Atlanta, GA 30301" +158420,27in 4K Gaming Monitor,1,389.99,01/18/19 11:52,"138 Dogwood St, Boston, MA 02215" +158421,Apple Airpods Headphones,1,150,01/13/19 13:18,"834 Jackson St, Austin, TX 73301" +158422,AA Batteries (4-pack),2,3.84,01/20/19 11:53,"666 Cedar St, New York City, NY 10001" +158423,AA Batteries (4-pack),2,3.84,01/07/19 22:47,"710 Washington St, San Francisco, CA 94016" +158424,34in Ultrawide Monitor,1,379.99,01/11/19 10:57,"572 Pine St, Los Angeles, CA 90001" +158425,AAA Batteries (4-pack),1,2.99,01/14/19 16:42,"753 1st St, Austin, TX 73301" +158426,Wired Headphones,1,11.99,01/26/19 18:37,"492 North St, Boston, MA 02215" +158427,Bose SoundSport Headphones,1,99.99,01/25/19 17:04,"648 Meadow St, Los Angeles, CA 90001" +158428,USB-C Charging Cable,2,11.95,01/09/19 11:09,"43 6th St, Atlanta, GA 30301" +158429,Flatscreen TV,1,300,01/05/19 13:17,"166 River St, Boston, MA 02215" +158430,Wired Headphones,1,11.99,01/06/19 12:00,"135 Lakeview St, Boston, MA 02215" +158431,AAA Batteries (4-pack),1,2.99,01/21/19 16:17,"535 Washington St, Los Angeles, CA 90001" +158432,20in Monitor,1,109.99,01/10/19 21:27,"736 Pine St, Dallas, TX 75001" +158433,Macbook Pro Laptop,1,1700,01/02/19 09:59,"428 Jackson St, New York City, NY 10001" +158434,Lightning Charging Cable,1,14.95,01/15/19 12:19,"538 South St, San Francisco, CA 94016" +158435,AA Batteries (4-pack),1,3.84,01/18/19 17:44,"977 Chestnut St, San Francisco, CA 94016" +158436,Macbook Pro Laptop,1,1700,01/18/19 11:11,"706 Forest St, Seattle, WA 98101" +158437,USB-C Charging Cable,1,11.95,01/28/19 02:13,"883 River St, Atlanta, GA 30301" +158438,34in Ultrawide Monitor,1,379.99,01/05/19 13:35,"472 Chestnut St, San Francisco, CA 94016" +158439,AAA Batteries (4-pack),1,2.99,01/15/19 18:47,"258 Lake St, Portland, OR 97035" +158440,Lightning Charging Cable,1,14.95,01/09/19 13:14,"314 Park St, Boston, MA 02215" +158441,USB-C Charging Cable,1,11.95,01/08/19 16:16,"480 Pine St, New York City, NY 10001" +158442,Apple Airpods Headphones,1,150,01/12/19 11:42,"752 Maple St, Atlanta, GA 30301" +158443,Lightning Charging Cable,1,14.95,01/03/19 13:43,"671 9th St, Los Angeles, CA 90001" +158444,Lightning Charging Cable,2,14.95,01/19/19 16:06,"728 Pine St, Los Angeles, CA 90001" +158445,AAA Batteries (4-pack),1,2.99,01/26/19 15:42,"595 Madison St, Boston, MA 02215" +158446,Lightning Charging Cable,1,14.95,01/22/19 10:07,"202 Chestnut St, San Francisco, CA 94016" +158447,AA Batteries (4-pack),1,3.84,01/21/19 15:04,"670 Pine St, Boston, MA 02215" +158448,Apple Airpods Headphones,1,150,01/13/19 19:20,"516 River St, Los Angeles, CA 90001" +158449,USB-C Charging Cable,1,11.95,01/04/19 14:36,"172 Hill St, Seattle, WA 98101" +158450,34in Ultrawide Monitor,1,379.99,01/13/19 13:58,"101 9th St, Atlanta, GA 30301" +158451,Lightning Charging Cable,1,14.95,01/15/19 13:33,"581 Highland St, Los Angeles, CA 90001" +158452,Bose SoundSport Headphones,1,99.99,01/26/19 15:54,"931 South St, San Francisco, CA 94016" +158453,Macbook Pro Laptop,1,1700,01/10/19 12:19,"346 North St, New York City, NY 10001" +158454,USB-C Charging Cable,1,11.95,01/25/19 18:31,"468 4th St, San Francisco, CA 94016" +158455,Vareebadd Phone,1,400,01/29/19 07:37,"681 7th St, Austin, TX 73301" +158456,Apple Airpods Headphones,1,150,02/01/19 03:44,"745 13th St, New York City, NY 10001" +158457,Lightning Charging Cable,1,14.95,01/25/19 00:04,"623 Jackson St, Boston, MA 02215" +158458,Macbook Pro Laptop,1,1700,01/21/19 22:37,"109 Highland St, Atlanta, GA 30301" +158459,34in Ultrawide Monitor,1,379.99,01/12/19 13:52,"947 Meadow St, Atlanta, GA 30301" +158460,Lightning Charging Cable,1,14.95,01/17/19 00:42,"616 14th St, Los Angeles, CA 90001" +158461,Vareebadd Phone,1,400,01/09/19 20:05,"800 1st St, New York City, NY 10001" +158462,Lightning Charging Cable,1,14.95,01/08/19 10:14,"312 Cedar St, Atlanta, GA 30301" +158463,27in FHD Monitor,1,149.99,01/05/19 18:56,"467 Chestnut St, San Francisco, CA 94016" +158464,AA Batteries (4-pack),2,3.84,01/13/19 20:57,"560 Sunset St, Los Angeles, CA 90001" +158465,iPhone,1,700,01/05/19 13:40,"754 Cherry St, San Francisco, CA 94016" +158466,Flatscreen TV,1,300,01/02/19 16:38,"583 13th St, New York City, NY 10001" +158467,Bose SoundSport Headphones,1,99.99,01/15/19 15:13,"210 Pine St, San Francisco, CA 94016" +158468,Wired Headphones,1,11.99,01/17/19 21:44,"330 Adams St, Austin, TX 73301" +158469,20in Monitor,1,109.99,01/27/19 12:55,"734 Hickory St, Atlanta, GA 30301" +158470,AA Batteries (4-pack),1,3.84,01/07/19 19:48,"688 8th St, Los Angeles, CA 90001" +158471,USB-C Charging Cable,1,11.95,01/11/19 10:17,"928 7th St, Atlanta, GA 30301" +158472,AA Batteries (4-pack),1,3.84,01/25/19 08:30,"311 Johnson St, Atlanta, GA 30301" +158473,Apple Airpods Headphones,1,150,01/02/19 21:06,"352 Center St, San Francisco, CA 94016" +158474,Lightning Charging Cable,1,14.95,01/30/19 11:01,"141 West St, Dallas, TX 75001" +158475,AAA Batteries (4-pack),2,2.99,01/25/19 20:13,"850 Center St, San Francisco, CA 94016" +158476,Apple Airpods Headphones,1,150,01/19/19 15:18,"245 Johnson St, Boston, MA 02215" +158477,AA Batteries (4-pack),1,3.84,01/13/19 09:09,"578 Cedar St, Dallas, TX 75001" +158478,Flatscreen TV,1,300,01/13/19 01:22,"775 13th St, New York City, NY 10001" +158479,Google Phone,1,600,01/06/19 07:41,"464 9th St, Seattle, WA 98101" +158479,USB-C Charging Cable,1,11.95,01/06/19 07:41,"464 9th St, Seattle, WA 98101" +158479,Bose SoundSport Headphones,1,99.99,01/06/19 07:41,"464 9th St, Seattle, WA 98101" +158480,Google Phone,1,600,01/19/19 20:40,"945 Madison St, Los Angeles, CA 90001" +158481,AAA Batteries (4-pack),1,2.99,01/04/19 21:15,"499 10th St, Austin, TX 73301" +158482,AA Batteries (4-pack),2,3.84,01/08/19 13:17,"647 Washington St, Dallas, TX 75001" +158483,AAA Batteries (4-pack),1,2.99,01/03/19 21:13,"539 Lakeview St, San Francisco, CA 94016" +158484,Lightning Charging Cable,1,14.95,01/22/19 12:14,"662 7th St, San Francisco, CA 94016" +158485,AA Batteries (4-pack),1,3.84,01/14/19 16:43,"954 2nd St, Los Angeles, CA 90001" +158486,Lightning Charging Cable,1,14.95,01/09/19 17:48,"44 Chestnut St, Los Angeles, CA 90001" +158487,USB-C Charging Cable,1,11.95,01/15/19 14:09,"778 Spruce St, Seattle, WA 98101" +158488,Lightning Charging Cable,1,14.95,01/24/19 22:58,"10 River St, Austin, TX 73301" +158489,Wired Headphones,2,11.99,01/05/19 20:46,"358 Lincoln St, San Francisco, CA 94016" +158490,27in 4K Gaming Monitor,1,389.99,01/09/19 20:03,"619 6th St, New York City, NY 10001" +158491,Apple Airpods Headphones,1,150,01/17/19 15:49,"772 Willow St, Atlanta, GA 30301" +158492,Bose SoundSport Headphones,1,99.99,01/24/19 16:58,"483 Wilson St, San Francisco, CA 94016" +158493,USB-C Charging Cable,1,11.95,01/12/19 14:30,"930 Highland St, New York City, NY 10001" +158494,27in FHD Monitor,1,149.99,01/31/19 00:10,"791 Park St, Dallas, TX 75001" +158495,Flatscreen TV,1,300,01/28/19 13:22,"696 West St, Boston, MA 02215" +158496,34in Ultrawide Monitor,1,379.99,01/08/19 21:02,"531 Sunset St, San Francisco, CA 94016" +158497,27in 4K Gaming Monitor,1,389.99,01/24/19 19:02,"729 Church St, San Francisco, CA 94016" +158498,Wired Headphones,1,11.99,01/15/19 18:07,"858 1st St, New York City, NY 10001" +158499,Wired Headphones,1,11.99,01/07/19 12:38,"253 Park St, Boston, MA 02215" +158500,iPhone,1,700,01/04/19 18:28,"265 Wilson St, New York City, NY 10001" +158501,AA Batteries (4-pack),1,3.84,01/31/19 08:59,"821 Elm St, Los Angeles, CA 90001" +158502,AA Batteries (4-pack),1,3.84,01/16/19 07:08,"240 Park St, San Francisco, CA 94016" +158503,Lightning Charging Cable,1,14.95,01/10/19 06:42,"513 Jackson St, Atlanta, GA 30301" +158504,AA Batteries (4-pack),1,3.84,01/17/19 05:24,"772 Maple St, Seattle, WA 98101" +158505,Apple Airpods Headphones,1,150,01/06/19 19:12,"96 Highland St, San Francisco, CA 94016" +158506,27in FHD Monitor,1,149.99,01/18/19 18:25,"440 Center St, Dallas, TX 75001" +158507,Lightning Charging Cable,1,14.95,01/22/19 11:47,"789 Elm St, Dallas, TX 75001" +158508,Wired Headphones,1,11.99,01/18/19 10:15,"593 Cherry St, Austin, TX 73301" +158509,Apple Airpods Headphones,1,150,01/26/19 18:18,"689 Meadow St, Los Angeles, CA 90001" +158509,27in FHD Monitor,1,149.99,01/26/19 18:18,"689 Meadow St, Los Angeles, CA 90001" +158510,Bose SoundSport Headphones,1,99.99,01/02/19 21:37,"807 Maple St, Austin, TX 73301" +158511,Lightning Charging Cable,1,14.95,01/11/19 11:22,"281 Spruce St, San Francisco, CA 94016" +158512,AAA Batteries (4-pack),1,2.99,01/27/19 11:28,"135 Pine St, San Francisco, CA 94016" +158513,34in Ultrawide Monitor,1,379.99,01/20/19 12:01,"374 Pine St, Los Angeles, CA 90001" +158514,Google Phone,1,600,01/31/19 21:05,"719 Cherry St, Boston, MA 02215" +158514,USB-C Charging Cable,2,11.95,01/31/19 21:05,"719 Cherry St, Boston, MA 02215" +158514,Bose SoundSport Headphones,1,99.99,01/31/19 21:05,"719 Cherry St, Boston, MA 02215" +158515,USB-C Charging Cable,1,11.95,01/20/19 15:30,"288 Johnson St, Boston, MA 02215" +158516,Flatscreen TV,1,300,01/09/19 13:45,"232 North St, Portland, OR 97035" +158517,34in Ultrawide Monitor,1,379.99,01/02/19 18:16,"229 Church St, San Francisco, CA 94016" +158518,Wired Headphones,1,11.99,01/28/19 19:49,"526 4th St, San Francisco, CA 94016" +158519,Flatscreen TV,1,300,01/07/19 19:42,"542 Center St, New York City, NY 10001" +158520,ThinkPad Laptop,1,999.99,01/01/19 17:12,"125 6th St, Los Angeles, CA 90001" +158521,USB-C Charging Cable,1,11.95,01/27/19 11:08,"284 Meadow St, Boston, MA 02215" +158522,Wired Headphones,2,11.99,01/10/19 20:42,"483 Dogwood St, Austin, TX 73301" +158523,AA Batteries (4-pack),1,3.84,01/30/19 00:37,"535 6th St, Los Angeles, CA 90001" +158524,iPhone,1,700,01/22/19 22:23,"866 Ridge St, San Francisco, CA 94016" +158525,AA Batteries (4-pack),1,3.84,01/24/19 07:16,"381 Meadow St, Los Angeles, CA 90001" +158526,Lightning Charging Cable,1,14.95,01/27/19 11:21,"632 7th St, Los Angeles, CA 90001" +158527,Lightning Charging Cable,1,14.95,01/12/19 20:54,"598 Pine St, Dallas, TX 75001" +158528,AA Batteries (4-pack),1,3.84,01/10/19 10:49,"513 7th St, San Francisco, CA 94016" +158529,Google Phone,1,600,01/15/19 14:07,"592 13th St, New York City, NY 10001" +158529,AAA Batteries (4-pack),1,2.99,01/15/19 14:07,"592 13th St, New York City, NY 10001" +158530,20in Monitor,1,109.99,01/06/19 15:31,"703 Cherry St, Dallas, TX 75001" +158531,Flatscreen TV,1,300,01/08/19 20:19,"402 Washington St, Boston, MA 02215" +158532,34in Ultrawide Monitor,1,379.99,01/10/19 18:32,"962 Spruce St, Boston, MA 02215" +158533,Bose SoundSport Headphones,1,99.99,01/04/19 14:53,"110 10th St, Boston, MA 02215" +158534,USB-C Charging Cable,1,11.95,01/30/19 20:06,"70 Elm St, New York City, NY 10001" +158535,USB-C Charging Cable,1,11.95,01/02/19 22:19,"944 9th St, Austin, TX 73301" +158536,34in Ultrawide Monitor,1,379.99,01/26/19 03:46,"758 Forest St, San Francisco, CA 94016" +158537,AAA Batteries (4-pack),1,2.99,01/08/19 15:27,"112 12th St, San Francisco, CA 94016" +158538,iPhone,1,700,01/06/19 13:07,"444 Lincoln St, San Francisco, CA 94016" +158539,AA Batteries (4-pack),1,3.84,01/03/19 18:01,"896 Sunset St, Boston, MA 02215" +158540,Macbook Pro Laptop,2,1700,01/16/19 21:24,"820 Cedar St, Los Angeles, CA 90001" +158540,Bose SoundSport Headphones,1,99.99,01/16/19 21:24,"820 Cedar St, Los Angeles, CA 90001" +158541,Wired Headphones,1,11.99,01/07/19 10:15,"274 Walnut St, Seattle, WA 98101" +158542,Wired Headphones,1,11.99,01/09/19 16:09,"707 Johnson St, Seattle, WA 98101" +158543,USB-C Charging Cable,1,11.95,01/20/19 04:51,"95 Washington St, San Francisco, CA 94016" +158544,Bose SoundSport Headphones,1,99.99,01/22/19 08:47,"533 2nd St, Portland, OR 97035" +158545,AA Batteries (4-pack),1,3.84,01/22/19 19:22,"742 Lakeview St, Seattle, WA 98101" +158546,AA Batteries (4-pack),2,3.84,01/01/19 21:01,"616 Maple St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +158547,AAA Batteries (4-pack),1,2.99,01/31/19 19:51,"106 Dogwood St, Dallas, TX 75001" +158548,Apple Airpods Headphones,1,150,01/21/19 12:58,"604 Wilson St, Los Angeles, CA 90001" +158549,Bose SoundSport Headphones,1,99.99,01/19/19 13:08,"236 Main St, San Francisco, CA 94016" +158550,Bose SoundSport Headphones,1,99.99,01/27/19 12:42,"314 Spruce St, New York City, NY 10001" +158551,27in 4K Gaming Monitor,1,389.99,01/04/19 09:17,"337 Willow St, Seattle, WA 98101" +158552,Vareebadd Phone,1,400,01/31/19 11:08,"136 Hickory St, Atlanta, GA 30301" +158553,Wired Headphones,1,11.99,01/01/19 09:32,"693 9th St, Dallas, TX 75001" +158554,27in FHD Monitor,1,149.99,01/24/19 20:23,"23 West St, Boston, MA 02215" +158555,Google Phone,1,600,01/13/19 12:11,"149 Madison St, Portland, ME 04101" +158555,USB-C Charging Cable,3,11.95,01/13/19 12:11,"149 Madison St, Portland, ME 04101" +158555,Wired Headphones,1,11.99,01/13/19 12:11,"149 Madison St, Portland, ME 04101" +158556,AAA Batteries (4-pack),1,2.99,01/12/19 11:13,"950 Willow St, San Francisco, CA 94016" +158557,Apple Airpods Headphones,1,150,01/05/19 05:30,"486 13th St, Boston, MA 02215" +158558,Google Phone,1,600,01/03/19 18:41,"472 Adams St, Atlanta, GA 30301" +158559,Apple Airpods Headphones,1,150,01/20/19 14:10,"747 Cherry St, Los Angeles, CA 90001" +158560,USB-C Charging Cable,1,11.95,01/28/19 17:16,"101 Pine St, Dallas, TX 75001" +158561,AAA Batteries (4-pack),1,2.99,01/25/19 11:51,"256 Adams St, San Francisco, CA 94016" +158562,AA Batteries (4-pack),2,3.84,01/20/19 11:40,"457 Walnut St, Atlanta, GA 30301" +158563,Google Phone,1,600,01/24/19 11:29,"727 Jackson St, Los Angeles, CA 90001" +158563,USB-C Charging Cable,1,11.95,01/24/19 11:29,"727 Jackson St, Los Angeles, CA 90001" +158564,27in 4K Gaming Monitor,1,389.99,01/30/19 20:23,"225 Elm St, Dallas, TX 75001" +158565,AAA Batteries (4-pack),1,2.99,01/27/19 17:21,"416 West St, Seattle, WA 98101" +158566,Lightning Charging Cable,1,14.95,01/08/19 18:11,"887 Cherry St, Atlanta, GA 30301" +158567,AAA Batteries (4-pack),2,2.99,01/22/19 23:18,"842 Madison St, Boston, MA 02215" +158568,Apple Airpods Headphones,1,150,01/15/19 05:17,"981 North St, Austin, TX 73301" +158569,Lightning Charging Cable,2,14.95,01/14/19 23:14,"262 River St, Seattle, WA 98101" +158570,27in FHD Monitor,1,149.99,01/05/19 10:35,"344 Lincoln St, Portland, OR 97035" +158571,USB-C Charging Cable,1,11.95,01/31/19 15:22,"949 Main St, Austin, TX 73301" +158572,AAA Batteries (4-pack),1,2.99,01/05/19 07:18,"310 Jackson St, Seattle, WA 98101" +158573,Lightning Charging Cable,1,14.95,01/12/19 11:32,"880 Jackson St, Dallas, TX 75001" +158574,USB-C Charging Cable,1,11.95,01/15/19 19:40,"156 Washington St, Portland, OR 97035" +158575,Macbook Pro Laptop,1,1700,01/11/19 10:59,"361 Washington St, New York City, NY 10001" +158576,20in Monitor,1,109.99,01/16/19 14:33,"98 6th St, Los Angeles, CA 90001" +158577,Wired Headphones,1,11.99,01/14/19 17:28,"641 Lake St, Dallas, TX 75001" +158578,Bose SoundSport Headphones,1,99.99,01/15/19 17:11,"560 Church St, Seattle, WA 98101" +158579,Flatscreen TV,1,300,01/29/19 22:18,"713 Forest St, Austin, TX 73301" +158580,AA Batteries (4-pack),1,3.84,01/23/19 12:18,"174 Walnut St, San Francisco, CA 94016" +158581,Lightning Charging Cable,1,14.95,01/28/19 07:16,"718 Lake St, Boston, MA 02215" +158581,AAA Batteries (4-pack),4,2.99,01/28/19 07:16,"718 Lake St, Boston, MA 02215" +158582,Apple Airpods Headphones,1,150,01/30/19 08:40,"597 5th St, San Francisco, CA 94016" +158583,Apple Airpods Headphones,1,150,01/29/19 10:23,"901 Lincoln St, Dallas, TX 75001" +158584,AAA Batteries (4-pack),2,2.99,01/20/19 10:54,"799 Hickory St, Seattle, WA 98101" +158585,Wired Headphones,1,11.99,01/26/19 21:07,"444 Walnut St, Austin, TX 73301" +158586,Wired Headphones,1,11.99,01/12/19 17:05,"243 Jefferson St, New York City, NY 10001" +158587,iPhone,1,700,01/19/19 21:30,"406 Hill St, Austin, TX 73301" +158588,27in 4K Gaming Monitor,1,389.99,01/07/19 14:25,"133 Lake St, Seattle, WA 98101" +158589,AAA Batteries (4-pack),2,2.99,01/17/19 12:25,"778 Meadow St, San Francisco, CA 94016" +158590,34in Ultrawide Monitor,1,379.99,01/22/19 03:02,"712 1st St, New York City, NY 10001" +158591,AAA Batteries (4-pack),2,2.99,01/06/19 14:30,"269 Madison St, San Francisco, CA 94016" +158592,iPhone,1,700,01/09/19 08:28,"558 Main St, Los Angeles, CA 90001" +158593,USB-C Charging Cable,1,11.95,01/04/19 22:11,"463 Wilson St, Austin, TX 73301" +158594,Bose SoundSport Headphones,1,99.99,01/17/19 00:42,"104 West St, San Francisco, CA 94016" +158595,Wired Headphones,1,11.99,01/16/19 15:48,"370 Hill St, Portland, OR 97035" +158596,AAA Batteries (4-pack),2,2.99,01/18/19 16:27,"916 14th St, San Francisco, CA 94016" +158597,Apple Airpods Headphones,1,150,01/15/19 19:55,"652 Park St, New York City, NY 10001" +158598,Apple Airpods Headphones,1,150,01/12/19 22:18,"327 14th St, Seattle, WA 98101" +158599,AAA Batteries (4-pack),1,2.99,01/14/19 11:37,"216 Jackson St, Atlanta, GA 30301" +158600,34in Ultrawide Monitor,1,379.99,01/17/19 13:38,"351 1st St, Austin, TX 73301" +158601,AAA Batteries (4-pack),2,2.99,01/25/19 17:02,"325 11th St, New York City, NY 10001" +158602,Wired Headphones,2,11.99,01/19/19 19:31,"28 Dogwood St, Atlanta, GA 30301" +158603,Flatscreen TV,1,300,01/19/19 18:01,"602 1st St, Los Angeles, CA 90001" +158604,AAA Batteries (4-pack),1,2.99,01/04/19 19:12,"929 Ridge St, Dallas, TX 75001" +158605,AA Batteries (4-pack),1,3.84,01/08/19 11:45,"552 South St, Dallas, TX 75001" +158606,USB-C Charging Cable,1,11.95,01/03/19 23:38,"244 8th St, Los Angeles, CA 90001" +158607,Google Phone,1,600,01/07/19 11:52,"251 12th St, San Francisco, CA 94016" +158607,USB-C Charging Cable,1,11.95,01/07/19 11:52,"251 12th St, San Francisco, CA 94016" +158608,Vareebadd Phone,1,400,01/13/19 23:56,"604 Spruce St, Seattle, WA 98101" +158608,Wired Headphones,1,11.99,01/13/19 23:56,"604 Spruce St, Seattle, WA 98101" +158609,34in Ultrawide Monitor,1,379.99,01/18/19 09:48,"639 Forest St, San Francisco, CA 94016" +158610,AA Batteries (4-pack),1,3.84,01/30/19 23:38,"741 Sunset St, New York City, NY 10001" +158611,27in 4K Gaming Monitor,1,389.99,01/18/19 23:33,"824 Maple St, New York City, NY 10001" +158612,Bose SoundSport Headphones,1,99.99,01/20/19 18:58,"259 Cherry St, Los Angeles, CA 90001" +158613,20in Monitor,1,109.99,01/05/19 19:14,"757 4th St, Los Angeles, CA 90001" +158614,Lightning Charging Cable,1,14.95,01/23/19 00:35,"531 4th St, San Francisco, CA 94016" +158615,USB-C Charging Cable,1,11.95,01/22/19 12:58,"801 Johnson St, Los Angeles, CA 90001" +158616,Macbook Pro Laptop,1,1700,01/23/19 19:32,"286 Lakeview St, New York City, NY 10001" +158617,Lightning Charging Cable,1,14.95,01/30/19 14:56,"108 River St, Atlanta, GA 30301" +158618,AAA Batteries (4-pack),1,2.99,01/23/19 18:46,"843 Jackson St, Portland, OR 97035" +158619,AAA Batteries (4-pack),1,2.99,01/27/19 12:32,"619 Chestnut St, Austin, TX 73301" +158620,Bose SoundSport Headphones,1,99.99,01/19/19 01:03,"924 Madison St, San Francisco, CA 94016" +158621,Bose SoundSport Headphones,1,99.99,01/25/19 21:52,"107 Elm St, Los Angeles, CA 90001" +158622,AAA Batteries (4-pack),2,2.99,01/13/19 08:23,"727 Main St, Boston, MA 02215" +158623,AAA Batteries (4-pack),1,2.99,01/22/19 14:39,"373 Sunset St, Los Angeles, CA 90001" +158624,Lightning Charging Cable,1,14.95,01/08/19 14:46,"457 Center St, Portland, OR 97035" +158625,Wired Headphones,1,11.99,01/16/19 17:10,"204 River St, San Francisco, CA 94016" +158626,AA Batteries (4-pack),3,3.84,01/16/19 10:19,"805 Center St, Los Angeles, CA 90001" +158627,AAA Batteries (4-pack),1,2.99,01/18/19 13:45,"329 5th St, San Francisco, CA 94016" +158628,Wired Headphones,2,11.99,01/30/19 17:36,"260 Adams St, Austin, TX 73301" +158629,27in 4K Gaming Monitor,1,389.99,01/12/19 15:36,"428 Chestnut St, Dallas, TX 75001" +158630,Apple Airpods Headphones,1,150,01/08/19 12:55,"590 7th St, New York City, NY 10001" +158631,Lightning Charging Cable,1,14.95,01/09/19 14:18,"59 Maple St, Atlanta, GA 30301" +158632,Vareebadd Phone,1,400,01/28/19 16:59,"10 Park St, San Francisco, CA 94016" +158633,USB-C Charging Cable,1,11.95,01/31/19 12:22,"687 Park St, San Francisco, CA 94016" +158634,Lightning Charging Cable,1,14.95,01/14/19 20:08,"276 Walnut St, Los Angeles, CA 90001" +158635,AAA Batteries (4-pack),1,2.99,01/16/19 17:13,"602 12th St, Dallas, TX 75001" +158636,Wired Headphones,2,11.99,01/20/19 20:58,"680 Pine St, Dallas, TX 75001" +158637,AA Batteries (4-pack),4,3.84,01/04/19 15:15,"43 Adams St, San Francisco, CA 94016" +158638,Lightning Charging Cable,1,14.95,01/21/19 23:19,"76 Jackson St, Atlanta, GA 30301" +158639,27in 4K Gaming Monitor,1,389.99,01/28/19 19:47,"321 Cherry St, Boston, MA 02215" +158640,Bose SoundSport Headphones,1,99.99,01/12/19 20:23,"241 6th St, Los Angeles, CA 90001" +158641,ThinkPad Laptop,1,999.99,01/04/19 19:18,"544 Jefferson St, Austin, TX 73301" +158642,AA Batteries (4-pack),1,3.84,01/19/19 16:13,"833 Hickory St, New York City, NY 10001" +158643,AAA Batteries (4-pack),1,2.99,01/26/19 21:16,"104 9th St, Atlanta, GA 30301" +158644,Lightning Charging Cable,1,14.95,01/01/19 13:35,"205 8th St, Atlanta, GA 30301" +158644,20in Monitor,1,109.99,01/01/19 13:35,"205 8th St, Atlanta, GA 30301" +158645,Wired Headphones,1,11.99,01/19/19 14:48,"176 Jackson St, San Francisco, CA 94016" +158646,Lightning Charging Cable,1,14.95,01/23/19 19:35,"158 9th St, Los Angeles, CA 90001" +158647,34in Ultrawide Monitor,1,379.99,01/15/19 15:18,"653 Cherry St, Atlanta, GA 30301" +158648,27in 4K Gaming Monitor,1,389.99,01/26/19 21:37,"519 6th St, Seattle, WA 98101" +158649,AAA Batteries (4-pack),3,2.99,01/13/19 15:27,"90 Lakeview St, Los Angeles, CA 90001" +158650,Bose SoundSport Headphones,1,99.99,01/01/19 22:01,"591 Center St, San Francisco, CA 94016" +158651,27in FHD Monitor,1,149.99,01/13/19 10:40,"200 Forest St, Boston, MA 02215" +158652,USB-C Charging Cable,2,11.95,01/20/19 18:40,"92 Washington St, Atlanta, GA 30301" +158653,20in Monitor,1,109.99,01/12/19 21:02,"842 Dogwood St, San Francisco, CA 94016" +158654,Wired Headphones,1,11.99,01/08/19 08:41,"830 5th St, San Francisco, CA 94016" +158655,20in Monitor,1,109.99,01/21/19 21:38,"564 Meadow St, Los Angeles, CA 90001" +158656,AAA Batteries (4-pack),1,2.99,01/03/19 00:35,"135 Chestnut St, San Francisco, CA 94016" +158657,USB-C Charging Cable,1,11.95,01/20/19 00:36,"860 Center St, San Francisco, CA 94016" +158658,27in FHD Monitor,1,149.99,01/28/19 21:21,"237 6th St, San Francisco, CA 94016" +158659,Flatscreen TV,1,300,01/31/19 10:04,"938 Sunset St, Boston, MA 02215" +158660,20in Monitor,1,109.99,01/20/19 17:24,"429 Maple St, Seattle, WA 98101" +158661,AAA Batteries (4-pack),1,2.99,01/25/19 17:15,"397 Forest St, Seattle, WA 98101" +158662,Wired Headphones,1,11.99,01/20/19 07:08,"985 Park St, Los Angeles, CA 90001" +158663,AAA Batteries (4-pack),1,2.99,01/28/19 01:07,"325 11th St, Portland, OR 97035" +158664,Apple Airpods Headphones,1,150,01/22/19 15:08,"506 Highland St, Los Angeles, CA 90001" +158665,Macbook Pro Laptop,1,1700,01/24/19 08:24,"493 River St, Boston, MA 02215" +158666,AA Batteries (4-pack),2,3.84,01/20/19 08:22,"81 7th St, New York City, NY 10001" +158667,Apple Airpods Headphones,1,150,01/19/19 22:00,"634 Maple St, Austin, TX 73301" +158668,27in 4K Gaming Monitor,1,389.99,01/19/19 16:42,"529 Cedar St, Portland, OR 97035" +158669,Bose SoundSport Headphones,1,99.99,01/28/19 11:41,"10 Meadow St, Dallas, TX 75001" +158670,USB-C Charging Cable,1,11.95,01/23/19 08:15,"616 5th St, Los Angeles, CA 90001" +158671,Bose SoundSport Headphones,1,99.99,01/22/19 11:34,"659 8th St, San Francisco, CA 94016" +158672,iPhone,1,700,01/06/19 16:22,"145 Washington St, Portland, OR 97035" +158672,Lightning Charging Cable,1,14.95,01/06/19 16:22,"145 Washington St, Portland, OR 97035" +158673,27in FHD Monitor,1,149.99,01/01/19 19:16,"204 11th St, Los Angeles, CA 90001" +158674,Wired Headphones,1,11.99,01/05/19 15:26,"970 Center St, Los Angeles, CA 90001" +158675,Apple Airpods Headphones,1,150,01/09/19 14:28,"829 Washington St, Austin, TX 73301" +158676,USB-C Charging Cable,1,11.95,01/08/19 13:20,"139 4th St, Portland, OR 97035" +158677,USB-C Charging Cable,2,11.95,01/08/19 12:39,"915 Adams St, Boston, MA 02215" +158678,AA Batteries (4-pack),3,3.84,01/14/19 19:15,"170 Highland St, San Francisco, CA 94016" +158679,Apple Airpods Headphones,1,150,01/22/19 20:43,"749 River St, Dallas, TX 75001" +158680,Macbook Pro Laptop,1,1700,01/03/19 18:49,"910 Willow St, Boston, MA 02215" +158681,AAA Batteries (4-pack),1,2.99,01/22/19 17:37,"337 Chestnut St, San Francisco, CA 94016" +158682,Wired Headphones,1,11.99,01/16/19 16:39,"473 5th St, Boston, MA 02215" +158683,AAA Batteries (4-pack),1,2.99,01/14/19 08:41,"66 9th St, Los Angeles, CA 90001" +158684,AA Batteries (4-pack),2,3.84,01/04/19 22:43,"524 Elm St, New York City, NY 10001" +158685,USB-C Charging Cable,1,11.95,01/06/19 17:14,"666 Jackson St, Austin, TX 73301" +158686,USB-C Charging Cable,1,11.95,01/22/19 10:18,"163 Hill St, Boston, MA 02215" +158687,AAA Batteries (4-pack),2,2.99,01/28/19 21:42,"967 Adams St, Seattle, WA 98101" +158688,AA Batteries (4-pack),1,3.84,01/12/19 16:50,"901 1st St, San Francisco, CA 94016" +158689,Bose SoundSport Headphones,1,99.99,01/11/19 12:49,"693 Walnut St, Portland, OR 97035" +158690,Wired Headphones,1,11.99,01/14/19 16:17,"159 Dogwood St, Boston, MA 02215" +158691,Bose SoundSport Headphones,1,99.99,01/23/19 19:56,"765 Cherry St, Atlanta, GA 30301" +158692,AA Batteries (4-pack),3,3.84,01/16/19 18:25,"355 Hill St, Los Angeles, CA 90001" +158693,AAA Batteries (4-pack),1,2.99,01/03/19 19:25,"170 Pine St, Atlanta, GA 30301" +158694,Wired Headphones,1,11.99,01/31/19 13:43,"999 Johnson St, San Francisco, CA 94016" +158695,Wired Headphones,1,11.99,01/21/19 22:08,"943 South St, San Francisco, CA 94016" +158696,Bose SoundSport Headphones,1,99.99,01/23/19 23:45,"160 11th St, Seattle, WA 98101" +158697,Wired Headphones,1,11.99,01/31/19 14:06,"404 1st St, San Francisco, CA 94016" +158698,27in FHD Monitor,1,149.99,01/08/19 10:48,"625 Elm St, Portland, OR 97035" +158699,Apple Airpods Headphones,1,150,01/04/19 15:46,"579 River St, San Francisco, CA 94016" +158700,AA Batteries (4-pack),2,3.84,01/08/19 20:44,"492 4th St, New York City, NY 10001" +158701,27in FHD Monitor,1,149.99,01/12/19 17:41,"839 Maple St, Austin, TX 73301" +158702,Apple Airpods Headphones,1,150,01/08/19 18:56,"537 Cherry St, Los Angeles, CA 90001" +158703,USB-C Charging Cable,1,11.95,01/16/19 11:13,"206 Ridge St, San Francisco, CA 94016" +158704,USB-C Charging Cable,2,11.95,01/10/19 16:04,"60 13th St, Los Angeles, CA 90001" +158705,AA Batteries (4-pack),1,3.84,01/11/19 11:22,"636 13th St, Los Angeles, CA 90001" +158706,Lightning Charging Cable,1,14.95,01/24/19 19:34,"998 Church St, San Francisco, CA 94016" +158707,Lightning Charging Cable,1,14.95,01/27/19 18:06,"809 Hill St, New York City, NY 10001" +158708,Lightning Charging Cable,1,14.95,01/01/19 23:45,"974 Washington St, Seattle, WA 98101" +158709,Wired Headphones,1,11.99,01/29/19 17:21,"362 14th St, Los Angeles, CA 90001" +158710,Wired Headphones,1,11.99,01/10/19 16:48,"157 Hickory St, Portland, OR 97035" +158711,Wired Headphones,1,11.99,01/31/19 12:14,"427 South St, Boston, MA 02215" +158712,Bose SoundSport Headphones,1,99.99,01/09/19 21:31,"794 Spruce St, Portland, ME 04101" +158713,LG Washing Machine,1,600.0,01/24/19 13:45,"474 Highland St, Portland, OR 97035" +158714,27in 4K Gaming Monitor,1,389.99,01/03/19 10:36,"438 Ridge St, San Francisco, CA 94016" +158715,USB-C Charging Cable,1,11.95,01/27/19 14:28,"730 Church St, Atlanta, GA 30301" +158716,AAA Batteries (4-pack),1,2.99,01/01/19 15:13,"706 4th St, Los Angeles, CA 90001" +158717,iPhone,1,700,01/15/19 09:03,"419 13th St, Boston, MA 02215" +158718,Google Phone,1,600,01/16/19 08:24,"96 Cedar St, Seattle, WA 98101" +158719,Bose SoundSport Headphones,1,99.99,01/02/19 19:47,"165 Jefferson St, Portland, OR 97035" +158720,Wired Headphones,1,11.99,01/10/19 19:12,"471 7th St, San Francisco, CA 94016" +158721,Google Phone,1,600,01/27/19 10:20,"256 Walnut St, Dallas, TX 75001" +158721,USB-C Charging Cable,1,11.95,01/27/19 10:20,"256 Walnut St, Dallas, TX 75001" +158722,AAA Batteries (4-pack),1,2.99,01/11/19 18:48,"167 Center St, San Francisco, CA 94016" +158723,Lightning Charging Cable,1,14.95,01/03/19 22:35,"849 Forest St, Boston, MA 02215" +158724,Wired Headphones,1,11.99,01/23/19 00:26,"193 5th St, Boston, MA 02215" +158725,Lightning Charging Cable,1,14.95,01/26/19 08:58,"764 Forest St, Los Angeles, CA 90001" +158726,20in Monitor,1,109.99,01/24/19 21:39,"814 Madison St, Los Angeles, CA 90001" +158727,Apple Airpods Headphones,1,150,01/10/19 20:57,"959 9th St, San Francisco, CA 94016" +158728,USB-C Charging Cable,1,11.95,01/31/19 13:54,"260 Lakeview St, San Francisco, CA 94016" +158729,iPhone,1,700,01/17/19 16:45,"815 9th St, Portland, OR 97035" +158730,AAA Batteries (4-pack),1,2.99,01/13/19 17:22,"981 12th St, New York City, NY 10001" +158731,Bose SoundSport Headphones,1,99.99,01/17/19 13:08,"378 Park St, Boston, MA 02215" +158732,27in FHD Monitor,1,149.99,01/25/19 13:06,"41 Maple St, Boston, MA 02215" +158733,iPhone,1,700,01/24/19 08:59,"369 Forest St, Los Angeles, CA 90001" +158734,27in FHD Monitor,1,149.99,01/01/19 08:29,"604 Hill St, San Francisco, CA 94016" +158735,20in Monitor,1,109.99,01/20/19 10:48,"347 Cedar St, Boston, MA 02215" +158736,AAA Batteries (4-pack),1,2.99,01/28/19 17:13,"831 11th St, Boston, MA 02215" +158737,27in FHD Monitor,1,149.99,01/23/19 10:54,"314 Ridge St, Los Angeles, CA 90001" +158738,Macbook Pro Laptop,1,1700,01/30/19 12:43,"759 Wilson St, Dallas, TX 75001" +158739,AAA Batteries (4-pack),1,2.99,01/11/19 16:44,"556 6th St, Austin, TX 73301" +158740,27in 4K Gaming Monitor,1,389.99,01/03/19 20:48,"122 Spruce St, Los Angeles, CA 90001" +158741,27in FHD Monitor,1,149.99,01/19/19 01:19,"656 12th St, San Francisco, CA 94016" +158742,USB-C Charging Cable,1,11.95,01/21/19 22:48,"683 Elm St, Portland, OR 97035" +158743,AA Batteries (4-pack),1,3.84,01/29/19 19:26,"174 Hill St, San Francisco, CA 94016" +158744,Apple Airpods Headphones,1,150,01/18/19 09:41,"390 14th St, Seattle, WA 98101" +158745,Wired Headphones,1,11.99,01/31/19 19:59,"648 South St, Dallas, TX 75001" +158746,Google Phone,1,600,01/26/19 22:43,"259 Dogwood St, Boston, MA 02215" +158747,AA Batteries (4-pack),1,3.84,01/16/19 10:37,"50 2nd St, Austin, TX 73301" +158748,USB-C Charging Cable,1,11.95,01/18/19 18:44,"746 Jackson St, Dallas, TX 75001" +158749,Wired Headphones,1,11.99,01/15/19 01:34,"464 Johnson St, San Francisco, CA 94016" +158750,Google Phone,1,600,01/23/19 15:43,"299 Meadow St, Los Angeles, CA 90001" +158751,USB-C Charging Cable,1,11.95,01/14/19 23:47,"590 Pine St, Los Angeles, CA 90001" +158752,27in FHD Monitor,1,149.99,01/10/19 22:57,"307 2nd St, Atlanta, GA 30301" +158753,Apple Airpods Headphones,1,150,01/26/19 18:48,"242 North St, Dallas, TX 75001" +158754,Lightning Charging Cable,1,14.95,01/23/19 22:05,"205 River St, Boston, MA 02215" +158755,Lightning Charging Cable,1,14.95,01/28/19 16:39,"728 13th St, Los Angeles, CA 90001" +158756,Wired Headphones,1,11.99,01/03/19 11:44,"32 7th St, San Francisco, CA 94016" +158757,Wired Headphones,1,11.99,01/07/19 11:24,"585 Walnut St, Dallas, TX 75001" +158758,USB-C Charging Cable,1,11.95,01/29/19 17:56,"180 13th St, New York City, NY 10001" +158759,Google Phone,1,600,01/18/19 06:45,"185 8th St, Dallas, TX 75001" +158760,Bose SoundSport Headphones,1,99.99,01/03/19 17:13,"76 Walnut St, San Francisco, CA 94016" +158761,AA Batteries (4-pack),1,3.84,01/12/19 20:48,"359 Walnut St, Los Angeles, CA 90001" +158762,34in Ultrawide Monitor,1,379.99,01/23/19 14:24,"936 Forest St, New York City, NY 10001" +158763,AAA Batteries (4-pack),2,2.99,01/15/19 07:23,"772 Cedar St, Los Angeles, CA 90001" +158764,AA Batteries (4-pack),1,3.84,01/10/19 17:08,"270 14th St, Dallas, TX 75001" +158765,Wired Headphones,1,11.99,01/16/19 23:52,"753 Cedar St, San Francisco, CA 94016" +158766,Google Phone,1,600,01/20/19 00:26,"649 Willow St, Boston, MA 02215" +158767,Apple Airpods Headphones,1,150,01/09/19 08:22,"647 River St, Seattle, WA 98101" +158768,27in FHD Monitor,1,149.99,01/19/19 18:39,"763 10th St, Boston, MA 02215" +158769,USB-C Charging Cable,3,11.95,01/17/19 10:47,"723 South St, Austin, TX 73301" +158770,USB-C Charging Cable,2,11.95,01/25/19 15:04,"160 Lincoln St, Boston, MA 02215" +158771,AA Batteries (4-pack),1,3.84,01/24/19 17:09,"581 Ridge St, Seattle, WA 98101" +158772,Macbook Pro Laptop,1,1700,01/28/19 14:11,"15 River St, Boston, MA 02215" +158773,USB-C Charging Cable,1,11.95,01/03/19 12:12,"943 South St, Los Angeles, CA 90001" +158774,Wired Headphones,1,11.99,01/10/19 17:58,"313 Hill St, Atlanta, GA 30301" +158775,iPhone,1,700,01/21/19 08:55,"455 Ridge St, Boston, MA 02215" +158775,Lightning Charging Cable,1,14.95,01/21/19 08:55,"455 Ridge St, Boston, MA 02215" +158776,USB-C Charging Cable,2,11.95,01/28/19 20:36,"633 Ridge St, Austin, TX 73301" +158777,Lightning Charging Cable,2,14.95,01/27/19 19:11,"635 13th St, Portland, OR 97035" +158778,AA Batteries (4-pack),1,3.84,01/22/19 18:23,"210 10th St, San Francisco, CA 94016" +158779,USB-C Charging Cable,1,11.95,01/12/19 12:42,"109 Center St, New York City, NY 10001" +158780,AA Batteries (4-pack),1,3.84,01/31/19 09:48,"803 12th St, New York City, NY 10001" +158781,Lightning Charging Cable,1,14.95,01/16/19 17:47,"510 Wilson St, Seattle, WA 98101" +158782,USB-C Charging Cable,1,11.95,01/16/19 13:29,"127 Center St, Austin, TX 73301" +158783,Bose SoundSport Headphones,1,99.99,01/22/19 19:58,"336 Jackson St, San Francisco, CA 94016" +158784,Lightning Charging Cable,1,14.95,01/24/19 07:51,"512 11th St, San Francisco, CA 94016" +158785,Vareebadd Phone,1,400,01/26/19 20:02,"911 Willow St, San Francisco, CA 94016" +158785,Flatscreen TV,1,300,01/26/19 20:02,"911 Willow St, San Francisco, CA 94016" +158786,AA Batteries (4-pack),1,3.84,01/07/19 12:02,"757 Adams St, Atlanta, GA 30301" +158787,27in 4K Gaming Monitor,1,389.99,01/16/19 20:20,"361 Main St, Atlanta, GA 30301" +158788,Flatscreen TV,1,300,01/21/19 11:56,"607 Elm St, Los Angeles, CA 90001" +158789,AA Batteries (4-pack),2,3.84,01/06/19 18:43,"542 7th St, Los Angeles, CA 90001" +158790,USB-C Charging Cable,1,11.95,01/28/19 01:09,"462 Center St, San Francisco, CA 94016" +158791,Macbook Pro Laptop,1,1700,01/13/19 14:37,"595 Wilson St, San Francisco, CA 94016" +158792,Wired Headphones,1,11.99,01/23/19 17:33,"838 Hill St, San Francisco, CA 94016" +158793,27in FHD Monitor,1,149.99,01/27/19 19:10,"790 4th St, Dallas, TX 75001" +158794,AA Batteries (4-pack),1,3.84,01/08/19 10:17,"237 South St, San Francisco, CA 94016" +158795,Apple Airpods Headphones,1,150,01/03/19 10:06,"639 Wilson St, Atlanta, GA 30301" +158796,34in Ultrawide Monitor,1,379.99,01/17/19 13:33,"774 Jefferson St, San Francisco, CA 94016" +158797,Apple Airpods Headphones,1,150,01/03/19 05:15,"672 Chestnut St, Austin, TX 73301" +158798,AAA Batteries (4-pack),4,2.99,01/25/19 08:22,"498 Maple St, New York City, NY 10001" +158799,AAA Batteries (4-pack),1,2.99,01/31/19 21:45,"196 Spruce St, Atlanta, GA 30301" +158800,Wired Headphones,1,11.99,01/07/19 18:17,"558 6th St, Dallas, TX 75001" +158801,Apple Airpods Headphones,1,150,01/28/19 18:00,"316 Sunset St, San Francisco, CA 94016" +158802,AA Batteries (4-pack),1,3.84,01/29/19 23:50,"608 Spruce St, Dallas, TX 75001" +158803,ThinkPad Laptop,1,999.99,01/03/19 19:37,"666 Cherry St, Seattle, WA 98101" +158804,Apple Airpods Headphones,1,150,01/29/19 14:56,"746 13th St, Los Angeles, CA 90001" +158805,27in 4K Gaming Monitor,1,389.99,01/14/19 21:21,"916 Wilson St, Boston, MA 02215" +158806,Macbook Pro Laptop,1,1700,01/16/19 13:45,"745 1st St, Los Angeles, CA 90001" +158807,Wired Headphones,1,11.99,01/05/19 15:14,"825 Pine St, Portland, ME 04101" +158808,Wired Headphones,1,11.99,01/10/19 14:09,"945 4th St, San Francisco, CA 94016" +158809,Google Phone,1,600,01/19/19 10:05,"920 Chestnut St, San Francisco, CA 94016" +158810,AAA Batteries (4-pack),1,2.99,01/24/19 18:52,"367 2nd St, Dallas, TX 75001" +158811,iPhone,1,700,01/28/19 09:21,"775 Meadow St, Dallas, TX 75001" +158812,USB-C Charging Cable,1,11.95,01/08/19 19:30,"174 Johnson St, Boston, MA 02215" +158813,Apple Airpods Headphones,1,150,01/06/19 11:45,"194 1st St, Los Angeles, CA 90001" +158814,34in Ultrawide Monitor,1,379.99,01/28/19 13:31,"564 Church St, San Francisco, CA 94016" +158815,AAA Batteries (4-pack),1,2.99,01/29/19 12:38,"810 Elm St, Boston, MA 02215" +158816,AAA Batteries (4-pack),3,2.99,01/06/19 12:42,"416 Johnson St, Boston, MA 02215" +158817,Lightning Charging Cable,1,14.95,01/02/19 10:21,"627 West St, Austin, TX 73301" +158818,AA Batteries (4-pack),1,3.84,01/01/19 22:05,"423 South St, Seattle, WA 98101" +158819,Wired Headphones,1,11.99,01/17/19 12:26,"539 2nd St, Los Angeles, CA 90001" +158820,27in 4K Gaming Monitor,1,389.99,01/19/19 12:04,"451 Willow St, Dallas, TX 75001" +158821,AAA Batteries (4-pack),1,2.99,01/14/19 09:56,"560 Elm St, New York City, NY 10001" +158822,AA Batteries (4-pack),1,3.84,01/18/19 19:43,"692 6th St, Austin, TX 73301" +158823,Bose SoundSport Headphones,1,99.99,01/29/19 21:36,"377 West St, Atlanta, GA 30301" +158824,Wired Headphones,1,11.99,01/10/19 10:50,"677 Park St, Portland, OR 97035" +158825,Bose SoundSport Headphones,1,99.99,01/11/19 17:55,"611 River St, Atlanta, GA 30301" +158826,AA Batteries (4-pack),3,3.84,01/24/19 08:46,"849 Elm St, Portland, OR 97035" +158827,20in Monitor,1,109.99,01/22/19 14:06,"467 River St, Boston, MA 02215" +158828,Lightning Charging Cable,1,14.95,01/21/19 16:46,"530 Main St, Los Angeles, CA 90001" +158829,Bose SoundSport Headphones,1,99.99,01/23/19 13:59,"694 Madison St, Los Angeles, CA 90001" +158830,Macbook Pro Laptop,1,1700,01/24/19 18:58,"517 Madison St, San Francisco, CA 94016" +158831,Lightning Charging Cable,1,14.95,01/16/19 19:34,"495 Hill St, Seattle, WA 98101" +158832,AA Batteries (4-pack),1,3.84,01/12/19 11:15,"482 10th St, San Francisco, CA 94016" +158833,iPhone,1,700,01/15/19 10:09,"578 1st St, Los Angeles, CA 90001" +158834,Google Phone,1,600,01/05/19 21:29,"662 Willow St, San Francisco, CA 94016" +158835,iPhone,1,700,01/08/19 16:05,"86 Madison St, Los Angeles, CA 90001" +158836,34in Ultrawide Monitor,1,379.99,01/11/19 19:32,"290 Washington St, Los Angeles, CA 90001" +158837,AA Batteries (4-pack),1,3.84,01/11/19 13:52,"200 14th St, Seattle, WA 98101" +158838,iPhone,1,700,01/08/19 12:41,"209 Spruce St, New York City, NY 10001" +158839,USB-C Charging Cable,1,11.95,01/26/19 13:24,"943 Madison St, Seattle, WA 98101" +158840,Bose SoundSport Headphones,1,99.99,01/04/19 07:34,"924 Jefferson St, San Francisco, CA 94016" +158841,Apple Airpods Headphones,1,150,01/06/19 15:08,"227 Hickory St, Seattle, WA 98101" +158842,Apple Airpods Headphones,1,150,01/31/19 19:19,"424 Johnson St, San Francisco, CA 94016" +158843,AAA Batteries (4-pack),1,2.99,01/17/19 10:43,"59 Pine St, Dallas, TX 75001" +158844,USB-C Charging Cable,1,11.95,01/23/19 17:02,"521 River St, Atlanta, GA 30301" +158845,34in Ultrawide Monitor,1,379.99,01/11/19 22:04,"868 Willow St, Los Angeles, CA 90001" +158846,AAA Batteries (4-pack),4,2.99,01/05/19 11:04,"635 North St, Los Angeles, CA 90001" +158847,Wired Headphones,2,11.99,01/09/19 17:25,"764 2nd St, Boston, MA 02215" +158848,ThinkPad Laptop,1,999.99,01/01/19 09:07,"222 7th St, San Francisco, CA 94016" +158849,ThinkPad Laptop,1,999.99,01/13/19 14:19,"752 Lakeview St, San Francisco, CA 94016" +158850,Wired Headphones,1,11.99,01/31/19 16:31,"699 West St, Dallas, TX 75001" +158851,Macbook Pro Laptop,1,1700,01/29/19 00:17,"443 Main St, Los Angeles, CA 90001" +158852,AAA Batteries (4-pack),3,2.99,01/18/19 08:29,"815 Lincoln St, Austin, TX 73301" +158853,USB-C Charging Cable,1,11.95,01/03/19 15:12,"519 Center St, New York City, NY 10001" +158854,27in 4K Gaming Monitor,1,389.99,01/04/19 12:19,"765 Highland St, Seattle, WA 98101" +158855,Wired Headphones,1,11.99,01/13/19 16:02,"782 Maple St, Atlanta, GA 30301" +158856,AAA Batteries (4-pack),1,2.99,01/18/19 23:48,"320 Meadow St, Dallas, TX 75001" +158857,20in Monitor,1,109.99,01/02/19 11:46,"759 Church St, Seattle, WA 98101" +158858,LG Dryer,1,600.0,01/13/19 11:54,"414 Lincoln St, Portland, OR 97035" +158859,Google Phone,1,600,01/29/19 16:37,"451 11th St, Los Angeles, CA 90001" +158860,Apple Airpods Headphones,1,150,01/21/19 13:42,"671 Willow St, Los Angeles, CA 90001" +158861,USB-C Charging Cable,1,11.95,01/31/19 00:23,"204 Jefferson St, Dallas, TX 75001" +158862,Flatscreen TV,1,300,01/03/19 10:33,"314 River St, San Francisco, CA 94016" +158863,Vareebadd Phone,1,400,01/23/19 23:34,"404 Forest St, Los Angeles, CA 90001" +158864,AAA Batteries (4-pack),2,2.99,01/27/19 08:33,"154 Dogwood St, Seattle, WA 98101" +158865,AAA Batteries (4-pack),1,2.99,01/18/19 23:28,"201 13th St, Los Angeles, CA 90001" +158866,Apple Airpods Headphones,1,150,01/16/19 19:49,"932 South St, Los Angeles, CA 90001" +158867,Wired Headphones,1,11.99,01/30/19 17:42,"270 9th St, Los Angeles, CA 90001" +158868,27in 4K Gaming Monitor,1,389.99,01/31/19 08:46,"510 Willow St, San Francisco, CA 94016" +158869,USB-C Charging Cable,1,11.95,01/21/19 19:28,"11 Maple St, Austin, TX 73301" +158870,Lightning Charging Cable,1,14.95,01/29/19 18:26,"251 11th St, Los Angeles, CA 90001" +158871,Apple Airpods Headphones,1,150,01/20/19 00:28,"912 Jackson St, Atlanta, GA 30301" +158872,AAA Batteries (4-pack),2,2.99,01/31/19 13:22,"339 10th St, San Francisco, CA 94016" +158873,USB-C Charging Cable,1,11.95,01/03/19 14:06,"117 6th St, San Francisco, CA 94016" +158874,Lightning Charging Cable,1,14.95,01/11/19 17:22,"784 Willow St, Los Angeles, CA 90001" +158875,Lightning Charging Cable,1,14.95,01/28/19 09:54,"818 9th St, Dallas, TX 75001" +158876,USB-C Charging Cable,1,11.95,01/12/19 00:41,"156 Spruce St, Dallas, TX 75001" +158877,AA Batteries (4-pack),1,3.84,01/26/19 12:00,"69 Cedar St, New York City, NY 10001" +158878,iPhone,2,700,01/22/19 07:24,"922 12th St, Los Angeles, CA 90001" +158879,AA Batteries (4-pack),1,3.84,01/13/19 21:10,"529 Madison St, Los Angeles, CA 90001" +158880,USB-C Charging Cable,1,11.95,01/06/19 16:38,"716 14th St, Los Angeles, CA 90001" +158881,USB-C Charging Cable,1,11.95,01/01/19 13:56,"702 Jefferson St, Seattle, WA 98101" +158882,AAA Batteries (4-pack),2,2.99,01/29/19 14:45,"205 6th St, Boston, MA 02215" +158883,Wired Headphones,1,11.99,01/04/19 13:24,"384 Cedar St, Boston, MA 02215" +158884,27in FHD Monitor,1,149.99,01/27/19 20:49,"168 7th St, Austin, TX 73301" +158885,Apple Airpods Headphones,1,150,01/23/19 13:40,"648 Maple St, San Francisco, CA 94016" +158886,USB-C Charging Cable,1,11.95,01/23/19 20:58,"262 Lincoln St, Austin, TX 73301" +158887,27in 4K Gaming Monitor,1,389.99,01/11/19 08:55,"310 Washington St, New York City, NY 10001" +158888,27in FHD Monitor,1,149.99,01/10/19 19:35,"182 Highland St, San Francisco, CA 94016" +158889,USB-C Charging Cable,1,11.95,01/12/19 12:57,"630 Lincoln St, Atlanta, GA 30301" +158890,Bose SoundSport Headphones,1,99.99,01/16/19 19:49,"713 Elm St, Dallas, TX 75001" +158891,27in FHD Monitor,1,149.99,01/21/19 11:23,"320 Lakeview St, New York City, NY 10001" +158892,20in Monitor,1,109.99,01/28/19 13:06,"236 8th St, Austin, TX 73301" +158893,27in 4K Gaming Monitor,1,389.99,01/08/19 19:10,"382 Walnut St, San Francisco, CA 94016" +158894,27in FHD Monitor,1,149.99,01/07/19 11:39,"779 Sunset St, San Francisco, CA 94016" +158895,Lightning Charging Cable,1,14.95,01/27/19 21:51,"292 9th St, San Francisco, CA 94016" +158896,Lightning Charging Cable,1,14.95,01/06/19 14:59,"971 Spruce St, Portland, OR 97035" +158897,27in FHD Monitor,1,149.99,01/15/19 07:03,"524 Hickory St, Dallas, TX 75001" +158898,iPhone,1,700,01/27/19 09:05,"868 12th St, Seattle, WA 98101" +158899,USB-C Charging Cable,2,11.95,01/12/19 10:53,"245 Church St, Boston, MA 02215" +158900,20in Monitor,1,109.99,01/28/19 09:17,"909 12th St, Los Angeles, CA 90001" +158901,Wired Headphones,1,11.99,01/31/19 12:54,"225 6th St, Los Angeles, CA 90001" +158902,AA Batteries (4-pack),1,3.84,01/14/19 17:25,"404 Main St, Seattle, WA 98101" +158903,Bose SoundSport Headphones,1,99.99,01/03/19 22:02,"712 Dogwood St, San Francisco, CA 94016" +158904,27in FHD Monitor,1,149.99,01/05/19 11:48,"688 Elm St, Boston, MA 02215" +158905,Wired Headphones,1,11.99,01/06/19 18:39,"509 Main St, San Francisco, CA 94016" +158906,Bose SoundSport Headphones,1,99.99,01/02/19 06:35,"751 Lincoln St, Dallas, TX 75001" +158907,iPhone,1,700,01/01/19 19:08,"394 5th St, Los Angeles, CA 90001" +158907,Lightning Charging Cable,1,14.95,01/01/19 19:08,"394 5th St, Los Angeles, CA 90001" +158908,Wired Headphones,2,11.99,01/17/19 08:25,"42 13th St, Austin, TX 73301" +158909,Bose SoundSport Headphones,1,99.99,01/04/19 21:21,"595 Pine St, Boston, MA 02215" +158910,AAA Batteries (4-pack),1,2.99,01/20/19 21:46,"715 6th St, New York City, NY 10001" +158911,USB-C Charging Cable,1,11.95,01/21/19 10:00,"688 14th St, San Francisco, CA 94016" +158912,Vareebadd Phone,1,400,01/14/19 08:22,"425 14th St, San Francisco, CA 94016" +158913,USB-C Charging Cable,1,11.95,01/30/19 20:21,"227 Adams St, New York City, NY 10001" +158914,34in Ultrawide Monitor,1,379.99,01/05/19 18:55,"854 Sunset St, Dallas, TX 75001" +158915,34in Ultrawide Monitor,1,379.99,01/08/19 17:25,"723 13th St, San Francisco, CA 94016" +158916,Apple Airpods Headphones,1,150,01/08/19 05:24,"723 8th St, San Francisco, CA 94016" +158917,Apple Airpods Headphones,1,150,01/31/19 15:58,"843 Elm St, San Francisco, CA 94016" +158918,Flatscreen TV,1,300,01/05/19 03:25,"829 Johnson St, San Francisco, CA 94016" +158918,AA Batteries (4-pack),1,3.84,01/05/19 03:25,"829 Johnson St, San Francisco, CA 94016" +158919,LG Dryer,1,600.0,01/29/19 11:15,"67 Spruce St, Atlanta, GA 30301" +158920,27in FHD Monitor,1,149.99,01/06/19 19:41,"688 Lakeview St, San Francisco, CA 94016" +158921,iPhone,1,700,01/22/19 16:50,"853 14th St, Portland, OR 97035" +158922,Wired Headphones,1,11.99,01/02/19 15:43,"321 Cherry St, San Francisco, CA 94016" +158923,Lightning Charging Cable,1,14.95,01/10/19 18:47,"285 6th St, San Francisco, CA 94016" +158924,USB-C Charging Cable,1,11.95,01/26/19 20:35,"470 Cedar St, Los Angeles, CA 90001" +158925,Wired Headphones,1,11.99,01/17/19 14:04,"570 Johnson St, San Francisco, CA 94016" +158926,USB-C Charging Cable,1,11.95,01/20/19 13:19,"735 Cedar St, Los Angeles, CA 90001" +158927,AA Batteries (4-pack),1,3.84,01/02/19 18:20,"941 River St, San Francisco, CA 94016" +158928,27in FHD Monitor,1,149.99,01/20/19 11:09,"723 5th St, Los Angeles, CA 90001" +158929,ThinkPad Laptop,1,999.99,01/03/19 19:18,"990 1st St, New York City, NY 10001" +158929,Apple Airpods Headphones,1,150,01/03/19 19:18,"990 1st St, New York City, NY 10001" +158930,Wired Headphones,2,11.99,01/12/19 15:06,"468 Center St, Seattle, WA 98101" +158931,AA Batteries (4-pack),2,3.84,01/27/19 14:01,"573 Jefferson St, Seattle, WA 98101" +158932,Apple Airpods Headphones,1,150,01/15/19 08:11,"241 Ridge St, Los Angeles, CA 90001" +158933,AA Batteries (4-pack),1,3.84,01/12/19 14:57,"980 Lake St, Los Angeles, CA 90001" +158934,Wired Headphones,1,11.99,01/26/19 16:42,"231 Johnson St, Los Angeles, CA 90001" +158935,27in FHD Monitor,1,149.99,01/03/19 11:55,"539 Church St, San Francisco, CA 94016" +158936,USB-C Charging Cable,1,11.95,01/21/19 08:54,"48 14th St, New York City, NY 10001" +158937,AAA Batteries (4-pack),1,2.99,01/10/19 11:33,"28 Hill St, San Francisco, CA 94016" +158938,iPhone,1,700,01/31/19 18:30,"626 South St, Boston, MA 02215" +158939,USB-C Charging Cable,1,11.95,01/08/19 18:48,"168 Cherry St, Los Angeles, CA 90001" +158940,Lightning Charging Cable,1,14.95,01/21/19 12:16,"214 Lake St, Los Angeles, CA 90001" +158941,Wired Headphones,1,11.99,01/17/19 19:00,"769 Spruce St, San Francisco, CA 94016" +158942,27in FHD Monitor,1,149.99,01/18/19 11:28,"52 Johnson St, Dallas, TX 75001" +158943,Vareebadd Phone,1,400,01/16/19 17:46,"589 6th St, Los Angeles, CA 90001" +158944,AAA Batteries (4-pack),1,2.99,01/29/19 16:07,"295 Wilson St, Atlanta, GA 30301" +158945,27in FHD Monitor,1,149.99,01/13/19 10:07,"772 5th St, San Francisco, CA 94016" +158946,Flatscreen TV,1,300,01/24/19 21:43,"57 Spruce St, Los Angeles, CA 90001" +158947,Apple Airpods Headphones,1,150,01/19/19 20:40,"718 Jackson St, Seattle, WA 98101" +158948,iPhone,1,700,01/26/19 15:27,"150 North St, Los Angeles, CA 90001" +158949,AA Batteries (4-pack),2,3.84,01/06/19 17:46,"237 South St, Atlanta, GA 30301" +158950,Wired Headphones,1,11.99,01/20/19 17:07,"696 Jefferson St, Boston, MA 02215" +158951,AA Batteries (4-pack),1,3.84,01/15/19 13:35,"471 Willow St, San Francisco, CA 94016" +158952,AA Batteries (4-pack),1,3.84,01/28/19 00:08,"122 10th St, Los Angeles, CA 90001" +158953,34in Ultrawide Monitor,1,379.99,01/31/19 13:24,"930 Lakeview St, New York City, NY 10001" +158954,iPhone,1,700,01/29/19 03:20,"175 14th St, Los Angeles, CA 90001" +158954,Apple Airpods Headphones,1,150,01/29/19 03:20,"175 14th St, Los Angeles, CA 90001" +158954,Bose SoundSport Headphones,1,99.99,01/29/19 03:20,"175 14th St, Los Angeles, CA 90001" +158955,Bose SoundSport Headphones,1,99.99,01/27/19 20:24,"918 Elm St, San Francisco, CA 94016" +158956,Apple Airpods Headphones,1,150,01/21/19 23:05,"360 Cedar St, Seattle, WA 98101" +158957,Apple Airpods Headphones,1,150,01/19/19 18:46,"824 5th St, New York City, NY 10001" +158958,27in 4K Gaming Monitor,1,389.99,01/31/19 09:21,"475 Madison St, San Francisco, CA 94016" +158959,AA Batteries (4-pack),1,3.84,01/04/19 11:44,"118 Hill St, Boston, MA 02215" +158960,USB-C Charging Cable,1,11.95,01/05/19 10:08,"521 7th St, Seattle, WA 98101" +158961,AAA Batteries (4-pack),3,2.99,01/29/19 22:45,"780 Cherry St, Portland, ME 04101" +158962,AAA Batteries (4-pack),1,2.99,01/26/19 10:20,"546 Washington St, San Francisco, CA 94016" +158963,34in Ultrawide Monitor,1,379.99,01/24/19 01:28,"192 10th St, Dallas, TX 75001" +158964,Wired Headphones,2,11.99,01/25/19 19:00,"829 Cedar St, New York City, NY 10001" +158965,Lightning Charging Cable,1,14.95,01/14/19 19:58,"678 11th St, New York City, NY 10001" +158966,Apple Airpods Headphones,1,150,01/09/19 13:18,"105 Lake St, New York City, NY 10001" +158967,27in FHD Monitor,1,149.99,01/27/19 19:37,"733 North St, San Francisco, CA 94016" +158968,Google Phone,1,600,01/07/19 14:17,"970 Hill St, Portland, ME 04101" +158969,USB-C Charging Cable,1,11.95,01/24/19 23:10,"161 North St, Atlanta, GA 30301" +158970,USB-C Charging Cable,1,11.95,01/20/19 08:28,"255 9th St, San Francisco, CA 94016" +158971,AAA Batteries (4-pack),1,2.99,01/11/19 19:06,"109 Ridge St, Atlanta, GA 30301" +158972,Lightning Charging Cable,1,14.95,01/20/19 22:27,"790 Hickory St, San Francisco, CA 94016" +158973,Lightning Charging Cable,1,14.95,01/21/19 11:26,"927 North St, San Francisco, CA 94016" +158974,Apple Airpods Headphones,1,150,01/22/19 13:08,"414 Jefferson St, New York City, NY 10001" +158975,Wired Headphones,1,11.99,01/15/19 21:20,"257 1st St, San Francisco, CA 94016" +158976,Bose SoundSport Headphones,1,99.99,01/22/19 21:39,"127 Johnson St, San Francisco, CA 94016" +158977,27in FHD Monitor,1,149.99,01/03/19 05:09,"472 4th St, Los Angeles, CA 90001" +158978,20in Monitor,1,109.99,01/31/19 16:30,"160 Wilson St, Austin, TX 73301" +158979,Lightning Charging Cable,1,14.95,01/09/19 01:11,"717 Park St, San Francisco, CA 94016" +158980,Wired Headphones,1,11.99,01/19/19 19:04,"492 14th St, Austin, TX 73301" +158981,20in Monitor,1,109.99,01/05/19 13:02,"131 Dogwood St, Seattle, WA 98101" +158982,Lightning Charging Cable,1,14.95,01/27/19 21:38,"637 Cherry St, Atlanta, GA 30301" +158983,27in FHD Monitor,1,149.99,01/30/19 22:16,"592 Cedar St, Atlanta, GA 30301" +158984,USB-C Charging Cable,1,11.95,01/02/19 08:22,"809 Park St, Seattle, WA 98101" +158985,Apple Airpods Headphones,1,150,01/20/19 03:54,"357 Spruce St, Portland, OR 97035" +158986,27in 4K Gaming Monitor,1,389.99,01/01/19 14:43,"111 South St, New York City, NY 10001" +158987,Lightning Charging Cable,2,14.95,01/04/19 10:47,"358 Main St, Dallas, TX 75001" +158988,AAA Batteries (4-pack),1,2.99,01/12/19 12:31,"53 Church St, Los Angeles, CA 90001" +158989,AAA Batteries (4-pack),1,2.99,01/21/19 20:30,"811 12th St, Boston, MA 02215" +158990,LG Dryer,1,600.0,01/05/19 16:52,"271 6th St, Los Angeles, CA 90001" +158991,Wired Headphones,1,11.99,01/27/19 19:32,"388 11th St, Boston, MA 02215" +158992,Wired Headphones,1,11.99,01/07/19 20:04,"111 Park St, Portland, OR 97035" +158993,Apple Airpods Headphones,1,150,01/29/19 15:55,"774 5th St, Boston, MA 02215" +158994,Lightning Charging Cable,1,14.95,01/26/19 11:02,"389 Cedar St, San Francisco, CA 94016" +158995,AA Batteries (4-pack),1,3.84,01/15/19 12:04,"346 Forest St, New York City, NY 10001" +158996,ThinkPad Laptop,1,999.99,01/01/19 07:39,"864 Maple St, San Francisco, CA 94016" +158997,Lightning Charging Cable,1,14.95,01/27/19 14:01,"802 1st St, Los Angeles, CA 90001" +158998,USB-C Charging Cable,1,11.95,01/16/19 09:16,"273 Sunset St, Los Angeles, CA 90001" +158999,Apple Airpods Headphones,1,150,01/04/19 11:58,"198 Walnut St, Austin, TX 73301" +158999,Wired Headphones,1,11.99,01/04/19 11:58,"198 Walnut St, Austin, TX 73301" +159000,Apple Airpods Headphones,1,150,01/19/19 00:02,"585 West St, San Francisco, CA 94016" +159001,AAA Batteries (4-pack),1,2.99,01/20/19 07:49,"495 Wilson St, Dallas, TX 75001" +159002,Lightning Charging Cable,1,14.95,01/06/19 11:09,"316 Church St, San Francisco, CA 94016" +159003,AAA Batteries (4-pack),1,2.99,01/11/19 11:47,"646 10th St, Seattle, WA 98101" +159004,Wired Headphones,1,11.99,01/24/19 08:37,"440 Lakeview St, Los Angeles, CA 90001" +159005,iPhone,1,700,01/01/19 10:11,"57 10th St, Dallas, TX 75001" +159006,Bose SoundSport Headphones,1,99.99,01/10/19 08:59,"549 Highland St, San Francisco, CA 94016" +159007,Lightning Charging Cable,1,14.95,01/19/19 05:24,"173 Forest St, Los Angeles, CA 90001" +159008,AA Batteries (4-pack),2,3.84,01/27/19 19:53,"462 Dogwood St, Seattle, WA 98101" +159009,USB-C Charging Cable,1,11.95,01/09/19 06:34,"964 Pine St, Austin, TX 73301" +159010,AA Batteries (4-pack),1,3.84,01/11/19 15:09,"325 Johnson St, Portland, OR 97035" +159011,Apple Airpods Headphones,1,150,01/27/19 17:47,"217 7th St, Dallas, TX 75001" +159012,Flatscreen TV,1,300,01/19/19 17:16,"327 Willow St, Boston, MA 02215" +159013,Macbook Pro Laptop,1,1700,01/26/19 10:09,"512 West St, San Francisco, CA 94016" +159014,AA Batteries (4-pack),1,3.84,01/24/19 18:14,"905 12th St, Austin, TX 73301" +159015,USB-C Charging Cable,1,11.95,01/04/19 16:08,"392 Hill St, Boston, MA 02215" +159016,Macbook Pro Laptop,1,1700,01/22/19 21:56,"357 River St, Atlanta, GA 30301" +159017,Wired Headphones,1,11.99,01/22/19 22:58,"215 Sunset St, Portland, OR 97035" +159018,27in 4K Gaming Monitor,1,389.99,01/29/19 02:39,"198 Hickory St, New York City, NY 10001" +159019,Wired Headphones,1,11.99,01/06/19 19:49,"924 Johnson St, New York City, NY 10001" +159020,USB-C Charging Cable,1,11.95,01/20/19 21:11,"477 Lakeview St, Boston, MA 02215" +159021,Wired Headphones,1,11.99,01/27/19 17:11,"416 13th St, Portland, OR 97035" +159022,20in Monitor,1,109.99,01/24/19 10:24,"585 Jackson St, Seattle, WA 98101" +159022,AA Batteries (4-pack),1,3.84,01/24/19 10:24,"585 Jackson St, Seattle, WA 98101" +159023,Google Phone,1,600,01/10/19 13:18,"23 Park St, Boston, MA 02215" +159024,34in Ultrawide Monitor,1,379.99,01/04/19 20:13,"604 Cedar St, San Francisco, CA 94016" +159025,AAA Batteries (4-pack),1,2.99,01/24/19 11:19,"130 Adams St, San Francisco, CA 94016" +159026,Wired Headphones,1,11.99,01/06/19 20:58,"261 Meadow St, San Francisco, CA 94016" +159027,27in FHD Monitor,1,149.99,01/07/19 21:11,"163 Washington St, San Francisco, CA 94016" +159028,USB-C Charging Cable,1,11.95,01/31/19 07:07,"400 Cherry St, Austin, TX 73301" +159029,Lightning Charging Cable,1,14.95,01/06/19 06:05,"200 Willow St, Dallas, TX 75001" +159030,AA Batteries (4-pack),1,3.84,01/03/19 10:54,"128 Lake St, Boston, MA 02215" +159031,Google Phone,1,600,01/12/19 20:07,"871 8th St, San Francisco, CA 94016" +159031,USB-C Charging Cable,1,11.95,01/12/19 20:07,"871 8th St, San Francisco, CA 94016" +159032,AA Batteries (4-pack),2,3.84,01/14/19 10:53,"206 River St, New York City, NY 10001" +159033,AAA Batteries (4-pack),6,2.99,01/13/19 12:18,"297 Dogwood St, San Francisco, CA 94016" +159034,34in Ultrawide Monitor,1,379.99,01/28/19 18:58,"289 Johnson St, Seattle, WA 98101" +159035,Vareebadd Phone,1,400,01/07/19 10:30,"685 Pine St, Portland, OR 97035" +159036,Bose SoundSport Headphones,1,99.99,01/28/19 19:57,"933 Sunset St, Seattle, WA 98101" +159037,27in FHD Monitor,1,149.99,01/19/19 17:25,"545 Lincoln St, New York City, NY 10001" +159038,Google Phone,1,600,01/10/19 16:31,"263 Meadow St, San Francisco, CA 94016" +159039,Flatscreen TV,1,300,01/03/19 09:56,"76 5th St, Seattle, WA 98101" +159040,Wired Headphones,1,11.99,01/01/19 17:25,"467 Jefferson St, San Francisco, CA 94016" +159041,Flatscreen TV,1,300,01/08/19 00:15,"994 River St, New York City, NY 10001" +159042,20in Monitor,1,109.99,01/14/19 20:29,"415 Pine St, Los Angeles, CA 90001" +159043,Flatscreen TV,1,300,01/02/19 13:37,"501 Jefferson St, Dallas, TX 75001" +159044,Wired Headphones,1,11.99,01/15/19 00:18,"292 Madison St, Dallas, TX 75001" +159045,27in 4K Gaming Monitor,1,389.99,01/15/19 10:32,"783 9th St, Portland, OR 97035" +159046,Wired Headphones,1,11.99,01/28/19 23:56,"442 Walnut St, New York City, NY 10001" +159047,Lightning Charging Cable,1,14.95,01/05/19 13:55,"352 Chestnut St, Los Angeles, CA 90001" +159048,27in FHD Monitor,1,149.99,01/18/19 17:01,"210 1st St, Los Angeles, CA 90001" +159049,Wired Headphones,1,11.99,01/06/19 12:54,"343 Hickory St, Seattle, WA 98101" +159050,Wired Headphones,1,11.99,01/05/19 19:03,"776 2nd St, Austin, TX 73301" +159051,AA Batteries (4-pack),1,3.84,01/13/19 15:51,"187 Hill St, San Francisco, CA 94016" +159052,Lightning Charging Cable,1,14.95,01/30/19 18:58,"820 1st St, Austin, TX 73301" +159053,Lightning Charging Cable,1,14.95,01/25/19 11:03,"23 Center St, Atlanta, GA 30301" +159054,USB-C Charging Cable,1,11.95,01/17/19 13:32,"896 Cedar St, Boston, MA 02215" +159055,USB-C Charging Cable,1,11.95,01/19/19 10:35,"746 Johnson St, Seattle, WA 98101" +159056,AAA Batteries (4-pack),2,2.99,01/16/19 15:34,"276 South St, Seattle, WA 98101" +159057,AAA Batteries (4-pack),2,2.99,01/06/19 18:50,"608 Lakeview St, New York City, NY 10001" +159058,Apple Airpods Headphones,1,150,01/07/19 00:02,"168 12th St, Los Angeles, CA 90001" +159059,LG Washing Machine,1,600.0,01/30/19 06:31,"422 10th St, San Francisco, CA 94016" +159060,27in 4K Gaming Monitor,1,389.99,01/01/19 12:09,"416 Jefferson St, Seattle, WA 98101" +159061,AA Batteries (4-pack),1,3.84,01/03/19 12:55,"158 Forest St, Austin, TX 73301" +159062,iPhone,1,700,01/29/19 14:41,"520 5th St, San Francisco, CA 94016" +159062,Lightning Charging Cable,1,14.95,01/29/19 14:41,"520 5th St, San Francisco, CA 94016" +159063,Google Phone,1,600,01/28/19 14:05,"508 4th St, Dallas, TX 75001" +159064,27in 4K Gaming Monitor,1,389.99,01/26/19 15:39,"499 11th St, San Francisco, CA 94016" +159065,USB-C Charging Cable,1,11.95,01/07/19 20:49,"863 10th St, Los Angeles, CA 90001" +159066,Flatscreen TV,1,300,01/18/19 09:19,"434 12th St, Austin, TX 73301" +159067,USB-C Charging Cable,1,11.95,01/05/19 11:55,"181 Pine St, Seattle, WA 98101" +159068,Bose SoundSport Headphones,1,99.99,01/07/19 20:49,"112 Church St, Seattle, WA 98101" +159069,Lightning Charging Cable,1,14.95,01/17/19 14:57,"989 Washington St, Boston, MA 02215" +159070,AA Batteries (4-pack),1,3.84,01/24/19 09:29,"534 Spruce St, San Francisco, CA 94016" +159071,USB-C Charging Cable,1,11.95,01/24/19 10:13,"883 14th St, Los Angeles, CA 90001" +159072,Macbook Pro Laptop,1,1700,01/05/19 12:50,"591 1st St, San Francisco, CA 94016" +159073,USB-C Charging Cable,1,11.95,01/23/19 20:02,"898 Cherry St, Austin, TX 73301" +159074,Wired Headphones,1,11.99,01/31/19 17:25,"919 10th St, San Francisco, CA 94016" +159075,Lightning Charging Cable,1,14.95,01/07/19 11:05,"342 Jackson St, Los Angeles, CA 90001" +159076,Macbook Pro Laptop,1,1700,01/04/19 12:00,"494 Maple St, Dallas, TX 75001" +159077,AA Batteries (4-pack),1,3.84,01/09/19 19:46,"698 7th St, San Francisco, CA 94016" +159078,AA Batteries (4-pack),2,3.84,01/22/19 12:48,"887 Main St, Los Angeles, CA 90001" +159079,AA Batteries (4-pack),1,3.84,01/26/19 12:21,"270 West St, San Francisco, CA 94016" +159080,AA Batteries (4-pack),1,3.84,01/23/19 12:54,"234 River St, San Francisco, CA 94016" +159081,Lightning Charging Cable,1,14.95,01/09/19 17:21,"230 2nd St, New York City, NY 10001" +159082,iPhone,1,700,01/03/19 14:34,"286 Elm St, Seattle, WA 98101" +159083,Wired Headphones,1,11.99,01/20/19 16:12,"992 Dogwood St, Seattle, WA 98101" +159084,Flatscreen TV,1,300,01/20/19 17:43,"109 11th St, Seattle, WA 98101" +159085,Apple Airpods Headphones,1,150,01/24/19 18:48,"855 Washington St, New York City, NY 10001" +159086,Flatscreen TV,1,300,01/07/19 00:02,"488 2nd St, San Francisco, CA 94016" +159087,34in Ultrawide Monitor,1,379.99,01/29/19 19:46,"861 2nd St, Seattle, WA 98101" +159088,Bose SoundSport Headphones,1,99.99,01/20/19 14:59,"569 Ridge St, Dallas, TX 75001" +159089,Lightning Charging Cable,1,14.95,01/06/19 08:13,"473 Elm St, Los Angeles, CA 90001" +159090,USB-C Charging Cable,1,11.95,01/14/19 15:15,"142 Wilson St, Boston, MA 02215" +159091,AA Batteries (4-pack),1,3.84,01/21/19 19:22,"542 2nd St, Seattle, WA 98101" +159092,Bose SoundSport Headphones,1,99.99,01/12/19 16:25,"852 Park St, Los Angeles, CA 90001" +159092,ThinkPad Laptop,1,999.99,01/12/19 16:25,"852 Park St, Los Angeles, CA 90001" +159093,USB-C Charging Cable,1,11.95,01/04/19 13:12,"666 8th St, New York City, NY 10001" +159094,AAA Batteries (4-pack),1,2.99,01/22/19 10:57,"429 Wilson St, Boston, MA 02215" +159095,AA Batteries (4-pack),1,3.84,01/11/19 12:05,"659 12th St, New York City, NY 10001" +159096,27in FHD Monitor,1,149.99,01/03/19 20:32,"164 Cedar St, Portland, ME 04101" +159097,USB-C Charging Cable,1,11.95,01/28/19 08:54,"318 Jefferson St, San Francisco, CA 94016" +159098,AA Batteries (4-pack),1,3.84,01/30/19 21:27,"806 Jackson St, San Francisco, CA 94016" +159099,AAA Batteries (4-pack),1,2.99,01/07/19 11:52,"610 13th St, Dallas, TX 75001" +159100,Apple Airpods Headphones,1,150,01/10/19 12:19,"399 Lincoln St, San Francisco, CA 94016" +159101,Wired Headphones,1,11.99,01/31/19 14:28,"932 12th St, Seattle, WA 98101" +159102,AA Batteries (4-pack),2,3.84,01/15/19 13:38,"607 Church St, New York City, NY 10001" +159103,USB-C Charging Cable,1,11.95,01/05/19 12:06,"913 Wilson St, New York City, NY 10001" +159104,Apple Airpods Headphones,1,150,01/18/19 16:00,"438 Lakeview St, Portland, OR 97035" +159105,USB-C Charging Cable,1,11.95,01/02/19 14:39,"690 Lakeview St, Boston, MA 02215" +159106,Wired Headphones,1,11.99,01/06/19 11:55,"98 7th St, Portland, OR 97035" +159107,27in FHD Monitor,1,149.99,01/30/19 16:44,"424 Ridge St, Los Angeles, CA 90001" +159108,Lightning Charging Cable,1,14.95,01/03/19 08:15,"719 12th St, Atlanta, GA 30301" +159109,Apple Airpods Headphones,1,150,01/02/19 15:01,"272 Jefferson St, New York City, NY 10001" +159110,Lightning Charging Cable,1,14.95,01/02/19 18:25,"456 Willow St, Los Angeles, CA 90001" +159111,AAA Batteries (4-pack),1,2.99,01/02/19 22:00,"88 12th St, Atlanta, GA 30301" +159112,20in Monitor,1,109.99,01/12/19 20:32,"610 Sunset St, Dallas, TX 75001" +159113,Wired Headphones,1,11.99,01/23/19 16:04,"326 6th St, Los Angeles, CA 90001" +159114,Wired Headphones,1,11.99,01/30/19 01:46,"794 Forest St, Portland, OR 97035" +159115,USB-C Charging Cable,1,11.95,01/11/19 22:13,"186 12th St, Boston, MA 02215" +159116,Apple Airpods Headphones,1,150,01/01/19 12:52,"944 8th St, San Francisco, CA 94016" +159117,Wired Headphones,1,11.99,01/31/19 17:50,"310 Park St, San Francisco, CA 94016" +159118,USB-C Charging Cable,1,11.95,01/14/19 19:53,"594 Church St, Boston, MA 02215" +159119,iPhone,1,700,01/13/19 15:42,"621 Willow St, New York City, NY 10001" +159120,USB-C Charging Cable,1,11.95,01/31/19 22:57,"527 6th St, San Francisco, CA 94016" +159120,Bose SoundSport Headphones,1,99.99,01/31/19 22:57,"527 6th St, San Francisco, CA 94016" +159121,USB-C Charging Cable,1,11.95,01/12/19 06:43,"753 Hickory St, New York City, NY 10001" +159122,AAA Batteries (4-pack),1,2.99,01/19/19 18:02,"359 14th St, New York City, NY 10001" +159123,AA Batteries (4-pack),1,3.84,01/30/19 20:51,"67 Cherry St, San Francisco, CA 94016" +159124,Macbook Pro Laptop,1,1700,01/02/19 04:35,"206 2nd St, New York City, NY 10001" +159125,Macbook Pro Laptop,1,1700,01/16/19 21:01,"444 Lakeview St, Boston, MA 02215" +159126,Bose SoundSport Headphones,1,99.99,01/14/19 14:44,"484 Pine St, San Francisco, CA 94016" +159127,Google Phone,1,600,01/24/19 20:24,"290 Cedar St, Dallas, TX 75001" +159128,Wired Headphones,1,11.99,01/06/19 11:31,"715 13th St, Seattle, WA 98101" +159129,iPhone,1,700,01/07/19 07:13,"603 Dogwood St, San Francisco, CA 94016" +159129,Wired Headphones,1,11.99,01/07/19 07:13,"603 Dogwood St, San Francisco, CA 94016" +159130,Apple Airpods Headphones,1,150,01/31/19 21:06,"252 6th St, San Francisco, CA 94016" +159131,AAA Batteries (4-pack),1,2.99,02/01/19 00:16,"65 Elm St, Los Angeles, CA 90001" +159132,AA Batteries (4-pack),2,3.84,01/03/19 13:08,"707 5th St, New York City, NY 10001" +159133,USB-C Charging Cable,1,11.95,01/27/19 18:13,"828 Center St, San Francisco, CA 94016" +159134,USB-C Charging Cable,1,11.95,01/18/19 19:25,"858 River St, Dallas, TX 75001" +159135,20in Monitor,1,109.99,01/09/19 09:57,"662 Madison St, San Francisco, CA 94016" +159136,AAA Batteries (4-pack),3,2.99,01/10/19 15:56,"807 11th St, Los Angeles, CA 90001" +159137,Google Phone,1,600,01/20/19 08:11,"690 Lincoln St, New York City, NY 10001" +159138,Lightning Charging Cable,1,14.95,01/15/19 00:37,"468 Johnson St, Los Angeles, CA 90001" +159139,Bose SoundSport Headphones,1,99.99,01/02/19 20:06,"188 Cedar St, San Francisco, CA 94016" +159140,Apple Airpods Headphones,1,150,01/24/19 18:09,"369 Church St, Los Angeles, CA 90001" +159141,AA Batteries (4-pack),1,3.84,01/04/19 08:33,"746 Center St, Dallas, TX 75001" +159142,USB-C Charging Cable,1,11.95,01/16/19 21:47,"633 10th St, Boston, MA 02215" +159143,34in Ultrawide Monitor,1,379.99,01/24/19 15:40,"114 14th St, Austin, TX 73301" +159144,Macbook Pro Laptop,1,1700,01/27/19 12:50,"47 5th St, New York City, NY 10001" +159145,Lightning Charging Cable,1,14.95,01/24/19 06:21,"910 Wilson St, New York City, NY 10001" +159146,Wired Headphones,1,11.99,01/01/19 13:17,"50 Meadow St, San Francisco, CA 94016" +159147,Apple Airpods Headphones,1,150,01/07/19 16:39,"572 Hickory St, San Francisco, CA 94016" +159148,27in FHD Monitor,1,149.99,01/29/19 10:20,"14 Ridge St, San Francisco, CA 94016" +159149,USB-C Charging Cable,1,11.95,01/30/19 09:58,"333 Forest St, Dallas, TX 75001" +159150,AAA Batteries (4-pack),1,2.99,01/18/19 20:25,"839 Elm St, Boston, MA 02215" +159151,34in Ultrawide Monitor,1,379.99,01/20/19 21:04,"298 12th St, New York City, NY 10001" +159152,Lightning Charging Cable,2,14.95,01/15/19 14:40,"663 2nd St, San Francisco, CA 94016" +159153,Google Phone,1,600,01/21/19 14:39,"604 Wilson St, Portland, OR 97035" +159154,AAA Batteries (4-pack),3,2.99,01/05/19 10:56,"771 Church St, San Francisco, CA 94016" +159155,Apple Airpods Headphones,1,150,01/31/19 11:07,"127 Lake St, Atlanta, GA 30301" +159156,20in Monitor,1,109.99,01/15/19 09:14,"849 River St, Portland, ME 04101" +159157,Macbook Pro Laptop,1,1700,01/17/19 11:14,"66 Spruce St, Atlanta, GA 30301" +159158,Lightning Charging Cable,1,14.95,01/23/19 12:33,"294 Wilson St, New York City, NY 10001" +159159,AA Batteries (4-pack),2,3.84,01/30/19 09:07,"901 Church St, Los Angeles, CA 90001" +159160,Wired Headphones,1,11.99,01/26/19 18:40,"716 4th St, San Francisco, CA 94016" +159161,Lightning Charging Cable,1,14.95,01/31/19 09:23,"252 8th St, New York City, NY 10001" +159162,iPhone,1,700,01/17/19 16:22,"631 Walnut St, San Francisco, CA 94016" +159162,Apple Airpods Headphones,1,150,01/17/19 16:22,"631 Walnut St, San Francisco, CA 94016" +159162,Wired Headphones,1,11.99,01/17/19 16:22,"631 Walnut St, San Francisco, CA 94016" +159163,Flatscreen TV,1,300,01/22/19 11:59,"205 Madison St, Los Angeles, CA 90001" +159164,Flatscreen TV,1,300,01/04/19 19:04,"163 14th St, Atlanta, GA 30301" +159165,27in 4K Gaming Monitor,1,389.99,01/18/19 12:12,"119 2nd St, San Francisco, CA 94016" +159166,Google Phone,1,600,01/02/19 12:39,"93 Highland St, New York City, NY 10001" +159167,27in 4K Gaming Monitor,1,389.99,01/16/19 16:52,"734 West St, Atlanta, GA 30301" +159168,USB-C Charging Cable,2,11.95,01/09/19 10:19,"431 Lincoln St, Seattle, WA 98101" +159169,27in 4K Gaming Monitor,1,389.99,01/18/19 10:16,"765 Park St, San Francisco, CA 94016" +159170,27in 4K Gaming Monitor,1,389.99,01/27/19 18:12,"283 7th St, San Francisco, CA 94016" +159171,Wired Headphones,1,11.99,01/31/19 07:05,"572 Main St, Austin, TX 73301" +159172,Wired Headphones,1,11.99,01/26/19 13:32,"527 8th St, New York City, NY 10001" +159173,Wired Headphones,1,11.99,01/09/19 06:17,"250 Lake St, San Francisco, CA 94016" +159174,34in Ultrawide Monitor,1,379.99,01/04/19 20:28,"572 4th St, Atlanta, GA 30301" +159175,Flatscreen TV,1,300,01/10/19 22:17,"755 5th St, Boston, MA 02215" +159176,Bose SoundSport Headphones,1,99.99,01/21/19 21:47,"658 10th St, New York City, NY 10001" +159177,Macbook Pro Laptop,1,1700,01/29/19 11:27,"309 Jackson St, New York City, NY 10001" +159178,Flatscreen TV,1,300,01/04/19 19:03,"855 12th St, San Francisco, CA 94016" +159179,Google Phone,1,600,01/25/19 15:40,"860 Lake St, New York City, NY 10001" +159180,Vareebadd Phone,1,400,01/12/19 12:34,"443 12th St, Los Angeles, CA 90001" +159180,USB-C Charging Cable,1,11.95,01/12/19 12:34,"443 12th St, Los Angeles, CA 90001" +159181,USB-C Charging Cable,1,11.95,01/17/19 21:23,"403 Walnut St, Los Angeles, CA 90001" +159182,Bose SoundSport Headphones,1,99.99,01/28/19 20:39,"825 11th St, San Francisco, CA 94016" +159183,AA Batteries (4-pack),1,3.84,01/08/19 05:28,"617 Willow St, San Francisco, CA 94016" +159184,USB-C Charging Cable,1,11.95,01/30/19 20:51,"461 Cherry St, San Francisco, CA 94016" +159185,AA Batteries (4-pack),1,3.84,01/12/19 09:14,"508 Hickory St, Boston, MA 02215" +159186,27in FHD Monitor,1,149.99,01/23/19 21:38,"977 8th St, Austin, TX 73301" +159187,27in FHD Monitor,1,149.99,01/02/19 23:58,"264 Walnut St, San Francisco, CA 94016" +159188,Apple Airpods Headphones,1,150,01/09/19 19:46,"341 Main St, San Francisco, CA 94016" +159189,Apple Airpods Headphones,1,150,01/12/19 19:15,"101 Highland St, Portland, ME 04101" +159190,Bose SoundSport Headphones,1,99.99,01/17/19 11:52,"710 2nd St, Atlanta, GA 30301" +159191,34in Ultrawide Monitor,1,379.99,01/08/19 19:24,"948 Johnson St, San Francisco, CA 94016" +159192,USB-C Charging Cable,1,11.95,01/29/19 14:06,"596 Maple St, Boston, MA 02215" +159193,Lightning Charging Cable,1,14.95,01/11/19 12:51,"221 Willow St, Portland, OR 97035" +159194,USB-C Charging Cable,1,11.95,01/01/19 16:37,"327 Center St, San Francisco, CA 94016" +159195,Bose SoundSport Headphones,1,99.99,01/17/19 19:51,"814 Forest St, San Francisco, CA 94016" +159196,Flatscreen TV,1,300,01/27/19 23:47,"979 11th St, Boston, MA 02215" +159197,Lightning Charging Cable,1,14.95,01/18/19 23:21,"272 Maple St, Los Angeles, CA 90001" +159198,Macbook Pro Laptop,1,1700,01/08/19 17:06,"573 South St, Atlanta, GA 30301" +159199,Apple Airpods Headphones,1,150,01/18/19 16:10,"109 4th St, Portland, ME 04101" +159200,34in Ultrawide Monitor,1,379.99,01/06/19 18:15,"813 2nd St, Los Angeles, CA 90001" +159201,USB-C Charging Cable,1,11.95,01/28/19 07:52,"932 Dogwood St, Seattle, WA 98101" +159202,Apple Airpods Headphones,1,150,01/01/19 14:52,"273 Lincoln St, New York City, NY 10001" +159203,iPhone,1,700,01/16/19 12:35,"716 7th St, Austin, TX 73301" +159204,Google Phone,1,600,01/11/19 19:26,"906 Pine St, Portland, OR 97035" +159205,USB-C Charging Cable,1,11.95,01/05/19 09:32,"61 North St, New York City, NY 10001" +159206,USB-C Charging Cable,2,11.95,01/27/19 18:46,"744 Willow St, San Francisco, CA 94016" +159207,AA Batteries (4-pack),1,3.84,01/06/19 19:14,"278 Forest St, Los Angeles, CA 90001" +159208,27in FHD Monitor,1,149.99,01/30/19 13:22,"189 Park St, San Francisco, CA 94016" +159209,AAA Batteries (4-pack),1,2.99,01/25/19 13:27,"135 Meadow St, San Francisco, CA 94016" +159210,Apple Airpods Headphones,1,150,01/13/19 21:06,"206 Jackson St, New York City, NY 10001" +159211,Apple Airpods Headphones,1,150,01/13/19 01:23,"722 Dogwood St, San Francisco, CA 94016" +159212,Wired Headphones,1,11.99,01/13/19 08:09,"861 River St, New York City, NY 10001" +159213,Lightning Charging Cable,1,14.95,01/22/19 08:25,"424 12th St, Boston, MA 02215" +159214,USB-C Charging Cable,1,11.95,01/16/19 08:26,"228 Lincoln St, Los Angeles, CA 90001" +159215,Lightning Charging Cable,1,14.95,01/28/19 18:40,"880 2nd St, New York City, NY 10001" +159216,20in Monitor,1,109.99,01/03/19 11:44,"4 Walnut St, Seattle, WA 98101" +159217,34in Ultrawide Monitor,1,379.99,01/19/19 21:33,"283 1st St, New York City, NY 10001" +159218,AA Batteries (4-pack),1,3.84,01/02/19 18:02,"730 10th St, Austin, TX 73301" +159219,Lightning Charging Cable,1,14.95,01/09/19 21:19,"831 13th St, Atlanta, GA 30301" +159220,Lightning Charging Cable,1,14.95,01/12/19 08:07,"346 Hill St, New York City, NY 10001" +159221,Vareebadd Phone,1,400,01/08/19 06:44,"336 Church St, Austin, TX 73301" +159221,USB-C Charging Cable,1,11.95,01/08/19 06:44,"336 Church St, Austin, TX 73301" +159222,34in Ultrawide Monitor,1,379.99,01/02/19 11:26,"505 Elm St, San Francisco, CA 94016" +159223,Bose SoundSport Headphones,1,99.99,01/12/19 10:56,"992 Johnson St, Atlanta, GA 30301" +159224,Apple Airpods Headphones,1,150,01/19/19 21:05,"311 8th St, San Francisco, CA 94016" +159225,USB-C Charging Cable,1,11.95,01/20/19 19:34,"24 Madison St, Los Angeles, CA 90001" +159226,Apple Airpods Headphones,1,150,01/10/19 18:19,"72 Hickory St, Los Angeles, CA 90001" +159227,LG Washing Machine,1,600.0,01/07/19 21:02,"78 Adams St, Los Angeles, CA 90001" +159228,AA Batteries (4-pack),1,3.84,01/15/19 07:02,"780 2nd St, San Francisco, CA 94016" +159229,USB-C Charging Cable,1,11.95,01/24/19 14:48,"149 12th St, Seattle, WA 98101" +159230,Wired Headphones,1,11.99,01/13/19 20:14,"100 Sunset St, San Francisco, CA 94016" +159231,AA Batteries (4-pack),1,3.84,01/15/19 21:44,"67 Hill St, Austin, TX 73301" +159232,AA Batteries (4-pack),1,3.84,01/25/19 19:30,"112 Madison St, Dallas, TX 75001" +159233,Apple Airpods Headphones,1,150,01/03/19 19:49,"610 West St, Atlanta, GA 30301" +159234,Wired Headphones,1,11.99,01/08/19 22:15,"228 7th St, San Francisco, CA 94016" +159235,AAA Batteries (4-pack),2,2.99,01/05/19 20:30,"543 Church St, Los Angeles, CA 90001" +159236,Bose SoundSport Headphones,1,99.99,01/28/19 12:47,"623 Lincoln St, San Francisco, CA 94016" +159237,Wired Headphones,1,11.99,01/31/19 13:13,"381 Spruce St, San Francisco, CA 94016" +159238,AAA Batteries (4-pack),1,2.99,01/11/19 17:00,"243 Spruce St, Los Angeles, CA 90001" +159239,LG Dryer,1,600.0,01/03/19 13:14,"246 9th St, Atlanta, GA 30301" +159240,Google Phone,1,600,01/11/19 14:02,"696 Highland St, San Francisco, CA 94016" +159241,USB-C Charging Cable,1,11.95,01/30/19 10:36,"31 Wilson St, Seattle, WA 98101" +159242,USB-C Charging Cable,1,11.95,01/02/19 14:59,"107 11th St, San Francisco, CA 94016" +159243,USB-C Charging Cable,1,11.95,01/02/19 10:57,"706 6th St, Portland, OR 97035" +159244,Bose SoundSport Headphones,1,99.99,01/01/19 15:22,"553 Ridge St, Los Angeles, CA 90001" +159245,AAA Batteries (4-pack),1,2.99,01/13/19 19:46,"608 13th St, San Francisco, CA 94016" +159246,Apple Airpods Headphones,1,150,01/25/19 19:25,"774 Cedar St, Atlanta, GA 30301" +159247,Lightning Charging Cable,1,14.95,01/14/19 18:08,"543 Spruce St, Boston, MA 02215" +159248,ThinkPad Laptop,1,999.99,01/04/19 10:57,"272 4th St, Portland, OR 97035" +159249,Bose SoundSport Headphones,1,99.99,01/31/19 10:00,"256 Cherry St, Dallas, TX 75001" +159250,Wired Headphones,1,11.99,01/28/19 10:30,"410 6th St, San Francisco, CA 94016" +159251,Google Phone,1,600,01/23/19 14:27,"543 Cherry St, Atlanta, GA 30301" +159252,AAA Batteries (4-pack),1,2.99,01/29/19 11:57,"331 Meadow St, San Francisco, CA 94016" +159253,AAA Batteries (4-pack),2,2.99,01/24/19 13:55,"223 Church St, San Francisco, CA 94016" +159254,Lightning Charging Cable,1,14.95,01/08/19 14:44,"869 Pine St, New York City, NY 10001" +159255,Apple Airpods Headphones,1,150,01/20/19 10:18,"156 Highland St, Austin, TX 73301" +159256,20in Monitor,1,109.99,02/01/19 01:00,"607 Highland St, San Francisco, CA 94016" +159257,Bose SoundSport Headphones,1,99.99,01/22/19 19:18,"225 Chestnut St, San Francisco, CA 94016" +159257,Apple Airpods Headphones,1,150,01/22/19 19:18,"225 Chestnut St, San Francisco, CA 94016" +159258,USB-C Charging Cable,1,11.95,01/16/19 18:22,"643 South St, Los Angeles, CA 90001" +159259,USB-C Charging Cable,1,11.95,01/05/19 23:56,"488 1st St, Los Angeles, CA 90001" +159260,AAA Batteries (4-pack),1,2.99,01/21/19 13:11,"999 River St, Los Angeles, CA 90001" +,,,,, +159261,Apple Airpods Headphones,1,150,01/10/19 14:23,"752 Church St, San Francisco, CA 94016" +159262,Bose SoundSport Headphones,1,99.99,01/02/19 15:24,"732 Ridge St, San Francisco, CA 94016" +159263,AAA Batteries (4-pack),3,2.99,01/01/19 18:31,"293 Meadow St, Atlanta, GA 30301" +159264,Macbook Pro Laptop,1,1700,01/04/19 17:05,"338 Dogwood St, San Francisco, CA 94016" +159265,Bose SoundSport Headphones,1,99.99,01/20/19 07:26,"173 Hill St, Dallas, TX 75001" +159266,USB-C Charging Cable,2,11.95,01/19/19 17:34,"670 11th St, New York City, NY 10001" +159267,Wired Headphones,1,11.99,01/19/19 11:28,"335 7th St, San Francisco, CA 94016" +159268,Flatscreen TV,1,300,01/17/19 17:27,"114 Lakeview St, Portland, OR 97035" +159269,AAA Batteries (4-pack),1,2.99,01/22/19 09:01,"12 Lincoln St, Portland, OR 97035" +159270,Macbook Pro Laptop,1,1700,01/05/19 17:25,"981 North St, San Francisco, CA 94016" +159271,Apple Airpods Headphones,1,150,01/23/19 15:53,"488 Spruce St, San Francisco, CA 94016" +159272,AAA Batteries (4-pack),3,2.99,01/30/19 07:00,"164 7th St, Dallas, TX 75001" +159273,AAA Batteries (4-pack),1,2.99,01/13/19 11:30,"762 9th St, Los Angeles, CA 90001" +159274,Lightning Charging Cable,1,14.95,01/22/19 21:18,"576 Meadow St, Los Angeles, CA 90001" +159275,USB-C Charging Cable,1,11.95,01/29/19 17:24,"627 Main St, Seattle, WA 98101" +159276,Apple Airpods Headphones,1,150,01/26/19 11:43,"289 Highland St, Atlanta, GA 30301" +159277,AA Batteries (4-pack),1,3.84,01/30/19 18:21,"333 Spruce St, San Francisco, CA 94016" +159278,AAA Batteries (4-pack),1,2.99,01/31/19 20:43,"211 Lake St, New York City, NY 10001" +159279,ThinkPad Laptop,1,999.99,01/31/19 19:14,"123 Walnut St, New York City, NY 10001" +159280,Lightning Charging Cable,1,14.95,01/13/19 12:27,"454 12th St, San Francisco, CA 94016" +159281,iPhone,1,700,01/08/19 20:58,"589 5th St, Atlanta, GA 30301" +159282,Lightning Charging Cable,1,14.95,01/25/19 10:52,"804 Hill St, Boston, MA 02215" +159283,Macbook Pro Laptop,1,1700,01/06/19 14:14,"528 Center St, Portland, OR 97035" +159284,AA Batteries (4-pack),1,3.84,01/12/19 13:51,"182 Center St, New York City, NY 10001" +159285,34in Ultrawide Monitor,1,379.99,01/18/19 23:53,"224 Jackson St, Boston, MA 02215" +159286,20in Monitor,1,109.99,01/06/19 10:09,"673 6th St, Seattle, WA 98101" +159287,ThinkPad Laptop,1,999.99,01/13/19 22:09,"729 Jefferson St, Atlanta, GA 30301" +159288,iPhone,1,700,01/12/19 12:29,"28 Hill St, Boston, MA 02215" +159289,Lightning Charging Cable,1,14.95,01/21/19 22:03,"666 Walnut St, Los Angeles, CA 90001" +159290,USB-C Charging Cable,1,11.95,01/10/19 00:33,"79 Dogwood St, Los Angeles, CA 90001" +159291,USB-C Charging Cable,1,11.95,01/01/19 06:49,"362 10th St, Los Angeles, CA 90001" +159292,Apple Airpods Headphones,1,150,01/01/19 23:10,"4 Johnson St, Atlanta, GA 30301" +159293,iPhone,1,700,01/31/19 01:00,"728 10th St, Portland, ME 04101" +159294,Wired Headphones,1,11.99,01/11/19 14:31,"338 Johnson St, San Francisco, CA 94016" +159295,Lightning Charging Cable,1,14.95,01/10/19 16:15,"519 4th St, Los Angeles, CA 90001" +159296,AA Batteries (4-pack),1,3.84,01/02/19 09:09,"588 North St, Dallas, TX 75001" +159296,USB-C Charging Cable,1,11.95,01/02/19 09:09,"588 North St, Dallas, TX 75001" +159297,iPhone,1,700,01/30/19 19:09,"541 8th St, San Francisco, CA 94016" +159298,Apple Airpods Headphones,1,150,01/27/19 01:06,"761 Ridge St, Los Angeles, CA 90001" +159299,iPhone,1,700,01/04/19 08:14,"764 Spruce St, Seattle, WA 98101" +159299,Lightning Charging Cable,1,14.95,01/04/19 08:14,"764 Spruce St, Seattle, WA 98101" +159300,Wired Headphones,1,11.99,01/11/19 17:18,"33 1st St, San Francisco, CA 94016" +159301,iPhone,1,700,01/19/19 09:59,"719 14th St, Seattle, WA 98101" +159302,USB-C Charging Cable,1,11.95,01/01/19 14:01,"370 Cedar St, Seattle, WA 98101" +159303,LG Washing Machine,1,600.0,01/16/19 17:23,"488 Sunset St, New York City, NY 10001" +159304,Flatscreen TV,1,300,01/20/19 09:06,"990 8th St, Los Angeles, CA 90001" +159305,Bose SoundSport Headphones,1,99.99,01/10/19 18:51,"403 Washington St, San Francisco, CA 94016" +159306,AA Batteries (4-pack),1,3.84,01/18/19 15:06,"375 Pine St, San Francisco, CA 94016" +159307,USB-C Charging Cable,1,11.95,01/27/19 17:54,"508 Ridge St, New York City, NY 10001" +159308,AA Batteries (4-pack),1,3.84,01/23/19 23:18,"687 11th St, Portland, OR 97035" +159309,Wired Headphones,1,11.99,01/19/19 23:41,"85 Sunset St, Boston, MA 02215" +159310,Bose SoundSport Headphones,1,99.99,01/25/19 00:49,"867 6th St, New York City, NY 10001" +159311,AAA Batteries (4-pack),1,2.99,01/10/19 11:52,"640 Church St, Los Angeles, CA 90001" +159312,USB-C Charging Cable,1,11.95,01/19/19 00:45,"966 7th St, Los Angeles, CA 90001" +159313,USB-C Charging Cable,1,11.95,01/26/19 22:25,"471 Jackson St, New York City, NY 10001" +159314,Wired Headphones,1,11.99,01/15/19 11:30,"828 14th St, Austin, TX 73301" +159315,AA Batteries (4-pack),1,3.84,01/17/19 17:59,"527 Jefferson St, New York City, NY 10001" +159316,Wired Headphones,1,11.99,01/01/19 23:32,"719 Hickory St, Seattle, WA 98101" +159317,Wired Headphones,1,11.99,01/23/19 18:26,"83 Jefferson St, San Francisco, CA 94016" +159318,AAA Batteries (4-pack),1,2.99,01/07/19 18:09,"380 Dogwood St, Boston, MA 02215" +159319,AA Batteries (4-pack),1,3.84,01/27/19 16:04,"618 Maple St, Dallas, TX 75001" +159320,Apple Airpods Headphones,1,150,01/29/19 11:03,"137 14th St, Los Angeles, CA 90001" +159321,USB-C Charging Cable,1,11.95,01/01/19 18:49,"462 Lake St, San Francisco, CA 94016" +159322,AAA Batteries (4-pack),1,2.99,01/09/19 02:01,"116 Lake St, Austin, TX 73301" +159323,Wired Headphones,1,11.99,01/31/19 20:37,"776 Forest St, Boston, MA 02215" +159324,27in FHD Monitor,1,149.99,01/10/19 15:37,"106 Lakeview St, Atlanta, GA 30301" +159325,iPhone,1,700,01/19/19 16:10,"662 Elm St, San Francisco, CA 94016" +159326,AA Batteries (4-pack),1,3.84,01/26/19 12:50,"778 Ridge St, San Francisco, CA 94016" +159327,Google Phone,1,600,01/05/19 14:14,"869 Johnson St, San Francisco, CA 94016" +159328,Wired Headphones,1,11.99,01/01/19 06:16,"903 Spruce St, Boston, MA 02215" +159329,Macbook Pro Laptop,1,1700,01/19/19 22:35,"844 13th St, San Francisco, CA 94016" +159330,Google Phone,1,600,01/09/19 15:16,"469 14th St, Dallas, TX 75001" +159331,Bose SoundSport Headphones,1,99.99,01/10/19 21:44,"505 Chestnut St, Seattle, WA 98101" +159332,20in Monitor,1,109.99,01/26/19 17:44,"421 West St, Seattle, WA 98101" +159333,iPhone,1,700,01/20/19 21:22,"674 2nd St, Los Angeles, CA 90001" +159334,Wired Headphones,1,11.99,01/06/19 21:31,"380 1st St, Dallas, TX 75001" +159335,Lightning Charging Cable,1,14.95,01/21/19 11:52,"969 Adams St, Boston, MA 02215" +159336,Flatscreen TV,1,300,01/07/19 15:03,"925 6th St, Portland, OR 97035" +159337,Flatscreen TV,1,300,01/13/19 10:24,"149 Main St, Boston, MA 02215" +159338,34in Ultrawide Monitor,1,379.99,01/18/19 20:27,"506 Cedar St, Austin, TX 73301" +159339,Lightning Charging Cable,1,14.95,01/20/19 09:12,"440 11th St, Atlanta, GA 30301" +159340,AAA Batteries (4-pack),2,2.99,01/18/19 13:36,"917 Elm St, Atlanta, GA 30301" +159341,Apple Airpods Headphones,1,150,01/07/19 11:21,"884 West St, Los Angeles, CA 90001" +159342,Lightning Charging Cable,1,14.95,01/24/19 11:06,"284 Sunset St, San Francisco, CA 94016" +159343,USB-C Charging Cable,1,11.95,01/17/19 16:34,"41 10th St, Seattle, WA 98101" +159344,Lightning Charging Cable,2,14.95,01/12/19 14:44,"252 Forest St, Atlanta, GA 30301" +159345,20in Monitor,1,109.99,01/29/19 13:09,"638 Spruce St, Seattle, WA 98101" +159346,USB-C Charging Cable,1,11.95,01/27/19 19:57,"772 Park St, Seattle, WA 98101" +159347,Lightning Charging Cable,1,14.95,01/15/19 15:46,"684 Madison St, San Francisco, CA 94016" +159348,iPhone,1,700,01/29/19 11:16,"195 5th St, Boston, MA 02215" +159349,AA Batteries (4-pack),2,3.84,01/16/19 09:48,"303 Wilson St, New York City, NY 10001" +159350,Bose SoundSport Headphones,1,99.99,01/21/19 19:14,"725 Lakeview St, Austin, TX 73301" +159351,Lightning Charging Cable,1,14.95,01/15/19 10:52,"2 Hill St, New York City, NY 10001" +159352,Wired Headphones,1,11.99,01/24/19 19:03,"87 Pine St, Los Angeles, CA 90001" +159353,iPhone,1,700,01/08/19 09:47,"948 14th St, New York City, NY 10001" +159354,34in Ultrawide Monitor,1,379.99,01/04/19 12:08,"799 Highland St, New York City, NY 10001" +159355,Bose SoundSport Headphones,1,99.99,01/18/19 13:12,"10 River St, New York City, NY 10001" +159356,USB-C Charging Cable,1,11.95,01/13/19 09:38,"713 Chestnut St, San Francisco, CA 94016" +159357,ThinkPad Laptop,1,999.99,01/12/19 14:52,"658 Dogwood St, Portland, OR 97035" +159358,iPhone,1,700,01/25/19 03:43,"434 Johnson St, San Francisco, CA 94016" +159359,27in 4K Gaming Monitor,1,389.99,01/06/19 09:48,"95 Meadow St, San Francisco, CA 94016" +159360,AAA Batteries (4-pack),1,2.99,01/01/19 12:45,"309 West St, San Francisco, CA 94016" +159361,AAA Batteries (4-pack),1,2.99,01/06/19 12:34,"336 Washington St, Los Angeles, CA 90001" +159362,20in Monitor,1,109.99,01/20/19 11:35,"453 14th St, San Francisco, CA 94016" +159363,iPhone,1,700,01/11/19 20:46,"460 7th St, New York City, NY 10001" +159364,Wired Headphones,1,11.99,01/31/19 00:32,"862 Adams St, Seattle, WA 98101" +159365,Google Phone,1,600,01/20/19 10:03,"563 Hickory St, Austin, TX 73301" +159365,Bose SoundSport Headphones,1,99.99,01/20/19 10:03,"563 Hickory St, Austin, TX 73301" +159366,Lightning Charging Cable,1,14.95,01/23/19 23:59,"439 7th St, San Francisco, CA 94016" +159367,AAA Batteries (4-pack),2,2.99,01/13/19 20:24,"213 Dogwood St, Los Angeles, CA 90001" +159368,AA Batteries (4-pack),2,3.84,01/21/19 21:32,"124 Jefferson St, New York City, NY 10001" +159369,AAA Batteries (4-pack),1,2.99,01/01/19 10:47,"242 Church St, Los Angeles, CA 90001" +159370,USB-C Charging Cable,1,11.95,01/12/19 17:11,"47 South St, Portland, ME 04101" +159371,27in FHD Monitor,1,149.99,01/09/19 13:54,"398 River St, San Francisco, CA 94016" +159372,Lightning Charging Cable,1,14.95,01/17/19 01:00,"948 Hickory St, Portland, OR 97035" +159373,Bose SoundSport Headphones,1,99.99,01/28/19 21:21,"872 River St, Dallas, TX 75001" +159374,34in Ultrawide Monitor,1,379.99,01/15/19 18:33,"665 Lakeview St, Portland, OR 97035" +159375,iPhone,1,700,01/24/19 07:54,"255 South St, Portland, ME 04101" +159376,Wired Headphones,1,11.99,01/29/19 00:58,"636 Jefferson St, New York City, NY 10001" +159377,34in Ultrawide Monitor,1,379.99,01/14/19 13:52,"678 South St, San Francisco, CA 94016" +159378,Apple Airpods Headphones,1,150,01/27/19 16:44,"794 7th St, Boston, MA 02215" +159379,Flatscreen TV,1,300,01/04/19 15:21,"151 11th St, San Francisco, CA 94016" +159380,Bose SoundSport Headphones,1,99.99,01/15/19 21:33,"383 West St, San Francisco, CA 94016" +159381,Vareebadd Phone,1,400,01/21/19 13:12,"373 Ridge St, Dallas, TX 75001" +159382,ThinkPad Laptop,1,999.99,01/15/19 19:43,"78 Willow St, Seattle, WA 98101" +159383,Wired Headphones,1,11.99,01/18/19 13:11,"559 Lincoln St, Seattle, WA 98101" +159384,Google Phone,1,600,01/25/19 22:19,"46 Hill St, New York City, NY 10001" +159385,USB-C Charging Cable,1,11.95,01/07/19 14:12,"708 12th St, Portland, OR 97035" +159386,Apple Airpods Headphones,1,150,01/15/19 03:36,"872 Lincoln St, Austin, TX 73301" +159387,Vareebadd Phone,1,400,01/26/19 08:35,"811 Main St, Seattle, WA 98101" +159387,Bose SoundSport Headphones,1,99.99,01/26/19 08:35,"811 Main St, Seattle, WA 98101" +159388,AAA Batteries (4-pack),1,2.99,01/20/19 20:37,"795 9th St, San Francisco, CA 94016" +159389,AAA Batteries (4-pack),4,2.99,01/04/19 08:54,"534 Jefferson St, San Francisco, CA 94016" +159390,Wired Headphones,1,11.99,01/21/19 13:01,"207 Spruce St, Dallas, TX 75001" +159391,27in FHD Monitor,1,149.99,01/11/19 19:53,"96 South St, Atlanta, GA 30301" +159392,Wired Headphones,1,11.99,01/12/19 08:03,"529 Dogwood St, Los Angeles, CA 90001" +159393,Lightning Charging Cable,1,14.95,01/06/19 14:24,"411 Pine St, San Francisco, CA 94016" +159394,iPhone,1,700,01/17/19 14:48,"113 2nd St, Los Angeles, CA 90001" +159395,AAA Batteries (4-pack),1,2.99,01/19/19 12:31,"804 Meadow St, Los Angeles, CA 90001" +159396,27in FHD Monitor,1,149.99,01/21/19 21:37,"777 South St, San Francisco, CA 94016" +159397,34in Ultrawide Monitor,1,379.99,01/30/19 19:29,"759 2nd St, San Francisco, CA 94016" +159398,Apple Airpods Headphones,1,150,01/04/19 23:30,"169 5th St, Los Angeles, CA 90001" +159399,Apple Airpods Headphones,1,150,01/26/19 12:04,"592 Adams St, San Francisco, CA 94016" +159400,AAA Batteries (4-pack),1,2.99,01/11/19 16:06,"949 Walnut St, San Francisco, CA 94016" +159401,34in Ultrawide Monitor,1,379.99,01/04/19 11:08,"83 Spruce St, San Francisco, CA 94016" +159402,AAA Batteries (4-pack),2,2.99,01/24/19 11:31,"987 7th St, Atlanta, GA 30301" +159403,Macbook Pro Laptop,1,1700,01/11/19 10:19,"76 Park St, Atlanta, GA 30301" +159404,iPhone,1,700,01/20/19 20:26,"77 Madison St, Seattle, WA 98101" +159405,Wired Headphones,1,11.99,01/30/19 00:21,"46 Hill St, San Francisco, CA 94016" +159406,27in FHD Monitor,1,149.99,01/05/19 20:48,"480 Johnson St, Boston, MA 02215" +159407,Wired Headphones,1,11.99,01/13/19 12:47,"468 Lincoln St, Atlanta, GA 30301" +159408,Lightning Charging Cable,1,14.95,01/12/19 18:46,"562 Maple St, Dallas, TX 75001" +159409,Wired Headphones,1,11.99,01/17/19 17:26,"5 Center St, Boston, MA 02215" +159410,Wired Headphones,1,11.99,01/24/19 12:05,"333 Madison St, San Francisco, CA 94016" +159411,Lightning Charging Cable,1,14.95,01/31/19 12:24,"227 Spruce St, New York City, NY 10001" +159412,AAA Batteries (4-pack),1,2.99,01/28/19 20:10,"369 River St, San Francisco, CA 94016" +159413,Apple Airpods Headphones,1,150,01/30/19 20:17,"612 Walnut St, Seattle, WA 98101" +159414,AA Batteries (4-pack),1,3.84,01/28/19 15:55,"879 Meadow St, Los Angeles, CA 90001" +159415,Google Phone,1,600,01/22/19 14:12,"591 Wilson St, New York City, NY 10001" +159416,Apple Airpods Headphones,1,150,01/30/19 16:23,"693 12th St, Los Angeles, CA 90001" +159417,Bose SoundSport Headphones,1,99.99,01/31/19 21:36,"660 Willow St, Los Angeles, CA 90001" +159418,Bose SoundSport Headphones,1,99.99,01/02/19 13:26,"592 Cherry St, Los Angeles, CA 90001" +159419,Wired Headphones,1,11.99,01/04/19 14:15,"598 Meadow St, Atlanta, GA 30301" +159420,AAA Batteries (4-pack),1,2.99,01/14/19 09:40,"103 Johnson St, Dallas, TX 75001" +159421,AA Batteries (4-pack),1,3.84,01/30/19 11:44,"215 10th St, San Francisco, CA 94016" +159422,Flatscreen TV,1,300,01/19/19 21:13,"819 Johnson St, Atlanta, GA 30301" +159423,AAA Batteries (4-pack),2,2.99,01/26/19 19:08,"967 Hill St, Seattle, WA 98101" +159424,Wired Headphones,2,11.99,01/26/19 15:54,"444 Hill St, Seattle, WA 98101" +159425,34in Ultrawide Monitor,1,379.99,01/31/19 17:57,"756 River St, Seattle, WA 98101" +159426,AA Batteries (4-pack),2,3.84,01/01/19 19:37,"585 4th St, San Francisco, CA 94016" +159427,USB-C Charging Cable,1,11.95,01/10/19 08:28,"663 Lakeview St, San Francisco, CA 94016" +159428,34in Ultrawide Monitor,1,379.99,01/05/19 22:59,"664 Chestnut St, New York City, NY 10001" +159429,AA Batteries (4-pack),1,3.84,01/22/19 09:57,"672 Sunset St, San Francisco, CA 94016" +159430,AAA Batteries (4-pack),1,2.99,01/29/19 19:17,"621 Wilson St, San Francisco, CA 94016" +159431,Apple Airpods Headphones,1,150,01/25/19 06:48,"472 4th St, Atlanta, GA 30301" +159432,Wired Headphones,2,11.99,01/30/19 14:26,"724 Lakeview St, San Francisco, CA 94016" +159433,AAA Batteries (4-pack),1,2.99,01/10/19 21:07,"484 Forest St, Seattle, WA 98101" +159434,27in 4K Gaming Monitor,1,389.99,01/21/19 12:03,"56 9th St, Dallas, TX 75001" +159435,20in Monitor,1,109.99,01/01/19 09:42,"605 Forest St, Boston, MA 02215" +159436,Wired Headphones,1,11.99,01/30/19 14:00,"580 7th St, Boston, MA 02215" +159437,AAA Batteries (4-pack),2,2.99,01/27/19 23:53,"59 Dogwood St, Los Angeles, CA 90001" +159438,27in FHD Monitor,1,149.99,01/25/19 21:26,"285 Madison St, Atlanta, GA 30301" +159439,27in FHD Monitor,1,149.99,01/26/19 19:48,"938 4th St, New York City, NY 10001" +159440,27in 4K Gaming Monitor,1,389.99,01/12/19 15:41,"296 Adams St, San Francisco, CA 94016" +159441,USB-C Charging Cable,1,11.95,01/27/19 16:52,"738 8th St, Atlanta, GA 30301" +159441,Google Phone,1,600,01/27/19 16:52,"738 8th St, Atlanta, GA 30301" +159442,Macbook Pro Laptop,1,1700,01/29/19 10:38,"231 Lake St, New York City, NY 10001" +159443,Lightning Charging Cable,1,14.95,01/03/19 01:40,"211 6th St, San Francisco, CA 94016" +159444,AAA Batteries (4-pack),1,2.99,01/13/19 23:30,"827 Washington St, Los Angeles, CA 90001" +159445,Lightning Charging Cable,2,14.95,01/05/19 09:31,"422 Elm St, Los Angeles, CA 90001" +159446,27in 4K Gaming Monitor,1,389.99,01/20/19 09:28,"690 Wilson St, Atlanta, GA 30301" +159447,Apple Airpods Headphones,1,150,01/02/19 15:31,"681 Park St, Austin, TX 73301" +159448,Apple Airpods Headphones,1,150,01/25/19 15:51,"522 Spruce St, Los Angeles, CA 90001" +159449,AA Batteries (4-pack),1,3.84,01/22/19 20:13,"559 Sunset St, Los Angeles, CA 90001" +159450,Wired Headphones,1,11.99,01/09/19 23:15,"795 Chestnut St, Atlanta, GA 30301" +159451,Apple Airpods Headphones,1,150,01/30/19 15:52,"76 Spruce St, Los Angeles, CA 90001" +159452,Lightning Charging Cable,1,14.95,01/18/19 17:21,"269 Madison St, New York City, NY 10001" +159453,Lightning Charging Cable,1,14.95,01/25/19 12:38,"619 Lake St, Boston, MA 02215" +159454,Wired Headphones,2,11.99,01/10/19 22:01,"6 2nd St, San Francisco, CA 94016" +159455,Wired Headphones,2,11.99,01/22/19 11:14,"386 Lincoln St, Los Angeles, CA 90001" +159456,Bose SoundSport Headphones,1,99.99,01/12/19 17:25,"546 Washington St, New York City, NY 10001" +159457,Wired Headphones,1,11.99,01/28/19 13:39,"441 Wilson St, Dallas, TX 75001" +159458,Flatscreen TV,1,300,01/05/19 09:31,"708 Park St, San Francisco, CA 94016" +159459,27in 4K Gaming Monitor,1,389.99,01/23/19 11:58,"497 Walnut St, Los Angeles, CA 90001" +159460,Lightning Charging Cable,2,14.95,01/12/19 19:27,"803 North St, San Francisco, CA 94016" +159461,USB-C Charging Cable,1,11.95,01/22/19 17:33,"566 10th St, Portland, OR 97035" +159462,AAA Batteries (4-pack),1,2.99,01/12/19 18:56,"61 4th St, Los Angeles, CA 90001" +159463,Wired Headphones,1,11.99,01/14/19 15:53,"275 13th St, Boston, MA 02215" +159464,AAA Batteries (4-pack),1,2.99,01/10/19 19:28,"766 Washington St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +159465,27in FHD Monitor,1,149.99,01/06/19 00:34,"430 2nd St, Atlanta, GA 30301" +159466,AA Batteries (4-pack),1,3.84,01/25/19 21:25,"211 Highland St, Atlanta, GA 30301" +159467,Macbook Pro Laptop,1,1700,01/03/19 10:54,"248 Spruce St, Los Angeles, CA 90001" +159468,AA Batteries (4-pack),1,3.84,01/11/19 20:33,"619 Hickory St, Seattle, WA 98101" +159469,Apple Airpods Headphones,1,150,01/11/19 14:17,"35 4th St, Austin, TX 73301" +159470,USB-C Charging Cable,1,11.95,01/19/19 06:47,"695 Lincoln St, New York City, NY 10001" +159471,Apple Airpods Headphones,1,150,01/26/19 16:48,"491 12th St, Dallas, TX 75001" +159472,Lightning Charging Cable,1,14.95,01/26/19 07:37,"698 West St, Dallas, TX 75001" +159473,Wired Headphones,1,11.99,01/10/19 13:08,"104 Wilson St, Austin, TX 73301" +159474,USB-C Charging Cable,1,11.95,01/31/19 09:52,"702 Jackson St, San Francisco, CA 94016" +159475,AA Batteries (4-pack),1,3.84,01/14/19 08:20,"315 10th St, Seattle, WA 98101" +159476,Bose SoundSport Headphones,1,99.99,01/28/19 11:04,"749 Willow St, San Francisco, CA 94016" +159477,Wired Headphones,1,11.99,01/29/19 10:36,"660 Hickory St, Portland, OR 97035" +159478,AA Batteries (4-pack),3,3.84,01/06/19 19:06,"197 Pine St, San Francisco, CA 94016" +159479,AAA Batteries (4-pack),1,2.99,01/29/19 15:27,"814 River St, New York City, NY 10001" +159479,Apple Airpods Headphones,1,150,01/29/19 15:27,"814 River St, New York City, NY 10001" +159480,Bose SoundSport Headphones,1,99.99,01/01/19 17:19,"359 Walnut St, Atlanta, GA 30301" +159481,Wired Headphones,1,11.99,01/21/19 10:25,"143 Jackson St, San Francisco, CA 94016" +159482,USB-C Charging Cable,1,11.95,01/27/19 14:41,"998 Church St, New York City, NY 10001" +159483,AAA Batteries (4-pack),2,2.99,01/14/19 09:40,"774 Hill St, San Francisco, CA 94016" +159484,Lightning Charging Cable,1,14.95,01/17/19 10:06,"992 West St, New York City, NY 10001" +159485,Lightning Charging Cable,1,14.95,01/16/19 00:15,"665 13th St, Los Angeles, CA 90001" +159486,Lightning Charging Cable,2,14.95,01/25/19 16:05,"213 Lakeview St, Atlanta, GA 30301" +159487,Macbook Pro Laptop,1,1700,01/26/19 19:37,"91 2nd St, Boston, MA 02215" +159488,AAA Batteries (4-pack),2,2.99,01/31/19 17:38,"112 Washington St, Austin, TX 73301" +159489,AA Batteries (4-pack),2,3.84,01/18/19 14:21,"111 River St, San Francisco, CA 94016" +159490,AA Batteries (4-pack),1,3.84,01/06/19 21:30,"860 Forest St, New York City, NY 10001" +159491,AAA Batteries (4-pack),2,2.99,01/02/19 18:36,"226 Walnut St, New York City, NY 10001" +159492,USB-C Charging Cable,1,11.95,01/29/19 22:35,"815 5th St, Seattle, WA 98101" +159493,USB-C Charging Cable,1,11.95,01/24/19 23:31,"988 Pine St, Portland, OR 97035" +159494,Apple Airpods Headphones,1,150,01/29/19 22:27,"737 Wilson St, Portland, OR 97035" +159495,20in Monitor,1,109.99,01/08/19 15:56,"332 Dogwood St, Los Angeles, CA 90001" +159496,Bose SoundSport Headphones,1,99.99,01/16/19 10:21,"40 North St, New York City, NY 10001" +159497,27in FHD Monitor,1,149.99,01/08/19 10:39,"943 Willow St, San Francisco, CA 94016" +159498,iPhone,1,700,01/27/19 11:16,"72 2nd St, Los Angeles, CA 90001" +159499,Wired Headphones,1,11.99,01/14/19 10:45,"449 Cherry St, Boston, MA 02215" +159500,USB-C Charging Cable,1,11.95,01/18/19 11:06,"507 Hickory St, San Francisco, CA 94016" +159501,Bose SoundSport Headphones,1,99.99,01/09/19 07:30,"968 Main St, San Francisco, CA 94016" +159502,Flatscreen TV,1,300,01/23/19 12:46,"898 Dogwood St, San Francisco, CA 94016" +159503,Apple Airpods Headphones,1,150,01/03/19 22:03,"538 Hill St, San Francisco, CA 94016" +159504,Wired Headphones,1,11.99,01/20/19 18:37,"928 Church St, Boston, MA 02215" +159505,Apple Airpods Headphones,1,150,01/16/19 19:41,"98 1st St, Los Angeles, CA 90001" +159506,AA Batteries (4-pack),1,3.84,01/21/19 22:21,"299 7th St, Seattle, WA 98101" +159507,27in FHD Monitor,1,149.99,01/19/19 10:16,"845 River St, Boston, MA 02215" +159508,AA Batteries (4-pack),1,3.84,01/15/19 12:11,"100 Center St, San Francisco, CA 94016" +159509,Lightning Charging Cable,1,14.95,01/10/19 22:05,"775 Hill St, San Francisco, CA 94016" +159510,ThinkPad Laptop,1,999.99,01/05/19 17:59,"806 14th St, Seattle, WA 98101" +159511,Lightning Charging Cable,1,14.95,01/30/19 14:47,"712 6th St, Dallas, TX 75001" +159512,Wired Headphones,1,11.99,01/29/19 11:04,"693 Lake St, Boston, MA 02215" +159513,Flatscreen TV,1,300,01/18/19 20:28,"606 Lakeview St, Los Angeles, CA 90001" +159514,Wired Headphones,1,11.99,01/10/19 14:21,"389 2nd St, Atlanta, GA 30301" +159515,USB-C Charging Cable,1,11.95,01/05/19 18:36,"131 Adams St, Portland, OR 97035" +159516,AA Batteries (4-pack),1,3.84,01/15/19 17:17,"197 Washington St, San Francisco, CA 94016" +159517,Lightning Charging Cable,1,14.95,01/06/19 20:01,"616 River St, New York City, NY 10001" +159518,Lightning Charging Cable,1,14.95,01/28/19 13:01,"468 South St, San Francisco, CA 94016" +159519,27in 4K Gaming Monitor,1,389.99,01/14/19 21:11,"527 Ridge St, Los Angeles, CA 90001" +159520,AAA Batteries (4-pack),1,2.99,01/15/19 19:27,"751 Hickory St, Seattle, WA 98101" +159521,Wired Headphones,1,11.99,01/20/19 17:47,"619 North St, Austin, TX 73301" +159522,AA Batteries (4-pack),1,3.84,01/01/19 09:23,"84 6th St, New York City, NY 10001" +159523,AA Batteries (4-pack),1,3.84,01/05/19 09:37,"25 Meadow St, Austin, TX 73301" +159524,AAA Batteries (4-pack),1,2.99,01/14/19 00:01,"178 14th St, San Francisco, CA 94016" +159525,Wired Headphones,1,11.99,01/18/19 09:46,"868 Sunset St, San Francisco, CA 94016" +159526,Wired Headphones,2,11.99,01/18/19 19:12,"366 Cedar St, San Francisco, CA 94016" +159527,USB-C Charging Cable,1,11.95,01/17/19 18:53,"246 Main St, Los Angeles, CA 90001" +159528,Macbook Pro Laptop,1,1700,01/24/19 19:09,"313 4th St, San Francisco, CA 94016" +159529,Bose SoundSport Headphones,1,99.99,01/12/19 21:29,"982 Walnut St, Seattle, WA 98101" +159530,Lightning Charging Cable,1,14.95,01/30/19 18:06,"783 West St, Portland, OR 97035" +159531,Lightning Charging Cable,1,14.95,01/28/19 08:58,"239 10th St, Dallas, TX 75001" +159532,Flatscreen TV,1,300,01/22/19 18:57,"386 12th St, Los Angeles, CA 90001" +159533,27in FHD Monitor,1,149.99,01/17/19 23:18,"161 11th St, Austin, TX 73301" +159534,Bose SoundSport Headphones,1,99.99,01/19/19 11:03,"375 Chestnut St, Los Angeles, CA 90001" +159535,USB-C Charging Cable,1,11.95,01/15/19 21:35,"200 Highland St, Atlanta, GA 30301" +159536,27in 4K Gaming Monitor,1,389.99,01/22/19 16:11,"327 6th St, San Francisco, CA 94016" +159537,Wired Headphones,1,11.99,01/21/19 14:40,"216 River St, New York City, NY 10001" +159538,Wired Headphones,1,11.99,01/08/19 17:42,"888 Highland St, San Francisco, CA 94016" +159539,Lightning Charging Cable,1,14.95,01/22/19 13:52,"346 7th St, Los Angeles, CA 90001" +159540,USB-C Charging Cable,1,11.95,01/13/19 19:29,"265 Walnut St, Boston, MA 02215" +159541,34in Ultrawide Monitor,1,379.99,01/14/19 13:55,"939 Ridge St, Atlanta, GA 30301" +159542,Apple Airpods Headphones,1,150,01/24/19 11:13,"878 9th St, Seattle, WA 98101" +159543,Apple Airpods Headphones,1,150,01/22/19 05:36,"250 2nd St, New York City, NY 10001" +159544,Bose SoundSport Headphones,1,99.99,01/31/19 19:13,"791 Forest St, San Francisco, CA 94016" +159545,iPhone,1,700,01/14/19 13:10,"213 Pine St, Los Angeles, CA 90001" +159545,Lightning Charging Cable,1,14.95,01/14/19 13:10,"213 Pine St, Los Angeles, CA 90001" +159546,Bose SoundSport Headphones,1,99.99,01/01/19 23:36,"553 Sunset St, Seattle, WA 98101" +159547,Lightning Charging Cable,1,14.95,01/21/19 20:58,"357 14th St, Austin, TX 73301" +159548,AA Batteries (4-pack),3,3.84,01/02/19 11:30,"489 South St, Austin, TX 73301" +159549,Macbook Pro Laptop,1,1700,01/29/19 21:44,"263 Lincoln St, Seattle, WA 98101" +159550,AAA Batteries (4-pack),1,2.99,01/26/19 21:26,"305 2nd St, New York City, NY 10001" +159551,Bose SoundSport Headphones,1,99.99,01/06/19 11:21,"914 Adams St, San Francisco, CA 94016" +159552,Apple Airpods Headphones,1,150,01/07/19 12:08,"964 Jefferson St, San Francisco, CA 94016" +159553,Lightning Charging Cable,1,14.95,01/22/19 16:28,"295 13th St, Los Angeles, CA 90001" +159554,20in Monitor,1,109.99,01/03/19 12:42,"266 Highland St, Atlanta, GA 30301" +159555,AAA Batteries (4-pack),1,2.99,01/26/19 22:01,"433 9th St, San Francisco, CA 94016" +159556,AA Batteries (4-pack),4,3.84,01/22/19 19:28,"451 11th St, Seattle, WA 98101" +159557,USB-C Charging Cable,1,11.95,01/18/19 19:16,"557 Pine St, Boston, MA 02215" +159558,AAA Batteries (4-pack),1,2.99,01/05/19 08:29,"928 12th St, Dallas, TX 75001" +159559,27in FHD Monitor,1,149.99,01/22/19 01:17,"503 Adams St, Los Angeles, CA 90001" +159560,AA Batteries (4-pack),2,3.84,01/30/19 19:54,"898 Meadow St, Dallas, TX 75001" +159561,AA Batteries (4-pack),2,3.84,01/01/19 19:16,"33 Lake St, Seattle, WA 98101" +159562,34in Ultrawide Monitor,1,379.99,01/24/19 06:59,"3 Jefferson St, Boston, MA 02215" +159563,Wired Headphones,1,11.99,01/10/19 15:19,"118 7th St, Austin, TX 73301" +159564,Lightning Charging Cable,1,14.95,01/23/19 09:30,"850 Willow St, Dallas, TX 75001" +159565,USB-C Charging Cable,1,11.95,01/04/19 12:08,"415 Jefferson St, San Francisco, CA 94016" +159566,USB-C Charging Cable,1,11.95,01/23/19 19:00,"798 Meadow St, Austin, TX 73301" +159567,USB-C Charging Cable,1,11.95,01/31/19 19:39,"610 Elm St, Portland, OR 97035" +159568,ThinkPad Laptop,1,999.99,01/20/19 15:14,"817 Hickory St, Seattle, WA 98101" +159569,iPhone,1,700,01/13/19 15:56,"283 North St, Seattle, WA 98101" +159570,AAA Batteries (4-pack),1,2.99,01/29/19 06:38,"546 5th St, San Francisco, CA 94016" +159571,AAA Batteries (4-pack),3,2.99,01/21/19 08:18,"972 Meadow St, San Francisco, CA 94016" +159572,20in Monitor,1,109.99,01/24/19 11:21,"807 8th St, Boston, MA 02215" +159573,USB-C Charging Cable,1,11.95,01/03/19 11:01,"540 Lakeview St, Los Angeles, CA 90001" +159574,AA Batteries (4-pack),2,3.84,01/09/19 13:57,"46 West St, Austin, TX 73301" +159575,Google Phone,1,600,01/07/19 02:13,"385 Sunset St, Atlanta, GA 30301" +159576,Apple Airpods Headphones,1,150,01/19/19 17:02,"349 Pine St, New York City, NY 10001" +159577,AA Batteries (4-pack),2,3.84,01/29/19 20:42,"358 Church St, Seattle, WA 98101" +159578,27in 4K Gaming Monitor,1,389.99,01/25/19 21:31,"29 Lake St, Atlanta, GA 30301" +159579,Apple Airpods Headphones,1,150,01/31/19 14:18,"923 1st St, Seattle, WA 98101" +159580,Apple Airpods Headphones,1,150,01/21/19 03:48,"930 Cherry St, San Francisco, CA 94016" +159581,AA Batteries (4-pack),1,3.84,01/05/19 16:51,"366 Adams St, San Francisco, CA 94016" +159582,Vareebadd Phone,1,400,01/17/19 20:22,"799 Spruce St, Dallas, TX 75001" +159583,20in Monitor,1,109.99,01/31/19 15:12,"876 Madison St, San Francisco, CA 94016" +159584,Wired Headphones,1,11.99,01/18/19 00:17,"637 Johnson St, San Francisco, CA 94016" +159585,Flatscreen TV,1,300,01/08/19 10:25,"747 Chestnut St, San Francisco, CA 94016" +159586,Wired Headphones,1,11.99,01/28/19 22:50,"289 Washington St, Atlanta, GA 30301" +159587,Lightning Charging Cable,1,14.95,01/20/19 11:51,"396 Highland St, Seattle, WA 98101" +159588,Wired Headphones,1,11.99,01/22/19 16:30,"867 North St, Los Angeles, CA 90001" +159589,AAA Batteries (4-pack),2,2.99,01/26/19 23:10,"629 Sunset St, Portland, OR 97035" +159590,AAA Batteries (4-pack),1,2.99,01/13/19 19:17,"261 2nd St, San Francisco, CA 94016" +159591,AA Batteries (4-pack),2,3.84,01/24/19 19:53,"692 Wilson St, New York City, NY 10001" +159592,Wired Headphones,1,11.99,01/28/19 00:04,"813 North St, Portland, OR 97035" +159593,34in Ultrawide Monitor,1,379.99,01/10/19 19:28,"747 12th St, Los Angeles, CA 90001" +159594,USB-C Charging Cable,1,11.95,01/01/19 21:10,"161 Washington St, Boston, MA 02215" +159595,AA Batteries (4-pack),2,3.84,01/14/19 12:50,"818 13th St, Los Angeles, CA 90001" +159596,AAA Batteries (4-pack),3,2.99,01/19/19 19:41,"415 11th St, San Francisco, CA 94016" +159597,Apple Airpods Headphones,1,150,01/13/19 15:52,"378 Johnson St, New York City, NY 10001" +159598,AA Batteries (4-pack),1,3.84,01/08/19 16:20,"357 9th St, New York City, NY 10001" +159599,Lightning Charging Cable,1,14.95,01/09/19 22:59,"139 12th St, New York City, NY 10001" +159600,Macbook Pro Laptop,1,1700,01/10/19 20:44,"27 Highland St, Los Angeles, CA 90001" +159601,iPhone,1,700,01/29/19 13:19,"863 North St, New York City, NY 10001" +159602,USB-C Charging Cable,1,11.95,01/27/19 16:49,"768 Hill St, San Francisco, CA 94016" +159603,34in Ultrawide Monitor,1,379.99,01/14/19 15:34,"526 2nd St, San Francisco, CA 94016" +159604,iPhone,1,700,01/31/19 18:55,"223 Lakeview St, Austin, TX 73301" +159605,USB-C Charging Cable,1,11.95,01/20/19 13:56,"843 Washington St, New York City, NY 10001" +159606,34in Ultrawide Monitor,1,379.99,01/10/19 19:47,"100 5th St, Portland, OR 97035" +159607,Bose SoundSport Headphones,1,99.99,01/26/19 11:55,"776 Cherry St, Los Angeles, CA 90001" +159608,AA Batteries (4-pack),1,3.84,01/21/19 08:51,"151 Wilson St, Boston, MA 02215" +159609,Apple Airpods Headphones,1,150,01/17/19 12:03,"91 Adams St, Seattle, WA 98101" +159609,AA Batteries (4-pack),2,3.84,01/17/19 12:03,"91 Adams St, Seattle, WA 98101" +159610,Lightning Charging Cable,1,14.95,01/22/19 23:01,"442 Jefferson St, Los Angeles, CA 90001" +159611,AAA Batteries (4-pack),4,2.99,01/10/19 18:06,"378 7th St, Los Angeles, CA 90001" +159612,Wired Headphones,1,11.99,01/08/19 16:44,"123 River St, Atlanta, GA 30301" +159613,Lightning Charging Cable,1,14.95,01/30/19 11:36,"187 Dogwood St, Seattle, WA 98101" +159613,Bose SoundSport Headphones,1,99.99,01/30/19 11:36,"187 Dogwood St, Seattle, WA 98101" +159614,27in 4K Gaming Monitor,1,389.99,01/03/19 18:02,"454 Adams St, Los Angeles, CA 90001" +159615,USB-C Charging Cable,1,11.95,01/10/19 23:48,"124 Church St, San Francisco, CA 94016" +159616,Lightning Charging Cable,1,14.95,01/24/19 14:54,"700 Lakeview St, Portland, OR 97035" +159617,AA Batteries (4-pack),1,3.84,01/06/19 23:53,"370 11th St, Boston, MA 02215" +159618,USB-C Charging Cable,1,11.95,01/10/19 21:11,"259 5th St, Austin, TX 73301" +159619,USB-C Charging Cable,1,11.95,01/18/19 13:19,"472 Willow St, New York City, NY 10001" +159620,USB-C Charging Cable,1,11.95,01/26/19 16:35,"46 Spruce St, Los Angeles, CA 90001" +159621,Wired Headphones,1,11.99,01/08/19 17:40,"472 Spruce St, Austin, TX 73301" +159622,USB-C Charging Cable,1,11.95,01/22/19 17:12,"798 Cedar St, New York City, NY 10001" +159623,Bose SoundSport Headphones,1,99.99,01/28/19 17:52,"67 Pine St, San Francisco, CA 94016" +159624,Apple Airpods Headphones,1,150,01/17/19 16:32,"818 Hill St, Boston, MA 02215" +159625,Lightning Charging Cable,1,14.95,01/06/19 11:00,"505 Sunset St, New York City, NY 10001" +159626,USB-C Charging Cable,1,11.95,01/21/19 11:19,"249 13th St, Dallas, TX 75001" +159627,AA Batteries (4-pack),1,3.84,01/05/19 20:21,"256 Meadow St, Austin, TX 73301" +159628,AA Batteries (4-pack),1,3.84,01/26/19 11:33,"771 4th St, San Francisco, CA 94016" +159629,Bose SoundSport Headphones,1,99.99,01/30/19 21:28,"927 14th St, New York City, NY 10001" +159630,Apple Airpods Headphones,1,150,01/11/19 15:00,"481 Elm St, San Francisco, CA 94016" +159631,Wired Headphones,1,11.99,01/24/19 13:18,"404 Jackson St, Atlanta, GA 30301" +159632,Google Phone,1,600,01/07/19 15:38,"840 Hickory St, San Francisco, CA 94016" +159633,Bose SoundSport Headphones,1,99.99,01/18/19 11:40,"205 6th St, Boston, MA 02215" +159634,27in 4K Gaming Monitor,1,389.99,01/04/19 20:00,"531 12th St, Los Angeles, CA 90001" +159635,Bose SoundSport Headphones,1,99.99,01/23/19 13:27,"333 Jefferson St, Seattle, WA 98101" +159636,Wired Headphones,1,11.99,01/23/19 20:23,"409 Center St, San Francisco, CA 94016" +159637,Lightning Charging Cable,1,14.95,01/11/19 12:39,"148 North St, San Francisco, CA 94016" +159638,20in Monitor,1,109.99,01/12/19 20:31,"45 Hickory St, Dallas, TX 75001" +159639,34in Ultrawide Monitor,1,379.99,01/18/19 13:20,"884 Lakeview St, San Francisco, CA 94016" +159640,AAA Batteries (4-pack),1,2.99,01/07/19 14:41,"650 14th St, San Francisco, CA 94016" +159641,20in Monitor,1,109.99,01/17/19 04:26,"188 8th St, Los Angeles, CA 90001" +159642,Flatscreen TV,1,300,01/29/19 12:43,"436 Park St, Seattle, WA 98101" +159643,Google Phone,1,600,01/09/19 17:15,"45 Church St, Seattle, WA 98101" +159644,AA Batteries (4-pack),2,3.84,01/20/19 19:50,"516 Forest St, San Francisco, CA 94016" +159645,iPhone,1,700,01/14/19 12:01,"402 Jackson St, San Francisco, CA 94016" +159645,Wired Headphones,1,11.99,01/14/19 12:01,"402 Jackson St, San Francisco, CA 94016" +159646,USB-C Charging Cable,2,11.95,01/10/19 13:22,"122 Spruce St, New York City, NY 10001" +159647,Lightning Charging Cable,1,14.95,01/02/19 20:00,"715 12th St, New York City, NY 10001" +159648,Lightning Charging Cable,1,14.95,01/04/19 16:19,"774 Cedar St, Austin, TX 73301" +159649,AAA Batteries (4-pack),1,2.99,01/06/19 11:17,"53 Pine St, San Francisco, CA 94016" +159649,ThinkPad Laptop,1,999.99,01/06/19 11:17,"53 Pine St, San Francisco, CA 94016" +159650,AA Batteries (4-pack),1,3.84,01/17/19 01:18,"215 12th St, Los Angeles, CA 90001" +159651,Apple Airpods Headphones,1,150,01/23/19 14:28,"924 Sunset St, San Francisco, CA 94016" +159652,AAA Batteries (4-pack),1,2.99,01/29/19 11:27,"244 Willow St, Boston, MA 02215" +159653,AAA Batteries (4-pack),1,2.99,01/04/19 18:07,"368 Lake St, Boston, MA 02215" +159654,USB-C Charging Cable,1,11.95,01/21/19 01:07,"915 Jefferson St, New York City, NY 10001" +159655,Bose SoundSport Headphones,1,99.99,01/05/19 09:43,"193 7th St, San Francisco, CA 94016" +159656,AA Batteries (4-pack),1,3.84,01/16/19 13:32,"485 Jackson St, Boston, MA 02215" +298467,USB-C Charging Cable,1,11.95,12/28/19 17:36,"968 6th St, San Francisco, CA 94016" +298468,Lightning Charging Cable,1,14.95,12/08/19 19:30,"327 5th St, New York City, NY 10001" +298469,Lightning Charging Cable,1,14.95,12/14/19 09:25,"190 Meadow St, New York City, NY 10001" +298470,Wired Headphones,1,11.99,12/04/19 18:46,"248 Sunset St, San Francisco, CA 94016" +298471,USB-C Charging Cable,1,11.95,12/27/19 14:18,"475 Cedar St, Boston, MA 02215" +298472,Wired Headphones,1,11.99,12/11/19 00:06,"428 Jefferson St, Los Angeles, CA 90001" +298473,Apple Airpods Headphones,1,150.0,12/31/19 18:17,"172 8th St, Atlanta, GA 30301" +298474,Apple Airpods Headphones,1,150.0,12/04/19 19:11,"151 12th St, San Francisco, CA 94016" +298475,AA Batteries (4-pack),2,3.84,12/20/19 07:02,"895 Madison St, San Francisco, CA 94016" +298476,AA Batteries (4-pack),2,3.84,12/13/19 12:51,"797 Maple St, Atlanta, GA 30301" +298477,iPhone,1,700.0,12/08/19 14:26,"756 North St, Boston, MA 02215" +298478,Flatscreen TV,1,300.0,12/19/19 20:02,"365 12th St, Portland, OR 97035" +298479,AA Batteries (4-pack),2,3.84,12/19/19 11:44,"799 Pine St, Atlanta, GA 30301" +298480,AA Batteries (4-pack),1,3.84,12/23/19 15:06,"842 8th St, New York City, NY 10001" +298481,Apple Airpods Headphones,1,150.0,12/19/19 22:41,"698 Jackson St, Los Angeles, CA 90001" +298482,Bose SoundSport Headphones,1,99.99,12/29/19 14:38,"152 7th St, San Francisco, CA 94016" +298483,34in Ultrawide Monitor,1,379.99,12/14/19 09:59,"37 Meadow St, New York City, NY 10001" +298484,Wired Headphones,1,11.99,12/07/19 17:47,"1 Willow St, New York City, NY 10001" +298485,AAA Batteries (4-pack),1,2.99,12/16/19 11:41,"974 Park St, Seattle, WA 98101" +298486,Flatscreen TV,1,300.0,12/20/19 13:42,"402 5th St, Los Angeles, CA 90001" +298487,Lightning Charging Cable,1,14.95,12/02/19 11:57,"193 Cedar St, Austin, TX 73301" +298488,Lightning Charging Cable,1,14.95,12/19/19 09:17,"475 9th St, Los Angeles, CA 90001" +298489,AAA Batteries (4-pack),1,2.99,12/09/19 19:14,"727 Adams St, San Francisco, CA 94016" +298490,Lightning Charging Cable,1,14.95,12/06/19 11:06,"434 Cedar St, Los Angeles, CA 90001" +298491,AA Batteries (4-pack),1,3.84,12/27/19 14:10,"726 Park St, Los Angeles, CA 90001" +298492,Wired Headphones,1,11.99,12/21/19 20:00,"163 Center St, Seattle, WA 98101" +298493,27in FHD Monitor,1,149.99,12/24/19 13:57,"642 2nd St, Atlanta, GA 30301" +298494,Macbook Pro Laptop,1,1700.0,12/15/19 18:07,"23 Willow St, San Francisco, CA 94016" +298495,Lightning Charging Cable,1,14.95,12/02/19 20:07,"758 Maple St, New York City, NY 10001" +298496,Macbook Pro Laptop,1,1700.0,12/22/19 16:29,"698 8th St, San Francisco, CA 94016" +298497,20in Monitor,1,109.99,12/28/19 14:08,"913 6th St, Los Angeles, CA 90001" +298498,AAA Batteries (4-pack),2,2.99,12/04/19 15:47,"940 1st St, New York City, NY 10001" +298499,Lightning Charging Cable,1,14.95,12/30/19 14:08,"457 Highland St, Atlanta, GA 30301" +298500,AA Batteries (4-pack),1,3.84,12/06/19 16:31,"362 South St, Dallas, TX 75001" +298501,Wired Headphones,1,11.99,12/18/19 13:32,"708 Walnut St, Atlanta, GA 30301" +298502,USB-C Charging Cable,1,11.95,12/26/19 11:16,"821 Wilson St, Boston, MA 02215" +298503,Lightning Charging Cable,1,14.95,12/13/19 14:55,"422 4th St, Boston, MA 02215" +298504,AA Batteries (4-pack),1,3.84,12/03/19 20:05,"795 Forest St, New York City, NY 10001" +298505,Bose SoundSport Headphones,1,99.99,12/13/19 17:18,"688 River St, Portland, OR 97035" +298506,Vareebadd Phone,1,400.0,12/07/19 01:48,"831 West St, San Francisco, CA 94016" +298507,iPhone,1,700.0,12/08/19 15:13,"735 11th St, New York City, NY 10001" +298508,AA Batteries (4-pack),1,3.84,12/09/19 09:32,"546 Hickory St, Los Angeles, CA 90001" +298509,Apple Airpods Headphones,1,150.0,12/26/19 18:08,"483 Elm St, Los Angeles, CA 90001" +298510,AA Batteries (4-pack),1,3.84,12/28/19 00:35,"170 13th St, Atlanta, GA 30301" +298511,Lightning Charging Cable,1,14.95,12/23/19 16:12,"765 Chestnut St, Boston, MA 02215" +298512,Bose SoundSport Headphones,1,99.99,12/02/19 08:45,"271 Ridge St, Boston, MA 02215" +298513,Macbook Pro Laptop,1,1700.0,12/22/19 09:56,"264 Pine St, Austin, TX 73301" +298514,USB-C Charging Cable,1,11.95,12/16/19 12:18,"750 Cedar St, Seattle, WA 98101" +298514,AA Batteries (4-pack),1,3.84,12/16/19 12:18,"750 Cedar St, Seattle, WA 98101" +298515,Macbook Pro Laptop,1,1700.0,12/17/19 10:22,"901 Ridge St, Dallas, TX 75001" +298516,Apple Airpods Headphones,1,150.0,12/31/19 14:38,"211 Pine St, Boston, MA 02215" +298517,AA Batteries (4-pack),1,3.84,12/28/19 13:16,"223 Washington St, Boston, MA 02215" +298518,AA Batteries (4-pack),2,3.84,12/09/19 03:03,"397 Sunset St, Seattle, WA 98101" +298519,Lightning Charging Cable,1,14.95,12/24/19 19:41,"646 Pine St, San Francisco, CA 94016" +298520,Apple Airpods Headphones,1,150.0,12/07/19 12:07,"152 Park St, Austin, TX 73301" +298521,Apple Airpods Headphones,1,150.0,12/13/19 00:08,"812 Main St, Atlanta, GA 30301" +298522,AA Batteries (4-pack),1,3.84,12/23/19 06:34,"650 Center St, Atlanta, GA 30301" +298523,Lightning Charging Cable,1,14.95,12/10/19 12:43,"648 River St, San Francisco, CA 94016" +298524,Macbook Pro Laptop,1,1700.0,12/02/19 19:52,"503 Hickory St, Portland, OR 97035" +298525,AA Batteries (4-pack),2,3.84,12/17/19 12:59,"898 Wilson St, San Francisco, CA 94016" +298526,AA Batteries (4-pack),3,3.84,12/26/19 16:28,"307 Main St, Portland, OR 97035" +298527,20in Monitor,1,109.99,12/05/19 21:19,"267 Spruce St, San Francisco, CA 94016" +298528,Wired Headphones,1,11.99,12/19/19 10:36,"82 Pine St, New York City, NY 10001" +298529,AA Batteries (4-pack),1,3.84,12/21/19 13:17,"696 Forest St, Boston, MA 02215" +298530,Bose SoundSport Headphones,1,99.99,12/15/19 08:17,"947 North St, San Francisco, CA 94016" +298531,AAA Batteries (4-pack),1,2.99,12/26/19 11:38,"745 Main St, Dallas, TX 75001" +298532,Apple Airpods Headphones,1,150.0,12/22/19 23:00,"857 West St, New York City, NY 10001" +298533,Lightning Charging Cable,1,14.95,12/26/19 14:06,"724 Ridge St, Boston, MA 02215" +298534,Lightning Charging Cable,1,14.95,12/22/19 10:50,"517 Jefferson St, San Francisco, CA 94016" +298535,Bose SoundSport Headphones,1,99.99,12/26/19 08:45,"312 1st St, Boston, MA 02215" +298536,27in 4K Gaming Monitor,1,389.99,12/22/19 17:11,"368 Center St, Atlanta, GA 30301" +298537,AAA Batteries (4-pack),1,2.99,12/27/19 00:12,"465 5th St, Seattle, WA 98101" +298538,AA Batteries (4-pack),1,3.84,12/23/19 12:26,"31 Walnut St, Boston, MA 02215" +298539,34in Ultrawide Monitor,1,379.99,12/24/19 14:02,"233 North St, Portland, OR 97035" +298540,iPhone,1,700.0,12/10/19 09:04,"19 North St, Seattle, WA 98101" +298541,Lightning Charging Cable,1,14.95,12/27/19 15:43,"297 Elm St, New York City, NY 10001" +298542,Apple Airpods Headphones,1,150.0,12/23/19 13:47,"906 Cedar St, Boston, MA 02215" +298543,AAA Batteries (4-pack),1,2.99,12/02/19 17:01,"291 Spruce St, Los Angeles, CA 90001" +298544,USB-C Charging Cable,1,11.95,12/18/19 13:23,"567 Hill St, Portland, OR 97035" +298545,34in Ultrawide Monitor,1,379.99,12/19/19 15:12,"795 Meadow St, Los Angeles, CA 90001" +298546,iPhone,1,700.0,12/12/19 19:56,"569 Church St, Los Angeles, CA 90001" +298547,Lightning Charging Cable,1,14.95,12/29/19 21:26,"217 Cedar St, Los Angeles, CA 90001" +298548,Lightning Charging Cable,1,14.95,12/25/19 10:11,"331 Willow St, Austin, TX 73301" +298549,USB-C Charging Cable,1,11.95,12/26/19 07:26,"127 South St, Austin, TX 73301" +298550,USB-C Charging Cable,1,11.95,12/02/19 19:58,"858 Center St, New York City, NY 10001" +298551,Lightning Charging Cable,1,14.95,12/15/19 18:37,"381 Elm St, Seattle, WA 98101" +298552,Lightning Charging Cable,1,14.95,12/03/19 18:35,"450 Wilson St, Austin, TX 73301" +298553,USB-C Charging Cable,1,11.95,12/21/19 18:19,"556 Dogwood St, Boston, MA 02215" +298554,iPhone,1,700.0,12/15/19 16:40,"604 Chestnut St, Los Angeles, CA 90001" +298555,27in FHD Monitor,1,149.99,12/01/19 06:40,"979 River St, Portland, OR 97035" +298556,USB-C Charging Cable,1,11.95,12/22/19 00:29,"336 4th St, Portland, OR 97035" +298557,AAA Batteries (4-pack),1,2.99,12/20/19 09:38,"862 North St, San Francisco, CA 94016" +298558,USB-C Charging Cable,1,11.95,12/29/19 20:00,"894 Park St, Portland, OR 97035" +298559,ThinkPad Laptop,1,999.99,12/16/19 13:34,"275 South St, New York City, NY 10001" +298560,AA Batteries (4-pack),2,3.84,12/08/19 14:54,"467 Forest St, Seattle, WA 98101" +298561,Wired Headphones,1,11.99,12/30/19 10:37,"499 South St, San Francisco, CA 94016" +298562,Lightning Charging Cable,1,14.95,12/19/19 09:13,"425 Park St, San Francisco, CA 94016" +298563,Lightning Charging Cable,1,14.95,12/25/19 13:39,"730 Meadow St, Los Angeles, CA 90001" +298564,USB-C Charging Cable,1,11.95,12/18/19 22:37,"433 Cedar St, New York City, NY 10001" +298565,Apple Airpods Headphones,1,150.0,12/26/19 16:16,"268 Hill St, New York City, NY 10001" +298566,Flatscreen TV,1,300.0,12/20/19 09:20,"894 11th St, San Francisco, CA 94016" +298567,Google Phone,1,600.0,12/02/19 15:13,"197 2nd St, San Francisco, CA 94016" +298567,USB-C Charging Cable,1,11.95,12/02/19 15:13,"197 2nd St, San Francisco, CA 94016" +298568,iPhone,1,700.0,12/17/19 21:28,"708 Cedar St, Atlanta, GA 30301" +298568,Apple Airpods Headphones,1,150.0,12/17/19 21:28,"708 Cedar St, Atlanta, GA 30301" +298569,Google Phone,1,600.0,12/26/19 17:47,"738 Pine St, San Francisco, CA 94016" +298570,Wired Headphones,1,11.99,12/23/19 18:37,"380 Cherry St, Boston, MA 02215" +298571,USB-C Charging Cable,1,11.95,12/26/19 19:28,"232 Park St, Los Angeles, CA 90001" +298572,ThinkPad Laptop,1,999.99,12/18/19 15:53,"673 Lincoln St, Seattle, WA 98101" +298573,USB-C Charging Cable,1,11.95,12/08/19 09:55,"425 Lakeview St, Boston, MA 02215" +298574,iPhone,1,700.0,12/21/19 21:18,"586 Ridge St, Boston, MA 02215" +298574,Apple Airpods Headphones,1,150.0,12/21/19 21:18,"586 Ridge St, Boston, MA 02215" +298575,Lightning Charging Cable,1,14.95,12/25/19 22:45,"373 Walnut St, Atlanta, GA 30301" +298576,iPhone,1,700.0,12/10/19 14:14,"10 River St, Dallas, TX 75001" +298577,USB-C Charging Cable,1,11.95,12/13/19 22:15,"150 12th St, Portland, ME 04101" +298578,Bose SoundSport Headphones,1,99.99,12/12/19 15:59,"287 1st St, Los Angeles, CA 90001" +298579,Lightning Charging Cable,2,14.95,12/28/19 13:02,"811 Madison St, Los Angeles, CA 90001" +298580,AAA Batteries (4-pack),1,2.99,12/29/19 05:03,"543 Church St, Portland, OR 97035" +298581,27in FHD Monitor,1,149.99,12/16/19 13:48,"287 Lake St, Seattle, WA 98101" +298582,AAA Batteries (4-pack),3,2.99,12/19/19 09:13,"174 9th St, San Francisco, CA 94016" +298583,27in 4K Gaming Monitor,1,389.99,12/17/19 00:04,"776 Elm St, Los Angeles, CA 90001" +298584,USB-C Charging Cable,1,11.95,12/15/19 14:19,"461 Ridge St, Los Angeles, CA 90001" +298585,AA Batteries (4-pack),1,3.84,12/01/19 18:49,"710 11th St, San Francisco, CA 94016" +298586,Apple Airpods Headphones,1,150.0,12/19/19 09:49,"742 Church St, San Francisco, CA 94016" +298587,Lightning Charging Cable,1,14.95,12/27/19 22:00,"291 Cherry St, Austin, TX 73301" +298588,20in Monitor,1,109.99,12/18/19 23:10,"11 Willow St, New York City, NY 10001" +298589,USB-C Charging Cable,2,11.95,12/17/19 13:02,"560 West St, San Francisco, CA 94016" +298590,Bose SoundSport Headphones,1,99.99,12/15/19 09:28,"892 Center St, Dallas, TX 75001" +298591,AA Batteries (4-pack),2,3.84,12/05/19 01:00,"278 Park St, New York City, NY 10001" +298592,iPhone,1,700.0,12/26/19 13:35,"236 4th St, San Francisco, CA 94016" +298593,AA Batteries (4-pack),1,3.84,12/10/19 14:40,"121 Elm St, Boston, MA 02215" +298594,27in 4K Gaming Monitor,1,389.99,12/01/19 06:03,"843 Willow St, San Francisco, CA 94016" +298595,AA Batteries (4-pack),1,3.84,12/02/19 22:45,"23 Sunset St, Seattle, WA 98101" +298596,AA Batteries (4-pack),1,3.84,12/24/19 20:01,"443 Walnut St, San Francisco, CA 94016" +298597,AAA Batteries (4-pack),1,2.99,12/22/19 11:17,"853 Washington St, Los Angeles, CA 90001" +298598,AA Batteries (4-pack),2,3.84,12/21/19 19:19,"207 Wilson St, Austin, TX 73301" +298599,AA Batteries (4-pack),2,3.84,12/14/19 22:05,"344 Sunset St, Los Angeles, CA 90001" +298600,Apple Airpods Headphones,1,150.0,12/03/19 22:31,"820 Maple St, Seattle, WA 98101" +298601,Apple Airpods Headphones,1,150.0,12/19/19 23:21,"151 North St, Austin, TX 73301" +298602,AA Batteries (4-pack),1,3.84,12/07/19 20:25,"430 7th St, Los Angeles, CA 90001" +298603,Google Phone,1,600.0,12/05/19 21:03,"404 Dogwood St, Boston, MA 02215" +298604,AAA Batteries (4-pack),1,2.99,12/13/19 13:22,"980 Dogwood St, San Francisco, CA 94016" +298605,AA Batteries (4-pack),2,3.84,12/27/19 11:44,"338 Hickory St, Seattle, WA 98101" +298606,Lightning Charging Cable,1,14.95,12/14/19 19:04,"272 South St, San Francisco, CA 94016" +298607,AAA Batteries (4-pack),2,2.99,12/22/19 20:21,"635 Pine St, San Francisco, CA 94016" +298608,Apple Airpods Headphones,1,150.0,12/24/19 11:31,"154 Lake St, Los Angeles, CA 90001" +298609,Apple Airpods Headphones,1,150.0,12/16/19 11:13,"966 5th St, Los Angeles, CA 90001" +298610,Wired Headphones,1,11.99,12/08/19 11:33,"649 Park St, Los Angeles, CA 90001" +298611,USB-C Charging Cable,1,11.95,12/20/19 15:49,"747 Highland St, Boston, MA 02215" +298612,AA Batteries (4-pack),2,3.84,12/03/19 15:53,"338 Madison St, San Francisco, CA 94016" +298613,Bose SoundSport Headphones,1,99.99,12/31/19 19:14,"697 9th St, Los Angeles, CA 90001" +298614,USB-C Charging Cable,1,11.95,12/17/19 12:12,"115 Hickory St, Boston, MA 02215" +298615,Lightning Charging Cable,1,14.95,12/19/19 03:21,"864 14th St, San Francisco, CA 94016" +298616,Apple Airpods Headphones,2,150.0,12/31/19 18:54,"702 Lincoln St, Boston, MA 02215" +298617,AAA Batteries (4-pack),1,2.99,12/12/19 17:18,"559 Highland St, San Francisco, CA 94016" +298618,27in FHD Monitor,1,149.99,12/05/19 20:48,"540 Highland St, San Francisco, CA 94016" +298619,34in Ultrawide Monitor,1,379.99,12/12/19 13:28,"38 Hill St, New York City, NY 10001" +298620,AAA Batteries (4-pack),3,2.99,12/20/19 12:52,"323 Elm St, Austin, TX 73301" +298621,AAA Batteries (4-pack),2,2.99,12/06/19 09:43,"159 Forest St, Dallas, TX 75001" +298622,27in 4K Gaming Monitor,1,389.99,12/28/19 16:26,"568 Pine St, San Francisco, CA 94016" +298623,34in Ultrawide Monitor,1,379.99,12/31/19 12:08,"477 Jefferson St, Dallas, TX 75001" +298624,AA Batteries (4-pack),1,3.84,12/11/19 16:24,"438 Lincoln St, New York City, NY 10001" +298625,Apple Airpods Headphones,1,150.0,12/29/19 17:44,"897 4th St, San Francisco, CA 94016" +298626,Apple Airpods Headphones,1,150.0,12/11/19 14:39,"215 West St, Seattle, WA 98101" +298627,Bose SoundSport Headphones,1,99.99,12/29/19 21:08,"369 Meadow St, Dallas, TX 75001" +298628,AA Batteries (4-pack),1,3.84,12/15/19 09:08,"515 6th St, San Francisco, CA 94016" +298629,Wired Headphones,1,11.99,12/14/19 00:18,"350 Johnson St, Boston, MA 02215" +298630,27in 4K Gaming Monitor,1,389.99,12/09/19 16:07,"515 Dogwood St, Dallas, TX 75001" +298631,USB-C Charging Cable,1,11.95,12/11/19 09:53,"789 Adams St, Portland, OR 97035" +298632,AA Batteries (4-pack),1,3.84,12/13/19 15:40,"539 9th St, Atlanta, GA 30301" +298633,AA Batteries (4-pack),1,3.84,12/21/19 21:56,"209 Church St, San Francisco, CA 94016" +298634,AA Batteries (4-pack),1,3.84,12/16/19 18:45,"898 Willow St, New York City, NY 10001" +298635,Google Phone,1,600.0,12/03/19 13:54,"470 Cedar St, Austin, TX 73301" +298635,USB-C Charging Cable,1,11.95,12/03/19 13:54,"470 Cedar St, Austin, TX 73301" +298636,ThinkPad Laptop,1,999.99,12/25/19 13:47,"998 West St, Los Angeles, CA 90001" +298637,Apple Airpods Headphones,1,150.0,12/14/19 15:28,"439 9th St, Dallas, TX 75001" +298638,USB-C Charging Cable,1,11.95,12/05/19 22:40,"765 Pine St, Seattle, WA 98101" +298639,Flatscreen TV,1,300.0,12/22/19 17:52,"717 Adams St, New York City, NY 10001" +298640,Apple Airpods Headphones,1,150.0,12/30/19 20:44,"890 Hickory St, Dallas, TX 75001" +298641,Wired Headphones,1,11.99,12/15/19 16:56,"298 Jackson St, Austin, TX 73301" +298642,AAA Batteries (4-pack),3,2.99,12/22/19 08:59,"954 5th St, Dallas, TX 75001" +298643,AA Batteries (4-pack),2,3.84,12/12/19 14:02,"230 12th St, San Francisco, CA 94016" +298644,Flatscreen TV,1,300.0,12/06/19 13:59,"200 8th St, Austin, TX 73301" +298645,USB-C Charging Cable,2,11.95,12/08/19 23:29,"387 Cherry St, Seattle, WA 98101" +298646,Apple Airpods Headphones,1,150.0,12/21/19 20:23,"496 Johnson St, Portland, OR 97035" +298647,Flatscreen TV,1,300.0,12/30/19 22:33,"378 Main St, New York City, NY 10001" +298648,AA Batteries (4-pack),1,3.84,12/31/19 14:01,"304 North St, Seattle, WA 98101" +298649,Wired Headphones,1,11.99,12/20/19 20:21,"82 Willow St, San Francisco, CA 94016" +298650,Apple Airpods Headphones,1,150.0,12/09/19 19:50,"197 9th St, New York City, NY 10001" +298651,AA Batteries (4-pack),1,3.84,12/11/19 20:47,"987 North St, San Francisco, CA 94016" +298652,Bose SoundSport Headphones,1,99.99,12/18/19 12:11,"722 Ridge St, San Francisco, CA 94016" +298653,AAA Batteries (4-pack),3,2.99,12/23/19 09:55,"936 14th St, Dallas, TX 75001" +298654,AA Batteries (4-pack),1,3.84,12/11/19 07:05,"700 10th St, Dallas, TX 75001" +298655,Bose SoundSport Headphones,1,99.99,12/18/19 11:19,"223 Walnut St, Boston, MA 02215" +298656,AA Batteries (4-pack),1,3.84,12/01/19 06:30,"82 7th St, San Francisco, CA 94016" +298657,34in Ultrawide Monitor,1,379.99,12/02/19 19:42,"199 Center St, Dallas, TX 75001" +298658,Apple Airpods Headphones,1,150.0,12/24/19 07:51,"599 Madison St, Boston, MA 02215" +298659,Lightning Charging Cable,1,14.95,12/14/19 21:25,"465 Cedar St, New York City, NY 10001" +298660,AAA Batteries (4-pack),2,2.99,12/07/19 15:09,"535 2nd St, Seattle, WA 98101" +298661,27in FHD Monitor,1,149.99,12/10/19 08:46,"453 Pine St, Los Angeles, CA 90001" +298662,AAA Batteries (4-pack),1,2.99,12/04/19 15:57,"434 Forest St, Portland, OR 97035" +298663,Bose SoundSport Headphones,1,99.99,12/03/19 09:59,"638 14th St, Atlanta, GA 30301" +298664,Wired Headphones,1,11.99,12/03/19 17:45,"769 6th St, San Francisco, CA 94016" +298665,Google Phone,1,600.0,12/18/19 14:45,"679 11th St, San Francisco, CA 94016" +298666,Lightning Charging Cable,1,14.95,12/15/19 15:52,"550 Washington St, Austin, TX 73301" +298667,20in Monitor,1,109.99,12/08/19 17:17,"341 Maple St, Dallas, TX 75001" +298668,USB-C Charging Cable,1,11.95,12/30/19 21:55,"263 5th St, San Francisco, CA 94016" +298669,AAA Batteries (4-pack),1,2.99,12/21/19 08:30,"111 Ridge St, San Francisco, CA 94016" +298670,USB-C Charging Cable,1,11.95,12/23/19 16:05,"741 Pine St, Atlanta, GA 30301" +298671,Flatscreen TV,1,300.0,12/03/19 14:23,"245 Main St, Dallas, TX 75001" +298672,iPhone,1,700.0,12/17/19 11:05,"485 Washington St, Los Angeles, CA 90001" +298673,Wired Headphones,1,11.99,12/24/19 13:32,"154 Walnut St, Los Angeles, CA 90001" +298674,USB-C Charging Cable,1,11.95,12/09/19 15:25,"238 Hill St, Los Angeles, CA 90001" +298675,Bose SoundSport Headphones,1,99.99,12/16/19 16:55,"477 11th St, New York City, NY 10001" +298676,ThinkPad Laptop,1,999.99,12/05/19 09:33,"474 11th St, New York City, NY 10001" +298677,ThinkPad Laptop,1,999.99,12/04/19 20:10,"199 Sunset St, Los Angeles, CA 90001" +298678,Wired Headphones,1,11.99,12/24/19 15:50,"923 Park St, Seattle, WA 98101" +298679,USB-C Charging Cable,1,11.95,12/19/19 20:30,"180 Spruce St, San Francisco, CA 94016" +298680,Flatscreen TV,1,300.0,12/09/19 20:52,"606 1st St, San Francisco, CA 94016" +298681,27in FHD Monitor,1,149.99,12/02/19 13:41,"179 8th St, San Francisco, CA 94016" +298682,Google Phone,1,600.0,12/11/19 16:55,"142 5th St, Boston, MA 02215" +298683,iPhone,1,700.0,12/29/19 18:10,"451 Dogwood St, Dallas, TX 75001" +298684,Bose SoundSport Headphones,1,99.99,12/06/19 16:10,"406 Lincoln St, Seattle, WA 98101" +298685,27in FHD Monitor,1,149.99,12/11/19 11:38,"641 North St, Austin, TX 73301" +298686,USB-C Charging Cable,1,11.95,12/04/19 07:28,"19 14th St, Portland, OR 97035" +298687,iPhone,1,700.0,12/07/19 09:54,"91 Lincoln St, Los Angeles, CA 90001" +298687,Wired Headphones,1,11.99,12/07/19 09:54,"91 Lincoln St, Los Angeles, CA 90001" +298688,27in FHD Monitor,1,149.99,12/11/19 23:09,"172 Wilson St, Boston, MA 02215" +298689,Bose SoundSport Headphones,1,99.99,12/27/19 02:34,"890 Jefferson St, San Francisco, CA 94016" +298690,USB-C Charging Cable,1,11.95,12/19/19 15:53,"205 Jefferson St, Portland, OR 97035" +298691,27in FHD Monitor,1,149.99,12/20/19 15:17,"573 14th St, Dallas, TX 75001" +298692,Bose SoundSport Headphones,1,99.99,12/10/19 16:35,"630 6th St, Los Angeles, CA 90001" +298693,Wired Headphones,1,11.99,12/23/19 22:12,"187 Lakeview St, New York City, NY 10001" +298694,Lightning Charging Cable,1,14.95,12/31/19 17:22,"314 Forest St, San Francisco, CA 94016" +298695,USB-C Charging Cable,1,11.95,12/06/19 18:49,"168 6th St, Austin, TX 73301" +298696,AA Batteries (4-pack),1,3.84,12/13/19 20:58,"623 Lakeview St, Dallas, TX 75001" +298697,Apple Airpods Headphones,1,150.0,12/09/19 10:30,"150 North St, Dallas, TX 75001" +298698,USB-C Charging Cable,1,11.95,12/05/19 20:53,"761 Wilson St, San Francisco, CA 94016" +298699,AA Batteries (4-pack),1,3.84,12/19/19 21:19,"58 Meadow St, New York City, NY 10001" +298700,AAA Batteries (4-pack),2,2.99,12/16/19 19:36,"122 2nd St, Austin, TX 73301" +298701,Vareebadd Phone,1,400.0,12/01/19 15:35,"859 Ridge St, Austin, TX 73301" +298702,Apple Airpods Headphones,1,150.0,12/18/19 16:30,"61 Jefferson St, Portland, OR 97035" +298703,Wired Headphones,1,11.99,12/03/19 16:30,"345 8th St, Los Angeles, CA 90001" +298703,Bose SoundSport Headphones,1,99.99,12/03/19 16:30,"345 8th St, Los Angeles, CA 90001" +298704,AAA Batteries (4-pack),3,2.99,12/08/19 13:35,"845 Sunset St, New York City, NY 10001" +298705,Apple Airpods Headphones,1,150.0,12/02/19 19:31,"783 Dogwood St, New York City, NY 10001" +298706,USB-C Charging Cable,1,11.95,12/21/19 10:13,"852 Madison St, Seattle, WA 98101" +298707,Wired Headphones,1,11.99,12/13/19 16:06,"266 14th St, Boston, MA 02215" +298708,USB-C Charging Cable,1,11.95,12/10/19 19:31,"351 Jefferson St, Boston, MA 02215" +298709,AA Batteries (4-pack),1,3.84,12/27/19 20:13,"669 North St, New York City, NY 10001" +298710,Wired Headphones,1,11.99,12/21/19 11:32,"574 Meadow St, San Francisco, CA 94016" +298711,Vareebadd Phone,1,400.0,12/22/19 23:38,"960 14th St, Los Angeles, CA 90001" +298712,Bose SoundSport Headphones,1,99.99,12/15/19 15:29,"137 Park St, San Francisco, CA 94016" +298713,ThinkPad Laptop,1,999.99,12/10/19 22:06,"65 North St, San Francisco, CA 94016" +298714,Lightning Charging Cable,1,14.95,12/03/19 23:02,"5 Highland St, San Francisco, CA 94016" +298715,27in 4K Gaming Monitor,1,389.99,12/04/19 15:35,"246 Ridge St, Portland, OR 97035" +298716,Google Phone,1,600.0,12/10/19 22:05,"596 Lake St, New York City, NY 10001" +298717,Vareebadd Phone,1,400.0,12/12/19 12:56,"419 Johnson St, San Francisco, CA 94016" +298718,Wired Headphones,1,11.99,12/16/19 09:49,"894 Pine St, New York City, NY 10001" +298718,USB-C Charging Cable,1,11.95,12/16/19 09:49,"894 Pine St, New York City, NY 10001" +298719,AAA Batteries (4-pack),2,2.99,12/12/19 17:06,"767 Pine St, Portland, OR 97035" +298720,AAA Batteries (4-pack),1,2.99,12/31/19 17:12,"537 Jefferson St, Portland, OR 97035" +298721,Lightning Charging Cable,1,14.95,12/07/19 23:26,"641 Jefferson St, New York City, NY 10001" +298722,27in FHD Monitor,1,149.99,12/21/19 14:08,"259 Hill St, San Francisco, CA 94016" +298723,USB-C Charging Cable,1,11.95,12/14/19 17:22,"735 Maple St, Seattle, WA 98101" +298724,Wired Headphones,1,11.99,12/22/19 14:10,"943 7th St, San Francisco, CA 94016" +298725,AA Batteries (4-pack),1,3.84,12/17/19 07:40,"392 Spruce St, Seattle, WA 98101" +298726,Lightning Charging Cable,1,14.95,12/28/19 12:03,"407 12th St, Los Angeles, CA 90001" +298727,Bose SoundSport Headphones,1,99.99,12/29/19 23:08,"459 Dogwood St, Dallas, TX 75001" +298728,34in Ultrawide Monitor,1,379.99,12/03/19 12:34,"556 Highland St, Atlanta, GA 30301" +298729,Bose SoundSport Headphones,2,99.99,12/01/19 18:19,"727 10th St, San Francisco, CA 94016" +298730,Apple Airpods Headphones,1,150.0,12/23/19 12:09,"43 Washington St, Portland, ME 04101" +298731,AAA Batteries (4-pack),1,2.99,12/31/19 20:45,"167 Hill St, Los Angeles, CA 90001" +298732,27in 4K Gaming Monitor,1,389.99,12/14/19 22:22,"619 Dogwood St, Los Angeles, CA 90001" +298733,AA Batteries (4-pack),1,3.84,12/25/19 11:13,"949 Dogwood St, New York City, NY 10001" +,,,,, +298734,27in FHD Monitor,1,149.99,12/17/19 17:54,"455 Highland St, Los Angeles, CA 90001" +298735,USB-C Charging Cable,1,11.95,12/28/19 14:36,"658 Cedar St, San Francisco, CA 94016" +298736,AAA Batteries (4-pack),1,2.99,12/27/19 14:46,"456 4th St, Seattle, WA 98101" +298737,AA Batteries (4-pack),1,3.84,12/31/19 07:20,"7 9th St, New York City, NY 10001" +298738,Flatscreen TV,1,300,12/20/19 13:30,"862 Maple St, Los Angeles, CA 90001" +298739,Lightning Charging Cable,1,14.95,12/19/19 10:43,"794 Jackson St, Boston, MA 02215" +298740,Apple Airpods Headphones,1,150,12/15/19 11:46,"878 Hickory St, San Francisco, CA 94016" +298741,AA Batteries (4-pack),2,3.84,12/28/19 09:26,"829 Elm St, Atlanta, GA 30301" +298742,Wired Headphones,1,11.99,12/06/19 18:35,"311 Chestnut St, Los Angeles, CA 90001" +298743,Vareebadd Phone,1,400,12/15/19 10:14,"259 Lakeview St, Dallas, TX 75001" +298743,USB-C Charging Cable,1,11.95,12/15/19 10:14,"259 Lakeview St, Dallas, TX 75001" +298744,USB-C Charging Cable,1,11.95,12/09/19 13:51,"471 Jackson St, Portland, ME 04101" +298745,Apple Airpods Headphones,1,150,12/28/19 07:06,"120 Ridge St, San Francisco, CA 94016" +298746,Vareebadd Phone,1,400,12/02/19 09:30,"989 Ridge St, San Francisco, CA 94016" +298747,Google Phone,1,600,12/25/19 10:48,"443 Church St, Los Angeles, CA 90001" +298748,34in Ultrawide Monitor,1,379.99,12/03/19 22:31,"9 Ridge St, Boston, MA 02215" +298749,20in Monitor,1,109.99,12/31/19 16:21,"739 Dogwood St, Dallas, TX 75001" +298750,Lightning Charging Cable,1,14.95,12/30/19 18:02,"586 10th St, Atlanta, GA 30301" +298751,AAA Batteries (4-pack),1,2.99,12/16/19 15:01,"173 Wilson St, Atlanta, GA 30301" +298752,USB-C Charging Cable,1,11.95,12/04/19 10:09,"547 Hill St, Atlanta, GA 30301" +298753,Bose SoundSport Headphones,1,99.99,12/06/19 13:53,"658 North St, New York City, NY 10001" +298754,27in FHD Monitor,1,149.99,12/16/19 10:46,"506 5th St, Dallas, TX 75001" +298755,AAA Batteries (4-pack),4,2.99,12/21/19 11:46,"658 Madison St, San Francisco, CA 94016" +298756,USB-C Charging Cable,2,11.95,12/30/19 09:51,"34 Cherry St, Austin, TX 73301" +298757,AA Batteries (4-pack),1,3.84,12/27/19 11:58,"268 11th St, Portland, ME 04101" +298758,iPhone,1,700,12/22/19 16:52,"988 Lake St, Seattle, WA 98101" +298759,Lightning Charging Cable,1,14.95,12/11/19 10:08,"391 Cherry St, Los Angeles, CA 90001" +298760,27in FHD Monitor,1,149.99,12/22/19 12:44,"927 10th St, San Francisco, CA 94016" +298761,AA Batteries (4-pack),2,3.84,12/18/19 10:24,"359 West St, Portland, OR 97035" +298762,AA Batteries (4-pack),1,3.84,12/28/19 18:24,"454 Pine St, New York City, NY 10001" +298763,Macbook Pro Laptop,1,1700,12/17/19 10:51,"240 Park St, New York City, NY 10001" +298764,Wired Headphones,1,11.99,12/10/19 21:18,"289 West St, Seattle, WA 98101" +298765,AA Batteries (4-pack),2,3.84,12/12/19 17:38,"652 South St, Los Angeles, CA 90001" +298766,USB-C Charging Cable,1,11.95,12/08/19 00:39,"280 North St, Austin, TX 73301" +298767,AA Batteries (4-pack),1,3.84,12/19/19 07:59,"585 13th St, Portland, ME 04101" +298768,Apple Airpods Headphones,1,150,12/31/19 14:50,"343 14th St, San Francisco, CA 94016" +298769,Google Phone,1,600,12/12/19 22:29,"955 Washington St, San Francisco, CA 94016" +298769,Wired Headphones,1,11.99,12/12/19 22:29,"955 Washington St, San Francisco, CA 94016" +298770,Bose SoundSport Headphones,1,99.99,12/19/19 01:28,"309 Church St, Los Angeles, CA 90001" +298771,USB-C Charging Cable,1,11.95,12/27/19 10:05,"768 10th St, Los Angeles, CA 90001" +298772,Apple Airpods Headphones,1,150,12/02/19 15:12,"143 11th St, Portland, OR 97035" +298773,USB-C Charging Cable,1,11.95,12/14/19 01:57,"313 Hickory St, Boston, MA 02215" +298774,USB-C Charging Cable,1,11.95,12/16/19 17:16,"735 Washington St, Los Angeles, CA 90001" +298775,Apple Airpods Headphones,1,150,12/16/19 16:12,"406 Jefferson St, New York City, NY 10001" +298776,Vareebadd Phone,1,400,12/01/19 20:21,"588 Willow St, Boston, MA 02215" +298777,USB-C Charging Cable,1,11.95,12/14/19 00:02,"649 South St, Los Angeles, CA 90001" +298778,Apple Airpods Headphones,1,150,12/29/19 12:33,"491 2nd St, New York City, NY 10001" +298779,AA Batteries (4-pack),2,3.84,12/01/19 15:56,"458 North St, Los Angeles, CA 90001" +298780,Flatscreen TV,1,300,12/02/19 08:55,"717 Hickory St, San Francisco, CA 94016" +298781,Apple Airpods Headphones,1,150,12/29/19 17:20,"860 Maple St, Seattle, WA 98101" +298782,Apple Airpods Headphones,1,150,12/20/19 21:00,"975 Jefferson St, San Francisco, CA 94016" +298783,AAA Batteries (4-pack),4,2.99,12/08/19 10:47,"202 Meadow St, Boston, MA 02215" +298784,USB-C Charging Cable,1,11.95,12/10/19 18:02,"894 Cedar St, Los Angeles, CA 90001" +298785,Lightning Charging Cable,1,14.95,12/09/19 19:46,"406 Lincoln St, Los Angeles, CA 90001" +298786,Wired Headphones,1,11.99,12/17/19 16:26,"541 Pine St, New York City, NY 10001" +298787,27in 4K Gaming Monitor,1,389.99,12/26/19 13:21,"588 Cedar St, New York City, NY 10001" +298788,Lightning Charging Cable,3,14.95,12/03/19 11:21,"904 14th St, Seattle, WA 98101" +298789,USB-C Charging Cable,1,11.95,12/22/19 15:10,"80 12th St, San Francisco, CA 94016" +298790,Lightning Charging Cable,1,14.95,12/01/19 06:46,"16 Cedar St, San Francisco, CA 94016" +298791,Bose SoundSport Headphones,1,99.99,12/03/19 19:12,"490 8th St, Los Angeles, CA 90001" +298792,USB-C Charging Cable,1,11.95,12/31/19 16:05,"966 12th St, Los Angeles, CA 90001" +298793,Lightning Charging Cable,1,14.95,12/12/19 21:48,"834 Pine St, Seattle, WA 98101" +298794,Google Phone,1,600,12/06/19 13:08,"204 1st St, Boston, MA 02215" +298795,AA Batteries (4-pack),1,3.84,12/19/19 22:35,"968 Ridge St, San Francisco, CA 94016" +298796,Lightning Charging Cable,1,14.95,12/10/19 15:42,"353 13th St, New York City, NY 10001" +298797,AAA Batteries (4-pack),1,2.99,12/02/19 17:19,"784 5th St, Dallas, TX 75001" +298798,Lightning Charging Cable,1,14.95,12/30/19 13:36,"463 4th St, Austin, TX 73301" +298799,AAA Batteries (4-pack),1,2.99,12/30/19 19:39,"244 North St, San Francisco, CA 94016" +298800,Wired Headphones,1,11.99,12/06/19 14:26,"264 Lakeview St, Seattle, WA 98101" +298801,iPhone,1,700,12/01/19 11:59,"220 Hill St, Austin, TX 73301" +298801,Lightning Charging Cable,1,14.95,12/01/19 11:59,"220 Hill St, Austin, TX 73301" +298802,USB-C Charging Cable,1,11.95,12/02/19 13:10,"838 Willow St, Los Angeles, CA 90001" +298803,Flatscreen TV,1,300,12/26/19 21:32,"780 Hickory St, San Francisco, CA 94016" +298804,Bose SoundSport Headphones,1,99.99,12/21/19 09:43,"616 Lake St, Austin, TX 73301" +298805,27in 4K Gaming Monitor,1,389.99,12/26/19 02:29,"400 7th St, Boston, MA 02215" +298806,Bose SoundSport Headphones,1,99.99,12/05/19 14:03,"722 14th St, Los Angeles, CA 90001" +,,,,, +298807,USB-C Charging Cable,1,11.95,12/22/19 21:38,"469 Spruce St, New York City, NY 10001" +298808,Lightning Charging Cable,1,14.95,12/11/19 19:16,"47 West St, Atlanta, GA 30301" +298809,AAA Batteries (4-pack),1,2.99,12/06/19 10:50,"339 Cedar St, New York City, NY 10001" +298810,AAA Batteries (4-pack),1,2.99,12/27/19 13:25,"709 13th St, San Francisco, CA 94016" +298811,Bose SoundSport Headphones,1,99.99,12/04/19 10:19,"933 Madison St, Dallas, TX 75001" +298812,USB-C Charging Cable,1,11.95,12/21/19 19:52,"488 10th St, San Francisco, CA 94016" +298813,USB-C Charging Cable,1,11.95,12/04/19 13:48,"874 12th St, Austin, TX 73301" +298814,Lightning Charging Cable,1,14.95,12/28/19 13:33,"776 Cherry St, Boston, MA 02215" +298815,Wired Headphones,1,11.99,12/05/19 19:21,"31 South St, Boston, MA 02215" +298816,AAA Batteries (4-pack),2,2.99,12/29/19 10:29,"234 Sunset St, Seattle, WA 98101" +298817,Wired Headphones,1,11.99,12/07/19 01:23,"169 6th St, San Francisco, CA 94016" +298818,USB-C Charging Cable,1,11.95,12/28/19 19:35,"993 10th St, San Francisco, CA 94016" +298819,Wired Headphones,2,11.99,12/21/19 13:36,"671 Forest St, Seattle, WA 98101" +298820,ThinkPad Laptop,1,999.99,12/22/19 18:56,"675 8th St, San Francisco, CA 94016" +298821,ThinkPad Laptop,1,999.99,12/19/19 21:12,"807 12th St, Los Angeles, CA 90001" +298822,Lightning Charging Cable,1,14.95,12/24/19 04:32,"288 North St, Dallas, TX 75001" +298823,AA Batteries (4-pack),1,3.84,12/29/19 18:02,"192 9th St, Los Angeles, CA 90001" +298824,USB-C Charging Cable,1,11.95,12/19/19 19:26,"741 Sunset St, Los Angeles, CA 90001" +298825,AA Batteries (4-pack),1,3.84,12/02/19 23:51,"311 2nd St, San Francisco, CA 94016" +298826,Vareebadd Phone,1,400,12/15/19 21:31,"792 Lakeview St, Seattle, WA 98101" +298827,AAA Batteries (4-pack),1,2.99,12/28/19 20:01,"10 10th St, Los Angeles, CA 90001" +298828,Lightning Charging Cable,1,14.95,12/19/19 21:45,"649 14th St, New York City, NY 10001" +298829,AA Batteries (4-pack),3,3.84,12/02/19 14:39,"330 Hickory St, Atlanta, GA 30301" +298830,Vareebadd Phone,1,400,12/27/19 21:44,"947 North St, New York City, NY 10001" +298830,USB-C Charging Cable,1,11.95,12/27/19 21:44,"947 North St, New York City, NY 10001" +298830,Wired Headphones,1,11.99,12/27/19 21:44,"947 North St, New York City, NY 10001" +298831,Bose SoundSport Headphones,1,99.99,12/19/19 20:55,"202 1st St, Boston, MA 02215" +298832,Wired Headphones,1,11.99,12/31/19 16:11,"176 Lakeview St, Los Angeles, CA 90001" +298833,AA Batteries (4-pack),1,3.84,12/22/19 21:22,"698 9th St, Boston, MA 02215" +298834,iPhone,1,700,12/21/19 17:02,"787 6th St, New York City, NY 10001" +298834,Lightning Charging Cable,1,14.95,12/21/19 17:02,"787 6th St, New York City, NY 10001" +298835,iPhone,1,700,12/02/19 11:16,"661 1st St, Seattle, WA 98101" +298836,USB-C Charging Cable,1,11.95,12/16/19 10:37,"609 Spruce St, Boston, MA 02215" +298836,iPhone,1,700,12/16/19 10:37,"609 Spruce St, Boston, MA 02215" +298837,Wired Headphones,2,11.99,12/19/19 11:16,"363 Willow St, Atlanta, GA 30301" +298838,USB-C Charging Cable,1,11.95,12/11/19 18:37,"504 Spruce St, New York City, NY 10001" +298839,27in 4K Gaming Monitor,1,389.99,12/12/19 02:06,"982 13th St, New York City, NY 10001" +298840,Lightning Charging Cable,1,14.95,12/22/19 00:38,"840 River St, Seattle, WA 98101" +298841,Wired Headphones,1,11.99,12/26/19 22:21,"11 Willow St, Los Angeles, CA 90001" +298842,AAA Batteries (4-pack),1,2.99,12/02/19 12:11,"250 Willow St, New York City, NY 10001" +298843,Apple Airpods Headphones,1,150,12/13/19 14:55,"95 7th St, San Francisco, CA 94016" +298844,Lightning Charging Cable,1,14.95,12/07/19 16:26,"551 Lakeview St, San Francisco, CA 94016" +298845,AAA Batteries (4-pack),2,2.99,12/28/19 10:44,"508 Washington St, Boston, MA 02215" +298846,Flatscreen TV,1,300,12/29/19 18:47,"224 North St, New York City, NY 10001" +298847,AA Batteries (4-pack),2,3.84,12/23/19 19:31,"296 6th St, Boston, MA 02215" +298848,20in Monitor,1,109.99,12/16/19 19:37,"167 Jackson St, San Francisco, CA 94016" +298849,Bose SoundSport Headphones,1,99.99,12/24/19 13:38,"262 10th St, San Francisco, CA 94016" +298850,Google Phone,1,600,12/10/19 13:17,"144 Maple St, Portland, OR 97035" +298851,Lightning Charging Cable,1,14.95,12/31/19 10:20,"585 Meadow St, New York City, NY 10001" +298852,Macbook Pro Laptop,1,1700,12/21/19 08:52,"717 Center St, Dallas, TX 75001" +298853,AA Batteries (4-pack),1,3.84,12/22/19 14:30,"638 Spruce St, New York City, NY 10001" +298854,Bose SoundSport Headphones,1,99.99,12/25/19 12:41,"807 River St, Boston, MA 02215" +298855,USB-C Charging Cable,1,11.95,12/20/19 22:39,"337 1st St, Boston, MA 02215" +298856,ThinkPad Laptop,1,999.99,12/15/19 18:17,"344 Hickory St, Los Angeles, CA 90001" +298857,AA Batteries (4-pack),1,3.84,12/23/19 21:07,"702 Lincoln St, Dallas, TX 75001" +298858,27in FHD Monitor,1,149.99,12/30/19 11:42,"407 7th St, New York City, NY 10001" +298858,Wired Headphones,1,11.99,12/30/19 11:42,"407 7th St, New York City, NY 10001" +298859,USB-C Charging Cable,1,11.95,12/23/19 18:40,"669 Main St, San Francisco, CA 94016" +298860,USB-C Charging Cable,1,11.95,12/14/19 20:44,"835 Walnut St, Dallas, TX 75001" +298861,Macbook Pro Laptop,1,1700,12/22/19 23:57,"626 Maple St, New York City, NY 10001" +298862,ThinkPad Laptop,1,999.99,12/10/19 22:23,"643 North St, Portland, OR 97035" +298862,Macbook Pro Laptop,1,1700,12/10/19 22:23,"643 North St, Portland, OR 97035" +298863,27in 4K Gaming Monitor,1,389.99,12/13/19 23:29,"346 10th St, Portland, OR 97035" +298864,27in FHD Monitor,1,149.99,12/18/19 18:21,"111 Cherry St, Los Angeles, CA 90001" +298865,USB-C Charging Cable,1,11.95,12/28/19 17:33,"607 2nd St, New York City, NY 10001" +298866,USB-C Charging Cable,1,11.95,12/26/19 15:22,"369 Madison St, San Francisco, CA 94016" +298867,Apple Airpods Headphones,1,150,12/28/19 15:56,"850 Madison St, New York City, NY 10001" +298868,iPhone,1,700,12/30/19 20:16,"936 12th St, Los Angeles, CA 90001" +298869,Apple Airpods Headphones,1,150,12/14/19 22:41,"496 Dogwood St, San Francisco, CA 94016" +298870,AA Batteries (4-pack),2,3.84,12/12/19 11:45,"551 Lake St, Boston, MA 02215" +298871,Wired Headphones,1,11.99,12/30/19 18:37,"718 Hill St, New York City, NY 10001" +298872,AAA Batteries (4-pack),2,2.99,12/31/19 17:58,"904 Hill St, Los Angeles, CA 90001" +298873,AA Batteries (4-pack),2,3.84,12/29/19 16:05,"668 9th St, Los Angeles, CA 90001" +298874,Lightning Charging Cable,1,14.95,12/04/19 13:36,"742 1st St, Austin, TX 73301" +298875,27in 4K Gaming Monitor,1,389.99,12/10/19 11:45,"897 Dogwood St, New York City, NY 10001" +298876,34in Ultrawide Monitor,1,379.99,12/17/19 17:54,"672 Hill St, Seattle, WA 98101" +298877,ThinkPad Laptop,1,999.99,12/03/19 11:02,"543 Jefferson St, Boston, MA 02215" +298878,Lightning Charging Cable,1,14.95,12/06/19 14:37,"310 Lakeview St, Boston, MA 02215" +298879,Lightning Charging Cable,1,14.95,12/16/19 16:35,"778 North St, San Francisco, CA 94016" +298880,USB-C Charging Cable,1,11.95,12/20/19 21:01,"712 Main St, Seattle, WA 98101" +298881,Apple Airpods Headphones,1,150,12/06/19 17:10,"945 9th St, Portland, OR 97035" +298882,Lightning Charging Cable,1,14.95,12/25/19 21:37,"450 Ridge St, Los Angeles, CA 90001" +298883,Lightning Charging Cable,1,14.95,12/09/19 18:38,"821 4th St, Portland, ME 04101" +298884,USB-C Charging Cable,1,11.95,12/15/19 17:27,"441 Maple St, Los Angeles, CA 90001" +298885,USB-C Charging Cable,1,11.95,12/08/19 12:24,"110 7th St, Portland, OR 97035" +298886,AAA Batteries (4-pack),1,2.99,12/19/19 12:00,"811 Lakeview St, San Francisco, CA 94016" +298887,Wired Headphones,1,11.99,12/01/19 02:43,"671 9th St, San Francisco, CA 94016" +298888,27in FHD Monitor,1,149.99,12/17/19 23:32,"568 River St, Atlanta, GA 30301" +298889,Wired Headphones,1,11.99,12/09/19 19:04,"206 2nd St, Portland, ME 04101" +298890,Wired Headphones,1,11.99,12/13/19 11:31,"752 5th St, New York City, NY 10001" +298891,AA Batteries (4-pack),2,3.84,12/29/19 22:55,"657 Hill St, San Francisco, CA 94016" +298892,AAA Batteries (4-pack),2,2.99,12/21/19 22:31,"249 Lincoln St, Boston, MA 02215" +298893,Google Phone,1,600,12/19/19 07:34,"438 Meadow St, Seattle, WA 98101" +298893,Bose SoundSport Headphones,2,99.99,12/19/19 07:34,"438 Meadow St, Seattle, WA 98101" +298894,USB-C Charging Cable,1,11.95,12/31/19 20:13,"504 West St, Los Angeles, CA 90001" +298895,AAA Batteries (4-pack),1,2.99,12/17/19 11:04,"755 Main St, San Francisco, CA 94016" +298896,USB-C Charging Cable,1,11.95,12/11/19 18:36,"493 5th St, Los Angeles, CA 90001" +298897,Macbook Pro Laptop,1,1700,12/20/19 20:25,"195 Lakeview St, San Francisco, CA 94016" +298898,Wired Headphones,1,11.99,12/25/19 17:45,"27 Lakeview St, New York City, NY 10001" +298899,Bose SoundSport Headphones,1,99.99,12/03/19 14:51,"581 Jackson St, Portland, OR 97035" +298900,AAA Batteries (4-pack),1,2.99,12/03/19 10:46,"800 Wilson St, New York City, NY 10001" +298901,Lightning Charging Cable,1,14.95,12/09/19 09:21,"300 South St, Los Angeles, CA 90001" +298902,AA Batteries (4-pack),1,3.84,12/12/19 17:21,"260 2nd St, Boston, MA 02215" +298903,27in FHD Monitor,1,149.99,12/31/19 19:32,"205 Spruce St, Los Angeles, CA 90001" +298904,USB-C Charging Cable,1,11.95,12/08/19 20:43,"291 1st St, Portland, OR 97035" +298905,iPhone,1,700,12/26/19 21:04,"752 Cedar St, New York City, NY 10001" +298906,AAA Batteries (4-pack),2,2.99,12/18/19 21:08,"408 14th St, Dallas, TX 75001" +298907,AA Batteries (4-pack),1,3.84,12/09/19 22:47,"413 Lakeview St, Los Angeles, CA 90001" +298908,Lightning Charging Cable,1,14.95,12/10/19 19:26,"208 1st St, Los Angeles, CA 90001" +298909,Apple Airpods Headphones,1,150,12/24/19 09:49,"877 Sunset St, Atlanta, GA 30301" +298910,AAA Batteries (4-pack),1,2.99,12/19/19 09:22,"221 Cherry St, San Francisco, CA 94016" +298911,27in 4K Gaming Monitor,1,389.99,12/31/19 09:37,"183 Hickory St, Dallas, TX 75001" +298912,AAA Batteries (4-pack),1,2.99,12/11/19 20:46,"548 Lincoln St, Boston, MA 02215" +298913,AAA Batteries (4-pack),1,2.99,12/20/19 21:56,"896 Hill St, San Francisco, CA 94016" +298914,AA Batteries (4-pack),2,3.84,12/08/19 16:46,"148 Highland St, Portland, OR 97035" +298914,AAA Batteries (4-pack),3,2.99,12/08/19 16:46,"148 Highland St, Portland, OR 97035" +298915,AA Batteries (4-pack),1,3.84,12/29/19 13:54,"530 14th St, New York City, NY 10001" +298916,USB-C Charging Cable,1,11.95,12/02/19 17:51,"226 Maple St, Boston, MA 02215" +298917,AA Batteries (4-pack),3,3.84,12/08/19 12:37,"345 Chestnut St, Seattle, WA 98101" +298918,Apple Airpods Headphones,1,150,12/01/19 14:19,"166 8th St, Portland, OR 97035" +298919,Lightning Charging Cable,1,14.95,12/09/19 10:46,"951 12th St, Los Angeles, CA 90001" +298920,Bose SoundSport Headphones,1,99.99,12/25/19 21:06,"222 Pine St, Boston, MA 02215" +298921,AAA Batteries (4-pack),2,2.99,12/09/19 23:02,"974 Main St, Seattle, WA 98101" +298922,AA Batteries (4-pack),1,3.84,12/10/19 13:21,"951 Walnut St, Dallas, TX 75001" +298923,Wired Headphones,1,11.99,12/20/19 17:10,"795 Park St, Boston, MA 02215" +298924,Macbook Pro Laptop,1,1700,12/16/19 21:10,"344 Meadow St, San Francisco, CA 94016" +298925,Lightning Charging Cable,1,14.95,12/10/19 15:15,"630 Adams St, New York City, NY 10001" +298926,34in Ultrawide Monitor,1,379.99,12/28/19 18:23,"532 Cedar St, New York City, NY 10001" +298927,Lightning Charging Cable,1,14.95,12/03/19 21:44,"109 Johnson St, Portland, OR 97035" +298928,Lightning Charging Cable,1,14.95,12/28/19 00:16,"515 Pine St, Los Angeles, CA 90001" +298929,27in FHD Monitor,1,149.99,12/20/19 22:14,"819 7th St, Portland, OR 97035" +298930,Google Phone,1,600,12/31/19 09:27,"997 1st St, New York City, NY 10001" +298931,27in 4K Gaming Monitor,1,389.99,12/17/19 21:15,"136 7th St, Los Angeles, CA 90001" +298932,Wired Headphones,1,11.99,12/26/19 21:04,"552 Walnut St, San Francisco, CA 94016" +298933,ThinkPad Laptop,1,999.99,12/15/19 07:58,"287 13th St, Los Angeles, CA 90001" +298934,USB-C Charging Cable,1,11.95,12/19/19 18:10,"482 Johnson St, New York City, NY 10001" +298935,Wired Headphones,1,11.99,12/29/19 18:02,"703 12th St, Dallas, TX 75001" +298936,34in Ultrawide Monitor,1,379.99,12/15/19 12:31,"492 10th St, Los Angeles, CA 90001" +298937,Bose SoundSport Headphones,1,99.99,12/14/19 23:16,"454 9th St, Seattle, WA 98101" +298938,Lightning Charging Cable,1,14.95,12/24/19 20:12,"675 Madison St, Boston, MA 02215" +298939,AA Batteries (4-pack),1,3.84,12/29/19 18:30,"475 Jefferson St, San Francisco, CA 94016" +298940,Bose SoundSport Headphones,1,99.99,12/01/19 17:20,"976 12th St, Boston, MA 02215" +298941,AA Batteries (4-pack),1,3.84,12/25/19 18:58,"228 Johnson St, Los Angeles, CA 90001" +298942,Wired Headphones,1,11.99,12/08/19 13:12,"372 Jackson St, Seattle, WA 98101" +298943,AAA Batteries (4-pack),2,2.99,12/22/19 13:20,"645 6th St, Los Angeles, CA 90001" +298944,Lightning Charging Cable,1,14.95,12/17/19 22:12,"781 Cherry St, Austin, TX 73301" +298945,AA Batteries (4-pack),1,3.84,12/28/19 09:32,"581 Lakeview St, New York City, NY 10001" +298946,iPhone,1,700,12/07/19 07:31,"605 7th St, New York City, NY 10001" +298947,Apple Airpods Headphones,1,150,12/13/19 03:57,"54 Hickory St, Boston, MA 02215" +298948,Lightning Charging Cable,1,14.95,12/30/19 01:54,"780 West St, Atlanta, GA 30301" +298949,iPhone,1,700,12/09/19 21:17,"563 Wilson St, Portland, ME 04101" +298950,ThinkPad Laptop,1,999.99,12/30/19 14:09,"344 Cedar St, New York City, NY 10001" +298951,Lightning Charging Cable,1,14.95,12/11/19 14:51,"811 Meadow St, San Francisco, CA 94016" +298952,USB-C Charging Cable,1,11.95,12/04/19 15:04,"979 Meadow St, San Francisco, CA 94016" +298953,27in FHD Monitor,1,149.99,12/31/19 20:25,"677 14th St, San Francisco, CA 94016" +298954,AA Batteries (4-pack),1,3.84,12/05/19 21:27,"225 Maple St, Seattle, WA 98101" +298955,Wired Headphones,1,11.99,12/30/19 23:01,"502 Walnut St, Austin, TX 73301" +298956,USB-C Charging Cable,1,11.95,12/07/19 16:46,"910 Lake St, Atlanta, GA 30301" +298957,Apple Airpods Headphones,1,150,12/25/19 11:53,"712 Center St, Atlanta, GA 30301" +298958,USB-C Charging Cable,1,11.95,12/06/19 16:16,"456 Walnut St, Dallas, TX 75001" +298959,AAA Batteries (4-pack),1,2.99,12/16/19 18:01,"85 Jackson St, San Francisco, CA 94016" +298960,Flatscreen TV,1,300,12/12/19 22:03,"603 2nd St, Austin, TX 73301" +298961,ThinkPad Laptop,1,999.99,12/24/19 18:08,"93 South St, New York City, NY 10001" +298962,AA Batteries (4-pack),1,3.84,12/10/19 13:14,"230 Cedar St, Los Angeles, CA 90001" +298963,USB-C Charging Cable,1,11.95,12/03/19 06:08,"445 North St, Los Angeles, CA 90001" +298964,34in Ultrawide Monitor,1,379.99,12/10/19 15:49,"264 Pine St, Austin, TX 73301" +298965,iPhone,1,700,12/11/19 13:11,"854 11th St, San Francisco, CA 94016" +298966,USB-C Charging Cable,1,11.95,12/26/19 16:57,"659 Forest St, Austin, TX 73301" +298967,AA Batteries (4-pack),1,3.84,12/12/19 19:27,"377 Maple St, Portland, OR 97035" +298968,AAA Batteries (4-pack),3,2.99,12/26/19 17:11,"877 Highland St, San Francisco, CA 94016" +298969,AA Batteries (4-pack),1,3.84,12/06/19 11:30,"776 Lincoln St, Los Angeles, CA 90001" +298970,AAA Batteries (4-pack),1,2.99,12/07/19 12:39,"237 Willow St, Austin, TX 73301" +298971,AA Batteries (4-pack),2,3.84,12/09/19 01:45,"825 Elm St, San Francisco, CA 94016" +298972,USB-C Charging Cable,1,11.95,12/11/19 15:01,"467 13th St, San Francisco, CA 94016" +298973,iPhone,1,700,12/01/19 16:45,"240 Dogwood St, Austin, TX 73301" +298973,Lightning Charging Cable,1,14.95,12/01/19 16:45,"240 Dogwood St, Austin, TX 73301" +298974,USB-C Charging Cable,1,11.95,12/29/19 17:23,"419 Jackson St, Los Angeles, CA 90001" +298975,AA Batteries (4-pack),1,3.84,12/02/19 10:47,"797 Jackson St, San Francisco, CA 94016" +298976,34in Ultrawide Monitor,1,379.99,12/16/19 16:26,"493 River St, Atlanta, GA 30301" +298977,USB-C Charging Cable,1,11.95,12/27/19 22:06,"394 Lake St, San Francisco, CA 94016" +298978,Macbook Pro Laptop,1,1700,12/15/19 17:50,"974 South St, Boston, MA 02215" +298979,AAA Batteries (4-pack),1,2.99,12/23/19 14:13,"520 South St, New York City, NY 10001" +298980,Apple Airpods Headphones,1,150,12/18/19 21:33,"385 South St, San Francisco, CA 94016" +298981,AA Batteries (4-pack),2,3.84,12/13/19 14:10,"261 Maple St, New York City, NY 10001" +298982,Wired Headphones,1,11.99,12/20/19 20:12,"859 Lincoln St, San Francisco, CA 94016" +298983,USB-C Charging Cable,1,11.95,12/13/19 16:18,"585 Lake St, Boston, MA 02215" +298984,USB-C Charging Cable,1,11.95,12/20/19 19:12,"848 Walnut St, Austin, TX 73301" +298985,AA Batteries (4-pack),2,3.84,12/22/19 20:33,"4 Meadow St, Boston, MA 02215" +298986,USB-C Charging Cable,1,11.95,12/03/19 17:01,"746 Jefferson St, Portland, OR 97035" +298987,USB-C Charging Cable,1,11.95,12/26/19 10:35,"955 Madison St, New York City, NY 10001" +298988,USB-C Charging Cable,1,11.95,12/29/19 11:25,"814 Center St, San Francisco, CA 94016" +298989,AA Batteries (4-pack),1,3.84,12/08/19 23:34,"167 2nd St, Atlanta, GA 30301" +298990,Apple Airpods Headphones,1,150,12/13/19 17:25,"764 Chestnut St, Seattle, WA 98101" +298991,AAA Batteries (4-pack),1,2.99,12/24/19 15:55,"685 West St, New York City, NY 10001" +298992,Apple Airpods Headphones,1,150,12/23/19 21:54,"971 Lakeview St, Austin, TX 73301" +298993,Apple Airpods Headphones,1,150,12/30/19 22:03,"862 Ridge St, Portland, OR 97035" +298994,Lightning Charging Cable,1,14.95,12/17/19 11:52,"396 Pine St, San Francisco, CA 94016" +298995,Flatscreen TV,1,300,12/20/19 16:56,"890 Jefferson St, Dallas, TX 75001" +298996,AAA Batteries (4-pack),1,2.99,12/03/19 22:24,"762 North St, Portland, OR 97035" +298997,Wired Headphones,1,11.99,12/02/19 21:40,"954 Cedar St, San Francisco, CA 94016" +298998,AA Batteries (4-pack),2,3.84,12/03/19 21:08,"454 6th St, Seattle, WA 98101" +298999,USB-C Charging Cable,1,11.95,12/03/19 16:26,"118 Main St, Los Angeles, CA 90001" +299000,Lightning Charging Cable,1,14.95,12/21/19 12:19,"270 Meadow St, San Francisco, CA 94016" +299001,AAA Batteries (4-pack),1,2.99,12/24/19 09:29,"574 Chestnut St, Los Angeles, CA 90001" +299002,AA Batteries (4-pack),1,3.84,12/23/19 20:18,"73 9th St, San Francisco, CA 94016" +299003,LG Dryer,1,600.0,12/21/19 06:13,"475 Ridge St, Seattle, WA 98101" +299004,Google Phone,1,600,12/19/19 09:25,"817 West St, San Francisco, CA 94016" +299005,AA Batteries (4-pack),1,3.84,12/16/19 18:43,"984 Park St, Dallas, TX 75001" +299006,Apple Airpods Headphones,1,150,12/20/19 12:35,"702 Cedar St, Austin, TX 73301" +299007,20in Monitor,1,109.99,12/29/19 15:23,"25 11th St, New York City, NY 10001" +299008,AAA Batteries (4-pack),1,2.99,12/31/19 18:37,"942 8th St, San Francisco, CA 94016" +299009,LG Dryer,1,600.0,12/11/19 08:43,"555 11th St, Portland, OR 97035" +299010,20in Monitor,1,109.99,12/18/19 08:52,"853 11th St, Boston, MA 02215" +299011,USB-C Charging Cable,1,11.95,12/10/19 14:15,"907 Pine St, San Francisco, CA 94016" +299012,Bose SoundSport Headphones,1,99.99,12/19/19 10:56,"478 10th St, Boston, MA 02215" +299013,27in 4K Gaming Monitor,1,389.99,12/07/19 13:32,"24 Center St, New York City, NY 10001" +299014,Lightning Charging Cable,1,14.95,12/28/19 18:17,"121 Adams St, San Francisco, CA 94016" +299015,27in FHD Monitor,1,149.99,12/27/19 14:31,"845 14th St, San Francisco, CA 94016" +299016,AA Batteries (4-pack),1,3.84,12/16/19 23:59,"899 8th St, New York City, NY 10001" +299017,Macbook Pro Laptop,1,1700,12/20/19 18:04,"86 6th St, San Francisco, CA 94016" +299018,Apple Airpods Headphones,1,150,12/16/19 16:04,"735 Lakeview St, Dallas, TX 75001" +299019,Bose SoundSport Headphones,1,99.99,12/24/19 11:07,"51 Sunset St, San Francisco, CA 94016" +299020,AA Batteries (4-pack),2,3.84,12/29/19 12:51,"979 Sunset St, Dallas, TX 75001" +299021,34in Ultrawide Monitor,1,379.99,12/09/19 20:59,"252 Lake St, San Francisco, CA 94016" +299022,USB-C Charging Cable,1,11.95,12/23/19 17:55,"867 Lincoln St, Austin, TX 73301" +299023,Wired Headphones,1,11.99,12/16/19 12:26,"979 1st St, Boston, MA 02215" +299024,Wired Headphones,1,11.99,12/15/19 22:16,"785 9th St, Los Angeles, CA 90001" +299025,Bose SoundSport Headphones,1,99.99,12/15/19 01:32,"441 Pine St, New York City, NY 10001" +299026,Wired Headphones,1,11.99,12/10/19 11:31,"497 Ridge St, Boston, MA 02215" +299027,AAA Batteries (4-pack),3,2.99,12/06/19 09:24,"153 South St, San Francisco, CA 94016" +299028,Apple Airpods Headphones,1,150,12/23/19 10:00,"229 Ridge St, Los Angeles, CA 90001" +299029,Lightning Charging Cable,1,14.95,12/24/19 00:48,"422 Lakeview St, San Francisco, CA 94016" +299030,AA Batteries (4-pack),1,3.84,12/29/19 00:24,"725 Hill St, Seattle, WA 98101" +299031,20in Monitor,1,109.99,12/12/19 20:30,"337 14th St, New York City, NY 10001" +299032,Bose SoundSport Headphones,1,99.99,12/28/19 11:38,"253 Adams St, Portland, OR 97035" +299033,Apple Airpods Headphones,1,150,12/27/19 10:18,"30 Lincoln St, San Francisco, CA 94016" +299034,AA Batteries (4-pack),2,3.84,12/20/19 15:02,"903 6th St, Los Angeles, CA 90001" +299035,AAA Batteries (4-pack),2,2.99,12/20/19 19:52,"875 10th St, San Francisco, CA 94016" +299036,AA Batteries (4-pack),1,3.84,12/02/19 13:54,"637 1st St, New York City, NY 10001" +299037,Bose SoundSport Headphones,1,99.99,12/30/19 12:38,"809 12th St, Austin, TX 73301" +299038,27in 4K Gaming Monitor,1,389.99,12/15/19 08:39,"392 Hill St, San Francisco, CA 94016" +299039,Apple Airpods Headphones,1,150,12/28/19 12:50,"645 6th St, New York City, NY 10001" +299040,AA Batteries (4-pack),1,3.84,12/03/19 10:59,"506 10th St, New York City, NY 10001" +299041,USB-C Charging Cable,2,11.95,12/27/19 13:00,"760 Dogwood St, Seattle, WA 98101" +299042,Wired Headphones,1,11.99,12/06/19 12:02,"711 Walnut St, Los Angeles, CA 90001" +299043,iPhone,1,700,12/17/19 18:22,"536 4th St, San Francisco, CA 94016" +299044,Apple Airpods Headphones,1,150,12/10/19 15:38,"802 10th St, New York City, NY 10001" +299045,Lightning Charging Cable,1,14.95,12/29/19 10:37,"480 Lakeview St, San Francisco, CA 94016" +299046,Lightning Charging Cable,1,14.95,12/08/19 12:25,"90 7th St, Boston, MA 02215" +299047,AA Batteries (4-pack),1,3.84,12/26/19 19:38,"451 11th St, Atlanta, GA 30301" +299048,27in FHD Monitor,1,149.99,12/20/19 06:53,"661 Cedar St, Los Angeles, CA 90001" +299049,Apple Airpods Headphones,1,150,12/16/19 14:55,"602 8th St, San Francisco, CA 94016" +299050,Wired Headphones,1,11.99,12/12/19 20:16,"389 4th St, Dallas, TX 75001" +299051,Lightning Charging Cable,1,14.95,12/15/19 10:23,"732 Elm St, New York City, NY 10001" +299052,AAA Batteries (4-pack),3,2.99,12/11/19 12:08,"45 7th St, New York City, NY 10001" +299053,Lightning Charging Cable,1,14.95,12/27/19 19:44,"963 2nd St, Portland, OR 97035" +299054,Bose SoundSport Headphones,1,99.99,12/18/19 10:07,"216 8th St, Portland, ME 04101" +299055,Apple Airpods Headphones,1,150,12/30/19 02:19,"117 Lake St, Boston, MA 02215" +299056,Bose SoundSport Headphones,1,99.99,12/24/19 22:46,"910 Elm St, San Francisco, CA 94016" +299057,Lightning Charging Cable,1,14.95,12/29/19 21:22,"93 Madison St, New York City, NY 10001" +299058,Apple Airpods Headphones,1,150,12/04/19 13:04,"487 Walnut St, Austin, TX 73301" +299059,AA Batteries (4-pack),1,3.84,12/14/19 22:04,"295 Jackson St, Seattle, WA 98101" +299060,27in FHD Monitor,1,149.99,12/14/19 08:56,"548 Sunset St, San Francisco, CA 94016" +299061,Lightning Charging Cable,1,14.95,12/05/19 12:37,"239 West St, Los Angeles, CA 90001" +299062,AA Batteries (4-pack),2,3.84,12/26/19 16:20,"536 North St, San Francisco, CA 94016" +299063,34in Ultrawide Monitor,1,379.99,12/31/19 12:22,"580 Cedar St, Boston, MA 02215" +299064,AAA Batteries (4-pack),2,2.99,12/01/19 12:51,"696 Center St, San Francisco, CA 94016" +299065,Wired Headphones,1,11.99,12/13/19 21:10,"338 Lincoln St, San Francisco, CA 94016" +299066,Bose SoundSport Headphones,1,99.99,12/02/19 20:26,"624 Pine St, Los Angeles, CA 90001" +299067,Bose SoundSport Headphones,1,99.99,12/27/19 18:49,"679 Adams St, Portland, OR 97035" +299068,AA Batteries (4-pack),1,3.84,12/24/19 19:55,"661 2nd St, New York City, NY 10001" +299069,Flatscreen TV,1,300,12/21/19 12:54,"729 Lincoln St, Boston, MA 02215" +299070,Apple Airpods Headphones,1,150,12/28/19 20:34,"927 Dogwood St, Dallas, TX 75001" +299071,Wired Headphones,1,11.99,12/30/19 22:45,"541 1st St, Seattle, WA 98101" +299072,Bose SoundSport Headphones,1,99.99,12/16/19 21:05,"638 12th St, Austin, TX 73301" +299073,Lightning Charging Cable,1,14.95,12/13/19 09:56,"137 Adams St, Austin, TX 73301" +299074,USB-C Charging Cable,1,11.95,12/13/19 11:31,"960 8th St, Los Angeles, CA 90001" +299075,AA Batteries (4-pack),1,3.84,12/26/19 13:34,"287 Pine St, Dallas, TX 75001" +299076,USB-C Charging Cable,1,11.95,12/08/19 11:35,"68 Highland St, New York City, NY 10001" +299077,AA Batteries (4-pack),1,3.84,12/18/19 21:16,"77 North St, Atlanta, GA 30301" +299078,USB-C Charging Cable,1,11.95,12/12/19 14:01,"490 Forest St, Seattle, WA 98101" +299079,Lightning Charging Cable,1,14.95,12/09/19 19:30,"554 Hickory St, San Francisco, CA 94016" +299080,34in Ultrawide Monitor,1,379.99,12/02/19 05:10,"375 1st St, New York City, NY 10001" +299081,Vareebadd Phone,1,400,12/29/19 10:44,"413 Willow St, Dallas, TX 75001" +299082,Lightning Charging Cable,1,14.95,12/22/19 18:45,"672 Lake St, Portland, OR 97035" +299082,AAA Batteries (4-pack),2,2.99,12/22/19 18:45,"672 Lake St, Portland, OR 97035" +299083,iPhone,1,700,12/02/19 13:44,"661 Hickory St, Portland, OR 97035" +299083,Wired Headphones,1,11.99,12/02/19 13:44,"661 Hickory St, Portland, OR 97035" +299084,AAA Batteries (4-pack),1,2.99,12/07/19 21:21,"998 Cedar St, New York City, NY 10001" +299085,Lightning Charging Cable,1,14.95,12/27/19 02:25,"454 Wilson St, Portland, OR 97035" +299086,Lightning Charging Cable,1,14.95,12/01/19 20:09,"366 Pine St, Boston, MA 02215" +299087,34in Ultrawide Monitor,1,379.99,12/07/19 21:19,"303 Wilson St, Boston, MA 02215" +299088,Flatscreen TV,1,300,12/15/19 19:44,"99 11th St, New York City, NY 10001" +299088,USB-C Charging Cable,1,11.95,12/15/19 19:44,"99 11th St, New York City, NY 10001" +299089,AAA Batteries (4-pack),1,2.99,12/18/19 16:53,"954 10th St, New York City, NY 10001" +299090,Lightning Charging Cable,1,14.95,12/16/19 16:56,"815 12th St, Atlanta, GA 30301" +299091,AA Batteries (4-pack),1,3.84,12/11/19 09:21,"510 Jackson St, Dallas, TX 75001" +299092,Google Phone,1,600,12/19/19 18:23,"133 Walnut St, Los Angeles, CA 90001" +299093,USB-C Charging Cable,1,11.95,12/13/19 07:28,"867 Lake St, Los Angeles, CA 90001" +299094,27in FHD Monitor,1,149.99,12/05/19 06:05,"806 Forest St, New York City, NY 10001" +299095,Macbook Pro Laptop,1,1700,12/18/19 10:58,"361 Cherry St, Austin, TX 73301" +299096,Apple Airpods Headphones,1,150,12/03/19 12:06,"174 River St, San Francisco, CA 94016" +299097,Flatscreen TV,1,300,12/26/19 13:19,"166 Jackson St, Austin, TX 73301" +299098,AA Batteries (4-pack),1,3.84,12/17/19 16:45,"968 14th St, San Francisco, CA 94016" +299099,USB-C Charging Cable,1,11.95,12/16/19 09:00,"136 Chestnut St, Los Angeles, CA 90001" +299100,Wired Headphones,1,11.99,12/06/19 07:24,"857 Spruce St, San Francisco, CA 94016" +299101,Apple Airpods Headphones,1,150,12/28/19 20:33,"781 West St, San Francisco, CA 94016" +299102,Bose SoundSport Headphones,1,99.99,12/24/19 17:10,"489 Cedar St, Dallas, TX 75001" +299103,Apple Airpods Headphones,1,150,12/19/19 13:33,"26 1st St, San Francisco, CA 94016" +299104,Apple Airpods Headphones,1,150,12/02/19 12:57,"349 Elm St, Boston, MA 02215" +299105,AAA Batteries (4-pack),1,2.99,12/21/19 21:47,"574 Center St, Atlanta, GA 30301" +299106,27in FHD Monitor,1,149.99,12/03/19 20:41,"822 13th St, San Francisco, CA 94016" +299107,AA Batteries (4-pack),1,3.84,12/12/19 17:34,"494 Center St, San Francisco, CA 94016" +299108,27in 4K Gaming Monitor,1,389.99,12/05/19 18:40,"237 14th St, Boston, MA 02215" +299109,Wired Headphones,1,11.99,12/12/19 04:53,"874 Adams St, Boston, MA 02215" +299109,USB-C Charging Cable,1,11.95,12/12/19 04:53,"874 Adams St, Boston, MA 02215" +299110,34in Ultrawide Monitor,1,379.99,12/03/19 07:52,"287 Park St, Seattle, WA 98101" +299111,Apple Airpods Headphones,1,150,12/14/19 11:39,"43 Center St, Portland, OR 97035" +299112,Lightning Charging Cable,1,14.95,12/09/19 22:32,"1 Forest St, San Francisco, CA 94016" +299113,Flatscreen TV,1,300,12/27/19 14:00,"808 Hill St, San Francisco, CA 94016" +299114,Lightning Charging Cable,1,14.95,12/30/19 12:49,"513 River St, San Francisco, CA 94016" +299115,AAA Batteries (4-pack),1,2.99,12/07/19 17:17,"872 Johnson St, San Francisco, CA 94016" +299116,Apple Airpods Headphones,1,150,12/21/19 13:07,"976 7th St, San Francisco, CA 94016" +299117,AAA Batteries (4-pack),2,2.99,12/19/19 19:50,"315 Hickory St, Los Angeles, CA 90001" +299118,20in Monitor,1,109.99,12/04/19 17:59,"924 5th St, San Francisco, CA 94016" +299119,Macbook Pro Laptop,1,1700,12/09/19 11:42,"848 Main St, Austin, TX 73301" +299120,ThinkPad Laptop,1,999.99,12/31/19 18:48,"349 Forest St, Boston, MA 02215" +299120,Flatscreen TV,1,300,12/31/19 18:48,"349 Forest St, Boston, MA 02215" +299121,AAA Batteries (4-pack),3,2.99,12/29/19 15:31,"456 Main St, San Francisco, CA 94016" +299122,Bose SoundSport Headphones,1,99.99,12/12/19 13:54,"593 2nd St, San Francisco, CA 94016" +299123,AAA Batteries (4-pack),1,2.99,12/08/19 21:50,"288 Madison St, San Francisco, CA 94016" +299124,AA Batteries (4-pack),2,3.84,12/13/19 14:25,"369 5th St, Los Angeles, CA 90001" +299125,27in 4K Gaming Monitor,1,389.99,12/01/19 17:54,"919 4th St, Dallas, TX 75001" +299126,27in 4K Gaming Monitor,1,389.99,12/02/19 20:06,"415 6th St, Boston, MA 02215" +299127,Flatscreen TV,1,300,12/18/19 17:06,"905 Ridge St, Seattle, WA 98101" +299128,AA Batteries (4-pack),2,3.84,12/24/19 17:12,"475 10th St, Boston, MA 02215" +299129,Wired Headphones,1,11.99,12/05/19 16:18,"285 5th St, Los Angeles, CA 90001" +299130,AAA Batteries (4-pack),1,2.99,12/14/19 15:02,"563 11th St, Boston, MA 02215" +299131,AAA Batteries (4-pack),1,2.99,12/04/19 12:47,"105 West St, Los Angeles, CA 90001" +299132,Lightning Charging Cable,1,14.95,12/20/19 11:10,"705 Walnut St, Portland, OR 97035" +299133,Wired Headphones,1,11.99,12/26/19 22:47,"786 Willow St, San Francisco, CA 94016" +299134,Lightning Charging Cable,1,14.95,12/09/19 15:07,"117 Johnson St, San Francisco, CA 94016" +299135,27in 4K Gaming Monitor,1,389.99,12/21/19 08:43,"79 Walnut St, New York City, NY 10001" +299136,Apple Airpods Headphones,1,150,12/04/19 14:12,"676 Dogwood St, Los Angeles, CA 90001" +299137,Apple Airpods Headphones,1,150,12/01/19 09:23,"847 Forest St, Boston, MA 02215" +299138,AA Batteries (4-pack),1,3.84,12/11/19 15:28,"883 4th St, Austin, TX 73301" +299139,Bose SoundSport Headphones,1,99.99,12/24/19 18:00,"653 North St, San Francisco, CA 94016" +299140,AAA Batteries (4-pack),1,2.99,12/16/19 20:50,"836 Lincoln St, San Francisco, CA 94016" +299141,Lightning Charging Cable,1,14.95,12/22/19 10:43,"943 North St, Atlanta, GA 30301" +299142,27in 4K Gaming Monitor,1,389.99,12/25/19 16:14,"855 8th St, Atlanta, GA 30301" +299143,Flatscreen TV,1,300,12/29/19 10:04,"231 Highland St, San Francisco, CA 94016" +299144,ThinkPad Laptop,1,999.99,12/24/19 15:01,"566 Hill St, San Francisco, CA 94016" +299145,Lightning Charging Cable,1,14.95,12/11/19 17:43,"829 5th St, Portland, OR 97035" +299146,AAA Batteries (4-pack),3,2.99,12/02/19 00:05,"414 River St, Seattle, WA 98101" +299147,Flatscreen TV,1,300,12/08/19 00:08,"805 Spruce St, San Francisco, CA 94016" +299148,Wired Headphones,1,11.99,12/14/19 12:42,"934 Ridge St, Atlanta, GA 30301" +299149,iPhone,1,700,12/17/19 10:05,"937 Lake St, San Francisco, CA 94016" +299150,AA Batteries (4-pack),1,3.84,12/15/19 01:17,"520 Ridge St, New York City, NY 10001" +299151,Google Phone,1,600,12/30/19 07:52,"638 Forest St, Atlanta, GA 30301" +299151,Wired Headphones,2,11.99,12/30/19 07:52,"638 Forest St, Atlanta, GA 30301" +299152,iPhone,1,700,12/11/19 20:38,"70 Washington St, Austin, TX 73301" +299153,Macbook Pro Laptop,1,1700,12/13/19 00:36,"426 Hill St, Los Angeles, CA 90001" +299154,34in Ultrawide Monitor,1,379.99,12/13/19 20:41,"405 2nd St, New York City, NY 10001" +299155,Wired Headphones,1,11.99,12/11/19 20:55,"892 Lincoln St, Dallas, TX 75001" +299156,Apple Airpods Headphones,1,150,12/03/19 16:39,"700 Main St, Los Angeles, CA 90001" +299157,AAA Batteries (4-pack),1,2.99,12/01/19 22:44,"85 Church St, Austin, TX 73301" +299158,AAA Batteries (4-pack),1,2.99,12/20/19 19:50,"104 6th St, Atlanta, GA 30301" +299159,27in FHD Monitor,1,149.99,12/31/19 16:06,"842 9th St, Boston, MA 02215" +299160,Macbook Pro Laptop,1,1700,12/05/19 12:14,"309 Church St, Seattle, WA 98101" +299161,AA Batteries (4-pack),2,3.84,12/01/19 17:52,"507 4th St, San Francisco, CA 94016" +299162,ThinkPad Laptop,1,999.99,12/25/19 18:38,"388 Willow St, Dallas, TX 75001" +299162,Apple Airpods Headphones,1,150,12/25/19 18:38,"388 Willow St, Dallas, TX 75001" +299163,Vareebadd Phone,1,400,12/25/19 09:09,"292 2nd St, Atlanta, GA 30301" +299163,Lightning Charging Cable,1,14.95,12/25/19 09:09,"292 2nd St, Atlanta, GA 30301" +299164,Wired Headphones,2,11.99,12/03/19 08:55,"230 Lake St, Dallas, TX 75001" +299165,ThinkPad Laptop,1,999.99,12/06/19 17:49,"968 Highland St, Boston, MA 02215" +299166,Macbook Pro Laptop,1,1700,12/02/19 08:27,"340 Willow St, New York City, NY 10001" +299167,Google Phone,1,600,12/18/19 10:43,"291 2nd St, San Francisco, CA 94016" +299168,AA Batteries (4-pack),1,3.84,12/03/19 19:13,"232 River St, Los Angeles, CA 90001" +299169,AA Batteries (4-pack),1,3.84,12/15/19 16:56,"509 9th St, Seattle, WA 98101" +299170,Wired Headphones,1,11.99,12/07/19 09:50,"972 7th St, Los Angeles, CA 90001" +299171,20in Monitor,1,109.99,12/07/19 13:26,"90 Maple St, Portland, OR 97035" +299172,USB-C Charging Cable,1,11.95,12/29/19 12:24,"38 9th St, San Francisco, CA 94016" +299173,Lightning Charging Cable,1,14.95,12/12/19 20:51,"565 Wilson St, Boston, MA 02215" +299174,AA Batteries (4-pack),2,3.84,12/26/19 20:09,"764 Johnson St, New York City, NY 10001" +299175,27in FHD Monitor,1,149.99,12/20/19 16:16,"8 10th St, San Francisco, CA 94016" +299176,Apple Airpods Headphones,1,150,12/21/19 10:24,"443 Jackson St, New York City, NY 10001" +299177,USB-C Charging Cable,1,11.95,12/13/19 17:57,"586 Jefferson St, Atlanta, GA 30301" +299178,Apple Airpods Headphones,1,150,12/07/19 06:34,"585 Johnson St, Dallas, TX 75001" +299179,Lightning Charging Cable,1,14.95,12/13/19 15:26,"360 1st St, Atlanta, GA 30301" +299180,Bose SoundSport Headphones,1,99.99,12/07/19 19:15,"216 Willow St, Atlanta, GA 30301" +299181,Apple Airpods Headphones,2,150,12/25/19 17:27,"683 Lake St, San Francisco, CA 94016" +299182,AA Batteries (4-pack),1,3.84,12/11/19 12:18,"165 1st St, San Francisco, CA 94016" +299183,iPhone,1,700,12/28/19 05:23,"415 West St, New York City, NY 10001" +299184,Wired Headphones,1,11.99,12/06/19 19:36,"814 Jackson St, Seattle, WA 98101" +299185,AAA Batteries (4-pack),3,2.99,12/13/19 15:08,"110 11th St, San Francisco, CA 94016" +299186,ThinkPad Laptop,1,999.99,12/08/19 19:26,"659 9th St, San Francisco, CA 94016" +299187,USB-C Charging Cable,1,11.95,12/09/19 10:16,"791 8th St, New York City, NY 10001" +299188,Google Phone,1,600,12/21/19 16:32,"620 Chestnut St, New York City, NY 10001" +299189,Lightning Charging Cable,1,14.95,12/29/19 22:13,"404 Johnson St, Seattle, WA 98101" +299190,USB-C Charging Cable,1,11.95,12/11/19 17:51,"971 Elm St, Dallas, TX 75001" +299191,Bose SoundSport Headphones,1,99.99,12/16/19 01:33,"582 12th St, Atlanta, GA 30301" +299192,AAA Batteries (4-pack),1,2.99,12/21/19 12:44,"852 Sunset St, San Francisco, CA 94016" +299193,USB-C Charging Cable,1,11.95,12/17/19 13:16,"183 7th St, New York City, NY 10001" +299194,Wired Headphones,1,11.99,12/11/19 20:57,"768 North St, San Francisco, CA 94016" +299195,AA Batteries (4-pack),1,3.84,12/19/19 12:08,"351 8th St, San Francisco, CA 94016" +299196,AAA Batteries (4-pack),1,2.99,12/30/19 12:21,"453 11th St, Los Angeles, CA 90001" +299197,Wired Headphones,1,11.99,12/23/19 19:09,"871 Ridge St, San Francisco, CA 94016" +299198,Apple Airpods Headphones,1,150,12/15/19 16:42,"445 1st St, Portland, ME 04101" +299199,Lightning Charging Cable,1,14.95,12/22/19 16:53,"286 7th St, San Francisco, CA 94016" +299200,USB-C Charging Cable,1,11.95,12/31/19 09:20,"52 Adams St, San Francisco, CA 94016" +299201,Apple Airpods Headphones,1,150,12/01/19 11:23,"141 Lake St, Los Angeles, CA 90001" +299202,20in Monitor,1,109.99,12/16/19 13:25,"91 14th St, Atlanta, GA 30301" +299203,iPhone,1,700,12/04/19 12:38,"973 13th St, Los Angeles, CA 90001" +299204,USB-C Charging Cable,1,11.95,12/24/19 14:08,"192 Washington St, New York City, NY 10001" +299205,USB-C Charging Cable,1,11.95,12/25/19 16:46,"266 Walnut St, San Francisco, CA 94016" +299206,27in 4K Gaming Monitor,1,389.99,12/27/19 19:00,"292 5th St, San Francisco, CA 94016" +299207,27in FHD Monitor,1,149.99,12/05/19 08:31,"878 Forest St, San Francisco, CA 94016" +299208,20in Monitor,1,109.99,12/08/19 07:54,"575 Sunset St, Seattle, WA 98101" +299209,Lightning Charging Cable,1,14.95,12/16/19 15:03,"421 Cedar St, Atlanta, GA 30301" +299210,AAA Batteries (4-pack),1,2.99,12/10/19 08:07,"177 6th St, Boston, MA 02215" +299211,Macbook Pro Laptop,1,1700,12/23/19 14:48,"772 11th St, Boston, MA 02215" +299212,Lightning Charging Cable,1,14.95,12/07/19 12:36,"784 5th St, San Francisco, CA 94016" +299213,Wired Headphones,1,11.99,12/19/19 21:25,"224 Wilson St, Boston, MA 02215" +299214,AAA Batteries (4-pack),4,2.99,12/05/19 16:48,"907 13th St, Los Angeles, CA 90001" +299215,27in 4K Gaming Monitor,1,389.99,12/09/19 16:47,"505 Jefferson St, Boston, MA 02215" +299216,AA Batteries (4-pack),1,3.84,12/30/19 07:57,"247 14th St, Boston, MA 02215" +299217,AAA Batteries (4-pack),1,2.99,12/14/19 11:57,"585 Wilson St, New York City, NY 10001" +299218,Lightning Charging Cable,1,14.95,12/20/19 22:06,"892 Center St, Boston, MA 02215" +299219,Apple Airpods Headphones,1,150,12/01/19 20:09,"707 Pine St, New York City, NY 10001" +299220,iPhone,1,700,12/03/19 18:43,"817 Lakeview St, Boston, MA 02215" +299221,Apple Airpods Headphones,1,150,12/06/19 18:50,"893 Chestnut St, Seattle, WA 98101" +299222,Apple Airpods Headphones,1,150,12/17/19 21:33,"348 Sunset St, New York City, NY 10001" +299223,AAA Batteries (4-pack),1,2.99,12/25/19 11:00,"567 Hickory St, Los Angeles, CA 90001" +299224,Apple Airpods Headphones,1,150,12/03/19 02:38,"506 Maple St, New York City, NY 10001" +299225,AAA Batteries (4-pack),2,2.99,12/22/19 18:18,"381 5th St, Atlanta, GA 30301" +299226,Apple Airpods Headphones,1,150,12/13/19 21:23,"114 North St, New York City, NY 10001" +299227,Lightning Charging Cable,1,14.95,12/06/19 11:10,"315 6th St, Los Angeles, CA 90001" +299228,27in 4K Gaming Monitor,1,389.99,12/25/19 17:09,"698 Park St, Austin, TX 73301" +299229,27in FHD Monitor,1,149.99,12/06/19 21:37,"782 11th St, New York City, NY 10001" +299230,Wired Headphones,1,11.99,12/18/19 15:11,"653 10th St, Los Angeles, CA 90001" +299231,AA Batteries (4-pack),1,3.84,12/13/19 10:35,"538 West St, San Francisco, CA 94016" +299232,iPhone,1,700,12/14/19 13:25,"818 6th St, San Francisco, CA 94016" +299233,USB-C Charging Cable,1,11.95,12/15/19 15:10,"157 8th St, Los Angeles, CA 90001" +299234,34in Ultrawide Monitor,1,379.99,12/26/19 17:24,"654 Dogwood St, Seattle, WA 98101" +299235,Google Phone,1,600,12/14/19 14:04,"160 Spruce St, Seattle, WA 98101" +299236,Macbook Pro Laptop,1,1700,12/14/19 18:38,"490 West St, Atlanta, GA 30301" +299237,Bose SoundSport Headphones,1,99.99,12/15/19 14:02,"246 Washington St, New York City, NY 10001" +299238,27in FHD Monitor,2,149.99,12/10/19 19:56,"41 Maple St, Boston, MA 02215" +299239,27in FHD Monitor,1,149.99,12/12/19 21:04,"214 Washington St, New York City, NY 10001" +299240,AA Batteries (4-pack),1,3.84,12/05/19 09:10,"216 Church St, Boston, MA 02215" +299241,Vareebadd Phone,1,400,12/08/19 08:43,"675 Cedar St, San Francisco, CA 94016" +299242,LG Dryer,1,600.0,12/12/19 19:24,"124 Johnson St, San Francisco, CA 94016" +299243,34in Ultrawide Monitor,1,379.99,12/23/19 20:24,"800 Jefferson St, Los Angeles, CA 90001" +299244,AAA Batteries (4-pack),2,2.99,12/05/19 16:55,"71 8th St, New York City, NY 10001" +299244,USB-C Charging Cable,1,11.95,12/05/19 16:55,"71 8th St, New York City, NY 10001" +299245,Apple Airpods Headphones,1,150,12/30/19 19:02,"921 Meadow St, Los Angeles, CA 90001" +299246,AAA Batteries (4-pack),1,2.99,12/24/19 12:40,"273 Sunset St, Boston, MA 02215" +299247,Flatscreen TV,1,300,12/14/19 11:51,"998 Center St, Los Angeles, CA 90001" +299248,AAA Batteries (4-pack),1,2.99,12/29/19 10:11,"698 7th St, Portland, OR 97035" +299249,Flatscreen TV,1,300,12/16/19 22:43,"572 Walnut St, Dallas, TX 75001" +299250,AA Batteries (4-pack),1,3.84,12/19/19 19:55,"661 Walnut St, San Francisco, CA 94016" +299251,AA Batteries (4-pack),1,3.84,12/11/19 12:33,"812 8th St, Portland, OR 97035" +299252,Lightning Charging Cable,1,14.95,12/25/19 17:32,"102 Hickory St, New York City, NY 10001" +299253,ThinkPad Laptop,1,999.99,12/22/19 15:00,"643 North St, Atlanta, GA 30301" +299254,27in FHD Monitor,1,149.99,12/05/19 10:50,"317 Center St, San Francisco, CA 94016" +299255,Apple Airpods Headphones,1,150,12/08/19 14:06,"137 1st St, San Francisco, CA 94016" +299256,Google Phone,1,600,12/04/19 19:02,"843 Hickory St, Los Angeles, CA 90001" +299257,Lightning Charging Cable,2,14.95,12/20/19 18:10,"545 Lakeview St, New York City, NY 10001" +299258,USB-C Charging Cable,1,11.95,12/05/19 13:49,"834 2nd St, Austin, TX 73301" +299259,Apple Airpods Headphones,1,150,12/30/19 19:00,"349 14th St, New York City, NY 10001" +299260,Bose SoundSport Headphones,1,99.99,12/01/19 11:20,"301 Hickory St, Los Angeles, CA 90001" +299261,iPhone,1,700,12/25/19 11:26,"181 Cedar St, Austin, TX 73301" +299262,Apple Airpods Headphones,1,150,12/14/19 09:59,"354 13th St, Boston, MA 02215" +299263,USB-C Charging Cable,1,11.95,12/26/19 16:17,"638 Pine St, Los Angeles, CA 90001" +299264,AAA Batteries (4-pack),1,2.99,12/13/19 21:44,"186 Hill St, San Francisco, CA 94016" +299265,Lightning Charging Cable,1,14.95,12/18/19 15:03,"900 Church St, Los Angeles, CA 90001" +299266,Apple Airpods Headphones,1,150,12/27/19 09:22,"471 Chestnut St, Dallas, TX 75001" +299267,Bose SoundSport Headphones,1,99.99,12/01/19 17:20,"480 Washington St, Boston, MA 02215" +299268,Flatscreen TV,1,300,12/18/19 07:36,"785 Lakeview St, San Francisco, CA 94016" +299269,Bose SoundSport Headphones,1,99.99,12/12/19 18:40,"466 7th St, New York City, NY 10001" +299270,Macbook Pro Laptop,1,1700,12/01/19 13:11,"232 North St, Los Angeles, CA 90001" +299271,ThinkPad Laptop,1,999.99,12/22/19 23:45,"552 Wilson St, San Francisco, CA 94016" +299272,iPhone,1,700,12/28/19 19:26,"321 7th St, New York City, NY 10001" +299272,Lightning Charging Cable,1,14.95,12/28/19 19:26,"321 7th St, New York City, NY 10001" +299273,27in FHD Monitor,1,149.99,12/04/19 16:22,"791 11th St, Boston, MA 02215" +299274,USB-C Charging Cable,1,11.95,12/27/19 16:33,"406 11th St, Atlanta, GA 30301" +299275,20in Monitor,1,109.99,12/07/19 21:21,"867 Adams St, New York City, NY 10001" +299276,AA Batteries (4-pack),2,3.84,12/18/19 12:09,"623 Meadow St, Los Angeles, CA 90001" +299277,ThinkPad Laptop,1,999.99,12/10/19 15:05,"594 Willow St, Los Angeles, CA 90001" +299277,Vareebadd Phone,1,400,12/10/19 15:05,"594 Willow St, Los Angeles, CA 90001" +299278,AAA Batteries (4-pack),1,2.99,12/08/19 06:24,"492 Maple St, Atlanta, GA 30301" +299279,Wired Headphones,1,11.99,12/24/19 14:42,"446 Lake St, Los Angeles, CA 90001" +299280,Wired Headphones,3,11.99,12/10/19 16:32,"558 Ridge St, Seattle, WA 98101" +299281,Wired Headphones,1,11.99,12/14/19 13:28,"873 Hickory St, Seattle, WA 98101" +299282,27in 4K Gaming Monitor,1,389.99,12/19/19 11:03,"969 Willow St, San Francisco, CA 94016" +299283,34in Ultrawide Monitor,1,379.99,12/03/19 10:41,"188 Madison St, Dallas, TX 75001" +299284,AA Batteries (4-pack),1,3.84,12/06/19 08:56,"338 Elm St, Seattle, WA 98101" +299285,Lightning Charging Cable,1,14.95,12/07/19 02:59,"951 Lincoln St, Dallas, TX 75001" +299286,AA Batteries (4-pack),1,3.84,12/26/19 04:27,"896 Chestnut St, Los Angeles, CA 90001" +299287,USB-C Charging Cable,1,11.95,12/21/19 16:28,"91 9th St, Portland, OR 97035" +299288,AA Batteries (4-pack),1,3.84,12/18/19 14:18,"485 4th St, Portland, ME 04101" +299289,AA Batteries (4-pack),1,3.84,12/11/19 17:43,"798 Lakeview St, Seattle, WA 98101" +299290,Wired Headphones,1,11.99,12/28/19 10:32,"58 5th St, Boston, MA 02215" +299291,Google Phone,1,600,12/05/19 18:17,"852 6th St, San Francisco, CA 94016" +299291,USB-C Charging Cable,1,11.95,12/05/19 18:17,"852 6th St, San Francisco, CA 94016" +299292,Wired Headphones,1,11.99,12/23/19 18:00,"51 Forest St, Los Angeles, CA 90001" +299293,Macbook Pro Laptop,1,1700,12/13/19 08:00,"364 Hickory St, Los Angeles, CA 90001" +299294,Lightning Charging Cable,1,14.95,12/15/19 12:31,"173 4th St, San Francisco, CA 94016" +299295,27in 4K Gaming Monitor,1,389.99,12/27/19 04:53,"508 Adams St, San Francisco, CA 94016" +299296,AAA Batteries (4-pack),1,2.99,12/03/19 07:44,"321 9th St, Los Angeles, CA 90001" +299297,Macbook Pro Laptop,1,1700,12/08/19 11:44,"669 Jackson St, San Francisco, CA 94016" +299298,Vareebadd Phone,1,400,12/19/19 17:26,"821 Walnut St, San Francisco, CA 94016" +299299,Wired Headphones,1,11.99,12/24/19 16:49,"288 Cedar St, San Francisco, CA 94016" +299300,USB-C Charging Cable,1,11.95,12/14/19 10:35,"325 Park St, San Francisco, CA 94016" +299301,iPhone,1,700,12/30/19 17:45,"879 Lake St, New York City, NY 10001" +299301,Lightning Charging Cable,1,14.95,12/30/19 17:45,"879 Lake St, New York City, NY 10001" +299302,Bose SoundSport Headphones,1,99.99,12/30/19 08:09,"18 Chestnut St, Atlanta, GA 30301" +299303,Lightning Charging Cable,1,14.95,12/09/19 10:09,"133 Maple St, San Francisco, CA 94016" +299304,AA Batteries (4-pack),2,3.84,12/23/19 18:48,"679 Adams St, Dallas, TX 75001" +299305,34in Ultrawide Monitor,1,379.99,12/24/19 20:33,"700 Lakeview St, Boston, MA 02215" +299306,Wired Headphones,1,11.99,12/14/19 14:36,"798 North St, San Francisco, CA 94016" +299307,USB-C Charging Cable,1,11.95,12/08/19 12:28,"751 Jefferson St, Los Angeles, CA 90001" +299308,AAA Batteries (4-pack),1,2.99,12/01/19 09:05,"27 Cherry St, San Francisco, CA 94016" +299309,Google Phone,1,600,12/19/19 00:50,"148 Dogwood St, San Francisco, CA 94016" +299310,AA Batteries (4-pack),1,3.84,12/15/19 17:57,"484 Sunset St, Los Angeles, CA 90001" +299311,27in FHD Monitor,1,149.99,12/23/19 08:52,"167 Pine St, Austin, TX 73301" +299312,Bose SoundSport Headphones,1,99.99,12/22/19 22:35,"713 Cherry St, San Francisco, CA 94016" +,,,,, +299313,Apple Airpods Headphones,1,150,12/20/19 18:49,"853 Jackson St, New York City, NY 10001" +299314,USB-C Charging Cable,2,11.95,12/18/19 08:26,"855 Ridge St, Los Angeles, CA 90001" +299315,Wired Headphones,1,11.99,12/22/19 10:39,"351 Wilson St, San Francisco, CA 94016" +299316,Lightning Charging Cable,1,14.95,12/13/19 11:50,"208 Washington St, Dallas, TX 75001" +299317,20in Monitor,1,109.99,12/14/19 20:32,"331 River St, Los Angeles, CA 90001" +299318,Lightning Charging Cable,1,14.95,12/01/19 15:18,"232 Lakeview St, San Francisco, CA 94016" +299319,Wired Headphones,1,11.99,12/27/19 14:46,"114 North St, New York City, NY 10001" +299320,AA Batteries (4-pack),1,3.84,12/02/19 21:51,"245 Pine St, New York City, NY 10001" +299321,Wired Headphones,1,11.99,12/04/19 12:38,"540 Maple St, New York City, NY 10001" +299322,34in Ultrawide Monitor,1,379.99,12/29/19 17:16,"377 Elm St, Los Angeles, CA 90001" +299323,AAA Batteries (4-pack),1,2.99,12/26/19 18:03,"383 5th St, Austin, TX 73301" +299324,Apple Airpods Headphones,1,150,12/17/19 09:15,"444 Willow St, New York City, NY 10001" +299325,iPhone,1,700,12/03/19 23:56,"871 6th St, New York City, NY 10001" +299325,Lightning Charging Cable,1,14.95,12/03/19 23:56,"871 6th St, New York City, NY 10001" +299326,Lightning Charging Cable,2,14.95,12/14/19 22:12,"116 Hill St, Austin, TX 73301" +299327,Flatscreen TV,1,300,12/09/19 19:37,"208 Main St, San Francisco, CA 94016" +299328,Apple Airpods Headphones,1,150,12/09/19 18:29,"289 6th St, San Francisco, CA 94016" +299329,Apple Airpods Headphones,1,150,12/14/19 10:07,"886 Hill St, New York City, NY 10001" +299330,Macbook Pro Laptop,1,1700,12/17/19 19:01,"280 Washington St, Los Angeles, CA 90001" +299331,ThinkPad Laptop,1,999.99,12/08/19 04:42,"374 6th St, Portland, ME 04101" +299332,Wired Headphones,1,11.99,12/09/19 22:15,"220 Johnson St, Atlanta, GA 30301" +299333,Lightning Charging Cable,1,14.95,12/23/19 16:04,"234 2nd St, San Francisco, CA 94016" +299334,Vareebadd Phone,1,400,12/06/19 18:22,"523 Meadow St, Los Angeles, CA 90001" +299335,Apple Airpods Headphones,1,150,12/19/19 04:29,"115 Cedar St, San Francisco, CA 94016" +299336,Apple Airpods Headphones,1,150,12/22/19 09:54,"926 Highland St, San Francisco, CA 94016" +299337,Macbook Pro Laptop,1,1700,12/21/19 19:36,"952 Washington St, San Francisco, CA 94016" +299338,USB-C Charging Cable,1,11.95,12/18/19 20:55,"946 9th St, Atlanta, GA 30301" +299339,AAA Batteries (4-pack),1,2.99,12/16/19 15:19,"113 Walnut St, Los Angeles, CA 90001" +299340,AA Batteries (4-pack),1,3.84,12/04/19 14:41,"782 6th St, Los Angeles, CA 90001" +299341,AAA Batteries (4-pack),2,2.99,12/10/19 14:06,"235 Lake St, San Francisco, CA 94016" +299342,AA Batteries (4-pack),1,3.84,12/26/19 09:30,"297 Spruce St, Los Angeles, CA 90001" +299343,Bose SoundSport Headphones,1,99.99,12/31/19 11:51,"390 13th St, Boston, MA 02215" +299344,Apple Airpods Headphones,1,150,12/13/19 16:57,"94 Highland St, Boston, MA 02215" +299345,AA Batteries (4-pack),2,3.84,12/12/19 10:06,"7 Willow St, Portland, ME 04101" +299346,AAA Batteries (4-pack),1,2.99,12/22/19 19:40,"34 Cherry St, New York City, NY 10001" +299347,20in Monitor,1,109.99,12/09/19 20:05,"124 Jefferson St, Los Angeles, CA 90001" +299348,Flatscreen TV,1,300,12/19/19 18:43,"727 11th St, Los Angeles, CA 90001" +299349,Apple Airpods Headphones,1,150,12/13/19 10:46,"294 Jefferson St, Los Angeles, CA 90001" +299350,Wired Headphones,1,11.99,12/21/19 18:46,"386 Dogwood St, San Francisco, CA 94016" +299351,Wired Headphones,1,11.99,12/07/19 11:57,"857 Lakeview St, Dallas, TX 75001" +299352,iPhone,1,700,12/06/19 13:34,"421 Adams St, New York City, NY 10001" +299353,Wired Headphones,1,11.99,12/07/19 14:43,"982 Wilson St, Los Angeles, CA 90001" +299354,AA Batteries (4-pack),1,3.84,12/02/19 20:23,"250 1st St, Austin, TX 73301" +299355,Macbook Pro Laptop,1,1700,12/27/19 21:30,"24 Lakeview St, New York City, NY 10001" +299356,34in Ultrawide Monitor,1,379.99,12/26/19 12:55,"984 8th St, New York City, NY 10001" +299357,Flatscreen TV,1,300,12/03/19 08:31,"539 1st St, Los Angeles, CA 90001" +299358,USB-C Charging Cable,1,11.95,12/14/19 07:50,"162 Hickory St, Dallas, TX 75001" +299359,Bose SoundSport Headphones,1,99.99,12/09/19 17:04,"552 Hickory St, San Francisco, CA 94016" +299360,USB-C Charging Cable,1,11.95,12/11/19 13:17,"688 Cherry St, San Francisco, CA 94016" +299361,Apple Airpods Headphones,1,150,12/09/19 14:30,"519 Maple St, Atlanta, GA 30301" +299362,AA Batteries (4-pack),1,3.84,12/15/19 18:04,"773 Main St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +299363,AA Batteries (4-pack),1,3.84,12/13/19 15:58,"751 8th St, San Francisco, CA 94016" +299364,Flatscreen TV,1,300,12/05/19 14:36,"379 Chestnut St, New York City, NY 10001" +299365,27in 4K Gaming Monitor,1,389.99,12/26/19 11:39,"128 Lincoln St, Seattle, WA 98101" +299366,Bose SoundSport Headphones,1,99.99,12/13/19 09:55,"865 1st St, San Francisco, CA 94016" +299367,USB-C Charging Cable,1,11.95,12/13/19 17:35,"487 1st St, Atlanta, GA 30301" +299368,AAA Batteries (4-pack),2,2.99,12/29/19 18:42,"342 9th St, Austin, TX 73301" +299369,AA Batteries (4-pack),1,3.84,12/26/19 08:40,"28 Meadow St, Dallas, TX 75001" +299370,Wired Headphones,1,11.99,12/27/19 20:14,"556 7th St, Atlanta, GA 30301" +299371,USB-C Charging Cable,1,11.95,12/13/19 19:37,"543 Pine St, Los Angeles, CA 90001" +299372,USB-C Charging Cable,1,11.95,12/16/19 06:23,"673 North St, New York City, NY 10001" +299373,Apple Airpods Headphones,1,150,12/29/19 19:19,"524 5th St, San Francisco, CA 94016" +299374,USB-C Charging Cable,2,11.95,12/31/19 14:05,"981 Adams St, San Francisco, CA 94016" +299375,27in 4K Gaming Monitor,1,389.99,12/14/19 20:59,"301 Church St, Atlanta, GA 30301" +299376,AAA Batteries (4-pack),1,2.99,12/17/19 20:14,"709 Dogwood St, Los Angeles, CA 90001" +299377,Lightning Charging Cable,1,14.95,12/06/19 13:30,"716 Lakeview St, Boston, MA 02215" +299378,USB-C Charging Cable,1,11.95,12/01/19 12:28,"175 West St, San Francisco, CA 94016" +299379,Flatscreen TV,1,300,12/10/19 00:23,"628 River St, Atlanta, GA 30301" +299380,Google Phone,1,600,12/19/19 19:35,"160 13th St, Atlanta, GA 30301" +299381,Wired Headphones,1,11.99,12/15/19 13:27,"84 Forest St, San Francisco, CA 94016" +299382,AAA Batteries (4-pack),1,2.99,12/08/19 23:12,"451 Hickory St, Boston, MA 02215" +299383,Google Phone,1,600,12/26/19 12:17,"969 5th St, Atlanta, GA 30301" +299384,iPhone,1,700,12/07/19 11:52,"193 7th St, San Francisco, CA 94016" +299385,Apple Airpods Headphones,1,150,12/01/19 07:15,"718 West St, Los Angeles, CA 90001" +299385,Wired Headphones,1,11.99,12/01/19 07:15,"718 West St, Los Angeles, CA 90001" +299386,Lightning Charging Cable,1,14.95,12/21/19 16:14,"598 Lincoln St, Austin, TX 73301" +299387,iPhone,1,700,12/04/19 21:28,"906 13th St, Austin, TX 73301" +299388,Lightning Charging Cable,1,14.95,12/10/19 00:22,"20 Pine St, New York City, NY 10001" +299389,Apple Airpods Headphones,1,150,12/06/19 17:13,"231 10th St, Los Angeles, CA 90001" +299390,USB-C Charging Cable,1,11.95,12/20/19 13:33,"32 6th St, San Francisco, CA 94016" +299391,Bose SoundSport Headphones,1,99.99,12/11/19 10:13,"397 Hickory St, Los Angeles, CA 90001" +299392,Macbook Pro Laptop,1,1700,12/08/19 11:57,"921 River St, Boston, MA 02215" +299393,Lightning Charging Cable,1,14.95,12/26/19 10:27,"302 5th St, Austin, TX 73301" +299394,20in Monitor,1,109.99,12/15/19 11:31,"106 11th St, Seattle, WA 98101" +299395,USB-C Charging Cable,1,11.95,12/20/19 12:41,"182 Chestnut St, Seattle, WA 98101" +299396,Bose SoundSport Headphones,1,99.99,12/11/19 23:51,"71 6th St, San Francisco, CA 94016" +299397,USB-C Charging Cable,1,11.95,12/10/19 19:59,"744 Madison St, New York City, NY 10001" +299398,Apple Airpods Headphones,1,150,12/13/19 22:52,"765 Spruce St, San Francisco, CA 94016" +299399,ThinkPad Laptop,1,999.99,12/29/19 22:05,"35 Church St, Los Angeles, CA 90001" +299400,27in FHD Monitor,1,149.99,12/16/19 21:17,"86 Cedar St, San Francisco, CA 94016" +299401,Macbook Pro Laptop,1,1700,12/25/19 04:23,"628 Park St, Dallas, TX 75001" +299402,AAA Batteries (4-pack),1,2.99,12/14/19 21:25,"488 River St, Los Angeles, CA 90001" +299403,Lightning Charging Cable,1,14.95,12/17/19 07:37,"346 11th St, Dallas, TX 75001" +299404,USB-C Charging Cable,1,11.95,12/25/19 15:22,"226 9th St, Boston, MA 02215" +299405,AA Batteries (4-pack),1,3.84,12/28/19 12:42,"517 South St, Dallas, TX 75001" +299406,AAA Batteries (4-pack),1,2.99,12/24/19 15:43,"614 14th St, Los Angeles, CA 90001" +299407,27in 4K Gaming Monitor,1,389.99,12/05/19 11:48,"360 Maple St, New York City, NY 10001" +299408,Wired Headphones,1,11.99,12/05/19 11:48,"363 Park St, New York City, NY 10001" +299409,ThinkPad Laptop,1,999.99,12/24/19 12:37,"657 Willow St, Portland, ME 04101" +299410,Wired Headphones,1,11.99,12/21/19 16:15,"502 13th St, Los Angeles, CA 90001" +299411,AAA Batteries (4-pack),1,2.99,12/26/19 14:05,"976 Forest St, San Francisco, CA 94016" +299412,Apple Airpods Headphones,1,150,12/22/19 22:06,"262 Jackson St, San Francisco, CA 94016" +299413,Bose SoundSport Headphones,1,99.99,12/02/19 18:46,"299 Wilson St, Atlanta, GA 30301" +299414,AA Batteries (4-pack),1,3.84,12/17/19 15:16,"162 5th St, Dallas, TX 75001" +299415,Lightning Charging Cable,1,14.95,12/22/19 17:21,"855 Johnson St, Seattle, WA 98101" +299416,Macbook Pro Laptop,1,1700,12/05/19 10:42,"585 Spruce St, Dallas, TX 75001" +299417,AAA Batteries (4-pack),2,2.99,12/04/19 09:03,"58 Cherry St, San Francisco, CA 94016" +299418,ThinkPad Laptop,1,999.99,12/18/19 12:40,"71 Hickory St, New York City, NY 10001" +299419,USB-C Charging Cable,1,11.95,12/29/19 16:52,"639 Chestnut St, Austin, TX 73301" +299420,Wired Headphones,1,11.99,12/09/19 22:15,"537 Lincoln St, Austin, TX 73301" +299421,Lightning Charging Cable,1,14.95,12/10/19 04:16,"629 12th St, New York City, NY 10001" +299422,Lightning Charging Cable,1,14.95,12/07/19 09:16,"835 Maple St, San Francisco, CA 94016" +299423,Apple Airpods Headphones,1,150,12/07/19 22:16,"499 Washington St, Boston, MA 02215" +299424,AA Batteries (4-pack),1,3.84,12/17/19 20:37,"890 Park St, Boston, MA 02215" +299425,Lightning Charging Cable,1,14.95,12/07/19 21:46,"394 2nd St, Boston, MA 02215" +299426,AA Batteries (4-pack),1,3.84,12/11/19 15:44,"920 Lake St, Boston, MA 02215" +299427,27in 4K Gaming Monitor,1,389.99,12/12/19 17:57,"660 Hill St, Dallas, TX 75001" +299428,USB-C Charging Cable,1,11.95,12/17/19 08:49,"131 7th St, Los Angeles, CA 90001" +299429,Bose SoundSport Headphones,1,99.99,12/24/19 19:43,"694 Willow St, San Francisco, CA 94016" +299430,27in 4K Gaming Monitor,1,389.99,12/05/19 09:13,"576 Washington St, San Francisco, CA 94016" +299431,iPhone,1,700,12/27/19 19:48,"853 Park St, San Francisco, CA 94016" +299431,Lightning Charging Cable,1,14.95,12/27/19 19:48,"853 Park St, San Francisco, CA 94016" +299432,Apple Airpods Headphones,1,150,12/27/19 18:54,"148 Cherry St, Atlanta, GA 30301" +299433,Wired Headphones,3,11.99,12/13/19 19:54,"455 9th St, Los Angeles, CA 90001" +299434,USB-C Charging Cable,1,11.95,12/10/19 13:58,"346 Lake St, Los Angeles, CA 90001" +299435,USB-C Charging Cable,1,11.95,12/12/19 20:45,"969 Walnut St, San Francisco, CA 94016" +299436,Flatscreen TV,1,300,12/03/19 12:25,"294 Church St, Atlanta, GA 30301" +299437,Google Phone,1,600,12/12/19 15:51,"672 Willow St, Atlanta, GA 30301" +299438,Wired Headphones,1,11.99,12/11/19 13:25,"497 Cedar St, Los Angeles, CA 90001" +299439,AA Batteries (4-pack),1,3.84,12/24/19 21:24,"910 4th St, Dallas, TX 75001" +299440,Google Phone,1,600,12/17/19 12:28,"70 Cherry St, Portland, ME 04101" +299440,USB-C Charging Cable,1,11.95,12/17/19 12:28,"70 Cherry St, Portland, ME 04101" +299441,AAA Batteries (4-pack),4,2.99,12/31/19 11:57,"888 Church St, Dallas, TX 75001" +299442,Vareebadd Phone,1,400,12/30/19 13:17,"910 Hill St, San Francisco, CA 94016" +299442,Bose SoundSport Headphones,1,99.99,12/30/19 13:17,"910 Hill St, San Francisco, CA 94016" +299443,ThinkPad Laptop,1,999.99,12/17/19 17:11,"168 8th St, San Francisco, CA 94016" +299444,AAA Batteries (4-pack),1,2.99,12/10/19 23:29,"685 Lincoln St, Atlanta, GA 30301" +299445,AA Batteries (4-pack),1,3.84,12/25/19 14:57,"276 North St, New York City, NY 10001" +299446,Bose SoundSport Headphones,1,99.99,12/19/19 20:31,"518 11th St, Boston, MA 02215" +299447,Apple Airpods Headphones,1,150,12/17/19 19:35,"662 Johnson St, Boston, MA 02215" +299448,Apple Airpods Headphones,1,150,12/05/19 09:18,"580 Dogwood St, San Francisco, CA 94016" +299449,Flatscreen TV,1,300,12/26/19 02:52,"311 Willow St, Los Angeles, CA 90001" +299450,Apple Airpods Headphones,1,150,12/11/19 12:31,"180 Jackson St, New York City, NY 10001" +299451,ThinkPad Laptop,1,999.99,12/08/19 09:33,"273 13th St, San Francisco, CA 94016" +299452,Apple Airpods Headphones,1,150,12/27/19 22:31,"456 Hill St, Atlanta, GA 30301" +299453,Wired Headphones,1,11.99,12/08/19 17:57,"637 Church St, San Francisco, CA 94016" +299454,Wired Headphones,1,11.99,12/21/19 17:33,"597 Main St, Seattle, WA 98101" +299455,34in Ultrawide Monitor,1,379.99,12/14/19 03:57,"44 4th St, Boston, MA 02215" +299456,AAA Batteries (4-pack),2,2.99,12/04/19 16:39,"619 Park St, Boston, MA 02215" +299457,AAA Batteries (4-pack),2,2.99,12/04/19 20:48,"148 Chestnut St, Dallas, TX 75001" +299458,AA Batteries (4-pack),4,3.84,12/22/19 12:10,"145 Highland St, Dallas, TX 75001" +299459,ThinkPad Laptop,1,999.99,12/12/19 13:42,"38 11th St, San Francisco, CA 94016" +299460,Lightning Charging Cable,1,14.95,12/08/19 21:10,"299 Center St, Atlanta, GA 30301" +299461,Apple Airpods Headphones,1,150,12/04/19 19:55,"501 Lake St, New York City, NY 10001" +299462,20in Monitor,1,109.99,12/06/19 19:29,"739 Jefferson St, Los Angeles, CA 90001" +299463,Google Phone,1,600,12/09/19 22:21,"422 Adams St, Seattle, WA 98101" +299464,USB-C Charging Cable,1,11.95,12/17/19 17:29,"369 2nd St, Los Angeles, CA 90001" +299465,Macbook Pro Laptop,1,1700,12/28/19 08:38,"413 Highland St, Portland, ME 04101" +299466,20in Monitor,1,109.99,12/27/19 14:06,"852 Johnson St, New York City, NY 10001" +299467,AAA Batteries (4-pack),1,2.99,12/04/19 10:44,"416 Meadow St, Atlanta, GA 30301" +299468,AAA Batteries (4-pack),4,2.99,12/31/19 00:18,"762 Cherry St, San Francisco, CA 94016" +299469,Google Phone,1,600,12/06/19 19:45,"675 10th St, Dallas, TX 75001" +299470,iPhone,1,700,12/13/19 09:59,"668 Park St, Boston, MA 02215" +299471,Macbook Pro Laptop,1,1700,12/08/19 20:26,"910 Spruce St, New York City, NY 10001" +299472,Lightning Charging Cable,1,14.95,12/11/19 12:23,"503 Maple St, New York City, NY 10001" +299473,27in FHD Monitor,1,149.99,12/16/19 12:25,"451 Johnson St, Los Angeles, CA 90001" +299474,AAA Batteries (4-pack),1,2.99,12/01/19 20:49,"797 Jefferson St, Los Angeles, CA 90001" +299475,Wired Headphones,1,11.99,12/12/19 19:05,"388 Main St, Portland, OR 97035" +299476,AA Batteries (4-pack),1,3.84,12/29/19 16:49,"976 Ridge St, New York City, NY 10001" +299477,34in Ultrawide Monitor,1,379.99,12/17/19 16:37,"651 7th St, San Francisco, CA 94016" +299478,ThinkPad Laptop,1,999.99,12/09/19 17:37,"289 7th St, Los Angeles, CA 90001" +299479,AA Batteries (4-pack),2,3.84,12/20/19 13:08,"440 Lake St, Dallas, TX 75001" +299479,AA Batteries (4-pack),1,3.84,12/20/19 13:08,"440 Lake St, Dallas, TX 75001" +299480,Lightning Charging Cable,1,14.95,12/11/19 12:43,"97 Madison St, Los Angeles, CA 90001" +299481,AAA Batteries (4-pack),3,2.99,12/24/19 12:49,"825 Cherry St, New York City, NY 10001" +299482,Apple Airpods Headphones,1,150,12/20/19 09:59,"783 Willow St, Los Angeles, CA 90001" +299483,Bose SoundSport Headphones,1,99.99,12/03/19 23:53,"701 Adams St, Los Angeles, CA 90001" +299484,iPhone,1,700,12/06/19 15:52,"531 Hill St, Atlanta, GA 30301" +299485,Apple Airpods Headphones,1,150,12/04/19 18:42,"95 Cedar St, San Francisco, CA 94016" +299486,AA Batteries (4-pack),1,3.84,12/28/19 15:56,"386 Wilson St, San Francisco, CA 94016" +299487,USB-C Charging Cable,1,11.95,12/04/19 09:15,"402 Park St, Los Angeles, CA 90001" +299488,AA Batteries (4-pack),1,3.84,12/29/19 15:13,"171 14th St, Los Angeles, CA 90001" +299488,AA Batteries (4-pack),1,3.84,12/29/19 15:13,"171 14th St, Los Angeles, CA 90001" +299489,34in Ultrawide Monitor,1,379.99,12/21/19 08:26,"654 Lakeview St, Atlanta, GA 30301" +299490,Lightning Charging Cable,1,14.95,12/13/19 20:21,"663 Lincoln St, Austin, TX 73301" +299491,Apple Airpods Headphones,1,150,12/06/19 15:17,"822 River St, San Francisco, CA 94016" +299492,AA Batteries (4-pack),3,3.84,12/03/19 16:08,"378 Adams St, New York City, NY 10001" +299493,AAA Batteries (4-pack),1,2.99,12/30/19 17:34,"682 West St, New York City, NY 10001" +299494,USB-C Charging Cable,1,11.95,12/07/19 18:36,"213 2nd St, Seattle, WA 98101" +299495,Wired Headphones,1,11.99,12/25/19 13:44,"86 Madison St, Los Angeles, CA 90001" +299496,Bose SoundSport Headphones,1,99.99,12/17/19 20:47,"215 Lincoln St, Los Angeles, CA 90001" +299497,iPhone,1,700,12/23/19 08:54,"843 6th St, San Francisco, CA 94016" +299498,AAA Batteries (4-pack),1,2.99,12/07/19 17:39,"94 Highland St, Boston, MA 02215" +299499,Lightning Charging Cable,1,14.95,12/26/19 15:24,"946 Main St, Los Angeles, CA 90001" +299500,AAA Batteries (4-pack),1,2.99,12/22/19 00:37,"899 Spruce St, New York City, NY 10001" +299501,AAA Batteries (4-pack),1,2.99,12/26/19 14:14,"765 West St, New York City, NY 10001" +299502,Lightning Charging Cable,2,14.95,12/05/19 14:04,"488 Forest St, Los Angeles, CA 90001" +299503,Vareebadd Phone,1,400,12/28/19 12:27,"149 Forest St, New York City, NY 10001" +299504,AAA Batteries (4-pack),1,2.99,12/28/19 11:16,"308 Elm St, New York City, NY 10001" +299505,Lightning Charging Cable,1,14.95,12/30/19 10:56,"29 9th St, Portland, OR 97035" +299506,Lightning Charging Cable,1,14.95,12/10/19 18:51,"938 Dogwood St, San Francisco, CA 94016" +299507,USB-C Charging Cable,3,11.95,12/05/19 06:30,"606 2nd St, San Francisco, CA 94016" +299508,34in Ultrawide Monitor,1,379.99,12/17/19 22:59,"708 Center St, Portland, OR 97035" +299509,LG Washing Machine,1,600.0,12/04/19 19:35,"640 13th St, Seattle, WA 98101" +299510,USB-C Charging Cable,1,11.95,12/10/19 19:51,"387 11th St, San Francisco, CA 94016" +299511,Wired Headphones,1,11.99,12/04/19 14:04,"2 Walnut St, New York City, NY 10001" +299512,34in Ultrawide Monitor,1,379.99,12/22/19 17:38,"470 Main St, Boston, MA 02215" +299513,USB-C Charging Cable,1,11.95,12/12/19 14:26,"901 Park St, San Francisco, CA 94016" +299514,Apple Airpods Headphones,1,150,12/26/19 17:24,"227 Cedar St, Los Angeles, CA 90001" +299515,AA Batteries (4-pack),2,3.84,12/07/19 11:11,"949 14th St, New York City, NY 10001" +299516,Wired Headphones,1,11.99,12/21/19 21:35,"963 Walnut St, San Francisco, CA 94016" +299517,27in 4K Gaming Monitor,1,389.99,12/14/19 14:44,"897 8th St, Dallas, TX 75001" +299518,34in Ultrawide Monitor,1,379.99,12/15/19 14:38,"122 11th St, Seattle, WA 98101" +299519,Bose SoundSport Headphones,1,99.99,12/17/19 17:15,"872 10th St, Dallas, TX 75001" +299520,Apple Airpods Headphones,1,150,12/31/19 12:30,"528 Chestnut St, San Francisco, CA 94016" +299521,AA Batteries (4-pack),2,3.84,12/22/19 15:44,"525 Jefferson St, New York City, NY 10001" +299522,USB-C Charging Cable,1,11.95,12/20/19 19:51,"857 2nd St, Atlanta, GA 30301" +299523,Wired Headphones,1,11.99,12/21/19 13:56,"763 Elm St, San Francisco, CA 94016" +299524,Apple Airpods Headphones,1,150,12/17/19 10:44,"105 Jackson St, Atlanta, GA 30301" +299525,USB-C Charging Cable,2,11.95,12/26/19 17:14,"548 Park St, Dallas, TX 75001" +299526,iPhone,1,700,12/06/19 09:03,"842 Lake St, Portland, OR 97035" +299527,Macbook Pro Laptop,1,1700,12/13/19 20:44,"479 Meadow St, San Francisco, CA 94016" +299528,AAA Batteries (4-pack),1,2.99,12/29/19 19:59,"215 1st St, Los Angeles, CA 90001" +299529,USB-C Charging Cable,1,11.95,12/13/19 15:51,"306 5th St, Atlanta, GA 30301" +299530,34in Ultrawide Monitor,1,379.99,12/24/19 17:31,"66 Pine St, Atlanta, GA 30301" +299531,AA Batteries (4-pack),4,3.84,12/31/19 07:15,"914 4th St, Boston, MA 02215" +299532,iPhone,1,700,12/06/19 19:00,"867 8th St, Dallas, TX 75001" +299533,iPhone,1,700,12/01/19 12:45,"260 14th St, New York City, NY 10001" +299534,Google Phone,1,600,12/24/19 00:42,"640 Dogwood St, Los Angeles, CA 90001" +299535,34in Ultrawide Monitor,1,379.99,12/28/19 09:37,"784 Highland St, San Francisco, CA 94016" +299536,Apple Airpods Headphones,1,150,12/13/19 06:45,"416 Elm St, Atlanta, GA 30301" +299537,27in FHD Monitor,1,149.99,12/01/19 16:56,"828 Maple St, Austin, TX 73301" +299538,iPhone,1,700,12/22/19 19:28,"861 Chestnut St, Seattle, WA 98101" +299539,USB-C Charging Cable,1,11.95,12/02/19 14:42,"388 Center St, Boston, MA 02215" +299540,AA Batteries (4-pack),1,3.84,12/02/19 17:00,"454 Pine St, Los Angeles, CA 90001" +299541,USB-C Charging Cable,1,11.95,12/27/19 14:20,"878 Adams St, Boston, MA 02215" +299542,ThinkPad Laptop,1,999.99,12/16/19 10:30,"568 Johnson St, Los Angeles, CA 90001" +299543,AAA Batteries (4-pack),1,2.99,12/30/19 21:57,"682 West St, Los Angeles, CA 90001" +299544,27in FHD Monitor,1,149.99,12/29/19 23:07,"883 River St, Portland, OR 97035" +299545,Lightning Charging Cable,1,14.95,12/06/19 00:04,"877 North St, Boston, MA 02215" +299546,AAA Batteries (4-pack),2,2.99,12/21/19 14:01,"328 Lakeview St, Atlanta, GA 30301" +299547,AAA Batteries (4-pack),3,2.99,12/20/19 22:49,"425 Jackson St, San Francisco, CA 94016" +299548,Google Phone,1,600,12/20/19 12:48,"665 Forest St, Austin, TX 73301" +299549,34in Ultrawide Monitor,1,379.99,12/24/19 15:35,"309 Washington St, Los Angeles, CA 90001" +299550,Wired Headphones,1,11.99,12/20/19 17:07,"323 Adams St, Los Angeles, CA 90001" +299551,Macbook Pro Laptop,1,1700,12/17/19 07:56,"117 9th St, Portland, OR 97035" +299552,34in Ultrawide Monitor,1,379.99,12/04/19 12:31,"285 Cedar St, Dallas, TX 75001" +299553,27in FHD Monitor,1,149.99,12/11/19 19:18,"829 Meadow St, Los Angeles, CA 90001" +299554,Bose SoundSport Headphones,1,99.99,12/19/19 16:43,"890 Hill St, Atlanta, GA 30301" +299555,Wired Headphones,2,11.99,12/12/19 20:50,"154 Ridge St, Los Angeles, CA 90001" +299556,ThinkPad Laptop,1,999.99,12/06/19 16:14,"485 Meadow St, Atlanta, GA 30301" +299557,USB-C Charging Cable,1,11.95,12/15/19 20:52,"925 7th St, Boston, MA 02215" +299558,27in FHD Monitor,1,149.99,12/14/19 14:23,"19 Walnut St, Boston, MA 02215" +299559,USB-C Charging Cable,1,11.95,12/07/19 15:18,"337 14th St, Atlanta, GA 30301" +299560,AAA Batteries (4-pack),2,2.99,12/30/19 09:19,"173 Lakeview St, Dallas, TX 75001" +299561,Apple Airpods Headphones,1,150,12/21/19 20:56,"123 Lake St, Boston, MA 02215" +299562,AAA Batteries (4-pack),1,2.99,12/12/19 08:42,"758 Lincoln St, Boston, MA 02215" +299563,Wired Headphones,1,11.99,12/08/19 21:06,"720 Willow St, San Francisco, CA 94016" +299564,Flatscreen TV,1,300,12/22/19 17:48,"298 1st St, Seattle, WA 98101" +299565,Wired Headphones,1,11.99,12/07/19 08:24,"931 8th St, Seattle, WA 98101" +299566,Bose SoundSport Headphones,1,99.99,12/10/19 15:05,"138 North St, New York City, NY 10001" +299567,Wired Headphones,1,11.99,12/15/19 21:04,"913 Hill St, Dallas, TX 75001" +299568,Bose SoundSport Headphones,1,99.99,12/11/19 09:47,"335 Main St, Los Angeles, CA 90001" +299569,AAA Batteries (4-pack),1,2.99,12/14/19 13:06,"809 Spruce St, Dallas, TX 75001" +299570,27in FHD Monitor,1,149.99,12/22/19 21:33,"642 Cedar St, San Francisco, CA 94016" +299571,USB-C Charging Cable,1,11.95,12/25/19 23:08,"306 North St, Dallas, TX 75001" +299572,AAA Batteries (4-pack),2,2.99,12/24/19 00:19,"448 Dogwood St, Los Angeles, CA 90001" +299573,Lightning Charging Cable,1,14.95,12/16/19 13:44,"671 Forest St, Los Angeles, CA 90001" +299574,Apple Airpods Headphones,1,150,12/05/19 20:00,"952 Pine St, Portland, OR 97035" +299575,27in FHD Monitor,1,149.99,12/27/19 13:38,"783 Jefferson St, Dallas, TX 75001" +299576,AA Batteries (4-pack),1,3.84,12/25/19 19:19,"628 Washington St, San Francisco, CA 94016" +299577,iPhone,1,700,12/05/19 20:36,"195 9th St, Portland, ME 04101" +299578,USB-C Charging Cable,1,11.95,12/16/19 16:56,"189 West St, San Francisco, CA 94016" +299579,20in Monitor,1,109.99,12/10/19 23:33,"279 Meadow St, Atlanta, GA 30301" +299580,AA Batteries (4-pack),1,3.84,12/22/19 13:02,"148 Main St, Boston, MA 02215" +299581,Lightning Charging Cable,1,14.95,12/25/19 13:33,"941 Forest St, San Francisco, CA 94016" +299582,Wired Headphones,1,11.99,12/29/19 10:53,"730 10th St, Seattle, WA 98101" +299583,AAA Batteries (4-pack),1,2.99,12/02/19 23:59,"819 Ridge St, Los Angeles, CA 90001" +299584,ThinkPad Laptop,1,999.99,12/23/19 15:11,"733 Dogwood St, Los Angeles, CA 90001" +299585,AAA Batteries (4-pack),1,2.99,12/17/19 11:41,"489 Jefferson St, Seattle, WA 98101" +299586,iPhone,1,700,12/10/19 12:43,"499 2nd St, San Francisco, CA 94016" +299587,AAA Batteries (4-pack),2,2.99,12/06/19 13:04,"883 Main St, Dallas, TX 75001" +299588,Wired Headphones,1,11.99,12/07/19 14:22,"162 13th St, Portland, OR 97035" +299589,Google Phone,1,600,12/31/19 17:43,"45 Meadow St, Seattle, WA 98101" +299589,USB-C Charging Cable,1,11.95,12/31/19 17:43,"45 Meadow St, Seattle, WA 98101" +299590,Wired Headphones,1,11.99,12/31/19 21:12,"876 Church St, Los Angeles, CA 90001" +299591,AA Batteries (4-pack),1,3.84,12/18/19 06:19,"289 Ridge St, Boston, MA 02215" +299592,Google Phone,1,600,12/26/19 20:39,"805 8th St, Atlanta, GA 30301" +299593,Flatscreen TV,1,300,12/15/19 15:40,"541 Lincoln St, Atlanta, GA 30301" +299594,AA Batteries (4-pack),1,3.84,12/15/19 21:52,"411 North St, Boston, MA 02215" +299595,27in FHD Monitor,1,149.99,12/30/19 18:00,"377 Center St, San Francisco, CA 94016" +299596,AAA Batteries (4-pack),1,2.99,12/28/19 11:46,"301 Main St, Seattle, WA 98101" +299597,Macbook Pro Laptop,1,1700,12/18/19 12:17,"996 5th St, San Francisco, CA 94016" +299598,Bose SoundSport Headphones,1,99.99,12/14/19 20:16,"888 6th St, Dallas, TX 75001" +299599,AAA Batteries (4-pack),2,2.99,12/25/19 12:26,"318 Main St, Dallas, TX 75001" +299600,iPhone,1,700,12/26/19 14:59,"780 Park St, New York City, NY 10001" +299600,Wired Headphones,1,11.99,12/26/19 14:59,"780 Park St, New York City, NY 10001" +299601,27in FHD Monitor,1,149.99,12/14/19 14:10,"368 Elm St, Boston, MA 02215" +299602,Lightning Charging Cable,2,14.95,12/03/19 00:34,"947 Spruce St, New York City, NY 10001" +299603,27in FHD Monitor,1,149.99,12/19/19 06:32,"483 Madison St, San Francisco, CA 94016" +299604,Apple Airpods Headphones,1,150,12/17/19 10:55,"308 Lake St, Dallas, TX 75001" +299605,Flatscreen TV,1,300,12/31/19 17:52,"22 Washington St, Portland, OR 97035" +299606,iPhone,1,700,12/17/19 17:27,"180 Adams St, Portland, OR 97035" +299607,20in Monitor,1,109.99,12/09/19 15:11,"378 2nd St, San Francisco, CA 94016" +299608,ThinkPad Laptop,1,999.99,12/04/19 09:34,"61 Pine St, Los Angeles, CA 90001" +299609,AAA Batteries (4-pack),2,2.99,12/24/19 13:38,"448 2nd St, San Francisco, CA 94016" +299610,AAA Batteries (4-pack),1,2.99,12/19/19 12:26,"590 Lake St, New York City, NY 10001" +299611,Lightning Charging Cable,1,14.95,12/20/19 17:21,"107 Elm St, Los Angeles, CA 90001" +299612,Wired Headphones,1,11.99,12/23/19 16:26,"676 Lincoln St, Seattle, WA 98101" +299613,Bose SoundSport Headphones,1,99.99,12/14/19 13:55,"13 14th St, New York City, NY 10001" +299614,AA Batteries (4-pack),1,3.84,12/22/19 13:37,"252 Jefferson St, San Francisco, CA 94016" +299615,Lightning Charging Cable,1,14.95,12/07/19 13:50,"319 Adams St, San Francisco, CA 94016" +299616,Apple Airpods Headphones,1,150,12/14/19 00:45,"933 7th St, New York City, NY 10001" +299617,Flatscreen TV,1,300,12/28/19 19:57,"323 Hill St, Portland, OR 97035" +299618,Wired Headphones,1,11.99,12/05/19 17:37,"958 Hickory St, San Francisco, CA 94016" +299619,AA Batteries (4-pack),1,3.84,12/02/19 21:37,"667 11th St, New York City, NY 10001" +299620,USB-C Charging Cable,1,11.95,12/23/19 20:16,"237 Spruce St, San Francisco, CA 94016" +299621,AA Batteries (4-pack),1,3.84,12/30/19 11:23,"255 Spruce St, Austin, TX 73301" +299622,20in Monitor,1,109.99,12/14/19 18:00,"155 Cedar St, Portland, ME 04101" +299623,AAA Batteries (4-pack),3,2.99,12/11/19 21:33,"250 Hickory St, Seattle, WA 98101" +299624,Wired Headphones,1,11.99,12/25/19 23:37,"209 Highland St, San Francisco, CA 94016" +299625,Wired Headphones,1,11.99,12/15/19 12:52,"191 8th St, Los Angeles, CA 90001" +299626,AA Batteries (4-pack),1,3.84,12/24/19 17:10,"828 Washington St, Portland, OR 97035" +299627,Apple Airpods Headphones,1,150,12/07/19 17:02,"943 Forest St, Los Angeles, CA 90001" +299628,USB-C Charging Cable,1,11.95,12/13/19 23:00,"136 Highland St, Boston, MA 02215" +299629,Wired Headphones,1,11.99,12/29/19 12:41,"750 Dogwood St, Austin, TX 73301" +299630,Flatscreen TV,1,300,12/16/19 12:47,"985 Lakeview St, Boston, MA 02215" +299631,iPhone,1,700,12/28/19 16:03,"834 1st St, Los Angeles, CA 90001" +299632,Google Phone,1,600,12/18/19 11:27,"202 Highland St, Seattle, WA 98101" +299633,Wired Headphones,1,11.99,12/26/19 08:41,"944 West St, Portland, OR 97035" +299634,AA Batteries (4-pack),3,3.84,12/15/19 13:41,"49 Lincoln St, Atlanta, GA 30301" +299635,Apple Airpods Headphones,1,150,12/01/19 15:55,"777 Maple St, San Francisco, CA 94016" +299636,AAA Batteries (4-pack),1,2.99,12/20/19 07:54,"412 North St, New York City, NY 10001" +299637,iPhone,1,700,12/07/19 11:46,"366 Madison St, Boston, MA 02215" +299637,Lightning Charging Cable,1,14.95,12/07/19 11:46,"366 Madison St, Boston, MA 02215" +299638,AAA Batteries (4-pack),1,2.99,12/01/19 16:59,"902 Wilson St, New York City, NY 10001" +299639,Bose SoundSport Headphones,1,99.99,12/11/19 08:15,"750 Park St, San Francisco, CA 94016" +299640,Wired Headphones,1,11.99,12/23/19 19:17,"623 River St, Boston, MA 02215" +299641,Vareebadd Phone,1,400,12/12/19 12:33,"801 Jackson St, Seattle, WA 98101" +299642,Wired Headphones,1,11.99,12/02/19 15:36,"856 West St, Dallas, TX 75001" +299643,Flatscreen TV,1,300,12/27/19 12:51,"225 Maple St, Seattle, WA 98101" +299644,Bose SoundSport Headphones,1,99.99,12/08/19 11:02,"51 4th St, New York City, NY 10001" +299645,USB-C Charging Cable,1,11.95,12/24/19 18:02,"202 5th St, Portland, OR 97035" +299646,LG Washing Machine,1,600.0,12/17/19 10:02,"620 Johnson St, Dallas, TX 75001" +299647,AAA Batteries (4-pack),1,2.99,12/26/19 13:55,"472 11th St, San Francisco, CA 94016" +299648,Bose SoundSport Headphones,1,99.99,12/23/19 14:29,"957 Hickory St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +299649,Wired Headphones,1,11.99,12/03/19 12:56,"883 Center St, San Francisco, CA 94016" +299650,AAA Batteries (4-pack),1,2.99,12/14/19 15:22,"931 Church St, San Francisco, CA 94016" +299651,USB-C Charging Cable,1,11.95,12/17/19 21:10,"549 10th St, Los Angeles, CA 90001" +299652,Apple Airpods Headphones,1,150,12/20/19 14:55,"723 Cedar St, Boston, MA 02215" +299653,AA Batteries (4-pack),1,3.84,12/05/19 19:28,"322 7th St, Seattle, WA 98101" +299654,Lightning Charging Cable,1,14.95,12/18/19 01:43,"94 Lake St, Atlanta, GA 30301" +299655,Lightning Charging Cable,1,14.95,12/06/19 15:32,"999 South St, Dallas, TX 75001" +299656,Bose SoundSport Headphones,1,99.99,12/27/19 10:53,"474 8th St, Boston, MA 02215" +299657,27in FHD Monitor,1,149.99,12/06/19 03:26,"542 Maple St, Boston, MA 02215" +299658,Lightning Charging Cable,1,14.95,12/07/19 21:03,"532 Lakeview St, Atlanta, GA 30301" +299659,27in FHD Monitor,1,149.99,12/01/19 16:35,"309 Jefferson St, Seattle, WA 98101" +299660,Bose SoundSport Headphones,1,99.99,12/11/19 06:21,"838 2nd St, San Francisco, CA 94016" +299661,USB-C Charging Cable,1,11.95,12/31/19 20:17,"606 13th St, Seattle, WA 98101" +299662,iPhone,1,700,12/22/19 10:34,"317 2nd St, New York City, NY 10001" +299662,Lightning Charging Cable,1,14.95,12/22/19 10:34,"317 2nd St, New York City, NY 10001" +299662,Wired Headphones,1,11.99,12/22/19 10:34,"317 2nd St, New York City, NY 10001" +299663,Lightning Charging Cable,1,14.95,12/27/19 01:42,"377 Ridge St, Los Angeles, CA 90001" +299664,AAA Batteries (4-pack),3,2.99,12/08/19 16:54,"877 Forest St, Boston, MA 02215" +299665,Macbook Pro Laptop,1,1700,12/01/19 15:43,"753 West St, Portland, OR 97035" +299666,AA Batteries (4-pack),2,3.84,12/14/19 09:43,"360 Pine St, San Francisco, CA 94016" +299667,Lightning Charging Cable,1,14.95,12/20/19 20:19,"460 Lincoln St, Los Angeles, CA 90001" +299668,ThinkPad Laptop,1,999.99,12/19/19 20:10,"778 Main St, Boston, MA 02215" +299669,20in Monitor,1,109.99,12/24/19 20:46,"930 7th St, San Francisco, CA 94016" +299670,27in FHD Monitor,2,149.99,12/23/19 04:25,"92 13th St, San Francisco, CA 94016" +299670,AAA Batteries (4-pack),2,2.99,12/23/19 04:25,"92 13th St, San Francisco, CA 94016" +299671,27in FHD Monitor,1,149.99,12/07/19 11:42,"704 Jackson St, Austin, TX 73301" +299672,Lightning Charging Cable,1,14.95,12/25/19 14:08,"965 6th St, San Francisco, CA 94016" +299673,USB-C Charging Cable,1,11.95,12/25/19 11:29,"130 6th St, Seattle, WA 98101" +299674,USB-C Charging Cable,1,11.95,12/28/19 20:46,"580 10th St, Seattle, WA 98101" +299675,AAA Batteries (4-pack),1,2.99,12/10/19 21:50,"663 Lincoln St, Boston, MA 02215" +299676,Bose SoundSport Headphones,1,99.99,12/11/19 11:18,"916 12th St, Seattle, WA 98101" +299677,Lightning Charging Cable,2,14.95,12/15/19 22:25,"239 Adams St, Austin, TX 73301" +299678,20in Monitor,1,109.99,12/05/19 19:38,"198 Church St, San Francisco, CA 94016" +299679,Bose SoundSport Headphones,1,99.99,12/22/19 17:55,"713 Washington St, Dallas, TX 75001" +299680,Apple Airpods Headphones,1,150,12/07/19 15:43,"714 13th St, San Francisco, CA 94016" +299681,Lightning Charging Cable,1,14.95,12/17/19 19:37,"587 West St, San Francisco, CA 94016" +299682,AA Batteries (4-pack),1,3.84,12/10/19 23:19,"596 South St, New York City, NY 10001" +299683,Wired Headphones,1,11.99,12/01/19 07:52,"656 Elm St, San Francisco, CA 94016" +299684,AA Batteries (4-pack),1,3.84,12/17/19 10:32,"328 Wilson St, Los Angeles, CA 90001" +299685,Bose SoundSport Headphones,1,99.99,12/16/19 14:13,"695 Chestnut St, Seattle, WA 98101" +299686,27in 4K Gaming Monitor,1,389.99,12/12/19 23:54,"994 13th St, Portland, ME 04101" +299687,Google Phone,1,600,12/12/19 05:12,"176 Center St, Dallas, TX 75001" +299687,Bose SoundSport Headphones,1,99.99,12/12/19 05:12,"176 Center St, Dallas, TX 75001" +299688,27in 4K Gaming Monitor,1,389.99,12/10/19 09:12,"410 North St, Boston, MA 02215" +299689,AA Batteries (4-pack),1,3.84,12/21/19 18:19,"619 Washington St, Boston, MA 02215" +299690,Bose SoundSport Headphones,1,99.99,12/15/19 19:59,"151 Lake St, New York City, NY 10001" +299691,Apple Airpods Headphones,1,150,12/23/19 21:10,"373 Washington St, Austin, TX 73301" +299692,AAA Batteries (4-pack),1,2.99,12/23/19 12:39,"957 Church St, New York City, NY 10001" +299693,AAA Batteries (4-pack),1,2.99,12/25/19 09:39,"827 Cedar St, Portland, ME 04101" +299694,USB-C Charging Cable,1,11.95,12/23/19 13:18,"487 Spruce St, Atlanta, GA 30301" +299695,AA Batteries (4-pack),2,3.84,12/16/19 21:42,"8 Church St, Seattle, WA 98101" +299696,Bose SoundSport Headphones,1,99.99,12/19/19 06:12,"463 Forest St, Boston, MA 02215" +299697,Wired Headphones,1,11.99,12/31/19 12:36,"112 West St, Los Angeles, CA 90001" +299698,Wired Headphones,1,11.99,12/21/19 00:09,"703 6th St, San Francisco, CA 94016" +299699,Lightning Charging Cable,1,14.95,12/06/19 12:51,"96 4th St, Dallas, TX 75001" +299700,Bose SoundSport Headphones,1,99.99,12/15/19 10:53,"645 11th St, Dallas, TX 75001" +299701,Bose SoundSport Headphones,1,99.99,12/29/19 15:35,"587 West St, Seattle, WA 98101" +299702,Bose SoundSport Headphones,1,99.99,12/12/19 20:10,"890 Jefferson St, San Francisco, CA 94016" +299703,iPhone,1,700,12/27/19 21:44,"289 Lake St, Atlanta, GA 30301" +299704,27in 4K Gaming Monitor,1,389.99,12/14/19 23:18,"274 Pine St, Portland, OR 97035" +299705,USB-C Charging Cable,1,11.95,12/19/19 17:14,"34 Jackson St, Boston, MA 02215" +299706,AAA Batteries (4-pack),1,2.99,12/09/19 21:22,"941 Sunset St, Seattle, WA 98101" +299707,27in FHD Monitor,1,149.99,12/13/19 17:51,"19 Pine St, Seattle, WA 98101" +299708,AA Batteries (4-pack),1,3.84,12/06/19 16:01,"615 West St, San Francisco, CA 94016" +299709,USB-C Charging Cable,1,11.95,12/24/19 15:16,"424 1st St, Los Angeles, CA 90001" +299710,Apple Airpods Headphones,1,150,12/24/19 09:35,"683 Willow St, Dallas, TX 75001" +299711,Wired Headphones,1,11.99,12/21/19 13:01,"973 Jackson St, New York City, NY 10001" +299712,AA Batteries (4-pack),1,3.84,12/26/19 18:48,"836 14th St, Los Angeles, CA 90001" +299713,AAA Batteries (4-pack),1,2.99,12/07/19 21:31,"129 Maple St, Portland, OR 97035" +299714,iPhone,1,700,12/16/19 17:18,"88 Madison St, Seattle, WA 98101" +299714,Lightning Charging Cable,1,14.95,12/16/19 17:18,"88 Madison St, Seattle, WA 98101" +299715,Flatscreen TV,1,300,12/23/19 14:43,"599 Chestnut St, Los Angeles, CA 90001" +299716,AA Batteries (4-pack),1,3.84,12/08/19 19:20,"202 Maple St, Atlanta, GA 30301" +299717,AA Batteries (4-pack),2,3.84,12/10/19 07:03,"380 Hill St, San Francisco, CA 94016" +299718,Apple Airpods Headphones,1,150,12/24/19 20:26,"14 River St, Los Angeles, CA 90001" +299719,Vareebadd Phone,1,400,12/29/19 17:11,"673 Johnson St, San Francisco, CA 94016" +299720,AAA Batteries (4-pack),1,2.99,12/12/19 10:50,"475 Wilson St, New York City, NY 10001" +299721,iPhone,1,700,12/27/19 11:50,"477 South St, New York City, NY 10001" +299722,Apple Airpods Headphones,1,150,12/02/19 00:11,"209 Lincoln St, Atlanta, GA 30301" +299723,Bose SoundSport Headphones,1,99.99,12/25/19 15:24,"824 Lincoln St, Boston, MA 02215" +299724,Google Phone,1,600,12/30/19 20:25,"12 Adams St, Seattle, WA 98101" +299724,USB-C Charging Cable,1,11.95,12/30/19 20:25,"12 Adams St, Seattle, WA 98101" +299725,Wired Headphones,1,11.99,12/02/19 07:02,"786 Chestnut St, Atlanta, GA 30301" +299726,27in 4K Gaming Monitor,1,389.99,12/27/19 19:46,"830 North St, San Francisco, CA 94016" +299727,Macbook Pro Laptop,1,1700,12/24/19 10:14,"368 Wilson St, Los Angeles, CA 90001" +299728,Wired Headphones,1,11.99,12/03/19 20:43,"701 9th St, New York City, NY 10001" +299729,Flatscreen TV,1,300,12/07/19 18:26,"204 Main St, Atlanta, GA 30301" +299730,Apple Airpods Headphones,1,150,12/08/19 21:36,"486 12th St, Boston, MA 02215" +299731,Macbook Pro Laptop,1,1700,12/19/19 22:56,"532 8th St, New York City, NY 10001" +299732,27in FHD Monitor,1,149.99,12/17/19 14:14,"637 6th St, San Francisco, CA 94016" +299733,AAA Batteries (4-pack),1,2.99,12/18/19 17:49,"35 Meadow St, Atlanta, GA 30301" +299734,AA Batteries (4-pack),1,3.84,12/10/19 18:04,"875 Highland St, San Francisco, CA 94016" +299735,Lightning Charging Cable,1,14.95,12/02/19 08:45,"96 Dogwood St, Los Angeles, CA 90001" +299736,Wired Headphones,1,11.99,12/23/19 12:18,"784 Chestnut St, Boston, MA 02215" +299736,Bose SoundSport Headphones,1,99.99,12/23/19 12:18,"784 Chestnut St, Boston, MA 02215" +299737,AAA Batteries (4-pack),1,2.99,12/11/19 08:27,"70 Maple St, Dallas, TX 75001" +299738,Lightning Charging Cable,2,14.95,12/11/19 13:14,"34 Cedar St, Los Angeles, CA 90001" +299739,Lightning Charging Cable,1,14.95,12/17/19 13:58,"378 8th St, Seattle, WA 98101" +299740,AAA Batteries (4-pack),1,2.99,12/05/19 17:04,"782 Lincoln St, Boston, MA 02215" +299741,Apple Airpods Headphones,1,150,12/20/19 21:45,"512 13th St, Portland, OR 97035" +299742,Lightning Charging Cable,1,14.95,12/03/19 16:03,"10 Wilson St, San Francisco, CA 94016" +299743,27in 4K Gaming Monitor,1,389.99,12/03/19 07:13,"556 West St, Boston, MA 02215" +299744,AA Batteries (4-pack),1,3.84,12/21/19 00:41,"670 9th St, Atlanta, GA 30301" +299745,USB-C Charging Cable,1,11.95,12/25/19 10:04,"758 4th St, Boston, MA 02215" +299746,Lightning Charging Cable,1,14.95,12/05/19 19:53,"297 8th St, San Francisco, CA 94016" +299747,Macbook Pro Laptop,1,1700,12/31/19 18:14,"85 Washington St, Seattle, WA 98101" +299748,Lightning Charging Cable,1,14.95,12/08/19 21:24,"919 Hill St, San Francisco, CA 94016" +299749,27in FHD Monitor,1,149.99,12/02/19 12:54,"381 Spruce St, New York City, NY 10001" +299750,AA Batteries (4-pack),3,3.84,12/31/19 20:34,"199 9th St, Boston, MA 02215" +299751,27in FHD Monitor,1,149.99,12/31/19 10:41,"40 13th St, Los Angeles, CA 90001" +299752,Lightning Charging Cable,1,14.95,12/14/19 12:47,"844 4th St, Los Angeles, CA 90001" +299753,Bose SoundSport Headphones,1,99.99,12/24/19 13:07,"629 Cedar St, Portland, OR 97035" +299754,Wired Headphones,1,11.99,12/07/19 15:20,"80 North St, Boston, MA 02215" +299755,iPhone,1,700,12/27/19 19:43,"651 8th St, San Francisco, CA 94016" +299756,Apple Airpods Headphones,1,150,12/21/19 23:50,"7 Sunset St, Los Angeles, CA 90001" +299757,USB-C Charging Cable,1,11.95,12/07/19 18:40,"512 1st St, Portland, OR 97035" +299758,AAA Batteries (4-pack),1,2.99,12/02/19 18:41,"938 Washington St, Atlanta, GA 30301" +299759,iPhone,1,700,12/05/19 22:33,"962 Dogwood St, Austin, TX 73301" +299760,Flatscreen TV,1,300,12/21/19 11:20,"833 8th St, Portland, OR 97035" +299761,AA Batteries (4-pack),1,3.84,12/12/19 10:51,"37 Hickory St, Seattle, WA 98101" +299762,AAA Batteries (4-pack),1,2.99,12/26/19 13:44,"330 Sunset St, Los Angeles, CA 90001" +299763,Bose SoundSport Headphones,1,99.99,12/20/19 17:15,"556 Willow St, Los Angeles, CA 90001" +299764,AA Batteries (4-pack),2,3.84,12/26/19 14:35,"618 Spruce St, San Francisco, CA 94016" +299765,AAA Batteries (4-pack),1,2.99,12/09/19 09:55,"267 7th St, San Francisco, CA 94016" +299766,Wired Headphones,1,11.99,12/30/19 14:55,"573 Church St, Los Angeles, CA 90001" +299767,AA Batteries (4-pack),1,3.84,12/25/19 11:46,"722 10th St, Los Angeles, CA 90001" +299768,Macbook Pro Laptop,1,1700,12/25/19 16:42,"56 Lincoln St, Austin, TX 73301" +299769,Lightning Charging Cable,1,14.95,12/25/19 19:20,"79 Highland St, Boston, MA 02215" +299770,AA Batteries (4-pack),1,3.84,12/14/19 13:52,"284 6th St, Boston, MA 02215" +299771,AA Batteries (4-pack),1,3.84,12/17/19 07:27,"519 4th St, Austin, TX 73301" +299772,AAA Batteries (4-pack),1,2.99,12/23/19 20:11,"374 Sunset St, San Francisco, CA 94016" +299773,AAA Batteries (4-pack),1,2.99,12/23/19 16:13,"663 Cherry St, Los Angeles, CA 90001" +299774,Bose SoundSport Headphones,1,99.99,12/10/19 12:56,"830 Wilson St, Boston, MA 02215" +299775,AA Batteries (4-pack),1,3.84,12/03/19 15:59,"764 Center St, Boston, MA 02215" +299776,Bose SoundSport Headphones,1,99.99,12/05/19 13:09,"730 Jackson St, Seattle, WA 98101" +299777,Bose SoundSport Headphones,1,99.99,12/06/19 09:38,"78 Willow St, Atlanta, GA 30301" +299778,ThinkPad Laptop,1,999.99,12/12/19 23:42,"916 Meadow St, Seattle, WA 98101" +299778,20in Monitor,1,109.99,12/12/19 23:42,"916 Meadow St, Seattle, WA 98101" +299779,AA Batteries (4-pack),1,3.84,12/17/19 05:19,"581 Hickory St, San Francisco, CA 94016" +299780,AAA Batteries (4-pack),2,2.99,12/22/19 13:47,"991 Sunset St, Los Angeles, CA 90001" +299781,34in Ultrawide Monitor,1,379.99,12/08/19 06:51,"406 Lake St, San Francisco, CA 94016" +299782,Apple Airpods Headphones,1,150,12/19/19 11:29,"419 Walnut St, Austin, TX 73301" +299783,Wired Headphones,1,11.99,12/25/19 19:35,"370 Adams St, Portland, OR 97035" +299784,Lightning Charging Cable,1,14.95,12/07/19 19:25,"372 10th St, Dallas, TX 75001" +299785,Lightning Charging Cable,1,14.95,12/25/19 19:20,"469 Spruce St, San Francisco, CA 94016" +299786,Wired Headphones,1,11.99,12/20/19 11:08,"949 Washington St, Seattle, WA 98101" +299787,AAA Batteries (4-pack),2,2.99,12/08/19 13:55,"272 Spruce St, Austin, TX 73301" +299788,Apple Airpods Headphones,1,150,12/29/19 22:13,"433 13th St, San Francisco, CA 94016" +299789,USB-C Charging Cable,1,11.95,12/18/19 18:24,"705 Adams St, San Francisco, CA 94016" +299790,Bose SoundSport Headphones,1,99.99,12/13/19 22:30,"949 10th St, Boston, MA 02215" +299791,AAA Batteries (4-pack),3,2.99,12/25/19 11:55,"167 Chestnut St, Boston, MA 02215" +299792,Wired Headphones,1,11.99,12/16/19 08:40,"680 1st St, Atlanta, GA 30301" +299793,Apple Airpods Headphones,1,150,12/30/19 21:20,"837 9th St, Portland, ME 04101" +299794,AAA Batteries (4-pack),3,2.99,12/23/19 15:16,"696 10th St, San Francisco, CA 94016" +299795,Bose SoundSport Headphones,1,99.99,12/02/19 17:29,"434 11th St, Dallas, TX 75001" +299796,27in 4K Gaming Monitor,1,389.99,12/02/19 19:15,"802 Meadow St, Austin, TX 73301" +299797,AAA Batteries (4-pack),2,2.99,12/08/19 10:14,"74 14th St, New York City, NY 10001" +299798,AAA Batteries (4-pack),1,2.99,12/13/19 07:19,"27 10th St, Portland, OR 97035" +299799,Flatscreen TV,1,300,12/31/19 22:23,"792 Main St, San Francisco, CA 94016" +299800,AAA Batteries (4-pack),1,2.99,12/29/19 21:02,"931 11th St, San Francisco, CA 94016" +299801,AA Batteries (4-pack),2,3.84,12/19/19 20:58,"208 Park St, New York City, NY 10001" +299802,Bose SoundSport Headphones,1,99.99,12/15/19 11:56,"56 Dogwood St, Boston, MA 02215" +299802,Bose SoundSport Headphones,1,99.99,12/15/19 11:56,"56 Dogwood St, Boston, MA 02215" +299803,Apple Airpods Headphones,1,150,12/09/19 02:09,"163 Pine St, Atlanta, GA 30301" +299804,Vareebadd Phone,1,400,12/27/19 10:41,"328 Ridge St, Portland, ME 04101" +299805,USB-C Charging Cable,1,11.95,12/27/19 13:24,"916 Madison St, Los Angeles, CA 90001" +299806,iPhone,1,700,12/31/19 22:28,"682 Highland St, Seattle, WA 98101" +299807,Lightning Charging Cable,1,14.95,12/16/19 00:09,"502 Forest St, San Francisco, CA 94016" +299808,AA Batteries (4-pack),1,3.84,12/10/19 20:34,"849 9th St, Austin, TX 73301" +299809,AAA Batteries (4-pack),1,2.99,12/28/19 18:17,"784 Adams St, San Francisco, CA 94016" +299810,20in Monitor,1,109.99,12/10/19 13:18,"403 4th St, Seattle, WA 98101" +299811,AA Batteries (4-pack),1,3.84,12/09/19 11:05,"440 Cedar St, Boston, MA 02215" +299812,AA Batteries (4-pack),1,3.84,12/11/19 18:53,"171 Forest St, Boston, MA 02215" +299813,Bose SoundSport Headphones,1,99.99,12/22/19 20:21,"465 Main St, Atlanta, GA 30301" +299814,AA Batteries (4-pack),1,3.84,12/10/19 11:46,"998 Lake St, San Francisco, CA 94016" +299815,Bose SoundSport Headphones,1,99.99,12/07/19 07:58,"857 Main St, Dallas, TX 75001" +299816,Bose SoundSport Headphones,1,99.99,12/03/19 11:41,"825 Walnut St, Los Angeles, CA 90001" +299816,AAA Batteries (4-pack),1,2.99,12/03/19 11:41,"825 Walnut St, Los Angeles, CA 90001" +299817,Bose SoundSport Headphones,1,99.99,12/30/19 21:15,"180 6th St, San Francisco, CA 94016" +299818,USB-C Charging Cable,1,11.95,12/12/19 10:48,"814 Spruce St, Los Angeles, CA 90001" +299819,AA Batteries (4-pack),1,3.84,12/30/19 15:31,"139 10th St, New York City, NY 10001" +299820,AAA Batteries (4-pack),1,2.99,12/07/19 17:42,"789 Main St, Atlanta, GA 30301" +299821,ThinkPad Laptop,1,999.99,12/13/19 10:59,"830 2nd St, Los Angeles, CA 90001" +299822,AAA Batteries (4-pack),1,2.99,12/22/19 11:34,"226 Sunset St, Seattle, WA 98101" +299823,AAA Batteries (4-pack),5,2.99,12/25/19 23:08,"234 Park St, Portland, OR 97035" +299824,Wired Headphones,1,11.99,12/26/19 18:54,"453 Forest St, Portland, OR 97035" +299825,34in Ultrawide Monitor,1,379.99,12/21/19 11:52,"954 Highland St, Dallas, TX 75001" +299826,AA Batteries (4-pack),2,3.84,12/19/19 17:41,"45 Hickory St, Portland, OR 97035" +299827,Apple Airpods Headphones,1,150,12/24/19 12:32,"175 Ridge St, San Francisco, CA 94016" +299828,ThinkPad Laptop,1,999.99,12/08/19 10:42,"314 Dogwood St, San Francisco, CA 94016" +299829,iPhone,1,700,12/01/19 19:34,"435 11th St, Boston, MA 02215" +299830,Wired Headphones,1,11.99,12/11/19 11:06,"429 Main St, San Francisco, CA 94016" +299831,USB-C Charging Cable,1,11.95,12/23/19 11:34,"58 Park St, San Francisco, CA 94016" +299832,34in Ultrawide Monitor,1,379.99,12/31/19 11:28,"133 Spruce St, Atlanta, GA 30301" +299833,Macbook Pro Laptop,1,1700,12/21/19 20:14,"732 Johnson St, Seattle, WA 98101" +299834,Lightning Charging Cable,1,14.95,12/26/19 13:29,"256 Elm St, San Francisco, CA 94016" +299835,20in Monitor,1,109.99,12/28/19 21:19,"745 Hickory St, Los Angeles, CA 90001" +299836,Lightning Charging Cable,1,14.95,12/21/19 23:22,"94 5th St, San Francisco, CA 94016" +299837,Lightning Charging Cable,1,14.95,12/12/19 16:10,"385 8th St, New York City, NY 10001" +299838,27in 4K Gaming Monitor,1,389.99,12/14/19 23:50,"96 14th St, San Francisco, CA 94016" +299839,Wired Headphones,1,11.99,12/30/19 22:33,"646 Sunset St, Seattle, WA 98101" +299840,Wired Headphones,1,11.99,12/25/19 19:54,"983 Johnson St, San Francisco, CA 94016" +299841,Apple Airpods Headphones,1,150,12/12/19 13:40,"613 Lake St, San Francisco, CA 94016" +299842,Apple Airpods Headphones,1,150,12/12/19 15:15,"482 Maple St, Los Angeles, CA 90001" +299843,27in 4K Gaming Monitor,1,389.99,12/14/19 14:49,"600 6th St, Dallas, TX 75001" +,,,,, +299844,27in FHD Monitor,1,149.99,12/28/19 18:01,"729 Ridge St, San Francisco, CA 94016" +299845,Lightning Charging Cable,2,14.95,12/19/19 18:25,"503 5th St, Atlanta, GA 30301" +299846,Apple Airpods Headphones,1,150,12/29/19 18:53,"507 6th St, Los Angeles, CA 90001" +299847,34in Ultrawide Monitor,1,379.99,12/16/19 22:42,"218 Johnson St, Portland, OR 97035" +299848,Macbook Pro Laptop,1,1700,12/19/19 20:13,"606 Meadow St, Austin, TX 73301" +299849,Apple Airpods Headphones,1,150,12/21/19 13:48,"993 1st St, Atlanta, GA 30301" +299850,34in Ultrawide Monitor,1,379.99,12/28/19 13:05,"123 2nd St, Atlanta, GA 30301" +299851,Wired Headphones,1,11.99,12/15/19 09:45,"131 Main St, Austin, TX 73301" +299852,USB-C Charging Cable,1,11.95,12/23/19 22:46,"102 8th St, Los Angeles, CA 90001" +299853,Apple Airpods Headphones,1,150,12/21/19 14:04,"169 River St, Austin, TX 73301" +299854,Wired Headphones,1,11.99,12/27/19 00:35,"727 Church St, Austin, TX 73301" +299855,USB-C Charging Cable,1,11.95,12/21/19 23:00,"693 Dogwood St, Boston, MA 02215" +299856,Apple Airpods Headphones,1,150,12/28/19 17:14,"884 Maple St, Dallas, TX 75001" +299857,Wired Headphones,1,11.99,12/14/19 15:55,"623 Park St, Boston, MA 02215" +299858,Lightning Charging Cable,1,14.95,12/28/19 10:37,"312 Park St, Austin, TX 73301" +299859,AAA Batteries (4-pack),2,2.99,12/18/19 17:42,"927 West St, San Francisco, CA 94016" +299860,Lightning Charging Cable,1,14.95,12/27/19 11:37,"896 Wilson St, Los Angeles, CA 90001" +299861,27in FHD Monitor,1,149.99,12/05/19 21:03,"432 14th St, New York City, NY 10001" +299862,34in Ultrawide Monitor,1,379.99,12/27/19 20:49,"684 5th St, Los Angeles, CA 90001" +299863,34in Ultrawide Monitor,1,379.99,12/31/19 08:32,"176 Cedar St, Atlanta, GA 30301" +299864,Apple Airpods Headphones,1,150,12/04/19 12:59,"165 Willow St, Boston, MA 02215" +299865,ThinkPad Laptop,1,999.99,12/18/19 22:36,"249 River St, Los Angeles, CA 90001" +299866,Wired Headphones,1,11.99,12/12/19 17:49,"5 14th St, Los Angeles, CA 90001" +299866,Apple Airpods Headphones,1,150,12/12/19 17:49,"5 14th St, Los Angeles, CA 90001" +299867,Lightning Charging Cable,1,14.95,12/29/19 12:48,"878 Lincoln St, Portland, OR 97035" +299868,Apple Airpods Headphones,1,150,12/30/19 12:33,"942 Hickory St, Atlanta, GA 30301" +299869,Apple Airpods Headphones,1,150,12/06/19 17:32,"229 Church St, San Francisco, CA 94016" +299870,Bose SoundSport Headphones,1,99.99,01/01/20 02:29,"193 Maple St, San Francisco, CA 94016" +299871,iPhone,1,700,12/20/19 21:51,"13 Dogwood St, Boston, MA 02215" +299871,Wired Headphones,1,11.99,12/20/19 21:51,"13 Dogwood St, Boston, MA 02215" +299872,AA Batteries (4-pack),3,3.84,12/01/19 11:48,"617 Pine St, New York City, NY 10001" +299873,AAA Batteries (4-pack),1,2.99,12/08/19 19:00,"366 Wilson St, Dallas, TX 75001" +299874,Flatscreen TV,1,300,12/14/19 11:59,"70 Hickory St, San Francisco, CA 94016" +299875,Wired Headphones,1,11.99,12/27/19 08:08,"235 Meadow St, Dallas, TX 75001" +299876,27in 4K Gaming Monitor,1,389.99,12/07/19 22:54,"495 Main St, Los Angeles, CA 90001" +299877,AAA Batteries (4-pack),1,2.99,12/04/19 19:43,"41 14th St, Dallas, TX 75001" +299878,USB-C Charging Cable,1,11.95,12/23/19 10:27,"181 River St, San Francisco, CA 94016" +299879,34in Ultrawide Monitor,1,379.99,12/17/19 17:11,"652 Madison St, San Francisco, CA 94016" +299880,Lightning Charging Cable,1,14.95,12/12/19 07:02,"869 8th St, Los Angeles, CA 90001" +299881,Wired Headphones,1,11.99,12/29/19 19:31,"90 Park St, Atlanta, GA 30301" +299882,LG Dryer,1,600.0,12/20/19 01:46,"310 Meadow St, Seattle, WA 98101" +299883,Wired Headphones,1,11.99,12/16/19 12:17,"969 Madison St, Boston, MA 02215" +299884,Apple Airpods Headphones,1,150,12/12/19 22:32,"440 Main St, Dallas, TX 75001" +299885,AAA Batteries (4-pack),2,2.99,12/20/19 17:15,"53 Chestnut St, Los Angeles, CA 90001" +299886,27in 4K Gaming Monitor,1,389.99,12/30/19 18:23,"237 Jefferson St, Los Angeles, CA 90001" +299887,Wired Headphones,2,11.99,12/14/19 15:04,"790 12th St, Portland, OR 97035" +299888,AA Batteries (4-pack),2,3.84,12/17/19 16:47,"757 Ridge St, Los Angeles, CA 90001" +299889,Bose SoundSport Headphones,1,99.99,12/14/19 17:47,"483 Pine St, Los Angeles, CA 90001" +299890,AAA Batteries (4-pack),1,2.99,12/12/19 16:23,"893 12th St, Atlanta, GA 30301" +299891,27in FHD Monitor,1,149.99,12/20/19 15:14,"964 9th St, Portland, OR 97035" +299892,Google Phone,1,600,12/11/19 20:40,"425 Elm St, Dallas, TX 75001" +299893,27in 4K Gaming Monitor,1,389.99,12/21/19 17:44,"552 12th St, New York City, NY 10001" +299894,Apple Airpods Headphones,1,150,12/22/19 13:15,"825 Cherry St, Seattle, WA 98101" +299895,USB-C Charging Cable,1,11.95,12/19/19 00:21,"852 Lake St, Boston, MA 02215" +299896,34in Ultrawide Monitor,1,379.99,12/14/19 00:05,"88 9th St, San Francisco, CA 94016" +299897,AAA Batteries (4-pack),2,2.99,12/09/19 23:07,"787 West St, Portland, ME 04101" +299898,iPhone,1,700,12/22/19 18:04,"426 Church St, Los Angeles, CA 90001" +299899,USB-C Charging Cable,1,11.95,12/22/19 07:17,"180 Park St, San Francisco, CA 94016" +299900,AAA Batteries (4-pack),1,2.99,12/26/19 09:37,"689 South St, San Francisco, CA 94016" +299901,Lightning Charging Cable,1,14.95,12/08/19 09:24,"566 2nd St, Atlanta, GA 30301" +299902,Lightning Charging Cable,1,14.95,12/13/19 01:37,"507 2nd St, San Francisco, CA 94016" +299903,USB-C Charging Cable,1,11.95,12/01/19 06:53,"774 Lakeview St, Atlanta, GA 30301" +299904,Lightning Charging Cable,1,14.95,12/18/19 17:47,"100 Willow St, New York City, NY 10001" +299905,Lightning Charging Cable,1,14.95,12/19/19 19:54,"592 Washington St, San Francisco, CA 94016" +299906,Bose SoundSport Headphones,1,99.99,12/09/19 08:49,"875 Hill St, Los Angeles, CA 90001" +299907,AA Batteries (4-pack),1,3.84,12/28/19 23:19,"837 Jackson St, Austin, TX 73301" +299908,AAA Batteries (4-pack),1,2.99,12/26/19 15:00,"679 Madison St, Los Angeles, CA 90001" +299909,27in 4K Gaming Monitor,1,389.99,12/26/19 22:14,"916 River St, Seattle, WA 98101" +299910,AA Batteries (4-pack),1,3.84,12/27/19 14:47,"598 Ridge St, Seattle, WA 98101" +299911,27in FHD Monitor,1,149.99,12/09/19 12:43,"89 Chestnut St, New York City, NY 10001" +299912,USB-C Charging Cable,1,11.95,12/24/19 11:46,"404 2nd St, Boston, MA 02215" +299913,34in Ultrawide Monitor,1,379.99,12/30/19 09:41,"60 Meadow St, Dallas, TX 75001" +299914,AAA Batteries (4-pack),1,2.99,12/12/19 19:39,"892 Walnut St, New York City, NY 10001" +299915,AAA Batteries (4-pack),1,2.99,12/17/19 15:04,"561 4th St, Portland, OR 97035" +299916,AAA Batteries (4-pack),1,2.99,12/30/19 20:10,"375 Lincoln St, San Francisco, CA 94016" +299917,Wired Headphones,1,11.99,12/29/19 09:00,"836 Madison St, Seattle, WA 98101" +299918,AAA Batteries (4-pack),1,2.99,12/07/19 17:49,"749 6th St, Portland, OR 97035" +299919,Lightning Charging Cable,1,14.95,12/22/19 05:51,"95 South St, Boston, MA 02215" +299920,AAA Batteries (4-pack),1,2.99,12/13/19 22:19,"256 Meadow St, Atlanta, GA 30301" +299921,USB-C Charging Cable,1,11.95,12/29/19 08:04,"890 Lakeview St, Atlanta, GA 30301" +299922,Wired Headphones,2,11.99,12/12/19 07:36,"887 10th St, Atlanta, GA 30301" +299923,Flatscreen TV,1,300,12/08/19 18:09,"603 7th St, Portland, ME 04101" +299924,AA Batteries (4-pack),1,3.84,12/08/19 18:55,"343 11th St, Dallas, TX 75001" +299925,27in 4K Gaming Monitor,1,389.99,12/18/19 08:32,"93 Spruce St, San Francisco, CA 94016" +299926,Apple Airpods Headphones,1,150,12/30/19 14:30,"474 Lake St, Los Angeles, CA 90001" +299927,AAA Batteries (4-pack),1,2.99,12/22/19 09:59,"488 Cedar St, Los Angeles, CA 90001" +299928,Apple Airpods Headphones,1,150,12/08/19 21:31,"490 Ridge St, Portland, ME 04101" +299929,AAA Batteries (4-pack),1,2.99,12/18/19 10:29,"882 Maple St, Boston, MA 02215" +299930,AAA Batteries (4-pack),1,2.99,12/18/19 11:05,"696 9th St, San Francisco, CA 94016" +299931,Google Phone,1,600,12/07/19 20:15,"528 Lincoln St, Austin, TX 73301" +299931,Wired Headphones,1,11.99,12/07/19 20:15,"528 Lincoln St, Austin, TX 73301" +299932,Bose SoundSport Headphones,1,99.99,12/06/19 16:12,"171 Hill St, Dallas, TX 75001" +299933,Lightning Charging Cable,1,14.95,12/23/19 10:44,"639 10th St, Seattle, WA 98101" +299934,Wired Headphones,1,11.99,12/16/19 11:02,"360 Chestnut St, Portland, OR 97035" +299935,AA Batteries (4-pack),1,3.84,12/19/19 04:17,"86 Forest St, Austin, TX 73301" +299936,Wired Headphones,1,11.99,12/19/19 23:58,"496 11th St, New York City, NY 10001" +299937,Bose SoundSport Headphones,1,99.99,12/30/19 19:10,"780 Meadow St, Portland, OR 97035" +299938,AAA Batteries (4-pack),3,2.99,12/11/19 01:14,"890 5th St, New York City, NY 10001" +299939,USB-C Charging Cable,2,11.95,12/24/19 14:27,"621 Park St, Dallas, TX 75001" +299940,AAA Batteries (4-pack),2,2.99,12/05/19 12:23,"2 Forest St, Los Angeles, CA 90001" +299941,27in 4K Gaming Monitor,1,389.99,12/28/19 09:50,"126 12th St, San Francisco, CA 94016" +299942,iPhone,1,700,12/11/19 20:59,"456 Ridge St, San Francisco, CA 94016" +299943,AA Batteries (4-pack),1,3.84,12/20/19 00:46,"821 Hill St, San Francisco, CA 94016" +299944,Wired Headphones,1,11.99,12/07/19 15:35,"641 Main St, San Francisco, CA 94016" +299945,iPhone,1,700,12/12/19 13:02,"704 6th St, San Francisco, CA 94016" +299945,Wired Headphones,1,11.99,12/12/19 13:02,"704 6th St, San Francisco, CA 94016" +299946,27in FHD Monitor,1,149.99,12/07/19 08:34,"93 Sunset St, Atlanta, GA 30301" +299947,Macbook Pro Laptop,1,1700,12/25/19 20:45,"977 5th St, Boston, MA 02215" +299948,AA Batteries (4-pack),1,3.84,12/10/19 05:07,"557 Church St, Austin, TX 73301" +299949,Wired Headphones,1,11.99,12/12/19 23:45,"157 Dogwood St, Atlanta, GA 30301" +299950,27in 4K Gaming Monitor,1,389.99,12/16/19 22:26,"386 Cedar St, Portland, ME 04101" +299951,AAA Batteries (4-pack),1,2.99,12/13/19 18:22,"359 Hickory St, San Francisco, CA 94016" +299952,27in 4K Gaming Monitor,1,389.99,12/22/19 07:57,"790 Cherry St, Boston, MA 02215" +299953,27in 4K Gaming Monitor,1,389.99,12/08/19 17:14,"949 Lakeview St, Atlanta, GA 30301" +299954,USB-C Charging Cable,1,11.95,12/29/19 21:36,"126 Jefferson St, Seattle, WA 98101" +299955,AAA Batteries (4-pack),1,2.99,12/01/19 08:05,"53 Lake St, Portland, ME 04101" +299956,Apple Airpods Headphones,1,150,12/09/19 21:17,"573 Cherry St, Atlanta, GA 30301" +299957,Wired Headphones,1,11.99,12/08/19 11:25,"489 8th St, Boston, MA 02215" +299958,27in FHD Monitor,1,149.99,12/20/19 20:00,"653 12th St, Portland, OR 97035" +299959,20in Monitor,1,109.99,12/23/19 12:29,"58 11th St, New York City, NY 10001" +299960,27in FHD Monitor,1,149.99,12/07/19 12:04,"494 Center St, Boston, MA 02215" +299961,Apple Airpods Headphones,1,150,12/02/19 15:14,"537 Sunset St, Portland, OR 97035" +299962,Apple Airpods Headphones,1,150,12/21/19 18:34,"546 4th St, Los Angeles, CA 90001" +299963,AA Batteries (4-pack),1,3.84,12/16/19 21:10,"120 Main St, San Francisco, CA 94016" +299964,27in FHD Monitor,1,149.99,12/11/19 22:49,"935 Washington St, Los Angeles, CA 90001" +299965,Apple Airpods Headphones,1,150,12/02/19 14:08,"409 4th St, Dallas, TX 75001" +299966,20in Monitor,1,109.99,12/27/19 07:43,"237 4th St, Boston, MA 02215" +299967,20in Monitor,1,109.99,12/20/19 19:47,"18 Walnut St, Boston, MA 02215" +299968,AAA Batteries (4-pack),2,2.99,12/27/19 16:05,"406 Sunset St, Dallas, TX 75001" +299969,AA Batteries (4-pack),1,3.84,12/01/19 13:26,"430 Church St, Seattle, WA 98101" +299970,Lightning Charging Cable,1,14.95,12/25/19 12:47,"402 Wilson St, San Francisco, CA 94016" +299971,AA Batteries (4-pack),1,3.84,12/14/19 19:18,"41 Forest St, Los Angeles, CA 90001" +299972,Google Phone,1,600,12/27/19 13:15,"467 14th St, Dallas, TX 75001" +299973,AA Batteries (4-pack),2,3.84,12/18/19 23:44,"778 Adams St, San Francisco, CA 94016" +299974,AA Batteries (4-pack),3,3.84,12/17/19 20:27,"479 6th St, San Francisco, CA 94016" +299975,AAA Batteries (4-pack),1,2.99,12/03/19 20:08,"657 Ridge St, New York City, NY 10001" +299976,Apple Airpods Headphones,1,150,12/21/19 14:04,"966 4th St, Boston, MA 02215" +299977,AAA Batteries (4-pack),1,2.99,12/15/19 22:27,"258 South St, San Francisco, CA 94016" +299978,AA Batteries (4-pack),1,3.84,12/11/19 09:14,"190 13th St, Portland, OR 97035" +299979,AA Batteries (4-pack),1,3.84,12/12/19 22:18,"46 Madison St, Los Angeles, CA 90001" +299980,27in FHD Monitor,1,149.99,12/31/19 15:15,"563 Johnson St, New York City, NY 10001" +299981,AAA Batteries (4-pack),3,2.99,12/17/19 19:33,"268 Jackson St, Austin, TX 73301" +299982,27in 4K Gaming Monitor,1,389.99,12/25/19 16:21,"832 Lincoln St, Los Angeles, CA 90001" +299983,Bose SoundSport Headphones,1,99.99,12/20/19 06:36,"624 Pine St, Dallas, TX 75001" +299984,Google Phone,1,600,12/26/19 14:01,"33 Hickory St, Los Angeles, CA 90001" +299985,AAA Batteries (4-pack),1,2.99,12/04/19 22:32,"39 6th St, San Francisco, CA 94016" +299986,Apple Airpods Headphones,1,150,12/22/19 18:31,"873 Maple St, New York City, NY 10001" +299987,27in FHD Monitor,1,149.99,12/14/19 12:15,"846 Lakeview St, Seattle, WA 98101" +299988,USB-C Charging Cable,1,11.95,12/10/19 18:02,"495 North St, Atlanta, GA 30301" +299989,Wired Headphones,1,11.99,12/02/19 21:47,"414 South St, San Francisco, CA 94016" +299990,Lightning Charging Cable,1,14.95,12/26/19 20:59,"591 Lincoln St, San Francisco, CA 94016" +299991,Google Phone,1,600,12/31/19 12:48,"750 Forest St, San Francisco, CA 94016" +299992,Lightning Charging Cable,1,14.95,12/11/19 18:09,"742 Lincoln St, Portland, OR 97035" +299993,27in FHD Monitor,1,149.99,12/24/19 00:04,"261 Ridge St, Atlanta, GA 30301" +299994,AA Batteries (4-pack),1,3.84,12/13/19 18:56,"804 Madison St, New York City, NY 10001" +299995,Wired Headphones,1,11.99,12/31/19 20:45,"917 Center St, San Francisco, CA 94016" +299996,Lightning Charging Cable,1,14.95,12/08/19 20:35,"177 Adams St, New York City, NY 10001" +299997,LG Dryer,1,600.0,12/10/19 14:02,"433 Washington St, Atlanta, GA 30301" +299998,Google Phone,1,600,12/08/19 16:15,"114 Washington St, New York City, NY 10001" +299998,USB-C Charging Cable,1,11.95,12/08/19 16:15,"114 Washington St, New York City, NY 10001" +299999,Flatscreen TV,1,300,12/21/19 19:52,"794 Willow St, Los Angeles, CA 90001" +300000,Lightning Charging Cable,1,14.95,12/26/19 18:59,"999 North St, Los Angeles, CA 90001" +300001,Lightning Charging Cable,1,14.95,12/20/19 18:17,"700 Cherry St, Los Angeles, CA 90001" +300002,27in FHD Monitor,2,149.99,12/23/19 14:20,"900 Washington St, Los Angeles, CA 90001" +300003,Bose SoundSport Headphones,1,99.99,12/03/19 19:48,"449 Highland St, Los Angeles, CA 90001" +300004,USB-C Charging Cable,1,11.95,12/03/19 21:49,"647 Church St, Austin, TX 73301" +300005,Wired Headphones,1,11.99,12/24/19 22:47,"94 13th St, Boston, MA 02215" +300006,Wired Headphones,1,11.99,12/04/19 16:47,"599 Elm St, San Francisco, CA 94016" +300007,AA Batteries (4-pack),1,3.84,12/21/19 14:51,"968 Lakeview St, Portland, OR 97035" +300008,USB-C Charging Cable,1,11.95,12/14/19 18:26,"579 10th St, Portland, OR 97035" +300009,USB-C Charging Cable,1,11.95,12/12/19 17:15,"627 Hill St, Atlanta, GA 30301" +300010,USB-C Charging Cable,1,11.95,12/29/19 13:09,"299 14th St, New York City, NY 10001" +300011,Macbook Pro Laptop,1,1700,12/04/19 21:42,"717 13th St, Seattle, WA 98101" +300012,Macbook Pro Laptop,1,1700,12/23/19 20:49,"529 8th St, Dallas, TX 75001" +300013,27in FHD Monitor,1,149.99,12/24/19 20:43,"681 River St, San Francisco, CA 94016" +300014,Lightning Charging Cable,1,14.95,12/06/19 18:45,"755 5th St, Los Angeles, CA 90001" +300015,Flatscreen TV,1,300,12/27/19 20:32,"337 7th St, San Francisco, CA 94016" +300016,iPhone,1,700,12/08/19 15:33,"279 Dogwood St, Boston, MA 02215" +300017,USB-C Charging Cable,1,11.95,12/27/19 19:57,"858 Center St, Los Angeles, CA 90001" +300018,Wired Headphones,2,11.99,12/27/19 00:39,"463 Maple St, Boston, MA 02215" +300019,AAA Batteries (4-pack),1,2.99,12/01/19 20:03,"959 Elm St, Boston, MA 02215" +300020,Lightning Charging Cable,1,14.95,12/27/19 15:16,"692 Center St, Boston, MA 02215" +300021,Wired Headphones,1,11.99,12/17/19 16:20,"277 Church St, San Francisco, CA 94016" +300022,iPhone,1,700,12/18/19 20:15,"104 12th St, San Francisco, CA 94016" +300023,27in 4K Gaming Monitor,1,389.99,12/02/19 12:51,"305 Hickory St, Boston, MA 02215" +300024,Apple Airpods Headphones,1,150,12/12/19 22:56,"192 Highland St, Austin, TX 73301" +300025,Bose SoundSport Headphones,1,99.99,12/17/19 13:56,"110 Lake St, Seattle, WA 98101" +300026,Lightning Charging Cable,1,14.95,12/08/19 10:41,"587 Center St, San Francisco, CA 94016" +300027,Bose SoundSport Headphones,1,99.99,12/25/19 20:44,"89 9th St, Los Angeles, CA 90001" +300028,Bose SoundSport Headphones,1,99.99,12/31/19 20:09,"787 Chestnut St, San Francisco, CA 94016" +300029,Apple Airpods Headphones,1,150,12/30/19 18:08,"495 14th St, Los Angeles, CA 90001" +300030,USB-C Charging Cable,1,11.95,12/05/19 00:13,"342 River St, Seattle, WA 98101" +300031,AA Batteries (4-pack),1,3.84,12/02/19 09:26,"143 Lakeview St, Seattle, WA 98101" +300032,Apple Airpods Headphones,1,150,12/08/19 01:21,"341 Adams St, San Francisco, CA 94016" +300033,AAA Batteries (4-pack),1,2.99,12/26/19 11:44,"749 Madison St, Los Angeles, CA 90001" +300034,Macbook Pro Laptop,1,1700,12/27/19 13:54,"593 Madison St, Seattle, WA 98101" +300035,Flatscreen TV,1,300,12/18/19 11:16,"291 12th St, Los Angeles, CA 90001" +300036,Bose SoundSport Headphones,1,99.99,12/09/19 23:14,"23 Johnson St, Boston, MA 02215" +300037,Bose SoundSport Headphones,1,99.99,12/29/19 13:37,"308 Main St, Los Angeles, CA 90001" +300038,Bose SoundSport Headphones,1,99.99,12/31/19 21:38,"661 Willow St, Austin, TX 73301" +300039,Apple Airpods Headphones,1,150,12/05/19 12:14,"208 Park St, Austin, TX 73301" +300040,Lightning Charging Cable,1,14.95,12/23/19 10:35,"957 Lakeview St, Los Angeles, CA 90001" +300041,Lightning Charging Cable,1,14.95,12/11/19 14:08,"353 Willow St, San Francisco, CA 94016" +300042,Macbook Pro Laptop,1,1700,12/04/19 17:00,"651 Park St, Seattle, WA 98101" +300042,AAA Batteries (4-pack),2,2.99,12/04/19 17:00,"651 Park St, Seattle, WA 98101" +300043,USB-C Charging Cable,1,11.95,12/18/19 04:35,"169 Madison St, Seattle, WA 98101" +300044,Wired Headphones,1,11.99,12/26/19 10:37,"128 Wilson St, San Francisco, CA 94016" +300045,Macbook Pro Laptop,1,1700,12/21/19 14:33,"297 River St, Atlanta, GA 30301" +300046,AAA Batteries (4-pack),1,2.99,12/14/19 11:30,"344 Jefferson St, Seattle, WA 98101" +300047,Bose SoundSport Headphones,1,99.99,12/18/19 15:16,"424 Lakeview St, Boston, MA 02215" +300048,AAA Batteries (4-pack),1,2.99,12/26/19 21:08,"170 9th St, San Francisco, CA 94016" +300049,AAA Batteries (4-pack),1,2.99,12/02/19 11:41,"936 Adams St, San Francisco, CA 94016" +300050,AAA Batteries (4-pack),1,2.99,12/10/19 21:41,"698 Lincoln St, Boston, MA 02215" +300051,AAA Batteries (4-pack),1,2.99,12/13/19 17:48,"158 West St, Atlanta, GA 30301" +300052,Apple Airpods Headphones,1,150,12/07/19 00:13,"290 Center St, Austin, TX 73301" +300053,AA Batteries (4-pack),1,3.84,12/26/19 15:12,"215 9th St, San Francisco, CA 94016" +300054,34in Ultrawide Monitor,1,379.99,12/17/19 08:20,"586 7th St, Atlanta, GA 30301" +300055,Wired Headphones,1,11.99,12/19/19 17:48,"222 Washington St, Boston, MA 02215" +300056,AAA Batteries (4-pack),1,2.99,12/05/19 09:52,"437 Ridge St, Los Angeles, CA 90001" +300057,ThinkPad Laptop,1,999.99,12/21/19 13:12,"803 Ridge St, San Francisco, CA 94016" +300058,Vareebadd Phone,1,400,12/21/19 22:30,"669 South St, San Francisco, CA 94016" +300059,Lightning Charging Cable,1,14.95,12/10/19 17:28,"517 Highland St, Los Angeles, CA 90001" +300060,27in 4K Gaming Monitor,1,389.99,12/14/19 21:28,"50 Forest St, San Francisco, CA 94016" +300061,AA Batteries (4-pack),1,3.84,12/30/19 16:42,"230 10th St, Atlanta, GA 30301" +300062,27in 4K Gaming Monitor,1,389.99,12/09/19 10:23,"30 Lakeview St, Boston, MA 02215" +300063,Lightning Charging Cable,1,14.95,12/04/19 21:14,"572 1st St, Atlanta, GA 30301" +300064,Macbook Pro Laptop,1,1700,12/16/19 10:23,"574 Chestnut St, New York City, NY 10001" +300065,20in Monitor,1,109.99,12/08/19 11:12,"401 1st St, Boston, MA 02215" +300065,AA Batteries (4-pack),1,3.84,12/08/19 11:12,"401 1st St, Boston, MA 02215" +300066,Flatscreen TV,1,300,12/08/19 19:06,"138 2nd St, San Francisco, CA 94016" +300067,Apple Airpods Headphones,1,150,12/05/19 18:14,"348 Jackson St, New York City, NY 10001" +300068,Wired Headphones,1,11.99,12/14/19 13:24,"808 Forest St, Portland, OR 97035" +300069,Lightning Charging Cable,1,14.95,12/22/19 10:26,"527 Hickory St, New York City, NY 10001" +300070,Vareebadd Phone,1,400,12/25/19 10:07,"406 Cherry St, Boston, MA 02215" +300070,USB-C Charging Cable,1,11.95,12/25/19 10:07,"406 Cherry St, Boston, MA 02215" +300071,LG Washing Machine,1,600.0,12/24/19 17:44,"258 West St, San Francisco, CA 94016" +300072,AA Batteries (4-pack),2,3.84,12/17/19 17:32,"316 Lakeview St, Dallas, TX 75001" +300073,AA Batteries (4-pack),1,3.84,12/05/19 14:09,"186 Chestnut St, San Francisco, CA 94016" +300074,USB-C Charging Cable,1,11.95,12/13/19 19:51,"202 8th St, Los Angeles, CA 90001" +300075,Apple Airpods Headphones,1,150,12/24/19 15:52,"726 River St, Boston, MA 02215" +300076,Wired Headphones,2,11.99,12/08/19 12:20,"348 Hill St, Dallas, TX 75001" +300077,Wired Headphones,1,11.99,12/19/19 19:08,"478 Lake St, Los Angeles, CA 90001" +300078,Apple Airpods Headphones,1,150,12/23/19 16:05,"966 Spruce St, Austin, TX 73301" +300079,Vareebadd Phone,1,400,12/13/19 12:34,"653 Wilson St, Atlanta, GA 30301" +300080,AAA Batteries (4-pack),1,2.99,12/05/19 15:20,"642 Jefferson St, Boston, MA 02215" +300081,AA Batteries (4-pack),1,3.84,12/31/19 09:32,"6 North St, San Francisco, CA 94016" +300082,USB-C Charging Cable,1,11.95,12/20/19 21:32,"922 Pine St, Los Angeles, CA 90001" +300083,Lightning Charging Cable,1,14.95,12/29/19 09:26,"956 11th St, Los Angeles, CA 90001" +300084,AA Batteries (4-pack),3,3.84,12/08/19 15:09,"144 Sunset St, San Francisco, CA 94016" +300085,Apple Airpods Headphones,1,150,12/08/19 16:12,"149 North St, Dallas, TX 75001" +300086,Vareebadd Phone,1,400,12/18/19 17:28,"918 Johnson St, Boston, MA 02215" +300087,Apple Airpods Headphones,1,150,12/29/19 14:51,"790 Spruce St, Boston, MA 02215" +300088,Wired Headphones,1,11.99,12/18/19 15:02,"952 13th St, San Francisco, CA 94016" +300089,ThinkPad Laptop,1,999.99,12/23/19 13:09,"832 8th St, Los Angeles, CA 90001" +300090,AAA Batteries (4-pack),3,2.99,12/18/19 13:59,"353 Cherry St, Los Angeles, CA 90001" +300091,Lightning Charging Cable,1,14.95,12/11/19 12:03,"712 Hill St, Seattle, WA 98101" +300092,Apple Airpods Headphones,1,150,12/01/19 14:19,"514 Forest St, Dallas, TX 75001" +300093,AAA Batteries (4-pack),1,2.99,12/06/19 18:05,"169 8th St, New York City, NY 10001" +300094,Apple Airpods Headphones,1,150,12/22/19 17:14,"463 Adams St, Los Angeles, CA 90001" +300095,AA Batteries (4-pack),1,3.84,12/26/19 14:39,"262 Hill St, Boston, MA 02215" +300096,AA Batteries (4-pack),1,3.84,12/05/19 16:31,"301 Sunset St, Portland, OR 97035" +300097,Flatscreen TV,1,300,12/30/19 11:58,"714 Maple St, Boston, MA 02215" +300098,Bose SoundSport Headphones,1,99.99,12/26/19 10:42,"774 Washington St, Boston, MA 02215" +300099,USB-C Charging Cable,1,11.95,12/05/19 14:07,"681 1st St, Los Angeles, CA 90001" +300100,Wired Headphones,1,11.99,12/13/19 21:41,"584 Hill St, San Francisco, CA 94016" +300101,Wired Headphones,1,11.99,12/11/19 19:50,"88 Hickory St, San Francisco, CA 94016" +300102,Bose SoundSport Headphones,1,99.99,12/11/19 00:16,"758 Meadow St, San Francisco, CA 94016" +300103,Lightning Charging Cable,1,14.95,12/17/19 10:25,"871 Jefferson St, Los Angeles, CA 90001" +300104,AAA Batteries (4-pack),1,2.99,12/21/19 06:02,"699 11th St, New York City, NY 10001" +300105,Flatscreen TV,1,300,12/05/19 18:56,"417 1st St, Seattle, WA 98101" +300106,Lightning Charging Cable,1,14.95,12/08/19 11:47,"500 Walnut St, Atlanta, GA 30301" +300107,Lightning Charging Cable,1,14.95,12/05/19 06:20,"150 Chestnut St, Portland, OR 97035" +300108,Wired Headphones,1,11.99,12/11/19 21:35,"165 13th St, Seattle, WA 98101" +300109,Apple Airpods Headphones,1,150,12/29/19 10:42,"774 Church St, Los Angeles, CA 90001" +300109,iPhone,1,700,12/29/19 10:42,"774 Church St, Los Angeles, CA 90001" +300110,Apple Airpods Headphones,1,150,12/05/19 16:44,"917 11th St, Seattle, WA 98101" +300111,Wired Headphones,1,11.99,12/16/19 22:29,"703 Spruce St, New York City, NY 10001" +300112,AAA Batteries (4-pack),1,2.99,12/18/19 12:36,"873 Jefferson St, Seattle, WA 98101" +300113,USB-C Charging Cable,2,11.95,12/05/19 08:01,"344 Pine St, Dallas, TX 75001" +300114,Apple Airpods Headphones,1,150,12/17/19 11:53,"9 Main St, San Francisco, CA 94016" +300115,AA Batteries (4-pack),1,3.84,12/20/19 18:52,"526 5th St, Atlanta, GA 30301" +300116,Bose SoundSport Headphones,1,99.99,12/11/19 21:40,"894 Forest St, Los Angeles, CA 90001" +300117,USB-C Charging Cable,1,11.95,12/22/19 17:57,"54 Dogwood St, San Francisco, CA 94016" +300118,34in Ultrawide Monitor,1,379.99,12/12/19 12:07,"437 North St, Seattle, WA 98101" +300119,Macbook Pro Laptop,1,1700,12/07/19 15:22,"453 11th St, New York City, NY 10001" +300120,AA Batteries (4-pack),3,3.84,12/23/19 10:27,"314 Lincoln St, San Francisco, CA 94016" +300121,AAA Batteries (4-pack),1,2.99,12/14/19 21:19,"929 Wilson St, New York City, NY 10001" +300122,USB-C Charging Cable,1,11.95,12/22/19 12:36,"680 Johnson St, San Francisco, CA 94016" +300123,USB-C Charging Cable,1,11.95,12/11/19 13:48,"651 Sunset St, Boston, MA 02215" +300124,Macbook Pro Laptop,1,1700,12/04/19 11:44,"174 Chestnut St, New York City, NY 10001" +300125,iPhone,1,700,12/17/19 23:11,"881 Meadow St, Dallas, TX 75001" +300125,Lightning Charging Cable,1,14.95,12/17/19 23:11,"881 Meadow St, Dallas, TX 75001" +300126,AA Batteries (4-pack),1,3.84,12/21/19 15:04,"56 Jefferson St, San Francisco, CA 94016" +300127,iPhone,1,700,12/23/19 16:59,"208 Hickory St, Los Angeles, CA 90001" +300128,Google Phone,1,600,12/09/19 17:41,"408 Center St, Dallas, TX 75001" +300129,AA Batteries (4-pack),1,3.84,12/03/19 12:49,"941 12th St, New York City, NY 10001" +300130,Bose SoundSport Headphones,1,99.99,12/20/19 14:57,"935 Johnson St, Austin, TX 73301" +300131,Lightning Charging Cable,2,14.95,12/27/19 14:35,"774 Cedar St, San Francisco, CA 94016" +300132,USB-C Charging Cable,1,11.95,12/04/19 17:57,"679 Maple St, San Francisco, CA 94016" +300133,USB-C Charging Cable,1,11.95,12/22/19 15:57,"618 North St, San Francisco, CA 94016" +300134,iPhone,1,700,12/10/19 12:26,"356 Cedar St, Boston, MA 02215" +300135,AAA Batteries (4-pack),1,2.99,12/27/19 17:31,"56 14th St, San Francisco, CA 94016" +300136,Macbook Pro Laptop,1,1700,12/02/19 21:12,"664 Meadow St, Dallas, TX 75001" +300137,ThinkPad Laptop,1,999.99,12/07/19 18:48,"432 Cedar St, San Francisco, CA 94016" +300138,Wired Headphones,1,11.99,12/13/19 09:57,"184 14th St, Los Angeles, CA 90001" +300139,iPhone,1,700,12/18/19 16:45,"121 9th St, Los Angeles, CA 90001" +300140,Lightning Charging Cable,1,14.95,12/24/19 23:46,"180 Hickory St, Boston, MA 02215" +300141,Wired Headphones,1,11.99,12/30/19 21:59,"374 Cedar St, Seattle, WA 98101" +300142,Bose SoundSport Headphones,1,99.99,12/01/19 10:37,"752 Lake St, New York City, NY 10001" +300143,Lightning Charging Cable,1,14.95,12/11/19 17:44,"510 2nd St, Atlanta, GA 30301" +300144,Google Phone,1,600,12/18/19 23:05,"659 7th St, Portland, ME 04101" +300145,27in 4K Gaming Monitor,1,389.99,12/06/19 10:29,"899 West St, Los Angeles, CA 90001" +300146,27in 4K Gaming Monitor,1,389.99,12/06/19 20:35,"789 River St, San Francisco, CA 94016" +300147,Apple Airpods Headphones,1,150,12/21/19 16:05,"350 4th St, Los Angeles, CA 90001" +300148,Apple Airpods Headphones,1,150,12/24/19 18:09,"416 Chestnut St, Portland, OR 97035" +300149,AAA Batteries (4-pack),2,2.99,12/04/19 18:28,"797 Walnut St, Los Angeles, CA 90001" +300150,27in 4K Gaming Monitor,1,389.99,12/26/19 15:30,"990 6th St, Dallas, TX 75001" +300151,AA Batteries (4-pack),1,3.84,12/25/19 11:45,"47 11th St, New York City, NY 10001" +300152,Lightning Charging Cable,1,14.95,12/28/19 15:06,"373 Johnson St, San Francisco, CA 94016" +300153,27in 4K Gaming Monitor,1,389.99,12/20/19 18:54,"517 5th St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +300154,AA Batteries (4-pack),1,3.84,12/09/19 09:25,"713 Washington St, Atlanta, GA 30301" +300155,Apple Airpods Headphones,1,150,12/31/19 19:24,"930 Meadow St, Dallas, TX 75001" +300156,Bose SoundSport Headphones,1,99.99,12/17/19 19:24,"752 Johnson St, Austin, TX 73301" +300157,USB-C Charging Cable,1,11.95,12/07/19 21:45,"243 Cedar St, Seattle, WA 98101" +300158,AA Batteries (4-pack),1,3.84,12/17/19 18:30,"532 2nd St, New York City, NY 10001" +300159,20in Monitor,1,109.99,12/29/19 16:40,"35 6th St, San Francisco, CA 94016" +300160,USB-C Charging Cable,1,11.95,12/09/19 12:00,"734 Lakeview St, Portland, OR 97035" +300161,iPhone,1,700,12/21/19 13:24,"247 Forest St, New York City, NY 10001" +300162,AAA Batteries (4-pack),3,2.99,12/15/19 19:44,"191 Spruce St, Los Angeles, CA 90001" +300163,27in FHD Monitor,1,149.99,12/09/19 13:50,"264 Lake St, San Francisco, CA 94016" +300164,34in Ultrawide Monitor,1,379.99,12/19/19 16:56,"587 10th St, Atlanta, GA 30301" +300165,USB-C Charging Cable,1,11.95,12/06/19 07:13,"885 Jackson St, Austin, TX 73301" +300166,Wired Headphones,1,11.99,12/01/19 17:42,"236 Highland St, Austin, TX 73301" +300167,USB-C Charging Cable,1,11.95,12/06/19 09:04,"30 Johnson St, Dallas, TX 75001" +300168,Wired Headphones,1,11.99,12/20/19 12:13,"702 1st St, Los Angeles, CA 90001" +300169,AAA Batteries (4-pack),1,2.99,12/14/19 20:29,"889 7th St, Dallas, TX 75001" +300170,USB-C Charging Cable,1,11.95,12/02/19 10:12,"740 12th St, Portland, OR 97035" +300171,Wired Headphones,1,11.99,12/19/19 23:24,"625 Hickory St, Austin, TX 73301" +300172,27in 4K Gaming Monitor,1,389.99,12/25/19 11:42,"971 Willow St, Los Angeles, CA 90001" +300173,USB-C Charging Cable,1,11.95,12/20/19 17:33,"914 Pine St, Los Angeles, CA 90001" +300174,27in FHD Monitor,1,149.99,12/05/19 19:53,"349 Highland St, Los Angeles, CA 90001" +300175,27in 4K Gaming Monitor,1,389.99,12/22/19 19:15,"234 Willow St, Portland, OR 97035" +300176,Apple Airpods Headphones,1,150,12/29/19 10:48,"669 Willow St, San Francisco, CA 94016" +300177,ThinkPad Laptop,1,999.99,12/30/19 15:53,"694 10th St, San Francisco, CA 94016" +300178,AAA Batteries (4-pack),2,2.99,12/14/19 15:17,"307 Hickory St, San Francisco, CA 94016" +300179,AA Batteries (4-pack),1,3.84,12/10/19 16:28,"119 Highland St, Los Angeles, CA 90001" +300180,AA Batteries (4-pack),1,3.84,12/16/19 11:05,"281 Hill St, Los Angeles, CA 90001" +300181,34in Ultrawide Monitor,1,379.99,12/27/19 16:55,"938 Forest St, Boston, MA 02215" +300182,AA Batteries (4-pack),1,3.84,12/03/19 20:29,"623 Johnson St, San Francisco, CA 94016" +300183,iPhone,1,700,12/29/19 15:34,"681 13th St, Portland, OR 97035" +300184,Apple Airpods Headphones,1,150,12/21/19 21:35,"366 Adams St, Austin, TX 73301" +300185,Wired Headphones,1,11.99,12/01/19 10:44,"317 Jackson St, San Francisco, CA 94016" +300186,USB-C Charging Cable,1,11.95,12/22/19 13:10,"164 Lakeview St, Atlanta, GA 30301" +300187,Bose SoundSport Headphones,1,99.99,12/23/19 18:58,"927 6th St, Dallas, TX 75001" +300188,AAA Batteries (4-pack),1,2.99,12/05/19 16:32,"996 Willow St, Atlanta, GA 30301" +300189,AA Batteries (4-pack),2,3.84,12/24/19 15:43,"504 Meadow St, Portland, OR 97035" +300190,AAA Batteries (4-pack),1,2.99,12/12/19 21:33,"630 Maple St, New York City, NY 10001" +300191,USB-C Charging Cable,2,11.95,12/17/19 13:58,"321 13th St, Atlanta, GA 30301" +300192,27in FHD Monitor,1,149.99,12/26/19 18:48,"233 Park St, New York City, NY 10001" +300193,LG Dryer,1,600.0,12/14/19 08:32,"366 Chestnut St, New York City, NY 10001" +300194,Apple Airpods Headphones,1,150,12/23/19 09:46,"778 10th St, Boston, MA 02215" +300195,Apple Airpods Headphones,1,150,12/27/19 12:44,"394 Madison St, San Francisco, CA 94016" +300196,iPhone,1,700,12/03/19 10:14,"928 Jackson St, Atlanta, GA 30301" +300196,Wired Headphones,1,11.99,12/03/19 10:14,"928 Jackson St, Atlanta, GA 30301" +300197,AAA Batteries (4-pack),1,2.99,12/25/19 19:40,"623 West St, Los Angeles, CA 90001" +300198,Flatscreen TV,1,300,12/24/19 22:03,"167 Meadow St, Boston, MA 02215" +300198,Wired Headphones,1,11.99,12/24/19 22:03,"167 Meadow St, Boston, MA 02215" +300199,AAA Batteries (4-pack),2,2.99,12/31/19 19:30,"507 Adams St, Los Angeles, CA 90001" +300200,AA Batteries (4-pack),1,3.84,12/03/19 08:33,"815 Jefferson St, Portland, ME 04101" +300201,AAA Batteries (4-pack),1,2.99,12/04/19 11:05,"728 Jackson St, San Francisco, CA 94016" +300202,AAA Batteries (4-pack),1,2.99,12/08/19 14:26,"241 Forest St, Dallas, TX 75001" +300203,AA Batteries (4-pack),1,3.84,12/29/19 19:45,"343 10th St, Dallas, TX 75001" +300204,Lightning Charging Cable,1,14.95,12/14/19 17:26,"458 11th St, San Francisco, CA 94016" +300205,Wired Headphones,2,11.99,12/17/19 20:59,"464 Ridge St, Atlanta, GA 30301" +300206,AA Batteries (4-pack),1,3.84,12/07/19 22:27,"998 8th St, Portland, OR 97035" +300207,Bose SoundSport Headphones,2,99.99,12/26/19 20:17,"244 River St, New York City, NY 10001" +300208,Bose SoundSport Headphones,1,99.99,12/20/19 11:32,"799 2nd St, San Francisco, CA 94016" +300209,USB-C Charging Cable,1,11.95,12/01/19 12:57,"842 Chestnut St, Boston, MA 02215" +300210,iPhone,1,700,12/02/19 10:59,"435 Lakeview St, Boston, MA 02215" +300211,20in Monitor,1,109.99,12/03/19 17:56,"315 Hill St, Portland, OR 97035" +300212,Bose SoundSport Headphones,1,99.99,12/10/19 20:53,"1 2nd St, Dallas, TX 75001" +300213,ThinkPad Laptop,1,999.99,12/05/19 19:48,"724 Lincoln St, Austin, TX 73301" +300214,USB-C Charging Cable,1,11.95,12/13/19 14:30,"804 Wilson St, Dallas, TX 75001" +300215,USB-C Charging Cable,1,11.95,12/26/19 19:06,"994 South St, Seattle, WA 98101" +300216,AA Batteries (4-pack),1,3.84,12/29/19 22:35,"420 Hill St, San Francisco, CA 94016" +300217,AAA Batteries (4-pack),1,2.99,12/28/19 06:56,"769 Washington St, Dallas, TX 75001" +300218,AAA Batteries (4-pack),1,2.99,12/30/19 10:24,"748 Forest St, Seattle, WA 98101" +300219,Macbook Pro Laptop,1,1700,12/21/19 16:30,"480 1st St, New York City, NY 10001" +300220,34in Ultrawide Monitor,1,379.99,12/28/19 17:06,"616 South St, Los Angeles, CA 90001" +300221,LG Dryer,1,600.0,12/25/19 03:15,"777 4th St, Dallas, TX 75001" +300222,AAA Batteries (4-pack),2,2.99,12/28/19 16:44,"428 13th St, Austin, TX 73301" +300223,USB-C Charging Cable,1,11.95,12/13/19 18:41,"30 Hickory St, San Francisco, CA 94016" +300224,AA Batteries (4-pack),1,3.84,12/06/19 23:48,"112 South St, Los Angeles, CA 90001" +300225,AA Batteries (4-pack),1,3.84,12/14/19 20:39,"95 6th St, Los Angeles, CA 90001" +300226,27in FHD Monitor,1,149.99,12/07/19 10:52,"611 Dogwood St, New York City, NY 10001" +300227,Bose SoundSport Headphones,1,99.99,12/21/19 20:21,"476 Elm St, San Francisco, CA 94016" +300228,AAA Batteries (4-pack),1,2.99,12/21/19 00:08,"633 South St, Seattle, WA 98101" +300229,Bose SoundSport Headphones,1,99.99,12/18/19 15:35,"398 Spruce St, Austin, TX 73301" +300230,20in Monitor,1,109.99,12/03/19 16:21,"84 7th St, Boston, MA 02215" +300231,USB-C Charging Cable,1,11.95,12/16/19 18:54,"742 13th St, San Francisco, CA 94016" +300231,AAA Batteries (4-pack),1,2.99,12/16/19 18:54,"742 13th St, San Francisco, CA 94016" +300232,Lightning Charging Cable,1,14.95,12/11/19 17:04,"287 4th St, San Francisco, CA 94016" +300233,AA Batteries (4-pack),1,3.84,12/09/19 16:23,"378 Cedar St, Boston, MA 02215" +300234,Bose SoundSport Headphones,1,99.99,12/30/19 18:12,"584 Johnson St, Boston, MA 02215" +300235,ThinkPad Laptop,1,999.99,12/23/19 10:20,"84 Hill St, San Francisco, CA 94016" +300236,Lightning Charging Cable,1,14.95,12/22/19 07:42,"685 Sunset St, Boston, MA 02215" +300237,AAA Batteries (4-pack),1,2.99,12/16/19 11:16,"494 5th St, San Francisco, CA 94016" +300238,34in Ultrawide Monitor,1,379.99,12/26/19 11:20,"278 Madison St, San Francisco, CA 94016" +300239,Apple Airpods Headphones,1,150,12/22/19 14:53,"686 Maple St, Los Angeles, CA 90001" +300240,Lightning Charging Cable,1,14.95,12/20/19 10:20,"731 6th St, New York City, NY 10001" +300241,Lightning Charging Cable,1,14.95,12/05/19 20:10,"668 Dogwood St, Dallas, TX 75001" +300242,Macbook Pro Laptop,1,1700,12/26/19 13:39,"251 Hill St, Portland, OR 97035" +300243,Apple Airpods Headphones,1,150,12/10/19 16:13,"849 Center St, Atlanta, GA 30301" +300244,Wired Headphones,1,11.99,12/26/19 14:38,"692 2nd St, San Francisco, CA 94016" +300245,AAA Batteries (4-pack),1,2.99,12/27/19 15:40,"339 14th St, Atlanta, GA 30301" +300246,Flatscreen TV,1,300,12/24/19 15:26,"222 Walnut St, Dallas, TX 75001" +300247,27in FHD Monitor,1,149.99,12/26/19 16:20,"660 12th St, Los Angeles, CA 90001" +300248,Vareebadd Phone,1,400,12/31/19 09:04,"224 Johnson St, Austin, TX 73301" +300249,AA Batteries (4-pack),2,3.84,12/02/19 12:53,"216 Walnut St, Boston, MA 02215" +300250,Macbook Pro Laptop,1,1700,12/12/19 13:17,"638 Hill St, San Francisco, CA 94016" +300251,34in Ultrawide Monitor,1,379.99,12/07/19 13:47,"131 Jefferson St, San Francisco, CA 94016" +300252,USB-C Charging Cable,1,11.95,12/09/19 08:38,"632 Cherry St, Los Angeles, CA 90001" +300253,AAA Batteries (4-pack),2,2.99,12/21/19 04:28,"518 5th St, Boston, MA 02215" +300254,27in 4K Gaming Monitor,1,389.99,12/22/19 13:38,"877 8th St, Los Angeles, CA 90001" +300255,20in Monitor,1,109.99,12/10/19 23:21,"514 West St, San Francisco, CA 94016" +300256,AAA Batteries (4-pack),2,2.99,12/21/19 20:12,"795 Cherry St, Los Angeles, CA 90001" +300257,AA Batteries (4-pack),1,3.84,12/27/19 20:57,"444 Johnson St, Portland, OR 97035" +300258,Apple Airpods Headphones,1,150,12/19/19 09:31,"185 2nd St, Los Angeles, CA 90001" +300259,Apple Airpods Headphones,1,150,12/18/19 21:58,"8 Main St, San Francisco, CA 94016" +300260,Apple Airpods Headphones,1,150,12/25/19 01:44,"943 Center St, New York City, NY 10001" +300261,Wired Headphones,1,11.99,12/14/19 19:36,"429 Spruce St, Boston, MA 02215" +300262,USB-C Charging Cable,1,11.95,12/05/19 13:48,"899 Willow St, Los Angeles, CA 90001" +300263,Lightning Charging Cable,1,14.95,12/16/19 12:38,"382 9th St, Los Angeles, CA 90001" +300264,Apple Airpods Headphones,1,150,12/19/19 13:44,"455 North St, Portland, OR 97035" +300265,Lightning Charging Cable,1,14.95,12/28/19 19:59,"511 Willow St, Boston, MA 02215" +300266,Lightning Charging Cable,1,14.95,12/09/19 20:27,"831 Johnson St, Los Angeles, CA 90001" +300267,Flatscreen TV,1,300,12/23/19 18:35,"478 14th St, Dallas, TX 75001" +300268,AAA Batteries (4-pack),1,2.99,12/21/19 12:09,"859 Highland St, Dallas, TX 75001" +300269,Bose SoundSport Headphones,1,99.99,12/12/19 04:34,"546 5th St, Austin, TX 73301" +300270,Macbook Pro Laptop,1,1700,12/22/19 10:41,"284 Sunset St, San Francisco, CA 94016" +300271,27in FHD Monitor,1,149.99,12/08/19 23:48,"333 Washington St, Austin, TX 73301" +300272,27in 4K Gaming Monitor,1,389.99,12/15/19 23:10,"804 Church St, San Francisco, CA 94016" +300273,Lightning Charging Cable,1,14.95,12/01/19 16:29,"381 Jackson St, San Francisco, CA 94016" +300274,ThinkPad Laptop,1,999.99,12/14/19 07:56,"326 1st St, Los Angeles, CA 90001" +300275,USB-C Charging Cable,1,11.95,12/15/19 09:55,"54 Chestnut St, San Francisco, CA 94016" +300276,Lightning Charging Cable,1,14.95,12/19/19 21:30,"30 Elm St, San Francisco, CA 94016" +300277,Wired Headphones,1,11.99,12/31/19 13:21,"592 North St, Boston, MA 02215" +300278,20in Monitor,1,109.99,12/12/19 19:52,"195 Park St, Atlanta, GA 30301" +300279,Macbook Pro Laptop,1,1700,12/27/19 17:48,"607 1st St, Los Angeles, CA 90001" +300280,AA Batteries (4-pack),1,3.84,12/18/19 23:59,"857 Adams St, New York City, NY 10001" +300281,Wired Headphones,1,11.99,12/07/19 23:16,"875 West St, San Francisco, CA 94016" +300282,Apple Airpods Headphones,1,150,12/12/19 15:11,"793 Highland St, San Francisco, CA 94016" +300283,Vareebadd Phone,1,400,12/27/19 11:43,"910 6th St, Los Angeles, CA 90001" +300284,Macbook Pro Laptop,1,1700,12/31/19 18:46,"485 Wilson St, Boston, MA 02215" +300285,27in 4K Gaming Monitor,1,389.99,12/02/19 19:18,"343 Main St, San Francisco, CA 94016" +300286,34in Ultrawide Monitor,1,379.99,12/08/19 13:28,"324 Forest St, Seattle, WA 98101" +300287,Apple Airpods Headphones,1,150,12/21/19 17:51,"62 Main St, Los Angeles, CA 90001" +300288,27in FHD Monitor,1,149.99,12/09/19 22:46,"278 Elm St, Seattle, WA 98101" +300289,Wired Headphones,1,11.99,12/14/19 11:16,"605 Pine St, Los Angeles, CA 90001" +300290,Vareebadd Phone,1,400,12/23/19 21:59,"202 Highland St, Los Angeles, CA 90001" +300291,AAA Batteries (4-pack),3,2.99,12/07/19 18:32,"350 4th St, San Francisco, CA 94016" +300292,Lightning Charging Cable,2,14.95,12/06/19 11:21,"358 2nd St, San Francisco, CA 94016" +300293,27in FHD Monitor,1,149.99,12/27/19 21:29,"680 Park St, Los Angeles, CA 90001" +300294,AA Batteries (4-pack),2,3.84,12/10/19 19:53,"876 11th St, San Francisco, CA 94016" +300295,Apple Airpods Headphones,1,150,12/31/19 19:23,"706 8th St, Seattle, WA 98101" +300296,AA Batteries (4-pack),1,3.84,12/24/19 10:16,"968 Willow St, San Francisco, CA 94016" +300297,34in Ultrawide Monitor,1,379.99,12/29/19 10:11,"205 Forest St, Portland, ME 04101" +300298,Apple Airpods Headphones,1,150,12/05/19 06:51,"696 9th St, Los Angeles, CA 90001" +300299,USB-C Charging Cable,1,11.95,12/25/19 11:41,"813 5th St, Seattle, WA 98101" +300300,Macbook Pro Laptop,1,1700,12/25/19 20:23,"266 Lake St, Seattle, WA 98101" +300301,Bose SoundSport Headphones,1,99.99,12/19/19 21:02,"252 Ridge St, New York City, NY 10001" +300302,AA Batteries (4-pack),1,3.84,12/29/19 16:06,"578 Maple St, Austin, TX 73301" +300303,Wired Headphones,1,11.99,12/13/19 16:59,"709 13th St, Boston, MA 02215" +300304,27in FHD Monitor,1,149.99,12/04/19 11:44,"255 Walnut St, San Francisco, CA 94016" +300305,USB-C Charging Cable,1,11.95,12/19/19 22:26,"386 8th St, Boston, MA 02215" +300305,Bose SoundSport Headphones,1,99.99,12/19/19 22:26,"386 8th St, Boston, MA 02215" +300306,AA Batteries (4-pack),1,3.84,12/17/19 12:04,"530 Maple St, Dallas, TX 75001" +300307,Flatscreen TV,2,300,12/24/19 21:12,"718 Elm St, Boston, MA 02215" +300308,27in FHD Monitor,1,149.99,12/10/19 12:04,"465 Madison St, Los Angeles, CA 90001" +300309,Lightning Charging Cable,1,14.95,12/22/19 09:59,"71 Dogwood St, Seattle, WA 98101" +300310,Wired Headphones,1,11.99,12/30/19 11:00,"550 12th St, Los Angeles, CA 90001" +300311,Apple Airpods Headphones,1,150,12/20/19 11:46,"755 Meadow St, Seattle, WA 98101" +300312,iPhone,1,700,12/30/19 19:02,"228 Willow St, Atlanta, GA 30301" +300313,Google Phone,1,600,12/22/19 01:35,"427 Hickory St, San Francisco, CA 94016" +300313,USB-C Charging Cable,1,11.95,12/22/19 01:35,"427 Hickory St, San Francisco, CA 94016" +300313,Bose SoundSport Headphones,1,99.99,12/22/19 01:35,"427 Hickory St, San Francisco, CA 94016" +300314,27in FHD Monitor,1,149.99,12/14/19 00:21,"911 River St, Portland, ME 04101" +300315,AAA Batteries (4-pack),1,2.99,12/05/19 22:53,"41 Dogwood St, Boston, MA 02215" +300316,Lightning Charging Cable,1,14.95,12/22/19 12:50,"64 6th St, San Francisco, CA 94016" +300316,ThinkPad Laptop,1,999.99,12/22/19 12:50,"64 6th St, San Francisco, CA 94016" +300317,Wired Headphones,1,11.99,12/31/19 16:13,"120 Center St, New York City, NY 10001" +300318,USB-C Charging Cable,1,11.95,12/02/19 21:44,"376 Willow St, Boston, MA 02215" +300319,27in FHD Monitor,1,149.99,12/27/19 10:48,"606 4th St, Seattle, WA 98101" +300320,USB-C Charging Cable,1,11.95,12/22/19 20:43,"826 Maple St, Seattle, WA 98101" +300321,34in Ultrawide Monitor,1,379.99,12/19/19 08:37,"885 North St, New York City, NY 10001" +300322,Wired Headphones,1,11.99,12/25/19 11:05,"564 8th St, New York City, NY 10001" +300323,AAA Batteries (4-pack),1,2.99,12/13/19 17:54,"401 9th St, Seattle, WA 98101" +300324,ThinkPad Laptop,1,999.99,12/09/19 12:37,"813 Wilson St, San Francisco, CA 94016" +300325,Lightning Charging Cable,2,14.95,12/26/19 10:16,"37 Jefferson St, Dallas, TX 75001" +300326,Bose SoundSport Headphones,1,99.99,12/23/19 10:16,"196 14th St, Atlanta, GA 30301" +300327,Apple Airpods Headphones,1,150,12/08/19 14:47,"438 Main St, New York City, NY 10001" +300328,Apple Airpods Headphones,1,150,12/17/19 13:43,"421 5th St, Portland, OR 97035" +300329,Apple Airpods Headphones,1,150,12/01/19 15:40,"730 4th St, Los Angeles, CA 90001" +300330,ThinkPad Laptop,1,999.99,12/04/19 08:54,"948 Maple St, San Francisco, CA 94016" +300330,20in Monitor,1,109.99,12/04/19 08:54,"948 Maple St, San Francisco, CA 94016" +300331,AAA Batteries (4-pack),1,2.99,12/08/19 18:27,"439 4th St, San Francisco, CA 94016" +300332,AA Batteries (4-pack),1,3.84,12/05/19 19:49,"596 12th St, Boston, MA 02215" +300333,Lightning Charging Cable,1,14.95,12/27/19 08:04,"643 Cherry St, Dallas, TX 75001" +300334,AAA Batteries (4-pack),1,2.99,12/14/19 13:00,"242 Willow St, Los Angeles, CA 90001" +300335,Apple Airpods Headphones,1,150,12/16/19 17:09,"811 1st St, Los Angeles, CA 90001" +300336,USB-C Charging Cable,1,11.95,12/29/19 11:39,"653 Jefferson St, Austin, TX 73301" +300337,27in 4K Gaming Monitor,1,389.99,12/30/19 19:58,"777 Meadow St, Los Angeles, CA 90001" +300338,USB-C Charging Cable,1,11.95,12/19/19 22:07,"554 Willow St, San Francisco, CA 94016" +300339,AA Batteries (4-pack),1,3.84,12/16/19 09:23,"135 8th St, Atlanta, GA 30301" +300340,Lightning Charging Cable,1,14.95,12/31/19 08:52,"220 Main St, Boston, MA 02215" +300341,Vareebadd Phone,1,400,12/14/19 22:11,"688 Washington St, Los Angeles, CA 90001" +300342,AAA Batteries (4-pack),1,2.99,12/17/19 22:01,"923 Meadow St, San Francisco, CA 94016" +300343,34in Ultrawide Monitor,1,379.99,12/22/19 16:20,"258 9th St, New York City, NY 10001" +300344,Vareebadd Phone,1,400,12/20/19 11:09,"440 Jefferson St, Austin, TX 73301" +300344,USB-C Charging Cable,1,11.95,12/20/19 11:09,"440 Jefferson St, Austin, TX 73301" +300345,Apple Airpods Headphones,1,150,12/26/19 13:28,"689 12th St, New York City, NY 10001" +300346,AAA Batteries (4-pack),1,2.99,12/04/19 15:24,"963 8th St, Boston, MA 02215" +300347,Wired Headphones,1,11.99,12/18/19 10:22,"243 Sunset St, Seattle, WA 98101" +300348,27in FHD Monitor,1,149.99,12/14/19 11:21,"271 Church St, San Francisco, CA 94016" +300349,USB-C Charging Cable,1,11.95,12/30/19 20:10,"127 Center St, Atlanta, GA 30301" +300350,Bose SoundSport Headphones,1,99.99,12/25/19 07:35,"944 8th St, New York City, NY 10001" +300351,Wired Headphones,1,11.99,12/29/19 09:51,"836 Hickory St, San Francisco, CA 94016" +300352,Lightning Charging Cable,1,14.95,12/09/19 08:54,"93 Meadow St, Los Angeles, CA 90001" +300353,USB-C Charging Cable,1,11.95,12/04/19 18:46,"98 Ridge St, New York City, NY 10001" +300354,Lightning Charging Cable,1,14.95,12/13/19 21:18,"922 Spruce St, San Francisco, CA 94016" +300355,27in 4K Gaming Monitor,1,389.99,12/13/19 22:35,"242 Chestnut St, San Francisco, CA 94016" +300356,Lightning Charging Cable,1,14.95,12/23/19 19:12,"852 Cherry St, New York City, NY 10001" +300357,USB-C Charging Cable,1,11.95,12/26/19 15:16,"74 8th St, Portland, ME 04101" +300358,Wired Headphones,1,11.99,12/20/19 20:29,"458 1st St, San Francisco, CA 94016" +300359,Bose SoundSport Headphones,1,99.99,12/12/19 23:47,"72 Ridge St, San Francisco, CA 94016" +300360,Macbook Pro Laptop,1,1700,12/15/19 12:36,"482 Lakeview St, New York City, NY 10001" +300361,AAA Batteries (4-pack),1,2.99,12/19/19 23:47,"991 Jefferson St, Austin, TX 73301" +300362,27in 4K Gaming Monitor,1,389.99,12/17/19 12:49,"324 Willow St, Austin, TX 73301" +300363,Lightning Charging Cable,2,14.95,12/15/19 17:27,"633 Willow St, Portland, OR 97035" +300364,Wired Headphones,1,11.99,12/09/19 20:10,"734 14th St, Portland, OR 97035" +300365,Apple Airpods Headphones,1,150,12/25/19 06:25,"505 River St, Dallas, TX 75001" +300366,34in Ultrawide Monitor,1,379.99,12/23/19 22:54,"441 11th St, San Francisco, CA 94016" +300367,AAA Batteries (4-pack),3,2.99,12/18/19 10:11,"925 8th St, Austin, TX 73301" +300368,Lightning Charging Cable,1,14.95,12/25/19 19:10,"868 Jackson St, Boston, MA 02215" +300369,AAA Batteries (4-pack),1,2.99,12/12/19 12:01,"320 Johnson St, New York City, NY 10001" +300370,AA Batteries (4-pack),2,3.84,12/06/19 10:45,"203 2nd St, Dallas, TX 75001" +300370,USB-C Charging Cable,1,11.95,12/06/19 10:45,"203 2nd St, Dallas, TX 75001" +300371,Bose SoundSport Headphones,1,99.99,12/29/19 07:15,"843 Lakeview St, Boston, MA 02215" +300372,AAA Batteries (4-pack),1,2.99,12/29/19 13:30,"153 Walnut St, Dallas, TX 75001" +300373,27in FHD Monitor,1,149.99,12/06/19 09:19,"557 Hill St, New York City, NY 10001" +300373,34in Ultrawide Monitor,1,379.99,12/06/19 09:19,"557 Hill St, New York City, NY 10001" +300374,Bose SoundSport Headphones,1,99.99,12/22/19 16:16,"317 Maple St, Austin, TX 73301" +300375,Google Phone,1,600,12/12/19 14:04,"28 Jefferson St, San Francisco, CA 94016" +300376,Wired Headphones,1,11.99,12/05/19 23:39,"752 Washington St, Portland, OR 97035" +300377,Lightning Charging Cable,1,14.95,12/13/19 19:33,"525 9th St, Los Angeles, CA 90001" +300378,Apple Airpods Headphones,1,150,12/06/19 07:25,"513 Madison St, San Francisco, CA 94016" +300379,AA Batteries (4-pack),2,3.84,12/14/19 11:49,"424 Cedar St, New York City, NY 10001" +300380,Macbook Pro Laptop,1,1700,12/11/19 18:49,"935 Spruce St, Seattle, WA 98101" +300381,Macbook Pro Laptop,1,1700,12/28/19 11:57,"457 Sunset St, New York City, NY 10001" +300382,27in FHD Monitor,1,149.99,12/28/19 15:02,"260 Pine St, Los Angeles, CA 90001" +300383,Macbook Pro Laptop,1,1700,12/02/19 11:13,"853 4th St, Austin, TX 73301" +300384,Apple Airpods Headphones,1,150,12/11/19 13:20,"277 Main St, Los Angeles, CA 90001" +300385,Apple Airpods Headphones,1,150,12/16/19 21:29,"560 West St, San Francisco, CA 94016" +300385,Bose SoundSport Headphones,1,99.99,12/16/19 21:29,"560 West St, San Francisco, CA 94016" +300386,Google Phone,1,600,12/08/19 20:59,"120 Highland St, Atlanta, GA 30301" +300386,USB-C Charging Cable,1,11.95,12/08/19 20:59,"120 Highland St, Atlanta, GA 30301" +300387,Bose SoundSport Headphones,1,99.99,12/29/19 17:31,"877 Dogwood St, Los Angeles, CA 90001" +300388,Apple Airpods Headphones,1,150,12/25/19 04:13,"464 Washington St, New York City, NY 10001" +300389,34in Ultrawide Monitor,1,379.99,12/09/19 11:21,"54 Johnson St, Dallas, TX 75001" +300390,Apple Airpods Headphones,1,150,12/29/19 19:06,"129 Lake St, Dallas, TX 75001" +300391,AA Batteries (4-pack),1,3.84,12/04/19 19:29,"761 Cherry St, Seattle, WA 98101" +300392,Wired Headphones,1,11.99,12/11/19 08:26,"616 12th St, San Francisco, CA 94016" +300393,Wired Headphones,1,11.99,12/05/19 09:38,"686 Pine St, Dallas, TX 75001" +300394,Wired Headphones,1,11.99,12/17/19 02:31,"29 Adams St, San Francisco, CA 94016" +300395,27in FHD Monitor,1,149.99,12/12/19 16:54,"465 West St, Atlanta, GA 30301" +300396,AAA Batteries (4-pack),1,2.99,12/17/19 16:04,"444 11th St, San Francisco, CA 94016" +300397,USB-C Charging Cable,1,11.95,12/21/19 09:44,"901 Spruce St, San Francisco, CA 94016" +300398,34in Ultrawide Monitor,1,379.99,12/16/19 18:20,"848 Johnson St, New York City, NY 10001" +300399,20in Monitor,1,109.99,12/31/19 12:58,"384 River St, San Francisco, CA 94016" +300400,20in Monitor,1,109.99,12/15/19 18:53,"62 Meadow St, Austin, TX 73301" +300401,Google Phone,1,600,12/23/19 11:54,"958 Jefferson St, Atlanta, GA 30301" +300402,USB-C Charging Cable,1,11.95,12/17/19 17:12,"442 Chestnut St, San Francisco, CA 94016" +300403,Flatscreen TV,1,300,12/08/19 18:31,"22 Johnson St, New York City, NY 10001" +300404,AAA Batteries (4-pack),1,2.99,12/22/19 19:58,"840 1st St, New York City, NY 10001" +300405,AAA Batteries (4-pack),1,2.99,12/29/19 09:39,"644 8th St, Portland, OR 97035" +300406,AAA Batteries (4-pack),1,2.99,12/30/19 18:59,"563 4th St, San Francisco, CA 94016" +300407,AA Batteries (4-pack),3,3.84,12/23/19 20:16,"310 Park St, Los Angeles, CA 90001" +300408,27in FHD Monitor,1,149.99,12/02/19 14:46,"330 South St, San Francisco, CA 94016" +300409,ThinkPad Laptop,1,999.99,12/08/19 23:04,"498 10th St, Los Angeles, CA 90001" +300410,Lightning Charging Cable,1,14.95,12/20/19 13:42,"609 Sunset St, Austin, TX 73301" +300411,iPhone,1,700,12/10/19 16:38,"222 Cedar St, San Francisco, CA 94016" +300412,LG Dryer,1,600.0,12/21/19 10:16,"328 West St, Austin, TX 73301" +300413,Flatscreen TV,1,300,12/24/19 23:38,"705 13th St, San Francisco, CA 94016" +300414,Wired Headphones,1,11.99,12/12/19 17:13,"473 5th St, Seattle, WA 98101" +300415,AA Batteries (4-pack),1,3.84,12/28/19 06:55,"552 1st St, Boston, MA 02215" +300416,Lightning Charging Cable,1,14.95,12/31/19 19:41,"745 12th St, Austin, TX 73301" +300417,USB-C Charging Cable,1,11.95,12/22/19 15:29,"806 River St, Atlanta, GA 30301" +300418,Bose SoundSport Headphones,1,99.99,12/13/19 19:24,"39 Forest St, San Francisco, CA 94016" +300419,iPhone,1,700,12/14/19 15:06,"542 10th St, Seattle, WA 98101" +300420,Macbook Pro Laptop,1,1700,12/05/19 17:13,"705 Main St, Los Angeles, CA 90001" +300421,AA Batteries (4-pack),1,3.84,12/17/19 12:43,"857 12th St, Austin, TX 73301" +300422,AAA Batteries (4-pack),3,2.99,12/05/19 18:45,"159 Jackson St, Atlanta, GA 30301" +300423,Wired Headphones,1,11.99,12/16/19 16:33,"208 Hill St, San Francisco, CA 94016" +300424,ThinkPad Laptop,1,999.99,12/20/19 20:52,"218 Forest St, Los Angeles, CA 90001" +300425,USB-C Charging Cable,1,11.95,12/24/19 03:07,"761 Pine St, New York City, NY 10001" +300426,Apple Airpods Headphones,1,150,12/20/19 14:19,"79 Lakeview St, Portland, OR 97035" +300427,20in Monitor,1,109.99,12/06/19 13:02,"210 11th St, New York City, NY 10001" +300428,Wired Headphones,1,11.99,12/13/19 17:10,"558 Elm St, Atlanta, GA 30301" +300429,Wired Headphones,1,11.99,12/22/19 12:30,"538 Chestnut St, New York City, NY 10001" +300430,USB-C Charging Cable,1,11.95,12/11/19 20:27,"54 Main St, Austin, TX 73301" +300431,USB-C Charging Cable,1,11.95,12/13/19 11:56,"704 Johnson St, Portland, OR 97035" +300432,Lightning Charging Cable,1,14.95,12/14/19 11:34,"579 Cherry St, San Francisco, CA 94016" +300433,AA Batteries (4-pack),1,3.84,12/21/19 20:25,"591 6th St, San Francisco, CA 94016" +300434,iPhone,1,700,12/28/19 17:17,"749 Center St, Atlanta, GA 30301" +300435,20in Monitor,1,109.99,12/19/19 16:35,"958 Cherry St, Los Angeles, CA 90001" +300436,AAA Batteries (4-pack),3,2.99,12/09/19 23:14,"623 Sunset St, Los Angeles, CA 90001" +300437,Lightning Charging Cable,1,14.95,12/31/19 00:16,"171 Church St, Portland, OR 97035" +300438,27in 4K Gaming Monitor,1,389.99,12/06/19 18:36,"829 Dogwood St, Atlanta, GA 30301" +300439,27in FHD Monitor,1,149.99,12/22/19 17:58,"479 Lake St, San Francisco, CA 94016" +300440,Wired Headphones,1,11.99,12/04/19 21:31,"477 Madison St, Los Angeles, CA 90001" +300441,AA Batteries (4-pack),3,3.84,12/26/19 09:21,"112 Hill St, Los Angeles, CA 90001" +300442,AA Batteries (4-pack),1,3.84,12/19/19 21:50,"551 Lincoln St, Austin, TX 73301" +300443,Bose SoundSport Headphones,1,99.99,12/20/19 14:54,"829 13th St, San Francisco, CA 94016" +300444,AA Batteries (4-pack),1,3.84,12/04/19 10:19,"162 Washington St, Atlanta, GA 30301" +300445,Lightning Charging Cable,1,14.95,12/11/19 14:55,"605 Main St, San Francisco, CA 94016" +300446,AA Batteries (4-pack),2,3.84,12/04/19 22:56,"362 Ridge St, New York City, NY 10001" +300447,34in Ultrawide Monitor,1,379.99,12/31/19 13:46,"36 Meadow St, Los Angeles, CA 90001" +300448,AAA Batteries (4-pack),2,2.99,12/15/19 09:28,"742 South St, Portland, ME 04101" +300449,27in 4K Gaming Monitor,1,389.99,12/01/19 17:13,"282 Jackson St, Seattle, WA 98101" +300450,Lightning Charging Cable,1,14.95,12/29/19 15:57,"915 4th St, New York City, NY 10001" +300451,Bose SoundSport Headphones,1,99.99,12/08/19 09:10,"821 Lake St, Los Angeles, CA 90001" +300452,Google Phone,1,600,12/20/19 14:35,"664 Elm St, Boston, MA 02215" +300452,USB-C Charging Cable,1,11.95,12/20/19 14:35,"664 Elm St, Boston, MA 02215" +300453,AA Batteries (4-pack),1,3.84,12/25/19 07:21,"11 Pine St, Seattle, WA 98101" +300454,Lightning Charging Cable,2,14.95,12/01/19 20:08,"744 Jefferson St, Portland, OR 97035" +300455,Wired Headphones,1,11.99,12/22/19 19:58,"713 Ridge St, Seattle, WA 98101" +300456,USB-C Charging Cable,1,11.95,12/16/19 05:05,"222 Forest St, Los Angeles, CA 90001" +300457,Apple Airpods Headphones,2,150,12/20/19 09:05,"877 Wilson St, San Francisco, CA 94016" +300458,AAA Batteries (4-pack),1,2.99,12/05/19 22:19,"887 Cherry St, San Francisco, CA 94016" +300459,Bose SoundSport Headphones,1,99.99,12/28/19 13:55,"170 Center St, Dallas, TX 75001" +300460,27in FHD Monitor,1,149.99,12/31/19 07:45,"460 West St, Los Angeles, CA 90001" +300461,Bose SoundSport Headphones,1,99.99,12/11/19 16:42,"118 12th St, Austin, TX 73301" +300462,Wired Headphones,1,11.99,12/07/19 15:05,"152 Hill St, Boston, MA 02215" +300463,Google Phone,1,600,12/16/19 22:05,"656 2nd St, Atlanta, GA 30301" +300464,34in Ultrawide Monitor,1,379.99,12/26/19 21:49,"998 11th St, Seattle, WA 98101" +300465,Google Phone,1,600,12/24/19 00:30,"722 Hill St, San Francisco, CA 94016" +300466,Bose SoundSport Headphones,1,99.99,12/07/19 19:00,"453 Main St, New York City, NY 10001" +300467,USB-C Charging Cable,1,11.95,12/16/19 11:06,"475 Chestnut St, Los Angeles, CA 90001" +300468,Bose SoundSport Headphones,1,99.99,12/01/19 17:54,"431 Lincoln St, Los Angeles, CA 90001" +300469,34in Ultrawide Monitor,1,379.99,12/29/19 22:27,"119 5th St, San Francisco, CA 94016" +300470,Bose SoundSport Headphones,1,99.99,12/05/19 18:30,"711 Dogwood St, Los Angeles, CA 90001" +300471,Lightning Charging Cable,1,14.95,12/12/19 13:30,"589 Cherry St, Portland, OR 97035" +300472,AA Batteries (4-pack),1,3.84,12/25/19 17:31,"47 Madison St, San Francisco, CA 94016" +300473,Apple Airpods Headphones,1,150,12/11/19 12:04,"562 Spruce St, Dallas, TX 75001" +300474,USB-C Charging Cable,1,11.95,12/28/19 20:07,"542 2nd St, San Francisco, CA 94016" +300475,Lightning Charging Cable,1,14.95,12/15/19 11:05,"416 West St, San Francisco, CA 94016" +300476,ThinkPad Laptop,1,999.99,12/12/19 02:57,"209 North St, Boston, MA 02215" +300477,Wired Headphones,1,11.99,12/26/19 12:36,"55 Madison St, Austin, TX 73301" +300478,AAA Batteries (4-pack),1,2.99,12/24/19 15:47,"720 Johnson St, Portland, OR 97035" +300479,USB-C Charging Cable,1,11.95,12/14/19 01:54,"298 Dogwood St, Dallas, TX 75001" +300480,Bose SoundSport Headphones,1,99.99,12/21/19 16:27,"376 Center St, Dallas, TX 75001" +300481,27in 4K Gaming Monitor,1,389.99,12/19/19 16:48,"251 Ridge St, San Francisco, CA 94016" +300482,Apple Airpods Headphones,1,150,12/10/19 12:19,"218 5th St, Atlanta, GA 30301" +300483,AAA Batteries (4-pack),1,2.99,12/13/19 00:40,"589 Park St, Atlanta, GA 30301" +300484,USB-C Charging Cable,1,11.95,12/21/19 11:55,"100 Walnut St, Portland, OR 97035" +300485,iPhone,1,700,12/21/19 12:43,"337 Hill St, San Francisco, CA 94016" +300486,AA Batteries (4-pack),1,3.84,12/23/19 20:09,"343 9th St, San Francisco, CA 94016" +300487,Apple Airpods Headphones,1,150,12/17/19 12:09,"726 Lakeview St, Los Angeles, CA 90001" +300488,Wired Headphones,2,11.99,12/23/19 14:54,"343 Jackson St, New York City, NY 10001" +300489,USB-C Charging Cable,1,11.95,12/12/19 17:17,"729 Pine St, New York City, NY 10001" +300490,AAA Batteries (4-pack),2,2.99,12/15/19 12:10,"53 Jefferson St, Atlanta, GA 30301" +300491,Bose SoundSport Headphones,1,99.99,12/02/19 17:40,"9 Maple St, San Francisco, CA 94016" +300492,Lightning Charging Cable,1,14.95,12/01/19 10:40,"862 Forest St, Austin, TX 73301" +,,,,, +300493,20in Monitor,1,109.99,12/19/19 21:38,"869 Dogwood St, Seattle, WA 98101" +300494,iPhone,1,700,12/08/19 18:52,"118 5th St, New York City, NY 10001" +300494,Wired Headphones,1,11.99,12/08/19 18:52,"118 5th St, New York City, NY 10001" +300495,USB-C Charging Cable,1,11.95,12/01/19 15:17,"379 11th St, Los Angeles, CA 90001" +300496,20in Monitor,1,109.99,12/24/19 20:24,"947 Main St, Los Angeles, CA 90001" +300497,iPhone,1,700,12/07/19 20:22,"329 South St, Boston, MA 02215" +300498,34in Ultrawide Monitor,1,379.99,12/26/19 10:50,"198 2nd St, Los Angeles, CA 90001" +300499,27in 4K Gaming Monitor,1,389.99,12/25/19 12:30,"713 Jefferson St, Seattle, WA 98101" +300500,Google Phone,1,600,12/27/19 11:34,"675 Elm St, Portland, OR 97035" +300501,Bose SoundSport Headphones,1,99.99,12/20/19 16:20,"747 North St, New York City, NY 10001" +300502,27in FHD Monitor,1,149.99,12/25/19 22:03,"113 Center St, Los Angeles, CA 90001" +300503,27in FHD Monitor,1,149.99,12/27/19 22:13,"117 2nd St, Los Angeles, CA 90001" +300504,AA Batteries (4-pack),2,3.84,12/18/19 16:52,"70 Highland St, Portland, OR 97035" +300505,USB-C Charging Cable,1,11.95,12/03/19 00:44,"296 Pine St, Portland, OR 97035" +300506,20in Monitor,1,109.99,12/16/19 17:42,"246 River St, Los Angeles, CA 90001" +300507,iPhone,1,700,12/28/19 03:53,"184 4th St, San Francisco, CA 94016" +300508,AAA Batteries (4-pack),2,2.99,12/22/19 18:23,"783 Madison St, Seattle, WA 98101" +300509,20in Monitor,1,109.99,12/16/19 12:29,"598 Maple St, San Francisco, CA 94016" +300510,34in Ultrawide Monitor,1,379.99,12/23/19 13:26,"199 Center St, New York City, NY 10001" +300511,34in Ultrawide Monitor,1,379.99,12/07/19 13:52,"310 5th St, Dallas, TX 75001" +300512,iPhone,1,700,12/07/19 14:16,"919 Cherry St, San Francisco, CA 94016" +300513,AA Batteries (4-pack),1,3.84,12/30/19 19:35,"365 Jackson St, Seattle, WA 98101" +300514,Lightning Charging Cable,1,14.95,12/22/19 08:09,"473 Washington St, Dallas, TX 75001" +300515,AA Batteries (4-pack),2,3.84,12/04/19 17:53,"819 7th St, Austin, TX 73301" +300516,ThinkPad Laptop,1,999.99,12/26/19 23:48,"857 Lake St, Atlanta, GA 30301" +300517,27in FHD Monitor,1,149.99,12/07/19 23:21,"811 Highland St, Atlanta, GA 30301" +300518,27in FHD Monitor,1,149.99,12/11/19 14:41,"126 Johnson St, Los Angeles, CA 90001" +300519,Bose SoundSport Headphones,1,99.99,12/07/19 01:18,"352 Park St, Dallas, TX 75001" +300520,27in 4K Gaming Monitor,1,389.99,12/15/19 20:37,"238 11th St, San Francisco, CA 94016" +300521,AAA Batteries (4-pack),2,2.99,12/23/19 20:29,"918 Center St, Los Angeles, CA 90001" +300522,Lightning Charging Cable,1,14.95,12/29/19 12:52,"378 5th St, San Francisco, CA 94016" +300523,USB-C Charging Cable,1,11.95,12/02/19 17:57,"724 Elm St, San Francisco, CA 94016" +300524,27in FHD Monitor,1,149.99,12/05/19 18:55,"803 River St, Seattle, WA 98101" +300525,USB-C Charging Cable,1,11.95,12/30/19 07:35,"640 Lakeview St, Portland, OR 97035" +300526,Wired Headphones,1,11.99,12/19/19 12:51,"875 Jackson St, Boston, MA 02215" +300527,AA Batteries (4-pack),2,3.84,12/12/19 11:41,"485 Wilson St, San Francisco, CA 94016" +300528,20in Monitor,1,109.99,12/18/19 23:55,"655 Pine St, San Francisco, CA 94016" +300529,iPhone,1,700,12/20/19 20:56,"951 Ridge St, Dallas, TX 75001" +300529,Lightning Charging Cable,1,14.95,12/20/19 20:56,"951 Ridge St, Dallas, TX 75001" +300529,Wired Headphones,1,11.99,12/20/19 20:56,"951 Ridge St, Dallas, TX 75001" +300530,Apple Airpods Headphones,1,150,12/30/19 13:15,"941 Lake St, San Francisco, CA 94016" +300531,USB-C Charging Cable,1,11.95,12/10/19 19:48,"289 11th St, San Francisco, CA 94016" +300532,Bose SoundSport Headphones,1,99.99,12/31/19 12:55,"757 6th St, San Francisco, CA 94016" +300533,Lightning Charging Cable,1,14.95,12/21/19 00:02,"901 Elm St, Atlanta, GA 30301" +300534,27in FHD Monitor,1,149.99,12/17/19 23:53,"486 Lincoln St, Portland, ME 04101" +300535,AA Batteries (4-pack),2,3.84,12/03/19 14:11,"740 Willow St, San Francisco, CA 94016" +300536,USB-C Charging Cable,1,11.95,12/27/19 17:23,"564 14th St, New York City, NY 10001" +300537,Apple Airpods Headphones,1,150,12/06/19 16:32,"518 Johnson St, Los Angeles, CA 90001" +300538,Flatscreen TV,1,300,12/15/19 11:10,"968 Adams St, Los Angeles, CA 90001" +300539,Vareebadd Phone,1,400,12/02/19 13:22,"196 Center St, Portland, ME 04101" +300540,Lightning Charging Cable,1,14.95,12/09/19 20:22,"920 13th St, Dallas, TX 75001" +300541,Lightning Charging Cable,1,14.95,12/15/19 17:10,"445 Pine St, San Francisco, CA 94016" +300542,Wired Headphones,1,11.99,12/02/19 19:04,"232 Lake St, New York City, NY 10001" +300543,USB-C Charging Cable,1,11.95,12/27/19 08:36,"995 6th St, Los Angeles, CA 90001" +300544,AAA Batteries (4-pack),2,2.99,12/20/19 23:38,"565 Park St, San Francisco, CA 94016" +300545,Apple Airpods Headphones,1,150,12/19/19 18:27,"470 Madison St, Seattle, WA 98101" +300546,AA Batteries (4-pack),1,3.84,12/28/19 12:37,"207 North St, Dallas, TX 75001" +300547,Lightning Charging Cable,1,14.95,12/01/19 08:59,"439 Jackson St, Boston, MA 02215" +300548,AA Batteries (4-pack),2,3.84,12/29/19 11:56,"612 Ridge St, Boston, MA 02215" +300549,AAA Batteries (4-pack),1,2.99,12/01/19 21:04,"113 2nd St, Seattle, WA 98101" +300550,AAA Batteries (4-pack),1,2.99,12/25/19 19:53,"333 Willow St, San Francisco, CA 94016" +300551,AA Batteries (4-pack),1,3.84,12/23/19 12:17,"451 13th St, San Francisco, CA 94016" +300551,Flatscreen TV,1,300,12/23/19 12:17,"451 13th St, San Francisco, CA 94016" +300552,Wired Headphones,1,11.99,12/23/19 07:52,"725 Forest St, Los Angeles, CA 90001" +300553,AAA Batteries (4-pack),1,2.99,12/30/19 13:39,"29 Johnson St, Atlanta, GA 30301" +300554,Lightning Charging Cable,1,14.95,12/29/19 19:45,"969 8th St, Seattle, WA 98101" +300555,USB-C Charging Cable,1,11.95,12/24/19 21:28,"733 Cedar St, Boston, MA 02215" +300556,AAA Batteries (4-pack),2,2.99,12/15/19 12:38,"548 Cherry St, Los Angeles, CA 90001" +300557,AAA Batteries (4-pack),2,2.99,12/24/19 16:08,"604 North St, Atlanta, GA 30301" +300558,AAA Batteries (4-pack),1,2.99,12/28/19 00:03,"829 2nd St, San Francisco, CA 94016" +300559,Macbook Pro Laptop,1,1700,12/09/19 15:15,"982 Lake St, New York City, NY 10001" +300560,iPhone,1,700,12/27/19 18:49,"342 Main St, San Francisco, CA 94016" +300561,Apple Airpods Headphones,1,150,12/04/19 11:24,"838 Park St, Dallas, TX 75001" +300562,Wired Headphones,1,11.99,12/20/19 20:23,"775 Forest St, San Francisco, CA 94016" +300563,AA Batteries (4-pack),2,3.84,12/11/19 10:01,"168 Center St, Los Angeles, CA 90001" +300564,AAA Batteries (4-pack),1,2.99,12/12/19 14:10,"884 Jefferson St, San Francisco, CA 94016" +300565,27in 4K Gaming Monitor,1,389.99,12/18/19 12:05,"159 Johnson St, Dallas, TX 75001" +300566,USB-C Charging Cable,1,11.95,12/17/19 18:40,"611 Cherry St, Boston, MA 02215" +300567,Lightning Charging Cable,1,14.95,12/07/19 16:41,"918 Center St, Boston, MA 02215" +300568,AAA Batteries (4-pack),2,2.99,12/17/19 20:41,"735 Hickory St, San Francisco, CA 94016" +300569,Apple Airpods Headphones,1,150,12/15/19 16:52,"499 Park St, Dallas, TX 75001" +300570,AAA Batteries (4-pack),1,2.99,12/16/19 12:03,"565 Wilson St, Los Angeles, CA 90001" +300571,Flatscreen TV,1,300,12/27/19 18:08,"288 Center St, Seattle, WA 98101" +300572,Apple Airpods Headphones,1,150,12/24/19 10:17,"439 Willow St, San Francisco, CA 94016" +300573,Wired Headphones,1,11.99,12/23/19 14:08,"935 Chestnut St, Los Angeles, CA 90001" +300574,AA Batteries (4-pack),1,3.84,12/28/19 20:16,"911 Lake St, New York City, NY 10001" +300574,AA Batteries (4-pack),1,3.84,12/28/19 20:16,"911 Lake St, New York City, NY 10001" +300575,ThinkPad Laptop,1,999.99,12/05/19 10:51,"702 Dogwood St, Portland, OR 97035" +300576,Lightning Charging Cable,1,14.95,12/09/19 10:20,"680 Jackson St, Atlanta, GA 30301" +300577,Bose SoundSport Headphones,1,99.99,12/21/19 23:36,"934 12th St, Los Angeles, CA 90001" +300578,Lightning Charging Cable,1,14.95,12/27/19 06:11,"600 Adams St, New York City, NY 10001" +300579,AA Batteries (4-pack),1,3.84,12/03/19 13:47,"733 Washington St, New York City, NY 10001" +300580,ThinkPad Laptop,1,999.99,12/23/19 21:32,"683 14th St, Los Angeles, CA 90001" +300581,Lightning Charging Cable,1,14.95,12/03/19 06:28,"156 Elm St, Seattle, WA 98101" +300582,AA Batteries (4-pack),1,3.84,12/03/19 15:22,"879 Center St, New York City, NY 10001" +300583,27in 4K Gaming Monitor,1,389.99,12/13/19 00:00,"962 7th St, San Francisco, CA 94016" +300584,27in FHD Monitor,1,149.99,12/28/19 16:35,"147 Washington St, Los Angeles, CA 90001" +300585,USB-C Charging Cable,1,11.95,12/29/19 13:47,"592 Chestnut St, New York City, NY 10001" +300586,AAA Batteries (4-pack),1,2.99,12/01/19 12:31,"845 6th St, Boston, MA 02215" +300587,34in Ultrawide Monitor,1,379.99,12/17/19 08:27,"38 Cedar St, Los Angeles, CA 90001" +300588,AAA Batteries (4-pack),1,2.99,12/17/19 15:17,"478 Jackson St, Portland, OR 97035" +300589,Apple Airpods Headphones,1,150,12/12/19 15:45,"207 Madison St, Boston, MA 02215" +300589,Wired Headphones,1,11.99,12/12/19 15:45,"207 Madison St, Boston, MA 02215" +300590,iPhone,1,700,12/24/19 05:20,"94 Meadow St, San Francisco, CA 94016" +300591,iPhone,1,700,12/25/19 19:28,"391 1st St, San Francisco, CA 94016" +300591,Apple Airpods Headphones,1,150,12/25/19 19:28,"391 1st St, San Francisco, CA 94016" +300592,AAA Batteries (4-pack),1,2.99,12/25/19 11:06,"321 Meadow St, San Francisco, CA 94016" +300593,Apple Airpods Headphones,1,150,12/27/19 22:03,"167 13th St, New York City, NY 10001" +300594,AA Batteries (4-pack),1,3.84,12/18/19 21:59,"694 Willow St, Seattle, WA 98101" +300594,Lightning Charging Cable,1,14.95,12/18/19 21:59,"694 Willow St, Seattle, WA 98101" +300595,Apple Airpods Headphones,1,150,12/17/19 17:46,"407 Lake St, Los Angeles, CA 90001" +300595,34in Ultrawide Monitor,1,379.99,12/17/19 17:46,"407 Lake St, Los Angeles, CA 90001" +300596,Lightning Charging Cable,1,14.95,12/10/19 09:19,"419 Jefferson St, San Francisco, CA 94016" +300597,Lightning Charging Cable,1,14.95,12/08/19 15:33,"761 Walnut St, New York City, NY 10001" +300598,Lightning Charging Cable,2,14.95,12/20/19 16:45,"518 Maple St, Seattle, WA 98101" +300599,Wired Headphones,1,11.99,12/16/19 14:02,"881 Cedar St, San Francisco, CA 94016" +300600,27in 4K Gaming Monitor,1,389.99,12/08/19 00:09,"333 Lake St, Seattle, WA 98101" +300601,27in FHD Monitor,1,149.99,12/01/19 14:21,"532 Wilson St, Boston, MA 02215" +300602,USB-C Charging Cable,1,11.95,12/21/19 20:25,"16 Cedar St, Austin, TX 73301" +300603,Vareebadd Phone,1,400,12/06/19 21:28,"247 Pine St, San Francisco, CA 94016" +300603,USB-C Charging Cable,1,11.95,12/06/19 21:28,"247 Pine St, San Francisco, CA 94016" +300604,AAA Batteries (4-pack),1,2.99,12/05/19 18:42,"141 Washington St, New York City, NY 10001" +300605,Apple Airpods Headphones,1,150,12/04/19 19:06,"418 Adams St, San Francisco, CA 94016" +300606,Bose SoundSport Headphones,1,99.99,12/15/19 09:00,"190 Adams St, Los Angeles, CA 90001" +300607,USB-C Charging Cable,1,11.95,12/25/19 16:33,"294 North St, Dallas, TX 75001" +300608,AA Batteries (4-pack),1,3.84,12/18/19 17:20,"464 6th St, San Francisco, CA 94016" +300609,Apple Airpods Headphones,1,150,12/31/19 06:36,"651 Main St, Los Angeles, CA 90001" +300610,Wired Headphones,1,11.99,12/24/19 20:06,"533 West St, New York City, NY 10001" +300611,Macbook Pro Laptop,1,1700,12/14/19 14:59,"304 2nd St, Los Angeles, CA 90001" +300612,AA Batteries (4-pack),1,3.84,12/11/19 17:59,"222 12th St, Dallas, TX 75001" +300613,Apple Airpods Headphones,1,150,12/27/19 16:56,"266 Willow St, Boston, MA 02215" +300614,Vareebadd Phone,1,400,12/07/19 12:55,"921 Highland St, New York City, NY 10001" +300615,iPhone,1,700,12/04/19 22:38,"564 West St, Los Angeles, CA 90001" +300616,Flatscreen TV,1,300,12/22/19 15:48,"519 Center St, New York City, NY 10001" +,,,,, +300617,Wired Headphones,2,11.99,12/12/19 18:46,"693 Lakeview St, Atlanta, GA 30301" +300618,Lightning Charging Cable,1,14.95,12/15/19 08:18,"840 Church St, Dallas, TX 75001" +300619,Wired Headphones,1,11.99,12/05/19 19:03,"769 River St, San Francisco, CA 94016" +300620,20in Monitor,1,109.99,12/11/19 15:55,"949 4th St, San Francisco, CA 94016" +300621,Google Phone,1,600,12/11/19 09:34,"128 Walnut St, Boston, MA 02215" +300622,Bose SoundSport Headphones,1,99.99,12/07/19 08:48,"462 Spruce St, San Francisco, CA 94016" +300623,Lightning Charging Cable,1,14.95,12/20/19 17:39,"203 Main St, Seattle, WA 98101" +300623,Google Phone,1,600,12/20/19 17:39,"203 Main St, Seattle, WA 98101" +300624,Flatscreen TV,1,300,12/06/19 18:47,"495 Park St, Austin, TX 73301" +300625,AAA Batteries (4-pack),1,2.99,12/24/19 09:11,"103 Jackson St, Austin, TX 73301" +300626,27in 4K Gaming Monitor,1,389.99,12/22/19 20:41,"39 Jefferson St, Los Angeles, CA 90001" +300627,USB-C Charging Cable,1,11.95,12/09/19 11:40,"629 5th St, San Francisco, CA 94016" +300628,Wired Headphones,2,11.99,12/18/19 23:32,"211 Hickory St, Boston, MA 02215" +300629,iPhone,1,700,12/05/19 21:08,"182 Cedar St, Portland, ME 04101" +300630,Bose SoundSport Headphones,1,99.99,12/13/19 11:46,"502 West St, Los Angeles, CA 90001" +300631,Bose SoundSport Headphones,1,99.99,12/11/19 08:17,"572 Jackson St, New York City, NY 10001" +300632,Vareebadd Phone,1,400,12/12/19 17:25,"77 Church St, New York City, NY 10001" +300633,Wired Headphones,1,11.99,12/15/19 15:42,"685 9th St, Boston, MA 02215" +300634,27in 4K Gaming Monitor,1,389.99,12/19/19 16:04,"821 7th St, New York City, NY 10001" +300635,USB-C Charging Cable,1,11.95,12/14/19 10:01,"395 Johnson St, Seattle, WA 98101" +300636,34in Ultrawide Monitor,1,379.99,12/04/19 00:02,"65 Lake St, Atlanta, GA 30301" +300637,Apple Airpods Headphones,1,150,12/21/19 05:03,"922 14th St, San Francisco, CA 94016" +300638,34in Ultrawide Monitor,1,379.99,12/17/19 11:09,"24 Forest St, Dallas, TX 75001" +300639,USB-C Charging Cable,1,11.95,12/15/19 20:45,"11 Wilson St, Dallas, TX 75001" +300640,Bose SoundSport Headphones,1,99.99,12/22/19 17:44,"440 Maple St, Los Angeles, CA 90001" +300641,USB-C Charging Cable,1,11.95,12/25/19 19:01,"819 Forest St, Los Angeles, CA 90001" +300642,Lightning Charging Cable,1,14.95,12/22/19 10:48,"296 South St, Atlanta, GA 30301" +300642,Apple Airpods Headphones,1,150,12/22/19 10:48,"296 South St, Atlanta, GA 30301" +300643,AA Batteries (4-pack),1,3.84,12/30/19 08:12,"497 7th St, Boston, MA 02215" +300644,Macbook Pro Laptop,1,1700,12/22/19 13:37,"167 Pine St, Boston, MA 02215" +300645,Bose SoundSport Headphones,1,99.99,12/22/19 19:36,"162 Washington St, Seattle, WA 98101" +300646,AA Batteries (4-pack),1,3.84,12/31/19 06:56,"335 Hill St, Los Angeles, CA 90001" +300647,USB-C Charging Cable,1,11.95,12/23/19 08:57,"514 1st St, Portland, ME 04101" +300648,27in FHD Monitor,1,149.99,12/08/19 18:37,"603 Johnson St, Portland, OR 97035" +300649,ThinkPad Laptop,1,999.99,12/08/19 21:26,"954 13th St, Portland, OR 97035" +300650,Apple Airpods Headphones,1,150,12/20/19 08:44,"263 South St, New York City, NY 10001" +300651,AA Batteries (4-pack),1,3.84,12/02/19 15:52,"757 Forest St, New York City, NY 10001" +300652,Apple Airpods Headphones,1,150,12/12/19 15:28,"677 Jefferson St, Seattle, WA 98101" +300653,Bose SoundSport Headphones,1,99.99,12/25/19 21:05,"331 Forest St, San Francisco, CA 94016" +300654,Flatscreen TV,1,300,12/30/19 15:45,"812 Jefferson St, Austin, TX 73301" +300655,Vareebadd Phone,1,400,12/23/19 10:14,"247 Elm St, San Francisco, CA 94016" +300656,Wired Headphones,1,11.99,12/07/19 11:54,"536 Hill St, Boston, MA 02215" +300657,AAA Batteries (4-pack),1,2.99,12/23/19 18:18,"787 8th St, Dallas, TX 75001" +300657,Macbook Pro Laptop,1,1700,12/23/19 18:18,"787 8th St, Dallas, TX 75001" +300658,Apple Airpods Headphones,1,150,12/17/19 19:09,"800 Forest St, San Francisco, CA 94016" +300659,AA Batteries (4-pack),1,3.84,12/07/19 09:14,"815 Cherry St, San Francisco, CA 94016" +300660,USB-C Charging Cable,1,11.95,12/30/19 19:40,"43 Johnson St, Los Angeles, CA 90001" +300661,Google Phone,1,600,12/17/19 08:04,"698 9th St, San Francisco, CA 94016" +300662,Wired Headphones,1,11.99,12/05/19 19:19,"180 8th St, San Francisco, CA 94016" +300663,20in Monitor,1,109.99,12/05/19 18:47,"450 West St, Dallas, TX 75001" +300664,Vareebadd Phone,1,400,12/03/19 19:45,"790 Chestnut St, Los Angeles, CA 90001" +300665,USB-C Charging Cable,1,11.95,12/16/19 08:26,"738 Lincoln St, Portland, OR 97035" +300666,AA Batteries (4-pack),1,3.84,12/02/19 10:13,"58 Lincoln St, Dallas, TX 75001" +300667,Apple Airpods Headphones,1,150,12/14/19 18:36,"717 Lincoln St, New York City, NY 10001" +300667,AA Batteries (4-pack),3,3.84,12/14/19 18:36,"717 Lincoln St, New York City, NY 10001" +300668,USB-C Charging Cable,1,11.95,12/20/19 20:42,"764 Spruce St, New York City, NY 10001" +300669,Bose SoundSport Headphones,1,99.99,12/23/19 08:02,"980 Forest St, San Francisco, CA 94016" +300670,Bose SoundSport Headphones,1,99.99,12/14/19 22:22,"465 Madison St, Dallas, TX 75001" +300670,LG Washing Machine,1,600.0,12/14/19 22:22,"465 Madison St, Dallas, TX 75001" +300671,Wired Headphones,1,11.99,12/26/19 12:12,"132 Maple St, San Francisco, CA 94016" +300672,Apple Airpods Headphones,1,150,12/22/19 10:28,"330 Lake St, San Francisco, CA 94016" +300673,Lightning Charging Cable,1,14.95,12/27/19 19:34,"451 1st St, San Francisco, CA 94016" +300674,LG Washing Machine,1,600.0,12/14/19 11:34,"184 Forest St, San Francisco, CA 94016" +300675,AAA Batteries (4-pack),1,2.99,12/04/19 11:04,"375 Jefferson St, New York City, NY 10001" +300676,Vareebadd Phone,1,400,12/08/19 10:15,"145 North St, Portland, OR 97035" +300677,Wired Headphones,1,11.99,12/10/19 22:44,"955 Main St, Dallas, TX 75001" +300678,Lightning Charging Cable,1,14.95,12/20/19 21:30,"882 Cherry St, San Francisco, CA 94016" +300679,Wired Headphones,1,11.99,12/20/19 16:14,"609 Hickory St, New York City, NY 10001" +300680,AAA Batteries (4-pack),1,2.99,12/27/19 21:39,"397 Elm St, Atlanta, GA 30301" +300681,Flatscreen TV,1,300,12/18/19 17:06,"59 Ridge St, San Francisco, CA 94016" +300682,27in 4K Gaming Monitor,1,389.99,12/24/19 21:28,"751 10th St, Dallas, TX 75001" +300683,AA Batteries (4-pack),3,3.84,12/11/19 05:47,"486 Washington St, Austin, TX 73301" +300684,27in FHD Monitor,1,149.99,12/20/19 20:42,"933 Cedar St, San Francisco, CA 94016" +300685,Flatscreen TV,1,300,12/26/19 19:22,"184 10th St, San Francisco, CA 94016" +300686,Macbook Pro Laptop,1,1700,12/27/19 11:52,"96 Sunset St, Dallas, TX 75001" +300687,27in 4K Gaming Monitor,1,389.99,12/17/19 14:41,"284 Willow St, San Francisco, CA 94016" +300688,Bose SoundSport Headphones,1,99.99,12/04/19 16:10,"857 Spruce St, San Francisco, CA 94016" +300689,Flatscreen TV,1,300,12/11/19 10:35,"808 Elm St, Los Angeles, CA 90001" +300690,Lightning Charging Cable,1,14.95,12/28/19 17:34,"296 Jackson St, Austin, TX 73301" +300691,Lightning Charging Cable,1,14.95,12/23/19 14:23,"359 Lakeview St, Dallas, TX 75001" +300692,Bose SoundSport Headphones,1,99.99,12/24/19 15:37,"233 Madison St, New York City, NY 10001" +300693,AA Batteries (4-pack),1,3.84,12/27/19 10:58,"399 Elm St, New York City, NY 10001" +300694,Lightning Charging Cable,1,14.95,12/25/19 10:18,"720 5th St, Boston, MA 02215" +300695,USB-C Charging Cable,1,11.95,12/19/19 17:10,"145 Ridge St, New York City, NY 10001" +300696,AAA Batteries (4-pack),1,2.99,12/13/19 16:59,"417 Adams St, Boston, MA 02215" +300697,Lightning Charging Cable,1,14.95,12/08/19 14:01,"182 14th St, Los Angeles, CA 90001" +300698,AA Batteries (4-pack),1,3.84,12/09/19 12:05,"71 Elm St, New York City, NY 10001" +300699,Lightning Charging Cable,1,14.95,12/10/19 21:18,"544 Hill St, Los Angeles, CA 90001" +300700,AA Batteries (4-pack),1,3.84,12/11/19 16:38,"40 Spruce St, Seattle, WA 98101" +300701,Apple Airpods Headphones,1,150,12/09/19 12:10,"932 Walnut St, Los Angeles, CA 90001" +300702,27in FHD Monitor,1,149.99,12/01/19 20:28,"821 Madison St, Dallas, TX 75001" +300703,Apple Airpods Headphones,1,150,12/18/19 10:03,"810 Ridge St, San Francisco, CA 94016" +300704,Apple Airpods Headphones,1,150,12/30/19 17:45,"619 Lincoln St, New York City, NY 10001" +300704,Wired Headphones,1,11.99,12/30/19 17:45,"619 Lincoln St, New York City, NY 10001" +300705,27in FHD Monitor,1,149.99,12/28/19 23:59,"829 Meadow St, Austin, TX 73301" +300706,Bose SoundSport Headphones,1,99.99,12/09/19 14:49,"360 Johnson St, San Francisco, CA 94016" +300707,Bose SoundSport Headphones,1,99.99,12/21/19 12:03,"775 Elm St, Los Angeles, CA 90001" +300708,27in 4K Gaming Monitor,1,389.99,12/03/19 13:11,"517 North St, Los Angeles, CA 90001" +300709,USB-C Charging Cable,3,11.95,12/14/19 23:05,"808 North St, Dallas, TX 75001" +300710,Lightning Charging Cable,1,14.95,12/08/19 10:55,"717 Cherry St, San Francisco, CA 94016" +300711,Lightning Charging Cable,1,14.95,12/29/19 18:33,"979 Adams St, San Francisco, CA 94016" +300712,Lightning Charging Cable,1,14.95,12/30/19 11:29,"365 Jackson St, Los Angeles, CA 90001" +300713,USB-C Charging Cable,1,11.95,12/04/19 23:56,"94 Adams St, Los Angeles, CA 90001" +300714,USB-C Charging Cable,1,11.95,12/03/19 11:06,"374 Lakeview St, Austin, TX 73301" +300715,AA Batteries (4-pack),1,3.84,12/06/19 17:14,"364 Jackson St, San Francisco, CA 94016" +300716,Vareebadd Phone,1,400,12/23/19 11:06,"251 Cedar St, Los Angeles, CA 90001" +300717,Bose SoundSport Headphones,1,99.99,12/17/19 12:59,"919 Hill St, San Francisco, CA 94016" +300718,Wired Headphones,1,11.99,12/07/19 15:28,"413 1st St, Los Angeles, CA 90001" +300719,AAA Batteries (4-pack),1,2.99,12/10/19 19:26,"557 Wilson St, San Francisco, CA 94016" +300720,Bose SoundSport Headphones,1,99.99,12/14/19 13:55,"157 Lincoln St, Portland, OR 97035" +300721,AA Batteries (4-pack),1,3.84,12/04/19 09:08,"119 Sunset St, New York City, NY 10001" +300722,Wired Headphones,1,11.99,12/20/19 10:51,"51 Church St, Dallas, TX 75001" +300723,Macbook Pro Laptop,1,1700,12/31/19 16:18,"52 Walnut St, San Francisco, CA 94016" +300724,27in 4K Gaming Monitor,1,389.99,12/02/19 01:28,"778 4th St, San Francisco, CA 94016" +300725,Lightning Charging Cable,1,14.95,01/01/20 00:27,"480 12th St, San Francisco, CA 94016" +300726,AAA Batteries (4-pack),1,2.99,12/09/19 18:54,"791 Ridge St, Boston, MA 02215" +300727,Lightning Charging Cable,1,14.95,12/23/19 23:20,"981 Jefferson St, Seattle, WA 98101" +300728,Lightning Charging Cable,1,14.95,12/20/19 17:41,"963 Spruce St, San Francisco, CA 94016" +300729,iPhone,1,700,12/19/19 20:10,"604 Spruce St, Atlanta, GA 30301" +300729,Lightning Charging Cable,1,14.95,12/19/19 20:10,"604 Spruce St, Atlanta, GA 30301" +300730,Lightning Charging Cable,1,14.95,12/20/19 18:01,"717 13th St, Los Angeles, CA 90001" +300731,AA Batteries (4-pack),2,3.84,12/29/19 19:41,"741 Hill St, New York City, NY 10001" +300732,USB-C Charging Cable,1,11.95,12/06/19 08:35,"461 11th St, San Francisco, CA 94016" +300733,iPhone,1,700,12/13/19 20:56,"361 Lincoln St, Los Angeles, CA 90001" +300733,Lightning Charging Cable,2,14.95,12/13/19 20:56,"361 Lincoln St, Los Angeles, CA 90001" +300734,AA Batteries (4-pack),1,3.84,12/16/19 15:22,"107 Main St, Los Angeles, CA 90001" +300735,27in 4K Gaming Monitor,1,389.99,12/27/19 08:51,"192 Pine St, Atlanta, GA 30301" +300736,Bose SoundSport Headphones,1,99.99,12/12/19 20:29,"49 8th St, Portland, OR 97035" +300737,Lightning Charging Cable,1,14.95,12/01/19 19:54,"891 Forest St, Los Angeles, CA 90001" +300738,iPhone,1,700,12/09/19 16:27,"85 Washington St, Seattle, WA 98101" +300739,Google Phone,1,600,12/12/19 19:19,"114 Adams St, Los Angeles, CA 90001" +300740,AAA Batteries (4-pack),1,2.99,12/03/19 14:51,"660 11th St, Atlanta, GA 30301" +300741,ThinkPad Laptop,1,999.99,12/09/19 15:20,"848 Lakeview St, New York City, NY 10001" +300742,Wired Headphones,2,11.99,12/27/19 08:38,"630 Johnson St, Los Angeles, CA 90001" +300743,AAA Batteries (4-pack),1,2.99,12/11/19 11:15,"304 Hill St, Los Angeles, CA 90001" +300744,Bose SoundSport Headphones,1,99.99,12/01/19 19:40,"684 12th St, San Francisco, CA 94016" +300745,AA Batteries (4-pack),1,3.84,12/29/19 07:30,"715 Maple St, Atlanta, GA 30301" +300746,AAA Batteries (4-pack),1,2.99,12/13/19 08:18,"313 Center St, San Francisco, CA 94016" +300747,Lightning Charging Cable,1,14.95,12/25/19 19:19,"130 12th St, San Francisco, CA 94016" +300748,Bose SoundSport Headphones,1,99.99,12/05/19 17:34,"21 Willow St, Portland, OR 97035" +300749,27in FHD Monitor,2,149.99,12/16/19 21:17,"404 Johnson St, New York City, NY 10001" +300750,AA Batteries (4-pack),1,3.84,12/20/19 07:14,"948 Dogwood St, Portland, OR 97035" +300751,Apple Airpods Headphones,1,150,12/09/19 11:00,"521 Walnut St, Los Angeles, CA 90001" +300751,Lightning Charging Cable,1,14.95,12/09/19 11:00,"521 Walnut St, Los Angeles, CA 90001" +300752,Lightning Charging Cable,1,14.95,12/27/19 11:38,"124 Dogwood St, San Francisco, CA 94016" +300753,USB-C Charging Cable,1,11.95,12/24/19 18:41,"720 Johnson St, San Francisco, CA 94016" +300754,AA Batteries (4-pack),1,3.84,12/24/19 22:14,"347 Lakeview St, New York City, NY 10001" +300755,27in FHD Monitor,1,149.99,12/01/19 13:19,"284 11th St, San Francisco, CA 94016" +300756,AA Batteries (4-pack),1,3.84,12/17/19 20:20,"584 Walnut St, Boston, MA 02215" +300757,Bose SoundSport Headphones,1,99.99,12/03/19 21:54,"875 2nd St, Dallas, TX 75001" +300758,27in 4K Gaming Monitor,1,389.99,12/06/19 08:25,"219 Lincoln St, Dallas, TX 75001" +300759,AA Batteries (4-pack),1,3.84,12/01/19 13:46,"670 2nd St, Dallas, TX 75001" +300760,Google Phone,1,600,12/21/19 20:18,"916 Lincoln St, New York City, NY 10001" +300760,USB-C Charging Cable,2,11.95,12/21/19 20:18,"916 Lincoln St, New York City, NY 10001" +300761,Lightning Charging Cable,1,14.95,12/15/19 16:14,"369 Spruce St, Boston, MA 02215" +300762,AA Batteries (4-pack),1,3.84,12/12/19 09:39,"442 Spruce St, Dallas, TX 75001" +300763,Bose SoundSport Headphones,1,99.99,12/30/19 23:19,"870 Jefferson St, San Francisco, CA 94016" +300764,34in Ultrawide Monitor,1,379.99,12/25/19 22:20,"319 Lake St, San Francisco, CA 94016" +300765,27in FHD Monitor,1,149.99,12/02/19 22:45,"962 Jackson St, San Francisco, CA 94016" +300766,Bose SoundSport Headphones,1,99.99,12/11/19 21:56,"724 Cedar St, Austin, TX 73301" +300767,AA Batteries (4-pack),2,3.84,12/15/19 03:31,"16 5th St, Atlanta, GA 30301" +300768,Apple Airpods Headphones,1,150,12/01/19 22:31,"89 8th St, Los Angeles, CA 90001" +300769,Bose SoundSport Headphones,1,99.99,12/19/19 14:16,"46 Church St, Los Angeles, CA 90001" +300770,iPhone,1,700,12/15/19 21:27,"190 South St, San Francisco, CA 94016" +300770,Wired Headphones,1,11.99,12/15/19 21:27,"190 South St, San Francisco, CA 94016" +300771,USB-C Charging Cable,1,11.95,12/01/19 14:24,"771 Willow St, New York City, NY 10001" +300772,Apple Airpods Headphones,1,150,12/05/19 18:59,"356 7th St, San Francisco, CA 94016" +300773,34in Ultrawide Monitor,1,379.99,12/01/19 16:21,"390 Maple St, Atlanta, GA 30301" +300774,iPhone,1,700,12/15/19 20:29,"895 8th St, Seattle, WA 98101" +300775,iPhone,1,700,12/06/19 17:39,"220 1st St, Atlanta, GA 30301" +300776,34in Ultrawide Monitor,1,379.99,12/08/19 13:34,"51 Washington St, Seattle, WA 98101" +300777,Bose SoundSport Headphones,1,99.99,12/17/19 15:45,"133 11th St, Los Angeles, CA 90001" +300778,Lightning Charging Cable,1,14.95,12/19/19 13:33,"839 7th St, Portland, OR 97035" +300779,AAA Batteries (4-pack),4,2.99,12/25/19 12:22,"155 Hickory St, San Francisco, CA 94016" +300780,AA Batteries (4-pack),1,3.84,12/22/19 01:03,"993 Wilson St, Los Angeles, CA 90001" +300781,20in Monitor,1,109.99,12/06/19 15:00,"798 River St, Los Angeles, CA 90001" +300782,Wired Headphones,1,11.99,12/25/19 07:07,"736 8th St, Boston, MA 02215" +300783,Macbook Pro Laptop,1,1700,12/17/19 16:36,"304 6th St, Dallas, TX 75001" +300784,Wired Headphones,1,11.99,12/12/19 13:56,"179 West St, Boston, MA 02215" +300785,USB-C Charging Cable,1,11.95,12/28/19 17:30,"245 Ridge St, Seattle, WA 98101" +300786,Lightning Charging Cable,2,14.95,12/22/19 20:47,"933 Spruce St, San Francisco, CA 94016" +300787,iPhone,1,700,12/09/19 13:22,"727 River St, New York City, NY 10001" +300788,Apple Airpods Headphones,1,150,12/31/19 17:45,"980 Chestnut St, Los Angeles, CA 90001" +300789,Vareebadd Phone,1,400,12/03/19 12:07,"664 Madison St, Seattle, WA 98101" +300789,USB-C Charging Cable,1,11.95,12/03/19 12:07,"664 Madison St, Seattle, WA 98101" +300790,34in Ultrawide Monitor,1,379.99,12/22/19 20:54,"255 Hill St, San Francisco, CA 94016" +300791,Macbook Pro Laptop,1,1700,12/18/19 16:59,"908 13th St, Austin, TX 73301" +300792,AA Batteries (4-pack),1,3.84,12/22/19 20:31,"709 Maple St, Boston, MA 02215" +300793,Lightning Charging Cable,1,14.95,12/03/19 12:22,"551 Highland St, Los Angeles, CA 90001" +300794,Flatscreen TV,1,300,12/31/19 17:07,"480 Hill St, San Francisco, CA 94016" +300795,Bose SoundSport Headphones,1,99.99,12/28/19 15:55,"907 1st St, San Francisco, CA 94016" +300796,AA Batteries (4-pack),4,3.84,12/19/19 19:38,"471 Lincoln St, Seattle, WA 98101" +300797,USB-C Charging Cable,1,11.95,12/23/19 11:50,"925 North St, Atlanta, GA 30301" +300798,Google Phone,1,600,12/30/19 13:10,"148 Washington St, San Francisco, CA 94016" +300799,Lightning Charging Cable,1,14.95,12/07/19 06:06,"448 10th St, New York City, NY 10001" +300800,USB-C Charging Cable,1,11.95,12/03/19 19:54,"303 8th St, Austin, TX 73301" +300801,Google Phone,1,600,12/06/19 10:51,"52 Cherry St, Boston, MA 02215" +300802,Google Phone,1,600,12/01/19 20:51,"344 Hickory St, New York City, NY 10001" +300803,27in FHD Monitor,1,149.99,12/03/19 00:14,"870 Main St, San Francisco, CA 94016" +300804,Apple Airpods Headphones,1,150,12/01/19 11:36,"565 Maple St, Los Angeles, CA 90001" +300805,ThinkPad Laptop,1,999.99,12/28/19 18:06,"661 Maple St, New York City, NY 10001" +300806,Lightning Charging Cable,1,14.95,12/22/19 15:01,"23 6th St, Los Angeles, CA 90001" +300807,USB-C Charging Cable,1,11.95,12/12/19 21:48,"263 7th St, New York City, NY 10001" +300808,AAA Batteries (4-pack),1,2.99,12/23/19 09:37,"893 Lakeview St, San Francisco, CA 94016" +300809,Lightning Charging Cable,1,14.95,12/28/19 15:38,"180 Center St, Atlanta, GA 30301" +300810,AAA Batteries (4-pack),2,2.99,12/29/19 22:43,"833 12th St, Boston, MA 02215" +300811,Bose SoundSport Headphones,1,99.99,12/01/19 13:13,"954 7th St, Seattle, WA 98101" +300812,AAA Batteries (4-pack),3,2.99,12/21/19 19:13,"267 West St, Los Angeles, CA 90001" +300813,Google Phone,1,600,12/03/19 17:50,"311 Meadow St, San Francisco, CA 94016" +300814,iPhone,1,700,12/25/19 00:43,"487 Cedar St, Austin, TX 73301" +300814,Apple Airpods Headphones,1,150,12/25/19 00:43,"487 Cedar St, Austin, TX 73301" +300815,iPhone,1,700,12/18/19 11:50,"655 14th St, Dallas, TX 75001" +300816,27in FHD Monitor,1,149.99,12/20/19 02:20,"821 West St, Dallas, TX 75001" +300817,Wired Headphones,1,11.99,12/01/19 21:08,"477 Highland St, Atlanta, GA 30301" +300818,AAA Batteries (4-pack),1,2.99,12/03/19 18:52,"162 Adams St, New York City, NY 10001" +300819,Wired Headphones,1,11.99,12/15/19 18:02,"257 10th St, Atlanta, GA 30301" +300820,AAA Batteries (4-pack),2,2.99,12/20/19 19:23,"761 2nd St, Boston, MA 02215" +300821,AA Batteries (4-pack),1,3.84,12/02/19 17:49,"211 Willow St, New York City, NY 10001" +300822,Bose SoundSport Headphones,1,99.99,12/28/19 14:59,"531 4th St, San Francisco, CA 94016" +300823,Wired Headphones,1,11.99,12/04/19 14:39,"50 11th St, Dallas, TX 75001" +300824,Apple Airpods Headphones,1,150,12/19/19 19:38,"387 4th St, Atlanta, GA 30301" +300825,Macbook Pro Laptop,1,1700,12/31/19 05:59,"637 Forest St, San Francisco, CA 94016" +300826,Lightning Charging Cable,2,14.95,12/19/19 13:05,"763 Cherry St, Los Angeles, CA 90001" +300827,Bose SoundSport Headphones,1,99.99,12/23/19 23:06,"175 Cedar St, San Francisco, CA 94016" +300828,AA Batteries (4-pack),2,3.84,12/20/19 09:52,"805 South St, Los Angeles, CA 90001" +300829,AAA Batteries (4-pack),4,2.99,12/07/19 17:26,"921 Lakeview St, Los Angeles, CA 90001" +300830,Vareebadd Phone,1,400,12/31/19 19:06,"71 13th St, Austin, TX 73301" +300831,27in FHD Monitor,1,149.99,12/28/19 21:09,"803 Elm St, Boston, MA 02215" +300832,20in Monitor,1,109.99,12/14/19 00:29,"142 River St, San Francisco, CA 94016" +300833,27in FHD Monitor,1,149.99,12/04/19 20:29,"299 Lakeview St, San Francisco, CA 94016" +300834,AA Batteries (4-pack),1,3.84,12/13/19 20:21,"695 Madison St, Los Angeles, CA 90001" +300835,Macbook Pro Laptop,1,1700,12/27/19 09:58,"966 Ridge St, Dallas, TX 75001" +300836,AAA Batteries (4-pack),1,2.99,12/31/19 10:43,"846 8th St, Dallas, TX 75001" +300837,AAA Batteries (4-pack),1,2.99,12/07/19 17:37,"552 Park St, Austin, TX 73301" +300838,Lightning Charging Cable,2,14.95,12/20/19 08:37,"913 Meadow St, San Francisco, CA 94016" +300839,iPhone,1,700,12/28/19 17:10,"47 Forest St, Portland, OR 97035" +300840,Apple Airpods Headphones,1,150,12/02/19 19:23,"587 Hill St, New York City, NY 10001" +300841,USB-C Charging Cable,1,11.95,12/10/19 12:47,"886 Jackson St, Atlanta, GA 30301" +300842,34in Ultrawide Monitor,1,379.99,12/07/19 23:11,"510 South St, Los Angeles, CA 90001" +300843,Google Phone,1,600,12/30/19 17:13,"838 6th St, San Francisco, CA 94016" +300844,Apple Airpods Headphones,1,150,12/03/19 20:47,"516 Hickory St, New York City, NY 10001" +300845,USB-C Charging Cable,2,11.95,12/07/19 10:01,"806 Church St, Austin, TX 73301" +300846,Lightning Charging Cable,1,14.95,12/20/19 07:56,"775 12th St, Los Angeles, CA 90001" +300847,AAA Batteries (4-pack),2,2.99,12/14/19 21:47,"361 Chestnut St, Los Angeles, CA 90001" +300848,AAA Batteries (4-pack),2,2.99,12/12/19 06:09,"709 14th St, Seattle, WA 98101" +300849,Flatscreen TV,1,300,12/04/19 21:56,"603 Spruce St, San Francisco, CA 94016" +300850,AAA Batteries (4-pack),1,2.99,12/01/19 16:09,"705 12th St, Seattle, WA 98101" +300851,Wired Headphones,1,11.99,12/23/19 00:44,"399 Jefferson St, Los Angeles, CA 90001" +300852,iPhone,1,700,12/04/19 15:33,"317 North St, New York City, NY 10001" +300853,20in Monitor,1,109.99,12/06/19 11:59,"33 Cherry St, San Francisco, CA 94016" +300854,Wired Headphones,1,11.99,12/22/19 11:58,"26 Park St, Atlanta, GA 30301" +300855,AAA Batteries (4-pack),1,2.99,12/13/19 13:23,"523 South St, Los Angeles, CA 90001" +300856,27in 4K Gaming Monitor,1,389.99,12/20/19 12:18,"481 5th St, Boston, MA 02215" +300857,USB-C Charging Cable,1,11.95,12/23/19 20:21,"233 Elm St, Los Angeles, CA 90001" +300858,Flatscreen TV,1,300,12/10/19 09:46,"132 5th St, San Francisco, CA 94016" +300859,Vareebadd Phone,1,400,12/07/19 15:27,"826 Adams St, New York City, NY 10001" +300859,USB-C Charging Cable,1,11.95,12/07/19 15:27,"826 Adams St, New York City, NY 10001" +300860,Wired Headphones,1,11.99,12/08/19 09:09,"234 North St, San Francisco, CA 94016" +300861,AA Batteries (4-pack),1,3.84,12/20/19 15:11,"400 10th St, Boston, MA 02215" +300862,Wired Headphones,1,11.99,12/24/19 14:46,"336 South St, Dallas, TX 75001" +300863,Lightning Charging Cable,1,14.95,12/31/19 08:07,"215 11th St, San Francisco, CA 94016" +300864,Bose SoundSport Headphones,1,99.99,12/05/19 22:57,"800 Adams St, Portland, ME 04101" +300865,Lightning Charging Cable,2,14.95,12/05/19 20:38,"302 2nd St, San Francisco, CA 94016" +300866,iPhone,1,700,12/27/19 18:57,"365 Madison St, San Francisco, CA 94016" +300867,AAA Batteries (4-pack),2,2.99,12/08/19 18:46,"135 North St, San Francisco, CA 94016" +300868,Wired Headphones,1,11.99,12/22/19 23:53,"24 Hickory St, Portland, ME 04101" +300869,Wired Headphones,1,11.99,12/02/19 11:26,"232 Lincoln St, San Francisco, CA 94016" +300870,AAA Batteries (4-pack),1,2.99,12/03/19 20:58,"599 Cherry St, Los Angeles, CA 90001" +300871,AAA Batteries (4-pack),1,2.99,12/11/19 11:32,"429 Madison St, Los Angeles, CA 90001" +300872,Bose SoundSport Headphones,1,99.99,12/10/19 11:16,"86 Park St, Austin, TX 73301" +300873,AA Batteries (4-pack),1,3.84,12/12/19 21:29,"158 Jefferson St, Los Angeles, CA 90001" +300874,27in FHD Monitor,1,149.99,12/02/19 15:20,"476 Cherry St, Los Angeles, CA 90001" +300875,Wired Headphones,1,11.99,12/29/19 17:05,"336 Elm St, New York City, NY 10001" +300876,Wired Headphones,1,11.99,12/16/19 13:55,"294 5th St, Dallas, TX 75001" +300877,AAA Batteries (4-pack),2,2.99,12/02/19 15:42,"98 Cedar St, Seattle, WA 98101" +300878,Lightning Charging Cable,1,14.95,12/09/19 18:00,"368 2nd St, New York City, NY 10001" +300879,Flatscreen TV,1,300,12/16/19 23:28,"569 6th St, Los Angeles, CA 90001" +300880,Apple Airpods Headphones,1,150,12/11/19 16:27,"490 13th St, Austin, TX 73301" +300881,27in FHD Monitor,1,149.99,12/05/19 23:10,"763 Church St, San Francisco, CA 94016" +300882,Macbook Pro Laptop,1,1700,12/01/19 14:33,"1 Lincoln St, Boston, MA 02215" +300883,AAA Batteries (4-pack),1,2.99,12/24/19 20:08,"784 Church St, Los Angeles, CA 90001" +300884,Apple Airpods Headphones,1,150,12/31/19 22:27,"419 Sunset St, Seattle, WA 98101" +300885,USB-C Charging Cable,1,11.95,12/25/19 08:55,"742 Pine St, New York City, NY 10001" +300886,Lightning Charging Cable,1,14.95,12/15/19 10:35,"759 Adams St, Portland, OR 97035" +300887,AAA Batteries (4-pack),1,2.99,12/02/19 11:17,"841 13th St, Austin, TX 73301" +300888,Lightning Charging Cable,1,14.95,12/12/19 23:12,"286 Adams St, Los Angeles, CA 90001" +300889,Wired Headphones,1,11.99,12/29/19 10:19,"460 Johnson St, New York City, NY 10001" +300890,Wired Headphones,1,11.99,12/19/19 07:50,"918 Meadow St, Atlanta, GA 30301" +300891,AA Batteries (4-pack),1,3.84,12/29/19 10:50,"351 Madison St, Dallas, TX 75001" +300892,AAA Batteries (4-pack),1,2.99,12/18/19 13:19,"346 Johnson St, San Francisco, CA 94016" +300893,AAA Batteries (4-pack),1,2.99,12/28/19 10:50,"478 Elm St, New York City, NY 10001" +300894,27in 4K Gaming Monitor,1,389.99,12/16/19 08:32,"985 Elm St, San Francisco, CA 94016" +300895,USB-C Charging Cable,1,11.95,12/22/19 17:45,"723 Church St, Boston, MA 02215" +300896,Lightning Charging Cable,1,14.95,12/02/19 18:18,"710 12th St, New York City, NY 10001" +300897,Apple Airpods Headphones,1,150,12/15/19 23:08,"486 Main St, Boston, MA 02215" +300898,Lightning Charging Cable,1,14.95,12/19/19 15:31,"124 Maple St, Austin, TX 73301" +300899,AA Batteries (4-pack),2,3.84,12/06/19 21:18,"324 Walnut St, Austin, TX 73301" +300900,Wired Headphones,2,11.99,12/08/19 10:55,"39 Elm St, San Francisco, CA 94016" +300901,Lightning Charging Cable,1,14.95,12/21/19 19:49,"100 5th St, New York City, NY 10001" +300902,USB-C Charging Cable,1,11.95,12/16/19 16:39,"382 7th St, Portland, OR 97035" +300903,Wired Headphones,1,11.99,12/25/19 22:11,"879 Adams St, San Francisco, CA 94016" +300904,USB-C Charging Cable,1,11.95,12/25/19 13:53,"697 Meadow St, San Francisco, CA 94016" +300905,Lightning Charging Cable,1,14.95,12/05/19 11:06,"616 Highland St, San Francisco, CA 94016" +300906,AAA Batteries (4-pack),1,2.99,12/27/19 19:06,"480 6th St, San Francisco, CA 94016" +300907,AA Batteries (4-pack),2,3.84,12/21/19 17:51,"219 Lake St, Boston, MA 02215" +300908,AAA Batteries (4-pack),1,2.99,12/08/19 14:11,"360 Lakeview St, Boston, MA 02215" +300909,Bose SoundSport Headphones,1,99.99,12/19/19 14:09,"23 Meadow St, Atlanta, GA 30301" +300910,AA Batteries (4-pack),1,3.84,12/21/19 10:20,"488 14th St, San Francisco, CA 94016" +300911,27in FHD Monitor,1,149.99,12/11/19 07:44,"944 Hickory St, San Francisco, CA 94016" +300912,Bose SoundSport Headphones,1,99.99,12/18/19 15:11,"851 Washington St, Atlanta, GA 30301" +300913,27in 4K Gaming Monitor,1,389.99,12/27/19 14:09,"581 11th St, San Francisco, CA 94016" +300914,Lightning Charging Cable,1,14.95,12/23/19 19:58,"721 Elm St, San Francisco, CA 94016" +300915,Lightning Charging Cable,1,14.95,12/03/19 15:36,"261 South St, Atlanta, GA 30301" +300916,Wired Headphones,1,11.99,12/24/19 12:45,"166 Elm St, Boston, MA 02215" +300917,Apple Airpods Headphones,1,150,12/20/19 00:57,"870 Park St, San Francisco, CA 94016" +300918,AAA Batteries (4-pack),1,2.99,12/21/19 14:29,"892 Lake St, Dallas, TX 75001" +300919,AAA Batteries (4-pack),1,2.99,12/24/19 20:04,"885 Wilson St, Atlanta, GA 30301" +300920,USB-C Charging Cable,1,11.95,12/31/19 13:04,"149 Park St, San Francisco, CA 94016" +300921,Lightning Charging Cable,1,14.95,12/06/19 14:01,"379 Pine St, San Francisco, CA 94016" +300922,Bose SoundSport Headphones,1,99.99,12/14/19 22:42,"291 Adams St, New York City, NY 10001" +300923,27in 4K Gaming Monitor,1,389.99,12/02/19 22:01,"658 Jackson St, Boston, MA 02215" +300924,Lightning Charging Cable,1,14.95,12/09/19 12:13,"405 Meadow St, New York City, NY 10001" +300925,Wired Headphones,1,11.99,12/08/19 13:31,"354 Main St, New York City, NY 10001" +300926,Wired Headphones,1,11.99,12/15/19 18:08,"805 Hickory St, Boston, MA 02215" +300927,Macbook Pro Laptop,1,1700,12/22/19 12:40,"271 13th St, San Francisco, CA 94016" +300928,Google Phone,1,600,12/29/19 06:05,"127 Elm St, Los Angeles, CA 90001" +300928,Bose SoundSport Headphones,1,99.99,12/29/19 06:05,"127 Elm St, Los Angeles, CA 90001" +300929,27in FHD Monitor,1,149.99,12/28/19 18:03,"745 13th St, Los Angeles, CA 90001" +300930,AAA Batteries (4-pack),2,2.99,12/21/19 02:33,"308 6th St, New York City, NY 10001" +300931,AA Batteries (4-pack),1,3.84,12/23/19 18:54,"581 1st St, Boston, MA 02215" +300932,27in FHD Monitor,1,149.99,12/17/19 15:15,"382 North St, New York City, NY 10001" +300933,AA Batteries (4-pack),1,3.84,12/25/19 18:13,"425 Cedar St, San Francisco, CA 94016" +300934,Lightning Charging Cable,1,14.95,12/20/19 08:47,"485 Dogwood St, San Francisco, CA 94016" +300935,Bose SoundSport Headphones,1,99.99,12/17/19 12:13,"449 Lincoln St, San Francisco, CA 94016" +300936,Bose SoundSport Headphones,1,99.99,12/18/19 16:42,"486 River St, San Francisco, CA 94016" +300937,Lightning Charging Cable,1,14.95,12/14/19 12:18,"208 Sunset St, San Francisco, CA 94016" +300938,Flatscreen TV,1,300,12/06/19 18:41,"472 2nd St, Boston, MA 02215" +300939,Lightning Charging Cable,1,14.95,12/22/19 20:01,"570 2nd St, San Francisco, CA 94016" +300940,Wired Headphones,1,11.99,12/31/19 19:07,"508 Lakeview St, Portland, OR 97035" +300941,Lightning Charging Cable,1,14.95,12/05/19 07:23,"142 Dogwood St, Dallas, TX 75001" +300942,USB-C Charging Cable,1,11.95,12/01/19 17:05,"485 Church St, Boston, MA 02215" +300943,27in FHD Monitor,1,149.99,12/28/19 12:42,"885 14th St, Dallas, TX 75001" +300944,Wired Headphones,1,11.99,12/07/19 15:15,"902 South St, New York City, NY 10001" +300945,AA Batteries (4-pack),1,3.84,12/15/19 09:24,"608 Lake St, Los Angeles, CA 90001" +300946,AA Batteries (4-pack),3,3.84,12/05/19 06:59,"388 Elm St, San Francisco, CA 94016" +300947,Apple Airpods Headphones,1,150,12/27/19 16:36,"542 10th St, Los Angeles, CA 90001" +300948,Lightning Charging Cable,1,14.95,12/02/19 10:34,"663 Jefferson St, New York City, NY 10001" +300949,AAA Batteries (4-pack),2,2.99,12/22/19 19:43,"101 Maple St, Los Angeles, CA 90001" +300950,Wired Headphones,1,11.99,12/15/19 13:02,"351 North St, Seattle, WA 98101" +300951,AAA Batteries (4-pack),1,2.99,12/22/19 11:35,"221 10th St, Atlanta, GA 30301" +300952,Google Phone,1,600,12/29/19 18:39,"251 Maple St, Los Angeles, CA 90001" +300953,AAA Batteries (4-pack),2,2.99,12/03/19 11:33,"382 Chestnut St, Los Angeles, CA 90001" +300954,Bose SoundSport Headphones,1,99.99,12/10/19 13:31,"29 Jefferson St, Boston, MA 02215" +300955,ThinkPad Laptop,1,999.99,12/31/19 11:08,"692 1st St, Portland, OR 97035" +300956,Macbook Pro Laptop,1,1700,12/17/19 08:54,"645 Washington St, Seattle, WA 98101" +300957,Macbook Pro Laptop,1,1700,12/03/19 17:21,"471 Highland St, San Francisco, CA 94016" +300958,USB-C Charging Cable,1,11.95,12/08/19 09:54,"495 Highland St, Seattle, WA 98101" +300959,AAA Batteries (4-pack),1,2.99,12/23/19 12:52,"379 Johnson St, San Francisco, CA 94016" +300960,AA Batteries (4-pack),1,3.84,12/25/19 21:23,"97 Church St, Los Angeles, CA 90001" +300960,Apple Airpods Headphones,1,150,12/25/19 21:23,"97 Church St, Los Angeles, CA 90001" +300961,Lightning Charging Cable,1,14.95,12/17/19 19:37,"696 7th St, Portland, OR 97035" +300962,Bose SoundSport Headphones,1,99.99,12/26/19 15:10,"870 Center St, Seattle, WA 98101" +300963,20in Monitor,1,109.99,12/25/19 20:35,"493 Jefferson St, San Francisco, CA 94016" +300964,Macbook Pro Laptop,1,1700,12/07/19 17:14,"188 2nd St, Dallas, TX 75001" +300965,Lightning Charging Cable,1,14.95,12/20/19 19:22,"998 Walnut St, Boston, MA 02215" +300966,AA Batteries (4-pack),1,3.84,12/31/19 20:20,"816 Cedar St, New York City, NY 10001" +300967,Wired Headphones,1,11.99,12/11/19 11:58,"708 7th St, New York City, NY 10001" +300968,Lightning Charging Cable,1,14.95,12/29/19 22:10,"465 1st St, Boston, MA 02215" +300969,AAA Batteries (4-pack),1,2.99,12/06/19 12:23,"898 1st St, Atlanta, GA 30301" +300970,USB-C Charging Cable,1,11.95,12/19/19 08:16,"158 Washington St, Dallas, TX 75001" +300971,AA Batteries (4-pack),1,3.84,12/29/19 14:25,"600 11th St, Portland, ME 04101" +300972,Lightning Charging Cable,1,14.95,12/14/19 15:09,"792 Elm St, Los Angeles, CA 90001" +300973,Google Phone,1,600,12/20/19 07:04,"459 Madison St, Portland, OR 97035" +300974,Lightning Charging Cable,1,14.95,12/06/19 23:19,"854 Maple St, San Francisco, CA 94016" +300975,AAA Batteries (4-pack),1,2.99,12/18/19 14:14,"274 9th St, San Francisco, CA 94016" +300976,Apple Airpods Headphones,1,150,12/31/19 17:28,"223 Jefferson St, Los Angeles, CA 90001" +300977,Macbook Pro Laptop,1,1700,12/17/19 06:38,"225 4th St, New York City, NY 10001" +300977,AA Batteries (4-pack),1,3.84,12/17/19 06:38,"225 4th St, New York City, NY 10001" +300978,Apple Airpods Headphones,1,150,12/25/19 07:10,"954 6th St, Los Angeles, CA 90001" +300979,AA Batteries (4-pack),1,3.84,12/28/19 19:30,"78 Maple St, New York City, NY 10001" +300980,AAA Batteries (4-pack),1,2.99,12/16/19 17:29,"41 8th St, Boston, MA 02215" +300981,USB-C Charging Cable,1,11.95,12/28/19 20:26,"864 North St, New York City, NY 10001" +300982,AAA Batteries (4-pack),2,2.99,12/18/19 18:28,"893 Jackson St, Seattle, WA 98101" +300983,Apple Airpods Headphones,1,150,12/18/19 07:04,"516 Meadow St, Los Angeles, CA 90001" +300984,Apple Airpods Headphones,1,150,12/20/19 22:03,"163 River St, Portland, OR 97035" +300985,34in Ultrawide Monitor,1,379.99,12/04/19 11:32,"326 8th St, Boston, MA 02215" +300986,Apple Airpods Headphones,2,150,12/07/19 21:31,"975 Washington St, Atlanta, GA 30301" +300987,USB-C Charging Cable,1,11.95,12/20/19 08:18,"85 South St, Dallas, TX 75001" +300988,AA Batteries (4-pack),3,3.84,12/27/19 10:15,"343 Lake St, Los Angeles, CA 90001" +300989,Lightning Charging Cable,1,14.95,12/11/19 09:40,"822 Johnson St, San Francisco, CA 94016" +300990,USB-C Charging Cable,1,11.95,12/09/19 00:30,"309 Sunset St, Los Angeles, CA 90001" +300991,Apple Airpods Headphones,1,150,12/24/19 14:20,"953 Jackson St, Seattle, WA 98101" +300992,iPhone,1,700,12/25/19 15:17,"526 West St, Seattle, WA 98101" +300993,Apple Airpods Headphones,1,150,12/08/19 23:04,"136 Lakeview St, Los Angeles, CA 90001" +300994,Lightning Charging Cable,1,14.95,12/12/19 20:26,"492 11th St, Los Angeles, CA 90001" +300995,AA Batteries (4-pack),2,3.84,12/20/19 18:00,"515 12th St, Los Angeles, CA 90001" +300996,USB-C Charging Cable,1,11.95,12/04/19 00:24,"173 8th St, Los Angeles, CA 90001" +300997,Wired Headphones,1,11.99,12/17/19 16:51,"892 Washington St, Boston, MA 02215" +300998,Vareebadd Phone,1,400,12/03/19 21:00,"631 Highland St, Atlanta, GA 30301" +300999,27in 4K Gaming Monitor,1,389.99,12/20/19 10:04,"900 Lakeview St, Austin, TX 73301" +301000,Apple Airpods Headphones,1,150,12/25/19 22:46,"271 Wilson St, Boston, MA 02215" +301001,Apple Airpods Headphones,1,150,12/10/19 08:54,"377 Walnut St, San Francisco, CA 94016" +301002,Apple Airpods Headphones,1,150,12/20/19 00:12,"284 7th St, New York City, NY 10001" +301003,USB-C Charging Cable,1,11.95,12/16/19 16:13,"398 8th St, San Francisco, CA 94016" +301004,34in Ultrawide Monitor,1,379.99,12/24/19 20:39,"136 7th St, San Francisco, CA 94016" +301005,27in 4K Gaming Monitor,1,389.99,12/30/19 21:50,"931 Wilson St, Dallas, TX 75001" +301005,Flatscreen TV,1,300,12/30/19 21:50,"931 Wilson St, Dallas, TX 75001" +301006,27in 4K Gaming Monitor,1,389.99,12/21/19 17:50,"733 12th St, Atlanta, GA 30301" +301007,Apple Airpods Headphones,1,150,12/01/19 22:32,"375 Adams St, New York City, NY 10001" +301008,Lightning Charging Cable,1,14.95,12/14/19 21:05,"951 Forest St, Boston, MA 02215" +301009,Wired Headphones,1,11.99,12/24/19 13:06,"321 Sunset St, San Francisco, CA 94016" +301010,AAA Batteries (4-pack),1,2.99,12/22/19 20:00,"625 Cedar St, New York City, NY 10001" +301011,Lightning Charging Cable,1,14.95,12/02/19 20:17,"363 Main St, San Francisco, CA 94016" +301012,USB-C Charging Cable,1,11.95,12/10/19 15:59,"391 Pine St, Los Angeles, CA 90001" +301013,AAA Batteries (4-pack),3,2.99,12/05/19 15:33,"790 Madison St, Atlanta, GA 30301" +301014,Lightning Charging Cable,1,14.95,12/08/19 12:16,"713 Forest St, New York City, NY 10001" +301015,Bose SoundSport Headphones,1,99.99,12/07/19 22:18,"115 2nd St, San Francisco, CA 94016" +301016,ThinkPad Laptop,1,999.99,12/28/19 17:35,"184 13th St, New York City, NY 10001" +301017,20in Monitor,1,109.99,12/04/19 14:22,"507 Maple St, Portland, ME 04101" +301018,AAA Batteries (4-pack),3,2.99,12/27/19 17:53,"653 Chestnut St, San Francisco, CA 94016" +301019,USB-C Charging Cable,1,11.95,12/23/19 13:55,"519 9th St, San Francisco, CA 94016" +301019,AAA Batteries (4-pack),2,2.99,12/23/19 13:55,"519 9th St, San Francisco, CA 94016" +301020,iPhone,1,700,12/31/19 03:43,"162 Walnut St, San Francisco, CA 94016" +301021,USB-C Charging Cable,1,11.95,12/15/19 07:11,"754 South St, New York City, NY 10001" +301022,AAA Batteries (4-pack),1,2.99,12/14/19 13:36,"586 Lincoln St, San Francisco, CA 94016" +301023,AAA Batteries (4-pack),1,2.99,12/18/19 00:28,"685 6th St, Los Angeles, CA 90001" +301024,Apple Airpods Headphones,1,150,12/05/19 09:34,"722 2nd St, San Francisco, CA 94016" +301025,Apple Airpods Headphones,1,150,12/11/19 17:24,"299 13th St, Atlanta, GA 30301" +301026,Lightning Charging Cable,1,14.95,12/14/19 17:11,"280 Wilson St, San Francisco, CA 94016" +301027,Bose SoundSport Headphones,1,99.99,12/22/19 18:38,"979 River St, Los Angeles, CA 90001" +301028,AAA Batteries (4-pack),2,2.99,12/04/19 16:45,"21 7th St, San Francisco, CA 94016" +301029,Wired Headphones,1,11.99,12/18/19 20:33,"152 Spruce St, New York City, NY 10001" +301030,AA Batteries (4-pack),1,3.84,12/16/19 10:15,"265 Adams St, New York City, NY 10001" +301031,USB-C Charging Cable,1,11.95,12/03/19 12:30,"479 Jackson St, Austin, TX 73301" +301031,ThinkPad Laptop,1,999.99,12/03/19 12:30,"479 Jackson St, Austin, TX 73301" +301032,Lightning Charging Cable,1,14.95,12/05/19 10:19,"932 Church St, Boston, MA 02215" +301033,USB-C Charging Cable,1,11.95,12/19/19 15:41,"315 Lincoln St, Atlanta, GA 30301" +301034,AAA Batteries (4-pack),1,2.99,12/25/19 11:46,"803 Church St, Los Angeles, CA 90001" +301035,Google Phone,1,600,12/19/19 10:50,"304 Wilson St, New York City, NY 10001" +301036,AA Batteries (4-pack),1,3.84,12/14/19 10:37,"586 Ridge St, Portland, OR 97035" +301037,Wired Headphones,1,11.99,12/07/19 08:33,"345 13th St, San Francisco, CA 94016" +301038,AA Batteries (4-pack),1,3.84,12/28/19 15:22,"534 Walnut St, Seattle, WA 98101" +301039,Apple Airpods Headphones,1,150,12/04/19 14:19,"70 Willow St, San Francisco, CA 94016" +301040,Bose SoundSport Headphones,1,99.99,12/21/19 23:47,"243 Cherry St, Seattle, WA 98101" +301041,Bose SoundSport Headphones,1,99.99,12/11/19 22:44,"891 Lincoln St, San Francisco, CA 94016" +301042,AA Batteries (4-pack),1,3.84,12/06/19 19:03,"906 North St, New York City, NY 10001" +301043,27in 4K Gaming Monitor,1,389.99,12/08/19 10:46,"613 Lakeview St, Boston, MA 02215" +301044,Macbook Pro Laptop,1,1700,12/30/19 09:29,"880 Park St, Los Angeles, CA 90001" +301045,Apple Airpods Headphones,1,150,12/02/19 18:58,"682 Lincoln St, Atlanta, GA 30301" +301046,AAA Batteries (4-pack),2,2.99,12/24/19 19:33,"933 5th St, New York City, NY 10001" +301047,Wired Headphones,1,11.99,12/31/19 20:35,"663 10th St, Seattle, WA 98101" +301048,Bose SoundSport Headphones,1,99.99,12/11/19 12:13,"487 Elm St, San Francisco, CA 94016" +301049,Apple Airpods Headphones,1,150,12/01/19 18:25,"405 1st St, Los Angeles, CA 90001" +301050,AA Batteries (4-pack),1,3.84,12/04/19 18:56,"110 14th St, San Francisco, CA 94016" +301051,AAA Batteries (4-pack),3,2.99,12/22/19 15:33,"128 6th St, Los Angeles, CA 90001" +301052,20in Monitor,1,109.99,12/05/19 15:12,"27 Maple St, Atlanta, GA 30301" +301053,iPhone,1,700,12/27/19 14:11,"857 Meadow St, New York City, NY 10001" +301053,Lightning Charging Cable,1,14.95,12/27/19 14:11,"857 Meadow St, New York City, NY 10001" +301054,iPhone,1,700,12/01/19 15:23,"756 Lake St, Boston, MA 02215" +301055,Bose SoundSport Headphones,1,99.99,12/09/19 13:33,"507 Ridge St, Austin, TX 73301" +301056,34in Ultrawide Monitor,1,379.99,12/24/19 10:01,"842 1st St, Portland, OR 97035" +301057,Lightning Charging Cable,1,14.95,12/24/19 09:50,"76 Adams St, Dallas, TX 75001" +301058,Wired Headphones,1,11.99,12/16/19 20:47,"176 Lincoln St, New York City, NY 10001" +301059,Wired Headphones,1,11.99,12/29/19 14:24,"364 Ridge St, Boston, MA 02215" +301060,USB-C Charging Cable,1,11.95,12/24/19 18:31,"518 11th St, San Francisco, CA 94016" +301061,Lightning Charging Cable,1,14.95,12/25/19 22:34,"669 Spruce St, San Francisco, CA 94016" +301062,USB-C Charging Cable,1,11.95,12/28/19 16:26,"595 Hickory St, Austin, TX 73301" +301063,Bose SoundSport Headphones,1,99.99,12/17/19 20:23,"131 Meadow St, Seattle, WA 98101" +301064,AA Batteries (4-pack),1,3.84,12/21/19 19:51,"999 Pine St, Boston, MA 02215" +301065,Wired Headphones,1,11.99,12/27/19 03:53,"797 1st St, San Francisco, CA 94016" +301066,Lightning Charging Cable,2,14.95,12/28/19 12:50,"593 North St, Los Angeles, CA 90001" +301067,AA Batteries (4-pack),1,3.84,12/12/19 12:18,"959 Jefferson St, Los Angeles, CA 90001" +301068,AA Batteries (4-pack),1,3.84,12/15/19 21:53,"567 10th St, Boston, MA 02215" +301069,AA Batteries (4-pack),1,3.84,12/08/19 18:58,"413 Madison St, Los Angeles, CA 90001" +301070,Apple Airpods Headphones,1,150,12/30/19 18:14,"66 Hickory St, Los Angeles, CA 90001" +301071,USB-C Charging Cable,1,11.95,12/02/19 14:51,"968 5th St, Boston, MA 02215" +301072,ThinkPad Laptop,1,999.99,12/21/19 20:54,"71 Madison St, Boston, MA 02215" +301073,LG Dryer,1,600.0,12/29/19 12:22,"750 Highland St, Seattle, WA 98101" +301074,AA Batteries (4-pack),2,3.84,12/01/19 16:43,"563 4th St, Seattle, WA 98101" +301075,USB-C Charging Cable,1,11.95,12/06/19 14:51,"956 Elm St, San Francisco, CA 94016" +301076,27in 4K Gaming Monitor,1,389.99,12/06/19 00:03,"364 Adams St, New York City, NY 10001" +301077,Lightning Charging Cable,1,14.95,12/14/19 10:05,"640 Hill St, Dallas, TX 75001" +301078,27in 4K Gaming Monitor,1,389.99,12/30/19 08:12,"589 Pine St, Los Angeles, CA 90001" +301079,AA Batteries (4-pack),1,3.84,12/31/19 19:23,"755 9th St, Atlanta, GA 30301" +301080,iPhone,1,700,12/27/19 00:38,"751 13th St, Atlanta, GA 30301" +301081,AA Batteries (4-pack),2,3.84,12/31/19 17:49,"657 Sunset St, Seattle, WA 98101" +301082,AAA Batteries (4-pack),3,2.99,12/28/19 22:40,"618 Lake St, Seattle, WA 98101" +301083,Lightning Charging Cable,1,14.95,12/31/19 03:41,"596 5th St, Portland, OR 97035" +301084,Google Phone,1,600,12/07/19 19:02,"445 Cherry St, Seattle, WA 98101" +301085,Lightning Charging Cable,1,14.95,12/24/19 20:23,"91 12th St, San Francisco, CA 94016" +301086,34in Ultrawide Monitor,1,379.99,12/23/19 17:12,"916 Jackson St, San Francisco, CA 94016" +301087,AA Batteries (4-pack),1,3.84,12/29/19 19:03,"200 Jefferson St, Seattle, WA 98101" +301088,Bose SoundSport Headphones,1,99.99,12/18/19 21:41,"131 Johnson St, New York City, NY 10001" +301089,ThinkPad Laptop,1,999.99,12/16/19 23:04,"132 Main St, Portland, ME 04101" +301090,AAA Batteries (4-pack),1,2.99,12/07/19 16:54,"183 Madison St, San Francisco, CA 94016" +301091,Wired Headphones,1,11.99,12/06/19 17:52,"863 North St, San Francisco, CA 94016" +301092,AAA Batteries (4-pack),4,2.99,12/06/19 12:40,"167 4th St, Boston, MA 02215" +301093,Apple Airpods Headphones,1,150,12/11/19 20:50,"3 Maple St, San Francisco, CA 94016" +301094,USB-C Charging Cable,1,11.95,12/08/19 10:08,"794 Meadow St, Los Angeles, CA 90001" +301095,Macbook Pro Laptop,1,1700,12/19/19 09:04,"50 Lakeview St, Seattle, WA 98101" +301096,AA Batteries (4-pack),1,3.84,12/16/19 19:43,"390 Pine St, New York City, NY 10001" +301097,Lightning Charging Cable,1,14.95,12/24/19 13:26,"513 Jefferson St, Atlanta, GA 30301" +301098,Flatscreen TV,1,300,12/31/19 19:35,"349 River St, Los Angeles, CA 90001" +301099,Lightning Charging Cable,1,14.95,12/26/19 07:13,"608 Spruce St, New York City, NY 10001" +301100,Macbook Pro Laptop,1,1700,12/17/19 04:44,"771 Lincoln St, San Francisco, CA 94016" +301101,Flatscreen TV,1,300,12/02/19 20:39,"230 Forest St, Seattle, WA 98101" +301102,USB-C Charging Cable,1,11.95,12/26/19 17:36,"231 Hill St, San Francisco, CA 94016" +301103,27in FHD Monitor,1,149.99,12/24/19 09:39,"415 West St, Los Angeles, CA 90001" +301104,Wired Headphones,1,11.99,12/04/19 02:02,"443 Madison St, Austin, TX 73301" +301105,27in 4K Gaming Monitor,1,389.99,12/26/19 11:34,"961 2nd St, New York City, NY 10001" +301106,Lightning Charging Cable,1,14.95,12/16/19 23:35,"204 Spruce St, Los Angeles, CA 90001" +301107,USB-C Charging Cable,1,11.95,12/31/19 20:03,"127 Elm St, Seattle, WA 98101" +301108,34in Ultrawide Monitor,1,379.99,12/30/19 22:12,"212 12th St, San Francisco, CA 94016" +301109,Wired Headphones,1,11.99,12/31/19 17:27,"868 Dogwood St, Los Angeles, CA 90001" +301110,AA Batteries (4-pack),1,3.84,12/29/19 06:32,"706 Maple St, Seattle, WA 98101" +301111,Flatscreen TV,1,300,12/25/19 15:40,"597 14th St, San Francisco, CA 94016" +301112,AAA Batteries (4-pack),1,2.99,12/05/19 20:36,"263 Park St, Austin, TX 73301" +301113,27in FHD Monitor,1,149.99,12/28/19 13:38,"266 Pine St, Seattle, WA 98101" +301114,Google Phone,1,600,12/09/19 10:34,"15 11th St, Boston, MA 02215" +301114,USB-C Charging Cable,1,11.95,12/09/19 10:34,"15 11th St, Boston, MA 02215" +301115,Lightning Charging Cable,2,14.95,12/16/19 12:12,"870 1st St, Los Angeles, CA 90001" +301116,Wired Headphones,1,11.99,12/24/19 12:10,"972 14th St, Boston, MA 02215" +301117,Apple Airpods Headphones,1,150,12/24/19 11:00,"118 Pine St, Los Angeles, CA 90001" +301118,27in 4K Gaming Monitor,1,389.99,12/27/19 18:32,"170 7th St, Los Angeles, CA 90001" +301119,USB-C Charging Cable,1,11.95,12/27/19 15:16,"74 Cedar St, San Francisco, CA 94016" +301120,Wired Headphones,1,11.99,12/15/19 12:27,"697 Spruce St, Dallas, TX 75001" +301121,Lightning Charging Cable,1,14.95,12/10/19 12:19,"730 Washington St, Atlanta, GA 30301" +301122,USB-C Charging Cable,1,11.95,12/05/19 17:46,"532 Meadow St, Seattle, WA 98101" +301123,AAA Batteries (4-pack),5,2.99,12/18/19 07:12,"643 9th St, Atlanta, GA 30301" +301124,AAA Batteries (4-pack),1,2.99,12/30/19 14:50,"414 8th St, New York City, NY 10001" +301125,AAA Batteries (4-pack),1,2.99,12/09/19 10:14,"704 11th St, Boston, MA 02215" +301126,27in 4K Gaming Monitor,1,389.99,12/15/19 12:26,"319 Jackson St, Portland, OR 97035" +301127,Lightning Charging Cable,1,14.95,12/11/19 13:43,"759 Meadow St, Atlanta, GA 30301" +301128,USB-C Charging Cable,1,11.95,12/10/19 19:58,"516 Hill St, San Francisco, CA 94016" +301129,ThinkPad Laptop,1,999.99,12/18/19 12:15,"582 West St, Boston, MA 02215" +301130,27in 4K Gaming Monitor,1,389.99,12/30/19 07:26,"708 Lakeview St, San Francisco, CA 94016" +301131,Bose SoundSport Headphones,1,99.99,12/31/19 10:24,"417 Main St, San Francisco, CA 94016" +301132,34in Ultrawide Monitor,1,379.99,12/26/19 01:21,"43 Wilson St, San Francisco, CA 94016" +301133,Apple Airpods Headphones,1,150,12/30/19 19:47,"66 7th St, Los Angeles, CA 90001" +301134,AA Batteries (4-pack),1,3.84,12/14/19 16:03,"214 1st St, San Francisco, CA 94016" +301135,27in FHD Monitor,1,149.99,12/02/19 06:08,"978 South St, Seattle, WA 98101" +301136,LG Dryer,1,600.0,12/31/19 20:17,"859 6th St, San Francisco, CA 94016" +301137,USB-C Charging Cable,1,11.95,12/19/19 21:12,"846 Spruce St, Dallas, TX 75001" +301138,Wired Headphones,1,11.99,12/02/19 12:05,"99 Wilson St, Atlanta, GA 30301" +301139,Apple Airpods Headphones,1,150,12/19/19 14:57,"237 Lakeview St, Los Angeles, CA 90001" +301140,Bose SoundSport Headphones,1,99.99,12/14/19 16:41,"260 9th St, Atlanta, GA 30301" +301141,AAA Batteries (4-pack),1,2.99,12/16/19 10:33,"805 14th St, Los Angeles, CA 90001" +301142,34in Ultrawide Monitor,1,379.99,12/15/19 16:41,"147 Elm St, San Francisco, CA 94016" +301143,Google Phone,1,600,12/12/19 20:09,"261 9th St, Los Angeles, CA 90001" +301144,Apple Airpods Headphones,1,150,12/28/19 06:55,"556 Park St, New York City, NY 10001" +301145,USB-C Charging Cable,1,11.95,12/29/19 00:12,"535 Wilson St, Boston, MA 02215" +301146,Google Phone,1,600,12/11/19 15:40,"307 Maple St, Los Angeles, CA 90001" +301147,34in Ultrawide Monitor,1,379.99,12/19/19 09:16,"434 Johnson St, Seattle, WA 98101" +301148,Lightning Charging Cable,2,14.95,12/20/19 11:03,"348 6th St, Portland, OR 97035" +301149,USB-C Charging Cable,1,11.95,12/09/19 11:44,"766 Lincoln St, Los Angeles, CA 90001" +301150,AA Batteries (4-pack),1,3.84,12/31/19 00:16,"162 Dogwood St, San Francisco, CA 94016" +301151,AA Batteries (4-pack),3,3.84,12/02/19 09:48,"449 Wilson St, San Francisco, CA 94016" +301152,AAA Batteries (4-pack),1,2.99,12/18/19 20:56,"861 West St, San Francisco, CA 94016" +301153,Apple Airpods Headphones,1,150,12/15/19 08:21,"822 Jackson St, Seattle, WA 98101" +301154,34in Ultrawide Monitor,1,379.99,12/23/19 20:15,"978 Cedar St, San Francisco, CA 94016" +301155,USB-C Charging Cable,1,11.95,12/29/19 10:23,"261 Madison St, Atlanta, GA 30301" +301156,AAA Batteries (4-pack),1,2.99,12/03/19 19:36,"799 Main St, Austin, TX 73301" +301157,27in 4K Gaming Monitor,1,389.99,12/10/19 11:45,"639 5th St, Atlanta, GA 30301" +301158,AAA Batteries (4-pack),1,2.99,12/18/19 18:20,"460 Lincoln St, San Francisco, CA 94016" +301159,AA Batteries (4-pack),1,3.84,12/03/19 14:27,"530 Adams St, Los Angeles, CA 90001" +301160,Lightning Charging Cable,1,14.95,12/28/19 18:20,"476 Center St, Seattle, WA 98101" +301161,AA Batteries (4-pack),2,3.84,12/24/19 14:41,"461 4th St, Atlanta, GA 30301" +301162,27in 4K Gaming Monitor,1,389.99,12/14/19 06:48,"682 Washington St, New York City, NY 10001" +301163,AA Batteries (4-pack),1,3.84,12/03/19 23:00,"570 8th St, San Francisco, CA 94016" +301164,USB-C Charging Cable,1,11.95,12/27/19 14:23,"304 14th St, Boston, MA 02215" +301165,USB-C Charging Cable,1,11.95,12/09/19 19:10,"274 Madison St, Atlanta, GA 30301" +301166,Flatscreen TV,1,300,12/09/19 11:47,"432 Jefferson St, Atlanta, GA 30301" +301167,34in Ultrawide Monitor,1,379.99,12/10/19 15:27,"819 7th St, New York City, NY 10001" +301168,Lightning Charging Cable,1,14.95,12/23/19 09:26,"219 9th St, New York City, NY 10001" +301169,20in Monitor,1,109.99,12/23/19 14:26,"217 11th St, Atlanta, GA 30301" +301169,AA Batteries (4-pack),2,3.84,12/23/19 14:26,"217 11th St, Atlanta, GA 30301" +301170,Lightning Charging Cable,1,14.95,12/06/19 14:39,"283 West St, Boston, MA 02215" +301171,ThinkPad Laptop,1,999.99,12/09/19 19:08,"349 Johnson St, Austin, TX 73301" +301172,AAA Batteries (4-pack),1,2.99,12/08/19 20:26,"452 11th St, Seattle, WA 98101" +301173,Lightning Charging Cable,1,14.95,12/08/19 19:57,"745 Lakeview St, Atlanta, GA 30301" +301174,USB-C Charging Cable,1,11.95,12/26/19 10:39,"816 12th St, New York City, NY 10001" +301175,Google Phone,1,600,12/09/19 16:45,"999 Walnut St, Los Angeles, CA 90001" +301176,AA Batteries (4-pack),1,3.84,12/07/19 16:36,"697 Hickory St, Los Angeles, CA 90001" +301177,27in FHD Monitor,1,149.99,12/28/19 15:40,"811 West St, Boston, MA 02215" +301178,Apple Airpods Headphones,1,150,12/18/19 00:07,"625 Cedar St, Austin, TX 73301" +301179,AA Batteries (4-pack),1,3.84,12/12/19 16:07,"101 Forest St, Dallas, TX 75001" +301180,Macbook Pro Laptop,1,1700,12/22/19 21:32,"663 11th St, New York City, NY 10001" +301181,Bose SoundSport Headphones,1,99.99,12/29/19 21:51,"342 12th St, San Francisco, CA 94016" +301182,27in 4K Gaming Monitor,1,389.99,12/09/19 01:53,"905 Washington St, Boston, MA 02215" +301183,Lightning Charging Cable,1,14.95,12/24/19 12:20,"740 Cedar St, Los Angeles, CA 90001" +301184,27in FHD Monitor,1,149.99,12/10/19 11:45,"624 Sunset St, Austin, TX 73301" +301185,Google Phone,1,600,12/07/19 23:41,"222 Park St, Dallas, TX 75001" +301186,Apple Airpods Headphones,1,150,12/04/19 07:56,"617 River St, Los Angeles, CA 90001" +301187,20in Monitor,1,109.99,12/03/19 21:22,"140 14th St, Boston, MA 02215" +301188,AAA Batteries (4-pack),1,2.99,12/24/19 17:15,"685 10th St, Austin, TX 73301" +301189,iPhone,1,700,12/16/19 10:48,"237 Forest St, San Francisco, CA 94016" +301190,Wired Headphones,1,11.99,12/23/19 16:12,"643 Jackson St, New York City, NY 10001" +301191,Lightning Charging Cable,1,14.95,12/02/19 06:13,"37 Wilson St, New York City, NY 10001" +301192,Wired Headphones,1,11.99,12/09/19 17:29,"302 Park St, New York City, NY 10001" +301193,Bose SoundSport Headphones,1,99.99,12/07/19 09:44,"884 Church St, Seattle, WA 98101" +301194,USB-C Charging Cable,1,11.95,12/03/19 14:15,"184 Pine St, Atlanta, GA 30301" +301195,USB-C Charging Cable,1,11.95,12/31/19 13:55,"963 10th St, Austin, TX 73301" +301196,Lightning Charging Cable,2,14.95,12/24/19 13:57,"947 Jefferson St, Dallas, TX 75001" +301197,AAA Batteries (4-pack),1,2.99,12/14/19 07:49,"402 Lincoln St, New York City, NY 10001" +301197,AA Batteries (4-pack),1,3.84,12/14/19 07:49,"402 Lincoln St, New York City, NY 10001" +301198,27in FHD Monitor,1,149.99,12/29/19 10:30,"674 River St, Los Angeles, CA 90001" +301199,AAA Batteries (4-pack),1,2.99,12/24/19 18:06,"78 Hill St, San Francisco, CA 94016" +301200,AAA Batteries (4-pack),1,2.99,12/26/19 11:54,"549 Highland St, New York City, NY 10001" +301201,LG Dryer,1,600.0,12/10/19 19:42,"716 9th St, Los Angeles, CA 90001" +301202,Apple Airpods Headphones,1,150,12/30/19 12:24,"718 Cedar St, Dallas, TX 75001" +301203,Wired Headphones,1,11.99,12/10/19 11:13,"723 South St, Los Angeles, CA 90001" +301204,iPhone,1,700,12/23/19 21:27,"762 Forest St, Boston, MA 02215" +301205,AAA Batteries (4-pack),1,2.99,12/13/19 19:24,"151 1st St, San Francisco, CA 94016" +301206,Lightning Charging Cable,1,14.95,12/18/19 20:00,"165 River St, Boston, MA 02215" +301207,Google Phone,1,600,12/25/19 19:44,"661 Church St, Portland, OR 97035" +301208,Apple Airpods Headphones,1,150,12/28/19 21:29,"528 North St, New York City, NY 10001" +301209,AAA Batteries (4-pack),1,2.99,12/10/19 16:32,"385 Church St, New York City, NY 10001" +301210,iPhone,1,700,12/21/19 18:56,"208 13th St, New York City, NY 10001" +301211,AA Batteries (4-pack),2,3.84,12/26/19 12:57,"606 Main St, Austin, TX 73301" +301212,AA Batteries (4-pack),1,3.84,12/25/19 11:50,"12 Walnut St, Boston, MA 02215" +301213,34in Ultrawide Monitor,1,379.99,12/03/19 12:58,"875 Hill St, Dallas, TX 75001" +301214,Wired Headphones,1,11.99,12/20/19 23:07,"945 Walnut St, Boston, MA 02215" +301214,AA Batteries (4-pack),1,3.84,12/20/19 23:07,"945 Walnut St, Boston, MA 02215" +301215,Lightning Charging Cable,1,14.95,12/11/19 08:23,"646 Center St, Dallas, TX 75001" +301216,USB-C Charging Cable,1,11.95,12/18/19 10:25,"226 7th St, Los Angeles, CA 90001" +301217,Wired Headphones,1,11.99,12/24/19 18:07,"705 Cedar St, Austin, TX 73301" +301218,34in Ultrawide Monitor,1,379.99,12/09/19 10:35,"136 West St, San Francisco, CA 94016" +301219,Bose SoundSport Headphones,1,99.99,12/18/19 07:22,"317 8th St, Austin, TX 73301" +301220,27in FHD Monitor,1,149.99,12/01/19 15:32,"170 Washington St, San Francisco, CA 94016" +301221,Lightning Charging Cable,1,14.95,12/18/19 18:18,"882 2nd St, San Francisco, CA 94016" +301222,Lightning Charging Cable,1,14.95,12/29/19 10:01,"721 Willow St, Los Angeles, CA 90001" +301223,20in Monitor,1,109.99,12/16/19 00:51,"623 Hill St, Atlanta, GA 30301" +301224,AAA Batteries (4-pack),2,2.99,12/23/19 19:24,"49 Park St, Austin, TX 73301" +301225,AAA Batteries (4-pack),1,2.99,12/08/19 13:21,"657 Johnson St, New York City, NY 10001" +301226,Lightning Charging Cable,1,14.95,12/18/19 22:44,"53 1st St, Atlanta, GA 30301" +301227,27in FHD Monitor,1,149.99,12/30/19 16:17,"448 10th St, Portland, OR 97035" +301228,LG Washing Machine,1,600.0,12/10/19 09:42,"664 Elm St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +301229,Lightning Charging Cable,1,14.95,12/05/19 18:09,"873 5th St, Seattle, WA 98101" +301230,Wired Headphones,1,11.99,12/20/19 15:18,"960 Park St, San Francisco, CA 94016" +301231,USB-C Charging Cable,1,11.95,01/01/20 00:19,"131 5th St, New York City, NY 10001" +301232,USB-C Charging Cable,1,11.95,12/06/19 22:09,"645 Forest St, Dallas, TX 75001" +301233,USB-C Charging Cable,1,11.95,12/16/19 08:22,"763 Walnut St, Boston, MA 02215" +301234,Apple Airpods Headphones,1,150,12/19/19 15:43,"462 Hill St, Boston, MA 02215" +301235,Lightning Charging Cable,1,14.95,12/14/19 20:27,"846 Spruce St, Austin, TX 73301" +301236,Bose SoundSport Headphones,1,99.99,12/05/19 14:16,"462 West St, Los Angeles, CA 90001" +301237,Vareebadd Phone,1,400,12/09/19 17:22,"434 Washington St, Los Angeles, CA 90001" +301238,USB-C Charging Cable,2,11.95,12/20/19 23:55,"514 10th St, Boston, MA 02215" +301238,Bose SoundSport Headphones,1,99.99,12/20/19 23:55,"514 10th St, Boston, MA 02215" +301239,Apple Airpods Headphones,1,150,12/13/19 13:08,"402 Meadow St, Portland, OR 97035" +301240,Bose SoundSport Headphones,1,99.99,12/18/19 21:56,"908 2nd St, Seattle, WA 98101" +301241,AA Batteries (4-pack),1,3.84,12/31/19 14:32,"404 1st St, Atlanta, GA 30301" +301242,AAA Batteries (4-pack),1,2.99,12/05/19 20:07,"940 Ridge St, New York City, NY 10001" +301243,iPhone,1,700,12/18/19 21:11,"442 Willow St, Dallas, TX 75001" +301244,Bose SoundSport Headphones,1,99.99,12/14/19 19:02,"907 6th St, Boston, MA 02215" +301245,Lightning Charging Cable,1,14.95,12/19/19 20:56,"689 10th St, Boston, MA 02215" +301246,Wired Headphones,1,11.99,12/21/19 13:43,"485 Jefferson St, San Francisco, CA 94016" +301247,iPhone,1,700,12/15/19 12:00,"573 9th St, Los Angeles, CA 90001" +301248,USB-C Charging Cable,1,11.95,12/13/19 08:44,"174 Wilson St, Los Angeles, CA 90001" +301249,34in Ultrawide Monitor,1,379.99,12/02/19 18:56,"215 11th St, Seattle, WA 98101" +301250,Bose SoundSport Headphones,1,99.99,12/03/19 13:33,"852 10th St, Atlanta, GA 30301" +301251,AA Batteries (4-pack),1,3.84,12/03/19 19:27,"463 2nd St, Los Angeles, CA 90001" +301252,iPhone,1,700,12/15/19 13:11,"498 Johnson St, Dallas, TX 75001" +301253,27in 4K Gaming Monitor,1,389.99,12/20/19 19:19,"31 11th St, Dallas, TX 75001" +301254,20in Monitor,1,109.99,12/03/19 20:50,"764 West St, San Francisco, CA 94016" +301255,Lightning Charging Cable,1,14.95,12/23/19 17:14,"589 Lincoln St, Portland, OR 97035" +301256,ThinkPad Laptop,1,999.99,12/06/19 09:38,"181 Wilson St, Los Angeles, CA 90001" +301257,Bose SoundSport Headphones,1,99.99,12/19/19 22:44,"75 Hickory St, New York City, NY 10001" +301258,Apple Airpods Headphones,1,150,12/01/19 14:32,"303 Willow St, New York City, NY 10001" +301259,AAA Batteries (4-pack),1,2.99,12/26/19 00:43,"405 12th St, Atlanta, GA 30301" +301260,Lightning Charging Cable,1,14.95,12/04/19 02:13,"143 Jefferson St, Dallas, TX 75001" +301261,USB-C Charging Cable,1,11.95,12/14/19 15:58,"633 5th St, Los Angeles, CA 90001" +301262,Wired Headphones,1,11.99,12/07/19 17:18,"136 Hickory St, San Francisco, CA 94016" +301263,AA Batteries (4-pack),2,3.84,12/27/19 11:25,"442 Meadow St, San Francisco, CA 94016" +301264,AA Batteries (4-pack),1,3.84,12/29/19 09:18,"731 Jefferson St, Atlanta, GA 30301" +301265,Lightning Charging Cable,1,14.95,12/05/19 19:40,"757 6th St, San Francisco, CA 94016" +301266,AAA Batteries (4-pack),3,2.99,12/09/19 14:37,"995 Sunset St, New York City, NY 10001" +301267,AAA Batteries (4-pack),2,2.99,12/08/19 10:54,"633 13th St, Seattle, WA 98101" +301268,Lightning Charging Cable,1,14.95,12/04/19 18:05,"373 Maple St, Austin, TX 73301" +301269,Wired Headphones,1,11.99,12/07/19 17:13,"674 Chestnut St, Seattle, WA 98101" +301270,AAA Batteries (4-pack),1,2.99,12/17/19 11:52,"733 Jefferson St, Los Angeles, CA 90001" +301271,iPhone,1,700,12/14/19 17:33,"212 Lakeview St, Seattle, WA 98101" +301272,Wired Headphones,2,11.99,12/07/19 08:47,"562 7th St, New York City, NY 10001" +301273,Apple Airpods Headphones,1,150,12/31/19 22:14,"487 9th St, Atlanta, GA 30301" +301274,AAA Batteries (4-pack),2,2.99,12/31/19 19:10,"361 Lakeview St, Boston, MA 02215" +301275,AA Batteries (4-pack),1,3.84,12/09/19 13:12,"885 6th St, San Francisco, CA 94016" +301276,AAA Batteries (4-pack),1,2.99,12/12/19 18:52,"81 11th St, San Francisco, CA 94016" +301277,iPhone,1,700,12/10/19 22:28,"105 Lake St, Los Angeles, CA 90001" +301277,Lightning Charging Cable,1,14.95,12/10/19 22:28,"105 Lake St, Los Angeles, CA 90001" +301278,USB-C Charging Cable,1,11.95,12/09/19 22:44,"394 Wilson St, Boston, MA 02215" +301279,Apple Airpods Headphones,1,150,12/07/19 12:57,"664 Chestnut St, New York City, NY 10001" +301280,20in Monitor,1,109.99,12/27/19 07:05,"559 8th St, Seattle, WA 98101" +301281,Lightning Charging Cable,1,14.95,12/29/19 15:12,"678 Lake St, Atlanta, GA 30301" +301282,Apple Airpods Headphones,1,150,12/12/19 16:06,"823 Hill St, Seattle, WA 98101" +301283,Wired Headphones,1,11.99,12/06/19 09:53,"106 14th St, Dallas, TX 75001" +301284,Flatscreen TV,1,300,12/22/19 15:39,"352 5th St, New York City, NY 10001" +301285,USB-C Charging Cable,1,11.95,12/29/19 20:39,"92 Jackson St, Boston, MA 02215" +301286,Bose SoundSport Headphones,1,99.99,12/10/19 11:48,"43 Jackson St, Los Angeles, CA 90001" +301287,Lightning Charging Cable,1,14.95,12/22/19 11:52,"23 2nd St, Los Angeles, CA 90001" +301288,AA Batteries (4-pack),2,3.84,12/30/19 21:46,"457 North St, Seattle, WA 98101" +301289,AAA Batteries (4-pack),3,2.99,12/28/19 13:47,"105 Dogwood St, Boston, MA 02215" +301290,AA Batteries (4-pack),2,3.84,12/22/19 16:11,"115 Ridge St, San Francisco, CA 94016" +301291,Lightning Charging Cable,1,14.95,12/07/19 16:39,"456 Sunset St, Los Angeles, CA 90001" +301292,Lightning Charging Cable,1,14.95,12/11/19 07:37,"525 Walnut St, San Francisco, CA 94016" +301293,Apple Airpods Headphones,1,150,12/12/19 20:49,"758 Church St, Seattle, WA 98101" +301294,USB-C Charging Cable,1,11.95,12/08/19 13:40,"738 River St, San Francisco, CA 94016" +301295,USB-C Charging Cable,1,11.95,12/22/19 11:37,"198 Highland St, Los Angeles, CA 90001" +301296,Lightning Charging Cable,1,14.95,12/02/19 20:41,"109 Elm St, Boston, MA 02215" +301297,Vareebadd Phone,1,400,12/11/19 14:43,"294 6th St, Seattle, WA 98101" +301298,Flatscreen TV,1,300,12/11/19 13:33,"429 11th St, New York City, NY 10001" +301299,Apple Airpods Headphones,1,150,12/01/19 13:45,"306 1st St, Portland, OR 97035" +301300,Lightning Charging Cable,1,14.95,12/07/19 20:29,"638 7th St, Boston, MA 02215" +301301,Flatscreen TV,1,300,12/23/19 20:30,"990 Ridge St, San Francisco, CA 94016" +301302,AAA Batteries (4-pack),1,2.99,12/13/19 10:52,"928 Maple St, Atlanta, GA 30301" +301303,34in Ultrawide Monitor,1,379.99,12/05/19 09:53,"526 Jackson St, Los Angeles, CA 90001" +301304,Lightning Charging Cable,1,14.95,12/26/19 14:50,"149 Johnson St, San Francisco, CA 94016" +301305,Google Phone,1,600,12/27/19 00:33,"895 11th St, Los Angeles, CA 90001" +301306,Apple Airpods Headphones,1,150,12/29/19 17:09,"955 1st St, San Francisco, CA 94016" +301307,AA Batteries (4-pack),2,3.84,12/07/19 09:17,"632 14th St, Atlanta, GA 30301" +301308,USB-C Charging Cable,1,11.95,12/18/19 14:31,"739 Church St, New York City, NY 10001" +301309,Wired Headphones,1,11.99,12/16/19 14:19,"212 Meadow St, San Francisco, CA 94016" +301310,iPhone,1,700,12/08/19 20:33,"188 Adams St, Los Angeles, CA 90001" +301310,Wired Headphones,1,11.99,12/08/19 20:33,"188 Adams St, Los Angeles, CA 90001" +301311,34in Ultrawide Monitor,1,379.99,12/26/19 17:02,"316 2nd St, Los Angeles, CA 90001" +301312,27in 4K Gaming Monitor,1,389.99,12/05/19 18:09,"908 Chestnut St, Seattle, WA 98101" +301313,27in 4K Gaming Monitor,1,389.99,12/14/19 11:16,"614 Meadow St, Austin, TX 73301" +301314,Macbook Pro Laptop,1,1700,12/05/19 00:25,"905 Sunset St, New York City, NY 10001" +301315,AA Batteries (4-pack),1,3.84,12/02/19 10:13,"868 8th St, New York City, NY 10001" +301316,27in 4K Gaming Monitor,1,389.99,12/10/19 19:52,"732 South St, Dallas, TX 75001" +301317,AA Batteries (4-pack),1,3.84,12/23/19 10:25,"638 North St, Boston, MA 02215" +301318,Macbook Pro Laptop,1,1700,12/10/19 11:21,"642 Willow St, Los Angeles, CA 90001" +301319,AA Batteries (4-pack),1,3.84,12/17/19 19:53,"498 Park St, Atlanta, GA 30301" +301320,Vareebadd Phone,1,400,12/04/19 17:20,"79 Cherry St, San Francisco, CA 94016" +301321,AA Batteries (4-pack),3,3.84,12/10/19 18:38,"464 Main St, San Francisco, CA 94016" +301322,AAA Batteries (4-pack),1,2.99,12/10/19 19:21,"52 12th St, San Francisco, CA 94016" +301323,20in Monitor,1,109.99,12/16/19 22:52,"838 10th St, Atlanta, GA 30301" +301324,27in 4K Gaming Monitor,1,389.99,12/20/19 16:07,"234 Center St, San Francisco, CA 94016" +301325,Apple Airpods Headphones,1,150,12/30/19 01:18,"231 14th St, San Francisco, CA 94016" +301326,AA Batteries (4-pack),2,3.84,12/28/19 11:34,"200 7th St, San Francisco, CA 94016" +301327,Bose SoundSport Headphones,1,99.99,12/15/19 12:31,"60 10th St, Dallas, TX 75001" +301328,34in Ultrawide Monitor,1,379.99,12/05/19 21:58,"727 10th St, San Francisco, CA 94016" +301329,AA Batteries (4-pack),1,3.84,12/05/19 10:48,"899 River St, San Francisco, CA 94016" +301330,AA Batteries (4-pack),2,3.84,12/10/19 19:44,"610 Willow St, Boston, MA 02215" +301331,Lightning Charging Cable,1,14.95,12/03/19 15:40,"674 Washington St, Dallas, TX 75001" +301332,LG Dryer,1,600.0,12/05/19 13:28,"577 12th St, Los Angeles, CA 90001" +301333,Bose SoundSport Headphones,1,99.99,12/29/19 10:56,"99 Center St, Atlanta, GA 30301" +301334,Flatscreen TV,1,300,12/05/19 21:21,"492 West St, Boston, MA 02215" +301335,Wired Headphones,1,11.99,12/21/19 09:49,"942 Main St, Dallas, TX 75001" +301336,34in Ultrawide Monitor,1,379.99,12/04/19 18:03,"920 Lincoln St, San Francisco, CA 94016" +301337,Vareebadd Phone,1,400,12/06/19 18:12,"805 Hill St, San Francisco, CA 94016" +301338,34in Ultrawide Monitor,1,379.99,12/09/19 11:08,"377 Pine St, San Francisco, CA 94016" +301339,Wired Headphones,1,11.99,12/10/19 07:27,"194 Jackson St, Seattle, WA 98101" +,,,,, +301340,27in 4K Gaming Monitor,1,389.99,12/09/19 14:21,"913 7th St, Los Angeles, CA 90001" +301341,AAA Batteries (4-pack),1,2.99,12/02/19 11:16,"181 Wilson St, Los Angeles, CA 90001" +301342,LG Dryer,1,600.0,12/22/19 08:51,"6 Sunset St, Boston, MA 02215" +301343,Apple Airpods Headphones,1,150,12/12/19 22:41,"523 Adams St, Atlanta, GA 30301" +301344,Bose SoundSport Headphones,1,99.99,12/01/19 08:43,"432 1st St, Dallas, TX 75001" +301345,USB-C Charging Cable,1,11.95,12/24/19 20:34,"997 Center St, Portland, OR 97035" +301346,AAA Batteries (4-pack),2,2.99,12/07/19 11:55,"827 4th St, Boston, MA 02215" +301347,27in FHD Monitor,1,149.99,12/03/19 21:41,"599 11th St, San Francisco, CA 94016" +301348,USB-C Charging Cable,1,11.95,12/09/19 18:51,"791 North St, Boston, MA 02215" +301349,Wired Headphones,1,11.99,12/12/19 18:19,"533 Cedar St, Austin, TX 73301" +301350,AA Batteries (4-pack),1,3.84,12/27/19 20:29,"615 West St, Portland, OR 97035" +301351,iPhone,1,700,12/21/19 19:49,"632 Willow St, San Francisco, CA 94016" +301351,Lightning Charging Cable,1,14.95,12/21/19 19:49,"632 Willow St, San Francisco, CA 94016" +301352,AA Batteries (4-pack),1,3.84,12/24/19 14:55,"163 North St, New York City, NY 10001" +301353,AAA Batteries (4-pack),1,2.99,12/23/19 12:38,"648 Walnut St, Seattle, WA 98101" +301354,20in Monitor,1,109.99,12/20/19 00:49,"833 Washington St, Los Angeles, CA 90001" +301355,AA Batteries (4-pack),2,3.84,12/23/19 19:39,"547 Maple St, New York City, NY 10001" +301356,Apple Airpods Headphones,1,150,12/14/19 10:44,"963 9th St, Los Angeles, CA 90001" +301357,Wired Headphones,1,11.99,12/30/19 12:13,"784 Dogwood St, San Francisco, CA 94016" +301358,iPhone,1,700,12/02/19 15:54,"281 4th St, San Francisco, CA 94016" +301359,iPhone,1,700,12/08/19 14:48,"349 Lake St, Los Angeles, CA 90001" +301359,Lightning Charging Cable,1,14.95,12/08/19 14:48,"349 Lake St, Los Angeles, CA 90001" +301360,27in FHD Monitor,1,149.99,12/29/19 14:20,"170 Main St, Portland, OR 97035" +301361,Apple Airpods Headphones,1,150,12/25/19 16:42,"175 Madison St, Boston, MA 02215" +301362,AA Batteries (4-pack),1,3.84,12/21/19 08:00,"869 Elm St, Dallas, TX 75001" +301363,Macbook Pro Laptop,1,1700,12/15/19 20:20,"104 Walnut St, San Francisco, CA 94016" +301364,AAA Batteries (4-pack),1,2.99,12/07/19 16:28,"406 Ridge St, San Francisco, CA 94016" +301365,Lightning Charging Cable,1,14.95,12/07/19 10:12,"624 7th St, New York City, NY 10001" +301366,AA Batteries (4-pack),1,3.84,12/18/19 19:13,"758 4th St, Dallas, TX 75001" +301367,USB-C Charging Cable,1,11.95,12/07/19 09:25,"811 Meadow St, Los Angeles, CA 90001" +301368,Apple Airpods Headphones,1,150,12/20/19 13:57,"746 Willow St, Dallas, TX 75001" +301369,Lightning Charging Cable,1,14.95,12/06/19 17:24,"229 Center St, Austin, TX 73301" +301370,ThinkPad Laptop,1,999.99,12/01/19 17:44,"331 Lakeview St, Boston, MA 02215" +301371,27in FHD Monitor,1,149.99,12/28/19 22:45,"73 Lakeview St, Dallas, TX 75001" +301372,Wired Headphones,2,11.99,12/16/19 20:54,"702 South St, San Francisco, CA 94016" +301373,USB-C Charging Cable,1,11.95,12/13/19 16:30,"267 Elm St, Boston, MA 02215" +301374,Wired Headphones,1,11.99,12/23/19 04:24,"120 Maple St, New York City, NY 10001" +301375,34in Ultrawide Monitor,1,379.99,12/21/19 06:59,"721 Elm St, Austin, TX 73301" +301376,Apple Airpods Headphones,1,150,12/29/19 12:12,"690 Willow St, Los Angeles, CA 90001" +301377,Lightning Charging Cable,1,14.95,12/20/19 12:30,"265 Cherry St, Boston, MA 02215" +301378,Apple Airpods Headphones,1,150,12/02/19 21:05,"163 Pine St, Austin, TX 73301" +301379,USB-C Charging Cable,1,11.95,12/20/19 10:59,"674 Pine St, San Francisco, CA 94016" +301380,AA Batteries (4-pack),2,3.84,12/20/19 07:21,"264 Meadow St, Austin, TX 73301" +301381,Lightning Charging Cable,1,14.95,12/17/19 23:16,"905 7th St, Atlanta, GA 30301" +301382,AA Batteries (4-pack),1,3.84,12/26/19 12:04,"932 Cherry St, Atlanta, GA 30301" +301383,Google Phone,1,600,12/09/19 04:53,"300 Main St, San Francisco, CA 94016" +301384,Google Phone,1,600,12/15/19 12:39,"543 Washington St, Los Angeles, CA 90001" +301384,USB-C Charging Cable,1,11.95,12/15/19 12:39,"543 Washington St, Los Angeles, CA 90001" +301385,Flatscreen TV,1,300,12/20/19 17:04,"880 Lake St, Los Angeles, CA 90001" +301386,AAA Batteries (4-pack),1,2.99,12/17/19 13:30,"928 Madison St, Austin, TX 73301" +301387,iPhone,1,700,12/14/19 17:38,"927 Madison St, New York City, NY 10001" +301388,USB-C Charging Cable,1,11.95,12/24/19 16:49,"245 Walnut St, Los Angeles, CA 90001" +301389,AAA Batteries (4-pack),3,2.99,12/03/19 10:32,"372 Lakeview St, Boston, MA 02215" +301390,USB-C Charging Cable,1,11.95,12/14/19 22:23,"735 7th St, Atlanta, GA 30301" +301391,Bose SoundSport Headphones,1,99.99,12/07/19 18:46,"139 5th St, Dallas, TX 75001" +301392,Lightning Charging Cable,1,14.95,12/22/19 12:04,"448 Wilson St, Austin, TX 73301" +301393,AA Batteries (4-pack),1,3.84,12/30/19 21:16,"480 West St, Boston, MA 02215" +301394,AAA Batteries (4-pack),1,2.99,12/19/19 19:51,"646 Park St, Seattle, WA 98101" +301395,Lightning Charging Cable,1,14.95,12/01/19 07:41,"977 Cherry St, Portland, OR 97035" +301396,Lightning Charging Cable,1,14.95,12/07/19 08:52,"323 4th St, New York City, NY 10001" +301397,Google Phone,1,600,12/05/19 11:01,"520 Johnson St, Dallas, TX 75001" +301397,27in 4K Gaming Monitor,1,389.99,12/05/19 11:01,"520 Johnson St, Dallas, TX 75001" +301398,AA Batteries (4-pack),1,3.84,12/05/19 11:41,"514 Washington St, Boston, MA 02215" +301399,Wired Headphones,1,11.99,12/10/19 08:08,"888 12th St, Dallas, TX 75001" +301400,27in FHD Monitor,1,149.99,12/08/19 12:14,"37 Spruce St, Austin, TX 73301" +301401,AA Batteries (4-pack),1,3.84,12/08/19 15:06,"825 Cedar St, Dallas, TX 75001" +301402,USB-C Charging Cable,1,11.95,12/09/19 11:49,"838 River St, Seattle, WA 98101" +301403,USB-C Charging Cable,2,11.95,12/07/19 15:25,"335 Pine St, Seattle, WA 98101" +301404,Lightning Charging Cable,1,14.95,12/14/19 00:26,"760 Johnson St, San Francisco, CA 94016" +301405,Wired Headphones,1,11.99,12/29/19 20:16,"149 13th St, Atlanta, GA 30301" +301406,AA Batteries (4-pack),1,3.84,12/07/19 17:25,"585 5th St, Los Angeles, CA 90001" +301407,AAA Batteries (4-pack),1,2.99,12/05/19 13:39,"454 14th St, Atlanta, GA 30301" +301408,Bose SoundSport Headphones,1,99.99,12/20/19 13:35,"195 Center St, Los Angeles, CA 90001" +301409,Wired Headphones,1,11.99,12/31/19 23:14,"870 7th St, New York City, NY 10001" +301410,AA Batteries (4-pack),5,3.84,12/09/19 11:31,"919 Forest St, New York City, NY 10001" +301411,Lightning Charging Cable,1,14.95,12/25/19 16:23,"453 11th St, Seattle, WA 98101" +301412,AAA Batteries (4-pack),1,2.99,12/23/19 20:18,"729 Church St, New York City, NY 10001" +301413,USB-C Charging Cable,1,11.95,12/15/19 14:26,"866 Spruce St, Los Angeles, CA 90001" +301414,USB-C Charging Cable,1,11.95,12/03/19 23:06,"444 River St, Atlanta, GA 30301" +301415,ThinkPad Laptop,1,999.99,12/22/19 18:41,"410 Lakeview St, Atlanta, GA 30301" +301416,Bose SoundSport Headphones,1,99.99,12/21/19 19:11,"755 Ridge St, Atlanta, GA 30301" +301417,AA Batteries (4-pack),1,3.84,12/05/19 14:55,"67 Wilson St, New York City, NY 10001" +301418,Wired Headphones,1,11.99,12/15/19 09:51,"769 Meadow St, Atlanta, GA 30301" +301419,USB-C Charging Cable,1,11.95,12/14/19 10:04,"564 Wilson St, Dallas, TX 75001" +301420,Lightning Charging Cable,1,14.95,12/04/19 11:14,"934 12th St, Los Angeles, CA 90001" +301421,Bose SoundSport Headphones,1,99.99,12/04/19 18:18,"630 14th St, Atlanta, GA 30301" +,,,,, +301422,Lightning Charging Cable,1,14.95,12/09/19 20:38,"734 9th St, Atlanta, GA 30301" +301423,Apple Airpods Headphones,1,150,12/26/19 20:20,"83 Spruce St, Portland, OR 97035" +301424,AA Batteries (4-pack),2,3.84,12/18/19 09:14,"222 Sunset St, Los Angeles, CA 90001" +301425,Google Phone,1,600,12/19/19 13:41,"41 Lakeview St, New York City, NY 10001" +301425,Bose SoundSport Headphones,1,99.99,12/19/19 13:41,"41 Lakeview St, New York City, NY 10001" +301426,27in 4K Gaming Monitor,1,389.99,12/19/19 07:57,"195 Willow St, San Francisco, CA 94016" +301427,AA Batteries (4-pack),1,3.84,12/29/19 15:52,"631 Chestnut St, San Francisco, CA 94016" +301428,AA Batteries (4-pack),2,3.84,12/16/19 20:46,"451 8th St, Portland, OR 97035" +301429,USB-C Charging Cable,1,11.95,12/01/19 19:02,"387 Highland St, San Francisco, CA 94016" +301430,Bose SoundSport Headphones,2,99.99,12/18/19 09:26,"58 2nd St, New York City, NY 10001" +301431,USB-C Charging Cable,1,11.95,12/22/19 08:40,"943 7th St, San Francisco, CA 94016" +301432,AA Batteries (4-pack),1,3.84,12/12/19 22:28,"70 Hill St, Los Angeles, CA 90001" +301433,LG Dryer,1,600.0,12/25/19 23:15,"580 10th St, San Francisco, CA 94016" +301434,Google Phone,1,600,12/28/19 21:54,"485 Adams St, Seattle, WA 98101" +301435,AAA Batteries (4-pack),1,2.99,12/29/19 11:29,"10 Main St, Seattle, WA 98101" +301436,Bose SoundSport Headphones,1,99.99,12/18/19 18:11,"788 Jackson St, Los Angeles, CA 90001" +301437,AAA Batteries (4-pack),1,2.99,12/30/19 16:54,"966 River St, Los Angeles, CA 90001" +301438,USB-C Charging Cable,1,11.95,12/31/19 14:57,"121 13th St, San Francisco, CA 94016" +301439,Lightning Charging Cable,1,14.95,12/24/19 09:51,"352 Elm St, Boston, MA 02215" +301440,USB-C Charging Cable,1,11.95,12/28/19 11:43,"409 Maple St, New York City, NY 10001" +301441,Apple Airpods Headphones,1,150,12/24/19 19:53,"630 Madison St, Atlanta, GA 30301" +301442,27in FHD Monitor,1,149.99,12/28/19 00:07,"379 Chestnut St, Austin, TX 73301" +301443,AAA Batteries (4-pack),1,2.99,12/18/19 15:27,"851 8th St, Dallas, TX 75001" +301444,Bose SoundSport Headphones,1,99.99,12/30/19 21:50,"721 10th St, San Francisco, CA 94016" +301445,Macbook Pro Laptop,1,1700,12/16/19 19:31,"345 Park St, San Francisco, CA 94016" +301446,AA Batteries (4-pack),1,3.84,12/01/19 10:12,"927 13th St, San Francisco, CA 94016" +301447,AA Batteries (4-pack),1,3.84,12/08/19 14:26,"443 7th St, San Francisco, CA 94016" +301448,Bose SoundSport Headphones,1,99.99,12/31/19 14:41,"378 Willow St, New York City, NY 10001" +301449,USB-C Charging Cable,1,11.95,12/01/19 18:15,"44 10th St, Boston, MA 02215" +301450,Wired Headphones,1,11.99,12/31/19 21:15,"731 Meadow St, Portland, OR 97035" +301451,USB-C Charging Cable,1,11.95,12/16/19 17:01,"679 8th St, Seattle, WA 98101" +301452,34in Ultrawide Monitor,1,379.99,12/01/19 20:08,"783 Chestnut St, Boston, MA 02215" +301453,USB-C Charging Cable,1,11.95,12/25/19 13:36,"262 Hickory St, Austin, TX 73301" +301454,AAA Batteries (4-pack),1,2.99,12/21/19 08:16,"304 Elm St, Atlanta, GA 30301" +301455,USB-C Charging Cable,1,11.95,12/04/19 12:29,"828 4th St, Los Angeles, CA 90001" +301456,AA Batteries (4-pack),1,3.84,12/16/19 18:22,"288 Main St, Dallas, TX 75001" +301457,Wired Headphones,1,11.99,12/08/19 20:13,"95 2nd St, Los Angeles, CA 90001" +301458,iPhone,1,700,12/01/19 09:15,"812 13th St, Portland, OR 97035" +301459,AAA Batteries (4-pack),3,2.99,12/01/19 17:12,"731 Jackson St, San Francisco, CA 94016" +301460,Apple Airpods Headphones,1,150,12/04/19 22:49,"319 Lincoln St, New York City, NY 10001" +301461,Google Phone,1,600,12/16/19 18:59,"417 2nd St, Atlanta, GA 30301" +301462,Apple Airpods Headphones,1,150,12/26/19 13:14,"230 Park St, Austin, TX 73301" +301463,Lightning Charging Cable,1,14.95,12/12/19 20:34,"446 Cedar St, Boston, MA 02215" +301464,Macbook Pro Laptop,1,1700,12/19/19 20:22,"435 Wilson St, Portland, OR 97035" +301465,27in FHD Monitor,1,149.99,12/01/19 10:42,"616 Pine St, Dallas, TX 75001" +301466,USB-C Charging Cable,2,11.95,12/01/19 13:52,"160 Johnson St, New York City, NY 10001" +301467,34in Ultrawide Monitor,1,379.99,12/24/19 23:05,"996 Willow St, New York City, NY 10001" +301468,Bose SoundSport Headphones,1,99.99,12/28/19 13:40,"111 Lake St, Los Angeles, CA 90001" +301469,USB-C Charging Cable,1,11.95,12/04/19 20:33,"819 Cedar St, Seattle, WA 98101" +301470,27in 4K Gaming Monitor,1,389.99,12/25/19 13:05,"117 Willow St, Los Angeles, CA 90001" +301471,Wired Headphones,1,11.99,12/27/19 10:51,"72 Highland St, San Francisco, CA 94016" +301472,Macbook Pro Laptop,1,1700,12/04/19 12:08,"631 Walnut St, Dallas, TX 75001" +301473,Bose SoundSport Headphones,1,99.99,12/08/19 07:14,"138 Dogwood St, Austin, TX 73301" +301474,20in Monitor,1,109.99,12/06/19 00:50,"601 13th St, San Francisco, CA 94016" +301475,AAA Batteries (4-pack),1,2.99,12/01/19 17:05,"977 Wilson St, New York City, NY 10001" +301476,Wired Headphones,1,11.99,12/14/19 20:41,"55 Park St, New York City, NY 10001" +301477,AAA Batteries (4-pack),1,2.99,12/23/19 20:04,"756 Ridge St, San Francisco, CA 94016" +301478,AA Batteries (4-pack),1,3.84,12/11/19 14:18,"196 Jackson St, Los Angeles, CA 90001" +301479,AAA Batteries (4-pack),2,2.99,12/18/19 17:28,"283 Center St, Boston, MA 02215" +301480,iPhone,1,700,12/18/19 10:20,"334 North St, Los Angeles, CA 90001" +301481,Wired Headphones,1,11.99,12/29/19 18:23,"959 5th St, San Francisco, CA 94016" +301482,AAA Batteries (4-pack),1,2.99,12/20/19 13:55,"499 7th St, San Francisco, CA 94016" +301483,Bose SoundSport Headphones,1,99.99,12/30/19 20:59,"792 11th St, San Francisco, CA 94016" +301484,Vareebadd Phone,1,400,12/19/19 15:31,"401 Park St, San Francisco, CA 94016" +301485,AAA Batteries (4-pack),1,2.99,12/13/19 10:58,"20 Dogwood St, Boston, MA 02215" +301486,Flatscreen TV,1,300,12/27/19 14:55,"855 Hickory St, Austin, TX 73301" +301487,AA Batteries (4-pack),2,3.84,12/19/19 12:27,"336 Willow St, Boston, MA 02215" +301488,Macbook Pro Laptop,1,1700,12/26/19 12:55,"693 11th St, Atlanta, GA 30301" +301489,Lightning Charging Cable,1,14.95,12/04/19 09:54,"821 Maple St, Los Angeles, CA 90001" +301490,20in Monitor,1,109.99,12/13/19 12:21,"239 Lakeview St, New York City, NY 10001" +301491,Apple Airpods Headphones,1,150,12/11/19 23:38,"96 Main St, Los Angeles, CA 90001" +301492,Macbook Pro Laptop,1,1700,12/18/19 07:51,"918 Main St, Los Angeles, CA 90001" +301493,AA Batteries (4-pack),1,3.84,12/15/19 17:53,"184 12th St, Dallas, TX 75001" +301494,Google Phone,1,600,12/31/19 10:01,"696 Adams St, San Francisco, CA 94016" +301495,Apple Airpods Headphones,1,150,12/26/19 13:02,"110 10th St, New York City, NY 10001" +301496,Wired Headphones,1,11.99,12/20/19 20:47,"420 Pine St, Los Angeles, CA 90001" +301497,Bose SoundSport Headphones,1,99.99,12/05/19 20:41,"578 Jackson St, San Francisco, CA 94016" +301498,USB-C Charging Cable,1,11.95,12/08/19 09:45,"338 6th St, San Francisco, CA 94016" +301499,Bose SoundSport Headphones,1,99.99,12/25/19 20:50,"948 Sunset St, Los Angeles, CA 90001" +301500,USB-C Charging Cable,1,11.95,12/19/19 09:19,"927 River St, Atlanta, GA 30301" +301500,Bose SoundSport Headphones,1,99.99,12/19/19 09:19,"927 River St, Atlanta, GA 30301" +301501,Apple Airpods Headphones,1,150,12/25/19 18:43,"647 Dogwood St, Los Angeles, CA 90001" +301502,USB-C Charging Cable,1,11.95,12/21/19 15:37,"135 Maple St, Boston, MA 02215" +301503,Wired Headphones,1,11.99,12/18/19 12:05,"95 Highland St, Atlanta, GA 30301" +301504,AA Batteries (4-pack),1,3.84,12/27/19 13:23,"818 River St, Atlanta, GA 30301" +301505,27in FHD Monitor,1,149.99,12/13/19 22:14,"181 Maple St, Boston, MA 02215" +301506,Apple Airpods Headphones,1,150,12/20/19 13:46,"16 Maple St, Austin, TX 73301" +301507,Wired Headphones,1,11.99,12/04/19 19:24,"47 Cedar St, Los Angeles, CA 90001" +301508,AAA Batteries (4-pack),2,2.99,12/28/19 23:50,"778 11th St, Dallas, TX 75001" +301509,AAA Batteries (4-pack),2,2.99,12/08/19 08:07,"702 Madison St, Boston, MA 02215" +301510,AA Batteries (4-pack),1,3.84,12/22/19 12:24,"905 8th St, New York City, NY 10001" +301511,Flatscreen TV,1,300,12/09/19 15:05,"104 Johnson St, New York City, NY 10001" +301512,Lightning Charging Cable,1,14.95,12/07/19 16:14,"530 Center St, Boston, MA 02215" +301513,Lightning Charging Cable,1,14.95,12/15/19 15:21,"772 Hill St, San Francisco, CA 94016" +301514,USB-C Charging Cable,1,11.95,12/12/19 19:01,"653 7th St, Atlanta, GA 30301" +301515,Vareebadd Phone,1,400,12/16/19 23:44,"824 Ridge St, San Francisco, CA 94016" +301516,27in 4K Gaming Monitor,1,389.99,12/04/19 19:08,"207 Hill St, Seattle, WA 98101" +301517,AAA Batteries (4-pack),1,2.99,12/20/19 09:39,"484 Jefferson St, Los Angeles, CA 90001" +301518,USB-C Charging Cable,1,11.95,12/29/19 12:03,"845 Johnson St, Austin, TX 73301" +301519,AA Batteries (4-pack),1,3.84,12/23/19 18:48,"802 Church St, San Francisco, CA 94016" +301520,27in 4K Gaming Monitor,1,389.99,12/17/19 00:10,"643 4th St, Los Angeles, CA 90001" +301521,Apple Airpods Headphones,1,150,12/27/19 18:59,"11 Church St, Dallas, TX 75001" +301522,iPhone,1,700,12/15/19 19:57,"59 Cedar St, Seattle, WA 98101" +301523,Wired Headphones,1,11.99,12/07/19 23:24,"954 Chestnut St, San Francisco, CA 94016" +301524,AA Batteries (4-pack),2,3.84,12/14/19 20:11,"683 Washington St, Atlanta, GA 30301" +301525,USB-C Charging Cable,1,11.95,12/28/19 21:02,"849 Cherry St, Los Angeles, CA 90001" +301526,ThinkPad Laptop,1,999.99,12/12/19 14:16,"997 Ridge St, Portland, OR 97035" +301527,Lightning Charging Cable,2,14.95,12/19/19 20:19,"130 Sunset St, Portland, OR 97035" +301528,AAA Batteries (4-pack),3,2.99,12/18/19 11:54,"295 West St, San Francisco, CA 94016" +301529,Apple Airpods Headphones,1,150,12/17/19 18:19,"151 Wilson St, San Francisco, CA 94016" +301530,Flatscreen TV,1,300,12/14/19 12:22,"716 Lakeview St, Austin, TX 73301" +301531,AAA Batteries (4-pack),4,2.99,12/18/19 09:58,"19 11th St, New York City, NY 10001" +301532,20in Monitor,1,109.99,12/25/19 19:37,"513 Walnut St, Seattle, WA 98101" +301533,27in 4K Gaming Monitor,1,389.99,12/03/19 10:29,"258 8th St, New York City, NY 10001" +301534,AA Batteries (4-pack),1,3.84,12/07/19 19:12,"920 River St, Seattle, WA 98101" +301535,Flatscreen TV,1,300,12/06/19 12:50,"756 13th St, Boston, MA 02215" +301536,Apple Airpods Headphones,1,150,12/28/19 20:40,"860 1st St, Austin, TX 73301" +301537,Lightning Charging Cable,1,14.95,12/10/19 13:48,"599 Wilson St, Atlanta, GA 30301" +301538,USB-C Charging Cable,1,11.95,12/07/19 21:40,"328 14th St, Dallas, TX 75001" +301539,AAA Batteries (4-pack),1,2.99,12/10/19 22:07,"509 7th St, Los Angeles, CA 90001" +301540,Apple Airpods Headphones,1,150,12/15/19 08:31,"393 Lincoln St, Dallas, TX 75001" +301541,USB-C Charging Cable,1,11.95,12/12/19 18:18,"722 11th St, Atlanta, GA 30301" +301542,Apple Airpods Headphones,1,150,12/17/19 21:38,"622 Wilson St, Boston, MA 02215" +301543,27in 4K Gaming Monitor,1,389.99,12/08/19 01:47,"717 Spruce St, Boston, MA 02215" +301544,Lightning Charging Cable,1,14.95,12/15/19 16:02,"819 Willow St, Dallas, TX 75001" +301545,Wired Headphones,1,11.99,12/17/19 16:21,"777 River St, San Francisco, CA 94016" +301546,USB-C Charging Cable,1,11.95,01/01/20 03:31,"988 Center St, Los Angeles, CA 90001" +301547,Apple Airpods Headphones,1,150,12/06/19 14:23,"180 6th St, San Francisco, CA 94016" +301548,Macbook Pro Laptop,1,1700,12/21/19 15:47,"181 10th St, Los Angeles, CA 90001" +301549,Flatscreen TV,1,300,12/05/19 12:39,"372 Walnut St, Los Angeles, CA 90001" +301550,Lightning Charging Cable,1,14.95,12/08/19 16:12,"465 Church St, Atlanta, GA 30301" +301551,USB-C Charging Cable,1,11.95,12/16/19 00:04,"637 Lake St, San Francisco, CA 94016" +301552,AAA Batteries (4-pack),1,2.99,12/02/19 17:41,"828 Spruce St, San Francisco, CA 94016" +301553,AA Batteries (4-pack),1,3.84,12/21/19 09:57,"537 8th St, Los Angeles, CA 90001" +301554,Bose SoundSport Headphones,1,99.99,12/18/19 20:20,"869 Forest St, San Francisco, CA 94016" +301555,iPhone,1,700,12/26/19 22:46,"590 South St, Los Angeles, CA 90001" +301556,USB-C Charging Cable,1,11.95,12/04/19 21:14,"576 Sunset St, Los Angeles, CA 90001" +301557,USB-C Charging Cable,2,11.95,12/04/19 22:59,"596 Main St, Boston, MA 02215" +301558,AA Batteries (4-pack),1,3.84,12/30/19 19:55,"860 Spruce St, San Francisco, CA 94016" +301559,Bose SoundSport Headphones,1,99.99,12/02/19 05:53,"246 South St, Los Angeles, CA 90001" +301560,Apple Airpods Headphones,1,150,12/14/19 18:50,"662 Walnut St, Boston, MA 02215" +301561,Wired Headphones,1,11.99,12/14/19 22:52,"493 Elm St, San Francisco, CA 94016" +301562,ThinkPad Laptop,1,999.99,12/03/19 21:21,"101 North St, Dallas, TX 75001" +301563,Lightning Charging Cable,1,14.95,12/01/19 12:16,"166 Jackson St, San Francisco, CA 94016" +301564,27in 4K Gaming Monitor,1,389.99,12/17/19 09:28,"363 13th St, New York City, NY 10001" +301565,Wired Headphones,1,11.99,12/22/19 16:47,"375 Elm St, Atlanta, GA 30301" +301566,Lightning Charging Cable,1,14.95,12/02/19 19:05,"185 Jackson St, Boston, MA 02215" +301567,Apple Airpods Headphones,1,150,12/14/19 17:45,"69 West St, Atlanta, GA 30301" +301568,Lightning Charging Cable,1,14.95,12/20/19 19:07,"933 Forest St, San Francisco, CA 94016" +301569,AAA Batteries (4-pack),2,2.99,12/18/19 14:07,"527 10th St, Austin, TX 73301" +301570,AAA Batteries (4-pack),1,2.99,12/27/19 15:23,"519 Jackson St, Los Angeles, CA 90001" +301571,AAA Batteries (4-pack),1,2.99,12/04/19 16:30,"867 Walnut St, Portland, OR 97035" +301572,ThinkPad Laptop,1,999.99,12/24/19 18:42,"117 Jackson St, San Francisco, CA 94016" +301573,Bose SoundSport Headphones,1,99.99,12/06/19 15:51,"713 Washington St, New York City, NY 10001" +301574,USB-C Charging Cable,1,11.95,12/18/19 00:01,"762 Meadow St, Portland, ME 04101" +301575,34in Ultrawide Monitor,1,379.99,12/02/19 14:30,"740 14th St, Austin, TX 73301" +301576,Wired Headphones,1,11.99,12/21/19 11:46,"871 Main St, San Francisco, CA 94016" +301577,Google Phone,1,600,12/08/19 12:47,"441 Cedar St, Boston, MA 02215" +301578,ThinkPad Laptop,1,999.99,12/26/19 18:11,"187 Center St, San Francisco, CA 94016" +301579,Bose SoundSport Headphones,1,99.99,12/16/19 14:16,"35 Park St, Boston, MA 02215" +301580,Bose SoundSport Headphones,1,99.99,12/20/19 20:21,"937 Hickory St, Austin, TX 73301" +301581,USB-C Charging Cable,1,11.95,12/12/19 23:12,"950 Cedar St, San Francisco, CA 94016" +301582,Lightning Charging Cable,1,14.95,12/25/19 23:24,"615 Cedar St, Atlanta, GA 30301" +301583,Wired Headphones,1,11.99,12/10/19 17:35,"299 West St, New York City, NY 10001" +301584,AA Batteries (4-pack),1,3.84,12/24/19 21:27,"274 Hill St, San Francisco, CA 94016" +301585,Bose SoundSport Headphones,1,99.99,12/29/19 00:31,"942 2nd St, Seattle, WA 98101" +301586,Wired Headphones,1,11.99,12/18/19 20:09,"723 North St, Boston, MA 02215" +301587,27in FHD Monitor,1,149.99,12/09/19 10:48,"183 Main St, Atlanta, GA 30301" +301588,USB-C Charging Cable,1,11.95,12/12/19 07:40,"492 1st St, Los Angeles, CA 90001" +301589,Wired Headphones,1,11.99,12/24/19 22:25,"182 South St, Los Angeles, CA 90001" +301590,USB-C Charging Cable,1,11.95,12/29/19 19:55,"736 Hill St, Atlanta, GA 30301" +301591,AA Batteries (4-pack),1,3.84,12/10/19 18:09,"969 Cedar St, New York City, NY 10001" +301592,AAA Batteries (4-pack),2,2.99,12/27/19 12:11,"738 Dogwood St, New York City, NY 10001" +301593,Macbook Pro Laptop,1,1700,12/06/19 13:14,"556 5th St, New York City, NY 10001" +301594,AAA Batteries (4-pack),3,2.99,12/28/19 10:03,"385 South St, Boston, MA 02215" +301595,Lightning Charging Cable,1,14.95,12/10/19 15:21,"929 Cedar St, San Francisco, CA 94016" +301596,USB-C Charging Cable,1,11.95,12/30/19 17:55,"66 12th St, Austin, TX 73301" +301597,AA Batteries (4-pack),1,3.84,12/09/19 14:49,"243 Maple St, San Francisco, CA 94016" +301598,27in 4K Gaming Monitor,1,389.99,12/04/19 15:13,"10 4th St, Austin, TX 73301" +301599,Vareebadd Phone,1,400,12/21/19 17:20,"703 Ridge St, New York City, NY 10001" +301600,Lightning Charging Cable,1,14.95,12/15/19 11:19,"591 Madison St, New York City, NY 10001" +301601,Bose SoundSport Headphones,1,99.99,12/01/19 12:20,"485 South St, New York City, NY 10001" +301602,AAA Batteries (4-pack),2,2.99,12/12/19 16:24,"827 Lakeview St, San Francisco, CA 94016" +301603,Lightning Charging Cable,1,14.95,12/01/19 13:00,"918 Cedar St, Los Angeles, CA 90001" +301604,Apple Airpods Headphones,1,150,12/10/19 23:46,"970 West St, Austin, TX 73301" +301605,AA Batteries (4-pack),1,3.84,12/04/19 20:26,"468 Highland St, Seattle, WA 98101" +301606,AA Batteries (4-pack),2,3.84,12/27/19 20:38,"925 Ridge St, Atlanta, GA 30301" +301607,Google Phone,1,600,12/14/19 01:38,"167 Dogwood St, Boston, MA 02215" +301608,ThinkPad Laptop,1,999.99,12/21/19 07:52,"578 Park St, Portland, OR 97035" +301609,USB-C Charging Cable,1,11.95,12/24/19 09:31,"851 Hill St, San Francisco, CA 94016" +301610,AAA Batteries (4-pack),1,2.99,12/09/19 08:43,"479 Walnut St, Boston, MA 02215" +301611,AA Batteries (4-pack),1,3.84,12/03/19 17:01,"198 Jackson St, Los Angeles, CA 90001" +301612,Wired Headphones,2,11.99,12/25/19 17:19,"131 Hill St, San Francisco, CA 94016" +301613,34in Ultrawide Monitor,1,379.99,12/25/19 16:36,"152 North St, Boston, MA 02215" +301614,ThinkPad Laptop,1,999.99,12/25/19 20:59,"471 11th St, Boston, MA 02215" +301615,AA Batteries (4-pack),7,3.84,12/26/19 13:56,"100 13th St, Los Angeles, CA 90001" +301616,Google Phone,1,600,12/27/19 10:15,"683 Chestnut St, New York City, NY 10001" +301616,iPhone,1,700,12/27/19 10:15,"683 Chestnut St, New York City, NY 10001" +301617,Macbook Pro Laptop,1,1700,12/07/19 23:36,"622 Johnson St, Los Angeles, CA 90001" +301618,AAA Batteries (4-pack),1,2.99,12/10/19 08:07,"186 Spruce St, Dallas, TX 75001" +301619,Google Phone,1,600,12/22/19 15:39,"636 Main St, San Francisco, CA 94016" +301620,USB-C Charging Cable,1,11.95,12/29/19 11:00,"899 11th St, Los Angeles, CA 90001" +301621,Bose SoundSport Headphones,1,99.99,12/29/19 03:08,"209 14th St, Dallas, TX 75001" +301622,Lightning Charging Cable,1,14.95,12/31/19 11:24,"480 Jefferson St, Los Angeles, CA 90001" +301623,iPhone,1,700,12/20/19 20:15,"789 West St, Austin, TX 73301" +301624,Apple Airpods Headphones,1,150,12/01/19 10:20,"51 Hickory St, New York City, NY 10001" +301625,USB-C Charging Cable,1,11.95,12/17/19 18:39,"786 West St, Atlanta, GA 30301" +301626,ThinkPad Laptop,1,999.99,12/22/19 12:21,"991 12th St, San Francisco, CA 94016" +301627,AAA Batteries (4-pack),1,2.99,12/18/19 08:16,"268 Jackson St, Atlanta, GA 30301" +301628,Bose SoundSport Headphones,1,99.99,12/28/19 09:21,"283 Church St, New York City, NY 10001" +301629,27in FHD Monitor,2,149.99,12/22/19 22:31,"543 5th St, New York City, NY 10001" +301630,AA Batteries (4-pack),2,3.84,12/23/19 00:26,"960 Church St, San Francisco, CA 94016" +301631,Lightning Charging Cable,1,14.95,12/01/19 21:59,"7 Jefferson St, San Francisco, CA 94016" +301632,ThinkPad Laptop,1,999.99,12/28/19 18:43,"210 Highland St, New York City, NY 10001" +301633,Lightning Charging Cable,1,14.95,12/10/19 01:09,"597 Highland St, Atlanta, GA 30301" +301634,Lightning Charging Cable,1,14.95,12/03/19 13:06,"307 Highland St, Boston, MA 02215" +301635,AAA Batteries (4-pack),1,2.99,12/18/19 23:02,"468 9th St, Dallas, TX 75001" +301636,Lightning Charging Cable,2,14.95,12/08/19 22:19,"372 Dogwood St, Portland, OR 97035" +301637,Lightning Charging Cable,2,14.95,12/16/19 09:36,"451 13th St, San Francisco, CA 94016" +301638,Bose SoundSport Headphones,1,99.99,12/01/19 07:09,"500 Highland St, Boston, MA 02215" +301639,Wired Headphones,1,11.99,12/18/19 12:40,"291 Dogwood St, Dallas, TX 75001" +301640,USB-C Charging Cable,1,11.95,12/14/19 07:46,"780 Hickory St, Los Angeles, CA 90001" +301641,AA Batteries (4-pack),1,3.84,12/22/19 20:29,"135 1st St, San Francisco, CA 94016" +301642,AAA Batteries (4-pack),1,2.99,12/04/19 18:54,"708 2nd St, San Francisco, CA 94016" +301643,AAA Batteries (4-pack),1,2.99,12/25/19 23:10,"279 Meadow St, Boston, MA 02215" +301644,Wired Headphones,1,11.99,12/15/19 10:31,"490 Johnson St, Portland, OR 97035" +301645,Bose SoundSport Headphones,1,99.99,12/27/19 13:05,"921 Hickory St, Los Angeles, CA 90001" +301646,27in FHD Monitor,1,149.99,12/19/19 11:59,"581 Center St, Los Angeles, CA 90001" +301647,Flatscreen TV,1,300,12/29/19 10:03,"215 10th St, San Francisco, CA 94016" +301648,Google Phone,1,600,12/27/19 06:28,"644 Washington St, Los Angeles, CA 90001" +301649,Bose SoundSport Headphones,1,99.99,12/01/19 23:17,"22 13th St, Los Angeles, CA 90001" +301650,Bose SoundSport Headphones,1,99.99,12/28/19 09:52,"728 11th St, New York City, NY 10001" +301651,iPhone,1,700,12/09/19 19:32,"631 Park St, Los Angeles, CA 90001" +301652,20in Monitor,1,109.99,12/08/19 11:40,"996 Hickory St, New York City, NY 10001" +301653,Flatscreen TV,1,300,12/28/19 22:54,"82 Chestnut St, Los Angeles, CA 90001" +301654,34in Ultrawide Monitor,1,379.99,12/04/19 21:01,"715 Washington St, San Francisco, CA 94016" +301655,ThinkPad Laptop,1,999.99,12/19/19 13:43,"637 North St, Austin, TX 73301" +301656,Apple Airpods Headphones,1,150,12/16/19 10:51,"145 13th St, San Francisco, CA 94016" +301657,Flatscreen TV,1,300,12/26/19 13:52,"367 9th St, Boston, MA 02215" +301658,AA Batteries (4-pack),1,3.84,12/10/19 23:50,"442 Hickory St, San Francisco, CA 94016" +301659,27in FHD Monitor,1,149.99,12/24/19 13:17,"139 11th St, San Francisco, CA 94016" +301660,Apple Airpods Headphones,1,150,12/24/19 10:46,"801 Meadow St, New York City, NY 10001" +301661,USB-C Charging Cable,2,11.95,12/06/19 10:11,"391 8th St, Dallas, TX 75001" +301662,AA Batteries (4-pack),1,3.84,12/26/19 20:39,"660 Johnson St, Austin, TX 73301" +301663,AAA Batteries (4-pack),1,2.99,12/14/19 13:27,"229 Lakeview St, New York City, NY 10001" +301664,USB-C Charging Cable,1,11.95,12/30/19 19:51,"8 9th St, San Francisco, CA 94016" +301665,AA Batteries (4-pack),3,3.84,12/18/19 12:57,"290 2nd St, Atlanta, GA 30301" +301666,Flatscreen TV,1,300,12/13/19 00:31,"183 14th St, Austin, TX 73301" +301667,iPhone,1,700,12/29/19 17:41,"365 14th St, Los Angeles, CA 90001" +301667,Lightning Charging Cable,1,14.95,12/29/19 17:41,"365 14th St, Los Angeles, CA 90001" +301668,Flatscreen TV,1,300,12/12/19 19:12,"983 Lake St, Portland, ME 04101" +301669,AA Batteries (4-pack),2,3.84,12/24/19 21:31,"970 11th St, San Francisco, CA 94016" +301670,AAA Batteries (4-pack),1,2.99,12/07/19 14:20,"192 Meadow St, San Francisco, CA 94016" +301671,Wired Headphones,1,11.99,12/14/19 16:29,"131 Madison St, San Francisco, CA 94016" +301672,iPhone,1,700,12/12/19 15:30,"649 6th St, San Francisco, CA 94016" +301673,AAA Batteries (4-pack),1,2.99,12/16/19 21:03,"833 Main St, San Francisco, CA 94016" +301674,Wired Headphones,1,11.99,12/29/19 19:56,"518 Center St, San Francisco, CA 94016" +301675,USB-C Charging Cable,1,11.95,12/26/19 13:54,"523 Lincoln St, Dallas, TX 75001" +301676,ThinkPad Laptop,1,999.99,12/20/19 11:04,"738 Jackson St, Seattle, WA 98101" +301677,27in FHD Monitor,1,149.99,12/16/19 13:57,"214 Elm St, New York City, NY 10001" +301678,27in FHD Monitor,1,149.99,12/25/19 19:39,"888 Church St, New York City, NY 10001" +301679,Bose SoundSport Headphones,1,99.99,12/08/19 22:15,"854 Pine St, Los Angeles, CA 90001" +301680,AAA Batteries (4-pack),2,2.99,12/31/19 10:54,"326 Lakeview St, Seattle, WA 98101" +301681,20in Monitor,1,109.99,12/14/19 20:58,"778 10th St, San Francisco, CA 94016" +301682,27in 4K Gaming Monitor,1,389.99,12/07/19 18:52,"983 South St, New York City, NY 10001" +301683,AA Batteries (4-pack),1,3.84,12/01/19 20:50,"623 Lake St, Seattle, WA 98101" +301684,Lightning Charging Cable,1,14.95,12/03/19 11:12,"666 Main St, Portland, OR 97035" +301685,27in FHD Monitor,1,149.99,12/02/19 12:27,"654 West St, Atlanta, GA 30301" +301686,Apple Airpods Headphones,1,150,12/18/19 22:53,"828 Washington St, San Francisco, CA 94016" +301687,AA Batteries (4-pack),2,3.84,12/08/19 03:41,"519 2nd St, San Francisco, CA 94016" +301688,ThinkPad Laptop,1,999.99,12/16/19 23:01,"684 8th St, San Francisco, CA 94016" +301689,Lightning Charging Cable,1,14.95,12/14/19 05:43,"989 Cherry St, Atlanta, GA 30301" +301690,Lightning Charging Cable,1,14.95,12/19/19 17:58,"126 12th St, Dallas, TX 75001" +301691,Apple Airpods Headphones,1,150,12/23/19 08:58,"557 13th St, Los Angeles, CA 90001" +301692,27in 4K Gaming Monitor,1,389.99,12/05/19 14:28,"401 Jackson St, Los Angeles, CA 90001" +301693,USB-C Charging Cable,1,11.95,12/21/19 09:31,"241 Adams St, Los Angeles, CA 90001" +301694,AAA Batteries (4-pack),1,2.99,12/19/19 17:58,"937 Wilson St, San Francisco, CA 94016" +301695,Google Phone,1,600,12/08/19 08:56,"107 Lake St, New York City, NY 10001" +301696,Lightning Charging Cable,1,14.95,12/28/19 05:44,"724 Chestnut St, Los Angeles, CA 90001" +301697,34in Ultrawide Monitor,1,379.99,12/10/19 11:09,"24 Hickory St, Los Angeles, CA 90001" +301697,USB-C Charging Cable,1,11.95,12/10/19 11:09,"24 Hickory St, Los Angeles, CA 90001" +301698,Bose SoundSport Headphones,1,99.99,12/17/19 01:25,"466 South St, Los Angeles, CA 90001" +301699,27in FHD Monitor,1,149.99,12/01/19 19:54,"145 9th St, Atlanta, GA 30301" +301700,USB-C Charging Cable,1,11.95,12/16/19 18:18,"302 14th St, Boston, MA 02215" +301701,iPhone,1,700,12/14/19 12:05,"691 River St, Austin, TX 73301" +301702,AAA Batteries (4-pack),1,2.99,12/16/19 20:00,"833 13th St, New York City, NY 10001" +301703,USB-C Charging Cable,1,11.95,12/18/19 20:02,"102 Pine St, Dallas, TX 75001" +301704,USB-C Charging Cable,2,11.95,12/17/19 09:30,"613 North St, New York City, NY 10001" +301705,Wired Headphones,1,11.99,12/15/19 15:55,"766 Madison St, Los Angeles, CA 90001" +301706,USB-C Charging Cable,1,11.95,12/09/19 01:01,"31 River St, Atlanta, GA 30301" +301707,USB-C Charging Cable,1,11.95,12/21/19 19:47,"140 12th St, Los Angeles, CA 90001" +301708,USB-C Charging Cable,1,11.95,12/03/19 12:59,"313 12th St, Boston, MA 02215" +301709,Google Phone,1,600,12/11/19 21:12,"373 5th St, San Francisco, CA 94016" +301709,USB-C Charging Cable,1,11.95,12/11/19 21:12,"373 5th St, San Francisco, CA 94016" +301710,Lightning Charging Cable,1,14.95,12/18/19 21:14,"238 Main St, San Francisco, CA 94016" +301711,USB-C Charging Cable,1,11.95,12/18/19 13:56,"393 Willow St, San Francisco, CA 94016" +301712,20in Monitor,1,109.99,12/13/19 23:00,"891 Wilson St, Seattle, WA 98101" +301713,Apple Airpods Headphones,1,150,12/19/19 19:07,"933 Forest St, Seattle, WA 98101" +301714,Macbook Pro Laptop,1,1700,12/27/19 15:49,"28 13th St, New York City, NY 10001" +301715,AA Batteries (4-pack),2,3.84,12/08/19 15:25,"604 1st St, San Francisco, CA 94016" +301716,Macbook Pro Laptop,1,1700,12/19/19 17:21,"260 Meadow St, Dallas, TX 75001" +301717,AAA Batteries (4-pack),3,2.99,12/19/19 11:31,"455 14th St, Dallas, TX 75001" +301718,ThinkPad Laptop,1,999.99,12/30/19 14:35,"211 South St, Portland, OR 97035" +301719,Bose SoundSport Headphones,1,99.99,12/28/19 12:35,"884 8th St, San Francisco, CA 94016" +301720,AAA Batteries (4-pack),1,2.99,12/12/19 17:22,"448 9th St, Austin, TX 73301" +301721,Wired Headphones,1,11.99,12/23/19 09:56,"152 5th St, San Francisco, CA 94016" +301722,AAA Batteries (4-pack),1,2.99,12/27/19 10:35,"881 Elm St, San Francisco, CA 94016" +301723,Apple Airpods Headphones,1,150,12/03/19 10:20,"657 South St, Los Angeles, CA 90001" +301724,AA Batteries (4-pack),1,3.84,12/31/19 13:01,"498 Main St, Seattle, WA 98101" +301725,AAA Batteries (4-pack),1,2.99,12/20/19 22:02,"290 Main St, Los Angeles, CA 90001" +301726,ThinkPad Laptop,1,999.99,12/22/19 22:47,"757 Elm St, Los Angeles, CA 90001" +301727,Bose SoundSport Headphones,1,99.99,12/16/19 00:13,"404 Meadow St, San Francisco, CA 94016" +301728,USB-C Charging Cable,1,11.95,12/20/19 16:12,"738 Park St, Los Angeles, CA 90001" +301729,Apple Airpods Headphones,1,150,12/15/19 17:20,"838 14th St, Los Angeles, CA 90001" +301730,Apple Airpods Headphones,1,150,12/16/19 09:03,"466 Forest St, Boston, MA 02215" +301731,Lightning Charging Cable,1,14.95,12/20/19 21:38,"680 10th St, San Francisco, CA 94016" +301732,AA Batteries (4-pack),4,3.84,12/21/19 12:32,"584 Church St, San Francisco, CA 94016" +301733,AA Batteries (4-pack),1,3.84,12/12/19 08:19,"433 9th St, Boston, MA 02215" +301734,AAA Batteries (4-pack),2,2.99,12/11/19 11:35,"772 1st St, San Francisco, CA 94016" +301734,Macbook Pro Laptop,1,1700,12/11/19 11:35,"772 1st St, San Francisco, CA 94016" +301735,Lightning Charging Cable,1,14.95,12/10/19 20:44,"907 West St, Atlanta, GA 30301" +301736,Apple Airpods Headphones,1,150,12/20/19 09:07,"127 Elm St, Boston, MA 02215" +301737,AA Batteries (4-pack),1,3.84,12/19/19 13:06,"771 11th St, Atlanta, GA 30301" +301738,27in FHD Monitor,1,149.99,12/24/19 13:05,"815 Hill St, Boston, MA 02215" +301739,Lightning Charging Cable,1,14.95,12/07/19 09:15,"673 Spruce St, Los Angeles, CA 90001" +301740,AA Batteries (4-pack),1,3.84,12/22/19 00:18,"828 Church St, San Francisco, CA 94016" +301741,Wired Headphones,1,11.99,12/18/19 09:23,"648 Adams St, San Francisco, CA 94016" +301742,Lightning Charging Cable,1,14.95,12/05/19 21:15,"32 Hill St, Seattle, WA 98101" +301743,20in Monitor,1,109.99,12/26/19 15:45,"224 8th St, Los Angeles, CA 90001" +301744,AAA Batteries (4-pack),2,2.99,12/14/19 11:42,"591 Lakeview St, Seattle, WA 98101" +301745,Lightning Charging Cable,2,14.95,12/17/19 17:43,"694 Highland St, New York City, NY 10001" +301746,Wired Headphones,1,11.99,12/05/19 17:03,"497 Church St, San Francisco, CA 94016" +301747,ThinkPad Laptop,1,999.99,12/20/19 08:28,"793 River St, New York City, NY 10001" +301748,34in Ultrawide Monitor,1,379.99,12/11/19 18:22,"454 Forest St, Seattle, WA 98101" +301748,34in Ultrawide Monitor,1,379.99,12/11/19 18:22,"454 Forest St, Seattle, WA 98101" +301749,AAA Batteries (4-pack),2,2.99,12/09/19 16:18,"563 6th St, Portland, OR 97035" +301750,Vareebadd Phone,1,400,12/10/19 15:57,"218 Jefferson St, New York City, NY 10001" +301751,iPhone,1,700,12/06/19 17:20,"381 Spruce St, Los Angeles, CA 90001" +301752,Bose SoundSport Headphones,1,99.99,12/24/19 08:03,"629 2nd St, Los Angeles, CA 90001" +301753,AAA Batteries (4-pack),1,2.99,12/19/19 19:47,"63 4th St, San Francisco, CA 94016" +301754,AA Batteries (4-pack),2,3.84,12/26/19 00:30,"644 Meadow St, New York City, NY 10001" +301755,AAA Batteries (4-pack),3,2.99,12/30/19 15:10,"740 2nd St, Austin, TX 73301" +301756,AA Batteries (4-pack),1,3.84,12/29/19 12:21,"28 Highland St, Los Angeles, CA 90001" +301757,AA Batteries (4-pack),1,3.84,12/04/19 21:13,"404 Adams St, San Francisco, CA 94016" +301758,Apple Airpods Headphones,1,150,12/30/19 00:50,"185 2nd St, San Francisco, CA 94016" +301759,AA Batteries (4-pack),1,3.84,12/23/19 15:06,"972 Maple St, San Francisco, CA 94016" +301760,Bose SoundSport Headphones,1,99.99,12/17/19 09:01,"847 Ridge St, Atlanta, GA 30301" +301761,ThinkPad Laptop,1,999.99,12/01/19 05:44,"153 Ridge St, Los Angeles, CA 90001" +301762,Bose SoundSport Headphones,1,99.99,12/05/19 01:58,"963 Lake St, Seattle, WA 98101" +301763,Wired Headphones,1,11.99,12/06/19 21:53,"649 Walnut St, Boston, MA 02215" +301764,AA Batteries (4-pack),1,3.84,12/25/19 19:57,"108 11th St, Boston, MA 02215" +301765,AA Batteries (4-pack),4,3.84,12/15/19 20:27,"80 6th St, Austin, TX 73301" +301766,27in FHD Monitor,1,149.99,12/19/19 11:09,"798 7th St, Dallas, TX 75001" +301767,Apple Airpods Headphones,1,150,12/23/19 00:17,"376 Cherry St, Dallas, TX 75001" +301768,USB-C Charging Cable,1,11.95,12/03/19 12:26,"941 Hill St, Dallas, TX 75001" +301769,AA Batteries (4-pack),1,3.84,12/25/19 18:30,"829 Meadow St, Portland, OR 97035" +301770,iPhone,1,700,12/24/19 17:42,"856 Cherry St, Austin, TX 73301" +301770,Lightning Charging Cable,1,14.95,12/24/19 17:42,"856 Cherry St, Austin, TX 73301" +301771,Wired Headphones,1,11.99,12/30/19 00:53,"492 Cherry St, Atlanta, GA 30301" +301772,Lightning Charging Cable,1,14.95,12/31/19 04:18,"426 9th St, San Francisco, CA 94016" +301773,27in FHD Monitor,1,149.99,12/06/19 10:11,"200 Cherry St, New York City, NY 10001" +301774,Lightning Charging Cable,1,14.95,12/20/19 20:22,"39 Willow St, Los Angeles, CA 90001" +301775,AA Batteries (4-pack),1,3.84,12/07/19 13:24,"716 1st St, Los Angeles, CA 90001" +301776,Wired Headphones,1,11.99,12/13/19 16:43,"937 Cherry St, San Francisco, CA 94016" +301777,AA Batteries (4-pack),1,3.84,12/06/19 22:18,"128 5th St, San Francisco, CA 94016" +301778,AAA Batteries (4-pack),1,2.99,12/14/19 16:25,"650 11th St, Atlanta, GA 30301" +301779,Wired Headphones,1,11.99,12/06/19 11:38,"302 Johnson St, San Francisco, CA 94016" +301780,AA Batteries (4-pack),1,3.84,12/08/19 18:58,"346 9th St, San Francisco, CA 94016" +301781,Apple Airpods Headphones,1,150,12/28/19 10:05,"445 1st St, San Francisco, CA 94016" +301782,AAA Batteries (4-pack),2,2.99,12/22/19 11:27,"725 Park St, Boston, MA 02215" +301783,AAA Batteries (4-pack),1,2.99,12/05/19 12:04,"162 North St, Austin, TX 73301" +301784,iPhone,1,700,12/29/19 06:32,"865 5th St, Portland, OR 97035" +301784,Lightning Charging Cable,1,14.95,12/29/19 06:32,"865 5th St, Portland, OR 97035" +301785,Bose SoundSport Headphones,1,99.99,12/20/19 17:44,"880 Lincoln St, San Francisco, CA 94016" +301786,AA Batteries (4-pack),1,3.84,12/01/19 21:27,"286 Elm St, New York City, NY 10001" +301787,AA Batteries (4-pack),1,3.84,12/25/19 11:07,"911 Chestnut St, Boston, MA 02215" +301788,27in 4K Gaming Monitor,1,389.99,12/26/19 08:31,"342 Hill St, Seattle, WA 98101" +301789,20in Monitor,1,109.99,12/25/19 23:50,"286 Lincoln St, Dallas, TX 75001" +301790,AAA Batteries (4-pack),1,2.99,12/23/19 21:17,"995 6th St, Boston, MA 02215" +301791,AAA Batteries (4-pack),1,2.99,12/26/19 20:48,"275 5th St, Boston, MA 02215" +301792,Macbook Pro Laptop,1,1700,12/20/19 03:50,"492 River St, Seattle, WA 98101" +301793,USB-C Charging Cable,1,11.95,12/07/19 16:14,"605 Chestnut St, San Francisco, CA 94016" +301794,Macbook Pro Laptop,1,1700,12/28/19 21:50,"396 11th St, Seattle, WA 98101" +301795,AA Batteries (4-pack),1,3.84,12/06/19 22:31,"158 6th St, Los Angeles, CA 90001" +301796,27in FHD Monitor,1,149.99,12/09/19 21:56,"788 Pine St, San Francisco, CA 94016" +301797,Wired Headphones,1,11.99,12/31/19 15:43,"38 Willow St, New York City, NY 10001" +301798,Wired Headphones,1,11.99,12/21/19 09:46,"128 2nd St, Los Angeles, CA 90001" +301799,Flatscreen TV,1,300,12/10/19 20:58,"506 1st St, Dallas, TX 75001" +301800,Lightning Charging Cable,1,14.95,12/14/19 10:35,"556 River St, Portland, OR 97035" +301801,USB-C Charging Cable,1,11.95,12/22/19 13:52,"719 Elm St, Atlanta, GA 30301" +301802,Vareebadd Phone,1,400,12/31/19 12:40,"731 Lakeview St, Boston, MA 02215" +301803,AAA Batteries (4-pack),1,2.99,12/28/19 12:45,"251 Main St, Austin, TX 73301" +301804,Wired Headphones,1,11.99,12/08/19 14:29,"591 River St, New York City, NY 10001" +301805,AA Batteries (4-pack),1,3.84,12/29/19 17:15,"953 Cherry St, Atlanta, GA 30301" +301806,34in Ultrawide Monitor,1,379.99,12/31/19 16:13,"956 Walnut St, San Francisco, CA 94016" +301807,20in Monitor,1,109.99,12/29/19 22:51,"635 Meadow St, Atlanta, GA 30301" +301808,Lightning Charging Cable,1,14.95,12/31/19 15:25,"531 4th St, Los Angeles, CA 90001" +301809,27in FHD Monitor,1,149.99,12/22/19 11:15,"162 14th St, Seattle, WA 98101" +301810,27in FHD Monitor,1,149.99,12/26/19 08:32,"213 Adams St, New York City, NY 10001" +301811,Wired Headphones,1,11.99,12/04/19 12:33,"506 4th St, Atlanta, GA 30301" +301812,USB-C Charging Cable,1,11.95,12/15/19 17:06,"96 Highland St, Los Angeles, CA 90001" +301813,USB-C Charging Cable,1,11.95,12/28/19 19:09,"409 Spruce St, San Francisco, CA 94016" +301814,USB-C Charging Cable,1,11.95,12/12/19 20:06,"610 Adams St, Atlanta, GA 30301" +301815,AAA Batteries (4-pack),2,2.99,12/26/19 20:20,"915 Lake St, Seattle, WA 98101" +301816,AA Batteries (4-pack),1,3.84,12/16/19 14:06,"836 Lake St, Los Angeles, CA 90001" +301817,Flatscreen TV,1,300,12/18/19 18:25,"770 Maple St, San Francisco, CA 94016" +301818,AA Batteries (4-pack),1,3.84,12/02/19 16:34,"775 Wilson St, New York City, NY 10001" +301819,Wired Headphones,1,11.99,12/10/19 12:29,"279 Spruce St, Los Angeles, CA 90001" +301820,USB-C Charging Cable,1,11.95,12/15/19 07:50,"116 Lake St, New York City, NY 10001" +301821,USB-C Charging Cable,1,11.95,12/31/19 19:12,"652 Park St, New York City, NY 10001" +301822,Bose SoundSport Headphones,1,99.99,12/29/19 21:44,"431 Lakeview St, Austin, TX 73301" +301823,Macbook Pro Laptop,1,1700,12/26/19 09:20,"151 North St, Seattle, WA 98101" +301824,Apple Airpods Headphones,1,150,12/25/19 08:23,"727 12th St, Seattle, WA 98101" +301825,Lightning Charging Cable,1,14.95,12/29/19 08:00,"779 11th St, New York City, NY 10001" +301826,Apple Airpods Headphones,1,150,12/18/19 02:40,"931 Maple St, Los Angeles, CA 90001" +301827,USB-C Charging Cable,1,11.95,12/31/19 23:12,"724 Lakeview St, Dallas, TX 75001" +301828,Macbook Pro Laptop,1,1700,12/20/19 09:29,"921 Forest St, San Francisco, CA 94016" +301829,27in 4K Gaming Monitor,1,389.99,12/22/19 19:37,"800 1st St, San Francisco, CA 94016" +301830,Bose SoundSport Headphones,1,99.99,12/05/19 10:37,"905 Pine St, New York City, NY 10001" +301831,Flatscreen TV,1,300,12/11/19 18:42,"335 10th St, Boston, MA 02215" +301832,Apple Airpods Headphones,1,150,12/24/19 20:35,"112 5th St, San Francisco, CA 94016" +301833,Apple Airpods Headphones,1,150,12/12/19 23:23,"410 Jackson St, San Francisco, CA 94016" +301834,AAA Batteries (4-pack),3,2.99,12/28/19 11:50,"588 Ridge St, Los Angeles, CA 90001" +301835,Wired Headphones,1,11.99,12/27/19 23:35,"670 Sunset St, New York City, NY 10001" +301836,Lightning Charging Cable,1,14.95,12/27/19 15:14,"170 10th St, Los Angeles, CA 90001" +301837,AAA Batteries (4-pack),2,2.99,12/23/19 20:37,"186 4th St, Austin, TX 73301" +301838,27in 4K Gaming Monitor,1,389.99,12/09/19 11:20,"448 South St, Austin, TX 73301" +301839,AAA Batteries (4-pack),1,2.99,12/14/19 19:12,"986 Adams St, Seattle, WA 98101" +301840,Wired Headphones,1,11.99,12/01/19 20:52,"733 11th St, Seattle, WA 98101" +301841,USB-C Charging Cable,1,11.95,12/17/19 14:51,"993 West St, Portland, OR 97035" +301842,Lightning Charging Cable,1,14.95,12/04/19 22:21,"668 1st St, San Francisco, CA 94016" +301843,Lightning Charging Cable,2,14.95,12/15/19 19:14,"570 13th St, San Francisco, CA 94016" +301844,AAA Batteries (4-pack),1,2.99,12/04/19 13:12,"373 9th St, Los Angeles, CA 90001" +301845,Lightning Charging Cable,1,14.95,12/31/19 15:23,"980 Hickory St, Boston, MA 02215" +301846,AAA Batteries (4-pack),2,2.99,12/09/19 11:53,"280 Pine St, Boston, MA 02215" +301847,20in Monitor,1,109.99,12/27/19 15:00,"821 5th St, Boston, MA 02215" +301848,Google Phone,1,600,12/19/19 23:34,"496 Forest St, Austin, TX 73301" +301848,USB-C Charging Cable,1,11.95,12/19/19 23:34,"496 Forest St, Austin, TX 73301" +301849,27in FHD Monitor,1,149.99,12/11/19 11:29,"905 Lake St, Boston, MA 02215" +301850,USB-C Charging Cable,1,11.95,12/12/19 00:54,"699 Park St, Boston, MA 02215" +301851,34in Ultrawide Monitor,1,379.99,12/02/19 17:01,"413 6th St, Boston, MA 02215" +301852,34in Ultrawide Monitor,1,379.99,12/06/19 21:18,"171 Lincoln St, Boston, MA 02215" +301853,AAA Batteries (4-pack),2,2.99,12/24/19 16:25,"965 Washington St, Seattle, WA 98101" +301854,Lightning Charging Cable,1,14.95,12/01/19 09:08,"187 West St, San Francisco, CA 94016" +301855,Flatscreen TV,1,300,12/21/19 13:08,"74 Wilson St, San Francisco, CA 94016" +301856,27in FHD Monitor,1,149.99,12/12/19 14:55,"892 Jefferson St, Los Angeles, CA 90001" +301857,27in 4K Gaming Monitor,1,389.99,12/20/19 20:03,"574 Lincoln St, San Francisco, CA 94016" +301858,27in FHD Monitor,1,149.99,12/10/19 09:07,"535 Walnut St, San Francisco, CA 94016" +301859,Lightning Charging Cable,1,14.95,12/18/19 16:52,"840 Walnut St, Los Angeles, CA 90001" +301860,27in 4K Gaming Monitor,1,389.99,12/01/19 02:11,"10 North St, Boston, MA 02215" +301861,27in 4K Gaming Monitor,1,389.99,12/23/19 14:12,"505 12th St, Seattle, WA 98101" +301862,Wired Headphones,1,11.99,12/06/19 23:28,"946 Ridge St, San Francisco, CA 94016" +301863,Macbook Pro Laptop,1,1700,12/21/19 14:11,"439 Ridge St, Boston, MA 02215" +301864,Wired Headphones,1,11.99,12/17/19 11:24,"297 Lincoln St, New York City, NY 10001" +301865,Apple Airpods Headphones,1,150,12/22/19 09:18,"784 Cedar St, New York City, NY 10001" +301866,USB-C Charging Cable,1,11.95,12/11/19 10:30,"55 5th St, New York City, NY 10001" +301867,Google Phone,1,600,12/24/19 10:41,"58 Highland St, Los Angeles, CA 90001" +301868,Flatscreen TV,1,300,12/10/19 10:41,"527 2nd St, San Francisco, CA 94016" +301869,AA Batteries (4-pack),1,3.84,12/12/19 07:21,"48 Pine St, New York City, NY 10001" +301870,AAA Batteries (4-pack),2,2.99,12/23/19 20:08,"56 12th St, San Francisco, CA 94016" +301871,AAA Batteries (4-pack),1,2.99,12/20/19 18:33,"817 Forest St, Atlanta, GA 30301" +301872,Wired Headphones,1,11.99,12/26/19 13:10,"77 Maple St, Dallas, TX 75001" +301873,iPhone,1,700,12/03/19 18:47,"166 Johnson St, Portland, OR 97035" +301874,AA Batteries (4-pack),2,3.84,12/21/19 13:27,"51 Adams St, Boston, MA 02215" +301875,AAA Batteries (4-pack),1,2.99,12/21/19 17:36,"743 Jefferson St, Boston, MA 02215" +301876,Lightning Charging Cable,1,14.95,12/11/19 14:10,"658 Pine St, San Francisco, CA 94016" +301877,Apple Airpods Headphones,1,150,12/28/19 09:58,"666 Jackson St, Seattle, WA 98101" +301878,USB-C Charging Cable,1,11.95,12/31/19 13:59,"514 Cedar St, San Francisco, CA 94016" +301879,Wired Headphones,1,11.99,12/13/19 15:47,"988 Meadow St, Dallas, TX 75001" +301880,Lightning Charging Cable,1,14.95,12/25/19 12:00,"790 Lincoln St, Los Angeles, CA 90001" +301881,Wired Headphones,1,11.99,12/29/19 20:38,"99 Hill St, Atlanta, GA 30301" +301882,iPhone,1,700,12/15/19 22:46,"310 River St, Seattle, WA 98101" +301883,iPhone,1,700,12/25/19 17:55,"407 South St, Boston, MA 02215" +301884,Lightning Charging Cable,1,14.95,12/27/19 13:09,"185 Maple St, San Francisco, CA 94016" +301885,ThinkPad Laptop,1,999.99,12/09/19 07:32,"75 Pine St, San Francisco, CA 94016" +301886,Wired Headphones,1,11.99,12/02/19 18:36,"231 Jackson St, New York City, NY 10001" +301887,USB-C Charging Cable,2,11.95,12/24/19 09:19,"204 12th St, San Francisco, CA 94016" +301888,USB-C Charging Cable,2,11.95,12/27/19 20:00,"862 Willow St, Portland, ME 04101" +301889,AA Batteries (4-pack),1,3.84,12/04/19 16:50,"550 Center St, New York City, NY 10001" +301890,Wired Headphones,1,11.99,12/18/19 21:28,"839 Ridge St, New York City, NY 10001" +301891,Bose SoundSport Headphones,1,99.99,12/14/19 20:01,"962 11th St, Portland, OR 97035" +301892,27in FHD Monitor,1,149.99,12/30/19 22:16,"874 River St, Boston, MA 02215" +301893,Apple Airpods Headphones,1,150,12/23/19 12:34,"83 Madison St, New York City, NY 10001" +301894,iPhone,1,700,12/22/19 11:28,"267 Lake St, New York City, NY 10001" +301895,AA Batteries (4-pack),1,3.84,12/21/19 21:21,"760 Meadow St, New York City, NY 10001" +301896,USB-C Charging Cable,2,11.95,12/31/19 22:29,"858 South St, Dallas, TX 75001" +301897,Bose SoundSport Headphones,1,99.99,12/19/19 20:22,"326 Hickory St, Los Angeles, CA 90001" +301898,Wired Headphones,1,11.99,12/21/19 23:07,"797 North St, Boston, MA 02215" +301899,Apple Airpods Headphones,1,150,12/23/19 11:49,"153 Center St, Portland, OR 97035" +301900,Apple Airpods Headphones,1,150,12/18/19 17:05,"816 Dogwood St, Boston, MA 02215" +301901,Macbook Pro Laptop,1,1700,12/03/19 22:54,"120 2nd St, San Francisco, CA 94016" +301902,20in Monitor,1,109.99,12/05/19 21:14,"353 14th St, Dallas, TX 75001" +301903,AAA Batteries (4-pack),1,2.99,12/20/19 12:49,"542 Lake St, San Francisco, CA 94016" +301904,AAA Batteries (4-pack),1,2.99,12/25/19 10:07,"70 Cherry St, Los Angeles, CA 90001" +301905,34in Ultrawide Monitor,1,379.99,12/31/19 20:04,"603 South St, San Francisco, CA 94016" +301906,27in FHD Monitor,1,149.99,12/06/19 18:08,"67 Forest St, Boston, MA 02215" +301907,Apple Airpods Headphones,1,150,12/04/19 09:19,"634 Forest St, Portland, OR 97035" +301908,USB-C Charging Cable,1,11.95,12/26/19 18:31,"510 Pine St, San Francisco, CA 94016" +301909,Lightning Charging Cable,1,14.95,12/15/19 16:39,"968 Hill St, Atlanta, GA 30301" +301910,AA Batteries (4-pack),1,3.84,12/25/19 18:55,"577 Ridge St, Boston, MA 02215" +301910,Apple Airpods Headphones,1,150,12/25/19 18:55,"577 Ridge St, Boston, MA 02215" +301911,Lightning Charging Cable,3,14.95,12/05/19 12:47,"548 12th St, Atlanta, GA 30301" +301912,iPhone,1,700,12/19/19 14:25,"218 Pine St, Dallas, TX 75001" +301912,Lightning Charging Cable,1,14.95,12/19/19 14:25,"218 Pine St, Dallas, TX 75001" +301913,Flatscreen TV,1,300,12/27/19 10:09,"216 Church St, Boston, MA 02215" +301914,Bose SoundSport Headphones,1,99.99,12/29/19 13:31,"562 Willow St, San Francisco, CA 94016" +301915,34in Ultrawide Monitor,1,379.99,12/22/19 12:02,"822 Main St, Boston, MA 02215" +301916,Bose SoundSport Headphones,1,99.99,12/22/19 22:56,"618 Hickory St, San Francisco, CA 94016" +301917,Wired Headphones,1,11.99,12/10/19 07:52,"141 North St, Atlanta, GA 30301" +301918,27in FHD Monitor,1,149.99,12/30/19 13:33,"258 2nd St, San Francisco, CA 94016" +301919,Lightning Charging Cable,1,14.95,12/24/19 18:42,"482 13th St, New York City, NY 10001" +301920,ThinkPad Laptop,1,999.99,12/12/19 22:49,"942 Main St, San Francisco, CA 94016" +301921,ThinkPad Laptop,1,999.99,12/28/19 10:16,"878 2nd St, New York City, NY 10001" +301922,AA Batteries (4-pack),1,3.84,12/15/19 17:12,"335 Walnut St, San Francisco, CA 94016" +301923,Wired Headphones,1,11.99,12/19/19 13:47,"772 Washington St, Los Angeles, CA 90001" +301924,AA Batteries (4-pack),3,3.84,12/31/19 13:07,"914 Willow St, Portland, OR 97035" +301925,AAA Batteries (4-pack),3,2.99,12/12/19 12:36,"992 8th St, Portland, OR 97035" +301926,AA Batteries (4-pack),1,3.84,12/17/19 21:49,"975 Sunset St, Boston, MA 02215" +301927,AA Batteries (4-pack),1,3.84,12/22/19 13:07,"362 South St, Boston, MA 02215" +301928,AAA Batteries (4-pack),1,2.99,12/17/19 14:12,"877 Wilson St, Boston, MA 02215" +301929,27in FHD Monitor,1,149.99,12/12/19 23:17,"211 7th St, Atlanta, GA 30301" +301930,USB-C Charging Cable,1,11.95,12/03/19 22:25,"136 Elm St, Los Angeles, CA 90001" +301931,Lightning Charging Cable,1,14.95,12/16/19 04:06,"460 2nd St, Dallas, TX 75001" +301932,AAA Batteries (4-pack),4,2.99,12/27/19 16:25,"778 Dogwood St, Portland, OR 97035" +301933,iPhone,1,700,12/12/19 17:06,"411 2nd St, New York City, NY 10001" +301934,Flatscreen TV,1,300,12/02/19 21:50,"136 Willow St, Boston, MA 02215" +301935,Vareebadd Phone,1,400,12/14/19 18:12,"324 Highland St, New York City, NY 10001" +301936,Lightning Charging Cable,1,14.95,12/30/19 19:19,"69 8th St, San Francisco, CA 94016" +301937,iPhone,1,700,12/20/19 11:15,"905 River St, New York City, NY 10001" +301937,Lightning Charging Cable,1,14.95,12/20/19 11:15,"905 River St, New York City, NY 10001" +301938,Wired Headphones,1,11.99,12/01/19 16:43,"578 Adams St, Atlanta, GA 30301" +301939,AAA Batteries (4-pack),4,2.99,12/30/19 09:46,"237 2nd St, San Francisco, CA 94016" +301940,USB-C Charging Cable,1,11.95,12/16/19 14:51,"925 Elm St, San Francisco, CA 94016" +301941,USB-C Charging Cable,1,11.95,12/07/19 01:09,"355 10th St, Boston, MA 02215" +301942,27in FHD Monitor,1,149.99,12/22/19 19:59,"799 Meadow St, San Francisco, CA 94016" +301943,Lightning Charging Cable,1,14.95,12/11/19 08:53,"313 Chestnut St, Atlanta, GA 30301" +301944,AA Batteries (4-pack),1,3.84,12/13/19 19:01,"402 Madison St, Austin, TX 73301" +301945,USB-C Charging Cable,1,11.95,12/23/19 18:39,"646 6th St, San Francisco, CA 94016" +301946,Bose SoundSport Headphones,1,99.99,12/12/19 21:13,"671 11th St, Austin, TX 73301" +301947,Lightning Charging Cable,1,14.95,12/20/19 20:52,"968 Elm St, San Francisco, CA 94016" +301948,AA Batteries (4-pack),1,3.84,12/11/19 09:38,"106 South St, New York City, NY 10001" +301949,Macbook Pro Laptop,1,1700,12/22/19 22:07,"517 South St, New York City, NY 10001" +301950,Lightning Charging Cable,1,14.95,12/28/19 15:22,"306 13th St, Atlanta, GA 30301" +301951,Wired Headphones,1,11.99,12/25/19 15:52,"765 Wilson St, San Francisco, CA 94016" +301952,AA Batteries (4-pack),1,3.84,12/24/19 14:48,"563 Main St, Portland, ME 04101" +301953,Wired Headphones,1,11.99,12/26/19 20:30,"910 Madison St, San Francisco, CA 94016" +301954,Google Phone,1,600,12/14/19 10:13,"731 13th St, San Francisco, CA 94016" +301955,AAA Batteries (4-pack),1,2.99,12/05/19 10:11,"39 South St, Los Angeles, CA 90001" +301956,27in FHD Monitor,1,149.99,12/18/19 23:31,"675 10th St, San Francisco, CA 94016" +301957,Wired Headphones,1,11.99,12/19/19 11:13,"206 Lakeview St, San Francisco, CA 94016" +301958,Lightning Charging Cable,1,14.95,12/03/19 14:10,"829 Jefferson St, New York City, NY 10001" +301959,Flatscreen TV,1,300,12/27/19 10:21,"881 6th St, San Francisco, CA 94016" +301959,AAA Batteries (4-pack),2,2.99,12/27/19 10:21,"881 6th St, San Francisco, CA 94016" +301960,AA Batteries (4-pack),2,3.84,12/27/19 10:41,"125 2nd St, San Francisco, CA 94016" +301961,Google Phone,1,600,12/02/19 18:53,"577 1st St, Los Angeles, CA 90001" +301962,Lightning Charging Cable,1,14.95,12/31/19 13:29,"644 Dogwood St, Dallas, TX 75001" +301963,Flatscreen TV,1,300,12/27/19 02:15,"486 North St, San Francisco, CA 94016" +301964,Bose SoundSport Headphones,1,99.99,12/12/19 21:33,"661 4th St, San Francisco, CA 94016" +301965,AAA Batteries (4-pack),1,2.99,12/15/19 12:59,"616 Center St, San Francisco, CA 94016" +301966,Wired Headphones,1,11.99,12/22/19 11:31,"592 4th St, New York City, NY 10001" +301967,Apple Airpods Headphones,1,150,12/30/19 11:46,"551 Lincoln St, Portland, OR 97035" +301968,Lightning Charging Cable,1,14.95,12/21/19 21:54,"617 South St, Seattle, WA 98101" +301969,USB-C Charging Cable,1,11.95,12/20/19 12:51,"164 Lakeview St, Dallas, TX 75001" +301970,Vareebadd Phone,1,400,12/22/19 23:08,"248 Jefferson St, Austin, TX 73301" +301971,27in FHD Monitor,1,149.99,12/13/19 00:04,"137 Hickory St, New York City, NY 10001" +301972,Lightning Charging Cable,1,14.95,12/28/19 20:46,"20 4th St, San Francisco, CA 94016" +301973,Google Phone,1,600,12/19/19 11:24,"799 Cedar St, Los Angeles, CA 90001" +301973,USB-C Charging Cable,1,11.95,12/19/19 11:24,"799 Cedar St, Los Angeles, CA 90001" +301974,AA Batteries (4-pack),1,3.84,12/01/19 16:21,"765 Lake St, Atlanta, GA 30301" +301975,AAA Batteries (4-pack),3,2.99,12/21/19 11:31,"546 Main St, Portland, ME 04101" +301976,AA Batteries (4-pack),1,3.84,12/18/19 19:44,"955 Ridge St, San Francisco, CA 94016" +301977,AAA Batteries (4-pack),1,2.99,12/11/19 15:10,"241 Lincoln St, Seattle, WA 98101" +301978,Wired Headphones,1,11.99,12/12/19 17:31,"577 14th St, Seattle, WA 98101" +301979,Bose SoundSport Headphones,1,99.99,12/22/19 12:54,"746 Elm St, Los Angeles, CA 90001" +301980,Vareebadd Phone,1,400,12/11/19 17:58,"643 Chestnut St, Austin, TX 73301" +301980,USB-C Charging Cable,1,11.95,12/11/19 17:58,"643 Chestnut St, Austin, TX 73301" +301981,Flatscreen TV,1,300,12/30/19 09:59,"776 Park St, Dallas, TX 75001" +301982,Apple Airpods Headphones,1,150,12/25/19 10:15,"442 Sunset St, Seattle, WA 98101" +301983,Bose SoundSport Headphones,1,99.99,12/18/19 11:58,"10 1st St, Boston, MA 02215" +301984,AAA Batteries (4-pack),3,2.99,12/09/19 08:24,"280 Lake St, Los Angeles, CA 90001" +301985,AAA Batteries (4-pack),1,2.99,12/19/19 20:10,"187 Maple St, Seattle, WA 98101" +301986,USB-C Charging Cable,2,11.95,12/13/19 15:32,"402 South St, San Francisco, CA 94016" +301987,AAA Batteries (4-pack),1,2.99,12/19/19 12:04,"154 Dogwood St, Austin, TX 73301" +301988,Lightning Charging Cable,1,14.95,12/26/19 22:37,"963 Willow St, San Francisco, CA 94016" +301989,iPhone,1,700,12/01/19 14:18,"546 Wilson St, San Francisco, CA 94016" +301990,Lightning Charging Cable,1,14.95,12/03/19 17:21,"906 2nd St, New York City, NY 10001" +301991,Macbook Pro Laptop,1,1700,12/26/19 00:37,"103 2nd St, San Francisco, CA 94016" +301992,AA Batteries (4-pack),1,3.84,12/15/19 10:51,"201 Highland St, New York City, NY 10001" +301993,AAA Batteries (4-pack),1,2.99,12/27/19 10:12,"420 Washington St, Boston, MA 02215" +301994,Macbook Pro Laptop,1,1700,12/04/19 17:37,"825 Highland St, San Francisco, CA 94016" +301995,27in FHD Monitor,1,149.99,12/10/19 22:53,"633 11th St, Los Angeles, CA 90001" +301996,AA Batteries (4-pack),4,3.84,12/08/19 16:01,"609 Hill St, Dallas, TX 75001" +301997,27in FHD Monitor,1,149.99,12/16/19 16:08,"454 Ridge St, New York City, NY 10001" +301998,LG Washing Machine,1,600.0,12/27/19 10:29,"681 North St, New York City, NY 10001" +301999,AA Batteries (4-pack),1,3.84,12/11/19 21:45,"742 South St, Los Angeles, CA 90001" +302000,AAA Batteries (4-pack),2,2.99,12/09/19 13:36,"670 Park St, Los Angeles, CA 90001" +302001,Google Phone,1,600,12/13/19 15:59,"976 Lake St, New York City, NY 10001" +302002,USB-C Charging Cable,2,11.95,12/15/19 01:32,"732 10th St, San Francisco, CA 94016" +302003,Lightning Charging Cable,1,14.95,12/14/19 20:14,"196 Main St, Boston, MA 02215" +302004,AA Batteries (4-pack),1,3.84,12/01/19 16:26,"106 12th St, Austin, TX 73301" +302005,27in FHD Monitor,1,149.99,12/20/19 19:09,"625 West St, Seattle, WA 98101" +302006,34in Ultrawide Monitor,1,379.99,12/16/19 23:21,"115 Johnson St, San Francisco, CA 94016" +302007,AA Batteries (4-pack),1,3.84,12/15/19 21:18,"712 Sunset St, Los Angeles, CA 90001" +302008,AA Batteries (4-pack),1,3.84,12/17/19 20:31,"431 7th St, Dallas, TX 75001" +302009,Google Phone,1,600,12/27/19 19:29,"679 1st St, New York City, NY 10001" +302009,Bose SoundSport Headphones,1,99.99,12/27/19 19:29,"679 1st St, New York City, NY 10001" +302010,AA Batteries (4-pack),3,3.84,12/13/19 13:35,"103 Maple St, San Francisco, CA 94016" +302011,27in FHD Monitor,1,149.99,12/05/19 13:18,"518 South St, New York City, NY 10001" +302012,AAA Batteries (4-pack),3,2.99,12/20/19 08:35,"27 Dogwood St, Atlanta, GA 30301" +302013,AA Batteries (4-pack),1,3.84,12/24/19 13:31,"56 5th St, Dallas, TX 75001" +302014,iPhone,1,700,12/19/19 18:56,"949 Lincoln St, Seattle, WA 98101" +302015,Macbook Pro Laptop,1,1700,12/02/19 16:12,"720 Pine St, Atlanta, GA 30301" +302016,iPhone,1,700,12/12/19 19:51,"986 14th St, Portland, OR 97035" +302017,USB-C Charging Cable,1,11.95,12/18/19 16:58,"686 11th St, Los Angeles, CA 90001" +302018,AA Batteries (4-pack),1,3.84,12/02/19 20:20,"221 Spruce St, Austin, TX 73301" +302019,AA Batteries (4-pack),1,3.84,12/20/19 20:42,"162 Cherry St, Portland, OR 97035" +302020,Wired Headphones,1,11.99,12/13/19 20:50,"378 2nd St, Dallas, TX 75001" +302021,Apple Airpods Headphones,1,150,12/27/19 17:02,"681 13th St, San Francisco, CA 94016" +302022,Vareebadd Phone,1,400,12/24/19 21:21,"273 Elm St, San Francisco, CA 94016" +302023,AA Batteries (4-pack),1,3.84,12/27/19 10:49,"567 Jackson St, San Francisco, CA 94016" +302024,Wired Headphones,1,11.99,12/31/19 14:37,"430 Madison St, Los Angeles, CA 90001" +302025,27in 4K Gaming Monitor,1,389.99,12/27/19 20:53,"486 1st St, Seattle, WA 98101" +302026,LG Washing Machine,1,600.0,12/19/19 22:44,"327 Walnut St, Seattle, WA 98101" +302027,Wired Headphones,1,11.99,12/22/19 16:13,"866 Cherry St, Los Angeles, CA 90001" +302028,27in FHD Monitor,1,149.99,12/30/19 17:27,"250 Center St, Boston, MA 02215" +302029,Vareebadd Phone,1,400,12/29/19 19:30,"732 Hickory St, Boston, MA 02215" +302030,AA Batteries (4-pack),1,3.84,12/26/19 14:25,"5 1st St, Los Angeles, CA 90001" +302031,34in Ultrawide Monitor,1,379.99,12/17/19 12:46,"55 Lake St, San Francisco, CA 94016" +302032,AAA Batteries (4-pack),1,2.99,12/19/19 12:55,"298 Main St, San Francisco, CA 94016" +302033,AA Batteries (4-pack),1,3.84,12/03/19 17:13,"349 River St, Los Angeles, CA 90001" +302034,USB-C Charging Cable,1,11.95,12/09/19 13:01,"946 Lincoln St, Los Angeles, CA 90001" +302035,Wired Headphones,1,11.99,12/16/19 12:58,"759 Chestnut St, Austin, TX 73301" +302036,Flatscreen TV,1,300,12/26/19 12:45,"604 11th St, San Francisco, CA 94016" +302037,USB-C Charging Cable,1,11.95,12/01/19 21:10,"633 6th St, Seattle, WA 98101" +302038,Wired Headphones,1,11.99,12/07/19 17:59,"148 Chestnut St, Boston, MA 02215" +302039,AAA Batteries (4-pack),1,2.99,12/07/19 14:08,"626 9th St, Boston, MA 02215" +302040,iPhone,1,700,12/27/19 20:27,"856 Hickory St, Atlanta, GA 30301" +302040,Apple Airpods Headphones,1,150,12/27/19 20:27,"856 Hickory St, Atlanta, GA 30301" +302041,Wired Headphones,1,11.99,12/27/19 18:29,"760 11th St, San Francisco, CA 94016" +302042,AAA Batteries (4-pack),1,2.99,12/10/19 22:24,"385 Willow St, Austin, TX 73301" +302043,AA Batteries (4-pack),2,3.84,12/14/19 21:27,"946 Sunset St, San Francisco, CA 94016" +302044,Flatscreen TV,1,300,12/19/19 16:58,"869 9th St, San Francisco, CA 94016" +302045,34in Ultrawide Monitor,1,379.99,12/06/19 10:19,"819 Jefferson St, San Francisco, CA 94016" +302046,AA Batteries (4-pack),1,3.84,12/07/19 21:49,"505 Johnson St, New York City, NY 10001" +302047,USB-C Charging Cable,1,11.95,12/16/19 10:44,"540 Church St, Seattle, WA 98101" +302048,Apple Airpods Headphones,1,150,12/27/19 19:08,"680 Meadow St, Portland, OR 97035" +302049,AAA Batteries (4-pack),2,2.99,12/19/19 18:38,"565 Adams St, Portland, OR 97035" +302050,USB-C Charging Cable,1,11.95,12/10/19 21:43,"891 Ridge St, Seattle, WA 98101" +302051,AA Batteries (4-pack),2,3.84,12/27/19 14:40,"486 Center St, Boston, MA 02215" +302052,AAA Batteries (4-pack),2,2.99,12/01/19 20:57,"950 Chestnut St, New York City, NY 10001" +302053,AA Batteries (4-pack),1,3.84,12/01/19 23:37,"292 11th St, Seattle, WA 98101" +302054,LG Washing Machine,1,600.0,12/01/19 10:54,"384 Spruce St, Dallas, TX 75001" +302055,34in Ultrawide Monitor,1,379.99,12/10/19 10:48,"57 Cherry St, Austin, TX 73301" +302056,Bose SoundSport Headphones,1,99.99,12/10/19 09:25,"337 Johnson St, New York City, NY 10001" +302057,Wired Headphones,1,11.99,01/01/20 00:54,"168 Pine St, Atlanta, GA 30301" +302058,Wired Headphones,1,11.99,12/27/19 12:07,"847 Adams St, Los Angeles, CA 90001" +302059,AAA Batteries (4-pack),1,2.99,12/19/19 13:04,"302 11th St, Portland, OR 97035" +302060,USB-C Charging Cable,1,11.95,12/16/19 20:32,"639 North St, Dallas, TX 75001" +302061,34in Ultrawide Monitor,1,379.99,12/27/19 16:42,"548 Lake St, San Francisco, CA 94016" +302062,USB-C Charging Cable,1,11.95,12/11/19 12:22,"904 Maple St, Los Angeles, CA 90001" +302063,Bose SoundSport Headphones,1,99.99,12/24/19 19:36,"552 North St, Los Angeles, CA 90001" +302064,27in 4K Gaming Monitor,1,389.99,12/05/19 23:14,"511 9th St, Boston, MA 02215" +302065,Wired Headphones,1,11.99,12/23/19 18:13,"922 Forest St, San Francisco, CA 94016" +302066,27in FHD Monitor,1,149.99,12/06/19 20:23,"533 Wilson St, San Francisco, CA 94016" +302067,20in Monitor,1,109.99,12/11/19 19:36,"103 8th St, San Francisco, CA 94016" +302068,AAA Batteries (4-pack),2,2.99,12/06/19 20:44,"557 Maple St, New York City, NY 10001" +302069,Bose SoundSport Headphones,1,99.99,12/04/19 23:32,"596 Johnson St, Dallas, TX 75001" +302070,AAA Batteries (4-pack),2,2.99,12/08/19 20:08,"118 Sunset St, Los Angeles, CA 90001" +302071,34in Ultrawide Monitor,1,379.99,12/27/19 08:07,"750 River St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +302072,27in 4K Gaming Monitor,1,389.99,12/11/19 11:27,"158 6th St, San Francisco, CA 94016" +302073,LG Washing Machine,1,600.0,12/25/19 16:38,"640 River St, San Francisco, CA 94016" +302074,iPhone,1,700,12/01/19 20:16,"759 Adams St, New York City, NY 10001" +302075,LG Dryer,1,600.0,12/02/19 12:27,"941 North St, San Francisco, CA 94016" +302076,Google Phone,1,600,12/01/19 19:38,"645 Ridge St, Portland, OR 97035" +302077,USB-C Charging Cable,1,11.95,12/09/19 21:32,"834 5th St, Seattle, WA 98101" +302078,Google Phone,1,600,12/09/19 21:03,"173 1st St, San Francisco, CA 94016" +302079,Wired Headphones,1,11.99,12/01/19 17:00,"917 6th St, San Francisco, CA 94016" +302080,Apple Airpods Headphones,1,150,12/12/19 00:48,"133 Lake St, Boston, MA 02215" +302081,Wired Headphones,1,11.99,12/07/19 00:27,"94 Ridge St, Atlanta, GA 30301" +302082,Wired Headphones,1,11.99,12/14/19 23:12,"731 Forest St, San Francisco, CA 94016" +302083,Flatscreen TV,1,300,12/06/19 10:48,"241 Cedar St, Los Angeles, CA 90001" +302084,27in FHD Monitor,1,149.99,12/15/19 21:55,"55 Meadow St, Los Angeles, CA 90001" +302085,AAA Batteries (4-pack),3,2.99,12/12/19 12:06,"304 10th St, Austin, TX 73301" +302086,Bose SoundSport Headphones,1,99.99,12/10/19 13:34,"618 South St, Los Angeles, CA 90001" +302087,USB-C Charging Cable,1,11.95,12/25/19 18:46,"410 West St, Atlanta, GA 30301" +302088,27in 4K Gaming Monitor,1,389.99,12/26/19 12:26,"869 Meadow St, Los Angeles, CA 90001" +302089,Google Phone,1,600,12/23/19 19:28,"957 Highland St, San Francisco, CA 94016" +302089,Bose SoundSport Headphones,1,99.99,12/23/19 19:28,"957 Highland St, San Francisco, CA 94016" +302090,AAA Batteries (4-pack),1,2.99,12/07/19 05:03,"544 Main St, Atlanta, GA 30301" +302091,USB-C Charging Cable,1,11.95,12/31/19 23:23,"376 2nd St, San Francisco, CA 94016" +302092,iPhone,1,700,12/12/19 13:30,"363 Chestnut St, San Francisco, CA 94016" +302093,Wired Headphones,1,11.99,12/12/19 21:34,"478 Spruce St, Los Angeles, CA 90001" +302094,USB-C Charging Cable,2,11.95,12/23/19 12:49,"705 Chestnut St, San Francisco, CA 94016" +302095,Apple Airpods Headphones,1,150,12/21/19 16:54,"692 1st St, San Francisco, CA 94016" +302096,34in Ultrawide Monitor,1,379.99,12/17/19 10:18,"916 Main St, Los Angeles, CA 90001" +302097,27in FHD Monitor,1,149.99,12/09/19 11:22,"320 Church St, Boston, MA 02215" +302098,USB-C Charging Cable,1,11.95,12/22/19 12:13,"813 Washington St, Portland, OR 97035" +302099,Lightning Charging Cable,1,14.95,12/22/19 20:13,"924 River St, Portland, OR 97035" +302100,Macbook Pro Laptop,1,1700,12/19/19 07:53,"508 10th St, San Francisco, CA 94016" +302101,Bose SoundSport Headphones,1,99.99,12/10/19 17:30,"153 Lake St, Atlanta, GA 30301" +302102,Bose SoundSport Headphones,1,99.99,12/19/19 21:31,"627 Main St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +302103,Macbook Pro Laptop,1,1700,12/30/19 12:28,"911 River St, San Francisco, CA 94016" +302104,ThinkPad Laptop,1,999.99,12/24/19 19:30,"564 Main St, San Francisco, CA 94016" +302105,Vareebadd Phone,1,400,12/30/19 19:21,"300 Highland St, Portland, ME 04101" +302106,Wired Headphones,1,11.99,12/03/19 12:08,"526 South St, Seattle, WA 98101" +302107,AAA Batteries (4-pack),1,2.99,12/04/19 12:18,"287 5th St, Atlanta, GA 30301" +302108,iPhone,1,700,12/03/19 10:38,"563 Wilson St, Boston, MA 02215" +302108,Lightning Charging Cable,1,14.95,12/03/19 10:38,"563 Wilson St, Boston, MA 02215" +302109,Flatscreen TV,1,300,12/28/19 16:22,"449 Park St, New York City, NY 10001" +302110,Flatscreen TV,1,300,12/13/19 10:35,"634 Hickory St, Los Angeles, CA 90001" +302111,Lightning Charging Cable,1,14.95,12/17/19 16:50,"194 Chestnut St, Los Angeles, CA 90001" +302112,Wired Headphones,1,11.99,12/08/19 22:57,"987 Forest St, Seattle, WA 98101" +302113,Wired Headphones,1,11.99,12/31/19 12:30,"798 1st St, Los Angeles, CA 90001" +302114,Apple Airpods Headphones,2,150,12/19/19 11:52,"334 1st St, Boston, MA 02215" +302115,AAA Batteries (4-pack),1,2.99,12/12/19 12:34,"707 1st St, Austin, TX 73301" +302116,27in FHD Monitor,1,149.99,12/20/19 13:54,"237 5th St, Boston, MA 02215" +302117,USB-C Charging Cable,1,11.95,12/03/19 00:43,"966 4th St, Austin, TX 73301" +302118,AAA Batteries (4-pack),2,2.99,12/11/19 22:12,"387 Maple St, San Francisco, CA 94016" +302119,AA Batteries (4-pack),1,3.84,12/12/19 12:54,"816 Jefferson St, Los Angeles, CA 90001" +302120,USB-C Charging Cable,1,11.95,12/30/19 20:58,"893 Park St, San Francisco, CA 94016" +302121,Bose SoundSport Headphones,1,99.99,12/18/19 11:09,"802 1st St, San Francisco, CA 94016" +302122,27in 4K Gaming Monitor,2,389.99,12/28/19 15:52,"580 9th St, Seattle, WA 98101" +302123,AA Batteries (4-pack),1,3.84,12/17/19 09:20,"422 Adams St, New York City, NY 10001" +302124,ThinkPad Laptop,1,999.99,12/10/19 02:36,"305 Chestnut St, San Francisco, CA 94016" +302125,AA Batteries (4-pack),1,3.84,12/29/19 11:37,"465 Highland St, Dallas, TX 75001" +302126,AA Batteries (4-pack),1,3.84,12/07/19 12:22,"965 9th St, Los Angeles, CA 90001" +302127,AAA Batteries (4-pack),1,2.99,12/03/19 14:49,"356 Highland St, Los Angeles, CA 90001" +302128,AAA Batteries (4-pack),1,2.99,12/15/19 19:45,"635 Chestnut St, Los Angeles, CA 90001" +302129,Apple Airpods Headphones,1,150,12/22/19 12:14,"788 Chestnut St, Portland, OR 97035" +302130,USB-C Charging Cable,1,11.95,12/03/19 10:00,"407 Ridge St, Boston, MA 02215" +302131,Flatscreen TV,1,300,12/30/19 01:09,"713 Dogwood St, New York City, NY 10001" +302132,AA Batteries (4-pack),2,3.84,12/28/19 18:32,"442 7th St, New York City, NY 10001" +302133,20in Monitor,1,109.99,12/20/19 14:38,"458 Lincoln St, San Francisco, CA 94016" +302134,Vareebadd Phone,1,400,12/29/19 11:52,"17 Center St, Atlanta, GA 30301" +302135,AA Batteries (4-pack),1,3.84,12/29/19 11:37,"307 14th St, New York City, NY 10001" +302136,USB-C Charging Cable,1,11.95,12/05/19 11:50,"848 Spruce St, Atlanta, GA 30301" +302137,USB-C Charging Cable,1,11.95,12/21/19 20:16,"166 10th St, Dallas, TX 75001" +302138,Wired Headphones,1,11.99,12/13/19 17:07,"152 Dogwood St, Seattle, WA 98101" +302139,Bose SoundSport Headphones,1,99.99,12/11/19 14:36,"865 Washington St, San Francisco, CA 94016" +302140,AAA Batteries (4-pack),1,2.99,12/19/19 15:23,"558 Center St, New York City, NY 10001" +302141,27in 4K Gaming Monitor,1,389.99,12/04/19 17:10,"735 Highland St, Boston, MA 02215" +302142,Macbook Pro Laptop,1,1700,12/06/19 11:09,"532 Pine St, Los Angeles, CA 90001" +302143,AA Batteries (4-pack),2,3.84,12/13/19 18:34,"930 Lincoln St, Seattle, WA 98101" +302144,Wired Headphones,1,11.99,12/12/19 18:35,"738 13th St, Los Angeles, CA 90001" +302145,iPhone,1,700,12/25/19 19:51,"627 Hickory St, San Francisco, CA 94016" +302146,AA Batteries (4-pack),1,3.84,12/18/19 08:01,"97 Forest St, Portland, ME 04101" +302147,USB-C Charging Cable,1,11.95,12/18/19 19:03,"926 Church St, Seattle, WA 98101" +302148,AAA Batteries (4-pack),1,2.99,12/13/19 22:49,"175 6th St, New York City, NY 10001" +302149,Google Phone,1,600,12/23/19 00:05,"399 Dogwood St, San Francisco, CA 94016" +302150,Wired Headphones,1,11.99,12/17/19 10:39,"152 14th St, San Francisco, CA 94016" +302151,Macbook Pro Laptop,1,1700,12/08/19 10:35,"408 Lake St, Los Angeles, CA 90001" +302152,27in 4K Gaming Monitor,1,389.99,12/10/19 12:16,"273 1st St, Boston, MA 02215" +302153,ThinkPad Laptop,1,999.99,12/15/19 15:52,"129 Elm St, Atlanta, GA 30301" +302154,AAA Batteries (4-pack),1,2.99,12/30/19 22:40,"722 Jackson St, Dallas, TX 75001" +302155,USB-C Charging Cable,3,11.95,12/02/19 10:45,"713 13th St, New York City, NY 10001" +302156,USB-C Charging Cable,1,11.95,12/13/19 23:56,"224 9th St, Los Angeles, CA 90001" +302157,USB-C Charging Cable,1,11.95,12/05/19 06:00,"228 7th St, Seattle, WA 98101" +302158,Wired Headphones,1,11.99,12/16/19 12:22,"498 Hill St, New York City, NY 10001" +302159,Macbook Pro Laptop,1,1700,12/11/19 16:14,"622 Maple St, Seattle, WA 98101" +302160,Wired Headphones,1,11.99,12/13/19 13:32,"222 Cedar St, San Francisco, CA 94016" +302161,USB-C Charging Cable,1,11.95,12/15/19 14:20,"20 Willow St, Dallas, TX 75001" +302162,34in Ultrawide Monitor,1,379.99,12/08/19 16:50,"104 Church St, Boston, MA 02215" +302163,USB-C Charging Cable,1,11.95,12/05/19 13:50,"385 Spruce St, San Francisco, CA 94016" +302164,Flatscreen TV,1,300,12/23/19 00:11,"928 12th St, New York City, NY 10001" +302165,USB-C Charging Cable,1,11.95,12/25/19 10:52,"730 Lake St, New York City, NY 10001" +302166,Macbook Pro Laptop,1,1700,12/27/19 12:20,"235 Lake St, San Francisco, CA 94016" +302167,Lightning Charging Cable,1,14.95,12/21/19 20:08,"975 Highland St, Los Angeles, CA 90001" +302168,20in Monitor,1,109.99,12/05/19 14:13,"283 Spruce St, Austin, TX 73301" +302169,Macbook Pro Laptop,1,1700,12/25/19 10:13,"38 Adams St, New York City, NY 10001" +302170,Bose SoundSport Headphones,1,99.99,12/05/19 00:49,"564 Lake St, Seattle, WA 98101" +302171,Lightning Charging Cable,1,14.95,12/21/19 13:47,"689 Highland St, San Francisco, CA 94016" +302172,AA Batteries (4-pack),1,3.84,12/25/19 20:36,"350 4th St, Los Angeles, CA 90001" +302173,AA Batteries (4-pack),2,3.84,12/18/19 14:11,"404 Cedar St, Seattle, WA 98101" +,,,,, +302174,Wired Headphones,1,11.99,12/10/19 21:23,"393 Adams St, Dallas, TX 75001" +302175,34in Ultrawide Monitor,1,379.99,12/25/19 19:00,"809 Lakeview St, Atlanta, GA 30301" +302176,Macbook Pro Laptop,1,1700,12/19/19 19:50,"103 Cherry St, San Francisco, CA 94016" +302177,AAA Batteries (4-pack),1,2.99,12/23/19 12:25,"394 7th St, Atlanta, GA 30301" +302178,Lightning Charging Cable,1,14.95,12/08/19 10:59,"696 7th St, New York City, NY 10001" +302179,Apple Airpods Headphones,1,150,12/30/19 12:34,"190 12th St, Austin, TX 73301" +302180,AAA Batteries (4-pack),1,2.99,12/28/19 19:44,"183 Madison St, Los Angeles, CA 90001" +302181,USB-C Charging Cable,1,11.95,12/12/19 12:54,"718 Johnson St, New York City, NY 10001" +302182,Lightning Charging Cable,1,14.95,12/19/19 20:55,"513 10th St, Portland, ME 04101" +302183,AAA Batteries (4-pack),3,2.99,12/16/19 19:03,"556 Church St, San Francisco, CA 94016" +302184,AA Batteries (4-pack),2,3.84,12/23/19 10:41,"675 2nd St, Austin, TX 73301" +302185,Lightning Charging Cable,1,14.95,12/15/19 18:56,"529 Dogwood St, San Francisco, CA 94016" +302186,Wired Headphones,1,11.99,12/12/19 15:32,"132 9th St, Los Angeles, CA 90001" +302187,27in FHD Monitor,1,149.99,12/27/19 07:39,"887 River St, Boston, MA 02215" +302188,AA Batteries (4-pack),1,3.84,12/08/19 08:41,"31 11th St, Los Angeles, CA 90001" +302189,AAA Batteries (4-pack),2,2.99,12/08/19 23:48,"376 Lake St, San Francisco, CA 94016" +302190,Google Phone,1,600,12/08/19 19:13,"751 4th St, Boston, MA 02215" +302190,USB-C Charging Cable,1,11.95,12/08/19 19:13,"751 4th St, Boston, MA 02215" +302191,Wired Headphones,1,11.99,12/30/19 21:28,"344 Forest St, New York City, NY 10001" +302192,Bose SoundSport Headphones,1,99.99,12/04/19 14:58,"936 4th St, Portland, OR 97035" +302193,iPhone,1,700,12/03/19 16:12,"343 Jackson St, Portland, OR 97035" +302194,iPhone,1,700,12/11/19 21:32,"237 Highland St, Portland, OR 97035" +302195,Lightning Charging Cable,1,14.95,12/03/19 20:58,"182 13th St, Seattle, WA 98101" +302196,AA Batteries (4-pack),5,3.84,12/19/19 17:08,"435 Jackson St, Austin, TX 73301" +302197,AA Batteries (4-pack),1,3.84,12/13/19 09:57,"181 Elm St, Atlanta, GA 30301" +302198,Google Phone,1,600,12/17/19 10:39,"403 Dogwood St, Boston, MA 02215" +302198,USB-C Charging Cable,1,11.95,12/17/19 10:39,"403 Dogwood St, Boston, MA 02215" +302199,27in FHD Monitor,1,149.99,12/20/19 00:34,"470 Jackson St, San Francisco, CA 94016" +302200,Apple Airpods Headphones,1,150,12/20/19 12:00,"930 Lincoln St, San Francisco, CA 94016" +302201,27in 4K Gaming Monitor,1,389.99,12/31/19 17:40,"955 Lincoln St, Los Angeles, CA 90001" +302202,USB-C Charging Cable,1,11.95,12/26/19 12:32,"431 Spruce St, Los Angeles, CA 90001" +302203,27in 4K Gaming Monitor,1,389.99,12/01/19 13:21,"217 Highland St, Dallas, TX 75001" +302204,27in 4K Gaming Monitor,1,389.99,12/02/19 17:42,"863 13th St, Seattle, WA 98101" +302205,Macbook Pro Laptop,1,1700,12/12/19 07:37,"403 Adams St, San Francisco, CA 94016" +302206,Lightning Charging Cable,1,14.95,12/26/19 13:07,"418 6th St, San Francisco, CA 94016" +302207,AAA Batteries (4-pack),1,2.99,12/18/19 10:03,"738 Hill St, Atlanta, GA 30301" +302208,AA Batteries (4-pack),2,3.84,12/25/19 18:55,"543 Chestnut St, San Francisco, CA 94016" +302209,Wired Headphones,1,11.99,12/28/19 11:18,"7 Spruce St, Portland, ME 04101" +302210,USB-C Charging Cable,1,11.95,12/05/19 12:14,"727 North St, Dallas, TX 75001" +302211,USB-C Charging Cable,1,11.95,12/10/19 00:47,"504 North St, New York City, NY 10001" +302212,AA Batteries (4-pack),2,3.84,12/19/19 11:46,"328 Cedar St, New York City, NY 10001" +302213,AAA Batteries (4-pack),2,2.99,12/18/19 17:33,"424 Park St, Dallas, TX 75001" +302214,Bose SoundSport Headphones,1,99.99,12/01/19 21:57,"393 Maple St, San Francisco, CA 94016" +302215,Lightning Charging Cable,1,14.95,12/16/19 19:10,"360 Washington St, Austin, TX 73301" +302216,Lightning Charging Cable,1,14.95,12/08/19 08:23,"934 Jackson St, New York City, NY 10001" +302217,AAA Batteries (4-pack),2,2.99,12/05/19 14:12,"790 Lake St, New York City, NY 10001" +302218,Lightning Charging Cable,1,14.95,12/01/19 15:31,"943 Ridge St, Atlanta, GA 30301" +302219,Lightning Charging Cable,1,14.95,12/19/19 11:46,"219 Lake St, Los Angeles, CA 90001" +302220,Apple Airpods Headphones,1,150,12/17/19 17:19,"465 Hill St, Seattle, WA 98101" +302221,AAA Batteries (4-pack),1,2.99,12/16/19 10:16,"562 6th St, Boston, MA 02215" +302222,27in 4K Gaming Monitor,1,389.99,12/01/19 11:56,"69 Lakeview St, Boston, MA 02215" +302223,Bose SoundSport Headphones,1,99.99,12/15/19 11:16,"145 Lakeview St, New York City, NY 10001" +302224,Wired Headphones,1,11.99,12/14/19 20:54,"936 Washington St, Portland, OR 97035" +302225,Apple Airpods Headphones,1,150,12/30/19 16:36,"721 2nd St, San Francisco, CA 94016" +302226,20in Monitor,1,109.99,12/13/19 15:49,"889 Lakeview St, Boston, MA 02215" +302227,Apple Airpods Headphones,1,150,12/01/19 17:15,"795 Jefferson St, Boston, MA 02215" +302228,USB-C Charging Cable,1,11.95,12/18/19 22:13,"196 Pine St, Seattle, WA 98101" +302229,Bose SoundSport Headphones,1,99.99,12/19/19 17:18,"567 4th St, Portland, ME 04101" +302230,Google Phone,1,600,12/16/19 17:46,"617 Johnson St, New York City, NY 10001" +302231,AA Batteries (4-pack),2,3.84,12/22/19 21:41,"260 2nd St, Atlanta, GA 30301" +302232,AAA Batteries (4-pack),1,2.99,12/22/19 18:51,"260 Lakeview St, New York City, NY 10001" +302233,Google Phone,1,600,12/30/19 13:15,"892 Sunset St, Boston, MA 02215" +302234,USB-C Charging Cable,2,11.95,12/26/19 18:05,"270 7th St, San Francisco, CA 94016" +302235,AAA Batteries (4-pack),4,2.99,12/31/19 17:02,"113 Church St, Boston, MA 02215" +302236,Lightning Charging Cable,1,14.95,12/30/19 12:59,"632 11th St, Portland, OR 97035" +302237,27in FHD Monitor,1,149.99,12/12/19 09:27,"561 Lakeview St, New York City, NY 10001" +302238,AA Batteries (4-pack),2,3.84,12/20/19 08:52,"479 Lincoln St, Boston, MA 02215" +302239,LG Washing Machine,1,600.0,12/02/19 21:11,"693 7th St, Dallas, TX 75001" +302240,Lightning Charging Cable,1,14.95,12/18/19 11:04,"65 Hickory St, Los Angeles, CA 90001" +302241,USB-C Charging Cable,1,11.95,12/26/19 01:51,"253 Forest St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +302242,Apple Airpods Headphones,1,150,12/05/19 14:46,"945 Walnut St, Los Angeles, CA 90001" +302243,Lightning Charging Cable,1,14.95,12/19/19 19:29,"754 Adams St, Portland, OR 97035" +302244,USB-C Charging Cable,1,11.95,12/14/19 19:05,"370 Lakeview St, Boston, MA 02215" +302245,Wired Headphones,2,11.99,12/21/19 20:25,"938 Jackson St, New York City, NY 10001" +302246,Bose SoundSport Headphones,1,99.99,12/28/19 10:21,"393 Pine St, Seattle, WA 98101" +302247,Google Phone,1,600,12/22/19 19:23,"682 Lakeview St, Los Angeles, CA 90001" +302248,AAA Batteries (4-pack),1,2.99,12/14/19 11:28,"811 Pine St, Atlanta, GA 30301" +302249,AA Batteries (4-pack),3,3.84,12/26/19 10:14,"948 Dogwood St, San Francisco, CA 94016" +302250,AAA Batteries (4-pack),1,2.99,12/08/19 01:32,"385 Cherry St, Atlanta, GA 30301" +302251,Lightning Charging Cable,2,14.95,12/10/19 05:59,"883 Meadow St, Los Angeles, CA 90001" +302252,AA Batteries (4-pack),1,3.84,12/23/19 19:33,"966 Hickory St, San Francisco, CA 94016" +302253,Lightning Charging Cable,1,14.95,12/06/19 17:52,"356 Washington St, Boston, MA 02215" +302254,Google Phone,1,600,12/12/19 14:05,"493 Elm St, San Francisco, CA 94016" +302255,AA Batteries (4-pack),1,3.84,12/14/19 01:37,"610 North St, Dallas, TX 75001" +302256,AA Batteries (4-pack),1,3.84,12/29/19 16:50,"521 12th St, New York City, NY 10001" +302257,Macbook Pro Laptop,1,1700,12/10/19 23:56,"358 Lakeview St, New York City, NY 10001" +302258,27in FHD Monitor,1,149.99,12/01/19 20:14,"468 Walnut St, Los Angeles, CA 90001" +302259,AA Batteries (4-pack),1,3.84,12/22/19 16:52,"295 8th St, Los Angeles, CA 90001" +302260,34in Ultrawide Monitor,1,379.99,12/11/19 13:43,"691 Center St, San Francisco, CA 94016" +302261,Lightning Charging Cable,2,14.95,12/04/19 23:32,"967 Lincoln St, Atlanta, GA 30301" +302262,Flatscreen TV,1,300,12/19/19 17:16,"822 Park St, San Francisco, CA 94016" +302263,AAA Batteries (4-pack),1,2.99,12/22/19 18:29,"363 7th St, Portland, ME 04101" +302264,AAA Batteries (4-pack),1,2.99,12/16/19 13:02,"36 2nd St, Seattle, WA 98101" +302265,34in Ultrawide Monitor,1,379.99,12/11/19 11:59,"24 14th St, Seattle, WA 98101" +302266,Lightning Charging Cable,1,14.95,12/28/19 23:40,"344 Forest St, Boston, MA 02215" +302267,Google Phone,1,600,12/05/19 23:53,"959 Elm St, San Francisco, CA 94016" +302268,Apple Airpods Headphones,1,150,12/26/19 17:27,"690 2nd St, Los Angeles, CA 90001" +302269,USB-C Charging Cable,1,11.95,12/01/19 11:55,"985 Pine St, Los Angeles, CA 90001" +302270,AA Batteries (4-pack),1,3.84,12/10/19 12:35,"488 Hickory St, Los Angeles, CA 90001" +302271,AAA Batteries (4-pack),2,2.99,12/25/19 20:11,"500 2nd St, New York City, NY 10001" +302272,Google Phone,1,600,12/24/19 19:57,"207 Walnut St, Portland, OR 97035" +302272,USB-C Charging Cable,1,11.95,12/24/19 19:57,"207 Walnut St, Portland, OR 97035" +302272,Bose SoundSport Headphones,1,99.99,12/24/19 19:57,"207 Walnut St, Portland, OR 97035" +302273,Lightning Charging Cable,1,14.95,12/29/19 01:16,"719 9th St, New York City, NY 10001" +302274,USB-C Charging Cable,1,11.95,12/26/19 18:26,"708 Walnut St, Dallas, TX 75001" +302275,Bose SoundSport Headphones,1,99.99,12/02/19 12:45,"945 West St, San Francisco, CA 94016" +302276,Apple Airpods Headphones,1,150,12/14/19 07:53,"405 Cedar St, New York City, NY 10001" +302277,AAA Batteries (4-pack),1,2.99,12/20/19 13:12,"794 Wilson St, Los Angeles, CA 90001" +302278,AAA Batteries (4-pack),2,2.99,12/03/19 14:02,"331 Spruce St, San Francisco, CA 94016" +302279,Apple Airpods Headphones,1,150,12/19/19 20:54,"614 River St, Portland, OR 97035" +302280,20in Monitor,1,109.99,12/06/19 14:02,"237 14th St, San Francisco, CA 94016" +302281,27in 4K Gaming Monitor,1,389.99,12/19/19 12:28,"126 West St, San Francisco, CA 94016" +302282,Wired Headphones,1,11.99,12/09/19 13:43,"689 Johnson St, Los Angeles, CA 90001" +302283,AA Batteries (4-pack),1,3.84,12/01/19 05:27,"710 Ridge St, Portland, OR 97035" +302284,Apple Airpods Headphones,1,150,12/05/19 17:39,"838 Park St, Los Angeles, CA 90001" +302285,iPhone,1,700,12/17/19 19:56,"975 Jackson St, Seattle, WA 98101" +302286,Lightning Charging Cable,1,14.95,12/03/19 06:27,"583 Lincoln St, Los Angeles, CA 90001" +302287,20in Monitor,1,109.99,12/17/19 12:03,"123 Elm St, San Francisco, CA 94016" +302288,Wired Headphones,1,11.99,12/14/19 18:52,"751 Lake St, New York City, NY 10001" +302289,Lightning Charging Cable,1,14.95,12/23/19 21:26,"860 Lake St, Austin, TX 73301" +302289,USB-C Charging Cable,1,11.95,12/23/19 21:26,"860 Lake St, Austin, TX 73301" +302290,AAA Batteries (4-pack),2,2.99,12/24/19 16:10,"962 Elm St, San Francisco, CA 94016" +302291,Bose SoundSport Headphones,1,99.99,12/21/19 01:13,"21 Elm St, New York City, NY 10001" +302292,AAA Batteries (4-pack),3,2.99,12/25/19 05:37,"550 13th St, Los Angeles, CA 90001" +302293,USB-C Charging Cable,1,11.95,12/03/19 04:13,"762 Spruce St, Dallas, TX 75001" +302294,AA Batteries (4-pack),2,3.84,12/11/19 01:06,"373 Dogwood St, San Francisco, CA 94016" +302295,27in FHD Monitor,1,149.99,12/29/19 05:29,"751 Jefferson St, Austin, TX 73301" +302296,Lightning Charging Cable,1,14.95,12/12/19 21:43,"869 Elm St, Los Angeles, CA 90001" +302297,Google Phone,1,600,12/25/19 20:28,"330 Hickory St, Atlanta, GA 30301" +302298,Lightning Charging Cable,1,14.95,12/31/19 20:47,"843 Pine St, Los Angeles, CA 90001" +302299,Wired Headphones,1,11.99,12/26/19 23:35,"306 Willow St, Atlanta, GA 30301" +302300,USB-C Charging Cable,1,11.95,12/26/19 09:07,"72 West St, Atlanta, GA 30301" +302301,AAA Batteries (4-pack),2,2.99,12/04/19 09:39,"213 Cedar St, New York City, NY 10001" +302302,AAA Batteries (4-pack),1,2.99,12/29/19 17:50,"950 10th St, Dallas, TX 75001" +302303,USB-C Charging Cable,1,11.95,12/01/19 21:29,"191 River St, San Francisco, CA 94016" +302304,34in Ultrawide Monitor,1,379.99,12/27/19 01:02,"371 Lake St, San Francisco, CA 94016" +302305,USB-C Charging Cable,1,11.95,12/05/19 04:15,"868 Park St, Boston, MA 02215" +302306,27in 4K Gaming Monitor,1,389.99,12/21/19 11:05,"639 8th St, Seattle, WA 98101" +302307,Lightning Charging Cable,1,14.95,12/22/19 11:59,"765 5th St, New York City, NY 10001" +302308,Flatscreen TV,1,300,12/06/19 07:56,"139 7th St, Atlanta, GA 30301" +302309,AA Batteries (4-pack),1,3.84,12/08/19 08:22,"410 9th St, Boston, MA 02215" +302310,Apple Airpods Headphones,1,150,12/14/19 16:08,"194 1st St, Dallas, TX 75001" +302311,AA Batteries (4-pack),1,3.84,12/12/19 20:21,"541 Adams St, Seattle, WA 98101" +302312,Bose SoundSport Headphones,1,99.99,12/25/19 18:25,"566 North St, Boston, MA 02215" +302313,Apple Airpods Headphones,1,150,12/26/19 21:16,"621 Willow St, Atlanta, GA 30301" +302314,Apple Airpods Headphones,1,150,12/12/19 23:18,"16 Walnut St, Los Angeles, CA 90001" +302315,Apple Airpods Headphones,1,150,12/17/19 20:09,"167 Cherry St, Los Angeles, CA 90001" +302316,USB-C Charging Cable,1,11.95,12/22/19 16:04,"919 12th St, Boston, MA 02215" +302317,iPhone,1,700,12/23/19 09:54,"19 Meadow St, Los Angeles, CA 90001" +302318,Lightning Charging Cable,1,14.95,12/21/19 17:37,"91 Cherry St, Seattle, WA 98101" +302319,AAA Batteries (4-pack),1,2.99,12/14/19 21:33,"624 Hill St, Boston, MA 02215" +302320,Google Phone,1,600,12/28/19 14:11,"142 Park St, San Francisco, CA 94016" +302321,AA Batteries (4-pack),1,3.84,12/14/19 11:39,"457 Wilson St, San Francisco, CA 94016" +302322,AAA Batteries (4-pack),1,2.99,12/06/19 13:03,"912 Park St, Los Angeles, CA 90001" +302323,Bose SoundSport Headphones,1,99.99,12/02/19 08:37,"986 Hickory St, Seattle, WA 98101" +302324,AAA Batteries (4-pack),1,2.99,12/07/19 10:53,"90 Center St, Austin, TX 73301" +302325,Lightning Charging Cable,1,14.95,12/27/19 15:01,"313 10th St, Seattle, WA 98101" +302326,20in Monitor,1,109.99,12/22/19 21:07,"725 7th St, Portland, OR 97035" +302327,27in 4K Gaming Monitor,1,389.99,12/31/19 08:52,"386 Dogwood St, San Francisco, CA 94016" +302328,34in Ultrawide Monitor,1,379.99,12/31/19 16:13,"459 Park St, Atlanta, GA 30301" +302329,AA Batteries (4-pack),1,3.84,12/29/19 12:05,"692 Cherry St, Boston, MA 02215" +302330,34in Ultrawide Monitor,1,379.99,12/11/19 08:55,"306 South St, New York City, NY 10001" +302331,Bose SoundSport Headphones,1,99.99,12/06/19 10:24,"297 West St, Seattle, WA 98101" +302332,Macbook Pro Laptop,1,1700,12/29/19 09:22,"489 Forest St, Los Angeles, CA 90001" +302333,34in Ultrawide Monitor,1,379.99,12/18/19 08:53,"509 Cherry St, Dallas, TX 75001" +302334,Lightning Charging Cable,1,14.95,12/29/19 17:23,"434 Walnut St, Los Angeles, CA 90001" +302335,AA Batteries (4-pack),1,3.84,12/19/19 18:27,"521 Wilson St, San Francisco, CA 94016" +302336,Apple Airpods Headphones,1,150,12/08/19 15:01,"90 7th St, San Francisco, CA 94016" +302337,Lightning Charging Cable,1,14.95,12/30/19 13:55,"33 Jackson St, Boston, MA 02215" +302338,AA Batteries (4-pack),1,3.84,12/30/19 14:19,"542 Hill St, Los Angeles, CA 90001" +302339,USB-C Charging Cable,1,11.95,12/23/19 07:21,"335 Chestnut St, San Francisco, CA 94016" +302340,Wired Headphones,1,11.99,12/08/19 12:43,"283 Cedar St, Atlanta, GA 30301" +302341,USB-C Charging Cable,1,11.95,12/25/19 16:55,"725 Pine St, Dallas, TX 75001" +302342,iPhone,1,700,12/31/19 14:19,"883 Madison St, Atlanta, GA 30301" +302343,27in FHD Monitor,1,149.99,12/22/19 08:42,"247 Sunset St, Los Angeles, CA 90001" +302344,AAA Batteries (4-pack),1,2.99,12/06/19 01:29,"816 Hill St, New York City, NY 10001" +302345,Apple Airpods Headphones,1,150,12/03/19 17:50,"452 Elm St, San Francisco, CA 94016" +302346,27in 4K Gaming Monitor,1,389.99,12/16/19 15:22,"6 Cedar St, Los Angeles, CA 90001" +302347,20in Monitor,1,109.99,12/19/19 19:37,"901 Maple St, New York City, NY 10001" +302348,LG Washing Machine,1,600.0,12/11/19 16:49,"686 12th St, Dallas, TX 75001" +302349,Google Phone,1,600,12/22/19 15:18,"665 13th St, Boston, MA 02215" +302350,AAA Batteries (4-pack),1,2.99,12/23/19 00:15,"464 West St, New York City, NY 10001" +302351,AA Batteries (4-pack),1,3.84,12/20/19 14:44,"271 12th St, Atlanta, GA 30301" +302352,AA Batteries (4-pack),2,3.84,12/02/19 08:15,"292 4th St, New York City, NY 10001" +302353,Wired Headphones,1,11.99,12/31/19 10:22,"121 Cedar St, San Francisco, CA 94016" +302354,Apple Airpods Headphones,1,150,12/16/19 14:55,"273 Lakeview St, Dallas, TX 75001" +302355,USB-C Charging Cable,1,11.95,12/10/19 13:15,"165 Hill St, New York City, NY 10001" +302356,AAA Batteries (4-pack),2,2.99,12/01/19 19:42,"924 West St, San Francisco, CA 94016" +302357,Bose SoundSport Headphones,1,99.99,12/21/19 12:55,"749 Hill St, New York City, NY 10001" +302358,AA Batteries (4-pack),1,3.84,12/05/19 20:39,"308 Ridge St, Atlanta, GA 30301" +302359,Flatscreen TV,1,300,12/01/19 14:35,"668 11th St, San Francisco, CA 94016" +302360,AA Batteries (4-pack),1,3.84,12/28/19 11:49,"192 Jefferson St, San Francisco, CA 94016" +302361,AAA Batteries (4-pack),2,2.99,12/10/19 17:18,"147 Elm St, Seattle, WA 98101" +302362,27in FHD Monitor,1,149.99,12/04/19 23:01,"680 Wilson St, San Francisco, CA 94016" +302363,Macbook Pro Laptop,1,1700,12/31/19 17:27,"689 13th St, Los Angeles, CA 90001" +302364,AA Batteries (4-pack),1,3.84,12/28/19 14:56,"851 Jackson St, New York City, NY 10001" +302365,USB-C Charging Cable,1,11.95,12/01/19 12:57,"132 Dogwood St, New York City, NY 10001" +302366,Wired Headphones,1,11.99,12/07/19 10:17,"268 Elm St, Los Angeles, CA 90001" +302367,AA Batteries (4-pack),1,3.84,12/29/19 20:07,"660 Chestnut St, San Francisco, CA 94016" +302368,AAA Batteries (4-pack),1,2.99,12/26/19 04:16,"832 Washington St, Portland, OR 97035" +302369,iPhone,1,700,12/19/19 13:56,"155 12th St, New York City, NY 10001" +302369,Wired Headphones,1,11.99,12/19/19 13:56,"155 12th St, New York City, NY 10001" +302370,Apple Airpods Headphones,1,150,12/06/19 15:01,"483 Jackson St, Boston, MA 02215" +302371,27in 4K Gaming Monitor,1,389.99,12/04/19 11:48,"990 11th St, San Francisco, CA 94016" +302372,Wired Headphones,1,11.99,12/22/19 19:51,"411 Jackson St, San Francisco, CA 94016" +302373,Wired Headphones,1,11.99,12/09/19 14:33,"955 Highland St, Los Angeles, CA 90001" +302374,AA Batteries (4-pack),1,3.84,12/08/19 13:49,"249 Lincoln St, Seattle, WA 98101" +302375,Wired Headphones,1,11.99,12/02/19 13:15,"726 Hickory St, Boston, MA 02215" +302376,AAA Batteries (4-pack),1,2.99,12/09/19 09:17,"248 Hickory St, Los Angeles, CA 90001" +302377,Lightning Charging Cable,1,14.95,12/21/19 12:27,"26 Sunset St, Atlanta, GA 30301" +302378,27in FHD Monitor,1,149.99,12/18/19 18:12,"510 Willow St, San Francisco, CA 94016" +302379,27in 4K Gaming Monitor,1,389.99,12/20/19 16:34,"107 River St, Portland, OR 97035" +302380,34in Ultrawide Monitor,1,379.99,12/19/19 20:54,"596 Adams St, Boston, MA 02215" +302381,Wired Headphones,1,11.99,12/22/19 11:54,"726 Main St, San Francisco, CA 94016" +302382,ThinkPad Laptop,1,999.99,12/18/19 15:19,"717 North St, San Francisco, CA 94016" +302383,iPhone,1,700,12/04/19 11:26,"36 Washington St, Portland, ME 04101" +302384,Apple Airpods Headphones,1,150,12/04/19 22:36,"484 Jefferson St, Los Angeles, CA 90001" +302385,Wired Headphones,1,11.99,12/18/19 18:14,"621 Hickory St, Los Angeles, CA 90001" +302386,Flatscreen TV,1,300,12/06/19 15:01,"675 6th St, Boston, MA 02215" +302387,USB-C Charging Cable,1,11.95,12/23/19 13:09,"291 10th St, Boston, MA 02215" +302388,USB-C Charging Cable,1,11.95,12/22/19 22:23,"224 Park St, San Francisco, CA 94016" +302389,Lightning Charging Cable,1,14.95,12/25/19 19:34,"203 Dogwood St, Los Angeles, CA 90001" +302390,AAA Batteries (4-pack),1,2.99,12/15/19 10:41,"17 Spruce St, Los Angeles, CA 90001" +302391,AA Batteries (4-pack),1,3.84,12/26/19 22:05,"925 Spruce St, Portland, OR 97035" +302392,Bose SoundSport Headphones,1,99.99,12/04/19 18:03,"910 Ridge St, San Francisco, CA 94016" +302393,27in FHD Monitor,1,149.99,12/23/19 19:07,"670 5th St, San Francisco, CA 94016" +302394,AA Batteries (4-pack),1,3.84,12/07/19 15:31,"48 Wilson St, Atlanta, GA 30301" +302394,Apple Airpods Headphones,1,150,12/07/19 15:31,"48 Wilson St, Atlanta, GA 30301" +302395,Wired Headphones,1,11.99,12/14/19 15:56,"254 13th St, Los Angeles, CA 90001" +302396,Bose SoundSport Headphones,1,99.99,12/05/19 20:23,"567 10th St, San Francisco, CA 94016" +302397,AA Batteries (4-pack),1,3.84,12/09/19 20:42,"910 Adams St, Boston, MA 02215" +302398,AAA Batteries (4-pack),1,2.99,12/02/19 15:21,"722 Park St, Boston, MA 02215" +302399,27in FHD Monitor,1,149.99,12/11/19 18:57,"4 Pine St, Boston, MA 02215" +302400,Flatscreen TV,1,300,12/24/19 11:45,"345 South St, San Francisco, CA 94016" +302400,Macbook Pro Laptop,1,1700,12/24/19 11:45,"345 South St, San Francisco, CA 94016" +302401,27in 4K Gaming Monitor,1,389.99,12/21/19 10:11,"8 Cherry St, San Francisco, CA 94016" +302402,LG Dryer,1,600.0,12/11/19 17:08,"713 Ridge St, New York City, NY 10001" +302403,Wired Headphones,1,11.99,12/12/19 21:24,"210 Spruce St, Boston, MA 02215" +302404,AA Batteries (4-pack),2,3.84,12/31/19 17:37,"621 Madison St, New York City, NY 10001" +302405,27in FHD Monitor,1,149.99,12/10/19 13:37,"800 10th St, New York City, NY 10001" +302406,AA Batteries (4-pack),2,3.84,12/15/19 15:56,"956 Washington St, Portland, OR 97035" +302407,USB-C Charging Cable,1,11.95,12/29/19 10:39,"782 Lakeview St, Los Angeles, CA 90001" +302408,AAA Batteries (4-pack),1,2.99,12/30/19 19:17,"649 Center St, New York City, NY 10001" +302409,Bose SoundSport Headphones,1,99.99,12/05/19 17:54,"540 6th St, Portland, ME 04101" +302410,AAA Batteries (4-pack),1,2.99,12/23/19 13:55,"676 Lake St, Austin, TX 73301" +302411,AA Batteries (4-pack),1,3.84,12/09/19 19:26,"565 Adams St, Portland, OR 97035" +302412,AA Batteries (4-pack),2,3.84,12/23/19 15:52,"995 Park St, Atlanta, GA 30301" +302412,Lightning Charging Cable,1,14.95,12/23/19 15:52,"995 Park St, Atlanta, GA 30301" +302413,Apple Airpods Headphones,1,150,12/21/19 07:05,"21 Main St, Boston, MA 02215" +302414,Apple Airpods Headphones,1,150,12/26/19 17:27,"531 Cedar St, Atlanta, GA 30301" +302415,Lightning Charging Cable,1,14.95,12/09/19 16:12,"28 Main St, Boston, MA 02215" +302416,Bose SoundSport Headphones,1,99.99,12/22/19 17:28,"398 Hill St, Dallas, TX 75001" +302417,Lightning Charging Cable,2,14.95,12/30/19 07:39,"416 Chestnut St, Seattle, WA 98101" +,,,,, +302418,34in Ultrawide Monitor,1,379.99,12/16/19 12:50,"998 Walnut St, New York City, NY 10001" +302419,USB-C Charging Cable,1,11.95,12/14/19 10:01,"274 10th St, New York City, NY 10001" +302420,Flatscreen TV,1,300,12/21/19 16:09,"350 Park St, Los Angeles, CA 90001" +302421,34in Ultrawide Monitor,1,379.99,12/27/19 20:27,"750 12th St, San Francisco, CA 94016" +302421,Apple Airpods Headphones,1,150,12/27/19 20:27,"750 12th St, San Francisco, CA 94016" +302422,Wired Headphones,1,11.99,12/26/19 09:05,"560 6th St, New York City, NY 10001" +302423,USB-C Charging Cable,1,11.95,12/08/19 08:22,"59 Forest St, New York City, NY 10001" +302424,Wired Headphones,1,11.99,12/24/19 00:06,"218 6th St, San Francisco, CA 94016" +302425,USB-C Charging Cable,1,11.95,12/30/19 09:16,"581 Spruce St, Dallas, TX 75001" +302426,AA Batteries (4-pack),1,3.84,12/15/19 13:46,"665 Lakeview St, Atlanta, GA 30301" +302427,Apple Airpods Headphones,1,150,12/17/19 21:15,"726 Dogwood St, Portland, OR 97035" +302428,USB-C Charging Cable,1,11.95,12/21/19 12:11,"762 Maple St, San Francisco, CA 94016" +302429,Google Phone,1,600,12/21/19 11:28,"549 6th St, Dallas, TX 75001" +302430,USB-C Charging Cable,1,11.95,12/11/19 23:20,"328 2nd St, Seattle, WA 98101" +302431,AAA Batteries (4-pack),2,2.99,12/23/19 20:10,"273 10th St, Austin, TX 73301" +302432,Wired Headphones,1,11.99,12/19/19 13:19,"829 12th St, New York City, NY 10001" +302433,34in Ultrawide Monitor,1,379.99,12/17/19 06:44,"977 Washington St, Atlanta, GA 30301" +302434,27in FHD Monitor,1,149.99,12/21/19 11:25,"20 7th St, New York City, NY 10001" +302435,AAA Batteries (4-pack),1,2.99,12/18/19 22:04,"762 14th St, New York City, NY 10001" +302436,Lightning Charging Cable,1,14.95,12/14/19 20:24,"448 Willow St, Los Angeles, CA 90001" +302437,Bose SoundSport Headphones,1,99.99,12/13/19 15:00,"228 Johnson St, Seattle, WA 98101" +302438,AAA Batteries (4-pack),1,2.99,12/20/19 14:15,"256 5th St, New York City, NY 10001" +302439,Macbook Pro Laptop,1,1700,12/15/19 21:46,"90 Willow St, Boston, MA 02215" +302440,Wired Headphones,2,11.99,12/11/19 16:10,"952 Pine St, Boston, MA 02215" +302441,Flatscreen TV,1,300,12/16/19 16:24,"16 Adams St, New York City, NY 10001" +302442,USB-C Charging Cable,1,11.95,12/10/19 09:07,"183 14th St, New York City, NY 10001" +302443,Vareebadd Phone,1,400,12/13/19 18:22,"321 Forest St, Los Angeles, CA 90001" +302444,Flatscreen TV,1,300,12/03/19 16:30,"779 Main St, Los Angeles, CA 90001" +302445,USB-C Charging Cable,1,11.95,12/25/19 17:53,"697 Maple St, Atlanta, GA 30301" +302446,Wired Headphones,1,11.99,12/06/19 18:11,"634 4th St, San Francisco, CA 94016" +302447,Wired Headphones,1,11.99,12/28/19 10:19,"859 Jefferson St, Dallas, TX 75001" +302448,Bose SoundSport Headphones,1,99.99,12/05/19 05:49,"39 West St, Austin, TX 73301" +302449,AA Batteries (4-pack),1,3.84,12/07/19 19:39,"399 Lake St, Boston, MA 02215" +302450,AAA Batteries (4-pack),1,2.99,12/13/19 12:38,"916 6th St, San Francisco, CA 94016" +302451,iPhone,1,700,12/26/19 13:22,"369 Hickory St, Austin, TX 73301" +302452,Wired Headphones,1,11.99,12/14/19 13:33,"854 Cedar St, Los Angeles, CA 90001" +302453,27in FHD Monitor,1,149.99,12/02/19 08:07,"167 Church St, Los Angeles, CA 90001" +302454,USB-C Charging Cable,1,11.95,12/18/19 23:17,"652 11th St, San Francisco, CA 94016" +302455,Flatscreen TV,1,300,12/30/19 22:02,"33 10th St, Dallas, TX 75001" +302456,LG Washing Machine,1,600.0,12/30/19 17:32,"852 Hickory St, Atlanta, GA 30301" +302457,Bose SoundSport Headphones,1,99.99,12/29/19 10:30,"737 West St, San Francisco, CA 94016" +302458,Lightning Charging Cable,1,14.95,12/20/19 20:00,"324 10th St, Portland, OR 97035" +302459,Apple Airpods Headphones,1,150,12/10/19 01:30,"913 Lake St, San Francisco, CA 94016" +302460,Google Phone,1,600,12/06/19 17:14,"823 Lake St, New York City, NY 10001" +302461,Bose SoundSport Headphones,1,99.99,12/14/19 22:07,"580 South St, Seattle, WA 98101" +302462,AAA Batteries (4-pack),1,2.99,12/27/19 12:22,"836 13th St, Boston, MA 02215" +302463,USB-C Charging Cable,1,11.95,12/09/19 10:34,"816 Wilson St, San Francisco, CA 94016" +302464,Apple Airpods Headphones,1,150,12/17/19 20:20,"795 Johnson St, Dallas, TX 75001" +302465,20in Monitor,1,109.99,12/07/19 21:42,"723 Cedar St, New York City, NY 10001" +302466,27in 4K Gaming Monitor,1,389.99,12/02/19 18:01,"108 Hill St, New York City, NY 10001" +302467,Wired Headphones,1,11.99,12/24/19 13:19,"300 Chestnut St, Los Angeles, CA 90001" +302468,Flatscreen TV,1,300,12/15/19 18:47,"492 Willow St, Austin, TX 73301" +302469,Google Phone,1,600,12/28/19 11:32,"742 North St, Boston, MA 02215" +302470,Google Phone,1,600,12/13/19 12:21,"683 Center St, New York City, NY 10001" +302470,Bose SoundSport Headphones,1,99.99,12/13/19 12:21,"683 Center St, New York City, NY 10001" +302471,AAA Batteries (4-pack),2,2.99,12/11/19 11:27,"479 4th St, Atlanta, GA 30301" +302472,Apple Airpods Headphones,1,150,12/31/19 16:33,"644 Main St, San Francisco, CA 94016" +302473,Apple Airpods Headphones,1,150,12/19/19 21:04,"644 8th St, Dallas, TX 75001" +302474,Bose SoundSport Headphones,1,99.99,12/04/19 13:40,"843 Lincoln St, Seattle, WA 98101" +302475,Lightning Charging Cable,1,14.95,12/05/19 16:49,"253 Lincoln St, Seattle, WA 98101" +302476,Macbook Pro Laptop,1,1700,12/06/19 15:28,"224 5th St, Los Angeles, CA 90001" +302477,Macbook Pro Laptop,1,1700,12/11/19 12:46,"315 Cedar St, San Francisco, CA 94016" +302478,Lightning Charging Cable,1,14.95,12/20/19 09:21,"754 Washington St, Atlanta, GA 30301" +302479,Wired Headphones,1,11.99,12/16/19 12:10,"504 Walnut St, San Francisco, CA 94016" +302480,20in Monitor,1,109.99,12/20/19 12:53,"232 11th St, San Francisco, CA 94016" +302481,AAA Batteries (4-pack),1,2.99,12/13/19 17:13,"700 Washington St, New York City, NY 10001" +302482,Bose SoundSport Headphones,1,99.99,12/04/19 13:28,"660 River St, San Francisco, CA 94016" +302483,USB-C Charging Cable,1,11.95,12/12/19 11:18,"44 Johnson St, Portland, OR 97035" +302484,AA Batteries (4-pack),1,3.84,12/03/19 00:25,"522 River St, Seattle, WA 98101" +302485,Apple Airpods Headphones,1,150,12/02/19 22:05,"270 Main St, San Francisco, CA 94016" +302486,Wired Headphones,1,11.99,12/13/19 13:24,"454 5th St, San Francisco, CA 94016" +302487,iPhone,1,700,12/17/19 13:56,"143 Park St, San Francisco, CA 94016" +302487,Wired Headphones,1,11.99,12/17/19 13:56,"143 Park St, San Francisco, CA 94016" +302488,27in 4K Gaming Monitor,1,389.99,12/31/19 11:11,"969 Cherry St, Austin, TX 73301" +302489,AAA Batteries (4-pack),4,2.99,12/29/19 15:19,"628 1st St, Austin, TX 73301" +302490,27in 4K Gaming Monitor,1,389.99,12/25/19 23:06,"716 Spruce St, Atlanta, GA 30301" +302491,Lightning Charging Cable,1,14.95,12/03/19 09:13,"213 Cedar St, San Francisco, CA 94016" +302492,Lightning Charging Cable,1,14.95,12/05/19 23:44,"750 Madison St, Austin, TX 73301" +302493,27in FHD Monitor,1,149.99,12/25/19 10:12,"751 Hickory St, New York City, NY 10001" +302493,Lightning Charging Cable,1,14.95,12/25/19 10:12,"751 Hickory St, New York City, NY 10001" +302494,AAA Batteries (4-pack),1,2.99,12/25/19 00:58,"191 Church St, Atlanta, GA 30301" +302495,Google Phone,1,600,12/11/19 17:59,"99 West St, San Francisco, CA 94016" +302495,Bose SoundSport Headphones,1,99.99,12/11/19 17:59,"99 West St, San Francisco, CA 94016" +302496,34in Ultrawide Monitor,1,379.99,12/23/19 22:57,"633 Forest St, Los Angeles, CA 90001" +302497,Wired Headphones,1,11.99,12/04/19 06:28,"833 8th St, San Francisco, CA 94016" +302498,Bose SoundSport Headphones,1,99.99,12/07/19 15:40,"856 West St, Los Angeles, CA 90001" +302499,Lightning Charging Cable,1,14.95,12/28/19 14:12,"721 Center St, Boston, MA 02215" +302500,AAA Batteries (4-pack),1,2.99,12/24/19 18:44,"21 Park St, Portland, OR 97035" +302501,Wired Headphones,1,11.99,12/09/19 09:00,"285 Meadow St, Los Angeles, CA 90001" +302502,Wired Headphones,1,11.99,12/30/19 10:03,"910 Highland St, Dallas, TX 75001" +302503,Lightning Charging Cable,1,14.95,12/24/19 22:13,"166 Madison St, New York City, NY 10001" +302504,Google Phone,1,600,12/07/19 20:26,"53 Jackson St, San Francisco, CA 94016" +302505,Lightning Charging Cable,1,14.95,12/06/19 19:03,"331 11th St, Los Angeles, CA 90001" +302506,34in Ultrawide Monitor,1,379.99,12/14/19 05:51,"780 Cherry St, Los Angeles, CA 90001" +302507,Bose SoundSport Headphones,1,99.99,12/05/19 08:04,"800 Chestnut St, Portland, ME 04101" +302508,AAA Batteries (4-pack),1,2.99,12/28/19 12:38,"939 Church St, Seattle, WA 98101" +302509,34in Ultrawide Monitor,1,379.99,12/02/19 23:17,"241 11th St, Atlanta, GA 30301" +302510,Apple Airpods Headphones,1,150,12/22/19 21:23,"295 Spruce St, New York City, NY 10001" +302511,Macbook Pro Laptop,1,1700,12/31/19 17:53,"119 Johnson St, Atlanta, GA 30301" +302512,Wired Headphones,1,11.99,12/08/19 08:06,"6 Madison St, Austin, TX 73301" +302513,Wired Headphones,1,11.99,12/16/19 19:28,"894 Madison St, Los Angeles, CA 90001" +302514,AAA Batteries (4-pack),1,2.99,12/25/19 20:16,"893 Meadow St, Dallas, TX 75001" +302515,34in Ultrawide Monitor,1,379.99,12/21/19 16:01,"45 Johnson St, Los Angeles, CA 90001" +302516,Lightning Charging Cable,1,14.95,12/11/19 16:33,"657 Madison St, Boston, MA 02215" +302517,USB-C Charging Cable,1,11.95,12/23/19 00:10,"898 7th St, Portland, OR 97035" +302518,Wired Headphones,1,11.99,12/04/19 21:35,"98 Lincoln St, Boston, MA 02215" +302519,34in Ultrawide Monitor,1,379.99,12/15/19 00:59,"491 Pine St, Boston, MA 02215" +302520,Lightning Charging Cable,1,14.95,12/13/19 17:25,"53 Hill St, San Francisco, CA 94016" +302521,AA Batteries (4-pack),1,3.84,12/11/19 12:45,"301 Elm St, Atlanta, GA 30301" +302522,iPhone,1,700,12/31/19 15:26,"172 10th St, Dallas, TX 75001" +302522,Lightning Charging Cable,2,14.95,12/31/19 15:26,"172 10th St, Dallas, TX 75001" +302523,Vareebadd Phone,1,400,12/17/19 10:53,"333 Elm St, San Francisco, CA 94016" +302524,Bose SoundSport Headphones,1,99.99,12/27/19 10:11,"956 Spruce St, New York City, NY 10001" +302525,USB-C Charging Cable,1,11.95,12/08/19 17:41,"731 Wilson St, Portland, OR 97035" +302526,USB-C Charging Cable,1,11.95,12/28/19 17:39,"670 Willow St, San Francisco, CA 94016" +302527,Bose SoundSport Headphones,1,99.99,12/03/19 20:20,"277 Pine St, San Francisco, CA 94016" +302528,iPhone,1,700,12/09/19 06:53,"325 Dogwood St, Los Angeles, CA 90001" +302529,iPhone,1,700,12/17/19 17:26,"203 6th St, New York City, NY 10001" +302530,iPhone,1,700,12/27/19 14:04,"643 North St, Boston, MA 02215" +302531,27in 4K Gaming Monitor,1,389.99,12/08/19 10:49,"226 Center St, Boston, MA 02215" +302532,USB-C Charging Cable,1,11.95,12/12/19 07:41,"400 Lakeview St, Los Angeles, CA 90001" +302533,AAA Batteries (4-pack),1,2.99,12/26/19 11:58,"856 Church St, Atlanta, GA 30301" +302534,27in 4K Gaming Monitor,1,389.99,12/07/19 07:39,"259 Hickory St, New York City, NY 10001" +302535,iPhone,1,700,12/17/19 22:25,"995 Hickory St, San Francisco, CA 94016" +302536,AA Batteries (4-pack),1,3.84,12/27/19 00:24,"392 Spruce St, Seattle, WA 98101" +302537,ThinkPad Laptop,1,999.99,12/18/19 05:48,"925 Maple St, Los Angeles, CA 90001" +302538,USB-C Charging Cable,1,11.95,12/14/19 22:23,"980 Jefferson St, Atlanta, GA 30301" +302539,Apple Airpods Headphones,1,150,12/09/19 18:54,"214 1st St, Seattle, WA 98101" +302540,Apple Airpods Headphones,1,150,12/14/19 06:28,"367 Walnut St, Atlanta, GA 30301" +302541,USB-C Charging Cable,1,11.95,12/23/19 11:42,"511 Pine St, Atlanta, GA 30301" +302542,USB-C Charging Cable,1,11.95,12/30/19 20:29,"771 Center St, Dallas, TX 75001" +302543,Wired Headphones,1,11.99,12/18/19 10:09,"439 12th St, Boston, MA 02215" +302544,Wired Headphones,1,11.99,12/18/19 14:28,"199 Cherry St, San Francisco, CA 94016" +302544,20in Monitor,1,109.99,12/18/19 14:28,"199 Cherry St, San Francisco, CA 94016" +302545,USB-C Charging Cable,1,11.95,12/19/19 13:33,"962 Madison St, Atlanta, GA 30301" +302546,USB-C Charging Cable,1,11.95,12/01/19 12:22,"502 Forest St, Los Angeles, CA 90001" +302547,Macbook Pro Laptop,1,1700,12/06/19 11:43,"25 11th St, Austin, TX 73301" +302548,27in FHD Monitor,1,149.99,12/09/19 10:41,"47 Meadow St, Los Angeles, CA 90001" +302549,iPhone,1,700,12/24/19 18:39,"402 Main St, New York City, NY 10001" +302549,Lightning Charging Cable,1,14.95,12/24/19 18:39,"402 Main St, New York City, NY 10001" +302550,USB-C Charging Cable,1,11.95,12/18/19 19:56,"103 6th St, San Francisco, CA 94016" +302551,Wired Headphones,1,11.99,12/03/19 18:00,"386 Cedar St, Austin, TX 73301" +302552,Wired Headphones,1,11.99,12/29/19 07:06,"484 Maple St, Los Angeles, CA 90001" +302553,Vareebadd Phone,1,400,12/02/19 12:34,"397 North St, Atlanta, GA 30301" +302554,Lightning Charging Cable,1,14.95,12/23/19 13:19,"820 8th St, San Francisco, CA 94016" +302555,Wired Headphones,1,11.99,12/11/19 00:12,"509 Willow St, Boston, MA 02215" +302556,USB-C Charging Cable,1,11.95,12/07/19 17:12,"643 Dogwood St, San Francisco, CA 94016" +302557,Bose SoundSport Headphones,1,99.99,12/30/19 23:11,"766 Lake St, Atlanta, GA 30301" +302558,Bose SoundSport Headphones,1,99.99,12/26/19 23:25,"313 Madison St, San Francisco, CA 94016" +302559,USB-C Charging Cable,1,11.95,12/24/19 13:14,"212 Johnson St, Boston, MA 02215" +302560,USB-C Charging Cable,1,11.95,12/21/19 17:23,"365 Sunset St, Dallas, TX 75001" +302561,AAA Batteries (4-pack),1,2.99,12/22/19 14:43,"733 Hickory St, San Francisco, CA 94016" +302562,27in FHD Monitor,1,149.99,12/13/19 14:17,"97 Center St, New York City, NY 10001" +302563,iPhone,1,700,12/27/19 00:05,"107 Jackson St, Boston, MA 02215" +302564,Flatscreen TV,1,300,12/14/19 17:34,"639 10th St, San Francisco, CA 94016" +302565,Google Phone,1,600,12/20/19 09:56,"613 Main St, San Francisco, CA 94016" +302565,USB-C Charging Cable,1,11.95,12/20/19 09:56,"613 Main St, San Francisco, CA 94016" +302566,AA Batteries (4-pack),1,3.84,12/09/19 09:35,"94 Chestnut St, San Francisco, CA 94016" +302567,Wired Headphones,1,11.99,12/17/19 12:30,"756 South St, Los Angeles, CA 90001" +302568,USB-C Charging Cable,1,11.95,12/09/19 13:22,"358 10th St, Los Angeles, CA 90001" +302569,AAA Batteries (4-pack),1,2.99,12/26/19 10:00,"511 Highland St, Atlanta, GA 30301" +302570,AAA Batteries (4-pack),1,2.99,12/13/19 20:42,"630 Park St, Austin, TX 73301" +302571,Wired Headphones,1,11.99,12/22/19 10:28,"781 4th St, New York City, NY 10001" +302572,AA Batteries (4-pack),2,3.84,12/03/19 17:03,"733 Walnut St, Dallas, TX 75001" +302573,Flatscreen TV,1,300,12/27/19 14:16,"300 Dogwood St, Austin, TX 73301" +302574,Apple Airpods Headphones,1,150,12/14/19 11:56,"494 North St, Boston, MA 02215" +302575,27in FHD Monitor,1,149.99,12/23/19 19:32,"485 Pine St, Atlanta, GA 30301" +302576,USB-C Charging Cable,1,11.95,12/17/19 20:36,"138 Ridge St, Los Angeles, CA 90001" +302577,iPhone,1,700,12/05/19 04:47,"453 Highland St, New York City, NY 10001" +302578,Flatscreen TV,1,300,12/27/19 10:15,"722 Forest St, Boston, MA 02215" +302579,AAA Batteries (4-pack),1,2.99,12/16/19 19:25,"360 Adams St, Austin, TX 73301" +302580,Lightning Charging Cable,1,14.95,12/19/19 19:39,"596 Lakeview St, Seattle, WA 98101" +302581,27in FHD Monitor,1,149.99,12/03/19 18:58,"517 Hill St, Los Angeles, CA 90001" +302582,Bose SoundSport Headphones,1,99.99,12/04/19 15:06,"973 Lincoln St, Los Angeles, CA 90001" +302583,AAA Batteries (4-pack),1,2.99,12/18/19 18:28,"131 Hickory St, Dallas, TX 75001" +302584,27in FHD Monitor,1,149.99,12/22/19 15:28,"84 4th St, Los Angeles, CA 90001" +302585,Google Phone,1,600,12/09/19 19:48,"468 Park St, New York City, NY 10001" +302585,Wired Headphones,1,11.99,12/09/19 19:48,"468 Park St, New York City, NY 10001" +302586,AA Batteries (4-pack),1,3.84,12/20/19 11:28,"93 12th St, Austin, TX 73301" +302587,USB-C Charging Cable,2,11.95,12/25/19 01:59,"185 Madison St, Portland, OR 97035" +302588,Google Phone,1,600,12/02/19 14:05,"329 2nd St, San Francisco, CA 94016" +302589,Lightning Charging Cable,1,14.95,12/26/19 00:47,"982 14th St, San Francisco, CA 94016" +302590,Apple Airpods Headphones,1,150,12/04/19 11:54,"350 Lake St, Boston, MA 02215" +302591,20in Monitor,1,109.99,12/09/19 12:26,"961 West St, San Francisco, CA 94016" +302592,AA Batteries (4-pack),1,3.84,12/16/19 10:07,"267 North St, Dallas, TX 75001" +302593,Wired Headphones,1,11.99,12/28/19 14:31,"342 Pine St, Atlanta, GA 30301" +302594,iPhone,1,700,12/12/19 23:10,"829 Johnson St, Dallas, TX 75001" +302594,Wired Headphones,1,11.99,12/12/19 23:10,"829 Johnson St, Dallas, TX 75001" +302595,ThinkPad Laptop,1,999.99,12/28/19 08:34,"288 Cedar St, New York City, NY 10001" +302595,Apple Airpods Headphones,1,150,12/28/19 08:34,"288 Cedar St, New York City, NY 10001" +302596,AAA Batteries (4-pack),2,2.99,12/14/19 10:13,"836 Chestnut St, Seattle, WA 98101" +302597,AA Batteries (4-pack),1,3.84,12/15/19 20:25,"541 Lakeview St, Seattle, WA 98101" +302598,LG Washing Machine,1,600.0,12/21/19 08:08,"388 12th St, Atlanta, GA 30301" +302599,Apple Airpods Headphones,1,150,12/29/19 22:34,"383 South St, New York City, NY 10001" +302600,AAA Batteries (4-pack),1,2.99,12/10/19 18:01,"892 Center St, Portland, ME 04101" +302601,27in FHD Monitor,1,149.99,12/06/19 17:05,"200 Pine St, Dallas, TX 75001" +302602,Apple Airpods Headphones,1,150,12/29/19 03:12,"51 Johnson St, Dallas, TX 75001" +302603,Lightning Charging Cable,1,14.95,12/25/19 18:58,"47 Church St, Austin, TX 73301" +302604,AA Batteries (4-pack),1,3.84,12/15/19 14:37,"185 Lake St, Seattle, WA 98101" +302605,USB-C Charging Cable,1,11.95,12/24/19 13:26,"542 Maple St, Austin, TX 73301" +302606,Lightning Charging Cable,1,14.95,12/05/19 16:48,"251 Walnut St, San Francisco, CA 94016" +302606,USB-C Charging Cable,1,11.95,12/05/19 16:48,"251 Walnut St, San Francisco, CA 94016" +302607,Flatscreen TV,1,300,12/24/19 09:02,"481 Willow St, New York City, NY 10001" +302608,27in FHD Monitor,1,149.99,12/30/19 12:20,"262 Washington St, New York City, NY 10001" +302609,Apple Airpods Headphones,1,150,12/31/19 15:05,"143 Washington St, Portland, OR 97035" +302610,USB-C Charging Cable,2,11.95,12/08/19 13:43,"661 Chestnut St, San Francisco, CA 94016" +302611,AA Batteries (4-pack),1,3.84,12/16/19 17:48,"796 Cherry St, New York City, NY 10001" +302612,Wired Headphones,1,11.99,12/03/19 06:33,"308 Lake St, Portland, OR 97035" +302613,34in Ultrawide Monitor,1,379.99,12/02/19 10:34,"513 5th St, Austin, TX 73301" +302614,Apple Airpods Headphones,1,150,12/12/19 18:06,"566 5th St, Los Angeles, CA 90001" +302615,27in 4K Gaming Monitor,1,389.99,12/01/19 08:14,"474 Jefferson St, Boston, MA 02215" +302616,Wired Headphones,1,11.99,12/17/19 11:30,"219 West St, Dallas, TX 75001" +302617,Wired Headphones,1,11.99,12/27/19 21:43,"250 Lincoln St, Seattle, WA 98101" +302618,AAA Batteries (4-pack),1,2.99,12/22/19 11:24,"108 Maple St, Seattle, WA 98101" +302619,Bose SoundSport Headphones,1,99.99,12/03/19 16:04,"136 Ridge St, Boston, MA 02215" +302620,Wired Headphones,1,11.99,12/11/19 10:41,"376 2nd St, Los Angeles, CA 90001" +302621,Bose SoundSport Headphones,1,99.99,12/02/19 21:53,"886 Lake St, San Francisco, CA 94016" +302622,AA Batteries (4-pack),1,3.84,12/16/19 20:40,"114 11th St, San Francisco, CA 94016" +302623,AA Batteries (4-pack),2,3.84,12/18/19 12:09,"877 Washington St, New York City, NY 10001" +302624,34in Ultrawide Monitor,1,379.99,12/14/19 16:51,"355 1st St, Atlanta, GA 30301" +302625,Bose SoundSport Headphones,1,99.99,12/26/19 11:14,"781 14th St, Los Angeles, CA 90001" +302626,Flatscreen TV,1,300,12/26/19 03:42,"724 Hill St, Los Angeles, CA 90001" +302627,20in Monitor,1,109.99,12/18/19 18:59,"995 Washington St, Dallas, TX 75001" +302628,27in FHD Monitor,1,149.99,12/29/19 17:00,"917 8th St, Atlanta, GA 30301" +302629,Lightning Charging Cable,1,14.95,12/14/19 21:00,"196 Willow St, Atlanta, GA 30301" +302630,AA Batteries (4-pack),1,3.84,12/27/19 13:42,"685 Wilson St, Austin, TX 73301" +302631,AAA Batteries (4-pack),2,2.99,12/21/19 09:24,"51 2nd St, Los Angeles, CA 90001" +302632,USB-C Charging Cable,1,11.95,12/18/19 21:44,"804 Cherry St, Austin, TX 73301" +302633,27in FHD Monitor,1,149.99,12/13/19 21:26,"67 Park St, Boston, MA 02215" +302634,iPhone,1,700,12/01/19 11:33,"647 Ridge St, San Francisco, CA 94016" +,,,,, +302635,Lightning Charging Cable,1,14.95,12/30/19 02:17,"746 Pine St, Boston, MA 02215" +302636,Lightning Charging Cable,2,14.95,12/06/19 12:18,"412 Willow St, New York City, NY 10001" +302637,AAA Batteries (4-pack),2,2.99,12/10/19 21:34,"301 Meadow St, Seattle, WA 98101" +302638,Lightning Charging Cable,1,14.95,12/14/19 18:28,"165 River St, Austin, TX 73301" +302639,Google Phone,1,600,12/24/19 11:19,"719 Chestnut St, Los Angeles, CA 90001" +302639,USB-C Charging Cable,1,11.95,12/24/19 11:19,"719 Chestnut St, Los Angeles, CA 90001" +302640,AA Batteries (4-pack),2,3.84,12/27/19 17:41,"884 Ridge St, Austin, TX 73301" +302641,AA Batteries (4-pack),1,3.84,12/29/19 12:13,"558 West St, Dallas, TX 75001" +302642,Lightning Charging Cable,1,14.95,12/01/19 13:18,"819 Hill St, Boston, MA 02215" +302643,34in Ultrawide Monitor,1,379.99,12/04/19 08:07,"979 Spruce St, Los Angeles, CA 90001" +302644,Flatscreen TV,1,300,12/15/19 13:28,"721 2nd St, New York City, NY 10001" +302645,Apple Airpods Headphones,1,150,12/31/19 10:21,"423 Cherry St, Los Angeles, CA 90001" +302646,AA Batteries (4-pack),2,3.84,12/16/19 10:04,"888 8th St, San Francisco, CA 94016" +302647,Apple Airpods Headphones,1,150,12/13/19 12:20,"222 7th St, Los Angeles, CA 90001" +302648,AA Batteries (4-pack),1,3.84,12/05/19 16:15,"974 Chestnut St, San Francisco, CA 94016" +302649,AAA Batteries (4-pack),1,2.99,12/11/19 13:27,"379 6th St, Austin, TX 73301" +302650,27in FHD Monitor,1,149.99,12/09/19 00:57,"389 Jefferson St, Boston, MA 02215" +302651,Lightning Charging Cable,1,14.95,12/28/19 12:21,"806 Forest St, Austin, TX 73301" +302652,Lightning Charging Cable,1,14.95,12/18/19 23:22,"154 Highland St, San Francisco, CA 94016" +302653,34in Ultrawide Monitor,1,379.99,12/15/19 13:44,"197 Adams St, New York City, NY 10001" +302654,27in 4K Gaming Monitor,1,389.99,12/03/19 13:14,"773 Main St, San Francisco, CA 94016" +302655,20in Monitor,1,109.99,12/30/19 19:10,"303 Lakeview St, Boston, MA 02215" +302656,AA Batteries (4-pack),2,3.84,12/04/19 16:15,"298 13th St, Seattle, WA 98101" +302657,USB-C Charging Cable,1,11.95,12/06/19 07:06,"348 9th St, Boston, MA 02215" +302658,Lightning Charging Cable,1,14.95,12/11/19 12:53,"427 Elm St, San Francisco, CA 94016" +302659,USB-C Charging Cable,1,11.95,12/08/19 19:54,"737 Highland St, Los Angeles, CA 90001" +,,,,, +302660,Lightning Charging Cable,1,14.95,12/09/19 15:57,"51 Forest St, Los Angeles, CA 90001" +302661,AAA Batteries (4-pack),2,2.99,12/24/19 20:36,"626 Main St, San Francisco, CA 94016" +302662,AA Batteries (4-pack),1,3.84,12/08/19 10:44,"269 14th St, Boston, MA 02215" +302663,34in Ultrawide Monitor,1,379.99,12/16/19 10:02,"621 Highland St, Portland, ME 04101" +302664,27in FHD Monitor,1,149.99,12/10/19 00:18,"222 Cedar St, Seattle, WA 98101" +302665,Vareebadd Phone,1,400,12/25/19 23:32,"827 8th St, San Francisco, CA 94016" +302666,Wired Headphones,1,11.99,12/15/19 18:01,"799 Elm St, Seattle, WA 98101" +302667,USB-C Charging Cable,1,11.95,12/06/19 21:06,"100 Church St, Portland, OR 97035" +302668,AA Batteries (4-pack),2,3.84,12/31/19 19:06,"683 Main St, New York City, NY 10001" +302669,Apple Airpods Headphones,1,150,12/06/19 06:16,"896 Pine St, San Francisco, CA 94016" +302670,Google Phone,1,600,12/15/19 21:18,"520 Willow St, New York City, NY 10001" +302670,USB-C Charging Cable,1,11.95,12/15/19 21:18,"520 Willow St, New York City, NY 10001" +302671,Bose SoundSport Headphones,1,99.99,12/10/19 10:10,"664 Jackson St, Los Angeles, CA 90001" +302672,Apple Airpods Headphones,1,150,12/08/19 10:20,"368 West St, Atlanta, GA 30301" +302673,USB-C Charging Cable,1,11.95,12/10/19 17:59,"144 Johnson St, San Francisco, CA 94016" +302674,27in FHD Monitor,1,149.99,12/30/19 16:44,"649 North St, San Francisco, CA 94016" +302675,Macbook Pro Laptop,1,1700,12/13/19 13:39,"857 Walnut St, San Francisco, CA 94016" +302676,27in 4K Gaming Monitor,1,389.99,12/01/19 19:42,"909 Forest St, San Francisco, CA 94016" +302677,Lightning Charging Cable,1,14.95,12/11/19 13:45,"420 Cherry St, Seattle, WA 98101" +302678,AAA Batteries (4-pack),1,2.99,12/03/19 14:42,"258 Maple St, Atlanta, GA 30301" +302679,Macbook Pro Laptop,1,1700,12/30/19 15:27,"485 Jefferson St, Austin, TX 73301" +302680,Lightning Charging Cable,1,14.95,12/17/19 18:26,"533 Johnson St, San Francisco, CA 94016" +302681,AA Batteries (4-pack),2,3.84,12/15/19 09:56,"548 Church St, Seattle, WA 98101" +302682,Bose SoundSport Headphones,1,99.99,12/11/19 13:55,"77 12th St, San Francisco, CA 94016" +302683,Wired Headphones,1,11.99,12/12/19 12:28,"32 Spruce St, San Francisco, CA 94016" +302684,Lightning Charging Cable,1,14.95,12/08/19 14:56,"579 Sunset St, Portland, OR 97035" +302685,AAA Batteries (4-pack),3,2.99,12/31/19 19:41,"16 Wilson St, San Francisco, CA 94016" +302686,Flatscreen TV,1,300,12/20/19 21:12,"729 Ridge St, Austin, TX 73301" +302687,iPhone,1,700,12/29/19 10:19,"19 14th St, Dallas, TX 75001" +302688,AAA Batteries (4-pack),1,2.99,12/21/19 16:17,"963 Jefferson St, San Francisco, CA 94016" +302689,AAA Batteries (4-pack),1,2.99,12/03/19 15:29,"893 Cedar St, Boston, MA 02215" +302690,Apple Airpods Headphones,2,150,12/03/19 20:04,"503 1st St, New York City, NY 10001" +302691,AA Batteries (4-pack),2,3.84,12/04/19 22:42,"594 Elm St, Seattle, WA 98101" +302692,USB-C Charging Cable,2,11.95,12/18/19 17:45,"780 Adams St, Atlanta, GA 30301" +302693,Bose SoundSport Headphones,1,99.99,12/12/19 18:41,"809 Pine St, Atlanta, GA 30301" +302694,Lightning Charging Cable,1,14.95,12/16/19 16:28,"747 Johnson St, Los Angeles, CA 90001" +302695,Lightning Charging Cable,1,14.95,12/10/19 11:08,"905 Main St, Los Angeles, CA 90001" +302696,Wired Headphones,1,11.99,12/08/19 22:28,"774 9th St, Dallas, TX 75001" +302697,Wired Headphones,1,11.99,12/22/19 18:04,"400 Adams St, San Francisco, CA 94016" +302698,Apple Airpods Headphones,1,150,12/17/19 12:42,"575 4th St, Austin, TX 73301" +302699,Flatscreen TV,1,300,12/28/19 18:22,"410 Elm St, San Francisco, CA 94016" +302700,34in Ultrawide Monitor,1,379.99,12/06/19 10:15,"89 Elm St, Portland, OR 97035" +302701,27in 4K Gaming Monitor,1,389.99,12/06/19 20:30,"98 Cedar St, Los Angeles, CA 90001" +302702,20in Monitor,1,109.99,12/09/19 13:48,"824 Hill St, Portland, OR 97035" +302702,USB-C Charging Cable,1,11.95,12/09/19 13:48,"824 Hill St, Portland, OR 97035" +302703,AAA Batteries (4-pack),1,2.99,12/26/19 23:16,"704 Jefferson St, Portland, OR 97035" +302704,AA Batteries (4-pack),1,3.84,12/12/19 17:07,"807 Elm St, Boston, MA 02215" +302705,20in Monitor,1,109.99,12/09/19 09:30,"432 North St, Los Angeles, CA 90001" +302706,AA Batteries (4-pack),2,3.84,12/09/19 20:36,"885 Elm St, San Francisco, CA 94016" +302707,Google Phone,1,600,12/14/19 10:33,"453 Maple St, Atlanta, GA 30301" +302708,iPhone,1,700,12/02/19 12:56,"437 North St, San Francisco, CA 94016" +302709,AAA Batteries (4-pack),1,2.99,12/31/19 17:43,"73 Sunset St, Atlanta, GA 30301" +302710,Lightning Charging Cable,1,14.95,12/07/19 09:41,"878 North St, Seattle, WA 98101" +302711,Lightning Charging Cable,2,14.95,12/31/19 10:50,"963 Hickory St, Seattle, WA 98101" +302712,20in Monitor,1,109.99,12/27/19 17:57,"978 Ridge St, Portland, OR 97035" +302713,Wired Headphones,1,11.99,12/23/19 14:41,"899 Highland St, San Francisco, CA 94016" +302714,Wired Headphones,2,11.99,12/13/19 01:25,"281 Jefferson St, San Francisco, CA 94016" +302715,Lightning Charging Cable,1,14.95,12/26/19 12:44,"526 Hill St, New York City, NY 10001" +302716,AA Batteries (4-pack),1,3.84,12/19/19 18:19,"777 Hill St, Austin, TX 73301" +302717,27in FHD Monitor,1,149.99,12/18/19 10:07,"818 11th St, Portland, ME 04101" +302718,USB-C Charging Cable,1,11.95,12/17/19 18:40,"987 Hill St, New York City, NY 10001" +302719,Flatscreen TV,1,300,12/02/19 14:34,"788 9th St, San Francisco, CA 94016" +302720,iPhone,1,700,12/21/19 15:01,"381 11th St, San Francisco, CA 94016" +302721,AAA Batteries (4-pack),1,2.99,12/06/19 08:21,"335 11th St, Los Angeles, CA 90001" +302722,Lightning Charging Cable,1,14.95,12/25/19 18:30,"310 Dogwood St, New York City, NY 10001" +302723,USB-C Charging Cable,1,11.95,12/16/19 14:28,"592 Spruce St, Boston, MA 02215" +302724,Wired Headphones,1,11.99,12/15/19 13:48,"387 Meadow St, San Francisco, CA 94016" +302725,AAA Batteries (4-pack),3,2.99,12/24/19 11:23,"108 Johnson St, Dallas, TX 75001" +302726,27in FHD Monitor,1,149.99,12/17/19 13:15,"549 6th St, Boston, MA 02215" +302727,USB-C Charging Cable,1,11.95,12/13/19 08:20,"731 12th St, San Francisco, CA 94016" +302728,AAA Batteries (4-pack),1,2.99,12/11/19 12:50,"902 5th St, Boston, MA 02215" +302729,USB-C Charging Cable,1,11.95,12/03/19 13:08,"171 Maple St, Los Angeles, CA 90001" +302730,27in 4K Gaming Monitor,1,389.99,12/16/19 01:48,"480 Cedar St, Dallas, TX 75001" +302731,Lightning Charging Cable,2,14.95,12/19/19 11:25,"446 1st St, Boston, MA 02215" +302732,Lightning Charging Cable,1,14.95,12/19/19 09:03,"761 Cedar St, Seattle, WA 98101" +302733,Google Phone,1,600,12/12/19 16:49,"848 Main St, New York City, NY 10001" +302734,USB-C Charging Cable,1,11.95,12/22/19 17:25,"590 Church St, Boston, MA 02215" +302735,20in Monitor,1,109.99,12/03/19 13:50,"258 10th St, Atlanta, GA 30301" +302736,Apple Airpods Headphones,1,150,12/31/19 13:11,"577 4th St, San Francisco, CA 94016" +302737,AAA Batteries (4-pack),1,2.99,12/25/19 17:39,"122 2nd St, San Francisco, CA 94016" +302738,27in FHD Monitor,1,149.99,12/19/19 13:29,"271 Ridge St, San Francisco, CA 94016" +302739,Vareebadd Phone,1,400,12/24/19 07:27,"819 Lakeview St, Boston, MA 02215" +302740,AAA Batteries (4-pack),3,2.99,12/17/19 22:08,"451 Jackson St, Boston, MA 02215" +302741,Lightning Charging Cable,1,14.95,12/27/19 12:16,"641 13th St, New York City, NY 10001" +302742,27in FHD Monitor,1,149.99,12/08/19 21:00,"256 6th St, New York City, NY 10001" +302743,iPhone,1,700,12/29/19 22:48,"78 Washington St, Los Angeles, CA 90001" +302743,Apple Airpods Headphones,1,150,12/29/19 22:48,"78 Washington St, Los Angeles, CA 90001" +302744,27in 4K Gaming Monitor,1,389.99,12/03/19 18:25,"562 River St, Los Angeles, CA 90001" +302745,AAA Batteries (4-pack),1,2.99,12/23/19 19:07,"314 Park St, New York City, NY 10001" +302746,Bose SoundSport Headphones,1,99.99,12/27/19 19:07,"86 Adams St, Atlanta, GA 30301" +302747,iPhone,1,700,12/14/19 15:55,"645 Adams St, Seattle, WA 98101" +302748,Bose SoundSport Headphones,1,99.99,12/02/19 10:57,"574 West St, Dallas, TX 75001" +302749,USB-C Charging Cable,2,11.95,12/27/19 11:34,"986 River St, New York City, NY 10001" +302750,20in Monitor,1,109.99,12/08/19 22:19,"685 10th St, Atlanta, GA 30301" +302751,Lightning Charging Cable,1,14.95,12/14/19 13:28,"429 12th St, Atlanta, GA 30301" +302752,Google Phone,1,600,12/17/19 20:50,"871 Main St, San Francisco, CA 94016" +302753,Wired Headphones,1,11.99,12/03/19 16:49,"675 North St, Portland, OR 97035" +302754,Wired Headphones,1,11.99,12/22/19 14:48,"371 Chestnut St, Boston, MA 02215" +302755,27in FHD Monitor,1,149.99,12/09/19 16:38,"228 Jefferson St, Dallas, TX 75001" +302756,iPhone,1,700,12/19/19 12:24,"747 Adams St, Portland, ME 04101" +302757,AA Batteries (4-pack),1,3.84,12/20/19 17:53,"890 Cherry St, Portland, ME 04101" +302758,Bose SoundSport Headphones,1,99.99,12/22/19 15:43,"814 Pine St, Austin, TX 73301" +302759,AAA Batteries (4-pack),1,2.99,12/16/19 15:49,"684 Cedar St, Austin, TX 73301" +302760,iPhone,1,700,12/11/19 08:07,"634 8th St, Dallas, TX 75001" +302761,AAA Batteries (4-pack),1,2.99,12/09/19 12:49,"139 Main St, San Francisco, CA 94016" +302762,AAA Batteries (4-pack),2,2.99,12/07/19 22:00,"129 Maple St, San Francisco, CA 94016" +302763,iPhone,1,700,12/06/19 21:51,"119 River St, Austin, TX 73301" +302763,Lightning Charging Cable,1,14.95,12/06/19 21:51,"119 River St, Austin, TX 73301" +302763,Wired Headphones,1,11.99,12/06/19 21:51,"119 River St, Austin, TX 73301" +302763,Flatscreen TV,1,300,12/06/19 21:51,"119 River St, Austin, TX 73301" +302764,Wired Headphones,1,11.99,01/01/20 04:45,"767 Church St, Seattle, WA 98101" +302765,Lightning Charging Cable,1,14.95,12/18/19 22:44,"772 4th St, Seattle, WA 98101" +302766,Apple Airpods Headphones,1,150,12/26/19 13:11,"510 Maple St, Atlanta, GA 30301" +302767,AAA Batteries (4-pack),1,2.99,12/23/19 23:35,"399 Lake St, Los Angeles, CA 90001" +302768,AAA Batteries (4-pack),2,2.99,12/19/19 17:53,"529 5th St, Los Angeles, CA 90001" +302769,Google Phone,1,600,12/17/19 21:47,"509 Lake St, Portland, OR 97035" +302770,Wired Headphones,1,11.99,12/28/19 21:04,"616 Jackson St, Atlanta, GA 30301" +302771,Wired Headphones,1,11.99,12/20/19 11:17,"800 North St, Boston, MA 02215" +302772,Flatscreen TV,1,300,12/23/19 10:35,"478 Maple St, Portland, OR 97035" +302773,27in FHD Monitor,1,149.99,12/24/19 20:16,"310 13th St, Los Angeles, CA 90001" +302774,27in 4K Gaming Monitor,1,389.99,12/09/19 16:22,"689 Forest St, Seattle, WA 98101" +302775,AAA Batteries (4-pack),2,2.99,12/28/19 12:12,"653 5th St, New York City, NY 10001" +302776,27in 4K Gaming Monitor,1,389.99,12/09/19 11:40,"750 Jefferson St, New York City, NY 10001" +302777,Lightning Charging Cable,1,14.95,12/27/19 12:19,"913 10th St, New York City, NY 10001" +302777,Lightning Charging Cable,1,14.95,12/27/19 12:19,"913 10th St, New York City, NY 10001" +302778,Lightning Charging Cable,1,14.95,12/17/19 14:20,"777 Jackson St, Los Angeles, CA 90001" +302779,Apple Airpods Headphones,1,150,12/09/19 14:34,"360 Meadow St, Los Angeles, CA 90001" +302780,Flatscreen TV,1,300,12/13/19 20:30,"979 Madison St, San Francisco, CA 94016" +302781,USB-C Charging Cable,1,11.95,12/21/19 07:33,"318 Spruce St, Seattle, WA 98101" +302782,AAA Batteries (4-pack),2,2.99,12/18/19 18:07,"805 Highland St, New York City, NY 10001" +302783,USB-C Charging Cable,1,11.95,12/05/19 16:31,"613 Walnut St, Seattle, WA 98101" +302784,Vareebadd Phone,1,400,12/30/19 12:00,"249 Jefferson St, Portland, OR 97035" +302785,USB-C Charging Cable,2,11.95,12/12/19 05:26,"772 Pine St, San Francisco, CA 94016" +302786,Lightning Charging Cable,1,14.95,12/18/19 06:58,"310 Jackson St, San Francisco, CA 94016" +302787,Apple Airpods Headphones,1,150,12/09/19 13:11,"366 Walnut St, Dallas, TX 75001" +302788,Apple Airpods Headphones,1,150,12/10/19 12:25,"344 14th St, Los Angeles, CA 90001" +302789,AAA Batteries (4-pack),2,2.99,12/22/19 12:14,"297 Maple St, Boston, MA 02215" +302790,Macbook Pro Laptop,1,1700,12/15/19 16:59,"103 Park St, New York City, NY 10001" +302791,Apple Airpods Headphones,1,150,12/13/19 21:15,"524 13th St, San Francisco, CA 94016" +302792,Lightning Charging Cable,1,14.95,12/30/19 00:15,"639 Wilson St, San Francisco, CA 94016" +302793,Macbook Pro Laptop,1,1700,12/07/19 21:46,"493 Lake St, San Francisco, CA 94016" +302794,27in FHD Monitor,1,149.99,12/06/19 23:42,"318 Willow St, San Francisco, CA 94016" +302795,Bose SoundSport Headphones,2,99.99,12/26/19 17:50,"618 Pine St, Boston, MA 02215" +302796,Google Phone,1,600,12/13/19 23:58,"400 6th St, Boston, MA 02215" +302796,Wired Headphones,1,11.99,12/13/19 23:58,"400 6th St, Boston, MA 02215" +302797,Lightning Charging Cable,1,14.95,12/13/19 02:24,"241 1st St, Atlanta, GA 30301" +302798,USB-C Charging Cable,1,11.95,12/26/19 01:21,"189 Willow St, Boston, MA 02215" +302799,Macbook Pro Laptop,1,1700,12/24/19 09:38,"27 Willow St, San Francisco, CA 94016" +302800,ThinkPad Laptop,1,999.99,12/07/19 15:11,"122 North St, Seattle, WA 98101" +302801,AA Batteries (4-pack),1,3.84,12/25/19 20:07,"194 North St, San Francisco, CA 94016" +302802,Apple Airpods Headphones,1,150,12/14/19 14:30,"490 Jackson St, Seattle, WA 98101" +302803,20in Monitor,1,109.99,12/04/19 13:28,"327 Cherry St, Portland, OR 97035" +302804,Apple Airpods Headphones,1,150,12/12/19 15:13,"976 Madison St, Atlanta, GA 30301" +302805,Bose SoundSport Headphones,1,99.99,12/01/19 20:56,"818 7th St, Dallas, TX 75001" +302806,Wired Headphones,1,11.99,12/10/19 13:04,"391 8th St, Boston, MA 02215" +302807,AA Batteries (4-pack),2,3.84,12/05/19 08:07,"568 Forest St, San Francisco, CA 94016" +302808,USB-C Charging Cable,2,11.95,12/12/19 13:58,"780 4th St, Seattle, WA 98101" +302809,LG Washing Machine,1,600.0,12/18/19 01:55,"542 Maple St, Atlanta, GA 30301" +302810,USB-C Charging Cable,1,11.95,12/22/19 21:16,"209 10th St, Atlanta, GA 30301" +302811,Apple Airpods Headphones,1,150,12/08/19 19:43,"223 Park St, New York City, NY 10001" +302812,USB-C Charging Cable,1,11.95,12/19/19 15:02,"249 Church St, Seattle, WA 98101" +302813,Lightning Charging Cable,1,14.95,12/24/19 07:19,"541 Meadow St, Austin, TX 73301" +302814,AAA Batteries (4-pack),1,2.99,12/03/19 15:00,"200 Cherry St, San Francisco, CA 94016" +302815,Wired Headphones,1,11.99,12/28/19 09:57,"305 2nd St, New York City, NY 10001" +302816,AAA Batteries (4-pack),1,2.99,12/15/19 13:53,"420 Wilson St, San Francisco, CA 94016" +302817,AAA Batteries (4-pack),2,2.99,12/16/19 07:12,"371 South St, Atlanta, GA 30301" +302818,Lightning Charging Cable,1,14.95,12/11/19 22:12,"346 Washington St, San Francisco, CA 94016" +302819,Bose SoundSport Headphones,2,99.99,12/27/19 20:54,"136 Church St, San Francisco, CA 94016" +302820,27in FHD Monitor,2,149.99,12/02/19 11:19,"383 4th St, Boston, MA 02215" +302821,27in 4K Gaming Monitor,1,389.99,12/19/19 00:50,"910 Johnson St, Los Angeles, CA 90001" +302822,AAA Batteries (4-pack),1,2.99,12/01/19 22:52,"672 Church St, Seattle, WA 98101" +302823,Lightning Charging Cable,1,14.95,12/20/19 03:07,"391 Adams St, San Francisco, CA 94016" +302824,USB-C Charging Cable,1,11.95,12/22/19 21:09,"523 Park St, Dallas, TX 75001" +302825,34in Ultrawide Monitor,1,379.99,12/14/19 21:52,"834 Lincoln St, Los Angeles, CA 90001" +302826,Wired Headphones,1,11.99,12/21/19 14:38,"849 Hickory St, Atlanta, GA 30301" +302827,AAA Batteries (4-pack),1,2.99,12/08/19 21:21,"377 Highland St, New York City, NY 10001" +302828,Vareebadd Phone,1,400,12/24/19 23:41,"733 Meadow St, Seattle, WA 98101" +302829,34in Ultrawide Monitor,1,379.99,12/11/19 14:00,"734 Walnut St, Los Angeles, CA 90001" +302830,USB-C Charging Cable,2,11.95,12/31/19 11:50,"551 9th St, Los Angeles, CA 90001" +302830,Lightning Charging Cable,1,14.95,12/31/19 11:50,"551 9th St, Los Angeles, CA 90001" +302831,Bose SoundSport Headphones,1,99.99,12/03/19 17:10,"131 6th St, Dallas, TX 75001" +302832,Macbook Pro Laptop,1,1700,12/11/19 13:20,"156 Johnson St, San Francisco, CA 94016" +302833,Google Phone,1,600,12/20/19 13:24,"812 Lake St, Boston, MA 02215" +302833,USB-C Charging Cable,1,11.95,12/20/19 13:24,"812 Lake St, Boston, MA 02215" +302834,Flatscreen TV,1,300,12/09/19 17:45,"918 9th St, Seattle, WA 98101" +302835,AA Batteries (4-pack),2,3.84,12/20/19 22:21,"625 Lakeview St, Los Angeles, CA 90001" +302836,Wired Headphones,1,11.99,12/29/19 20:28,"638 2nd St, Atlanta, GA 30301" +302837,Bose SoundSport Headphones,1,99.99,12/17/19 01:23,"189 Hickory St, Portland, OR 97035" +302838,Apple Airpods Headphones,1,150,12/09/19 16:47,"156 Johnson St, San Francisco, CA 94016" +302839,Wired Headphones,1,11.99,12/20/19 00:44,"791 Maple St, Seattle, WA 98101" +302840,Lightning Charging Cable,1,14.95,12/14/19 08:34,"427 Sunset St, New York City, NY 10001" +302841,27in 4K Gaming Monitor,1,389.99,12/26/19 22:08,"870 Lakeview St, Portland, ME 04101" +302842,AAA Batteries (4-pack),1,2.99,12/17/19 10:35,"676 Ridge St, Los Angeles, CA 90001" +302843,USB-C Charging Cable,1,11.95,12/22/19 12:02,"946 1st St, Dallas, TX 75001" +302844,20in Monitor,1,109.99,12/02/19 12:18,"90 Dogwood St, New York City, NY 10001" +302845,Lightning Charging Cable,1,14.95,12/22/19 14:10,"610 1st St, Dallas, TX 75001" +302846,34in Ultrawide Monitor,1,379.99,12/14/19 23:02,"10 Spruce St, Austin, TX 73301" +302847,Bose SoundSport Headphones,1,99.99,12/26/19 23:30,"93 2nd St, Portland, OR 97035" +302848,AA Batteries (4-pack),2,3.84,12/22/19 19:49,"748 Willow St, Atlanta, GA 30301" +302849,Bose SoundSport Headphones,1,99.99,12/24/19 23:45,"32 4th St, Seattle, WA 98101" +302850,Macbook Pro Laptop,1,1700,12/31/19 22:19,"133 8th St, Dallas, TX 75001" +302851,Macbook Pro Laptop,1,1700,12/10/19 13:17,"230 Dogwood St, Dallas, TX 75001" +302852,Flatscreen TV,1,300,12/03/19 22:48,"126 West St, Boston, MA 02215" +302853,AAA Batteries (4-pack),3,2.99,12/31/19 23:44,"648 14th St, Boston, MA 02215" +302854,AA Batteries (4-pack),2,3.84,12/22/19 14:14,"437 13th St, San Francisco, CA 94016" +302855,AAA Batteries (4-pack),1,2.99,12/08/19 12:51,"493 Spruce St, Atlanta, GA 30301" +302856,Vareebadd Phone,1,400,12/06/19 22:59,"342 Main St, Portland, ME 04101" +302857,Wired Headphones,1,11.99,12/11/19 10:33,"443 Jackson St, San Francisco, CA 94016" +302858,27in FHD Monitor,1,149.99,12/03/19 15:03,"827 Willow St, Los Angeles, CA 90001" +302859,USB-C Charging Cable,1,11.95,12/27/19 18:38,"137 2nd St, Seattle, WA 98101" +302860,Wired Headphones,1,11.99,12/06/19 18:36,"101 Main St, Dallas, TX 75001" +302861,AA Batteries (4-pack),1,3.84,12/09/19 22:20,"661 12th St, Dallas, TX 75001" +302862,USB-C Charging Cable,1,11.95,12/02/19 18:10,"734 Maple St, Seattle, WA 98101" +302863,AA Batteries (4-pack),1,3.84,12/20/19 17:47,"942 13th St, San Francisco, CA 94016" +302864,Apple Airpods Headphones,1,150,12/26/19 22:01,"841 Lincoln St, New York City, NY 10001" +302865,20in Monitor,1,109.99,12/10/19 19:21,"226 5th St, Dallas, TX 75001" +302866,Apple Airpods Headphones,1,150,12/15/19 16:50,"19 Jackson St, Atlanta, GA 30301" +302867,USB-C Charging Cable,1,11.95,12/09/19 14:10,"550 Washington St, Los Angeles, CA 90001" +302868,Lightning Charging Cable,1,14.95,12/24/19 12:46,"577 13th St, Los Angeles, CA 90001" +302869,AAA Batteries (4-pack),1,2.99,12/09/19 21:13,"455 Johnson St, Atlanta, GA 30301" +302870,Macbook Pro Laptop,1,1700,12/17/19 17:27,"803 Maple St, New York City, NY 10001" +302871,Apple Airpods Headphones,1,150,12/02/19 11:05,"905 Johnson St, San Francisco, CA 94016" +302872,Lightning Charging Cable,1,14.95,12/25/19 20:49,"754 6th St, Los Angeles, CA 90001" +302873,Bose SoundSport Headphones,1,99.99,12/23/19 07:16,"775 2nd St, New York City, NY 10001" +302874,AAA Batteries (4-pack),1,2.99,12/18/19 19:09,"69 6th St, Los Angeles, CA 90001" +302875,34in Ultrawide Monitor,1,379.99,12/25/19 14:26,"946 Johnson St, San Francisco, CA 94016" +302876,Lightning Charging Cable,1,14.95,12/07/19 22:53,"806 Cedar St, Seattle, WA 98101" +302877,USB-C Charging Cable,1,11.95,12/14/19 17:31,"100 11th St, San Francisco, CA 94016" +302878,iPhone,1,700,12/30/19 21:06,"264 11th St, Los Angeles, CA 90001" +302879,Apple Airpods Headphones,1,150,12/18/19 13:12,"786 Hill St, Boston, MA 02215" +302880,AAA Batteries (4-pack),2,2.99,12/09/19 15:41,"273 1st St, Boston, MA 02215" +302881,Wired Headphones,1,11.99,12/03/19 20:58,"947 Elm St, San Francisco, CA 94016" +302882,Bose SoundSport Headphones,1,99.99,12/07/19 23:11,"730 Washington St, Boston, MA 02215" +302883,34in Ultrawide Monitor,1,379.99,12/10/19 11:23,"153 West St, Los Angeles, CA 90001" +302884,AA Batteries (4-pack),1,3.84,12/21/19 22:03,"326 9th St, Los Angeles, CA 90001" +302885,Wired Headphones,1,11.99,12/10/19 20:23,"389 Adams St, Dallas, TX 75001" +302886,Apple Airpods Headphones,1,150,12/10/19 13:00,"495 Jackson St, Los Angeles, CA 90001" +302887,AAA Batteries (4-pack),1,2.99,12/26/19 19:46,"523 Lakeview St, Atlanta, GA 30301" +302888,Apple Airpods Headphones,1,150,12/15/19 00:54,"908 Walnut St, Austin, TX 73301" +302889,AA Batteries (4-pack),1,3.84,12/27/19 22:35,"394 Washington St, Portland, OR 97035" +302890,AAA Batteries (4-pack),1,2.99,12/23/19 04:27,"444 Chestnut St, San Francisco, CA 94016" +302891,AAA Batteries (4-pack),1,2.99,12/04/19 21:53,"228 Wilson St, San Francisco, CA 94016" +302892,AA Batteries (4-pack),1,3.84,12/15/19 18:07,"862 Adams St, Atlanta, GA 30301" +302893,AA Batteries (4-pack),1,3.84,12/08/19 13:50,"875 West St, New York City, NY 10001" +302894,AA Batteries (4-pack),1,3.84,12/25/19 09:12,"915 1st St, San Francisco, CA 94016" +302895,Lightning Charging Cable,1,14.95,12/13/19 20:37,"385 11th St, Boston, MA 02215" +302896,Bose SoundSport Headphones,1,99.99,12/08/19 15:04,"907 West St, San Francisco, CA 94016" +302897,AA Batteries (4-pack),2,3.84,12/11/19 00:55,"878 5th St, Los Angeles, CA 90001" +302898,AAA Batteries (4-pack),2,2.99,12/27/19 20:39,"348 West St, Los Angeles, CA 90001" +302899,USB-C Charging Cable,1,11.95,12/27/19 11:05,"509 Hill St, Los Angeles, CA 90001" +302900,Wired Headphones,1,11.99,12/27/19 14:18,"47 Pine St, San Francisco, CA 94016" +302901,Wired Headphones,1,11.99,12/25/19 18:55,"475 Washington St, Dallas, TX 75001" +302902,Wired Headphones,1,11.99,12/13/19 15:22,"280 West St, San Francisco, CA 94016" +302903,Wired Headphones,1,11.99,12/12/19 19:54,"556 Lake St, Dallas, TX 75001" +302904,Macbook Pro Laptop,1,1700,12/27/19 09:20,"296 Cedar St, San Francisco, CA 94016" +302905,AAA Batteries (4-pack),5,2.99,12/01/19 09:51,"634 Spruce St, Austin, TX 73301" +302906,USB-C Charging Cable,1,11.95,12/11/19 12:15,"712 Church St, San Francisco, CA 94016" +302907,AA Batteries (4-pack),2,3.84,12/29/19 00:47,"120 River St, Los Angeles, CA 90001" +302908,iPhone,1,700,12/30/19 18:29,"794 4th St, Seattle, WA 98101" +302909,USB-C Charging Cable,1,11.95,12/03/19 20:51,"479 Adams St, San Francisco, CA 94016" +302910,ThinkPad Laptop,1,999.99,12/06/19 11:52,"908 Park St, San Francisco, CA 94016" +302911,AA Batteries (4-pack),1,3.84,12/27/19 10:12,"776 Ridge St, Boston, MA 02215" +302912,Lightning Charging Cable,1,14.95,12/23/19 04:57,"722 Lake St, Los Angeles, CA 90001" +302913,Lightning Charging Cable,1,14.95,12/16/19 13:41,"161 Lake St, Los Angeles, CA 90001" +302914,LG Dryer,1,600.0,12/18/19 19:15,"240 Ridge St, Austin, TX 73301" +302915,Macbook Pro Laptop,1,1700,12/13/19 13:28,"471 11th St, Los Angeles, CA 90001" +302916,Wired Headphones,1,11.99,12/27/19 13:09,"607 Jefferson St, New York City, NY 10001" +302917,iPhone,1,700,12/16/19 12:39,"164 10th St, Boston, MA 02215" +302918,AA Batteries (4-pack),1,3.84,12/13/19 20:50,"929 Cedar St, San Francisco, CA 94016" +302919,27in FHD Monitor,1,149.99,12/30/19 17:35,"208 12th St, San Francisco, CA 94016" +302920,USB-C Charging Cable,2,11.95,12/16/19 17:25,"516 Lincoln St, Atlanta, GA 30301" +302921,Vareebadd Phone,1,400,12/21/19 22:02,"183 South St, Seattle, WA 98101" +302921,USB-C Charging Cable,1,11.95,12/21/19 22:02,"183 South St, Seattle, WA 98101" +302921,Wired Headphones,1,11.99,12/21/19 22:02,"183 South St, Seattle, WA 98101" +302922,USB-C Charging Cable,1,11.95,12/24/19 00:12,"921 Cherry St, Portland, ME 04101" +302923,AA Batteries (4-pack),1,3.84,12/06/19 17:17,"708 Spruce St, Seattle, WA 98101" +302924,USB-C Charging Cable,1,11.95,12/09/19 23:10,"989 Maple St, New York City, NY 10001" +302925,USB-C Charging Cable,1,11.95,12/19/19 21:11,"64 Hickory St, Los Angeles, CA 90001" +302926,34in Ultrawide Monitor,1,379.99,12/21/19 21:41,"530 Ridge St, Los Angeles, CA 90001" +302927,Lightning Charging Cable,1,14.95,12/04/19 23:58,"362 Cedar St, Boston, MA 02215" +302928,27in 4K Gaming Monitor,1,389.99,12/05/19 09:01,"284 Cedar St, Atlanta, GA 30301" +302929,AAA Batteries (4-pack),1,2.99,12/03/19 23:17,"936 Cherry St, Atlanta, GA 30301" +302930,ThinkPad Laptop,1,999.99,12/16/19 08:09,"275 Spruce St, New York City, NY 10001" +302931,ThinkPad Laptop,1,999.99,12/18/19 15:59,"124 Cherry St, New York City, NY 10001" +302932,AA Batteries (4-pack),1,3.84,12/20/19 18:29,"507 2nd St, New York City, NY 10001" +302933,Apple Airpods Headphones,1,150,12/02/19 13:03,"85 Adams St, Atlanta, GA 30301" +302934,USB-C Charging Cable,1,11.95,12/09/19 20:52,"367 1st St, Seattle, WA 98101" +302935,Lightning Charging Cable,1,14.95,12/14/19 21:21,"777 10th St, Los Angeles, CA 90001" +302936,27in FHD Monitor,1,149.99,12/09/19 12:13,"254 10th St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +302937,ThinkPad Laptop,1,999.99,12/25/19 09:31,"524 14th St, Seattle, WA 98101" +302938,Wired Headphones,1,11.99,12/20/19 12:17,"439 Jackson St, Seattle, WA 98101" +302939,Lightning Charging Cable,1,14.95,12/08/19 15:20,"515 Jackson St, Portland, OR 97035" +302940,Lightning Charging Cable,1,14.95,12/12/19 07:21,"632 6th St, San Francisco, CA 94016" +302941,Apple Airpods Headphones,1,150,12/07/19 17:16,"52 North St, Austin, TX 73301" +302942,Lightning Charging Cable,1,14.95,12/15/19 14:47,"412 5th St, Los Angeles, CA 90001" +302943,USB-C Charging Cable,1,11.95,12/14/19 08:46,"736 Forest St, Portland, OR 97035" +302944,AAA Batteries (4-pack),1,2.99,12/18/19 20:17,"316 Jackson St, Boston, MA 02215" +302945,USB-C Charging Cable,1,11.95,12/13/19 10:00,"597 Highland St, New York City, NY 10001" +302946,AAA Batteries (4-pack),1,2.99,12/13/19 22:21,"352 Main St, New York City, NY 10001" +302947,34in Ultrawide Monitor,1,379.99,12/30/19 18:32,"174 8th St, Los Angeles, CA 90001" +302948,Flatscreen TV,1,300,12/07/19 09:06,"540 12th St, Portland, OR 97035" +302949,Lightning Charging Cable,1,14.95,12/21/19 09:59,"877 11th St, Boston, MA 02215" +302950,AAA Batteries (4-pack),1,2.99,12/19/19 08:27,"126 Hill St, Boston, MA 02215" +302951,Lightning Charging Cable,1,14.95,12/10/19 07:33,"149 West St, Dallas, TX 75001" +302952,USB-C Charging Cable,1,11.95,12/10/19 12:56,"226 8th St, Austin, TX 73301" +302953,Google Phone,1,600,12/27/19 18:18,"120 Maple St, San Francisco, CA 94016" +302954,USB-C Charging Cable,1,11.95,12/16/19 16:27,"309 Pine St, Los Angeles, CA 90001" +302955,Vareebadd Phone,1,400,12/30/19 17:28,"13 Spruce St, San Francisco, CA 94016" +302956,AAA Batteries (4-pack),1,2.99,12/05/19 19:40,"749 Pine St, Dallas, TX 75001" +302957,AA Batteries (4-pack),3,3.84,12/30/19 16:58,"824 Willow St, San Francisco, CA 94016" +302958,Wired Headphones,1,11.99,12/12/19 12:21,"443 Willow St, San Francisco, CA 94016" +302959,AA Batteries (4-pack),1,3.84,12/09/19 19:24,"315 Lake St, Los Angeles, CA 90001" +302960,AAA Batteries (4-pack),3,2.99,12/02/19 19:33,"322 Jackson St, San Francisco, CA 94016" +302961,34in Ultrawide Monitor,1,379.99,12/15/19 10:22,"831 2nd St, San Francisco, CA 94016" +302962,ThinkPad Laptop,1,999.99,12/25/19 22:24,"717 4th St, Atlanta, GA 30301" +302963,USB-C Charging Cable,2,11.95,12/30/19 14:01,"400 11th St, Austin, TX 73301" +302964,Macbook Pro Laptop,1,1700,12/23/19 20:08,"924 Jackson St, Portland, OR 97035" +302965,27in FHD Monitor,1,149.99,12/25/19 23:31,"253 Madison St, Austin, TX 73301" +302966,iPhone,1,700,12/12/19 15:55,"408 6th St, Dallas, TX 75001" +302966,Lightning Charging Cable,1,14.95,12/12/19 15:55,"408 6th St, Dallas, TX 75001" +302967,Flatscreen TV,1,300,12/20/19 13:25,"299 Walnut St, Portland, OR 97035" +302968,USB-C Charging Cable,1,11.95,12/01/19 22:23,"535 9th St, Los Angeles, CA 90001" +302969,27in 4K Gaming Monitor,1,389.99,12/20/19 16:45,"916 South St, Los Angeles, CA 90001" +302970,34in Ultrawide Monitor,1,379.99,12/29/19 10:00,"86 Maple St, Seattle, WA 98101" +302971,AA Batteries (4-pack),1,3.84,12/31/19 16:41,"32 Wilson St, Los Angeles, CA 90001" +302972,Apple Airpods Headphones,1,150,12/24/19 15:35,"268 Pine St, Portland, OR 97035" +302973,iPhone,1,700,12/29/19 11:35,"457 12th St, New York City, NY 10001" +302973,Lightning Charging Cable,1,14.95,12/29/19 11:35,"457 12th St, New York City, NY 10001" +302974,ThinkPad Laptop,1,999.99,12/19/19 12:27,"245 8th St, Boston, MA 02215" +302975,USB-C Charging Cable,1,11.95,12/06/19 17:46,"510 13th St, Seattle, WA 98101" +302976,USB-C Charging Cable,1,11.95,12/09/19 01:25,"517 Jefferson St, San Francisco, CA 94016" +302977,AAA Batteries (4-pack),1,2.99,12/25/19 11:23,"495 Lake St, San Francisco, CA 94016" +302978,Wired Headphones,1,11.99,12/15/19 22:28,"65 12th St, Los Angeles, CA 90001" +302979,USB-C Charging Cable,1,11.95,12/27/19 12:19,"470 6th St, Boston, MA 02215" +302980,Vareebadd Phone,1,400,12/10/19 10:30,"554 River St, Boston, MA 02215" +302981,Lightning Charging Cable,1,14.95,12/28/19 10:40,"859 8th St, Los Angeles, CA 90001" +302982,AAA Batteries (4-pack),2,2.99,12/27/19 18:56,"248 8th St, Austin, TX 73301" +302982,USB-C Charging Cable,1,11.95,12/27/19 18:56,"248 8th St, Austin, TX 73301" +302983,34in Ultrawide Monitor,1,379.99,12/22/19 19:14,"217 West St, Los Angeles, CA 90001" +302984,Wired Headphones,2,11.99,12/18/19 10:21,"638 Willow St, Dallas, TX 75001" +302985,AAA Batteries (4-pack),1,2.99,12/17/19 13:13,"28 Jefferson St, San Francisco, CA 94016" +302986,27in FHD Monitor,1,149.99,12/14/19 19:47,"468 6th St, Dallas, TX 75001" +302987,Wired Headphones,1,11.99,12/20/19 07:46,"650 Jefferson St, San Francisco, CA 94016" +302988,USB-C Charging Cable,1,11.95,12/23/19 21:43,"411 Main St, Boston, MA 02215" +302989,USB-C Charging Cable,1,11.95,12/12/19 19:48,"94 8th St, New York City, NY 10001" +302990,USB-C Charging Cable,1,11.95,12/03/19 13:51,"80 11th St, San Francisco, CA 94016" +302991,USB-C Charging Cable,1,11.95,12/09/19 15:38,"822 Pine St, New York City, NY 10001" +302992,USB-C Charging Cable,1,11.95,12/15/19 13:23,"266 4th St, Los Angeles, CA 90001" +302993,Macbook Pro Laptop,1,1700,12/24/19 16:47,"530 Wilson St, Portland, ME 04101" +302994,AAA Batteries (4-pack),2,2.99,12/30/19 00:13,"344 6th St, San Francisco, CA 94016" +302995,AAA Batteries (4-pack),1,2.99,12/27/19 10:31,"536 Johnson St, Portland, ME 04101" +302996,Wired Headphones,1,11.99,12/24/19 07:48,"547 8th St, Dallas, TX 75001" +302997,Lightning Charging Cable,1,14.95,12/09/19 12:40,"986 Jackson St, Los Angeles, CA 90001" +302998,34in Ultrawide Monitor,1,379.99,12/08/19 15:17,"534 1st St, New York City, NY 10001" +302999,34in Ultrawide Monitor,1,379.99,12/04/19 22:52,"45 Elm St, Los Angeles, CA 90001" +303000,AAA Batteries (4-pack),2,2.99,12/22/19 11:08,"423 Johnson St, Los Angeles, CA 90001" +303001,AAA Batteries (4-pack),1,2.99,12/24/19 19:43,"727 South St, Austin, TX 73301" +303002,Bose SoundSport Headphones,1,99.99,12/06/19 23:02,"252 Main St, Boston, MA 02215" +303003,Lightning Charging Cable,1,14.95,12/23/19 19:47,"313 1st St, Seattle, WA 98101" +303004,AAA Batteries (4-pack),2,2.99,12/06/19 14:32,"775 12th St, Los Angeles, CA 90001" +303005,AAA Batteries (4-pack),1,2.99,12/23/19 10:53,"46 Adams St, Los Angeles, CA 90001" +303006,AA Batteries (4-pack),1,3.84,12/03/19 14:04,"136 Elm St, Seattle, WA 98101" +303007,AAA Batteries (4-pack),1,2.99,12/03/19 17:51,"854 Maple St, Atlanta, GA 30301" +303007,Wired Headphones,1,11.99,12/03/19 17:51,"854 Maple St, Atlanta, GA 30301" +303008,Apple Airpods Headphones,1,150,12/08/19 11:15,"457 Lake St, New York City, NY 10001" +303009,20in Monitor,1,109.99,12/13/19 17:46,"264 Hickory St, San Francisco, CA 94016" +303010,Lightning Charging Cable,1,14.95,12/09/19 17:30,"164 8th St, Austin, TX 73301" +303011,AAA Batteries (4-pack),2,2.99,12/03/19 21:50,"640 North St, San Francisco, CA 94016" +303012,34in Ultrawide Monitor,1,379.99,12/23/19 15:08,"885 West St, Boston, MA 02215" +303013,AAA Batteries (4-pack),1,2.99,12/23/19 17:32,"319 11th St, Seattle, WA 98101" +303014,Apple Airpods Headphones,1,150,12/26/19 15:04,"816 Forest St, Boston, MA 02215" +303015,34in Ultrawide Monitor,1,379.99,12/15/19 19:17,"566 River St, Los Angeles, CA 90001" +303016,34in Ultrawide Monitor,1,379.99,12/05/19 20:58,"664 Willow St, Portland, OR 97035" +303017,Apple Airpods Headphones,1,150,12/27/19 08:55,"304 Church St, Seattle, WA 98101" +303018,USB-C Charging Cable,2,11.95,12/12/19 11:25,"86 1st St, Los Angeles, CA 90001" +303019,Apple Airpods Headphones,1,150,12/23/19 19:23,"326 10th St, Portland, ME 04101" +303020,Bose SoundSport Headphones,1,99.99,12/03/19 18:37,"377 Main St, Dallas, TX 75001" +303021,Lightning Charging Cable,1,14.95,12/30/19 10:15,"277 Chestnut St, Portland, OR 97035" +303022,27in FHD Monitor,1,149.99,12/04/19 09:12,"257 North St, Los Angeles, CA 90001" +303023,Apple Airpods Headphones,1,150,12/09/19 11:44,"196 Dogwood St, Seattle, WA 98101" +303024,34in Ultrawide Monitor,1,379.99,12/19/19 14:41,"98 Madison St, Los Angeles, CA 90001" +303025,ThinkPad Laptop,1,999.99,12/20/19 21:59,"52 Forest St, San Francisco, CA 94016" +303026,iPhone,1,700,12/20/19 23:56,"824 1st St, Austin, TX 73301" +303027,Wired Headphones,1,11.99,12/20/19 08:12,"832 5th St, San Francisco, CA 94016" +303028,Bose SoundSport Headphones,1,99.99,12/08/19 21:39,"29 River St, New York City, NY 10001" +303029,Bose SoundSport Headphones,1,99.99,12/17/19 19:43,"321 13th St, Los Angeles, CA 90001" +303030,27in FHD Monitor,1,149.99,12/19/19 18:46,"771 West St, Los Angeles, CA 90001" +303031,27in 4K Gaming Monitor,1,389.99,12/30/19 13:31,"12 Lincoln St, New York City, NY 10001" +303032,AA Batteries (4-pack),1,3.84,12/14/19 08:23,"397 7th St, New York City, NY 10001" +303033,Apple Airpods Headphones,1,150,12/11/19 22:30,"912 North St, Los Angeles, CA 90001" +303034,AA Batteries (4-pack),1,3.84,12/09/19 11:49,"477 Cedar St, San Francisco, CA 94016" +303035,USB-C Charging Cable,1,11.95,12/14/19 09:53,"71 Wilson St, Los Angeles, CA 90001" +303036,AAA Batteries (4-pack),1,2.99,12/15/19 11:25,"890 Walnut St, Dallas, TX 75001" +303037,USB-C Charging Cable,2,11.95,12/01/19 10:43,"686 Hill St, Los Angeles, CA 90001" +303038,27in FHD Monitor,1,149.99,12/10/19 21:34,"800 Walnut St, San Francisco, CA 94016" +303039,AA Batteries (4-pack),1,3.84,12/20/19 23:39,"650 5th St, Dallas, TX 75001" +303040,Macbook Pro Laptop,1,1700,12/06/19 16:02,"616 Lincoln St, San Francisco, CA 94016" +303041,27in 4K Gaming Monitor,2,389.99,12/16/19 16:15,"799 Washington St, San Francisco, CA 94016" +303042,34in Ultrawide Monitor,1,379.99,12/16/19 21:45,"718 Spruce St, Boston, MA 02215" +303043,Lightning Charging Cable,1,14.95,12/16/19 12:34,"919 Wilson St, Los Angeles, CA 90001" +303044,34in Ultrawide Monitor,1,379.99,12/21/19 12:31,"343 14th St, San Francisco, CA 94016" +303045,Lightning Charging Cable,1,14.95,12/03/19 09:34,"933 8th St, Boston, MA 02215" +303046,Lightning Charging Cable,1,14.95,12/08/19 13:34,"628 South St, San Francisco, CA 94016" +303047,Bose SoundSport Headphones,1,99.99,12/18/19 17:28,"197 Highland St, New York City, NY 10001" +303048,Lightning Charging Cable,1,14.95,12/17/19 23:22,"796 Willow St, Boston, MA 02215" +303049,Apple Airpods Headphones,1,150,12/31/19 11:40,"599 River St, Boston, MA 02215" +303050,AAA Batteries (4-pack),2,2.99,12/07/19 20:20,"32 River St, Atlanta, GA 30301" +303051,AA Batteries (4-pack),2,3.84,12/21/19 15:14,"375 4th St, Seattle, WA 98101" +303052,USB-C Charging Cable,1,11.95,12/01/19 15:28,"821 13th St, San Francisco, CA 94016" +303053,AA Batteries (4-pack),1,3.84,12/18/19 08:15,"611 Walnut St, New York City, NY 10001" +303054,Wired Headphones,1,11.99,12/01/19 15:44,"765 10th St, Boston, MA 02215" +303055,Lightning Charging Cable,1,14.95,12/26/19 19:15,"580 Highland St, San Francisco, CA 94016" +303056,USB-C Charging Cable,1,11.95,12/21/19 11:35,"708 Elm St, Seattle, WA 98101" +303057,AA Batteries (4-pack),1,3.84,12/24/19 15:52,"190 Lake St, New York City, NY 10001" +303058,AA Batteries (4-pack),1,3.84,12/09/19 16:17,"701 11th St, Los Angeles, CA 90001" +303059,AAA Batteries (4-pack),1,2.99,12/28/19 09:49,"582 Washington St, Atlanta, GA 30301" +303060,USB-C Charging Cable,1,11.95,12/04/19 18:00,"256 Center St, Los Angeles, CA 90001" +303061,Lightning Charging Cable,1,14.95,12/10/19 13:49,"18 Johnson St, Seattle, WA 98101" +303062,USB-C Charging Cable,2,11.95,12/17/19 23:40,"895 Dogwood St, Atlanta, GA 30301" +303063,USB-C Charging Cable,1,11.95,12/03/19 19:31,"324 Hickory St, Portland, OR 97035" +303064,Apple Airpods Headphones,1,150,12/10/19 07:22,"940 Johnson St, Los Angeles, CA 90001" +303065,Apple Airpods Headphones,1,150,12/06/19 18:04,"906 Johnson St, Los Angeles, CA 90001" +303066,AA Batteries (4-pack),1,3.84,12/05/19 12:22,"961 10th St, Seattle, WA 98101" +303067,27in FHD Monitor,1,149.99,12/11/19 18:51,"347 14th St, Seattle, WA 98101" +303068,20in Monitor,1,109.99,12/16/19 00:47,"824 Elm St, Los Angeles, CA 90001" +303069,Lightning Charging Cable,1,14.95,12/27/19 13:54,"387 Center St, San Francisco, CA 94016" +303070,AA Batteries (4-pack),1,3.84,12/13/19 15:17,"461 Sunset St, San Francisco, CA 94016" +303071,Apple Airpods Headphones,1,150,12/28/19 23:03,"444 Jackson St, San Francisco, CA 94016" +303072,Wired Headphones,1,11.99,12/11/19 11:38,"118 14th St, Austin, TX 73301" +303073,AAA Batteries (4-pack),1,2.99,12/03/19 20:13,"228 Hickory St, Atlanta, GA 30301" +303074,Apple Airpods Headphones,2,150,12/05/19 10:54,"306 Adams St, Boston, MA 02215" +303075,27in 4K Gaming Monitor,1,389.99,12/07/19 20:44,"980 Meadow St, Los Angeles, CA 90001" +303076,Bose SoundSport Headphones,1,99.99,12/25/19 11:35,"830 Willow St, Seattle, WA 98101" +303077,Wired Headphones,1,11.99,12/15/19 18:18,"62 2nd St, Boston, MA 02215" +303078,20in Monitor,1,109.99,12/21/19 15:47,"741 Park St, New York City, NY 10001" +303079,AAA Batteries (4-pack),3,2.99,12/09/19 11:00,"610 Adams St, Los Angeles, CA 90001" +303080,USB-C Charging Cable,1,11.95,12/07/19 19:04,"825 13th St, Dallas, TX 75001" +303081,Apple Airpods Headphones,1,150,12/20/19 17:55,"102 Park St, New York City, NY 10001" +303082,iPhone,1,700,12/28/19 14:36,"317 Sunset St, San Francisco, CA 94016" +303082,Lightning Charging Cable,1,14.95,12/28/19 14:36,"317 Sunset St, San Francisco, CA 94016" +303083,27in 4K Gaming Monitor,1,389.99,12/04/19 16:10,"74 Park St, New York City, NY 10001" +303084,USB-C Charging Cable,1,11.95,12/20/19 20:14,"668 Lake St, San Francisco, CA 94016" +303085,Flatscreen TV,1,300,12/31/19 14:13,"402 10th St, New York City, NY 10001" +303086,Flatscreen TV,1,300,12/21/19 12:34,"378 River St, New York City, NY 10001" +,,,,, +303087,Lightning Charging Cable,1,14.95,12/29/19 12:15,"636 12th St, New York City, NY 10001" +303088,AA Batteries (4-pack),1,3.84,12/26/19 15:53,"406 9th St, New York City, NY 10001" +303089,USB-C Charging Cable,1,11.95,12/29/19 18:51,"171 Lincoln St, Los Angeles, CA 90001" +303090,Lightning Charging Cable,2,14.95,12/21/19 20:39,"444 Johnson St, New York City, NY 10001" +303091,Bose SoundSport Headphones,1,99.99,12/01/19 07:03,"792 1st St, Atlanta, GA 30301" +303092,AA Batteries (4-pack),2,3.84,12/12/19 19:44,"435 12th St, Dallas, TX 75001" +303093,AA Batteries (4-pack),3,3.84,12/20/19 15:38,"497 Sunset St, New York City, NY 10001" +303094,27in FHD Monitor,1,149.99,12/15/19 16:22,"149 Pine St, Seattle, WA 98101" +303095,Apple Airpods Headphones,1,150,12/25/19 22:13,"345 Maple St, Los Angeles, CA 90001" +303096,Lightning Charging Cable,1,14.95,12/20/19 18:39,"515 9th St, Seattle, WA 98101" +303097,Bose SoundSport Headphones,1,99.99,12/15/19 02:18,"355 Forest St, Atlanta, GA 30301" +303098,AAA Batteries (4-pack),1,2.99,12/24/19 13:59,"406 14th St, Atlanta, GA 30301" +303099,ThinkPad Laptop,1,999.99,12/05/19 12:39,"424 11th St, Dallas, TX 75001" +303100,USB-C Charging Cable,1,11.95,12/24/19 07:06,"125 Park St, New York City, NY 10001" +303100,Google Phone,1,600,12/24/19 07:06,"125 Park St, New York City, NY 10001" +303101,Apple Airpods Headphones,1,150,12/20/19 10:42,"663 6th St, San Francisco, CA 94016" +303102,34in Ultrawide Monitor,1,379.99,12/05/19 15:15,"418 West St, New York City, NY 10001" +303103,AAA Batteries (4-pack),1,2.99,12/16/19 17:12,"870 Highland St, New York City, NY 10001" +303104,Wired Headphones,1,11.99,12/20/19 18:51,"948 Jefferson St, Portland, OR 97035" +303105,AA Batteries (4-pack),1,3.84,12/08/19 20:26,"245 2nd St, New York City, NY 10001" +303106,ThinkPad Laptop,1,999.99,12/12/19 00:30,"606 Adams St, Los Angeles, CA 90001" +303107,Bose SoundSport Headphones,1,99.99,12/12/19 20:52,"489 Johnson St, Los Angeles, CA 90001" +303108,AAA Batteries (4-pack),1,2.99,12/01/19 18:27,"37 Spruce St, Seattle, WA 98101" +303109,Bose SoundSport Headphones,1,99.99,12/30/19 10:30,"235 Center St, Austin, TX 73301" +303110,AA Batteries (4-pack),1,3.84,12/07/19 10:13,"154 Highland St, San Francisco, CA 94016" +303111,Flatscreen TV,1,300,12/04/19 14:05,"447 Spruce St, San Francisco, CA 94016" +303112,Flatscreen TV,1,300,12/23/19 15:55,"496 Hill St, Dallas, TX 75001" +303112,27in 4K Gaming Monitor,1,389.99,12/23/19 15:55,"496 Hill St, Dallas, TX 75001" +303113,Macbook Pro Laptop,1,1700,12/26/19 01:41,"271 Chestnut St, Portland, OR 97035" +303114,Google Phone,1,600,12/11/19 17:32,"451 Lake St, Boston, MA 02215" +303115,Apple Airpods Headphones,1,150,12/10/19 15:00,"744 Main St, Los Angeles, CA 90001" +303116,USB-C Charging Cable,1,11.95,12/24/19 19:52,"666 North St, Dallas, TX 75001" +303117,iPhone,1,700,12/25/19 21:32,"424 14th St, Atlanta, GA 30301" +303118,Lightning Charging Cable,1,14.95,12/05/19 13:06,"766 Maple St, New York City, NY 10001" +303119,AA Batteries (4-pack),1,3.84,12/19/19 11:37,"41 River St, Dallas, TX 75001" +303120,Lightning Charging Cable,1,14.95,12/21/19 14:59,"596 Jefferson St, New York City, NY 10001" +303121,AAA Batteries (4-pack),1,2.99,12/20/19 23:48,"768 Sunset St, Boston, MA 02215" +303122,AA Batteries (4-pack),1,3.84,12/28/19 12:06,"471 Jefferson St, Seattle, WA 98101" +303123,AAA Batteries (4-pack),2,2.99,12/14/19 08:11,"160 10th St, San Francisco, CA 94016" +303124,34in Ultrawide Monitor,1,379.99,12/16/19 15:30,"552 Johnson St, Boston, MA 02215" +303125,iPhone,1,700,12/29/19 16:57,"325 Jackson St, Boston, MA 02215" +303125,Apple Airpods Headphones,1,150,12/29/19 16:57,"325 Jackson St, Boston, MA 02215" +303126,AA Batteries (4-pack),1,3.84,12/09/19 07:58,"586 Park St, Portland, OR 97035" +303127,20in Monitor,1,109.99,12/14/19 22:34,"277 Jackson St, Los Angeles, CA 90001" +303128,USB-C Charging Cable,1,11.95,12/10/19 16:52,"562 Maple St, Los Angeles, CA 90001" +303129,Lightning Charging Cable,1,14.95,12/30/19 00:07,"602 Johnson St, New York City, NY 10001" +303130,Lightning Charging Cable,1,14.95,12/08/19 20:22,"679 River St, San Francisco, CA 94016" +303131,AA Batteries (4-pack),1,3.84,12/18/19 18:50,"131 Lake St, Los Angeles, CA 90001" +303132,27in 4K Gaming Monitor,1,389.99,12/30/19 13:42,"358 Pine St, Austin, TX 73301" +303133,27in FHD Monitor,1,149.99,12/16/19 23:11,"865 Jefferson St, Los Angeles, CA 90001" +303134,USB-C Charging Cable,1,11.95,12/05/19 18:57,"243 Hill St, San Francisco, CA 94016" +303135,Lightning Charging Cable,1,14.95,12/06/19 09:50,"973 Hill St, San Francisco, CA 94016" +303136,34in Ultrawide Monitor,1,379.99,12/01/19 21:22,"532 Lakeview St, Los Angeles, CA 90001" +303137,Flatscreen TV,1,300,12/28/19 19:30,"773 14th St, Los Angeles, CA 90001" +303138,AA Batteries (4-pack),1,3.84,12/14/19 17:52,"737 Park St, Portland, OR 97035" +303139,USB-C Charging Cable,1,11.95,12/17/19 08:45,"192 13th St, Portland, OR 97035" +303140,Google Phone,1,600,12/26/19 00:35,"857 Lakeview St, Dallas, TX 75001" +303141,Bose SoundSport Headphones,1,99.99,12/22/19 14:01,"955 South St, Los Angeles, CA 90001" +303142,Lightning Charging Cable,1,14.95,12/30/19 21:39,"756 8th St, Atlanta, GA 30301" +303143,Apple Airpods Headphones,1,150,12/03/19 21:58,"428 Sunset St, Austin, TX 73301" +303144,AAA Batteries (4-pack),1,2.99,12/30/19 05:56,"401 Lakeview St, Los Angeles, CA 90001" +303145,Wired Headphones,1,11.99,12/01/19 18:34,"422 Highland St, Dallas, TX 75001" +303146,Lightning Charging Cable,1,14.95,12/05/19 13:07,"401 North St, Los Angeles, CA 90001" +303147,Google Phone,1,600,12/08/19 09:11,"758 Ridge St, San Francisco, CA 94016" +303148,Bose SoundSport Headphones,1,99.99,12/10/19 16:49,"837 Maple St, Dallas, TX 75001" +303149,AA Batteries (4-pack),1,3.84,12/03/19 22:05,"402 Highland St, San Francisco, CA 94016" +303150,Lightning Charging Cable,1,14.95,12/09/19 12:40,"835 West St, Seattle, WA 98101" +303151,Lightning Charging Cable,1,14.95,12/23/19 18:30,"256 Forest St, Portland, OR 97035" +303152,Lightning Charging Cable,1,14.95,12/03/19 10:04,"242 Cherry St, New York City, NY 10001" +303153,USB-C Charging Cable,1,11.95,12/13/19 18:07,"360 Jackson St, San Francisco, CA 94016" +303154,20in Monitor,1,109.99,12/29/19 10:08,"97 5th St, Los Angeles, CA 90001" +303155,iPhone,1,700,12/28/19 08:19,"775 Elm St, San Francisco, CA 94016" +303156,Wired Headphones,1,11.99,12/26/19 11:47,"791 Hill St, New York City, NY 10001" +303157,Lightning Charging Cable,1,14.95,12/27/19 15:22,"615 12th St, Portland, OR 97035" +303158,Bose SoundSport Headphones,1,99.99,12/17/19 08:25,"823 Johnson St, Atlanta, GA 30301" +303159,Apple Airpods Headphones,1,150,12/22/19 10:57,"42 Center St, Boston, MA 02215" +303160,Bose SoundSport Headphones,1,99.99,12/14/19 22:39,"405 Main St, Austin, TX 73301" +303161,Bose SoundSport Headphones,1,99.99,12/05/19 10:43,"740 8th St, San Francisco, CA 94016" +303162,34in Ultrawide Monitor,1,379.99,12/14/19 21:09,"725 Forest St, San Francisco, CA 94016" +303163,Apple Airpods Headphones,1,150,12/01/19 12:46,"348 Wilson St, Los Angeles, CA 90001" +303164,iPhone,1,700,12/06/19 22:27,"881 Hill St, New York City, NY 10001" +303165,Google Phone,1,600,12/29/19 05:39,"761 Elm St, Austin, TX 73301" +303166,Lightning Charging Cable,1,14.95,12/16/19 11:09,"282 North St, San Francisco, CA 94016" +303167,20in Monitor,1,109.99,12/27/19 23:14,"643 Willow St, Seattle, WA 98101" +303168,Apple Airpods Headphones,1,150,12/17/19 10:18,"790 Wilson St, San Francisco, CA 94016" +303169,iPhone,1,700,12/25/19 23:15,"963 Adams St, Los Angeles, CA 90001" +303169,Wired Headphones,1,11.99,12/25/19 23:15,"963 Adams St, Los Angeles, CA 90001" +303170,USB-C Charging Cable,1,11.95,12/01/19 22:31,"208 Maple St, Boston, MA 02215" +303171,USB-C Charging Cable,1,11.95,12/30/19 07:33,"594 4th St, Austin, TX 73301" +303172,Wired Headphones,1,11.99,12/19/19 17:46,"205 9th St, Dallas, TX 75001" +303172,Flatscreen TV,1,300,12/19/19 17:46,"205 9th St, Dallas, TX 75001" +303173,34in Ultrawide Monitor,1,379.99,12/30/19 11:47,"21 Dogwood St, San Francisco, CA 94016" +303174,AA Batteries (4-pack),2,3.84,12/12/19 08:02,"922 Spruce St, New York City, NY 10001" +303175,ThinkPad Laptop,1,999.99,12/21/19 21:16,"681 11th St, Boston, MA 02215" +303176,USB-C Charging Cable,1,11.95,12/10/19 21:40,"452 Lake St, New York City, NY 10001" +303177,AA Batteries (4-pack),1,3.84,12/05/19 13:04,"915 5th St, Los Angeles, CA 90001" +303178,AA Batteries (4-pack),2,3.84,12/19/19 10:10,"82 South St, Atlanta, GA 30301" +303179,Lightning Charging Cable,1,14.95,12/13/19 22:26,"598 7th St, Portland, ME 04101" +303180,Lightning Charging Cable,1,14.95,12/11/19 00:08,"280 13th St, San Francisco, CA 94016" +303181,Apple Airpods Headphones,1,150,12/23/19 20:34,"759 Hill St, New York City, NY 10001" +303182,AAA Batteries (4-pack),2,2.99,12/23/19 16:28,"149 4th St, Portland, OR 97035" +303183,AA Batteries (4-pack),1,3.84,12/06/19 09:29,"286 Park St, Boston, MA 02215" +303184,USB-C Charging Cable,1,11.95,12/06/19 04:41,"687 Willow St, Austin, TX 73301" +303185,USB-C Charging Cable,1,11.95,12/07/19 12:28,"347 Spruce St, Boston, MA 02215" +303186,Wired Headphones,1,11.99,12/20/19 08:39,"968 Cherry St, San Francisco, CA 94016" +303187,27in 4K Gaming Monitor,1,389.99,12/08/19 22:32,"694 Elm St, San Francisco, CA 94016" +303188,AAA Batteries (4-pack),3,2.99,12/23/19 16:55,"756 Dogwood St, Los Angeles, CA 90001" +303189,Macbook Pro Laptop,1,1700,12/29/19 10:45,"620 Park St, Los Angeles, CA 90001" +303190,Bose SoundSport Headphones,1,99.99,12/19/19 08:32,"79 Willow St, New York City, NY 10001" +303191,Macbook Pro Laptop,1,1700,12/02/19 16:00,"218 Jackson St, Dallas, TX 75001" +303192,AA Batteries (4-pack),2,3.84,12/29/19 22:43,"685 Jefferson St, Portland, OR 97035" +303193,Wired Headphones,1,11.99,12/11/19 21:11,"244 Sunset St, Boston, MA 02215" +303194,27in FHD Monitor,1,149.99,12/21/19 11:22,"555 5th St, New York City, NY 10001" +303195,AAA Batteries (4-pack),2,2.99,12/18/19 19:58,"581 Lake St, San Francisco, CA 94016" +303196,AA Batteries (4-pack),2,3.84,12/16/19 20:32,"507 Madison St, Dallas, TX 75001" +303197,USB-C Charging Cable,1,11.95,12/22/19 19:29,"191 South St, Atlanta, GA 30301" +303198,USB-C Charging Cable,1,11.95,12/14/19 11:35,"927 Church St, New York City, NY 10001" +303199,USB-C Charging Cable,1,11.95,12/26/19 17:43,"734 1st St, San Francisco, CA 94016" +303200,27in 4K Gaming Monitor,1,389.99,12/31/19 23:11,"847 Lincoln St, Seattle, WA 98101" +303201,AA Batteries (4-pack),1,3.84,12/07/19 16:22,"764 Washington St, Boston, MA 02215" +303202,USB-C Charging Cable,1,11.95,12/15/19 18:37,"650 11th St, Dallas, TX 75001" +303203,Lightning Charging Cable,1,14.95,12/02/19 19:29,"483 Willow St, New York City, NY 10001" +303204,20in Monitor,1,109.99,12/28/19 11:48,"672 5th St, San Francisco, CA 94016" +303205,Bose SoundSport Headphones,1,99.99,12/11/19 18:58,"823 Willow St, Atlanta, GA 30301" +303206,Apple Airpods Headphones,1,150,12/01/19 22:24,"747 Wilson St, Los Angeles, CA 90001" +303207,USB-C Charging Cable,2,11.95,12/28/19 12:29,"481 Highland St, San Francisco, CA 94016" +303208,AA Batteries (4-pack),1,3.84,12/20/19 13:24,"391 Chestnut St, San Francisco, CA 94016" +303209,Wired Headphones,1,11.99,12/24/19 11:12,"421 Jackson St, Los Angeles, CA 90001" +303210,34in Ultrawide Monitor,1,379.99,12/16/19 22:53,"591 Pine St, Seattle, WA 98101" +303211,Wired Headphones,2,11.99,12/31/19 09:37,"53 Adams St, San Francisco, CA 94016" +303212,Google Phone,1,600,12/20/19 19:38,"619 West St, Boston, MA 02215" +303213,AAA Batteries (4-pack),2,2.99,12/10/19 04:16,"11 10th St, San Francisco, CA 94016" +303214,Lightning Charging Cable,1,14.95,12/08/19 08:43,"595 Washington St, Los Angeles, CA 90001" +303215,Apple Airpods Headphones,1,150,12/30/19 11:18,"251 Park St, Los Angeles, CA 90001" +303216,ThinkPad Laptop,1,999.99,12/02/19 07:29,"874 5th St, Boston, MA 02215" +303217,Apple Airpods Headphones,1,150,12/25/19 18:55,"143 West St, San Francisco, CA 94016" +303218,USB-C Charging Cable,1,11.95,12/08/19 14:42,"321 Ridge St, Portland, OR 97035" +303219,AAA Batteries (4-pack),1,2.99,12/21/19 12:36,"522 Ridge St, Seattle, WA 98101" +303220,Wired Headphones,1,11.99,12/23/19 11:45,"276 Wilson St, San Francisco, CA 94016" +303221,Bose SoundSport Headphones,1,99.99,12/01/19 20:16,"953 Johnson St, San Francisco, CA 94016" +303222,USB-C Charging Cable,1,11.95,12/19/19 17:22,"455 Washington St, Los Angeles, CA 90001" +303223,27in 4K Gaming Monitor,1,389.99,12/08/19 16:21,"181 Hill St, Boston, MA 02215" +303224,Bose SoundSport Headphones,1,99.99,12/12/19 12:04,"351 4th St, Dallas, TX 75001" +303225,AA Batteries (4-pack),2,3.84,12/13/19 06:59,"315 2nd St, Los Angeles, CA 90001" +303226,Lightning Charging Cable,2,14.95,12/16/19 18:58,"24 2nd St, Boston, MA 02215" +303227,USB-C Charging Cable,1,11.95,12/18/19 21:40,"364 Meadow St, Dallas, TX 75001" +303228,27in 4K Gaming Monitor,1,389.99,12/01/19 13:10,"32 Maple St, Boston, MA 02215" +303229,Bose SoundSport Headphones,1,99.99,12/31/19 21:06,"128 Lincoln St, New York City, NY 10001" +303230,ThinkPad Laptop,1,999.99,12/07/19 09:47,"17 6th St, Portland, OR 97035" +303231,USB-C Charging Cable,1,11.95,12/07/19 11:11,"521 Highland St, Seattle, WA 98101" +303232,AA Batteries (4-pack),1,3.84,12/18/19 14:10,"906 Willow St, Los Angeles, CA 90001" +303233,USB-C Charging Cable,1,11.95,12/11/19 02:52,"730 13th St, Los Angeles, CA 90001" +303234,AAA Batteries (4-pack),1,2.99,12/11/19 11:29,"363 Hickory St, Dallas, TX 75001" +303235,iPhone,1,700,12/16/19 18:56,"583 2nd St, San Francisco, CA 94016" +303235,Lightning Charging Cable,1,14.95,12/16/19 18:56,"583 2nd St, San Francisco, CA 94016" +303236,Bose SoundSport Headphones,1,99.99,12/09/19 15:44,"817 Church St, Portland, OR 97035" +303237,Macbook Pro Laptop,1,1700,12/28/19 11:04,"695 Chestnut St, New York City, NY 10001" +303238,Lightning Charging Cable,1,14.95,12/28/19 13:44,"978 Elm St, Austin, TX 73301" +303239,AAA Batteries (4-pack),1,2.99,12/07/19 13:48,"791 2nd St, San Francisco, CA 94016" +303240,27in FHD Monitor,1,149.99,12/29/19 12:42,"665 4th St, Los Angeles, CA 90001" +303241,Lightning Charging Cable,1,14.95,12/26/19 12:41,"755 Sunset St, San Francisco, CA 94016" +303242,AAA Batteries (4-pack),1,2.99,12/17/19 14:42,"404 Maple St, Dallas, TX 75001" +303243,Wired Headphones,2,11.99,12/19/19 14:32,"735 2nd St, San Francisco, CA 94016" +303244,LG Washing Machine,1,600.0,12/25/19 15:17,"639 7th St, Austin, TX 73301" +303245,Lightning Charging Cable,1,14.95,12/04/19 21:44,"610 Highland St, San Francisco, CA 94016" +303246,20in Monitor,1,109.99,12/16/19 11:37,"819 Highland St, San Francisco, CA 94016" +303247,ThinkPad Laptop,1,999.99,12/24/19 14:23,"916 12th St, Seattle, WA 98101" +303248,Wired Headphones,1,11.99,12/23/19 08:42,"734 Sunset St, Atlanta, GA 30301" +303249,AA Batteries (4-pack),2,3.84,12/14/19 18:04,"3 Forest St, Seattle, WA 98101" +303250,iPhone,1,700,12/17/19 13:31,"395 Forest St, Austin, TX 73301" +303251,27in FHD Monitor,1,149.99,12/30/19 12:46,"971 8th St, San Francisco, CA 94016" +303252,Bose SoundSport Headphones,1,99.99,12/13/19 21:55,"982 Wilson St, Atlanta, GA 30301" +303253,Bose SoundSport Headphones,1,99.99,12/21/19 01:38,"460 6th St, New York City, NY 10001" +303254,AAA Batteries (4-pack),1,2.99,12/12/19 09:06,"386 Hill St, Seattle, WA 98101" +303255,27in FHD Monitor,1,149.99,12/14/19 14:45,"466 12th St, San Francisco, CA 94016" +303256,iPhone,1,700,12/25/19 15:38,"22 Forest St, New York City, NY 10001" +303257,Macbook Pro Laptop,1,1700,12/09/19 07:39,"967 Dogwood St, Boston, MA 02215" +303258,Bose SoundSport Headphones,1,99.99,12/28/19 07:51,"497 Hickory St, Los Angeles, CA 90001" +303259,Flatscreen TV,1,300,12/10/19 22:01,"332 Main St, New York City, NY 10001" +303260,Google Phone,1,600,12/23/19 21:33,"7 Highland St, New York City, NY 10001" +303261,AAA Batteries (4-pack),2,2.99,12/04/19 10:29,"700 12th St, Boston, MA 02215" +303262,Google Phone,1,600,12/17/19 12:38,"806 Wilson St, San Francisco, CA 94016" +303262,USB-C Charging Cable,1,11.95,12/17/19 12:38,"806 Wilson St, San Francisco, CA 94016" +303263,LG Washing Machine,1,600.0,12/28/19 10:25,"200 Jefferson St, Boston, MA 02215" +303264,AAA Batteries (4-pack),3,2.99,12/19/19 12:34,"33 Lakeview St, San Francisco, CA 94016" +303265,LG Dryer,1,600.0,12/27/19 10:14,"760 Dogwood St, San Francisco, CA 94016" +303265,iPhone,1,700,12/27/19 10:14,"760 Dogwood St, San Francisco, CA 94016" +303266,USB-C Charging Cable,1,11.95,12/13/19 21:04,"350 Lakeview St, Boston, MA 02215" +303267,Apple Airpods Headphones,1,150,12/08/19 07:18,"549 South St, New York City, NY 10001" +303267,34in Ultrawide Monitor,1,379.99,12/08/19 07:18,"549 South St, New York City, NY 10001" +303268,ThinkPad Laptop,1,999.99,12/25/19 12:04,"285 4th St, San Francisco, CA 94016" +303269,AA Batteries (4-pack),1,3.84,12/05/19 20:52,"381 13th St, Los Angeles, CA 90001" +303270,Google Phone,1,600,12/03/19 00:04,"369 Ridge St, New York City, NY 10001" +303271,iPhone,1,700,12/06/19 14:25,"257 Elm St, New York City, NY 10001" +303272,iPhone,1,700,12/09/19 09:52,"483 Jackson St, San Francisco, CA 94016" +303273,AA Batteries (4-pack),2,3.84,12/05/19 13:54,"185 Pine St, San Francisco, CA 94016" +303274,Wired Headphones,1,11.99,12/06/19 13:15,"135 Hickory St, Austin, TX 73301" +303275,AAA Batteries (4-pack),1,2.99,12/14/19 19:32,"94 Park St, Seattle, WA 98101" +303276,USB-C Charging Cable,1,11.95,12/17/19 12:00,"569 Johnson St, Boston, MA 02215" +303277,Wired Headphones,1,11.99,01/01/20 00:48,"338 Forest St, Los Angeles, CA 90001" +303278,Wired Headphones,1,11.99,12/22/19 17:57,"412 5th St, Atlanta, GA 30301" +303279,Apple Airpods Headphones,1,150,12/06/19 18:34,"927 7th St, Los Angeles, CA 90001" +303280,Wired Headphones,1,11.99,12/31/19 11:09,"628 North St, New York City, NY 10001" +303281,Apple Airpods Headphones,1,150,12/02/19 13:32,"902 14th St, Portland, OR 97035" +303282,Apple Airpods Headphones,1,150,12/19/19 20:47,"336 Sunset St, Boston, MA 02215" +303283,Flatscreen TV,1,300,12/24/19 16:54,"194 Highland St, Boston, MA 02215" +303284,Bose SoundSport Headphones,1,99.99,12/06/19 10:14,"7 Elm St, Austin, TX 73301" +303285,27in FHD Monitor,1,149.99,12/22/19 15:38,"661 4th St, San Francisco, CA 94016" +303286,AA Batteries (4-pack),2,3.84,12/13/19 18:13,"390 13th St, Dallas, TX 75001" +303287,AA Batteries (4-pack),1,3.84,12/02/19 18:05,"72 Wilson St, San Francisco, CA 94016" +303288,LG Washing Machine,1,600.0,12/23/19 12:50,"955 Madison St, Seattle, WA 98101" +303289,USB-C Charging Cable,1,11.95,12/10/19 19:49,"352 Center St, San Francisco, CA 94016" +303289,Wired Headphones,1,11.99,12/10/19 19:49,"352 Center St, San Francisco, CA 94016" +303290,Wired Headphones,1,11.99,12/25/19 20:29,"564 Cherry St, Portland, OR 97035" +303291,Bose SoundSport Headphones,1,99.99,12/29/19 13:43,"725 Cedar St, Portland, OR 97035" +303292,27in FHD Monitor,1,149.99,12/31/19 08:47,"902 River St, Dallas, TX 75001" +303293,Lightning Charging Cable,1,14.95,12/20/19 23:15,"36 South St, Seattle, WA 98101" +303294,Apple Airpods Headphones,1,150,12/19/19 07:13,"333 Jefferson St, Atlanta, GA 30301" +303295,iPhone,1,700,12/17/19 21:08,"395 Jackson St, Boston, MA 02215" +303296,Lightning Charging Cable,1,14.95,12/17/19 19:53,"151 11th St, Dallas, TX 75001" +303297,Google Phone,1,600,12/06/19 16:29,"175 Elm St, Seattle, WA 98101" +303298,Lightning Charging Cable,1,14.95,12/16/19 19:14,"583 Spruce St, Dallas, TX 75001" +303299,Apple Airpods Headphones,1,150,12/26/19 09:11,"342 Walnut St, San Francisco, CA 94016" +303300,AAA Batteries (4-pack),1,2.99,12/25/19 10:35,"463 Sunset St, Portland, OR 97035" +303301,ThinkPad Laptop,1,999.99,12/06/19 08:33,"976 Cedar St, Los Angeles, CA 90001" +303302,Lightning Charging Cable,1,14.95,12/12/19 18:34,"146 Hill St, San Francisco, CA 94016" +303303,Bose SoundSport Headphones,1,99.99,12/15/19 11:43,"881 6th St, Austin, TX 73301" +303304,AA Batteries (4-pack),2,3.84,12/25/19 18:20,"191 2nd St, San Francisco, CA 94016" +303305,iPhone,1,700,12/30/19 21:05,"788 West St, Los Angeles, CA 90001" +303306,AAA Batteries (4-pack),2,2.99,12/29/19 14:00,"226 Ridge St, Los Angeles, CA 90001" +303307,Macbook Pro Laptop,1,1700,12/06/19 18:36,"818 6th St, San Francisco, CA 94016" +303308,Vareebadd Phone,1,400,12/07/19 16:56,"4 Hickory St, Boston, MA 02215" +303309,Lightning Charging Cable,1,14.95,12/10/19 12:07,"422 Dogwood St, Los Angeles, CA 90001" +303310,AAA Batteries (4-pack),1,2.99,12/16/19 14:24,"700 5th St, Los Angeles, CA 90001" +303311,Lightning Charging Cable,1,14.95,12/15/19 17:06,"895 Dogwood St, San Francisco, CA 94016" +303312,iPhone,1,700,12/04/19 09:14,"134 Adams St, Los Angeles, CA 90001" +303313,Apple Airpods Headphones,1,150,12/30/19 19:09,"160 Chestnut St, Boston, MA 02215" +303314,Apple Airpods Headphones,1,150,12/12/19 15:26,"624 2nd St, San Francisco, CA 94016" +303315,AAA Batteries (4-pack),1,2.99,12/05/19 08:56,"754 Jackson St, Atlanta, GA 30301" +303316,Lightning Charging Cable,1,14.95,12/17/19 21:11,"367 North St, New York City, NY 10001" +303317,iPhone,1,700,12/09/19 07:37,"144 Park St, Atlanta, GA 30301" +303318,USB-C Charging Cable,1,11.95,12/06/19 13:14,"396 Hill St, Boston, MA 02215" +303319,AAA Batteries (4-pack),2,2.99,12/10/19 13:52,"750 Lakeview St, Atlanta, GA 30301" +303320,AAA Batteries (4-pack),1,2.99,12/06/19 03:21,"928 11th St, Boston, MA 02215" +303321,USB-C Charging Cable,1,11.95,12/05/19 19:42,"643 Cedar St, Los Angeles, CA 90001" +303322,27in FHD Monitor,1,149.99,12/10/19 10:23,"704 Forest St, Atlanta, GA 30301" +303323,Apple Airpods Headphones,1,150,12/29/19 13:41,"39 Dogwood St, New York City, NY 10001" +303324,Wired Headphones,1,11.99,12/17/19 17:50,"972 Lincoln St, San Francisco, CA 94016" +303325,ThinkPad Laptop,1,999.99,12/16/19 09:20,"247 South St, Dallas, TX 75001" +303326,Google Phone,1,600,12/23/19 17:27,"659 Johnson St, Portland, OR 97035" +303327,Macbook Pro Laptop,1,1700,12/20/19 19:33,"994 7th St, New York City, NY 10001" +303328,Wired Headphones,1,11.99,12/25/19 15:11,"953 7th St, San Francisco, CA 94016" +303329,USB-C Charging Cable,1,11.95,12/01/19 19:48,"253 Center St, Seattle, WA 98101" +303330,iPhone,1,700,12/30/19 13:55,"586 5th St, Los Angeles, CA 90001" +303331,Apple Airpods Headphones,1,150,12/09/19 08:35,"2 Jackson St, Boston, MA 02215" +303332,USB-C Charging Cable,1,11.95,12/14/19 11:02,"573 Cherry St, Boston, MA 02215" +303333,AAA Batteries (4-pack),1,2.99,12/15/19 00:54,"24 Pine St, Austin, TX 73301" +303334,Wired Headphones,1,11.99,12/05/19 13:26,"857 Maple St, Los Angeles, CA 90001" +303335,LG Dryer,1,600.0,12/29/19 19:50,"582 12th St, Boston, MA 02215" +303336,USB-C Charging Cable,1,11.95,12/31/19 10:02,"425 River St, New York City, NY 10001" +303337,iPhone,1,700,12/04/19 08:57,"949 Maple St, San Francisco, CA 94016" +303338,Wired Headphones,1,11.99,12/22/19 08:54,"694 Hickory St, San Francisco, CA 94016" +303339,27in 4K Gaming Monitor,1,389.99,12/11/19 15:57,"432 Washington St, Los Angeles, CA 90001" +303340,ThinkPad Laptop,1,999.99,12/28/19 22:11,"314 Park St, San Francisco, CA 94016" +303341,USB-C Charging Cable,1,11.95,12/31/19 22:45,"219 Willow St, New York City, NY 10001" +303342,Macbook Pro Laptop,1,1700,12/09/19 17:30,"41 Johnson St, San Francisco, CA 94016" +303343,Wired Headphones,1,11.99,12/10/19 18:53,"998 9th St, New York City, NY 10001" +303344,Bose SoundSport Headphones,1,99.99,12/25/19 11:18,"309 Chestnut St, New York City, NY 10001" +303345,AA Batteries (4-pack),1,3.84,12/26/19 17:30,"413 12th St, New York City, NY 10001" +303346,AA Batteries (4-pack),2,3.84,12/24/19 16:19,"408 Elm St, Portland, OR 97035" +303347,Bose SoundSport Headphones,1,99.99,12/18/19 07:01,"921 Cedar St, San Francisco, CA 94016" +303348,Flatscreen TV,1,300,12/27/19 11:18,"9 Elm St, Boston, MA 02215" +303349,USB-C Charging Cable,1,11.95,12/25/19 14:27,"113 Sunset St, Los Angeles, CA 90001" +303350,34in Ultrawide Monitor,1,379.99,12/10/19 20:21,"408 9th St, San Francisco, CA 94016" +303351,Bose SoundSport Headphones,1,99.99,12/04/19 21:47,"485 13th St, Los Angeles, CA 90001" +303352,AA Batteries (4-pack),1,3.84,12/10/19 17:13,"240 7th St, Atlanta, GA 30301" +303352,Bose SoundSport Headphones,1,99.99,12/10/19 17:13,"240 7th St, Atlanta, GA 30301" +303353,Lightning Charging Cable,1,14.95,12/09/19 22:58,"827 Jefferson St, San Francisco, CA 94016" +303354,USB-C Charging Cable,1,11.95,12/16/19 15:31,"608 Hill St, San Francisco, CA 94016" +303355,Apple Airpods Headphones,1,150,12/16/19 13:28,"120 Willow St, New York City, NY 10001" +303356,AA Batteries (4-pack),1,3.84,12/05/19 13:11,"551 Hickory St, San Francisco, CA 94016" +303357,Apple Airpods Headphones,1,150,12/13/19 21:27,"141 12th St, Dallas, TX 75001" +303358,USB-C Charging Cable,1,11.95,12/25/19 20:46,"300 6th St, Dallas, TX 75001" +303359,Wired Headphones,1,11.99,12/02/19 09:46,"493 Washington St, New York City, NY 10001" +303360,USB-C Charging Cable,1,11.95,12/01/19 12:04,"582 Willow St, San Francisco, CA 94016" +303361,Google Phone,1,600,12/27/19 13:33,"638 Meadow St, San Francisco, CA 94016" +303362,Lightning Charging Cable,1,14.95,12/24/19 12:21,"877 Cedar St, Boston, MA 02215" +303363,Google Phone,1,600,12/09/19 09:39,"349 Washington St, Los Angeles, CA 90001" +303364,Bose SoundSport Headphones,1,99.99,12/07/19 09:57,"139 2nd St, San Francisco, CA 94016" +303365,AAA Batteries (4-pack),1,2.99,12/12/19 12:40,"457 4th St, Los Angeles, CA 90001" +,,,,, +303366,Flatscreen TV,1,300,12/18/19 16:08,"492 Center St, Los Angeles, CA 90001" +303367,AA Batteries (4-pack),1,3.84,12/08/19 05:22,"961 6th St, San Francisco, CA 94016" +,,,,, +303368,Wired Headphones,1,11.99,12/22/19 19:33,"841 Madison St, Los Angeles, CA 90001" +303369,AA Batteries (4-pack),1,3.84,12/10/19 23:19,"864 Willow St, Dallas, TX 75001" +303370,USB-C Charging Cable,1,11.95,12/03/19 14:32,"421 Lake St, Atlanta, GA 30301" +303371,iPhone,1,700,12/21/19 00:36,"195 12th St, Los Angeles, CA 90001" +303372,Apple Airpods Headphones,1,150,12/17/19 10:42,"685 Adams St, New York City, NY 10001" +303373,Bose SoundSport Headphones,1,99.99,12/25/19 12:57,"964 Jackson St, Los Angeles, CA 90001" +303374,AAA Batteries (4-pack),2,2.99,12/28/19 09:11,"313 10th St, Boston, MA 02215" +303375,AA Batteries (4-pack),1,3.84,12/24/19 20:21,"87 Pine St, Dallas, TX 75001" +303376,Vareebadd Phone,1,400,12/13/19 00:45,"894 Lake St, Austin, TX 73301" +303377,USB-C Charging Cable,1,11.95,12/12/19 13:07,"650 Church St, New York City, NY 10001" +303378,ThinkPad Laptop,1,999.99,12/19/19 17:43,"224 13th St, Portland, OR 97035" +303379,Bose SoundSport Headphones,1,99.99,12/26/19 15:08,"766 Meadow St, New York City, NY 10001" +303380,Wired Headphones,1,11.99,12/08/19 11:22,"681 Sunset St, Dallas, TX 75001" +303381,Wired Headphones,1,11.99,12/23/19 21:09,"289 Jefferson St, Los Angeles, CA 90001" +303382,AA Batteries (4-pack),1,3.84,12/28/19 19:14,"876 Chestnut St, Seattle, WA 98101" +303383,Lightning Charging Cable,1,14.95,12/01/19 10:49,"295 Sunset St, New York City, NY 10001" +303384,Vareebadd Phone,1,400,12/10/19 20:37,"753 Elm St, San Francisco, CA 94016" +303385,USB-C Charging Cable,1,11.95,12/05/19 15:07,"320 14th St, Atlanta, GA 30301" +303386,27in 4K Gaming Monitor,1,389.99,12/23/19 18:00,"747 Washington St, San Francisco, CA 94016" +303387,Apple Airpods Headphones,1,150,12/25/19 11:34,"960 Cedar St, Boston, MA 02215" +303388,AAA Batteries (4-pack),1,2.99,12/29/19 01:25,"463 Dogwood St, New York City, NY 10001" +303389,USB-C Charging Cable,1,11.95,12/21/19 19:40,"436 11th St, Austin, TX 73301" +303390,Google Phone,1,600,12/06/19 16:58,"497 12th St, Seattle, WA 98101" +303391,Google Phone,1,600,12/27/19 18:19,"822 Cedar St, Austin, TX 73301" +303392,AAA Batteries (4-pack),1,2.99,12/25/19 18:19,"235 Main St, Portland, ME 04101" +303393,Lightning Charging Cable,2,14.95,12/14/19 15:58,"727 Ridge St, Boston, MA 02215" +303394,34in Ultrawide Monitor,1,379.99,12/13/19 10:34,"578 Center St, Seattle, WA 98101" +303395,Lightning Charging Cable,1,14.95,12/24/19 15:46,"74 Cherry St, Seattle, WA 98101" +303396,20in Monitor,1,109.99,12/31/19 11:45,"231 13th St, San Francisco, CA 94016" +303397,20in Monitor,1,109.99,12/16/19 16:31,"505 Pine St, New York City, NY 10001" +303398,ThinkPad Laptop,1,999.99,12/06/19 12:18,"203 Walnut St, Portland, OR 97035" +303399,AA Batteries (4-pack),1,3.84,12/27/19 20:24,"265 West St, Portland, OR 97035" +303400,Lightning Charging Cable,1,14.95,12/19/19 21:24,"597 Pine St, Austin, TX 73301" +303401,AAA Batteries (4-pack),1,2.99,12/22/19 12:33,"897 Hill St, Los Angeles, CA 90001" +303402,Wired Headphones,1,11.99,12/31/19 20:06,"518 Pine St, New York City, NY 10001" +303403,iPhone,1,700,12/21/19 15:31,"624 Meadow St, Portland, ME 04101" +303404,AAA Batteries (4-pack),1,2.99,12/03/19 10:09,"915 11th St, San Francisco, CA 94016" +303405,Apple Airpods Headphones,1,150,12/24/19 17:30,"927 1st St, Seattle, WA 98101" +303406,AA Batteries (4-pack),2,3.84,12/28/19 20:42,"785 Meadow St, Atlanta, GA 30301" +303407,Lightning Charging Cable,1,14.95,12/20/19 19:23,"822 South St, Los Angeles, CA 90001" +303408,Wired Headphones,1,11.99,12/02/19 22:52,"286 Jefferson St, Dallas, TX 75001" +303409,Apple Airpods Headphones,1,150,12/16/19 13:47,"825 Johnson St, Seattle, WA 98101" +303410,20in Monitor,1,109.99,12/01/19 18:00,"109 Pine St, San Francisco, CA 94016" +303411,Flatscreen TV,1,300,12/28/19 11:32,"685 Elm St, San Francisco, CA 94016" +303412,Macbook Pro Laptop,1,1700,12/30/19 21:56,"11 14th St, New York City, NY 10001" +303413,27in FHD Monitor,1,149.99,12/24/19 18:05,"892 Maple St, San Francisco, CA 94016" +303414,Wired Headphones,1,11.99,12/10/19 06:40,"312 7th St, Los Angeles, CA 90001" +303415,USB-C Charging Cable,1,11.95,12/30/19 15:00,"903 Hill St, New York City, NY 10001" +303416,Bose SoundSport Headphones,1,99.99,12/13/19 18:34,"135 Walnut St, Portland, OR 97035" +303417,AA Batteries (4-pack),1,3.84,12/04/19 12:04,"644 Pine St, Los Angeles, CA 90001" +303418,Wired Headphones,1,11.99,12/27/19 21:22,"785 Center St, Austin, TX 73301" +303419,USB-C Charging Cable,1,11.95,12/13/19 22:15,"646 Cherry St, Boston, MA 02215" +303420,AAA Batteries (4-pack),3,2.99,12/17/19 21:08,"735 North St, New York City, NY 10001" +303421,AA Batteries (4-pack),3,3.84,12/22/19 16:04,"480 Pine St, Atlanta, GA 30301" +303422,27in FHD Monitor,1,149.99,12/14/19 19:10,"134 Jefferson St, San Francisco, CA 94016" +303423,27in FHD Monitor,1,149.99,12/19/19 19:07,"145 Church St, San Francisco, CA 94016" +303424,27in FHD Monitor,1,149.99,12/13/19 21:19,"364 Highland St, Los Angeles, CA 90001" +303425,Lightning Charging Cable,1,14.95,12/18/19 19:11,"990 1st St, Dallas, TX 75001" +303426,Bose SoundSport Headphones,1,99.99,12/08/19 23:41,"722 Willow St, New York City, NY 10001" +303427,AA Batteries (4-pack),1,3.84,12/31/19 20:17,"29 Church St, New York City, NY 10001" +303428,Flatscreen TV,1,300,12/21/19 18:57,"115 Pine St, Dallas, TX 75001" +303429,20in Monitor,1,109.99,12/01/19 17:35,"286 Main St, Los Angeles, CA 90001" +303430,USB-C Charging Cable,1,11.95,12/26/19 10:57,"795 Lake St, Atlanta, GA 30301" +303430,ThinkPad Laptop,1,999.99,12/26/19 10:57,"795 Lake St, Atlanta, GA 30301" +303431,27in FHD Monitor,1,149.99,12/10/19 01:00,"654 1st St, Austin, TX 73301" +303432,Bose SoundSport Headphones,1,99.99,12/11/19 20:05,"635 West St, Los Angeles, CA 90001" +303433,AA Batteries (4-pack),1,3.84,12/18/19 21:24,"416 Spruce St, Seattle, WA 98101" +303434,AAA Batteries (4-pack),2,2.99,12/03/19 09:00,"680 Park St, Seattle, WA 98101" +303435,27in 4K Gaming Monitor,1,389.99,12/10/19 17:16,"194 West St, San Francisco, CA 94016" +303436,iPhone,1,700,12/26/19 12:00,"133 14th St, Los Angeles, CA 90001" +303436,Lightning Charging Cable,1,14.95,12/26/19 12:00,"133 14th St, Los Angeles, CA 90001" +303437,USB-C Charging Cable,1,11.95,12/06/19 21:56,"11 Center St, Seattle, WA 98101" +303438,AAA Batteries (4-pack),2,2.99,12/17/19 19:12,"239 Chestnut St, Los Angeles, CA 90001" +303439,Apple Airpods Headphones,1,150,12/08/19 01:10,"456 7th St, San Francisco, CA 94016" +303440,Macbook Pro Laptop,1,1700,12/04/19 18:09,"760 Jackson St, Boston, MA 02215" +303441,AAA Batteries (4-pack),1,2.99,12/05/19 21:22,"890 Jackson St, Atlanta, GA 30301" +303442,iPhone,1,700,12/28/19 19:49,"847 Elm St, San Francisco, CA 94016" +303443,27in FHD Monitor,1,149.99,12/05/19 10:55,"614 10th St, Seattle, WA 98101" +303444,USB-C Charging Cable,1,11.95,12/21/19 22:35,"767 Pine St, Atlanta, GA 30301" +303445,Apple Airpods Headphones,1,150,12/01/19 16:36,"734 Sunset St, New York City, NY 10001" +303446,Apple Airpods Headphones,1,150,12/16/19 21:26,"129 Lake St, Boston, MA 02215" +303447,Lightning Charging Cable,1,14.95,12/12/19 15:07,"653 Main St, San Francisco, CA 94016" +303448,iPhone,1,700,12/24/19 12:35,"136 12th St, San Francisco, CA 94016" +303449,Apple Airpods Headphones,1,150,12/22/19 17:03,"986 9th St, Seattle, WA 98101" +303450,Bose SoundSport Headphones,1,99.99,12/26/19 19:50,"9 Sunset St, Los Angeles, CA 90001" +303451,AA Batteries (4-pack),1,3.84,12/21/19 16:19,"77 Ridge St, Portland, ME 04101" +303452,iPhone,1,700,12/23/19 05:03,"569 Jackson St, Atlanta, GA 30301" +303453,20in Monitor,1,109.99,12/28/19 15:08,"198 Madison St, San Francisco, CA 94016" +303454,AA Batteries (4-pack),1,3.84,12/26/19 15:43,"93 Cherry St, Boston, MA 02215" +303455,Macbook Pro Laptop,1,1700,12/29/19 17:36,"31 7th St, San Francisco, CA 94016" +303456,Apple Airpods Headphones,1,150,12/18/19 19:00,"461 Lakeview St, Austin, TX 73301" +303457,AAA Batteries (4-pack),1,2.99,12/01/19 23:03,"249 Jackson St, Boston, MA 02215" +303458,Wired Headphones,1,11.99,12/13/19 10:29,"563 Center St, San Francisco, CA 94016" +303459,Flatscreen TV,1,300,12/07/19 06:49,"866 Walnut St, San Francisco, CA 94016" +303460,AAA Batteries (4-pack),1,2.99,12/23/19 20:37,"392 Jefferson St, Seattle, WA 98101" +303461,Apple Airpods Headphones,1,150,12/11/19 13:12,"692 Wilson St, San Francisco, CA 94016" +303462,27in FHD Monitor,1,149.99,12/13/19 19:30,"342 6th St, San Francisco, CA 94016" +303463,20in Monitor,1,109.99,12/17/19 15:58,"748 Hill St, Los Angeles, CA 90001" +303464,27in 4K Gaming Monitor,1,389.99,12/28/19 11:26,"613 Madison St, Boston, MA 02215" +303465,AAA Batteries (4-pack),6,2.99,12/29/19 11:57,"527 Spruce St, Austin, TX 73301" +303466,Apple Airpods Headphones,1,150,12/05/19 00:25,"875 Church St, Boston, MA 02215" +303467,Wired Headphones,1,11.99,12/30/19 13:19,"924 Lincoln St, Atlanta, GA 30301" +303468,USB-C Charging Cable,1,11.95,12/25/19 19:20,"133 Johnson St, Dallas, TX 75001" +303469,Apple Airpods Headphones,1,150,12/17/19 09:04,"941 Meadow St, San Francisco, CA 94016" +303470,Bose SoundSport Headphones,1,99.99,12/02/19 11:34,"616 Pine St, New York City, NY 10001" +303471,AAA Batteries (4-pack),1,2.99,12/18/19 19:48,"842 2nd St, Los Angeles, CA 90001" +303472,AA Batteries (4-pack),3,3.84,12/26/19 19:23,"438 14th St, Boston, MA 02215" +303473,Bose SoundSport Headphones,1,99.99,12/03/19 13:52,"90 Washington St, Los Angeles, CA 90001" +303474,Lightning Charging Cable,1,14.95,12/21/19 21:18,"183 Elm St, Dallas, TX 75001" +303475,AAA Batteries (4-pack),4,2.99,12/17/19 17:11,"526 1st St, Los Angeles, CA 90001" +303476,20in Monitor,1,109.99,12/05/19 23:09,"985 Hickory St, Portland, OR 97035" +303477,Bose SoundSport Headphones,1,99.99,12/06/19 10:12,"588 River St, Dallas, TX 75001" +303478,34in Ultrawide Monitor,1,379.99,12/12/19 18:25,"68 Spruce St, New York City, NY 10001" +303479,Vareebadd Phone,1,400,12/09/19 19:18,"920 Pine St, Dallas, TX 75001" +303480,Lightning Charging Cable,2,14.95,12/26/19 20:06,"44 Hickory St, Los Angeles, CA 90001" +303481,AAA Batteries (4-pack),1,2.99,12/10/19 13:02,"768 13th St, Seattle, WA 98101" +303482,Apple Airpods Headphones,1,150,12/02/19 15:05,"901 7th St, Dallas, TX 75001" +303483,Apple Airpods Headphones,1,150,12/02/19 09:06,"636 Adams St, San Francisco, CA 94016" +303484,Lightning Charging Cable,1,14.95,12/26/19 10:29,"188 Church St, New York City, NY 10001" +303485,20in Monitor,1,109.99,12/19/19 14:09,"241 Park St, Los Angeles, CA 90001" +303486,34in Ultrawide Monitor,1,379.99,12/15/19 09:08,"91 Pine St, San Francisco, CA 94016" +303487,27in FHD Monitor,1,149.99,12/31/19 11:40,"429 1st St, Atlanta, GA 30301" +303488,Apple Airpods Headphones,2,150,12/23/19 20:30,"268 Hickory St, New York City, NY 10001" +303489,Wired Headphones,1,11.99,12/15/19 21:42,"634 South St, Portland, OR 97035" +303490,Bose SoundSport Headphones,1,99.99,12/13/19 12:58,"351 Park St, Los Angeles, CA 90001" +303490,27in FHD Monitor,1,149.99,12/13/19 12:58,"351 Park St, Los Angeles, CA 90001" +303491,Wired Headphones,1,11.99,12/29/19 21:06,"222 4th St, Los Angeles, CA 90001" +303492,AA Batteries (4-pack),1,3.84,12/10/19 10:53,"101 Adams St, San Francisco, CA 94016" +303493,AAA Batteries (4-pack),1,2.99,12/22/19 17:10,"530 Dogwood St, Seattle, WA 98101" +303494,27in 4K Gaming Monitor,1,389.99,12/21/19 21:09,"734 Wilson St, Los Angeles, CA 90001" +303495,Wired Headphones,1,11.99,12/11/19 04:37,"624 Willow St, Los Angeles, CA 90001" +303496,Wired Headphones,2,11.99,12/30/19 10:35,"271 Cherry St, Atlanta, GA 30301" +303497,Apple Airpods Headphones,1,150,12/17/19 18:42,"368 Maple St, Los Angeles, CA 90001" +303498,AA Batteries (4-pack),1,3.84,12/15/19 17:31,"404 Cherry St, Atlanta, GA 30301" +303499,Google Phone,1,600,12/26/19 04:41,"301 Lake St, Los Angeles, CA 90001" +303500,ThinkPad Laptop,1,999.99,12/27/19 19:54,"92 Washington St, Atlanta, GA 30301" +303501,Lightning Charging Cable,1,14.95,12/14/19 11:52,"782 Washington St, Los Angeles, CA 90001" +303502,Google Phone,1,600,12/08/19 05:38,"856 North St, Atlanta, GA 30301" +303503,Google Phone,1,600,12/04/19 21:32,"308 Wilson St, Boston, MA 02215" +303504,Flatscreen TV,1,300,12/06/19 16:52,"304 North St, San Francisco, CA 94016" +303505,AA Batteries (4-pack),1,3.84,12/25/19 20:35,"712 Jackson St, Los Angeles, CA 90001" +303506,Apple Airpods Headphones,1,150,12/17/19 17:09,"306 12th St, Portland, ME 04101" +303507,Wired Headphones,1,11.99,12/09/19 19:50,"695 Elm St, Atlanta, GA 30301" +303508,LG Dryer,1,600.0,12/24/19 09:16,"11 River St, Austin, TX 73301" +303509,Bose SoundSport Headphones,2,99.99,12/08/19 21:41,"578 Lincoln St, San Francisco, CA 94016" +303510,Macbook Pro Laptop,1,1700,12/11/19 20:58,"580 Jefferson St, Dallas, TX 75001" +303511,ThinkPad Laptop,1,999.99,12/09/19 12:56,"790 Sunset St, Boston, MA 02215" +303512,Wired Headphones,2,11.99,12/06/19 12:40,"895 Lakeview St, Los Angeles, CA 90001" +303513,Wired Headphones,1,11.99,12/10/19 21:23,"172 12th St, San Francisco, CA 94016" +303514,Lightning Charging Cable,1,14.95,12/02/19 15:57,"904 Main St, Atlanta, GA 30301" +303515,34in Ultrawide Monitor,1,379.99,12/09/19 16:34,"479 Washington St, Los Angeles, CA 90001" +303516,27in 4K Gaming Monitor,1,389.99,12/21/19 13:13,"779 Park St, Boston, MA 02215" +303517,27in 4K Gaming Monitor,1,389.99,12/29/19 14:49,"773 Cherry St, New York City, NY 10001" +303518,AA Batteries (4-pack),1,3.84,12/24/19 22:28,"626 North St, Los Angeles, CA 90001" +303519,USB-C Charging Cable,1,11.95,12/10/19 10:44,"835 Jackson St, Dallas, TX 75001" +303520,AA Batteries (4-pack),1,3.84,12/03/19 21:49,"108 Church St, Austin, TX 73301" +303521,Wired Headphones,1,11.99,12/24/19 06:38,"408 Maple St, San Francisco, CA 94016" +303522,AAA Batteries (4-pack),1,2.99,12/05/19 14:56,"333 Johnson St, San Francisco, CA 94016" +303523,34in Ultrawide Monitor,1,379.99,12/29/19 16:55,"345 Dogwood St, Portland, OR 97035" +303524,USB-C Charging Cable,3,11.95,12/04/19 19:59,"664 Washington St, Los Angeles, CA 90001" +303525,AA Batteries (4-pack),1,3.84,12/14/19 12:02,"220 South St, Atlanta, GA 30301" +303526,Vareebadd Phone,1,400,12/29/19 14:03,"379 Center St, Los Angeles, CA 90001" +303527,LG Washing Machine,1,600.0,12/20/19 07:05,"783 Highland St, Portland, OR 97035" +303528,Apple Airpods Headphones,1,150,12/02/19 12:49,"470 Jefferson St, San Francisco, CA 94016" +303529,27in FHD Monitor,1,149.99,12/22/19 17:57,"242 Meadow St, San Francisco, CA 94016" +303530,Lightning Charging Cable,1,14.95,12/07/19 10:42,"239 13th St, Los Angeles, CA 90001" +303531,20in Monitor,1,109.99,12/14/19 07:55,"678 Elm St, Seattle, WA 98101" +303532,Wired Headphones,1,11.99,12/09/19 15:43,"711 Lake St, San Francisco, CA 94016" +303533,LG Dryer,1,600.0,12/30/19 16:48,"754 1st St, Los Angeles, CA 90001" +303533,20in Monitor,1,109.99,12/30/19 16:48,"754 1st St, Los Angeles, CA 90001" +303534,Lightning Charging Cable,1,14.95,12/03/19 01:14,"668 Lake St, Seattle, WA 98101" +303535,ThinkPad Laptop,1,999.99,12/16/19 13:47,"494 10th St, Portland, OR 97035" +303536,USB-C Charging Cable,1,11.95,12/26/19 09:13,"570 14th St, Atlanta, GA 30301" +303537,AAA Batteries (4-pack),1,2.99,12/05/19 12:07,"267 Chestnut St, San Francisco, CA 94016" +303538,Wired Headphones,1,11.99,12/05/19 19:53,"521 Madison St, Los Angeles, CA 90001" +303539,Wired Headphones,1,11.99,12/24/19 06:04,"823 North St, New York City, NY 10001" +303540,Wired Headphones,1,11.99,12/23/19 15:50,"953 Lake St, Atlanta, GA 30301" +303541,iPhone,1,700,12/06/19 20:16,"607 Spruce St, Seattle, WA 98101" +303542,AAA Batteries (4-pack),1,2.99,12/27/19 11:07,"810 Main St, San Francisco, CA 94016" +303543,AA Batteries (4-pack),3,3.84,12/01/19 18:02,"77 River St, Dallas, TX 75001" +303544,Bose SoundSport Headphones,1,99.99,12/07/19 11:23,"26 West St, Los Angeles, CA 90001" +303545,ThinkPad Laptop,1,999.99,12/06/19 13:42,"303 8th St, Atlanta, GA 30301" +303546,Bose SoundSport Headphones,1,99.99,12/10/19 10:34,"997 4th St, Austin, TX 73301" +303547,Vareebadd Phone,1,400,12/24/19 12:44,"948 Sunset St, New York City, NY 10001" +303547,Apple Airpods Headphones,1,150,12/24/19 12:44,"948 Sunset St, New York City, NY 10001" +303548,Google Phone,1,600,12/26/19 10:49,"321 Spruce St, Dallas, TX 75001" +303548,USB-C Charging Cable,1,11.95,12/26/19 10:49,"321 Spruce St, Dallas, TX 75001" +303549,Bose SoundSport Headphones,1,99.99,12/19/19 12:43,"473 Jefferson St, Los Angeles, CA 90001" +303550,Bose SoundSport Headphones,1,99.99,12/24/19 15:51,"394 Hill St, San Francisco, CA 94016" +303551,Lightning Charging Cable,1,14.95,12/31/19 11:48,"773 Sunset St, San Francisco, CA 94016" +303552,Wired Headphones,1,11.99,12/04/19 09:28,"184 13th St, Boston, MA 02215" +303552,34in Ultrawide Monitor,1,379.99,12/04/19 09:28,"184 13th St, Boston, MA 02215" +303553,iPhone,1,700,12/02/19 00:40,"203 8th St, Austin, TX 73301" +303553,Apple Airpods Headphones,1,150,12/02/19 00:40,"203 8th St, Austin, TX 73301" +303554,27in 4K Gaming Monitor,1,389.99,12/08/19 11:42,"46 Highland St, Los Angeles, CA 90001" +303555,27in 4K Gaming Monitor,1,389.99,12/29/19 08:30,"314 Dogwood St, New York City, NY 10001" +303556,27in 4K Gaming Monitor,1,389.99,12/06/19 15:59,"933 Hill St, Dallas, TX 75001" +303557,Apple Airpods Headphones,1,150,12/03/19 01:37,"364 South St, Los Angeles, CA 90001" +303558,USB-C Charging Cable,1,11.95,12/25/19 17:51,"302 Forest St, San Francisco, CA 94016" +303559,34in Ultrawide Monitor,1,379.99,12/10/19 05:15,"286 Highland St, Dallas, TX 75001" +303560,Lightning Charging Cable,1,14.95,12/11/19 17:49,"153 Washington St, Los Angeles, CA 90001" +303561,34in Ultrawide Monitor,1,379.99,12/23/19 17:40,"847 Highland St, Seattle, WA 98101" +303562,20in Monitor,1,109.99,12/17/19 21:37,"23 8th St, Austin, TX 73301" +303563,USB-C Charging Cable,1,11.95,12/03/19 20:51,"77 14th St, Los Angeles, CA 90001" +303564,AA Batteries (4-pack),1,3.84,12/29/19 19:49,"904 Lake St, San Francisco, CA 94016" +303565,Vareebadd Phone,1,400,12/09/19 15:25,"266 Lake St, New York City, NY 10001" +303566,Bose SoundSport Headphones,1,99.99,12/31/19 20:06,"880 Main St, San Francisco, CA 94016" +303567,AAA Batteries (4-pack),3,2.99,12/20/19 05:51,"741 Sunset St, San Francisco, CA 94016" +303568,USB-C Charging Cable,1,11.95,12/27/19 17:22,"469 Chestnut St, San Francisco, CA 94016" +303569,USB-C Charging Cable,2,11.95,12/19/19 15:30,"455 9th St, Los Angeles, CA 90001" +303570,AAA Batteries (4-pack),1,2.99,12/20/19 12:28,"207 Madison St, Austin, TX 73301" +303571,27in FHD Monitor,1,149.99,12/04/19 16:56,"202 Washington St, Atlanta, GA 30301" +303572,USB-C Charging Cable,3,11.95,12/20/19 00:59,"189 Elm St, San Francisco, CA 94016" +303573,USB-C Charging Cable,1,11.95,12/17/19 13:38,"772 Adams St, Dallas, TX 75001" +303574,27in FHD Monitor,1,149.99,12/17/19 10:32,"913 Pine St, San Francisco, CA 94016" +303575,Macbook Pro Laptop,1,1700,12/11/19 14:50,"326 6th St, Los Angeles, CA 90001" +303576,Lightning Charging Cable,1,14.95,12/31/19 15:18,"603 1st St, New York City, NY 10001" +303577,AAA Batteries (4-pack),1,2.99,12/07/19 22:47,"632 5th St, New York City, NY 10001" +303578,USB-C Charging Cable,1,11.95,12/14/19 20:12,"647 10th St, San Francisco, CA 94016" +303579,Bose SoundSport Headphones,1,99.99,12/02/19 18:47,"668 Walnut St, San Francisco, CA 94016" +303579,Wired Headphones,1,11.99,12/02/19 18:47,"668 Walnut St, San Francisco, CA 94016" +303580,AAA Batteries (4-pack),1,2.99,12/23/19 15:24,"546 Pine St, Portland, OR 97035" +303581,Bose SoundSport Headphones,1,99.99,12/11/19 20:43,"746 Park St, New York City, NY 10001" +303582,34in Ultrawide Monitor,1,379.99,12/15/19 21:47,"41 River St, New York City, NY 10001" +303583,27in 4K Gaming Monitor,1,389.99,12/07/19 11:07,"302 Lincoln St, New York City, NY 10001" +303584,AA Batteries (4-pack),1,3.84,12/24/19 11:50,"639 Highland St, San Francisco, CA 94016" +303585,AA Batteries (4-pack),1,3.84,12/05/19 10:22,"915 Hickory St, Austin, TX 73301" +303586,AAA Batteries (4-pack),1,2.99,12/20/19 16:11,"988 12th St, Dallas, TX 75001" +303587,Apple Airpods Headphones,1,150,12/19/19 16:46,"595 Hickory St, Seattle, WA 98101" +303588,Bose SoundSport Headphones,1,99.99,12/19/19 10:58,"670 South St, New York City, NY 10001" +303589,Wired Headphones,1,11.99,12/11/19 18:37,"559 13th St, Los Angeles, CA 90001" +303590,34in Ultrawide Monitor,1,379.99,12/21/19 11:22,"555 South St, Los Angeles, CA 90001" +303591,Lightning Charging Cable,1,14.95,12/07/19 19:15,"964 Meadow St, Atlanta, GA 30301" +303592,34in Ultrawide Monitor,1,379.99,12/05/19 16:04,"698 7th St, San Francisco, CA 94016" +303593,AAA Batteries (4-pack),2,2.99,12/16/19 11:46,"773 Pine St, Boston, MA 02215" +303594,AAA Batteries (4-pack),1,2.99,12/16/19 15:06,"79 12th St, Atlanta, GA 30301" +303595,iPhone,1,700,12/04/19 09:51,"374 West St, New York City, NY 10001" +303596,Lightning Charging Cable,1,14.95,12/15/19 13:59,"159 Meadow St, Los Angeles, CA 90001" +303597,AAA Batteries (4-pack),2,2.99,12/13/19 10:02,"188 South St, Austin, TX 73301" +303598,AAA Batteries (4-pack),1,2.99,12/09/19 17:34,"273 Johnson St, Los Angeles, CA 90001" +303599,Wired Headphones,1,11.99,12/14/19 11:24,"857 Forest St, Dallas, TX 75001" +303600,LG Washing Machine,1,600.0,12/29/19 20:46,"436 Lake St, San Francisco, CA 94016" +303601,AAA Batteries (4-pack),1,2.99,12/09/19 09:53,"489 South St, San Francisco, CA 94016" +303602,34in Ultrawide Monitor,1,379.99,12/13/19 20:26,"588 Washington St, San Francisco, CA 94016" +303603,27in FHD Monitor,1,149.99,12/17/19 03:20,"351 Hill St, Portland, OR 97035" +303604,Wired Headphones,1,11.99,12/21/19 10:53,"363 Cherry St, Atlanta, GA 30301" +303605,27in 4K Gaming Monitor,1,389.99,12/20/19 08:23,"29 Ridge St, New York City, NY 10001" +303606,USB-C Charging Cable,1,11.95,12/24/19 12:01,"222 Johnson St, Portland, OR 97035" +303607,AAA Batteries (4-pack),1,2.99,12/10/19 18:44,"216 Chestnut St, San Francisco, CA 94016" +303608,Lightning Charging Cable,1,14.95,12/10/19 09:33,"656 Highland St, New York City, NY 10001" +303609,Flatscreen TV,1,300,12/27/19 07:18,"438 10th St, San Francisco, CA 94016" +303610,20in Monitor,1,109.99,12/16/19 14:43,"633 Johnson St, Seattle, WA 98101" +303611,Bose SoundSport Headphones,1,99.99,12/16/19 05:18,"851 2nd St, San Francisco, CA 94016" +303612,AAA Batteries (4-pack),1,2.99,12/18/19 23:30,"985 Lakeview St, Dallas, TX 75001" +303613,ThinkPad Laptop,1,999.99,12/23/19 17:01,"564 Lake St, San Francisco, CA 94016" +303614,Wired Headphones,1,11.99,12/28/19 12:28,"817 6th St, Seattle, WA 98101" +303615,Bose SoundSport Headphones,1,99.99,12/26/19 21:12,"383 Lincoln St, San Francisco, CA 94016" +303616,AA Batteries (4-pack),1,3.84,12/16/19 15:55,"967 Main St, San Francisco, CA 94016" +303617,Bose SoundSport Headphones,1,99.99,12/29/19 23:06,"133 Jefferson St, San Francisco, CA 94016" +303618,USB-C Charging Cable,1,11.95,12/22/19 06:46,"423 Ridge St, San Francisco, CA 94016" +303619,USB-C Charging Cable,2,11.95,12/09/19 08:27,"667 Park St, New York City, NY 10001" +303620,Bose SoundSport Headphones,1,99.99,12/31/19 00:16,"831 Pine St, Dallas, TX 75001" +303621,Apple Airpods Headphones,1,150,12/26/19 14:49,"300 Highland St, Los Angeles, CA 90001" +303622,AAA Batteries (4-pack),3,2.99,12/18/19 11:35,"887 Willow St, Boston, MA 02215" +303623,AAA Batteries (4-pack),1,2.99,12/13/19 10:28,"826 Madison St, San Francisco, CA 94016" +303624,Bose SoundSport Headphones,1,99.99,12/03/19 10:36,"474 Willow St, Portland, ME 04101" +303625,Lightning Charging Cable,1,14.95,12/19/19 20:44,"616 Jefferson St, Boston, MA 02215" +303626,Lightning Charging Cable,1,14.95,12/24/19 16:19,"650 Elm St, San Francisco, CA 94016" +303627,27in 4K Gaming Monitor,1,389.99,12/07/19 13:29,"617 9th St, San Francisco, CA 94016" +303628,USB-C Charging Cable,1,11.95,12/18/19 22:28,"490 Spruce St, Boston, MA 02215" +303629,Macbook Pro Laptop,1,1700,12/20/19 13:36,"436 Lake St, Austin, TX 73301" +303630,USB-C Charging Cable,1,11.95,12/13/19 23:16,"515 River St, New York City, NY 10001" +303631,27in FHD Monitor,1,149.99,12/22/19 11:13,"492 12th St, Los Angeles, CA 90001" +303632,Wired Headphones,1,11.99,12/14/19 13:02,"187 Ridge St, New York City, NY 10001" +303633,AAA Batteries (4-pack),3,2.99,12/31/19 14:05,"263 Chestnut St, Boston, MA 02215" +303634,Lightning Charging Cable,1,14.95,12/18/19 13:49,"663 10th St, San Francisco, CA 94016" +303635,iPhone,1,700,12/21/19 17:26,"386 13th St, Portland, OR 97035" +303636,Wired Headphones,1,11.99,12/21/19 18:00,"164 Jefferson St, Los Angeles, CA 90001" +303637,Vareebadd Phone,1,400,12/30/19 21:07,"350 11th St, Portland, OR 97035" +303637,USB-C Charging Cable,1,11.95,12/30/19 21:07,"350 11th St, Portland, OR 97035" +303638,Apple Airpods Headphones,1,150,12/19/19 10:16,"943 Elm St, New York City, NY 10001" +303639,Google Phone,1,600,12/18/19 22:15,"921 1st St, San Francisco, CA 94016" +303640,Lightning Charging Cable,1,14.95,12/07/19 20:23,"54 Cedar St, San Francisco, CA 94016" +303641,Google Phone,1,600,12/10/19 20:31,"61 Sunset St, Los Angeles, CA 90001" +303641,USB-C Charging Cable,1,11.95,12/10/19 20:31,"61 Sunset St, Los Angeles, CA 90001" +303642,AA Batteries (4-pack),1,3.84,12/02/19 20:10,"920 Lake St, Dallas, TX 75001" +303643,Wired Headphones,1,11.99,12/23/19 12:43,"774 Forest St, New York City, NY 10001" +303644,Apple Airpods Headphones,1,150,12/22/19 10:46,"468 Highland St, Seattle, WA 98101" +303645,Bose SoundSport Headphones,1,99.99,12/05/19 21:56,"794 Main St, Portland, OR 97035" +303646,Apple Airpods Headphones,1,150,12/12/19 00:48,"760 Highland St, San Francisco, CA 94016" +303647,AAA Batteries (4-pack),2,2.99,12/15/19 21:29,"670 13th St, Dallas, TX 75001" +303648,27in FHD Monitor,1,149.99,12/07/19 09:36,"522 Walnut St, Los Angeles, CA 90001" +303649,AAA Batteries (4-pack),1,2.99,12/18/19 12:22,"294 Jackson St, Los Angeles, CA 90001" +303650,27in 4K Gaming Monitor,1,389.99,12/11/19 18:57,"252 Maple St, Atlanta, GA 30301" +303651,AA Batteries (4-pack),1,3.84,12/11/19 13:00,"658 9th St, Boston, MA 02215" +303652,ThinkPad Laptop,1,999.99,12/25/19 22:14,"440 River St, Austin, TX 73301" +303653,34in Ultrawide Monitor,1,379.99,12/20/19 15:21,"858 Lincoln St, San Francisco, CA 94016" +303654,ThinkPad Laptop,1,999.99,12/09/19 21:54,"150 6th St, Atlanta, GA 30301" +303655,34in Ultrawide Monitor,1,379.99,12/07/19 13:17,"521 Maple St, San Francisco, CA 94016" +303656,Flatscreen TV,1,300,12/17/19 14:07,"29 Washington St, Los Angeles, CA 90001" +303657,Lightning Charging Cable,2,14.95,12/22/19 21:28,"539 Spruce St, Atlanta, GA 30301" +303658,Wired Headphones,1,11.99,12/05/19 17:33,"293 8th St, New York City, NY 10001" +303659,LG Dryer,1,600.0,12/09/19 11:26,"803 8th St, New York City, NY 10001" +303659,Lightning Charging Cable,1,14.95,12/09/19 11:26,"803 8th St, New York City, NY 10001" +,,,,, +303660,Lightning Charging Cable,1,14.95,12/15/19 17:22,"653 Forest St, San Francisco, CA 94016" +303661,Bose SoundSport Headphones,1,99.99,12/11/19 10:23,"960 8th St, Boston, MA 02215" +303662,Lightning Charging Cable,2,14.95,12/01/19 15:02,"142 Main St, San Francisco, CA 94016" +303663,Apple Airpods Headphones,1,150,12/25/19 21:32,"390 Highland St, Boston, MA 02215" +303664,USB-C Charging Cable,1,11.95,12/05/19 16:18,"43 6th St, Los Angeles, CA 90001" +303665,34in Ultrawide Monitor,1,379.99,12/04/19 14:36,"383 Madison St, Seattle, WA 98101" +303666,Bose SoundSport Headphones,1,99.99,12/17/19 19:34,"515 13th St, San Francisco, CA 94016" +303667,Apple Airpods Headphones,1,150,12/27/19 08:58,"982 12th St, San Francisco, CA 94016" +303668,AA Batteries (4-pack),1,3.84,12/23/19 20:14,"848 Cherry St, Los Angeles, CA 90001" +303669,USB-C Charging Cable,1,11.95,12/04/19 18:51,"569 Forest St, Portland, OR 97035" +303670,AA Batteries (4-pack),1,3.84,12/21/19 15:58,"931 Johnson St, Boston, MA 02215" +303671,Wired Headphones,1,11.99,12/31/19 15:50,"787 Church St, San Francisco, CA 94016" +303672,USB-C Charging Cable,1,11.95,12/09/19 12:37,"996 Lincoln St, San Francisco, CA 94016" +303673,Bose SoundSport Headphones,1,99.99,12/15/19 16:51,"921 Willow St, Dallas, TX 75001" +303674,20in Monitor,1,109.99,12/29/19 11:24,"141 South St, Atlanta, GA 30301" +303675,ThinkPad Laptop,1,999.99,12/20/19 20:27,"552 4th St, Los Angeles, CA 90001" +303676,Flatscreen TV,1,300,12/01/19 17:27,"257 2nd St, San Francisco, CA 94016" +303677,Apple Airpods Headphones,1,150,12/15/19 10:12,"20 4th St, San Francisco, CA 94016" +303678,AA Batteries (4-pack),1,3.84,12/29/19 16:30,"610 Maple St, Dallas, TX 75001" +303679,20in Monitor,1,109.99,12/04/19 10:48,"858 Maple St, Austin, TX 73301" +303680,Bose SoundSport Headphones,1,99.99,12/18/19 12:34,"114 River St, Los Angeles, CA 90001" +303681,Wired Headphones,1,11.99,12/20/19 16:44,"758 Hickory St, San Francisco, CA 94016" +303682,Lightning Charging Cable,1,14.95,12/29/19 21:30,"285 14th St, Los Angeles, CA 90001" +303683,Wired Headphones,1,11.99,12/02/19 16:36,"835 Elm St, San Francisco, CA 94016" +303684,AA Batteries (4-pack),1,3.84,12/05/19 01:07,"457 Johnson St, San Francisco, CA 94016" +303685,Lightning Charging Cable,2,14.95,12/20/19 14:10,"400 13th St, Atlanta, GA 30301" +303686,Bose SoundSport Headphones,1,99.99,12/09/19 19:39,"881 Willow St, Los Angeles, CA 90001" +303687,Vareebadd Phone,1,400,12/30/19 07:09,"58 12th St, San Francisco, CA 94016" +303688,USB-C Charging Cable,1,11.95,12/19/19 16:12,"861 Sunset St, New York City, NY 10001" +303689,Lightning Charging Cable,1,14.95,12/19/19 13:05,"842 Cedar St, San Francisco, CA 94016" +303690,AA Batteries (4-pack),1,3.84,12/05/19 13:55,"136 Jackson St, Los Angeles, CA 90001" +303691,AA Batteries (4-pack),1,3.84,12/26/19 18:34,"200 Hill St, San Francisco, CA 94016" +303692,iPhone,1,700,12/28/19 14:52,"308 13th St, Atlanta, GA 30301" +303693,27in FHD Monitor,1,149.99,12/25/19 20:44,"64 13th St, Los Angeles, CA 90001" +303694,Lightning Charging Cable,1,14.95,12/15/19 13:48,"284 Hickory St, Seattle, WA 98101" +303695,Lightning Charging Cable,1,14.95,12/30/19 13:04,"90 Meadow St, Seattle, WA 98101" +303696,AAA Batteries (4-pack),1,2.99,12/06/19 16:37,"83 12th St, Austin, TX 73301" +303697,USB-C Charging Cable,2,11.95,12/10/19 09:03,"45 Park St, Portland, ME 04101" +303698,AAA Batteries (4-pack),1,2.99,12/06/19 21:53,"898 1st St, Portland, ME 04101" +303699,USB-C Charging Cable,1,11.95,12/23/19 12:38,"7 West St, New York City, NY 10001" +303700,Wired Headphones,1,11.99,12/08/19 23:25,"303 South St, San Francisco, CA 94016" +303701,Flatscreen TV,1,300,12/23/19 08:48,"114 Walnut St, San Francisco, CA 94016" +303702,Bose SoundSport Headphones,1,99.99,12/19/19 11:50,"184 Ridge St, Seattle, WA 98101" +303703,AA Batteries (4-pack),1,3.84,12/31/19 19:33,"994 Chestnut St, San Francisco, CA 94016" +303704,iPhone,1,700,12/07/19 10:53,"660 Lake St, Portland, OR 97035" +303705,Google Phone,1,600,12/05/19 13:31,"323 Jefferson St, San Francisco, CA 94016" +303706,Apple Airpods Headphones,1,150,12/01/19 12:12,"508 North St, Boston, MA 02215" +303707,AA Batteries (4-pack),1,3.84,12/24/19 11:00,"270 Walnut St, New York City, NY 10001" +303708,Lightning Charging Cable,1,14.95,12/03/19 11:23,"72 5th St, Boston, MA 02215" +303709,AA Batteries (4-pack),1,3.84,12/29/19 14:23,"494 5th St, Los Angeles, CA 90001" +303710,LG Dryer,1,600.0,12/24/19 20:06,"119 8th St, San Francisco, CA 94016" +303710,20in Monitor,1,109.99,12/24/19 20:06,"119 8th St, San Francisco, CA 94016" +303711,USB-C Charging Cable,1,11.95,12/19/19 20:14,"263 12th St, San Francisco, CA 94016" +303712,27in FHD Monitor,1,149.99,12/09/19 15:49,"506 11th St, San Francisco, CA 94016" +303713,Google Phone,1,600,12/04/19 20:19,"767 Wilson St, San Francisco, CA 94016" +303714,USB-C Charging Cable,1,11.95,12/06/19 06:31,"70 Maple St, Atlanta, GA 30301" +303715,AAA Batteries (4-pack),1,2.99,12/29/19 01:22,"920 14th St, Los Angeles, CA 90001" +303716,USB-C Charging Cable,1,11.95,12/07/19 16:46,"835 Center St, New York City, NY 10001" +303717,AA Batteries (4-pack),1,3.84,12/16/19 09:24,"378 Ridge St, Los Angeles, CA 90001" +303718,AA Batteries (4-pack),1,3.84,12/09/19 13:37,"833 Johnson St, Seattle, WA 98101" +303719,Wired Headphones,1,11.99,12/17/19 19:27,"998 10th St, San Francisco, CA 94016" +303720,Lightning Charging Cable,1,14.95,12/10/19 20:28,"797 Lakeview St, San Francisco, CA 94016" +303721,AA Batteries (4-pack),1,3.84,12/20/19 14:27,"2 4th St, San Francisco, CA 94016" +303722,USB-C Charging Cable,1,11.95,12/05/19 15:19,"943 Madison St, Atlanta, GA 30301" +303723,Wired Headphones,2,11.99,12/21/19 09:59,"753 7th St, San Francisco, CA 94016" +303723,Macbook Pro Laptop,1,1700,12/21/19 09:59,"753 7th St, San Francisco, CA 94016" +303724,Lightning Charging Cable,1,14.95,12/17/19 21:13,"126 9th St, Seattle, WA 98101" +303725,Lightning Charging Cable,2,14.95,12/25/19 19:03,"499 West St, Atlanta, GA 30301" +303726,Wired Headphones,1,11.99,12/20/19 18:47,"710 Wilson St, San Francisco, CA 94016" +303727,USB-C Charging Cable,2,11.95,12/24/19 11:28,"530 6th St, Boston, MA 02215" +303728,Wired Headphones,1,11.99,12/05/19 10:59,"578 Main St, Portland, OR 97035" +303729,AAA Batteries (4-pack),1,2.99,12/21/19 09:49,"297 8th St, Los Angeles, CA 90001" +303730,20in Monitor,1,109.99,12/17/19 21:15,"218 13th St, Portland, OR 97035" +303731,Bose SoundSport Headphones,1,99.99,12/06/19 22:19,"243 Cherry St, Los Angeles, CA 90001" +303732,USB-C Charging Cable,1,11.95,12/24/19 14:06,"591 West St, San Francisco, CA 94016" +303733,Lightning Charging Cable,1,14.95,12/17/19 11:06,"209 Hill St, Austin, TX 73301" +303734,USB-C Charging Cable,1,11.95,12/20/19 18:54,"541 Lake St, Atlanta, GA 30301" +303735,20in Monitor,1,109.99,12/02/19 00:53,"307 Cedar St, San Francisco, CA 94016" +303736,AA Batteries (4-pack),2,3.84,12/29/19 21:00,"870 Willow St, San Francisco, CA 94016" +303737,AA Batteries (4-pack),2,3.84,12/11/19 00:47,"870 Center St, Austin, TX 73301" +303738,Vareebadd Phone,1,400,12/07/19 22:24,"344 Lincoln St, San Francisco, CA 94016" +303739,Lightning Charging Cable,1,14.95,12/15/19 23:25,"725 Wilson St, New York City, NY 10001" +303740,USB-C Charging Cable,1,11.95,12/31/19 17:06,"548 Washington St, Atlanta, GA 30301" +303741,27in 4K Gaming Monitor,1,389.99,12/27/19 14:46,"673 Washington St, Portland, OR 97035" +303742,Lightning Charging Cable,1,14.95,12/13/19 11:57,"669 Ridge St, Atlanta, GA 30301" +303743,Wired Headphones,1,11.99,12/06/19 12:13,"252 Madison St, Los Angeles, CA 90001" +303744,AAA Batteries (4-pack),1,2.99,12/22/19 21:25,"716 Jackson St, Seattle, WA 98101" +303745,27in 4K Gaming Monitor,1,389.99,12/09/19 14:50,"823 6th St, New York City, NY 10001" +303746,LG Washing Machine,1,600.0,12/06/19 16:40,"342 2nd St, Atlanta, GA 30301" +303747,USB-C Charging Cable,1,11.95,12/16/19 01:31,"633 Park St, Seattle, WA 98101" +303748,Wired Headphones,1,11.99,12/27/19 10:59,"676 1st St, Austin, TX 73301" +303749,AAA Batteries (4-pack),1,2.99,12/24/19 09:49,"978 13th St, Austin, TX 73301" +303750,27in FHD Monitor,1,149.99,12/25/19 23:53,"246 Jefferson St, Atlanta, GA 30301" +303751,USB-C Charging Cable,1,11.95,12/20/19 00:21,"677 Elm St, New York City, NY 10001" +303752,Vareebadd Phone,1,400,12/04/19 22:51,"89 Wilson St, New York City, NY 10001" +303753,Macbook Pro Laptop,1,1700,12/17/19 22:06,"631 Madison St, San Francisco, CA 94016" +303754,Lightning Charging Cable,1,14.95,12/25/19 12:53,"686 Hickory St, New York City, NY 10001" +303755,AAA Batteries (4-pack),1,2.99,12/05/19 19:18,"659 Cedar St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +303756,Wired Headphones,1,11.99,12/27/19 16:30,"707 11th St, New York City, NY 10001" +303757,Apple Airpods Headphones,1,150,12/20/19 14:57,"734 Washington St, Atlanta, GA 30301" +303758,Lightning Charging Cable,1,14.95,12/09/19 17:29,"838 West St, Atlanta, GA 30301" +303759,Lightning Charging Cable,1,14.95,12/21/19 20:40,"290 14th St, Seattle, WA 98101" +303759,AAA Batteries (4-pack),1,2.99,12/21/19 20:40,"290 14th St, Seattle, WA 98101" +303760,Bose SoundSport Headphones,1,99.99,12/01/19 22:20,"345 12th St, Los Angeles, CA 90001" +303761,AAA Batteries (4-pack),1,2.99,12/18/19 20:00,"924 13th St, Boston, MA 02215" +303762,27in FHD Monitor,1,149.99,12/13/19 17:04,"688 14th St, Atlanta, GA 30301" +303763,AAA Batteries (4-pack),2,2.99,12/01/19 18:25,"663 Cedar St, San Francisco, CA 94016" +303764,Lightning Charging Cable,1,14.95,12/05/19 20:48,"185 Center St, Atlanta, GA 30301" +303765,AA Batteries (4-pack),1,3.84,12/20/19 11:32,"418 Spruce St, Seattle, WA 98101" +303766,Lightning Charging Cable,1,14.95,12/12/19 08:45,"606 Meadow St, New York City, NY 10001" +303767,Lightning Charging Cable,1,14.95,12/17/19 10:53,"795 Park St, New York City, NY 10001" +303768,ThinkPad Laptop,1,999.99,12/11/19 20:36,"568 12th St, Boston, MA 02215" +303769,AA Batteries (4-pack),1,3.84,12/25/19 20:16,"66 Ridge St, Austin, TX 73301" +303770,USB-C Charging Cable,1,11.95,12/14/19 21:11,"959 Dogwood St, Los Angeles, CA 90001" +303771,34in Ultrawide Monitor,1,379.99,12/17/19 09:39,"993 Main St, Los Angeles, CA 90001" +303772,27in 4K Gaming Monitor,1,389.99,12/24/19 14:03,"461 Lakeview St, Los Angeles, CA 90001" +303773,AA Batteries (4-pack),1,3.84,12/17/19 18:48,"643 Dogwood St, Los Angeles, CA 90001" +303774,Wired Headphones,2,11.99,12/25/19 12:55,"217 Main St, Seattle, WA 98101" +303775,Lightning Charging Cable,1,14.95,12/28/19 09:29,"424 Highland St, San Francisco, CA 94016" +303776,Wired Headphones,1,11.99,12/21/19 23:07,"51 5th St, San Francisco, CA 94016" +303777,Wired Headphones,1,11.99,12/05/19 17:32,"673 Washington St, San Francisco, CA 94016" +303778,USB-C Charging Cable,1,11.95,12/20/19 01:21,"581 10th St, Los Angeles, CA 90001" +303779,AAA Batteries (4-pack),4,2.99,12/19/19 09:43,"745 14th St, Atlanta, GA 30301" +303780,27in FHD Monitor,1,149.99,12/04/19 21:48,"500 1st St, New York City, NY 10001" +303781,Lightning Charging Cable,1,14.95,12/02/19 11:41,"764 North St, Dallas, TX 75001" +303782,34in Ultrawide Monitor,1,379.99,12/05/19 08:54,"858 West St, Dallas, TX 75001" +303783,AA Batteries (4-pack),1,3.84,12/30/19 13:21,"588 South St, Dallas, TX 75001" +303784,27in FHD Monitor,1,149.99,01/01/20 01:48,"304 7th St, Los Angeles, CA 90001" +303785,AA Batteries (4-pack),1,3.84,12/03/19 13:32,"619 Ridge St, New York City, NY 10001" +303786,Apple Airpods Headphones,1,150,12/09/19 09:12,"240 1st St, Portland, OR 97035" +303787,AA Batteries (4-pack),1,3.84,12/30/19 12:52,"172 Spruce St, Los Angeles, CA 90001" +303788,Lightning Charging Cable,2,14.95,12/23/19 17:50,"281 Lake St, Los Angeles, CA 90001" +303789,Lightning Charging Cable,1,14.95,12/14/19 00:37,"844 Cherry St, Los Angeles, CA 90001" +303790,Wired Headphones,1,11.99,12/31/19 20:37,"746 Maple St, New York City, NY 10001" +303791,AA Batteries (4-pack),2,3.84,12/08/19 10:45,"912 Washington St, Boston, MA 02215" +303792,AAA Batteries (4-pack),1,2.99,12/31/19 08:04,"221 North St, New York City, NY 10001" +303793,USB-C Charging Cable,1,11.95,12/11/19 20:59,"461 Lakeview St, Los Angeles, CA 90001" +303794,27in FHD Monitor,1,149.99,12/06/19 09:13,"184 Walnut St, New York City, NY 10001" +303795,Vareebadd Phone,1,400,12/09/19 17:49,"802 11th St, San Francisco, CA 94016" +303796,Wired Headphones,1,11.99,12/30/19 08:11,"713 Chestnut St, New York City, NY 10001" +303797,Bose SoundSport Headphones,1,99.99,12/27/19 18:08,"683 South St, Los Angeles, CA 90001" +303798,Flatscreen TV,1,300,12/21/19 08:11,"76 Dogwood St, Portland, OR 97035" +303799,USB-C Charging Cable,1,11.95,12/20/19 09:40,"753 Johnson St, Boston, MA 02215" +303800,27in FHD Monitor,1,149.99,12/29/19 19:10,"644 Forest St, New York City, NY 10001" +303801,Bose SoundSport Headphones,1,99.99,12/19/19 21:16,"746 West St, San Francisco, CA 94016" +303802,Lightning Charging Cable,1,14.95,12/30/19 11:53,"294 Cedar St, Seattle, WA 98101" +303803,iPhone,1,700,12/23/19 11:05,"890 Park St, Dallas, TX 75001" +303804,AAA Batteries (4-pack),4,2.99,12/06/19 14:51,"941 Dogwood St, Seattle, WA 98101" +303805,34in Ultrawide Monitor,1,379.99,12/29/19 10:23,"842 Main St, Portland, OR 97035" +303806,AAA Batteries (4-pack),1,2.99,12/24/19 19:13,"3 Park St, San Francisco, CA 94016" +303807,USB-C Charging Cable,1,11.95,12/05/19 11:12,"521 14th St, New York City, NY 10001" +303808,Apple Airpods Headphones,1,150,12/21/19 04:42,"434 Park St, New York City, NY 10001" +303809,AAA Batteries (4-pack),1,2.99,12/09/19 19:06,"536 North St, San Francisco, CA 94016" +303810,Bose SoundSport Headphones,1,99.99,12/28/19 13:40,"125 Meadow St, San Francisco, CA 94016" +303810,Lightning Charging Cable,1,14.95,12/28/19 13:40,"125 Meadow St, San Francisco, CA 94016" +303811,34in Ultrawide Monitor,1,379.99,12/25/19 16:04,"647 1st St, Seattle, WA 98101" +303812,USB-C Charging Cable,3,11.95,12/06/19 21:37,"24 Dogwood St, Dallas, TX 75001" +303813,Wired Headphones,2,11.99,12/26/19 16:35,"847 2nd St, Dallas, TX 75001" +303814,AAA Batteries (4-pack),1,2.99,12/07/19 22:10,"537 South St, San Francisco, CA 94016" +303815,Apple Airpods Headphones,1,150,12/07/19 16:10,"586 Dogwood St, Los Angeles, CA 90001" +303816,Apple Airpods Headphones,1,150,12/23/19 09:17,"761 13th St, Boston, MA 02215" +303817,Apple Airpods Headphones,1,150,12/26/19 15:35,"260 North St, San Francisco, CA 94016" +303818,AA Batteries (4-pack),1,3.84,12/03/19 03:22,"438 Church St, Dallas, TX 75001" +303819,AA Batteries (4-pack),1,3.84,12/10/19 22:00,"512 6th St, Boston, MA 02215" +303820,USB-C Charging Cable,1,11.95,12/10/19 09:13,"200 Center St, Boston, MA 02215" +303821,USB-C Charging Cable,1,11.95,12/22/19 06:47,"800 Lincoln St, Boston, MA 02215" +303822,Wired Headphones,1,11.99,12/16/19 21:06,"187 Willow St, Boston, MA 02215" +303823,Google Phone,1,600,12/04/19 11:16,"686 Cedar St, Boston, MA 02215" +303824,USB-C Charging Cable,1,11.95,12/08/19 11:26,"745 8th St, Boston, MA 02215" +303825,USB-C Charging Cable,1,11.95,12/31/19 20:37,"885 Jefferson St, Portland, OR 97035" +303826,34in Ultrawide Monitor,1,379.99,12/04/19 11:42,"500 River St, Seattle, WA 98101" +303827,Wired Headphones,1,11.99,12/06/19 16:13,"692 Park St, Boston, MA 02215" +303828,AA Batteries (4-pack),1,3.84,12/21/19 16:14,"692 Church St, San Francisco, CA 94016" +303829,AAA Batteries (4-pack),1,2.99,12/14/19 14:39,"510 Park St, San Francisco, CA 94016" +303830,Flatscreen TV,1,300,12/22/19 01:13,"524 Forest St, Seattle, WA 98101" +303831,AAA Batteries (4-pack),1,2.99,12/13/19 15:47,"853 Meadow St, San Francisco, CA 94016" +303832,27in 4K Gaming Monitor,1,389.99,12/24/19 20:50,"679 9th St, Portland, OR 97035" +303833,34in Ultrawide Monitor,1,379.99,12/07/19 09:24,"678 Highland St, Portland, OR 97035" +303834,Vareebadd Phone,1,400,12/07/19 14:51,"591 South St, Atlanta, GA 30301" +303834,Bose SoundSport Headphones,1,99.99,12/07/19 14:51,"591 South St, Atlanta, GA 30301" +303835,AA Batteries (4-pack),1,3.84,12/29/19 19:13,"272 Wilson St, Dallas, TX 75001" +303836,Bose SoundSport Headphones,1,99.99,12/16/19 13:32,"394 1st St, Los Angeles, CA 90001" +303837,iPhone,1,700,12/03/19 21:01,"625 2nd St, Dallas, TX 75001" +303838,AAA Batteries (4-pack),1,2.99,12/15/19 20:07,"34 Highland St, New York City, NY 10001" +303839,Lightning Charging Cable,1,14.95,12/18/19 14:37,"507 Elm St, Austin, TX 73301" +303840,USB-C Charging Cable,1,11.95,12/10/19 17:54,"410 1st St, New York City, NY 10001" +303841,Lightning Charging Cable,1,14.95,12/07/19 08:52,"844 River St, Los Angeles, CA 90001" +303842,34in Ultrawide Monitor,1,379.99,12/31/19 11:16,"433 Johnson St, Los Angeles, CA 90001" +303843,Lightning Charging Cable,1,14.95,12/11/19 21:17,"585 West St, San Francisco, CA 94016" +303844,Apple Airpods Headphones,1,150,12/20/19 08:52,"876 Washington St, New York City, NY 10001" +303845,USB-C Charging Cable,1,11.95,12/29/19 12:29,"866 Forest St, Dallas, TX 75001" +303846,Apple Airpods Headphones,1,150,12/20/19 09:48,"295 Lakeview St, San Francisco, CA 94016" +303847,Lightning Charging Cable,1,14.95,12/12/19 13:21,"629 River St, Boston, MA 02215" +303848,AA Batteries (4-pack),1,3.84,12/19/19 23:48,"352 Willow St, Los Angeles, CA 90001" +303849,Bose SoundSport Headphones,1,99.99,12/01/19 14:18,"140 Cedar St, New York City, NY 10001" +303850,Wired Headphones,1,11.99,12/30/19 05:40,"174 Church St, Atlanta, GA 30301" +303851,AA Batteries (4-pack),1,3.84,12/05/19 10:57,"201 South St, New York City, NY 10001" +303852,Google Phone,1,600,12/18/19 16:24,"667 11th St, San Francisco, CA 94016" +303853,Bose SoundSport Headphones,1,99.99,12/20/19 17:55,"193 Highland St, New York City, NY 10001" +303854,Lightning Charging Cable,1,14.95,12/11/19 18:15,"944 8th St, Los Angeles, CA 90001" +303855,Bose SoundSport Headphones,1,99.99,12/11/19 20:53,"373 Cedar St, Boston, MA 02215" +303856,Wired Headphones,1,11.99,12/30/19 15:07,"202 11th St, Dallas, TX 75001" +303857,USB-C Charging Cable,1,11.95,12/27/19 17:51,"295 Park St, Los Angeles, CA 90001" +303858,AAA Batteries (4-pack),1,2.99,12/15/19 20:37,"614 Center St, New York City, NY 10001" +303859,Wired Headphones,1,11.99,12/01/19 19:43,"692 12th St, Los Angeles, CA 90001" +303860,AAA Batteries (4-pack),1,2.99,12/22/19 03:03,"986 Main St, San Francisco, CA 94016" +303861,Bose SoundSport Headphones,1,99.99,12/26/19 15:46,"426 Pine St, Portland, OR 97035" +303862,USB-C Charging Cable,1,11.95,12/21/19 15:09,"965 2nd St, New York City, NY 10001" +303863,27in FHD Monitor,1,149.99,12/25/19 12:30,"885 Dogwood St, Los Angeles, CA 90001" +303864,Lightning Charging Cable,1,14.95,12/18/19 18:13,"192 Pine St, Atlanta, GA 30301" +303865,27in 4K Gaming Monitor,1,389.99,12/27/19 07:27,"410 West St, Boston, MA 02215" +303866,USB-C Charging Cable,1,11.95,12/21/19 13:33,"830 Meadow St, Atlanta, GA 30301" +303867,Google Phone,1,600,12/08/19 16:39,"186 Park St, San Francisco, CA 94016" +303867,USB-C Charging Cable,1,11.95,12/08/19 16:39,"186 Park St, San Francisco, CA 94016" +303868,Bose SoundSport Headphones,1,99.99,12/21/19 12:06,"775 West St, San Francisco, CA 94016" +303869,AA Batteries (4-pack),1,3.84,12/01/19 20:40,"660 13th St, Los Angeles, CA 90001" +303870,Lightning Charging Cable,1,14.95,12/16/19 15:11,"898 Chestnut St, San Francisco, CA 94016" +303871,Wired Headphones,1,11.99,12/07/19 12:57,"607 6th St, Los Angeles, CA 90001" +303872,Bose SoundSport Headphones,2,99.99,12/05/19 19:04,"144 Chestnut St, Austin, TX 73301" +303873,AA Batteries (4-pack),1,3.84,12/12/19 18:59,"241 9th St, Boston, MA 02215" +303874,ThinkPad Laptop,1,999.99,12/28/19 11:13,"10 West St, Dallas, TX 75001" +303875,AAA Batteries (4-pack),1,2.99,12/01/19 08:58,"815 13th St, Los Angeles, CA 90001" +303876,27in 4K Gaming Monitor,1,389.99,12/14/19 18:13,"709 River St, Dallas, TX 75001" +303877,Google Phone,1,600,12/29/19 10:05,"812 Maple St, Atlanta, GA 30301" +303878,34in Ultrawide Monitor,1,379.99,12/22/19 22:50,"644 12th St, Atlanta, GA 30301" +303879,Bose SoundSport Headphones,1,99.99,12/13/19 09:35,"921 Sunset St, Boston, MA 02215" +303880,AAA Batteries (4-pack),1,2.99,12/11/19 11:46,"578 West St, San Francisco, CA 94016" +303881,USB-C Charging Cable,1,11.95,12/22/19 22:20,"480 Madison St, Austin, TX 73301" +303882,AAA Batteries (4-pack),3,2.99,12/23/19 22:37,"726 Hickory St, Seattle, WA 98101" +303883,USB-C Charging Cable,1,11.95,12/13/19 13:52,"432 2nd St, Seattle, WA 98101" +303884,Lightning Charging Cable,1,14.95,12/30/19 18:13,"152 Cherry St, Los Angeles, CA 90001" +303885,Apple Airpods Headphones,1,150,12/28/19 20:27,"25 Sunset St, Boston, MA 02215" +303886,AAA Batteries (4-pack),4,2.99,12/15/19 17:00,"242 8th St, Austin, TX 73301" +303886,AA Batteries (4-pack),1,3.84,12/15/19 17:00,"242 8th St, Austin, TX 73301" +303887,AAA Batteries (4-pack),4,2.99,12/30/19 08:54,"306 Highland St, Los Angeles, CA 90001" +303888,Wired Headphones,1,11.99,12/09/19 10:55,"786 South St, San Francisco, CA 94016" +303889,20in Monitor,1,109.99,12/21/19 17:30,"992 Meadow St, San Francisco, CA 94016" +303890,ThinkPad Laptop,1,999.99,12/05/19 09:15,"586 Cherry St, Dallas, TX 75001" +303891,ThinkPad Laptop,1,999.99,12/12/19 08:24,"731 Cherry St, San Francisco, CA 94016" +303892,Lightning Charging Cable,1,14.95,12/18/19 17:51,"866 4th St, Boston, MA 02215" +303893,USB-C Charging Cable,1,11.95,12/17/19 13:35,"129 Spruce St, Portland, OR 97035" +303894,Lightning Charging Cable,1,14.95,12/21/19 17:22,"835 11th St, New York City, NY 10001" +303895,Apple Airpods Headphones,1,150,12/11/19 15:25,"608 11th St, Atlanta, GA 30301" +303896,Flatscreen TV,1,300,12/07/19 14:17,"509 Highland St, Los Angeles, CA 90001" +303897,Google Phone,1,600,12/07/19 07:56,"158 Pine St, Los Angeles, CA 90001" +303897,USB-C Charging Cable,1,11.95,12/07/19 07:56,"158 Pine St, Los Angeles, CA 90001" +303898,USB-C Charging Cable,1,11.95,12/16/19 17:51,"912 5th St, Portland, OR 97035" +303899,iPhone,1,700,12/22/19 17:14,"755 Spruce St, Austin, TX 73301" +303899,Lightning Charging Cable,1,14.95,12/22/19 17:14,"755 Spruce St, Austin, TX 73301" +303900,iPhone,1,700,12/24/19 13:00,"609 Cedar St, Portland, OR 97035" +303900,Lightning Charging Cable,1,14.95,12/24/19 13:00,"609 Cedar St, Portland, OR 97035" +303900,Wired Headphones,1,11.99,12/24/19 13:00,"609 Cedar St, Portland, OR 97035" +303901,20in Monitor,1,109.99,01/01/20 00:15,"318 Lincoln St, Seattle, WA 98101" +303902,AA Batteries (4-pack),1,3.84,12/12/19 21:37,"149 Cherry St, Los Angeles, CA 90001" +303903,Flatscreen TV,1,300,12/29/19 16:35,"67 6th St, Atlanta, GA 30301" +303904,USB-C Charging Cable,1,11.95,12/16/19 12:18,"392 Highland St, Boston, MA 02215" +303905,Google Phone,1,600,12/03/19 19:14,"399 Main St, New York City, NY 10001" +303905,USB-C Charging Cable,1,11.95,12/03/19 19:14,"399 Main St, New York City, NY 10001" +303906,Lightning Charging Cable,1,14.95,12/25/19 16:16,"29 Sunset St, Seattle, WA 98101" +303907,AA Batteries (4-pack),1,3.84,12/24/19 18:42,"202 12th St, Portland, OR 97035" +,,,,, +303908,USB-C Charging Cable,1,11.95,12/09/19 15:15,"408 Jackson St, Los Angeles, CA 90001" +303909,AAA Batteries (4-pack),1,2.99,12/09/19 17:04,"577 1st St, San Francisco, CA 94016" +303910,27in 4K Gaming Monitor,1,389.99,12/25/19 19:42,"984 Ridge St, New York City, NY 10001" +303911,USB-C Charging Cable,2,11.95,12/01/19 23:04,"347 13th St, Los Angeles, CA 90001" +303912,34in Ultrawide Monitor,1,379.99,12/05/19 16:40,"542 Sunset St, San Francisco, CA 94016" +303913,20in Monitor,1,109.99,12/13/19 16:13,"978 Elm St, San Francisco, CA 94016" +303914,AA Batteries (4-pack),2,3.84,12/29/19 10:05,"577 South St, Seattle, WA 98101" +303915,USB-C Charging Cable,1,11.95,12/13/19 14:05,"514 Cherry St, Portland, OR 97035" +303916,Lightning Charging Cable,1,14.95,12/04/19 19:59,"718 Johnson St, Atlanta, GA 30301" +303917,Lightning Charging Cable,1,14.95,12/13/19 08:40,"753 12th St, New York City, NY 10001" +303918,AAA Batteries (4-pack),1,2.99,12/27/19 10:59,"529 Church St, Boston, MA 02215" +303919,USB-C Charging Cable,1,11.95,12/30/19 05:58,"235 8th St, Boston, MA 02215" +303920,AAA Batteries (4-pack),1,2.99,12/29/19 23:03,"697 Dogwood St, San Francisco, CA 94016" +303921,Apple Airpods Headphones,1,150,12/15/19 10:51,"240 Adams St, Los Angeles, CA 90001" +303922,Lightning Charging Cable,1,14.95,12/14/19 23:37,"617 Elm St, Los Angeles, CA 90001" +303923,iPhone,1,700,12/09/19 16:40,"931 Sunset St, Seattle, WA 98101" +303923,Apple Airpods Headphones,1,150,12/09/19 16:40,"931 Sunset St, Seattle, WA 98101" +303924,Bose SoundSport Headphones,1,99.99,12/01/19 15:25,"840 Johnson St, Boston, MA 02215" +303925,27in FHD Monitor,1,149.99,12/08/19 02:18,"815 11th St, Los Angeles, CA 90001" +303926,Bose SoundSport Headphones,1,99.99,12/20/19 22:49,"687 1st St, Dallas, TX 75001" +303926,ThinkPad Laptop,1,999.99,12/20/19 22:49,"687 1st St, Dallas, TX 75001" +303927,USB-C Charging Cable,1,11.95,12/22/19 17:56,"122 4th St, Dallas, TX 75001" +303928,Macbook Pro Laptop,1,1700,12/21/19 21:23,"94 South St, Seattle, WA 98101" +303929,Bose SoundSport Headphones,1,99.99,12/04/19 12:42,"622 10th St, San Francisco, CA 94016" +303930,ThinkPad Laptop,1,999.99,12/22/19 10:35,"67 Sunset St, Atlanta, GA 30301" +303931,AA Batteries (4-pack),1,3.84,12/26/19 00:00,"206 Washington St, Portland, OR 97035" +303932,AAA Batteries (4-pack),2,2.99,12/10/19 18:48,"729 Johnson St, Los Angeles, CA 90001" +303933,Bose SoundSport Headphones,1,99.99,12/10/19 11:47,"640 Willow St, Boston, MA 02215" +303934,AAA Batteries (4-pack),1,2.99,12/18/19 22:52,"748 2nd St, Seattle, WA 98101" +303935,34in Ultrawide Monitor,1,379.99,12/27/19 22:33,"504 9th St, New York City, NY 10001" +303936,Bose SoundSport Headphones,1,99.99,12/20/19 17:05,"674 Park St, Portland, OR 97035" +303937,27in FHD Monitor,1,149.99,12/25/19 18:42,"637 Spruce St, Seattle, WA 98101" +303938,Apple Airpods Headphones,1,150,12/12/19 10:14,"585 West St, San Francisco, CA 94016" +303939,USB-C Charging Cable,1,11.95,12/06/19 06:15,"17 Center St, San Francisco, CA 94016" +303940,AAA Batteries (4-pack),1,2.99,12/17/19 23:48,"873 Cherry St, Dallas, TX 75001" +303941,USB-C Charging Cable,1,11.95,12/22/19 21:35,"869 Hill St, Boston, MA 02215" +303942,Wired Headphones,1,11.99,12/02/19 16:47,"336 Pine St, Portland, OR 97035" +303943,20in Monitor,1,109.99,12/14/19 18:53,"978 Main St, Los Angeles, CA 90001" +303944,Macbook Pro Laptop,1,1700,12/08/19 21:49,"177 Walnut St, New York City, NY 10001" +303945,USB-C Charging Cable,1,11.95,12/23/19 17:40,"789 12th St, New York City, NY 10001" +303946,USB-C Charging Cable,1,11.95,12/06/19 19:44,"450 North St, Boston, MA 02215" +303947,27in 4K Gaming Monitor,1,389.99,12/03/19 11:35,"392 Washington St, New York City, NY 10001" +303948,USB-C Charging Cable,1,11.95,12/29/19 11:29,"24 Lincoln St, Austin, TX 73301" +303949,34in Ultrawide Monitor,1,379.99,12/10/19 12:10,"947 Meadow St, Atlanta, GA 30301" +303950,AAA Batteries (4-pack),3,2.99,12/25/19 19:58,"595 2nd St, New York City, NY 10001" +303951,Lightning Charging Cable,1,14.95,12/10/19 15:58,"497 North St, New York City, NY 10001" +303952,AA Batteries (4-pack),1,3.84,12/27/19 21:17,"785 Center St, Seattle, WA 98101" +303953,27in FHD Monitor,1,149.99,12/17/19 11:38,"844 Adams St, San Francisco, CA 94016" +303954,Flatscreen TV,1,300,12/27/19 10:05,"542 Madison St, San Francisco, CA 94016" +303955,Macbook Pro Laptop,1,1700,12/21/19 19:54,"922 Johnson St, Boston, MA 02215" +303956,27in 4K Gaming Monitor,1,389.99,12/28/19 12:38,"946 Walnut St, Los Angeles, CA 90001" +303957,Bose SoundSport Headphones,1,99.99,12/20/19 12:41,"345 8th St, Austin, TX 73301" +303958,Lightning Charging Cable,1,14.95,12/08/19 16:23,"580 Washington St, Los Angeles, CA 90001" +303959,Flatscreen TV,1,300,12/24/19 20:00,"691 Johnson St, Atlanta, GA 30301" +303960,AAA Batteries (4-pack),1,2.99,12/03/19 15:13,"401 7th St, Boston, MA 02215" +303961,Wired Headphones,1,11.99,12/15/19 16:08,"198 Jefferson St, Atlanta, GA 30301" +303962,Wired Headphones,1,11.99,12/14/19 15:46,"766 5th St, San Francisco, CA 94016" +303963,Wired Headphones,1,11.99,12/20/19 19:12,"818 Walnut St, Los Angeles, CA 90001" +303964,Lightning Charging Cable,1,14.95,12/25/19 23:05,"218 Hill St, Seattle, WA 98101" +303965,AAA Batteries (4-pack),1,2.99,12/14/19 11:47,"533 Forest St, Portland, OR 97035" +303966,Lightning Charging Cable,1,14.95,12/04/19 21:51,"133 Lincoln St, Boston, MA 02215" +303967,Macbook Pro Laptop,1,1700,12/19/19 08:23,"529 Elm St, San Francisco, CA 94016" +303968,Lightning Charging Cable,1,14.95,12/14/19 12:01,"750 9th St, Los Angeles, CA 90001" +303969,20in Monitor,1,109.99,12/04/19 10:08,"997 Wilson St, Boston, MA 02215" +303970,Bose SoundSport Headphones,1,99.99,12/18/19 21:07,"443 Center St, New York City, NY 10001" +303971,AAA Batteries (4-pack),1,2.99,12/14/19 11:45,"671 Walnut St, Atlanta, GA 30301" +303972,AAA Batteries (4-pack),1,2.99,12/09/19 08:28,"273 Meadow St, San Francisco, CA 94016" +303973,Bose SoundSport Headphones,1,99.99,12/13/19 13:28,"242 Hickory St, Atlanta, GA 30301" +303974,AAA Batteries (4-pack),2,2.99,12/14/19 13:18,"679 4th St, San Francisco, CA 94016" +303975,ThinkPad Laptop,1,999.99,12/18/19 22:04,"188 Johnson St, Portland, OR 97035" +303976,27in FHD Monitor,1,149.99,12/04/19 14:40,"987 4th St, Boston, MA 02215" +303977,AAA Batteries (4-pack),1,2.99,12/14/19 22:27,"363 Maple St, Seattle, WA 98101" +303978,USB-C Charging Cable,1,11.95,12/30/19 18:19,"146 1st St, San Francisco, CA 94016" +303979,Wired Headphones,1,11.99,12/10/19 23:25,"952 10th St, Austin, TX 73301" +303980,iPhone,1,700,12/01/19 16:56,"911 4th St, Los Angeles, CA 90001" +303981,Apple Airpods Headphones,1,150,12/09/19 11:14,"721 Adams St, Boston, MA 02215" +303982,34in Ultrawide Monitor,1,379.99,12/31/19 16:32,"813 Dogwood St, Boston, MA 02215" +303983,34in Ultrawide Monitor,1,379.99,12/16/19 20:15,"149 Wilson St, Los Angeles, CA 90001" +303984,USB-C Charging Cable,1,11.95,12/18/19 09:03,"366 Johnson St, San Francisco, CA 94016" +303985,USB-C Charging Cable,1,11.95,12/23/19 14:44,"17 Meadow St, Boston, MA 02215" +303986,LG Washing Machine,1,600.0,12/21/19 12:33,"399 Madison St, San Francisco, CA 94016" +303987,USB-C Charging Cable,1,11.95,12/15/19 19:00,"228 Jackson St, Portland, OR 97035" +303988,AAA Batteries (4-pack),1,2.99,12/11/19 18:57,"953 Center St, Los Angeles, CA 90001" +303989,Bose SoundSport Headphones,1,99.99,12/05/19 18:48,"752 South St, Austin, TX 73301" +303990,LG Dryer,1,600.0,12/02/19 19:19,"435 4th St, New York City, NY 10001" +303991,iPhone,1,700,12/06/19 20:53,"549 Hickory St, Austin, TX 73301" +303992,USB-C Charging Cable,1,11.95,12/23/19 14:16,"576 Walnut St, San Francisco, CA 94016" +303993,AA Batteries (4-pack),1,3.84,12/26/19 13:51,"790 North St, Los Angeles, CA 90001" +303994,USB-C Charging Cable,1,11.95,12/13/19 05:33,"665 Ridge St, Seattle, WA 98101" +303995,AA Batteries (4-pack),1,3.84,12/12/19 15:58,"116 Chestnut St, Dallas, TX 75001" +303995,Lightning Charging Cable,1,14.95,12/12/19 15:58,"116 Chestnut St, Dallas, TX 75001" +303996,ThinkPad Laptop,1,999.99,12/16/19 19:38,"966 North St, Austin, TX 73301" +303997,USB-C Charging Cable,1,11.95,12/30/19 00:28,"658 Ridge St, Portland, OR 97035" +303998,AAA Batteries (4-pack),3,2.99,12/20/19 13:34,"277 Meadow St, San Francisco, CA 94016" +303999,27in FHD Monitor,1,149.99,12/04/19 11:43,"987 14th St, Portland, OR 97035" +304000,AAA Batteries (4-pack),1,2.99,12/16/19 22:43,"490 Main St, Los Angeles, CA 90001" +304001,Lightning Charging Cable,1,14.95,12/17/19 11:34,"543 Madison St, San Francisco, CA 94016" +304002,Apple Airpods Headphones,1,150,12/04/19 22:36,"835 Johnson St, Los Angeles, CA 90001" +304003,Bose SoundSport Headphones,1,99.99,12/03/19 19:11,"453 10th St, Los Angeles, CA 90001" +304004,USB-C Charging Cable,2,11.95,12/20/19 11:46,"181 12th St, San Francisco, CA 94016" +304005,USB-C Charging Cable,1,11.95,12/23/19 19:13,"367 Jefferson St, Los Angeles, CA 90001" +304006,AA Batteries (4-pack),3,3.84,12/15/19 02:13,"8 11th St, San Francisco, CA 94016" +304007,USB-C Charging Cable,1,11.95,12/14/19 20:45,"860 Maple St, Los Angeles, CA 90001" +304008,34in Ultrawide Monitor,1,379.99,12/13/19 22:39,"238 Jackson St, Boston, MA 02215" +304009,iPhone,1,700,12/30/19 17:37,"107 Chestnut St, San Francisco, CA 94016" +304010,Apple Airpods Headphones,1,150,12/22/19 14:34,"232 Jackson St, San Francisco, CA 94016" +304011,USB-C Charging Cable,1,11.95,12/29/19 12:54,"124 West St, Seattle, WA 98101" +304011,Wired Headphones,2,11.99,12/29/19 12:54,"124 West St, Seattle, WA 98101" +304012,AA Batteries (4-pack),1,3.84,12/21/19 17:14,"375 Johnson St, Los Angeles, CA 90001" +304013,AA Batteries (4-pack),2,3.84,12/21/19 12:53,"504 Lake St, San Francisco, CA 94016" +304014,USB-C Charging Cable,2,11.95,12/29/19 14:38,"363 8th St, San Francisco, CA 94016" +304015,Flatscreen TV,1,300,12/09/19 14:35,"25 Main St, Los Angeles, CA 90001" +304016,USB-C Charging Cable,1,11.95,12/20/19 10:37,"977 Washington St, Los Angeles, CA 90001" +304017,AA Batteries (4-pack),1,3.84,12/08/19 01:04,"178 Highland St, New York City, NY 10001" +304018,Bose SoundSport Headphones,1,99.99,12/05/19 14:51,"525 Church St, San Francisco, CA 94016" +304019,Apple Airpods Headphones,1,150,12/16/19 09:19,"765 Elm St, Dallas, TX 75001" +304020,Vareebadd Phone,1,400,12/29/19 19:25,"191 Park St, Portland, ME 04101" +304020,34in Ultrawide Monitor,1,379.99,12/29/19 19:25,"191 Park St, Portland, ME 04101" +304021,USB-C Charging Cable,1,11.95,12/02/19 16:54,"427 Center St, Atlanta, GA 30301" +304022,LG Dryer,1,600.0,12/17/19 17:41,"733 4th St, San Francisco, CA 94016" +304023,27in 4K Gaming Monitor,1,389.99,12/05/19 19:32,"4 Pine St, Los Angeles, CA 90001" +304024,Lightning Charging Cable,1,14.95,12/20/19 11:24,"115 North St, Dallas, TX 75001" +304025,27in 4K Gaming Monitor,1,389.99,12/16/19 16:08,"328 5th St, Los Angeles, CA 90001" +304026,iPhone,1,700,12/05/19 15:48,"303 Hickory St, Austin, TX 73301" +304027,Google Phone,1,600,12/16/19 23:23,"89 Lake St, New York City, NY 10001" +304028,USB-C Charging Cable,1,11.95,12/23/19 10:51,"421 Hill St, New York City, NY 10001" +304029,iPhone,1,700,12/30/19 12:06,"878 Cherry St, New York City, NY 10001" +304030,Google Phone,1,600,12/24/19 12:23,"822 Sunset St, Los Angeles, CA 90001" +304031,34in Ultrawide Monitor,1,379.99,12/24/19 09:46,"845 7th St, Seattle, WA 98101" +304032,34in Ultrawide Monitor,1,379.99,12/12/19 10:31,"824 Walnut St, San Francisco, CA 94016" +304033,Lightning Charging Cable,1,14.95,01/01/20 02:30,"94 Cedar St, Austin, TX 73301" +304034,AAA Batteries (4-pack),1,2.99,12/11/19 22:34,"2 Madison St, Boston, MA 02215" +304035,Lightning Charging Cable,1,14.95,12/22/19 08:34,"751 Forest St, Seattle, WA 98101" +304036,ThinkPad Laptop,1,999.99,12/02/19 12:29,"582 Meadow St, New York City, NY 10001" +304037,Apple Airpods Headphones,1,150,12/28/19 12:19,"632 Cherry St, Austin, TX 73301" +304038,AA Batteries (4-pack),1,3.84,12/25/19 12:03,"312 Hill St, Austin, TX 73301" +304039,Google Phone,1,600,12/30/19 14:35,"641 10th St, New York City, NY 10001" +304040,AAA Batteries (4-pack),1,2.99,12/03/19 10:42,"408 1st St, Boston, MA 02215" +304041,AAA Batteries (4-pack),1,2.99,12/20/19 15:23,"167 Cedar St, San Francisco, CA 94016" +304042,Lightning Charging Cable,1,14.95,12/13/19 03:37,"59 Hill St, San Francisco, CA 94016" +304043,USB-C Charging Cable,1,11.95,12/24/19 18:41,"584 14th St, New York City, NY 10001" +304044,AAA Batteries (4-pack),1,2.99,12/11/19 14:04,"369 Meadow St, San Francisco, CA 94016" +304045,Bose SoundSport Headphones,1,99.99,12/17/19 10:07,"622 Chestnut St, Atlanta, GA 30301" +304046,AAA Batteries (4-pack),2,2.99,12/21/19 15:36,"210 11th St, San Francisco, CA 94016" +304047,27in FHD Monitor,1,149.99,12/24/19 09:49,"251 North St, San Francisco, CA 94016" +304048,27in FHD Monitor,1,149.99,12/21/19 08:19,"119 West St, Seattle, WA 98101" +304049,Lightning Charging Cable,1,14.95,12/01/19 18:01,"136 Lake St, San Francisco, CA 94016" +304050,AA Batteries (4-pack),2,3.84,12/22/19 14:22,"898 2nd St, Dallas, TX 75001" +304051,Lightning Charging Cable,1,14.95,12/03/19 17:44,"50 Wilson St, Atlanta, GA 30301" +304052,Apple Airpods Headphones,1,150,12/12/19 13:46,"906 Adams St, Boston, MA 02215" +304053,Apple Airpods Headphones,1,150,12/25/19 10:03,"513 4th St, San Francisco, CA 94016" +304054,Wired Headphones,1,11.99,12/11/19 23:05,"83 Meadow St, Austin, TX 73301" +304055,Apple Airpods Headphones,1,150,12/25/19 15:13,"900 Hill St, Los Angeles, CA 90001" +304056,USB-C Charging Cable,2,11.95,12/29/19 12:31,"227 Madison St, Dallas, TX 75001" +304057,Lightning Charging Cable,1,14.95,12/06/19 12:57,"559 8th St, San Francisco, CA 94016" +304058,USB-C Charging Cable,1,11.95,12/29/19 14:01,"908 Lincoln St, Atlanta, GA 30301" +304059,Apple Airpods Headphones,1,150,12/22/19 13:18,"758 12th St, San Francisco, CA 94016" +304060,20in Monitor,1,109.99,12/02/19 20:30,"924 Meadow St, New York City, NY 10001" +304061,27in 4K Gaming Monitor,1,389.99,12/18/19 10:26,"366 Forest St, Los Angeles, CA 90001" +304062,Apple Airpods Headphones,1,150,12/24/19 16:22,"671 Lincoln St, Atlanta, GA 30301" +304063,34in Ultrawide Monitor,1,379.99,12/05/19 22:28,"444 Elm St, Dallas, TX 75001" +304064,ThinkPad Laptop,1,999.99,12/07/19 23:45,"132 Highland St, New York City, NY 10001" +304065,AAA Batteries (4-pack),2,2.99,12/08/19 22:45,"759 Cedar St, San Francisco, CA 94016" +304066,AAA Batteries (4-pack),1,2.99,12/23/19 13:29,"307 Meadow St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +304067,LG Dryer,1,600.0,12/15/19 14:32,"936 4th St, Austin, TX 73301" +304068,Bose SoundSport Headphones,1,99.99,12/25/19 23:46,"8 Johnson St, Seattle, WA 98101" +304069,Vareebadd Phone,1,400,12/27/19 09:14,"459 Cedar St, Seattle, WA 98101" +304070,Wired Headphones,1,11.99,12/18/19 13:50,"805 Dogwood St, Boston, MA 02215" +304071,Wired Headphones,1,11.99,12/16/19 21:25,"868 River St, Dallas, TX 75001" +304072,USB-C Charging Cable,1,11.95,12/05/19 12:59,"462 North St, Portland, OR 97035" +304073,AAA Batteries (4-pack),1,2.99,12/18/19 10:15,"350 Center St, Seattle, WA 98101" +304074,Lightning Charging Cable,1,14.95,12/15/19 14:25,"150 River St, Seattle, WA 98101" +304075,20in Monitor,2,109.99,12/11/19 22:00,"539 Highland St, Atlanta, GA 30301" +304076,USB-C Charging Cable,1,11.95,12/24/19 16:34,"590 Wilson St, New York City, NY 10001" +304076,Apple Airpods Headphones,1,150,12/24/19 16:34,"590 Wilson St, New York City, NY 10001" +304077,Apple Airpods Headphones,1,150,12/31/19 08:21,"126 Forest St, Los Angeles, CA 90001" +304078,Wired Headphones,1,11.99,12/17/19 16:02,"624 Lake St, Dallas, TX 75001" +304079,Macbook Pro Laptop,1,1700,12/06/19 09:01,"951 Lake St, Seattle, WA 98101" +304080,Wired Headphones,1,11.99,12/17/19 17:02,"212 Highland St, Austin, TX 73301" +304081,AAA Batteries (4-pack),1,2.99,12/07/19 14:39,"951 5th St, Atlanta, GA 30301" +304081,27in FHD Monitor,1,149.99,12/07/19 14:39,"951 5th St, Atlanta, GA 30301" +304082,Flatscreen TV,1,300,12/16/19 14:42,"252 12th St, Seattle, WA 98101" +304083,AA Batteries (4-pack),2,3.84,12/17/19 07:55,"193 Willow St, San Francisco, CA 94016" +304084,Lightning Charging Cable,1,14.95,12/20/19 22:02,"641 Chestnut St, San Francisco, CA 94016" +304085,Bose SoundSport Headphones,1,99.99,12/20/19 22:38,"491 14th St, Dallas, TX 75001" +304086,Lightning Charging Cable,1,14.95,12/14/19 17:25,"93 11th St, Atlanta, GA 30301" +304087,USB-C Charging Cable,1,11.95,12/19/19 18:24,"525 Maple St, Los Angeles, CA 90001" +304088,Wired Headphones,3,11.99,12/18/19 05:39,"17 Church St, San Francisco, CA 94016" +304089,Lightning Charging Cable,1,14.95,12/15/19 00:41,"376 North St, Seattle, WA 98101" +304090,Lightning Charging Cable,1,14.95,12/07/19 09:06,"188 12th St, Los Angeles, CA 90001" +304091,Wired Headphones,1,11.99,12/29/19 20:48,"385 Adams St, San Francisco, CA 94016" +304092,34in Ultrawide Monitor,1,379.99,12/28/19 19:26,"486 Lake St, Austin, TX 73301" +304093,27in FHD Monitor,1,149.99,12/28/19 21:01,"112 Sunset St, Boston, MA 02215" +304094,Apple Airpods Headphones,1,150,12/02/19 09:28,"577 Church St, Los Angeles, CA 90001" +304095,AA Batteries (4-pack),1,3.84,12/12/19 11:15,"128 2nd St, San Francisco, CA 94016" +304096,USB-C Charging Cable,1,11.95,12/28/19 21:21,"120 Washington St, Seattle, WA 98101" +304097,AAA Batteries (4-pack),2,2.99,12/28/19 18:38,"467 Walnut St, Los Angeles, CA 90001" +304098,Apple Airpods Headphones,1,150,12/26/19 22:58,"307 Center St, Atlanta, GA 30301" +304099,iPhone,1,700,12/19/19 00:47,"305 Maple St, Los Angeles, CA 90001" +304100,27in FHD Monitor,1,149.99,12/25/19 21:07,"398 Meadow St, San Francisco, CA 94016" +304101,AAA Batteries (4-pack),1,2.99,12/25/19 11:49,"773 Center St, Dallas, TX 75001" +304102,27in FHD Monitor,1,149.99,12/20/19 12:03,"799 Adams St, Boston, MA 02215" +304103,Google Phone,1,600,12/25/19 10:58,"814 Wilson St, Boston, MA 02215" +304104,AAA Batteries (4-pack),2,2.99,12/08/19 22:20,"515 11th St, Boston, MA 02215" +304105,ThinkPad Laptop,1,999.99,12/29/19 22:56,"469 Dogwood St, San Francisco, CA 94016" +304106,Google Phone,1,600,12/25/19 06:08,"968 Center St, Boston, MA 02215" +304107,AAA Batteries (4-pack),1,2.99,12/16/19 10:34,"504 Johnson St, New York City, NY 10001" +304108,Lightning Charging Cable,1,14.95,12/08/19 20:47,"527 Adams St, Portland, ME 04101" +304109,USB-C Charging Cable,1,11.95,12/16/19 09:25,"829 9th St, San Francisco, CA 94016" +304110,Wired Headphones,1,11.99,12/29/19 07:21,"821 Highland St, San Francisco, CA 94016" +304111,AAA Batteries (4-pack),2,2.99,12/10/19 23:46,"881 Sunset St, Boston, MA 02215" +304112,AAA Batteries (4-pack),1,2.99,12/07/19 11:30,"949 Washington St, Boston, MA 02215" +304113,AAA Batteries (4-pack),1,2.99,12/25/19 12:46,"459 Madison St, San Francisco, CA 94016" +304114,Wired Headphones,1,11.99,12/11/19 05:04,"370 5th St, San Francisco, CA 94016" +304115,Bose SoundSport Headphones,1,99.99,12/12/19 08:50,"793 Hickory St, Atlanta, GA 30301" +304116,Lightning Charging Cable,1,14.95,12/02/19 23:43,"30 Maple St, Portland, ME 04101" +304117,USB-C Charging Cable,1,11.95,12/14/19 18:14,"461 5th St, San Francisco, CA 94016" +304118,Apple Airpods Headphones,1,150,12/24/19 17:45,"176 Willow St, Atlanta, GA 30301" +304119,27in 4K Gaming Monitor,1,389.99,12/10/19 22:26,"852 River St, Dallas, TX 75001" +304120,USB-C Charging Cable,1,11.95,12/06/19 15:17,"716 Forest St, San Francisco, CA 94016" +304121,USB-C Charging Cable,1,11.95,12/04/19 16:27,"685 1st St, Los Angeles, CA 90001" +304122,AAA Batteries (4-pack),2,2.99,12/25/19 06:42,"931 7th St, Seattle, WA 98101" +304123,Lightning Charging Cable,1,14.95,12/23/19 23:03,"922 Lake St, San Francisco, CA 94016" +304124,USB-C Charging Cable,1,11.95,12/11/19 20:55,"865 4th St, San Francisco, CA 94016" +304125,Macbook Pro Laptop,1,1700,12/07/19 13:22,"962 Maple St, San Francisco, CA 94016" +304126,Vareebadd Phone,1,400,12/18/19 21:04,"716 Highland St, Austin, TX 73301" +304126,USB-C Charging Cable,1,11.95,12/18/19 21:04,"716 Highland St, Austin, TX 73301" +304127,AAA Batteries (4-pack),1,2.99,12/29/19 11:35,"141 Church St, Los Angeles, CA 90001" +304128,Apple Airpods Headphones,1,150,12/11/19 10:28,"958 14th St, New York City, NY 10001" +304129,AAA Batteries (4-pack),2,2.99,12/13/19 10:07,"418 West St, Dallas, TX 75001" +304130,Apple Airpods Headphones,1,150,12/24/19 23:18,"99 9th St, San Francisco, CA 94016" +304131,Apple Airpods Headphones,1,150,12/17/19 07:21,"102 12th St, New York City, NY 10001" +304132,Flatscreen TV,1,300,12/10/19 21:01,"610 13th St, Atlanta, GA 30301" +304133,Bose SoundSport Headphones,1,99.99,12/31/19 16:02,"585 Hickory St, San Francisco, CA 94016" +304134,Apple Airpods Headphones,1,150,12/14/19 14:16,"630 Forest St, Los Angeles, CA 90001" +304135,USB-C Charging Cable,1,11.95,12/22/19 11:05,"528 Park St, Seattle, WA 98101" +304136,Lightning Charging Cable,1,14.95,12/26/19 17:07,"339 8th St, Boston, MA 02215" +304137,Apple Airpods Headphones,1,150,12/07/19 12:58,"549 Spruce St, San Francisco, CA 94016" +304138,Apple Airpods Headphones,1,150,12/22/19 14:17,"762 Forest St, San Francisco, CA 94016" +304139,Bose SoundSport Headphones,1,99.99,12/05/19 18:43,"572 South St, Los Angeles, CA 90001" +304140,Lightning Charging Cable,1,14.95,12/11/19 09:45,"754 4th St, Los Angeles, CA 90001" +304141,Wired Headphones,1,11.99,12/11/19 14:07,"775 Park St, Atlanta, GA 30301" +304142,Wired Headphones,1,11.99,12/31/19 22:20,"783 Walnut St, Boston, MA 02215" +304143,Macbook Pro Laptop,1,1700,12/03/19 11:37,"668 Meadow St, New York City, NY 10001" +304144,AAA Batteries (4-pack),2,2.99,12/19/19 13:08,"967 Center St, Portland, ME 04101" +304145,Flatscreen TV,1,300,12/09/19 12:48,"182 9th St, Los Angeles, CA 90001" +304146,27in FHD Monitor,1,149.99,12/10/19 11:16,"533 South St, San Francisco, CA 94016" +304147,AA Batteries (4-pack),2,3.84,12/06/19 19:35,"357 Hill St, Seattle, WA 98101" +304148,27in FHD Monitor,1,149.99,12/07/19 16:30,"244 7th St, New York City, NY 10001" +304149,Bose SoundSport Headphones,1,99.99,12/29/19 12:25,"862 Maple St, Los Angeles, CA 90001" +304150,Google Phone,1,600,12/17/19 00:54,"425 Lake St, San Francisco, CA 94016" +304151,Apple Airpods Headphones,1,150,12/19/19 21:31,"856 Washington St, Atlanta, GA 30301" +304152,AA Batteries (4-pack),1,3.84,12/13/19 20:28,"967 Willow St, Austin, TX 73301" +304153,Apple Airpods Headphones,1,150,12/09/19 12:33,"52 Dogwood St, New York City, NY 10001" +304154,27in 4K Gaming Monitor,1,389.99,12/28/19 21:58,"413 Hickory St, New York City, NY 10001" +304155,ThinkPad Laptop,1,999.99,12/05/19 01:16,"384 Meadow St, New York City, NY 10001" +304156,AAA Batteries (4-pack),1,2.99,12/19/19 18:11,"691 Washington St, New York City, NY 10001" +304157,USB-C Charging Cable,2,11.95,12/13/19 00:12,"721 Willow St, Los Angeles, CA 90001" +304158,Wired Headphones,1,11.99,12/15/19 19:18,"753 2nd St, Seattle, WA 98101" +304159,USB-C Charging Cable,1,11.95,12/31/19 16:20,"250 Sunset St, San Francisco, CA 94016" +304160,Vareebadd Phone,1,400,12/15/19 11:39,"917 5th St, New York City, NY 10001" +304160,Wired Headphones,1,11.99,12/15/19 11:39,"917 5th St, New York City, NY 10001" +304161,Vareebadd Phone,1,400,12/23/19 18:59,"109 6th St, Atlanta, GA 30301" +304161,Wired Headphones,1,11.99,12/23/19 18:59,"109 6th St, Atlanta, GA 30301" +304162,27in 4K Gaming Monitor,1,389.99,12/29/19 18:03,"624 Johnson St, Los Angeles, CA 90001" +304163,AAA Batteries (4-pack),1,2.99,12/06/19 01:09,"318 13th St, Seattle, WA 98101" +304164,27in 4K Gaming Monitor,1,389.99,12/18/19 09:49,"806 West St, New York City, NY 10001" +304165,ThinkPad Laptop,1,999.99,12/21/19 09:44,"356 6th St, Dallas, TX 75001" +304166,Macbook Pro Laptop,1,1700,12/05/19 22:49,"459 1st St, Atlanta, GA 30301" +304167,Wired Headphones,1,11.99,12/30/19 09:08,"731 Church St, New York City, NY 10001" +304168,Wired Headphones,2,11.99,12/24/19 10:57,"684 Cedar St, Portland, OR 97035" +304169,AA Batteries (4-pack),1,3.84,12/05/19 20:17,"746 Washington St, Boston, MA 02215" +304170,USB-C Charging Cable,1,11.95,12/17/19 19:40,"802 Lake St, Los Angeles, CA 90001" +304171,Wired Headphones,1,11.99,12/05/19 12:27,"409 Center St, Los Angeles, CA 90001" +304172,iPhone,1,700,12/02/19 12:26,"322 9th St, Los Angeles, CA 90001" +304173,Wired Headphones,1,11.99,12/21/19 08:44,"406 10th St, San Francisco, CA 94016" +304174,Macbook Pro Laptop,1,1700,12/14/19 19:26,"961 10th St, Boston, MA 02215" +304175,Lightning Charging Cable,1,14.95,12/28/19 18:52,"968 Lakeview St, San Francisco, CA 94016" +304176,Wired Headphones,1,11.99,12/19/19 23:31,"551 Hickory St, Atlanta, GA 30301" +304177,AA Batteries (4-pack),1,3.84,12/13/19 21:13,"401 Washington St, Los Angeles, CA 90001" +304178,AA Batteries (4-pack),1,3.84,12/21/19 15:41,"233 Main St, Seattle, WA 98101" +304179,Wired Headphones,1,11.99,12/02/19 13:22,"311 Madison St, Atlanta, GA 30301" +304180,Macbook Pro Laptop,1,1700,12/11/19 18:23,"277 Jefferson St, Boston, MA 02215" +304181,Apple Airpods Headphones,1,150,12/26/19 23:39,"942 1st St, San Francisco, CA 94016" +304182,Google Phone,1,600,12/19/19 10:59,"142 Cherry St, Los Angeles, CA 90001" +304183,AAA Batteries (4-pack),1,2.99,12/08/19 03:06,"571 Center St, New York City, NY 10001" +304184,AA Batteries (4-pack),1,3.84,12/08/19 00:12,"172 13th St, San Francisco, CA 94016" +304185,AAA Batteries (4-pack),1,2.99,12/14/19 18:08,"309 Hickory St, Atlanta, GA 30301" +304186,USB-C Charging Cable,1,11.95,12/19/19 17:02,"343 Elm St, San Francisco, CA 94016" +304187,AAA Batteries (4-pack),2,2.99,12/17/19 20:15,"403 Willow St, Seattle, WA 98101" +304188,AA Batteries (4-pack),2,3.84,12/08/19 12:25,"135 Church St, Dallas, TX 75001" +304189,Apple Airpods Headphones,1,150,12/14/19 20:23,"357 Jefferson St, Seattle, WA 98101" +304190,27in 4K Gaming Monitor,1,389.99,12/30/19 18:08,"909 Main St, Portland, OR 97035" +304191,AAA Batteries (4-pack),1,2.99,12/15/19 22:05,"721 Walnut St, Los Angeles, CA 90001" +304192,AA Batteries (4-pack),1,3.84,12/31/19 15:32,"438 Johnson St, Atlanta, GA 30301" +304193,USB-C Charging Cable,1,11.95,12/31/19 11:08,"58 North St, Los Angeles, CA 90001" +304194,Google Phone,1,600,12/10/19 15:48,"76 11th St, New York City, NY 10001" +304194,USB-C Charging Cable,1,11.95,12/10/19 15:48,"76 11th St, New York City, NY 10001" +304195,Wired Headphones,2,11.99,12/14/19 20:30,"652 2nd St, Austin, TX 73301" +304196,Bose SoundSport Headphones,1,99.99,12/27/19 12:50,"964 West St, Los Angeles, CA 90001" +304197,AA Batteries (4-pack),1,3.84,12/16/19 17:41,"519 Church St, Seattle, WA 98101" +304197,Lightning Charging Cable,1,14.95,12/16/19 17:41,"519 Church St, Seattle, WA 98101" +304198,34in Ultrawide Monitor,1,379.99,12/18/19 15:20,"825 Sunset St, Seattle, WA 98101" +304199,Lightning Charging Cable,1,14.95,12/07/19 13:03,"165 10th St, Los Angeles, CA 90001" +304200,27in FHD Monitor,1,149.99,12/17/19 20:15,"468 Madison St, Boston, MA 02215" +304201,USB-C Charging Cable,1,11.95,12/13/19 12:21,"106 Dogwood St, San Francisco, CA 94016" +304202,Wired Headphones,1,11.99,12/04/19 21:57,"565 Willow St, San Francisco, CA 94016" +304203,Apple Airpods Headphones,1,150,12/06/19 11:32,"94 Meadow St, Atlanta, GA 30301" +304204,Bose SoundSport Headphones,1,99.99,12/16/19 13:39,"827 Park St, Atlanta, GA 30301" +304205,USB-C Charging Cable,1,11.95,12/17/19 12:14,"116 7th St, New York City, NY 10001" +304206,Wired Headphones,1,11.99,12/01/19 10:27,"758 Dogwood St, Los Angeles, CA 90001" +304207,Macbook Pro Laptop,1,1700,12/27/19 08:22,"350 Elm St, San Francisco, CA 94016" +304208,27in FHD Monitor,1,149.99,12/05/19 21:16,"16 Adams St, Seattle, WA 98101" +304209,USB-C Charging Cable,1,11.95,12/29/19 16:53,"90 Cherry St, Seattle, WA 98101" +304210,Lightning Charging Cable,1,14.95,12/13/19 19:06,"586 Church St, Portland, OR 97035" +304211,Macbook Pro Laptop,1,1700,12/08/19 13:13,"784 Main St, Boston, MA 02215" +304212,Wired Headphones,1,11.99,12/27/19 16:56,"825 10th St, San Francisco, CA 94016" +304213,AA Batteries (4-pack),1,3.84,12/23/19 00:35,"218 Maple St, Atlanta, GA 30301" +304214,Wired Headphones,2,11.99,12/23/19 09:28,"817 Jackson St, Dallas, TX 75001" +304215,Lightning Charging Cable,1,14.95,12/29/19 21:32,"971 7th St, New York City, NY 10001" +304216,27in 4K Gaming Monitor,1,389.99,12/15/19 19:49,"221 13th St, New York City, NY 10001" +304217,Wired Headphones,1,11.99,12/06/19 22:53,"795 South St, Boston, MA 02215" +304218,27in FHD Monitor,1,149.99,12/25/19 07:05,"124 Adams St, Dallas, TX 75001" +304219,34in Ultrawide Monitor,1,379.99,12/12/19 07:09,"237 Elm St, New York City, NY 10001" +304220,Lightning Charging Cable,1,14.95,12/15/19 12:06,"616 River St, Portland, OR 97035" +304221,Apple Airpods Headphones,1,150,12/14/19 12:46,"573 Cherry St, Los Angeles, CA 90001" +304222,Bose SoundSport Headphones,1,99.99,12/04/19 21:13,"585 Jackson St, Seattle, WA 98101" +304223,AA Batteries (4-pack),2,3.84,12/31/19 20:42,"93 Maple St, San Francisco, CA 94016" +304224,USB-C Charging Cable,1,11.95,12/22/19 08:32,"390 Park St, New York City, NY 10001" +304225,USB-C Charging Cable,2,11.95,12/28/19 18:37,"122 Center St, San Francisco, CA 94016" +304226,Bose SoundSport Headphones,1,99.99,12/31/19 22:01,"908 Jackson St, Los Angeles, CA 90001" +304227,USB-C Charging Cable,1,11.95,12/01/19 11:54,"687 Lincoln St, Austin, TX 73301" +304228,Apple Airpods Headphones,1,150,12/04/19 13:40,"763 4th St, Portland, ME 04101" +304229,USB-C Charging Cable,1,11.95,12/14/19 21:52,"967 Pine St, Boston, MA 02215" +304230,iPhone,1,700,12/13/19 14:16,"917 Jackson St, Boston, MA 02215" +304231,AAA Batteries (4-pack),1,2.99,12/05/19 21:49,"1 Park St, San Francisco, CA 94016" +304232,AAA Batteries (4-pack),1,2.99,12/02/19 14:21,"837 9th St, San Francisco, CA 94016" +304233,Lightning Charging Cable,1,14.95,12/31/19 17:48,"65 Pine St, New York City, NY 10001" +304234,Vareebadd Phone,1,400,12/11/19 19:51,"966 Chestnut St, New York City, NY 10001" +304234,USB-C Charging Cable,1,11.95,12/11/19 19:51,"966 Chestnut St, New York City, NY 10001" +304235,Lightning Charging Cable,1,14.95,12/03/19 13:10,"574 Washington St, New York City, NY 10001" +304236,27in 4K Gaming Monitor,1,389.99,12/27/19 15:53,"257 Willow St, Boston, MA 02215" +304237,Lightning Charging Cable,1,14.95,12/25/19 18:56,"517 Jefferson St, San Francisco, CA 94016" +304238,Apple Airpods Headphones,1,150,12/30/19 10:42,"869 Highland St, Dallas, TX 75001" +304239,iPhone,1,700,12/03/19 18:02,"339 11th St, New York City, NY 10001" +304240,Wired Headphones,1,11.99,12/03/19 11:03,"988 Lincoln St, Seattle, WA 98101" +304241,Lightning Charging Cable,1,14.95,12/11/19 06:47,"989 Maple St, Atlanta, GA 30301" +304242,27in FHD Monitor,1,149.99,12/08/19 10:20,"646 5th St, New York City, NY 10001" +304243,AA Batteries (4-pack),1,3.84,12/17/19 17:36,"755 2nd St, San Francisco, CA 94016" +304244,27in 4K Gaming Monitor,1,389.99,12/26/19 07:56,"866 8th St, Los Angeles, CA 90001" +304245,27in FHD Monitor,1,149.99,12/02/19 13:54,"24 Hickory St, New York City, NY 10001" +304246,27in FHD Monitor,1,149.99,12/29/19 13:54,"780 Madison St, New York City, NY 10001" +304247,USB-C Charging Cable,1,11.95,12/05/19 00:50,"694 7th St, San Francisco, CA 94016" +304248,Lightning Charging Cable,1,14.95,12/04/19 16:06,"546 Washington St, San Francisco, CA 94016" +304249,AA Batteries (4-pack),1,3.84,12/21/19 12:24,"653 Wilson St, San Francisco, CA 94016" +304250,Apple Airpods Headphones,1,150,12/05/19 16:22,"222 Highland St, San Francisco, CA 94016" +304251,USB-C Charging Cable,1,11.95,12/22/19 11:54,"800 Washington St, Portland, OR 97035" +304252,AAA Batteries (4-pack),1,2.99,12/27/19 20:15,"3 Elm St, San Francisco, CA 94016" +304253,20in Monitor,1,109.99,12/23/19 15:57,"803 Lake St, Atlanta, GA 30301" +304254,27in 4K Gaming Monitor,1,389.99,12/13/19 04:39,"284 8th St, Seattle, WA 98101" +304255,iPhone,1,700,12/27/19 00:00,"168 Chestnut St, Los Angeles, CA 90001" +304255,Lightning Charging Cable,2,14.95,12/27/19 00:00,"168 Chestnut St, Los Angeles, CA 90001" +304256,27in 4K Gaming Monitor,1,389.99,12/18/19 11:00,"887 6th St, San Francisco, CA 94016" +304257,Flatscreen TV,1,300,12/31/19 20:41,"143 13th St, Portland, ME 04101" +304258,Apple Airpods Headphones,1,150,12/16/19 20:08,"925 Elm St, Los Angeles, CA 90001" +304259,USB-C Charging Cable,1,11.95,12/14/19 09:30,"723 Hickory St, San Francisco, CA 94016" +304260,Apple Airpods Headphones,1,150,12/21/19 13:48,"936 Lake St, Los Angeles, CA 90001" +304261,USB-C Charging Cable,1,11.95,12/04/19 21:23,"72 Adams St, Los Angeles, CA 90001" +304262,Lightning Charging Cable,1,14.95,12/29/19 07:48,"133 Meadow St, Los Angeles, CA 90001" +304263,Lightning Charging Cable,1,14.95,12/19/19 16:52,"686 Sunset St, Atlanta, GA 30301" +304264,AA Batteries (4-pack),2,3.84,12/01/19 12:23,"181 10th St, Atlanta, GA 30301" +304265,Apple Airpods Headphones,1,150,12/24/19 17:25,"98 Main St, Seattle, WA 98101" +304266,AAA Batteries (4-pack),2,2.99,12/07/19 15:03,"151 Cedar St, San Francisco, CA 94016" +304267,Lightning Charging Cable,1,14.95,12/20/19 18:26,"508 Madison St, Los Angeles, CA 90001" +304268,AA Batteries (4-pack),1,3.84,12/21/19 18:01,"354 River St, New York City, NY 10001" +304269,27in FHD Monitor,1,149.99,12/14/19 19:46,"983 Jackson St, Los Angeles, CA 90001" +304270,USB-C Charging Cable,1,11.95,12/19/19 20:31,"586 Park St, Austin, TX 73301" +304271,Apple Airpods Headphones,1,150,12/03/19 12:52,"853 Jefferson St, Portland, OR 97035" +304272,Wired Headphones,1,11.99,12/23/19 12:17,"976 7th St, New York City, NY 10001" +304273,AAA Batteries (4-pack),1,2.99,12/25/19 22:24,"583 Johnson St, San Francisco, CA 94016" +304274,34in Ultrawide Monitor,1,379.99,12/25/19 18:57,"861 Maple St, Los Angeles, CA 90001" +304274,AAA Batteries (4-pack),2,2.99,12/25/19 18:57,"861 Maple St, Los Angeles, CA 90001" +304275,AA Batteries (4-pack),1,3.84,12/13/19 11:09,"586 Center St, Boston, MA 02215" +304276,Wired Headphones,1,11.99,12/29/19 12:17,"655 Main St, Los Angeles, CA 90001" +304277,Bose SoundSport Headphones,1,99.99,12/28/19 21:02,"512 Jefferson St, Boston, MA 02215" +304278,AA Batteries (4-pack),3,3.84,12/18/19 09:24,"617 Dogwood St, Los Angeles, CA 90001" +304279,iPhone,1,700,12/13/19 11:16,"133 South St, New York City, NY 10001" +304279,Lightning Charging Cable,2,14.95,12/13/19 11:16,"133 South St, New York City, NY 10001" +304280,27in FHD Monitor,1,149.99,12/04/19 16:14,"131 Church St, New York City, NY 10001" +304281,AA Batteries (4-pack),1,3.84,12/21/19 21:40,"110 Jackson St, Los Angeles, CA 90001" +304282,Bose SoundSport Headphones,1,99.99,12/17/19 18:28,"454 1st St, Dallas, TX 75001" +304282,Bose SoundSport Headphones,1,99.99,12/17/19 18:28,"454 1st St, Dallas, TX 75001" +304283,Google Phone,1,600,12/15/19 12:22,"601 North St, Seattle, WA 98101" +304284,Wired Headphones,1,11.99,12/15/19 09:26,"202 Jefferson St, Los Angeles, CA 90001" +304285,Apple Airpods Headphones,1,150,12/05/19 15:35,"982 North St, San Francisco, CA 94016" +304286,Lightning Charging Cable,1,14.95,12/13/19 16:11,"314 Center St, San Francisco, CA 94016" +304286,AA Batteries (4-pack),1,3.84,12/13/19 16:11,"314 Center St, San Francisco, CA 94016" +304287,34in Ultrawide Monitor,1,379.99,12/17/19 14:16,"6 Washington St, Seattle, WA 98101" +304288,Google Phone,1,600,12/12/19 04:42,"802 Walnut St, Atlanta, GA 30301" +304289,AA Batteries (4-pack),2,3.84,12/02/19 23:32,"407 Sunset St, Austin, TX 73301" +304290,Lightning Charging Cable,2,14.95,12/03/19 12:56,"360 7th St, Boston, MA 02215" +304291,Vareebadd Phone,1,400,12/10/19 13:09,"57 2nd St, Los Angeles, CA 90001" +304292,Bose SoundSport Headphones,1,99.99,12/07/19 06:45,"564 Meadow St, San Francisco, CA 94016" +304293,34in Ultrawide Monitor,1,379.99,12/04/19 18:49,"719 Madison St, Seattle, WA 98101" +304294,ThinkPad Laptop,1,999.99,12/04/19 11:27,"569 10th St, New York City, NY 10001" +304295,Flatscreen TV,1,300,12/30/19 06:46,"236 Lake St, Los Angeles, CA 90001" +304296,Apple Airpods Headphones,1,150,12/01/19 18:44,"278 Madison St, Los Angeles, CA 90001" +304297,27in 4K Gaming Monitor,1,389.99,12/22/19 13:52,"364 Ridge St, Austin, TX 73301" +304298,AAA Batteries (4-pack),1,2.99,12/02/19 11:39,"679 North St, New York City, NY 10001" +304299,AAA Batteries (4-pack),1,2.99,12/18/19 17:36,"566 4th St, Los Angeles, CA 90001" +304300,ThinkPad Laptop,1,999.99,12/17/19 17:12,"531 7th St, Los Angeles, CA 90001" +304301,Bose SoundSport Headphones,1,99.99,12/21/19 11:09,"307 6th St, Los Angeles, CA 90001" +304302,Wired Headphones,2,11.99,12/11/19 15:35,"625 Jackson St, Atlanta, GA 30301" +304303,Lightning Charging Cable,1,14.95,12/05/19 11:47,"237 Jackson St, Dallas, TX 75001" +304304,Apple Airpods Headphones,1,150,12/13/19 08:18,"635 North St, Los Angeles, CA 90001" +304305,Apple Airpods Headphones,1,150,12/02/19 15:56,"249 Chestnut St, Los Angeles, CA 90001" +304306,Apple Airpods Headphones,1,150,12/05/19 12:55,"598 10th St, Portland, OR 97035" +304307,Lightning Charging Cable,1,14.95,12/14/19 20:27,"723 8th St, Seattle, WA 98101" +304308,ThinkPad Laptop,1,999.99,12/26/19 18:36,"502 Pine St, Portland, OR 97035" +304309,AA Batteries (4-pack),1,3.84,12/03/19 23:52,"813 Spruce St, San Francisco, CA 94016" +304310,34in Ultrawide Monitor,1,379.99,12/24/19 10:12,"8 Hill St, Atlanta, GA 30301" +304311,Wired Headphones,1,11.99,12/13/19 15:35,"294 Highland St, Dallas, TX 75001" +304312,Apple Airpods Headphones,1,150,12/12/19 19:11,"392 Highland St, San Francisco, CA 94016" +304313,AAA Batteries (4-pack),1,2.99,12/26/19 14:41,"625 Center St, Atlanta, GA 30301" +304314,Lightning Charging Cable,1,14.95,12/31/19 18:24,"657 Maple St, Atlanta, GA 30301" +304315,27in FHD Monitor,1,149.99,12/31/19 10:58,"10 Dogwood St, Portland, OR 97035" +304316,Apple Airpods Headphones,1,150,12/21/19 18:51,"832 Cherry St, Los Angeles, CA 90001" +304317,AAA Batteries (4-pack),1,2.99,12/15/19 16:39,"979 North St, Dallas, TX 75001" +304318,Apple Airpods Headphones,1,150,12/17/19 20:03,"119 Jackson St, Los Angeles, CA 90001" +304319,Lightning Charging Cable,1,14.95,12/06/19 08:12,"66 Adams St, San Francisco, CA 94016" +304320,ThinkPad Laptop,1,999.99,12/12/19 19:21,"919 Lincoln St, New York City, NY 10001" +304321,Bose SoundSport Headphones,1,99.99,12/02/19 14:29,"438 14th St, Portland, ME 04101" +304321,Lightning Charging Cable,2,14.95,12/02/19 14:29,"438 14th St, Portland, ME 04101" +304322,27in 4K Gaming Monitor,1,389.99,12/19/19 19:40,"93 Sunset St, Portland, OR 97035" +304323,iPhone,1,700,12/10/19 15:44,"962 Chestnut St, Boston, MA 02215" +304324,Google Phone,1,600,12/27/19 07:46,"683 10th St, Los Angeles, CA 90001" +304325,AAA Batteries (4-pack),1,2.99,12/10/19 13:38,"114 Sunset St, Austin, TX 73301" +304326,AA Batteries (4-pack),1,3.84,12/02/19 22:19,"479 Lakeview St, Los Angeles, CA 90001" +304327,Google Phone,1,600,12/07/19 12:16,"559 11th St, New York City, NY 10001" +304327,USB-C Charging Cable,1,11.95,12/07/19 12:16,"559 11th St, New York City, NY 10001" +304328,27in FHD Monitor,1,149.99,12/24/19 15:23,"908 Lakeview St, New York City, NY 10001" +304329,AA Batteries (4-pack),3,3.84,12/21/19 13:16,"367 Adams St, New York City, NY 10001" +304330,Lightning Charging Cable,2,14.95,12/13/19 20:29,"438 Wilson St, San Francisco, CA 94016" +304331,Apple Airpods Headphones,1,150,12/28/19 11:58,"761 Forest St, San Francisco, CA 94016" +304332,USB-C Charging Cable,1,11.95,12/24/19 14:53,"470 Lincoln St, New York City, NY 10001" +304333,Apple Airpods Headphones,1,150,12/22/19 23:29,"229 Lincoln St, San Francisco, CA 94016" +304334,27in FHD Monitor,1,149.99,12/24/19 22:30,"569 Ridge St, San Francisco, CA 94016" +304335,Wired Headphones,1,11.99,12/21/19 10:02,"182 Lincoln St, Boston, MA 02215" +304336,AAA Batteries (4-pack),1,2.99,12/04/19 14:51,"664 1st St, Atlanta, GA 30301" +304337,AAA Batteries (4-pack),1,2.99,12/19/19 20:01,"994 Willow St, Los Angeles, CA 90001" +304338,Apple Airpods Headphones,1,150,12/24/19 19:38,"523 Sunset St, Portland, OR 97035" +304339,Wired Headphones,1,11.99,12/24/19 11:05,"435 Hill St, San Francisco, CA 94016" +304340,34in Ultrawide Monitor,1,379.99,12/16/19 19:57,"675 12th St, San Francisco, CA 94016" +304341,AA Batteries (4-pack),1,3.84,12/20/19 09:53,"891 13th St, Dallas, TX 75001" +304342,iPhone,1,700,12/20/19 18:58,"454 6th St, San Francisco, CA 94016" +304343,USB-C Charging Cable,1,11.95,12/18/19 15:42,"656 Highland St, Los Angeles, CA 90001" +304344,Apple Airpods Headphones,1,150,12/25/19 13:01,"866 1st St, San Francisco, CA 94016" +304345,USB-C Charging Cable,1,11.95,12/14/19 10:38,"303 Elm St, Boston, MA 02215" +304346,Bose SoundSport Headphones,1,99.99,12/04/19 22:45,"238 1st St, Seattle, WA 98101" +304347,AAA Batteries (4-pack),1,2.99,12/16/19 16:22,"556 8th St, San Francisco, CA 94016" +304348,USB-C Charging Cable,1,11.95,12/31/19 10:50,"705 Madison St, Seattle, WA 98101" +304349,Bose SoundSport Headphones,1,99.99,12/15/19 21:33,"928 Willow St, Boston, MA 02215" +304350,Wired Headphones,1,11.99,12/01/19 06:09,"816 Johnson St, San Francisco, CA 94016" +304351,Apple Airpods Headphones,1,150,12/01/19 16:56,"836 Main St, Portland, OR 97035" +304352,AAA Batteries (4-pack),1,2.99,12/25/19 08:40,"623 Cherry St, Seattle, WA 98101" +304353,27in 4K Gaming Monitor,1,389.99,12/10/19 16:33,"656 Ridge St, Boston, MA 02215" +304354,34in Ultrawide Monitor,1,379.99,12/26/19 00:22,"257 Church St, New York City, NY 10001" +304355,AA Batteries (4-pack),2,3.84,12/21/19 18:56,"366 River St, San Francisco, CA 94016" +304356,Vareebadd Phone,1,400,12/13/19 14:00,"537 7th St, San Francisco, CA 94016" +304356,Wired Headphones,1,11.99,12/13/19 14:00,"537 7th St, San Francisco, CA 94016" +304357,Wired Headphones,1,11.99,12/12/19 22:53,"939 Jefferson St, New York City, NY 10001" +304358,Bose SoundSport Headphones,1,99.99,12/16/19 13:56,"36 9th St, Los Angeles, CA 90001" +304359,AA Batteries (4-pack),1,3.84,12/24/19 10:02,"676 Pine St, Dallas, TX 75001" +304360,27in 4K Gaming Monitor,1,389.99,12/01/19 21:02,"85 South St, Portland, OR 97035" +304361,Wired Headphones,1,11.99,12/17/19 09:25,"7 Cedar St, New York City, NY 10001" +304362,iPhone,1,700,12/11/19 11:05,"892 Park St, New York City, NY 10001" +304363,iPhone,1,700,12/02/19 18:04,"454 Adams St, San Francisco, CA 94016" +304364,AA Batteries (4-pack),1,3.84,12/03/19 13:32,"955 Church St, Los Angeles, CA 90001" +304365,USB-C Charging Cable,1,11.95,12/20/19 13:22,"424 Cedar St, Seattle, WA 98101" +304366,Macbook Pro Laptop,1,1700,12/20/19 03:52,"653 Cedar St, Los Angeles, CA 90001" +304367,AAA Batteries (4-pack),2,2.99,12/16/19 11:04,"233 Walnut St, San Francisco, CA 94016" +304368,Lightning Charging Cable,1,14.95,12/24/19 17:47,"507 Forest St, San Francisco, CA 94016" +304369,Lightning Charging Cable,1,14.95,12/21/19 16:25,"316 1st St, Boston, MA 02215" +304370,Flatscreen TV,1,300,12/30/19 08:41,"811 North St, San Francisco, CA 94016" +304371,Wired Headphones,1,11.99,12/07/19 17:28,"373 7th St, Atlanta, GA 30301" +304372,Bose SoundSport Headphones,1,99.99,12/06/19 11:15,"175 Center St, New York City, NY 10001" +304373,Lightning Charging Cable,1,14.95,12/24/19 13:23,"655 6th St, San Francisco, CA 94016" +304374,20in Monitor,1,109.99,12/28/19 20:14,"434 Elm St, Boston, MA 02215" +304375,AAA Batteries (4-pack),1,2.99,12/06/19 20:26,"219 11th St, Dallas, TX 75001" +304376,Flatscreen TV,1,300,12/07/19 12:51,"817 Johnson St, Dallas, TX 75001" +304377,Bose SoundSport Headphones,1,99.99,12/10/19 09:11,"349 8th St, Seattle, WA 98101" +304378,Apple Airpods Headphones,1,150,12/27/19 22:55,"832 Elm St, Boston, MA 02215" +304379,AA Batteries (4-pack),2,3.84,12/09/19 23:50,"759 Cherry St, Los Angeles, CA 90001" +304380,AAA Batteries (4-pack),2,2.99,12/24/19 17:26,"196 Jefferson St, San Francisco, CA 94016" +304381,AAA Batteries (4-pack),1,2.99,12/13/19 08:32,"982 5th St, San Francisco, CA 94016" +304382,USB-C Charging Cable,1,11.95,12/14/19 22:38,"94 Hill St, San Francisco, CA 94016" +304383,Wired Headphones,1,11.99,12/16/19 20:09,"428 Park St, Seattle, WA 98101" +304384,Google Phone,1,600,12/24/19 17:00,"82 North St, Atlanta, GA 30301" +304385,USB-C Charging Cable,1,11.95,12/06/19 19:09,"315 Chestnut St, Los Angeles, CA 90001" +304386,AA Batteries (4-pack),3,3.84,12/18/19 09:43,"752 West St, Seattle, WA 98101" +304387,34in Ultrawide Monitor,1,379.99,12/29/19 18:25,"95 4th St, Boston, MA 02215" +304388,Macbook Pro Laptop,1,1700,12/12/19 09:57,"250 2nd St, Boston, MA 02215" +304389,AAA Batteries (4-pack),1,2.99,12/16/19 21:36,"713 Hill St, Boston, MA 02215" +304390,AA Batteries (4-pack),1,3.84,12/18/19 15:38,"395 Adams St, San Francisco, CA 94016" +304391,Apple Airpods Headphones,1,150,12/26/19 10:49,"585 Lincoln St, Austin, TX 73301" +304392,AAA Batteries (4-pack),1,2.99,12/19/19 21:36,"785 Lake St, Portland, ME 04101" +304393,27in 4K Gaming Monitor,1,389.99,12/12/19 18:06,"1 Pine St, Boston, MA 02215" +304394,AAA Batteries (4-pack),1,2.99,12/04/19 21:39,"854 Elm St, San Francisco, CA 94016" +304395,AAA Batteries (4-pack),2,2.99,12/23/19 22:17,"868 6th St, New York City, NY 10001" +304396,AAA Batteries (4-pack),1,2.99,12/16/19 15:57,"142 Lincoln St, Atlanta, GA 30301" +304397,Flatscreen TV,1,300,12/01/19 20:36,"916 2nd St, Boston, MA 02215" +304398,USB-C Charging Cable,1,11.95,12/03/19 18:02,"55 5th St, Seattle, WA 98101" +304399,Lightning Charging Cable,1,14.95,12/18/19 20:02,"704 8th St, Los Angeles, CA 90001" +304400,ThinkPad Laptop,1,999.99,12/23/19 15:10,"546 12th St, Los Angeles, CA 90001" +304401,Lightning Charging Cable,1,14.95,12/04/19 06:14,"863 Highland St, San Francisco, CA 94016" +304402,Apple Airpods Headphones,1,150,12/14/19 19:03,"476 Dogwood St, Seattle, WA 98101" +304403,Wired Headphones,1,11.99,12/11/19 13:13,"172 Main St, Dallas, TX 75001" +304404,AA Batteries (4-pack),1,3.84,12/28/19 14:45,"118 Lincoln St, Dallas, TX 75001" +304404,Wired Headphones,1,11.99,12/28/19 14:45,"118 Lincoln St, Dallas, TX 75001" +304405,Vareebadd Phone,1,400,12/18/19 09:41,"572 12th St, San Francisco, CA 94016" +304406,USB-C Charging Cable,1,11.95,12/28/19 19:36,"783 Ridge St, Boston, MA 02215" +304407,iPhone,1,700,12/11/19 20:03,"73 Forest St, Austin, TX 73301" +304408,USB-C Charging Cable,1,11.95,12/07/19 15:51,"687 Spruce St, San Francisco, CA 94016" +304409,AA Batteries (4-pack),2,3.84,12/05/19 11:19,"683 4th St, New York City, NY 10001" +304410,Bose SoundSport Headphones,1,99.99,12/22/19 11:39,"813 8th St, Dallas, TX 75001" +304411,USB-C Charging Cable,1,11.95,12/22/19 17:19,"715 Park St, Dallas, TX 75001" +304412,Vareebadd Phone,1,400,12/29/19 17:18,"683 13th St, San Francisco, CA 94016" +304413,27in FHD Monitor,1,149.99,12/13/19 12:09,"355 Walnut St, Atlanta, GA 30301" +304414,Bose SoundSport Headphones,1,99.99,12/03/19 22:22,"478 Washington St, Los Angeles, CA 90001" +304415,Lightning Charging Cable,1,14.95,12/11/19 08:04,"314 Main St, New York City, NY 10001" +304416,Apple Airpods Headphones,1,150,12/01/19 19:23,"378 Cedar St, New York City, NY 10001" +304417,Lightning Charging Cable,2,14.95,12/21/19 08:01,"143 North St, Austin, TX 73301" +304418,27in FHD Monitor,1,149.99,12/25/19 15:02,"799 6th St, New York City, NY 10001" +304419,USB-C Charging Cable,1,11.95,12/13/19 08:17,"717 Center St, Los Angeles, CA 90001" +304420,AA Batteries (4-pack),1,3.84,12/03/19 07:03,"237 Ridge St, Seattle, WA 98101" +304421,USB-C Charging Cable,2,11.95,12/30/19 07:33,"969 5th St, Seattle, WA 98101" +304422,Google Phone,1,600,12/12/19 22:20,"724 14th St, Los Angeles, CA 90001" +304423,Bose SoundSport Headphones,1,99.99,12/06/19 20:05,"636 Jefferson St, San Francisco, CA 94016" +304424,Bose SoundSport Headphones,1,99.99,12/28/19 18:23,"796 Lake St, New York City, NY 10001" +304425,AA Batteries (4-pack),1,3.84,12/28/19 08:51,"45 Johnson St, New York City, NY 10001" +304426,LG Dryer,1,600.0,12/24/19 21:16,"190 8th St, San Francisco, CA 94016" +304427,27in 4K Gaming Monitor,1,389.99,12/26/19 10:33,"644 Lake St, Austin, TX 73301" +304428,27in 4K Gaming Monitor,1,389.99,12/05/19 17:34,"367 Spruce St, San Francisco, CA 94016" +304429,Wired Headphones,1,11.99,12/24/19 19:18,"819 1st St, Atlanta, GA 30301" +304430,AAA Batteries (4-pack),1,2.99,12/14/19 13:54,"720 Chestnut St, Los Angeles, CA 90001" +304431,Flatscreen TV,1,300,12/09/19 16:03,"409 Church St, Portland, OR 97035" +304432,Wired Headphones,1,11.99,12/09/19 22:33,"354 1st St, Atlanta, GA 30301" +304433,Bose SoundSport Headphones,1,99.99,12/29/19 10:27,"826 Ridge St, Los Angeles, CA 90001" +304434,iPhone,1,700,12/31/19 22:15,"183 Forest St, Portland, OR 97035" +304435,Bose SoundSport Headphones,1,99.99,12/02/19 22:40,"563 4th St, Los Angeles, CA 90001" +304436,AAA Batteries (4-pack),1,2.99,12/30/19 14:47,"942 Adams St, Seattle, WA 98101" +304437,ThinkPad Laptop,1,999.99,12/02/19 13:20,"786 Adams St, Seattle, WA 98101" +304438,AAA Batteries (4-pack),1,2.99,12/16/19 10:46,"171 Washington St, Seattle, WA 98101" +304439,Apple Airpods Headphones,1,150,12/23/19 17:09,"71 Chestnut St, Portland, OR 97035" +304440,USB-C Charging Cable,1,11.95,12/11/19 10:05,"262 South St, San Francisco, CA 94016" +304441,Bose SoundSport Headphones,1,99.99,12/21/19 00:34,"771 River St, Los Angeles, CA 90001" +304442,USB-C Charging Cable,1,11.95,12/03/19 19:29,"420 Cherry St, New York City, NY 10001" +304443,Wired Headphones,1,11.99,12/27/19 13:06,"439 Spruce St, Los Angeles, CA 90001" +304444,AA Batteries (4-pack),1,3.84,12/19/19 17:37,"449 Wilson St, Boston, MA 02215" +304445,Bose SoundSport Headphones,1,99.99,12/27/19 12:30,"154 Walnut St, Dallas, TX 75001" +304446,Lightning Charging Cable,2,14.95,12/29/19 22:17,"147 River St, Los Angeles, CA 90001" +304447,AA Batteries (4-pack),2,3.84,12/17/19 21:45,"533 Johnson St, Portland, ME 04101" +304448,Bose SoundSport Headphones,1,99.99,12/04/19 00:18,"549 Elm St, Dallas, TX 75001" +304449,Google Phone,1,600,12/01/19 20:24,"294 Spruce St, San Francisco, CA 94016" +304450,AA Batteries (4-pack),1,3.84,12/24/19 08:00,"328 14th St, Los Angeles, CA 90001" +304451,Bose SoundSport Headphones,1,99.99,12/19/19 13:58,"933 12th St, Seattle, WA 98101" +304452,AA Batteries (4-pack),1,3.84,12/06/19 19:01,"892 2nd St, New York City, NY 10001" +304453,Bose SoundSport Headphones,1,99.99,12/22/19 21:31,"24 Walnut St, New York City, NY 10001" +304454,27in 4K Gaming Monitor,1,389.99,12/07/19 19:05,"171 Spruce St, Los Angeles, CA 90001" +304455,AAA Batteries (4-pack),1,2.99,12/23/19 01:52,"882 Main St, Boston, MA 02215" +304456,Google Phone,1,600,12/06/19 09:23,"146 West St, Portland, OR 97035" +304456,Bose SoundSport Headphones,1,99.99,12/06/19 09:23,"146 West St, Portland, OR 97035" +304457,Apple Airpods Headphones,1,150,12/19/19 14:37,"2 12th St, Los Angeles, CA 90001" +304458,Bose SoundSport Headphones,1,99.99,12/14/19 18:11,"398 Dogwood St, San Francisco, CA 94016" +304459,Wired Headphones,1,11.99,12/04/19 14:38,"656 Center St, San Francisco, CA 94016" +304460,AA Batteries (4-pack),1,3.84,12/25/19 20:42,"474 Walnut St, Seattle, WA 98101" +304461,USB-C Charging Cable,1,11.95,12/04/19 12:55,"3 5th St, Atlanta, GA 30301" +304462,Flatscreen TV,1,300,12/31/19 13:39,"220 Hill St, Boston, MA 02215" +304463,Wired Headphones,1,11.99,12/05/19 12:47,"601 Washington St, Los Angeles, CA 90001" +304464,AA Batteries (4-pack),1,3.84,12/23/19 15:10,"163 Lakeview St, Atlanta, GA 30301" +304465,USB-C Charging Cable,1,11.95,12/14/19 02:06,"414 Main St, Austin, TX 73301" +304466,AAA Batteries (4-pack),1,2.99,12/14/19 19:29,"127 Wilson St, Portland, ME 04101" +304467,AAA Batteries (4-pack),1,2.99,12/18/19 00:14,"365 South St, San Francisco, CA 94016" +304468,34in Ultrawide Monitor,1,379.99,12/31/19 21:57,"447 1st St, Boston, MA 02215" +304469,Wired Headphones,1,11.99,12/15/19 15:03,"109 14th St, Los Angeles, CA 90001" +304470,Wired Headphones,1,11.99,12/26/19 16:25,"912 Chestnut St, Atlanta, GA 30301" +304471,Bose SoundSport Headphones,1,99.99,12/10/19 18:58,"153 Cherry St, New York City, NY 10001" +304472,AAA Batteries (4-pack),1,2.99,12/18/19 21:26,"601 1st St, New York City, NY 10001" +304473,Lightning Charging Cable,1,14.95,12/31/19 00:16,"120 Cedar St, Seattle, WA 98101" +304474,AA Batteries (4-pack),1,3.84,12/04/19 06:58,"483 2nd St, Austin, TX 73301" +304475,USB-C Charging Cable,2,11.95,12/30/19 21:43,"993 6th St, Atlanta, GA 30301" +304476,Lightning Charging Cable,1,14.95,12/02/19 20:26,"636 4th St, Austin, TX 73301" +304477,Apple Airpods Headphones,1,150,12/06/19 21:19,"348 River St, Los Angeles, CA 90001" +304478,USB-C Charging Cable,1,11.95,12/02/19 20:21,"443 12th St, New York City, NY 10001" +304479,LG Washing Machine,1,600.0,12/15/19 20:31,"211 Dogwood St, Dallas, TX 75001" +304480,iPhone,1,700,12/09/19 07:59,"27 8th St, Los Angeles, CA 90001" +304481,ThinkPad Laptop,1,999.99,12/20/19 16:45,"951 Madison St, Portland, OR 97035" +304482,USB-C Charging Cable,1,11.95,12/30/19 11:47,"112 Madison St, Atlanta, GA 30301" +304483,Apple Airpods Headphones,1,150,12/10/19 12:50,"134 Church St, San Francisco, CA 94016" +304484,Wired Headphones,2,11.99,12/03/19 11:07,"524 13th St, Portland, OR 97035" +304485,Apple Airpods Headphones,1,150,12/11/19 22:11,"538 5th St, Seattle, WA 98101" +304486,Wired Headphones,1,11.99,12/04/19 19:26,"965 11th St, Seattle, WA 98101" +304487,Lightning Charging Cable,1,14.95,12/20/19 08:28,"62 Hill St, Portland, ME 04101" +304488,USB-C Charging Cable,1,11.95,12/21/19 17:26,"83 Adams St, San Francisco, CA 94016" +304489,AAA Batteries (4-pack),2,2.99,12/16/19 19:22,"186 10th St, Atlanta, GA 30301" +304490,AA Batteries (4-pack),1,3.84,12/13/19 12:52,"198 Walnut St, Atlanta, GA 30301" +304491,AA Batteries (4-pack),1,3.84,12/16/19 11:32,"167 West St, Portland, OR 97035" +304492,AAA Batteries (4-pack),3,2.99,12/14/19 11:49,"435 1st St, New York City, NY 10001" +304493,Vareebadd Phone,1,400,12/12/19 20:14,"245 11th St, San Francisco, CA 94016" +304494,USB-C Charging Cable,1,11.95,12/26/19 10:30,"795 Johnson St, New York City, NY 10001" +304495,Bose SoundSport Headphones,1,99.99,12/09/19 11:28,"667 Washington St, San Francisco, CA 94016" +304496,AAA Batteries (4-pack),2,2.99,12/02/19 14:16,"76 12th St, Dallas, TX 75001" +304497,Lightning Charging Cable,1,14.95,12/12/19 21:28,"53 Meadow St, Portland, OR 97035" +304498,27in FHD Monitor,1,149.99,12/19/19 19:15,"58 Park St, Portland, OR 97035" +304499,AA Batteries (4-pack),2,3.84,12/17/19 08:42,"257 Madison St, Atlanta, GA 30301" +304500,Lightning Charging Cable,1,14.95,12/19/19 07:14,"841 14th St, San Francisco, CA 94016" +304501,27in 4K Gaming Monitor,1,389.99,12/17/19 13:08,"812 Jackson St, Seattle, WA 98101" +304502,USB-C Charging Cable,1,11.95,12/27/19 18:02,"495 Hickory St, Seattle, WA 98101" +304503,Lightning Charging Cable,1,14.95,12/30/19 17:31,"258 Jackson St, San Francisco, CA 94016" +304504,AAA Batteries (4-pack),2,2.99,12/14/19 23:07,"395 Elm St, Los Angeles, CA 90001" +304505,ThinkPad Laptop,1,999.99,12/20/19 21:50,"591 Maple St, Los Angeles, CA 90001" +304506,Apple Airpods Headphones,1,150,12/25/19 19:24,"818 7th St, Boston, MA 02215" +304507,Lightning Charging Cable,1,14.95,12/11/19 08:44,"76 Sunset St, San Francisco, CA 94016" +304508,AA Batteries (4-pack),1,3.84,12/23/19 10:27,"167 South St, Portland, OR 97035" +304509,Google Phone,1,600,12/19/19 12:54,"632 4th St, Atlanta, GA 30301" +304510,Apple Airpods Headphones,1,150,12/03/19 00:35,"266 West St, San Francisco, CA 94016" +304511,AAA Batteries (4-pack),1,2.99,12/17/19 14:05,"331 Park St, San Francisco, CA 94016" +304512,Lightning Charging Cable,1,14.95,12/30/19 14:14,"861 5th St, Seattle, WA 98101" +304512,USB-C Charging Cable,1,11.95,12/30/19 14:14,"861 5th St, Seattle, WA 98101" +304513,Vareebadd Phone,1,400,12/26/19 09:49,"130 11th St, Seattle, WA 98101" +304514,AAA Batteries (4-pack),2,2.99,12/26/19 16:31,"906 9th St, New York City, NY 10001" +304515,iPhone,1,700,12/05/19 17:53,"289 Lakeview St, Portland, ME 04101" +304516,Lightning Charging Cable,1,14.95,12/15/19 21:30,"841 Main St, Dallas, TX 75001" +304517,AA Batteries (4-pack),1,3.84,12/13/19 15:17,"680 Jackson St, Portland, OR 97035" +304518,AAA Batteries (4-pack),1,2.99,12/30/19 17:27,"493 6th St, Boston, MA 02215" +304519,Lightning Charging Cable,1,14.95,12/03/19 21:17,"471 4th St, San Francisco, CA 94016" +304520,20in Monitor,1,109.99,12/17/19 19:09,"972 Jackson St, Austin, TX 73301" +304521,AAA Batteries (4-pack),1,2.99,12/16/19 19:09,"337 14th St, San Francisco, CA 94016" +304522,Wired Headphones,1,11.99,12/15/19 23:41,"669 12th St, Portland, OR 97035" +304523,ThinkPad Laptop,1,999.99,12/20/19 17:57,"120 Spruce St, New York City, NY 10001" +304523,27in FHD Monitor,1,149.99,12/20/19 17:57,"120 Spruce St, New York City, NY 10001" +304524,USB-C Charging Cable,1,11.95,12/21/19 21:51,"281 Pine St, San Francisco, CA 94016" +304525,Lightning Charging Cable,1,14.95,12/06/19 22:11,"632 South St, Los Angeles, CA 90001" +304526,AAA Batteries (4-pack),2,2.99,12/24/19 18:27,"499 Hill St, Dallas, TX 75001" +304527,Wired Headphones,2,11.99,12/27/19 14:02,"199 11th St, Atlanta, GA 30301" +304528,AAA Batteries (4-pack),1,2.99,12/19/19 11:52,"911 8th St, Portland, OR 97035" +304529,USB-C Charging Cable,1,11.95,12/05/19 15:09,"833 Sunset St, Boston, MA 02215" +304530,Google Phone,1,600,12/25/19 14:12,"758 Park St, Los Angeles, CA 90001" +304531,Macbook Pro Laptop,1,1700,12/24/19 18:44,"361 4th St, Austin, TX 73301" +304532,AA Batteries (4-pack),1,3.84,12/20/19 15:58,"255 Cedar St, Boston, MA 02215" +304533,27in FHD Monitor,1,149.99,12/05/19 16:21,"230 Jefferson St, Portland, OR 97035" +304534,AA Batteries (4-pack),1,3.84,12/09/19 08:23,"812 Church St, Seattle, WA 98101" +304535,Lightning Charging Cable,2,14.95,12/31/19 00:39,"451 Lakeview St, San Francisco, CA 94016" +304536,Lightning Charging Cable,1,14.95,12/08/19 23:46,"862 Jackson St, New York City, NY 10001" +304537,34in Ultrawide Monitor,1,379.99,12/28/19 17:29,"320 Cedar St, Los Angeles, CA 90001" +304538,Lightning Charging Cable,1,14.95,12/28/19 00:16,"719 Church St, Austin, TX 73301" +304539,USB-C Charging Cable,1,11.95,12/09/19 16:48,"963 Forest St, Atlanta, GA 30301" +304540,Bose SoundSport Headphones,1,99.99,12/12/19 18:35,"943 2nd St, Los Angeles, CA 90001" +304541,AAA Batteries (4-pack),1,2.99,12/10/19 11:25,"314 Highland St, Dallas, TX 75001" +304542,AAA Batteries (4-pack),1,2.99,12/31/19 12:17,"77 Hill St, New York City, NY 10001" +304543,AA Batteries (4-pack),1,3.84,12/02/19 14:52,"850 South St, Boston, MA 02215" +304544,USB-C Charging Cable,1,11.95,12/13/19 14:20,"430 Highland St, San Francisco, CA 94016" +304545,Bose SoundSport Headphones,1,99.99,12/11/19 00:51,"870 Church St, San Francisco, CA 94016" +304546,Lightning Charging Cable,1,14.95,12/07/19 21:11,"256 Willow St, Dallas, TX 75001" +304547,AAA Batteries (4-pack),1,2.99,12/17/19 13:32,"107 Jefferson St, Seattle, WA 98101" +304548,27in 4K Gaming Monitor,1,389.99,12/22/19 13:53,"19 Hickory St, Los Angeles, CA 90001" +304549,AAA Batteries (4-pack),1,2.99,12/30/19 23:26,"196 Maple St, New York City, NY 10001" +304550,Bose SoundSport Headphones,1,99.99,12/16/19 15:05,"527 Cedar St, Dallas, TX 75001" +304551,AA Batteries (4-pack),1,3.84,12/17/19 14:07,"819 4th St, San Francisco, CA 94016" +304552,USB-C Charging Cable,1,11.95,12/02/19 20:25,"792 Hill St, Los Angeles, CA 90001" +304552,Apple Airpods Headphones,1,150,12/02/19 20:25,"792 Hill St, Los Angeles, CA 90001" +304553,Bose SoundSport Headphones,1,99.99,12/28/19 16:02,"89 14th St, Portland, OR 97035" +304553,AA Batteries (4-pack),1,3.84,12/28/19 16:02,"89 14th St, Portland, OR 97035" +304554,iPhone,1,700,12/12/19 10:54,"277 5th St, San Francisco, CA 94016" +304555,Macbook Pro Laptop,1,1700,12/03/19 18:53,"358 Lincoln St, San Francisco, CA 94016" +304556,20in Monitor,1,109.99,12/02/19 19:27,"704 10th St, Atlanta, GA 30301" +304557,AA Batteries (4-pack),2,3.84,12/29/19 19:33,"551 7th St, Los Angeles, CA 90001" +304558,Wired Headphones,1,11.99,12/15/19 12:32,"732 Washington St, Atlanta, GA 30301" +304559,Lightning Charging Cable,1,14.95,12/21/19 14:07,"794 Madison St, Atlanta, GA 30301" +304560,iPhone,1,700,12/24/19 11:32,"490 14th St, Seattle, WA 98101" +304561,Flatscreen TV,1,300,12/24/19 23:13,"774 Center St, San Francisco, CA 94016" +304562,27in FHD Monitor,1,149.99,12/27/19 23:11,"643 9th St, Los Angeles, CA 90001" +304563,USB-C Charging Cable,1,11.95,12/21/19 13:52,"529 Washington St, Los Angeles, CA 90001" +304564,Lightning Charging Cable,1,14.95,12/19/19 21:47,"530 14th St, Atlanta, GA 30301" +304565,iPhone,1,700,12/27/19 21:37,"724 1st St, New York City, NY 10001" +304566,USB-C Charging Cable,1,11.95,12/27/19 18:23,"960 8th St, Portland, OR 97035" +304567,Lightning Charging Cable,1,14.95,12/26/19 22:47,"734 Madison St, Seattle, WA 98101" +304568,Bose SoundSport Headphones,1,99.99,12/21/19 21:34,"3 2nd St, Atlanta, GA 30301" +304569,Bose SoundSport Headphones,1,99.99,12/06/19 11:37,"199 Jefferson St, Los Angeles, CA 90001" +304570,Lightning Charging Cable,1,14.95,12/16/19 09:17,"289 Elm St, Los Angeles, CA 90001" +304571,Wired Headphones,2,11.99,12/29/19 19:18,"614 Lake St, Los Angeles, CA 90001" +304572,AAA Batteries (4-pack),1,2.99,12/02/19 13:14,"297 7th St, San Francisco, CA 94016" +304573,34in Ultrawide Monitor,1,379.99,12/30/19 19:35,"611 14th St, New York City, NY 10001" +304574,Lightning Charging Cable,1,14.95,12/09/19 15:04,"495 Adams St, Austin, TX 73301" +304575,AA Batteries (4-pack),1,3.84,12/24/19 22:18,"331 Dogwood St, Dallas, TX 75001" +304576,Bose SoundSport Headphones,1,99.99,12/08/19 16:51,"741 Maple St, Boston, MA 02215" +304577,27in FHD Monitor,1,149.99,12/02/19 15:55,"839 7th St, San Francisco, CA 94016" +304578,Bose SoundSport Headphones,1,99.99,12/19/19 11:04,"600 Hill St, San Francisco, CA 94016" +304579,Wired Headphones,1,11.99,12/21/19 09:56,"183 Dogwood St, San Francisco, CA 94016" +304580,iPhone,1,700,12/10/19 08:17,"714 1st St, San Francisco, CA 94016" +304581,AA Batteries (4-pack),1,3.84,12/01/19 10:43,"389 Forest St, San Francisco, CA 94016" +304582,AAA Batteries (4-pack),2,2.99,12/04/19 18:55,"71 13th St, San Francisco, CA 94016" +304583,Wired Headphones,1,11.99,12/28/19 21:17,"365 West St, Atlanta, GA 30301" +304584,Lightning Charging Cable,1,14.95,12/27/19 00:10,"697 Spruce St, San Francisco, CA 94016" +304585,Apple Airpods Headphones,1,150,12/22/19 17:28,"429 Madison St, San Francisco, CA 94016" +304586,Bose SoundSport Headphones,1,99.99,12/09/19 10:28,"184 6th St, Boston, MA 02215" +304587,ThinkPad Laptop,1,999.99,12/19/19 19:46,"185 Hickory St, San Francisco, CA 94016" +304588,27in FHD Monitor,1,149.99,12/14/19 18:48,"253 South St, San Francisco, CA 94016" +304589,Wired Headphones,1,11.99,12/20/19 22:00,"250 13th St, Portland, OR 97035" +304589,iPhone,1,700,12/20/19 22:00,"250 13th St, Portland, OR 97035" +304590,34in Ultrawide Monitor,1,379.99,12/20/19 14:03,"795 Hickory St, Portland, ME 04101" +304591,AAA Batteries (4-pack),1,2.99,12/05/19 19:28,"767 Hill St, Los Angeles, CA 90001" +304592,Lightning Charging Cable,1,14.95,12/14/19 19:47,"567 Elm St, San Francisco, CA 94016" +304593,Wired Headphones,1,11.99,12/23/19 18:06,"707 Sunset St, San Francisco, CA 94016" +304593,Lightning Charging Cable,1,14.95,12/23/19 18:06,"707 Sunset St, San Francisco, CA 94016" +304594,Wired Headphones,1,11.99,12/08/19 21:04,"617 Center St, New York City, NY 10001" +304595,Apple Airpods Headphones,1,150,12/11/19 17:01,"584 Cherry St, New York City, NY 10001" +304596,Apple Airpods Headphones,1,150,12/28/19 20:08,"79 4th St, San Francisco, CA 94016" +304597,Bose SoundSport Headphones,1,99.99,12/19/19 10:33,"211 Cherry St, Portland, OR 97035" +304598,Apple Airpods Headphones,1,150,12/12/19 13:16,"625 4th St, San Francisco, CA 94016" +304599,Bose SoundSport Headphones,1,99.99,12/22/19 00:45,"359 Lakeview St, Dallas, TX 75001" +304600,Lightning Charging Cable,1,14.95,12/26/19 16:13,"886 12th St, Boston, MA 02215" +304601,Apple Airpods Headphones,1,150,12/26/19 20:29,"93 Jefferson St, Dallas, TX 75001" +304602,Lightning Charging Cable,1,14.95,12/04/19 22:36,"136 13th St, Atlanta, GA 30301" +304603,Bose SoundSport Headphones,1,99.99,12/22/19 22:32,"309 Center St, San Francisco, CA 94016" +304604,Lightning Charging Cable,1,14.95,12/03/19 11:58,"758 Dogwood St, Seattle, WA 98101" +304605,AA Batteries (4-pack),1,3.84,12/05/19 08:46,"394 Washington St, Boston, MA 02215" +304606,27in 4K Gaming Monitor,1,389.99,12/06/19 01:23,"765 Jackson St, Austin, TX 73301" +304607,AAA Batteries (4-pack),1,2.99,12/20/19 20:44,"166 Park St, San Francisco, CA 94016" +304608,Apple Airpods Headphones,1,150,12/23/19 23:24,"646 Adams St, San Francisco, CA 94016" +304609,Flatscreen TV,1,300,12/05/19 19:17,"597 North St, Dallas, TX 75001" +304610,AAA Batteries (4-pack),1,2.99,12/25/19 19:48,"492 Spruce St, Atlanta, GA 30301" +304611,USB-C Charging Cable,1,11.95,12/26/19 11:00,"321 9th St, Boston, MA 02215" +304612,USB-C Charging Cable,1,11.95,12/25/19 20:40,"91 2nd St, Atlanta, GA 30301" +304613,AA Batteries (4-pack),2,3.84,12/05/19 11:43,"983 Madison St, Austin, TX 73301" +304614,34in Ultrawide Monitor,1,379.99,12/20/19 10:10,"246 14th St, Atlanta, GA 30301" +304615,iPhone,1,700,12/15/19 10:01,"218 5th St, Seattle, WA 98101" +304616,AAA Batteries (4-pack),1,2.99,12/05/19 11:24,"43 River St, Boston, MA 02215" +304617,Macbook Pro Laptop,1,1700,12/10/19 09:45,"125 Pine St, San Francisco, CA 94016" +304618,27in FHD Monitor,1,149.99,12/11/19 11:30,"84 Willow St, Dallas, TX 75001" +304619,Flatscreen TV,1,300,12/22/19 00:22,"700 12th St, Boston, MA 02215" +304620,Bose SoundSport Headphones,1,99.99,12/06/19 22:10,"542 Johnson St, Dallas, TX 75001" +304621,Wired Headphones,1,11.99,12/10/19 12:58,"880 Center St, San Francisco, CA 94016" +304622,AA Batteries (4-pack),1,3.84,12/14/19 11:49,"388 Willow St, San Francisco, CA 94016" +304623,USB-C Charging Cable,1,11.95,12/17/19 17:28,"939 Meadow St, Seattle, WA 98101" +304624,iPhone,1,700,12/12/19 20:15,"998 7th St, San Francisco, CA 94016" +304625,ThinkPad Laptop,1,999.99,12/29/19 17:07,"431 Adams St, San Francisco, CA 94016" +304626,AA Batteries (4-pack),1,3.84,12/27/19 12:13,"758 Dogwood St, Portland, OR 97035" +304627,Bose SoundSport Headphones,1,99.99,12/26/19 09:34,"144 Church St, San Francisco, CA 94016" +304628,Flatscreen TV,1,300,12/06/19 17:37,"717 Willow St, Los Angeles, CA 90001" +304629,Vareebadd Phone,1,400,12/26/19 23:42,"343 Cedar St, San Francisco, CA 94016" +304630,27in FHD Monitor,1,149.99,12/24/19 15:48,"114 Willow St, San Francisco, CA 94016" +304631,Wired Headphones,1,11.99,12/07/19 10:53,"269 10th St, New York City, NY 10001" +304632,27in 4K Gaming Monitor,1,389.99,12/03/19 23:09,"107 Lake St, Boston, MA 02215" +304633,Macbook Pro Laptop,1,1700,12/23/19 15:49,"140 Main St, Dallas, TX 75001" +,,,,, +304634,Bose SoundSport Headphones,1,99.99,12/17/19 19:24,"238 6th St, San Francisco, CA 94016" +304635,Lightning Charging Cable,1,14.95,12/20/19 18:41,"247 Sunset St, San Francisco, CA 94016" +304636,Wired Headphones,1,11.99,12/09/19 20:54,"576 Lake St, Dallas, TX 75001" +304637,Google Phone,1,600,12/19/19 00:02,"405 9th St, New York City, NY 10001" +304638,AA Batteries (4-pack),1,3.84,12/01/19 19:14,"975 Washington St, Portland, OR 97035" +304639,AA Batteries (4-pack),3,3.84,12/24/19 21:15,"505 Sunset St, San Francisco, CA 94016" +304640,27in 4K Gaming Monitor,1,389.99,12/02/19 12:00,"798 West St, New York City, NY 10001" +304640,Google Phone,1,600,12/02/19 12:00,"798 West St, New York City, NY 10001" +304641,Flatscreen TV,1,300,12/26/19 14:34,"115 Walnut St, Boston, MA 02215" +304642,AAA Batteries (4-pack),1,2.99,12/20/19 10:16,"346 11th St, San Francisco, CA 94016" +304643,Apple Airpods Headphones,1,150,12/15/19 09:00,"728 Center St, Los Angeles, CA 90001" +304644,Bose SoundSport Headphones,2,99.99,12/01/19 14:20,"624 Forest St, San Francisco, CA 94016" +304645,Vareebadd Phone,1,400,12/02/19 23:34,"144 Elm St, Dallas, TX 75001" +304646,Vareebadd Phone,1,400,12/11/19 16:58,"306 11th St, New York City, NY 10001" +304646,Bose SoundSport Headphones,1,99.99,12/11/19 16:58,"306 11th St, New York City, NY 10001" +304646,Wired Headphones,1,11.99,12/11/19 16:58,"306 11th St, New York City, NY 10001" +304647,34in Ultrawide Monitor,1,379.99,12/16/19 12:43,"904 Lincoln St, San Francisco, CA 94016" +304648,Wired Headphones,1,11.99,12/20/19 11:37,"224 11th St, Dallas, TX 75001" +304649,AA Batteries (4-pack),2,3.84,12/15/19 19:15,"321 10th St, Seattle, WA 98101" +304650,AAA Batteries (4-pack),3,2.99,12/10/19 20:02,"911 Dogwood St, Boston, MA 02215" +304651,27in 4K Gaming Monitor,1,389.99,12/09/19 01:32,"883 West St, San Francisco, CA 94016" +304652,USB-C Charging Cable,1,11.95,12/08/19 08:54,"410 Jackson St, Boston, MA 02215" +304653,USB-C Charging Cable,1,11.95,12/18/19 01:07,"863 Pine St, San Francisco, CA 94016" +304654,Macbook Pro Laptop,1,1700,12/18/19 17:50,"858 Madison St, Atlanta, GA 30301" +304655,Apple Airpods Headphones,1,150,12/22/19 11:45,"646 Lakeview St, San Francisco, CA 94016" +304656,27in 4K Gaming Monitor,1,389.99,12/17/19 17:36,"614 Washington St, San Francisco, CA 94016" +304657,Bose SoundSport Headphones,1,99.99,12/11/19 14:22,"990 5th St, San Francisco, CA 94016" +304658,27in 4K Gaming Monitor,1,389.99,12/20/19 17:45,"729 14th St, Atlanta, GA 30301" +304659,AAA Batteries (4-pack),4,2.99,12/31/19 18:52,"434 Chestnut St, Seattle, WA 98101" +304660,Apple Airpods Headphones,1,150,12/15/19 19:57,"560 Meadow St, San Francisco, CA 94016" +304661,iPhone,1,700,12/29/19 10:40,"94 10th St, Portland, OR 97035" +304661,Wired Headphones,1,11.99,12/29/19 10:40,"94 10th St, Portland, OR 97035" +304662,Apple Airpods Headphones,1,150,12/19/19 22:17,"30 Chestnut St, Seattle, WA 98101" +304663,Apple Airpods Headphones,1,150,12/09/19 14:26,"548 Adams St, San Francisco, CA 94016" +304663,AA Batteries (4-pack),1,3.84,12/09/19 14:26,"548 Adams St, San Francisco, CA 94016" +304664,iPhone,1,700,12/06/19 16:24,"265 Lake St, Boston, MA 02215" +304665,USB-C Charging Cable,1,11.95,12/11/19 18:01,"38 Johnson St, Los Angeles, CA 90001" +304666,AAA Batteries (4-pack),1,2.99,12/14/19 18:14,"349 Ridge St, Boston, MA 02215" +304667,Flatscreen TV,1,300,12/02/19 22:25,"702 Meadow St, New York City, NY 10001" +304668,AA Batteries (4-pack),5,3.84,12/25/19 18:48,"252 Meadow St, Los Angeles, CA 90001" +304669,Lightning Charging Cable,1,14.95,12/07/19 13:36,"693 South St, Los Angeles, CA 90001" +304670,USB-C Charging Cable,2,11.95,12/19/19 20:32,"730 Forest St, San Francisco, CA 94016" +304671,AA Batteries (4-pack),2,3.84,12/08/19 13:45,"650 Washington St, New York City, NY 10001" +304672,USB-C Charging Cable,1,11.95,12/09/19 15:43,"870 6th St, Austin, TX 73301" +304673,AAA Batteries (4-pack),1,2.99,12/07/19 16:57,"502 Washington St, Portland, OR 97035" +304674,27in FHD Monitor,1,149.99,12/31/19 18:37,"308 11th St, San Francisco, CA 94016" +304675,AAA Batteries (4-pack),1,2.99,12/22/19 13:17,"45 11th St, San Francisco, CA 94016" +304676,27in FHD Monitor,1,149.99,12/19/19 09:26,"70 Main St, San Francisco, CA 94016" +304677,27in FHD Monitor,1,149.99,12/15/19 12:06,"775 Forest St, New York City, NY 10001" +304678,Apple Airpods Headphones,1,150,12/04/19 14:49,"178 Sunset St, San Francisco, CA 94016" +304679,Apple Airpods Headphones,1,150,12/01/19 17:21,"614 Jackson St, New York City, NY 10001" +304680,USB-C Charging Cable,2,11.95,12/15/19 08:34,"431 Willow St, San Francisco, CA 94016" +304681,Lightning Charging Cable,1,14.95,12/19/19 10:53,"845 Sunset St, Los Angeles, CA 90001" +304682,AAA Batteries (4-pack),1,2.99,12/01/19 12:37,"937 Maple St, Atlanta, GA 30301" +304683,Wired Headphones,1,11.99,12/12/19 19:34,"499 Hill St, San Francisco, CA 94016" +304684,Bose SoundSport Headphones,1,99.99,12/01/19 14:22,"208 2nd St, Seattle, WA 98101" +304685,Apple Airpods Headphones,1,150,12/21/19 12:25,"825 Lincoln St, Seattle, WA 98101" +304686,Apple Airpods Headphones,1,150,12/24/19 13:00,"29 North St, Atlanta, GA 30301" +304687,Lightning Charging Cable,1,14.95,12/02/19 14:24,"559 Meadow St, San Francisco, CA 94016" +304688,Lightning Charging Cable,1,14.95,12/05/19 09:53,"802 Cherry St, New York City, NY 10001" +304689,AAA Batteries (4-pack),1,2.99,12/16/19 14:04,"138 Spruce St, Atlanta, GA 30301" +304690,USB-C Charging Cable,1,11.95,12/13/19 23:13,"379 Lincoln St, Los Angeles, CA 90001" +304691,20in Monitor,1,109.99,12/18/19 19:53,"134 14th St, Seattle, WA 98101" +304692,Apple Airpods Headphones,1,150,12/11/19 22:13,"573 Johnson St, Seattle, WA 98101" +304693,20in Monitor,1,109.99,12/05/19 14:34,"877 Jefferson St, San Francisco, CA 94016" +304694,Google Phone,1,600,12/09/19 13:00,"783 9th St, Dallas, TX 75001" +304694,Wired Headphones,2,11.99,12/09/19 13:00,"783 9th St, Dallas, TX 75001" +304695,AA Batteries (4-pack),1,3.84,12/15/19 20:39,"290 9th St, Los Angeles, CA 90001" +304696,AA Batteries (4-pack),1,3.84,12/18/19 21:13,"986 Cedar St, Dallas, TX 75001" +304697,AA Batteries (4-pack),3,3.84,12/24/19 11:17,"486 Adams St, New York City, NY 10001" +304698,Apple Airpods Headphones,1,150,12/20/19 10:44,"935 North St, San Francisco, CA 94016" +304699,Lightning Charging Cable,1,14.95,12/16/19 12:24,"515 Spruce St, Seattle, WA 98101" +304700,Apple Airpods Headphones,1,150,12/07/19 14:12,"193 8th St, New York City, NY 10001" +304701,AAA Batteries (4-pack),1,2.99,12/19/19 15:25,"862 Madison St, Dallas, TX 75001" +304702,iPhone,1,700,12/17/19 18:12,"65 Forest St, Boston, MA 02215" +304703,USB-C Charging Cable,1,11.95,12/15/19 20:33,"227 Dogwood St, San Francisco, CA 94016" +304704,Lightning Charging Cable,1,14.95,12/10/19 13:50,"407 Main St, Los Angeles, CA 90001" +304705,AA Batteries (4-pack),1,3.84,12/27/19 11:50,"119 Adams St, Los Angeles, CA 90001" +304706,USB-C Charging Cable,1,11.95,12/02/19 07:59,"48 2nd St, San Francisco, CA 94016" +304707,Flatscreen TV,1,300,12/18/19 20:02,"946 Dogwood St, Austin, TX 73301" +304708,Lightning Charging Cable,1,14.95,12/02/19 19:43,"732 Center St, Los Angeles, CA 90001" +304709,Lightning Charging Cable,1,14.95,12/03/19 11:43,"96 Meadow St, Dallas, TX 75001" +304710,iPhone,1,700,12/14/19 16:45,"941 13th St, Los Angeles, CA 90001" +304711,Lightning Charging Cable,1,14.95,12/06/19 20:37,"233 1st St, Los Angeles, CA 90001" +304712,AAA Batteries (4-pack),1,2.99,12/24/19 20:47,"99 Church St, New York City, NY 10001" +304713,Lightning Charging Cable,1,14.95,12/04/19 07:10,"979 5th St, Atlanta, GA 30301" +304714,iPhone,1,700,12/25/19 18:36,"85 Cherry St, Austin, TX 73301" +304715,AAA Batteries (4-pack),3,2.99,12/05/19 21:01,"464 Hill St, Atlanta, GA 30301" +304716,USB-C Charging Cable,1,11.95,12/26/19 14:14,"496 Cedar St, Seattle, WA 98101" +304717,AA Batteries (4-pack),2,3.84,12/02/19 20:55,"500 9th St, Atlanta, GA 30301" +304718,Wired Headphones,1,11.99,12/07/19 22:48,"558 Lake St, Los Angeles, CA 90001" +304719,USB-C Charging Cable,1,11.95,12/02/19 14:17,"134 14th St, Dallas, TX 75001" +304720,34in Ultrawide Monitor,1,379.99,12/31/19 13:10,"507 14th St, New York City, NY 10001" +304721,AAA Batteries (4-pack),2,2.99,12/24/19 17:00,"644 Dogwood St, Dallas, TX 75001" +304722,27in FHD Monitor,1,149.99,12/30/19 10:35,"829 Walnut St, Los Angeles, CA 90001" +304723,Google Phone,1,600,12/23/19 09:43,"682 13th St, Portland, OR 97035" +304724,AAA Batteries (4-pack),1,2.99,12/11/19 14:29,"479 9th St, Los Angeles, CA 90001" +304725,USB-C Charging Cable,1,11.95,12/21/19 21:51,"116 13th St, Seattle, WA 98101" +304725,Wired Headphones,1,11.99,12/21/19 21:51,"116 13th St, Seattle, WA 98101" +304726,AA Batteries (4-pack),3,3.84,12/23/19 14:32,"631 Hickory St, Atlanta, GA 30301" +304727,27in 4K Gaming Monitor,1,389.99,12/13/19 00:59,"879 Ridge St, Portland, OR 97035" +304728,USB-C Charging Cable,1,11.95,12/01/19 09:50,"323 14th St, San Francisco, CA 94016" +304729,27in 4K Gaming Monitor,1,389.99,12/27/19 12:15,"247 14th St, San Francisco, CA 94016" +304730,Flatscreen TV,1,300,12/17/19 12:04,"449 Lakeview St, Boston, MA 02215" +304731,Bose SoundSport Headphones,1,99.99,12/13/19 10:46,"462 North St, San Francisco, CA 94016" +304732,AAA Batteries (4-pack),2,2.99,12/21/19 08:21,"449 Church St, San Francisco, CA 94016" +304733,LG Washing Machine,1,600.0,12/31/19 12:38,"161 West St, New York City, NY 10001" +304734,AA Batteries (4-pack),2,3.84,12/01/19 21:17,"562 1st St, Seattle, WA 98101" +304735,Wired Headphones,1,11.99,12/23/19 12:47,"704 Lake St, Boston, MA 02215" +304736,Apple Airpods Headphones,1,150,12/26/19 12:49,"137 Hill St, Seattle, WA 98101" +304737,AAA Batteries (4-pack),2,2.99,12/28/19 12:14,"627 Highland St, Seattle, WA 98101" +304738,USB-C Charging Cable,1,11.95,12/29/19 09:41,"289 North St, Dallas, TX 75001" +304739,27in FHD Monitor,1,149.99,12/10/19 20:55,"938 4th St, San Francisco, CA 94016" +304740,iPhone,1,700,12/16/19 08:11,"275 5th St, San Francisco, CA 94016" +304740,Lightning Charging Cable,1,14.95,12/16/19 08:11,"275 5th St, San Francisco, CA 94016" +304741,iPhone,1,700,12/02/19 21:10,"401 Forest St, San Francisco, CA 94016" +304742,Google Phone,1,600,12/26/19 09:14,"860 Jackson St, Atlanta, GA 30301" +304743,ThinkPad Laptop,1,999.99,12/04/19 15:28,"101 Spruce St, San Francisco, CA 94016" +304744,iPhone,1,700,12/24/19 10:29,"360 South St, Atlanta, GA 30301" +304745,USB-C Charging Cable,1,11.95,12/11/19 10:12,"277 Lake St, Boston, MA 02215" +304746,AA Batteries (4-pack),3,3.84,12/05/19 19:14,"239 Johnson St, Austin, TX 73301" +304747,27in FHD Monitor,1,149.99,12/12/19 14:31,"7 Wilson St, San Francisco, CA 94016" +304748,Lightning Charging Cable,1,14.95,12/10/19 15:56,"628 Dogwood St, San Francisco, CA 94016" +304749,Macbook Pro Laptop,1,1700,12/12/19 19:33,"882 Madison St, San Francisco, CA 94016" +304750,Wired Headphones,1,11.99,12/11/19 19:49,"701 Spruce St, Los Angeles, CA 90001" +304751,AAA Batteries (4-pack),1,2.99,12/03/19 13:37,"753 Walnut St, Dallas, TX 75001" +304752,USB-C Charging Cable,1,11.95,12/22/19 18:26,"907 Washington St, San Francisco, CA 94016" +304753,AAA Batteries (4-pack),1,2.99,12/31/19 15:45,"348 Spruce St, Atlanta, GA 30301" +304754,USB-C Charging Cable,1,11.95,12/03/19 13:27,"11 Jefferson St, San Francisco, CA 94016" +304755,LG Dryer,1,600.0,12/01/19 19:07,"652 6th St, Austin, TX 73301" +304756,AA Batteries (4-pack),1,3.84,12/09/19 15:44,"823 Washington St, San Francisco, CA 94016" +304757,AAA Batteries (4-pack),1,2.99,12/05/19 13:42,"51 Park St, Los Angeles, CA 90001" +304758,27in 4K Gaming Monitor,1,389.99,12/14/19 19:25,"230 Washington St, Los Angeles, CA 90001" +304759,Wired Headphones,1,11.99,12/16/19 13:53,"991 Lincoln St, Seattle, WA 98101" +304760,27in FHD Monitor,1,149.99,12/30/19 17:57,"839 Chestnut St, San Francisco, CA 94016" +304761,AAA Batteries (4-pack),1,2.99,12/08/19 14:06,"363 North St, Dallas, TX 75001" +304762,AAA Batteries (4-pack),2,2.99,12/15/19 12:02,"710 Church St, New York City, NY 10001" +304763,27in 4K Gaming Monitor,1,389.99,12/30/19 16:41,"379 Cherry St, Dallas, TX 75001" +304764,Macbook Pro Laptop,1,1700,12/24/19 05:47,"931 Center St, Atlanta, GA 30301" +304765,Flatscreen TV,1,300,12/02/19 21:59,"146 Willow St, Boston, MA 02215" +304766,Lightning Charging Cable,1,14.95,12/21/19 19:52,"665 Forest St, New York City, NY 10001" +304767,Wired Headphones,2,11.99,12/10/19 21:53,"732 1st St, Los Angeles, CA 90001" +304768,USB-C Charging Cable,1,11.95,12/15/19 11:31,"100 2nd St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +304769,Wired Headphones,1,11.99,12/04/19 15:41,"583 Johnson St, San Francisco, CA 94016" +304770,USB-C Charging Cable,2,11.95,12/25/19 16:25,"103 Dogwood St, Atlanta, GA 30301" +304771,Flatscreen TV,1,300,12/09/19 11:21,"209 Center St, New York City, NY 10001" +304772,USB-C Charging Cable,1,11.95,12/01/19 13:01,"38 12th St, Boston, MA 02215" +304773,Lightning Charging Cable,1,14.95,12/02/19 17:36,"997 6th St, San Francisco, CA 94016" +304774,Wired Headphones,1,11.99,12/18/19 19:49,"849 Main St, Portland, ME 04101" +304775,Bose SoundSport Headphones,1,99.99,12/11/19 12:48,"651 Sunset St, Atlanta, GA 30301" +304775,AA Batteries (4-pack),1,3.84,12/11/19 12:48,"651 Sunset St, Atlanta, GA 30301" +304776,AA Batteries (4-pack),1,3.84,12/20/19 21:09,"52 Lincoln St, Dallas, TX 75001" +304777,Wired Headphones,1,11.99,12/21/19 15:56,"360 14th St, Los Angeles, CA 90001" +304778,Apple Airpods Headphones,1,150,12/30/19 01:23,"961 13th St, Los Angeles, CA 90001" +304779,Vareebadd Phone,1,400,12/08/19 11:28,"534 11th St, Los Angeles, CA 90001" +304779,USB-C Charging Cable,1,11.95,12/08/19 11:28,"534 11th St, Los Angeles, CA 90001" +304779,Wired Headphones,1,11.99,12/08/19 11:28,"534 11th St, Los Angeles, CA 90001" +304779,Lightning Charging Cable,1,14.95,12/08/19 11:28,"534 11th St, Los Angeles, CA 90001" +304780,Lightning Charging Cable,1,14.95,12/13/19 12:20,"863 11th St, San Francisco, CA 94016" +304781,Lightning Charging Cable,1,14.95,12/10/19 19:38,"260 Jackson St, Los Angeles, CA 90001" +304782,USB-C Charging Cable,1,11.95,12/10/19 20:41,"173 7th St, San Francisco, CA 94016" +304783,20in Monitor,1,109.99,12/10/19 19:11,"645 Johnson St, Atlanta, GA 30301" +304784,Apple Airpods Headphones,1,150,12/07/19 11:09,"608 Meadow St, San Francisco, CA 94016" +304785,AAA Batteries (4-pack),1,2.99,12/10/19 11:56,"872 Johnson St, Dallas, TX 75001" +304786,Wired Headphones,1,11.99,12/20/19 10:43,"531 Madison St, New York City, NY 10001" +304787,27in FHD Monitor,1,149.99,12/11/19 08:22,"987 9th St, Dallas, TX 75001" +304788,Bose SoundSport Headphones,1,99.99,12/06/19 11:24,"287 Johnson St, San Francisco, CA 94016" +304789,27in FHD Monitor,1,149.99,12/28/19 16:37,"720 Jackson St, Atlanta, GA 30301" +304790,Wired Headphones,1,11.99,12/17/19 21:49,"498 Jefferson St, Atlanta, GA 30301" +304791,Wired Headphones,2,11.99,12/23/19 01:47,"616 Forest St, Los Angeles, CA 90001" +304792,Bose SoundSport Headphones,1,99.99,12/26/19 15:47,"387 Adams St, Los Angeles, CA 90001" +304793,USB-C Charging Cable,1,11.95,12/22/19 12:50,"614 West St, San Francisco, CA 94016" +304794,27in FHD Monitor,1,149.99,12/08/19 22:46,"705 Cedar St, San Francisco, CA 94016" +304795,AA Batteries (4-pack),1,3.84,12/13/19 12:16,"346 Highland St, Atlanta, GA 30301" +304796,Flatscreen TV,1,300,12/03/19 20:09,"480 Willow St, Austin, TX 73301" +304797,AA Batteries (4-pack),1,3.84,12/31/19 15:22,"259 Main St, Boston, MA 02215" +304798,Bose SoundSport Headphones,1,99.99,12/27/19 02:37,"128 Sunset St, Austin, TX 73301" +304799,AAA Batteries (4-pack),1,2.99,12/15/19 17:16,"581 Sunset St, Boston, MA 02215" +304800,Flatscreen TV,1,300,12/17/19 15:11,"977 Wilson St, San Francisco, CA 94016" +304801,AA Batteries (4-pack),1,3.84,12/31/19 18:41,"171 Wilson St, New York City, NY 10001" +304802,27in FHD Monitor,1,149.99,12/02/19 08:29,"374 14th St, San Francisco, CA 94016" +304803,Apple Airpods Headphones,1,150,12/26/19 11:15,"150 Ridge St, Boston, MA 02215" +304804,AA Batteries (4-pack),2,3.84,12/01/19 15:48,"363 Spruce St, San Francisco, CA 94016" +304805,Macbook Pro Laptop,1,1700,12/14/19 22:05,"295 West St, Dallas, TX 75001" +304806,AA Batteries (4-pack),1,3.84,12/01/19 19:22,"829 Ridge St, Los Angeles, CA 90001" +304807,AAA Batteries (4-pack),1,2.99,12/04/19 21:03,"510 Chestnut St, Los Angeles, CA 90001" +304808,27in 4K Gaming Monitor,1,389.99,12/22/19 10:26,"926 2nd St, Seattle, WA 98101" +304809,Apple Airpods Headphones,1,150,12/14/19 22:55,"388 Ridge St, San Francisco, CA 94016" +304810,USB-C Charging Cable,1,11.95,12/20/19 20:45,"970 Lake St, Seattle, WA 98101" +304811,Wired Headphones,1,11.99,12/31/19 17:49,"11 Church St, Atlanta, GA 30301" +304812,Wired Headphones,1,11.99,12/09/19 18:53,"198 6th St, Boston, MA 02215" +304813,Wired Headphones,1,11.99,12/07/19 18:26,"795 8th St, San Francisco, CA 94016" +304814,27in FHD Monitor,1,149.99,12/21/19 18:11,"92 Willow St, Dallas, TX 75001" +304815,Lightning Charging Cable,1,14.95,12/03/19 16:09,"211 Highland St, San Francisco, CA 94016" +304816,AAA Batteries (4-pack),1,2.99,12/06/19 21:56,"598 Maple St, Austin, TX 73301" +304817,Wired Headphones,1,11.99,12/30/19 13:20,"874 12th St, Boston, MA 02215" +304818,Bose SoundSport Headphones,1,99.99,12/13/19 14:36,"668 Wilson St, San Francisco, CA 94016" +304819,iPhone,1,700,12/05/19 21:10,"487 Center St, New York City, NY 10001" +304819,Bose SoundSport Headphones,1,99.99,12/05/19 21:10,"487 Center St, New York City, NY 10001" +304820,AAA Batteries (4-pack),2,2.99,12/12/19 18:22,"748 Pine St, San Francisco, CA 94016" +304821,Vareebadd Phone,1,400,12/20/19 19:41,"957 Wilson St, San Francisco, CA 94016" +304821,USB-C Charging Cable,1,11.95,12/20/19 19:41,"957 Wilson St, San Francisco, CA 94016" +304822,Bose SoundSport Headphones,1,99.99,12/10/19 15:13,"433 1st St, Austin, TX 73301" +304823,AA Batteries (4-pack),1,3.84,12/18/19 11:55,"746 West St, San Francisco, CA 94016" +304824,Lightning Charging Cable,1,14.95,12/12/19 10:10,"630 Chestnut St, San Francisco, CA 94016" +304825,Wired Headphones,1,11.99,12/15/19 19:16,"562 West St, New York City, NY 10001" +304825,Lightning Charging Cable,2,14.95,12/15/19 19:16,"562 West St, New York City, NY 10001" +304826,AA Batteries (4-pack),1,3.84,12/17/19 15:15,"631 Lakeview St, Los Angeles, CA 90001" +304827,Apple Airpods Headphones,1,150,12/09/19 22:47,"985 1st St, Atlanta, GA 30301" +304828,Lightning Charging Cable,1,14.95,12/07/19 12:33,"901 7th St, New York City, NY 10001" +304829,AAA Batteries (4-pack),2,2.99,12/07/19 13:54,"818 Maple St, New York City, NY 10001" +304830,Macbook Pro Laptop,1,1700,12/23/19 21:19,"350 14th St, Los Angeles, CA 90001" +304831,AAA Batteries (4-pack),1,2.99,12/10/19 07:27,"253 Park St, Portland, OR 97035" +304832,AA Batteries (4-pack),2,3.84,12/13/19 15:28,"741 1st St, San Francisco, CA 94016" +304833,AAA Batteries (4-pack),1,2.99,12/23/19 08:53,"731 Madison St, San Francisco, CA 94016" +304834,Apple Airpods Headphones,1,150,12/17/19 19:56,"25 Madison St, San Francisco, CA 94016" +304835,Wired Headphones,1,11.99,12/14/19 22:02,"565 10th St, Los Angeles, CA 90001" +304836,USB-C Charging Cable,2,11.95,12/08/19 23:37,"434 Center St, Boston, MA 02215" +304837,Wired Headphones,1,11.99,12/18/19 21:52,"768 Willow St, Boston, MA 02215" +304838,Flatscreen TV,1,300,12/24/19 02:14,"152 10th St, Boston, MA 02215" +304839,Lightning Charging Cable,1,14.95,12/17/19 10:57,"407 5th St, Dallas, TX 75001" +304840,Wired Headphones,1,11.99,12/15/19 18:17,"426 Church St, San Francisco, CA 94016" +304841,Flatscreen TV,1,300,12/22/19 18:07,"383 Willow St, San Francisco, CA 94016" +304842,AA Batteries (4-pack),1,3.84,12/15/19 13:25,"157 14th St, Los Angeles, CA 90001" +304843,Lightning Charging Cable,1,14.95,12/24/19 09:47,"236 Church St, Los Angeles, CA 90001" +304844,AA Batteries (4-pack),1,3.84,12/05/19 12:04,"563 6th St, Boston, MA 02215" +304845,Wired Headphones,2,11.99,12/05/19 17:46,"443 Adams St, New York City, NY 10001" +304846,Lightning Charging Cable,1,14.95,12/03/19 20:23,"150 8th St, San Francisco, CA 94016" +304847,Lightning Charging Cable,1,14.95,12/11/19 12:09,"809 Center St, Los Angeles, CA 90001" +304848,AAA Batteries (4-pack),4,2.99,12/08/19 20:47,"802 14th St, Portland, OR 97035" +304849,Wired Headphones,1,11.99,12/26/19 19:28,"688 2nd St, San Francisco, CA 94016" +304850,USB-C Charging Cable,1,11.95,12/19/19 11:28,"578 4th St, Dallas, TX 75001" +304851,20in Monitor,1,109.99,12/26/19 17:04,"172 South St, Austin, TX 73301" +304852,Wired Headphones,1,11.99,12/07/19 20:08,"276 Jefferson St, Boston, MA 02215" +304853,AA Batteries (4-pack),1,3.84,12/21/19 12:47,"322 5th St, Seattle, WA 98101" +304853,Wired Headphones,1,11.99,12/21/19 12:47,"322 5th St, Seattle, WA 98101" +304854,AA Batteries (4-pack),1,3.84,12/21/19 13:06,"570 4th St, Boston, MA 02215" +304855,ThinkPad Laptop,1,999.99,12/23/19 12:37,"177 1st St, Los Angeles, CA 90001" +304856,Bose SoundSport Headphones,1,99.99,12/25/19 10:59,"325 Lincoln St, Atlanta, GA 30301" +304857,AAA Batteries (4-pack),1,2.99,12/02/19 17:13,"515 13th St, New York City, NY 10001" +304858,USB-C Charging Cable,1,11.95,12/22/19 13:18,"294 Chestnut St, San Francisco, CA 94016" +304859,Apple Airpods Headphones,1,150,12/07/19 10:19,"655 Adams St, Los Angeles, CA 90001" +304860,LG Washing Machine,1,600.0,12/01/19 21:52,"834 Hickory St, Portland, OR 97035" +304861,AA Batteries (4-pack),1,3.84,12/14/19 00:03,"788 Adams St, Los Angeles, CA 90001" +304862,AAA Batteries (4-pack),1,2.99,12/31/19 06:10,"5 Washington St, San Francisco, CA 94016" +304863,USB-C Charging Cable,1,11.95,12/30/19 14:16,"429 Pine St, Seattle, WA 98101" +304864,34in Ultrawide Monitor,1,379.99,12/28/19 22:52,"75 11th St, New York City, NY 10001" +304865,AA Batteries (4-pack),1,3.84,12/21/19 17:39,"142 River St, Boston, MA 02215" +304866,Google Phone,1,600,12/07/19 14:44,"76 Adams St, Boston, MA 02215" +304867,27in 4K Gaming Monitor,1,389.99,12/03/19 13:10,"481 Park St, San Francisco, CA 94016" +304868,AAA Batteries (4-pack),1,2.99,12/14/19 13:52,"601 10th St, San Francisco, CA 94016" +304869,Lightning Charging Cable,1,14.95,12/04/19 11:13,"521 Hickory St, Dallas, TX 75001" +304870,Apple Airpods Headphones,1,150,12/30/19 17:16,"912 Hill St, San Francisco, CA 94016" +304871,27in FHD Monitor,1,149.99,12/26/19 13:14,"905 Ridge St, San Francisco, CA 94016" +304872,Macbook Pro Laptop,1,1700,12/09/19 01:11,"577 10th St, New York City, NY 10001" +304873,Flatscreen TV,1,300,12/17/19 23:18,"374 Elm St, Portland, OR 97035" +304874,ThinkPad Laptop,1,999.99,12/16/19 19:27,"991 6th St, New York City, NY 10001" +304875,Wired Headphones,1,11.99,12/21/19 19:11,"223 10th St, Los Angeles, CA 90001" +304876,27in 4K Gaming Monitor,1,389.99,12/25/19 20:19,"355 Center St, San Francisco, CA 94016" +304877,USB-C Charging Cable,1,11.95,12/21/19 10:23,"922 Jefferson St, Boston, MA 02215" +304878,20in Monitor,1,109.99,12/12/19 13:49,"657 Spruce St, New York City, NY 10001" +304879,27in 4K Gaming Monitor,1,389.99,12/10/19 07:46,"418 Hickory St, San Francisco, CA 94016" +304880,USB-C Charging Cable,1,11.95,12/24/19 20:58,"342 9th St, Los Angeles, CA 90001" +304881,AAA Batteries (4-pack),1,2.99,12/21/19 16:32,"882 Center St, Los Angeles, CA 90001" +304882,Apple Airpods Headphones,1,150,12/18/19 09:16,"216 Jackson St, Los Angeles, CA 90001" +304883,ThinkPad Laptop,1,999.99,12/22/19 16:01,"817 Sunset St, San Francisco, CA 94016" +304884,Lightning Charging Cable,1,14.95,12/19/19 20:59,"280 South St, New York City, NY 10001" +304885,AAA Batteries (4-pack),2,2.99,12/30/19 14:56,"430 Church St, Austin, TX 73301" +304886,AAA Batteries (4-pack),4,2.99,12/10/19 23:22,"752 Hill St, San Francisco, CA 94016" +304887,USB-C Charging Cable,1,11.95,12/16/19 16:25,"542 8th St, Los Angeles, CA 90001" +304888,27in 4K Gaming Monitor,1,389.99,12/19/19 12:03,"567 Johnson St, San Francisco, CA 94016" +304889,USB-C Charging Cable,1,11.95,12/22/19 05:00,"760 Jackson St, Los Angeles, CA 90001" +304890,ThinkPad Laptop,1,999.99,12/03/19 06:01,"487 Park St, Boston, MA 02215" +304891,AAA Batteries (4-pack),1,2.99,12/28/19 00:25,"280 12th St, Austin, TX 73301" +304892,LG Washing Machine,1,600.0,12/25/19 17:13,"458 Maple St, Dallas, TX 75001" +304893,Lightning Charging Cable,1,14.95,12/31/19 08:56,"489 10th St, Portland, ME 04101" +304894,20in Monitor,1,109.99,12/01/19 19:51,"44 Wilson St, New York City, NY 10001" +304895,Apple Airpods Headphones,1,150,12/13/19 18:41,"134 Hill St, Los Angeles, CA 90001" +304896,Wired Headphones,1,11.99,12/23/19 19:19,"905 5th St, Boston, MA 02215" +304897,AA Batteries (4-pack),1,3.84,12/05/19 18:26,"214 Main St, Dallas, TX 75001" +304898,AA Batteries (4-pack),3,3.84,12/23/19 15:17,"768 Dogwood St, San Francisco, CA 94016" +304899,AA Batteries (4-pack),3,3.84,12/02/19 20:35,"919 4th St, San Francisco, CA 94016" +304900,USB-C Charging Cable,2,11.95,12/31/19 07:55,"768 West St, New York City, NY 10001" +304901,27in FHD Monitor,1,149.99,12/03/19 12:20,"133 Walnut St, Austin, TX 73301" +304902,Wired Headphones,1,11.99,12/20/19 16:49,"36 4th St, San Francisco, CA 94016" +304903,Wired Headphones,1,11.99,12/17/19 14:07,"366 5th St, Los Angeles, CA 90001" +,,,,, +304904,AAA Batteries (4-pack),3,2.99,12/03/19 08:07,"391 7th St, Dallas, TX 75001" +304905,Google Phone,1,600,12/07/19 09:20,"351 Jackson St, New York City, NY 10001" +304905,Wired Headphones,2,11.99,12/07/19 09:20,"351 Jackson St, New York City, NY 10001" +304906,AAA Batteries (4-pack),1,2.99,12/14/19 13:55,"450 Center St, Atlanta, GA 30301" +304907,Bose SoundSport Headphones,1,99.99,12/03/19 06:57,"955 Maple St, Portland, OR 97035" +304908,Apple Airpods Headphones,1,150,12/05/19 18:30,"545 Willow St, Boston, MA 02215" +304909,Bose SoundSport Headphones,1,99.99,12/05/19 16:59,"246 Washington St, Los Angeles, CA 90001" +304910,Wired Headphones,1,11.99,12/16/19 20:56,"528 Highland St, Dallas, TX 75001" +304911,Apple Airpods Headphones,1,150,12/03/19 10:44,"792 Church St, Austin, TX 73301" +304912,Lightning Charging Cable,1,14.95,12/12/19 19:24,"19 South St, Portland, OR 97035" +304913,LG Washing Machine,1,600.0,12/12/19 20:39,"430 7th St, Dallas, TX 75001" +304914,Flatscreen TV,1,300,12/20/19 17:05,"681 Hill St, Seattle, WA 98101" +304915,iPhone,1,700,12/03/19 17:13,"645 Dogwood St, New York City, NY 10001" +304916,Wired Headphones,1,11.99,12/05/19 10:35,"376 2nd St, Dallas, TX 75001" +304917,Wired Headphones,1,11.99,12/18/19 20:24,"137 8th St, Boston, MA 02215" +304918,AAA Batteries (4-pack),3,2.99,12/30/19 21:44,"673 Meadow St, San Francisco, CA 94016" +304919,USB-C Charging Cable,1,11.95,12/01/19 10:55,"455 Dogwood St, San Francisco, CA 94016" +304920,34in Ultrawide Monitor,1,379.99,12/14/19 19:26,"891 South St, Seattle, WA 98101" +304921,Flatscreen TV,1,300,12/02/19 08:03,"832 Ridge St, New York City, NY 10001" +304922,AA Batteries (4-pack),2,3.84,12/25/19 07:38,"188 Willow St, Dallas, TX 75001" +304923,Apple Airpods Headphones,1,150,12/12/19 22:09,"267 Dogwood St, Seattle, WA 98101" +304924,iPhone,1,700,12/02/19 13:52,"779 Wilson St, Boston, MA 02215" +304925,Wired Headphones,1,11.99,12/01/19 20:30,"291 11th St, San Francisco, CA 94016" +304926,Apple Airpods Headphones,1,150,12/09/19 01:06,"987 Sunset St, Boston, MA 02215" +304927,Vareebadd Phone,1,400,12/25/19 21:35,"192 Park St, Atlanta, GA 30301" +304928,27in 4K Gaming Monitor,1,389.99,12/25/19 16:48,"130 Cedar St, New York City, NY 10001" +304929,iPhone,1,700,12/15/19 23:41,"588 Hill St, Atlanta, GA 30301" +304930,27in FHD Monitor,1,149.99,12/20/19 15:08,"911 Spruce St, San Francisco, CA 94016" +304931,AA Batteries (4-pack),1,3.84,12/22/19 23:47,"767 Forest St, New York City, NY 10001" +304932,AAA Batteries (4-pack),1,2.99,12/24/19 08:28,"264 North St, New York City, NY 10001" +304933,AA Batteries (4-pack),2,3.84,12/08/19 17:14,"121 Washington St, San Francisco, CA 94016" +304934,Apple Airpods Headphones,1,150,12/31/19 12:07,"528 Highland St, New York City, NY 10001" +304935,AA Batteries (4-pack),1,3.84,12/04/19 23:39,"929 Willow St, Austin, TX 73301" +304936,AA Batteries (4-pack),1,3.84,12/25/19 17:02,"440 4th St, New York City, NY 10001" +304937,Lightning Charging Cable,1,14.95,12/28/19 11:17,"920 Sunset St, Los Angeles, CA 90001" +304938,Apple Airpods Headphones,1,150,12/19/19 21:57,"951 11th St, Los Angeles, CA 90001" +304939,27in 4K Gaming Monitor,1,389.99,12/25/19 13:37,"985 Sunset St, New York City, NY 10001" +304940,Apple Airpods Headphones,1,150,12/24/19 21:25,"525 Elm St, New York City, NY 10001" +304941,Bose SoundSport Headphones,1,99.99,12/10/19 17:49,"981 Adams St, Boston, MA 02215" +304942,AAA Batteries (4-pack),1,2.99,12/18/19 22:03,"416 West St, Seattle, WA 98101" +304943,AAA Batteries (4-pack),1,2.99,12/01/19 19:00,"302 2nd St, Los Angeles, CA 90001" +304944,AA Batteries (4-pack),1,3.84,12/12/19 12:57,"823 14th St, Los Angeles, CA 90001" +304945,AAA Batteries (4-pack),2,2.99,12/25/19 16:45,"111 Church St, New York City, NY 10001" +304946,34in Ultrawide Monitor,1,379.99,12/12/19 16:41,"913 Forest St, Los Angeles, CA 90001" +304947,Bose SoundSport Headphones,1,99.99,12/19/19 23:52,"286 Hill St, Atlanta, GA 30301" +304948,ThinkPad Laptop,1,999.99,12/14/19 22:38,"899 Ridge St, San Francisco, CA 94016" +304949,27in 4K Gaming Monitor,1,389.99,12/22/19 13:43,"435 Johnson St, New York City, NY 10001" +304950,Apple Airpods Headphones,1,150,12/16/19 09:11,"89 Chestnut St, Seattle, WA 98101" +304951,ThinkPad Laptop,1,999.99,12/20/19 20:18,"260 8th St, Atlanta, GA 30301" +304952,Lightning Charging Cable,1,14.95,12/15/19 08:38,"853 Adams St, Dallas, TX 75001" +304953,AAA Batteries (4-pack),2,2.99,12/01/19 21:40,"269 Park St, San Francisco, CA 94016" +304954,27in 4K Gaming Monitor,1,389.99,12/04/19 18:08,"400 Hickory St, New York City, NY 10001" +304955,AA Batteries (4-pack),3,3.84,12/18/19 21:41,"950 Hill St, San Francisco, CA 94016" +304956,20in Monitor,1,109.99,12/04/19 10:19,"251 Chestnut St, Seattle, WA 98101" +304957,27in 4K Gaming Monitor,1,389.99,12/02/19 10:59,"279 9th St, New York City, NY 10001" +304958,Wired Headphones,1,11.99,12/24/19 17:33,"584 West St, San Francisco, CA 94016" +304959,AA Batteries (4-pack),2,3.84,12/04/19 19:27,"656 Washington St, Los Angeles, CA 90001" +304960,AA Batteries (4-pack),1,3.84,12/23/19 19:02,"22 11th St, Boston, MA 02215" +304961,Wired Headphones,2,11.99,12/31/19 15:16,"6 Jackson St, New York City, NY 10001" +304962,Apple Airpods Headphones,1,150,12/12/19 02:13,"568 South St, Dallas, TX 75001" +304963,LG Washing Machine,1,600.0,12/16/19 08:48,"142 14th St, Austin, TX 73301" +304964,Flatscreen TV,1,300,12/30/19 14:29,"227 Elm St, San Francisco, CA 94016" +304965,Macbook Pro Laptop,1,1700,12/24/19 16:32,"216 Chestnut St, Austin, TX 73301" +304966,AAA Batteries (4-pack),1,2.99,12/24/19 12:08,"724 12th St, New York City, NY 10001" +304967,USB-C Charging Cable,1,11.95,12/27/19 15:11,"928 Ridge St, Los Angeles, CA 90001" +304968,Bose SoundSport Headphones,1,99.99,12/20/19 17:39,"894 Elm St, New York City, NY 10001" +304969,AA Batteries (4-pack),2,3.84,12/16/19 12:53,"798 Lincoln St, San Francisco, CA 94016" +304970,Google Phone,1,600,12/28/19 20:21,"625 Meadow St, San Francisco, CA 94016" +304971,AAA Batteries (4-pack),1,2.99,12/02/19 19:08,"915 8th St, Los Angeles, CA 90001" +304972,AA Batteries (4-pack),1,3.84,12/10/19 18:14,"923 12th St, San Francisco, CA 94016" +304973,USB-C Charging Cable,1,11.95,12/18/19 02:42,"105 6th St, New York City, NY 10001" +304974,Wired Headphones,1,11.99,12/02/19 07:35,"360 Church St, Los Angeles, CA 90001" +304975,Bose SoundSport Headphones,1,99.99,12/14/19 10:23,"737 Jefferson St, Portland, OR 97035" +304976,AAA Batteries (4-pack),2,2.99,12/26/19 09:41,"376 Jackson St, San Francisco, CA 94016" +304976,AAA Batteries (4-pack),1,2.99,12/26/19 09:41,"376 Jackson St, San Francisco, CA 94016" +304977,Bose SoundSport Headphones,1,99.99,12/13/19 10:20,"374 4th St, Los Angeles, CA 90001" +304978,Bose SoundSport Headphones,1,99.99,12/10/19 20:13,"909 Center St, Dallas, TX 75001" +304979,Apple Airpods Headphones,1,150,12/10/19 07:37,"810 River St, New York City, NY 10001" +304980,Macbook Pro Laptop,1,1700,12/12/19 10:08,"912 West St, New York City, NY 10001" +304981,Macbook Pro Laptop,1,1700,12/13/19 10:53,"945 Jefferson St, Seattle, WA 98101" +304981,Lightning Charging Cable,1,14.95,12/13/19 10:53,"945 Jefferson St, Seattle, WA 98101" +304982,Apple Airpods Headphones,1,150,12/03/19 17:19,"627 Lake St, Los Angeles, CA 90001" +304983,20in Monitor,1,109.99,12/12/19 09:42,"67 5th St, Atlanta, GA 30301" +304984,Apple Airpods Headphones,1,150,12/13/19 18:18,"702 Washington St, New York City, NY 10001" +304985,Macbook Pro Laptop,1,1700,12/13/19 10:42,"394 Sunset St, Los Angeles, CA 90001" +304986,Apple Airpods Headphones,1,150,12/31/19 15:20,"154 Jefferson St, San Francisco, CA 94016" +304987,USB-C Charging Cable,1,11.95,12/26/19 20:35,"802 9th St, Los Angeles, CA 90001" +304988,AAA Batteries (4-pack),1,2.99,12/17/19 17:27,"187 Highland St, Boston, MA 02215" +304989,iPhone,1,700,12/25/19 18:43,"180 13th St, Boston, MA 02215" +304990,AA Batteries (4-pack),2,3.84,12/04/19 18:14,"871 Jefferson St, Boston, MA 02215" +304991,Lightning Charging Cable,1,14.95,12/30/19 22:54,"257 Pine St, Atlanta, GA 30301" +304992,Apple Airpods Headphones,1,150,12/30/19 00:13,"274 Chestnut St, San Francisco, CA 94016" +304993,Wired Headphones,2,11.99,12/15/19 00:36,"454 Cherry St, Boston, MA 02215" +304994,AAA Batteries (4-pack),1,2.99,12/15/19 17:10,"401 Highland St, San Francisco, CA 94016" +304995,AA Batteries (4-pack),2,3.84,12/05/19 12:38,"692 Spruce St, San Francisco, CA 94016" +304996,20in Monitor,1,109.99,12/24/19 12:33,"859 Park St, Los Angeles, CA 90001" +304997,USB-C Charging Cable,1,11.95,12/03/19 16:24,"766 North St, Boston, MA 02215" +304998,Wired Headphones,1,11.99,12/26/19 15:37,"192 South St, Portland, OR 97035" +304999,USB-C Charging Cable,1,11.95,12/01/19 11:58,"280 7th St, Seattle, WA 98101" +305000,Flatscreen TV,1,300,12/04/19 12:25,"744 Highland St, San Francisco, CA 94016" +305001,Apple Airpods Headphones,1,150,12/03/19 07:20,"209 Hill St, San Francisco, CA 94016" +305002,AA Batteries (4-pack),1,3.84,12/03/19 01:45,"197 Washington St, Atlanta, GA 30301" +305003,AA Batteries (4-pack),1,3.84,12/12/19 20:08,"835 Forest St, Los Angeles, CA 90001" +305004,AA Batteries (4-pack),1,3.84,12/08/19 09:14,"115 8th St, New York City, NY 10001" +305005,Lightning Charging Cable,1,14.95,12/30/19 19:55,"372 13th St, Dallas, TX 75001" +305006,Wired Headphones,1,11.99,12/22/19 17:14,"360 Hill St, Los Angeles, CA 90001" +305007,AA Batteries (4-pack),2,3.84,12/16/19 18:45,"708 Dogwood St, Boston, MA 02215" +305008,AA Batteries (4-pack),3,3.84,12/17/19 18:43,"671 8th St, San Francisco, CA 94016" +305009,AAA Batteries (4-pack),1,2.99,12/06/19 13:59,"980 Pine St, Los Angeles, CA 90001" +305010,AAA Batteries (4-pack),2,2.99,12/24/19 10:07,"266 8th St, Atlanta, GA 30301" +305011,ThinkPad Laptop,1,999.99,12/24/19 16:13,"61 Maple St, Los Angeles, CA 90001" +305012,27in 4K Gaming Monitor,1,389.99,12/08/19 08:58,"770 Jefferson St, San Francisco, CA 94016" +305013,iPhone,1,700,12/28/19 05:34,"76 Adams St, Boston, MA 02215" +305014,Flatscreen TV,1,300,12/13/19 07:53,"738 6th St, San Francisco, CA 94016" +305015,AA Batteries (4-pack),1,3.84,12/31/19 12:52,"679 Pine St, San Francisco, CA 94016" +305016,Apple Airpods Headphones,1,150,12/29/19 19:58,"501 West St, San Francisco, CA 94016" +305017,Apple Airpods Headphones,1,150,12/03/19 10:41,"942 13th St, Los Angeles, CA 90001" +305018,AA Batteries (4-pack),1,3.84,12/27/19 12:15,"267 12th St, Los Angeles, CA 90001" +305019,AAA Batteries (4-pack),1,2.99,12/21/19 19:11,"763 Wilson St, San Francisco, CA 94016" +305020,Apple Airpods Headphones,1,150,12/01/19 16:46,"424 Chestnut St, San Francisco, CA 94016" +305021,Wired Headphones,1,11.99,12/19/19 11:54,"913 Walnut St, San Francisco, CA 94016" +305022,Google Phone,1,600,12/30/19 10:02,"990 Maple St, Dallas, TX 75001" +305022,USB-C Charging Cable,1,11.95,12/30/19 10:02,"990 Maple St, Dallas, TX 75001" +305023,USB-C Charging Cable,1,11.95,12/27/19 18:00,"846 10th St, New York City, NY 10001" +305024,AAA Batteries (4-pack),2,2.99,12/06/19 16:04,"471 4th St, Atlanta, GA 30301" +305025,Google Phone,1,600,12/25/19 13:36,"909 5th St, San Francisco, CA 94016" +305026,ThinkPad Laptop,1,999.99,12/10/19 15:31,"469 Elm St, Atlanta, GA 30301" +305027,AA Batteries (4-pack),2,3.84,12/27/19 14:03,"582 Cedar St, Dallas, TX 75001" +305028,USB-C Charging Cable,1,11.95,12/22/19 00:49,"180 North St, New York City, NY 10001" +305029,34in Ultrawide Monitor,1,379.99,12/03/19 17:41,"254 Johnson St, Seattle, WA 98101" +305030,34in Ultrawide Monitor,1,379.99,12/25/19 00:23,"205 Meadow St, Seattle, WA 98101" +305031,Flatscreen TV,1,300,12/16/19 13:17,"998 Cherry St, New York City, NY 10001" +305032,Apple Airpods Headphones,1,150,12/02/19 02:20,"983 11th St, Los Angeles, CA 90001" +305033,AAA Batteries (4-pack),1,2.99,12/05/19 20:22,"746 Park St, San Francisco, CA 94016" +305034,34in Ultrawide Monitor,1,379.99,12/20/19 15:34,"537 Highland St, San Francisco, CA 94016" +305035,AA Batteries (4-pack),1,3.84,12/14/19 21:15,"481 8th St, Atlanta, GA 30301" +305036,AA Batteries (4-pack),1,3.84,12/29/19 09:45,"673 8th St, San Francisco, CA 94016" +305037,Wired Headphones,1,11.99,12/25/19 15:55,"411 12th St, San Francisco, CA 94016" +305038,AA Batteries (4-pack),1,3.84,12/11/19 15:49,"35 Cherry St, Los Angeles, CA 90001" +305039,Lightning Charging Cable,1,14.95,12/25/19 12:38,"692 Elm St, New York City, NY 10001" +305040,Google Phone,1,600,12/02/19 03:12,"686 Spruce St, Boston, MA 02215" +305041,USB-C Charging Cable,1,11.95,12/14/19 13:35,"374 Washington St, Los Angeles, CA 90001" +305042,AA Batteries (4-pack),1,3.84,12/13/19 20:33,"839 Chestnut St, San Francisco, CA 94016" +305043,AA Batteries (4-pack),1,3.84,12/04/19 23:30,"134 Maple St, Dallas, TX 75001" +305044,AAA Batteries (4-pack),4,2.99,12/28/19 13:11,"372 Adams St, Los Angeles, CA 90001" +305045,USB-C Charging Cable,1,11.95,12/23/19 16:42,"262 Forest St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +305046,20in Monitor,1,109.99,12/01/19 18:12,"875 11th St, Seattle, WA 98101" +305047,Apple Airpods Headphones,1,150,12/26/19 15:02,"835 North St, Los Angeles, CA 90001" +305048,Bose SoundSport Headphones,1,99.99,12/08/19 12:08,"244 12th St, San Francisco, CA 94016" +305049,27in 4K Gaming Monitor,1,389.99,12/03/19 14:58,"376 Center St, San Francisco, CA 94016" +305050,Vareebadd Phone,1,400,12/08/19 12:31,"57 Meadow St, San Francisco, CA 94016" +305051,AA Batteries (4-pack),2,3.84,12/08/19 06:13,"797 Ridge St, Austin, TX 73301" +305052,USB-C Charging Cable,1,11.95,12/02/19 18:01,"381 Jefferson St, San Francisco, CA 94016" +305053,27in 4K Gaming Monitor,1,389.99,12/02/19 19:08,"948 Lakeview St, Los Angeles, CA 90001" +305054,27in FHD Monitor,1,149.99,12/28/19 17:33,"40 1st St, San Francisco, CA 94016" +305055,iPhone,1,700,12/07/19 09:22,"705 Jefferson St, San Francisco, CA 94016" +305056,34in Ultrawide Monitor,1,379.99,12/26/19 16:37,"786 Main St, Austin, TX 73301" +305057,AA Batteries (4-pack),1,3.84,12/31/19 18:59,"716 7th St, San Francisco, CA 94016" +305058,AAA Batteries (4-pack),1,2.99,12/16/19 14:41,"150 14th St, San Francisco, CA 94016" +305059,USB-C Charging Cable,1,11.95,12/01/19 13:56,"570 Highland St, Portland, OR 97035" +305060,ThinkPad Laptop,1,999.99,12/17/19 16:15,"263 Forest St, Dallas, TX 75001" +305061,Apple Airpods Headphones,2,150,12/24/19 20:38,"347 7th St, New York City, NY 10001" +305062,27in FHD Monitor,1,149.99,12/05/19 19:34,"937 Cedar St, Atlanta, GA 30301" +305063,Macbook Pro Laptop,1,1700,12/03/19 17:07,"6 Elm St, San Francisco, CA 94016" +305064,ThinkPad Laptop,1,999.99,12/24/19 18:07,"195 Willow St, San Francisco, CA 94016" +305065,iPhone,1,700,12/26/19 12:44,"954 Hill St, Los Angeles, CA 90001" +305065,Lightning Charging Cable,1,14.95,12/26/19 12:44,"954 Hill St, Los Angeles, CA 90001" +305066,Wired Headphones,1,11.99,12/24/19 13:28,"467 Hickory St, New York City, NY 10001" +305067,Vareebadd Phone,1,400,12/25/19 18:53,"720 12th St, Portland, ME 04101" +305068,Lightning Charging Cable,1,14.95,12/28/19 12:27,"259 Highland St, San Francisco, CA 94016" +305069,Macbook Pro Laptop,1,1700,12/17/19 15:56,"807 Cedar St, New York City, NY 10001" +305070,AAA Batteries (4-pack),1,2.99,12/30/19 15:04,"172 Madison St, New York City, NY 10001" +305071,27in 4K Gaming Monitor,1,389.99,12/06/19 11:09,"150 7th St, Atlanta, GA 30301" +305072,AAA Batteries (4-pack),2,2.99,12/05/19 22:21,"529 Meadow St, Atlanta, GA 30301" +305073,AA Batteries (4-pack),2,3.84,12/19/19 12:39,"521 Elm St, Portland, OR 97035" +305074,AAA Batteries (4-pack),1,2.99,12/24/19 19:03,"60 Walnut St, Austin, TX 73301" +305075,Apple Airpods Headphones,1,150,12/25/19 15:04,"87 Adams St, Seattle, WA 98101" +305076,27in FHD Monitor,1,149.99,12/08/19 12:23,"740 14th St, Seattle, WA 98101" +305077,27in 4K Gaming Monitor,1,389.99,12/24/19 23:56,"630 Forest St, San Francisco, CA 94016" +305078,Wired Headphones,1,11.99,12/19/19 11:47,"611 14th St, Portland, OR 97035" +305079,AAA Batteries (4-pack),1,2.99,12/21/19 20:39,"725 Lincoln St, New York City, NY 10001" +305080,Vareebadd Phone,1,400,12/21/19 21:22,"214 Willow St, Seattle, WA 98101" +305081,AAA Batteries (4-pack),1,2.99,12/27/19 21:38,"528 Walnut St, San Francisco, CA 94016" +305082,Lightning Charging Cable,1,14.95,12/26/19 22:04,"994 Spruce St, Los Angeles, CA 90001" +305083,AA Batteries (4-pack),1,3.84,12/17/19 09:02,"322 Ridge St, Boston, MA 02215" +305084,AAA Batteries (4-pack),1,2.99,12/28/19 15:38,"627 Lincoln St, Austin, TX 73301" +305085,Apple Airpods Headphones,1,150,12/04/19 11:35,"172 River St, Los Angeles, CA 90001" +305086,AAA Batteries (4-pack),2,2.99,12/12/19 12:01,"87 Madison St, Boston, MA 02215" +305087,AA Batteries (4-pack),1,3.84,12/19/19 20:03,"163 Lincoln St, New York City, NY 10001" +305088,AA Batteries (4-pack),2,3.84,12/11/19 05:39,"863 Lakeview St, New York City, NY 10001" +305089,34in Ultrawide Monitor,1,379.99,12/17/19 10:17,"594 Lake St, Atlanta, GA 30301" +305090,USB-C Charging Cable,1,11.95,12/01/19 15:16,"332 Meadow St, Austin, TX 73301" +305091,Lightning Charging Cable,1,14.95,12/01/19 09:18,"991 Hickory St, New York City, NY 10001" +305092,Vareebadd Phone,1,400,12/16/19 21:52,"739 12th St, Dallas, TX 75001" +305093,Apple Airpods Headphones,1,150,12/03/19 21:16,"202 Center St, San Francisco, CA 94016" +305094,USB-C Charging Cable,2,11.95,12/20/19 00:04,"102 Willow St, Los Angeles, CA 90001" +305095,34in Ultrawide Monitor,1,379.99,12/01/19 20:51,"306 Cherry St, San Francisco, CA 94016" +305096,Apple Airpods Headphones,1,150,12/02/19 04:05,"377 Sunset St, San Francisco, CA 94016" +305097,AAA Batteries (4-pack),1,2.99,12/07/19 06:52,"79 Washington St, Boston, MA 02215" +305098,Lightning Charging Cable,1,14.95,12/23/19 14:39,"249 1st St, Los Angeles, CA 90001" +305099,27in FHD Monitor,2,149.99,12/15/19 19:16,"269 Willow St, Boston, MA 02215" +305100,Lightning Charging Cable,1,14.95,12/26/19 17:12,"466 Elm St, Boston, MA 02215" +305101,Bose SoundSport Headphones,1,99.99,12/16/19 12:12,"537 Meadow St, Atlanta, GA 30301" +305102,USB-C Charging Cable,1,11.95,12/12/19 12:54,"335 Johnson St, Los Angeles, CA 90001" +305103,Apple Airpods Headphones,1,150,12/02/19 17:09,"989 Walnut St, Portland, OR 97035" +305104,Wired Headphones,1,11.99,12/21/19 08:59,"197 Hill St, San Francisco, CA 94016" +305105,27in FHD Monitor,1,149.99,12/22/19 09:43,"60 West St, New York City, NY 10001" +305106,USB-C Charging Cable,1,11.95,12/19/19 09:52,"193 South St, New York City, NY 10001" +305107,Apple Airpods Headphones,1,150,12/24/19 12:56,"484 North St, Portland, ME 04101" +305108,Bose SoundSport Headphones,1,99.99,12/27/19 16:26,"3 1st St, San Francisco, CA 94016" +305109,Wired Headphones,1,11.99,12/06/19 05:30,"258 Park St, Dallas, TX 75001" +305110,AAA Batteries (4-pack),1,2.99,12/15/19 14:25,"440 Wilson St, Boston, MA 02215" +305111,Bose SoundSport Headphones,1,99.99,12/31/19 01:38,"518 Maple St, San Francisco, CA 94016" +305112,AA Batteries (4-pack),1,3.84,12/22/19 17:26,"877 Hickory St, San Francisco, CA 94016" +305113,20in Monitor,1,109.99,12/18/19 20:34,"912 Dogwood St, San Francisco, CA 94016" +305114,AA Batteries (4-pack),1,3.84,12/04/19 10:16,"407 Cherry St, New York City, NY 10001" +305115,Bose SoundSport Headphones,1,99.99,12/24/19 21:03,"469 Madison St, Los Angeles, CA 90001" +305116,27in FHD Monitor,1,149.99,12/18/19 15:28,"676 Hill St, Boston, MA 02215" +305117,AAA Batteries (4-pack),1,2.99,12/15/19 06:48,"868 Willow St, Los Angeles, CA 90001" +305118,Bose SoundSport Headphones,1,99.99,12/15/19 16:00,"281 West St, Boston, MA 02215" +305119,AA Batteries (4-pack),1,3.84,12/06/19 18:08,"328 14th St, Boston, MA 02215" +305120,AAA Batteries (4-pack),1,2.99,12/13/19 21:32,"810 Pine St, Seattle, WA 98101" +305121,ThinkPad Laptop,1,999.99,12/03/19 10:04,"544 Dogwood St, Dallas, TX 75001" +305122,Apple Airpods Headphones,1,150,12/16/19 16:39,"11 West St, New York City, NY 10001" +305123,Wired Headphones,1,11.99,12/22/19 21:13,"510 Spruce St, San Francisco, CA 94016" +305124,iPhone,1,700,12/26/19 16:59,"126 Lake St, San Francisco, CA 94016" +305125,Apple Airpods Headphones,1,150,12/21/19 17:03,"972 Madison St, Portland, OR 97035" +305126,Flatscreen TV,1,300,12/14/19 20:48,"225 Jefferson St, Boston, MA 02215" +305127,AAA Batteries (4-pack),1,2.99,12/02/19 21:16,"372 Lincoln St, Los Angeles, CA 90001" +305128,AAA Batteries (4-pack),3,2.99,12/04/19 19:33,"342 5th St, San Francisco, CA 94016" +305129,Google Phone,1,600,12/07/19 18:30,"61 Hickory St, Los Angeles, CA 90001" +305130,27in FHD Monitor,1,149.99,12/26/19 14:11,"161 Lincoln St, Los Angeles, CA 90001" +305131,Macbook Pro Laptop,1,1700,12/15/19 16:03,"7 Cedar St, Los Angeles, CA 90001" +305132,Lightning Charging Cable,1,14.95,12/05/19 09:17,"328 6th St, Los Angeles, CA 90001" +305133,Lightning Charging Cable,1,14.95,12/25/19 22:29,"364 Johnson St, San Francisco, CA 94016" +305134,Bose SoundSport Headphones,1,99.99,12/09/19 10:29,"279 13th St, Atlanta, GA 30301" +305135,Lightning Charging Cable,1,14.95,12/25/19 12:56,"23 Meadow St, Austin, TX 73301" +305136,AA Batteries (4-pack),1,3.84,12/20/19 12:03,"318 4th St, Atlanta, GA 30301" +305137,AAA Batteries (4-pack),1,2.99,12/21/19 06:59,"598 Wilson St, Los Angeles, CA 90001" +305138,Bose SoundSport Headphones,1,99.99,12/04/19 17:12,"391 South St, Los Angeles, CA 90001" +305139,Bose SoundSport Headphones,1,99.99,12/31/19 18:09,"691 13th St, San Francisco, CA 94016" +305140,Apple Airpods Headphones,1,150,12/13/19 15:41,"169 Adams St, Los Angeles, CA 90001" +305141,AA Batteries (4-pack),4,3.84,12/13/19 00:26,"425 North St, San Francisco, CA 94016" +305142,USB-C Charging Cable,1,11.95,12/30/19 11:15,"509 Hickory St, San Francisco, CA 94016" +305143,Apple Airpods Headphones,1,150,12/09/19 10:27,"994 South St, San Francisco, CA 94016" +305144,Lightning Charging Cable,1,14.95,12/12/19 17:13,"339 Washington St, Los Angeles, CA 90001" +305145,AA Batteries (4-pack),1,3.84,12/08/19 18:21,"22 Ridge St, Seattle, WA 98101" +305146,AAA Batteries (4-pack),1,2.99,12/04/19 12:10,"719 13th St, New York City, NY 10001" +305147,Bose SoundSport Headphones,1,99.99,12/09/19 21:53,"432 Chestnut St, Los Angeles, CA 90001" +305148,Google Phone,1,600,12/24/19 12:11,"5 Madison St, Dallas, TX 75001" +305148,USB-C Charging Cable,1,11.95,12/24/19 12:11,"5 Madison St, Dallas, TX 75001" +305149,Wired Headphones,1,11.99,12/24/19 15:33,"775 11th St, San Francisco, CA 94016" +305150,AAA Batteries (4-pack),1,2.99,12/10/19 11:18,"921 Jackson St, Atlanta, GA 30301" +305151,USB-C Charging Cable,1,11.95,12/29/19 16:56,"451 Jackson St, New York City, NY 10001" +305152,Lightning Charging Cable,1,14.95,12/12/19 05:22,"105 Ridge St, San Francisco, CA 94016" +305153,27in 4K Gaming Monitor,1,389.99,12/12/19 22:25,"162 Forest St, San Francisco, CA 94016" +305154,Lightning Charging Cable,1,14.95,12/27/19 11:31,"81 Washington St, San Francisco, CA 94016" +305155,Lightning Charging Cable,1,14.95,12/24/19 09:33,"656 North St, Portland, OR 97035" +305156,AAA Batteries (4-pack),3,2.99,12/08/19 23:36,"274 1st St, New York City, NY 10001" +305157,Lightning Charging Cable,2,14.95,12/16/19 15:49,"693 Washington St, San Francisco, CA 94016" +305158,34in Ultrawide Monitor,1,379.99,12/27/19 08:53,"523 Willow St, Boston, MA 02215" +305159,Bose SoundSport Headphones,1,99.99,12/29/19 17:25,"192 Maple St, Boston, MA 02215" +305160,Vareebadd Phone,1,400,12/31/19 17:07,"573 Elm St, San Francisco, CA 94016" +305161,iPhone,1,700,12/02/19 10:04,"145 Park St, New York City, NY 10001" +305161,Lightning Charging Cable,1,14.95,12/02/19 10:04,"145 Park St, New York City, NY 10001" +305162,Apple Airpods Headphones,1,150,12/21/19 10:49,"91 2nd St, Los Angeles, CA 90001" +305163,Apple Airpods Headphones,1,150,12/02/19 17:43,"335 Maple St, Portland, OR 97035" +305164,iPhone,1,700,12/17/19 18:01,"695 South St, Atlanta, GA 30301" +305165,USB-C Charging Cable,1,11.95,12/06/19 21:36,"672 Meadow St, Boston, MA 02215" +305166,Apple Airpods Headphones,1,150,12/10/19 13:30,"968 4th St, Seattle, WA 98101" +305167,Bose SoundSport Headphones,1,99.99,12/09/19 12:59,"48 Wilson St, Los Angeles, CA 90001" +305168,Apple Airpods Headphones,1,150,12/20/19 10:00,"230 Highland St, Boston, MA 02215" +305169,USB-C Charging Cable,1,11.95,12/31/19 09:01,"523 North St, Austin, TX 73301" +305170,Lightning Charging Cable,1,14.95,12/06/19 21:43,"30 Chestnut St, San Francisco, CA 94016" +305171,USB-C Charging Cable,1,11.95,12/11/19 00:03,"519 Washington St, Los Angeles, CA 90001" +305172,AAA Batteries (4-pack),1,2.99,12/15/19 15:37,"27 Spruce St, Boston, MA 02215" +305173,Wired Headphones,1,11.99,12/10/19 16:50,"165 12th St, Boston, MA 02215" +305174,Lightning Charging Cable,1,14.95,12/10/19 05:29,"437 Main St, New York City, NY 10001" +305175,Google Phone,1,600,12/11/19 19:03,"139 Cherry St, San Francisco, CA 94016" +305175,USB-C Charging Cable,1,11.95,12/11/19 19:03,"139 Cherry St, San Francisco, CA 94016" +305176,USB-C Charging Cable,1,11.95,12/16/19 22:29,"917 5th St, San Francisco, CA 94016" +305177,Wired Headphones,1,11.99,12/02/19 09:49,"47 Park St, Atlanta, GA 30301" +305178,34in Ultrawide Monitor,1,379.99,12/13/19 21:37,"123 Forest St, San Francisco, CA 94016" +305179,Lightning Charging Cable,1,14.95,12/30/19 17:07,"530 Walnut St, Los Angeles, CA 90001" +305180,Bose SoundSport Headphones,1,99.99,12/01/19 17:07,"768 Ridge St, Boston, MA 02215" +305181,AAA Batteries (4-pack),1,2.99,12/18/19 13:48,"903 13th St, Los Angeles, CA 90001" +305182,AA Batteries (4-pack),2,3.84,12/12/19 20:04,"517 2nd St, Austin, TX 73301" +305183,AAA Batteries (4-pack),3,2.99,12/16/19 21:41,"639 Forest St, New York City, NY 10001" +305184,Vareebadd Phone,1,400,12/30/19 11:18,"186 Cherry St, San Francisco, CA 94016" +305185,Lightning Charging Cable,1,14.95,12/08/19 09:20,"289 14th St, Austin, TX 73301" +305186,USB-C Charging Cable,1,11.95,12/09/19 11:16,"47 Maple St, San Francisco, CA 94016" +305187,Lightning Charging Cable,1,14.95,12/07/19 01:53,"304 Maple St, San Francisco, CA 94016" +305188,20in Monitor,1,109.99,12/02/19 21:35,"914 Highland St, San Francisco, CA 94016" +305189,20in Monitor,1,109.99,12/06/19 11:22,"693 Elm St, San Francisco, CA 94016" +305190,Lightning Charging Cable,1,14.95,12/29/19 09:57,"275 Cherry St, Dallas, TX 75001" +305191,Apple Airpods Headphones,1,150,12/29/19 06:47,"629 1st St, New York City, NY 10001" +305192,AA Batteries (4-pack),2,3.84,12/04/19 16:11,"579 Cherry St, Austin, TX 73301" +305193,Lightning Charging Cable,1,14.95,12/01/19 23:42,"143 Johnson St, New York City, NY 10001" +305194,AA Batteries (4-pack),1,3.84,12/12/19 23:14,"76 Lincoln St, New York City, NY 10001" +305195,Lightning Charging Cable,1,14.95,12/08/19 13:25,"617 Jefferson St, Portland, ME 04101" +305196,AAA Batteries (4-pack),3,2.99,12/09/19 22:33,"844 West St, New York City, NY 10001" +305197,USB-C Charging Cable,1,11.95,12/11/19 10:57,"477 River St, San Francisco, CA 94016" +305198,AA Batteries (4-pack),1,3.84,12/12/19 15:18,"958 Lakeview St, Los Angeles, CA 90001" +305199,Apple Airpods Headphones,1,150,12/26/19 09:37,"236 South St, Dallas, TX 75001" +305200,AA Batteries (4-pack),1,3.84,12/01/19 06:28,"976 9th St, Los Angeles, CA 90001" +305201,Macbook Pro Laptop,1,1700,12/06/19 17:17,"251 Lakeview St, Seattle, WA 98101" +305202,Wired Headphones,1,11.99,12/18/19 03:40,"60 13th St, Los Angeles, CA 90001" +305203,Google Phone,1,600,12/22/19 15:48,"855 Center St, Atlanta, GA 30301" +305203,USB-C Charging Cable,1,11.95,12/22/19 15:48,"855 Center St, Atlanta, GA 30301" +305203,Wired Headphones,1,11.99,12/22/19 15:48,"855 Center St, Atlanta, GA 30301" +305204,Lightning Charging Cable,1,14.95,12/16/19 06:59,"243 Dogwood St, Austin, TX 73301" +305205,Flatscreen TV,1,300,12/07/19 18:36,"881 Center St, Seattle, WA 98101" +305206,27in 4K Gaming Monitor,1,389.99,12/09/19 08:25,"624 8th St, San Francisco, CA 94016" +305207,iPhone,1,700,12/29/19 10:18,"836 Cedar St, San Francisco, CA 94016" +305208,AA Batteries (4-pack),1,3.84,12/08/19 21:41,"107 Hickory St, Austin, TX 73301" +305209,AAA Batteries (4-pack),1,2.99,12/15/19 11:45,"652 Main St, Los Angeles, CA 90001" +305210,ThinkPad Laptop,1,999.99,12/18/19 20:38,"694 1st St, New York City, NY 10001" +305211,Macbook Pro Laptop,1,1700,12/18/19 22:33,"20 4th St, Los Angeles, CA 90001" +305212,ThinkPad Laptop,1,999.99,12/13/19 12:28,"224 Maple St, Dallas, TX 75001" +305213,AAA Batteries (4-pack),3,2.99,12/29/19 22:37,"894 Highland St, Atlanta, GA 30301" +305214,USB-C Charging Cable,1,11.95,12/31/19 15:13,"96 Lakeview St, Portland, OR 97035" +305215,USB-C Charging Cable,1,11.95,12/20/19 18:57,"312 Church St, Austin, TX 73301" +305216,Apple Airpods Headphones,1,150,12/23/19 11:54,"209 Hickory St, Dallas, TX 75001" +305217,Macbook Pro Laptop,1,1700,12/05/19 19:37,"932 Willow St, Dallas, TX 75001" +305218,Lightning Charging Cable,1,14.95,12/16/19 12:59,"70 Church St, San Francisco, CA 94016" +305219,USB-C Charging Cable,1,11.95,12/04/19 20:01,"899 10th St, Portland, OR 97035" +305220,ThinkPad Laptop,1,999.99,12/28/19 09:49,"879 8th St, Portland, OR 97035" +305221,Wired Headphones,1,11.99,12/27/19 20:26,"971 Adams St, San Francisco, CA 94016" +305222,Lightning Charging Cable,1,14.95,12/10/19 10:01,"819 Lincoln St, Seattle, WA 98101" +305222,AA Batteries (4-pack),1,3.84,12/10/19 10:01,"819 Lincoln St, Seattle, WA 98101" +305223,27in FHD Monitor,1,149.99,12/12/19 13:20,"654 Lincoln St, New York City, NY 10001" +305224,Apple Airpods Headphones,1,150,12/01/19 21:36,"96 12th St, San Francisco, CA 94016" +305225,AAA Batteries (4-pack),1,2.99,12/31/19 20:40,"104 14th St, Boston, MA 02215" +305226,Wired Headphones,1,11.99,12/09/19 12:10,"193 Highland St, Los Angeles, CA 90001" +305227,Bose SoundSport Headphones,1,99.99,12/30/19 13:16,"225 Johnson St, Boston, MA 02215" +305228,Bose SoundSport Headphones,1,99.99,12/10/19 02:39,"31 13th St, Atlanta, GA 30301" +305229,Wired Headphones,1,11.99,12/19/19 08:55,"790 Church St, Seattle, WA 98101" +305230,AAA Batteries (4-pack),1,2.99,12/12/19 12:14,"870 4th St, Atlanta, GA 30301" +305231,Flatscreen TV,1,300,12/04/19 16:30,"631 Adams St, Los Angeles, CA 90001" +305232,AAA Batteries (4-pack),1,2.99,12/17/19 01:39,"760 Johnson St, Atlanta, GA 30301" +305233,Bose SoundSport Headphones,1,99.99,12/05/19 15:16,"848 11th St, San Francisco, CA 94016" +305234,AA Batteries (4-pack),1,3.84,12/26/19 14:35,"875 Maple St, New York City, NY 10001" +305235,Wired Headphones,1,11.99,12/03/19 14:06,"599 Elm St, Dallas, TX 75001" +305236,Wired Headphones,1,11.99,12/19/19 12:41,"688 Chestnut St, Los Angeles, CA 90001" +305237,Wired Headphones,1,11.99,12/12/19 15:52,"131 South St, New York City, NY 10001" +305238,34in Ultrawide Monitor,1,379.99,12/30/19 22:43,"811 West St, Los Angeles, CA 90001" +305239,AA Batteries (4-pack),2,3.84,12/05/19 20:26,"834 Lake St, Seattle, WA 98101" +305240,iPhone,1,700,12/19/19 10:33,"199 Chestnut St, San Francisco, CA 94016" +305241,Bose SoundSport Headphones,1,99.99,12/25/19 17:39,"31 Jackson St, Seattle, WA 98101" +305242,Lightning Charging Cable,1,14.95,12/06/19 20:12,"742 1st St, Los Angeles, CA 90001" +305243,27in FHD Monitor,1,149.99,12/28/19 20:43,"316 6th St, Portland, OR 97035" +305244,27in FHD Monitor,1,149.99,12/23/19 09:17,"748 9th St, San Francisco, CA 94016" +305245,iPhone,1,700,12/26/19 06:42,"579 Wilson St, Dallas, TX 75001" +305246,Macbook Pro Laptop,1,1700,12/08/19 14:25,"724 Walnut St, New York City, NY 10001" +305247,Apple Airpods Headphones,1,150,12/25/19 07:24,"612 Jackson St, Austin, TX 73301" +305248,Wired Headphones,1,11.99,12/27/19 12:03,"817 4th St, New York City, NY 10001" +305249,ThinkPad Laptop,1,999.99,12/05/19 15:30,"988 13th St, Dallas, TX 75001" +305250,USB-C Charging Cable,1,11.95,12/10/19 10:50,"379 Sunset St, Dallas, TX 75001" +305251,Flatscreen TV,1,300,12/04/19 01:34,"759 4th St, San Francisco, CA 94016" +305252,AA Batteries (4-pack),1,3.84,12/11/19 18:33,"413 West St, Portland, OR 97035" +305253,AA Batteries (4-pack),2,3.84,12/20/19 15:33,"837 Dogwood St, San Francisco, CA 94016" +305254,Flatscreen TV,1,300,12/30/19 17:20,"292 Jackson St, Dallas, TX 75001" +305255,Google Phone,1,600,12/18/19 16:25,"886 North St, San Francisco, CA 94016" +305256,Wired Headphones,1,11.99,12/05/19 13:49,"407 Jackson St, New York City, NY 10001" +305257,Lightning Charging Cable,2,14.95,12/23/19 19:05,"766 14th St, Austin, TX 73301" +305258,AA Batteries (4-pack),1,3.84,12/16/19 19:43,"330 Chestnut St, Los Angeles, CA 90001" +305259,34in Ultrawide Monitor,1,379.99,12/08/19 16:28,"609 13th St, Boston, MA 02215" +305260,ThinkPad Laptop,1,999.99,12/22/19 19:56,"690 West St, Austin, TX 73301" +305261,AAA Batteries (4-pack),1,2.99,12/09/19 07:42,"548 Maple St, Dallas, TX 75001" +305262,AAA Batteries (4-pack),1,2.99,12/08/19 10:09,"108 River St, San Francisco, CA 94016" +305263,USB-C Charging Cable,1,11.95,12/03/19 13:02,"991 Lake St, Boston, MA 02215" +305264,Lightning Charging Cable,1,14.95,12/27/19 11:49,"880 Cedar St, New York City, NY 10001" +305265,AA Batteries (4-pack),1,3.84,12/14/19 09:43,"661 Dogwood St, Los Angeles, CA 90001" +305266,Bose SoundSport Headphones,1,99.99,12/06/19 18:25,"855 Madison St, New York City, NY 10001" +305267,Bose SoundSport Headphones,1,99.99,12/14/19 15:50,"297 4th St, Los Angeles, CA 90001" +305268,USB-C Charging Cable,1,11.95,12/27/19 13:13,"548 Cedar St, Portland, ME 04101" +305269,AAA Batteries (4-pack),2,2.99,12/26/19 21:48,"239 Sunset St, Los Angeles, CA 90001" +305270,iPhone,1,700,12/05/19 20:59,"933 7th St, Seattle, WA 98101" +305271,Apple Airpods Headphones,1,150,12/11/19 14:17,"465 North St, Dallas, TX 75001" +305272,AAA Batteries (4-pack),1,2.99,12/23/19 14:55,"994 Willow St, San Francisco, CA 94016" +305273,Flatscreen TV,1,300,12/09/19 19:21,"414 Chestnut St, Atlanta, GA 30301" +305274,USB-C Charging Cable,1,11.95,12/13/19 23:06,"450 Dogwood St, Seattle, WA 98101" +305275,Wired Headphones,1,11.99,12/10/19 11:46,"431 Lakeview St, Seattle, WA 98101" +305276,Wired Headphones,2,11.99,12/04/19 19:31,"441 Washington St, San Francisco, CA 94016" +305277,iPhone,1,700,12/31/19 09:40,"437 Lake St, Dallas, TX 75001" +305278,AA Batteries (4-pack),1,3.84,12/06/19 22:57,"652 2nd St, Seattle, WA 98101" +305279,Lightning Charging Cable,1,14.95,12/30/19 11:33,"598 Meadow St, Dallas, TX 75001" +305280,Lightning Charging Cable,1,14.95,12/03/19 08:21,"222 8th St, San Francisco, CA 94016" +305281,AAA Batteries (4-pack),1,2.99,12/02/19 12:43,"406 Lake St, Boston, MA 02215" +305282,27in FHD Monitor,1,149.99,12/04/19 08:52,"174 Ridge St, Dallas, TX 75001" +305283,AAA Batteries (4-pack),3,2.99,12/06/19 15:05,"240 Washington St, Los Angeles, CA 90001" +305284,ThinkPad Laptop,1,999.99,12/31/19 11:30,"306 Dogwood St, Seattle, WA 98101" +305285,AAA Batteries (4-pack),1,2.99,12/31/19 17:13,"655 Spruce St, San Francisco, CA 94016" +305286,27in FHD Monitor,1,149.99,12/05/19 10:53,"158 Center St, Boston, MA 02215" +305287,AA Batteries (4-pack),1,3.84,12/31/19 14:58,"680 Elm St, Seattle, WA 98101" +305288,Lightning Charging Cable,1,14.95,12/23/19 19:30,"974 11th St, Boston, MA 02215" +305289,AAA Batteries (4-pack),1,2.99,12/23/19 10:31,"768 Church St, Dallas, TX 75001" +305290,27in FHD Monitor,1,149.99,12/02/19 11:49,"666 2nd St, Boston, MA 02215" +305291,AA Batteries (4-pack),1,3.84,12/25/19 20:24,"517 River St, New York City, NY 10001" +305292,AA Batteries (4-pack),2,3.84,12/18/19 20:12,"74 Ridge St, Los Angeles, CA 90001" +305293,Lightning Charging Cable,1,14.95,12/18/19 01:43,"69 Hickory St, Dallas, TX 75001" +305294,34in Ultrawide Monitor,1,379.99,12/28/19 10:14,"2 11th St, Portland, OR 97035" +305295,USB-C Charging Cable,1,11.95,12/22/19 10:14,"120 Elm St, San Francisco, CA 94016" +305296,AA Batteries (4-pack),1,3.84,12/31/19 00:49,"596 Ridge St, San Francisco, CA 94016" +305297,27in 4K Gaming Monitor,1,389.99,12/19/19 10:13,"85 River St, Seattle, WA 98101" +305297,Lightning Charging Cable,1,14.95,12/19/19 10:13,"85 River St, Seattle, WA 98101" +305298,Bose SoundSport Headphones,1,99.99,12/15/19 13:58,"593 Jefferson St, Portland, OR 97035" +305299,Wired Headphones,1,11.99,12/15/19 18:03,"374 6th St, New York City, NY 10001" +305300,Macbook Pro Laptop,1,1700,12/17/19 20:00,"142 Madison St, Los Angeles, CA 90001" +305301,Apple Airpods Headphones,1,150,12/09/19 09:49,"714 2nd St, New York City, NY 10001" +305302,Wired Headphones,1,11.99,12/22/19 11:12,"599 Wilson St, Los Angeles, CA 90001" +305303,Wired Headphones,2,11.99,12/06/19 13:17,"310 Hickory St, Atlanta, GA 30301" +305304,Google Phone,1,600,12/22/19 16:08,"238 West St, New York City, NY 10001" +305305,Google Phone,1,600,12/02/19 03:53,"396 Wilson St, Boston, MA 02215" +305305,34in Ultrawide Monitor,1,379.99,12/02/19 03:53,"396 Wilson St, Boston, MA 02215" +305306,AA Batteries (4-pack),1,3.84,12/08/19 15:32,"481 Pine St, Los Angeles, CA 90001" +305307,ThinkPad Laptop,1,999.99,12/12/19 15:46,"232 Cherry St, Los Angeles, CA 90001" +305308,Bose SoundSport Headphones,1,99.99,12/21/19 23:29,"796 13th St, Boston, MA 02215" +305309,Bose SoundSport Headphones,1,99.99,12/29/19 18:43,"893 North St, New York City, NY 10001" +305310,USB-C Charging Cable,2,11.95,12/11/19 09:26,"392 Elm St, San Francisco, CA 94016" +305311,USB-C Charging Cable,1,11.95,12/07/19 21:11,"875 8th St, Dallas, TX 75001" +305312,34in Ultrawide Monitor,1,379.99,12/09/19 21:35,"349 Main St, Dallas, TX 75001" +305313,Apple Airpods Headphones,1,150,12/27/19 23:06,"230 2nd St, Dallas, TX 75001" +305314,Wired Headphones,2,11.99,12/04/19 11:55,"690 Jackson St, San Francisco, CA 94016" +305315,27in FHD Monitor,1,149.99,12/29/19 10:31,"832 Meadow St, Austin, TX 73301" +305316,27in 4K Gaming Monitor,1,389.99,12/15/19 15:51,"20 Willow St, Seattle, WA 98101" +305317,AAA Batteries (4-pack),1,2.99,12/21/19 21:56,"298 River St, New York City, NY 10001" +305318,Google Phone,1,600,12/03/19 15:01,"30 Park St, San Francisco, CA 94016" +305319,AA Batteries (4-pack),2,3.84,12/24/19 17:21,"397 11th St, San Francisco, CA 94016" +305320,Flatscreen TV,1,300,12/15/19 17:46,"937 Sunset St, New York City, NY 10001" +305321,27in FHD Monitor,1,149.99,12/10/19 21:37,"386 Forest St, Austin, TX 73301" +305321,Flatscreen TV,1,300,12/10/19 21:37,"386 Forest St, Austin, TX 73301" +305322,Wired Headphones,1,11.99,12/08/19 22:54,"808 Main St, Atlanta, GA 30301" +305323,27in 4K Gaming Monitor,1,389.99,12/02/19 22:27,"750 Maple St, New York City, NY 10001" +305324,Wired Headphones,1,11.99,12/04/19 10:40,"487 10th St, Boston, MA 02215" +305325,Lightning Charging Cable,1,14.95,12/04/19 08:02,"782 Cherry St, Atlanta, GA 30301" +305326,AAA Batteries (4-pack),1,2.99,12/16/19 19:08,"542 Maple St, Dallas, TX 75001" +305327,USB-C Charging Cable,1,11.95,12/15/19 14:45,"732 Spruce St, Seattle, WA 98101" +305328,iPhone,1,700,12/14/19 21:39,"631 Pine St, Portland, ME 04101" +305329,AA Batteries (4-pack),3,3.84,12/02/19 18:38,"111 12th St, Boston, MA 02215" +305330,Apple Airpods Headphones,1,150,12/03/19 10:11,"433 Jefferson St, Dallas, TX 75001" +305331,AAA Batteries (4-pack),2,2.99,12/08/19 15:53,"281 Dogwood St, New York City, NY 10001" +305332,AA Batteries (4-pack),2,3.84,12/17/19 22:59,"645 Lake St, Boston, MA 02215" +305333,Wired Headphones,1,11.99,12/13/19 15:28,"303 8th St, San Francisco, CA 94016" +305334,Flatscreen TV,1,300,12/24/19 16:09,"368 Jefferson St, Portland, ME 04101" +305335,USB-C Charging Cable,1,11.95,12/21/19 18:18,"170 Dogwood St, New York City, NY 10001" +305336,Macbook Pro Laptop,1,1700,12/05/19 09:15,"243 7th St, Seattle, WA 98101" +305337,Bose SoundSport Headphones,1,99.99,12/18/19 23:52,"937 Jefferson St, Seattle, WA 98101" +305338,ThinkPad Laptop,1,999.99,12/16/19 20:08,"315 Main St, San Francisco, CA 94016" +305339,Apple Airpods Headphones,1,150,12/30/19 08:16,"717 Elm St, Dallas, TX 75001" +305340,Bose SoundSport Headphones,1,99.99,12/27/19 15:39,"709 Wilson St, San Francisco, CA 94016" +305341,USB-C Charging Cable,1,11.95,12/20/19 09:14,"415 13th St, Austin, TX 73301" +305342,Lightning Charging Cable,1,14.95,12/07/19 10:24,"72 Meadow St, San Francisco, CA 94016" +305343,AAA Batteries (4-pack),1,2.99,12/24/19 14:21,"56 6th St, Los Angeles, CA 90001" +305344,Lightning Charging Cable,2,14.95,12/29/19 15:21,"136 Pine St, Boston, MA 02215" +305345,Lightning Charging Cable,1,14.95,12/23/19 12:24,"175 Forest St, Dallas, TX 75001" +305346,USB-C Charging Cable,1,11.95,12/16/19 16:39,"434 Wilson St, Austin, TX 73301" +305347,Vareebadd Phone,1,400,12/12/19 19:27,"949 River St, San Francisco, CA 94016" +305347,Bose SoundSport Headphones,1,99.99,12/12/19 19:27,"949 River St, San Francisco, CA 94016" +305348,USB-C Charging Cable,1,11.95,12/13/19 08:53,"113 Willow St, Portland, OR 97035" +305349,USB-C Charging Cable,1,11.95,12/24/19 18:51,"431 West St, Austin, TX 73301" +,,,,, +305350,Wired Headphones,1,11.99,12/02/19 11:28,"874 Jefferson St, Dallas, TX 75001" +305351,Apple Airpods Headphones,1,150,12/25/19 23:35,"297 Meadow St, San Francisco, CA 94016" +305352,Apple Airpods Headphones,1,150,12/07/19 07:50,"258 West St, Portland, OR 97035" +305353,Lightning Charging Cable,1,14.95,12/19/19 10:53,"10 Ridge St, Austin, TX 73301" +305354,USB-C Charging Cable,1,11.95,12/10/19 18:09,"973 Cherry St, New York City, NY 10001" +305355,iPhone,1,700,12/01/19 21:41,"806 Center St, Los Angeles, CA 90001" +305356,USB-C Charging Cable,1,11.95,12/30/19 17:37,"3 Elm St, Austin, TX 73301" +305357,Apple Airpods Headphones,1,150,12/08/19 17:15,"153 Church St, Dallas, TX 75001" +305358,AAA Batteries (4-pack),1,2.99,12/31/19 17:06,"652 2nd St, Portland, OR 97035" +305359,Bose SoundSport Headphones,1,99.99,12/15/19 15:44,"95 Washington St, Portland, ME 04101" +305360,Wired Headphones,1,11.99,12/27/19 13:54,"960 Ridge St, Los Angeles, CA 90001" +305361,Bose SoundSport Headphones,1,99.99,12/07/19 06:52,"679 6th St, San Francisco, CA 94016" +305362,AAA Batteries (4-pack),1,2.99,12/22/19 00:13,"125 Lake St, Los Angeles, CA 90001" +305363,AA Batteries (4-pack),2,3.84,12/11/19 09:45,"248 2nd St, Los Angeles, CA 90001" +305364,Bose SoundSport Headphones,1,99.99,12/29/19 11:24,"858 5th St, Seattle, WA 98101" +305365,Google Phone,1,600,12/26/19 15:55,"189 Wilson St, Austin, TX 73301" +305366,Apple Airpods Headphones,1,150,12/28/19 18:11,"478 Lincoln St, San Francisco, CA 94016" +305367,Wired Headphones,1,11.99,12/23/19 00:14,"717 River St, Los Angeles, CA 90001" +305368,27in FHD Monitor,1,149.99,12/22/19 10:01,"529 13th St, Austin, TX 73301" +305369,AA Batteries (4-pack),1,3.84,12/15/19 19:58,"642 10th St, Seattle, WA 98101" +305370,Apple Airpods Headphones,1,150,12/12/19 19:43,"824 7th St, San Francisco, CA 94016" +305371,Lightning Charging Cable,1,14.95,12/12/19 20:16,"25 Hill St, New York City, NY 10001" +305372,20in Monitor,1,109.99,12/14/19 16:30,"70 Sunset St, San Francisco, CA 94016" +305373,Bose SoundSport Headphones,1,99.99,12/16/19 11:41,"329 Johnson St, Dallas, TX 75001" +305374,Flatscreen TV,1,300,12/23/19 07:33,"921 2nd St, Los Angeles, CA 90001" +305375,AA Batteries (4-pack),1,3.84,12/02/19 18:19,"769 Cedar St, Boston, MA 02215" +305376,34in Ultrawide Monitor,1,379.99,12/30/19 14:02,"773 Walnut St, New York City, NY 10001" +305377,USB-C Charging Cable,1,11.95,12/19/19 15:13,"77 West St, Los Angeles, CA 90001" +305378,Lightning Charging Cable,1,14.95,12/09/19 14:15,"911 Lakeview St, New York City, NY 10001" +305379,iPhone,1,700,12/05/19 22:59,"373 Lincoln St, San Francisco, CA 94016" +305379,Wired Headphones,1,11.99,12/05/19 22:59,"373 Lincoln St, San Francisco, CA 94016" +305380,LG Washing Machine,1,600.0,12/20/19 23:54,"196 Jackson St, New York City, NY 10001" +305381,Wired Headphones,1,11.99,12/14/19 13:20,"4 Sunset St, Atlanta, GA 30301" +305382,USB-C Charging Cable,1,11.95,12/09/19 09:27,"383 Elm St, San Francisco, CA 94016" +305383,Apple Airpods Headphones,1,150,12/02/19 13:01,"566 Pine St, Austin, TX 73301" +305384,Wired Headphones,1,11.99,12/07/19 21:02,"506 Main St, San Francisco, CA 94016" +305385,iPhone,1,700,12/24/19 07:30,"101 Dogwood St, Portland, OR 97035" +305385,Apple Airpods Headphones,1,150,12/24/19 07:30,"101 Dogwood St, Portland, OR 97035" +305386,Google Phone,1,600,12/21/19 14:19,"562 Adams St, San Francisco, CA 94016" +305387,Lightning Charging Cable,1,14.95,12/23/19 15:41,"286 Dogwood St, Seattle, WA 98101" +305388,Lightning Charging Cable,1,14.95,12/29/19 20:28,"630 8th St, New York City, NY 10001" +305389,34in Ultrawide Monitor,1,379.99,12/01/19 13:32,"380 6th St, New York City, NY 10001" +305390,AA Batteries (4-pack),1,3.84,12/07/19 16:43,"641 13th St, San Francisco, CA 94016" +305391,AA Batteries (4-pack),1,3.84,12/31/19 14:21,"361 Johnson St, Dallas, TX 75001" +305392,USB-C Charging Cable,1,11.95,12/13/19 02:12,"882 10th St, Dallas, TX 75001" +305393,Apple Airpods Headphones,1,150,12/06/19 13:40,"752 Pine St, Los Angeles, CA 90001" +305394,27in 4K Gaming Monitor,1,389.99,12/16/19 20:01,"624 Jackson St, San Francisco, CA 94016" +305395,Macbook Pro Laptop,1,1700,12/23/19 15:27,"780 Lakeview St, Dallas, TX 75001" +305396,Bose SoundSport Headphones,1,99.99,12/09/19 16:53,"548 Lakeview St, Austin, TX 73301" +305397,Macbook Pro Laptop,1,1700,12/03/19 17:13,"838 6th St, Portland, OR 97035" +305398,AA Batteries (4-pack),1,3.84,12/21/19 16:57,"252 Willow St, New York City, NY 10001" +305399,34in Ultrawide Monitor,1,379.99,12/03/19 18:04,"561 Hill St, Seattle, WA 98101" +305400,AAA Batteries (4-pack),1,2.99,12/08/19 09:47,"240 Church St, Atlanta, GA 30301" +305401,AAA Batteries (4-pack),1,2.99,12/03/19 17:26,"591 Park St, San Francisco, CA 94016" +305402,Apple Airpods Headphones,1,150,12/15/19 18:46,"960 6th St, Los Angeles, CA 90001" +305403,USB-C Charging Cable,1,11.95,12/29/19 16:55,"308 Maple St, Los Angeles, CA 90001" +305404,Google Phone,1,600,12/16/19 15:10,"769 Sunset St, Portland, OR 97035" +305404,USB-C Charging Cable,1,11.95,12/16/19 15:10,"769 Sunset St, Portland, OR 97035" +305405,Macbook Pro Laptop,1,1700,12/31/19 09:06,"328 12th St, New York City, NY 10001" +305406,USB-C Charging Cable,1,11.95,12/23/19 03:10,"24 9th St, Seattle, WA 98101" +305407,Apple Airpods Headphones,1,150,12/11/19 20:34,"26 Hickory St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +305408,Apple Airpods Headphones,1,150,12/07/19 09:54,"695 Center St, Seattle, WA 98101" +305409,Lightning Charging Cable,1,14.95,12/15/19 18:03,"803 Chestnut St, Portland, OR 97035" +305410,AA Batteries (4-pack),1,3.84,12/18/19 23:38,"489 Forest St, San Francisco, CA 94016" +305411,AAA Batteries (4-pack),1,2.99,12/06/19 10:15,"112 Maple St, Los Angeles, CA 90001" +305412,Google Phone,1,600,12/13/19 09:17,"633 Cherry St, Atlanta, GA 30301" +305413,20in Monitor,1,109.99,12/25/19 12:57,"17 Lake St, San Francisco, CA 94016" +305414,AA Batteries (4-pack),4,3.84,12/17/19 13:10,"52 13th St, San Francisco, CA 94016" +305415,Lightning Charging Cable,1,14.95,12/14/19 10:56,"624 8th St, New York City, NY 10001" +305416,Wired Headphones,1,11.99,12/22/19 19:51,"300 12th St, New York City, NY 10001" +305417,USB-C Charging Cable,1,11.95,12/08/19 17:07,"510 Hill St, San Francisco, CA 94016" +305418,Bose SoundSport Headphones,1,99.99,12/31/19 16:50,"139 Park St, Los Angeles, CA 90001" +305419,27in FHD Monitor,1,149.99,12/15/19 10:55,"987 1st St, Portland, OR 97035" +305420,34in Ultrawide Monitor,1,379.99,12/07/19 09:50,"148 Ridge St, Dallas, TX 75001" +305421,AA Batteries (4-pack),2,3.84,12/07/19 17:24,"749 9th St, San Francisco, CA 94016" +305422,Flatscreen TV,1,300,12/10/19 16:43,"836 West St, San Francisco, CA 94016" +305423,34in Ultrawide Monitor,1,379.99,12/02/19 20:38,"676 Forest St, Dallas, TX 75001" +305424,Lightning Charging Cable,1,14.95,12/11/19 13:46,"413 Lincoln St, Austin, TX 73301" +305425,LG Washing Machine,1,600.0,12/20/19 12:00,"296 Sunset St, Austin, TX 73301" +305426,Apple Airpods Headphones,1,150,12/30/19 06:37,"374 Chestnut St, San Francisco, CA 94016" +305427,Google Phone,1,600,12/19/19 22:10,"439 South St, Atlanta, GA 30301" +305427,Wired Headphones,1,11.99,12/19/19 22:10,"439 South St, Atlanta, GA 30301" +305428,Apple Airpods Headphones,1,150,12/21/19 22:12,"759 Forest St, New York City, NY 10001" +305429,Lightning Charging Cable,1,14.95,12/02/19 10:02,"837 Pine St, Dallas, TX 75001" +305430,34in Ultrawide Monitor,1,379.99,12/07/19 10:17,"814 Hill St, Austin, TX 73301" +305431,USB-C Charging Cable,1,11.95,12/06/19 10:44,"367 6th St, Boston, MA 02215" +305432,Google Phone,1,600,12/02/19 20:07,"880 Meadow St, Atlanta, GA 30301" +305433,27in 4K Gaming Monitor,1,389.99,12/12/19 16:45,"231 Maple St, New York City, NY 10001" +305434,Wired Headphones,1,11.99,12/15/19 10:49,"608 7th St, Atlanta, GA 30301" +305435,AAA Batteries (4-pack),1,2.99,12/22/19 11:02,"116 Spruce St, Atlanta, GA 30301" +305436,Wired Headphones,1,11.99,12/08/19 18:31,"460 Willow St, Seattle, WA 98101" +305437,Wired Headphones,1,11.99,12/19/19 09:10,"146 Pine St, New York City, NY 10001" +305438,AA Batteries (4-pack),1,3.84,12/05/19 11:51,"323 Adams St, New York City, NY 10001" +305439,AA Batteries (4-pack),1,3.84,12/10/19 02:59,"286 Sunset St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +305440,Lightning Charging Cable,1,14.95,12/30/19 21:34,"414 Johnson St, Dallas, TX 75001" +305441,AAA Batteries (4-pack),2,2.99,12/28/19 00:42,"663 River St, San Francisco, CA 94016" +305442,Macbook Pro Laptop,1,1700,12/06/19 11:19,"934 Lakeview St, Boston, MA 02215" +305443,27in FHD Monitor,1,149.99,12/10/19 15:20,"716 Hickory St, Atlanta, GA 30301" +305444,Flatscreen TV,1,300,12/18/19 16:44,"92 Highland St, New York City, NY 10001" +305445,AAA Batteries (4-pack),1,2.99,12/17/19 17:17,"817 Maple St, Atlanta, GA 30301" +305446,Apple Airpods Headphones,1,150,12/04/19 13:33,"854 Washington St, San Francisco, CA 94016" +305447,Macbook Pro Laptop,1,1700,12/18/19 20:40,"565 Ridge St, Los Angeles, CA 90001" +305448,34in Ultrawide Monitor,1,379.99,12/21/19 03:45,"289 Hickory St, San Francisco, CA 94016" +305449,Bose SoundSport Headphones,1,99.99,12/28/19 09:44,"299 1st St, Atlanta, GA 30301" +305450,USB-C Charging Cable,1,11.95,12/05/19 19:20,"63 Center St, Los Angeles, CA 90001" +305451,27in 4K Gaming Monitor,1,389.99,12/10/19 10:28,"862 11th St, Portland, OR 97035" +305452,20in Monitor,1,109.99,12/09/19 12:12,"727 6th St, Atlanta, GA 30301" +305453,Flatscreen TV,1,300,12/25/19 18:46,"723 Hickory St, Dallas, TX 75001" +305454,27in FHD Monitor,1,149.99,12/30/19 07:09,"650 Meadow St, Austin, TX 73301" +305455,Apple Airpods Headphones,1,150,12/21/19 20:26,"501 Pine St, Boston, MA 02215" +305456,Lightning Charging Cable,1,14.95,12/17/19 19:07,"865 13th St, New York City, NY 10001" +305457,Lightning Charging Cable,2,14.95,12/20/19 13:20,"56 Pine St, Los Angeles, CA 90001" +305458,Apple Airpods Headphones,1,150,12/05/19 23:27,"460 North St, San Francisco, CA 94016" +305459,Apple Airpods Headphones,1,150,12/09/19 01:22,"682 Park St, San Francisco, CA 94016" +305460,Vareebadd Phone,1,400,12/14/19 11:56,"759 Church St, Atlanta, GA 30301" +305460,USB-C Charging Cable,1,11.95,12/14/19 11:56,"759 Church St, Atlanta, GA 30301" +305460,Wired Headphones,1,11.99,12/14/19 11:56,"759 Church St, Atlanta, GA 30301" +305461,LG Washing Machine,1,600.0,12/23/19 11:09,"387 4th St, Los Angeles, CA 90001" +305462,Lightning Charging Cable,1,14.95,12/02/19 16:37,"367 Johnson St, Dallas, TX 75001" +305463,27in FHD Monitor,1,149.99,12/06/19 06:54,"981 4th St, Portland, OR 97035" +305464,34in Ultrawide Monitor,1,379.99,12/10/19 12:57,"595 South St, Seattle, WA 98101" +305465,AAA Batteries (4-pack),2,2.99,12/27/19 21:18,"396 Jefferson St, Boston, MA 02215" +305466,27in 4K Gaming Monitor,1,389.99,12/21/19 07:48,"554 11th St, Dallas, TX 75001" +305467,Lightning Charging Cable,1,14.95,12/15/19 19:25,"730 Spruce St, Los Angeles, CA 90001" +305468,27in 4K Gaming Monitor,1,389.99,12/28/19 16:39,"9 Johnson St, Los Angeles, CA 90001" +305469,27in 4K Gaming Monitor,1,389.99,12/24/19 13:24,"108 7th St, Dallas, TX 75001" +305470,Apple Airpods Headphones,1,150,12/06/19 08:32,"777 Chestnut St, Austin, TX 73301" +305471,AAA Batteries (4-pack),3,2.99,12/01/19 12:31,"129 8th St, Dallas, TX 75001" +305472,USB-C Charging Cable,1,11.95,12/14/19 10:19,"974 11th St, San Francisco, CA 94016" +305473,USB-C Charging Cable,1,11.95,12/21/19 08:12,"882 Willow St, Los Angeles, CA 90001" +305474,AA Batteries (4-pack),2,3.84,12/11/19 21:50,"731 Chestnut St, San Francisco, CA 94016" +305475,Apple Airpods Headphones,1,150,12/07/19 10:07,"471 Ridge St, New York City, NY 10001" +305476,AAA Batteries (4-pack),3,2.99,12/19/19 00:37,"620 Elm St, New York City, NY 10001" +305477,Apple Airpods Headphones,1,150,12/04/19 21:11,"333 Church St, Boston, MA 02215" +305478,27in 4K Gaming Monitor,1,389.99,12/02/19 16:41,"391 Center St, Atlanta, GA 30301" +305479,USB-C Charging Cable,1,11.95,12/27/19 11:50,"478 West St, San Francisco, CA 94016" +305480,Apple Airpods Headphones,1,150,12/09/19 23:54,"672 Dogwood St, Boston, MA 02215" +305481,Wired Headphones,2,11.99,12/25/19 15:00,"536 Cherry St, New York City, NY 10001" +305482,AAA Batteries (4-pack),1,2.99,12/13/19 14:42,"587 Hill St, Boston, MA 02215" +305483,Google Phone,1,600,12/10/19 04:38,"555 South St, Boston, MA 02215" +305484,Bose SoundSport Headphones,1,99.99,12/03/19 15:46,"822 Walnut St, Atlanta, GA 30301" +305485,Wired Headphones,1,11.99,12/17/19 19:39,"731 Main St, San Francisco, CA 94016" +305486,AA Batteries (4-pack),2,3.84,12/24/19 01:26,"280 1st St, Dallas, TX 75001" +305487,AAA Batteries (4-pack),1,2.99,12/22/19 21:10,"815 7th St, Atlanta, GA 30301" +305488,Lightning Charging Cable,1,14.95,12/23/19 18:44,"207 1st St, Seattle, WA 98101" +305489,ThinkPad Laptop,1,999.99,12/04/19 15:26,"355 Hickory St, Boston, MA 02215" +305490,Wired Headphones,1,11.99,12/21/19 23:19,"38 Lincoln St, Los Angeles, CA 90001" +305491,USB-C Charging Cable,2,11.95,12/10/19 20:11,"480 River St, Los Angeles, CA 90001" +305492,AA Batteries (4-pack),1,3.84,12/01/19 10:26,"817 Lakeview St, San Francisco, CA 94016" +305493,27in 4K Gaming Monitor,1,389.99,12/29/19 02:05,"446 Adams St, San Francisco, CA 94016" +305494,iPhone,1,700,12/29/19 06:41,"609 Elm St, New York City, NY 10001" +305495,27in 4K Gaming Monitor,1,389.99,12/18/19 13:35,"323 8th St, San Francisco, CA 94016" +305496,Lightning Charging Cable,1,14.95,12/19/19 12:20,"461 Hill St, New York City, NY 10001" +305497,Wired Headphones,1,11.99,12/26/19 12:04,"413 8th St, New York City, NY 10001" +305498,Wired Headphones,1,11.99,12/03/19 12:52,"567 Cherry St, Portland, OR 97035" +305499,Wired Headphones,1,11.99,12/31/19 20:07,"202 Cherry St, San Francisco, CA 94016" +305500,Bose SoundSport Headphones,1,99.99,12/14/19 16:45,"35 Jackson St, Portland, ME 04101" +305501,Flatscreen TV,1,300,12/08/19 12:42,"596 Walnut St, San Francisco, CA 94016" +305502,AAA Batteries (4-pack),1,2.99,12/08/19 17:05,"248 12th St, Portland, OR 97035" +305503,Bose SoundSport Headphones,1,99.99,12/17/19 21:05,"769 5th St, San Francisco, CA 94016" +305504,Flatscreen TV,1,300,12/21/19 09:56,"195 Chestnut St, Portland, OR 97035" +305505,Lightning Charging Cable,1,14.95,12/15/19 00:15,"659 Willow St, Seattle, WA 98101" +305506,USB-C Charging Cable,2,11.95,12/07/19 21:20,"122 Main St, Portland, ME 04101" +305507,Wired Headphones,1,11.99,12/12/19 11:28,"67 Highland St, Dallas, TX 75001" +305508,Google Phone,1,600,12/02/19 12:54,"723 Chestnut St, Boston, MA 02215" +305509,34in Ultrawide Monitor,1,379.99,12/12/19 11:36,"23 9th St, Atlanta, GA 30301" +305510,Apple Airpods Headphones,1,150,12/21/19 15:07,"622 Walnut St, Los Angeles, CA 90001" +305511,AAA Batteries (4-pack),2,2.99,12/28/19 18:22,"429 Lincoln St, Los Angeles, CA 90001" +305512,AAA Batteries (4-pack),3,2.99,12/23/19 10:41,"327 14th St, Portland, OR 97035" +305513,20in Monitor,1,109.99,12/31/19 07:10,"470 River St, Los Angeles, CA 90001" +305514,Google Phone,1,600,12/31/19 13:22,"881 South St, Los Angeles, CA 90001" +305515,Macbook Pro Laptop,1,1700,12/07/19 17:44,"518 Chestnut St, New York City, NY 10001" +305516,USB-C Charging Cable,1,11.95,12/17/19 18:34,"398 Hill St, San Francisco, CA 94016" +305517,AAA Batteries (4-pack),1,2.99,12/16/19 10:25,"337 Forest St, Portland, OR 97035" +305518,USB-C Charging Cable,1,11.95,12/31/19 17:08,"749 Willow St, Seattle, WA 98101" +305519,Macbook Pro Laptop,1,1700,12/07/19 10:34,"588 1st St, Los Angeles, CA 90001" +305520,27in 4K Gaming Monitor,1,389.99,12/30/19 09:30,"564 Spruce St, Boston, MA 02215" +305521,Lightning Charging Cable,1,14.95,12/07/19 18:50,"645 Main St, New York City, NY 10001" +305521,Bose SoundSport Headphones,1,99.99,12/07/19 18:50,"645 Main St, New York City, NY 10001" +305522,34in Ultrawide Monitor,1,379.99,12/07/19 18:17,"795 10th St, Austin, TX 73301" +305523,Bose SoundSport Headphones,1,99.99,12/04/19 20:49,"514 7th St, San Francisco, CA 94016" +305524,AA Batteries (4-pack),1,3.84,12/27/19 04:50,"150 7th St, Austin, TX 73301" +305525,AA Batteries (4-pack),2,3.84,12/02/19 10:04,"813 4th St, Portland, OR 97035" +305526,Wired Headphones,1,11.99,12/31/19 14:07,"362 Walnut St, New York City, NY 10001" +305527,Wired Headphones,1,11.99,12/03/19 11:05,"665 Main St, New York City, NY 10001" +305528,27in 4K Gaming Monitor,1,389.99,12/30/19 04:53,"651 13th St, Atlanta, GA 30301" +305529,AAA Batteries (4-pack),1,2.99,12/13/19 10:28,"743 2nd St, Boston, MA 02215" +305530,AAA Batteries (4-pack),1,2.99,12/01/19 13:08,"935 Hill St, New York City, NY 10001" +305531,Wired Headphones,1,11.99,12/23/19 12:53,"407 South St, San Francisco, CA 94016" +305532,iPhone,1,700,12/08/19 00:25,"431 10th St, Los Angeles, CA 90001" +305533,Bose SoundSport Headphones,2,99.99,12/01/19 17:01,"717 Pine St, Boston, MA 02215" +305533,Bose SoundSport Headphones,1,99.99,12/01/19 17:01,"717 Pine St, Boston, MA 02215" +305534,Bose SoundSport Headphones,1,99.99,12/10/19 11:44,"625 South St, San Francisco, CA 94016" +305535,AA Batteries (4-pack),2,3.84,12/22/19 07:49,"399 Hickory St, Dallas, TX 75001" +305536,AAA Batteries (4-pack),2,2.99,12/27/19 15:18,"450 1st St, Atlanta, GA 30301" +305537,27in 4K Gaming Monitor,1,389.99,12/10/19 21:07,"624 5th St, New York City, NY 10001" +305538,AAA Batteries (4-pack),2,2.99,12/11/19 18:20,"610 8th St, Los Angeles, CA 90001" +305539,AA Batteries (4-pack),2,3.84,12/11/19 19:03,"893 North St, Austin, TX 73301" +305540,AA Batteries (4-pack),2,3.84,12/10/19 11:27,"169 9th St, San Francisco, CA 94016" +305541,34in Ultrawide Monitor,1,379.99,12/02/19 15:48,"501 Chestnut St, Los Angeles, CA 90001" +305541,Lightning Charging Cable,1,14.95,12/02/19 15:48,"501 Chestnut St, Los Angeles, CA 90001" +305542,USB-C Charging Cable,1,11.95,12/12/19 22:18,"645 Pine St, Los Angeles, CA 90001" +305543,AA Batteries (4-pack),1,3.84,01/01/20 01:05,"337 Center St, Atlanta, GA 30301" +305544,AA Batteries (4-pack),2,3.84,12/15/19 16:33,"408 Jefferson St, Portland, OR 97035" +305545,27in FHD Monitor,1,149.99,12/13/19 11:05,"318 Maple St, Austin, TX 73301" +305546,Lightning Charging Cable,1,14.95,12/18/19 17:29,"515 Lincoln St, San Francisco, CA 94016" +305547,27in 4K Gaming Monitor,1,389.99,12/23/19 17:15,"931 Meadow St, Austin, TX 73301" +305548,ThinkPad Laptop,1,999.99,12/18/19 14:05,"304 8th St, San Francisco, CA 94016" +305549,iPhone,1,700,12/24/19 16:53,"508 Dogwood St, San Francisco, CA 94016" +305550,AAA Batteries (4-pack),2,2.99,12/13/19 22:07,"744 River St, Portland, OR 97035" +305551,AAA Batteries (4-pack),1,2.99,12/21/19 09:21,"563 9th St, New York City, NY 10001" +305552,USB-C Charging Cable,1,11.95,12/22/19 11:04,"912 North St, Dallas, TX 75001" +305553,Lightning Charging Cable,1,14.95,12/15/19 15:23,"729 Lincoln St, Boston, MA 02215" +305554,USB-C Charging Cable,1,11.95,12/10/19 11:50,"307 Lake St, Los Angeles, CA 90001" +305555,USB-C Charging Cable,2,11.95,12/23/19 08:07,"289 Lakeview St, Los Angeles, CA 90001" +305556,AAA Batteries (4-pack),1,2.99,12/07/19 18:34,"794 Lake St, New York City, NY 10001" +305557,20in Monitor,1,109.99,12/30/19 08:49,"178 Washington St, Atlanta, GA 30301" +305558,Wired Headphones,1,11.99,12/02/19 12:35,"493 10th St, Los Angeles, CA 90001" +305559,27in 4K Gaming Monitor,1,389.99,12/11/19 21:01,"942 2nd St, San Francisco, CA 94016" +305560,20in Monitor,1,109.99,12/11/19 07:29,"180 South St, Los Angeles, CA 90001" +305561,LG Dryer,1,600.0,12/12/19 07:57,"592 2nd St, San Francisco, CA 94016" +305562,USB-C Charging Cable,1,11.95,12/08/19 13:42,"585 12th St, Dallas, TX 75001" +305563,Vareebadd Phone,1,400,12/10/19 15:34,"358 8th St, San Francisco, CA 94016" +305563,Bose SoundSport Headphones,1,99.99,12/10/19 15:34,"358 8th St, San Francisco, CA 94016" +305563,Wired Headphones,1,11.99,12/10/19 15:34,"358 8th St, San Francisco, CA 94016" +305564,AAA Batteries (4-pack),1,2.99,12/31/19 13:02,"957 Cherry St, Atlanta, GA 30301" +305565,USB-C Charging Cable,1,11.95,12/10/19 21:05,"186 Cedar St, San Francisco, CA 94016" +305566,AA Batteries (4-pack),1,3.84,12/17/19 12:34,"80 Highland St, Los Angeles, CA 90001" +305567,Lightning Charging Cable,1,14.95,12/30/19 13:10,"613 South St, San Francisco, CA 94016" +305568,27in 4K Gaming Monitor,1,389.99,12/15/19 12:21,"100 Dogwood St, Austin, TX 73301" +305569,AAA Batteries (4-pack),2,2.99,12/19/19 18:59,"172 6th St, Atlanta, GA 30301" +305570,Lightning Charging Cable,1,14.95,12/22/19 21:33,"794 Church St, Atlanta, GA 30301" +305571,Wired Headphones,1,11.99,12/03/19 12:01,"363 2nd St, Dallas, TX 75001" +305572,27in FHD Monitor,1,149.99,12/15/19 15:15,"318 North St, San Francisco, CA 94016" +305573,27in FHD Monitor,1,149.99,12/22/19 12:29,"97 Spruce St, Portland, OR 97035" +305574,USB-C Charging Cable,1,11.95,12/08/19 10:07,"621 5th St, San Francisco, CA 94016" +305575,AAA Batteries (4-pack),1,2.99,12/07/19 21:25,"827 Center St, San Francisco, CA 94016" +305576,Bose SoundSport Headphones,1,99.99,12/26/19 22:25,"744 12th St, Boston, MA 02215" +305577,AAA Batteries (4-pack),1,2.99,12/31/19 14:02,"311 West St, Los Angeles, CA 90001" +305578,AA Batteries (4-pack),1,3.84,12/04/19 18:34,"257 Ridge St, Seattle, WA 98101" +305579,Bose SoundSport Headphones,1,99.99,12/17/19 14:21,"963 10th St, Boston, MA 02215" +305580,27in FHD Monitor,1,149.99,12/04/19 01:47,"880 Dogwood St, San Francisco, CA 94016" +305581,Apple Airpods Headphones,1,150,12/24/19 11:46,"855 Jefferson St, Atlanta, GA 30301" +305582,Lightning Charging Cable,1,14.95,12/02/19 14:31,"106 Hill St, Dallas, TX 75001" +305583,USB-C Charging Cable,1,11.95,12/02/19 19:09,"833 5th St, Los Angeles, CA 90001" +305584,AA Batteries (4-pack),1,3.84,12/11/19 14:24,"631 Elm St, New York City, NY 10001" +305585,AA Batteries (4-pack),2,3.84,12/20/19 02:07,"901 Lincoln St, New York City, NY 10001" +305586,Wired Headphones,1,11.99,12/03/19 09:28,"691 South St, Boston, MA 02215" +305587,AA Batteries (4-pack),2,3.84,12/05/19 21:48,"175 Center St, San Francisco, CA 94016" +305588,Bose SoundSport Headphones,1,99.99,12/23/19 06:10,"548 Cherry St, San Francisco, CA 94016" +305589,Wired Headphones,1,11.99,12/12/19 11:34,"704 North St, Dallas, TX 75001" +305590,USB-C Charging Cable,1,11.95,12/19/19 14:31,"185 Wilson St, Boston, MA 02215" +305591,AAA Batteries (4-pack),1,2.99,12/06/19 13:34,"19 Cedar St, Los Angeles, CA 90001" +305592,Flatscreen TV,1,300,12/17/19 19:54,"41 Wilson St, San Francisco, CA 94016" +305593,Wired Headphones,1,11.99,12/14/19 13:14,"273 Church St, Los Angeles, CA 90001" +305594,Apple Airpods Headphones,1,150,12/17/19 00:14,"844 Cedar St, San Francisco, CA 94016" +305595,Wired Headphones,1,11.99,12/25/19 19:14,"952 5th St, San Francisco, CA 94016" +305596,iPhone,1,700,12/08/19 13:20,"109 Highland St, Los Angeles, CA 90001" +305597,AA Batteries (4-pack),1,3.84,12/28/19 15:49,"792 Highland St, New York City, NY 10001" +305598,iPhone,1,700,12/05/19 17:13,"502 Main St, Boston, MA 02215" +305598,Wired Headphones,1,11.99,12/05/19 17:13,"502 Main St, Boston, MA 02215" +305599,34in Ultrawide Monitor,1,379.99,12/29/19 21:53,"567 Madison St, Boston, MA 02215" +305600,Apple Airpods Headphones,1,150,12/12/19 06:12,"39 Chestnut St, Austin, TX 73301" +305601,27in FHD Monitor,1,149.99,12/07/19 00:53,"29 Jefferson St, San Francisco, CA 94016" +305602,iPhone,1,700,12/25/19 10:03,"976 2nd St, Seattle, WA 98101" +305603,AAA Batteries (4-pack),1,2.99,12/04/19 13:24,"363 Jefferson St, Austin, TX 73301" +305604,AAA Batteries (4-pack),1,2.99,12/22/19 16:10,"660 2nd St, Atlanta, GA 30301" +305605,AAA Batteries (4-pack),1,2.99,12/23/19 10:16,"21 Cedar St, San Francisco, CA 94016" +305606,iPhone,1,700,12/13/19 15:07,"647 Pine St, Portland, OR 97035" +305607,USB-C Charging Cable,1,11.95,12/01/19 22:22,"160 2nd St, Los Angeles, CA 90001" +305608,AA Batteries (4-pack),2,3.84,12/01/19 14:12,"240 Sunset St, Dallas, TX 75001" +305609,USB-C Charging Cable,1,11.95,12/02/19 12:31,"637 Dogwood St, Seattle, WA 98101" +305610,27in 4K Gaming Monitor,1,389.99,12/07/19 08:56,"292 Jefferson St, New York City, NY 10001" +305611,AA Batteries (4-pack),3,3.84,12/21/19 21:45,"59 Adams St, Portland, ME 04101" +305612,AA Batteries (4-pack),3,3.84,12/25/19 12:00,"831 Willow St, Dallas, TX 75001" +305613,USB-C Charging Cable,1,11.95,12/06/19 19:37,"140 River St, San Francisco, CA 94016" +305614,AA Batteries (4-pack),1,3.84,12/03/19 12:41,"817 Johnson St, Los Angeles, CA 90001" +305615,Macbook Pro Laptop,1,1700,12/25/19 18:55,"691 Maple St, Portland, OR 97035" +305616,Wired Headphones,1,11.99,12/18/19 11:55,"362 12th St, Seattle, WA 98101" +305617,Bose SoundSport Headphones,1,99.99,12/11/19 20:06,"736 Johnson St, Seattle, WA 98101" +305618,Bose SoundSport Headphones,1,99.99,12/23/19 15:05,"461 14th St, Seattle, WA 98101" +305619,USB-C Charging Cable,1,11.95,12/08/19 07:53,"318 Washington St, New York City, NY 10001" +305620,Apple Airpods Headphones,1,150,12/12/19 17:32,"842 Main St, Austin, TX 73301" +305621,USB-C Charging Cable,1,11.95,12/16/19 08:18,"327 Lincoln St, New York City, NY 10001" +305622,Bose SoundSport Headphones,1,99.99,12/05/19 17:07,"245 Hickory St, Portland, OR 97035" +305622,Bose SoundSport Headphones,1,99.99,12/05/19 17:07,"245 Hickory St, Portland, OR 97035" +305623,Wired Headphones,1,11.99,12/05/19 18:46,"127 River St, Los Angeles, CA 90001" +305624,USB-C Charging Cable,1,11.95,12/10/19 22:50,"410 Chestnut St, New York City, NY 10001" +305625,27in 4K Gaming Monitor,1,389.99,12/22/19 05:26,"744 Highland St, New York City, NY 10001" +305626,Wired Headphones,1,11.99,12/25/19 11:23,"950 West St, Portland, ME 04101" +305627,Lightning Charging Cable,1,14.95,12/07/19 15:38,"666 9th St, Atlanta, GA 30301" +305628,Apple Airpods Headphones,1,150,12/06/19 07:20,"725 5th St, San Francisco, CA 94016" +305629,AA Batteries (4-pack),1,3.84,12/09/19 10:48,"819 Center St, San Francisco, CA 94016" +305630,AA Batteries (4-pack),1,3.84,12/27/19 18:53,"966 Willow St, San Francisco, CA 94016" +305631,Macbook Pro Laptop,1,1700,12/08/19 05:35,"786 Madison St, Boston, MA 02215" +305632,Wired Headphones,1,11.99,12/04/19 08:49,"368 Adams St, Boston, MA 02215" +305632,Apple Airpods Headphones,1,150,12/04/19 08:49,"368 Adams St, Boston, MA 02215" +305633,27in FHD Monitor,1,149.99,12/20/19 13:48,"670 12th St, Los Angeles, CA 90001" +305634,ThinkPad Laptop,1,999.99,12/06/19 13:57,"717 Jefferson St, Atlanta, GA 30301" +305635,Apple Airpods Headphones,1,150,12/27/19 19:14,"486 Hill St, Seattle, WA 98101" +305636,34in Ultrawide Monitor,1,379.99,12/29/19 14:05,"635 Spruce St, Dallas, TX 75001" +305637,Wired Headphones,1,11.99,12/11/19 16:31,"315 Meadow St, Seattle, WA 98101" +305637,Lightning Charging Cable,1,14.95,12/11/19 16:31,"315 Meadow St, Seattle, WA 98101" +305638,Lightning Charging Cable,1,14.95,12/14/19 19:23,"321 Highland St, New York City, NY 10001" +305639,Lightning Charging Cable,1,14.95,12/19/19 10:10,"154 Meadow St, San Francisco, CA 94016" +305640,AAA Batteries (4-pack),2,2.99,12/07/19 10:26,"883 Lake St, Dallas, TX 75001" +305641,Lightning Charging Cable,1,14.95,12/16/19 01:53,"512 Hickory St, Seattle, WA 98101" +305642,20in Monitor,1,109.99,12/24/19 09:45,"97 12th St, New York City, NY 10001" +305643,LG Washing Machine,1,600.0,12/25/19 20:07,"78 Forest St, Austin, TX 73301" +305644,Bose SoundSport Headphones,1,99.99,12/19/19 22:01,"401 Washington St, New York City, NY 10001" +305645,USB-C Charging Cable,1,11.95,12/20/19 08:14,"554 Ridge St, San Francisco, CA 94016" +305646,Wired Headphones,1,11.99,12/21/19 12:03,"120 Jefferson St, Portland, OR 97035" +305647,AAA Batteries (4-pack),2,2.99,12/28/19 15:39,"97 2nd St, Los Angeles, CA 90001" +305648,27in FHD Monitor,1,149.99,12/04/19 08:50,"904 Spruce St, Los Angeles, CA 90001" +305649,Bose SoundSport Headphones,1,99.99,12/24/19 12:38,"201 Adams St, New York City, NY 10001" +305650,27in 4K Gaming Monitor,1,389.99,12/01/19 17:13,"762 Church St, Los Angeles, CA 90001" +305651,AAA Batteries (4-pack),1,2.99,12/21/19 22:57,"110 Maple St, Los Angeles, CA 90001" +305652,AAA Batteries (4-pack),1,2.99,12/08/19 17:09,"179 West St, San Francisco, CA 94016" +305653,AA Batteries (4-pack),1,3.84,12/31/19 23:18,"657 7th St, San Francisco, CA 94016" +305654,USB-C Charging Cable,1,11.95,12/16/19 18:50,"787 Cedar St, Portland, OR 97035" +305655,Bose SoundSport Headphones,1,99.99,12/18/19 21:30,"281 Spruce St, Los Angeles, CA 90001" +305656,AAA Batteries (4-pack),1,2.99,12/05/19 07:13,"539 Lincoln St, Los Angeles, CA 90001" +305657,Lightning Charging Cable,1,14.95,12/19/19 18:38,"738 South St, Los Angeles, CA 90001" +305658,Wired Headphones,1,11.99,12/13/19 12:09,"16 8th St, San Francisco, CA 94016" +305659,iPhone,1,700,12/02/19 08:13,"155 Jackson St, Atlanta, GA 30301" +305660,Apple Airpods Headphones,1,150,12/25/19 17:14,"140 South St, San Francisco, CA 94016" +305661,AAA Batteries (4-pack),3,2.99,12/24/19 07:10,"260 Ridge St, Los Angeles, CA 90001" +305662,Bose SoundSport Headphones,1,99.99,12/14/19 15:13,"336 Wilson St, Dallas, TX 75001" +305663,Lightning Charging Cable,1,14.95,12/18/19 20:13,"119 Walnut St, Atlanta, GA 30301" +305664,AA Batteries (4-pack),1,3.84,12/04/19 18:03,"10 6th St, Seattle, WA 98101" +305665,AA Batteries (4-pack),1,3.84,12/10/19 14:18,"800 Sunset St, New York City, NY 10001" +305666,Vareebadd Phone,1,400,12/09/19 21:44,"317 Forest St, Boston, MA 02215" +305666,USB-C Charging Cable,2,11.95,12/09/19 21:44,"317 Forest St, Boston, MA 02215" +305667,Bose SoundSport Headphones,1,99.99,12/06/19 09:49,"64 1st St, Austin, TX 73301" +305668,AA Batteries (4-pack),1,3.84,12/04/19 15:53,"10 West St, Austin, TX 73301" +305669,Wired Headphones,1,11.99,12/31/19 23:20,"847 Jackson St, Seattle, WA 98101" +305670,Bose SoundSport Headphones,1,99.99,12/08/19 08:10,"807 North St, Austin, TX 73301" +305671,ThinkPad Laptop,1,999.99,12/15/19 07:00,"853 Lincoln St, Atlanta, GA 30301" +305672,AA Batteries (4-pack),1,3.84,12/01/19 16:40,"8 Cedar St, Los Angeles, CA 90001" +305673,USB-C Charging Cable,2,11.95,12/11/19 03:18,"112 8th St, Boston, MA 02215" +305674,AA Batteries (4-pack),1,3.84,12/07/19 21:14,"738 Madison St, Atlanta, GA 30301" +305675,Lightning Charging Cable,1,14.95,12/13/19 22:45,"769 10th St, New York City, NY 10001" +305676,34in Ultrawide Monitor,1,379.99,12/16/19 08:46,"666 Walnut St, San Francisco, CA 94016" +305677,AAA Batteries (4-pack),2,2.99,12/26/19 17:42,"606 Sunset St, San Francisco, CA 94016" +305678,Wired Headphones,2,11.99,12/15/19 01:05,"909 South St, San Francisco, CA 94016" +305679,Wired Headphones,2,11.99,12/15/19 09:33,"31 Walnut St, San Francisco, CA 94016" +305680,USB-C Charging Cable,1,11.95,12/28/19 17:24,"30 1st St, Dallas, TX 75001" +305681,27in FHD Monitor,1,149.99,12/22/19 14:46,"534 Johnson St, Boston, MA 02215" +305682,USB-C Charging Cable,1,11.95,12/22/19 10:48,"14 Jefferson St, Boston, MA 02215" +305683,AA Batteries (4-pack),2,3.84,12/25/19 12:47,"525 North St, Atlanta, GA 30301" +305684,27in 4K Gaming Monitor,1,389.99,12/13/19 15:34,"859 Cedar St, Los Angeles, CA 90001" +305685,Bose SoundSport Headphones,1,99.99,12/04/19 18:39,"765 Cedar St, Los Angeles, CA 90001" +305686,Lightning Charging Cable,3,14.95,12/24/19 17:10,"954 Park St, Austin, TX 73301" +305687,Apple Airpods Headphones,1,150,12/04/19 18:49,"662 7th St, Boston, MA 02215" +305688,Lightning Charging Cable,1,14.95,12/12/19 09:58,"339 Lakeview St, Austin, TX 73301" +305689,Wired Headphones,1,11.99,12/03/19 17:19,"360 Jackson St, Portland, OR 97035" +305690,AA Batteries (4-pack),1,3.84,12/20/19 20:43,"406 Chestnut St, Dallas, TX 75001" +305691,AAA Batteries (4-pack),1,2.99,12/15/19 15:21,"243 Adams St, Atlanta, GA 30301" +305692,iPhone,1,700,12/16/19 13:47,"647 North St, New York City, NY 10001" +305693,Wired Headphones,1,11.99,12/16/19 10:15,"949 West St, Los Angeles, CA 90001" +305694,Lightning Charging Cable,1,14.95,12/10/19 12:29,"336 Washington St, Los Angeles, CA 90001" +305695,Wired Headphones,1,11.99,12/10/19 19:43,"694 Park St, Los Angeles, CA 90001" +305696,AA Batteries (4-pack),2,3.84,12/31/19 16:14,"297 2nd St, Atlanta, GA 30301" +305697,Flatscreen TV,1,300,12/28/19 21:01,"463 Spruce St, Seattle, WA 98101" +305698,iPhone,1,700,12/17/19 12:36,"870 Hill St, Austin, TX 73301" +305699,Apple Airpods Headphones,1,150,12/05/19 13:49,"785 Hill St, Boston, MA 02215" +305700,USB-C Charging Cable,1,11.95,12/30/19 23:26,"913 Lincoln St, Atlanta, GA 30301" +305701,27in 4K Gaming Monitor,1,389.99,12/11/19 05:39,"454 Cedar St, Austin, TX 73301" +305702,AAA Batteries (4-pack),2,2.99,12/06/19 21:59,"356 14th St, Boston, MA 02215" +305703,Lightning Charging Cable,1,14.95,12/31/19 21:51,"511 Cedar St, Los Angeles, CA 90001" +305704,Bose SoundSport Headphones,1,99.99,12/21/19 14:18,"92 Cherry St, San Francisco, CA 94016" +305705,34in Ultrawide Monitor,1,379.99,12/14/19 17:38,"371 Johnson St, Los Angeles, CA 90001" +305706,Flatscreen TV,1,300,12/23/19 16:01,"178 Cherry St, Boston, MA 02215" +305707,Apple Airpods Headphones,1,150,12/03/19 19:04,"915 2nd St, Los Angeles, CA 90001" +305708,Bose SoundSport Headphones,1,99.99,12/15/19 18:04,"367 Maple St, Seattle, WA 98101" +305709,Flatscreen TV,1,300,12/12/19 20:59,"469 Main St, New York City, NY 10001" +305710,AA Batteries (4-pack),1,3.84,12/05/19 16:04,"162 Chestnut St, Dallas, TX 75001" +305710,Lightning Charging Cable,1,14.95,12/05/19 16:04,"162 Chestnut St, Dallas, TX 75001" +305711,ThinkPad Laptop,1,999.99,12/17/19 21:12,"938 Maple St, Seattle, WA 98101" +305712,iPhone,1,700,12/13/19 20:31,"107 Main St, San Francisco, CA 94016" +305713,Apple Airpods Headphones,1,150,12/30/19 18:42,"428 South St, Austin, TX 73301" +305714,Lightning Charging Cable,1,14.95,12/08/19 09:24,"893 Lake St, Boston, MA 02215" +305715,Wired Headphones,1,11.99,12/08/19 21:00,"354 Cedar St, Atlanta, GA 30301" +305716,20in Monitor,1,109.99,12/15/19 09:20,"997 Lakeview St, Los Angeles, CA 90001" +305717,Wired Headphones,1,11.99,12/24/19 16:41,"486 Elm St, New York City, NY 10001" +305718,LG Washing Machine,1,600.0,12/02/19 22:21,"46 Jackson St, Portland, OR 97035" +305719,Wired Headphones,2,11.99,12/16/19 14:11,"19 9th St, New York City, NY 10001" +305720,Macbook Pro Laptop,1,1700,12/08/19 09:59,"624 11th St, Boston, MA 02215" +305721,27in 4K Gaming Monitor,1,389.99,12/24/19 16:14,"94 Lakeview St, Los Angeles, CA 90001" +305722,27in FHD Monitor,1,149.99,12/19/19 08:46,"814 Maple St, New York City, NY 10001" +305723,27in 4K Gaming Monitor,1,389.99,12/18/19 12:45,"477 11th St, New York City, NY 10001" +305724,34in Ultrawide Monitor,1,379.99,12/06/19 18:18,"367 Walnut St, San Francisco, CA 94016" +305725,USB-C Charging Cable,1,11.95,12/07/19 18:26,"723 Park St, Portland, ME 04101" +305726,AA Batteries (4-pack),2,3.84,12/10/19 20:40,"879 10th St, New York City, NY 10001" +305727,Lightning Charging Cable,1,14.95,12/12/19 23:17,"941 South St, Portland, OR 97035" +305728,Flatscreen TV,1,300,12/28/19 18:29,"285 Sunset St, Dallas, TX 75001" +305729,27in 4K Gaming Monitor,1,389.99,12/20/19 11:35,"137 Park St, Portland, OR 97035" +305730,27in FHD Monitor,1,149.99,12/06/19 23:50,"520 South St, New York City, NY 10001" +305731,USB-C Charging Cable,2,11.95,12/23/19 16:28,"853 Ridge St, New York City, NY 10001" +305732,USB-C Charging Cable,1,11.95,12/29/19 12:18,"65 Forest St, Atlanta, GA 30301" +305733,USB-C Charging Cable,1,11.95,12/05/19 13:35,"46 11th St, Los Angeles, CA 90001" +305734,Bose SoundSport Headphones,1,99.99,12/12/19 10:13,"874 Johnson St, Boston, MA 02215" +305735,ThinkPad Laptop,1,999.99,12/15/19 13:04,"915 Walnut St, Seattle, WA 98101" +305736,27in 4K Gaming Monitor,1,389.99,12/31/19 18:37,"583 Sunset St, Los Angeles, CA 90001" +305737,AA Batteries (4-pack),1,3.84,12/07/19 16:22,"139 Dogwood St, San Francisco, CA 94016" +305738,AAA Batteries (4-pack),3,2.99,12/09/19 15:17,"291 13th St, New York City, NY 10001" +305739,AA Batteries (4-pack),1,3.84,12/18/19 00:01,"259 7th St, Portland, OR 97035" +305740,Bose SoundSport Headphones,1,99.99,12/22/19 08:46,"879 Meadow St, Atlanta, GA 30301" +305741,27in FHD Monitor,1,149.99,12/31/19 09:29,"30 Jackson St, Atlanta, GA 30301" +305742,iPhone,1,700,12/08/19 20:13,"608 Lincoln St, Portland, OR 97035" +305743,Macbook Pro Laptop,1,1700,12/25/19 14:48,"561 Main St, San Francisco, CA 94016" +305744,USB-C Charging Cable,1,11.95,12/22/19 20:52,"936 7th St, Seattle, WA 98101" +305745,Apple Airpods Headphones,1,150,12/18/19 22:43,"420 Maple St, Austin, TX 73301" +305746,Flatscreen TV,1,300,12/24/19 19:14,"143 Dogwood St, Los Angeles, CA 90001" +305747,27in FHD Monitor,1,149.99,12/01/19 19:34,"510 Ridge St, San Francisco, CA 94016" +305748,Wired Headphones,1,11.99,12/10/19 21:38,"352 Pine St, San Francisco, CA 94016" +305749,Wired Headphones,1,11.99,12/22/19 15:16,"215 Elm St, Los Angeles, CA 90001" +305749,Lightning Charging Cable,1,14.95,12/22/19 15:16,"215 Elm St, Los Angeles, CA 90001" +305750,USB-C Charging Cable,1,11.95,12/30/19 20:06,"444 Hickory St, Atlanta, GA 30301" +305751,AA Batteries (4-pack),3,3.84,12/20/19 10:07,"426 North St, San Francisco, CA 94016" +305752,Bose SoundSport Headphones,1,99.99,12/29/19 21:09,"431 River St, Los Angeles, CA 90001" +305753,AA Batteries (4-pack),1,3.84,12/30/19 03:26,"511 2nd St, San Francisco, CA 94016" +305754,Lightning Charging Cable,1,14.95,12/20/19 15:34,"230 Dogwood St, San Francisco, CA 94016" +305755,USB-C Charging Cable,1,11.95,12/19/19 09:01,"215 2nd St, Los Angeles, CA 90001" +305756,AAA Batteries (4-pack),1,2.99,12/30/19 18:33,"772 Center St, Portland, OR 97035" +305757,27in 4K Gaming Monitor,1,389.99,12/05/19 09:20,"73 Madison St, San Francisco, CA 94016" +305758,iPhone,1,700,12/09/19 17:02,"826 Forest St, New York City, NY 10001" +305759,AA Batteries (4-pack),1,3.84,12/13/19 10:11,"897 Cherry St, San Francisco, CA 94016" +305760,USB-C Charging Cable,1,11.95,12/20/19 19:26,"139 Washington St, New York City, NY 10001" +305761,AA Batteries (4-pack),1,3.84,12/22/19 10:52,"190 Lincoln St, Portland, OR 97035" +305762,AAA Batteries (4-pack),3,2.99,12/27/19 13:00,"359 Pine St, Atlanta, GA 30301" +305763,34in Ultrawide Monitor,1,379.99,12/17/19 13:08,"256 Jefferson St, San Francisco, CA 94016" +305764,Lightning Charging Cable,1,14.95,12/13/19 17:19,"10 Lakeview St, Boston, MA 02215" +305765,AAA Batteries (4-pack),1,2.99,12/10/19 18:53,"762 Johnson St, Atlanta, GA 30301" +305766,Lightning Charging Cable,1,14.95,12/15/19 18:21,"575 Maple St, Atlanta, GA 30301" +305767,AAA Batteries (4-pack),1,2.99,12/07/19 08:49,"896 Madison St, Atlanta, GA 30301" +305768,Lightning Charging Cable,1,14.95,12/06/19 12:53,"240 Lakeview St, Seattle, WA 98101" +305769,USB-C Charging Cable,1,11.95,12/20/19 22:42,"439 Lake St, Los Angeles, CA 90001" +305770,ThinkPad Laptop,1,999.99,12/08/19 11:31,"846 Johnson St, Seattle, WA 98101" +305771,AAA Batteries (4-pack),1,2.99,12/01/19 14:34,"165 Walnut St, Atlanta, GA 30301" +305772,Wired Headphones,1,11.99,12/27/19 12:57,"371 13th St, Los Angeles, CA 90001" +305773,Wired Headphones,1,11.99,12/19/19 11:14,"103 12th St, Boston, MA 02215" +305774,27in FHD Monitor,1,149.99,12/25/19 17:38,"186 North St, Seattle, WA 98101" +305775,Google Phone,1,600,12/08/19 12:43,"356 North St, Los Angeles, CA 90001" +305775,USB-C Charging Cable,1,11.95,12/08/19 12:43,"356 North St, Los Angeles, CA 90001" +305776,ThinkPad Laptop,1,999.99,12/11/19 19:17,"166 Willow St, Dallas, TX 75001" +305777,Vareebadd Phone,1,400,12/22/19 18:50,"286 Lake St, Atlanta, GA 30301" +305777,Bose SoundSport Headphones,1,99.99,12/22/19 18:50,"286 Lake St, Atlanta, GA 30301" +305778,Lightning Charging Cable,1,14.95,12/21/19 14:19,"554 Madison St, San Francisco, CA 94016" +305779,27in 4K Gaming Monitor,1,389.99,12/26/19 10:20,"530 Hickory St, Atlanta, GA 30301" +305780,AA Batteries (4-pack),1,3.84,12/24/19 00:15,"994 Walnut St, San Francisco, CA 94016" +305781,USB-C Charging Cable,1,11.95,12/11/19 14:11,"179 Center St, Atlanta, GA 30301" +305782,Bose SoundSport Headphones,1,99.99,12/30/19 20:31,"747 Park St, San Francisco, CA 94016" +305783,Bose SoundSport Headphones,1,99.99,12/20/19 19:18,"617 North St, Seattle, WA 98101" +305784,Lightning Charging Cable,1,14.95,12/22/19 21:06,"911 River St, Seattle, WA 98101" +305785,Apple Airpods Headphones,1,150,12/29/19 21:56,"953 13th St, San Francisco, CA 94016" +305786,AAA Batteries (4-pack),2,2.99,12/17/19 11:03,"593 12th St, New York City, NY 10001" +305787,AAA Batteries (4-pack),1,2.99,12/28/19 09:21,"763 Pine St, Dallas, TX 75001" +305788,Apple Airpods Headphones,1,150,12/19/19 10:07,"679 Madison St, Boston, MA 02215" +305789,27in 4K Gaming Monitor,1,389.99,12/15/19 17:23,"785 Lakeview St, Seattle, WA 98101" +305790,27in 4K Gaming Monitor,1,389.99,12/13/19 12:20,"747 Elm St, Austin, TX 73301" +305791,Wired Headphones,1,11.99,12/24/19 21:01,"124 Jefferson St, Seattle, WA 98101" +305791,AA Batteries (4-pack),1,3.84,12/24/19 21:01,"124 Jefferson St, Seattle, WA 98101" +305792,Flatscreen TV,1,300,12/12/19 21:49,"651 9th St, Los Angeles, CA 90001" +305793,27in 4K Gaming Monitor,1,389.99,12/14/19 19:34,"848 Pine St, New York City, NY 10001" +305794,27in FHD Monitor,1,149.99,12/11/19 22:14,"654 Cedar St, Austin, TX 73301" +305795,AA Batteries (4-pack),1,3.84,12/04/19 11:23,"398 North St, New York City, NY 10001" +305796,AA Batteries (4-pack),1,3.84,12/22/19 08:45,"605 Hickory St, Atlanta, GA 30301" +305797,AA Batteries (4-pack),1,3.84,12/04/19 17:49,"49 8th St, Austin, TX 73301" +305798,USB-C Charging Cable,1,11.95,12/13/19 11:27,"550 Sunset St, Austin, TX 73301" +305799,27in FHD Monitor,1,149.99,12/13/19 20:12,"440 5th St, San Francisco, CA 94016" +305800,AAA Batteries (4-pack),1,2.99,12/09/19 10:14,"733 Lakeview St, Dallas, TX 75001" +305801,Apple Airpods Headphones,1,150,12/10/19 13:02,"807 Maple St, San Francisco, CA 94016" +305802,Wired Headphones,2,11.99,12/03/19 12:18,"949 Main St, Los Angeles, CA 90001" +305803,27in 4K Gaming Monitor,1,389.99,12/08/19 19:35,"656 Forest St, Seattle, WA 98101" +305804,Wired Headphones,1,11.99,12/09/19 20:00,"700 9th St, Portland, OR 97035" +305805,AAA Batteries (4-pack),1,2.99,12/20/19 10:40,"602 Ridge St, Boston, MA 02215" +305806,Wired Headphones,1,11.99,12/27/19 21:22,"69 Willow St, Los Angeles, CA 90001" +305807,ThinkPad Laptop,1,999.99,12/18/19 07:59,"29 Cherry St, Portland, OR 97035" +305808,AA Batteries (4-pack),1,3.84,12/29/19 13:32,"659 12th St, San Francisco, CA 94016" +305809,iPhone,1,700,12/08/19 06:50,"991 West St, New York City, NY 10001" +305810,AAA Batteries (4-pack),2,2.99,12/04/19 17:16,"874 Willow St, San Francisco, CA 94016" +305811,Vareebadd Phone,1,400,12/13/19 17:29,"977 South St, Atlanta, GA 30301" +305812,USB-C Charging Cable,1,11.95,12/25/19 17:25,"97 Lincoln St, Los Angeles, CA 90001" +305813,27in FHD Monitor,1,149.99,12/14/19 13:51,"181 Park St, San Francisco, CA 94016" +305814,20in Monitor,1,109.99,12/23/19 17:07,"15 10th St, Los Angeles, CA 90001" +305815,USB-C Charging Cable,1,11.95,12/05/19 00:02,"850 Dogwood St, San Francisco, CA 94016" +305816,USB-C Charging Cable,2,11.95,12/11/19 11:14,"661 2nd St, Dallas, TX 75001" +305817,AA Batteries (4-pack),1,3.84,12/11/19 11:27,"567 7th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +305818,Macbook Pro Laptop,1,1700,12/08/19 12:43,"764 Sunset St, Boston, MA 02215" +305819,27in 4K Gaming Monitor,1,389.99,12/20/19 11:46,"669 11th St, New York City, NY 10001" +305820,Google Phone,1,600,12/06/19 17:30,"919 Lincoln St, Austin, TX 73301" +305820,Wired Headphones,1,11.99,12/06/19 17:30,"919 Lincoln St, Austin, TX 73301" +305821,AA Batteries (4-pack),1,3.84,12/24/19 22:14,"85 Meadow St, Austin, TX 73301" +305822,Apple Airpods Headphones,1,150,12/25/19 17:52,"839 6th St, Austin, TX 73301" +305823,20in Monitor,1,109.99,12/25/19 11:50,"249 Pine St, Dallas, TX 75001" +305824,Wired Headphones,1,11.99,12/23/19 12:59,"284 Lake St, San Francisco, CA 94016" +305825,Flatscreen TV,1,300,12/09/19 09:48,"643 Lakeview St, New York City, NY 10001" +305826,Macbook Pro Laptop,1,1700,12/30/19 10:45,"907 2nd St, Los Angeles, CA 90001" +305827,AA Batteries (4-pack),1,3.84,12/04/19 09:55,"191 North St, Los Angeles, CA 90001" +305828,AAA Batteries (4-pack),1,2.99,12/01/19 09:39,"430 6th St, New York City, NY 10001" +305829,Lightning Charging Cable,1,14.95,12/16/19 20:56,"9 Adams St, San Francisco, CA 94016" +305830,20in Monitor,1,109.99,12/15/19 10:11,"178 Maple St, Los Angeles, CA 90001" +305831,USB-C Charging Cable,1,11.95,12/06/19 21:45,"46 Center St, San Francisco, CA 94016" +305832,Google Phone,1,600,12/04/19 12:47,"417 Church St, San Francisco, CA 94016" +305833,USB-C Charging Cable,1,11.95,12/05/19 06:49,"911 Forest St, Austin, TX 73301" +305834,USB-C Charging Cable,3,11.95,12/12/19 12:12,"152 2nd St, Boston, MA 02215" +305835,Bose SoundSport Headphones,1,99.99,12/06/19 21:30,"500 Hill St, Dallas, TX 75001" +305836,Google Phone,1,600,12/27/19 14:24,"116 2nd St, Boston, MA 02215" +305837,AAA Batteries (4-pack),2,2.99,12/31/19 10:13,"770 Meadow St, New York City, NY 10001" +305838,AA Batteries (4-pack),1,3.84,12/13/19 10:55,"706 Pine St, San Francisco, CA 94016" +305839,27in 4K Gaming Monitor,1,389.99,12/15/19 07:51,"105 5th St, Los Angeles, CA 90001" +305840,Lightning Charging Cable,1,14.95,12/18/19 18:37,"552 9th St, Los Angeles, CA 90001" +305841,iPhone,1,700,12/31/19 12:47,"86 13th St, Dallas, TX 75001" +305842,20in Monitor,1,109.99,12/30/19 12:14,"615 Meadow St, Los Angeles, CA 90001" +305843,Bose SoundSport Headphones,1,99.99,12/18/19 18:37,"433 Washington St, Atlanta, GA 30301" +305844,Vareebadd Phone,1,400,12/31/19 20:22,"862 Spruce St, San Francisco, CA 94016" +305845,Bose SoundSport Headphones,1,99.99,12/14/19 09:59,"566 Cedar St, San Francisco, CA 94016" +305846,ThinkPad Laptop,1,999.99,12/20/19 14:52,"293 13th St, Portland, OR 97035" +305847,Wired Headphones,1,11.99,12/13/19 16:26,"583 Jefferson St, Seattle, WA 98101" +305847,Lightning Charging Cable,1,14.95,12/13/19 16:26,"583 Jefferson St, Seattle, WA 98101" +305848,Wired Headphones,1,11.99,12/27/19 19:05,"15 Main St, San Francisco, CA 94016" +305849,AA Batteries (4-pack),1,3.84,12/12/19 11:11,"396 Ridge St, Los Angeles, CA 90001" +305850,USB-C Charging Cable,1,11.95,12/08/19 13:46,"843 2nd St, San Francisco, CA 94016" +305851,34in Ultrawide Monitor,1,379.99,12/04/19 22:16,"821 7th St, Boston, MA 02215" +305852,USB-C Charging Cable,1,11.95,12/14/19 17:09,"266 1st St, San Francisco, CA 94016" +305853,AA Batteries (4-pack),1,3.84,12/01/19 08:40,"236 5th St, Portland, OR 97035" +305854,Bose SoundSport Headphones,1,99.99,12/18/19 20:18,"47 Forest St, San Francisco, CA 94016" +305855,Apple Airpods Headphones,2,150,12/17/19 23:02,"179 Spruce St, San Francisco, CA 94016" +305856,27in 4K Gaming Monitor,1,389.99,12/21/19 20:55,"604 Hill St, Los Angeles, CA 90001" +305857,27in 4K Gaming Monitor,1,389.99,12/06/19 09:12,"930 1st St, Austin, TX 73301" +305858,USB-C Charging Cable,1,11.95,12/19/19 02:00,"221 Park St, Los Angeles, CA 90001" +305859,Lightning Charging Cable,1,14.95,12/30/19 12:15,"142 2nd St, San Francisco, CA 94016" +305860,34in Ultrawide Monitor,1,379.99,12/21/19 08:21,"389 North St, Seattle, WA 98101" +305861,Apple Airpods Headphones,1,150,12/21/19 10:35,"149 Lakeview St, San Francisco, CA 94016" +305862,USB-C Charging Cable,1,11.95,12/08/19 16:07,"612 Washington St, San Francisco, CA 94016" +305863,USB-C Charging Cable,1,11.95,12/18/19 06:24,"919 Church St, Austin, TX 73301" +305864,Lightning Charging Cable,1,14.95,12/14/19 19:39,"399 Elm St, New York City, NY 10001" +305865,Macbook Pro Laptop,1,1700,12/01/19 17:39,"550 Pine St, Seattle, WA 98101" +305866,Lightning Charging Cable,1,14.95,12/25/19 19:27,"274 Lake St, San Francisco, CA 94016" +305867,AAA Batteries (4-pack),2,2.99,01/01/20 00:23,"286 Lakeview St, Seattle, WA 98101" +305868,Bose SoundSport Headphones,1,99.99,12/01/19 17:30,"909 Dogwood St, San Francisco, CA 94016" +305869,USB-C Charging Cable,1,11.95,12/28/19 15:26,"821 12th St, New York City, NY 10001" +305870,Lightning Charging Cable,1,14.95,12/24/19 02:52,"868 11th St, San Francisco, CA 94016" +305871,Flatscreen TV,1,300,12/08/19 07:01,"390 Lincoln St, New York City, NY 10001" +305872,USB-C Charging Cable,1,11.95,12/12/19 21:28,"532 Elm St, San Francisco, CA 94016" +305873,Bose SoundSport Headphones,1,99.99,12/13/19 19:25,"116 14th St, Boston, MA 02215" +305874,iPhone,1,700,12/26/19 20:16,"25 4th St, Seattle, WA 98101" +305875,Bose SoundSport Headphones,1,99.99,12/24/19 19:11,"848 Walnut St, Portland, OR 97035" +305876,Apple Airpods Headphones,1,150,12/26/19 21:19,"635 Church St, New York City, NY 10001" +305877,Bose SoundSport Headphones,1,99.99,12/26/19 21:22,"775 Hickory St, Dallas, TX 75001" +305878,AA Batteries (4-pack),1,3.84,12/07/19 09:18,"936 Willow St, Dallas, TX 75001" +305878,Apple Airpods Headphones,1,150,12/07/19 09:18,"936 Willow St, Dallas, TX 75001" +305879,Wired Headphones,1,11.99,12/03/19 14:15,"659 Sunset St, San Francisco, CA 94016" +305880,USB-C Charging Cable,1,11.95,12/14/19 01:07,"904 West St, Los Angeles, CA 90001" +305881,Apple Airpods Headphones,1,150,12/01/19 19:54,"399 Park St, Los Angeles, CA 90001" +305882,iPhone,1,700,12/31/19 17:15,"587 7th St, San Francisco, CA 94016" +305883,USB-C Charging Cable,1,11.95,12/22/19 13:23,"387 6th St, Portland, OR 97035" +305884,USB-C Charging Cable,1,11.95,12/11/19 15:17,"537 Lincoln St, San Francisco, CA 94016" +305885,AA Batteries (4-pack),2,3.84,12/01/19 21:35,"183 North St, San Francisco, CA 94016" +305886,Apple Airpods Headphones,1,150,12/06/19 11:39,"2 Lake St, New York City, NY 10001" +305887,AA Batteries (4-pack),1,3.84,12/15/19 21:42,"669 West St, San Francisco, CA 94016" +305888,Lightning Charging Cable,1,14.95,12/19/19 19:22,"692 Main St, Los Angeles, CA 90001" +305889,AAA Batteries (4-pack),1,2.99,12/15/19 23:29,"68 Maple St, Dallas, TX 75001" +305890,AA Batteries (4-pack),1,3.84,12/06/19 12:07,"11 Hill St, Dallas, TX 75001" +305891,34in Ultrawide Monitor,1,379.99,12/25/19 14:43,"340 Cedar St, Austin, TX 73301" +305892,USB-C Charging Cable,1,11.95,12/13/19 08:49,"661 Lincoln St, Atlanta, GA 30301" +305893,AAA Batteries (4-pack),1,2.99,12/21/19 15:40,"688 Johnson St, San Francisco, CA 94016" +305894,ThinkPad Laptop,1,999.99,12/06/19 11:41,"889 14th St, San Francisco, CA 94016" +305895,Vareebadd Phone,1,400,12/26/19 09:57,"410 Hickory St, Austin, TX 73301" +305896,27in FHD Monitor,1,149.99,12/12/19 21:30,"27 North St, Los Angeles, CA 90001" +305897,ThinkPad Laptop,1,999.99,12/23/19 12:53,"891 River St, Seattle, WA 98101" +305898,Google Phone,1,600,12/26/19 04:35,"79 Madison St, Boston, MA 02215" +305899,Apple Airpods Headphones,1,150,12/22/19 12:18,"340 North St, Portland, OR 97035" +305900,Bose SoundSport Headphones,1,99.99,12/10/19 09:53,"524 2nd St, Los Angeles, CA 90001" +305901,USB-C Charging Cable,1,11.95,12/20/19 21:48,"184 Center St, New York City, NY 10001" +305902,Apple Airpods Headphones,1,150,12/07/19 14:01,"816 8th St, New York City, NY 10001" +305903,USB-C Charging Cable,1,11.95,12/14/19 11:52,"731 Willow St, Atlanta, GA 30301" +305904,AAA Batteries (4-pack),2,2.99,12/15/19 21:16,"410 Maple St, Boston, MA 02215" +305905,Bose SoundSport Headphones,1,99.99,12/30/19 12:36,"41 Forest St, Austin, TX 73301" +305906,27in FHD Monitor,1,149.99,12/31/19 16:31,"935 Highland St, Boston, MA 02215" +305907,iPhone,1,700,12/21/19 18:08,"652 South St, Atlanta, GA 30301" +305908,USB-C Charging Cable,2,11.95,12/10/19 11:12,"377 Church St, Dallas, TX 75001" +305909,Google Phone,1,600,12/26/19 22:37,"705 Walnut St, Seattle, WA 98101" +305910,Apple Airpods Headphones,1,150,12/22/19 09:31,"598 South St, Atlanta, GA 30301" +305911,USB-C Charging Cable,2,11.95,12/22/19 16:03,"706 12th St, Seattle, WA 98101" +305912,Apple Airpods Headphones,1,150,12/30/19 16:41,"694 4th St, San Francisco, CA 94016" +305913,ThinkPad Laptop,1,999.99,12/15/19 00:57,"281 Dogwood St, Dallas, TX 75001" +305914,USB-C Charging Cable,1,11.95,12/25/19 18:14,"855 Madison St, Atlanta, GA 30301" +305915,Wired Headphones,1,11.99,12/12/19 16:09,"119 6th St, Los Angeles, CA 90001" +305916,Bose SoundSport Headphones,1,99.99,12/03/19 07:41,"304 6th St, Portland, ME 04101" +305917,27in FHD Monitor,1,149.99,12/26/19 09:57,"739 Center St, Los Angeles, CA 90001" +305918,34in Ultrawide Monitor,1,379.99,12/01/19 06:10,"531 South St, Austin, TX 73301" +305919,AA Batteries (4-pack),1,3.84,12/09/19 12:23,"606 Forest St, Seattle, WA 98101" +305920,Bose SoundSport Headphones,1,99.99,12/09/19 22:03,"965 Willow St, Los Angeles, CA 90001" +305921,Apple Airpods Headphones,1,150,12/12/19 10:12,"762 Jefferson St, Atlanta, GA 30301" +305922,iPhone,1,700,12/25/19 23:18,"786 North St, Boston, MA 02215" +305923,Lightning Charging Cable,1,14.95,12/12/19 14:09,"375 Wilson St, New York City, NY 10001" +305924,AA Batteries (4-pack),2,3.84,12/01/19 11:24,"525 Dogwood St, New York City, NY 10001" +305925,USB-C Charging Cable,1,11.95,12/23/19 21:52,"470 Pine St, New York City, NY 10001" +305926,Lightning Charging Cable,1,14.95,12/02/19 16:02,"299 Hill St, Portland, OR 97035" +305927,Google Phone,1,600,12/05/19 19:06,"549 Wilson St, Atlanta, GA 30301" +305928,AAA Batteries (4-pack),2,2.99,12/18/19 10:37,"837 4th St, Boston, MA 02215" +305929,27in 4K Gaming Monitor,1,389.99,12/02/19 18:51,"528 Park St, Los Angeles, CA 90001" +305930,Bose SoundSport Headphones,1,99.99,12/19/19 01:32,"526 Madison St, Los Angeles, CA 90001" +305931,iPhone,1,700,12/09/19 18:41,"37 Lake St, San Francisco, CA 94016" +305931,Wired Headphones,2,11.99,12/09/19 18:41,"37 Lake St, San Francisco, CA 94016" +305932,AAA Batteries (4-pack),1,2.99,12/14/19 19:47,"804 Maple St, San Francisco, CA 94016" +305933,AA Batteries (4-pack),1,3.84,12/12/19 16:54,"90 Dogwood St, Austin, TX 73301" +305934,AA Batteries (4-pack),2,3.84,12/30/19 20:26,"311 Sunset St, New York City, NY 10001" +305935,USB-C Charging Cable,1,11.95,12/29/19 12:52,"485 Lakeview St, Boston, MA 02215" +305936,Bose SoundSport Headphones,1,99.99,12/28/19 09:52,"900 Madison St, Dallas, TX 75001" +305937,27in 4K Gaming Monitor,1,389.99,12/10/19 19:14,"326 Center St, Boston, MA 02215" +305938,27in FHD Monitor,1,149.99,12/24/19 17:39,"518 Walnut St, New York City, NY 10001" +305939,Flatscreen TV,1,300,12/25/19 12:36,"583 Cedar St, San Francisco, CA 94016" +305940,Bose SoundSport Headphones,1,99.99,12/23/19 13:36,"894 13th St, San Francisco, CA 94016" +305941,Bose SoundSport Headphones,1,99.99,12/20/19 09:37,"322 Adams St, Dallas, TX 75001" +305942,Wired Headphones,2,11.99,12/14/19 23:07,"60 2nd St, San Francisco, CA 94016" +305943,AAA Batteries (4-pack),1,2.99,12/25/19 16:49,"724 11th St, Los Angeles, CA 90001" +305944,27in FHD Monitor,1,149.99,12/19/19 21:26,"714 River St, Dallas, TX 75001" +305945,USB-C Charging Cable,1,11.95,12/08/19 11:57,"456 13th St, San Francisco, CA 94016" +305946,34in Ultrawide Monitor,1,379.99,12/16/19 21:51,"563 Adams St, San Francisco, CA 94016" +305947,Wired Headphones,1,11.99,12/14/19 21:55,"32 5th St, Los Angeles, CA 90001" +305948,Bose SoundSport Headphones,1,99.99,12/16/19 20:10,"355 Church St, Austin, TX 73301" +305949,Apple Airpods Headphones,1,150,12/08/19 10:41,"68 Willow St, Boston, MA 02215" +305950,Vareebadd Phone,1,400,12/02/19 14:36,"839 12th St, San Francisco, CA 94016" +305951,Lightning Charging Cable,1,14.95,12/08/19 17:37,"785 Hill St, San Francisco, CA 94016" +305952,27in 4K Gaming Monitor,1,389.99,12/22/19 11:03,"886 7th St, New York City, NY 10001" +305953,AAA Batteries (4-pack),1,2.99,12/10/19 15:15,"206 Lincoln St, Austin, TX 73301" +305954,AA Batteries (4-pack),2,3.84,12/31/19 18:54,"548 Maple St, Los Angeles, CA 90001" +305955,USB-C Charging Cable,1,11.95,12/12/19 08:34,"478 North St, New York City, NY 10001" +305956,AA Batteries (4-pack),1,3.84,12/03/19 14:53,"520 Jackson St, Seattle, WA 98101" +305957,Bose SoundSport Headphones,1,99.99,12/19/19 19:13,"82 Meadow St, New York City, NY 10001" +305958,USB-C Charging Cable,1,11.95,12/08/19 15:22,"63 6th St, Dallas, TX 75001" +305959,USB-C Charging Cable,1,11.95,12/05/19 09:42,"994 Adams St, San Francisco, CA 94016" +305960,Lightning Charging Cable,1,14.95,12/19/19 13:24,"77 Church St, Los Angeles, CA 90001" +305961,AA Batteries (4-pack),5,3.84,12/02/19 21:34,"708 Madison St, Los Angeles, CA 90001" +305962,27in FHD Monitor,1,149.99,12/19/19 19:24,"653 Jefferson St, San Francisco, CA 94016" +305963,AA Batteries (4-pack),1,3.84,12/24/19 21:55,"705 West St, Seattle, WA 98101" +305964,Bose SoundSport Headphones,1,99.99,12/22/19 14:11,"900 Walnut St, Portland, OR 97035" +305965,AAA Batteries (4-pack),3,2.99,12/01/19 23:23,"75 11th St, Boston, MA 02215" +305966,AAA Batteries (4-pack),1,2.99,12/23/19 10:08,"423 Willow St, New York City, NY 10001" +305967,ThinkPad Laptop,1,999.99,12/31/19 21:57,"210 Chestnut St, Dallas, TX 75001" +305968,USB-C Charging Cable,1,11.95,12/17/19 13:03,"562 South St, Los Angeles, CA 90001" +305969,AA Batteries (4-pack),1,3.84,12/12/19 15:18,"566 Spruce St, Dallas, TX 75001" +305970,AA Batteries (4-pack),1,3.84,12/29/19 14:21,"340 Lakeview St, Los Angeles, CA 90001" +305971,34in Ultrawide Monitor,1,379.99,12/19/19 16:00,"318 Highland St, Boston, MA 02215" +305972,Flatscreen TV,1,300,12/28/19 13:07,"128 West St, Boston, MA 02215" +305972,Flatscreen TV,1,300,12/28/19 13:07,"128 West St, Boston, MA 02215" +305973,iPhone,1,700,12/06/19 18:16,"752 9th St, Dallas, TX 75001" +305974,AAA Batteries (4-pack),2,2.99,12/05/19 12:54,"948 12th St, Austin, TX 73301" +305975,34in Ultrawide Monitor,1,379.99,12/13/19 18:10,"430 Lincoln St, Los Angeles, CA 90001" +305976,USB-C Charging Cable,1,11.95,12/09/19 21:16,"254 9th St, Atlanta, GA 30301" +305977,27in 4K Gaming Monitor,1,389.99,12/08/19 19:02,"862 Sunset St, Los Angeles, CA 90001" +305978,Apple Airpods Headphones,1,150,12/14/19 13:01,"164 10th St, Los Angeles, CA 90001" +305979,Lightning Charging Cable,1,14.95,12/23/19 09:05,"40 12th St, Los Angeles, CA 90001" +305980,27in FHD Monitor,1,149.99,12/04/19 17:58,"556 1st St, Austin, TX 73301" +305981,Apple Airpods Headphones,1,150,12/30/19 09:05,"710 Pine St, Boston, MA 02215" +305982,Flatscreen TV,1,300,12/25/19 20:05,"112 Meadow St, Atlanta, GA 30301" +305982,AA Batteries (4-pack),1,3.84,12/25/19 20:05,"112 Meadow St, Atlanta, GA 30301" +305983,AA Batteries (4-pack),1,3.84,12/25/19 00:46,"471 Madison St, San Francisco, CA 94016" +305984,AA Batteries (4-pack),1,3.84,12/20/19 12:56,"381 Chestnut St, San Francisco, CA 94016" +305985,Apple Airpods Headphones,1,150,12/01/19 13:17,"60 Meadow St, San Francisco, CA 94016" +305986,Bose SoundSport Headphones,1,99.99,12/04/19 09:57,"399 Spruce St, New York City, NY 10001" +305987,AAA Batteries (4-pack),1,2.99,12/11/19 15:06,"480 Hickory St, San Francisco, CA 94016" +305988,ThinkPad Laptop,1,999.99,12/02/19 14:23,"627 8th St, San Francisco, CA 94016" +305989,iPhone,1,700,12/03/19 14:41,"118 Center St, San Francisco, CA 94016" +305990,Vareebadd Phone,1,400,12/11/19 18:58,"527 Church St, Los Angeles, CA 90001" +305991,ThinkPad Laptop,1,999.99,12/18/19 17:46,"536 West St, Seattle, WA 98101" +305992,Lightning Charging Cable,1,14.95,12/03/19 20:25,"277 Hickory St, Dallas, TX 75001" +305993,Wired Headphones,1,11.99,12/14/19 21:02,"621 Forest St, Austin, TX 73301" +305994,AAA Batteries (4-pack),1,2.99,12/27/19 20:12,"800 Jackson St, New York City, NY 10001" +305995,Flatscreen TV,2,300,12/06/19 00:10,"530 Madison St, Seattle, WA 98101" +305996,Macbook Pro Laptop,1,1700,12/18/19 20:13,"226 Maple St, Dallas, TX 75001" +305997,AAA Batteries (4-pack),1,2.99,12/27/19 15:44,"16 9th St, Los Angeles, CA 90001" +305998,USB-C Charging Cable,1,11.95,12/12/19 13:39,"314 Sunset St, Atlanta, GA 30301" +305999,34in Ultrawide Monitor,1,379.99,12/11/19 13:08,"204 Lakeview St, San Francisco, CA 94016" +306000,Apple Airpods Headphones,1,150,12/10/19 16:34,"819 7th St, New York City, NY 10001" +306001,USB-C Charging Cable,1,11.95,12/17/19 00:19,"775 9th St, Dallas, TX 75001" +306002,Bose SoundSport Headphones,1,99.99,12/02/19 20:30,"775 River St, New York City, NY 10001" +306003,20in Monitor,1,109.99,12/22/19 14:09,"507 Adams St, Los Angeles, CA 90001" +306004,27in FHD Monitor,1,149.99,12/09/19 16:43,"648 Jackson St, San Francisco, CA 94016" +306005,USB-C Charging Cable,1,11.95,12/31/19 12:53,"386 Church St, Dallas, TX 75001" +306006,AA Batteries (4-pack),2,3.84,12/04/19 19:06,"49 Chestnut St, Seattle, WA 98101" +306007,Wired Headphones,1,11.99,12/15/19 21:11,"769 Walnut St, Dallas, TX 75001" +306008,Apple Airpods Headphones,1,150,12/14/19 19:39,"823 Spruce St, Los Angeles, CA 90001" +306009,Lightning Charging Cable,2,14.95,12/08/19 22:06,"742 Spruce St, Boston, MA 02215" +306010,Lightning Charging Cable,1,14.95,12/11/19 11:22,"784 7th St, Boston, MA 02215" +306011,AA Batteries (4-pack),1,3.84,12/03/19 11:45,"292 2nd St, Boston, MA 02215" +306012,Flatscreen TV,1,300,12/26/19 16:51,"977 Jefferson St, Los Angeles, CA 90001" +306013,Apple Airpods Headphones,1,150,12/07/19 16:30,"515 2nd St, Atlanta, GA 30301" +306014,27in FHD Monitor,1,149.99,12/21/19 13:01,"404 14th St, Boston, MA 02215" +306015,Apple Airpods Headphones,1,150,12/05/19 16:47,"388 Jackson St, New York City, NY 10001" +306016,Bose SoundSport Headphones,1,99.99,12/03/19 12:01,"777 Cherry St, San Francisco, CA 94016" +306017,Wired Headphones,1,11.99,12/28/19 17:38,"269 South St, Los Angeles, CA 90001" +306018,Bose SoundSport Headphones,1,99.99,12/30/19 07:59,"221 Johnson St, Boston, MA 02215" +306019,AAA Batteries (4-pack),1,2.99,12/12/19 21:03,"73 Adams St, Los Angeles, CA 90001" +306020,27in 4K Gaming Monitor,1,389.99,12/12/19 09:19,"724 11th St, Portland, OR 97035" +306021,USB-C Charging Cable,1,11.95,12/04/19 20:01,"187 West St, San Francisco, CA 94016" +306022,Bose SoundSport Headphones,1,99.99,12/22/19 09:17,"825 Johnson St, Boston, MA 02215" +306023,Google Phone,1,600,12/26/19 17:51,"144 West St, San Francisco, CA 94016" +306024,Wired Headphones,1,11.99,12/16/19 09:30,"307 Pine St, San Francisco, CA 94016" +306025,USB-C Charging Cable,1,11.95,12/23/19 19:53,"501 Forest St, Los Angeles, CA 90001" +306026,AAA Batteries (4-pack),1,2.99,12/05/19 21:21,"492 Jackson St, Portland, OR 97035" +306027,27in 4K Gaming Monitor,1,389.99,12/15/19 01:28,"675 Spruce St, San Francisco, CA 94016" +306028,Apple Airpods Headphones,1,150,12/26/19 22:51,"379 West St, San Francisco, CA 94016" +306029,Apple Airpods Headphones,1,150,12/05/19 13:34,"950 Forest St, Austin, TX 73301" +306030,Bose SoundSport Headphones,1,99.99,12/10/19 06:34,"506 Lakeview St, Atlanta, GA 30301" +306030,Bose SoundSport Headphones,1,99.99,12/10/19 06:34,"506 Lakeview St, Atlanta, GA 30301" +306031,27in FHD Monitor,1,149.99,12/19/19 19:10,"403 Pine St, San Francisco, CA 94016" +306032,Lightning Charging Cable,1,14.95,12/10/19 17:56,"331 River St, Boston, MA 02215" +306033,Lightning Charging Cable,1,14.95,12/06/19 07:50,"671 5th St, Atlanta, GA 30301" +306034,iPhone,1,700,12/11/19 10:49,"972 Adams St, Los Angeles, CA 90001" +306035,ThinkPad Laptop,1,999.99,12/11/19 20:32,"934 8th St, Los Angeles, CA 90001" +306036,Wired Headphones,1,11.99,12/02/19 13:06,"792 South St, Los Angeles, CA 90001" +306037,Wired Headphones,1,11.99,12/02/19 12:12,"932 Sunset St, San Francisco, CA 94016" +306038,Wired Headphones,1,11.99,12/10/19 22:07,"792 Main St, Boston, MA 02215" +306039,Lightning Charging Cable,1,14.95,12/22/19 05:59,"5 Cedar St, Atlanta, GA 30301" +306040,USB-C Charging Cable,1,11.95,12/27/19 11:27,"627 Wilson St, Dallas, TX 75001" +306041,Apple Airpods Headphones,1,150,12/28/19 01:26,"75 Washington St, Los Angeles, CA 90001" +306042,USB-C Charging Cable,1,11.95,12/16/19 09:58,"229 4th St, Portland, OR 97035" +306043,AA Batteries (4-pack),1,3.84,12/04/19 14:41,"280 Ridge St, San Francisco, CA 94016" +306044,Wired Headphones,1,11.99,12/08/19 11:56,"702 North St, San Francisco, CA 94016" +306045,34in Ultrawide Monitor,1,379.99,12/13/19 19:44,"650 River St, San Francisco, CA 94016" +306046,AA Batteries (4-pack),1,3.84,12/08/19 11:36,"534 Johnson St, New York City, NY 10001" +306047,Flatscreen TV,1,300,12/25/19 08:05,"811 Washington St, Atlanta, GA 30301" +306048,Apple Airpods Headphones,1,150,12/08/19 21:49,"378 Johnson St, Atlanta, GA 30301" +306049,AAA Batteries (4-pack),1,2.99,12/01/19 10:30,"104 Lake St, Seattle, WA 98101" +306050,AA Batteries (4-pack),2,3.84,12/10/19 14:43,"672 Chestnut St, Austin, TX 73301" +306051,USB-C Charging Cable,1,11.95,12/13/19 21:34,"728 8th St, San Francisco, CA 94016" +306052,Lightning Charging Cable,1,14.95,12/16/19 18:51,"382 Hill St, Los Angeles, CA 90001" +306053,iPhone,1,700,12/01/19 13:39,"756 Willow St, Seattle, WA 98101" +306053,Lightning Charging Cable,1,14.95,12/01/19 13:39,"756 Willow St, Seattle, WA 98101" +306054,AA Batteries (4-pack),1,3.84,12/10/19 20:28,"595 Johnson St, New York City, NY 10001" +306055,AAA Batteries (4-pack),1,2.99,12/09/19 22:16,"121 South St, Dallas, TX 75001" +306056,Wired Headphones,1,11.99,12/27/19 17:38,"858 Elm St, Atlanta, GA 30301" +306057,Wired Headphones,1,11.99,12/01/19 22:06,"328 4th St, Los Angeles, CA 90001" +306058,Apple Airpods Headphones,1,150,12/12/19 20:48,"265 Cedar St, Los Angeles, CA 90001" +306059,USB-C Charging Cable,1,11.95,12/31/19 22:35,"606 Main St, New York City, NY 10001" +306060,Wired Headphones,1,11.99,12/25/19 16:48,"413 Jefferson St, Atlanta, GA 30301" +306061,AAA Batteries (4-pack),1,2.99,12/07/19 12:57,"439 Lincoln St, San Francisco, CA 94016" +306062,Macbook Pro Laptop,1,1700,12/28/19 16:48,"889 Willow St, New York City, NY 10001" +306063,Lightning Charging Cable,1,14.95,12/27/19 10:40,"144 Lakeview St, Los Angeles, CA 90001" +306064,AA Batteries (4-pack),2,3.84,12/06/19 10:57,"957 Walnut St, San Francisco, CA 94016" +306065,AAA Batteries (4-pack),1,2.99,12/28/19 09:56,"723 10th St, San Francisco, CA 94016" +306066,20in Monitor,1,109.99,12/09/19 21:05,"571 Hickory St, San Francisco, CA 94016" +306067,Macbook Pro Laptop,1,1700,12/16/19 09:06,"372 Wilson St, New York City, NY 10001" +306068,Flatscreen TV,1,300,12/17/19 07:26,"80 Willow St, Austin, TX 73301" +306069,AA Batteries (4-pack),1,3.84,12/16/19 18:13,"960 South St, Los Angeles, CA 90001" +306070,USB-C Charging Cable,1,11.95,12/16/19 08:48,"720 West St, Boston, MA 02215" +306071,Wired Headphones,1,11.99,12/09/19 23:45,"679 Walnut St, Portland, OR 97035" +306072,27in FHD Monitor,1,149.99,12/07/19 18:57,"432 Maple St, San Francisco, CA 94016" +306073,AAA Batteries (4-pack),1,2.99,12/10/19 17:04,"117 Main St, Boston, MA 02215" +306073,Apple Airpods Headphones,1,150,12/10/19 17:04,"117 Main St, Boston, MA 02215" +306074,AAA Batteries (4-pack),5,2.99,12/14/19 19:13,"729 Spruce St, San Francisco, CA 94016" +306075,34in Ultrawide Monitor,1,379.99,12/07/19 22:36,"940 12th St, Portland, ME 04101" +306076,Lightning Charging Cable,1,14.95,12/26/19 19:27,"652 Spruce St, Seattle, WA 98101" +306077,Lightning Charging Cable,1,14.95,12/01/19 20:42,"335 Ridge St, San Francisco, CA 94016" +306078,Google Phone,1,600,12/27/19 19:20,"490 Chestnut St, Los Angeles, CA 90001" +306079,ThinkPad Laptop,1,999.99,12/04/19 15:21,"751 1st St, Dallas, TX 75001" +306080,AAA Batteries (4-pack),1,2.99,12/17/19 13:44,"549 Cherry St, Atlanta, GA 30301" +306081,ThinkPad Laptop,1,999.99,12/11/19 07:25,"818 12th St, San Francisco, CA 94016" +306082,34in Ultrawide Monitor,1,379.99,12/01/19 22:54,"869 10th St, Los Angeles, CA 90001" +306083,Lightning Charging Cable,1,14.95,12/30/19 20:11,"176 Sunset St, Los Angeles, CA 90001" +306084,Apple Airpods Headphones,1,150,12/04/19 10:02,"429 Forest St, Los Angeles, CA 90001" +306085,20in Monitor,1,109.99,12/05/19 20:30,"514 Maple St, Seattle, WA 98101" +306086,AAA Batteries (4-pack),3,2.99,12/22/19 13:45,"36 Chestnut St, Atlanta, GA 30301" +306087,Apple Airpods Headphones,1,150,12/21/19 16:42,"145 Wilson St, Boston, MA 02215" +306088,Bose SoundSport Headphones,1,99.99,12/11/19 14:34,"949 Washington St, San Francisco, CA 94016" +306089,34in Ultrawide Monitor,1,379.99,12/05/19 07:31,"76 11th St, Atlanta, GA 30301" +306090,AA Batteries (4-pack),1,3.84,12/27/19 18:10,"940 Dogwood St, Seattle, WA 98101" +306091,Flatscreen TV,1,300,12/31/19 14:44,"360 Jackson St, Dallas, TX 75001" +306092,AA Batteries (4-pack),1,3.84,12/17/19 12:36,"223 Walnut St, San Francisco, CA 94016" +306093,USB-C Charging Cable,1,11.95,12/03/19 23:05,"47 Maple St, Portland, OR 97035" +306094,Apple Airpods Headphones,1,150,12/10/19 23:19,"790 Center St, Portland, OR 97035" +306095,AA Batteries (4-pack),1,3.84,12/23/19 11:40,"927 Sunset St, Dallas, TX 75001" +306096,Wired Headphones,1,11.99,12/15/19 10:26,"800 Willow St, Dallas, TX 75001" +306097,Apple Airpods Headphones,1,150,12/01/19 19:00,"649 5th St, San Francisco, CA 94016" +306098,LG Washing Machine,1,600.0,12/16/19 21:45,"467 Lake St, New York City, NY 10001" +306099,Bose SoundSport Headphones,1,99.99,12/16/19 00:52,"287 12th St, San Francisco, CA 94016" +306100,AAA Batteries (4-pack),1,2.99,12/13/19 00:17,"734 Pine St, San Francisco, CA 94016" +306101,27in 4K Gaming Monitor,1,389.99,12/17/19 10:58,"849 North St, Dallas, TX 75001" +306102,AA Batteries (4-pack),1,3.84,12/02/19 19:38,"844 Lakeview St, San Francisco, CA 94016" +306103,Google Phone,1,600,12/16/19 12:09,"313 Cedar St, Los Angeles, CA 90001" +306104,34in Ultrawide Monitor,1,379.99,12/27/19 16:16,"563 4th St, Dallas, TX 75001" +306105,ThinkPad Laptop,1,999.99,12/20/19 12:28,"503 Hill St, Portland, OR 97035" +306106,Lightning Charging Cable,1,14.95,12/18/19 14:07,"672 9th St, New York City, NY 10001" +306107,ThinkPad Laptop,1,999.99,12/29/19 18:39,"401 Willow St, Seattle, WA 98101" +306108,AA Batteries (4-pack),1,3.84,12/19/19 09:20,"45 Wilson St, Portland, OR 97035" +306109,AAA Batteries (4-pack),1,2.99,12/16/19 20:35,"553 Adams St, San Francisco, CA 94016" +306110,AAA Batteries (4-pack),1,2.99,12/18/19 09:16,"117 Cedar St, Dallas, TX 75001" +306111,Lightning Charging Cable,1,14.95,12/28/19 20:38,"540 Lakeview St, Boston, MA 02215" +306112,AAA Batteries (4-pack),1,2.99,12/07/19 08:23,"415 Hickory St, Los Angeles, CA 90001" +306113,USB-C Charging Cable,1,11.95,12/14/19 14:13,"73 Dogwood St, Boston, MA 02215" +306114,AA Batteries (4-pack),1,3.84,12/10/19 13:51,"277 Hill St, Los Angeles, CA 90001" +306115,USB-C Charging Cable,1,11.95,12/21/19 22:57,"940 Spruce St, San Francisco, CA 94016" +306116,27in 4K Gaming Monitor,1,389.99,12/07/19 14:10,"482 14th St, New York City, NY 10001" +306117,27in 4K Gaming Monitor,1,389.99,12/14/19 15:13,"797 Elm St, Atlanta, GA 30301" +306118,USB-C Charging Cable,1,11.95,12/12/19 21:47,"17 1st St, Dallas, TX 75001" +306119,20in Monitor,1,109.99,12/28/19 14:26,"317 Meadow St, Seattle, WA 98101" +306120,iPhone,1,700,12/11/19 12:59,"479 Dogwood St, New York City, NY 10001" +306121,iPhone,1,700,12/13/19 10:31,"899 10th St, Seattle, WA 98101" +306122,Apple Airpods Headphones,1,150,12/26/19 20:51,"32 14th St, Seattle, WA 98101" +306123,34in Ultrawide Monitor,1,379.99,12/04/19 13:25,"328 7th St, New York City, NY 10001" +306124,Google Phone,1,600,12/11/19 07:17,"660 Spruce St, San Francisco, CA 94016" +306125,20in Monitor,1,109.99,12/12/19 16:32,"134 7th St, San Francisco, CA 94016" +306126,USB-C Charging Cable,1,11.95,12/02/19 23:21,"840 Walnut St, Los Angeles, CA 90001" +306127,Flatscreen TV,1,300,12/08/19 21:35,"389 14th St, Seattle, WA 98101" +306128,Wired Headphones,1,11.99,12/08/19 19:00,"858 Forest St, Los Angeles, CA 90001" +306129,USB-C Charging Cable,1,11.95,12/29/19 15:07,"878 7th St, San Francisco, CA 94016" +306130,Wired Headphones,1,11.99,12/02/19 20:02,"802 9th St, Austin, TX 73301" +306131,Lightning Charging Cable,1,14.95,12/24/19 19:23,"816 1st St, Seattle, WA 98101" +306132,AAA Batteries (4-pack),2,2.99,12/02/19 02:45,"21 Washington St, Austin, TX 73301" +306133,iPhone,1,700,12/24/19 14:57,"774 Pine St, San Francisco, CA 94016" +306134,Wired Headphones,1,11.99,12/29/19 13:13,"187 Meadow St, San Francisco, CA 94016" +306135,27in FHD Monitor,1,149.99,12/07/19 16:14,"257 Adams St, Los Angeles, CA 90001" +306136,Apple Airpods Headphones,1,150,12/09/19 21:54,"640 Johnson St, Austin, TX 73301" +306137,AAA Batteries (4-pack),1,2.99,12/05/19 03:21,"673 Dogwood St, San Francisco, CA 94016" +306138,27in FHD Monitor,1,149.99,12/06/19 19:07,"207 Adams St, Los Angeles, CA 90001" +306139,Lightning Charging Cable,1,14.95,12/22/19 08:29,"885 Hickory St, Seattle, WA 98101" +306140,LG Washing Machine,1,600.0,12/16/19 19:57,"816 West St, Austin, TX 73301" +306141,Lightning Charging Cable,1,14.95,12/16/19 20:44,"748 Jefferson St, Atlanta, GA 30301" +306142,Flatscreen TV,1,300,12/26/19 10:47,"507 14th St, San Francisco, CA 94016" +306143,Lightning Charging Cable,1,14.95,12/04/19 10:27,"867 Lincoln St, Los Angeles, CA 90001" +306144,AAA Batteries (4-pack),2,2.99,12/08/19 22:32,"171 8th St, Boston, MA 02215" +306145,Wired Headphones,1,11.99,12/06/19 23:33,"451 Jefferson St, Seattle, WA 98101" +306146,27in FHD Monitor,1,149.99,12/17/19 23:20,"917 Park St, Boston, MA 02215" +306147,Lightning Charging Cable,1,14.95,12/15/19 19:24,"219 7th St, Los Angeles, CA 90001" +306148,27in FHD Monitor,1,149.99,12/12/19 15:58,"468 Cedar St, Portland, OR 97035" +306149,AAA Batteries (4-pack),1,2.99,12/02/19 13:05,"440 Lake St, Portland, OR 97035" +306150,27in 4K Gaming Monitor,1,389.99,12/15/19 09:36,"561 10th St, San Francisco, CA 94016" +306151,Wired Headphones,1,11.99,12/02/19 17:23,"224 Main St, San Francisco, CA 94016" +306152,Bose SoundSport Headphones,1,99.99,12/31/19 12:18,"306 Forest St, New York City, NY 10001" +306153,AA Batteries (4-pack),1,3.84,12/14/19 22:45,"238 North St, Atlanta, GA 30301" +306154,AA Batteries (4-pack),1,3.84,12/15/19 20:52,"461 5th St, Los Angeles, CA 90001" +306155,Wired Headphones,1,11.99,12/17/19 22:05,"263 Lake St, Seattle, WA 98101" +306156,AA Batteries (4-pack),1,3.84,12/31/19 08:20,"271 Wilson St, San Francisco, CA 94016" +306157,LG Washing Machine,1,600.0,12/29/19 21:24,"571 Lincoln St, Los Angeles, CA 90001" +306158,AA Batteries (4-pack),2,3.84,12/28/19 20:04,"437 7th St, Boston, MA 02215" +306159,Bose SoundSport Headphones,1,99.99,12/02/19 22:29,"67 10th St, New York City, NY 10001" +306160,27in 4K Gaming Monitor,1,389.99,12/23/19 12:51,"902 Jefferson St, San Francisco, CA 94016" +306161,27in FHD Monitor,1,149.99,12/19/19 14:23,"676 Elm St, San Francisco, CA 94016" +306162,AA Batteries (4-pack),2,3.84,12/12/19 12:04,"639 Lincoln St, Dallas, TX 75001" +306163,USB-C Charging Cable,1,11.95,12/25/19 06:58,"88 Jackson St, Seattle, WA 98101" +306164,Apple Airpods Headphones,1,150,12/20/19 12:55,"810 Johnson St, Atlanta, GA 30301" +306165,AA Batteries (4-pack),2,3.84,12/27/19 14:59,"523 14th St, Seattle, WA 98101" +306166,ThinkPad Laptop,1,999.99,12/31/19 07:45,"910 Walnut St, Los Angeles, CA 90001" +306167,AAA Batteries (4-pack),1,2.99,12/26/19 16:35,"319 Jackson St, Seattle, WA 98101" +306168,AAA Batteries (4-pack),1,2.99,12/31/19 17:05,"903 Center St, San Francisco, CA 94016" +306169,Lightning Charging Cable,1,14.95,12/30/19 14:04,"275 Ridge St, Los Angeles, CA 90001" +306170,Flatscreen TV,1,300,12/22/19 10:31,"480 2nd St, Austin, TX 73301" +306171,USB-C Charging Cable,1,11.95,12/13/19 17:19,"568 Cherry St, Seattle, WA 98101" +306172,iPhone,1,700,12/15/19 09:27,"324 Highland St, Seattle, WA 98101" +306173,Vareebadd Phone,1,400,12/03/19 00:24,"877 Maple St, Seattle, WA 98101" +306174,Google Phone,1,600,12/14/19 22:12,"406 Wilson St, Boston, MA 02215" +306175,AAA Batteries (4-pack),3,2.99,12/11/19 11:50,"816 Jefferson St, Boston, MA 02215" +306176,AA Batteries (4-pack),2,3.84,12/15/19 13:37,"281 7th St, Seattle, WA 98101" +306177,USB-C Charging Cable,2,11.95,12/28/19 13:25,"609 Willow St, New York City, NY 10001" +306178,AAA Batteries (4-pack),1,2.99,12/06/19 11:29,"591 8th St, Portland, ME 04101" +306179,Wired Headphones,1,11.99,12/10/19 20:44,"472 Center St, Los Angeles, CA 90001" +306180,Wired Headphones,1,11.99,12/31/19 17:12,"111 Main St, San Francisco, CA 94016" +306181,AAA Batteries (4-pack),4,2.99,12/29/19 04:39,"596 Park St, Seattle, WA 98101" +306182,USB-C Charging Cable,1,11.95,12/25/19 08:11,"183 Chestnut St, New York City, NY 10001" +306183,Apple Airpods Headphones,1,150,12/14/19 09:44,"304 Jefferson St, Austin, TX 73301" +306184,Wired Headphones,1,11.99,12/21/19 13:42,"672 Lakeview St, Portland, OR 97035" +306185,Flatscreen TV,1,300,12/19/19 07:14,"180 Maple St, San Francisco, CA 94016" +306186,27in 4K Gaming Monitor,1,389.99,12/13/19 01:00,"900 Wilson St, Atlanta, GA 30301" +306187,Lightning Charging Cable,1,14.95,12/08/19 08:31,"952 Chestnut St, San Francisco, CA 94016" +306188,Apple Airpods Headphones,1,150,12/13/19 18:37,"414 10th St, Dallas, TX 75001" +306189,AA Batteries (4-pack),2,3.84,12/08/19 12:34,"285 14th St, Los Angeles, CA 90001" +306190,Bose SoundSport Headphones,1,99.99,12/17/19 13:23,"639 2nd St, Seattle, WA 98101" +306191,Apple Airpods Headphones,1,150,12/11/19 20:28,"771 1st St, Atlanta, GA 30301" +306192,USB-C Charging Cable,1,11.95,12/04/19 18:29,"728 Pine St, Boston, MA 02215" +306193,AA Batteries (4-pack),1,3.84,12/15/19 19:16,"266 Jackson St, Los Angeles, CA 90001" +306194,34in Ultrawide Monitor,1,379.99,12/25/19 22:25,"70 Spruce St, Austin, TX 73301" +306195,USB-C Charging Cable,1,11.95,12/03/19 14:31,"362 Center St, Boston, MA 02215" +306196,27in FHD Monitor,1,149.99,12/01/19 14:30,"406 9th St, Los Angeles, CA 90001" +306197,Lightning Charging Cable,1,14.95,12/05/19 16:14,"285 Main St, Boston, MA 02215" +306197,AAA Batteries (4-pack),2,2.99,12/05/19 16:14,"285 Main St, Boston, MA 02215" +306198,Bose SoundSport Headphones,1,99.99,12/15/19 09:54,"943 North St, New York City, NY 10001" +306199,34in Ultrawide Monitor,1,379.99,12/06/19 15:33,"279 7th St, San Francisco, CA 94016" +306200,AAA Batteries (4-pack),1,2.99,12/30/19 07:36,"689 Main St, Seattle, WA 98101" +306201,Wired Headphones,1,11.99,12/31/19 23:21,"794 Walnut St, Seattle, WA 98101" +306202,Bose SoundSport Headphones,1,99.99,12/18/19 20:48,"723 North St, San Francisco, CA 94016" +306203,Flatscreen TV,1,300,12/21/19 13:42,"407 North St, Los Angeles, CA 90001" +306204,Apple Airpods Headphones,1,150,12/21/19 20:35,"63 Church St, Boston, MA 02215" +306205,Bose SoundSport Headphones,1,99.99,12/21/19 15:17,"81 1st St, New York City, NY 10001" +306206,AAA Batteries (4-pack),3,2.99,12/27/19 12:43,"696 Madison St, Seattle, WA 98101" +306207,34in Ultrawide Monitor,1,379.99,12/29/19 08:32,"69 Ridge St, Boston, MA 02215" +306208,AA Batteries (4-pack),1,3.84,12/25/19 14:02,"252 South St, San Francisco, CA 94016" +306209,Macbook Pro Laptop,1,1700,12/14/19 18:35,"11 Lake St, Portland, ME 04101" +306210,27in 4K Gaming Monitor,1,389.99,12/25/19 11:50,"869 Johnson St, Los Angeles, CA 90001" +306211,Bose SoundSport Headphones,1,99.99,12/28/19 20:07,"700 Maple St, New York City, NY 10001" +306212,20in Monitor,1,109.99,12/31/19 05:37,"120 Adams St, San Francisco, CA 94016" +306213,iPhone,1,700,12/12/19 20:04,"920 10th St, Boston, MA 02215" +306214,Wired Headphones,1,11.99,12/19/19 12:42,"189 7th St, Los Angeles, CA 90001" +306215,34in Ultrawide Monitor,1,379.99,12/17/19 00:11,"33 Lakeview St, Seattle, WA 98101" +306216,USB-C Charging Cable,1,11.95,12/03/19 10:38,"489 Maple St, Austin, TX 73301" +306217,27in FHD Monitor,1,149.99,12/26/19 07:27,"845 Lincoln St, Boston, MA 02215" +306218,Vareebadd Phone,1,400,12/26/19 11:53,"167 Wilson St, Boston, MA 02215" +306219,AA Batteries (4-pack),1,3.84,12/09/19 14:49,"666 Park St, San Francisco, CA 94016" +306220,AAA Batteries (4-pack),2,2.99,12/16/19 12:46,"991 2nd St, Seattle, WA 98101" +306221,Bose SoundSport Headphones,1,99.99,12/03/19 08:01,"840 Ridge St, New York City, NY 10001" +306222,Lightning Charging Cable,1,14.95,12/18/19 23:50,"32 Sunset St, San Francisco, CA 94016" +306222,Wired Headphones,1,11.99,12/18/19 23:50,"32 Sunset St, San Francisco, CA 94016" +306223,Bose SoundSport Headphones,1,99.99,12/05/19 17:49,"186 2nd St, Atlanta, GA 30301" +306224,Flatscreen TV,1,300,12/20/19 18:37,"164 Center St, San Francisco, CA 94016" +306225,Wired Headphones,1,11.99,12/13/19 08:46,"19 8th St, New York City, NY 10001" +306226,34in Ultrawide Monitor,1,379.99,12/15/19 08:17,"973 Wilson St, Los Angeles, CA 90001" +306226,27in 4K Gaming Monitor,1,389.99,12/15/19 08:17,"973 Wilson St, Los Angeles, CA 90001" +306227,Wired Headphones,1,11.99,12/17/19 10:52,"978 Elm St, Portland, OR 97035" +306228,USB-C Charging Cable,1,11.95,12/09/19 13:19,"223 Sunset St, San Francisco, CA 94016" +306229,AAA Batteries (4-pack),2,2.99,12/09/19 10:29,"793 Washington St, Austin, TX 73301" +306230,AA Batteries (4-pack),1,3.84,12/20/19 21:11,"699 Lakeview St, San Francisco, CA 94016" +306231,Lightning Charging Cable,1,14.95,12/09/19 09:39,"734 Spruce St, Dallas, TX 75001" +306232,Lightning Charging Cable,1,14.95,12/14/19 21:23,"94 2nd St, San Francisco, CA 94016" +306233,Bose SoundSport Headphones,1,99.99,12/19/19 20:07,"485 Park St, New York City, NY 10001" +306234,AA Batteries (4-pack),1,3.84,12/07/19 19:41,"612 Cedar St, Atlanta, GA 30301" +306235,Apple Airpods Headphones,1,150,12/15/19 21:13,"870 Meadow St, San Francisco, CA 94016" +306236,AAA Batteries (4-pack),1,2.99,12/09/19 20:21,"215 Willow St, Los Angeles, CA 90001" +306237,Wired Headphones,1,11.99,12/16/19 19:25,"276 Adams St, San Francisco, CA 94016" +306238,34in Ultrawide Monitor,1,379.99,12/10/19 12:13,"242 Park St, Boston, MA 02215" +306239,AAA Batteries (4-pack),2,2.99,12/01/19 14:13,"880 Adams St, Atlanta, GA 30301" +306240,Apple Airpods Headphones,1,150,12/24/19 21:13,"452 Spruce St, San Francisco, CA 94016" +306241,USB-C Charging Cable,1,11.95,12/30/19 20:01,"714 2nd St, Los Angeles, CA 90001" +306242,Lightning Charging Cable,1,14.95,12/19/19 18:46,"726 Jackson St, New York City, NY 10001" +306243,AAA Batteries (4-pack),1,2.99,12/03/19 18:45,"160 6th St, Portland, OR 97035" +306244,AAA Batteries (4-pack),1,2.99,12/11/19 13:25,"503 10th St, Dallas, TX 75001" +306245,Wired Headphones,1,11.99,12/24/19 13:18,"786 11th St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +306246,USB-C Charging Cable,1,11.95,12/06/19 22:34,"795 Maple St, Los Angeles, CA 90001" +306247,Apple Airpods Headphones,1,150,12/30/19 10:13,"423 Walnut St, San Francisco, CA 94016" +306248,iPhone,1,700,12/29/19 11:20,"496 Lincoln St, Portland, OR 97035" +306249,iPhone,1,700,12/03/19 01:42,"26 Johnson St, San Francisco, CA 94016" +306249,Lightning Charging Cable,1,14.95,12/03/19 01:42,"26 Johnson St, San Francisco, CA 94016" +306250,Lightning Charging Cable,1,14.95,12/17/19 18:33,"215 Dogwood St, San Francisco, CA 94016" +306251,27in 4K Gaming Monitor,1,389.99,12/29/19 11:39,"22 Cedar St, Portland, ME 04101" +306252,Lightning Charging Cable,1,14.95,12/12/19 21:38,"829 Lakeview St, Portland, ME 04101" +306253,iPhone,1,700,12/09/19 07:39,"729 Lake St, Los Angeles, CA 90001" +306254,Apple Airpods Headphones,1,150,12/26/19 13:55,"307 8th St, Portland, OR 97035" +306255,Wired Headphones,1,11.99,12/26/19 17:23,"121 Dogwood St, Dallas, TX 75001" +306256,USB-C Charging Cable,1,11.95,12/08/19 17:21,"666 Washington St, Atlanta, GA 30301" +306257,Lightning Charging Cable,1,14.95,12/13/19 02:56,"600 8th St, Boston, MA 02215" +306258,Macbook Pro Laptop,1,1700,12/20/19 14:07,"260 Dogwood St, Dallas, TX 75001" +306259,AA Batteries (4-pack),1,3.84,12/24/19 18:53,"324 Hill St, San Francisco, CA 94016" +306260,Flatscreen TV,1,300,12/03/19 13:27,"810 Ridge St, San Francisco, CA 94016" +306261,AAA Batteries (4-pack),2,2.99,12/16/19 08:18,"707 Washington St, New York City, NY 10001" +306262,AA Batteries (4-pack),1,3.84,12/07/19 05:29,"232 14th St, Portland, OR 97035" +306263,USB-C Charging Cable,2,11.95,12/01/19 17:15,"313 Adams St, San Francisco, CA 94016" +306264,AAA Batteries (4-pack),3,2.99,12/31/19 16:53,"366 West St, New York City, NY 10001" +306265,USB-C Charging Cable,1,11.95,12/29/19 13:51,"843 Lake St, San Francisco, CA 94016" +306266,Lightning Charging Cable,2,14.95,12/30/19 14:10,"81 Spruce St, San Francisco, CA 94016" +306267,Lightning Charging Cable,1,14.95,12/10/19 15:11,"318 Hill St, Austin, TX 73301" +306268,Apple Airpods Headphones,1,150,12/23/19 15:12,"959 Church St, San Francisco, CA 94016" +306269,27in FHD Monitor,1,149.99,12/26/19 19:57,"605 Wilson St, New York City, NY 10001" +306270,USB-C Charging Cable,1,11.95,12/10/19 13:00,"808 9th St, Atlanta, GA 30301" +306271,AAA Batteries (4-pack),1,2.99,12/17/19 11:28,"257 Meadow St, Dallas, TX 75001" +306272,USB-C Charging Cable,1,11.95,12/02/19 15:26,"149 6th St, Portland, OR 97035" +306273,Lightning Charging Cable,1,14.95,12/23/19 07:40,"362 North St, San Francisco, CA 94016" +306274,AA Batteries (4-pack),1,3.84,12/18/19 07:13,"452 Sunset St, Portland, OR 97035" +306275,Flatscreen TV,1,300,12/09/19 15:38,"621 South St, Los Angeles, CA 90001" +306276,AA Batteries (4-pack),1,3.84,12/07/19 18:05,"145 Adams St, Seattle, WA 98101" +306277,Lightning Charging Cable,1,14.95,12/24/19 07:52,"425 Ridge St, San Francisco, CA 94016" +306278,AA Batteries (4-pack),1,3.84,12/10/19 10:42,"983 Lakeview St, Boston, MA 02215" +306279,Bose SoundSport Headphones,1,99.99,12/14/19 16:24,"612 Spruce St, San Francisco, CA 94016" +306280,27in 4K Gaming Monitor,1,389.99,12/14/19 19:41,"721 Church St, San Francisco, CA 94016" +306281,USB-C Charging Cable,1,11.95,12/28/19 16:00,"176 10th St, Los Angeles, CA 90001" +306282,iPhone,1,700,12/15/19 20:12,"111 South St, San Francisco, CA 94016" +306283,Bose SoundSport Headphones,1,99.99,12/06/19 19:28,"672 9th St, New York City, NY 10001" +306284,Bose SoundSport Headphones,1,99.99,12/05/19 14:04,"289 Highland St, Boston, MA 02215" +306285,Lightning Charging Cable,1,14.95,12/16/19 10:16,"763 River St, Los Angeles, CA 90001" +306286,Apple Airpods Headphones,1,150,12/19/19 13:24,"73 5th St, New York City, NY 10001" +306287,USB-C Charging Cable,1,11.95,12/16/19 19:09,"972 4th St, San Francisco, CA 94016" +306288,Macbook Pro Laptop,1,1700,12/16/19 12:49,"415 8th St, Los Angeles, CA 90001" +306289,iPhone,1,700,12/15/19 11:36,"122 13th St, Atlanta, GA 30301" +306289,Lightning Charging Cable,2,14.95,12/15/19 11:36,"122 13th St, Atlanta, GA 30301" +306290,20in Monitor,1,109.99,12/18/19 00:53,"634 Washington St, Seattle, WA 98101" +306291,Apple Airpods Headphones,1,150,12/31/19 07:29,"901 Walnut St, Los Angeles, CA 90001" +306292,AAA Batteries (4-pack),1,2.99,12/26/19 12:15,"681 Church St, Los Angeles, CA 90001" +306293,AAA Batteries (4-pack),3,2.99,12/18/19 17:01,"918 11th St, New York City, NY 10001" +306294,ThinkPad Laptop,1,999.99,12/19/19 16:36,"172 8th St, Los Angeles, CA 90001" +306295,27in 4K Gaming Monitor,1,389.99,12/02/19 18:47,"293 South St, Atlanta, GA 30301" +306296,Wired Headphones,1,11.99,12/14/19 16:42,"481 Church St, San Francisco, CA 94016" +306297,USB-C Charging Cable,1,11.95,12/16/19 18:37,"871 Meadow St, Los Angeles, CA 90001" +306298,USB-C Charging Cable,1,11.95,12/04/19 14:01,"217 Chestnut St, San Francisco, CA 94016" +306299,20in Monitor,1,109.99,12/02/19 14:49,"630 Elm St, New York City, NY 10001" +306300,Flatscreen TV,1,300,12/15/19 15:52,"367 River St, Los Angeles, CA 90001" +306301,27in FHD Monitor,1,149.99,12/20/19 15:00,"593 14th St, Boston, MA 02215" +306302,Google Phone,1,600,12/29/19 21:12,"903 Meadow St, Los Angeles, CA 90001" +306303,USB-C Charging Cable,1,11.95,12/20/19 12:45,"745 Church St, Boston, MA 02215" +306304,27in FHD Monitor,1,149.99,12/29/19 20:57,"46 5th St, New York City, NY 10001" +306305,AA Batteries (4-pack),1,3.84,12/25/19 20:52,"803 Adams St, San Francisco, CA 94016" +306306,Macbook Pro Laptop,1,1700,12/27/19 20:53,"334 Jackson St, Los Angeles, CA 90001" +306307,AAA Batteries (4-pack),1,2.99,12/25/19 18:46,"966 Chestnut St, Austin, TX 73301" +306308,Lightning Charging Cable,1,14.95,12/16/19 18:15,"183 10th St, Atlanta, GA 30301" +306309,Apple Airpods Headphones,1,150,12/20/19 13:33,"132 Sunset St, San Francisco, CA 94016" +306310,Bose SoundSport Headphones,1,99.99,12/05/19 12:13,"828 Walnut St, Portland, OR 97035" +306311,Apple Airpods Headphones,1,150,12/30/19 05:02,"550 Sunset St, Los Angeles, CA 90001" +306312,Wired Headphones,1,11.99,12/16/19 05:01,"238 13th St, Seattle, WA 98101" +306313,Bose SoundSport Headphones,1,99.99,12/13/19 17:17,"658 Lake St, Austin, TX 73301" +306314,AA Batteries (4-pack),1,3.84,12/02/19 18:58,"604 Hickory St, Boston, MA 02215" +306315,Lightning Charging Cable,1,14.95,12/30/19 09:08,"35 Dogwood St, Los Angeles, CA 90001" +306316,USB-C Charging Cable,1,11.95,12/18/19 00:38,"761 Church St, New York City, NY 10001" +306317,Flatscreen TV,1,300,12/26/19 11:23,"1 Spruce St, Austin, TX 73301" +306318,Lightning Charging Cable,1,14.95,12/11/19 22:44,"79 Walnut St, Boston, MA 02215" +306319,USB-C Charging Cable,1,11.95,12/28/19 13:51,"241 Jackson St, New York City, NY 10001" +306320,Apple Airpods Headphones,1,150,12/20/19 11:56,"750 Pine St, New York City, NY 10001" +306321,27in FHD Monitor,1,149.99,12/17/19 12:37,"258 6th St, Los Angeles, CA 90001" +306322,AA Batteries (4-pack),1,3.84,12/18/19 13:46,"582 Washington St, New York City, NY 10001" +306323,27in 4K Gaming Monitor,1,389.99,12/25/19 18:52,"710 1st St, Portland, OR 97035" +306324,34in Ultrawide Monitor,1,379.99,12/10/19 08:12,"626 South St, New York City, NY 10001" +306325,Flatscreen TV,1,300,12/13/19 21:55,"514 Adams St, San Francisco, CA 94016" +306326,ThinkPad Laptop,1,999.99,12/07/19 20:02,"17 Cherry St, Atlanta, GA 30301" +306327,AAA Batteries (4-pack),1,2.99,12/09/19 18:07,"688 North St, Dallas, TX 75001" +306327,AA Batteries (4-pack),1,3.84,12/09/19 18:07,"688 North St, Dallas, TX 75001" +306328,Lightning Charging Cable,1,14.95,12/30/19 22:58,"892 Maple St, San Francisco, CA 94016" +306329,Lightning Charging Cable,1,14.95,12/16/19 12:41,"220 Willow St, Atlanta, GA 30301" +306330,Flatscreen TV,1,300,12/22/19 10:29,"30 Madison St, Dallas, TX 75001" +306331,27in FHD Monitor,1,149.99,12/27/19 16:29,"781 Hickory St, Los Angeles, CA 90001" +,,,,, +306332,AA Batteries (4-pack),1,3.84,12/02/19 09:24,"281 Center St, San Francisco, CA 94016" +306333,Bose SoundSport Headphones,1,99.99,12/18/19 13:54,"823 Lincoln St, San Francisco, CA 94016" +306334,Wired Headphones,1,11.99,12/25/19 08:28,"12 South St, New York City, NY 10001" +306335,27in FHD Monitor,1,149.99,12/03/19 13:48,"588 Ridge St, Portland, OR 97035" +306336,Wired Headphones,1,11.99,12/06/19 19:40,"66 9th St, San Francisco, CA 94016" +306337,34in Ultrawide Monitor,1,379.99,12/12/19 06:02,"763 13th St, San Francisco, CA 94016" +306338,Apple Airpods Headphones,1,150,12/12/19 22:45,"255 Chestnut St, Los Angeles, CA 90001" +306339,AA Batteries (4-pack),2,3.84,12/20/19 04:27,"666 Lakeview St, Dallas, TX 75001" +306340,20in Monitor,1,109.99,12/25/19 11:57,"465 Lake St, New York City, NY 10001" +306341,Google Phone,1,600,12/23/19 11:02,"745 Adams St, Boston, MA 02215" +306342,AA Batteries (4-pack),1,3.84,12/08/19 21:18,"336 Jefferson St, Boston, MA 02215" +306343,20in Monitor,1,109.99,12/16/19 11:33,"765 North St, Dallas, TX 75001" +306344,Apple Airpods Headphones,1,150,12/23/19 10:52,"116 Church St, Seattle, WA 98101" +306345,27in 4K Gaming Monitor,1,389.99,12/27/19 00:30,"859 Church St, Boston, MA 02215" +306346,Wired Headphones,1,11.99,12/22/19 20:45,"917 Elm St, New York City, NY 10001" +306347,USB-C Charging Cable,1,11.95,12/18/19 09:24,"563 Washington St, Los Angeles, CA 90001" +306348,AAA Batteries (4-pack),1,2.99,12/05/19 14:02,"638 Madison St, San Francisco, CA 94016" +306349,iPhone,1,700,12/29/19 16:25,"425 Maple St, Boston, MA 02215" +306350,Bose SoundSport Headphones,1,99.99,12/27/19 16:37,"12 1st St, San Francisco, CA 94016" +306351,Flatscreen TV,1,300,12/21/19 09:45,"607 11th St, Los Angeles, CA 90001" +306352,Apple Airpods Headphones,1,150,12/31/19 15:28,"213 Cherry St, Seattle, WA 98101" +306353,Lightning Charging Cable,1,14.95,12/02/19 10:14,"892 South St, New York City, NY 10001" +306354,Wired Headphones,1,11.99,12/26/19 08:40,"822 Church St, Atlanta, GA 30301" +306355,Apple Airpods Headphones,1,150,12/22/19 14:14,"386 Adams St, Boston, MA 02215" +306356,Lightning Charging Cable,1,14.95,12/18/19 23:11,"132 Spruce St, Boston, MA 02215" +306357,Wired Headphones,1,11.99,12/12/19 13:33,"587 Dogwood St, Los Angeles, CA 90001" +306358,Bose SoundSport Headphones,1,99.99,12/25/19 12:08,"622 Lincoln St, Boston, MA 02215" +306359,20in Monitor,1,109.99,12/22/19 18:32,"613 Adams St, Austin, TX 73301" +306360,USB-C Charging Cable,1,11.95,12/18/19 16:37,"772 7th St, Los Angeles, CA 90001" +306361,AAA Batteries (4-pack),2,2.99,12/20/19 12:34,"260 Church St, Boston, MA 02215" +306362,Wired Headphones,1,11.99,12/18/19 10:22,"524 River St, San Francisco, CA 94016" +306363,AA Batteries (4-pack),2,3.84,12/27/19 19:48,"140 1st St, Los Angeles, CA 90001" +306364,AAA Batteries (4-pack),1,2.99,12/26/19 12:21,"844 9th St, Atlanta, GA 30301" +306365,34in Ultrawide Monitor,1,379.99,12/08/19 22:26,"560 Spruce St, New York City, NY 10001" +306366,iPhone,1,700,12/30/19 12:20,"188 Spruce St, Boston, MA 02215" +306367,AAA Batteries (4-pack),1,2.99,12/03/19 15:30,"55 2nd St, Austin, TX 73301" +306368,Macbook Pro Laptop,1,1700,12/14/19 06:02,"972 River St, Boston, MA 02215" +306369,Macbook Pro Laptop,1,1700,12/15/19 11:52,"58 Hill St, Boston, MA 02215" +306370,27in FHD Monitor,1,149.99,12/25/19 22:06,"597 Cherry St, San Francisco, CA 94016" +306371,27in 4K Gaming Monitor,1,389.99,12/09/19 06:23,"809 Washington St, New York City, NY 10001" +306372,Wired Headphones,1,11.99,12/31/19 14:03,"115 South St, Dallas, TX 75001" +306373,34in Ultrawide Monitor,1,379.99,12/29/19 19:15,"45 Elm St, San Francisco, CA 94016" +306374,Wired Headphones,1,11.99,12/23/19 01:16,"499 Jackson St, Los Angeles, CA 90001" +306375,Lightning Charging Cable,1,14.95,12/17/19 09:54,"443 Church St, San Francisco, CA 94016" +306376,20in Monitor,1,109.99,12/28/19 08:23,"82 14th St, Austin, TX 73301" +306377,Lightning Charging Cable,1,14.95,12/23/19 19:20,"652 Church St, Boston, MA 02215" +306378,AA Batteries (4-pack),3,3.84,12/11/19 12:33,"564 9th St, New York City, NY 10001" +306379,AAA Batteries (4-pack),4,2.99,12/12/19 18:34,"60 9th St, Los Angeles, CA 90001" +306380,AA Batteries (4-pack),2,3.84,12/29/19 08:55,"689 Lincoln St, Portland, ME 04101" +306381,iPhone,1,700,12/11/19 22:44,"609 Highland St, San Francisco, CA 94016" +306382,AAA Batteries (4-pack),1,2.99,12/19/19 12:06,"736 Hill St, Boston, MA 02215" +306383,AA Batteries (4-pack),1,3.84,12/09/19 21:28,"589 Jefferson St, Atlanta, GA 30301" +306384,Lightning Charging Cable,1,14.95,12/27/19 16:30,"979 South St, San Francisco, CA 94016" +306385,AA Batteries (4-pack),2,3.84,12/27/19 19:43,"769 Lincoln St, San Francisco, CA 94016" +306386,Lightning Charging Cable,1,14.95,12/31/19 17:25,"660 Dogwood St, Seattle, WA 98101" +306387,Wired Headphones,1,11.99,12/10/19 16:10,"68 Lakeview St, San Francisco, CA 94016" +306388,34in Ultrawide Monitor,1,379.99,12/12/19 12:39,"205 Cedar St, Atlanta, GA 30301" +306389,AA Batteries (4-pack),1,3.84,12/06/19 21:03,"701 2nd St, Boston, MA 02215" +306390,Lightning Charging Cable,1,14.95,12/22/19 10:38,"442 Ridge St, Los Angeles, CA 90001" +306391,AA Batteries (4-pack),1,3.84,12/24/19 19:43,"748 River St, San Francisco, CA 94016" +306392,Flatscreen TV,1,300,12/05/19 10:56,"847 Maple St, New York City, NY 10001" +306393,27in FHD Monitor,1,149.99,12/16/19 23:05,"943 River St, Los Angeles, CA 90001" +306394,AAA Batteries (4-pack),1,2.99,12/17/19 16:56,"201 River St, Los Angeles, CA 90001" +306395,AA Batteries (4-pack),1,3.84,12/24/19 15:15,"36 River St, Los Angeles, CA 90001" +306396,Apple Airpods Headphones,1,150,12/07/19 03:04,"950 Dogwood St, San Francisco, CA 94016" +306397,Lightning Charging Cable,1,14.95,12/28/19 11:51,"664 5th St, Boston, MA 02215" +306398,Lightning Charging Cable,1,14.95,12/30/19 10:35,"649 Main St, Portland, OR 97035" +306399,27in FHD Monitor,1,149.99,12/29/19 13:28,"676 Elm St, Atlanta, GA 30301" +306400,AAA Batteries (4-pack),2,2.99,12/09/19 17:48,"710 Lake St, San Francisco, CA 94016" +306401,AAA Batteries (4-pack),3,2.99,12/17/19 06:25,"855 Pine St, Portland, OR 97035" +306402,Lightning Charging Cable,1,14.95,12/13/19 21:23,"430 Spruce St, San Francisco, CA 94016" +306403,Wired Headphones,1,11.99,12/21/19 17:39,"616 1st St, Portland, OR 97035" +306404,Wired Headphones,1,11.99,12/22/19 12:53,"374 Johnson St, San Francisco, CA 94016" +306405,Bose SoundSport Headphones,1,99.99,12/23/19 09:50,"467 Willow St, Seattle, WA 98101" +306406,Wired Headphones,1,11.99,12/27/19 12:37,"267 13th St, Atlanta, GA 30301" +306406,Wired Headphones,1,11.99,12/27/19 12:37,"267 13th St, Atlanta, GA 30301" +306407,Wired Headphones,1,11.99,12/11/19 08:43,"190 Cedar St, Boston, MA 02215" +306408,Apple Airpods Headphones,1,150,12/28/19 08:14,"862 Jackson St, San Francisco, CA 94016" +306409,USB-C Charging Cable,1,11.95,12/13/19 10:36,"598 5th St, Portland, ME 04101" +306410,Lightning Charging Cable,1,14.95,12/25/19 17:22,"651 Forest St, Dallas, TX 75001" +306411,iPhone,1,700,12/08/19 19:40,"463 Forest St, Boston, MA 02215" +306412,USB-C Charging Cable,1,11.95,12/19/19 09:19,"488 Madison St, San Francisco, CA 94016" +306413,AA Batteries (4-pack),1,3.84,12/30/19 10:41,"766 Main St, New York City, NY 10001" +306414,iPhone,1,700,12/16/19 19:57,"342 Dogwood St, Seattle, WA 98101" +306415,Bose SoundSport Headphones,1,99.99,12/13/19 09:50,"582 Johnson St, New York City, NY 10001" +306416,Flatscreen TV,1,300,12/15/19 18:32,"980 14th St, Atlanta, GA 30301" +306417,Flatscreen TV,1,300,12/20/19 13:30,"179 6th St, San Francisco, CA 94016" +306418,AAA Batteries (4-pack),2,2.99,12/30/19 20:56,"414 9th St, New York City, NY 10001" +306419,Apple Airpods Headphones,1,150,12/10/19 11:52,"555 4th St, San Francisco, CA 94016" +306420,Wired Headphones,1,11.99,12/09/19 16:58,"25 Center St, Austin, TX 73301" +306421,AA Batteries (4-pack),1,3.84,12/11/19 12:06,"311 Johnson St, Austin, TX 73301" +306422,Lightning Charging Cable,1,14.95,12/03/19 10:54,"739 Maple St, Boston, MA 02215" +306423,AAA Batteries (4-pack),1,2.99,12/05/19 11:08,"858 Johnson St, Los Angeles, CA 90001" +306424,AA Batteries (4-pack),1,3.84,12/02/19 16:31,"761 12th St, Los Angeles, CA 90001" +306425,AAA Batteries (4-pack),2,2.99,12/19/19 17:14,"286 5th St, Dallas, TX 75001" +306426,USB-C Charging Cable,1,11.95,12/23/19 12:11,"26 Washington St, Seattle, WA 98101" +306427,ThinkPad Laptop,1,999.99,12/12/19 22:18,"59 4th St, New York City, NY 10001" +306428,Apple Airpods Headphones,1,150,12/23/19 06:05,"303 Pine St, Los Angeles, CA 90001" +306429,27in FHD Monitor,1,149.99,12/25/19 13:28,"367 Highland St, Boston, MA 02215" +306430,USB-C Charging Cable,1,11.95,12/15/19 19:31,"350 Dogwood St, New York City, NY 10001" +306431,Wired Headphones,1,11.99,12/26/19 20:38,"656 Cherry St, San Francisco, CA 94016" +306432,Apple Airpods Headphones,1,150,12/31/19 11:41,"688 Ridge St, Dallas, TX 75001" +306433,Macbook Pro Laptop,1,1700,12/11/19 18:50,"134 Sunset St, Boston, MA 02215" +306434,34in Ultrawide Monitor,1,379.99,12/21/19 13:19,"478 Meadow St, Seattle, WA 98101" +306435,Wired Headphones,1,11.99,12/18/19 06:58,"661 Lake St, Seattle, WA 98101" +306435,Google Phone,1,600,12/18/19 06:58,"661 Lake St, Seattle, WA 98101" +306436,Vareebadd Phone,1,400,12/07/19 04:02,"79 Elm St, Los Angeles, CA 90001" +306437,34in Ultrawide Monitor,1,379.99,12/16/19 18:47,"769 Forest St, Seattle, WA 98101" +306438,Macbook Pro Laptop,1,1700,12/07/19 09:18,"675 Cedar St, San Francisco, CA 94016" +306439,34in Ultrawide Monitor,1,379.99,12/14/19 16:43,"592 4th St, Portland, OR 97035" +306440,Lightning Charging Cable,2,14.95,12/14/19 17:39,"242 Forest St, New York City, NY 10001" +306441,iPhone,1,700,12/17/19 01:56,"589 4th St, Los Angeles, CA 90001" +306442,Wired Headphones,1,11.99,12/19/19 20:46,"169 Highland St, Los Angeles, CA 90001" +306443,Bose SoundSport Headphones,1,99.99,12/20/19 09:18,"139 12th St, Boston, MA 02215" +306444,Google Phone,1,600,12/16/19 17:00,"368 Maple St, San Francisco, CA 94016" +306444,Wired Headphones,1,11.99,12/16/19 17:00,"368 Maple St, San Francisco, CA 94016" +306445,Apple Airpods Headphones,1,150,12/24/19 14:15,"380 1st St, New York City, NY 10001" +306446,AAA Batteries (4-pack),2,2.99,12/06/19 00:19,"518 Washington St, Boston, MA 02215" +306447,34in Ultrawide Monitor,1,379.99,12/03/19 13:07,"508 Maple St, Atlanta, GA 30301" +306448,AA Batteries (4-pack),1,3.84,12/19/19 06:48,"722 12th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +306449,Wired Headphones,1,11.99,12/16/19 11:54,"305 Dogwood St, Boston, MA 02215" +306450,LG Dryer,1,600.0,12/06/19 15:35,"735 Main St, Boston, MA 02215" +306451,Lightning Charging Cable,2,14.95,12/27/19 23:45,"517 North St, Boston, MA 02215" +306452,USB-C Charging Cable,1,11.95,12/27/19 11:16,"822 5th St, New York City, NY 10001" +306453,Wired Headphones,2,11.99,12/20/19 21:36,"10 1st St, Los Angeles, CA 90001" +306454,Bose SoundSport Headphones,1,99.99,12/04/19 15:32,"998 Highland St, New York City, NY 10001" +306455,34in Ultrawide Monitor,1,379.99,12/23/19 17:51,"473 Spruce St, San Francisco, CA 94016" +306456,Apple Airpods Headphones,1,150,12/25/19 16:27,"348 6th St, Atlanta, GA 30301" +306457,Wired Headphones,1,11.99,12/02/19 18:27,"669 Elm St, Portland, OR 97035" +306458,34in Ultrawide Monitor,1,379.99,12/13/19 19:26,"597 Church St, Los Angeles, CA 90001" +306459,AAA Batteries (4-pack),1,2.99,12/24/19 08:55,"623 Walnut St, Portland, OR 97035" +306460,LG Dryer,1,600.0,12/13/19 18:44,"741 Forest St, Los Angeles, CA 90001" +306461,AA Batteries (4-pack),2,3.84,12/28/19 14:53,"564 Chestnut St, Los Angeles, CA 90001" +306462,AAA Batteries (4-pack),1,2.99,12/07/19 17:21,"465 Washington St, San Francisco, CA 94016" +306463,Wired Headphones,1,11.99,12/20/19 15:36,"947 8th St, San Francisco, CA 94016" +306464,Wired Headphones,1,11.99,12/05/19 06:40,"153 Lincoln St, San Francisco, CA 94016" +306465,Google Phone,1,600,12/20/19 20:08,"419 Chestnut St, Austin, TX 73301" +306466,USB-C Charging Cable,1,11.95,12/31/19 13:20,"455 Walnut St, San Francisco, CA 94016" +306467,34in Ultrawide Monitor,1,379.99,12/22/19 10:18,"294 Forest St, Portland, OR 97035" +306468,27in FHD Monitor,1,149.99,12/26/19 02:14,"954 Lake St, New York City, NY 10001" +306469,27in 4K Gaming Monitor,1,389.99,12/22/19 16:01,"924 Ridge St, San Francisco, CA 94016" +306470,iPhone,1,700,12/20/19 20:07,"742 2nd St, New York City, NY 10001" +306470,Wired Headphones,1,11.99,12/20/19 20:07,"742 2nd St, New York City, NY 10001" +306471,USB-C Charging Cable,1,11.95,12/27/19 17:02,"511 Maple St, Portland, OR 97035" +306472,27in 4K Gaming Monitor,1,389.99,12/24/19 01:10,"888 Jefferson St, Boston, MA 02215" +306472,AA Batteries (4-pack),1,3.84,12/24/19 01:10,"888 Jefferson St, Boston, MA 02215" +306473,Bose SoundSport Headphones,1,99.99,12/13/19 21:35,"505 Church St, San Francisco, CA 94016" +306474,Wired Headphones,1,11.99,12/05/19 08:16,"363 8th St, Los Angeles, CA 90001" +306475,34in Ultrawide Monitor,1,379.99,12/15/19 18:25,"313 6th St, Dallas, TX 75001" +306476,Vareebadd Phone,1,400,12/14/19 14:09,"695 10th St, Austin, TX 73301" +306476,USB-C Charging Cable,1,11.95,12/14/19 14:09,"695 10th St, Austin, TX 73301" +306477,Wired Headphones,1,11.99,12/03/19 13:53,"530 Lakeview St, Los Angeles, CA 90001" +306478,AA Batteries (4-pack),1,3.84,12/16/19 18:34,"566 Lincoln St, San Francisco, CA 94016" +306479,Apple Airpods Headphones,1,150,12/22/19 21:21,"887 8th St, Los Angeles, CA 90001" +306480,AA Batteries (4-pack),1,3.84,12/14/19 13:05,"372 Lake St, Boston, MA 02215" +306481,Wired Headphones,1,11.99,12/18/19 11:25,"634 6th St, New York City, NY 10001" +306482,Apple Airpods Headphones,1,150,12/29/19 08:45,"454 Lakeview St, San Francisco, CA 94016" +306483,Lightning Charging Cable,1,14.95,12/16/19 09:49,"284 6th St, Seattle, WA 98101" +306484,34in Ultrawide Monitor,1,379.99,12/02/19 01:07,"929 Maple St, Boston, MA 02215" +306485,27in FHD Monitor,1,149.99,12/20/19 16:16,"100 Madison St, New York City, NY 10001" +306486,AAA Batteries (4-pack),1,2.99,12/26/19 09:47,"608 7th St, Seattle, WA 98101" +306487,Lightning Charging Cable,1,14.95,12/23/19 10:38,"70 6th St, Portland, OR 97035" +306488,Wired Headphones,1,11.99,12/05/19 18:16,"298 Jackson St, New York City, NY 10001" +306489,USB-C Charging Cable,1,11.95,12/03/19 21:41,"867 Lakeview St, Dallas, TX 75001" +306490,Bose SoundSport Headphones,1,99.99,12/09/19 20:55,"624 Cedar St, San Francisco, CA 94016" +306491,AAA Batteries (4-pack),1,2.99,12/23/19 18:05,"813 Main St, Los Angeles, CA 90001" +306492,Macbook Pro Laptop,1,1700,12/15/19 06:46,"560 7th St, New York City, NY 10001" +306493,USB-C Charging Cable,1,11.95,12/08/19 20:07,"136 Dogwood St, Boston, MA 02215" +306494,20in Monitor,1,109.99,12/14/19 10:18,"171 Maple St, Boston, MA 02215" +306495,27in FHD Monitor,1,149.99,12/29/19 14:27,"356 6th St, San Francisco, CA 94016" +306496,Lightning Charging Cable,1,14.95,12/15/19 17:48,"784 River St, San Francisco, CA 94016" +306497,AA Batteries (4-pack),1,3.84,12/07/19 12:32,"38 Highland St, Dallas, TX 75001" +306498,USB-C Charging Cable,1,11.95,12/16/19 17:57,"940 River St, New York City, NY 10001" +306499,Lightning Charging Cable,1,14.95,12/29/19 19:22,"43 10th St, Seattle, WA 98101" +306500,Lightning Charging Cable,1,14.95,12/15/19 12:46,"763 Meadow St, Atlanta, GA 30301" +306501,Lightning Charging Cable,1,14.95,12/09/19 14:30,"340 Lake St, San Francisco, CA 94016" +306502,27in FHD Monitor,1,149.99,12/07/19 08:51,"308 Wilson St, Los Angeles, CA 90001" +306503,AAA Batteries (4-pack),1,2.99,12/20/19 13:59,"496 Madison St, Dallas, TX 75001" +306504,USB-C Charging Cable,1,11.95,12/24/19 11:37,"192 10th St, San Francisco, CA 94016" +306505,AA Batteries (4-pack),2,3.84,12/27/19 11:05,"836 West St, New York City, NY 10001" +306506,AAA Batteries (4-pack),2,2.99,12/04/19 16:56,"441 6th St, Seattle, WA 98101" +306507,Lightning Charging Cable,1,14.95,12/21/19 13:29,"345 6th St, Atlanta, GA 30301" +306508,Bose SoundSport Headphones,1,99.99,12/12/19 23:18,"920 2nd St, Portland, ME 04101" +306509,27in FHD Monitor,1,149.99,12/13/19 14:05,"110 4th St, San Francisco, CA 94016" +306510,27in FHD Monitor,1,149.99,12/03/19 08:44,"357 11th St, San Francisco, CA 94016" +306511,USB-C Charging Cable,1,11.95,12/27/19 19:34,"605 River St, Los Angeles, CA 90001" +306512,AA Batteries (4-pack),1,3.84,12/01/19 18:04,"442 Hill St, San Francisco, CA 94016" +306513,Lightning Charging Cable,1,14.95,12/16/19 17:18,"730 Dogwood St, San Francisco, CA 94016" +306514,Apple Airpods Headphones,1,150,12/24/19 18:34,"63 Sunset St, Boston, MA 02215" +306515,20in Monitor,1,109.99,12/15/19 18:26,"281 Hickory St, New York City, NY 10001" +306516,34in Ultrawide Monitor,1,379.99,12/23/19 16:29,"912 9th St, Atlanta, GA 30301" +306517,Lightning Charging Cable,1,14.95,12/05/19 11:45,"391 Cedar St, Seattle, WA 98101" +306518,AAA Batteries (4-pack),1,2.99,12/12/19 09:05,"859 North St, New York City, NY 10001" +306519,34in Ultrawide Monitor,1,379.99,12/01/19 07:54,"43 Highland St, Los Angeles, CA 90001" +306520,AA Batteries (4-pack),1,3.84,12/31/19 15:21,"742 Washington St, New York City, NY 10001" +306521,AA Batteries (4-pack),1,3.84,12/31/19 16:33,"829 8th St, San Francisco, CA 94016" +306522,iPhone,1,700,12/26/19 17:51,"448 9th St, San Francisco, CA 94016" +306523,Lightning Charging Cable,1,14.95,12/02/19 06:31,"59 Maple St, Seattle, WA 98101" +306524,Lightning Charging Cable,1,14.95,12/15/19 12:37,"288 Forest St, Los Angeles, CA 90001" +306525,Vareebadd Phone,1,400,12/09/19 20:59,"240 Hickory St, San Francisco, CA 94016" +306526,AAA Batteries (4-pack),1,2.99,12/28/19 15:46,"937 Maple St, Los Angeles, CA 90001" +306527,iPhone,1,700,12/24/19 13:35,"793 5th St, Boston, MA 02215" +306528,Wired Headphones,1,11.99,12/06/19 15:11,"678 2nd St, Los Angeles, CA 90001" +306529,Wired Headphones,1,11.99,12/20/19 04:14,"906 North St, Atlanta, GA 30301" +306530,Bose SoundSport Headphones,1,99.99,12/26/19 02:39,"23 Main St, Portland, OR 97035" +306531,Flatscreen TV,1,300,12/22/19 09:33,"755 4th St, New York City, NY 10001" +306532,Apple Airpods Headphones,1,150,12/26/19 23:32,"912 Elm St, Los Angeles, CA 90001" +306533,AA Batteries (4-pack),2,3.84,12/22/19 14:10,"434 Jefferson St, Boston, MA 02215" +306534,USB-C Charging Cable,1,11.95,12/15/19 05:31,"398 Elm St, Boston, MA 02215" +306535,AAA Batteries (4-pack),1,2.99,12/15/19 20:57,"333 1st St, New York City, NY 10001" +306536,Lightning Charging Cable,1,14.95,12/10/19 10:10,"215 Pine St, Los Angeles, CA 90001" +306537,Lightning Charging Cable,1,14.95,12/04/19 19:31,"219 4th St, Dallas, TX 75001" +306538,Google Phone,1,600,12/31/19 11:36,"727 Jackson St, Los Angeles, CA 90001" +306539,Bose SoundSport Headphones,1,99.99,12/22/19 19:40,"181 Willow St, New York City, NY 10001" +306540,27in FHD Monitor,1,149.99,12/11/19 14:24,"585 Main St, Los Angeles, CA 90001" +306541,34in Ultrawide Monitor,1,379.99,12/04/19 07:39,"572 5th St, Boston, MA 02215" +306542,AAA Batteries (4-pack),1,2.99,12/21/19 13:28,"934 River St, San Francisco, CA 94016" +306543,Apple Airpods Headphones,1,150,12/03/19 11:33,"225 2nd St, New York City, NY 10001" +306544,Bose SoundSport Headphones,1,99.99,12/05/19 12:52,"407 Maple St, Los Angeles, CA 90001" +306545,AA Batteries (4-pack),1,3.84,12/11/19 13:24,"541 Cherry St, New York City, NY 10001" +306546,iPhone,1,700,12/20/19 17:37,"993 Maple St, San Francisco, CA 94016" +306547,Flatscreen TV,1,300,12/26/19 11:53,"109 Hill St, New York City, NY 10001" +306548,Apple Airpods Headphones,1,150,12/26/19 11:59,"545 Madison St, Dallas, TX 75001" +306549,20in Monitor,1,109.99,12/06/19 16:30,"874 Cedar St, Atlanta, GA 30301" +306550,Bose SoundSport Headphones,2,99.99,12/04/19 13:25,"207 Adams St, San Francisco, CA 94016" +306551,Wired Headphones,1,11.99,12/24/19 17:09,"165 Lincoln St, Seattle, WA 98101" +306552,AA Batteries (4-pack),2,3.84,12/24/19 11:08,"860 Madison St, Atlanta, GA 30301" +306553,AAA Batteries (4-pack),1,2.99,12/14/19 17:15,"270 Center St, San Francisco, CA 94016" +306554,Macbook Pro Laptop,1,1700,12/05/19 20:22,"752 Cedar St, San Francisco, CA 94016" +306555,Apple Airpods Headphones,1,150,12/04/19 16:01,"691 Elm St, Atlanta, GA 30301" +306556,Lightning Charging Cable,1,14.95,12/13/19 13:57,"480 Spruce St, Boston, MA 02215" +306557,AAA Batteries (4-pack),1,2.99,12/10/19 16:13,"195 Church St, Dallas, TX 75001" +306558,USB-C Charging Cable,1,11.95,12/05/19 15:52,"734 River St, Portland, ME 04101" +306559,LG Washing Machine,1,600.0,12/03/19 14:58,"104 Sunset St, Los Angeles, CA 90001" +306560,20in Monitor,1,109.99,12/21/19 07:01,"93 Wilson St, New York City, NY 10001" +306561,Apple Airpods Headphones,1,150,12/24/19 23:04,"848 Washington St, Los Angeles, CA 90001" +306562,iPhone,1,700,12/05/19 22:43,"642 Maple St, Austin, TX 73301" +306563,Apple Airpods Headphones,1,150,12/06/19 23:28,"160 Washington St, Los Angeles, CA 90001" +306564,Apple Airpods Headphones,1,150,12/28/19 00:38,"82 6th St, New York City, NY 10001" +306565,Bose SoundSport Headphones,1,99.99,12/25/19 21:07,"879 2nd St, Boston, MA 02215" +306566,27in FHD Monitor,1,149.99,12/05/19 16:55,"624 12th St, Seattle, WA 98101" +306567,Macbook Pro Laptop,1,1700,12/23/19 18:12,"311 9th St, Los Angeles, CA 90001" +306568,AA Batteries (4-pack),1,3.84,12/06/19 09:38,"278 Sunset St, Los Angeles, CA 90001" +306569,iPhone,1,700,12/20/19 17:06,"574 Madison St, Los Angeles, CA 90001" +306569,Wired Headphones,1,11.99,12/20/19 17:06,"574 Madison St, Los Angeles, CA 90001" +306570,AAA Batteries (4-pack),1,2.99,12/16/19 07:50,"175 12th St, San Francisco, CA 94016" +306571,AA Batteries (4-pack),1,3.84,12/05/19 10:47,"666 10th St, Seattle, WA 98101" +306572,Lightning Charging Cable,1,14.95,12/16/19 18:17,"634 Walnut St, Portland, OR 97035" +306573,AAA Batteries (4-pack),1,2.99,12/24/19 18:38,"492 Main St, Los Angeles, CA 90001" +306574,iPhone,1,700,12/12/19 13:54,"145 Maple St, San Francisco, CA 94016" +306575,27in FHD Monitor,1,149.99,12/28/19 19:12,"256 Forest St, Boston, MA 02215" +306576,Apple Airpods Headphones,1,150,12/23/19 23:53,"717 Willow St, New York City, NY 10001" +306577,Bose SoundSport Headphones,1,99.99,12/16/19 21:12,"189 Johnson St, Boston, MA 02215" +306578,34in Ultrawide Monitor,1,379.99,12/08/19 11:53,"42 11th St, Los Angeles, CA 90001" +306579,Lightning Charging Cable,2,14.95,12/03/19 17:53,"615 13th St, Boston, MA 02215" +306580,Macbook Pro Laptop,1,1700,12/07/19 12:13,"730 River St, Dallas, TX 75001" +306581,Macbook Pro Laptop,1,1700,12/26/19 23:15,"178 Sunset St, San Francisco, CA 94016" +306582,USB-C Charging Cable,1,11.95,12/15/19 23:44,"751 Forest St, Boston, MA 02215" +306583,Apple Airpods Headphones,1,150,12/10/19 20:16,"335 1st St, New York City, NY 10001" +306584,AA Batteries (4-pack),1,3.84,12/03/19 15:41,"501 River St, Atlanta, GA 30301" +306585,Flatscreen TV,1,300,12/20/19 21:15,"432 Johnson St, Seattle, WA 98101" +306586,USB-C Charging Cable,1,11.95,12/27/19 15:55,"515 Willow St, San Francisco, CA 94016" +306587,AA Batteries (4-pack),1,3.84,12/04/19 07:06,"493 Lakeview St, Los Angeles, CA 90001" +306588,Apple Airpods Headphones,1,150,12/25/19 16:20,"878 2nd St, New York City, NY 10001" +306589,Apple Airpods Headphones,1,150,12/04/19 14:17,"67 9th St, Seattle, WA 98101" +306590,USB-C Charging Cable,1,11.95,12/07/19 11:15,"202 Maple St, New York City, NY 10001" +306591,Wired Headphones,1,11.99,12/13/19 20:36,"285 Forest St, Portland, OR 97035" +306592,USB-C Charging Cable,1,11.95,12/12/19 15:26,"660 Main St, San Francisco, CA 94016" +306593,27in 4K Gaming Monitor,1,389.99,12/03/19 11:17,"993 North St, San Francisco, CA 94016" +306594,AAA Batteries (4-pack),4,2.99,12/15/19 19:55,"148 6th St, Atlanta, GA 30301" +306595,Flatscreen TV,1,300,12/16/19 16:55,"530 Hill St, Los Angeles, CA 90001" +306596,Lightning Charging Cable,1,14.95,12/07/19 20:54,"254 Madison St, Atlanta, GA 30301" +306597,iPhone,1,700,12/19/19 15:38,"537 South St, San Francisco, CA 94016" +306598,Lightning Charging Cable,1,14.95,12/17/19 20:13,"347 Adams St, New York City, NY 10001" +306599,Bose SoundSport Headphones,1,99.99,12/29/19 20:48,"519 Main St, Portland, OR 97035" +306600,USB-C Charging Cable,1,11.95,12/30/19 19:25,"367 Pine St, Boston, MA 02215" +306601,AA Batteries (4-pack),1,3.84,12/07/19 22:59,"727 Chestnut St, New York City, NY 10001" +306602,Lightning Charging Cable,1,14.95,12/21/19 17:51,"118 Wilson St, Atlanta, GA 30301" +306603,AA Batteries (4-pack),1,3.84,12/10/19 18:31,"113 6th St, New York City, NY 10001" +306604,USB-C Charging Cable,1,11.95,12/12/19 12:09,"848 Park St, New York City, NY 10001" +306605,Google Phone,1,600,12/24/19 21:34,"109 Wilson St, New York City, NY 10001" +306605,USB-C Charging Cable,1,11.95,12/24/19 21:34,"109 Wilson St, New York City, NY 10001" +306606,Apple Airpods Headphones,1,150,12/04/19 13:45,"991 Chestnut St, Boston, MA 02215" +306607,USB-C Charging Cable,1,11.95,12/03/19 09:05,"225 7th St, New York City, NY 10001" +306608,Apple Airpods Headphones,1,150,12/22/19 19:33,"14 Madison St, San Francisco, CA 94016" +306609,USB-C Charging Cable,1,11.95,12/22/19 20:57,"962 Hill St, Dallas, TX 75001" +306610,Wired Headphones,1,11.99,12/06/19 15:25,"439 Walnut St, New York City, NY 10001" +306611,iPhone,1,700,12/10/19 13:16,"821 Adams St, Seattle, WA 98101" +306611,Lightning Charging Cable,1,14.95,12/10/19 13:16,"821 Adams St, Seattle, WA 98101" +306612,Lightning Charging Cable,1,14.95,12/11/19 12:10,"620 Church St, Boston, MA 02215" +306613,AAA Batteries (4-pack),1,2.99,12/12/19 11:18,"440 Chestnut St, Austin, TX 73301" +306614,AA Batteries (4-pack),2,3.84,12/03/19 17:21,"504 Adams St, San Francisco, CA 94016" +306615,AA Batteries (4-pack),1,3.84,12/18/19 00:34,"418 Willow St, Portland, OR 97035" +306616,Bose SoundSport Headphones,1,99.99,12/01/19 12:15,"476 Walnut St, New York City, NY 10001" +306617,20in Monitor,1,109.99,12/14/19 08:00,"272 Forest St, Portland, ME 04101" +306618,AAA Batteries (4-pack),1,2.99,12/14/19 20:33,"682 Lakeview St, Portland, OR 97035" +306619,AA Batteries (4-pack),1,3.84,12/20/19 10:51,"243 Jackson St, San Francisco, CA 94016" +306620,USB-C Charging Cable,2,11.95,12/01/19 21:48,"13 Lake St, New York City, NY 10001" +306621,AAA Batteries (4-pack),1,2.99,12/25/19 09:21,"132 Park St, Atlanta, GA 30301" +,,,,, +306622,Apple Airpods Headphones,1,150,12/26/19 18:59,"131 1st St, Atlanta, GA 30301" +306623,Flatscreen TV,1,300,12/03/19 05:58,"309 Ridge St, Dallas, TX 75001" +306624,Wired Headphones,1,11.99,12/25/19 21:40,"307 Lincoln St, San Francisco, CA 94016" +306625,34in Ultrawide Monitor,1,379.99,12/08/19 20:59,"596 Johnson St, Dallas, TX 75001" +306626,Macbook Pro Laptop,1,1700,12/14/19 18:44,"526 Hickory St, San Francisco, CA 94016" +306627,Wired Headphones,1,11.99,12/26/19 16:48,"476 9th St, Los Angeles, CA 90001" +306628,Google Phone,1,600,12/04/19 10:27,"996 2nd St, Los Angeles, CA 90001" +306628,USB-C Charging Cable,1,11.95,12/04/19 10:27,"996 2nd St, Los Angeles, CA 90001" +306629,AAA Batteries (4-pack),1,2.99,12/25/19 06:53,"494 West St, Seattle, WA 98101" +306630,AAA Batteries (4-pack),1,2.99,12/26/19 11:29,"289 1st St, Dallas, TX 75001" +306631,AAA Batteries (4-pack),1,2.99,12/21/19 20:21,"181 Lakeview St, Boston, MA 02215" +306632,Wired Headphones,1,11.99,12/25/19 08:44,"17 Madison St, Los Angeles, CA 90001" +306633,Lightning Charging Cable,1,14.95,12/24/19 21:31,"104 River St, Seattle, WA 98101" +306634,Flatscreen TV,1,300,12/14/19 20:47,"518 Elm St, Boston, MA 02215" +306635,AAA Batteries (4-pack),1,2.99,12/28/19 13:35,"67 5th St, San Francisco, CA 94016" +306636,Macbook Pro Laptop,1,1700,12/28/19 06:36,"979 5th St, New York City, NY 10001" +306637,Wired Headphones,1,11.99,12/30/19 20:53,"460 13th St, Austin, TX 73301" +306638,USB-C Charging Cable,1,11.95,12/01/19 09:43,"149 13th St, Los Angeles, CA 90001" +306639,iPhone,1,700,12/13/19 00:39,"572 Elm St, Portland, OR 97035" +306640,Bose SoundSport Headphones,1,99.99,12/25/19 08:52,"540 Park St, Austin, TX 73301" +306641,Lightning Charging Cable,1,14.95,12/21/19 21:09,"782 14th St, New York City, NY 10001" +306642,27in 4K Gaming Monitor,1,389.99,12/16/19 19:41,"381 Forest St, San Francisco, CA 94016" +306643,AAA Batteries (4-pack),1,2.99,12/19/19 09:18,"102 12th St, Seattle, WA 98101" +306644,Flatscreen TV,1,300,12/22/19 11:49,"529 Highland St, San Francisco, CA 94016" +306644,27in FHD Monitor,1,149.99,12/22/19 11:49,"529 Highland St, San Francisco, CA 94016" +306645,Lightning Charging Cable,1,14.95,12/29/19 22:24,"183 9th St, San Francisco, CA 94016" +306646,iPhone,1,700,12/19/19 20:46,"48 Elm St, Los Angeles, CA 90001" +306647,Apple Airpods Headphones,1,150,12/16/19 10:52,"43 Maple St, New York City, NY 10001" +306648,Bose SoundSport Headphones,1,99.99,12/02/19 20:05,"921 Pine St, Boston, MA 02215" +306649,27in FHD Monitor,1,149.99,12/22/19 10:15,"354 Ridge St, Los Angeles, CA 90001" +306650,20in Monitor,1,109.99,12/04/19 18:58,"990 Meadow St, Dallas, TX 75001" +306651,iPhone,1,700,12/03/19 23:46,"814 South St, New York City, NY 10001" +306651,Apple Airpods Headphones,1,150,12/03/19 23:46,"814 South St, New York City, NY 10001" +306652,Lightning Charging Cable,1,14.95,12/01/19 11:02,"250 Madison St, Austin, TX 73301" +306653,USB-C Charging Cable,1,11.95,12/31/19 21:46,"289 Walnut St, Austin, TX 73301" +306654,Lightning Charging Cable,1,14.95,12/12/19 19:05,"249 Jackson St, Atlanta, GA 30301" +306655,Apple Airpods Headphones,1,150,12/31/19 09:01,"69 Cedar St, San Francisco, CA 94016" +306656,Wired Headphones,1,11.99,12/10/19 11:09,"189 14th St, San Francisco, CA 94016" +306657,USB-C Charging Cable,1,11.95,12/04/19 19:46,"567 Main St, San Francisco, CA 94016" +306658,Google Phone,1,600,12/21/19 15:34,"902 Main St, New York City, NY 10001" +306659,Apple Airpods Headphones,1,150,12/31/19 18:20,"375 2nd St, New York City, NY 10001" +306660,AA Batteries (4-pack),3,3.84,12/27/19 20:51,"823 Park St, Seattle, WA 98101" +306661,Lightning Charging Cable,1,14.95,12/24/19 16:05,"230 2nd St, San Francisco, CA 94016" +306662,34in Ultrawide Monitor,1,379.99,12/17/19 11:17,"916 Dogwood St, Austin, TX 73301" +306662,Wired Headphones,1,11.99,12/17/19 11:17,"916 Dogwood St, Austin, TX 73301" +306663,Lightning Charging Cable,1,14.95,12/22/19 11:33,"931 South St, Los Angeles, CA 90001" +306664,Google Phone,1,600,12/20/19 11:52,"836 Main St, Austin, TX 73301" +306664,USB-C Charging Cable,1,11.95,12/20/19 11:52,"836 Main St, Austin, TX 73301" +306665,USB-C Charging Cable,1,11.95,12/19/19 19:05,"28 Wilson St, Dallas, TX 75001" +306666,Lightning Charging Cable,1,14.95,12/12/19 21:56,"787 Adams St, Dallas, TX 75001" +306667,AA Batteries (4-pack),1,3.84,12/07/19 22:09,"711 11th St, San Francisco, CA 94016" +306668,Bose SoundSport Headphones,1,99.99,12/18/19 11:58,"597 5th St, Seattle, WA 98101" +306668,34in Ultrawide Monitor,1,379.99,12/18/19 11:58,"597 5th St, Seattle, WA 98101" +306669,AAA Batteries (4-pack),4,2.99,12/29/19 09:28,"842 Jackson St, Dallas, TX 75001" +306670,Macbook Pro Laptop,1,1700,12/27/19 19:20,"428 2nd St, San Francisco, CA 94016" +306671,USB-C Charging Cable,1,11.95,12/02/19 14:03,"607 6th St, Los Angeles, CA 90001" +306672,Wired Headphones,1,11.99,12/11/19 03:41,"663 Maple St, Los Angeles, CA 90001" +306673,Apple Airpods Headphones,1,150,12/18/19 11:06,"356 Highland St, Seattle, WA 98101" +306674,Lightning Charging Cable,1,14.95,12/09/19 19:42,"624 Jackson St, Portland, OR 97035" +306675,Apple Airpods Headphones,1,150,12/28/19 08:55,"508 North St, New York City, NY 10001" +306676,AA Batteries (4-pack),3,3.84,12/12/19 14:27,"44 Maple St, Los Angeles, CA 90001" +306677,Bose SoundSport Headphones,1,99.99,12/19/19 19:01,"397 Cedar St, Los Angeles, CA 90001" +306678,Apple Airpods Headphones,1,150,12/16/19 16:36,"185 Meadow St, Portland, OR 97035" +306679,27in 4K Gaming Monitor,1,389.99,12/04/19 18:49,"529 River St, Seattle, WA 98101" +306680,ThinkPad Laptop,1,999.99,12/13/19 00:22,"923 Madison St, San Francisco, CA 94016" +306681,Apple Airpods Headphones,1,150,12/18/19 07:04,"293 Willow St, New York City, NY 10001" +306682,AA Batteries (4-pack),1,3.84,12/22/19 11:49,"183 Johnson St, Seattle, WA 98101" +306683,AAA Batteries (4-pack),1,2.99,12/11/19 11:48,"631 Spruce St, San Francisco, CA 94016" +306684,Google Phone,1,600,12/16/19 19:14,"721 2nd St, New York City, NY 10001" +306685,Lightning Charging Cable,1,14.95,12/31/19 21:54,"153 5th St, San Francisco, CA 94016" +306686,AAA Batteries (4-pack),2,2.99,12/05/19 11:04,"39 Sunset St, Boston, MA 02215" +306687,Bose SoundSport Headphones,1,99.99,12/21/19 04:12,"714 12th St, Atlanta, GA 30301" +306688,AA Batteries (4-pack),2,3.84,12/29/19 21:58,"127 13th St, Atlanta, GA 30301" +306689,Bose SoundSport Headphones,1,99.99,12/11/19 16:29,"718 10th St, Los Angeles, CA 90001" +306690,USB-C Charging Cable,1,11.95,12/11/19 14:50,"97 Adams St, San Francisco, CA 94016" +306691,Wired Headphones,2,11.99,12/22/19 08:17,"445 Park St, New York City, NY 10001" +306692,USB-C Charging Cable,1,11.95,12/30/19 14:27,"319 Ridge St, Boston, MA 02215" +306693,27in 4K Gaming Monitor,1,389.99,12/23/19 13:53,"908 South St, San Francisco, CA 94016" +,,,,, +306694,27in FHD Monitor,1,149.99,12/10/19 14:27,"147 12th St, Los Angeles, CA 90001" +306695,AA Batteries (4-pack),1,3.84,12/05/19 18:09,"272 Johnson St, Austin, TX 73301" +306696,Wired Headphones,1,11.99,12/18/19 15:24,"384 4th St, New York City, NY 10001" +306697,AA Batteries (4-pack),4,3.84,12/04/19 14:45,"389 Hickory St, San Francisco, CA 94016" +306698,Apple Airpods Headphones,1,150,12/19/19 20:07,"717 Church St, Dallas, TX 75001" +306699,AA Batteries (4-pack),1,3.84,12/18/19 00:33,"892 9th St, Portland, OR 97035" +306700,Flatscreen TV,1,300,12/23/19 12:23,"323 Forest St, New York City, NY 10001" +306701,Wired Headphones,1,11.99,12/18/19 01:44,"979 1st St, Dallas, TX 75001" +306702,27in FHD Monitor,1,149.99,12/05/19 01:06,"604 Wilson St, San Francisco, CA 94016" +306703,Lightning Charging Cable,1,14.95,12/22/19 17:15,"545 14th St, Dallas, TX 75001" +306704,USB-C Charging Cable,1,11.95,12/22/19 17:50,"319 Maple St, New York City, NY 10001" +306705,Wired Headphones,1,11.99,12/11/19 23:54,"393 River St, Seattle, WA 98101" +306706,20in Monitor,1,109.99,12/23/19 11:40,"778 Washington St, Boston, MA 02215" +306707,27in FHD Monitor,1,149.99,12/22/19 14:00,"303 Walnut St, Los Angeles, CA 90001" +306708,27in 4K Gaming Monitor,1,389.99,12/16/19 22:52,"649 Lake St, Boston, MA 02215" +306709,Flatscreen TV,1,300,12/10/19 13:56,"270 4th St, Los Angeles, CA 90001" +306710,27in 4K Gaming Monitor,1,389.99,12/03/19 19:04,"38 Washington St, San Francisco, CA 94016" +306711,Lightning Charging Cable,1,14.95,12/26/19 11:35,"318 Lake St, Atlanta, GA 30301" +306712,Wired Headphones,1,11.99,12/09/19 09:23,"45 12th St, Los Angeles, CA 90001" +306713,Wired Headphones,1,11.99,12/19/19 16:25,"911 Lakeview St, Seattle, WA 98101" +306714,USB-C Charging Cable,1,11.95,12/01/19 20:24,"635 Madison St, Boston, MA 02215" +306715,USB-C Charging Cable,2,11.95,12/10/19 14:42,"190 8th St, Dallas, TX 75001" +306716,iPhone,1,700,12/22/19 18:23,"323 Meadow St, Los Angeles, CA 90001" +306717,AAA Batteries (4-pack),1,2.99,12/14/19 11:09,"107 Jefferson St, Dallas, TX 75001" +306718,AAA Batteries (4-pack),1,2.99,12/22/19 07:42,"222 Washington St, San Francisco, CA 94016" +306718,20in Monitor,1,109.99,12/22/19 07:42,"222 Washington St, San Francisco, CA 94016" +306719,27in FHD Monitor,1,149.99,12/10/19 11:04,"247 Chestnut St, New York City, NY 10001" +306720,Apple Airpods Headphones,1,150,12/06/19 08:56,"22 Cherry St, Austin, TX 73301" +306721,Apple Airpods Headphones,1,150,12/01/19 07:45,"110 Pine St, Los Angeles, CA 90001" +306722,Apple Airpods Headphones,1,150,12/17/19 22:48,"459 Madison St, San Francisco, CA 94016" +306723,Bose SoundSport Headphones,1,99.99,12/24/19 22:03,"76 11th St, Austin, TX 73301" +306724,Macbook Pro Laptop,1,1700,12/15/19 14:07,"839 4th St, San Francisco, CA 94016" +306725,Bose SoundSport Headphones,1,99.99,12/12/19 21:43,"571 Lincoln St, Portland, OR 97035" +306726,Flatscreen TV,1,300,12/31/19 05:48,"104 13th St, Boston, MA 02215" +306727,AA Batteries (4-pack),1,3.84,12/09/19 16:53,"435 Cedar St, Atlanta, GA 30301" +306728,Wired Headphones,1,11.99,12/06/19 14:00,"146 13th St, Atlanta, GA 30301" +306729,27in FHD Monitor,1,149.99,12/14/19 18:17,"117 9th St, New York City, NY 10001" +306730,Lightning Charging Cable,1,14.95,12/13/19 13:07,"838 Meadow St, Los Angeles, CA 90001" +306731,AA Batteries (4-pack),3,3.84,12/04/19 10:42,"417 Main St, San Francisco, CA 94016" +306731,Lightning Charging Cable,1,14.95,12/04/19 10:42,"417 Main St, San Francisco, CA 94016" +306732,Bose SoundSport Headphones,1,99.99,12/11/19 15:57,"92 Jackson St, San Francisco, CA 94016" +306733,USB-C Charging Cable,1,11.95,12/05/19 17:57,"761 13th St, New York City, NY 10001" +306734,Macbook Pro Laptop,1,1700,12/13/19 12:39,"989 Johnson St, Los Angeles, CA 90001" +306735,20in Monitor,1,109.99,12/14/19 20:03,"138 Center St, Los Angeles, CA 90001" +306736,Google Phone,1,600,12/01/19 14:12,"908 Main St, Atlanta, GA 30301" +306736,Bose SoundSport Headphones,1,99.99,12/01/19 14:12,"908 Main St, Atlanta, GA 30301" +306737,AA Batteries (4-pack),1,3.84,12/22/19 10:47,"174 Jackson St, Dallas, TX 75001" +306738,iPhone,1,700,12/31/19 20:19,"301 Wilson St, Boston, MA 02215" +306738,Lightning Charging Cable,1,14.95,12/31/19 20:19,"301 Wilson St, Boston, MA 02215" +306739,iPhone,1,700,12/25/19 08:53,"255 Willow St, San Francisco, CA 94016" +306739,Wired Headphones,1,11.99,12/25/19 08:53,"255 Willow St, San Francisco, CA 94016" +306740,Lightning Charging Cable,1,14.95,12/30/19 22:33,"349 Hickory St, Los Angeles, CA 90001" +306741,iPhone,1,700,12/29/19 15:03,"115 Sunset St, Los Angeles, CA 90001" +306742,USB-C Charging Cable,1,11.95,12/03/19 12:41,"796 9th St, Seattle, WA 98101" +306743,USB-C Charging Cable,1,11.95,12/23/19 10:07,"655 11th St, San Francisco, CA 94016" +306744,AAA Batteries (4-pack),1,2.99,12/23/19 02:19,"324 Church St, San Francisco, CA 94016" +306745,Vareebadd Phone,1,400,12/02/19 14:04,"29 12th St, Boston, MA 02215" +306745,Bose SoundSport Headphones,1,99.99,12/02/19 14:04,"29 12th St, Boston, MA 02215" +306746,iPhone,1,700,12/13/19 00:20,"656 14th St, San Francisco, CA 94016" +306747,Apple Airpods Headphones,1,150,12/24/19 10:45,"462 Pine St, Boston, MA 02215" +306748,Apple Airpods Headphones,1,150,12/20/19 10:39,"542 South St, Boston, MA 02215" +306749,USB-C Charging Cable,1,11.95,12/28/19 16:24,"574 Walnut St, Los Angeles, CA 90001" +306750,AA Batteries (4-pack),2,3.84,12/29/19 10:36,"928 9th St, Seattle, WA 98101" +306751,AAA Batteries (4-pack),1,2.99,12/22/19 15:51,"759 Dogwood St, San Francisco, CA 94016" +306752,34in Ultrawide Monitor,1,379.99,12/27/19 14:14,"428 9th St, Seattle, WA 98101" +306753,20in Monitor,1,109.99,12/26/19 14:39,"774 Jackson St, Portland, ME 04101" +306754,Bose SoundSport Headphones,1,99.99,12/01/19 14:17,"166 14th St, New York City, NY 10001" +306755,Flatscreen TV,1,300,12/09/19 08:47,"730 Washington St, Austin, TX 73301" +306756,AA Batteries (4-pack),1,3.84,12/29/19 14:56,"489 West St, Dallas, TX 75001" +306757,Wired Headphones,1,11.99,12/16/19 11:12,"545 7th St, Seattle, WA 98101" +306758,ThinkPad Laptop,1,999.99,12/09/19 23:55,"382 North St, Boston, MA 02215" +306759,34in Ultrawide Monitor,1,379.99,12/11/19 00:47,"167 Lakeview St, Atlanta, GA 30301" +306760,Bose SoundSport Headphones,1,99.99,12/27/19 10:14,"17 River St, Dallas, TX 75001" +306761,AA Batteries (4-pack),1,3.84,12/18/19 12:01,"850 North St, Seattle, WA 98101" +306762,Macbook Pro Laptop,1,1700,12/14/19 10:41,"832 North St, Los Angeles, CA 90001" +306763,Flatscreen TV,1,300,12/05/19 21:10,"555 8th St, Portland, ME 04101" +306764,AAA Batteries (4-pack),1,2.99,12/14/19 20:12,"746 Lake St, New York City, NY 10001" +306765,AAA Batteries (4-pack),1,2.99,12/05/19 23:52,"150 Hill St, Atlanta, GA 30301" +306766,AAA Batteries (4-pack),2,2.99,12/10/19 15:25,"166 11th St, Los Angeles, CA 90001" +306767,Apple Airpods Headphones,1,150,12/07/19 10:43,"520 Sunset St, Austin, TX 73301" +306768,Wired Headphones,1,11.99,12/17/19 18:43,"891 Lincoln St, New York City, NY 10001" +306769,AA Batteries (4-pack),1,3.84,12/09/19 15:56,"988 Sunset St, San Francisco, CA 94016" +306770,Flatscreen TV,1,300,12/22/19 09:51,"73 6th St, Los Angeles, CA 90001" +306771,Apple Airpods Headphones,1,150,12/24/19 17:33,"922 Madison St, Los Angeles, CA 90001" +306772,27in 4K Gaming Monitor,1,389.99,12/01/19 18:07,"387 9th St, San Francisco, CA 94016" +306773,AAA Batteries (4-pack),1,2.99,12/30/19 20:22,"184 1st St, San Francisco, CA 94016" +306774,Apple Airpods Headphones,1,150,12/09/19 16:31,"633 Cedar St, New York City, NY 10001" +306775,USB-C Charging Cable,1,11.95,12/03/19 18:42,"329 2nd St, Seattle, WA 98101" +306776,27in FHD Monitor,1,149.99,12/19/19 08:10,"562 6th St, Seattle, WA 98101" +306777,Wired Headphones,1,11.99,12/14/19 10:45,"545 Jackson St, San Francisco, CA 94016" +306778,AA Batteries (4-pack),2,3.84,12/17/19 00:28,"191 Lakeview St, San Francisco, CA 94016" +306778,AA Batteries (4-pack),3,3.84,12/17/19 00:28,"191 Lakeview St, San Francisco, CA 94016" +306779,Wired Headphones,1,11.99,12/15/19 10:04,"236 7th St, Dallas, TX 75001" +306780,27in FHD Monitor,1,149.99,12/13/19 06:43,"249 North St, New York City, NY 10001" +306781,USB-C Charging Cable,1,11.95,12/18/19 11:30,"372 Sunset St, Dallas, TX 75001" +306782,27in FHD Monitor,1,149.99,12/13/19 16:06,"927 Main St, Los Angeles, CA 90001" +306783,Wired Headphones,1,11.99,12/30/19 10:37,"62 Meadow St, New York City, NY 10001" +306784,USB-C Charging Cable,1,11.95,12/07/19 09:47,"462 10th St, Boston, MA 02215" +306785,AA Batteries (4-pack),1,3.84,12/23/19 15:31,"727 Sunset St, Dallas, TX 75001" +306786,34in Ultrawide Monitor,1,379.99,12/26/19 11:43,"432 Cherry St, Los Angeles, CA 90001" +306787,27in FHD Monitor,1,149.99,12/22/19 09:32,"324 Pine St, Los Angeles, CA 90001" +306788,20in Monitor,1,109.99,12/25/19 17:42,"718 Lakeview St, San Francisco, CA 94016" +306789,AAA Batteries (4-pack),1,2.99,12/21/19 14:18,"560 Wilson St, Austin, TX 73301" +306790,AAA Batteries (4-pack),1,2.99,12/11/19 12:53,"487 Jackson St, San Francisco, CA 94016" +306791,AA Batteries (4-pack),1,3.84,12/02/19 15:04,"901 Jefferson St, New York City, NY 10001" +306792,iPhone,1,700,12/06/19 11:59,"209 Sunset St, Boston, MA 02215" +306793,Google Phone,1,600,12/26/19 13:39,"978 Spruce St, Los Angeles, CA 90001" +306794,Google Phone,1,600,12/03/19 13:13,"265 Forest St, Seattle, WA 98101" +306795,AAA Batteries (4-pack),1,2.99,12/08/19 17:33,"353 Center St, San Francisco, CA 94016" +306796,USB-C Charging Cable,1,11.95,12/13/19 18:49,"235 Highland St, San Francisco, CA 94016" +306796,USB-C Charging Cable,1,11.95,12/13/19 18:49,"235 Highland St, San Francisco, CA 94016" +306797,Bose SoundSport Headphones,1,99.99,12/15/19 21:27,"909 Ridge St, Los Angeles, CA 90001" +306798,Wired Headphones,1,11.99,12/27/19 19:39,"550 Washington St, San Francisco, CA 94016" +306799,Bose SoundSport Headphones,1,99.99,12/12/19 14:24,"612 Adams St, New York City, NY 10001" +306800,Wired Headphones,1,11.99,12/14/19 15:00,"18 2nd St, Los Angeles, CA 90001" +306801,AA Batteries (4-pack),1,3.84,12/23/19 11:46,"598 Hill St, San Francisco, CA 94016" +306802,iPhone,1,700,12/29/19 21:28,"34 Main St, New York City, NY 10001" +306803,Lightning Charging Cable,1,14.95,12/08/19 09:42,"382 11th St, San Francisco, CA 94016" +306804,AAA Batteries (4-pack),1,2.99,12/14/19 19:01,"22 7th St, Boston, MA 02215" +306805,USB-C Charging Cable,1,11.95,12/30/19 19:12,"69 Wilson St, San Francisco, CA 94016" +306806,27in 4K Gaming Monitor,1,389.99,12/23/19 20:17,"267 South St, San Francisco, CA 94016" +306807,AAA Batteries (4-pack),1,2.99,12/10/19 22:35,"299 Park St, New York City, NY 10001" +306808,USB-C Charging Cable,1,11.95,12/23/19 18:36,"144 9th St, Atlanta, GA 30301" +306809,20in Monitor,1,109.99,12/05/19 14:48,"663 11th St, Atlanta, GA 30301" +306810,USB-C Charging Cable,1,11.95,12/13/19 19:51,"194 Cedar St, Seattle, WA 98101" +306811,Wired Headphones,1,11.99,12/05/19 20:28,"962 River St, Portland, OR 97035" +306812,Wired Headphones,1,11.99,12/30/19 19:22,"727 Jackson St, Austin, TX 73301" +306813,Wired Headphones,1,11.99,12/26/19 16:36,"965 Center St, Seattle, WA 98101" +306814,Apple Airpods Headphones,1,150,12/19/19 21:00,"993 Adams St, San Francisco, CA 94016" +306815,AA Batteries (4-pack),1,3.84,12/07/19 11:39,"812 Dogwood St, Atlanta, GA 30301" +306816,Wired Headphones,1,11.99,12/22/19 11:29,"331 Lincoln St, Atlanta, GA 30301" +306817,27in FHD Monitor,1,149.99,12/26/19 15:02,"341 Hickory St, Atlanta, GA 30301" +306817,Apple Airpods Headphones,1,150,12/26/19 15:02,"341 Hickory St, Atlanta, GA 30301" +306818,Wired Headphones,1,11.99,12/17/19 20:33,"294 Pine St, San Francisco, CA 94016" +306819,Google Phone,1,600,12/19/19 08:09,"666 Cherry St, San Francisco, CA 94016" +306819,Wired Headphones,1,11.99,12/19/19 08:09,"666 Cherry St, San Francisco, CA 94016" +306820,Wired Headphones,1,11.99,12/22/19 05:06,"349 Cedar St, Atlanta, GA 30301" +,,,,, +306821,Wired Headphones,1,11.99,12/28/19 00:01,"807 Maple St, New York City, NY 10001" +306822,Wired Headphones,1,11.99,12/02/19 13:35,"39 Pine St, Los Angeles, CA 90001" +306823,AAA Batteries (4-pack),1,2.99,12/03/19 20:10,"495 5th St, Los Angeles, CA 90001" +306824,AAA Batteries (4-pack),3,2.99,12/19/19 10:15,"832 12th St, Austin, TX 73301" +306825,AAA Batteries (4-pack),1,2.99,12/22/19 09:53,"988 North St, Atlanta, GA 30301" +306826,AAA Batteries (4-pack),3,2.99,12/24/19 18:39,"216 Spruce St, New York City, NY 10001" +306827,iPhone,1,700,12/09/19 17:25,"213 10th St, San Francisco, CA 94016" +306828,USB-C Charging Cable,1,11.95,12/12/19 10:02,"375 Washington St, Boston, MA 02215" +306829,Wired Headphones,1,11.99,12/08/19 12:34,"360 Cherry St, Los Angeles, CA 90001" +306830,AA Batteries (4-pack),1,3.84,12/11/19 10:51,"492 12th St, Dallas, TX 75001" +306831,Bose SoundSport Headphones,1,99.99,12/06/19 16:52,"2 Jefferson St, New York City, NY 10001" +306832,Bose SoundSport Headphones,1,99.99,12/16/19 18:09,"169 Cherry St, Seattle, WA 98101" +306833,Flatscreen TV,1,300,12/07/19 14:01,"983 Dogwood St, New York City, NY 10001" +306834,Wired Headphones,1,11.99,12/09/19 19:28,"164 7th St, Los Angeles, CA 90001" +306835,Wired Headphones,1,11.99,12/31/19 10:19,"101 Walnut St, Los Angeles, CA 90001" +306836,Macbook Pro Laptop,1,1700,12/14/19 22:35,"366 Meadow St, San Francisco, CA 94016" +306837,Google Phone,1,600,12/29/19 18:57,"728 Church St, New York City, NY 10001" +306837,USB-C Charging Cable,1,11.95,12/29/19 18:57,"728 Church St, New York City, NY 10001" +306838,Lightning Charging Cable,1,14.95,12/02/19 21:57,"819 11th St, Boston, MA 02215" +306839,AAA Batteries (4-pack),1,2.99,12/14/19 17:17,"588 5th St, Los Angeles, CA 90001" +306840,Lightning Charging Cable,1,14.95,12/14/19 12:41,"944 Madison St, Los Angeles, CA 90001" +306841,USB-C Charging Cable,1,11.95,12/01/19 16:08,"736 Ridge St, New York City, NY 10001" +306842,AAA Batteries (4-pack),1,2.99,12/15/19 16:25,"760 River St, Los Angeles, CA 90001" +306843,Lightning Charging Cable,1,14.95,12/31/19 09:15,"764 Adams St, Portland, OR 97035" +306844,ThinkPad Laptop,1,999.99,12/06/19 23:56,"677 Maple St, Austin, TX 73301" +306845,USB-C Charging Cable,1,11.95,12/30/19 21:04,"43 Meadow St, Portland, OR 97035" +306846,Wired Headphones,1,11.99,01/01/20 06:22,"680 Highland St, Seattle, WA 98101" +306847,ThinkPad Laptop,1,999.99,12/04/19 09:56,"849 Willow St, Dallas, TX 75001" +306848,Bose SoundSport Headphones,1,99.99,12/16/19 15:06,"996 South St, Atlanta, GA 30301" +306848,USB-C Charging Cable,1,11.95,12/16/19 15:06,"996 South St, Atlanta, GA 30301" +306849,AA Batteries (4-pack),1,3.84,12/28/19 20:21,"58 4th St, Dallas, TX 75001" +306850,USB-C Charging Cable,1,11.95,12/25/19 10:30,"785 Madison St, Dallas, TX 75001" +306851,34in Ultrawide Monitor,1,379.99,12/24/19 11:10,"565 Chestnut St, San Francisco, CA 94016" +306852,USB-C Charging Cable,1,11.95,12/25/19 07:29,"876 North St, San Francisco, CA 94016" +306853,Macbook Pro Laptop,1,1700,12/17/19 11:09,"585 Adams St, New York City, NY 10001" +306854,Wired Headphones,1,11.99,12/18/19 20:25,"567 Johnson St, Boston, MA 02215" +306855,Vareebadd Phone,1,400,12/29/19 21:04,"549 South St, Los Angeles, CA 90001" +306856,Lightning Charging Cable,1,14.95,12/11/19 21:01,"966 9th St, Austin, TX 73301" +306857,Lightning Charging Cable,1,14.95,12/31/19 12:51,"494 North St, New York City, NY 10001" +306858,Bose SoundSport Headphones,1,99.99,12/04/19 23:45,"235 Hill St, San Francisco, CA 94016" +306859,27in 4K Gaming Monitor,1,389.99,12/14/19 20:11,"333 South St, Los Angeles, CA 90001" +306860,AA Batteries (4-pack),1,3.84,12/10/19 18:06,"827 2nd St, New York City, NY 10001" +306861,Google Phone,1,600,12/30/19 18:03,"738 Meadow St, New York City, NY 10001" +306861,Bose SoundSport Headphones,1,99.99,12/30/19 18:03,"738 Meadow St, New York City, NY 10001" +306862,20in Monitor,1,109.99,12/10/19 16:49,"649 Lake St, San Francisco, CA 94016" +306863,AAA Batteries (4-pack),1,2.99,12/10/19 22:12,"991 Wilson St, San Francisco, CA 94016" +306864,USB-C Charging Cable,1,11.95,12/13/19 16:59,"832 Church St, Boston, MA 02215" +306865,AA Batteries (4-pack),1,3.84,12/03/19 19:40,"579 Lakeview St, Los Angeles, CA 90001" +306865,Google Phone,1,600,12/03/19 19:40,"579 Lakeview St, Los Angeles, CA 90001" +306866,Bose SoundSport Headphones,1,99.99,12/18/19 07:37,"605 12th St, Portland, OR 97035" +306867,USB-C Charging Cable,1,11.95,12/25/19 12:24,"266 Sunset St, Portland, ME 04101" +306868,Apple Airpods Headphones,1,150,12/18/19 11:54,"496 Dogwood St, San Francisco, CA 94016" +306869,USB-C Charging Cable,1,11.95,12/31/19 21:30,"611 Spruce St, Atlanta, GA 30301" +306870,AAA Batteries (4-pack),3,2.99,12/28/19 08:14,"189 Church St, Dallas, TX 75001" +306870,ThinkPad Laptop,1,999.99,12/28/19 08:14,"189 Church St, Dallas, TX 75001" +306871,Wired Headphones,1,11.99,12/16/19 23:57,"536 Highland St, San Francisco, CA 94016" +306872,USB-C Charging Cable,1,11.95,12/28/19 00:33,"220 2nd St, Los Angeles, CA 90001" +306873,Flatscreen TV,1,300,12/22/19 16:22,"547 13th St, Boston, MA 02215" +306874,AA Batteries (4-pack),2,3.84,12/04/19 22:45,"574 Main St, Los Angeles, CA 90001" +306875,Google Phone,1,600,12/14/19 19:47,"888 Wilson St, New York City, NY 10001" +306875,Wired Headphones,1,11.99,12/14/19 19:47,"888 Wilson St, New York City, NY 10001" +306876,Lightning Charging Cable,1,14.95,12/24/19 22:30,"42 Washington St, Atlanta, GA 30301" +306877,Wired Headphones,1,11.99,12/28/19 07:27,"916 Meadow St, Boston, MA 02215" +306878,34in Ultrawide Monitor,1,379.99,12/14/19 12:21,"422 Jackson St, Seattle, WA 98101" +306879,AAA Batteries (4-pack),1,2.99,12/20/19 01:27,"443 Dogwood St, Los Angeles, CA 90001" +306880,USB-C Charging Cable,1,11.95,12/03/19 17:44,"797 Park St, Seattle, WA 98101" +306881,AA Batteries (4-pack),1,3.84,12/07/19 19:17,"157 Spruce St, San Francisco, CA 94016" +306882,AAA Batteries (4-pack),2,2.99,12/26/19 16:35,"288 10th St, San Francisco, CA 94016" +306883,27in FHD Monitor,1,149.99,12/14/19 15:50,"285 Park St, Atlanta, GA 30301" +306884,USB-C Charging Cable,1,11.95,12/22/19 15:36,"611 7th St, Austin, TX 73301" +306885,Bose SoundSport Headphones,1,99.99,12/04/19 10:52,"485 Meadow St, Atlanta, GA 30301" +306886,Wired Headphones,1,11.99,12/04/19 08:57,"87 Johnson St, San Francisco, CA 94016" +306887,27in 4K Gaming Monitor,1,389.99,12/08/19 18:23,"28 Adams St, Los Angeles, CA 90001" +306888,Bose SoundSport Headphones,1,99.99,12/31/19 17:16,"904 Dogwood St, San Francisco, CA 94016" +306889,USB-C Charging Cable,1,11.95,12/22/19 16:07,"784 1st St, San Francisco, CA 94016" +306890,34in Ultrawide Monitor,1,379.99,12/01/19 18:00,"889 South St, New York City, NY 10001" +306891,27in FHD Monitor,2,149.99,12/04/19 10:54,"849 Cedar St, Austin, TX 73301" +306892,Google Phone,1,600,12/01/19 18:52,"559 Willow St, New York City, NY 10001" +306893,Wired Headphones,1,11.99,12/23/19 10:02,"948 7th St, Boston, MA 02215" +306894,27in FHD Monitor,1,149.99,12/11/19 23:45,"689 Spruce St, San Francisco, CA 94016" +306895,27in FHD Monitor,1,149.99,12/11/19 09:54,"494 9th St, San Francisco, CA 94016" +306896,AA Batteries (4-pack),1,3.84,12/06/19 13:38,"372 Hill St, San Francisco, CA 94016" +306897,USB-C Charging Cable,1,11.95,12/10/19 09:38,"519 Forest St, Los Angeles, CA 90001" +306898,AAA Batteries (4-pack),1,2.99,12/30/19 12:01,"593 Jackson St, San Francisco, CA 94016" +306899,Lightning Charging Cable,1,14.95,12/03/19 19:17,"102 North St, San Francisco, CA 94016" +306900,20in Monitor,1,109.99,12/07/19 18:18,"515 River St, Austin, TX 73301" +306901,Apple Airpods Headphones,1,150,12/06/19 09:10,"334 Lincoln St, Los Angeles, CA 90001" +306902,Wired Headphones,1,11.99,12/23/19 13:10,"973 Washington St, Boston, MA 02215" +306903,Lightning Charging Cable,1,14.95,12/26/19 18:36,"14 Spruce St, Boston, MA 02215" +306904,Lightning Charging Cable,1,14.95,12/27/19 05:54,"412 13th St, Dallas, TX 75001" +306905,AAA Batteries (4-pack),3,2.99,12/07/19 12:56,"337 Elm St, New York City, NY 10001" +306906,USB-C Charging Cable,1,11.95,12/01/19 19:02,"886 Lake St, Los Angeles, CA 90001" +306907,Bose SoundSport Headphones,1,99.99,12/10/19 20:35,"294 7th St, Los Angeles, CA 90001" +306908,Lightning Charging Cable,1,14.95,12/30/19 02:31,"694 Lakeview St, Dallas, TX 75001" +306909,34in Ultrawide Monitor,1,379.99,12/13/19 19:00,"587 Cedar St, Boston, MA 02215" +306910,Lightning Charging Cable,1,14.95,12/20/19 14:19,"200 Spruce St, Atlanta, GA 30301" +306911,34in Ultrawide Monitor,1,379.99,12/14/19 19:08,"47 Highland St, Portland, OR 97035" +306912,USB-C Charging Cable,1,11.95,01/01/20 02:31,"203 Jefferson St, San Francisco, CA 94016" +306913,Lightning Charging Cable,1,14.95,12/20/19 13:01,"202 Lakeview St, Seattle, WA 98101" +306914,Apple Airpods Headphones,1,150,12/18/19 17:57,"899 2nd St, San Francisco, CA 94016" +306915,USB-C Charging Cable,2,11.95,12/22/19 20:13,"553 Lincoln St, Boston, MA 02215" +306916,27in 4K Gaming Monitor,1,389.99,12/15/19 20:11,"513 5th St, Dallas, TX 75001" +306917,Bose SoundSport Headphones,1,99.99,12/02/19 10:39,"693 9th St, San Francisco, CA 94016" +306918,Apple Airpods Headphones,1,150,12/22/19 17:10,"152 River St, Atlanta, GA 30301" +306919,Macbook Pro Laptop,1,1700,12/02/19 10:00,"628 Meadow St, Los Angeles, CA 90001" +306920,Apple Airpods Headphones,1,150,12/10/19 06:05,"672 Dogwood St, Seattle, WA 98101" +,,,,, +306921,AA Batteries (4-pack),1,3.84,12/26/19 11:04,"594 West St, Los Angeles, CA 90001" +306922,AAA Batteries (4-pack),2,2.99,12/17/19 09:10,"794 4th St, New York City, NY 10001" +306923,ThinkPad Laptop,1,999.99,12/26/19 14:13,"511 10th St, New York City, NY 10001" +306924,Wired Headphones,2,11.99,12/18/19 17:52,"603 14th St, San Francisco, CA 94016" +306925,Apple Airpods Headphones,1,150,12/28/19 17:36,"52 West St, Los Angeles, CA 90001" +306926,iPhone,1,700,12/17/19 17:27,"65 12th St, San Francisco, CA 94016" +306927,USB-C Charging Cable,1,11.95,12/11/19 09:40,"588 Elm St, Dallas, TX 75001" +306928,iPhone,1,700,12/09/19 15:39,"794 Sunset St, Atlanta, GA 30301" +306929,USB-C Charging Cable,1,11.95,12/22/19 07:12,"63 14th St, San Francisco, CA 94016" +306930,USB-C Charging Cable,1,11.95,12/22/19 20:36,"547 Cherry St, Portland, OR 97035" +306931,Bose SoundSport Headphones,1,99.99,12/07/19 14:54,"413 Spruce St, Boston, MA 02215" +306932,Wired Headphones,1,11.99,12/03/19 09:42,"857 Pine St, New York City, NY 10001" +306933,AAA Batteries (4-pack),1,2.99,12/25/19 21:54,"821 Maple St, San Francisco, CA 94016" +306933,Bose SoundSport Headphones,1,99.99,12/25/19 21:54,"821 Maple St, San Francisco, CA 94016" +306934,Bose SoundSport Headphones,1,99.99,12/26/19 11:11,"790 Forest St, Los Angeles, CA 90001" +306935,Lightning Charging Cable,1,14.95,12/11/19 21:51,"780 Church St, San Francisco, CA 94016" +306936,AAA Batteries (4-pack),1,2.99,12/27/19 04:54,"622 Cherry St, Boston, MA 02215" +306937,Google Phone,1,600,12/08/19 06:34,"184 Pine St, Los Angeles, CA 90001" +306938,USB-C Charging Cable,1,11.95,12/03/19 16:27,"157 Cherry St, Seattle, WA 98101" +306939,ThinkPad Laptop,1,999.99,12/12/19 20:38,"24 13th St, Los Angeles, CA 90001" +306940,Macbook Pro Laptop,1,1700,12/02/19 21:20,"426 North St, Austin, TX 73301" +306941,Apple Airpods Headphones,1,150,12/16/19 11:01,"45 Willow St, Los Angeles, CA 90001" +306942,AA Batteries (4-pack),1,3.84,12/04/19 20:03,"524 River St, Los Angeles, CA 90001" +306943,Bose SoundSport Headphones,1,99.99,12/13/19 14:57,"946 Lake St, New York City, NY 10001" +306944,34in Ultrawide Monitor,1,379.99,12/18/19 20:54,"630 13th St, Portland, OR 97035" +306945,USB-C Charging Cable,1,11.95,12/01/19 09:34,"79 9th St, San Francisco, CA 94016" +306946,AAA Batteries (4-pack),2,2.99,12/31/19 11:37,"817 Washington St, Los Angeles, CA 90001" +306947,Flatscreen TV,1,300,12/16/19 11:32,"636 2nd St, Portland, OR 97035" +306948,Lightning Charging Cable,1,14.95,12/26/19 21:23,"388 Hill St, Seattle, WA 98101" +306949,Apple Airpods Headphones,1,150,12/20/19 14:43,"919 North St, Boston, MA 02215" +306950,Wired Headphones,1,11.99,12/12/19 10:33,"315 Willow St, Austin, TX 73301" +306951,Wired Headphones,1,11.99,12/02/19 21:05,"422 5th St, Seattle, WA 98101" +306952,27in FHD Monitor,1,149.99,12/05/19 00:09,"545 Elm St, San Francisco, CA 94016" +306953,AA Batteries (4-pack),1,3.84,12/20/19 09:21,"798 Lakeview St, New York City, NY 10001" +306954,Wired Headphones,1,11.99,12/19/19 10:53,"110 Adams St, New York City, NY 10001" +306955,20in Monitor,1,109.99,12/26/19 06:46,"673 Chestnut St, Los Angeles, CA 90001" +306956,Macbook Pro Laptop,1,1700,12/26/19 20:43,"334 North St, Seattle, WA 98101" +306957,Wired Headphones,1,11.99,12/11/19 21:11,"572 Dogwood St, Atlanta, GA 30301" +306958,AA Batteries (4-pack),1,3.84,12/16/19 10:01,"749 Cedar St, Atlanta, GA 30301" +306959,27in 4K Gaming Monitor,1,389.99,12/27/19 19:02,"235 Spruce St, Los Angeles, CA 90001" +306960,AA Batteries (4-pack),6,3.84,12/03/19 02:07,"781 South St, Los Angeles, CA 90001" +306961,Lightning Charging Cable,2,14.95,12/15/19 22:35,"525 Forest St, Atlanta, GA 30301" +306962,AAA Batteries (4-pack),1,2.99,12/08/19 12:53,"424 Lincoln St, New York City, NY 10001" +306963,Wired Headphones,1,11.99,12/08/19 18:47,"157 Hill St, Los Angeles, CA 90001" +306964,AA Batteries (4-pack),1,3.84,12/12/19 12:42,"543 10th St, Boston, MA 02215" +306965,Apple Airpods Headphones,1,150,12/13/19 08:22,"242 Elm St, San Francisco, CA 94016" +306966,AAA Batteries (4-pack),2,2.99,12/19/19 18:40,"186 Elm St, San Francisco, CA 94016" +306967,Bose SoundSport Headphones,1,99.99,12/14/19 13:35,"981 Madison St, Atlanta, GA 30301" +306968,27in FHD Monitor,1,149.99,12/22/19 16:04,"55 Elm St, New York City, NY 10001" +306969,ThinkPad Laptop,1,999.99,12/12/19 16:44,"819 Wilson St, San Francisco, CA 94016" +306970,Lightning Charging Cable,1,14.95,12/14/19 08:29,"38 West St, Los Angeles, CA 90001" +306971,27in FHD Monitor,1,149.99,12/01/19 14:20,"894 2nd St, San Francisco, CA 94016" +306972,Wired Headphones,1,11.99,12/30/19 19:09,"544 Highland St, Los Angeles, CA 90001" +306973,Bose SoundSport Headphones,1,99.99,12/01/19 13:31,"832 Johnson St, Dallas, TX 75001" +306974,27in FHD Monitor,1,149.99,12/20/19 09:47,"493 Main St, San Francisco, CA 94016" +306974,AAA Batteries (4-pack),1,2.99,12/20/19 09:47,"493 Main St, San Francisco, CA 94016" +306975,USB-C Charging Cable,1,11.95,12/06/19 20:16,"673 Dogwood St, San Francisco, CA 94016" +306976,Apple Airpods Headphones,1,150,12/10/19 18:07,"285 North St, Seattle, WA 98101" +306977,AA Batteries (4-pack),1,3.84,12/21/19 12:00,"525 12th St, Los Angeles, CA 90001" +306978,27in FHD Monitor,1,149.99,12/28/19 13:52,"340 Jackson St, Los Angeles, CA 90001" +306979,27in 4K Gaming Monitor,1,389.99,12/26/19 19:32,"779 Hickory St, New York City, NY 10001" +306980,iPhone,1,700,12/11/19 12:01,"363 10th St, Los Angeles, CA 90001" +306981,AAA Batteries (4-pack),1,2.99,12/20/19 11:50,"311 Madison St, Dallas, TX 75001" +306982,Google Phone,1,600,12/23/19 08:46,"235 Sunset St, Los Angeles, CA 90001" +306983,Macbook Pro Laptop,1,1700,12/06/19 14:15,"247 13th St, Los Angeles, CA 90001" +306984,34in Ultrawide Monitor,1,379.99,12/08/19 13:26,"528 14th St, Boston, MA 02215" +306985,Wired Headphones,1,11.99,12/14/19 15:58,"194 North St, San Francisco, CA 94016" +306986,AA Batteries (4-pack),1,3.84,12/02/19 14:41,"970 Pine St, San Francisco, CA 94016" +306987,Lightning Charging Cable,1,14.95,12/06/19 14:24,"761 11th St, New York City, NY 10001" +306988,USB-C Charging Cable,1,11.95,12/14/19 07:15,"539 River St, Los Angeles, CA 90001" +306989,27in FHD Monitor,1,149.99,12/12/19 18:17,"443 12th St, New York City, NY 10001" +306990,USB-C Charging Cable,1,11.95,12/31/19 20:11,"358 7th St, San Francisco, CA 94016" +306991,AA Batteries (4-pack),1,3.84,12/29/19 10:11,"220 Elm St, Los Angeles, CA 90001" +306992,AA Batteries (4-pack),1,3.84,12/30/19 18:58,"131 Jackson St, Los Angeles, CA 90001" +306993,AAA Batteries (4-pack),1,2.99,12/03/19 17:25,"41 Ridge St, Los Angeles, CA 90001" +306994,Apple Airpods Headphones,1,150,12/27/19 09:12,"437 Cherry St, Austin, TX 73301" +306995,Lightning Charging Cable,1,14.95,12/08/19 13:55,"989 Madison St, Los Angeles, CA 90001" +306996,AA Batteries (4-pack),1,3.84,12/23/19 15:51,"51 Lake St, Boston, MA 02215" +306997,Google Phone,1,600,12/31/19 01:59,"61 Pine St, Portland, OR 97035" +306998,LG Dryer,1,600.0,12/12/19 19:49,"782 Ridge St, New York City, NY 10001" +306999,AAA Batteries (4-pack),2,2.99,12/22/19 18:58,"869 5th St, Los Angeles, CA 90001" +307000,Lightning Charging Cable,1,14.95,12/17/19 01:13,"504 10th St, New York City, NY 10001" +307001,AAA Batteries (4-pack),1,2.99,12/11/19 22:04,"303 Lincoln St, Seattle, WA 98101" +307002,USB-C Charging Cable,1,11.95,12/18/19 11:17,"281 Sunset St, Los Angeles, CA 90001" +307003,LG Dryer,1,600.0,12/23/19 20:02,"83 Johnson St, San Francisco, CA 94016" +307004,AAA Batteries (4-pack),1,2.99,12/29/19 00:57,"619 6th St, Seattle, WA 98101" +307005,Apple Airpods Headphones,1,150,12/27/19 12:21,"134 Center St, Los Angeles, CA 90001" +307006,AA Batteries (4-pack),1,3.84,12/09/19 18:47,"271 Wilson St, Atlanta, GA 30301" +307007,20in Monitor,1,109.99,12/23/19 18:28,"783 7th St, Boston, MA 02215" +307008,Lightning Charging Cable,1,14.95,12/10/19 11:39,"353 Hickory St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +307009,Google Phone,1,600,12/13/19 14:04,"102 4th St, San Francisco, CA 94016" +307010,AA Batteries (4-pack),1,3.84,12/13/19 14:45,"544 Pine St, Atlanta, GA 30301" +307011,34in Ultrawide Monitor,1,379.99,12/27/19 16:02,"171 Madison St, Austin, TX 73301" +307012,USB-C Charging Cable,1,11.95,12/20/19 17:14,"560 Cherry St, San Francisco, CA 94016" +307013,AA Batteries (4-pack),2,3.84,12/29/19 17:34,"74 1st St, New York City, NY 10001" +307014,AAA Batteries (4-pack),1,2.99,12/07/19 18:59,"355 11th St, Boston, MA 02215" +307015,AA Batteries (4-pack),1,3.84,12/31/19 13:14,"756 9th St, Los Angeles, CA 90001" +307016,LG Washing Machine,1,600.0,12/19/19 21:37,"617 Spruce St, Dallas, TX 75001" +307017,34in Ultrawide Monitor,1,379.99,12/28/19 04:07,"832 Hill St, San Francisco, CA 94016" +307018,Lightning Charging Cable,1,14.95,12/02/19 12:08,"483 Johnson St, Boston, MA 02215" +307019,Wired Headphones,1,11.99,12/04/19 14:41,"140 Walnut St, Seattle, WA 98101" +307020,Bose SoundSport Headphones,1,99.99,12/10/19 15:22,"622 Cedar St, Boston, MA 02215" +307021,iPhone,1,700,12/08/19 00:24,"885 14th St, New York City, NY 10001" +307022,Lightning Charging Cable,2,14.95,12/23/19 21:59,"254 Maple St, San Francisco, CA 94016" +307023,Wired Headphones,1,11.99,12/20/19 18:20,"16 North St, Atlanta, GA 30301" +307024,Flatscreen TV,1,300,12/08/19 13:25,"128 4th St, Portland, OR 97035" +307025,Apple Airpods Headphones,1,150,12/29/19 12:57,"821 Lakeview St, Portland, OR 97035" +307026,Lightning Charging Cable,1,14.95,12/07/19 20:37,"761 Lake St, San Francisco, CA 94016" +307027,Apple Airpods Headphones,1,150,12/13/19 17:11,"305 Pine St, Boston, MA 02215" +307028,Lightning Charging Cable,1,14.95,12/05/19 17:50,"64 Sunset St, Austin, TX 73301" +307029,Bose SoundSport Headphones,2,99.99,12/21/19 16:16,"442 Center St, Los Angeles, CA 90001" +307030,Macbook Pro Laptop,1,1700,12/22/19 12:47,"423 2nd St, Dallas, TX 75001" +307031,AA Batteries (4-pack),1,3.84,12/13/19 20:14,"584 Ridge St, Los Angeles, CA 90001" +307032,Wired Headphones,1,11.99,12/07/19 20:47,"666 South St, New York City, NY 10001" +307033,USB-C Charging Cable,1,11.95,12/06/19 14:39,"868 11th St, New York City, NY 10001" +307034,iPhone,1,700,12/14/19 13:14,"569 Walnut St, New York City, NY 10001" +307035,Wired Headphones,1,11.99,12/17/19 11:15,"459 Chestnut St, Dallas, TX 75001" +307036,Lightning Charging Cable,1,14.95,12/31/19 17:26,"545 Dogwood St, Seattle, WA 98101" +307037,ThinkPad Laptop,1,999.99,12/12/19 10:33,"741 9th St, New York City, NY 10001" +307038,Lightning Charging Cable,1,14.95,12/24/19 18:59,"965 Willow St, New York City, NY 10001" +307039,AA Batteries (4-pack),2,3.84,12/27/19 18:43,"973 Forest St, Los Angeles, CA 90001" +307040,Flatscreen TV,1,300,12/15/19 17:20,"560 Park St, Los Angeles, CA 90001" +307041,Wired Headphones,1,11.99,12/29/19 20:48,"943 South St, Boston, MA 02215" +307042,Lightning Charging Cable,1,14.95,12/25/19 15:09,"978 Center St, Los Angeles, CA 90001" +307043,LG Dryer,1,600.0,12/26/19 12:28,"857 Lincoln St, Austin, TX 73301" +307044,Apple Airpods Headphones,1,150,12/28/19 20:48,"340 Elm St, San Francisco, CA 94016" +307045,AA Batteries (4-pack),1,3.84,12/19/19 19:27,"419 Maple St, Seattle, WA 98101" +307046,AAA Batteries (4-pack),1,2.99,12/25/19 21:50,"525 7th St, San Francisco, CA 94016" +307047,Lightning Charging Cable,1,14.95,12/14/19 09:42,"234 Forest St, New York City, NY 10001" +307048,Lightning Charging Cable,1,14.95,12/20/19 14:23,"90 Center St, Seattle, WA 98101" +307049,Wired Headphones,1,11.99,12/13/19 00:18,"576 Lake St, Portland, OR 97035" +307050,USB-C Charging Cable,1,11.95,12/25/19 13:48,"180 7th St, San Francisco, CA 94016" +307051,27in 4K Gaming Monitor,1,389.99,12/10/19 19:40,"80 Walnut St, San Francisco, CA 94016" +307052,AA Batteries (4-pack),1,3.84,12/24/19 00:13,"797 Spruce St, Los Angeles, CA 90001" +307053,27in 4K Gaming Monitor,1,389.99,12/24/19 09:17,"806 5th St, Seattle, WA 98101" +307054,Lightning Charging Cable,1,14.95,12/07/19 12:49,"509 South St, Portland, ME 04101" +307055,27in FHD Monitor,1,149.99,12/25/19 15:46,"517 Chestnut St, San Francisco, CA 94016" +307056,34in Ultrawide Monitor,1,379.99,12/05/19 12:43,"845 Forest St, San Francisco, CA 94016" +307057,Bose SoundSport Headphones,1,99.99,12/11/19 08:20,"957 Highland St, San Francisco, CA 94016" +307058,USB-C Charging Cable,1,11.95,12/18/19 18:35,"829 4th St, Dallas, TX 75001" +307059,27in FHD Monitor,1,149.99,12/13/19 18:24,"283 Hill St, Los Angeles, CA 90001" +307060,34in Ultrawide Monitor,1,379.99,12/24/19 01:44,"754 Johnson St, Seattle, WA 98101" +307061,USB-C Charging Cable,1,11.95,12/26/19 22:53,"551 13th St, Dallas, TX 75001" +307062,Macbook Pro Laptop,1,1700,12/11/19 17:46,"552 1st St, Seattle, WA 98101" +307063,USB-C Charging Cable,1,11.95,12/06/19 14:53,"242 Forest St, New York City, NY 10001" +307064,Wired Headphones,1,11.99,12/02/19 15:19,"122 Lincoln St, Boston, MA 02215" +307065,USB-C Charging Cable,1,11.95,12/25/19 19:48,"51 Jackson St, Los Angeles, CA 90001" +307066,AAA Batteries (4-pack),1,2.99,12/01/19 09:48,"784 Walnut St, New York City, NY 10001" +307067,USB-C Charging Cable,1,11.95,12/02/19 22:56,"121 Lincoln St, New York City, NY 10001" +307068,Apple Airpods Headphones,1,150,12/05/19 02:30,"422 7th St, New York City, NY 10001" +307069,USB-C Charging Cable,1,11.95,12/16/19 15:42,"153 6th St, Austin, TX 73301" +307070,Lightning Charging Cable,1,14.95,12/09/19 23:23,"935 Maple St, Boston, MA 02215" +307071,AAA Batteries (4-pack),4,2.99,12/19/19 12:52,"389 Washington St, Dallas, TX 75001" +307071,ThinkPad Laptop,1,999.99,12/19/19 12:52,"389 Washington St, Dallas, TX 75001" +307072,AA Batteries (4-pack),1,3.84,12/21/19 20:02,"253 Elm St, San Francisco, CA 94016" +307073,Lightning Charging Cable,1,14.95,12/04/19 20:15,"225 12th St, New York City, NY 10001" +307074,USB-C Charging Cable,1,11.95,12/24/19 14:21,"504 Dogwood St, Atlanta, GA 30301" +307075,Wired Headphones,1,11.99,12/17/19 13:19,"786 7th St, San Francisco, CA 94016" +307076,Flatscreen TV,1,300,12/05/19 22:58,"578 River St, Seattle, WA 98101" +307077,AAA Batteries (4-pack),1,2.99,12/23/19 09:44,"904 9th St, Los Angeles, CA 90001" +307078,Wired Headphones,1,11.99,12/23/19 23:35,"496 14th St, New York City, NY 10001" +307079,Apple Airpods Headphones,1,150,12/25/19 22:08,"718 4th St, Boston, MA 02215" +307080,Apple Airpods Headphones,1,150,12/01/19 03:28,"603 Wilson St, Dallas, TX 75001" +307081,27in FHD Monitor,1,149.99,12/08/19 14:22,"615 River St, Los Angeles, CA 90001" +307082,AAA Batteries (4-pack),1,2.99,12/22/19 11:43,"18 North St, Boston, MA 02215" +307083,USB-C Charging Cable,2,11.95,12/21/19 10:56,"850 South St, San Francisco, CA 94016" +307084,USB-C Charging Cable,1,11.95,12/14/19 15:09,"399 7th St, Portland, OR 97035" +307085,27in FHD Monitor,1,149.99,12/28/19 20:24,"882 Spruce St, Seattle, WA 98101" +307086,USB-C Charging Cable,1,11.95,12/17/19 15:18,"482 Washington St, Atlanta, GA 30301" +307087,AAA Batteries (4-pack),1,2.99,12/18/19 09:09,"866 West St, Boston, MA 02215" +307088,AAA Batteries (4-pack),1,2.99,12/07/19 09:11,"360 1st St, Seattle, WA 98101" +307089,Lightning Charging Cable,1,14.95,12/14/19 00:50,"434 Elm St, San Francisco, CA 94016" +307090,ThinkPad Laptop,1,999.99,12/28/19 13:07,"683 Hill St, Boston, MA 02215" +307091,Apple Airpods Headphones,1,150,12/29/19 09:22,"222 6th St, New York City, NY 10001" +307092,AAA Batteries (4-pack),1,2.99,12/22/19 16:48,"296 Cherry St, Portland, OR 97035" +307093,Bose SoundSport Headphones,1,99.99,12/02/19 22:33,"698 Chestnut St, Boston, MA 02215" +307094,Wired Headphones,1,11.99,12/22/19 11:11,"437 9th St, Dallas, TX 75001" +307095,27in 4K Gaming Monitor,1,389.99,12/11/19 21:15,"807 Elm St, San Francisco, CA 94016" +307096,Flatscreen TV,1,300,12/07/19 21:57,"244 Johnson St, San Francisco, CA 94016" +307097,iPhone,1,700,12/28/19 13:59,"755 Walnut St, Seattle, WA 98101" +307098,ThinkPad Laptop,1,999.99,12/28/19 18:02,"52 Spruce St, San Francisco, CA 94016" +307099,Bose SoundSport Headphones,1,99.99,12/17/19 16:53,"893 Main St, San Francisco, CA 94016" +307100,27in 4K Gaming Monitor,1,389.99,12/27/19 11:59,"876 Elm St, Dallas, TX 75001" +307101,Google Phone,1,600,12/16/19 18:44,"779 2nd St, San Francisco, CA 94016" +307102,27in FHD Monitor,1,149.99,12/02/19 18:40,"78 14th St, Los Angeles, CA 90001" +307103,Google Phone,1,600,12/27/19 21:33,"511 Park St, Los Angeles, CA 90001" +307103,USB-C Charging Cable,1,11.95,12/27/19 21:33,"511 Park St, Los Angeles, CA 90001" +307104,Wired Headphones,1,11.99,12/12/19 15:44,"23 Jackson St, Atlanta, GA 30301" +307105,Lightning Charging Cable,1,14.95,12/09/19 22:02,"835 Main St, Los Angeles, CA 90001" +307106,20in Monitor,1,109.99,12/21/19 22:19,"260 Chestnut St, New York City, NY 10001" +307107,Lightning Charging Cable,1,14.95,12/20/19 21:22,"56 8th St, Dallas, TX 75001" +307108,Wired Headphones,1,11.99,12/27/19 14:00,"245 Lakeview St, Seattle, WA 98101" +307109,27in FHD Monitor,1,149.99,12/18/19 20:46,"825 Ridge St, Los Angeles, CA 90001" +307110,Wired Headphones,1,11.99,12/07/19 10:37,"634 West St, San Francisco, CA 94016" +307111,AA Batteries (4-pack),1,3.84,12/18/19 09:42,"144 13th St, Seattle, WA 98101" +307112,20in Monitor,1,109.99,12/23/19 13:36,"433 2nd St, San Francisco, CA 94016" +307113,27in FHD Monitor,1,149.99,12/30/19 15:05,"227 Highland St, Los Angeles, CA 90001" +307114,Wired Headphones,1,11.99,12/18/19 07:01,"807 Lincoln St, Boston, MA 02215" +307115,Vareebadd Phone,1,400,12/07/19 18:45,"772 River St, San Francisco, CA 94016" +307115,USB-C Charging Cable,1,11.95,12/07/19 18:45,"772 River St, San Francisco, CA 94016" +307116,ThinkPad Laptop,1,999.99,12/04/19 19:25,"833 9th St, Seattle, WA 98101" +307117,Wired Headphones,1,11.99,12/26/19 20:11,"581 Park St, Seattle, WA 98101" +307118,Lightning Charging Cable,1,14.95,12/04/19 16:33,"494 Adams St, Atlanta, GA 30301" +307119,AA Batteries (4-pack),1,3.84,12/26/19 11:18,"806 Cherry St, Dallas, TX 75001" +307120,Wired Headphones,1,11.99,12/13/19 08:33,"901 Washington St, San Francisco, CA 94016" +307121,Bose SoundSport Headphones,1,99.99,12/10/19 20:57,"323 12th St, Los Angeles, CA 90001" +307122,27in FHD Monitor,1,149.99,12/05/19 15:54,"560 1st St, Seattle, WA 98101" +307123,USB-C Charging Cable,1,11.95,12/04/19 20:54,"633 Jackson St, Atlanta, GA 30301" +307124,USB-C Charging Cable,1,11.95,12/26/19 09:15,"165 Hill St, Portland, ME 04101" +307125,USB-C Charging Cable,1,11.95,12/08/19 18:37,"252 2nd St, Atlanta, GA 30301" +307126,Google Phone,1,600,12/05/19 10:16,"313 Elm St, New York City, NY 10001" +307127,Lightning Charging Cable,2,14.95,12/19/19 00:09,"992 Cedar St, New York City, NY 10001" +307128,Google Phone,1,600,12/16/19 12:30,"968 Pine St, Boston, MA 02215" +307129,AA Batteries (4-pack),1,3.84,12/12/19 13:46,"91 Wilson St, San Francisco, CA 94016" +307130,AAA Batteries (4-pack),3,2.99,12/28/19 00:18,"779 Cedar St, Boston, MA 02215" +307131,Lightning Charging Cable,1,14.95,12/20/19 22:15,"949 Lake St, San Francisco, CA 94016" +307132,AA Batteries (4-pack),1,3.84,12/01/19 17:36,"480 Jefferson St, Los Angeles, CA 90001" +307133,Wired Headphones,2,11.99,12/28/19 10:38,"872 Sunset St, Seattle, WA 98101" +307134,Wired Headphones,1,11.99,12/15/19 14:15,"545 Lakeview St, Dallas, TX 75001" +307135,AAA Batteries (4-pack),2,2.99,12/21/19 08:04,"906 1st St, Los Angeles, CA 90001" +307136,20in Monitor,1,109.99,12/03/19 13:13,"237 Spruce St, Seattle, WA 98101" +307137,Vareebadd Phone,1,400,12/19/19 16:16,"415 Elm St, San Francisco, CA 94016" +307137,Bose SoundSport Headphones,1,99.99,12/19/19 16:16,"415 Elm St, San Francisco, CA 94016" +307137,Wired Headphones,1,11.99,12/19/19 16:16,"415 Elm St, San Francisco, CA 94016" +307138,Apple Airpods Headphones,1,150,12/14/19 17:17,"873 Wilson St, Portland, ME 04101" +307139,34in Ultrawide Monitor,1,379.99,12/12/19 10:49,"447 Pine St, Boston, MA 02215" +307140,Lightning Charging Cable,1,14.95,12/31/19 00:11,"326 Lakeview St, Seattle, WA 98101" +307141,Lightning Charging Cable,1,14.95,12/03/19 03:48,"532 Adams St, Los Angeles, CA 90001" +307142,Bose SoundSport Headphones,1,99.99,12/12/19 19:39,"564 5th St, Los Angeles, CA 90001" +307143,AAA Batteries (4-pack),1,2.99,12/17/19 21:32,"247 9th St, Los Angeles, CA 90001" +307144,Macbook Pro Laptop,1,1700,12/11/19 23:36,"373 North St, San Francisco, CA 94016" +307145,Wired Headphones,1,11.99,12/28/19 11:43,"571 Sunset St, Los Angeles, CA 90001" +307146,USB-C Charging Cable,1,11.95,12/22/19 23:49,"215 Chestnut St, New York City, NY 10001" +307147,AAA Batteries (4-pack),1,2.99,12/21/19 18:18,"735 Wilson St, Dallas, TX 75001" +307148,Flatscreen TV,1,300,12/26/19 19:03,"433 Highland St, Los Angeles, CA 90001" +307149,AA Batteries (4-pack),1,3.84,12/25/19 10:58,"956 Highland St, San Francisco, CA 94016" +307150,Bose SoundSport Headphones,1,99.99,12/17/19 19:43,"926 Lake St, Los Angeles, CA 90001" +307151,Flatscreen TV,1,300,12/13/19 10:38,"153 Spruce St, Portland, ME 04101" +307152,27in 4K Gaming Monitor,1,389.99,12/20/19 05:30,"666 Sunset St, Dallas, TX 75001" +307153,Wired Headphones,1,11.99,12/08/19 23:56,"754 6th St, Los Angeles, CA 90001" +307154,Lightning Charging Cable,1,14.95,12/24/19 09:59,"26 Cedar St, San Francisco, CA 94016" +307155,USB-C Charging Cable,1,11.95,12/06/19 19:38,"982 1st St, Boston, MA 02215" +307156,Apple Airpods Headphones,1,150,12/31/19 12:53,"416 Jackson St, Dallas, TX 75001" +307157,iPhone,1,700,12/15/19 16:44,"768 River St, Los Angeles, CA 90001" +307157,Lightning Charging Cable,1,14.95,12/15/19 16:44,"768 River St, Los Angeles, CA 90001" +307158,AA Batteries (4-pack),2,3.84,12/12/19 12:44,"298 13th St, San Francisco, CA 94016" +307159,ThinkPad Laptop,1,999.99,12/08/19 15:28,"603 2nd St, Los Angeles, CA 90001" +307160,Macbook Pro Laptop,1,1700,12/19/19 19:01,"918 Highland St, San Francisco, CA 94016" +307161,34in Ultrawide Monitor,1,379.99,12/18/19 17:03,"903 9th St, San Francisco, CA 94016" +307162,Bose SoundSport Headphones,1,99.99,12/02/19 11:46,"509 Adams St, New York City, NY 10001" +307163,AAA Batteries (4-pack),1,2.99,12/05/19 21:34,"940 Walnut St, New York City, NY 10001" +307164,Bose SoundSport Headphones,1,99.99,12/12/19 19:46,"527 Walnut St, Los Angeles, CA 90001" +307165,USB-C Charging Cable,1,11.95,12/08/19 18:13,"198 Sunset St, Atlanta, GA 30301" +307166,Apple Airpods Headphones,1,150,12/23/19 11:26,"655 2nd St, Los Angeles, CA 90001" +307167,AA Batteries (4-pack),1,3.84,12/06/19 19:03,"255 Maple St, Los Angeles, CA 90001" +307168,AA Batteries (4-pack),1,3.84,12/26/19 19:38,"727 Johnson St, Boston, MA 02215" +307169,Wired Headphones,1,11.99,12/08/19 19:35,"77 Cedar St, San Francisco, CA 94016" +307170,27in FHD Monitor,1,149.99,12/03/19 17:14,"363 Wilson St, San Francisco, CA 94016" +307171,20in Monitor,1,109.99,12/29/19 15:38,"190 Jefferson St, San Francisco, CA 94016" +307172,USB-C Charging Cable,1,11.95,12/14/19 15:54,"836 2nd St, Austin, TX 73301" +307173,AAA Batteries (4-pack),1,2.99,12/30/19 02:11,"612 Elm St, San Francisco, CA 94016" +307174,27in FHD Monitor,1,149.99,12/24/19 01:19,"540 Cedar St, Seattle, WA 98101" +307175,iPhone,1,700,12/24/19 12:46,"365 Park St, Los Angeles, CA 90001" +307176,iPhone,1,700,12/01/19 09:43,"232 Madison St, New York City, NY 10001" +307177,27in 4K Gaming Monitor,1,389.99,12/31/19 03:49,"969 Lincoln St, New York City, NY 10001" +307178,Flatscreen TV,1,300,12/08/19 13:57,"253 Walnut St, New York City, NY 10001" +307179,27in FHD Monitor,1,149.99,12/18/19 13:58,"377 2nd St, San Francisco, CA 94016" +307180,Apple Airpods Headphones,1,150,12/15/19 16:59,"708 Forest St, Los Angeles, CA 90001" +307181,AAA Batteries (4-pack),1,2.99,12/16/19 09:35,"210 10th St, Los Angeles, CA 90001" +307182,Wired Headphones,1,11.99,12/26/19 10:55,"922 Church St, Los Angeles, CA 90001" +307183,Wired Headphones,1,11.99,12/06/19 17:09,"668 Pine St, Portland, OR 97035" +307184,ThinkPad Laptop,1,999.99,12/27/19 15:13,"897 Highland St, Austin, TX 73301" +307185,27in 4K Gaming Monitor,1,389.99,12/04/19 12:16,"473 4th St, Austin, TX 73301" +307186,Flatscreen TV,1,300,12/11/19 23:56,"777 Lake St, San Francisco, CA 94016" +307187,Apple Airpods Headphones,1,150,12/12/19 21:00,"874 Sunset St, New York City, NY 10001" +307188,Apple Airpods Headphones,1,150,12/07/19 12:21,"755 North St, San Francisco, CA 94016" +307189,Google Phone,1,600,12/10/19 05:58,"608 South St, Atlanta, GA 30301" +307190,iPhone,1,700,12/10/19 15:56,"237 Elm St, Austin, TX 73301" +307191,AA Batteries (4-pack),1,3.84,12/27/19 01:45,"215 1st St, New York City, NY 10001" +307192,AAA Batteries (4-pack),2,2.99,12/20/19 15:23,"496 Elm St, Los Angeles, CA 90001" +307193,27in 4K Gaming Monitor,1,389.99,12/29/19 21:15,"13 Johnson St, Dallas, TX 75001" +307194,Flatscreen TV,1,300,12/28/19 22:07,"253 12th St, New York City, NY 10001" +307195,AAA Batteries (4-pack),1,2.99,12/22/19 16:42,"15 Adams St, San Francisco, CA 94016" +307196,AA Batteries (4-pack),1,3.84,12/24/19 23:02,"25 Chestnut St, San Francisco, CA 94016" +307197,AAA Batteries (4-pack),1,2.99,12/20/19 22:28,"645 Hill St, Dallas, TX 75001" +307198,iPhone,1,700,12/16/19 07:42,"884 Jefferson St, San Francisco, CA 94016" +307199,USB-C Charging Cable,1,11.95,12/19/19 17:47,"88 Cedar St, Atlanta, GA 30301" +307200,Lightning Charging Cable,1,14.95,12/12/19 04:15,"939 West St, Atlanta, GA 30301" +307201,AA Batteries (4-pack),1,3.84,12/24/19 20:18,"830 West St, New York City, NY 10001" +307202,AAA Batteries (4-pack),1,2.99,12/23/19 21:48,"406 10th St, New York City, NY 10001" +307203,Google Phone,1,600,12/17/19 09:11,"992 Dogwood St, Seattle, WA 98101" +307204,Wired Headphones,1,11.99,12/11/19 15:31,"591 Washington St, Boston, MA 02215" +307205,AAA Batteries (4-pack),4,2.99,12/17/19 19:25,"48 Jackson St, Atlanta, GA 30301" +307206,USB-C Charging Cable,1,11.95,12/26/19 19:03,"455 Washington St, New York City, NY 10001" +307207,Bose SoundSport Headphones,1,99.99,12/04/19 19:15,"466 Lake St, Portland, OR 97035" +307208,AA Batteries (4-pack),2,3.84,12/14/19 20:16,"943 Highland St, Los Angeles, CA 90001" +307209,Vareebadd Phone,1,400,12/03/19 09:27,"135 Highland St, Boston, MA 02215" +307210,Lightning Charging Cable,1,14.95,12/25/19 15:08,"608 12th St, New York City, NY 10001" +307211,27in 4K Gaming Monitor,1,389.99,12/30/19 06:49,"131 Lake St, Dallas, TX 75001" +307212,Macbook Pro Laptop,1,1700,12/15/19 10:16,"535 Meadow St, New York City, NY 10001" +307213,Wired Headphones,1,11.99,12/11/19 11:46,"15 Lake St, San Francisco, CA 94016" +307214,AA Batteries (4-pack),1,3.84,12/03/19 12:05,"747 Lakeview St, Los Angeles, CA 90001" +307215,27in FHD Monitor,1,149.99,12/25/19 11:52,"210 Center St, Boston, MA 02215" +307216,Wired Headphones,1,11.99,12/24/19 13:05,"528 Hickory St, Boston, MA 02215" +307217,Flatscreen TV,1,300,12/14/19 19:54,"486 Sunset St, Boston, MA 02215" +307218,27in FHD Monitor,1,149.99,12/30/19 11:54,"940 Chestnut St, Boston, MA 02215" +307219,AAA Batteries (4-pack),1,2.99,12/24/19 07:44,"55 10th St, New York City, NY 10001" +307220,34in Ultrawide Monitor,1,379.99,12/24/19 10:36,"576 Pine St, Boston, MA 02215" +307221,AA Batteries (4-pack),2,3.84,12/23/19 12:08,"375 Washington St, San Francisco, CA 94016" +307222,Wired Headphones,1,11.99,12/26/19 13:06,"496 Lake St, New York City, NY 10001" +307223,AA Batteries (4-pack),1,3.84,12/23/19 16:55,"257 Highland St, Los Angeles, CA 90001" +307224,Wired Headphones,2,11.99,12/08/19 21:12,"640 Cedar St, Atlanta, GA 30301" +307225,iPhone,1,700,12/20/19 11:30,"719 Walnut St, New York City, NY 10001" +307226,27in 4K Gaming Monitor,1,389.99,12/13/19 21:13,"245 North St, Dallas, TX 75001" +307227,USB-C Charging Cable,1,11.95,12/31/19 15:38,"468 9th St, San Francisco, CA 94016" +307228,AAA Batteries (4-pack),1,2.99,12/27/19 15:41,"525 River St, Dallas, TX 75001" +307229,Bose SoundSport Headphones,1,99.99,12/09/19 19:18,"954 Willow St, San Francisco, CA 94016" +307230,Wired Headphones,1,11.99,12/21/19 18:33,"44 River St, San Francisco, CA 94016" +307231,Macbook Pro Laptop,1,1700,12/01/19 12:19,"305 River St, Atlanta, GA 30301" +307232,USB-C Charging Cable,1,11.95,12/07/19 00:16,"166 Hill St, Los Angeles, CA 90001" +307233,AAA Batteries (4-pack),1,2.99,12/07/19 17:35,"848 8th St, San Francisco, CA 94016" +307234,Macbook Pro Laptop,1,1700,12/29/19 09:05,"644 11th St, New York City, NY 10001" +307235,USB-C Charging Cable,1,11.95,12/13/19 08:18,"948 1st St, Atlanta, GA 30301" +307236,27in 4K Gaming Monitor,1,389.99,12/08/19 15:43,"56 5th St, Los Angeles, CA 90001" +307237,AA Batteries (4-pack),1,3.84,12/22/19 10:17,"993 13th St, Los Angeles, CA 90001" +307238,LG Dryer,1,600.0,12/20/19 14:44,"342 Wilson St, Austin, TX 73301" +307239,AAA Batteries (4-pack),2,2.99,12/22/19 21:15,"22 Washington St, Los Angeles, CA 90001" +307240,AAA Batteries (4-pack),1,2.99,12/06/19 12:47,"325 Lakeview St, Atlanta, GA 30301" +307241,AAA Batteries (4-pack),3,2.99,12/31/19 22:07,"17 Jackson St, San Francisco, CA 94016" +307242,AAA Batteries (4-pack),1,2.99,12/21/19 22:21,"621 Jefferson St, Los Angeles, CA 90001" +307243,USB-C Charging Cable,1,11.95,12/17/19 16:50,"272 Jefferson St, Seattle, WA 98101" +307244,AAA Batteries (4-pack),2,2.99,12/24/19 11:39,"565 10th St, Boston, MA 02215" +307245,AA Batteries (4-pack),1,3.84,12/18/19 00:12,"665 12th St, Atlanta, GA 30301" +307246,Wired Headphones,1,11.99,12/01/19 21:58,"422 Hill St, Seattle, WA 98101" +307247,AA Batteries (4-pack),1,3.84,12/18/19 18:24,"216 Lincoln St, San Francisco, CA 94016" +307248,ThinkPad Laptop,1,999.99,12/05/19 19:23,"829 Center St, San Francisco, CA 94016" +307249,Lightning Charging Cable,1,14.95,12/03/19 07:37,"501 Jefferson St, Boston, MA 02215" +307250,AAA Batteries (4-pack),1,2.99,12/23/19 13:28,"295 Adams St, Atlanta, GA 30301" +307250,27in 4K Gaming Monitor,1,389.99,12/23/19 13:28,"295 Adams St, Atlanta, GA 30301" +307251,Bose SoundSport Headphones,1,99.99,12/09/19 12:30,"30 Highland St, San Francisco, CA 94016" +307252,27in 4K Gaming Monitor,1,389.99,12/21/19 22:32,"752 Hill St, San Francisco, CA 94016" +307253,34in Ultrawide Monitor,1,379.99,12/22/19 10:08,"454 Lincoln St, San Francisco, CA 94016" +307254,Lightning Charging Cable,1,14.95,12/27/19 22:27,"644 Lincoln St, San Francisco, CA 94016" +307255,iPhone,1,700,12/10/19 14:36,"30 Lakeview St, Dallas, TX 75001" +307256,Google Phone,1,600,12/01/19 14:05,"989 Maple St, San Francisco, CA 94016" +307256,USB-C Charging Cable,1,11.95,12/01/19 14:05,"989 Maple St, San Francisco, CA 94016" +307257,AA Batteries (4-pack),1,3.84,12/24/19 13:25,"98 14th St, San Francisco, CA 94016" +307258,USB-C Charging Cable,2,11.95,12/05/19 12:45,"730 South St, Boston, MA 02215" +307259,Bose SoundSport Headphones,1,99.99,12/05/19 09:22,"363 12th St, Seattle, WA 98101" +307260,Bose SoundSport Headphones,1,99.99,12/15/19 14:28,"372 Lake St, Los Angeles, CA 90001" +307261,USB-C Charging Cable,1,11.95,12/24/19 09:00,"903 Forest St, New York City, NY 10001" +307262,Bose SoundSport Headphones,1,99.99,12/30/19 16:00,"982 Chestnut St, Dallas, TX 75001" +307263,Bose SoundSport Headphones,1,99.99,12/09/19 12:39,"60 2nd St, Boston, MA 02215" +307264,Bose SoundSport Headphones,1,99.99,12/05/19 11:29,"931 7th St, San Francisco, CA 94016" +307265,AA Batteries (4-pack),1,3.84,12/27/19 20:59,"621 Dogwood St, Seattle, WA 98101" +307266,Wired Headphones,1,11.99,12/13/19 13:47,"631 Cherry St, Los Angeles, CA 90001" +307267,AAA Batteries (4-pack),1,2.99,12/16/19 09:03,"767 Spruce St, New York City, NY 10001" +307267,AA Batteries (4-pack),3,3.84,12/16/19 09:03,"767 Spruce St, New York City, NY 10001" +307268,Lightning Charging Cable,1,14.95,12/30/19 05:50,"526 6th St, Dallas, TX 75001" +307269,34in Ultrawide Monitor,1,379.99,12/01/19 12:51,"655 9th St, Atlanta, GA 30301" +307270,AAA Batteries (4-pack),3,2.99,12/28/19 19:11,"312 9th St, New York City, NY 10001" +307271,34in Ultrawide Monitor,1,379.99,12/30/19 23:21,"680 Main St, Los Angeles, CA 90001" +307272,Lightning Charging Cable,1,14.95,12/18/19 12:24,"955 Dogwood St, Atlanta, GA 30301" +307273,Wired Headphones,1,11.99,12/10/19 14:48,"223 1st St, New York City, NY 10001" +307274,AAA Batteries (4-pack),2,2.99,12/01/19 16:22,"329 Park St, Atlanta, GA 30301" +307275,Bose SoundSport Headphones,1,99.99,12/01/19 23:19,"629 Elm St, San Francisco, CA 94016" +307276,AA Batteries (4-pack),1,3.84,12/31/19 23:19,"696 West St, Boston, MA 02215" +307277,AA Batteries (4-pack),4,3.84,12/11/19 21:58,"270 Meadow St, San Francisco, CA 94016" +307278,20in Monitor,1,109.99,12/05/19 10:52,"64 Jefferson St, New York City, NY 10001" +307278,20in Monitor,1,109.99,12/05/19 10:52,"64 Jefferson St, New York City, NY 10001" +307279,ThinkPad Laptop,1,999.99,12/07/19 11:45,"568 13th St, Boston, MA 02215" +307280,Apple Airpods Headphones,1,150,12/21/19 08:07,"957 Center St, Austin, TX 73301" +307281,Apple Airpods Headphones,1,150,12/06/19 18:24,"76 Chestnut St, San Francisco, CA 94016" +307281,Lightning Charging Cable,1,14.95,12/06/19 18:24,"76 Chestnut St, San Francisco, CA 94016" +307282,iPhone,1,700,12/22/19 22:58,"98 Forest St, New York City, NY 10001" +307283,LG Washing Machine,1,600.0,12/08/19 07:24,"332 Dogwood St, Atlanta, GA 30301" +307284,34in Ultrawide Monitor,1,379.99,12/03/19 18:04,"658 Willow St, Dallas, TX 75001" +307285,AA Batteries (4-pack),1,3.84,12/04/19 17:10,"948 Jackson St, Portland, OR 97035" +307286,USB-C Charging Cable,1,11.95,12/18/19 18:30,"172 Willow St, New York City, NY 10001" +307287,Lightning Charging Cable,1,14.95,12/26/19 19:05,"118 Lakeview St, Seattle, WA 98101" +307288,Vareebadd Phone,1,400,12/19/19 16:36,"767 Madison St, Los Angeles, CA 90001" +307288,USB-C Charging Cable,1,11.95,12/19/19 16:36,"767 Madison St, Los Angeles, CA 90001" +307289,Macbook Pro Laptop,1,1700,12/30/19 13:14,"332 7th St, San Francisco, CA 94016" +307290,AAA Batteries (4-pack),2,2.99,12/16/19 12:05,"397 Forest St, Austin, TX 73301" +307291,USB-C Charging Cable,2,11.95,12/19/19 20:43,"822 Jackson St, San Francisco, CA 94016" +307292,AAA Batteries (4-pack),1,2.99,12/13/19 18:27,"165 Church St, San Francisco, CA 94016" +307293,Wired Headphones,1,11.99,12/25/19 14:44,"940 7th St, Seattle, WA 98101" +307294,USB-C Charging Cable,1,11.95,12/06/19 18:35,"930 Lakeview St, San Francisco, CA 94016" +307295,Bose SoundSport Headphones,1,99.99,12/24/19 21:01,"370 Main St, Austin, TX 73301" +307296,Apple Airpods Headphones,1,150,12/11/19 14:53,"341 Jackson St, San Francisco, CA 94016" +307297,Vareebadd Phone,1,400,12/08/19 19:24,"4 Main St, Boston, MA 02215" +307297,Wired Headphones,1,11.99,12/08/19 19:24,"4 Main St, Boston, MA 02215" +307298,34in Ultrawide Monitor,1,379.99,12/23/19 01:17,"267 5th St, Seattle, WA 98101" +307299,USB-C Charging Cable,1,11.95,12/03/19 13:52,"810 Jackson St, New York City, NY 10001" +307300,27in 4K Gaming Monitor,1,389.99,12/30/19 22:19,"494 Madison St, San Francisco, CA 94016" +307301,Lightning Charging Cable,1,14.95,12/01/19 21:50,"213 Jackson St, Boston, MA 02215" +307301,Flatscreen TV,1,300,12/01/19 21:50,"213 Jackson St, Boston, MA 02215" +307302,Apple Airpods Headphones,1,150,12/03/19 16:08,"568 Lakeview St, San Francisco, CA 94016" +307303,AAA Batteries (4-pack),1,2.99,12/03/19 13:53,"769 Meadow St, Dallas, TX 75001" +307304,Macbook Pro Laptop,1,1700,12/13/19 14:25,"143 Adams St, San Francisco, CA 94016" +307305,USB-C Charging Cable,1,11.95,12/07/19 19:32,"942 Adams St, Austin, TX 73301" +307306,20in Monitor,1,109.99,12/06/19 10:45,"990 Church St, Dallas, TX 75001" +307307,20in Monitor,1,109.99,12/12/19 14:06,"624 13th St, San Francisco, CA 94016" +307308,AA Batteries (4-pack),1,3.84,12/11/19 14:50,"788 Spruce St, Seattle, WA 98101" +307309,Lightning Charging Cable,2,14.95,12/19/19 18:46,"319 Maple St, Boston, MA 02215" +307310,20in Monitor,1,109.99,12/23/19 11:01,"368 Pine St, New York City, NY 10001" +307311,USB-C Charging Cable,1,11.95,12/05/19 05:49,"541 Washington St, Boston, MA 02215" +307312,AA Batteries (4-pack),1,3.84,12/23/19 12:20,"843 Cherry St, San Francisco, CA 94016" +307313,Apple Airpods Headphones,1,150,12/21/19 23:37,"199 South St, San Francisco, CA 94016" +307314,Wired Headphones,2,11.99,12/23/19 13:16,"284 Washington St, San Francisco, CA 94016" +307315,Google Phone,1,600,12/06/19 21:23,"485 Sunset St, San Francisco, CA 94016" +307316,27in FHD Monitor,1,149.99,12/12/19 20:13,"327 Jackson St, New York City, NY 10001" +307317,AAA Batteries (4-pack),2,2.99,12/18/19 18:43,"366 Hickory St, Boston, MA 02215" +307318,USB-C Charging Cable,1,11.95,12/27/19 13:35,"102 Madison St, New York City, NY 10001" +307319,Bose SoundSport Headphones,1,99.99,12/09/19 19:12,"650 4th St, New York City, NY 10001" +307320,AAA Batteries (4-pack),1,2.99,12/29/19 08:28,"201 8th St, Boston, MA 02215" +307321,iPhone,1,700,12/16/19 20:34,"100 Lakeview St, Atlanta, GA 30301" +307322,27in 4K Gaming Monitor,1,389.99,12/16/19 08:23,"753 Cherry St, Dallas, TX 75001" +307323,Wired Headphones,1,11.99,12/01/19 14:17,"138 Center St, Austin, TX 73301" +307324,AAA Batteries (4-pack),1,2.99,12/19/19 12:29,"550 Jackson St, San Francisco, CA 94016" +307325,Wired Headphones,1,11.99,12/08/19 10:29,"12 9th St, Los Angeles, CA 90001" +307326,AAA Batteries (4-pack),1,2.99,12/13/19 20:26,"337 Washington St, Atlanta, GA 30301" +307327,USB-C Charging Cable,1,11.95,12/09/19 06:33,"162 13th St, Austin, TX 73301" +307328,USB-C Charging Cable,1,11.95,12/28/19 09:28,"908 13th St, Seattle, WA 98101" +307329,Wired Headphones,1,11.99,12/18/19 22:11,"709 14th St, Portland, OR 97035" +307330,Lightning Charging Cable,1,14.95,12/04/19 00:44,"94 Wilson St, Seattle, WA 98101" +307331,iPhone,1,700,12/31/19 21:44,"784 Johnson St, San Francisco, CA 94016" +307332,iPhone,1,700,12/23/19 08:33,"217 Ridge St, New York City, NY 10001" +307333,Apple Airpods Headphones,1,150,12/25/19 11:41,"739 8th St, Boston, MA 02215" +307334,Flatscreen TV,1,300,12/07/19 12:57,"14 Maple St, San Francisco, CA 94016" +307335,iPhone,1,700,12/02/19 19:30,"550 10th St, Los Angeles, CA 90001" +307336,Wired Headphones,1,11.99,12/12/19 11:09,"208 Hickory St, San Francisco, CA 94016" +307337,Google Phone,1,600,12/03/19 13:02,"828 12th St, Dallas, TX 75001" +307338,27in FHD Monitor,1,149.99,12/02/19 12:51,"247 8th St, San Francisco, CA 94016" +307339,AAA Batteries (4-pack),1,2.99,12/19/19 02:22,"421 Hickory St, Seattle, WA 98101" +307340,Lightning Charging Cable,1,14.95,12/09/19 20:58,"653 Cherry St, New York City, NY 10001" +307341,Bose SoundSport Headphones,1,99.99,12/13/19 13:16,"129 4th St, Los Angeles, CA 90001" +307342,USB-C Charging Cable,1,11.95,12/07/19 08:31,"953 Lincoln St, New York City, NY 10001" +307343,Bose SoundSport Headphones,1,99.99,12/15/19 15:06,"979 11th St, Dallas, TX 75001" +307344,ThinkPad Laptop,1,999.99,12/15/19 16:34,"114 Main St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +307345,Bose SoundSport Headphones,1,99.99,12/23/19 16:56,"955 Johnson St, San Francisco, CA 94016" +307346,Apple Airpods Headphones,1,150,12/09/19 20:13,"817 Cedar St, Los Angeles, CA 90001" +307347,AAA Batteries (4-pack),1,2.99,12/24/19 11:34,"30 Spruce St, New York City, NY 10001" +307348,Apple Airpods Headphones,1,150,12/13/19 23:05,"899 Lakeview St, San Francisco, CA 94016" +307349,USB-C Charging Cable,1,11.95,12/21/19 17:52,"674 Forest St, Atlanta, GA 30301" +307350,Bose SoundSport Headphones,1,99.99,12/09/19 11:52,"124 Meadow St, Boston, MA 02215" +307351,Lightning Charging Cable,1,14.95,12/12/19 18:15,"652 Wilson St, Dallas, TX 75001" +307352,Wired Headphones,1,11.99,12/19/19 11:54,"898 Church St, Boston, MA 02215" +307353,Wired Headphones,1,11.99,12/28/19 18:00,"5 Willow St, Boston, MA 02215" +307354,27in FHD Monitor,1,149.99,12/23/19 11:39,"137 5th St, Los Angeles, CA 90001" +307355,Lightning Charging Cable,1,14.95,12/04/19 09:51,"694 Hill St, Los Angeles, CA 90001" +307356,34in Ultrawide Monitor,1,379.99,12/08/19 13:44,"87 Pine St, San Francisco, CA 94016" +307357,AAA Batteries (4-pack),1,2.99,12/13/19 23:14,"679 North St, San Francisco, CA 94016" +307358,Lightning Charging Cable,2,14.95,12/10/19 13:27,"152 Wilson St, Portland, ME 04101" +307359,Apple Airpods Headphones,1,150,12/16/19 17:02,"789 Adams St, Los Angeles, CA 90001" +307360,Wired Headphones,3,11.99,12/07/19 18:13,"999 13th St, Seattle, WA 98101" +307361,AAA Batteries (4-pack),1,2.99,12/29/19 13:33,"254 River St, Los Angeles, CA 90001" +307362,Apple Airpods Headphones,1,150,12/09/19 07:33,"771 11th St, Boston, MA 02215" +307363,AA Batteries (4-pack),2,3.84,12/14/19 10:03,"808 4th St, San Francisco, CA 94016" +307364,Apple Airpods Headphones,1,150,12/27/19 13:05,"68 14th St, New York City, NY 10001" +,,,,, +307365,iPhone,1,700,12/11/19 20:54,"414 Church St, Dallas, TX 75001" +307366,27in 4K Gaming Monitor,1,389.99,12/11/19 19:42,"616 Maple St, New York City, NY 10001" +307367,Apple Airpods Headphones,1,150,12/01/19 20:44,"879 4th St, Dallas, TX 75001" +307368,Wired Headphones,1,11.99,12/18/19 12:20,"47 Meadow St, Portland, OR 97035" +307369,iPhone,1,700,12/29/19 21:42,"938 Maple St, Austin, TX 73301" +307370,Apple Airpods Headphones,1,150,12/21/19 21:49,"530 10th St, Dallas, TX 75001" +307371,AA Batteries (4-pack),2,3.84,12/13/19 16:20,"197 Church St, Dallas, TX 75001" +307372,27in 4K Gaming Monitor,1,389.99,12/14/19 20:38,"57 Meadow St, Boston, MA 02215" +307373,Bose SoundSport Headphones,1,99.99,12/20/19 12:53,"880 Adams St, Los Angeles, CA 90001" +307374,Apple Airpods Headphones,1,150,12/31/19 15:13,"42 Hickory St, Dallas, TX 75001" +307375,AAA Batteries (4-pack),1,2.99,12/20/19 07:29,"216 Cedar St, New York City, NY 10001" +307376,Lightning Charging Cable,1,14.95,12/14/19 17:12,"792 Madison St, Austin, TX 73301" +307377,AAA Batteries (4-pack),1,2.99,12/21/19 17:12,"20 Maple St, Dallas, TX 75001" +307378,Wired Headphones,1,11.99,12/08/19 00:57,"686 Elm St, Portland, OR 97035" +307379,USB-C Charging Cable,1,11.95,12/30/19 10:00,"489 11th St, Boston, MA 02215" +307380,Macbook Pro Laptop,1,1700,12/20/19 19:43,"602 Spruce St, Boston, MA 02215" +307381,AAA Batteries (4-pack),2,2.99,12/02/19 18:11,"896 Johnson St, Seattle, WA 98101" +307382,AAA Batteries (4-pack),2,2.99,12/24/19 08:23,"587 Wilson St, Seattle, WA 98101" +307383,Google Phone,1,600,12/31/19 09:47,"280 North St, Portland, OR 97035" +307384,Google Phone,1,600,12/09/19 21:09,"227 2nd St, Austin, TX 73301" +307385,Apple Airpods Headphones,1,150,12/13/19 10:26,"766 Main St, Dallas, TX 75001" +307386,Bose SoundSport Headphones,1,99.99,12/21/19 21:52,"607 14th St, Dallas, TX 75001" +307386,AA Batteries (4-pack),1,3.84,12/21/19 21:52,"607 14th St, Dallas, TX 75001" +307387,USB-C Charging Cable,2,11.95,12/12/19 20:10,"629 Cherry St, Boston, MA 02215" +307388,Lightning Charging Cable,1,14.95,12/10/19 23:01,"850 Sunset St, San Francisco, CA 94016" +307389,AAA Batteries (4-pack),1,2.99,12/16/19 01:20,"498 Spruce St, Atlanta, GA 30301" +307390,Bose SoundSport Headphones,1,99.99,12/30/19 13:01,"955 Jackson St, Atlanta, GA 30301" +307391,Flatscreen TV,1,300,12/11/19 22:39,"391 Walnut St, Dallas, TX 75001" +307392,Lightning Charging Cable,1,14.95,12/14/19 19:30,"862 Madison St, Dallas, TX 75001" +307393,34in Ultrawide Monitor,1,379.99,12/01/19 15:05,"536 Madison St, Los Angeles, CA 90001" +307394,AAA Batteries (4-pack),2,2.99,12/27/19 13:54,"236 Adams St, New York City, NY 10001" +307395,AA Batteries (4-pack),1,3.84,12/15/19 16:57,"199 Chestnut St, New York City, NY 10001" +307396,Apple Airpods Headphones,1,150,12/18/19 07:35,"39 Maple St, Boston, MA 02215" +307397,Apple Airpods Headphones,1,150,12/02/19 03:00,"876 Cherry St, San Francisco, CA 94016" +307398,AA Batteries (4-pack),3,3.84,12/24/19 15:53,"722 8th St, Austin, TX 73301" +307399,Lightning Charging Cable,1,14.95,12/10/19 16:00,"818 Hickory St, Los Angeles, CA 90001" +307400,Bose SoundSport Headphones,1,99.99,12/03/19 17:38,"683 North St, Los Angeles, CA 90001" +307401,AA Batteries (4-pack),1,3.84,12/21/19 22:14,"744 4th St, New York City, NY 10001" +307402,20in Monitor,1,109.99,12/27/19 11:59,"602 8th St, Austin, TX 73301" +307403,iPhone,1,700,12/26/19 12:07,"685 Madison St, Portland, OR 97035" +307404,AAA Batteries (4-pack),1,2.99,12/02/19 11:59,"227 Lake St, San Francisco, CA 94016" +307405,AA Batteries (4-pack),1,3.84,12/27/19 13:57,"772 South St, San Francisco, CA 94016" +307406,AA Batteries (4-pack),1,3.84,12/20/19 15:14,"282 Hill St, New York City, NY 10001" +307407,USB-C Charging Cable,1,11.95,12/22/19 16:41,"452 Lakeview St, Seattle, WA 98101" +307408,Macbook Pro Laptop,1,1700,12/07/19 16:44,"522 2nd St, Dallas, TX 75001" +307409,AAA Batteries (4-pack),3,2.99,12/20/19 13:11,"862 West St, San Francisco, CA 94016" +307410,34in Ultrawide Monitor,1,379.99,12/04/19 07:27,"398 North St, Los Angeles, CA 90001" +307411,AAA Batteries (4-pack),3,2.99,12/22/19 21:22,"405 Sunset St, San Francisco, CA 94016" +307412,AAA Batteries (4-pack),1,2.99,12/20/19 18:17,"423 14th St, Boston, MA 02215" +307413,Flatscreen TV,1,300,12/10/19 18:26,"352 Meadow St, Seattle, WA 98101" +307414,iPhone,1,700,12/05/19 13:16,"941 Lincoln St, San Francisco, CA 94016" +307415,Lightning Charging Cable,1,14.95,12/14/19 09:55,"272 South St, San Francisco, CA 94016" +307415,Wired Headphones,1,11.99,12/14/19 09:55,"272 South St, San Francisco, CA 94016" +307416,USB-C Charging Cable,1,11.95,12/25/19 11:51,"825 Center St, San Francisco, CA 94016" +307417,AAA Batteries (4-pack),3,2.99,12/06/19 14:18,"432 Center St, Seattle, WA 98101" +307418,USB-C Charging Cable,1,11.95,12/21/19 23:39,"3 5th St, San Francisco, CA 94016" +307419,Lightning Charging Cable,1,14.95,12/12/19 13:58,"82 7th St, Boston, MA 02215" +307420,AAA Batteries (4-pack),2,2.99,12/08/19 12:00,"16 Johnson St, Los Angeles, CA 90001" +307421,27in FHD Monitor,1,149.99,12/01/19 16:02,"625 River St, Dallas, TX 75001" +307422,Google Phone,1,600,12/12/19 13:03,"519 Dogwood St, San Francisco, CA 94016" +307423,Apple Airpods Headphones,1,150,12/24/19 15:27,"701 Willow St, Austin, TX 73301" +307424,34in Ultrawide Monitor,1,379.99,12/17/19 12:47,"672 Washington St, Seattle, WA 98101" +307425,USB-C Charging Cable,3,11.95,12/17/19 20:43,"868 West St, Austin, TX 73301" +307426,Lightning Charging Cable,1,14.95,12/27/19 17:01,"630 Cherry St, Seattle, WA 98101" +307427,Wired Headphones,1,11.99,01/01/20 01:30,"28 Forest St, San Francisco, CA 94016" +307428,Lightning Charging Cable,2,14.95,12/03/19 18:05,"629 Meadow St, San Francisco, CA 94016" +307429,Wired Headphones,1,11.99,12/06/19 22:17,"956 2nd St, Austin, TX 73301" +307430,Wired Headphones,1,11.99,12/15/19 20:06,"311 Elm St, New York City, NY 10001" +307431,20in Monitor,1,109.99,12/16/19 00:14,"597 Sunset St, New York City, NY 10001" +307432,Lightning Charging Cable,1,14.95,12/31/19 12:33,"242 12th St, Seattle, WA 98101" +307433,Apple Airpods Headphones,1,150,12/13/19 18:45,"827 Washington St, Los Angeles, CA 90001" +307434,Vareebadd Phone,1,400,12/16/19 11:41,"17 12th St, Seattle, WA 98101" +307434,Wired Headphones,1,11.99,12/16/19 11:41,"17 12th St, Seattle, WA 98101" +307435,Apple Airpods Headphones,1,150,12/21/19 22:20,"219 Cedar St, Boston, MA 02215" +307436,Wired Headphones,1,11.99,12/07/19 13:09,"322 North St, New York City, NY 10001" +307437,USB-C Charging Cable,1,11.95,12/05/19 08:43,"380 Walnut St, Seattle, WA 98101" +307438,Google Phone,1,600,12/11/19 15:41,"620 7th St, San Francisco, CA 94016" +307439,AA Batteries (4-pack),1,3.84,12/11/19 14:32,"69 Forest St, Los Angeles, CA 90001" +307440,Bose SoundSport Headphones,1,99.99,12/08/19 22:47,"355 Hickory St, Los Angeles, CA 90001" +307441,USB-C Charging Cable,1,11.95,12/26/19 14:58,"763 Dogwood St, Seattle, WA 98101" +307442,USB-C Charging Cable,1,11.95,12/16/19 10:14,"384 Chestnut St, Atlanta, GA 30301" +307443,AAA Batteries (4-pack),2,2.99,12/10/19 01:06,"915 Forest St, Seattle, WA 98101" +307444,AA Batteries (4-pack),1,3.84,12/13/19 19:01,"99 8th St, San Francisco, CA 94016" +307445,Lightning Charging Cable,2,14.95,12/09/19 21:19,"266 Ridge St, San Francisco, CA 94016" +307446,Bose SoundSport Headphones,1,99.99,12/21/19 12:50,"102 River St, Seattle, WA 98101" +307447,Wired Headphones,1,11.99,12/26/19 18:57,"3 West St, Austin, TX 73301" +307448,AA Batteries (4-pack),1,3.84,12/14/19 08:23,"128 Hill St, New York City, NY 10001" +307449,Bose SoundSport Headphones,1,99.99,12/19/19 12:15,"110 Lincoln St, Boston, MA 02215" +307450,34in Ultrawide Monitor,1,379.99,12/01/19 17:01,"667 Adams St, Dallas, TX 75001" +307451,34in Ultrawide Monitor,1,379.99,12/03/19 10:57,"456 Lakeview St, Seattle, WA 98101" +307452,AAA Batteries (4-pack),1,2.99,12/26/19 16:49,"640 Hill St, Dallas, TX 75001" +307453,USB-C Charging Cable,3,11.95,12/27/19 12:27,"912 2nd St, New York City, NY 10001" +307454,Lightning Charging Cable,1,14.95,12/07/19 18:59,"123 11th St, Portland, OR 97035" +307455,LG Washing Machine,1,600.0,12/28/19 09:33,"698 Elm St, Los Angeles, CA 90001" +307456,AA Batteries (4-pack),1,3.84,12/16/19 23:53,"32 Center St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +307457,Wired Headphones,1,11.99,12/04/19 18:36,"29 Willow St, Seattle, WA 98101" +307458,AAA Batteries (4-pack),1,2.99,12/28/19 06:44,"561 Lakeview St, Los Angeles, CA 90001" +307459,Wired Headphones,1,11.99,12/26/19 20:23,"239 2nd St, Seattle, WA 98101" +307460,34in Ultrawide Monitor,1,379.99,12/21/19 09:52,"458 Cherry St, Atlanta, GA 30301" +307461,Bose SoundSport Headphones,1,99.99,12/30/19 22:37,"734 Meadow St, Los Angeles, CA 90001" +307462,ThinkPad Laptop,1,999.99,12/20/19 16:02,"709 Jefferson St, Austin, TX 73301" +307463,Apple Airpods Headphones,1,150,12/09/19 21:52,"223 West St, Portland, OR 97035" +307464,Wired Headphones,1,11.99,12/17/19 15:05,"350 14th St, Los Angeles, CA 90001" +307465,Wired Headphones,1,11.99,12/13/19 23:06,"43 Hickory St, New York City, NY 10001" +307466,USB-C Charging Cable,1,11.95,12/17/19 22:11,"562 Highland St, Seattle, WA 98101" +307467,Lightning Charging Cable,1,14.95,12/12/19 20:44,"39 Jackson St, Seattle, WA 98101" +307468,USB-C Charging Cable,1,11.95,12/01/19 21:56,"17 Cherry St, Los Angeles, CA 90001" +307469,AAA Batteries (4-pack),1,2.99,12/31/19 12:51,"566 South St, Austin, TX 73301" +307470,Wired Headphones,1,11.99,12/04/19 08:50,"660 Highland St, Los Angeles, CA 90001" +307471,Google Phone,1,600,12/04/19 07:46,"278 Spruce St, Los Angeles, CA 90001" +307472,AA Batteries (4-pack),1,3.84,12/03/19 19:23,"872 Forest St, Seattle, WA 98101" +307473,USB-C Charging Cable,1,11.95,12/13/19 20:41,"264 11th St, San Francisco, CA 94016" +307474,Lightning Charging Cable,1,14.95,12/24/19 13:45,"529 Pine St, Seattle, WA 98101" +307475,AA Batteries (4-pack),1,3.84,12/31/19 11:05,"963 14th St, Portland, OR 97035" +307476,27in 4K Gaming Monitor,1,389.99,12/07/19 18:05,"509 Madison St, New York City, NY 10001" +307477,ThinkPad Laptop,1,999.99,12/17/19 18:08,"58 Washington St, New York City, NY 10001" +307478,20in Monitor,1,109.99,12/06/19 14:55,"329 Wilson St, New York City, NY 10001" +307479,Lightning Charging Cable,1,14.95,12/18/19 14:36,"663 Center St, San Francisco, CA 94016" +307480,AAA Batteries (4-pack),1,2.99,12/03/19 13:45,"834 Willow St, New York City, NY 10001" +307481,Bose SoundSport Headphones,1,99.99,12/23/19 11:56,"72 Cherry St, Portland, OR 97035" +307482,Wired Headphones,1,11.99,12/03/19 16:57,"285 11th St, Dallas, TX 75001" +307483,Bose SoundSport Headphones,1,99.99,12/26/19 14:21,"616 14th St, Los Angeles, CA 90001" +307484,27in 4K Gaming Monitor,1,389.99,12/12/19 08:31,"990 Lakeview St, Austin, TX 73301" +307485,Bose SoundSport Headphones,1,99.99,12/28/19 00:47,"541 Forest St, San Francisco, CA 94016" +307486,AAA Batteries (4-pack),1,2.99,12/21/19 19:34,"797 2nd St, Boston, MA 02215" +307487,Bose SoundSport Headphones,1,99.99,12/25/19 20:04,"82 Hickory St, San Francisco, CA 94016" +307488,34in Ultrawide Monitor,1,379.99,12/26/19 00:00,"973 Lake St, Boston, MA 02215" +307489,AA Batteries (4-pack),1,3.84,12/02/19 15:50,"981 Cedar St, Austin, TX 73301" +307490,AA Batteries (4-pack),2,3.84,12/17/19 15:49,"767 Highland St, San Francisco, CA 94016" +307491,Lightning Charging Cable,1,14.95,12/12/19 20:32,"634 Dogwood St, New York City, NY 10001" +307492,20in Monitor,1,109.99,12/13/19 18:53,"463 Lincoln St, Los Angeles, CA 90001" +307493,Google Phone,1,600,12/16/19 04:06,"107 Pine St, Boston, MA 02215" +307494,Lightning Charging Cable,1,14.95,12/26/19 13:22,"862 South St, Atlanta, GA 30301" +307495,AA Batteries (4-pack),2,3.84,12/14/19 04:47,"36 13th St, Dallas, TX 75001" +307496,ThinkPad Laptop,1,999.99,12/26/19 11:39,"565 Cedar St, Seattle, WA 98101" +307497,Macbook Pro Laptop,1,1700,12/20/19 14:32,"76 Madison St, New York City, NY 10001" +307498,Lightning Charging Cable,1,14.95,12/17/19 15:18,"38 12th St, Atlanta, GA 30301" +307499,Macbook Pro Laptop,1,1700,12/22/19 11:18,"710 Park St, San Francisco, CA 94016" +307500,Flatscreen TV,1,300,12/16/19 13:08,"396 6th St, Los Angeles, CA 90001" +307501,Lightning Charging Cable,1,14.95,12/09/19 22:41,"88 7th St, Boston, MA 02215" +307502,AAA Batteries (4-pack),1,2.99,12/22/19 22:01,"853 12th St, Seattle, WA 98101" +307503,Lightning Charging Cable,1,14.95,12/01/19 20:12,"55 14th St, Boston, MA 02215" +307504,27in 4K Gaming Monitor,1,389.99,12/27/19 07:26,"201 Walnut St, New York City, NY 10001" +307505,27in FHD Monitor,1,149.99,12/29/19 23:30,"88 Washington St, San Francisco, CA 94016" +307506,AA Batteries (4-pack),3,3.84,12/22/19 09:09,"410 Park St, Los Angeles, CA 90001" +307507,AA Batteries (4-pack),1,3.84,12/26/19 11:17,"929 Lincoln St, Seattle, WA 98101" +307508,AAA Batteries (4-pack),2,2.99,12/24/19 11:28,"845 Lakeview St, Austin, TX 73301" +307509,27in FHD Monitor,1,149.99,12/21/19 17:23,"257 Willow St, Boston, MA 02215" +307510,Bose SoundSport Headphones,1,99.99,12/14/19 15:14,"774 Lake St, San Francisco, CA 94016" +307511,USB-C Charging Cable,1,11.95,12/29/19 21:51,"225 Lincoln St, San Francisco, CA 94016" +307512,27in 4K Gaming Monitor,1,389.99,12/14/19 08:07,"253 Maple St, Los Angeles, CA 90001" +307513,Lightning Charging Cable,2,14.95,12/09/19 19:45,"926 9th St, Portland, OR 97035" +307514,USB-C Charging Cable,1,11.95,12/29/19 15:23,"661 Ridge St, San Francisco, CA 94016" +307515,AAA Batteries (4-pack),1,2.99,12/18/19 23:39,"755 Forest St, San Francisco, CA 94016" +307516,AA Batteries (4-pack),1,3.84,12/30/19 22:54,"258 Highland St, Austin, TX 73301" +307517,Bose SoundSport Headphones,1,99.99,12/02/19 20:22,"534 Jefferson St, San Francisco, CA 94016" +307518,Lightning Charging Cable,1,14.95,12/11/19 11:42,"300 Park St, Atlanta, GA 30301" +307519,Wired Headphones,1,11.99,12/13/19 20:44,"403 12th St, New York City, NY 10001" +307520,USB-C Charging Cable,1,11.95,12/23/19 14:15,"973 13th St, San Francisco, CA 94016" +307521,LG Dryer,1,600.0,12/14/19 11:50,"368 6th St, Boston, MA 02215" +307522,iPhone,1,700,12/26/19 18:01,"691 7th St, Boston, MA 02215" +307523,Bose SoundSport Headphones,1,99.99,12/17/19 06:46,"651 Center St, Portland, ME 04101" +307524,Lightning Charging Cable,2,14.95,12/09/19 21:41,"673 13th St, Seattle, WA 98101" +307525,Lightning Charging Cable,1,14.95,12/31/19 18:17,"583 6th St, Los Angeles, CA 90001" +307526,AA Batteries (4-pack),1,3.84,12/10/19 15:08,"86 Maple St, Dallas, TX 75001" +307527,USB-C Charging Cable,1,11.95,12/20/19 21:14,"770 Park St, New York City, NY 10001" +307528,Bose SoundSport Headphones,1,99.99,12/19/19 13:27,"301 Willow St, New York City, NY 10001" +307529,Bose SoundSport Headphones,1,99.99,12/07/19 15:05,"893 Walnut St, Portland, ME 04101" +307530,USB-C Charging Cable,1,11.95,12/23/19 07:25,"866 Jackson St, New York City, NY 10001" +307531,Apple Airpods Headphones,1,150,12/22/19 18:04,"354 North St, Los Angeles, CA 90001" +307532,AA Batteries (4-pack),1,3.84,12/17/19 15:36,"862 Park St, New York City, NY 10001" +307533,27in FHD Monitor,1,149.99,12/26/19 02:07,"636 Lake St, Austin, TX 73301" +307534,Bose SoundSport Headphones,1,99.99,12/25/19 17:39,"217 West St, New York City, NY 10001" +307535,AAA Batteries (4-pack),1,2.99,12/07/19 11:53,"605 Spruce St, New York City, NY 10001" +307536,Apple Airpods Headphones,1,150,12/01/19 14:26,"169 Washington St, Los Angeles, CA 90001" +307537,Apple Airpods Headphones,1,150,12/03/19 20:51,"339 Hickory St, New York City, NY 10001" +307538,Apple Airpods Headphones,1,150,12/28/19 09:14,"776 Church St, Portland, OR 97035" +307539,AAA Batteries (4-pack),5,2.99,12/19/19 10:21,"719 Maple St, Seattle, WA 98101" +307540,USB-C Charging Cable,1,11.95,12/21/19 19:54,"961 South St, San Francisco, CA 94016" +307541,USB-C Charging Cable,1,11.95,12/27/19 10:11,"489 Lake St, Los Angeles, CA 90001" +307542,LG Dryer,1,600.0,12/20/19 15:00,"863 Lake St, San Francisco, CA 94016" +307543,AA Batteries (4-pack),5,3.84,12/08/19 08:46,"822 8th St, New York City, NY 10001" +307544,USB-C Charging Cable,1,11.95,12/29/19 23:47,"530 Washington St, New York City, NY 10001" +307545,Lightning Charging Cable,1,14.95,12/18/19 21:08,"616 North St, Boston, MA 02215" +307546,USB-C Charging Cable,1,11.95,12/23/19 14:16,"397 Cherry St, San Francisco, CA 94016" +307547,Bose SoundSport Headphones,1,99.99,12/13/19 23:29,"403 11th St, Los Angeles, CA 90001" +307547,20in Monitor,1,109.99,12/13/19 23:29,"403 11th St, Los Angeles, CA 90001" +307548,AAA Batteries (4-pack),1,2.99,12/02/19 00:16,"596 Spruce St, Atlanta, GA 30301" +307549,20in Monitor,1,109.99,12/12/19 15:43,"157 4th St, Boston, MA 02215" +307550,34in Ultrawide Monitor,1,379.99,12/18/19 09:03,"893 Cherry St, Boston, MA 02215" +307551,27in 4K Gaming Monitor,1,389.99,12/08/19 07:48,"46 Park St, San Francisco, CA 94016" +307552,USB-C Charging Cable,1,11.95,12/16/19 09:51,"570 River St, Dallas, TX 75001" +307553,AAA Batteries (4-pack),1,2.99,12/02/19 10:50,"927 Lincoln St, Boston, MA 02215" +307554,34in Ultrawide Monitor,1,379.99,12/22/19 15:26,"108 Lake St, Seattle, WA 98101" +307555,Wired Headphones,1,11.99,12/25/19 16:23,"499 Main St, Portland, OR 97035" +307556,AAA Batteries (4-pack),1,2.99,12/11/19 00:01,"541 9th St, San Francisco, CA 94016" +307556,27in FHD Monitor,1,149.99,12/11/19 00:01,"541 9th St, San Francisco, CA 94016" +307557,Apple Airpods Headphones,1,150,12/16/19 20:11,"717 Forest St, San Francisco, CA 94016" +307558,Wired Headphones,2,11.99,12/20/19 18:08,"816 Ridge St, Boston, MA 02215" +307559,34in Ultrawide Monitor,1,379.99,12/14/19 16:31,"23 Ridge St, New York City, NY 10001" +307560,27in FHD Monitor,1,149.99,12/26/19 19:21,"138 11th St, Austin, TX 73301" +307561,USB-C Charging Cable,1,11.95,12/28/19 23:45,"240 Dogwood St, Portland, ME 04101" +307562,Wired Headphones,1,11.99,12/13/19 15:32,"502 Dogwood St, New York City, NY 10001" +307563,Lightning Charging Cable,1,14.95,12/18/19 09:41,"283 Lake St, Los Angeles, CA 90001" +307564,AAA Batteries (4-pack),1,2.99,12/27/19 11:39,"968 Spruce St, Boston, MA 02215" +307565,Wired Headphones,1,11.99,12/12/19 19:01,"227 South St, New York City, NY 10001" +307566,AA Batteries (4-pack),1,3.84,12/21/19 07:28,"462 Meadow St, Seattle, WA 98101" +307567,ThinkPad Laptop,1,999.99,12/23/19 13:16,"424 Church St, San Francisco, CA 94016" +307568,27in 4K Gaming Monitor,1,389.99,12/31/19 11:45,"754 Lakeview St, Los Angeles, CA 90001" +307569,Wired Headphones,1,11.99,12/29/19 11:01,"429 Lake St, San Francisco, CA 94016" +307570,Apple Airpods Headphones,1,150,12/26/19 12:04,"938 1st St, New York City, NY 10001" +307571,iPhone,1,700,12/23/19 20:32,"791 West St, Boston, MA 02215" +307572,AA Batteries (4-pack),1,3.84,12/20/19 18:58,"992 Sunset St, New York City, NY 10001" +307573,20in Monitor,1,109.99,12/09/19 20:01,"535 Dogwood St, Seattle, WA 98101" +307574,Apple Airpods Headphones,1,150,12/27/19 13:35,"843 1st St, Boston, MA 02215" +307575,AAA Batteries (4-pack),1,2.99,12/03/19 18:56,"533 12th St, Los Angeles, CA 90001" +307576,Wired Headphones,1,11.99,12/08/19 15:06,"736 Cherry St, San Francisco, CA 94016" +307577,AAA Batteries (4-pack),3,2.99,12/19/19 08:56,"802 Spruce St, San Francisco, CA 94016" +307578,AAA Batteries (4-pack),1,2.99,12/10/19 12:38,"644 Cedar St, Los Angeles, CA 90001" +307579,34in Ultrawide Monitor,1,379.99,12/23/19 12:19,"424 Church St, Los Angeles, CA 90001" +307580,Apple Airpods Headphones,1,150,12/24/19 16:35,"974 Main St, San Francisco, CA 94016" +307581,Lightning Charging Cable,1,14.95,12/08/19 17:30,"949 12th St, Boston, MA 02215" +307582,20in Monitor,1,109.99,12/16/19 18:58,"347 Lake St, Los Angeles, CA 90001" +307583,Flatscreen TV,1,300,12/17/19 06:21,"562 7th St, Atlanta, GA 30301" +307584,27in 4K Gaming Monitor,1,389.99,12/10/19 07:59,"742 Madison St, Boston, MA 02215" +307585,27in 4K Gaming Monitor,1,389.99,12/06/19 22:51,"332 7th St, Boston, MA 02215" +307586,Lightning Charging Cable,1,14.95,12/25/19 20:40,"856 Cherry St, San Francisco, CA 94016" +307587,Bose SoundSport Headphones,1,99.99,12/27/19 17:10,"824 Forest St, San Francisco, CA 94016" +307588,USB-C Charging Cable,1,11.95,12/29/19 15:40,"869 Spruce St, New York City, NY 10001" +307589,Apple Airpods Headphones,1,150,12/21/19 18:46,"778 Meadow St, New York City, NY 10001" +307590,AAA Batteries (4-pack),1,2.99,12/17/19 22:24,"465 7th St, Los Angeles, CA 90001" +307591,USB-C Charging Cable,1,11.95,12/12/19 16:50,"986 Hickory St, Boston, MA 02215" +307592,AA Batteries (4-pack),1,3.84,12/25/19 13:22,"169 Sunset St, Atlanta, GA 30301" +307593,USB-C Charging Cable,1,11.95,12/11/19 18:44,"409 Chestnut St, San Francisco, CA 94016" +307594,Bose SoundSport Headphones,1,99.99,12/30/19 21:19,"902 North St, Boston, MA 02215" +307595,Wired Headphones,1,11.99,12/25/19 18:50,"831 Hickory St, San Francisco, CA 94016" +307596,Wired Headphones,1,11.99,12/04/19 15:42,"265 Willow St, San Francisco, CA 94016" +307597,Macbook Pro Laptop,1,1700,12/20/19 15:50,"920 River St, Los Angeles, CA 90001" +307598,Wired Headphones,1,11.99,12/15/19 16:39,"711 Washington St, San Francisco, CA 94016" +307599,Bose SoundSport Headphones,1,99.99,12/30/19 20:27,"586 9th St, Atlanta, GA 30301" +307600,Macbook Pro Laptop,1,1700,12/15/19 18:54,"747 Meadow St, New York City, NY 10001" +307601,AA Batteries (4-pack),1,3.84,12/17/19 16:27,"148 9th St, San Francisco, CA 94016" +307602,AA Batteries (4-pack),3,3.84,12/18/19 14:08,"684 Meadow St, Atlanta, GA 30301" +307603,Lightning Charging Cable,1,14.95,12/15/19 14:48,"532 Walnut St, Boston, MA 02215" +307604,Apple Airpods Headphones,1,150,12/16/19 15:11,"693 Park St, Boston, MA 02215" +307605,Lightning Charging Cable,1,14.95,12/31/19 20:52,"63 Church St, San Francisco, CA 94016" +307606,Wired Headphones,1,11.99,12/06/19 12:18,"141 Lake St, Portland, ME 04101" +307607,AA Batteries (4-pack),1,3.84,12/01/19 23:24,"313 Willow St, Atlanta, GA 30301" +307608,Google Phone,1,600,12/22/19 18:46,"997 2nd St, Los Angeles, CA 90001" +307608,USB-C Charging Cable,1,11.95,12/22/19 18:46,"997 2nd St, Los Angeles, CA 90001" +307609,USB-C Charging Cable,1,11.95,12/22/19 12:34,"850 Jefferson St, Los Angeles, CA 90001" +307610,Apple Airpods Headphones,1,150,12/04/19 12:25,"695 North St, Los Angeles, CA 90001" +307611,Apple Airpods Headphones,1,150,12/17/19 18:19,"280 Walnut St, San Francisco, CA 94016" +307612,ThinkPad Laptop,1,999.99,12/24/19 19:57,"741 11th St, Portland, OR 97035" +307613,iPhone,1,700,12/10/19 17:17,"979 1st St, Los Angeles, CA 90001" +307614,Bose SoundSport Headphones,1,99.99,12/17/19 08:44,"722 Sunset St, Atlanta, GA 30301" +307615,Lightning Charging Cable,1,14.95,12/29/19 11:48,"146 North St, San Francisco, CA 94016" +307616,USB-C Charging Cable,1,11.95,12/01/19 16:51,"401 Jackson St, Boston, MA 02215" +307617,AA Batteries (4-pack),1,3.84,12/05/19 21:18,"433 2nd St, San Francisco, CA 94016" +307618,Bose SoundSport Headphones,1,99.99,12/08/19 14:38,"254 Lake St, Boston, MA 02215" +307619,Flatscreen TV,1,300,12/12/19 18:18,"265 Adams St, Austin, TX 73301" +307620,AA Batteries (4-pack),1,3.84,12/27/19 01:55,"102 Lakeview St, Los Angeles, CA 90001" +307621,Wired Headphones,1,11.99,12/17/19 10:52,"698 West St, Los Angeles, CA 90001" +307622,Macbook Pro Laptop,1,1700,12/01/19 14:14,"388 Pine St, Portland, OR 97035" +307623,AA Batteries (4-pack),1,3.84,12/04/19 21:00,"433 Elm St, Atlanta, GA 30301" +307624,USB-C Charging Cable,1,11.95,12/23/19 16:07,"466 Dogwood St, Los Angeles, CA 90001" +307625,USB-C Charging Cable,1,11.95,12/23/19 14:53,"919 Lakeview St, New York City, NY 10001" +307626,Lightning Charging Cable,1,14.95,12/03/19 17:01,"772 Sunset St, Seattle, WA 98101" +307627,34in Ultrawide Monitor,1,379.99,12/10/19 23:57,"460 Cedar St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +307628,USB-C Charging Cable,1,11.95,12/10/19 12:36,"880 River St, San Francisco, CA 94016" +307629,27in 4K Gaming Monitor,1,389.99,12/29/19 11:39,"682 4th St, San Francisco, CA 94016" +307630,Wired Headphones,1,11.99,12/26/19 12:14,"908 Forest St, Portland, OR 97035" +307631,34in Ultrawide Monitor,1,379.99,12/16/19 06:42,"3 Ridge St, San Francisco, CA 94016" +307632,Lightning Charging Cable,1,14.95,12/04/19 13:23,"43 Lincoln St, New York City, NY 10001" +307633,Lightning Charging Cable,1,14.95,12/16/19 20:47,"746 Jackson St, Boston, MA 02215" +307634,AA Batteries (4-pack),1,3.84,12/14/19 13:09,"906 7th St, New York City, NY 10001" +307635,AA Batteries (4-pack),1,3.84,12/12/19 16:37,"517 Adams St, San Francisco, CA 94016" +307636,27in 4K Gaming Monitor,1,389.99,12/28/19 18:41,"103 Washington St, Seattle, WA 98101" +307637,Lightning Charging Cable,1,14.95,12/06/19 13:28,"202 Washington St, Los Angeles, CA 90001" +307638,Lightning Charging Cable,1,14.95,12/13/19 13:16,"58 12th St, Los Angeles, CA 90001" +307639,iPhone,1,700,12/17/19 15:28,"593 Johnson St, New York City, NY 10001" +307640,ThinkPad Laptop,1,999.99,12/28/19 19:09,"104 Washington St, San Francisco, CA 94016" +307641,Macbook Pro Laptop,1,1700,12/26/19 16:12,"311 Lake St, Atlanta, GA 30301" +307642,USB-C Charging Cable,1,11.95,12/03/19 12:43,"41 13th St, Los Angeles, CA 90001" +307643,AAA Batteries (4-pack),1,2.99,12/15/19 18:37,"50 South St, Los Angeles, CA 90001" +307644,34in Ultrawide Monitor,1,379.99,12/04/19 17:07,"559 Pine St, Dallas, TX 75001" +307645,AA Batteries (4-pack),1,3.84,12/20/19 08:39,"98 4th St, San Francisco, CA 94016" +307646,AA Batteries (4-pack),1,3.84,12/26/19 12:29,"933 Adams St, Portland, OR 97035" +307647,27in FHD Monitor,1,149.99,12/26/19 17:34,"328 Lakeview St, Dallas, TX 75001" +307648,Lightning Charging Cable,1,14.95,12/23/19 16:45,"764 2nd St, San Francisco, CA 94016" +307649,Lightning Charging Cable,1,14.95,12/18/19 21:32,"496 13th St, San Francisco, CA 94016" +307650,AAA Batteries (4-pack),1,2.99,12/10/19 13:36,"261 Washington St, Los Angeles, CA 90001" +307651,AAA Batteries (4-pack),1,2.99,12/18/19 21:41,"687 Chestnut St, New York City, NY 10001" +307652,Lightning Charging Cable,1,14.95,12/19/19 12:05,"401 West St, Los Angeles, CA 90001" +307653,AA Batteries (4-pack),2,3.84,12/07/19 18:51,"582 12th St, San Francisco, CA 94016" +307654,USB-C Charging Cable,2,11.95,12/09/19 23:42,"806 Lakeview St, San Francisco, CA 94016" +307655,Bose SoundSport Headphones,1,99.99,12/07/19 16:12,"741 Adams St, Austin, TX 73301" +307656,Lightning Charging Cable,1,14.95,12/26/19 13:26,"684 Wilson St, Los Angeles, CA 90001" +307657,AAA Batteries (4-pack),1,2.99,12/11/19 21:20,"876 Cherry St, New York City, NY 10001" +307658,USB-C Charging Cable,1,11.95,12/02/19 13:18,"66 12th St, Portland, ME 04101" +307659,AA Batteries (4-pack),2,3.84,12/20/19 21:00,"69 Sunset St, Los Angeles, CA 90001" +307660,27in FHD Monitor,1,149.99,12/26/19 12:10,"848 9th St, Portland, OR 97035" +307661,USB-C Charging Cable,1,11.95,12/03/19 20:38,"318 Cedar St, Seattle, WA 98101" +307662,USB-C Charging Cable,1,11.95,12/09/19 12:59,"125 Adams St, Atlanta, GA 30301" +307663,Bose SoundSport Headphones,1,99.99,12/25/19 09:17,"268 Center St, Boston, MA 02215" +307664,AA Batteries (4-pack),1,3.84,12/16/19 18:30,"880 Cherry St, Los Angeles, CA 90001" +307665,Flatscreen TV,1,300,12/27/19 10:49,"298 Ridge St, Seattle, WA 98101" +307666,USB-C Charging Cable,1,11.95,12/08/19 18:45,"781 Jefferson St, Seattle, WA 98101" +307666,AA Batteries (4-pack),2,3.84,12/08/19 18:45,"781 Jefferson St, Seattle, WA 98101" +307667,USB-C Charging Cable,1,11.95,12/25/19 11:24,"572 Center St, Austin, TX 73301" +307668,20in Monitor,1,109.99,12/09/19 01:02,"27 South St, Atlanta, GA 30301" +307669,Lightning Charging Cable,1,14.95,12/06/19 19:22,"825 12th St, Los Angeles, CA 90001" +307670,Apple Airpods Headphones,1,150,12/25/19 23:27,"183 Center St, Boston, MA 02215" +307671,Apple Airpods Headphones,1,150,12/21/19 15:44,"867 Hill St, Dallas, TX 75001" +307672,iPhone,1,700,12/30/19 16:59,"698 5th St, San Francisco, CA 94016" +307673,ThinkPad Laptop,1,999.99,12/23/19 12:07,"658 Chestnut St, Dallas, TX 75001" +307674,AAA Batteries (4-pack),1,2.99,12/07/19 11:53,"788 Hickory St, Seattle, WA 98101" +307675,AA Batteries (4-pack),1,3.84,12/08/19 17:13,"187 Jackson St, Boston, MA 02215" +307676,Wired Headphones,1,11.99,12/19/19 19:45,"396 Main St, New York City, NY 10001" +307677,Apple Airpods Headphones,1,150,12/13/19 12:44,"540 Adams St, Dallas, TX 75001" +307678,AAA Batteries (4-pack),1,2.99,12/31/19 14:25,"911 Lincoln St, Los Angeles, CA 90001" +307679,USB-C Charging Cable,1,11.95,12/11/19 09:44,"558 14th St, Boston, MA 02215" +307680,USB-C Charging Cable,1,11.95,12/25/19 19:27,"665 Chestnut St, Los Angeles, CA 90001" +307681,USB-C Charging Cable,1,11.95,12/22/19 22:51,"811 Hickory St, Atlanta, GA 30301" +307682,Lightning Charging Cable,1,14.95,12/27/19 06:26,"754 Meadow St, San Francisco, CA 94016" +307683,AA Batteries (4-pack),3,3.84,12/31/19 08:48,"167 12th St, Seattle, WA 98101" +307684,AA Batteries (4-pack),1,3.84,12/04/19 12:51,"364 Center St, Boston, MA 02215" +307685,Lightning Charging Cable,1,14.95,12/15/19 13:36,"759 Main St, Dallas, TX 75001" +307686,Lightning Charging Cable,1,14.95,12/09/19 11:18,"230 Walnut St, San Francisco, CA 94016" +307687,27in 4K Gaming Monitor,1,389.99,12/04/19 11:26,"269 Maple St, Atlanta, GA 30301" +307688,Apple Airpods Headphones,1,150,12/24/19 10:34,"332 North St, Boston, MA 02215" +307689,Lightning Charging Cable,1,14.95,12/18/19 12:41,"145 Walnut St, Los Angeles, CA 90001" +307690,Lightning Charging Cable,1,14.95,12/28/19 10:37,"170 Meadow St, San Francisco, CA 94016" +307691,27in 4K Gaming Monitor,1,389.99,12/02/19 11:16,"28 Lincoln St, New York City, NY 10001" +307692,AA Batteries (4-pack),1,3.84,12/19/19 23:09,"884 Forest St, Seattle, WA 98101" +307693,ThinkPad Laptop,1,999.99,12/26/19 14:08,"12 Park St, New York City, NY 10001" +307694,Wired Headphones,2,11.99,12/18/19 11:54,"748 Lakeview St, Atlanta, GA 30301" +307695,AA Batteries (4-pack),1,3.84,12/25/19 12:58,"598 11th St, Boston, MA 02215" +307696,Wired Headphones,1,11.99,12/10/19 10:26,"431 Main St, Boston, MA 02215" +307697,Flatscreen TV,1,300,12/12/19 19:41,"501 6th St, San Francisco, CA 94016" +307698,Google Phone,1,600,12/31/19 08:33,"748 Walnut St, Boston, MA 02215" +307699,Lightning Charging Cable,1,14.95,12/18/19 10:14,"622 9th St, Los Angeles, CA 90001" +307700,USB-C Charging Cable,1,11.95,12/09/19 17:13,"996 Cherry St, Boston, MA 02215" +307701,27in 4K Gaming Monitor,1,389.99,12/11/19 18:59,"486 8th St, Austin, TX 73301" +307702,Lightning Charging Cable,1,14.95,12/16/19 20:10,"970 10th St, Los Angeles, CA 90001" +307703,USB-C Charging Cable,1,11.95,12/27/19 10:03,"436 Spruce St, San Francisco, CA 94016" +307704,Bose SoundSport Headphones,1,99.99,12/08/19 10:38,"293 13th St, New York City, NY 10001" +307705,USB-C Charging Cable,1,11.95,12/25/19 10:06,"67 Main St, Portland, OR 97035" +307706,Wired Headphones,1,11.99,12/28/19 22:15,"45 Jackson St, Austin, TX 73301" +307707,Apple Airpods Headphones,1,150,12/15/19 10:11,"212 Main St, Austin, TX 73301" +307708,AA Batteries (4-pack),1,3.84,12/20/19 13:17,"259 Chestnut St, Atlanta, GA 30301" +307709,Bose SoundSport Headphones,1,99.99,12/18/19 15:13,"504 Park St, Los Angeles, CA 90001" +307710,AA Batteries (4-pack),2,3.84,12/02/19 09:43,"299 Jefferson St, Seattle, WA 98101" +307711,20in Monitor,1,109.99,12/14/19 12:22,"211 Meadow St, San Francisco, CA 94016" +307712,27in 4K Gaming Monitor,1,389.99,12/17/19 11:29,"426 Sunset St, New York City, NY 10001" +307713,Bose SoundSport Headphones,1,99.99,12/20/19 14:47,"333 2nd St, Atlanta, GA 30301" +307714,27in 4K Gaming Monitor,1,389.99,12/15/19 14:15,"487 Jackson St, New York City, NY 10001" +307715,Apple Airpods Headphones,1,150,12/15/19 11:07,"908 2nd St, Seattle, WA 98101" +307716,Bose SoundSport Headphones,1,99.99,12/08/19 15:23,"954 Washington St, Austin, TX 73301" +307717,AAA Batteries (4-pack),2,2.99,12/09/19 16:19,"648 Washington St, New York City, NY 10001" +307718,USB-C Charging Cable,1,11.95,12/04/19 08:18,"171 Chestnut St, New York City, NY 10001" +307719,Wired Headphones,1,11.99,12/08/19 12:07,"671 13th St, Seattle, WA 98101" +307720,27in FHD Monitor,1,149.99,12/23/19 12:52,"294 River St, Los Angeles, CA 90001" +307721,Apple Airpods Headphones,1,150,12/09/19 18:57,"997 Lake St, Boston, MA 02215" +307722,Bose SoundSport Headphones,1,99.99,12/08/19 11:24,"991 Hill St, Los Angeles, CA 90001" +307723,Wired Headphones,1,11.99,12/16/19 00:14,"324 9th St, Boston, MA 02215" +307724,USB-C Charging Cable,1,11.95,12/14/19 15:18,"533 Maple St, Atlanta, GA 30301" +307725,USB-C Charging Cable,1,11.95,12/06/19 16:15,"344 4th St, Boston, MA 02215" +307726,AA Batteries (4-pack),1,3.84,12/23/19 15:01,"193 Pine St, Seattle, WA 98101" +307727,Bose SoundSport Headphones,1,99.99,12/29/19 14:07,"228 4th St, Austin, TX 73301" +307728,Flatscreen TV,1,300,12/03/19 21:37,"586 2nd St, San Francisco, CA 94016" +307729,AAA Batteries (4-pack),1,2.99,12/15/19 06:41,"277 Walnut St, San Francisco, CA 94016" +307730,Lightning Charging Cable,1,14.95,12/06/19 22:24,"373 Park St, Atlanta, GA 30301" +307731,USB-C Charging Cable,3,11.95,12/13/19 02:49,"356 West St, Dallas, TX 75001" +307732,AAA Batteries (4-pack),2,2.99,12/11/19 20:36,"295 Forest St, San Francisco, CA 94016" +307733,Macbook Pro Laptop,1,1700,12/02/19 14:52,"713 Jefferson St, San Francisco, CA 94016" +307734,AAA Batteries (4-pack),2,2.99,12/15/19 08:37,"10 Meadow St, Austin, TX 73301" +307735,Wired Headphones,1,11.99,12/30/19 14:59,"246 12th St, Atlanta, GA 30301" +307736,Lightning Charging Cable,1,14.95,12/02/19 12:01,"86 Willow St, Boston, MA 02215" +307737,Lightning Charging Cable,1,14.95,12/27/19 11:48,"274 Dogwood St, San Francisco, CA 94016" +307738,Wired Headphones,2,11.99,12/22/19 22:49,"892 Center St, New York City, NY 10001" +307739,USB-C Charging Cable,1,11.95,12/23/19 16:47,"72 5th St, San Francisco, CA 94016" +307740,Apple Airpods Headphones,1,150,12/04/19 13:03,"627 1st St, Boston, MA 02215" +307741,Bose SoundSport Headphones,1,99.99,12/09/19 15:13,"16 4th St, San Francisco, CA 94016" +307742,AA Batteries (4-pack),2,3.84,12/28/19 08:26,"632 West St, San Francisco, CA 94016" +307743,AAA Batteries (4-pack),1,2.99,12/22/19 14:25,"635 Church St, Austin, TX 73301" +307744,AAA Batteries (4-pack),1,2.99,12/14/19 22:07,"568 14th St, New York City, NY 10001" +307745,USB-C Charging Cable,1,11.95,12/12/19 23:40,"99 8th St, Boston, MA 02215" +307746,Wired Headphones,1,11.99,12/20/19 18:06,"758 Highland St, Dallas, TX 75001" +307747,Wired Headphones,1,11.99,12/17/19 17:45,"334 Main St, Austin, TX 73301" +307748,Wired Headphones,1,11.99,12/12/19 21:48,"71 Spruce St, Seattle, WA 98101" +307749,Bose SoundSport Headphones,1,99.99,12/30/19 10:12,"521 10th St, Seattle, WA 98101" +307750,Bose SoundSport Headphones,1,99.99,12/21/19 19:03,"411 7th St, Dallas, TX 75001" +307751,Apple Airpods Headphones,1,150,12/01/19 17:14,"125 Hill St, Los Angeles, CA 90001" +307752,AA Batteries (4-pack),1,3.84,12/24/19 08:55,"364 10th St, New York City, NY 10001" +307753,AA Batteries (4-pack),1,3.84,12/11/19 13:39,"329 12th St, Los Angeles, CA 90001" +307754,AA Batteries (4-pack),1,3.84,12/13/19 14:02,"126 8th St, New York City, NY 10001" +307755,USB-C Charging Cable,1,11.95,12/04/19 08:41,"704 9th St, Boston, MA 02215" +307756,Macbook Pro Laptop,1,1700,12/20/19 11:50,"651 Dogwood St, Boston, MA 02215" +307757,AA Batteries (4-pack),1,3.84,12/20/19 23:52,"747 Wilson St, Boston, MA 02215" +307758,AAA Batteries (4-pack),1,2.99,12/10/19 11:04,"606 Washington St, San Francisco, CA 94016" +307759,Wired Headphones,1,11.99,12/27/19 18:30,"914 10th St, San Francisco, CA 94016" +307760,Wired Headphones,1,11.99,12/10/19 20:05,"934 River St, New York City, NY 10001" +307761,Lightning Charging Cable,1,14.95,12/19/19 18:39,"639 Adams St, Boston, MA 02215" +307762,AA Batteries (4-pack),1,3.84,12/11/19 15:21,"562 Sunset St, San Francisco, CA 94016" +307763,Vareebadd Phone,1,400,12/01/19 16:44,"981 Main St, Seattle, WA 98101" +307764,USB-C Charging Cable,1,11.95,12/14/19 22:46,"889 1st St, New York City, NY 10001" +307765,Apple Airpods Headphones,1,150,12/05/19 11:02,"968 Meadow St, Atlanta, GA 30301" +307766,AAA Batteries (4-pack),1,2.99,12/23/19 13:51,"553 Lakeview St, Seattle, WA 98101" +307767,Lightning Charging Cable,1,14.95,12/24/19 19:00,"648 Cedar St, Dallas, TX 75001" +307768,iPhone,1,700,12/22/19 17:39,"55 North St, Atlanta, GA 30301" +307769,Apple Airpods Headphones,1,150,12/30/19 16:11,"275 Jackson St, Los Angeles, CA 90001" +307770,Lightning Charging Cable,1,14.95,12/06/19 23:25,"32 10th St, San Francisco, CA 94016" +307771,Wired Headphones,1,11.99,12/29/19 10:08,"919 Cedar St, San Francisco, CA 94016" +307772,USB-C Charging Cable,1,11.95,12/18/19 15:11,"868 Pine St, New York City, NY 10001" +307773,AAA Batteries (4-pack),2,2.99,12/05/19 18:19,"270 Forest St, Atlanta, GA 30301" +307774,AA Batteries (4-pack),2,3.84,12/18/19 16:35,"794 Jackson St, New York City, NY 10001" +307775,20in Monitor,1,109.99,12/06/19 00:13,"991 10th St, Los Angeles, CA 90001" +307776,AAA Batteries (4-pack),1,2.99,12/29/19 10:16,"485 Johnson St, Boston, MA 02215" +307777,USB-C Charging Cable,1,11.95,12/24/19 19:25,"720 Lincoln St, Seattle, WA 98101" +307778,Wired Headphones,1,11.99,12/12/19 17:08,"87 1st St, New York City, NY 10001" +307779,iPhone,1,700,12/12/19 14:07,"573 Madison St, New York City, NY 10001" +307779,Lightning Charging Cable,1,14.95,12/12/19 14:07,"573 Madison St, New York City, NY 10001" +307780,AAA Batteries (4-pack),1,2.99,12/19/19 18:51,"180 Spruce St, Atlanta, GA 30301" +307781,AAA Batteries (4-pack),1,2.99,12/25/19 18:37,"801 Cherry St, New York City, NY 10001" +307782,AA Batteries (4-pack),1,3.84,12/23/19 08:40,"181 Chestnut St, San Francisco, CA 94016" +307783,AA Batteries (4-pack),1,3.84,12/31/19 15:05,"91 Main St, Austin, TX 73301" +307784,34in Ultrawide Monitor,1,379.99,12/08/19 12:34,"62 4th St, New York City, NY 10001" +307785,Wired Headphones,1,11.99,12/18/19 19:27,"100 4th St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +307786,Lightning Charging Cable,1,14.95,12/09/19 12:21,"149 Main St, Atlanta, GA 30301" +307787,AA Batteries (4-pack),3,3.84,12/18/19 00:04,"726 Madison St, San Francisco, CA 94016" +307788,AA Batteries (4-pack),1,3.84,12/18/19 17:17,"486 Dogwood St, Seattle, WA 98101" +307789,Wired Headphones,1,11.99,12/09/19 22:01,"226 Highland St, New York City, NY 10001" +307790,Wired Headphones,1,11.99,12/04/19 13:54,"47 Park St, New York City, NY 10001" +307791,Lightning Charging Cable,1,14.95,12/02/19 09:20,"849 Church St, Portland, OR 97035" +307792,AA Batteries (4-pack),1,3.84,12/30/19 17:11,"457 Hill St, San Francisco, CA 94016" +307793,USB-C Charging Cable,1,11.95,12/15/19 20:27,"57 North St, Boston, MA 02215" +307794,Bose SoundSport Headphones,1,99.99,12/24/19 23:56,"247 Lakeview St, Los Angeles, CA 90001" +307795,27in FHD Monitor,1,149.99,12/08/19 10:34,"661 Madison St, Atlanta, GA 30301" +307796,Apple Airpods Headphones,1,150,12/26/19 22:29,"855 8th St, San Francisco, CA 94016" +307797,Apple Airpods Headphones,1,150,12/31/19 15:38,"835 Lakeview St, Atlanta, GA 30301" +307798,27in 4K Gaming Monitor,1,389.99,12/10/19 12:10,"899 Church St, Boston, MA 02215" +307799,AA Batteries (4-pack),2,3.84,12/01/19 23:42,"770 13th St, Los Angeles, CA 90001" +307800,34in Ultrawide Monitor,2,379.99,12/31/19 01:42,"126 2nd St, Los Angeles, CA 90001" +307801,Bose SoundSport Headphones,1,99.99,12/29/19 12:53,"836 Sunset St, Boston, MA 02215" +307802,Lightning Charging Cable,1,14.95,12/16/19 14:51,"744 5th St, Dallas, TX 75001" +307803,Lightning Charging Cable,1,14.95,12/15/19 22:41,"977 Jackson St, New York City, NY 10001" +307804,AAA Batteries (4-pack),3,2.99,12/06/19 21:14,"109 2nd St, Atlanta, GA 30301" +307805,27in FHD Monitor,1,149.99,12/23/19 08:08,"118 Forest St, San Francisco, CA 94016" +307806,27in FHD Monitor,1,149.99,12/17/19 17:06,"690 Cherry St, San Francisco, CA 94016" +307807,AAA Batteries (4-pack),6,2.99,12/07/19 08:26,"632 6th St, Los Angeles, CA 90001" +307808,34in Ultrawide Monitor,1,379.99,12/24/19 21:18,"342 Walnut St, Dallas, TX 75001" +307809,AA Batteries (4-pack),1,3.84,12/13/19 14:16,"538 14th St, San Francisco, CA 94016" +307810,AA Batteries (4-pack),1,3.84,12/03/19 09:45,"315 Lakeview St, Los Angeles, CA 90001" +307811,Bose SoundSport Headphones,1,99.99,12/23/19 15:25,"483 Cedar St, Portland, OR 97035" +307812,AAA Batteries (4-pack),1,2.99,12/30/19 14:05,"899 Main St, Dallas, TX 75001" +307813,ThinkPad Laptop,1,999.99,12/18/19 18:06,"740 Jefferson St, Los Angeles, CA 90001" +307814,Google Phone,1,600,12/23/19 21:01,"895 14th St, San Francisco, CA 94016" +307815,Lightning Charging Cable,2,14.95,12/03/19 19:21,"214 Main St, Dallas, TX 75001" +307816,USB-C Charging Cable,1,11.95,12/29/19 15:36,"9 8th St, San Francisco, CA 94016" +307817,Apple Airpods Headphones,1,150,12/11/19 15:58,"996 Adams St, Portland, ME 04101" +307818,27in FHD Monitor,1,149.99,12/12/19 10:02,"512 8th St, Dallas, TX 75001" +307819,AAA Batteries (4-pack),2,2.99,12/28/19 07:53,"240 Washington St, Dallas, TX 75001" +307820,Lightning Charging Cable,1,14.95,12/01/19 06:46,"736 Sunset St, Boston, MA 02215" +307821,iPhone,1,700,12/18/19 18:54,"984 4th St, New York City, NY 10001" +307822,Wired Headphones,1,11.99,12/12/19 17:26,"146 4th St, San Francisco, CA 94016" +307823,Macbook Pro Laptop,1,1700,12/26/19 16:28,"47 South St, Los Angeles, CA 90001" +307824,Lightning Charging Cable,1,14.95,12/23/19 22:23,"160 Elm St, Seattle, WA 98101" +307825,AA Batteries (4-pack),1,3.84,12/03/19 15:03,"884 Lakeview St, San Francisco, CA 94016" +307826,34in Ultrawide Monitor,1,379.99,12/07/19 21:06,"55 6th St, San Francisco, CA 94016" +307827,Vareebadd Phone,1,400,12/13/19 17:40,"503 Lincoln St, Los Angeles, CA 90001" +307828,Bose SoundSport Headphones,1,99.99,12/29/19 18:33,"590 Dogwood St, Austin, TX 73301" +307829,AAA Batteries (4-pack),2,2.99,12/18/19 20:11,"734 13th St, San Francisco, CA 94016" +307830,Lightning Charging Cable,1,14.95,12/08/19 16:45,"767 Cherry St, Portland, OR 97035" +307831,20in Monitor,1,109.99,12/21/19 17:52,"345 8th St, Boston, MA 02215" +307832,27in FHD Monitor,1,149.99,12/06/19 13:01,"980 Chestnut St, Portland, OR 97035" +307833,Wired Headphones,1,11.99,12/20/19 14:11,"397 6th St, Seattle, WA 98101" +307834,Lightning Charging Cable,1,14.95,12/18/19 11:20,"919 11th St, New York City, NY 10001" +307835,Flatscreen TV,1,300,12/14/19 19:47,"837 West St, Boston, MA 02215" +307836,Apple Airpods Headphones,1,150,12/03/19 10:59,"136 Wilson St, New York City, NY 10001" +307837,Apple Airpods Headphones,1,150,12/01/19 09:59,"805 14th St, San Francisco, CA 94016" +307838,Google Phone,1,600,12/11/19 05:28,"396 Chestnut St, San Francisco, CA 94016" +307839,Lightning Charging Cable,1,14.95,12/19/19 10:55,"238 7th St, New York City, NY 10001" +307840,iPhone,1,700,12/27/19 07:11,"808 Park St, Los Angeles, CA 90001" +307841,Bose SoundSport Headphones,1,99.99,12/22/19 05:32,"272 Lincoln St, San Francisco, CA 94016" +307842,Apple Airpods Headphones,1,150,12/11/19 10:58,"854 Madison St, Los Angeles, CA 90001" +307843,Apple Airpods Headphones,1,150,12/22/19 13:11,"451 Spruce St, New York City, NY 10001" +307844,27in FHD Monitor,1,149.99,12/23/19 12:47,"364 Cedar St, Seattle, WA 98101" +307845,AA Batteries (4-pack),1,3.84,12/25/19 18:36,"728 Washington St, Seattle, WA 98101" +307846,Apple Airpods Headphones,1,150,12/05/19 17:48,"600 Ridge St, Portland, ME 04101" +307847,USB-C Charging Cable,1,11.95,12/27/19 02:21,"89 7th St, San Francisco, CA 94016" +307848,USB-C Charging Cable,1,11.95,12/02/19 12:45,"514 9th St, San Francisco, CA 94016" +307849,Vareebadd Phone,1,400,12/11/19 23:42,"250 Meadow St, San Francisco, CA 94016" +307850,iPhone,1,700,12/19/19 09:13,"986 5th St, Atlanta, GA 30301" +307850,Wired Headphones,1,11.99,12/19/19 09:13,"986 5th St, Atlanta, GA 30301" +307851,AA Batteries (4-pack),1,3.84,12/13/19 20:13,"989 Ridge St, Boston, MA 02215" +307852,Lightning Charging Cable,1,14.95,12/11/19 12:52,"222 Jackson St, Boston, MA 02215" +307853,AA Batteries (4-pack),1,3.84,12/25/19 16:26,"41 2nd St, Seattle, WA 98101" +307854,USB-C Charging Cable,1,11.95,12/18/19 17:39,"984 Hill St, San Francisco, CA 94016" +307855,AAA Batteries (4-pack),1,2.99,12/26/19 10:51,"202 6th St, Los Angeles, CA 90001" +307856,USB-C Charging Cable,1,11.95,12/03/19 13:41,"295 9th St, Los Angeles, CA 90001" +307857,Google Phone,1,600,12/04/19 16:11,"76 Willow St, Seattle, WA 98101" +307858,AAA Batteries (4-pack),1,2.99,12/19/19 11:07,"702 Hill St, Boston, MA 02215" +307859,Apple Airpods Headphones,1,150,12/29/19 18:29,"641 Meadow St, Atlanta, GA 30301" +307860,Google Phone,1,600,12/08/19 10:03,"291 Meadow St, Portland, OR 97035" +307861,Google Phone,1,600,12/12/19 16:39,"821 11th St, Dallas, TX 75001" +307862,20in Monitor,1,109.99,12/14/19 21:18,"556 7th St, Seattle, WA 98101" +307863,20in Monitor,1,109.99,12/24/19 00:39,"849 12th St, Los Angeles, CA 90001" +307864,Lightning Charging Cable,1,14.95,12/13/19 22:39,"304 West St, Boston, MA 02215" +307865,Lightning Charging Cable,1,14.95,12/23/19 23:59,"764 Lakeview St, Seattle, WA 98101" +307866,AA Batteries (4-pack),1,3.84,12/06/19 19:43,"482 Willow St, Los Angeles, CA 90001" +307867,Wired Headphones,1,11.99,12/20/19 21:21,"818 Spruce St, Los Angeles, CA 90001" +307868,Lightning Charging Cable,1,14.95,12/23/19 19:28,"653 Cedar St, San Francisco, CA 94016" +307869,AAA Batteries (4-pack),1,2.99,12/17/19 19:32,"724 South St, Seattle, WA 98101" +307870,iPhone,1,700,12/24/19 09:36,"376 12th St, Los Angeles, CA 90001" +307871,AA Batteries (4-pack),1,3.84,12/19/19 21:29,"35 Hill St, Dallas, TX 75001" +307872,Google Phone,1,600,12/10/19 16:13,"489 Hickory St, Dallas, TX 75001" +307873,AA Batteries (4-pack),2,3.84,12/28/19 22:15,"645 Maple St, Dallas, TX 75001" +307874,Lightning Charging Cable,2,14.95,12/30/19 17:41,"364 Wilson St, Austin, TX 73301" +307875,Bose SoundSport Headphones,1,99.99,12/18/19 14:09,"104 2nd St, Portland, OR 97035" +307876,AA Batteries (4-pack),1,3.84,12/14/19 07:13,"288 4th St, Atlanta, GA 30301" +307877,USB-C Charging Cable,1,11.95,12/16/19 23:45,"386 Center St, New York City, NY 10001" +307878,34in Ultrawide Monitor,1,379.99,12/23/19 13:40,"742 Willow St, New York City, NY 10001" +307879,AA Batteries (4-pack),1,3.84,12/23/19 23:08,"206 Johnson St, Atlanta, GA 30301" +307880,AAA Batteries (4-pack),1,2.99,12/07/19 16:21,"573 6th St, Seattle, WA 98101" +307881,Macbook Pro Laptop,1,1700,12/26/19 13:43,"215 West St, Seattle, WA 98101" +307882,Wired Headphones,1,11.99,12/09/19 00:02,"29 North St, Los Angeles, CA 90001" +307883,USB-C Charging Cable,2,11.95,12/23/19 16:18,"618 Jackson St, Boston, MA 02215" +307884,34in Ultrawide Monitor,1,379.99,12/24/19 14:12,"220 Adams St, Atlanta, GA 30301" +307885,iPhone,1,700,12/03/19 22:26,"973 Lincoln St, New York City, NY 10001" +307885,Lightning Charging Cable,1,14.95,12/03/19 22:26,"973 Lincoln St, New York City, NY 10001" +307886,Apple Airpods Headphones,1,150,12/10/19 16:10,"770 Dogwood St, San Francisco, CA 94016" +307887,USB-C Charging Cable,1,11.95,12/29/19 20:08,"256 13th St, Portland, OR 97035" +307888,34in Ultrawide Monitor,1,379.99,12/22/19 20:26,"63 Walnut St, Los Angeles, CA 90001" +307889,Lightning Charging Cable,1,14.95,12/08/19 16:48,"222 Elm St, New York City, NY 10001" +307890,USB-C Charging Cable,1,11.95,12/23/19 12:15,"877 Main St, Los Angeles, CA 90001" +307891,Bose SoundSport Headphones,1,99.99,12/21/19 09:22,"639 7th St, New York City, NY 10001" +307892,AA Batteries (4-pack),3,3.84,12/10/19 13:01,"963 Lincoln St, Austin, TX 73301" +307893,Wired Headphones,1,11.99,12/08/19 00:31,"258 Hickory St, Los Angeles, CA 90001" +307894,USB-C Charging Cable,1,11.95,12/17/19 12:02,"425 Elm St, New York City, NY 10001" +307895,Lightning Charging Cable,1,14.95,12/01/19 09:02,"619 Cedar St, Seattle, WA 98101" +307896,AA Batteries (4-pack),2,3.84,12/01/19 11:37,"295 14th St, Boston, MA 02215" +307897,Google Phone,1,600,12/15/19 13:21,"312 Ridge St, Dallas, TX 75001" +307898,USB-C Charging Cable,1,11.95,12/24/19 08:42,"681 4th St, Boston, MA 02215" +307899,Lightning Charging Cable,1,14.95,12/16/19 06:53,"399 12th St, Boston, MA 02215" +307900,34in Ultrawide Monitor,1,379.99,12/30/19 00:32,"671 Church St, Los Angeles, CA 90001" +,,,,, +307901,USB-C Charging Cable,1,11.95,12/16/19 21:52,"84 Hill St, Austin, TX 73301" +307902,Macbook Pro Laptop,1,1700,12/16/19 16:37,"817 Park St, San Francisco, CA 94016" +307903,iPhone,1,700,12/26/19 17:49,"174 Highland St, New York City, NY 10001" +307904,USB-C Charging Cable,1,11.95,12/09/19 11:25,"922 1st St, Los Angeles, CA 90001" +307905,AAA Batteries (4-pack),1,2.99,12/27/19 01:32,"407 9th St, New York City, NY 10001" +307906,AA Batteries (4-pack),1,3.84,12/22/19 22:17,"923 Willow St, Seattle, WA 98101" +307906,iPhone,1,700,12/22/19 22:17,"923 Willow St, Seattle, WA 98101" +307907,Lightning Charging Cable,1,14.95,12/30/19 13:10,"392 Elm St, Boston, MA 02215" +307908,Wired Headphones,1,11.99,12/18/19 11:48,"100 North St, Portland, OR 97035" +307909,USB-C Charging Cable,1,11.95,12/10/19 11:21,"50 Highland St, New York City, NY 10001" +307910,AA Batteries (4-pack),2,3.84,12/22/19 12:53,"867 Main St, San Francisco, CA 94016" +307911,ThinkPad Laptop,1,999.99,12/29/19 21:30,"2 River St, Portland, ME 04101" +307912,Bose SoundSport Headphones,1,99.99,12/21/19 14:40,"341 Jefferson St, Portland, OR 97035" +307913,34in Ultrawide Monitor,1,379.99,12/26/19 18:23,"680 2nd St, Atlanta, GA 30301" +307914,iPhone,1,700,12/24/19 10:30,"3 North St, Austin, TX 73301" +307915,iPhone,1,700,12/17/19 07:41,"648 8th St, San Francisco, CA 94016" +307915,Wired Headphones,1,11.99,12/17/19 07:41,"648 8th St, San Francisco, CA 94016" +307916,Bose SoundSport Headphones,1,99.99,12/14/19 20:45,"50 1st St, Dallas, TX 75001" +307917,Macbook Pro Laptop,1,1700,12/04/19 11:54,"121 10th St, San Francisco, CA 94016" +307918,Flatscreen TV,1,300,12/20/19 11:14,"559 2nd St, Dallas, TX 75001" +307919,Lightning Charging Cable,1,14.95,12/29/19 19:23,"521 Dogwood St, New York City, NY 10001" +307919,Apple Airpods Headphones,1,150,12/29/19 19:23,"521 Dogwood St, New York City, NY 10001" +307920,Bose SoundSport Headphones,1,99.99,12/20/19 12:35,"634 West St, Los Angeles, CA 90001" +307921,AAA Batteries (4-pack),2,2.99,12/27/19 11:47,"126 14th St, Seattle, WA 98101" +307922,Apple Airpods Headphones,1,150,12/05/19 11:46,"399 Willow St, Los Angeles, CA 90001" +307923,USB-C Charging Cable,1,11.95,12/02/19 13:49,"7 Lakeview St, New York City, NY 10001" +307924,AA Batteries (4-pack),2,3.84,12/26/19 20:00,"157 Main St, Los Angeles, CA 90001" +307925,ThinkPad Laptop,1,999.99,12/02/19 12:32,"657 7th St, Austin, TX 73301" +307926,AA Batteries (4-pack),2,3.84,12/31/19 20:23,"278 Church St, Atlanta, GA 30301" +307927,Lightning Charging Cable,1,14.95,12/01/19 18:13,"891 Dogwood St, Dallas, TX 75001" +307928,AAA Batteries (4-pack),1,2.99,12/04/19 20:29,"510 Jackson St, Dallas, TX 75001" +307929,USB-C Charging Cable,1,11.95,12/11/19 15:05,"338 Jackson St, New York City, NY 10001" +307930,Lightning Charging Cable,1,14.95,12/16/19 19:00,"972 Madison St, Austin, TX 73301" +307931,iPhone,1,700,12/04/19 12:37,"794 Forest St, New York City, NY 10001" +307931,Lightning Charging Cable,1,14.95,12/04/19 12:37,"794 Forest St, New York City, NY 10001" +307932,USB-C Charging Cable,1,11.95,12/28/19 09:31,"241 Hickory St, Atlanta, GA 30301" +307933,USB-C Charging Cable,1,11.95,12/13/19 18:19,"745 Maple St, San Francisco, CA 94016" +307934,AAA Batteries (4-pack),1,2.99,12/20/19 12:21,"653 Ridge St, Boston, MA 02215" +307935,AAA Batteries (4-pack),1,2.99,12/27/19 16:01,"865 Walnut St, New York City, NY 10001" +307936,AAA Batteries (4-pack),1,2.99,12/02/19 20:25,"53 Jackson St, Los Angeles, CA 90001" +307937,Bose SoundSport Headphones,1,99.99,12/02/19 07:40,"247 13th St, Atlanta, GA 30301" +307938,USB-C Charging Cable,1,11.95,12/02/19 13:45,"482 2nd St, San Francisco, CA 94016" +307939,27in FHD Monitor,1,149.99,12/09/19 12:14,"13 Dogwood St, Portland, OR 97035" +307940,Apple Airpods Headphones,1,150,12/26/19 12:26,"122 Ridge St, Los Angeles, CA 90001" +307941,Macbook Pro Laptop,1,1700,12/31/19 11:31,"161 Lakeview St, Atlanta, GA 30301" +307942,AAA Batteries (4-pack),1,2.99,12/27/19 19:40,"501 1st St, New York City, NY 10001" +307943,AA Batteries (4-pack),1,3.84,12/16/19 22:52,"206 North St, Los Angeles, CA 90001" +307944,34in Ultrawide Monitor,1,379.99,12/14/19 11:39,"506 Adams St, Boston, MA 02215" +307945,Apple Airpods Headphones,1,150,12/11/19 23:34,"937 Cherry St, Los Angeles, CA 90001" +307946,34in Ultrawide Monitor,1,379.99,12/14/19 14:54,"959 River St, Boston, MA 02215" +307947,Macbook Pro Laptop,2,1700,12/06/19 22:03,"414 Park St, Los Angeles, CA 90001" +307948,AAA Batteries (4-pack),1,2.99,12/19/19 11:58,"587 North St, Los Angeles, CA 90001" +307949,27in 4K Gaming Monitor,1,389.99,12/30/19 12:26,"554 Lakeview St, Portland, OR 97035" +307950,Apple Airpods Headphones,1,150,12/05/19 14:09,"241 Center St, Dallas, TX 75001" +307951,Apple Airpods Headphones,2,150,12/09/19 20:40,"742 7th St, San Francisco, CA 94016" +307952,AAA Batteries (4-pack),1,2.99,12/19/19 18:49,"511 Wilson St, Boston, MA 02215" +307953,AAA Batteries (4-pack),1,2.99,12/12/19 15:01,"364 Walnut St, Los Angeles, CA 90001" +307954,20in Monitor,1,109.99,12/01/19 23:08,"885 Sunset St, Boston, MA 02215" +307955,Wired Headphones,1,11.99,12/27/19 20:24,"301 Church St, Boston, MA 02215" +307956,Apple Airpods Headphones,1,150,12/14/19 22:05,"267 Ridge St, Seattle, WA 98101" +307957,Apple Airpods Headphones,1,150,12/12/19 14:58,"498 8th St, Los Angeles, CA 90001" +307958,34in Ultrawide Monitor,1,379.99,12/09/19 22:27,"962 Church St, Los Angeles, CA 90001" +307959,USB-C Charging Cable,1,11.95,12/16/19 14:23,"6 Hickory St, Los Angeles, CA 90001" +307960,Apple Airpods Headphones,1,150,12/30/19 11:52,"364 Hickory St, Dallas, TX 75001" +307961,Wired Headphones,1,11.99,12/21/19 14:44,"815 Wilson St, Los Angeles, CA 90001" +307962,Wired Headphones,2,11.99,12/18/19 13:02,"398 14th St, Dallas, TX 75001" +307963,AA Batteries (4-pack),1,3.84,12/19/19 15:54,"73 6th St, Atlanta, GA 30301" +307964,Bose SoundSport Headphones,1,99.99,12/03/19 18:51,"520 Adams St, San Francisco, CA 94016" +307965,AA Batteries (4-pack),2,3.84,12/24/19 12:46,"430 Pine St, Dallas, TX 75001" +307966,Google Phone,1,600,12/10/19 12:50,"253 South St, New York City, NY 10001" +307967,AA Batteries (4-pack),1,3.84,12/03/19 19:51,"70 Sunset St, New York City, NY 10001" +307968,iPhone,1,700,12/20/19 09:44,"67 13th St, Los Angeles, CA 90001" +307969,AAA Batteries (4-pack),1,2.99,12/08/19 15:03,"513 9th St, San Francisco, CA 94016" +307970,AA Batteries (4-pack),1,3.84,12/31/19 12:01,"841 Cherry St, Seattle, WA 98101" +307970,Bose SoundSport Headphones,1,99.99,12/31/19 12:01,"841 Cherry St, Seattle, WA 98101" +307971,Lightning Charging Cable,1,14.95,12/01/19 20:24,"742 Pine St, San Francisco, CA 94016" +307972,AAA Batteries (4-pack),1,2.99,12/23/19 08:23,"493 River St, Atlanta, GA 30301" +307973,USB-C Charging Cable,1,11.95,12/27/19 15:33,"492 Ridge St, Seattle, WA 98101" +307974,USB-C Charging Cable,1,11.95,12/10/19 23:28,"960 10th St, Boston, MA 02215" +307975,ThinkPad Laptop,1,999.99,12/09/19 13:59,"390 8th St, San Francisco, CA 94016" +307976,Bose SoundSport Headphones,2,99.99,12/19/19 16:19,"680 Park St, Los Angeles, CA 90001" +307977,USB-C Charging Cable,1,11.95,12/31/19 18:26,"997 12th St, Dallas, TX 75001" +307978,27in FHD Monitor,1,149.99,12/17/19 08:52,"594 Forest St, Austin, TX 73301" +307979,27in FHD Monitor,1,149.99,12/13/19 14:27,"3 North St, Seattle, WA 98101" +307980,Flatscreen TV,1,300,12/23/19 22:30,"489 Church St, San Francisco, CA 94016" +307981,Lightning Charging Cable,1,14.95,12/06/19 20:08,"732 Johnson St, Austin, TX 73301" +307982,27in FHD Monitor,1,149.99,12/31/19 20:04,"412 Center St, Boston, MA 02215" +307983,Wired Headphones,1,11.99,12/30/19 21:39,"930 Dogwood St, New York City, NY 10001" +307984,USB-C Charging Cable,1,11.95,12/09/19 12:58,"984 Elm St, Los Angeles, CA 90001" +307985,Lightning Charging Cable,1,14.95,12/21/19 23:21,"757 2nd St, Los Angeles, CA 90001" +307986,Lightning Charging Cable,1,14.95,12/24/19 17:44,"625 11th St, Austin, TX 73301" +307987,Lightning Charging Cable,1,14.95,12/26/19 17:11,"610 Maple St, Seattle, WA 98101" +307988,Wired Headphones,1,11.99,12/10/19 00:55,"998 Meadow St, Seattle, WA 98101" +307989,Bose SoundSport Headphones,1,99.99,12/03/19 17:50,"102 Lincoln St, Los Angeles, CA 90001" +307990,Bose SoundSport Headphones,1,99.99,12/31/19 01:14,"408 Ridge St, San Francisco, CA 94016" +307991,AA Batteries (4-pack),3,3.84,12/20/19 20:18,"443 Madison St, Los Angeles, CA 90001" +307992,ThinkPad Laptop,1,999.99,12/29/19 20:27,"496 Willow St, Portland, OR 97035" +307993,iPhone,1,700,12/06/19 21:20,"70 Walnut St, Los Angeles, CA 90001" +307994,Flatscreen TV,1,300,12/28/19 09:28,"540 South St, San Francisco, CA 94016" +307995,Google Phone,1,600,12/16/19 12:51,"255 Lincoln St, San Francisco, CA 94016" +307996,Vareebadd Phone,1,400,12/16/19 09:38,"72 Park St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +307997,USB-C Charging Cable,1,11.95,12/10/19 14:28,"954 Maple St, Portland, OR 97035" +307998,USB-C Charging Cable,1,11.95,12/31/19 07:23,"247 West St, Los Angeles, CA 90001" +307999,AA Batteries (4-pack),2,3.84,12/02/19 14:43,"360 Elm St, New York City, NY 10001" +308000,AA Batteries (4-pack),1,3.84,12/27/19 19:09,"3 Wilson St, Los Angeles, CA 90001" +308001,34in Ultrawide Monitor,1,379.99,12/02/19 10:56,"143 5th St, Atlanta, GA 30301" +308002,Apple Airpods Headphones,1,150,12/15/19 01:10,"10 Hickory St, Austin, TX 73301" +308003,27in FHD Monitor,1,149.99,12/10/19 20:03,"841 Dogwood St, Atlanta, GA 30301" +308004,Wired Headphones,1,11.99,12/20/19 01:22,"818 5th St, Boston, MA 02215" +308005,iPhone,1,700,12/22/19 16:58,"415 Elm St, Atlanta, GA 30301" +308006,Apple Airpods Headphones,1,150,12/13/19 18:55,"653 1st St, New York City, NY 10001" +308007,27in FHD Monitor,1,149.99,12/08/19 07:41,"973 Lake St, Seattle, WA 98101" +308008,Wired Headphones,1,11.99,12/19/19 14:11,"285 10th St, Los Angeles, CA 90001" +308009,Wired Headphones,1,11.99,12/17/19 18:42,"136 Church St, San Francisco, CA 94016" +308010,27in FHD Monitor,1,149.99,12/20/19 15:12,"226 11th St, San Francisco, CA 94016" +308011,AAA Batteries (4-pack),1,2.99,12/25/19 11:43,"535 Chestnut St, New York City, NY 10001" +308012,Lightning Charging Cable,2,14.95,12/05/19 18:53,"271 Wilson St, Atlanta, GA 30301" +308013,ThinkPad Laptop,1,999.99,12/03/19 19:44,"642 4th St, San Francisco, CA 94016" +308014,Apple Airpods Headphones,1,150,12/14/19 21:11,"687 Meadow St, San Francisco, CA 94016" +308015,ThinkPad Laptop,1,999.99,12/08/19 11:56,"433 Wilson St, Los Angeles, CA 90001" +308016,Apple Airpods Headphones,1,150,12/15/19 21:01,"212 12th St, San Francisco, CA 94016" +308017,iPhone,1,700,12/28/19 11:23,"715 River St, Seattle, WA 98101" +308018,34in Ultrawide Monitor,1,379.99,12/30/19 18:12,"636 Wilson St, Boston, MA 02215" +308019,AAA Batteries (4-pack),3,2.99,12/23/19 11:06,"498 Church St, Los Angeles, CA 90001" +308020,AAA Batteries (4-pack),1,2.99,12/09/19 20:50,"766 Lincoln St, Seattle, WA 98101" +308021,LG Dryer,1,600.0,12/06/19 09:59,"443 1st St, San Francisco, CA 94016" +308022,Google Phone,1,600,12/06/19 11:16,"866 13th St, Dallas, TX 75001" +308023,Bose SoundSport Headphones,1,99.99,12/20/19 22:20,"611 River St, Los Angeles, CA 90001" +308024,Bose SoundSport Headphones,2,99.99,12/22/19 19:42,"629 Adams St, Seattle, WA 98101" +308025,USB-C Charging Cable,1,11.95,12/05/19 14:03,"7 Hickory St, Los Angeles, CA 90001" +308026,Wired Headphones,1,11.99,12/26/19 02:14,"919 Park St, Los Angeles, CA 90001" +308027,Wired Headphones,1,11.99,12/05/19 22:04,"214 Chestnut St, Boston, MA 02215" +308028,Wired Headphones,1,11.99,12/09/19 13:25,"194 10th St, New York City, NY 10001" +308029,Flatscreen TV,1,300,12/11/19 15:42,"236 Ridge St, Seattle, WA 98101" +308030,Lightning Charging Cable,1,14.95,12/20/19 11:23,"231 Forest St, Los Angeles, CA 90001" +308031,Apple Airpods Headphones,1,150,12/10/19 09:29,"327 Main St, San Francisco, CA 94016" +308032,ThinkPad Laptop,1,999.99,12/26/19 19:26,"429 Willow St, Atlanta, GA 30301" +308033,Wired Headphones,1,11.99,12/24/19 06:41,"331 7th St, New York City, NY 10001" +308034,Wired Headphones,1,11.99,12/16/19 16:29,"817 Maple St, San Francisco, CA 94016" +308035,27in FHD Monitor,1,149.99,12/29/19 16:48,"480 7th St, New York City, NY 10001" +308036,Lightning Charging Cable,1,14.95,12/23/19 10:38,"614 Washington St, Atlanta, GA 30301" +308037,Wired Headphones,1,11.99,12/28/19 09:50,"600 12th St, Atlanta, GA 30301" +308038,Wired Headphones,1,11.99,12/27/19 14:57,"749 13th St, San Francisco, CA 94016" +308039,AA Batteries (4-pack),2,3.84,12/01/19 10:06,"848 Lincoln St, Seattle, WA 98101" +308040,Bose SoundSport Headphones,1,99.99,12/24/19 23:00,"192 Walnut St, Portland, OR 97035" +308041,27in FHD Monitor,1,149.99,12/06/19 13:00,"710 South St, Boston, MA 02215" +308042,Lightning Charging Cable,1,14.95,12/21/19 12:43,"963 Lake St, San Francisco, CA 94016" +308043,Wired Headphones,1,11.99,12/23/19 00:23,"770 Park St, Los Angeles, CA 90001" +308044,Wired Headphones,1,11.99,12/28/19 19:04,"192 Cedar St, Boston, MA 02215" +308045,AAA Batteries (4-pack),1,2.99,12/30/19 22:08,"258 Meadow St, Atlanta, GA 30301" +308046,34in Ultrawide Monitor,1,379.99,12/06/19 17:55,"528 Elm St, New York City, NY 10001" +308047,USB-C Charging Cable,1,11.95,12/01/19 18:43,"5 Elm St, Atlanta, GA 30301" +308048,AAA Batteries (4-pack),1,2.99,12/09/19 19:55,"553 Lincoln St, Los Angeles, CA 90001" +308049,Macbook Pro Laptop,1,1700,12/03/19 23:20,"773 Lake St, Portland, OR 97035" +308050,AAA Batteries (4-pack),1,2.99,12/24/19 20:12,"443 Park St, San Francisco, CA 94016" +308051,Lightning Charging Cable,1,14.95,12/13/19 13:18,"830 River St, Austin, TX 73301" +308052,Google Phone,1,600,12/20/19 18:55,"836 Center St, Dallas, TX 75001" +308053,USB-C Charging Cable,1,11.95,12/22/19 09:06,"789 4th St, New York City, NY 10001" +308054,Wired Headphones,2,11.99,12/02/19 11:55,"40 Highland St, San Francisco, CA 94016" +308055,LG Dryer,1,600.0,12/25/19 14:54,"951 North St, Los Angeles, CA 90001" +308056,Apple Airpods Headphones,1,150,12/21/19 14:13,"408 5th St, Dallas, TX 75001" +308057,Lightning Charging Cable,1,14.95,12/25/19 13:51,"1 Adams St, Seattle, WA 98101" +308058,Apple Airpods Headphones,1,150,12/07/19 01:50,"524 7th St, Boston, MA 02215" +308059,34in Ultrawide Monitor,1,379.99,12/05/19 12:23,"370 Pine St, New York City, NY 10001" +308060,AAA Batteries (4-pack),1,2.99,12/28/19 15:35,"32 Lake St, Boston, MA 02215" +308061,AA Batteries (4-pack),2,3.84,12/15/19 21:03,"172 5th St, Dallas, TX 75001" +308062,Lightning Charging Cable,1,14.95,12/15/19 22:08,"580 Center St, Boston, MA 02215" +308063,Bose SoundSport Headphones,1,99.99,12/26/19 08:22,"208 14th St, New York City, NY 10001" +308064,Bose SoundSport Headphones,1,99.99,12/18/19 07:08,"580 Lakeview St, San Francisco, CA 94016" +308065,27in FHD Monitor,1,149.99,12/13/19 17:06,"973 Park St, New York City, NY 10001" +308066,27in FHD Monitor,1,149.99,12/20/19 22:59,"544 Jackson St, Austin, TX 73301" +308067,AA Batteries (4-pack),1,3.84,12/15/19 20:47,"614 12th St, Atlanta, GA 30301" +308068,AA Batteries (4-pack),1,3.84,12/11/19 21:09,"309 Highland St, New York City, NY 10001" +308069,USB-C Charging Cable,1,11.95,12/01/19 07:45,"326 Cedar St, Boston, MA 02215" +308070,Apple Airpods Headphones,1,150,12/24/19 14:37,"124 Wilson St, New York City, NY 10001" +308071,20in Monitor,1,109.99,12/05/19 21:49,"99 11th St, Boston, MA 02215" +308072,AA Batteries (4-pack),1,3.84,12/03/19 17:45,"300 6th St, San Francisco, CA 94016" +308073,Lightning Charging Cable,1,14.95,12/02/19 11:30,"281 Maple St, Los Angeles, CA 90001" +308074,Apple Airpods Headphones,1,150,12/05/19 07:06,"797 Cherry St, San Francisco, CA 94016" +308075,ThinkPad Laptop,1,999.99,12/06/19 16:18,"974 14th St, San Francisco, CA 94016" +308076,AAA Batteries (4-pack),2,2.99,12/24/19 17:32,"708 Hill St, San Francisco, CA 94016" +308077,AA Batteries (4-pack),1,3.84,12/13/19 23:19,"567 Forest St, Los Angeles, CA 90001" +308078,AAA Batteries (4-pack),1,2.99,12/19/19 16:54,"370 Elm St, Dallas, TX 75001" +308079,Lightning Charging Cable,1,14.95,12/07/19 08:26,"250 11th St, Seattle, WA 98101" +308080,Bose SoundSport Headphones,1,99.99,12/28/19 14:31,"756 Elm St, Portland, OR 97035" +308081,AA Batteries (4-pack),1,3.84,12/12/19 11:23,"304 Dogwood St, San Francisco, CA 94016" +308082,AA Batteries (4-pack),2,3.84,12/22/19 01:19,"809 Highland St, San Francisco, CA 94016" +308083,AAA Batteries (4-pack),1,2.99,12/22/19 14:02,"37 Lake St, Boston, MA 02215" +308084,ThinkPad Laptop,1,999.99,12/08/19 22:30,"203 Spruce St, Atlanta, GA 30301" +308085,Apple Airpods Headphones,1,150,12/30/19 07:39,"215 Ridge St, Atlanta, GA 30301" +308086,34in Ultrawide Monitor,1,379.99,12/26/19 16:25,"52 West St, Seattle, WA 98101" +308087,Lightning Charging Cable,1,14.95,12/11/19 12:42,"959 Center St, Atlanta, GA 30301" +308088,Apple Airpods Headphones,1,150,12/31/19 14:18,"817 South St, San Francisco, CA 94016" +308089,34in Ultrawide Monitor,1,379.99,12/29/19 19:58,"22 Cherry St, Los Angeles, CA 90001" +308090,USB-C Charging Cable,1,11.95,12/29/19 13:30,"641 6th St, Boston, MA 02215" +308091,Lightning Charging Cable,1,14.95,12/25/19 19:52,"868 4th St, Boston, MA 02215" +308092,Apple Airpods Headphones,1,150,12/24/19 11:21,"461 4th St, Atlanta, GA 30301" +308093,AA Batteries (4-pack),1,3.84,12/09/19 08:25,"566 14th St, Los Angeles, CA 90001" +308094,AA Batteries (4-pack),1,3.84,12/29/19 16:45,"365 Lake St, San Francisco, CA 94016" +308095,Apple Airpods Headphones,1,150,12/30/19 11:57,"502 Elm St, Portland, OR 97035" +308096,AAA Batteries (4-pack),2,2.99,12/16/19 17:29,"520 14th St, Los Angeles, CA 90001" +308097,USB-C Charging Cable,1,11.95,12/16/19 15:15,"155 Cherry St, Los Angeles, CA 90001" +308098,AA Batteries (4-pack),1,3.84,12/11/19 18:58,"538 10th St, New York City, NY 10001" +308099,iPhone,1,700,12/30/19 12:59,"741 Park St, San Francisco, CA 94016" +308100,34in Ultrawide Monitor,1,379.99,12/19/19 14:40,"803 South St, Los Angeles, CA 90001" +308101,Bose SoundSport Headphones,1,99.99,12/16/19 17:38,"553 Dogwood St, Los Angeles, CA 90001" +308102,AAA Batteries (4-pack),1,2.99,12/18/19 12:40,"472 Washington St, San Francisco, CA 94016" +308103,Lightning Charging Cable,1,14.95,12/09/19 12:41,"769 10th St, San Francisco, CA 94016" +308104,AAA Batteries (4-pack),1,2.99,12/19/19 00:31,"280 Lincoln St, Los Angeles, CA 90001" +308105,Bose SoundSport Headphones,1,99.99,12/19/19 15:44,"739 Chestnut St, Dallas, TX 75001" +308106,27in 4K Gaming Monitor,1,389.99,12/30/19 16:43,"174 2nd St, Atlanta, GA 30301" +308107,AAA Batteries (4-pack),1,2.99,12/19/19 21:08,"956 Cedar St, Seattle, WA 98101" +308108,AA Batteries (4-pack),1,3.84,12/20/19 22:57,"714 Pine St, San Francisco, CA 94016" +308109,Bose SoundSport Headphones,1,99.99,12/06/19 09:41,"641 14th St, Dallas, TX 75001" +308110,Macbook Pro Laptop,1,1700,12/02/19 14:24,"28 2nd St, Portland, OR 97035" +308111,Lightning Charging Cable,1,14.95,12/18/19 18:12,"434 Willow St, Boston, MA 02215" +308112,Apple Airpods Headphones,1,150,12/21/19 21:19,"948 Wilson St, New York City, NY 10001" +308113,27in 4K Gaming Monitor,1,389.99,12/29/19 18:47,"221 Meadow St, San Francisco, CA 94016" +308114,USB-C Charging Cable,1,11.95,12/12/19 10:36,"227 Hill St, San Francisco, CA 94016" +308115,Lightning Charging Cable,3,14.95,12/04/19 13:19,"605 Ridge St, San Francisco, CA 94016" +308116,Wired Headphones,1,11.99,12/21/19 19:51,"45 Church St, Portland, ME 04101" +308117,27in FHD Monitor,1,149.99,12/27/19 20:41,"926 Highland St, Portland, OR 97035" +308118,iPhone,1,700,12/08/19 18:23,"861 Hill St, Los Angeles, CA 90001" +308119,Apple Airpods Headphones,1,150,12/06/19 09:26,"839 West St, Atlanta, GA 30301" +308120,Flatscreen TV,1,300,12/05/19 17:56,"846 Madison St, Dallas, TX 75001" +308121,USB-C Charging Cable,1,11.95,12/17/19 18:13,"573 River St, San Francisco, CA 94016" +308122,USB-C Charging Cable,1,11.95,12/07/19 11:17,"288 7th St, Los Angeles, CA 90001" +308123,AAA Batteries (4-pack),1,2.99,12/28/19 13:57,"632 Adams St, New York City, NY 10001" +308124,Bose SoundSport Headphones,1,99.99,12/05/19 14:32,"78 North St, Atlanta, GA 30301" +308125,ThinkPad Laptop,1,999.99,12/11/19 17:50,"506 Center St, Portland, OR 97035" +308126,Bose SoundSport Headphones,1,99.99,12/10/19 18:05,"810 Jackson St, Los Angeles, CA 90001" +308127,Vareebadd Phone,1,400,12/19/19 15:32,"527 River St, Los Angeles, CA 90001" +308128,Macbook Pro Laptop,1,1700,12/18/19 13:56,"932 14th St, Dallas, TX 75001" +308129,Apple Airpods Headphones,1,150,12/17/19 17:10,"97 14th St, Los Angeles, CA 90001" +308130,AAA Batteries (4-pack),1,2.99,12/22/19 13:10,"949 Spruce St, Austin, TX 73301" +308131,USB-C Charging Cable,1,11.95,12/11/19 08:22,"786 1st St, Boston, MA 02215" +308132,Google Phone,1,600,12/10/19 13:43,"819 8th St, Seattle, WA 98101" +308132,Wired Headphones,1,11.99,12/10/19 13:43,"819 8th St, Seattle, WA 98101" +308133,Lightning Charging Cable,2,14.95,12/25/19 11:41,"966 12th St, Los Angeles, CA 90001" +308134,USB-C Charging Cable,1,11.95,12/08/19 22:13,"182 Cedar St, Boston, MA 02215" +308135,20in Monitor,1,109.99,12/28/19 13:25,"520 Lake St, New York City, NY 10001" +308136,USB-C Charging Cable,1,11.95,12/26/19 15:11,"410 6th St, San Francisco, CA 94016" +308137,AAA Batteries (4-pack),1,2.99,12/06/19 21:32,"727 1st St, San Francisco, CA 94016" +308138,27in FHD Monitor,1,149.99,12/07/19 12:11,"148 Sunset St, Austin, TX 73301" +308139,Wired Headphones,1,11.99,12/25/19 15:23,"210 Cedar St, New York City, NY 10001" +308140,Wired Headphones,1,11.99,12/23/19 18:51,"932 Lincoln St, New York City, NY 10001" +308141,27in 4K Gaming Monitor,1,389.99,12/10/19 15:52,"737 Madison St, Austin, TX 73301" +308142,Flatscreen TV,1,300,12/29/19 07:48,"696 Meadow St, Boston, MA 02215" +308143,AA Batteries (4-pack),1,3.84,12/19/19 12:08,"387 8th St, Austin, TX 73301" +308144,USB-C Charging Cable,1,11.95,12/30/19 17:19,"649 13th St, San Francisco, CA 94016" +308145,Lightning Charging Cable,1,14.95,12/16/19 10:36,"273 10th St, Portland, OR 97035" +308146,USB-C Charging Cable,1,11.95,12/19/19 16:36,"637 Jackson St, San Francisco, CA 94016" +308147,Google Phone,1,600,12/03/19 11:13,"293 7th St, Atlanta, GA 30301" +308147,Lightning Charging Cable,2,14.95,12/03/19 11:13,"293 7th St, Atlanta, GA 30301" +308148,Lightning Charging Cable,1,14.95,12/04/19 13:53,"807 North St, Dallas, TX 75001" +308149,AA Batteries (4-pack),2,3.84,12/14/19 17:06,"774 Spruce St, San Francisco, CA 94016" +308150,AA Batteries (4-pack),2,3.84,12/19/19 07:44,"505 Dogwood St, Los Angeles, CA 90001" +308151,Lightning Charging Cable,1,14.95,12/09/19 14:24,"878 Center St, San Francisco, CA 94016" +308152,Lightning Charging Cable,1,14.95,12/20/19 20:22,"33 Washington St, Boston, MA 02215" +308153,AAA Batteries (4-pack),1,2.99,12/29/19 19:02,"383 12th St, New York City, NY 10001" +308154,ThinkPad Laptop,1,999.99,12/04/19 19:57,"226 Wilson St, Boston, MA 02215" +308155,27in FHD Monitor,1,149.99,12/30/19 10:53,"660 Lake St, New York City, NY 10001" +308156,AA Batteries (4-pack),1,3.84,12/25/19 17:30,"236 10th St, Austin, TX 73301" +308157,ThinkPad Laptop,1,999.99,12/11/19 20:33,"519 Willow St, Los Angeles, CA 90001" +308158,ThinkPad Laptop,1,999.99,12/29/19 18:21,"147 4th St, Austin, TX 73301" +308159,USB-C Charging Cable,1,11.95,12/07/19 10:19,"414 1st St, Seattle, WA 98101" +308160,27in FHD Monitor,1,149.99,12/22/19 11:15,"904 8th St, New York City, NY 10001" +308161,AA Batteries (4-pack),1,3.84,12/10/19 14:00,"537 Sunset St, New York City, NY 10001" +308162,Lightning Charging Cable,1,14.95,12/16/19 13:54,"636 Jefferson St, Boston, MA 02215" +308163,Apple Airpods Headphones,1,150,12/06/19 11:05,"438 Willow St, Boston, MA 02215" +308164,AA Batteries (4-pack),3,3.84,12/13/19 20:42,"71 Lakeview St, Atlanta, GA 30301" +308165,AA Batteries (4-pack),1,3.84,12/05/19 10:23,"262 9th St, Atlanta, GA 30301" +308166,Wired Headphones,1,11.99,12/03/19 10:51,"675 Main St, San Francisco, CA 94016" +308167,Bose SoundSport Headphones,2,99.99,12/25/19 15:05,"168 5th St, San Francisco, CA 94016" +308168,Lightning Charging Cable,1,14.95,12/25/19 06:25,"148 Main St, Seattle, WA 98101" +308169,USB-C Charging Cable,1,11.95,12/05/19 14:09,"228 2nd St, Los Angeles, CA 90001" +308170,27in FHD Monitor,1,149.99,12/23/19 20:27,"937 Maple St, Los Angeles, CA 90001" +308171,USB-C Charging Cable,1,11.95,12/19/19 13:12,"518 Elm St, New York City, NY 10001" +308172,AAA Batteries (4-pack),1,2.99,12/23/19 11:09,"123 5th St, Dallas, TX 75001" +308173,Apple Airpods Headphones,1,150,12/09/19 18:26,"113 Walnut St, San Francisco, CA 94016" +308174,Wired Headphones,1,11.99,12/27/19 12:13,"831 Dogwood St, San Francisco, CA 94016" +308175,AA Batteries (4-pack),1,3.84,12/31/19 10:24,"253 8th St, Los Angeles, CA 90001" +308176,USB-C Charging Cable,1,11.95,12/16/19 23:12,"656 11th St, Atlanta, GA 30301" +308177,Wired Headphones,1,11.99,12/02/19 14:28,"378 12th St, Boston, MA 02215" +308178,AA Batteries (4-pack),1,3.84,12/23/19 21:53,"883 Meadow St, San Francisco, CA 94016" +308179,27in 4K Gaming Monitor,1,389.99,12/04/19 16:19,"477 10th St, Boston, MA 02215" +308180,Lightning Charging Cable,1,14.95,12/02/19 23:08,"675 2nd St, Portland, OR 97035" +308181,Apple Airpods Headphones,1,150,12/04/19 18:42,"591 13th St, San Francisco, CA 94016" +308182,Flatscreen TV,1,300,12/31/19 22:00,"172 Jackson St, San Francisco, CA 94016" +308183,27in FHD Monitor,1,149.99,12/01/19 09:43,"327 9th St, San Francisco, CA 94016" +308184,Apple Airpods Headphones,1,150,12/24/19 22:42,"152 Dogwood St, Boston, MA 02215" +308185,Apple Airpods Headphones,1,150,12/03/19 23:36,"342 Jefferson St, Seattle, WA 98101" +308186,Wired Headphones,2,11.99,12/09/19 00:22,"624 12th St, Dallas, TX 75001" +308187,AA Batteries (4-pack),2,3.84,12/08/19 23:26,"929 12th St, Los Angeles, CA 90001" +308188,AA Batteries (4-pack),1,3.84,12/27/19 21:45,"67 Meadow St, San Francisco, CA 94016" +308189,Apple Airpods Headphones,1,150,12/19/19 06:49,"356 Forest St, Los Angeles, CA 90001" +308190,USB-C Charging Cable,1,11.95,12/27/19 13:00,"418 Dogwood St, New York City, NY 10001" +308191,AAA Batteries (4-pack),2,2.99,12/10/19 00:55,"529 Lake St, New York City, NY 10001" +308192,AA Batteries (4-pack),2,3.84,12/05/19 19:01,"81 Johnson St, Boston, MA 02215" +308193,27in FHD Monitor,1,149.99,12/23/19 11:56,"199 North St, Dallas, TX 75001" +308194,AA Batteries (4-pack),1,3.84,12/21/19 19:31,"373 Main St, San Francisco, CA 94016" +308195,Flatscreen TV,1,300,12/31/19 18:28,"684 Pine St, Boston, MA 02215" +308196,AAA Batteries (4-pack),3,2.99,12/02/19 08:54,"15 Hill St, New York City, NY 10001" +308197,Wired Headphones,1,11.99,12/01/19 19:25,"351 Dogwood St, Dallas, TX 75001" +308198,Lightning Charging Cable,1,14.95,12/21/19 12:16,"714 Walnut St, San Francisco, CA 94016" +308199,34in Ultrawide Monitor,1,379.99,12/16/19 16:43,"432 Cherry St, Seattle, WA 98101" +308200,iPhone,1,700,12/06/19 07:30,"728 Elm St, San Francisco, CA 94016" +308200,Apple Airpods Headphones,1,150,12/06/19 07:30,"728 Elm St, San Francisco, CA 94016" +308200,Bose SoundSport Headphones,1,99.99,12/06/19 07:30,"728 Elm St, San Francisco, CA 94016" +308201,AAA Batteries (4-pack),1,2.99,12/20/19 20:51,"116 9th St, San Francisco, CA 94016" +308202,Lightning Charging Cable,1,14.95,12/10/19 15:27,"637 Sunset St, Boston, MA 02215" +308203,Bose SoundSport Headphones,1,99.99,12/25/19 17:39,"933 Washington St, Seattle, WA 98101" +308204,Lightning Charging Cable,1,14.95,12/15/19 19:15,"166 5th St, Atlanta, GA 30301" +308205,USB-C Charging Cable,1,11.95,12/31/19 09:15,"732 West St, New York City, NY 10001" +308206,Lightning Charging Cable,1,14.95,12/27/19 10:36,"542 11th St, New York City, NY 10001" +308207,Bose SoundSport Headphones,1,99.99,12/16/19 16:02,"48 12th St, New York City, NY 10001" +308208,Wired Headphones,1,11.99,12/09/19 11:12,"700 Meadow St, Los Angeles, CA 90001" +308209,Lightning Charging Cable,1,14.95,12/20/19 16:03,"188 Hickory St, Atlanta, GA 30301" +308210,Flatscreen TV,1,300,12/15/19 16:54,"675 Maple St, Los Angeles, CA 90001" +308211,Wired Headphones,1,11.99,12/10/19 17:23,"608 Maple St, San Francisco, CA 94016" +308212,Google Phone,1,600,12/01/19 23:42,"979 Lincoln St, Los Angeles, CA 90001" +308212,Wired Headphones,1,11.99,12/01/19 23:42,"979 Lincoln St, Los Angeles, CA 90001" +308212,Wired Headphones,1,11.99,12/01/19 23:42,"979 Lincoln St, Los Angeles, CA 90001" +308213,Apple Airpods Headphones,1,150,12/07/19 18:29,"989 Wilson St, New York City, NY 10001" +308214,Google Phone,1,600,12/08/19 19:06,"268 Hickory St, Los Angeles, CA 90001" +308215,27in 4K Gaming Monitor,1,389.99,12/23/19 19:05,"504 Adams St, Seattle, WA 98101" +308216,Wired Headphones,1,11.99,12/25/19 12:17,"448 4th St, San Francisco, CA 94016" +308217,AA Batteries (4-pack),2,3.84,12/27/19 16:58,"565 Highland St, Boston, MA 02215" +308218,Apple Airpods Headphones,1,150,12/25/19 22:44,"252 Pine St, San Francisco, CA 94016" +308219,AAA Batteries (4-pack),1,2.99,12/03/19 05:46,"313 4th St, Dallas, TX 75001" +308220,Wired Headphones,1,11.99,12/30/19 20:50,"92 14th St, New York City, NY 10001" +308221,AA Batteries (4-pack),3,3.84,12/13/19 17:15,"505 Lakeview St, San Francisco, CA 94016" +308222,ThinkPad Laptop,1,999.99,12/06/19 06:53,"360 Church St, New York City, NY 10001" +308223,Apple Airpods Headphones,1,150,12/12/19 15:30,"343 North St, Austin, TX 73301" +308224,USB-C Charging Cable,1,11.95,12/20/19 09:45,"575 4th St, Atlanta, GA 30301" +308225,27in FHD Monitor,1,149.99,12/05/19 18:57,"336 14th St, Boston, MA 02215" +308226,Apple Airpods Headphones,1,150,12/08/19 13:42,"88 Chestnut St, Boston, MA 02215" +308227,AAA Batteries (4-pack),1,2.99,12/14/19 19:42,"767 8th St, New York City, NY 10001" +308228,34in Ultrawide Monitor,1,379.99,12/25/19 20:27,"954 Lincoln St, Los Angeles, CA 90001" +308229,Google Phone,1,600,12/05/19 00:25,"200 7th St, Boston, MA 02215" +308229,USB-C Charging Cable,1,11.95,12/05/19 00:25,"200 7th St, Boston, MA 02215" +308230,iPhone,1,700,12/12/19 20:56,"947 Elm St, Dallas, TX 75001" +308231,Google Phone,1,600,12/11/19 09:01,"857 Walnut St, Seattle, WA 98101" +308231,USB-C Charging Cable,1,11.95,12/11/19 09:01,"857 Walnut St, Seattle, WA 98101" +308232,AAA Batteries (4-pack),5,2.99,12/09/19 10:19,"729 Chestnut St, Atlanta, GA 30301" +308233,AAA Batteries (4-pack),2,2.99,12/22/19 15:57,"735 Chestnut St, San Francisco, CA 94016" +308234,Lightning Charging Cable,1,14.95,12/28/19 20:52,"249 Chestnut St, San Francisco, CA 94016" +308235,LG Washing Machine,1,600.0,12/09/19 15:46,"365 Forest St, New York City, NY 10001" +308236,Lightning Charging Cable,1,14.95,12/26/19 13:36,"963 1st St, Los Angeles, CA 90001" +308237,Lightning Charging Cable,1,14.95,12/14/19 23:51,"210 Wilson St, New York City, NY 10001" +308238,Bose SoundSport Headphones,1,99.99,12/29/19 12:29,"674 Main St, Boston, MA 02215" +308239,AA Batteries (4-pack),2,3.84,12/02/19 20:02,"443 Adams St, Boston, MA 02215" +308240,Google Phone,1,600,12/18/19 14:17,"810 North St, Atlanta, GA 30301" +308241,27in 4K Gaming Monitor,1,389.99,12/27/19 14:40,"278 12th St, New York City, NY 10001" +308242,Google Phone,1,600,12/06/19 21:02,"399 Dogwood St, Austin, TX 73301" +308243,27in 4K Gaming Monitor,1,389.99,12/06/19 15:48,"773 South St, San Francisco, CA 94016" +308244,Apple Airpods Headphones,1,150,12/27/19 20:21,"439 11th St, Boston, MA 02215" +308245,USB-C Charging Cable,1,11.95,12/26/19 14:29,"280 Washington St, Los Angeles, CA 90001" +308245,27in FHD Monitor,1,149.99,12/26/19 14:29,"280 Washington St, Los Angeles, CA 90001" +308246,USB-C Charging Cable,1,11.95,12/31/19 15:09,"738 Lakeview St, San Francisco, CA 94016" +308247,27in FHD Monitor,1,149.99,12/07/19 21:34,"283 Madison St, Los Angeles, CA 90001" +308248,Lightning Charging Cable,1,14.95,12/22/19 21:41,"731 River St, New York City, NY 10001" +308249,Bose SoundSport Headphones,1,99.99,12/31/19 10:59,"322 Johnson St, Boston, MA 02215" +308250,AAA Batteries (4-pack),1,2.99,12/05/19 14:43,"899 Maple St, New York City, NY 10001" +308251,AAA Batteries (4-pack),1,2.99,12/16/19 20:59,"163 Lakeview St, Los Angeles, CA 90001" +308252,Wired Headphones,1,11.99,12/15/19 17:35,"596 7th St, Seattle, WA 98101" +308253,AAA Batteries (4-pack),1,2.99,12/16/19 22:29,"182 Lakeview St, San Francisco, CA 94016" +308254,LG Washing Machine,1,600.0,12/28/19 08:40,"454 Maple St, Atlanta, GA 30301" +308255,AA Batteries (4-pack),1,3.84,12/10/19 15:49,"974 2nd St, San Francisco, CA 94016" +308256,USB-C Charging Cable,1,11.95,12/24/19 09:46,"119 Meadow St, Dallas, TX 75001" +308257,USB-C Charging Cable,1,11.95,12/16/19 17:19,"664 Hill St, Atlanta, GA 30301" +308258,Lightning Charging Cable,1,14.95,12/01/19 11:57,"997 Lincoln St, San Francisco, CA 94016" +308259,Lightning Charging Cable,2,14.95,12/21/19 16:21,"665 Washington St, Portland, ME 04101" +308260,Lightning Charging Cable,1,14.95,12/13/19 13:51,"352 14th St, New York City, NY 10001" +308261,Flatscreen TV,1,300,12/26/19 09:04,"889 7th St, Dallas, TX 75001" +308262,USB-C Charging Cable,1,11.95,12/04/19 22:56,"385 Lake St, New York City, NY 10001" +308263,20in Monitor,1,109.99,12/07/19 10:16,"998 10th St, Boston, MA 02215" +308264,iPhone,1,700,12/08/19 10:53,"145 Elm St, Seattle, WA 98101" +308265,iPhone,1,700,12/21/19 08:10,"761 Center St, Portland, OR 97035" +308265,Wired Headphones,1,11.99,12/21/19 08:10,"761 Center St, Portland, OR 97035" +308266,Apple Airpods Headphones,1,150,12/07/19 04:57,"596 10th St, Atlanta, GA 30301" +308267,Wired Headphones,1,11.99,12/26/19 20:44,"499 Forest St, Boston, MA 02215" +308268,Apple Airpods Headphones,1,150,12/22/19 14:54,"183 9th St, Seattle, WA 98101" +308269,27in 4K Gaming Monitor,1,389.99,12/12/19 07:14,"115 Dogwood St, Atlanta, GA 30301" +308270,Macbook Pro Laptop,1,1700,12/03/19 06:57,"812 Adams St, Atlanta, GA 30301" +308271,Wired Headphones,1,11.99,12/20/19 08:20,"839 Cherry St, Los Angeles, CA 90001" +308272,Apple Airpods Headphones,1,150,12/07/19 19:24,"169 Spruce St, Los Angeles, CA 90001" +308273,Google Phone,1,600,12/02/19 20:14,"557 Forest St, Boston, MA 02215" +308274,USB-C Charging Cable,1,11.95,12/28/19 08:59,"762 Park St, Portland, ME 04101" +308275,Bose SoundSport Headphones,1,99.99,12/13/19 12:56,"506 Hill St, San Francisco, CA 94016" +308276,Apple Airpods Headphones,1,150,12/06/19 20:26,"888 10th St, Dallas, TX 75001" +308277,Lightning Charging Cable,1,14.95,12/22/19 18:53,"216 13th St, Los Angeles, CA 90001" +308278,AA Batteries (4-pack),1,3.84,12/02/19 18:10,"705 10th St, Seattle, WA 98101" +308279,Wired Headphones,1,11.99,12/08/19 22:51,"549 13th St, Boston, MA 02215" +308280,Bose SoundSport Headphones,1,99.99,12/27/19 16:42,"205 1st St, Seattle, WA 98101" +308281,iPhone,1,700,12/03/19 16:41,"790 Johnson St, Dallas, TX 75001" +308282,AAA Batteries (4-pack),2,2.99,12/29/19 10:38,"779 Lakeview St, New York City, NY 10001" +308283,AA Batteries (4-pack),2,3.84,12/08/19 16:00,"37 Forest St, San Francisco, CA 94016" +308284,Vareebadd Phone,1,400,12/18/19 11:36,"405 Lake St, Los Angeles, CA 90001" +308284,USB-C Charging Cable,1,11.95,12/18/19 11:36,"405 Lake St, Los Angeles, CA 90001" +308285,AAA Batteries (4-pack),1,2.99,12/08/19 19:55,"945 Sunset St, Boston, MA 02215" +308286,Bose SoundSport Headphones,1,99.99,12/15/19 22:01,"869 Cherry St, Portland, OR 97035" +308287,34in Ultrawide Monitor,1,379.99,12/08/19 19:18,"17 Willow St, San Francisco, CA 94016" +308288,Lightning Charging Cable,1,14.95,12/31/19 15:16,"406 Wilson St, Los Angeles, CA 90001" +308289,AA Batteries (4-pack),1,3.84,12/26/19 17:50,"701 South St, San Francisco, CA 94016" +308290,Wired Headphones,1,11.99,12/03/19 07:27,"946 1st St, Los Angeles, CA 90001" +308291,Lightning Charging Cable,1,14.95,12/05/19 15:55,"743 North St, Austin, TX 73301" +308292,AAA Batteries (4-pack),1,2.99,12/12/19 18:20,"282 Pine St, San Francisco, CA 94016" +308293,USB-C Charging Cable,1,11.95,12/22/19 13:34,"361 8th St, New York City, NY 10001" +308294,AAA Batteries (4-pack),1,2.99,12/25/19 23:10,"235 11th St, Dallas, TX 75001" +308295,USB-C Charging Cable,1,11.95,12/07/19 21:05,"32 Pine St, Los Angeles, CA 90001" +308296,Lightning Charging Cable,1,14.95,12/05/19 14:02,"676 Wilson St, Boston, MA 02215" +308297,Wired Headphones,1,11.99,12/10/19 20:08,"942 North St, Atlanta, GA 30301" +308298,USB-C Charging Cable,1,11.95,12/31/19 20:01,"698 Lakeview St, San Francisco, CA 94016" +308299,Bose SoundSport Headphones,1,99.99,12/04/19 19:29,"74 Willow St, Atlanta, GA 30301" +308300,AA Batteries (4-pack),2,3.84,12/12/19 13:40,"38 6th St, Boston, MA 02215" +308301,Bose SoundSport Headphones,1,99.99,12/11/19 09:36,"426 Adams St, Seattle, WA 98101" +308302,34in Ultrawide Monitor,1,379.99,12/18/19 14:04,"415 Johnson St, New York City, NY 10001" +308303,USB-C Charging Cable,1,11.95,12/06/19 19:42,"75 Wilson St, San Francisco, CA 94016" +308304,AAA Batteries (4-pack),7,2.99,12/01/19 06:25,"437 Ridge St, Dallas, TX 75001" +308305,Apple Airpods Headphones,1,150,12/08/19 15:48,"531 Cedar St, New York City, NY 10001" +308306,AA Batteries (4-pack),2,3.84,12/03/19 00:40,"472 Jackson St, Seattle, WA 98101" +308307,Lightning Charging Cable,1,14.95,12/13/19 21:58,"491 Jackson St, Los Angeles, CA 90001" +308308,USB-C Charging Cable,1,11.95,12/11/19 23:09,"299 Park St, New York City, NY 10001" +308309,AA Batteries (4-pack),1,3.84,12/28/19 06:23,"154 South St, Boston, MA 02215" +308310,USB-C Charging Cable,1,11.95,12/08/19 11:27,"797 Lake St, Los Angeles, CA 90001" +308311,ThinkPad Laptop,1,999.99,12/15/19 08:26,"948 Lincoln St, Portland, ME 04101" +308312,AA Batteries (4-pack),1,3.84,12/16/19 23:16,"920 Lincoln St, Austin, TX 73301" +308313,AAA Batteries (4-pack),2,2.99,12/13/19 08:16,"900 Cherry St, Boston, MA 02215" +308314,20in Monitor,1,109.99,12/25/19 18:16,"451 2nd St, San Francisco, CA 94016" +308315,34in Ultrawide Monitor,1,379.99,12/24/19 10:25,"819 Johnson St, Seattle, WA 98101" +308316,USB-C Charging Cable,1,11.95,12/09/19 18:06,"1 Park St, Los Angeles, CA 90001" +308317,USB-C Charging Cable,1,11.95,12/22/19 14:27,"444 14th St, Los Angeles, CA 90001" +308318,Apple Airpods Headphones,1,150,12/10/19 17:10,"682 Cherry St, Seattle, WA 98101" +308319,USB-C Charging Cable,1,11.95,12/14/19 12:29,"122 Lake St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +308320,34in Ultrawide Monitor,1,379.99,12/25/19 17:01,"412 Cherry St, San Francisco, CA 94016" +308320,Wired Headphones,1,11.99,12/25/19 17:01,"412 Cherry St, San Francisco, CA 94016" +308321,AA Batteries (4-pack),1,3.84,12/26/19 10:07,"652 Dogwood St, New York City, NY 10001" +308322,Lightning Charging Cable,1,14.95,12/27/19 19:17,"668 12th St, Los Angeles, CA 90001" +308323,Wired Headphones,3,11.99,12/24/19 13:35,"894 4th St, San Francisco, CA 94016" +308324,Apple Airpods Headphones,1,150,12/11/19 21:31,"389 Hill St, Seattle, WA 98101" +308325,ThinkPad Laptop,1,999.99,12/04/19 13:07,"642 Sunset St, Dallas, TX 75001" +308326,34in Ultrawide Monitor,1,379.99,12/21/19 07:40,"854 Forest St, Portland, OR 97035" +308327,34in Ultrawide Monitor,1,379.99,12/20/19 01:39,"457 Church St, New York City, NY 10001" +308328,Google Phone,1,600,12/08/19 10:07,"749 2nd St, Los Angeles, CA 90001" +308329,27in FHD Monitor,1,149.99,12/05/19 13:30,"364 Main St, New York City, NY 10001" +308330,Google Phone,1,600,12/10/19 15:31,"588 Pine St, Los Angeles, CA 90001" +308331,Apple Airpods Headphones,1,150,12/05/19 19:17,"555 Hill St, Boston, MA 02215" +308332,USB-C Charging Cable,2,11.95,12/22/19 18:30,"816 Forest St, Los Angeles, CA 90001" +308333,AAA Batteries (4-pack),1,2.99,12/15/19 21:34,"563 1st St, San Francisco, CA 94016" +308334,USB-C Charging Cable,1,11.95,12/13/19 12:51,"431 13th St, Dallas, TX 75001" +308335,USB-C Charging Cable,1,11.95,12/21/19 14:00,"125 River St, Boston, MA 02215" +308336,AA Batteries (4-pack),1,3.84,12/12/19 15:00,"712 South St, San Francisco, CA 94016" +308337,AA Batteries (4-pack),1,3.84,12/15/19 21:55,"266 North St, New York City, NY 10001" +308338,AAA Batteries (4-pack),1,2.99,12/08/19 18:51,"310 Jackson St, Los Angeles, CA 90001" +308339,AAA Batteries (4-pack),3,2.99,12/22/19 13:03,"660 4th St, Los Angeles, CA 90001" +308340,AA Batteries (4-pack),2,3.84,12/27/19 20:52,"334 Church St, Portland, OR 97035" +308341,27in FHD Monitor,1,149.99,12/13/19 20:40,"572 Wilson St, Los Angeles, CA 90001" +308342,AAA Batteries (4-pack),1,2.99,12/25/19 15:42,"214 Hickory St, Boston, MA 02215" +308343,AA Batteries (4-pack),1,3.84,12/15/19 15:54,"435 Jackson St, Boston, MA 02215" +308344,Lightning Charging Cable,1,14.95,12/06/19 18:54,"810 North St, Seattle, WA 98101" +308345,AAA Batteries (4-pack),2,2.99,12/28/19 08:23,"222 Wilson St, Los Angeles, CA 90001" +308346,AA Batteries (4-pack),1,3.84,12/08/19 19:19,"239 6th St, Austin, TX 73301" +308347,Bose SoundSport Headphones,1,99.99,12/29/19 17:02,"609 Forest St, San Francisco, CA 94016" +308348,27in FHD Monitor,1,149.99,12/24/19 14:13,"608 Hickory St, Los Angeles, CA 90001" +308349,AA Batteries (4-pack),1,3.84,12/29/19 08:28,"535 8th St, New York City, NY 10001" +308350,USB-C Charging Cable,1,11.95,12/31/19 14:42,"910 Church St, Atlanta, GA 30301" +308351,Vareebadd Phone,1,400,12/25/19 20:42,"873 Center St, Portland, OR 97035" +308352,Flatscreen TV,1,300,12/11/19 15:23,"109 Center St, Austin, TX 73301" +308353,27in 4K Gaming Monitor,1,389.99,12/02/19 12:54,"431 Park St, Los Angeles, CA 90001" +308354,AA Batteries (4-pack),2,3.84,12/15/19 22:28,"479 Walnut St, Austin, TX 73301" +308355,Wired Headphones,1,11.99,12/29/19 17:36,"797 Lincoln St, San Francisco, CA 94016" +308356,Lightning Charging Cable,1,14.95,12/12/19 22:27,"9 Adams St, Boston, MA 02215" +308357,AAA Batteries (4-pack),2,2.99,12/13/19 22:51,"837 4th St, Los Angeles, CA 90001" +308358,Wired Headphones,1,11.99,12/11/19 09:38,"42 Lakeview St, Los Angeles, CA 90001" +308359,USB-C Charging Cable,1,11.95,12/25/19 23:31,"826 Lincoln St, San Francisco, CA 94016" +308360,USB-C Charging Cable,1,11.95,12/19/19 13:14,"416 Center St, Dallas, TX 75001" +308361,27in 4K Gaming Monitor,1,389.99,12/09/19 13:48,"33 Lakeview St, San Francisco, CA 94016" +308362,Lightning Charging Cable,1,14.95,12/10/19 14:42,"964 Cedar St, Seattle, WA 98101" +308363,Wired Headphones,2,11.99,12/02/19 18:04,"889 13th St, Boston, MA 02215" +308364,Apple Airpods Headphones,1,150,12/29/19 21:20,"795 Cherry St, Atlanta, GA 30301" +308365,USB-C Charging Cable,1,11.95,12/14/19 09:39,"892 6th St, Portland, OR 97035" +308366,Bose SoundSport Headphones,1,99.99,12/21/19 16:47,"334 4th St, Atlanta, GA 30301" +308367,AAA Batteries (4-pack),1,2.99,12/14/19 23:06,"560 Pine St, New York City, NY 10001" +308368,Bose SoundSport Headphones,1,99.99,12/02/19 07:44,"360 13th St, New York City, NY 10001" +308369,AAA Batteries (4-pack),1,2.99,12/19/19 13:18,"961 11th St, San Francisco, CA 94016" +308370,Lightning Charging Cable,1,14.95,12/21/19 18:31,"573 9th St, Atlanta, GA 30301" +308371,AA Batteries (4-pack),1,3.84,12/26/19 12:11,"230 Main St, Boston, MA 02215" +308372,Lightning Charging Cable,1,14.95,12/24/19 15:01,"910 West St, San Francisco, CA 94016" +308373,Google Phone,1,600,12/26/19 21:27,"678 Willow St, Boston, MA 02215" +308374,AA Batteries (4-pack),1,3.84,12/26/19 08:26,"258 Lake St, New York City, NY 10001" +308375,USB-C Charging Cable,1,11.95,12/03/19 19:38,"313 Wilson St, Atlanta, GA 30301" +308376,Lightning Charging Cable,1,14.95,12/05/19 09:10,"638 Main St, San Francisco, CA 94016" +308377,AA Batteries (4-pack),1,3.84,12/26/19 17:44,"313 Madison St, Seattle, WA 98101" +308378,Macbook Pro Laptop,1,1700,12/23/19 12:14,"155 Cherry St, Portland, OR 97035" +308379,AA Batteries (4-pack),1,3.84,12/10/19 09:13,"34 Elm St, Boston, MA 02215" +308380,Lightning Charging Cable,1,14.95,12/26/19 02:47,"119 Cedar St, San Francisco, CA 94016" +308381,27in 4K Gaming Monitor,1,389.99,12/23/19 16:44,"876 Jefferson St, Los Angeles, CA 90001" +308382,Wired Headphones,1,11.99,12/13/19 21:28,"464 4th St, Los Angeles, CA 90001" +308383,27in FHD Monitor,1,149.99,12/10/19 09:26,"239 Pine St, New York City, NY 10001" +308384,AA Batteries (4-pack),1,3.84,12/01/19 13:12,"222 River St, Seattle, WA 98101" +308385,AA Batteries (4-pack),1,3.84,12/01/19 19:54,"898 Center St, Dallas, TX 75001" +308386,Lightning Charging Cable,1,14.95,12/20/19 07:37,"504 Center St, Boston, MA 02215" +308387,LG Dryer,1,600.0,12/28/19 12:23,"750 9th St, Atlanta, GA 30301" +308388,34in Ultrawide Monitor,1,379.99,12/10/19 13:32,"330 Main St, Dallas, TX 75001" +308389,AA Batteries (4-pack),2,3.84,12/06/19 17:46,"586 Pine St, Atlanta, GA 30301" +308390,USB-C Charging Cable,2,11.95,12/09/19 14:11,"504 Pine St, Portland, OR 97035" +308391,Apple Airpods Headphones,1,150,12/10/19 00:09,"226 Center St, Portland, OR 97035" +308392,AAA Batteries (4-pack),1,2.99,12/18/19 15:04,"59 Maple St, Los Angeles, CA 90001" +308392,Wired Headphones,1,11.99,12/18/19 15:04,"59 Maple St, Los Angeles, CA 90001" +308393,34in Ultrawide Monitor,1,379.99,12/01/19 14:09,"795 6th St, San Francisco, CA 94016" +308394,Wired Headphones,1,11.99,12/20/19 16:50,"194 Johnson St, Austin, TX 73301" +308395,AA Batteries (4-pack),1,3.84,12/18/19 18:12,"89 Walnut St, Atlanta, GA 30301" +308396,Wired Headphones,1,11.99,12/21/19 14:07,"767 Lakeview St, San Francisco, CA 94016" +308397,Apple Airpods Headphones,1,150,12/01/19 19:55,"362 Maple St, Austin, TX 73301" +308398,Apple Airpods Headphones,1,150,12/17/19 23:16,"311 12th St, Seattle, WA 98101" +308399,USB-C Charging Cable,1,11.95,12/19/19 14:02,"628 Walnut St, Boston, MA 02215" +308400,Bose SoundSport Headphones,1,99.99,12/13/19 13:51,"374 Lincoln St, Atlanta, GA 30301" +308401,AA Batteries (4-pack),1,3.84,12/17/19 10:43,"570 Lincoln St, Los Angeles, CA 90001" +308402,AAA Batteries (4-pack),1,2.99,12/28/19 14:18,"981 Willow St, San Francisco, CA 94016" +308403,Wired Headphones,1,11.99,12/25/19 19:40,"941 Hickory St, Los Angeles, CA 90001" +308404,Apple Airpods Headphones,1,150,12/16/19 11:53,"797 Cedar St, Seattle, WA 98101" +308405,AAA Batteries (4-pack),2,2.99,12/30/19 07:09,"992 6th St, San Francisco, CA 94016" +308406,27in 4K Gaming Monitor,1,389.99,12/06/19 14:47,"975 Elm St, Dallas, TX 75001" +308407,Lightning Charging Cable,1,14.95,12/27/19 12:41,"639 Lincoln St, San Francisco, CA 94016" +308408,USB-C Charging Cable,1,11.95,12/09/19 09:24,"707 2nd St, Portland, OR 97035" +308409,Bose SoundSport Headphones,1,99.99,12/14/19 20:45,"588 Highland St, Dallas, TX 75001" +308410,AA Batteries (4-pack),1,3.84,12/14/19 23:17,"299 Cherry St, Los Angeles, CA 90001" +308411,Wired Headphones,1,11.99,12/30/19 13:32,"532 Maple St, Seattle, WA 98101" +308412,Wired Headphones,3,11.99,12/27/19 19:35,"592 Maple St, Dallas, TX 75001" +308413,Bose SoundSport Headphones,1,99.99,12/21/19 23:27,"885 Cherry St, Seattle, WA 98101" +308414,AAA Batteries (4-pack),1,2.99,12/11/19 20:39,"663 14th St, Austin, TX 73301" +308415,27in FHD Monitor,1,149.99,12/24/19 09:28,"568 Center St, Seattle, WA 98101" +308416,iPhone,1,700,12/15/19 20:15,"796 Sunset St, New York City, NY 10001" +308416,Lightning Charging Cable,1,14.95,12/15/19 20:15,"796 Sunset St, New York City, NY 10001" +308417,iPhone,1,700,12/08/19 09:20,"922 Jefferson St, Dallas, TX 75001" +308417,Lightning Charging Cable,1,14.95,12/08/19 09:20,"922 Jefferson St, Dallas, TX 75001" +308418,AAA Batteries (4-pack),1,2.99,12/04/19 19:22,"101 5th St, Austin, TX 73301" +308419,Lightning Charging Cable,1,14.95,12/28/19 09:04,"494 Park St, Los Angeles, CA 90001" +308420,Google Phone,1,600,12/07/19 14:26,"715 Ridge St, New York City, NY 10001" +308421,Wired Headphones,1,11.99,12/13/19 18:30,"800 2nd St, San Francisco, CA 94016" +308422,AAA Batteries (4-pack),1,2.99,12/21/19 14:53,"888 Highland St, Atlanta, GA 30301" +308423,27in 4K Gaming Monitor,1,389.99,12/26/19 19:04,"622 Walnut St, Atlanta, GA 30301" +308424,Wired Headphones,1,11.99,12/04/19 10:37,"187 12th St, San Francisco, CA 94016" +308425,27in FHD Monitor,1,149.99,12/06/19 10:35,"346 Lakeview St, Los Angeles, CA 90001" +308426,ThinkPad Laptop,1,999.99,12/14/19 18:32,"601 Lincoln St, Atlanta, GA 30301" +308427,27in FHD Monitor,1,149.99,12/12/19 19:04,"928 West St, Atlanta, GA 30301" +308428,ThinkPad Laptop,1,999.99,12/21/19 07:38,"615 4th St, Boston, MA 02215" +308429,AA Batteries (4-pack),1,3.84,12/11/19 02:26,"62 1st St, Seattle, WA 98101" +308430,Wired Headphones,1,11.99,12/31/19 01:47,"874 14th St, San Francisco, CA 94016" +308431,27in FHD Monitor,1,149.99,12/27/19 19:27,"410 2nd St, Los Angeles, CA 90001" +308432,Wired Headphones,1,11.99,12/07/19 21:09,"530 Highland St, Dallas, TX 75001" +308433,Flatscreen TV,1,300,12/07/19 17:54,"926 Cherry St, San Francisco, CA 94016" +308434,Wired Headphones,1,11.99,12/26/19 16:16,"94 Hill St, New York City, NY 10001" +308435,27in 4K Gaming Monitor,1,389.99,12/09/19 22:11,"84 Jefferson St, San Francisco, CA 94016" +308436,Bose SoundSport Headphones,1,99.99,12/21/19 18:46,"817 Forest St, New York City, NY 10001" +308437,20in Monitor,1,109.99,12/02/19 22:06,"863 South St, Dallas, TX 75001" +308438,AA Batteries (4-pack),1,3.84,12/11/19 05:58,"456 Maple St, New York City, NY 10001" +308439,Lightning Charging Cable,1,14.95,12/03/19 17:01,"662 14th St, Seattle, WA 98101" +,,,,, +308440,AAA Batteries (4-pack),1,2.99,12/04/19 16:06,"3 Cedar St, Austin, TX 73301" +308441,Wired Headphones,1,11.99,12/27/19 14:37,"391 River St, San Francisco, CA 94016" +308442,AAA Batteries (4-pack),3,2.99,12/12/19 20:19,"421 Washington St, San Francisco, CA 94016" +308443,27in FHD Monitor,1,149.99,12/31/19 18:31,"647 Walnut St, San Francisco, CA 94016" +308444,AA Batteries (4-pack),1,3.84,12/25/19 10:20,"354 4th St, Boston, MA 02215" +308445,Wired Headphones,1,11.99,12/02/19 08:29,"584 Highland St, San Francisco, CA 94016" +308445,27in 4K Gaming Monitor,1,389.99,12/02/19 08:29,"584 Highland St, San Francisco, CA 94016" +308446,USB-C Charging Cable,2,11.95,12/24/19 07:08,"70 Meadow St, Los Angeles, CA 90001" +308447,Lightning Charging Cable,1,14.95,12/02/19 11:19,"69 Adams St, Boston, MA 02215" +308448,Lightning Charging Cable,2,14.95,12/21/19 12:21,"499 Center St, Dallas, TX 75001" +308449,AA Batteries (4-pack),2,3.84,12/31/19 12:41,"830 Hickory St, Los Angeles, CA 90001" +308450,Apple Airpods Headphones,1,150,12/25/19 13:33,"464 Chestnut St, Dallas, TX 75001" +308451,AAA Batteries (4-pack),1,2.99,12/19/19 21:45,"309 Wilson St, Austin, TX 73301" +308452,Lightning Charging Cable,1,14.95,12/23/19 19:57,"367 Lake St, Portland, OR 97035" +308453,Wired Headphones,2,11.99,12/13/19 21:55,"661 Elm St, San Francisco, CA 94016" +308454,Lightning Charging Cable,1,14.95,12/17/19 16:47,"566 Adams St, Portland, OR 97035" +308455,Apple Airpods Headphones,1,150,12/19/19 13:08,"97 Sunset St, Boston, MA 02215" +308456,Lightning Charging Cable,1,14.95,12/18/19 11:58,"623 North St, Dallas, TX 75001" +308457,USB-C Charging Cable,1,11.95,12/07/19 08:19,"687 Wilson St, San Francisco, CA 94016" +308458,AAA Batteries (4-pack),1,2.99,12/31/19 02:17,"893 Lincoln St, New York City, NY 10001" +308459,Apple Airpods Headphones,1,150,12/08/19 22:28,"39 13th St, Atlanta, GA 30301" +308460,34in Ultrawide Monitor,1,379.99,12/19/19 06:51,"318 Hickory St, Boston, MA 02215" +308461,AA Batteries (4-pack),1,3.84,12/31/19 15:10,"872 Spruce St, Boston, MA 02215" +308462,Apple Airpods Headphones,1,150,12/02/19 11:58,"582 Hickory St, Los Angeles, CA 90001" +308462,Lightning Charging Cable,1,14.95,12/02/19 11:58,"582 Hickory St, Los Angeles, CA 90001" +308463,USB-C Charging Cable,2,11.95,12/04/19 13:06,"476 Chestnut St, San Francisco, CA 94016" +308464,AA Batteries (4-pack),1,3.84,12/15/19 16:04,"706 4th St, Los Angeles, CA 90001" +308465,Apple Airpods Headphones,1,150,12/14/19 23:13,"648 Lincoln St, Los Angeles, CA 90001" +308466,Wired Headphones,1,11.99,12/27/19 11:21,"327 5th St, Dallas, TX 75001" +308467,Bose SoundSport Headphones,1,99.99,12/21/19 15:11,"193 River St, Atlanta, GA 30301" +308468,27in FHD Monitor,1,149.99,12/10/19 08:42,"814 Lincoln St, San Francisco, CA 94016" +308469,USB-C Charging Cable,1,11.95,12/24/19 10:39,"729 Lake St, New York City, NY 10001" +308470,USB-C Charging Cable,1,11.95,12/28/19 12:49,"531 7th St, Atlanta, GA 30301" +308471,AA Batteries (4-pack),1,3.84,12/23/19 20:16,"751 Maple St, Austin, TX 73301" +308471,Macbook Pro Laptop,1,1700,12/23/19 20:16,"751 Maple St, Austin, TX 73301" +308472,AA Batteries (4-pack),1,3.84,12/18/19 09:20,"527 Hill St, Los Angeles, CA 90001" +308473,AA Batteries (4-pack),1,3.84,12/05/19 14:57,"362 Johnson St, San Francisco, CA 94016" +308474,AA Batteries (4-pack),1,3.84,12/04/19 14:09,"31 Main St, Atlanta, GA 30301" +308475,27in 4K Gaming Monitor,1,389.99,12/02/19 14:02,"374 Ridge St, Dallas, TX 75001" +308476,Google Phone,1,600,12/23/19 11:18,"921 Elm St, Los Angeles, CA 90001" +308477,Apple Airpods Headphones,1,150,12/14/19 16:02,"871 Highland St, New York City, NY 10001" +308478,AAA Batteries (4-pack),1,2.99,12/25/19 00:09,"432 13th St, Los Angeles, CA 90001" +308479,Apple Airpods Headphones,1,150,12/27/19 14:53,"765 Willow St, San Francisco, CA 94016" +308480,Apple Airpods Headphones,1,150,12/18/19 06:45,"229 Chestnut St, San Francisco, CA 94016" +308480,Apple Airpods Headphones,1,150,12/18/19 06:45,"229 Chestnut St, San Francisco, CA 94016" +308481,Wired Headphones,1,11.99,12/19/19 18:50,"430 Hickory St, San Francisco, CA 94016" +308482,Wired Headphones,1,11.99,12/13/19 11:27,"67 Madison St, Seattle, WA 98101" +308483,USB-C Charging Cable,1,11.95,12/26/19 12:31,"896 Chestnut St, New York City, NY 10001" +308484,AAA Batteries (4-pack),1,2.99,12/29/19 21:25,"116 Church St, Atlanta, GA 30301" +308485,USB-C Charging Cable,1,11.95,12/01/19 11:08,"927 13th St, New York City, NY 10001" +308486,27in 4K Gaming Monitor,1,389.99,12/06/19 21:12,"736 Spruce St, Los Angeles, CA 90001" +308487,Lightning Charging Cable,1,14.95,12/07/19 22:47,"914 Willow St, Los Angeles, CA 90001" +308488,Apple Airpods Headphones,1,150,12/27/19 16:58,"229 Lake St, San Francisco, CA 94016" +308489,Google Phone,1,600,12/18/19 16:57,"996 Forest St, Boston, MA 02215" +308489,Bose SoundSport Headphones,1,99.99,12/18/19 16:57,"996 Forest St, Boston, MA 02215" +308490,AA Batteries (4-pack),1,3.84,12/03/19 15:57,"970 Hickory St, San Francisco, CA 94016" +308491,USB-C Charging Cable,2,11.95,12/26/19 09:07,"576 Center St, Los Angeles, CA 90001" +308492,USB-C Charging Cable,1,11.95,12/08/19 16:09,"479 Cedar St, Atlanta, GA 30301" +308493,Wired Headphones,1,11.99,12/27/19 17:54,"72 13th St, Dallas, TX 75001" +308494,Lightning Charging Cable,1,14.95,12/24/19 17:24,"347 Washington St, Los Angeles, CA 90001" +308495,AAA Batteries (4-pack),2,2.99,12/24/19 12:49,"175 Adams St, New York City, NY 10001" +308496,AAA Batteries (4-pack),3,2.99,12/22/19 23:35,"405 13th St, Portland, ME 04101" +308497,27in FHD Monitor,1,149.99,12/02/19 12:22,"650 Pine St, Portland, OR 97035" +308498,Lightning Charging Cable,1,14.95,12/25/19 12:58,"451 Pine St, Los Angeles, CA 90001" +308499,AAA Batteries (4-pack),2,2.99,12/29/19 19:57,"838 Adams St, Atlanta, GA 30301" +308500,AA Batteries (4-pack),1,3.84,12/18/19 19:36,"779 Dogwood St, San Francisco, CA 94016" +308501,USB-C Charging Cable,1,11.95,12/04/19 14:04,"346 Chestnut St, Los Angeles, CA 90001" +308502,Bose SoundSport Headphones,1,99.99,12/30/19 14:35,"860 Spruce St, San Francisco, CA 94016" +308503,Vareebadd Phone,1,400,12/15/19 10:13,"727 Walnut St, San Francisco, CA 94016" +308503,USB-C Charging Cable,1,11.95,12/15/19 10:13,"727 Walnut St, San Francisco, CA 94016" +308504,Wired Headphones,1,11.99,12/09/19 08:58,"610 Wilson St, San Francisco, CA 94016" +308505,Lightning Charging Cable,1,14.95,12/31/19 08:24,"128 Main St, Portland, ME 04101" +308506,AA Batteries (4-pack),1,3.84,12/20/19 17:58,"184 Johnson St, San Francisco, CA 94016" +308507,AA Batteries (4-pack),1,3.84,12/09/19 11:41,"101 North St, Atlanta, GA 30301" +308508,Wired Headphones,1,11.99,12/10/19 20:10,"91 Dogwood St, New York City, NY 10001" +308509,Apple Airpods Headphones,1,150,12/19/19 12:50,"239 11th St, San Francisco, CA 94016" +308510,27in FHD Monitor,1,149.99,12/14/19 16:51,"434 11th St, New York City, NY 10001" +308511,Wired Headphones,1,11.99,12/24/19 18:40,"551 Elm St, San Francisco, CA 94016" +308512,Bose SoundSport Headphones,1,99.99,12/10/19 20:31,"46 7th St, San Francisco, CA 94016" +308513,USB-C Charging Cable,1,11.95,12/26/19 15:57,"646 South St, Boston, MA 02215" +308514,Wired Headphones,1,11.99,12/17/19 11:10,"795 Cherry St, San Francisco, CA 94016" +308515,AA Batteries (4-pack),1,3.84,12/01/19 14:56,"838 10th St, New York City, NY 10001" +308516,Lightning Charging Cable,1,14.95,12/04/19 23:49,"111 9th St, Dallas, TX 75001" +308517,Apple Airpods Headphones,1,150,12/29/19 19:14,"202 Willow St, New York City, NY 10001" +308518,LG Dryer,1,600.0,12/11/19 18:47,"276 Jefferson St, San Francisco, CA 94016" +308519,Google Phone,1,600,12/16/19 17:50,"89 West St, Los Angeles, CA 90001" +308520,27in 4K Gaming Monitor,1,389.99,12/22/19 16:49,"843 Ridge St, Boston, MA 02215" +308521,Apple Airpods Headphones,1,150,12/17/19 16:16,"612 Johnson St, Los Angeles, CA 90001" +308522,AAA Batteries (4-pack),1,2.99,12/20/19 12:14,"593 7th St, Seattle, WA 98101" +308523,Lightning Charging Cable,1,14.95,12/25/19 15:18,"262 Washington St, Dallas, TX 75001" +308524,iPhone,1,700,12/25/19 12:12,"815 5th St, San Francisco, CA 94016" +308525,Apple Airpods Headphones,1,150,12/24/19 09:02,"168 Maple St, Portland, OR 97035" +308526,AA Batteries (4-pack),1,3.84,12/14/19 06:08,"578 Lakeview St, Boston, MA 02215" +308527,34in Ultrawide Monitor,1,379.99,12/28/19 15:49,"499 13th St, Seattle, WA 98101" +308528,Lightning Charging Cable,1,14.95,12/04/19 09:33,"30 Wilson St, San Francisco, CA 94016" +308529,27in FHD Monitor,1,149.99,12/29/19 14:07,"270 6th St, San Francisco, CA 94016" +308530,AAA Batteries (4-pack),1,2.99,12/02/19 14:11,"238 1st St, Portland, OR 97035" +308531,iPhone,1,700,12/20/19 16:08,"907 Chestnut St, Atlanta, GA 30301" +308531,Lightning Charging Cable,1,14.95,12/20/19 16:08,"907 Chestnut St, Atlanta, GA 30301" +308532,34in Ultrawide Monitor,1,379.99,12/15/19 16:36,"314 Park St, Dallas, TX 75001" +308533,AA Batteries (4-pack),1,3.84,12/28/19 22:05,"3 Walnut St, San Francisco, CA 94016" +308534,USB-C Charging Cable,1,11.95,12/17/19 13:12,"836 River St, San Francisco, CA 94016" +308535,Apple Airpods Headphones,1,150,12/18/19 17:26,"764 6th St, San Francisco, CA 94016" +308536,AAA Batteries (4-pack),1,2.99,12/19/19 21:55,"198 14th St, Boston, MA 02215" +308537,AA Batteries (4-pack),1,3.84,12/19/19 20:39,"61 14th St, Seattle, WA 98101" +308538,Apple Airpods Headphones,1,150,12/23/19 22:57,"564 Meadow St, Boston, MA 02215" +308539,Lightning Charging Cable,1,14.95,12/17/19 17:54,"279 11th St, San Francisco, CA 94016" +308540,Bose SoundSport Headphones,1,99.99,12/19/19 08:56,"556 South St, San Francisco, CA 94016" +308541,Macbook Pro Laptop,1,1700,12/09/19 22:47,"73 West St, Atlanta, GA 30301" +308542,Lightning Charging Cable,1,14.95,12/07/19 12:34,"42 River St, New York City, NY 10001" +308543,USB-C Charging Cable,1,11.95,12/30/19 19:06,"631 Dogwood St, Seattle, WA 98101" +308544,Lightning Charging Cable,1,14.95,12/24/19 15:53,"966 Hill St, New York City, NY 10001" +308545,ThinkPad Laptop,1,999.99,12/11/19 08:28,"114 Jefferson St, San Francisco, CA 94016" +308546,Flatscreen TV,1,300,12/13/19 16:30,"871 River St, New York City, NY 10001" +308547,Google Phone,1,600,12/28/19 10:39,"129 Meadow St, Seattle, WA 98101" +308547,USB-C Charging Cable,1,11.95,12/28/19 10:39,"129 Meadow St, Seattle, WA 98101" +308548,USB-C Charging Cable,1,11.95,12/11/19 21:51,"717 Jackson St, Boston, MA 02215" +308549,AAA Batteries (4-pack),1,2.99,12/02/19 14:33,"518 6th St, Los Angeles, CA 90001" +308550,USB-C Charging Cable,1,11.95,12/31/19 01:56,"233 Cherry St, Los Angeles, CA 90001" +308551,iPhone,1,700,12/02/19 18:26,"806 7th St, Atlanta, GA 30301" +308551,Lightning Charging Cable,1,14.95,12/02/19 18:26,"806 7th St, Atlanta, GA 30301" +308552,Lightning Charging Cable,1,14.95,12/13/19 16:53,"312 Dogwood St, New York City, NY 10001" +308553,Apple Airpods Headphones,1,150,12/27/19 13:53,"182 Highland St, Los Angeles, CA 90001" +308554,AA Batteries (4-pack),3,3.84,12/28/19 18:25,"148 River St, Los Angeles, CA 90001" +308555,AAA Batteries (4-pack),1,2.99,12/15/19 20:43,"608 Meadow St, San Francisco, CA 94016" +308556,Wired Headphones,1,11.99,12/23/19 18:18,"334 North St, San Francisco, CA 94016" +308557,Google Phone,1,600,12/22/19 19:18,"32 7th St, Los Angeles, CA 90001" +308558,Apple Airpods Headphones,1,150,12/21/19 16:31,"566 Park St, San Francisco, CA 94016" +308559,Apple Airpods Headphones,1,150,12/23/19 17:34,"622 1st St, Dallas, TX 75001" +308560,Google Phone,1,600,12/04/19 22:21,"134 South St, Austin, TX 73301" +308560,Wired Headphones,2,11.99,12/04/19 22:21,"134 South St, Austin, TX 73301" +308561,Vareebadd Phone,1,400,12/17/19 17:27,"10 1st St, Los Angeles, CA 90001" +308562,ThinkPad Laptop,1,999.99,12/25/19 22:47,"127 Hickory St, San Francisco, CA 94016" +308563,USB-C Charging Cable,1,11.95,12/27/19 16:12,"468 13th St, Los Angeles, CA 90001" +308564,34in Ultrawide Monitor,1,379.99,12/17/19 17:50,"919 Cedar St, San Francisco, CA 94016" +308565,Wired Headphones,1,11.99,12/06/19 17:53,"518 14th St, New York City, NY 10001" +308566,Wired Headphones,1,11.99,12/20/19 01:02,"242 Hill St, Portland, OR 97035" +308567,Google Phone,1,600,12/15/19 20:21,"755 Church St, Portland, OR 97035" +308568,AAA Batteries (4-pack),1,2.99,12/07/19 21:17,"357 Chestnut St, San Francisco, CA 94016" +308569,Lightning Charging Cable,1,14.95,12/22/19 20:51,"762 South St, Los Angeles, CA 90001" +308570,Lightning Charging Cable,1,14.95,12/28/19 12:13,"60 Pine St, Los Angeles, CA 90001" +308571,20in Monitor,1,109.99,12/30/19 11:55,"270 Lake St, Atlanta, GA 30301" +308572,27in FHD Monitor,1,149.99,12/24/19 16:35,"155 Willow St, Los Angeles, CA 90001" +308573,AAA Batteries (4-pack),1,2.99,12/30/19 15:05,"970 Church St, New York City, NY 10001" +308574,AA Batteries (4-pack),1,3.84,12/13/19 15:56,"11 Maple St, Los Angeles, CA 90001" +308575,USB-C Charging Cable,1,11.95,12/30/19 20:20,"479 Elm St, Boston, MA 02215" +308576,AAA Batteries (4-pack),1,2.99,12/13/19 18:54,"377 6th St, San Francisco, CA 94016" +308577,AA Batteries (4-pack),2,3.84,12/10/19 12:39,"60 Highland St, Atlanta, GA 30301" +308578,USB-C Charging Cable,1,11.95,12/04/19 22:49,"170 South St, Los Angeles, CA 90001" +308579,Flatscreen TV,1,300,12/12/19 13:20,"728 12th St, Los Angeles, CA 90001" +308580,Lightning Charging Cable,1,14.95,12/04/19 09:35,"81 Highland St, San Francisco, CA 94016" +308581,Google Phone,1,600,12/16/19 11:45,"335 2nd St, Portland, OR 97035" +308581,34in Ultrawide Monitor,1,379.99,12/16/19 11:45,"335 2nd St, Portland, OR 97035" +308582,AAA Batteries (4-pack),1,2.99,12/23/19 07:21,"218 Chestnut St, Austin, TX 73301" +308583,34in Ultrawide Monitor,1,379.99,12/29/19 11:34,"869 Forest St, Los Angeles, CA 90001" +308584,Wired Headphones,1,11.99,12/30/19 11:13,"515 Hill St, Atlanta, GA 30301" +308585,20in Monitor,2,109.99,12/05/19 04:57,"770 Lincoln St, Los Angeles, CA 90001" +308586,ThinkPad Laptop,1,999.99,12/31/19 07:42,"844 Pine St, Boston, MA 02215" +308587,Bose SoundSport Headphones,1,99.99,12/21/19 08:22,"204 Main St, Los Angeles, CA 90001" +308588,Wired Headphones,1,11.99,12/22/19 05:32,"942 Walnut St, San Francisco, CA 94016" +308589,AAA Batteries (4-pack),1,2.99,12/31/19 18:28,"176 Hill St, San Francisco, CA 94016" +308590,27in FHD Monitor,1,149.99,12/21/19 12:29,"733 Cherry St, Portland, OR 97035" +308591,AAA Batteries (4-pack),2,2.99,12/24/19 10:15,"525 Church St, Los Angeles, CA 90001" +308592,27in FHD Monitor,1,149.99,12/18/19 21:20,"137 Spruce St, Los Angeles, CA 90001" +308593,27in FHD Monitor,1,149.99,12/04/19 22:33,"273 Center St, Dallas, TX 75001" +308594,AA Batteries (4-pack),2,3.84,12/14/19 21:51,"224 River St, New York City, NY 10001" +308595,Wired Headphones,1,11.99,12/06/19 22:34,"144 11th St, San Francisco, CA 94016" +308596,USB-C Charging Cable,1,11.95,12/24/19 12:52,"544 Church St, Dallas, TX 75001" +308597,Lightning Charging Cable,1,14.95,12/07/19 21:02,"4 Cedar St, Los Angeles, CA 90001" +308598,Bose SoundSport Headphones,1,99.99,12/07/19 12:42,"441 Center St, Los Angeles, CA 90001" +308599,AAA Batteries (4-pack),1,2.99,12/24/19 12:33,"215 Lakeview St, Los Angeles, CA 90001" +308600,AAA Batteries (4-pack),1,2.99,12/09/19 19:00,"766 Maple St, Atlanta, GA 30301" +308601,Lightning Charging Cable,2,14.95,12/25/19 10:41,"323 Jefferson St, Dallas, TX 75001" +308602,Lightning Charging Cable,1,14.95,12/12/19 21:35,"441 Walnut St, Boston, MA 02215" +308603,27in FHD Monitor,1,149.99,12/31/19 21:38,"79 5th St, Boston, MA 02215" +308604,AA Batteries (4-pack),1,3.84,12/06/19 23:06,"445 Main St, San Francisco, CA 94016" +308605,27in FHD Monitor,1,149.99,12/02/19 23:24,"571 Meadow St, Los Angeles, CA 90001" +308606,Lightning Charging Cable,1,14.95,12/06/19 20:42,"692 8th St, Los Angeles, CA 90001" +308607,27in FHD Monitor,1,149.99,12/07/19 07:10,"72 Center St, Los Angeles, CA 90001" +308608,Google Phone,1,600,12/22/19 14:00,"436 Sunset St, New York City, NY 10001" +308609,AAA Batteries (4-pack),1,2.99,12/21/19 18:45,"853 Center St, San Francisco, CA 94016" +308610,AAA Batteries (4-pack),1,2.99,12/14/19 14:21,"842 Main St, San Francisco, CA 94016" +308611,27in FHD Monitor,1,149.99,12/20/19 08:38,"227 Chestnut St, New York City, NY 10001" +308612,USB-C Charging Cable,1,11.95,12/05/19 17:42,"352 11th St, San Francisco, CA 94016" +308613,Lightning Charging Cable,1,14.95,12/17/19 10:51,"563 10th St, New York City, NY 10001" +308614,AAA Batteries (4-pack),1,2.99,12/28/19 19:24,"668 Highland St, Los Angeles, CA 90001" +308615,Wired Headphones,1,11.99,12/04/19 14:13,"482 Elm St, San Francisco, CA 94016" +308616,20in Monitor,1,109.99,12/04/19 08:28,"503 5th St, Portland, OR 97035" +308617,Lightning Charging Cable,1,14.95,12/09/19 12:35,"727 Chestnut St, Los Angeles, CA 90001" +308618,Bose SoundSport Headphones,1,99.99,12/23/19 22:45,"747 Walnut St, Los Angeles, CA 90001" +308619,USB-C Charging Cable,1,11.95,12/09/19 20:57,"497 10th St, Portland, OR 97035" +308620,Lightning Charging Cable,1,14.95,12/19/19 17:11,"841 North St, Seattle, WA 98101" +308621,AAA Batteries (4-pack),2,2.99,12/20/19 08:59,"735 South St, New York City, NY 10001" +308622,iPhone,1,700,12/18/19 12:27,"213 Chestnut St, New York City, NY 10001" +308622,Lightning Charging Cable,2,14.95,12/18/19 12:27,"213 Chestnut St, New York City, NY 10001" +308623,Lightning Charging Cable,1,14.95,12/01/19 13:36,"29 4th St, Seattle, WA 98101" +308624,AAA Batteries (4-pack),1,2.99,12/22/19 19:03,"393 Jackson St, Los Angeles, CA 90001" +308625,ThinkPad Laptop,1,999.99,12/07/19 13:45,"367 11th St, Atlanta, GA 30301" +308626,Google Phone,1,600,12/09/19 17:47,"537 North St, Los Angeles, CA 90001" +308627,AAA Batteries (4-pack),2,2.99,12/25/19 03:53,"514 Lake St, Seattle, WA 98101" +308628,Wired Headphones,1,11.99,12/24/19 05:00,"391 Adams St, Atlanta, GA 30301" +308629,Apple Airpods Headphones,1,150,12/02/19 20:44,"621 Church St, Los Angeles, CA 90001" +308630,Wired Headphones,1,11.99,12/04/19 14:39,"229 Dogwood St, San Francisco, CA 94016" +308631,20in Monitor,1,109.99,12/28/19 16:28,"84 13th St, New York City, NY 10001" +308632,USB-C Charging Cable,1,11.95,12/12/19 09:40,"750 North St, San Francisco, CA 94016" +308633,34in Ultrawide Monitor,1,379.99,12/11/19 13:21,"381 River St, San Francisco, CA 94016" +308634,Bose SoundSport Headphones,1,99.99,12/26/19 08:25,"149 South St, Atlanta, GA 30301" +308635,USB-C Charging Cable,1,11.95,12/27/19 09:32,"556 14th St, Boston, MA 02215" +308636,AAA Batteries (4-pack),1,2.99,12/08/19 16:39,"967 Madison St, Portland, OR 97035" +308637,AAA Batteries (4-pack),1,2.99,12/04/19 13:19,"495 West St, San Francisco, CA 94016" +308638,ThinkPad Laptop,1,999.99,12/26/19 08:37,"250 Meadow St, New York City, NY 10001" +308639,Lightning Charging Cable,1,14.95,12/13/19 15:46,"462 Maple St, Boston, MA 02215" +308640,AA Batteries (4-pack),1,3.84,12/02/19 20:15,"87 Lake St, Boston, MA 02215" +308641,27in 4K Gaming Monitor,1,389.99,12/17/19 19:05,"708 Pine St, Seattle, WA 98101" +308642,USB-C Charging Cable,1,11.95,12/27/19 09:59,"345 4th St, San Francisco, CA 94016" +308643,USB-C Charging Cable,1,11.95,12/21/19 18:01,"453 Forest St, San Francisco, CA 94016" +308644,AAA Batteries (4-pack),2,2.99,12/13/19 18:02,"612 Spruce St, Dallas, TX 75001" +308645,Wired Headphones,1,11.99,12/06/19 21:19,"319 14th St, San Francisco, CA 94016" +308646,AAA Batteries (4-pack),1,2.99,12/31/19 21:53,"655 North St, Atlanta, GA 30301" +308647,USB-C Charging Cable,1,11.95,12/04/19 15:23,"127 Sunset St, San Francisco, CA 94016" +308648,AA Batteries (4-pack),1,3.84,12/26/19 21:44,"719 Wilson St, Portland, OR 97035" +308649,AA Batteries (4-pack),1,3.84,12/20/19 08:34,"28 14th St, San Francisco, CA 94016" +308650,AA Batteries (4-pack),2,3.84,12/12/19 15:15,"966 Spruce St, Boston, MA 02215" +308651,AA Batteries (4-pack),2,3.84,12/22/19 09:54,"117 Elm St, Boston, MA 02215" +308652,USB-C Charging Cable,1,11.95,12/02/19 08:01,"103 Lake St, Austin, TX 73301" +308653,AA Batteries (4-pack),2,3.84,12/21/19 17:37,"442 Forest St, San Francisco, CA 94016" +308654,Lightning Charging Cable,1,14.95,12/07/19 12:46,"562 Willow St, New York City, NY 10001" +308655,Lightning Charging Cable,1,14.95,12/17/19 16:56,"642 Center St, Atlanta, GA 30301" +308656,AAA Batteries (4-pack),2,2.99,12/08/19 09:26,"237 4th St, San Francisco, CA 94016" +308657,Wired Headphones,1,11.99,12/19/19 15:30,"89 Maple St, Boston, MA 02215" +308658,Wired Headphones,1,11.99,12/08/19 16:46,"896 Cherry St, Los Angeles, CA 90001" +308659,27in 4K Gaming Monitor,1,389.99,12/28/19 16:32,"972 West St, San Francisco, CA 94016" +308660,USB-C Charging Cable,1,11.95,12/17/19 08:18,"937 Cedar St, Portland, ME 04101" +308661,USB-C Charging Cable,1,11.95,12/26/19 13:25,"574 6th St, Atlanta, GA 30301" +308662,20in Monitor,1,109.99,12/05/19 22:55,"879 Spruce St, San Francisco, CA 94016" +308663,34in Ultrawide Monitor,1,379.99,12/08/19 13:34,"713 4th St, Los Angeles, CA 90001" +308664,AA Batteries (4-pack),1,3.84,12/13/19 14:27,"453 Park St, Portland, OR 97035" +308665,Lightning Charging Cable,1,14.95,12/17/19 10:54,"844 Forest St, Los Angeles, CA 90001" +308666,Apple Airpods Headphones,1,150,12/24/19 20:11,"165 West St, San Francisco, CA 94016" +308667,27in FHD Monitor,1,149.99,12/30/19 22:23,"11 9th St, Austin, TX 73301" +308668,USB-C Charging Cable,1,11.95,12/06/19 14:10,"161 7th St, San Francisco, CA 94016" +308669,USB-C Charging Cable,1,11.95,12/17/19 14:25,"977 Walnut St, San Francisco, CA 94016" +308670,AA Batteries (4-pack),1,3.84,12/30/19 18:29,"685 5th St, Dallas, TX 75001" +308671,AAA Batteries (4-pack),1,2.99,12/27/19 10:28,"484 Center St, New York City, NY 10001" +308672,AA Batteries (4-pack),1,3.84,12/30/19 07:59,"737 Center St, San Francisco, CA 94016" +308673,ThinkPad Laptop,1,999.99,12/09/19 19:20,"5 10th St, Dallas, TX 75001" +308674,AA Batteries (4-pack),1,3.84,12/12/19 00:09,"202 2nd St, San Francisco, CA 94016" +308675,20in Monitor,1,109.99,12/15/19 20:54,"311 Spruce St, San Francisco, CA 94016" +308676,Google Phone,1,600,12/06/19 10:09,"362 Jefferson St, Dallas, TX 75001" +308676,Apple Airpods Headphones,1,150,12/06/19 10:09,"362 Jefferson St, Dallas, TX 75001" +308677,Apple Airpods Headphones,1,150,12/18/19 16:27,"191 Church St, San Francisco, CA 94016" +308678,AAA Batteries (4-pack),1,2.99,12/30/19 12:05,"530 Madison St, Dallas, TX 75001" +308679,AAA Batteries (4-pack),1,2.99,12/03/19 19:46,"857 Meadow St, Boston, MA 02215" +308680,USB-C Charging Cable,1,11.95,12/31/19 13:14,"377 Cedar St, Dallas, TX 75001" +308681,AA Batteries (4-pack),1,3.84,12/01/19 16:05,"137 13th St, Los Angeles, CA 90001" +308682,Google Phone,1,600,12/22/19 23:56,"331 5th St, Los Angeles, CA 90001" +308683,USB-C Charging Cable,1,11.95,12/20/19 23:17,"791 Walnut St, New York City, NY 10001" +308684,Macbook Pro Laptop,1,1700,12/22/19 11:12,"957 Main St, Portland, OR 97035" +308685,Google Phone,1,600,12/13/19 23:29,"991 Walnut St, Dallas, TX 75001" +308686,Wired Headphones,1,11.99,12/17/19 20:54,"986 Johnson St, San Francisco, CA 94016" +308687,USB-C Charging Cable,1,11.95,12/19/19 12:20,"957 Cherry St, San Francisco, CA 94016" +308688,AA Batteries (4-pack),2,3.84,12/16/19 07:35,"609 Center St, Austin, TX 73301" +308689,ThinkPad Laptop,1,999.99,12/22/19 19:32,"84 4th St, San Francisco, CA 94016" +308690,Lightning Charging Cable,1,14.95,12/08/19 11:57,"739 11th St, Los Angeles, CA 90001" +308691,iPhone,1,700,12/29/19 13:43,"188 Jefferson St, San Francisco, CA 94016" +308692,Google Phone,1,600,12/08/19 16:21,"171 Elm St, San Francisco, CA 94016" +308692,USB-C Charging Cable,1,11.95,12/08/19 16:21,"171 Elm St, San Francisco, CA 94016" +308693,Lightning Charging Cable,1,14.95,12/27/19 20:33,"471 Johnson St, Dallas, TX 75001" +308694,Lightning Charging Cable,1,14.95,12/12/19 19:38,"270 Dogwood St, Los Angeles, CA 90001" +308695,27in 4K Gaming Monitor,1,389.99,12/23/19 21:27,"119 Highland St, Seattle, WA 98101" +308696,Apple Airpods Headphones,1,150,12/18/19 15:51,"131 Lakeview St, New York City, NY 10001" +308697,Lightning Charging Cable,1,14.95,12/10/19 10:27,"514 Willow St, Los Angeles, CA 90001" +308698,iPhone,1,700,12/22/19 01:07,"888 Park St, Austin, TX 73301" +308698,Wired Headphones,1,11.99,12/22/19 01:07,"888 Park St, Austin, TX 73301" +308699,27in 4K Gaming Monitor,1,389.99,12/10/19 16:17,"211 Chestnut St, Austin, TX 73301" +308700,Lightning Charging Cable,1,14.95,12/28/19 17:35,"733 Elm St, San Francisco, CA 94016" +308701,AAA Batteries (4-pack),1,2.99,12/14/19 09:44,"14 Jackson St, Los Angeles, CA 90001" +308702,Bose SoundSport Headphones,1,99.99,12/15/19 07:39,"197 Walnut St, Boston, MA 02215" +308703,AAA Batteries (4-pack),2,2.99,12/05/19 15:54,"529 Jackson St, Dallas, TX 75001" +308704,AA Batteries (4-pack),1,3.84,12/25/19 20:38,"194 Church St, Atlanta, GA 30301" +308705,Google Phone,1,600,12/25/19 20:56,"321 Walnut St, New York City, NY 10001" +308706,Lightning Charging Cable,1,14.95,12/14/19 23:53,"853 8th St, Boston, MA 02215" +308707,Apple Airpods Headphones,1,150,12/29/19 16:57,"415 Cherry St, Los Angeles, CA 90001" +308708,AA Batteries (4-pack),1,3.84,12/07/19 11:32,"516 10th St, San Francisco, CA 94016" +308709,Lightning Charging Cable,1,14.95,12/12/19 10:02,"877 13th St, Los Angeles, CA 90001" +308710,ThinkPad Laptop,1,999.99,12/24/19 10:54,"796 Hill St, San Francisco, CA 94016" +308711,AA Batteries (4-pack),1,3.84,12/29/19 11:22,"474 Jefferson St, Seattle, WA 98101" +308712,27in FHD Monitor,1,149.99,12/19/19 10:04,"162 Lincoln St, Seattle, WA 98101" +308713,Lightning Charging Cable,1,14.95,12/21/19 08:40,"518 Elm St, San Francisco, CA 94016" +308714,USB-C Charging Cable,1,11.95,12/13/19 08:41,"4 Lakeview St, Boston, MA 02215" +308715,Lightning Charging Cable,2,14.95,12/22/19 12:09,"669 4th St, Portland, OR 97035" +308716,AA Batteries (4-pack),1,3.84,12/24/19 22:24,"412 Jackson St, Portland, OR 97035" +308717,Wired Headphones,1,11.99,12/05/19 21:32,"871 Church St, San Francisco, CA 94016" +308718,USB-C Charging Cable,1,11.95,12/20/19 23:13,"838 Cherry St, Portland, OR 97035" +308719,Macbook Pro Laptop,1,1700,12/21/19 21:55,"851 Highland St, Portland, OR 97035" +308720,Google Phone,1,600,12/31/19 00:48,"961 7th St, San Francisco, CA 94016" +308721,iPhone,1,700,12/05/19 20:24,"120 Main St, Los Angeles, CA 90001" +308721,Wired Headphones,1,11.99,12/05/19 20:24,"120 Main St, Los Angeles, CA 90001" +308722,Macbook Pro Laptop,1,1700,12/13/19 07:38,"343 Maple St, Atlanta, GA 30301" +308723,AA Batteries (4-pack),2,3.84,12/14/19 22:05,"116 4th St, Boston, MA 02215" +308724,Flatscreen TV,1,300,12/05/19 17:22,"883 Adams St, San Francisco, CA 94016" +308725,Bose SoundSport Headphones,1,99.99,12/16/19 16:17,"766 South St, Boston, MA 02215" +308726,AA Batteries (4-pack),1,3.84,12/03/19 09:48,"749 Cherry St, Boston, MA 02215" +308727,27in 4K Gaming Monitor,1,389.99,12/11/19 00:51,"364 Lakeview St, New York City, NY 10001" +308728,34in Ultrawide Monitor,1,379.99,12/19/19 21:35,"626 Lakeview St, Portland, ME 04101" +308729,Lightning Charging Cable,1,14.95,12/28/19 22:03,"444 Washington St, Atlanta, GA 30301" +308730,USB-C Charging Cable,1,11.95,12/16/19 02:13,"836 Madison St, Seattle, WA 98101" +308731,Bose SoundSport Headphones,1,99.99,12/27/19 12:05,"551 Elm St, Seattle, WA 98101" +308732,Google Phone,1,600,12/27/19 02:07,"541 Cherry St, Portland, ME 04101" +308732,USB-C Charging Cable,1,11.95,12/27/19 02:07,"541 Cherry St, Portland, ME 04101" +308733,Apple Airpods Headphones,1,150,12/06/19 16:29,"508 River St, Austin, TX 73301" +308734,27in FHD Monitor,1,149.99,12/08/19 08:44,"601 Meadow St, New York City, NY 10001" +308735,Bose SoundSport Headphones,1,99.99,12/21/19 11:06,"121 Main St, Los Angeles, CA 90001" +308736,34in Ultrawide Monitor,1,379.99,12/02/19 18:40,"797 4th St, San Francisco, CA 94016" +308737,20in Monitor,1,109.99,12/25/19 08:59,"848 5th St, Portland, ME 04101" +308738,AAA Batteries (4-pack),1,2.99,12/22/19 15:29,"827 2nd St, San Francisco, CA 94016" +308739,Apple Airpods Headphones,1,150,12/17/19 01:25,"420 9th St, Los Angeles, CA 90001" +308740,27in 4K Gaming Monitor,1,389.99,12/14/19 22:11,"893 1st St, San Francisco, CA 94016" +308741,Apple Airpods Headphones,1,150,12/04/19 13:48,"207 Center St, Boston, MA 02215" +308742,Google Phone,1,600,12/31/19 08:31,"804 9th St, Los Angeles, CA 90001" +308742,USB-C Charging Cable,1,11.95,12/31/19 08:31,"804 9th St, Los Angeles, CA 90001" +308742,Wired Headphones,1,11.99,12/31/19 08:31,"804 9th St, Los Angeles, CA 90001" +308743,AA Batteries (4-pack),2,3.84,12/07/19 03:19,"667 Hill St, San Francisco, CA 94016" +308744,AA Batteries (4-pack),1,3.84,12/07/19 00:40,"220 Madison St, Austin, TX 73301" +308745,27in FHD Monitor,1,149.99,12/29/19 02:06,"995 South St, San Francisco, CA 94016" +308746,AAA Batteries (4-pack),1,2.99,12/03/19 07:28,"247 9th St, Boston, MA 02215" +308747,Lightning Charging Cable,1,14.95,12/30/19 10:52,"480 Cherry St, Los Angeles, CA 90001" +308748,Lightning Charging Cable,1,14.95,12/09/19 15:37,"82 4th St, Portland, OR 97035" +308749,iPhone,1,700,12/08/19 16:20,"328 Cedar St, Los Angeles, CA 90001" +308750,USB-C Charging Cable,1,11.95,12/02/19 18:29,"183 Park St, Boston, MA 02215" +308751,USB-C Charging Cable,1,11.95,12/24/19 13:12,"405 Maple St, New York City, NY 10001" +308752,Vareebadd Phone,1,400,12/14/19 19:46,"914 Elm St, San Francisco, CA 94016" +308753,Macbook Pro Laptop,1,1700,12/19/19 19:05,"112 Lake St, Boston, MA 02215" +308754,AA Batteries (4-pack),1,3.84,12/18/19 16:26,"714 Pine St, San Francisco, CA 94016" +308755,Wired Headphones,1,11.99,12/08/19 17:31,"540 Jackson St, San Francisco, CA 94016" +308756,AA Batteries (4-pack),1,3.84,12/25/19 01:11,"72 2nd St, New York City, NY 10001" +308757,AA Batteries (4-pack),4,3.84,12/09/19 21:19,"822 11th St, San Francisco, CA 94016" +308758,Lightning Charging Cable,1,14.95,12/19/19 23:13,"562 Walnut St, Seattle, WA 98101" +308759,USB-C Charging Cable,1,11.95,12/19/19 23:45,"311 9th St, Boston, MA 02215" +308760,Wired Headphones,1,11.99,12/02/19 07:20,"731 Highland St, Los Angeles, CA 90001" +308761,27in FHD Monitor,1,149.99,12/27/19 10:32,"128 Church St, Dallas, TX 75001" +308762,ThinkPad Laptop,1,999.99,12/14/19 09:32,"952 Lake St, Atlanta, GA 30301" +308763,AAA Batteries (4-pack),1,2.99,12/15/19 12:23,"608 South St, San Francisco, CA 94016" +308764,Wired Headphones,2,11.99,12/11/19 10:32,"459 Walnut St, Atlanta, GA 30301" +308765,Apple Airpods Headphones,1,150,12/29/19 23:51,"574 Pine St, Dallas, TX 75001" +308766,Wired Headphones,2,11.99,12/10/19 12:17,"241 Spruce St, Austin, TX 73301" +308767,Wired Headphones,1,11.99,12/22/19 12:59,"849 Maple St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +308768,27in 4K Gaming Monitor,1,389.99,12/16/19 12:03,"218 8th St, Dallas, TX 75001" +308768,Lightning Charging Cable,1,14.95,12/16/19 12:03,"218 8th St, Dallas, TX 75001" +308769,Bose SoundSport Headphones,1,99.99,12/21/19 15:55,"969 River St, San Francisco, CA 94016" +308770,Wired Headphones,1,11.99,12/11/19 22:25,"631 Johnson St, Seattle, WA 98101" +308771,Lightning Charging Cable,1,14.95,12/30/19 10:24,"257 Cherry St, Los Angeles, CA 90001" +308772,AAA Batteries (4-pack),1,2.99,12/20/19 09:24,"950 7th St, San Francisco, CA 94016" +308772,AA Batteries (4-pack),1,3.84,12/20/19 09:24,"950 7th St, San Francisco, CA 94016" +308773,27in 4K Gaming Monitor,1,389.99,12/25/19 13:19,"8 River St, Seattle, WA 98101" +308774,Bose SoundSport Headphones,1,99.99,12/31/19 12:55,"665 Pine St, New York City, NY 10001" +,,,,, +308775,AA Batteries (4-pack),1,3.84,12/23/19 17:02,"917 Lake St, San Francisco, CA 94016" +308776,Wired Headphones,1,11.99,12/26/19 19:11,"289 Johnson St, New York City, NY 10001" +308777,27in 4K Gaming Monitor,1,389.99,12/26/19 15:59,"440 8th St, New York City, NY 10001" +308778,Lightning Charging Cable,2,14.95,12/28/19 22:15,"837 Dogwood St, New York City, NY 10001" +308779,20in Monitor,1,109.99,12/04/19 22:02,"794 13th St, New York City, NY 10001" +308780,Lightning Charging Cable,1,14.95,12/05/19 13:06,"249 Ridge St, San Francisco, CA 94016" +308781,AAA Batteries (4-pack),1,2.99,12/08/19 12:51,"445 Johnson St, Seattle, WA 98101" +308782,Wired Headphones,1,11.99,12/24/19 15:03,"499 Elm St, New York City, NY 10001" +308783,Lightning Charging Cable,1,14.95,12/21/19 13:51,"211 River St, New York City, NY 10001" +308784,USB-C Charging Cable,1,11.95,12/31/19 17:15,"755 Main St, San Francisco, CA 94016" +308785,Apple Airpods Headphones,1,150,12/16/19 20:56,"613 South St, San Francisco, CA 94016" +308786,ThinkPad Laptop,1,999.99,12/23/19 21:39,"98 Cedar St, Boston, MA 02215" +308787,USB-C Charging Cable,1,11.95,12/30/19 19:49,"513 Jackson St, New York City, NY 10001" +308788,AA Batteries (4-pack),2,3.84,12/18/19 10:22,"207 Center St, Dallas, TX 75001" +308789,Bose SoundSport Headphones,1,99.99,12/14/19 16:09,"651 Washington St, Dallas, TX 75001" +308789,AAA Batteries (4-pack),1,2.99,12/14/19 16:09,"651 Washington St, Dallas, TX 75001" +308790,Wired Headphones,1,11.99,12/23/19 02:14,"273 14th St, Portland, ME 04101" +308791,Flatscreen TV,1,300,12/14/19 10:44,"649 Church St, New York City, NY 10001" +308792,Apple Airpods Headphones,1,150,12/11/19 14:16,"20 South St, San Francisco, CA 94016" +308793,27in 4K Gaming Monitor,1,389.99,12/14/19 15:00,"892 11th St, Dallas, TX 75001" +308794,Wired Headphones,1,11.99,12/21/19 06:20,"62 Hill St, New York City, NY 10001" +308795,Lightning Charging Cable,1,14.95,12/27/19 15:09,"36 Highland St, Seattle, WA 98101" +308796,USB-C Charging Cable,1,11.95,12/02/19 15:32,"911 Madison St, San Francisco, CA 94016" +308797,Lightning Charging Cable,1,14.95,12/02/19 20:47,"888 River St, Boston, MA 02215" +308798,ThinkPad Laptop,1,999.99,12/27/19 10:08,"294 Sunset St, Dallas, TX 75001" +308799,Flatscreen TV,1,300,12/13/19 08:55,"361 Center St, Boston, MA 02215" +308800,AA Batteries (4-pack),1,3.84,12/05/19 06:17,"255 Sunset St, Portland, OR 97035" +308801,Apple Airpods Headphones,1,150,12/18/19 14:26,"758 12th St, Seattle, WA 98101" +308802,Bose SoundSport Headphones,1,99.99,12/02/19 15:20,"98 1st St, New York City, NY 10001" +308803,27in 4K Gaming Monitor,1,389.99,12/24/19 00:09,"593 Adams St, Boston, MA 02215" +308804,AA Batteries (4-pack),1,3.84,12/01/19 13:29,"362 Lake St, Los Angeles, CA 90001" +308805,Bose SoundSport Headphones,1,99.99,12/18/19 14:27,"102 Walnut St, Austin, TX 73301" +308806,Wired Headphones,1,11.99,12/16/19 13:19,"265 Spruce St, San Francisco, CA 94016" +308807,Apple Airpods Headphones,1,150,12/20/19 12:45,"854 Ridge St, Los Angeles, CA 90001" +308808,Apple Airpods Headphones,1,150,12/23/19 16:32,"161 Lake St, Dallas, TX 75001" +308809,Bose SoundSport Headphones,1,99.99,12/02/19 09:17,"113 West St, Dallas, TX 75001" +308810,AA Batteries (4-pack),4,3.84,12/13/19 11:39,"692 Hill St, New York City, NY 10001" +308811,USB-C Charging Cable,1,11.95,12/20/19 22:09,"874 10th St, Atlanta, GA 30301" +308812,ThinkPad Laptop,1,999.99,12/20/19 19:42,"662 Cedar St, Portland, OR 97035" +308813,USB-C Charging Cable,1,11.95,12/15/19 20:50,"434 Ridge St, Austin, TX 73301" +308814,LG Dryer,1,600.0,12/03/19 15:12,"836 Park St, Atlanta, GA 30301" +308815,Wired Headphones,1,11.99,12/03/19 10:22,"687 Adams St, Boston, MA 02215" +308816,Bose SoundSport Headphones,1,99.99,12/06/19 17:49,"856 6th St, New York City, NY 10001" +308817,AA Batteries (4-pack),1,3.84,12/31/19 22:22,"18 4th St, San Francisco, CA 94016" +308818,LG Washing Machine,1,600.0,12/05/19 15:24,"828 Johnson St, San Francisco, CA 94016" +308819,Google Phone,1,600,12/06/19 21:50,"318 Center St, New York City, NY 10001" +308820,USB-C Charging Cable,1,11.95,12/16/19 15:29,"239 11th St, Dallas, TX 75001" +308821,USB-C Charging Cable,1,11.95,12/19/19 22:10,"357 4th St, Boston, MA 02215" +308822,AAA Batteries (4-pack),2,2.99,12/15/19 20:28,"333 13th St, New York City, NY 10001" +308823,USB-C Charging Cable,1,11.95,12/23/19 15:05,"60 Church St, Los Angeles, CA 90001" +308824,iPhone,1,700,12/27/19 20:01,"950 Elm St, Portland, OR 97035" +308825,Wired Headphones,1,11.99,12/19/19 19:17,"982 Cherry St, Portland, OR 97035" +308826,Lightning Charging Cable,1,14.95,12/18/19 15:33,"748 7th St, Austin, TX 73301" +308827,AAA Batteries (4-pack),1,2.99,12/23/19 14:19,"647 2nd St, Atlanta, GA 30301" +308828,AAA Batteries (4-pack),1,2.99,12/02/19 23:59,"318 Meadow St, New York City, NY 10001" +308829,AAA Batteries (4-pack),1,2.99,12/21/19 21:51,"136 Cherry St, San Francisco, CA 94016" +308830,Wired Headphones,1,11.99,12/16/19 20:37,"634 13th St, Los Angeles, CA 90001" +308831,Lightning Charging Cable,1,14.95,12/29/19 19:40,"84 12th St, San Francisco, CA 94016" +308832,AAA Batteries (4-pack),1,2.99,12/06/19 11:22,"896 North St, Atlanta, GA 30301" +308833,Lightning Charging Cable,1,14.95,12/26/19 11:45,"661 Spruce St, New York City, NY 10001" +308834,AA Batteries (4-pack),1,3.84,12/13/19 21:30,"187 Lakeview St, New York City, NY 10001" +308835,iPhone,1,700,12/23/19 12:48,"51 Dogwood St, Dallas, TX 75001" +308835,Wired Headphones,1,11.99,12/23/19 12:48,"51 Dogwood St, Dallas, TX 75001" +308836,Lightning Charging Cable,1,14.95,12/24/19 00:30,"494 Cedar St, Portland, OR 97035" +308837,USB-C Charging Cable,1,11.95,12/09/19 18:30,"367 Ridge St, Atlanta, GA 30301" +308838,USB-C Charging Cable,1,11.95,12/25/19 12:13,"203 Jefferson St, San Francisco, CA 94016" +308839,Wired Headphones,1,11.99,12/02/19 16:49,"208 13th St, Atlanta, GA 30301" +308840,Flatscreen TV,1,300,12/22/19 05:01,"219 Maple St, Atlanta, GA 30301" +308841,AAA Batteries (4-pack),5,2.99,12/22/19 10:20,"858 Elm St, San Francisco, CA 94016" +308842,AA Batteries (4-pack),1,3.84,12/05/19 14:53,"78 1st St, San Francisco, CA 94016" +308843,AA Batteries (4-pack),1,3.84,12/11/19 17:45,"844 2nd St, Los Angeles, CA 90001" +308844,AA Batteries (4-pack),3,3.84,12/16/19 05:08,"182 Lakeview St, San Francisco, CA 94016" +308845,Lightning Charging Cable,1,14.95,12/14/19 19:20,"956 5th St, New York City, NY 10001" +308846,USB-C Charging Cable,2,11.95,12/04/19 20:26,"163 Meadow St, San Francisco, CA 94016" +308847,AAA Batteries (4-pack),1,2.99,12/10/19 20:16,"228 Park St, Los Angeles, CA 90001" +308848,AAA Batteries (4-pack),1,2.99,12/23/19 06:16,"381 2nd St, Dallas, TX 75001" +308849,Google Phone,1,600,12/22/19 17:09,"26 10th St, New York City, NY 10001" +308849,Wired Headphones,1,11.99,12/22/19 17:09,"26 10th St, New York City, NY 10001" +308850,AAA Batteries (4-pack),1,2.99,12/10/19 22:14,"612 Center St, Dallas, TX 75001" +308851,27in FHD Monitor,1,149.99,12/14/19 17:04,"321 Sunset St, San Francisco, CA 94016" +308852,Apple Airpods Headphones,1,150,12/28/19 13:33,"666 Meadow St, San Francisco, CA 94016" +308853,Google Phone,1,600,12/19/19 08:41,"123 Wilson St, San Francisco, CA 94016" +308854,iPhone,1,700,12/20/19 19:34,"429 Adams St, Austin, TX 73301" +308855,iPhone,1,700,12/18/19 21:07,"531 Lake St, Los Angeles, CA 90001" +308855,Lightning Charging Cable,1,14.95,12/18/19 21:07,"531 Lake St, Los Angeles, CA 90001" +308856,Wired Headphones,2,11.99,12/11/19 10:48,"907 Dogwood St, San Francisco, CA 94016" +308857,Flatscreen TV,1,300,12/19/19 15:59,"710 11th St, Dallas, TX 75001" +308858,Wired Headphones,2,11.99,12/22/19 09:13,"910 Johnson St, Portland, OR 97035" +308859,Apple Airpods Headphones,1,150,12/06/19 21:00,"713 Cedar St, Boston, MA 02215" +308860,Bose SoundSport Headphones,1,99.99,12/20/19 13:00,"998 Willow St, Austin, TX 73301" +308861,iPhone,1,700,12/15/19 22:05,"364 Spruce St, Seattle, WA 98101" +308862,Lightning Charging Cable,1,14.95,12/17/19 20:06,"178 Lake St, San Francisco, CA 94016" +308863,ThinkPad Laptop,1,999.99,12/11/19 19:45,"771 13th St, San Francisco, CA 94016" +308864,Flatscreen TV,1,300,12/09/19 05:51,"938 4th St, Los Angeles, CA 90001" +308865,Wired Headphones,1,11.99,12/11/19 10:30,"917 7th St, Boston, MA 02215" +308866,USB-C Charging Cable,1,11.95,12/29/19 16:20,"367 Johnson St, San Francisco, CA 94016" +308867,Lightning Charging Cable,1,14.95,12/05/19 13:53,"26 Church St, Atlanta, GA 30301" +308868,USB-C Charging Cable,1,11.95,12/27/19 22:49,"848 14th St, San Francisco, CA 94016" +308869,AAA Batteries (4-pack),1,2.99,12/06/19 19:22,"129 11th St, Boston, MA 02215" +308870,USB-C Charging Cable,1,11.95,12/16/19 15:33,"860 4th St, New York City, NY 10001" +308871,AAA Batteries (4-pack),2,2.99,12/17/19 07:57,"218 Lake St, Seattle, WA 98101" +308872,AA Batteries (4-pack),1,3.84,12/20/19 21:00,"95 4th St, San Francisco, CA 94016" +308873,27in FHD Monitor,1,149.99,12/07/19 13:01,"46 6th St, New York City, NY 10001" +308874,Lightning Charging Cable,1,14.95,12/10/19 20:56,"56 Sunset St, Seattle, WA 98101" +308875,USB-C Charging Cable,1,11.95,12/28/19 09:06,"215 Spruce St, New York City, NY 10001" +308876,Bose SoundSport Headphones,1,99.99,12/16/19 13:03,"170 Ridge St, Los Angeles, CA 90001" +308877,Apple Airpods Headphones,1,150,12/07/19 09:34,"523 Chestnut St, Los Angeles, CA 90001" +308878,34in Ultrawide Monitor,1,379.99,12/24/19 16:06,"637 Lake St, San Francisco, CA 94016" +308879,34in Ultrawide Monitor,1,379.99,12/23/19 12:43,"550 8th St, Los Angeles, CA 90001" +308880,AAA Batteries (4-pack),1,2.99,12/11/19 17:17,"884 Church St, Boston, MA 02215" +308881,27in 4K Gaming Monitor,1,389.99,12/12/19 13:59,"441 Walnut St, Boston, MA 02215" +308882,27in FHD Monitor,1,149.99,12/26/19 22:19,"127 5th St, Los Angeles, CA 90001" +308883,Apple Airpods Headphones,1,150,12/12/19 18:34,"167 Lincoln St, Atlanta, GA 30301" +308884,ThinkPad Laptop,1,999.99,12/08/19 14:03,"977 Lakeview St, Austin, TX 73301" +308885,Vareebadd Phone,1,400,12/04/19 19:49,"672 Wilson St, San Francisco, CA 94016" +308885,Bose SoundSport Headphones,1,99.99,12/04/19 19:49,"672 Wilson St, San Francisco, CA 94016" +308886,Apple Airpods Headphones,1,150,12/15/19 11:17,"438 12th St, San Francisco, CA 94016" +308887,Vareebadd Phone,1,400,12/23/19 04:48,"552 Madison St, New York City, NY 10001" +308888,Wired Headphones,1,11.99,12/20/19 10:09,"53 2nd St, Austin, TX 73301" +308889,USB-C Charging Cable,1,11.95,12/28/19 17:11,"375 9th St, San Francisco, CA 94016" +308890,AAA Batteries (4-pack),1,2.99,12/22/19 09:49,"607 Ridge St, San Francisco, CA 94016" +308891,ThinkPad Laptop,1,999.99,12/03/19 18:54,"89 4th St, New York City, NY 10001" +308892,Lightning Charging Cable,1,14.95,12/02/19 10:40,"784 12th St, Los Angeles, CA 90001" +308893,AAA Batteries (4-pack),1,2.99,12/16/19 16:11,"617 Willow St, Portland, OR 97035" +308894,Wired Headphones,1,11.99,12/22/19 19:08,"241 Lakeview St, San Francisco, CA 94016" +308895,Wired Headphones,1,11.99,12/12/19 12:57,"459 West St, San Francisco, CA 94016" +308896,AAA Batteries (4-pack),1,2.99,12/28/19 21:45,"612 10th St, Boston, MA 02215" +308897,Flatscreen TV,1,300,12/30/19 15:25,"577 Walnut St, Seattle, WA 98101" +308898,AAA Batteries (4-pack),4,2.99,12/17/19 19:33,"686 Adams St, Los Angeles, CA 90001" +308898,AAA Batteries (4-pack),2,2.99,12/17/19 19:33,"686 Adams St, Los Angeles, CA 90001" +308899,Google Phone,1,600,12/24/19 22:22,"696 Lake St, Atlanta, GA 30301" +308899,AAA Batteries (4-pack),1,2.99,12/24/19 22:22,"696 Lake St, Atlanta, GA 30301" +308900,Bose SoundSport Headphones,1,99.99,12/13/19 13:05,"596 Maple St, Portland, OR 97035" +308901,Apple Airpods Headphones,1,150,12/14/19 22:17,"161 Adams St, Dallas, TX 75001" +308902,AA Batteries (4-pack),1,3.84,12/25/19 14:38,"844 West St, San Francisco, CA 94016" +308903,Wired Headphones,1,11.99,12/05/19 10:17,"643 Forest St, Los Angeles, CA 90001" +308904,USB-C Charging Cable,1,11.95,12/16/19 09:54,"50 14th St, Boston, MA 02215" +308905,ThinkPad Laptop,1,999.99,12/02/19 10:57,"554 River St, New York City, NY 10001" +308906,Lightning Charging Cable,1,14.95,12/29/19 19:06,"141 Jefferson St, Portland, OR 97035" +308907,AA Batteries (4-pack),1,3.84,12/22/19 12:11,"258 Church St, Atlanta, GA 30301" +308908,Lightning Charging Cable,1,14.95,12/23/19 14:36,"728 7th St, Dallas, TX 75001" +308909,Lightning Charging Cable,1,14.95,12/26/19 12:44,"471 Lincoln St, New York City, NY 10001" +308910,USB-C Charging Cable,1,11.95,12/15/19 16:01,"509 Main St, New York City, NY 10001" +308911,27in 4K Gaming Monitor,1,389.99,12/23/19 18:44,"922 Forest St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +308912,AA Batteries (4-pack),1,3.84,12/04/19 19:56,"506 Highland St, Dallas, TX 75001" +308913,Wired Headphones,1,11.99,12/29/19 11:49,"734 Highland St, Seattle, WA 98101" +308914,USB-C Charging Cable,1,11.95,12/18/19 00:17,"956 Spruce St, Atlanta, GA 30301" +308915,ThinkPad Laptop,1,999.99,12/28/19 19:40,"559 Willow St, Dallas, TX 75001" +308916,20in Monitor,1,109.99,12/12/19 08:41,"595 Spruce St, San Francisco, CA 94016" +308917,Wired Headphones,1,11.99,12/30/19 16:01,"882 1st St, Seattle, WA 98101" +308918,Apple Airpods Headphones,1,150,12/24/19 22:38,"688 River St, San Francisco, CA 94016" +308919,Lightning Charging Cable,1,14.95,12/04/19 11:44,"595 Hickory St, San Francisco, CA 94016" +308920,AA Batteries (4-pack),1,3.84,12/12/19 18:06,"864 11th St, Seattle, WA 98101" +308921,20in Monitor,1,109.99,12/15/19 12:52,"898 Church St, Boston, MA 02215" +308922,AAA Batteries (4-pack),3,2.99,12/11/19 11:43,"198 Spruce St, San Francisco, CA 94016" +308923,Lightning Charging Cable,1,14.95,12/05/19 11:30,"158 Maple St, Los Angeles, CA 90001" +308924,AA Batteries (4-pack),1,3.84,12/05/19 11:19,"295 Ridge St, New York City, NY 10001" +308925,iPhone,1,700,12/11/19 07:04,"919 Pine St, New York City, NY 10001" +308926,Apple Airpods Headphones,1,150,12/14/19 17:33,"690 Highland St, New York City, NY 10001" +308927,USB-C Charging Cable,1,11.95,12/04/19 10:15,"207 Main St, Seattle, WA 98101" +308928,Wired Headphones,1,11.99,12/22/19 11:38,"881 Dogwood St, Austin, TX 73301" +308929,AA Batteries (4-pack),1,3.84,12/17/19 15:51,"562 Lakeview St, New York City, NY 10001" +308930,27in FHD Monitor,1,149.99,12/09/19 16:15,"155 Pine St, Los Angeles, CA 90001" +308931,Apple Airpods Headphones,1,150,12/28/19 23:43,"412 4th St, Boston, MA 02215" +308932,AAA Batteries (4-pack),1,2.99,12/28/19 16:02,"457 Spruce St, San Francisco, CA 94016" +308933,Wired Headphones,1,11.99,12/05/19 12:41,"38 Main St, Boston, MA 02215" +308934,AA Batteries (4-pack),1,3.84,12/09/19 23:13,"728 West St, Boston, MA 02215" +308935,Wired Headphones,1,11.99,12/31/19 14:48,"211 Chestnut St, Los Angeles, CA 90001" +308936,Apple Airpods Headphones,1,150,12/22/19 18:55,"384 Jackson St, Seattle, WA 98101" +308937,AAA Batteries (4-pack),1,2.99,12/14/19 18:23,"195 North St, New York City, NY 10001" +308938,Wired Headphones,1,11.99,12/14/19 19:45,"525 Willow St, Atlanta, GA 30301" +308939,Vareebadd Phone,1,400,12/01/19 18:09,"17 Madison St, New York City, NY 10001" +308939,Wired Headphones,1,11.99,12/01/19 18:09,"17 Madison St, New York City, NY 10001" +308940,Google Phone,1,600,12/02/19 08:58,"354 Dogwood St, New York City, NY 10001" +308940,USB-C Charging Cable,1,11.95,12/02/19 08:58,"354 Dogwood St, New York City, NY 10001" +308941,20in Monitor,1,109.99,12/17/19 15:01,"847 14th St, San Francisco, CA 94016" +308942,AA Batteries (4-pack),2,3.84,12/05/19 17:51,"123 Forest St, New York City, NY 10001" +308943,20in Monitor,1,109.99,12/26/19 22:24,"341 Madison St, San Francisco, CA 94016" +308944,iPhone,1,700,12/14/19 17:32,"840 Pine St, Seattle, WA 98101" +308945,iPhone,1,700,12/17/19 14:37,"341 Lincoln St, Portland, OR 97035" +308946,Bose SoundSport Headphones,1,99.99,12/07/19 13:42,"624 10th St, San Francisco, CA 94016" +308947,iPhone,1,700,12/26/19 12:40,"560 West St, San Francisco, CA 94016" +308948,USB-C Charging Cable,1,11.95,12/31/19 13:16,"711 Chestnut St, Atlanta, GA 30301" +308948,Lightning Charging Cable,1,14.95,12/31/19 13:16,"711 Chestnut St, Atlanta, GA 30301" +308949,Bose SoundSport Headphones,1,99.99,12/02/19 16:41,"2 Lakeview St, Atlanta, GA 30301" +308950,USB-C Charging Cable,1,11.95,12/25/19 17:56,"129 Jackson St, Dallas, TX 75001" +308951,27in 4K Gaming Monitor,1,389.99,12/10/19 13:12,"727 Elm St, Dallas, TX 75001" +308952,Flatscreen TV,1,300,12/09/19 14:40,"635 Jefferson St, Atlanta, GA 30301" +308953,iPhone,1,700,12/30/19 19:57,"957 Pine St, Los Angeles, CA 90001" +308954,Wired Headphones,1,11.99,12/02/19 19:09,"447 Spruce St, Seattle, WA 98101" +308955,AAA Batteries (4-pack),2,2.99,12/02/19 13:26,"769 Center St, Atlanta, GA 30301" +308956,AA Batteries (4-pack),1,3.84,12/03/19 03:32,"198 Johnson St, New York City, NY 10001" +308957,AA Batteries (4-pack),1,3.84,12/30/19 12:07,"364 Cherry St, Seattle, WA 98101" +308958,AA Batteries (4-pack),1,3.84,12/29/19 10:57,"747 South St, Portland, OR 97035" +308959,AA Batteries (4-pack),1,3.84,12/11/19 14:43,"171 8th St, Los Angeles, CA 90001" +308959,AA Batteries (4-pack),1,3.84,12/11/19 14:43,"171 8th St, Los Angeles, CA 90001" +308960,AAA Batteries (4-pack),1,2.99,12/27/19 16:16,"639 Sunset St, San Francisco, CA 94016" +308960,Lightning Charging Cable,1,14.95,12/27/19 16:16,"639 Sunset St, San Francisco, CA 94016" +308961,Lightning Charging Cable,1,14.95,12/22/19 03:34,"156 2nd St, San Francisco, CA 94016" +308962,ThinkPad Laptop,1,999.99,12/30/19 13:56,"341 South St, Los Angeles, CA 90001" +308963,27in FHD Monitor,1,149.99,12/07/19 10:34,"742 Highland St, San Francisco, CA 94016" +308964,Google Phone,1,600,12/20/19 10:57,"141 River St, Austin, TX 73301" +308964,Bose SoundSport Headphones,1,99.99,12/20/19 10:57,"141 River St, Austin, TX 73301" +308965,27in 4K Gaming Monitor,1,389.99,12/22/19 19:15,"629 12th St, San Francisco, CA 94016" +308966,Wired Headphones,1,11.99,12/21/19 14:59,"983 West St, San Francisco, CA 94016" +308967,USB-C Charging Cable,1,11.95,12/21/19 21:05,"635 Lake St, Portland, OR 97035" +308968,AA Batteries (4-pack),1,3.84,12/05/19 23:31,"490 Elm St, Portland, OR 97035" +308969,AAA Batteries (4-pack),2,2.99,12/08/19 12:43,"135 1st St, New York City, NY 10001" +308970,Apple Airpods Headphones,1,150,12/13/19 12:39,"694 Elm St, San Francisco, CA 94016" +308971,Bose SoundSport Headphones,1,99.99,12/11/19 21:28,"331 4th St, Seattle, WA 98101" +308972,Lightning Charging Cable,1,14.95,12/17/19 18:09,"784 Johnson St, Los Angeles, CA 90001" +308973,Wired Headphones,1,11.99,12/15/19 23:35,"684 Meadow St, Los Angeles, CA 90001" +308974,27in FHD Monitor,1,149.99,12/12/19 23:27,"417 14th St, San Francisco, CA 94016" +308975,AA Batteries (4-pack),1,3.84,12/30/19 18:16,"227 West St, San Francisco, CA 94016" +308976,USB-C Charging Cable,1,11.95,12/07/19 10:02,"66 Johnson St, San Francisco, CA 94016" +308977,AAA Batteries (4-pack),1,2.99,12/17/19 18:38,"944 Johnson St, Austin, TX 73301" +308978,Lightning Charging Cable,1,14.95,12/27/19 03:28,"552 Church St, San Francisco, CA 94016" +308979,AAA Batteries (4-pack),2,2.99,12/30/19 13:08,"21 Center St, Seattle, WA 98101" +308980,Vareebadd Phone,1,400,12/26/19 18:00,"157 Highland St, San Francisco, CA 94016" +308981,AA Batteries (4-pack),2,3.84,12/30/19 15:15,"673 Washington St, San Francisco, CA 94016" +308982,AA Batteries (4-pack),2,3.84,12/21/19 16:29,"745 Elm St, Seattle, WA 98101" +308983,ThinkPad Laptop,1,999.99,12/28/19 08:13,"567 4th St, Seattle, WA 98101" +308984,20in Monitor,1,109.99,12/28/19 18:13,"623 Main St, New York City, NY 10001" +308985,Flatscreen TV,1,300,12/03/19 09:23,"786 Forest St, New York City, NY 10001" +308986,Wired Headphones,1,11.99,12/13/19 16:50,"960 Adams St, New York City, NY 10001" +308987,Wired Headphones,1,11.99,12/08/19 16:53,"731 Walnut St, Boston, MA 02215" +308988,Macbook Pro Laptop,1,1700,12/16/19 14:12,"162 Ridge St, Dallas, TX 75001" +308989,Wired Headphones,1,11.99,12/11/19 20:10,"241 11th St, San Francisco, CA 94016" +308990,Wired Headphones,1,11.99,12/27/19 22:28,"566 Wilson St, San Francisco, CA 94016" +308991,27in 4K Gaming Monitor,1,389.99,12/20/19 19:21,"203 Hickory St, Atlanta, GA 30301" +308992,AAA Batteries (4-pack),3,2.99,12/04/19 17:01,"357 Park St, Seattle, WA 98101" +308993,Apple Airpods Headphones,1,150,12/27/19 19:04,"866 5th St, Portland, OR 97035" +308994,Apple Airpods Headphones,1,150,01/01/20 00:10,"844 Meadow St, New York City, NY 10001" +308995,Bose SoundSport Headphones,1,99.99,12/04/19 21:35,"735 11th St, New York City, NY 10001" +308996,ThinkPad Laptop,1,999.99,12/16/19 11:23,"239 Spruce St, San Francisco, CA 94016" +308997,USB-C Charging Cable,1,11.95,12/06/19 13:44,"60 North St, San Francisco, CA 94016" +308998,iPhone,1,700,12/25/19 08:51,"702 Elm St, San Francisco, CA 94016" +308999,Wired Headphones,1,11.99,12/23/19 00:18,"73 Cedar St, Atlanta, GA 30301" +309000,Macbook Pro Laptop,1,1700,12/23/19 10:55,"778 10th St, Los Angeles, CA 90001" +309001,20in Monitor,1,109.99,12/03/19 19:19,"66 Center St, Portland, ME 04101" +309002,AA Batteries (4-pack),1,3.84,12/23/19 07:53,"811 Hill St, San Francisco, CA 94016" +309003,Google Phone,1,600,12/21/19 21:49,"809 Forest St, Boston, MA 02215" +309004,Wired Headphones,1,11.99,12/01/19 18:46,"598 Ridge St, San Francisco, CA 94016" +309005,Macbook Pro Laptop,1,1700,12/09/19 06:22,"306 Church St, Atlanta, GA 30301" +309006,Apple Airpods Headphones,1,150,12/18/19 18:03,"200 Ridge St, New York City, NY 10001" +309007,USB-C Charging Cable,2,11.95,12/22/19 23:03,"177 Park St, Seattle, WA 98101" +309008,USB-C Charging Cable,1,11.95,12/26/19 17:27,"437 Spruce St, Portland, OR 97035" +309009,Apple Airpods Headphones,1,150,12/11/19 21:35,"414 Hickory St, San Francisco, CA 94016" +309010,Wired Headphones,1,11.99,12/15/19 09:35,"589 Highland St, San Francisco, CA 94016" +309011,LG Washing Machine,1,600.0,12/23/19 18:06,"434 Cedar St, New York City, NY 10001" +309012,Bose SoundSport Headphones,1,99.99,12/09/19 01:00,"729 Spruce St, Seattle, WA 98101" +309013,USB-C Charging Cable,1,11.95,12/09/19 09:20,"976 11th St, Dallas, TX 75001" +309014,AA Batteries (4-pack),1,3.84,12/14/19 19:31,"518 8th St, New York City, NY 10001" +309015,Apple Airpods Headphones,1,150,12/27/19 19:29,"240 1st St, Seattle, WA 98101" +309016,USB-C Charging Cable,1,11.95,12/19/19 12:08,"785 9th St, San Francisco, CA 94016" +309017,Lightning Charging Cable,1,14.95,12/28/19 19:44,"206 Main St, Boston, MA 02215" +309018,USB-C Charging Cable,2,11.95,12/24/19 10:18,"210 Church St, Austin, TX 73301" +309019,Lightning Charging Cable,1,14.95,12/19/19 18:16,"91 Sunset St, New York City, NY 10001" +309020,AA Batteries (4-pack),1,3.84,12/24/19 21:18,"674 Cedar St, Austin, TX 73301" +309021,Bose SoundSport Headphones,1,99.99,12/05/19 17:09,"422 13th St, Los Angeles, CA 90001" +309022,AAA Batteries (4-pack),1,2.99,12/09/19 21:16,"865 14th St, Austin, TX 73301" +309023,Apple Airpods Headphones,1,150,12/11/19 17:54,"429 12th St, Boston, MA 02215" +309024,AAA Batteries (4-pack),1,2.99,12/18/19 23:19,"750 Center St, Los Angeles, CA 90001" +309025,Flatscreen TV,1,300,12/23/19 21:30,"926 Ridge St, San Francisco, CA 94016" +309026,Bose SoundSport Headphones,1,99.99,12/07/19 14:41,"875 Willow St, Seattle, WA 98101" +309027,AAA Batteries (4-pack),4,2.99,12/18/19 11:33,"85 7th St, Portland, ME 04101" +309028,27in 4K Gaming Monitor,1,389.99,12/04/19 20:13,"599 10th St, San Francisco, CA 94016" +309029,AAA Batteries (4-pack),1,2.99,12/03/19 13:07,"39 Lake St, San Francisco, CA 94016" +309030,Flatscreen TV,1,300,12/23/19 18:59,"938 7th St, New York City, NY 10001" +309031,Apple Airpods Headphones,1,150,12/18/19 12:14,"18 Johnson St, Los Angeles, CA 90001" +309032,Bose SoundSport Headphones,1,99.99,12/01/19 13:29,"146 Madison St, Los Angeles, CA 90001" +309033,Wired Headphones,1,11.99,12/16/19 04:18,"37 13th St, New York City, NY 10001" +309034,27in FHD Monitor,1,149.99,12/07/19 20:40,"575 West St, Los Angeles, CA 90001" +309035,Wired Headphones,1,11.99,12/24/19 20:54,"263 Forest St, Boston, MA 02215" +309036,USB-C Charging Cable,1,11.95,12/16/19 14:26,"281 Spruce St, Los Angeles, CA 90001" +309037,AA Batteries (4-pack),1,3.84,12/25/19 12:23,"925 Elm St, New York City, NY 10001" +309038,Wired Headphones,1,11.99,12/08/19 18:23,"178 Sunset St, Dallas, TX 75001" +309039,20in Monitor,1,109.99,12/01/19 19:43,"699 Sunset St, Boston, MA 02215" +309040,Bose SoundSport Headphones,1,99.99,12/27/19 20:59,"217 12th St, New York City, NY 10001" +309041,27in 4K Gaming Monitor,1,389.99,12/14/19 10:22,"675 Park St, San Francisco, CA 94016" +309042,Flatscreen TV,1,300,12/04/19 13:07,"878 Church St, New York City, NY 10001" +309043,USB-C Charging Cable,1,11.95,12/31/19 10:46,"146 Jackson St, New York City, NY 10001" +309044,USB-C Charging Cable,1,11.95,12/13/19 10:44,"418 11th St, Austin, TX 73301" +309045,Vareebadd Phone,1,400,12/26/19 12:02,"354 12th St, Los Angeles, CA 90001" +309046,Wired Headphones,1,11.99,12/07/19 17:51,"168 2nd St, San Francisco, CA 94016" +309047,27in 4K Gaming Monitor,1,389.99,12/01/19 16:43,"944 Main St, Atlanta, GA 30301" +309048,Flatscreen TV,1,300,12/18/19 09:46,"383 Lincoln St, Los Angeles, CA 90001" +309049,Bose SoundSport Headphones,1,99.99,12/09/19 18:21,"596 Adams St, Portland, OR 97035" +309050,27in 4K Gaming Monitor,1,389.99,12/12/19 22:48,"32 Maple St, San Francisco, CA 94016" +309051,USB-C Charging Cable,1,11.95,12/12/19 17:41,"114 4th St, Los Angeles, CA 90001" +309052,Apple Airpods Headphones,1,150,12/07/19 10:45,"521 Chestnut St, San Francisco, CA 94016" +309053,Google Phone,1,600,12/06/19 18:33,"456 Jefferson St, New York City, NY 10001" +309054,Wired Headphones,1,11.99,12/14/19 12:14,"241 Hill St, Dallas, TX 75001" +309055,Wired Headphones,1,11.99,12/10/19 10:20,"285 11th St, San Francisco, CA 94016" +309056,Google Phone,1,600,12/05/19 20:37,"722 10th St, Boston, MA 02215" +309057,Wired Headphones,2,11.99,12/08/19 23:29,"566 Chestnut St, Atlanta, GA 30301" +309058,USB-C Charging Cable,1,11.95,12/24/19 14:29,"282 Johnson St, Austin, TX 73301" +309059,27in FHD Monitor,1,149.99,12/10/19 19:04,"972 Dogwood St, Boston, MA 02215" +309060,Wired Headphones,1,11.99,12/20/19 13:21,"786 Jefferson St, Austin, TX 73301" +309061,Macbook Pro Laptop,1,1700,12/10/19 21:44,"969 12th St, Boston, MA 02215" +309062,Apple Airpods Headphones,1,150,12/07/19 20:28,"455 Jefferson St, New York City, NY 10001" +309063,Lightning Charging Cable,1,14.95,12/03/19 22:48,"113 Elm St, Atlanta, GA 30301" +309064,Lightning Charging Cable,1,14.95,12/21/19 21:48,"795 10th St, Portland, ME 04101" +309065,ThinkPad Laptop,1,999.99,12/10/19 17:53,"517 Walnut St, Boston, MA 02215" +309066,34in Ultrawide Monitor,1,379.99,12/08/19 12:00,"900 Jackson St, Austin, TX 73301" +309067,34in Ultrawide Monitor,1,379.99,12/09/19 12:41,"12 12th St, Los Angeles, CA 90001" +309068,AAA Batteries (4-pack),1,2.99,12/05/19 08:08,"563 Church St, San Francisco, CA 94016" +309069,Apple Airpods Headphones,1,150,12/31/19 18:15,"201 Sunset St, New York City, NY 10001" +309070,20in Monitor,1,109.99,12/09/19 20:59,"759 North St, Portland, OR 97035" +309071,Flatscreen TV,1,300,12/06/19 06:25,"305 10th St, New York City, NY 10001" +309072,Wired Headphones,1,11.99,12/06/19 14:49,"789 4th St, Los Angeles, CA 90001" +309073,34in Ultrawide Monitor,1,379.99,12/29/19 08:30,"581 Highland St, San Francisco, CA 94016" +309074,AA Batteries (4-pack),2,3.84,12/22/19 09:25,"770 North St, San Francisco, CA 94016" +309075,iPhone,1,700,12/03/19 09:55,"398 Jefferson St, Boston, MA 02215" +309076,27in 4K Gaming Monitor,1,389.99,12/19/19 19:57,"469 Lincoln St, Dallas, TX 75001" +309077,27in 4K Gaming Monitor,1,389.99,12/22/19 13:31,"2 Forest St, Boston, MA 02215" +309078,USB-C Charging Cable,2,11.95,12/01/19 18:48,"334 Forest St, Seattle, WA 98101" +309079,27in 4K Gaming Monitor,1,389.99,12/10/19 20:13,"29 Willow St, Austin, TX 73301" +309080,USB-C Charging Cable,1,11.95,12/11/19 21:38,"680 Walnut St, Boston, MA 02215" +309081,Google Phone,1,600,12/24/19 16:43,"772 Church St, Seattle, WA 98101" +309082,Bose SoundSport Headphones,1,99.99,12/03/19 10:12,"836 Cherry St, New York City, NY 10001" +309083,Bose SoundSport Headphones,1,99.99,12/18/19 20:36,"760 Center St, Seattle, WA 98101" +309084,AA Batteries (4-pack),1,3.84,12/29/19 14:28,"107 4th St, Seattle, WA 98101" +309085,USB-C Charging Cable,1,11.95,12/09/19 18:03,"322 Washington St, San Francisco, CA 94016" +309086,27in 4K Gaming Monitor,1,389.99,12/05/19 09:14,"602 Spruce St, Atlanta, GA 30301" +309087,Apple Airpods Headphones,1,150,12/19/19 20:53,"613 8th St, Los Angeles, CA 90001" +309088,Lightning Charging Cable,1,14.95,12/22/19 20:52,"297 10th St, San Francisco, CA 94016" +309089,AA Batteries (4-pack),1,3.84,12/05/19 07:56,"16 Dogwood St, Boston, MA 02215" +309090,ThinkPad Laptop,1,999.99,12/08/19 11:54,"804 1st St, San Francisco, CA 94016" +309091,Lightning Charging Cable,1,14.95,12/23/19 10:02,"679 6th St, Boston, MA 02215" +309092,Lightning Charging Cable,1,14.95,12/11/19 12:39,"64 Maple St, San Francisco, CA 94016" +309093,AA Batteries (4-pack),1,3.84,12/21/19 23:13,"776 Highland St, New York City, NY 10001" +309094,ThinkPad Laptop,1,999.99,12/04/19 11:26,"558 Pine St, Boston, MA 02215" +309095,Bose SoundSport Headphones,1,99.99,12/24/19 12:13,"123 5th St, San Francisco, CA 94016" +309096,USB-C Charging Cable,1,11.95,12/10/19 11:52,"843 6th St, Boston, MA 02215" +309097,Wired Headphones,1,11.99,12/20/19 17:22,"110 North St, Seattle, WA 98101" +309098,Google Phone,1,600,12/06/19 19:56,"390 Lakeview St, Atlanta, GA 30301" +309099,USB-C Charging Cable,1,11.95,12/18/19 08:55,"335 Park St, New York City, NY 10001" +309100,AA Batteries (4-pack),1,3.84,12/01/19 18:58,"334 12th St, New York City, NY 10001" +309101,AA Batteries (4-pack),1,3.84,12/12/19 15:26,"606 Hickory St, Boston, MA 02215" +309102,20in Monitor,1,109.99,12/24/19 08:10,"961 Main St, San Francisco, CA 94016" +309103,Wired Headphones,1,11.99,12/27/19 21:17,"17 Ridge St, New York City, NY 10001" +309104,Lightning Charging Cable,1,14.95,12/06/19 21:59,"433 Washington St, Boston, MA 02215" +309105,AAA Batteries (4-pack),2,2.99,12/04/19 10:24,"519 Wilson St, Dallas, TX 75001" +309106,Bose SoundSport Headphones,1,99.99,12/10/19 06:15,"887 Ridge St, San Francisco, CA 94016" +309107,Apple Airpods Headphones,1,150,12/11/19 13:14,"366 6th St, San Francisco, CA 94016" +309108,Lightning Charging Cable,1,14.95,12/29/19 17:26,"912 Cedar St, San Francisco, CA 94016" +309109,USB-C Charging Cable,1,11.95,12/01/19 11:02,"788 Jefferson St, Los Angeles, CA 90001" +309110,Lightning Charging Cable,1,14.95,12/09/19 19:11,"941 1st St, Dallas, TX 75001" +309111,AAA Batteries (4-pack),1,2.99,12/02/19 17:33,"725 10th St, Atlanta, GA 30301" +309112,USB-C Charging Cable,2,11.95,12/29/19 18:09,"858 West St, New York City, NY 10001" +309113,Apple Airpods Headphones,1,150,12/10/19 18:01,"250 Highland St, Austin, TX 73301" +309114,Wired Headphones,1,11.99,12/07/19 23:56,"118 Walnut St, Dallas, TX 75001" +309115,USB-C Charging Cable,2,11.95,12/25/19 09:09,"556 Chestnut St, Atlanta, GA 30301" +309115,Lightning Charging Cable,1,14.95,12/25/19 09:09,"556 Chestnut St, Atlanta, GA 30301" +309116,27in FHD Monitor,1,149.99,12/25/19 13:34,"583 Sunset St, Dallas, TX 75001" +309117,AA Batteries (4-pack),1,3.84,12/13/19 12:07,"204 Hill St, Boston, MA 02215" +309118,Macbook Pro Laptop,1,1700,12/02/19 09:08,"388 Johnson St, Los Angeles, CA 90001" +309119,Bose SoundSport Headphones,1,99.99,12/19/19 11:06,"880 4th St, San Francisco, CA 94016" +309120,USB-C Charging Cable,3,11.95,12/07/19 11:44,"722 Meadow St, New York City, NY 10001" +309121,Bose SoundSport Headphones,1,99.99,12/29/19 01:42,"617 7th St, Seattle, WA 98101" +309122,Macbook Pro Laptop,1,1700,12/08/19 11:18,"532 13th St, San Francisco, CA 94016" +309123,Bose SoundSport Headphones,1,99.99,12/05/19 11:26,"616 Sunset St, Los Angeles, CA 90001" +309124,Lightning Charging Cable,1,14.95,12/01/19 16:02,"458 Meadow St, Atlanta, GA 30301" +309125,27in 4K Gaming Monitor,1,389.99,12/16/19 18:44,"120 Dogwood St, San Francisco, CA 94016" +309126,Bose SoundSport Headphones,1,99.99,12/15/19 15:05,"586 North St, Boston, MA 02215" +309127,Bose SoundSport Headphones,1,99.99,12/07/19 10:46,"765 Cherry St, Dallas, TX 75001" +309128,USB-C Charging Cable,1,11.95,12/17/19 22:00,"719 Jefferson St, New York City, NY 10001" +309129,USB-C Charging Cable,1,11.95,12/30/19 20:34,"141 Jackson St, Seattle, WA 98101" +309130,AA Batteries (4-pack),1,3.84,12/06/19 09:41,"225 Church St, New York City, NY 10001" +309131,USB-C Charging Cable,1,11.95,12/25/19 19:18,"204 Cherry St, Dallas, TX 75001" +309132,Bose SoundSport Headphones,1,99.99,12/20/19 22:24,"194 9th St, Boston, MA 02215" +309133,Bose SoundSport Headphones,1,99.99,12/27/19 23:53,"611 Walnut St, Seattle, WA 98101" +309134,AAA Batteries (4-pack),1,2.99,12/10/19 14:11,"572 Lake St, San Francisco, CA 94016" +309135,AAA Batteries (4-pack),1,2.99,12/11/19 12:10,"321 Elm St, Austin, TX 73301" +309136,20in Monitor,1,109.99,12/10/19 14:30,"84 Ridge St, San Francisco, CA 94016" +309137,Apple Airpods Headphones,1,150,12/29/19 07:39,"538 Cherry St, Austin, TX 73301" +309138,Wired Headphones,1,11.99,12/10/19 18:32,"634 Willow St, San Francisco, CA 94016" +309139,Apple Airpods Headphones,1,150,12/27/19 01:17,"653 11th St, Los Angeles, CA 90001" +309140,Lightning Charging Cable,1,14.95,12/21/19 20:00,"459 Dogwood St, San Francisco, CA 94016" +309141,20in Monitor,1,109.99,12/06/19 13:22,"608 Jackson St, New York City, NY 10001" +309142,AA Batteries (4-pack),1,3.84,12/27/19 22:45,"27 Adams St, Atlanta, GA 30301" +309143,Wired Headphones,2,11.99,12/19/19 12:29,"156 Elm St, New York City, NY 10001" +309144,USB-C Charging Cable,1,11.95,12/11/19 19:59,"235 7th St, San Francisco, CA 94016" +309145,ThinkPad Laptop,1,999.99,12/28/19 21:31,"44 13th St, Los Angeles, CA 90001" +309146,AAA Batteries (4-pack),1,2.99,12/28/19 15:42,"370 2nd St, New York City, NY 10001" +309147,iPhone,1,700,12/12/19 12:33,"302 Chestnut St, Seattle, WA 98101" +309148,Apple Airpods Headphones,1,150,12/10/19 08:38,"614 10th St, Los Angeles, CA 90001" +309149,ThinkPad Laptop,1,999.99,12/06/19 15:27,"810 North St, San Francisco, CA 94016" +309150,AA Batteries (4-pack),1,3.84,12/03/19 23:08,"8 Maple St, Los Angeles, CA 90001" +309151,Wired Headphones,1,11.99,12/18/19 08:05,"987 Maple St, Boston, MA 02215" +309152,AA Batteries (4-pack),1,3.84,12/28/19 16:37,"241 Meadow St, New York City, NY 10001" +309153,Lightning Charging Cable,1,14.95,12/03/19 18:20,"77 Jackson St, Seattle, WA 98101" +309154,AA Batteries (4-pack),1,3.84,12/07/19 15:16,"141 South St, Los Angeles, CA 90001" +309155,Bose SoundSport Headphones,1,99.99,12/26/19 18:26,"888 Highland St, San Francisco, CA 94016" +309156,Apple Airpods Headphones,1,150,12/25/19 17:52,"650 Lakeview St, Los Angeles, CA 90001" +309157,27in FHD Monitor,1,149.99,12/13/19 10:33,"231 Lake St, Los Angeles, CA 90001" +309158,AAA Batteries (4-pack),4,2.99,12/16/19 16:56,"109 Ridge St, San Francisco, CA 94016" +309159,Macbook Pro Laptop,1,1700,12/04/19 22:36,"776 Cherry St, Dallas, TX 75001" +309159,Bose SoundSport Headphones,1,99.99,12/04/19 22:36,"776 Cherry St, Dallas, TX 75001" +309160,USB-C Charging Cable,1,11.95,12/12/19 22:26,"225 2nd St, Dallas, TX 75001" +309161,27in FHD Monitor,1,149.99,12/23/19 17:48,"129 Maple St, Seattle, WA 98101" +309162,Apple Airpods Headphones,1,150,12/22/19 12:31,"302 Willow St, Boston, MA 02215" +309163,Google Phone,1,600,12/26/19 06:17,"501 Jackson St, New York City, NY 10001" +309164,Macbook Pro Laptop,1,1700,12/14/19 07:12,"243 4th St, Dallas, TX 75001" +309165,Wired Headphones,1,11.99,12/14/19 08:38,"512 Chestnut St, San Francisco, CA 94016" +309166,AAA Batteries (4-pack),1,2.99,12/09/19 16:19,"871 7th St, Los Angeles, CA 90001" +309167,20in Monitor,1,109.99,12/02/19 07:31,"188 Spruce St, Boston, MA 02215" +309168,Lightning Charging Cable,1,14.95,12/27/19 21:23,"326 4th St, Los Angeles, CA 90001" +309169,Bose SoundSport Headphones,1,99.99,12/27/19 10:05,"605 6th St, Portland, OR 97035" +309170,USB-C Charging Cable,1,11.95,12/23/19 15:59,"781 7th St, San Francisco, CA 94016" +309171,27in 4K Gaming Monitor,1,389.99,12/07/19 13:17,"897 10th St, Dallas, TX 75001" +309172,Google Phone,1,600,12/29/19 23:17,"672 7th St, Dallas, TX 75001" +309173,Apple Airpods Headphones,1,150,12/29/19 09:09,"251 2nd St, Los Angeles, CA 90001" +309174,Wired Headphones,1,11.99,12/09/19 10:54,"884 River St, Seattle, WA 98101" +309175,27in FHD Monitor,1,149.99,12/16/19 13:12,"85 1st St, Atlanta, GA 30301" +309176,USB-C Charging Cable,1,11.95,12/07/19 20:41,"412 Hill St, Boston, MA 02215" +309177,Flatscreen TV,1,300,12/13/19 11:53,"538 Madison St, Dallas, TX 75001" +309178,Apple Airpods Headphones,1,150,12/29/19 12:07,"467 West St, San Francisco, CA 94016" +309179,Flatscreen TV,1,300,12/09/19 22:26,"19 Forest St, Portland, OR 97035" +309180,Flatscreen TV,1,300,12/01/19 10:51,"647 Elm St, Seattle, WA 98101" +309181,AAA Batteries (4-pack),1,2.99,12/16/19 09:00,"693 10th St, Dallas, TX 75001" +309182,Bose SoundSport Headphones,1,99.99,12/04/19 15:10,"936 Main St, San Francisco, CA 94016" +309183,Macbook Pro Laptop,1,1700,12/27/19 14:38,"381 Lake St, San Francisco, CA 94016" +309184,USB-C Charging Cable,1,11.95,12/25/19 16:51,"466 Highland St, Los Angeles, CA 90001" +309185,20in Monitor,1,109.99,12/14/19 09:27,"24 Walnut St, Los Angeles, CA 90001" +309186,USB-C Charging Cable,1,11.95,12/22/19 16:22,"729 Willow St, New York City, NY 10001" +309187,Lightning Charging Cable,1,14.95,12/05/19 15:57,"612 12th St, Dallas, TX 75001" +309188,AA Batteries (4-pack),1,3.84,12/25/19 18:59,"679 South St, Austin, TX 73301" +309189,AA Batteries (4-pack),1,3.84,12/31/19 10:56,"182 North St, Boston, MA 02215" +309190,AA Batteries (4-pack),1,3.84,12/09/19 16:22,"959 5th St, Los Angeles, CA 90001" +309191,Wired Headphones,1,11.99,12/08/19 17:00,"927 Main St, San Francisco, CA 94016" +309192,iPhone,1,700,12/31/19 11:32,"780 North St, Austin, TX 73301" +309193,27in FHD Monitor,1,149.99,12/07/19 14:13,"763 Johnson St, Dallas, TX 75001" +309194,20in Monitor,1,109.99,12/12/19 19:08,"645 North St, New York City, NY 10001" +309195,Lightning Charging Cable,1,14.95,12/15/19 20:21,"914 Adams St, New York City, NY 10001" +309196,Wired Headphones,1,11.99,12/10/19 11:42,"445 Cherry St, Seattle, WA 98101" +309197,Bose SoundSport Headphones,1,99.99,12/21/19 20:09,"836 Lincoln St, New York City, NY 10001" +309198,Wired Headphones,1,11.99,12/09/19 06:51,"299 12th St, Atlanta, GA 30301" +309199,iPhone,1,700,12/01/19 10:31,"115 14th St, Los Angeles, CA 90001" +309200,AAA Batteries (4-pack),1,2.99,12/22/19 16:49,"472 Ridge St, San Francisco, CA 94016" +309201,iPhone,1,700,12/31/19 13:45,"457 River St, Los Angeles, CA 90001" +309201,Wired Headphones,2,11.99,12/31/19 13:45,"457 River St, Los Angeles, CA 90001" +309202,Wired Headphones,1,11.99,12/24/19 09:13,"797 6th St, Portland, OR 97035" +309203,Flatscreen TV,1,300,12/29/19 22:19,"253 Jefferson St, New York City, NY 10001" +309204,Google Phone,1,600,12/16/19 07:48,"323 6th St, Portland, OR 97035" +309205,Apple Airpods Headphones,1,150,12/12/19 14:59,"497 6th St, New York City, NY 10001" +309206,Lightning Charging Cable,1,14.95,12/11/19 22:14,"682 9th St, San Francisco, CA 94016" +309207,AAA Batteries (4-pack),1,2.99,12/19/19 09:40,"224 Dogwood St, Boston, MA 02215" +309208,Apple Airpods Headphones,1,150,12/26/19 15:27,"767 South St, San Francisco, CA 94016" +309209,Wired Headphones,1,11.99,12/26/19 00:58,"248 West St, Portland, OR 97035" +309210,USB-C Charging Cable,2,11.95,12/16/19 17:18,"369 Walnut St, Dallas, TX 75001" +309211,AAA Batteries (4-pack),1,2.99,12/23/19 13:03,"166 Lincoln St, Dallas, TX 75001" +309212,AA Batteries (4-pack),2,3.84,12/02/19 12:32,"295 South St, Dallas, TX 75001" +309213,Apple Airpods Headphones,1,150,12/14/19 20:54,"703 Highland St, Dallas, TX 75001" +309214,Lightning Charging Cable,1,14.95,12/26/19 12:09,"942 Hickory St, New York City, NY 10001" +309215,Wired Headphones,1,11.99,12/01/19 07:36,"483 Elm St, Boston, MA 02215" +309216,AAA Batteries (4-pack),1,2.99,12/31/19 15:19,"470 South St, Austin, TX 73301" +309217,USB-C Charging Cable,1,11.95,12/01/19 20:57,"387 9th St, Portland, OR 97035" +309218,AAA Batteries (4-pack),2,2.99,12/27/19 03:04,"803 10th St, San Francisco, CA 94016" +309219,Wired Headphones,1,11.99,12/24/19 09:58,"757 Walnut St, San Francisco, CA 94016" +309220,iPhone,1,700,12/22/19 18:22,"323 Pine St, Portland, OR 97035" +309221,27in FHD Monitor,1,149.99,12/17/19 11:58,"398 Maple St, San Francisco, CA 94016" +309222,AAA Batteries (4-pack),2,2.99,12/16/19 09:56,"226 5th St, San Francisco, CA 94016" +309223,27in FHD Monitor,1,149.99,12/14/19 12:36,"881 13th St, Atlanta, GA 30301" +309224,AAA Batteries (4-pack),2,2.99,12/06/19 22:10,"28 Highland St, Los Angeles, CA 90001" +309225,Vareebadd Phone,1,400,12/01/19 16:03,"213 7th St, Seattle, WA 98101" +309226,Macbook Pro Laptop,1,1700,12/13/19 16:37,"151 Hickory St, Seattle, WA 98101" +309227,USB-C Charging Cable,1,11.95,12/08/19 15:45,"385 Lakeview St, Dallas, TX 75001" +309228,Google Phone,1,600,12/30/19 12:41,"393 Cedar St, Boston, MA 02215" +309229,Google Phone,1,600,12/26/19 17:45,"953 9th St, Dallas, TX 75001" +309230,Apple Airpods Headphones,2,150,12/04/19 13:31,"292 12th St, Seattle, WA 98101" +309231,ThinkPad Laptop,1,999.99,12/09/19 12:08,"296 Highland St, New York City, NY 10001" +309232,Apple Airpods Headphones,1,150,12/17/19 16:59,"396 6th St, San Francisco, CA 94016" +309233,AAA Batteries (4-pack),2,2.99,12/03/19 12:09,"92 South St, Los Angeles, CA 90001" +309234,27in 4K Gaming Monitor,1,389.99,12/19/19 18:48,"491 Willow St, Dallas, TX 75001" +309235,Macbook Pro Laptop,1,1700,12/20/19 13:44,"179 Chestnut St, Dallas, TX 75001" +309236,Lightning Charging Cable,1,14.95,12/20/19 05:15,"373 South St, New York City, NY 10001" +309237,AA Batteries (4-pack),2,3.84,12/25/19 13:44,"479 11th St, Atlanta, GA 30301" +309238,Macbook Pro Laptop,1,1700,12/03/19 17:39,"396 Elm St, New York City, NY 10001" +309239,Bose SoundSport Headphones,1,99.99,12/29/19 18:19,"170 Madison St, San Francisco, CA 94016" +309240,Wired Headphones,1,11.99,12/23/19 14:14,"279 Walnut St, Boston, MA 02215" +309241,Google Phone,1,600,12/14/19 19:33,"14 Wilson St, Atlanta, GA 30301" +309242,AAA Batteries (4-pack),1,2.99,12/30/19 13:46,"859 Church St, Seattle, WA 98101" +309243,LG Washing Machine,1,600.0,12/14/19 19:57,"822 Adams St, Los Angeles, CA 90001" +309244,USB-C Charging Cable,2,11.95,12/05/19 15:50,"726 Highland St, San Francisco, CA 94016" +309245,27in FHD Monitor,1,149.99,12/10/19 12:40,"758 Chestnut St, San Francisco, CA 94016" +309246,AAA Batteries (4-pack),1,2.99,12/09/19 11:09,"444 Pine St, San Francisco, CA 94016" +309247,AA Batteries (4-pack),1,3.84,12/07/19 11:46,"802 Hickory St, Portland, OR 97035" +309248,Lightning Charging Cable,1,14.95,12/03/19 20:45,"55 Madison St, Boston, MA 02215" +309249,Apple Airpods Headphones,1,150,12/26/19 20:14,"942 South St, Seattle, WA 98101" +309250,AAA Batteries (4-pack),1,2.99,12/10/19 22:29,"737 Madison St, New York City, NY 10001" +309251,AA Batteries (4-pack),2,3.84,12/21/19 13:36,"695 Main St, New York City, NY 10001" +309252,ThinkPad Laptop,1,999.99,12/24/19 16:07,"94 Jackson St, San Francisco, CA 94016" +309253,27in 4K Gaming Monitor,1,389.99,12/24/19 18:18,"242 Meadow St, Atlanta, GA 30301" +309254,Bose SoundSport Headphones,1,99.99,12/04/19 11:47,"917 Ridge St, Boston, MA 02215" +309255,Bose SoundSport Headphones,1,99.99,12/29/19 11:24,"913 Sunset St, Seattle, WA 98101" +309256,AAA Batteries (4-pack),4,2.99,12/19/19 12:37,"990 Walnut St, Los Angeles, CA 90001" +309257,AAA Batteries (4-pack),1,2.99,12/27/19 20:32,"390 Lakeview St, Austin, TX 73301" +309258,20in Monitor,1,109.99,12/19/19 20:26,"769 Ridge St, Austin, TX 73301" +309259,Wired Headphones,1,11.99,12/16/19 22:59,"634 Washington St, Seattle, WA 98101" +309260,20in Monitor,1,109.99,12/22/19 08:33,"933 2nd St, Boston, MA 02215" +309261,AAA Batteries (4-pack),1,2.99,12/08/19 15:06,"998 Adams St, Seattle, WA 98101" +309262,Lightning Charging Cable,1,14.95,12/26/19 20:09,"392 Hickory St, Los Angeles, CA 90001" +309263,20in Monitor,1,109.99,12/14/19 10:57,"592 South St, Dallas, TX 75001" +309264,Bose SoundSport Headphones,1,99.99,12/27/19 18:12,"4 Maple St, San Francisco, CA 94016" +309265,Lightning Charging Cable,1,14.95,12/05/19 18:44,"71 Hickory St, San Francisco, CA 94016" +309266,Macbook Pro Laptop,1,1700,12/08/19 11:21,"123 Pine St, Boston, MA 02215" +309267,AAA Batteries (4-pack),1,2.99,12/05/19 19:24,"863 Johnson St, Seattle, WA 98101" +309268,Lightning Charging Cable,1,14.95,12/06/19 13:15,"596 Jackson St, New York City, NY 10001" +309269,Wired Headphones,1,11.99,12/02/19 00:42,"261 Dogwood St, New York City, NY 10001" +309270,Apple Airpods Headphones,1,150,12/25/19 22:19,"554 11th St, Los Angeles, CA 90001" +309271,USB-C Charging Cable,1,11.95,12/02/19 12:03,"313 Meadow St, Austin, TX 73301" +309272,Flatscreen TV,1,300,12/27/19 22:06,"903 10th St, San Francisco, CA 94016" +309273,AAA Batteries (4-pack),1,2.99,12/25/19 10:58,"748 13th St, New York City, NY 10001" +309274,AAA Batteries (4-pack),1,2.99,12/27/19 19:31,"624 Forest St, San Francisco, CA 94016" +309275,Bose SoundSport Headphones,1,99.99,12/15/19 06:52,"64 Washington St, Austin, TX 73301" +309276,27in 4K Gaming Monitor,1,389.99,12/23/19 15:16,"558 South St, Seattle, WA 98101" +309277,Apple Airpods Headphones,1,150,12/10/19 19:58,"948 Highland St, New York City, NY 10001" +309278,Lightning Charging Cable,1,14.95,12/07/19 22:23,"656 14th St, Los Angeles, CA 90001" +309279,AAA Batteries (4-pack),1,2.99,12/07/19 06:53,"12 Hill St, New York City, NY 10001" +309280,Lightning Charging Cable,1,14.95,12/23/19 20:02,"205 Lake St, Atlanta, GA 30301" +309281,Wired Headphones,1,11.99,12/12/19 12:25,"909 Jackson St, Austin, TX 73301" +309282,34in Ultrawide Monitor,1,379.99,12/15/19 09:52,"863 Jefferson St, Atlanta, GA 30301" +309283,USB-C Charging Cable,1,11.95,12/06/19 09:59,"300 5th St, New York City, NY 10001" +309284,Lightning Charging Cable,1,14.95,12/30/19 23:28,"295 Hill St, New York City, NY 10001" +309285,AA Batteries (4-pack),1,3.84,12/02/19 14:38,"719 14th St, San Francisco, CA 94016" +309286,AAA Batteries (4-pack),3,2.99,12/27/19 22:15,"638 Madison St, San Francisco, CA 94016" +309287,AA Batteries (4-pack),1,3.84,12/19/19 18:55,"343 10th St, San Francisco, CA 94016" +309288,USB-C Charging Cable,1,11.95,12/16/19 13:39,"734 10th St, Los Angeles, CA 90001" +309289,Google Phone,1,600,12/30/19 11:13,"3 River St, San Francisco, CA 94016" +309289,USB-C Charging Cable,1,11.95,12/30/19 11:13,"3 River St, San Francisco, CA 94016" +309290,AAA Batteries (4-pack),1,2.99,12/11/19 14:32,"352 Maple St, San Francisco, CA 94016" +309291,USB-C Charging Cable,1,11.95,12/17/19 13:34,"490 Jefferson St, San Francisco, CA 94016" +309292,USB-C Charging Cable,1,11.95,12/07/19 13:20,"960 Forest St, Boston, MA 02215" +309293,Apple Airpods Headphones,1,150,12/03/19 21:33,"972 Jackson St, New York City, NY 10001" +309294,USB-C Charging Cable,1,11.95,12/23/19 21:55,"629 Cedar St, Atlanta, GA 30301" +309295,Lightning Charging Cable,1,14.95,12/04/19 11:00,"15 Spruce St, San Francisco, CA 94016" +309296,Bose SoundSport Headphones,1,99.99,12/16/19 13:20,"133 5th St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +309297,27in FHD Monitor,1,149.99,12/12/19 22:36,"207 North St, Atlanta, GA 30301" +309298,Lightning Charging Cable,1,14.95,01/01/20 00:11,"439 North St, Seattle, WA 98101" +309299,Google Phone,1,600,12/30/19 02:15,"446 Main St, San Francisco, CA 94016" +309300,Lightning Charging Cable,1,14.95,12/09/19 13:33,"280 Cherry St, San Francisco, CA 94016" +309300,Lightning Charging Cable,1,14.95,12/09/19 13:33,"280 Cherry St, San Francisco, CA 94016" +309301,Bose SoundSport Headphones,1,99.99,12/16/19 00:05,"383 11th St, Portland, ME 04101" +309302,27in FHD Monitor,1,149.99,12/17/19 17:11,"578 8th St, New York City, NY 10001" +309303,AAA Batteries (4-pack),1,2.99,12/14/19 16:36,"604 6th St, Los Angeles, CA 90001" +309304,Flatscreen TV,1,300,12/01/19 14:28,"595 Jackson St, Dallas, TX 75001" +309305,Bose SoundSport Headphones,1,99.99,12/13/19 07:03,"935 Chestnut St, Los Angeles, CA 90001" +309306,AAA Batteries (4-pack),1,2.99,12/06/19 17:18,"684 Jackson St, Seattle, WA 98101" +309307,AA Batteries (4-pack),1,3.84,12/14/19 14:05,"741 Park St, Atlanta, GA 30301" +309308,Bose SoundSport Headphones,1,99.99,12/06/19 11:29,"754 14th St, Los Angeles, CA 90001" +309309,AA Batteries (4-pack),1,3.84,12/12/19 15:04,"261 Johnson St, Austin, TX 73301" +309310,Apple Airpods Headphones,1,150,12/27/19 01:44,"436 Adams St, San Francisco, CA 94016" +309311,Lightning Charging Cable,1,14.95,12/02/19 11:16,"593 11th St, New York City, NY 10001" +309312,AAA Batteries (4-pack),2,2.99,12/11/19 19:27,"687 14th St, Portland, OR 97035" +309313,Lightning Charging Cable,1,14.95,12/01/19 22:23,"429 North St, Los Angeles, CA 90001" +309314,AAA Batteries (4-pack),1,2.99,12/12/19 15:11,"4 Wilson St, Austin, TX 73301" +309315,AA Batteries (4-pack),1,3.84,12/08/19 13:46,"144 Dogwood St, Los Angeles, CA 90001" +309316,Wired Headphones,1,11.99,12/10/19 11:10,"393 Sunset St, Portland, OR 97035" +309317,Lightning Charging Cable,1,14.95,12/31/19 10:58,"831 Jackson St, Dallas, TX 75001" +309318,Wired Headphones,1,11.99,12/23/19 14:33,"605 Lincoln St, Portland, OR 97035" +309319,27in FHD Monitor,1,149.99,12/23/19 09:28,"627 Madison St, Portland, OR 97035" +309320,AA Batteries (4-pack),2,3.84,12/25/19 19:53,"243 13th St, San Francisco, CA 94016" +309321,34in Ultrawide Monitor,1,379.99,12/21/19 19:35,"815 Pine St, Austin, TX 73301" +309322,Lightning Charging Cable,1,14.95,12/19/19 17:21,"600 Jefferson St, New York City, NY 10001" +309323,AA Batteries (4-pack),1,3.84,12/11/19 23:56,"133 Spruce St, Atlanta, GA 30301" +309324,AAA Batteries (4-pack),1,2.99,12/07/19 19:16,"449 Park St, New York City, NY 10001" +309325,USB-C Charging Cable,1,11.95,12/02/19 13:36,"249 Cedar St, Los Angeles, CA 90001" +309326,Wired Headphones,1,11.99,12/14/19 12:30,"136 Cedar St, Seattle, WA 98101" +309327,AA Batteries (4-pack),1,3.84,12/11/19 16:27,"886 7th St, Austin, TX 73301" +309328,Lightning Charging Cable,1,14.95,12/08/19 21:30,"176 Jackson St, San Francisco, CA 94016" +309329,34in Ultrawide Monitor,1,379.99,12/24/19 15:31,"372 Hickory St, San Francisco, CA 94016" +309330,Apple Airpods Headphones,1,150,12/21/19 09:58,"458 Pine St, Boston, MA 02215" +309331,Google Phone,1,600,12/19/19 20:38,"495 Adams St, San Francisco, CA 94016" +309332,AAA Batteries (4-pack),1,2.99,12/12/19 14:58,"187 Walnut St, Los Angeles, CA 90001" +309333,Apple Airpods Headphones,1,150,12/30/19 22:35,"646 Meadow St, Atlanta, GA 30301" +309334,Macbook Pro Laptop,1,1700,01/01/20 00:49,"995 Walnut St, Seattle, WA 98101" +309335,iPhone,1,700,12/23/19 10:55,"631 13th St, Atlanta, GA 30301" +309336,34in Ultrawide Monitor,1,379.99,12/08/19 21:14,"761 South St, New York City, NY 10001" +309337,ThinkPad Laptop,1,999.99,12/17/19 06:26,"603 Forest St, San Francisco, CA 94016" +309338,AAA Batteries (4-pack),2,2.99,12/12/19 14:29,"97 6th St, Los Angeles, CA 90001" +309339,27in FHD Monitor,1,149.99,12/06/19 14:56,"98 7th St, Los Angeles, CA 90001" +309340,Flatscreen TV,1,300,12/26/19 14:56,"813 13th St, Boston, MA 02215" +309341,AAA Batteries (4-pack),1,2.99,12/08/19 07:24,"103 Jackson St, San Francisco, CA 94016" +309342,Google Phone,1,600,12/06/19 19:24,"523 Lincoln St, San Francisco, CA 94016" +309343,USB-C Charging Cable,1,11.95,12/29/19 16:09,"69 Walnut St, San Francisco, CA 94016" +309343,27in FHD Monitor,1,149.99,12/29/19 16:09,"69 Walnut St, San Francisco, CA 94016" +309344,AAA Batteries (4-pack),2,2.99,12/01/19 11:19,"505 Dogwood St, San Francisco, CA 94016" +309345,Wired Headphones,1,11.99,12/10/19 09:02,"568 Dogwood St, Los Angeles, CA 90001" +309346,AA Batteries (4-pack),1,3.84,12/30/19 13:26,"669 Lake St, New York City, NY 10001" +309347,AA Batteries (4-pack),1,3.84,12/23/19 21:45,"462 7th St, Dallas, TX 75001" +309348,Lightning Charging Cable,1,14.95,12/14/19 16:46,"577 7th St, Los Angeles, CA 90001" +309349,27in 4K Gaming Monitor,1,389.99,12/20/19 20:45,"769 Jackson St, Los Angeles, CA 90001" +309350,Lightning Charging Cable,1,14.95,12/17/19 15:55,"854 Ridge St, San Francisco, CA 94016" +309351,Lightning Charging Cable,1,14.95,12/22/19 09:51,"799 West St, Los Angeles, CA 90001" +309352,AAA Batteries (4-pack),1,2.99,12/29/19 08:26,"844 7th St, Los Angeles, CA 90001" +309353,iPhone,1,700,12/11/19 10:33,"765 6th St, Portland, ME 04101" +309354,AAA Batteries (4-pack),2,2.99,12/15/19 08:14,"810 5th St, San Francisco, CA 94016" +309355,Lightning Charging Cable,1,14.95,12/03/19 19:48,"276 Johnson St, San Francisco, CA 94016" +309356,34in Ultrawide Monitor,1,379.99,12/26/19 11:15,"493 Ridge St, Boston, MA 02215" +309357,27in FHD Monitor,1,149.99,12/04/19 09:52,"688 Hill St, Austin, TX 73301" +309358,20in Monitor,1,109.99,12/04/19 15:43,"779 Dogwood St, Los Angeles, CA 90001" +309359,Lightning Charging Cable,1,14.95,12/08/19 19:29,"851 Jefferson St, Austin, TX 73301" +309359,AAA Batteries (4-pack),1,2.99,12/08/19 19:29,"851 Jefferson St, Austin, TX 73301" +309360,Wired Headphones,1,11.99,12/10/19 23:58,"780 2nd St, San Francisco, CA 94016" +309361,Apple Airpods Headphones,1,150,12/04/19 12:24,"696 9th St, Portland, OR 97035" +309362,AAA Batteries (4-pack),1,2.99,12/08/19 16:59,"766 Lakeview St, San Francisco, CA 94016" +309363,AA Batteries (4-pack),1,3.84,12/15/19 07:51,"242 South St, San Francisco, CA 94016" +309364,Macbook Pro Laptop,1,1700,12/24/19 11:57,"753 Meadow St, Seattle, WA 98101" +309365,Apple Airpods Headphones,1,150,12/19/19 15:19,"869 14th St, Los Angeles, CA 90001" +309366,Bose SoundSport Headphones,1,99.99,12/12/19 10:03,"178 Forest St, San Francisco, CA 94016" +309367,Flatscreen TV,1,300,12/04/19 07:10,"236 Washington St, Atlanta, GA 30301" +309368,AAA Batteries (4-pack),3,2.99,12/29/19 21:05,"225 Walnut St, Atlanta, GA 30301" +309369,AA Batteries (4-pack),1,3.84,12/11/19 16:56,"765 Elm St, New York City, NY 10001" +309370,Bose SoundSport Headphones,1,99.99,12/18/19 16:40,"388 Lincoln St, Portland, OR 97035" +309371,AA Batteries (4-pack),1,3.84,12/30/19 22:37,"683 Willow St, San Francisco, CA 94016" +309372,USB-C Charging Cable,1,11.95,12/04/19 18:24,"925 Spruce St, Los Angeles, CA 90001" +309373,AAA Batteries (4-pack),1,2.99,12/01/19 21:26,"22 Meadow St, Portland, OR 97035" +309374,USB-C Charging Cable,1,11.95,12/20/19 22:00,"806 14th St, San Francisco, CA 94016" +309375,AA Batteries (4-pack),1,3.84,12/29/19 22:40,"830 10th St, Los Angeles, CA 90001" +309376,27in FHD Monitor,1,149.99,12/11/19 13:08,"926 Cedar St, Boston, MA 02215" +309377,27in FHD Monitor,1,149.99,12/22/19 10:53,"949 River St, San Francisco, CA 94016" +309378,Bose SoundSport Headphones,1,99.99,12/04/19 12:20,"891 Lake St, Dallas, TX 75001" +309379,Flatscreen TV,1,300,12/02/19 11:14,"780 12th St, Los Angeles, CA 90001" +309380,Wired Headphones,1,11.99,12/31/19 15:59,"812 Walnut St, Atlanta, GA 30301" +309381,AAA Batteries (4-pack),1,2.99,12/12/19 22:42,"146 11th St, San Francisco, CA 94016" +309382,Apple Airpods Headphones,1,150,12/16/19 06:15,"550 Highland St, Los Angeles, CA 90001" +309383,AA Batteries (4-pack),1,3.84,12/24/19 17:40,"892 Hickory St, San Francisco, CA 94016" +309384,ThinkPad Laptop,1,999.99,12/19/19 16:01,"880 Walnut St, Portland, OR 97035" +309385,34in Ultrawide Monitor,1,379.99,12/15/19 16:04,"99 Center St, Portland, OR 97035" +309386,Wired Headphones,1,11.99,12/27/19 18:22,"17 Adams St, San Francisco, CA 94016" +309387,Lightning Charging Cable,1,14.95,12/31/19 13:35,"319 13th St, San Francisco, CA 94016" +309388,USB-C Charging Cable,1,11.95,12/21/19 09:46,"598 13th St, Atlanta, GA 30301" +309389,Wired Headphones,1,11.99,12/24/19 14:15,"474 7th St, Dallas, TX 75001" +309390,Lightning Charging Cable,1,14.95,12/20/19 20:31,"33 Park St, Portland, OR 97035" +309391,AA Batteries (4-pack),1,3.84,12/02/19 16:47,"255 South St, Boston, MA 02215" +309391,20in Monitor,1,109.99,12/02/19 16:47,"255 South St, Boston, MA 02215" +309392,Wired Headphones,1,11.99,12/12/19 15:09,"293 13th St, Dallas, TX 75001" +309393,iPhone,1,700,12/01/19 13:34,"149 Hill St, Portland, ME 04101" +309394,Wired Headphones,1,11.99,12/23/19 11:28,"732 14th St, Portland, OR 97035" +309395,Wired Headphones,1,11.99,12/12/19 22:19,"821 River St, San Francisco, CA 94016" +309396,Apple Airpods Headphones,1,150,12/29/19 15:43,"516 Madison St, Boston, MA 02215" +309397,AAA Batteries (4-pack),1,2.99,12/12/19 18:50,"931 Spruce St, Portland, OR 97035" +309398,AAA Batteries (4-pack),1,2.99,12/12/19 08:47,"414 Forest St, Atlanta, GA 30301" +309399,Lightning Charging Cable,1,14.95,12/05/19 14:23,"984 Church St, New York City, NY 10001" +309400,Wired Headphones,1,11.99,12/20/19 06:44,"760 Jefferson St, Atlanta, GA 30301" +309401,Google Phone,1,600,12/20/19 21:33,"245 Madison St, San Francisco, CA 94016" +309402,Lightning Charging Cable,2,14.95,12/30/19 05:35,"687 Lake St, San Francisco, CA 94016" +309403,Apple Airpods Headphones,1,150,12/16/19 00:37,"889 Johnson St, New York City, NY 10001" +309404,AA Batteries (4-pack),1,3.84,12/07/19 21:26,"42 Highland St, Los Angeles, CA 90001" +309405,AA Batteries (4-pack),2,3.84,12/30/19 12:07,"848 Johnson St, San Francisco, CA 94016" +309406,ThinkPad Laptop,1,999.99,12/06/19 15:41,"426 Dogwood St, Atlanta, GA 30301" +309407,27in FHD Monitor,1,149.99,12/23/19 00:38,"366 River St, Los Angeles, CA 90001" +309408,Apple Airpods Headphones,1,150,12/10/19 18:33,"359 Washington St, San Francisco, CA 94016" +309409,iPhone,1,700,12/10/19 09:48,"790 8th St, Boston, MA 02215" +309410,USB-C Charging Cable,1,11.95,12/29/19 20:29,"702 Sunset St, Los Angeles, CA 90001" +309411,Lightning Charging Cable,1,14.95,12/17/19 15:00,"215 Lakeview St, Boston, MA 02215" +309412,AAA Batteries (4-pack),3,2.99,12/29/19 06:32,"362 Adams St, Los Angeles, CA 90001" +309413,iPhone,1,700,12/03/19 13:56,"949 Hill St, New York City, NY 10001" +309413,Wired Headphones,1,11.99,12/03/19 13:56,"949 Hill St, New York City, NY 10001" +309414,Lightning Charging Cable,1,14.95,12/04/19 23:38,"354 13th St, New York City, NY 10001" +309415,iPhone,1,700,12/17/19 19:53,"305 12th St, Boston, MA 02215" +309415,Wired Headphones,1,11.99,12/17/19 19:53,"305 12th St, Boston, MA 02215" +309416,USB-C Charging Cable,1,11.95,12/10/19 17:09,"681 13th St, Seattle, WA 98101" +309417,34in Ultrawide Monitor,1,379.99,12/20/19 23:40,"940 Willow St, San Francisco, CA 94016" +309418,Apple Airpods Headphones,1,150,12/19/19 19:13,"49 Hickory St, Dallas, TX 75001" +309419,34in Ultrawide Monitor,1,379.99,12/13/19 08:28,"628 5th St, San Francisco, CA 94016" +309420,34in Ultrawide Monitor,1,379.99,12/14/19 16:11,"453 Hill St, Los Angeles, CA 90001" +309421,USB-C Charging Cable,1,11.95,12/03/19 18:56,"408 6th St, San Francisco, CA 94016" +309422,AAA Batteries (4-pack),1,2.99,12/10/19 12:05,"744 Center St, Los Angeles, CA 90001" +309423,AAA Batteries (4-pack),1,2.99,12/16/19 11:51,"527 Church St, Atlanta, GA 30301" +309424,AAA Batteries (4-pack),2,2.99,12/10/19 13:23,"703 Lake St, Dallas, TX 75001" +309425,Wired Headphones,1,11.99,12/02/19 15:51,"65 Washington St, San Francisco, CA 94016" +309426,Bose SoundSport Headphones,1,99.99,12/28/19 07:14,"26 Elm St, Portland, OR 97035" +309427,27in FHD Monitor,1,149.99,12/06/19 07:12,"205 Cherry St, San Francisco, CA 94016" +309428,34in Ultrawide Monitor,1,379.99,12/30/19 16:31,"295 Park St, Dallas, TX 75001" +309429,AA Batteries (4-pack),1,3.84,12/19/19 09:21,"105 Lakeview St, Los Angeles, CA 90001" +309430,AA Batteries (4-pack),1,3.84,12/09/19 21:26,"267 Park St, Boston, MA 02215" +309431,Bose SoundSport Headphones,1,99.99,12/27/19 15:16,"656 Jackson St, New York City, NY 10001" +309432,Bose SoundSport Headphones,1,99.99,12/08/19 18:20,"414 Jefferson St, Atlanta, GA 30301" +309433,iPhone,1,700,12/16/19 12:46,"38 Hickory St, San Francisco, CA 94016" +309434,AA Batteries (4-pack),1,3.84,12/24/19 03:27,"973 Elm St, New York City, NY 10001" +309435,AAA Batteries (4-pack),2,2.99,12/07/19 02:46,"569 4th St, San Francisco, CA 94016" +309436,Flatscreen TV,1,300,12/25/19 22:19,"181 Cherry St, Los Angeles, CA 90001" +309437,AAA Batteries (4-pack),1,2.99,12/04/19 01:36,"397 2nd St, Portland, OR 97035" +309438,Lightning Charging Cable,1,14.95,12/09/19 08:20,"360 Forest St, Atlanta, GA 30301" +309439,Apple Airpods Headphones,1,150,12/07/19 19:39,"959 Main St, Atlanta, GA 30301" +309440,Vareebadd Phone,1,400,12/04/19 16:06,"287 Dogwood St, Portland, OR 97035" +309440,Wired Headphones,1,11.99,12/04/19 16:06,"287 Dogwood St, Portland, OR 97035" +309441,27in FHD Monitor,1,149.99,12/06/19 10:33,"976 Pine St, New York City, NY 10001" +309441,Apple Airpods Headphones,1,150,12/06/19 10:33,"976 Pine St, New York City, NY 10001" +309442,Lightning Charging Cable,1,14.95,12/30/19 13:15,"999 Pine St, Los Angeles, CA 90001" +309443,AA Batteries (4-pack),1,3.84,12/12/19 22:32,"418 Jackson St, Seattle, WA 98101" +309444,iPhone,1,700,12/26/19 15:56,"590 8th St, Atlanta, GA 30301" +309445,34in Ultrawide Monitor,1,379.99,12/16/19 10:20,"998 Sunset St, San Francisco, CA 94016" +309446,Lightning Charging Cable,1,14.95,12/11/19 08:49,"266 Center St, Seattle, WA 98101" +309447,AA Batteries (4-pack),1,3.84,12/02/19 08:13,"821 Ridge St, Atlanta, GA 30301" +309448,USB-C Charging Cable,1,11.95,12/15/19 23:27,"932 Hill St, San Francisco, CA 94016" +309449,ThinkPad Laptop,1,999.99,12/24/19 05:32,"934 Meadow St, Austin, TX 73301" +309450,AAA Batteries (4-pack),2,2.99,12/21/19 10:52,"326 South St, San Francisco, CA 94016" +309451,20in Monitor,1,109.99,12/14/19 18:03,"448 Sunset St, New York City, NY 10001" +309452,USB-C Charging Cable,2,11.95,12/09/19 09:13,"513 Highland St, Portland, ME 04101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +309453,ThinkPad Laptop,1,999.99,12/25/19 13:17,"394 Main St, Los Angeles, CA 90001" +309454,27in FHD Monitor,1,149.99,12/23/19 15:09,"361 12th St, Seattle, WA 98101" +309455,AAA Batteries (4-pack),2,2.99,12/03/19 20:01,"698 Washington St, San Francisco, CA 94016" +309456,Lightning Charging Cable,1,14.95,12/02/19 21:26,"145 Walnut St, Atlanta, GA 30301" +309457,Wired Headphones,1,11.99,12/16/19 19:16,"515 Park St, Los Angeles, CA 90001" +309458,AA Batteries (4-pack),1,3.84,12/06/19 23:25,"263 Center St, Los Angeles, CA 90001" +309459,Wired Headphones,1,11.99,12/14/19 17:29,"371 River St, San Francisco, CA 94016" +309460,Lightning Charging Cable,1,14.95,12/20/19 19:34,"558 Cherry St, Atlanta, GA 30301" +309461,AAA Batteries (4-pack),1,2.99,12/11/19 20:15,"757 Lincoln St, San Francisco, CA 94016" +309462,Wired Headphones,1,11.99,12/07/19 18:26,"405 7th St, New York City, NY 10001" +309463,Wired Headphones,1,11.99,12/30/19 10:34,"746 Jefferson St, San Francisco, CA 94016" +309464,Lightning Charging Cable,1,14.95,12/03/19 22:54,"74 Park St, Los Angeles, CA 90001" +309465,34in Ultrawide Monitor,1,379.99,12/29/19 20:58,"996 Hill St, Seattle, WA 98101" +309466,USB-C Charging Cable,1,11.95,12/05/19 18:16,"489 6th St, San Francisco, CA 94016" +309467,Google Phone,1,600,12/12/19 05:52,"686 5th St, New York City, NY 10001" +309468,Flatscreen TV,1,300,12/30/19 14:36,"536 14th St, San Francisco, CA 94016" +309469,Wired Headphones,1,11.99,12/29/19 00:06,"424 14th St, Dallas, TX 75001" +309470,Apple Airpods Headphones,1,150,12/10/19 09:02,"113 1st St, San Francisco, CA 94016" +309471,Apple Airpods Headphones,1,150,12/23/19 19:02,"370 Wilson St, New York City, NY 10001" +309472,AA Batteries (4-pack),1,3.84,12/29/19 17:18,"94 Sunset St, Dallas, TX 75001" +309473,AA Batteries (4-pack),1,3.84,12/16/19 14:20,"483 Highland St, Los Angeles, CA 90001" +309474,Wired Headphones,1,11.99,12/09/19 12:16,"875 5th St, Los Angeles, CA 90001" +309475,Wired Headphones,1,11.99,12/05/19 15:23,"684 Washington St, Los Angeles, CA 90001" +309476,Wired Headphones,1,11.99,12/30/19 15:41,"584 8th St, San Francisco, CA 94016" +309477,iPhone,1,700,12/30/19 21:11,"610 2nd St, Atlanta, GA 30301" +309477,Lightning Charging Cable,1,14.95,12/30/19 21:11,"610 2nd St, Atlanta, GA 30301" +309478,AA Batteries (4-pack),2,3.84,12/03/19 12:08,"328 Main St, San Francisco, CA 94016" +309479,Lightning Charging Cable,1,14.95,12/06/19 20:01,"42 11th St, Austin, TX 73301" +309480,34in Ultrawide Monitor,1,379.99,12/23/19 18:22,"131 7th St, San Francisco, CA 94016" +309481,20in Monitor,1,109.99,12/14/19 22:24,"545 Maple St, Boston, MA 02215" +309482,Lightning Charging Cable,1,14.95,12/10/19 13:29,"131 10th St, San Francisco, CA 94016" +309483,Lightning Charging Cable,1,14.95,12/19/19 21:08,"751 Lake St, Austin, TX 73301" +309484,USB-C Charging Cable,1,11.95,12/01/19 21:08,"606 12th St, Boston, MA 02215" +309485,AAA Batteries (4-pack),1,2.99,12/01/19 23:55,"554 Jefferson St, San Francisco, CA 94016" +309486,Bose SoundSport Headphones,1,99.99,12/08/19 13:03,"564 Dogwood St, Portland, OR 97035" +309487,AAA Batteries (4-pack),1,2.99,12/26/19 17:35,"724 2nd St, New York City, NY 10001" +309488,Lightning Charging Cable,1,14.95,12/21/19 20:11,"682 Madison St, Los Angeles, CA 90001" +309489,ThinkPad Laptop,1,999.99,12/19/19 10:25,"348 11th St, Seattle, WA 98101" +309490,Google Phone,1,600,12/28/19 20:02,"137 Hill St, San Francisco, CA 94016" +309491,34in Ultrawide Monitor,1,379.99,12/23/19 07:47,"523 Jackson St, New York City, NY 10001" +309492,Macbook Pro Laptop,1,1700,12/03/19 00:11,"718 Ridge St, Seattle, WA 98101" +309493,AAA Batteries (4-pack),2,2.99,12/31/19 21:17,"629 Walnut St, New York City, NY 10001" +309494,USB-C Charging Cable,1,11.95,12/23/19 10:48,"309 6th St, Boston, MA 02215" +309495,Bose SoundSport Headphones,1,99.99,12/23/19 21:36,"686 Church St, New York City, NY 10001" +309496,USB-C Charging Cable,1,11.95,12/03/19 10:23,"885 5th St, Dallas, TX 75001" +309497,Lightning Charging Cable,1,14.95,12/12/19 17:32,"262 Adams St, San Francisco, CA 94016" +309498,Lightning Charging Cable,1,14.95,12/22/19 21:47,"439 Center St, San Francisco, CA 94016" +309499,iPhone,2,700,12/30/19 20:30,"832 Forest St, San Francisco, CA 94016" +309500,iPhone,1,700,12/23/19 22:36,"250 Maple St, Boston, MA 02215" +309500,Lightning Charging Cable,1,14.95,12/23/19 22:36,"250 Maple St, Boston, MA 02215" +309500,Apple Airpods Headphones,1,150,12/23/19 22:36,"250 Maple St, Boston, MA 02215" +309501,Apple Airpods Headphones,1,150,12/31/19 12:05,"558 Sunset St, Portland, ME 04101" +309502,AAA Batteries (4-pack),2,2.99,12/15/19 21:11,"169 4th St, Los Angeles, CA 90001" +309503,Bose SoundSport Headphones,1,99.99,12/27/19 21:29,"724 North St, San Francisco, CA 94016" +309504,Wired Headphones,1,11.99,12/07/19 19:19,"279 6th St, New York City, NY 10001" +309504,ThinkPad Laptop,1,999.99,12/07/19 19:19,"279 6th St, New York City, NY 10001" +309505,34in Ultrawide Monitor,1,379.99,12/10/19 17:20,"589 Maple St, Dallas, TX 75001" +309506,AAA Batteries (4-pack),1,2.99,12/06/19 12:40,"669 Spruce St, New York City, NY 10001" +309507,Lightning Charging Cable,1,14.95,12/19/19 13:31,"316 Hickory St, New York City, NY 10001" +309508,AA Batteries (4-pack),1,3.84,12/20/19 16:57,"990 4th St, New York City, NY 10001" +309509,USB-C Charging Cable,1,11.95,12/05/19 10:18,"826 Ridge St, Atlanta, GA 30301" +309510,LG Dryer,1,600.0,12/23/19 13:30,"939 4th St, Dallas, TX 75001" +309511,AAA Batteries (4-pack),3,2.99,12/15/19 21:42,"603 North St, Boston, MA 02215" +309512,AA Batteries (4-pack),1,3.84,12/10/19 13:14,"108 Hickory St, New York City, NY 10001" +309513,Bose SoundSport Headphones,1,99.99,12/16/19 14:53,"870 2nd St, Austin, TX 73301" +309514,USB-C Charging Cable,1,11.95,12/03/19 13:18,"29 Walnut St, Austin, TX 73301" +,,,,, +309515,USB-C Charging Cable,2,11.95,12/02/19 15:33,"347 Jefferson St, New York City, NY 10001" +309516,Wired Headphones,1,11.99,12/28/19 00:12,"34 7th St, New York City, NY 10001" +309517,AA Batteries (4-pack),1,3.84,12/14/19 16:15,"992 Spruce St, Los Angeles, CA 90001" +309518,Wired Headphones,1,11.99,12/24/19 17:41,"437 5th St, New York City, NY 10001" +309519,AA Batteries (4-pack),3,3.84,12/03/19 12:22,"710 11th St, Atlanta, GA 30301" +309520,USB-C Charging Cable,1,11.95,12/01/19 12:15,"841 6th St, Portland, OR 97035" +309521,Wired Headphones,1,11.99,12/21/19 09:43,"725 Main St, Austin, TX 73301" +309522,Lightning Charging Cable,1,14.95,12/18/19 14:59,"268 13th St, New York City, NY 10001" +309523,Apple Airpods Headphones,1,150,12/07/19 14:48,"929 10th St, San Francisco, CA 94016" +309524,AA Batteries (4-pack),1,3.84,12/27/19 10:58,"435 Jackson St, New York City, NY 10001" +309525,AA Batteries (4-pack),1,3.84,12/13/19 18:06,"294 Jackson St, San Francisco, CA 94016" +309526,Bose SoundSport Headphones,1,99.99,12/12/19 17:37,"253 Adams St, San Francisco, CA 94016" +309527,Apple Airpods Headphones,1,150,12/02/19 21:17,"81 Jefferson St, San Francisco, CA 94016" +309528,AA Batteries (4-pack),1,3.84,12/28/19 12:17,"713 13th St, Dallas, TX 75001" +309529,Wired Headphones,1,11.99,12/13/19 21:09,"811 Jefferson St, San Francisco, CA 94016" +309530,USB-C Charging Cable,1,11.95,12/24/19 07:32,"679 4th St, Boston, MA 02215" +309531,Flatscreen TV,1,300,12/14/19 19:36,"663 Madison St, Los Angeles, CA 90001" +309532,Google Phone,1,600,12/17/19 16:30,"495 Cherry St, Boston, MA 02215" +309532,Bose SoundSport Headphones,1,99.99,12/17/19 16:30,"495 Cherry St, Boston, MA 02215" +309533,27in 4K Gaming Monitor,1,389.99,12/14/19 22:22,"986 Adams St, Boston, MA 02215" +309534,Lightning Charging Cable,1,14.95,12/21/19 10:35,"4 Main St, Los Angeles, CA 90001" +309535,Bose SoundSport Headphones,1,99.99,12/24/19 16:40,"407 Church St, Dallas, TX 75001" +309536,20in Monitor,1,109.99,12/10/19 18:20,"362 9th St, San Francisco, CA 94016" +309537,Apple Airpods Headphones,1,150,12/14/19 18:05,"630 West St, Los Angeles, CA 90001" +309538,Lightning Charging Cable,1,14.95,12/08/19 18:35,"541 Chestnut St, New York City, NY 10001" +309539,Macbook Pro Laptop,1,1700,12/20/19 17:46,"218 Center St, Austin, TX 73301" +309540,AAA Batteries (4-pack),1,2.99,12/16/19 20:59,"519 Main St, Austin, TX 73301" +309541,Google Phone,1,600,12/18/19 22:04,"294 12th St, Boston, MA 02215" +309541,USB-C Charging Cable,1,11.95,12/18/19 22:04,"294 12th St, Boston, MA 02215" +309542,AA Batteries (4-pack),2,3.84,12/05/19 19:22,"895 Sunset St, Los Angeles, CA 90001" +309543,Apple Airpods Headphones,1,150,12/12/19 21:45,"509 Chestnut St, Atlanta, GA 30301" +309544,20in Monitor,1,109.99,12/17/19 16:46,"612 Lincoln St, San Francisco, CA 94016" +309545,27in FHD Monitor,1,149.99,12/26/19 02:18,"367 Johnson St, Portland, OR 97035" +309546,AAA Batteries (4-pack),1,2.99,12/16/19 10:07,"843 7th St, Los Angeles, CA 90001" +309547,27in FHD Monitor,1,149.99,12/18/19 17:41,"956 Adams St, Atlanta, GA 30301" +309548,USB-C Charging Cable,1,11.95,12/19/19 16:43,"289 Cedar St, San Francisco, CA 94016" +309549,Lightning Charging Cable,1,14.95,12/09/19 12:59,"573 Cherry St, Dallas, TX 75001" +309550,Bose SoundSport Headphones,1,99.99,12/07/19 07:36,"385 6th St, Los Angeles, CA 90001" +309551,27in FHD Monitor,1,149.99,12/19/19 20:29,"599 West St, Dallas, TX 75001" +309552,Apple Airpods Headphones,1,150,12/23/19 11:26,"460 Hill St, Seattle, WA 98101" +309553,USB-C Charging Cable,1,11.95,12/30/19 13:22,"483 12th St, Boston, MA 02215" +309554,ThinkPad Laptop,1,999.99,12/07/19 19:22,"742 11th St, Portland, OR 97035" +309555,AA Batteries (4-pack),1,3.84,12/16/19 10:42,"293 Jefferson St, New York City, NY 10001" +309556,20in Monitor,1,109.99,12/08/19 06:42,"629 Forest St, Seattle, WA 98101" +309557,AA Batteries (4-pack),1,3.84,12/10/19 12:20,"180 Pine St, Los Angeles, CA 90001" +309558,AAA Batteries (4-pack),1,2.99,12/29/19 14:27,"132 Adams St, Los Angeles, CA 90001" +309559,Apple Airpods Headphones,1,150,12/07/19 06:06,"111 Sunset St, Dallas, TX 75001" +309560,AA Batteries (4-pack),1,3.84,12/19/19 18:00,"505 Johnson St, Boston, MA 02215" +309561,Google Phone,1,600,12/21/19 11:36,"538 Chestnut St, Los Angeles, CA 90001" +309562,Google Phone,1,600,12/06/19 20:40,"60 Lakeview St, Portland, OR 97035" +309563,20in Monitor,1,109.99,12/22/19 16:33,"328 Meadow St, San Francisco, CA 94016" +309564,Wired Headphones,1,11.99,12/16/19 12:02,"515 11th St, Atlanta, GA 30301" +309565,Flatscreen TV,1,300,12/13/19 02:04,"396 Spruce St, Austin, TX 73301" +309566,AAA Batteries (4-pack),1,2.99,12/07/19 12:30,"196 Park St, San Francisco, CA 94016" +309567,USB-C Charging Cable,1,11.95,12/01/19 14:10,"810 Meadow St, Dallas, TX 75001" +309568,Apple Airpods Headphones,1,150,12/17/19 17:14,"903 12th St, Los Angeles, CA 90001" +309569,Apple Airpods Headphones,1,150,12/24/19 15:56,"378 Spruce St, San Francisco, CA 94016" +309570,Macbook Pro Laptop,1,1700,12/25/19 00:58,"394 Willow St, Portland, OR 97035" +309571,Wired Headphones,1,11.99,12/03/19 15:43,"616 Cherry St, New York City, NY 10001" +309572,USB-C Charging Cable,1,11.95,12/23/19 17:11,"743 Lake St, Boston, MA 02215" +309573,Lightning Charging Cable,1,14.95,12/28/19 08:35,"2 Lake St, New York City, NY 10001" +309574,USB-C Charging Cable,1,11.95,12/08/19 16:10,"854 5th St, Los Angeles, CA 90001" +309575,Bose SoundSport Headphones,1,99.99,12/25/19 08:18,"184 Elm St, Portland, OR 97035" +309576,Macbook Pro Laptop,1,1700,12/24/19 11:50,"995 Johnson St, San Francisco, CA 94016" +309577,20in Monitor,1,109.99,12/20/19 13:26,"520 Main St, Los Angeles, CA 90001" +309578,AA Batteries (4-pack),1,3.84,12/09/19 13:56,"793 Chestnut St, San Francisco, CA 94016" +309579,Wired Headphones,1,11.99,12/12/19 10:20,"504 Cedar St, San Francisco, CA 94016" +309579,27in 4K Gaming Monitor,1,389.99,12/12/19 10:20,"504 Cedar St, San Francisco, CA 94016" +309580,27in 4K Gaming Monitor,1,389.99,12/13/19 20:28,"489 Spruce St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +309581,Lightning Charging Cable,1,14.95,12/24/19 15:32,"651 Cherry St, Dallas, TX 75001" +309582,Google Phone,1,600,12/02/19 20:56,"405 Main St, San Francisco, CA 94016" +309583,34in Ultrawide Monitor,1,379.99,12/25/19 19:10,"980 Park St, Los Angeles, CA 90001" +309584,AAA Batteries (4-pack),2,2.99,12/05/19 17:06,"353 Elm St, Portland, ME 04101" +309585,AA Batteries (4-pack),1,3.84,12/16/19 17:53,"777 Chestnut St, Seattle, WA 98101" +309586,Google Phone,1,600,12/09/19 22:08,"565 12th St, San Francisco, CA 94016" +309586,USB-C Charging Cable,2,11.95,12/09/19 22:08,"565 12th St, San Francisco, CA 94016" +309586,Bose SoundSport Headphones,1,99.99,12/09/19 22:08,"565 12th St, San Francisco, CA 94016" +309587,AA Batteries (4-pack),1,3.84,12/05/19 21:24,"174 9th St, Seattle, WA 98101" +309588,LG Washing Machine,1,600.0,12/18/19 12:50,"597 2nd St, Los Angeles, CA 90001" +309589,USB-C Charging Cable,1,11.95,12/29/19 17:09,"840 Center St, Seattle, WA 98101" +309590,AA Batteries (4-pack),1,3.84,12/30/19 10:54,"383 North St, Portland, OR 97035" +309591,Flatscreen TV,1,300,12/23/19 19:34,"206 Main St, Los Angeles, CA 90001" +309592,Wired Headphones,1,11.99,12/25/19 21:16,"586 Jefferson St, Austin, TX 73301" +309593,iPhone,1,700,12/23/19 18:41,"208 11th St, San Francisco, CA 94016" +309593,Lightning Charging Cable,1,14.95,12/23/19 18:41,"208 11th St, San Francisco, CA 94016" +309593,Apple Airpods Headphones,1,150,12/23/19 18:41,"208 11th St, San Francisco, CA 94016" +309594,Bose SoundSport Headphones,1,99.99,12/04/19 11:01,"109 7th St, San Francisco, CA 94016" +309595,Macbook Pro Laptop,1,1700,12/29/19 22:21,"505 Church St, Los Angeles, CA 90001" +309596,AAA Batteries (4-pack),1,2.99,12/09/19 22:30,"699 Hill St, Boston, MA 02215" +309597,27in 4K Gaming Monitor,1,389.99,12/23/19 13:16,"388 Wilson St, Los Angeles, CA 90001" +309598,Google Phone,1,600,12/19/19 23:05,"189 Forest St, Austin, TX 73301" +309598,Wired Headphones,1,11.99,12/19/19 23:05,"189 Forest St, Austin, TX 73301" +309599,USB-C Charging Cable,1,11.95,12/22/19 13:01,"67 Jackson St, Dallas, TX 75001" +309600,AA Batteries (4-pack),2,3.84,12/30/19 17:13,"633 Johnson St, San Francisco, CA 94016" +309601,USB-C Charging Cable,1,11.95,12/04/19 21:48,"684 9th St, San Francisco, CA 94016" +309602,AA Batteries (4-pack),1,3.84,12/26/19 19:16,"389 Center St, San Francisco, CA 94016" +309603,USB-C Charging Cable,1,11.95,12/20/19 12:30,"810 Center St, Dallas, TX 75001" +309604,Macbook Pro Laptop,1,1700,12/13/19 13:57,"349 Cherry St, Atlanta, GA 30301" +309605,Google Phone,1,600,12/18/19 15:51,"812 2nd St, Los Angeles, CA 90001" +309606,ThinkPad Laptop,1,999.99,12/19/19 16:19,"1 Chestnut St, Atlanta, GA 30301" +309607,AAA Batteries (4-pack),3,2.99,12/24/19 09:57,"191 Madison St, Austin, TX 73301" +309608,Vareebadd Phone,1,400,12/29/19 17:05,"520 Lakeview St, Atlanta, GA 30301" +309609,Apple Airpods Headphones,1,150,12/21/19 22:09,"32 Meadow St, New York City, NY 10001" +309610,AA Batteries (4-pack),2,3.84,12/18/19 15:32,"853 Hickory St, Dallas, TX 75001" +309611,Lightning Charging Cable,1,14.95,12/28/19 11:29,"222 Spruce St, Dallas, TX 75001" +309612,Bose SoundSport Headphones,1,99.99,12/15/19 00:29,"633 Cedar St, Seattle, WA 98101" +309613,Bose SoundSport Headphones,1,99.99,12/06/19 19:56,"640 Lakeview St, San Francisco, CA 94016" +309614,USB-C Charging Cable,1,11.95,12/12/19 23:46,"990 Park St, Los Angeles, CA 90001" +309615,USB-C Charging Cable,1,11.95,12/23/19 12:08,"866 13th St, New York City, NY 10001" +309616,USB-C Charging Cable,1,11.95,12/19/19 22:43,"327 Chestnut St, San Francisco, CA 94016" +309617,Apple Airpods Headphones,1,150,12/30/19 11:56,"525 1st St, Seattle, WA 98101" +309618,Google Phone,1,600,12/26/19 18:07,"946 South St, San Francisco, CA 94016" +309619,Lightning Charging Cable,1,14.95,12/18/19 10:58,"294 8th St, San Francisco, CA 94016" +309620,Flatscreen TV,1,300,12/25/19 04:04,"776 6th St, New York City, NY 10001" +309621,Macbook Pro Laptop,1,1700,12/23/19 15:49,"473 9th St, Los Angeles, CA 90001" +309622,AAA Batteries (4-pack),1,2.99,12/08/19 15:06,"82 Lake St, Atlanta, GA 30301" +309623,Wired Headphones,1,11.99,12/19/19 12:50,"945 Main St, New York City, NY 10001" +309624,Apple Airpods Headphones,1,150,12/13/19 06:10,"112 Lake St, New York City, NY 10001" +309625,Wired Headphones,2,11.99,12/22/19 14:30,"61 Pine St, Los Angeles, CA 90001" +309625,Macbook Pro Laptop,1,1700,12/22/19 14:30,"61 Pine St, Los Angeles, CA 90001" +309626,Macbook Pro Laptop,1,1700,12/21/19 01:58,"392 Pine St, New York City, NY 10001" +309627,Apple Airpods Headphones,1,150,12/06/19 18:22,"712 Jackson St, Los Angeles, CA 90001" +309628,Macbook Pro Laptop,1,1700,12/07/19 15:29,"284 6th St, Dallas, TX 75001" +309629,Wired Headphones,1,11.99,12/04/19 09:38,"367 Highland St, Portland, OR 97035" +309630,Wired Headphones,1,11.99,12/28/19 10:57,"1 Hickory St, Atlanta, GA 30301" +309631,iPhone,1,700,12/29/19 19:41,"417 8th St, San Francisco, CA 94016" +309631,Wired Headphones,1,11.99,12/29/19 19:41,"417 8th St, San Francisco, CA 94016" +309632,AAA Batteries (4-pack),1,2.99,12/15/19 12:41,"445 6th St, Seattle, WA 98101" +309633,AAA Batteries (4-pack),2,2.99,12/07/19 15:12,"828 Madison St, New York City, NY 10001" +309634,AA Batteries (4-pack),1,3.84,12/30/19 00:21,"638 Washington St, Austin, TX 73301" +309635,Macbook Pro Laptop,1,1700,12/20/19 09:29,"315 11th St, Boston, MA 02215" +309636,27in FHD Monitor,1,149.99,12/06/19 16:08,"470 6th St, Portland, ME 04101" +309637,USB-C Charging Cable,1,11.95,12/07/19 13:10,"661 10th St, Boston, MA 02215" +309638,Bose SoundSport Headphones,1,99.99,12/10/19 11:47,"370 Elm St, Los Angeles, CA 90001" +309639,AAA Batteries (4-pack),1,2.99,12/27/19 15:25,"963 2nd St, Boston, MA 02215" +309640,AAA Batteries (4-pack),1,2.99,12/12/19 11:05,"556 10th St, Los Angeles, CA 90001" +309641,Wired Headphones,1,11.99,12/11/19 18:23,"788 10th St, San Francisco, CA 94016" +309642,Lightning Charging Cable,2,14.95,12/30/19 10:02,"16 Hill St, Boston, MA 02215" +309643,34in Ultrawide Monitor,1,379.99,12/03/19 18:04,"142 Chestnut St, Boston, MA 02215" +309644,AA Batteries (4-pack),1,3.84,12/20/19 17:38,"924 North St, San Francisco, CA 94016" +309645,AA Batteries (4-pack),1,3.84,12/30/19 21:42,"407 Forest St, Los Angeles, CA 90001" +309646,Bose SoundSport Headphones,1,99.99,12/01/19 11:19,"15 11th St, New York City, NY 10001" +309647,Lightning Charging Cable,1,14.95,12/05/19 15:37,"162 Willow St, Atlanta, GA 30301" +309648,AA Batteries (4-pack),2,3.84,12/31/19 08:57,"970 Highland St, San Francisco, CA 94016" +309649,Bose SoundSport Headphones,2,99.99,12/31/19 09:33,"301 11th St, New York City, NY 10001" +309650,AA Batteries (4-pack),1,3.84,12/09/19 16:34,"747 12th St, Seattle, WA 98101" +309651,Bose SoundSport Headphones,1,99.99,12/20/19 14:22,"885 8th St, San Francisco, CA 94016" +309652,USB-C Charging Cable,1,11.95,12/09/19 10:59,"611 Forest St, New York City, NY 10001" +309653,Bose SoundSport Headphones,1,99.99,12/07/19 22:56,"962 Jackson St, Boston, MA 02215" +309654,ThinkPad Laptop,1,999.99,12/14/19 12:47,"862 12th St, Los Angeles, CA 90001" +309655,AA Batteries (4-pack),1,3.84,12/25/19 15:56,"365 Pine St, San Francisco, CA 94016" +309656,AA Batteries (4-pack),1,3.84,12/18/19 20:00,"165 Ridge St, San Francisco, CA 94016" +309657,iPhone,1,700,12/20/19 09:52,"725 11th St, San Francisco, CA 94016" +309658,Macbook Pro Laptop,1,1700,12/19/19 18:13,"149 4th St, New York City, NY 10001" +309659,Macbook Pro Laptop,1,1700,12/06/19 21:34,"47 8th St, Portland, ME 04101" +309660,34in Ultrawide Monitor,1,379.99,12/03/19 07:54,"473 8th St, Seattle, WA 98101" +309661,34in Ultrawide Monitor,1,379.99,12/21/19 01:25,"953 Hickory St, Los Angeles, CA 90001" +309662,34in Ultrawide Monitor,1,379.99,12/26/19 15:23,"803 Spruce St, Austin, TX 73301" +309663,Lightning Charging Cable,1,14.95,12/06/19 09:00,"909 Madison St, Los Angeles, CA 90001" +309664,AAA Batteries (4-pack),3,2.99,12/22/19 18:38,"702 11th St, Atlanta, GA 30301" +309665,AAA Batteries (4-pack),3,2.99,12/04/19 16:27,"909 Dogwood St, Dallas, TX 75001" +,,,,, +309666,USB-C Charging Cable,1,11.95,12/10/19 12:49,"509 West St, Boston, MA 02215" +309667,Bose SoundSport Headphones,1,99.99,12/09/19 10:35,"569 13th St, Los Angeles, CA 90001" +309668,Bose SoundSport Headphones,1,99.99,12/19/19 07:13,"72 Ridge St, Portland, OR 97035" +309669,Vareebadd Phone,1,400,12/07/19 15:22,"482 Johnson St, Boston, MA 02215" +309670,iPhone,1,700,12/01/19 17:30,"713 Jefferson St, Portland, OR 97035" +309671,34in Ultrawide Monitor,1,379.99,12/10/19 13:36,"269 Chestnut St, Atlanta, GA 30301" +309672,AA Batteries (4-pack),1,3.84,12/19/19 15:50,"34 Lincoln St, San Francisco, CA 94016" +309673,Apple Airpods Headphones,1,150,12/30/19 09:12,"894 Forest St, San Francisco, CA 94016" +309674,Lightning Charging Cable,1,14.95,12/08/19 23:37,"685 Lakeview St, San Francisco, CA 94016" +309675,AAA Batteries (4-pack),2,2.99,12/02/19 07:17,"297 Jefferson St, Boston, MA 02215" +309676,USB-C Charging Cable,1,11.95,12/05/19 21:23,"205 Madison St, Boston, MA 02215" +309677,Flatscreen TV,1,300,12/09/19 10:12,"483 13th St, Los Angeles, CA 90001" +309678,AAA Batteries (4-pack),1,2.99,12/04/19 11:41,"51 Madison St, Boston, MA 02215" +309679,Macbook Pro Laptop,1,1700,12/22/19 15:08,"798 Hill St, Los Angeles, CA 90001" +309680,27in FHD Monitor,1,149.99,12/26/19 10:53,"239 11th St, San Francisco, CA 94016" +309680,Lightning Charging Cable,1,14.95,12/26/19 10:53,"239 11th St, San Francisco, CA 94016" +309681,Lightning Charging Cable,1,14.95,12/29/19 09:52,"984 Adams St, Boston, MA 02215" +309682,Apple Airpods Headphones,1,150,12/18/19 14:57,"156 2nd St, San Francisco, CA 94016" +309683,27in FHD Monitor,1,149.99,12/14/19 00:57,"814 Hill St, Boston, MA 02215" +309684,Lightning Charging Cable,1,14.95,12/27/19 21:58,"468 Hill St, Los Angeles, CA 90001" +309685,USB-C Charging Cable,1,11.95,12/04/19 11:35,"526 Center St, San Francisco, CA 94016" +309686,AAA Batteries (4-pack),1,2.99,12/20/19 12:26,"967 10th St, San Francisco, CA 94016" +309687,20in Monitor,1,109.99,12/21/19 12:59,"114 6th St, New York City, NY 10001" +309688,34in Ultrawide Monitor,1,379.99,12/12/19 22:25,"732 Hickory St, Los Angeles, CA 90001" +309689,27in FHD Monitor,1,149.99,12/06/19 21:05,"1 West St, Atlanta, GA 30301" +309690,USB-C Charging Cable,1,11.95,12/31/19 12:20,"598 Spruce St, Atlanta, GA 30301" +309691,AA Batteries (4-pack),1,3.84,12/25/19 14:34,"85 Lake St, New York City, NY 10001" +309692,Macbook Pro Laptop,1,1700,12/09/19 21:57,"243 Pine St, Los Angeles, CA 90001" +309693,Lightning Charging Cable,1,14.95,12/31/19 16:58,"344 14th St, Atlanta, GA 30301" +309694,AAA Batteries (4-pack),1,2.99,12/07/19 13:49,"51 Maple St, Atlanta, GA 30301" +309695,34in Ultrawide Monitor,1,379.99,12/14/19 10:04,"30 Adams St, San Francisco, CA 94016" +309696,Apple Airpods Headphones,1,150,12/27/19 23:32,"687 11th St, New York City, NY 10001" +309697,Apple Airpods Headphones,1,150,12/20/19 18:11,"860 2nd St, New York City, NY 10001" +309698,AA Batteries (4-pack),1,3.84,12/02/19 19:54,"965 Ridge St, San Francisco, CA 94016" +309699,USB-C Charging Cable,1,11.95,12/17/19 15:14,"16 Spruce St, San Francisco, CA 94016" +309700,20in Monitor,1,109.99,12/04/19 12:38,"418 Lincoln St, Los Angeles, CA 90001" +309701,Lightning Charging Cable,1,14.95,12/14/19 21:08,"595 North St, San Francisco, CA 94016" +309702,AA Batteries (4-pack),1,3.84,12/25/19 17:03,"263 Dogwood St, San Francisco, CA 94016" +309703,AA Batteries (4-pack),1,3.84,12/25/19 09:33,"371 Lake St, San Francisco, CA 94016" +309704,Apple Airpods Headphones,1,150,12/06/19 21:13,"732 7th St, Seattle, WA 98101" +309705,Wired Headphones,1,11.99,12/10/19 14:40,"308 Hill St, Seattle, WA 98101" +309706,USB-C Charging Cable,1,11.95,12/14/19 12:15,"881 Cedar St, Seattle, WA 98101" +309707,34in Ultrawide Monitor,1,379.99,12/14/19 09:02,"753 10th St, San Francisco, CA 94016" +309708,Bose SoundSport Headphones,1,99.99,12/19/19 14:51,"561 Adams St, Atlanta, GA 30301" +309709,Wired Headphones,1,11.99,12/30/19 21:04,"581 Jefferson St, Atlanta, GA 30301" +309710,AA Batteries (4-pack),2,3.84,12/23/19 12:46,"764 Church St, Boston, MA 02215" +309711,AAA Batteries (4-pack),1,2.99,12/21/19 19:26,"285 Hill St, Atlanta, GA 30301" +309712,Flatscreen TV,1,300,12/29/19 12:14,"833 Chestnut St, Seattle, WA 98101" +309713,Lightning Charging Cable,1,14.95,12/24/19 19:30,"320 7th St, Boston, MA 02215" +309714,USB-C Charging Cable,2,11.95,12/24/19 21:07,"845 Washington St, Los Angeles, CA 90001" +309715,Bose SoundSport Headphones,1,99.99,12/11/19 15:13,"241 8th St, New York City, NY 10001" +309716,AAA Batteries (4-pack),1,2.99,12/29/19 00:02,"527 Hill St, Portland, OR 97035" +309717,Apple Airpods Headphones,1,150,12/07/19 19:30,"185 8th St, Los Angeles, CA 90001" +309718,Bose SoundSport Headphones,1,99.99,12/23/19 21:16,"280 4th St, Atlanta, GA 30301" +309719,AA Batteries (4-pack),1,3.84,12/09/19 09:34,"817 7th St, Boston, MA 02215" +309720,Bose SoundSport Headphones,1,99.99,12/09/19 15:11,"234 5th St, Atlanta, GA 30301" +309721,Flatscreen TV,1,300,12/30/19 14:31,"24 Walnut St, Seattle, WA 98101" +309722,Bose SoundSport Headphones,1,99.99,12/03/19 10:06,"177 2nd St, San Francisco, CA 94016" +309723,Apple Airpods Headphones,1,150,12/03/19 21:31,"157 9th St, San Francisco, CA 94016" +309724,Apple Airpods Headphones,1,150,12/12/19 00:00,"102 Adams St, San Francisco, CA 94016" +309725,Lightning Charging Cable,1,14.95,12/03/19 13:35,"200 1st St, New York City, NY 10001" +309726,Lightning Charging Cable,1,14.95,12/03/19 20:23,"905 Chestnut St, Seattle, WA 98101" +309727,Wired Headphones,2,11.99,12/18/19 09:18,"299 Lake St, San Francisco, CA 94016" +309728,Macbook Pro Laptop,1,1700,12/15/19 23:45,"428 Cedar St, Seattle, WA 98101" +309729,Lightning Charging Cable,1,14.95,12/18/19 14:04,"879 Lincoln St, San Francisco, CA 94016" +309730,Wired Headphones,1,11.99,12/12/19 00:16,"404 Lakeview St, Los Angeles, CA 90001" +309731,34in Ultrawide Monitor,1,379.99,12/30/19 20:10,"853 Ridge St, Seattle, WA 98101" +309732,Flatscreen TV,1,300,12/15/19 13:05,"988 Walnut St, New York City, NY 10001" +309733,AAA Batteries (4-pack),5,2.99,12/24/19 15:03,"981 River St, San Francisco, CA 94016" +309734,USB-C Charging Cable,1,11.95,12/25/19 11:38,"192 Center St, San Francisco, CA 94016" +309734,iPhone,1,700,12/25/19 11:38,"192 Center St, San Francisco, CA 94016" +309735,Wired Headphones,1,11.99,12/02/19 18:14,"370 1st St, Boston, MA 02215" +309736,USB-C Charging Cable,1,11.95,12/17/19 22:24,"61 1st St, Boston, MA 02215" +309737,AAA Batteries (4-pack),2,2.99,12/13/19 03:11,"412 4th St, Portland, ME 04101" +309738,Apple Airpods Headphones,1,150,12/14/19 22:18,"826 Sunset St, Seattle, WA 98101" +309739,iPhone,1,700,12/17/19 07:46,"479 Pine St, Portland, ME 04101" +309740,ThinkPad Laptop,1,999.99,12/12/19 10:47,"250 8th St, Boston, MA 02215" +309741,27in 4K Gaming Monitor,1,389.99,12/08/19 18:42,"144 7th St, San Francisco, CA 94016" +309742,Wired Headphones,1,11.99,12/13/19 18:49,"101 Chestnut St, Los Angeles, CA 90001" +309743,Wired Headphones,1,11.99,12/25/19 16:53,"323 Forest St, San Francisco, CA 94016" +309744,Apple Airpods Headphones,1,150,12/14/19 12:44,"5 2nd St, Los Angeles, CA 90001" +309745,34in Ultrawide Monitor,1,379.99,12/04/19 05:40,"392 Elm St, Atlanta, GA 30301" +309746,ThinkPad Laptop,1,999.99,12/09/19 01:24,"467 Madison St, San Francisco, CA 94016" +309747,34in Ultrawide Monitor,1,379.99,12/17/19 15:21,"869 River St, Boston, MA 02215" +309748,Flatscreen TV,1,300,12/22/19 17:51,"330 Wilson St, Seattle, WA 98101" +309749,Macbook Pro Laptop,1,1700,12/17/19 12:18,"595 Ridge St, New York City, NY 10001" +309749,Flatscreen TV,1,300,12/17/19 12:18,"595 Ridge St, New York City, NY 10001" +309750,AAA Batteries (4-pack),2,2.99,12/22/19 15:55,"926 1st St, Los Angeles, CA 90001" +309751,Lightning Charging Cable,1,14.95,12/23/19 21:24,"85 Sunset St, New York City, NY 10001" +309752,Lightning Charging Cable,1,14.95,12/21/19 07:28,"895 2nd St, Atlanta, GA 30301" +309753,20in Monitor,1,109.99,12/23/19 07:44,"656 Willow St, Los Angeles, CA 90001" +309754,Google Phone,1,600,12/05/19 17:54,"936 Cedar St, San Francisco, CA 94016" +309754,USB-C Charging Cable,1,11.95,12/05/19 17:54,"936 Cedar St, San Francisco, CA 94016" +309755,Google Phone,1,600,12/22/19 18:00,"481 Lake St, Atlanta, GA 30301" +309755,Wired Headphones,1,11.99,12/22/19 18:00,"481 Lake St, Atlanta, GA 30301" +309756,AA Batteries (4-pack),1,3.84,12/10/19 14:26,"773 11th St, San Francisco, CA 94016" +309757,Wired Headphones,1,11.99,12/13/19 09:01,"742 Ridge St, New York City, NY 10001" +309758,Flatscreen TV,1,300,12/27/19 00:34,"332 Park St, Seattle, WA 98101" +309759,Lightning Charging Cable,1,14.95,12/04/19 08:18,"805 Maple St, Atlanta, GA 30301" +309760,Apple Airpods Headphones,1,150,12/12/19 15:04,"922 Meadow St, Los Angeles, CA 90001" +309761,AA Batteries (4-pack),2,3.84,12/11/19 15:38,"517 Ridge St, Seattle, WA 98101" +309762,Flatscreen TV,1,300,12/29/19 12:04,"273 Highland St, Austin, TX 73301" +309763,AAA Batteries (4-pack),3,2.99,12/30/19 21:08,"991 Lakeview St, Seattle, WA 98101" +309764,iPhone,1,700,12/11/19 19:17,"277 Highland St, Seattle, WA 98101" +309764,Wired Headphones,1,11.99,12/11/19 19:17,"277 Highland St, Seattle, WA 98101" +309765,Apple Airpods Headphones,1,150,12/24/19 10:38,"378 Church St, New York City, NY 10001" +309766,iPhone,1,700,12/10/19 15:54,"511 Washington St, San Francisco, CA 94016" +309766,Wired Headphones,1,11.99,12/10/19 15:54,"511 Washington St, San Francisco, CA 94016" +309767,USB-C Charging Cable,1,11.95,12/24/19 10:28,"836 Spruce St, San Francisco, CA 94016" +309768,AAA Batteries (4-pack),1,2.99,12/21/19 15:21,"357 Hill St, San Francisco, CA 94016" +309769,27in FHD Monitor,1,149.99,12/06/19 15:08,"391 2nd St, Los Angeles, CA 90001" +309770,Lightning Charging Cable,1,14.95,12/28/19 14:59,"780 Madison St, Austin, TX 73301" +309771,Bose SoundSport Headphones,1,99.99,12/22/19 21:45,"464 Church St, Los Angeles, CA 90001" +309772,Google Phone,1,600,12/05/19 12:10,"755 Cherry St, Boston, MA 02215" +309773,USB-C Charging Cable,1,11.95,12/01/19 10:21,"72 Sunset St, New York City, NY 10001" +309773,Macbook Pro Laptop,1,1700,12/01/19 10:21,"72 Sunset St, New York City, NY 10001" +309774,Google Phone,1,600,12/20/19 21:37,"345 6th St, Boston, MA 02215" +309774,USB-C Charging Cable,1,11.95,12/20/19 21:37,"345 6th St, Boston, MA 02215" +309775,Apple Airpods Headphones,1,150,12/12/19 08:29,"78 11th St, San Francisco, CA 94016" +309776,Flatscreen TV,1,300,12/05/19 20:15,"836 Pine St, San Francisco, CA 94016" +309777,27in 4K Gaming Monitor,1,389.99,12/13/19 17:35,"350 1st St, Atlanta, GA 30301" +309778,27in FHD Monitor,1,149.99,12/22/19 13:13,"817 Lake St, Seattle, WA 98101" +309779,Apple Airpods Headphones,1,150,12/31/19 07:18,"360 Walnut St, San Francisco, CA 94016" +309780,20in Monitor,1,109.99,12/07/19 11:40,"23 Washington St, Boston, MA 02215" +309781,20in Monitor,1,109.99,12/12/19 11:56,"137 Cherry St, New York City, NY 10001" +309782,Apple Airpods Headphones,1,150,12/30/19 09:12,"955 Forest St, Dallas, TX 75001" +309783,Lightning Charging Cable,1,14.95,12/10/19 12:25,"18 Spruce St, Dallas, TX 75001" +309784,Wired Headphones,1,11.99,12/24/19 08:41,"639 North St, San Francisco, CA 94016" +309785,27in FHD Monitor,1,149.99,12/28/19 20:38,"603 13th St, Los Angeles, CA 90001" +309786,Flatscreen TV,1,300,12/26/19 10:30,"701 Hill St, San Francisco, CA 94016" +309787,USB-C Charging Cable,1,11.95,12/18/19 16:34,"932 9th St, San Francisco, CA 94016" +309788,AAA Batteries (4-pack),2,2.99,12/04/19 19:05,"269 West St, Los Angeles, CA 90001" +309789,AAA Batteries (4-pack),1,2.99,12/24/19 20:06,"166 Lincoln St, Dallas, TX 75001" +309790,ThinkPad Laptop,1,999.99,12/03/19 18:55,"852 Center St, Seattle, WA 98101" +309791,USB-C Charging Cable,1,11.95,12/17/19 20:43,"288 4th St, Dallas, TX 75001" +309792,Bose SoundSport Headphones,1,99.99,12/25/19 20:03,"407 10th St, San Francisco, CA 94016" +309793,ThinkPad Laptop,1,999.99,12/17/19 12:07,"362 7th St, Los Angeles, CA 90001" +309793,AA Batteries (4-pack),1,3.84,12/17/19 12:07,"362 7th St, Los Angeles, CA 90001" +309794,AAA Batteries (4-pack),1,2.99,12/11/19 11:57,"290 Hickory St, New York City, NY 10001" +309795,AA Batteries (4-pack),1,3.84,12/13/19 22:41,"986 Center St, Atlanta, GA 30301" +309796,Bose SoundSport Headphones,1,99.99,12/31/19 11:48,"230 Ridge St, San Francisco, CA 94016" +309797,Apple Airpods Headphones,1,150,12/29/19 15:21,"233 Jefferson St, New York City, NY 10001" +309798,AA Batteries (4-pack),5,3.84,12/20/19 18:41,"3 Chestnut St, Austin, TX 73301" +309799,ThinkPad Laptop,1,999.99,12/30/19 13:29,"764 12th St, Seattle, WA 98101" +309800,Wired Headphones,1,11.99,12/17/19 07:38,"534 Washington St, San Francisco, CA 94016" +309801,AAA Batteries (4-pack),1,2.99,12/20/19 23:46,"688 7th St, San Francisco, CA 94016" +309802,Lightning Charging Cable,1,14.95,12/26/19 22:07,"522 14th St, San Francisco, CA 94016" +309803,Bose SoundSport Headphones,1,99.99,12/02/19 16:31,"231 Lakeview St, Boston, MA 02215" +309804,Lightning Charging Cable,1,14.95,12/31/19 15:08,"632 North St, San Francisco, CA 94016" +309805,Flatscreen TV,1,300,12/16/19 17:54,"385 North St, Los Angeles, CA 90001" +309806,Lightning Charging Cable,1,14.95,12/31/19 11:31,"151 Adams St, Seattle, WA 98101" +309807,Lightning Charging Cable,1,14.95,12/07/19 20:35,"945 10th St, Portland, ME 04101" +309808,34in Ultrawide Monitor,1,379.99,12/28/19 12:13,"284 Park St, Seattle, WA 98101" +309809,USB-C Charging Cable,1,11.95,12/10/19 16:13,"579 Dogwood St, Portland, OR 97035" +309810,Macbook Pro Laptop,1,1700,12/26/19 07:45,"393 Ridge St, Atlanta, GA 30301" +309811,iPhone,1,700,12/07/19 11:08,"287 Park St, Los Angeles, CA 90001" +309811,Apple Airpods Headphones,1,150,12/07/19 11:08,"287 Park St, Los Angeles, CA 90001" +309812,Wired Headphones,1,11.99,12/19/19 16:11,"707 14th St, New York City, NY 10001" +309813,Wired Headphones,1,11.99,12/25/19 01:05,"766 Johnson St, Atlanta, GA 30301" +309814,Lightning Charging Cable,1,14.95,12/24/19 02:29,"966 8th St, Portland, OR 97035" +309815,Apple Airpods Headphones,1,150,12/22/19 04:49,"905 Hill St, Los Angeles, CA 90001" +309816,Lightning Charging Cable,1,14.95,12/31/19 13:56,"525 Adams St, Atlanta, GA 30301" +309817,AA Batteries (4-pack),1,3.84,12/07/19 17:09,"854 9th St, San Francisco, CA 94016" +309818,AA Batteries (4-pack),1,3.84,12/02/19 13:26,"417 Main St, San Francisco, CA 94016" +309819,34in Ultrawide Monitor,1,379.99,12/11/19 14:02,"187 North St, New York City, NY 10001" +309820,Google Phone,1,600,12/12/19 18:27,"497 6th St, Atlanta, GA 30301" +309821,27in 4K Gaming Monitor,1,389.99,12/31/19 13:40,"506 7th St, San Francisco, CA 94016" +309822,AAA Batteries (4-pack),1,2.99,12/02/19 14:26,"898 13th St, Boston, MA 02215" +309823,USB-C Charging Cable,1,11.95,12/16/19 14:16,"422 River St, Portland, OR 97035" +309824,Bose SoundSport Headphones,1,99.99,12/27/19 00:06,"454 Forest St, New York City, NY 10001" +309825,Bose SoundSport Headphones,1,99.99,12/10/19 16:09,"891 Ridge St, Los Angeles, CA 90001" +309826,AA Batteries (4-pack),2,3.84,12/04/19 08:39,"394 South St, Boston, MA 02215" +309827,Lightning Charging Cable,1,14.95,12/30/19 01:12,"22 1st St, Portland, OR 97035" +309828,AA Batteries (4-pack),3,3.84,12/20/19 18:25,"508 Maple St, Austin, TX 73301" +309829,Lightning Charging Cable,1,14.95,12/11/19 11:43,"78 2nd St, San Francisco, CA 94016" +309830,Google Phone,1,600,12/31/19 21:36,"340 5th St, New York City, NY 10001" +309831,34in Ultrawide Monitor,1,379.99,12/08/19 14:54,"653 1st St, New York City, NY 10001" +309832,AA Batteries (4-pack),2,3.84,12/10/19 09:48,"369 Washington St, San Francisco, CA 94016" +309833,Wired Headphones,1,11.99,12/26/19 14:40,"919 Main St, New York City, NY 10001" +309834,34in Ultrawide Monitor,1,379.99,12/08/19 18:30,"594 14th St, Portland, OR 97035" +309835,20in Monitor,1,109.99,12/25/19 16:40,"297 North St, Seattle, WA 98101" +309836,AA Batteries (4-pack),1,3.84,12/21/19 14:50,"62 Hill St, Los Angeles, CA 90001" +309837,Flatscreen TV,1,300,12/19/19 08:56,"134 Main St, Austin, TX 73301" +309838,27in FHD Monitor,1,149.99,12/20/19 17:56,"141 Walnut St, Los Angeles, CA 90001" +309839,Lightning Charging Cable,1,14.95,12/29/19 22:05,"345 Lincoln St, New York City, NY 10001" +309840,Flatscreen TV,1,300,12/31/19 09:51,"730 West St, San Francisco, CA 94016" +309841,Wired Headphones,1,11.99,12/30/19 13:13,"834 4th St, San Francisco, CA 94016" +309842,20in Monitor,1,109.99,12/17/19 14:41,"734 Hickory St, San Francisco, CA 94016" +309843,USB-C Charging Cable,1,11.95,12/01/19 10:28,"490 4th St, Atlanta, GA 30301" +309844,iPhone,1,700,12/29/19 06:08,"363 1st St, Seattle, WA 98101" +309845,Wired Headphones,1,11.99,12/12/19 14:29,"285 Church St, Austin, TX 73301" +309846,27in 4K Gaming Monitor,1,389.99,12/31/19 15:32,"418 Dogwood St, Austin, TX 73301" +309847,ThinkPad Laptop,1,999.99,12/23/19 23:29,"313 Wilson St, Portland, OR 97035" +309848,Apple Airpods Headphones,1,150,12/12/19 09:35,"395 Wilson St, San Francisco, CA 94016" +309849,Lightning Charging Cable,1,14.95,12/09/19 10:17,"190 Hill St, Dallas, TX 75001" +309850,27in FHD Monitor,1,149.99,12/31/19 17:51,"911 Lakeview St, Atlanta, GA 30301" +309851,Lightning Charging Cable,1,14.95,12/31/19 22:54,"492 Highland St, Dallas, TX 75001" +309852,AA Batteries (4-pack),2,3.84,12/04/19 07:20,"648 10th St, San Francisco, CA 94016" +309853,AA Batteries (4-pack),1,3.84,12/29/19 08:27,"330 Lakeview St, Los Angeles, CA 90001" +309854,AA Batteries (4-pack),1,3.84,12/10/19 08:22,"333 Forest St, Portland, OR 97035" +309855,iPhone,1,700,12/19/19 17:26,"250 Ridge St, Austin, TX 73301" +309855,Wired Headphones,1,11.99,12/19/19 17:26,"250 Ridge St, Austin, TX 73301" +309856,27in FHD Monitor,1,149.99,12/16/19 08:21,"123 Hill St, Boston, MA 02215" +309857,Macbook Pro Laptop,1,1700,12/27/19 12:05,"572 4th St, Los Angeles, CA 90001" +309858,AAA Batteries (4-pack),1,2.99,12/05/19 06:31,"935 North St, New York City, NY 10001" +309859,Google Phone,1,600,12/19/19 17:39,"734 5th St, San Francisco, CA 94016" +309860,AAA Batteries (4-pack),1,2.99,12/29/19 12:06,"93 Lakeview St, Dallas, TX 75001" +309861,Bose SoundSport Headphones,1,99.99,12/13/19 09:42,"287 1st St, Portland, OR 97035" +309862,iPhone,1,700,12/12/19 07:35,"162 Church St, Los Angeles, CA 90001" +309863,Bose SoundSport Headphones,1,99.99,12/19/19 13:01,"271 2nd St, San Francisco, CA 94016" +309864,AAA Batteries (4-pack),1,2.99,12/24/19 15:35,"475 Jefferson St, Boston, MA 02215" +309865,27in 4K Gaming Monitor,1,389.99,12/03/19 11:37,"767 Jefferson St, New York City, NY 10001" +309866,AAA Batteries (4-pack),1,2.99,12/05/19 22:09,"10 Wilson St, Dallas, TX 75001" +309867,Apple Airpods Headphones,1,150,12/13/19 16:01,"665 Hickory St, San Francisco, CA 94016" +309868,AAA Batteries (4-pack),1,2.99,12/24/19 01:06,"52 7th St, San Francisco, CA 94016" +309869,Bose SoundSport Headphones,1,99.99,12/05/19 10:52,"681 North St, San Francisco, CA 94016" +309870,Google Phone,1,600,12/18/19 22:27,"769 1st St, San Francisco, CA 94016" +309871,Wired Headphones,1,11.99,12/15/19 01:09,"959 Park St, Boston, MA 02215" +309872,Bose SoundSport Headphones,1,99.99,12/15/19 15:58,"577 Jefferson St, Seattle, WA 98101" +309873,Wired Headphones,1,11.99,12/20/19 17:01,"330 Lincoln St, San Francisco, CA 94016" +309874,27in FHD Monitor,1,149.99,12/05/19 10:06,"595 Cherry St, San Francisco, CA 94016" +309875,Lightning Charging Cable,1,14.95,12/04/19 18:28,"320 Madison St, Seattle, WA 98101" +309876,AA Batteries (4-pack),1,3.84,12/20/19 14:38,"781 Meadow St, San Francisco, CA 94016" +309877,USB-C Charging Cable,1,11.95,12/30/19 03:24,"627 5th St, Los Angeles, CA 90001" +309878,Flatscreen TV,1,300,12/05/19 08:42,"384 Dogwood St, Seattle, WA 98101" +309879,AAA Batteries (4-pack),1,2.99,12/17/19 19:24,"744 West St, Seattle, WA 98101" +309880,Bose SoundSport Headphones,1,99.99,12/07/19 09:40,"917 Cedar St, San Francisco, CA 94016" +309881,Wired Headphones,1,11.99,12/24/19 08:21,"22 Elm St, New York City, NY 10001" +309882,Bose SoundSport Headphones,1,99.99,12/16/19 21:46,"659 Meadow St, Portland, OR 97035" +309883,Bose SoundSport Headphones,1,99.99,12/31/19 09:33,"403 Washington St, New York City, NY 10001" +309884,34in Ultrawide Monitor,1,379.99,12/01/19 07:24,"292 Highland St, Los Angeles, CA 90001" +309885,iPhone,1,700,12/16/19 15:22,"903 12th St, Atlanta, GA 30301" +309886,34in Ultrawide Monitor,1,379.99,12/01/19 20:22,"595 Highland St, Dallas, TX 75001" +309887,Lightning Charging Cable,2,14.95,12/21/19 09:12,"677 Highland St, Dallas, TX 75001" +309888,Apple Airpods Headphones,1,150,12/05/19 09:56,"464 9th St, New York City, NY 10001" +309889,Lightning Charging Cable,1,14.95,12/20/19 09:42,"246 Meadow St, New York City, NY 10001" +309890,20in Monitor,1,109.99,12/26/19 07:47,"739 14th St, New York City, NY 10001" +309891,Apple Airpods Headphones,1,150,12/11/19 07:47,"534 Sunset St, Portland, OR 97035" +309892,Lightning Charging Cable,1,14.95,12/19/19 20:33,"999 Hill St, Los Angeles, CA 90001" +309893,Bose SoundSport Headphones,1,99.99,12/20/19 07:17,"229 Hickory St, Seattle, WA 98101" +309894,AAA Batteries (4-pack),2,2.99,12/24/19 18:51,"398 14th St, Dallas, TX 75001" +,,,,, +309895,34in Ultrawide Monitor,1,379.99,12/24/19 04:29,"330 Highland St, Austin, TX 73301" +309896,Wired Headphones,1,11.99,12/01/19 14:19,"607 Chestnut St, Los Angeles, CA 90001" +309897,20in Monitor,1,109.99,12/10/19 15:23,"446 Chestnut St, Los Angeles, CA 90001" +309898,AAA Batteries (4-pack),1,2.99,12/20/19 07:31,"496 Main St, Los Angeles, CA 90001" +309899,USB-C Charging Cable,1,11.95,12/30/19 09:18,"463 Main St, Portland, OR 97035" +309900,AAA Batteries (4-pack),1,2.99,12/06/19 12:24,"284 Cherry St, Boston, MA 02215" +309901,20in Monitor,1,109.99,12/13/19 15:23,"453 13th St, Portland, ME 04101" +309902,Flatscreen TV,1,300,12/14/19 15:35,"119 Pine St, Portland, OR 97035" +309903,AA Batteries (4-pack),2,3.84,12/27/19 10:38,"131 Sunset St, New York City, NY 10001" +309904,Lightning Charging Cable,1,14.95,12/15/19 10:53,"399 10th St, Dallas, TX 75001" +309905,Wired Headphones,1,11.99,12/15/19 19:08,"958 Washington St, Atlanta, GA 30301" +309906,Wired Headphones,1,11.99,12/17/19 14:23,"394 Jackson St, San Francisco, CA 94016" +309907,USB-C Charging Cable,1,11.95,12/01/19 11:32,"796 Ridge St, Atlanta, GA 30301" +309908,USB-C Charging Cable,1,11.95,12/23/19 13:02,"545 Cherry St, Los Angeles, CA 90001" +309909,Bose SoundSport Headphones,1,99.99,12/07/19 14:10,"906 5th St, Austin, TX 73301" +309910,USB-C Charging Cable,1,11.95,12/04/19 13:37,"388 Lake St, San Francisco, CA 94016" +309911,AA Batteries (4-pack),4,3.84,12/05/19 16:09,"615 2nd St, Dallas, TX 75001" +309912,AA Batteries (4-pack),2,3.84,12/22/19 13:29,"273 8th St, Seattle, WA 98101" +309913,Bose SoundSport Headphones,1,99.99,12/25/19 19:37,"467 Johnson St, New York City, NY 10001" +309914,AAA Batteries (4-pack),1,2.99,12/20/19 08:31,"740 Main St, Atlanta, GA 30301" +309915,Google Phone,1,600,12/08/19 09:06,"354 North St, Atlanta, GA 30301" +309916,Macbook Pro Laptop,1,1700,12/19/19 09:13,"138 Park St, Los Angeles, CA 90001" +309917,Bose SoundSport Headphones,1,99.99,12/17/19 11:22,"918 Lakeview St, Boston, MA 02215" +309918,27in 4K Gaming Monitor,1,389.99,12/30/19 21:14,"680 6th St, New York City, NY 10001" +309919,Google Phone,1,600,12/31/19 12:30,"752 Highland St, Los Angeles, CA 90001" +309919,Wired Headphones,1,11.99,12/31/19 12:30,"752 Highland St, Los Angeles, CA 90001" +309920,Lightning Charging Cable,1,14.95,12/11/19 08:54,"990 Elm St, Atlanta, GA 30301" +309921,34in Ultrawide Monitor,1,379.99,12/21/19 06:26,"531 Forest St, Seattle, WA 98101" +309922,Wired Headphones,1,11.99,12/18/19 08:02,"867 Ridge St, Los Angeles, CA 90001" +309923,Flatscreen TV,1,300,12/05/19 16:59,"285 8th St, San Francisco, CA 94016" +309924,Wired Headphones,1,11.99,12/29/19 07:13,"938 13th St, San Francisco, CA 94016" +309925,Google Phone,1,600,12/16/19 19:23,"674 Adams St, Dallas, TX 75001" +309926,Google Phone,1,600,12/11/19 09:18,"729 Hill St, Boston, MA 02215" +309927,27in FHD Monitor,1,149.99,12/15/19 18:04,"412 River St, Los Angeles, CA 90001" +309928,Wired Headphones,1,11.99,12/23/19 00:15,"212 Cedar St, Boston, MA 02215" +309929,USB-C Charging Cable,1,11.95,12/24/19 09:02,"811 Washington St, Atlanta, GA 30301" +309930,USB-C Charging Cable,1,11.95,12/03/19 17:30,"219 Jefferson St, Boston, MA 02215" +309931,Lightning Charging Cable,1,14.95,12/24/19 22:08,"503 Dogwood St, Seattle, WA 98101" +309932,Wired Headphones,1,11.99,12/13/19 09:19,"931 South St, Los Angeles, CA 90001" +309933,AAA Batteries (4-pack),1,2.99,12/21/19 19:37,"604 Main St, San Francisco, CA 94016" +309934,Wired Headphones,2,11.99,12/16/19 17:32,"427 Main St, San Francisco, CA 94016" +309935,Apple Airpods Headphones,1,150,12/22/19 22:09,"712 Chestnut St, New York City, NY 10001" +309936,Lightning Charging Cable,1,14.95,12/30/19 18:16,"630 Main St, Seattle, WA 98101" +309937,AAA Batteries (4-pack),2,2.99,12/20/19 16:50,"87 1st St, Atlanta, GA 30301" +309938,Wired Headphones,1,11.99,12/11/19 17:33,"219 Walnut St, New York City, NY 10001" +309939,AA Batteries (4-pack),1,3.84,12/28/19 18:10,"486 5th St, San Francisco, CA 94016" +309940,AAA Batteries (4-pack),3,2.99,12/23/19 07:27,"365 Lincoln St, San Francisco, CA 94016" +309941,Google Phone,1,600,12/05/19 14:47,"895 6th St, Los Angeles, CA 90001" +309941,Bose SoundSport Headphones,1,99.99,12/05/19 14:47,"895 6th St, Los Angeles, CA 90001" +309942,Lightning Charging Cable,1,14.95,12/15/19 21:02,"466 8th St, San Francisco, CA 94016" +309943,34in Ultrawide Monitor,1,379.99,12/20/19 12:05,"466 11th St, Boston, MA 02215" +309944,Bose SoundSport Headphones,1,99.99,12/19/19 10:20,"537 9th St, San Francisco, CA 94016" +309945,Wired Headphones,2,11.99,12/17/19 11:38,"306 Park St, San Francisco, CA 94016" +309946,LG Washing Machine,1,600.0,12/12/19 11:45,"558 Johnson St, Los Angeles, CA 90001" +309947,ThinkPad Laptop,1,999.99,12/12/19 15:41,"853 Lincoln St, New York City, NY 10001" +309948,Lightning Charging Cable,1,14.95,12/20/19 19:56,"861 2nd St, San Francisco, CA 94016" +309949,AA Batteries (4-pack),1,3.84,12/05/19 14:24,"980 Church St, San Francisco, CA 94016" +309950,Macbook Pro Laptop,1,1700,12/07/19 19:33,"878 West St, New York City, NY 10001" +309951,USB-C Charging Cable,1,11.95,12/23/19 11:05,"698 Elm St, Los Angeles, CA 90001" +309952,Wired Headphones,1,11.99,12/13/19 22:11,"213 Lincoln St, Seattle, WA 98101" +309953,AAA Batteries (4-pack),1,2.99,12/28/19 13:43,"874 Hill St, Boston, MA 02215" +309954,Apple Airpods Headphones,1,150,12/27/19 22:33,"378 6th St, Los Angeles, CA 90001" +309955,27in FHD Monitor,1,149.99,12/30/19 12:43,"530 Willow St, New York City, NY 10001" +309956,Lightning Charging Cable,1,14.95,12/01/19 14:00,"219 South St, Boston, MA 02215" +309957,Apple Airpods Headphones,1,150,12/17/19 13:08,"378 Park St, Dallas, TX 75001" +309958,Vareebadd Phone,1,400,12/30/19 09:24,"168 Highland St, Austin, TX 73301" +309958,Bose SoundSport Headphones,1,99.99,12/30/19 09:24,"168 Highland St, Austin, TX 73301" +309959,AA Batteries (4-pack),1,3.84,12/12/19 21:31,"831 12th St, Dallas, TX 75001" +309960,Lightning Charging Cable,1,14.95,12/27/19 08:32,"820 South St, Dallas, TX 75001" +309961,Bose SoundSport Headphones,1,99.99,12/04/19 20:56,"753 River St, Los Angeles, CA 90001" +309962,Macbook Pro Laptop,1,1700,12/31/19 12:16,"222 Hickory St, Los Angeles, CA 90001" +309963,34in Ultrawide Monitor,1,379.99,12/06/19 09:21,"434 Lake St, San Francisco, CA 94016" +309964,27in 4K Gaming Monitor,1,389.99,12/10/19 22:08,"885 Jackson St, San Francisco, CA 94016" +309965,Wired Headphones,3,11.99,12/08/19 18:56,"666 4th St, Los Angeles, CA 90001" +309966,AA Batteries (4-pack),1,3.84,12/23/19 01:25,"94 7th St, Dallas, TX 75001" +309967,Lightning Charging Cable,1,14.95,12/09/19 17:04,"493 Hill St, Portland, OR 97035" +309968,USB-C Charging Cable,1,11.95,12/11/19 13:35,"902 4th St, Boston, MA 02215" +309969,Google Phone,1,600,12/02/19 10:51,"18 13th St, Portland, OR 97035" +309970,AAA Batteries (4-pack),2,2.99,12/03/19 11:25,"830 Ridge St, Atlanta, GA 30301" +309971,Apple Airpods Headphones,1,150,12/03/19 23:56,"243 Dogwood St, Atlanta, GA 30301" +309972,AA Batteries (4-pack),1,3.84,12/06/19 13:34,"458 Cedar St, Seattle, WA 98101" +309972,LG Washing Machine,1,600.0,12/06/19 13:34,"458 Cedar St, Seattle, WA 98101" +309973,20in Monitor,1,109.99,12/25/19 16:55,"209 Jefferson St, Atlanta, GA 30301" +309974,USB-C Charging Cable,1,11.95,12/03/19 13:16,"946 7th St, Boston, MA 02215" +309975,Wired Headphones,1,11.99,12/11/19 13:31,"293 Cherry St, Atlanta, GA 30301" +309975,USB-C Charging Cable,1,11.95,12/11/19 13:31,"293 Cherry St, Atlanta, GA 30301" +309976,Wired Headphones,1,11.99,12/12/19 16:01,"666 Park St, Atlanta, GA 30301" +309977,AA Batteries (4-pack),1,3.84,12/22/19 09:48,"105 Dogwood St, Dallas, TX 75001" +309978,Google Phone,1,600,12/29/19 16:20,"37 Washington St, Los Angeles, CA 90001" +309979,Lightning Charging Cable,1,14.95,12/30/19 15:13,"943 Madison St, San Francisco, CA 94016" +309980,AAA Batteries (4-pack),1,2.99,12/12/19 15:21,"695 North St, San Francisco, CA 94016" +309981,Lightning Charging Cable,1,14.95,12/04/19 11:23,"517 Lincoln St, New York City, NY 10001" +309982,AAA Batteries (4-pack),2,2.99,12/01/19 04:41,"487 Ridge St, New York City, NY 10001" +309982,Apple Airpods Headphones,1,150,12/01/19 04:41,"487 Ridge St, New York City, NY 10001" +309983,Lightning Charging Cable,1,14.95,12/07/19 21:30,"241 South St, Seattle, WA 98101" +309984,AAA Batteries (4-pack),4,2.99,12/22/19 16:03,"145 Willow St, Austin, TX 73301" +309985,Flatscreen TV,1,300,12/29/19 21:44,"396 Church St, San Francisco, CA 94016" +309986,Wired Headphones,1,11.99,12/15/19 12:18,"278 Lakeview St, San Francisco, CA 94016" +309987,AAA Batteries (4-pack),1,2.99,12/08/19 16:30,"224 11th St, Seattle, WA 98101" +309988,AAA Batteries (4-pack),1,2.99,12/15/19 22:30,"508 Dogwood St, San Francisco, CA 94016" +309989,27in 4K Gaming Monitor,1,389.99,12/14/19 09:27,"166 Washington St, San Francisco, CA 94016" +309990,Lightning Charging Cable,1,14.95,12/08/19 00:25,"898 Center St, Atlanta, GA 30301" +309991,AA Batteries (4-pack),1,3.84,12/30/19 11:57,"703 Madison St, Portland, OR 97035" +309992,AAA Batteries (4-pack),2,2.99,12/10/19 13:41,"280 Ridge St, Austin, TX 73301" +309993,Wired Headphones,1,11.99,12/25/19 08:23,"527 Wilson St, San Francisco, CA 94016" +309994,AAA Batteries (4-pack),1,2.99,12/15/19 22:42,"824 Hill St, San Francisco, CA 94016" +309995,27in 4K Gaming Monitor,1,389.99,12/23/19 20:48,"204 Elm St, New York City, NY 10001" +309996,Lightning Charging Cable,1,14.95,12/01/19 20:29,"709 South St, Seattle, WA 98101" +309997,Wired Headphones,1,11.99,12/06/19 01:28,"567 2nd St, New York City, NY 10001" +309998,Lightning Charging Cable,1,14.95,12/27/19 08:29,"724 Adams St, New York City, NY 10001" +309999,AA Batteries (4-pack),2,3.84,12/04/19 18:54,"219 Maple St, San Francisco, CA 94016" +310000,Bose SoundSport Headphones,1,99.99,12/25/19 17:31,"643 Dogwood St, Seattle, WA 98101" +310001,AA Batteries (4-pack),3,3.84,12/20/19 21:17,"441 Maple St, Seattle, WA 98101" +310002,Lightning Charging Cable,1,14.95,12/20/19 06:27,"411 Hill St, Los Angeles, CA 90001" +310002,LG Dryer,1,600.0,12/20/19 06:27,"411 Hill St, Los Angeles, CA 90001" +310003,34in Ultrawide Monitor,1,379.99,12/13/19 21:45,"62 Dogwood St, Portland, OR 97035" +310004,iPhone,1,700,12/15/19 13:47,"892 Jefferson St, Portland, ME 04101" +310004,Wired Headphones,1,11.99,12/15/19 13:47,"892 Jefferson St, Portland, ME 04101" +310005,USB-C Charging Cable,1,11.95,12/25/19 20:09,"149 Lake St, Dallas, TX 75001" +310006,AA Batteries (4-pack),1,3.84,12/02/19 20:28,"193 4th St, Atlanta, GA 30301" +310007,LG Dryer,1,600.0,12/21/19 19:54,"108 13th St, Los Angeles, CA 90001" +310008,Apple Airpods Headphones,1,150,12/10/19 17:48,"71 1st St, San Francisco, CA 94016" +310009,USB-C Charging Cable,1,11.95,12/10/19 18:41,"191 Lincoln St, New York City, NY 10001" +310009,iPhone,1,700,12/10/19 18:41,"191 Lincoln St, New York City, NY 10001" +310010,USB-C Charging Cable,1,11.95,12/12/19 19:23,"79 Church St, Los Angeles, CA 90001" +310011,AAA Batteries (4-pack),1,2.99,12/13/19 22:08,"813 South St, Los Angeles, CA 90001" +310012,34in Ultrawide Monitor,1,379.99,12/31/19 19:03,"763 Main St, Portland, OR 97035" +310013,USB-C Charging Cable,1,11.95,12/21/19 11:36,"709 Sunset St, Atlanta, GA 30301" +310014,USB-C Charging Cable,1,11.95,12/20/19 18:14,"498 Madison St, Atlanta, GA 30301" +310015,Wired Headphones,1,11.99,12/24/19 07:25,"219 Chestnut St, San Francisco, CA 94016" +310016,Lightning Charging Cable,1,14.95,12/23/19 13:30,"884 Church St, Portland, OR 97035" +310017,USB-C Charging Cable,1,11.95,12/05/19 12:25,"965 South St, Portland, ME 04101" +310018,AAA Batteries (4-pack),1,2.99,12/30/19 21:58,"602 Adams St, San Francisco, CA 94016" +310019,USB-C Charging Cable,1,11.95,12/03/19 01:36,"459 Madison St, Los Angeles, CA 90001" +310020,ThinkPad Laptop,1,999.99,12/09/19 16:15,"970 Spruce St, San Francisco, CA 94016" +310021,34in Ultrawide Monitor,1,379.99,12/15/19 21:02,"199 Pine St, Los Angeles, CA 90001" +310022,AA Batteries (4-pack),2,3.84,12/06/19 16:13,"846 Main St, San Francisco, CA 94016" +310023,Google Phone,1,600,12/31/19 12:39,"28 Main St, San Francisco, CA 94016" +310024,20in Monitor,1,109.99,12/09/19 08:28,"407 Church St, New York City, NY 10001" +310025,34in Ultrawide Monitor,1,379.99,12/25/19 17:12,"824 Lakeview St, Los Angeles, CA 90001" +310026,USB-C Charging Cable,1,11.95,12/15/19 23:00,"965 Dogwood St, Los Angeles, CA 90001" +310027,AA Batteries (4-pack),1,3.84,12/17/19 16:18,"798 Hickory St, Seattle, WA 98101" +310028,Lightning Charging Cable,1,14.95,12/28/19 18:12,"310 Dogwood St, Boston, MA 02215" +310029,AA Batteries (4-pack),2,3.84,12/30/19 16:41,"767 Forest St, San Francisco, CA 94016" +310030,Wired Headphones,1,11.99,12/01/19 09:40,"627 Lincoln St, San Francisco, CA 94016" +310031,AAA Batteries (4-pack),2,2.99,12/05/19 03:42,"691 10th St, New York City, NY 10001" +310032,27in FHD Monitor,1,149.99,12/29/19 10:59,"712 Meadow St, San Francisco, CA 94016" +310033,USB-C Charging Cable,1,11.95,12/13/19 12:26,"876 Elm St, Austin, TX 73301" +310034,AA Batteries (4-pack),2,3.84,12/31/19 16:08,"672 5th St, Los Angeles, CA 90001" +310035,AA Batteries (4-pack),1,3.84,12/09/19 22:49,"454 4th St, San Francisco, CA 94016" +310036,Vareebadd Phone,1,400,12/18/19 10:43,"383 Elm St, Atlanta, GA 30301" +310036,Bose SoundSport Headphones,1,99.99,12/18/19 10:43,"383 Elm St, Atlanta, GA 30301" +310037,USB-C Charging Cable,1,11.95,12/28/19 07:53,"610 Walnut St, Atlanta, GA 30301" +310038,34in Ultrawide Monitor,1,379.99,12/25/19 09:23,"866 1st St, San Francisco, CA 94016" +310039,ThinkPad Laptop,1,999.99,12/04/19 14:28,"80 Highland St, Los Angeles, CA 90001" +310040,Bose SoundSport Headphones,1,99.99,12/13/19 21:09,"884 Hill St, Atlanta, GA 30301" +310041,AAA Batteries (4-pack),4,2.99,12/17/19 23:21,"331 Meadow St, Boston, MA 02215" +310042,AAA Batteries (4-pack),1,2.99,12/31/19 23:03,"688 Main St, Los Angeles, CA 90001" +310043,AAA Batteries (4-pack),3,2.99,12/24/19 19:08,"994 Lincoln St, Los Angeles, CA 90001" +310044,Vareebadd Phone,1,400,12/29/19 13:34,"444 Lakeview St, Portland, ME 04101" +310045,AA Batteries (4-pack),2,3.84,12/12/19 13:53,"397 Johnson St, Los Angeles, CA 90001" +310046,Apple Airpods Headphones,1,150,12/21/19 01:19,"126 Jefferson St, San Francisco, CA 94016" +310047,27in 4K Gaming Monitor,1,389.99,12/13/19 12:27,"125 11th St, Dallas, TX 75001" +310048,Bose SoundSport Headphones,1,99.99,12/24/19 17:03,"976 Main St, Atlanta, GA 30301" +310048,AA Batteries (4-pack),1,3.84,12/24/19 17:03,"976 Main St, Atlanta, GA 30301" +310049,Apple Airpods Headphones,1,150,12/02/19 11:13,"760 4th St, Austin, TX 73301" +310050,Apple Airpods Headphones,1,150,12/21/19 09:35,"493 Sunset St, San Francisco, CA 94016" +310051,27in FHD Monitor,1,149.99,12/05/19 07:37,"104 8th St, San Francisco, CA 94016" +310052,USB-C Charging Cable,2,11.95,12/15/19 10:50,"931 Main St, Seattle, WA 98101" +310053,AA Batteries (4-pack),1,3.84,12/13/19 07:48,"139 Main St, San Francisco, CA 94016" +310054,Apple Airpods Headphones,1,150,12/12/19 16:38,"183 Walnut St, Dallas, TX 75001" +310055,27in FHD Monitor,1,149.99,12/27/19 12:51,"689 Cedar St, San Francisco, CA 94016" +310056,AA Batteries (4-pack),1,3.84,12/13/19 15:57,"318 Johnson St, San Francisco, CA 94016" +310057,Flatscreen TV,1,300,12/27/19 19:31,"778 Maple St, Atlanta, GA 30301" +310058,Wired Headphones,1,11.99,12/28/19 21:41,"751 11th St, Boston, MA 02215" +310059,Vareebadd Phone,1,400,12/13/19 20:56,"812 8th St, San Francisco, CA 94016" +310060,AAA Batteries (4-pack),1,2.99,12/15/19 20:21,"557 North St, Atlanta, GA 30301" +310061,Lightning Charging Cable,1,14.95,12/09/19 12:13,"334 10th St, San Francisco, CA 94016" +310062,Lightning Charging Cable,1,14.95,12/07/19 12:24,"806 Ridge St, New York City, NY 10001" +310063,Vareebadd Phone,1,400,12/14/19 05:50,"902 1st St, Los Angeles, CA 90001" +310064,Lightning Charging Cable,1,14.95,12/24/19 11:06,"331 9th St, San Francisco, CA 94016" +310065,Wired Headphones,1,11.99,12/03/19 11:25,"922 4th St, New York City, NY 10001" +310066,AA Batteries (4-pack),1,3.84,12/31/19 12:42,"67 Hill St, San Francisco, CA 94016" +310067,AA Batteries (4-pack),1,3.84,12/04/19 13:32,"411 Hill St, Boston, MA 02215" +310068,Flatscreen TV,1,300,12/13/19 22:53,"646 5th St, Austin, TX 73301" +310069,AA Batteries (4-pack),1,3.84,12/05/19 13:25,"427 7th St, New York City, NY 10001" +310070,Macbook Pro Laptop,1,1700,12/13/19 12:54,"727 Madison St, San Francisco, CA 94016" +310071,Apple Airpods Headphones,1,150,12/28/19 12:13,"993 Maple St, Los Angeles, CA 90001" +310072,Wired Headphones,1,11.99,12/15/19 13:23,"186 Willow St, Los Angeles, CA 90001" +310073,Bose SoundSport Headphones,1,99.99,12/09/19 01:15,"780 6th St, Boston, MA 02215" +310073,AA Batteries (4-pack),1,3.84,12/09/19 01:15,"780 6th St, Boston, MA 02215" +310074,USB-C Charging Cable,2,11.95,12/16/19 22:45,"136 Cherry St, San Francisco, CA 94016" +310075,Lightning Charging Cable,2,14.95,12/23/19 17:21,"709 Cedar St, Dallas, TX 75001" +310076,AAA Batteries (4-pack),3,2.99,12/07/19 15:02,"236 2nd St, Dallas, TX 75001" +310077,USB-C Charging Cable,1,11.95,12/11/19 12:02,"894 Hickory St, Boston, MA 02215" +310078,USB-C Charging Cable,2,11.95,12/27/19 20:01,"885 Lake St, Seattle, WA 98101" +310079,Lightning Charging Cable,1,14.95,12/06/19 18:43,"741 Lake St, Los Angeles, CA 90001" +310080,27in FHD Monitor,1,149.99,12/13/19 10:40,"114 Church St, New York City, NY 10001" +310081,AA Batteries (4-pack),1,3.84,12/05/19 22:17,"668 6th St, San Francisco, CA 94016" +310082,27in FHD Monitor,1,149.99,12/05/19 17:24,"388 11th St, Los Angeles, CA 90001" +310083,AAA Batteries (4-pack),1,2.99,12/08/19 13:54,"78 14th St, San Francisco, CA 94016" +310084,iPhone,1,700,12/04/19 20:36,"738 Highland St, Atlanta, GA 30301" +310085,AAA Batteries (4-pack),2,2.99,12/08/19 16:08,"285 Forest St, Atlanta, GA 30301" +310086,AAA Batteries (4-pack),2,2.99,12/26/19 13:37,"761 11th St, Atlanta, GA 30301" +310087,AA Batteries (4-pack),1,3.84,12/26/19 13:11,"173 Wilson St, Los Angeles, CA 90001" +310088,Wired Headphones,1,11.99,12/29/19 09:18,"760 Pine St, San Francisco, CA 94016" +310089,Vareebadd Phone,1,400,12/23/19 10:50,"595 11th St, Austin, TX 73301" +310090,AAA Batteries (4-pack),2,2.99,12/22/19 09:36,"600 Highland St, San Francisco, CA 94016" +310091,USB-C Charging Cable,1,11.95,12/03/19 06:55,"821 Cherry St, New York City, NY 10001" +310092,27in 4K Gaming Monitor,1,389.99,12/22/19 18:56,"516 River St, Seattle, WA 98101" +310093,Wired Headphones,1,11.99,12/24/19 08:06,"803 Adams St, San Francisco, CA 94016" +310094,Google Phone,1,600,12/27/19 09:45,"875 9th St, San Francisco, CA 94016" +310095,Wired Headphones,1,11.99,12/24/19 21:18,"694 9th St, San Francisco, CA 94016" +310096,Bose SoundSport Headphones,1,99.99,12/01/19 20:51,"751 7th St, Los Angeles, CA 90001" +310097,Wired Headphones,1,11.99,12/08/19 17:23,"899 West St, Atlanta, GA 30301" +310098,Macbook Pro Laptop,1,1700,12/22/19 22:59,"206 7th St, Los Angeles, CA 90001" +310099,Wired Headphones,1,11.99,12/23/19 16:54,"947 Spruce St, New York City, NY 10001" +310100,AAA Batteries (4-pack),1,2.99,12/15/19 05:48,"750 Spruce St, Dallas, TX 75001" +310101,AA Batteries (4-pack),1,3.84,12/09/19 10:48,"846 Lake St, San Francisco, CA 94016" +310102,Apple Airpods Headphones,1,150,12/23/19 10:20,"131 Elm St, Atlanta, GA 30301" +310103,Apple Airpods Headphones,1,150,12/08/19 22:11,"539 Meadow St, San Francisco, CA 94016" +310104,27in 4K Gaming Monitor,1,389.99,12/09/19 14:02,"27 9th St, Atlanta, GA 30301" +310105,iPhone,1,700,12/15/19 21:19,"103 7th St, New York City, NY 10001" +310106,Lightning Charging Cable,1,14.95,12/14/19 10:51,"919 Elm St, San Francisco, CA 94016" +310107,USB-C Charging Cable,1,11.95,12/21/19 12:37,"299 Highland St, Dallas, TX 75001" +310108,AAA Batteries (4-pack),1,2.99,12/05/19 21:12,"459 4th St, Portland, OR 97035" +310109,20in Monitor,1,109.99,12/04/19 09:57,"826 Main St, San Francisco, CA 94016" +310110,Lightning Charging Cable,1,14.95,12/15/19 11:28,"491 Ridge St, Boston, MA 02215" +310111,AA Batteries (4-pack),1,3.84,12/11/19 13:52,"215 10th St, New York City, NY 10001" +310112,AA Batteries (4-pack),1,3.84,12/28/19 14:39,"574 8th St, Dallas, TX 75001" +310113,USB-C Charging Cable,1,11.95,12/09/19 17:42,"850 14th St, New York City, NY 10001" +310114,AA Batteries (4-pack),2,3.84,12/02/19 21:06,"187 9th St, San Francisco, CA 94016" +310115,Apple Airpods Headphones,1,150,12/03/19 18:30,"733 Pine St, Portland, OR 97035" +310116,Lightning Charging Cable,1,14.95,12/17/19 18:19,"564 Washington St, Los Angeles, CA 90001" +310117,AAA Batteries (4-pack),1,2.99,12/20/19 10:25,"673 Jefferson St, Dallas, TX 75001" +310118,Vareebadd Phone,1,400,12/25/19 00:17,"825 Elm St, Dallas, TX 75001" +310119,USB-C Charging Cable,1,11.95,12/29/19 21:58,"268 Church St, Dallas, TX 75001" +310120,AA Batteries (4-pack),1,3.84,12/21/19 11:05,"90 Forest St, Portland, OR 97035" +310121,Bose SoundSport Headphones,1,99.99,12/01/19 10:40,"818 Sunset St, New York City, NY 10001" +310122,ThinkPad Laptop,1,999.99,12/03/19 10:43,"958 Johnson St, Los Angeles, CA 90001" +310123,AA Batteries (4-pack),2,3.84,12/12/19 10:45,"633 Lake St, Boston, MA 02215" +,,,,, +310124,Wired Headphones,1,11.99,12/10/19 05:16,"703 Jefferson St, New York City, NY 10001" +310125,Lightning Charging Cable,1,14.95,12/16/19 23:57,"777 13th St, Atlanta, GA 30301" +310126,Vareebadd Phone,1,400,12/27/19 15:27,"677 8th St, Boston, MA 02215" +310126,Wired Headphones,1,11.99,12/27/19 15:27,"677 8th St, Boston, MA 02215" +310127,AA Batteries (4-pack),1,3.84,12/03/19 14:04,"692 1st St, San Francisco, CA 94016" +310128,AA Batteries (4-pack),2,3.84,12/18/19 21:16,"358 Park St, San Francisco, CA 94016" +310129,27in 4K Gaming Monitor,1,389.99,12/19/19 11:04,"854 11th St, Los Angeles, CA 90001" +310130,Lightning Charging Cable,1,14.95,12/08/19 09:20,"158 Washington St, Austin, TX 73301" +310131,Flatscreen TV,1,300,12/14/19 17:35,"442 Lakeview St, Austin, TX 73301" +310132,LG Dryer,1,600.0,12/16/19 22:08,"916 Willow St, San Francisco, CA 94016" +310133,AA Batteries (4-pack),1,3.84,12/31/19 10:47,"989 Center St, Los Angeles, CA 90001" +310134,Lightning Charging Cable,1,14.95,12/23/19 17:49,"819 Johnson St, Dallas, TX 75001" +310135,34in Ultrawide Monitor,1,379.99,12/17/19 19:17,"89 7th St, Boston, MA 02215" +310136,AA Batteries (4-pack),2,3.84,12/23/19 12:40,"54 Cherry St, Austin, TX 73301" +310137,27in FHD Monitor,1,149.99,12/15/19 17:12,"235 6th St, Los Angeles, CA 90001" +310138,Apple Airpods Headphones,1,150,12/06/19 12:39,"756 Forest St, San Francisco, CA 94016" +310139,Macbook Pro Laptop,1,1700,12/09/19 10:40,"520 Dogwood St, Los Angeles, CA 90001" +310140,USB-C Charging Cable,1,11.95,12/09/19 14:35,"115 River St, San Francisco, CA 94016" +310141,AA Batteries (4-pack),2,3.84,12/26/19 08:23,"328 1st St, Atlanta, GA 30301" +310142,Wired Headphones,1,11.99,12/02/19 21:23,"202 11th St, San Francisco, CA 94016" +310143,27in FHD Monitor,1,149.99,12/24/19 16:17,"355 Walnut St, San Francisco, CA 94016" +310144,27in FHD Monitor,1,149.99,12/26/19 08:27,"867 Sunset St, San Francisco, CA 94016" +310145,AAA Batteries (4-pack),1,2.99,12/20/19 18:51,"894 10th St, San Francisco, CA 94016" +310146,USB-C Charging Cable,2,11.95,12/29/19 18:30,"911 Willow St, Austin, TX 73301" +310147,iPhone,1,700,12/15/19 07:38,"574 Main St, San Francisco, CA 94016" +310148,Google Phone,1,600,12/16/19 23:16,"187 Lincoln St, San Francisco, CA 94016" +310149,27in FHD Monitor,1,149.99,12/28/19 15:16,"401 2nd St, New York City, NY 10001" +310150,AA Batteries (4-pack),1,3.84,12/08/19 16:31,"828 8th St, Seattle, WA 98101" +310151,USB-C Charging Cable,1,11.95,12/04/19 08:22,"585 Forest St, Austin, TX 73301" +310152,Google Phone,1,600,12/18/19 18:14,"895 12th St, Portland, OR 97035" +310153,Lightning Charging Cable,1,14.95,12/11/19 20:13,"159 12th St, Dallas, TX 75001" +310154,27in FHD Monitor,1,149.99,12/23/19 22:51,"482 Cherry St, Seattle, WA 98101" +310155,AA Batteries (4-pack),1,3.84,12/06/19 15:27,"980 Cedar St, New York City, NY 10001" +310156,Macbook Pro Laptop,1,1700,12/08/19 11:08,"595 Wilson St, Seattle, WA 98101" +310157,iPhone,1,700,12/12/19 19:58,"434 Johnson St, New York City, NY 10001" +310158,AAA Batteries (4-pack),2,2.99,12/31/19 16:33,"644 Maple St, Seattle, WA 98101" +310159,Wired Headphones,1,11.99,12/06/19 12:25,"691 North St, Austin, TX 73301" +310160,AA Batteries (4-pack),1,3.84,12/13/19 12:17,"301 1st St, Boston, MA 02215" +310161,Lightning Charging Cable,1,14.95,12/22/19 22:10,"593 Hickory St, Boston, MA 02215" +310162,Wired Headphones,1,11.99,12/05/19 14:55,"743 Walnut St, Dallas, TX 75001" +310163,Apple Airpods Headphones,1,150,12/21/19 21:34,"519 9th St, New York City, NY 10001" +310164,Flatscreen TV,1,300,12/03/19 09:16,"697 13th St, Los Angeles, CA 90001" +310165,USB-C Charging Cable,1,11.95,12/06/19 20:57,"347 Walnut St, New York City, NY 10001" +310166,USB-C Charging Cable,1,11.95,12/09/19 10:50,"47 Dogwood St, Atlanta, GA 30301" +310167,Apple Airpods Headphones,1,150,12/03/19 11:21,"54 Dogwood St, Portland, OR 97035" +310168,Apple Airpods Headphones,1,150,12/16/19 19:45,"101 4th St, Los Angeles, CA 90001" +310169,USB-C Charging Cable,1,11.95,12/23/19 13:48,"770 12th St, Boston, MA 02215" +310170,Wired Headphones,1,11.99,12/28/19 10:06,"909 Wilson St, Boston, MA 02215" +310171,USB-C Charging Cable,1,11.95,12/06/19 10:44,"78 Elm St, San Francisco, CA 94016" +310172,Google Phone,1,600,12/25/19 13:36,"676 2nd St, Los Angeles, CA 90001" +310173,Apple Airpods Headphones,1,150,12/08/19 09:53,"249 10th St, Los Angeles, CA 90001" +310174,USB-C Charging Cable,1,11.95,12/05/19 19:21,"834 8th St, Atlanta, GA 30301" +310175,Lightning Charging Cable,1,14.95,12/23/19 15:26,"737 Ridge St, New York City, NY 10001" +310176,Lightning Charging Cable,1,14.95,12/09/19 16:29,"44 Highland St, New York City, NY 10001" +310177,AAA Batteries (4-pack),2,2.99,12/05/19 01:17,"314 2nd St, San Francisco, CA 94016" +310178,Lightning Charging Cable,1,14.95,12/30/19 15:34,"602 8th St, Portland, OR 97035" +310179,USB-C Charging Cable,1,11.95,12/13/19 09:18,"331 Main St, Los Angeles, CA 90001" +310180,Lightning Charging Cable,1,14.95,12/01/19 13:56,"435 Cedar St, New York City, NY 10001" +310181,AAA Batteries (4-pack),1,2.99,12/11/19 12:31,"49 Meadow St, Seattle, WA 98101" +310182,27in FHD Monitor,1,149.99,12/02/19 13:14,"822 12th St, San Francisco, CA 94016" +310183,Lightning Charging Cable,1,14.95,12/04/19 13:52,"790 1st St, San Francisco, CA 94016" +310184,Apple Airpods Headphones,1,150,01/01/20 03:01,"531 6th St, Atlanta, GA 30301" +310185,iPhone,1,700,12/13/19 21:41,"671 Dogwood St, San Francisco, CA 94016" +310185,Wired Headphones,1,11.99,12/13/19 21:41,"671 Dogwood St, San Francisco, CA 94016" +310186,Macbook Pro Laptop,1,1700,12/29/19 17:00,"392 Main St, San Francisco, CA 94016" +310187,20in Monitor,1,109.99,12/20/19 15:17,"382 Jefferson St, Atlanta, GA 30301" +310188,USB-C Charging Cable,1,11.95,12/26/19 12:17,"275 Sunset St, Austin, TX 73301" +310189,Bose SoundSport Headphones,1,99.99,12/14/19 18:48,"712 11th St, Austin, TX 73301" +310190,27in 4K Gaming Monitor,1,389.99,12/22/19 19:33,"948 Madison St, New York City, NY 10001" +310191,27in 4K Gaming Monitor,1,389.99,12/24/19 16:42,"78 West St, New York City, NY 10001" +310192,Wired Headphones,1,11.99,12/09/19 12:42,"588 Lake St, San Francisco, CA 94016" +310193,Lightning Charging Cable,1,14.95,12/20/19 18:31,"138 10th St, New York City, NY 10001" +310194,AAA Batteries (4-pack),2,2.99,12/11/19 09:32,"990 11th St, San Francisco, CA 94016" +310195,Google Phone,1,600,12/02/19 21:37,"408 6th St, San Francisco, CA 94016" +310196,Lightning Charging Cable,1,14.95,12/19/19 19:27,"592 Johnson St, San Francisco, CA 94016" +310197,ThinkPad Laptop,1,999.99,12/20/19 09:20,"198 4th St, New York City, NY 10001" +310198,AAA Batteries (4-pack),2,2.99,12/25/19 13:46,"454 South St, Seattle, WA 98101" +310199,Wired Headphones,1,11.99,12/21/19 14:53,"774 Meadow St, San Francisco, CA 94016" +310200,AAA Batteries (4-pack),2,2.99,12/15/19 05:30,"635 Pine St, San Francisco, CA 94016" +310201,AAA Batteries (4-pack),1,2.99,12/14/19 18:10,"230 Lake St, Boston, MA 02215" +310202,USB-C Charging Cable,1,11.95,12/10/19 23:03,"446 12th St, Atlanta, GA 30301" +310203,20in Monitor,1,109.99,12/12/19 12:26,"572 Spruce St, Dallas, TX 75001" +310204,Flatscreen TV,1,300,12/08/19 01:00,"220 10th St, San Francisco, CA 94016" +310205,USB-C Charging Cable,1,11.95,12/18/19 20:28,"356 8th St, Boston, MA 02215" +310206,Google Phone,1,600,12/31/19 13:57,"491 Adams St, Los Angeles, CA 90001" +310207,Google Phone,1,600,12/29/19 01:35,"550 Hickory St, Atlanta, GA 30301" +310208,iPhone,1,700,12/11/19 18:53,"188 Park St, Portland, OR 97035" +310209,AA Batteries (4-pack),2,3.84,12/05/19 07:18,"212 Ridge St, Dallas, TX 75001" +310210,Apple Airpods Headphones,1,150,12/22/19 21:59,"293 Dogwood St, Los Angeles, CA 90001" +310211,Apple Airpods Headphones,1,150,12/17/19 05:36,"70 Wilson St, Seattle, WA 98101" +310212,USB-C Charging Cable,1,11.95,12/02/19 15:05,"495 6th St, New York City, NY 10001" +310213,Flatscreen TV,1,300,12/15/19 09:11,"589 4th St, Seattle, WA 98101" +310214,Macbook Pro Laptop,1,1700,12/31/19 08:37,"823 West St, Dallas, TX 75001" +310215,27in FHD Monitor,1,149.99,12/12/19 12:46,"58 Washington St, New York City, NY 10001" +310216,Lightning Charging Cable,1,14.95,12/17/19 19:54,"629 Washington St, Austin, TX 73301" +310217,AA Batteries (4-pack),1,3.84,12/07/19 21:52,"909 14th St, New York City, NY 10001" +310218,Wired Headphones,1,11.99,12/15/19 17:30,"284 Wilson St, San Francisco, CA 94016" +310219,Apple Airpods Headphones,1,150,12/19/19 06:44,"417 9th St, Los Angeles, CA 90001" +310220,USB-C Charging Cable,2,11.95,12/28/19 12:22,"955 Adams St, Boston, MA 02215" +310221,27in 4K Gaming Monitor,1,389.99,12/23/19 15:53,"556 Walnut St, Boston, MA 02215" +310222,Apple Airpods Headphones,1,150,12/31/19 10:26,"545 2nd St, San Francisco, CA 94016" +310223,Bose SoundSport Headphones,1,99.99,12/10/19 20:52,"165 West St, Boston, MA 02215" +310224,Apple Airpods Headphones,1,150,12/23/19 20:11,"600 Hickory St, Los Angeles, CA 90001" +310225,USB-C Charging Cable,1,11.95,12/24/19 15:54,"663 Hickory St, Los Angeles, CA 90001" +310225,Wired Headphones,1,11.99,12/24/19 15:54,"663 Hickory St, Los Angeles, CA 90001" +310226,AAA Batteries (4-pack),1,2.99,12/27/19 13:05,"823 14th St, San Francisco, CA 94016" +310227,AA Batteries (4-pack),1,3.84,12/20/19 18:15,"107 Madison St, Boston, MA 02215" +310228,AA Batteries (4-pack),1,3.84,12/24/19 18:24,"607 Willow St, Portland, OR 97035" +310229,AA Batteries (4-pack),3,3.84,12/20/19 08:36,"305 Elm St, Boston, MA 02215" +310229,AAA Batteries (4-pack),1,2.99,12/20/19 08:36,"305 Elm St, Boston, MA 02215" +310230,27in 4K Gaming Monitor,1,389.99,12/17/19 10:28,"141 Pine St, Boston, MA 02215" +310231,34in Ultrawide Monitor,1,379.99,12/13/19 22:28,"427 9th St, Atlanta, GA 30301" +310232,AA Batteries (4-pack),1,3.84,12/30/19 02:19,"254 Elm St, Portland, OR 97035" +310233,34in Ultrawide Monitor,1,379.99,12/15/19 17:34,"43 Center St, New York City, NY 10001" +310234,Vareebadd Phone,1,400,12/13/19 16:25,"692 Forest St, Portland, OR 97035" +310234,Wired Headphones,2,11.99,12/13/19 16:25,"692 Forest St, Portland, OR 97035" +310235,20in Monitor,1,109.99,12/01/19 13:00,"894 Madison St, New York City, NY 10001" +310236,Vareebadd Phone,1,400,12/26/19 16:59,"962 8th St, New York City, NY 10001" +310237,AAA Batteries (4-pack),1,2.99,12/17/19 11:37,"570 South St, San Francisco, CA 94016" +310238,AA Batteries (4-pack),1,3.84,12/01/19 21:52,"362 Lake St, Los Angeles, CA 90001" +310239,USB-C Charging Cable,1,11.95,12/03/19 14:57,"755 Dogwood St, Seattle, WA 98101" +310240,Apple Airpods Headphones,1,150,12/13/19 22:35,"609 10th St, Boston, MA 02215" +310241,AAA Batteries (4-pack),1,2.99,12/07/19 21:02,"754 Church St, San Francisco, CA 94016" +310242,AAA Batteries (4-pack),2,2.99,12/17/19 10:34,"71 Chestnut St, Austin, TX 73301" +310243,34in Ultrawide Monitor,1,379.99,12/11/19 17:25,"633 West St, San Francisco, CA 94016" +310244,AA Batteries (4-pack),1,3.84,12/22/19 14:58,"28 9th St, Seattle, WA 98101" +310245,34in Ultrawide Monitor,1,379.99,12/03/19 09:52,"400 4th St, San Francisco, CA 94016" +310246,34in Ultrawide Monitor,1,379.99,12/22/19 11:53,"783 Church St, Portland, OR 97035" +310247,AAA Batteries (4-pack),3,2.99,12/09/19 12:56,"199 Lake St, New York City, NY 10001" +310248,Bose SoundSport Headphones,1,99.99,12/22/19 15:23,"324 14th St, New York City, NY 10001" +310249,AA Batteries (4-pack),1,3.84,12/10/19 12:03,"908 Forest St, Los Angeles, CA 90001" +310250,Wired Headphones,1,11.99,12/06/19 11:18,"38 Hickory St, San Francisco, CA 94016" +310250,AAA Batteries (4-pack),1,2.99,12/06/19 11:18,"38 Hickory St, San Francisco, CA 94016" +310251,Apple Airpods Headphones,1,150,12/11/19 23:13,"890 Ridge St, Los Angeles, CA 90001" +310252,Apple Airpods Headphones,1,150,12/08/19 22:46,"933 Highland St, Los Angeles, CA 90001" +310253,LG Dryer,1,600.0,12/26/19 20:22,"329 12th St, Los Angeles, CA 90001" +310254,Lightning Charging Cable,1,14.95,12/13/19 08:16,"3 Madison St, Atlanta, GA 30301" +310255,Wired Headphones,1,11.99,12/01/19 10:41,"622 Sunset St, San Francisco, CA 94016" +310256,USB-C Charging Cable,2,11.95,12/18/19 22:19,"193 2nd St, New York City, NY 10001" +310257,20in Monitor,1,109.99,12/19/19 14:46,"336 1st St, Austin, TX 73301" +310258,Bose SoundSport Headphones,1,99.99,12/31/19 16:22,"977 Elm St, San Francisco, CA 94016" +310259,AA Batteries (4-pack),3,3.84,12/24/19 20:34,"81 Highland St, Boston, MA 02215" +310260,20in Monitor,1,109.99,12/12/19 21:30,"577 2nd St, San Francisco, CA 94016" +310261,USB-C Charging Cable,1,11.95,12/10/19 17:34,"864 Highland St, Austin, TX 73301" +310262,iPhone,1,700,12/07/19 00:09,"861 Lakeview St, Boston, MA 02215" +310262,Lightning Charging Cable,1,14.95,12/07/19 00:09,"861 Lakeview St, Boston, MA 02215" +310263,27in FHD Monitor,1,149.99,12/31/19 17:54,"297 Walnut St, San Francisco, CA 94016" +310264,27in 4K Gaming Monitor,1,389.99,12/09/19 19:42,"662 Church St, New York City, NY 10001" +310265,Bose SoundSport Headphones,1,99.99,12/20/19 13:16,"181 Willow St, San Francisco, CA 94016" +310266,USB-C Charging Cable,1,11.95,12/21/19 21:36,"636 Park St, San Francisco, CA 94016" +310267,27in FHD Monitor,1,149.99,12/09/19 22:31,"852 2nd St, Austin, TX 73301" +310268,Flatscreen TV,1,300,12/22/19 07:09,"319 Main St, Boston, MA 02215" +310269,Wired Headphones,1,11.99,12/09/19 18:50,"179 Madison St, Atlanta, GA 30301" +310270,Bose SoundSport Headphones,1,99.99,12/02/19 20:19,"887 12th St, San Francisco, CA 94016" +310271,iPhone,1,700,12/05/19 21:00,"640 Hickory St, Boston, MA 02215" +310271,Lightning Charging Cable,1,14.95,12/05/19 21:00,"640 Hickory St, Boston, MA 02215" +310272,Wired Headphones,1,11.99,12/17/19 17:00,"94 Lakeview St, San Francisco, CA 94016" +310273,27in FHD Monitor,1,149.99,12/29/19 21:11,"537 13th St, San Francisco, CA 94016" +310274,AAA Batteries (4-pack),1,2.99,12/28/19 22:35,"95 North St, Boston, MA 02215" +310275,AA Batteries (4-pack),1,3.84,12/19/19 23:59,"301 1st St, San Francisco, CA 94016" +310276,Bose SoundSport Headphones,1,99.99,12/23/19 00:20,"194 2nd St, Seattle, WA 98101" +310277,AAA Batteries (4-pack),1,2.99,12/08/19 16:20,"57 Wilson St, New York City, NY 10001" +310278,Google Phone,1,600,12/05/19 06:15,"66 Main St, Portland, OR 97035" +310279,Wired Headphones,1,11.99,12/26/19 18:12,"838 Lincoln St, Boston, MA 02215" +310280,USB-C Charging Cable,1,11.95,12/30/19 13:02,"643 4th St, San Francisco, CA 94016" +310281,AA Batteries (4-pack),1,3.84,12/03/19 19:54,"964 Willow St, Los Angeles, CA 90001" +310282,27in FHD Monitor,1,149.99,12/26/19 15:52,"384 2nd St, San Francisco, CA 94016" +310283,27in FHD Monitor,1,149.99,12/13/19 11:00,"667 Highland St, San Francisco, CA 94016" +310284,Lightning Charging Cable,1,14.95,12/08/19 12:08,"112 Cedar St, Los Angeles, CA 90001" +310285,iPhone,1,700,12/10/19 20:45,"796 Spruce St, Los Angeles, CA 90001" +310286,Lightning Charging Cable,1,14.95,12/27/19 18:22,"977 Highland St, Atlanta, GA 30301" +310287,Lightning Charging Cable,1,14.95,12/21/19 12:42,"484 Ridge St, Boston, MA 02215" +310288,USB-C Charging Cable,2,11.95,12/07/19 17:13,"117 Church St, Dallas, TX 75001" +310289,Vareebadd Phone,1,400,12/07/19 19:02,"863 Park St, Los Angeles, CA 90001" +310290,AAA Batteries (4-pack),1,2.99,12/22/19 19:38,"436 4th St, Los Angeles, CA 90001" +310291,Lightning Charging Cable,1,14.95,12/29/19 21:23,"646 Cedar St, Portland, OR 97035" +310292,Flatscreen TV,2,300,12/27/19 11:34,"544 Spruce St, San Francisco, CA 94016" +310293,USB-C Charging Cable,1,11.95,12/25/19 16:50,"806 Maple St, Seattle, WA 98101" +310294,Bose SoundSport Headphones,1,99.99,12/26/19 15:05,"833 Meadow St, Los Angeles, CA 90001" +310295,20in Monitor,1,109.99,12/22/19 20:44,"655 6th St, Dallas, TX 75001" +310296,Apple Airpods Headphones,1,150,12/20/19 11:25,"388 Jackson St, Seattle, WA 98101" +310297,Apple Airpods Headphones,1,150,12/20/19 12:50,"968 10th St, San Francisco, CA 94016" +310298,Wired Headphones,2,11.99,12/22/19 19:08,"395 14th St, San Francisco, CA 94016" +310299,ThinkPad Laptop,1,999.99,12/24/19 22:49,"506 Wilson St, New York City, NY 10001" +310300,Apple Airpods Headphones,1,150,12/31/19 10:35,"532 6th St, Atlanta, GA 30301" +310301,Google Phone,1,600,12/05/19 20:47,"270 Dogwood St, San Francisco, CA 94016" +310302,Lightning Charging Cable,1,14.95,12/01/19 15:33,"916 Lincoln St, Los Angeles, CA 90001" +310303,Wired Headphones,1,11.99,12/12/19 16:23,"92 12th St, Atlanta, GA 30301" +310304,AA Batteries (4-pack),2,3.84,12/31/19 13:02,"513 North St, Los Angeles, CA 90001" +310305,Wired Headphones,1,11.99,12/12/19 00:30,"419 5th St, New York City, NY 10001" +310306,AA Batteries (4-pack),1,3.84,12/07/19 21:55,"390 5th St, Seattle, WA 98101" +310307,USB-C Charging Cable,1,11.95,12/20/19 14:30,"309 Maple St, Seattle, WA 98101" +310308,USB-C Charging Cable,1,11.95,12/22/19 18:52,"840 Spruce St, Seattle, WA 98101" +310309,27in 4K Gaming Monitor,1,389.99,12/05/19 16:17,"634 Sunset St, Portland, OR 97035" +310310,AAA Batteries (4-pack),1,2.99,12/12/19 23:50,"112 Lincoln St, Los Angeles, CA 90001" +310311,USB-C Charging Cable,1,11.95,12/24/19 16:49,"657 Hickory St, Dallas, TX 75001" +310312,Lightning Charging Cable,1,14.95,12/22/19 13:42,"193 Elm St, Portland, OR 97035" +310313,ThinkPad Laptop,1,999.99,12/17/19 19:58,"380 Hill St, New York City, NY 10001" +310314,AAA Batteries (4-pack),1,2.99,12/22/19 18:31,"59 10th St, New York City, NY 10001" +310315,20in Monitor,1,109.99,12/14/19 14:27,"388 6th St, San Francisco, CA 94016" +310316,iPhone,1,700,12/29/19 07:58,"884 Chestnut St, Austin, TX 73301" +310316,Wired Headphones,1,11.99,12/29/19 07:58,"884 Chestnut St, Austin, TX 73301" +310317,Apple Airpods Headphones,1,150,12/17/19 01:46,"401 Adams St, Dallas, TX 75001" +310318,27in 4K Gaming Monitor,1,389.99,12/20/19 18:02,"458 Highland St, Austin, TX 73301" +310319,Bose SoundSport Headphones,1,99.99,12/25/19 14:38,"459 Johnson St, Seattle, WA 98101" +310320,Lightning Charging Cable,1,14.95,12/06/19 14:34,"825 2nd St, Seattle, WA 98101" +310321,AA Batteries (4-pack),1,3.84,12/24/19 23:09,"225 Adams St, New York City, NY 10001" +310322,Bose SoundSport Headphones,1,99.99,12/15/19 08:35,"544 8th St, Boston, MA 02215" +310323,Apple Airpods Headphones,1,150,12/25/19 16:30,"507 2nd St, Austin, TX 73301" +310324,Lightning Charging Cable,1,14.95,12/07/19 10:58,"219 11th St, Austin, TX 73301" +310325,27in 4K Gaming Monitor,1,389.99,12/24/19 14:37,"121 North St, Atlanta, GA 30301" +310326,USB-C Charging Cable,1,11.95,12/04/19 14:13,"990 River St, Austin, TX 73301" +310327,AAA Batteries (4-pack),2,2.99,12/03/19 04:22,"758 Sunset St, New York City, NY 10001" +310328,34in Ultrawide Monitor,1,379.99,01/01/20 01:24,"284 12th St, Atlanta, GA 30301" +310329,USB-C Charging Cable,1,11.95,12/29/19 16:29,"310 Hickory St, San Francisco, CA 94016" +310330,AA Batteries (4-pack),1,3.84,12/29/19 10:11,"420 Adams St, San Francisco, CA 94016" +310331,Lightning Charging Cable,1,14.95,12/21/19 21:39,"99 Willow St, San Francisco, CA 94016" +310332,34in Ultrawide Monitor,1,379.99,12/07/19 11:17,"760 Johnson St, Seattle, WA 98101" +310333,Lightning Charging Cable,1,14.95,12/16/19 18:39,"503 Cherry St, Los Angeles, CA 90001" +310334,Apple Airpods Headphones,1,150,12/09/19 08:34,"446 Chestnut St, Boston, MA 02215" +310335,USB-C Charging Cable,1,11.95,12/10/19 18:42,"14 8th St, New York City, NY 10001" +310336,AA Batteries (4-pack),2,3.84,12/25/19 23:35,"70 10th St, Los Angeles, CA 90001" +310336,Bose SoundSport Headphones,1,99.99,12/25/19 23:35,"70 10th St, Los Angeles, CA 90001" +310337,Flatscreen TV,1,300,12/16/19 09:28,"9 Park St, Dallas, TX 75001" +310338,34in Ultrawide Monitor,1,379.99,12/03/19 12:15,"363 Highland St, Atlanta, GA 30301" +310339,Flatscreen TV,1,300,12/13/19 12:41,"45 14th St, Seattle, WA 98101" +310340,Lightning Charging Cable,1,14.95,12/12/19 08:36,"115 Wilson St, Boston, MA 02215" +310341,Lightning Charging Cable,1,14.95,12/06/19 23:27,"710 6th St, Los Angeles, CA 90001" +310342,ThinkPad Laptop,1,999.99,12/14/19 12:24,"138 Hill St, Los Angeles, CA 90001" +310343,Lightning Charging Cable,1,14.95,12/06/19 22:28,"13 Maple St, San Francisco, CA 94016" +310344,34in Ultrawide Monitor,1,379.99,12/08/19 14:31,"592 10th St, Atlanta, GA 30301" +310345,20in Monitor,1,109.99,12/19/19 15:29,"211 Park St, Austin, TX 73301" +310346,27in FHD Monitor,1,149.99,12/02/19 19:25,"180 Lake St, Dallas, TX 75001" +310347,USB-C Charging Cable,1,11.95,12/22/19 20:31,"12 Sunset St, Boston, MA 02215" +310348,Apple Airpods Headphones,1,150,12/26/19 10:25,"397 13th St, New York City, NY 10001" +310349,Wired Headphones,1,11.99,12/28/19 16:01,"573 Main St, Atlanta, GA 30301" +310350,ThinkPad Laptop,1,999.99,12/15/19 11:42,"189 Meadow St, San Francisco, CA 94016" +310351,Wired Headphones,1,11.99,12/18/19 12:46,"816 Spruce St, Los Angeles, CA 90001" +310352,20in Monitor,1,109.99,12/17/19 15:50,"507 Ridge St, Seattle, WA 98101" +310353,USB-C Charging Cable,1,11.95,12/15/19 19:25,"173 Cedar St, Portland, OR 97035" +310354,AA Batteries (4-pack),2,3.84,12/27/19 15:32,"518 Dogwood St, Dallas, TX 75001" +310355,LG Dryer,1,600.0,12/31/19 12:04,"39 South St, Dallas, TX 75001" +310356,USB-C Charging Cable,1,11.95,12/24/19 18:34,"926 Spruce St, Austin, TX 73301" +310357,34in Ultrawide Monitor,1,379.99,12/11/19 15:38,"799 7th St, Dallas, TX 75001" +310358,20in Monitor,1,109.99,12/26/19 15:28,"594 7th St, Boston, MA 02215" +310359,AAA Batteries (4-pack),4,2.99,12/30/19 05:36,"22 Park St, New York City, NY 10001" +310360,Lightning Charging Cable,1,14.95,12/09/19 14:49,"68 Cherry St, Seattle, WA 98101" +310361,Bose SoundSport Headphones,1,99.99,12/25/19 11:55,"917 Highland St, Dallas, TX 75001" +310362,Google Phone,1,600,12/28/19 08:37,"510 2nd St, Boston, MA 02215" +310362,Lightning Charging Cable,1,14.95,12/28/19 08:37,"510 2nd St, Boston, MA 02215" +310363,AAA Batteries (4-pack),1,2.99,12/11/19 18:08,"673 Adams St, Los Angeles, CA 90001" +310364,Bose SoundSport Headphones,1,99.99,12/14/19 18:01,"557 Wilson St, Los Angeles, CA 90001" +310365,Macbook Pro Laptop,1,1700,12/09/19 13:53,"499 Ridge St, Los Angeles, CA 90001" +310366,Wired Headphones,1,11.99,12/12/19 17:31,"699 Cherry St, Dallas, TX 75001" +310367,AAA Batteries (4-pack),2,2.99,12/28/19 14:31,"971 Chestnut St, Los Angeles, CA 90001" +310368,LG Washing Machine,1,600.0,12/01/19 10:31,"840 Elm St, Atlanta, GA 30301" +310369,AAA Batteries (4-pack),2,2.99,12/28/19 14:35,"882 Highland St, New York City, NY 10001" +310370,Lightning Charging Cable,1,14.95,12/22/19 02:01,"706 4th St, New York City, NY 10001" +310371,AAA Batteries (4-pack),1,2.99,12/09/19 08:44,"594 Forest St, Boston, MA 02215" +310372,AAA Batteries (4-pack),1,2.99,12/03/19 22:17,"979 Walnut St, Portland, OR 97035" +310373,AAA Batteries (4-pack),2,2.99,12/24/19 12:23,"707 Washington St, Los Angeles, CA 90001" +310374,Bose SoundSport Headphones,1,99.99,12/23/19 19:58,"275 Highland St, New York City, NY 10001" +310375,Wired Headphones,1,11.99,12/04/19 20:50,"77 Main St, New York City, NY 10001" +310376,Apple Airpods Headphones,1,150,12/25/19 21:41,"425 Willow St, Dallas, TX 75001" +310377,AAA Batteries (4-pack),1,2.99,12/19/19 11:07,"181 2nd St, San Francisco, CA 94016" +310378,Wired Headphones,1,11.99,12/30/19 04:13,"708 9th St, New York City, NY 10001" +310379,Lightning Charging Cable,2,14.95,12/06/19 10:46,"347 Willow St, Los Angeles, CA 90001" +310380,Apple Airpods Headphones,1,150,12/03/19 10:18,"163 Willow St, New York City, NY 10001" +310381,USB-C Charging Cable,1,11.95,12/29/19 22:43,"749 Maple St, New York City, NY 10001" +310382,Wired Headphones,2,11.99,12/06/19 08:05,"665 River St, Seattle, WA 98101" +310383,Wired Headphones,1,11.99,12/09/19 13:58,"217 Park St, Boston, MA 02215" +310384,Lightning Charging Cable,1,14.95,12/22/19 13:26,"136 Hickory St, Atlanta, GA 30301" +310385,USB-C Charging Cable,1,11.95,12/14/19 13:34,"120 Jefferson St, Austin, TX 73301" +310386,Wired Headphones,1,11.99,12/21/19 09:36,"658 Jackson St, Atlanta, GA 30301" +310387,AA Batteries (4-pack),1,3.84,12/11/19 15:12,"315 Hill St, Portland, OR 97035" +310388,Wired Headphones,1,11.99,12/12/19 13:57,"48 Meadow St, New York City, NY 10001" +310389,Apple Airpods Headphones,1,150,12/16/19 10:11,"549 West St, New York City, NY 10001" +310390,Wired Headphones,1,11.99,12/05/19 22:31,"403 Jefferson St, San Francisco, CA 94016" +310391,USB-C Charging Cable,1,11.95,12/25/19 11:02,"595 Lincoln St, Los Angeles, CA 90001" +310392,Apple Airpods Headphones,1,150,12/18/19 21:45,"504 North St, Austin, TX 73301" +310393,Wired Headphones,1,11.99,12/12/19 12:36,"827 Lakeview St, San Francisco, CA 94016" +310394,Apple Airpods Headphones,1,150,12/11/19 09:12,"684 12th St, San Francisco, CA 94016" +310395,AAA Batteries (4-pack),2,2.99,12/12/19 17:26,"214 Maple St, Atlanta, GA 30301" +310396,AA Batteries (4-pack),1,3.84,12/07/19 16:42,"652 Dogwood St, Seattle, WA 98101" +310397,Wired Headphones,1,11.99,12/15/19 08:13,"273 Dogwood St, Portland, OR 97035" +310398,AA Batteries (4-pack),1,3.84,12/05/19 18:12,"82 2nd St, Portland, OR 97035" +310399,20in Monitor,1,109.99,12/31/19 17:53,"926 River St, Dallas, TX 75001" +310400,USB-C Charging Cable,1,11.95,12/20/19 18:07,"133 12th St, Boston, MA 02215" +310401,Lightning Charging Cable,1,14.95,12/31/19 20:02,"540 Lake St, Los Angeles, CA 90001" +310402,USB-C Charging Cable,1,11.95,12/03/19 08:18,"422 6th St, Los Angeles, CA 90001" +310403,iPhone,1,700,12/27/19 20:40,"49 Spruce St, San Francisco, CA 94016" +310404,AAA Batteries (4-pack),1,2.99,12/22/19 17:53,"453 2nd St, Portland, ME 04101" +310405,AA Batteries (4-pack),1,3.84,12/17/19 20:07,"581 8th St, San Francisco, CA 94016" +310406,Bose SoundSport Headphones,1,99.99,12/03/19 14:07,"647 Church St, Boston, MA 02215" +310407,USB-C Charging Cable,1,11.95,12/31/19 16:10,"886 Pine St, Seattle, WA 98101" +310408,27in 4K Gaming Monitor,1,389.99,12/28/19 13:32,"713 Chestnut St, Portland, OR 97035" +310409,AA Batteries (4-pack),1,3.84,12/14/19 16:23,"33 1st St, San Francisco, CA 94016" +310410,ThinkPad Laptop,1,999.99,12/21/19 14:01,"485 4th St, Seattle, WA 98101" +310411,AAA Batteries (4-pack),1,2.99,12/16/19 18:59,"962 Lake St, Los Angeles, CA 90001" +310412,Apple Airpods Headphones,1,150,12/07/19 21:39,"469 Walnut St, Seattle, WA 98101" +310413,Wired Headphones,1,11.99,12/21/19 08:44,"40 Lake St, Los Angeles, CA 90001" +310414,27in FHD Monitor,1,149.99,12/23/19 19:58,"877 Hill St, Los Angeles, CA 90001" +310415,20in Monitor,1,109.99,12/16/19 19:01,"482 1st St, Los Angeles, CA 90001" +310416,AA Batteries (4-pack),2,3.84,12/21/19 09:37,"11 6th St, Los Angeles, CA 90001" +310417,AA Batteries (4-pack),1,3.84,12/05/19 13:14,"304 Sunset St, Seattle, WA 98101" +310418,Lightning Charging Cable,1,14.95,12/05/19 18:19,"752 Elm St, San Francisco, CA 94016" +310419,Apple Airpods Headphones,1,150,12/28/19 22:04,"928 14th St, New York City, NY 10001" +310420,AA Batteries (4-pack),2,3.84,12/23/19 21:02,"892 Adams St, Seattle, WA 98101" +310421,AA Batteries (4-pack),1,3.84,12/18/19 09:36,"764 2nd St, Seattle, WA 98101" +310422,USB-C Charging Cable,1,11.95,12/12/19 18:12,"207 Pine St, Dallas, TX 75001" +310423,AA Batteries (4-pack),1,3.84,12/11/19 00:27,"143 4th St, Boston, MA 02215" +310424,Lightning Charging Cable,1,14.95,12/16/19 18:51,"474 West St, Atlanta, GA 30301" +310425,Wired Headphones,1,11.99,12/10/19 13:34,"99 Maple St, Atlanta, GA 30301" +310426,34in Ultrawide Monitor,1,379.99,12/19/19 09:49,"451 Johnson St, Dallas, TX 75001" +310427,27in FHD Monitor,1,149.99,12/31/19 10:46,"537 Lake St, San Francisco, CA 94016" +310428,iPhone,1,700,12/28/19 13:04,"287 13th St, New York City, NY 10001" +310429,USB-C Charging Cable,1,11.95,12/04/19 13:48,"124 Sunset St, Boston, MA 02215" +310430,Wired Headphones,2,11.99,12/15/19 20:37,"258 Ridge St, Atlanta, GA 30301" +310430,Wired Headphones,1,11.99,12/15/19 20:37,"258 Ridge St, Atlanta, GA 30301" +310431,Bose SoundSport Headphones,1,99.99,12/30/19 13:38,"184 Wilson St, Los Angeles, CA 90001" +310432,AAA Batteries (4-pack),4,2.99,12/17/19 20:29,"424 West St, Los Angeles, CA 90001" +310433,Wired Headphones,1,11.99,12/31/19 10:39,"205 1st St, New York City, NY 10001" +310434,27in 4K Gaming Monitor,1,389.99,12/16/19 11:44,"907 12th St, Austin, TX 73301" +310435,Google Phone,1,600,12/16/19 03:14,"946 Jefferson St, Boston, MA 02215" +310436,Wired Headphones,1,11.99,12/29/19 18:59,"533 Ridge St, Atlanta, GA 30301" +310437,Wired Headphones,1,11.99,12/21/19 22:37,"520 Meadow St, Los Angeles, CA 90001" +310438,AAA Batteries (4-pack),2,2.99,12/29/19 10:36,"694 Main St, New York City, NY 10001" +310439,34in Ultrawide Monitor,1,379.99,12/04/19 19:02,"484 9th St, San Francisco, CA 94016" +310440,34in Ultrawide Monitor,1,379.99,12/27/19 23:25,"776 Maple St, Dallas, TX 75001" +310441,Apple Airpods Headphones,1,150,12/31/19 14:32,"31 Hickory St, Seattle, WA 98101" +310442,Google Phone,1,600,12/01/19 10:58,"433 Cherry St, Los Angeles, CA 90001" +310443,20in Monitor,1,109.99,12/09/19 16:01,"518 Center St, Boston, MA 02215" +310444,AA Batteries (4-pack),1,3.84,12/26/19 13:45,"991 Maple St, San Francisco, CA 94016" +310445,27in 4K Gaming Monitor,1,389.99,12/18/19 21:28,"951 10th St, New York City, NY 10001" +310446,AAA Batteries (4-pack),1,2.99,12/29/19 11:26,"85 10th St, Austin, TX 73301" +310447,Wired Headphones,2,11.99,12/16/19 13:53,"420 Forest St, Seattle, WA 98101" +310448,Wired Headphones,1,11.99,12/21/19 11:20,"270 Jefferson St, Portland, OR 97035" +310449,Apple Airpods Headphones,1,150,12/05/19 14:35,"29 Spruce St, Los Angeles, CA 90001" +310450,20in Monitor,1,109.99,12/19/19 18:02,"112 Cedar St, New York City, NY 10001" +310451,AAA Batteries (4-pack),1,2.99,12/25/19 11:48,"190 Chestnut St, New York City, NY 10001" +310452,USB-C Charging Cable,1,11.95,12/30/19 22:22,"886 Lincoln St, Los Angeles, CA 90001" +310453,Lightning Charging Cable,1,14.95,12/09/19 12:14,"844 1st St, Los Angeles, CA 90001" +310454,AAA Batteries (4-pack),1,2.99,12/31/19 19:07,"111 Center St, Dallas, TX 75001" +310455,Lightning Charging Cable,1,14.95,12/20/19 16:45,"514 9th St, Los Angeles, CA 90001" +310456,AA Batteries (4-pack),1,3.84,12/29/19 13:22,"241 11th St, Portland, ME 04101" +310457,AA Batteries (4-pack),1,3.84,12/09/19 19:41,"78 Willow St, New York City, NY 10001" +310458,Lightning Charging Cable,1,14.95,12/11/19 20:13,"165 South St, Los Angeles, CA 90001" +310459,Lightning Charging Cable,1,14.95,12/11/19 10:33,"832 Walnut St, Los Angeles, CA 90001" +310460,Google Phone,1,600,12/13/19 11:56,"838 Spruce St, Atlanta, GA 30301" +310461,34in Ultrawide Monitor,1,379.99,12/11/19 14:52,"435 Washington St, Atlanta, GA 30301" +310462,iPhone,1,700,12/30/19 21:23,"245 River St, Portland, OR 97035" +310462,Apple Airpods Headphones,1,150,12/30/19 21:23,"245 River St, Portland, OR 97035" +310463,AAA Batteries (4-pack),1,2.99,12/27/19 21:05,"789 Hickory St, Boston, MA 02215" +310464,27in 4K Gaming Monitor,1,389.99,12/13/19 17:48,"754 2nd St, San Francisco, CA 94016" +310465,Lightning Charging Cable,1,14.95,12/16/19 16:40,"647 Ridge St, Dallas, TX 75001" +310466,Bose SoundSport Headphones,1,99.99,12/08/19 13:50,"480 Forest St, Atlanta, GA 30301" +310467,iPhone,1,700,12/22/19 19:58,"614 Walnut St, Seattle, WA 98101" +310468,AAA Batteries (4-pack),2,2.99,12/21/19 19:01,"439 Hill St, Los Angeles, CA 90001" +310469,USB-C Charging Cable,1,11.95,12/13/19 17:24,"563 Madison St, San Francisco, CA 94016" +310470,AA Batteries (4-pack),1,3.84,12/01/19 15:19,"136 Lakeview St, Dallas, TX 75001" +310471,Macbook Pro Laptop,1,1700,12/02/19 02:45,"181 South St, Portland, OR 97035" +310472,AAA Batteries (4-pack),1,2.99,12/22/19 05:08,"903 Washington St, Dallas, TX 75001" +310473,Lightning Charging Cable,1,14.95,12/21/19 11:03,"239 Madison St, San Francisco, CA 94016" +310474,AAA Batteries (4-pack),1,2.99,12/21/19 10:21,"846 Jefferson St, San Francisco, CA 94016" +310475,Apple Airpods Headphones,1,150,12/01/19 17:52,"845 6th St, Austin, TX 73301" +310476,Lightning Charging Cable,1,14.95,12/02/19 22:04,"460 13th St, San Francisco, CA 94016" +310477,Lightning Charging Cable,1,14.95,12/16/19 14:18,"687 Center St, Austin, TX 73301" +310478,Wired Headphones,1,11.99,12/11/19 20:14,"149 7th St, Austin, TX 73301" +310478,iPhone,1,700,12/11/19 20:14,"149 7th St, Austin, TX 73301" +310479,AA Batteries (4-pack),3,3.84,12/05/19 12:39,"948 Elm St, New York City, NY 10001" +310480,Lightning Charging Cable,1,14.95,12/22/19 16:48,"202 2nd St, Atlanta, GA 30301" +310481,Wired Headphones,1,11.99,12/06/19 12:38,"341 12th St, Atlanta, GA 30301" +310482,AAA Batteries (4-pack),1,2.99,12/05/19 20:45,"248 Madison St, San Francisco, CA 94016" +310483,Apple Airpods Headphones,1,150,12/11/19 12:59,"294 Highland St, San Francisco, CA 94016" +310484,Wired Headphones,1,11.99,12/30/19 20:42,"756 Adams St, Austin, TX 73301" +310485,USB-C Charging Cable,1,11.95,12/08/19 22:49,"985 Park St, New York City, NY 10001" +310486,AA Batteries (4-pack),1,3.84,12/11/19 16:58,"883 Jackson St, Seattle, WA 98101" +310487,Lightning Charging Cable,1,14.95,12/31/19 14:10,"365 Adams St, Boston, MA 02215" +310488,USB-C Charging Cable,2,11.95,12/22/19 16:11,"360 Forest St, Atlanta, GA 30301" +310489,Bose SoundSport Headphones,1,99.99,12/21/19 16:13,"41 Pine St, New York City, NY 10001" +310490,Wired Headphones,1,11.99,12/19/19 12:12,"221 Elm St, Los Angeles, CA 90001" +310491,Macbook Pro Laptop,1,1700,12/05/19 19:37,"221 Dogwood St, Atlanta, GA 30301" +310492,AA Batteries (4-pack),2,3.84,12/16/19 12:40,"261 Washington St, San Francisco, CA 94016" +310493,Bose SoundSport Headphones,1,99.99,12/19/19 07:43,"675 Hill St, Austin, TX 73301" +310494,Lightning Charging Cable,1,14.95,12/01/19 14:00,"213 Hickory St, Seattle, WA 98101" +310495,Google Phone,1,600,12/18/19 23:53,"762 Highland St, Portland, OR 97035" +310496,34in Ultrawide Monitor,1,379.99,12/09/19 22:13,"470 2nd St, San Francisco, CA 94016" +310497,AA Batteries (4-pack),1,3.84,12/30/19 07:05,"209 Jackson St, Portland, OR 97035" +310498,Google Phone,1,600,12/16/19 23:18,"774 Meadow St, New York City, NY 10001" +310499,AAA Batteries (4-pack),1,2.99,12/24/19 15:34,"774 13th St, Atlanta, GA 30301" +310500,Google Phone,1,600,12/05/19 20:49,"181 Hill St, San Francisco, CA 94016" +310500,USB-C Charging Cable,1,11.95,12/05/19 20:49,"181 Hill St, San Francisco, CA 94016" +310501,27in 4K Gaming Monitor,1,389.99,12/10/19 08:54,"276 10th St, New York City, NY 10001" +310502,AA Batteries (4-pack),2,3.84,12/28/19 12:55,"785 8th St, Los Angeles, CA 90001" +310503,Lightning Charging Cable,1,14.95,12/15/19 05:20,"391 11th St, Atlanta, GA 30301" +310504,34in Ultrawide Monitor,1,379.99,12/17/19 19:09,"942 Madison St, New York City, NY 10001" +310505,AA Batteries (4-pack),1,3.84,12/26/19 15:38,"255 Hickory St, San Francisco, CA 94016" +310505,USB-C Charging Cable,1,11.95,12/26/19 15:38,"255 Hickory St, San Francisco, CA 94016" +310506,USB-C Charging Cable,1,11.95,12/24/19 23:34,"931 Willow St, Seattle, WA 98101" +310507,AA Batteries (4-pack),2,3.84,12/22/19 08:12,"678 Ridge St, San Francisco, CA 94016" +310508,Google Phone,1,600,12/11/19 13:30,"32 Washington St, Los Angeles, CA 90001" +310509,USB-C Charging Cable,1,11.95,12/04/19 17:31,"509 9th St, Dallas, TX 75001" +310510,AA Batteries (4-pack),1,3.84,12/02/19 12:33,"787 8th St, San Francisco, CA 94016" +310511,Bose SoundSport Headphones,1,99.99,12/04/19 12:40,"274 Lakeview St, Dallas, TX 75001" +310512,Bose SoundSport Headphones,1,99.99,12/30/19 19:17,"923 Jackson St, San Francisco, CA 94016" +310513,Lightning Charging Cable,1,14.95,12/19/19 00:23,"68 Hill St, Los Angeles, CA 90001" +310514,Macbook Pro Laptop,1,1700,12/21/19 22:20,"431 5th St, New York City, NY 10001" +310515,USB-C Charging Cable,1,11.95,12/27/19 00:46,"33 Elm St, Dallas, TX 75001" +310516,USB-C Charging Cable,1,11.95,12/12/19 09:04,"877 Cherry St, Seattle, WA 98101" +310517,Lightning Charging Cable,1,14.95,12/31/19 22:54,"348 11th St, San Francisco, CA 94016" +310518,Wired Headphones,1,11.99,12/03/19 20:12,"449 Park St, San Francisco, CA 94016" +310519,Lightning Charging Cable,1,14.95,12/10/19 10:05,"279 Walnut St, San Francisco, CA 94016" +310520,USB-C Charging Cable,1,11.95,12/22/19 21:04,"943 Park St, Boston, MA 02215" +310521,Apple Airpods Headphones,1,150,12/24/19 06:38,"631 1st St, Boston, MA 02215" +310522,AA Batteries (4-pack),3,3.84,12/05/19 19:54,"326 Johnson St, New York City, NY 10001" +310523,AAA Batteries (4-pack),4,2.99,12/27/19 16:42,"458 West St, Los Angeles, CA 90001" +310524,Apple Airpods Headphones,1,150,12/21/19 17:13,"657 Jefferson St, San Francisco, CA 94016" +310525,Apple Airpods Headphones,1,150,12/25/19 09:42,"588 Forest St, San Francisco, CA 94016" +310526,Bose SoundSport Headphones,1,99.99,12/19/19 20:06,"461 Maple St, San Francisco, CA 94016" +310526,Google Phone,1,600,12/19/19 20:06,"461 Maple St, San Francisco, CA 94016" +310527,34in Ultrawide Monitor,1,379.99,12/04/19 13:02,"643 Elm St, San Francisco, CA 94016" +310528,Lightning Charging Cable,1,14.95,12/07/19 20:41,"281 River St, New York City, NY 10001" +310529,AA Batteries (4-pack),1,3.84,12/04/19 13:23,"712 Elm St, Los Angeles, CA 90001" +310530,USB-C Charging Cable,1,11.95,12/11/19 08:18,"490 Hickory St, San Francisco, CA 94016" +310531,Apple Airpods Headphones,1,150,12/25/19 09:27,"882 West St, San Francisco, CA 94016" +310532,AA Batteries (4-pack),1,3.84,12/08/19 11:17,"58 Madison St, Atlanta, GA 30301" +310533,Lightning Charging Cable,1,14.95,12/09/19 16:17,"566 12th St, Dallas, TX 75001" +310534,ThinkPad Laptop,1,999.99,12/12/19 11:09,"357 Jackson St, Atlanta, GA 30301" +310535,27in FHD Monitor,1,149.99,12/13/19 18:32,"129 Washington St, Seattle, WA 98101" +310536,27in 4K Gaming Monitor,1,389.99,12/24/19 09:14,"379 Adams St, Seattle, WA 98101" +310537,USB-C Charging Cable,1,11.95,12/11/19 19:40,"360 Center St, San Francisco, CA 94016" +310538,34in Ultrawide Monitor,1,379.99,12/22/19 12:25,"569 Main St, San Francisco, CA 94016" +310539,USB-C Charging Cable,1,11.95,12/02/19 08:56,"63 5th St, Los Angeles, CA 90001" +310540,USB-C Charging Cable,1,11.95,12/01/19 10:44,"745 Dogwood St, Los Angeles, CA 90001" +310541,USB-C Charging Cable,1,11.95,12/09/19 11:06,"793 Washington St, Los Angeles, CA 90001" +310542,Wired Headphones,1,11.99,12/31/19 12:23,"154 Lakeview St, Boston, MA 02215" +310543,34in Ultrawide Monitor,1,379.99,12/31/19 10:24,"89 Lake St, Los Angeles, CA 90001" +310544,Lightning Charging Cable,1,14.95,12/12/19 01:56,"597 Sunset St, Portland, OR 97035" +310545,AA Batteries (4-pack),1,3.84,12/10/19 13:52,"8 Hickory St, San Francisco, CA 94016" +310546,AAA Batteries (4-pack),2,2.99,12/25/19 18:40,"618 Adams St, Dallas, TX 75001" +310547,Lightning Charging Cable,1,14.95,12/08/19 16:57,"593 11th St, Austin, TX 73301" +310548,Bose SoundSport Headphones,1,99.99,12/19/19 21:08,"123 Lake St, Atlanta, GA 30301" +310549,Flatscreen TV,1,300,12/16/19 20:19,"788 Elm St, San Francisco, CA 94016" +310550,Google Phone,1,600,12/12/19 09:37,"40 Wilson St, Los Angeles, CA 90001" +310550,USB-C Charging Cable,1,11.95,12/12/19 09:37,"40 Wilson St, Los Angeles, CA 90001" +310551,Bose SoundSport Headphones,1,99.99,12/25/19 11:55,"1 Pine St, New York City, NY 10001" +310552,27in 4K Gaming Monitor,1,389.99,12/26/19 04:54,"237 North St, Los Angeles, CA 90001" +310553,AAA Batteries (4-pack),1,2.99,12/11/19 12:15,"500 Ridge St, San Francisco, CA 94016" +310554,AA Batteries (4-pack),1,3.84,12/10/19 17:18,"221 South St, San Francisco, CA 94016" +310555,AA Batteries (4-pack),1,3.84,12/13/19 19:32,"512 8th St, Boston, MA 02215" +310556,Wired Headphones,1,11.99,12/29/19 11:46,"846 Lakeview St, New York City, NY 10001" +310557,USB-C Charging Cable,1,11.95,12/16/19 13:23,"694 Willow St, Boston, MA 02215" +310558,Lightning Charging Cable,1,14.95,12/20/19 21:52,"784 Hill St, Los Angeles, CA 90001" +310559,AA Batteries (4-pack),1,3.84,12/01/19 10:35,"504 Jackson St, Los Angeles, CA 90001" +310560,Lightning Charging Cable,1,14.95,12/05/19 18:09,"422 11th St, Atlanta, GA 30301" +310561,AA Batteries (4-pack),1,3.84,12/09/19 09:33,"738 Meadow St, Boston, MA 02215" +310562,27in FHD Monitor,1,149.99,12/20/19 08:12,"988 Chestnut St, Austin, TX 73301" +310563,LG Washing Machine,1,600.0,12/12/19 12:22,"102 7th St, Los Angeles, CA 90001" +310564,Lightning Charging Cable,2,14.95,12/08/19 13:29,"893 Jackson St, Boston, MA 02215" +310565,ThinkPad Laptop,1,999.99,12/12/19 13:59,"584 Highland St, Austin, TX 73301" +310566,Vareebadd Phone,1,400,12/04/19 13:48,"699 Willow St, Dallas, TX 75001" +310567,20in Monitor,1,109.99,12/10/19 08:46,"678 Cedar St, San Francisco, CA 94016" +310568,AA Batteries (4-pack),3,3.84,12/16/19 15:10,"85 Wilson St, New York City, NY 10001" +310569,Macbook Pro Laptop,1,1700,12/18/19 09:38,"949 8th St, San Francisco, CA 94016" +310570,Apple Airpods Headphones,1,150,12/02/19 17:30,"436 9th St, Dallas, TX 75001" +310571,Wired Headphones,1,11.99,12/25/19 21:24,"870 10th St, San Francisco, CA 94016" +310572,Lightning Charging Cable,1,14.95,12/04/19 21:22,"382 Forest St, Portland, ME 04101" +310573,Bose SoundSport Headphones,1,99.99,12/24/19 10:23,"733 Adams St, New York City, NY 10001" +310574,USB-C Charging Cable,1,11.95,12/16/19 13:17,"940 8th St, Boston, MA 02215" +310575,USB-C Charging Cable,1,11.95,12/31/19 22:39,"226 Lake St, San Francisco, CA 94016" +310576,USB-C Charging Cable,2,11.95,12/17/19 21:44,"512 Jefferson St, Portland, ME 04101" +310577,34in Ultrawide Monitor,1,379.99,12/18/19 20:34,"822 Lincoln St, Seattle, WA 98101" +310578,AAA Batteries (4-pack),2,2.99,12/27/19 21:50,"535 Cherry St, San Francisco, CA 94016" +310579,AAA Batteries (4-pack),1,2.99,12/15/19 15:18,"339 9th St, San Francisco, CA 94016" +310580,Macbook Pro Laptop,1,1700,12/02/19 22:01,"335 Meadow St, San Francisco, CA 94016" +310581,Vareebadd Phone,1,400,12/29/19 23:12,"282 South St, Seattle, WA 98101" +310582,Lightning Charging Cable,1,14.95,12/15/19 10:27,"53 8th St, Los Angeles, CA 90001" +310583,Lightning Charging Cable,1,14.95,12/07/19 10:00,"325 Adams St, San Francisco, CA 94016" +310584,27in 4K Gaming Monitor,1,389.99,12/06/19 18:40,"953 River St, Portland, OR 97035" +310585,Lightning Charging Cable,1,14.95,12/09/19 13:31,"640 Meadow St, New York City, NY 10001" +310586,USB-C Charging Cable,1,11.95,12/21/19 22:16,"576 Hickory St, San Francisco, CA 94016" +310587,Lightning Charging Cable,1,14.95,12/09/19 20:29,"651 12th St, San Francisco, CA 94016" +310588,Wired Headphones,1,11.99,12/01/19 11:41,"170 Forest St, New York City, NY 10001" +310589,34in Ultrawide Monitor,1,379.99,12/27/19 14:21,"892 Walnut St, Los Angeles, CA 90001" +310590,AAA Batteries (4-pack),3,2.99,12/26/19 09:44,"340 Highland St, Boston, MA 02215" +310591,AAA Batteries (4-pack),1,2.99,12/24/19 22:12,"31 Spruce St, Dallas, TX 75001" +310592,Wired Headphones,1,11.99,12/24/19 09:45,"306 Sunset St, Atlanta, GA 30301" +310593,AA Batteries (4-pack),2,3.84,12/08/19 16:43,"447 Hill St, Los Angeles, CA 90001" +310594,Lightning Charging Cable,1,14.95,12/17/19 17:36,"626 Johnson St, Seattle, WA 98101" +310595,20in Monitor,1,109.99,12/05/19 15:55,"875 Center St, Los Angeles, CA 90001" +310596,27in FHD Monitor,1,149.99,12/03/19 19:29,"358 Wilson St, San Francisco, CA 94016" +310597,USB-C Charging Cable,1,11.95,12/11/19 12:24,"397 Dogwood St, New York City, NY 10001" +310598,Lightning Charging Cable,1,14.95,12/16/19 12:42,"455 Hickory St, Boston, MA 02215" +310599,Lightning Charging Cable,1,14.95,12/11/19 21:57,"274 4th St, Boston, MA 02215" +310600,Lightning Charging Cable,1,14.95,12/27/19 16:24,"159 Spruce St, San Francisco, CA 94016" +310601,USB-C Charging Cable,1,11.95,12/14/19 10:32,"755 Sunset St, Boston, MA 02215" +310602,Lightning Charging Cable,1,14.95,12/22/19 21:57,"969 Highland St, Portland, OR 97035" +310603,Bose SoundSport Headphones,1,99.99,12/19/19 23:52,"66 Wilson St, Boston, MA 02215" +310604,27in FHD Monitor,1,149.99,12/10/19 11:14,"990 7th St, San Francisco, CA 94016" +310605,iPhone,1,700,12/03/19 19:06,"568 2nd St, San Francisco, CA 94016" +310605,Lightning Charging Cable,1,14.95,12/03/19 19:06,"568 2nd St, San Francisco, CA 94016" +310606,Vareebadd Phone,1,400,12/22/19 10:42,"364 Church St, Los Angeles, CA 90001" +310606,Bose SoundSport Headphones,1,99.99,12/22/19 10:42,"364 Church St, Los Angeles, CA 90001" +310607,27in FHD Monitor,1,149.99,12/29/19 01:56,"670 Dogwood St, Atlanta, GA 30301" +310608,Bose SoundSport Headphones,1,99.99,12/26/19 12:41,"650 South St, Portland, OR 97035" +310609,Lightning Charging Cable,1,14.95,12/07/19 13:50,"532 Johnson St, Boston, MA 02215" +310610,Wired Headphones,1,11.99,12/18/19 21:50,"500 Walnut St, San Francisco, CA 94016" +310611,Google Phone,1,600,12/29/19 09:01,"842 8th St, Atlanta, GA 30301" +310611,USB-C Charging Cable,1,11.95,12/29/19 09:01,"842 8th St, Atlanta, GA 30301" +310612,Bose SoundSport Headphones,1,99.99,12/21/19 13:41,"745 Hickory St, Portland, ME 04101" +310613,Bose SoundSport Headphones,1,99.99,12/03/19 15:12,"198 Lake St, Boston, MA 02215" +310614,Vareebadd Phone,1,400,12/30/19 18:29,"317 Spruce St, Boston, MA 02215" +310615,Lightning Charging Cable,1,14.95,12/11/19 11:45,"262 9th St, San Francisco, CA 94016" +310615,Macbook Pro Laptop,1,1700,12/11/19 11:45,"262 9th St, San Francisco, CA 94016" +310616,Bose SoundSport Headphones,1,99.99,12/06/19 11:09,"715 4th St, Los Angeles, CA 90001" +310617,20in Monitor,1,109.99,12/31/19 10:13,"955 Jefferson St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +310618,USB-C Charging Cable,1,11.95,12/09/19 13:37,"938 11th St, Austin, TX 73301" +310619,AA Batteries (4-pack),4,3.84,12/23/19 11:44,"495 Maple St, San Francisco, CA 94016" +310620,AAA Batteries (4-pack),1,2.99,12/13/19 22:47,"374 4th St, New York City, NY 10001" +310621,USB-C Charging Cable,1,11.95,12/01/19 21:53,"891 Willow St, Seattle, WA 98101" +310621,Apple Airpods Headphones,1,150,12/01/19 21:53,"891 Willow St, Seattle, WA 98101" +310622,iPhone,1,700,12/23/19 11:12,"543 Main St, Dallas, TX 75001" +310623,Flatscreen TV,1,300,12/30/19 19:54,"284 Elm St, New York City, NY 10001" +310624,Bose SoundSport Headphones,1,99.99,12/26/19 21:08,"322 River St, Austin, TX 73301" +310625,Apple Airpods Headphones,1,150,12/08/19 08:16,"362 Chestnut St, Boston, MA 02215" +310626,Apple Airpods Headphones,1,150,12/20/19 19:13,"131 1st St, Dallas, TX 75001" +310627,Apple Airpods Headphones,1,150,12/01/19 13:52,"781 9th St, Atlanta, GA 30301" +310628,27in 4K Gaming Monitor,1,389.99,12/27/19 10:46,"467 9th St, Los Angeles, CA 90001" +310629,Bose SoundSport Headphones,1,99.99,12/19/19 14:00,"19 Hickory St, Boston, MA 02215" +310630,Apple Airpods Headphones,1,150,12/18/19 18:13,"22 Spruce St, Dallas, TX 75001" +310630,Google Phone,1,600,12/18/19 18:13,"22 Spruce St, Dallas, TX 75001" +310631,Lightning Charging Cable,1,14.95,12/15/19 18:51,"213 7th St, San Francisco, CA 94016" +310632,27in FHD Monitor,1,149.99,12/06/19 19:28,"17 Spruce St, San Francisco, CA 94016" +310633,Apple Airpods Headphones,1,150,12/30/19 13:44,"404 Jefferson St, Boston, MA 02215" +310634,34in Ultrawide Monitor,1,379.99,12/16/19 10:20,"149 Jefferson St, Boston, MA 02215" +310635,Wired Headphones,1,11.99,12/10/19 13:01,"793 Chestnut St, San Francisco, CA 94016" +310636,USB-C Charging Cable,1,11.95,12/29/19 16:43,"690 Hill St, Seattle, WA 98101" +310637,Bose SoundSport Headphones,1,99.99,12/17/19 20:16,"815 Washington St, Portland, OR 97035" +310638,USB-C Charging Cable,1,11.95,12/30/19 06:54,"910 Park St, Los Angeles, CA 90001" +310639,AA Batteries (4-pack),1,3.84,12/10/19 11:32,"574 Ridge St, Los Angeles, CA 90001" +310640,Vareebadd Phone,1,400,12/07/19 19:04,"396 Center St, San Francisco, CA 94016" +310640,Bose SoundSport Headphones,1,99.99,12/07/19 19:04,"396 Center St, San Francisco, CA 94016" +310641,Apple Airpods Headphones,1,150,12/25/19 23:08,"715 River St, New York City, NY 10001" +310642,USB-C Charging Cable,2,11.95,12/12/19 21:02,"908 Main St, Seattle, WA 98101" +310643,Lightning Charging Cable,1,14.95,12/01/19 22:11,"429 Johnson St, New York City, NY 10001" +310644,AA Batteries (4-pack),1,3.84,12/21/19 18:33,"754 Jefferson St, Austin, TX 73301" +310645,Wired Headphones,1,11.99,12/05/19 19:25,"581 Center St, Boston, MA 02215" +310646,34in Ultrawide Monitor,1,379.99,12/03/19 00:52,"642 Forest St, Atlanta, GA 30301" +310646,Macbook Pro Laptop,1,1700,12/03/19 00:52,"642 Forest St, Atlanta, GA 30301" +310647,Bose SoundSport Headphones,1,99.99,12/14/19 12:44,"667 Johnson St, San Francisco, CA 94016" +310648,Lightning Charging Cable,1,14.95,12/14/19 09:28,"335 5th St, Dallas, TX 75001" +310649,Lightning Charging Cable,1,14.95,12/10/19 09:37,"173 Hill St, Seattle, WA 98101" +310650,Apple Airpods Headphones,1,150,12/31/19 21:29,"294 5th St, Boston, MA 02215" +310651,27in 4K Gaming Monitor,1,389.99,12/01/19 15:52,"261 Lake St, Atlanta, GA 30301" +310652,AAA Batteries (4-pack),1,2.99,12/04/19 13:00,"161 Meadow St, Dallas, TX 75001" +310653,AA Batteries (4-pack),2,3.84,12/08/19 11:26,"445 Lake St, Austin, TX 73301" +310654,AAA Batteries (4-pack),2,2.99,12/25/19 15:04,"390 North St, Boston, MA 02215" +310655,27in FHD Monitor,1,149.99,12/03/19 18:16,"362 8th St, Los Angeles, CA 90001" +310656,Wired Headphones,1,11.99,12/24/19 21:20,"434 9th St, Austin, TX 73301" +310657,Lightning Charging Cable,1,14.95,12/13/19 06:15,"510 11th St, Los Angeles, CA 90001" +310658,ThinkPad Laptop,1,999.99,12/18/19 13:45,"276 6th St, New York City, NY 10001" +310659,27in FHD Monitor,1,149.99,12/16/19 12:37,"5 Johnson St, Austin, TX 73301" +310660,iPhone,1,700,12/21/19 11:45,"691 River St, San Francisco, CA 94016" +310661,AAA Batteries (4-pack),1,2.99,12/06/19 21:57,"253 1st St, Los Angeles, CA 90001" +310662,Apple Airpods Headphones,1,150,12/02/19 10:30,"624 9th St, Los Angeles, CA 90001" +310663,AAA Batteries (4-pack),2,2.99,12/17/19 13:06,"325 Church St, San Francisco, CA 94016" +310664,Wired Headphones,1,11.99,12/05/19 16:43,"830 North St, San Francisco, CA 94016" +310665,USB-C Charging Cable,1,11.95,12/03/19 12:04,"180 Park St, New York City, NY 10001" +310666,Lightning Charging Cable,1,14.95,12/04/19 23:03,"388 Main St, Los Angeles, CA 90001" +310667,AAA Batteries (4-pack),2,2.99,12/01/19 20:44,"276 Elm St, Dallas, TX 75001" +310668,27in 4K Gaming Monitor,1,389.99,12/05/19 12:06,"233 13th St, San Francisco, CA 94016" +310669,27in FHD Monitor,1,149.99,12/16/19 15:16,"667 2nd St, San Francisco, CA 94016" +310670,AA Batteries (4-pack),1,3.84,12/19/19 08:50,"879 Chestnut St, Atlanta, GA 30301" +310671,USB-C Charging Cable,1,11.95,12/01/19 14:50,"403 Main St, San Francisco, CA 94016" +310672,USB-C Charging Cable,1,11.95,12/01/19 23:26,"321 Jefferson St, San Francisco, CA 94016" +310673,AAA Batteries (4-pack),1,2.99,12/30/19 11:52,"970 Main St, Seattle, WA 98101" +310674,Lightning Charging Cable,1,14.95,12/14/19 16:12,"883 River St, San Francisco, CA 94016" +310675,Apple Airpods Headphones,1,150,12/15/19 01:53,"352 6th St, New York City, NY 10001" +310676,AAA Batteries (4-pack),1,2.99,12/05/19 18:35,"790 Main St, New York City, NY 10001" +310677,Lightning Charging Cable,1,14.95,12/02/19 21:43,"564 Ridge St, New York City, NY 10001" +310678,Wired Headphones,1,11.99,12/22/19 19:46,"314 Spruce St, Austin, TX 73301" +310678,Lightning Charging Cable,1,14.95,12/22/19 19:46,"314 Spruce St, Austin, TX 73301" +310679,AAA Batteries (4-pack),2,2.99,12/09/19 19:10,"645 Madison St, New York City, NY 10001" +310680,AA Batteries (4-pack),1,3.84,12/23/19 18:30,"228 Jefferson St, San Francisco, CA 94016" +310681,USB-C Charging Cable,1,11.95,12/29/19 19:28,"62 Madison St, Los Angeles, CA 90001" +310682,USB-C Charging Cable,1,11.95,12/08/19 14:37,"318 Jackson St, Boston, MA 02215" +310683,Wired Headphones,1,11.99,12/06/19 11:07,"204 Chestnut St, San Francisco, CA 94016" +310684,34in Ultrawide Monitor,1,379.99,12/11/19 19:06,"964 Jackson St, Portland, ME 04101" +310685,USB-C Charging Cable,1,11.95,12/04/19 14:48,"933 Dogwood St, Atlanta, GA 30301" +310686,Apple Airpods Headphones,1,150,12/21/19 15:52,"767 2nd St, Los Angeles, CA 90001" +310687,Bose SoundSport Headphones,1,99.99,12/31/19 10:11,"562 Highland St, Los Angeles, CA 90001" +310688,Lightning Charging Cable,1,14.95,12/06/19 12:04,"103 Church St, Boston, MA 02215" +310689,Vareebadd Phone,1,400,12/11/19 11:53,"649 Madison St, San Francisco, CA 94016" +310689,USB-C Charging Cable,1,11.95,12/11/19 11:53,"649 Madison St, San Francisco, CA 94016" +310690,AAA Batteries (4-pack),1,2.99,12/27/19 07:12,"38 14th St, San Francisco, CA 94016" +310691,AAA Batteries (4-pack),2,2.99,12/11/19 00:32,"354 Madison St, Seattle, WA 98101" +310692,34in Ultrawide Monitor,1,379.99,12/03/19 16:25,"901 Hickory St, San Francisco, CA 94016" +310693,27in 4K Gaming Monitor,1,389.99,12/22/19 09:55,"75 Pine St, Dallas, TX 75001" +310694,Bose SoundSport Headphones,1,99.99,12/28/19 15:37,"44 Highland St, Dallas, TX 75001" +310695,Lightning Charging Cable,1,14.95,12/29/19 15:27,"75 Hickory St, Portland, ME 04101" +310696,Wired Headphones,1,11.99,12/09/19 20:02,"81 Spruce St, San Francisco, CA 94016" +310697,AA Batteries (4-pack),1,3.84,12/25/19 07:44,"722 14th St, San Francisco, CA 94016" +310698,Lightning Charging Cable,1,14.95,12/14/19 12:01,"704 Main St, New York City, NY 10001" +310699,Bose SoundSport Headphones,1,99.99,12/12/19 10:12,"493 Spruce St, New York City, NY 10001" +310700,Lightning Charging Cable,1,14.95,12/28/19 16:55,"987 South St, Los Angeles, CA 90001" +310701,AAA Batteries (4-pack),1,2.99,12/24/19 18:08,"199 7th St, New York City, NY 10001" +310702,AA Batteries (4-pack),1,3.84,12/05/19 21:38,"507 11th St, Dallas, TX 75001" +310703,27in FHD Monitor,1,149.99,12/12/19 15:03,"412 Walnut St, Dallas, TX 75001" +310704,Wired Headphones,1,11.99,12/29/19 17:34,"423 Main St, Dallas, TX 75001" +310705,ThinkPad Laptop,1,999.99,12/13/19 10:38,"667 8th St, San Francisco, CA 94016" +310706,USB-C Charging Cable,1,11.95,12/03/19 19:52,"629 5th St, San Francisco, CA 94016" +310707,Lightning Charging Cable,1,14.95,12/19/19 09:44,"452 Ridge St, Atlanta, GA 30301" +310708,Wired Headphones,1,11.99,12/23/19 21:22,"201 Walnut St, New York City, NY 10001" +310709,USB-C Charging Cable,1,11.95,12/06/19 09:28,"578 Lakeview St, Portland, OR 97035" +310710,Lightning Charging Cable,1,14.95,12/27/19 06:51,"116 13th St, San Francisco, CA 94016" +310711,Wired Headphones,1,11.99,12/25/19 08:16,"189 Hill St, Dallas, TX 75001" +310712,34in Ultrawide Monitor,1,379.99,12/17/19 05:24,"34 Johnson St, New York City, NY 10001" +310713,27in FHD Monitor,1,149.99,12/27/19 13:30,"426 Maple St, Boston, MA 02215" +310714,27in 4K Gaming Monitor,1,389.99,12/20/19 13:33,"106 Jackson St, San Francisco, CA 94016" +310715,Bose SoundSport Headphones,1,99.99,12/31/19 01:48,"643 8th St, Boston, MA 02215" +310716,Lightning Charging Cable,1,14.95,12/26/19 07:49,"756 Elm St, San Francisco, CA 94016" +310717,Wired Headphones,1,11.99,12/06/19 06:23,"368 Johnson St, Dallas, TX 75001" +310718,Flatscreen TV,1,300,12/31/19 21:26,"833 Lincoln St, Los Angeles, CA 90001" +310719,Macbook Pro Laptop,1,1700,12/19/19 11:42,"127 Maple St, San Francisco, CA 94016" +310720,AA Batteries (4-pack),1,3.84,12/18/19 16:13,"946 Cherry St, Los Angeles, CA 90001" +310721,AA Batteries (4-pack),1,3.84,12/06/19 12:35,"789 Wilson St, Dallas, TX 75001" +310722,USB-C Charging Cable,1,11.95,12/08/19 19:41,"459 Maple St, San Francisco, CA 94016" +310723,27in 4K Gaming Monitor,1,389.99,12/07/19 08:05,"899 Pine St, New York City, NY 10001" +310724,USB-C Charging Cable,1,11.95,12/10/19 07:22,"598 Park St, Austin, TX 73301" +310725,Bose SoundSport Headphones,1,99.99,12/12/19 11:58,"714 1st St, Seattle, WA 98101" +310726,Wired Headphones,1,11.99,12/20/19 19:50,"322 South St, Atlanta, GA 30301" +310727,AAA Batteries (4-pack),1,2.99,12/23/19 10:44,"377 Adams St, San Francisco, CA 94016" +310728,Vareebadd Phone,1,400,12/07/19 08:55,"116 Chestnut St, Atlanta, GA 30301" +310729,AAA Batteries (4-pack),2,2.99,12/05/19 16:35,"769 River St, Los Angeles, CA 90001" +310730,Apple Airpods Headphones,1,150,12/25/19 13:07,"348 Pine St, Seattle, WA 98101" +310731,Lightning Charging Cable,1,14.95,12/03/19 14:18,"554 Madison St, New York City, NY 10001" +310732,Apple Airpods Headphones,1,150,12/25/19 11:27,"871 2nd St, San Francisco, CA 94016" +310733,USB-C Charging Cable,1,11.95,12/19/19 15:38,"576 Madison St, San Francisco, CA 94016" +310734,Lightning Charging Cable,1,14.95,12/15/19 13:40,"629 North St, New York City, NY 10001" +310735,34in Ultrawide Monitor,1,379.99,12/29/19 22:32,"263 Hickory St, Seattle, WA 98101" +310736,AAA Batteries (4-pack),1,2.99,12/14/19 08:28,"5 South St, Dallas, TX 75001" +310737,AAA Batteries (4-pack),1,2.99,12/16/19 22:06,"598 Ridge St, New York City, NY 10001" +310738,34in Ultrawide Monitor,1,379.99,12/14/19 05:28,"724 Center St, Boston, MA 02215" +310738,LG Dryer,1,600.0,12/14/19 05:28,"724 Center St, Boston, MA 02215" +310739,USB-C Charging Cable,1,11.95,12/05/19 12:44,"810 West St, Portland, OR 97035" +310740,USB-C Charging Cable,1,11.95,12/31/19 22:05,"485 Spruce St, Dallas, TX 75001" +310741,Google Phone,1,600,12/28/19 22:03,"81 12th St, Los Angeles, CA 90001" +310742,Apple Airpods Headphones,1,150,12/12/19 15:25,"839 Hickory St, Seattle, WA 98101" +310743,27in FHD Monitor,1,149.99,12/09/19 19:29,"72 13th St, Dallas, TX 75001" +310744,ThinkPad Laptop,1,999.99,12/22/19 15:00,"583 Sunset St, Atlanta, GA 30301" +310745,Wired Headphones,1,11.99,12/23/19 19:52,"750 Maple St, Atlanta, GA 30301" +310746,Lightning Charging Cable,1,14.95,12/24/19 21:40,"569 5th St, Los Angeles, CA 90001" +310746,Bose SoundSport Headphones,1,99.99,12/24/19 21:40,"569 5th St, Los Angeles, CA 90001" +310747,Lightning Charging Cable,1,14.95,12/28/19 16:22,"453 Wilson St, Los Angeles, CA 90001" +310747,34in Ultrawide Monitor,1,379.99,12/28/19 16:22,"453 Wilson St, Los Angeles, CA 90001" +310748,USB-C Charging Cable,1,11.95,12/25/19 19:45,"730 Forest St, San Francisco, CA 94016" +310749,27in FHD Monitor,1,149.99,12/17/19 00:00,"863 12th St, San Francisco, CA 94016" +310750,27in 4K Gaming Monitor,1,389.99,12/20/19 10:45,"514 7th St, Atlanta, GA 30301" +310751,USB-C Charging Cable,1,11.95,12/15/19 08:49,"507 Center St, Dallas, TX 75001" +310752,AA Batteries (4-pack),4,3.84,12/01/19 20:19,"162 2nd St, San Francisco, CA 94016" +310753,Wired Headphones,1,11.99,12/04/19 13:20,"191 Elm St, Austin, TX 73301" +310754,USB-C Charging Cable,1,11.95,12/06/19 11:55,"884 6th St, Boston, MA 02215" +310755,Apple Airpods Headphones,1,150,12/26/19 18:12,"64 Hickory St, Los Angeles, CA 90001" +310756,iPhone,1,700,12/21/19 14:43,"8 8th St, Austin, TX 73301" +310757,34in Ultrawide Monitor,1,379.99,12/03/19 23:23,"479 Cedar St, Austin, TX 73301" +310758,AA Batteries (4-pack),1,3.84,12/08/19 09:57,"406 Main St, San Francisco, CA 94016" +310759,USB-C Charging Cable,1,11.95,12/30/19 19:19,"318 Willow St, Los Angeles, CA 90001" +310760,Bose SoundSport Headphones,1,99.99,12/08/19 09:14,"840 Madison St, Dallas, TX 75001" +310761,AAA Batteries (4-pack),1,2.99,12/26/19 17:54,"159 Cedar St, Boston, MA 02215" +310762,Lightning Charging Cable,1,14.95,12/28/19 21:43,"730 Highland St, Austin, TX 73301" +310763,Wired Headphones,1,11.99,12/17/19 12:01,"581 North St, San Francisco, CA 94016" +310764,27in FHD Monitor,1,149.99,12/17/19 14:28,"193 Elm St, New York City, NY 10001" +310765,USB-C Charging Cable,1,11.95,12/06/19 18:17,"122 Adams St, San Francisco, CA 94016" +310766,Wired Headphones,1,11.99,12/16/19 16:06,"693 Center St, Seattle, WA 98101" +310767,AA Batteries (4-pack),2,3.84,12/12/19 22:13,"694 Spruce St, Los Angeles, CA 90001" +310768,Bose SoundSport Headphones,1,99.99,12/20/19 12:24,"967 12th St, Los Angeles, CA 90001" +310769,AA Batteries (4-pack),1,3.84,12/05/19 08:51,"481 Cherry St, Portland, OR 97035" +310770,Wired Headphones,1,11.99,12/13/19 23:41,"399 9th St, Seattle, WA 98101" +310771,34in Ultrawide Monitor,1,379.99,12/11/19 11:07,"132 10th St, Los Angeles, CA 90001" +310772,Flatscreen TV,1,300,12/09/19 10:19,"830 1st St, San Francisco, CA 94016" +310773,Wired Headphones,1,11.99,12/20/19 10:19,"668 Adams St, Dallas, TX 75001" +310774,AAA Batteries (4-pack),1,2.99,12/17/19 14:17,"412 5th St, San Francisco, CA 94016" +310775,iPhone,1,700,12/05/19 09:56,"189 Meadow St, Portland, OR 97035" +310776,USB-C Charging Cable,1,11.95,12/19/19 13:01,"171 11th St, New York City, NY 10001" +310777,AAA Batteries (4-pack),2,2.99,12/01/19 19:47,"522 West St, New York City, NY 10001" +310778,27in 4K Gaming Monitor,1,389.99,12/11/19 22:06,"901 North St, Austin, TX 73301" +310779,Wired Headphones,1,11.99,12/27/19 16:07,"219 Johnson St, Boston, MA 02215" +310780,Wired Headphones,1,11.99,12/20/19 16:55,"553 West St, San Francisco, CA 94016" +310781,Apple Airpods Headphones,1,150,12/19/19 11:52,"509 Main St, Seattle, WA 98101" +310782,AA Batteries (4-pack),2,3.84,12/09/19 17:50,"486 Lincoln St, Portland, ME 04101" +310783,ThinkPad Laptop,1,999.99,12/29/19 14:23,"129 Maple St, Atlanta, GA 30301" +310784,AA Batteries (4-pack),1,3.84,12/16/19 13:21,"742 Lincoln St, Portland, OR 97035" +310785,Vareebadd Phone,1,400,12/01/19 19:07,"592 12th St, New York City, NY 10001" +310786,Lightning Charging Cable,1,14.95,12/09/19 22:58,"820 River St, Los Angeles, CA 90001" +310787,AAA Batteries (4-pack),1,2.99,12/06/19 12:11,"706 West St, Los Angeles, CA 90001" +310788,Google Phone,1,600,12/03/19 08:59,"877 14th St, Portland, OR 97035" +310789,AA Batteries (4-pack),1,3.84,12/17/19 10:56,"924 Jackson St, Austin, TX 73301" +310790,Flatscreen TV,1,300,12/30/19 11:48,"534 Cedar St, Atlanta, GA 30301" +310791,ThinkPad Laptop,1,999.99,12/05/19 08:58,"38 1st St, San Francisco, CA 94016" +310792,AAA Batteries (4-pack),1,2.99,12/29/19 17:16,"715 1st St, Boston, MA 02215" +310793,Lightning Charging Cable,1,14.95,12/06/19 14:28,"650 Dogwood St, Atlanta, GA 30301" +310794,Wired Headphones,1,11.99,12/05/19 22:27,"162 River St, Atlanta, GA 30301" +310795,34in Ultrawide Monitor,1,379.99,12/16/19 10:06,"218 Jefferson St, Boston, MA 02215" +310796,Lightning Charging Cable,1,14.95,12/01/19 10:32,"533 Lake St, San Francisco, CA 94016" +310797,Bose SoundSport Headphones,1,99.99,12/23/19 17:09,"919 11th St, Seattle, WA 98101" +310798,AA Batteries (4-pack),1,3.84,12/27/19 09:58,"559 Chestnut St, Boston, MA 02215" +310799,Apple Airpods Headphones,1,150,12/13/19 16:14,"560 Johnson St, Portland, OR 97035" +310800,Wired Headphones,1,11.99,12/09/19 16:53,"358 Lincoln St, San Francisco, CA 94016" +310801,USB-C Charging Cable,1,11.95,12/15/19 20:29,"777 Elm St, Portland, OR 97035" +310802,Macbook Pro Laptop,1,1700,12/31/19 10:25,"380 Spruce St, New York City, NY 10001" +310803,iPhone,1,700,12/24/19 20:25,"912 South St, New York City, NY 10001" +310803,Google Phone,1,600,12/24/19 20:25,"912 South St, New York City, NY 10001" +310804,Wired Headphones,1,11.99,12/01/19 14:43,"860 7th St, Los Angeles, CA 90001" +310805,Flatscreen TV,1,300,12/03/19 05:48,"78 8th St, Los Angeles, CA 90001" +310806,Bose SoundSport Headphones,1,99.99,12/06/19 12:41,"167 4th St, Atlanta, GA 30301" +310807,iPhone,1,700,12/13/19 11:42,"803 Dogwood St, Dallas, TX 75001" +310808,Vareebadd Phone,1,400,12/28/19 13:36,"160 Forest St, Boston, MA 02215" +310808,USB-C Charging Cable,1,11.95,12/28/19 13:36,"160 Forest St, Boston, MA 02215" +310808,Wired Headphones,1,11.99,12/28/19 13:36,"160 Forest St, Boston, MA 02215" +310809,34in Ultrawide Monitor,1,379.99,12/10/19 20:00,"962 8th St, San Francisco, CA 94016" +310810,27in 4K Gaming Monitor,1,389.99,12/02/19 13:47,"765 Lincoln St, Los Angeles, CA 90001" +310811,AA Batteries (4-pack),1,3.84,12/23/19 10:30,"478 Maple St, Boston, MA 02215" +310811,Bose SoundSport Headphones,1,99.99,12/23/19 10:30,"478 Maple St, Boston, MA 02215" +310812,Wired Headphones,1,11.99,12/25/19 18:35,"950 Lake St, Portland, OR 97035" +310813,Bose SoundSport Headphones,1,99.99,12/31/19 21:46,"679 Cherry St, Atlanta, GA 30301" +310814,USB-C Charging Cable,1,11.95,12/07/19 17:50,"622 Pine St, San Francisco, CA 94016" +310815,Apple Airpods Headphones,1,150,12/30/19 10:08,"558 Church St, Atlanta, GA 30301" +310816,27in 4K Gaming Monitor,1,389.99,12/14/19 13:45,"984 Park St, Portland, OR 97035" +310817,Wired Headphones,1,11.99,12/30/19 12:50,"411 Hickory St, Atlanta, GA 30301" +310818,ThinkPad Laptop,1,999.99,12/27/19 12:43,"817 6th St, Portland, OR 97035" +310819,USB-C Charging Cable,1,11.95,12/20/19 23:58,"317 Elm St, Portland, OR 97035" +310820,AAA Batteries (4-pack),1,2.99,12/13/19 09:12,"595 Church St, Los Angeles, CA 90001" +310821,Apple Airpods Headphones,1,150,12/30/19 12:15,"603 Pine St, San Francisco, CA 94016" +310822,27in FHD Monitor,1,149.99,12/23/19 23:26,"944 Madison St, New York City, NY 10001" +310823,Apple Airpods Headphones,1,150,12/24/19 09:12,"703 Highland St, New York City, NY 10001" +310824,Wired Headphones,1,11.99,12/11/19 18:11,"382 Cedar St, San Francisco, CA 94016" +310825,AA Batteries (4-pack),1,3.84,12/29/19 19:07,"383 Elm St, Los Angeles, CA 90001" +310826,Apple Airpods Headphones,1,150,12/24/19 09:49,"908 Hickory St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +310827,Bose SoundSport Headphones,1,99.99,12/26/19 15:18,"886 West St, San Francisco, CA 94016" +310828,34in Ultrawide Monitor,1,379.99,12/28/19 16:53,"527 5th St, Los Angeles, CA 90001" +310829,27in FHD Monitor,1,149.99,12/20/19 00:25,"745 10th St, Atlanta, GA 30301" +310830,AAA Batteries (4-pack),2,2.99,12/30/19 17:02,"306 Wilson St, Dallas, TX 75001" +310831,Lightning Charging Cable,1,14.95,12/06/19 16:55,"272 8th St, Seattle, WA 98101" +310832,27in FHD Monitor,1,149.99,12/07/19 14:22,"405 1st St, New York City, NY 10001" +310833,Google Phone,1,600,12/27/19 13:30,"25 Hill St, San Francisco, CA 94016" +310834,Macbook Pro Laptop,1,1700,12/07/19 19:07,"121 Hickory St, Los Angeles, CA 90001" +310835,Lightning Charging Cable,1,14.95,12/10/19 02:05,"341 Cedar St, San Francisco, CA 94016" +310836,Macbook Pro Laptop,1,1700,12/19/19 23:23,"646 Ridge St, Austin, TX 73301" +310837,Bose SoundSport Headphones,1,99.99,12/26/19 00:59,"879 Hickory St, New York City, NY 10001" +310838,34in Ultrawide Monitor,1,379.99,12/18/19 08:38,"456 Spruce St, Seattle, WA 98101" +310839,iPhone,1,700,12/02/19 17:12,"35 Cedar St, Los Angeles, CA 90001" +310840,Lightning Charging Cable,2,14.95,12/01/19 14:47,"142 Washington St, New York City, NY 10001" +310841,Flatscreen TV,1,300,12/24/19 21:51,"879 Pine St, Seattle, WA 98101" +310841,USB-C Charging Cable,2,11.95,12/24/19 21:51,"879 Pine St, Seattle, WA 98101" +,,,,, +310842,Macbook Pro Laptop,1,1700,12/14/19 00:17,"397 Spruce St, Los Angeles, CA 90001" +310843,USB-C Charging Cable,1,11.95,12/08/19 16:52,"688 Hill St, Dallas, TX 75001" +310844,USB-C Charging Cable,1,11.95,12/06/19 13:08,"317 Johnson St, Boston, MA 02215" +310845,Lightning Charging Cable,1,14.95,12/11/19 22:07,"463 Madison St, Austin, TX 73301" +310846,USB-C Charging Cable,1,11.95,12/28/19 12:45,"180 Sunset St, Dallas, TX 75001" +310847,ThinkPad Laptop,1,999.99,12/04/19 17:21,"931 Spruce St, Portland, OR 97035" +310848,AA Batteries (4-pack),1,3.84,12/24/19 12:45,"577 Cedar St, San Francisco, CA 94016" +310849,USB-C Charging Cable,1,11.95,12/10/19 09:31,"880 Adams St, Boston, MA 02215" +310850,27in FHD Monitor,1,149.99,12/08/19 17:05,"486 9th St, Los Angeles, CA 90001" +310851,Lightning Charging Cable,1,14.95,12/07/19 13:32,"22 Lakeview St, Portland, OR 97035" +310852,AA Batteries (4-pack),1,3.84,12/04/19 14:04,"633 Center St, San Francisco, CA 94016" +310853,AAA Batteries (4-pack),1,2.99,12/03/19 20:53,"154 Sunset St, New York City, NY 10001" +310854,Wired Headphones,1,11.99,12/17/19 15:46,"955 Sunset St, Austin, TX 73301" +310855,Apple Airpods Headphones,1,150,12/10/19 06:11,"335 Madison St, San Francisco, CA 94016" +310856,AA Batteries (4-pack),1,3.84,12/16/19 15:45,"281 2nd St, Dallas, TX 75001" +310857,USB-C Charging Cable,1,11.95,12/26/19 21:33,"365 11th St, New York City, NY 10001" +310858,USB-C Charging Cable,1,11.95,12/28/19 14:02,"31 Washington St, Los Angeles, CA 90001" +310859,Apple Airpods Headphones,1,150,12/10/19 09:14,"43 10th St, New York City, NY 10001" +310860,Wired Headphones,1,11.99,12/15/19 17:36,"936 Park St, Dallas, TX 75001" +310861,Flatscreen TV,1,300,12/26/19 12:08,"815 Elm St, Los Angeles, CA 90001" +310862,AA Batteries (4-pack),1,3.84,12/24/19 13:46,"844 7th St, Austin, TX 73301" +310863,Wired Headphones,1,11.99,12/14/19 19:10,"595 Hickory St, San Francisco, CA 94016" +310864,Wired Headphones,1,11.99,12/18/19 11:46,"859 Hickory St, Austin, TX 73301" +310865,AA Batteries (4-pack),1,3.84,12/17/19 12:16,"608 Lake St, Boston, MA 02215" +310866,USB-C Charging Cable,1,11.95,12/22/19 15:06,"207 11th St, New York City, NY 10001" +310867,34in Ultrawide Monitor,1,379.99,12/21/19 17:38,"199 11th St, Los Angeles, CA 90001" +310868,AAA Batteries (4-pack),1,2.99,12/31/19 16:08,"779 4th St, New York City, NY 10001" +310869,AAA Batteries (4-pack),1,2.99,12/12/19 12:00,"182 11th St, Los Angeles, CA 90001" +310870,USB-C Charging Cable,1,11.95,12/04/19 09:51,"606 2nd St, Boston, MA 02215" +310871,AA Batteries (4-pack),1,3.84,12/02/19 23:28,"841 Jackson St, San Francisco, CA 94016" +310872,AA Batteries (4-pack),1,3.84,12/30/19 19:30,"205 North St, San Francisco, CA 94016" +310873,USB-C Charging Cable,1,11.95,12/06/19 18:23,"221 Walnut St, San Francisco, CA 94016" +310874,Lightning Charging Cable,1,14.95,12/10/19 15:56,"420 2nd St, Seattle, WA 98101" +310875,ThinkPad Laptop,1,999.99,12/06/19 19:23,"568 Cherry St, Dallas, TX 75001" +310876,Bose SoundSport Headphones,1,99.99,12/27/19 22:19,"841 Cherry St, New York City, NY 10001" +310877,Macbook Pro Laptop,1,1700,12/16/19 06:29,"535 Forest St, Atlanta, GA 30301" +310878,34in Ultrawide Monitor,1,379.99,12/14/19 15:41,"632 Elm St, New York City, NY 10001" +310878,Apple Airpods Headphones,1,150,12/14/19 15:41,"632 Elm St, New York City, NY 10001" +310879,Google Phone,1,600,12/16/19 20:59,"170 Meadow St, Boston, MA 02215" +310880,USB-C Charging Cable,2,11.95,12/13/19 19:28,"336 Walnut St, Austin, TX 73301" +310881,Apple Airpods Headphones,1,150,12/19/19 16:48,"845 Pine St, Boston, MA 02215" +310882,27in FHD Monitor,1,149.99,12/23/19 20:59,"910 Lake St, Los Angeles, CA 90001" +310883,USB-C Charging Cable,1,11.95,12/30/19 18:32,"173 Madison St, Seattle, WA 98101" +310884,Lightning Charging Cable,1,14.95,12/16/19 17:19,"326 Spruce St, San Francisco, CA 94016" +310885,Google Phone,1,600,12/26/19 13:39,"586 River St, San Francisco, CA 94016" +310885,USB-C Charging Cable,1,11.95,12/26/19 13:39,"586 River St, San Francisco, CA 94016" +310886,Lightning Charging Cable,1,14.95,12/31/19 15:53,"266 11th St, San Francisco, CA 94016" +310887,Vareebadd Phone,1,400,12/02/19 10:06,"266 Park St, San Francisco, CA 94016" +310888,Wired Headphones,1,11.99,12/03/19 09:36,"958 8th St, Atlanta, GA 30301" +310889,Lightning Charging Cable,1,14.95,12/17/19 13:49,"49 Meadow St, Los Angeles, CA 90001" +310890,Google Phone,1,600,12/12/19 14:42,"722 8th St, San Francisco, CA 94016" +310891,Wired Headphones,1,11.99,12/18/19 01:23,"69 Washington St, New York City, NY 10001" +310892,Lightning Charging Cable,1,14.95,12/04/19 16:18,"353 Church St, New York City, NY 10001" +310893,Lightning Charging Cable,1,14.95,12/04/19 22:18,"184 5th St, San Francisco, CA 94016" +310894,USB-C Charging Cable,1,11.95,12/10/19 20:47,"799 11th St, San Francisco, CA 94016" +310895,AA Batteries (4-pack),1,3.84,12/05/19 20:39,"656 Johnson St, New York City, NY 10001" +310896,Wired Headphones,1,11.99,12/27/19 18:53,"500 South St, Atlanta, GA 30301" +310897,AAA Batteries (4-pack),1,2.99,12/09/19 23:28,"304 Chestnut St, San Francisco, CA 94016" +310898,27in FHD Monitor,1,149.99,12/28/19 18:14,"475 Center St, Los Angeles, CA 90001" +310899,Wired Headphones,1,11.99,12/08/19 21:41,"5 Wilson St, Dallas, TX 75001" +310900,AAA Batteries (4-pack),2,2.99,12/09/19 14:01,"554 Lincoln St, San Francisco, CA 94016" +310901,iPhone,1,700,12/20/19 17:37,"446 Adams St, San Francisco, CA 94016" +310902,Apple Airpods Headphones,1,150,12/31/19 21:37,"741 South St, Seattle, WA 98101" +310903,34in Ultrawide Monitor,1,379.99,12/04/19 06:59,"640 Maple St, Los Angeles, CA 90001" +310904,Macbook Pro Laptop,1,1700,12/24/19 12:54,"705 Wilson St, Los Angeles, CA 90001" +310905,Google Phone,1,600,12/25/19 13:45,"277 6th St, Dallas, TX 75001" +310906,Wired Headphones,1,11.99,12/31/19 21:54,"893 7th St, New York City, NY 10001" +310907,USB-C Charging Cable,1,11.95,12/17/19 17:46,"916 Hickory St, Portland, OR 97035" +310908,Macbook Pro Laptop,1,1700,12/18/19 23:09,"913 South St, Dallas, TX 75001" +310909,27in FHD Monitor,1,149.99,12/21/19 21:32,"351 Adams St, Boston, MA 02215" +310910,Bose SoundSport Headphones,1,99.99,12/26/19 23:49,"70 5th St, San Francisco, CA 94016" +310910,AAA Batteries (4-pack),2,2.99,12/26/19 23:49,"70 5th St, San Francisco, CA 94016" +310911,Apple Airpods Headphones,1,150,12/20/19 09:25,"647 Lincoln St, Boston, MA 02215" +310912,Wired Headphones,1,11.99,12/05/19 17:24,"300 Cedar St, Portland, OR 97035" +310913,Bose SoundSport Headphones,1,99.99,12/11/19 21:46,"621 Highland St, San Francisco, CA 94016" +310914,Lightning Charging Cable,1,14.95,12/29/19 19:10,"73 Main St, Portland, OR 97035" +310915,AAA Batteries (4-pack),1,2.99,12/05/19 12:46,"808 10th St, Los Angeles, CA 90001" +310916,Apple Airpods Headphones,1,150,12/02/19 07:36,"618 Chestnut St, New York City, NY 10001" +310917,AA Batteries (4-pack),1,3.84,12/30/19 18:48,"814 Main St, San Francisco, CA 94016" +310918,USB-C Charging Cable,1,11.95,12/12/19 05:38,"806 Hickory St, Los Angeles, CA 90001" +310919,Apple Airpods Headphones,1,150,12/03/19 23:37,"844 Wilson St, San Francisco, CA 94016" +,,,,, +310920,Lightning Charging Cable,1,14.95,12/23/19 21:24,"189 12th St, Atlanta, GA 30301" +310921,Lightning Charging Cable,1,14.95,12/28/19 18:09,"654 12th St, New York City, NY 10001" +310922,Vareebadd Phone,1,400,12/30/19 15:46,"142 Park St, Los Angeles, CA 90001" +310923,Apple Airpods Headphones,1,150,12/30/19 15:58,"395 Lincoln St, Atlanta, GA 30301" +310924,Lightning Charging Cable,2,14.95,12/25/19 18:29,"375 Hill St, San Francisco, CA 94016" +310925,Apple Airpods Headphones,1,150,12/15/19 16:20,"306 Spruce St, Austin, TX 73301" +310925,AA Batteries (4-pack),2,3.84,12/15/19 16:20,"306 Spruce St, Austin, TX 73301" +310926,AA Batteries (4-pack),2,3.84,12/18/19 06:26,"160 13th St, San Francisco, CA 94016" +310927,Lightning Charging Cable,1,14.95,12/10/19 15:58,"889 Lake St, Portland, OR 97035" +310928,27in FHD Monitor,1,149.99,12/27/19 17:53,"611 Jackson St, Boston, MA 02215" +310929,AAA Batteries (4-pack),1,2.99,12/22/19 22:26,"93 Forest St, Seattle, WA 98101" +310930,AA Batteries (4-pack),1,3.84,12/25/19 20:03,"279 Lake St, New York City, NY 10001" +310931,USB-C Charging Cable,1,11.95,12/09/19 10:20,"3 Jefferson St, Boston, MA 02215" +310932,Apple Airpods Headphones,1,150,12/27/19 19:04,"61 Lincoln St, Dallas, TX 75001" +310933,Bose SoundSport Headphones,1,99.99,12/30/19 12:45,"150 Chestnut St, Boston, MA 02215" +310934,LG Dryer,1,600.0,12/12/19 11:53,"465 10th St, Boston, MA 02215" +310935,AAA Batteries (4-pack),1,2.99,12/06/19 15:56,"280 South St, Boston, MA 02215" +310936,Flatscreen TV,1,300,12/14/19 01:43,"29 Cherry St, Boston, MA 02215" +310937,Google Phone,1,600,12/01/19 11:27,"446 North St, Boston, MA 02215" +310938,USB-C Charging Cable,1,11.95,12/21/19 07:06,"182 Highland St, San Francisco, CA 94016" +310939,Lightning Charging Cable,1,14.95,12/12/19 08:22,"674 10th St, Boston, MA 02215" +310940,Apple Airpods Headphones,1,150,12/04/19 10:13,"439 Ridge St, Boston, MA 02215" +310941,Bose SoundSport Headphones,1,99.99,12/11/19 15:44,"82 West St, San Francisco, CA 94016" +310942,Macbook Pro Laptop,1,1700,12/10/19 00:31,"932 4th St, San Francisco, CA 94016" +310943,USB-C Charging Cable,1,11.95,12/15/19 08:17,"2 North St, Atlanta, GA 30301" +310944,27in FHD Monitor,1,149.99,12/01/19 15:23,"673 Elm St, New York City, NY 10001" +310945,Apple Airpods Headphones,1,150,12/24/19 11:46,"38 7th St, Dallas, TX 75001" +310946,Apple Airpods Headphones,1,150,12/16/19 18:53,"277 11th St, San Francisco, CA 94016" +310947,34in Ultrawide Monitor,1,379.99,12/29/19 18:42,"367 10th St, San Francisco, CA 94016" +310948,iPhone,1,700,12/04/19 19:57,"972 1st St, Portland, OR 97035" +310949,iPhone,1,700,12/05/19 11:25,"945 Cedar St, Los Angeles, CA 90001" +310950,AA Batteries (4-pack),1,3.84,12/07/19 21:52,"836 13th St, Los Angeles, CA 90001" +310951,Wired Headphones,1,11.99,12/03/19 17:24,"134 North St, Atlanta, GA 30301" +310952,AAA Batteries (4-pack),2,2.99,12/14/19 12:00,"482 Dogwood St, New York City, NY 10001" +310953,Apple Airpods Headphones,1,150,12/25/19 17:53,"858 Jackson St, San Francisco, CA 94016" +310954,Bose SoundSport Headphones,1,99.99,12/18/19 21:52,"604 Madison St, Portland, OR 97035" +310955,AA Batteries (4-pack),1,3.84,12/11/19 19:14,"178 Lake St, San Francisco, CA 94016" +310956,Vareebadd Phone,1,400,12/24/19 20:26,"985 Center St, New York City, NY 10001" +310956,Wired Headphones,2,11.99,12/24/19 20:26,"985 Center St, New York City, NY 10001" +310957,AAA Batteries (4-pack),1,2.99,12/10/19 17:25,"294 11th St, Portland, OR 97035" +310958,Lightning Charging Cable,1,14.95,12/23/19 15:16,"210 13th St, Seattle, WA 98101" +310959,Wired Headphones,1,11.99,12/28/19 13:55,"885 Pine St, San Francisco, CA 94016" +310960,Flatscreen TV,1,300,12/10/19 08:09,"817 North St, Los Angeles, CA 90001" +310961,Lightning Charging Cable,1,14.95,12/11/19 22:47,"860 14th St, San Francisco, CA 94016" +310962,Lightning Charging Cable,1,14.95,12/21/19 07:56,"603 Lake St, Seattle, WA 98101" +310963,Wired Headphones,1,11.99,12/13/19 22:02,"662 6th St, Atlanta, GA 30301" +310964,AA Batteries (4-pack),2,3.84,12/20/19 22:56,"431 Johnson St, New York City, NY 10001" +310965,27in 4K Gaming Monitor,1,389.99,12/11/19 11:47,"532 North St, San Francisco, CA 94016" +310966,20in Monitor,1,109.99,12/31/19 22:01,"348 Lincoln St, New York City, NY 10001" +310967,Wired Headphones,1,11.99,12/22/19 13:40,"39 Pine St, Austin, TX 73301" +310968,Apple Airpods Headphones,1,150,12/30/19 20:01,"414 South St, Austin, TX 73301" +310968,AAA Batteries (4-pack),1,2.99,12/30/19 20:01,"414 South St, Austin, TX 73301" +310969,LG Dryer,1,600.0,12/13/19 14:27,"863 Walnut St, Seattle, WA 98101" +310970,Wired Headphones,1,11.99,12/28/19 14:59,"581 9th St, Los Angeles, CA 90001" +310971,USB-C Charging Cable,1,11.95,12/15/19 18:42,"971 Maple St, Atlanta, GA 30301" +310972,Wired Headphones,1,11.99,12/19/19 12:59,"217 2nd St, Los Angeles, CA 90001" +310973,AAA Batteries (4-pack),1,2.99,12/14/19 09:53,"462 Ridge St, Boston, MA 02215" +310974,USB-C Charging Cable,1,11.95,12/20/19 10:33,"502 Forest St, San Francisco, CA 94016" +310975,AA Batteries (4-pack),2,3.84,12/21/19 12:36,"629 Cherry St, Atlanta, GA 30301" +310976,34in Ultrawide Monitor,1,379.99,12/06/19 10:55,"449 14th St, Los Angeles, CA 90001" +310977,Apple Airpods Headphones,1,150,12/26/19 17:45,"612 Hill St, Austin, TX 73301" +310978,iPhone,1,700,12/14/19 09:25,"530 Lincoln St, New York City, NY 10001" +310979,Apple Airpods Headphones,1,150,12/13/19 10:26,"659 Dogwood St, Austin, TX 73301" +310980,AA Batteries (4-pack),2,3.84,12/18/19 21:37,"296 Cedar St, Austin, TX 73301" +310981,USB-C Charging Cable,1,11.95,12/20/19 10:55,"8 9th St, San Francisco, CA 94016" +310982,USB-C Charging Cable,1,11.95,12/24/19 04:12,"325 6th St, Los Angeles, CA 90001" +310982,Apple Airpods Headphones,1,150,12/24/19 04:12,"325 6th St, Los Angeles, CA 90001" +310983,27in FHD Monitor,1,149.99,12/20/19 09:54,"318 Lincoln St, New York City, NY 10001" +310984,AA Batteries (4-pack),1,3.84,12/01/19 15:17,"532 4th St, Dallas, TX 75001" +310985,Lightning Charging Cable,1,14.95,12/28/19 07:58,"656 Wilson St, New York City, NY 10001" +310986,27in FHD Monitor,1,149.99,12/17/19 08:55,"139 River St, Los Angeles, CA 90001" +310987,iPhone,1,700,12/28/19 13:21,"544 Jefferson St, Boston, MA 02215" +310988,Bose SoundSport Headphones,1,99.99,12/25/19 19:40,"290 Cherry St, Boston, MA 02215" +310989,AA Batteries (4-pack),2,3.84,12/06/19 08:11,"777 14th St, San Francisco, CA 94016" +310990,Macbook Pro Laptop,1,1700,12/03/19 08:59,"162 6th St, Boston, MA 02215" +310991,ThinkPad Laptop,1,999.99,12/27/19 18:32,"877 Church St, San Francisco, CA 94016" +310992,Wired Headphones,1,11.99,12/05/19 20:16,"777 Madison St, Los Angeles, CA 90001" +310993,27in 4K Gaming Monitor,1,389.99,12/01/19 12:06,"98 1st St, Dallas, TX 75001" +310994,AA Batteries (4-pack),1,3.84,12/03/19 08:00,"825 Hill St, Los Angeles, CA 90001" +310995,Wired Headphones,1,11.99,12/22/19 16:44,"734 12th St, San Francisco, CA 94016" +310996,Lightning Charging Cable,1,14.95,12/19/19 13:15,"637 Forest St, San Francisco, CA 94016" +310997,Lightning Charging Cable,1,14.95,12/02/19 18:23,"74 13th St, San Francisco, CA 94016" +310998,Apple Airpods Headphones,1,150,12/12/19 17:51,"185 1st St, Austin, TX 73301" +310999,34in Ultrawide Monitor,1,379.99,12/31/19 20:13,"719 Park St, Austin, TX 73301" +311000,AAA Batteries (4-pack),1,2.99,12/20/19 14:34,"241 Forest St, Seattle, WA 98101" +311001,AAA Batteries (4-pack),1,2.99,12/03/19 19:30,"757 Cherry St, San Francisco, CA 94016" +311002,AA Batteries (4-pack),2,3.84,12/18/19 16:20,"308 Chestnut St, Boston, MA 02215" +311003,Lightning Charging Cable,1,14.95,12/29/19 11:49,"818 Wilson St, San Francisco, CA 94016" +311004,Lightning Charging Cable,1,14.95,12/21/19 22:29,"892 2nd St, Los Angeles, CA 90001" +311005,AAA Batteries (4-pack),1,2.99,12/04/19 14:46,"21 Sunset St, Seattle, WA 98101" +311006,USB-C Charging Cable,1,11.95,12/17/19 21:32,"833 8th St, Portland, OR 97035" +311007,AAA Batteries (4-pack),1,2.99,12/20/19 19:59,"791 Willow St, New York City, NY 10001" +311008,iPhone,1,700,12/02/19 16:23,"242 Willow St, Portland, OR 97035" +311009,Flatscreen TV,1,300,12/06/19 12:14,"918 1st St, Dallas, TX 75001" +311010,Wired Headphones,1,11.99,12/12/19 18:46,"253 6th St, Portland, OR 97035" +311011,Google Phone,1,600,12/22/19 12:57,"17 South St, Portland, OR 97035" +311012,Wired Headphones,1,11.99,12/16/19 13:37,"463 Lake St, Boston, MA 02215" +311013,ThinkPad Laptop,1,999.99,12/05/19 10:54,"208 2nd St, San Francisco, CA 94016" +311014,Wired Headphones,1,11.99,12/18/19 17:41,"750 Jefferson St, San Francisco, CA 94016" +311015,Apple Airpods Headphones,1,150,12/19/19 20:25,"723 Meadow St, New York City, NY 10001" +311016,USB-C Charging Cable,1,11.95,12/28/19 00:32,"738 Center St, San Francisco, CA 94016" +311017,iPhone,1,700,12/17/19 09:27,"607 Hickory St, Boston, MA 02215" +311018,27in FHD Monitor,1,149.99,12/01/19 21:22,"421 Maple St, Austin, TX 73301" +311019,USB-C Charging Cable,1,11.95,12/30/19 14:28,"924 Cherry St, New York City, NY 10001" +311020,Apple Airpods Headphones,1,150,12/26/19 17:56,"955 Highland St, Los Angeles, CA 90001" +311021,27in 4K Gaming Monitor,1,389.99,12/14/19 10:33,"128 West St, Seattle, WA 98101" +311021,27in FHD Monitor,1,149.99,12/14/19 10:33,"128 West St, Seattle, WA 98101" +311022,Wired Headphones,1,11.99,12/31/19 13:00,"267 Hickory St, New York City, NY 10001" +311023,Bose SoundSport Headphones,1,99.99,12/02/19 12:56,"853 10th St, Portland, OR 97035" +311024,27in FHD Monitor,1,149.99,12/21/19 21:11,"511 Lake St, New York City, NY 10001" +311025,AAA Batteries (4-pack),2,2.99,12/27/19 10:10,"702 River St, San Francisco, CA 94016" +311026,27in FHD Monitor,1,149.99,12/03/19 04:46,"426 11th St, Seattle, WA 98101" +311027,Wired Headphones,1,11.99,12/26/19 07:34,"289 Spruce St, San Francisco, CA 94016" +311028,Google Phone,1,600,12/17/19 15:18,"869 Cherry St, Seattle, WA 98101" +311029,34in Ultrawide Monitor,1,379.99,12/04/19 16:37,"728 Meadow St, New York City, NY 10001" +311030,AA Batteries (4-pack),2,3.84,12/02/19 23:09,"812 5th St, Los Angeles, CA 90001" +311031,34in Ultrawide Monitor,1,379.99,12/28/19 13:34,"388 Pine St, Dallas, TX 75001" +311032,AAA Batteries (4-pack),2,2.99,12/31/19 08:01,"303 Center St, Dallas, TX 75001" +311033,AA Batteries (4-pack),1,3.84,12/04/19 16:50,"855 Meadow St, Dallas, TX 75001" +311034,Apple Airpods Headphones,1,150,12/03/19 08:08,"616 Lakeview St, Portland, OR 97035" +311035,Wired Headphones,1,11.99,12/02/19 09:54,"675 Elm St, Seattle, WA 98101" +311036,Wired Headphones,1,11.99,12/26/19 22:04,"645 Chestnut St, Atlanta, GA 30301" +311037,Wired Headphones,1,11.99,12/30/19 22:43,"891 12th St, San Francisco, CA 94016" +311038,Wired Headphones,1,11.99,12/17/19 09:30,"619 Lakeview St, Los Angeles, CA 90001" +311039,AA Batteries (4-pack),5,3.84,12/19/19 20:57,"649 Pine St, Dallas, TX 75001" +311040,Wired Headphones,1,11.99,12/25/19 11:54,"265 12th St, Seattle, WA 98101" +311041,Lightning Charging Cable,1,14.95,12/30/19 20:51,"966 12th St, Atlanta, GA 30301" +311042,Wired Headphones,1,11.99,12/28/19 22:32,"984 Johnson St, San Francisco, CA 94016" +311043,Macbook Pro Laptop,1,1700,12/26/19 16:36,"756 Ridge St, Seattle, WA 98101" +311044,Google Phone,1,600,12/18/19 15:03,"174 12th St, Los Angeles, CA 90001" +311045,Bose SoundSport Headphones,1,99.99,12/09/19 16:08,"807 Meadow St, San Francisco, CA 94016" +311046,Lightning Charging Cable,1,14.95,12/06/19 06:29,"642 7th St, Atlanta, GA 30301" +311047,Wired Headphones,1,11.99,12/12/19 17:33,"363 Church St, Atlanta, GA 30301" +311048,Lightning Charging Cable,1,14.95,12/24/19 18:21,"321 Chestnut St, San Francisco, CA 94016" +311049,Bose SoundSport Headphones,1,99.99,12/04/19 20:00,"185 Willow St, Dallas, TX 75001" +311050,27in 4K Gaming Monitor,1,389.99,12/14/19 14:48,"100 Sunset St, San Francisco, CA 94016" +,,,,, +311051,Flatscreen TV,1,300,12/12/19 16:38,"329 Church St, Los Angeles, CA 90001" +311052,AAA Batteries (4-pack),1,2.99,12/09/19 21:52,"965 4th St, New York City, NY 10001" +311053,Lightning Charging Cable,2,14.95,12/25/19 20:10,"30 Center St, Boston, MA 02215" +311054,20in Monitor,1,109.99,12/29/19 21:57,"351 Meadow St, Boston, MA 02215" +311055,27in 4K Gaming Monitor,1,389.99,12/19/19 12:08,"332 Cherry St, New York City, NY 10001" +311056,AAA Batteries (4-pack),2,2.99,12/29/19 11:58,"908 Center St, San Francisco, CA 94016" +311057,AA Batteries (4-pack),2,3.84,12/07/19 12:15,"401 Main St, New York City, NY 10001" +311058,AAA Batteries (4-pack),1,2.99,12/07/19 11:23,"480 Cedar St, Boston, MA 02215" +311058,USB-C Charging Cable,1,11.95,12/07/19 11:23,"480 Cedar St, Boston, MA 02215" +311059,Lightning Charging Cable,1,14.95,12/17/19 14:18,"24 Meadow St, Seattle, WA 98101" +311060,AA Batteries (4-pack),1,3.84,12/22/19 00:04,"25 Madison St, San Francisco, CA 94016" +311061,Wired Headphones,1,11.99,12/26/19 13:32,"937 Johnson St, New York City, NY 10001" +311062,AA Batteries (4-pack),2,3.84,12/05/19 18:22,"146 Pine St, Austin, TX 73301" +311063,34in Ultrawide Monitor,1,379.99,12/29/19 16:30,"544 Wilson St, San Francisco, CA 94016" +311064,20in Monitor,1,109.99,12/25/19 04:33,"819 South St, Seattle, WA 98101" +311065,34in Ultrawide Monitor,1,379.99,12/23/19 17:06,"550 1st St, San Francisco, CA 94016" +311066,Wired Headphones,1,11.99,12/06/19 18:23,"598 14th St, Los Angeles, CA 90001" +311067,Lightning Charging Cable,1,14.95,12/15/19 09:07,"974 2nd St, Atlanta, GA 30301" +311068,Flatscreen TV,1,300,12/02/19 17:58,"362 9th St, New York City, NY 10001" +311069,iPhone,1,700,12/22/19 08:28,"635 Madison St, Dallas, TX 75001" +311070,USB-C Charging Cable,1,11.95,12/05/19 19:20,"395 River St, New York City, NY 10001" +311071,Apple Airpods Headphones,1,150,12/27/19 18:13,"687 Sunset St, San Francisco, CA 94016" +311071,AA Batteries (4-pack),1,3.84,12/27/19 18:13,"687 Sunset St, San Francisco, CA 94016" +311072,USB-C Charging Cable,1,11.95,12/21/19 10:03,"191 6th St, Dallas, TX 75001" +311073,USB-C Charging Cable,2,11.95,12/13/19 20:57,"48 South St, Seattle, WA 98101" +311074,USB-C Charging Cable,1,11.95,12/24/19 19:40,"123 Adams St, Austin, TX 73301" +311075,Apple Airpods Headphones,1,150,12/05/19 20:34,"466 Dogwood St, Portland, OR 97035" +311076,Lightning Charging Cable,1,14.95,12/29/19 12:16,"191 Sunset St, Portland, OR 97035" +311077,Apple Airpods Headphones,1,150,12/11/19 15:44,"802 North St, Los Angeles, CA 90001" +311078,Lightning Charging Cable,1,14.95,12/16/19 06:21,"707 Willow St, Atlanta, GA 30301" +311079,Wired Headphones,1,11.99,12/28/19 16:09,"475 6th St, San Francisco, CA 94016" +311080,Apple Airpods Headphones,1,150,12/17/19 18:10,"363 Sunset St, San Francisco, CA 94016" +311081,Apple Airpods Headphones,1,150,12/25/19 22:14,"581 Madison St, New York City, NY 10001" +311082,Apple Airpods Headphones,1,150,12/18/19 18:32,"93 South St, San Francisco, CA 94016" +311083,Vareebadd Phone,1,400,12/31/19 21:58,"864 Adams St, New York City, NY 10001" +311083,USB-C Charging Cable,1,11.95,12/31/19 21:58,"864 Adams St, New York City, NY 10001" +311084,Bose SoundSport Headphones,1,99.99,12/25/19 12:56,"543 North St, Los Angeles, CA 90001" +311085,USB-C Charging Cable,1,11.95,12/24/19 21:06,"744 Park St, San Francisco, CA 94016" +311086,Lightning Charging Cable,1,14.95,12/04/19 08:14,"802 Maple St, Portland, OR 97035" +311087,Bose SoundSport Headphones,1,99.99,12/02/19 17:48,"938 Washington St, New York City, NY 10001" +311088,Macbook Pro Laptop,1,1700,12/10/19 21:56,"923 Lincoln St, Atlanta, GA 30301" +311089,34in Ultrawide Monitor,1,379.99,12/12/19 14:28,"940 Sunset St, New York City, NY 10001" +311090,27in FHD Monitor,1,149.99,12/02/19 12:50,"883 West St, San Francisco, CA 94016" +311091,Apple Airpods Headphones,1,150,12/06/19 23:47,"545 13th St, Boston, MA 02215" +311092,27in FHD Monitor,1,149.99,12/29/19 17:54,"52 Ridge St, Seattle, WA 98101" +311093,Apple Airpods Headphones,1,150,12/27/19 12:27,"970 Meadow St, Portland, OR 97035" +311094,AA Batteries (4-pack),1,3.84,12/28/19 21:51,"713 Spruce St, New York City, NY 10001" +311095,USB-C Charging Cable,1,11.95,12/06/19 11:08,"265 5th St, Austin, TX 73301" +311096,34in Ultrawide Monitor,1,379.99,12/02/19 17:19,"257 4th St, Dallas, TX 75001" +311097,AAA Batteries (4-pack),3,2.99,12/15/19 09:37,"339 Maple St, Boston, MA 02215" +311098,27in 4K Gaming Monitor,1,389.99,12/24/19 21:00,"891 Ridge St, Portland, ME 04101" +311099,Lightning Charging Cable,1,14.95,12/25/19 16:24,"109 Church St, Atlanta, GA 30301" +311100,Apple Airpods Headphones,1,150,12/13/19 19:43,"994 Meadow St, Dallas, TX 75001" +311101,Lightning Charging Cable,1,14.95,12/03/19 22:36,"123 Spruce St, Dallas, TX 75001" +311102,USB-C Charging Cable,1,11.95,12/02/19 21:58,"313 Hill St, San Francisco, CA 94016" +311103,Lightning Charging Cable,1,14.95,12/13/19 07:40,"233 Washington St, New York City, NY 10001" +311104,Apple Airpods Headphones,1,150,12/25/19 21:54,"682 South St, Atlanta, GA 30301" +311105,AAA Batteries (4-pack),1,2.99,12/07/19 14:54,"449 Jefferson St, San Francisco, CA 94016" +311106,Wired Headphones,1,11.99,12/07/19 09:57,"170 Lakeview St, Atlanta, GA 30301" +311107,ThinkPad Laptop,1,999.99,12/14/19 11:24,"942 Adams St, Austin, TX 73301" +311108,Bose SoundSport Headphones,1,99.99,12/22/19 14:42,"75 Pine St, Los Angeles, CA 90001" +311109,Lightning Charging Cable,1,14.95,12/15/19 10:29,"631 River St, Dallas, TX 75001" +311110,Wired Headphones,1,11.99,12/23/19 20:39,"366 Lakeview St, Atlanta, GA 30301" +311111,Flatscreen TV,1,300,12/25/19 21:24,"169 North St, Los Angeles, CA 90001" +311112,AA Batteries (4-pack),1,3.84,12/22/19 20:05,"330 Cedar St, Dallas, TX 75001" +311113,Vareebadd Phone,1,400,12/12/19 20:27,"803 Hill St, San Francisco, CA 94016" +311114,27in FHD Monitor,1,149.99,12/27/19 09:10,"62 Hickory St, New York City, NY 10001" +311115,Lightning Charging Cable,1,14.95,12/30/19 17:45,"178 Chestnut St, San Francisco, CA 94016" +311116,Wired Headphones,2,11.99,12/10/19 13:21,"474 Church St, San Francisco, CA 94016" +311117,USB-C Charging Cable,1,11.95,12/06/19 08:07,"59 River St, Boston, MA 02215" +311118,Wired Headphones,1,11.99,12/26/19 10:26,"150 Chestnut St, New York City, NY 10001" +311119,iPhone,1,700,12/03/19 21:26,"829 Hickory St, Los Angeles, CA 90001" +311120,Lightning Charging Cable,1,14.95,12/23/19 19:38,"852 Lake St, Los Angeles, CA 90001" +311121,Lightning Charging Cable,1,14.95,12/02/19 16:10,"268 13th St, Boston, MA 02215" +311122,34in Ultrawide Monitor,1,379.99,12/30/19 15:07,"623 12th St, Boston, MA 02215" +311123,27in FHD Monitor,1,149.99,12/06/19 21:14,"112 West St, Dallas, TX 75001" +311124,Flatscreen TV,1,300,12/29/19 07:56,"158 10th St, San Francisco, CA 94016" +311125,Bose SoundSport Headphones,1,99.99,12/23/19 18:25,"11 Walnut St, San Francisco, CA 94016" +311126,USB-C Charging Cable,1,11.95,12/25/19 14:27,"811 Pine St, San Francisco, CA 94016" +311127,Flatscreen TV,1,300,12/13/19 14:28,"772 Ridge St, San Francisco, CA 94016" +311128,AAA Batteries (4-pack),1,2.99,12/05/19 13:17,"180 11th St, San Francisco, CA 94016" +311129,Apple Airpods Headphones,1,150,12/16/19 21:42,"839 West St, Boston, MA 02215" +311130,iPhone,1,700,12/25/19 10:48,"59 Jackson St, New York City, NY 10001" +311130,Lightning Charging Cable,1,14.95,12/25/19 10:48,"59 Jackson St, New York City, NY 10001" +311131,iPhone,1,700,12/09/19 19:28,"854 10th St, San Francisco, CA 94016" +311131,Lightning Charging Cable,1,14.95,12/09/19 19:28,"854 10th St, San Francisco, CA 94016" +311132,Vareebadd Phone,1,400,12/27/19 23:41,"807 Spruce St, Los Angeles, CA 90001" +311133,Vareebadd Phone,1,400,12/15/19 23:24,"349 Center St, Atlanta, GA 30301" +311134,USB-C Charging Cable,1,11.95,12/08/19 11:28,"184 Sunset St, Los Angeles, CA 90001" +311135,USB-C Charging Cable,1,11.95,12/12/19 16:19,"479 Chestnut St, Los Angeles, CA 90001" +311136,iPhone,1,700,12/05/19 18:23,"295 Sunset St, San Francisco, CA 94016" +311137,Google Phone,1,600,12/20/19 15:14,"910 Ridge St, Los Angeles, CA 90001" +311138,Wired Headphones,1,11.99,12/14/19 13:43,"578 West St, Seattle, WA 98101" +311139,ThinkPad Laptop,1,999.99,12/18/19 07:12,"527 River St, Austin, TX 73301" +311140,iPhone,1,700,12/10/19 20:48,"891 North St, San Francisco, CA 94016" +311141,AA Batteries (4-pack),1,3.84,12/12/19 09:20,"913 Maple St, Portland, OR 97035" +311142,34in Ultrawide Monitor,1,379.99,12/12/19 01:11,"57 8th St, Los Angeles, CA 90001" +311143,27in 4K Gaming Monitor,1,389.99,12/02/19 10:15,"913 Church St, San Francisco, CA 94016" +311144,Flatscreen TV,1,300,12/23/19 12:34,"37 7th St, Atlanta, GA 30301" +311145,USB-C Charging Cable,1,11.95,12/15/19 22:36,"620 Hill St, Los Angeles, CA 90001" +311146,27in 4K Gaming Monitor,1,389.99,12/15/19 10:15,"54 Cedar St, San Francisco, CA 94016" +311147,Bose SoundSport Headphones,1,99.99,12/10/19 07:52,"207 Hill St, Atlanta, GA 30301" +311148,Flatscreen TV,1,300,12/16/19 21:48,"365 Cedar St, San Francisco, CA 94016" +311149,Wired Headphones,1,11.99,12/23/19 19:26,"498 Willow St, Dallas, TX 75001" +311150,Bose SoundSport Headphones,1,99.99,12/11/19 16:25,"904 Jefferson St, San Francisco, CA 94016" +311151,USB-C Charging Cable,1,11.95,12/05/19 11:02,"509 Chestnut St, Seattle, WA 98101" +311152,Bose SoundSport Headphones,1,99.99,12/29/19 06:12,"454 Madison St, Boston, MA 02215" +311153,USB-C Charging Cable,1,11.95,12/30/19 11:10,"996 8th St, Portland, ME 04101" +311154,AAA Batteries (4-pack),2,2.99,12/14/19 07:16,"133 Church St, Portland, OR 97035" +311155,Bose SoundSport Headphones,1,99.99,12/22/19 18:15,"902 Spruce St, Los Angeles, CA 90001" +311156,Wired Headphones,1,11.99,12/21/19 12:47,"839 Spruce St, Portland, OR 97035" +311157,Google Phone,1,600,12/19/19 19:01,"617 Jackson St, Boston, MA 02215" +311158,USB-C Charging Cable,1,11.95,12/29/19 20:53,"207 11th St, New York City, NY 10001" +311159,Apple Airpods Headphones,1,150,12/10/19 14:01,"828 Jackson St, New York City, NY 10001" +311160,Bose SoundSport Headphones,1,99.99,12/02/19 13:17,"642 Ridge St, San Francisco, CA 94016" +311161,Bose SoundSport Headphones,1,99.99,12/17/19 23:25,"416 Hill St, Los Angeles, CA 90001" +311162,Lightning Charging Cable,1,14.95,12/16/19 20:38,"868 Sunset St, San Francisco, CA 94016" +311163,AA Batteries (4-pack),1,3.84,12/28/19 16:21,"463 2nd St, Seattle, WA 98101" +311164,USB-C Charging Cable,1,11.95,12/16/19 17:03,"38 Willow St, San Francisco, CA 94016" +311165,Lightning Charging Cable,1,14.95,12/22/19 12:04,"460 Highland St, Dallas, TX 75001" +311166,AA Batteries (4-pack),1,3.84,12/01/19 10:15,"697 Jefferson St, San Francisco, CA 94016" +311167,34in Ultrawide Monitor,2,379.99,12/28/19 10:29,"454 Maple St, Portland, OR 97035" +311168,AA Batteries (4-pack),1,3.84,12/26/19 19:34,"129 14th St, Los Angeles, CA 90001" +311169,Lightning Charging Cable,3,14.95,12/16/19 23:10,"949 Church St, Los Angeles, CA 90001" +311170,AAA Batteries (4-pack),1,2.99,12/18/19 21:37,"174 6th St, San Francisco, CA 94016" +311171,AA Batteries (4-pack),2,3.84,12/29/19 14:21,"573 6th St, Boston, MA 02215" +311172,Google Phone,1,600,12/30/19 09:23,"191 Elm St, New York City, NY 10001" +311173,Bose SoundSport Headphones,1,99.99,12/31/19 01:22,"146 2nd St, New York City, NY 10001" +311174,AAA Batteries (4-pack),1,2.99,12/10/19 18:47,"686 Spruce St, New York City, NY 10001" +311175,27in 4K Gaming Monitor,1,389.99,12/25/19 22:09,"541 North St, New York City, NY 10001" +311176,Bose SoundSport Headphones,1,99.99,12/23/19 13:54,"635 South St, Los Angeles, CA 90001" +311176,AA Batteries (4-pack),1,3.84,12/23/19 13:54,"635 South St, Los Angeles, CA 90001" +311177,20in Monitor,1,109.99,12/30/19 00:33,"214 Washington St, Portland, OR 97035" +311178,Bose SoundSport Headphones,1,99.99,12/13/19 06:23,"454 4th St, New York City, NY 10001" +311179,Apple Airpods Headphones,1,150,12/25/19 12:43,"172 Forest St, Los Angeles, CA 90001" +311180,AAA Batteries (4-pack),1,2.99,12/30/19 19:24,"808 Maple St, San Francisco, CA 94016" +311181,Wired Headphones,1,11.99,12/07/19 15:37,"80 Meadow St, New York City, NY 10001" +311182,Lightning Charging Cable,1,14.95,12/03/19 17:55,"226 Lincoln St, Portland, OR 97035" +311183,Flatscreen TV,1,300,12/28/19 08:28,"45 North St, San Francisco, CA 94016" +311184,Apple Airpods Headphones,1,150,12/03/19 14:53,"372 Pine St, New York City, NY 10001" +311185,Wired Headphones,3,11.99,12/13/19 19:12,"628 Dogwood St, Boston, MA 02215" +311186,AAA Batteries (4-pack),1,2.99,12/28/19 22:50,"387 Hill St, Boston, MA 02215" +311187,27in 4K Gaming Monitor,1,389.99,12/15/19 21:24,"519 Pine St, Los Angeles, CA 90001" +311188,20in Monitor,1,109.99,12/26/19 16:53,"859 12th St, Dallas, TX 75001" +311189,USB-C Charging Cable,1,11.95,12/02/19 15:56,"203 13th St, Los Angeles, CA 90001" +311190,USB-C Charging Cable,1,11.95,12/22/19 06:33,"551 11th St, Atlanta, GA 30301" +311191,AAA Batteries (4-pack),4,2.99,12/06/19 13:09,"436 Hill St, Dallas, TX 75001" +311192,Apple Airpods Headphones,1,150,12/02/19 00:16,"489 Maple St, Los Angeles, CA 90001" +311193,Wired Headphones,1,11.99,12/10/19 10:03,"38 Spruce St, Los Angeles, CA 90001" +311194,Wired Headphones,1,11.99,12/25/19 11:06,"95 North St, Los Angeles, CA 90001" +311195,Wired Headphones,1,11.99,12/11/19 11:50,"178 Wilson St, Los Angeles, CA 90001" +311196,ThinkPad Laptop,1,999.99,12/12/19 00:48,"114 Hickory St, Seattle, WA 98101" +311197,AA Batteries (4-pack),1,3.84,12/30/19 21:36,"385 Cedar St, Austin, TX 73301" +311198,iPhone,1,700,12/28/19 11:37,"481 5th St, Los Angeles, CA 90001" +311199,Wired Headphones,1,11.99,12/21/19 10:41,"702 Ridge St, Seattle, WA 98101" +311200,Bose SoundSport Headphones,1,99.99,12/18/19 20:56,"497 Johnson St, Portland, OR 97035" +311201,Apple Airpods Headphones,1,150,12/01/19 10:17,"608 10th St, San Francisco, CA 94016" +311202,AA Batteries (4-pack),1,3.84,12/28/19 16:50,"874 Adams St, San Francisco, CA 94016" +311203,AA Batteries (4-pack),1,3.84,12/23/19 10:57,"885 Park St, Austin, TX 73301" +311204,34in Ultrawide Monitor,1,379.99,12/29/19 20:46,"35 Adams St, San Francisco, CA 94016" +311205,AA Batteries (4-pack),1,3.84,12/12/19 20:05,"361 Church St, Boston, MA 02215" +311206,34in Ultrawide Monitor,1,379.99,12/13/19 18:23,"732 North St, Austin, TX 73301" +311207,iPhone,1,700,12/16/19 15:38,"279 Lincoln St, Dallas, TX 75001" +311208,AA Batteries (4-pack),2,3.84,12/17/19 10:17,"698 Walnut St, San Francisco, CA 94016" +311209,Google Phone,1,600,12/05/19 21:45,"751 Meadow St, Austin, TX 73301" +311210,Lightning Charging Cable,1,14.95,12/10/19 20:53,"195 Willow St, San Francisco, CA 94016" +311211,Flatscreen TV,1,300,12/31/19 20:02,"119 Center St, Portland, OR 97035" +311212,27in 4K Gaming Monitor,1,389.99,12/16/19 11:13,"812 Forest St, Los Angeles, CA 90001" +311213,Lightning Charging Cable,1,14.95,12/18/19 23:54,"714 9th St, San Francisco, CA 94016" +311214,USB-C Charging Cable,1,11.95,12/15/19 00:37,"279 Maple St, New York City, NY 10001" +311214,Flatscreen TV,1,300,12/15/19 00:37,"279 Maple St, New York City, NY 10001" +311215,Flatscreen TV,1,300,12/05/19 06:33,"534 Elm St, New York City, NY 10001" +311216,Bose SoundSport Headphones,1,99.99,12/31/19 11:44,"631 Sunset St, Portland, ME 04101" +311217,Lightning Charging Cable,1,14.95,12/21/19 05:51,"615 Highland St, Dallas, TX 75001" +311218,AA Batteries (4-pack),1,3.84,12/20/19 07:01,"266 Adams St, New York City, NY 10001" +311219,27in 4K Gaming Monitor,1,389.99,12/10/19 19:57,"504 Madison St, New York City, NY 10001" +311220,Apple Airpods Headphones,1,150,12/11/19 15:27,"357 1st St, San Francisco, CA 94016" +311221,Wired Headphones,1,11.99,12/07/19 17:57,"484 Jackson St, Atlanta, GA 30301" +311222,AAA Batteries (4-pack),3,2.99,12/04/19 14:09,"164 Dogwood St, Dallas, TX 75001" +311223,AA Batteries (4-pack),2,3.84,12/16/19 22:03,"64 Cherry St, San Francisco, CA 94016" +311224,Wired Headphones,1,11.99,12/17/19 18:42,"913 10th St, New York City, NY 10001" +311225,AA Batteries (4-pack),1,3.84,12/07/19 11:10,"897 12th St, Seattle, WA 98101" +311226,USB-C Charging Cable,1,11.95,12/06/19 12:40,"821 North St, Dallas, TX 75001" +311227,AAA Batteries (4-pack),1,2.99,12/27/19 23:19,"858 Church St, San Francisco, CA 94016" +311228,34in Ultrawide Monitor,1,379.99,12/24/19 11:58,"206 Cedar St, Seattle, WA 98101" +311229,Apple Airpods Headphones,1,150,12/10/19 06:05,"284 Lincoln St, Los Angeles, CA 90001" +311230,27in 4K Gaming Monitor,1,389.99,12/24/19 21:36,"568 Dogwood St, Atlanta, GA 30301" +311231,Apple Airpods Headphones,1,150,12/23/19 11:41,"761 4th St, San Francisco, CA 94016" +311232,AAA Batteries (4-pack),2,2.99,12/05/19 21:34,"146 Chestnut St, San Francisco, CA 94016" +311232,LG Washing Machine,1,600.0,12/05/19 21:34,"146 Chestnut St, San Francisco, CA 94016" +311233,27in 4K Gaming Monitor,1,389.99,12/12/19 05:12,"223 South St, Austin, TX 73301" +311234,Lightning Charging Cable,1,14.95,12/09/19 20:10,"195 14th St, Austin, TX 73301" +311235,Google Phone,1,600,12/10/19 10:22,"476 Park St, San Francisco, CA 94016" +311235,USB-C Charging Cable,1,11.95,12/10/19 10:22,"476 Park St, San Francisco, CA 94016" +311236,Lightning Charging Cable,1,14.95,12/19/19 12:06,"887 Washington St, San Francisco, CA 94016" +311236,Bose SoundSport Headphones,1,99.99,12/19/19 12:06,"887 Washington St, San Francisco, CA 94016" +311237,AA Batteries (4-pack),1,3.84,12/10/19 10:41,"993 Jackson St, Los Angeles, CA 90001" +311238,Apple Airpods Headphones,1,150,12/02/19 08:42,"98 9th St, Seattle, WA 98101" +311239,Apple Airpods Headphones,1,150,12/14/19 12:08,"892 Center St, Boston, MA 02215" +311240,Wired Headphones,1,11.99,12/09/19 19:49,"311 12th St, New York City, NY 10001" +311241,Wired Headphones,1,11.99,12/25/19 14:40,"931 North St, Atlanta, GA 30301" +311242,Lightning Charging Cable,1,14.95,12/29/19 12:29,"258 River St, Dallas, TX 75001" +311243,Lightning Charging Cable,1,14.95,12/23/19 17:32,"761 Center St, Dallas, TX 75001" +311244,27in 4K Gaming Monitor,1,389.99,12/20/19 06:01,"974 Lake St, Los Angeles, CA 90001" +311245,Lightning Charging Cable,1,14.95,12/13/19 17:03,"902 11th St, Los Angeles, CA 90001" +311246,AAA Batteries (4-pack),2,2.99,12/08/19 20:47,"865 Meadow St, Atlanta, GA 30301" +311247,27in FHD Monitor,1,149.99,12/09/19 09:44,"505 Hill St, San Francisco, CA 94016" +311248,Lightning Charging Cable,1,14.95,12/01/19 12:15,"649 Walnut St, Los Angeles, CA 90001" +311249,AAA Batteries (4-pack),1,2.99,12/22/19 20:41,"783 Chestnut St, New York City, NY 10001" +311250,USB-C Charging Cable,1,11.95,12/14/19 00:09,"854 Walnut St, San Francisco, CA 94016" +311250,27in 4K Gaming Monitor,1,389.99,12/14/19 00:09,"854 Walnut St, San Francisco, CA 94016" +311251,Google Phone,1,600,12/08/19 21:10,"716 Jefferson St, San Francisco, CA 94016" +311252,AA Batteries (4-pack),2,3.84,12/17/19 14:47,"844 Washington St, New York City, NY 10001" +311253,Apple Airpods Headphones,1,150,12/21/19 14:55,"62 Lincoln St, New York City, NY 10001" +311254,27in FHD Monitor,1,149.99,12/24/19 17:22,"845 5th St, Los Angeles, CA 90001" +311255,27in 4K Gaming Monitor,1,389.99,12/26/19 10:03,"759 11th St, Seattle, WA 98101" +311256,Lightning Charging Cable,1,14.95,12/19/19 22:00,"528 Jefferson St, Los Angeles, CA 90001" +311257,Bose SoundSport Headphones,1,99.99,12/06/19 11:05,"539 9th St, Austin, TX 73301" +311258,34in Ultrawide Monitor,1,379.99,12/16/19 08:03,"523 Adams St, Boston, MA 02215" +311259,iPhone,1,700,12/09/19 13:42,"360 Maple St, Portland, OR 97035" +311259,USB-C Charging Cable,2,11.95,12/09/19 13:42,"360 Maple St, Portland, OR 97035" +311260,34in Ultrawide Monitor,1,379.99,12/17/19 18:09,"79 West St, Seattle, WA 98101" +311261,ThinkPad Laptop,1,999.99,12/25/19 21:24,"756 5th St, New York City, NY 10001" +311262,Google Phone,1,600,12/04/19 22:22,"322 11th St, Atlanta, GA 30301" +311263,Apple Airpods Headphones,1,150,12/15/19 08:39,"246 Lakeview St, Portland, OR 97035" +311264,AAA Batteries (4-pack),2,2.99,12/19/19 13:33,"891 Walnut St, Los Angeles, CA 90001" +311265,27in FHD Monitor,1,149.99,12/14/19 13:21,"17 Hickory St, New York City, NY 10001" +311266,iPhone,1,700,12/07/19 21:24,"47 Dogwood St, Portland, OR 97035" +311267,Google Phone,1,600,12/31/19 15:33,"728 Ridge St, Los Angeles, CA 90001" +311268,Bose SoundSport Headphones,1,99.99,12/28/19 23:45,"402 13th St, San Francisco, CA 94016" +311268,Lightning Charging Cable,1,14.95,12/28/19 23:45,"402 13th St, San Francisco, CA 94016" +311269,27in FHD Monitor,1,149.99,12/25/19 11:05,"942 Lake St, Austin, TX 73301" +311270,AA Batteries (4-pack),1,3.84,12/27/19 23:16,"372 10th St, Portland, OR 97035" +311271,27in FHD Monitor,1,149.99,12/11/19 20:38,"684 Church St, Atlanta, GA 30301" +311272,Macbook Pro Laptop,1,1700,12/19/19 20:21,"74 2nd St, San Francisco, CA 94016" +311273,Lightning Charging Cable,1,14.95,12/05/19 12:42,"456 Ridge St, Boston, MA 02215" +311274,AAA Batteries (4-pack),1,2.99,12/12/19 20:36,"147 Park St, San Francisco, CA 94016" +311275,USB-C Charging Cable,1,11.95,12/17/19 19:45,"650 North St, New York City, NY 10001" +311276,iPhone,1,700,12/07/19 16:06,"151 West St, Boston, MA 02215" +311277,Lightning Charging Cable,2,14.95,12/09/19 03:14,"448 Hickory St, San Francisco, CA 94016" +311278,AAA Batteries (4-pack),2,2.99,12/10/19 13:17,"13 Park St, Atlanta, GA 30301" +311279,Lightning Charging Cable,1,14.95,12/20/19 18:54,"669 Walnut St, New York City, NY 10001" +311280,Lightning Charging Cable,1,14.95,12/13/19 12:58,"878 Lincoln St, Dallas, TX 75001" +311281,AA Batteries (4-pack),1,3.84,12/24/19 18:17,"580 2nd St, San Francisco, CA 94016" +311282,ThinkPad Laptop,1,999.99,12/31/19 16:55,"304 Spruce St, Austin, TX 73301" +311283,AA Batteries (4-pack),1,3.84,12/13/19 14:18,"949 Maple St, Boston, MA 02215" +311284,Wired Headphones,1,11.99,12/03/19 17:16,"771 Walnut St, New York City, NY 10001" +311285,USB-C Charging Cable,1,11.95,12/06/19 08:44,"52 Jackson St, San Francisco, CA 94016" +311286,Lightning Charging Cable,2,14.95,12/24/19 03:04,"698 Willow St, Los Angeles, CA 90001" +311287,ThinkPad Laptop,1,999.99,12/03/19 14:43,"796 South St, Atlanta, GA 30301" +311288,iPhone,1,700,12/05/19 11:54,"272 Cherry St, San Francisco, CA 94016" +311289,Lightning Charging Cable,1,14.95,12/12/19 22:43,"478 Madison St, New York City, NY 10001" +311290,AA Batteries (4-pack),1,3.84,12/01/19 23:23,"44 Jefferson St, Portland, ME 04101" +311291,USB-C Charging Cable,1,11.95,12/15/19 10:08,"446 Spruce St, Atlanta, GA 30301" +311292,Wired Headphones,1,11.99,12/01/19 13:15,"666 Ridge St, San Francisco, CA 94016" +311293,Wired Headphones,1,11.99,12/15/19 11:25,"459 West St, San Francisco, CA 94016" +311294,LG Dryer,1,600.0,12/18/19 15:57,"840 Adams St, Los Angeles, CA 90001" +311295,AAA Batteries (4-pack),1,2.99,12/09/19 08:53,"463 South St, Boston, MA 02215" +311296,USB-C Charging Cable,1,11.95,12/18/19 21:42,"167 Walnut St, San Francisco, CA 94016" +311297,34in Ultrawide Monitor,1,379.99,12/10/19 13:04,"490 Hickory St, Seattle, WA 98101" +311298,AAA Batteries (4-pack),1,2.99,12/09/19 15:54,"942 Sunset St, Los Angeles, CA 90001" +311299,Lightning Charging Cable,1,14.95,12/19/19 18:03,"268 9th St, New York City, NY 10001" +311300,Google Phone,1,600,12/07/19 16:29,"95 Jefferson St, New York City, NY 10001" +311301,Apple Airpods Headphones,1,150,12/25/19 19:30,"471 Adams St, San Francisco, CA 94016" +311302,Wired Headphones,1,11.99,12/24/19 19:48,"112 Ridge St, San Francisco, CA 94016" +311303,USB-C Charging Cable,1,11.95,12/14/19 15:49,"325 Jackson St, Austin, TX 73301" +311304,20in Monitor,1,109.99,12/11/19 23:11,"936 North St, San Francisco, CA 94016" +311305,iPhone,1,700,12/15/19 20:17,"844 14th St, Los Angeles, CA 90001" +311305,Lightning Charging Cable,1,14.95,12/15/19 20:17,"844 14th St, Los Angeles, CA 90001" +311306,AA Batteries (4-pack),1,3.84,12/17/19 12:20,"756 Hill St, Atlanta, GA 30301" +311307,Lightning Charging Cable,1,14.95,12/29/19 15:29,"514 Jefferson St, Boston, MA 02215" +311308,Lightning Charging Cable,2,14.95,12/25/19 20:15,"515 Pine St, Atlanta, GA 30301" +311309,Google Phone,1,600,12/29/19 10:22,"245 10th St, Los Angeles, CA 90001" +311309,USB-C Charging Cable,1,11.95,12/29/19 10:22,"245 10th St, Los Angeles, CA 90001" +311309,Bose SoundSport Headphones,1,99.99,12/29/19 10:22,"245 10th St, Los Angeles, CA 90001" +311310,AAA Batteries (4-pack),3,2.99,12/25/19 20:54,"412 Elm St, San Francisco, CA 94016" +311311,27in 4K Gaming Monitor,1,389.99,12/28/19 22:59,"486 8th St, Dallas, TX 75001" +311312,Bose SoundSport Headphones,1,99.99,12/14/19 18:52,"356 11th St, San Francisco, CA 94016" +311313,USB-C Charging Cable,1,11.95,12/18/19 13:12,"377 Highland St, Dallas, TX 75001" +311314,USB-C Charging Cable,1,11.95,12/03/19 16:45,"111 Maple St, San Francisco, CA 94016" +311315,AA Batteries (4-pack),1,3.84,12/03/19 13:25,"941 7th St, Austin, TX 73301" +311316,AA Batteries (4-pack),1,3.84,12/05/19 16:36,"924 Center St, Boston, MA 02215" +311317,Lightning Charging Cable,2,14.95,12/07/19 10:47,"554 North St, Seattle, WA 98101" +311318,Lightning Charging Cable,2,14.95,12/12/19 17:33,"769 Spruce St, Dallas, TX 75001" +311319,AA Batteries (4-pack),1,3.84,12/24/19 17:47,"633 West St, New York City, NY 10001" +311320,AA Batteries (4-pack),1,3.84,12/19/19 23:36,"465 Meadow St, Austin, TX 73301" +311321,Wired Headphones,1,11.99,12/25/19 17:14,"626 Jefferson St, Austin, TX 73301" +311322,Lightning Charging Cable,1,14.95,12/16/19 13:09,"108 2nd St, New York City, NY 10001" +311323,Apple Airpods Headphones,1,150,12/13/19 16:52,"614 Hill St, Portland, OR 97035" +311324,AAA Batteries (4-pack),3,2.99,12/11/19 02:36,"845 11th St, San Francisco, CA 94016" +311325,27in FHD Monitor,1,149.99,12/13/19 10:21,"38 Park St, Dallas, TX 75001" +311326,34in Ultrawide Monitor,1,379.99,12/07/19 14:12,"406 River St, Seattle, WA 98101" +311327,Wired Headphones,1,11.99,12/01/19 22:31,"332 Walnut St, San Francisco, CA 94016" +311328,USB-C Charging Cable,2,11.95,12/03/19 10:30,"549 2nd St, San Francisco, CA 94016" +311329,Apple Airpods Headphones,1,150,12/18/19 14:28,"594 Willow St, Austin, TX 73301" +311330,USB-C Charging Cable,1,11.95,12/09/19 12:27,"590 Elm St, Seattle, WA 98101" +311331,Bose SoundSport Headphones,1,99.99,12/13/19 23:35,"898 11th St, Austin, TX 73301" +311332,USB-C Charging Cable,1,11.95,12/22/19 18:37,"832 Madison St, Los Angeles, CA 90001" +311333,Wired Headphones,1,11.99,12/30/19 07:57,"71 Maple St, Los Angeles, CA 90001" +311334,AA Batteries (4-pack),2,3.84,12/29/19 18:31,"996 Elm St, Los Angeles, CA 90001" +311335,Wired Headphones,1,11.99,12/04/19 17:01,"229 Ridge St, Seattle, WA 98101" +311336,Google Phone,1,600,12/25/19 06:29,"689 Center St, Dallas, TX 75001" +311337,20in Monitor,1,109.99,12/25/19 19:38,"918 Center St, Dallas, TX 75001" +311338,Vareebadd Phone,1,400,12/21/19 12:31,"992 1st St, San Francisco, CA 94016" +311339,Lightning Charging Cable,1,14.95,12/21/19 19:12,"330 9th St, Boston, MA 02215" +311340,Wired Headphones,1,11.99,12/05/19 09:34,"994 Pine St, Los Angeles, CA 90001" +311341,Macbook Pro Laptop,1,1700,12/19/19 13:13,"577 Ridge St, Los Angeles, CA 90001" +311342,Bose SoundSport Headphones,1,99.99,12/17/19 09:08,"302 Highland St, Boston, MA 02215" +311343,27in 4K Gaming Monitor,1,389.99,12/03/19 13:41,"223 South St, Los Angeles, CA 90001" +311344,USB-C Charging Cable,1,11.95,12/09/19 18:17,"841 4th St, Seattle, WA 98101" +311345,Wired Headphones,1,11.99,12/28/19 16:09,"626 Church St, New York City, NY 10001" +311346,USB-C Charging Cable,1,11.95,12/19/19 01:25,"60 Meadow St, New York City, NY 10001" +311347,AA Batteries (4-pack),2,3.84,12/15/19 19:46,"538 14th St, San Francisco, CA 94016" +311348,34in Ultrawide Monitor,1,379.99,12/19/19 18:25,"984 Elm St, Portland, OR 97035" +311349,AA Batteries (4-pack),1,3.84,12/09/19 11:47,"698 Dogwood St, Seattle, WA 98101" +311350,USB-C Charging Cable,1,11.95,12/07/19 14:32,"888 Cedar St, New York City, NY 10001" +311351,Wired Headphones,1,11.99,12/01/19 13:48,"870 Jefferson St, Seattle, WA 98101" +311352,Bose SoundSport Headphones,1,99.99,12/07/19 16:40,"27 6th St, San Francisco, CA 94016" +311353,USB-C Charging Cable,1,11.95,12/26/19 19:05,"412 River St, New York City, NY 10001" +311354,AAA Batteries (4-pack),1,2.99,12/20/19 22:09,"942 Dogwood St, Los Angeles, CA 90001" +311355,AA Batteries (4-pack),1,3.84,12/05/19 15:54,"432 River St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +311356,USB-C Charging Cable,1,11.95,12/10/19 20:15,"88 11th St, New York City, NY 10001" +311357,Vareebadd Phone,1,400,12/11/19 18:07,"283 Chestnut St, Austin, TX 73301" +311357,Wired Headphones,1,11.99,12/11/19 18:07,"283 Chestnut St, Austin, TX 73301" +311358,20in Monitor,1,109.99,12/01/19 15:35,"912 Johnson St, Boston, MA 02215" +311359,USB-C Charging Cable,1,11.95,12/22/19 20:58,"658 Church St, Austin, TX 73301" +311360,Lightning Charging Cable,1,14.95,12/17/19 13:25,"599 South St, Seattle, WA 98101" +311361,Macbook Pro Laptop,1,1700,12/07/19 00:22,"78 Madison St, Seattle, WA 98101" +311362,Lightning Charging Cable,2,14.95,12/14/19 23:51,"753 Main St, San Francisco, CA 94016" +311363,AAA Batteries (4-pack),1,2.99,12/01/19 07:14,"997 Cedar St, Austin, TX 73301" +311364,AAA Batteries (4-pack),1,2.99,12/27/19 22:15,"707 Wilson St, San Francisco, CA 94016" +311365,AAA Batteries (4-pack),3,2.99,12/27/19 11:14,"898 Lakeview St, San Francisco, CA 94016" +311366,AAA Batteries (4-pack),1,2.99,12/29/19 23:22,"728 Lakeview St, San Francisco, CA 94016" +311367,Bose SoundSport Headphones,1,99.99,12/07/19 13:01,"197 Forest St, San Francisco, CA 94016" +311368,AAA Batteries (4-pack),4,2.99,12/02/19 15:10,"404 Cedar St, Boston, MA 02215" +311369,USB-C Charging Cable,1,11.95,12/01/19 17:42,"298 12th St, New York City, NY 10001" +311370,AA Batteries (4-pack),1,3.84,12/18/19 16:40,"121 13th St, Atlanta, GA 30301" +311371,Lightning Charging Cable,1,14.95,12/26/19 19:13,"31 Madison St, Boston, MA 02215" +311372,Lightning Charging Cable,1,14.95,12/03/19 10:26,"589 Johnson St, Boston, MA 02215" +311373,Bose SoundSport Headphones,1,99.99,12/19/19 21:26,"559 9th St, Los Angeles, CA 90001" +311374,LG Dryer,1,600.0,12/30/19 01:23,"410 Dogwood St, New York City, NY 10001" +311375,Google Phone,1,600,12/02/19 14:11,"75 Highland St, New York City, NY 10001" +311376,AAA Batteries (4-pack),1,2.99,12/06/19 12:47,"304 14th St, Los Angeles, CA 90001" +311377,27in FHD Monitor,1,149.99,12/19/19 13:58,"930 Lakeview St, San Francisco, CA 94016" +311378,AA Batteries (4-pack),1,3.84,12/21/19 22:28,"632 West St, San Francisco, CA 94016" +311379,Vareebadd Phone,1,400,12/04/19 19:16,"431 Johnson St, Atlanta, GA 30301" +311380,iPhone,1,700,12/06/19 21:29,"795 Hickory St, San Francisco, CA 94016" +311381,AA Batteries (4-pack),1,3.84,12/09/19 07:53,"701 Ridge St, Dallas, TX 75001" +311382,Apple Airpods Headphones,1,150,12/07/19 16:53,"730 Washington St, Los Angeles, CA 90001" +311383,iPhone,1,700,12/21/19 10:31,"535 Hickory St, San Francisco, CA 94016" +311383,Lightning Charging Cable,1,14.95,12/21/19 10:31,"535 Hickory St, San Francisco, CA 94016" +311383,Wired Headphones,2,11.99,12/21/19 10:31,"535 Hickory St, San Francisco, CA 94016" +311384,USB-C Charging Cable,1,11.95,12/23/19 22:57,"54 14th St, Seattle, WA 98101" +311385,AAA Batteries (4-pack),1,2.99,12/08/19 15:54,"165 12th St, New York City, NY 10001" +311386,Bose SoundSport Headphones,1,99.99,12/30/19 11:51,"576 Jefferson St, Atlanta, GA 30301" +311387,ThinkPad Laptop,1,999.99,12/15/19 19:51,"883 Walnut St, Austin, TX 73301" +311388,20in Monitor,1,109.99,12/09/19 08:03,"91 Center St, San Francisco, CA 94016" +311389,Google Phone,1,600,12/26/19 20:13,"612 Washington St, San Francisco, CA 94016" +311390,34in Ultrawide Monitor,1,379.99,12/24/19 22:07,"644 Main St, Los Angeles, CA 90001" +311391,USB-C Charging Cable,1,11.95,12/29/19 14:35,"654 South St, San Francisco, CA 94016" +311392,USB-C Charging Cable,1,11.95,12/19/19 15:05,"509 Adams St, Los Angeles, CA 90001" +311393,Lightning Charging Cable,1,14.95,12/06/19 15:06,"725 6th St, Boston, MA 02215" +311394,Lightning Charging Cable,1,14.95,12/03/19 20:08,"604 Washington St, San Francisco, CA 94016" +311395,USB-C Charging Cable,1,11.95,12/09/19 13:43,"543 Meadow St, Boston, MA 02215" +311396,USB-C Charging Cable,1,11.95,12/03/19 10:50,"986 River St, Atlanta, GA 30301" +311397,Wired Headphones,1,11.99,12/13/19 13:06,"422 West St, San Francisco, CA 94016" +311398,AA Batteries (4-pack),1,3.84,12/01/19 18:33,"50 Main St, New York City, NY 10001" +311399,USB-C Charging Cable,1,11.95,12/26/19 11:12,"549 Wilson St, San Francisco, CA 94016" +311400,Apple Airpods Headphones,1,150,12/17/19 18:02,"307 12th St, Boston, MA 02215" +311401,Macbook Pro Laptop,1,1700,12/06/19 11:00,"95 2nd St, Austin, TX 73301" +311402,AA Batteries (4-pack),1,3.84,12/13/19 13:39,"390 Madison St, Boston, MA 02215" +311402,AAA Batteries (4-pack),1,2.99,12/13/19 13:39,"390 Madison St, Boston, MA 02215" +311403,ThinkPad Laptop,1,999.99,12/25/19 16:31,"880 Walnut St, Austin, TX 73301" +311404,AAA Batteries (4-pack),2,2.99,12/16/19 13:02,"71 13th St, Los Angeles, CA 90001" +311405,Wired Headphones,1,11.99,12/12/19 15:56,"509 Church St, Dallas, TX 75001" +311406,Vareebadd Phone,1,400,12/12/19 21:39,"251 Park St, Atlanta, GA 30301" +311407,AA Batteries (4-pack),1,3.84,12/26/19 10:35,"466 Forest St, Portland, OR 97035" +311408,Bose SoundSport Headphones,1,99.99,12/18/19 14:04,"309 Elm St, Dallas, TX 75001" +311409,Bose SoundSport Headphones,1,99.99,12/17/19 13:34,"289 Wilson St, San Francisco, CA 94016" +311410,Apple Airpods Headphones,1,150,12/26/19 16:30,"29 Lake St, Boston, MA 02215" +311411,Lightning Charging Cable,1,14.95,12/22/19 19:20,"143 Forest St, San Francisco, CA 94016" +311412,AAA Batteries (4-pack),1,2.99,12/04/19 09:55,"445 Pine St, Los Angeles, CA 90001" +311413,Lightning Charging Cable,1,14.95,12/12/19 00:41,"714 Lake St, San Francisco, CA 94016" +311414,iPhone,1,700,12/29/19 11:31,"616 Park St, Atlanta, GA 30301" +311415,iPhone,1,700,12/01/19 21:14,"353 Highland St, Seattle, WA 98101" +311416,AAA Batteries (4-pack),1,2.99,12/04/19 12:19,"754 4th St, Los Angeles, CA 90001" +311417,Lightning Charging Cable,1,14.95,12/14/19 16:59,"568 Madison St, San Francisco, CA 94016" +311418,Lightning Charging Cable,1,14.95,12/03/19 18:19,"853 6th St, Portland, ME 04101" +311419,Bose SoundSport Headphones,1,99.99,12/01/19 18:31,"30 Spruce St, Boston, MA 02215" +311420,Lightning Charging Cable,1,14.95,12/18/19 12:52,"833 South St, Atlanta, GA 30301" +311421,ThinkPad Laptop,1,999.99,12/07/19 01:04,"425 Lake St, Dallas, TX 75001" +311422,AAA Batteries (4-pack),1,2.99,12/01/19 13:58,"148 Cedar St, Seattle, WA 98101" +311423,AAA Batteries (4-pack),3,2.99,12/11/19 10:17,"67 Ridge St, New York City, NY 10001" +311424,AAA Batteries (4-pack),1,2.99,12/29/19 17:59,"665 Lake St, Seattle, WA 98101" +311425,Apple Airpods Headphones,1,150,12/06/19 09:06,"411 4th St, New York City, NY 10001" +311426,USB-C Charging Cable,1,11.95,12/13/19 11:16,"2 South St, Austin, TX 73301" +311427,Google Phone,1,600,12/28/19 14:55,"218 Lakeview St, San Francisco, CA 94016" +311428,Bose SoundSport Headphones,1,99.99,12/22/19 05:53,"632 Maple St, New York City, NY 10001" +311429,USB-C Charging Cable,1,11.95,12/19/19 12:48,"390 1st St, Los Angeles, CA 90001" +311430,Lightning Charging Cable,1,14.95,12/07/19 12:20,"512 Cherry St, Dallas, TX 75001" +311431,AAA Batteries (4-pack),2,2.99,12/09/19 02:51,"435 River St, Los Angeles, CA 90001" +311432,USB-C Charging Cable,1,11.95,12/04/19 07:34,"19 Johnson St, Boston, MA 02215" +311433,USB-C Charging Cable,1,11.95,12/12/19 20:35,"148 Park St, Atlanta, GA 30301" +311434,Wired Headphones,1,11.99,12/20/19 17:53,"210 Elm St, San Francisco, CA 94016" +311435,34in Ultrawide Monitor,1,379.99,12/02/19 20:40,"708 Park St, Boston, MA 02215" +311436,AAA Batteries (4-pack),1,2.99,12/28/19 19:28,"374 6th St, Atlanta, GA 30301" +311437,27in FHD Monitor,1,149.99,12/05/19 16:43,"890 Center St, San Francisco, CA 94016" +311438,Bose SoundSport Headphones,1,99.99,12/09/19 07:29,"258 Willow St, Dallas, TX 75001" +311439,Lightning Charging Cable,1,14.95,12/03/19 00:31,"248 Spruce St, Seattle, WA 98101" +311440,AAA Batteries (4-pack),1,2.99,12/03/19 23:06,"489 Lincoln St, San Francisco, CA 94016" +311441,34in Ultrawide Monitor,1,379.99,12/07/19 18:04,"521 14th St, San Francisco, CA 94016" +311442,Vareebadd Phone,1,400,12/01/19 19:20,"429 Hill St, New York City, NY 10001" +311443,Apple Airpods Headphones,1,150,12/21/19 10:47,"192 Johnson St, Portland, OR 97035" +311444,AA Batteries (4-pack),2,3.84,12/07/19 07:26,"281 River St, Portland, ME 04101" +311445,AAA Batteries (4-pack),3,2.99,12/02/19 11:37,"675 River St, Dallas, TX 75001" +311446,USB-C Charging Cable,1,11.95,12/05/19 10:42,"665 Lincoln St, Atlanta, GA 30301" +311447,Bose SoundSport Headphones,1,99.99,12/01/19 13:49,"797 Dogwood St, San Francisco, CA 94016" +311448,Wired Headphones,1,11.99,12/11/19 21:50,"864 Jackson St, Boston, MA 02215" +311449,Lightning Charging Cable,1,14.95,12/04/19 17:34,"103 Hickory St, Dallas, TX 75001" +311450,27in FHD Monitor,1,149.99,12/11/19 19:39,"620 Jackson St, Los Angeles, CA 90001" +311450,AAA Batteries (4-pack),1,2.99,12/11/19 19:39,"620 Jackson St, Los Angeles, CA 90001" +311451,Wired Headphones,1,11.99,12/14/19 14:22,"286 Highland St, Boston, MA 02215" +311452,AA Batteries (4-pack),1,3.84,12/10/19 13:51,"881 Cherry St, San Francisco, CA 94016" +311453,27in 4K Gaming Monitor,1,389.99,12/27/19 17:31,"474 South St, Atlanta, GA 30301" +311454,Wired Headphones,1,11.99,12/09/19 00:24,"660 West St, New York City, NY 10001" +311455,Flatscreen TV,1,300,12/04/19 21:04,"796 Dogwood St, Seattle, WA 98101" +311456,AA Batteries (4-pack),1,3.84,12/05/19 19:14,"611 West St, Austin, TX 73301" +311457,AAA Batteries (4-pack),1,2.99,12/20/19 06:44,"491 Sunset St, Dallas, TX 75001" +311458,Flatscreen TV,1,300,12/26/19 19:20,"513 Main St, Los Angeles, CA 90001" +311459,27in FHD Monitor,1,149.99,12/01/19 22:06,"555 Lincoln St, Seattle, WA 98101" +311460,USB-C Charging Cable,1,11.95,12/15/19 13:07,"108 14th St, San Francisco, CA 94016" +311461,AAA Batteries (4-pack),1,2.99,12/30/19 19:05,"585 Chestnut St, Los Angeles, CA 90001" +311462,Lightning Charging Cable,1,14.95,12/16/19 14:33,"702 Willow St, New York City, NY 10001" +311463,Lightning Charging Cable,1,14.95,12/23/19 18:24,"962 Sunset St, New York City, NY 10001" +311464,Google Phone,1,600,12/12/19 00:02,"833 14th St, New York City, NY 10001" +311465,Bose SoundSport Headphones,1,99.99,12/21/19 16:10,"720 Jefferson St, San Francisco, CA 94016" +311466,Wired Headphones,1,11.99,12/31/19 17:25,"462 North St, Dallas, TX 75001" +311466,ThinkPad Laptop,1,999.99,12/31/19 17:25,"462 North St, Dallas, TX 75001" +311467,AAA Batteries (4-pack),1,2.99,12/19/19 12:43,"143 Church St, Dallas, TX 75001" +311468,Wired Headphones,3,11.99,12/22/19 10:45,"505 Highland St, Atlanta, GA 30301" +311469,Bose SoundSport Headphones,1,99.99,12/02/19 16:22,"854 Chestnut St, Austin, TX 73301" +311470,AAA Batteries (4-pack),1,2.99,12/17/19 05:45,"586 Willow St, Los Angeles, CA 90001" +311471,iPhone,1,700,12/02/19 10:58,"566 Walnut St, Dallas, TX 75001" +311472,Flatscreen TV,1,300,12/31/19 11:44,"739 Jefferson St, Atlanta, GA 30301" +311473,Wired Headphones,2,11.99,12/17/19 09:20,"975 Jefferson St, Los Angeles, CA 90001" +311474,AAA Batteries (4-pack),2,2.99,12/26/19 11:54,"146 Lake St, Boston, MA 02215" +311475,Google Phone,1,600,12/14/19 10:32,"579 9th St, Austin, TX 73301" +311476,USB-C Charging Cable,1,11.95,12/23/19 10:50,"675 Chestnut St, New York City, NY 10001" +311477,Lightning Charging Cable,2,14.95,12/08/19 23:16,"705 5th St, Austin, TX 73301" +311478,Vareebadd Phone,1,400,01/01/20 00:55,"124 Forest St, San Francisco, CA 94016" +311479,LG Dryer,1,600.0,12/30/19 20:19,"568 Jackson St, Atlanta, GA 30301" +311480,27in 4K Gaming Monitor,1,389.99,12/30/19 21:39,"109 North St, Boston, MA 02215" +311481,Flatscreen TV,1,300,12/29/19 09:51,"217 South St, Austin, TX 73301" +311482,Google Phone,1,600,12/10/19 14:03,"839 Jackson St, San Francisco, CA 94016" +311483,USB-C Charging Cable,2,11.95,12/26/19 16:30,"251 Park St, Dallas, TX 75001" +311484,Flatscreen TV,1,300,12/18/19 17:37,"520 Spruce St, New York City, NY 10001" +311485,Bose SoundSport Headphones,1,99.99,12/07/19 22:16,"71 Jackson St, Portland, OR 97035" +311486,iPhone,1,700,12/29/19 22:01,"217 Hill St, New York City, NY 10001" +311487,34in Ultrawide Monitor,1,379.99,12/23/19 08:54,"371 River St, Portland, OR 97035" +311488,Apple Airpods Headphones,1,150,12/17/19 17:53,"888 11th St, New York City, NY 10001" +311489,Vareebadd Phone,1,400,12/14/19 18:28,"356 Jefferson St, Seattle, WA 98101" +311490,Bose SoundSport Headphones,1,99.99,12/14/19 19:35,"22 Maple St, San Francisco, CA 94016" +311491,AA Batteries (4-pack),1,3.84,12/14/19 20:16,"484 Highland St, San Francisco, CA 94016" +311492,34in Ultrawide Monitor,1,379.99,12/06/19 18:44,"56 Maple St, San Francisco, CA 94016" +311493,20in Monitor,1,109.99,12/31/19 10:46,"798 Maple St, Austin, TX 73301" +311494,20in Monitor,1,109.99,12/24/19 07:46,"576 South St, Boston, MA 02215" +311495,Wired Headphones,1,11.99,12/30/19 12:31,"71 9th St, New York City, NY 10001" +311496,AAA Batteries (4-pack),1,2.99,12/13/19 17:40,"675 4th St, Los Angeles, CA 90001" +311497,Google Phone,1,600,12/13/19 18:03,"176 Maple St, Boston, MA 02215" +311498,AAA Batteries (4-pack),1,2.99,12/10/19 12:41,"138 4th St, Los Angeles, CA 90001" +311499,AAA Batteries (4-pack),1,2.99,12/19/19 21:38,"471 Jefferson St, Seattle, WA 98101" +311500,Wired Headphones,1,11.99,12/11/19 23:57,"380 Adams St, Los Angeles, CA 90001" +311501,Apple Airpods Headphones,1,150,12/04/19 11:42,"496 10th St, San Francisco, CA 94016" +311502,Macbook Pro Laptop,1,1700,12/12/19 18:33,"901 9th St, Boston, MA 02215" +311503,27in FHD Monitor,1,149.99,12/08/19 18:22,"952 Elm St, Atlanta, GA 30301" +311504,34in Ultrawide Monitor,1,379.99,12/13/19 22:02,"427 2nd St, New York City, NY 10001" +311505,Apple Airpods Headphones,1,150,12/19/19 14:10,"418 Dogwood St, Los Angeles, CA 90001" +311506,ThinkPad Laptop,1,999.99,12/05/19 20:21,"568 Walnut St, New York City, NY 10001" +311506,AA Batteries (4-pack),1,3.84,12/05/19 20:21,"568 Walnut St, New York City, NY 10001" +311507,AAA Batteries (4-pack),1,2.99,12/08/19 20:28,"280 Hill St, San Francisco, CA 94016" +311508,USB-C Charging Cable,1,11.95,12/13/19 18:20,"496 1st St, New York City, NY 10001" +311509,AA Batteries (4-pack),1,3.84,12/16/19 18:47,"623 Forest St, Boston, MA 02215" +311510,Wired Headphones,1,11.99,12/28/19 06:32,"989 Spruce St, Boston, MA 02215" +311511,Lightning Charging Cable,1,14.95,12/09/19 21:24,"306 1st St, Los Angeles, CA 90001" +311512,Apple Airpods Headphones,1,150,12/18/19 14:30,"464 Chestnut St, Los Angeles, CA 90001" +311513,USB-C Charging Cable,1,11.95,12/23/19 17:12,"478 10th St, Atlanta, GA 30301" +311514,Wired Headphones,1,11.99,12/18/19 23:07,"914 Meadow St, Portland, OR 97035" +311515,Vareebadd Phone,1,400,12/21/19 21:44,"956 Lakeview St, New York City, NY 10001" +311516,Apple Airpods Headphones,1,150,12/02/19 19:21,"606 Madison St, San Francisco, CA 94016" +311517,iPhone,1,700,12/17/19 09:20,"865 Main St, San Francisco, CA 94016" +311518,Apple Airpods Headphones,1,150,12/12/19 13:37,"359 Johnson St, Los Angeles, CA 90001" +311519,AA Batteries (4-pack),1,3.84,12/31/19 22:42,"422 10th St, Los Angeles, CA 90001" +311520,27in FHD Monitor,1,149.99,12/02/19 19:31,"689 Elm St, San Francisco, CA 94016" +311521,Lightning Charging Cable,1,14.95,12/29/19 13:23,"65 Maple St, Los Angeles, CA 90001" +311522,Lightning Charging Cable,1,14.95,12/13/19 20:27,"803 9th St, Los Angeles, CA 90001" +311523,Lightning Charging Cable,1,14.95,12/17/19 08:46,"1 Spruce St, Boston, MA 02215" +311524,Wired Headphones,1,11.99,12/03/19 16:49,"141 9th St, New York City, NY 10001" +311525,Bose SoundSport Headphones,1,99.99,12/06/19 19:00,"483 Pine St, San Francisco, CA 94016" +311526,Macbook Pro Laptop,1,1700,12/20/19 08:30,"87 Hickory St, Portland, ME 04101" +311527,Apple Airpods Headphones,1,150,12/10/19 22:08,"43 Jefferson St, Seattle, WA 98101" +311528,27in FHD Monitor,1,149.99,12/24/19 09:24,"988 Pine St, Boston, MA 02215" +311529,AA Batteries (4-pack),3,3.84,12/30/19 18:45,"900 14th St, San Francisco, CA 94016" +311530,AA Batteries (4-pack),2,3.84,12/01/19 17:11,"469 6th St, San Francisco, CA 94016" +311531,Google Phone,1,600,12/13/19 17:53,"402 Hickory St, Dallas, TX 75001" +311531,Bose SoundSport Headphones,1,99.99,12/13/19 17:53,"402 Hickory St, Dallas, TX 75001" +311532,USB-C Charging Cable,1,11.95,12/05/19 09:48,"922 14th St, Seattle, WA 98101" +311533,Google Phone,1,600,12/31/19 12:40,"96 Hickory St, New York City, NY 10001" +311534,27in 4K Gaming Monitor,1,389.99,12/28/19 13:54,"824 10th St, Austin, TX 73301" +311535,27in 4K Gaming Monitor,1,389.99,12/10/19 10:48,"452 13th St, Boston, MA 02215" +311536,Vareebadd Phone,1,400,12/17/19 10:44,"374 Jefferson St, New York City, NY 10001" +311537,Macbook Pro Laptop,1,1700,12/25/19 11:47,"609 Dogwood St, Dallas, TX 75001" +311538,Wired Headphones,1,11.99,12/09/19 00:43,"519 1st St, San Francisco, CA 94016" +311539,AAA Batteries (4-pack),1,2.99,12/05/19 20:10,"944 Park St, San Francisco, CA 94016" +311540,27in FHD Monitor,1,149.99,12/15/19 19:05,"258 Church St, New York City, NY 10001" +311541,20in Monitor,1,109.99,12/04/19 19:01,"692 10th St, Los Angeles, CA 90001" +311542,Lightning Charging Cable,1,14.95,12/17/19 10:19,"99 5th St, Los Angeles, CA 90001" +311543,Wired Headphones,3,11.99,12/03/19 21:16,"653 10th St, Atlanta, GA 30301" +311544,Lightning Charging Cable,1,14.95,12/18/19 11:31,"94 6th St, New York City, NY 10001" +311545,AAA Batteries (4-pack),1,2.99,12/22/19 14:12,"677 Sunset St, Boston, MA 02215" +311546,USB-C Charging Cable,1,11.95,12/20/19 22:15,"19 Maple St, Los Angeles, CA 90001" +311547,27in 4K Gaming Monitor,1,389.99,12/07/19 22:36,"44 Jefferson St, San Francisco, CA 94016" +311548,USB-C Charging Cable,1,11.95,12/31/19 13:52,"806 Chestnut St, Los Angeles, CA 90001" +311549,iPhone,1,700,12/25/19 02:36,"736 14th St, Boston, MA 02215" +311550,AA Batteries (4-pack),1,3.84,12/16/19 11:58,"507 North St, Los Angeles, CA 90001" +311551,34in Ultrawide Monitor,1,379.99,12/23/19 23:37,"285 Wilson St, San Francisco, CA 94016" +311552,USB-C Charging Cable,1,11.95,12/29/19 13:07,"386 Dogwood St, Austin, TX 73301" +311553,Wired Headphones,1,11.99,12/06/19 18:22,"6 Elm St, Atlanta, GA 30301" +311554,iPhone,1,700,12/01/19 15:43,"353 10th St, Dallas, TX 75001" +311554,Apple Airpods Headphones,1,150,12/01/19 15:43,"353 10th St, Dallas, TX 75001" +311555,34in Ultrawide Monitor,1,379.99,12/03/19 08:13,"280 Lakeview St, Austin, TX 73301" +311556,Wired Headphones,1,11.99,12/15/19 14:45,"970 Lincoln St, San Francisco, CA 94016" +311557,Bose SoundSport Headphones,1,99.99,12/31/19 21:45,"201 Spruce St, Los Angeles, CA 90001" +311558,USB-C Charging Cable,1,11.95,12/01/19 10:33,"903 Cedar St, Portland, OR 97035" +311559,AAA Batteries (4-pack),1,2.99,12/02/19 18:08,"309 2nd St, Los Angeles, CA 90001" +311560,Bose SoundSport Headphones,1,99.99,12/04/19 15:26,"333 Hickory St, Boston, MA 02215" +311561,AAA Batteries (4-pack),3,2.99,12/16/19 11:57,"963 Jefferson St, San Francisco, CA 94016" +311562,AAA Batteries (4-pack),1,2.99,12/09/19 18:05,"132 Church St, San Francisco, CA 94016" +311563,AA Batteries (4-pack),2,3.84,12/20/19 07:44,"509 Spruce St, Atlanta, GA 30301" +311564,Lightning Charging Cable,1,14.95,12/04/19 17:33,"393 North St, San Francisco, CA 94016" +311565,Wired Headphones,1,11.99,12/13/19 17:20,"23 Church St, San Francisco, CA 94016" +311566,Lightning Charging Cable,2,14.95,12/30/19 15:18,"864 13th St, Dallas, TX 75001" +311567,Lightning Charging Cable,1,14.95,12/21/19 20:28,"683 5th St, Portland, ME 04101" +311568,Lightning Charging Cable,1,14.95,12/07/19 09:33,"515 8th St, Seattle, WA 98101" +311569,Google Phone,1,600,12/29/19 16:37,"368 12th St, San Francisco, CA 94016" +311570,USB-C Charging Cable,1,11.95,12/11/19 19:18,"118 Maple St, Atlanta, GA 30301" +311571,Bose SoundSport Headphones,1,99.99,12/07/19 20:59,"460 Church St, Los Angeles, CA 90001" +311572,Apple Airpods Headphones,1,150,12/09/19 21:11,"168 Wilson St, San Francisco, CA 94016" +311573,AA Batteries (4-pack),1,3.84,12/18/19 14:54,"385 West St, Los Angeles, CA 90001" +311574,Wired Headphones,1,11.99,12/15/19 15:59,"328 Walnut St, Los Angeles, CA 90001" +311575,USB-C Charging Cable,1,11.95,12/12/19 16:10,"150 Washington St, San Francisco, CA 94016" +311576,ThinkPad Laptop,1,999.99,12/11/19 06:46,"586 Church St, Atlanta, GA 30301" +311577,Lightning Charging Cable,1,14.95,12/05/19 17:28,"73 River St, San Francisco, CA 94016" +311578,iPhone,1,700,12/21/19 17:17,"308 River St, Dallas, TX 75001" +311579,USB-C Charging Cable,1,11.95,12/31/19 01:38,"230 Ridge St, Atlanta, GA 30301" +311580,Bose SoundSport Headphones,1,99.99,12/02/19 14:59,"600 Lake St, San Francisco, CA 94016" +311581,AAA Batteries (4-pack),2,2.99,12/26/19 11:12,"608 Johnson St, San Francisco, CA 94016" +311582,27in FHD Monitor,1,149.99,12/27/19 14:22,"104 Highland St, Portland, OR 97035" +311583,LG Dryer,1,600.0,12/20/19 09:50,"127 13th St, Portland, ME 04101" +311584,34in Ultrawide Monitor,1,379.99,12/16/19 11:48,"409 1st St, Los Angeles, CA 90001" +311585,AAA Batteries (4-pack),2,2.99,12/15/19 09:21,"700 North St, Seattle, WA 98101" +311586,AA Batteries (4-pack),1,3.84,12/16/19 09:10,"975 Church St, Austin, TX 73301" +311587,27in 4K Gaming Monitor,1,389.99,12/27/19 14:51,"506 Ridge St, Austin, TX 73301" +311588,AAA Batteries (4-pack),1,2.99,12/04/19 14:08,"576 Sunset St, Austin, TX 73301" +311589,Wired Headphones,1,11.99,12/02/19 23:21,"685 Main St, Los Angeles, CA 90001" +311590,Wired Headphones,1,11.99,12/18/19 21:25,"469 Madison St, Seattle, WA 98101" +311591,AA Batteries (4-pack),1,3.84,12/07/19 17:42,"486 5th St, San Francisco, CA 94016" +311592,AA Batteries (4-pack),2,3.84,12/05/19 17:16,"286 Lincoln St, Seattle, WA 98101" +311593,Vareebadd Phone,1,400,12/01/19 15:20,"830 Maple St, San Francisco, CA 94016" +311594,AAA Batteries (4-pack),1,2.99,12/01/19 22:16,"109 West St, Dallas, TX 75001" +311595,Google Phone,1,600,12/26/19 13:54,"899 Forest St, San Francisco, CA 94016" +311596,Wired Headphones,1,11.99,12/07/19 09:44,"994 Lincoln St, San Francisco, CA 94016" +311597,Lightning Charging Cable,1,14.95,12/03/19 11:33,"927 River St, Portland, OR 97035" +311598,USB-C Charging Cable,1,11.95,12/26/19 10:08,"492 6th St, Boston, MA 02215" +311599,Wired Headphones,1,11.99,12/23/19 23:10,"487 Wilson St, Atlanta, GA 30301" +311600,34in Ultrawide Monitor,1,379.99,12/19/19 20:46,"446 12th St, Atlanta, GA 30301" +311601,USB-C Charging Cable,1,11.95,12/26/19 23:42,"258 Adams St, Austin, TX 73301" +311602,27in 4K Gaming Monitor,1,389.99,12/27/19 06:13,"528 5th St, Dallas, TX 75001" +311603,27in FHD Monitor,1,149.99,12/07/19 12:23,"336 Sunset St, Los Angeles, CA 90001" +311604,Wired Headphones,1,11.99,12/23/19 23:56,"12 Forest St, Boston, MA 02215" +311605,27in 4K Gaming Monitor,1,389.99,12/21/19 10:28,"763 West St, New York City, NY 10001" +311606,Apple Airpods Headphones,1,150,12/26/19 19:00,"18 Main St, Seattle, WA 98101" +311607,Flatscreen TV,1,300,12/22/19 22:43,"50 Elm St, Portland, OR 97035" +311608,Apple Airpods Headphones,1,150,12/26/19 16:02,"563 10th St, San Francisco, CA 94016" +311609,ThinkPad Laptop,1,999.99,12/21/19 18:57,"509 5th St, New York City, NY 10001" +311610,Apple Airpods Headphones,1,150,12/13/19 10:16,"279 Jefferson St, Seattle, WA 98101" +311611,USB-C Charging Cable,1,11.95,12/20/19 06:42,"855 Main St, Dallas, TX 75001" +311612,ThinkPad Laptop,1,999.99,12/30/19 20:04,"855 11th St, San Francisco, CA 94016" +311613,27in FHD Monitor,1,149.99,12/12/19 15:26,"315 Wilson St, Seattle, WA 98101" +311614,Lightning Charging Cable,1,14.95,12/18/19 16:37,"425 North St, Boston, MA 02215" +311615,AAA Batteries (4-pack),1,2.99,12/03/19 19:39,"216 Ridge St, Dallas, TX 75001" +311616,Macbook Pro Laptop,1,1700,12/10/19 19:24,"976 Washington St, San Francisco, CA 94016" +311617,AA Batteries (4-pack),1,3.84,12/12/19 23:44,"934 5th St, Boston, MA 02215" +311618,Macbook Pro Laptop,1,1700,12/15/19 14:14,"844 Center St, Boston, MA 02215" +311619,Google Phone,1,600,12/08/19 13:39,"214 Center St, New York City, NY 10001" +311619,USB-C Charging Cable,2,11.95,12/08/19 13:39,"214 Center St, New York City, NY 10001" +311620,27in FHD Monitor,1,149.99,12/09/19 11:06,"142 4th St, Atlanta, GA 30301" +311621,AA Batteries (4-pack),1,3.84,12/29/19 17:26,"93 4th St, Seattle, WA 98101" +311622,ThinkPad Laptop,1,999.99,12/14/19 10:50,"376 2nd St, Atlanta, GA 30301" +311623,USB-C Charging Cable,1,11.95,12/14/19 15:16,"50 Walnut St, Los Angeles, CA 90001" +311624,Wired Headphones,2,11.99,12/11/19 21:32,"142 Adams St, Dallas, TX 75001" +311625,Lightning Charging Cable,1,14.95,12/31/19 14:41,"460 Highland St, New York City, NY 10001" +311626,27in 4K Gaming Monitor,1,389.99,12/02/19 16:10,"405 Park St, Portland, OR 97035" +311627,27in FHD Monitor,1,149.99,12/30/19 23:46,"553 1st St, San Francisco, CA 94016" +311628,Wired Headphones,1,11.99,12/02/19 17:41,"308 Maple St, Seattle, WA 98101" +311629,USB-C Charging Cable,1,11.95,12/05/19 19:00,"309 Washington St, Los Angeles, CA 90001" +311630,Wired Headphones,1,11.99,12/02/19 10:44,"894 8th St, New York City, NY 10001" +311631,AA Batteries (4-pack),1,3.84,12/14/19 01:18,"840 Forest St, New York City, NY 10001" +311632,Lightning Charging Cable,1,14.95,12/30/19 19:39,"293 Forest St, Los Angeles, CA 90001" +311633,iPhone,1,700,12/11/19 08:46,"716 River St, San Francisco, CA 94016" +311633,Apple Airpods Headphones,1,150,12/11/19 08:46,"716 River St, San Francisco, CA 94016" +311634,Bose SoundSport Headphones,1,99.99,12/20/19 18:52,"63 12th St, Austin, TX 73301" +311635,AA Batteries (4-pack),1,3.84,12/31/19 10:40,"160 Johnson St, New York City, NY 10001" +311636,USB-C Charging Cable,1,11.95,12/04/19 17:21,"908 5th St, Seattle, WA 98101" +311637,Wired Headphones,1,11.99,12/12/19 14:56,"814 Hill St, Seattle, WA 98101" +311638,Lightning Charging Cable,1,14.95,12/11/19 09:12,"752 Hickory St, Dallas, TX 75001" +311639,Wired Headphones,1,11.99,12/07/19 07:23,"585 South St, Portland, OR 97035" +311640,Macbook Pro Laptop,1,1700,12/19/19 20:02,"217 Adams St, San Francisco, CA 94016" +311641,20in Monitor,1,109.99,12/31/19 12:38,"342 8th St, New York City, NY 10001" +311642,AAA Batteries (4-pack),1,2.99,12/14/19 22:28,"29 12th St, Dallas, TX 75001" +311643,AAA Batteries (4-pack),1,2.99,12/06/19 08:04,"803 Cherry St, New York City, NY 10001" +311644,Flatscreen TV,1,300,12/06/19 12:38,"632 Wilson St, Portland, OR 97035" +311645,USB-C Charging Cable,1,11.95,12/08/19 14:32,"698 Hill St, Boston, MA 02215" +311646,Wired Headphones,1,11.99,12/18/19 14:48,"118 13th St, Portland, OR 97035" +311647,Wired Headphones,1,11.99,12/17/19 21:06,"213 4th St, Los Angeles, CA 90001" +311648,AAA Batteries (4-pack),1,2.99,12/18/19 13:36,"613 Ridge St, Boston, MA 02215" +311649,AAA Batteries (4-pack),1,2.99,12/29/19 21:02,"511 14th St, Boston, MA 02215" +311650,Vareebadd Phone,1,400,12/28/19 20:41,"21 Maple St, San Francisco, CA 94016" +311651,Lightning Charging Cable,2,14.95,12/11/19 17:40,"563 Hickory St, Los Angeles, CA 90001" +311652,USB-C Charging Cable,1,11.95,12/03/19 04:52,"905 Center St, Dallas, TX 75001" +311653,Macbook Pro Laptop,1,1700,12/26/19 05:14,"670 Hickory St, Portland, OR 97035" +311654,USB-C Charging Cable,2,11.95,12/29/19 21:46,"686 Jackson St, San Francisco, CA 94016" +311655,AAA Batteries (4-pack),1,2.99,12/08/19 12:44,"685 4th St, Los Angeles, CA 90001" +311656,34in Ultrawide Monitor,1,379.99,12/07/19 10:47,"424 Jefferson St, San Francisco, CA 94016" +311657,USB-C Charging Cable,1,11.95,12/19/19 14:27,"750 Walnut St, Seattle, WA 98101" +311658,USB-C Charging Cable,1,11.95,12/09/19 07:17,"637 Church St, Dallas, TX 75001" +311659,34in Ultrawide Monitor,1,379.99,12/26/19 00:34,"623 North St, Austin, TX 73301" +311660,AA Batteries (4-pack),2,3.84,12/25/19 13:54,"837 Meadow St, Dallas, TX 75001" +311661,27in FHD Monitor,1,149.99,12/13/19 17:59,"309 Chestnut St, Seattle, WA 98101" +311662,iPhone,1,700,12/16/19 15:25,"943 Cherry St, San Francisco, CA 94016" +311663,USB-C Charging Cable,1,11.95,12/05/19 16:15,"74 Hill St, New York City, NY 10001" +311664,USB-C Charging Cable,1,11.95,12/04/19 22:05,"241 South St, Atlanta, GA 30301" +311665,AAA Batteries (4-pack),2,2.99,12/29/19 10:26,"747 Church St, Austin, TX 73301" +311666,Apple Airpods Headphones,1,150,12/28/19 12:19,"124 Walnut St, San Francisco, CA 94016" +311667,Bose SoundSport Headphones,1,99.99,12/08/19 23:13,"183 14th St, Austin, TX 73301" +311668,Bose SoundSport Headphones,1,99.99,12/14/19 14:29,"71 Meadow St, Portland, OR 97035" +311669,20in Monitor,1,109.99,12/31/19 13:19,"806 Maple St, Seattle, WA 98101" +311670,Bose SoundSport Headphones,1,99.99,12/28/19 17:15,"363 Highland St, Boston, MA 02215" +311671,Apple Airpods Headphones,1,150,12/27/19 13:15,"310 Willow St, Boston, MA 02215" +311672,USB-C Charging Cable,1,11.95,12/04/19 12:00,"429 Sunset St, Atlanta, GA 30301" +311673,Bose SoundSport Headphones,1,99.99,12/13/19 11:33,"925 Washington St, Dallas, TX 75001" +311673,Wired Headphones,1,11.99,12/13/19 11:33,"925 Washington St, Dallas, TX 75001" +311674,AA Batteries (4-pack),2,3.84,12/27/19 21:07,"932 Highland St, Los Angeles, CA 90001" +311675,Apple Airpods Headphones,1,150,12/14/19 20:38,"389 Spruce St, San Francisco, CA 94016" +311676,Lightning Charging Cable,1,14.95,12/09/19 17:32,"623 Lincoln St, Atlanta, GA 30301" +311677,AAA Batteries (4-pack),2,2.99,12/19/19 17:13,"291 8th St, San Francisco, CA 94016" +311678,Wired Headphones,1,11.99,12/04/19 21:07,"943 Hickory St, New York City, NY 10001" +311679,34in Ultrawide Monitor,1,379.99,12/18/19 15:56,"730 Willow St, Austin, TX 73301" +311680,USB-C Charging Cable,1,11.95,12/16/19 11:47,"789 5th St, Seattle, WA 98101" +311681,AA Batteries (4-pack),1,3.84,12/10/19 22:05,"157 12th St, San Francisco, CA 94016" +311682,Lightning Charging Cable,1,14.95,12/26/19 21:20,"144 11th St, San Francisco, CA 94016" +311683,Macbook Pro Laptop,1,1700,12/30/19 12:42,"829 Hill St, Los Angeles, CA 90001" +311684,27in FHD Monitor,1,149.99,12/03/19 19:22,"225 Main St, New York City, NY 10001" +311685,USB-C Charging Cable,1,11.95,12/26/19 09:31,"558 Pine St, San Francisco, CA 94016" +311686,LG Dryer,1,600.0,12/03/19 18:29,"434 6th St, Los Angeles, CA 90001" +311687,iPhone,1,700,12/17/19 12:04,"192 Forest St, New York City, NY 10001" +311688,27in FHD Monitor,1,149.99,12/03/19 10:05,"204 8th St, San Francisco, CA 94016" +311689,AAA Batteries (4-pack),2,2.99,12/04/19 14:47,"625 North St, Los Angeles, CA 90001" +311690,Wired Headphones,1,11.99,12/14/19 13:09,"597 Ridge St, Boston, MA 02215" +311691,Bose SoundSport Headphones,1,99.99,12/14/19 17:41,"465 Chestnut St, New York City, NY 10001" +311692,USB-C Charging Cable,1,11.95,12/22/19 19:51,"140 Lakeview St, Boston, MA 02215" +311693,AA Batteries (4-pack),1,3.84,12/03/19 20:54,"334 Willow St, San Francisco, CA 94016" +311694,27in FHD Monitor,1,149.99,12/14/19 20:56,"651 South St, Seattle, WA 98101" +311695,AA Batteries (4-pack),1,3.84,12/26/19 16:54,"397 9th St, San Francisco, CA 94016" +311696,Lightning Charging Cable,1,14.95,12/04/19 20:07,"665 Highland St, Los Angeles, CA 90001" +311697,Macbook Pro Laptop,1,1700,12/16/19 17:38,"322 River St, Los Angeles, CA 90001" +311698,Flatscreen TV,1,300,12/21/19 22:19,"375 Ridge St, San Francisco, CA 94016" +311699,Wired Headphones,1,11.99,12/15/19 10:16,"325 Hickory St, Los Angeles, CA 90001" +311700,Wired Headphones,1,11.99,12/18/19 20:20,"480 Willow St, Los Angeles, CA 90001" +311701,Flatscreen TV,1,300,12/16/19 21:42,"130 9th St, Dallas, TX 75001" +311702,USB-C Charging Cable,1,11.95,12/09/19 20:55,"74 Cherry St, San Francisco, CA 94016" +311703,Bose SoundSport Headphones,1,99.99,12/26/19 12:58,"873 9th St, New York City, NY 10001" +311704,Lightning Charging Cable,1,14.95,12/24/19 19:14,"336 Maple St, New York City, NY 10001" +311705,Apple Airpods Headphones,1,150,12/17/19 11:26,"820 Highland St, San Francisco, CA 94016" +311706,AA Batteries (4-pack),1,3.84,12/25/19 16:30,"170 Walnut St, New York City, NY 10001" +311707,Google Phone,1,600,12/30/19 12:10,"761 Johnson St, New York City, NY 10001" +311707,USB-C Charging Cable,1,11.95,12/30/19 12:10,"761 Johnson St, New York City, NY 10001" +311708,Flatscreen TV,1,300,12/18/19 12:06,"52 Walnut St, Dallas, TX 75001" +311709,AAA Batteries (4-pack),1,2.99,12/08/19 17:48,"698 Center St, San Francisco, CA 94016" +311710,USB-C Charging Cable,1,11.95,12/31/19 21:19,"454 Jackson St, San Francisco, CA 94016" +311711,AAA Batteries (4-pack),2,2.99,12/07/19 22:58,"176 Elm St, San Francisco, CA 94016" +311712,27in FHD Monitor,1,149.99,12/02/19 00:04,"903 Park St, Los Angeles, CA 90001" +311713,Wired Headphones,1,11.99,12/22/19 16:14,"253 1st St, Boston, MA 02215" +311714,Wired Headphones,1,11.99,12/17/19 17:56,"487 Lake St, Dallas, TX 75001" +311715,Wired Headphones,1,11.99,12/22/19 14:43,"471 2nd St, Boston, MA 02215" +311716,Apple Airpods Headphones,1,150,12/22/19 18:43,"938 Maple St, Boston, MA 02215" +311717,Macbook Pro Laptop,1,1700,12/31/19 10:54,"432 9th St, Los Angeles, CA 90001" +311718,Bose SoundSport Headphones,1,99.99,12/10/19 06:49,"773 Elm St, Atlanta, GA 30301" +311719,iPhone,1,700,12/11/19 11:56,"565 Main St, San Francisco, CA 94016" +311720,AAA Batteries (4-pack),2,2.99,12/14/19 14:06,"802 West St, San Francisco, CA 94016" +311721,Apple Airpods Headphones,1,150,12/15/19 17:16,"245 11th St, New York City, NY 10001" +311722,USB-C Charging Cable,1,11.95,12/23/19 14:24,"285 7th St, Dallas, TX 75001" +311723,USB-C Charging Cable,1,11.95,12/16/19 14:39,"752 Pine St, San Francisco, CA 94016" +311724,AA Batteries (4-pack),2,3.84,12/27/19 11:33,"65 Jackson St, Dallas, TX 75001" +311725,iPhone,1,700,12/05/19 23:21,"464 Ridge St, New York City, NY 10001" +311725,Lightning Charging Cable,1,14.95,12/05/19 23:21,"464 Ridge St, New York City, NY 10001" +311726,AA Batteries (4-pack),1,3.84,12/31/19 17:05,"734 4th St, New York City, NY 10001" +311727,Lightning Charging Cable,1,14.95,12/09/19 06:50,"114 Meadow St, Dallas, TX 75001" +311728,AA Batteries (4-pack),1,3.84,12/31/19 18:45,"599 West St, Los Angeles, CA 90001" +311729,27in 4K Gaming Monitor,1,389.99,12/10/19 11:07,"537 Maple St, Los Angeles, CA 90001" +311730,Wired Headphones,1,11.99,12/03/19 22:16,"672 Elm St, Los Angeles, CA 90001" +311731,USB-C Charging Cable,1,11.95,12/31/19 12:52,"561 Lakeview St, Atlanta, GA 30301" +311732,34in Ultrawide Monitor,1,379.99,12/11/19 15:03,"734 South St, New York City, NY 10001" +311733,ThinkPad Laptop,1,999.99,12/18/19 15:28,"24 1st St, San Francisco, CA 94016" +311734,Apple Airpods Headphones,1,150,12/21/19 14:54,"406 7th St, Portland, ME 04101" +311735,34in Ultrawide Monitor,1,379.99,12/14/19 21:47,"594 Washington St, New York City, NY 10001" +311736,AA Batteries (4-pack),1,3.84,12/25/19 19:58,"763 Main St, Los Angeles, CA 90001" +311737,27in 4K Gaming Monitor,2,389.99,12/09/19 14:54,"517 Jefferson St, Los Angeles, CA 90001" +311738,USB-C Charging Cable,1,11.95,12/26/19 00:58,"674 13th St, San Francisco, CA 94016" +311739,AA Batteries (4-pack),1,3.84,12/20/19 14:45,"81 Madison St, Atlanta, GA 30301" +311740,iPhone,1,700,12/28/19 19:17,"883 Jefferson St, San Francisco, CA 94016" +311741,Google Phone,1,600,12/01/19 22:28,"873 Hickory St, San Francisco, CA 94016" +311742,iPhone,1,700,12/02/19 08:04,"508 Meadow St, Seattle, WA 98101" +311742,Lightning Charging Cable,1,14.95,12/02/19 08:04,"508 Meadow St, Seattle, WA 98101" +311743,iPhone,1,700,12/27/19 16:06,"330 Pine St, Los Angeles, CA 90001" +311744,27in FHD Monitor,1,149.99,12/27/19 19:14,"398 Washington St, Los Angeles, CA 90001" +311745,20in Monitor,1,109.99,12/20/19 20:58,"889 2nd St, Atlanta, GA 30301" +311746,Flatscreen TV,1,300,12/16/19 06:45,"281 1st St, New York City, NY 10001" +311747,AAA Batteries (4-pack),2,2.99,12/02/19 16:56,"160 11th St, Los Angeles, CA 90001" +311748,Lightning Charging Cable,1,14.95,12/09/19 17:43,"711 Lincoln St, Los Angeles, CA 90001" +311749,AA Batteries (4-pack),1,3.84,12/05/19 18:29,"678 1st St, San Francisco, CA 94016" +311750,Apple Airpods Headphones,1,150,12/02/19 16:09,"500 West St, Austin, TX 73301" +311751,Wired Headphones,1,11.99,12/16/19 15:49,"363 West St, Portland, OR 97035" +311752,Wired Headphones,1,11.99,12/09/19 20:20,"677 Center St, Los Angeles, CA 90001" +311753,iPhone,1,700,12/01/19 21:35,"421 Madison St, New York City, NY 10001" +311754,AA Batteries (4-pack),1,3.84,12/16/19 19:34,"45 Lakeview St, Atlanta, GA 30301" +311755,Google Phone,1,600,12/08/19 12:55,"494 Lake St, Boston, MA 02215" +311756,Macbook Pro Laptop,1,1700,12/12/19 18:40,"376 Main St, Boston, MA 02215" +311757,Macbook Pro Laptop,1,1700,12/27/19 01:01,"443 Cedar St, Los Angeles, CA 90001" +311758,iPhone,1,700,12/11/19 15:25,"623 North St, Atlanta, GA 30301" +311759,LG Washing Machine,1,600.0,12/04/19 00:08,"670 1st St, Los Angeles, CA 90001" +311760,AA Batteries (4-pack),1,3.84,12/11/19 16:48,"851 Jackson St, Boston, MA 02215" +311761,Lightning Charging Cable,1,14.95,12/15/19 06:17,"508 River St, Boston, MA 02215" +311762,AAA Batteries (4-pack),1,2.99,12/06/19 18:23,"211 Lake St, Los Angeles, CA 90001" +311763,27in 4K Gaming Monitor,1,389.99,12/14/19 20:29,"130 Jackson St, San Francisco, CA 94016" +311764,Apple Airpods Headphones,1,150,12/29/19 20:04,"803 North St, New York City, NY 10001" +311765,Bose SoundSport Headphones,1,99.99,12/16/19 15:41,"163 Walnut St, San Francisco, CA 94016" +311766,Wired Headphones,1,11.99,12/22/19 19:47,"883 Meadow St, Los Angeles, CA 90001" +311767,AA Batteries (4-pack),1,3.84,12/09/19 13:32,"778 Ridge St, Dallas, TX 75001" +311768,ThinkPad Laptop,1,999.99,12/29/19 21:16,"900 Elm St, Atlanta, GA 30301" +311769,ThinkPad Laptop,1,999.99,12/18/19 18:19,"161 Cedar St, San Francisco, CA 94016" +311770,USB-C Charging Cable,1,11.95,12/15/19 20:02,"869 Cedar St, New York City, NY 10001" +311771,Lightning Charging Cable,1,14.95,12/21/19 14:25,"687 Cherry St, San Francisco, CA 94016" +311772,AA Batteries (4-pack),1,3.84,12/24/19 01:17,"122 6th St, San Francisco, CA 94016" +311773,Wired Headphones,3,11.99,12/02/19 19:49,"476 11th St, Seattle, WA 98101" +311774,27in 4K Gaming Monitor,1,389.99,12/01/19 15:19,"553 10th St, San Francisco, CA 94016" +311775,27in FHD Monitor,1,149.99,12/19/19 17:20,"526 2nd St, San Francisco, CA 94016" +311776,USB-C Charging Cable,1,11.95,12/19/19 19:33,"230 Madison St, New York City, NY 10001" +311777,34in Ultrawide Monitor,1,379.99,12/24/19 11:09,"461 7th St, Portland, OR 97035" +311778,AAA Batteries (4-pack),3,2.99,12/06/19 13:12,"79 Washington St, San Francisco, CA 94016" +311779,Lightning Charging Cable,1,14.95,12/21/19 20:15,"548 Maple St, New York City, NY 10001" +311780,27in FHD Monitor,1,149.99,12/20/19 23:41,"623 Sunset St, Boston, MA 02215" +311781,USB-C Charging Cable,1,11.95,12/01/19 21:42,"89 West St, Dallas, TX 75001" +311782,Google Phone,1,600,12/21/19 20:46,"860 Lake St, Los Angeles, CA 90001" +311783,AAA Batteries (4-pack),2,2.99,12/21/19 23:15,"447 13th St, San Francisco, CA 94016" +311784,USB-C Charging Cable,1,11.95,12/26/19 00:00,"49 Hill St, Atlanta, GA 30301" +311785,20in Monitor,1,109.99,12/27/19 15:09,"884 Willow St, Portland, OR 97035" +311786,AAA Batteries (4-pack),1,2.99,12/28/19 12:21,"123 12th St, San Francisco, CA 94016" +311787,USB-C Charging Cable,1,11.95,12/06/19 16:16,"962 Elm St, Atlanta, GA 30301" +311788,20in Monitor,1,109.99,12/25/19 22:48,"393 Lincoln St, Dallas, TX 75001" +311789,Apple Airpods Headphones,1,150,12/26/19 14:40,"204 North St, San Francisco, CA 94016" +311790,Apple Airpods Headphones,1,150,12/02/19 18:15,"261 Meadow St, Austin, TX 73301" +311791,AAA Batteries (4-pack),1,2.99,12/28/19 14:37,"141 1st St, San Francisco, CA 94016" +311792,AAA Batteries (4-pack),1,2.99,12/06/19 09:46,"801 Forest St, Dallas, TX 75001" +311793,Wired Headphones,2,11.99,12/25/19 19:33,"824 Washington St, San Francisco, CA 94016" +311794,Bose SoundSport Headphones,1,99.99,12/08/19 11:57,"989 10th St, Atlanta, GA 30301" +311795,AA Batteries (4-pack),1,3.84,12/10/19 12:30,"613 West St, Dallas, TX 75001" +311796,AAA Batteries (4-pack),2,2.99,12/20/19 13:40,"17 1st St, Los Angeles, CA 90001" +311797,Wired Headphones,1,11.99,12/30/19 16:39,"332 Maple St, Los Angeles, CA 90001" +311798,Bose SoundSport Headphones,1,99.99,12/23/19 21:09,"385 14th St, Los Angeles, CA 90001" +311799,Wired Headphones,1,11.99,12/22/19 23:13,"525 Forest St, New York City, NY 10001" +311800,LG Washing Machine,1,600.0,12/09/19 02:54,"84 7th St, Seattle, WA 98101" +311801,Wired Headphones,1,11.99,12/16/19 17:31,"562 Lake St, New York City, NY 10001" +311802,Lightning Charging Cable,1,14.95,12/24/19 13:05,"280 9th St, New York City, NY 10001" +311803,20in Monitor,1,109.99,12/31/19 00:43,"655 Main St, Los Angeles, CA 90001" +311804,Apple Airpods Headphones,1,150,12/06/19 16:58,"545 Wilson St, San Francisco, CA 94016" +311805,USB-C Charging Cable,1,11.95,12/02/19 21:14,"804 Walnut St, New York City, NY 10001" +311806,Wired Headphones,1,11.99,12/27/19 18:43,"756 12th St, Portland, ME 04101" +311807,Macbook Pro Laptop,1,1700,12/31/19 13:56,"717 Dogwood St, Los Angeles, CA 90001" +311808,iPhone,1,700,12/18/19 17:15,"135 10th St, Austin, TX 73301" +311809,27in 4K Gaming Monitor,1,389.99,12/03/19 19:18,"200 Wilson St, San Francisco, CA 94016" +311810,Vareebadd Phone,1,400,12/29/19 16:14,"187 Johnson St, Seattle, WA 98101" +311811,AAA Batteries (4-pack),1,2.99,12/17/19 14:12,"725 7th St, San Francisco, CA 94016" +311812,Apple Airpods Headphones,1,150,12/04/19 20:43,"570 Sunset St, Boston, MA 02215" +311813,Bose SoundSport Headphones,1,99.99,12/07/19 09:51,"934 Washington St, Los Angeles, CA 90001" +311814,34in Ultrawide Monitor,1,379.99,12/19/19 19:19,"834 South St, San Francisco, CA 94016" +311815,Wired Headphones,1,11.99,12/09/19 11:42,"93 Lincoln St, Los Angeles, CA 90001" +311816,Bose SoundSport Headphones,1,99.99,12/01/19 03:02,"902 1st St, San Francisco, CA 94016" +311817,34in Ultrawide Monitor,1,379.99,12/05/19 13:06,"755 Walnut St, Los Angeles, CA 90001" +311818,USB-C Charging Cable,1,11.95,12/27/19 11:07,"907 Walnut St, Portland, OR 97035" +311819,Bose SoundSport Headphones,1,99.99,12/28/19 20:25,"648 Wilson St, Austin, TX 73301" +311820,ThinkPad Laptop,1,999.99,12/01/19 08:17,"320 Adams St, San Francisco, CA 94016" +311821,Macbook Pro Laptop,1,1700,12/27/19 20:52,"759 Cherry St, New York City, NY 10001" +311822,AA Batteries (4-pack),1,3.84,12/22/19 14:17,"4 Cherry St, Atlanta, GA 30301" +311823,AAA Batteries (4-pack),2,2.99,12/29/19 23:14,"245 Main St, Los Angeles, CA 90001" +311824,27in 4K Gaming Monitor,1,389.99,12/01/19 11:17,"616 Park St, New York City, NY 10001" +311825,Lightning Charging Cable,1,14.95,12/27/19 21:36,"783 Forest St, Boston, MA 02215" +311826,AA Batteries (4-pack),1,3.84,12/29/19 11:30,"583 Willow St, San Francisco, CA 94016" +311827,Wired Headphones,1,11.99,12/13/19 14:54,"95 Washington St, New York City, NY 10001" +311828,Lightning Charging Cable,1,14.95,12/16/19 10:10,"752 West St, Dallas, TX 75001" +311829,Macbook Pro Laptop,1,1700,12/31/19 22:34,"317 Lake St, Los Angeles, CA 90001" +311830,Flatscreen TV,1,300,12/25/19 14:45,"799 2nd St, Austin, TX 73301" +311831,AA Batteries (4-pack),2,3.84,12/26/19 18:48,"907 Hill St, New York City, NY 10001" +311832,AAA Batteries (4-pack),1,2.99,12/20/19 01:07,"18 Washington St, Austin, TX 73301" +311833,27in FHD Monitor,1,149.99,12/01/19 19:23,"863 Wilson St, Boston, MA 02215" +311834,Bose SoundSport Headphones,1,99.99,12/15/19 16:38,"654 Adams St, San Francisco, CA 94016" +311835,USB-C Charging Cable,1,11.95,12/06/19 18:38,"679 Adams St, New York City, NY 10001" +311836,Lightning Charging Cable,2,14.95,12/13/19 14:30,"87 Cherry St, San Francisco, CA 94016" +311837,ThinkPad Laptop,1,999.99,12/22/19 11:43,"615 Lake St, Portland, OR 97035" +311838,Google Phone,1,600,12/01/19 18:32,"377 Hickory St, San Francisco, CA 94016" +311838,Wired Headphones,1,11.99,12/01/19 18:32,"377 Hickory St, San Francisco, CA 94016" +311839,USB-C Charging Cable,1,11.95,12/31/19 23:14,"702 Chestnut St, New York City, NY 10001" +311840,Bose SoundSport Headphones,1,99.99,12/08/19 19:04,"895 Center St, San Francisco, CA 94016" +311841,iPhone,1,700,12/06/19 08:27,"890 Adams St, Atlanta, GA 30301" +311841,Apple Airpods Headphones,1,150,12/06/19 08:27,"890 Adams St, Atlanta, GA 30301" +311842,Wired Headphones,2,11.99,12/30/19 15:35,"662 Spruce St, Seattle, WA 98101" +311843,AAA Batteries (4-pack),1,2.99,12/07/19 11:04,"983 2nd St, Dallas, TX 75001" +311844,USB-C Charging Cable,1,11.95,12/04/19 14:07,"173 Spruce St, Atlanta, GA 30301" +311845,34in Ultrawide Monitor,1,379.99,12/13/19 22:27,"680 Elm St, San Francisco, CA 94016" +311846,Wired Headphones,1,11.99,12/28/19 16:34,"11 Church St, New York City, NY 10001" +311847,Flatscreen TV,1,300,12/23/19 23:20,"219 Jackson St, Austin, TX 73301" +311848,Wired Headphones,1,11.99,12/06/19 21:38,"850 Lake St, Seattle, WA 98101" +311849,27in FHD Monitor,1,149.99,12/31/19 17:04,"481 Chestnut St, New York City, NY 10001" +311850,20in Monitor,1,109.99,12/08/19 16:12,"590 Chestnut St, San Francisco, CA 94016" +311851,iPhone,1,700,12/11/19 22:01,"400 Dogwood St, San Francisco, CA 94016" +311852,iPhone,1,700,12/04/19 17:33,"201 Lincoln St, Boston, MA 02215" +311852,Lightning Charging Cable,1,14.95,12/04/19 17:33,"201 Lincoln St, Boston, MA 02215" +311852,Apple Airpods Headphones,1,150,12/04/19 17:33,"201 Lincoln St, Boston, MA 02215" +311853,AAA Batteries (4-pack),1,2.99,12/08/19 21:06,"565 8th St, Boston, MA 02215" +311854,Lightning Charging Cable,1,14.95,12/15/19 16:06,"940 Washington St, Los Angeles, CA 90001" +311855,Apple Airpods Headphones,1,150,12/02/19 10:07,"590 Lake St, New York City, NY 10001" +311856,USB-C Charging Cable,2,11.95,12/11/19 17:44,"11 West St, San Francisco, CA 94016" +311857,27in 4K Gaming Monitor,1,389.99,12/28/19 23:10,"242 Ridge St, San Francisco, CA 94016" +311858,Apple Airpods Headphones,1,150,12/24/19 10:56,"779 Adams St, San Francisco, CA 94016" +311859,Bose SoundSport Headphones,1,99.99,12/29/19 18:16,"200 Jefferson St, Los Angeles, CA 90001" +311860,AAA Batteries (4-pack),1,2.99,12/15/19 17:44,"158 Willow St, Los Angeles, CA 90001" +311861,Bose SoundSport Headphones,1,99.99,12/18/19 11:30,"111 Lakeview St, Los Angeles, CA 90001" +311862,Bose SoundSport Headphones,1,99.99,12/20/19 09:27,"521 Jackson St, Portland, OR 97035" +311863,34in Ultrawide Monitor,1,379.99,12/14/19 14:52,"179 Johnson St, Atlanta, GA 30301" +311864,Apple Airpods Headphones,1,150,12/09/19 10:17,"448 Cedar St, New York City, NY 10001" +311865,ThinkPad Laptop,1,999.99,12/03/19 20:05,"552 10th St, Portland, OR 97035" +311866,AAA Batteries (4-pack),1,2.99,12/22/19 12:54,"201 West St, San Francisco, CA 94016" +311867,Bose SoundSport Headphones,1,99.99,12/27/19 06:47,"219 River St, Dallas, TX 75001" +311868,AAA Batteries (4-pack),2,2.99,12/13/19 21:58,"32 Jefferson St, Atlanta, GA 30301" +311869,Lightning Charging Cable,1,14.95,12/06/19 12:55,"33 North St, Boston, MA 02215" +311870,Apple Airpods Headphones,1,150,12/15/19 11:39,"786 7th St, Los Angeles, CA 90001" +311871,Wired Headphones,1,11.99,12/31/19 20:18,"125 Lake St, Atlanta, GA 30301" +311872,Lightning Charging Cable,1,14.95,12/15/19 21:10,"943 Meadow St, New York City, NY 10001" +311873,AAA Batteries (4-pack),1,2.99,12/18/19 20:52,"489 Lincoln St, Portland, OR 97035" +311874,AAA Batteries (4-pack),3,2.99,12/19/19 14:41,"442 Park St, San Francisco, CA 94016" +311875,AA Batteries (4-pack),2,3.84,12/19/19 14:05,"787 Ridge St, Seattle, WA 98101" +311876,AA Batteries (4-pack),1,3.84,12/28/19 15:31,"853 6th St, Portland, OR 97035" +311877,Bose SoundSport Headphones,2,99.99,12/28/19 17:21,"704 11th St, New York City, NY 10001" +311878,iPhone,1,700,12/22/19 14:02,"224 Cherry St, San Francisco, CA 94016" +311878,Lightning Charging Cable,1,14.95,12/22/19 14:02,"224 Cherry St, San Francisco, CA 94016" +311879,USB-C Charging Cable,1,11.95,12/02/19 15:29,"417 Lakeview St, New York City, NY 10001" +311880,AA Batteries (4-pack),1,3.84,12/22/19 09:01,"984 Chestnut St, Los Angeles, CA 90001" +311881,20in Monitor,1,109.99,12/06/19 10:39,"383 Elm St, Atlanta, GA 30301" +311882,Bose SoundSport Headphones,1,99.99,12/24/19 13:22,"444 Center St, New York City, NY 10001" +311883,Lightning Charging Cable,1,14.95,12/30/19 15:55,"979 Highland St, New York City, NY 10001" +311884,27in FHD Monitor,1,149.99,12/03/19 08:48,"937 Lincoln St, Dallas, TX 75001" +311885,Wired Headphones,1,11.99,12/09/19 14:55,"881 8th St, Dallas, TX 75001" +311886,Wired Headphones,1,11.99,12/25/19 09:20,"200 Johnson St, Los Angeles, CA 90001" +311887,20in Monitor,1,109.99,12/16/19 20:11,"783 Church St, San Francisco, CA 94016" +311888,Lightning Charging Cable,1,14.95,12/09/19 21:49,"44 Hickory St, Los Angeles, CA 90001" +311889,Macbook Pro Laptop,1,1700,12/09/19 18:41,"551 Park St, Boston, MA 02215" +311890,AA Batteries (4-pack),3,3.84,12/04/19 14:19,"730 9th St, Portland, OR 97035" +311891,Wired Headphones,1,11.99,12/31/19 19:20,"948 Jefferson St, San Francisco, CA 94016" +311892,Lightning Charging Cable,1,14.95,12/31/19 16:41,"147 Madison St, New York City, NY 10001" +311893,Wired Headphones,1,11.99,12/03/19 22:43,"835 Cedar St, Los Angeles, CA 90001" +311894,Wired Headphones,1,11.99,12/26/19 08:13,"229 1st St, Seattle, WA 98101" +311895,ThinkPad Laptop,1,999.99,12/05/19 09:37,"579 Lake St, Boston, MA 02215" +311896,Apple Airpods Headphones,1,150,12/12/19 11:22,"816 12th St, San Francisco, CA 94016" +311897,34in Ultrawide Monitor,1,379.99,12/03/19 17:55,"55 10th St, San Francisco, CA 94016" +311898,AA Batteries (4-pack),1,3.84,12/05/19 08:45,"462 6th St, Portland, ME 04101" +311899,Wired Headphones,1,11.99,12/28/19 07:19,"481 10th St, New York City, NY 10001" +311900,AAA Batteries (4-pack),2,2.99,12/22/19 20:40,"43 Pine St, New York City, NY 10001" +311901,AA Batteries (4-pack),1,3.84,12/05/19 17:51,"411 10th St, Los Angeles, CA 90001" +311902,Apple Airpods Headphones,1,150,12/03/19 16:57,"870 10th St, Los Angeles, CA 90001" +311903,Google Phone,1,600,12/12/19 12:55,"648 West St, San Francisco, CA 94016" +311904,AA Batteries (4-pack),1,3.84,12/11/19 13:07,"735 Elm St, Boston, MA 02215" +311905,Macbook Pro Laptop,1,1700,12/05/19 01:26,"435 Walnut St, New York City, NY 10001" +311906,AAA Batteries (4-pack),1,2.99,12/17/19 11:45,"182 1st St, Atlanta, GA 30301" +311907,USB-C Charging Cable,1,11.95,12/30/19 00:05,"710 Lincoln St, Seattle, WA 98101" +311908,USB-C Charging Cable,1,11.95,12/08/19 19:02,"31 Hickory St, Boston, MA 02215" +311909,Apple Airpods Headphones,1,150,12/04/19 20:58,"302 1st St, Dallas, TX 75001" +311910,Macbook Pro Laptop,1,1700,12/18/19 21:02,"108 13th St, Seattle, WA 98101" +311911,USB-C Charging Cable,1,11.95,12/04/19 10:36,"356 Forest St, Atlanta, GA 30301" +311912,Apple Airpods Headphones,1,150,12/03/19 20:14,"965 Lake St, San Francisco, CA 94016" +311913,AAA Batteries (4-pack),5,2.99,12/08/19 20:05,"547 Forest St, Seattle, WA 98101" +311914,AA Batteries (4-pack),1,3.84,12/05/19 16:09,"35 Jefferson St, San Francisco, CA 94016" +311915,Lightning Charging Cable,1,14.95,12/11/19 08:37,"108 7th St, Boston, MA 02215" +311916,Apple Airpods Headphones,1,150,12/25/19 21:35,"814 South St, San Francisco, CA 94016" +311917,Apple Airpods Headphones,1,150,12/06/19 12:05,"780 Chestnut St, Boston, MA 02215" +311918,Bose SoundSport Headphones,1,99.99,12/31/19 14:53,"81 River St, Portland, OR 97035" +311919,27in 4K Gaming Monitor,1,389.99,12/05/19 21:38,"667 Maple St, New York City, NY 10001" +311920,AAA Batteries (4-pack),1,2.99,12/31/19 18:42,"838 Adams St, San Francisco, CA 94016" +311921,iPhone,1,700,12/30/19 14:23,"794 Chestnut St, Los Angeles, CA 90001" +311922,Lightning Charging Cable,1,14.95,12/28/19 09:12,"662 Wilson St, Seattle, WA 98101" +311923,Lightning Charging Cable,1,14.95,12/26/19 17:41,"844 Cherry St, New York City, NY 10001" +311924,iPhone,1,700,12/22/19 09:54,"980 Maple St, San Francisco, CA 94016" +311925,Lightning Charging Cable,1,14.95,12/12/19 11:54,"114 Ridge St, Seattle, WA 98101" +311926,Wired Headphones,1,11.99,12/20/19 17:31,"949 Cedar St, San Francisco, CA 94016" +311927,Lightning Charging Cable,1,14.95,12/23/19 10:04,"453 2nd St, San Francisco, CA 94016" +311928,LG Dryer,1,600.0,12/16/19 21:22,"28 Elm St, New York City, NY 10001" +311929,27in 4K Gaming Monitor,1,389.99,12/10/19 08:46,"463 Pine St, Los Angeles, CA 90001" +311930,USB-C Charging Cable,1,11.95,12/17/19 12:36,"482 Madison St, Atlanta, GA 30301" +311931,27in FHD Monitor,1,149.99,12/17/19 17:39,"931 8th St, New York City, NY 10001" +311932,Google Phone,1,600,12/01/19 11:57,"733 Cherry St, New York City, NY 10001" +311933,AA Batteries (4-pack),4,3.84,12/26/19 19:51,"891 South St, Atlanta, GA 30301" +311934,27in FHD Monitor,1,149.99,12/04/19 14:50,"830 Lakeview St, Los Angeles, CA 90001" +311935,Wired Headphones,1,11.99,12/06/19 13:38,"903 11th St, Los Angeles, CA 90001" +311936,Bose SoundSport Headphones,1,99.99,12/25/19 11:15,"577 5th St, Dallas, TX 75001" +311937,AAA Batteries (4-pack),1,2.99,12/20/19 10:21,"107 7th St, Los Angeles, CA 90001" +311938,Lightning Charging Cable,1,14.95,12/29/19 22:42,"531 6th St, Los Angeles, CA 90001" +311939,USB-C Charging Cable,1,11.95,12/15/19 21:11,"266 6th St, San Francisco, CA 94016" +311940,Apple Airpods Headphones,1,150,12/25/19 09:32,"403 Hickory St, New York City, NY 10001" +311941,27in FHD Monitor,1,149.99,12/23/19 15:52,"206 Adams St, Austin, TX 73301" +311942,Apple Airpods Headphones,1,150,12/03/19 01:49,"927 Lincoln St, Atlanta, GA 30301" +311943,20in Monitor,1,109.99,12/03/19 16:03,"320 Pine St, Seattle, WA 98101" +311944,27in 4K Gaming Monitor,1,389.99,12/04/19 20:55,"736 Hill St, Atlanta, GA 30301" +311945,34in Ultrawide Monitor,1,379.99,12/15/19 16:34,"848 Walnut St, Los Angeles, CA 90001" +311946,USB-C Charging Cable,1,11.95,12/27/19 22:17,"631 11th St, New York City, NY 10001" +311947,AAA Batteries (4-pack),1,2.99,12/01/19 23:42,"39 8th St, Seattle, WA 98101" +311948,AA Batteries (4-pack),1,3.84,12/21/19 18:26,"148 Cedar St, Seattle, WA 98101" +311949,AAA Batteries (4-pack),2,2.99,12/05/19 19:46,"852 7th St, San Francisco, CA 94016" +311950,Apple Airpods Headphones,1,150,12/26/19 21:09,"395 Elm St, New York City, NY 10001" +311951,20in Monitor,1,109.99,12/12/19 12:58,"980 Pine St, Los Angeles, CA 90001" +311952,20in Monitor,1,109.99,12/14/19 15:50,"165 Chestnut St, San Francisco, CA 94016" +311953,Bose SoundSport Headphones,1,99.99,12/02/19 12:48,"518 Hill St, Seattle, WA 98101" +311954,AAA Batteries (4-pack),1,2.99,12/08/19 13:32,"879 Lincoln St, Seattle, WA 98101" +311955,Bose SoundSport Headphones,1,99.99,12/07/19 12:55,"564 Forest St, Seattle, WA 98101" +311956,iPhone,1,700,12/05/19 22:55,"779 Adams St, Dallas, TX 75001" +311957,Lightning Charging Cable,1,14.95,12/26/19 11:14,"424 Meadow St, San Francisco, CA 94016" +311958,USB-C Charging Cable,1,11.95,12/20/19 10:06,"376 Wilson St, New York City, NY 10001" +311959,27in FHD Monitor,1,149.99,12/19/19 17:48,"117 Lincoln St, Seattle, WA 98101" +311960,Bose SoundSport Headphones,1,99.99,12/02/19 12:09,"290 Wilson St, Boston, MA 02215" +311961,AAA Batteries (4-pack),1,2.99,12/14/19 13:03,"339 Dogwood St, Portland, OR 97035" +311962,27in FHD Monitor,1,149.99,12/20/19 08:42,"911 Walnut St, Portland, OR 97035" +311963,Lightning Charging Cable,1,14.95,12/07/19 18:18,"133 5th St, San Francisco, CA 94016" +311964,AA Batteries (4-pack),1,3.84,12/18/19 15:00,"375 8th St, New York City, NY 10001" +311965,AAA Batteries (4-pack),2,2.99,12/18/19 20:33,"860 Main St, New York City, NY 10001" +311966,USB-C Charging Cable,1,11.95,12/17/19 14:27,"782 Madison St, Austin, TX 73301" +311967,iPhone,1,700,12/02/19 21:04,"189 7th St, Boston, MA 02215" +311967,Lightning Charging Cable,1,14.95,12/02/19 21:04,"189 7th St, Boston, MA 02215" +311968,Lightning Charging Cable,2,14.95,12/22/19 18:59,"435 North St, New York City, NY 10001" +311969,USB-C Charging Cable,1,11.95,12/09/19 15:26,"149 Hill St, Dallas, TX 75001" +311970,34in Ultrawide Monitor,1,379.99,12/13/19 07:41,"576 9th St, Los Angeles, CA 90001" +311971,AA Batteries (4-pack),3,3.84,12/27/19 19:14,"953 Elm St, Portland, OR 97035" +311972,ThinkPad Laptop,1,999.99,12/12/19 19:19,"433 Jefferson St, New York City, NY 10001" +311973,AA Batteries (4-pack),1,3.84,12/02/19 11:27,"309 South St, Boston, MA 02215" +311974,AA Batteries (4-pack),2,3.84,12/25/19 15:22,"295 4th St, Austin, TX 73301" +311975,ThinkPad Laptop,1,999.99,12/09/19 16:25,"49 1st St, Boston, MA 02215" +311976,Lightning Charging Cable,1,14.95,12/29/19 15:46,"924 Johnson St, New York City, NY 10001" +311977,27in 4K Gaming Monitor,1,389.99,12/17/19 17:41,"574 1st St, Austin, TX 73301" +311978,AAA Batteries (4-pack),1,2.99,12/16/19 23:01,"546 9th St, Atlanta, GA 30301" +311979,34in Ultrawide Monitor,1,379.99,12/20/19 19:59,"865 9th St, Boston, MA 02215" +311980,USB-C Charging Cable,2,11.95,12/07/19 13:48,"867 Adams St, Portland, ME 04101" +311981,27in 4K Gaming Monitor,1,389.99,12/06/19 10:54,"305 Wilson St, Portland, ME 04101" +311982,AA Batteries (4-pack),1,3.84,12/20/19 23:48,"431 West St, Boston, MA 02215" +311983,Apple Airpods Headphones,1,150,12/08/19 16:26,"486 1st St, New York City, NY 10001" +311984,27in 4K Gaming Monitor,1,389.99,12/06/19 21:10,"587 11th St, Los Angeles, CA 90001" +311985,Apple Airpods Headphones,1,150,12/25/19 11:26,"791 South St, Los Angeles, CA 90001" +311986,20in Monitor,1,109.99,12/09/19 12:35,"578 Chestnut St, Boston, MA 02215" +311987,iPhone,1,700,12/28/19 18:32,"102 Pine St, New York City, NY 10001" +311988,Wired Headphones,2,11.99,12/17/19 14:59,"379 Forest St, San Francisco, CA 94016" +311989,AA Batteries (4-pack),2,3.84,12/03/19 12:27,"632 8th St, San Francisco, CA 94016" +311990,20in Monitor,1,109.99,12/28/19 18:23,"664 13th St, San Francisco, CA 94016" +311991,AAA Batteries (4-pack),1,2.99,12/23/19 22:54,"152 Maple St, Atlanta, GA 30301" +311992,Wired Headphones,2,11.99,12/14/19 13:46,"149 10th St, San Francisco, CA 94016" +311993,AAA Batteries (4-pack),1,2.99,12/11/19 11:48,"788 Meadow St, Los Angeles, CA 90001" +311994,Apple Airpods Headphones,1,150,12/17/19 20:27,"872 Cedar St, Dallas, TX 75001" +311995,AA Batteries (4-pack),2,3.84,12/14/19 14:58,"311 Maple St, Atlanta, GA 30301" +311996,Wired Headphones,1,11.99,12/28/19 09:09,"706 Jackson St, New York City, NY 10001" +311997,AAA Batteries (4-pack),1,2.99,12/14/19 14:08,"410 Main St, San Francisco, CA 94016" +311998,AA Batteries (4-pack),1,3.84,12/02/19 18:49,"402 Center St, Seattle, WA 98101" +311999,AA Batteries (4-pack),1,3.84,12/06/19 22:49,"457 Lakeview St, Seattle, WA 98101" +311999,Apple Airpods Headphones,1,150,12/06/19 22:49,"457 Lakeview St, Seattle, WA 98101" +312000,Apple Airpods Headphones,1,150,12/23/19 10:40,"525 6th St, Boston, MA 02215" +312001,Vareebadd Phone,1,400,12/12/19 01:50,"260 8th St, Los Angeles, CA 90001" +312001,Wired Headphones,1,11.99,12/12/19 01:50,"260 8th St, Los Angeles, CA 90001" +312002,AAA Batteries (4-pack),1,2.99,12/30/19 06:40,"36 Wilson St, New York City, NY 10001" +312003,Wired Headphones,1,11.99,12/23/19 11:59,"253 Sunset St, New York City, NY 10001" +312004,Bose SoundSport Headphones,1,99.99,12/16/19 21:52,"75 Cedar St, Los Angeles, CA 90001" +312005,AA Batteries (4-pack),1,3.84,12/04/19 22:24,"807 Spruce St, Los Angeles, CA 90001" +312006,Apple Airpods Headphones,1,150,12/19/19 10:49,"852 Madison St, Boston, MA 02215" +312007,AAA Batteries (4-pack),1,2.99,12/29/19 08:00,"178 South St, Boston, MA 02215" +312008,USB-C Charging Cable,1,11.95,12/03/19 12:01,"447 2nd St, San Francisco, CA 94016" +312009,Apple Airpods Headphones,1,150,12/13/19 01:41,"198 Walnut St, San Francisco, CA 94016" +312010,Lightning Charging Cable,1,14.95,12/05/19 19:41,"256 River St, Portland, OR 97035" +312011,ThinkPad Laptop,1,999.99,12/07/19 15:55,"584 5th St, San Francisco, CA 94016" +312012,Macbook Pro Laptop,1,1700,12/10/19 12:15,"31 Adams St, New York City, NY 10001" +312013,USB-C Charging Cable,1,11.95,12/11/19 08:54,"679 River St, Austin, TX 73301" +312014,AAA Batteries (4-pack),1,2.99,12/19/19 09:38,"232 14th St, San Francisco, CA 94016" +312015,AA Batteries (4-pack),1,3.84,12/29/19 10:20,"454 10th St, San Francisco, CA 94016" +312016,Wired Headphones,1,11.99,12/23/19 11:02,"566 Lakeview St, New York City, NY 10001" +312017,AAA Batteries (4-pack),1,2.99,12/07/19 21:00,"68 Hill St, Boston, MA 02215" +312018,Bose SoundSport Headphones,1,99.99,12/31/19 06:16,"400 South St, San Francisco, CA 94016" +312019,27in 4K Gaming Monitor,1,389.99,12/26/19 21:02,"636 14th St, Los Angeles, CA 90001" +312020,AA Batteries (4-pack),2,3.84,12/23/19 19:04,"282 Jefferson St, Atlanta, GA 30301" +312021,AAA Batteries (4-pack),4,2.99,12/22/19 15:47,"906 Lincoln St, San Francisco, CA 94016" +312022,Lightning Charging Cable,1,14.95,12/18/19 19:32,"228 4th St, Atlanta, GA 30301" +312023,USB-C Charging Cable,2,11.95,12/29/19 21:40,"473 Johnson St, San Francisco, CA 94016" +312024,Apple Airpods Headphones,1,150,12/09/19 12:04,"914 6th St, Portland, OR 97035" +312025,Lightning Charging Cable,1,14.95,12/09/19 17:05,"718 Elm St, Seattle, WA 98101" +312026,USB-C Charging Cable,1,11.95,12/29/19 22:33,"21 Forest St, San Francisco, CA 94016" +312027,Macbook Pro Laptop,1,1700,12/19/19 22:49,"121 River St, New York City, NY 10001" +312028,AAA Batteries (4-pack),2,2.99,12/04/19 09:59,"525 13th St, Portland, OR 97035" +312029,AA Batteries (4-pack),1,3.84,12/19/19 19:35,"788 Lincoln St, Dallas, TX 75001" +312030,AA Batteries (4-pack),1,3.84,12/30/19 22:56,"859 Cherry St, Portland, OR 97035" +312031,USB-C Charging Cable,1,11.95,12/01/19 12:53,"55 Johnson St, New York City, NY 10001" +312032,27in FHD Monitor,1,149.99,12/30/19 06:29,"886 Main St, San Francisco, CA 94016" +312033,Lightning Charging Cable,1,14.95,12/19/19 14:54,"685 Cedar St, Boston, MA 02215" +312034,Lightning Charging Cable,1,14.95,12/31/19 15:18,"309 9th St, San Francisco, CA 94016" +312035,AA Batteries (4-pack),2,3.84,12/28/19 23:41,"484 Hickory St, Boston, MA 02215" +312036,AA Batteries (4-pack),1,3.84,12/29/19 12:34,"793 South St, Boston, MA 02215" +312037,Flatscreen TV,1,300,12/11/19 22:23,"538 Spruce St, San Francisco, CA 94016" +312038,Lightning Charging Cable,1,14.95,12/05/19 20:09,"993 Washington St, San Francisco, CA 94016" +312039,USB-C Charging Cable,2,11.95,12/26/19 13:54,"826 Cedar St, New York City, NY 10001" +312040,Wired Headphones,1,11.99,12/13/19 23:26,"203 10th St, Los Angeles, CA 90001" +312041,Lightning Charging Cable,1,14.95,12/06/19 23:19,"702 Madison St, San Francisco, CA 94016" +312042,Flatscreen TV,1,300,12/21/19 00:21,"687 River St, Los Angeles, CA 90001" +312043,Macbook Pro Laptop,1,1700,12/19/19 09:31,"292 Hill St, Los Angeles, CA 90001" +312044,27in FHD Monitor,1,149.99,12/17/19 10:53,"513 Chestnut St, New York City, NY 10001" +312045,Lightning Charging Cable,1,14.95,12/19/19 13:52,"413 Lincoln St, Atlanta, GA 30301" +312046,Apple Airpods Headphones,1,150,12/19/19 13:39,"452 Jefferson St, San Francisco, CA 94016" +312047,AAA Batteries (4-pack),2,2.99,12/19/19 14:21,"297 Sunset St, Portland, OR 97035" +312048,Wired Headphones,1,11.99,12/31/19 18:33,"336 7th St, Dallas, TX 75001" +312049,Bose SoundSport Headphones,1,99.99,12/15/19 05:24,"365 North St, Atlanta, GA 30301" +312050,Flatscreen TV,1,300,12/08/19 14:39,"464 Pine St, Seattle, WA 98101" +312051,34in Ultrawide Monitor,1,379.99,12/13/19 20:57,"399 Washington St, Portland, OR 97035" +312052,USB-C Charging Cable,1,11.95,12/31/19 20:04,"77 Lakeview St, San Francisco, CA 94016" +312053,Flatscreen TV,1,300,12/01/19 23:22,"748 Dogwood St, Austin, TX 73301" +312054,Lightning Charging Cable,1,14.95,12/30/19 13:13,"557 Highland St, San Francisco, CA 94016" +312055,Wired Headphones,1,11.99,12/20/19 13:31,"71 1st St, Los Angeles, CA 90001" +312056,Lightning Charging Cable,1,14.95,12/08/19 21:53,"223 Hill St, San Francisco, CA 94016" +312057,27in FHD Monitor,1,149.99,12/10/19 14:22,"135 Walnut St, San Francisco, CA 94016" +312058,Bose SoundSport Headphones,1,99.99,12/07/19 23:05,"254 7th St, San Francisco, CA 94016" +312059,Bose SoundSport Headphones,1,99.99,12/04/19 15:09,"371 Center St, Los Angeles, CA 90001" +312060,AA Batteries (4-pack),1,3.84,12/01/19 12:38,"896 Jefferson St, Atlanta, GA 30301" +312061,Lightning Charging Cable,1,14.95,12/29/19 12:19,"974 5th St, New York City, NY 10001" +312062,Lightning Charging Cable,1,14.95,12/02/19 22:06,"272 Spruce St, Los Angeles, CA 90001" +312063,27in FHD Monitor,1,149.99,12/11/19 20:43,"793 Madison St, San Francisco, CA 94016" +312064,AA Batteries (4-pack),1,3.84,12/04/19 19:05,"698 11th St, San Francisco, CA 94016" +312065,AAA Batteries (4-pack),3,2.99,12/12/19 16:53,"360 Madison St, Atlanta, GA 30301" +312066,AAA Batteries (4-pack),2,2.99,12/20/19 10:37,"149 Dogwood St, Seattle, WA 98101" +312067,Bose SoundSport Headphones,1,99.99,12/26/19 21:04,"349 7th St, Dallas, TX 75001" +312068,Wired Headphones,1,11.99,12/13/19 21:47,"218 8th St, Atlanta, GA 30301" +312069,iPhone,2,700,12/07/19 09:24,"289 Park St, Austin, TX 73301" +312070,Apple Airpods Headphones,1,150,12/25/19 08:20,"294 2nd St, San Francisco, CA 94016" +312071,Macbook Pro Laptop,1,1700,12/07/19 15:24,"430 South St, Atlanta, GA 30301" +312072,USB-C Charging Cable,1,11.95,12/04/19 13:53,"695 4th St, San Francisco, CA 94016" +312073,USB-C Charging Cable,1,11.95,12/11/19 17:49,"554 5th St, Atlanta, GA 30301" +312074,AA Batteries (4-pack),3,3.84,12/15/19 14:02,"731 6th St, Seattle, WA 98101" +312075,AA Batteries (4-pack),1,3.84,12/02/19 10:02,"678 Jefferson St, Portland, ME 04101" +312076,AAA Batteries (4-pack),1,2.99,12/06/19 22:17,"691 11th St, Atlanta, GA 30301" +312077,AA Batteries (4-pack),2,3.84,12/14/19 19:15,"497 Washington St, Los Angeles, CA 90001" +312078,AAA Batteries (4-pack),1,2.99,12/29/19 13:18,"313 Meadow St, San Francisco, CA 94016" +312079,AAA Batteries (4-pack),1,2.99,12/17/19 06:30,"469 Johnson St, Los Angeles, CA 90001" +312079,Macbook Pro Laptop,1,1700,12/17/19 06:30,"469 Johnson St, Los Angeles, CA 90001" +312080,iPhone,1,700,12/31/19 22:05,"576 Main St, Los Angeles, CA 90001" +312081,27in 4K Gaming Monitor,1,389.99,12/23/19 13:29,"937 13th St, Los Angeles, CA 90001" +312082,Bose SoundSport Headphones,1,99.99,12/14/19 14:04,"261 Forest St, San Francisco, CA 94016" +312083,iPhone,1,700,12/14/19 11:18,"35 Lincoln St, New York City, NY 10001" +312084,AA Batteries (4-pack),1,3.84,12/04/19 16:19,"185 10th St, San Francisco, CA 94016" +312085,AA Batteries (4-pack),3,3.84,12/20/19 16:07,"378 7th St, Portland, OR 97035" +312086,Apple Airpods Headphones,1,150,12/19/19 20:22,"190 Park St, Boston, MA 02215" +312087,27in FHD Monitor,1,149.99,12/03/19 10:44,"179 Spruce St, Boston, MA 02215" +312088,20in Monitor,1,109.99,12/17/19 10:25,"566 5th St, New York City, NY 10001" +312089,Wired Headphones,1,11.99,12/10/19 10:37,"610 Johnson St, New York City, NY 10001" +312090,ThinkPad Laptop,1,999.99,12/01/19 16:36,"633 Church St, Dallas, TX 75001" +312091,AAA Batteries (4-pack),1,2.99,12/16/19 17:10,"181 Maple St, Portland, OR 97035" +312092,USB-C Charging Cable,1,11.95,12/25/19 18:26,"933 West St, New York City, NY 10001" +312093,iPhone,1,700,12/03/19 15:25,"443 Jackson St, Boston, MA 02215" +312093,Lightning Charging Cable,1,14.95,12/03/19 15:25,"443 Jackson St, Boston, MA 02215" +312094,AA Batteries (4-pack),1,3.84,12/08/19 14:00,"326 6th St, Boston, MA 02215" +312095,AAA Batteries (4-pack),2,2.99,12/13/19 15:16,"566 Cedar St, New York City, NY 10001" +312096,Bose SoundSport Headphones,1,99.99,12/30/19 14:19,"721 Johnson St, New York City, NY 10001" +312097,USB-C Charging Cable,2,11.95,12/10/19 13:20,"597 Church St, Boston, MA 02215" +312098,Apple Airpods Headphones,1,150,12/11/19 19:54,"654 10th St, Los Angeles, CA 90001" +312099,AAA Batteries (4-pack),1,2.99,12/18/19 15:25,"750 Center St, San Francisco, CA 94016" +312099,USB-C Charging Cable,1,11.95,12/18/19 15:25,"750 Center St, San Francisco, CA 94016" +312100,34in Ultrawide Monitor,1,379.99,12/12/19 15:27,"471 Jackson St, Atlanta, GA 30301" +312101,USB-C Charging Cable,1,11.95,12/22/19 20:01,"175 Madison St, San Francisco, CA 94016" +312102,Lightning Charging Cable,1,14.95,12/21/19 09:50,"425 Madison St, Atlanta, GA 30301" +312103,USB-C Charging Cable,1,11.95,12/22/19 12:55,"292 Ridge St, Boston, MA 02215" +312104,Bose SoundSport Headphones,1,99.99,12/01/19 16:16,"645 South St, San Francisco, CA 94016" +312105,34in Ultrawide Monitor,1,379.99,12/26/19 11:53,"141 Hill St, San Francisco, CA 94016" +312106,27in FHD Monitor,1,149.99,12/28/19 16:59,"345 Lincoln St, Austin, TX 73301" +312107,Google Phone,1,600,12/05/19 08:26,"649 Hickory St, San Francisco, CA 94016" +312108,AAA Batteries (4-pack),1,2.99,12/31/19 14:17,"166 Lake St, Dallas, TX 75001" +312108,ThinkPad Laptop,1,999.99,12/31/19 14:17,"166 Lake St, Dallas, TX 75001" +312109,Wired Headphones,1,11.99,12/06/19 20:41,"339 Lakeview St, San Francisco, CA 94016" +312110,AA Batteries (4-pack),1,3.84,12/28/19 13:08,"114 North St, San Francisco, CA 94016" +312111,Google Phone,1,600,12/02/19 09:41,"530 13th St, Portland, OR 97035" +312112,Wired Headphones,1,11.99,12/27/19 23:09,"635 12th St, Seattle, WA 98101" +312113,AA Batteries (4-pack),1,3.84,12/27/19 08:33,"113 Chestnut St, Los Angeles, CA 90001" +312114,AA Batteries (4-pack),2,3.84,12/27/19 19:27,"71 Highland St, San Francisco, CA 94016" +312115,Bose SoundSport Headphones,1,99.99,12/12/19 17:06,"847 Willow St, San Francisco, CA 94016" +312116,Bose SoundSport Headphones,1,99.99,12/03/19 08:33,"867 Main St, Atlanta, GA 30301" +312117,Wired Headphones,1,11.99,12/12/19 18:45,"743 Johnson St, Austin, TX 73301" +312118,iPhone,1,700,12/22/19 17:23,"562 1st St, Boston, MA 02215" +312119,AAA Batteries (4-pack),1,2.99,12/25/19 10:54,"408 8th St, Dallas, TX 75001" +312120,Wired Headphones,1,11.99,12/19/19 12:07,"855 Elm St, Los Angeles, CA 90001" +312121,Google Phone,1,600,12/14/19 17:30,"217 Dogwood St, New York City, NY 10001" +312122,Apple Airpods Headphones,1,150,12/13/19 11:50,"396 Forest St, Atlanta, GA 30301" +312123,Vareebadd Phone,1,400,12/28/19 16:19,"497 West St, New York City, NY 10001" +312123,USB-C Charging Cable,2,11.95,12/28/19 16:19,"497 West St, New York City, NY 10001" +312124,27in FHD Monitor,1,149.99,12/04/19 22:33,"186 8th St, San Francisco, CA 94016" +312125,Wired Headphones,1,11.99,12/15/19 00:21,"806 Lake St, Boston, MA 02215" +312126,Bose SoundSport Headphones,1,99.99,12/19/19 10:13,"792 Pine St, Dallas, TX 75001" +312127,Lightning Charging Cable,1,14.95,12/10/19 14:51,"920 Johnson St, San Francisco, CA 94016" +312128,USB-C Charging Cable,1,11.95,12/08/19 17:49,"183 Lake St, Seattle, WA 98101" +312129,Lightning Charging Cable,1,14.95,12/27/19 19:01,"308 Wilson St, San Francisco, CA 94016" +312130,AA Batteries (4-pack),1,3.84,12/19/19 18:05,"811 Main St, Dallas, TX 75001" +312131,27in FHD Monitor,1,149.99,12/16/19 07:57,"856 1st St, Boston, MA 02215" +312132,20in Monitor,1,109.99,12/14/19 02:24,"535 River St, Los Angeles, CA 90001" +312133,Macbook Pro Laptop,1,1700,12/06/19 18:16,"110 Meadow St, Boston, MA 02215" +312134,AA Batteries (4-pack),1,3.84,12/26/19 09:25,"503 Center St, Los Angeles, CA 90001" +312135,AAA Batteries (4-pack),1,2.99,12/07/19 10:53,"942 Spruce St, New York City, NY 10001" +312136,AAA Batteries (4-pack),1,2.99,12/23/19 09:22,"712 14th St, San Francisco, CA 94016" +312137,Lightning Charging Cable,1,14.95,12/13/19 21:19,"530 11th St, San Francisco, CA 94016" +312138,AAA Batteries (4-pack),1,2.99,12/11/19 20:20,"289 Washington St, Los Angeles, CA 90001" +312139,USB-C Charging Cable,1,11.95,12/27/19 12:04,"150 Center St, Seattle, WA 98101" +312140,Lightning Charging Cable,1,14.95,12/02/19 21:23,"503 Center St, Atlanta, GA 30301" +312141,Wired Headphones,1,11.99,12/04/19 14:29,"390 Park St, Boston, MA 02215" +312142,AAA Batteries (4-pack),1,2.99,12/19/19 13:52,"194 10th St, San Francisco, CA 94016" +312143,Bose SoundSport Headphones,1,99.99,12/04/19 07:33,"835 Dogwood St, Boston, MA 02215" +312144,AAA Batteries (4-pack),1,2.99,12/23/19 17:25,"543 12th St, San Francisco, CA 94016" +312145,Google Phone,1,600,12/20/19 14:19,"434 13th St, Los Angeles, CA 90001" +312146,AAA Batteries (4-pack),1,2.99,12/05/19 16:58,"344 Main St, Portland, OR 97035" +312147,USB-C Charging Cable,2,11.95,12/09/19 13:12,"461 11th St, San Francisco, CA 94016" +312148,AAA Batteries (4-pack),5,2.99,12/12/19 08:45,"62 Walnut St, Atlanta, GA 30301" +312149,Vareebadd Phone,1,400,12/26/19 02:21,"245 Walnut St, San Francisco, CA 94016" +312149,USB-C Charging Cable,1,11.95,12/26/19 02:21,"245 Walnut St, San Francisco, CA 94016" +312150,Vareebadd Phone,1,400,01/01/20 00:14,"187 1st St, Los Angeles, CA 90001" +312151,AAA Batteries (4-pack),1,2.99,12/12/19 13:13,"934 River St, San Francisco, CA 94016" +312152,AA Batteries (4-pack),3,3.84,12/16/19 12:56,"142 Highland St, Boston, MA 02215" +312153,Lightning Charging Cable,1,14.95,12/17/19 13:54,"589 Forest St, Portland, OR 97035" +312154,iPhone,1,700,12/11/19 17:07,"173 Elm St, New York City, NY 10001" +312154,Apple Airpods Headphones,1,150,12/11/19 17:07,"173 Elm St, New York City, NY 10001" +312155,USB-C Charging Cable,1,11.95,12/16/19 16:24,"336 Park St, San Francisco, CA 94016" +312156,Flatscreen TV,1,300,12/09/19 16:43,"361 Maple St, Austin, TX 73301" +312157,USB-C Charging Cable,1,11.95,12/07/19 23:48,"764 Lake St, Atlanta, GA 30301" +312158,USB-C Charging Cable,1,11.95,12/31/19 19:56,"902 Dogwood St, Austin, TX 73301" +312159,34in Ultrawide Monitor,1,379.99,12/20/19 09:54,"149 Main St, Austin, TX 73301" +312160,AAA Batteries (4-pack),1,2.99,12/01/19 18:55,"912 Washington St, Dallas, TX 75001" +312161,Wired Headphones,1,11.99,12/03/19 21:17,"962 9th St, Dallas, TX 75001" +312162,27in 4K Gaming Monitor,1,389.99,12/26/19 16:24,"464 Adams St, Los Angeles, CA 90001" +312163,AA Batteries (4-pack),1,3.84,12/10/19 17:02,"790 Spruce St, San Francisco, CA 94016" +312164,USB-C Charging Cable,2,11.95,12/08/19 11:27,"180 11th St, Atlanta, GA 30301" +312165,AAA Batteries (4-pack),1,2.99,12/11/19 02:32,"963 Jefferson St, Los Angeles, CA 90001" +312166,27in 4K Gaming Monitor,1,389.99,12/06/19 02:26,"582 Hill St, Seattle, WA 98101" +312167,USB-C Charging Cable,1,11.95,01/01/20 00:10,"510 Dogwood St, Portland, OR 97035" +312168,Wired Headphones,1,11.99,12/03/19 16:07,"991 Lakeview St, Atlanta, GA 30301" +312169,Lightning Charging Cable,1,14.95,12/08/19 18:43,"357 11th St, New York City, NY 10001" +312170,Apple Airpods Headphones,1,150,12/10/19 22:12,"606 5th St, Atlanta, GA 30301" +312171,iPhone,1,700,12/25/19 14:25,"473 Meadow St, New York City, NY 10001" +312172,AAA Batteries (4-pack),1,2.99,12/23/19 07:53,"876 Lake St, Atlanta, GA 30301" +312172,Google Phone,1,600,12/23/19 07:53,"876 Lake St, Atlanta, GA 30301" +312173,USB-C Charging Cable,1,11.95,12/18/19 04:56,"912 7th St, Dallas, TX 75001" +312174,USB-C Charging Cable,1,11.95,12/30/19 16:56,"18 Meadow St, Portland, OR 97035" +312175,Vareebadd Phone,1,400,12/13/19 18:59,"703 North St, Atlanta, GA 30301" +312175,AAA Batteries (4-pack),1,2.99,12/13/19 18:59,"703 North St, Atlanta, GA 30301" +312176,AA Batteries (4-pack),1,3.84,12/10/19 10:21,"819 1st St, Los Angeles, CA 90001" +312177,Wired Headphones,1,11.99,12/28/19 20:27,"342 Elm St, New York City, NY 10001" +312178,Apple Airpods Headphones,1,150,12/11/19 12:59,"488 Madison St, Dallas, TX 75001" +312179,27in 4K Gaming Monitor,1,389.99,12/21/19 15:51,"661 Maple St, Los Angeles, CA 90001" +312180,USB-C Charging Cable,1,11.95,12/01/19 08:31,"723 Jefferson St, Dallas, TX 75001" +312181,AA Batteries (4-pack),1,3.84,12/19/19 19:18,"52 River St, Los Angeles, CA 90001" +312182,Wired Headphones,1,11.99,12/22/19 08:30,"745 Main St, Dallas, TX 75001" +312183,AA Batteries (4-pack),1,3.84,12/24/19 12:36,"767 South St, Atlanta, GA 30301" +312184,Lightning Charging Cable,1,14.95,12/29/19 17:28,"398 Chestnut St, San Francisco, CA 94016" +312185,Apple Airpods Headphones,1,150,12/19/19 18:12,"245 4th St, Portland, ME 04101" +312186,Wired Headphones,2,11.99,12/04/19 22:29,"691 12th St, Los Angeles, CA 90001" +312187,27in 4K Gaming Monitor,1,389.99,12/07/19 22:09,"892 Meadow St, Portland, OR 97035" +312188,iPhone,1,700,12/10/19 12:06,"407 Sunset St, San Francisco, CA 94016" +312189,AA Batteries (4-pack),1,3.84,12/03/19 07:59,"665 Pine St, Los Angeles, CA 90001" +312190,AA Batteries (4-pack),1,3.84,12/08/19 21:05,"51 10th St, Boston, MA 02215" +312191,Wired Headphones,1,11.99,12/24/19 07:59,"68 6th St, San Francisco, CA 94016" +312192,34in Ultrawide Monitor,1,379.99,12/25/19 12:40,"201 Cherry St, San Francisco, CA 94016" +312193,AAA Batteries (4-pack),3,2.99,12/23/19 09:14,"60 10th St, San Francisco, CA 94016" +312194,AAA Batteries (4-pack),1,2.99,12/20/19 16:27,"32 Lakeview St, Portland, ME 04101" +312195,27in FHD Monitor,1,149.99,12/21/19 17:17,"913 West St, Los Angeles, CA 90001" +312196,USB-C Charging Cable,1,11.95,12/08/19 20:15,"246 Jackson St, Dallas, TX 75001" +312197,USB-C Charging Cable,1,11.95,12/14/19 23:33,"749 Walnut St, San Francisco, CA 94016" +312198,Apple Airpods Headphones,1,150,12/31/19 10:46,"504 River St, Los Angeles, CA 90001" +312199,AAA Batteries (4-pack),2,2.99,12/28/19 09:53,"861 Lincoln St, San Francisco, CA 94016" +312200,AA Batteries (4-pack),1,3.84,12/07/19 18:50,"592 Elm St, Austin, TX 73301" +312201,Lightning Charging Cable,1,14.95,12/04/19 11:30,"641 West St, Atlanta, GA 30301" +312202,Vareebadd Phone,1,400,12/05/19 14:40,"800 South St, Austin, TX 73301" +312203,AA Batteries (4-pack),1,3.84,12/28/19 22:35,"741 5th St, Dallas, TX 75001" +312204,USB-C Charging Cable,1,11.95,12/30/19 22:27,"307 Highland St, Portland, OR 97035" +312205,USB-C Charging Cable,1,11.95,12/17/19 11:11,"166 Main St, Los Angeles, CA 90001" +312206,34in Ultrawide Monitor,1,379.99,12/31/19 19:03,"853 Elm St, New York City, NY 10001" +312207,AA Batteries (4-pack),1,3.84,12/23/19 08:37,"879 9th St, Boston, MA 02215" +312208,Lightning Charging Cable,1,14.95,12/27/19 10:39,"992 Elm St, San Francisco, CA 94016" +312209,Apple Airpods Headphones,1,150,12/19/19 22:58,"413 Wilson St, Los Angeles, CA 90001" +312210,USB-C Charging Cable,1,11.95,12/07/19 11:26,"888 Washington St, Boston, MA 02215" +312211,Flatscreen TV,1,300,12/02/19 20:09,"755 West St, Boston, MA 02215" +312212,Google Phone,1,600,12/16/19 15:03,"456 Meadow St, San Francisco, CA 94016" +312212,USB-C Charging Cable,1,11.95,12/16/19 15:03,"456 Meadow St, San Francisco, CA 94016" +312213,AAA Batteries (4-pack),1,2.99,12/12/19 21:19,"64 Lincoln St, Portland, OR 97035" +312214,USB-C Charging Cable,1,11.95,12/21/19 15:23,"409 12th St, Los Angeles, CA 90001" +312215,USB-C Charging Cable,1,11.95,12/20/19 18:16,"993 Cherry St, New York City, NY 10001" +312216,Bose SoundSport Headphones,1,99.99,12/14/19 21:10,"864 Adams St, Boston, MA 02215" +312217,Flatscreen TV,1,300,12/27/19 02:46,"435 Jackson St, San Francisco, CA 94016" +312218,AA Batteries (4-pack),1,3.84,12/28/19 20:03,"281 Chestnut St, Dallas, TX 75001" +312219,Bose SoundSport Headphones,1,99.99,12/02/19 08:49,"154 South St, San Francisco, CA 94016" +312220,AAA Batteries (4-pack),1,2.99,12/16/19 11:44,"389 Main St, New York City, NY 10001" +312221,Bose SoundSport Headphones,1,99.99,12/14/19 19:44,"349 13th St, Los Angeles, CA 90001" +312222,LG Dryer,1,600.0,12/25/19 14:29,"975 2nd St, Atlanta, GA 30301" +312223,34in Ultrawide Monitor,1,379.99,12/20/19 09:06,"102 Main St, Dallas, TX 75001" +312224,Wired Headphones,1,11.99,12/24/19 00:50,"122 6th St, Portland, ME 04101" +312225,USB-C Charging Cable,2,11.95,12/23/19 21:12,"132 6th St, New York City, NY 10001" +312226,Wired Headphones,1,11.99,12/19/19 20:44,"20 8th St, San Francisco, CA 94016" +312227,27in 4K Gaming Monitor,1,389.99,12/03/19 14:23,"539 Sunset St, San Francisco, CA 94016" +312228,Bose SoundSport Headphones,1,99.99,12/13/19 08:59,"742 Hickory St, Atlanta, GA 30301" +312229,AA Batteries (4-pack),1,3.84,12/02/19 18:54,"804 Dogwood St, San Francisco, CA 94016" +312230,Google Phone,1,600,12/02/19 17:28,"34 Hickory St, San Francisco, CA 94016" +312231,AA Batteries (4-pack),2,3.84,12/18/19 22:08,"781 Ridge St, Los Angeles, CA 90001" +312232,27in 4K Gaming Monitor,1,389.99,12/20/19 10:32,"185 West St, Seattle, WA 98101" +312233,Wired Headphones,1,11.99,12/17/19 11:56,"44 4th St, New York City, NY 10001" +312234,Lightning Charging Cable,1,14.95,12/20/19 10:16,"853 1st St, San Francisco, CA 94016" +312235,AAA Batteries (4-pack),5,2.99,12/14/19 19:49,"275 Lake St, Los Angeles, CA 90001" +312236,AAA Batteries (4-pack),1,2.99,12/10/19 12:20,"775 Main St, Los Angeles, CA 90001" +312237,34in Ultrawide Monitor,1,379.99,12/13/19 12:41,"880 Forest St, San Francisco, CA 94016" +312238,Flatscreen TV,1,300,12/21/19 09:20,"567 Chestnut St, Seattle, WA 98101" +312239,AAA Batteries (4-pack),1,2.99,12/23/19 17:10,"997 13th St, San Francisco, CA 94016" +312240,USB-C Charging Cable,1,11.95,12/11/19 17:13,"426 Forest St, Seattle, WA 98101" +312241,Apple Airpods Headphones,1,150,12/19/19 10:19,"783 12th St, Boston, MA 02215" +312242,Apple Airpods Headphones,1,150,12/15/19 13:07,"55 6th St, Atlanta, GA 30301" +312243,Google Phone,1,600,12/11/19 19:21,"119 Forest St, Dallas, TX 75001" +312244,27in FHD Monitor,1,149.99,12/03/19 18:05,"753 7th St, Portland, OR 97035" +312245,Wired Headphones,1,11.99,12/31/19 10:41,"896 12th St, Boston, MA 02215" +312246,Wired Headphones,2,11.99,12/21/19 13:37,"288 Dogwood St, San Francisco, CA 94016" +312247,USB-C Charging Cable,1,11.95,12/14/19 11:46,"720 Madison St, New York City, NY 10001" +312248,AA Batteries (4-pack),1,3.84,12/14/19 20:47,"567 Pine St, Austin, TX 73301" +312249,27in FHD Monitor,1,149.99,12/05/19 18:18,"806 River St, Portland, OR 97035" +312250,Lightning Charging Cable,1,14.95,12/18/19 12:59,"314 Hickory St, New York City, NY 10001" +312251,Lightning Charging Cable,1,14.95,12/31/19 15:59,"604 Cedar St, San Francisco, CA 94016" +312252,Flatscreen TV,1,300,12/09/19 20:51,"375 Highland St, Seattle, WA 98101" +312253,Wired Headphones,1,11.99,12/23/19 21:57,"636 West St, Portland, ME 04101" +312254,Lightning Charging Cable,1,14.95,12/23/19 22:15,"211 Cherry St, Los Angeles, CA 90001" +312255,AAA Batteries (4-pack),1,2.99,12/20/19 12:47,"186 13th St, Atlanta, GA 30301" +312256,Lightning Charging Cable,1,14.95,12/02/19 20:53,"53 Cherry St, Atlanta, GA 30301" +312257,Google Phone,1,600,12/10/19 23:15,"833 4th St, New York City, NY 10001" +312258,Apple Airpods Headphones,1,150,12/13/19 06:33,"882 Jackson St, San Francisco, CA 94016" +312259,AAA Batteries (4-pack),2,2.99,12/31/19 16:29,"569 Pine St, San Francisco, CA 94016" +312260,Lightning Charging Cable,1,14.95,12/07/19 08:00,"881 9th St, Seattle, WA 98101" +312261,USB-C Charging Cable,1,11.95,12/30/19 18:02,"962 9th St, Atlanta, GA 30301" +312262,iPhone,1,700,12/13/19 15:50,"444 Dogwood St, New York City, NY 10001" +312262,Lightning Charging Cable,1,14.95,12/13/19 15:50,"444 Dogwood St, New York City, NY 10001" +312263,Wired Headphones,1,11.99,12/16/19 17:54,"856 Walnut St, Dallas, TX 75001" +312264,Vareebadd Phone,1,400,12/05/19 20:45,"534 9th St, Seattle, WA 98101" +312265,USB-C Charging Cable,1,11.95,12/03/19 22:18,"249 Madison St, Portland, OR 97035" +312266,USB-C Charging Cable,1,11.95,12/13/19 15:53,"378 5th St, San Francisco, CA 94016" +312267,USB-C Charging Cable,1,11.95,12/22/19 13:27,"453 Lake St, New York City, NY 10001" +312268,Wired Headphones,1,11.99,12/23/19 21:59,"999 Cedar St, Austin, TX 73301" +312269,Google Phone,1,600,12/28/19 13:47,"879 Wilson St, San Francisco, CA 94016" +312270,Wired Headphones,2,11.99,12/14/19 15:16,"902 Forest St, Portland, OR 97035" +312271,Wired Headphones,1,11.99,12/02/19 18:04,"551 5th St, Atlanta, GA 30301" +312272,Lightning Charging Cable,1,14.95,12/14/19 20:06,"309 Willow St, New York City, NY 10001" +312273,Apple Airpods Headphones,1,150,12/06/19 15:36,"75 Jefferson St, Seattle, WA 98101" +312274,Wired Headphones,1,11.99,12/20/19 09:48,"645 River St, San Francisco, CA 94016" +312275,Lightning Charging Cable,1,14.95,12/24/19 13:38,"88 Hill St, Atlanta, GA 30301" +312276,AA Batteries (4-pack),1,3.84,12/05/19 13:51,"851 Lincoln St, Boston, MA 02215" +312277,iPhone,1,700,12/09/19 12:41,"328 Church St, San Francisco, CA 94016" +312278,Wired Headphones,1,11.99,12/23/19 16:22,"720 Willow St, Boston, MA 02215" +312279,Macbook Pro Laptop,1,1700,12/18/19 20:07,"813 South St, Los Angeles, CA 90001" +312280,Wired Headphones,1,11.99,12/25/19 16:50,"594 9th St, Los Angeles, CA 90001" +312281,Google Phone,1,600,12/26/19 14:55,"944 8th St, Boston, MA 02215" +312281,USB-C Charging Cable,1,11.95,12/26/19 14:55,"944 8th St, Boston, MA 02215" +312281,Bose SoundSport Headphones,1,99.99,12/26/19 14:55,"944 8th St, Boston, MA 02215" +312282,Lightning Charging Cable,1,14.95,12/06/19 11:45,"267 Adams St, Dallas, TX 75001" +312283,Flatscreen TV,1,300,12/30/19 19:14,"572 Spruce St, New York City, NY 10001" +312284,Apple Airpods Headphones,1,150,12/24/19 13:26,"803 Chestnut St, Los Angeles, CA 90001" +312285,AA Batteries (4-pack),2,3.84,12/23/19 07:31,"241 Cedar St, Los Angeles, CA 90001" +312286,AA Batteries (4-pack),2,3.84,12/04/19 21:40,"147 11th St, New York City, NY 10001" +312287,Apple Airpods Headphones,1,150,12/26/19 14:49,"656 9th St, San Francisco, CA 94016" +312288,27in 4K Gaming Monitor,1,389.99,12/15/19 17:48,"12 14th St, San Francisco, CA 94016" +312289,Lightning Charging Cable,2,14.95,12/29/19 13:01,"228 7th St, Los Angeles, CA 90001" +312290,Bose SoundSport Headphones,1,99.99,12/09/19 15:32,"717 South St, Boston, MA 02215" +312291,Wired Headphones,1,11.99,12/23/19 15:48,"809 Jefferson St, Atlanta, GA 30301" +312292,USB-C Charging Cable,1,11.95,12/29/19 01:36,"600 Johnson St, Seattle, WA 98101" +312293,27in FHD Monitor,1,149.99,12/05/19 12:48,"25 12th St, Boston, MA 02215" +312294,Flatscreen TV,1,300,12/31/19 09:56,"962 Center St, Los Angeles, CA 90001" +312295,AA Batteries (4-pack),1,3.84,12/22/19 22:49,"798 7th St, Boston, MA 02215" +312296,Wired Headphones,1,11.99,12/29/19 18:41,"983 Lincoln St, Dallas, TX 75001" +312297,Apple Airpods Headphones,1,150,12/23/19 12:01,"344 Jefferson St, New York City, NY 10001" +312298,AAA Batteries (4-pack),1,2.99,12/12/19 12:27,"332 Hill St, Atlanta, GA 30301" +312299,34in Ultrawide Monitor,1,379.99,12/03/19 17:46,"960 River St, New York City, NY 10001" +312300,AA Batteries (4-pack),3,3.84,12/22/19 19:11,"890 West St, Boston, MA 02215" +312301,USB-C Charging Cable,1,11.95,12/07/19 19:40,"256 Hill St, Portland, ME 04101" +312302,Wired Headphones,1,11.99,12/06/19 11:51,"822 Madison St, San Francisco, CA 94016" +312303,Lightning Charging Cable,2,14.95,12/20/19 18:46,"289 13th St, Seattle, WA 98101" +312304,AAA Batteries (4-pack),3,2.99,12/06/19 21:50,"874 13th St, Los Angeles, CA 90001" +312305,Wired Headphones,1,11.99,12/23/19 15:30,"229 Meadow St, San Francisco, CA 94016" +312306,AA Batteries (4-pack),1,3.84,12/06/19 19:15,"716 Sunset St, Seattle, WA 98101" +312307,AAA Batteries (4-pack),1,2.99,12/07/19 22:31,"435 Center St, Dallas, TX 75001" +312308,27in FHD Monitor,1,149.99,12/26/19 20:32,"982 Highland St, Dallas, TX 75001" +312309,AA Batteries (4-pack),1,3.84,12/16/19 11:40,"978 Church St, Atlanta, GA 30301" +312310,AAA Batteries (4-pack),1,2.99,12/18/19 07:47,"945 Wilson St, Dallas, TX 75001" +312311,Bose SoundSport Headphones,1,99.99,12/22/19 20:38,"404 Willow St, San Francisco, CA 94016" +312312,AAA Batteries (4-pack),2,2.99,12/18/19 20:45,"826 Dogwood St, Seattle, WA 98101" +312313,Lightning Charging Cable,1,14.95,12/13/19 22:40,"601 Elm St, San Francisco, CA 94016" +312314,AA Batteries (4-pack),2,3.84,12/11/19 09:36,"951 Lincoln St, Dallas, TX 75001" +312315,USB-C Charging Cable,1,11.95,12/01/19 06:00,"30 Madison St, Los Angeles, CA 90001" +312316,Wired Headphones,1,11.99,12/31/19 20:01,"970 Park St, Boston, MA 02215" +312317,Apple Airpods Headphones,1,150,12/08/19 19:04,"7 Madison St, San Francisco, CA 94016" +312318,USB-C Charging Cable,1,11.95,12/11/19 18:51,"705 4th St, New York City, NY 10001" +312319,AA Batteries (4-pack),1,3.84,12/20/19 15:37,"46 Chestnut St, Boston, MA 02215" +312320,Bose SoundSport Headphones,1,99.99,12/20/19 12:55,"381 Chestnut St, San Francisco, CA 94016" +312321,Bose SoundSport Headphones,1,99.99,12/10/19 13:27,"287 Park St, Boston, MA 02215" +312322,27in FHD Monitor,1,149.99,12/16/19 08:38,"846 Meadow St, Boston, MA 02215" +312323,Lightning Charging Cable,2,14.95,12/18/19 17:17,"694 13th St, San Francisco, CA 94016" +312324,27in 4K Gaming Monitor,1,389.99,12/11/19 19:59,"171 1st St, San Francisco, CA 94016" +312325,Apple Airpods Headphones,1,150,12/28/19 09:34,"805 6th St, Seattle, WA 98101" +312326,Macbook Pro Laptop,1,1700,12/04/19 15:34,"721 Walnut St, San Francisco, CA 94016" +312327,Wired Headphones,1,11.99,12/24/19 00:01,"818 River St, Dallas, TX 75001" +312328,USB-C Charging Cable,1,11.95,12/10/19 16:41,"687 Main St, Dallas, TX 75001" +312329,Wired Headphones,1,11.99,12/20/19 14:39,"29 Lakeview St, New York City, NY 10001" +312330,USB-C Charging Cable,1,11.95,12/25/19 11:50,"646 Jefferson St, Portland, ME 04101" +312331,AAA Batteries (4-pack),3,2.99,12/11/19 20:15,"875 Chestnut St, Boston, MA 02215" +312332,Wired Headphones,3,11.99,12/08/19 13:56,"40 Lake St, Boston, MA 02215" +312333,Wired Headphones,1,11.99,12/02/19 23:03,"716 12th St, Los Angeles, CA 90001" +312334,USB-C Charging Cable,1,11.95,12/25/19 12:19,"206 10th St, San Francisco, CA 94016" +312335,Wired Headphones,1,11.99,12/10/19 23:52,"886 Lake St, New York City, NY 10001" +312336,ThinkPad Laptop,1,999.99,12/07/19 12:38,"150 Church St, New York City, NY 10001" +312337,AA Batteries (4-pack),1,3.84,12/19/19 16:51,"718 South St, San Francisco, CA 94016" +312338,Wired Headphones,1,11.99,12/23/19 13:15,"924 Meadow St, San Francisco, CA 94016" +312339,34in Ultrawide Monitor,1,379.99,12/06/19 07:42,"695 6th St, San Francisco, CA 94016" +312340,Lightning Charging Cable,1,14.95,12/06/19 19:51,"232 Cherry St, Los Angeles, CA 90001" +312341,AAA Batteries (4-pack),1,2.99,12/29/19 13:06,"24 Lincoln St, Seattle, WA 98101" +312341,Apple Airpods Headphones,1,150,12/29/19 13:06,"24 Lincoln St, Seattle, WA 98101" +312342,Lightning Charging Cable,1,14.95,12/15/19 21:58,"128 River St, New York City, NY 10001" +312343,Macbook Pro Laptop,1,1700,12/11/19 12:36,"370 Forest St, Los Angeles, CA 90001" +312344,Lightning Charging Cable,1,14.95,12/31/19 11:30,"913 13th St, Portland, OR 97035" +312345,Apple Airpods Headphones,1,150,12/28/19 17:36,"238 Adams St, New York City, NY 10001" +312346,AA Batteries (4-pack),1,3.84,12/12/19 15:29,"989 8th St, New York City, NY 10001" +312347,USB-C Charging Cable,1,11.95,12/18/19 17:41,"134 Jackson St, Boston, MA 02215" +312348,Flatscreen TV,1,300,12/10/19 17:18,"992 Hill St, Portland, OR 97035" +312349,Lightning Charging Cable,1,14.95,12/07/19 11:11,"828 4th St, New York City, NY 10001" +312350,Bose SoundSport Headphones,1,99.99,12/29/19 12:28,"927 South St, Boston, MA 02215" +,,,,, +312351,Bose SoundSport Headphones,1,99.99,12/23/19 18:49,"487 11th St, Los Angeles, CA 90001" +312352,27in FHD Monitor,1,149.99,12/28/19 06:34,"13 10th St, San Francisco, CA 94016" +312353,Google Phone,1,600,12/27/19 16:23,"702 6th St, Dallas, TX 75001" +312354,AA Batteries (4-pack),1,3.84,12/22/19 19:56,"258 Center St, Seattle, WA 98101" +312355,Wired Headphones,1,11.99,12/11/19 22:53,"939 10th St, Boston, MA 02215" +312356,Wired Headphones,1,11.99,12/10/19 13:00,"983 Ridge St, San Francisco, CA 94016" +312357,Apple Airpods Headphones,1,150,12/03/19 20:06,"317 Lakeview St, Atlanta, GA 30301" +312358,USB-C Charging Cable,1,11.95,12/26/19 19:15,"224 Adams St, New York City, NY 10001" +312359,USB-C Charging Cable,1,11.95,12/19/19 18:22,"858 Wilson St, Dallas, TX 75001" +312360,Wired Headphones,1,11.99,12/28/19 21:17,"717 Willow St, Los Angeles, CA 90001" +312361,iPhone,1,700,12/02/19 22:47,"774 Main St, Los Angeles, CA 90001" +312361,Lightning Charging Cable,1,14.95,12/02/19 22:47,"774 Main St, Los Angeles, CA 90001" +312362,Apple Airpods Headphones,1,150,12/06/19 10:45,"115 6th St, Seattle, WA 98101" +312363,Wired Headphones,1,11.99,12/01/19 08:56,"475 Maple St, Boston, MA 02215" +312364,Wired Headphones,1,11.99,12/13/19 18:02,"640 Jackson St, Portland, OR 97035" +312365,Google Phone,1,600,12/23/19 04:49,"507 Jefferson St, Dallas, TX 75001" +312365,Wired Headphones,1,11.99,12/23/19 04:49,"507 Jefferson St, Dallas, TX 75001" +312366,USB-C Charging Cable,1,11.95,12/02/19 11:41,"727 13th St, Los Angeles, CA 90001" +312367,Wired Headphones,1,11.99,12/08/19 09:59,"475 2nd St, Boston, MA 02215" +312368,AAA Batteries (4-pack),1,2.99,12/19/19 14:09,"650 9th St, San Francisco, CA 94016" +312369,Lightning Charging Cable,1,14.95,12/11/19 11:28,"684 Sunset St, Boston, MA 02215" +312370,Google Phone,1,600,12/15/19 11:49,"936 Center St, Boston, MA 02215" +312371,Macbook Pro Laptop,1,1700,12/06/19 11:02,"484 Pine St, San Francisco, CA 94016" +312372,Lightning Charging Cable,1,14.95,12/27/19 09:24,"831 Highland St, Austin, TX 73301" +312373,USB-C Charging Cable,1,11.95,12/24/19 23:15,"633 South St, Los Angeles, CA 90001" +312374,Apple Airpods Headphones,1,150,12/10/19 21:41,"425 Chestnut St, Boston, MA 02215" +312375,AA Batteries (4-pack),1,3.84,12/21/19 22:13,"830 Walnut St, Dallas, TX 75001" +312376,Apple Airpods Headphones,1,150,12/24/19 16:57,"804 River St, Boston, MA 02215" +312377,Lightning Charging Cable,1,14.95,12/28/19 11:07,"625 Jefferson St, Dallas, TX 75001" +312378,AA Batteries (4-pack),1,3.84,12/17/19 21:28,"970 9th St, Portland, OR 97035" +312379,AA Batteries (4-pack),1,3.84,12/27/19 13:41,"342 14th St, Atlanta, GA 30301" +312380,USB-C Charging Cable,1,11.95,12/12/19 15:07,"525 Forest St, Los Angeles, CA 90001" +312381,Lightning Charging Cable,1,14.95,12/20/19 21:00,"743 12th St, New York City, NY 10001" +312382,Google Phone,1,600,12/23/19 12:57,"773 8th St, Portland, OR 97035" +312383,27in FHD Monitor,1,149.99,12/22/19 15:13,"954 Maple St, San Francisco, CA 94016" +312384,Wired Headphones,1,11.99,12/09/19 19:21,"535 11th St, Los Angeles, CA 90001" +312385,AAA Batteries (4-pack),1,2.99,12/14/19 21:46,"174 Meadow St, San Francisco, CA 94016" +312386,AA Batteries (4-pack),2,3.84,12/29/19 12:13,"220 Walnut St, Portland, OR 97035" +312387,ThinkPad Laptop,1,999.99,12/19/19 18:50,"745 Lincoln St, Los Angeles, CA 90001" +312388,Apple Airpods Headphones,1,150,12/05/19 15:33,"952 Forest St, Los Angeles, CA 90001" +312389,20in Monitor,1,109.99,12/21/19 16:14,"23 10th St, Los Angeles, CA 90001" +312390,AA Batteries (4-pack),1,3.84,12/06/19 12:29,"732 Main St, Portland, ME 04101" +312391,Apple Airpods Headphones,1,150,12/16/19 16:55,"939 Meadow St, New York City, NY 10001" +312392,Lightning Charging Cable,1,14.95,12/29/19 11:50,"725 Church St, New York City, NY 10001" +312393,iPhone,1,700,12/26/19 22:05,"581 2nd St, Boston, MA 02215" +312394,AA Batteries (4-pack),1,3.84,12/26/19 13:18,"316 Johnson St, Austin, TX 73301" +312395,AA Batteries (4-pack),1,3.84,12/19/19 19:08,"190 1st St, Los Angeles, CA 90001" +312396,Lightning Charging Cable,1,14.95,12/11/19 18:12,"526 Cherry St, San Francisco, CA 94016" +312397,Bose SoundSport Headphones,1,99.99,12/19/19 15:29,"446 11th St, San Francisco, CA 94016" +312398,USB-C Charging Cable,1,11.95,12/01/19 08:28,"266 7th St, San Francisco, CA 94016" +312399,Google Phone,1,600,12/01/19 22:26,"150 Dogwood St, Atlanta, GA 30301" +312400,Lightning Charging Cable,1,14.95,12/15/19 09:54,"158 6th St, Los Angeles, CA 90001" +312401,Apple Airpods Headphones,1,150,12/10/19 22:22,"589 Sunset St, Seattle, WA 98101" +312402,34in Ultrawide Monitor,1,379.99,12/22/19 19:52,"155 4th St, New York City, NY 10001" +312403,AAA Batteries (4-pack),1,2.99,12/17/19 08:40,"619 Cedar St, New York City, NY 10001" +312404,Bose SoundSport Headphones,1,99.99,12/28/19 12:38,"71 13th St, Portland, OR 97035" +312405,AAA Batteries (4-pack),1,2.99,12/21/19 17:36,"291 South St, New York City, NY 10001" +312406,ThinkPad Laptop,1,999.99,12/27/19 16:39,"192 6th St, Atlanta, GA 30301" +312407,Lightning Charging Cable,1,14.95,12/14/19 16:51,"354 8th St, San Francisco, CA 94016" +312408,ThinkPad Laptop,1,999.99,12/12/19 20:38,"114 2nd St, Boston, MA 02215" +312408,Lightning Charging Cable,1,14.95,12/12/19 20:38,"114 2nd St, Boston, MA 02215" +312409,Apple Airpods Headphones,1,150,12/07/19 10:23,"190 8th St, San Francisco, CA 94016" +312410,iPhone,1,700,12/15/19 00:12,"436 Church St, Boston, MA 02215" +312410,Lightning Charging Cable,1,14.95,12/15/19 00:12,"436 Church St, Boston, MA 02215" +312411,Lightning Charging Cable,1,14.95,12/03/19 18:42,"467 Center St, Austin, TX 73301" +312412,iPhone,1,700,12/03/19 17:25,"214 2nd St, Seattle, WA 98101" +312412,Lightning Charging Cable,1,14.95,12/03/19 17:25,"214 2nd St, Seattle, WA 98101" +312413,27in FHD Monitor,1,149.99,12/16/19 11:17,"280 Hickory St, San Francisco, CA 94016" +312414,Bose SoundSport Headphones,1,99.99,12/31/19 12:49,"463 Walnut St, San Francisco, CA 94016" +312415,AA Batteries (4-pack),1,3.84,12/13/19 21:54,"315 North St, San Francisco, CA 94016" +312416,AA Batteries (4-pack),1,3.84,12/07/19 20:06,"434 7th St, New York City, NY 10001" +312417,Flatscreen TV,1,300,12/25/19 12:45,"111 Walnut St, Dallas, TX 75001" +312418,Lightning Charging Cable,1,14.95,12/27/19 18:45,"568 12th St, Austin, TX 73301" +312419,AAA Batteries (4-pack),3,2.99,12/09/19 13:04,"237 Highland St, New York City, NY 10001" +312420,AAA Batteries (4-pack),1,2.99,12/05/19 12:34,"427 Maple St, San Francisco, CA 94016" +312421,Apple Airpods Headphones,1,150,12/31/19 11:26,"375 Lakeview St, Portland, OR 97035" +312422,USB-C Charging Cable,1,11.95,12/07/19 15:35,"304 Wilson St, Boston, MA 02215" +312423,AA Batteries (4-pack),1,3.84,12/12/19 13:42,"136 West St, Los Angeles, CA 90001" +312424,27in 4K Gaming Monitor,1,389.99,12/04/19 17:53,"591 Lincoln St, Los Angeles, CA 90001" +312425,iPhone,1,700,12/04/19 11:28,"849 12th St, San Francisco, CA 94016" +312426,ThinkPad Laptop,1,999.99,12/09/19 13:15,"150 10th St, Boston, MA 02215" +312427,AAA Batteries (4-pack),2,2.99,12/21/19 11:42,"210 12th St, New York City, NY 10001" +312428,Lightning Charging Cable,1,14.95,12/15/19 21:03,"103 4th St, San Francisco, CA 94016" +312429,AA Batteries (4-pack),1,3.84,12/19/19 19:24,"878 Highland St, Dallas, TX 75001" +312430,Wired Headphones,1,11.99,12/04/19 12:10,"931 Jefferson St, Seattle, WA 98101" +312431,Apple Airpods Headphones,1,150,12/30/19 11:32,"60 Elm St, Atlanta, GA 30301" +312432,Lightning Charging Cable,1,14.95,12/09/19 12:59,"626 Johnson St, Austin, TX 73301" +312433,Lightning Charging Cable,1,14.95,12/14/19 13:13,"180 Spruce St, New York City, NY 10001" +312434,Lightning Charging Cable,1,14.95,12/01/19 07:57,"837 Jefferson St, New York City, NY 10001" +312435,USB-C Charging Cable,1,11.95,12/18/19 15:00,"612 Willow St, Boston, MA 02215" +312436,Flatscreen TV,1,300,12/25/19 11:57,"134 Pine St, New York City, NY 10001" +312437,USB-C Charging Cable,1,11.95,12/24/19 08:07,"778 Cherry St, Atlanta, GA 30301" +312438,USB-C Charging Cable,1,11.95,12/29/19 18:44,"812 Ridge St, San Francisco, CA 94016" +312439,AA Batteries (4-pack),1,3.84,12/20/19 10:44,"445 Adams St, New York City, NY 10001" +312440,USB-C Charging Cable,1,11.95,12/10/19 21:36,"727 Jackson St, Boston, MA 02215" +312441,20in Monitor,1,109.99,12/04/19 16:16,"366 7th St, Seattle, WA 98101" +312442,AAA Batteries (4-pack),1,2.99,12/09/19 06:09,"913 Hickory St, San Francisco, CA 94016" +312443,Lightning Charging Cable,1,14.95,12/13/19 10:25,"882 8th St, Boston, MA 02215" +312444,AA Batteries (4-pack),1,3.84,12/18/19 17:55,"602 Hickory St, Portland, ME 04101" +312445,Apple Airpods Headphones,1,150,12/27/19 20:37,"535 Jefferson St, San Francisco, CA 94016" +312446,ThinkPad Laptop,1,999.99,12/12/19 17:52,"766 Walnut St, San Francisco, CA 94016" +312447,Bose SoundSport Headphones,1,99.99,12/06/19 07:43,"836 West St, Seattle, WA 98101" +312448,Macbook Pro Laptop,1,1700,12/24/19 16:36,"579 Lincoln St, San Francisco, CA 94016" +312449,AAA Batteries (4-pack),2,2.99,12/21/19 17:24,"15 North St, New York City, NY 10001" +312450,USB-C Charging Cable,1,11.95,12/03/19 19:57,"491 Hickory St, Austin, TX 73301" +312451,AAA Batteries (4-pack),2,2.99,12/05/19 13:54,"859 Forest St, Seattle, WA 98101" +312451,AA Batteries (4-pack),1,3.84,12/05/19 13:54,"859 Forest St, Seattle, WA 98101" +312452,Google Phone,1,600,12/13/19 16:10,"646 6th St, Atlanta, GA 30301" +312452,USB-C Charging Cable,1,11.95,12/13/19 16:10,"646 6th St, Atlanta, GA 30301" +312453,Bose SoundSport Headphones,1,99.99,12/26/19 12:02,"556 Hickory St, Boston, MA 02215" +312454,AA Batteries (4-pack),1,3.84,12/05/19 11:19,"17 14th St, Los Angeles, CA 90001" +312455,Lightning Charging Cable,2,14.95,12/12/19 22:25,"958 Ridge St, Austin, TX 73301" +312456,USB-C Charging Cable,1,11.95,12/02/19 10:52,"689 Madison St, Seattle, WA 98101" +312457,Macbook Pro Laptop,1,1700,12/03/19 19:10,"379 6th St, Atlanta, GA 30301" +312457,27in FHD Monitor,1,149.99,12/03/19 19:10,"379 6th St, Atlanta, GA 30301" +312458,iPhone,1,700,12/17/19 14:44,"886 Lakeview St, Portland, ME 04101" +312459,Lightning Charging Cable,1,14.95,12/21/19 19:28,"408 13th St, Los Angeles, CA 90001" +312460,Bose SoundSport Headphones,1,99.99,12/16/19 07:44,"287 Jackson St, Atlanta, GA 30301" +312461,27in FHD Monitor,1,149.99,12/24/19 09:39,"80 13th St, San Francisco, CA 94016" +312462,Flatscreen TV,1,300,12/29/19 19:45,"842 1st St, Atlanta, GA 30301" +312463,USB-C Charging Cable,1,11.95,12/11/19 17:33,"935 Park St, Los Angeles, CA 90001" +312464,AAA Batteries (4-pack),1,2.99,12/06/19 15:22,"645 1st St, New York City, NY 10001" +312465,ThinkPad Laptop,1,999.99,12/02/19 19:23,"942 9th St, Dallas, TX 75001" +312466,AAA Batteries (4-pack),1,2.99,12/05/19 06:55,"314 West St, Dallas, TX 75001" +312467,AAA Batteries (4-pack),3,2.99,12/09/19 18:58,"986 Pine St, New York City, NY 10001" +312468,Lightning Charging Cable,1,14.95,12/22/19 15:00,"144 North St, San Francisco, CA 94016" +312469,27in FHD Monitor,1,149.99,12/19/19 10:49,"124 13th St, Los Angeles, CA 90001" +312470,AAA Batteries (4-pack),1,2.99,12/25/19 07:23,"263 12th St, Los Angeles, CA 90001" +312471,Apple Airpods Headphones,1,150,12/30/19 20:13,"595 Sunset St, Boston, MA 02215" +312472,Wired Headphones,2,11.99,12/29/19 12:43,"983 Walnut St, Los Angeles, CA 90001" +312473,Google Phone,1,600,12/12/19 13:28,"657 Lake St, Los Angeles, CA 90001" +312474,USB-C Charging Cable,3,11.95,12/22/19 08:52,"921 Walnut St, Austin, TX 73301" +312475,AAA Batteries (4-pack),1,2.99,12/27/19 21:53,"333 Park St, Dallas, TX 75001" +312476,USB-C Charging Cable,1,11.95,12/11/19 13:01,"767 Cedar St, San Francisco, CA 94016" +312477,LG Dryer,1,600.0,12/09/19 15:52,"245 6th St, San Francisco, CA 94016" +312478,AAA Batteries (4-pack),2,2.99,12/11/19 12:02,"243 9th St, New York City, NY 10001" +312479,27in FHD Monitor,1,149.99,12/28/19 06:30,"15 Hickory St, Austin, TX 73301" +312480,AAA Batteries (4-pack),2,2.99,12/23/19 14:11,"731 Ridge St, Portland, OR 97035" +312481,Apple Airpods Headphones,1,150,12/31/19 19:09,"991 4th St, New York City, NY 10001" +312482,Google Phone,1,600,12/23/19 10:21,"166 Lake St, Los Angeles, CA 90001" +312483,Bose SoundSport Headphones,1,99.99,12/13/19 19:44,"785 2nd St, Austin, TX 73301" +312484,Lightning Charging Cable,1,14.95,12/03/19 09:33,"586 Hickory St, Atlanta, GA 30301" +312485,AAA Batteries (4-pack),1,2.99,12/13/19 14:52,"749 Pine St, Seattle, WA 98101" +312486,20in Monitor,1,109.99,12/20/19 17:40,"997 Park St, New York City, NY 10001" +312487,Apple Airpods Headphones,1,150,12/24/19 15:27,"649 5th St, Seattle, WA 98101" +312488,Vareebadd Phone,1,400,12/07/19 19:39,"998 Forest St, Austin, TX 73301" +312489,Lightning Charging Cable,1,14.95,12/03/19 21:53,"417 South St, Atlanta, GA 30301" +312490,AA Batteries (4-pack),1,3.84,12/15/19 15:30,"983 8th St, San Francisco, CA 94016" +312491,USB-C Charging Cable,1,11.95,12/06/19 11:59,"805 Washington St, Los Angeles, CA 90001" +312492,Lightning Charging Cable,1,14.95,12/04/19 13:13,"220 Adams St, Seattle, WA 98101" +312493,AAA Batteries (4-pack),1,2.99,12/07/19 09:35,"319 Maple St, San Francisco, CA 94016" +312494,AA Batteries (4-pack),1,3.84,12/30/19 19:51,"230 Lake St, Seattle, WA 98101" +312495,27in 4K Gaming Monitor,1,389.99,12/08/19 18:17,"129 Wilson St, San Francisco, CA 94016" +312496,27in 4K Gaming Monitor,1,389.99,12/07/19 13:18,"51 South St, San Francisco, CA 94016" +312497,Flatscreen TV,1,300,12/04/19 23:02,"370 5th St, New York City, NY 10001" +312498,Apple Airpods Headphones,1,150,12/29/19 08:19,"379 Park St, Boston, MA 02215" +312499,Apple Airpods Headphones,1,150,12/14/19 15:21,"995 4th St, San Francisco, CA 94016" +312500,Flatscreen TV,1,300,12/20/19 16:55,"717 River St, Dallas, TX 75001" +312500,AA Batteries (4-pack),1,3.84,12/20/19 16:55,"717 River St, Dallas, TX 75001" +312501,20in Monitor,1,109.99,12/14/19 18:16,"978 Washington St, Boston, MA 02215" +312502,Apple Airpods Headphones,1,150,12/01/19 14:35,"656 2nd St, Dallas, TX 75001" +312503,USB-C Charging Cable,1,11.95,12/15/19 11:09,"123 Washington St, Boston, MA 02215" +312504,USB-C Charging Cable,1,11.95,12/23/19 19:51,"738 7th St, San Francisco, CA 94016" +312505,AAA Batteries (4-pack),2,2.99,12/31/19 11:54,"334 6th St, Dallas, TX 75001" +312506,27in FHD Monitor,1,149.99,12/21/19 16:09,"864 5th St, Dallas, TX 75001" +312507,AAA Batteries (4-pack),2,2.99,12/17/19 15:11,"703 Meadow St, Atlanta, GA 30301" +312508,iPhone,1,700,12/11/19 19:42,"614 Cedar St, Boston, MA 02215" +312509,USB-C Charging Cable,1,11.95,12/29/19 18:35,"340 Cedar St, Los Angeles, CA 90001" +312510,Apple Airpods Headphones,1,150,12/27/19 15:40,"1 Ridge St, San Francisco, CA 94016" +312511,Wired Headphones,1,11.99,12/05/19 18:24,"895 11th St, San Francisco, CA 94016" +312512,20in Monitor,1,109.99,12/02/19 23:06,"111 Park St, Los Angeles, CA 90001" +312513,AAA Batteries (4-pack),1,2.99,12/17/19 09:08,"921 5th St, San Francisco, CA 94016" +312514,ThinkPad Laptop,1,999.99,12/06/19 22:05,"606 Pine St, Atlanta, GA 30301" +312515,AA Batteries (4-pack),1,3.84,12/27/19 04:09,"553 Dogwood St, Atlanta, GA 30301" +312516,Wired Headphones,1,11.99,12/04/19 15:33,"307 West St, Austin, TX 73301" +312517,Apple Airpods Headphones,1,150,12/02/19 00:01,"380 Hickory St, New York City, NY 10001" +312518,Bose SoundSport Headphones,1,99.99,12/17/19 00:19,"600 Lakeview St, Boston, MA 02215" +312519,Google Phone,1,600,12/02/19 09:15,"416 Lincoln St, Dallas, TX 75001" +312519,Bose SoundSport Headphones,1,99.99,12/02/19 09:15,"416 Lincoln St, Dallas, TX 75001" +312520,Wired Headphones,1,11.99,12/07/19 19:49,"722 Madison St, Dallas, TX 75001" +312521,34in Ultrawide Monitor,1,379.99,12/17/19 09:44,"731 Walnut St, San Francisco, CA 94016" +312522,Wired Headphones,1,11.99,12/04/19 18:54,"641 Jackson St, Boston, MA 02215" +312523,Lightning Charging Cable,1,14.95,12/20/19 09:23,"238 Lakeview St, New York City, NY 10001" +312524,Bose SoundSport Headphones,1,99.99,12/09/19 11:32,"599 South St, New York City, NY 10001" +312525,AAA Batteries (4-pack),1,2.99,12/04/19 14:54,"798 Hill St, Los Angeles, CA 90001" +312526,USB-C Charging Cable,1,11.95,12/12/19 21:54,"500 6th St, Los Angeles, CA 90001" +312527,AAA Batteries (4-pack),1,2.99,12/24/19 09:19,"206 Madison St, Portland, OR 97035" +312528,AAA Batteries (4-pack),3,2.99,12/12/19 18:00,"649 Church St, New York City, NY 10001" +312529,27in FHD Monitor,1,149.99,12/25/19 16:50,"721 11th St, Portland, OR 97035" +312530,Macbook Pro Laptop,1,1700,12/08/19 10:35,"206 Lincoln St, San Francisco, CA 94016" +312531,AAA Batteries (4-pack),1,2.99,12/21/19 11:57,"181 14th St, Boston, MA 02215" +312532,Macbook Pro Laptop,1,1700,12/12/19 17:24,"15 Center St, New York City, NY 10001" +312533,Wired Headphones,1,11.99,12/20/19 13:36,"544 Dogwood St, Boston, MA 02215" +312534,AA Batteries (4-pack),1,3.84,12/26/19 19:39,"555 Sunset St, Atlanta, GA 30301" +312535,Wired Headphones,1,11.99,12/13/19 12:49,"441 6th St, Los Angeles, CA 90001" +312536,AAA Batteries (4-pack),1,2.99,12/15/19 22:31,"325 Park St, New York City, NY 10001" +312537,Bose SoundSport Headphones,1,99.99,12/29/19 01:19,"714 Willow St, San Francisco, CA 94016" +312538,Flatscreen TV,1,300,12/06/19 20:57,"143 8th St, San Francisco, CA 94016" +312539,USB-C Charging Cable,1,11.95,12/04/19 06:39,"347 Washington St, San Francisco, CA 94016" +312540,Apple Airpods Headphones,1,150,12/15/19 15:06,"205 1st St, Portland, ME 04101" +312541,AAA Batteries (4-pack),1,2.99,12/14/19 14:45,"53 Sunset St, Portland, OR 97035" +312542,AA Batteries (4-pack),1,3.84,12/11/19 15:46,"449 Forest St, San Francisco, CA 94016" +312543,USB-C Charging Cable,1,11.95,12/23/19 21:05,"57 7th St, Boston, MA 02215" +312544,iPhone,1,700,12/27/19 12:21,"546 14th St, Los Angeles, CA 90001" +312545,Wired Headphones,1,11.99,12/10/19 00:17,"24 Park St, Dallas, TX 75001" +312546,27in 4K Gaming Monitor,1,389.99,12/30/19 14:04,"242 Pine St, Portland, OR 97035" +312547,AA Batteries (4-pack),1,3.84,12/01/19 18:59,"665 Lake St, Los Angeles, CA 90001" +312548,Wired Headphones,1,11.99,12/16/19 23:22,"709 Johnson St, Seattle, WA 98101" +312549,Wired Headphones,1,11.99,12/28/19 09:35,"123 Willow St, Portland, OR 97035" +312550,Bose SoundSport Headphones,1,99.99,12/18/19 14:38,"868 North St, New York City, NY 10001" +312551,Lightning Charging Cable,1,14.95,12/23/19 13:01,"211 Jefferson St, Los Angeles, CA 90001" +312552,USB-C Charging Cable,1,11.95,12/30/19 12:06,"266 Cherry St, San Francisco, CA 94016" +312553,USB-C Charging Cable,1,11.95,12/04/19 17:34,"887 13th St, Los Angeles, CA 90001" +312554,Apple Airpods Headphones,1,150,12/05/19 11:59,"860 Lake St, Atlanta, GA 30301" +312555,27in 4K Gaming Monitor,1,389.99,12/01/19 20:04,"708 Cedar St, Atlanta, GA 30301" +312556,AA Batteries (4-pack),2,3.84,12/08/19 12:46,"909 Church St, Dallas, TX 75001" +312557,USB-C Charging Cable,1,11.95,12/16/19 07:48,"527 Jefferson St, Los Angeles, CA 90001" +312558,USB-C Charging Cable,1,11.95,12/20/19 06:03,"855 Sunset St, Dallas, TX 75001" +312559,iPhone,1,700,12/18/19 15:11,"833 Johnson St, Dallas, TX 75001" +312560,iPhone,1,700,12/16/19 19:47,"162 Dogwood St, San Francisco, CA 94016" +312561,Bose SoundSport Headphones,1,99.99,12/12/19 16:00,"581 2nd St, Portland, OR 97035" +312562,Wired Headphones,1,11.99,12/03/19 12:59,"780 Forest St, Portland, OR 97035" +312563,Apple Airpods Headphones,1,150,12/11/19 16:10,"885 Hill St, Atlanta, GA 30301" +312564,Lightning Charging Cable,1,14.95,12/02/19 17:54,"731 Hickory St, Portland, OR 97035" +312565,27in FHD Monitor,1,149.99,12/11/19 22:23,"856 Willow St, Los Angeles, CA 90001" +312566,Lightning Charging Cable,1,14.95,12/08/19 09:45,"330 Main St, San Francisco, CA 94016" +312567,USB-C Charging Cable,1,11.95,12/18/19 17:45,"830 River St, Portland, OR 97035" +312568,Wired Headphones,1,11.99,12/02/19 10:35,"198 Hill St, Portland, OR 97035" +312569,AA Batteries (4-pack),2,3.84,12/01/19 19:04,"56 14th St, San Francisco, CA 94016" +312570,AA Batteries (4-pack),1,3.84,12/23/19 18:01,"608 2nd St, Los Angeles, CA 90001" +312571,Lightning Charging Cable,1,14.95,12/11/19 17:32,"779 Highland St, Boston, MA 02215" +312572,AAA Batteries (4-pack),3,2.99,12/29/19 00:38,"983 North St, Los Angeles, CA 90001" +312573,Bose SoundSport Headphones,1,99.99,12/22/19 13:13,"804 Maple St, San Francisco, CA 94016" +312574,LG Washing Machine,1,600.0,12/17/19 20:53,"694 10th St, New York City, NY 10001" +312575,iPhone,1,700,12/13/19 14:18,"55 2nd St, San Francisco, CA 94016" +312576,Lightning Charging Cable,1,14.95,12/21/19 12:25,"95 Spruce St, San Francisco, CA 94016" +312577,27in 4K Gaming Monitor,1,389.99,12/08/19 07:07,"22 4th St, San Francisco, CA 94016" +312578,Apple Airpods Headphones,1,150,12/19/19 08:01,"676 13th St, Dallas, TX 75001" +312579,Lightning Charging Cable,1,14.95,12/28/19 16:53,"905 Pine St, Boston, MA 02215" +312580,ThinkPad Laptop,1,999.99,12/05/19 23:59,"85 Maple St, San Francisco, CA 94016" +312581,Apple Airpods Headphones,1,150,12/04/19 19:11,"555 8th St, San Francisco, CA 94016" +312582,Lightning Charging Cable,1,14.95,12/07/19 10:33,"815 North St, New York City, NY 10001" +312583,Apple Airpods Headphones,1,150,12/17/19 07:38,"783 Center St, San Francisco, CA 94016" +312584,34in Ultrawide Monitor,1,379.99,12/15/19 16:33,"36 Jefferson St, San Francisco, CA 94016" +312584,Wired Headphones,1,11.99,12/15/19 16:33,"36 Jefferson St, San Francisco, CA 94016" +312585,Wired Headphones,1,11.99,12/14/19 15:10,"551 Adams St, Boston, MA 02215" +312586,ThinkPad Laptop,1,999.99,12/08/19 08:16,"879 South St, Boston, MA 02215" +312587,27in 4K Gaming Monitor,1,389.99,12/24/19 10:27,"381 Johnson St, Portland, OR 97035" +312588,Bose SoundSport Headphones,1,99.99,12/29/19 12:14,"545 Jackson St, San Francisco, CA 94016" +312589,AAA Batteries (4-pack),1,2.99,12/22/19 09:24,"854 Hill St, Boston, MA 02215" +312590,Lightning Charging Cable,1,14.95,12/10/19 14:37,"228 2nd St, New York City, NY 10001" +312591,Lightning Charging Cable,1,14.95,12/11/19 19:28,"750 River St, New York City, NY 10001" +312592,Macbook Pro Laptop,1,1700,12/22/19 22:50,"198 7th St, Boston, MA 02215" +312593,Bose SoundSport Headphones,1,99.99,12/28/19 16:12,"70 Main St, Atlanta, GA 30301" +312594,AAA Batteries (4-pack),1,2.99,12/25/19 19:41,"968 South St, San Francisco, CA 94016" +312595,Apple Airpods Headphones,1,150,12/10/19 19:52,"385 Cedar St, Boston, MA 02215" +312596,Google Phone,1,600,12/22/19 22:21,"870 Adams St, New York City, NY 10001" +312597,Lightning Charging Cable,1,14.95,12/30/19 16:40,"312 Wilson St, New York City, NY 10001" +312598,Lightning Charging Cable,1,14.95,12/19/19 15:46,"147 Jefferson St, Atlanta, GA 30301" +312599,AAA Batteries (4-pack),1,2.99,12/08/19 21:44,"153 Chestnut St, Seattle, WA 98101" +312600,Wired Headphones,1,11.99,12/30/19 21:44,"220 Jackson St, New York City, NY 10001" +312601,USB-C Charging Cable,1,11.95,12/10/19 17:55,"295 Church St, Los Angeles, CA 90001" +312602,Macbook Pro Laptop,1,1700,12/02/19 07:45,"103 South St, New York City, NY 10001" +312603,20in Monitor,1,109.99,12/19/19 08:44,"476 West St, Seattle, WA 98101" +312604,AA Batteries (4-pack),1,3.84,12/17/19 13:08,"664 12th St, Atlanta, GA 30301" +312605,Wired Headphones,1,11.99,12/18/19 15:11,"957 2nd St, Atlanta, GA 30301" +312606,AA Batteries (4-pack),1,3.84,12/25/19 22:33,"336 Johnson St, San Francisco, CA 94016" +312607,Bose SoundSport Headphones,1,99.99,12/15/19 16:16,"471 Highland St, Boston, MA 02215" +312608,Vareebadd Phone,1,400,12/24/19 23:30,"353 Park St, Seattle, WA 98101" +312609,Bose SoundSport Headphones,1,99.99,12/26/19 12:07,"850 Wilson St, Austin, TX 73301" +312610,Lightning Charging Cable,1,14.95,12/01/19 14:54,"585 Maple St, Los Angeles, CA 90001" +312611,AA Batteries (4-pack),1,3.84,12/11/19 13:27,"477 Center St, San Francisco, CA 94016" +312612,AAA Batteries (4-pack),1,2.99,12/21/19 13:59,"195 Cherry St, San Francisco, CA 94016" +312613,USB-C Charging Cable,1,11.95,12/10/19 11:31,"878 Johnson St, New York City, NY 10001" +312614,34in Ultrawide Monitor,1,379.99,12/03/19 02:41,"820 1st St, Atlanta, GA 30301" +312615,AA Batteries (4-pack),2,3.84,12/24/19 15:36,"752 West St, Austin, TX 73301" +312616,USB-C Charging Cable,2,11.95,12/06/19 21:08,"56 Washington St, Los Angeles, CA 90001" +312617,Wired Headphones,1,11.99,12/19/19 19:28,"422 Cedar St, New York City, NY 10001" +312618,AA Batteries (4-pack),1,3.84,12/28/19 22:22,"286 Pine St, New York City, NY 10001" +312619,AAA Batteries (4-pack),2,2.99,12/08/19 10:56,"253 Hickory St, Austin, TX 73301" +312620,Bose SoundSport Headphones,1,99.99,12/24/19 16:10,"289 Walnut St, Los Angeles, CA 90001" +312621,AAA Batteries (4-pack),1,2.99,12/11/19 18:50,"905 11th St, Los Angeles, CA 90001" +312622,Wired Headphones,1,11.99,12/14/19 10:09,"614 Lakeview St, Boston, MA 02215" +312623,Apple Airpods Headphones,1,150,12/15/19 11:37,"871 Adams St, Boston, MA 02215" +312623,Lightning Charging Cable,1,14.95,12/15/19 11:37,"871 Adams St, Boston, MA 02215" +312624,Lightning Charging Cable,1,14.95,12/30/19 18:59,"994 Lake St, Boston, MA 02215" +312625,Lightning Charging Cable,1,14.95,12/02/19 18:13,"259 Meadow St, Austin, TX 73301" +312626,Bose SoundSport Headphones,1,99.99,12/09/19 12:14,"757 1st St, San Francisco, CA 94016" +312627,AA Batteries (4-pack),1,3.84,12/22/19 19:19,"604 Wilson St, Dallas, TX 75001" +312628,Lightning Charging Cable,1,14.95,12/27/19 21:58,"543 Jefferson St, Seattle, WA 98101" +312629,USB-C Charging Cable,2,11.95,12/06/19 09:33,"735 Lincoln St, Boston, MA 02215" +312630,27in FHD Monitor,1,149.99,12/18/19 10:49,"352 Lakeview St, Dallas, TX 75001" +312631,Apple Airpods Headphones,1,150,12/14/19 18:15,"448 Adams St, New York City, NY 10001" +312632,Wired Headphones,1,11.99,12/31/19 20:01,"245 8th St, Atlanta, GA 30301" +312633,USB-C Charging Cable,1,11.95,12/14/19 22:31,"138 Main St, Los Angeles, CA 90001" +312634,AA Batteries (4-pack),1,3.84,12/14/19 14:58,"156 Pine St, Austin, TX 73301" +312635,iPhone,1,700,12/04/19 11:01,"274 Spruce St, Los Angeles, CA 90001" +312636,USB-C Charging Cable,1,11.95,12/17/19 10:54,"460 11th St, Dallas, TX 75001" +312637,LG Dryer,1,600.0,12/26/19 23:07,"817 Spruce St, San Francisco, CA 94016" +312638,USB-C Charging Cable,1,11.95,12/10/19 17:49,"464 Chestnut St, Austin, TX 73301" +312639,AA Batteries (4-pack),1,3.84,12/25/19 22:59,"910 2nd St, New York City, NY 10001" +312640,27in FHD Monitor,1,149.99,12/02/19 15:09,"218 Adams St, San Francisco, CA 94016" +312641,USB-C Charging Cable,1,11.95,12/28/19 14:13,"316 Spruce St, New York City, NY 10001" +312642,Flatscreen TV,1,300,12/22/19 11:58,"308 Dogwood St, Dallas, TX 75001" +312643,Flatscreen TV,1,300,12/05/19 13:06,"11 1st St, Portland, OR 97035" +312644,34in Ultrawide Monitor,1,379.99,12/11/19 20:51,"222 Church St, San Francisco, CA 94016" +312645,Macbook Pro Laptop,1,1700,12/15/19 14:56,"8 Main St, San Francisco, CA 94016" +312646,Apple Airpods Headphones,1,150,12/25/19 08:08,"676 Center St, San Francisco, CA 94016" +312647,AA Batteries (4-pack),1,3.84,12/23/19 23:04,"655 West St, New York City, NY 10001" +312648,Wired Headphones,1,11.99,12/05/19 10:45,"110 Ridge St, Los Angeles, CA 90001" +312649,Wired Headphones,1,11.99,12/11/19 14:53,"440 North St, San Francisco, CA 94016" +312650,Lightning Charging Cable,2,14.95,12/04/19 00:45,"664 Dogwood St, Los Angeles, CA 90001" +312651,Wired Headphones,1,11.99,12/09/19 19:23,"110 Maple St, Los Angeles, CA 90001" +312652,Wired Headphones,1,11.99,12/21/19 23:05,"532 9th St, Austin, TX 73301" +312653,LG Dryer,1,600.0,12/09/19 08:34,"849 7th St, Portland, OR 97035" +312654,iPhone,1,700,12/16/19 17:24,"108 4th St, Los Angeles, CA 90001" +312654,Lightning Charging Cable,1,14.95,12/16/19 17:24,"108 4th St, Los Angeles, CA 90001" +312655,Flatscreen TV,1,300,12/25/19 10:39,"397 1st St, Atlanta, GA 30301" +312656,Wired Headphones,1,11.99,12/09/19 22:05,"760 Church St, San Francisco, CA 94016" +312657,27in FHD Monitor,1,149.99,12/31/19 18:34,"986 Johnson St, San Francisco, CA 94016" +312658,Apple Airpods Headphones,1,150,12/20/19 00:04,"62 Church St, Los Angeles, CA 90001" +312659,Wired Headphones,1,11.99,12/05/19 20:55,"955 Lakeview St, Dallas, TX 75001" +312660,34in Ultrawide Monitor,1,379.99,12/16/19 14:30,"822 Pine St, Portland, OR 97035" +312661,AAA Batteries (4-pack),1,2.99,12/08/19 16:26,"752 Park St, San Francisco, CA 94016" +312662,Bose SoundSport Headphones,1,99.99,12/26/19 18:43,"443 West St, Atlanta, GA 30301" +312663,LG Dryer,1,600.0,12/27/19 10:00,"437 10th St, Seattle, WA 98101" +312664,Lightning Charging Cable,1,14.95,12/21/19 09:47,"414 Jackson St, Boston, MA 02215" +312665,Apple Airpods Headphones,1,150,12/05/19 13:43,"508 14th St, Austin, TX 73301" +312666,ThinkPad Laptop,1,999.99,12/13/19 09:48,"594 12th St, Portland, OR 97035" +312667,Wired Headphones,1,11.99,12/28/19 14:04,"400 7th St, San Francisco, CA 94016" +312668,iPhone,1,700,12/08/19 13:26,"406 Dogwood St, Portland, ME 04101" +312669,Macbook Pro Laptop,1,1700,12/08/19 12:51,"811 Forest St, San Francisco, CA 94016" +312670,27in FHD Monitor,1,149.99,12/01/19 12:42,"422 Meadow St, Los Angeles, CA 90001" +312671,Lightning Charging Cable,1,14.95,12/04/19 03:28,"44 Willow St, Seattle, WA 98101" +312672,Flatscreen TV,1,300,12/05/19 10:18,"24 Willow St, Seattle, WA 98101" +312673,Bose SoundSport Headphones,1,99.99,12/29/19 18:31,"995 North St, San Francisco, CA 94016" +312674,27in 4K Gaming Monitor,1,389.99,12/03/19 18:11,"95 5th St, Los Angeles, CA 90001" +312675,34in Ultrawide Monitor,1,379.99,12/10/19 22:30,"388 12th St, Austin, TX 73301" +312676,USB-C Charging Cable,1,11.95,12/07/19 17:13,"138 5th St, Boston, MA 02215" +312677,ThinkPad Laptop,1,999.99,12/20/19 07:55,"343 Hickory St, San Francisco, CA 94016" +312678,27in FHD Monitor,1,149.99,12/16/19 21:07,"859 Washington St, San Francisco, CA 94016" +312679,USB-C Charging Cable,1,11.95,12/25/19 13:04,"570 6th St, Seattle, WA 98101" +312680,AA Batteries (4-pack),4,3.84,12/12/19 15:39,"826 Pine St, New York City, NY 10001" +312681,USB-C Charging Cable,1,11.95,12/08/19 18:19,"100 1st St, Los Angeles, CA 90001" +312682,27in 4K Gaming Monitor,1,389.99,12/08/19 08:04,"658 Chestnut St, Atlanta, GA 30301" +312682,Wired Headphones,1,11.99,12/08/19 08:04,"658 Chestnut St, Atlanta, GA 30301" +312683,Wired Headphones,1,11.99,12/12/19 08:49,"459 Highland St, New York City, NY 10001" +312684,Lightning Charging Cable,1,14.95,12/10/19 23:43,"883 North St, Atlanta, GA 30301" +312685,27in FHD Monitor,1,149.99,12/23/19 15:18,"576 9th St, Los Angeles, CA 90001" +312686,USB-C Charging Cable,1,11.95,12/03/19 15:52,"641 10th St, Los Angeles, CA 90001" +312687,iPhone,1,700,12/20/19 15:01,"684 Park St, San Francisco, CA 94016" +312688,Lightning Charging Cable,1,14.95,12/25/19 15:54,"727 Washington St, Seattle, WA 98101" +312689,Wired Headphones,1,11.99,12/13/19 18:43,"800 West St, San Francisco, CA 94016" +312690,USB-C Charging Cable,1,11.95,12/30/19 15:26,"290 Lincoln St, Portland, OR 97035" +312691,27in 4K Gaming Monitor,1,389.99,12/09/19 21:16,"863 2nd St, Austin, TX 73301" +312691,AA Batteries (4-pack),1,3.84,12/09/19 21:16,"863 2nd St, Austin, TX 73301" +312692,AAA Batteries (4-pack),1,2.99,12/20/19 18:58,"182 Maple St, San Francisco, CA 94016" +312693,Apple Airpods Headphones,1,150,12/28/19 12:15,"480 Spruce St, Seattle, WA 98101" +312694,Flatscreen TV,1,300,12/26/19 09:00,"162 West St, Seattle, WA 98101" +312695,Lightning Charging Cable,1,14.95,12/13/19 17:00,"904 Walnut St, Los Angeles, CA 90001" +312696,Wired Headphones,1,11.99,12/25/19 14:43,"361 4th St, Los Angeles, CA 90001" +312696,Lightning Charging Cable,1,14.95,12/25/19 14:43,"361 4th St, Los Angeles, CA 90001" +312697,USB-C Charging Cable,1,11.95,12/26/19 14:12,"226 Chestnut St, New York City, NY 10001" +312698,USB-C Charging Cable,1,11.95,12/26/19 15:39,"241 Main St, Los Angeles, CA 90001" +312699,Apple Airpods Headphones,1,150,12/12/19 22:19,"49 Church St, Boston, MA 02215" +312700,Macbook Pro Laptop,1,1700,12/27/19 11:36,"619 Main St, Portland, OR 97035" +312701,USB-C Charging Cable,1,11.95,12/09/19 19:31,"397 Wilson St, San Francisco, CA 94016" +312702,Wired Headphones,1,11.99,12/04/19 12:12,"321 Elm St, San Francisco, CA 94016" +312703,Google Phone,1,600,12/26/19 12:30,"292 Washington St, San Francisco, CA 94016" +312704,ThinkPad Laptop,1,999.99,12/19/19 17:24,"368 Madison St, San Francisco, CA 94016" +312705,27in FHD Monitor,1,149.99,12/18/19 16:30,"606 Jackson St, San Francisco, CA 94016" +312706,Flatscreen TV,1,300,12/07/19 22:50,"643 8th St, San Francisco, CA 94016" +312707,Apple Airpods Headphones,1,150,12/22/19 21:49,"891 Elm St, Seattle, WA 98101" +312708,USB-C Charging Cable,1,11.95,12/09/19 21:56,"421 Washington St, New York City, NY 10001" +312709,Lightning Charging Cable,1,14.95,12/20/19 20:25,"76 Wilson St, Atlanta, GA 30301" +312710,iPhone,1,700,12/11/19 11:21,"544 6th St, Austin, TX 73301" +312710,Lightning Charging Cable,1,14.95,12/11/19 11:21,"544 6th St, Austin, TX 73301" +312711,Wired Headphones,1,11.99,12/24/19 10:09,"200 Lakeview St, Boston, MA 02215" +312712,USB-C Charging Cable,1,11.95,12/30/19 23:23,"893 5th St, Portland, OR 97035" +312713,USB-C Charging Cable,1,11.95,12/11/19 18:48,"724 Dogwood St, Dallas, TX 75001" +312714,Apple Airpods Headphones,1,150,12/18/19 23:22,"904 North St, Los Angeles, CA 90001" +312715,iPhone,1,700,12/08/19 15:27,"767 2nd St, Dallas, TX 75001" +312716,27in FHD Monitor,1,149.99,12/07/19 08:50,"270 1st St, New York City, NY 10001" +312717,USB-C Charging Cable,1,11.95,12/14/19 12:05,"915 Elm St, Seattle, WA 98101" +312718,20in Monitor,1,109.99,12/16/19 18:39,"748 Pine St, San Francisco, CA 94016" +312719,USB-C Charging Cable,1,11.95,12/02/19 19:00,"249 11th St, Seattle, WA 98101" +312720,AAA Batteries (4-pack),1,2.99,12/19/19 08:43,"760 2nd St, New York City, NY 10001" +312721,AA Batteries (4-pack),1,3.84,12/10/19 10:21,"287 Adams St, Boston, MA 02215" +312722,Macbook Pro Laptop,1,1700,12/28/19 11:37,"99 9th St, Los Angeles, CA 90001" +312723,USB-C Charging Cable,1,11.95,12/05/19 01:34,"901 8th St, Portland, OR 97035" +312724,Lightning Charging Cable,1,14.95,12/21/19 19:26,"41 Adams St, Portland, OR 97035" +312725,USB-C Charging Cable,1,11.95,12/14/19 14:21,"323 Main St, Portland, OR 97035" +312726,AAA Batteries (4-pack),1,2.99,12/15/19 10:56,"885 Dogwood St, Los Angeles, CA 90001" +312727,Google Phone,1,600,12/13/19 10:27,"69 River St, Los Angeles, CA 90001" +312728,20in Monitor,1,109.99,12/22/19 23:18,"726 1st St, Boston, MA 02215" +312729,AAA Batteries (4-pack),1,2.99,12/30/19 01:10,"162 1st St, Los Angeles, CA 90001" +312730,AA Batteries (4-pack),1,3.84,12/07/19 13:40,"153 Walnut St, Boston, MA 02215" +312731,27in 4K Gaming Monitor,1,389.99,12/03/19 10:24,"673 South St, Dallas, TX 75001" +312732,34in Ultrawide Monitor,1,379.99,12/06/19 13:46,"356 Madison St, Boston, MA 02215" +312733,27in FHD Monitor,1,149.99,12/14/19 16:36,"799 Lakeview St, San Francisco, CA 94016" +312734,Apple Airpods Headphones,1,150,12/07/19 21:19,"151 Sunset St, San Francisco, CA 94016" +312735,USB-C Charging Cable,2,11.95,12/25/19 12:29,"911 9th St, Atlanta, GA 30301" +312736,27in FHD Monitor,1,149.99,12/12/19 21:04,"233 Elm St, Los Angeles, CA 90001" +312737,34in Ultrawide Monitor,1,379.99,12/19/19 09:47,"404 8th St, San Francisco, CA 94016" +312738,27in FHD Monitor,1,149.99,12/27/19 11:09,"582 10th St, San Francisco, CA 94016" +312739,USB-C Charging Cable,1,11.95,12/03/19 12:31,"903 South St, Boston, MA 02215" +312740,27in FHD Monitor,1,149.99,12/23/19 18:06,"721 South St, Boston, MA 02215" +312741,27in FHD Monitor,1,149.99,12/23/19 21:19,"42 Cedar St, Boston, MA 02215" +312742,Lightning Charging Cable,1,14.95,12/16/19 00:54,"57 Sunset St, Austin, TX 73301" +312743,Apple Airpods Headphones,1,150,12/09/19 01:28,"89 Forest St, Los Angeles, CA 90001" +312744,AAA Batteries (4-pack),2,2.99,12/13/19 16:21,"666 River St, Boston, MA 02215" +312745,Lightning Charging Cable,1,14.95,12/04/19 10:27,"313 Chestnut St, New York City, NY 10001" +312746,Apple Airpods Headphones,1,150,12/11/19 10:29,"511 1st St, Dallas, TX 75001" +312747,Wired Headphones,1,11.99,12/08/19 06:14,"155 Hill St, Dallas, TX 75001" +312748,AAA Batteries (4-pack),3,2.99,12/08/19 13:58,"17 Jackson St, Boston, MA 02215" +312749,Lightning Charging Cable,2,14.95,12/18/19 22:25,"217 West St, Boston, MA 02215" +312750,Apple Airpods Headphones,1,150,12/20/19 09:46,"218 North St, New York City, NY 10001" +312751,Lightning Charging Cable,1,14.95,12/16/19 20:26,"605 North St, Los Angeles, CA 90001" +312752,Flatscreen TV,1,300,12/20/19 07:18,"196 Main St, Seattle, WA 98101" +312753,Wired Headphones,1,11.99,12/29/19 23:22,"903 Church St, San Francisco, CA 94016" +312754,Wired Headphones,1,11.99,12/31/19 07:44,"459 Lakeview St, San Francisco, CA 94016" +312754,USB-C Charging Cable,1,11.95,12/31/19 07:44,"459 Lakeview St, San Francisco, CA 94016" +312755,Apple Airpods Headphones,1,150,12/12/19 11:54,"408 14th St, Dallas, TX 75001" +312756,Lightning Charging Cable,1,14.95,12/24/19 18:41,"686 Meadow St, Dallas, TX 75001" +312757,USB-C Charging Cable,1,11.95,12/25/19 00:49,"257 5th St, Los Angeles, CA 90001" +312758,34in Ultrawide Monitor,1,379.99,12/25/19 08:53,"84 14th St, New York City, NY 10001" +312759,Bose SoundSport Headphones,1,99.99,12/31/19 13:15,"992 Park St, San Francisco, CA 94016" +312760,LG Washing Machine,1,600.0,12/10/19 12:25,"903 Madison St, New York City, NY 10001" +312761,34in Ultrawide Monitor,1,379.99,12/03/19 07:42,"462 North St, San Francisco, CA 94016" +312762,AA Batteries (4-pack),1,3.84,12/19/19 06:31,"953 Cherry St, Portland, OR 97035" +312763,Apple Airpods Headphones,1,150,12/25/19 00:13,"599 Chestnut St, Atlanta, GA 30301" +312764,34in Ultrawide Monitor,1,379.99,12/08/19 18:08,"337 2nd St, San Francisco, CA 94016" +312765,ThinkPad Laptop,1,999.99,12/20/19 12:33,"371 Adams St, San Francisco, CA 94016" +312766,AAA Batteries (4-pack),4,2.99,12/11/19 22:00,"173 12th St, San Francisco, CA 94016" +312767,Google Phone,1,600,12/24/19 18:26,"605 Pine St, San Francisco, CA 94016" +312767,Wired Headphones,1,11.99,12/24/19 18:26,"605 Pine St, San Francisco, CA 94016" +312768,Google Phone,1,600,12/06/19 09:13,"44 12th St, San Francisco, CA 94016" +312769,Lightning Charging Cable,1,14.95,12/22/19 11:16,"555 13th St, San Francisco, CA 94016" +312770,Google Phone,1,600,12/12/19 16:03,"992 Adams St, Austin, TX 73301" +312771,Apple Airpods Headphones,1,150,12/18/19 11:27,"502 Willow St, San Francisco, CA 94016" +312772,USB-C Charging Cable,1,11.95,12/31/19 23:58,"896 13th St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +312773,iPhone,1,700,12/18/19 16:56,"757 5th St, New York City, NY 10001" +312774,Wired Headphones,1,11.99,12/28/19 06:08,"151 Lake St, New York City, NY 10001" +312775,AA Batteries (4-pack),1,3.84,12/10/19 16:10,"266 Walnut St, Austin, TX 73301" +312776,AAA Batteries (4-pack),1,2.99,12/03/19 13:59,"717 Maple St, Atlanta, GA 30301" +312777,AA Batteries (4-pack),1,3.84,12/22/19 06:00,"853 Highland St, Los Angeles, CA 90001" +312778,Wired Headphones,1,11.99,12/15/19 09:53,"794 Maple St, New York City, NY 10001" +312779,AAA Batteries (4-pack),1,2.99,12/20/19 20:48,"48 Maple St, Dallas, TX 75001" +312780,USB-C Charging Cable,1,11.95,12/30/19 19:53,"809 Hill St, Los Angeles, CA 90001" +312781,Lightning Charging Cable,1,14.95,12/03/19 12:44,"476 Cherry St, Dallas, TX 75001" +312782,Flatscreen TV,1,300,12/11/19 15:29,"435 North St, Los Angeles, CA 90001" +312783,AAA Batteries (4-pack),1,2.99,12/04/19 14:42,"895 Lincoln St, Boston, MA 02215" +312784,Lightning Charging Cable,2,14.95,12/19/19 16:23,"840 4th St, Seattle, WA 98101" +312785,Lightning Charging Cable,1,14.95,12/05/19 19:09,"955 7th St, Dallas, TX 75001" +312785,Bose SoundSport Headphones,1,99.99,12/05/19 19:09,"955 7th St, Dallas, TX 75001" +312786,USB-C Charging Cable,1,11.95,12/22/19 12:53,"331 Meadow St, Los Angeles, CA 90001" +312787,AA Batteries (4-pack),1,3.84,12/02/19 21:11,"42 1st St, Portland, OR 97035" +312788,AA Batteries (4-pack),1,3.84,12/30/19 11:22,"937 14th St, Austin, TX 73301" +312789,Apple Airpods Headphones,1,150,12/12/19 18:55,"248 North St, Los Angeles, CA 90001" +312790,AA Batteries (4-pack),1,3.84,12/07/19 00:48,"954 Church St, Atlanta, GA 30301" +312791,AAA Batteries (4-pack),2,2.99,12/23/19 12:16,"884 West St, Portland, ME 04101" +312792,ThinkPad Laptop,1,999.99,12/30/19 08:23,"901 Lakeview St, Atlanta, GA 30301" +312793,USB-C Charging Cable,1,11.95,12/22/19 16:33,"937 Wilson St, New York City, NY 10001" +312794,iPhone,1,700,12/04/19 12:23,"791 Ridge St, Seattle, WA 98101" +312795,Wired Headphones,1,11.99,12/10/19 11:03,"503 Sunset St, Dallas, TX 75001" +312796,Apple Airpods Headphones,1,150,12/14/19 14:11,"25 Lake St, San Francisco, CA 94016" +312797,Flatscreen TV,1,300,12/06/19 10:54,"282 Jefferson St, Los Angeles, CA 90001" +312798,Wired Headphones,1,11.99,12/21/19 10:25,"596 13th St, Dallas, TX 75001" +312799,34in Ultrawide Monitor,1,379.99,12/11/19 19:55,"847 Jefferson St, Portland, OR 97035" +312800,AA Batteries (4-pack),1,3.84,12/18/19 11:00,"858 Spruce St, Los Angeles, CA 90001" +312801,AAA Batteries (4-pack),1,2.99,12/29/19 14:57,"811 Walnut St, San Francisco, CA 94016" +312802,Wired Headphones,1,11.99,12/05/19 22:10,"424 Maple St, Dallas, TX 75001" +312803,AAA Batteries (4-pack),2,2.99,12/26/19 21:26,"143 Wilson St, Los Angeles, CA 90001" +312804,AA Batteries (4-pack),1,3.84,12/21/19 09:18,"733 Highland St, Austin, TX 73301" +312805,AA Batteries (4-pack),1,3.84,12/31/19 12:02,"596 4th St, Boston, MA 02215" +312806,AA Batteries (4-pack),1,3.84,12/07/19 12:44,"385 Elm St, Atlanta, GA 30301" +312807,Bose SoundSport Headphones,1,99.99,12/28/19 18:01,"395 Main St, Los Angeles, CA 90001" +312808,USB-C Charging Cable,2,11.95,12/05/19 19:10,"330 6th St, San Francisco, CA 94016" +312809,ThinkPad Laptop,1,999.99,12/02/19 11:41,"940 5th St, Boston, MA 02215" +312810,Wired Headphones,1,11.99,12/25/19 21:21,"104 Spruce St, Portland, OR 97035" +312811,20in Monitor,1,109.99,12/12/19 00:58,"20 Pine St, Dallas, TX 75001" +312812,iPhone,1,700,12/21/19 11:00,"130 Jackson St, San Francisco, CA 94016" +312813,AA Batteries (4-pack),1,3.84,12/20/19 14:57,"772 Hickory St, San Francisco, CA 94016" +312814,AAA Batteries (4-pack),3,2.99,12/27/19 12:35,"335 Hill St, Seattle, WA 98101" +312815,AAA Batteries (4-pack),1,2.99,12/22/19 15:15,"673 13th St, New York City, NY 10001" +312816,Bose SoundSport Headphones,1,99.99,12/26/19 20:03,"561 5th St, Atlanta, GA 30301" +312817,27in FHD Monitor,1,149.99,12/10/19 14:55,"456 Washington St, Seattle, WA 98101" +312818,Apple Airpods Headphones,1,150,12/07/19 13:30,"970 14th St, Dallas, TX 75001" +312819,34in Ultrawide Monitor,1,379.99,12/09/19 10:39,"569 13th St, Boston, MA 02215" +312820,Wired Headphones,1,11.99,12/31/19 14:20,"440 4th St, San Francisco, CA 94016" +312821,Wired Headphones,1,11.99,12/23/19 11:07,"737 Highland St, Seattle, WA 98101" +312822,Vareebadd Phone,1,400,12/08/19 14:40,"325 Willow St, Seattle, WA 98101" +312822,USB-C Charging Cable,1,11.95,12/08/19 14:40,"325 Willow St, Seattle, WA 98101" +312823,ThinkPad Laptop,1,999.99,12/16/19 12:02,"274 Cherry St, Los Angeles, CA 90001" +312824,Apple Airpods Headphones,1,150,12/20/19 15:16,"809 Sunset St, Boston, MA 02215" +312825,Macbook Pro Laptop,1,1700,12/26/19 13:31,"457 Walnut St, Dallas, TX 75001" +312826,20in Monitor,1,109.99,12/28/19 20:43,"285 Lincoln St, New York City, NY 10001" +312827,Wired Headphones,2,11.99,12/09/19 14:53,"113 Johnson St, San Francisco, CA 94016" +312828,AAA Batteries (4-pack),1,2.99,12/01/19 20:12,"92 Washington St, Portland, OR 97035" +312829,Lightning Charging Cable,1,14.95,12/05/19 12:32,"935 Maple St, Austin, TX 73301" +312830,Bose SoundSport Headphones,1,99.99,12/28/19 14:17,"231 Lakeview St, Los Angeles, CA 90001" +312831,Wired Headphones,1,11.99,12/08/19 18:32,"103 14th St, Los Angeles, CA 90001" +312832,Wired Headphones,1,11.99,12/22/19 22:47,"854 Jackson St, San Francisco, CA 94016" +312833,Google Phone,1,600,12/21/19 23:00,"911 Hill St, Seattle, WA 98101" +312834,Apple Airpods Headphones,1,150,12/22/19 10:29,"701 8th St, Dallas, TX 75001" +312835,AA Batteries (4-pack),1,3.84,12/01/19 08:33,"841 Jefferson St, Boston, MA 02215" +312836,Wired Headphones,1,11.99,12/14/19 09:00,"865 10th St, Austin, TX 73301" +312837,34in Ultrawide Monitor,1,379.99,12/08/19 10:55,"615 7th St, Los Angeles, CA 90001" +312838,Bose SoundSport Headphones,1,99.99,12/08/19 19:38,"563 South St, New York City, NY 10001" +312839,AA Batteries (4-pack),1,3.84,12/27/19 10:02,"807 North St, Boston, MA 02215" +312840,27in FHD Monitor,1,149.99,12/19/19 13:52,"591 Jefferson St, Dallas, TX 75001" +312841,AA Batteries (4-pack),1,3.84,12/29/19 19:56,"759 4th St, San Francisco, CA 94016" +312842,Lightning Charging Cable,1,14.95,12/15/19 10:54,"485 Lincoln St, Los Angeles, CA 90001" +312843,Lightning Charging Cable,1,14.95,12/05/19 20:40,"256 Pine St, New York City, NY 10001" +312844,34in Ultrawide Monitor,1,379.99,12/09/19 23:07,"400 Lake St, Los Angeles, CA 90001" +312845,Macbook Pro Laptop,1,1700,12/09/19 18:05,"275 Hickory St, Atlanta, GA 30301" +312846,USB-C Charging Cable,1,11.95,12/24/19 08:58,"34 Forest St, Atlanta, GA 30301" +312846,Wired Headphones,1,11.99,12/24/19 08:58,"34 Forest St, Atlanta, GA 30301" +312847,USB-C Charging Cable,1,11.95,12/12/19 20:59,"863 12th St, Dallas, TX 75001" +312848,Wired Headphones,1,11.99,12/22/19 21:15,"427 Ridge St, New York City, NY 10001" +312849,USB-C Charging Cable,1,11.95,12/10/19 19:10,"505 Hickory St, New York City, NY 10001" +312850,Wired Headphones,1,11.99,12/31/19 12:24,"292 Willow St, Portland, ME 04101" +312851,AA Batteries (4-pack),1,3.84,12/20/19 19:15,"117 14th St, Los Angeles, CA 90001" +312852,AA Batteries (4-pack),1,3.84,12/24/19 13:58,"646 Center St, San Francisco, CA 94016" +312853,Lightning Charging Cable,1,14.95,12/17/19 08:15,"997 13th St, Boston, MA 02215" +312854,Apple Airpods Headphones,1,150,12/12/19 08:09,"790 Washington St, Atlanta, GA 30301" +312855,Apple Airpods Headphones,1,150,12/06/19 19:53,"685 West St, Los Angeles, CA 90001" +312856,AA Batteries (4-pack),1,3.84,12/22/19 11:36,"343 Hickory St, San Francisco, CA 94016" +312857,27in FHD Monitor,1,149.99,12/11/19 14:32,"256 2nd St, San Francisco, CA 94016" +312858,Lightning Charging Cable,1,14.95,12/22/19 20:43,"441 Lake St, San Francisco, CA 94016" +312859,iPhone,1,700,12/11/19 11:32,"854 River St, Boston, MA 02215" +312860,27in FHD Monitor,1,149.99,12/21/19 18:55,"595 Chestnut St, Austin, TX 73301" +312861,Lightning Charging Cable,1,14.95,12/07/19 22:28,"14 Meadow St, Portland, OR 97035" +312862,Bose SoundSport Headphones,1,99.99,12/09/19 19:31,"607 Madison St, San Francisco, CA 94016" +312863,AAA Batteries (4-pack),1,2.99,12/24/19 13:44,"305 Cedar St, San Francisco, CA 94016" +312864,Lightning Charging Cable,1,14.95,12/18/19 18:28,"783 Adams St, Portland, OR 97035" +312865,Apple Airpods Headphones,1,150,12/18/19 13:01,"662 Walnut St, Boston, MA 02215" +312866,27in FHD Monitor,1,149.99,12/12/19 14:53,"486 5th St, Portland, OR 97035" +312867,Google Phone,1,600,12/07/19 14:36,"366 4th St, Dallas, TX 75001" +312868,AA Batteries (4-pack),1,3.84,12/08/19 13:08,"358 Meadow St, San Francisco, CA 94016" +312869,ThinkPad Laptop,1,999.99,12/01/19 11:46,"257 Hickory St, San Francisco, CA 94016" +312869,Apple Airpods Headphones,1,150,12/01/19 11:46,"257 Hickory St, San Francisco, CA 94016" +312870,Bose SoundSport Headphones,1,99.99,12/21/19 16:47,"239 Church St, San Francisco, CA 94016" +312871,Macbook Pro Laptop,1,1700,12/09/19 13:18,"300 Elm St, San Francisco, CA 94016" +312872,34in Ultrawide Monitor,1,379.99,12/12/19 08:26,"672 West St, Portland, OR 97035" +312873,Wired Headphones,1,11.99,12/17/19 19:12,"781 Chestnut St, Portland, OR 97035" +312874,Lightning Charging Cable,1,14.95,12/24/19 13:55,"476 Lake St, San Francisco, CA 94016" +312875,Wired Headphones,1,11.99,12/14/19 02:55,"304 5th St, Los Angeles, CA 90001" +312876,iPhone,1,700,12/18/19 22:51,"273 Cedar St, Los Angeles, CA 90001" +312877,AA Batteries (4-pack),3,3.84,12/15/19 18:10,"926 Adams St, New York City, NY 10001" +312878,LG Dryer,1,600.0,12/01/19 14:40,"75 Center St, Portland, ME 04101" +312879,Lightning Charging Cable,1,14.95,12/13/19 10:22,"710 Lincoln St, Los Angeles, CA 90001" +312880,iPhone,1,700,01/01/20 00:35,"838 10th St, Seattle, WA 98101" +312881,Bose SoundSport Headphones,1,99.99,12/20/19 21:06,"171 Meadow St, Seattle, WA 98101" +312882,Apple Airpods Headphones,1,150,12/09/19 16:03,"198 5th St, San Francisco, CA 94016" +312883,Google Phone,1,600,12/03/19 17:28,"175 Washington St, San Francisco, CA 94016" +312884,USB-C Charging Cable,1,11.95,12/19/19 10:18,"204 Lincoln St, Seattle, WA 98101" +312885,AAA Batteries (4-pack),1,2.99,12/14/19 08:32,"26 4th St, Dallas, TX 75001" +312886,Macbook Pro Laptop,1,1700,12/20/19 16:06,"516 Ridge St, Seattle, WA 98101" +312887,USB-C Charging Cable,1,11.95,12/08/19 18:54,"318 Sunset St, Atlanta, GA 30301" +312888,USB-C Charging Cable,1,11.95,12/04/19 07:15,"778 14th St, Austin, TX 73301" +312889,AAA Batteries (4-pack),1,2.99,12/12/19 00:34,"363 Cherry St, San Francisco, CA 94016" +312890,AA Batteries (4-pack),1,3.84,12/20/19 19:09,"670 13th St, San Francisco, CA 94016" +312891,Bose SoundSport Headphones,1,99.99,12/01/19 13:52,"210 Jefferson St, Los Angeles, CA 90001" +312892,Wired Headphones,1,11.99,12/28/19 09:59,"771 Center St, San Francisco, CA 94016" +312893,USB-C Charging Cable,1,11.95,12/13/19 00:38,"231 10th St, Portland, OR 97035" +312894,Wired Headphones,1,11.99,12/31/19 00:21,"414 2nd St, Atlanta, GA 30301" +312895,AAA Batteries (4-pack),2,2.99,12/07/19 20:36,"247 Johnson St, Los Angeles, CA 90001" +312896,Wired Headphones,1,11.99,12/04/19 20:27,"100 Church St, Los Angeles, CA 90001" +312897,AAA Batteries (4-pack),1,2.99,12/10/19 11:05,"191 6th St, Boston, MA 02215" +312898,USB-C Charging Cable,1,11.95,12/04/19 11:57,"44 Lincoln St, New York City, NY 10001" +312899,Bose SoundSport Headphones,1,99.99,12/02/19 15:52,"362 River St, Atlanta, GA 30301" +312900,AA Batteries (4-pack),1,3.84,12/08/19 22:06,"787 Chestnut St, Boston, MA 02215" +312901,Flatscreen TV,1,300,12/31/19 13:35,"516 Cedar St, Dallas, TX 75001" +312902,Google Phone,1,600,12/12/19 13:27,"852 9th St, Los Angeles, CA 90001" +312902,USB-C Charging Cable,1,11.95,12/12/19 13:27,"852 9th St, Los Angeles, CA 90001" +312902,Bose SoundSport Headphones,1,99.99,12/12/19 13:27,"852 9th St, Los Angeles, CA 90001" +312903,27in FHD Monitor,1,149.99,12/27/19 10:50,"349 River St, San Francisco, CA 94016" +312904,Lightning Charging Cable,1,14.95,12/04/19 01:54,"132 Lincoln St, Dallas, TX 75001" +312905,AAA Batteries (4-pack),2,2.99,12/17/19 10:06,"589 Main St, Dallas, TX 75001" +312906,AA Batteries (4-pack),2,3.84,12/07/19 10:14,"391 Cherry St, New York City, NY 10001" +312907,AAA Batteries (4-pack),1,2.99,12/16/19 21:08,"247 9th St, Los Angeles, CA 90001" +312908,Wired Headphones,1,11.99,12/07/19 12:39,"206 Spruce St, Seattle, WA 98101" +312909,Bose SoundSport Headphones,1,99.99,12/04/19 19:52,"89 Park St, New York City, NY 10001" +312910,Wired Headphones,1,11.99,12/23/19 13:20,"880 Pine St, Los Angeles, CA 90001" +312911,Lightning Charging Cable,1,14.95,12/25/19 16:10,"935 Ridge St, Boston, MA 02215" +312912,Lightning Charging Cable,1,14.95,12/23/19 19:53,"805 North St, New York City, NY 10001" +312913,USB-C Charging Cable,1,11.95,12/24/19 20:39,"581 Church St, Austin, TX 73301" +312914,Lightning Charging Cable,1,14.95,12/28/19 02:04,"80 Spruce St, Boston, MA 02215" +312915,Wired Headphones,1,11.99,12/01/19 20:26,"127 Park St, New York City, NY 10001" +312916,AAA Batteries (4-pack),2,2.99,12/07/19 09:05,"204 Washington St, Portland, OR 97035" +312917,27in 4K Gaming Monitor,1,389.99,12/11/19 17:09,"593 5th St, Los Angeles, CA 90001" +312918,Lightning Charging Cable,1,14.95,12/15/19 08:17,"258 Park St, San Francisco, CA 94016" +312919,Flatscreen TV,1,300,12/01/19 19:10,"455 Main St, New York City, NY 10001" +312920,Wired Headphones,1,11.99,12/11/19 23:27,"951 1st St, San Francisco, CA 94016" +312921,Vareebadd Phone,1,400,12/24/19 12:12,"511 8th St, New York City, NY 10001" +312921,USB-C Charging Cable,1,11.95,12/24/19 12:12,"511 8th St, New York City, NY 10001" +312922,20in Monitor,1,109.99,12/15/19 18:37,"736 Hickory St, New York City, NY 10001" +312923,AAA Batteries (4-pack),1,2.99,12/04/19 04:50,"665 12th St, Portland, OR 97035" +312924,USB-C Charging Cable,1,11.95,12/12/19 08:26,"58 9th St, San Francisco, CA 94016" +312925,Lightning Charging Cable,1,14.95,12/08/19 18:39,"188 Lakeview St, Seattle, WA 98101" +312926,iPhone,1,700,12/25/19 12:10,"939 12th St, Los Angeles, CA 90001" +312927,Bose SoundSport Headphones,1,99.99,12/02/19 13:46,"949 Church St, Seattle, WA 98101" +312928,Bose SoundSport Headphones,1,99.99,12/22/19 13:06,"564 Park St, Boston, MA 02215" +312929,AAA Batteries (4-pack),3,2.99,12/18/19 23:39,"195 South St, Portland, OR 97035" +312930,USB-C Charging Cable,1,11.95,12/28/19 11:31,"419 Ridge St, Los Angeles, CA 90001" +312931,Wired Headphones,1,11.99,12/16/19 17:21,"901 Madison St, Los Angeles, CA 90001" +312932,Wired Headphones,1,11.99,12/31/19 15:11,"365 Adams St, San Francisco, CA 94016" +312933,Bose SoundSport Headphones,1,99.99,12/10/19 18:40,"846 Jackson St, San Francisco, CA 94016" +312934,Apple Airpods Headphones,1,150,12/25/19 15:43,"332 North St, New York City, NY 10001" +312935,AA Batteries (4-pack),1,3.84,12/08/19 20:24,"812 Maple St, Atlanta, GA 30301" +312936,Bose SoundSport Headphones,1,99.99,12/11/19 22:09,"69 Jackson St, New York City, NY 10001" +312937,AAA Batteries (4-pack),1,2.99,12/20/19 18:39,"792 Sunset St, Portland, OR 97035" +312938,AAA Batteries (4-pack),1,2.99,12/17/19 22:03,"348 Walnut St, Los Angeles, CA 90001" +312939,iPhone,1,700,12/15/19 10:33,"782 Madison St, Seattle, WA 98101" +312940,USB-C Charging Cable,1,11.95,12/10/19 08:21,"816 Chestnut St, Dallas, TX 75001" +312941,AAA Batteries (4-pack),1,2.99,12/21/19 17:55,"751 Meadow St, Dallas, TX 75001" +312942,Lightning Charging Cable,1,14.95,12/07/19 19:24,"514 8th St, Boston, MA 02215" +312943,Lightning Charging Cable,2,14.95,12/06/19 13:00,"331 River St, New York City, NY 10001" +312944,Flatscreen TV,1,300,12/21/19 11:25,"918 Lincoln St, San Francisco, CA 94016" +312945,Lightning Charging Cable,1,14.95,12/06/19 10:57,"625 13th St, Dallas, TX 75001" +312946,Wired Headphones,1,11.99,12/12/19 16:15,"290 14th St, Austin, TX 73301" +312947,iPhone,1,700,12/09/19 17:38,"146 West St, New York City, NY 10001" +312948,27in 4K Gaming Monitor,1,389.99,12/30/19 23:08,"609 10th St, San Francisco, CA 94016" +312949,AAA Batteries (4-pack),1,2.99,12/03/19 19:36,"364 12th St, Seattle, WA 98101" +312950,AA Batteries (4-pack),1,3.84,12/06/19 18:02,"519 12th St, Austin, TX 73301" +312951,USB-C Charging Cable,1,11.95,12/29/19 16:14,"965 River St, San Francisco, CA 94016" +312952,Apple Airpods Headphones,1,150,12/03/19 21:05,"393 Washington St, Los Angeles, CA 90001" +312953,Lightning Charging Cable,2,14.95,12/26/19 16:43,"348 8th St, San Francisco, CA 94016" +312954,Wired Headphones,1,11.99,12/31/19 22:45,"647 11th St, Dallas, TX 75001" +312955,ThinkPad Laptop,1,999.99,12/24/19 19:44,"798 Cherry St, Portland, OR 97035" +312956,iPhone,1,700,12/14/19 20:47,"441 Maple St, Boston, MA 02215" +312957,20in Monitor,1,109.99,12/28/19 16:54,"569 5th St, Dallas, TX 75001" +312958,USB-C Charging Cable,2,11.95,12/16/19 08:58,"754 Johnson St, Los Angeles, CA 90001" +312959,Bose SoundSport Headphones,1,99.99,12/31/19 12:22,"193 Meadow St, San Francisco, CA 94016" +312960,34in Ultrawide Monitor,1,379.99,12/16/19 12:11,"660 Willow St, Los Angeles, CA 90001" +312961,34in Ultrawide Monitor,1,379.99,12/16/19 09:14,"871 Maple St, Seattle, WA 98101" +312962,AAA Batteries (4-pack),2,2.99,12/21/19 16:01,"376 Main St, Los Angeles, CA 90001" +312963,USB-C Charging Cable,1,11.95,12/16/19 10:48,"417 West St, Austin, TX 73301" +312964,iPhone,1,700,12/02/19 14:10,"913 Park St, Atlanta, GA 30301" +312964,Lightning Charging Cable,1,14.95,12/02/19 14:10,"913 Park St, Atlanta, GA 30301" +312965,Vareebadd Phone,1,400,12/27/19 10:24,"410 Spruce St, San Francisco, CA 94016" +312966,27in FHD Monitor,1,149.99,12/02/19 15:09,"779 Jackson St, Austin, TX 73301" +312967,Apple Airpods Headphones,1,150,12/10/19 16:39,"301 Spruce St, Los Angeles, CA 90001" +312968,Google Phone,1,600,12/07/19 19:28,"322 8th St, San Francisco, CA 94016" +312969,34in Ultrawide Monitor,1,379.99,12/12/19 01:20,"889 South St, New York City, NY 10001" +312970,Wired Headphones,1,11.99,12/01/19 21:53,"340 Adams St, San Francisco, CA 94016" +312971,Wired Headphones,1,11.99,12/18/19 08:27,"185 7th St, San Francisco, CA 94016" +312972,Wired Headphones,1,11.99,12/07/19 18:36,"695 South St, San Francisco, CA 94016" +312973,Wired Headphones,1,11.99,12/16/19 13:09,"388 Spruce St, Austin, TX 73301" +312974,Apple Airpods Headphones,1,150,12/03/19 09:01,"754 Elm St, San Francisco, CA 94016" +312975,Wired Headphones,1,11.99,12/22/19 18:38,"250 9th St, San Francisco, CA 94016" +312976,ThinkPad Laptop,1,999.99,12/27/19 15:43,"171 10th St, New York City, NY 10001" +312977,Lightning Charging Cable,1,14.95,12/28/19 13:04,"773 Pine St, Seattle, WA 98101" +312978,Wired Headphones,1,11.99,12/02/19 14:45,"638 Willow St, Boston, MA 02215" +312979,Apple Airpods Headphones,1,150,12/30/19 13:48,"545 13th St, San Francisco, CA 94016" +312980,AAA Batteries (4-pack),2,2.99,12/03/19 15:39,"609 Spruce St, San Francisco, CA 94016" +312981,AA Batteries (4-pack),1,3.84,12/04/19 12:38,"356 Johnson St, Portland, OR 97035" +312982,USB-C Charging Cable,1,11.95,12/03/19 09:58,"920 Wilson St, San Francisco, CA 94016" +312983,USB-C Charging Cable,1,11.95,12/07/19 20:38,"670 Sunset St, New York City, NY 10001" +312984,AAA Batteries (4-pack),2,2.99,12/16/19 12:07,"829 4th St, San Francisco, CA 94016" +312985,34in Ultrawide Monitor,1,379.99,12/22/19 10:48,"598 Center St, New York City, NY 10001" +312986,Wired Headphones,1,11.99,12/08/19 16:54,"593 10th St, New York City, NY 10001" +312987,34in Ultrawide Monitor,1,379.99,12/27/19 09:42,"699 Sunset St, San Francisco, CA 94016" +312988,27in FHD Monitor,1,149.99,12/12/19 11:23,"31 Lincoln St, Los Angeles, CA 90001" +312989,ThinkPad Laptop,1,999.99,12/25/19 16:00,"98 11th St, Los Angeles, CA 90001" +312990,34in Ultrawide Monitor,1,379.99,12/27/19 21:36,"914 Lakeview St, San Francisco, CA 94016" +312991,AAA Batteries (4-pack),1,2.99,12/09/19 10:16,"856 River St, Boston, MA 02215" +312992,Wired Headphones,1,11.99,12/01/19 10:39,"480 Cherry St, Portland, OR 97035" +312993,AA Batteries (4-pack),1,3.84,12/24/19 13:54,"700 6th St, New York City, NY 10001" +312994,Lightning Charging Cable,1,14.95,12/07/19 20:26,"880 Wilson St, Boston, MA 02215" +312995,USB-C Charging Cable,1,11.95,12/31/19 12:08,"772 West St, Boston, MA 02215" +312996,Macbook Pro Laptop,1,1700,12/12/19 00:01,"811 1st St, Atlanta, GA 30301" +312997,AA Batteries (4-pack),1,3.84,12/25/19 11:51,"724 8th St, Los Angeles, CA 90001" +312998,Wired Headphones,1,11.99,12/01/19 16:39,"458 River St, Dallas, TX 75001" +312999,Apple Airpods Headphones,1,150,12/05/19 18:53,"497 Madison St, Los Angeles, CA 90001" +313000,Wired Headphones,1,11.99,12/22/19 16:19,"438 Johnson St, New York City, NY 10001" +313001,USB-C Charging Cable,1,11.95,12/25/19 23:43,"655 Lake St, Boston, MA 02215" +313002,Vareebadd Phone,1,400,12/23/19 10:43,"501 North St, San Francisco, CA 94016" +313003,34in Ultrawide Monitor,1,379.99,12/29/19 23:42,"738 Willow St, Boston, MA 02215" +313004,AA Batteries (4-pack),1,3.84,12/24/19 12:30,"584 Park St, New York City, NY 10001" +313005,AAA Batteries (4-pack),1,2.99,12/07/19 23:35,"154 4th St, San Francisco, CA 94016" +313005,AAA Batteries (4-pack),1,2.99,12/07/19 23:35,"154 4th St, San Francisco, CA 94016" +313006,AAA Batteries (4-pack),1,2.99,12/25/19 20:53,"279 Wilson St, Atlanta, GA 30301" +313007,iPhone,1,700,12/15/19 20:06,"82 5th St, Dallas, TX 75001" +313008,27in FHD Monitor,1,149.99,12/07/19 09:47,"179 Sunset St, San Francisco, CA 94016" +313009,Lightning Charging Cable,1,14.95,12/22/19 10:21,"756 Park St, Atlanta, GA 30301" +313010,AAA Batteries (4-pack),4,2.99,12/11/19 22:00,"605 Highland St, Austin, TX 73301" +313011,Lightning Charging Cable,1,14.95,12/13/19 23:07,"861 Wilson St, New York City, NY 10001" +313012,Lightning Charging Cable,1,14.95,12/07/19 22:36,"137 Chestnut St, Boston, MA 02215" +313013,USB-C Charging Cable,1,11.95,12/04/19 09:22,"642 Hickory St, Seattle, WA 98101" +313014,AA Batteries (4-pack),2,3.84,12/08/19 15:27,"776 9th St, Boston, MA 02215" +313015,Wired Headphones,1,11.99,12/18/19 20:46,"268 Willow St, Seattle, WA 98101" +313016,LG Washing Machine,1,600.0,12/02/19 12:23,"414 Park St, Seattle, WA 98101" +313017,iPhone,1,700,12/24/19 15:12,"743 5th St, New York City, NY 10001" +313018,Lightning Charging Cable,1,14.95,12/15/19 16:29,"760 Pine St, Boston, MA 02215" +313019,Apple Airpods Headphones,1,150,12/29/19 18:13,"749 Jackson St, New York City, NY 10001" +313020,AAA Batteries (4-pack),3,2.99,12/05/19 14:11,"509 9th St, New York City, NY 10001" +313021,AA Batteries (4-pack),1,3.84,12/14/19 23:05,"708 1st St, Portland, OR 97035" +313022,Bose SoundSport Headphones,1,99.99,12/17/19 10:18,"251 5th St, San Francisco, CA 94016" +313023,Bose SoundSport Headphones,1,99.99,12/04/19 12:27,"697 14th St, Boston, MA 02215" +313024,34in Ultrawide Monitor,1,379.99,12/27/19 10:07,"761 Church St, Boston, MA 02215" +313025,USB-C Charging Cable,1,11.95,12/12/19 14:31,"985 14th St, Austin, TX 73301" +313026,Lightning Charging Cable,1,14.95,12/29/19 14:54,"784 Jackson St, Seattle, WA 98101" +313027,Bose SoundSport Headphones,1,99.99,12/07/19 09:50,"634 Ridge St, Los Angeles, CA 90001" +313028,AAA Batteries (4-pack),1,2.99,12/01/19 08:45,"378 Lake St, San Francisco, CA 94016" +313029,AAA Batteries (4-pack),2,2.99,12/08/19 07:23,"280 5th St, Seattle, WA 98101" +313030,USB-C Charging Cable,1,11.95,12/19/19 21:26,"246 Sunset St, Boston, MA 02215" +313031,Apple Airpods Headphones,1,150,12/05/19 01:14,"303 Jefferson St, Boston, MA 02215" +313032,Lightning Charging Cable,1,14.95,12/08/19 20:31,"99 Johnson St, San Francisco, CA 94016" +313033,Lightning Charging Cable,1,14.95,12/27/19 19:50,"614 Maple St, Los Angeles, CA 90001" +313034,20in Monitor,1,109.99,12/12/19 18:51,"819 Adams St, San Francisco, CA 94016" +313034,USB-C Charging Cable,1,11.95,12/12/19 18:51,"819 Adams St, San Francisco, CA 94016" +313035,AA Batteries (4-pack),1,3.84,12/30/19 16:20,"223 Madison St, Los Angeles, CA 90001" +313036,Google Phone,1,600,12/01/19 20:00,"16 10th St, San Francisco, CA 94016" +313037,iPhone,1,700,12/29/19 21:54,"403 Lincoln St, New York City, NY 10001" +313037,Lightning Charging Cable,1,14.95,12/29/19 21:54,"403 Lincoln St, New York City, NY 10001" +313037,Wired Headphones,1,11.99,12/29/19 21:54,"403 Lincoln St, New York City, NY 10001" +313038,Google Phone,1,600,12/13/19 16:45,"523 Madison St, Portland, OR 97035" +313039,Wired Headphones,1,11.99,12/13/19 04:20,"582 13th St, Portland, OR 97035" +313040,AAA Batteries (4-pack),2,2.99,12/05/19 13:21,"239 Jackson St, San Francisco, CA 94016" +313041,Lightning Charging Cable,1,14.95,12/11/19 20:47,"488 Wilson St, Boston, MA 02215" +313042,Macbook Pro Laptop,1,1700,12/31/19 23:46,"724 Washington St, San Francisco, CA 94016" +313043,Wired Headphones,1,11.99,12/15/19 20:37,"219 Highland St, San Francisco, CA 94016" +313044,USB-C Charging Cable,1,11.95,12/19/19 22:34,"681 6th St, San Francisco, CA 94016" +313045,Bose SoundSport Headphones,1,99.99,12/26/19 20:19,"904 4th St, San Francisco, CA 94016" +313046,Apple Airpods Headphones,1,150,12/18/19 12:10,"795 Meadow St, Portland, OR 97035" +313047,USB-C Charging Cable,1,11.95,12/27/19 20:18,"540 Wilson St, Boston, MA 02215" +313048,34in Ultrawide Monitor,1,379.99,12/18/19 21:21,"346 1st St, San Francisco, CA 94016" +313049,Lightning Charging Cable,2,14.95,12/02/19 11:02,"367 River St, Los Angeles, CA 90001" +313050,iPhone,1,700,12/28/19 19:38,"79 Forest St, San Francisco, CA 94016" +313051,Lightning Charging Cable,1,14.95,12/14/19 13:25,"189 Sunset St, New York City, NY 10001" +313052,AA Batteries (4-pack),1,3.84,12/05/19 13:37,"667 6th St, New York City, NY 10001" +313053,20in Monitor,1,109.99,12/15/19 15:09,"840 Lincoln St, Boston, MA 02215" +313054,27in 4K Gaming Monitor,1,389.99,12/31/19 10:48,"264 Highland St, Los Angeles, CA 90001" +313055,Apple Airpods Headphones,1,150,12/06/19 17:29,"926 West St, San Francisco, CA 94016" +313056,Lightning Charging Cable,1,14.95,12/22/19 11:23,"357 11th St, San Francisco, CA 94016" +313057,Lightning Charging Cable,1,14.95,12/21/19 19:59,"178 5th St, San Francisco, CA 94016" +313058,27in FHD Monitor,1,149.99,12/24/19 10:57,"30 South St, Portland, ME 04101" +313059,Lightning Charging Cable,1,14.95,12/31/19 11:27,"15 Lake St, Los Angeles, CA 90001" +313060,34in Ultrawide Monitor,1,379.99,12/07/19 15:52,"138 Ridge St, Los Angeles, CA 90001" +313061,iPhone,1,700,12/01/19 08:02,"26 Park St, Boston, MA 02215" +313062,34in Ultrawide Monitor,1,379.99,12/03/19 19:11,"481 Pine St, Boston, MA 02215" +313063,USB-C Charging Cable,1,11.95,12/31/19 11:29,"700 2nd St, New York City, NY 10001" +313064,Bose SoundSport Headphones,1,99.99,12/13/19 08:09,"989 Jackson St, Seattle, WA 98101" +313065,27in 4K Gaming Monitor,1,389.99,12/14/19 23:28,"83 West St, Los Angeles, CA 90001" +313066,iPhone,1,700,12/18/19 19:38,"341 Park St, San Francisco, CA 94016" +313067,AA Batteries (4-pack),2,3.84,12/25/19 20:20,"365 9th St, San Francisco, CA 94016" +313068,USB-C Charging Cable,1,11.95,12/03/19 20:46,"587 Highland St, Dallas, TX 75001" +313069,Bose SoundSport Headphones,1,99.99,12/22/19 19:57,"129 Elm St, San Francisco, CA 94016" +313070,AAA Batteries (4-pack),2,2.99,12/14/19 21:12,"178 4th St, New York City, NY 10001" +313071,Macbook Pro Laptop,1,1700,12/20/19 14:34,"7 12th St, Los Angeles, CA 90001" +313072,USB-C Charging Cable,1,11.95,12/20/19 01:42,"255 Ridge St, Los Angeles, CA 90001" +313073,iPhone,1,700,12/06/19 18:46,"350 Madison St, New York City, NY 10001" +313074,AA Batteries (4-pack),2,3.84,12/05/19 01:53,"554 Madison St, New York City, NY 10001" +313075,iPhone,1,700,12/06/19 22:50,"290 2nd St, San Francisco, CA 94016" +313076,Lightning Charging Cable,1,14.95,12/05/19 19:34,"207 Elm St, Dallas, TX 75001" +313077,AA Batteries (4-pack),1,3.84,12/27/19 18:18,"800 Lakeview St, New York City, NY 10001" +313078,AA Batteries (4-pack),1,3.84,12/19/19 11:26,"163 Maple St, Dallas, TX 75001" +313079,Wired Headphones,1,11.99,12/21/19 23:01,"123 Maple St, San Francisco, CA 94016" +,,,,, +313080,AAA Batteries (4-pack),1,2.99,12/10/19 13:25,"549 Main St, San Francisco, CA 94016" +313081,AA Batteries (4-pack),1,3.84,12/19/19 11:32,"512 River St, New York City, NY 10001" +313082,Wired Headphones,1,11.99,12/05/19 11:32,"727 Ridge St, Portland, OR 97035" +313083,34in Ultrawide Monitor,1,379.99,12/05/19 19:17,"795 13th St, Boston, MA 02215" +313083,Apple Airpods Headphones,1,150,12/05/19 19:17,"795 13th St, Boston, MA 02215" +313084,Bose SoundSport Headphones,1,99.99,12/22/19 01:47,"379 Cedar St, San Francisco, CA 94016" +313085,AA Batteries (4-pack),2,3.84,12/19/19 22:32,"814 5th St, San Francisco, CA 94016" +313086,Lightning Charging Cable,1,14.95,12/16/19 18:10,"911 South St, Boston, MA 02215" +313087,Lightning Charging Cable,1,14.95,12/15/19 22:38,"163 10th St, New York City, NY 10001" +313088,AAA Batteries (4-pack),1,2.99,12/16/19 14:20,"967 Cedar St, Dallas, TX 75001" +313089,34in Ultrawide Monitor,1,379.99,12/04/19 09:17,"705 14th St, Los Angeles, CA 90001" +313090,AAA Batteries (4-pack),1,2.99,12/08/19 15:38,"29 Lakeview St, Seattle, WA 98101" +313091,AAA Batteries (4-pack),1,2.99,12/14/19 09:44,"106 9th St, Los Angeles, CA 90001" +313092,ThinkPad Laptop,1,999.99,12/23/19 13:09,"222 Sunset St, Los Angeles, CA 90001" +313093,ThinkPad Laptop,1,999.99,12/23/19 21:51,"734 Jefferson St, Seattle, WA 98101" +313094,Lightning Charging Cable,1,14.95,12/03/19 11:35,"155 Cedar St, Atlanta, GA 30301" +313094,iPhone,1,700,12/03/19 11:35,"155 Cedar St, Atlanta, GA 30301" +313095,27in 4K Gaming Monitor,1,389.99,12/25/19 20:00,"456 6th St, San Francisco, CA 94016" +313096,34in Ultrawide Monitor,1,379.99,12/07/19 14:26,"70 4th St, Seattle, WA 98101" +313097,USB-C Charging Cable,1,11.95,12/24/19 12:36,"181 12th St, New York City, NY 10001" +313098,Wired Headphones,1,11.99,12/21/19 09:32,"265 River St, Atlanta, GA 30301" +313099,27in FHD Monitor,1,149.99,12/08/19 10:21,"228 14th St, San Francisco, CA 94016" +313100,Google Phone,1,600,12/31/19 15:55,"55 Highland St, New York City, NY 10001" +313100,Bose SoundSport Headphones,1,99.99,12/31/19 15:55,"55 Highland St, New York City, NY 10001" +313101,Bose SoundSport Headphones,1,99.99,12/27/19 07:32,"72 14th St, Portland, OR 97035" +313102,AAA Batteries (4-pack),1,2.99,12/05/19 01:56,"23 5th St, Atlanta, GA 30301" +313103,Lightning Charging Cable,1,14.95,12/01/19 20:18,"306 West St, San Francisco, CA 94016" +313104,AAA Batteries (4-pack),1,2.99,12/25/19 15:56,"420 8th St, Atlanta, GA 30301" +313105,AA Batteries (4-pack),3,3.84,12/27/19 11:07,"217 Willow St, Los Angeles, CA 90001" +313106,Flatscreen TV,1,300,12/05/19 16:57,"850 Jackson St, Atlanta, GA 30301" +313107,USB-C Charging Cable,1,11.95,12/15/19 20:22,"50 12th St, Seattle, WA 98101" +313108,Apple Airpods Headphones,1,150,12/27/19 10:35,"141 Dogwood St, Los Angeles, CA 90001" +313109,27in 4K Gaming Monitor,1,389.99,12/22/19 15:41,"7 Park St, San Francisco, CA 94016" +313110,Bose SoundSport Headphones,1,99.99,12/13/19 22:08,"130 Lincoln St, Los Angeles, CA 90001" +313111,AAA Batteries (4-pack),2,2.99,12/13/19 12:41,"801 7th St, Los Angeles, CA 90001" +313112,Wired Headphones,1,11.99,12/02/19 11:01,"748 South St, Los Angeles, CA 90001" +313113,27in 4K Gaming Monitor,1,389.99,12/12/19 21:33,"200 Lake St, San Francisco, CA 94016" +313114,Wired Headphones,1,11.99,12/23/19 09:23,"295 North St, Dallas, TX 75001" +313115,USB-C Charging Cable,1,11.95,12/03/19 19:26,"422 Dogwood St, Dallas, TX 75001" +313116,iPhone,1,700,12/08/19 10:37,"932 13th St, Austin, TX 73301" +313117,Lightning Charging Cable,1,14.95,12/15/19 16:21,"932 Adams St, Dallas, TX 75001" +313118,iPhone,1,700,12/18/19 16:56,"955 11th St, San Francisco, CA 94016" +313118,Apple Airpods Headphones,1,150,12/18/19 16:56,"955 11th St, San Francisco, CA 94016" +313119,Wired Headphones,1,11.99,12/28/19 15:44,"755 7th St, New York City, NY 10001" +313120,ThinkPad Laptop,1,999.99,12/27/19 23:27,"507 Maple St, Austin, TX 73301" +313121,27in 4K Gaming Monitor,1,389.99,12/09/19 13:51,"629 8th St, Austin, TX 73301" +313122,Macbook Pro Laptop,1,1700,12/27/19 12:17,"470 Lakeview St, Atlanta, GA 30301" +313123,Apple Airpods Headphones,1,150,12/26/19 08:26,"611 Willow St, Dallas, TX 75001" +313124,AA Batteries (4-pack),1,3.84,12/25/19 17:31,"379 Lake St, Atlanta, GA 30301" +313125,Lightning Charging Cable,1,14.95,12/15/19 17:14,"735 Lakeview St, San Francisco, CA 94016" +313126,Lightning Charging Cable,1,14.95,12/24/19 10:57,"920 7th St, Los Angeles, CA 90001" +313127,AAA Batteries (4-pack),1,2.99,12/31/19 20:19,"218 Wilson St, Seattle, WA 98101" +313128,USB-C Charging Cable,1,11.95,12/01/19 16:07,"21 Hickory St, Austin, TX 73301" +313129,27in 4K Gaming Monitor,1,389.99,12/26/19 19:47,"835 Lakeview St, New York City, NY 10001" +313130,Wired Headphones,1,11.99,12/25/19 07:15,"160 5th St, Atlanta, GA 30301" +313131,Apple Airpods Headphones,1,150,12/05/19 19:46,"130 North St, Boston, MA 02215" +313132,USB-C Charging Cable,1,11.95,12/30/19 13:15,"65 Lakeview St, New York City, NY 10001" +313133,Apple Airpods Headphones,1,150,12/24/19 09:04,"6 Dogwood St, Portland, OR 97035" +313134,34in Ultrawide Monitor,1,379.99,12/13/19 10:22,"390 7th St, San Francisco, CA 94016" +313135,Lightning Charging Cable,2,14.95,12/23/19 00:21,"233 6th St, Dallas, TX 75001" +313136,Flatscreen TV,1,300,12/19/19 11:28,"165 Chestnut St, Boston, MA 02215" +313137,Bose SoundSport Headphones,1,99.99,12/12/19 18:18,"18 11th St, New York City, NY 10001" +313138,Lightning Charging Cable,1,14.95,12/03/19 22:51,"27 13th St, San Francisco, CA 94016" +313139,27in 4K Gaming Monitor,1,389.99,12/04/19 20:12,"364 Highland St, Boston, MA 02215" +313140,USB-C Charging Cable,1,11.95,12/14/19 19:26,"554 Jackson St, Atlanta, GA 30301" +313141,Lightning Charging Cable,1,14.95,12/10/19 11:49,"697 Johnson St, Los Angeles, CA 90001" +313142,USB-C Charging Cable,1,11.95,12/20/19 17:13,"864 Meadow St, Austin, TX 73301" +313143,AA Batteries (4-pack),1,3.84,12/24/19 20:33,"731 Adams St, Los Angeles, CA 90001" +313144,Bose SoundSport Headphones,1,99.99,12/19/19 21:46,"208 1st St, Los Angeles, CA 90001" +313145,Lightning Charging Cable,1,14.95,12/21/19 22:03,"742 Willow St, Los Angeles, CA 90001" +313146,Lightning Charging Cable,1,14.95,12/07/19 14:36,"224 Elm St, San Francisco, CA 94016" +313147,27in FHD Monitor,1,149.99,12/20/19 12:13,"719 8th St, Portland, OR 97035" +313148,Google Phone,1,600,12/21/19 19:20,"430 Cedar St, Atlanta, GA 30301" +313149,ThinkPad Laptop,1,999.99,12/31/19 13:50,"444 Main St, Austin, TX 73301" +313150,Wired Headphones,1,11.99,12/10/19 12:29,"393 8th St, Los Angeles, CA 90001" +313151,AAA Batteries (4-pack),1,2.99,12/21/19 18:39,"665 5th St, Seattle, WA 98101" +313152,AA Batteries (4-pack),1,3.84,12/19/19 21:53,"804 Chestnut St, Seattle, WA 98101" +313153,Macbook Pro Laptop,1,1700,12/20/19 20:06,"44 Sunset St, Atlanta, GA 30301" +313154,iPhone,1,700,12/08/19 21:31,"546 Highland St, Dallas, TX 75001" +313154,Lightning Charging Cable,1,14.95,12/08/19 21:31,"546 Highland St, Dallas, TX 75001" +313154,Apple Airpods Headphones,1,150,12/08/19 21:31,"546 Highland St, Dallas, TX 75001" +313155,AAA Batteries (4-pack),1,2.99,12/26/19 11:29,"682 6th St, San Francisco, CA 94016" +313156,Apple Airpods Headphones,1,150,12/20/19 20:58,"501 Forest St, Boston, MA 02215" +313157,AA Batteries (4-pack),1,3.84,12/15/19 22:11,"414 Adams St, New York City, NY 10001" +313158,AA Batteries (4-pack),1,3.84,12/02/19 07:45,"553 Johnson St, New York City, NY 10001" +313159,iPhone,1,700,12/29/19 15:43,"706 Center St, Los Angeles, CA 90001" +313160,Lightning Charging Cable,1,14.95,12/06/19 10:51,"849 Center St, San Francisco, CA 94016" +313161,Bose SoundSport Headphones,1,99.99,12/05/19 20:17,"303 Church St, Los Angeles, CA 90001" +313162,Apple Airpods Headphones,1,150,12/08/19 07:21,"898 Lakeview St, New York City, NY 10001" +313163,AA Batteries (4-pack),2,3.84,12/07/19 12:13,"659 Dogwood St, Portland, OR 97035" +313164,Lightning Charging Cable,1,14.95,12/16/19 12:52,"681 Washington St, New York City, NY 10001" +313165,27in FHD Monitor,1,149.99,12/18/19 08:26,"491 River St, San Francisco, CA 94016" +313166,Lightning Charging Cable,1,14.95,12/25/19 23:09,"316 Hill St, Los Angeles, CA 90001" +313167,34in Ultrawide Monitor,1,379.99,12/10/19 10:54,"577 Walnut St, San Francisco, CA 94016" +313168,Apple Airpods Headphones,1,150,12/13/19 08:34,"257 Chestnut St, Seattle, WA 98101" +313169,AA Batteries (4-pack),1,3.84,12/04/19 10:30,"569 Walnut St, Los Angeles, CA 90001" +313170,34in Ultrawide Monitor,1,379.99,12/02/19 22:08,"271 Sunset St, Boston, MA 02215" +313171,Google Phone,1,600,12/02/19 11:39,"821 4th St, Los Angeles, CA 90001" +313172,Apple Airpods Headphones,1,150,12/13/19 20:42,"567 Dogwood St, Austin, TX 73301" +313173,Lightning Charging Cable,1,14.95,12/06/19 22:49,"817 6th St, Seattle, WA 98101" +313174,Lightning Charging Cable,1,14.95,12/09/19 18:42,"361 Hickory St, Los Angeles, CA 90001" +313175,Bose SoundSport Headphones,1,99.99,12/15/19 09:21,"984 Washington St, Austin, TX 73301" +313176,Flatscreen TV,1,300,12/25/19 10:55,"343 2nd St, Los Angeles, CA 90001" +313177,AAA Batteries (4-pack),1,2.99,12/01/19 16:43,"163 Main St, San Francisco, CA 94016" +313178,Google Phone,1,600,12/25/19 20:30,"376 Ridge St, Los Angeles, CA 90001" +313179,Macbook Pro Laptop,1,1700,12/27/19 17:59,"334 Hill St, Atlanta, GA 30301" +313180,USB-C Charging Cable,1,11.95,12/22/19 21:16,"746 Elm St, New York City, NY 10001" +313181,Lightning Charging Cable,1,14.95,12/12/19 14:20,"608 Lake St, Los Angeles, CA 90001" +313182,Bose SoundSport Headphones,1,99.99,12/11/19 06:38,"37 Cedar St, Portland, OR 97035" +313183,Apple Airpods Headphones,1,150,12/07/19 20:30,"227 Wilson St, San Francisco, CA 94016" +313184,AA Batteries (4-pack),2,3.84,12/27/19 12:38,"703 5th St, Austin, TX 73301" +313185,AA Batteries (4-pack),1,3.84,12/01/19 13:28,"267 Ridge St, Austin, TX 73301" +313186,Apple Airpods Headphones,1,150,12/20/19 08:15,"838 Spruce St, Portland, OR 97035" +313187,Bose SoundSport Headphones,1,99.99,12/14/19 14:32,"40 Hill St, Boston, MA 02215" +313188,AAA Batteries (4-pack),3,2.99,12/31/19 08:29,"472 13th St, Boston, MA 02215" +313189,Flatscreen TV,1,300,12/03/19 03:38,"913 5th St, New York City, NY 10001" +313190,Google Phone,1,600,12/21/19 13:16,"124 Jefferson St, San Francisco, CA 94016" +313191,USB-C Charging Cable,1,11.95,12/23/19 17:02,"689 Hickory St, Los Angeles, CA 90001" +313192,Lightning Charging Cable,1,14.95,12/13/19 22:38,"153 Washington St, New York City, NY 10001" +313193,Wired Headphones,1,11.99,12/15/19 21:46,"200 Pine St, Los Angeles, CA 90001" +313194,AA Batteries (4-pack),1,3.84,12/19/19 09:44,"493 6th St, San Francisco, CA 94016" +313195,Wired Headphones,1,11.99,12/18/19 17:30,"46 9th St, Atlanta, GA 30301" +313196,AA Batteries (4-pack),1,3.84,12/21/19 18:04,"570 Jackson St, Los Angeles, CA 90001" +313197,USB-C Charging Cable,1,11.95,12/19/19 18:31,"848 10th St, New York City, NY 10001" +313198,Wired Headphones,1,11.99,12/30/19 16:40,"835 Meadow St, Portland, OR 97035" +313199,USB-C Charging Cable,1,11.95,12/21/19 16:31,"809 7th St, Austin, TX 73301" +313200,Wired Headphones,1,11.99,12/24/19 12:43,"363 Walnut St, Seattle, WA 98101" +313201,Vareebadd Phone,1,400,12/06/19 20:53,"745 North St, Seattle, WA 98101" +313202,AA Batteries (4-pack),1,3.84,12/04/19 16:37,"583 Hickory St, Boston, MA 02215" +313203,34in Ultrawide Monitor,1,379.99,12/09/19 03:06,"328 6th St, Boston, MA 02215" +313204,Wired Headphones,1,11.99,12/28/19 12:58,"831 2nd St, Dallas, TX 75001" +313205,Google Phone,1,600,12/06/19 13:43,"977 Madison St, Atlanta, GA 30301" +313206,AAA Batteries (4-pack),2,2.99,12/31/19 10:50,"611 Madison St, Boston, MA 02215" +313207,Lightning Charging Cable,1,14.95,12/28/19 00:58,"254 Center St, Los Angeles, CA 90001" +313208,20in Monitor,1,109.99,12/01/19 13:54,"544 9th St, New York City, NY 10001" +313209,AA Batteries (4-pack),1,3.84,12/10/19 01:59,"526 5th St, Boston, MA 02215" +313210,34in Ultrawide Monitor,1,379.99,12/31/19 16:33,"927 Chestnut St, Los Angeles, CA 90001" +313211,Bose SoundSport Headphones,1,99.99,12/25/19 17:04,"464 Church St, Austin, TX 73301" +313212,Lightning Charging Cable,1,14.95,12/01/19 09:05,"317 Center St, Portland, OR 97035" +313213,USB-C Charging Cable,1,11.95,12/17/19 13:05,"439 Lincoln St, Austin, TX 73301" +313214,Lightning Charging Cable,1,14.95,12/01/19 11:52,"782 4th St, New York City, NY 10001" +313215,ThinkPad Laptop,1,999.99,12/07/19 18:02,"502 River St, New York City, NY 10001" +313216,USB-C Charging Cable,1,11.95,12/27/19 01:00,"952 Sunset St, New York City, NY 10001" +313217,Wired Headphones,1,11.99,12/13/19 14:34,"289 Park St, Portland, OR 97035" +313218,Lightning Charging Cable,1,14.95,12/07/19 11:23,"916 14th St, Boston, MA 02215" +313219,Lightning Charging Cable,2,14.95,12/06/19 22:22,"912 Forest St, Los Angeles, CA 90001" +313220,Vareebadd Phone,1,400,12/16/19 16:10,"135 Cedar St, San Francisco, CA 94016" +313220,USB-C Charging Cable,1,11.95,12/16/19 16:10,"135 Cedar St, San Francisco, CA 94016" +313221,Wired Headphones,1,11.99,12/14/19 17:17,"421 Willow St, Portland, OR 97035" +313222,USB-C Charging Cable,1,11.95,12/18/19 13:26,"666 Dogwood St, San Francisco, CA 94016" +313223,27in FHD Monitor,1,149.99,12/08/19 13:04,"570 Sunset St, San Francisco, CA 94016" +313224,Vareebadd Phone,1,400,12/18/19 07:16,"339 Center St, New York City, NY 10001" +313225,Macbook Pro Laptop,1,1700,12/18/19 18:26,"523 9th St, Portland, ME 04101" +313226,Wired Headphones,1,11.99,12/07/19 22:23,"210 Willow St, San Francisco, CA 94016" +313227,Lightning Charging Cable,1,14.95,12/31/19 10:12,"272 South St, Boston, MA 02215" +313228,AA Batteries (4-pack),1,3.84,12/05/19 17:04,"88 Dogwood St, San Francisco, CA 94016" +313229,AAA Batteries (4-pack),1,2.99,12/25/19 06:13,"619 9th St, San Francisco, CA 94016" +313230,Wired Headphones,1,11.99,12/05/19 14:17,"301 West St, San Francisco, CA 94016" +313231,Apple Airpods Headphones,1,150,12/26/19 10:07,"502 14th St, San Francisco, CA 94016" +313232,AA Batteries (4-pack),2,3.84,12/11/19 19:04,"491 11th St, Boston, MA 02215" +313233,USB-C Charging Cable,1,11.95,12/24/19 15:01,"433 West St, Los Angeles, CA 90001" +313233,Lightning Charging Cable,1,14.95,12/24/19 15:01,"433 West St, Los Angeles, CA 90001" +313234,AAA Batteries (4-pack),1,2.99,12/21/19 00:57,"606 Meadow St, Boston, MA 02215" +313235,AA Batteries (4-pack),1,3.84,12/25/19 19:52,"764 Cherry St, New York City, NY 10001" +313236,Apple Airpods Headphones,1,150,12/26/19 07:37,"462 Center St, Dallas, TX 75001" +313237,AA Batteries (4-pack),1,3.84,12/07/19 12:18,"478 Washington St, San Francisco, CA 94016" +313238,Bose SoundSport Headphones,1,99.99,12/16/19 11:44,"409 Spruce St, Atlanta, GA 30301" +313239,USB-C Charging Cable,1,11.95,12/23/19 18:14,"643 Willow St, Los Angeles, CA 90001" +313240,USB-C Charging Cable,1,11.95,12/26/19 13:28,"448 West St, New York City, NY 10001" +313241,AAA Batteries (4-pack),1,2.99,12/09/19 10:08,"146 2nd St, Austin, TX 73301" +313242,Lightning Charging Cable,1,14.95,12/07/19 23:36,"329 10th St, San Francisco, CA 94016" +313243,Wired Headphones,1,11.99,12/26/19 22:02,"343 14th St, San Francisco, CA 94016" +313244,Lightning Charging Cable,1,14.95,12/24/19 12:56,"730 Adams St, Boston, MA 02215" +313244,Wired Headphones,1,11.99,12/24/19 12:56,"730 Adams St, Boston, MA 02215" +313245,USB-C Charging Cable,1,11.95,12/12/19 16:19,"734 Wilson St, San Francisco, CA 94016" +313246,Lightning Charging Cable,1,14.95,12/05/19 15:58,"555 Ridge St, San Francisco, CA 94016" +313247,USB-C Charging Cable,1,11.95,12/25/19 15:40,"859 4th St, Boston, MA 02215" +313248,Wired Headphones,1,11.99,12/29/19 21:04,"342 14th St, Los Angeles, CA 90001" +313249,Lightning Charging Cable,1,14.95,12/09/19 13:37,"764 Cedar St, San Francisco, CA 94016" +313250,AAA Batteries (4-pack),2,2.99,12/17/19 18:09,"920 Spruce St, Portland, OR 97035" +313251,Wired Headphones,1,11.99,12/21/19 07:53,"643 Main St, San Francisco, CA 94016" +313252,Apple Airpods Headphones,1,150,12/28/19 13:24,"291 Johnson St, New York City, NY 10001" +313253,Apple Airpods Headphones,1,150,12/18/19 14:24,"264 10th St, New York City, NY 10001" +313254,Wired Headphones,1,11.99,12/22/19 01:36,"603 South St, San Francisco, CA 94016" +313255,Lightning Charging Cable,1,14.95,12/18/19 11:00,"658 Main St, Boston, MA 02215" +313256,Lightning Charging Cable,1,14.95,12/24/19 06:26,"281 Maple St, San Francisco, CA 94016" +313257,AA Batteries (4-pack),2,3.84,12/22/19 20:55,"935 Adams St, Boston, MA 02215" +313258,Bose SoundSport Headphones,1,99.99,12/20/19 09:29,"407 1st St, Dallas, TX 75001" +313258,Wired Headphones,1,11.99,12/20/19 09:29,"407 1st St, Dallas, TX 75001" +313259,ThinkPad Laptop,1,999.99,12/08/19 09:18,"25 Jackson St, San Francisco, CA 94016" +313260,Lightning Charging Cable,1,14.95,12/09/19 12:25,"718 4th St, Atlanta, GA 30301" +313261,Bose SoundSport Headphones,1,99.99,12/05/19 12:34,"587 13th St, New York City, NY 10001" +313262,Apple Airpods Headphones,1,150,12/27/19 08:32,"876 Dogwood St, San Francisco, CA 94016" +313263,Lightning Charging Cable,1,14.95,12/05/19 14:25,"204 Dogwood St, Boston, MA 02215" +313264,AA Batteries (4-pack),1,3.84,12/09/19 11:11,"97 Church St, San Francisco, CA 94016" +313265,27in FHD Monitor,1,149.99,12/10/19 17:14,"906 Center St, San Francisco, CA 94016" +313266,AAA Batteries (4-pack),6,2.99,12/23/19 08:33,"732 Madison St, New York City, NY 10001" +313267,USB-C Charging Cable,1,11.95,12/22/19 10:33,"911 14th St, Austin, TX 73301" +313268,iPhone,1,700,12/27/19 20:13,"944 Johnson St, Boston, MA 02215" +313269,Wired Headphones,1,11.99,12/11/19 21:53,"995 8th St, Seattle, WA 98101" +313270,27in FHD Monitor,1,149.99,12/11/19 18:04,"254 8th St, Seattle, WA 98101" +313271,Wired Headphones,1,11.99,12/26/19 11:35,"436 Elm St, San Francisco, CA 94016" +313272,Lightning Charging Cable,1,14.95,12/02/19 16:59,"437 Cherry St, Boston, MA 02215" +313273,Wired Headphones,1,11.99,12/12/19 12:48,"445 Walnut St, Boston, MA 02215" +313274,Lightning Charging Cable,1,14.95,12/04/19 01:11,"466 10th St, San Francisco, CA 94016" +313275,27in FHD Monitor,1,149.99,12/31/19 11:58,"144 Washington St, Seattle, WA 98101" +313276,20in Monitor,1,109.99,12/17/19 16:46,"486 Dogwood St, Austin, TX 73301" +313277,iPhone,1,700,12/16/19 22:49,"543 Cedar St, Atlanta, GA 30301" +313278,AAA Batteries (4-pack),1,2.99,12/30/19 21:06,"75 4th St, San Francisco, CA 94016" +313279,AA Batteries (4-pack),1,3.84,12/01/19 20:29,"762 Johnson St, San Francisco, CA 94016" +313280,AAA Batteries (4-pack),3,2.99,12/03/19 10:12,"950 6th St, Los Angeles, CA 90001" +313281,Apple Airpods Headphones,1,150,12/08/19 19:50,"36 2nd St, Los Angeles, CA 90001" +313282,Lightning Charging Cable,1,14.95,12/16/19 18:51,"948 7th St, Los Angeles, CA 90001" +313283,AAA Batteries (4-pack),1,2.99,12/23/19 08:05,"872 5th St, Los Angeles, CA 90001" +313284,Lightning Charging Cable,1,14.95,12/14/19 14:56,"822 Cedar St, San Francisco, CA 94016" +313285,AA Batteries (4-pack),1,3.84,12/31/19 19:26,"542 Lakeview St, San Francisco, CA 94016" +313286,AA Batteries (4-pack),2,3.84,12/27/19 22:28,"224 10th St, New York City, NY 10001" +313287,USB-C Charging Cable,2,11.95,12/13/19 11:33,"935 Chestnut St, San Francisco, CA 94016" +313288,ThinkPad Laptop,1,999.99,12/07/19 23:19,"504 Chestnut St, New York City, NY 10001" +313289,Lightning Charging Cable,1,14.95,12/12/19 09:18,"392 North St, Seattle, WA 98101" +313290,AA Batteries (4-pack),1,3.84,12/29/19 22:14,"253 Cedar St, Los Angeles, CA 90001" +313291,Google Phone,1,600,12/30/19 18:22,"60 7th St, New York City, NY 10001" +313292,iPhone,1,700,12/19/19 10:52,"97 Chestnut St, San Francisco, CA 94016" +313292,Wired Headphones,1,11.99,12/19/19 10:52,"97 Chestnut St, San Francisco, CA 94016" +313293,Wired Headphones,1,11.99,12/05/19 15:33,"505 Hickory St, Los Angeles, CA 90001" +313294,34in Ultrawide Monitor,1,379.99,12/04/19 00:25,"26 8th St, Dallas, TX 75001" +313295,27in FHD Monitor,1,149.99,12/02/19 18:29,"666 14th St, Boston, MA 02215" +313296,iPhone,1,700,12/26/19 16:54,"647 Meadow St, San Francisco, CA 94016" +313297,AA Batteries (4-pack),1,3.84,12/02/19 10:33,"497 River St, New York City, NY 10001" +313298,27in FHD Monitor,1,149.99,12/05/19 21:12,"155 6th St, Seattle, WA 98101" +313299,AAA Batteries (4-pack),1,2.99,12/17/19 15:08,"795 Park St, San Francisco, CA 94016" +313300,iPhone,1,700,12/24/19 22:08,"418 1st St, Dallas, TX 75001" +313301,Lightning Charging Cable,1,14.95,12/27/19 22:08,"500 Church St, Boston, MA 02215" +313302,AAA Batteries (4-pack),3,2.99,12/19/19 14:16,"232 11th St, Portland, ME 04101" +313303,AA Batteries (4-pack),1,3.84,12/29/19 18:33,"705 1st St, Boston, MA 02215" +313304,Lightning Charging Cable,1,14.95,12/04/19 11:00,"53 Spruce St, New York City, NY 10001" +313305,AAA Batteries (4-pack),1,2.99,12/24/19 18:27,"861 Highland St, San Francisco, CA 94016" +313306,AAA Batteries (4-pack),1,2.99,12/24/19 18:09,"500 12th St, Boston, MA 02215" +313307,LG Washing Machine,1,600.0,12/24/19 15:51,"435 Walnut St, New York City, NY 10001" +313308,Apple Airpods Headphones,1,150,12/19/19 10:40,"585 River St, Seattle, WA 98101" +313309,AAA Batteries (4-pack),1,2.99,12/15/19 20:14,"806 Adams St, San Francisco, CA 94016" +313310,Wired Headphones,1,11.99,12/10/19 19:44,"354 Sunset St, San Francisco, CA 94016" +313311,Wired Headphones,1,11.99,12/05/19 13:15,"547 7th St, New York City, NY 10001" +313312,Lightning Charging Cable,1,14.95,12/06/19 23:09,"686 Meadow St, Seattle, WA 98101" +313313,LG Washing Machine,1,600.0,12/15/19 06:56,"162 Cedar St, Seattle, WA 98101" +313314,USB-C Charging Cable,1,11.95,12/03/19 20:59,"388 7th St, Seattle, WA 98101" +313315,20in Monitor,1,109.99,12/28/19 23:03,"242 Washington St, San Francisco, CA 94016" +313316,27in 4K Gaming Monitor,1,389.99,12/13/19 14:42,"516 Highland St, Seattle, WA 98101" +313317,20in Monitor,1,109.99,12/04/19 14:27,"512 Dogwood St, Los Angeles, CA 90001" +313318,AAA Batteries (4-pack),1,2.99,12/16/19 06:21,"373 Willow St, Atlanta, GA 30301" +313319,ThinkPad Laptop,1,999.99,12/25/19 15:34,"491 Park St, Seattle, WA 98101" +313320,27in FHD Monitor,1,149.99,12/20/19 20:18,"563 Hill St, San Francisco, CA 94016" +313321,USB-C Charging Cable,1,11.95,12/04/19 16:32,"864 Chestnut St, San Francisco, CA 94016" +313322,Lightning Charging Cable,1,14.95,12/16/19 13:53,"47 Maple St, Portland, OR 97035" +313323,Bose SoundSport Headphones,1,99.99,12/12/19 00:45,"172 10th St, Los Angeles, CA 90001" +313324,AA Batteries (4-pack),1,3.84,12/25/19 10:11,"546 9th St, Atlanta, GA 30301" +313325,USB-C Charging Cable,1,11.95,12/14/19 10:39,"143 Dogwood St, San Francisco, CA 94016" +313326,34in Ultrawide Monitor,1,379.99,12/12/19 19:13,"142 6th St, Austin, TX 73301" +313327,AA Batteries (4-pack),4,3.84,12/21/19 17:01,"309 Sunset St, Los Angeles, CA 90001" +313328,Wired Headphones,1,11.99,12/21/19 21:15,"35 West St, Austin, TX 73301" +313329,AAA Batteries (4-pack),4,2.99,12/15/19 21:41,"352 2nd St, New York City, NY 10001" +313330,AA Batteries (4-pack),2,3.84,12/25/19 17:09,"702 7th St, New York City, NY 10001" +313331,27in 4K Gaming Monitor,1,389.99,12/28/19 20:56,"96 Chestnut St, San Francisco, CA 94016" +313332,Bose SoundSport Headphones,1,99.99,12/31/19 00:41,"676 Ridge St, New York City, NY 10001" +313333,AA Batteries (4-pack),2,3.84,12/16/19 17:44,"863 Hill St, New York City, NY 10001" +313334,AA Batteries (4-pack),1,3.84,12/30/19 06:01,"394 Lakeview St, New York City, NY 10001" +313335,Lightning Charging Cable,1,14.95,12/05/19 13:40,"90 Chestnut St, San Francisco, CA 94016" +313336,USB-C Charging Cable,1,11.95,12/24/19 07:07,"459 Sunset St, Portland, OR 97035" +313337,Lightning Charging Cable,1,14.95,12/22/19 08:26,"589 Hickory St, Boston, MA 02215" +313338,AA Batteries (4-pack),2,3.84,12/30/19 12:16,"554 Chestnut St, San Francisco, CA 94016" +313339,Wired Headphones,1,11.99,12/09/19 15:20,"890 11th St, Seattle, WA 98101" +313340,AA Batteries (4-pack),2,3.84,12/06/19 19:09,"533 Main St, San Francisco, CA 94016" +313341,Lightning Charging Cable,1,14.95,12/10/19 09:03,"282 Ridge St, Portland, OR 97035" +313342,AA Batteries (4-pack),1,3.84,12/18/19 17:11,"663 South St, Portland, OR 97035" +313343,AAA Batteries (4-pack),3,2.99,12/30/19 12:01,"179 12th St, Boston, MA 02215" +313344,USB-C Charging Cable,1,11.95,12/23/19 21:59,"908 Adams St, San Francisco, CA 94016" +313345,Vareebadd Phone,1,400,12/08/19 06:40,"976 Spruce St, Atlanta, GA 30301" +313346,Wired Headphones,2,11.99,12/21/19 10:50,"468 13th St, San Francisco, CA 94016" +313347,Lightning Charging Cable,2,14.95,12/16/19 22:55,"684 Meadow St, San Francisco, CA 94016" +313348,Google Phone,1,600,12/18/19 10:06,"302 Lake St, Atlanta, GA 30301" +313348,Wired Headphones,1,11.99,12/18/19 10:06,"302 Lake St, Atlanta, GA 30301" +313349,USB-C Charging Cable,2,11.95,12/13/19 11:57,"250 Hill St, Atlanta, GA 30301" +313350,Flatscreen TV,1,300,12/12/19 23:24,"671 Lake St, Boston, MA 02215" +313351,Wired Headphones,1,11.99,12/26/19 08:46,"327 12th St, Los Angeles, CA 90001" +313352,USB-C Charging Cable,1,11.95,01/01/20 02:29,"8 Cherry St, Portland, OR 97035" +313353,27in FHD Monitor,1,149.99,12/24/19 11:00,"635 Hickory St, San Francisco, CA 94016" +313354,20in Monitor,1,109.99,12/08/19 22:13,"220 Forest St, Austin, TX 73301" +313355,Lightning Charging Cable,1,14.95,12/02/19 13:48,"822 8th St, Los Angeles, CA 90001" +313356,AA Batteries (4-pack),1,3.84,12/21/19 09:17,"827 Willow St, Atlanta, GA 30301" +313357,27in FHD Monitor,1,149.99,12/14/19 09:41,"356 12th St, Seattle, WA 98101" +313358,AAA Batteries (4-pack),1,2.99,12/28/19 14:35,"932 4th St, San Francisco, CA 94016" +313359,AAA Batteries (4-pack),1,2.99,12/23/19 21:11,"957 Jackson St, Seattle, WA 98101" +313360,USB-C Charging Cable,1,11.95,12/13/19 22:42,"658 Chestnut St, Boston, MA 02215" +313361,AAA Batteries (4-pack),2,2.99,12/18/19 19:38,"680 13th St, Boston, MA 02215" +313362,USB-C Charging Cable,2,11.95,12/23/19 02:10,"91 Forest St, New York City, NY 10001" +313363,AA Batteries (4-pack),1,3.84,12/05/19 13:07,"556 Highland St, San Francisco, CA 94016" +313364,27in 4K Gaming Monitor,1,389.99,12/11/19 20:29,"681 Church St, Los Angeles, CA 90001" +313365,AAA Batteries (4-pack),1,2.99,12/25/19 09:55,"168 Hill St, Los Angeles, CA 90001" +313366,Apple Airpods Headphones,1,150,12/22/19 15:52,"4 Johnson St, Boston, MA 02215" +313367,AAA Batteries (4-pack),1,2.99,12/19/19 12:50,"281 2nd St, New York City, NY 10001" +313368,Bose SoundSport Headphones,1,99.99,12/18/19 20:29,"396 Willow St, Los Angeles, CA 90001" +313369,27in 4K Gaming Monitor,1,389.99,12/27/19 15:30,"843 9th St, Boston, MA 02215" +313370,AAA Batteries (4-pack),1,2.99,12/03/19 13:27,"966 Elm St, San Francisco, CA 94016" +313371,Apple Airpods Headphones,2,150,12/10/19 10:37,"394 Meadow St, Atlanta, GA 30301" +313372,34in Ultrawide Monitor,1,379.99,12/23/19 11:21,"160 North St, New York City, NY 10001" +313372,AAA Batteries (4-pack),1,2.99,12/23/19 11:21,"160 North St, New York City, NY 10001" +313373,Lightning Charging Cable,1,14.95,12/07/19 14:56,"50 West St, Los Angeles, CA 90001" +313374,iPhone,1,700,12/07/19 15:15,"840 Jackson St, Boston, MA 02215" +313375,Wired Headphones,2,11.99,12/03/19 08:30,"954 North St, Boston, MA 02215" +313376,20in Monitor,1,109.99,12/11/19 17:55,"956 Wilson St, Los Angeles, CA 90001" +313376,USB-C Charging Cable,1,11.95,12/11/19 17:55,"956 Wilson St, Los Angeles, CA 90001" +313377,27in 4K Gaming Monitor,1,389.99,12/01/19 20:27,"89 Madison St, Dallas, TX 75001" +313378,Wired Headphones,1,11.99,12/24/19 09:58,"192 1st St, Seattle, WA 98101" +313379,Lightning Charging Cable,1,14.95,12/15/19 11:25,"652 Lake St, San Francisco, CA 94016" +313380,AA Batteries (4-pack),1,3.84,12/24/19 14:10,"243 Pine St, San Francisco, CA 94016" +313381,AA Batteries (4-pack),1,3.84,12/17/19 18:20,"304 6th St, Portland, OR 97035" +313382,Wired Headphones,1,11.99,12/30/19 18:10,"704 Forest St, Atlanta, GA 30301" +313382,AA Batteries (4-pack),2,3.84,12/30/19 18:10,"704 Forest St, Atlanta, GA 30301" +313383,Apple Airpods Headphones,1,150,12/12/19 13:49,"585 Wilson St, San Francisco, CA 94016" +313384,AAA Batteries (4-pack),3,2.99,12/29/19 00:37,"547 7th St, Dallas, TX 75001" +313385,iPhone,1,700,12/28/19 16:41,"122 Main St, San Francisco, CA 94016" +313386,Bose SoundSport Headphones,1,99.99,12/23/19 19:08,"171 7th St, San Francisco, CA 94016" +313387,Google Phone,1,600,12/21/19 12:44,"251 Wilson St, San Francisco, CA 94016" +313388,AAA Batteries (4-pack),1,2.99,12/25/19 17:37,"392 Sunset St, Boston, MA 02215" +313389,Flatscreen TV,1,300,12/10/19 20:10,"495 14th St, Los Angeles, CA 90001" +313390,ThinkPad Laptop,1,999.99,12/05/19 09:49,"418 Church St, Los Angeles, CA 90001" +313391,Macbook Pro Laptop,1,1700,12/13/19 22:49,"906 14th St, San Francisco, CA 94016" +313392,ThinkPad Laptop,1,999.99,12/10/19 19:13,"466 Jackson St, San Francisco, CA 94016" +313393,Wired Headphones,1,11.99,12/16/19 18:37,"450 South St, San Francisco, CA 94016" +313394,Wired Headphones,1,11.99,12/25/19 23:47,"897 Cedar St, Boston, MA 02215" +313395,iPhone,1,700,12/15/19 15:09,"359 Spruce St, New York City, NY 10001" +313395,Apple Airpods Headphones,1,150,12/15/19 15:09,"359 Spruce St, New York City, NY 10001" +313396,AA Batteries (4-pack),1,3.84,12/04/19 18:57,"776 Main St, Portland, OR 97035" +313397,Lightning Charging Cable,1,14.95,12/07/19 10:54,"557 9th St, Boston, MA 02215" +313398,Lightning Charging Cable,1,14.95,12/15/19 11:26,"430 6th St, New York City, NY 10001" +313399,27in 4K Gaming Monitor,1,389.99,12/11/19 22:01,"258 Hickory St, San Francisco, CA 94016" +313400,Apple Airpods Headphones,1,150,12/02/19 22:23,"440 7th St, Seattle, WA 98101" +313401,AAA Batteries (4-pack),2,2.99,12/01/19 10:55,"247 14th St, Los Angeles, CA 90001" +313402,Wired Headphones,1,11.99,12/03/19 13:54,"247 Madison St, Dallas, TX 75001" +313403,Bose SoundSport Headphones,1,99.99,12/18/19 18:00,"680 14th St, New York City, NY 10001" +313404,Apple Airpods Headphones,1,150,12/27/19 10:08,"61 Adams St, Portland, OR 97035" +313405,USB-C Charging Cable,1,11.95,12/15/19 16:27,"906 Chestnut St, Austin, TX 73301" +313406,Wired Headphones,3,11.99,12/03/19 11:26,"478 Hill St, Portland, ME 04101" +313407,Lightning Charging Cable,1,14.95,12/08/19 15:47,"644 Walnut St, Los Angeles, CA 90001" +313408,Flatscreen TV,1,300,12/19/19 10:19,"304 4th St, San Francisco, CA 94016" +313409,Lightning Charging Cable,1,14.95,12/10/19 10:14,"852 2nd St, New York City, NY 10001" +313410,USB-C Charging Cable,1,11.95,12/09/19 07:55,"858 Lakeview St, Portland, ME 04101" +313411,USB-C Charging Cable,1,11.95,12/27/19 20:46,"467 Elm St, Seattle, WA 98101" +313412,AA Batteries (4-pack),1,3.84,12/05/19 08:02,"866 5th St, Boston, MA 02215" +313413,34in Ultrawide Monitor,1,379.99,12/02/19 17:57,"463 Ridge St, New York City, NY 10001" +313414,AA Batteries (4-pack),1,3.84,12/31/19 16:34,"930 North St, Atlanta, GA 30301" +313415,Bose SoundSport Headphones,1,99.99,12/14/19 07:47,"43 5th St, Los Angeles, CA 90001" +313416,Flatscreen TV,1,300,12/02/19 09:25,"296 11th St, Dallas, TX 75001" +313417,Lightning Charging Cable,1,14.95,12/07/19 00:14,"907 Lake St, New York City, NY 10001" +313418,AAA Batteries (4-pack),2,2.99,12/29/19 11:34,"909 Hickory St, Boston, MA 02215" +313419,Wired Headphones,1,11.99,12/18/19 20:18,"26 Jefferson St, Austin, TX 73301" +313420,AA Batteries (4-pack),2,3.84,12/05/19 01:33,"357 6th St, Los Angeles, CA 90001" +313421,AA Batteries (4-pack),1,3.84,12/09/19 00:12,"954 Cedar St, San Francisco, CA 94016" +313422,iPhone,1,700,12/23/19 09:57,"780 Adams St, New York City, NY 10001" +313423,AA Batteries (4-pack),1,3.84,12/06/19 08:40,"711 5th St, Atlanta, GA 30301" +313424,Bose SoundSport Headphones,2,99.99,12/19/19 13:21,"131 Ridge St, Boston, MA 02215" +313425,USB-C Charging Cable,1,11.95,12/03/19 15:26,"394 13th St, Atlanta, GA 30301" +313426,AA Batteries (4-pack),1,3.84,12/31/19 17:01,"514 2nd St, Austin, TX 73301" +313427,USB-C Charging Cable,2,11.95,12/20/19 20:37,"309 River St, Los Angeles, CA 90001" +313428,Lightning Charging Cable,1,14.95,12/02/19 09:44,"527 2nd St, Los Angeles, CA 90001" +313429,iPhone,1,700,12/05/19 23:17,"687 Washington St, San Francisco, CA 94016" +313430,34in Ultrawide Monitor,1,379.99,12/07/19 17:03,"180 Highland St, San Francisco, CA 94016" +313431,Wired Headphones,1,11.99,12/19/19 15:20,"47 River St, Seattle, WA 98101" +313432,Bose SoundSport Headphones,1,99.99,12/04/19 17:51,"472 Jackson St, San Francisco, CA 94016" +313432,Flatscreen TV,1,300,12/04/19 17:51,"472 Jackson St, San Francisco, CA 94016" +313433,Macbook Pro Laptop,1,1700,12/19/19 19:44,"702 1st St, San Francisco, CA 94016" +313434,Apple Airpods Headphones,1,150,12/28/19 12:29,"567 Madison St, Boston, MA 02215" +313435,USB-C Charging Cable,1,11.95,12/11/19 07:44,"54 Lakeview St, New York City, NY 10001" +,,,,, +313436,AA Batteries (4-pack),1,3.84,12/22/19 11:22,"242 6th St, Los Angeles, CA 90001" +313437,AAA Batteries (4-pack),1,2.99,12/06/19 12:03,"972 South St, Boston, MA 02215" +313438,Lightning Charging Cable,1,14.95,12/15/19 20:58,"152 West St, Boston, MA 02215" +313439,20in Monitor,1,109.99,12/05/19 11:13,"29 North St, Atlanta, GA 30301" +313440,AAA Batteries (4-pack),1,2.99,12/09/19 21:04,"51 Maple St, San Francisco, CA 94016" +313441,Lightning Charging Cable,1,14.95,12/18/19 11:54,"978 Walnut St, New York City, NY 10001" +313441,Bose SoundSport Headphones,1,99.99,12/18/19 11:54,"978 Walnut St, New York City, NY 10001" +313442,iPhone,1,700,12/02/19 22:35,"788 Pine St, Los Angeles, CA 90001" +313442,Lightning Charging Cable,1,14.95,12/02/19 22:35,"788 Pine St, Los Angeles, CA 90001" +313443,Wired Headphones,1,11.99,12/08/19 18:51,"345 Lakeview St, Portland, ME 04101" +313444,20in Monitor,1,109.99,12/06/19 16:34,"891 Hickory St, Boston, MA 02215" +313445,iPhone,1,700,12/04/19 08:52,"439 11th St, Seattle, WA 98101" +313445,Lightning Charging Cable,1,14.95,12/04/19 08:52,"439 11th St, Seattle, WA 98101" +313446,AA Batteries (4-pack),1,3.84,12/12/19 10:04,"280 Lincoln St, Boston, MA 02215" +313447,27in FHD Monitor,1,149.99,12/09/19 11:50,"129 Willow St, New York City, NY 10001" +313448,AA Batteries (4-pack),5,3.84,12/23/19 20:22,"889 Hickory St, New York City, NY 10001" +313449,27in 4K Gaming Monitor,1,389.99,12/29/19 18:09,"290 6th St, New York City, NY 10001" +313450,Bose SoundSport Headphones,1,99.99,12/13/19 13:14,"403 Pine St, Los Angeles, CA 90001" +313451,Google Phone,1,600,12/28/19 16:29,"24 Willow St, San Francisco, CA 94016" +313452,34in Ultrawide Monitor,1,379.99,12/23/19 09:14,"869 Cedar St, San Francisco, CA 94016" +313453,USB-C Charging Cable,1,11.95,12/31/19 13:16,"650 Lincoln St, Boston, MA 02215" +313454,AA Batteries (4-pack),2,3.84,12/10/19 17:19,"910 Ridge St, Boston, MA 02215" +313455,iPhone,1,700,12/13/19 05:00,"566 Cherry St, New York City, NY 10001" +313455,Apple Airpods Headphones,1,150,12/13/19 05:00,"566 Cherry St, New York City, NY 10001" +313456,Wired Headphones,1,11.99,12/28/19 14:39,"437 Johnson St, New York City, NY 10001" +313457,Wired Headphones,1,11.99,12/05/19 14:48,"485 6th St, Seattle, WA 98101" +313458,Apple Airpods Headphones,1,150,12/31/19 20:20,"875 Lincoln St, New York City, NY 10001" +313459,27in FHD Monitor,1,149.99,12/26/19 12:00,"48 Pine St, Portland, ME 04101" +313460,Wired Headphones,2,11.99,12/16/19 11:33,"882 4th St, San Francisco, CA 94016" +313461,USB-C Charging Cable,1,11.95,12/12/19 12:17,"293 13th St, San Francisco, CA 94016" +313462,Wired Headphones,1,11.99,12/01/19 22:35,"210 Madison St, Portland, OR 97035" +313463,iPhone,1,700,12/15/19 06:56,"384 14th St, Boston, MA 02215" +313464,20in Monitor,1,109.99,12/30/19 02:31,"828 Dogwood St, New York City, NY 10001" +313465,USB-C Charging Cable,1,11.95,12/02/19 19:51,"371 Lakeview St, New York City, NY 10001" +313466,20in Monitor,1,109.99,12/13/19 11:33,"768 9th St, New York City, NY 10001" +313467,20in Monitor,1,109.99,12/21/19 06:28,"371 5th St, Atlanta, GA 30301" +313468,AAA Batteries (4-pack),1,2.99,12/05/19 21:11,"407 Pine St, Austin, TX 73301" +313469,Wired Headphones,1,11.99,12/22/19 14:30,"291 Elm St, Seattle, WA 98101" +313470,Lightning Charging Cable,1,14.95,12/21/19 00:52,"234 8th St, Seattle, WA 98101" +313471,USB-C Charging Cable,1,11.95,12/02/19 10:04,"68 Jackson St, Portland, OR 97035" +313472,USB-C Charging Cable,1,11.95,12/15/19 19:25,"964 11th St, Atlanta, GA 30301" +313473,AAA Batteries (4-pack),1,2.99,12/22/19 12:18,"682 5th St, Atlanta, GA 30301" +313474,27in FHD Monitor,1,149.99,12/08/19 23:10,"383 Hickory St, Portland, OR 97035" +313475,AAA Batteries (4-pack),1,2.99,12/23/19 06:54,"535 Jefferson St, Seattle, WA 98101" +313476,Vareebadd Phone,1,400,12/10/19 20:18,"121 Highland St, New York City, NY 10001" +313477,Lightning Charging Cable,1,14.95,12/13/19 16:28,"437 Main St, Seattle, WA 98101" +313478,AA Batteries (4-pack),1,3.84,12/15/19 13:06,"605 Forest St, San Francisco, CA 94016" +313479,27in 4K Gaming Monitor,1,389.99,12/19/19 22:22,"585 8th St, San Francisco, CA 94016" +313480,Lightning Charging Cable,1,14.95,12/27/19 11:21,"807 7th St, Los Angeles, CA 90001" +313481,AAA Batteries (4-pack),3,2.99,12/15/19 19:25,"13 Highland St, Dallas, TX 75001" +313482,iPhone,1,700,12/13/19 22:05,"515 Pine St, Austin, TX 73301" +313483,Wired Headphones,1,11.99,12/18/19 23:07,"682 Spruce St, Austin, TX 73301" +313484,27in 4K Gaming Monitor,1,389.99,12/13/19 12:55,"393 Dogwood St, Atlanta, GA 30301" +313485,Wired Headphones,1,11.99,12/28/19 17:48,"625 Lake St, Atlanta, GA 30301" +313486,Wired Headphones,1,11.99,12/27/19 20:13,"78 West St, Los Angeles, CA 90001" +313487,27in 4K Gaming Monitor,1,389.99,12/31/19 23:40,"894 Ridge St, Dallas, TX 75001" +313488,27in 4K Gaming Monitor,1,389.99,12/11/19 10:02,"35 Elm St, San Francisco, CA 94016" +313488,Apple Airpods Headphones,1,150,12/11/19 10:02,"35 Elm St, San Francisco, CA 94016" +313489,Lightning Charging Cable,1,14.95,12/23/19 17:49,"882 Church St, Boston, MA 02215" +313490,Wired Headphones,1,11.99,12/29/19 16:11,"592 Dogwood St, Austin, TX 73301" +313491,Apple Airpods Headphones,1,150,12/05/19 16:59,"774 Meadow St, New York City, NY 10001" +313492,Google Phone,1,600,12/04/19 17:08,"125 6th St, San Francisco, CA 94016" +313492,Bose SoundSport Headphones,1,99.99,12/04/19 17:08,"125 6th St, San Francisco, CA 94016" +313493,AAA Batteries (4-pack),1,2.99,12/23/19 11:25,"696 Hickory St, San Francisco, CA 94016" +313494,iPhone,1,700,12/19/19 10:34,"688 Jackson St, San Francisco, CA 94016" +313495,Apple Airpods Headphones,1,150,12/06/19 21:25,"566 Hickory St, Boston, MA 02215" +313496,AA Batteries (4-pack),1,3.84,12/16/19 15:12,"466 2nd St, Atlanta, GA 30301" +313497,Lightning Charging Cable,2,14.95,12/04/19 07:45,"365 Maple St, San Francisco, CA 94016" +313498,USB-C Charging Cable,1,11.95,12/02/19 11:34,"427 12th St, San Francisco, CA 94016" +313499,Bose SoundSport Headphones,1,99.99,12/11/19 12:59,"720 River St, Seattle, WA 98101" +313500,Flatscreen TV,1,300,12/09/19 11:16,"846 Washington St, Seattle, WA 98101" +313501,Vareebadd Phone,1,400,12/18/19 22:21,"714 Church St, Los Angeles, CA 90001" +313501,USB-C Charging Cable,1,11.95,12/18/19 22:21,"714 Church St, Los Angeles, CA 90001" +313501,AA Batteries (4-pack),2,3.84,12/18/19 22:21,"714 Church St, Los Angeles, CA 90001" +313502,AA Batteries (4-pack),2,3.84,12/23/19 16:04,"413 14th St, Los Angeles, CA 90001" +313503,Bose SoundSport Headphones,1,99.99,12/29/19 18:50,"912 2nd St, New York City, NY 10001" +313504,Bose SoundSport Headphones,1,99.99,12/25/19 18:00,"309 Maple St, Atlanta, GA 30301" +313505,34in Ultrawide Monitor,1,379.99,12/17/19 18:35,"453 Washington St, Boston, MA 02215" +313506,AA Batteries (4-pack),1,3.84,12/12/19 17:07,"107 Hickory St, New York City, NY 10001" +313507,Lightning Charging Cable,1,14.95,12/07/19 10:52,"843 Jackson St, Dallas, TX 75001" +313508,USB-C Charging Cable,1,11.95,12/13/19 20:08,"475 13th St, Los Angeles, CA 90001" +313509,Apple Airpods Headphones,1,150,12/20/19 13:16,"310 6th St, San Francisco, CA 94016" +313510,ThinkPad Laptop,1,999.99,12/09/19 10:32,"805 1st St, Atlanta, GA 30301" +313511,27in FHD Monitor,1,149.99,12/28/19 13:04,"309 13th St, San Francisco, CA 94016" +313512,Apple Airpods Headphones,1,150,12/19/19 17:09,"579 Center St, New York City, NY 10001" +313513,ThinkPad Laptop,1,999.99,12/12/19 18:37,"81 Dogwood St, Los Angeles, CA 90001" +313514,Wired Headphones,1,11.99,12/20/19 20:04,"688 Spruce St, Portland, OR 97035" +313515,Wired Headphones,1,11.99,12/07/19 20:59,"447 South St, New York City, NY 10001" +313516,Lightning Charging Cable,2,14.95,12/04/19 17:46,"726 Johnson St, Austin, TX 73301" +313517,USB-C Charging Cable,1,11.95,12/30/19 22:59,"252 Church St, Dallas, TX 75001" +313518,AA Batteries (4-pack),1,3.84,12/25/19 01:43,"866 Jefferson St, San Francisco, CA 94016" +313519,AAA Batteries (4-pack),1,2.99,12/18/19 12:57,"296 13th St, Atlanta, GA 30301" +313520,AAA Batteries (4-pack),1,2.99,12/23/19 18:56,"465 Madison St, Atlanta, GA 30301" +313521,iPhone,1,700,12/16/19 16:43,"550 Pine St, Los Angeles, CA 90001" +313522,Macbook Pro Laptop,1,1700,12/17/19 14:13,"779 13th St, San Francisco, CA 94016" +313523,USB-C Charging Cable,1,11.95,12/09/19 01:23,"200 South St, Seattle, WA 98101" +313524,USB-C Charging Cable,1,11.95,12/17/19 17:14,"157 Highland St, Atlanta, GA 30301" +313525,AA Batteries (4-pack),2,3.84,12/20/19 09:04,"429 Highland St, Austin, TX 73301" +313526,AA Batteries (4-pack),1,3.84,12/18/19 14:40,"97 Park St, Seattle, WA 98101" +313527,Lightning Charging Cable,1,14.95,12/18/19 09:37,"328 Lake St, San Francisco, CA 94016" +313528,Bose SoundSport Headphones,1,99.99,12/14/19 20:50,"767 Spruce St, San Francisco, CA 94016" +313529,AA Batteries (4-pack),1,3.84,12/25/19 11:56,"240 Center St, Austin, TX 73301" +313530,AA Batteries (4-pack),1,3.84,12/19/19 11:54,"838 Cherry St, Portland, ME 04101" +313531,AAA Batteries (4-pack),3,2.99,12/07/19 10:32,"336 11th St, San Francisco, CA 94016" +313532,USB-C Charging Cable,1,11.95,12/12/19 10:12,"557 Wilson St, San Francisco, CA 94016" +313533,Apple Airpods Headphones,1,150,12/06/19 13:52,"885 10th St, Austin, TX 73301" +313534,34in Ultrawide Monitor,1,379.99,12/13/19 13:09,"286 Church St, Los Angeles, CA 90001" +313535,AA Batteries (4-pack),1,3.84,12/20/19 13:32,"353 Chestnut St, Atlanta, GA 30301" +313536,Wired Headphones,1,11.99,12/29/19 16:58,"947 Highland St, Boston, MA 02215" +313537,Wired Headphones,1,11.99,12/21/19 14:52,"423 Hickory St, New York City, NY 10001" +313538,Lightning Charging Cable,2,14.95,12/20/19 16:49,"12 Center St, New York City, NY 10001" +313539,Apple Airpods Headphones,1,150,12/20/19 20:04,"235 1st St, New York City, NY 10001" +313540,Lightning Charging Cable,1,14.95,12/09/19 10:04,"884 1st St, Boston, MA 02215" +313541,AAA Batteries (4-pack),1,2.99,12/19/19 12:40,"535 Ridge St, San Francisco, CA 94016" +313542,AA Batteries (4-pack),1,3.84,12/16/19 23:06,"228 South St, Boston, MA 02215" +313543,Wired Headphones,1,11.99,12/24/19 07:23,"458 13th St, Austin, TX 73301" +313544,AA Batteries (4-pack),1,3.84,12/08/19 10:06,"52 10th St, Boston, MA 02215" +313545,iPhone,1,700,12/17/19 15:07,"799 Hill St, Boston, MA 02215" +313546,AAA Batteries (4-pack),3,2.99,12/14/19 13:56,"984 Forest St, Seattle, WA 98101" +313547,USB-C Charging Cable,1,11.95,12/08/19 13:46,"418 Maple St, New York City, NY 10001" +313548,AAA Batteries (4-pack),1,2.99,12/07/19 06:26,"515 Chestnut St, Los Angeles, CA 90001" +313549,Bose SoundSport Headphones,1,99.99,12/18/19 20:47,"899 Highland St, Los Angeles, CA 90001" +313550,Google Phone,1,600,12/04/19 20:53,"981 Meadow St, San Francisco, CA 94016" +313551,USB-C Charging Cable,1,11.95,12/07/19 07:56,"869 Willow St, New York City, NY 10001" +313552,AAA Batteries (4-pack),4,2.99,12/21/19 22:33,"717 10th St, Dallas, TX 75001" +313553,Google Phone,1,600,12/28/19 14:14,"207 River St, Atlanta, GA 30301" +313554,USB-C Charging Cable,1,11.95,12/01/19 08:51,"909 Highland St, Los Angeles, CA 90001" +313555,Macbook Pro Laptop,1,1700,12/30/19 13:38,"190 10th St, Los Angeles, CA 90001" +313556,USB-C Charging Cable,1,11.95,12/09/19 15:36,"555 Meadow St, Seattle, WA 98101" +313557,USB-C Charging Cable,1,11.95,12/17/19 07:02,"695 Jefferson St, Boston, MA 02215" +313557,Apple Airpods Headphones,1,150,12/17/19 07:02,"695 Jefferson St, Boston, MA 02215" +313558,Apple Airpods Headphones,1,150,12/08/19 06:25,"953 Pine St, Los Angeles, CA 90001" +313559,USB-C Charging Cable,1,11.95,12/22/19 15:41,"583 Meadow St, Atlanta, GA 30301" +313560,LG Dryer,1,600.0,12/20/19 22:47,"710 Jefferson St, Atlanta, GA 30301" +313561,AA Batteries (4-pack),1,3.84,12/23/19 15:33,"82 14th St, San Francisco, CA 94016" +313562,Wired Headphones,1,11.99,12/18/19 10:56,"841 8th St, Seattle, WA 98101" +313563,20in Monitor,1,109.99,12/03/19 18:27,"570 Wilson St, San Francisco, CA 94016" +313564,AA Batteries (4-pack),1,3.84,12/15/19 20:49,"909 Willow St, San Francisco, CA 94016" +313565,Lightning Charging Cable,1,14.95,12/28/19 19:37,"747 Center St, Atlanta, GA 30301" +313566,20in Monitor,1,109.99,12/04/19 14:44,"395 11th St, San Francisco, CA 94016" +313567,AAA Batteries (4-pack),2,2.99,12/23/19 16:42,"991 2nd St, Seattle, WA 98101" +313568,Apple Airpods Headphones,1,150,12/22/19 21:36,"388 West St, San Francisco, CA 94016" +313569,Bose SoundSport Headphones,1,99.99,12/20/19 19:22,"312 13th St, Atlanta, GA 30301" +313570,Bose SoundSport Headphones,1,99.99,12/10/19 11:38,"297 Wilson St, San Francisco, CA 94016" +313571,Lightning Charging Cable,1,14.95,12/30/19 01:14,"735 Elm St, San Francisco, CA 94016" +313572,Wired Headphones,1,11.99,12/29/19 12:20,"224 Forest St, Boston, MA 02215" +313573,USB-C Charging Cable,1,11.95,12/27/19 15:34,"839 Pine St, Dallas, TX 75001" +313574,Flatscreen TV,1,300,12/07/19 16:16,"22 Elm St, San Francisco, CA 94016" +313575,AA Batteries (4-pack),1,3.84,12/30/19 11:53,"689 13th St, Boston, MA 02215" +313576,Bose SoundSport Headphones,1,99.99,12/22/19 07:49,"749 Chestnut St, Boston, MA 02215" +313577,Macbook Pro Laptop,1,1700,12/25/19 16:33,"125 Meadow St, Los Angeles, CA 90001" +313578,AA Batteries (4-pack),1,3.84,12/10/19 08:32,"888 River St, Dallas, TX 75001" +313579,AA Batteries (4-pack),1,3.84,12/04/19 12:48,"616 Maple St, Dallas, TX 75001" +313580,AAA Batteries (4-pack),1,2.99,12/14/19 19:47,"230 River St, Boston, MA 02215" +313581,AA Batteries (4-pack),1,3.84,12/25/19 20:38,"504 Church St, Austin, TX 73301" +313582,AAA Batteries (4-pack),1,2.99,12/04/19 18:59,"425 Forest St, Dallas, TX 75001" +313583,27in FHD Monitor,1,149.99,12/31/19 11:49,"736 Hickory St, New York City, NY 10001" +313584,20in Monitor,1,109.99,12/14/19 14:07,"778 Maple St, Los Angeles, CA 90001" +313585,USB-C Charging Cable,1,11.95,12/14/19 17:37,"863 Pine St, Austin, TX 73301" +313586,Bose SoundSport Headphones,1,99.99,12/16/19 17:14,"534 Lake St, Austin, TX 73301" +313587,USB-C Charging Cable,1,11.95,12/10/19 14:19,"263 Maple St, New York City, NY 10001" +313588,Apple Airpods Headphones,1,150,12/08/19 09:45,"16 Park St, San Francisco, CA 94016" +313589,Lightning Charging Cable,1,14.95,12/19/19 11:10,"962 Main St, New York City, NY 10001" +313590,27in FHD Monitor,1,149.99,12/23/19 23:18,"632 Cedar St, San Francisco, CA 94016" +313591,Bose SoundSport Headphones,1,99.99,12/21/19 10:03,"581 Washington St, San Francisco, CA 94016" +313592,27in FHD Monitor,1,149.99,12/18/19 20:25,"771 Cherry St, Seattle, WA 98101" +313592,Lightning Charging Cable,1,14.95,12/18/19 20:25,"771 Cherry St, Seattle, WA 98101" +313593,34in Ultrawide Monitor,1,379.99,12/03/19 19:25,"836 Highland St, Boston, MA 02215" +313594,LG Washing Machine,1,600.0,12/16/19 12:19,"65 Cedar St, Atlanta, GA 30301" +313595,USB-C Charging Cable,1,11.95,12/30/19 10:55,"974 Forest St, Austin, TX 73301" +313596,USB-C Charging Cable,1,11.95,12/17/19 06:15,"561 13th St, San Francisco, CA 94016" +313597,USB-C Charging Cable,1,11.95,12/04/19 11:36,"281 Lakeview St, Portland, OR 97035" +313598,34in Ultrawide Monitor,1,379.99,12/06/19 20:48,"808 Park St, San Francisco, CA 94016" +313599,Macbook Pro Laptop,1,1700,12/23/19 22:44,"73 12th St, Portland, ME 04101" +313600,Bose SoundSport Headphones,1,99.99,12/25/19 19:27,"915 Lake St, San Francisco, CA 94016" +313601,AA Batteries (4-pack),1,3.84,12/17/19 12:22,"630 Walnut St, Los Angeles, CA 90001" +313602,Bose SoundSport Headphones,1,99.99,12/22/19 09:55,"630 Madison St, Austin, TX 73301" +313603,AA Batteries (4-pack),1,3.84,12/08/19 16:07,"603 Jefferson St, Los Angeles, CA 90001" +313604,Apple Airpods Headphones,1,150,12/02/19 22:10,"747 Cedar St, Austin, TX 73301" +313605,AA Batteries (4-pack),2,3.84,12/19/19 18:07,"596 5th St, Austin, TX 73301" +313606,AA Batteries (4-pack),1,3.84,12/17/19 21:28,"539 8th St, New York City, NY 10001" +313607,Lightning Charging Cable,1,14.95,12/28/19 11:32,"502 Elm St, Atlanta, GA 30301" +313608,Wired Headphones,1,11.99,12/28/19 15:19,"254 13th St, San Francisco, CA 94016" +313609,AA Batteries (4-pack),1,3.84,12/30/19 21:13,"39 Main St, Boston, MA 02215" +313610,AA Batteries (4-pack),1,3.84,12/13/19 20:39,"811 8th St, San Francisco, CA 94016" +313611,AA Batteries (4-pack),2,3.84,12/10/19 23:55,"858 Lakeview St, Boston, MA 02215" +313612,Lightning Charging Cable,1,14.95,12/03/19 10:11,"51 Hill St, Portland, OR 97035" +313613,AAA Batteries (4-pack),3,2.99,12/12/19 08:31,"567 Forest St, Atlanta, GA 30301" +313614,27in 4K Gaming Monitor,1,389.99,12/29/19 09:36,"653 13th St, San Francisco, CA 94016" +313615,Wired Headphones,1,11.99,12/09/19 14:08,"190 South St, Portland, OR 97035" +313616,Bose SoundSport Headphones,1,99.99,12/03/19 22:38,"854 Elm St, Los Angeles, CA 90001" +313617,Lightning Charging Cable,1,14.95,12/03/19 14:59,"734 13th St, Seattle, WA 98101" +313618,Apple Airpods Headphones,1,150,12/30/19 18:34,"697 Walnut St, San Francisco, CA 94016" +313619,27in 4K Gaming Monitor,1,389.99,12/05/19 20:00,"855 River St, San Francisco, CA 94016" +313620,Wired Headphones,1,11.99,12/04/19 22:40,"623 13th St, Los Angeles, CA 90001" +313621,AAA Batteries (4-pack),4,2.99,12/10/19 00:57,"70 Wilson St, San Francisco, CA 94016" +313622,27in 4K Gaming Monitor,1,389.99,12/23/19 05:32,"550 Sunset St, Seattle, WA 98101" +313623,iPhone,1,700,12/09/19 10:33,"264 Highland St, Los Angeles, CA 90001" +313624,AAA Batteries (4-pack),1,2.99,12/17/19 14:48,"175 Willow St, Seattle, WA 98101" +313625,USB-C Charging Cable,1,11.95,12/09/19 23:44,"46 11th St, Los Angeles, CA 90001" +313626,27in FHD Monitor,1,149.99,12/11/19 14:51,"196 Chestnut St, San Francisco, CA 94016" +313627,Lightning Charging Cable,1,14.95,12/21/19 19:15,"306 Cedar St, Dallas, TX 75001" +313628,Apple Airpods Headphones,1,150,12/27/19 22:09,"779 1st St, Dallas, TX 75001" +313629,LG Washing Machine,1,600.0,12/22/19 07:48,"861 West St, San Francisco, CA 94016" +313630,AA Batteries (4-pack),1,3.84,12/11/19 19:47,"824 Dogwood St, San Francisco, CA 94016" +313631,20in Monitor,1,109.99,12/23/19 18:20,"811 Hill St, San Francisco, CA 94016" +313632,Lightning Charging Cable,1,14.95,12/08/19 20:46,"410 Maple St, Austin, TX 73301" +313633,Wired Headphones,1,11.99,12/15/19 18:23,"806 Center St, San Francisco, CA 94016" +313634,Wired Headphones,1,11.99,12/02/19 14:15,"488 11th St, Los Angeles, CA 90001" +313635,Bose SoundSport Headphones,1,99.99,12/22/19 19:08,"660 Elm St, San Francisco, CA 94016" +313636,Lightning Charging Cable,1,14.95,12/18/19 14:24,"960 Willow St, Los Angeles, CA 90001" +313637,Flatscreen TV,1,300,12/21/19 00:36,"405 Lincoln St, Dallas, TX 75001" +313638,27in FHD Monitor,1,149.99,12/13/19 18:20,"461 Ridge St, Atlanta, GA 30301" +313639,AA Batteries (4-pack),1,3.84,12/20/19 20:03,"893 Main St, Boston, MA 02215" +313640,Lightning Charging Cable,1,14.95,12/16/19 17:55,"821 1st St, New York City, NY 10001" +313641,Wired Headphones,1,11.99,12/24/19 22:06,"739 Elm St, New York City, NY 10001" +313642,Macbook Pro Laptop,1,1700,12/01/19 12:09,"473 Hill St, Austin, TX 73301" +313643,Lightning Charging Cable,1,14.95,12/15/19 09:17,"355 5th St, New York City, NY 10001" +313644,Wired Headphones,1,11.99,12/11/19 19:26,"713 Dogwood St, Seattle, WA 98101" +313645,AAA Batteries (4-pack),1,2.99,12/18/19 15:03,"638 Jefferson St, San Francisco, CA 94016" +313646,27in FHD Monitor,1,149.99,12/12/19 20:53,"445 Walnut St, New York City, NY 10001" +313647,AAA Batteries (4-pack),1,2.99,12/10/19 12:03,"39 Forest St, Seattle, WA 98101" +313648,34in Ultrawide Monitor,1,379.99,12/28/19 21:17,"875 13th St, Dallas, TX 75001" +313649,Apple Airpods Headphones,1,150,12/23/19 19:07,"676 Hill St, Portland, OR 97035" +313650,27in 4K Gaming Monitor,1,389.99,12/10/19 00:36,"503 Chestnut St, Portland, OR 97035" +313651,Wired Headphones,1,11.99,12/30/19 11:17,"216 12th St, Dallas, TX 75001" +313652,AAA Batteries (4-pack),2,2.99,12/27/19 21:11,"773 Jefferson St, Dallas, TX 75001" +313653,Lightning Charging Cable,1,14.95,12/26/19 21:23,"453 Walnut St, San Francisco, CA 94016" +313654,Bose SoundSport Headphones,1,99.99,12/08/19 06:42,"682 4th St, Los Angeles, CA 90001" +313655,AA Batteries (4-pack),2,3.84,12/21/19 22:00,"793 River St, Dallas, TX 75001" +313656,34in Ultrawide Monitor,1,379.99,12/20/19 17:51,"751 Meadow St, San Francisco, CA 94016" +313657,AA Batteries (4-pack),1,3.84,12/07/19 12:34,"357 13th St, Austin, TX 73301" +313658,Wired Headphones,1,11.99,12/14/19 10:39,"373 Pine St, Atlanta, GA 30301" +313659,ThinkPad Laptop,1,999.99,12/23/19 18:59,"275 Madison St, San Francisco, CA 94016" +313660,Apple Airpods Headphones,1,150,12/27/19 11:19,"133 9th St, San Francisco, CA 94016" +313661,Apple Airpods Headphones,1,150,12/22/19 21:37,"14 Sunset St, Los Angeles, CA 90001" +313662,27in FHD Monitor,1,149.99,12/08/19 18:23,"333 Cherry St, San Francisco, CA 94016" +313663,Apple Airpods Headphones,1,150,12/16/19 10:40,"908 9th St, New York City, NY 10001" +313664,Lightning Charging Cable,1,14.95,12/26/19 18:14,"749 10th St, Atlanta, GA 30301" +313665,USB-C Charging Cable,1,11.95,12/16/19 15:00,"88 Johnson St, Seattle, WA 98101" +313666,iPhone,1,700,12/16/19 23:43,"278 Elm St, Portland, OR 97035" +313666,Apple Airpods Headphones,1,150,12/16/19 23:43,"278 Elm St, Portland, OR 97035" +313667,Google Phone,1,600,12/05/19 00:20,"834 Cherry St, San Francisco, CA 94016" +313668,27in FHD Monitor,1,149.99,12/12/19 20:08,"618 Johnson St, San Francisco, CA 94016" +313669,Bose SoundSport Headphones,1,99.99,12/27/19 17:15,"639 7th St, San Francisco, CA 94016" +313670,iPhone,1,700,12/20/19 19:14,"658 Chestnut St, San Francisco, CA 94016" +313671,USB-C Charging Cable,1,11.95,12/31/19 21:22,"958 8th St, Atlanta, GA 30301" +313672,USB-C Charging Cable,1,11.95,12/14/19 23:42,"859 Chestnut St, New York City, NY 10001" +313673,27in 4K Gaming Monitor,1,389.99,12/10/19 11:28,"522 Hickory St, Dallas, TX 75001" +313674,Vareebadd Phone,1,400,12/01/19 16:44,"71 Sunset St, New York City, NY 10001" +313675,AAA Batteries (4-pack),1,2.99,12/31/19 13:18,"503 5th St, Los Angeles, CA 90001" +313676,AAA Batteries (4-pack),3,2.99,12/25/19 10:49,"398 1st St, New York City, NY 10001" +313677,USB-C Charging Cable,1,11.95,12/20/19 15:17,"794 Ridge St, Boston, MA 02215" +313678,Lightning Charging Cable,1,14.95,12/20/19 20:40,"362 Lakeview St, San Francisco, CA 94016" +313678,Apple Airpods Headphones,1,150,12/20/19 20:40,"362 Lakeview St, San Francisco, CA 94016" +313679,Lightning Charging Cable,1,14.95,12/26/19 19:57,"257 Hill St, New York City, NY 10001" +313680,AA Batteries (4-pack),1,3.84,12/26/19 18:09,"329 Church St, San Francisco, CA 94016" +313681,iPhone,1,700,12/13/19 10:35,"756 7th St, Boston, MA 02215" +313682,Bose SoundSport Headphones,1,99.99,12/31/19 20:13,"550 7th St, Los Angeles, CA 90001" +313683,Apple Airpods Headphones,1,150,12/15/19 16:17,"746 2nd St, San Francisco, CA 94016" +313684,AA Batteries (4-pack),1,3.84,12/31/19 21:55,"666 13th St, New York City, NY 10001" +313685,ThinkPad Laptop,1,999.99,12/11/19 08:41,"266 Madison St, New York City, NY 10001" +313686,Lightning Charging Cable,1,14.95,12/07/19 11:16,"428 Willow St, San Francisco, CA 94016" +313687,Vareebadd Phone,1,400,12/18/19 11:27,"42 Lincoln St, Portland, OR 97035" +313687,Wired Headphones,1,11.99,12/18/19 11:27,"42 Lincoln St, Portland, OR 97035" +313688,Bose SoundSport Headphones,1,99.99,12/27/19 11:02,"990 Center St, New York City, NY 10001" +313689,Bose SoundSport Headphones,1,99.99,12/25/19 11:55,"68 Ridge St, Seattle, WA 98101" +313690,Google Phone,1,600,12/10/19 19:57,"786 Highland St, Portland, ME 04101" +313690,USB-C Charging Cable,1,11.95,12/10/19 19:57,"786 Highland St, Portland, ME 04101" +313691,Bose SoundSport Headphones,1,99.99,12/02/19 12:21,"233 Cedar St, Atlanta, GA 30301" +313692,AAA Batteries (4-pack),1,2.99,12/13/19 02:03,"824 4th St, Boston, MA 02215" +313693,Wired Headphones,2,11.99,12/22/19 19:54,"124 Ridge St, San Francisco, CA 94016" +313694,LG Washing Machine,1,600.0,12/20/19 23:12,"897 Johnson St, San Francisco, CA 94016" +313694,27in 4K Gaming Monitor,1,389.99,12/20/19 23:12,"897 Johnson St, San Francisco, CA 94016" +313695,AAA Batteries (4-pack),1,2.99,12/05/19 08:03,"705 Lincoln St, Los Angeles, CA 90001" +313696,USB-C Charging Cable,1,11.95,12/18/19 08:03,"479 Maple St, Atlanta, GA 30301" +313697,Google Phone,1,600,12/22/19 14:47,"890 Elm St, Dallas, TX 75001" +313698,iPhone,1,700,12/08/19 23:44,"83 River St, New York City, NY 10001" +313699,Lightning Charging Cable,1,14.95,12/23/19 18:44,"645 Sunset St, Austin, TX 73301" +313700,AA Batteries (4-pack),1,3.84,12/24/19 19:32,"488 South St, San Francisco, CA 94016" +313701,Wired Headphones,1,11.99,12/05/19 23:14,"447 Johnson St, San Francisco, CA 94016" +313702,AA Batteries (4-pack),2,3.84,12/18/19 20:08,"3 Pine St, New York City, NY 10001" +313703,27in FHD Monitor,1,149.99,12/30/19 09:39,"508 Adams St, Los Angeles, CA 90001" +313704,20in Monitor,1,109.99,12/31/19 00:55,"504 Main St, Portland, OR 97035" +313705,Bose SoundSport Headphones,1,99.99,12/24/19 12:36,"911 Washington St, Dallas, TX 75001" +313705,27in 4K Gaming Monitor,1,389.99,12/24/19 12:36,"911 Washington St, Dallas, TX 75001" +313706,Flatscreen TV,1,300,12/19/19 18:34,"142 Sunset St, Dallas, TX 75001" +313707,AAA Batteries (4-pack),1,2.99,12/15/19 13:16,"790 Dogwood St, Seattle, WA 98101" +313708,Wired Headphones,1,11.99,12/31/19 00:09,"233 Park St, San Francisco, CA 94016" +313709,Apple Airpods Headphones,1,150,12/09/19 08:08,"6 6th St, San Francisco, CA 94016" +313710,USB-C Charging Cable,1,11.95,12/04/19 20:41,"189 Willow St, Los Angeles, CA 90001" +313711,Flatscreen TV,1,300,12/06/19 22:30,"909 Forest St, Boston, MA 02215" +313712,Lightning Charging Cable,1,14.95,12/30/19 14:13,"359 Willow St, Seattle, WA 98101" +313713,Bose SoundSport Headphones,1,99.99,12/10/19 14:29,"8 South St, San Francisco, CA 94016" +313714,Bose SoundSport Headphones,1,99.99,12/28/19 10:32,"590 Spruce St, Portland, OR 97035" +313715,Vareebadd Phone,1,400,12/03/19 22:21,"82 5th St, Austin, TX 73301" +313715,USB-C Charging Cable,1,11.95,12/03/19 22:21,"82 5th St, Austin, TX 73301" +313716,Apple Airpods Headphones,1,150,12/26/19 19:44,"276 Ridge St, Seattle, WA 98101" +313717,USB-C Charging Cable,1,11.95,12/03/19 09:12,"378 Willow St, Atlanta, GA 30301" +313718,Apple Airpods Headphones,1,150,12/13/19 21:16,"391 Adams St, San Francisco, CA 94016" +313719,Lightning Charging Cable,1,14.95,12/30/19 09:45,"539 North St, Boston, MA 02215" +313720,AA Batteries (4-pack),1,3.84,12/12/19 17:37,"992 Jefferson St, Dallas, TX 75001" +313721,Lightning Charging Cable,1,14.95,12/05/19 16:01,"258 Pine St, Seattle, WA 98101" +313722,27in FHD Monitor,1,149.99,12/24/19 15:45,"306 Hill St, Atlanta, GA 30301" +313723,Macbook Pro Laptop,1,1700,12/21/19 09:03,"53 5th St, Boston, MA 02215" +313724,AAA Batteries (4-pack),1,2.99,12/05/19 14:59,"296 10th St, Los Angeles, CA 90001" +313725,iPhone,1,700,12/04/19 17:39,"86 6th St, Los Angeles, CA 90001" +313726,27in 4K Gaming Monitor,1,389.99,12/27/19 21:50,"295 4th St, Boston, MA 02215" +313727,Apple Airpods Headphones,1,150,12/15/19 16:01,"338 Adams St, Los Angeles, CA 90001" +313728,iPhone,1,700,12/10/19 20:09,"804 Wilson St, Boston, MA 02215" +313729,Apple Airpods Headphones,1,150,12/04/19 10:58,"633 13th St, Los Angeles, CA 90001" +313730,AAA Batteries (4-pack),1,2.99,12/31/19 22:38,"378 Highland St, Los Angeles, CA 90001" +313731,27in 4K Gaming Monitor,1,389.99,12/25/19 10:28,"246 Washington St, Los Angeles, CA 90001" +313732,AA Batteries (4-pack),1,3.84,12/12/19 12:00,"348 South St, Portland, OR 97035" +313732,34in Ultrawide Monitor,1,379.99,12/12/19 12:00,"348 South St, Portland, OR 97035" +313733,Lightning Charging Cable,1,14.95,12/22/19 09:30,"462 Pine St, Boston, MA 02215" +313734,Lightning Charging Cable,1,14.95,12/15/19 18:37,"501 4th St, Los Angeles, CA 90001" +313735,27in FHD Monitor,1,149.99,12/25/19 12:02,"853 Park St, New York City, NY 10001" +313736,USB-C Charging Cable,1,11.95,12/24/19 12:16,"451 Cedar St, Los Angeles, CA 90001" +313737,USB-C Charging Cable,1,11.95,12/07/19 01:13,"366 Pine St, Seattle, WA 98101" +313738,USB-C Charging Cable,1,11.95,12/13/19 10:33,"6 14th St, San Francisco, CA 94016" +313739,34in Ultrawide Monitor,1,379.99,12/20/19 05:17,"417 4th St, Los Angeles, CA 90001" +313740,34in Ultrawide Monitor,1,379.99,12/16/19 15:35,"952 Johnson St, Los Angeles, CA 90001" +313741,27in FHD Monitor,1,149.99,12/08/19 12:44,"477 Dogwood St, San Francisco, CA 94016" +313742,USB-C Charging Cable,1,11.95,12/03/19 20:17,"776 Lake St, San Francisco, CA 94016" +313743,34in Ultrawide Monitor,1,379.99,12/22/19 20:00,"657 12th St, New York City, NY 10001" +313744,Vareebadd Phone,1,400,12/20/19 22:43,"407 9th St, Seattle, WA 98101" +313745,Wired Headphones,1,11.99,12/18/19 16:08,"644 Elm St, Boston, MA 02215" +313745,AA Batteries (4-pack),6,3.84,12/18/19 16:08,"644 Elm St, Boston, MA 02215" +313746,Lightning Charging Cable,1,14.95,12/12/19 19:25,"82 Dogwood St, Boston, MA 02215" +313747,Wired Headphones,1,11.99,12/01/19 15:57,"58 4th St, Atlanta, GA 30301" +313748,AA Batteries (4-pack),1,3.84,12/06/19 23:36,"413 West St, Los Angeles, CA 90001" +313749,USB-C Charging Cable,1,11.95,12/01/19 16:06,"13 West St, Boston, MA 02215" +313750,iPhone,1,700,12/20/19 19:23,"669 Madison St, San Francisco, CA 94016" +313751,AA Batteries (4-pack),1,3.84,12/24/19 10:19,"666 14th St, Dallas, TX 75001" +313752,AAA Batteries (4-pack),1,2.99,12/06/19 05:42,"529 1st St, Seattle, WA 98101" +313753,Apple Airpods Headphones,1,150,12/21/19 14:38,"479 10th St, New York City, NY 10001" +313754,Wired Headphones,1,11.99,12/24/19 22:16,"903 6th St, Los Angeles, CA 90001" +313755,Wired Headphones,1,11.99,12/19/19 09:27,"14 Main St, San Francisco, CA 94016" +313756,AA Batteries (4-pack),1,3.84,12/28/19 22:12,"428 12th St, San Francisco, CA 94016" +313757,Lightning Charging Cable,3,14.95,12/20/19 10:52,"183 Elm St, Portland, OR 97035" +313758,Bose SoundSport Headphones,1,99.99,12/16/19 18:04,"111 Lincoln St, Dallas, TX 75001" +313759,Lightning Charging Cable,1,14.95,12/26/19 10:15,"802 Wilson St, Boston, MA 02215" +313760,Flatscreen TV,1,300,12/14/19 20:54,"539 Adams St, Austin, TX 73301" +313761,Lightning Charging Cable,1,14.95,12/11/19 08:14,"226 Forest St, San Francisco, CA 94016" +313762,Google Phone,1,600,12/07/19 17:10,"371 Willow St, New York City, NY 10001" +313762,USB-C Charging Cable,1,11.95,12/07/19 17:10,"371 Willow St, New York City, NY 10001" +313763,Flatscreen TV,1,300,12/26/19 19:40,"678 Washington St, San Francisco, CA 94016" +313764,USB-C Charging Cable,1,11.95,12/19/19 21:49,"822 Madison St, Boston, MA 02215" +313765,Flatscreen TV,1,300,12/04/19 13:09,"194 North St, Boston, MA 02215" +313766,AAA Batteries (4-pack),1,2.99,12/23/19 07:09,"294 Park St, Seattle, WA 98101" +313767,USB-C Charging Cable,1,11.95,12/19/19 15:38,"990 West St, San Francisco, CA 94016" +313768,Wired Headphones,1,11.99,12/05/19 12:34,"318 Chestnut St, Atlanta, GA 30301" +313769,Bose SoundSport Headphones,1,99.99,12/15/19 01:08,"564 Dogwood St, New York City, NY 10001" +313770,USB-C Charging Cable,1,11.95,12/18/19 16:10,"391 5th St, Boston, MA 02215" +313771,AA Batteries (4-pack),1,3.84,12/10/19 05:11,"306 Wilson St, New York City, NY 10001" +313772,Bose SoundSport Headphones,1,99.99,12/19/19 12:03,"739 River St, Portland, OR 97035" +313773,ThinkPad Laptop,1,999.99,12/21/19 11:03,"287 Hill St, Atlanta, GA 30301" +313774,USB-C Charging Cable,1,11.95,12/27/19 15:28,"756 Jackson St, Seattle, WA 98101" +313775,iPhone,1,700,12/25/19 12:04,"258 Forest St, Los Angeles, CA 90001" +313776,27in 4K Gaming Monitor,1,389.99,12/02/19 08:22,"814 Dogwood St, Austin, TX 73301" +313777,Bose SoundSport Headphones,1,99.99,12/25/19 10:55,"350 Willow St, Los Angeles, CA 90001" +313778,USB-C Charging Cable,1,11.95,12/24/19 14:31,"384 2nd St, San Francisco, CA 94016" +313779,27in FHD Monitor,1,149.99,12/17/19 20:08,"721 Lincoln St, Austin, TX 73301" +313780,USB-C Charging Cable,1,11.95,12/25/19 10:44,"136 Hill St, Portland, OR 97035" +313781,AAA Batteries (4-pack),2,2.99,12/05/19 10:19,"106 Center St, Atlanta, GA 30301" +313781,Lightning Charging Cable,1,14.95,12/05/19 10:19,"106 Center St, Atlanta, GA 30301" +313782,Lightning Charging Cable,1,14.95,12/23/19 20:44,"761 River St, Los Angeles, CA 90001" +313783,AA Batteries (4-pack),3,3.84,12/06/19 05:57,"324 Ridge St, Seattle, WA 98101" +313784,Lightning Charging Cable,1,14.95,12/23/19 11:30,"833 5th St, San Francisco, CA 94016" +313785,27in 4K Gaming Monitor,1,389.99,12/11/19 08:28,"543 West St, Atlanta, GA 30301" +313786,AA Batteries (4-pack),1,3.84,01/01/20 01:47,"478 Cedar St, Boston, MA 02215" +313787,Flatscreen TV,1,300,12/19/19 05:25,"963 Main St, San Francisco, CA 94016" +313788,Wired Headphones,1,11.99,12/14/19 09:08,"611 Hickory St, Atlanta, GA 30301" +313789,Bose SoundSport Headphones,1,99.99,12/29/19 10:42,"773 Lincoln St, Boston, MA 02215" +313790,AA Batteries (4-pack),1,3.84,12/06/19 11:26,"594 Lake St, San Francisco, CA 94016" +313791,27in 4K Gaming Monitor,1,389.99,12/01/19 19:28,"54 Cedar St, New York City, NY 10001" +313792,27in FHD Monitor,1,149.99,12/24/19 15:50,"972 Washington St, Austin, TX 73301" +313793,Google Phone,1,600,12/04/19 19:49,"462 Park St, New York City, NY 10001" +313794,Lightning Charging Cable,1,14.95,12/20/19 19:24,"36 Forest St, Los Angeles, CA 90001" +313795,Lightning Charging Cable,1,14.95,12/26/19 08:34,"361 Lincoln St, Los Angeles, CA 90001" +313796,Google Phone,1,600,12/23/19 22:31,"412 9th St, Los Angeles, CA 90001" +313797,Wired Headphones,1,11.99,12/20/19 20:22,"804 13th St, Dallas, TX 75001" +313798,AAA Batteries (4-pack),1,2.99,12/03/19 23:48,"909 Church St, Portland, OR 97035" +313799,Apple Airpods Headphones,1,150,12/03/19 13:14,"67 9th St, Boston, MA 02215" +313800,AAA Batteries (4-pack),1,2.99,12/27/19 01:39,"305 Jefferson St, New York City, NY 10001" +313801,Bose SoundSport Headphones,1,99.99,12/28/19 16:17,"141 South St, New York City, NY 10001" +313802,AA Batteries (4-pack),1,3.84,12/21/19 09:27,"917 Forest St, San Francisco, CA 94016" +313803,AAA Batteries (4-pack),1,2.99,12/30/19 13:39,"565 Hill St, New York City, NY 10001" +313804,USB-C Charging Cable,1,11.95,12/03/19 20:31,"408 Dogwood St, Boston, MA 02215" +313805,20in Monitor,1,109.99,12/09/19 21:02,"622 Forest St, San Francisco, CA 94016" +313806,Lightning Charging Cable,1,14.95,12/03/19 18:58,"10 Adams St, San Francisco, CA 94016" +313807,Wired Headphones,1,11.99,12/23/19 10:37,"658 Chestnut St, Los Angeles, CA 90001" +313808,27in FHD Monitor,1,149.99,12/01/19 17:01,"924 Highland St, Dallas, TX 75001" +313809,Vareebadd Phone,1,400,12/15/19 15:42,"396 10th St, San Francisco, CA 94016" +313809,USB-C Charging Cable,1,11.95,12/15/19 15:42,"396 10th St, San Francisco, CA 94016" +313810,27in 4K Gaming Monitor,1,389.99,12/14/19 14:32,"84 13th St, Dallas, TX 75001" +313811,Lightning Charging Cable,1,14.95,12/05/19 06:39,"123 Jackson St, San Francisco, CA 94016" +313812,Bose SoundSport Headphones,1,99.99,12/13/19 12:06,"389 Main St, Austin, TX 73301" +313813,Wired Headphones,1,11.99,12/12/19 09:49,"598 Maple St, New York City, NY 10001" +313814,USB-C Charging Cable,1,11.95,12/15/19 10:29,"212 9th St, Los Angeles, CA 90001" +313815,Wired Headphones,1,11.99,12/28/19 14:15,"30 West St, San Francisco, CA 94016" +313816,Bose SoundSport Headphones,1,99.99,12/06/19 23:02,"986 14th St, San Francisco, CA 94016" +313817,Lightning Charging Cable,1,14.95,01/01/20 01:09,"550 West St, New York City, NY 10001" +313818,AA Batteries (4-pack),1,3.84,12/09/19 00:47,"391 8th St, Atlanta, GA 30301" +313819,27in 4K Gaming Monitor,1,389.99,12/11/19 12:02,"644 Wilson St, Boston, MA 02215" +313820,AAA Batteries (4-pack),1,2.99,12/07/19 00:39,"888 Lake St, Los Angeles, CA 90001" +313821,AA Batteries (4-pack),1,3.84,12/16/19 18:23,"452 Lake St, Boston, MA 02215" +313822,AA Batteries (4-pack),1,3.84,12/05/19 07:19,"85 Cherry St, Portland, OR 97035" +313823,20in Monitor,1,109.99,12/14/19 22:44,"27 Dogwood St, San Francisco, CA 94016" +313824,Lightning Charging Cable,1,14.95,12/05/19 12:01,"537 Lincoln St, Seattle, WA 98101" +313825,LG Washing Machine,1,600.0,12/22/19 12:02,"435 Ridge St, Portland, ME 04101" +313826,Wired Headphones,1,11.99,12/31/19 21:28,"987 Park St, Dallas, TX 75001" +313827,27in FHD Monitor,1,149.99,12/16/19 13:19,"696 Jackson St, San Francisco, CA 94016" +313828,Apple Airpods Headphones,1,150,12/02/19 21:52,"720 8th St, Dallas, TX 75001" +313829,Wired Headphones,1,11.99,12/09/19 17:57,"735 11th St, Dallas, TX 75001" +313830,34in Ultrawide Monitor,1,379.99,12/02/19 22:25,"747 River St, Seattle, WA 98101" +313831,Flatscreen TV,1,300,12/02/19 08:26,"68 Chestnut St, Seattle, WA 98101" +313832,AA Batteries (4-pack),1,3.84,12/25/19 21:23,"526 South St, New York City, NY 10001" +313833,AA Batteries (4-pack),2,3.84,12/08/19 11:45,"395 South St, San Francisco, CA 94016" +313834,Lightning Charging Cable,1,14.95,12/06/19 22:20,"790 Lincoln St, Boston, MA 02215" +313835,Wired Headphones,1,11.99,12/19/19 09:59,"573 Forest St, New York City, NY 10001" +313836,USB-C Charging Cable,1,11.95,12/19/19 12:06,"260 6th St, Boston, MA 02215" +313837,USB-C Charging Cable,1,11.95,12/24/19 13:04,"181 Spruce St, New York City, NY 10001" +313837,Lightning Charging Cable,1,14.95,12/24/19 13:04,"181 Spruce St, New York City, NY 10001" +313838,Bose SoundSport Headphones,1,99.99,12/19/19 13:13,"667 Hickory St, Los Angeles, CA 90001" +313839,AAA Batteries (4-pack),1,2.99,12/09/19 12:45,"585 10th St, San Francisco, CA 94016" +313840,Wired Headphones,1,11.99,12/01/19 19:39,"742 1st St, Los Angeles, CA 90001" +313841,Lightning Charging Cable,1,14.95,12/24/19 10:56,"773 Willow St, New York City, NY 10001" +313842,LG Washing Machine,1,600.0,12/04/19 01:46,"165 Jackson St, Atlanta, GA 30301" +313843,Lightning Charging Cable,1,14.95,12/01/19 09:21,"278 11th St, Dallas, TX 75001" +313844,iPhone,1,700,12/20/19 19:00,"111 Walnut St, New York City, NY 10001" +313844,iPhone,1,700,12/20/19 19:00,"111 Walnut St, New York City, NY 10001" +313845,Macbook Pro Laptop,1,1700,12/26/19 16:46,"925 Madison St, San Francisco, CA 94016" +313846,ThinkPad Laptop,1,999.99,12/16/19 14:33,"880 6th St, Atlanta, GA 30301" +313847,Apple Airpods Headphones,1,150,12/31/19 10:42,"137 Lake St, Los Angeles, CA 90001" +313848,Google Phone,1,600,12/20/19 01:54,"850 Church St, Atlanta, GA 30301" +313848,Wired Headphones,1,11.99,12/20/19 01:54,"850 Church St, Atlanta, GA 30301" +313849,27in FHD Monitor,1,149.99,12/05/19 14:05,"595 1st St, Los Angeles, CA 90001" +313850,Lightning Charging Cable,1,14.95,12/07/19 13:01,"646 5th St, New York City, NY 10001" +313851,Wired Headphones,1,11.99,12/08/19 20:01,"388 Elm St, San Francisco, CA 94016" +313852,Flatscreen TV,1,300,12/19/19 17:09,"204 2nd St, San Francisco, CA 94016" +313853,Lightning Charging Cable,1,14.95,12/08/19 19:35,"969 Lincoln St, Dallas, TX 75001" +313854,AA Batteries (4-pack),1,3.84,12/29/19 12:05,"729 Lakeview St, Austin, TX 73301" +313855,AA Batteries (4-pack),2,3.84,12/20/19 18:06,"593 River St, New York City, NY 10001" +313856,AAA Batteries (4-pack),1,2.99,12/04/19 13:10,"857 Spruce St, San Francisco, CA 94016" +313857,Bose SoundSport Headphones,1,99.99,12/07/19 14:15,"850 Forest St, New York City, NY 10001" +313858,Wired Headphones,1,11.99,12/08/19 18:03,"412 Jefferson St, Los Angeles, CA 90001" +313859,Lightning Charging Cable,1,14.95,12/19/19 09:31,"735 River St, San Francisco, CA 94016" +313860,27in 4K Gaming Monitor,1,389.99,12/04/19 14:15,"855 Washington St, San Francisco, CA 94016" +313861,AAA Batteries (4-pack),1,2.99,12/07/19 16:13,"260 Lake St, San Francisco, CA 94016" +313862,Wired Headphones,1,11.99,12/22/19 10:24,"28 1st St, Los Angeles, CA 90001" +313863,Wired Headphones,1,11.99,12/03/19 19:09,"66 Elm St, Seattle, WA 98101" +313864,AAA Batteries (4-pack),1,2.99,12/11/19 19:28,"996 14th St, New York City, NY 10001" +313865,USB-C Charging Cable,1,11.95,12/31/19 20:18,"126 7th St, San Francisco, CA 94016" +313866,Wired Headphones,1,11.99,12/04/19 09:47,"107 Church St, San Francisco, CA 94016" +313867,Lightning Charging Cable,1,14.95,12/15/19 21:57,"147 Madison St, Boston, MA 02215" +313868,AAA Batteries (4-pack),1,2.99,12/24/19 17:27,"14 Main St, Los Angeles, CA 90001" +313869,Google Phone,1,600,12/16/19 18:50,"219 13th St, Portland, OR 97035" +313870,Apple Airpods Headphones,1,150,12/13/19 16:11,"749 8th St, Dallas, TX 75001" +313871,AA Batteries (4-pack),1,3.84,12/22/19 15:09,"934 Wilson St, San Francisco, CA 94016" +313872,34in Ultrawide Monitor,1,379.99,12/27/19 17:41,"72 Elm St, Los Angeles, CA 90001" +313873,27in 4K Gaming Monitor,1,389.99,12/23/19 16:51,"400 Lakeview St, Boston, MA 02215" +313874,34in Ultrawide Monitor,1,379.99,12/26/19 17:09,"30 Highland St, Los Angeles, CA 90001" +313875,27in FHD Monitor,1,149.99,12/28/19 14:38,"316 Sunset St, Seattle, WA 98101" +313876,AAA Batteries (4-pack),1,2.99,12/04/19 11:42,"898 4th St, Los Angeles, CA 90001" +313877,Bose SoundSport Headphones,1,99.99,12/03/19 11:19,"272 Forest St, Dallas, TX 75001" +313878,Lightning Charging Cable,1,14.95,12/19/19 16:07,"739 Park St, San Francisco, CA 94016" +313879,AAA Batteries (4-pack),2,2.99,12/30/19 10:41,"811 Pine St, Austin, TX 73301" +313880,27in 4K Gaming Monitor,1,389.99,12/27/19 18:17,"903 Jefferson St, Los Angeles, CA 90001" +313881,AA Batteries (4-pack),2,3.84,12/13/19 12:39,"413 6th St, Boston, MA 02215" +313882,Bose SoundSport Headphones,1,99.99,12/01/19 11:29,"398 Sunset St, Atlanta, GA 30301" +313883,Wired Headphones,1,11.99,12/14/19 19:48,"897 West St, Los Angeles, CA 90001" +313884,34in Ultrawide Monitor,1,379.99,12/10/19 07:46,"375 Hickory St, Seattle, WA 98101" +313885,USB-C Charging Cable,2,11.95,12/01/19 21:18,"33 9th St, Atlanta, GA 30301" +313886,27in 4K Gaming Monitor,1,389.99,12/28/19 12:45,"168 Walnut St, New York City, NY 10001" +313887,AAA Batteries (4-pack),1,2.99,12/07/19 06:19,"390 Meadow St, Atlanta, GA 30301" +313888,AA Batteries (4-pack),1,3.84,12/09/19 19:49,"815 Maple St, Atlanta, GA 30301" +313889,AAA Batteries (4-pack),3,2.99,12/27/19 11:06,"766 Jackson St, Los Angeles, CA 90001" +313890,AA Batteries (4-pack),1,3.84,12/24/19 22:58,"371 9th St, Atlanta, GA 30301" +313891,Flatscreen TV,1,300,12/18/19 12:10,"901 Lake St, San Francisco, CA 94016" +313892,AA Batteries (4-pack),1,3.84,12/02/19 22:54,"143 13th St, Los Angeles, CA 90001" +313893,34in Ultrawide Monitor,1,379.99,12/09/19 11:35,"429 Washington St, New York City, NY 10001" +313894,AA Batteries (4-pack),1,3.84,12/26/19 17:05,"787 Maple St, New York City, NY 10001" +313895,AAA Batteries (4-pack),1,2.99,12/05/19 08:52,"869 14th St, Atlanta, GA 30301" +313896,USB-C Charging Cable,1,11.95,12/16/19 21:24,"29 10th St, San Francisco, CA 94016" +313896,USB-C Charging Cable,1,11.95,12/16/19 21:24,"29 10th St, San Francisco, CA 94016" +313897,27in 4K Gaming Monitor,1,389.99,12/23/19 00:35,"161 Walnut St, Boston, MA 02215" +313898,AA Batteries (4-pack),1,3.84,12/26/19 23:34,"456 5th St, Atlanta, GA 30301" +313899,Bose SoundSport Headphones,1,99.99,12/27/19 11:04,"130 Johnson St, Portland, OR 97035" +313900,27in 4K Gaming Monitor,1,389.99,12/11/19 19:29,"237 Cedar St, Dallas, TX 75001" +313901,Bose SoundSport Headphones,1,99.99,12/29/19 12:05,"853 7th St, Los Angeles, CA 90001" +313902,AA Batteries (4-pack),1,3.84,12/07/19 20:27,"123 13th St, San Francisco, CA 94016" +313903,AA Batteries (4-pack),1,3.84,12/19/19 15:37,"859 Dogwood St, Los Angeles, CA 90001" +313904,AAA Batteries (4-pack),1,2.99,12/08/19 20:52,"900 Highland St, Seattle, WA 98101" +313905,27in 4K Gaming Monitor,1,389.99,12/07/19 21:50,"19 South St, Atlanta, GA 30301" +313906,Macbook Pro Laptop,1,1700,12/26/19 11:44,"430 Church St, Portland, ME 04101" +313907,Lightning Charging Cable,1,14.95,12/29/19 19:44,"196 Sunset St, San Francisco, CA 94016" +313908,Lightning Charging Cable,1,14.95,12/20/19 11:37,"424 Dogwood St, New York City, NY 10001" +313909,AA Batteries (4-pack),1,3.84,12/30/19 21:14,"730 Cedar St, Seattle, WA 98101" +313910,27in FHD Monitor,1,149.99,12/14/19 17:17,"747 1st St, New York City, NY 10001" +313911,Bose SoundSport Headphones,1,99.99,12/08/19 11:51,"905 West St, San Francisco, CA 94016" +313912,Lightning Charging Cable,1,14.95,12/19/19 18:48,"280 2nd St, Dallas, TX 75001" +313913,Lightning Charging Cable,1,14.95,12/02/19 17:52,"298 Meadow St, Portland, OR 97035" +313914,Vareebadd Phone,1,400,12/07/19 12:17,"573 Meadow St, Atlanta, GA 30301" +313914,Wired Headphones,1,11.99,12/07/19 12:17,"573 Meadow St, Atlanta, GA 30301" +313915,USB-C Charging Cable,1,11.95,12/06/19 18:49,"861 11th St, Los Angeles, CA 90001" +313916,Wired Headphones,1,11.99,12/30/19 23:18,"3 Sunset St, Boston, MA 02215" +313917,USB-C Charging Cable,1,11.95,12/02/19 18:56,"784 Jackson St, San Francisco, CA 94016" +313918,USB-C Charging Cable,1,11.95,12/22/19 12:39,"334 Main St, Boston, MA 02215" +313919,Lightning Charging Cable,1,14.95,12/11/19 17:46,"374 4th St, New York City, NY 10001" +313920,USB-C Charging Cable,1,11.95,12/26/19 23:39,"281 Chestnut St, Los Angeles, CA 90001" +313921,USB-C Charging Cable,1,11.95,12/08/19 22:29,"885 Church St, San Francisco, CA 94016" +313922,27in FHD Monitor,1,149.99,12/14/19 20:12,"912 5th St, Dallas, TX 75001" +313923,ThinkPad Laptop,1,999.99,12/31/19 22:08,"516 Cedar St, San Francisco, CA 94016" +313924,Wired Headphones,1,11.99,12/10/19 08:44,"606 Lake St, Los Angeles, CA 90001" +313925,USB-C Charging Cable,1,11.95,12/17/19 16:57,"554 Center St, San Francisco, CA 94016" +313926,27in 4K Gaming Monitor,1,389.99,12/13/19 08:50,"900 1st St, San Francisco, CA 94016" +313927,AAA Batteries (4-pack),1,2.99,12/02/19 11:41,"63 7th St, Los Angeles, CA 90001" +313928,Lightning Charging Cable,1,14.95,12/10/19 18:04,"549 West St, Los Angeles, CA 90001" +313929,Apple Airpods Headphones,1,150,12/21/19 19:16,"281 1st St, Boston, MA 02215" +313930,Lightning Charging Cable,1,14.95,12/21/19 12:35,"227 Park St, Seattle, WA 98101" +313931,AAA Batteries (4-pack),1,2.99,12/26/19 17:12,"730 Forest St, Los Angeles, CA 90001" +313932,USB-C Charging Cable,1,11.95,12/02/19 14:29,"165 8th St, Austin, TX 73301" +313933,AAA Batteries (4-pack),2,2.99,12/03/19 20:06,"587 Lincoln St, San Francisco, CA 94016" +313934,27in 4K Gaming Monitor,1,389.99,12/22/19 18:36,"32 North St, San Francisco, CA 94016" +313934,USB-C Charging Cable,1,11.95,12/22/19 18:36,"32 North St, San Francisco, CA 94016" +313935,Wired Headphones,1,11.99,12/02/19 16:07,"168 Highland St, Seattle, WA 98101" +313936,Lightning Charging Cable,1,14.95,12/04/19 11:36,"465 Forest St, Austin, TX 73301" +313937,Bose SoundSport Headphones,1,99.99,12/18/19 20:06,"726 Wilson St, San Francisco, CA 94016" +313938,AA Batteries (4-pack),1,3.84,12/30/19 13:07,"745 12th St, Austin, TX 73301" +313939,27in 4K Gaming Monitor,1,389.99,12/03/19 12:24,"307 Church St, Los Angeles, CA 90001" +313940,Bose SoundSport Headphones,1,99.99,12/13/19 15:14,"841 Madison St, San Francisco, CA 94016" +313941,Macbook Pro Laptop,1,1700,12/17/19 13:21,"836 1st St, Los Angeles, CA 90001" +313942,USB-C Charging Cable,1,11.95,12/08/19 14:37,"81 Maple St, Boston, MA 02215" +313942,Vareebadd Phone,1,400,12/08/19 14:37,"81 Maple St, Boston, MA 02215" +313943,AA Batteries (4-pack),2,3.84,12/04/19 21:06,"183 Jefferson St, Boston, MA 02215" +313944,Apple Airpods Headphones,1,150,12/25/19 07:49,"87 Dogwood St, San Francisco, CA 94016" +313945,Wired Headphones,1,11.99,12/23/19 10:19,"847 13th St, San Francisco, CA 94016" +313946,iPhone,1,700,12/19/19 11:45,"369 North St, Atlanta, GA 30301" +313947,Wired Headphones,1,11.99,12/30/19 22:11,"894 Pine St, Portland, OR 97035" +313948,Wired Headphones,1,11.99,12/20/19 13:46,"859 8th St, New York City, NY 10001" +313949,Wired Headphones,1,11.99,12/16/19 15:05,"666 Dogwood St, New York City, NY 10001" +313950,Apple Airpods Headphones,1,150,12/16/19 10:27,"319 Pine St, Los Angeles, CA 90001" +313951,34in Ultrawide Monitor,1,379.99,12/09/19 15:18,"538 Chestnut St, Portland, OR 97035" +313952,USB-C Charging Cable,1,11.95,12/27/19 18:06,"558 7th St, New York City, NY 10001" +313953,34in Ultrawide Monitor,1,379.99,12/13/19 11:36,"588 10th St, Los Angeles, CA 90001" +313954,Apple Airpods Headphones,1,150,12/23/19 20:34,"268 6th St, Portland, OR 97035" +313955,USB-C Charging Cable,1,11.95,12/11/19 05:15,"852 2nd St, Seattle, WA 98101" +313956,AA Batteries (4-pack),4,3.84,12/13/19 08:34,"434 Lake St, Portland, OR 97035" +313957,AA Batteries (4-pack),2,3.84,12/29/19 09:44,"400 Wilson St, San Francisco, CA 94016" +313958,Google Phone,1,600,12/11/19 02:32,"743 12th St, Boston, MA 02215" +313959,Google Phone,1,600,12/08/19 13:13,"507 10th St, San Francisco, CA 94016" +313960,Wired Headphones,1,11.99,12/09/19 09:39,"423 9th St, New York City, NY 10001" +313961,USB-C Charging Cable,1,11.95,12/04/19 13:44,"393 Dogwood St, Los Angeles, CA 90001" +313962,USB-C Charging Cable,1,11.95,12/19/19 10:48,"356 Highland St, Atlanta, GA 30301" +313963,Apple Airpods Headphones,1,150,12/24/19 12:01,"12 Adams St, Boston, MA 02215" +313964,20in Monitor,1,109.99,12/22/19 12:49,"11 Chestnut St, Dallas, TX 75001" +313965,USB-C Charging Cable,1,11.95,12/09/19 18:55,"963 Hickory St, Austin, TX 73301" +313966,AAA Batteries (4-pack),2,2.99,12/27/19 11:01,"470 Wilson St, Los Angeles, CA 90001" +313967,Lightning Charging Cable,1,14.95,12/18/19 22:34,"586 10th St, San Francisco, CA 94016" +313968,20in Monitor,1,109.99,12/08/19 09:13,"593 Jefferson St, Boston, MA 02215" +313969,USB-C Charging Cable,1,11.95,12/16/19 23:27,"9 Cherry St, San Francisco, CA 94016" +313970,USB-C Charging Cable,1,11.95,12/26/19 10:45,"76 2nd St, Portland, OR 97035" +313971,Macbook Pro Laptop,1,1700,12/17/19 17:09,"651 5th St, New York City, NY 10001" +313972,27in FHD Monitor,1,149.99,12/04/19 10:26,"534 West St, Atlanta, GA 30301" +313973,AA Batteries (4-pack),1,3.84,12/08/19 18:20,"310 4th St, Los Angeles, CA 90001" +313974,USB-C Charging Cable,1,11.95,12/17/19 10:34,"260 Ridge St, Los Angeles, CA 90001" +313975,USB-C Charging Cable,1,11.95,12/02/19 10:05,"646 14th St, Dallas, TX 75001" +313976,AAA Batteries (4-pack),1,2.99,12/16/19 18:02,"369 Lake St, San Francisco, CA 94016" +313977,Lightning Charging Cable,1,14.95,12/27/19 19:22,"247 Johnson St, New York City, NY 10001" +313978,Apple Airpods Headphones,1,150,12/29/19 13:53,"616 Maple St, Austin, TX 73301" +313979,Wired Headphones,1,11.99,12/19/19 23:26,"840 13th St, Boston, MA 02215" +313980,Bose SoundSport Headphones,1,99.99,12/19/19 00:57,"940 12th St, Los Angeles, CA 90001" +313981,AA Batteries (4-pack),2,3.84,12/30/19 01:51,"769 Walnut St, Los Angeles, CA 90001" +313982,ThinkPad Laptop,1,999.99,12/05/19 05:51,"67 Cedar St, New York City, NY 10001" +313983,AAA Batteries (4-pack),2,2.99,12/05/19 12:14,"557 4th St, Atlanta, GA 30301" +313984,AA Batteries (4-pack),1,3.84,12/03/19 14:45,"398 Madison St, San Francisco, CA 94016" +313985,27in FHD Monitor,1,149.99,12/07/19 12:09,"788 River St, New York City, NY 10001" +313986,AA Batteries (4-pack),1,3.84,12/12/19 10:16,"279 12th St, Boston, MA 02215" +313987,AA Batteries (4-pack),1,3.84,12/05/19 13:09,"780 Park St, New York City, NY 10001" +313988,Lightning Charging Cable,1,14.95,12/22/19 18:09,"798 Highland St, Los Angeles, CA 90001" +313989,Apple Airpods Headphones,1,150,12/16/19 18:04,"153 Lake St, Atlanta, GA 30301" +313990,Bose SoundSport Headphones,1,99.99,12/08/19 19:31,"195 Madison St, Los Angeles, CA 90001" +313991,Wired Headphones,1,11.99,12/17/19 12:10,"54 Walnut St, Austin, TX 73301" +313992,Bose SoundSport Headphones,1,99.99,12/01/19 15:46,"116 Spruce St, Dallas, TX 75001" +313993,AA Batteries (4-pack),1,3.84,12/26/19 19:51,"356 Cherry St, San Francisco, CA 94016" +313994,AAA Batteries (4-pack),2,2.99,12/22/19 14:55,"857 Maple St, San Francisco, CA 94016" +313995,AAA Batteries (4-pack),1,2.99,12/19/19 12:40,"179 Park St, San Francisco, CA 94016" +313996,USB-C Charging Cable,1,11.95,12/07/19 15:14,"310 River St, Dallas, TX 75001" +313996,Flatscreen TV,1,300,12/07/19 15:14,"310 River St, Dallas, TX 75001" +313997,27in 4K Gaming Monitor,1,389.99,12/06/19 19:30,"148 Elm St, Los Angeles, CA 90001" +313998,AAA Batteries (4-pack),1,2.99,12/05/19 23:49,"174 Forest St, Portland, OR 97035" +313999,USB-C Charging Cable,1,11.95,12/16/19 02:55,"60 Cherry St, Los Angeles, CA 90001" +314000,USB-C Charging Cable,1,11.95,12/26/19 13:32,"747 9th St, Atlanta, GA 30301" +314001,Flatscreen TV,1,300,12/07/19 22:53,"250 Cedar St, Seattle, WA 98101" +314002,USB-C Charging Cable,1,11.95,12/31/19 19:11,"691 12th St, Los Angeles, CA 90001" +314003,USB-C Charging Cable,1,11.95,12/20/19 13:08,"924 South St, New York City, NY 10001" +314004,34in Ultrawide Monitor,1,379.99,12/24/19 21:35,"722 Cedar St, Los Angeles, CA 90001" +314005,AA Batteries (4-pack),2,3.84,12/05/19 22:23,"494 Spruce St, Seattle, WA 98101" +314006,Lightning Charging Cable,1,14.95,12/04/19 09:27,"67 6th St, Seattle, WA 98101" +314007,USB-C Charging Cable,1,11.95,12/11/19 22:11,"566 11th St, Boston, MA 02215" +314008,Vareebadd Phone,1,400,12/19/19 01:35,"586 Wilson St, Dallas, TX 75001" +314008,USB-C Charging Cable,1,11.95,12/19/19 01:35,"586 Wilson St, Dallas, TX 75001" +314009,AAA Batteries (4-pack),3,2.99,12/29/19 18:52,"923 Madison St, Boston, MA 02215" +314010,ThinkPad Laptop,1,999.99,12/25/19 00:04,"208 Madison St, Portland, ME 04101" +314011,27in FHD Monitor,1,149.99,12/28/19 18:17,"641 6th St, Los Angeles, CA 90001" +314012,34in Ultrawide Monitor,1,379.99,12/28/19 21:51,"996 South St, Atlanta, GA 30301" +314013,27in FHD Monitor,1,149.99,12/19/19 14:54,"879 Lake St, New York City, NY 10001" +314014,Macbook Pro Laptop,1,1700,12/16/19 16:59,"677 4th St, San Francisco, CA 94016" +314015,USB-C Charging Cable,1,11.95,12/31/19 22:18,"348 Maple St, New York City, NY 10001" +314016,27in 4K Gaming Monitor,1,389.99,12/28/19 13:32,"92 Adams St, Los Angeles, CA 90001" +314017,AA Batteries (4-pack),1,3.84,12/24/19 20:20,"356 Washington St, Los Angeles, CA 90001" +314018,Flatscreen TV,1,300,12/20/19 18:00,"673 Main St, Atlanta, GA 30301" +314019,Macbook Pro Laptop,1,1700,12/28/19 11:32,"346 Walnut St, Atlanta, GA 30301" +314020,AA Batteries (4-pack),1,3.84,12/16/19 16:34,"804 Walnut St, Portland, OR 97035" +314021,Vareebadd Phone,1,400,12/29/19 11:37,"234 Hickory St, New York City, NY 10001" +314022,Lightning Charging Cable,2,14.95,12/30/19 20:20,"285 11th St, New York City, NY 10001" +314023,Vareebadd Phone,1,400,12/28/19 08:01,"411 Main St, Los Angeles, CA 90001" +314023,Wired Headphones,1,11.99,12/28/19 08:01,"411 Main St, Los Angeles, CA 90001" +314024,Lightning Charging Cable,1,14.95,12/28/19 12:26,"606 West St, New York City, NY 10001" +314025,USB-C Charging Cable,1,11.95,12/30/19 17:31,"789 14th St, New York City, NY 10001" +314026,AAA Batteries (4-pack),2,2.99,12/05/19 01:47,"31 Lakeview St, Seattle, WA 98101" +314027,Bose SoundSport Headphones,1,99.99,12/21/19 16:51,"869 9th St, Atlanta, GA 30301" +314028,Lightning Charging Cable,1,14.95,12/14/19 19:15,"346 South St, Portland, OR 97035" +314029,AAA Batteries (4-pack),2,2.99,12/06/19 01:33,"947 1st St, Boston, MA 02215" +314030,USB-C Charging Cable,1,11.95,12/03/19 16:18,"444 Lincoln St, San Francisco, CA 94016" +314031,AAA Batteries (4-pack),1,2.99,12/11/19 03:25,"23 Willow St, Boston, MA 02215" +314032,AAA Batteries (4-pack),4,2.99,12/14/19 19:41,"133 Dogwood St, Boston, MA 02215" +314033,iPhone,1,700,12/18/19 11:47,"176 Dogwood St, Seattle, WA 98101" +314034,USB-C Charging Cable,1,11.95,12/18/19 21:53,"886 Willow St, Boston, MA 02215" +314035,ThinkPad Laptop,1,999.99,12/15/19 11:00,"937 8th St, Dallas, TX 75001" +314036,AA Batteries (4-pack),2,3.84,12/18/19 12:16,"472 Ridge St, Los Angeles, CA 90001" +314037,ThinkPad Laptop,1,999.99,12/11/19 00:09,"250 South St, Austin, TX 73301" +314038,USB-C Charging Cable,2,11.95,12/11/19 12:22,"799 Pine St, Boston, MA 02215" +314039,Bose SoundSport Headphones,1,99.99,12/03/19 20:18,"374 Church St, New York City, NY 10001" +314040,AAA Batteries (4-pack),2,2.99,12/03/19 15:48,"816 10th St, San Francisco, CA 94016" +314041,Flatscreen TV,1,300,12/27/19 09:51,"596 Lake St, San Francisco, CA 94016" +314042,Bose SoundSport Headphones,1,99.99,12/28/19 19:22,"490 Washington St, Los Angeles, CA 90001" +314043,Wired Headphones,1,11.99,12/25/19 11:49,"158 7th St, Portland, OR 97035" +314044,USB-C Charging Cable,1,11.95,12/05/19 11:44,"122 Jackson St, Austin, TX 73301" +314045,27in FHD Monitor,1,149.99,12/30/19 15:39,"368 Lakeview St, Dallas, TX 75001" +314046,USB-C Charging Cable,1,11.95,12/13/19 11:22,"767 Willow St, San Francisco, CA 94016" +314047,AA Batteries (4-pack),1,3.84,12/07/19 12:57,"144 Main St, Atlanta, GA 30301" +314048,34in Ultrawide Monitor,1,379.99,12/25/19 14:44,"774 Spruce St, Dallas, TX 75001" +314049,Wired Headphones,1,11.99,12/28/19 16:05,"323 Walnut St, Dallas, TX 75001" +314050,Lightning Charging Cable,1,14.95,12/08/19 01:32,"584 Maple St, Boston, MA 02215" +314051,USB-C Charging Cable,1,11.95,12/10/19 21:00,"546 Johnson St, Seattle, WA 98101" +314052,Macbook Pro Laptop,1,1700,12/20/19 16:23,"430 6th St, Austin, TX 73301" +314053,Vareebadd Phone,1,400,12/13/19 09:23,"134 7th St, Atlanta, GA 30301" +314053,Wired Headphones,1,11.99,12/13/19 09:23,"134 7th St, Atlanta, GA 30301" +314054,Apple Airpods Headphones,1,150,12/20/19 23:22,"317 12th St, Dallas, TX 75001" +314054,USB-C Charging Cable,1,11.95,12/20/19 23:22,"317 12th St, Dallas, TX 75001" +314055,Wired Headphones,1,11.99,12/13/19 12:26,"469 11th St, Dallas, TX 75001" +314056,USB-C Charging Cable,1,11.95,12/03/19 12:16,"545 10th St, Seattle, WA 98101" +314057,Lightning Charging Cable,1,14.95,12/02/19 13:07,"251 14th St, Boston, MA 02215" +314058,Bose SoundSport Headphones,1,99.99,12/21/19 20:41,"692 Forest St, New York City, NY 10001" +314059,Bose SoundSport Headphones,1,99.99,12/17/19 10:14,"153 8th St, San Francisco, CA 94016" +314060,USB-C Charging Cable,1,11.95,12/26/19 07:10,"783 12th St, Atlanta, GA 30301" +314061,Lightning Charging Cable,1,14.95,12/20/19 07:02,"632 9th St, New York City, NY 10001" +314062,USB-C Charging Cable,1,11.95,12/05/19 11:12,"620 2nd St, Dallas, TX 75001" +314063,AAA Batteries (4-pack),1,2.99,12/21/19 19:28,"884 Park St, Boston, MA 02215" +314064,AAA Batteries (4-pack),2,2.99,12/17/19 01:49,"719 Lakeview St, New York City, NY 10001" +314065,Apple Airpods Headphones,1,150,12/01/19 08:08,"137 8th St, Boston, MA 02215" +314066,Lightning Charging Cable,1,14.95,12/25/19 09:58,"92 Johnson St, San Francisco, CA 94016" +314067,Bose SoundSport Headphones,1,99.99,12/17/19 19:47,"588 4th St, New York City, NY 10001" +314067,USB-C Charging Cable,1,11.95,12/17/19 19:47,"588 4th St, New York City, NY 10001" +314068,Wired Headphones,1,11.99,12/03/19 11:41,"626 Center St, Austin, TX 73301" +314069,Wired Headphones,1,11.99,12/13/19 15:18,"212 Meadow St, Austin, TX 73301" +314070,LG Dryer,1,600.0,12/13/19 14:36,"409 11th St, Los Angeles, CA 90001" +314071,AAA Batteries (4-pack),1,2.99,12/15/19 13:23,"628 Jackson St, Seattle, WA 98101" +314072,27in 4K Gaming Monitor,1,389.99,12/07/19 09:51,"335 Willow St, San Francisco, CA 94016" +314073,Flatscreen TV,1,300,12/09/19 19:29,"930 Johnson St, Los Angeles, CA 90001" +314074,ThinkPad Laptop,1,999.99,12/19/19 19:58,"628 Center St, San Francisco, CA 94016" +314075,AA Batteries (4-pack),1,3.84,12/08/19 21:26,"101 Hickory St, Boston, MA 02215" +314076,27in FHD Monitor,1,149.99,12/25/19 15:41,"471 Lakeview St, Boston, MA 02215" +314077,USB-C Charging Cable,1,11.95,12/15/19 20:29,"727 10th St, Los Angeles, CA 90001" +314078,USB-C Charging Cable,1,11.95,12/25/19 20:45,"5 Lakeview St, New York City, NY 10001" +314079,Lightning Charging Cable,1,14.95,12/06/19 10:26,"300 7th St, San Francisco, CA 94016" +314080,27in 4K Gaming Monitor,1,389.99,12/22/19 12:47,"567 5th St, Atlanta, GA 30301" +314081,27in 4K Gaming Monitor,1,389.99,12/01/19 10:30,"706 10th St, Los Angeles, CA 90001" +314082,Wired Headphones,1,11.99,12/26/19 17:15,"406 Adams St, Boston, MA 02215" +314083,AA Batteries (4-pack),1,3.84,12/31/19 15:54,"131 14th St, San Francisco, CA 94016" +314084,27in FHD Monitor,1,149.99,12/01/19 21:02,"810 11th St, Dallas, TX 75001" +314085,AA Batteries (4-pack),1,3.84,12/21/19 16:04,"330 Walnut St, Los Angeles, CA 90001" +314086,iPhone,1,700,12/04/19 20:36,"699 5th St, San Francisco, CA 94016" +314087,USB-C Charging Cable,1,11.95,12/19/19 07:43,"877 1st St, New York City, NY 10001" +314088,Wired Headphones,1,11.99,12/05/19 17:29,"341 6th St, San Francisco, CA 94016" +314089,Wired Headphones,1,11.99,12/17/19 10:30,"579 Hill St, San Francisco, CA 94016" +314090,Google Phone,1,600,12/07/19 04:24,"360 Park St, Los Angeles, CA 90001" +314091,Macbook Pro Laptop,1,1700,12/22/19 13:13,"370 11th St, Los Angeles, CA 90001" +314092,27in FHD Monitor,1,149.99,12/20/19 12:00,"776 Pine St, Dallas, TX 75001" +314093,Apple Airpods Headphones,1,150,12/26/19 21:32,"980 1st St, Portland, ME 04101" +314094,AA Batteries (4-pack),2,3.84,12/21/19 10:29,"4 Walnut St, New York City, NY 10001" +314095,Google Phone,1,600,12/24/19 20:02,"312 Main St, Atlanta, GA 30301" +314096,27in 4K Gaming Monitor,1,389.99,12/07/19 20:44,"442 West St, Los Angeles, CA 90001" +,,,,, +314097,iPhone,1,700,12/25/19 23:30,"632 8th St, Los Angeles, CA 90001" +314098,Apple Airpods Headphones,1,150,12/27/19 20:02,"435 Elm St, New York City, NY 10001" +314099,Bose SoundSport Headphones,1,99.99,12/01/19 22:19,"67 West St, San Francisco, CA 94016" +314100,Wired Headphones,1,11.99,12/26/19 21:31,"198 Chestnut St, San Francisco, CA 94016" +314101,Lightning Charging Cable,1,14.95,12/30/19 10:41,"608 Adams St, San Francisco, CA 94016" +314102,AA Batteries (4-pack),1,3.84,12/30/19 10:28,"804 5th St, San Francisco, CA 94016" +314103,20in Monitor,1,109.99,12/03/19 18:42,"326 7th St, Dallas, TX 75001" +314103,AA Batteries (4-pack),1,3.84,12/03/19 18:42,"326 7th St, Dallas, TX 75001" +314104,Bose SoundSport Headphones,1,99.99,12/29/19 22:16,"63 Chestnut St, Boston, MA 02215" +314105,iPhone,1,700,12/10/19 14:13,"849 5th St, San Francisco, CA 94016" +,,,,, +314106,Bose SoundSport Headphones,1,99.99,12/04/19 12:05,"235 12th St, Dallas, TX 75001" +314107,Lightning Charging Cable,1,14.95,12/13/19 13:36,"692 Madison St, Los Angeles, CA 90001" +314108,USB-C Charging Cable,1,11.95,12/07/19 22:38,"730 West St, Austin, TX 73301" +314109,Google Phone,1,600,12/26/19 19:38,"857 Cherry St, New York City, NY 10001" +314110,Wired Headphones,1,11.99,12/01/19 22:02,"89 11th St, Dallas, TX 75001" +314111,AA Batteries (4-pack),1,3.84,12/15/19 12:38,"88 4th St, Boston, MA 02215" +314112,Macbook Pro Laptop,1,1700,12/30/19 12:44,"839 Maple St, Atlanta, GA 30301" +314113,USB-C Charging Cable,1,11.95,12/27/19 09:15,"168 Ridge St, Boston, MA 02215" +314114,iPhone,1,700,12/29/19 14:35,"602 14th St, Seattle, WA 98101" +314115,AAA Batteries (4-pack),2,2.99,12/09/19 04:02,"508 Jefferson St, Los Angeles, CA 90001" +314116,Apple Airpods Headphones,1,150,12/28/19 18:59,"260 Lake St, New York City, NY 10001" +314117,USB-C Charging Cable,1,11.95,12/14/19 15:48,"95 11th St, San Francisco, CA 94016" +314118,USB-C Charging Cable,1,11.95,12/17/19 17:04,"749 Adams St, New York City, NY 10001" +314119,Lightning Charging Cable,1,14.95,12/15/19 18:36,"245 Walnut St, Austin, TX 73301" +314120,Wired Headphones,1,11.99,12/21/19 15:18,"375 Meadow St, Seattle, WA 98101" +314121,Apple Airpods Headphones,1,150,12/28/19 12:59,"526 11th St, Austin, TX 73301" +314122,27in FHD Monitor,1,149.99,12/11/19 10:28,"728 2nd St, Los Angeles, CA 90001" +314123,27in FHD Monitor,1,149.99,12/08/19 00:17,"407 Highland St, Boston, MA 02215" +314124,Bose SoundSport Headphones,1,99.99,12/19/19 22:16,"575 Pine St, Boston, MA 02215" +314125,20in Monitor,1,109.99,12/17/19 22:57,"98 Johnson St, San Francisco, CA 94016" +314126,Macbook Pro Laptop,1,1700,12/12/19 16:33,"598 Chestnut St, San Francisco, CA 94016" +314127,Lightning Charging Cable,1,14.95,12/09/19 20:08,"26 Hickory St, New York City, NY 10001" +314128,Flatscreen TV,1,300,01/01/20 00:53,"426 Forest St, San Francisco, CA 94016" +314129,Flatscreen TV,1,300,12/12/19 15:33,"396 1st St, New York City, NY 10001" +314130,Apple Airpods Headphones,1,150,12/06/19 12:49,"963 Madison St, Los Angeles, CA 90001" +314131,USB-C Charging Cable,1,11.95,12/07/19 23:24,"946 8th St, Boston, MA 02215" +314132,AAA Batteries (4-pack),1,2.99,12/10/19 22:38,"895 1st St, Seattle, WA 98101" +314133,27in 4K Gaming Monitor,1,389.99,12/31/19 17:20,"914 South St, Boston, MA 02215" +314134,USB-C Charging Cable,2,11.95,12/16/19 23:17,"826 Hill St, Seattle, WA 98101" +314135,LG Dryer,1,600.0,12/12/19 14:05,"398 11th St, Atlanta, GA 30301" +314136,Apple Airpods Headphones,1,150,12/30/19 07:20,"554 14th St, Austin, TX 73301" +314137,Lightning Charging Cable,1,14.95,12/05/19 21:32,"880 7th St, Boston, MA 02215" +314138,27in FHD Monitor,1,149.99,12/18/19 15:57,"316 2nd St, New York City, NY 10001" +314139,Google Phone,1,600,12/17/19 09:21,"566 Highland St, Dallas, TX 75001" +314140,Wired Headphones,1,11.99,12/26/19 12:06,"208 Hill St, San Francisco, CA 94016" +314141,Bose SoundSport Headphones,1,99.99,12/28/19 21:30,"607 8th St, San Francisco, CA 94016" +314142,Wired Headphones,2,11.99,12/06/19 19:58,"447 Hill St, Austin, TX 73301" +314143,27in 4K Gaming Monitor,1,389.99,12/04/19 19:36,"40 Maple St, Los Angeles, CA 90001" +314144,Lightning Charging Cable,1,14.95,12/26/19 18:32,"813 Elm St, Seattle, WA 98101" +314145,Wired Headphones,1,11.99,12/11/19 13:06,"150 Elm St, Los Angeles, CA 90001" +314146,iPhone,1,700,12/04/19 20:15,"492 Johnson St, Atlanta, GA 30301" +314147,34in Ultrawide Monitor,1,379.99,12/12/19 09:07,"830 Walnut St, New York City, NY 10001" +314148,Flatscreen TV,1,300,12/17/19 21:15,"555 6th St, Austin, TX 73301" +314149,Wired Headphones,1,11.99,12/26/19 13:21,"358 Dogwood St, San Francisco, CA 94016" +314150,27in FHD Monitor,1,149.99,12/23/19 17:22,"636 Meadow St, Boston, MA 02215" +314151,AAA Batteries (4-pack),1,2.99,12/01/19 16:28,"45 Church St, Atlanta, GA 30301" +314152,Apple Airpods Headphones,1,150,12/13/19 07:27,"674 Cherry St, Los Angeles, CA 90001" +314153,Lightning Charging Cable,1,14.95,12/28/19 14:39,"994 7th St, San Francisco, CA 94016" +314154,USB-C Charging Cable,1,11.95,12/26/19 13:31,"959 10th St, New York City, NY 10001" +314155,USB-C Charging Cable,1,11.95,12/30/19 07:52,"208 Hickory St, Seattle, WA 98101" +314156,AAA Batteries (4-pack),2,2.99,12/07/19 12:38,"72 2nd St, Boston, MA 02215" +314157,AAA Batteries (4-pack),1,2.99,12/13/19 12:29,"339 Lakeview St, San Francisco, CA 94016" +314158,AA Batteries (4-pack),1,3.84,12/11/19 09:30,"41 9th St, New York City, NY 10001" +314159,ThinkPad Laptop,1,999.99,12/13/19 23:05,"680 Lakeview St, San Francisco, CA 94016" +314160,Wired Headphones,1,11.99,12/29/19 16:31,"351 11th St, New York City, NY 10001" +314161,Apple Airpods Headphones,1,150,12/10/19 11:40,"45 Washington St, Atlanta, GA 30301" +314162,Lightning Charging Cable,1,14.95,12/29/19 15:03,"793 Lincoln St, Seattle, WA 98101" +314163,USB-C Charging Cable,1,11.95,12/17/19 23:07,"271 Center St, San Francisco, CA 94016" +314164,Flatscreen TV,1,300,12/14/19 14:38,"218 9th St, San Francisco, CA 94016" +,,,,, +314165,Lightning Charging Cable,1,14.95,12/23/19 08:11,"306 Center St, San Francisco, CA 94016" +314166,Lightning Charging Cable,1,14.95,12/17/19 12:34,"121 10th St, Seattle, WA 98101" +314167,USB-C Charging Cable,1,11.95,12/30/19 00:41,"283 Jefferson St, Boston, MA 02215" +314168,AAA Batteries (4-pack),2,2.99,12/21/19 15:38,"388 Maple St, Atlanta, GA 30301" +314169,Wired Headphones,1,11.99,12/31/19 17:23,"50 Ridge St, Portland, OR 97035" +314170,AAA Batteries (4-pack),1,2.99,12/23/19 06:19,"929 Church St, Dallas, TX 75001" +314171,Bose SoundSport Headphones,1,99.99,12/12/19 11:45,"124 River St, San Francisco, CA 94016" +314172,Macbook Pro Laptop,1,1700,12/27/19 14:55,"278 Adams St, Atlanta, GA 30301" +314173,USB-C Charging Cable,1,11.95,12/16/19 16:37,"113 Hill St, Boston, MA 02215" +314174,Apple Airpods Headphones,1,150,12/20/19 19:17,"929 Ridge St, Boston, MA 02215" +314175,USB-C Charging Cable,1,11.95,12/31/19 10:43,"619 Park St, Portland, OR 97035" +314176,27in FHD Monitor,1,149.99,12/01/19 16:16,"277 13th St, San Francisco, CA 94016" +314177,AA Batteries (4-pack),1,3.84,12/02/19 08:17,"398 Madison St, Atlanta, GA 30301" +314178,USB-C Charging Cable,1,11.95,12/13/19 00:31,"458 Center St, Atlanta, GA 30301" +314179,USB-C Charging Cable,1,11.95,12/11/19 13:13,"41 Lake St, Atlanta, GA 30301" +314180,AAA Batteries (4-pack),1,2.99,12/31/19 15:58,"980 13th St, San Francisco, CA 94016" +314181,Vareebadd Phone,1,400,12/29/19 10:03,"425 Church St, Atlanta, GA 30301" +314181,USB-C Charging Cable,1,11.95,12/29/19 10:03,"425 Church St, Atlanta, GA 30301" +314182,USB-C Charging Cable,2,11.95,12/08/19 16:44,"147 Hickory St, Dallas, TX 75001" +314183,USB-C Charging Cable,1,11.95,12/15/19 15:33,"385 Main St, Los Angeles, CA 90001" +314184,34in Ultrawide Monitor,1,379.99,12/12/19 16:56,"471 Lakeview St, San Francisco, CA 94016" +,,,,, +314185,AAA Batteries (4-pack),1,2.99,12/15/19 12:24,"626 Elm St, Austin, TX 73301" +314186,AAA Batteries (4-pack),1,2.99,12/02/19 20:17,"688 North St, Austin, TX 73301" +314187,Wired Headphones,1,11.99,12/14/19 09:00,"541 Church St, Los Angeles, CA 90001" +314188,AAA Batteries (4-pack),1,2.99,12/12/19 11:37,"488 Jefferson St, Seattle, WA 98101" +314189,Wired Headphones,1,11.99,12/23/19 10:14,"276 12th St, San Francisco, CA 94016" +314190,Lightning Charging Cable,1,14.95,12/25/19 09:57,"548 Washington St, Los Angeles, CA 90001" +314191,AAA Batteries (4-pack),1,2.99,12/03/19 13:48,"695 Spruce St, Los Angeles, CA 90001" +314192,Lightning Charging Cable,1,14.95,12/01/19 08:10,"23 Highland St, Atlanta, GA 30301" +314193,LG Washing Machine,1,600.0,12/02/19 15:31,"832 Maple St, New York City, NY 10001" +314194,AA Batteries (4-pack),2,3.84,12/06/19 18:26,"983 1st St, Portland, OR 97035" +314195,27in 4K Gaming Monitor,1,389.99,12/08/19 10:02,"890 Spruce St, San Francisco, CA 94016" +314196,Apple Airpods Headphones,1,150,12/19/19 11:43,"626 Cedar St, Portland, OR 97035" +314197,Bose SoundSport Headphones,1,99.99,12/12/19 11:58,"893 Meadow St, Austin, TX 73301" +314198,AAA Batteries (4-pack),1,2.99,12/16/19 07:51,"945 Ridge St, San Francisco, CA 94016" +314199,AA Batteries (4-pack),2,3.84,12/07/19 11:17,"881 Highland St, San Francisco, CA 94016" +314200,Lightning Charging Cable,2,14.95,12/17/19 20:12,"548 Forest St, San Francisco, CA 94016" +314201,Wired Headphones,1,11.99,12/02/19 16:11,"783 Hickory St, Dallas, TX 75001" +314202,ThinkPad Laptop,1,999.99,12/29/19 20:24,"620 West St, San Francisco, CA 94016" +314203,Lightning Charging Cable,1,14.95,12/02/19 22:26,"294 Jefferson St, San Francisco, CA 94016" +314204,Google Phone,1,600,12/18/19 10:16,"335 6th St, San Francisco, CA 94016" +314204,Bose SoundSport Headphones,1,99.99,12/18/19 10:16,"335 6th St, San Francisco, CA 94016" +314205,Lightning Charging Cable,1,14.95,12/09/19 12:24,"209 Church St, San Francisco, CA 94016" +314206,AAA Batteries (4-pack),1,2.99,12/07/19 12:02,"36 Willow St, Seattle, WA 98101" +314207,Wired Headphones,1,11.99,12/25/19 15:13,"955 14th St, Boston, MA 02215" +314208,Lightning Charging Cable,1,14.95,12/31/19 14:07,"69 2nd St, Dallas, TX 75001" +314209,Flatscreen TV,1,300,12/25/19 23:05,"626 Maple St, San Francisco, CA 94016" +314210,Macbook Pro Laptop,1,1700,12/28/19 09:06,"176 Lakeview St, Los Angeles, CA 90001" +314211,USB-C Charging Cable,1,11.95,12/30/19 12:14,"50 South St, Boston, MA 02215" +314212,USB-C Charging Cable,1,11.95,12/07/19 20:54,"448 Johnson St, Portland, OR 97035" +314213,Apple Airpods Headphones,1,150,12/20/19 19:19,"625 Center St, San Francisco, CA 94016" +314214,Lightning Charging Cable,1,14.95,12/18/19 17:31,"360 Ridge St, Boston, MA 02215" +314215,Bose SoundSport Headphones,1,99.99,12/20/19 16:47,"505 Lake St, New York City, NY 10001" +314216,AA Batteries (4-pack),2,3.84,12/29/19 20:59,"790 West St, San Francisco, CA 94016" +314217,Wired Headphones,2,11.99,12/20/19 18:33,"847 Hickory St, Boston, MA 02215" +314218,USB-C Charging Cable,1,11.95,12/16/19 20:12,"97 Pine St, Boston, MA 02215" +314219,USB-C Charging Cable,1,11.95,12/01/19 19:54,"970 12th St, San Francisco, CA 94016" +314220,27in 4K Gaming Monitor,1,389.99,12/21/19 20:29,"166 Adams St, New York City, NY 10001" +314221,27in 4K Gaming Monitor,1,389.99,12/17/19 14:47,"504 Center St, New York City, NY 10001" +314222,AA Batteries (4-pack),2,3.84,12/24/19 10:04,"438 11th St, San Francisco, CA 94016" +314223,Macbook Pro Laptop,1,1700,12/26/19 20:46,"345 Sunset St, Portland, OR 97035" +314224,Lightning Charging Cable,1,14.95,12/08/19 09:02,"319 Jefferson St, Austin, TX 73301" +314225,Apple Airpods Headphones,1,150,12/26/19 23:08,"712 1st St, Boston, MA 02215" +314226,Lightning Charging Cable,1,14.95,12/16/19 13:17,"907 Park St, New York City, NY 10001" +314227,Google Phone,1,600,12/26/19 08:36,"210 Jefferson St, San Francisco, CA 94016" +314228,Wired Headphones,1,11.99,12/04/19 23:30,"690 Johnson St, San Francisco, CA 94016" +314229,34in Ultrawide Monitor,1,379.99,12/31/19 19:40,"801 Sunset St, San Francisco, CA 94016" +314229,27in 4K Gaming Monitor,1,389.99,12/31/19 19:40,"801 Sunset St, San Francisco, CA 94016" +314230,iPhone,1,700,12/11/19 17:09,"162 Washington St, Atlanta, GA 30301" +314231,Vareebadd Phone,1,400,12/29/19 21:34,"619 Cherry St, Seattle, WA 98101" +314232,Bose SoundSport Headphones,1,99.99,12/29/19 14:45,"977 1st St, New York City, NY 10001" +314233,27in FHD Monitor,1,149.99,12/02/19 07:32,"83 Madison St, Los Angeles, CA 90001" +314234,Bose SoundSport Headphones,1,99.99,12/24/19 20:39,"696 Madison St, Dallas, TX 75001" +314235,Macbook Pro Laptop,1,1700,12/14/19 16:14,"136 Pine St, Boston, MA 02215" +314236,Wired Headphones,1,11.99,12/06/19 20:21,"110 Sunset St, Dallas, TX 75001" +314237,27in FHD Monitor,1,149.99,12/05/19 09:53,"43 Hickory St, Los Angeles, CA 90001" +314238,Apple Airpods Headphones,1,150,12/12/19 19:03,"794 11th St, New York City, NY 10001" +314239,AAA Batteries (4-pack),1,2.99,12/04/19 12:05,"397 Madison St, San Francisco, CA 94016" +314240,USB-C Charging Cable,1,11.95,12/08/19 22:15,"861 Highland St, Dallas, TX 75001" +314241,AA Batteries (4-pack),2,3.84,12/24/19 15:40,"947 Cherry St, Boston, MA 02215" +314242,Flatscreen TV,1,300,12/22/19 22:34,"54 Park St, San Francisco, CA 94016" +314243,34in Ultrawide Monitor,1,379.99,12/19/19 12:35,"433 Hickory St, Los Angeles, CA 90001" +314244,AA Batteries (4-pack),1,3.84,12/04/19 20:37,"435 10th St, Atlanta, GA 30301" +314245,USB-C Charging Cable,1,11.95,12/09/19 23:09,"414 Elm St, Seattle, WA 98101" +314246,Lightning Charging Cable,1,14.95,12/16/19 19:35,"64 10th St, Los Angeles, CA 90001" +314247,USB-C Charging Cable,1,11.95,12/01/19 09:02,"482 Elm St, San Francisco, CA 94016" +314248,USB-C Charging Cable,1,11.95,12/27/19 11:46,"432 Washington St, Boston, MA 02215" +314249,Lightning Charging Cable,1,14.95,12/28/19 17:06,"757 Sunset St, San Francisco, CA 94016" +314250,Bose SoundSport Headphones,1,99.99,12/24/19 12:49,"768 Pine St, San Francisco, CA 94016" +314251,USB-C Charging Cable,1,11.95,12/01/19 20:32,"588 Hill St, Los Angeles, CA 90001" +314252,Google Phone,1,600,12/30/19 17:13,"751 Main St, Atlanta, GA 30301" +314253,Apple Airpods Headphones,1,150,12/29/19 22:46,"471 Jefferson St, Atlanta, GA 30301" +314254,AA Batteries (4-pack),1,3.84,12/25/19 03:05,"718 14th St, Los Angeles, CA 90001" +314255,27in FHD Monitor,1,149.99,12/19/19 13:24,"148 North St, Los Angeles, CA 90001" +314256,Apple Airpods Headphones,1,150,12/23/19 13:49,"225 Cedar St, Portland, ME 04101" +314257,Lightning Charging Cable,1,14.95,12/29/19 21:57,"995 River St, Los Angeles, CA 90001" +314258,Bose SoundSport Headphones,1,99.99,12/21/19 10:27,"130 River St, Seattle, WA 98101" +314259,Apple Airpods Headphones,1,150,12/08/19 16:11,"121 6th St, Los Angeles, CA 90001" +314260,Macbook Pro Laptop,1,1700,12/27/19 14:07,"991 North St, New York City, NY 10001" +314261,AA Batteries (4-pack),1,3.84,12/07/19 12:27,"549 Cherry St, Austin, TX 73301" +314262,AAA Batteries (4-pack),1,2.99,12/12/19 18:38,"471 Park St, San Francisco, CA 94016" +314263,Wired Headphones,1,11.99,12/28/19 08:34,"730 North St, Austin, TX 73301" +314264,34in Ultrawide Monitor,1,379.99,12/17/19 22:27,"956 Park St, San Francisco, CA 94016" +314265,Wired Headphones,1,11.99,12/01/19 10:33,"793 Center St, New York City, NY 10001" +314266,Bose SoundSport Headphones,1,99.99,12/16/19 11:37,"141 5th St, Atlanta, GA 30301" +314267,Wired Headphones,1,11.99,12/01/19 15:46,"167 6th St, San Francisco, CA 94016" +314268,AA Batteries (4-pack),2,3.84,12/29/19 21:52,"239 Center St, San Francisco, CA 94016" +314269,AA Batteries (4-pack),1,3.84,12/23/19 09:18,"468 11th St, Portland, OR 97035" +314270,20in Monitor,1,109.99,12/09/19 20:55,"444 Cedar St, New York City, NY 10001" +314271,USB-C Charging Cable,1,11.95,12/08/19 16:29,"221 Johnson St, San Francisco, CA 94016" +314272,Macbook Pro Laptop,1,1700,12/30/19 16:06,"520 5th St, San Francisco, CA 94016" +314273,AA Batteries (4-pack),1,3.84,12/18/19 18:13,"585 Lakeview St, Los Angeles, CA 90001" +314274,AAA Batteries (4-pack),1,2.99,12/20/19 19:13,"772 Walnut St, Dallas, TX 75001" +314275,Lightning Charging Cable,1,14.95,12/04/19 12:08,"289 Chestnut St, San Francisco, CA 94016" +314276,Apple Airpods Headphones,1,150,12/15/19 06:58,"810 Jefferson St, New York City, NY 10001" +314277,Wired Headphones,1,11.99,12/20/19 00:24,"105 West St, Los Angeles, CA 90001" +314277,Bose SoundSport Headphones,1,99.99,12/20/19 00:24,"105 West St, Los Angeles, CA 90001" +314278,Bose SoundSport Headphones,1,99.99,12/29/19 11:18,"936 1st St, Dallas, TX 75001" +314279,USB-C Charging Cable,1,11.95,12/24/19 13:55,"246 Spruce St, Seattle, WA 98101" +314280,Wired Headphones,1,11.99,12/30/19 16:52,"456 Church St, Los Angeles, CA 90001" +314281,AA Batteries (4-pack),1,3.84,12/26/19 17:47,"644 6th St, Seattle, WA 98101" +314281,27in FHD Monitor,1,149.99,12/26/19 17:47,"644 6th St, Seattle, WA 98101" +314282,Apple Airpods Headphones,1,150,12/14/19 11:29,"389 2nd St, Dallas, TX 75001" +314283,AA Batteries (4-pack),1,3.84,12/18/19 18:53,"681 2nd St, Los Angeles, CA 90001" +314284,USB-C Charging Cable,1,11.95,01/01/20 00:32,"553 Center St, San Francisco, CA 94016" +314285,Apple Airpods Headphones,1,150,12/19/19 15:40,"921 Cedar St, Los Angeles, CA 90001" +314286,Lightning Charging Cable,1,14.95,12/19/19 19:06,"673 Willow St, San Francisco, CA 94016" +314287,Bose SoundSport Headphones,1,99.99,12/16/19 06:37,"416 Wilson St, Dallas, TX 75001" +314288,iPhone,1,700,12/14/19 17:43,"11 Pine St, Boston, MA 02215" +314289,ThinkPad Laptop,1,999.99,12/26/19 12:03,"751 14th St, Austin, TX 73301" +314290,iPhone,1,700,12/08/19 11:28,"226 Center St, Atlanta, GA 30301" +314291,AAA Batteries (4-pack),4,2.99,12/18/19 21:32,"473 Lake St, Atlanta, GA 30301" +314292,27in FHD Monitor,1,149.99,12/06/19 10:34,"696 Maple St, Boston, MA 02215" +314293,34in Ultrawide Monitor,1,379.99,12/18/19 15:13,"398 11th St, Portland, OR 97035" +314294,AAA Batteries (4-pack),1,2.99,12/09/19 23:46,"75 8th St, New York City, NY 10001" +314295,USB-C Charging Cable,1,11.95,12/09/19 13:59,"74 13th St, Atlanta, GA 30301" +314296,USB-C Charging Cable,1,11.95,12/09/19 10:23,"350 Meadow St, Austin, TX 73301" +314297,USB-C Charging Cable,1,11.95,12/26/19 13:57,"699 10th St, San Francisco, CA 94016" +314298,Lightning Charging Cable,1,14.95,12/09/19 23:34,"533 Ridge St, San Francisco, CA 94016" +314299,USB-C Charging Cable,1,11.95,12/29/19 20:46,"762 13th St, Boston, MA 02215" +314300,27in FHD Monitor,1,149.99,12/31/19 18:11,"593 Spruce St, Los Angeles, CA 90001" +314301,AAA Batteries (4-pack),1,2.99,12/18/19 19:08,"294 6th St, Portland, OR 97035" +314302,Apple Airpods Headphones,1,150,12/25/19 12:36,"337 Jefferson St, Atlanta, GA 30301" +314303,Wired Headphones,2,11.99,12/16/19 16:12,"36 8th St, Los Angeles, CA 90001" +314304,Bose SoundSport Headphones,1,99.99,12/12/19 14:18,"20 13th St, Atlanta, GA 30301" +314305,Wired Headphones,1,11.99,12/01/19 08:36,"78 Cedar St, San Francisco, CA 94016" +314306,Bose SoundSport Headphones,1,99.99,12/12/19 15:08,"688 Hickory St, Boston, MA 02215" +314307,Bose SoundSport Headphones,1,99.99,12/02/19 20:37,"460 Maple St, Seattle, WA 98101" +314308,Flatscreen TV,1,300,12/22/19 14:59,"303 6th St, New York City, NY 10001" +314309,Google Phone,1,600,12/30/19 10:01,"301 Wilson St, New York City, NY 10001" +314309,USB-C Charging Cable,1,11.95,12/30/19 10:01,"301 Wilson St, New York City, NY 10001" +314310,AA Batteries (4-pack),1,3.84,12/05/19 23:29,"711 14th St, New York City, NY 10001" +314311,Wired Headphones,1,11.99,12/28/19 21:20,"406 Lincoln St, Los Angeles, CA 90001" +,,,,, +314312,34in Ultrawide Monitor,1,379.99,12/31/19 17:37,"464 2nd St, San Francisco, CA 94016" +314313,Wired Headphones,2,11.99,12/13/19 20:03,"308 Main St, San Francisco, CA 94016" +314314,AA Batteries (4-pack),1,3.84,12/22/19 00:02,"412 Jefferson St, Portland, ME 04101" +314315,Flatscreen TV,1,300,12/02/19 14:24,"672 12th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +314316,27in FHD Monitor,1,149.99,12/09/19 14:03,"572 Center St, San Francisco, CA 94016" +314317,27in FHD Monitor,1,149.99,12/07/19 09:09,"24 Wilson St, Atlanta, GA 30301" +314318,iPhone,1,700,12/16/19 05:43,"595 River St, New York City, NY 10001" +314319,27in FHD Monitor,1,149.99,12/20/19 13:04,"562 Church St, New York City, NY 10001" +314320,USB-C Charging Cable,1,11.95,12/31/19 13:39,"928 Park St, Los Angeles, CA 90001" +314320,iPhone,1,700,12/31/19 13:39,"928 Park St, Los Angeles, CA 90001" +314321,Bose SoundSport Headphones,1,99.99,12/13/19 18:21,"693 Jackson St, Portland, OR 97035" +314322,AAA Batteries (4-pack),2,2.99,12/19/19 08:10,"319 Johnson St, Portland, OR 97035" +314323,USB-C Charging Cable,1,11.95,12/23/19 20:30,"762 Meadow St, Seattle, WA 98101" +314324,20in Monitor,1,109.99,12/14/19 20:48,"158 Meadow St, San Francisco, CA 94016" +314325,Apple Airpods Headphones,1,150,12/08/19 10:01,"744 Center St, San Francisco, CA 94016" +314326,AA Batteries (4-pack),1,3.84,12/17/19 17:10,"602 Jefferson St, Los Angeles, CA 90001" +314327,Lightning Charging Cable,1,14.95,12/06/19 11:26,"270 Elm St, San Francisco, CA 94016" +314328,Wired Headphones,1,11.99,12/14/19 10:11,"90 Walnut St, Boston, MA 02215" +314329,AA Batteries (4-pack),1,3.84,12/04/19 09:41,"858 Highland St, Portland, OR 97035" +314330,Bose SoundSport Headphones,1,99.99,12/11/19 16:56,"537 Johnson St, Boston, MA 02215" +314331,27in FHD Monitor,1,149.99,12/27/19 14:13,"503 Center St, San Francisco, CA 94016" +314332,USB-C Charging Cable,1,11.95,12/26/19 08:59,"198 5th St, Boston, MA 02215" +314333,Flatscreen TV,1,300,12/10/19 14:53,"340 9th St, San Francisco, CA 94016" +314334,USB-C Charging Cable,1,11.95,12/17/19 16:29,"951 Elm St, Boston, MA 02215" +314335,AAA Batteries (4-pack),1,2.99,12/03/19 09:49,"31 Jefferson St, Los Angeles, CA 90001" +314336,USB-C Charging Cable,1,11.95,12/09/19 15:36,"42 Maple St, New York City, NY 10001" +314337,USB-C Charging Cable,1,11.95,12/15/19 17:54,"314 Hickory St, Portland, OR 97035" +314338,Bose SoundSport Headphones,1,99.99,12/30/19 18:56,"334 8th St, New York City, NY 10001" +314339,20in Monitor,1,109.99,12/12/19 10:51,"703 Lincoln St, Boston, MA 02215" +314340,USB-C Charging Cable,1,11.95,12/30/19 18:11,"340 5th St, San Francisco, CA 94016" +314341,AAA Batteries (4-pack),1,2.99,12/08/19 10:29,"692 Cedar St, New York City, NY 10001" +314342,Lightning Charging Cable,1,14.95,12/17/19 17:45,"709 Forest St, New York City, NY 10001" +314343,ThinkPad Laptop,1,999.99,12/10/19 15:53,"449 Highland St, New York City, NY 10001" +314344,Apple Airpods Headphones,1,150,12/30/19 18:11,"608 Elm St, San Francisco, CA 94016" +314345,AA Batteries (4-pack),2,3.84,12/07/19 16:12,"164 10th St, Portland, OR 97035" +314346,34in Ultrawide Monitor,1,379.99,12/02/19 18:29,"796 Church St, Los Angeles, CA 90001" +314347,AA Batteries (4-pack),1,3.84,12/04/19 21:57,"448 Sunset St, Austin, TX 73301" +314348,AAA Batteries (4-pack),1,2.99,12/02/19 05:02,"637 13th St, Los Angeles, CA 90001" +314349,Wired Headphones,1,11.99,12/24/19 17:15,"183 1st St, San Francisco, CA 94016" +314350,iPhone,1,700,12/14/19 12:26,"112 Chestnut St, New York City, NY 10001" +314351,27in 4K Gaming Monitor,1,389.99,12/05/19 09:38,"988 Cedar St, New York City, NY 10001" +314352,Bose SoundSport Headphones,1,99.99,12/17/19 10:13,"524 Lakeview St, Portland, OR 97035" +314353,Google Phone,1,600,12/02/19 10:28,"248 Ridge St, Boston, MA 02215" +314354,AAA Batteries (4-pack),2,2.99,12/22/19 16:04,"281 Highland St, Dallas, TX 75001" +314355,Bose SoundSport Headphones,1,99.99,12/01/19 12:39,"681 Sunset St, New York City, NY 10001" +314356,AA Batteries (4-pack),1,3.84,12/29/19 09:34,"406 6th St, New York City, NY 10001" +314357,iPhone,1,700,12/06/19 18:48,"677 Elm St, New York City, NY 10001" +314358,AA Batteries (4-pack),1,3.84,12/22/19 11:16,"836 Wilson St, Portland, OR 97035" +314359,USB-C Charging Cable,1,11.95,12/03/19 12:57,"237 Lincoln St, San Francisco, CA 94016" +314360,27in FHD Monitor,1,149.99,12/04/19 14:19,"339 Ridge St, Portland, OR 97035" +314361,AAA Batteries (4-pack),1,2.99,12/28/19 20:05,"628 5th St, Los Angeles, CA 90001" +314362,Wired Headphones,1,11.99,12/30/19 10:49,"714 Willow St, Seattle, WA 98101" +314363,Bose SoundSport Headphones,1,99.99,12/20/19 09:58,"263 Jackson St, New York City, NY 10001" +314364,Lightning Charging Cable,1,14.95,12/24/19 10:40,"553 Lincoln St, New York City, NY 10001" +314365,iPhone,1,700,12/16/19 13:40,"203 North St, Seattle, WA 98101" +314366,27in FHD Monitor,1,149.99,12/02/19 13:55,"900 South St, Los Angeles, CA 90001" +314367,Google Phone,1,600,12/04/19 17:17,"879 Maple St, Portland, OR 97035" +314368,USB-C Charging Cable,1,11.95,12/08/19 17:10,"138 9th St, Los Angeles, CA 90001" +314369,iPhone,1,700,12/05/19 15:16,"751 Main St, San Francisco, CA 94016" +314369,Lightning Charging Cable,1,14.95,12/05/19 15:16,"751 Main St, San Francisco, CA 94016" +314369,Wired Headphones,1,11.99,12/05/19 15:16,"751 Main St, San Francisco, CA 94016" +314370,AAA Batteries (4-pack),1,2.99,12/30/19 13:00,"4 Spruce St, San Francisco, CA 94016" +314371,AAA Batteries (4-pack),1,2.99,12/05/19 16:11,"739 12th St, Los Angeles, CA 90001" +314372,Wired Headphones,1,11.99,12/07/19 23:36,"429 Jackson St, Boston, MA 02215" +314373,USB-C Charging Cable,1,11.95,12/31/19 00:47,"577 Walnut St, Dallas, TX 75001" +314374,AA Batteries (4-pack),1,3.84,12/22/19 09:07,"129 Jefferson St, Dallas, TX 75001" +314375,Macbook Pro Laptop,1,1700,12/14/19 20:24,"611 Maple St, San Francisco, CA 94016" +314376,AAA Batteries (4-pack),3,2.99,12/17/19 18:27,"192 Lake St, Dallas, TX 75001" +314377,Apple Airpods Headphones,1,150,12/05/19 14:03,"834 Adams St, Austin, TX 73301" +314378,AA Batteries (4-pack),2,3.84,12/13/19 13:44,"765 5th St, Los Angeles, CA 90001" +314379,Lightning Charging Cable,1,14.95,12/17/19 08:45,"912 Church St, San Francisco, CA 94016" +314380,Apple Airpods Headphones,1,150,12/27/19 09:21,"197 8th St, San Francisco, CA 94016" +314381,Wired Headphones,1,11.99,12/03/19 08:56,"644 2nd St, Portland, OR 97035" +314381,Wired Headphones,1,11.99,12/03/19 08:56,"644 2nd St, Portland, OR 97035" +314382,Macbook Pro Laptop,1,1700,12/24/19 18:57,"462 Lakeview St, Los Angeles, CA 90001" +314383,AA Batteries (4-pack),1,3.84,12/21/19 20:47,"336 Ridge St, Atlanta, GA 30301" +314384,Google Phone,1,600,12/30/19 22:40,"239 Adams St, Los Angeles, CA 90001" +314385,AA Batteries (4-pack),1,3.84,12/04/19 17:41,"429 Wilson St, San Francisco, CA 94016" +314386,AA Batteries (4-pack),1,3.84,12/21/19 11:54,"630 West St, San Francisco, CA 94016" +314387,USB-C Charging Cable,1,11.95,12/18/19 08:09,"295 10th St, San Francisco, CA 94016" +314388,AAA Batteries (4-pack),2,2.99,12/05/19 14:40,"312 Park St, San Francisco, CA 94016" +314389,AA Batteries (4-pack),4,3.84,12/22/19 19:02,"183 Sunset St, San Francisco, CA 94016" +314390,AAA Batteries (4-pack),1,2.99,12/31/19 17:16,"616 Adams St, New York City, NY 10001" +314391,Wired Headphones,1,11.99,12/18/19 18:35,"842 6th St, Austin, TX 73301" +314392,Wired Headphones,1,11.99,12/09/19 23:59,"350 Church St, Los Angeles, CA 90001" +314393,Wired Headphones,1,11.99,12/29/19 21:51,"56 Cherry St, Atlanta, GA 30301" +314394,Apple Airpods Headphones,1,150,12/23/19 10:58,"520 West St, Los Angeles, CA 90001" +314395,Macbook Pro Laptop,1,1700,12/24/19 10:08,"807 7th St, Dallas, TX 75001" +314396,AAA Batteries (4-pack),1,2.99,12/12/19 10:38,"644 Elm St, Los Angeles, CA 90001" +314397,Lightning Charging Cable,1,14.95,12/18/19 22:42,"90 5th St, San Francisco, CA 94016" +314398,AAA Batteries (4-pack),1,2.99,12/16/19 02:24,"277 Chestnut St, Boston, MA 02215" +314399,Lightning Charging Cable,1,14.95,12/22/19 17:28,"339 Maple St, Dallas, TX 75001" +314400,AA Batteries (4-pack),1,3.84,12/16/19 12:44,"767 Maple St, Los Angeles, CA 90001" +314401,iPhone,1,700,12/05/19 12:21,"411 Main St, Boston, MA 02215" +314402,Apple Airpods Headphones,1,150,12/08/19 22:52,"782 Lakeview St, New York City, NY 10001" +314403,USB-C Charging Cable,1,11.95,12/14/19 12:05,"16 Johnson St, New York City, NY 10001" +314404,AA Batteries (4-pack),1,3.84,12/07/19 05:50,"796 2nd St, New York City, NY 10001" +314405,iPhone,1,700,12/02/19 10:39,"682 Dogwood St, San Francisco, CA 94016" +314405,Lightning Charging Cable,1,14.95,12/02/19 10:39,"682 Dogwood St, San Francisco, CA 94016" +314406,Apple Airpods Headphones,1,150,12/05/19 20:30,"343 Cherry St, Dallas, TX 75001" +314407,iPhone,1,700,12/03/19 17:13,"103 Adams St, Boston, MA 02215" +314408,AAA Batteries (4-pack),2,2.99,12/10/19 09:14,"338 River St, Austin, TX 73301" +314409,USB-C Charging Cable,1,11.95,12/08/19 20:10,"397 13th St, Atlanta, GA 30301" +314410,AAA Batteries (4-pack),4,2.99,12/03/19 07:34,"792 Lake St, Los Angeles, CA 90001" +314411,Lightning Charging Cable,1,14.95,12/15/19 12:54,"535 Main St, Boston, MA 02215" +314412,Wired Headphones,1,11.99,12/12/19 18:27,"272 Jefferson St, New York City, NY 10001" +314413,AAA Batteries (4-pack),4,2.99,12/21/19 21:12,"55 Willow St, New York City, NY 10001" +314414,AA Batteries (4-pack),2,3.84,12/24/19 21:38,"463 5th St, Atlanta, GA 30301" +314415,Google Phone,1,600,12/13/19 11:31,"174 Center St, Seattle, WA 98101" +314416,Lightning Charging Cable,1,14.95,12/22/19 19:04,"315 Main St, Seattle, WA 98101" +314417,Bose SoundSport Headphones,1,99.99,12/05/19 19:26,"192 Cedar St, Los Angeles, CA 90001" +314418,34in Ultrawide Monitor,1,379.99,12/02/19 00:16,"823 Cherry St, San Francisco, CA 94016" +314419,Wired Headphones,1,11.99,12/16/19 21:45,"257 7th St, San Francisco, CA 94016" +314420,Lightning Charging Cable,1,14.95,12/01/19 19:27,"423 Dogwood St, New York City, NY 10001" +314421,ThinkPad Laptop,1,999.99,12/03/19 15:35,"129 Center St, San Francisco, CA 94016" +314422,Lightning Charging Cable,1,14.95,12/23/19 00:08,"200 1st St, San Francisco, CA 94016" +314423,Wired Headphones,1,11.99,12/14/19 10:59,"794 12th St, San Francisco, CA 94016" +314424,LG Dryer,1,600.0,12/22/19 21:23,"339 1st St, Los Angeles, CA 90001" +314425,Flatscreen TV,1,300,12/28/19 17:36,"810 7th St, Austin, TX 73301" +314426,Lightning Charging Cable,1,14.95,12/17/19 18:22,"531 Pine St, Los Angeles, CA 90001" +314427,AA Batteries (4-pack),1,3.84,12/02/19 00:50,"234 Jackson St, Atlanta, GA 30301" +314428,Apple Airpods Headphones,1,150,12/13/19 20:24,"95 Willow St, Dallas, TX 75001" +314429,AAA Batteries (4-pack),1,2.99,12/09/19 09:28,"165 Jefferson St, Boston, MA 02215" +314430,AA Batteries (4-pack),1,3.84,12/02/19 10:54,"835 Johnson St, Boston, MA 02215" +314431,iPhone,1,700,12/17/19 19:29,"380 Walnut St, Austin, TX 73301" +314431,Wired Headphones,1,11.99,12/17/19 19:29,"380 Walnut St, Austin, TX 73301" +314432,Lightning Charging Cable,1,14.95,12/24/19 18:46,"422 7th St, Boston, MA 02215" +314433,Lightning Charging Cable,1,14.95,12/30/19 19:17,"977 Hill St, San Francisco, CA 94016" +314434,Apple Airpods Headphones,1,150,12/16/19 12:25,"562 Adams St, Dallas, TX 75001" +314435,Lightning Charging Cable,2,14.95,12/19/19 14:51,"790 Chestnut St, New York City, NY 10001" +314436,Google Phone,1,600,12/11/19 12:36,"40 5th St, New York City, NY 10001" +314437,Lightning Charging Cable,1,14.95,12/25/19 16:53,"170 Johnson St, Austin, TX 73301" +314438,Macbook Pro Laptop,1,1700,12/08/19 21:08,"206 12th St, Los Angeles, CA 90001" +314439,Wired Headphones,1,11.99,12/01/19 15:18,"352 9th St, Atlanta, GA 30301" +314440,Google Phone,1,600,12/06/19 07:54,"970 Hickory St, Dallas, TX 75001" +314441,Wired Headphones,1,11.99,12/15/19 15:57,"705 Center St, Dallas, TX 75001" +314442,USB-C Charging Cable,1,11.95,12/15/19 06:58,"653 Ridge St, San Francisco, CA 94016" +314443,AAA Batteries (4-pack),1,2.99,12/11/19 09:59,"386 Maple St, Seattle, WA 98101" +314444,Lightning Charging Cable,1,14.95,12/24/19 16:00,"575 Hill St, Los Angeles, CA 90001" +314445,Apple Airpods Headphones,1,150,12/19/19 12:03,"374 North St, Atlanta, GA 30301" +314446,27in 4K Gaming Monitor,1,389.99,12/13/19 11:24,"289 Chestnut St, Boston, MA 02215" +314447,Macbook Pro Laptop,1,1700,12/08/19 09:33,"660 7th St, Portland, OR 97035" +314448,Wired Headphones,1,11.99,12/20/19 10:50,"399 Cherry St, San Francisco, CA 94016" +314449,USB-C Charging Cable,1,11.95,12/02/19 14:55,"666 12th St, Seattle, WA 98101" +314450,iPhone,1,700,12/21/19 14:55,"178 Hickory St, Atlanta, GA 30301" +314451,AAA Batteries (4-pack),1,2.99,12/06/19 08:19,"883 Cherry St, Portland, OR 97035" +314452,Apple Airpods Headphones,1,150,12/16/19 16:54,"739 7th St, Los Angeles, CA 90001" +314453,USB-C Charging Cable,1,11.95,12/19/19 09:36,"393 West St, Atlanta, GA 30301" +314454,34in Ultrawide Monitor,1,379.99,12/12/19 12:42,"358 Adams St, San Francisco, CA 94016" +314455,Wired Headphones,1,11.99,12/29/19 15:08,"514 Lincoln St, Dallas, TX 75001" +314456,AA Batteries (4-pack),1,3.84,12/13/19 09:51,"188 Lakeview St, Portland, OR 97035" +314457,AAA Batteries (4-pack),2,2.99,12/21/19 08:44,"407 6th St, New York City, NY 10001" +314458,Vareebadd Phone,1,400,12/10/19 17:51,"338 West St, Portland, OR 97035" +314458,USB-C Charging Cable,2,11.95,12/10/19 17:51,"338 West St, Portland, OR 97035" +314459,Apple Airpods Headphones,1,150,12/11/19 11:23,"498 Cedar St, New York City, NY 10001" +314460,Apple Airpods Headphones,1,150,12/21/19 11:27,"535 12th St, San Francisco, CA 94016" +314461,AA Batteries (4-pack),3,3.84,12/31/19 12:22,"712 Dogwood St, Boston, MA 02215" +314462,AA Batteries (4-pack),1,3.84,12/08/19 02:06,"946 Dogwood St, Atlanta, GA 30301" +314462,Wired Headphones,1,11.99,12/08/19 02:06,"946 Dogwood St, Atlanta, GA 30301" +314463,AA Batteries (4-pack),1,3.84,12/23/19 14:40,"567 1st St, New York City, NY 10001" +314464,Wired Headphones,1,11.99,12/17/19 16:05,"273 Lincoln St, Dallas, TX 75001" +314465,Wired Headphones,1,11.99,12/08/19 12:06,"371 11th St, Portland, OR 97035" +314466,Wired Headphones,1,11.99,12/20/19 18:59,"75 8th St, Seattle, WA 98101" +314467,USB-C Charging Cable,1,11.95,12/16/19 16:13,"751 Lincoln St, Los Angeles, CA 90001" +314468,27in 4K Gaming Monitor,1,389.99,12/17/19 05:38,"480 Washington St, Portland, OR 97035" +314469,ThinkPad Laptop,1,999.99,12/28/19 13:33,"832 4th St, Atlanta, GA 30301" +314470,ThinkPad Laptop,1,999.99,12/01/19 07:56,"698 Hickory St, San Francisco, CA 94016" +314471,Bose SoundSport Headphones,1,99.99,12/24/19 16:05,"417 Highland St, Los Angeles, CA 90001" +314472,iPhone,1,700,12/14/19 16:13,"934 Ridge St, San Francisco, CA 94016" +314472,Lightning Charging Cable,3,14.95,12/14/19 16:13,"934 Ridge St, San Francisco, CA 94016" +314473,AA Batteries (4-pack),1,3.84,12/07/19 14:11,"429 Park St, San Francisco, CA 94016" +314474,27in FHD Monitor,1,149.99,12/05/19 12:53,"943 Elm St, Seattle, WA 98101" +314475,iPhone,1,700,12/02/19 21:16,"920 Cherry St, New York City, NY 10001" +314475,AAA Batteries (4-pack),1,2.99,12/02/19 21:16,"920 Cherry St, New York City, NY 10001" +314476,Lightning Charging Cable,1,14.95,12/07/19 17:17,"819 Jackson St, Dallas, TX 75001" +314477,AA Batteries (4-pack),1,3.84,12/28/19 10:14,"357 4th St, Dallas, TX 75001" +314478,Wired Headphones,1,11.99,12/26/19 20:30,"218 Spruce St, San Francisco, CA 94016" +314479,Lightning Charging Cable,1,14.95,12/24/19 00:41,"473 North St, Los Angeles, CA 90001" +314480,AA Batteries (4-pack),2,3.84,12/22/19 20:15,"929 Wilson St, Dallas, TX 75001" +314481,USB-C Charging Cable,1,11.95,12/05/19 13:50,"242 Willow St, San Francisco, CA 94016" +314482,Google Phone,1,600,12/09/19 21:23,"824 8th St, Atlanta, GA 30301" +314483,27in FHD Monitor,1,149.99,12/18/19 12:15,"383 14th St, Austin, TX 73301" +314484,LG Dryer,1,600.0,12/10/19 21:17,"621 Forest St, Seattle, WA 98101" +314485,AAA Batteries (4-pack),1,2.99,12/30/19 19:12,"914 Park St, Portland, OR 97035" +314486,Apple Airpods Headphones,1,150,12/24/19 16:41,"536 Pine St, Atlanta, GA 30301" +314487,Lightning Charging Cable,1,14.95,12/23/19 19:01,"468 Spruce St, New York City, NY 10001" +314488,Apple Airpods Headphones,1,150,12/01/19 10:28,"2 6th St, Los Angeles, CA 90001" +314489,Google Phone,1,600,12/31/19 15:08,"591 Lake St, Atlanta, GA 30301" +314490,20in Monitor,1,109.99,12/15/19 23:06,"627 Chestnut St, Boston, MA 02215" +314491,AA Batteries (4-pack),1,3.84,12/13/19 10:11,"914 Pine St, Atlanta, GA 30301" +314492,Google Phone,1,600,12/03/19 12:33,"22 Lincoln St, San Francisco, CA 94016" +314492,USB-C Charging Cable,1,11.95,12/03/19 12:33,"22 Lincoln St, San Francisco, CA 94016" +314493,Macbook Pro Laptop,1,1700,12/20/19 09:21,"760 West St, San Francisco, CA 94016" +314494,Wired Headphones,1,11.99,12/17/19 12:11,"378 8th St, Boston, MA 02215" +314495,Wired Headphones,1,11.99,12/05/19 19:21,"436 Hickory St, Dallas, TX 75001" +314496,Lightning Charging Cable,1,14.95,12/04/19 11:09,"467 Jefferson St, Los Angeles, CA 90001" +314497,LG Dryer,1,600.0,12/27/19 14:33,"923 Forest St, Austin, TX 73301" +314498,iPhone,1,700,12/16/19 11:48,"613 Jefferson St, Los Angeles, CA 90001" +314498,Lightning Charging Cable,1,14.95,12/16/19 11:48,"613 Jefferson St, Los Angeles, CA 90001" +314498,Wired Headphones,1,11.99,12/16/19 11:48,"613 Jefferson St, Los Angeles, CA 90001" +314499,AA Batteries (4-pack),3,3.84,12/12/19 05:31,"751 Hickory St, Atlanta, GA 30301" +314500,Bose SoundSport Headphones,1,99.99,12/28/19 13:07,"181 11th St, Portland, OR 97035" +314501,ThinkPad Laptop,1,999.99,12/03/19 09:43,"436 Willow St, Seattle, WA 98101" +314502,Lightning Charging Cable,1,14.95,12/09/19 15:06,"864 14th St, Boston, MA 02215" +314503,AA Batteries (4-pack),1,3.84,12/18/19 20:15,"693 Main St, New York City, NY 10001" +314504,27in 4K Gaming Monitor,1,389.99,12/06/19 17:56,"223 7th St, Boston, MA 02215" +314505,34in Ultrawide Monitor,1,379.99,12/01/19 15:47,"413 Chestnut St, San Francisco, CA 94016" +314506,27in FHD Monitor,1,149.99,12/22/19 09:30,"747 Jackson St, San Francisco, CA 94016" +314507,Wired Headphones,1,11.99,12/13/19 23:39,"719 Washington St, Boston, MA 02215" +314508,Apple Airpods Headphones,1,150,12/04/19 14:51,"54 Lakeview St, Atlanta, GA 30301" +314509,USB-C Charging Cable,1,11.95,12/19/19 16:26,"515 Hill St, San Francisco, CA 94016" +314510,ThinkPad Laptop,1,999.99,12/18/19 17:28,"651 Lakeview St, Austin, TX 73301" +314511,AAA Batteries (4-pack),1,2.99,12/03/19 22:21,"715 Lincoln St, Boston, MA 02215" +314512,Bose SoundSport Headphones,1,99.99,12/08/19 14:55,"978 Highland St, San Francisco, CA 94016" +314513,iPhone,1,700,12/27/19 15:41,"855 9th St, New York City, NY 10001" +314514,AAA Batteries (4-pack),2,2.99,12/09/19 18:42,"468 Highland St, Austin, TX 73301" +314515,Google Phone,1,600,12/18/19 19:23,"145 Highland St, Boston, MA 02215" +314516,AA Batteries (4-pack),1,3.84,12/06/19 16:38,"852 Lake St, New York City, NY 10001" +314517,Apple Airpods Headphones,1,150,12/30/19 10:06,"204 13th St, Boston, MA 02215" +314518,AA Batteries (4-pack),1,3.84,12/09/19 14:02,"871 Cedar St, Boston, MA 02215" +314519,Flatscreen TV,1,300,12/10/19 16:00,"268 7th St, New York City, NY 10001" +314520,27in 4K Gaming Monitor,1,389.99,12/11/19 17:25,"993 Center St, Dallas, TX 75001" +314521,Lightning Charging Cable,1,14.95,12/25/19 13:23,"81 Adams St, Dallas, TX 75001" +314522,Wired Headphones,1,11.99,12/06/19 21:00,"296 Main St, Seattle, WA 98101" +314523,AAA Batteries (4-pack),2,2.99,12/05/19 14:08,"640 8th St, San Francisco, CA 94016" +314524,27in FHD Monitor,1,149.99,12/19/19 15:45,"453 Highland St, San Francisco, CA 94016" +314525,AA Batteries (4-pack),2,3.84,12/14/19 11:30,"151 Jefferson St, San Francisco, CA 94016" +314526,Lightning Charging Cable,1,14.95,12/24/19 23:59,"637 Adams St, Los Angeles, CA 90001" +314527,AA Batteries (4-pack),1,3.84,12/10/19 11:44,"92 Cherry St, Dallas, TX 75001" +314528,AAA Batteries (4-pack),1,2.99,12/19/19 13:27,"37 Main St, Boston, MA 02215" +314529,34in Ultrawide Monitor,1,379.99,12/02/19 20:16,"128 South St, Portland, OR 97035" +314530,AAA Batteries (4-pack),1,2.99,12/06/19 08:18,"801 Highland St, Atlanta, GA 30301" +314531,27in FHD Monitor,1,149.99,12/14/19 19:51,"616 Jackson St, New York City, NY 10001" +314532,Vareebadd Phone,1,400,12/08/19 10:44,"47 Lake St, Portland, OR 97035" +314532,Wired Headphones,1,11.99,12/08/19 10:44,"47 Lake St, Portland, OR 97035" +314533,ThinkPad Laptop,1,999.99,12/01/19 19:06,"15 Lake St, Atlanta, GA 30301" +314534,Lightning Charging Cable,1,14.95,12/07/19 21:06,"13 Jackson St, Dallas, TX 75001" +314535,27in 4K Gaming Monitor,1,389.99,12/21/19 12:27,"505 Lincoln St, Los Angeles, CA 90001" +314536,USB-C Charging Cable,1,11.95,12/14/19 15:53,"770 6th St, Los Angeles, CA 90001" +314537,27in 4K Gaming Monitor,1,389.99,12/22/19 09:23,"160 Sunset St, New York City, NY 10001" +314538,iPhone,1,700,12/15/19 06:52,"654 South St, Austin, TX 73301" +314538,Lightning Charging Cable,1,14.95,12/15/19 06:52,"654 South St, Austin, TX 73301" +314539,iPhone,1,700,12/31/19 09:00,"449 Lakeview St, Portland, OR 97035" +314540,AA Batteries (4-pack),2,3.84,12/20/19 16:36,"633 Madison St, Atlanta, GA 30301" +314541,Flatscreen TV,1,300,12/01/19 18:17,"795 9th St, Seattle, WA 98101" +314542,AAA Batteries (4-pack),1,2.99,12/10/19 11:26,"875 8th St, Boston, MA 02215" +314543,Apple Airpods Headphones,1,150,12/09/19 12:11,"479 8th St, Atlanta, GA 30301" +314544,Lightning Charging Cable,1,14.95,12/26/19 10:18,"575 Maple St, Los Angeles, CA 90001" +314545,Lightning Charging Cable,1,14.95,12/15/19 00:00,"573 Wilson St, New York City, NY 10001" +314546,Flatscreen TV,1,300,12/23/19 12:17,"843 Ridge St, Los Angeles, CA 90001" +314547,AA Batteries (4-pack),1,3.84,12/17/19 16:27,"506 1st St, Los Angeles, CA 90001" +314548,27in FHD Monitor,1,149.99,12/29/19 19:49,"105 Lakeview St, Boston, MA 02215" +314549,Macbook Pro Laptop,1,1700,12/16/19 20:54,"893 4th St, Los Angeles, CA 90001" +314550,Lightning Charging Cable,1,14.95,12/19/19 09:38,"404 Washington St, Portland, OR 97035" +314551,Lightning Charging Cable,1,14.95,12/03/19 19:30,"725 Cherry St, Austin, TX 73301" +314552,20in Monitor,1,109.99,12/09/19 21:25,"531 Sunset St, Austin, TX 73301" +314553,iPhone,1,700,12/21/19 12:03,"969 12th St, San Francisco, CA 94016" +314554,AA Batteries (4-pack),1,3.84,12/07/19 07:49,"755 Hickory St, San Francisco, CA 94016" +314555,AAA Batteries (4-pack),1,2.99,12/24/19 14:42,"551 West St, Austin, TX 73301" +314556,27in 4K Gaming Monitor,1,389.99,12/27/19 18:31,"189 7th St, San Francisco, CA 94016" +314557,AAA Batteries (4-pack),1,2.99,12/01/19 11:12,"284 River St, Boston, MA 02215" +314558,ThinkPad Laptop,1,999.99,12/23/19 18:40,"111 Chestnut St, Atlanta, GA 30301" +314559,27in 4K Gaming Monitor,1,389.99,12/18/19 13:48,"222 6th St, Atlanta, GA 30301" +314560,20in Monitor,1,109.99,12/30/19 19:21,"191 South St, Seattle, WA 98101" +314561,Apple Airpods Headphones,1,150,12/31/19 00:01,"812 Johnson St, San Francisco, CA 94016" +314562,Google Phone,1,600,12/18/19 12:47,"500 7th St, Seattle, WA 98101" +314563,Apple Airpods Headphones,1,150,12/11/19 13:58,"581 Johnson St, New York City, NY 10001" +314564,AA Batteries (4-pack),1,3.84,12/29/19 20:32,"764 North St, Boston, MA 02215" +314565,AA Batteries (4-pack),3,3.84,12/19/19 20:27,"461 Adams St, New York City, NY 10001" +314566,Apple Airpods Headphones,1,150,12/05/19 12:56,"765 10th St, Los Angeles, CA 90001" +314567,Apple Airpods Headphones,1,150,12/22/19 04:48,"658 Lake St, Los Angeles, CA 90001" +314568,Bose SoundSport Headphones,1,99.99,12/21/19 10:55,"128 Main St, San Francisco, CA 94016" +314569,Wired Headphones,1,11.99,12/23/19 09:46,"387 Washington St, San Francisco, CA 94016" +314570,Apple Airpods Headphones,1,150,12/15/19 13:27,"501 North St, San Francisco, CA 94016" +314571,AAA Batteries (4-pack),2,2.99,12/26/19 03:46,"234 River St, Boston, MA 02215" +314572,AA Batteries (4-pack),1,3.84,12/11/19 07:17,"54 Willow St, Los Angeles, CA 90001" +314573,Macbook Pro Laptop,1,1700,12/31/19 01:06,"251 Jefferson St, Austin, TX 73301" +314574,Flatscreen TV,1,300,12/04/19 19:20,"105 4th St, Austin, TX 73301" +314575,Lightning Charging Cable,1,14.95,12/13/19 06:47,"6 Park St, Seattle, WA 98101" +314576,iPhone,1,700,12/05/19 22:08,"72 Lincoln St, San Francisco, CA 94016" +314577,Wired Headphones,1,11.99,12/13/19 14:22,"438 Walnut St, Austin, TX 73301" +314578,20in Monitor,1,109.99,12/26/19 15:25,"519 Hill St, Los Angeles, CA 90001" +314579,Lightning Charging Cable,1,14.95,12/07/19 20:31,"866 Sunset St, Dallas, TX 75001" +314580,Lightning Charging Cable,1,14.95,12/07/19 19:39,"921 6th St, Los Angeles, CA 90001" +314581,Apple Airpods Headphones,1,150,12/05/19 11:39,"286 Walnut St, New York City, NY 10001" +314582,Google Phone,1,600,12/11/19 11:11,"441 Lakeview St, Los Angeles, CA 90001" +314582,Bose SoundSport Headphones,1,99.99,12/11/19 11:11,"441 Lakeview St, Los Angeles, CA 90001" +314583,iPhone,1,700,12/03/19 16:04,"908 Forest St, Austin, TX 73301" +314583,Apple Airpods Headphones,1,150,12/03/19 16:04,"908 Forest St, Austin, TX 73301" +314584,AAA Batteries (4-pack),1,2.99,12/31/19 17:30,"845 12th St, Boston, MA 02215" +314585,Flatscreen TV,1,300,12/10/19 20:57,"338 Ridge St, Portland, OR 97035" +314586,USB-C Charging Cable,1,11.95,12/04/19 11:42,"233 11th St, New York City, NY 10001" +314587,Apple Airpods Headphones,1,150,12/13/19 13:25,"449 Johnson St, Austin, TX 73301" +314588,Flatscreen TV,1,300,12/16/19 11:01,"368 North St, Los Angeles, CA 90001" +314589,AA Batteries (4-pack),1,3.84,12/06/19 13:22,"188 West St, Los Angeles, CA 90001" +314590,Flatscreen TV,1,300,12/09/19 12:35,"382 Johnson St, Seattle, WA 98101" +314591,Vareebadd Phone,1,400,12/09/19 12:35,"263 Dogwood St, Dallas, TX 75001" +314592,27in FHD Monitor,1,149.99,12/24/19 00:48,"312 5th St, San Francisco, CA 94016" +314593,Lightning Charging Cable,1,14.95,12/07/19 09:33,"444 Washington St, Portland, OR 97035" +314594,AAA Batteries (4-pack),2,2.99,12/23/19 03:17,"549 Spruce St, New York City, NY 10001" +314595,27in 4K Gaming Monitor,1,389.99,12/22/19 18:11,"799 Pine St, San Francisco, CA 94016" +314596,27in FHD Monitor,1,149.99,12/30/19 17:29,"337 Adams St, Los Angeles, CA 90001" +314597,AAA Batteries (4-pack),3,2.99,12/14/19 10:45,"744 13th St, Dallas, TX 75001" +314598,USB-C Charging Cable,1,11.95,12/29/19 00:57,"786 12th St, Boston, MA 02215" +314599,Flatscreen TV,1,300,12/22/19 19:27,"345 West St, Atlanta, GA 30301" +314600,34in Ultrawide Monitor,1,379.99,12/08/19 17:52,"386 Cedar St, Austin, TX 73301" +314600,USB-C Charging Cable,1,11.95,12/08/19 17:52,"386 Cedar St, Austin, TX 73301" +314601,Bose SoundSport Headphones,1,99.99,12/05/19 13:51,"319 North St, Atlanta, GA 30301" +314602,27in 4K Gaming Monitor,1,389.99,12/09/19 20:24,"303 Willow St, Los Angeles, CA 90001" +314603,27in FHD Monitor,1,149.99,12/08/19 23:00,"775 Walnut St, San Francisco, CA 94016" +314604,Google Phone,1,600,12/22/19 23:45,"388 Main St, Dallas, TX 75001" +314605,USB-C Charging Cable,1,11.95,12/02/19 10:36,"503 Willow St, New York City, NY 10001" +314606,Wired Headphones,1,11.99,12/25/19 17:03,"336 Forest St, Boston, MA 02215" +314607,AA Batteries (4-pack),1,3.84,12/12/19 18:03,"815 Jackson St, San Francisco, CA 94016" +314608,Bose SoundSport Headphones,1,99.99,12/13/19 01:28,"102 Cedar St, Los Angeles, CA 90001" +314609,iPhone,1,700,12/20/19 12:20,"200 North St, San Francisco, CA 94016" +314610,AA Batteries (4-pack),1,3.84,12/05/19 09:22,"860 Lake St, Boston, MA 02215" +314611,20in Monitor,1,109.99,12/08/19 23:18,"613 Lake St, New York City, NY 10001" +314612,27in 4K Gaming Monitor,1,389.99,12/10/19 10:54,"963 2nd St, Los Angeles, CA 90001" +314613,USB-C Charging Cable,1,11.95,12/20/19 21:41,"498 13th St, Seattle, WA 98101" +314614,AAA Batteries (4-pack),2,2.99,12/19/19 19:44,"673 9th St, San Francisco, CA 94016" +314615,AA Batteries (4-pack),3,3.84,12/14/19 19:12,"237 Hickory St, Portland, OR 97035" +314616,Wired Headphones,1,11.99,12/17/19 15:12,"608 6th St, New York City, NY 10001" +314617,Lightning Charging Cable,1,14.95,12/04/19 01:30,"96 Dogwood St, San Francisco, CA 94016" +314618,AAA Batteries (4-pack),1,2.99,12/23/19 19:13,"473 Chestnut St, Dallas, TX 75001" +314619,AAA Batteries (4-pack),1,2.99,12/25/19 14:38,"539 Lakeview St, Atlanta, GA 30301" +314620,Flatscreen TV,1,300,12/14/19 13:08,"461 Lake St, Dallas, TX 75001" +314621,Lightning Charging Cable,1,14.95,12/17/19 21:17,"186 12th St, Portland, OR 97035" +314622,34in Ultrawide Monitor,1,379.99,12/13/19 20:39,"118 14th St, Dallas, TX 75001" +314623,USB-C Charging Cable,1,11.95,12/14/19 18:00,"432 Johnson St, Boston, MA 02215" +314624,Wired Headphones,1,11.99,12/27/19 13:50,"756 Maple St, Los Angeles, CA 90001" +314625,LG Washing Machine,1,600.0,12/16/19 18:29,"48 2nd St, San Francisco, CA 94016" +314626,AAA Batteries (4-pack),2,2.99,12/15/19 19:47,"687 Forest St, Dallas, TX 75001" +314627,LG Washing Machine,1,600.0,12/20/19 12:19,"963 Lake St, San Francisco, CA 94016" +314628,Apple Airpods Headphones,1,150,12/31/19 20:42,"293 Madison St, Los Angeles, CA 90001" +314629,Apple Airpods Headphones,1,150,12/21/19 13:10,"459 Cherry St, San Francisco, CA 94016" +314630,USB-C Charging Cable,1,11.95,12/12/19 22:47,"268 Elm St, New York City, NY 10001" +314631,iPhone,1,700,12/15/19 20:58,"600 Walnut St, San Francisco, CA 94016" +314632,Bose SoundSport Headphones,1,99.99,12/14/19 14:22,"464 Chestnut St, New York City, NY 10001" +314633,20in Monitor,1,109.99,12/08/19 10:41,"902 12th St, San Francisco, CA 94016" +314634,Apple Airpods Headphones,1,150,12/24/19 07:50,"708 Pine St, Boston, MA 02215" +314635,AAA Batteries (4-pack),2,2.99,12/20/19 08:32,"418 West St, Seattle, WA 98101" +314636,USB-C Charging Cable,1,11.95,12/16/19 15:31,"298 Pine St, Austin, TX 73301" +314637,Wired Headphones,1,11.99,12/24/19 13:11,"654 Meadow St, New York City, NY 10001" +314638,AA Batteries (4-pack),1,3.84,12/25/19 19:08,"550 Lincoln St, New York City, NY 10001" +314639,AA Batteries (4-pack),1,3.84,12/10/19 15:20,"905 Ridge St, New York City, NY 10001" +314640,iPhone,1,700,12/17/19 15:35,"444 Pine St, Portland, OR 97035" +314640,Lightning Charging Cable,1,14.95,12/17/19 15:35,"444 Pine St, Portland, OR 97035" +314641,AA Batteries (4-pack),2,3.84,12/26/19 21:23,"49 2nd St, Portland, ME 04101" +314642,ThinkPad Laptop,1,999.99,12/01/19 11:47,"687 Ridge St, Dallas, TX 75001" +314643,USB-C Charging Cable,1,11.95,12/25/19 21:52,"753 Wilson St, Portland, ME 04101" +314644,AAA Batteries (4-pack),2,2.99,12/02/19 12:07,"998 Jefferson St, San Francisco, CA 94016" +314645,AA Batteries (4-pack),1,3.84,12/01/19 08:55,"988 West St, San Francisco, CA 94016" +314646,Apple Airpods Headphones,1,150,12/19/19 10:41,"637 Lakeview St, New York City, NY 10001" +314647,Lightning Charging Cable,1,14.95,12/29/19 22:25,"430 8th St, New York City, NY 10001" +314648,Apple Airpods Headphones,1,150,12/13/19 20:04,"756 Park St, Los Angeles, CA 90001" +314649,LG Dryer,1,600.0,12/23/19 11:04,"685 Jefferson St, Los Angeles, CA 90001" +314650,Bose SoundSport Headphones,1,99.99,12/07/19 17:55,"185 14th St, Los Angeles, CA 90001" +314651,AA Batteries (4-pack),1,3.84,12/01/19 13:16,"715 Maple St, New York City, NY 10001" +314652,AAA Batteries (4-pack),1,2.99,12/23/19 18:07,"562 Willow St, San Francisco, CA 94016" +314653,20in Monitor,1,109.99,12/15/19 16:28,"319 Madison St, Los Angeles, CA 90001" +314654,AAA Batteries (4-pack),1,2.99,12/26/19 09:53,"590 Maple St, New York City, NY 10001" +314655,Wired Headphones,1,11.99,12/26/19 07:11,"392 North St, Boston, MA 02215" +314656,Apple Airpods Headphones,1,150,12/26/19 12:57,"46 Hill St, Boston, MA 02215" +314657,USB-C Charging Cable,1,11.95,12/15/19 11:12,"744 North St, Dallas, TX 75001" +314658,AAA Batteries (4-pack),1,2.99,12/26/19 14:50,"726 Lincoln St, Dallas, TX 75001" +314659,ThinkPad Laptop,1,999.99,12/09/19 06:26,"287 4th St, Los Angeles, CA 90001" +314660,Lightning Charging Cable,1,14.95,12/09/19 17:55,"714 Park St, San Francisco, CA 94016" +314661,Lightning Charging Cable,1,14.95,12/07/19 21:07,"991 Highland St, New York City, NY 10001" +314662,Macbook Pro Laptop,1,1700,12/10/19 17:39,"322 Johnson St, Los Angeles, CA 90001" +314663,AA Batteries (4-pack),1,3.84,12/12/19 13:47,"949 Ridge St, Dallas, TX 75001" +314664,27in 4K Gaming Monitor,1,389.99,12/14/19 13:38,"147 West St, Seattle, WA 98101" +314665,Flatscreen TV,1,300,12/05/19 21:29,"761 Jackson St, San Francisco, CA 94016" +314666,AAA Batteries (4-pack),1,2.99,12/03/19 02:48,"790 Sunset St, Boston, MA 02215" +314667,Bose SoundSport Headphones,1,99.99,12/17/19 23:45,"172 Elm St, New York City, NY 10001" +314668,iPhone,1,700,12/22/19 17:13,"984 12th St, Atlanta, GA 30301" +314669,AA Batteries (4-pack),1,3.84,12/29/19 23:45,"47 Lake St, San Francisco, CA 94016" +,,,,, +314670,Lightning Charging Cable,1,14.95,12/10/19 16:31,"468 Main St, Atlanta, GA 30301" +314671,Wired Headphones,1,11.99,12/30/19 11:37,"292 Highland St, Dallas, TX 75001" +314672,AA Batteries (4-pack),1,3.84,12/11/19 20:53,"602 Church St, Portland, OR 97035" +314673,USB-C Charging Cable,1,11.95,12/23/19 02:40,"468 7th St, San Francisco, CA 94016" +314674,Lightning Charging Cable,1,14.95,12/22/19 22:24,"151 Hickory St, Portland, ME 04101" +314675,Lightning Charging Cable,1,14.95,12/04/19 20:03,"305 Chestnut St, New York City, NY 10001" +314676,AAA Batteries (4-pack),1,2.99,12/10/19 20:14,"740 Johnson St, San Francisco, CA 94016" +314677,USB-C Charging Cable,1,11.95,12/30/19 12:12,"439 7th St, Dallas, TX 75001" +314678,Google Phone,1,600,12/13/19 16:01,"560 Adams St, Los Angeles, CA 90001" +314678,Wired Headphones,1,11.99,12/13/19 16:01,"560 Adams St, Los Angeles, CA 90001" +314679,27in FHD Monitor,1,149.99,12/23/19 21:20,"852 2nd St, San Francisco, CA 94016" +314680,AA Batteries (4-pack),2,3.84,12/23/19 18:07,"488 North St, Dallas, TX 75001" +314681,Bose SoundSport Headphones,1,99.99,12/29/19 18:54,"646 13th St, Los Angeles, CA 90001" +314682,Apple Airpods Headphones,1,150,12/24/19 12:02,"715 7th St, Dallas, TX 75001" +314683,Bose SoundSport Headphones,1,99.99,12/27/19 21:37,"924 Spruce St, New York City, NY 10001" +314684,Google Phone,1,600,12/06/19 14:52,"53 Lakeview St, New York City, NY 10001" +314685,Apple Airpods Headphones,1,150,12/25/19 23:31,"568 Hill St, San Francisco, CA 94016" +314686,AA Batteries (4-pack),1,3.84,12/28/19 21:11,"343 Lake St, Seattle, WA 98101" +314687,AAA Batteries (4-pack),1,2.99,12/26/19 17:06,"890 14th St, San Francisco, CA 94016" +314688,AA Batteries (4-pack),1,3.84,12/05/19 13:42,"321 6th St, New York City, NY 10001" +314689,AA Batteries (4-pack),1,3.84,12/01/19 10:58,"813 Forest St, Los Angeles, CA 90001" +314690,Wired Headphones,1,11.99,12/18/19 13:57,"12 Ridge St, Atlanta, GA 30301" +314691,Apple Airpods Headphones,1,150,12/06/19 06:13,"566 Wilson St, New York City, NY 10001" +314692,AA Batteries (4-pack),3,3.84,12/23/19 11:16,"726 Spruce St, Atlanta, GA 30301" +314693,34in Ultrawide Monitor,1,379.99,12/12/19 14:18,"715 Jackson St, Atlanta, GA 30301" +314694,Wired Headphones,1,11.99,12/05/19 09:44,"454 Cedar St, San Francisco, CA 94016" +314695,AAA Batteries (4-pack),2,2.99,12/30/19 14:06,"746 Highland St, San Francisco, CA 94016" +314696,Wired Headphones,1,11.99,12/11/19 13:49,"942 Park St, New York City, NY 10001" +314697,AAA Batteries (4-pack),1,2.99,12/15/19 10:24,"259 Cedar St, San Francisco, CA 94016" +314698,Bose SoundSport Headphones,1,99.99,12/11/19 19:37,"659 Chestnut St, Atlanta, GA 30301" +314699,ThinkPad Laptop,1,999.99,12/31/19 18:58,"399 Jefferson St, Los Angeles, CA 90001" +314700,Flatscreen TV,1,300,12/09/19 18:41,"206 Dogwood St, Los Angeles, CA 90001" +314701,AA Batteries (4-pack),1,3.84,12/18/19 11:39,"940 8th St, San Francisco, CA 94016" +314702,34in Ultrawide Monitor,1,379.99,12/20/19 11:10,"593 Maple St, Boston, MA 02215" +314703,ThinkPad Laptop,1,999.99,12/05/19 12:16,"46 Wilson St, San Francisco, CA 94016" +314704,Apple Airpods Headphones,1,150,12/11/19 10:44,"40 9th St, Boston, MA 02215" +314705,AAA Batteries (4-pack),1,2.99,12/10/19 10:08,"947 Lakeview St, Atlanta, GA 30301" +314706,AA Batteries (4-pack),1,3.84,12/19/19 23:07,"511 2nd St, San Francisco, CA 94016" +314707,Wired Headphones,1,11.99,12/10/19 22:46,"820 Willow St, Austin, TX 73301" +314708,Vareebadd Phone,1,400,12/27/19 14:38,"270 Highland St, Seattle, WA 98101" +314708,USB-C Charging Cable,1,11.95,12/27/19 14:38,"270 Highland St, Seattle, WA 98101" +314709,Lightning Charging Cable,1,14.95,12/12/19 10:40,"995 Cherry St, Seattle, WA 98101" +314710,Macbook Pro Laptop,1,1700,12/17/19 12:47,"804 Lincoln St, Boston, MA 02215" +314711,Bose SoundSport Headphones,1,99.99,12/18/19 17:58,"45 Hickory St, San Francisco, CA 94016" +314712,Bose SoundSport Headphones,1,99.99,12/03/19 23:09,"5 Madison St, Atlanta, GA 30301" +314713,Google Phone,1,600,12/23/19 16:01,"994 Chestnut St, Portland, ME 04101" +314713,USB-C Charging Cable,1,11.95,12/23/19 16:01,"994 Chestnut St, Portland, ME 04101" +314714,Vareebadd Phone,1,400,12/05/19 18:32,"895 Jackson St, San Francisco, CA 94016" +314715,USB-C Charging Cable,1,11.95,12/15/19 10:02,"350 Meadow St, Atlanta, GA 30301" +314716,27in 4K Gaming Monitor,1,389.99,12/30/19 22:02,"416 Lincoln St, San Francisco, CA 94016" +314717,AAA Batteries (4-pack),2,2.99,12/31/19 18:01,"155 2nd St, San Francisco, CA 94016" +314718,27in FHD Monitor,1,149.99,12/21/19 20:08,"560 13th St, Los Angeles, CA 90001" +314719,USB-C Charging Cable,1,11.95,12/19/19 10:27,"850 Main St, San Francisco, CA 94016" +314720,AAA Batteries (4-pack),1,2.99,12/08/19 10:10,"745 6th St, Boston, MA 02215" +314721,AAA Batteries (4-pack),1,2.99,12/10/19 00:01,"216 Johnson St, Seattle, WA 98101" +314722,Bose SoundSport Headphones,1,99.99,12/28/19 12:11,"561 Chestnut St, New York City, NY 10001" +314723,AAA Batteries (4-pack),1,2.99,12/07/19 18:49,"460 Meadow St, Dallas, TX 75001" +314724,USB-C Charging Cable,1,11.95,12/08/19 14:30,"147 Hill St, Seattle, WA 98101" +314725,Apple Airpods Headphones,1,150,12/12/19 17:35,"351 5th St, San Francisco, CA 94016" +314726,AAA Batteries (4-pack),2,2.99,12/05/19 12:14,"217 Adams St, San Francisco, CA 94016" +314727,USB-C Charging Cable,1,11.95,12/02/19 15:30,"973 Jackson St, Boston, MA 02215" +314728,34in Ultrawide Monitor,1,379.99,12/11/19 01:07,"143 Adams St, Atlanta, GA 30301" +314729,iPhone,1,700,12/05/19 11:21,"586 Elm St, Portland, OR 97035" +314730,Lightning Charging Cable,2,14.95,12/25/19 18:02,"748 Dogwood St, New York City, NY 10001" +314731,Wired Headphones,1,11.99,12/24/19 10:12,"602 Madison St, Dallas, TX 75001" +314732,Wired Headphones,1,11.99,12/20/19 12:49,"865 1st St, Boston, MA 02215" +314733,Bose SoundSport Headphones,1,99.99,12/21/19 16:27,"793 Lake St, Austin, TX 73301" +314734,Google Phone,1,600,12/05/19 10:44,"212 Park St, San Francisco, CA 94016" +314735,USB-C Charging Cable,1,11.95,12/15/19 15:54,"517 Lake St, San Francisco, CA 94016" +314736,AAA Batteries (4-pack),2,2.99,12/13/19 01:39,"125 Adams St, New York City, NY 10001" +314737,USB-C Charging Cable,1,11.95,12/24/19 16:05,"96 Madison St, Portland, OR 97035" +314738,AAA Batteries (4-pack),1,2.99,12/30/19 18:48,"434 Elm St, Atlanta, GA 30301" +314739,Apple Airpods Headphones,1,150,12/12/19 06:50,"545 Wilson St, Boston, MA 02215" +314740,USB-C Charging Cable,1,11.95,12/28/19 21:51,"722 9th St, Seattle, WA 98101" +314741,AA Batteries (4-pack),1,3.84,12/22/19 12:13,"544 2nd St, Atlanta, GA 30301" +314742,USB-C Charging Cable,1,11.95,12/20/19 22:52,"274 Adams St, Dallas, TX 75001" +314743,Bose SoundSport Headphones,1,99.99,12/12/19 17:29,"627 Hill St, Los Angeles, CA 90001" +314744,Lightning Charging Cable,1,14.95,12/31/19 16:33,"252 Willow St, San Francisco, CA 94016" +314745,Bose SoundSport Headphones,1,99.99,12/17/19 21:12,"521 8th St, Los Angeles, CA 90001" +314746,AAA Batteries (4-pack),2,2.99,12/24/19 22:38,"842 Highland St, Dallas, TX 75001" +314747,AA Batteries (4-pack),2,3.84,12/21/19 08:20,"657 Maple St, San Francisco, CA 94016" +314748,Apple Airpods Headphones,1,150,12/30/19 10:31,"144 Washington St, Los Angeles, CA 90001" +314749,AA Batteries (4-pack),1,3.84,12/09/19 10:04,"997 Willow St, Austin, TX 73301" +314750,Apple Airpods Headphones,1,150,12/09/19 17:26,"536 Forest St, Austin, TX 73301" +314751,AAA Batteries (4-pack),1,2.99,12/29/19 13:05,"474 Madison St, New York City, NY 10001" +314752,27in 4K Gaming Monitor,2,389.99,12/31/19 12:18,"985 12th St, Portland, ME 04101" +314753,iPhone,1,700,12/15/19 16:47,"356 Willow St, Los Angeles, CA 90001" +314754,Bose SoundSport Headphones,1,99.99,12/24/19 14:27,"121 Jackson St, Boston, MA 02215" +314755,27in 4K Gaming Monitor,1,389.99,12/14/19 11:29,"944 Maple St, San Francisco, CA 94016" +314756,ThinkPad Laptop,1,999.99,12/25/19 10:56,"703 South St, Atlanta, GA 30301" +314757,27in FHD Monitor,1,149.99,12/24/19 18:14,"909 Pine St, New York City, NY 10001" +314758,Flatscreen TV,1,300,12/31/19 20:27,"586 Lincoln St, Seattle, WA 98101" +314759,AAA Batteries (4-pack),1,2.99,12/28/19 17:38,"172 Maple St, Los Angeles, CA 90001" +314760,Lightning Charging Cable,1,14.95,12/25/19 10:51,"248 Forest St, Seattle, WA 98101" +314761,Wired Headphones,1,11.99,12/05/19 10:57,"700 River St, Boston, MA 02215" +314762,Apple Airpods Headphones,1,150,12/26/19 07:31,"126 Dogwood St, San Francisco, CA 94016" +314763,AAA Batteries (4-pack),1,2.99,12/24/19 14:51,"501 Dogwood St, Dallas, TX 75001" +314764,Macbook Pro Laptop,1,1700,12/09/19 15:15,"120 Meadow St, Los Angeles, CA 90001" +314765,AA Batteries (4-pack),2,3.84,12/07/19 17:15,"553 Spruce St, Atlanta, GA 30301" +314766,Wired Headphones,1,11.99,12/24/19 10:31,"819 Maple St, New York City, NY 10001" +314767,20in Monitor,1,109.99,12/06/19 22:15,"322 5th St, Portland, ME 04101" +314768,Lightning Charging Cable,1,14.95,12/25/19 15:25,"577 Johnson St, Seattle, WA 98101" +314769,Wired Headphones,1,11.99,12/13/19 19:27,"189 Hill St, San Francisco, CA 94016" +314770,iPhone,1,700,12/14/19 20:33,"84 Cherry St, Atlanta, GA 30301" +314770,Apple Airpods Headphones,1,150,12/14/19 20:33,"84 Cherry St, Atlanta, GA 30301" +314771,Apple Airpods Headphones,1,150,12/31/19 16:51,"779 2nd St, Portland, OR 97035" +314772,Google Phone,1,600,12/29/19 09:11,"922 8th St, Portland, OR 97035" +314772,USB-C Charging Cable,1,11.95,12/29/19 09:11,"922 8th St, Portland, OR 97035" +314772,Wired Headphones,1,11.99,12/29/19 09:11,"922 8th St, Portland, OR 97035" +314773,iPhone,1,700,12/30/19 21:11,"593 Wilson St, Seattle, WA 98101" +314773,Wired Headphones,1,11.99,12/30/19 21:11,"593 Wilson St, Seattle, WA 98101" +314774,Bose SoundSport Headphones,1,99.99,12/31/19 14:19,"88 Walnut St, Atlanta, GA 30301" +314775,USB-C Charging Cable,1,11.95,12/30/19 11:53,"442 Forest St, San Francisco, CA 94016" +314776,Vareebadd Phone,1,400,12/24/19 13:21,"339 9th St, Seattle, WA 98101" +314777,20in Monitor,1,109.99,12/12/19 14:47,"190 4th St, San Francisco, CA 94016" +314778,Lightning Charging Cable,1,14.95,12/06/19 22:37,"620 2nd St, Boston, MA 02215" +314779,27in FHD Monitor,1,149.99,12/08/19 07:53,"293 Highland St, Boston, MA 02215" +314780,Google Phone,1,600,12/26/19 22:24,"379 North St, Los Angeles, CA 90001" +314781,Lightning Charging Cable,1,14.95,12/18/19 14:45,"121 Adams St, San Francisco, CA 94016" +314782,34in Ultrawide Monitor,1,379.99,12/26/19 18:03,"481 11th St, Dallas, TX 75001" +314782,Wired Headphones,1,11.99,12/26/19 18:03,"481 11th St, Dallas, TX 75001" +314783,iPhone,1,700,12/27/19 22:27,"682 Lakeview St, San Francisco, CA 94016" +314784,Flatscreen TV,1,300,12/01/19 17:49,"294 Highland St, Atlanta, GA 30301" +314785,Lightning Charging Cable,1,14.95,12/28/19 12:26,"506 12th St, Portland, OR 97035" +314786,ThinkPad Laptop,1,999.99,12/17/19 18:48,"525 2nd St, Austin, TX 73301" +314787,27in 4K Gaming Monitor,1,389.99,12/02/19 07:14,"487 Church St, Atlanta, GA 30301" +314788,Flatscreen TV,1,300,12/04/19 14:28,"30 Highland St, Los Angeles, CA 90001" +314789,Bose SoundSport Headphones,1,99.99,12/07/19 16:25,"686 Park St, San Francisco, CA 94016" +314790,34in Ultrawide Monitor,1,379.99,12/24/19 10:38,"323 Hill St, Boston, MA 02215" +314791,AA Batteries (4-pack),1,3.84,12/30/19 10:43,"65 13th St, Boston, MA 02215" +314792,Bose SoundSport Headphones,1,99.99,12/08/19 16:02,"746 Hill St, Los Angeles, CA 90001" +314793,Bose SoundSport Headphones,1,99.99,12/10/19 12:53,"592 13th St, Seattle, WA 98101" +314794,USB-C Charging Cable,1,11.95,12/03/19 03:21,"509 4th St, New York City, NY 10001" +314795,Apple Airpods Headphones,1,150,12/01/19 17:36,"644 Lakeview St, New York City, NY 10001" +314796,Wired Headphones,1,11.99,12/11/19 09:57,"238 Jackson St, San Francisco, CA 94016" +314797,Bose SoundSport Headphones,1,99.99,12/28/19 01:35,"873 Forest St, Boston, MA 02215" +314798,Vareebadd Phone,1,400,12/19/19 09:32,"867 11th St, Dallas, TX 75001" +314799,AAA Batteries (4-pack),3,2.99,12/20/19 17:32,"509 2nd St, Seattle, WA 98101" +314800,AAA Batteries (4-pack),1,2.99,12/10/19 09:48,"748 Dogwood St, Boston, MA 02215" +314801,Lightning Charging Cable,1,14.95,12/30/19 08:30,"504 1st St, Dallas, TX 75001" +314802,iPhone,1,700,12/23/19 15:59,"885 Cedar St, San Francisco, CA 94016" +314803,27in 4K Gaming Monitor,1,389.99,12/09/19 18:38,"249 12th St, San Francisco, CA 94016" +314804,34in Ultrawide Monitor,1,379.99,12/24/19 12:06,"589 1st St, Boston, MA 02215" +314805,AAA Batteries (4-pack),1,2.99,12/29/19 13:42,"436 North St, Boston, MA 02215" +314806,AAA Batteries (4-pack),1,2.99,12/04/19 20:06,"208 Madison St, Atlanta, GA 30301" +314807,Lightning Charging Cable,1,14.95,12/01/19 15:11,"898 Willow St, Seattle, WA 98101" +314808,27in FHD Monitor,1,149.99,12/05/19 19:35,"418 11th St, Boston, MA 02215" +314809,Flatscreen TV,1,300,12/16/19 12:28,"523 Johnson St, Los Angeles, CA 90001" +314810,Wired Headphones,1,11.99,12/24/19 18:08,"113 8th St, Atlanta, GA 30301" +314811,AAA Batteries (4-pack),1,2.99,12/25/19 09:43,"27 Madison St, New York City, NY 10001" +314812,27in 4K Gaming Monitor,1,389.99,12/13/19 14:52,"937 Ridge St, New York City, NY 10001" +314813,USB-C Charging Cable,1,11.95,12/03/19 18:55,"243 West St, Boston, MA 02215" +314814,Lightning Charging Cable,1,14.95,12/10/19 11:38,"100 4th St, Boston, MA 02215" +314815,USB-C Charging Cable,2,11.95,12/03/19 11:17,"993 Cedar St, Seattle, WA 98101" +314816,AA Batteries (4-pack),1,3.84,12/05/19 12:27,"195 North St, Seattle, WA 98101" +314817,Lightning Charging Cable,1,14.95,12/25/19 12:12,"243 Lincoln St, Seattle, WA 98101" +314818,Lightning Charging Cable,1,14.95,12/14/19 14:23,"131 Maple St, New York City, NY 10001" +314819,Bose SoundSport Headphones,1,99.99,12/13/19 19:59,"433 Meadow St, Boston, MA 02215" +314819,USB-C Charging Cable,1,11.95,12/13/19 19:59,"433 Meadow St, Boston, MA 02215" +314820,Lightning Charging Cable,1,14.95,12/02/19 18:19,"850 Lincoln St, Portland, OR 97035" +314821,USB-C Charging Cable,1,11.95,12/07/19 18:07,"221 Pine St, Los Angeles, CA 90001" +314822,27in 4K Gaming Monitor,1,389.99,12/01/19 23:45,"836 Lincoln St, Los Angeles, CA 90001" +314823,Lightning Charging Cable,2,14.95,12/17/19 17:56,"142 Maple St, Boston, MA 02215" +314824,AAA Batteries (4-pack),1,2.99,12/06/19 09:42,"733 Highland St, New York City, NY 10001" +314825,USB-C Charging Cable,2,11.95,12/24/19 21:22,"493 Cedar St, Austin, TX 73301" +314826,AA Batteries (4-pack),1,3.84,12/10/19 21:51,"543 Walnut St, Atlanta, GA 30301" +314827,Lightning Charging Cable,1,14.95,12/24/19 17:19,"675 2nd St, San Francisco, CA 94016" +314828,27in 4K Gaming Monitor,1,389.99,12/27/19 11:01,"340 Hickory St, Austin, TX 73301" +314829,Flatscreen TV,1,300,12/19/19 20:09,"95 Ridge St, Dallas, TX 75001" +314830,USB-C Charging Cable,1,11.95,12/11/19 05:13,"416 Spruce St, Portland, OR 97035" +314831,Macbook Pro Laptop,1,1700,12/26/19 19:37,"403 2nd St, Portland, OR 97035" +314832,Wired Headphones,1,11.99,12/23/19 05:01,"362 Willow St, San Francisco, CA 94016" +314833,Lightning Charging Cable,1,14.95,12/11/19 10:38,"49 11th St, New York City, NY 10001" +314834,AA Batteries (4-pack),1,3.84,12/15/19 19:49,"393 13th St, Los Angeles, CA 90001" +314835,AA Batteries (4-pack),1,3.84,12/14/19 22:20,"824 7th St, San Francisco, CA 94016" +314836,AA Batteries (4-pack),1,3.84,12/24/19 20:13,"958 Jackson St, San Francisco, CA 94016" +314837,27in FHD Monitor,1,149.99,12/05/19 21:37,"414 Lakeview St, Seattle, WA 98101" +314838,Google Phone,1,600,12/16/19 08:11,"829 Lake St, Los Angeles, CA 90001" +314839,27in FHD Monitor,1,149.99,12/17/19 12:12,"922 11th St, Boston, MA 02215" +314840,Apple Airpods Headphones,1,150,12/24/19 16:40,"278 Forest St, Seattle, WA 98101" +314841,Wired Headphones,1,11.99,12/08/19 12:24,"946 West St, Boston, MA 02215" +314842,Bose SoundSport Headphones,1,99.99,12/16/19 13:18,"744 Pine St, San Francisco, CA 94016" +314843,USB-C Charging Cable,2,11.95,12/15/19 20:22,"973 13th St, New York City, NY 10001" +314844,USB-C Charging Cable,1,11.95,12/09/19 18:08,"843 Elm St, Dallas, TX 75001" +314845,Bose SoundSport Headphones,1,99.99,12/10/19 12:45,"109 Pine St, Boston, MA 02215" +314846,Apple Airpods Headphones,1,150,01/01/20 00:48,"530 Washington St, Boston, MA 02215" +314847,27in FHD Monitor,1,149.99,12/11/19 13:28,"210 West St, San Francisco, CA 94016" +314848,27in 4K Gaming Monitor,1,389.99,12/29/19 23:55,"648 Willow St, Los Angeles, CA 90001" +314849,Lightning Charging Cable,2,14.95,12/11/19 14:37,"415 Cherry St, New York City, NY 10001" +314850,AA Batteries (4-pack),1,3.84,12/19/19 11:18,"425 River St, Atlanta, GA 30301" +314851,Apple Airpods Headphones,1,150,12/09/19 20:48,"393 Washington St, Los Angeles, CA 90001" +314852,Wired Headphones,1,11.99,12/13/19 18:09,"344 5th St, Los Angeles, CA 90001" +314853,USB-C Charging Cable,1,11.95,12/13/19 19:49,"180 Maple St, Los Angeles, CA 90001" +314853,AA Batteries (4-pack),1,3.84,12/13/19 19:49,"180 Maple St, Los Angeles, CA 90001" +314854,Wired Headphones,1,11.99,12/01/19 20:03,"662 Madison St, Boston, MA 02215" +314855,AAA Batteries (4-pack),2,2.99,12/04/19 18:59,"35 10th St, San Francisco, CA 94016" +314856,AA Batteries (4-pack),1,3.84,12/01/19 17:58,"758 Adams St, Boston, MA 02215" +314857,AA Batteries (4-pack),1,3.84,12/04/19 12:59,"933 Meadow St, Portland, OR 97035" +314858,USB-C Charging Cable,1,11.95,12/01/19 16:42,"445 8th St, Boston, MA 02215" +314859,Wired Headphones,1,11.99,12/21/19 13:47,"532 Willow St, San Francisco, CA 94016" +314860,Lightning Charging Cable,1,14.95,12/04/19 16:54,"36 Meadow St, Seattle, WA 98101" +314861,Wired Headphones,1,11.99,12/17/19 16:02,"255 Highland St, San Francisco, CA 94016" +314862,Lightning Charging Cable,1,14.95,12/25/19 16:10,"995 6th St, San Francisco, CA 94016" +314863,iPhone,1,700,12/10/19 19:11,"688 Sunset St, San Francisco, CA 94016" +314863,Wired Headphones,1,11.99,12/10/19 19:11,"688 Sunset St, San Francisco, CA 94016" +314864,USB-C Charging Cable,1,11.95,12/06/19 13:22,"86 11th St, Dallas, TX 75001" +314865,Vareebadd Phone,1,400,12/27/19 16:40,"244 Maple St, Seattle, WA 98101" +314866,Apple Airpods Headphones,1,150,12/20/19 21:23,"585 Meadow St, Dallas, TX 75001" +314867,34in Ultrawide Monitor,1,379.99,12/24/19 20:02,"770 1st St, Austin, TX 73301" +314868,Wired Headphones,1,11.99,12/21/19 13:23,"69 Elm St, Austin, TX 73301" +314869,USB-C Charging Cable,1,11.95,12/30/19 14:04,"14 1st St, Atlanta, GA 30301" +314870,Apple Airpods Headphones,1,150,12/20/19 15:55,"631 Meadow St, New York City, NY 10001" +314871,34in Ultrawide Monitor,1,379.99,12/14/19 15:38,"754 Hill St, Boston, MA 02215" +314872,27in FHD Monitor,1,149.99,12/22/19 14:55,"9 Maple St, Seattle, WA 98101" +314873,AAA Batteries (4-pack),2,2.99,12/08/19 13:55,"948 7th St, Atlanta, GA 30301" +314874,AA Batteries (4-pack),1,3.84,12/26/19 11:01,"374 Pine St, Los Angeles, CA 90001" +314875,AA Batteries (4-pack),3,3.84,12/05/19 09:51,"498 Pine St, Los Angeles, CA 90001" +314876,27in FHD Monitor,1,149.99,12/20/19 23:28,"514 2nd St, San Francisco, CA 94016" +314877,LG Dryer,1,600.0,12/22/19 13:31,"105 Forest St, San Francisco, CA 94016" +314878,Wired Headphones,1,11.99,12/21/19 21:28,"345 Adams St, Seattle, WA 98101" +314879,Bose SoundSport Headphones,1,99.99,12/30/19 20:19,"560 Wilson St, New York City, NY 10001" +314880,Wired Headphones,1,11.99,12/24/19 17:54,"617 Maple St, San Francisco, CA 94016" +314881,Lightning Charging Cable,1,14.95,12/21/19 09:22,"577 Dogwood St, New York City, NY 10001" +314882,Apple Airpods Headphones,1,150,12/17/19 15:35,"244 Hill St, New York City, NY 10001" +314883,27in FHD Monitor,1,149.99,12/18/19 09:48,"484 13th St, Atlanta, GA 30301" +314884,27in 4K Gaming Monitor,1,389.99,12/09/19 05:44,"591 6th St, Atlanta, GA 30301" +314885,Google Phone,1,600,12/14/19 16:26,"937 West St, Atlanta, GA 30301" +314886,Wired Headphones,1,11.99,12/08/19 09:43,"241 Hickory St, Seattle, WA 98101" +314887,Wired Headphones,2,11.99,12/21/19 02:25,"586 Adams St, San Francisco, CA 94016" +314888,AAA Batteries (4-pack),1,2.99,12/05/19 20:21,"372 Lincoln St, Seattle, WA 98101" +314889,27in 4K Gaming Monitor,1,389.99,12/05/19 22:59,"378 Forest St, San Francisco, CA 94016" +314890,USB-C Charging Cable,1,11.95,12/09/19 13:42,"164 Ridge St, Boston, MA 02215" +314891,34in Ultrawide Monitor,1,379.99,12/11/19 22:37,"958 10th St, Portland, ME 04101" +314892,Bose SoundSport Headphones,1,99.99,12/10/19 22:22,"37 Walnut St, San Francisco, CA 94016" +314893,Bose SoundSport Headphones,1,99.99,12/17/19 22:29,"684 Chestnut St, Atlanta, GA 30301" +314894,Google Phone,1,600,12/02/19 23:26,"227 Chestnut St, Atlanta, GA 30301" +314895,Wired Headphones,1,11.99,12/20/19 15:22,"832 Pine St, San Francisco, CA 94016" +314896,AA Batteries (4-pack),1,3.84,12/12/19 19:35,"871 Adams St, Los Angeles, CA 90001" +314897,AA Batteries (4-pack),1,3.84,12/13/19 17:32,"150 Ridge St, Portland, ME 04101" +314898,ThinkPad Laptop,1,999.99,12/10/19 11:17,"722 Maple St, Dallas, TX 75001" +314899,Wired Headphones,1,11.99,12/07/19 15:40,"145 Highland St, Atlanta, GA 30301" +314900,USB-C Charging Cable,1,11.95,12/16/19 09:30,"790 4th St, Los Angeles, CA 90001" +314901,AA Batteries (4-pack),1,3.84,12/16/19 14:41,"446 Center St, San Francisco, CA 94016" +314902,USB-C Charging Cable,1,11.95,12/08/19 22:59,"186 Forest St, Portland, OR 97035" +314903,Apple Airpods Headphones,1,150,12/13/19 20:06,"570 Spruce St, San Francisco, CA 94016" +314904,USB-C Charging Cable,1,11.95,12/25/19 18:18,"679 Cedar St, Los Angeles, CA 90001" +314905,Lightning Charging Cable,1,14.95,12/20/19 01:27,"272 Hill St, San Francisco, CA 94016" +314906,AA Batteries (4-pack),1,3.84,12/09/19 09:59,"26 Walnut St, Seattle, WA 98101" +314907,AA Batteries (4-pack),1,3.84,12/31/19 08:41,"347 Church St, Austin, TX 73301" +314908,AA Batteries (4-pack),1,3.84,12/18/19 14:41,"318 South St, San Francisco, CA 94016" +314909,AAA Batteries (4-pack),4,2.99,12/16/19 16:54,"222 Elm St, Boston, MA 02215" +314910,USB-C Charging Cable,2,11.95,12/10/19 17:17,"759 Jefferson St, San Francisco, CA 94016" +314911,Bose SoundSport Headphones,1,99.99,12/01/19 23:22,"579 Willow St, New York City, NY 10001" +314912,Bose SoundSport Headphones,1,99.99,12/05/19 17:14,"485 Walnut St, New York City, NY 10001" +314913,AAA Batteries (4-pack),1,2.99,12/27/19 12:04,"616 8th St, Dallas, TX 75001" +314914,Wired Headphones,1,11.99,12/13/19 09:08,"965 9th St, Portland, OR 97035" +314915,AA Batteries (4-pack),2,3.84,12/22/19 08:58,"109 Pine St, San Francisco, CA 94016" +314916,Lightning Charging Cable,2,14.95,12/22/19 20:33,"705 Jackson St, San Francisco, CA 94016" +314917,Macbook Pro Laptop,1,1700,12/24/19 13:35,"833 Hickory St, Austin, TX 73301" +314918,Apple Airpods Headphones,1,150,12/19/19 17:22,"918 Jackson St, New York City, NY 10001" +314919,Lightning Charging Cable,1,14.95,12/17/19 18:09,"236 7th St, Boston, MA 02215" +314920,AA Batteries (4-pack),2,3.84,12/15/19 20:48,"13 Meadow St, Boston, MA 02215" +314921,Lightning Charging Cable,1,14.95,12/21/19 09:22,"322 Spruce St, Seattle, WA 98101" +314922,Lightning Charging Cable,1,14.95,12/09/19 06:46,"588 Elm St, Los Angeles, CA 90001" +314923,AA Batteries (4-pack),1,3.84,12/08/19 18:53,"714 Wilson St, Los Angeles, CA 90001" +314924,ThinkPad Laptop,1,999.99,12/29/19 13:47,"898 Hickory St, Dallas, TX 75001" +314925,Lightning Charging Cable,1,14.95,12/09/19 17:10,"521 8th St, San Francisco, CA 94016" +314926,AA Batteries (4-pack),1,3.84,12/29/19 09:55,"956 2nd St, Dallas, TX 75001" +314927,Wired Headphones,1,11.99,12/16/19 13:01,"471 12th St, Los Angeles, CA 90001" +314928,Bose SoundSport Headphones,1,99.99,12/14/19 17:21,"412 Lake St, Atlanta, GA 30301" +314929,AAA Batteries (4-pack),3,2.99,12/14/19 18:15,"230 Hill St, San Francisco, CA 94016" +314930,iPhone,1,700,12/23/19 13:04,"805 Pine St, Atlanta, GA 30301" +314931,Apple Airpods Headphones,1,150,12/01/19 16:27,"910 Dogwood St, Portland, OR 97035" +314932,20in Monitor,1,109.99,12/01/19 14:40,"848 Johnson St, Los Angeles, CA 90001" +314933,Bose SoundSport Headphones,1,99.99,12/18/19 22:18,"746 North St, San Francisco, CA 94016" +314934,AAA Batteries (4-pack),1,2.99,12/24/19 13:19,"132 10th St, Dallas, TX 75001" +314935,Wired Headphones,2,11.99,12/05/19 07:14,"396 10th St, Seattle, WA 98101" +314936,Lightning Charging Cable,1,14.95,12/10/19 12:41,"833 Walnut St, Los Angeles, CA 90001" +314937,Lightning Charging Cable,1,14.95,12/16/19 00:59,"77 Hickory St, Los Angeles, CA 90001" +314938,20in Monitor,1,109.99,12/14/19 20:07,"137 10th St, New York City, NY 10001" +314939,Flatscreen TV,1,300,12/18/19 09:17,"739 Jackson St, Portland, OR 97035" +314940,34in Ultrawide Monitor,1,379.99,12/29/19 12:10,"678 2nd St, San Francisco, CA 94016" +314941,27in FHD Monitor,1,149.99,12/18/19 17:55,"554 Dogwood St, Boston, MA 02215" +314942,27in 4K Gaming Monitor,1,389.99,12/24/19 19:53,"534 North St, San Francisco, CA 94016" +314942,Macbook Pro Laptop,1,1700,12/24/19 19:53,"534 North St, San Francisco, CA 94016" +314943,27in FHD Monitor,1,149.99,12/09/19 20:14,"988 Willow St, Los Angeles, CA 90001" +314944,USB-C Charging Cable,1,11.95,12/31/19 11:46,"744 Walnut St, Seattle, WA 98101" +314945,AAA Batteries (4-pack),2,2.99,12/27/19 00:29,"263 Highland St, Seattle, WA 98101" +314946,Wired Headphones,1,11.99,12/31/19 10:11,"63 Sunset St, San Francisco, CA 94016" +314947,Wired Headphones,1,11.99,12/17/19 06:56,"917 Center St, San Francisco, CA 94016" +314948,AAA Batteries (4-pack),1,2.99,12/25/19 20:47,"797 Pine St, Dallas, TX 75001" +314949,27in 4K Gaming Monitor,1,389.99,12/12/19 12:22,"794 5th St, Boston, MA 02215" +314950,Google Phone,1,600,12/13/19 11:08,"435 Spruce St, San Francisco, CA 94016" +314950,USB-C Charging Cable,1,11.95,12/13/19 11:08,"435 Spruce St, San Francisco, CA 94016" +314951,27in FHD Monitor,1,149.99,12/22/19 16:09,"674 South St, Atlanta, GA 30301" +314952,iPhone,1,700,12/09/19 21:06,"968 Cedar St, San Francisco, CA 94016" +314953,Flatscreen TV,1,300,12/13/19 11:03,"32 Walnut St, Seattle, WA 98101" +314954,Wired Headphones,1,11.99,12/06/19 19:39,"911 Dogwood St, San Francisco, CA 94016" +314955,iPhone,1,700,12/30/19 09:38,"408 Chestnut St, New York City, NY 10001" +314956,Macbook Pro Laptop,1,1700,12/12/19 19:15,"712 Madison St, San Francisco, CA 94016" +314957,AA Batteries (4-pack),1,3.84,12/06/19 10:01,"940 11th St, Los Angeles, CA 90001" +314958,USB-C Charging Cable,1,11.95,12/11/19 13:53,"20 1st St, San Francisco, CA 94016" +314959,Wired Headphones,1,11.99,12/31/19 14:32,"287 Lakeview St, Boston, MA 02215" +314960,Google Phone,1,600,12/01/19 08:17,"881 6th St, San Francisco, CA 94016" +314961,Bose SoundSport Headphones,1,99.99,12/18/19 15:52,"894 Lincoln St, San Francisco, CA 94016" +314962,AA Batteries (4-pack),3,3.84,01/01/20 00:26,"340 Lakeview St, New York City, NY 10001" +314963,27in 4K Gaming Monitor,1,389.99,12/19/19 20:43,"862 Lake St, New York City, NY 10001" +314964,AA Batteries (4-pack),1,3.84,12/03/19 16:33,"67 Hickory St, New York City, NY 10001" +314965,AAA Batteries (4-pack),2,2.99,12/20/19 23:53,"178 Chestnut St, Austin, TX 73301" +314966,USB-C Charging Cable,1,11.95,12/03/19 15:31,"853 Main St, Los Angeles, CA 90001" +314967,Macbook Pro Laptop,1,1700,12/23/19 21:47,"494 West St, Los Angeles, CA 90001" +314968,AA Batteries (4-pack),1,3.84,12/12/19 13:07,"932 Forest St, Dallas, TX 75001" +314969,AA Batteries (4-pack),1,3.84,12/31/19 12:30,"60 11th St, Austin, TX 73301" +314970,Bose SoundSport Headphones,1,99.99,12/05/19 01:08,"149 River St, San Francisco, CA 94016" +314971,iPhone,1,700,12/10/19 05:22,"415 2nd St, San Francisco, CA 94016" +314972,Lightning Charging Cable,1,14.95,12/06/19 10:08,"721 Cedar St, Los Angeles, CA 90001" +314973,Wired Headphones,1,11.99,12/04/19 19:16,"25 Madison St, New York City, NY 10001" +314974,Flatscreen TV,1,300,12/06/19 21:41,"821 Cherry St, San Francisco, CA 94016" +314975,AAA Batteries (4-pack),1,2.99,12/10/19 16:04,"545 North St, San Francisco, CA 94016" +314976,ThinkPad Laptop,1,999.99,12/02/19 09:39,"12 Meadow St, Boston, MA 02215" +314977,ThinkPad Laptop,1,999.99,12/24/19 10:40,"616 Spruce St, San Francisco, CA 94016" +314978,USB-C Charging Cable,1,11.95,12/13/19 17:24,"37 Hill St, Dallas, TX 75001" +314979,Bose SoundSport Headphones,1,99.99,12/28/19 10:54,"389 Spruce St, Los Angeles, CA 90001" +314980,ThinkPad Laptop,1,999.99,12/14/19 14:09,"243 14th St, San Francisco, CA 94016" +314981,Bose SoundSport Headphones,1,99.99,12/30/19 16:45,"706 Ridge St, New York City, NY 10001" +314982,USB-C Charging Cable,1,11.95,12/26/19 19:51,"258 10th St, San Francisco, CA 94016" +314983,AAA Batteries (4-pack),1,2.99,12/08/19 23:25,"938 Jefferson St, Boston, MA 02215" +314984,Lightning Charging Cable,2,14.95,12/19/19 17:13,"300 5th St, San Francisco, CA 94016" +314985,27in FHD Monitor,1,149.99,12/15/19 23:39,"643 1st St, New York City, NY 10001" +314986,Flatscreen TV,1,300,12/12/19 18:20,"994 11th St, Boston, MA 02215" +314987,Wired Headphones,1,11.99,12/03/19 19:56,"989 7th St, Austin, TX 73301" +314988,Apple Airpods Headphones,1,150,12/31/19 11:44,"762 12th St, Los Angeles, CA 90001" +314989,Lightning Charging Cable,1,14.95,12/25/19 13:08,"222 11th St, San Francisco, CA 94016" +314990,iPhone,1,700,12/11/19 07:56,"789 Walnut St, San Francisco, CA 94016" +314991,AAA Batteries (4-pack),1,2.99,12/29/19 00:17,"464 4th St, San Francisco, CA 94016" +314992,AAA Batteries (4-pack),1,2.99,12/19/19 19:57,"130 Cherry St, San Francisco, CA 94016" +314993,USB-C Charging Cable,1,11.95,12/06/19 09:55,"757 Jefferson St, San Francisco, CA 94016" +314994,Bose SoundSport Headphones,1,99.99,12/05/19 19:39,"897 Walnut St, San Francisco, CA 94016" +314995,Lightning Charging Cable,1,14.95,12/09/19 16:06,"308 12th St, Boston, MA 02215" +314996,27in 4K Gaming Monitor,1,389.99,12/25/19 22:14,"318 West St, Los Angeles, CA 90001" +314997,AA Batteries (4-pack),1,3.84,12/03/19 18:48,"566 4th St, Seattle, WA 98101" +314998,Lightning Charging Cable,1,14.95,12/02/19 09:38,"403 Meadow St, Los Angeles, CA 90001" +314999,Vareebadd Phone,1,400,12/02/19 12:56,"86 Hill St, New York City, NY 10001" +314999,Bose SoundSport Headphones,1,99.99,12/02/19 12:56,"86 Hill St, New York City, NY 10001" +315000,Wired Headphones,1,11.99,12/01/19 23:32,"957 River St, Portland, OR 97035" +315001,Wired Headphones,1,11.99,12/16/19 13:08,"943 Hickory St, Boston, MA 02215" +315002,Google Phone,1,600,12/28/19 11:08,"78 South St, Los Angeles, CA 90001" +315002,USB-C Charging Cable,1,11.95,12/28/19 11:08,"78 South St, Los Angeles, CA 90001" +315003,USB-C Charging Cable,1,11.95,12/27/19 16:07,"379 Madison St, Dallas, TX 75001" +315004,20in Monitor,1,109.99,12/28/19 03:26,"700 North St, Boston, MA 02215" +315005,AA Batteries (4-pack),1,3.84,12/30/19 20:35,"238 11th St, Atlanta, GA 30301" +315006,USB-C Charging Cable,1,11.95,12/08/19 06:41,"538 2nd St, Dallas, TX 75001" +315007,AAA Batteries (4-pack),1,2.99,12/24/19 09:34,"358 9th St, New York City, NY 10001" +315008,20in Monitor,1,109.99,12/18/19 18:44,"880 Main St, San Francisco, CA 94016" +315009,AAA Batteries (4-pack),2,2.99,12/06/19 13:05,"306 Church St, San Francisco, CA 94016" +315010,27in FHD Monitor,1,149.99,12/01/19 21:41,"214 11th St, San Francisco, CA 94016" +315011,Flatscreen TV,1,300,12/18/19 07:54,"688 Cherry St, San Francisco, CA 94016" +315012,AA Batteries (4-pack),2,3.84,12/05/19 08:53,"376 9th St, New York City, NY 10001" +315013,AA Batteries (4-pack),1,3.84,12/30/19 21:39,"375 Madison St, New York City, NY 10001" +315014,Google Phone,1,600,12/20/19 09:56,"10 Main St, Portland, OR 97035" +315014,Wired Headphones,1,11.99,12/20/19 09:56,"10 Main St, Portland, OR 97035" +315015,Wired Headphones,1,11.99,12/03/19 16:43,"932 5th St, Boston, MA 02215" +315016,Bose SoundSport Headphones,1,99.99,12/11/19 12:34,"217 West St, New York City, NY 10001" +315017,USB-C Charging Cable,1,11.95,12/02/19 19:30,"964 7th St, New York City, NY 10001" +315018,AAA Batteries (4-pack),4,2.99,12/28/19 01:55,"268 Walnut St, Los Angeles, CA 90001" +315019,AAA Batteries (4-pack),3,2.99,12/09/19 20:36,"466 Forest St, Portland, OR 97035" +315020,Bose SoundSport Headphones,1,99.99,12/31/19 20:16,"728 Madison St, San Francisco, CA 94016" +315021,USB-C Charging Cable,1,11.95,12/22/19 19:23,"702 Jackson St, Boston, MA 02215" +315022,USB-C Charging Cable,1,11.95,12/28/19 09:44,"52 2nd St, Austin, TX 73301" +315023,AA Batteries (4-pack),1,3.84,12/16/19 22:16,"912 Park St, Boston, MA 02215" +315024,AAA Batteries (4-pack),1,2.99,12/17/19 13:44,"902 Sunset St, San Francisco, CA 94016" +315025,Apple Airpods Headphones,1,150,12/16/19 09:59,"302 Willow St, Portland, OR 97035" +315026,Google Phone,1,600,12/08/19 18:44,"246 Highland St, San Francisco, CA 94016" +315026,Wired Headphones,1,11.99,12/08/19 18:44,"246 Highland St, San Francisco, CA 94016" +315027,34in Ultrawide Monitor,1,379.99,12/12/19 00:31,"271 Lakeview St, Los Angeles, CA 90001" +315028,AAA Batteries (4-pack),1,2.99,12/15/19 19:06,"658 Spruce St, New York City, NY 10001" +315029,USB-C Charging Cable,1,11.95,12/27/19 12:40,"295 Johnson St, New York City, NY 10001" +315030,AA Batteries (4-pack),1,3.84,12/20/19 13:30,"917 7th St, Los Angeles, CA 90001" +315031,AA Batteries (4-pack),1,3.84,12/12/19 12:11,"542 Madison St, Boston, MA 02215" +315032,iPhone,1,700,12/18/19 10:20,"447 Madison St, Dallas, TX 75001" +315033,Apple Airpods Headphones,1,150,12/05/19 02:20,"718 Highland St, San Francisco, CA 94016" +315034,Flatscreen TV,1,300,12/08/19 10:22,"509 Maple St, Seattle, WA 98101" +315035,AAA Batteries (4-pack),2,2.99,12/23/19 13:28,"207 Jackson St, Seattle, WA 98101" +315036,AA Batteries (4-pack),1,3.84,12/30/19 19:20,"77 Highland St, San Francisco, CA 94016" +315037,USB-C Charging Cable,1,11.95,12/05/19 17:55,"232 Johnson St, Austin, TX 73301" +315038,AAA Batteries (4-pack),1,2.99,12/12/19 20:18,"958 Maple St, New York City, NY 10001" +315038,AAA Batteries (4-pack),2,2.99,12/12/19 20:18,"958 Maple St, New York City, NY 10001" +315039,AAA Batteries (4-pack),1,2.99,12/17/19 16:56,"413 Lincoln St, San Francisco, CA 94016" +315040,USB-C Charging Cable,1,11.95,12/05/19 15:10,"902 9th St, Los Angeles, CA 90001" +315041,AA Batteries (4-pack),1,3.84,12/15/19 10:47,"50 Meadow St, San Francisco, CA 94016" +315042,AAA Batteries (4-pack),1,2.99,12/18/19 21:46,"959 North St, San Francisco, CA 94016" +315043,27in FHD Monitor,1,149.99,12/27/19 20:41,"687 Cherry St, Seattle, WA 98101" +315044,Flatscreen TV,1,300,12/14/19 11:59,"598 Cherry St, Austin, TX 73301" +315045,Lightning Charging Cable,1,14.95,12/14/19 11:31,"759 10th St, Portland, OR 97035" +315046,ThinkPad Laptop,1,999.99,12/14/19 19:11,"911 Park St, Boston, MA 02215" +315047,USB-C Charging Cable,1,11.95,12/02/19 20:48,"160 Dogwood St, Portland, OR 97035" +315048,Bose SoundSport Headphones,1,99.99,12/08/19 16:13,"420 Spruce St, San Francisco, CA 94016" +315049,USB-C Charging Cable,1,11.95,12/02/19 14:00,"481 Park St, Los Angeles, CA 90001" +315050,USB-C Charging Cable,1,11.95,12/05/19 18:31,"706 Pine St, San Francisco, CA 94016" +315051,AAA Batteries (4-pack),3,2.99,12/05/19 18:43,"802 14th St, Austin, TX 73301" +315052,iPhone,1,700,12/05/19 13:16,"919 9th St, New York City, NY 10001" +315053,Macbook Pro Laptop,1,1700,12/23/19 19:41,"746 6th St, Los Angeles, CA 90001" +315054,Vareebadd Phone,1,400,12/23/19 19:44,"892 Madison St, San Francisco, CA 94016" +315055,AA Batteries (4-pack),2,3.84,12/15/19 10:38,"479 Cherry St, Austin, TX 73301" +315056,Google Phone,1,600,12/02/19 21:21,"880 Cherry St, Seattle, WA 98101" +315057,iPhone,1,700,12/27/19 12:28,"525 Washington St, San Francisco, CA 94016" +315058,Wired Headphones,1,11.99,12/21/19 08:57,"927 Hickory St, New York City, NY 10001" +315059,Wired Headphones,1,11.99,12/05/19 13:43,"4 Main St, Los Angeles, CA 90001" +315060,USB-C Charging Cable,1,11.95,12/17/19 16:08,"222 Lake St, Seattle, WA 98101" +315061,27in 4K Gaming Monitor,1,389.99,12/05/19 20:13,"1 Main St, San Francisco, CA 94016" +315062,Apple Airpods Headphones,1,150,12/21/19 23:51,"939 Center St, San Francisco, CA 94016" +315062,Apple Airpods Headphones,1,150,12/21/19 23:51,"939 Center St, San Francisco, CA 94016" +,,,,, +315063,iPhone,1,700,12/16/19 20:17,"841 8th St, Atlanta, GA 30301" +315064,Apple Airpods Headphones,1,150,12/17/19 21:25,"88 Johnson St, San Francisco, CA 94016" +315065,20in Monitor,1,109.99,12/08/19 18:32,"715 10th St, San Francisco, CA 94016" +315066,27in 4K Gaming Monitor,1,389.99,12/13/19 07:32,"382 Jackson St, Los Angeles, CA 90001" +315067,AA Batteries (4-pack),3,3.84,12/21/19 23:34,"628 11th St, San Francisco, CA 94016" +315068,Apple Airpods Headphones,1,150,12/31/19 10:56,"515 4th St, San Francisco, CA 94016" +315069,27in 4K Gaming Monitor,1,389.99,12/11/19 19:44,"351 Jackson St, San Francisco, CA 94016" +315070,iPhone,1,700,12/05/19 18:11,"459 Jefferson St, San Francisco, CA 94016" +315071,Wired Headphones,1,11.99,12/17/19 14:43,"938 Lake St, New York City, NY 10001" +315072,Flatscreen TV,1,300,12/19/19 18:00,"572 Elm St, Austin, TX 73301" +315073,iPhone,1,700,12/20/19 12:07,"3 Hill St, Boston, MA 02215" +315073,Lightning Charging Cable,1,14.95,12/20/19 12:07,"3 Hill St, Boston, MA 02215" +315074,Apple Airpods Headphones,1,150,12/06/19 10:43,"896 Forest St, San Francisco, CA 94016" +315075,Wired Headphones,1,11.99,12/17/19 21:59,"949 Cherry St, Boston, MA 02215" +315076,27in FHD Monitor,1,149.99,12/08/19 02:43,"645 2nd St, Los Angeles, CA 90001" +315077,Bose SoundSport Headphones,1,99.99,12/06/19 23:57,"189 River St, San Francisco, CA 94016" +315078,Wired Headphones,1,11.99,12/17/19 10:47,"582 Washington St, New York City, NY 10001" +315079,AA Batteries (4-pack),1,3.84,12/30/19 15:07,"795 9th St, San Francisco, CA 94016" +315080,AAA Batteries (4-pack),1,2.99,12/30/19 20:26,"322 Lincoln St, Los Angeles, CA 90001" +315081,Bose SoundSport Headphones,1,99.99,12/02/19 10:14,"376 Church St, New York City, NY 10001" +315082,27in 4K Gaming Monitor,1,389.99,12/24/19 11:34,"377 Meadow St, Los Angeles, CA 90001" +315083,AA Batteries (4-pack),1,3.84,12/19/19 04:45,"753 14th St, New York City, NY 10001" +315084,Lightning Charging Cable,1,14.95,12/30/19 17:39,"522 West St, New York City, NY 10001" +315085,Lightning Charging Cable,1,14.95,12/22/19 18:35,"799 Dogwood St, Atlanta, GA 30301" +315086,AA Batteries (4-pack),2,3.84,12/13/19 14:07,"429 Center St, Boston, MA 02215" +315087,AA Batteries (4-pack),2,3.84,12/20/19 22:13,"865 7th St, New York City, NY 10001" +315088,Wired Headphones,1,11.99,12/20/19 15:49,"300 14th St, Los Angeles, CA 90001" +315089,iPhone,1,700,12/03/19 03:21,"152 Jefferson St, Austin, TX 73301" +315089,Apple Airpods Headphones,1,150,12/03/19 03:21,"152 Jefferson St, Austin, TX 73301" +315090,27in FHD Monitor,1,149.99,12/26/19 19:44,"807 2nd St, San Francisco, CA 94016" +315091,Lightning Charging Cable,1,14.95,12/24/19 23:11,"929 Washington St, Los Angeles, CA 90001" +315092,Wired Headphones,1,11.99,12/20/19 12:55,"541 Center St, Seattle, WA 98101" +315093,Lightning Charging Cable,1,14.95,12/05/19 18:15,"854 Park St, San Francisco, CA 94016" +315094,Apple Airpods Headphones,1,150,12/22/19 22:21,"745 9th St, Boston, MA 02215" +315094,AA Batteries (4-pack),1,3.84,12/22/19 22:21,"745 9th St, Boston, MA 02215" +315095,AAA Batteries (4-pack),1,2.99,12/26/19 14:40,"601 Adams St, Los Angeles, CA 90001" +315096,Apple Airpods Headphones,1,150,12/13/19 13:59,"681 Washington St, New York City, NY 10001" +315097,Apple Airpods Headphones,1,150,12/28/19 21:34,"434 7th St, Seattle, WA 98101" +315098,USB-C Charging Cable,1,11.95,12/27/19 17:27,"402 Elm St, New York City, NY 10001" +315099,USB-C Charging Cable,1,11.95,12/23/19 13:02,"163 Main St, San Francisco, CA 94016" +315100,Lightning Charging Cable,1,14.95,12/21/19 15:21,"665 Sunset St, Atlanta, GA 30301" +315101,AA Batteries (4-pack),1,3.84,12/26/19 20:03,"226 Sunset St, San Francisco, CA 94016" +315102,AAA Batteries (4-pack),3,2.99,12/28/19 17:43,"831 Madison St, Los Angeles, CA 90001" +315103,iPhone,1,700,12/13/19 16:15,"57 North St, Boston, MA 02215" +315104,USB-C Charging Cable,1,11.95,12/26/19 09:11,"599 Madison St, Boston, MA 02215" +315105,34in Ultrawide Monitor,1,379.99,12/30/19 21:47,"466 Chestnut St, San Francisco, CA 94016" +315106,34in Ultrawide Monitor,1,379.99,12/17/19 11:28,"451 5th St, Austin, TX 73301" +315107,Bose SoundSport Headphones,1,99.99,12/08/19 14:46,"539 11th St, Atlanta, GA 30301" +315108,Flatscreen TV,1,300,12/22/19 15:07,"276 9th St, San Francisco, CA 94016" +315109,Macbook Pro Laptop,1,1700,12/03/19 19:34,"352 Walnut St, San Francisco, CA 94016" +315110,Bose SoundSport Headphones,1,99.99,12/28/19 23:59,"72 5th St, New York City, NY 10001" +315111,27in 4K Gaming Monitor,1,389.99,12/01/19 14:35,"466 Lincoln St, Los Angeles, CA 90001" +315112,Wired Headphones,1,11.99,12/23/19 12:31,"889 8th St, Boston, MA 02215" +315113,Macbook Pro Laptop,1,1700,12/02/19 00:21,"888 Johnson St, Seattle, WA 98101" +315114,Google Phone,1,600,12/29/19 23:56,"614 11th St, Los Angeles, CA 90001" +315115,USB-C Charging Cable,1,11.95,12/11/19 15:37,"42 River St, Portland, OR 97035" +315116,AAA Batteries (4-pack),1,2.99,12/14/19 01:27,"240 Center St, Atlanta, GA 30301" +315117,Wired Headphones,1,11.99,12/30/19 21:03,"148 Center St, Portland, OR 97035" +315118,27in 4K Gaming Monitor,1,389.99,12/09/19 14:51,"858 Meadow St, Atlanta, GA 30301" +315119,AA Batteries (4-pack),1,3.84,12/25/19 14:20,"147 Washington St, Los Angeles, CA 90001" +315120,USB-C Charging Cable,1,11.95,12/19/19 18:36,"808 West St, New York City, NY 10001" +315121,AA Batteries (4-pack),1,3.84,12/17/19 20:22,"640 6th St, Los Angeles, CA 90001" +315122,Flatscreen TV,1,300,12/09/19 13:20,"787 Main St, Dallas, TX 75001" +315123,AA Batteries (4-pack),2,3.84,12/20/19 08:28,"819 Cherry St, Boston, MA 02215" +315124,ThinkPad Laptop,1,999.99,12/23/19 11:50,"132 South St, Los Angeles, CA 90001" +315125,USB-C Charging Cable,1,11.95,12/02/19 16:01,"501 6th St, Los Angeles, CA 90001" +315126,AA Batteries (4-pack),1,3.84,12/18/19 14:57,"427 Hill St, Dallas, TX 75001" +315127,Apple Airpods Headphones,1,150,12/25/19 11:15,"589 Meadow St, San Francisco, CA 94016" +315128,Lightning Charging Cable,1,14.95,12/29/19 10:09,"447 Forest St, New York City, NY 10001" +315129,Wired Headphones,1,11.99,12/16/19 13:38,"805 7th St, Portland, OR 97035" +315130,AA Batteries (4-pack),1,3.84,12/18/19 21:51,"30 River St, Atlanta, GA 30301" +315131,20in Monitor,1,109.99,12/14/19 20:36,"20 Walnut St, San Francisco, CA 94016" +315132,Apple Airpods Headphones,1,150,12/06/19 10:25,"478 Ridge St, Boston, MA 02215" +315133,34in Ultrawide Monitor,1,379.99,12/08/19 20:19,"1 8th St, Atlanta, GA 30301" +315134,AAA Batteries (4-pack),1,2.99,12/12/19 12:03,"302 Elm St, New York City, NY 10001" +315135,Wired Headphones,1,11.99,12/17/19 18:46,"617 Cedar St, San Francisco, CA 94016" +315136,Wired Headphones,2,11.99,12/26/19 18:45,"728 6th St, Atlanta, GA 30301" +315137,AAA Batteries (4-pack),1,2.99,12/05/19 13:11,"717 Pine St, Dallas, TX 75001" +315138,27in FHD Monitor,1,149.99,12/05/19 07:23,"133 14th St, San Francisco, CA 94016" +315139,27in FHD Monitor,1,149.99,12/05/19 19:20,"237 2nd St, New York City, NY 10001" +315140,Wired Headphones,1,11.99,12/12/19 23:06,"129 Highland St, Seattle, WA 98101" +315141,20in Monitor,1,109.99,12/27/19 12:22,"18 Adams St, Los Angeles, CA 90001" +315142,LG Dryer,1,600.0,12/19/19 14:02,"731 7th St, New York City, NY 10001" +315143,Wired Headphones,1,11.99,12/18/19 10:39,"460 Willow St, San Francisco, CA 94016" +315144,USB-C Charging Cable,1,11.95,12/30/19 15:03,"422 2nd St, Portland, OR 97035" +315145,Lightning Charging Cable,1,14.95,12/28/19 13:07,"742 11th St, Dallas, TX 75001" +315146,Wired Headphones,1,11.99,12/25/19 21:57,"526 Church St, Seattle, WA 98101" +315147,USB-C Charging Cable,1,11.95,12/09/19 18:14,"453 Hickory St, Boston, MA 02215" +315148,Macbook Pro Laptop,1,1700,12/16/19 14:34,"859 River St, New York City, NY 10001" +315149,AA Batteries (4-pack),2,3.84,12/12/19 13:52,"622 Lake St, Atlanta, GA 30301" +315150,Bose SoundSport Headphones,1,99.99,12/30/19 11:27,"302 Hickory St, San Francisco, CA 94016" +315151,Apple Airpods Headphones,1,150,12/22/19 18:22,"339 Adams St, San Francisco, CA 94016" +315152,Wired Headphones,2,11.99,12/26/19 07:32,"500 Cherry St, Atlanta, GA 30301" +315153,iPhone,1,700,12/31/19 16:27,"936 West St, San Francisco, CA 94016" +315153,Lightning Charging Cable,1,14.95,12/31/19 16:27,"936 West St, San Francisco, CA 94016" +315154,Wired Headphones,1,11.99,12/12/19 21:46,"55 Spruce St, Atlanta, GA 30301" +315155,Apple Airpods Headphones,1,150,12/20/19 23:47,"706 Hill St, Dallas, TX 75001" +315156,AAA Batteries (4-pack),1,2.99,12/27/19 15:52,"723 Walnut St, Seattle, WA 98101" +315157,27in 4K Gaming Monitor,1,389.99,12/16/19 18:35,"649 Cedar St, New York City, NY 10001" +315158,27in FHD Monitor,1,149.99,12/01/19 11:40,"599 9th St, Atlanta, GA 30301" +315159,USB-C Charging Cable,1,11.95,12/06/19 12:35,"95 Lakeview St, Seattle, WA 98101" +315160,Vareebadd Phone,1,400,12/20/19 09:17,"653 5th St, New York City, NY 10001" +315160,Wired Headphones,1,11.99,12/20/19 09:17,"653 5th St, New York City, NY 10001" +315161,Apple Airpods Headphones,1,150,12/15/19 19:48,"102 Center St, Dallas, TX 75001" +315162,Apple Airpods Headphones,1,150,12/22/19 20:30,"566 8th St, San Francisco, CA 94016" +315163,Lightning Charging Cable,1,14.95,12/26/19 00:02,"791 Dogwood St, Seattle, WA 98101" +315164,Flatscreen TV,1,300,12/10/19 20:47,"318 Cedar St, Atlanta, GA 30301" +315165,USB-C Charging Cable,2,11.95,12/09/19 19:21,"318 13th St, New York City, NY 10001" +315166,Bose SoundSport Headphones,1,99.99,12/06/19 19:03,"251 2nd St, Los Angeles, CA 90001" +315167,Bose SoundSport Headphones,1,99.99,12/27/19 16:34,"175 8th St, San Francisco, CA 94016" +315168,AA Batteries (4-pack),1,3.84,12/01/19 14:24,"466 10th St, Portland, ME 04101" +315169,Apple Airpods Headphones,1,150,12/06/19 17:29,"289 Madison St, New York City, NY 10001" +315170,Wired Headphones,1,11.99,12/24/19 21:31,"504 River St, Portland, OR 97035" +315171,AA Batteries (4-pack),2,3.84,12/22/19 13:27,"806 Hickory St, San Francisco, CA 94016" +315171,AAA Batteries (4-pack),1,2.99,12/22/19 13:27,"806 Hickory St, San Francisco, CA 94016" +315172,27in 4K Gaming Monitor,1,389.99,12/28/19 08:28,"839 Madison St, Seattle, WA 98101" +315173,USB-C Charging Cable,1,11.95,12/16/19 11:02,"363 9th St, Dallas, TX 75001" +315174,27in FHD Monitor,1,149.99,12/01/19 19:22,"885 Meadow St, Boston, MA 02215" +315175,Lightning Charging Cable,1,14.95,12/19/19 18:52,"769 Lake St, San Francisco, CA 94016" +315176,AAA Batteries (4-pack),2,2.99,12/15/19 12:51,"9 Main St, Boston, MA 02215" +315177,Vareebadd Phone,1,400,12/31/19 14:28,"829 13th St, San Francisco, CA 94016" +315178,Bose SoundSport Headphones,1,99.99,12/08/19 18:40,"742 Wilson St, New York City, NY 10001" +315179,Bose SoundSport Headphones,1,99.99,12/23/19 15:35,"792 9th St, Boston, MA 02215" +315180,34in Ultrawide Monitor,1,379.99,12/13/19 15:13,"995 Madison St, Seattle, WA 98101" +315181,iPhone,1,700,12/26/19 19:05,"154 Johnson St, New York City, NY 10001" +315182,Lightning Charging Cable,1,14.95,12/02/19 15:01,"823 Maple St, San Francisco, CA 94016" +315183,27in FHD Monitor,1,149.99,12/04/19 07:34,"233 Cherry St, San Francisco, CA 94016" +315184,27in 4K Gaming Monitor,1,389.99,12/29/19 16:20,"525 13th St, Los Angeles, CA 90001" +315185,20in Monitor,1,109.99,12/26/19 10:25,"513 4th St, Los Angeles, CA 90001" +315186,iPhone,1,700,12/16/19 07:13,"510 Jackson St, Boston, MA 02215" +315187,AAA Batteries (4-pack),1,2.99,12/11/19 21:01,"892 Pine St, Austin, TX 73301" +315188,Bose SoundSport Headphones,1,99.99,12/10/19 21:34,"304 Lakeview St, San Francisco, CA 94016" +315189,USB-C Charging Cable,1,11.95,12/08/19 14:01,"756 Lakeview St, San Francisco, CA 94016" +315190,USB-C Charging Cable,1,11.95,12/06/19 20:10,"884 Center St, Boston, MA 02215" +315191,Apple Airpods Headphones,1,150,12/29/19 12:50,"708 Cedar St, Boston, MA 02215" +315192,iPhone,1,700,12/14/19 20:47,"182 West St, Atlanta, GA 30301" +315192,Apple Airpods Headphones,1,150,12/14/19 20:47,"182 West St, Atlanta, GA 30301" +315193,AAA Batteries (4-pack),5,2.99,12/21/19 07:18,"904 Spruce St, Atlanta, GA 30301" +315194,Macbook Pro Laptop,1,1700,12/25/19 07:53,"824 14th St, San Francisco, CA 94016" +315194,AAA Batteries (4-pack),1,2.99,12/25/19 07:53,"824 14th St, San Francisco, CA 94016" +315195,34in Ultrawide Monitor,1,379.99,12/04/19 22:44,"431 Lake St, Seattle, WA 98101" +315196,AAA Batteries (4-pack),1,2.99,12/06/19 20:00,"665 South St, San Francisco, CA 94016" +315197,AAA Batteries (4-pack),2,2.99,12/28/19 22:38,"779 Elm St, Austin, TX 73301" +315198,27in 4K Gaming Monitor,1,389.99,12/01/19 20:13,"53 Lake St, New York City, NY 10001" +315199,Lightning Charging Cable,1,14.95,12/01/19 16:19,"993 Madison St, San Francisco, CA 94016" +315200,Wired Headphones,1,11.99,12/11/19 15:22,"879 Adams St, Portland, OR 97035" +315201,ThinkPad Laptop,1,999.99,12/02/19 19:02,"818 4th St, San Francisco, CA 94016" +315202,AA Batteries (4-pack),1,3.84,12/11/19 19:44,"547 South St, San Francisco, CA 94016" +315203,USB-C Charging Cable,1,11.95,12/20/19 08:29,"957 1st St, San Francisco, CA 94016" +315204,USB-C Charging Cable,1,11.95,12/30/19 17:25,"846 12th St, New York City, NY 10001" +315205,USB-C Charging Cable,1,11.95,12/25/19 21:19,"784 1st St, New York City, NY 10001" +315206,iPhone,1,700,12/03/19 18:17,"375 14th St, Los Angeles, CA 90001" +315207,Lightning Charging Cable,1,14.95,12/24/19 16:40,"127 Maple St, Austin, TX 73301" +315208,Bose SoundSport Headphones,1,99.99,12/26/19 13:36,"116 Maple St, Seattle, WA 98101" +315209,AAA Batteries (4-pack),1,2.99,12/20/19 08:55,"674 10th St, Portland, OR 97035" +315210,USB-C Charging Cable,1,11.95,12/30/19 18:46,"608 Church St, Los Angeles, CA 90001" +315211,Lightning Charging Cable,1,14.95,12/31/19 20:15,"593 14th St, New York City, NY 10001" +315212,AAA Batteries (4-pack),2,2.99,12/25/19 08:57,"444 Park St, Portland, ME 04101" +315213,AAA Batteries (4-pack),2,2.99,12/31/19 14:24,"957 Dogwood St, Boston, MA 02215" +315214,AA Batteries (4-pack),2,3.84,12/11/19 18:43,"841 Highland St, Portland, OR 97035" +315215,USB-C Charging Cable,1,11.95,12/28/19 18:32,"780 Willow St, San Francisco, CA 94016" +315216,Lightning Charging Cable,1,14.95,12/26/19 13:09,"254 Walnut St, Los Angeles, CA 90001" +315217,AAA Batteries (4-pack),2,2.99,12/28/19 18:18,"68 5th St, San Francisco, CA 94016" +315218,USB-C Charging Cable,1,11.95,12/01/19 17:55,"518 Pine St, San Francisco, CA 94016" +315219,Lightning Charging Cable,1,14.95,12/29/19 15:04,"696 Chestnut St, Los Angeles, CA 90001" +315220,AAA Batteries (4-pack),2,2.99,12/02/19 22:18,"954 Park St, Dallas, TX 75001" +315221,Apple Airpods Headphones,1,150,12/29/19 11:37,"686 Park St, Dallas, TX 75001" +315222,Bose SoundSport Headphones,1,99.99,12/31/19 12:33,"99 11th St, New York City, NY 10001" +315223,AA Batteries (4-pack),1,3.84,12/27/19 11:04,"99 5th St, Los Angeles, CA 90001" +315224,Google Phone,1,600,12/28/19 12:58,"448 12th St, San Francisco, CA 94016" +315224,Wired Headphones,1,11.99,12/28/19 12:58,"448 12th St, San Francisco, CA 94016" +315225,Apple Airpods Headphones,1,150,12/27/19 19:53,"990 Wilson St, Atlanta, GA 30301" +315226,AAA Batteries (4-pack),2,2.99,12/23/19 11:09,"207 Highland St, Austin, TX 73301" +315227,Bose SoundSport Headphones,1,99.99,12/22/19 05:07,"26 Jackson St, San Francisco, CA 94016" +315228,USB-C Charging Cable,1,11.95,12/06/19 20:18,"248 Park St, Seattle, WA 98101" +315229,AA Batteries (4-pack),4,3.84,12/16/19 01:57,"170 9th St, Boston, MA 02215" +315230,Wired Headphones,1,11.99,12/27/19 13:23,"666 1st St, Los Angeles, CA 90001" +315231,Apple Airpods Headphones,1,150,12/25/19 11:02,"174 Hill St, Boston, MA 02215" +315232,AA Batteries (4-pack),1,3.84,12/14/19 14:49,"281 Highland St, Dallas, TX 75001" +315233,Apple Airpods Headphones,1,150,12/21/19 10:43,"595 River St, New York City, NY 10001" +315234,Bose SoundSport Headphones,1,99.99,12/28/19 20:01,"948 Hill St, San Francisco, CA 94016" +315235,AA Batteries (4-pack),1,3.84,12/21/19 17:52,"225 Hickory St, Portland, OR 97035" +315236,34in Ultrawide Monitor,1,379.99,12/12/19 15:42,"894 Maple St, Portland, OR 97035" +315237,Lightning Charging Cable,1,14.95,12/18/19 19:04,"961 Main St, Los Angeles, CA 90001" +315238,Lightning Charging Cable,1,14.95,12/18/19 22:56,"184 Elm St, Boston, MA 02215" +315239,27in 4K Gaming Monitor,1,389.99,12/02/19 18:34,"560 Pine St, San Francisco, CA 94016" +315240,USB-C Charging Cable,1,11.95,12/19/19 10:38,"352 Ridge St, San Francisco, CA 94016" +315241,AA Batteries (4-pack),1,3.84,12/17/19 22:39,"356 11th St, Atlanta, GA 30301" +315242,Wired Headphones,1,11.99,12/25/19 13:56,"328 Walnut St, Los Angeles, CA 90001" +315243,34in Ultrawide Monitor,1,379.99,12/04/19 17:14,"834 Main St, Los Angeles, CA 90001" +315244,Wired Headphones,3,11.99,12/01/19 16:14,"100 Elm St, New York City, NY 10001" +315245,34in Ultrawide Monitor,1,379.99,12/12/19 15:39,"512 10th St, Portland, OR 97035" +315246,Lightning Charging Cable,1,14.95,12/13/19 13:18,"182 Hill St, Boston, MA 02215" +315247,Bose SoundSport Headphones,1,99.99,12/27/19 12:56,"714 11th St, Los Angeles, CA 90001" +315248,27in 4K Gaming Monitor,1,389.99,12/24/19 13:16,"697 Willow St, Portland, OR 97035" +315249,Lightning Charging Cable,1,14.95,12/28/19 21:30,"212 12th St, Los Angeles, CA 90001" +315250,AA Batteries (4-pack),1,3.84,12/31/19 15:28,"108 Washington St, New York City, NY 10001" +315251,Google Phone,1,600,12/27/19 07:13,"190 Main St, Atlanta, GA 30301" +315252,Wired Headphones,1,11.99,12/11/19 14:19,"845 West St, Dallas, TX 75001" +315253,AAA Batteries (4-pack),1,2.99,12/11/19 18:03,"885 Pine St, Portland, OR 97035" +315254,Wired Headphones,1,11.99,12/06/19 19:12,"18 1st St, Dallas, TX 75001" +315255,34in Ultrawide Monitor,1,379.99,12/21/19 07:51,"953 Forest St, New York City, NY 10001" +315256,USB-C Charging Cable,1,11.95,12/23/19 10:31,"282 13th St, Boston, MA 02215" +315257,Vareebadd Phone,1,400,12/07/19 08:00,"794 Meadow St, Los Angeles, CA 90001" +315258,AA Batteries (4-pack),1,3.84,12/21/19 15:11,"136 Sunset St, Dallas, TX 75001" +315259,Lightning Charging Cable,2,14.95,12/11/19 19:01,"644 Main St, Boston, MA 02215" +315260,Apple Airpods Headphones,1,150,12/13/19 23:43,"569 Main St, Los Angeles, CA 90001" +315261,AA Batteries (4-pack),2,3.84,12/31/19 20:40,"924 Hill St, Los Angeles, CA 90001" +315262,Lightning Charging Cable,1,14.95,12/23/19 05:18,"254 Washington St, Seattle, WA 98101" +315263,20in Monitor,1,109.99,12/11/19 12:51,"375 Johnson St, Boston, MA 02215" +315264,AA Batteries (4-pack),1,3.84,12/31/19 12:46,"341 Maple St, Dallas, TX 75001" +315265,27in 4K Gaming Monitor,1,389.99,12/13/19 12:50,"833 Sunset St, San Francisco, CA 94016" +315266,Bose SoundSport Headphones,1,99.99,12/24/19 02:16,"51 Forest St, Boston, MA 02215" +315267,27in FHD Monitor,1,149.99,12/23/19 20:52,"616 Sunset St, Boston, MA 02215" +315268,27in FHD Monitor,1,149.99,12/17/19 08:59,"190 Wilson St, Seattle, WA 98101" +315269,Bose SoundSport Headphones,1,99.99,12/22/19 14:58,"123 Elm St, San Francisco, CA 94016" +315270,AAA Batteries (4-pack),2,2.99,12/07/19 12:51,"500 Ridge St, Los Angeles, CA 90001" +315271,USB-C Charging Cable,1,11.95,12/02/19 23:43,"228 West St, San Francisco, CA 94016" +315272,USB-C Charging Cable,1,11.95,12/04/19 09:19,"816 Chestnut St, Austin, TX 73301" +315273,Flatscreen TV,1,300,12/13/19 11:39,"965 Cedar St, San Francisco, CA 94016" +315274,iPhone,1,700,12/20/19 12:19,"110 Sunset St, Portland, OR 97035" +315275,27in FHD Monitor,1,149.99,12/25/19 20:06,"144 Hill St, San Francisco, CA 94016" +315276,Lightning Charging Cable,1,14.95,12/27/19 17:43,"443 Washington St, Dallas, TX 75001" +315277,AA Batteries (4-pack),1,3.84,12/11/19 14:53,"686 South St, Atlanta, GA 30301" +315278,27in FHD Monitor,1,149.99,12/18/19 10:12,"808 Maple St, San Francisco, CA 94016" +315279,Lightning Charging Cable,1,14.95,12/02/19 11:13,"662 South St, Boston, MA 02215" +315280,Lightning Charging Cable,1,14.95,12/07/19 11:03,"268 1st St, Austin, TX 73301" +315281,Wired Headphones,1,11.99,12/10/19 10:25,"148 6th St, San Francisco, CA 94016" +315282,iPhone,1,700,12/26/19 09:35,"452 Johnson St, New York City, NY 10001" +315283,iPhone,1,700,12/13/19 18:21,"386 12th St, Dallas, TX 75001" +315284,27in FHD Monitor,1,149.99,12/26/19 11:42,"45 Maple St, Portland, OR 97035" +315285,Flatscreen TV,1,300,12/21/19 13:52,"607 13th St, Los Angeles, CA 90001" +315286,34in Ultrawide Monitor,1,379.99,12/28/19 00:00,"417 Willow St, San Francisco, CA 94016" +315287,Wired Headphones,1,11.99,12/20/19 15:35,"223 9th St, San Francisco, CA 94016" +315288,USB-C Charging Cable,1,11.95,12/18/19 16:54,"997 14th St, Boston, MA 02215" +315289,Apple Airpods Headphones,1,150,12/08/19 00:03,"398 North St, Atlanta, GA 30301" +315290,34in Ultrawide Monitor,1,379.99,12/19/19 01:13,"488 Walnut St, Los Angeles, CA 90001" +315291,27in 4K Gaming Monitor,1,389.99,12/14/19 22:43,"890 2nd St, Dallas, TX 75001" +315292,Google Phone,1,600,12/01/19 11:52,"956 11th St, Atlanta, GA 30301" +315293,AAA Batteries (4-pack),2,2.99,12/02/19 21:33,"227 Lakeview St, Atlanta, GA 30301" +315294,Macbook Pro Laptop,1,1700,12/06/19 21:27,"136 River St, Boston, MA 02215" +315295,ThinkPad Laptop,1,999.99,12/27/19 18:32,"996 Spruce St, Dallas, TX 75001" +315296,AA Batteries (4-pack),1,3.84,12/07/19 18:38,"896 2nd St, Boston, MA 02215" +315297,Bose SoundSport Headphones,1,99.99,12/27/19 13:21,"101 Cedar St, New York City, NY 10001" +315298,Wired Headphones,1,11.99,12/23/19 22:05,"525 Cherry St, Boston, MA 02215" +315299,AAA Batteries (4-pack),1,2.99,12/01/19 19:43,"184 14th St, Los Angeles, CA 90001" +315300,AAA Batteries (4-pack),2,2.99,12/10/19 20:14,"56 Center St, Dallas, TX 75001" +315301,27in FHD Monitor,1,149.99,12/23/19 12:27,"285 Cherry St, Los Angeles, CA 90001" +315302,iPhone,1,700,12/16/19 12:30,"609 Lake St, San Francisco, CA 94016" +315303,AAA Batteries (4-pack),1,2.99,12/28/19 11:09,"722 Wilson St, Portland, OR 97035" +315304,AAA Batteries (4-pack),1,2.99,12/20/19 10:08,"747 Meadow St, Dallas, TX 75001" +315305,AAA Batteries (4-pack),3,2.99,12/13/19 08:44,"906 River St, New York City, NY 10001" +315306,AA Batteries (4-pack),1,3.84,12/07/19 12:50,"255 Lincoln St, Boston, MA 02215" +315307,Bose SoundSport Headphones,1,99.99,12/24/19 08:31,"918 7th St, San Francisco, CA 94016" +315308,Lightning Charging Cable,1,14.95,12/02/19 10:48,"161 Center St, San Francisco, CA 94016" +315309,Bose SoundSport Headphones,1,99.99,12/10/19 17:13,"92 1st St, Atlanta, GA 30301" +315310,USB-C Charging Cable,1,11.95,12/19/19 18:54,"565 12th St, New York City, NY 10001" +315311,AAA Batteries (4-pack),1,2.99,12/17/19 11:31,"485 Spruce St, Atlanta, GA 30301" +315312,iPhone,1,700,12/10/19 15:01,"302 14th St, Dallas, TX 75001" +315312,Lightning Charging Cable,1,14.95,12/10/19 15:01,"302 14th St, Dallas, TX 75001" +315313,Apple Airpods Headphones,1,150,12/07/19 20:42,"360 Dogwood St, Boston, MA 02215" +315314,USB-C Charging Cable,1,11.95,12/12/19 18:16,"45 9th St, San Francisco, CA 94016" +315315,34in Ultrawide Monitor,1,379.99,12/03/19 18:48,"961 9th St, Boston, MA 02215" +315316,Apple Airpods Headphones,1,150,12/31/19 18:31,"382 Walnut St, Boston, MA 02215" +315317,Lightning Charging Cable,1,14.95,12/20/19 23:58,"981 14th St, New York City, NY 10001" +315318,AA Batteries (4-pack),2,3.84,12/19/19 12:42,"330 Hill St, Dallas, TX 75001" +315319,27in 4K Gaming Monitor,1,389.99,12/08/19 17:59,"149 Lake St, Boston, MA 02215" +315320,27in 4K Gaming Monitor,1,389.99,12/18/19 21:07,"722 Spruce St, Boston, MA 02215" +315321,Apple Airpods Headphones,1,150,12/16/19 11:49,"985 Cedar St, Dallas, TX 75001" +315322,Lightning Charging Cable,1,14.95,12/31/19 09:46,"357 Chestnut St, Austin, TX 73301" +315323,AA Batteries (4-pack),1,3.84,12/12/19 22:11,"89 Lincoln St, Portland, ME 04101" +315324,ThinkPad Laptop,1,999.99,12/09/19 14:14,"278 Cedar St, Boston, MA 02215" +315325,USB-C Charging Cable,2,11.95,12/14/19 18:12,"417 4th St, Los Angeles, CA 90001" +315326,AAA Batteries (4-pack),1,2.99,12/19/19 14:18,"710 Johnson St, Portland, OR 97035" +315327,Wired Headphones,1,11.99,12/13/19 20:10,"455 6th St, New York City, NY 10001" +315328,iPhone,1,700,12/28/19 09:23,"346 Ridge St, Dallas, TX 75001" +315328,Apple Airpods Headphones,1,150,12/28/19 09:23,"346 Ridge St, Dallas, TX 75001" +315328,Wired Headphones,1,11.99,12/28/19 09:23,"346 Ridge St, Dallas, TX 75001" +315329,AAA Batteries (4-pack),1,2.99,12/24/19 23:10,"57 Johnson St, Portland, OR 97035" +315330,AA Batteries (4-pack),1,3.84,12/24/19 11:55,"941 Park St, Boston, MA 02215" +315331,27in 4K Gaming Monitor,1,389.99,12/13/19 05:28,"209 Johnson St, New York City, NY 10001" +315332,USB-C Charging Cable,1,11.95,12/24/19 23:14,"45 Maple St, San Francisco, CA 94016" +315333,Lightning Charging Cable,1,14.95,12/15/19 09:43,"47 Walnut St, San Francisco, CA 94016" +315334,Flatscreen TV,1,300,12/18/19 09:39,"599 Ridge St, Los Angeles, CA 90001" +315335,Bose SoundSport Headphones,1,99.99,12/03/19 21:10,"632 Jackson St, Austin, TX 73301" +315336,iPhone,1,700,12/27/19 19:59,"337 Center St, Los Angeles, CA 90001" +315336,Lightning Charging Cable,1,14.95,12/27/19 19:59,"337 Center St, Los Angeles, CA 90001" +315336,Wired Headphones,1,11.99,12/27/19 19:59,"337 Center St, Los Angeles, CA 90001" +315337,Bose SoundSport Headphones,1,99.99,12/01/19 06:53,"398 Lakeview St, Dallas, TX 75001" +315338,AAA Batteries (4-pack),1,2.99,12/08/19 18:54,"564 14th St, New York City, NY 10001" +315339,Lightning Charging Cable,1,14.95,12/27/19 15:54,"487 6th St, San Francisco, CA 94016" +315340,USB-C Charging Cable,1,11.95,12/06/19 23:50,"586 Washington St, Atlanta, GA 30301" +315340,Lightning Charging Cable,2,14.95,12/06/19 23:50,"586 Washington St, Atlanta, GA 30301" +315341,AA Batteries (4-pack),1,3.84,12/05/19 20:07,"768 5th St, New York City, NY 10001" +315342,Bose SoundSport Headphones,1,99.99,12/10/19 21:25,"471 12th St, New York City, NY 10001" +315343,Bose SoundSport Headphones,1,99.99,12/11/19 11:14,"123 Park St, San Francisco, CA 94016" +315344,AA Batteries (4-pack),1,3.84,12/27/19 18:51,"869 1st St, Boston, MA 02215" +315345,AA Batteries (4-pack),1,3.84,12/08/19 10:54,"175 5th St, Seattle, WA 98101" +315346,34in Ultrawide Monitor,1,379.99,12/16/19 21:31,"844 14th St, Boston, MA 02215" +315347,Bose SoundSport Headphones,1,99.99,12/21/19 18:52,"943 Center St, New York City, NY 10001" +315348,Macbook Pro Laptop,1,1700,12/18/19 18:32,"653 River St, San Francisco, CA 94016" +315349,Apple Airpods Headphones,1,150,12/17/19 13:57,"75 Cedar St, San Francisco, CA 94016" +315350,Vareebadd Phone,1,400,12/27/19 17:40,"318 Cherry St, San Francisco, CA 94016" +315351,Wired Headphones,1,11.99,12/13/19 16:24,"811 North St, Boston, MA 02215" +315352,AAA Batteries (4-pack),2,2.99,12/08/19 20:35,"803 Church St, Seattle, WA 98101" +315353,Wired Headphones,1,11.99,12/06/19 13:55,"648 Elm St, Atlanta, GA 30301" +315353,Lightning Charging Cable,1,14.95,12/06/19 13:55,"648 Elm St, Atlanta, GA 30301" +315354,USB-C Charging Cable,1,11.95,12/07/19 21:50,"248 Hill St, Los Angeles, CA 90001" +315355,27in FHD Monitor,1,149.99,12/03/19 12:28,"602 Main St, Portland, OR 97035" +315356,Lightning Charging Cable,1,14.95,12/20/19 20:34,"660 Washington St, San Francisco, CA 94016" +315357,AA Batteries (4-pack),1,3.84,12/03/19 19:39,"724 Maple St, San Francisco, CA 94016" +315358,Flatscreen TV,1,300,12/31/19 21:33,"655 Maple St, San Francisco, CA 94016" +315359,Apple Airpods Headphones,1,150,12/12/19 10:33,"710 9th St, Seattle, WA 98101" +315360,Wired Headphones,1,11.99,12/26/19 09:30,"551 Pine St, Dallas, TX 75001" +315361,Flatscreen TV,1,300,12/12/19 23:04,"798 Church St, San Francisco, CA 94016" +315362,iPhone,1,700,12/24/19 12:46,"168 Cedar St, San Francisco, CA 94016" +315362,Lightning Charging Cable,1,14.95,12/24/19 12:46,"168 Cedar St, San Francisco, CA 94016" +315363,AAA Batteries (4-pack),2,2.99,12/04/19 00:00,"392 Willow St, Dallas, TX 75001" +315364,27in FHD Monitor,1,149.99,12/16/19 14:10,"867 Madison St, Portland, OR 97035" +315365,Wired Headphones,1,11.99,12/15/19 22:01,"542 Cherry St, Los Angeles, CA 90001" +315366,AA Batteries (4-pack),1,3.84,12/12/19 12:48,"361 10th St, San Francisco, CA 94016" +315367,Bose SoundSport Headphones,1,99.99,12/13/19 22:24,"963 Church St, Boston, MA 02215" +315368,Bose SoundSport Headphones,1,99.99,12/08/19 10:51,"52 Washington St, Austin, TX 73301" +315369,AAA Batteries (4-pack),1,2.99,12/08/19 12:48,"564 Johnson St, San Francisco, CA 94016" +315370,iPhone,1,700,12/25/19 23:21,"306 Forest St, New York City, NY 10001" +315371,Flatscreen TV,1,300,12/07/19 15:12,"293 Jackson St, Portland, OR 97035" +315372,27in FHD Monitor,1,149.99,12/27/19 08:26,"149 Hill St, Los Angeles, CA 90001" +315373,AAA Batteries (4-pack),1,2.99,12/22/19 23:50,"818 Meadow St, Atlanta, GA 30301" +315374,Google Phone,1,600,12/06/19 23:40,"432 8th St, Boston, MA 02215" +315375,34in Ultrawide Monitor,1,379.99,12/08/19 13:34,"743 Ridge St, Los Angeles, CA 90001" +315376,Apple Airpods Headphones,1,150,12/13/19 09:56,"833 7th St, Los Angeles, CA 90001" +315377,AA Batteries (4-pack),2,3.84,12/25/19 13:32,"742 13th St, Boston, MA 02215" +315378,iPhone,1,700,12/12/19 22:26,"715 10th St, Atlanta, GA 30301" +315379,AAA Batteries (4-pack),1,2.99,12/05/19 21:03,"658 Maple St, New York City, NY 10001" +315379,AA Batteries (4-pack),1,3.84,12/05/19 21:03,"658 Maple St, New York City, NY 10001" +315380,AAA Batteries (4-pack),2,2.99,12/04/19 22:31,"368 Cedar St, Dallas, TX 75001" +315381,Bose SoundSport Headphones,1,99.99,12/04/19 16:04,"72 Lake St, Boston, MA 02215" +315382,AAA Batteries (4-pack),1,2.99,12/06/19 10:02,"179 5th St, Atlanta, GA 30301" +315383,Flatscreen TV,1,300,12/09/19 20:22,"901 Ridge St, New York City, NY 10001" +315384,AA Batteries (4-pack),2,3.84,12/22/19 12:44,"795 1st St, Los Angeles, CA 90001" +315385,Lightning Charging Cable,1,14.95,12/21/19 23:22,"419 Maple St, Boston, MA 02215" +315386,34in Ultrawide Monitor,1,379.99,12/19/19 22:02,"337 14th St, Atlanta, GA 30301" +315387,Wired Headphones,2,11.99,12/05/19 14:30,"542 Center St, New York City, NY 10001" +315388,Bose SoundSport Headphones,1,99.99,12/16/19 19:58,"974 Dogwood St, Los Angeles, CA 90001" +,,,,, +315389,AAA Batteries (4-pack),2,2.99,12/19/19 17:07,"53 South St, Atlanta, GA 30301" +315390,USB-C Charging Cable,1,11.95,12/25/19 21:01,"172 Wilson St, Boston, MA 02215" +315391,AAA Batteries (4-pack),2,2.99,12/08/19 01:13,"350 14th St, New York City, NY 10001" +315392,Lightning Charging Cable,1,14.95,12/07/19 21:11,"425 Church St, Seattle, WA 98101" +315393,Google Phone,1,600,12/28/19 11:19,"40 Main St, Los Angeles, CA 90001" +315394,Lightning Charging Cable,1,14.95,12/21/19 19:28,"619 Sunset St, New York City, NY 10001" +315395,Bose SoundSport Headphones,1,99.99,12/12/19 12:31,"154 Ridge St, San Francisco, CA 94016" +315396,AAA Batteries (4-pack),1,2.99,12/24/19 14:48,"742 5th St, New York City, NY 10001" +315397,AAA Batteries (4-pack),1,2.99,12/07/19 18:06,"119 Chestnut St, Los Angeles, CA 90001" +315398,Lightning Charging Cable,1,14.95,12/05/19 17:05,"893 Meadow St, New York City, NY 10001" +315399,20in Monitor,1,109.99,12/30/19 08:44,"32 11th St, Los Angeles, CA 90001" +315400,Lightning Charging Cable,1,14.95,12/23/19 07:15,"362 Dogwood St, Portland, OR 97035" +315401,34in Ultrawide Monitor,1,379.99,12/30/19 16:29,"86 7th St, Seattle, WA 98101" +315402,Wired Headphones,1,11.99,12/26/19 12:40,"351 Spruce St, Atlanta, GA 30301" +315403,Lightning Charging Cable,1,14.95,12/17/19 21:52,"115 Jefferson St, Los Angeles, CA 90001" +315404,LG Washing Machine,1,600.0,12/06/19 19:31,"976 Hickory St, San Francisco, CA 94016" +315405,Vareebadd Phone,1,400,12/26/19 10:56,"952 South St, Portland, OR 97035" +315406,Lightning Charging Cable,1,14.95,12/25/19 22:36,"417 Maple St, Atlanta, GA 30301" +315407,AA Batteries (4-pack),1,3.84,12/02/19 09:40,"102 Center St, Boston, MA 02215" +315408,Google Phone,1,600,12/20/19 17:13,"56 12th St, San Francisco, CA 94016" +315408,Bose SoundSport Headphones,1,99.99,12/20/19 17:13,"56 12th St, San Francisco, CA 94016" +315409,USB-C Charging Cable,1,11.95,12/19/19 17:28,"753 Ridge St, Los Angeles, CA 90001" +315410,Wired Headphones,1,11.99,12/31/19 23:18,"608 Highland St, Seattle, WA 98101" +315411,Apple Airpods Headphones,1,150,12/26/19 16:46,"357 12th St, San Francisco, CA 94016" +315412,AA Batteries (4-pack),2,3.84,12/21/19 13:13,"82 Highland St, San Francisco, CA 94016" +315413,AA Batteries (4-pack),1,3.84,12/15/19 16:21,"266 6th St, Portland, OR 97035" +315414,AAA Batteries (4-pack),1,2.99,12/27/19 15:05,"441 5th St, Los Angeles, CA 90001" +315415,27in 4K Gaming Monitor,1,389.99,12/25/19 05:51,"394 Cherry St, San Francisco, CA 94016" +315416,AAA Batteries (4-pack),1,2.99,12/06/19 00:08,"264 Dogwood St, Boston, MA 02215" +315417,Lightning Charging Cable,1,14.95,12/15/19 07:13,"498 North St, San Francisco, CA 94016" +315418,USB-C Charging Cable,1,11.95,12/22/19 13:30,"984 Wilson St, Los Angeles, CA 90001" +315419,Apple Airpods Headphones,1,150,12/31/19 10:43,"502 Forest St, Seattle, WA 98101" +315420,Lightning Charging Cable,1,14.95,12/02/19 21:52,"475 River St, Seattle, WA 98101" +315421,Bose SoundSport Headphones,1,99.99,12/08/19 16:31,"650 1st St, Boston, MA 02215" +315422,Lightning Charging Cable,1,14.95,12/02/19 14:09,"559 8th St, Los Angeles, CA 90001" +315423,Bose SoundSport Headphones,1,99.99,12/01/19 13:24,"687 13th St, Boston, MA 02215" +315424,Wired Headphones,1,11.99,12/26/19 22:14,"174 Lincoln St, San Francisco, CA 94016" +315425,USB-C Charging Cable,1,11.95,12/02/19 18:55,"325 10th St, New York City, NY 10001" +315426,Lightning Charging Cable,1,14.95,12/25/19 17:26,"473 Wilson St, Austin, TX 73301" +315427,Macbook Pro Laptop,1,1700,12/27/19 23:12,"443 Willow St, New York City, NY 10001" +315428,Wired Headphones,1,11.99,12/18/19 00:33,"685 Cedar St, Atlanta, GA 30301" +315429,AA Batteries (4-pack),2,3.84,12/10/19 01:46,"570 Maple St, Boston, MA 02215" +315430,Apple Airpods Headphones,1,150,12/20/19 21:28,"109 Forest St, San Francisco, CA 94016" +315431,Apple Airpods Headphones,1,150,12/09/19 19:15,"156 Cherry St, Los Angeles, CA 90001" +315432,AA Batteries (4-pack),1,3.84,12/31/19 11:30,"650 Elm St, San Francisco, CA 94016" +315433,ThinkPad Laptop,1,999.99,12/15/19 19:46,"60 Ridge St, San Francisco, CA 94016" +315434,Macbook Pro Laptop,1,1700,12/03/19 17:03,"880 8th St, San Francisco, CA 94016" +315435,AA Batteries (4-pack),5,3.84,12/22/19 23:46,"996 Lincoln St, Seattle, WA 98101" +315436,Wired Headphones,1,11.99,12/01/19 18:52,"129 Pine St, Boston, MA 02215" +315437,USB-C Charging Cable,1,11.95,12/01/19 10:50,"648 Johnson St, Los Angeles, CA 90001" +315438,AA Batteries (4-pack),1,3.84,12/15/19 12:04,"369 Lake St, New York City, NY 10001" +315439,Bose SoundSport Headphones,1,99.99,12/26/19 08:02,"622 South St, Los Angeles, CA 90001" +315440,USB-C Charging Cable,1,11.95,12/27/19 10:03,"255 South St, San Francisco, CA 94016" +315441,AA Batteries (4-pack),1,3.84,12/18/19 00:32,"204 Elm St, San Francisco, CA 94016" +315442,Wired Headphones,1,11.99,12/18/19 18:04,"576 11th St, Boston, MA 02215" +315443,34in Ultrawide Monitor,1,379.99,12/24/19 16:24,"901 2nd St, New York City, NY 10001" +315444,iPhone,1,700,12/06/19 08:25,"544 Chestnut St, Seattle, WA 98101" +315445,Bose SoundSport Headphones,1,99.99,12/10/19 14:29,"652 Wilson St, San Francisco, CA 94016" +315446,USB-C Charging Cable,1,11.95,12/31/19 10:35,"960 Park St, Dallas, TX 75001" +315447,AA Batteries (4-pack),2,3.84,12/06/19 20:03,"309 Adams St, Dallas, TX 75001" +315448,20in Monitor,1,109.99,12/19/19 09:14,"576 7th St, Dallas, TX 75001" +315449,ThinkPad Laptop,1,999.99,12/11/19 18:11,"990 Jefferson St, Los Angeles, CA 90001" +315450,Apple Airpods Headphones,1,150,12/31/19 19:06,"9 Spruce St, Seattle, WA 98101" +315451,AAA Batteries (4-pack),1,2.99,12/09/19 04:11,"899 Center St, Dallas, TX 75001" +315452,AAA Batteries (4-pack),1,2.99,12/25/19 14:44,"655 Church St, New York City, NY 10001" +315453,Bose SoundSport Headphones,1,99.99,12/30/19 12:48,"35 10th St, San Francisco, CA 94016" +315454,Apple Airpods Headphones,1,150,12/27/19 18:59,"233 7th St, San Francisco, CA 94016" +315455,Flatscreen TV,1,300,12/05/19 12:31,"155 South St, Dallas, TX 75001" +315456,iPhone,1,700,12/02/19 02:58,"277 10th St, Austin, TX 73301" +315457,USB-C Charging Cable,1,11.95,12/17/19 09:11,"620 Lincoln St, Los Angeles, CA 90001" +315458,USB-C Charging Cable,1,11.95,12/31/19 14:10,"534 12th St, San Francisco, CA 94016" +315459,AAA Batteries (4-pack),1,2.99,12/06/19 13:04,"217 Lincoln St, Seattle, WA 98101" +315460,Apple Airpods Headphones,1,150,12/30/19 11:47,"749 Johnson St, Seattle, WA 98101" +315461,USB-C Charging Cable,1,11.95,12/03/19 07:51,"769 Maple St, Austin, TX 73301" +315462,Bose SoundSport Headphones,1,99.99,12/23/19 08:23,"883 14th St, San Francisco, CA 94016" +315463,34in Ultrawide Monitor,1,379.99,12/21/19 09:32,"582 Elm St, Los Angeles, CA 90001" +315464,27in 4K Gaming Monitor,1,389.99,12/24/19 12:22,"319 Park St, San Francisco, CA 94016" +315465,34in Ultrawide Monitor,1,379.99,12/09/19 11:11,"371 Main St, Boston, MA 02215" +315466,27in FHD Monitor,1,149.99,12/29/19 09:43,"619 Hill St, Portland, OR 97035" +315467,Lightning Charging Cable,1,14.95,12/25/19 08:52,"200 Maple St, Seattle, WA 98101" +315468,27in FHD Monitor,1,149.99,12/31/19 16:32,"901 4th St, San Francisco, CA 94016" +315469,Apple Airpods Headphones,1,150,12/03/19 20:35,"23 7th St, San Francisco, CA 94016" +315470,Wired Headphones,1,11.99,12/07/19 14:12,"542 Washington St, New York City, NY 10001" +315471,Lightning Charging Cable,1,14.95,12/14/19 20:43,"181 Wilson St, New York City, NY 10001" +315472,USB-C Charging Cable,1,11.95,12/07/19 20:25,"624 13th St, San Francisco, CA 94016" +315473,ThinkPad Laptop,1,999.99,12/31/19 12:26,"123 Meadow St, San Francisco, CA 94016" +315474,Lightning Charging Cable,1,14.95,12/13/19 15:47,"648 Johnson St, Dallas, TX 75001" +315475,AA Batteries (4-pack),1,3.84,12/15/19 08:11,"423 4th St, Boston, MA 02215" +315476,Google Phone,1,600,12/14/19 21:04,"880 Lincoln St, Atlanta, GA 30301" +315477,27in FHD Monitor,1,149.99,12/18/19 10:25,"579 Forest St, New York City, NY 10001" +315478,Lightning Charging Cable,1,14.95,12/23/19 18:54,"849 Jackson St, Los Angeles, CA 90001" +315479,34in Ultrawide Monitor,1,379.99,12/17/19 21:06,"21 6th St, Portland, OR 97035" +315480,Wired Headphones,1,11.99,12/31/19 22:21,"275 Adams St, San Francisco, CA 94016" +315481,27in FHD Monitor,1,149.99,12/03/19 19:52,"989 Pine St, San Francisco, CA 94016" +315482,AA Batteries (4-pack),1,3.84,12/07/19 14:44,"59 9th St, Austin, TX 73301" +315483,USB-C Charging Cable,1,11.95,12/14/19 15:00,"666 Highland St, New York City, NY 10001" +315484,AAA Batteries (4-pack),2,2.99,12/28/19 23:43,"928 9th St, Seattle, WA 98101" +315485,AA Batteries (4-pack),1,3.84,12/01/19 11:36,"178 Elm St, Boston, MA 02215" +315486,Vareebadd Phone,1,400,12/13/19 23:13,"366 Walnut St, Los Angeles, CA 90001" +315486,Bose SoundSport Headphones,1,99.99,12/13/19 23:13,"366 Walnut St, Los Angeles, CA 90001" +315487,Apple Airpods Headphones,1,150,12/31/19 12:17,"773 13th St, Los Angeles, CA 90001" +315488,Wired Headphones,1,11.99,12/28/19 17:37,"801 Maple St, Los Angeles, CA 90001" +315489,Lightning Charging Cable,1,14.95,12/14/19 21:01,"187 Cedar St, Atlanta, GA 30301" +315490,AA Batteries (4-pack),1,3.84,12/21/19 19:21,"438 9th St, New York City, NY 10001" +315491,Macbook Pro Laptop,1,1700,12/20/19 23:36,"285 West St, New York City, NY 10001" +315492,Wired Headphones,1,11.99,12/23/19 09:22,"78 Church St, Dallas, TX 75001" +315493,Wired Headphones,1,11.99,12/21/19 10:23,"40 7th St, Atlanta, GA 30301" +315494,Lightning Charging Cable,2,14.95,12/06/19 13:35,"932 North St, Atlanta, GA 30301" +315495,27in 4K Gaming Monitor,1,389.99,12/30/19 12:25,"913 Johnson St, New York City, NY 10001" +315496,Wired Headphones,1,11.99,12/18/19 00:10,"752 Hickory St, New York City, NY 10001" +315497,34in Ultrawide Monitor,1,379.99,12/18/19 09:53,"121 Walnut St, Los Angeles, CA 90001" +315498,Apple Airpods Headphones,1,150,12/30/19 17:03,"719 13th St, Dallas, TX 75001" +315499,AA Batteries (4-pack),1,3.84,12/24/19 18:34,"443 West St, Portland, OR 97035" +315500,AAA Batteries (4-pack),3,2.99,12/01/19 18:13,"310 Willow St, Los Angeles, CA 90001" +315501,Flatscreen TV,1,300,12/30/19 09:58,"487 Hickory St, Portland, OR 97035" +315502,Flatscreen TV,1,300,12/13/19 23:22,"839 Dogwood St, Dallas, TX 75001" +315503,27in FHD Monitor,1,149.99,12/30/19 17:04,"621 North St, Seattle, WA 98101" +315503,Wired Headphones,1,11.99,12/30/19 17:04,"621 North St, Seattle, WA 98101" +315504,Bose SoundSport Headphones,1,99.99,12/13/19 19:11,"14 Wilson St, Austin, TX 73301" +315505,Wired Headphones,1,11.99,12/31/19 09:13,"640 5th St, Dallas, TX 75001" +315506,Google Phone,1,600,12/13/19 17:01,"211 Madison St, Dallas, TX 75001" +315506,Wired Headphones,2,11.99,12/13/19 17:01,"211 Madison St, Dallas, TX 75001" +315507,AA Batteries (4-pack),2,3.84,12/12/19 14:50,"471 North St, Seattle, WA 98101" +315508,AA Batteries (4-pack),2,3.84,12/18/19 13:06,"350 North St, San Francisco, CA 94016" +315509,27in 4K Gaming Monitor,1,389.99,12/23/19 06:38,"623 Pine St, Los Angeles, CA 90001" +315510,AAA Batteries (4-pack),1,2.99,12/30/19 17:33,"3 12th St, San Francisco, CA 94016" +315511,AA Batteries (4-pack),2,3.84,12/28/19 14:13,"540 Dogwood St, Portland, OR 97035" +315512,iPhone,1,700,12/02/19 15:25,"39 Sunset St, Los Angeles, CA 90001" +315512,Lightning Charging Cable,1,14.95,12/02/19 15:25,"39 Sunset St, Los Angeles, CA 90001" +315513,USB-C Charging Cable,1,11.95,12/04/19 15:25,"531 14th St, Los Angeles, CA 90001" +315514,AAA Batteries (4-pack),1,2.99,12/10/19 23:11,"248 6th St, Boston, MA 02215" +315515,Lightning Charging Cable,1,14.95,12/31/19 01:24,"167 4th St, New York City, NY 10001" +315516,Bose SoundSport Headphones,1,99.99,12/18/19 21:13,"733 13th St, New York City, NY 10001" +315517,LG Washing Machine,1,600.0,12/14/19 16:59,"365 River St, Portland, ME 04101" +315518,Bose SoundSport Headphones,1,99.99,12/23/19 08:51,"233 Hickory St, New York City, NY 10001" +315519,Lightning Charging Cable,2,14.95,12/03/19 08:34,"598 Highland St, Seattle, WA 98101" +315520,34in Ultrawide Monitor,1,379.99,12/14/19 08:17,"561 6th St, Boston, MA 02215" +315520,Wired Headphones,3,11.99,12/14/19 08:17,"561 6th St, Boston, MA 02215" +315521,USB-C Charging Cable,1,11.95,12/19/19 22:20,"243 6th St, Los Angeles, CA 90001" +315522,USB-C Charging Cable,1,11.95,12/31/19 23:25,"818 Hickory St, Boston, MA 02215" +315523,Bose SoundSport Headphones,1,99.99,12/20/19 17:23,"637 5th St, Los Angeles, CA 90001" +315524,Apple Airpods Headphones,1,150,12/25/19 14:50,"165 Highland St, Los Angeles, CA 90001" +315525,Apple Airpods Headphones,1,150,12/08/19 23:33,"514 Main St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +315526,Apple Airpods Headphones,1,150,12/18/19 21:24,"419 Willow St, San Francisco, CA 94016" +315527,27in 4K Gaming Monitor,1,389.99,12/27/19 20:15,"246 Jefferson St, Seattle, WA 98101" +315528,USB-C Charging Cable,1,11.95,12/15/19 21:25,"999 Lincoln St, Portland, ME 04101" +315529,AAA Batteries (4-pack),1,2.99,12/08/19 12:24,"985 11th St, San Francisco, CA 94016" +315530,Apple Airpods Headphones,1,150,12/08/19 20:07,"220 Walnut St, Atlanta, GA 30301" +315531,Vareebadd Phone,1,400,12/06/19 17:27,"13 River St, San Francisco, CA 94016" +315532,AAA Batteries (4-pack),1,2.99,12/09/19 17:42,"101 Chestnut St, Los Angeles, CA 90001" +315533,Vareebadd Phone,1,400,12/19/19 14:12,"238 6th St, Atlanta, GA 30301" +315534,Lightning Charging Cable,1,14.95,12/11/19 03:19,"427 Chestnut St, Seattle, WA 98101" +315535,USB-C Charging Cable,1,11.95,12/11/19 12:38,"615 Hill St, Los Angeles, CA 90001" +315536,Lightning Charging Cable,1,14.95,12/04/19 18:54,"880 5th St, Atlanta, GA 30301" +315537,iPhone,1,700,12/25/19 01:38,"776 11th St, Dallas, TX 75001" +315538,AA Batteries (4-pack),1,3.84,12/09/19 06:30,"726 Walnut St, Seattle, WA 98101" +315539,Wired Headphones,1,11.99,12/24/19 12:00,"994 Chestnut St, Boston, MA 02215" +315540,Lightning Charging Cable,1,14.95,12/29/19 21:01,"723 Highland St, San Francisco, CA 94016" +315541,Lightning Charging Cable,1,14.95,12/12/19 02:23,"606 North St, San Francisco, CA 94016" +315542,iPhone,1,700,12/05/19 13:37,"157 Lincoln St, San Francisco, CA 94016" +315543,27in FHD Monitor,1,149.99,12/05/19 09:05,"537 Church St, Portland, OR 97035" +315544,USB-C Charging Cable,1,11.95,12/27/19 18:21,"32 Main St, Los Angeles, CA 90001" +315545,Apple Airpods Headphones,1,150,12/07/19 01:01,"127 Pine St, San Francisco, CA 94016" +315546,Wired Headphones,1,11.99,12/03/19 10:13,"749 Elm St, Los Angeles, CA 90001" +315547,34in Ultrawide Monitor,1,379.99,12/23/19 20:01,"503 River St, San Francisco, CA 94016" +315548,Google Phone,1,600,12/09/19 17:35,"20 Walnut St, Los Angeles, CA 90001" +315549,Apple Airpods Headphones,1,150,12/06/19 18:04,"298 Hill St, Boston, MA 02215" +315550,Wired Headphones,1,11.99,12/07/19 17:46,"970 Elm St, Atlanta, GA 30301" +315551,27in FHD Monitor,1,149.99,12/24/19 19:40,"872 Lake St, San Francisco, CA 94016" +315552,Macbook Pro Laptop,1,1700,12/30/19 09:07,"115 West St, San Francisco, CA 94016" +315553,AAA Batteries (4-pack),2,2.99,12/16/19 18:57,"448 2nd St, Seattle, WA 98101" +315554,AA Batteries (4-pack),1,3.84,12/12/19 09:20,"389 Madison St, Los Angeles, CA 90001" +315555,AAA Batteries (4-pack),4,2.99,12/24/19 18:52,"21 13th St, San Francisco, CA 94016" +315556,LG Washing Machine,1,600.0,12/14/19 16:29,"753 1st St, Portland, OR 97035" +315557,Google Phone,1,600,12/14/19 19:58,"740 Hill St, San Francisco, CA 94016" +315557,AA Batteries (4-pack),1,3.84,12/14/19 19:58,"740 Hill St, San Francisco, CA 94016" +315558,AAA Batteries (4-pack),1,2.99,12/19/19 04:55,"619 Washington St, New York City, NY 10001" +315559,AA Batteries (4-pack),1,3.84,12/01/19 21:24,"247 1st St, Portland, OR 97035" +315560,Wired Headphones,1,11.99,12/20/19 10:25,"313 Chestnut St, San Francisco, CA 94016" +315561,USB-C Charging Cable,1,11.95,12/04/19 12:05,"606 Lincoln St, New York City, NY 10001" +315562,Google Phone,1,600,12/09/19 14:13,"87 Maple St, Boston, MA 02215" +315563,Bose SoundSport Headphones,1,99.99,12/01/19 15:58,"93 Dogwood St, San Francisco, CA 94016" +315564,Macbook Pro Laptop,1,1700,12/31/19 20:57,"514 6th St, Seattle, WA 98101" +315565,27in 4K Gaming Monitor,1,389.99,12/08/19 09:37,"553 Hill St, Atlanta, GA 30301" +315566,USB-C Charging Cable,1,11.95,12/05/19 22:17,"956 5th St, New York City, NY 10001" +315567,Lightning Charging Cable,1,14.95,12/17/19 11:10,"710 Adams St, Seattle, WA 98101" +315568,AA Batteries (4-pack),1,3.84,12/10/19 12:34,"457 10th St, San Francisco, CA 94016" +315569,Lightning Charging Cable,1,14.95,12/15/19 16:24,"134 Forest St, Los Angeles, CA 90001" +315570,Google Phone,1,600,12/21/19 19:22,"785 Ridge St, New York City, NY 10001" +315570,Bose SoundSport Headphones,1,99.99,12/21/19 19:22,"785 Ridge St, New York City, NY 10001" +315571,Google Phone,1,600,12/11/19 19:20,"907 14th St, Portland, OR 97035" +315571,Wired Headphones,1,11.99,12/11/19 19:20,"907 14th St, Portland, OR 97035" +315572,Bose SoundSport Headphones,1,99.99,12/26/19 20:13,"293 Washington St, San Francisco, CA 94016" +315573,Lightning Charging Cable,1,14.95,12/23/19 12:28,"532 Jefferson St, New York City, NY 10001" +315574,34in Ultrawide Monitor,1,379.99,12/28/19 10:12,"382 5th St, New York City, NY 10001" +315575,27in 4K Gaming Monitor,1,389.99,12/04/19 13:37,"7 West St, Dallas, TX 75001" +315576,AAA Batteries (4-pack),1,2.99,12/29/19 19:09,"136 2nd St, Los Angeles, CA 90001" +315577,27in 4K Gaming Monitor,1,389.99,01/01/20 00:54,"233 1st St, New York City, NY 10001" +315578,Apple Airpods Headphones,1,150,12/09/19 14:52,"357 Main St, Los Angeles, CA 90001" +315579,Flatscreen TV,1,300,12/06/19 10:04,"688 6th St, San Francisco, CA 94016" +315580,Lightning Charging Cable,1,14.95,12/26/19 04:07,"419 9th St, Boston, MA 02215" +315581,AA Batteries (4-pack),2,3.84,12/25/19 15:32,"776 1st St, Dallas, TX 75001" +315582,Lightning Charging Cable,1,14.95,12/28/19 23:16,"978 6th St, Seattle, WA 98101" +315583,AAA Batteries (4-pack),1,2.99,12/05/19 22:13,"495 Chestnut St, San Francisco, CA 94016" +315584,iPhone,1,700,12/30/19 18:21,"310 North St, San Francisco, CA 94016" +315584,Lightning Charging Cable,1,14.95,12/30/19 18:21,"310 North St, San Francisco, CA 94016" +315584,Wired Headphones,1,11.99,12/30/19 18:21,"310 North St, San Francisco, CA 94016" +315585,AA Batteries (4-pack),1,3.84,12/09/19 22:01,"734 8th St, San Francisco, CA 94016" +315586,Lightning Charging Cable,1,14.95,12/06/19 08:56,"444 Jackson St, San Francisco, CA 94016" +315587,USB-C Charging Cable,1,11.95,12/19/19 12:09,"284 4th St, Los Angeles, CA 90001" +315588,AA Batteries (4-pack),2,3.84,12/16/19 22:36,"506 Johnson St, San Francisco, CA 94016" +315589,AA Batteries (4-pack),1,3.84,12/04/19 09:48,"649 Sunset St, San Francisco, CA 94016" +315590,Lightning Charging Cable,1,14.95,12/23/19 22:45,"523 Hickory St, Seattle, WA 98101" +315591,Macbook Pro Laptop,1,1700,12/20/19 13:11,"769 Park St, San Francisco, CA 94016" +315592,USB-C Charging Cable,1,11.95,12/28/19 10:39,"454 Ridge St, New York City, NY 10001" +315593,AA Batteries (4-pack),1,3.84,12/10/19 23:41,"203 7th St, San Francisco, CA 94016" +315594,20in Monitor,1,109.99,12/27/19 14:45,"6 Jefferson St, San Francisco, CA 94016" +315595,AA Batteries (4-pack),1,3.84,12/23/19 21:59,"331 7th St, New York City, NY 10001" +315596,34in Ultrawide Monitor,1,379.99,12/13/19 19:26,"400 Wilson St, Dallas, TX 75001" +315597,Apple Airpods Headphones,1,150,12/17/19 11:37,"293 4th St, New York City, NY 10001" +315598,Wired Headphones,1,11.99,12/21/19 12:03,"345 Sunset St, San Francisco, CA 94016" +315599,AA Batteries (4-pack),1,3.84,12/30/19 15:32,"716 Madison St, New York City, NY 10001" +315600,27in 4K Gaming Monitor,1,389.99,12/22/19 21:36,"958 Cherry St, Austin, TX 73301" +315601,USB-C Charging Cable,1,11.95,12/05/19 23:27,"267 Walnut St, Dallas, TX 75001" +315602,AA Batteries (4-pack),1,3.84,12/14/19 22:36,"28 Forest St, Boston, MA 02215" +315603,27in FHD Monitor,1,149.99,12/24/19 13:46,"719 Lakeview St, San Francisco, CA 94016" +315604,Lightning Charging Cable,1,14.95,12/19/19 12:53,"222 2nd St, New York City, NY 10001" +315605,AAA Batteries (4-pack),1,2.99,12/19/19 11:53,"906 6th St, New York City, NY 10001" +315606,AAA Batteries (4-pack),4,2.99,12/07/19 15:13,"793 Ridge St, New York City, NY 10001" +315607,Lightning Charging Cable,2,14.95,12/27/19 22:42,"383 7th St, San Francisco, CA 94016" +315608,27in FHD Monitor,1,149.99,12/20/19 19:42,"796 12th St, New York City, NY 10001" +315609,AAA Batteries (4-pack),3,2.99,12/13/19 06:34,"697 Hill St, Boston, MA 02215" +315610,AAA Batteries (4-pack),1,2.99,12/20/19 10:52,"530 South St, New York City, NY 10001" +315611,Lightning Charging Cable,1,14.95,12/29/19 22:44,"386 6th St, Dallas, TX 75001" +315612,AAA Batteries (4-pack),2,2.99,12/25/19 12:26,"6 9th St, San Francisco, CA 94016" +315613,iPhone,1,700,12/06/19 11:50,"6 14th St, Portland, ME 04101" +315614,Bose SoundSport Headphones,1,99.99,12/26/19 13:47,"464 Maple St, San Francisco, CA 94016" +315615,Wired Headphones,1,11.99,12/02/19 22:38,"15 Chestnut St, New York City, NY 10001" +315616,AA Batteries (4-pack),2,3.84,12/03/19 10:53,"52 Lake St, New York City, NY 10001" +315617,Lightning Charging Cable,1,14.95,12/24/19 10:10,"67 Highland St, New York City, NY 10001" +315618,AAA Batteries (4-pack),1,2.99,12/24/19 08:47,"380 Pine St, Dallas, TX 75001" +315619,AA Batteries (4-pack),1,3.84,12/03/19 22:37,"811 Church St, Dallas, TX 75001" +315620,Apple Airpods Headphones,1,150,12/17/19 02:01,"901 Jackson St, San Francisco, CA 94016" +315621,Wired Headphones,2,11.99,12/18/19 14:10,"568 Pine St, New York City, NY 10001" +315622,27in FHD Monitor,1,149.99,12/16/19 21:57,"117 North St, Portland, OR 97035" +315623,Wired Headphones,1,11.99,12/27/19 07:43,"656 Adams St, San Francisco, CA 94016" +315624,Apple Airpods Headphones,1,150,12/26/19 17:22,"527 Spruce St, Seattle, WA 98101" +315625,LG Dryer,1,600.0,12/29/19 12:16,"367 Main St, San Francisco, CA 94016" +315626,AA Batteries (4-pack),2,3.84,12/04/19 20:51,"572 14th St, Los Angeles, CA 90001" +315627,Wired Headphones,1,11.99,12/18/19 23:54,"723 Forest St, San Francisco, CA 94016" +315628,Lightning Charging Cable,1,14.95,12/26/19 22:07,"932 River St, Boston, MA 02215" +315629,Bose SoundSport Headphones,1,99.99,12/31/19 17:07,"62 Madison St, Dallas, TX 75001" +315630,Lightning Charging Cable,1,14.95,12/08/19 16:45,"164 8th St, Boston, MA 02215" +315631,USB-C Charging Cable,1,11.95,12/15/19 17:11,"812 Willow St, Portland, OR 97035" +315632,34in Ultrawide Monitor,1,379.99,12/02/19 14:15,"46 Pine St, Boston, MA 02215" +315632,USB-C Charging Cable,1,11.95,12/02/19 14:15,"46 Pine St, Boston, MA 02215" +315633,ThinkPad Laptop,1,999.99,12/28/19 12:00,"19 Forest St, Atlanta, GA 30301" +315634,Bose SoundSport Headphones,1,99.99,12/23/19 19:53,"368 Jefferson St, San Francisco, CA 94016" +315635,AAA Batteries (4-pack),2,2.99,12/23/19 23:29,"732 Pine St, Seattle, WA 98101" +315636,AA Batteries (4-pack),1,3.84,12/14/19 17:51,"160 Jackson St, Boston, MA 02215" +315637,AA Batteries (4-pack),2,3.84,12/15/19 07:31,"833 Lincoln St, Portland, OR 97035" +315638,AA Batteries (4-pack),2,3.84,12/15/19 13:15,"36 Adams St, San Francisco, CA 94016" +315639,AA Batteries (4-pack),1,3.84,12/02/19 14:22,"448 Walnut St, Los Angeles, CA 90001" +315640,Lightning Charging Cable,1,14.95,12/13/19 07:56,"301 River St, San Francisco, CA 94016" +315641,USB-C Charging Cable,1,11.95,12/26/19 10:30,"580 Jefferson St, Los Angeles, CA 90001" +315642,AAA Batteries (4-pack),1,2.99,12/24/19 22:05,"156 Park St, Los Angeles, CA 90001" +315643,USB-C Charging Cable,1,11.95,12/13/19 19:43,"521 Lakeview St, New York City, NY 10001" +315643,Apple Airpods Headphones,1,150,12/13/19 19:43,"521 Lakeview St, New York City, NY 10001" +315644,AAA Batteries (4-pack),2,2.99,12/27/19 17:33,"574 Walnut St, Boston, MA 02215" +315645,Lightning Charging Cable,1,14.95,12/01/19 10:48,"610 Washington St, Portland, OR 97035" +315646,27in FHD Monitor,1,149.99,12/02/19 13:42,"448 Forest St, New York City, NY 10001" +315647,Wired Headphones,1,11.99,12/07/19 09:42,"936 Madison St, Los Angeles, CA 90001" +315648,USB-C Charging Cable,1,11.95,12/18/19 19:23,"571 Madison St, Seattle, WA 98101" +315649,Flatscreen TV,1,300,12/26/19 16:25,"172 13th St, Portland, OR 97035" +315650,Apple Airpods Headphones,1,150,12/28/19 13:15,"872 Meadow St, San Francisco, CA 94016" +315651,Wired Headphones,1,11.99,12/31/19 22:55,"22 South St, Portland, OR 97035" +315652,AAA Batteries (4-pack),3,2.99,12/19/19 12:50,"17 6th St, Boston, MA 02215" +315653,ThinkPad Laptop,1,999.99,12/15/19 05:32,"698 Hickory St, Boston, MA 02215" +315654,Apple Airpods Headphones,1,150,12/28/19 17:43,"602 Elm St, Austin, TX 73301" +315655,Apple Airpods Headphones,1,150,12/19/19 11:13,"859 Meadow St, Los Angeles, CA 90001" +315656,Apple Airpods Headphones,1,150,12/19/19 18:08,"511 Main St, Atlanta, GA 30301" +315657,27in FHD Monitor,1,149.99,12/26/19 23:59,"507 Lincoln St, Seattle, WA 98101" +315658,USB-C Charging Cable,1,11.95,12/22/19 18:47,"371 Sunset St, Boston, MA 02215" +315659,Lightning Charging Cable,1,14.95,12/07/19 16:33,"640 Dogwood St, Seattle, WA 98101" +315660,AAA Batteries (4-pack),1,2.99,12/31/19 21:54,"36 Spruce St, Los Angeles, CA 90001" +315661,27in 4K Gaming Monitor,1,389.99,12/13/19 00:58,"920 Adams St, San Francisco, CA 94016" +315662,AA Batteries (4-pack),1,3.84,12/08/19 17:39,"689 13th St, Dallas, TX 75001" +315663,Google Phone,1,600,12/13/19 23:49,"812 Cedar St, Austin, TX 73301" +315664,Lightning Charging Cable,1,14.95,12/15/19 15:44,"280 Cedar St, San Francisco, CA 94016" +315665,Lightning Charging Cable,1,14.95,12/06/19 08:14,"273 Willow St, Austin, TX 73301" +315666,27in 4K Gaming Monitor,1,389.99,12/13/19 01:53,"305 Hill St, New York City, NY 10001" +315667,20in Monitor,1,109.99,12/26/19 16:01,"20 Spruce St, Portland, OR 97035" +315668,AAA Batteries (4-pack),1,2.99,12/21/19 14:58,"203 10th St, San Francisco, CA 94016" +315669,AAA Batteries (4-pack),1,2.99,12/14/19 21:13,"319 Willow St, Atlanta, GA 30301" +315670,AAA Batteries (4-pack),3,2.99,12/21/19 11:08,"556 13th St, New York City, NY 10001" +315671,Flatscreen TV,1,300,12/27/19 23:32,"937 Chestnut St, New York City, NY 10001" +315672,Macbook Pro Laptop,1,1700,12/21/19 12:22,"176 Adams St, Portland, OR 97035" +315673,Google Phone,1,600,12/18/19 10:55,"359 Lake St, Los Angeles, CA 90001" +315674,Wired Headphones,1,11.99,12/27/19 18:03,"968 Chestnut St, Seattle, WA 98101" +315674,Lightning Charging Cable,1,14.95,12/27/19 18:03,"968 Chestnut St, Seattle, WA 98101" +315675,Wired Headphones,1,11.99,12/08/19 17:08,"568 West St, Dallas, TX 75001" +315676,Wired Headphones,1,11.99,12/13/19 19:46,"138 Chestnut St, Dallas, TX 75001" +315677,Macbook Pro Laptop,1,1700,12/03/19 20:53,"467 2nd St, Boston, MA 02215" +315678,Flatscreen TV,1,300,12/29/19 21:09,"201 Chestnut St, New York City, NY 10001" +315679,USB-C Charging Cable,1,11.95,12/03/19 08:51,"510 13th St, New York City, NY 10001" +315680,Wired Headphones,1,11.99,12/27/19 11:51,"636 10th St, Boston, MA 02215" +315681,AAA Batteries (4-pack),2,2.99,12/12/19 07:31,"659 West St, Austin, TX 73301" +315682,AAA Batteries (4-pack),1,2.99,12/31/19 20:22,"236 Jefferson St, Portland, OR 97035" +315683,Apple Airpods Headphones,1,150,12/02/19 20:52,"356 13th St, Boston, MA 02215" +315684,Macbook Pro Laptop,1,1700,12/21/19 22:17,"726 7th St, Atlanta, GA 30301" +315685,AAA Batteries (4-pack),1,2.99,12/04/19 02:54,"984 Highland St, Atlanta, GA 30301" +315686,Wired Headphones,1,11.99,12/18/19 15:27,"781 Park St, Atlanta, GA 30301" +315687,AAA Batteries (4-pack),1,2.99,12/17/19 16:06,"685 Ridge St, San Francisco, CA 94016" +315688,Wired Headphones,1,11.99,12/18/19 11:13,"9 Chestnut St, Atlanta, GA 30301" +315689,Wired Headphones,1,11.99,12/22/19 20:00,"476 7th St, Los Angeles, CA 90001" +315690,USB-C Charging Cable,1,11.95,12/15/19 13:31,"998 Elm St, San Francisco, CA 94016" +315691,USB-C Charging Cable,1,11.95,12/15/19 16:40,"970 Johnson St, Los Angeles, CA 90001" +315692,AA Batteries (4-pack),1,3.84,12/27/19 13:31,"260 Lakeview St, Dallas, TX 75001" +315693,34in Ultrawide Monitor,1,379.99,12/01/19 17:24,"606 2nd St, San Francisco, CA 94016" +315694,Wired Headphones,1,11.99,12/28/19 14:29,"492 Walnut St, Boston, MA 02215" +315695,USB-C Charging Cable,1,11.95,12/06/19 21:10,"243 Highland St, San Francisco, CA 94016" +315696,USB-C Charging Cable,1,11.95,12/02/19 12:33,"498 Jackson St, San Francisco, CA 94016" +315697,AAA Batteries (4-pack),1,2.99,12/17/19 13:49,"858 Park St, New York City, NY 10001" +315698,Google Phone,1,600,12/27/19 21:10,"209 Lincoln St, San Francisco, CA 94016" +315699,AA Batteries (4-pack),4,3.84,12/23/19 11:30,"929 Lake St, Dallas, TX 75001" +315700,Wired Headphones,1,11.99,12/15/19 06:13,"25 South St, Dallas, TX 75001" +315701,USB-C Charging Cable,1,11.95,12/29/19 13:22,"457 Sunset St, Austin, TX 73301" +315702,Bose SoundSport Headphones,1,99.99,12/24/19 19:26,"172 Center St, Portland, OR 97035" +315703,AAA Batteries (4-pack),1,2.99,12/08/19 13:38,"310 14th St, Portland, ME 04101" +315704,Apple Airpods Headphones,1,150,12/24/19 11:06,"209 4th St, Boston, MA 02215" +315705,Lightning Charging Cable,1,14.95,12/08/19 10:37,"675 7th St, Boston, MA 02215" +315706,iPhone,1,700,12/28/19 09:21,"727 Ridge St, Seattle, WA 98101" +315707,Bose SoundSport Headphones,1,99.99,12/02/19 09:15,"161 Highland St, Atlanta, GA 30301" +315708,AA Batteries (4-pack),1,3.84,12/04/19 11:26,"520 Adams St, Boston, MA 02215" +315709,USB-C Charging Cable,1,11.95,12/01/19 10:11,"869 Sunset St, Los Angeles, CA 90001" +315710,AA Batteries (4-pack),1,3.84,12/13/19 09:26,"863 Highland St, Los Angeles, CA 90001" +315711,Macbook Pro Laptop,1,1700,12/23/19 16:14,"62 Forest St, Seattle, WA 98101" +315712,27in FHD Monitor,1,149.99,12/22/19 09:44,"773 Sunset St, Atlanta, GA 30301" +315713,AAA Batteries (4-pack),2,2.99,12/03/19 11:36,"63 Sunset St, San Francisco, CA 94016" +315714,AAA Batteries (4-pack),3,2.99,12/05/19 19:42,"928 11th St, Los Angeles, CA 90001" +315715,Wired Headphones,1,11.99,12/16/19 19:47,"853 Maple St, Dallas, TX 75001" +315716,AAA Batteries (4-pack),1,2.99,12/01/19 20:30,"137 Jefferson St, Atlanta, GA 30301" +315717,AA Batteries (4-pack),1,3.84,12/07/19 08:47,"985 North St, Seattle, WA 98101" +315718,Apple Airpods Headphones,1,150,12/07/19 18:30,"754 9th St, New York City, NY 10001" +315719,Lightning Charging Cable,1,14.95,12/01/19 13:51,"44 Spruce St, Los Angeles, CA 90001" +315720,AAA Batteries (4-pack),2,2.99,12/04/19 20:20,"482 Jackson St, New York City, NY 10001" +315721,Wired Headphones,1,11.99,12/01/19 19:04,"444 South St, Boston, MA 02215" +315722,Macbook Pro Laptop,1,1700,12/23/19 20:15,"996 Meadow St, Portland, OR 97035" +315723,27in FHD Monitor,1,149.99,12/25/19 20:51,"909 1st St, Boston, MA 02215" +315724,USB-C Charging Cable,1,11.95,12/10/19 09:50,"735 Forest St, San Francisco, CA 94016" +315725,27in FHD Monitor,1,149.99,12/28/19 18:17,"772 Chestnut St, Boston, MA 02215" +315726,USB-C Charging Cable,1,11.95,12/28/19 20:56,"255 River St, New York City, NY 10001" +315727,Flatscreen TV,1,300,12/17/19 22:16,"747 Jefferson St, Austin, TX 73301" +315728,ThinkPad Laptop,1,999.99,12/01/19 19:53,"19 Dogwood St, Los Angeles, CA 90001" +315729,iPhone,1,700,12/01/19 15:30,"683 West St, New York City, NY 10001" +315730,Lightning Charging Cable,1,14.95,12/07/19 13:51,"930 Chestnut St, San Francisco, CA 94016" +315731,USB-C Charging Cable,1,11.95,12/21/19 20:32,"408 Cherry St, Seattle, WA 98101" +315732,Flatscreen TV,1,300,12/26/19 13:26,"351 Adams St, Boston, MA 02215" +315733,34in Ultrawide Monitor,1,379.99,12/09/19 22:44,"560 6th St, Atlanta, GA 30301" +315734,AAA Batteries (4-pack),1,2.99,12/30/19 16:24,"659 Center St, Los Angeles, CA 90001" +315735,Wired Headphones,1,11.99,12/09/19 19:30,"481 Highland St, San Francisco, CA 94016" +315736,AA Batteries (4-pack),1,3.84,12/26/19 10:50,"747 Cedar St, San Francisco, CA 94016" +315737,Lightning Charging Cable,1,14.95,12/10/19 19:32,"921 Hill St, Austin, TX 73301" +315738,Google Phone,1,600,12/08/19 19:16,"366 Lakeview St, San Francisco, CA 94016" +315739,AAA Batteries (4-pack),3,2.99,12/05/19 11:59,"939 Pine St, Portland, OR 97035" +315740,Wired Headphones,1,11.99,12/04/19 01:03,"478 12th St, New York City, NY 10001" +315741,AA Batteries (4-pack),1,3.84,12/06/19 03:46,"889 Sunset St, Los Angeles, CA 90001" +315742,Wired Headphones,2,11.99,12/09/19 21:51,"666 Lakeview St, Austin, TX 73301" +315743,Wired Headphones,1,11.99,12/07/19 22:22,"311 14th St, Boston, MA 02215" +315744,Bose SoundSport Headphones,1,99.99,12/17/19 20:58,"483 Center St, Portland, ME 04101" +315745,Wired Headphones,1,11.99,12/17/19 00:34,"367 14th St, San Francisco, CA 94016" +315746,Lightning Charging Cable,1,14.95,12/19/19 19:09,"129 Jefferson St, New York City, NY 10001" +315747,Wired Headphones,1,11.99,12/30/19 06:08,"436 North St, Los Angeles, CA 90001" +315748,iPhone,1,700,12/01/19 13:05,"537 10th St, Dallas, TX 75001" +315749,Wired Headphones,1,11.99,12/27/19 16:52,"936 9th St, Dallas, TX 75001" +315750,AA Batteries (4-pack),1,3.84,12/20/19 21:55,"891 14th St, Dallas, TX 75001" +315751,ThinkPad Laptop,1,999.99,12/11/19 10:12,"111 Dogwood St, Dallas, TX 75001" +315752,AA Batteries (4-pack),1,3.84,12/03/19 11:57,"745 Lake St, San Francisco, CA 94016" +315753,Bose SoundSport Headphones,1,99.99,12/17/19 18:26,"27 Forest St, San Francisco, CA 94016" +315754,USB-C Charging Cable,1,11.95,12/01/19 19:49,"732 West St, Austin, TX 73301" +315755,Apple Airpods Headphones,1,150,12/15/19 07:45,"890 Spruce St, San Francisco, CA 94016" +315756,Lightning Charging Cable,1,14.95,12/11/19 12:41,"698 Adams St, Dallas, TX 75001" +315757,34in Ultrawide Monitor,1,379.99,12/07/19 07:14,"394 Jefferson St, Los Angeles, CA 90001" +315758,Apple Airpods Headphones,1,150,12/27/19 13:13,"325 Chestnut St, San Francisco, CA 94016" +315759,Flatscreen TV,1,300,12/26/19 23:20,"44 5th St, Boston, MA 02215" +315760,Apple Airpods Headphones,1,150,12/26/19 22:57,"352 Jackson St, Dallas, TX 75001" +315761,27in FHD Monitor,1,149.99,12/14/19 20:57,"53 Jackson St, Los Angeles, CA 90001" +315762,27in FHD Monitor,1,149.99,12/19/19 13:54,"53 Lincoln St, Los Angeles, CA 90001" +315763,AA Batteries (4-pack),1,3.84,12/22/19 10:27,"889 Cedar St, San Francisco, CA 94016" +315764,USB-C Charging Cable,1,11.95,12/07/19 23:53,"57 12th St, San Francisco, CA 94016" +315765,iPhone,1,700,12/07/19 20:04,"985 Pine St, Boston, MA 02215" +315766,AA Batteries (4-pack),1,3.84,12/30/19 19:57,"625 Spruce St, Atlanta, GA 30301" +315767,AAA Batteries (4-pack),1,2.99,12/08/19 12:34,"856 Lakeview St, Dallas, TX 75001" +315768,AA Batteries (4-pack),1,3.84,12/07/19 10:51,"265 Hill St, San Francisco, CA 94016" +315769,Apple Airpods Headphones,1,150,12/08/19 18:51,"693 5th St, Boston, MA 02215" +315770,iPhone,1,700,12/22/19 13:31,"841 Forest St, San Francisco, CA 94016" +315771,AA Batteries (4-pack),2,3.84,12/08/19 17:18,"271 2nd St, New York City, NY 10001" +315772,USB-C Charging Cable,1,11.95,12/09/19 07:38,"968 12th St, Atlanta, GA 30301" +315773,iPhone,1,700,12/25/19 17:03,"112 9th St, Los Angeles, CA 90001" +315774,Bose SoundSport Headphones,1,99.99,01/01/20 02:38,"566 North St, New York City, NY 10001" +315775,27in FHD Monitor,1,149.99,12/31/19 19:15,"849 Lakeview St, Los Angeles, CA 90001" +315776,Apple Airpods Headphones,1,150,12/08/19 06:47,"673 5th St, Atlanta, GA 30301" +315777,Bose SoundSport Headphones,1,99.99,12/04/19 09:40,"975 Park St, San Francisco, CA 94016" +315778,Apple Airpods Headphones,1,150,12/10/19 06:48,"628 Walnut St, Seattle, WA 98101" +315779,Bose SoundSport Headphones,1,99.99,12/20/19 18:54,"763 Dogwood St, Portland, OR 97035" +315780,AAA Batteries (4-pack),1,2.99,12/11/19 20:35,"51 Main St, New York City, NY 10001" +315781,27in 4K Gaming Monitor,1,389.99,12/07/19 17:34,"425 4th St, Atlanta, GA 30301" +315782,AAA Batteries (4-pack),2,2.99,12/01/19 17:34,"40 Chestnut St, San Francisco, CA 94016" +315783,ThinkPad Laptop,1,999.99,12/30/19 08:24,"224 Jefferson St, San Francisco, CA 94016" +315784,Vareebadd Phone,1,400,12/26/19 23:47,"233 14th St, Boston, MA 02215" +315784,USB-C Charging Cable,1,11.95,12/26/19 23:47,"233 14th St, Boston, MA 02215" +315785,Apple Airpods Headphones,1,150,12/31/19 17:34,"47 Lake St, San Francisco, CA 94016" +315786,Wired Headphones,1,11.99,12/26/19 17:30,"464 Hickory St, Atlanta, GA 30301" +315787,ThinkPad Laptop,1,999.99,12/14/19 17:13,"443 11th St, Los Angeles, CA 90001" +315788,20in Monitor,1,109.99,12/28/19 21:27,"553 7th St, San Francisco, CA 94016" +315789,Vareebadd Phone,1,400,12/27/19 20:36,"205 Dogwood St, Boston, MA 02215" +315790,34in Ultrawide Monitor,1,379.99,12/02/19 14:02,"541 Elm St, Dallas, TX 75001" +315791,Wired Headphones,1,11.99,12/06/19 16:21,"157 Cedar St, Dallas, TX 75001" +315792,Wired Headphones,1,11.99,12/22/19 08:32,"675 Johnson St, Boston, MA 02215" +315793,Wired Headphones,1,11.99,12/07/19 18:38,"153 Cherry St, Los Angeles, CA 90001" +315794,27in FHD Monitor,1,149.99,12/04/19 18:27,"614 13th St, San Francisco, CA 94016" +315795,AA Batteries (4-pack),1,3.84,12/02/19 01:51,"374 7th St, Los Angeles, CA 90001" +315796,Apple Airpods Headphones,1,150,12/17/19 12:35,"267 9th St, Atlanta, GA 30301" +315797,AA Batteries (4-pack),1,3.84,12/11/19 20:53,"948 1st St, San Francisco, CA 94016" +315798,AA Batteries (4-pack),2,3.84,12/11/19 15:23,"964 Forest St, Austin, TX 73301" +315799,iPhone,1,700,12/24/19 15:24,"819 Lake St, Dallas, TX 75001" +315800,iPhone,1,700,12/24/19 19:51,"103 14th St, New York City, NY 10001" +315801,Wired Headphones,1,11.99,12/27/19 13:06,"561 Meadow St, New York City, NY 10001" +315802,Bose SoundSport Headphones,1,99.99,12/07/19 16:14,"303 Lincoln St, Dallas, TX 75001" +315803,Lightning Charging Cable,1,14.95,12/21/19 20:36,"957 2nd St, San Francisco, CA 94016" +315804,AA Batteries (4-pack),1,3.84,12/20/19 22:55,"785 11th St, Los Angeles, CA 90001" +315805,iPhone,1,700,12/03/19 20:40,"782 Church St, Boston, MA 02215" +315806,iPhone,1,700,12/01/19 17:36,"724 Jackson St, San Francisco, CA 94016" +315806,Wired Headphones,1,11.99,12/01/19 17:36,"724 Jackson St, San Francisco, CA 94016" +315807,AAA Batteries (4-pack),2,2.99,12/24/19 19:25,"800 Dogwood St, Los Angeles, CA 90001" +315808,AAA Batteries (4-pack),1,2.99,12/28/19 13:01,"454 9th St, Los Angeles, CA 90001" +315809,Lightning Charging Cable,1,14.95,12/17/19 19:09,"623 Pine St, San Francisco, CA 94016" +315810,Bose SoundSport Headphones,1,99.99,12/14/19 10:07,"159 Forest St, Los Angeles, CA 90001" +315811,Wired Headphones,1,11.99,12/29/19 22:22,"605 Hickory St, San Francisco, CA 94016" +315812,AAA Batteries (4-pack),1,2.99,12/24/19 09:51,"445 13th St, Atlanta, GA 30301" +315813,Bose SoundSport Headphones,1,99.99,12/01/19 12:18,"435 Jackson St, Seattle, WA 98101" +315814,Wired Headphones,1,11.99,12/10/19 11:37,"300 Hill St, San Francisco, CA 94016" +315815,Wired Headphones,2,11.99,12/31/19 20:56,"529 2nd St, Dallas, TX 75001" +315816,Bose SoundSport Headphones,1,99.99,01/01/20 05:27,"649 9th St, Los Angeles, CA 90001" +315817,Apple Airpods Headphones,1,150,12/01/19 20:44,"785 Pine St, Atlanta, GA 30301" +315818,Apple Airpods Headphones,1,150,12/02/19 14:10,"718 Adams St, Atlanta, GA 30301" +315819,Wired Headphones,1,11.99,12/16/19 13:12,"261 13th St, Los Angeles, CA 90001" +315820,AA Batteries (4-pack),1,3.84,12/16/19 13:02,"932 Highland St, Portland, OR 97035" +315821,USB-C Charging Cable,1,11.95,12/30/19 10:29,"605 Cherry St, Los Angeles, CA 90001" +315822,Bose SoundSport Headphones,1,99.99,12/11/19 17:56,"318 5th St, San Francisco, CA 94016" +315822,Google Phone,1,600,12/11/19 17:56,"318 5th St, San Francisco, CA 94016" +315823,Apple Airpods Headphones,1,150,12/22/19 15:46,"606 7th St, San Francisco, CA 94016" +315824,Bose SoundSport Headphones,1,99.99,12/19/19 12:32,"503 4th St, San Francisco, CA 94016" +315825,AA Batteries (4-pack),1,3.84,12/31/19 12:09,"879 Walnut St, Austin, TX 73301" +315826,USB-C Charging Cable,1,11.95,12/18/19 16:00,"468 Lakeview St, Boston, MA 02215" +315827,LG Dryer,1,600.0,12/17/19 20:31,"523 Johnson St, Portland, OR 97035" +315828,USB-C Charging Cable,1,11.95,12/26/19 22:14,"396 Jackson St, Portland, ME 04101" +315829,Lightning Charging Cable,1,14.95,12/25/19 19:55,"418 12th St, Atlanta, GA 30301" +315830,Bose SoundSport Headphones,1,99.99,12/31/19 11:35,"242 Lake St, New York City, NY 10001" +315831,Lightning Charging Cable,1,14.95,12/07/19 15:30,"846 Forest St, New York City, NY 10001" +315832,AA Batteries (4-pack),1,3.84,12/03/19 14:17,"970 14th St, Seattle, WA 98101" +315833,27in 4K Gaming Monitor,1,389.99,12/03/19 23:17,"874 West St, Seattle, WA 98101" +315834,34in Ultrawide Monitor,1,379.99,12/03/19 19:50,"179 Johnson St, San Francisco, CA 94016" +315835,Macbook Pro Laptop,1,1700,12/04/19 03:25,"601 Center St, New York City, NY 10001" +315836,Bose SoundSport Headphones,1,99.99,12/04/19 17:01,"983 Highland St, San Francisco, CA 94016" +315837,AAA Batteries (4-pack),2,2.99,12/04/19 12:53,"159 Main St, Los Angeles, CA 90001" +315837,Lightning Charging Cable,1,14.95,12/04/19 12:53,"159 Main St, Los Angeles, CA 90001" +315838,AA Batteries (4-pack),1,3.84,12/10/19 13:07,"93 Sunset St, Dallas, TX 75001" +315839,iPhone,1,700,12/19/19 11:51,"233 Center St, Atlanta, GA 30301" +315840,27in FHD Monitor,1,149.99,12/19/19 21:14,"726 South St, Los Angeles, CA 90001" +315841,USB-C Charging Cable,1,11.95,12/07/19 00:10,"434 6th St, Los Angeles, CA 90001" +315842,USB-C Charging Cable,1,11.95,12/04/19 16:50,"266 1st St, Seattle, WA 98101" +315843,AA Batteries (4-pack),2,3.84,12/25/19 17:52,"268 Adams St, Los Angeles, CA 90001" +315844,Lightning Charging Cable,1,14.95,12/25/19 13:15,"514 5th St, Boston, MA 02215" +315845,AAA Batteries (4-pack),4,2.99,12/01/19 13:09,"797 Center St, Dallas, TX 75001" +315846,AAA Batteries (4-pack),2,2.99,12/09/19 17:40,"767 North St, New York City, NY 10001" +315847,27in 4K Gaming Monitor,1,389.99,12/14/19 13:21,"604 9th St, Boston, MA 02215" +315848,Bose SoundSport Headphones,1,99.99,12/31/19 09:48,"231 4th St, Boston, MA 02215" +315849,Wired Headphones,1,11.99,12/26/19 16:13,"563 9th St, Los Angeles, CA 90001" +315850,AAA Batteries (4-pack),1,2.99,12/11/19 19:38,"850 9th St, Los Angeles, CA 90001" +315851,Lightning Charging Cable,1,14.95,12/12/19 21:39,"506 Adams St, Seattle, WA 98101" +315852,Lightning Charging Cable,1,14.95,12/05/19 13:15,"381 South St, Portland, OR 97035" +315853,Lightning Charging Cable,1,14.95,12/03/19 14:02,"492 Hickory St, Los Angeles, CA 90001" +315854,Bose SoundSport Headphones,1,99.99,12/08/19 07:38,"947 Washington St, Seattle, WA 98101" +315855,Macbook Pro Laptop,1,1700,12/31/19 09:12,"156 West St, Seattle, WA 98101" +315856,AAA Batteries (4-pack),1,2.99,12/08/19 16:41,"11 Pine St, Portland, OR 97035" +315857,Macbook Pro Laptop,1,1700,12/25/19 05:34,"908 Lake St, Los Angeles, CA 90001" +315858,Lightning Charging Cable,1,14.95,12/08/19 11:03,"200 South St, Dallas, TX 75001" +315859,Wired Headphones,1,11.99,12/28/19 14:05,"533 Willow St, Atlanta, GA 30301" +315860,Apple Airpods Headphones,1,150,12/16/19 19:41,"992 Chestnut St, San Francisco, CA 94016" +315861,AAA Batteries (4-pack),1,2.99,12/18/19 07:23,"646 Sunset St, San Francisco, CA 94016" +315862,Lightning Charging Cable,1,14.95,12/21/19 05:34,"970 1st St, Portland, OR 97035" +315863,AAA Batteries (4-pack),1,2.99,12/10/19 16:22,"427 Madison St, Dallas, TX 75001" +315864,Apple Airpods Headphones,1,150,12/13/19 12:12,"92 Forest St, Los Angeles, CA 90001" +315865,Wired Headphones,1,11.99,12/21/19 20:42,"136 2nd St, San Francisco, CA 94016" +315866,AA Batteries (4-pack),1,3.84,12/19/19 15:21,"418 Spruce St, New York City, NY 10001" +315867,AA Batteries (4-pack),1,3.84,12/13/19 05:44,"651 North St, New York City, NY 10001" +315868,Apple Airpods Headphones,1,150,12/02/19 17:24,"837 Park St, Los Angeles, CA 90001" +315869,Bose SoundSport Headphones,1,99.99,12/04/19 07:50,"213 Johnson St, Boston, MA 02215" +315870,Vareebadd Phone,1,400,12/10/19 16:57,"255 Spruce St, New York City, NY 10001" +315871,AAA Batteries (4-pack),1,2.99,12/15/19 19:29,"570 Johnson St, Los Angeles, CA 90001" +315872,AAA Batteries (4-pack),2,2.99,12/21/19 20:37,"649 12th St, New York City, NY 10001" +315873,Bose SoundSport Headphones,1,99.99,12/20/19 13:06,"620 5th St, New York City, NY 10001" +315874,27in 4K Gaming Monitor,1,389.99,12/02/19 18:35,"335 Johnson St, San Francisco, CA 94016" +315875,Apple Airpods Headphones,1,150,12/30/19 22:29,"493 8th St, Los Angeles, CA 90001" +315876,34in Ultrawide Monitor,1,379.99,12/09/19 18:47,"848 Walnut St, Los Angeles, CA 90001" +315877,AA Batteries (4-pack),1,3.84,12/23/19 16:46,"806 11th St, San Francisco, CA 94016" +315878,27in 4K Gaming Monitor,1,389.99,12/16/19 15:40,"327 Jackson St, New York City, NY 10001" +315879,Lightning Charging Cable,1,14.95,12/31/19 19:56,"467 6th St, Seattle, WA 98101" +315880,Lightning Charging Cable,1,14.95,12/10/19 11:28,"917 9th St, San Francisco, CA 94016" +315881,Wired Headphones,1,11.99,12/02/19 18:56,"202 6th St, San Francisco, CA 94016" +315882,Wired Headphones,1,11.99,12/06/19 20:46,"476 Cedar St, Atlanta, GA 30301" +315883,20in Monitor,1,109.99,12/14/19 13:56,"626 10th St, San Francisco, CA 94016" +315884,Wired Headphones,1,11.99,12/24/19 21:02,"415 8th St, Los Angeles, CA 90001" +315885,USB-C Charging Cable,1,11.95,12/10/19 16:26,"168 Adams St, Boston, MA 02215" +315886,Apple Airpods Headphones,1,150,12/22/19 12:21,"103 6th St, Austin, TX 73301" +315887,Google Phone,1,600,12/20/19 19:57,"675 Cherry St, San Francisco, CA 94016" +315888,20in Monitor,1,109.99,12/31/19 09:22,"802 13th St, Atlanta, GA 30301" +315889,AAA Batteries (4-pack),2,2.99,12/10/19 10:13,"337 Jefferson St, Los Angeles, CA 90001" +315890,Wired Headphones,1,11.99,12/12/19 10:42,"825 South St, San Francisco, CA 94016" +315891,Lightning Charging Cable,2,14.95,12/16/19 14:22,"919 Chestnut St, Seattle, WA 98101" +315892,Apple Airpods Headphones,1,150,12/03/19 23:42,"463 Jackson St, San Francisco, CA 94016" +315893,Macbook Pro Laptop,1,1700,12/20/19 13:25,"452 Hill St, Atlanta, GA 30301" +315894,Lightning Charging Cable,1,14.95,12/10/19 12:13,"27 Dogwood St, Austin, TX 73301" +315895,27in 4K Gaming Monitor,1,389.99,12/31/19 18:48,"353 11th St, Portland, OR 97035" +315896,Flatscreen TV,1,300,12/08/19 23:55,"982 River St, Boston, MA 02215" +315897,Wired Headphones,1,11.99,12/11/19 11:52,"551 Main St, New York City, NY 10001" +315898,ThinkPad Laptop,1,999.99,12/04/19 23:24,"2 8th St, San Francisco, CA 94016" +315899,AA Batteries (4-pack),1,3.84,12/19/19 14:27,"522 Meadow St, Boston, MA 02215" +315900,Lightning Charging Cable,1,14.95,12/08/19 19:44,"77 North St, Austin, TX 73301" +315901,AAA Batteries (4-pack),1,2.99,12/19/19 16:05,"369 Johnson St, Boston, MA 02215" +315902,iPhone,1,700,12/20/19 19:35,"7 Spruce St, Los Angeles, CA 90001" +315902,Apple Airpods Headphones,1,150,12/20/19 19:35,"7 Spruce St, Los Angeles, CA 90001" +315903,LG Washing Machine,1,600.0,12/29/19 19:39,"271 River St, Austin, TX 73301" +315904,USB-C Charging Cable,1,11.95,12/18/19 07:46,"351 Lincoln St, San Francisco, CA 94016" +315905,AAA Batteries (4-pack),3,2.99,12/09/19 18:47,"522 Park St, Austin, TX 73301" +315906,AAA Batteries (4-pack),1,2.99,12/12/19 21:48,"901 6th St, Los Angeles, CA 90001" +315907,Bose SoundSport Headphones,1,99.99,12/04/19 17:16,"119 Hickory St, New York City, NY 10001" +315908,AAA Batteries (4-pack),1,2.99,12/21/19 11:58,"646 Church St, San Francisco, CA 94016" +315909,AAA Batteries (4-pack),1,2.99,12/08/19 11:54,"206 14th St, San Francisco, CA 94016" +315910,Wired Headphones,1,11.99,12/13/19 19:17,"591 Church St, San Francisco, CA 94016" +315911,Wired Headphones,1,11.99,12/11/19 20:22,"681 8th St, Atlanta, GA 30301" +315912,Bose SoundSport Headphones,1,99.99,12/15/19 06:20,"145 Cedar St, Los Angeles, CA 90001" +315913,AA Batteries (4-pack),1,3.84,12/04/19 13:30,"749 North St, New York City, NY 10001" +315914,USB-C Charging Cable,1,11.95,12/06/19 21:20,"809 Center St, Atlanta, GA 30301" +315915,Apple Airpods Headphones,1,150,12/25/19 15:07,"506 Church St, New York City, NY 10001" +315916,Bose SoundSport Headphones,1,99.99,12/23/19 06:33,"944 Park St, New York City, NY 10001" +315917,Vareebadd Phone,1,400,12/16/19 13:06,"495 Park St, Dallas, TX 75001" +315918,20in Monitor,1,109.99,12/11/19 16:30,"423 Lake St, San Francisco, CA 94016" +315919,AAA Batteries (4-pack),7,2.99,12/13/19 11:58,"323 Main St, New York City, NY 10001" +315920,27in 4K Gaming Monitor,1,389.99,12/08/19 10:58,"239 Pine St, Boston, MA 02215" +315921,Apple Airpods Headphones,1,150,12/22/19 22:29,"587 Spruce St, Atlanta, GA 30301" +315922,AAA Batteries (4-pack),1,2.99,12/08/19 10:26,"288 Chestnut St, Los Angeles, CA 90001" +315923,USB-C Charging Cable,1,11.95,12/19/19 20:21,"274 West St, San Francisco, CA 94016" +315924,Bose SoundSport Headphones,1,99.99,12/07/19 11:04,"922 West St, San Francisco, CA 94016" +315925,AA Batteries (4-pack),1,3.84,12/04/19 13:05,"602 Hill St, San Francisco, CA 94016" +315926,Lightning Charging Cable,1,14.95,12/11/19 13:28,"158 Meadow St, San Francisco, CA 94016" +315927,Wired Headphones,1,11.99,12/25/19 12:44,"216 Forest St, San Francisco, CA 94016" +315928,20in Monitor,1,109.99,12/26/19 14:16,"338 Lakeview St, San Francisco, CA 94016" +315929,Lightning Charging Cable,1,14.95,12/04/19 09:39,"964 Walnut St, Seattle, WA 98101" +315930,Lightning Charging Cable,1,14.95,12/07/19 18:39,"944 Park St, Boston, MA 02215" +315931,Apple Airpods Headphones,1,150,12/06/19 20:07,"21 Church St, San Francisco, CA 94016" +315932,Lightning Charging Cable,1,14.95,12/06/19 12:06,"244 Hickory St, Dallas, TX 75001" +315933,27in FHD Monitor,1,149.99,12/10/19 19:54,"195 Meadow St, Los Angeles, CA 90001" +315934,AAA Batteries (4-pack),1,2.99,12/28/19 15:54,"14 Hill St, Portland, OR 97035" +315935,iPhone,1,700,12/30/19 12:26,"755 West St, Los Angeles, CA 90001" +315935,Wired Headphones,1,11.99,12/30/19 12:26,"755 West St, Los Angeles, CA 90001" +315936,Apple Airpods Headphones,1,150,12/06/19 11:36,"945 11th St, New York City, NY 10001" +315937,AAA Batteries (4-pack),2,2.99,12/13/19 17:25,"469 Highland St, Atlanta, GA 30301" +315938,Macbook Pro Laptop,1,1700,12/04/19 18:48,"227 Main St, San Francisco, CA 94016" +315939,AA Batteries (4-pack),2,3.84,12/20/19 20:01,"291 Hill St, San Francisco, CA 94016" +315940,Lightning Charging Cable,1,14.95,12/20/19 22:33,"542 7th St, Los Angeles, CA 90001" +315941,Lightning Charging Cable,1,14.95,12/02/19 23:36,"864 Lincoln St, Portland, OR 97035" +315942,AAA Batteries (4-pack),1,2.99,12/06/19 15:02,"498 Sunset St, Atlanta, GA 30301" +315943,AAA Batteries (4-pack),2,2.99,12/02/19 18:26,"420 Washington St, San Francisco, CA 94016" +315944,USB-C Charging Cable,1,11.95,12/11/19 14:17,"266 Meadow St, Seattle, WA 98101" +315945,Apple Airpods Headphones,1,150,12/22/19 09:48,"13 North St, San Francisco, CA 94016" +315946,Lightning Charging Cable,1,14.95,12/03/19 22:20,"24 Jackson St, Portland, OR 97035" +315947,27in FHD Monitor,1,149.99,12/20/19 21:01,"152 5th St, Dallas, TX 75001" +315948,USB-C Charging Cable,1,11.95,12/06/19 16:28,"66 South St, San Francisco, CA 94016" +315949,AA Batteries (4-pack),2,3.84,12/20/19 11:41,"883 Center St, San Francisco, CA 94016" +315950,Bose SoundSport Headphones,1,99.99,12/06/19 00:35,"526 Hill St, Dallas, TX 75001" +315951,USB-C Charging Cable,1,11.95,12/31/19 11:19,"144 Ridge St, Los Angeles, CA 90001" +315952,Apple Airpods Headphones,1,150,12/25/19 11:03,"129 Willow St, Dallas, TX 75001" +315953,AAA Batteries (4-pack),5,2.99,12/26/19 23:02,"219 10th St, Austin, TX 73301" +315954,Flatscreen TV,1,300,12/12/19 13:51,"633 Dogwood St, Boston, MA 02215" +315955,AA Batteries (4-pack),1,3.84,12/29/19 17:11,"467 11th St, New York City, NY 10001" +315956,AA Batteries (4-pack),1,3.84,12/08/19 14:05,"917 Lake St, Boston, MA 02215" +315957,AAA Batteries (4-pack),1,2.99,12/31/19 18:54,"976 Forest St, San Francisco, CA 94016" +315958,34in Ultrawide Monitor,1,379.99,12/10/19 01:15,"266 Maple St, San Francisco, CA 94016" +315959,AA Batteries (4-pack),1,3.84,12/17/19 16:22,"596 Lakeview St, New York City, NY 10001" +315960,Apple Airpods Headphones,1,150,12/10/19 08:42,"484 Jackson St, Atlanta, GA 30301" +315961,AAA Batteries (4-pack),1,2.99,12/20/19 21:46,"728 Lincoln St, Austin, TX 73301" +315962,AAA Batteries (4-pack),1,2.99,12/26/19 15:50,"547 Main St, San Francisco, CA 94016" +315963,27in FHD Monitor,1,149.99,12/20/19 15:02,"203 14th St, Dallas, TX 75001" +315964,34in Ultrawide Monitor,1,379.99,12/23/19 16:44,"95 Lincoln St, Austin, TX 73301" +315965,Macbook Pro Laptop,1,1700,12/03/19 20:38,"911 Washington St, San Francisco, CA 94016" +315966,AA Batteries (4-pack),1,3.84,12/14/19 17:40,"293 Lincoln St, Dallas, TX 75001" +315967,Google Phone,1,600,12/15/19 14:56,"919 Cherry St, Atlanta, GA 30301" +315968,Lightning Charging Cable,1,14.95,12/15/19 14:11,"652 12th St, Los Angeles, CA 90001" +315969,Vareebadd Phone,1,400,12/21/19 10:56,"156 11th St, Austin, TX 73301" +315970,Bose SoundSport Headphones,1,99.99,12/17/19 08:43,"911 14th St, Portland, OR 97035" +315970,USB-C Charging Cable,1,11.95,12/17/19 08:43,"911 14th St, Portland, OR 97035" +315971,AAA Batteries (4-pack),1,2.99,12/20/19 12:32,"44 Ridge St, San Francisco, CA 94016" +315972,27in 4K Gaming Monitor,1,389.99,12/20/19 23:13,"444 Sunset St, San Francisco, CA 94016" +315973,Wired Headphones,1,11.99,12/10/19 23:30,"669 4th St, Los Angeles, CA 90001" +315974,USB-C Charging Cable,1,11.95,12/20/19 08:02,"180 North St, Los Angeles, CA 90001" +315975,Apple Airpods Headphones,1,150,12/06/19 18:11,"122 4th St, New York City, NY 10001" +315976,20in Monitor,1,109.99,12/29/19 12:10,"95 West St, Atlanta, GA 30301" +315977,Lightning Charging Cable,1,14.95,12/19/19 10:43,"77 Wilson St, Los Angeles, CA 90001" +315978,iPhone,1,700,12/12/19 22:58,"216 Walnut St, Austin, TX 73301" +315979,AA Batteries (4-pack),1,3.84,12/28/19 16:42,"746 Cherry St, San Francisco, CA 94016" +315980,27in FHD Monitor,1,149.99,12/05/19 20:47,"836 Elm St, Atlanta, GA 30301" +315981,AAA Batteries (4-pack),1,2.99,12/15/19 17:22,"780 1st St, San Francisco, CA 94016" +315982,Wired Headphones,1,11.99,12/08/19 10:21,"698 Johnson St, Boston, MA 02215" +315983,USB-C Charging Cable,1,11.95,12/24/19 16:44,"864 North St, San Francisco, CA 94016" +315984,AA Batteries (4-pack),1,3.84,12/03/19 13:51,"961 Main St, Los Angeles, CA 90001" +315985,AAA Batteries (4-pack),1,2.99,12/11/19 10:17,"5 Cedar St, New York City, NY 10001" +315986,USB-C Charging Cable,1,11.95,12/20/19 17:20,"205 Jackson St, San Francisco, CA 94016" +315987,Macbook Pro Laptop,1,1700,12/18/19 11:45,"588 11th St, Boston, MA 02215" +315988,Lightning Charging Cable,1,14.95,12/15/19 12:59,"802 Elm St, Atlanta, GA 30301" +315989,Apple Airpods Headphones,1,150,12/04/19 22:42,"292 7th St, Los Angeles, CA 90001" +315989,Wired Headphones,1,11.99,12/04/19 22:42,"292 7th St, Los Angeles, CA 90001" +315990,Bose SoundSport Headphones,1,99.99,12/22/19 15:35,"417 11th St, Los Angeles, CA 90001" +315991,AAA Batteries (4-pack),1,2.99,12/02/19 22:24,"743 Highland St, San Francisco, CA 94016" +315992,27in FHD Monitor,1,149.99,12/09/19 16:20,"352 Center St, San Francisco, CA 94016" +315993,Lightning Charging Cable,1,14.95,12/14/19 15:07,"19 Willow St, San Francisco, CA 94016" +315994,AAA Batteries (4-pack),1,2.99,12/27/19 15:10,"256 Walnut St, San Francisco, CA 94016" +315995,AA Batteries (4-pack),1,3.84,12/10/19 17:45,"523 1st St, San Francisco, CA 94016" +315996,Apple Airpods Headphones,1,150,12/26/19 23:05,"846 Cedar St, Austin, TX 73301" +315997,AAA Batteries (4-pack),3,2.99,12/12/19 22:29,"963 8th St, Boston, MA 02215" +315998,Google Phone,1,600,12/28/19 15:46,"574 Spruce St, Los Angeles, CA 90001" +315999,Lightning Charging Cable,1,14.95,12/08/19 01:31,"120 Cherry St, Dallas, TX 75001" +316000,Google Phone,1,600,12/31/19 11:13,"404 Lincoln St, Seattle, WA 98101" +316001,Apple Airpods Headphones,1,150,12/25/19 12:52,"772 Meadow St, Atlanta, GA 30301" +316002,AA Batteries (4-pack),1,3.84,12/08/19 12:23,"585 Willow St, Austin, TX 73301" +316003,AAA Batteries (4-pack),1,2.99,12/30/19 19:12,"749 8th St, San Francisco, CA 94016" +316004,Wired Headphones,1,11.99,12/21/19 20:04,"602 Lakeview St, Austin, TX 73301" +316005,Google Phone,1,600,12/11/19 23:03,"823 Center St, San Francisco, CA 94016" +316006,AAA Batteries (4-pack),1,2.99,12/29/19 12:04,"619 Cedar St, Los Angeles, CA 90001" +316007,27in 4K Gaming Monitor,1,389.99,12/01/19 13:04,"511 5th St, San Francisco, CA 94016" +316008,AA Batteries (4-pack),1,3.84,12/21/19 07:54,"817 13th St, San Francisco, CA 94016" +316009,Lightning Charging Cable,1,14.95,12/03/19 11:45,"140 1st St, Los Angeles, CA 90001" +316010,Wired Headphones,1,11.99,12/17/19 10:11,"899 Johnson St, San Francisco, CA 94016" +316011,Lightning Charging Cable,1,14.95,12/08/19 18:22,"77 14th St, Los Angeles, CA 90001" +316012,34in Ultrawide Monitor,1,379.99,12/29/19 17:05,"670 4th St, San Francisco, CA 94016" +316013,AA Batteries (4-pack),1,3.84,12/16/19 08:00,"871 Ridge St, Portland, OR 97035" +316014,Flatscreen TV,1,300,12/16/19 17:10,"329 Hickory St, San Francisco, CA 94016" +316015,AA Batteries (4-pack),1,3.84,12/31/19 09:22,"611 Church St, Los Angeles, CA 90001" +316016,Lightning Charging Cable,1,14.95,12/14/19 09:44,"125 Hill St, Dallas, TX 75001" +316017,Lightning Charging Cable,1,14.95,12/31/19 07:57,"633 West St, Boston, MA 02215" +316018,27in FHD Monitor,1,149.99,12/31/19 08:37,"980 North St, Portland, ME 04101" +316019,Bose SoundSport Headphones,1,99.99,12/22/19 18:05,"714 North St, New York City, NY 10001" +316020,ThinkPad Laptop,1,999.99,12/17/19 12:28,"30 North St, San Francisco, CA 94016" +316021,AA Batteries (4-pack),1,3.84,12/01/19 15:43,"101 Ridge St, Atlanta, GA 30301" +316022,AA Batteries (4-pack),1,3.84,12/12/19 21:34,"504 Center St, New York City, NY 10001" +316023,AA Batteries (4-pack),1,3.84,12/08/19 14:48,"744 Center St, Boston, MA 02215" +316024,Lightning Charging Cable,1,14.95,12/21/19 18:17,"220 Cherry St, San Francisco, CA 94016" +316025,USB-C Charging Cable,1,11.95,12/29/19 15:32,"1 7th St, Los Angeles, CA 90001" +316026,USB-C Charging Cable,1,11.95,12/02/19 12:08,"196 Cherry St, San Francisco, CA 94016" +316027,Apple Airpods Headphones,1,150,12/08/19 11:38,"897 Dogwood St, Boston, MA 02215" +316028,Apple Airpods Headphones,1,150,12/03/19 11:15,"69 Lincoln St, Dallas, TX 75001" +316029,Lightning Charging Cable,1,14.95,12/30/19 19:27,"870 Johnson St, New York City, NY 10001" +316030,USB-C Charging Cable,1,11.95,12/08/19 18:12,"635 River St, San Francisco, CA 94016" +316031,Wired Headphones,1,11.99,12/26/19 22:40,"109 South St, San Francisco, CA 94016" +316032,AAA Batteries (4-pack),2,2.99,12/25/19 19:31,"761 Main St, New York City, NY 10001" +316033,AA Batteries (4-pack),1,3.84,12/14/19 09:24,"472 8th St, Austin, TX 73301" +316034,Lightning Charging Cable,1,14.95,12/11/19 09:05,"767 5th St, Los Angeles, CA 90001" +316035,Wired Headphones,1,11.99,12/15/19 16:32,"770 West St, Austin, TX 73301" +316036,USB-C Charging Cable,2,11.95,12/15/19 12:03,"667 Wilson St, Portland, OR 97035" +316037,Macbook Pro Laptop,1,1700,12/28/19 12:49,"855 Forest St, San Francisco, CA 94016" +316038,Flatscreen TV,1,300,12/19/19 18:35,"292 Washington St, Boston, MA 02215" +316039,AAA Batteries (4-pack),1,2.99,12/18/19 20:56,"435 Adams St, Seattle, WA 98101" +316040,27in FHD Monitor,1,149.99,12/23/19 22:40,"271 Lake St, Dallas, TX 75001" +316041,Wired Headphones,1,11.99,12/23/19 20:43,"43 11th St, Portland, OR 97035" +316042,Wired Headphones,1,11.99,12/30/19 21:05,"987 2nd St, New York City, NY 10001" +316043,Bose SoundSport Headphones,1,99.99,12/06/19 18:31,"303 Maple St, Atlanta, GA 30301" +316044,Google Phone,1,600,12/09/19 16:53,"317 Dogwood St, Atlanta, GA 30301" +316045,Flatscreen TV,1,300,12/23/19 22:45,"213 5th St, Boston, MA 02215" +316046,Wired Headphones,1,11.99,12/03/19 06:33,"172 10th St, Los Angeles, CA 90001" +316047,AA Batteries (4-pack),2,3.84,12/07/19 14:25,"529 6th St, Dallas, TX 75001" +316048,Bose SoundSport Headphones,1,99.99,12/04/19 14:52,"541 Cherry St, Atlanta, GA 30301" +316049,Lightning Charging Cable,1,14.95,12/05/19 17:14,"795 5th St, Los Angeles, CA 90001" +316050,Bose SoundSport Headphones,1,99.99,12/07/19 12:17,"196 Madison St, Los Angeles, CA 90001" +316051,USB-C Charging Cable,1,11.95,12/16/19 15:43,"486 Jackson St, San Francisco, CA 94016" +316052,Lightning Charging Cable,1,14.95,12/10/19 10:21,"45 Lincoln St, San Francisco, CA 94016" +316053,Wired Headphones,1,11.99,12/29/19 10:05,"126 Dogwood St, Los Angeles, CA 90001" +316054,Flatscreen TV,1,300,12/15/19 13:19,"839 Cedar St, San Francisco, CA 94016" +316055,Lightning Charging Cable,1,14.95,12/05/19 18:42,"559 2nd St, Los Angeles, CA 90001" +316056,Bose SoundSport Headphones,1,99.99,12/03/19 19:06,"515 Cherry St, Boston, MA 02215" +316057,Bose SoundSport Headphones,1,99.99,12/20/19 18:17,"357 Park St, Dallas, TX 75001" +316058,Bose SoundSport Headphones,1,99.99,12/02/19 01:42,"252 Park St, Portland, OR 97035" +316059,Lightning Charging Cable,1,14.95,12/07/19 08:58,"829 Main St, Boston, MA 02215" +316060,Wired Headphones,1,11.99,12/05/19 19:32,"360 6th St, Los Angeles, CA 90001" +316060,Wired Headphones,1,11.99,12/05/19 19:32,"360 6th St, Los Angeles, CA 90001" +316061,Lightning Charging Cable,1,14.95,12/07/19 14:23,"855 Cherry St, Seattle, WA 98101" +316062,LG Dryer,1,600.0,12/02/19 16:59,"4 Willow St, Boston, MA 02215" +316063,Vareebadd Phone,1,400,12/14/19 12:03,"801 13th St, Boston, MA 02215" +316064,Lightning Charging Cable,1,14.95,12/30/19 07:29,"18 Jackson St, Los Angeles, CA 90001" +316065,Apple Airpods Headphones,1,150,12/25/19 12:22,"867 6th St, New York City, NY 10001" +316066,AAA Batteries (4-pack),3,2.99,12/21/19 21:21,"701 Park St, New York City, NY 10001" +316067,iPhone,1,700,12/21/19 11:59,"931 Meadow St, New York City, NY 10001" +316068,27in 4K Gaming Monitor,1,389.99,12/25/19 08:50,"108 2nd St, Atlanta, GA 30301" +316069,USB-C Charging Cable,1,11.95,12/07/19 09:28,"808 9th St, Dallas, TX 75001" +316070,34in Ultrawide Monitor,1,379.99,12/16/19 01:21,"342 Wilson St, Los Angeles, CA 90001" +316071,Wired Headphones,1,11.99,12/05/19 15:12,"464 Jefferson St, Dallas, TX 75001" +316072,Lightning Charging Cable,2,14.95,12/06/19 12:33,"563 Spruce St, Los Angeles, CA 90001" +316073,ThinkPad Laptop,1,999.99,12/05/19 10:00,"849 Church St, Atlanta, GA 30301" +316074,Apple Airpods Headphones,1,150,12/30/19 14:41,"217 Pine St, Boston, MA 02215" +316074,Lightning Charging Cable,1,14.95,12/30/19 14:41,"217 Pine St, Boston, MA 02215" +316075,Bose SoundSport Headphones,1,99.99,12/09/19 19:55,"47 South St, Atlanta, GA 30301" +316075,Lightning Charging Cable,1,14.95,12/09/19 19:55,"47 South St, Atlanta, GA 30301" +316076,Wired Headphones,1,11.99,12/07/19 21:05,"275 2nd St, Los Angeles, CA 90001" +316077,34in Ultrawide Monitor,1,379.99,12/25/19 05:37,"661 4th St, Los Angeles, CA 90001" +316078,Lightning Charging Cable,1,14.95,12/26/19 14:15,"644 Lincoln St, San Francisco, CA 94016" +316079,AA Batteries (4-pack),1,3.84,12/03/19 11:07,"447 Jackson St, Dallas, TX 75001" +316080,USB-C Charging Cable,1,11.95,12/15/19 18:25,"926 Elm St, Boston, MA 02215" +316081,USB-C Charging Cable,1,11.95,12/30/19 17:27,"925 Jackson St, Atlanta, GA 30301" +316082,USB-C Charging Cable,1,11.95,12/06/19 20:13,"355 Walnut St, Atlanta, GA 30301" +316083,Bose SoundSport Headphones,1,99.99,12/25/19 20:16,"735 Madison St, Seattle, WA 98101" +316084,USB-C Charging Cable,1,11.95,12/02/19 20:28,"135 Maple St, San Francisco, CA 94016" +316085,AA Batteries (4-pack),1,3.84,12/17/19 15:57,"208 5th St, San Francisco, CA 94016" +316086,27in 4K Gaming Monitor,1,389.99,12/18/19 09:33,"679 11th St, San Francisco, CA 94016" +316087,Wired Headphones,1,11.99,12/06/19 20:12,"897 5th St, Los Angeles, CA 90001" +316088,AA Batteries (4-pack),1,3.84,12/19/19 13:55,"970 Willow St, Los Angeles, CA 90001" +316089,Vareebadd Phone,1,400,12/02/19 16:40,"944 Madison St, Dallas, TX 75001" +316089,USB-C Charging Cable,1,11.95,12/02/19 16:40,"944 Madison St, Dallas, TX 75001" +316090,AAA Batteries (4-pack),1,2.99,12/29/19 15:09,"269 Ridge St, Austin, TX 73301" +316091,USB-C Charging Cable,1,11.95,12/16/19 07:03,"679 Lake St, Los Angeles, CA 90001" +316092,27in 4K Gaming Monitor,1,389.99,12/20/19 13:56,"521 10th St, San Francisco, CA 94016" +316093,Wired Headphones,1,11.99,12/09/19 23:21,"147 Jackson St, Los Angeles, CA 90001" +316094,27in FHD Monitor,1,149.99,12/21/19 21:08,"827 River St, San Francisco, CA 94016" +316095,Lightning Charging Cable,1,14.95,12/16/19 15:38,"969 Meadow St, Atlanta, GA 30301" +316096,USB-C Charging Cable,1,11.95,12/07/19 20:25,"670 Jackson St, Los Angeles, CA 90001" +316097,Apple Airpods Headphones,1,150,12/03/19 00:40,"979 Chestnut St, Boston, MA 02215" +316097,Apple Airpods Headphones,1,150,12/03/19 00:40,"979 Chestnut St, Boston, MA 02215" +316098,AA Batteries (4-pack),1,3.84,12/11/19 12:51,"8 5th St, New York City, NY 10001" +316099,Lightning Charging Cable,1,14.95,12/18/19 01:37,"165 7th St, New York City, NY 10001" +316100,34in Ultrawide Monitor,1,379.99,12/17/19 12:22,"445 Willow St, Portland, ME 04101" +316101,Vareebadd Phone,1,400,12/16/19 00:00,"77 Willow St, Boston, MA 02215" +316102,27in 4K Gaming Monitor,1,389.99,12/12/19 23:10,"235 Highland St, Dallas, TX 75001" +316103,USB-C Charging Cable,4,11.95,12/04/19 16:59,"142 West St, San Francisco, CA 94016" +316104,USB-C Charging Cable,1,11.95,12/25/19 09:02,"144 Meadow St, San Francisco, CA 94016" +316105,USB-C Charging Cable,1,11.95,12/17/19 18:18,"166 8th St, San Francisco, CA 94016" +316106,Google Phone,1,600,12/15/19 03:58,"544 Dogwood St, Seattle, WA 98101" +316107,Apple Airpods Headphones,1,150,12/07/19 00:02,"380 12th St, Atlanta, GA 30301" +316108,USB-C Charging Cable,1,11.95,12/02/19 16:58,"817 Sunset St, Portland, OR 97035" +316109,Apple Airpods Headphones,1,150,12/10/19 16:54,"104 Park St, New York City, NY 10001" +316110,Bose SoundSport Headphones,1,99.99,12/08/19 21:17,"404 Walnut St, Austin, TX 73301" +316111,AA Batteries (4-pack),1,3.84,12/26/19 20:38,"211 10th St, San Francisco, CA 94016" +316112,USB-C Charging Cable,1,11.95,12/23/19 19:04,"50 Elm St, Los Angeles, CA 90001" +316113,iPhone,1,700,12/13/19 12:58,"209 North St, Los Angeles, CA 90001" +316114,Google Phone,1,600,12/24/19 13:38,"38 Spruce St, Atlanta, GA 30301" +316115,ThinkPad Laptop,1,999.99,12/27/19 11:12,"979 12th St, Boston, MA 02215" +316116,Apple Airpods Headphones,1,150,12/20/19 12:29,"297 West St, Los Angeles, CA 90001" +316117,20in Monitor,1,109.99,12/18/19 01:12,"207 Sunset St, Dallas, TX 75001" +316118,AAA Batteries (4-pack),1,2.99,12/14/19 21:46,"831 4th St, New York City, NY 10001" +316119,Google Phone,1,600,12/28/19 11:59,"451 Lincoln St, Austin, TX 73301" +316120,34in Ultrawide Monitor,1,379.99,12/03/19 08:11,"627 Park St, Atlanta, GA 30301" +316121,AA Batteries (4-pack),1,3.84,12/13/19 22:09,"289 4th St, San Francisco, CA 94016" +316122,Lightning Charging Cable,1,14.95,12/21/19 18:17,"600 Maple St, New York City, NY 10001" +316123,Lightning Charging Cable,1,14.95,12/17/19 23:16,"86 Johnson St, San Francisco, CA 94016" +316124,Lightning Charging Cable,1,14.95,12/19/19 20:39,"563 Spruce St, New York City, NY 10001" +316124,AA Batteries (4-pack),3,3.84,12/19/19 20:39,"563 Spruce St, New York City, NY 10001" +316125,Lightning Charging Cable,1,14.95,12/30/19 16:26,"677 Dogwood St, Austin, TX 73301" +316126,Google Phone,1,600,12/27/19 01:32,"439 Ridge St, Los Angeles, CA 90001" +316127,Wired Headphones,2,11.99,12/04/19 20:07,"698 River St, Los Angeles, CA 90001" +316128,AA Batteries (4-pack),1,3.84,12/23/19 13:44,"973 Lincoln St, San Francisco, CA 94016" +316129,Wired Headphones,1,11.99,12/30/19 19:24,"718 13th St, New York City, NY 10001" +316130,iPhone,1,700,12/12/19 07:47,"471 Walnut St, New York City, NY 10001" +316130,Apple Airpods Headphones,1,150,12/12/19 07:47,"471 Walnut St, New York City, NY 10001" +316131,Flatscreen TV,1,300,12/10/19 09:32,"820 Maple St, Austin, TX 73301" +316132,Macbook Pro Laptop,1,1700,12/23/19 14:18,"270 14th St, Boston, MA 02215" +316133,USB-C Charging Cable,1,11.95,12/12/19 14:15,"845 Ridge St, Los Angeles, CA 90001" +316134,USB-C Charging Cable,1,11.95,12/09/19 01:28,"493 Jackson St, Los Angeles, CA 90001" +316135,AA Batteries (4-pack),1,3.84,12/02/19 16:51,"896 11th St, Dallas, TX 75001" +316136,USB-C Charging Cable,1,11.95,12/20/19 18:21,"730 Ridge St, San Francisco, CA 94016" +316137,27in 4K Gaming Monitor,1,389.99,12/07/19 13:24,"534 Main St, Portland, OR 97035" +316138,Bose SoundSport Headphones,1,99.99,12/31/19 21:12,"339 Center St, Boston, MA 02215" +316139,Lightning Charging Cable,1,14.95,12/23/19 15:40,"512 Cedar St, Austin, TX 73301" +316140,AA Batteries (4-pack),1,3.84,12/10/19 09:07,"604 Adams St, Los Angeles, CA 90001" +316141,USB-C Charging Cable,1,11.95,12/21/19 01:47,"602 Sunset St, Seattle, WA 98101" +316142,Lightning Charging Cable,1,14.95,12/07/19 20:18,"370 Highland St, Boston, MA 02215" +316143,Apple Airpods Headphones,1,150,12/22/19 18:27,"206 Dogwood St, San Francisco, CA 94016" +316144,Lightning Charging Cable,1,14.95,12/22/19 23:15,"561 7th St, Boston, MA 02215" +316145,Wired Headphones,1,11.99,12/02/19 17:40,"984 Church St, Boston, MA 02215" +316146,USB-C Charging Cable,3,11.95,12/27/19 10:18,"483 Johnson St, New York City, NY 10001" +316147,Lightning Charging Cable,1,14.95,12/14/19 12:26,"631 North St, Boston, MA 02215" +316148,Lightning Charging Cable,1,14.95,12/10/19 14:59,"208 8th St, Austin, TX 73301" +316149,AAA Batteries (4-pack),1,2.99,12/02/19 14:04,"281 1st St, New York City, NY 10001" +316150,USB-C Charging Cable,1,11.95,12/19/19 15:55,"116 Spruce St, New York City, NY 10001" +316151,AAA Batteries (4-pack),1,2.99,12/24/19 13:22,"574 10th St, New York City, NY 10001" +316152,AA Batteries (4-pack),1,3.84,12/10/19 22:26,"836 10th St, Seattle, WA 98101" +316153,Flatscreen TV,1,300,12/12/19 19:18,"491 Hill St, New York City, NY 10001" +316154,AAA Batteries (4-pack),1,2.99,12/27/19 14:00,"77 Hickory St, New York City, NY 10001" +316155,Bose SoundSport Headphones,2,99.99,12/05/19 12:35,"795 2nd St, Dallas, TX 75001" +316156,27in 4K Gaming Monitor,1,389.99,12/21/19 21:27,"499 South St, Los Angeles, CA 90001" +316157,USB-C Charging Cable,1,11.95,12/02/19 16:03,"795 Cherry St, Los Angeles, CA 90001" +316158,Lightning Charging Cable,1,14.95,12/23/19 16:02,"699 River St, Seattle, WA 98101" +316159,iPhone,1,700,12/25/19 13:27,"356 South St, San Francisco, CA 94016" +316160,Bose SoundSport Headphones,1,99.99,12/22/19 22:13,"821 South St, Portland, OR 97035" +316161,Lightning Charging Cable,1,14.95,12/30/19 09:12,"811 Walnut St, San Francisco, CA 94016" +316162,ThinkPad Laptop,1,999.99,12/11/19 22:05,"936 7th St, Atlanta, GA 30301" +316163,AA Batteries (4-pack),2,3.84,12/23/19 18:53,"947 5th St, Dallas, TX 75001" +316164,Lightning Charging Cable,1,14.95,12/27/19 14:58,"661 2nd St, Dallas, TX 75001" +316165,Macbook Pro Laptop,1,1700,12/21/19 13:00,"471 Chestnut St, Atlanta, GA 30301" +316166,AAA Batteries (4-pack),1,2.99,12/10/19 14:48,"637 North St, New York City, NY 10001" +316167,AA Batteries (4-pack),1,3.84,12/05/19 13:28,"16 Willow St, San Francisco, CA 94016" +316168,AAA Batteries (4-pack),1,2.99,12/16/19 05:46,"95 7th St, Los Angeles, CA 90001" +316169,Wired Headphones,1,11.99,12/08/19 19:27,"746 14th St, Boston, MA 02215" +316170,Bose SoundSport Headphones,1,99.99,12/03/19 17:53,"13 7th St, Boston, MA 02215" +316171,USB-C Charging Cable,1,11.95,12/26/19 18:03,"293 Spruce St, San Francisco, CA 94016" +316172,USB-C Charging Cable,1,11.95,12/13/19 13:15,"172 7th St, Atlanta, GA 30301" +316173,Lightning Charging Cable,1,14.95,12/30/19 22:19,"55 Ridge St, Boston, MA 02215" +316174,iPhone,1,700,12/30/19 07:24,"516 1st St, San Francisco, CA 94016" +316175,AA Batteries (4-pack),1,3.84,12/12/19 21:31,"796 Church St, Boston, MA 02215" +316176,Bose SoundSport Headphones,1,99.99,12/22/19 12:09,"153 River St, New York City, NY 10001" +316177,AA Batteries (4-pack),1,3.84,12/15/19 19:55,"572 9th St, San Francisco, CA 94016" +316178,USB-C Charging Cable,1,11.95,12/14/19 18:04,"273 Adams St, New York City, NY 10001" +316179,27in 4K Gaming Monitor,1,389.99,12/19/19 22:12,"427 Main St, Los Angeles, CA 90001" +316180,Apple Airpods Headphones,1,150,12/03/19 09:31,"322 Jackson St, San Francisco, CA 94016" +316181,27in FHD Monitor,1,149.99,12/20/19 14:40,"209 Chestnut St, Boston, MA 02215" +316182,AAA Batteries (4-pack),1,2.99,12/25/19 08:44,"924 Washington St, Boston, MA 02215" +316183,AAA Batteries (4-pack),1,2.99,12/31/19 14:59,"572 Lincoln St, Boston, MA 02215" +316184,Apple Airpods Headphones,1,150,12/03/19 20:23,"813 Johnson St, Los Angeles, CA 90001" +316185,Lightning Charging Cable,1,14.95,12/18/19 10:42,"110 10th St, Boston, MA 02215" +316186,Lightning Charging Cable,1,14.95,12/13/19 12:12,"548 Spruce St, San Francisco, CA 94016" +316187,Bose SoundSport Headphones,1,99.99,12/09/19 09:19,"609 Center St, Dallas, TX 75001" +316188,Lightning Charging Cable,1,14.95,12/05/19 17:19,"836 Walnut St, Seattle, WA 98101" +316189,27in 4K Gaming Monitor,1,389.99,12/22/19 14:07,"82 1st St, Atlanta, GA 30301" +,,,,, +316190,Lightning Charging Cable,1,14.95,12/08/19 09:32,"375 Lincoln St, New York City, NY 10001" +316191,Bose SoundSport Headphones,1,99.99,12/29/19 20:28,"383 Jefferson St, San Francisco, CA 94016" +316192,USB-C Charging Cable,1,11.95,12/17/19 18:03,"137 Park St, New York City, NY 10001" +316193,Apple Airpods Headphones,1,150,12/29/19 14:00,"693 7th St, New York City, NY 10001" +316194,Bose SoundSport Headphones,1,99.99,12/09/19 20:24,"495 9th St, San Francisco, CA 94016" +316195,34in Ultrawide Monitor,1,379.99,12/21/19 21:54,"795 Center St, New York City, NY 10001" +316196,27in 4K Gaming Monitor,1,389.99,12/26/19 11:57,"43 Cherry St, Portland, ME 04101" +316197,iPhone,1,700,12/26/19 20:39,"168 South St, New York City, NY 10001" +316198,Wired Headphones,1,11.99,12/21/19 00:45,"354 Chestnut St, Los Angeles, CA 90001" +316199,Lightning Charging Cable,1,14.95,12/23/19 09:36,"261 7th St, San Francisco, CA 94016" +316200,Bose SoundSport Headphones,1,99.99,12/11/19 21:53,"600 Cherry St, Seattle, WA 98101" +316201,Apple Airpods Headphones,1,150,12/11/19 11:59,"704 Maple St, Dallas, TX 75001" +316202,Wired Headphones,1,11.99,12/15/19 22:22,"210 Hickory St, Atlanta, GA 30301" +316203,Lightning Charging Cable,2,14.95,12/17/19 10:00,"816 Highland St, Boston, MA 02215" +316204,Lightning Charging Cable,1,14.95,12/13/19 20:15,"104 12th St, Boston, MA 02215" +316205,27in 4K Gaming Monitor,1,389.99,12/11/19 10:07,"36 West St, New York City, NY 10001" +316206,USB-C Charging Cable,1,11.95,12/23/19 15:11,"80 Washington St, Boston, MA 02215" +316207,Apple Airpods Headphones,1,150,12/06/19 15:02,"75 2nd St, Los Angeles, CA 90001" +316208,Bose SoundSport Headphones,1,99.99,12/30/19 11:33,"788 West St, Dallas, TX 75001" +316209,AA Batteries (4-pack),1,3.84,12/21/19 17:59,"800 North St, San Francisco, CA 94016" +316210,Apple Airpods Headphones,1,150,12/31/19 21:36,"49 Forest St, Boston, MA 02215" +316211,Wired Headphones,1,11.99,12/06/19 14:42,"142 8th St, Portland, OR 97035" +316212,Lightning Charging Cable,1,14.95,12/27/19 10:56,"921 Cedar St, Los Angeles, CA 90001" +316213,Wired Headphones,1,11.99,12/31/19 22:49,"782 West St, Portland, OR 97035" +316214,Bose SoundSport Headphones,1,99.99,12/13/19 19:52,"372 Jefferson St, San Francisco, CA 94016" +316215,Apple Airpods Headphones,1,150,12/14/19 08:19,"248 Pine St, Boston, MA 02215" +316216,AA Batteries (4-pack),1,3.84,12/03/19 23:26,"179 River St, Austin, TX 73301" +316217,27in FHD Monitor,1,149.99,12/04/19 11:48,"41 12th St, New York City, NY 10001" +316218,AAA Batteries (4-pack),2,2.99,12/18/19 20:59,"154 Lincoln St, Los Angeles, CA 90001" +316219,Lightning Charging Cable,1,14.95,12/31/19 22:31,"424 Willow St, Seattle, WA 98101" +316220,USB-C Charging Cable,1,11.95,12/26/19 15:58,"470 10th St, San Francisco, CA 94016" +316221,AAA Batteries (4-pack),1,2.99,12/27/19 16:28,"635 Ridge St, Seattle, WA 98101" +316222,Bose SoundSport Headphones,1,99.99,12/21/19 18:04,"427 8th St, San Francisco, CA 94016" +316223,AAA Batteries (4-pack),1,2.99,12/06/19 12:27,"696 Church St, San Francisco, CA 94016" +316224,USB-C Charging Cable,1,11.95,12/25/19 21:54,"844 Jackson St, Los Angeles, CA 90001" +316225,AA Batteries (4-pack),1,3.84,12/20/19 16:48,"355 North St, Portland, OR 97035" +316226,27in FHD Monitor,1,149.99,12/26/19 20:57,"226 Hickory St, Seattle, WA 98101" +316227,USB-C Charging Cable,1,11.95,12/25/19 06:16,"16 1st St, Los Angeles, CA 90001" +316228,Wired Headphones,1,11.99,12/25/19 11:59,"927 Jefferson St, New York City, NY 10001" +316229,Lightning Charging Cable,1,14.95,12/02/19 23:28,"466 Madison St, Dallas, TX 75001" +316230,Wired Headphones,1,11.99,12/11/19 22:53,"559 Spruce St, San Francisco, CA 94016" +316231,ThinkPad Laptop,1,999.99,12/06/19 13:38,"261 Lakeview St, Dallas, TX 75001" +316232,AA Batteries (4-pack),1,3.84,12/04/19 12:59,"866 Cherry St, Atlanta, GA 30301" +316233,Macbook Pro Laptop,1,1700,12/10/19 07:54,"998 Johnson St, Seattle, WA 98101" +316233,AAA Batteries (4-pack),2,2.99,12/10/19 07:54,"998 Johnson St, Seattle, WA 98101" +316234,AAA Batteries (4-pack),2,2.99,12/09/19 18:28,"59 Cherry St, San Francisco, CA 94016" +316235,Apple Airpods Headphones,1,150,12/09/19 13:24,"720 West St, San Francisco, CA 94016" +316236,Lightning Charging Cable,2,14.95,12/04/19 19:57,"160 Maple St, Atlanta, GA 30301" +316237,Lightning Charging Cable,1,14.95,12/31/19 11:09,"922 West St, Los Angeles, CA 90001" +316238,Bose SoundSport Headphones,1,99.99,12/08/19 23:10,"946 6th St, Dallas, TX 75001" +316239,Lightning Charging Cable,1,14.95,12/29/19 09:04,"37 1st St, Portland, ME 04101" +,,,,, +316240,Wired Headphones,2,11.99,12/10/19 18:03,"300 11th St, San Francisco, CA 94016" +316241,27in 4K Gaming Monitor,1,389.99,12/05/19 16:23,"168 Main St, New York City, NY 10001" +316242,AAA Batteries (4-pack),3,2.99,12/15/19 15:19,"893 Madison St, Los Angeles, CA 90001" +316243,Lightning Charging Cable,1,14.95,12/09/19 11:55,"637 13th St, Portland, OR 97035" +316244,AAA Batteries (4-pack),2,2.99,12/29/19 21:04,"581 River St, San Francisco, CA 94016" +316245,20in Monitor,1,109.99,12/20/19 21:50,"969 13th St, Austin, TX 73301" +316245,34in Ultrawide Monitor,1,379.99,12/20/19 21:50,"969 13th St, Austin, TX 73301" +316246,USB-C Charging Cable,1,11.95,12/18/19 22:04,"923 Chestnut St, San Francisco, CA 94016" +316247,AA Batteries (4-pack),1,3.84,12/12/19 06:19,"343 8th St, Atlanta, GA 30301" +316248,Macbook Pro Laptop,1,1700,12/08/19 10:33,"143 Forest St, Portland, ME 04101" +316249,34in Ultrawide Monitor,1,379.99,12/29/19 09:49,"432 2nd St, San Francisco, CA 94016" +316250,AA Batteries (4-pack),3,3.84,12/05/19 04:17,"153 Meadow St, San Francisco, CA 94016" +316251,Vareebadd Phone,1,400,01/01/20 00:51,"713 5th St, New York City, NY 10001" +316252,Wired Headphones,1,11.99,12/17/19 21:48,"52 Wilson St, Portland, ME 04101" +316253,AA Batteries (4-pack),1,3.84,12/24/19 18:00,"717 6th St, Atlanta, GA 30301" +316254,Flatscreen TV,1,300,12/20/19 14:01,"710 Dogwood St, Dallas, TX 75001" +316255,AAA Batteries (4-pack),1,2.99,12/16/19 16:03,"731 Church St, Los Angeles, CA 90001" +316255,Flatscreen TV,1,300,12/16/19 16:03,"731 Church St, Los Angeles, CA 90001" +316256,Bose SoundSport Headphones,1,99.99,12/04/19 14:53,"868 2nd St, Austin, TX 73301" +316257,Flatscreen TV,1,300,12/08/19 01:56,"592 Sunset St, Portland, OR 97035" +316258,USB-C Charging Cable,1,11.95,12/27/19 09:27,"594 River St, Los Angeles, CA 90001" +316259,Macbook Pro Laptop,1,1700,12/31/19 23:10,"711 Walnut St, Los Angeles, CA 90001" +316260,Bose SoundSport Headphones,1,99.99,12/11/19 12:56,"295 Maple St, Dallas, TX 75001" +316261,Apple Airpods Headphones,1,150,12/05/19 18:12,"32 Cherry St, Atlanta, GA 30301" +316262,USB-C Charging Cable,1,11.95,12/22/19 09:13,"390 10th St, San Francisco, CA 94016" +316263,AA Batteries (4-pack),2,3.84,12/20/19 19:00,"490 2nd St, Los Angeles, CA 90001" +316264,AAA Batteries (4-pack),1,2.99,12/25/19 21:15,"421 Willow St, Seattle, WA 98101" +316265,Wired Headphones,1,11.99,12/11/19 12:45,"604 Dogwood St, San Francisco, CA 94016" +316266,27in 4K Gaming Monitor,1,389.99,12/27/19 14:25,"619 11th St, New York City, NY 10001" +316266,Bose SoundSport Headphones,1,99.99,12/27/19 14:25,"619 11th St, New York City, NY 10001" +316267,AA Batteries (4-pack),1,3.84,12/31/19 16:07,"599 Wilson St, Portland, OR 97035" +316268,AAA Batteries (4-pack),3,2.99,12/26/19 11:53,"725 10th St, San Francisco, CA 94016" +316269,Wired Headphones,1,11.99,12/15/19 18:14,"317 Madison St, Seattle, WA 98101" +316270,Lightning Charging Cable,1,14.95,12/24/19 19:48,"21 1st St, Boston, MA 02215" +316271,AAA Batteries (4-pack),1,2.99,12/05/19 12:01,"704 West St, San Francisco, CA 94016" +316272,USB-C Charging Cable,1,11.95,12/06/19 13:30,"761 Spruce St, Seattle, WA 98101" +316273,AAA Batteries (4-pack),2,2.99,12/21/19 12:51,"129 Madison St, San Francisco, CA 94016" +316274,Bose SoundSport Headphones,1,99.99,12/26/19 09:03,"158 Jackson St, Los Angeles, CA 90001" +316275,USB-C Charging Cable,1,11.95,12/26/19 21:48,"670 14th St, San Francisco, CA 94016" +316276,iPhone,1,700,12/08/19 20:42,"56 11th St, Portland, OR 97035" +316276,Apple Airpods Headphones,2,150,12/08/19 20:42,"56 11th St, Portland, OR 97035" +316277,Lightning Charging Cable,1,14.95,12/19/19 12:26,"602 Church St, Dallas, TX 75001" +316278,20in Monitor,1,109.99,12/16/19 11:43,"933 Wilson St, New York City, NY 10001" +316279,Wired Headphones,1,11.99,12/17/19 09:13,"148 7th St, San Francisco, CA 94016" +316280,Lightning Charging Cable,2,14.95,12/24/19 09:22,"832 River St, Boston, MA 02215" +316281,34in Ultrawide Monitor,1,379.99,12/12/19 18:41,"371 2nd St, Austin, TX 73301" +316282,Wired Headphones,1,11.99,12/10/19 18:12,"732 Johnson St, Los Angeles, CA 90001" +316283,AA Batteries (4-pack),1,3.84,12/14/19 10:46,"619 Forest St, Atlanta, GA 30301" +316284,USB-C Charging Cable,1,11.95,12/25/19 12:20,"895 Pine St, Austin, TX 73301" +316285,Flatscreen TV,1,300,12/16/19 22:04,"429 Ridge St, Atlanta, GA 30301" +316286,Wired Headphones,1,11.99,12/18/19 18:00,"2 River St, Seattle, WA 98101" +316287,Wired Headphones,1,11.99,12/06/19 17:41,"633 5th St, New York City, NY 10001" +316288,Wired Headphones,1,11.99,12/13/19 18:34,"534 Park St, Austin, TX 73301" +316289,Wired Headphones,1,11.99,12/08/19 06:34,"209 Johnson St, Atlanta, GA 30301" +316290,LG Washing Machine,1,600.0,12/13/19 13:12,"859 2nd St, New York City, NY 10001" +316291,Wired Headphones,1,11.99,12/12/19 11:58,"578 6th St, Los Angeles, CA 90001" +316292,iPhone,1,700,12/03/19 09:24,"942 Spruce St, San Francisco, CA 94016" +316293,Apple Airpods Headphones,1,150,12/11/19 14:08,"992 Hill St, Dallas, TX 75001" +316294,27in FHD Monitor,1,149.99,12/08/19 12:49,"534 Elm St, Austin, TX 73301" +316295,AAA Batteries (4-pack),1,2.99,12/02/19 15:53,"33 Lake St, San Francisco, CA 94016" +316296,Lightning Charging Cable,1,14.95,12/26/19 19:25,"854 Forest St, San Francisco, CA 94016" +316297,27in 4K Gaming Monitor,1,389.99,12/19/19 18:08,"928 6th St, New York City, NY 10001" +316298,Apple Airpods Headphones,1,150,12/10/19 12:49,"726 West St, Atlanta, GA 30301" +316299,USB-C Charging Cable,2,11.95,12/01/19 21:35,"161 13th St, Seattle, WA 98101" +316300,AA Batteries (4-pack),3,3.84,12/29/19 11:34,"51 Spruce St, Dallas, TX 75001" +316301,Flatscreen TV,1,300,12/08/19 14:24,"94 8th St, San Francisco, CA 94016" +316302,Wired Headphones,1,11.99,12/28/19 16:08,"252 Lake St, Portland, ME 04101" +316303,Lightning Charging Cable,2,14.95,12/15/19 11:07,"973 Ridge St, Los Angeles, CA 90001" +316304,Vareebadd Phone,1,400,12/19/19 21:38,"643 Hill St, Los Angeles, CA 90001" +316305,Wired Headphones,1,11.99,12/03/19 11:25,"667 Johnson St, Dallas, TX 75001" +316306,Vareebadd Phone,1,400,12/01/19 19:49,"635 Ridge St, San Francisco, CA 94016" +316306,USB-C Charging Cable,1,11.95,12/01/19 19:49,"635 Ridge St, San Francisco, CA 94016" +316307,Google Phone,1,600,12/18/19 09:00,"404 Wilson St, Los Angeles, CA 90001" +316308,USB-C Charging Cable,1,11.95,12/24/19 11:22,"345 Lincoln St, Austin, TX 73301" +316309,Lightning Charging Cable,1,14.95,12/13/19 00:46,"574 Elm St, Los Angeles, CA 90001" +316310,Vareebadd Phone,1,400,12/14/19 00:30,"652 Chestnut St, San Francisco, CA 94016" +316311,USB-C Charging Cable,1,11.95,12/08/19 22:12,"785 5th St, Austin, TX 73301" +316312,AAA Batteries (4-pack),1,2.99,12/15/19 20:39,"441 Adams St, New York City, NY 10001" +316313,USB-C Charging Cable,1,11.95,12/02/19 11:39,"501 Church St, New York City, NY 10001" +316314,Apple Airpods Headphones,1,150,12/05/19 20:56,"152 Johnson St, Los Angeles, CA 90001" +316315,USB-C Charging Cable,1,11.95,12/17/19 10:31,"365 Wilson St, Los Angeles, CA 90001" +316316,AAA Batteries (4-pack),2,2.99,12/12/19 19:07,"984 North St, Dallas, TX 75001" +316317,Wired Headphones,1,11.99,12/03/19 22:06,"836 10th St, Boston, MA 02215" +316318,Lightning Charging Cable,1,14.95,12/17/19 09:31,"485 Lincoln St, Dallas, TX 75001" +316319,AA Batteries (4-pack),1,3.84,12/30/19 13:39,"73 Johnson St, New York City, NY 10001" +316320,Bose SoundSport Headphones,1,99.99,12/24/19 22:30,"518 Hickory St, Dallas, TX 75001" +316320,AAA Batteries (4-pack),1,2.99,12/24/19 22:30,"518 Hickory St, Dallas, TX 75001" +316321,AAA Batteries (4-pack),1,2.99,12/04/19 13:00,"952 12th St, Los Angeles, CA 90001" +316322,AAA Batteries (4-pack),1,2.99,12/16/19 07:10,"814 West St, San Francisco, CA 94016" +316323,Apple Airpods Headphones,1,150,12/24/19 14:51,"908 Highland St, Seattle, WA 98101" +316324,AAA Batteries (4-pack),1,2.99,12/08/19 11:12,"441 13th St, Dallas, TX 75001" +316325,Lightning Charging Cable,1,14.95,12/01/19 17:22,"380 Walnut St, Atlanta, GA 30301" +316326,AAA Batteries (4-pack),5,2.99,12/04/19 06:55,"853 Spruce St, Seattle, WA 98101" +316327,Apple Airpods Headphones,1,150,12/22/19 18:45,"332 Madison St, Los Angeles, CA 90001" +316328,Apple Airpods Headphones,1,150,12/11/19 17:27,"78 10th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +316329,Apple Airpods Headphones,1,150,12/18/19 12:01,"819 West St, Portland, OR 97035" +316330,Apple Airpods Headphones,1,150,12/26/19 09:49,"30 Lake St, Portland, OR 97035" +316331,Lightning Charging Cable,1,14.95,12/14/19 15:18,"99 Sunset St, New York City, NY 10001" +316332,Bose SoundSport Headphones,1,99.99,12/05/19 18:56,"976 10th St, San Francisco, CA 94016" +316333,USB-C Charging Cable,2,11.95,12/13/19 13:12,"768 Cherry St, Seattle, WA 98101" +316334,Flatscreen TV,1,300,12/22/19 16:20,"834 Cherry St, San Francisco, CA 94016" +316335,Bose SoundSport Headphones,1,99.99,12/21/19 06:27,"746 Willow St, Boston, MA 02215" +316336,iPhone,1,700,12/02/19 18:04,"534 7th St, Dallas, TX 75001" +316337,AAA Batteries (4-pack),1,2.99,12/10/19 13:42,"511 7th St, Los Angeles, CA 90001" +316338,27in FHD Monitor,1,149.99,12/02/19 22:49,"507 Willow St, San Francisco, CA 94016" +316339,Google Phone,1,600,12/01/19 20:28,"936 Pine St, New York City, NY 10001" +316339,USB-C Charging Cable,1,11.95,12/01/19 20:28,"936 Pine St, New York City, NY 10001" +316340,27in FHD Monitor,1,149.99,12/12/19 18:24,"434 Dogwood St, San Francisco, CA 94016" +316341,Wired Headphones,1,11.99,12/25/19 15:49,"180 Johnson St, San Francisco, CA 94016" +316342,USB-C Charging Cable,1,11.95,12/26/19 15:27,"721 Meadow St, Los Angeles, CA 90001" +316343,USB-C Charging Cable,1,11.95,12/18/19 18:01,"876 Church St, Dallas, TX 75001" +316344,Wired Headphones,1,11.99,12/26/19 12:55,"954 Forest St, New York City, NY 10001" +316345,USB-C Charging Cable,1,11.95,12/22/19 21:57,"50 Cherry St, San Francisco, CA 94016" +316346,Lightning Charging Cable,1,14.95,12/17/19 19:46,"846 Pine St, San Francisco, CA 94016" +316347,iPhone,1,700,12/27/19 23:50,"443 Forest St, Boston, MA 02215" +316348,Wired Headphones,1,11.99,12/27/19 21:43,"768 Walnut St, San Francisco, CA 94016" +316349,ThinkPad Laptop,1,999.99,12/19/19 10:56,"665 Elm St, Dallas, TX 75001" +316350,Lightning Charging Cable,1,14.95,12/22/19 21:25,"917 Jackson St, San Francisco, CA 94016" +316351,Flatscreen TV,1,300,12/22/19 19:12,"336 Johnson St, San Francisco, CA 94016" +316352,Vareebadd Phone,1,400,12/30/19 09:44,"536 9th St, Portland, ME 04101" +316353,Wired Headphones,1,11.99,12/17/19 17:47,"100 12th St, San Francisco, CA 94016" +316354,Bose SoundSport Headphones,1,99.99,12/04/19 19:10,"302 5th St, San Francisco, CA 94016" +316355,Apple Airpods Headphones,1,150,12/31/19 10:21,"306 14th St, Dallas, TX 75001" +316356,Apple Airpods Headphones,1,150,12/08/19 14:27,"148 Forest St, Los Angeles, CA 90001" +316357,Vareebadd Phone,1,400,12/23/19 17:33,"426 6th St, Austin, TX 73301" +316357,USB-C Charging Cable,1,11.95,12/23/19 17:33,"426 6th St, Austin, TX 73301" +316358,USB-C Charging Cable,1,11.95,12/29/19 19:45,"796 Cherry St, San Francisco, CA 94016" +316359,USB-C Charging Cable,1,11.95,12/26/19 19:51,"116 5th St, Portland, OR 97035" +316360,AAA Batteries (4-pack),4,2.99,12/31/19 16:53,"303 Walnut St, San Francisco, CA 94016" +316361,AAA Batteries (4-pack),2,2.99,12/27/19 12:19,"627 Lake St, Los Angeles, CA 90001" +316362,AAA Batteries (4-pack),6,2.99,12/09/19 10:37,"966 14th St, Austin, TX 73301" +316363,Google Phone,1,600,12/17/19 09:13,"831 7th St, New York City, NY 10001" +316364,Apple Airpods Headphones,1,150,12/10/19 20:54,"377 5th St, Boston, MA 02215" +316365,Bose SoundSport Headphones,1,99.99,12/31/19 11:19,"630 Meadow St, Boston, MA 02215" +316366,27in 4K Gaming Monitor,1,389.99,12/14/19 18:50,"230 Wilson St, New York City, NY 10001" +316367,Google Phone,1,600,12/14/19 06:09,"343 10th St, Los Angeles, CA 90001" +316368,LG Washing Machine,1,600.0,01/01/20 01:14,"667 Ridge St, New York City, NY 10001" +316369,Bose SoundSport Headphones,1,99.99,12/17/19 09:32,"671 West St, Atlanta, GA 30301" +316370,34in Ultrawide Monitor,1,379.99,12/18/19 17:49,"981 Elm St, Austin, TX 73301" +316371,AA Batteries (4-pack),1,3.84,12/16/19 12:44,"397 Ridge St, Los Angeles, CA 90001" +316372,AA Batteries (4-pack),1,3.84,12/19/19 18:03,"422 5th St, New York City, NY 10001" +316373,27in 4K Gaming Monitor,1,389.99,12/06/19 18:59,"551 1st St, Los Angeles, CA 90001" +316374,34in Ultrawide Monitor,1,379.99,12/04/19 22:06,"712 Cherry St, Los Angeles, CA 90001" +316375,Bose SoundSport Headphones,1,99.99,12/20/19 17:03,"311 River St, San Francisco, CA 94016" +316376,20in Monitor,1,109.99,12/14/19 08:58,"103 Main St, Atlanta, GA 30301" +316377,AA Batteries (4-pack),2,3.84,12/03/19 15:05,"894 Cedar St, Dallas, TX 75001" +316378,Lightning Charging Cable,1,14.95,12/02/19 14:30,"292 West St, Los Angeles, CA 90001" +316379,Lightning Charging Cable,1,14.95,12/13/19 21:16,"506 Church St, Atlanta, GA 30301" +316380,Wired Headphones,1,11.99,12/01/19 14:33,"955 Spruce St, Boston, MA 02215" +316381,AAA Batteries (4-pack),1,2.99,12/08/19 19:46,"287 9th St, Austin, TX 73301" +316382,Vareebadd Phone,1,400,12/23/19 23:49,"753 14th St, Atlanta, GA 30301" +316383,AA Batteries (4-pack),1,3.84,12/31/19 15:03,"608 Cedar St, San Francisco, CA 94016" +316384,27in FHD Monitor,1,149.99,12/18/19 16:19,"746 Park St, Los Angeles, CA 90001" +316385,USB-C Charging Cable,2,11.95,12/18/19 15:54,"7 Hickory St, San Francisco, CA 94016" +316386,ThinkPad Laptop,1,999.99,12/29/19 11:26,"79 10th St, San Francisco, CA 94016" +316387,USB-C Charging Cable,1,11.95,12/07/19 09:41,"13 12th St, Boston, MA 02215" +316388,34in Ultrawide Monitor,1,379.99,12/23/19 12:10,"269 13th St, San Francisco, CA 94016" +316389,USB-C Charging Cable,2,11.95,12/27/19 22:55,"911 Johnson St, Portland, ME 04101" +316390,27in FHD Monitor,1,149.99,12/12/19 21:42,"64 14th St, Seattle, WA 98101" +316391,Lightning Charging Cable,1,14.95,12/20/19 17:47,"775 Washington St, Boston, MA 02215" +316392,USB-C Charging Cable,2,11.95,12/05/19 11:49,"614 14th St, San Francisco, CA 94016" +316393,Lightning Charging Cable,1,14.95,12/17/19 10:50,"150 5th St, San Francisco, CA 94016" +316394,iPhone,1,700,12/31/19 01:12,"937 2nd St, New York City, NY 10001" +316395,Google Phone,1,600,12/12/19 14:48,"277 Lakeview St, New York City, NY 10001" +316396,27in 4K Gaming Monitor,1,389.99,12/21/19 12:45,"333 1st St, Atlanta, GA 30301" +316397,Wired Headphones,1,11.99,12/01/19 11:18,"433 Main St, Los Angeles, CA 90001" +316398,Bose SoundSport Headphones,1,99.99,12/10/19 23:31,"211 North St, Seattle, WA 98101" +316399,LG Dryer,1,600.0,12/10/19 12:52,"747 Chestnut St, Boston, MA 02215" +316400,Wired Headphones,1,11.99,12/20/19 13:07,"164 Center St, Boston, MA 02215" +316401,AAA Batteries (4-pack),1,2.99,12/26/19 16:30,"72 Johnson St, Atlanta, GA 30301" +316402,USB-C Charging Cable,1,11.95,12/09/19 22:01,"762 Main St, New York City, NY 10001" +316403,USB-C Charging Cable,1,11.95,12/29/19 16:01,"299 12th St, Austin, TX 73301" +316404,27in 4K Gaming Monitor,1,389.99,12/18/19 22:40,"729 Hill St, San Francisco, CA 94016" +316405,34in Ultrawide Monitor,1,379.99,12/09/19 09:28,"38 Willow St, Boston, MA 02215" +316406,34in Ultrawide Monitor,1,379.99,12/25/19 21:40,"325 Lakeview St, Boston, MA 02215" +316407,Lightning Charging Cable,1,14.95,12/11/19 10:12,"489 12th St, San Francisco, CA 94016" +316408,AA Batteries (4-pack),1,3.84,12/25/19 10:20,"962 Church St, Los Angeles, CA 90001" +316409,AAA Batteries (4-pack),1,2.99,12/21/19 13:00,"509 Park St, Dallas, TX 75001" +316410,34in Ultrawide Monitor,1,379.99,12/19/19 12:50,"433 11th St, Boston, MA 02215" +316411,Apple Airpods Headphones,1,150,12/31/19 16:27,"848 6th St, San Francisco, CA 94016" +316412,AAA Batteries (4-pack),1,2.99,12/20/19 17:10,"181 Meadow St, Los Angeles, CA 90001" +316413,USB-C Charging Cable,1,11.95,12/28/19 14:23,"458 1st St, Portland, OR 97035" +316414,iPhone,1,700,12/18/19 14:42,"419 Pine St, Portland, OR 97035" +316415,Lightning Charging Cable,1,14.95,12/07/19 09:30,"594 Cedar St, Austin, TX 73301" +316416,Wired Headphones,1,11.99,12/06/19 21:58,"289 Lincoln St, Boston, MA 02215" +316417,34in Ultrawide Monitor,1,379.99,12/30/19 22:17,"160 Meadow St, Los Angeles, CA 90001" +316418,27in FHD Monitor,1,149.99,12/26/19 17:14,"118 Lakeview St, Boston, MA 02215" +316419,AA Batteries (4-pack),1,3.84,12/28/19 00:03,"533 Willow St, New York City, NY 10001" +316420,20in Monitor,1,109.99,12/07/19 15:54,"835 10th St, San Francisco, CA 94016" +316421,AAA Batteries (4-pack),1,2.99,12/04/19 12:34,"623 Lincoln St, San Francisco, CA 94016" +316422,iPhone,1,700,12/20/19 23:48,"115 South St, Austin, TX 73301" +316423,Bose SoundSport Headphones,1,99.99,12/31/19 22:22,"701 Hill St, Los Angeles, CA 90001" +316424,Apple Airpods Headphones,1,150,12/09/19 20:35,"373 South St, Dallas, TX 75001" +316425,AAA Batteries (4-pack),1,2.99,12/22/19 13:19,"311 Spruce St, Los Angeles, CA 90001" +316426,Vareebadd Phone,1,400,12/06/19 10:34,"363 Madison St, Los Angeles, CA 90001" +316427,AAA Batteries (4-pack),1,2.99,12/01/19 18:38,"512 4th St, Seattle, WA 98101" +316428,Macbook Pro Laptop,1,1700,12/12/19 14:36,"366 Johnson St, San Francisco, CA 94016" +316429,Apple Airpods Headphones,2,150,12/13/19 20:55,"785 Johnson St, Boston, MA 02215" +316430,Wired Headphones,1,11.99,12/01/19 16:41,"244 Main St, Los Angeles, CA 90001" +316431,Bose SoundSport Headphones,1,99.99,12/28/19 16:11,"77 14th St, San Francisco, CA 94016" +316432,Lightning Charging Cable,1,14.95,12/14/19 12:50,"437 Sunset St, Los Angeles, CA 90001" +316433,Lightning Charging Cable,1,14.95,12/19/19 15:17,"117 6th St, Los Angeles, CA 90001" +316434,27in 4K Gaming Monitor,1,389.99,12/01/19 09:49,"320 South St, Los Angeles, CA 90001" +316435,USB-C Charging Cable,1,11.95,12/19/19 10:13,"889 Lincoln St, San Francisco, CA 94016" +316436,20in Monitor,1,109.99,12/20/19 11:08,"240 10th St, Portland, ME 04101" +316437,27in FHD Monitor,1,149.99,12/10/19 15:13,"916 Meadow St, Atlanta, GA 30301" +316438,34in Ultrawide Monitor,1,379.99,12/13/19 13:07,"299 11th St, San Francisco, CA 94016" +316439,AAA Batteries (4-pack),2,2.99,12/27/19 21:57,"236 Cedar St, San Francisco, CA 94016" +316440,AAA Batteries (4-pack),1,2.99,12/25/19 19:27,"488 Highland St, Seattle, WA 98101" +316441,AA Batteries (4-pack),1,3.84,12/01/19 08:00,"204 Forest St, Portland, OR 97035" +316442,27in 4K Gaming Monitor,1,389.99,12/03/19 19:02,"320 Jackson St, Atlanta, GA 30301" +316443,USB-C Charging Cable,1,11.95,12/20/19 08:20,"318 4th St, San Francisco, CA 94016" +316444,27in 4K Gaming Monitor,1,389.99,12/10/19 19:29,"885 West St, Los Angeles, CA 90001" +316445,Wired Headphones,1,11.99,12/14/19 20:00,"566 Washington St, Atlanta, GA 30301" +316446,Wired Headphones,1,11.99,12/21/19 14:09,"551 Ridge St, San Francisco, CA 94016" +316447,27in FHD Monitor,1,149.99,12/22/19 22:25,"114 10th St, Los Angeles, CA 90001" +316448,AAA Batteries (4-pack),1,2.99,12/28/19 08:06,"496 Meadow St, Los Angeles, CA 90001" +316449,Macbook Pro Laptop,1,1700,12/06/19 12:24,"890 Willow St, Austin, TX 73301" +316450,AAA Batteries (4-pack),3,2.99,12/30/19 19:26,"850 Main St, Boston, MA 02215" +316451,Lightning Charging Cable,1,14.95,12/04/19 21:01,"897 13th St, Austin, TX 73301" +316452,USB-C Charging Cable,1,11.95,12/19/19 15:21,"225 Jefferson St, Portland, OR 97035" +316453,Wired Headphones,1,11.99,12/12/19 12:37,"769 Cherry St, Boston, MA 02215" +316454,Apple Airpods Headphones,1,150,12/22/19 02:40,"132 Highland St, Los Angeles, CA 90001" +316455,USB-C Charging Cable,1,11.95,12/16/19 21:38,"897 Pine St, Austin, TX 73301" +316456,Bose SoundSport Headphones,1,99.99,12/15/19 09:26,"909 Hickory St, New York City, NY 10001" +316457,Bose SoundSport Headphones,1,99.99,12/18/19 14:16,"452 Dogwood St, Austin, TX 73301" +316458,AA Batteries (4-pack),1,3.84,12/19/19 11:47,"120 River St, Austin, TX 73301" +316459,Lightning Charging Cable,1,14.95,12/12/19 18:02,"499 7th St, San Francisco, CA 94016" +316460,20in Monitor,1,109.99,12/01/19 22:58,"402 10th St, Dallas, TX 75001" +316461,27in FHD Monitor,1,149.99,12/10/19 01:37,"979 1st St, Boston, MA 02215" +316462,Lightning Charging Cable,1,14.95,12/06/19 22:03,"241 11th St, Seattle, WA 98101" +316463,Lightning Charging Cable,1,14.95,12/17/19 16:08,"64 Madison St, Seattle, WA 98101" +316464,Apple Airpods Headphones,1,150,12/11/19 23:08,"547 13th St, Atlanta, GA 30301" +316465,Apple Airpods Headphones,1,150,12/25/19 17:03,"583 12th St, Los Angeles, CA 90001" +316466,Wired Headphones,1,11.99,12/12/19 07:25,"930 Church St, Dallas, TX 75001" +316467,Google Phone,1,600,12/08/19 01:23,"587 West St, Portland, OR 97035" +316467,USB-C Charging Cable,1,11.95,12/08/19 01:23,"587 West St, Portland, OR 97035" +316468,Apple Airpods Headphones,1,150,12/30/19 13:58,"4 River St, Boston, MA 02215" +316469,Lightning Charging Cable,1,14.95,12/13/19 13:14,"542 2nd St, Seattle, WA 98101" +316470,iPhone,1,700,12/21/19 19:37,"624 Cherry St, Seattle, WA 98101" +316471,Apple Airpods Headphones,1,150,12/26/19 07:09,"520 6th St, San Francisco, CA 94016" +316472,20in Monitor,1,109.99,12/22/19 17:48,"845 1st St, Boston, MA 02215" +316473,Lightning Charging Cable,1,14.95,12/10/19 10:31,"523 North St, San Francisco, CA 94016" +316474,USB-C Charging Cable,1,11.95,12/27/19 13:08,"775 Elm St, Los Angeles, CA 90001" +316475,Wired Headphones,2,11.99,12/30/19 17:51,"391 Church St, Los Angeles, CA 90001" +316476,USB-C Charging Cable,1,11.95,12/24/19 21:56,"941 5th St, San Francisco, CA 94016" +316477,USB-C Charging Cable,1,11.95,12/18/19 19:53,"141 13th St, Portland, ME 04101" +316478,Apple Airpods Headphones,1,150,12/04/19 15:06,"687 12th St, Seattle, WA 98101" +316479,AA Batteries (4-pack),1,3.84,12/14/19 12:26,"564 Ridge St, Los Angeles, CA 90001" +316480,Macbook Pro Laptop,1,1700,12/08/19 20:59,"369 Maple St, Boston, MA 02215" +316481,USB-C Charging Cable,1,11.95,12/12/19 11:42,"804 5th St, Los Angeles, CA 90001" +316482,Apple Airpods Headphones,1,150,12/24/19 20:56,"901 Washington St, Austin, TX 73301" +316483,AAA Batteries (4-pack),1,2.99,12/04/19 10:34,"681 6th St, Portland, OR 97035" +316484,Lightning Charging Cable,1,14.95,12/29/19 03:05,"179 12th St, Los Angeles, CA 90001" +316485,27in FHD Monitor,1,149.99,12/07/19 10:17,"77 Center St, San Francisco, CA 94016" +316486,34in Ultrawide Monitor,1,379.99,12/18/19 14:49,"455 Main St, Portland, OR 97035" +316487,Lightning Charging Cable,1,14.95,12/22/19 16:55,"532 11th St, Portland, OR 97035" +316488,Wired Headphones,1,11.99,12/18/19 19:19,"592 13th St, Los Angeles, CA 90001" +316489,Lightning Charging Cable,1,14.95,12/06/19 10:15,"424 Walnut St, Portland, ME 04101" +316490,AAA Batteries (4-pack),2,2.99,12/20/19 16:04,"854 South St, Boston, MA 02215" +316491,Bose SoundSport Headphones,1,99.99,12/23/19 21:23,"969 Church St, San Francisco, CA 94016" +316492,USB-C Charging Cable,1,11.95,12/08/19 08:49,"14 14th St, Portland, ME 04101" +316493,USB-C Charging Cable,1,11.95,12/28/19 14:10,"633 Jefferson St, Austin, TX 73301" +316494,Wired Headphones,1,11.99,12/17/19 11:37,"568 Hickory St, San Francisco, CA 94016" +316495,27in 4K Gaming Monitor,1,389.99,12/05/19 10:23,"515 Pine St, New York City, NY 10001" +316495,Lightning Charging Cable,1,14.95,12/05/19 10:23,"515 Pine St, New York City, NY 10001" +316496,Apple Airpods Headphones,1,150,12/16/19 12:29,"786 Lakeview St, Seattle, WA 98101" +316497,34in Ultrawide Monitor,1,379.99,12/19/19 17:05,"116 Hill St, New York City, NY 10001" +316498,34in Ultrawide Monitor,1,379.99,12/08/19 19:15,"936 Sunset St, San Francisco, CA 94016" +316499,Wired Headphones,1,11.99,12/26/19 15:40,"759 Elm St, Seattle, WA 98101" +316500,AAA Batteries (4-pack),1,2.99,12/15/19 13:12,"200 Cherry St, Dallas, TX 75001" +316501,Bose SoundSport Headphones,1,99.99,12/08/19 20:14,"579 River St, Dallas, TX 75001" +316502,Lightning Charging Cable,1,14.95,12/01/19 18:31,"513 Cherry St, San Francisco, CA 94016" +316503,iPhone,1,700,12/20/19 20:42,"210 13th St, Seattle, WA 98101" +316504,Macbook Pro Laptop,1,1700,12/31/19 10:18,"928 Washington St, Portland, OR 97035" +316505,USB-C Charging Cable,1,11.95,12/23/19 19:10,"406 Jefferson St, Seattle, WA 98101" +316506,Google Phone,1,600,12/24/19 01:10,"998 5th St, Boston, MA 02215" +316506,Lightning Charging Cable,1,14.95,12/24/19 01:10,"998 5th St, Boston, MA 02215" +316507,AAA Batteries (4-pack),1,2.99,12/02/19 20:23,"36 Washington St, Boston, MA 02215" +316508,Wired Headphones,1,11.99,12/09/19 13:51,"898 Elm St, Los Angeles, CA 90001" +316509,34in Ultrawide Monitor,1,379.99,12/26/19 14:54,"193 Lake St, Seattle, WA 98101" +316510,34in Ultrawide Monitor,1,379.99,12/29/19 12:16,"987 Sunset St, Atlanta, GA 30301" +316511,AA Batteries (4-pack),2,3.84,12/12/19 13:07,"517 Willow St, Atlanta, GA 30301" +316511,Lightning Charging Cable,1,14.95,12/12/19 13:07,"517 Willow St, Atlanta, GA 30301" +316512,Lightning Charging Cable,1,14.95,12/19/19 18:51,"730 Highland St, Los Angeles, CA 90001" +316513,AA Batteries (4-pack),1,3.84,12/21/19 11:50,"748 Park St, Boston, MA 02215" +316514,AA Batteries (4-pack),1,3.84,12/13/19 18:50,"262 South St, Portland, OR 97035" +316515,ThinkPad Laptop,1,999.99,12/27/19 00:59,"166 13th St, San Francisco, CA 94016" +316516,USB-C Charging Cable,1,11.95,12/22/19 12:10,"156 11th St, Seattle, WA 98101" +316517,USB-C Charging Cable,1,11.95,12/30/19 19:07,"575 Elm St, Portland, OR 97035" +316518,Bose SoundSport Headphones,1,99.99,12/14/19 09:02,"851 Lakeview St, San Francisco, CA 94016" +316519,AAA Batteries (4-pack),2,2.99,12/29/19 23:41,"781 5th St, San Francisco, CA 94016" +316520,Wired Headphones,1,11.99,12/26/19 16:45,"351 Elm St, Austin, TX 73301" +316520,20in Monitor,1,109.99,12/26/19 16:45,"351 Elm St, Austin, TX 73301" +316521,Lightning Charging Cable,1,14.95,12/21/19 18:37,"269 Chestnut St, Los Angeles, CA 90001" +316522,AAA Batteries (4-pack),2,2.99,12/13/19 22:00,"447 Walnut St, Seattle, WA 98101" +316523,Lightning Charging Cable,2,14.95,12/15/19 08:08,"641 River St, New York City, NY 10001" +316524,AAA Batteries (4-pack),1,2.99,12/19/19 18:24,"7 Pine St, Seattle, WA 98101" +316525,27in FHD Monitor,1,149.99,12/26/19 09:20,"962 Spruce St, Boston, MA 02215" +316526,AAA Batteries (4-pack),1,2.99,12/09/19 12:44,"471 Ridge St, Los Angeles, CA 90001" +316527,AAA Batteries (4-pack),3,2.99,12/19/19 14:02,"325 11th St, San Francisco, CA 94016" +316528,27in FHD Monitor,1,149.99,12/22/19 09:34,"232 Main St, Los Angeles, CA 90001" +316529,Wired Headphones,1,11.99,12/04/19 10:35,"112 2nd St, Portland, OR 97035" +316530,Wired Headphones,2,11.99,12/25/19 12:46,"628 7th St, Atlanta, GA 30301" +316531,Apple Airpods Headphones,1,150,12/30/19 10:46,"719 1st St, New York City, NY 10001" +316532,AA Batteries (4-pack),1,3.84,12/29/19 02:45,"422 1st St, Los Angeles, CA 90001" +316533,Apple Airpods Headphones,1,150,12/17/19 14:48,"552 Washington St, Seattle, WA 98101" +316534,Flatscreen TV,1,300,12/11/19 11:31,"412 14th St, Dallas, TX 75001" +316535,Bose SoundSport Headphones,1,99.99,12/30/19 21:39,"391 Dogwood St, Portland, OR 97035" +316536,Lightning Charging Cable,1,14.95,12/01/19 14:43,"991 Madison St, Austin, TX 73301" +316537,Bose SoundSport Headphones,1,99.99,12/28/19 06:45,"797 Jefferson St, New York City, NY 10001" +316538,Bose SoundSport Headphones,1,99.99,12/08/19 18:01,"30 14th St, Dallas, TX 75001" +316539,AAA Batteries (4-pack),1,2.99,12/23/19 22:36,"997 Lake St, Los Angeles, CA 90001" +316540,Apple Airpods Headphones,1,150,12/02/19 09:06,"609 12th St, Dallas, TX 75001" +316541,Apple Airpods Headphones,1,150,12/27/19 07:46,"592 Wilson St, Seattle, WA 98101" +316542,USB-C Charging Cable,1,11.95,12/26/19 11:54,"33 Maple St, Portland, OR 97035" +316543,Lightning Charging Cable,1,14.95,12/30/19 11:35,"852 Madison St, Los Angeles, CA 90001" +316544,Bose SoundSport Headphones,1,99.99,12/24/19 15:24,"497 11th St, Los Angeles, CA 90001" +316545,Lightning Charging Cable,1,14.95,12/27/19 23:55,"645 9th St, Los Angeles, CA 90001" +316546,Bose SoundSport Headphones,1,99.99,12/14/19 23:31,"386 River St, New York City, NY 10001" +316547,Apple Airpods Headphones,1,150,12/24/19 17:54,"234 Highland St, San Francisco, CA 94016" +316548,Google Phone,1,600,12/24/19 19:45,"403 Forest St, San Francisco, CA 94016" +316549,Lightning Charging Cable,1,14.95,12/26/19 09:22,"307 6th St, Los Angeles, CA 90001" +316550,Lightning Charging Cable,1,14.95,12/19/19 08:42,"977 9th St, Atlanta, GA 30301" +316551,AA Batteries (4-pack),1,3.84,12/06/19 18:22,"554 Adams St, Los Angeles, CA 90001" +316552,Apple Airpods Headphones,1,150,12/13/19 16:47,"137 12th St, San Francisco, CA 94016" +316553,27in FHD Monitor,1,149.99,12/02/19 13:26,"822 Pine St, Los Angeles, CA 90001" +316554,Vareebadd Phone,1,400,12/22/19 04:39,"466 Madison St, Seattle, WA 98101" +316555,Apple Airpods Headphones,1,150,12/18/19 13:53,"633 1st St, San Francisco, CA 94016" +316556,20in Monitor,1,109.99,12/19/19 18:07,"708 Ridge St, Los Angeles, CA 90001" +316557,AA Batteries (4-pack),2,3.84,12/27/19 19:36,"777 Pine St, Dallas, TX 75001" +316558,27in FHD Monitor,1,149.99,12/27/19 13:52,"219 Sunset St, New York City, NY 10001" +316559,AA Batteries (4-pack),1,3.84,12/10/19 14:53,"98 Ridge St, Los Angeles, CA 90001" +316560,AAA Batteries (4-pack),2,2.99,12/09/19 12:10,"753 Madison St, Los Angeles, CA 90001" +316561,Apple Airpods Headphones,1,150,12/06/19 22:25,"194 Walnut St, Boston, MA 02215" +316562,ThinkPad Laptop,1,999.99,12/22/19 10:25,"278 11th St, Seattle, WA 98101" +316563,USB-C Charging Cable,1,11.95,12/02/19 23:38,"490 Lake St, Los Angeles, CA 90001" +316564,USB-C Charging Cable,1,11.95,12/28/19 12:25,"561 5th St, Boston, MA 02215" +316565,Wired Headphones,1,11.99,12/30/19 08:09,"3 Forest St, New York City, NY 10001" +316566,ThinkPad Laptop,1,999.99,12/28/19 09:45,"660 2nd St, San Francisco, CA 94016" +316567,AAA Batteries (4-pack),1,2.99,12/07/19 03:40,"276 Jefferson St, New York City, NY 10001" +316568,iPhone,1,700,12/14/19 22:58,"546 Jefferson St, Boston, MA 02215" +316569,ThinkPad Laptop,1,999.99,12/30/19 00:20,"932 Center St, Seattle, WA 98101" +316570,Apple Airpods Headphones,1,150,12/31/19 19:55,"624 Johnson St, Seattle, WA 98101" +316571,Lightning Charging Cable,1,14.95,12/17/19 00:04,"998 8th St, San Francisco, CA 94016" +316572,Apple Airpods Headphones,1,150,12/29/19 08:19,"636 4th St, Los Angeles, CA 90001" +316573,Lightning Charging Cable,1,14.95,12/10/19 01:18,"461 Johnson St, Boston, MA 02215" +316574,Wired Headphones,1,11.99,12/05/19 12:02,"303 River St, San Francisco, CA 94016" +316575,Wired Headphones,1,11.99,12/29/19 19:10,"211 Lincoln St, New York City, NY 10001" +316576,AA Batteries (4-pack),1,3.84,12/19/19 20:31,"658 11th St, Austin, TX 73301" +316577,AAA Batteries (4-pack),1,2.99,12/13/19 02:01,"342 Chestnut St, Seattle, WA 98101" +316578,Apple Airpods Headphones,1,150,12/03/19 17:26,"742 4th St, Los Angeles, CA 90001" +316579,Apple Airpods Headphones,1,150,12/12/19 14:09,"153 Hill St, Portland, OR 97035" +316580,Lightning Charging Cable,1,14.95,12/15/19 16:47,"893 Spruce St, San Francisco, CA 94016" +316581,AAA Batteries (4-pack),2,2.99,12/13/19 13:37,"210 Chestnut St, Seattle, WA 98101" +316582,USB-C Charging Cable,1,11.95,12/20/19 10:31,"90 River St, Portland, OR 97035" +316583,ThinkPad Laptop,1,999.99,12/26/19 15:33,"14 Chestnut St, San Francisco, CA 94016" +316584,Lightning Charging Cable,1,14.95,12/02/19 11:56,"931 Washington St, Los Angeles, CA 90001" +316585,27in 4K Gaming Monitor,1,389.99,12/28/19 12:36,"201 Lake St, San Francisco, CA 94016" +316586,27in FHD Monitor,1,149.99,12/06/19 19:23,"955 10th St, Atlanta, GA 30301" +316587,34in Ultrawide Monitor,1,379.99,12/01/19 14:18,"662 Meadow St, Atlanta, GA 30301" +316588,AA Batteries (4-pack),1,3.84,12/17/19 17:35,"366 Willow St, San Francisco, CA 94016" +316589,Bose SoundSport Headphones,1,99.99,12/12/19 10:48,"215 1st St, Portland, OR 97035" +316590,Bose SoundSport Headphones,1,99.99,12/26/19 12:09,"145 Washington St, Los Angeles, CA 90001" +316591,USB-C Charging Cable,1,11.95,12/04/19 21:00,"277 Elm St, Dallas, TX 75001" +316592,USB-C Charging Cable,1,11.95,12/10/19 21:41,"452 Dogwood St, Atlanta, GA 30301" +316593,AAA Batteries (4-pack),1,2.99,12/26/19 15:08,"192 9th St, Dallas, TX 75001" +316594,20in Monitor,1,109.99,12/22/19 12:28,"625 Madison St, Los Angeles, CA 90001" +316595,USB-C Charging Cable,1,11.95,12/31/19 11:59,"168 North St, Boston, MA 02215" +316596,AAA Batteries (4-pack),2,2.99,12/17/19 17:11,"281 10th St, San Francisco, CA 94016" +316597,Google Phone,1,600,12/26/19 09:03,"856 2nd St, Portland, OR 97035" +316598,Bose SoundSport Headphones,1,99.99,12/12/19 12:59,"131 Willow St, Austin, TX 73301" +316599,Lightning Charging Cable,1,14.95,12/09/19 19:21,"914 1st St, Los Angeles, CA 90001" +316600,AAA Batteries (4-pack),2,2.99,12/25/19 15:42,"298 Spruce St, Atlanta, GA 30301" +316601,AA Batteries (4-pack),1,3.84,12/21/19 14:16,"486 South St, Los Angeles, CA 90001" +316602,Lightning Charging Cable,1,14.95,12/30/19 22:06,"957 11th St, Austin, TX 73301" +316603,Lightning Charging Cable,3,14.95,12/16/19 09:34,"306 Center St, Atlanta, GA 30301" +316604,USB-C Charging Cable,1,11.95,12/04/19 09:21,"107 7th St, San Francisco, CA 94016" +316605,Wired Headphones,1,11.99,12/23/19 20:52,"504 8th St, New York City, NY 10001" +316606,Bose SoundSport Headphones,1,99.99,12/25/19 10:08,"319 Park St, Seattle, WA 98101" +316607,USB-C Charging Cable,2,11.95,12/19/19 09:03,"128 Hill St, Los Angeles, CA 90001" +316608,USB-C Charging Cable,1,11.95,12/11/19 18:39,"377 Park St, New York City, NY 10001" +316609,iPhone,1,700,12/02/19 11:08,"512 Maple St, Seattle, WA 98101" +316610,AA Batteries (4-pack),3,3.84,12/10/19 14:51,"480 7th St, New York City, NY 10001" +316611,Apple Airpods Headphones,1,150,12/07/19 15:23,"829 Forest St, Boston, MA 02215" +316612,Lightning Charging Cable,1,14.95,12/22/19 11:42,"491 Elm St, Dallas, TX 75001" +316613,27in FHD Monitor,1,149.99,12/01/19 11:28,"609 Hill St, Dallas, TX 75001" +316614,27in FHD Monitor,1,149.99,12/13/19 17:17,"564 Walnut St, Portland, OR 97035" +316615,Apple Airpods Headphones,1,150,12/01/19 22:56,"316 Main St, San Francisco, CA 94016" +316616,Wired Headphones,1,11.99,12/22/19 17:41,"721 Center St, Boston, MA 02215" +316617,27in 4K Gaming Monitor,1,389.99,12/21/19 19:35,"251 Spruce St, Boston, MA 02215" +316617,Apple Airpods Headphones,1,150,12/21/19 19:35,"251 Spruce St, Boston, MA 02215" +316618,34in Ultrawide Monitor,1,379.99,12/29/19 19:40,"342 Walnut St, Boston, MA 02215" +316619,27in FHD Monitor,1,149.99,12/30/19 15:48,"90 Dogwood St, Los Angeles, CA 90001" +316620,USB-C Charging Cable,1,11.95,12/31/19 11:42,"372 Forest St, Seattle, WA 98101" +316621,34in Ultrawide Monitor,1,379.99,12/27/19 12:07,"917 Willow St, San Francisco, CA 94016" +316622,Wired Headphones,1,11.99,12/06/19 09:04,"231 Forest St, Atlanta, GA 30301" +316623,AAA Batteries (4-pack),1,2.99,12/04/19 12:17,"892 Washington St, Boston, MA 02215" +316624,Lightning Charging Cable,2,14.95,12/03/19 02:09,"376 Spruce St, San Francisco, CA 94016" +316625,27in FHD Monitor,1,149.99,12/18/19 12:05,"154 Park St, Boston, MA 02215" +316626,27in 4K Gaming Monitor,1,389.99,12/31/19 16:52,"437 Meadow St, San Francisco, CA 94016" +316627,Bose SoundSport Headphones,1,99.99,12/20/19 14:10,"974 North St, Los Angeles, CA 90001" +316628,AA Batteries (4-pack),1,3.84,12/03/19 14:54,"301 7th St, Austin, TX 73301" +316629,USB-C Charging Cable,1,11.95,12/17/19 20:31,"879 Willow St, Los Angeles, CA 90001" +316630,AA Batteries (4-pack),1,3.84,12/16/19 11:42,"61 Willow St, Boston, MA 02215" +316631,20in Monitor,1,109.99,12/21/19 20:06,"589 Jackson St, Los Angeles, CA 90001" +316632,27in FHD Monitor,1,149.99,12/16/19 22:12,"685 River St, Dallas, TX 75001" +316633,AA Batteries (4-pack),1,3.84,12/13/19 10:54,"128 5th St, San Francisco, CA 94016" +316634,AAA Batteries (4-pack),3,2.99,12/22/19 17:02,"886 North St, San Francisco, CA 94016" +316635,Google Phone,1,600,12/15/19 23:08,"179 Jefferson St, Austin, TX 73301" +316636,Wired Headphones,1,11.99,12/29/19 20:31,"82 Park St, San Francisco, CA 94016" +316637,AAA Batteries (4-pack),1,2.99,12/05/19 17:26,"603 Elm St, New York City, NY 10001" +316638,AA Batteries (4-pack),1,3.84,12/11/19 15:16,"677 Jackson St, Los Angeles, CA 90001" +316639,AA Batteries (4-pack),2,3.84,12/11/19 12:41,"449 6th St, Los Angeles, CA 90001" +316640,Lightning Charging Cable,1,14.95,12/06/19 21:06,"177 Cherry St, Dallas, TX 75001" +316641,AAA Batteries (4-pack),3,2.99,12/17/19 06:54,"692 Jefferson St, Austin, TX 73301" +316642,iPhone,1,700,12/05/19 09:23,"76 8th St, Portland, OR 97035" +316642,Wired Headphones,1,11.99,12/05/19 09:23,"76 8th St, Portland, OR 97035" +316643,Apple Airpods Headphones,1,150,12/21/19 18:06,"484 Wilson St, Boston, MA 02215" +316644,USB-C Charging Cable,1,11.95,12/04/19 16:38,"687 Church St, Atlanta, GA 30301" +316645,AA Batteries (4-pack),1,3.84,12/30/19 13:29,"785 2nd St, Dallas, TX 75001" +316646,Wired Headphones,1,11.99,12/22/19 14:30,"161 4th St, San Francisco, CA 94016" +316647,Wired Headphones,2,11.99,12/11/19 14:02,"890 5th St, Los Angeles, CA 90001" +316648,Apple Airpods Headphones,1,150,12/26/19 16:39,"852 Main St, New York City, NY 10001" +316649,ThinkPad Laptop,1,999.99,12/25/19 14:16,"128 Lakeview St, Seattle, WA 98101" +316650,Wired Headphones,1,11.99,12/02/19 19:34,"745 9th St, San Francisco, CA 94016" +316651,AA Batteries (4-pack),1,3.84,12/19/19 18:16,"50 Washington St, Portland, ME 04101" +316652,AAA Batteries (4-pack),3,2.99,12/28/19 10:52,"350 Cherry St, Boston, MA 02215" +316653,iPhone,1,700,12/24/19 13:02,"895 13th St, Atlanta, GA 30301" +316654,Apple Airpods Headphones,1,150,12/11/19 12:18,"162 Madison St, San Francisco, CA 94016" +316655,Apple Airpods Headphones,1,150,12/20/19 00:16,"206 Lincoln St, San Francisco, CA 94016" +316656,Lightning Charging Cable,1,14.95,12/17/19 06:33,"245 West St, Seattle, WA 98101" +316657,27in FHD Monitor,1,149.99,12/23/19 20:07,"99 6th St, Los Angeles, CA 90001" +,,,,, +316658,27in FHD Monitor,1,149.99,12/02/19 22:16,"274 Center St, Seattle, WA 98101" +316659,AAA Batteries (4-pack),1,2.99,12/11/19 18:58,"317 Lakeview St, New York City, NY 10001" +316659,Lightning Charging Cable,1,14.95,12/11/19 18:58,"317 Lakeview St, New York City, NY 10001" +316660,AAA Batteries (4-pack),1,2.99,12/03/19 11:44,"641 6th St, San Francisco, CA 94016" +316661,Wired Headphones,1,11.99,12/24/19 10:43,"328 Lincoln St, New York City, NY 10001" +316662,AA Batteries (4-pack),2,3.84,12/10/19 18:21,"743 Church St, Seattle, WA 98101" +316663,Google Phone,1,600,12/11/19 14:56,"382 7th St, Los Angeles, CA 90001" +316663,USB-C Charging Cable,1,11.95,12/11/19 14:56,"382 7th St, Los Angeles, CA 90001" +316664,AA Batteries (4-pack),1,3.84,12/24/19 12:52,"518 Main St, Dallas, TX 75001" +316665,AA Batteries (4-pack),2,3.84,12/26/19 10:29,"985 Dogwood St, Atlanta, GA 30301" +316666,Bose SoundSport Headphones,1,99.99,12/28/19 03:21,"474 13th St, Atlanta, GA 30301" +316667,Bose SoundSport Headphones,1,99.99,12/07/19 10:38,"227 13th St, Seattle, WA 98101" +316668,iPhone,1,700,12/17/19 20:57,"555 Cherry St, San Francisco, CA 94016" +316669,iPhone,1,700,12/19/19 16:47,"972 9th St, Boston, MA 02215" +316670,Bose SoundSport Headphones,1,99.99,12/19/19 09:12,"339 6th St, San Francisco, CA 94016" +316671,Apple Airpods Headphones,1,150,12/04/19 17:27,"662 Walnut St, San Francisco, CA 94016" +316672,Lightning Charging Cable,1,14.95,12/28/19 20:09,"198 11th St, Dallas, TX 75001" +316673,Macbook Pro Laptop,1,1700,12/23/19 10:59,"267 Highland St, Dallas, TX 75001" +316674,Bose SoundSport Headphones,1,99.99,12/31/19 14:47,"31 Dogwood St, Portland, OR 97035" +316675,USB-C Charging Cable,1,11.95,12/15/19 19:20,"713 Spruce St, San Francisco, CA 94016" +316676,AA Batteries (4-pack),1,3.84,12/28/19 18:26,"416 West St, Dallas, TX 75001" +316677,Macbook Pro Laptop,1,1700,12/02/19 16:59,"515 Lincoln St, Atlanta, GA 30301" +316678,Wired Headphones,1,11.99,12/22/19 11:57,"614 9th St, Los Angeles, CA 90001" +316679,AA Batteries (4-pack),1,3.84,12/20/19 15:26,"41 Dogwood St, Atlanta, GA 30301" +316680,Lightning Charging Cable,1,14.95,12/19/19 17:23,"152 Wilson St, New York City, NY 10001" +316681,34in Ultrawide Monitor,1,379.99,12/09/19 20:10,"226 Hill St, Portland, OR 97035" +316682,27in FHD Monitor,1,149.99,12/07/19 21:33,"731 Washington St, New York City, NY 10001" +316683,Macbook Pro Laptop,1,1700,12/25/19 11:55,"746 Ridge St, Seattle, WA 98101" +316684,27in FHD Monitor,1,149.99,12/25/19 15:15,"20 Madison St, Portland, OR 97035" +316685,20in Monitor,1,109.99,12/18/19 14:23,"251 7th St, Boston, MA 02215" +316686,Wired Headphones,1,11.99,12/18/19 12:02,"346 5th St, Seattle, WA 98101" +316687,ThinkPad Laptop,1,999.99,12/20/19 12:59,"502 7th St, Los Angeles, CA 90001" +316688,20in Monitor,1,109.99,12/14/19 08:19,"222 Cherry St, Boston, MA 02215" +316689,34in Ultrawide Monitor,1,379.99,12/21/19 09:00,"277 North St, San Francisco, CA 94016" +316690,Apple Airpods Headphones,1,150,12/09/19 21:59,"585 Cedar St, Los Angeles, CA 90001" +316691,iPhone,1,700,12/12/19 18:05,"378 Hill St, San Francisco, CA 94016" +316691,Apple Airpods Headphones,1,150,12/12/19 18:05,"378 Hill St, San Francisco, CA 94016" +316692,Flatscreen TV,1,300,12/10/19 15:01,"854 Elm St, Los Angeles, CA 90001" +316693,USB-C Charging Cable,1,11.95,12/05/19 12:51,"590 West St, San Francisco, CA 94016" +316694,AAA Batteries (4-pack),2,2.99,12/08/19 17:18,"249 Church St, Los Angeles, CA 90001" +316695,USB-C Charging Cable,1,11.95,12/22/19 01:06,"13 Lakeview St, Atlanta, GA 30301" +316696,AAA Batteries (4-pack),1,2.99,12/30/19 09:06,"486 Church St, Los Angeles, CA 90001" +316696,AAA Batteries (4-pack),1,2.99,12/30/19 09:06,"486 Church St, Los Angeles, CA 90001" +316697,AA Batteries (4-pack),3,3.84,12/29/19 20:09,"551 Meadow St, Boston, MA 02215" +316698,AA Batteries (4-pack),1,3.84,12/24/19 19:06,"197 Maple St, Los Angeles, CA 90001" +316699,AAA Batteries (4-pack),2,2.99,12/25/19 20:30,"258 12th St, Atlanta, GA 30301" +316700,USB-C Charging Cable,1,11.95,12/14/19 16:16,"506 Willow St, San Francisco, CA 94016" +316701,Wired Headphones,1,11.99,12/19/19 09:11,"849 Highland St, Portland, OR 97035" +316702,AA Batteries (4-pack),1,3.84,12/30/19 23:18,"18 10th St, Austin, TX 73301" +316703,Google Phone,1,600,12/23/19 13:28,"519 Pine St, San Francisco, CA 94016" +316704,Lightning Charging Cable,1,14.95,12/10/19 23:31,"238 Chestnut St, Portland, ME 04101" +316705,27in FHD Monitor,1,149.99,12/21/19 11:53,"631 Church St, Los Angeles, CA 90001" +316706,USB-C Charging Cable,1,11.95,12/28/19 16:05,"487 South St, New York City, NY 10001" +316707,USB-C Charging Cable,1,11.95,12/31/19 09:59,"662 Johnson St, Los Angeles, CA 90001" +316708,Google Phone,1,600,12/21/19 15:19,"563 Madison St, Portland, OR 97035" +316708,USB-C Charging Cable,1,11.95,12/21/19 15:19,"563 Madison St, Portland, OR 97035" +316709,20in Monitor,1,109.99,12/19/19 18:08,"778 6th St, Seattle, WA 98101" +316710,AAA Batteries (4-pack),1,2.99,12/08/19 06:02,"966 Wilson St, San Francisco, CA 94016" +316711,27in 4K Gaming Monitor,1,389.99,12/14/19 16:04,"52 Forest St, Los Angeles, CA 90001" +316712,iPhone,1,700,12/27/19 12:34,"285 Church St, Seattle, WA 98101" +316713,AAA Batteries (4-pack),1,2.99,12/20/19 21:36,"592 11th St, Los Angeles, CA 90001" +316714,USB-C Charging Cable,1,11.95,12/01/19 18:28,"190 Lincoln St, Boston, MA 02215" +316715,ThinkPad Laptop,1,999.99,12/03/19 20:33,"773 Hickory St, San Francisco, CA 94016" +316716,Bose SoundSport Headphones,1,99.99,12/27/19 16:01,"573 Lake St, Dallas, TX 75001" +316717,Wired Headphones,1,11.99,12/26/19 07:47,"798 Hill St, Portland, OR 97035" +316718,Wired Headphones,1,11.99,12/22/19 22:55,"194 Walnut St, San Francisco, CA 94016" +316719,AA Batteries (4-pack),1,3.84,12/02/19 12:53,"522 Forest St, Seattle, WA 98101" +316720,USB-C Charging Cable,1,11.95,12/11/19 08:30,"563 Jefferson St, New York City, NY 10001" +316721,Lightning Charging Cable,1,14.95,12/16/19 12:53,"642 11th St, Los Angeles, CA 90001" +316722,iPhone,1,700,12/05/19 09:39,"323 Chestnut St, Dallas, TX 75001" +316723,AAA Batteries (4-pack),1,2.99,12/22/19 21:20,"995 Maple St, New York City, NY 10001" +316724,Wired Headphones,1,11.99,12/31/19 11:56,"285 Main St, San Francisco, CA 94016" +316725,34in Ultrawide Monitor,1,379.99,12/30/19 20:36,"103 Cedar St, Seattle, WA 98101" +316726,Apple Airpods Headphones,1,150,12/28/19 18:12,"250 Park St, New York City, NY 10001" +316727,34in Ultrawide Monitor,1,379.99,12/25/19 19:52,"488 Lake St, New York City, NY 10001" +316728,Wired Headphones,1,11.99,12/12/19 22:15,"858 12th St, Boston, MA 02215" +316729,Bose SoundSport Headphones,1,99.99,12/20/19 17:45,"27 Wilson St, Dallas, TX 75001" +316730,20in Monitor,1,109.99,12/11/19 22:07,"639 4th St, Austin, TX 73301" +316731,27in FHD Monitor,1,149.99,12/21/19 17:02,"148 4th St, New York City, NY 10001" +316732,Apple Airpods Headphones,1,150,12/23/19 12:13,"277 West St, Austin, TX 73301" +316733,iPhone,1,700,12/01/19 12:31,"457 West St, Los Angeles, CA 90001" +316734,Bose SoundSport Headphones,1,99.99,12/12/19 04:33,"303 Lake St, Seattle, WA 98101" +316735,Vareebadd Phone,1,400,12/06/19 22:04,"555 Spruce St, Los Angeles, CA 90001" +316735,USB-C Charging Cable,1,11.95,12/06/19 22:04,"555 Spruce St, Los Angeles, CA 90001" +316736,USB-C Charging Cable,1,11.95,12/14/19 22:29,"857 10th St, Dallas, TX 75001" +316737,Lightning Charging Cable,1,14.95,12/05/19 10:56,"812 Dogwood St, San Francisco, CA 94016" +,,,,, +316738,Wired Headphones,2,11.99,12/29/19 09:41,"539 Pine St, New York City, NY 10001" +316739,Lightning Charging Cable,1,14.95,12/18/19 16:17,"229 Chestnut St, Los Angeles, CA 90001" +316740,27in FHD Monitor,1,149.99,12/19/19 15:19,"874 Washington St, Atlanta, GA 30301" +316741,27in 4K Gaming Monitor,1,389.99,12/08/19 14:12,"871 West St, San Francisco, CA 94016" +316742,20in Monitor,1,109.99,12/27/19 07:41,"13 10th St, New York City, NY 10001" +316743,Lightning Charging Cable,1,14.95,12/14/19 19:25,"99 South St, Austin, TX 73301" +316744,USB-C Charging Cable,1,11.95,12/01/19 21:16,"941 Ridge St, Dallas, TX 75001" +316745,AA Batteries (4-pack),1,3.84,12/03/19 18:48,"349 13th St, San Francisco, CA 94016" +316746,AA Batteries (4-pack),2,3.84,12/01/19 14:55,"416 Johnson St, Los Angeles, CA 90001" +316747,Wired Headphones,1,11.99,12/17/19 05:55,"246 Spruce St, Los Angeles, CA 90001" +316748,34in Ultrawide Monitor,1,379.99,12/14/19 19:48,"633 Johnson St, Los Angeles, CA 90001" +316749,AA Batteries (4-pack),1,3.84,12/08/19 11:01,"185 Hickory St, New York City, NY 10001" +316750,Macbook Pro Laptop,1,1700,12/30/19 20:23,"103 Jefferson St, Portland, OR 97035" +316751,Wired Headphones,1,11.99,12/17/19 11:33,"591 Park St, Los Angeles, CA 90001" +316752,Lightning Charging Cable,1,14.95,12/28/19 13:53,"841 Lakeview St, New York City, NY 10001" +316753,Apple Airpods Headphones,1,150,12/28/19 16:50,"437 6th St, Seattle, WA 98101" +316754,AA Batteries (4-pack),1,3.84,12/09/19 19:11,"830 Madison St, New York City, NY 10001" +316755,AA Batteries (4-pack),2,3.84,12/12/19 11:08,"323 Forest St, Atlanta, GA 30301" +316756,Bose SoundSport Headphones,1,99.99,12/30/19 18:17,"54 2nd St, Los Angeles, CA 90001" +316757,Bose SoundSport Headphones,1,99.99,12/16/19 11:36,"765 Maple St, Boston, MA 02215" +316758,USB-C Charging Cable,1,11.95,12/18/19 09:31,"919 4th St, San Francisco, CA 94016" +316759,AAA Batteries (4-pack),1,2.99,12/01/19 20:46,"892 Hill St, New York City, NY 10001" +316760,Apple Airpods Headphones,1,150,12/03/19 00:16,"490 Main St, Atlanta, GA 30301" +316761,Lightning Charging Cable,1,14.95,12/05/19 15:48,"734 14th St, Seattle, WA 98101" +316762,Lightning Charging Cable,1,14.95,12/03/19 05:12,"101 Lakeview St, Los Angeles, CA 90001" +316763,AA Batteries (4-pack),1,3.84,12/27/19 09:06,"525 2nd St, New York City, NY 10001" +316764,27in 4K Gaming Monitor,1,389.99,12/05/19 17:12,"629 Jefferson St, Seattle, WA 98101" +316765,Lightning Charging Cable,1,14.95,12/13/19 14:25,"228 Johnson St, San Francisco, CA 94016" +316766,iPhone,1,700,12/26/19 01:10,"702 4th St, San Francisco, CA 94016" +316767,Apple Airpods Headphones,1,150,12/08/19 22:44,"347 Willow St, Los Angeles, CA 90001" +316768,USB-C Charging Cable,1,11.95,12/18/19 20:16,"86 Wilson St, Boston, MA 02215" +316769,AAA Batteries (4-pack),2,2.99,12/10/19 11:21,"593 Sunset St, New York City, NY 10001" +316770,ThinkPad Laptop,1,999.99,12/27/19 19:49,"890 River St, Los Angeles, CA 90001" +316771,Apple Airpods Headphones,1,150,12/20/19 20:05,"38 Chestnut St, Portland, OR 97035" +316772,27in 4K Gaming Monitor,1,389.99,12/23/19 09:59,"22 Maple St, San Francisco, CA 94016" +316773,USB-C Charging Cable,1,11.95,12/10/19 13:45,"205 9th St, Dallas, TX 75001" +316774,Bose SoundSport Headphones,1,99.99,12/05/19 23:13,"707 South St, Portland, OR 97035" +316775,USB-C Charging Cable,1,11.95,12/06/19 20:37,"433 Jefferson St, San Francisco, CA 94016" +316776,AA Batteries (4-pack),1,3.84,12/19/19 20:48,"693 7th St, Boston, MA 02215" +316777,Wired Headphones,1,11.99,12/23/19 08:33,"14 13th St, Los Angeles, CA 90001" +316778,27in 4K Gaming Monitor,1,389.99,12/03/19 09:16,"110 4th St, Los Angeles, CA 90001" +316779,AA Batteries (4-pack),2,3.84,12/18/19 18:16,"133 Sunset St, San Francisco, CA 94016" +316780,USB-C Charging Cable,1,11.95,12/12/19 14:10,"80 14th St, Seattle, WA 98101" +316781,AA Batteries (4-pack),1,3.84,12/17/19 08:03,"708 Hickory St, San Francisco, CA 94016" +316782,iPhone,1,700,12/26/19 10:35,"197 Wilson St, New York City, NY 10001" +316783,Lightning Charging Cable,1,14.95,12/30/19 20:13,"655 Hickory St, Austin, TX 73301" +316784,Lightning Charging Cable,1,14.95,12/27/19 21:10,"264 Jackson St, New York City, NY 10001" +316785,iPhone,1,700,12/22/19 12:57,"942 North St, New York City, NY 10001" +316786,AAA Batteries (4-pack),1,2.99,12/28/19 11:21,"749 Spruce St, Los Angeles, CA 90001" +316787,Wired Headphones,1,11.99,12/15/19 18:11,"763 Willow St, New York City, NY 10001" +316788,Google Phone,1,600,12/02/19 23:35,"512 Jackson St, Seattle, WA 98101" +316789,Lightning Charging Cable,1,14.95,12/16/19 09:11,"421 6th St, San Francisco, CA 94016" +316790,Wired Headphones,1,11.99,12/05/19 10:07,"967 Lake St, New York City, NY 10001" +316791,Lightning Charging Cable,1,14.95,12/30/19 18:26,"905 Ridge St, Atlanta, GA 30301" +316792,USB-C Charging Cable,1,11.95,12/22/19 10:54,"363 1st St, Dallas, TX 75001" +316793,Bose SoundSport Headphones,1,99.99,12/21/19 08:43,"548 Walnut St, San Francisco, CA 94016" +316794,Lightning Charging Cable,2,14.95,12/08/19 20:56,"464 Meadow St, New York City, NY 10001" +316795,Google Phone,1,600,12/07/19 11:17,"577 Lakeview St, San Francisco, CA 94016" +316796,ThinkPad Laptop,1,999.99,12/23/19 17:20,"866 7th St, Atlanta, GA 30301" +316797,20in Monitor,1,109.99,12/07/19 12:18,"812 River St, New York City, NY 10001" +316798,Lightning Charging Cable,1,14.95,12/27/19 22:51,"362 Walnut St, San Francisco, CA 94016" +316799,USB-C Charging Cable,1,11.95,12/14/19 11:10,"324 River St, Los Angeles, CA 90001" +316800,AAA Batteries (4-pack),1,2.99,12/27/19 15:26,"6 North St, Los Angeles, CA 90001" +316801,USB-C Charging Cable,1,11.95,12/07/19 07:18,"385 Johnson St, Boston, MA 02215" +316802,Apple Airpods Headphones,1,150,12/20/19 19:42,"349 Madison St, Atlanta, GA 30301" +316803,34in Ultrawide Monitor,1,379.99,12/24/19 12:53,"411 Highland St, Dallas, TX 75001" +316804,USB-C Charging Cable,1,11.95,12/04/19 14:03,"223 Wilson St, New York City, NY 10001" +316805,Apple Airpods Headphones,1,150,12/03/19 11:08,"698 Park St, San Francisco, CA 94016" +316806,Flatscreen TV,1,300,12/13/19 23:50,"642 Chestnut St, San Francisco, CA 94016" +316807,AA Batteries (4-pack),1,3.84,12/05/19 17:46,"711 Jefferson St, Seattle, WA 98101" +316808,Wired Headphones,1,11.99,12/24/19 17:38,"391 14th St, Los Angeles, CA 90001" +316809,USB-C Charging Cable,1,11.95,12/23/19 01:11,"668 West St, San Francisco, CA 94016" +316810,Bose SoundSport Headphones,1,99.99,12/09/19 11:30,"285 8th St, Los Angeles, CA 90001" +316811,Apple Airpods Headphones,1,150,12/15/19 20:38,"2 Willow St, Boston, MA 02215" +316812,Wired Headphones,1,11.99,12/17/19 19:07,"214 4th St, Atlanta, GA 30301" +316813,34in Ultrawide Monitor,1,379.99,12/11/19 10:50,"152 Spruce St, New York City, NY 10001" +316813,AA Batteries (4-pack),1,3.84,12/11/19 10:50,"152 Spruce St, New York City, NY 10001" +316814,Wired Headphones,1,11.99,12/15/19 17:59,"395 Cedar St, New York City, NY 10001" +316815,AAA Batteries (4-pack),3,2.99,12/05/19 21:10,"407 4th St, Atlanta, GA 30301" +316816,Macbook Pro Laptop,1,1700,12/02/19 06:38,"94 North St, Austin, TX 73301" +316817,AA Batteries (4-pack),1,3.84,12/27/19 14:47,"527 Madison St, Los Angeles, CA 90001" +316818,Wired Headphones,1,11.99,12/04/19 20:04,"810 Wilson St, New York City, NY 10001" +316819,27in FHD Monitor,1,149.99,12/04/19 12:42,"644 Center St, Seattle, WA 98101" +316820,USB-C Charging Cable,1,11.95,12/12/19 14:30,"832 River St, San Francisco, CA 94016" +316821,Lightning Charging Cable,1,14.95,12/26/19 08:21,"576 4th St, Atlanta, GA 30301" +316822,Apple Airpods Headphones,1,150,12/17/19 22:00,"216 Sunset St, Los Angeles, CA 90001" +316823,Wired Headphones,1,11.99,12/27/19 18:05,"248 Meadow St, Boston, MA 02215" +316824,USB-C Charging Cable,1,11.95,12/23/19 10:18,"239 12th St, Atlanta, GA 30301" +316825,AA Batteries (4-pack),1,3.84,12/11/19 22:27,"233 2nd St, San Francisco, CA 94016" +316826,Apple Airpods Headphones,1,150,12/18/19 18:50,"880 Center St, Los Angeles, CA 90001" +316827,iPhone,1,700,12/25/19 00:35,"896 Chestnut St, New York City, NY 10001" +316828,USB-C Charging Cable,1,11.95,12/26/19 13:42,"91 Lake St, Los Angeles, CA 90001" +316829,34in Ultrawide Monitor,1,379.99,12/13/19 23:11,"295 Sunset St, San Francisco, CA 94016" +316830,Wired Headphones,1,11.99,12/25/19 12:03,"8 Johnson St, San Francisco, CA 94016" +316831,ThinkPad Laptop,1,999.99,12/18/19 07:21,"798 Lakeview St, Boston, MA 02215" +316832,AA Batteries (4-pack),3,3.84,12/05/19 08:37,"966 Spruce St, Boston, MA 02215" +316833,AA Batteries (4-pack),2,3.84,12/24/19 15:54,"545 9th St, Los Angeles, CA 90001" +316834,AAA Batteries (4-pack),1,2.99,12/26/19 07:49,"855 4th St, Austin, TX 73301" +316834,AAA Batteries (4-pack),1,2.99,12/26/19 07:49,"855 4th St, Austin, TX 73301" +316835,AAA Batteries (4-pack),1,2.99,12/17/19 11:31,"600 1st St, Atlanta, GA 30301" +316836,Lightning Charging Cable,1,14.95,12/06/19 13:44,"12 Cedar St, Boston, MA 02215" +316837,Apple Airpods Headphones,1,150,12/01/19 23:54,"998 Willow St, San Francisco, CA 94016" +316838,20in Monitor,1,109.99,12/24/19 20:12,"681 Pine St, New York City, NY 10001" +316839,AA Batteries (4-pack),2,3.84,12/18/19 00:35,"920 4th St, Seattle, WA 98101" +316840,iPhone,1,700,12/02/19 11:15,"647 Ridge St, New York City, NY 10001" +316841,Bose SoundSport Headphones,1,99.99,12/10/19 13:17,"790 13th St, New York City, NY 10001" +316842,Macbook Pro Laptop,1,1700,12/28/19 13:55,"21 7th St, San Francisco, CA 94016" +316843,Bose SoundSport Headphones,1,99.99,12/21/19 07:57,"944 5th St, Austin, TX 73301" +316844,AA Batteries (4-pack),1,3.84,12/11/19 17:21,"597 Wilson St, Dallas, TX 75001" +316845,Google Phone,1,600,12/10/19 21:39,"24 Church St, New York City, NY 10001" +316845,Wired Headphones,1,11.99,12/10/19 21:39,"24 Church St, New York City, NY 10001" +316846,34in Ultrawide Monitor,1,379.99,12/03/19 15:37,"688 Pine St, Los Angeles, CA 90001" +316847,Bose SoundSport Headphones,1,99.99,12/19/19 09:28,"648 Dogwood St, Seattle, WA 98101" +316848,27in 4K Gaming Monitor,1,389.99,12/13/19 20:23,"155 Lincoln St, Atlanta, GA 30301" +316849,Apple Airpods Headphones,1,150,12/14/19 05:29,"826 Johnson St, Dallas, TX 75001" +316850,Bose SoundSport Headphones,1,99.99,12/13/19 08:11,"161 Main St, Seattle, WA 98101" +316851,USB-C Charging Cable,1,11.95,12/18/19 08:40,"124 Cedar St, Dallas, TX 75001" +316852,Vareebadd Phone,1,400,12/14/19 07:58,"120 9th St, San Francisco, CA 94016" +316853,Wired Headphones,2,11.99,12/01/19 09:15,"276 Johnson St, Los Angeles, CA 90001" +316854,AAA Batteries (4-pack),2,2.99,12/14/19 16:44,"613 Wilson St, Dallas, TX 75001" +316855,20in Monitor,1,109.99,12/11/19 13:46,"131 5th St, Austin, TX 73301" +316856,USB-C Charging Cable,1,11.95,12/21/19 06:25,"850 Spruce St, New York City, NY 10001" +316857,iPhone,1,700,12/23/19 11:57,"987 Chestnut St, San Francisco, CA 94016" +316858,Lightning Charging Cable,1,14.95,12/04/19 13:10,"387 7th St, Los Angeles, CA 90001" +316859,Apple Airpods Headphones,1,150,12/16/19 21:49,"904 Wilson St, San Francisco, CA 94016" +316860,Macbook Pro Laptop,1,1700,12/14/19 12:56,"764 Sunset St, Los Angeles, CA 90001" +316861,AAA Batteries (4-pack),1,2.99,12/07/19 08:55,"384 1st St, Los Angeles, CA 90001" +316862,AA Batteries (4-pack),2,3.84,12/20/19 12:41,"156 Cedar St, San Francisco, CA 94016" +316863,Apple Airpods Headphones,1,150,12/25/19 19:39,"718 South St, San Francisco, CA 94016" +316864,Lightning Charging Cable,1,14.95,12/11/19 19:16,"3 Cedar St, San Francisco, CA 94016" +316865,AAA Batteries (4-pack),1,2.99,12/04/19 20:22,"318 Main St, Seattle, WA 98101" +316866,iPhone,1,700,12/13/19 17:07,"575 Sunset St, San Francisco, CA 94016" +316867,27in 4K Gaming Monitor,1,389.99,12/25/19 23:02,"76 Washington St, Los Angeles, CA 90001" +316868,iPhone,1,700,12/27/19 15:54,"428 4th St, San Francisco, CA 94016" +316869,Lightning Charging Cable,2,14.95,12/19/19 14:15,"85 Jefferson St, Atlanta, GA 30301" +316870,AAA Batteries (4-pack),1,2.99,12/18/19 11:44,"803 Center St, Los Angeles, CA 90001" +316871,Flatscreen TV,1,300,12/09/19 00:09,"174 9th St, Los Angeles, CA 90001" +316872,Wired Headphones,1,11.99,12/01/19 21:52,"217 Highland St, Atlanta, GA 30301" +316873,Apple Airpods Headphones,1,150,12/12/19 11:19,"665 Main St, Austin, TX 73301" +316874,34in Ultrawide Monitor,1,379.99,12/25/19 11:31,"555 5th St, San Francisco, CA 94016" +316875,Apple Airpods Headphones,1,150,12/08/19 19:05,"403 Forest St, Los Angeles, CA 90001" +316876,Apple Airpods Headphones,1,150,12/03/19 20:37,"718 11th St, Portland, OR 97035" +316877,AAA Batteries (4-pack),1,2.99,12/31/19 22:50,"48 Jefferson St, San Francisco, CA 94016" +316878,Lightning Charging Cable,2,14.95,12/12/19 14:56,"695 Pine St, San Francisco, CA 94016" +316879,34in Ultrawide Monitor,1,379.99,12/21/19 11:41,"655 Hickory St, San Francisco, CA 94016" +316880,AAA Batteries (4-pack),1,2.99,12/18/19 13:31,"642 Sunset St, Dallas, TX 75001" +316881,Apple Airpods Headphones,1,150,12/25/19 12:49,"668 Jackson St, New York City, NY 10001" +316882,AAA Batteries (4-pack),2,2.99,12/13/19 12:01,"731 Center St, Los Angeles, CA 90001" +316883,USB-C Charging Cable,1,11.95,12/10/19 17:54,"125 Lakeview St, Seattle, WA 98101" +316884,34in Ultrawide Monitor,1,379.99,12/11/19 19:59,"960 Church St, Boston, MA 02215" +316885,Macbook Pro Laptop,1,1700,12/25/19 10:05,"134 8th St, Atlanta, GA 30301" +316886,Bose SoundSport Headphones,1,99.99,12/02/19 14:03,"228 Lake St, Portland, OR 97035" +316887,AA Batteries (4-pack),1,3.84,12/12/19 10:32,"406 Walnut St, San Francisco, CA 94016" +316888,Wired Headphones,2,11.99,12/16/19 17:34,"859 Church St, Atlanta, GA 30301" +316889,Wired Headphones,1,11.99,12/10/19 20:09,"850 11th St, New York City, NY 10001" +316890,AAA Batteries (4-pack),2,2.99,12/18/19 16:23,"997 River St, San Francisco, CA 94016" +316891,Apple Airpods Headphones,1,150,12/20/19 12:14,"803 9th St, Los Angeles, CA 90001" +316892,Apple Airpods Headphones,1,150,12/27/19 08:01,"386 North St, San Francisco, CA 94016" +316893,34in Ultrawide Monitor,1,379.99,12/25/19 21:18,"175 Johnson St, San Francisco, CA 94016" +316894,USB-C Charging Cable,1,11.95,12/26/19 12:20,"473 Wilson St, San Francisco, CA 94016" +316895,AAA Batteries (4-pack),1,2.99,12/09/19 14:57,"183 Cedar St, San Francisco, CA 94016" +316896,27in 4K Gaming Monitor,1,389.99,12/22/19 10:58,"467 4th St, New York City, NY 10001" +316897,Lightning Charging Cable,3,14.95,12/03/19 15:33,"799 Park St, Seattle, WA 98101" +316898,AA Batteries (4-pack),1,3.84,12/23/19 12:30,"761 Church St, Seattle, WA 98101" +316899,Apple Airpods Headphones,1,150,12/17/19 13:10,"216 Pine St, Los Angeles, CA 90001" +316899,Wired Headphones,1,11.99,12/17/19 13:10,"216 Pine St, Los Angeles, CA 90001" +316900,AA Batteries (4-pack),3,3.84,12/16/19 16:07,"418 Hickory St, Los Angeles, CA 90001" +316900,iPhone,1,700,12/16/19 16:07,"418 Hickory St, Los Angeles, CA 90001" +316901,Bose SoundSport Headphones,1,99.99,12/17/19 09:45,"479 Cedar St, Boston, MA 02215" +316902,Bose SoundSport Headphones,1,99.99,12/18/19 22:33,"254 Adams St, San Francisco, CA 94016" +316903,AAA Batteries (4-pack),2,2.99,12/17/19 17:38,"944 Jackson St, San Francisco, CA 94016" +316904,20in Monitor,1,109.99,12/17/19 10:38,"475 Lake St, Austin, TX 73301" +316905,Google Phone,1,600,12/25/19 11:41,"402 4th St, New York City, NY 10001" +316906,Apple Airpods Headphones,1,150,12/06/19 14:01,"638 Walnut St, San Francisco, CA 94016" +316907,Wired Headphones,2,11.99,12/15/19 15:15,"640 10th St, Seattle, WA 98101" +316908,Wired Headphones,1,11.99,12/01/19 19:35,"736 Ridge St, Seattle, WA 98101" +316909,USB-C Charging Cable,1,11.95,12/07/19 00:31,"185 Maple St, Portland, OR 97035" +316910,Lightning Charging Cable,1,14.95,12/28/19 23:11,"506 River St, San Francisco, CA 94016" +316911,Lightning Charging Cable,1,14.95,12/09/19 22:14,"67 Madison St, San Francisco, CA 94016" +316912,Apple Airpods Headphones,1,150,12/13/19 15:11,"155 1st St, New York City, NY 10001" +316913,Bose SoundSport Headphones,1,99.99,12/30/19 20:30,"606 2nd St, Dallas, TX 75001" +316914,iPhone,1,700,12/28/19 22:22,"329 Lincoln St, Austin, TX 73301" +316915,Flatscreen TV,1,300,12/10/19 21:38,"932 Pine St, San Francisco, CA 94016" +316916,USB-C Charging Cable,1,11.95,12/18/19 19:41,"889 Ridge St, San Francisco, CA 94016" +316917,AAA Batteries (4-pack),2,2.99,12/31/19 07:56,"881 Washington St, Boston, MA 02215" +316918,Lightning Charging Cable,1,14.95,12/29/19 09:36,"729 Walnut St, New York City, NY 10001" +316919,Lightning Charging Cable,1,14.95,12/27/19 16:58,"568 Sunset St, Austin, TX 73301" +316920,34in Ultrawide Monitor,1,379.99,12/24/19 11:48,"895 12th St, Los Angeles, CA 90001" +316921,Wired Headphones,1,11.99,12/17/19 21:29,"827 Hickory St, Los Angeles, CA 90001" +316922,ThinkPad Laptop,1,999.99,12/24/19 20:37,"569 Ridge St, New York City, NY 10001" +316923,Apple Airpods Headphones,1,150,12/28/19 07:19,"122 Jackson St, Dallas, TX 75001" +316924,AAA Batteries (4-pack),2,2.99,12/19/19 20:44,"561 Main St, Seattle, WA 98101" +316925,Apple Airpods Headphones,1,150,12/04/19 01:53,"782 Willow St, Portland, OR 97035" +316926,Lightning Charging Cable,1,14.95,12/07/19 20:35,"419 14th St, San Francisco, CA 94016" +316927,AAA Batteries (4-pack),1,2.99,12/19/19 20:53,"744 5th St, Portland, ME 04101" +316928,Wired Headphones,1,11.99,12/09/19 21:02,"275 Forest St, Dallas, TX 75001" +316929,Bose SoundSport Headphones,1,99.99,12/01/19 10:24,"167 Willow St, Austin, TX 73301" +316930,AAA Batteries (4-pack),1,2.99,12/15/19 14:34,"42 6th St, San Francisco, CA 94016" +316931,AA Batteries (4-pack),1,3.84,12/12/19 16:24,"880 Cedar St, Austin, TX 73301" +316932,AAA Batteries (4-pack),1,2.99,12/31/19 22:17,"140 Adams St, Los Angeles, CA 90001" +316933,AA Batteries (4-pack),1,3.84,12/23/19 16:48,"549 Elm St, Seattle, WA 98101" +316934,AA Batteries (4-pack),1,3.84,12/18/19 19:28,"955 Lake St, San Francisco, CA 94016" +316935,Wired Headphones,1,11.99,12/24/19 19:21,"806 Chestnut St, San Francisco, CA 94016" +316936,ThinkPad Laptop,1,999.99,12/06/19 12:47,"195 8th St, Atlanta, GA 30301" +316937,AA Batteries (4-pack),2,3.84,12/07/19 12:38,"744 Washington St, San Francisco, CA 94016" +316938,USB-C Charging Cable,1,11.95,12/30/19 12:28,"259 Willow St, Boston, MA 02215" +316939,AAA Batteries (4-pack),2,2.99,12/11/19 20:04,"389 Jackson St, San Francisco, CA 94016" +316940,AAA Batteries (4-pack),3,2.99,12/03/19 17:55,"715 10th St, Austin, TX 73301" +316941,Flatscreen TV,1,300,12/08/19 13:12,"130 Meadow St, San Francisco, CA 94016" +316942,Apple Airpods Headphones,1,150,12/08/19 07:43,"690 Walnut St, San Francisco, CA 94016" +316943,ThinkPad Laptop,1,999.99,12/20/19 14:13,"799 13th St, San Francisco, CA 94016" +316944,27in FHD Monitor,1,149.99,12/17/19 00:47,"521 9th St, Los Angeles, CA 90001" +316945,Apple Airpods Headphones,1,150,12/16/19 17:13,"622 River St, San Francisco, CA 94016" +316946,USB-C Charging Cable,1,11.95,12/15/19 13:38,"919 Wilson St, New York City, NY 10001" +316947,Lightning Charging Cable,2,14.95,12/01/19 10:59,"415 Lake St, Atlanta, GA 30301" +316948,Google Phone,1,600,12/05/19 11:14,"867 Center St, Austin, TX 73301" +316949,USB-C Charging Cable,1,11.95,12/31/19 10:41,"614 Highland St, Los Angeles, CA 90001" +316950,27in FHD Monitor,1,149.99,12/02/19 14:32,"451 Forest St, Portland, OR 97035" +316951,Apple Airpods Headphones,1,150,12/28/19 17:47,"158 Hill St, San Francisco, CA 94016" +316952,27in 4K Gaming Monitor,1,389.99,12/15/19 09:33,"301 Dogwood St, Boston, MA 02215" +316953,Apple Airpods Headphones,1,150,12/10/19 10:36,"408 7th St, San Francisco, CA 94016" +316954,Wired Headphones,1,11.99,12/31/19 17:17,"68 Washington St, New York City, NY 10001" +316955,Apple Airpods Headphones,1,150,12/18/19 14:46,"840 Pine St, San Francisco, CA 94016" +316956,USB-C Charging Cable,1,11.95,12/01/19 17:54,"145 1st St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +316957,Bose SoundSport Headphones,1,99.99,12/22/19 14:40,"994 Highland St, Austin, TX 73301" +316958,Google Phone,1,600,12/16/19 06:21,"494 14th St, San Francisco, CA 94016" +316959,Apple Airpods Headphones,1,150,12/22/19 15:09,"10 Forest St, Dallas, TX 75001" +316960,Bose SoundSport Headphones,1,99.99,12/06/19 17:12,"351 Dogwood St, Boston, MA 02215" +316961,AA Batteries (4-pack),1,3.84,12/23/19 15:34,"873 Cherry St, Los Angeles, CA 90001" +316962,Apple Airpods Headphones,1,150,12/17/19 23:09,"561 12th St, Atlanta, GA 30301" +316963,Google Phone,1,600,12/05/19 10:56,"745 Center St, Dallas, TX 75001" +316963,Wired Headphones,1,11.99,12/05/19 10:56,"745 Center St, Dallas, TX 75001" +316964,Bose SoundSport Headphones,1,99.99,12/24/19 12:15,"433 Willow St, San Francisco, CA 94016" +316965,Lightning Charging Cable,1,14.95,12/14/19 16:58,"62 Hickory St, New York City, NY 10001" +316966,20in Monitor,1,109.99,12/17/19 12:17,"983 Washington St, Seattle, WA 98101" +316967,Apple Airpods Headphones,1,150,12/30/19 21:19,"610 Wilson St, San Francisco, CA 94016" +316968,LG Dryer,1,600.0,12/05/19 20:10,"862 Lakeview St, San Francisco, CA 94016" +316969,Lightning Charging Cable,1,14.95,12/24/19 12:37,"180 12th St, Austin, TX 73301" +316970,USB-C Charging Cable,1,11.95,12/17/19 17:06,"627 Elm St, Boston, MA 02215" +316971,Apple Airpods Headphones,1,150,12/17/19 10:57,"581 Center St, Atlanta, GA 30301" +316972,USB-C Charging Cable,1,11.95,12/01/19 18:09,"120 Forest St, San Francisco, CA 94016" +316973,27in FHD Monitor,1,149.99,12/25/19 19:00,"753 Lake St, Seattle, WA 98101" +316974,iPhone,1,700,12/10/19 12:23,"536 Spruce St, Los Angeles, CA 90001" +316974,Wired Headphones,1,11.99,12/10/19 12:23,"536 Spruce St, Los Angeles, CA 90001" +316975,USB-C Charging Cable,2,11.95,12/04/19 22:58,"598 12th St, Boston, MA 02215" +316976,Lightning Charging Cable,1,14.95,12/27/19 11:29,"712 Maple St, Boston, MA 02215" +316977,Flatscreen TV,1,300,12/14/19 10:04,"146 Church St, Los Angeles, CA 90001" +316978,27in 4K Gaming Monitor,1,389.99,12/12/19 07:01,"95 14th St, Portland, OR 97035" +316979,Lightning Charging Cable,1,14.95,12/28/19 16:42,"308 Chestnut St, New York City, NY 10001" +316980,iPhone,1,700,12/19/19 02:03,"134 Sunset St, Dallas, TX 75001" +316981,34in Ultrawide Monitor,1,379.99,12/15/19 22:43,"585 Ridge St, Portland, ME 04101" +316982,Apple Airpods Headphones,1,150,12/21/19 14:33,"221 10th St, New York City, NY 10001" +316983,USB-C Charging Cable,1,11.95,12/22/19 12:01,"14 11th St, Los Angeles, CA 90001" +316984,AAA Batteries (4-pack),1,2.99,12/26/19 19:46,"337 14th St, Los Angeles, CA 90001" +316985,27in FHD Monitor,1,149.99,12/01/19 20:48,"875 Pine St, Dallas, TX 75001" +316986,iPhone,1,700,12/31/19 21:19,"734 11th St, Boston, MA 02215" +316986,Lightning Charging Cable,1,14.95,12/31/19 21:19,"734 11th St, Boston, MA 02215" +316987,USB-C Charging Cable,1,11.95,12/01/19 08:33,"682 Ridge St, San Francisco, CA 94016" +316988,Apple Airpods Headphones,1,150,12/14/19 17:50,"798 7th St, Austin, TX 73301" +316989,AA Batteries (4-pack),1,3.84,12/12/19 12:33,"530 Madison St, Los Angeles, CA 90001" +316990,AAA Batteries (4-pack),1,2.99,12/03/19 17:45,"31 Madison St, San Francisco, CA 94016" +316991,AAA Batteries (4-pack),2,2.99,12/15/19 12:14,"552 Church St, San Francisco, CA 94016" +316992,AAA Batteries (4-pack),1,2.99,12/16/19 23:33,"508 12th St, Boston, MA 02215" +316993,AA Batteries (4-pack),1,3.84,12/11/19 06:56,"973 11th St, Boston, MA 02215" +316993,27in FHD Monitor,1,149.99,12/11/19 06:56,"973 11th St, Boston, MA 02215" +316994,Wired Headphones,1,11.99,12/10/19 20:30,"670 12th St, Dallas, TX 75001" +316995,USB-C Charging Cable,1,11.95,12/14/19 12:11,"394 7th St, Austin, TX 73301" +316996,AA Batteries (4-pack),1,3.84,12/08/19 00:04,"219 Walnut St, New York City, NY 10001" +316997,Apple Airpods Headphones,1,150,12/27/19 09:57,"355 Jackson St, Seattle, WA 98101" +316998,AA Batteries (4-pack),1,3.84,12/03/19 15:05,"168 Ridge St, Boston, MA 02215" +316999,Lightning Charging Cable,1,14.95,12/26/19 14:32,"724 Sunset St, New York City, NY 10001" +317000,Apple Airpods Headphones,1,150,12/29/19 18:46,"987 Washington St, Los Angeles, CA 90001" +317001,27in 4K Gaming Monitor,1,389.99,12/16/19 00:58,"420 7th St, San Francisco, CA 94016" +317002,Wired Headphones,1,11.99,12/21/19 14:44,"625 Hickory St, Portland, OR 97035" +317003,USB-C Charging Cable,1,11.95,12/01/19 11:01,"923 Wilson St, San Francisco, CA 94016" +317004,AAA Batteries (4-pack),2,2.99,12/20/19 06:01,"568 Adams St, Austin, TX 73301" +317005,USB-C Charging Cable,1,11.95,12/25/19 13:20,"544 Dogwood St, Boston, MA 02215" +317006,AAA Batteries (4-pack),1,2.99,12/08/19 08:49,"191 4th St, Seattle, WA 98101" +317007,Wired Headphones,1,11.99,12/16/19 17:23,"472 Madison St, Atlanta, GA 30301" +317008,USB-C Charging Cable,1,11.95,12/11/19 18:06,"473 Lake St, Atlanta, GA 30301" +317009,Macbook Pro Laptop,1,1700,12/18/19 17:31,"731 Johnson St, San Francisco, CA 94016" +317010,AA Batteries (4-pack),1,3.84,12/25/19 14:09,"192 Forest St, New York City, NY 10001" +317011,Lightning Charging Cable,1,14.95,12/21/19 21:32,"467 10th St, Los Angeles, CA 90001" +317012,AA Batteries (4-pack),1,3.84,12/14/19 08:57,"264 Jefferson St, Portland, OR 97035" +317013,Apple Airpods Headphones,1,150,12/29/19 21:14,"399 South St, San Francisco, CA 94016" +317014,Apple Airpods Headphones,1,150,12/08/19 22:46,"612 Jefferson St, San Francisco, CA 94016" +317015,Bose SoundSport Headphones,1,99.99,12/24/19 01:07,"440 Cedar St, Boston, MA 02215" +317016,Wired Headphones,1,11.99,12/10/19 13:46,"826 Washington St, San Francisco, CA 94016" +317017,Vareebadd Phone,1,400,12/29/19 13:06,"885 14th St, San Francisco, CA 94016" +317018,Wired Headphones,1,11.99,12/21/19 11:52,"379 Cedar St, Portland, OR 97035" +317019,Bose SoundSport Headphones,1,99.99,12/01/19 10:42,"918 Spruce St, Atlanta, GA 30301" +317020,iPhone,1,700,12/30/19 23:24,"816 10th St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +317021,27in FHD Monitor,1,149.99,12/10/19 23:20,"266 Lakeview St, Austin, TX 73301" +317022,AA Batteries (4-pack),1,3.84,12/30/19 11:02,"265 Chestnut St, San Francisco, CA 94016" +317023,27in FHD Monitor,1,149.99,12/09/19 12:52,"25 Cedar St, New York City, NY 10001" +317024,Wired Headphones,1,11.99,12/19/19 10:48,"596 Wilson St, Dallas, TX 75001" +317025,Lightning Charging Cable,1,14.95,12/26/19 18:16,"970 Lake St, Los Angeles, CA 90001" +317026,27in 4K Gaming Monitor,1,389.99,12/13/19 08:20,"798 Adams St, San Francisco, CA 94016" +317027,Wired Headphones,1,11.99,12/06/19 01:25,"853 Main St, Atlanta, GA 30301" +317028,Wired Headphones,1,11.99,12/07/19 21:04,"660 Cedar St, San Francisco, CA 94016" +317029,Apple Airpods Headphones,1,150,12/07/19 22:51,"884 River St, Atlanta, GA 30301" +317030,Macbook Pro Laptop,1,1700,12/26/19 20:35,"607 Wilson St, San Francisco, CA 94016" +317031,Flatscreen TV,1,300,12/31/19 13:30,"468 9th St, New York City, NY 10001" +317032,Lightning Charging Cable,1,14.95,12/13/19 12:06,"876 River St, New York City, NY 10001" +317033,USB-C Charging Cable,1,11.95,12/19/19 15:53,"271 Maple St, San Francisco, CA 94016" +317034,USB-C Charging Cable,1,11.95,12/09/19 23:24,"754 Johnson St, Los Angeles, CA 90001" +317035,Lightning Charging Cable,1,14.95,12/23/19 10:31,"624 Adams St, Los Angeles, CA 90001" +317036,Bose SoundSport Headphones,1,99.99,12/01/19 14:29,"316 Madison St, New York City, NY 10001" +317037,AAA Batteries (4-pack),1,2.99,12/22/19 09:09,"656 2nd St, Los Angeles, CA 90001" +317038,27in 4K Gaming Monitor,1,389.99,12/11/19 12:27,"80 Wilson St, Atlanta, GA 30301" +317039,Bose SoundSport Headphones,1,99.99,12/05/19 13:01,"916 Hill St, Seattle, WA 98101" +317040,Lightning Charging Cable,1,14.95,12/08/19 17:17,"1 2nd St, Los Angeles, CA 90001" +317041,Google Phone,1,600,12/17/19 10:27,"507 West St, Los Angeles, CA 90001" +317042,USB-C Charging Cable,1,11.95,12/16/19 20:39,"751 12th St, San Francisco, CA 94016" +317043,AAA Batteries (4-pack),1,2.99,12/24/19 20:40,"38 Church St, New York City, NY 10001" +317044,Flatscreen TV,1,300,12/15/19 23:33,"910 Jefferson St, Dallas, TX 75001" +317045,Wired Headphones,2,11.99,12/18/19 10:14,"802 Ridge St, Los Angeles, CA 90001" +317046,27in 4K Gaming Monitor,1,389.99,12/21/19 16:43,"322 Pine St, New York City, NY 10001" +317047,34in Ultrawide Monitor,1,379.99,12/19/19 20:02,"502 South St, San Francisco, CA 94016" +317048,Bose SoundSport Headphones,1,99.99,12/17/19 10:41,"795 North St, Boston, MA 02215" +317049,AA Batteries (4-pack),1,3.84,12/23/19 18:30,"254 Hill St, San Francisco, CA 94016" +317050,34in Ultrawide Monitor,1,379.99,12/26/19 19:15,"121 Hill St, New York City, NY 10001" +317051,Wired Headphones,1,11.99,12/23/19 12:00,"74 Forest St, Los Angeles, CA 90001" +317051,iPhone,1,700,12/23/19 12:00,"74 Forest St, Los Angeles, CA 90001" +317052,iPhone,1,700,12/21/19 23:49,"858 13th St, Los Angeles, CA 90001" +317053,iPhone,1,700,12/19/19 10:55,"109 Center St, Portland, ME 04101" +317054,Flatscreen TV,1,300,12/21/19 11:13,"198 Ridge St, Boston, MA 02215" +317055,Wired Headphones,2,11.99,12/16/19 17:58,"606 Sunset St, Boston, MA 02215" +317056,AA Batteries (4-pack),1,3.84,12/14/19 19:51,"92 Chestnut St, San Francisco, CA 94016" +317057,Bose SoundSport Headphones,1,99.99,12/25/19 13:45,"153 South St, Los Angeles, CA 90001" +317058,Wired Headphones,1,11.99,12/20/19 13:05,"185 Chestnut St, San Francisco, CA 94016" +317059,Flatscreen TV,1,300,12/10/19 10:54,"879 6th St, New York City, NY 10001" +317060,iPhone,1,700,12/17/19 14:45,"27 North St, San Francisco, CA 94016" +317061,Lightning Charging Cable,2,14.95,12/28/19 08:29,"838 North St, San Francisco, CA 94016" +317062,AA Batteries (4-pack),1,3.84,12/12/19 15:08,"367 Main St, Boston, MA 02215" +317063,Apple Airpods Headphones,1,150,12/01/19 13:13,"811 Pine St, Boston, MA 02215" +317064,Bose SoundSport Headphones,1,99.99,12/05/19 11:36,"4 13th St, Boston, MA 02215" +317065,Bose SoundSport Headphones,1,99.99,12/22/19 05:59,"950 North St, San Francisco, CA 94016" +317066,27in FHD Monitor,1,149.99,12/07/19 21:51,"997 Washington St, New York City, NY 10001" +317067,Wired Headphones,1,11.99,12/02/19 11:52,"220 Hickory St, Portland, OR 97035" +317068,Lightning Charging Cable,1,14.95,12/24/19 15:39,"30 Pine St, Los Angeles, CA 90001" +317069,AAA Batteries (4-pack),1,2.99,12/01/19 22:10,"851 Elm St, San Francisco, CA 94016" +317070,Wired Headphones,1,11.99,12/20/19 07:00,"758 8th St, Portland, OR 97035" +,,,,, +317071,Flatscreen TV,1,300,12/23/19 17:59,"612 Jefferson St, Los Angeles, CA 90001" +317072,Bose SoundSport Headphones,1,99.99,12/08/19 02:45,"523 Lincoln St, Los Angeles, CA 90001" +317073,Bose SoundSport Headphones,1,99.99,12/10/19 13:08,"356 1st St, San Francisco, CA 94016" +317073,34in Ultrawide Monitor,1,379.99,12/10/19 13:08,"356 1st St, San Francisco, CA 94016" +317074,Vareebadd Phone,1,400,12/06/19 10:29,"143 Chestnut St, San Francisco, CA 94016" +317074,Wired Headphones,1,11.99,12/06/19 10:29,"143 Chestnut St, San Francisco, CA 94016" +317075,AAA Batteries (4-pack),1,2.99,12/08/19 22:43,"737 Cherry St, San Francisco, CA 94016" +317076,USB-C Charging Cable,1,11.95,12/10/19 20:26,"487 Adams St, Atlanta, GA 30301" +317077,Macbook Pro Laptop,1,1700,12/06/19 13:26,"42 10th St, Atlanta, GA 30301" +317078,Bose SoundSport Headphones,1,99.99,12/21/19 15:34,"208 11th St, Atlanta, GA 30301" +317079,USB-C Charging Cable,1,11.95,12/19/19 10:53,"733 South St, New York City, NY 10001" +317080,AA Batteries (4-pack),1,3.84,12/02/19 19:24,"616 Cedar St, Boston, MA 02215" +317081,USB-C Charging Cable,1,11.95,12/08/19 20:58,"662 13th St, Boston, MA 02215" +317082,AA Batteries (4-pack),1,3.84,12/21/19 06:44,"52 West St, San Francisco, CA 94016" +317083,USB-C Charging Cable,1,11.95,12/08/19 12:31,"773 Dogwood St, New York City, NY 10001" +317084,20in Monitor,1,109.99,12/05/19 23:36,"683 Park St, Boston, MA 02215" +317085,Wired Headphones,2,11.99,12/16/19 13:47,"442 Ridge St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +317086,Macbook Pro Laptop,1,1700,12/09/19 09:54,"373 West St, Austin, TX 73301" +317087,iPhone,1,700,12/06/19 00:01,"750 10th St, Los Angeles, CA 90001" +317088,iPhone,1,700,12/24/19 13:22,"89 Maple St, Seattle, WA 98101" +317089,USB-C Charging Cable,1,11.95,12/02/19 08:43,"186 Ridge St, San Francisco, CA 94016" +317090,AAA Batteries (4-pack),1,2.99,12/13/19 19:35,"473 12th St, Los Angeles, CA 90001" +317091,34in Ultrawide Monitor,1,379.99,12/01/19 14:18,"107 Madison St, Austin, TX 73301" +317092,20in Monitor,1,109.99,12/29/19 15:35,"924 1st St, Boston, MA 02215" +317093,Vareebadd Phone,1,400,12/01/19 13:52,"80 1st St, San Francisco, CA 94016" +317093,USB-C Charging Cable,1,11.95,12/01/19 13:52,"80 1st St, San Francisco, CA 94016" +317094,Lightning Charging Cable,1,14.95,12/13/19 17:04,"646 Church St, Dallas, TX 75001" +317095,Macbook Pro Laptop,1,1700,12/31/19 20:08,"122 Walnut St, Los Angeles, CA 90001" +317096,AA Batteries (4-pack),1,3.84,12/12/19 06:56,"617 Wilson St, New York City, NY 10001" +317097,20in Monitor,1,109.99,12/26/19 17:50,"681 Hickory St, New York City, NY 10001" +317098,iPhone,1,700,12/13/19 14:53,"193 10th St, Atlanta, GA 30301" +317098,Wired Headphones,1,11.99,12/13/19 14:53,"193 10th St, Atlanta, GA 30301" +317099,Macbook Pro Laptop,1,1700,12/25/19 10:57,"99 Adams St, San Francisco, CA 94016" +317100,AAA Batteries (4-pack),2,2.99,12/02/19 19:12,"697 12th St, Boston, MA 02215" +317101,Wired Headphones,1,11.99,12/12/19 14:16,"885 Spruce St, San Francisco, CA 94016" +317102,USB-C Charging Cable,1,11.95,12/31/19 20:27,"861 1st St, Portland, ME 04101" +317103,AA Batteries (4-pack),1,3.84,12/20/19 06:52,"161 5th St, Los Angeles, CA 90001" +317104,Lightning Charging Cable,1,14.95,12/26/19 16:37,"696 9th St, Austin, TX 73301" +317105,27in FHD Monitor,1,149.99,12/10/19 13:01,"361 River St, Portland, OR 97035" +317105,Wired Headphones,1,11.99,12/10/19 13:01,"361 River St, Portland, OR 97035" +317106,Bose SoundSport Headphones,1,99.99,12/15/19 06:40,"850 South St, New York City, NY 10001" +317106,Macbook Pro Laptop,1,1700,12/15/19 06:40,"850 South St, New York City, NY 10001" +317107,Lightning Charging Cable,1,14.95,12/06/19 18:30,"122 Forest St, Portland, OR 97035" +317108,20in Monitor,1,109.99,12/08/19 11:34,"640 Wilson St, Atlanta, GA 30301" +317109,USB-C Charging Cable,1,11.95,12/21/19 12:45,"782 Sunset St, San Francisco, CA 94016" +317110,Bose SoundSport Headphones,1,99.99,12/13/19 12:03,"444 Highland St, Boston, MA 02215" +317111,AAA Batteries (4-pack),2,2.99,12/31/19 01:09,"445 Main St, Los Angeles, CA 90001" +317112,Apple Airpods Headphones,1,150,12/06/19 16:49,"645 Pine St, Los Angeles, CA 90001" +317113,USB-C Charging Cable,1,11.95,12/05/19 00:51,"892 Hill St, Los Angeles, CA 90001" +317114,AAA Batteries (4-pack),2,2.99,12/29/19 17:35,"469 North St, San Francisco, CA 94016" +317115,34in Ultrawide Monitor,1,379.99,12/08/19 13:08,"738 4th St, Seattle, WA 98101" +317116,Wired Headphones,1,11.99,12/30/19 10:00,"307 Washington St, Los Angeles, CA 90001" +317117,AA Batteries (4-pack),3,3.84,12/02/19 21:35,"274 West St, Portland, OR 97035" +317118,Bose SoundSport Headphones,1,99.99,12/10/19 23:29,"633 Chestnut St, Los Angeles, CA 90001" +317119,Bose SoundSport Headphones,1,99.99,12/19/19 06:06,"529 1st St, Portland, OR 97035" +317120,AA Batteries (4-pack),2,3.84,12/25/19 17:31,"864 Pine St, San Francisco, CA 94016" +317121,Lightning Charging Cable,1,14.95,12/26/19 15:06,"566 12th St, San Francisco, CA 94016" +317122,Apple Airpods Headphones,1,150,12/31/19 15:08,"988 Lincoln St, New York City, NY 10001" +317123,Flatscreen TV,1,300,12/08/19 11:30,"657 Main St, Dallas, TX 75001" +317124,USB-C Charging Cable,1,11.95,12/15/19 20:15,"907 Forest St, Boston, MA 02215" +317125,AA Batteries (4-pack),2,3.84,12/11/19 18:38,"715 Main St, Seattle, WA 98101" +317126,Apple Airpods Headphones,1,150,12/21/19 19:09,"203 7th St, San Francisco, CA 94016" +317127,USB-C Charging Cable,1,11.95,12/18/19 02:18,"787 2nd St, Boston, MA 02215" +317128,AAA Batteries (4-pack),1,2.99,12/28/19 11:05,"126 Cherry St, Atlanta, GA 30301" +317129,27in FHD Monitor,1,149.99,12/17/19 11:21,"320 Jackson St, Atlanta, GA 30301" +317130,Bose SoundSport Headphones,1,99.99,12/02/19 13:49,"388 Sunset St, Boston, MA 02215" +317131,Macbook Pro Laptop,1,1700,12/07/19 00:50,"205 Forest St, Portland, OR 97035" +317132,Apple Airpods Headphones,1,150,12/24/19 13:30,"43 North St, New York City, NY 10001" +317133,34in Ultrawide Monitor,1,379.99,12/19/19 03:22,"905 West St, Los Angeles, CA 90001" +317134,Lightning Charging Cable,1,14.95,12/26/19 10:06,"864 Chestnut St, San Francisco, CA 94016" +317135,Macbook Pro Laptop,1,1700,12/01/19 17:34,"939 12th St, New York City, NY 10001" +317136,Bose SoundSport Headphones,1,99.99,12/26/19 18:11,"217 14th St, Austin, TX 73301" +317137,iPhone,1,700,12/01/19 21:21,"858 Church St, Seattle, WA 98101" +317138,34in Ultrawide Monitor,1,379.99,12/23/19 14:09,"272 Elm St, Boston, MA 02215" +317139,Lightning Charging Cable,1,14.95,12/17/19 20:33,"904 Church St, Portland, OR 97035" +317140,Macbook Pro Laptop,1,1700,12/13/19 23:35,"923 Hill St, Seattle, WA 98101" +317141,Macbook Pro Laptop,1,1700,12/11/19 17:13,"842 6th St, Los Angeles, CA 90001" +317142,Wired Headphones,1,11.99,12/10/19 15:20,"420 4th St, New York City, NY 10001" +317143,Macbook Pro Laptop,1,1700,12/16/19 20:42,"837 Washington St, San Francisco, CA 94016" +317144,AAA Batteries (4-pack),3,2.99,12/04/19 08:11,"370 Main St, San Francisco, CA 94016" +317145,34in Ultrawide Monitor,1,379.99,12/06/19 23:32,"241 Johnson St, New York City, NY 10001" +317146,AAA Batteries (4-pack),1,2.99,12/27/19 14:56,"855 Cherry St, San Francisco, CA 94016" +317147,AA Batteries (4-pack),2,3.84,12/06/19 07:21,"656 14th St, Los Angeles, CA 90001" +317148,Bose SoundSport Headphones,1,99.99,12/18/19 12:48,"634 Cedar St, Dallas, TX 75001" +317149,Google Phone,1,600,12/12/19 16:39,"305 Washington St, Los Angeles, CA 90001" +317149,Wired Headphones,2,11.99,12/12/19 16:39,"305 Washington St, Los Angeles, CA 90001" +317150,Lightning Charging Cable,2,14.95,12/01/19 16:59,"708 2nd St, Boston, MA 02215" +317151,27in 4K Gaming Monitor,1,389.99,12/13/19 10:35,"768 Hickory St, Portland, OR 97035" +317152,27in 4K Gaming Monitor,1,389.99,12/20/19 20:30,"484 Pine St, Dallas, TX 75001" +317153,ThinkPad Laptop,1,999.99,12/06/19 00:45,"721 Church St, Portland, OR 97035" +317154,Bose SoundSport Headphones,1,99.99,12/06/19 07:00,"407 West St, San Francisco, CA 94016" +317155,Bose SoundSport Headphones,1,99.99,12/21/19 22:24,"34 Forest St, San Francisco, CA 94016" +317156,Apple Airpods Headphones,1,150,12/06/19 14:01,"258 Center St, Los Angeles, CA 90001" +317157,27in FHD Monitor,1,149.99,12/22/19 15:43,"674 Madison St, San Francisco, CA 94016" +317158,ThinkPad Laptop,1,999.99,12/06/19 04:52,"470 Cherry St, San Francisco, CA 94016" +317159,USB-C Charging Cable,1,11.95,12/12/19 09:10,"96 Lakeview St, Seattle, WA 98101" +317160,Lightning Charging Cable,1,14.95,12/08/19 17:13,"278 Washington St, San Francisco, CA 94016" +317161,Bose SoundSport Headphones,1,99.99,12/27/19 14:19,"478 Madison St, Los Angeles, CA 90001" +317162,AA Batteries (4-pack),2,3.84,12/26/19 20:39,"9 Adams St, Seattle, WA 98101" +317163,27in FHD Monitor,1,149.99,12/21/19 20:27,"796 Lake St, Los Angeles, CA 90001" +317164,Google Phone,1,600,12/26/19 15:52,"699 Johnson St, San Francisco, CA 94016" +317165,34in Ultrawide Monitor,1,379.99,12/16/19 16:32,"310 Hill St, San Francisco, CA 94016" +317166,34in Ultrawide Monitor,1,379.99,12/31/19 12:20,"251 Madison St, San Francisco, CA 94016" +317167,AA Batteries (4-pack),1,3.84,12/06/19 20:26,"541 5th St, Atlanta, GA 30301" +317168,AAA Batteries (4-pack),1,2.99,12/22/19 13:32,"638 Hill St, New York City, NY 10001" +317169,Lightning Charging Cable,1,14.95,12/10/19 18:48,"76 Dogwood St, Seattle, WA 98101" +317170,AA Batteries (4-pack),1,3.84,12/20/19 22:34,"542 Willow St, Dallas, TX 75001" +317171,USB-C Charging Cable,1,11.95,12/10/19 21:24,"597 8th St, Boston, MA 02215" +317172,iPhone,1,700,12/12/19 18:57,"500 14th St, Seattle, WA 98101" +317173,AA Batteries (4-pack),1,3.84,12/03/19 22:14,"492 Forest St, San Francisco, CA 94016" +317174,AAA Batteries (4-pack),2,2.99,12/30/19 13:28,"92 Jefferson St, Boston, MA 02215" +317175,AAA Batteries (4-pack),2,2.99,12/09/19 15:23,"458 Madison St, Los Angeles, CA 90001" +317176,USB-C Charging Cable,1,11.95,12/16/19 20:33,"206 Forest St, Los Angeles, CA 90001" +317177,AAA Batteries (4-pack),1,2.99,12/23/19 19:40,"905 Sunset St, San Francisco, CA 94016" +317178,Wired Headphones,1,11.99,12/17/19 15:22,"410 Washington St, Dallas, TX 75001" +317179,iPhone,1,700,12/03/19 19:03,"390 Meadow St, San Francisco, CA 94016" +317179,Lightning Charging Cable,1,14.95,12/03/19 19:03,"390 Meadow St, San Francisco, CA 94016" +317180,USB-C Charging Cable,1,11.95,12/17/19 13:24,"508 Madison St, Boston, MA 02215" +317181,Vareebadd Phone,1,400,12/20/19 21:08,"183 Hickory St, New York City, NY 10001" +317182,Apple Airpods Headphones,1,150,12/13/19 20:58,"781 Church St, San Francisco, CA 94016" +317183,USB-C Charging Cable,1,11.95,12/21/19 10:20,"344 14th St, Seattle, WA 98101" +317184,AAA Batteries (4-pack),2,2.99,12/12/19 10:00,"170 West St, Boston, MA 02215" +317185,20in Monitor,1,109.99,12/02/19 18:37,"297 Wilson St, Seattle, WA 98101" +317186,AA Batteries (4-pack),1,3.84,12/26/19 10:48,"199 12th St, San Francisco, CA 94016" +317187,AA Batteries (4-pack),1,3.84,12/18/19 16:45,"267 South St, Portland, OR 97035" +317188,Wired Headphones,1,11.99,12/08/19 14:02,"855 Lincoln St, Austin, TX 73301" +317189,AA Batteries (4-pack),1,3.84,12/14/19 21:23,"865 South St, Seattle, WA 98101" +317190,AAA Batteries (4-pack),1,2.99,12/19/19 21:15,"629 Pine St, Los Angeles, CA 90001" +317191,27in FHD Monitor,1,149.99,12/14/19 01:30,"830 Center St, Boston, MA 02215" +317192,Wired Headphones,1,11.99,12/18/19 18:06,"792 Cherry St, Boston, MA 02215" +,,,,, +317193,Apple Airpods Headphones,1,150,12/19/19 11:12,"903 7th St, New York City, NY 10001" +317194,Lightning Charging Cable,1,14.95,12/09/19 10:52,"814 Adams St, Atlanta, GA 30301" +317195,Lightning Charging Cable,1,14.95,12/20/19 17:28,"62 Park St, San Francisco, CA 94016" +317196,AAA Batteries (4-pack),1,2.99,12/05/19 11:51,"954 Center St, Los Angeles, CA 90001" +317197,Apple Airpods Headphones,1,150,12/18/19 12:38,"692 Willow St, Dallas, TX 75001" +317198,27in 4K Gaming Monitor,1,389.99,12/30/19 19:32,"4 Main St, Austin, TX 73301" +317199,AA Batteries (4-pack),1,3.84,12/22/19 15:03,"758 10th St, Austin, TX 73301" +317200,Lightning Charging Cable,1,14.95,12/14/19 19:31,"138 Spruce St, New York City, NY 10001" +317201,Vareebadd Phone,1,400,12/11/19 11:43,"276 Walnut St, San Francisco, CA 94016" +317202,AAA Batteries (4-pack),1,2.99,12/28/19 23:41,"617 13th St, New York City, NY 10001" +317202,Lightning Charging Cable,1,14.95,12/28/19 23:41,"617 13th St, New York City, NY 10001" +317203,Wired Headphones,1,11.99,12/28/19 18:10,"634 Jefferson St, Los Angeles, CA 90001" +317204,Flatscreen TV,1,300,12/07/19 20:41,"186 Jefferson St, New York City, NY 10001" +317205,Macbook Pro Laptop,1,1700,12/07/19 08:43,"562 Highland St, San Francisco, CA 94016" +317206,AA Batteries (4-pack),1,3.84,12/03/19 11:02,"716 Adams St, San Francisco, CA 94016" +317207,Macbook Pro Laptop,1,1700,12/03/19 14:09,"8 Maple St, New York City, NY 10001" +317208,AAA Batteries (4-pack),1,2.99,12/04/19 11:30,"558 7th St, Portland, OR 97035" +317209,34in Ultrawide Monitor,1,379.99,12/06/19 08:51,"772 1st St, Los Angeles, CA 90001" +317210,USB-C Charging Cable,1,11.95,12/30/19 18:56,"660 14th St, Seattle, WA 98101" +317211,LG Washing Machine,1,600.0,12/27/19 10:35,"60 Meadow St, Los Angeles, CA 90001" +317212,USB-C Charging Cable,1,11.95,12/06/19 14:51,"111 Church St, Atlanta, GA 30301" +317213,27in FHD Monitor,1,149.99,12/02/19 08:30,"749 Main St, Portland, OR 97035" +317214,Flatscreen TV,1,300,12/29/19 16:45,"52 River St, Los Angeles, CA 90001" +317215,27in FHD Monitor,1,149.99,12/29/19 12:27,"153 Ridge St, Seattle, WA 98101" +317216,34in Ultrawide Monitor,1,379.99,12/29/19 11:28,"801 Forest St, New York City, NY 10001" +317217,AA Batteries (4-pack),1,3.84,12/11/19 11:33,"297 2nd St, Austin, TX 73301" +317218,AA Batteries (4-pack),3,3.84,12/07/19 20:43,"424 Ridge St, San Francisco, CA 94016" +317219,Wired Headphones,1,11.99,12/17/19 00:44,"155 Wilson St, Atlanta, GA 30301" +317220,Lightning Charging Cable,1,14.95,12/22/19 11:36,"209 2nd St, Los Angeles, CA 90001" +317221,ThinkPad Laptop,1,999.99,12/19/19 10:34,"251 Main St, Portland, OR 97035" +317221,USB-C Charging Cable,1,11.95,12/19/19 10:34,"251 Main St, Portland, OR 97035" +317222,Wired Headphones,1,11.99,12/29/19 19:58,"842 Cherry St, Seattle, WA 98101" +317223,Lightning Charging Cable,1,14.95,12/01/19 12:17,"711 Jefferson St, San Francisco, CA 94016" +317224,27in FHD Monitor,1,149.99,12/19/19 21:31,"373 9th St, Dallas, TX 75001" +317224,Lightning Charging Cable,1,14.95,12/19/19 21:31,"373 9th St, Dallas, TX 75001" +317225,Apple Airpods Headphones,1,150,12/12/19 12:01,"287 Jackson St, San Francisco, CA 94016" +317226,AA Batteries (4-pack),1,3.84,12/26/19 20:53,"256 South St, Seattle, WA 98101" +317227,iPhone,1,700,12/01/19 19:33,"411 West St, San Francisco, CA 94016" +317228,Lightning Charging Cable,1,14.95,12/11/19 02:04,"866 11th St, San Francisco, CA 94016" +317229,AA Batteries (4-pack),1,3.84,12/07/19 20:13,"400 Jefferson St, Seattle, WA 98101" +317230,AA Batteries (4-pack),1,3.84,12/07/19 15:38,"519 Dogwood St, Atlanta, GA 30301" +317231,Apple Airpods Headphones,1,150,12/22/19 18:37,"361 11th St, Austin, TX 73301" +317232,AAA Batteries (4-pack),1,2.99,12/16/19 20:38,"881 Ridge St, Los Angeles, CA 90001" +317233,Apple Airpods Headphones,1,150,12/28/19 14:23,"58 Washington St, Los Angeles, CA 90001" +317234,Lightning Charging Cable,1,14.95,12/23/19 20:25,"695 10th St, Atlanta, GA 30301" +317235,Macbook Pro Laptop,1,1700,12/19/19 09:20,"735 Forest St, Los Angeles, CA 90001" +317236,Lightning Charging Cable,1,14.95,12/23/19 15:42,"504 13th St, Los Angeles, CA 90001" +317237,Bose SoundSport Headphones,1,99.99,12/25/19 20:04,"138 7th St, Boston, MA 02215" +317238,USB-C Charging Cable,1,11.95,12/06/19 17:30,"935 Dogwood St, San Francisco, CA 94016" +317238,AAA Batteries (4-pack),2,2.99,12/06/19 17:30,"935 Dogwood St, San Francisco, CA 94016" +317239,iPhone,1,700,12/11/19 17:16,"719 1st St, Austin, TX 73301" +317240,Wired Headphones,1,11.99,12/16/19 19:07,"447 2nd St, Austin, TX 73301" +317241,AA Batteries (4-pack),1,3.84,12/03/19 14:21,"100 Maple St, Los Angeles, CA 90001" +317242,Lightning Charging Cable,1,14.95,12/18/19 13:22,"123 Cedar St, Boston, MA 02215" +317243,Lightning Charging Cable,1,14.95,12/23/19 18:47,"536 Washington St, New York City, NY 10001" +317244,Lightning Charging Cable,1,14.95,12/22/19 20:25,"516 Cedar St, Boston, MA 02215" +317245,27in 4K Gaming Monitor,1,389.99,12/26/19 12:13,"49 Cherry St, San Francisco, CA 94016" +317246,AAA Batteries (4-pack),1,2.99,12/30/19 08:46,"527 Pine St, Seattle, WA 98101" +317247,USB-C Charging Cable,1,11.95,12/29/19 16:58,"207 Walnut St, New York City, NY 10001" +317248,Lightning Charging Cable,1,14.95,12/22/19 23:07,"428 Washington St, Dallas, TX 75001" +317249,27in 4K Gaming Monitor,1,389.99,12/28/19 12:52,"370 Pine St, Los Angeles, CA 90001" +317250,Apple Airpods Headphones,1,150,12/30/19 10:40,"888 Highland St, San Francisco, CA 94016" +317251,Lightning Charging Cable,1,14.95,12/23/19 19:30,"315 River St, Boston, MA 02215" +317252,Wired Headphones,1,11.99,12/23/19 05:59,"798 Johnson St, San Francisco, CA 94016" +317253,USB-C Charging Cable,1,11.95,12/15/19 22:38,"739 9th St, New York City, NY 10001" +317254,Lightning Charging Cable,2,14.95,12/06/19 12:55,"613 12th St, San Francisco, CA 94016" +317255,AA Batteries (4-pack),3,3.84,12/06/19 19:16,"416 Dogwood St, San Francisco, CA 94016" +317256,27in FHD Monitor,1,149.99,12/02/19 17:30,"649 Sunset St, Seattle, WA 98101" +317257,Wired Headphones,1,11.99,12/30/19 16:44,"209 Lincoln St, Dallas, TX 75001" +317258,AA Batteries (4-pack),1,3.84,12/10/19 11:30,"926 Dogwood St, Atlanta, GA 30301" +317259,iPhone,1,700,12/31/19 22:34,"268 1st St, Boston, MA 02215" +317259,Wired Headphones,1,11.99,12/31/19 22:34,"268 1st St, Boston, MA 02215" +317260,AAA Batteries (4-pack),1,2.99,12/07/19 11:39,"769 Hill St, New York City, NY 10001" +317261,Wired Headphones,1,11.99,12/23/19 10:04,"867 4th St, Los Angeles, CA 90001" +317262,USB-C Charging Cable,1,11.95,12/16/19 13:01,"404 River St, San Francisco, CA 94016" +317263,USB-C Charging Cable,1,11.95,12/24/19 06:10,"33 Main St, New York City, NY 10001" +317264,Lightning Charging Cable,1,14.95,12/08/19 20:41,"705 Hickory St, Seattle, WA 98101" +317265,Bose SoundSport Headphones,1,99.99,12/05/19 15:28,"350 Ridge St, San Francisco, CA 94016" +317266,Apple Airpods Headphones,1,150,12/18/19 12:54,"945 Main St, Portland, OR 97035" +317267,27in 4K Gaming Monitor,1,389.99,12/26/19 22:18,"580 Wilson St, Portland, OR 97035" +317268,27in FHD Monitor,1,149.99,12/25/19 22:36,"539 Spruce St, San Francisco, CA 94016" +317269,34in Ultrawide Monitor,1,379.99,12/08/19 01:07,"140 Adams St, Dallas, TX 75001" +317270,27in FHD Monitor,1,149.99,12/26/19 16:02,"463 6th St, Portland, OR 97035" +317271,20in Monitor,1,109.99,12/15/19 14:38,"239 14th St, Atlanta, GA 30301" +317272,27in FHD Monitor,1,149.99,12/24/19 18:13,"51 Cherry St, New York City, NY 10001" +317273,Apple Airpods Headphones,1,150,12/28/19 18:33,"350 6th St, Dallas, TX 75001" +317274,USB-C Charging Cable,1,11.95,12/27/19 17:57,"331 11th St, Boston, MA 02215" +317275,Wired Headphones,1,11.99,12/22/19 11:32,"375 Highland St, Los Angeles, CA 90001" +317276,27in FHD Monitor,1,149.99,12/12/19 21:57,"491 Madison St, Austin, TX 73301" +317277,Wired Headphones,1,11.99,12/04/19 11:01,"831 Forest St, Austin, TX 73301" +317278,Google Phone,1,600,12/24/19 08:14,"936 Cherry St, San Francisco, CA 94016" +317279,Apple Airpods Headphones,1,150,12/13/19 10:53,"715 Pine St, Austin, TX 73301" +317280,USB-C Charging Cable,1,11.95,12/02/19 21:22,"914 Hill St, San Francisco, CA 94016" +317281,AA Batteries (4-pack),1,3.84,12/30/19 22:32,"493 4th St, Boston, MA 02215" +317282,Wired Headphones,1,11.99,12/29/19 17:04,"764 6th St, Los Angeles, CA 90001" +317283,AAA Batteries (4-pack),3,2.99,12/27/19 12:47,"350 Main St, Los Angeles, CA 90001" +317284,AA Batteries (4-pack),1,3.84,12/09/19 15:38,"217 13th St, Boston, MA 02215" +317285,Apple Airpods Headphones,1,150,12/04/19 14:03,"603 Lake St, Los Angeles, CA 90001" +317286,Bose SoundSport Headphones,1,99.99,12/04/19 13:45,"1 Meadow St, Seattle, WA 98101" +317287,AA Batteries (4-pack),3,3.84,12/26/19 17:22,"562 Park St, San Francisco, CA 94016" +317288,27in 4K Gaming Monitor,1,389.99,12/25/19 19:58,"37 9th St, Boston, MA 02215" +317289,AAA Batteries (4-pack),1,2.99,12/23/19 15:59,"948 13th St, Los Angeles, CA 90001" +317290,AA Batteries (4-pack),1,3.84,12/29/19 15:20,"605 Elm St, Atlanta, GA 30301" +317291,Google Phone,1,600,12/02/19 15:42,"906 5th St, Boston, MA 02215" +317292,AA Batteries (4-pack),1,3.84,12/19/19 11:13,"744 8th St, Austin, TX 73301" +317293,27in FHD Monitor,1,149.99,12/23/19 18:36,"283 Highland St, San Francisco, CA 94016" +317294,Flatscreen TV,1,300,12/05/19 16:40,"655 13th St, Los Angeles, CA 90001" +317295,AAA Batteries (4-pack),2,2.99,12/14/19 12:21,"600 Hill St, Atlanta, GA 30301" +317296,Wired Headphones,1,11.99,12/04/19 22:08,"561 1st St, Portland, ME 04101" +317297,Apple Airpods Headphones,1,150,12/23/19 17:09,"935 5th St, Austin, TX 73301" +317298,27in 4K Gaming Monitor,1,389.99,12/30/19 11:09,"994 8th St, Los Angeles, CA 90001" +317299,iPhone,1,700,12/17/19 17:36,"510 Hickory St, Atlanta, GA 30301" +317299,Wired Headphones,1,11.99,12/17/19 17:36,"510 Hickory St, Atlanta, GA 30301" +317300,AAA Batteries (4-pack),4,2.99,12/04/19 06:54,"921 Lake St, Austin, TX 73301" +317301,AA Batteries (4-pack),1,3.84,12/18/19 13:42,"698 Center St, New York City, NY 10001" +317302,AAA Batteries (4-pack),1,2.99,12/23/19 06:04,"58 Pine St, San Francisco, CA 94016" +317303,USB-C Charging Cable,1,11.95,12/09/19 10:39,"559 South St, Los Angeles, CA 90001" +317304,AA Batteries (4-pack),1,3.84,12/19/19 09:40,"777 Dogwood St, Dallas, TX 75001" +,,,,, +317305,34in Ultrawide Monitor,1,379.99,12/29/19 21:58,"851 Spruce St, San Francisco, CA 94016" +317306,Flatscreen TV,1,300,12/13/19 08:38,"89 Spruce St, Boston, MA 02215" +317307,AAA Batteries (4-pack),1,2.99,12/08/19 12:29,"880 Cedar St, Atlanta, GA 30301" +317308,Apple Airpods Headphones,1,150,12/22/19 13:22,"405 Center St, Los Angeles, CA 90001" +317309,USB-C Charging Cable,1,11.95,12/19/19 12:14,"823 Meadow St, Portland, OR 97035" +317310,Bose SoundSport Headphones,1,99.99,12/27/19 14:14,"883 4th St, Atlanta, GA 30301" +317311,Flatscreen TV,1,300,12/20/19 21:24,"736 Hickory St, San Francisco, CA 94016" +317312,Lightning Charging Cable,1,14.95,12/29/19 21:49,"112 Adams St, Atlanta, GA 30301" +317313,AA Batteries (4-pack),1,3.84,12/27/19 22:55,"706 1st St, New York City, NY 10001" +317314,Lightning Charging Cable,1,14.95,12/13/19 14:51,"167 Sunset St, New York City, NY 10001" +317315,Apple Airpods Headphones,1,150,12/22/19 14:02,"959 Main St, San Francisco, CA 94016" +317316,USB-C Charging Cable,1,11.95,12/20/19 20:36,"968 Lincoln St, San Francisco, CA 94016" +317317,Wired Headphones,1,11.99,12/27/19 11:13,"762 Dogwood St, Austin, TX 73301" +317318,USB-C Charging Cable,1,11.95,12/03/19 08:01,"241 10th St, Seattle, WA 98101" +317319,AAA Batteries (4-pack),1,2.99,12/20/19 21:14,"373 Washington St, Seattle, WA 98101" +317320,Apple Airpods Headphones,1,150,12/27/19 20:33,"891 Dogwood St, New York City, NY 10001" +317321,27in 4K Gaming Monitor,1,389.99,12/06/19 19:52,"312 Adams St, Atlanta, GA 30301" +317322,Lightning Charging Cable,1,14.95,12/16/19 13:59,"468 Church St, New York City, NY 10001" +317323,AA Batteries (4-pack),1,3.84,12/08/19 18:13,"67 9th St, San Francisco, CA 94016" +317324,AA Batteries (4-pack),1,3.84,12/20/19 11:05,"354 Elm St, Boston, MA 02215" +317325,AA Batteries (4-pack),2,3.84,12/14/19 10:25,"255 Adams St, Atlanta, GA 30301" +317326,USB-C Charging Cable,1,11.95,12/06/19 21:31,"785 Maple St, Los Angeles, CA 90001" +317327,Apple Airpods Headphones,1,150,12/20/19 15:55,"184 Hill St, Los Angeles, CA 90001" +317328,ThinkPad Laptop,1,999.99,12/02/19 20:48,"316 Wilson St, Seattle, WA 98101" +317329,Bose SoundSport Headphones,1,99.99,12/30/19 01:33,"575 Hickory St, San Francisco, CA 94016" +317330,27in 4K Gaming Monitor,1,389.99,12/05/19 12:50,"597 Hill St, Portland, OR 97035" +317331,AAA Batteries (4-pack),1,2.99,12/10/19 19:40,"959 Lincoln St, San Francisco, CA 94016" +317332,AA Batteries (4-pack),2,3.84,12/12/19 22:49,"783 7th St, New York City, NY 10001" +317333,Apple Airpods Headphones,1,150,12/17/19 20:38,"273 Willow St, New York City, NY 10001" +317334,Google Phone,1,600,12/15/19 07:15,"918 Center St, New York City, NY 10001" +317335,AA Batteries (4-pack),1,3.84,12/01/19 22:35,"144 2nd St, Boston, MA 02215" +317336,27in FHD Monitor,1,149.99,12/22/19 14:31,"313 Dogwood St, Atlanta, GA 30301" +317337,Bose SoundSport Headphones,1,99.99,12/27/19 14:42,"312 9th St, New York City, NY 10001" +317338,Bose SoundSport Headphones,1,99.99,12/21/19 11:16,"215 13th St, Dallas, TX 75001" +317339,Lightning Charging Cable,1,14.95,12/01/19 12:47,"792 Hill St, San Francisco, CA 94016" +317340,Wired Headphones,1,11.99,12/19/19 13:25,"578 Spruce St, Portland, ME 04101" +317341,Apple Airpods Headphones,1,150,12/25/19 11:49,"108 Lake St, Los Angeles, CA 90001" +317342,34in Ultrawide Monitor,1,379.99,12/25/19 15:49,"446 Lakeview St, Los Angeles, CA 90001" +317343,AAA Batteries (4-pack),1,2.99,12/29/19 12:35,"360 2nd St, Los Angeles, CA 90001" +317344,ThinkPad Laptop,1,999.99,12/23/19 22:32,"130 5th St, Seattle, WA 98101" +317345,Bose SoundSport Headphones,1,99.99,12/05/19 21:25,"693 9th St, New York City, NY 10001" +317346,AA Batteries (4-pack),1,3.84,12/02/19 21:39,"588 Washington St, Los Angeles, CA 90001" +317347,USB-C Charging Cable,1,11.95,12/25/19 09:28,"250 14th St, Atlanta, GA 30301" +317348,USB-C Charging Cable,1,11.95,12/22/19 19:46,"822 Dogwood St, San Francisco, CA 94016" +317349,LG Dryer,1,600.0,12/24/19 02:40,"761 Pine St, New York City, NY 10001" +317350,Lightning Charging Cable,1,14.95,12/08/19 18:26,"448 Church St, Los Angeles, CA 90001" +317351,Apple Airpods Headphones,1,150,12/30/19 20:52,"135 14th St, Boston, MA 02215" +317352,Apple Airpods Headphones,1,150,12/01/19 20:48,"116 7th St, San Francisco, CA 94016" +317353,AA Batteries (4-pack),1,3.84,12/13/19 13:42,"606 Johnson St, Los Angeles, CA 90001" +317354,AAA Batteries (4-pack),1,2.99,12/29/19 13:56,"343 Jackson St, Los Angeles, CA 90001" +317355,AAA Batteries (4-pack),2,2.99,12/20/19 21:51,"840 Lincoln St, San Francisco, CA 94016" +317356,Apple Airpods Headphones,1,150,12/14/19 11:29,"848 6th St, San Francisco, CA 94016" +317357,AA Batteries (4-pack),1,3.84,12/22/19 16:03,"329 Cherry St, Dallas, TX 75001" +317358,Lightning Charging Cable,1,14.95,12/20/19 21:05,"668 14th St, Austin, TX 73301" +317359,27in 4K Gaming Monitor,1,389.99,12/13/19 19:45,"869 Hill St, Seattle, WA 98101" +317360,ThinkPad Laptop,1,999.99,12/12/19 07:21,"961 Maple St, Los Angeles, CA 90001" +317361,AAA Batteries (4-pack),3,2.99,12/04/19 19:14,"389 5th St, San Francisco, CA 94016" +317362,Apple Airpods Headphones,1,150,12/09/19 21:52,"3 10th St, Los Angeles, CA 90001" +317363,USB-C Charging Cable,1,11.95,12/20/19 19:18,"672 Dogwood St, San Francisco, CA 94016" +317364,AA Batteries (4-pack),1,3.84,12/23/19 13:39,"358 Chestnut St, Dallas, TX 75001" +317365,27in 4K Gaming Monitor,1,389.99,12/11/19 09:10,"842 Center St, Atlanta, GA 30301" +317366,Wired Headphones,1,11.99,12/16/19 10:23,"137 5th St, New York City, NY 10001" +317367,USB-C Charging Cable,1,11.95,12/02/19 16:40,"452 Wilson St, San Francisco, CA 94016" +317368,20in Monitor,1,109.99,12/27/19 21:18,"378 Center St, Atlanta, GA 30301" +317369,AA Batteries (4-pack),1,3.84,12/05/19 19:26,"848 Madison St, New York City, NY 10001" +317370,Apple Airpods Headphones,1,150,12/23/19 19:37,"6 South St, Dallas, TX 75001" +317371,Apple Airpods Headphones,1,150,12/30/19 16:23,"686 9th St, Boston, MA 02215" +317372,AAA Batteries (4-pack),1,2.99,12/22/19 14:04,"366 Spruce St, Dallas, TX 75001" +317373,AA Batteries (4-pack),3,3.84,12/03/19 12:36,"523 12th St, Austin, TX 73301" +317374,Lightning Charging Cable,1,14.95,12/27/19 20:40,"160 Lakeview St, Atlanta, GA 30301" +317375,AAA Batteries (4-pack),2,2.99,12/18/19 14:52,"70 Meadow St, Dallas, TX 75001" +317376,Wired Headphones,1,11.99,12/18/19 16:22,"357 5th St, New York City, NY 10001" +317377,Lightning Charging Cable,1,14.95,12/28/19 20:46,"551 6th St, Atlanta, GA 30301" +317378,AAA Batteries (4-pack),1,2.99,12/23/19 19:45,"805 Meadow St, San Francisco, CA 94016" +317379,AAA Batteries (4-pack),1,2.99,12/20/19 00:42,"694 Park St, San Francisco, CA 94016" +317380,iPhone,1,700,12/12/19 08:00,"136 Spruce St, New York City, NY 10001" +317381,AA Batteries (4-pack),1,3.84,12/20/19 19:04,"777 Cedar St, Dallas, TX 75001" +317382,USB-C Charging Cable,1,11.95,12/22/19 18:32,"17 14th St, Boston, MA 02215" +317383,AA Batteries (4-pack),1,3.84,12/17/19 10:41,"975 8th St, Boston, MA 02215" +317384,Lightning Charging Cable,1,14.95,12/30/19 11:35,"159 10th St, Portland, OR 97035" +317385,Wired Headphones,1,11.99,12/01/19 06:00,"358 Hill St, San Francisco, CA 94016" +317386,ThinkPad Laptop,1,999.99,12/23/19 00:07,"615 Wilson St, Boston, MA 02215" +317387,AAA Batteries (4-pack),1,2.99,12/04/19 18:01,"213 Dogwood St, New York City, NY 10001" +317388,AAA Batteries (4-pack),1,2.99,12/31/19 19:50,"285 Jackson St, Austin, TX 73301" +317389,USB-C Charging Cable,1,11.95,12/17/19 18:00,"580 Elm St, Seattle, WA 98101" +317390,AAA Batteries (4-pack),2,2.99,12/29/19 16:57,"549 West St, Boston, MA 02215" +317391,Bose SoundSport Headphones,1,99.99,12/05/19 00:10,"414 Jefferson St, San Francisco, CA 94016" +317392,Bose SoundSport Headphones,1,99.99,12/17/19 17:56,"952 Wilson St, Los Angeles, CA 90001" +317393,USB-C Charging Cable,1,11.95,12/18/19 14:45,"428 Main St, Seattle, WA 98101" +317394,Bose SoundSport Headphones,1,99.99,12/20/19 10:44,"309 Lincoln St, Austin, TX 73301" +317395,USB-C Charging Cable,1,11.95,12/02/19 13:13,"728 Chestnut St, Dallas, TX 75001" +317396,Wired Headphones,1,11.99,12/29/19 17:05,"892 Ridge St, Seattle, WA 98101" +317397,Apple Airpods Headphones,1,150,12/06/19 09:46,"73 12th St, Los Angeles, CA 90001" +317398,20in Monitor,1,109.99,12/09/19 17:24,"44 14th St, Portland, OR 97035" +317399,AAA Batteries (4-pack),1,2.99,12/17/19 13:17,"38 6th St, Dallas, TX 75001" +317400,Wired Headphones,1,11.99,12/28/19 09:48,"915 Jefferson St, San Francisco, CA 94016" +317401,Macbook Pro Laptop,1,1700,12/18/19 19:56,"944 Maple St, Dallas, TX 75001" +317402,Wired Headphones,1,11.99,12/05/19 23:55,"427 Walnut St, Boston, MA 02215" +317403,27in FHD Monitor,1,149.99,12/18/19 20:30,"965 Cedar St, Portland, OR 97035" +317404,Lightning Charging Cable,1,14.95,12/03/19 07:15,"924 Madison St, Boston, MA 02215" +317405,Lightning Charging Cable,1,14.95,12/22/19 13:28,"51 Hickory St, Boston, MA 02215" +317406,Google Phone,1,600,12/13/19 15:14,"901 Jackson St, New York City, NY 10001" +317406,USB-C Charging Cable,1,11.95,12/13/19 15:14,"901 Jackson St, New York City, NY 10001" +317407,27in FHD Monitor,1,149.99,12/24/19 15:31,"663 Wilson St, Boston, MA 02215" +317408,Bose SoundSport Headphones,1,99.99,12/17/19 11:52,"959 14th St, Boston, MA 02215" +317409,AAA Batteries (4-pack),1,2.99,12/18/19 18:21,"301 6th St, Atlanta, GA 30301" +317410,AA Batteries (4-pack),1,3.84,12/04/19 22:45,"318 Spruce St, Los Angeles, CA 90001" +317411,Wired Headphones,1,11.99,12/22/19 22:59,"979 North St, Atlanta, GA 30301" +317412,iPhone,1,700,12/04/19 22:07,"712 Dogwood St, New York City, NY 10001" +317413,iPhone,1,700,12/14/19 17:49,"486 Walnut St, New York City, NY 10001" +317414,Apple Airpods Headphones,1,150,12/04/19 14:57,"748 Johnson St, Boston, MA 02215" +317415,USB-C Charging Cable,2,11.95,12/12/19 19:02,"674 6th St, Boston, MA 02215" +317416,Lightning Charging Cable,1,14.95,12/05/19 17:51,"736 Sunset St, Austin, TX 73301" +317417,27in 4K Gaming Monitor,2,389.99,12/03/19 08:24,"984 Maple St, Boston, MA 02215" +317418,USB-C Charging Cable,1,11.95,12/30/19 17:42,"762 Lincoln St, Boston, MA 02215" +317419,Lightning Charging Cable,1,14.95,12/25/19 09:49,"235 Meadow St, San Francisco, CA 94016" +317420,Flatscreen TV,1,300,12/18/19 07:54,"701 11th St, San Francisco, CA 94016" +317421,27in 4K Gaming Monitor,1,389.99,12/05/19 14:52,"493 Elm St, San Francisco, CA 94016" +317422,Google Phone,1,600,12/13/19 10:47,"800 Cherry St, Boston, MA 02215" +317423,20in Monitor,1,109.99,12/13/19 18:14,"266 Church St, Dallas, TX 75001" +317424,34in Ultrawide Monitor,1,379.99,12/11/19 18:25,"540 13th St, Los Angeles, CA 90001" +317425,Flatscreen TV,1,300,12/14/19 14:48,"403 Jefferson St, Seattle, WA 98101" +317426,AAA Batteries (4-pack),1,2.99,12/26/19 15:33,"685 River St, Boston, MA 02215" +317427,AAA Batteries (4-pack),1,2.99,12/02/19 17:57,"765 Willow St, New York City, NY 10001" +317428,Macbook Pro Laptop,1,1700,12/30/19 12:14,"130 Jefferson St, Atlanta, GA 30301" +317429,Google Phone,1,600,12/17/19 23:01,"217 Lakeview St, Los Angeles, CA 90001" +317429,Flatscreen TV,1,300,12/17/19 23:01,"217 Lakeview St, Los Angeles, CA 90001" +317430,Vareebadd Phone,1,400,12/10/19 18:11,"539 Walnut St, San Francisco, CA 94016" +317431,AAA Batteries (4-pack),3,2.99,12/30/19 17:38,"473 2nd St, Los Angeles, CA 90001" +317432,AA Batteries (4-pack),1,3.84,12/07/19 11:26,"472 4th St, San Francisco, CA 94016" +317433,USB-C Charging Cable,1,11.95,12/31/19 23:03,"266 10th St, Los Angeles, CA 90001" +317434,Wired Headphones,1,11.99,12/10/19 01:22,"930 Johnson St, Atlanta, GA 30301" +317435,Wired Headphones,1,11.99,12/30/19 19:25,"81 10th St, Boston, MA 02215" +317435,USB-C Charging Cable,1,11.95,12/30/19 19:25,"81 10th St, Boston, MA 02215" +317436,AA Batteries (4-pack),1,3.84,12/31/19 12:54,"6 14th St, Los Angeles, CA 90001" +317437,USB-C Charging Cable,2,11.95,12/25/19 12:07,"477 Center St, San Francisco, CA 94016" +317438,Wired Headphones,1,11.99,12/07/19 12:53,"715 12th St, Los Angeles, CA 90001" +317439,AAA Batteries (4-pack),2,2.99,12/04/19 18:24,"851 Main St, San Francisco, CA 94016" +317440,AA Batteries (4-pack),1,3.84,12/02/19 17:17,"426 Jefferson St, Seattle, WA 98101" +317441,Wired Headphones,1,11.99,12/01/19 12:15,"6 Church St, Boston, MA 02215" +317442,AAA Batteries (4-pack),1,2.99,12/01/19 12:42,"806 14th St, Los Angeles, CA 90001" +317443,USB-C Charging Cable,1,11.95,12/04/19 09:25,"728 10th St, San Francisco, CA 94016" +317444,AA Batteries (4-pack),2,3.84,12/24/19 12:46,"977 Lincoln St, Los Angeles, CA 90001" +317445,USB-C Charging Cable,1,11.95,12/22/19 09:17,"24 South St, Los Angeles, CA 90001" +317446,AAA Batteries (4-pack),1,2.99,12/20/19 21:26,"238 Pine St, Dallas, TX 75001" +317447,Wired Headphones,1,11.99,12/03/19 10:51,"544 7th St, Seattle, WA 98101" +317448,AA Batteries (4-pack),2,3.84,12/14/19 13:36,"591 Willow St, New York City, NY 10001" +317448,27in 4K Gaming Monitor,1,389.99,12/14/19 13:36,"591 Willow St, New York City, NY 10001" +317449,Google Phone,1,600,12/15/19 23:05,"28 10th St, Austin, TX 73301" +317450,USB-C Charging Cable,1,11.95,12/16/19 10:17,"175 9th St, Los Angeles, CA 90001" +317451,Bose SoundSport Headphones,1,99.99,12/01/19 17:24,"717 11th St, Boston, MA 02215" +317452,AAA Batteries (4-pack),3,2.99,12/30/19 19:28,"852 Washington St, Seattle, WA 98101" +317453,Wired Headphones,1,11.99,12/07/19 14:34,"414 13th St, Dallas, TX 75001" +317454,iPhone,1,700,12/22/19 14:58,"667 10th St, Los Angeles, CA 90001" +317455,Apple Airpods Headphones,1,150,12/08/19 17:29,"65 Wilson St, Dallas, TX 75001" +317456,Apple Airpods Headphones,1,150,12/26/19 16:09,"758 Maple St, New York City, NY 10001" +317457,USB-C Charging Cable,1,11.95,12/12/19 12:52,"693 Church St, Portland, OR 97035" +317458,iPhone,1,700,12/16/19 18:23,"91 1st St, New York City, NY 10001" +317459,AA Batteries (4-pack),2,3.84,12/17/19 00:18,"309 1st St, San Francisco, CA 94016" +317460,Lightning Charging Cable,1,14.95,12/11/19 18:47,"441 Adams St, Dallas, TX 75001" +317461,Apple Airpods Headphones,1,150,12/08/19 09:33,"762 Dogwood St, Austin, TX 73301" +317462,ThinkPad Laptop,1,999.99,12/20/19 09:21,"983 Pine St, Portland, ME 04101" +317463,Apple Airpods Headphones,1,150,12/15/19 16:56,"634 Dogwood St, Los Angeles, CA 90001" +317464,iPhone,1,700,12/04/19 13:59,"128 Washington St, Seattle, WA 98101" +317464,ThinkPad Laptop,1,999.99,12/04/19 13:59,"128 Washington St, Seattle, WA 98101" +317465,AAA Batteries (4-pack),1,2.99,12/30/19 19:44,"691 Lincoln St, San Francisco, CA 94016" +317466,Lightning Charging Cable,1,14.95,12/07/19 10:11,"710 6th St, New York City, NY 10001" +317467,AAA Batteries (4-pack),1,2.99,12/18/19 15:19,"58 4th St, New York City, NY 10001" +317468,Wired Headphones,1,11.99,12/09/19 19:31,"71 Church St, Los Angeles, CA 90001" +317469,USB-C Charging Cable,1,11.95,12/31/19 08:00,"636 Forest St, Austin, TX 73301" +317470,Bose SoundSport Headphones,1,99.99,12/30/19 19:42,"512 9th St, Los Angeles, CA 90001" +317471,AAA Batteries (4-pack),3,2.99,12/25/19 21:16,"181 2nd St, San Francisco, CA 94016" +317472,Lightning Charging Cable,1,14.95,12/03/19 18:24,"898 4th St, Boston, MA 02215" +317473,Lightning Charging Cable,1,14.95,12/07/19 16:56,"306 13th St, Boston, MA 02215" +317473,Apple Airpods Headphones,1,150,12/07/19 16:56,"306 13th St, Boston, MA 02215" +317474,Bose SoundSport Headphones,1,99.99,12/05/19 11:19,"619 8th St, Los Angeles, CA 90001" +317475,Apple Airpods Headphones,1,150,12/17/19 08:39,"920 13th St, Los Angeles, CA 90001" +317476,Lightning Charging Cable,1,14.95,12/08/19 20:37,"669 Cherry St, Atlanta, GA 30301" +317477,AA Batteries (4-pack),1,3.84,12/06/19 13:05,"534 8th St, San Francisco, CA 94016" +317478,Apple Airpods Headphones,1,150,12/12/19 20:28,"54 Jackson St, Los Angeles, CA 90001" +317479,Wired Headphones,1,11.99,12/22/19 13:12,"357 Church St, Dallas, TX 75001" +317480,Wired Headphones,1,11.99,12/22/19 09:50,"532 13th St, San Francisco, CA 94016" +317481,Wired Headphones,2,11.99,12/04/19 19:54,"98 9th St, San Francisco, CA 94016" +317482,Wired Headphones,1,11.99,12/06/19 13:08,"31 North St, Los Angeles, CA 90001" +317483,20in Monitor,1,109.99,12/03/19 12:33,"883 Jackson St, New York City, NY 10001" +317484,Wired Headphones,1,11.99,12/13/19 10:16,"274 11th St, Los Angeles, CA 90001" +317485,AA Batteries (4-pack),1,3.84,12/18/19 10:42,"621 North St, San Francisco, CA 94016" +317486,Macbook Pro Laptop,1,1700,12/22/19 01:07,"351 Center St, Atlanta, GA 30301" +317487,USB-C Charging Cable,1,11.95,12/03/19 10:05,"779 Maple St, Dallas, TX 75001" +317488,AA Batteries (4-pack),3,3.84,12/09/19 15:32,"789 Lake St, Los Angeles, CA 90001" +317489,34in Ultrawide Monitor,1,379.99,12/03/19 20:21,"213 5th St, Los Angeles, CA 90001" +317490,iPhone,1,700,12/11/19 10:07,"860 Washington St, Austin, TX 73301" +317491,Lightning Charging Cable,1,14.95,12/04/19 12:54,"951 8th St, Los Angeles, CA 90001" +317492,27in 4K Gaming Monitor,1,389.99,12/04/19 00:17,"164 Highland St, Boston, MA 02215" +317493,Macbook Pro Laptop,1,1700,12/07/19 09:31,"245 Elm St, San Francisco, CA 94016" +317494,Lightning Charging Cable,1,14.95,12/02/19 10:11,"308 Walnut St, San Francisco, CA 94016" +317495,USB-C Charging Cable,1,11.95,12/20/19 18:05,"757 Center St, Los Angeles, CA 90001" +317496,Apple Airpods Headphones,1,150,12/18/19 20:48,"778 12th St, Portland, OR 97035" +317497,USB-C Charging Cable,1,11.95,12/18/19 10:53,"16 Walnut St, San Francisco, CA 94016" +317498,AAA Batteries (4-pack),2,2.99,12/02/19 09:24,"367 Lake St, Los Angeles, CA 90001" +317499,USB-C Charging Cable,2,11.95,12/07/19 21:29,"862 6th St, Boston, MA 02215" +317500,AA Batteries (4-pack),1,3.84,12/25/19 11:54,"323 8th St, Portland, OR 97035" +317501,Google Phone,1,600,12/18/19 11:58,"911 Walnut St, Los Angeles, CA 90001" +317502,34in Ultrawide Monitor,1,379.99,12/29/19 12:29,"924 10th St, Boston, MA 02215" +317503,iPhone,1,700,12/02/19 09:33,"303 11th St, San Francisco, CA 94016" +317503,Lightning Charging Cable,1,14.95,12/02/19 09:33,"303 11th St, San Francisco, CA 94016" +317504,Wired Headphones,1,11.99,12/09/19 22:03,"638 12th St, Austin, TX 73301" +317505,AA Batteries (4-pack),2,3.84,12/21/19 16:22,"956 Cedar St, Dallas, TX 75001" +317506,Wired Headphones,1,11.99,12/30/19 11:19,"719 Madison St, Seattle, WA 98101" +317507,iPhone,1,700,12/17/19 09:20,"428 Church St, San Francisco, CA 94016" +317508,AA Batteries (4-pack),1,3.84,12/12/19 12:43,"820 7th St, Atlanta, GA 30301" +317509,USB-C Charging Cable,2,11.95,12/24/19 17:08,"925 Jefferson St, Portland, OR 97035" +317510,Apple Airpods Headphones,1,150,12/11/19 17:18,"346 Johnson St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +317511,27in FHD Monitor,1,149.99,12/06/19 14:52,"593 Wilson St, Dallas, TX 75001" +317512,USB-C Charging Cable,1,11.95,12/21/19 12:21,"923 Hill St, Boston, MA 02215" +317513,Bose SoundSport Headphones,1,99.99,12/22/19 01:14,"491 5th St, Seattle, WA 98101" +317514,Wired Headphones,1,11.99,12/10/19 10:53,"732 6th St, Los Angeles, CA 90001" +317515,USB-C Charging Cable,1,11.95,12/23/19 14:02,"507 Dogwood St, Austin, TX 73301" +317516,Bose SoundSport Headphones,1,99.99,12/11/19 13:21,"869 West St, San Francisco, CA 94016" +317517,AA Batteries (4-pack),1,3.84,12/06/19 16:13,"30 Spruce St, San Francisco, CA 94016" +317518,Lightning Charging Cable,1,14.95,12/09/19 21:03,"327 River St, Los Angeles, CA 90001" +317519,Bose SoundSport Headphones,1,99.99,12/27/19 12:01,"487 Meadow St, Portland, ME 04101" +317520,Wired Headphones,1,11.99,12/02/19 10:33,"19 14th St, San Francisco, CA 94016" +317521,USB-C Charging Cable,1,11.95,12/29/19 17:09,"720 Highland St, New York City, NY 10001" +317522,Google Phone,1,600,12/08/19 18:55,"366 Adams St, San Francisco, CA 94016" +317522,USB-C Charging Cable,1,11.95,12/08/19 18:55,"366 Adams St, San Francisco, CA 94016" +317523,Lightning Charging Cable,1,14.95,12/16/19 15:14,"476 4th St, San Francisco, CA 94016" +317524,27in FHD Monitor,1,149.99,12/16/19 12:10,"950 Adams St, San Francisco, CA 94016" +317525,USB-C Charging Cable,1,11.95,12/24/19 19:06,"875 Ridge St, Portland, ME 04101" +317525,Bose SoundSport Headphones,1,99.99,12/24/19 19:06,"875 Ridge St, Portland, ME 04101" +317526,27in 4K Gaming Monitor,1,389.99,12/08/19 21:04,"290 Dogwood St, Seattle, WA 98101" +317527,iPhone,1,700,12/11/19 17:23,"19 Park St, Boston, MA 02215" +317528,Wired Headphones,1,11.99,12/22/19 21:02,"373 Center St, Austin, TX 73301" +317529,Wired Headphones,1,11.99,12/04/19 18:13,"913 Wilson St, Seattle, WA 98101" +317530,34in Ultrawide Monitor,1,379.99,12/09/19 12:57,"914 Spruce St, New York City, NY 10001" +317531,20in Monitor,1,109.99,12/08/19 19:43,"101 10th St, San Francisco, CA 94016" +317532,Macbook Pro Laptop,1,1700,12/01/19 21:53,"886 Cedar St, Los Angeles, CA 90001" +317533,Lightning Charging Cable,1,14.95,12/18/19 10:00,"75 4th St, Portland, OR 97035" +317534,USB-C Charging Cable,1,11.95,12/03/19 20:40,"349 Madison St, Los Angeles, CA 90001" +317535,ThinkPad Laptop,1,999.99,12/03/19 14:20,"455 4th St, Austin, TX 73301" +317536,AAA Batteries (4-pack),1,2.99,12/03/19 10:59,"195 1st St, Los Angeles, CA 90001" +317537,34in Ultrawide Monitor,1,379.99,12/11/19 18:27,"56 Jackson St, San Francisco, CA 94016" +317538,AA Batteries (4-pack),1,3.84,12/13/19 10:04,"79 Meadow St, New York City, NY 10001" +317539,Wired Headphones,1,11.99,12/21/19 17:42,"331 9th St, Dallas, TX 75001" +317540,34in Ultrawide Monitor,1,379.99,12/24/19 15:01,"882 Hickory St, San Francisco, CA 94016" +317541,iPhone,1,700,12/24/19 15:57,"208 Meadow St, San Francisco, CA 94016" +317542,AA Batteries (4-pack),1,3.84,12/06/19 12:39,"381 Elm St, Los Angeles, CA 90001" +317543,27in 4K Gaming Monitor,1,389.99,12/07/19 16:57,"370 Cherry St, Dallas, TX 75001" +317544,Google Phone,1,600,12/02/19 15:01,"481 11th St, Seattle, WA 98101" +317545,AA Batteries (4-pack),1,3.84,12/20/19 17:34,"497 North St, New York City, NY 10001" +317546,34in Ultrawide Monitor,1,379.99,12/15/19 14:44,"609 Spruce St, Austin, TX 73301" +317547,Wired Headphones,1,11.99,12/20/19 18:46,"169 Park St, Los Angeles, CA 90001" +317548,AA Batteries (4-pack),3,3.84,12/23/19 14:41,"205 Adams St, San Francisco, CA 94016" +317549,iPhone,1,700,12/20/19 18:42,"708 Wilson St, Boston, MA 02215" +317550,USB-C Charging Cable,1,11.95,12/10/19 15:17,"947 Lake St, San Francisco, CA 94016" +317551,Lightning Charging Cable,1,14.95,12/13/19 23:43,"831 River St, San Francisco, CA 94016" +317552,AA Batteries (4-pack),1,3.84,12/02/19 23:03,"534 Cedar St, San Francisco, CA 94016" +317553,Flatscreen TV,1,300,12/06/19 18:03,"523 Madison St, New York City, NY 10001" +317554,Apple Airpods Headphones,1,150,12/30/19 12:20,"977 9th St, Portland, OR 97035" +317555,Google Phone,1,600,12/22/19 17:22,"489 Cedar St, Seattle, WA 98101" +317556,Wired Headphones,1,11.99,12/22/19 20:41,"430 Church St, San Francisco, CA 94016" +317557,iPhone,1,700,12/01/19 11:02,"363 Willow St, New York City, NY 10001" +317558,Lightning Charging Cable,2,14.95,12/03/19 17:13,"924 Highland St, New York City, NY 10001" +317559,Lightning Charging Cable,1,14.95,12/20/19 19:10,"298 Highland St, Atlanta, GA 30301" +317560,AAA Batteries (4-pack),1,2.99,12/25/19 15:24,"145 4th St, Seattle, WA 98101" +317561,Lightning Charging Cable,1,14.95,12/08/19 07:35,"876 6th St, San Francisco, CA 94016" +317562,USB-C Charging Cable,1,11.95,12/14/19 14:19,"398 Meadow St, Portland, OR 97035" +317563,AA Batteries (4-pack),1,3.84,12/26/19 17:54,"549 Hickory St, Los Angeles, CA 90001" +317564,Lightning Charging Cable,1,14.95,12/05/19 18:14,"550 Jackson St, San Francisco, CA 94016" +317565,Apple Airpods Headphones,1,150,12/19/19 22:26,"443 Forest St, New York City, NY 10001" +317566,AAA Batteries (4-pack),1,2.99,12/04/19 03:45,"660 14th St, Los Angeles, CA 90001" +317567,Lightning Charging Cable,1,14.95,12/16/19 12:08,"718 6th St, New York City, NY 10001" +317568,Wired Headphones,1,11.99,12/15/19 17:40,"661 Washington St, Seattle, WA 98101" +317569,AAA Batteries (4-pack),1,2.99,12/30/19 06:00,"813 Center St, Boston, MA 02215" +317570,Google Phone,1,600,12/09/19 16:23,"8 Walnut St, San Francisco, CA 94016" +317571,Bose SoundSport Headphones,1,99.99,12/07/19 18:02,"83 7th St, Boston, MA 02215" +317572,Flatscreen TV,1,300,12/29/19 01:32,"31 Jefferson St, Seattle, WA 98101" +317573,Wired Headphones,1,11.99,12/28/19 21:10,"498 Washington St, Dallas, TX 75001" +317574,Bose SoundSport Headphones,1,99.99,12/24/19 13:57,"458 Center St, Los Angeles, CA 90001" +317575,Lightning Charging Cable,1,14.95,12/14/19 11:43,"240 Jefferson St, San Francisco, CA 94016" +317576,AA Batteries (4-pack),1,3.84,12/02/19 16:48,"150 Cedar St, Los Angeles, CA 90001" +317577,LG Washing Machine,1,600.0,12/09/19 11:09,"437 Walnut St, Boston, MA 02215" +317578,Apple Airpods Headphones,1,150,12/05/19 00:44,"547 11th St, Los Angeles, CA 90001" +317579,Apple Airpods Headphones,1,150,12/10/19 14:55,"439 Jefferson St, San Francisco, CA 94016" +317580,AA Batteries (4-pack),1,3.84,12/30/19 23:05,"532 Sunset St, Austin, TX 73301" +317581,Bose SoundSport Headphones,1,99.99,12/08/19 08:11,"782 1st St, Seattle, WA 98101" +317582,27in FHD Monitor,1,149.99,12/03/19 11:26,"755 South St, Los Angeles, CA 90001" +317583,ThinkPad Laptop,1,999.99,12/21/19 08:40,"105 5th St, New York City, NY 10001" +317584,AA Batteries (4-pack),1,3.84,12/16/19 14:56,"479 Church St, San Francisco, CA 94016" +317585,USB-C Charging Cable,1,11.95,12/18/19 10:59,"956 7th St, San Francisco, CA 94016" +317586,Lightning Charging Cable,1,14.95,12/02/19 15:33,"915 Hill St, Portland, ME 04101" +317587,Apple Airpods Headphones,1,150,12/09/19 22:54,"6 Adams St, Austin, TX 73301" +317588,Macbook Pro Laptop,1,1700,12/14/19 23:35,"36 Ridge St, Austin, TX 73301" +317589,AAA Batteries (4-pack),1,2.99,12/10/19 13:50,"622 Hill St, San Francisco, CA 94016" +317590,27in FHD Monitor,1,149.99,12/07/19 00:00,"406 Church St, Seattle, WA 98101" +317591,iPhone,1,700,12/31/19 19:11,"971 South St, San Francisco, CA 94016" +317592,LG Washing Machine,1,600.0,12/22/19 11:14,"639 Jefferson St, Portland, OR 97035" +317593,34in Ultrawide Monitor,1,379.99,12/06/19 14:02,"395 6th St, San Francisco, CA 94016" +317594,iPhone,1,700,12/14/19 08:51,"190 West St, Atlanta, GA 30301" +317595,AAA Batteries (4-pack),2,2.99,12/27/19 13:34,"921 Lakeview St, Portland, OR 97035" +317596,34in Ultrawide Monitor,1,379.99,12/03/19 18:11,"551 12th St, Los Angeles, CA 90001" +317597,USB-C Charging Cable,1,11.95,12/05/19 12:15,"842 10th St, Seattle, WA 98101" +317598,AAA Batteries (4-pack),1,2.99,12/23/19 12:13,"74 Highland St, Portland, OR 97035" +317599,Wired Headphones,1,11.99,12/20/19 00:43,"735 Jefferson St, San Francisco, CA 94016" +317600,AAA Batteries (4-pack),1,2.99,12/15/19 16:14,"908 4th St, San Francisco, CA 94016" +317601,27in FHD Monitor,1,149.99,12/14/19 16:59,"300 Church St, Austin, TX 73301" +317602,Lightning Charging Cable,1,14.95,12/21/19 13:52,"474 Ridge St, Los Angeles, CA 90001" +317603,Apple Airpods Headphones,1,150,12/19/19 21:39,"487 Johnson St, San Francisco, CA 94016" +317604,AAA Batteries (4-pack),1,2.99,12/01/19 21:21,"792 Adams St, Seattle, WA 98101" +317605,AA Batteries (4-pack),1,3.84,12/28/19 13:35,"205 Maple St, Seattle, WA 98101" +317606,AAA Batteries (4-pack),4,2.99,12/28/19 12:52,"930 Church St, Boston, MA 02215" +317607,Macbook Pro Laptop,1,1700,12/04/19 22:34,"505 Cherry St, Los Angeles, CA 90001" +317608,ThinkPad Laptop,1,999.99,12/02/19 20:48,"17 Madison St, San Francisco, CA 94016" +317609,Apple Airpods Headphones,1,150,12/08/19 09:25,"57 13th St, Boston, MA 02215" +317610,AA Batteries (4-pack),1,3.84,12/23/19 23:11,"418 Chestnut St, New York City, NY 10001" +317611,AAA Batteries (4-pack),1,2.99,12/17/19 19:03,"824 Lincoln St, Los Angeles, CA 90001" +317612,Google Phone,1,600,12/27/19 14:12,"296 11th St, Boston, MA 02215" +317612,Wired Headphones,1,11.99,12/27/19 14:12,"296 11th St, Boston, MA 02215" +317613,Google Phone,1,600,12/10/19 16:38,"944 Walnut St, San Francisco, CA 94016" +317614,34in Ultrawide Monitor,1,379.99,12/05/19 20:01,"127 2nd St, San Francisco, CA 94016" +317615,AA Batteries (4-pack),1,3.84,12/07/19 21:03,"421 8th St, New York City, NY 10001" +317616,Bose SoundSport Headphones,1,99.99,12/25/19 11:04,"603 Hickory St, San Francisco, CA 94016" +317617,AAA Batteries (4-pack),1,2.99,12/09/19 12:39,"343 Adams St, Los Angeles, CA 90001" +317618,AAA Batteries (4-pack),1,2.99,12/22/19 08:36,"376 5th St, New York City, NY 10001" +317619,Macbook Pro Laptop,1,1700,12/03/19 13:51,"512 Jackson St, New York City, NY 10001" +317620,20in Monitor,1,109.99,12/11/19 19:03,"326 Sunset St, Seattle, WA 98101" +317621,Flatscreen TV,1,300,12/30/19 21:05,"377 2nd St, San Francisco, CA 94016" +317622,Flatscreen TV,1,300,12/30/19 12:09,"160 12th St, Atlanta, GA 30301" +317623,Lightning Charging Cable,1,14.95,12/27/19 18:22,"910 Ridge St, New York City, NY 10001" +317624,Lightning Charging Cable,1,14.95,12/03/19 08:54,"901 12th St, Atlanta, GA 30301" +317625,AA Batteries (4-pack),1,3.84,12/19/19 09:56,"494 Lake St, Seattle, WA 98101" +317626,34in Ultrawide Monitor,1,379.99,12/14/19 17:36,"295 Pine St, Boston, MA 02215" +317627,Google Phone,1,600,12/11/19 15:49,"748 Maple St, Atlanta, GA 30301" +317628,Google Phone,1,600,12/12/19 07:50,"767 Cherry St, Dallas, TX 75001" +317628,USB-C Charging Cable,1,11.95,12/12/19 07:50,"767 Cherry St, Dallas, TX 75001" +317629,Lightning Charging Cable,1,14.95,12/20/19 08:02,"534 Jefferson St, San Francisco, CA 94016" +317630,AA Batteries (4-pack),1,3.84,12/30/19 15:50,"218 Park St, Los Angeles, CA 90001" +317631,iPhone,1,700,12/14/19 20:02,"572 11th St, Seattle, WA 98101" +317632,AA Batteries (4-pack),1,3.84,12/30/19 13:26,"835 Wilson St, New York City, NY 10001" +317633,USB-C Charging Cable,1,11.95,12/26/19 19:41,"306 Lake St, Atlanta, GA 30301" +317634,27in 4K Gaming Monitor,1,389.99,12/26/19 09:54,"755 Madison St, Seattle, WA 98101" +317635,AA Batteries (4-pack),1,3.84,12/16/19 17:20,"939 6th St, San Francisco, CA 94016" +317636,USB-C Charging Cable,1,11.95,12/25/19 09:39,"332 2nd St, Boston, MA 02215" +317637,Apple Airpods Headphones,1,150,12/21/19 00:07,"143 11th St, Seattle, WA 98101" +317638,AAA Batteries (4-pack),1,2.99,12/09/19 13:05,"657 Jackson St, New York City, NY 10001" +317639,iPhone,1,700,12/28/19 02:13,"318 Cedar St, Atlanta, GA 30301" +317640,Bose SoundSport Headphones,1,99.99,12/08/19 18:01,"973 Church St, Boston, MA 02215" +317641,Wired Headphones,1,11.99,01/01/20 00:01,"753 West St, Portland, OR 97035" +317642,AAA Batteries (4-pack),1,2.99,12/01/19 16:16,"70 West St, Los Angeles, CA 90001" +317643,27in 4K Gaming Monitor,1,389.99,12/20/19 13:39,"867 Highland St, Portland, ME 04101" +317644,Vareebadd Phone,1,400,12/03/19 18:10,"690 2nd St, New York City, NY 10001" +317645,27in FHD Monitor,1,149.99,12/18/19 19:13,"245 9th St, Los Angeles, CA 90001" +317646,Wired Headphones,1,11.99,12/16/19 13:07,"592 Pine St, Los Angeles, CA 90001" +317647,USB-C Charging Cable,1,11.95,12/19/19 01:19,"906 River St, Los Angeles, CA 90001" +317648,20in Monitor,1,109.99,12/10/19 14:20,"515 Washington St, San Francisco, CA 94016" +317649,27in 4K Gaming Monitor,1,389.99,12/21/19 17:24,"96 Elm St, Seattle, WA 98101" +317650,AAA Batteries (4-pack),7,2.99,12/14/19 19:02,"549 Walnut St, Los Angeles, CA 90001" +317651,27in FHD Monitor,1,149.99,12/03/19 19:54,"179 Jackson St, Boston, MA 02215" +317652,USB-C Charging Cable,1,11.95,12/31/19 10:17,"157 Ridge St, Los Angeles, CA 90001" +317653,AA Batteries (4-pack),1,3.84,12/04/19 19:14,"902 Forest St, Atlanta, GA 30301" +317654,Google Phone,1,600,12/14/19 11:03,"692 11th St, New York City, NY 10001" +317655,USB-C Charging Cable,1,11.95,12/22/19 10:25,"116 Johnson St, San Francisco, CA 94016" +317656,27in FHD Monitor,1,149.99,12/20/19 09:40,"345 Hickory St, Dallas, TX 75001" +317657,34in Ultrawide Monitor,1,379.99,12/10/19 00:54,"372 Johnson St, San Francisco, CA 94016" +317658,Lightning Charging Cable,1,14.95,12/21/19 22:07,"103 Wilson St, San Francisco, CA 94016" +317659,Bose SoundSport Headphones,1,99.99,12/10/19 21:55,"201 Park St, Los Angeles, CA 90001" +317660,Apple Airpods Headphones,1,150,12/25/19 16:38,"759 Lake St, New York City, NY 10001" +317661,USB-C Charging Cable,1,11.95,12/05/19 10:20,"388 Pine St, New York City, NY 10001" +317662,USB-C Charging Cable,1,11.95,12/15/19 13:21,"986 Church St, Atlanta, GA 30301" +317663,Macbook Pro Laptop,1,1700,12/23/19 16:30,"425 West St, Boston, MA 02215" +317664,iPhone,1,700,12/30/19 17:32,"877 Cedar St, New York City, NY 10001" +317665,20in Monitor,1,109.99,12/24/19 01:14,"919 Park St, Austin, TX 73301" +317666,USB-C Charging Cable,1,11.95,12/11/19 20:54,"354 9th St, New York City, NY 10001" +317667,Apple Airpods Headphones,1,150,12/05/19 14:43,"328 Lakeview St, Seattle, WA 98101" +317667,AA Batteries (4-pack),1,3.84,12/05/19 14:43,"328 Lakeview St, Seattle, WA 98101" +317668,Bose SoundSport Headphones,1,99.99,12/09/19 15:25,"12 Jackson St, Los Angeles, CA 90001" +317669,Wired Headphones,1,11.99,12/10/19 09:03,"429 Spruce St, San Francisco, CA 94016" +317670,Lightning Charging Cable,1,14.95,12/03/19 19:06,"104 Hickory St, Los Angeles, CA 90001" +317671,Bose SoundSport Headphones,1,99.99,12/16/19 13:06,"182 11th St, San Francisco, CA 94016" +317672,27in 4K Gaming Monitor,1,389.99,12/17/19 18:46,"880 West St, Boston, MA 02215" +317673,iPhone,1,700,12/31/19 20:50,"891 Main St, New York City, NY 10001" +317674,Macbook Pro Laptop,1,1700,12/15/19 17:37,"512 Walnut St, Dallas, TX 75001" +317675,27in FHD Monitor,1,149.99,12/21/19 18:17,"336 Willow St, Austin, TX 73301" +317676,AA Batteries (4-pack),1,3.84,12/27/19 13:49,"341 South St, New York City, NY 10001" +317677,Flatscreen TV,1,300,12/01/19 17:34,"736 Cedar St, Portland, ME 04101" +317678,iPhone,1,700,12/18/19 14:33,"973 Spruce St, Atlanta, GA 30301" +317679,Vareebadd Phone,1,400,12/09/19 21:36,"254 Lakeview St, Los Angeles, CA 90001" +317680,Apple Airpods Headphones,1,150,12/18/19 10:47,"695 Lake St, Boston, MA 02215" +317681,20in Monitor,1,109.99,12/03/19 09:27,"309 Johnson St, New York City, NY 10001" +317681,AA Batteries (4-pack),1,3.84,12/03/19 09:27,"309 Johnson St, New York City, NY 10001" +317682,USB-C Charging Cable,1,11.95,12/14/19 09:02,"781 Lakeview St, Austin, TX 73301" +317683,AAA Batteries (4-pack),1,2.99,12/21/19 06:01,"886 Willow St, Los Angeles, CA 90001" +317684,34in Ultrawide Monitor,1,379.99,12/19/19 23:35,"649 Lincoln St, Dallas, TX 75001" +317685,Lightning Charging Cable,1,14.95,12/21/19 08:08,"54 Chestnut St, San Francisco, CA 94016" +317686,Apple Airpods Headphones,1,150,12/07/19 06:49,"360 2nd St, San Francisco, CA 94016" +317687,AA Batteries (4-pack),1,3.84,12/27/19 14:22,"411 Chestnut St, Los Angeles, CA 90001" +317688,AAA Batteries (4-pack),1,2.99,12/29/19 11:55,"95 Elm St, Los Angeles, CA 90001" +317688,AAA Batteries (4-pack),2,2.99,12/29/19 11:55,"95 Elm St, Los Angeles, CA 90001" +317689,27in FHD Monitor,1,149.99,12/03/19 09:50,"862 11th St, Los Angeles, CA 90001" +317690,AA Batteries (4-pack),1,3.84,12/13/19 13:09,"183 Pine St, New York City, NY 10001" +317691,AAA Batteries (4-pack),2,2.99,12/11/19 09:25,"278 Adams St, Dallas, TX 75001" +317692,Bose SoundSport Headphones,1,99.99,12/15/19 00:52,"392 Adams St, Boston, MA 02215" +317693,Bose SoundSport Headphones,1,99.99,12/15/19 10:45,"972 Jefferson St, Atlanta, GA 30301" +317694,Google Phone,1,600,12/21/19 12:59,"874 Cedar St, New York City, NY 10001" +317695,Apple Airpods Headphones,1,150,12/18/19 20:31,"651 Highland St, New York City, NY 10001" +317696,Google Phone,1,600,12/13/19 12:35,"988 Church St, Boston, MA 02215" +317697,Wired Headphones,2,11.99,12/26/19 11:04,"165 Cherry St, San Francisco, CA 94016" +317698,Google Phone,1,600,12/18/19 17:45,"967 Adams St, San Francisco, CA 94016" +317699,USB-C Charging Cable,1,11.95,12/22/19 13:39,"176 Chestnut St, Portland, ME 04101" +317700,27in FHD Monitor,1,149.99,12/28/19 14:43,"590 Ridge St, Portland, OR 97035" +317701,Lightning Charging Cable,1,14.95,12/03/19 12:26,"486 South St, San Francisco, CA 94016" +317702,Vareebadd Phone,1,400,12/15/19 11:15,"802 Jefferson St, Dallas, TX 75001" +317702,Wired Headphones,2,11.99,12/15/19 11:15,"802 Jefferson St, Dallas, TX 75001" +317703,USB-C Charging Cable,1,11.95,12/06/19 12:54,"675 1st St, Los Angeles, CA 90001" +317704,Lightning Charging Cable,1,14.95,12/25/19 12:33,"955 Forest St, San Francisco, CA 94016" +317705,Apple Airpods Headphones,1,150,12/15/19 12:26,"909 10th St, San Francisco, CA 94016" +317706,Google Phone,1,600,12/28/19 16:52,"588 12th St, New York City, NY 10001" +317707,Lightning Charging Cable,1,14.95,12/21/19 19:08,"758 Washington St, San Francisco, CA 94016" +317708,Wired Headphones,1,11.99,12/17/19 21:19,"580 Church St, Boston, MA 02215" +317709,Bose SoundSport Headphones,1,99.99,12/14/19 02:23,"228 8th St, Boston, MA 02215" +317710,USB-C Charging Cable,1,11.95,12/17/19 11:59,"47 Hill St, New York City, NY 10001" +317711,AA Batteries (4-pack),1,3.84,12/11/19 06:17,"380 Jackson St, New York City, NY 10001" +317712,Lightning Charging Cable,1,14.95,12/21/19 15:41,"577 Sunset St, New York City, NY 10001" +317713,AA Batteries (4-pack),1,3.84,12/20/19 10:39,"409 8th St, Los Angeles, CA 90001" +317714,Wired Headphones,1,11.99,12/13/19 14:29,"465 Ridge St, New York City, NY 10001" +317715,Wired Headphones,1,11.99,12/13/19 22:06,"233 Cedar St, Boston, MA 02215" +317716,Bose SoundSport Headphones,1,99.99,12/12/19 20:30,"864 Madison St, Boston, MA 02215" +317717,27in 4K Gaming Monitor,1,389.99,12/14/19 20:41,"602 Lake St, Portland, OR 97035" +317718,Lightning Charging Cable,1,14.95,12/13/19 23:14,"307 7th St, San Francisco, CA 94016" +317719,27in FHD Monitor,1,149.99,12/30/19 12:35,"224 6th St, Dallas, TX 75001" +317720,34in Ultrawide Monitor,1,379.99,12/20/19 17:37,"427 7th St, Atlanta, GA 30301" +317721,AA Batteries (4-pack),1,3.84,12/31/19 14:30,"752 Spruce St, Portland, ME 04101" +317722,Wired Headphones,1,11.99,12/27/19 08:21,"816 Sunset St, San Francisco, CA 94016" +317723,AAA Batteries (4-pack),1,2.99,12/06/19 19:23,"526 2nd St, Portland, OR 97035" +317724,ThinkPad Laptop,1,999.99,12/13/19 13:47,"296 Ridge St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +317725,Lightning Charging Cable,1,14.95,12/24/19 09:44,"435 12th St, Dallas, TX 75001" +317726,AAA Batteries (4-pack),3,2.99,12/08/19 21:03,"778 Wilson St, Austin, TX 73301" +317727,Bose SoundSport Headphones,1,99.99,12/03/19 11:59,"245 Maple St, Dallas, TX 75001" +317728,Wired Headphones,2,11.99,12/18/19 09:24,"911 Jefferson St, Los Angeles, CA 90001" +317729,27in FHD Monitor,1,149.99,12/17/19 07:40,"304 Lincoln St, New York City, NY 10001" +317730,Wired Headphones,1,11.99,12/25/19 18:20,"175 Park St, Boston, MA 02215" +317731,Bose SoundSport Headphones,1,99.99,12/28/19 19:42,"329 Cherry St, Dallas, TX 75001" +317732,20in Monitor,1,109.99,12/09/19 19:22,"325 Church St, Seattle, WA 98101" +317733,AA Batteries (4-pack),1,3.84,12/26/19 20:55,"723 11th St, Seattle, WA 98101" +317734,Wired Headphones,1,11.99,12/15/19 10:46,"639 Hill St, Portland, OR 97035" +317735,Lightning Charging Cable,1,14.95,12/22/19 23:04,"819 Johnson St, Atlanta, GA 30301" +317736,Lightning Charging Cable,1,14.95,12/25/19 01:39,"71 2nd St, San Francisco, CA 94016" +317737,USB-C Charging Cable,1,11.95,12/31/19 14:31,"766 Dogwood St, Seattle, WA 98101" +317738,USB-C Charging Cable,1,11.95,12/15/19 11:49,"221 Chestnut St, Los Angeles, CA 90001" +317739,USB-C Charging Cable,1,11.95,12/21/19 11:14,"232 Dogwood St, Los Angeles, CA 90001" +317740,AA Batteries (4-pack),1,3.84,12/24/19 14:21,"163 Walnut St, Seattle, WA 98101" +317741,AA Batteries (4-pack),1,3.84,12/26/19 12:07,"948 Center St, Boston, MA 02215" +317742,34in Ultrawide Monitor,1,379.99,12/31/19 22:44,"440 Jefferson St, Boston, MA 02215" +317743,Wired Headphones,1,11.99,12/30/19 19:38,"223 14th St, San Francisco, CA 94016" +317744,Bose SoundSport Headphones,2,99.99,12/13/19 17:42,"125 14th St, Boston, MA 02215" +317745,iPhone,1,700,12/17/19 11:56,"474 6th St, San Francisco, CA 94016" +317746,27in FHD Monitor,1,149.99,12/19/19 16:36,"963 Wilson St, Portland, ME 04101" +317747,AA Batteries (4-pack),2,3.84,12/11/19 12:42,"254 Dogwood St, Seattle, WA 98101" +317748,AA Batteries (4-pack),2,3.84,12/19/19 18:45,"232 Sunset St, Portland, OR 97035" +317749,USB-C Charging Cable,1,11.95,12/02/19 00:01,"458 Willow St, San Francisco, CA 94016" +317750,Lightning Charging Cable,1,14.95,12/20/19 15:37,"600 Cherry St, New York City, NY 10001" +317751,Lightning Charging Cable,1,14.95,12/14/19 13:20,"270 Ridge St, Portland, OR 97035" +317752,ThinkPad Laptop,1,999.99,12/30/19 08:24,"117 Cedar St, Los Angeles, CA 90001" +317753,USB-C Charging Cable,1,11.95,12/15/19 11:36,"686 7th St, Los Angeles, CA 90001" +317754,Bose SoundSport Headphones,1,99.99,12/07/19 12:24,"516 Lake St, Los Angeles, CA 90001" +317755,AA Batteries (4-pack),3,3.84,12/02/19 16:36,"521 2nd St, New York City, NY 10001" +317756,AA Batteries (4-pack),1,3.84,12/02/19 10:19,"315 Cherry St, Dallas, TX 75001" +317757,27in 4K Gaming Monitor,1,389.99,12/09/19 04:54,"494 Ridge St, New York City, NY 10001" +317758,iPhone,1,700,12/11/19 21:31,"496 Park St, San Francisco, CA 94016" +317758,Wired Headphones,1,11.99,12/11/19 21:31,"496 Park St, San Francisco, CA 94016" +317759,AAA Batteries (4-pack),1,2.99,12/26/19 20:35,"665 Highland St, Portland, OR 97035" +317760,AA Batteries (4-pack),1,3.84,12/30/19 10:50,"234 Jackson St, Boston, MA 02215" +317761,AA Batteries (4-pack),1,3.84,12/17/19 09:02,"303 9th St, Dallas, TX 75001" +317762,AA Batteries (4-pack),1,3.84,12/05/19 20:47,"582 North St, Los Angeles, CA 90001" +317763,Bose SoundSport Headphones,1,99.99,12/15/19 21:58,"6 North St, Austin, TX 73301" +317764,USB-C Charging Cable,1,11.95,12/14/19 14:30,"31 Sunset St, New York City, NY 10001" +317765,Apple Airpods Headphones,1,150,12/29/19 00:03,"293 South St, Seattle, WA 98101" +317766,USB-C Charging Cable,1,11.95,12/07/19 20:30,"341 Cherry St, Los Angeles, CA 90001" +317767,ThinkPad Laptop,1,999.99,12/10/19 12:38,"311 Church St, San Francisco, CA 94016" +317768,USB-C Charging Cable,2,11.95,12/07/19 14:35,"331 Main St, Portland, OR 97035" +317769,Apple Airpods Headphones,1,150,12/23/19 15:56,"356 Walnut St, San Francisco, CA 94016" +317770,Wired Headphones,1,11.99,12/22/19 13:03,"400 13th St, San Francisco, CA 94016" +317771,USB-C Charging Cable,1,11.95,12/19/19 17:00,"147 Highland St, San Francisco, CA 94016" +317772,AAA Batteries (4-pack),1,2.99,12/05/19 20:41,"538 Pine St, Dallas, TX 75001" +317773,Lightning Charging Cable,1,14.95,12/11/19 13:36,"651 Center St, Portland, OR 97035" +317774,Lightning Charging Cable,1,14.95,12/07/19 19:36,"177 12th St, San Francisco, CA 94016" +317775,AA Batteries (4-pack),1,3.84,12/20/19 23:13,"834 Sunset St, Boston, MA 02215" +317776,Wired Headphones,1,11.99,12/29/19 12:37,"286 Church St, Dallas, TX 75001" +317777,27in FHD Monitor,1,149.99,12/03/19 19:38,"136 Chestnut St, Dallas, TX 75001" +317778,Bose SoundSport Headphones,1,99.99,12/19/19 11:41,"830 Jackson St, Seattle, WA 98101" +317779,USB-C Charging Cable,1,11.95,12/09/19 19:07,"360 Jackson St, San Francisco, CA 94016" +317780,27in FHD Monitor,1,149.99,12/10/19 17:19,"874 9th St, Atlanta, GA 30301" +317781,USB-C Charging Cable,1,11.95,12/13/19 18:15,"116 Hickory St, Los Angeles, CA 90001" +317782,Bose SoundSport Headphones,1,99.99,12/16/19 15:18,"446 Lincoln St, Portland, OR 97035" +317783,27in FHD Monitor,1,149.99,12/02/19 19:03,"349 7th St, Dallas, TX 75001" +317784,Google Phone,1,600,12/22/19 16:26,"861 1st St, San Francisco, CA 94016" +317785,AAA Batteries (4-pack),1,2.99,12/24/19 18:07,"500 8th St, New York City, NY 10001" +317786,Wired Headphones,1,11.99,12/05/19 12:01,"122 Park St, San Francisco, CA 94016" +317787,Lightning Charging Cable,1,14.95,12/17/19 19:30,"962 Spruce St, Los Angeles, CA 90001" +317788,Apple Airpods Headphones,1,150,12/28/19 20:30,"879 13th St, New York City, NY 10001" +317789,AAA Batteries (4-pack),1,2.99,12/11/19 15:32,"65 Hickory St, New York City, NY 10001" +317790,AAA Batteries (4-pack),3,2.99,12/03/19 18:07,"944 River St, Los Angeles, CA 90001" +317791,Google Phone,1,600,12/29/19 13:46,"647 Main St, Portland, OR 97035" +317792,AA Batteries (4-pack),1,3.84,12/12/19 21:25,"438 Walnut St, Los Angeles, CA 90001" +317793,Apple Airpods Headphones,1,150,12/29/19 11:57,"379 South St, Austin, TX 73301" +317794,Lightning Charging Cable,1,14.95,12/18/19 13:29,"343 7th St, Atlanta, GA 30301" +317795,34in Ultrawide Monitor,1,379.99,12/01/19 09:04,"77 Cedar St, San Francisco, CA 94016" +317796,Lightning Charging Cable,1,14.95,12/11/19 21:24,"160 Hickory St, Seattle, WA 98101" +317797,Lightning Charging Cable,1,14.95,12/09/19 17:11,"277 Walnut St, Dallas, TX 75001" +317798,27in FHD Monitor,1,149.99,12/16/19 08:06,"946 9th St, Austin, TX 73301" +317799,AAA Batteries (4-pack),1,2.99,12/30/19 22:07,"198 Center St, New York City, NY 10001" +317800,Lightning Charging Cable,1,14.95,12/18/19 21:56,"45 8th St, Dallas, TX 75001" +317801,27in FHD Monitor,1,149.99,12/14/19 17:26,"361 Cedar St, Dallas, TX 75001" +317802,Lightning Charging Cable,1,14.95,12/30/19 11:39,"467 River St, New York City, NY 10001" +317803,34in Ultrawide Monitor,1,379.99,01/01/20 00:21,"343 8th St, New York City, NY 10001" +317804,Lightning Charging Cable,1,14.95,12/16/19 08:06,"698 12th St, Seattle, WA 98101" +317805,AA Batteries (4-pack),1,3.84,12/25/19 19:16,"363 Spruce St, Austin, TX 73301" +317806,Lightning Charging Cable,1,14.95,12/19/19 11:57,"918 Adams St, San Francisco, CA 94016" +317807,Wired Headphones,1,11.99,12/11/19 11:54,"898 North St, San Francisco, CA 94016" +317808,Macbook Pro Laptop,1,1700,12/28/19 12:03,"47 Forest St, Seattle, WA 98101" +317809,AA Batteries (4-pack),1,3.84,12/17/19 14:36,"313 Jefferson St, Atlanta, GA 30301" +317810,AA Batteries (4-pack),1,3.84,12/04/19 02:38,"589 4th St, San Francisco, CA 94016" +317811,AAA Batteries (4-pack),3,2.99,12/08/19 00:17,"615 12th St, New York City, NY 10001" +317812,Bose SoundSport Headphones,1,99.99,12/10/19 07:38,"786 Lincoln St, San Francisco, CA 94016" +317813,Lightning Charging Cable,1,14.95,12/10/19 11:29,"831 10th St, Boston, MA 02215" +317814,USB-C Charging Cable,1,11.95,12/04/19 11:39,"805 1st St, Atlanta, GA 30301" +317815,AAA Batteries (4-pack),1,2.99,12/19/19 19:14,"241 Chestnut St, New York City, NY 10001" +317815,iPhone,1,700,12/19/19 19:14,"241 Chestnut St, New York City, NY 10001" +317816,USB-C Charging Cable,2,11.95,12/27/19 15:39,"299 4th St, San Francisco, CA 94016" +317817,Apple Airpods Headphones,1,150,12/16/19 16:21,"265 Walnut St, Los Angeles, CA 90001" +317818,iPhone,1,700,12/10/19 13:25,"854 11th St, Boston, MA 02215" +317818,Lightning Charging Cable,1,14.95,12/10/19 13:25,"854 11th St, Boston, MA 02215" +317819,Wired Headphones,1,11.99,12/24/19 12:58,"594 2nd St, Los Angeles, CA 90001" +317820,27in FHD Monitor,1,149.99,12/09/19 20:49,"232 Willow St, San Francisco, CA 94016" +317821,Lightning Charging Cable,1,14.95,12/25/19 09:01,"658 13th St, New York City, NY 10001" +317822,Apple Airpods Headphones,1,150,12/02/19 09:31,"31 Cedar St, Dallas, TX 75001" +317823,Lightning Charging Cable,1,14.95,12/28/19 18:36,"621 Hickory St, Atlanta, GA 30301" +317824,iPhone,1,700,12/05/19 03:09,"353 Main St, Dallas, TX 75001" +317825,iPhone,1,700,12/28/19 23:46,"283 Madison St, San Francisco, CA 94016" +317826,USB-C Charging Cable,1,11.95,12/23/19 18:36,"51 6th St, San Francisco, CA 94016" +317827,Apple Airpods Headphones,1,150,12/27/19 21:08,"219 Main St, Seattle, WA 98101" +317828,Lightning Charging Cable,1,14.95,12/01/19 15:00,"289 Adams St, Los Angeles, CA 90001" +317829,AA Batteries (4-pack),1,3.84,12/26/19 12:46,"377 Wilson St, Dallas, TX 75001" +317830,Lightning Charging Cable,1,14.95,12/07/19 14:16,"530 9th St, Seattle, WA 98101" +317831,Lightning Charging Cable,1,14.95,12/04/19 23:35,"86 Adams St, Atlanta, GA 30301" +317832,AA Batteries (4-pack),1,3.84,12/14/19 10:44,"717 7th St, Los Angeles, CA 90001" +317833,Google Phone,1,600,12/28/19 11:31,"927 Park St, New York City, NY 10001" +317834,Wired Headphones,1,11.99,12/19/19 08:10,"283 Dogwood St, San Francisco, CA 94016" +317835,AAA Batteries (4-pack),1,2.99,12/29/19 16:02,"1 Pine St, San Francisco, CA 94016" +317836,27in 4K Gaming Monitor,1,389.99,12/18/19 01:05,"505 Madison St, Seattle, WA 98101" +317837,AA Batteries (4-pack),1,3.84,12/01/19 07:31,"525 Center St, San Francisco, CA 94016" +317838,Lightning Charging Cable,1,14.95,12/22/19 10:34,"952 1st St, New York City, NY 10001" +317839,AAA Batteries (4-pack),3,2.99,12/24/19 19:10,"447 Park St, San Francisco, CA 94016" +317840,AA Batteries (4-pack),2,3.84,12/11/19 12:22,"66 7th St, Austin, TX 73301" +317841,20in Monitor,1,109.99,12/13/19 14:07,"536 10th St, Atlanta, GA 30301" +317842,Apple Airpods Headphones,1,150,12/01/19 20:14,"756 Hickory St, Atlanta, GA 30301" +317843,Macbook Pro Laptop,1,1700,12/24/19 17:45,"291 9th St, San Francisco, CA 94016" +317844,AA Batteries (4-pack),1,3.84,12/18/19 10:55,"568 Forest St, Dallas, TX 75001" +317845,Wired Headphones,1,11.99,12/12/19 12:38,"360 9th St, San Francisco, CA 94016" +317846,ThinkPad Laptop,1,999.99,12/20/19 14:56,"681 Hickory St, Dallas, TX 75001" +317847,AA Batteries (4-pack),2,3.84,12/15/19 01:50,"267 Johnson St, Dallas, TX 75001" +317848,AAA Batteries (4-pack),2,2.99,12/09/19 09:01,"46 South St, San Francisco, CA 94016" +317849,27in 4K Gaming Monitor,1,389.99,12/17/19 08:51,"695 Lake St, Los Angeles, CA 90001" +317850,Apple Airpods Headphones,1,150,12/22/19 13:16,"831 12th St, San Francisco, CA 94016" +317851,AAA Batteries (4-pack),2,2.99,12/26/19 18:25,"455 Jackson St, Portland, ME 04101" +317852,Lightning Charging Cable,1,14.95,12/06/19 17:38,"63 Chestnut St, San Francisco, CA 94016" +317853,Vareebadd Phone,1,400,12/29/19 10:07,"874 Walnut St, Austin, TX 73301" +317854,Lightning Charging Cable,1,14.95,12/14/19 15:54,"904 Forest St, Seattle, WA 98101" +317855,AA Batteries (4-pack),1,3.84,12/23/19 16:16,"709 Hill St, Seattle, WA 98101" +317856,Lightning Charging Cable,1,14.95,12/12/19 12:48,"447 Hill St, Los Angeles, CA 90001" +317857,USB-C Charging Cable,1,11.95,12/24/19 17:46,"145 Cherry St, San Francisco, CA 94016" +317858,Flatscreen TV,1,300,12/14/19 15:22,"933 Park St, Seattle, WA 98101" +317859,USB-C Charging Cable,1,11.95,12/30/19 08:31,"595 11th St, San Francisco, CA 94016" +317860,Vareebadd Phone,1,400,12/24/19 06:38,"359 7th St, Los Angeles, CA 90001" +317860,USB-C Charging Cable,1,11.95,12/24/19 06:38,"359 7th St, Los Angeles, CA 90001" +317861,Lightning Charging Cable,1,14.95,12/11/19 09:53,"198 12th St, New York City, NY 10001" +317862,AAA Batteries (4-pack),2,2.99,12/29/19 22:37,"89 Forest St, San Francisco, CA 94016" +317863,Bose SoundSport Headphones,1,99.99,12/18/19 11:17,"725 Ridge St, San Francisco, CA 94016" +317864,Bose SoundSport Headphones,1,99.99,12/14/19 23:02,"307 Hickory St, Austin, TX 73301" +317865,Wired Headphones,1,11.99,01/01/20 00:57,"823 South St, San Francisco, CA 94016" +317866,Wired Headphones,1,11.99,12/18/19 18:26,"504 2nd St, San Francisco, CA 94016" +317867,Bose SoundSport Headphones,1,99.99,12/29/19 18:59,"979 Spruce St, New York City, NY 10001" +317868,Apple Airpods Headphones,1,150,12/01/19 20:00,"167 Church St, Seattle, WA 98101" +317869,LG Dryer,1,600.0,12/29/19 13:21,"737 Cherry St, Dallas, TX 75001" +317870,Wired Headphones,1,11.99,12/25/19 11:30,"938 Cherry St, Atlanta, GA 30301" +317871,Lightning Charging Cable,1,14.95,12/02/19 19:52,"230 Lincoln St, Portland, OR 97035" +317872,Wired Headphones,1,11.99,12/23/19 20:41,"475 Wilson St, Los Angeles, CA 90001" +317873,20in Monitor,1,109.99,12/29/19 18:52,"875 Chestnut St, Los Angeles, CA 90001" +317874,Bose SoundSport Headphones,1,99.99,12/11/19 04:39,"384 Forest St, Los Angeles, CA 90001" +317875,20in Monitor,1,109.99,12/20/19 16:51,"221 West St, New York City, NY 10001" +317876,LG Dryer,1,600.0,12/31/19 10:18,"323 Highland St, Boston, MA 02215" +317877,Flatscreen TV,1,300,12/01/19 10:14,"95 6th St, San Francisco, CA 94016" +317878,Wired Headphones,1,11.99,12/28/19 14:34,"64 Lincoln St, New York City, NY 10001" +317879,USB-C Charging Cable,1,11.95,12/05/19 12:50,"112 6th St, Los Angeles, CA 90001" +317880,USB-C Charging Cable,1,11.95,12/31/19 16:53,"449 14th St, San Francisco, CA 94016" +317881,USB-C Charging Cable,1,11.95,12/05/19 00:10,"572 Pine St, Boston, MA 02215" +317882,AAA Batteries (4-pack),1,2.99,12/03/19 11:13,"201 Center St, Seattle, WA 98101" +317883,ThinkPad Laptop,1,999.99,12/06/19 16:53,"594 Meadow St, San Francisco, CA 94016" +317884,Wired Headphones,1,11.99,12/10/19 10:27,"212 Adams St, New York City, NY 10001" +317885,AA Batteries (4-pack),1,3.84,12/02/19 14:06,"850 River St, Atlanta, GA 30301" +317886,Wired Headphones,1,11.99,12/10/19 00:10,"939 Hill St, Boston, MA 02215" +317887,AA Batteries (4-pack),1,3.84,12/09/19 06:25,"278 Hickory St, San Francisco, CA 94016" +317887,34in Ultrawide Monitor,1,379.99,12/09/19 06:25,"278 Hickory St, San Francisco, CA 94016" +317888,AA Batteries (4-pack),1,3.84,12/03/19 16:23,"114 5th St, Boston, MA 02215" +317889,34in Ultrawide Monitor,1,379.99,12/06/19 17:41,"431 Hickory St, Portland, OR 97035" +317890,20in Monitor,1,109.99,12/12/19 18:15,"514 North St, San Francisco, CA 94016" +317891,Wired Headphones,1,11.99,12/13/19 19:42,"810 Park St, Boston, MA 02215" +317892,iPhone,1,700,12/27/19 19:33,"658 4th St, San Francisco, CA 94016" +317893,Vareebadd Phone,1,400,12/05/19 21:30,"802 North St, Portland, OR 97035" +317894,Wired Headphones,1,11.99,12/08/19 16:19,"897 14th St, Portland, OR 97035" +317895,AAA Batteries (4-pack),2,2.99,12/06/19 08:23,"156 Park St, San Francisco, CA 94016" +317896,USB-C Charging Cable,1,11.95,12/20/19 20:08,"201 Maple St, Los Angeles, CA 90001" +317897,Wired Headphones,1,11.99,12/23/19 19:36,"719 Adams St, New York City, NY 10001" +317898,AA Batteries (4-pack),2,3.84,12/16/19 22:46,"923 Dogwood St, San Francisco, CA 94016" +317899,iPhone,1,700,12/13/19 06:32,"586 Hickory St, Seattle, WA 98101" +317900,Lightning Charging Cable,1,14.95,12/12/19 20:12,"846 North St, Dallas, TX 75001" +317901,Wired Headphones,1,11.99,12/09/19 14:40,"801 Jackson St, San Francisco, CA 94016" +317902,Wired Headphones,2,11.99,12/02/19 22:51,"896 Willow St, San Francisco, CA 94016" +317903,Macbook Pro Laptop,1,1700,12/01/19 21:28,"811 Meadow St, Dallas, TX 75001" +317904,Apple Airpods Headphones,1,150,12/29/19 22:37,"245 Chestnut St, Seattle, WA 98101" +317905,34in Ultrawide Monitor,1,379.99,12/19/19 07:56,"328 9th St, Los Angeles, CA 90001" +317906,27in 4K Gaming Monitor,1,389.99,12/22/19 07:47,"604 Washington St, Atlanta, GA 30301" +317907,34in Ultrawide Monitor,1,379.99,12/24/19 15:21,"926 Cedar St, Dallas, TX 75001" +317908,Apple Airpods Headphones,1,150,12/08/19 23:48,"892 Pine St, Los Angeles, CA 90001" +317909,USB-C Charging Cable,1,11.95,12/05/19 11:16,"596 Washington St, Los Angeles, CA 90001" +317910,Apple Airpods Headphones,1,150,12/07/19 21:08,"1 5th St, San Francisco, CA 94016" +317911,AA Batteries (4-pack),2,3.84,12/19/19 18:59,"68 Lakeview St, San Francisco, CA 94016" +317912,Bose SoundSport Headphones,1,99.99,12/25/19 12:03,"880 2nd St, Los Angeles, CA 90001" +317913,Bose SoundSport Headphones,1,99.99,12/05/19 20:24,"172 Wilson St, New York City, NY 10001" +317914,Flatscreen TV,1,300,12/10/19 15:43,"756 Washington St, Los Angeles, CA 90001" +317915,Lightning Charging Cable,1,14.95,12/16/19 15:18,"244 Adams St, New York City, NY 10001" +317916,USB-C Charging Cable,1,11.95,12/12/19 17:43,"3 Dogwood St, Boston, MA 02215" +317917,USB-C Charging Cable,2,11.95,12/15/19 10:55,"585 10th St, Seattle, WA 98101" +317918,Lightning Charging Cable,1,14.95,12/08/19 12:00,"497 13th St, Seattle, WA 98101" +317919,Wired Headphones,1,11.99,12/07/19 11:37,"711 12th St, Portland, OR 97035" +317920,Lightning Charging Cable,1,14.95,12/29/19 15:43,"331 Main St, New York City, NY 10001" +317921,AA Batteries (4-pack),2,3.84,12/15/19 07:29,"904 Cedar St, Atlanta, GA 30301" +317922,34in Ultrawide Monitor,1,379.99,12/31/19 14:32,"401 Park St, San Francisco, CA 94016" +317923,Wired Headphones,2,11.99,12/14/19 16:36,"637 9th St, Boston, MA 02215" +317924,Lightning Charging Cable,1,14.95,12/31/19 08:56,"760 14th St, New York City, NY 10001" +317925,USB-C Charging Cable,1,11.95,12/23/19 23:25,"652 Ridge St, Atlanta, GA 30301" +317926,ThinkPad Laptop,1,999.99,12/19/19 22:04,"965 5th St, Los Angeles, CA 90001" +317927,AA Batteries (4-pack),1,3.84,12/07/19 16:30,"689 Highland St, Los Angeles, CA 90001" +317928,AA Batteries (4-pack),2,3.84,12/12/19 11:24,"602 Elm St, Dallas, TX 75001" +317929,Lightning Charging Cable,1,14.95,12/06/19 18:42,"688 Church St, San Francisco, CA 94016" +317930,USB-C Charging Cable,1,11.95,12/03/19 23:24,"951 Cherry St, New York City, NY 10001" +317931,AA Batteries (4-pack),1,3.84,12/15/19 12:03,"307 Jackson St, San Francisco, CA 94016" +317932,20in Monitor,1,109.99,12/18/19 17:26,"644 Dogwood St, Seattle, WA 98101" +317933,Wired Headphones,1,11.99,12/05/19 16:00,"499 South St, Boston, MA 02215" +317934,AAA Batteries (4-pack),1,2.99,12/09/19 15:07,"374 Pine St, Los Angeles, CA 90001" +317935,AAA Batteries (4-pack),1,2.99,12/13/19 18:42,"397 9th St, San Francisco, CA 94016" +317936,iPhone,1,700,12/20/19 15:18,"657 8th St, Austin, TX 73301" +317936,Wired Headphones,1,11.99,12/20/19 15:18,"657 8th St, Austin, TX 73301" +317937,Flatscreen TV,1,300,12/01/19 18:32,"666 Park St, Austin, TX 73301" +317938,Wired Headphones,1,11.99,12/04/19 18:22,"685 West St, Dallas, TX 75001" +317939,27in FHD Monitor,1,149.99,12/14/19 14:00,"806 Church St, San Francisco, CA 94016" +317940,ThinkPad Laptop,2,999.99,12/15/19 15:26,"616 Lake St, Seattle, WA 98101" +317941,Apple Airpods Headphones,1,150,12/31/19 20:19,"582 Center St, New York City, NY 10001" +317942,AA Batteries (4-pack),1,3.84,12/07/19 13:43,"709 North St, Boston, MA 02215" +317943,Apple Airpods Headphones,1,150,12/19/19 23:25,"847 Elm St, Boston, MA 02215" +317944,AAA Batteries (4-pack),1,2.99,12/11/19 13:49,"726 Cedar St, Atlanta, GA 30301" +317945,Lightning Charging Cable,1,14.95,12/09/19 01:42,"122 10th St, San Francisco, CA 94016" +317946,AA Batteries (4-pack),1,3.84,12/08/19 16:34,"473 Forest St, Los Angeles, CA 90001" +317947,Flatscreen TV,1,300,12/15/19 22:39,"782 8th St, Boston, MA 02215" +317948,Macbook Pro Laptop,1,1700,12/11/19 18:13,"165 Washington St, New York City, NY 10001" +317949,Wired Headphones,1,11.99,12/11/19 17:55,"277 13th St, San Francisco, CA 94016" +317950,20in Monitor,1,109.99,12/25/19 15:19,"587 Forest St, San Francisco, CA 94016" +317951,Lightning Charging Cable,1,14.95,12/21/19 13:12,"971 Chestnut St, Seattle, WA 98101" +317952,AA Batteries (4-pack),4,3.84,12/07/19 10:29,"426 Johnson St, New York City, NY 10001" +317953,Macbook Pro Laptop,1,1700,12/11/19 20:26,"735 Forest St, Atlanta, GA 30301" +317954,Apple Airpods Headphones,1,150,12/16/19 20:18,"320 Lakeview St, Portland, OR 97035" +317955,Lightning Charging Cable,1,14.95,12/15/19 16:13,"971 Lincoln St, San Francisco, CA 94016" +317956,27in FHD Monitor,1,149.99,12/03/19 20:48,"468 Main St, San Francisco, CA 94016" +317957,Google Phone,1,600,12/21/19 00:40,"240 11th St, Boston, MA 02215" +317958,Google Phone,1,600,12/12/19 12:48,"606 Forest St, Portland, OR 97035" +317958,Wired Headphones,1,11.99,12/12/19 12:48,"606 Forest St, Portland, OR 97035" +317959,27in 4K Gaming Monitor,1,389.99,12/30/19 20:09,"313 Dogwood St, New York City, NY 10001" +317960,Lightning Charging Cable,1,14.95,12/21/19 22:34,"257 7th St, San Francisco, CA 94016" +317961,Wired Headphones,1,11.99,12/29/19 19:29,"750 8th St, San Francisco, CA 94016" +317962,Flatscreen TV,1,300,12/06/19 15:37,"410 1st St, San Francisco, CA 94016" +317963,27in FHD Monitor,1,149.99,12/20/19 09:53,"509 Chestnut St, San Francisco, CA 94016" +317964,Flatscreen TV,1,300,12/18/19 15:14,"121 Hill St, Dallas, TX 75001" +317965,Wired Headphones,1,11.99,12/31/19 21:44,"318 Center St, Los Angeles, CA 90001" +317966,LG Dryer,1,600.0,12/04/19 12:48,"86 Lincoln St, San Francisco, CA 94016" +317967,iPhone,1,700,12/28/19 17:09,"197 12th St, Austin, TX 73301" +317968,USB-C Charging Cable,2,11.95,12/05/19 19:26,"564 Center St, New York City, NY 10001" +317969,Wired Headphones,1,11.99,12/15/19 19:45,"177 10th St, Los Angeles, CA 90001" +317970,Apple Airpods Headphones,1,150,12/21/19 12:12,"577 Cherry St, Portland, OR 97035" +317971,Google Phone,1,600,12/19/19 19:06,"287 Willow St, Boston, MA 02215" +317972,Wired Headphones,1,11.99,12/03/19 19:22,"111 Center St, San Francisco, CA 94016" +317973,iPhone,1,700,12/09/19 20:02,"978 13th St, Atlanta, GA 30301" +317973,Wired Headphones,1,11.99,12/09/19 20:02,"978 13th St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +317974,Lightning Charging Cable,2,14.95,12/13/19 17:30,"951 Maple St, Los Angeles, CA 90001" +317975,27in 4K Gaming Monitor,1,389.99,12/03/19 20:23,"384 Spruce St, San Francisco, CA 94016" +317976,iPhone,1,700,12/11/19 08:24,"248 Highland St, Boston, MA 02215" +317977,AA Batteries (4-pack),1,3.84,12/28/19 14:29,"359 5th St, Austin, TX 73301" +317978,27in FHD Monitor,1,149.99,12/28/19 22:31,"707 Dogwood St, San Francisco, CA 94016" +317979,27in FHD Monitor,1,149.99,12/21/19 09:04,"274 10th St, Portland, OR 97035" +317980,USB-C Charging Cable,1,11.95,12/29/19 12:36,"327 Park St, Los Angeles, CA 90001" +317981,Apple Airpods Headphones,1,150,12/19/19 13:06,"680 Pine St, Austin, TX 73301" +317982,USB-C Charging Cable,2,11.95,12/23/19 17:57,"95 14th St, New York City, NY 10001" +317983,AAA Batteries (4-pack),1,2.99,12/11/19 13:02,"702 Washington St, Atlanta, GA 30301" +317984,Bose SoundSport Headphones,1,99.99,12/16/19 07:30,"394 Adams St, Dallas, TX 75001" +317985,27in FHD Monitor,1,149.99,12/10/19 20:57,"252 Church St, San Francisco, CA 94016" +317986,Bose SoundSport Headphones,1,99.99,12/22/19 16:53,"659 Lincoln St, Austin, TX 73301" +317987,AAA Batteries (4-pack),1,2.99,12/26/19 18:42,"881 13th St, Seattle, WA 98101" +317988,ThinkPad Laptop,1,999.99,12/14/19 08:40,"221 9th St, Boston, MA 02215" +317989,Wired Headphones,1,11.99,12/22/19 02:06,"793 Lincoln St, Seattle, WA 98101" +317990,27in FHD Monitor,1,149.99,12/13/19 10:29,"82 Elm St, Los Angeles, CA 90001" +317991,Flatscreen TV,1,300,12/14/19 10:21,"351 Hill St, Los Angeles, CA 90001" +317992,27in 4K Gaming Monitor,1,389.99,12/27/19 00:27,"385 Church St, Seattle, WA 98101" +317992,ThinkPad Laptop,1,999.99,12/27/19 00:27,"385 Church St, Seattle, WA 98101" +317993,34in Ultrawide Monitor,1,379.99,12/05/19 09:28,"138 Lincoln St, Portland, OR 97035" +317994,USB-C Charging Cable,1,11.95,12/09/19 17:54,"69 Hill St, Boston, MA 02215" +317995,LG Washing Machine,1,600.0,12/04/19 16:27,"139 11th St, Boston, MA 02215" +317996,Apple Airpods Headphones,1,150,12/27/19 10:11,"947 Wilson St, Los Angeles, CA 90001" +317997,iPhone,1,700,12/03/19 10:49,"814 Lake St, New York City, NY 10001" +317998,USB-C Charging Cable,1,11.95,12/21/19 17:04,"611 Sunset St, Seattle, WA 98101" +317999,Apple Airpods Headphones,1,150,12/12/19 22:14,"940 Johnson St, Los Angeles, CA 90001" +318000,AA Batteries (4-pack),1,3.84,12/27/19 16:32,"309 Lincoln St, San Francisco, CA 94016" +318001,27in 4K Gaming Monitor,1,389.99,12/24/19 22:24,"331 10th St, New York City, NY 10001" +318002,AAA Batteries (4-pack),3,2.99,12/18/19 23:09,"322 Willow St, Boston, MA 02215" +318003,AA Batteries (4-pack),1,3.84,12/08/19 16:09,"259 1st St, San Francisco, CA 94016" +318004,Flatscreen TV,1,300,12/25/19 01:55,"235 12th St, Los Angeles, CA 90001" +318005,USB-C Charging Cable,1,11.95,12/21/19 13:20,"32 South St, Atlanta, GA 30301" +318006,Flatscreen TV,1,300,12/09/19 22:16,"650 6th St, Los Angeles, CA 90001" +318007,USB-C Charging Cable,1,11.95,12/11/19 15:50,"542 Pine St, San Francisco, CA 94016" +318008,Lightning Charging Cable,1,14.95,12/29/19 08:00,"801 Jefferson St, New York City, NY 10001" +318009,Bose SoundSport Headphones,1,99.99,12/19/19 08:22,"714 Meadow St, Los Angeles, CA 90001" +318010,Apple Airpods Headphones,1,150,12/16/19 13:41,"18 Dogwood St, New York City, NY 10001" +318011,Wired Headphones,1,11.99,12/26/19 14:43,"130 Lakeview St, Seattle, WA 98101" +318012,20in Monitor,1,109.99,12/04/19 13:19,"997 Maple St, Seattle, WA 98101" +318013,AAA Batteries (4-pack),3,2.99,12/24/19 20:11,"111 Hickory St, New York City, NY 10001" +318014,Apple Airpods Headphones,1,150,12/18/19 22:26,"663 Adams St, San Francisco, CA 94016" +318015,AA Batteries (4-pack),3,3.84,12/28/19 21:43,"343 Chestnut St, Los Angeles, CA 90001" +318016,Macbook Pro Laptop,1,1700,12/17/19 19:09,"66 Adams St, Dallas, TX 75001" +318017,Google Phone,1,600,12/13/19 22:37,"964 Adams St, Seattle, WA 98101" +318018,AAA Batteries (4-pack),3,2.99,12/26/19 10:37,"645 13th St, Seattle, WA 98101" +318019,Lightning Charging Cable,1,14.95,12/06/19 21:52,"280 North St, Los Angeles, CA 90001" +318020,USB-C Charging Cable,1,11.95,12/20/19 22:31,"392 2nd St, Los Angeles, CA 90001" +318021,AAA Batteries (4-pack),3,2.99,12/21/19 16:24,"304 Spruce St, San Francisco, CA 94016" +318022,Google Phone,1,600,12/31/19 13:09,"789 Spruce St, Seattle, WA 98101" +318023,AAA Batteries (4-pack),1,2.99,12/06/19 01:53,"370 9th St, Seattle, WA 98101" +318024,20in Monitor,1,109.99,12/12/19 19:52,"152 Ridge St, Austin, TX 73301" +318025,Bose SoundSport Headphones,1,99.99,12/27/19 21:43,"424 Adams St, Boston, MA 02215" +318026,LG Washing Machine,1,600.0,12/23/19 17:18,"102 Church St, San Francisco, CA 94016" +318027,AA Batteries (4-pack),4,3.84,12/17/19 20:48,"591 6th St, Seattle, WA 98101" +318028,Lightning Charging Cable,1,14.95,12/14/19 19:39,"141 River St, Seattle, WA 98101" +318029,Google Phone,1,600,12/22/19 11:21,"714 West St, Portland, ME 04101" +318030,iPhone,1,700,12/16/19 20:47,"759 9th St, Los Angeles, CA 90001" +318031,27in 4K Gaming Monitor,1,389.99,12/14/19 18:06,"460 4th St, Atlanta, GA 30301" +318032,AA Batteries (4-pack),1,3.84,12/04/19 18:40,"944 Meadow St, San Francisco, CA 94016" +318033,AA Batteries (4-pack),1,3.84,12/09/19 09:40,"156 10th St, San Francisco, CA 94016" +318034,AAA Batteries (4-pack),1,2.99,12/22/19 06:43,"963 9th St, San Francisco, CA 94016" +318035,Wired Headphones,1,11.99,12/01/19 18:01,"669 6th St, Atlanta, GA 30301" +318036,Apple Airpods Headphones,1,150,12/30/19 11:54,"237 Adams St, San Francisco, CA 94016" +318037,ThinkPad Laptop,1,999.99,12/22/19 09:13,"315 13th St, Boston, MA 02215" +318038,Vareebadd Phone,1,400,12/29/19 19:14,"26 Elm St, Seattle, WA 98101" +318039,Bose SoundSport Headphones,1,99.99,12/11/19 22:22,"716 Willow St, New York City, NY 10001" +318040,AA Batteries (4-pack),1,3.84,12/10/19 19:37,"27 River St, Portland, OR 97035" +318041,USB-C Charging Cable,1,11.95,12/10/19 19:22,"693 Wilson St, Los Angeles, CA 90001" +318042,iPhone,1,700,12/11/19 21:40,"226 Willow St, Portland, OR 97035" +318043,27in 4K Gaming Monitor,1,389.99,12/12/19 20:47,"583 10th St, Austin, TX 73301" +318044,Macbook Pro Laptop,1,1700,12/12/19 16:19,"226 Madison St, Los Angeles, CA 90001" +318045,Apple Airpods Headphones,1,150,12/11/19 08:44,"193 Park St, Boston, MA 02215" +318046,USB-C Charging Cable,1,11.95,12/07/19 21:57,"737 1st St, Seattle, WA 98101" +318047,Lightning Charging Cable,1,14.95,12/01/19 15:27,"128 Elm St, Atlanta, GA 30301" +318048,Google Phone,1,600,12/26/19 21:49,"990 7th St, Boston, MA 02215" +318049,27in FHD Monitor,1,149.99,12/10/19 00:20,"21 12th St, Los Angeles, CA 90001" +318050,AAA Batteries (4-pack),2,2.99,12/21/19 22:56,"69 Hill St, San Francisco, CA 94016" +318051,Wired Headphones,1,11.99,12/07/19 17:44,"942 Lincoln St, Los Angeles, CA 90001" +318052,Google Phone,1,600,12/19/19 02:35,"581 Hill St, Austin, TX 73301" +318052,USB-C Charging Cable,1,11.95,12/19/19 02:35,"581 Hill St, Austin, TX 73301" +318053,Lightning Charging Cable,1,14.95,12/22/19 11:52,"925 Dogwood St, San Francisco, CA 94016" +318054,AA Batteries (4-pack),2,3.84,12/08/19 18:29,"853 Lincoln St, Atlanta, GA 30301" +318055,27in 4K Gaming Monitor,1,389.99,12/19/19 00:05,"453 Lake St, San Francisco, CA 94016" +318056,USB-C Charging Cable,1,11.95,12/28/19 18:21,"105 Johnson St, Los Angeles, CA 90001" +318057,Apple Airpods Headphones,1,150,12/08/19 11:23,"771 South St, San Francisco, CA 94016" +318058,AAA Batteries (4-pack),3,2.99,12/19/19 15:26,"695 Highland St, San Francisco, CA 94016" +318059,Apple Airpods Headphones,1,150,12/16/19 17:10,"150 1st St, San Francisco, CA 94016" +318060,Lightning Charging Cable,1,14.95,12/05/19 15:48,"132 4th St, Seattle, WA 98101" +318061,Apple Airpods Headphones,1,150,12/29/19 09:16,"569 12th St, Seattle, WA 98101" +318062,AAA Batteries (4-pack),1,2.99,12/10/19 11:57,"47 Wilson St, Los Angeles, CA 90001" +318063,Bose SoundSport Headphones,1,99.99,12/15/19 11:32,"492 Meadow St, San Francisco, CA 94016" +318064,AA Batteries (4-pack),1,3.84,12/28/19 11:45,"678 South St, Los Angeles, CA 90001" +318065,Wired Headphones,1,11.99,12/22/19 00:39,"277 14th St, Los Angeles, CA 90001" +318066,USB-C Charging Cable,1,11.95,12/27/19 17:49,"799 1st St, Boston, MA 02215" +318067,USB-C Charging Cable,1,11.95,12/09/19 20:06,"871 Sunset St, Seattle, WA 98101" +318068,AA Batteries (4-pack),1,3.84,12/28/19 18:53,"141 Washington St, Dallas, TX 75001" +318069,Vareebadd Phone,1,400,12/07/19 15:19,"49 Hill St, New York City, NY 10001" +318070,Macbook Pro Laptop,1,1700,12/18/19 01:41,"710 8th St, New York City, NY 10001" +318071,Wired Headphones,1,11.99,12/25/19 00:50,"939 14th St, New York City, NY 10001" +318072,Lightning Charging Cable,1,14.95,12/14/19 15:27,"782 Jefferson St, Austin, TX 73301" +318073,AA Batteries (4-pack),1,3.84,12/21/19 16:36,"474 11th St, Seattle, WA 98101" +318074,Apple Airpods Headphones,1,150,12/15/19 05:53,"600 9th St, New York City, NY 10001" +318075,20in Monitor,1,109.99,12/08/19 17:00,"228 Main St, Dallas, TX 75001" +318076,Flatscreen TV,1,300,12/12/19 10:00,"507 Lake St, San Francisco, CA 94016" +318077,Bose SoundSport Headphones,1,99.99,12/21/19 14:09,"168 Johnson St, New York City, NY 10001" +318078,Wired Headphones,1,11.99,12/27/19 21:15,"35 Main St, Atlanta, GA 30301" +318079,iPhone,1,700,12/19/19 11:17,"501 Main St, San Francisco, CA 94016" +318080,USB-C Charging Cable,1,11.95,12/21/19 17:15,"575 Hickory St, Atlanta, GA 30301" +318081,Bose SoundSport Headphones,1,99.99,12/14/19 18:32,"607 Forest St, Seattle, WA 98101" +318082,Macbook Pro Laptop,1,1700,12/02/19 11:02,"68 West St, San Francisco, CA 94016" +318083,Wired Headphones,1,11.99,12/08/19 04:04,"202 River St, Los Angeles, CA 90001" +318084,USB-C Charging Cable,1,11.95,12/16/19 13:16,"382 South St, San Francisco, CA 94016" +318085,34in Ultrawide Monitor,1,379.99,12/24/19 13:04,"163 Madison St, San Francisco, CA 94016" +318086,Lightning Charging Cable,1,14.95,12/28/19 11:15,"682 14th St, Boston, MA 02215" +318087,AA Batteries (4-pack),1,3.84,12/10/19 12:15,"907 Forest St, New York City, NY 10001" +318088,USB-C Charging Cable,1,11.95,12/21/19 15:16,"756 1st St, San Francisco, CA 94016" +318089,AA Batteries (4-pack),1,3.84,12/20/19 19:55,"262 West St, Portland, OR 97035" +318090,AAA Batteries (4-pack),1,2.99,12/03/19 20:21,"481 Sunset St, San Francisco, CA 94016" +318091,Apple Airpods Headphones,1,150,12/07/19 09:33,"291 Wilson St, Seattle, WA 98101" +318092,USB-C Charging Cable,1,11.95,12/11/19 15:33,"447 14th St, San Francisco, CA 94016" +318093,Apple Airpods Headphones,1,150,12/31/19 19:39,"189 Pine St, San Francisco, CA 94016" +318094,AA Batteries (4-pack),1,3.84,12/31/19 16:07,"631 Adams St, Austin, TX 73301" +318095,USB-C Charging Cable,1,11.95,12/29/19 11:39,"7 Center St, San Francisco, CA 94016" +318096,AA Batteries (4-pack),1,3.84,12/08/19 23:11,"598 11th St, Dallas, TX 75001" +318097,AA Batteries (4-pack),2,3.84,12/14/19 19:33,"415 Hill St, Austin, TX 73301" +,,,,, +318098,Apple Airpods Headphones,1,150,12/09/19 10:51,"258 Jackson St, Los Angeles, CA 90001" +318099,Lightning Charging Cable,1,14.95,12/02/19 17:57,"524 Lincoln St, Dallas, TX 75001" +318100,Apple Airpods Headphones,1,150,12/05/19 19:46,"326 Wilson St, San Francisco, CA 94016" +318101,27in 4K Gaming Monitor,1,389.99,12/28/19 14:48,"687 11th St, Portland, ME 04101" +318102,Lightning Charging Cable,1,14.95,12/20/19 21:52,"934 11th St, Atlanta, GA 30301" +318103,27in FHD Monitor,1,149.99,12/03/19 10:43,"377 Main St, New York City, NY 10001" +318104,20in Monitor,1,109.99,12/08/19 22:44,"888 Park St, Portland, OR 97035" +318105,Apple Airpods Headphones,1,150,12/26/19 17:03,"294 Cherry St, New York City, NY 10001" +318106,AA Batteries (4-pack),1,3.84,12/28/19 13:30,"106 Ridge St, Los Angeles, CA 90001" +318107,27in FHD Monitor,1,149.99,12/03/19 18:45,"947 Maple St, San Francisco, CA 94016" +318108,Bose SoundSport Headphones,1,99.99,12/09/19 23:23,"105 Maple St, Atlanta, GA 30301" +318109,USB-C Charging Cable,1,11.95,12/13/19 18:59,"892 9th St, Dallas, TX 75001" +318110,Wired Headphones,1,11.99,12/07/19 10:27,"347 Chestnut St, San Francisco, CA 94016" +318111,27in FHD Monitor,1,149.99,12/12/19 13:56,"905 Elm St, Portland, ME 04101" +318112,ThinkPad Laptop,1,999.99,12/07/19 17:16,"632 Elm St, Los Angeles, CA 90001" +318113,Lightning Charging Cable,1,14.95,12/16/19 11:54,"853 Hickory St, New York City, NY 10001" +318114,Bose SoundSport Headphones,1,99.99,12/26/19 15:08,"38 Madison St, San Francisco, CA 94016" +318115,Lightning Charging Cable,1,14.95,12/18/19 20:14,"751 7th St, Austin, TX 73301" +318116,AAA Batteries (4-pack),1,2.99,12/11/19 09:59,"463 Highland St, Atlanta, GA 30301" +318117,20in Monitor,1,109.99,12/28/19 09:58,"548 Willow St, Los Angeles, CA 90001" +318118,Wired Headphones,1,11.99,12/07/19 12:39,"382 Jefferson St, San Francisco, CA 94016" +318119,20in Monitor,1,109.99,12/02/19 23:52,"189 Walnut St, San Francisco, CA 94016" +318120,Lightning Charging Cable,1,14.95,12/14/19 08:31,"485 Maple St, San Francisco, CA 94016" +318121,AAA Batteries (4-pack),1,2.99,12/18/19 15:52,"641 Dogwood St, Austin, TX 73301" +318122,Lightning Charging Cable,1,14.95,12/13/19 02:33,"171 6th St, Dallas, TX 75001" +318123,iPhone,1,700,12/22/19 23:01,"487 14th St, Los Angeles, CA 90001" +318124,Lightning Charging Cable,1,14.95,12/11/19 23:09,"52 10th St, Austin, TX 73301" +318125,AA Batteries (4-pack),2,3.84,12/11/19 11:39,"750 Meadow St, Boston, MA 02215" +318126,USB-C Charging Cable,1,11.95,12/24/19 09:42,"163 Hill St, San Francisco, CA 94016" +318127,Lightning Charging Cable,1,14.95,12/03/19 14:12,"104 Dogwood St, Dallas, TX 75001" +318128,27in FHD Monitor,1,149.99,12/26/19 16:07,"222 Hill St, San Francisco, CA 94016" +318129,AA Batteries (4-pack),1,3.84,12/11/19 15:19,"225 Hill St, Los Angeles, CA 90001" +318130,Wired Headphones,1,11.99,12/01/19 14:00,"256 Church St, Seattle, WA 98101" +318131,USB-C Charging Cable,1,11.95,12/04/19 12:30,"470 Church St, Atlanta, GA 30301" +318132,Lightning Charging Cable,1,14.95,12/25/19 10:27,"495 Highland St, San Francisco, CA 94016" +318133,Apple Airpods Headphones,1,150,12/26/19 12:41,"185 Hickory St, Los Angeles, CA 90001" +318134,Flatscreen TV,1,300,12/08/19 11:16,"765 9th St, San Francisco, CA 94016" +318135,Wired Headphones,1,11.99,12/16/19 11:48,"744 4th St, New York City, NY 10001" +318136,AAA Batteries (4-pack),1,2.99,12/31/19 05:22,"634 Park St, San Francisco, CA 94016" +318137,USB-C Charging Cable,1,11.95,12/25/19 20:47,"909 14th St, San Francisco, CA 94016" +318138,USB-C Charging Cable,1,11.95,12/29/19 17:33,"949 Adams St, Boston, MA 02215" +318139,Lightning Charging Cable,1,14.95,12/03/19 16:27,"125 Lake St, Los Angeles, CA 90001" +318140,AA Batteries (4-pack),1,3.84,12/26/19 20:11,"456 North St, New York City, NY 10001" +318141,Flatscreen TV,1,300,12/04/19 07:20,"372 Maple St, Seattle, WA 98101" +318142,AAA Batteries (4-pack),2,2.99,12/22/19 12:07,"888 Jackson St, Los Angeles, CA 90001" +318143,Apple Airpods Headphones,1,150,12/31/19 18:07,"816 South St, San Francisco, CA 94016" +318144,Macbook Pro Laptop,1,1700,12/11/19 20:02,"126 8th St, Atlanta, GA 30301" +318145,Wired Headphones,1,11.99,12/23/19 15:10,"127 Lake St, Los Angeles, CA 90001" +318146,Wired Headphones,1,11.99,12/13/19 19:00,"82 8th St, Atlanta, GA 30301" +318147,LG Dryer,1,600.0,12/21/19 17:05,"635 Church St, Los Angeles, CA 90001" +318148,AA Batteries (4-pack),1,3.84,12/06/19 13:27,"622 Church St, Los Angeles, CA 90001" +318149,Lightning Charging Cable,1,14.95,12/09/19 11:43,"237 Wilson St, Boston, MA 02215" +318150,AA Batteries (4-pack),1,3.84,12/18/19 13:08,"100 Highland St, Boston, MA 02215" +318151,27in FHD Monitor,1,149.99,12/31/19 15:40,"763 Sunset St, Seattle, WA 98101" +318152,Lightning Charging Cable,1,14.95,12/29/19 07:18,"546 Spruce St, San Francisco, CA 94016" +318153,Lightning Charging Cable,1,14.95,12/22/19 13:26,"205 Dogwood St, Austin, TX 73301" +318154,20in Monitor,1,109.99,12/30/19 20:44,"644 Willow St, Los Angeles, CA 90001" +318155,Lightning Charging Cable,1,14.95,12/05/19 11:14,"594 14th St, New York City, NY 10001" +318156,Wired Headphones,1,11.99,12/16/19 22:04,"553 Madison St, Atlanta, GA 30301" +318157,AA Batteries (4-pack),1,3.84,12/09/19 09:04,"615 South St, New York City, NY 10001" +318158,Lightning Charging Cable,1,14.95,12/21/19 20:30,"943 12th St, Portland, OR 97035" +318159,AAA Batteries (4-pack),1,2.99,12/26/19 19:42,"781 Chestnut St, Atlanta, GA 30301" +318160,iPhone,1,700,12/12/19 17:16,"343 1st St, Los Angeles, CA 90001" +318160,Apple Airpods Headphones,1,150,12/12/19 17:16,"343 1st St, Los Angeles, CA 90001" +318161,27in FHD Monitor,1,149.99,12/12/19 07:47,"3 8th St, Los Angeles, CA 90001" +318162,27in 4K Gaming Monitor,1,389.99,12/06/19 01:11,"85 Main St, Seattle, WA 98101" +318163,Wired Headphones,1,11.99,12/23/19 18:50,"1 Church St, Austin, TX 73301" +318164,27in 4K Gaming Monitor,1,389.99,12/04/19 08:02,"612 6th St, New York City, NY 10001" +318165,27in 4K Gaming Monitor,1,389.99,12/08/19 15:53,"169 5th St, New York City, NY 10001" +318166,Apple Airpods Headphones,1,150,12/27/19 01:25,"669 4th St, New York City, NY 10001" +318167,34in Ultrawide Monitor,1,379.99,12/30/19 18:13,"946 Jefferson St, Atlanta, GA 30301" +318168,Bose SoundSport Headphones,1,99.99,12/06/19 08:47,"408 Pine St, Seattle, WA 98101" +318169,Vareebadd Phone,1,400,12/24/19 20:33,"240 5th St, Los Angeles, CA 90001" +318170,Google Phone,1,600,12/06/19 15:28,"439 Church St, Atlanta, GA 30301" +318170,USB-C Charging Cable,1,11.95,12/06/19 15:28,"439 Church St, Atlanta, GA 30301" +318171,AA Batteries (4-pack),1,3.84,12/30/19 01:40,"312 Hickory St, Los Angeles, CA 90001" +318172,USB-C Charging Cable,1,11.95,12/15/19 21:06,"338 Ridge St, San Francisco, CA 94016" +318173,Wired Headphones,1,11.99,12/02/19 10:53,"733 Lakeview St, Boston, MA 02215" +318174,AAA Batteries (4-pack),1,2.99,12/02/19 12:52,"632 6th St, Austin, TX 73301" +318175,Bose SoundSport Headphones,1,99.99,12/08/19 12:37,"499 6th St, Dallas, TX 75001" +318176,ThinkPad Laptop,1,999.99,12/13/19 22:46,"347 River St, Boston, MA 02215" +318177,Flatscreen TV,1,300,12/26/19 08:40,"339 9th St, San Francisco, CA 94016" +318178,Google Phone,1,600,12/19/19 09:51,"532 4th St, San Francisco, CA 94016" +318178,Wired Headphones,2,11.99,12/19/19 09:51,"532 4th St, San Francisco, CA 94016" +318179,Wired Headphones,1,11.99,12/30/19 11:29,"602 West St, Austin, TX 73301" +318180,AAA Batteries (4-pack),1,2.99,12/28/19 17:52,"196 Spruce St, Boston, MA 02215" +318181,USB-C Charging Cable,1,11.95,12/10/19 18:06,"579 Adams St, Boston, MA 02215" +318182,Wired Headphones,1,11.99,12/16/19 18:22,"578 Highland St, New York City, NY 10001" +318183,Wired Headphones,1,11.99,12/08/19 15:44,"29 Jefferson St, San Francisco, CA 94016" +318184,Flatscreen TV,1,300,12/13/19 20:52,"984 2nd St, Boston, MA 02215" +318185,27in 4K Gaming Monitor,1,389.99,12/05/19 09:33,"626 Chestnut St, New York City, NY 10001" +318186,AAA Batteries (4-pack),1,2.99,12/04/19 14:14,"387 Madison St, Boston, MA 02215" +318187,Lightning Charging Cable,1,14.95,12/27/19 21:04,"925 10th St, Seattle, WA 98101" +318188,AA Batteries (4-pack),1,3.84,12/29/19 21:30,"352 South St, Atlanta, GA 30301" +318189,Apple Airpods Headphones,1,150,12/10/19 14:00,"585 Elm St, Portland, OR 97035" +318190,Apple Airpods Headphones,1,150,12/03/19 07:22,"495 Lake St, Seattle, WA 98101" +318191,ThinkPad Laptop,1,999.99,12/24/19 10:55,"872 11th St, Boston, MA 02215" +318192,AAA Batteries (4-pack),1,2.99,12/04/19 21:15,"446 Sunset St, Los Angeles, CA 90001" +318193,Lightning Charging Cable,1,14.95,12/21/19 10:42,"256 Wilson St, Seattle, WA 98101" +318194,AA Batteries (4-pack),2,3.84,12/21/19 13:38,"250 1st St, Boston, MA 02215" +318195,Macbook Pro Laptop,1,1700,12/20/19 12:15,"698 West St, Portland, ME 04101" +318196,Bose SoundSport Headphones,1,99.99,12/23/19 16:01,"259 13th St, Austin, TX 73301" +318197,iPhone,1,700,12/18/19 09:15,"495 Pine St, Atlanta, GA 30301" +318197,Lightning Charging Cable,1,14.95,12/18/19 09:15,"495 Pine St, Atlanta, GA 30301" +318198,Flatscreen TV,1,300,12/12/19 13:53,"257 River St, New York City, NY 10001" +318199,34in Ultrawide Monitor,1,379.99,12/19/19 23:33,"249 West St, Seattle, WA 98101" +318200,AAA Batteries (4-pack),1,2.99,12/11/19 19:40,"953 Highland St, Dallas, TX 75001" +318201,AAA Batteries (4-pack),2,2.99,12/15/19 18:04,"173 Hill St, New York City, NY 10001" +318202,Bose SoundSport Headphones,1,99.99,12/18/19 20:33,"131 Park St, Austin, TX 73301" +318203,AA Batteries (4-pack),2,3.84,12/27/19 21:34,"187 Cherry St, San Francisco, CA 94016" +318204,AA Batteries (4-pack),2,3.84,12/29/19 20:04,"764 Meadow St, Boston, MA 02215" +318205,Lightning Charging Cable,1,14.95,12/18/19 11:55,"625 5th St, Los Angeles, CA 90001" +318206,27in FHD Monitor,1,149.99,12/12/19 18:52,"280 Hill St, Portland, OR 97035" +318207,Macbook Pro Laptop,1,1700,12/28/19 12:17,"831 Lincoln St, New York City, NY 10001" +318208,Google Phone,1,600,12/21/19 20:53,"272 9th St, Atlanta, GA 30301" +318209,LG Washing Machine,1,600.0,12/09/19 09:06,"231 Ridge St, New York City, NY 10001" +318210,20in Monitor,1,109.99,12/01/19 11:27,"721 14th St, Dallas, TX 75001" +318211,AA Batteries (4-pack),1,3.84,12/04/19 12:21,"355 Willow St, San Francisco, CA 94016" +318212,AAA Batteries (4-pack),2,2.99,12/18/19 16:45,"174 14th St, Portland, OR 97035" +318213,Lightning Charging Cable,1,14.95,12/20/19 19:18,"504 8th St, San Francisco, CA 94016" +318214,AAA Batteries (4-pack),1,2.99,12/21/19 10:22,"367 14th St, Dallas, TX 75001" +318215,Apple Airpods Headphones,1,150,12/27/19 19:03,"256 Dogwood St, New York City, NY 10001" +318216,AA Batteries (4-pack),1,3.84,12/19/19 00:04,"598 Willow St, New York City, NY 10001" +318217,34in Ultrawide Monitor,1,379.99,12/28/19 22:58,"371 Willow St, Portland, OR 97035" +318218,AAA Batteries (4-pack),2,2.99,12/31/19 12:11,"820 Jackson St, Los Angeles, CA 90001" +318219,Bose SoundSport Headphones,1,99.99,12/22/19 15:37,"564 Pine St, Atlanta, GA 30301" +318220,Lightning Charging Cable,1,14.95,12/02/19 14:18,"406 Elm St, San Francisco, CA 94016" +318221,AAA Batteries (4-pack),1,2.99,12/31/19 21:59,"211 Sunset St, Boston, MA 02215" +318222,Google Phone,1,600,12/14/19 13:58,"55 1st St, San Francisco, CA 94016" +318223,27in FHD Monitor,1,149.99,12/23/19 11:20,"867 Highland St, Austin, TX 73301" +318224,ThinkPad Laptop,1,999.99,12/24/19 17:35,"565 4th St, New York City, NY 10001" +318225,27in 4K Gaming Monitor,1,389.99,12/16/19 22:01,"9 Maple St, Boston, MA 02215" +318226,Flatscreen TV,1,300,12/23/19 18:42,"272 8th St, Boston, MA 02215" +318227,20in Monitor,1,109.99,12/29/19 11:39,"189 Forest St, Boston, MA 02215" +318228,AA Batteries (4-pack),1,3.84,12/07/19 07:52,"749 North St, Los Angeles, CA 90001" +318229,Lightning Charging Cable,1,14.95,12/01/19 13:54,"52 Forest St, San Francisco, CA 94016" +318230,Lightning Charging Cable,1,14.95,12/03/19 13:29,"3 12th St, Seattle, WA 98101" +318231,Bose SoundSport Headphones,1,99.99,12/29/19 12:58,"50 Washington St, Austin, TX 73301" +318232,Wired Headphones,1,11.99,12/11/19 11:46,"691 Jackson St, Los Angeles, CA 90001" +318233,Bose SoundSport Headphones,1,99.99,12/25/19 12:48,"878 Highland St, Los Angeles, CA 90001" +318234,USB-C Charging Cable,1,11.95,12/28/19 10:32,"652 Elm St, Portland, ME 04101" +318235,34in Ultrawide Monitor,1,379.99,12/17/19 16:16,"30 13th St, Boston, MA 02215" +318236,AA Batteries (4-pack),2,3.84,12/21/19 13:04,"697 South St, San Francisco, CA 94016" +318237,AA Batteries (4-pack),1,3.84,12/28/19 14:49,"381 Jackson St, San Francisco, CA 94016" +318238,Lightning Charging Cable,1,14.95,12/23/19 21:52,"103 Chestnut St, Austin, TX 73301" +318239,USB-C Charging Cable,1,11.95,12/03/19 19:38,"650 Washington St, Los Angeles, CA 90001" +318240,Wired Headphones,1,11.99,12/16/19 15:14,"475 12th St, San Francisco, CA 94016" +318241,27in FHD Monitor,1,149.99,12/31/19 16:37,"3 Church St, Los Angeles, CA 90001" +318242,Wired Headphones,1,11.99,12/22/19 11:58,"928 Adams St, Los Angeles, CA 90001" +318243,Lightning Charging Cable,1,14.95,12/04/19 14:22,"98 Elm St, Los Angeles, CA 90001" +318244,USB-C Charging Cable,2,11.95,12/07/19 19:23,"488 10th St, Los Angeles, CA 90001" +318245,ThinkPad Laptop,1,999.99,12/02/19 10:51,"141 Church St, Atlanta, GA 30301" +318246,AA Batteries (4-pack),1,3.84,12/28/19 12:14,"100 North St, Austin, TX 73301" +318247,AAA Batteries (4-pack),1,2.99,12/07/19 16:13,"348 Washington St, Seattle, WA 98101" +318248,Lightning Charging Cable,1,14.95,12/28/19 11:24,"865 9th St, Seattle, WA 98101" +318249,USB-C Charging Cable,1,11.95,12/20/19 23:21,"216 Main St, San Francisco, CA 94016" +318250,ThinkPad Laptop,1,999.99,12/27/19 01:05,"771 9th St, New York City, NY 10001" +318251,Wired Headphones,1,11.99,12/16/19 23:10,"148 River St, San Francisco, CA 94016" +318252,AAA Batteries (4-pack),1,2.99,12/30/19 23:30,"810 6th St, Atlanta, GA 30301" +318253,Flatscreen TV,1,300,12/08/19 21:00,"70 Hill St, Dallas, TX 75001" +318254,USB-C Charging Cable,1,11.95,12/07/19 08:27,"236 Hickory St, Boston, MA 02215" +318255,LG Dryer,1,600.0,12/17/19 11:35,"13 Hill St, Los Angeles, CA 90001" +318256,Bose SoundSport Headphones,1,99.99,12/22/19 05:28,"333 Elm St, Los Angeles, CA 90001" +318257,Bose SoundSport Headphones,1,99.99,12/31/19 12:32,"341 Hill St, San Francisco, CA 94016" +318258,AAA Batteries (4-pack),2,2.99,12/23/19 22:11,"804 Johnson St, San Francisco, CA 94016" +318259,Lightning Charging Cable,1,14.95,12/24/19 23:03,"510 8th St, New York City, NY 10001" +318260,AA Batteries (4-pack),1,3.84,12/21/19 14:41,"868 Center St, Los Angeles, CA 90001" +318261,Wired Headphones,1,11.99,12/03/19 22:51,"540 Madison St, Austin, TX 73301" +318262,Lightning Charging Cable,1,14.95,12/14/19 20:09,"75 9th St, Los Angeles, CA 90001" +318263,USB-C Charging Cable,1,11.95,12/30/19 19:25,"444 Highland St, Atlanta, GA 30301" +318264,Wired Headphones,1,11.99,12/04/19 23:15,"165 12th St, San Francisco, CA 94016" +318265,27in 4K Gaming Monitor,1,389.99,12/28/19 14:09,"725 Meadow St, Boston, MA 02215" +318266,Wired Headphones,1,11.99,12/30/19 10:26,"57 Ridge St, New York City, NY 10001" +318267,Bose SoundSport Headphones,1,99.99,12/12/19 13:52,"186 Cherry St, Dallas, TX 75001" +318268,iPhone,1,700,12/14/19 12:33,"389 Ridge St, Portland, OR 97035" +318268,Lightning Charging Cable,1,14.95,12/14/19 12:33,"389 Ridge St, Portland, OR 97035" +318269,Wired Headphones,1,11.99,12/21/19 13:01,"592 Lincoln St, San Francisco, CA 94016" +318270,Apple Airpods Headphones,1,150,12/02/19 19:15,"918 Lincoln St, San Francisco, CA 94016" +318271,Lightning Charging Cable,1,14.95,12/30/19 10:46,"126 4th St, Dallas, TX 75001" +318272,USB-C Charging Cable,1,11.95,12/03/19 13:03,"368 13th St, Dallas, TX 75001" +318273,AA Batteries (4-pack),2,3.84,12/16/19 21:21,"796 Jackson St, San Francisco, CA 94016" +318274,Apple Airpods Headphones,1,150,12/07/19 09:53,"944 West St, San Francisco, CA 94016" +318275,iPhone,1,700,12/26/19 15:02,"976 Chestnut St, Atlanta, GA 30301" +318276,USB-C Charging Cable,1,11.95,12/09/19 14:21,"69 Sunset St, Portland, OR 97035" +318277,Lightning Charging Cable,1,14.95,12/02/19 21:31,"494 Hickory St, Seattle, WA 98101" +318278,Bose SoundSport Headphones,1,99.99,12/30/19 19:52,"478 Cherry St, San Francisco, CA 94016" +318279,AA Batteries (4-pack),1,3.84,12/11/19 21:35,"764 8th St, Austin, TX 73301" +318280,Apple Airpods Headphones,1,150,12/10/19 19:40,"754 5th St, Los Angeles, CA 90001" +318281,27in 4K Gaming Monitor,1,389.99,12/01/19 08:49,"162 River St, Boston, MA 02215" +318282,27in 4K Gaming Monitor,1,389.99,12/28/19 20:55,"108 Forest St, San Francisco, CA 94016" +318283,Lightning Charging Cable,1,14.95,12/22/19 14:52,"228 River St, San Francisco, CA 94016" +318284,Apple Airpods Headphones,1,150,12/13/19 19:02,"939 Adams St, San Francisco, CA 94016" +318285,AAA Batteries (4-pack),1,2.99,12/11/19 23:36,"409 Highland St, Boston, MA 02215" +318286,AA Batteries (4-pack),1,3.84,12/25/19 12:51,"300 12th St, Dallas, TX 75001" +318287,USB-C Charging Cable,3,11.95,12/15/19 08:42,"899 Spruce St, Los Angeles, CA 90001" +318288,USB-C Charging Cable,1,11.95,12/24/19 19:30,"411 13th St, San Francisco, CA 94016" +318289,USB-C Charging Cable,1,11.95,12/30/19 10:44,"194 6th St, Dallas, TX 75001" +318290,Apple Airpods Headphones,1,150,12/13/19 07:20,"194 Ridge St, New York City, NY 10001" +318291,Google Phone,1,600,12/28/19 10:57,"240 Dogwood St, Dallas, TX 75001" +318292,USB-C Charging Cable,1,11.95,12/06/19 23:50,"954 Willow St, New York City, NY 10001" +318293,Macbook Pro Laptop,1,1700,12/14/19 21:02,"846 River St, Seattle, WA 98101" +318294,AA Batteries (4-pack),2,3.84,12/24/19 11:07,"788 Main St, Los Angeles, CA 90001" +318295,Apple Airpods Headphones,1,150,12/17/19 15:58,"591 Madison St, Atlanta, GA 30301" +318296,Apple Airpods Headphones,1,150,12/12/19 22:50,"105 Spruce St, San Francisco, CA 94016" +318297,iPhone,1,700,12/11/19 14:32,"27 Johnson St, Seattle, WA 98101" +318297,Lightning Charging Cable,1,14.95,12/11/19 14:32,"27 Johnson St, Seattle, WA 98101" +318298,iPhone,1,700,12/09/19 14:50,"72 6th St, San Francisco, CA 94016" +318298,Lightning Charging Cable,1,14.95,12/09/19 14:50,"72 6th St, San Francisco, CA 94016" +318299,34in Ultrawide Monitor,1,379.99,12/17/19 13:19,"740 Church St, Portland, ME 04101" +318300,Bose SoundSport Headphones,1,99.99,12/19/19 22:27,"999 Center St, Los Angeles, CA 90001" +318301,Apple Airpods Headphones,1,150,12/24/19 15:04,"923 Hickory St, New York City, NY 10001" +318302,AA Batteries (4-pack),1,3.84,12/13/19 06:13,"63 Lincoln St, Los Angeles, CA 90001" +318303,Lightning Charging Cable,1,14.95,12/17/19 22:25,"236 14th St, New York City, NY 10001" +318304,Wired Headphones,1,11.99,12/05/19 09:48,"545 West St, San Francisco, CA 94016" +318305,Wired Headphones,1,11.99,12/13/19 12:08,"748 Cherry St, New York City, NY 10001" +318306,Lightning Charging Cable,1,14.95,12/05/19 20:22,"112 8th St, Boston, MA 02215" +318307,AA Batteries (4-pack),1,3.84,12/03/19 22:03,"26 Main St, Boston, MA 02215" +318308,AA Batteries (4-pack),1,3.84,12/18/19 10:05,"859 6th St, Austin, TX 73301" +318309,Lightning Charging Cable,1,14.95,12/25/19 15:01,"554 Washington St, Seattle, WA 98101" +318310,USB-C Charging Cable,1,11.95,12/26/19 12:49,"574 Hickory St, San Francisco, CA 94016" +318311,AAA Batteries (4-pack),1,2.99,12/04/19 23:04,"98 12th St, Los Angeles, CA 90001" +318312,AA Batteries (4-pack),1,3.84,12/01/19 23:53,"627 Cedar St, New York City, NY 10001" +318313,AAA Batteries (4-pack),1,2.99,12/29/19 15:19,"142 North St, Los Angeles, CA 90001" +318314,AAA Batteries (4-pack),2,2.99,12/30/19 13:08,"724 Willow St, New York City, NY 10001" +318315,iPhone,1,700,12/03/19 20:25,"89 Main St, San Francisco, CA 94016" +318316,Bose SoundSport Headphones,1,99.99,12/31/19 00:19,"580 Center St, Seattle, WA 98101" +318317,iPhone,1,700,12/05/19 12:21,"594 Spruce St, Atlanta, GA 30301" +318318,Google Phone,1,600,12/25/19 17:17,"251 13th St, San Francisco, CA 94016" +318319,20in Monitor,1,109.99,12/16/19 22:04,"313 9th St, San Francisco, CA 94016" +318320,Apple Airpods Headphones,1,150,12/31/19 17:50,"584 7th St, New York City, NY 10001" +318321,USB-C Charging Cable,1,11.95,12/11/19 20:28,"107 Lakeview St, Los Angeles, CA 90001" +318322,Wired Headphones,1,11.99,12/22/19 15:25,"841 Maple St, Los Angeles, CA 90001" +318323,iPhone,1,700,12/05/19 22:34,"47 Lincoln St, San Francisco, CA 94016" +318324,AAA Batteries (4-pack),2,2.99,12/13/19 03:31,"55 Highland St, Austin, TX 73301" +318325,Lightning Charging Cable,1,14.95,12/17/19 19:36,"215 14th St, Atlanta, GA 30301" +318326,Lightning Charging Cable,1,14.95,12/20/19 01:12,"19 Jefferson St, Los Angeles, CA 90001" +318327,USB-C Charging Cable,1,11.95,12/08/19 21:59,"997 Pine St, New York City, NY 10001" +318328,Lightning Charging Cable,1,14.95,12/10/19 22:05,"686 Washington St, San Francisco, CA 94016" +318329,20in Monitor,1,109.99,12/22/19 12:29,"769 5th St, San Francisco, CA 94016" +318330,AA Batteries (4-pack),2,3.84,12/04/19 16:46,"483 Church St, San Francisco, CA 94016" +318331,USB-C Charging Cable,1,11.95,12/23/19 22:29,"828 Meadow St, Dallas, TX 75001" +318332,Google Phone,1,600,12/08/19 16:29,"560 Wilson St, Atlanta, GA 30301" +318333,AAA Batteries (4-pack),1,2.99,12/24/19 11:51,"648 Walnut St, Los Angeles, CA 90001" +318334,Bose SoundSport Headphones,1,99.99,12/07/19 23:38,"465 12th St, Seattle, WA 98101" +318335,Lightning Charging Cable,2,14.95,12/11/19 10:39,"341 7th St, Atlanta, GA 30301" +318336,iPhone,1,700,12/16/19 12:02,"107 North St, San Francisco, CA 94016" +318336,Wired Headphones,3,11.99,12/16/19 12:02,"107 North St, San Francisco, CA 94016" +318337,Lightning Charging Cable,1,14.95,12/31/19 13:51,"666 Sunset St, New York City, NY 10001" +318338,AAA Batteries (4-pack),1,2.99,12/31/19 09:00,"534 Lakeview St, Atlanta, GA 30301" +318339,Vareebadd Phone,1,400,12/26/19 10:46,"377 12th St, Atlanta, GA 30301" +318340,AA Batteries (4-pack),1,3.84,12/18/19 09:57,"99 Ridge St, Boston, MA 02215" +318341,Lightning Charging Cable,1,14.95,12/26/19 21:40,"990 Center St, New York City, NY 10001" +318342,ThinkPad Laptop,1,999.99,12/01/19 16:00,"282 Main St, Austin, TX 73301" +318343,Lightning Charging Cable,2,14.95,12/24/19 20:50,"973 Main St, Portland, OR 97035" +318344,27in 4K Gaming Monitor,1,389.99,12/04/19 11:06,"34 Lake St, Dallas, TX 75001" +318345,Wired Headphones,1,11.99,12/13/19 13:49,"383 Lake St, Los Angeles, CA 90001" +318346,34in Ultrawide Monitor,1,379.99,12/16/19 22:18,"775 Forest St, Atlanta, GA 30301" +318347,iPhone,1,700,12/16/19 20:57,"504 12th St, Boston, MA 02215" +318348,Wired Headphones,1,11.99,12/07/19 21:21,"46 8th St, New York City, NY 10001" +318349,Bose SoundSport Headphones,1,99.99,12/25/19 08:58,"336 Ridge St, New York City, NY 10001" +318350,Lightning Charging Cable,1,14.95,12/13/19 12:15,"706 Wilson St, Dallas, TX 75001" +318351,Wired Headphones,1,11.99,12/03/19 17:50,"720 12th St, Boston, MA 02215" +318352,USB-C Charging Cable,1,11.95,12/19/19 12:15,"683 Willow St, Boston, MA 02215" +318353,AAA Batteries (4-pack),3,2.99,12/21/19 13:07,"121 Forest St, Atlanta, GA 30301" +318354,Bose SoundSport Headphones,1,99.99,12/21/19 22:01,"346 5th St, Los Angeles, CA 90001" +318355,ThinkPad Laptop,1,999.99,12/28/19 11:01,"101 Washington St, Portland, OR 97035" +318356,AAA Batteries (4-pack),2,2.99,12/03/19 12:57,"401 Highland St, Dallas, TX 75001" +318357,Wired Headphones,1,11.99,12/13/19 09:15,"868 Sunset St, Portland, OR 97035" +318358,AA Batteries (4-pack),2,3.84,12/14/19 09:40,"142 Dogwood St, Atlanta, GA 30301" +318359,27in 4K Gaming Monitor,1,389.99,12/22/19 17:21,"382 Pine St, San Francisco, CA 94016" +318360,Lightning Charging Cable,1,14.95,12/04/19 08:18,"323 Hill St, Austin, TX 73301" +318361,27in 4K Gaming Monitor,1,389.99,12/06/19 15:51,"451 Sunset St, New York City, NY 10001" +318362,iPhone,1,700,12/14/19 12:56,"81 Cherry St, Dallas, TX 75001" +318363,Bose SoundSport Headphones,1,99.99,12/08/19 13:31,"196 Chestnut St, Los Angeles, CA 90001" +318364,Wired Headphones,1,11.99,12/12/19 07:58,"139 9th St, Dallas, TX 75001" +318365,USB-C Charging Cable,1,11.95,12/29/19 09:43,"249 Adams St, Seattle, WA 98101" +318366,Lightning Charging Cable,1,14.95,12/13/19 01:33,"405 Chestnut St, San Francisco, CA 94016" +318367,AAA Batteries (4-pack),1,2.99,12/16/19 18:36,"301 13th St, Boston, MA 02215" +318368,27in FHD Monitor,1,149.99,12/02/19 10:12,"66 2nd St, New York City, NY 10001" +318369,Wired Headphones,1,11.99,12/17/19 13:47,"985 Wilson St, Boston, MA 02215" +318370,Lightning Charging Cable,1,14.95,12/15/19 14:38,"167 Wilson St, Boston, MA 02215" +318371,Google Phone,1,600,12/20/19 14:09,"863 Dogwood St, Los Angeles, CA 90001" +318372,20in Monitor,1,109.99,12/23/19 03:20,"769 5th St, San Francisco, CA 94016" +318373,iPhone,1,700,12/28/19 22:43,"289 Wilson St, Dallas, TX 75001" +318373,Wired Headphones,1,11.99,12/28/19 22:43,"289 Wilson St, Dallas, TX 75001" +318374,Bose SoundSport Headphones,1,99.99,12/10/19 06:36,"621 West St, San Francisco, CA 94016" +318375,USB-C Charging Cable,2,11.95,12/13/19 14:19,"275 West St, New York City, NY 10001" +318376,AAA Batteries (4-pack),1,2.99,12/15/19 12:17,"60 5th St, New York City, NY 10001" +318377,Google Phone,1,600,12/20/19 10:52,"709 Hill St, Los Angeles, CA 90001" +318378,Wired Headphones,2,11.99,12/02/19 08:56,"879 Adams St, Portland, OR 97035" +318379,Apple Airpods Headphones,1,150,12/03/19 08:29,"963 10th St, Boston, MA 02215" +318380,20in Monitor,2,109.99,12/08/19 18:21,"584 Madison St, New York City, NY 10001" +318381,Macbook Pro Laptop,1,1700,01/01/20 01:43,"64 Park St, San Francisco, CA 94016" +318382,20in Monitor,1,109.99,12/03/19 11:32,"707 9th St, Los Angeles, CA 90001" +318383,AAA Batteries (4-pack),1,2.99,12/25/19 22:09,"437 4th St, Atlanta, GA 30301" +318384,Lightning Charging Cable,1,14.95,12/31/19 11:27,"105 Main St, New York City, NY 10001" +318385,Wired Headphones,1,11.99,12/19/19 20:26,"180 13th St, Los Angeles, CA 90001" +318386,AA Batteries (4-pack),1,3.84,12/20/19 13:25,"75 Lake St, New York City, NY 10001" +318387,Lightning Charging Cable,1,14.95,12/18/19 15:43,"518 5th St, Boston, MA 02215" +318388,Lightning Charging Cable,1,14.95,12/08/19 18:19,"7 South St, Atlanta, GA 30301" +318389,Apple Airpods Headphones,1,150,12/26/19 20:13,"475 Forest St, Los Angeles, CA 90001" +318390,AAA Batteries (4-pack),1,2.99,12/02/19 20:09,"372 Madison St, Los Angeles, CA 90001" +318391,AAA Batteries (4-pack),1,2.99,12/20/19 14:48,"422 Elm St, Los Angeles, CA 90001" +318392,Bose SoundSport Headphones,1,99.99,12/02/19 13:18,"729 Cherry St, Los Angeles, CA 90001" +318393,Wired Headphones,1,11.99,12/13/19 16:23,"279 West St, Portland, OR 97035" +318394,Bose SoundSport Headphones,1,99.99,12/05/19 18:56,"512 14th St, Atlanta, GA 30301" +318395,Lightning Charging Cable,1,14.95,12/06/19 20:04,"997 Meadow St, New York City, NY 10001" +318396,Wired Headphones,1,11.99,12/15/19 14:40,"826 Lake St, Los Angeles, CA 90001" +318397,Bose SoundSport Headphones,1,99.99,12/09/19 09:11,"285 Madison St, Los Angeles, CA 90001" +318398,Wired Headphones,1,11.99,12/16/19 17:06,"531 Jefferson St, San Francisco, CA 94016" +318399,USB-C Charging Cable,2,11.95,12/02/19 17:29,"33 Jefferson St, Los Angeles, CA 90001" +318400,Wired Headphones,1,11.99,12/18/19 19:12,"117 Hill St, Seattle, WA 98101" +318401,AA Batteries (4-pack),1,3.84,12/09/19 13:33,"303 8th St, Portland, OR 97035" +318402,AA Batteries (4-pack),1,3.84,12/18/19 08:54,"668 Jefferson St, San Francisco, CA 94016" +318403,Google Phone,1,600,12/06/19 20:08,"575 Walnut St, New York City, NY 10001" +318403,Wired Headphones,1,11.99,12/06/19 20:08,"575 Walnut St, New York City, NY 10001" +318404,AA Batteries (4-pack),1,3.84,12/31/19 19:33,"219 Lincoln St, Seattle, WA 98101" +318405,27in FHD Monitor,1,149.99,12/29/19 11:17,"17 Maple St, Seattle, WA 98101" +318406,Lightning Charging Cable,1,14.95,12/27/19 09:00,"850 Park St, San Francisco, CA 94016" +318407,AAA Batteries (4-pack),2,2.99,12/03/19 17:37,"625 Pine St, Dallas, TX 75001" +318408,27in 4K Gaming Monitor,1,389.99,12/18/19 11:54,"780 14th St, Los Angeles, CA 90001" +318409,USB-C Charging Cable,1,11.95,12/07/19 13:12,"72 12th St, Atlanta, GA 30301" +318410,AA Batteries (4-pack),1,3.84,12/04/19 10:45,"552 Washington St, Portland, ME 04101" +318411,AA Batteries (4-pack),1,3.84,12/06/19 17:31,"350 8th St, Austin, TX 73301" +318412,AA Batteries (4-pack),1,3.84,12/14/19 09:49,"220 River St, Atlanta, GA 30301" +318413,AAA Batteries (4-pack),1,2.99,12/25/19 08:16,"517 1st St, New York City, NY 10001" +318414,Bose SoundSport Headphones,2,99.99,12/18/19 09:45,"324 Main St, New York City, NY 10001" +318415,AAA Batteries (4-pack),1,2.99,12/17/19 16:11,"216 Madison St, Atlanta, GA 30301" +318416,34in Ultrawide Monitor,1,379.99,12/07/19 18:02,"12 2nd St, Los Angeles, CA 90001" +318417,AA Batteries (4-pack),1,3.84,12/28/19 17:06,"811 Spruce St, Austin, TX 73301" +318418,AA Batteries (4-pack),1,3.84,12/15/19 01:37,"955 8th St, San Francisco, CA 94016" +318419,27in 4K Gaming Monitor,1,389.99,12/09/19 13:04,"608 North St, Los Angeles, CA 90001" +318420,Wired Headphones,1,11.99,12/13/19 14:18,"674 Jefferson St, San Francisco, CA 94016" +318421,34in Ultrawide Monitor,1,379.99,12/03/19 06:42,"73 Cherry St, New York City, NY 10001" +318422,iPhone,1,700,12/08/19 07:30,"669 Lincoln St, Atlanta, GA 30301" +318423,AAA Batteries (4-pack),4,2.99,12/20/19 00:32,"131 Walnut St, San Francisco, CA 94016" +318424,USB-C Charging Cable,1,11.95,12/25/19 18:15,"667 Park St, San Francisco, CA 94016" +318425,Bose SoundSport Headphones,1,99.99,12/18/19 16:40,"909 Jefferson St, San Francisco, CA 94016" +318426,AAA Batteries (4-pack),2,2.99,12/08/19 16:37,"998 Hickory St, Austin, TX 73301" +318427,Apple Airpods Headphones,1,150,12/11/19 15:53,"306 4th St, San Francisco, CA 94016" +318428,Lightning Charging Cable,1,14.95,12/10/19 00:42,"811 Park St, Boston, MA 02215" +318429,Bose SoundSport Headphones,1,99.99,12/29/19 11:27,"499 Washington St, Boston, MA 02215" +318430,27in 4K Gaming Monitor,1,389.99,12/01/19 16:11,"686 Main St, Seattle, WA 98101" +318431,Vareebadd Phone,1,400,12/18/19 11:04,"304 Cedar St, San Francisco, CA 94016" +318432,34in Ultrawide Monitor,1,379.99,12/31/19 09:50,"486 Forest St, New York City, NY 10001" +318433,AA Batteries (4-pack),2,3.84,12/16/19 12:47,"442 11th St, Atlanta, GA 30301" +318434,Google Phone,1,600,12/31/19 21:43,"999 Lakeview St, Seattle, WA 98101" +318435,ThinkPad Laptop,1,999.99,12/14/19 15:09,"294 Park St, San Francisco, CA 94016" +318436,USB-C Charging Cable,1,11.95,12/10/19 22:51,"79 Lake St, San Francisco, CA 94016" +318437,20in Monitor,1,109.99,12/19/19 20:29,"880 4th St, Los Angeles, CA 90001" +318438,AAA Batteries (4-pack),1,2.99,12/28/19 08:38,"53 2nd St, Austin, TX 73301" +318439,USB-C Charging Cable,1,11.95,12/07/19 23:41,"983 14th St, San Francisco, CA 94016" +318440,27in 4K Gaming Monitor,1,389.99,12/15/19 17:40,"274 11th St, Seattle, WA 98101" +318441,Wired Headphones,1,11.99,12/09/19 15:41,"809 Dogwood St, Seattle, WA 98101" +318442,Vareebadd Phone,1,400,12/24/19 19:20,"489 Lake St, New York City, NY 10001" +318443,27in 4K Gaming Monitor,1,389.99,12/25/19 20:23,"623 Chestnut St, San Francisco, CA 94016" +318444,Flatscreen TV,1,300,12/26/19 11:37,"15 Church St, Boston, MA 02215" +318445,USB-C Charging Cable,2,11.95,12/21/19 17:22,"200 5th St, Boston, MA 02215" +318446,Apple Airpods Headphones,1,150,12/13/19 14:57,"771 5th St, New York City, NY 10001" +318447,USB-C Charging Cable,1,11.95,12/03/19 18:28,"672 Lake St, Los Angeles, CA 90001" +318448,USB-C Charging Cable,1,11.95,12/04/19 16:06,"763 4th St, Atlanta, GA 30301" +318449,USB-C Charging Cable,1,11.95,12/02/19 11:02,"458 11th St, San Francisco, CA 94016" +318449,AA Batteries (4-pack),1,3.84,12/02/19 11:02,"458 11th St, San Francisco, CA 94016" +318450,USB-C Charging Cable,1,11.95,12/22/19 18:42,"332 6th St, Portland, OR 97035" +318451,34in Ultrawide Monitor,1,379.99,12/03/19 20:21,"504 Sunset St, Portland, OR 97035" +318452,Bose SoundSport Headphones,1,99.99,12/13/19 11:19,"703 Johnson St, Atlanta, GA 30301" +318453,USB-C Charging Cable,1,11.95,12/12/19 22:32,"430 9th St, San Francisco, CA 94016" +318454,Bose SoundSport Headphones,1,99.99,12/29/19 20:21,"976 Washington St, San Francisco, CA 94016" +318455,Google Phone,1,600,12/09/19 17:41,"138 Madison St, Atlanta, GA 30301" +318455,USB-C Charging Cable,1,11.95,12/09/19 17:41,"138 Madison St, Atlanta, GA 30301" +318456,Bose SoundSport Headphones,1,99.99,12/07/19 22:30,"901 11th St, San Francisco, CA 94016" +318457,27in FHD Monitor,1,149.99,12/22/19 13:14,"519 Meadow St, San Francisco, CA 94016" +318458,27in 4K Gaming Monitor,1,389.99,12/16/19 10:53,"295 Park St, Atlanta, GA 30301" +,,,,, +318459,Google Phone,1,600,12/03/19 19:48,"51 6th St, Boston, MA 02215" +318460,AAA Batteries (4-pack),1,2.99,12/15/19 05:20,"474 North St, San Francisco, CA 94016" +318461,USB-C Charging Cable,1,11.95,12/03/19 18:25,"434 Meadow St, San Francisco, CA 94016" +318462,Apple Airpods Headphones,1,150,12/29/19 17:48,"388 River St, San Francisco, CA 94016" +318463,AA Batteries (4-pack),3,3.84,12/15/19 07:55,"999 10th St, San Francisco, CA 94016" +318464,Lightning Charging Cable,1,14.95,12/26/19 18:15,"571 Dogwood St, Austin, TX 73301" +318465,27in 4K Gaming Monitor,1,389.99,12/02/19 17:31,"745 Jackson St, Boston, MA 02215" +318466,Wired Headphones,1,11.99,12/05/19 11:55,"41 South St, San Francisco, CA 94016" +318467,34in Ultrawide Monitor,1,379.99,12/04/19 18:59,"664 5th St, San Francisco, CA 94016" +318468,USB-C Charging Cable,1,11.95,12/12/19 16:48,"490 Pine St, Los Angeles, CA 90001" +318469,USB-C Charging Cable,1,11.95,12/08/19 11:07,"390 1st St, New York City, NY 10001" +318470,USB-C Charging Cable,1,11.95,12/07/19 14:00,"120 10th St, New York City, NY 10001" +318471,20in Monitor,1,109.99,12/01/19 15:16,"289 Meadow St, Los Angeles, CA 90001" +318472,Wired Headphones,1,11.99,12/26/19 17:04,"477 5th St, Portland, ME 04101" +318473,27in 4K Gaming Monitor,1,389.99,12/20/19 11:11,"790 Lincoln St, San Francisco, CA 94016" +318474,AA Batteries (4-pack),2,3.84,12/27/19 13:01,"518 Spruce St, Atlanta, GA 30301" +318475,Lightning Charging Cable,1,14.95,12/31/19 20:05,"617 Jefferson St, Dallas, TX 75001" +318476,Wired Headphones,1,11.99,12/22/19 07:58,"775 Lincoln St, Los Angeles, CA 90001" +318477,27in FHD Monitor,1,149.99,12/12/19 09:37,"327 Sunset St, Boston, MA 02215" +318478,USB-C Charging Cable,1,11.95,12/26/19 12:55,"152 Willow St, Atlanta, GA 30301" +318479,AAA Batteries (4-pack),1,2.99,12/12/19 15:01,"978 Hill St, Los Angeles, CA 90001" +318480,Apple Airpods Headphones,1,150,12/09/19 18:58,"611 5th St, Austin, TX 73301" +318481,Wired Headphones,1,11.99,12/13/19 19:15,"952 Hickory St, San Francisco, CA 94016" +318482,iPhone,1,700,12/01/19 16:49,"878 13th St, Boston, MA 02215" +318482,Wired Headphones,1,11.99,12/01/19 16:49,"878 13th St, Boston, MA 02215" +318483,Lightning Charging Cable,1,14.95,12/15/19 06:26,"315 9th St, New York City, NY 10001" +318484,20in Monitor,1,109.99,12/20/19 01:29,"990 Cherry St, Boston, MA 02215" +318485,AA Batteries (4-pack),1,3.84,12/28/19 20:09,"342 Spruce St, Los Angeles, CA 90001" +318486,AA Batteries (4-pack),1,3.84,12/13/19 00:05,"296 Walnut St, Dallas, TX 75001" +318487,iPhone,1,700,12/12/19 21:09,"145 Jefferson St, San Francisco, CA 94016" +318488,AAA Batteries (4-pack),1,2.99,12/16/19 07:06,"338 Lincoln St, San Francisco, CA 94016" +318488,Google Phone,1,600,12/16/19 07:06,"338 Lincoln St, San Francisco, CA 94016" +318489,Bose SoundSport Headphones,1,99.99,12/14/19 10:38,"750 1st St, San Francisco, CA 94016" +318490,34in Ultrawide Monitor,1,379.99,12/16/19 13:56,"297 7th St, Boston, MA 02215" +318491,AAA Batteries (4-pack),2,2.99,12/11/19 17:23,"564 11th St, San Francisco, CA 94016" +318492,AA Batteries (4-pack),1,3.84,12/17/19 00:10,"183 Adams St, Los Angeles, CA 90001" +318493,USB-C Charging Cable,1,11.95,12/10/19 11:20,"353 13th St, Seattle, WA 98101" +318494,Bose SoundSport Headphones,1,99.99,12/26/19 11:38,"245 Pine St, Los Angeles, CA 90001" +318495,27in FHD Monitor,1,149.99,12/23/19 20:25,"342 11th St, Atlanta, GA 30301" +318496,AAA Batteries (4-pack),1,2.99,12/03/19 18:51,"908 14th St, Dallas, TX 75001" +318497,Lightning Charging Cable,1,14.95,12/28/19 18:19,"97 South St, San Francisco, CA 94016" +318498,Wired Headphones,1,11.99,12/17/19 19:55,"639 Park St, Los Angeles, CA 90001" +318499,Bose SoundSport Headphones,1,99.99,12/02/19 12:45,"384 Main St, New York City, NY 10001" +318500,Bose SoundSport Headphones,1,99.99,12/06/19 03:24,"230 Madison St, New York City, NY 10001" +318501,Google Phone,1,600,12/19/19 19:40,"566 8th St, Dallas, TX 75001" +318501,USB-C Charging Cable,1,11.95,12/19/19 19:40,"566 8th St, Dallas, TX 75001" +318502,27in 4K Gaming Monitor,1,389.99,12/10/19 16:14,"446 Wilson St, San Francisco, CA 94016" +318503,Apple Airpods Headphones,1,150,12/30/19 16:53,"200 2nd St, San Francisco, CA 94016" +318504,AA Batteries (4-pack),1,3.84,12/17/19 22:42,"382 Dogwood St, Boston, MA 02215" +318505,27in FHD Monitor,1,149.99,12/20/19 21:07,"321 West St, Austin, TX 73301" +318506,20in Monitor,1,109.99,12/17/19 16:40,"363 Pine St, Seattle, WA 98101" +318507,Bose SoundSport Headphones,1,99.99,12/26/19 15:35,"332 Walnut St, Los Angeles, CA 90001" +318508,AAA Batteries (4-pack),2,2.99,12/29/19 11:49,"112 Lake St, Seattle, WA 98101" +318509,Wired Headphones,1,11.99,12/03/19 18:57,"166 River St, New York City, NY 10001" +318510,Bose SoundSport Headphones,1,99.99,12/18/19 13:35,"342 Forest St, Los Angeles, CA 90001" +318511,AA Batteries (4-pack),1,3.84,12/09/19 16:08,"274 5th St, New York City, NY 10001" +318512,Google Phone,1,600,12/25/19 09:30,"388 Chestnut St, New York City, NY 10001" +318513,iPhone,1,700,12/08/19 16:19,"167 Hill St, Portland, OR 97035" +318514,Apple Airpods Headphones,1,150,12/25/19 20:13,"746 Cedar St, San Francisco, CA 94016" +318515,20in Monitor,1,109.99,12/30/19 10:52,"682 14th St, Atlanta, GA 30301" +318516,AAA Batteries (4-pack),2,2.99,12/04/19 09:26,"221 Hill St, Los Angeles, CA 90001" +318517,Bose SoundSport Headphones,1,99.99,12/27/19 17:55,"290 Church St, Portland, ME 04101" +318518,Macbook Pro Laptop,1,1700,12/14/19 20:37,"130 Madison St, Boston, MA 02215" +318519,USB-C Charging Cable,1,11.95,12/03/19 23:00,"184 South St, New York City, NY 10001" +318520,Lightning Charging Cable,1,14.95,12/30/19 20:03,"936 Spruce St, Boston, MA 02215" +318521,AA Batteries (4-pack),1,3.84,12/10/19 21:14,"165 Sunset St, Austin, TX 73301" +318522,Wired Headphones,1,11.99,12/16/19 16:23,"882 Hickory St, New York City, NY 10001" +318523,Flatscreen TV,1,300,12/07/19 11:44,"182 7th St, Dallas, TX 75001" +318524,USB-C Charging Cable,1,11.95,12/25/19 12:19,"411 14th St, Portland, OR 97035" +318525,Wired Headphones,1,11.99,12/02/19 17:59,"233 Johnson St, Seattle, WA 98101" +318526,Lightning Charging Cable,1,14.95,12/21/19 14:07,"864 Walnut St, Boston, MA 02215" +318527,AAA Batteries (4-pack),1,2.99,12/16/19 20:32,"445 Madison St, Portland, OR 97035" +318528,Lightning Charging Cable,1,14.95,12/16/19 21:42,"297 10th St, New York City, NY 10001" +318529,Lightning Charging Cable,1,14.95,12/06/19 11:07,"770 Dogwood St, Atlanta, GA 30301" +318529,Wired Headphones,1,11.99,12/06/19 11:07,"770 Dogwood St, Atlanta, GA 30301" +318530,USB-C Charging Cable,1,11.95,12/22/19 20:39,"793 5th St, New York City, NY 10001" +318531,Apple Airpods Headphones,1,150,12/05/19 13:15,"195 2nd St, Boston, MA 02215" +318532,Wired Headphones,2,11.99,12/10/19 19:55,"595 1st St, San Francisco, CA 94016" +318533,USB-C Charging Cable,1,11.95,12/28/19 05:20,"926 6th St, San Francisco, CA 94016" +318534,AA Batteries (4-pack),1,3.84,12/30/19 10:32,"155 Church St, Boston, MA 02215" +318534,AA Batteries (4-pack),1,3.84,12/30/19 10:32,"155 Church St, Boston, MA 02215" +318535,Google Phone,1,600,12/27/19 21:49,"99 Cedar St, New York City, NY 10001" +318536,Apple Airpods Headphones,1,150,12/13/19 15:53,"308 Willow St, New York City, NY 10001" +318537,Bose SoundSport Headphones,1,99.99,12/04/19 19:27,"858 5th St, New York City, NY 10001" +318538,Lightning Charging Cable,1,14.95,12/24/19 19:27,"396 Washington St, Atlanta, GA 30301" +318539,iPhone,1,700,12/30/19 15:09,"799 7th St, San Francisco, CA 94016" +318540,Bose SoundSport Headphones,1,99.99,12/04/19 14:41,"693 West St, Dallas, TX 75001" +318541,Apple Airpods Headphones,1,150,12/05/19 09:33,"665 Hill St, San Francisco, CA 94016" +318542,AA Batteries (4-pack),1,3.84,12/09/19 22:52,"684 South St, San Francisco, CA 94016" +318543,27in FHD Monitor,1,149.99,12/27/19 00:25,"558 9th St, Seattle, WA 98101" +318544,Bose SoundSport Headphones,1,99.99,12/07/19 19:04,"754 North St, Atlanta, GA 30301" +318545,AA Batteries (4-pack),1,3.84,12/12/19 11:24,"387 Lake St, Los Angeles, CA 90001" +318546,USB-C Charging Cable,1,11.95,12/25/19 20:57,"22 6th St, Seattle, WA 98101" +318547,USB-C Charging Cable,1,11.95,12/12/19 17:57,"731 Spruce St, Los Angeles, CA 90001" +318548,Wired Headphones,1,11.99,12/07/19 19:43,"36 Dogwood St, San Francisco, CA 94016" +318549,Google Phone,1,600,12/27/19 23:07,"309 Park St, New York City, NY 10001" +318550,Apple Airpods Headphones,1,150,12/17/19 19:47,"633 Meadow St, Atlanta, GA 30301" +318551,27in FHD Monitor,1,149.99,12/31/19 00:54,"433 Walnut St, Dallas, TX 75001" +318552,USB-C Charging Cable,1,11.95,12/12/19 08:18,"400 West St, Los Angeles, CA 90001" +318553,AAA Batteries (4-pack),4,2.99,12/11/19 07:33,"400 Cherry St, Seattle, WA 98101" +318554,USB-C Charging Cable,1,11.95,12/31/19 09:49,"849 Cedar St, Los Angeles, CA 90001" +318555,AAA Batteries (4-pack),1,2.99,12/06/19 22:09,"277 Dogwood St, Austin, TX 73301" +318556,USB-C Charging Cable,1,11.95,12/26/19 07:45,"998 River St, Seattle, WA 98101" +318557,Flatscreen TV,1,300,12/09/19 19:32,"183 Lakeview St, San Francisco, CA 94016" +318558,USB-C Charging Cable,1,11.95,12/13/19 23:44,"759 6th St, New York City, NY 10001" +318559,iPhone,1,700,12/10/19 13:21,"248 Main St, Portland, OR 97035" +318559,Wired Headphones,1,11.99,12/10/19 13:21,"248 Main St, Portland, OR 97035" +318560,AAA Batteries (4-pack),1,2.99,12/23/19 11:17,"216 Lakeview St, Seattle, WA 98101" +318561,Macbook Pro Laptop,1,1700,12/31/19 21:01,"460 7th St, New York City, NY 10001" +318562,AA Batteries (4-pack),1,3.84,12/12/19 19:04,"407 West St, Portland, OR 97035" +318563,AA Batteries (4-pack),2,3.84,12/31/19 08:54,"931 2nd St, Atlanta, GA 30301" +318564,USB-C Charging Cable,2,11.95,12/06/19 02:54,"47 Walnut St, Seattle, WA 98101" +318565,Bose SoundSport Headphones,1,99.99,12/28/19 17:28,"348 Hill St, New York City, NY 10001" +318566,USB-C Charging Cable,1,11.95,12/28/19 21:52,"253 11th St, Austin, TX 73301" +318567,Vareebadd Phone,1,400,12/28/19 23:35,"982 Center St, New York City, NY 10001" +318567,USB-C Charging Cable,1,11.95,12/28/19 23:35,"982 Center St, New York City, NY 10001" +318568,27in 4K Gaming Monitor,1,389.99,12/12/19 09:34,"841 2nd St, Dallas, TX 75001" +318569,AAA Batteries (4-pack),3,2.99,12/24/19 19:38,"891 Lakeview St, New York City, NY 10001" +318570,AA Batteries (4-pack),1,3.84,12/28/19 08:48,"891 Wilson St, Portland, OR 97035" +318571,iPhone,1,700,12/24/19 19:15,"90 13th St, Boston, MA 02215" +318571,Lightning Charging Cable,2,14.95,12/24/19 19:15,"90 13th St, Boston, MA 02215" +318571,Wired Headphones,1,11.99,12/24/19 19:15,"90 13th St, Boston, MA 02215" +318572,AA Batteries (4-pack),1,3.84,12/24/19 19:49,"136 Elm St, Dallas, TX 75001" +318573,AA Batteries (4-pack),1,3.84,12/02/19 13:32,"406 Jackson St, Dallas, TX 75001" +318574,AAA Batteries (4-pack),2,2.99,12/03/19 19:06,"44 Washington St, Atlanta, GA 30301" +318575,USB-C Charging Cable,1,11.95,12/02/19 02:58,"848 Meadow St, Dallas, TX 75001" +318576,Vareebadd Phone,1,400,12/29/19 23:04,"444 2nd St, San Francisco, CA 94016" +318576,Bose SoundSport Headphones,1,99.99,12/29/19 23:04,"444 2nd St, San Francisco, CA 94016" +318577,Apple Airpods Headphones,1,150,12/10/19 06:49,"279 Chestnut St, Austin, TX 73301" +318578,Lightning Charging Cable,2,14.95,12/22/19 10:29,"94 Lake St, Boston, MA 02215" +318579,Wired Headphones,1,11.99,12/09/19 12:19,"733 Dogwood St, San Francisco, CA 94016" +318580,Apple Airpods Headphones,1,150,12/21/19 12:39,"804 1st St, Atlanta, GA 30301" +318581,Lightning Charging Cable,1,14.95,12/11/19 20:54,"384 Jackson St, Seattle, WA 98101" +318582,AA Batteries (4-pack),1,3.84,12/04/19 00:35,"271 Willow St, Los Angeles, CA 90001" +318583,Lightning Charging Cable,1,14.95,12/11/19 17:52,"773 Hill St, San Francisco, CA 94016" +318584,27in FHD Monitor,1,149.99,12/30/19 12:37,"436 Meadow St, San Francisco, CA 94016" +318585,AA Batteries (4-pack),1,3.84,12/03/19 20:51,"609 6th St, Portland, OR 97035" +318586,LG Dryer,1,600.0,12/09/19 15:36,"708 Church St, New York City, NY 10001" +318587,AA Batteries (4-pack),2,3.84,12/26/19 22:59,"868 Adams St, Los Angeles, CA 90001" +318588,AAA Batteries (4-pack),3,2.99,12/14/19 20:13,"741 Pine St, San Francisco, CA 94016" +318589,Lightning Charging Cable,1,14.95,12/06/19 09:22,"904 Chestnut St, San Francisco, CA 94016" +318590,Wired Headphones,2,11.99,12/25/19 18:06,"579 Cedar St, San Francisco, CA 94016" +318591,27in FHD Monitor,1,149.99,12/22/19 20:25,"453 Highland St, San Francisco, CA 94016" +318592,AA Batteries (4-pack),1,3.84,12/28/19 18:20,"156 Elm St, New York City, NY 10001" +318593,27in FHD Monitor,1,149.99,12/23/19 19:24,"641 9th St, San Francisco, CA 94016" +318594,AAA Batteries (4-pack),1,2.99,12/30/19 20:27,"230 Highland St, San Francisco, CA 94016" +318595,AA Batteries (4-pack),1,3.84,12/01/19 22:12,"362 Lincoln St, New York City, NY 10001" +318596,USB-C Charging Cable,1,11.95,12/20/19 14:44,"166 West St, San Francisco, CA 94016" +318597,Flatscreen TV,1,300,12/09/19 07:52,"541 7th St, New York City, NY 10001" +318598,Bose SoundSport Headphones,1,99.99,12/31/19 20:47,"917 Lakeview St, Los Angeles, CA 90001" +318599,27in FHD Monitor,1,149.99,12/06/19 18:15,"528 Washington St, San Francisco, CA 94016" +318600,AAA Batteries (4-pack),2,2.99,12/22/19 11:16,"191 Washington St, Dallas, TX 75001" +318601,Bose SoundSport Headphones,1,99.99,12/29/19 15:58,"559 Main St, Atlanta, GA 30301" +318602,Bose SoundSport Headphones,1,99.99,12/09/19 01:30,"541 5th St, Los Angeles, CA 90001" +318603,AAA Batteries (4-pack),1,2.99,12/06/19 22:25,"67 2nd St, San Francisco, CA 94016" +318604,Wired Headphones,1,11.99,12/18/19 11:42,"73 Willow St, Los Angeles, CA 90001" +318605,USB-C Charging Cable,1,11.95,12/03/19 00:55,"939 Jackson St, Atlanta, GA 30301" +318606,USB-C Charging Cable,1,11.95,12/18/19 07:34,"455 Ridge St, San Francisco, CA 94016" +318607,Lightning Charging Cable,1,14.95,12/26/19 14:57,"65 Pine St, Los Angeles, CA 90001" +318608,Bose SoundSport Headphones,1,99.99,12/28/19 17:47,"431 Center St, Dallas, TX 75001" +318609,AAA Batteries (4-pack),1,2.99,12/02/19 13:32,"569 Madison St, Austin, TX 73301" +318609,AAA Batteries (4-pack),2,2.99,12/02/19 13:32,"569 Madison St, Austin, TX 73301" +318610,Wired Headphones,1,11.99,12/16/19 22:24,"212 4th St, San Francisco, CA 94016" +318611,Wired Headphones,1,11.99,12/06/19 10:24,"510 2nd St, San Francisco, CA 94016" +318612,Wired Headphones,2,11.99,12/20/19 17:17,"23 Wilson St, Dallas, TX 75001" +318613,AA Batteries (4-pack),1,3.84,12/24/19 17:31,"87 7th St, Dallas, TX 75001" +318614,Flatscreen TV,1,300,12/31/19 14:08,"866 Meadow St, Austin, TX 73301" +318615,AA Batteries (4-pack),1,3.84,12/18/19 18:56,"628 Madison St, San Francisco, CA 94016" +318616,AAA Batteries (4-pack),1,2.99,12/09/19 00:06,"935 13th St, Boston, MA 02215" +318617,AAA Batteries (4-pack),1,2.99,12/09/19 10:34,"88 Elm St, Los Angeles, CA 90001" +318618,Lightning Charging Cable,1,14.95,12/04/19 15:39,"426 Spruce St, New York City, NY 10001" +318619,Lightning Charging Cable,1,14.95,12/26/19 11:16,"621 Dogwood St, Dallas, TX 75001" +318620,AA Batteries (4-pack),1,3.84,12/23/19 21:46,"149 South St, Austin, TX 73301" +318621,USB-C Charging Cable,1,11.95,12/31/19 23:07,"337 Lake St, Boston, MA 02215" +318622,Lightning Charging Cable,1,14.95,12/21/19 16:15,"552 West St, New York City, NY 10001" +318623,Google Phone,1,600,12/21/19 13:13,"44 Pine St, Portland, OR 97035" +318623,Wired Headphones,1,11.99,12/21/19 13:13,"44 Pine St, Portland, OR 97035" +318624,Lightning Charging Cable,1,14.95,12/16/19 12:57,"427 Lakeview St, San Francisco, CA 94016" +318625,Macbook Pro Laptop,1,1700,12/07/19 22:00,"279 Church St, San Francisco, CA 94016" +318626,Bose SoundSport Headphones,1,99.99,12/17/19 08:27,"245 Park St, Los Angeles, CA 90001" +318627,AA Batteries (4-pack),1,3.84,12/04/19 04:22,"890 Forest St, Boston, MA 02215" +318628,27in FHD Monitor,1,149.99,12/10/19 13:44,"842 Wilson St, New York City, NY 10001" +318629,Lightning Charging Cable,1,14.95,12/03/19 13:05,"805 Cherry St, New York City, NY 10001" +318630,Macbook Pro Laptop,1,1700,12/23/19 12:19,"11 Center St, Los Angeles, CA 90001" +318631,Lightning Charging Cable,1,14.95,12/15/19 18:26,"219 4th St, Los Angeles, CA 90001" +318632,Google Phone,1,600,12/01/19 22:04,"508 Lincoln St, Dallas, TX 75001" +318633,AA Batteries (4-pack),1,3.84,12/17/19 07:50,"709 Willow St, San Francisco, CA 94016" +318634,Macbook Pro Laptop,1,1700,12/28/19 15:49,"339 10th St, Atlanta, GA 30301" +318634,iPhone,1,700,12/28/19 15:49,"339 10th St, Atlanta, GA 30301" +318635,USB-C Charging Cable,1,11.95,12/27/19 16:57,"693 Hickory St, Los Angeles, CA 90001" +318636,Apple Airpods Headphones,1,150,12/09/19 19:53,"827 10th St, New York City, NY 10001" +318637,Apple Airpods Headphones,1,150,12/11/19 18:16,"965 Ridge St, Seattle, WA 98101" +318638,Flatscreen TV,1,300,12/25/19 01:03,"25 Center St, New York City, NY 10001" +318638,Flatscreen TV,1,300,12/25/19 01:03,"25 Center St, New York City, NY 10001" +318639,iPhone,1,700,12/27/19 13:17,"486 4th St, Seattle, WA 98101" +318640,USB-C Charging Cable,1,11.95,12/17/19 15:03,"869 6th St, Boston, MA 02215" +318641,Macbook Pro Laptop,1,1700,12/29/19 00:07,"299 13th St, Austin, TX 73301" +318642,AA Batteries (4-pack),1,3.84,12/23/19 13:36,"374 Hill St, San Francisco, CA 94016" +318643,AA Batteries (4-pack),4,3.84,12/07/19 00:15,"713 Chestnut St, San Francisco, CA 94016" +318643,27in FHD Monitor,1,149.99,12/07/19 00:15,"713 Chestnut St, San Francisco, CA 94016" +318644,iPhone,1,700,12/18/19 12:35,"28 Church St, New York City, NY 10001" +318645,Lightning Charging Cable,1,14.95,12/15/19 11:55,"71 Cedar St, Seattle, WA 98101" +318646,Bose SoundSport Headphones,1,99.99,12/03/19 14:18,"820 Park St, Boston, MA 02215" +318647,USB-C Charging Cable,1,11.95,12/07/19 10:34,"797 7th St, Portland, OR 97035" +318648,27in 4K Gaming Monitor,1,389.99,12/05/19 20:17,"20 Elm St, Dallas, TX 75001" +318649,AA Batteries (4-pack),1,3.84,12/30/19 18:27,"208 Lincoln St, New York City, NY 10001" +318650,Apple Airpods Headphones,1,150,12/03/19 23:28,"438 River St, Boston, MA 02215" +318651,Flatscreen TV,1,300,12/12/19 15:50,"873 Highland St, San Francisco, CA 94016" +318652,Lightning Charging Cable,1,14.95,12/24/19 11:30,"540 Madison St, Los Angeles, CA 90001" +318653,20in Monitor,1,109.99,12/14/19 23:30,"258 Center St, Dallas, TX 75001" +318654,USB-C Charging Cable,1,11.95,12/13/19 13:35,"167 6th St, Austin, TX 73301" +318655,AA Batteries (4-pack),1,3.84,12/31/19 20:39,"151 1st St, Los Angeles, CA 90001" +318656,34in Ultrawide Monitor,1,379.99,12/01/19 13:19,"896 13th St, New York City, NY 10001" +318657,Wired Headphones,1,11.99,12/25/19 10:48,"685 Madison St, Los Angeles, CA 90001" +318658,Lightning Charging Cable,1,14.95,12/20/19 14:14,"969 Wilson St, San Francisco, CA 94016" +318659,AA Batteries (4-pack),1,3.84,12/27/19 14:36,"57 Maple St, Los Angeles, CA 90001" +318660,AA Batteries (4-pack),1,3.84,12/24/19 13:56,"734 Highland St, New York City, NY 10001" +318660,Google Phone,1,600,12/24/19 13:56,"734 Highland St, New York City, NY 10001" +318661,Apple Airpods Headphones,1,150,12/06/19 13:07,"52 Center St, San Francisco, CA 94016" +318662,USB-C Charging Cable,1,11.95,12/30/19 18:53,"611 Adams St, Seattle, WA 98101" +318663,USB-C Charging Cable,1,11.95,12/17/19 02:32,"910 2nd St, Atlanta, GA 30301" +318664,34in Ultrawide Monitor,1,379.99,12/07/19 13:44,"469 8th St, San Francisco, CA 94016" +318665,AA Batteries (4-pack),1,3.84,12/18/19 09:21,"471 Main St, Atlanta, GA 30301" +318666,Wired Headphones,1,11.99,12/26/19 16:43,"347 Johnson St, Dallas, TX 75001" +318667,Lightning Charging Cable,1,14.95,12/27/19 10:58,"542 6th St, Los Angeles, CA 90001" +318668,USB-C Charging Cable,1,11.95,12/12/19 07:04,"520 Church St, New York City, NY 10001" +318669,20in Monitor,1,109.99,12/01/19 15:37,"364 Hill St, Boston, MA 02215" +318670,USB-C Charging Cable,1,11.95,12/23/19 13:06,"77 13th St, Boston, MA 02215" +318671,Apple Airpods Headphones,1,150,12/03/19 21:51,"172 Hickory St, Dallas, TX 75001" +318672,Wired Headphones,1,11.99,12/17/19 10:16,"330 Washington St, Boston, MA 02215" +318673,Apple Airpods Headphones,1,150,12/01/19 12:19,"300 13th St, Los Angeles, CA 90001" +318674,27in FHD Monitor,1,149.99,12/07/19 00:05,"780 Ridge St, Los Angeles, CA 90001" +318675,Apple Airpods Headphones,1,150,12/18/19 15:21,"928 6th St, Seattle, WA 98101" +318676,AAA Batteries (4-pack),2,2.99,12/30/19 15:36,"396 Jefferson St, Los Angeles, CA 90001" +318677,AAA Batteries (4-pack),1,2.99,12/08/19 19:51,"277 2nd St, San Francisco, CA 94016" +318678,Google Phone,1,600,12/02/19 18:51,"462 Ridge St, San Francisco, CA 94016" +318679,AAA Batteries (4-pack),1,2.99,12/28/19 11:42,"908 4th St, New York City, NY 10001" +318680,Apple Airpods Headphones,1,150,12/19/19 15:25,"9 Highland St, San Francisco, CA 94016" +318681,USB-C Charging Cable,1,11.95,12/19/19 15:33,"920 10th St, Los Angeles, CA 90001" +318682,USB-C Charging Cable,1,11.95,12/16/19 21:31,"797 Sunset St, Los Angeles, CA 90001" +318683,Wired Headphones,1,11.99,12/03/19 20:44,"861 1st St, Seattle, WA 98101" +318684,AA Batteries (4-pack),3,3.84,12/12/19 10:38,"239 Lake St, New York City, NY 10001" +318685,Bose SoundSport Headphones,1,99.99,12/08/19 21:25,"331 Madison St, Seattle, WA 98101" +318686,Lightning Charging Cable,1,14.95,12/26/19 19:49,"353 North St, Boston, MA 02215" +318687,Bose SoundSport Headphones,1,99.99,12/25/19 15:39,"80 Sunset St, Boston, MA 02215" +318688,Wired Headphones,1,11.99,12/31/19 12:00,"293 North St, Seattle, WA 98101" +318689,Wired Headphones,1,11.99,12/06/19 20:23,"979 Cedar St, San Francisco, CA 94016" +318690,AAA Batteries (4-pack),1,2.99,12/13/19 14:56,"553 Wilson St, San Francisco, CA 94016" +318691,Apple Airpods Headphones,1,150,12/23/19 10:05,"136 Meadow St, San Francisco, CA 94016" +318692,Lightning Charging Cable,1,14.95,12/19/19 21:42,"386 Walnut St, Los Angeles, CA 90001" +318693,USB-C Charging Cable,1,11.95,12/11/19 21:48,"574 Sunset St, Los Angeles, CA 90001" +318694,Bose SoundSport Headphones,1,99.99,12/11/19 13:40,"868 Pine St, Los Angeles, CA 90001" +318695,Lightning Charging Cable,1,14.95,12/27/19 08:45,"56 Jackson St, Los Angeles, CA 90001" +318696,Google Phone,1,600,12/17/19 12:55,"707 10th St, San Francisco, CA 94016" +318697,AAA Batteries (4-pack),1,2.99,12/10/19 10:10,"405 12th St, Portland, OR 97035" +318698,27in 4K Gaming Monitor,1,389.99,12/31/19 20:06,"184 Sunset St, Seattle, WA 98101" +318699,27in FHD Monitor,1,149.99,12/30/19 20:39,"301 11th St, San Francisco, CA 94016" +318700,Apple Airpods Headphones,1,150,12/27/19 20:44,"904 Washington St, New York City, NY 10001" +318701,AA Batteries (4-pack),2,3.84,12/15/19 12:50,"517 9th St, Seattle, WA 98101" +318702,ThinkPad Laptop,1,999.99,12/14/19 10:16,"642 Washington St, Atlanta, GA 30301" +318703,iPhone,1,700,12/15/19 10:13,"709 Dogwood St, Atlanta, GA 30301" +318703,Apple Airpods Headphones,1,150,12/15/19 10:13,"709 Dogwood St, Atlanta, GA 30301" +318704,Google Phone,1,600,12/29/19 07:47,"766 Jackson St, New York City, NY 10001" +318704,USB-C Charging Cable,1,11.95,12/29/19 07:47,"766 Jackson St, New York City, NY 10001" +318705,Lightning Charging Cable,1,14.95,12/29/19 06:23,"224 Church St, Portland, ME 04101" +318706,USB-C Charging Cable,1,11.95,12/27/19 13:48,"315 Chestnut St, Atlanta, GA 30301" +318707,USB-C Charging Cable,2,11.95,12/20/19 16:21,"717 11th St, San Francisco, CA 94016" +318708,AAA Batteries (4-pack),1,2.99,12/05/19 20:03,"767 West St, New York City, NY 10001" +318709,Wired Headphones,1,11.99,12/25/19 23:24,"537 Park St, Los Angeles, CA 90001" +318710,AAA Batteries (4-pack),2,2.99,12/06/19 12:21,"797 Hickory St, Atlanta, GA 30301" +318711,iPhone,1,700,12/02/19 11:01,"644 Dogwood St, San Francisco, CA 94016" +318712,AAA Batteries (4-pack),2,2.99,12/06/19 21:53,"997 Cherry St, New York City, NY 10001" +318713,Bose SoundSport Headphones,2,99.99,12/14/19 08:56,"172 Washington St, New York City, NY 10001" +318714,AAA Batteries (4-pack),2,2.99,12/19/19 11:16,"774 Hickory St, Atlanta, GA 30301" +318715,Wired Headphones,1,11.99,12/11/19 19:26,"767 South St, San Francisco, CA 94016" +318716,20in Monitor,1,109.99,12/23/19 02:20,"287 Lincoln St, San Francisco, CA 94016" +318717,Google Phone,1,600,12/17/19 16:41,"950 Johnson St, San Francisco, CA 94016" +318718,Wired Headphones,1,11.99,12/29/19 07:46,"249 Forest St, Seattle, WA 98101" +318719,USB-C Charging Cable,1,11.95,12/23/19 08:08,"31 Church St, Seattle, WA 98101" +318720,Google Phone,1,600,12/30/19 13:36,"27 South St, Los Angeles, CA 90001" +318721,Apple Airpods Headphones,1,150,12/22/19 13:27,"191 Willow St, Atlanta, GA 30301" +318722,Lightning Charging Cable,1,14.95,12/30/19 14:20,"438 North St, Los Angeles, CA 90001" +318723,iPhone,1,700,12/20/19 16:30,"711 Wilson St, Dallas, TX 75001" +318724,20in Monitor,1,109.99,12/04/19 22:18,"947 2nd St, Seattle, WA 98101" +318725,USB-C Charging Cable,1,11.95,12/02/19 10:38,"571 Main St, San Francisco, CA 94016" +318726,27in 4K Gaming Monitor,1,389.99,12/14/19 13:54,"992 Jackson St, San Francisco, CA 94016" +318727,Apple Airpods Headphones,1,150,12/11/19 08:38,"191 Chestnut St, Portland, OR 97035" +318728,20in Monitor,1,109.99,12/08/19 14:02,"484 Church St, San Francisco, CA 94016" +318729,iPhone,1,700,12/03/19 14:58,"108 14th St, Los Angeles, CA 90001" +318730,Apple Airpods Headphones,1,150,12/10/19 14:17,"346 Highland St, Los Angeles, CA 90001" +318731,Google Phone,1,600,12/21/19 11:52,"612 6th St, Austin, TX 73301" +318732,USB-C Charging Cable,1,11.95,12/24/19 10:16,"661 Chestnut St, New York City, NY 10001" +318733,Lightning Charging Cable,1,14.95,12/21/19 11:13,"69 Jackson St, Dallas, TX 75001" +318734,iPhone,1,700,12/17/19 06:00,"558 Chestnut St, Austin, TX 73301" +318735,USB-C Charging Cable,1,11.95,12/04/19 01:36,"193 1st St, Boston, MA 02215" +318736,Google Phone,1,600,12/19/19 22:02,"24 Center St, Dallas, TX 75001" +318737,iPhone,1,700,12/03/19 01:08,"249 10th St, Austin, TX 73301" +318738,27in FHD Monitor,1,149.99,12/15/19 15:07,"149 Lakeview St, San Francisco, CA 94016" +318739,34in Ultrawide Monitor,1,379.99,12/11/19 15:08,"761 9th St, Portland, OR 97035" +318740,ThinkPad Laptop,1,999.99,12/29/19 13:16,"717 11th St, Los Angeles, CA 90001" +318741,Lightning Charging Cable,1,14.95,12/07/19 18:16,"941 Jefferson St, San Francisco, CA 94016" +318742,Vareebadd Phone,1,400,12/03/19 17:00,"985 13th St, New York City, NY 10001" +318743,AA Batteries (4-pack),2,3.84,12/31/19 10:49,"726 Church St, Los Angeles, CA 90001" +318744,AA Batteries (4-pack),1,3.84,12/07/19 16:37,"827 12th St, Dallas, TX 75001" +318745,27in 4K Gaming Monitor,1,389.99,12/09/19 11:44,"763 North St, Los Angeles, CA 90001" +318746,Lightning Charging Cable,1,14.95,12/10/19 21:45,"46 6th St, Austin, TX 73301" +318747,USB-C Charging Cable,1,11.95,12/10/19 16:15,"700 Lincoln St, Portland, OR 97035" +318748,34in Ultrawide Monitor,1,379.99,12/26/19 13:03,"289 Jefferson St, San Francisco, CA 94016" +318749,27in 4K Gaming Monitor,1,389.99,12/15/19 11:14,"345 Maple St, Boston, MA 02215" +318750,Lightning Charging Cable,1,14.95,12/16/19 09:26,"608 Lincoln St, Dallas, TX 75001" +318751,Wired Headphones,1,11.99,12/22/19 11:00,"424 River St, Portland, OR 97035" +318752,27in FHD Monitor,1,149.99,12/27/19 19:58,"931 7th St, Portland, OR 97035" +318753,Wired Headphones,1,11.99,12/12/19 09:04,"70 Sunset St, Portland, OR 97035" +318754,Lightning Charging Cable,1,14.95,12/28/19 20:42,"678 2nd St, Dallas, TX 75001" +318755,Apple Airpods Headphones,1,150,12/03/19 16:24,"408 Pine St, New York City, NY 10001" +318756,20in Monitor,2,109.99,12/21/19 14:19,"811 2nd St, San Francisco, CA 94016" +318757,AA Batteries (4-pack),1,3.84,12/17/19 19:49,"100 13th St, Seattle, WA 98101" +318758,USB-C Charging Cable,1,11.95,12/01/19 19:42,"788 Center St, Austin, TX 73301" +318759,AAA Batteries (4-pack),1,2.99,12/23/19 11:00,"268 Maple St, San Francisco, CA 94016" +318760,Apple Airpods Headphones,1,150,12/05/19 11:27,"762 Washington St, Dallas, TX 75001" +318760,Bose SoundSport Headphones,1,99.99,12/05/19 11:27,"762 Washington St, Dallas, TX 75001" +318761,Bose SoundSport Headphones,1,99.99,12/22/19 12:21,"579 Maple St, Seattle, WA 98101" +318762,Google Phone,1,600,12/11/19 14:50,"127 Lakeview St, Seattle, WA 98101" +318763,AAA Batteries (4-pack),4,2.99,12/20/19 16:17,"187 Church St, Seattle, WA 98101" +318764,AA Batteries (4-pack),2,3.84,12/19/19 15:11,"243 Madison St, Portland, OR 97035" +318765,Lightning Charging Cable,1,14.95,12/01/19 14:00,"428 Wilson St, San Francisco, CA 94016" +318766,Lightning Charging Cable,1,14.95,12/31/19 19:41,"857 Jackson St, San Francisco, CA 94016" +318767,USB-C Charging Cable,1,11.95,12/24/19 18:21,"397 11th St, Seattle, WA 98101" +318768,LG Dryer,1,600.0,12/31/19 15:30,"238 Cedar St, Austin, TX 73301" +318769,Flatscreen TV,1,300,12/05/19 22:50,"898 Elm St, San Francisco, CA 94016" +318770,Bose SoundSport Headphones,1,99.99,12/26/19 02:27,"270 Willow St, Seattle, WA 98101" +318771,Apple Airpods Headphones,1,150,12/28/19 21:37,"490 Lake St, Seattle, WA 98101" +318772,20in Monitor,1,109.99,12/24/19 14:13,"641 Chestnut St, New York City, NY 10001" +318773,AA Batteries (4-pack),1,3.84,12/15/19 00:03,"786 Jackson St, Dallas, TX 75001" +318774,Wired Headphones,1,11.99,12/16/19 18:16,"830 Park St, Boston, MA 02215" +318775,AA Batteries (4-pack),1,3.84,12/31/19 22:19,"260 North St, Portland, OR 97035" +318776,Apple Airpods Headphones,1,150,12/20/19 11:52,"527 Dogwood St, San Francisco, CA 94016" +318777,Apple Airpods Headphones,1,150,12/25/19 21:25,"559 Chestnut St, Atlanta, GA 30301" +318778,Bose SoundSport Headphones,1,99.99,12/06/19 14:08,"945 7th St, Seattle, WA 98101" +318779,iPhone,1,700,12/27/19 19:54,"513 Washington St, Atlanta, GA 30301" +318780,Bose SoundSport Headphones,1,99.99,12/31/19 18:18,"289 Madison St, Dallas, TX 75001" +318781,AA Batteries (4-pack),1,3.84,12/20/19 20:01,"830 Jefferson St, Austin, TX 73301" +318782,AA Batteries (4-pack),1,3.84,12/29/19 15:37,"119 Ridge St, Seattle, WA 98101" +318783,34in Ultrawide Monitor,1,379.99,12/13/19 17:12,"46 1st St, San Francisco, CA 94016" +318784,AA Batteries (4-pack),2,3.84,12/13/19 16:45,"587 13th St, Dallas, TX 75001" +318785,Wired Headphones,1,11.99,12/26/19 08:59,"627 Adams St, New York City, NY 10001" +318786,34in Ultrawide Monitor,1,379.99,12/16/19 13:36,"784 Lake St, Seattle, WA 98101" +318787,AAA Batteries (4-pack),1,2.99,12/31/19 21:51,"464 Highland St, New York City, NY 10001" +318788,34in Ultrawide Monitor,1,379.99,12/13/19 13:17,"804 Walnut St, New York City, NY 10001" +318789,AA Batteries (4-pack),1,3.84,12/26/19 16:52,"691 Jackson St, Dallas, TX 75001" +318790,AAA Batteries (4-pack),1,2.99,12/31/19 19:01,"986 Hill St, New York City, NY 10001" +318791,Flatscreen TV,1,300,12/05/19 18:44,"546 Hickory St, Portland, OR 97035" +318792,AAA Batteries (4-pack),1,2.99,12/05/19 19:33,"588 Madison St, Los Angeles, CA 90001" +318793,iPhone,1,700,12/31/19 19:19,"209 Lakeview St, Boston, MA 02215" +318793,Lightning Charging Cable,1,14.95,12/31/19 19:19,"209 Lakeview St, Boston, MA 02215" +318794,AAA Batteries (4-pack),1,2.99,12/29/19 13:50,"656 Hill St, Boston, MA 02215" +318795,AA Batteries (4-pack),2,3.84,12/03/19 20:26,"371 8th St, Austin, TX 73301" +318796,Apple Airpods Headphones,1,150,12/06/19 17:23,"222 12th St, New York City, NY 10001" +318797,Wired Headphones,1,11.99,12/27/19 14:18,"573 Jefferson St, Atlanta, GA 30301" +318798,Apple Airpods Headphones,1,150,12/29/19 15:24,"528 West St, Boston, MA 02215" +318799,AAA Batteries (4-pack),1,2.99,12/16/19 19:38,"379 Lakeview St, Seattle, WA 98101" +318800,AA Batteries (4-pack),3,3.84,12/11/19 13:47,"672 7th St, Austin, TX 73301" +318801,AAA Batteries (4-pack),3,2.99,12/31/19 12:25,"287 Chestnut St, Atlanta, GA 30301" +318802,Google Phone,1,600,12/14/19 09:53,"684 Forest St, New York City, NY 10001" +318802,Wired Headphones,1,11.99,12/14/19 09:53,"684 Forest St, New York City, NY 10001" +318803,Lightning Charging Cable,1,14.95,12/03/19 15:06,"149 7th St, Los Angeles, CA 90001" +318804,USB-C Charging Cable,1,11.95,12/18/19 13:20,"745 Dogwood St, Seattle, WA 98101" +318805,Apple Airpods Headphones,1,150,12/11/19 09:05,"873 Jefferson St, Atlanta, GA 30301" +318806,Lightning Charging Cable,1,14.95,12/07/19 23:04,"193 9th St, Los Angeles, CA 90001" +318807,34in Ultrawide Monitor,1,379.99,12/16/19 12:06,"56 Wilson St, Los Angeles, CA 90001" +318808,iPhone,1,700,12/24/19 14:31,"661 10th St, New York City, NY 10001" +318809,34in Ultrawide Monitor,1,379.99,12/09/19 10:35,"783 River St, New York City, NY 10001" +318810,AAA Batteries (4-pack),1,2.99,12/15/19 19:34,"90 5th St, Atlanta, GA 30301" +318811,USB-C Charging Cable,1,11.95,12/19/19 12:14,"65 Lincoln St, Atlanta, GA 30301" +318812,USB-C Charging Cable,1,11.95,12/03/19 15:28,"36 North St, Dallas, TX 75001" +318813,USB-C Charging Cable,1,11.95,12/09/19 17:50,"532 Meadow St, Seattle, WA 98101" +318814,Bose SoundSport Headphones,1,99.99,12/03/19 13:01,"33 Cedar St, Boston, MA 02215" +318815,AA Batteries (4-pack),1,3.84,12/17/19 13:46,"161 9th St, Atlanta, GA 30301" +318816,AA Batteries (4-pack),1,3.84,12/22/19 20:14,"176 Forest St, San Francisco, CA 94016" +318817,AA Batteries (4-pack),1,3.84,12/29/19 16:09,"858 Walnut St, Boston, MA 02215" +318818,AA Batteries (4-pack),1,3.84,12/25/19 10:09,"741 10th St, Austin, TX 73301" +318819,Lightning Charging Cable,2,14.95,12/05/19 06:12,"838 Spruce St, San Francisco, CA 94016" +318820,Wired Headphones,1,11.99,12/08/19 15:41,"814 River St, Dallas, TX 75001" +318821,Lightning Charging Cable,1,14.95,12/22/19 16:53,"410 Ridge St, Austin, TX 73301" +318822,Bose SoundSport Headphones,1,99.99,12/10/19 13:42,"608 Church St, Boston, MA 02215" +318823,AA Batteries (4-pack),1,3.84,12/30/19 12:02,"911 Hickory St, Portland, ME 04101" +318824,USB-C Charging Cable,1,11.95,12/30/19 19:54,"312 Park St, New York City, NY 10001" +318825,Wired Headphones,1,11.99,12/29/19 13:01,"210 Meadow St, Boston, MA 02215" +318826,AA Batteries (4-pack),1,3.84,12/18/19 16:36,"924 5th St, Los Angeles, CA 90001" +318827,AAA Batteries (4-pack),2,2.99,12/22/19 10:30,"759 Ridge St, San Francisco, CA 94016" +318828,Macbook Pro Laptop,1,1700,12/19/19 22:59,"746 12th St, Austin, TX 73301" +318829,34in Ultrawide Monitor,1,379.99,12/13/19 14:46,"866 Hill St, Dallas, TX 75001" +318830,USB-C Charging Cable,1,11.95,12/14/19 20:38,"821 6th St, Seattle, WA 98101" +318831,Bose SoundSport Headphones,1,99.99,12/13/19 08:47,"150 Church St, Atlanta, GA 30301" +318832,Lightning Charging Cable,1,14.95,12/02/19 15:36,"555 Ridge St, Dallas, TX 75001" +318833,Lightning Charging Cable,1,14.95,12/13/19 13:35,"300 11th St, Los Angeles, CA 90001" +318833,Lightning Charging Cable,1,14.95,12/13/19 13:35,"300 11th St, Los Angeles, CA 90001" +318834,20in Monitor,1,109.99,12/19/19 13:35,"92 Washington St, Austin, TX 73301" +318835,Wired Headphones,1,11.99,12/31/19 11:24,"126 Wilson St, San Francisco, CA 94016" +318836,AA Batteries (4-pack),1,3.84,12/01/19 17:37,"834 River St, Austin, TX 73301" +318837,Wired Headphones,2,11.99,12/20/19 20:44,"816 Adams St, Boston, MA 02215" +318838,AAA Batteries (4-pack),2,2.99,12/10/19 11:06,"499 Jackson St, Atlanta, GA 30301" +318839,AAA Batteries (4-pack),3,2.99,12/30/19 20:16,"940 Madison St, Boston, MA 02215" +318840,Flatscreen TV,1,300,12/27/19 19:11,"276 Elm St, Boston, MA 02215" +318841,Bose SoundSport Headphones,1,99.99,12/16/19 13:44,"417 6th St, San Francisco, CA 94016" +318842,USB-C Charging Cable,1,11.95,12/27/19 19:42,"652 12th St, Dallas, TX 75001" +318843,AA Batteries (4-pack),1,3.84,12/20/19 08:38,"81 5th St, Los Angeles, CA 90001" +318843,Lightning Charging Cable,1,14.95,12/20/19 08:38,"81 5th St, Los Angeles, CA 90001" +318844,Apple Airpods Headphones,1,150,12/31/19 14:59,"745 Madison St, Los Angeles, CA 90001" +318845,AAA Batteries (4-pack),1,2.99,12/10/19 11:50,"134 Spruce St, Portland, OR 97035" +318846,34in Ultrawide Monitor,1,379.99,12/16/19 17:07,"263 4th St, Austin, TX 73301" +318847,Flatscreen TV,1,300,12/30/19 14:59,"674 11th St, Boston, MA 02215" +318848,USB-C Charging Cable,1,11.95,12/22/19 21:16,"522 West St, San Francisco, CA 94016" +318849,USB-C Charging Cable,1,11.95,12/14/19 09:12,"737 Pine St, San Francisco, CA 94016" +318850,Google Phone,1,600,12/11/19 17:00,"671 River St, New York City, NY 10001" +318851,AAA Batteries (4-pack),1,2.99,12/16/19 08:14,"547 Wilson St, Atlanta, GA 30301" +318851,AAA Batteries (4-pack),1,2.99,12/16/19 08:14,"547 Wilson St, Atlanta, GA 30301" +318852,AAA Batteries (4-pack),3,2.99,12/09/19 13:16,"667 8th St, New York City, NY 10001" +318853,Wired Headphones,1,11.99,12/08/19 16:55,"226 South St, Los Angeles, CA 90001" +318854,USB-C Charging Cable,1,11.95,12/25/19 18:04,"443 Dogwood St, New York City, NY 10001" +318855,iPhone,1,700,12/17/19 15:08,"632 Highland St, Dallas, TX 75001" +318855,Lightning Charging Cable,1,14.95,12/17/19 15:08,"632 Highland St, Dallas, TX 75001" +318856,Apple Airpods Headphones,1,150,12/27/19 17:03,"864 Madison St, Dallas, TX 75001" +318857,Wired Headphones,1,11.99,12/06/19 20:06,"276 14th St, Dallas, TX 75001" +318858,Wired Headphones,2,11.99,12/03/19 05:07,"151 4th St, Atlanta, GA 30301" +318859,27in 4K Gaming Monitor,1,389.99,12/27/19 18:57,"951 Washington St, New York City, NY 10001" +318860,Lightning Charging Cable,1,14.95,12/29/19 15:48,"735 Walnut St, New York City, NY 10001" +318861,USB-C Charging Cable,1,11.95,12/24/19 17:04,"658 Jackson St, San Francisco, CA 94016" +318862,20in Monitor,1,109.99,12/18/19 22:12,"831 2nd St, Portland, OR 97035" +318863,AA Batteries (4-pack),1,3.84,12/13/19 14:25,"317 Pine St, Atlanta, GA 30301" +318864,USB-C Charging Cable,1,11.95,12/18/19 20:02,"112 1st St, Dallas, TX 75001" +318865,Lightning Charging Cable,1,14.95,12/17/19 14:42,"481 Walnut St, San Francisco, CA 94016" +318866,Bose SoundSport Headphones,1,99.99,12/23/19 22:58,"98 12th St, Boston, MA 02215" +318867,ThinkPad Laptop,1,999.99,12/11/19 15:34,"710 Lincoln St, Los Angeles, CA 90001" +318868,Wired Headphones,2,11.99,12/02/19 18:31,"121 Lincoln St, Dallas, TX 75001" +318869,iPhone,1,700,12/06/19 12:05,"688 Hickory St, Atlanta, GA 30301" +318870,27in 4K Gaming Monitor,1,389.99,12/11/19 09:33,"890 9th St, Austin, TX 73301" +318871,Apple Airpods Headphones,1,150,12/31/19 19:53,"505 Hickory St, San Francisco, CA 94016" +318872,27in FHD Monitor,1,149.99,12/01/19 09:10,"10 Chestnut St, Los Angeles, CA 90001" +318873,AAA Batteries (4-pack),1,2.99,12/06/19 07:45,"653 Main St, Austin, TX 73301" +318874,Lightning Charging Cable,1,14.95,12/09/19 20:37,"813 Jefferson St, Los Angeles, CA 90001" +318875,Bose SoundSport Headphones,1,99.99,12/15/19 11:53,"984 13th St, Boston, MA 02215" +318876,AAA Batteries (4-pack),2,2.99,12/16/19 17:40,"97 4th St, Atlanta, GA 30301" +318877,Lightning Charging Cable,1,14.95,12/21/19 08:07,"564 Johnson St, Los Angeles, CA 90001" +318878,USB-C Charging Cable,1,11.95,12/05/19 18:30,"287 Hill St, Boston, MA 02215" +318879,Lightning Charging Cable,1,14.95,12/07/19 17:16,"673 Dogwood St, Los Angeles, CA 90001" +318880,iPhone,1,700,12/29/19 13:57,"739 Madison St, New York City, NY 10001" +318880,Apple Airpods Headphones,1,150,12/29/19 13:57,"739 Madison St, New York City, NY 10001" +318881,USB-C Charging Cable,2,11.95,12/03/19 08:17,"641 Spruce St, Austin, TX 73301" +318882,AAA Batteries (4-pack),1,2.99,12/28/19 17:35,"37 4th St, Seattle, WA 98101" +318883,AAA Batteries (4-pack),1,2.99,12/03/19 12:04,"266 Lincoln St, Los Angeles, CA 90001" +318884,Lightning Charging Cable,1,14.95,12/25/19 11:11,"52 South St, San Francisco, CA 94016" +318885,34in Ultrawide Monitor,1,379.99,12/16/19 19:37,"328 Highland St, San Francisco, CA 94016" +318886,USB-C Charging Cable,1,11.95,12/06/19 18:34,"363 Walnut St, Los Angeles, CA 90001" +318887,20in Monitor,1,109.99,12/03/19 16:22,"563 Jefferson St, San Francisco, CA 94016" +318888,AA Batteries (4-pack),2,3.84,12/25/19 21:39,"329 Johnson St, Los Angeles, CA 90001" +318889,27in FHD Monitor,1,149.99,12/13/19 09:24,"833 Cherry St, Atlanta, GA 30301" +318890,Bose SoundSport Headphones,1,99.99,12/25/19 21:08,"628 Lake St, San Francisco, CA 94016" +318891,Lightning Charging Cable,1,14.95,12/09/19 07:27,"940 Church St, San Francisco, CA 94016" +318892,AAA Batteries (4-pack),1,2.99,12/09/19 12:25,"263 Pine St, New York City, NY 10001" +318893,Wired Headphones,1,11.99,12/23/19 16:33,"654 9th St, Austin, TX 73301" +318894,Apple Airpods Headphones,1,150,12/22/19 20:13,"932 2nd St, San Francisco, CA 94016" +318895,AAA Batteries (4-pack),1,2.99,12/14/19 12:30,"434 13th St, Boston, MA 02215" +318896,Lightning Charging Cable,1,14.95,12/11/19 15:33,"263 Highland St, Los Angeles, CA 90001" +318897,27in FHD Monitor,1,149.99,12/09/19 11:46,"510 Chestnut St, Los Angeles, CA 90001" +318898,AA Batteries (4-pack),1,3.84,12/18/19 11:16,"622 South St, New York City, NY 10001" +318899,Apple Airpods Headphones,1,150,12/29/19 09:54,"677 7th St, San Francisco, CA 94016" +318900,iPhone,1,700,12/09/19 09:50,"200 Maple St, San Francisco, CA 94016" +318901,Google Phone,1,600,12/20/19 08:52,"681 Lake St, New York City, NY 10001" +318902,AA Batteries (4-pack),1,3.84,12/05/19 16:00,"115 Willow St, New York City, NY 10001" +318903,20in Monitor,1,109.99,12/08/19 11:46,"494 Maple St, New York City, NY 10001" +318904,iPhone,1,700,12/01/19 09:25,"484 Cedar St, Los Angeles, CA 90001" +318905,USB-C Charging Cable,1,11.95,12/23/19 16:43,"674 Church St, New York City, NY 10001" +318906,Apple Airpods Headphones,1,150,12/13/19 11:07,"727 10th St, New York City, NY 10001" +318907,AAA Batteries (4-pack),3,2.99,12/27/19 16:04,"579 Chestnut St, New York City, NY 10001" +318908,USB-C Charging Cable,1,11.95,12/20/19 06:41,"390 7th St, Boston, MA 02215" +318909,Apple Airpods Headphones,1,150,12/19/19 16:08,"84 2nd St, Boston, MA 02215" +318910,AAA Batteries (4-pack),1,2.99,12/08/19 09:13,"626 Elm St, New York City, NY 10001" +318911,iPhone,1,700,12/11/19 19:52,"623 6th St, San Francisco, CA 94016" +318912,AAA Batteries (4-pack),1,2.99,12/12/19 00:40,"790 Wilson St, San Francisco, CA 94016" +,,,,, +318913,Lightning Charging Cable,1,14.95,12/27/19 16:45,"809 Church St, Atlanta, GA 30301" +318914,Apple Airpods Headphones,1,150,12/27/19 08:51,"150 Lake St, Boston, MA 02215" +318915,AA Batteries (4-pack),1,3.84,12/12/19 13:13,"442 Maple St, New York City, NY 10001" +318916,USB-C Charging Cable,1,11.95,12/09/19 12:20,"820 Park St, San Francisco, CA 94016" +318917,ThinkPad Laptop,1,999.99,12/05/19 18:54,"888 1st St, Portland, ME 04101" +318918,Bose SoundSport Headphones,1,99.99,12/06/19 13:22,"60 Forest St, Los Angeles, CA 90001" +318919,Bose SoundSport Headphones,1,99.99,12/04/19 18:44,"110 Jefferson St, San Francisco, CA 94016" +318920,20in Monitor,1,109.99,12/25/19 19:57,"286 Lakeview St, Seattle, WA 98101" +318921,AA Batteries (4-pack),2,3.84,12/29/19 15:30,"696 River St, Boston, MA 02215" +318922,AAA Batteries (4-pack),1,2.99,12/28/19 15:26,"934 Adams St, Boston, MA 02215" +318923,Wired Headphones,1,11.99,12/06/19 20:13,"465 Ridge St, Seattle, WA 98101" +318924,AA Batteries (4-pack),1,3.84,12/03/19 00:35,"659 Elm St, Portland, OR 97035" +318925,AA Batteries (4-pack),1,3.84,12/15/19 12:15,"903 Willow St, Los Angeles, CA 90001" +318926,Flatscreen TV,1,300,12/11/19 21:17,"46 Maple St, Seattle, WA 98101" +318927,Wired Headphones,1,11.99,12/03/19 19:09,"285 South St, Los Angeles, CA 90001" +318928,Lightning Charging Cable,1,14.95,12/19/19 13:17,"683 4th St, San Francisco, CA 94016" +318929,iPhone,1,700,12/26/19 20:15,"789 2nd St, San Francisco, CA 94016" +318930,USB-C Charging Cable,1,11.95,12/21/19 11:03,"113 11th St, Boston, MA 02215" +318931,USB-C Charging Cable,1,11.95,12/15/19 14:47,"265 4th St, Dallas, TX 75001" +318932,AA Batteries (4-pack),1,3.84,12/31/19 00:24,"956 Center St, Portland, OR 97035" +318933,Apple Airpods Headphones,1,150,12/28/19 20:00,"786 5th St, San Francisco, CA 94016" +318934,USB-C Charging Cable,1,11.95,12/07/19 20:06,"94 10th St, Los Angeles, CA 90001" +318935,Apple Airpods Headphones,1,150,12/06/19 18:39,"94 Lakeview St, Atlanta, GA 30301" +318936,AA Batteries (4-pack),2,3.84,12/18/19 14:13,"40 Pine St, Los Angeles, CA 90001" +318937,Bose SoundSport Headphones,1,99.99,12/11/19 20:13,"740 Center St, Atlanta, GA 30301" +318938,AA Batteries (4-pack),1,3.84,12/03/19 04:08,"737 Washington St, Los Angeles, CA 90001" +318939,AAA Batteries (4-pack),1,2.99,12/24/19 18:16,"494 Cedar St, Boston, MA 02215" +318940,Flatscreen TV,1,300,12/07/19 12:45,"136 South St, Portland, ME 04101" +318941,Wired Headphones,1,11.99,12/29/19 20:58,"794 Forest St, Atlanta, GA 30301" +318942,Bose SoundSport Headphones,1,99.99,12/25/19 15:05,"602 Church St, San Francisco, CA 94016" +318943,Apple Airpods Headphones,1,150,12/16/19 20:37,"548 Willow St, San Francisco, CA 94016" +318944,AAA Batteries (4-pack),1,2.99,12/21/19 18:42,"373 Spruce St, San Francisco, CA 94016" +318945,Macbook Pro Laptop,1,1700,12/28/19 11:28,"67 Johnson St, New York City, NY 10001" +318946,AAA Batteries (4-pack),1,2.99,12/01/19 16:46,"498 Church St, Austin, TX 73301" +318947,USB-C Charging Cable,1,11.95,12/23/19 13:17,"929 Pine St, Austin, TX 73301" +318948,Lightning Charging Cable,1,14.95,12/22/19 22:10,"187 Forest St, Portland, OR 97035" +318949,Wired Headphones,1,11.99,12/30/19 13:20,"591 Ridge St, Los Angeles, CA 90001" +318950,iPhone,1,700,12/01/19 21:36,"245 Center St, Portland, OR 97035" +318951,Wired Headphones,1,11.99,12/22/19 12:22,"964 Cherry St, Portland, OR 97035" +318952,AAA Batteries (4-pack),1,2.99,12/16/19 06:20,"439 14th St, Austin, TX 73301" +318953,Apple Airpods Headphones,1,150,12/12/19 13:51,"876 Ridge St, Atlanta, GA 30301" +318954,Bose SoundSport Headphones,1,99.99,12/28/19 10:25,"472 Cherry St, Los Angeles, CA 90001" +318955,AAA Batteries (4-pack),2,2.99,12/22/19 09:55,"323 9th St, San Francisco, CA 94016" +318956,Wired Headphones,1,11.99,12/15/19 14:52,"111 Johnson St, Boston, MA 02215" +318957,Flatscreen TV,1,300,12/17/19 00:21,"114 9th St, San Francisco, CA 94016" +318958,Google Phone,1,600,12/16/19 12:12,"95 Elm St, New York City, NY 10001" +318958,Wired Headphones,1,11.99,12/16/19 12:12,"95 Elm St, New York City, NY 10001" +318959,27in FHD Monitor,1,149.99,12/03/19 18:42,"105 North St, Atlanta, GA 30301" +318960,Lightning Charging Cable,2,14.95,12/31/19 20:14,"467 Hill St, Boston, MA 02215" +318961,AAA Batteries (4-pack),1,2.99,12/04/19 13:11,"460 1st St, New York City, NY 10001" +318962,USB-C Charging Cable,1,11.95,12/27/19 19:40,"213 Lakeview St, New York City, NY 10001" +318963,27in 4K Gaming Monitor,1,389.99,12/08/19 18:58,"718 Hill St, San Francisco, CA 94016" +318964,Bose SoundSport Headphones,1,99.99,12/13/19 20:45,"70 Meadow St, San Francisco, CA 94016" +318965,27in 4K Gaming Monitor,1,389.99,12/25/19 16:38,"138 Jackson St, Boston, MA 02215" +318966,27in 4K Gaming Monitor,1,389.99,12/08/19 16:33,"82 9th St, Los Angeles, CA 90001" +318967,iPhone,1,700,12/24/19 18:12,"351 South St, Atlanta, GA 30301" +318968,Bose SoundSport Headphones,1,99.99,12/03/19 00:34,"637 Highland St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +318969,AAA Batteries (4-pack),1,2.99,12/27/19 15:13,"750 10th St, Dallas, TX 75001" +318970,Vareebadd Phone,1,400,12/30/19 18:31,"720 11th St, New York City, NY 10001" +318971,USB-C Charging Cable,1,11.95,12/01/19 20:25,"336 Forest St, Seattle, WA 98101" +318972,USB-C Charging Cable,1,11.95,12/31/19 15:44,"423 Park St, San Francisco, CA 94016" +318973,Lightning Charging Cable,1,14.95,12/01/19 08:36,"342 Washington St, Portland, ME 04101" +318974,Wired Headphones,1,11.99,12/25/19 14:20,"14 Spruce St, Boston, MA 02215" +318975,34in Ultrawide Monitor,1,379.99,12/26/19 19:02,"966 2nd St, Los Angeles, CA 90001" +318976,27in 4K Gaming Monitor,1,389.99,12/06/19 10:22,"845 13th St, New York City, NY 10001" +318977,27in FHD Monitor,1,149.99,12/03/19 15:09,"527 Elm St, Boston, MA 02215" +318978,AA Batteries (4-pack),1,3.84,12/12/19 20:25,"348 Cedar St, Boston, MA 02215" +318979,Flatscreen TV,1,300,12/14/19 11:56,"453 6th St, Los Angeles, CA 90001" +318980,USB-C Charging Cable,1,11.95,12/02/19 09:39,"687 13th St, Los Angeles, CA 90001" +318981,AA Batteries (4-pack),1,3.84,12/09/19 16:26,"359 Cedar St, Boston, MA 02215" +318982,AA Batteries (4-pack),1,3.84,12/23/19 09:19,"638 Meadow St, New York City, NY 10001" +318983,ThinkPad Laptop,1,999.99,12/31/19 07:35,"768 Spruce St, San Francisco, CA 94016" +318984,27in 4K Gaming Monitor,1,389.99,12/30/19 17:27,"122 River St, Los Angeles, CA 90001" +318985,Lightning Charging Cable,1,14.95,12/18/19 22:35,"442 Jefferson St, Boston, MA 02215" +318986,USB-C Charging Cable,1,11.95,12/06/19 13:51,"482 Madison St, Atlanta, GA 30301" +318987,Flatscreen TV,1,300,12/09/19 12:09,"239 South St, Los Angeles, CA 90001" +318988,Apple Airpods Headphones,1,150,12/30/19 20:05,"501 Meadow St, New York City, NY 10001" +318989,Bose SoundSport Headphones,1,99.99,12/05/19 16:21,"898 7th St, San Francisco, CA 94016" +318990,AAA Batteries (4-pack),2,2.99,12/26/19 23:04,"259 10th St, Portland, OR 97035" +318991,USB-C Charging Cable,1,11.95,12/03/19 18:00,"346 Wilson St, Boston, MA 02215" +318992,USB-C Charging Cable,1,11.95,12/10/19 03:45,"121 Madison St, San Francisco, CA 94016" +318993,Google Phone,1,600,12/13/19 16:50,"218 Walnut St, Los Angeles, CA 90001" +318994,AAA Batteries (4-pack),1,2.99,12/31/19 19:52,"56 Adams St, Seattle, WA 98101" +318995,AAA Batteries (4-pack),2,2.99,12/26/19 21:45,"106 Highland St, San Francisco, CA 94016" +318996,34in Ultrawide Monitor,1,379.99,12/09/19 08:17,"635 Washington St, New York City, NY 10001" +318997,Lightning Charging Cable,1,14.95,12/12/19 13:35,"568 Spruce St, Los Angeles, CA 90001" +318998,AAA Batteries (4-pack),1,2.99,12/12/19 18:32,"142 Johnson St, Boston, MA 02215" +318999,USB-C Charging Cable,1,11.95,12/03/19 12:53,"876 2nd St, San Francisco, CA 94016" +319000,34in Ultrawide Monitor,1,379.99,12/13/19 07:55,"700 North St, New York City, NY 10001" +319001,27in FHD Monitor,1,149.99,12/28/19 18:14,"625 14th St, New York City, NY 10001" +319001,Bose SoundSport Headphones,1,99.99,12/28/19 18:14,"625 14th St, New York City, NY 10001" +319002,USB-C Charging Cable,1,11.95,12/23/19 10:47,"895 Maple St, New York City, NY 10001" +319003,Lightning Charging Cable,1,14.95,12/21/19 10:19,"459 Willow St, Los Angeles, CA 90001" +319004,Google Phone,1,600,12/13/19 18:27,"205 River St, New York City, NY 10001" +319005,AA Batteries (4-pack),1,3.84,12/30/19 18:56,"845 Cherry St, New York City, NY 10001" +319006,iPhone,1,700,12/15/19 17:42,"847 River St, San Francisco, CA 94016" +319007,AAA Batteries (4-pack),3,2.99,12/01/19 08:50,"800 Walnut St, New York City, NY 10001" +319008,USB-C Charging Cable,1,11.95,12/29/19 15:15,"513 Maple St, Los Angeles, CA 90001" +319009,Wired Headphones,1,11.99,12/20/19 19:03,"377 Washington St, Seattle, WA 98101" +319010,Wired Headphones,1,11.99,12/31/19 10:52,"388 Sunset St, San Francisco, CA 94016" +319011,Flatscreen TV,1,300,12/30/19 16:28,"629 Madison St, Seattle, WA 98101" +319012,AAA Batteries (4-pack),2,2.99,12/14/19 10:47,"992 Jefferson St, San Francisco, CA 94016" +319013,AA Batteries (4-pack),1,3.84,12/17/19 14:13,"9 Wilson St, San Francisco, CA 94016" +319014,Apple Airpods Headphones,1,150,12/27/19 07:11,"383 Washington St, San Francisco, CA 94016" +319015,27in FHD Monitor,1,149.99,12/01/19 20:34,"839 Church St, San Francisco, CA 94016" +319016,Flatscreen TV,1,300,12/15/19 21:46,"139 9th St, Boston, MA 02215" +319017,27in 4K Gaming Monitor,1,389.99,12/24/19 13:21,"134 2nd St, Seattle, WA 98101" +319018,27in FHD Monitor,1,149.99,12/27/19 21:14,"437 Hickory St, Portland, OR 97035" +319019,Apple Airpods Headphones,1,150,12/09/19 22:25,"861 1st St, San Francisco, CA 94016" +319020,Apple Airpods Headphones,1,150,12/06/19 04:21,"404 North St, San Francisco, CA 94016" +319020,LG Dryer,1,600.0,12/06/19 04:21,"404 North St, San Francisco, CA 94016" +319021,AAA Batteries (4-pack),2,2.99,12/17/19 13:09,"997 Lincoln St, Atlanta, GA 30301" +319022,AAA Batteries (4-pack),1,2.99,12/05/19 19:58,"992 Sunset St, Los Angeles, CA 90001" +319023,Apple Airpods Headphones,1,150,12/24/19 16:32,"287 Pine St, San Francisco, CA 94016" +319024,Apple Airpods Headphones,1,150,12/05/19 09:43,"848 Chestnut St, Dallas, TX 75001" +319025,Wired Headphones,1,11.99,12/20/19 10:52,"662 Cedar St, New York City, NY 10001" +319026,USB-C Charging Cable,1,11.95,12/03/19 17:40,"9 Adams St, Dallas, TX 75001" +319027,Bose SoundSport Headphones,1,99.99,12/27/19 17:20,"244 Spruce St, Boston, MA 02215" +319028,Bose SoundSport Headphones,1,99.99,12/04/19 21:31,"524 Lakeview St, New York City, NY 10001" +319029,Wired Headphones,2,11.99,12/10/19 13:16,"288 Pine St, Boston, MA 02215" +319030,Apple Airpods Headphones,1,150,12/15/19 14:31,"597 10th St, San Francisco, CA 94016" +319031,Wired Headphones,1,11.99,12/19/19 12:49,"644 11th St, Dallas, TX 75001" +319032,USB-C Charging Cable,1,11.95,12/03/19 18:08,"109 Johnson St, Boston, MA 02215" +319033,USB-C Charging Cable,1,11.95,12/29/19 20:30,"848 River St, Austin, TX 73301" +319034,USB-C Charging Cable,1,11.95,12/30/19 15:53,"688 7th St, Dallas, TX 75001" +319035,27in 4K Gaming Monitor,1,389.99,12/24/19 17:26,"542 Cherry St, Dallas, TX 75001" +319036,Bose SoundSport Headphones,1,99.99,12/02/19 17:08,"429 South St, Seattle, WA 98101" +319037,Lightning Charging Cable,1,14.95,12/26/19 09:55,"388 14th St, Dallas, TX 75001" +319038,AAA Batteries (4-pack),2,2.99,12/23/19 14:10,"118 Lincoln St, San Francisco, CA 94016" +319039,34in Ultrawide Monitor,1,379.99,12/29/19 12:13,"151 Pine St, New York City, NY 10001" +319040,Lightning Charging Cable,1,14.95,12/24/19 06:53,"729 Chestnut St, New York City, NY 10001" +319041,Wired Headphones,1,11.99,12/05/19 20:17,"696 10th St, San Francisco, CA 94016" +319042,Wired Headphones,1,11.99,12/13/19 21:09,"428 Cedar St, Austin, TX 73301" +319043,USB-C Charging Cable,1,11.95,12/02/19 11:47,"238 Ridge St, Portland, ME 04101" +319044,Bose SoundSport Headphones,1,99.99,12/06/19 18:36,"293 Center St, New York City, NY 10001" +319045,iPhone,1,700,12/18/19 03:59,"516 Maple St, New York City, NY 10001" +319046,Apple Airpods Headphones,1,150,12/04/19 11:05,"487 Johnson St, Boston, MA 02215" +319047,Lightning Charging Cable,1,14.95,12/16/19 21:07,"607 Meadow St, Austin, TX 73301" +319048,AA Batteries (4-pack),1,3.84,12/24/19 08:15,"389 11th St, Dallas, TX 75001" +319049,27in 4K Gaming Monitor,1,389.99,12/15/19 16:57,"302 1st St, Atlanta, GA 30301" +319050,Wired Headphones,1,11.99,12/22/19 20:07,"533 Madison St, New York City, NY 10001" +319051,USB-C Charging Cable,1,11.95,12/21/19 23:29,"609 Highland St, San Francisco, CA 94016" +319052,iPhone,1,700,12/06/19 21:53,"682 Chestnut St, San Francisco, CA 94016" +319053,AA Batteries (4-pack),1,3.84,12/29/19 12:16,"358 West St, New York City, NY 10001" +319054,AA Batteries (4-pack),2,3.84,12/28/19 17:08,"116 West St, Austin, TX 73301" +319055,Wired Headphones,1,11.99,12/18/19 22:02,"187 9th St, Los Angeles, CA 90001" +319056,AAA Batteries (4-pack),1,2.99,12/07/19 20:52,"441 11th St, Los Angeles, CA 90001" +319057,27in FHD Monitor,1,149.99,12/10/19 12:25,"616 West St, Los Angeles, CA 90001" +319058,ThinkPad Laptop,1,999.99,12/14/19 10:44,"982 Hill St, Los Angeles, CA 90001" +319059,AA Batteries (4-pack),2,3.84,12/09/19 08:54,"379 Ridge St, Boston, MA 02215" +319060,Wired Headphones,1,11.99,12/12/19 21:10,"825 Cherry St, Portland, ME 04101" +319061,Apple Airpods Headphones,1,150,12/27/19 21:26,"821 8th St, Los Angeles, CA 90001" +319062,Lightning Charging Cable,1,14.95,12/29/19 22:46,"42 12th St, San Francisco, CA 94016" +319063,27in FHD Monitor,1,149.99,12/09/19 17:21,"460 Lincoln St, Los Angeles, CA 90001" +319064,Bose SoundSport Headphones,1,99.99,12/21/19 12:02,"48 Wilson St, Boston, MA 02215" +319065,iPhone,1,700,12/04/19 08:49,"246 Lincoln St, Boston, MA 02215" +319065,Lightning Charging Cable,1,14.95,12/04/19 08:49,"246 Lincoln St, Boston, MA 02215" +319066,27in 4K Gaming Monitor,1,389.99,12/15/19 10:06,"423 South St, Seattle, WA 98101" +319067,Wired Headphones,1,11.99,12/11/19 14:44,"991 Lincoln St, Los Angeles, CA 90001" +319068,AAA Batteries (4-pack),3,2.99,12/07/19 11:11,"61 11th St, Boston, MA 02215" +319069,AA Batteries (4-pack),1,3.84,12/19/19 01:10,"577 1st St, Los Angeles, CA 90001" +319070,27in 4K Gaming Monitor,1,389.99,12/01/19 20:08,"596 Lincoln St, Seattle, WA 98101" +319071,Bose SoundSport Headphones,1,99.99,12/16/19 17:45,"908 Johnson St, Los Angeles, CA 90001" +319072,Lightning Charging Cable,1,14.95,12/10/19 14:42,"451 5th St, Boston, MA 02215" +319073,Wired Headphones,1,11.99,12/29/19 13:51,"269 Ridge St, San Francisco, CA 94016" +319074,Lightning Charging Cable,2,14.95,12/08/19 18:31,"386 River St, Seattle, WA 98101" +319075,Vareebadd Phone,1,400,12/22/19 15:12,"373 Main St, Los Angeles, CA 90001" +319076,AAA Batteries (4-pack),1,2.99,12/11/19 17:29,"125 11th St, San Francisco, CA 94016" +319077,Wired Headphones,1,11.99,12/03/19 11:08,"786 Willow St, Seattle, WA 98101" +319078,27in FHD Monitor,1,149.99,12/23/19 18:32,"643 Jefferson St, Boston, MA 02215" +319079,27in 4K Gaming Monitor,1,389.99,12/12/19 05:57,"626 Pine St, Dallas, TX 75001" +319080,Vareebadd Phone,1,400,12/29/19 05:34,"675 Church St, Los Angeles, CA 90001" +319080,USB-C Charging Cable,1,11.95,12/29/19 05:34,"675 Church St, Los Angeles, CA 90001" +319081,USB-C Charging Cable,1,11.95,12/20/19 17:59,"645 Highland St, San Francisco, CA 94016" +319082,USB-C Charging Cable,1,11.95,12/09/19 09:02,"504 Washington St, New York City, NY 10001" +319083,Lightning Charging Cable,1,14.95,12/03/19 21:02,"703 Pine St, San Francisco, CA 94016" +319084,Wired Headphones,1,11.99,12/24/19 16:24,"586 Walnut St, Atlanta, GA 30301" +319085,27in FHD Monitor,1,149.99,12/26/19 20:21,"792 11th St, Los Angeles, CA 90001" +319086,Macbook Pro Laptop,1,1700,12/18/19 10:36,"694 Washington St, San Francisco, CA 94016" +319087,Macbook Pro Laptop,1,1700,12/17/19 12:01,"403 South St, Austin, TX 73301" +319088,Wired Headphones,1,11.99,12/27/19 13:42,"848 Hickory St, Atlanta, GA 30301" +319089,AA Batteries (4-pack),1,3.84,12/15/19 15:56,"977 Cherry St, Seattle, WA 98101" +319090,Lightning Charging Cable,1,14.95,12/19/19 13:01,"255 Cherry St, San Francisco, CA 94016" +319091,AA Batteries (4-pack),1,3.84,12/10/19 21:04,"215 Park St, New York City, NY 10001" +319092,AA Batteries (4-pack),1,3.84,12/27/19 14:54,"214 Park St, San Francisco, CA 94016" +319093,Lightning Charging Cable,1,14.95,12/01/19 10:28,"798 Dogwood St, San Francisco, CA 94016" +319094,AA Batteries (4-pack),1,3.84,12/31/19 14:35,"120 Washington St, Los Angeles, CA 90001" +319095,Macbook Pro Laptop,1,1700,12/12/19 08:53,"400 Wilson St, Los Angeles, CA 90001" +319096,USB-C Charging Cable,1,11.95,12/12/19 14:57,"864 Elm St, San Francisco, CA 94016" +319097,Lightning Charging Cable,1,14.95,12/13/19 19:26,"734 Maple St, Dallas, TX 75001" +319098,Wired Headphones,1,11.99,12/27/19 12:16,"59 Highland St, New York City, NY 10001" +319099,USB-C Charging Cable,1,11.95,12/04/19 20:21,"200 1st St, San Francisco, CA 94016" +319100,AA Batteries (4-pack),1,3.84,12/16/19 10:00,"189 10th St, New York City, NY 10001" +319101,iPhone,1,700,12/05/19 19:16,"839 Jackson St, New York City, NY 10001" +319102,Flatscreen TV,1,300,12/19/19 14:17,"238 Forest St, Los Angeles, CA 90001" +319103,Lightning Charging Cable,1,14.95,12/13/19 09:46,"296 Cedar St, Boston, MA 02215" +319104,USB-C Charging Cable,1,11.95,12/02/19 12:41,"236 7th St, Atlanta, GA 30301" +319105,AA Batteries (4-pack),2,3.84,12/09/19 23:48,"158 Center St, Boston, MA 02215" +319106,Bose SoundSport Headphones,1,99.99,12/27/19 20:10,"271 Cherry St, New York City, NY 10001" +319107,USB-C Charging Cable,1,11.95,12/14/19 18:38,"376 14th St, Boston, MA 02215" +319108,AAA Batteries (4-pack),1,2.99,12/14/19 15:06,"249 9th St, Seattle, WA 98101" +319109,Vareebadd Phone,1,400,12/21/19 13:26,"269 2nd St, Austin, TX 73301" +319110,AAA Batteries (4-pack),5,2.99,12/14/19 23:24,"718 Main St, Atlanta, GA 30301" +319111,AAA Batteries (4-pack),2,2.99,12/11/19 20:26,"655 Lake St, Los Angeles, CA 90001" +319112,20in Monitor,1,109.99,12/21/19 09:13,"735 Jackson St, Seattle, WA 98101" +319113,Wired Headphones,1,11.99,12/21/19 18:42,"75 Center St, Los Angeles, CA 90001" +319114,Wired Headphones,1,11.99,12/26/19 20:18,"36 7th St, Atlanta, GA 30301" +319115,AA Batteries (4-pack),2,3.84,12/29/19 08:21,"418 2nd St, San Francisco, CA 94016" +319116,Bose SoundSport Headphones,1,99.99,12/28/19 21:18,"903 North St, New York City, NY 10001" +319116,AA Batteries (4-pack),2,3.84,12/28/19 21:18,"903 North St, New York City, NY 10001" +319117,Apple Airpods Headphones,1,150,12/21/19 21:16,"206 River St, Austin, TX 73301" +319118,Wired Headphones,1,11.99,12/14/19 20:47,"714 5th St, New York City, NY 10001" +319119,iPhone,1,700,12/15/19 17:36,"104 Ridge St, San Francisco, CA 94016" +319119,Lightning Charging Cable,1,14.95,12/15/19 17:36,"104 Ridge St, San Francisco, CA 94016" +319120,Wired Headphones,1,11.99,12/15/19 22:09,"877 Chestnut St, Los Angeles, CA 90001" +319121,Lightning Charging Cable,1,14.95,12/19/19 22:25,"985 Cedar St, San Francisco, CA 94016" +319122,Apple Airpods Headphones,1,150,12/23/19 23:21,"503 Walnut St, Boston, MA 02215" +319123,Flatscreen TV,1,300,12/07/19 08:54,"746 West St, Boston, MA 02215" +319124,AAA Batteries (4-pack),1,2.99,12/26/19 14:38,"200 Center St, Portland, OR 97035" +319125,Apple Airpods Headphones,1,150,12/24/19 12:29,"598 Hill St, New York City, NY 10001" +319126,AA Batteries (4-pack),1,3.84,12/10/19 04:58,"144 6th St, San Francisco, CA 94016" +319127,Lightning Charging Cable,1,14.95,12/03/19 16:32,"639 7th St, Los Angeles, CA 90001" +319128,27in 4K Gaming Monitor,1,389.99,12/12/19 21:24,"727 Wilson St, New York City, NY 10001" +319129,Lightning Charging Cable,1,14.95,12/04/19 22:54,"555 13th St, New York City, NY 10001" +319130,Apple Airpods Headphones,1,150,12/06/19 17:44,"513 Spruce St, San Francisco, CA 94016" +319131,Google Phone,1,600,12/07/19 11:47,"564 Center St, New York City, NY 10001" +319131,Wired Headphones,1,11.99,12/07/19 11:47,"564 Center St, New York City, NY 10001" +319132,AA Batteries (4-pack),1,3.84,12/04/19 20:51,"375 4th St, Seattle, WA 98101" +319133,iPhone,1,700,12/20/19 05:05,"184 8th St, San Francisco, CA 94016" +319134,AAA Batteries (4-pack),1,2.99,12/14/19 16:20,"414 1st St, Dallas, TX 75001" +319135,ThinkPad Laptop,1,999.99,12/24/19 10:12,"989 1st St, Dallas, TX 75001" +319136,USB-C Charging Cable,1,11.95,12/12/19 12:49,"460 12th St, Boston, MA 02215" +319137,AAA Batteries (4-pack),1,2.99,12/03/19 20:28,"623 Jefferson St, Seattle, WA 98101" +319138,AAA Batteries (4-pack),1,2.99,12/18/19 11:08,"158 River St, Boston, MA 02215" +319139,USB-C Charging Cable,1,11.95,12/30/19 15:14,"99 Madison St, San Francisco, CA 94016" +319140,Apple Airpods Headphones,1,150,12/22/19 13:11,"819 Washington St, Los Angeles, CA 90001" +319141,Apple Airpods Headphones,1,150,12/05/19 15:53,"569 Lincoln St, Portland, OR 97035" +319142,Wired Headphones,1,11.99,12/22/19 17:04,"848 9th St, Seattle, WA 98101" +319143,20in Monitor,1,109.99,12/01/19 12:27,"674 Elm St, Los Angeles, CA 90001" +319144,27in 4K Gaming Monitor,1,389.99,12/02/19 19:04,"863 Forest St, Austin, TX 73301" +319145,34in Ultrawide Monitor,1,379.99,12/03/19 14:44,"742 12th St, San Francisco, CA 94016" +319146,34in Ultrawide Monitor,1,379.99,12/17/19 17:49,"220 Sunset St, Portland, OR 97035" +319147,Bose SoundSport Headphones,1,99.99,12/24/19 14:46,"437 Adams St, Austin, TX 73301" +319148,Google Phone,1,600,12/01/19 22:21,"898 Dogwood St, Dallas, TX 75001" +319149,AAA Batteries (4-pack),2,2.99,12/25/19 17:41,"127 Sunset St, Austin, TX 73301" +319150,USB-C Charging Cable,1,11.95,12/17/19 19:48,"502 Johnson St, Los Angeles, CA 90001" +319151,27in FHD Monitor,1,149.99,12/26/19 19:05,"665 Washington St, Portland, OR 97035" +319152,AAA Batteries (4-pack),2,2.99,12/12/19 17:41,"663 10th St, Dallas, TX 75001" +319153,USB-C Charging Cable,1,11.95,12/04/19 21:33,"669 Ridge St, Seattle, WA 98101" +319154,AAA Batteries (4-pack),1,2.99,12/06/19 00:15,"505 Jefferson St, New York City, NY 10001" +319155,AA Batteries (4-pack),1,3.84,12/17/19 09:11,"856 11th St, Austin, TX 73301" +319156,Apple Airpods Headphones,1,150,12/26/19 19:11,"130 Ridge St, Seattle, WA 98101" +319157,34in Ultrawide Monitor,1,379.99,12/06/19 11:55,"509 Forest St, Dallas, TX 75001" +319157,27in FHD Monitor,1,149.99,12/06/19 11:55,"509 Forest St, Dallas, TX 75001" +319158,AAA Batteries (4-pack),1,2.99,12/08/19 10:22,"984 West St, Seattle, WA 98101" +319159,USB-C Charging Cable,1,11.95,12/24/19 17:00,"642 8th St, San Francisco, CA 94016" +319160,AAA Batteries (4-pack),1,2.99,12/02/19 14:17,"150 Wilson St, San Francisco, CA 94016" +319161,Lightning Charging Cable,1,14.95,12/07/19 17:39,"678 11th St, San Francisco, CA 94016" +319162,AAA Batteries (4-pack),1,2.99,12/01/19 09:48,"171 Jefferson St, San Francisco, CA 94016" +319162,Google Phone,1,600,12/01/19 09:48,"171 Jefferson St, San Francisco, CA 94016" +319163,Lightning Charging Cable,1,14.95,12/06/19 19:28,"544 South St, San Francisco, CA 94016" +319164,Lightning Charging Cable,1,14.95,12/24/19 18:20,"556 14th St, Dallas, TX 75001" +319165,Bose SoundSport Headphones,1,99.99,12/25/19 19:28,"76 5th St, New York City, NY 10001" +319166,Apple Airpods Headphones,1,150,12/30/19 18:10,"876 West St, San Francisco, CA 94016" +319167,20in Monitor,1,109.99,12/20/19 19:57,"675 Walnut St, Los Angeles, CA 90001" +319168,AAA Batteries (4-pack),2,2.99,12/19/19 20:55,"345 Washington St, Portland, ME 04101" +319169,USB-C Charging Cable,1,11.95,12/03/19 10:08,"168 Elm St, Boston, MA 02215" +319170,Macbook Pro Laptop,1,1700,12/29/19 10:17,"595 Johnson St, Austin, TX 73301" +319171,Google Phone,1,600,12/12/19 20:23,"450 Sunset St, Austin, TX 73301" +319171,USB-C Charging Cable,1,11.95,12/12/19 20:23,"450 Sunset St, Austin, TX 73301" +319172,USB-C Charging Cable,1,11.95,12/16/19 09:29,"256 Forest St, Atlanta, GA 30301" +319173,Google Phone,1,600,12/13/19 17:43,"75 West St, Seattle, WA 98101" +319174,Vareebadd Phone,1,400,12/01/19 18:49,"677 Pine St, Boston, MA 02215" +319175,Google Phone,1,600,12/09/19 12:43,"927 Cherry St, San Francisco, CA 94016" +319176,AAA Batteries (4-pack),1,2.99,12/14/19 14:55,"993 Center St, New York City, NY 10001" +319177,AAA Batteries (4-pack),1,2.99,12/06/19 16:01,"76 Jackson St, Los Angeles, CA 90001" +319178,Apple Airpods Headphones,1,150,12/16/19 16:47,"380 Washington St, Austin, TX 73301" +319179,Wired Headphones,1,11.99,12/15/19 13:06,"118 2nd St, New York City, NY 10001" +319180,Bose SoundSport Headphones,1,99.99,12/22/19 20:50,"235 7th St, Los Angeles, CA 90001" +319181,Lightning Charging Cable,1,14.95,12/21/19 01:51,"286 Jackson St, New York City, NY 10001" +319182,iPhone,1,700,12/28/19 10:53,"765 Meadow St, San Francisco, CA 94016" +319183,Lightning Charging Cable,1,14.95,12/01/19 23:02,"868 Willow St, Austin, TX 73301" +319184,USB-C Charging Cable,3,11.95,12/31/19 21:30,"393 Church St, San Francisco, CA 94016" +319185,AAA Batteries (4-pack),2,2.99,12/25/19 11:55,"482 Forest St, New York City, NY 10001" +319186,USB-C Charging Cable,1,11.95,12/27/19 21:21,"141 Hill St, San Francisco, CA 94016" +319187,Macbook Pro Laptop,1,1700,12/06/19 19:13,"856 9th St, Dallas, TX 75001" +319188,Lightning Charging Cable,1,14.95,12/15/19 13:40,"35 Pine St, Los Angeles, CA 90001" +319189,Apple Airpods Headphones,1,150,12/10/19 12:05,"17 River St, Austin, TX 73301" +319190,Flatscreen TV,1,300,12/02/19 09:53,"671 10th St, San Francisco, CA 94016" +319191,USB-C Charging Cable,1,11.95,12/20/19 10:26,"616 Main St, Portland, ME 04101" +319192,USB-C Charging Cable,1,11.95,12/31/19 21:51,"886 4th St, Los Angeles, CA 90001" +319193,USB-C Charging Cable,1,11.95,12/25/19 14:28,"245 Highland St, Atlanta, GA 30301" +319194,AAA Batteries (4-pack),2,2.99,12/20/19 10:18,"105 2nd St, San Francisco, CA 94016" +319195,Lightning Charging Cable,1,14.95,12/17/19 13:00,"818 5th St, San Francisco, CA 94016" +319196,USB-C Charging Cable,1,11.95,12/11/19 23:00,"817 9th St, New York City, NY 10001" +319197,Macbook Pro Laptop,1,1700,12/28/19 13:26,"295 13th St, Dallas, TX 75001" +319198,Wired Headphones,1,11.99,12/05/19 17:33,"307 Willow St, Atlanta, GA 30301" +319199,Lightning Charging Cable,1,14.95,12/02/19 14:47,"825 12th St, Atlanta, GA 30301" +319200,Macbook Pro Laptop,1,1700,12/14/19 15:06,"842 Park St, San Francisco, CA 94016" +319201,USB-C Charging Cable,1,11.95,12/23/19 23:46,"263 Walnut St, Atlanta, GA 30301" +319202,Bose SoundSport Headphones,1,99.99,12/03/19 10:51,"79 10th St, Seattle, WA 98101" +319203,AAA Batteries (4-pack),2,2.99,12/17/19 13:16,"872 Meadow St, Portland, OR 97035" +319204,AAA Batteries (4-pack),3,2.99,12/09/19 08:57,"256 4th St, New York City, NY 10001" +319205,Lightning Charging Cable,1,14.95,12/18/19 23:01,"920 Sunset St, San Francisco, CA 94016" +319206,27in FHD Monitor,1,149.99,12/09/19 09:37,"615 Pine St, New York City, NY 10001" +319207,Google Phone,1,600,12/11/19 22:25,"223 South St, New York City, NY 10001" +319207,Wired Headphones,1,11.99,12/11/19 22:25,"223 South St, New York City, NY 10001" +319208,27in 4K Gaming Monitor,1,389.99,12/27/19 20:34,"658 Wilson St, San Francisco, CA 94016" +319209,Lightning Charging Cable,1,14.95,12/16/19 18:44,"981 West St, Seattle, WA 98101" +319210,Wired Headphones,2,11.99,12/28/19 21:24,"844 Adams St, Los Angeles, CA 90001" +319211,Lightning Charging Cable,1,14.95,12/11/19 12:04,"287 Park St, Boston, MA 02215" +319212,Wired Headphones,1,11.99,12/22/19 13:47,"165 14th St, Los Angeles, CA 90001" +319213,AAA Batteries (4-pack),1,2.99,12/12/19 17:38,"913 Main St, Boston, MA 02215" +319213,Wired Headphones,1,11.99,12/12/19 17:38,"913 Main St, Boston, MA 02215" +319214,Google Phone,1,600,12/22/19 16:59,"916 Hill St, San Francisco, CA 94016" +319215,Apple Airpods Headphones,1,150,12/22/19 16:23,"309 Lake St, New York City, NY 10001" +319216,Wired Headphones,1,11.99,12/13/19 17:45,"852 Jefferson St, Portland, OR 97035" +319217,USB-C Charging Cable,1,11.95,12/18/19 14:21,"204 River St, San Francisco, CA 94016" +319218,AA Batteries (4-pack),1,3.84,12/15/19 22:23,"571 10th St, Atlanta, GA 30301" +319219,Flatscreen TV,1,300,12/27/19 18:45,"768 Chestnut St, Los Angeles, CA 90001" +319220,Bose SoundSport Headphones,1,99.99,12/07/19 09:31,"109 2nd St, Seattle, WA 98101" +319221,Apple Airpods Headphones,1,150,12/21/19 22:52,"198 2nd St, San Francisco, CA 94016" +319222,Flatscreen TV,1,300,12/24/19 09:39,"435 Hickory St, Boston, MA 02215" +319223,USB-C Charging Cable,1,11.95,12/01/19 13:26,"988 Adams St, Boston, MA 02215" +319224,Wired Headphones,1,11.99,12/24/19 13:03,"251 Center St, Dallas, TX 75001" +319225,AAA Batteries (4-pack),2,2.99,12/03/19 08:07,"706 Maple St, Boston, MA 02215" +319226,Apple Airpods Headphones,1,150,12/16/19 23:31,"159 Chestnut St, Seattle, WA 98101" +319227,iPhone,1,700,12/08/19 22:13,"166 12th St, Boston, MA 02215" +319227,Apple Airpods Headphones,1,150,12/08/19 22:13,"166 12th St, Boston, MA 02215" +319228,AAA Batteries (4-pack),2,2.99,12/20/19 21:25,"417 Washington St, Seattle, WA 98101" +319229,Apple Airpods Headphones,1,150,12/10/19 23:08,"116 Main St, Seattle, WA 98101" +319230,Lightning Charging Cable,1,14.95,12/24/19 16:27,"20 Washington St, Portland, OR 97035" +319231,Wired Headphones,1,11.99,12/14/19 09:37,"716 Cherry St, Los Angeles, CA 90001" +319232,USB-C Charging Cable,1,11.95,12/18/19 17:47,"222 13th St, New York City, NY 10001" +319233,Lightning Charging Cable,1,14.95,12/23/19 15:33,"923 Maple St, New York City, NY 10001" +319234,USB-C Charging Cable,1,11.95,12/12/19 11:22,"58 Highland St, Dallas, TX 75001" +319235,USB-C Charging Cable,2,11.95,12/22/19 19:47,"348 8th St, Los Angeles, CA 90001" +319236,USB-C Charging Cable,1,11.95,12/04/19 22:43,"756 Forest St, New York City, NY 10001" +319237,Lightning Charging Cable,1,14.95,12/12/19 18:18,"430 1st St, Atlanta, GA 30301" +,,,,, +319238,AA Batteries (4-pack),2,3.84,12/07/19 19:08,"136 Highland St, New York City, NY 10001" +319239,Apple Airpods Headphones,1,150,12/16/19 14:22,"227 Meadow St, New York City, NY 10001" +319240,Lightning Charging Cable,1,14.95,12/02/19 09:20,"208 Park St, San Francisco, CA 94016" +319241,AAA Batteries (4-pack),3,2.99,12/22/19 14:05,"82 Willow St, Seattle, WA 98101" +319242,USB-C Charging Cable,1,11.95,12/12/19 14:37,"110 Jefferson St, Los Angeles, CA 90001" +319243,USB-C Charging Cable,1,11.95,12/18/19 07:02,"515 Jackson St, Dallas, TX 75001" +319244,27in FHD Monitor,1,149.99,12/10/19 07:06,"641 Dogwood St, Seattle, WA 98101" +319245,Macbook Pro Laptop,1,1700,12/05/19 22:27,"312 North St, Los Angeles, CA 90001" +319246,Wired Headphones,1,11.99,12/13/19 13:24,"907 Jackson St, Seattle, WA 98101" +319247,Apple Airpods Headphones,1,150,12/10/19 21:25,"428 Chestnut St, San Francisco, CA 94016" +319248,USB-C Charging Cable,1,11.95,12/17/19 15:13,"814 14th St, Boston, MA 02215" +319249,Bose SoundSport Headphones,1,99.99,12/28/19 05:00,"457 Church St, Dallas, TX 75001" +319250,Apple Airpods Headphones,1,150,12/13/19 10:10,"494 Jackson St, Portland, OR 97035" +319251,Lightning Charging Cable,1,14.95,01/01/20 00:58,"281 Pine St, Austin, TX 73301" +319252,AA Batteries (4-pack),1,3.84,12/11/19 10:30,"679 Lincoln St, Austin, TX 73301" +319253,27in FHD Monitor,1,149.99,12/14/19 19:48,"851 4th St, Los Angeles, CA 90001" +319254,AA Batteries (4-pack),2,3.84,12/14/19 09:29,"486 Park St, Los Angeles, CA 90001" +319255,Wired Headphones,1,11.99,12/14/19 09:22,"754 13th St, Portland, ME 04101" +319256,Flatscreen TV,1,300,12/28/19 19:41,"645 13th St, Boston, MA 02215" +319257,Lightning Charging Cable,1,14.95,12/19/19 13:34,"184 Willow St, San Francisco, CA 94016" +319258,27in FHD Monitor,1,149.99,12/22/19 12:29,"965 Center St, Los Angeles, CA 90001" +319259,Lightning Charging Cable,1,14.95,12/01/19 17:54,"626 Meadow St, Boston, MA 02215" +319260,Apple Airpods Headphones,1,150,12/31/19 21:52,"124 Johnson St, New York City, NY 10001" +319261,Wired Headphones,1,11.99,12/17/19 17:58,"132 Meadow St, San Francisco, CA 94016" +319262,AAA Batteries (4-pack),1,2.99,12/21/19 17:23,"57 North St, Seattle, WA 98101" +319263,Macbook Pro Laptop,1,1700,12/08/19 14:01,"469 Walnut St, New York City, NY 10001" +319264,Macbook Pro Laptop,1,1700,12/13/19 06:44,"779 Lake St, San Francisco, CA 94016" +319265,27in FHD Monitor,1,149.99,12/29/19 16:43,"611 Lakeview St, New York City, NY 10001" +319266,AAA Batteries (4-pack),2,2.99,12/14/19 16:42,"860 8th St, San Francisco, CA 94016" +319267,Google Phone,1,600,12/01/19 15:41,"886 Ridge St, Los Angeles, CA 90001" +319268,USB-C Charging Cable,1,11.95,12/31/19 17:11,"397 8th St, San Francisco, CA 94016" +319269,Apple Airpods Headphones,1,150,12/19/19 13:46,"198 Lakeview St, Portland, OR 97035" +319270,Bose SoundSport Headphones,1,99.99,12/19/19 12:25,"108 Johnson St, Austin, TX 73301" +319271,27in FHD Monitor,1,149.99,12/23/19 10:32,"63 Hickory St, San Francisco, CA 94016" +319272,Apple Airpods Headphones,1,150,12/06/19 14:39,"101 North St, Los Angeles, CA 90001" +319273,Macbook Pro Laptop,1,1700,12/10/19 11:40,"148 Forest St, Los Angeles, CA 90001" +319274,AA Batteries (4-pack),1,3.84,12/10/19 15:03,"928 Hill St, San Francisco, CA 94016" +319275,Wired Headphones,1,11.99,12/22/19 11:48,"867 Park St, Atlanta, GA 30301" +319276,Wired Headphones,1,11.99,12/02/19 20:59,"67 Maple St, Los Angeles, CA 90001" +319277,20in Monitor,1,109.99,12/08/19 22:11,"53 Chestnut St, New York City, NY 10001" +319277,AA Batteries (4-pack),1,3.84,12/08/19 22:11,"53 Chestnut St, New York City, NY 10001" +319278,AAA Batteries (4-pack),1,2.99,12/12/19 17:21,"593 13th St, New York City, NY 10001" +319279,34in Ultrawide Monitor,1,379.99,12/16/19 11:29,"133 9th St, Boston, MA 02215" +319280,27in FHD Monitor,1,149.99,12/02/19 19:00,"353 Main St, San Francisco, CA 94016" +319281,AA Batteries (4-pack),1,3.84,12/10/19 10:56,"751 Cherry St, Seattle, WA 98101" +319282,Bose SoundSport Headphones,1,99.99,12/26/19 01:21,"248 8th St, Portland, ME 04101" +319283,AAA Batteries (4-pack),1,2.99,12/11/19 18:51,"68 Willow St, San Francisco, CA 94016" +319284,Lightning Charging Cable,1,14.95,12/09/19 12:06,"1 Pine St, Los Angeles, CA 90001" +319285,Lightning Charging Cable,1,14.95,12/17/19 00:26,"45 Lakeview St, Atlanta, GA 30301" +319286,AA Batteries (4-pack),1,3.84,12/18/19 11:29,"327 Park St, Atlanta, GA 30301" +319287,Bose SoundSport Headphones,1,99.99,12/10/19 18:32,"479 Jackson St, Los Angeles, CA 90001" +319288,Wired Headphones,1,11.99,12/29/19 12:56,"61 Maple St, Portland, ME 04101" +319289,Bose SoundSport Headphones,1,99.99,12/05/19 18:29,"273 Lake St, San Francisco, CA 94016" +319290,Lightning Charging Cable,1,14.95,12/25/19 14:41,"179 9th St, Seattle, WA 98101" +319291,Bose SoundSport Headphones,1,99.99,12/21/19 08:57,"341 Adams St, Los Angeles, CA 90001" +319292,Bose SoundSport Headphones,1,99.99,12/15/19 15:23,"811 Meadow St, Portland, OR 97035" +319293,Vareebadd Phone,1,400,12/23/19 23:59,"902 13th St, Atlanta, GA 30301" +319294,Google Phone,1,600,12/07/19 15:12,"402 6th St, San Francisco, CA 94016" +319295,Lightning Charging Cable,1,14.95,12/26/19 18:32,"5 Madison St, Seattle, WA 98101" +319296,Lightning Charging Cable,1,14.95,12/15/19 12:27,"10 6th St, Los Angeles, CA 90001" +319297,27in 4K Gaming Monitor,1,389.99,12/10/19 08:55,"147 West St, Los Angeles, CA 90001" +319298,27in FHD Monitor,1,149.99,12/14/19 16:23,"956 Lake St, Dallas, TX 75001" +319299,Macbook Pro Laptop,1,1700,12/21/19 00:20,"243 12th St, Dallas, TX 75001" +319300,Flatscreen TV,1,300,12/07/19 14:52,"724 Maple St, Los Angeles, CA 90001" +319301,Lightning Charging Cable,1,14.95,12/09/19 09:10,"564 Cherry St, Los Angeles, CA 90001" +319302,Bose SoundSport Headphones,1,99.99,12/06/19 19:34,"856 Pine St, Boston, MA 02215" +319303,27in FHD Monitor,1,149.99,12/12/19 20:28,"100 Wilson St, Seattle, WA 98101" +319304,Apple Airpods Headphones,2,150,12/22/19 19:22,"461 4th St, San Francisco, CA 94016" +319305,AA Batteries (4-pack),2,3.84,12/10/19 10:15,"873 Washington St, Boston, MA 02215" +319306,USB-C Charging Cable,1,11.95,12/12/19 02:43,"379 River St, Boston, MA 02215" +319307,LG Washing Machine,1,600.0,12/15/19 09:08,"338 10th St, Dallas, TX 75001" +319308,Vareebadd Phone,1,400,12/01/19 17:12,"425 1st St, New York City, NY 10001" +319308,Wired Headphones,1,11.99,12/01/19 17:12,"425 1st St, New York City, NY 10001" +319309,Bose SoundSport Headphones,1,99.99,12/22/19 13:05,"541 Walnut St, Los Angeles, CA 90001" +319310,USB-C Charging Cable,2,11.95,12/04/19 13:23,"392 8th St, Dallas, TX 75001" +319311,AA Batteries (4-pack),2,3.84,12/06/19 16:26,"570 8th St, New York City, NY 10001" +319312,AA Batteries (4-pack),1,3.84,12/16/19 19:22,"31 2nd St, San Francisco, CA 94016" +319313,Bose SoundSport Headphones,1,99.99,12/23/19 14:28,"964 11th St, Seattle, WA 98101" +319314,Lightning Charging Cable,1,14.95,12/12/19 16:52,"216 Madison St, Seattle, WA 98101" +319315,USB-C Charging Cable,1,11.95,12/06/19 13:51,"239 Cedar St, Dallas, TX 75001" +319316,AAA Batteries (4-pack),6,2.99,12/08/19 23:23,"398 West St, Los Angeles, CA 90001" +319317,AA Batteries (4-pack),1,3.84,12/20/19 18:02,"16 Hickory St, New York City, NY 10001" +319318,USB-C Charging Cable,1,11.95,12/30/19 11:30,"959 Church St, San Francisco, CA 94016" +319319,Lightning Charging Cable,1,14.95,12/26/19 21:16,"174 11th St, Atlanta, GA 30301" +319320,27in FHD Monitor,1,149.99,12/28/19 18:41,"439 Pine St, Seattle, WA 98101" +319321,iPhone,1,700,12/29/19 11:36,"254 Sunset St, Seattle, WA 98101" +319322,Macbook Pro Laptop,1,1700,12/23/19 19:50,"337 Walnut St, Atlanta, GA 30301" +319323,AAA Batteries (4-pack),2,2.99,12/15/19 12:16,"275 2nd St, San Francisco, CA 94016" +319324,USB-C Charging Cable,1,11.95,12/13/19 20:54,"408 12th St, San Francisco, CA 94016" +319325,iPhone,1,700,12/15/19 20:23,"528 Washington St, San Francisco, CA 94016" +319325,Lightning Charging Cable,1,14.95,12/15/19 20:23,"528 Washington St, San Francisco, CA 94016" +319326,LG Washing Machine,1,600.0,12/16/19 14:14,"855 Cherry St, New York City, NY 10001" +319327,Wired Headphones,1,11.99,12/16/19 11:12,"170 Elm St, Boston, MA 02215" +319328,Flatscreen TV,1,300,12/23/19 11:12,"697 River St, New York City, NY 10001" +319329,Lightning Charging Cable,1,14.95,12/04/19 07:30,"773 10th St, Austin, TX 73301" +319330,AAA Batteries (4-pack),3,2.99,12/06/19 03:27,"736 Church St, Los Angeles, CA 90001" +319331,USB-C Charging Cable,1,11.95,12/30/19 12:35,"611 Lakeview St, Dallas, TX 75001" +319332,Lightning Charging Cable,1,14.95,12/16/19 20:13,"419 Forest St, Seattle, WA 98101" +319333,Google Phone,1,600,12/26/19 14:15,"770 Center St, Dallas, TX 75001" +319334,AA Batteries (4-pack),1,3.84,12/19/19 12:19,"697 Lakeview St, Austin, TX 73301" +319335,iPhone,1,700,12/18/19 00:26,"400 Hill St, Boston, MA 02215" +319336,USB-C Charging Cable,1,11.95,12/12/19 23:17,"428 Jefferson St, Boston, MA 02215" +319337,Lightning Charging Cable,1,14.95,12/05/19 09:50,"119 14th St, Los Angeles, CA 90001" +319338,Apple Airpods Headphones,1,150,12/23/19 19:47,"21 11th St, New York City, NY 10001" +319339,27in FHD Monitor,1,149.99,12/23/19 09:59,"965 Cedar St, Boston, MA 02215" +319340,Lightning Charging Cable,1,14.95,12/27/19 23:18,"285 Hill St, New York City, NY 10001" +319341,Lightning Charging Cable,1,14.95,12/12/19 23:56,"244 Forest St, San Francisco, CA 94016" +319342,Lightning Charging Cable,1,14.95,12/24/19 11:25,"983 Washington St, Seattle, WA 98101" +319343,Lightning Charging Cable,1,14.95,12/31/19 16:28,"690 Hill St, New York City, NY 10001" +319344,USB-C Charging Cable,1,11.95,12/31/19 12:58,"883 6th St, Portland, OR 97035" +319345,Wired Headphones,1,11.99,12/25/19 11:04,"1 Ridge St, Seattle, WA 98101" +319346,AA Batteries (4-pack),1,3.84,12/16/19 21:45,"389 Jackson St, Los Angeles, CA 90001" +319347,Lightning Charging Cable,1,14.95,12/03/19 09:48,"329 Highland St, Boston, MA 02215" +319348,AA Batteries (4-pack),1,3.84,12/09/19 20:07,"726 Chestnut St, New York City, NY 10001" +319349,Macbook Pro Laptop,1,1700,12/21/19 10:43,"588 12th St, Portland, OR 97035" +319350,27in FHD Monitor,1,149.99,12/25/19 17:56,"271 North St, San Francisco, CA 94016" +319351,27in FHD Monitor,1,149.99,12/25/19 13:33,"869 North St, San Francisco, CA 94016" +319351,iPhone,1,700,12/25/19 13:33,"869 North St, San Francisco, CA 94016" +319352,Apple Airpods Headphones,1,150,12/18/19 11:52,"537 Meadow St, New York City, NY 10001" +319352,AA Batteries (4-pack),1,3.84,12/18/19 11:52,"537 Meadow St, New York City, NY 10001" +319353,34in Ultrawide Monitor,1,379.99,12/28/19 08:00,"43 Center St, New York City, NY 10001" +319354,27in FHD Monitor,1,149.99,12/27/19 15:33,"600 4th St, Seattle, WA 98101" +319355,Wired Headphones,1,11.99,12/16/19 03:38,"322 2nd St, Boston, MA 02215" +319356,AA Batteries (4-pack),1,3.84,12/19/19 14:15,"239 Johnson St, Los Angeles, CA 90001" +319357,Flatscreen TV,1,300,12/19/19 17:00,"656 Willow St, Austin, TX 73301" +319358,Macbook Pro Laptop,1,1700,12/12/19 08:45,"467 Jackson St, Los Angeles, CA 90001" +319359,USB-C Charging Cable,1,11.95,12/23/19 20:03,"455 Lake St, San Francisco, CA 94016" +319360,Wired Headphones,1,11.99,12/21/19 13:39,"802 Madison St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +319361,USB-C Charging Cable,1,11.95,12/26/19 20:43,"27 9th St, Seattle, WA 98101" +319362,iPhone,1,700,12/31/19 12:57,"534 Ridge St, Boston, MA 02215" +319362,AAA Batteries (4-pack),3,2.99,12/31/19 12:57,"534 Ridge St, Boston, MA 02215" +319363,AAA Batteries (4-pack),2,2.99,12/23/19 12:06,"506 Hickory St, Dallas, TX 75001" +319364,AAA Batteries (4-pack),3,2.99,12/19/19 13:28,"10 9th St, Boston, MA 02215" +319365,Wired Headphones,1,11.99,12/04/19 11:50,"182 Cherry St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +319366,Wired Headphones,1,11.99,12/07/19 07:12,"268 1st St, Los Angeles, CA 90001" +319367,Apple Airpods Headphones,1,150,12/19/19 21:26,"63 10th St, San Francisco, CA 94016" +319368,USB-C Charging Cable,1,11.95,12/19/19 23:17,"269 Church St, Atlanta, GA 30301" +319369,Google Phone,1,600,12/18/19 18:21,"712 Cherry St, Austin, TX 73301" +319369,ThinkPad Laptop,1,999.99,12/18/19 18:21,"712 Cherry St, Austin, TX 73301" +319370,Wired Headphones,1,11.99,12/19/19 12:46,"909 Park St, New York City, NY 10001" +319371,20in Monitor,1,109.99,12/21/19 21:39,"454 7th St, San Francisco, CA 94016" +319372,Wired Headphones,1,11.99,12/14/19 19:45,"322 Spruce St, Los Angeles, CA 90001" +319373,Apple Airpods Headphones,1,150,12/30/19 00:21,"383 Lincoln St, San Francisco, CA 94016" +319374,AAA Batteries (4-pack),1,2.99,12/03/19 17:30,"582 Madison St, Los Angeles, CA 90001" +319375,27in 4K Gaming Monitor,1,389.99,12/13/19 08:57,"729 Spruce St, San Francisco, CA 94016" +319376,USB-C Charging Cable,1,11.95,12/30/19 11:06,"75 South St, New York City, NY 10001" +319377,USB-C Charging Cable,1,11.95,12/05/19 14:58,"737 Spruce St, New York City, NY 10001" +319378,Apple Airpods Headphones,1,150,12/11/19 21:18,"315 Forest St, San Francisco, CA 94016" +319379,AA Batteries (4-pack),2,3.84,12/25/19 11:17,"795 Lincoln St, Seattle, WA 98101" +319380,iPhone,1,700,12/17/19 15:37,"497 Pine St, Dallas, TX 75001" +319381,USB-C Charging Cable,1,11.95,12/11/19 14:26,"632 Main St, Austin, TX 73301" +319382,Lightning Charging Cable,1,14.95,12/23/19 19:01,"405 Pine St, Seattle, WA 98101" +319383,Bose SoundSport Headphones,1,99.99,12/23/19 16:58,"26 2nd St, San Francisco, CA 94016" +319384,USB-C Charging Cable,1,11.95,12/27/19 14:37,"728 Wilson St, San Francisco, CA 94016" +319385,AAA Batteries (4-pack),1,2.99,12/23/19 14:59,"485 1st St, San Francisco, CA 94016" +319386,Lightning Charging Cable,1,14.95,12/27/19 12:36,"732 Maple St, San Francisco, CA 94016" +319387,Apple Airpods Headphones,1,150,12/19/19 08:11,"947 Sunset St, Los Angeles, CA 90001" +319388,USB-C Charging Cable,1,11.95,12/16/19 14:13,"463 North St, Boston, MA 02215" +319389,AAA Batteries (4-pack),1,2.99,12/31/19 01:02,"807 Church St, San Francisco, CA 94016" +319390,Apple Airpods Headphones,1,150,12/10/19 11:49,"872 Highland St, Seattle, WA 98101" +319391,AA Batteries (4-pack),1,3.84,12/23/19 17:39,"305 Sunset St, Los Angeles, CA 90001" +319392,27in FHD Monitor,1,149.99,12/17/19 21:25,"370 Johnson St, Atlanta, GA 30301" +319393,AA Batteries (4-pack),1,3.84,12/12/19 13:49,"321 South St, Boston, MA 02215" +319394,Wired Headphones,1,11.99,12/15/19 19:08,"731 River St, New York City, NY 10001" +319395,AAA Batteries (4-pack),2,2.99,12/31/19 08:31,"432 5th St, San Francisco, CA 94016" +319396,AAA Batteries (4-pack),2,2.99,12/27/19 11:19,"475 14th St, Los Angeles, CA 90001" +319397,Flatscreen TV,1,300,12/12/19 23:27,"434 14th St, Los Angeles, CA 90001" +319398,27in 4K Gaming Monitor,1,389.99,12/02/19 10:12,"651 1st St, Boston, MA 02215" +319399,Wired Headphones,1,11.99,12/08/19 09:26,"635 Hickory St, Seattle, WA 98101" +319400,AA Batteries (4-pack),1,3.84,12/05/19 14:10,"735 Maple St, San Francisco, CA 94016" +319401,27in FHD Monitor,1,149.99,12/01/19 09:45,"361 Hill St, Atlanta, GA 30301" +319401,34in Ultrawide Monitor,1,379.99,12/01/19 09:45,"361 Hill St, Atlanta, GA 30301" +319402,AAA Batteries (4-pack),2,2.99,12/30/19 12:19,"110 Church St, Seattle, WA 98101" +319403,Apple Airpods Headphones,1,150,12/23/19 20:12,"255 Park St, New York City, NY 10001" +319404,27in FHD Monitor,1,149.99,12/29/19 12:11,"324 Hill St, Atlanta, GA 30301" +319405,AA Batteries (4-pack),2,3.84,12/10/19 11:43,"652 Madison St, New York City, NY 10001" +319406,Lightning Charging Cable,1,14.95,12/22/19 23:41,"724 Lake St, Seattle, WA 98101" +319407,AA Batteries (4-pack),2,3.84,12/24/19 17:56,"826 Meadow St, New York City, NY 10001" +319408,AA Batteries (4-pack),3,3.84,12/27/19 20:42,"272 6th St, Portland, ME 04101" +319409,USB-C Charging Cable,1,11.95,12/25/19 20:23,"401 Main St, Boston, MA 02215" +319410,USB-C Charging Cable,1,11.95,12/05/19 08:28,"697 Meadow St, New York City, NY 10001" +319411,Wired Headphones,1,11.99,12/07/19 00:56,"477 4th St, Los Angeles, CA 90001" +319412,Apple Airpods Headphones,1,150,12/05/19 18:28,"91 Hill St, Los Angeles, CA 90001" +319413,AA Batteries (4-pack),1,3.84,12/06/19 04:34,"511 Walnut St, Austin, TX 73301" +319414,iPhone,1,700,12/23/19 07:02,"481 5th St, San Francisco, CA 94016" +319415,AA Batteries (4-pack),1,3.84,12/08/19 13:25,"245 Adams St, Seattle, WA 98101" +319416,USB-C Charging Cable,1,11.95,12/18/19 12:21,"493 Johnson St, Atlanta, GA 30301" +319417,USB-C Charging Cable,1,11.95,12/11/19 21:55,"399 Cherry St, Los Angeles, CA 90001" +319418,AA Batteries (4-pack),1,3.84,12/29/19 11:52,"255 Dogwood St, Los Angeles, CA 90001" +319419,Apple Airpods Headphones,1,150,12/22/19 09:43,"961 Hickory St, New York City, NY 10001" +319420,27in 4K Gaming Monitor,1,389.99,12/29/19 14:58,"290 Cherry St, New York City, NY 10001" +319421,AAA Batteries (4-pack),1,2.99,12/08/19 18:18,"951 7th St, Boston, MA 02215" +319422,Wired Headphones,1,11.99,12/07/19 04:27,"167 Washington St, Boston, MA 02215" +319423,Bose SoundSport Headphones,1,99.99,12/03/19 20:33,"43 Maple St, Dallas, TX 75001" +319424,27in FHD Monitor,1,149.99,12/30/19 10:33,"643 Walnut St, San Francisco, CA 94016" +319425,Bose SoundSport Headphones,1,99.99,12/05/19 05:06,"403 Wilson St, Seattle, WA 98101" +319426,27in FHD Monitor,1,149.99,12/19/19 14:55,"882 Adams St, Los Angeles, CA 90001" +319427,27in 4K Gaming Monitor,1,389.99,12/02/19 12:13,"202 Lakeview St, Los Angeles, CA 90001" +319428,Macbook Pro Laptop,1,1700,12/02/19 14:05,"237 Dogwood St, San Francisco, CA 94016" +319429,Wired Headphones,1,11.99,12/25/19 10:22,"388 Cherry St, Los Angeles, CA 90001" +319430,34in Ultrawide Monitor,1,379.99,12/30/19 21:27,"231 River St, Seattle, WA 98101" +319431,27in FHD Monitor,1,149.99,12/21/19 23:01,"661 Hickory St, Boston, MA 02215" +319432,AA Batteries (4-pack),1,3.84,12/07/19 09:12,"983 1st St, San Francisco, CA 94016" +319433,USB-C Charging Cable,1,11.95,12/25/19 12:30,"863 Forest St, New York City, NY 10001" +319434,USB-C Charging Cable,1,11.95,12/12/19 19:23,"858 Wilson St, Seattle, WA 98101" +319435,Vareebadd Phone,1,400,12/24/19 08:20,"410 Chestnut St, San Francisco, CA 94016" +319436,AAA Batteries (4-pack),1,2.99,12/26/19 12:37,"61 West St, Austin, TX 73301" +319437,Google Phone,1,600,12/13/19 15:39,"230 West St, Boston, MA 02215" +319438,Wired Headphones,1,11.99,12/16/19 10:56,"437 Washington St, San Francisco, CA 94016" +319439,Wired Headphones,1,11.99,12/24/19 22:28,"48 5th St, Los Angeles, CA 90001" +319440,Apple Airpods Headphones,1,150,12/16/19 08:14,"211 14th St, Atlanta, GA 30301" +319441,20in Monitor,1,109.99,12/08/19 07:08,"880 10th St, San Francisco, CA 94016" +319442,AAA Batteries (4-pack),2,2.99,12/12/19 20:51,"787 Pine St, Seattle, WA 98101" +319443,Bose SoundSport Headphones,1,99.99,12/07/19 14:46,"386 Highland St, Austin, TX 73301" +319444,AAA Batteries (4-pack),2,2.99,12/28/19 11:50,"309 Center St, Los Angeles, CA 90001" +319445,27in FHD Monitor,1,149.99,12/30/19 13:28,"542 4th St, New York City, NY 10001" +319446,Lightning Charging Cable,1,14.95,12/09/19 21:09,"339 Pine St, New York City, NY 10001" +319447,Lightning Charging Cable,1,14.95,12/17/19 01:54,"411 Maple St, Portland, OR 97035" +319448,Apple Airpods Headphones,1,150,12/30/19 18:07,"534 10th St, San Francisco, CA 94016" +319449,iPhone,1,700,12/09/19 12:24,"580 Park St, Los Angeles, CA 90001" +319449,Lightning Charging Cable,1,14.95,12/09/19 12:24,"580 Park St, Los Angeles, CA 90001" +319450,Flatscreen TV,1,300,12/31/19 18:20,"849 Sunset St, Portland, ME 04101" +319451,Apple Airpods Headphones,1,150,12/10/19 14:37,"665 Lake St, Boston, MA 02215" +319452,USB-C Charging Cable,1,11.95,12/11/19 06:55,"603 River St, Dallas, TX 75001" +319453,USB-C Charging Cable,1,11.95,12/05/19 19:51,"405 Sunset St, Los Angeles, CA 90001" +319454,Wired Headphones,1,11.99,12/19/19 15:03,"454 Forest St, New York City, NY 10001" +319455,AA Batteries (4-pack),1,3.84,12/24/19 11:58,"555 7th St, Los Angeles, CA 90001" +319456,Lightning Charging Cable,1,14.95,12/31/19 15:37,"825 River St, Atlanta, GA 30301" +319457,USB-C Charging Cable,1,11.95,12/02/19 22:18,"507 Sunset St, San Francisco, CA 94016" +319458,AAA Batteries (4-pack),2,2.99,12/16/19 14:59,"713 Elm St, New York City, NY 10001" +319459,AAA Batteries (4-pack),1,2.99,12/21/19 17:57,"882 Church St, Seattle, WA 98101" +319460,Bose SoundSport Headphones,1,99.99,12/22/19 12:52,"927 Hill St, San Francisco, CA 94016" +319461,Lightning Charging Cable,1,14.95,12/19/19 19:15,"491 Dogwood St, Austin, TX 73301" +319462,20in Monitor,1,109.99,12/05/19 09:58,"303 2nd St, San Francisco, CA 94016" +319463,27in 4K Gaming Monitor,1,389.99,12/04/19 19:25,"120 13th St, Boston, MA 02215" +319464,AAA Batteries (4-pack),1,2.99,12/25/19 23:02,"882 Lincoln St, San Francisco, CA 94016" +319465,AA Batteries (4-pack),1,3.84,12/01/19 21:42,"865 Hill St, New York City, NY 10001" +319466,Bose SoundSport Headphones,1,99.99,12/03/19 12:21,"804 Highland St, Los Angeles, CA 90001" +319467,Wired Headphones,1,11.99,12/03/19 13:32,"952 Meadow St, Boston, MA 02215" +319468,Lightning Charging Cable,1,14.95,12/11/19 16:45,"198 Pine St, Boston, MA 02215" +319469,AAA Batteries (4-pack),1,2.99,12/02/19 09:18,"742 Highland St, San Francisco, CA 94016" +319470,34in Ultrawide Monitor,1,379.99,12/03/19 15:18,"48 Hill St, Dallas, TX 75001" +319471,27in FHD Monitor,1,149.99,12/04/19 13:07,"709 Hill St, San Francisco, CA 94016" +319472,Wired Headphones,1,11.99,12/11/19 15:12,"157 Dogwood St, Seattle, WA 98101" +319473,iPhone,1,700,12/13/19 16:26,"282 Cherry St, Boston, MA 02215" +319474,AAA Batteries (4-pack),3,2.99,12/25/19 17:28,"234 Lincoln St, Austin, TX 73301" +319475,USB-C Charging Cable,1,11.95,12/12/19 09:44,"943 9th St, Boston, MA 02215" +319476,Wired Headphones,1,11.99,12/26/19 13:56,"699 River St, New York City, NY 10001" +319477,AA Batteries (4-pack),2,3.84,12/10/19 19:44,"689 Hill St, Boston, MA 02215" +319478,AA Batteries (4-pack),1,3.84,12/02/19 12:44,"448 14th St, Dallas, TX 75001" +319479,Apple Airpods Headphones,1,150,12/30/19 19:45,"259 Jackson St, Boston, MA 02215" +319480,AAA Batteries (4-pack),1,2.99,12/01/19 06:19,"980 9th St, Seattle, WA 98101" +319481,ThinkPad Laptop,1,999.99,12/29/19 17:55,"773 Cedar St, Los Angeles, CA 90001" +319482,AA Batteries (4-pack),1,3.84,12/17/19 20:10,"391 Hickory St, Seattle, WA 98101" +319483,Macbook Pro Laptop,1,1700,12/23/19 15:16,"835 Forest St, Seattle, WA 98101" +319484,ThinkPad Laptop,1,999.99,12/21/19 22:17,"489 1st St, Dallas, TX 75001" +319485,AA Batteries (4-pack),1,3.84,12/05/19 15:32,"132 1st St, San Francisco, CA 94016" +319486,AAA Batteries (4-pack),1,2.99,12/08/19 09:58,"746 Hickory St, Los Angeles, CA 90001" +319487,Lightning Charging Cable,1,14.95,12/25/19 15:59,"689 South St, Seattle, WA 98101" +319488,Wired Headphones,1,11.99,12/09/19 19:30,"722 Chestnut St, San Francisco, CA 94016" +319489,Wired Headphones,1,11.99,12/08/19 08:46,"904 4th St, San Francisco, CA 94016" +319490,Bose SoundSport Headphones,1,99.99,12/26/19 12:11,"826 2nd St, Dallas, TX 75001" +319491,Macbook Pro Laptop,1,1700,12/05/19 16:32,"659 7th St, Austin, TX 73301" +319492,Wired Headphones,1,11.99,12/24/19 13:34,"534 11th St, New York City, NY 10001" +319493,Apple Airpods Headphones,1,150,12/20/19 13:02,"412 Spruce St, Seattle, WA 98101" +319494,iPhone,1,700,12/18/19 19:54,"788 South St, Boston, MA 02215" +319495,Flatscreen TV,1,300,12/20/19 14:52,"548 8th St, San Francisco, CA 94016" +319496,Lightning Charging Cable,1,14.95,12/05/19 09:09,"740 Main St, Seattle, WA 98101" +319497,USB-C Charging Cable,1,11.95,12/12/19 22:44,"104 Cedar St, Dallas, TX 75001" +319498,AAA Batteries (4-pack),2,2.99,12/28/19 22:38,"698 Hickory St, New York City, NY 10001" +319499,AA Batteries (4-pack),1,3.84,12/01/19 23:47,"684 10th St, Boston, MA 02215" +319500,Google Phone,1,600,12/23/19 10:03,"1 Ridge St, Portland, ME 04101" +319500,Bose SoundSport Headphones,1,99.99,12/23/19 10:03,"1 Ridge St, Portland, ME 04101" +319500,Wired Headphones,1,11.99,12/23/19 10:03,"1 Ridge St, Portland, ME 04101" +319501,Macbook Pro Laptop,1,1700,12/14/19 12:38,"828 Park St, Los Angeles, CA 90001" +319502,AA Batteries (4-pack),2,3.84,12/08/19 15:43,"644 Maple St, San Francisco, CA 94016" +319503,Bose SoundSport Headphones,1,99.99,12/12/19 11:57,"986 Highland St, Atlanta, GA 30301" +319504,20in Monitor,1,109.99,12/19/19 16:31,"378 10th St, San Francisco, CA 94016" +319505,Wired Headphones,2,11.99,12/26/19 12:34,"58 Madison St, Los Angeles, CA 90001" +319506,Apple Airpods Headphones,1,150,12/26/19 18:02,"185 Hickory St, New York City, NY 10001" +319507,USB-C Charging Cable,1,11.95,12/27/19 21:29,"501 10th St, San Francisco, CA 94016" +319508,Vareebadd Phone,1,400,12/16/19 14:57,"931 Jackson St, Portland, OR 97035" +319509,Flatscreen TV,1,300,12/17/19 18:37,"687 Spruce St, Seattle, WA 98101" +319510,AA Batteries (4-pack),1,3.84,12/23/19 03:58,"258 Willow St, New York City, NY 10001" +319511,Wired Headphones,1,11.99,12/25/19 22:41,"69 Main St, Seattle, WA 98101" +319512,AAA Batteries (4-pack),1,2.99,12/29/19 15:32,"346 Sunset St, Atlanta, GA 30301" +319513,Apple Airpods Headphones,1,150,12/26/19 11:25,"487 Dogwood St, Atlanta, GA 30301" +319514,Apple Airpods Headphones,1,150,12/06/19 15:07,"485 Highland St, San Francisco, CA 94016" +319515,Lightning Charging Cable,1,14.95,12/25/19 19:21,"753 Ridge St, Portland, OR 97035" +319516,27in 4K Gaming Monitor,1,389.99,12/16/19 10:59,"729 Willow St, Portland, ME 04101" +319517,Wired Headphones,1,11.99,12/16/19 08:02,"438 Meadow St, New York City, NY 10001" +319518,Lightning Charging Cable,1,14.95,12/19/19 07:24,"568 Center St, Boston, MA 02215" +319519,Apple Airpods Headphones,1,150,12/30/19 12:59,"581 Adams St, Austin, TX 73301" +319520,Lightning Charging Cable,1,14.95,12/07/19 12:19,"660 Pine St, New York City, NY 10001" +319521,27in 4K Gaming Monitor,1,389.99,12/20/19 21:15,"297 Lakeview St, Boston, MA 02215" +319522,Apple Airpods Headphones,1,150,12/21/19 12:43,"643 1st St, Los Angeles, CA 90001" +319523,AAA Batteries (4-pack),1,2.99,12/28/19 11:20,"140 Adams St, San Francisco, CA 94016" +319524,USB-C Charging Cable,1,11.95,12/06/19 12:41,"394 Lakeview St, Boston, MA 02215" +319525,Lightning Charging Cable,1,14.95,12/10/19 19:08,"904 Jackson St, Portland, OR 97035" +319526,AA Batteries (4-pack),1,3.84,12/26/19 16:03,"961 Lincoln St, Boston, MA 02215" +319527,USB-C Charging Cable,1,11.95,12/14/19 17:29,"368 River St, Atlanta, GA 30301" +319528,27in FHD Monitor,1,149.99,12/17/19 10:30,"196 Adams St, Dallas, TX 75001" +319529,AAA Batteries (4-pack),2,2.99,12/13/19 09:16,"60 Highland St, Seattle, WA 98101" +319530,LG Dryer,1,600.0,12/10/19 13:05,"661 Wilson St, San Francisco, CA 94016" +319531,Wired Headphones,1,11.99,12/09/19 17:00,"206 Church St, Seattle, WA 98101" +319532,USB-C Charging Cable,1,11.95,12/23/19 13:04,"365 Dogwood St, San Francisco, CA 94016" +319533,Wired Headphones,1,11.99,12/04/19 17:32,"945 Ridge St, Los Angeles, CA 90001" +319534,Macbook Pro Laptop,1,1700,12/30/19 11:27,"48 Johnson St, Seattle, WA 98101" +319535,AA Batteries (4-pack),1,3.84,12/07/19 11:18,"186 Spruce St, San Francisco, CA 94016" +319536,AA Batteries (4-pack),2,3.84,12/26/19 17:34,"412 Forest St, Austin, TX 73301" +319537,Wired Headphones,1,11.99,12/20/19 22:09,"201 Walnut St, Austin, TX 73301" +319538,Bose SoundSport Headphones,1,99.99,12/30/19 11:46,"813 Johnson St, New York City, NY 10001" +319539,34in Ultrawide Monitor,1,379.99,12/27/19 22:43,"122 Pine St, Austin, TX 73301" +319540,Lightning Charging Cable,1,14.95,12/24/19 14:31,"741 Washington St, Boston, MA 02215" +319541,AA Batteries (4-pack),2,3.84,12/15/19 14:07,"259 Park St, San Francisco, CA 94016" +319541,Macbook Pro Laptop,1,1700,12/15/19 14:07,"259 Park St, San Francisco, CA 94016" +319542,Wired Headphones,1,11.99,12/31/19 18:31,"92 Park St, Los Angeles, CA 90001" +319543,AA Batteries (4-pack),1,3.84,12/10/19 17:31,"47 Lake St, Seattle, WA 98101" +319544,USB-C Charging Cable,1,11.95,12/16/19 11:31,"128 Church St, Seattle, WA 98101" +319545,Bose SoundSport Headphones,1,99.99,12/13/19 13:20,"466 6th St, Atlanta, GA 30301" +319546,USB-C Charging Cable,1,11.95,12/12/19 16:58,"376 Adams St, Atlanta, GA 30301" +319547,Lightning Charging Cable,1,14.95,12/13/19 14:35,"224 Park St, Boston, MA 02215" +319548,Lightning Charging Cable,2,14.95,12/08/19 07:15,"597 Jackson St, Dallas, TX 75001" +319549,27in FHD Monitor,1,149.99,12/09/19 10:03,"696 Hickory St, Portland, ME 04101" +319550,Lightning Charging Cable,1,14.95,12/07/19 18:37,"550 2nd St, Dallas, TX 75001" +319551,Bose SoundSport Headphones,1,99.99,12/16/19 21:53,"597 5th St, Seattle, WA 98101" +319552,USB-C Charging Cable,1,11.95,12/20/19 00:25,"738 4th St, Dallas, TX 75001" +319553,AAA Batteries (4-pack),3,2.99,12/20/19 10:23,"178 Wilson St, New York City, NY 10001" +319554,Lightning Charging Cable,1,14.95,12/05/19 20:12,"992 Maple St, New York City, NY 10001" +319555,USB-C Charging Cable,1,11.95,12/26/19 16:19,"960 Main St, New York City, NY 10001" +319556,USB-C Charging Cable,1,11.95,12/12/19 07:33,"586 Spruce St, Los Angeles, CA 90001" +319557,AA Batteries (4-pack),1,3.84,12/10/19 16:15,"707 Madison St, New York City, NY 10001" +319557,AAA Batteries (4-pack),2,2.99,12/10/19 16:15,"707 Madison St, New York City, NY 10001" +319558,AA Batteries (4-pack),2,3.84,12/21/19 17:40,"597 2nd St, Atlanta, GA 30301" +319559,Macbook Pro Laptop,1,1700,12/06/19 20:56,"58 8th St, San Francisco, CA 94016" +319560,LG Washing Machine,1,600.0,12/20/19 19:56,"285 Madison St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +319561,Google Phone,1,600,12/06/19 17:57,"485 Cherry St, New York City, NY 10001" +319562,Wired Headphones,1,11.99,12/28/19 21:38,"765 Lincoln St, Boston, MA 02215" +319563,AA Batteries (4-pack),1,3.84,12/31/19 12:21,"533 North St, Seattle, WA 98101" +319564,AAA Batteries (4-pack),2,2.99,12/27/19 17:05,"574 Forest St, Dallas, TX 75001" +319565,AA Batteries (4-pack),1,3.84,12/06/19 01:25,"751 9th St, Austin, TX 73301" +319566,27in 4K Gaming Monitor,1,389.99,12/19/19 13:50,"495 Wilson St, New York City, NY 10001" +319567,USB-C Charging Cable,1,11.95,12/11/19 11:32,"768 7th St, Los Angeles, CA 90001" +319568,27in FHD Monitor,1,149.99,12/28/19 16:50,"180 Lincoln St, Atlanta, GA 30301" +319569,Apple Airpods Headphones,1,150,12/11/19 15:05,"410 South St, Dallas, TX 75001" +319570,Wired Headphones,1,11.99,12/28/19 16:44,"412 Washington St, New York City, NY 10001" +319571,34in Ultrawide Monitor,1,379.99,12/30/19 12:32,"487 5th St, Atlanta, GA 30301" +319572,LG Washing Machine,1,600.0,12/13/19 11:56,"73 9th St, Boston, MA 02215" +319573,20in Monitor,1,109.99,12/11/19 00:40,"922 South St, Boston, MA 02215" +319574,AAA Batteries (4-pack),2,2.99,12/24/19 15:16,"3 Walnut St, Portland, OR 97035" +319575,AAA Batteries (4-pack),2,2.99,12/05/19 01:05,"151 Lincoln St, New York City, NY 10001" +319576,34in Ultrawide Monitor,1,379.99,12/08/19 22:34,"471 Park St, San Francisco, CA 94016" +319577,USB-C Charging Cable,1,11.95,12/21/19 23:02,"933 4th St, Atlanta, GA 30301" +319578,Lightning Charging Cable,1,14.95,12/23/19 22:58,"13 Cherry St, Dallas, TX 75001" +319579,Apple Airpods Headphones,1,150,12/10/19 00:36,"612 Dogwood St, Boston, MA 02215" +319580,AA Batteries (4-pack),1,3.84,12/18/19 12:47,"229 5th St, San Francisco, CA 94016" +319581,Google Phone,1,600,12/02/19 21:05,"771 Forest St, Austin, TX 73301" +319581,Wired Headphones,1,11.99,12/02/19 21:05,"771 Forest St, Austin, TX 73301" +319582,Flatscreen TV,1,300,12/29/19 19:49,"31 9th St, San Francisco, CA 94016" +319583,AAA Batteries (4-pack),3,2.99,12/14/19 23:57,"21 7th St, New York City, NY 10001" +319583,AA Batteries (4-pack),2,3.84,12/14/19 23:57,"21 7th St, New York City, NY 10001" +319584,Bose SoundSport Headphones,1,99.99,12/13/19 22:41,"554 Jefferson St, Portland, OR 97035" +319585,Apple Airpods Headphones,1,150,12/26/19 01:00,"3 Cedar St, Boston, MA 02215" +319586,Bose SoundSport Headphones,1,99.99,12/14/19 14:17,"569 Jefferson St, Austin, TX 73301" +319587,USB-C Charging Cable,2,11.95,12/15/19 18:14,"751 Jackson St, San Francisco, CA 94016" +319588,AA Batteries (4-pack),1,3.84,12/16/19 15:40,"935 Forest St, Los Angeles, CA 90001" +319589,27in FHD Monitor,1,149.99,12/01/19 22:55,"608 Lakeview St, Los Angeles, CA 90001" +319590,Apple Airpods Headphones,1,150,12/15/19 12:31,"965 2nd St, San Francisco, CA 94016" +319591,Apple Airpods Headphones,1,150,12/01/19 21:28,"200 4th St, New York City, NY 10001" +319592,Google Phone,1,600,12/24/19 10:38,"565 Adams St, New York City, NY 10001" +319592,Wired Headphones,1,11.99,12/24/19 10:38,"565 Adams St, New York City, NY 10001" +319593,USB-C Charging Cable,1,11.95,12/22/19 20:15,"563 Lincoln St, Boston, MA 02215" +319594,ThinkPad Laptop,1,999.99,12/25/19 17:41,"905 11th St, Los Angeles, CA 90001" +319595,Wired Headphones,1,11.99,12/13/19 08:35,"469 6th St, San Francisco, CA 94016" +319596,Wired Headphones,1,11.99,12/15/19 11:15,"748 Church St, Austin, TX 73301" +319596,Google Phone,1,600,12/15/19 11:15,"748 Church St, Austin, TX 73301" +319597,AA Batteries (4-pack),1,3.84,12/10/19 13:47,"200 Madison St, San Francisco, CA 94016" +319598,27in 4K Gaming Monitor,1,389.99,12/05/19 14:52,"223 Hickory St, Los Angeles, CA 90001" +319599,iPhone,1,700,12/21/19 16:47,"71 9th St, Austin, TX 73301" +319599,Wired Headphones,1,11.99,12/21/19 16:47,"71 9th St, Austin, TX 73301" +319600,AA Batteries (4-pack),1,3.84,12/08/19 22:06,"935 14th St, Los Angeles, CA 90001" +319601,Lightning Charging Cable,1,14.95,12/19/19 16:06,"812 Highland St, Los Angeles, CA 90001" +319602,27in 4K Gaming Monitor,1,389.99,12/12/19 13:03,"216 West St, Los Angeles, CA 90001" +319603,USB-C Charging Cable,1,11.95,12/10/19 15:54,"937 6th St, New York City, NY 10001" +319604,AAA Batteries (4-pack),1,2.99,12/04/19 10:24,"89 2nd St, Atlanta, GA 30301" +319605,AA Batteries (4-pack),2,3.84,12/05/19 17:19,"393 Highland St, San Francisco, CA 94016" +319606,Wired Headphones,1,11.99,12/12/19 16:01,"213 9th St, San Francisco, CA 94016" +319607,Wired Headphones,1,11.99,12/27/19 21:56,"68 Chestnut St, Boston, MA 02215" +319608,AAA Batteries (4-pack),1,2.99,12/19/19 19:14,"403 Walnut St, Atlanta, GA 30301" +319609,AAA Batteries (4-pack),1,2.99,12/13/19 05:53,"988 Washington St, San Francisco, CA 94016" +319610,Lightning Charging Cable,1,14.95,12/28/19 21:10,"380 Madison St, Atlanta, GA 30301" +,,,,, +319611,Google Phone,1,600,12/07/19 17:18,"509 13th St, New York City, NY 10001" +319612,iPhone,1,700,12/23/19 11:16,"572 11th St, Portland, OR 97035" +319613,USB-C Charging Cable,1,11.95,12/20/19 18:01,"355 Lake St, New York City, NY 10001" +319614,Wired Headphones,1,11.99,12/03/19 17:02,"167 Willow St, Atlanta, GA 30301" +319615,AA Batteries (4-pack),1,3.84,12/15/19 11:42,"915 Washington St, Atlanta, GA 30301" +319615,34in Ultrawide Monitor,1,379.99,12/15/19 11:42,"915 Washington St, Atlanta, GA 30301" +319616,USB-C Charging Cable,1,11.95,12/31/19 21:38,"753 West St, New York City, NY 10001" +319617,AAA Batteries (4-pack),2,2.99,12/01/19 11:57,"341 11th St, Los Angeles, CA 90001" +319618,Wired Headphones,1,11.99,12/19/19 06:50,"94 Main St, San Francisco, CA 94016" +319619,iPhone,1,700,12/09/19 17:17,"128 Church St, Dallas, TX 75001" +319619,Apple Airpods Headphones,1,150,12/09/19 17:17,"128 Church St, Dallas, TX 75001" +319620,Bose SoundSport Headphones,1,99.99,12/01/19 19:57,"7 1st St, Portland, ME 04101" +319621,AAA Batteries (4-pack),1,2.99,12/12/19 11:44,"14 Chestnut St, Los Angeles, CA 90001" +319622,Lightning Charging Cable,1,14.95,12/16/19 12:15,"273 6th St, Portland, OR 97035" +319623,AA Batteries (4-pack),2,3.84,12/20/19 09:31,"572 1st St, Portland, OR 97035" +319624,AAA Batteries (4-pack),2,2.99,12/09/19 21:24,"494 7th St, New York City, NY 10001" +319625,AA Batteries (4-pack),1,3.84,12/14/19 19:47,"718 Jackson St, Austin, TX 73301" +319626,Wired Headphones,1,11.99,12/31/19 21:49,"279 Cedar St, Los Angeles, CA 90001" +319627,Wired Headphones,1,11.99,12/04/19 20:07,"832 Meadow St, New York City, NY 10001" +319628,Lightning Charging Cable,1,14.95,12/20/19 18:24,"387 Chestnut St, San Francisco, CA 94016" +319629,Lightning Charging Cable,1,14.95,12/28/19 12:26,"517 Lincoln St, New York City, NY 10001" +319630,AA Batteries (4-pack),4,3.84,12/27/19 17:26,"52 Highland St, New York City, NY 10001" +319631,Bose SoundSport Headphones,1,99.99,12/18/19 16:36,"469 Ridge St, Los Angeles, CA 90001" +319632,Lightning Charging Cable,1,14.95,12/09/19 18:48,"611 7th St, Portland, OR 97035" +319633,Wired Headphones,1,11.99,12/29/19 14:27,"654 Spruce St, Boston, MA 02215" +319634,Bose SoundSport Headphones,1,99.99,12/01/19 18:09,"157 Jefferson St, Austin, TX 73301" +319635,Bose SoundSport Headphones,1,99.99,12/16/19 11:11,"365 Jefferson St, New York City, NY 10001" +319636,AA Batteries (4-pack),1,3.84,12/11/19 19:35,"780 9th St, Seattle, WA 98101" +319637,AA Batteries (4-pack),2,3.84,12/10/19 09:36,"865 North St, New York City, NY 10001" +319638,27in FHD Monitor,1,149.99,12/11/19 18:04,"139 6th St, Los Angeles, CA 90001" +319639,Google Phone,1,600,12/26/19 17:18,"738 2nd St, Boston, MA 02215" +319639,USB-C Charging Cable,1,11.95,12/26/19 17:18,"738 2nd St, Boston, MA 02215" +319640,AA Batteries (4-pack),2,3.84,12/09/19 14:14,"215 West St, San Francisco, CA 94016" +319641,ThinkPad Laptop,1,999.99,12/04/19 16:26,"575 West St, New York City, NY 10001" +319642,USB-C Charging Cable,2,11.95,12/04/19 14:48,"820 Madison St, Los Angeles, CA 90001" +319643,Lightning Charging Cable,1,14.95,12/02/19 19:10,"820 Johnson St, San Francisco, CA 94016" +319644,ThinkPad Laptop,1,999.99,12/08/19 15:53,"431 Forest St, Seattle, WA 98101" +319645,Lightning Charging Cable,1,14.95,12/29/19 10:46,"924 Lakeview St, Los Angeles, CA 90001" +319646,Apple Airpods Headphones,1,150,12/18/19 03:56,"951 6th St, San Francisco, CA 94016" +319647,USB-C Charging Cable,2,11.95,12/16/19 18:23,"218 Willow St, Portland, OR 97035" +319648,iPhone,1,700,12/30/19 14:56,"293 Highland St, Los Angeles, CA 90001" +319648,Lightning Charging Cable,1,14.95,12/30/19 14:56,"293 Highland St, Los Angeles, CA 90001" +319649,Wired Headphones,1,11.99,12/25/19 17:18,"142 Adams St, San Francisco, CA 94016" +319650,Apple Airpods Headphones,1,150,12/26/19 20:12,"358 4th St, Boston, MA 02215" +319651,Lightning Charging Cable,1,14.95,12/31/19 13:19,"513 Center St, San Francisco, CA 94016" +319652,Lightning Charging Cable,1,14.95,12/04/19 15:32,"253 5th St, Boston, MA 02215" +319653,20in Monitor,1,109.99,12/23/19 12:11,"663 8th St, Boston, MA 02215" +319654,Google Phone,1,600,12/09/19 18:55,"693 West St, Dallas, TX 75001" +319655,AA Batteries (4-pack),2,3.84,12/18/19 20:15,"870 Park St, Atlanta, GA 30301" +319656,AAA Batteries (4-pack),1,2.99,12/24/19 00:31,"6 Highland St, Los Angeles, CA 90001" +319657,Lightning Charging Cable,1,14.95,12/29/19 13:12,"993 Park St, Boston, MA 02215" +319658,AA Batteries (4-pack),1,3.84,12/01/19 13:06,"887 14th St, Dallas, TX 75001" +319659,Apple Airpods Headphones,1,150,12/22/19 01:14,"528 Adams St, Seattle, WA 98101" +319660,Bose SoundSport Headphones,1,99.99,12/27/19 00:20,"364 Cherry St, Boston, MA 02215" +319661,Lightning Charging Cable,1,14.95,12/27/19 20:45,"673 Lakeview St, Los Angeles, CA 90001" +319662,iPhone,1,700,12/29/19 15:07,"897 Jackson St, San Francisco, CA 94016" +319663,USB-C Charging Cable,1,11.95,12/26/19 21:19,"297 Jackson St, Boston, MA 02215" +319664,Apple Airpods Headphones,1,150,12/04/19 08:27,"149 Church St, Los Angeles, CA 90001" +319665,Wired Headphones,1,11.99,12/23/19 18:35,"272 Chestnut St, New York City, NY 10001" +319666,AA Batteries (4-pack),1,3.84,12/30/19 18:51,"163 Jefferson St, Boston, MA 02215" +319667,Lightning Charging Cable,1,14.95,12/01/19 18:33,"285 Chestnut St, New York City, NY 10001" +319668,Lightning Charging Cable,1,14.95,12/22/19 15:52,"414 7th St, Dallas, TX 75001" +319669,AAA Batteries (4-pack),1,2.99,12/23/19 21:51,"450 Ridge St, Austin, TX 73301" +319670,USB-C Charging Cable,1,11.95,12/07/19 00:09,"57 Jackson St, Boston, MA 02215" +319671,USB-C Charging Cable,1,11.95,12/04/19 12:00,"366 Sunset St, Portland, ME 04101" +319672,AA Batteries (4-pack),1,3.84,12/19/19 12:02,"892 Jefferson St, Los Angeles, CA 90001" +319673,AA Batteries (4-pack),1,3.84,12/25/19 11:27,"87 Lake St, Austin, TX 73301" +319674,AA Batteries (4-pack),1,3.84,12/15/19 19:10,"872 Lincoln St, New York City, NY 10001" +319675,Apple Airpods Headphones,1,150,12/18/19 23:08,"646 Lincoln St, Boston, MA 02215" +319676,Wired Headphones,2,11.99,12/12/19 12:37,"206 6th St, Portland, OR 97035" +319677,34in Ultrawide Monitor,1,379.99,12/15/19 20:04,"483 Park St, Atlanta, GA 30301" +319678,USB-C Charging Cable,1,11.95,12/28/19 14:54,"180 Madison St, New York City, NY 10001" +319679,20in Monitor,1,109.99,12/22/19 13:12,"542 1st St, San Francisco, CA 94016" +319680,AAA Batteries (4-pack),1,2.99,12/16/19 21:16,"148 Hill St, Atlanta, GA 30301" +319681,27in FHD Monitor,1,149.99,12/01/19 12:27,"379 River St, San Francisco, CA 94016" +319682,iPhone,1,700,12/17/19 14:03,"658 Hill St, San Francisco, CA 94016" +319683,Bose SoundSport Headphones,1,99.99,12/10/19 22:25,"167 10th St, New York City, NY 10001" +319684,34in Ultrawide Monitor,1,379.99,12/15/19 08:46,"72 Spruce St, New York City, NY 10001" +319685,20in Monitor,1,109.99,12/19/19 15:07,"512 Willow St, Seattle, WA 98101" +319686,Macbook Pro Laptop,1,1700,12/10/19 23:40,"337 Sunset St, New York City, NY 10001" +319687,Lightning Charging Cable,2,14.95,12/14/19 23:07,"446 Center St, San Francisco, CA 94016" +319688,AA Batteries (4-pack),1,3.84,12/11/19 16:58,"526 12th St, Dallas, TX 75001" +319689,Wired Headphones,1,11.99,12/03/19 21:29,"671 13th St, San Francisco, CA 94016" +319690,20in Monitor,1,109.99,12/23/19 12:18,"779 Maple St, Atlanta, GA 30301" +319691,Bose SoundSport Headphones,1,99.99,12/16/19 12:45,"514 Willow St, New York City, NY 10001" +319692,AAA Batteries (4-pack),1,2.99,12/15/19 13:18,"563 2nd St, Boston, MA 02215" +319693,Bose SoundSport Headphones,1,99.99,12/21/19 12:05,"87 13th St, Boston, MA 02215" +319694,AAA Batteries (4-pack),1,2.99,12/13/19 17:14,"891 8th St, Austin, TX 73301" +319695,AA Batteries (4-pack),1,3.84,12/08/19 10:18,"223 Walnut St, Austin, TX 73301" +319696,Lightning Charging Cable,1,14.95,12/18/19 12:32,"664 Chestnut St, Atlanta, GA 30301" +319697,AA Batteries (4-pack),1,3.84,12/06/19 15:48,"50 North St, San Francisco, CA 94016" +319698,AA Batteries (4-pack),1,3.84,12/22/19 11:39,"270 Walnut St, San Francisco, CA 94016" +319699,27in 4K Gaming Monitor,1,389.99,12/09/19 18:32,"121 North St, Portland, ME 04101" +319700,AAA Batteries (4-pack),1,2.99,12/25/19 10:48,"434 13th St, San Francisco, CA 94016" +319701,USB-C Charging Cable,1,11.95,12/09/19 15:39,"460 Highland St, Atlanta, GA 30301" +319702,Apple Airpods Headphones,1,150,12/02/19 10:44,"112 10th St, Los Angeles, CA 90001" +319703,Wired Headphones,1,11.99,12/17/19 12:43,"256 Spruce St, Boston, MA 02215" +319704,USB-C Charging Cable,2,11.95,12/19/19 17:10,"3 Lincoln St, Boston, MA 02215" +319705,USB-C Charging Cable,1,11.95,12/20/19 15:58,"380 Elm St, Seattle, WA 98101" +319706,27in 4K Gaming Monitor,1,389.99,12/31/19 19:34,"662 Elm St, Atlanta, GA 30301" +319707,Wired Headphones,1,11.99,12/27/19 15:31,"243 Maple St, New York City, NY 10001" +319708,27in FHD Monitor,1,149.99,12/21/19 21:09,"371 Adams St, San Francisco, CA 94016" +319709,AA Batteries (4-pack),1,3.84,12/09/19 21:00,"2 Adams St, Dallas, TX 75001" +319710,AA Batteries (4-pack),3,3.84,12/20/19 11:21,"197 Lincoln St, San Francisco, CA 94016" +319711,AAA Batteries (4-pack),1,2.99,12/05/19 16:31,"708 Jefferson St, Atlanta, GA 30301" +319712,Lightning Charging Cable,1,14.95,12/13/19 21:27,"958 Spruce St, San Francisco, CA 94016" +319713,Lightning Charging Cable,1,14.95,12/18/19 21:39,"896 Johnson St, Boston, MA 02215" +319714,Wired Headphones,1,11.99,12/29/19 17:47,"797 Cherry St, Atlanta, GA 30301" +319715,AAA Batteries (4-pack),1,2.99,12/28/19 20:31,"356 Hill St, San Francisco, CA 94016" +319716,AA Batteries (4-pack),6,3.84,12/03/19 09:24,"659 Sunset St, Boston, MA 02215" +319717,AAA Batteries (4-pack),1,2.99,12/11/19 12:41,"633 Washington St, San Francisco, CA 94016" +319718,Flatscreen TV,1,300,12/16/19 10:18,"344 6th St, Los Angeles, CA 90001" +319719,Lightning Charging Cable,1,14.95,12/29/19 11:07,"593 South St, Los Angeles, CA 90001" +319720,Apple Airpods Headphones,1,150,12/14/19 14:36,"723 Jackson St, New York City, NY 10001" +319721,Lightning Charging Cable,1,14.95,12/03/19 18:38,"998 Chestnut St, New York City, NY 10001" +319722,AAA Batteries (4-pack),1,2.99,12/19/19 11:04,"74 1st St, Seattle, WA 98101" +319723,USB-C Charging Cable,1,11.95,12/12/19 21:22,"583 Jackson St, Los Angeles, CA 90001" +319724,AA Batteries (4-pack),1,3.84,12/01/19 17:48,"252 Sunset St, Atlanta, GA 30301" +319725,AA Batteries (4-pack),1,3.84,12/18/19 23:37,"888 Lakeview St, San Francisco, CA 94016" +319726,34in Ultrawide Monitor,1,379.99,12/22/19 19:14,"294 4th St, San Francisco, CA 94016" +319727,USB-C Charging Cable,1,11.95,12/01/19 10:34,"527 Washington St, Austin, TX 73301" +319728,USB-C Charging Cable,1,11.95,12/25/19 11:55,"849 Washington St, Los Angeles, CA 90001" +319729,AA Batteries (4-pack),1,3.84,12/11/19 04:11,"25 River St, San Francisco, CA 94016" +,,,,, +319730,Bose SoundSport Headphones,1,99.99,12/09/19 12:11,"931 Johnson St, New York City, NY 10001" +319731,Apple Airpods Headphones,1,150,12/04/19 14:49,"167 14th St, Los Angeles, CA 90001" +319732,AAA Batteries (4-pack),1,2.99,12/25/19 13:01,"172 Forest St, Boston, MA 02215" +319733,Apple Airpods Headphones,1,150,12/25/19 00:07,"244 11th St, San Francisco, CA 94016" +319734,AAA Batteries (4-pack),1,2.99,12/15/19 20:26,"518 Maple St, Los Angeles, CA 90001" +319735,Bose SoundSport Headphones,1,99.99,12/04/19 22:23,"19 5th St, Boston, MA 02215" +319736,AA Batteries (4-pack),1,3.84,12/20/19 09:22,"932 14th St, Los Angeles, CA 90001" +319737,34in Ultrawide Monitor,1,379.99,12/26/19 20:34,"229 Cherry St, Boston, MA 02215" +319738,Wired Headphones,1,11.99,12/16/19 13:27,"853 Church St, San Francisco, CA 94016" +319739,27in 4K Gaming Monitor,1,389.99,12/06/19 12:39,"288 Sunset St, San Francisco, CA 94016" +319740,27in 4K Gaming Monitor,1,389.99,12/11/19 18:30,"814 Cherry St, San Francisco, CA 94016" +319741,34in Ultrawide Monitor,1,379.99,12/20/19 15:56,"569 Lakeview St, Boston, MA 02215" +319742,AAA Batteries (4-pack),1,2.99,12/20/19 18:49,"162 Madison St, Los Angeles, CA 90001" +319743,AAA Batteries (4-pack),1,2.99,12/12/19 08:35,"802 8th St, Atlanta, GA 30301" +319744,Wired Headphones,1,11.99,12/02/19 20:57,"401 Johnson St, New York City, NY 10001" +319745,Bose SoundSport Headphones,1,99.99,12/24/19 21:25,"852 Sunset St, Portland, OR 97035" +319746,Wired Headphones,1,11.99,12/13/19 15:20,"98 9th St, Los Angeles, CA 90001" +319747,Apple Airpods Headphones,1,150,12/23/19 12:56,"625 Wilson St, Los Angeles, CA 90001" +319748,USB-C Charging Cable,1,11.95,12/18/19 09:31,"556 Highland St, Atlanta, GA 30301" +319749,20in Monitor,1,109.99,12/09/19 12:59,"784 11th St, Atlanta, GA 30301" +319750,USB-C Charging Cable,1,11.95,12/14/19 20:34,"105 13th St, Dallas, TX 75001" +319751,Bose SoundSport Headphones,1,99.99,12/28/19 20:36,"93 Ridge St, San Francisco, CA 94016" +319752,34in Ultrawide Monitor,1,379.99,12/22/19 12:32,"595 5th St, Portland, OR 97035" +319753,AAA Batteries (4-pack),1,2.99,12/21/19 09:58,"555 10th St, Boston, MA 02215" +319754,Lightning Charging Cable,1,14.95,12/16/19 20:38,"696 Lincoln St, Dallas, TX 75001" +319755,USB-C Charging Cable,1,11.95,12/23/19 21:36,"282 9th St, Los Angeles, CA 90001" +319756,Flatscreen TV,1,300,12/08/19 19:06,"649 14th St, Atlanta, GA 30301" +319757,AAA Batteries (4-pack),1,2.99,12/02/19 12:56,"469 Chestnut St, Los Angeles, CA 90001" +319758,Apple Airpods Headphones,1,150,12/13/19 21:48,"276 Lincoln St, Seattle, WA 98101" +319759,Bose SoundSport Headphones,1,99.99,12/23/19 20:03,"286 8th St, Boston, MA 02215" +319760,Lightning Charging Cable,1,14.95,12/08/19 14:44,"975 Maple St, San Francisco, CA 94016" +319761,AA Batteries (4-pack),1,3.84,12/09/19 00:04,"438 7th St, Austin, TX 73301" +319761,USB-C Charging Cable,1,11.95,12/09/19 00:04,"438 7th St, Austin, TX 73301" +319762,USB-C Charging Cable,1,11.95,12/05/19 00:48,"721 Jefferson St, Austin, TX 73301" +319763,USB-C Charging Cable,1,11.95,12/19/19 00:28,"835 12th St, Dallas, TX 75001" +319764,AA Batteries (4-pack),1,3.84,12/25/19 10:16,"320 Washington St, San Francisco, CA 94016" +319765,Bose SoundSport Headphones,1,99.99,12/18/19 20:25,"912 Jefferson St, Los Angeles, CA 90001" +319766,Google Phone,1,600,12/16/19 10:43,"156 Walnut St, Boston, MA 02215" +319767,Wired Headphones,1,11.99,12/31/19 15:28,"220 Madison St, San Francisco, CA 94016" +319768,27in 4K Gaming Monitor,1,389.99,12/26/19 17:35,"652 Lincoln St, Los Angeles, CA 90001" +319769,AAA Batteries (4-pack),1,2.99,12/24/19 20:34,"465 Hill St, Austin, TX 73301" +319770,34in Ultrawide Monitor,1,379.99,12/19/19 10:59,"816 8th St, Los Angeles, CA 90001" +319771,Macbook Pro Laptop,1,1700,12/14/19 14:05,"917 Meadow St, San Francisco, CA 94016" +319772,Flatscreen TV,1,300,12/25/19 15:04,"912 Johnson St, San Francisco, CA 94016" +319773,Wired Headphones,1,11.99,12/17/19 16:54,"379 Cherry St, San Francisco, CA 94016" +319774,Flatscreen TV,1,300,12/24/19 12:43,"409 North St, Boston, MA 02215" +319775,Apple Airpods Headphones,1,150,12/22/19 12:08,"289 Pine St, San Francisco, CA 94016" +319776,27in 4K Gaming Monitor,1,389.99,12/10/19 08:51,"378 Lakeview St, Boston, MA 02215" +319777,AAA Batteries (4-pack),2,2.99,12/25/19 08:01,"907 Lincoln St, Portland, ME 04101" +319778,34in Ultrawide Monitor,1,379.99,12/01/19 15:25,"736 14th St, San Francisco, CA 94016" +319779,AAA Batteries (4-pack),1,2.99,12/17/19 12:18,"967 North St, Los Angeles, CA 90001" +319780,Apple Airpods Headphones,1,150,12/31/19 00:53,"622 Main St, Austin, TX 73301" +319781,Bose SoundSport Headphones,1,99.99,12/13/19 14:30,"797 Willow St, Los Angeles, CA 90001" +319782,Wired Headphones,1,11.99,12/19/19 20:10,"932 6th St, San Francisco, CA 94016" +319783,Bose SoundSport Headphones,1,99.99,12/20/19 18:36,"188 11th St, Dallas, TX 75001" +319784,Lightning Charging Cable,1,14.95,12/08/19 17:34,"34 North St, San Francisco, CA 94016" +319785,27in FHD Monitor,1,149.99,12/13/19 22:49,"265 Cherry St, Los Angeles, CA 90001" +319786,Bose SoundSport Headphones,1,99.99,12/14/19 13:06,"921 8th St, San Francisco, CA 94016" +319787,USB-C Charging Cable,1,11.95,12/09/19 04:18,"386 Cedar St, San Francisco, CA 94016" +319788,AA Batteries (4-pack),2,3.84,12/12/19 17:48,"448 11th St, Seattle, WA 98101" +319789,Lightning Charging Cable,2,14.95,12/29/19 10:54,"261 Cherry St, Boston, MA 02215" +319790,USB-C Charging Cable,1,11.95,12/23/19 13:53,"628 Willow St, Atlanta, GA 30301" +319791,Lightning Charging Cable,1,14.95,12/23/19 15:08,"34 Madison St, Seattle, WA 98101" +319792,AA Batteries (4-pack),1,3.84,12/01/19 23:37,"242 North St, Los Angeles, CA 90001" +319793,34in Ultrawide Monitor,1,379.99,12/14/19 13:31,"226 West St, Los Angeles, CA 90001" +319794,Bose SoundSport Headphones,1,99.99,12/26/19 09:46,"359 Spruce St, San Francisco, CA 94016" +319795,AA Batteries (4-pack),2,3.84,12/07/19 04:26,"828 Johnson St, San Francisco, CA 94016" +319796,34in Ultrawide Monitor,1,379.99,12/06/19 15:32,"731 South St, Boston, MA 02215" +319797,20in Monitor,1,109.99,12/28/19 17:54,"76 Highland St, New York City, NY 10001" +319798,iPhone,1,700,12/19/19 22:01,"161 Main St, Boston, MA 02215" +319799,Bose SoundSport Headphones,1,99.99,12/24/19 12:11,"875 Hickory St, Austin, TX 73301" +319800,USB-C Charging Cable,1,11.95,12/22/19 13:19,"414 Johnson St, Los Angeles, CA 90001" +319801,Lightning Charging Cable,1,14.95,12/17/19 12:13,"116 River St, Seattle, WA 98101" +319802,iPhone,1,700,12/10/19 13:18,"832 Lake St, New York City, NY 10001" +319803,Apple Airpods Headphones,1,150,12/06/19 18:31,"540 10th St, San Francisco, CA 94016" +319804,Bose SoundSport Headphones,1,99.99,12/05/19 21:47,"124 Lincoln St, Los Angeles, CA 90001" +319805,Lightning Charging Cable,1,14.95,12/28/19 18:57,"567 Meadow St, San Francisco, CA 94016" +319806,Wired Headphones,1,11.99,12/06/19 13:52,"403 Cedar St, San Francisco, CA 94016" +319807,AAA Batteries (4-pack),3,2.99,12/09/19 08:59,"354 7th St, San Francisco, CA 94016" +319808,27in 4K Gaming Monitor,1,389.99,12/31/19 22:09,"195 Pine St, Boston, MA 02215" +319809,Lightning Charging Cable,1,14.95,12/14/19 05:53,"627 Spruce St, San Francisco, CA 94016" +319810,LG Dryer,1,600.0,12/28/19 18:21,"777 Elm St, San Francisco, CA 94016" +319811,AA Batteries (4-pack),1,3.84,12/15/19 16:59,"749 6th St, San Francisco, CA 94016" +319812,27in FHD Monitor,1,149.99,12/03/19 20:31,"746 Elm St, Dallas, TX 75001" +319813,Google Phone,1,600,12/04/19 18:56,"537 Cedar St, San Francisco, CA 94016" +319814,Apple Airpods Headphones,1,150,12/08/19 12:17,"364 Hickory St, New York City, NY 10001" +319815,Google Phone,1,600,12/07/19 09:30,"80 Hickory St, San Francisco, CA 94016" +319816,Apple Airpods Headphones,1,150,12/12/19 11:13,"334 1st St, New York City, NY 10001" +319817,Bose SoundSport Headphones,1,99.99,12/29/19 14:06,"90 4th St, Dallas, TX 75001" +319818,AAA Batteries (4-pack),1,2.99,12/25/19 14:34,"915 River St, Dallas, TX 75001" +319819,Bose SoundSport Headphones,1,99.99,12/21/19 23:12,"630 Willow St, New York City, NY 10001" +319820,Google Phone,1,600,12/07/19 18:01,"520 Cherry St, New York City, NY 10001" +319820,USB-C Charging Cable,1,11.95,12/07/19 18:01,"520 Cherry St, New York City, NY 10001" +319821,Lightning Charging Cable,1,14.95,12/07/19 20:28,"744 Spruce St, Boston, MA 02215" +319822,Wired Headphones,1,11.99,12/30/19 19:35,"783 Sunset St, Seattle, WA 98101" +319823,AAA Batteries (4-pack),1,2.99,12/18/19 22:38,"354 Forest St, Atlanta, GA 30301" +319824,AAA Batteries (4-pack),2,2.99,12/19/19 11:34,"56 Cherry St, San Francisco, CA 94016" +319825,Apple Airpods Headphones,1,150,12/22/19 10:18,"369 14th St, Dallas, TX 75001" +,,,,, +319826,iPhone,1,700,12/28/19 17:01,"978 Center St, Los Angeles, CA 90001" +319826,Lightning Charging Cable,1,14.95,12/28/19 17:01,"978 Center St, Los Angeles, CA 90001" +319827,AAA Batteries (4-pack),2,2.99,12/07/19 18:33,"17 8th St, San Francisco, CA 94016" +319828,AAA Batteries (4-pack),2,2.99,12/06/19 17:28,"765 4th St, Boston, MA 02215" +319829,ThinkPad Laptop,1,999.99,12/14/19 13:29,"875 Washington St, Boston, MA 02215" +319830,AA Batteries (4-pack),1,3.84,12/24/19 17:20,"790 North St, San Francisco, CA 94016" +319831,iPhone,1,700,12/09/19 12:03,"382 Hickory St, San Francisco, CA 94016" +319832,Wired Headphones,1,11.99,12/28/19 11:19,"299 Lakeview St, New York City, NY 10001" +319833,Flatscreen TV,1,300,12/11/19 20:17,"433 1st St, San Francisco, CA 94016" +319834,Wired Headphones,1,11.99,12/10/19 08:09,"832 Spruce St, New York City, NY 10001" +319835,27in 4K Gaming Monitor,1,389.99,12/09/19 17:13,"644 2nd St, New York City, NY 10001" +319836,Lightning Charging Cable,1,14.95,12/27/19 01:12,"166 Maple St, San Francisco, CA 94016" +319837,Wired Headphones,1,11.99,12/31/19 13:31,"211 Elm St, Los Angeles, CA 90001" +319838,AAA Batteries (4-pack),3,2.99,12/29/19 13:11,"495 4th St, Boston, MA 02215" +319839,Wired Headphones,1,11.99,12/29/19 08:15,"663 Willow St, San Francisco, CA 94016" +319840,Apple Airpods Headphones,1,150,12/06/19 13:36,"652 Walnut St, Los Angeles, CA 90001" +319841,AA Batteries (4-pack),1,3.84,12/25/19 16:25,"477 12th St, New York City, NY 10001" +319842,AAA Batteries (4-pack),1,2.99,12/08/19 10:50,"687 River St, Atlanta, GA 30301" +319843,Google Phone,1,600,12/04/19 16:36,"11 Hickory St, Boston, MA 02215" +319844,AAA Batteries (4-pack),2,2.99,12/29/19 22:00,"520 Chestnut St, Dallas, TX 75001" +319845,27in FHD Monitor,1,149.99,12/14/19 02:18,"654 Highland St, New York City, NY 10001" +319846,27in 4K Gaming Monitor,1,389.99,12/07/19 23:01,"921 8th St, New York City, NY 10001" +319847,Flatscreen TV,1,300,12/22/19 19:20,"720 7th St, New York City, NY 10001" +319848,Google Phone,1,600,12/11/19 21:10,"125 4th St, San Francisco, CA 94016" +319848,USB-C Charging Cable,1,11.95,12/11/19 21:10,"125 4th St, San Francisco, CA 94016" +319849,Wired Headphones,1,11.99,12/24/19 10:50,"241 Washington St, San Francisco, CA 94016" +319850,34in Ultrawide Monitor,1,379.99,12/03/19 16:38,"728 12th St, San Francisco, CA 94016" +319851,Lightning Charging Cable,1,14.95,12/28/19 12:15,"381 Pine St, Boston, MA 02215" +319852,Wired Headphones,1,11.99,12/31/19 11:43,"563 South St, Los Angeles, CA 90001" +319853,Flatscreen TV,1,300,12/12/19 10:55,"273 Cedar St, Seattle, WA 98101" +319854,Wired Headphones,1,11.99,12/26/19 20:03,"417 Walnut St, San Francisco, CA 94016" +319855,AAA Batteries (4-pack),3,2.99,12/19/19 20:49,"10 Spruce St, San Francisco, CA 94016" +319856,34in Ultrawide Monitor,1,379.99,12/13/19 20:43,"460 4th St, Boston, MA 02215" +319857,AA Batteries (4-pack),2,3.84,12/30/19 02:08,"152 Lincoln St, Atlanta, GA 30301" +319858,27in 4K Gaming Monitor,1,389.99,12/10/19 18:39,"535 Elm St, Portland, OR 97035" +319859,Apple Airpods Headphones,1,150,12/09/19 18:51,"226 14th St, Portland, OR 97035" +319860,20in Monitor,1,109.99,12/02/19 09:33,"711 Jackson St, San Francisco, CA 94016" +319861,Macbook Pro Laptop,1,1700,12/01/19 07:26,"808 12th St, Portland, OR 97035" +319862,27in FHD Monitor,1,149.99,12/12/19 13:09,"693 Chestnut St, San Francisco, CA 94016" +319863,AAA Batteries (4-pack),1,2.99,12/31/19 11:05,"995 Spruce St, Portland, OR 97035" +319864,USB-C Charging Cable,1,11.95,12/31/19 10:56,"565 Pine St, Atlanta, GA 30301" +319865,Macbook Pro Laptop,1,1700,12/22/19 07:33,"310 Pine St, New York City, NY 10001" +319866,Lightning Charging Cable,1,14.95,12/11/19 19:29,"173 Spruce St, Los Angeles, CA 90001" +319867,Google Phone,1,600,12/21/19 09:56,"200 Adams St, Austin, TX 73301" +319868,AA Batteries (4-pack),2,3.84,12/26/19 00:20,"48 Cedar St, Los Angeles, CA 90001" +319869,20in Monitor,1,109.99,12/07/19 19:09,"498 Washington St, San Francisco, CA 94016" +319870,AAA Batteries (4-pack),2,2.99,12/13/19 04:50,"4 Lincoln St, San Francisco, CA 94016" +319871,Lightning Charging Cable,1,14.95,12/06/19 21:08,"449 10th St, Atlanta, GA 30301" +319872,Lightning Charging Cable,1,14.95,12/07/19 05:13,"700 Hickory St, San Francisco, CA 94016" +319873,Google Phone,1,600,12/12/19 19:48,"879 Washington St, Los Angeles, CA 90001" +319873,USB-C Charging Cable,1,11.95,12/12/19 19:48,"879 Washington St, Los Angeles, CA 90001" +319874,Bose SoundSport Headphones,1,99.99,12/13/19 09:18,"114 10th St, San Francisco, CA 94016" +319875,USB-C Charging Cable,1,11.95,12/06/19 13:58,"119 Jackson St, San Francisco, CA 94016" +319876,Bose SoundSport Headphones,1,99.99,12/25/19 18:50,"500 9th St, New York City, NY 10001" +319877,Macbook Pro Laptop,1,1700,12/29/19 20:41,"398 Walnut St, Seattle, WA 98101" +319878,AA Batteries (4-pack),1,3.84,12/22/19 17:44,"933 14th St, San Francisco, CA 94016" +319879,Google Phone,1,600,12/09/19 17:53,"810 West St, Austin, TX 73301" +319880,Google Phone,1,600,12/09/19 19:28,"967 12th St, Portland, OR 97035" +319880,USB-C Charging Cable,1,11.95,12/09/19 19:28,"967 12th St, Portland, OR 97035" +319881,AA Batteries (4-pack),1,3.84,12/05/19 14:05,"304 14th St, San Francisco, CA 94016" +319882,USB-C Charging Cable,1,11.95,12/15/19 19:02,"506 Wilson St, San Francisco, CA 94016" +319883,Wired Headphones,1,11.99,12/14/19 22:04,"970 Forest St, Boston, MA 02215" +319884,Lightning Charging Cable,1,14.95,12/01/19 13:21,"997 Meadow St, San Francisco, CA 94016" +319885,Apple Airpods Headphones,1,150,12/03/19 11:23,"476 Lincoln St, San Francisco, CA 94016" +319886,USB-C Charging Cable,1,11.95,12/16/19 22:56,"602 South St, Atlanta, GA 30301" +319887,Wired Headphones,1,11.99,12/11/19 18:55,"94 Dogwood St, Boston, MA 02215" +319888,Google Phone,1,600,12/19/19 13:22,"911 Walnut St, San Francisco, CA 94016" +319889,USB-C Charging Cable,1,11.95,12/15/19 03:08,"197 Wilson St, San Francisco, CA 94016" +319890,Apple Airpods Headphones,1,150,12/22/19 20:33,"828 Willow St, San Francisco, CA 94016" +319891,27in FHD Monitor,1,149.99,12/03/19 23:26,"480 2nd St, Los Angeles, CA 90001" +319892,Bose SoundSport Headphones,1,99.99,12/19/19 21:06,"435 12th St, Atlanta, GA 30301" +319893,Flatscreen TV,1,300,12/18/19 11:41,"539 5th St, Portland, OR 97035" +319894,USB-C Charging Cable,1,11.95,12/30/19 08:18,"702 10th St, Portland, OR 97035" +319895,AAA Batteries (4-pack),3,2.99,12/17/19 19:46,"14 Jefferson St, Boston, MA 02215" +319896,AAA Batteries (4-pack),2,2.99,12/16/19 15:26,"60 Meadow St, San Francisco, CA 94016" +319897,27in 4K Gaming Monitor,1,389.99,12/18/19 13:02,"972 Meadow St, Seattle, WA 98101" +319898,34in Ultrawide Monitor,1,379.99,12/25/19 15:37,"32 Willow St, San Francisco, CA 94016" +319899,Lightning Charging Cable,1,14.95,12/30/19 17:31,"76 Church St, San Francisco, CA 94016" +319900,34in Ultrawide Monitor,1,379.99,12/20/19 13:06,"122 West St, Atlanta, GA 30301" +319901,Lightning Charging Cable,1,14.95,12/01/19 10:55,"352 Meadow St, Austin, TX 73301" +319902,Apple Airpods Headphones,1,150,12/14/19 09:19,"935 14th St, Dallas, TX 75001" +319903,AAA Batteries (4-pack),5,2.99,12/29/19 08:10,"769 Sunset St, San Francisco, CA 94016" +319904,Apple Airpods Headphones,1,150,12/15/19 13:20,"20 Chestnut St, Boston, MA 02215" +319905,Lightning Charging Cable,2,14.95,12/24/19 15:41,"981 Lakeview St, Boston, MA 02215" +319906,USB-C Charging Cable,1,11.95,12/03/19 11:04,"680 South St, Portland, OR 97035" +319907,Vareebadd Phone,1,400,12/16/19 12:56,"239 Chestnut St, Atlanta, GA 30301" +319907,USB-C Charging Cable,1,11.95,12/16/19 12:56,"239 Chestnut St, Atlanta, GA 30301" +319908,27in 4K Gaming Monitor,1,389.99,12/13/19 13:36,"277 Maple St, Seattle, WA 98101" +319909,AAA Batteries (4-pack),1,2.99,12/24/19 15:07,"329 12th St, Portland, ME 04101" +319910,20in Monitor,1,109.99,12/22/19 00:35,"431 6th St, New York City, NY 10001" +319911,Apple Airpods Headphones,1,150,12/22/19 13:18,"192 Dogwood St, Dallas, TX 75001" +319912,Vareebadd Phone,1,400,12/28/19 11:12,"768 Adams St, New York City, NY 10001" +319913,Apple Airpods Headphones,1,150,12/16/19 14:49,"940 11th St, San Francisco, CA 94016" +319914,Lightning Charging Cable,1,14.95,12/04/19 21:07,"225 Jackson St, Atlanta, GA 30301" +319915,27in FHD Monitor,1,149.99,12/02/19 08:34,"564 6th St, New York City, NY 10001" +319916,Lightning Charging Cable,2,14.95,12/08/19 17:56,"34 Johnson St, San Francisco, CA 94016" +319917,AAA Batteries (4-pack),1,2.99,12/20/19 09:50,"186 Center St, Boston, MA 02215" +319918,AA Batteries (4-pack),1,3.84,12/27/19 07:38,"179 Meadow St, Atlanta, GA 30301" +319919,Lightning Charging Cable,1,14.95,12/15/19 12:58,"539 2nd St, Los Angeles, CA 90001" +319920,USB-C Charging Cable,1,11.95,12/12/19 03:18,"603 Elm St, New York City, NY 10001" +319921,Flatscreen TV,1,300,12/02/19 10:13,"936 Jackson St, Los Angeles, CA 90001" +319922,Wired Headphones,1,11.99,12/25/19 18:55,"820 Johnson St, Dallas, TX 75001" +319923,Flatscreen TV,1,300,12/03/19 07:29,"945 Spruce St, Seattle, WA 98101" +319924,Bose SoundSport Headphones,1,99.99,12/11/19 12:27,"429 6th St, San Francisco, CA 94016" +319925,AA Batteries (4-pack),1,3.84,12/25/19 13:50,"892 Highland St, Boston, MA 02215" +319926,LG Washing Machine,1,600.0,12/23/19 13:26,"275 Highland St, San Francisco, CA 94016" +319927,Lightning Charging Cable,1,14.95,12/01/19 17:04,"155 Ridge St, Seattle, WA 98101" +319928,USB-C Charging Cable,1,11.95,12/07/19 12:44,"868 11th St, Dallas, TX 75001" +319929,Lightning Charging Cable,1,14.95,12/21/19 10:07,"214 Sunset St, Los Angeles, CA 90001" +319930,20in Monitor,1,109.99,12/26/19 13:44,"96 Walnut St, Seattle, WA 98101" +319931,AA Batteries (4-pack),2,3.84,12/19/19 15:49,"38 Willow St, San Francisco, CA 94016" +319932,34in Ultrawide Monitor,1,379.99,12/29/19 20:46,"81 Lake St, San Francisco, CA 94016" +319933,AAA Batteries (4-pack),1,2.99,12/22/19 13:19,"339 Dogwood St, Seattle, WA 98101" +319934,Lightning Charging Cable,1,14.95,12/01/19 17:23,"990 1st St, Atlanta, GA 30301" +319935,Lightning Charging Cable,1,14.95,12/02/19 07:51,"568 Cedar St, San Francisco, CA 94016" +319936,Macbook Pro Laptop,1,1700,12/17/19 11:01,"246 7th St, Portland, ME 04101" +319937,ThinkPad Laptop,1,999.99,12/14/19 09:07,"603 11th St, Austin, TX 73301" +319938,Wired Headphones,1,11.99,12/05/19 22:46,"318 Cherry St, Seattle, WA 98101" +319939,AA Batteries (4-pack),1,3.84,12/10/19 13:06,"820 North St, Boston, MA 02215" +319940,USB-C Charging Cable,1,11.95,12/27/19 16:21,"740 7th St, Los Angeles, CA 90001" +319941,Lightning Charging Cable,1,14.95,12/19/19 21:18,"48 Church St, New York City, NY 10001" +319941,AA Batteries (4-pack),1,3.84,12/19/19 21:18,"48 Church St, New York City, NY 10001" +319942,Flatscreen TV,1,300,12/04/19 21:02,"257 Chestnut St, Los Angeles, CA 90001" +319943,Vareebadd Phone,1,400,12/19/19 14:13,"671 2nd St, Dallas, TX 75001" +319944,Lightning Charging Cable,1,14.95,12/26/19 16:46,"866 Cherry St, New York City, NY 10001" +319945,AA Batteries (4-pack),1,3.84,12/04/19 21:32,"59 Jefferson St, Los Angeles, CA 90001" +319946,Bose SoundSport Headphones,1,99.99,12/19/19 16:46,"81 Washington St, Los Angeles, CA 90001" +319947,iPhone,1,700,12/01/19 08:30,"956 Church St, Portland, OR 97035" +319948,AA Batteries (4-pack),1,3.84,12/20/19 11:30,"941 9th St, Boston, MA 02215" +319949,AAA Batteries (4-pack),1,2.99,12/08/19 11:04,"152 North St, San Francisco, CA 94016" +319950,Apple Airpods Headphones,1,150,12/03/19 12:19,"231 4th St, San Francisco, CA 94016" +319951,Apple Airpods Headphones,1,150,12/03/19 21:38,"473 Center St, San Francisco, CA 94016" +319952,USB-C Charging Cable,1,11.95,12/28/19 16:49,"325 14th St, Los Angeles, CA 90001" +319953,Apple Airpods Headphones,1,150,12/25/19 09:17,"496 Johnson St, Portland, OR 97035" +319954,Apple Airpods Headphones,1,150,12/25/19 12:30,"774 Cherry St, Portland, OR 97035" +319955,34in Ultrawide Monitor,1,379.99,12/19/19 10:29,"861 Johnson St, San Francisco, CA 94016" +319956,20in Monitor,1,109.99,12/13/19 11:09,"265 1st St, Los Angeles, CA 90001" +319957,ThinkPad Laptop,1,999.99,12/09/19 14:10,"456 Church St, Dallas, TX 75001" +319958,AA Batteries (4-pack),1,3.84,12/04/19 13:11,"909 Cherry St, San Francisco, CA 94016" +319958,USB-C Charging Cable,2,11.95,12/04/19 13:11,"909 Cherry St, San Francisco, CA 94016" +319959,AAA Batteries (4-pack),1,2.99,12/31/19 13:21,"232 South St, San Francisco, CA 94016" +319960,Flatscreen TV,1,300,12/09/19 16:49,"680 Church St, Los Angeles, CA 90001" +319961,iPhone,1,700,12/21/19 20:47,"9 Cherry St, Seattle, WA 98101" +319961,Apple Airpods Headphones,1,150,12/21/19 20:47,"9 Cherry St, Seattle, WA 98101" +319962,AAA Batteries (4-pack),1,2.99,12/22/19 16:11,"780 Lakeview St, Austin, TX 73301" +319963,Bose SoundSport Headphones,1,99.99,12/11/19 14:54,"185 Park St, Atlanta, GA 30301" +319964,Wired Headphones,1,11.99,12/07/19 13:18,"653 6th St, Atlanta, GA 30301" +319965,USB-C Charging Cable,2,11.95,12/15/19 15:58,"297 1st St, New York City, NY 10001" +319966,Google Phone,1,600,12/24/19 12:09,"368 8th St, San Francisco, CA 94016" +319966,USB-C Charging Cable,1,11.95,12/24/19 12:09,"368 8th St, San Francisco, CA 94016" +319966,Bose SoundSport Headphones,1,99.99,12/24/19 12:09,"368 8th St, San Francisco, CA 94016" +319967,Google Phone,1,600,12/20/19 23:08,"283 Jefferson St, San Francisco, CA 94016" +319968,USB-C Charging Cable,1,11.95,12/09/19 17:26,"7 1st St, Atlanta, GA 30301" +319969,Lightning Charging Cable,1,14.95,12/03/19 17:15,"612 11th St, Dallas, TX 75001" +319970,USB-C Charging Cable,1,11.95,12/09/19 05:35,"382 Sunset St, Boston, MA 02215" +319971,ThinkPad Laptop,1,999.99,12/22/19 18:34,"785 Hickory St, Boston, MA 02215" +319972,AA Batteries (4-pack),1,3.84,12/23/19 11:48,"138 Meadow St, Dallas, TX 75001" +319973,AAA Batteries (4-pack),1,2.99,12/10/19 09:16,"745 Ridge St, Boston, MA 02215" +319974,AA Batteries (4-pack),1,3.84,12/14/19 18:34,"158 14th St, New York City, NY 10001" +319975,USB-C Charging Cable,1,11.95,12/26/19 10:00,"574 Walnut St, San Francisco, CA 94016" +319976,AAA Batteries (4-pack),1,2.99,12/04/19 11:45,"622 7th St, Austin, TX 73301" +319977,Lightning Charging Cable,1,14.95,12/17/19 09:08,"762 Hill St, Boston, MA 02215" +319978,AA Batteries (4-pack),1,3.84,12/17/19 17:23,"101 Main St, New York City, NY 10001" +319979,iPhone,1,700,12/26/19 20:50,"380 Sunset St, San Francisco, CA 94016" +319979,Apple Airpods Headphones,1,150,12/26/19 20:50,"380 Sunset St, San Francisco, CA 94016" +319980,AAA Batteries (4-pack),1,2.99,12/20/19 20:38,"856 North St, Dallas, TX 75001" +319981,AAA Batteries (4-pack),1,2.99,12/02/19 18:56,"606 Wilson St, Seattle, WA 98101" +319982,USB-C Charging Cable,1,11.95,12/19/19 10:22,"468 Cedar St, New York City, NY 10001" +319983,Wired Headphones,3,11.99,12/20/19 16:52,"100 Johnson St, San Francisco, CA 94016" +319984,Flatscreen TV,1,300,12/29/19 12:57,"411 Forest St, San Francisco, CA 94016" +319985,AA Batteries (4-pack),1,3.84,12/06/19 23:52,"303 2nd St, Portland, OR 97035" +319986,USB-C Charging Cable,2,11.95,12/05/19 13:58,"516 Wilson St, San Francisco, CA 94016" +319987,Vareebadd Phone,1,400,12/29/19 14:10,"622 7th St, San Francisco, CA 94016" +319988,USB-C Charging Cable,1,11.95,12/11/19 13:57,"326 Pine St, Dallas, TX 75001" +319989,Apple Airpods Headphones,1,150,12/30/19 12:04,"976 Spruce St, New York City, NY 10001" +319990,27in FHD Monitor,1,149.99,12/01/19 07:37,"9 Dogwood St, Dallas, TX 75001" +319991,Apple Airpods Headphones,1,150,12/03/19 09:17,"523 Lakeview St, San Francisco, CA 94016" +319992,34in Ultrawide Monitor,1,379.99,12/30/19 08:58,"385 Johnson St, Boston, MA 02215" +319993,Bose SoundSport Headphones,1,99.99,12/04/19 18:04,"247 Jackson St, San Francisco, CA 94016" +319994,Wired Headphones,1,11.99,12/18/19 16:29,"15 Ridge St, San Francisco, CA 94016" +319995,USB-C Charging Cable,1,11.95,12/19/19 16:41,"328 Chestnut St, New York City, NY 10001" +319996,AAA Batteries (4-pack),1,2.99,12/05/19 11:25,"464 West St, San Francisco, CA 94016" +319997,Lightning Charging Cable,1,14.95,12/22/19 06:53,"912 Elm St, San Francisco, CA 94016" +319998,Flatscreen TV,1,300,12/31/19 12:01,"996 Ridge St, San Francisco, CA 94016" +319999,27in FHD Monitor,1,149.99,12/24/19 20:08,"355 Highland St, Dallas, TX 75001" +320000,Wired Headphones,1,11.99,12/07/19 17:46,"142 West St, Los Angeles, CA 90001" +320001,Flatscreen TV,1,300,12/29/19 15:27,"319 Highland St, Atlanta, GA 30301" +320002,Apple Airpods Headphones,1,150,12/14/19 19:43,"404 Dogwood St, New York City, NY 10001" +320003,AA Batteries (4-pack),1,3.84,12/28/19 19:20,"349 North St, New York City, NY 10001" +320003,AAA Batteries (4-pack),1,2.99,12/28/19 19:20,"349 North St, New York City, NY 10001" +320004,34in Ultrawide Monitor,1,379.99,12/10/19 14:41,"901 Washington St, Boston, MA 02215" +320005,USB-C Charging Cable,1,11.95,12/08/19 10:59,"907 Park St, San Francisco, CA 94016" +320006,Wired Headphones,1,11.99,12/23/19 11:49,"966 Washington St, San Francisco, CA 94016" +320007,Apple Airpods Headphones,1,150,12/04/19 20:39,"457 14th St, San Francisco, CA 94016" +320008,Wired Headphones,1,11.99,12/22/19 14:11,"381 Washington St, Austin, TX 73301" +320009,20in Monitor,1,109.99,12/16/19 17:02,"743 Forest St, Atlanta, GA 30301" +320010,AA Batteries (4-pack),1,3.84,12/01/19 15:34,"167 Meadow St, Atlanta, GA 30301" +320011,AAA Batteries (4-pack),1,2.99,12/08/19 14:10,"883 4th St, Los Angeles, CA 90001" +320012,USB-C Charging Cable,1,11.95,12/15/19 11:00,"688 Sunset St, Austin, TX 73301" +320013,AA Batteries (4-pack),1,3.84,12/19/19 11:18,"740 Spruce St, Portland, ME 04101" +320014,Wired Headphones,1,11.99,12/26/19 09:11,"322 Jackson St, Seattle, WA 98101" +320015,Wired Headphones,1,11.99,12/01/19 14:47,"629 Walnut St, San Francisco, CA 94016" +320016,USB-C Charging Cable,1,11.95,12/29/19 20:33,"98 Maple St, New York City, NY 10001" +320017,USB-C Charging Cable,1,11.95,12/02/19 19:52,"849 Chestnut St, Portland, ME 04101" +320018,USB-C Charging Cable,1,11.95,12/24/19 22:01,"428 Ridge St, Boston, MA 02215" +320019,Wired Headphones,1,11.99,12/19/19 23:32,"109 8th St, Seattle, WA 98101" +320020,Flatscreen TV,1,300,12/24/19 08:40,"476 5th St, Portland, OR 97035" +320021,Bose SoundSport Headphones,1,99.99,12/02/19 07:05,"393 Main St, Atlanta, GA 30301" +320022,34in Ultrawide Monitor,1,379.99,12/02/19 17:12,"373 Madison St, Seattle, WA 98101" +320023,Wired Headphones,1,11.99,12/30/19 19:30,"249 West St, Seattle, WA 98101" +320024,Bose SoundSport Headphones,1,99.99,12/09/19 13:46,"652 Ridge St, New York City, NY 10001" +320025,AA Batteries (4-pack),1,3.84,12/30/19 10:28,"371 Elm St, New York City, NY 10001" +320026,ThinkPad Laptop,1,999.99,12/18/19 13:33,"464 Elm St, Dallas, TX 75001" +320027,Lightning Charging Cable,1,14.95,12/22/19 00:56,"93 Adams St, San Francisco, CA 94016" +320028,27in FHD Monitor,1,149.99,12/14/19 17:25,"787 1st St, Los Angeles, CA 90001" +320029,Wired Headphones,1,11.99,12/03/19 21:35,"947 Walnut St, San Francisco, CA 94016" +320030,27in 4K Gaming Monitor,1,389.99,12/03/19 21:23,"94 Lakeview St, Atlanta, GA 30301" +320031,34in Ultrawide Monitor,1,379.99,12/12/19 06:49,"997 12th St, Los Angeles, CA 90001" +320032,AA Batteries (4-pack),2,3.84,12/21/19 11:30,"142 Park St, San Francisco, CA 94016" +320033,AAA Batteries (4-pack),2,2.99,12/10/19 13:30,"491 Hickory St, Austin, TX 73301" +320034,27in 4K Gaming Monitor,1,389.99,12/10/19 19:49,"289 Washington St, Los Angeles, CA 90001" +320035,Lightning Charging Cable,1,14.95,12/02/19 16:07,"463 Ridge St, San Francisco, CA 94016" +320036,USB-C Charging Cable,1,11.95,12/29/19 22:14,"298 6th St, Los Angeles, CA 90001" +320037,Bose SoundSport Headphones,1,99.99,12/25/19 16:27,"649 Lincoln St, San Francisco, CA 94016" +320038,Lightning Charging Cable,1,14.95,12/10/19 08:02,"904 Walnut St, San Francisco, CA 94016" +320039,Lightning Charging Cable,1,14.95,12/11/19 12:10,"781 Cherry St, New York City, NY 10001" +320040,27in FHD Monitor,1,149.99,12/30/19 21:14,"112 4th St, San Francisco, CA 94016" +320041,USB-C Charging Cable,1,11.95,12/13/19 16:08,"323 South St, Dallas, TX 75001" +320042,Lightning Charging Cable,1,14.95,12/27/19 22:27,"652 12th St, Austin, TX 73301" +320043,Apple Airpods Headphones,1,150,12/30/19 21:53,"210 Lake St, San Francisco, CA 94016" +320044,iPhone,1,700,12/14/19 14:13,"680 Center St, San Francisco, CA 94016" +320044,Lightning Charging Cable,1,14.95,12/14/19 14:13,"680 Center St, San Francisco, CA 94016" +320045,Macbook Pro Laptop,1,1700,12/29/19 17:55,"145 Highland St, Los Angeles, CA 90001" +320046,AAA Batteries (4-pack),1,2.99,12/31/19 21:07,"368 Lincoln St, Boston, MA 02215" +320047,Lightning Charging Cable,1,14.95,12/03/19 11:24,"26 13th St, New York City, NY 10001" +320048,27in 4K Gaming Monitor,1,389.99,12/19/19 11:22,"531 Walnut St, San Francisco, CA 94016" +320049,Apple Airpods Headphones,1,150,12/02/19 22:47,"424 Ridge St, New York City, NY 10001" +320050,iPhone,1,700,12/30/19 17:12,"419 Madison St, New York City, NY 10001" +320050,Wired Headphones,2,11.99,12/30/19 17:12,"419 Madison St, New York City, NY 10001" +320051,ThinkPad Laptop,1,999.99,12/08/19 12:26,"394 Hill St, Portland, ME 04101" +320052,Wired Headphones,1,11.99,12/13/19 14:02,"755 Meadow St, San Francisco, CA 94016" +320053,USB-C Charging Cable,1,11.95,12/05/19 09:34,"136 Jefferson St, New York City, NY 10001" +320054,Lightning Charging Cable,1,14.95,12/31/19 18:57,"851 Walnut St, Austin, TX 73301" +320055,Lightning Charging Cable,1,14.95,12/17/19 17:21,"912 Willow St, San Francisco, CA 94016" +320056,Vareebadd Phone,1,400,12/02/19 19:36,"232 Meadow St, Atlanta, GA 30301" +320056,USB-C Charging Cable,1,11.95,12/02/19 19:36,"232 Meadow St, Atlanta, GA 30301" +320057,AA Batteries (4-pack),1,3.84,12/16/19 18:52,"512 North St, Atlanta, GA 30301" +320058,AAA Batteries (4-pack),1,2.99,12/01/19 18:30,"294 Park St, New York City, NY 10001" +320059,AAA Batteries (4-pack),1,2.99,12/25/19 01:03,"277 Madison St, San Francisco, CA 94016" +320060,Google Phone,1,600,12/30/19 15:40,"605 Chestnut St, San Francisco, CA 94016" +320061,USB-C Charging Cable,1,11.95,12/23/19 10:45,"33 Washington St, Austin, TX 73301" +320062,27in 4K Gaming Monitor,1,389.99,12/30/19 13:47,"443 8th St, Los Angeles, CA 90001" +320063,iPhone,1,700,12/23/19 21:27,"514 11th St, Boston, MA 02215" +320064,Google Phone,1,600,12/20/19 20:16,"330 Chestnut St, New York City, NY 10001" +320065,Apple Airpods Headphones,1,150,12/13/19 22:38,"789 Hill St, Austin, TX 73301" +320066,AA Batteries (4-pack),2,3.84,12/01/19 05:23,"23 Forest St, Seattle, WA 98101" +320067,AAA Batteries (4-pack),1,2.99,12/21/19 11:24,"720 Lake St, New York City, NY 10001" +320067,iPhone,1,700,12/21/19 11:24,"720 Lake St, New York City, NY 10001" +320068,AA Batteries (4-pack),1,3.84,12/23/19 13:52,"572 11th St, Los Angeles, CA 90001" +320069,Lightning Charging Cable,1,14.95,12/29/19 14:17,"46 Willow St, New York City, NY 10001" +320070,27in FHD Monitor,1,149.99,12/24/19 09:27,"439 11th St, Los Angeles, CA 90001" +320071,USB-C Charging Cable,1,11.95,12/06/19 23:00,"51 Cherry St, New York City, NY 10001" +320072,Google Phone,1,600,12/03/19 13:10,"896 12th St, Seattle, WA 98101" +320073,Lightning Charging Cable,1,14.95,12/06/19 13:01,"182 14th St, Austin, TX 73301" +320074,Google Phone,1,600,12/22/19 10:44,"399 Center St, Austin, TX 73301" +320074,USB-C Charging Cable,1,11.95,12/22/19 10:44,"399 Center St, Austin, TX 73301" +320075,Flatscreen TV,1,300,12/26/19 17:56,"175 Park St, San Francisco, CA 94016" +320076,AAA Batteries (4-pack),5,2.99,12/25/19 18:53,"604 West St, Seattle, WA 98101" +320077,Wired Headphones,1,11.99,12/26/19 12:19,"240 Madison St, Los Angeles, CA 90001" +320078,AAA Batteries (4-pack),1,2.99,12/16/19 05:18,"441 Elm St, Portland, OR 97035" +320079,AA Batteries (4-pack),2,3.84,12/25/19 17:48,"601 Pine St, Seattle, WA 98101" +320080,AAA Batteries (4-pack),1,2.99,12/21/19 23:02,"758 14th St, New York City, NY 10001" +320081,ThinkPad Laptop,1,999.99,12/29/19 08:02,"650 Madison St, Dallas, TX 75001" +320081,LG Washing Machine,1,600.0,12/29/19 08:02,"650 Madison St, Dallas, TX 75001" +320082,AAA Batteries (4-pack),1,2.99,12/15/19 10:38,"333 West St, Seattle, WA 98101" +320083,Macbook Pro Laptop,1,1700,12/17/19 08:32,"136 7th St, Dallas, TX 75001" +320084,AA Batteries (4-pack),1,3.84,12/08/19 22:59,"729 Hickory St, Austin, TX 73301" +320085,Lightning Charging Cable,1,14.95,12/17/19 09:21,"406 Lakeview St, Los Angeles, CA 90001" +320086,Apple Airpods Headphones,1,150,12/01/19 20:05,"670 Spruce St, Portland, OR 97035" +320086,iPhone,1,700,12/01/19 20:05,"670 Spruce St, Portland, OR 97035" +320087,AA Batteries (4-pack),1,3.84,12/28/19 19:59,"253 Dogwood St, Dallas, TX 75001" +320088,Bose SoundSport Headphones,1,99.99,12/29/19 01:52,"485 Park St, Seattle, WA 98101" +320089,Bose SoundSport Headphones,1,99.99,12/07/19 11:24,"593 Cedar St, Boston, MA 02215" +320090,Wired Headphones,2,11.99,12/15/19 21:09,"633 Meadow St, New York City, NY 10001" +320091,AA Batteries (4-pack),2,3.84,12/11/19 18:42,"406 Maple St, San Francisco, CA 94016" +320092,AAA Batteries (4-pack),1,2.99,12/02/19 07:14,"359 Main St, Seattle, WA 98101" +320093,USB-C Charging Cable,1,11.95,12/17/19 21:25,"266 1st St, Los Angeles, CA 90001" +320094,Google Phone,1,600,12/01/19 18:01,"794 North St, San Francisco, CA 94016" +320095,Flatscreen TV,1,300,12/21/19 11:06,"516 Forest St, San Francisco, CA 94016" +320096,iPhone,1,700,12/17/19 16:32,"703 Main St, Seattle, WA 98101" +320097,Google Phone,1,600,12/24/19 11:19,"2 Meadow St, San Francisco, CA 94016" +320098,Apple Airpods Headphones,1,150,12/14/19 08:50,"721 7th St, San Francisco, CA 94016" +320099,Bose SoundSport Headphones,1,99.99,12/22/19 08:41,"492 Hill St, New York City, NY 10001" +320100,Wired Headphones,1,11.99,12/18/19 14:35,"393 Forest St, San Francisco, CA 94016" +320101,AA Batteries (4-pack),2,3.84,12/30/19 11:31,"735 Chestnut St, Los Angeles, CA 90001" +320102,AA Batteries (4-pack),1,3.84,12/29/19 11:55,"988 Church St, San Francisco, CA 94016" +320103,Wired Headphones,1,11.99,12/21/19 11:35,"951 Madison St, Portland, OR 97035" +320104,AAA Batteries (4-pack),2,2.99,12/07/19 13:10,"860 14th St, San Francisco, CA 94016" +320105,AAA Batteries (4-pack),1,2.99,12/21/19 23:02,"259 Meadow St, New York City, NY 10001" +320106,AA Batteries (4-pack),2,3.84,12/18/19 15:19,"426 8th St, New York City, NY 10001" +320107,USB-C Charging Cable,1,11.95,12/21/19 22:35,"915 Hickory St, Los Angeles, CA 90001" +320108,Lightning Charging Cable,1,14.95,12/18/19 14:19,"62 South St, Portland, OR 97035" +320109,Lightning Charging Cable,1,14.95,12/05/19 16:27,"579 Highland St, Atlanta, GA 30301" +320110,Apple Airpods Headphones,1,150,12/28/19 11:06,"719 13th St, Dallas, TX 75001" +320111,Lightning Charging Cable,1,14.95,12/28/19 16:04,"727 Wilson St, San Francisco, CA 94016" +320112,iPhone,1,700,12/22/19 16:09,"41 Main St, Portland, OR 97035" +320112,Lightning Charging Cable,1,14.95,12/22/19 16:09,"41 Main St, Portland, OR 97035" +320113,Bose SoundSport Headphones,1,99.99,12/27/19 19:21,"17 Jackson St, New York City, NY 10001" +320114,Bose SoundSport Headphones,1,99.99,12/08/19 18:35,"835 Hickory St, Atlanta, GA 30301" +320115,AA Batteries (4-pack),1,3.84,12/28/19 19:24,"625 11th St, New York City, NY 10001" +320116,USB-C Charging Cable,1,11.95,12/21/19 16:09,"165 Adams St, San Francisco, CA 94016" +320117,USB-C Charging Cable,1,11.95,12/06/19 16:29,"835 Elm St, Portland, OR 97035" +320118,USB-C Charging Cable,1,11.95,12/10/19 08:17,"358 7th St, Portland, ME 04101" +320119,Bose SoundSport Headphones,1,99.99,12/02/19 14:04,"644 Highland St, Seattle, WA 98101" +320120,AAA Batteries (4-pack),1,2.99,12/31/19 19:44,"451 12th St, New York City, NY 10001" +320121,27in 4K Gaming Monitor,1,389.99,12/20/19 15:46,"825 6th St, Dallas, TX 75001" +320122,Wired Headphones,2,11.99,12/29/19 19:38,"186 Cherry St, New York City, NY 10001" +320123,20in Monitor,1,109.99,12/31/19 14:19,"536 13th St, Los Angeles, CA 90001" +320124,Lightning Charging Cable,1,14.95,12/22/19 20:43,"432 13th St, Los Angeles, CA 90001" +320125,Lightning Charging Cable,1,14.95,12/01/19 18:03,"278 Ridge St, Boston, MA 02215" +320126,Bose SoundSport Headphones,1,99.99,12/17/19 08:22,"518 Church St, Austin, TX 73301" +320127,Bose SoundSport Headphones,1,99.99,12/07/19 09:15,"987 Dogwood St, Seattle, WA 98101" +320128,34in Ultrawide Monitor,1,379.99,12/24/19 20:19,"659 Lincoln St, Austin, TX 73301" +320129,Bose SoundSport Headphones,1,99.99,12/14/19 12:39,"797 10th St, New York City, NY 10001" +320130,USB-C Charging Cable,1,11.95,12/03/19 10:40,"622 West St, Los Angeles, CA 90001" +320131,Wired Headphones,1,11.99,12/04/19 11:13,"642 13th St, Dallas, TX 75001" +320132,USB-C Charging Cable,1,11.95,12/04/19 16:53,"334 4th St, San Francisco, CA 94016" +320133,LG Dryer,1,600.0,12/25/19 15:55,"416 Washington St, New York City, NY 10001" +320134,Macbook Pro Laptop,1,1700,12/28/19 13:00,"73 West St, Los Angeles, CA 90001" +320135,AAA Batteries (4-pack),1,2.99,12/20/19 17:28,"545 13th St, Atlanta, GA 30301" +320136,34in Ultrawide Monitor,1,379.99,12/07/19 20:50,"467 6th St, Atlanta, GA 30301" +320137,AAA Batteries (4-pack),1,2.99,12/27/19 12:37,"629 14th St, Los Angeles, CA 90001" +320138,Flatscreen TV,1,300,12/11/19 14:08,"598 9th St, Boston, MA 02215" +320139,Wired Headphones,2,11.99,12/03/19 19:28,"902 Jefferson St, Boston, MA 02215" +320140,Google Phone,1,600,12/29/19 18:19,"700 11th St, San Francisco, CA 94016" +320141,AA Batteries (4-pack),1,3.84,12/14/19 17:05,"380 Jackson St, Portland, OR 97035" +320142,27in 4K Gaming Monitor,1,389.99,12/01/19 19:38,"411 Main St, Atlanta, GA 30301" +320143,AAA Batteries (4-pack),1,2.99,12/11/19 17:23,"544 Lincoln St, San Francisco, CA 94016" +320144,iPhone,1,700,12/11/19 00:00,"583 13th St, Los Angeles, CA 90001" +320145,20in Monitor,1,109.99,12/31/19 15:41,"437 Adams St, Boston, MA 02215" +320146,USB-C Charging Cable,1,11.95,12/19/19 18:25,"426 Elm St, Los Angeles, CA 90001" +320147,AA Batteries (4-pack),1,3.84,12/30/19 19:22,"292 12th St, Boston, MA 02215" +320148,USB-C Charging Cable,1,11.95,12/29/19 07:14,"669 Forest St, Los Angeles, CA 90001" +320149,AA Batteries (4-pack),1,3.84,12/01/19 18:44,"562 Jackson St, San Francisco, CA 94016" +320150,Lightning Charging Cable,1,14.95,12/31/19 13:09,"507 West St, Dallas, TX 75001" +320151,20in Monitor,1,109.99,12/07/19 15:04,"666 Main St, Seattle, WA 98101" +320152,Apple Airpods Headphones,1,150,12/31/19 02:10,"831 12th St, Dallas, TX 75001" +320153,20in Monitor,1,109.99,12/19/19 18:55,"641 Maple St, New York City, NY 10001" +320154,Macbook Pro Laptop,1,1700,12/29/19 09:48,"232 9th St, Los Angeles, CA 90001" +320155,20in Monitor,1,109.99,12/14/19 01:58,"125 West St, Austin, TX 73301" +320156,Bose SoundSport Headphones,1,99.99,12/16/19 16:00,"120 Meadow St, Los Angeles, CA 90001" +320157,AAA Batteries (4-pack),1,2.99,12/19/19 07:30,"759 13th St, Los Angeles, CA 90001" +320158,Lightning Charging Cable,1,14.95,12/20/19 07:57,"292 Pine St, Los Angeles, CA 90001" +320159,Wired Headphones,1,11.99,12/15/19 13:35,"508 12th St, Atlanta, GA 30301" +320160,USB-C Charging Cable,1,11.95,12/30/19 16:30,"864 Jackson St, Austin, TX 73301" +320161,Apple Airpods Headphones,1,150,12/28/19 18:16,"209 Elm St, New York City, NY 10001" +320162,AA Batteries (4-pack),2,3.84,12/15/19 15:31,"409 2nd St, Seattle, WA 98101" +320163,27in 4K Gaming Monitor,1,389.99,12/14/19 08:54,"805 Wilson St, Seattle, WA 98101" +320164,USB-C Charging Cable,1,11.95,12/27/19 20:24,"778 Cherry St, San Francisco, CA 94016" +320165,USB-C Charging Cable,2,11.95,12/13/19 12:13,"142 14th St, San Francisco, CA 94016" +320166,Lightning Charging Cable,1,14.95,12/11/19 13:30,"403 Cedar St, Austin, TX 73301" +320167,Apple Airpods Headphones,1,150,12/30/19 15:40,"541 Willow St, Atlanta, GA 30301" +320168,Google Phone,1,600,12/01/19 17:01,"38 Cedar St, San Francisco, CA 94016" +320169,Lightning Charging Cable,1,14.95,12/08/19 19:19,"483 Center St, Seattle, WA 98101" +320170,AAA Batteries (4-pack),3,2.99,12/12/19 22:52,"806 13th St, San Francisco, CA 94016" +320171,Macbook Pro Laptop,1,1700,12/22/19 15:51,"226 11th St, New York City, NY 10001" +320172,Macbook Pro Laptop,1,1700,12/07/19 11:52,"883 Ridge St, Boston, MA 02215" +320173,34in Ultrawide Monitor,1,379.99,12/21/19 19:55,"408 Walnut St, San Francisco, CA 94016" +320174,27in FHD Monitor,1,149.99,12/02/19 21:32,"676 Spruce St, New York City, NY 10001" +320175,Lightning Charging Cable,1,14.95,12/04/19 20:45,"940 Cherry St, Boston, MA 02215" +320176,Flatscreen TV,1,300,12/10/19 21:59,"827 River St, New York City, NY 10001" +320177,Apple Airpods Headphones,1,150,12/23/19 13:21,"310 Elm St, Seattle, WA 98101" +320178,AAA Batteries (4-pack),1,2.99,12/10/19 19:25,"991 Maple St, Los Angeles, CA 90001" +320179,Lightning Charging Cable,1,14.95,12/24/19 18:17,"937 Johnson St, Los Angeles, CA 90001" +320180,AAA Batteries (4-pack),1,2.99,12/17/19 11:51,"743 1st St, Boston, MA 02215" +320181,Apple Airpods Headphones,1,150,12/19/19 18:53,"517 Pine St, Atlanta, GA 30301" +320182,USB-C Charging Cable,1,11.95,12/31/19 13:51,"555 2nd St, San Francisco, CA 94016" +320183,USB-C Charging Cable,1,11.95,12/13/19 22:23,"112 Willow St, San Francisco, CA 94016" +320184,USB-C Charging Cable,1,11.95,12/23/19 14:31,"718 14th St, Dallas, TX 75001" +320185,27in 4K Gaming Monitor,1,389.99,12/28/19 14:35,"768 Park St, Portland, OR 97035" +320186,Bose SoundSport Headphones,1,99.99,12/19/19 10:29,"143 1st St, Los Angeles, CA 90001" +320187,27in 4K Gaming Monitor,1,389.99,12/05/19 11:52,"933 4th St, Los Angeles, CA 90001" +320188,20in Monitor,1,109.99,12/18/19 13:29,"639 Hill St, Dallas, TX 75001" +320189,Google Phone,1,600,12/09/19 19:54,"510 Adams St, San Francisco, CA 94016" +320190,AAA Batteries (4-pack),1,2.99,12/07/19 12:48,"749 Adams St, San Francisco, CA 94016" +320191,Google Phone,1,600,12/21/19 16:07,"148 Walnut St, Atlanta, GA 30301" +320191,USB-C Charging Cable,1,11.95,12/21/19 16:07,"148 Walnut St, Atlanta, GA 30301" +320192,AAA Batteries (4-pack),1,2.99,12/22/19 13:39,"916 Madison St, Boston, MA 02215" +320193,USB-C Charging Cable,1,11.95,12/22/19 14:23,"340 River St, San Francisco, CA 94016" +320194,Bose SoundSport Headphones,1,99.99,12/21/19 18:39,"255 Lake St, San Francisco, CA 94016" +320195,USB-C Charging Cable,1,11.95,12/06/19 22:08,"837 Johnson St, Boston, MA 02215" +320196,Lightning Charging Cable,1,14.95,12/18/19 12:49,"264 1st St, Boston, MA 02215" +320197,USB-C Charging Cable,1,11.95,12/27/19 16:01,"841 Lake St, Seattle, WA 98101" +320198,AAA Batteries (4-pack),3,2.99,12/04/19 08:06,"352 Willow St, Los Angeles, CA 90001" +320199,iPhone,1,700,12/02/19 09:06,"572 Main St, Los Angeles, CA 90001" +320200,Wired Headphones,1,11.99,12/28/19 13:40,"407 7th St, Dallas, TX 75001" +320201,USB-C Charging Cable,1,11.95,12/18/19 15:52,"451 Chestnut St, Los Angeles, CA 90001" +320202,Macbook Pro Laptop,1,1700,12/30/19 19:18,"461 Cedar St, Atlanta, GA 30301" +320203,27in 4K Gaming Monitor,1,389.99,12/06/19 15:59,"921 6th St, Los Angeles, CA 90001" +320204,iPhone,1,700,12/21/19 17:42,"569 Johnson St, Portland, OR 97035" +320205,AAA Batteries (4-pack),1,2.99,12/24/19 08:27,"755 6th St, San Francisco, CA 94016" +320206,Apple Airpods Headphones,1,150,12/31/19 18:56,"657 Ridge St, Los Angeles, CA 90001" +320207,Wired Headphones,1,11.99,12/15/19 11:03,"663 Wilson St, San Francisco, CA 94016" +320208,Lightning Charging Cable,1,14.95,12/01/19 21:01,"55 Sunset St, San Francisco, CA 94016" +320209,27in 4K Gaming Monitor,1,389.99,12/23/19 15:35,"441 4th St, Los Angeles, CA 90001" +320210,Wired Headphones,1,11.99,12/10/19 19:03,"441 13th St, San Francisco, CA 94016" +320211,Apple Airpods Headphones,1,150,12/22/19 10:07,"552 Park St, Los Angeles, CA 90001" +320212,Lightning Charging Cable,1,14.95,12/08/19 14:59,"477 Elm St, Boston, MA 02215" +320213,Apple Airpods Headphones,1,150,12/10/19 15:28,"831 Hill St, Boston, MA 02215" +320214,USB-C Charging Cable,1,11.95,12/01/19 11:17,"788 Church St, Boston, MA 02215" +320215,Apple Airpods Headphones,1,150,12/24/19 12:43,"172 Cedar St, Dallas, TX 75001" +320216,iPhone,1,700,12/13/19 13:16,"242 Dogwood St, San Francisco, CA 94016" +320216,Wired Headphones,1,11.99,12/13/19 13:16,"242 Dogwood St, San Francisco, CA 94016" +320217,AAA Batteries (4-pack),1,2.99,12/11/19 19:15,"254 River St, Atlanta, GA 30301" +320218,iPhone,1,700,12/12/19 04:51,"141 Jefferson St, Los Angeles, CA 90001" +320219,Bose SoundSport Headphones,1,99.99,12/27/19 13:45,"133 Cedar St, Boston, MA 02215" +320220,iPhone,1,700,12/10/19 10:58,"326 Church St, New York City, NY 10001" +320221,USB-C Charging Cable,1,11.95,12/26/19 01:28,"148 Lake St, Boston, MA 02215" +320222,AA Batteries (4-pack),1,3.84,12/24/19 09:06,"336 9th St, Atlanta, GA 30301" +320223,Apple Airpods Headphones,1,150,12/26/19 16:22,"626 Lake St, Portland, OR 97035" +320224,Lightning Charging Cable,1,14.95,12/14/19 12:28,"410 Ridge St, Seattle, WA 98101" +320225,AA Batteries (4-pack),1,3.84,12/17/19 15:54,"111 Wilson St, Atlanta, GA 30301" +320226,AAA Batteries (4-pack),1,2.99,12/22/19 21:42,"6 Dogwood St, San Francisco, CA 94016" +320227,Lightning Charging Cable,1,14.95,12/11/19 17:56,"468 Church St, Los Angeles, CA 90001" +320228,Bose SoundSport Headphones,1,99.99,12/15/19 12:30,"923 Walnut St, Los Angeles, CA 90001" +320229,Flatscreen TV,1,300,12/05/19 13:24,"706 Center St, New York City, NY 10001" +320230,34in Ultrawide Monitor,1,379.99,12/04/19 20:06,"78 Main St, New York City, NY 10001" +320231,Lightning Charging Cable,1,14.95,12/02/19 19:38,"558 West St, Los Angeles, CA 90001" +320232,Apple Airpods Headphones,1,150,12/31/19 11:26,"482 11th St, Boston, MA 02215" +320233,Google Phone,1,600,12/13/19 23:49,"122 Park St, Atlanta, GA 30301" +320234,27in FHD Monitor,1,149.99,12/23/19 04:10,"743 4th St, Dallas, TX 75001" +320235,USB-C Charging Cable,1,11.95,12/14/19 18:02,"35 Hickory St, New York City, NY 10001" +320236,USB-C Charging Cable,1,11.95,12/21/19 22:32,"325 Sunset St, Los Angeles, CA 90001" +320237,Lightning Charging Cable,1,14.95,12/12/19 15:48,"569 6th St, Los Angeles, CA 90001" +320238,Wired Headphones,1,11.99,12/21/19 10:15,"244 Spruce St, San Francisco, CA 94016" +320239,AAA Batteries (4-pack),1,2.99,12/28/19 09:38,"5 Lakeview St, Austin, TX 73301" +320240,USB-C Charging Cable,1,11.95,12/27/19 15:07,"833 5th St, New York City, NY 10001" +320241,27in 4K Gaming Monitor,1,389.99,12/09/19 11:39,"222 9th St, Seattle, WA 98101" +320242,Bose SoundSport Headphones,1,99.99,12/17/19 15:28,"977 Cherry St, Los Angeles, CA 90001" +320243,Wired Headphones,2,11.99,12/05/19 11:25,"148 8th St, New York City, NY 10001" +320244,Lightning Charging Cable,1,14.95,12/01/19 12:59,"940 Sunset St, San Francisco, CA 94016" +320245,20in Monitor,1,109.99,12/08/19 07:15,"178 Pine St, Seattle, WA 98101" +320246,Apple Airpods Headphones,1,150,12/08/19 19:16,"334 Elm St, Los Angeles, CA 90001" +320247,Lightning Charging Cable,1,14.95,12/17/19 10:41,"841 Ridge St, Dallas, TX 75001" +320248,Google Phone,1,600,12/08/19 18:44,"979 Jefferson St, San Francisco, CA 94016" +320249,AA Batteries (4-pack),1,3.84,12/22/19 05:40,"931 Washington St, Boston, MA 02215" +320250,AA Batteries (4-pack),2,3.84,12/25/19 20:20,"676 Cedar St, Atlanta, GA 30301" +320251,iPhone,1,700,12/18/19 10:12,"232 4th St, Seattle, WA 98101" +320251,Wired Headphones,1,11.99,12/18/19 10:12,"232 4th St, Seattle, WA 98101" +320252,20in Monitor,1,109.99,12/07/19 19:44,"789 13th St, Dallas, TX 75001" +320253,Wired Headphones,1,11.99,12/29/19 17:15,"849 Hickory St, San Francisco, CA 94016" +320254,Wired Headphones,1,11.99,12/27/19 19:26,"31 4th St, Portland, ME 04101" +320255,AA Batteries (4-pack),1,3.84,12/15/19 10:56,"840 6th St, San Francisco, CA 94016" +320256,Wired Headphones,1,11.99,12/02/19 13:56,"390 11th St, San Francisco, CA 94016" +320257,27in FHD Monitor,1,149.99,12/11/19 13:56,"49 Washington St, Portland, ME 04101" +320258,Lightning Charging Cable,1,14.95,12/15/19 21:36,"225 7th St, Los Angeles, CA 90001" +320259,Wired Headphones,1,11.99,12/14/19 13:21,"130 Washington St, San Francisco, CA 94016" +320260,Apple Airpods Headphones,1,150,12/14/19 10:37,"767 6th St, Dallas, TX 75001" +320261,Lightning Charging Cable,1,14.95,12/24/19 19:08,"418 Johnson St, Los Angeles, CA 90001" +320262,iPhone,1,700,12/09/19 12:27,"920 South St, Los Angeles, CA 90001" +320263,AA Batteries (4-pack),1,3.84,12/01/19 17:17,"994 Johnson St, Portland, OR 97035" +320264,Lightning Charging Cable,1,14.95,12/29/19 20:05,"44 Cedar St, Atlanta, GA 30301" +320265,Apple Airpods Headphones,1,150,12/16/19 09:59,"50 Hill St, New York City, NY 10001" +320266,USB-C Charging Cable,1,11.95,12/08/19 09:06,"680 South St, San Francisco, CA 94016" +320267,AAA Batteries (4-pack),2,2.99,12/09/19 02:28,"775 River St, San Francisco, CA 94016" +320268,Bose SoundSport Headphones,1,99.99,12/18/19 13:54,"544 11th St, New York City, NY 10001" +320269,USB-C Charging Cable,1,11.95,12/21/19 08:29,"805 13th St, Los Angeles, CA 90001" +320270,Flatscreen TV,1,300,12/27/19 16:08,"428 10th St, Seattle, WA 98101" +320271,Flatscreen TV,1,300,12/04/19 10:37,"616 12th St, Dallas, TX 75001" +320272,27in 4K Gaming Monitor,1,389.99,12/23/19 15:13,"700 Pine St, Los Angeles, CA 90001" +320273,34in Ultrawide Monitor,1,379.99,12/25/19 18:57,"791 Cedar St, Los Angeles, CA 90001" +320274,Bose SoundSport Headphones,1,99.99,12/08/19 23:24,"212 Main St, San Francisco, CA 94016" +320275,Lightning Charging Cable,1,14.95,12/01/19 14:35,"974 7th St, Portland, OR 97035" +320276,Wired Headphones,1,11.99,12/06/19 11:21,"667 Maple St, San Francisco, CA 94016" +320277,Bose SoundSport Headphones,1,99.99,12/01/19 12:49,"728 13th St, New York City, NY 10001" +320278,USB-C Charging Cable,1,11.95,12/16/19 13:30,"937 Adams St, San Francisco, CA 94016" +320279,LG Washing Machine,1,600.0,12/07/19 18:45,"43 Lincoln St, Los Angeles, CA 90001" +320280,AA Batteries (4-pack),2,3.84,12/04/19 09:00,"332 Main St, San Francisco, CA 94016" +320281,USB-C Charging Cable,2,11.95,12/29/19 08:57,"147 2nd St, San Francisco, CA 94016" +320282,AAA Batteries (4-pack),1,2.99,12/29/19 10:28,"313 10th St, Boston, MA 02215" +320283,Wired Headphones,1,11.99,12/09/19 18:47,"344 Elm St, San Francisco, CA 94016" +320284,27in FHD Monitor,1,149.99,12/05/19 13:23,"919 13th St, Los Angeles, CA 90001" +320285,Wired Headphones,1,11.99,12/31/19 06:34,"158 Forest St, Los Angeles, CA 90001" +320286,Wired Headphones,1,11.99,12/13/19 19:37,"496 6th St, Los Angeles, CA 90001" +320287,Wired Headphones,1,11.99,12/14/19 16:10,"327 7th St, Boston, MA 02215" +320288,Wired Headphones,1,11.99,12/17/19 16:28,"888 10th St, San Francisco, CA 94016" +320289,AA Batteries (4-pack),2,3.84,12/01/19 19:36,"383 Chestnut St, Los Angeles, CA 90001" +320290,Wired Headphones,1,11.99,12/28/19 19:31,"27 Lakeview St, New York City, NY 10001" +320291,AA Batteries (4-pack),1,3.84,12/04/19 20:11,"198 Pine St, San Francisco, CA 94016" +320292,Apple Airpods Headphones,1,150,12/08/19 07:30,"364 Sunset St, Dallas, TX 75001" +320293,AAA Batteries (4-pack),1,2.99,12/20/19 19:29,"472 Dogwood St, San Francisco, CA 94016" +320294,Wired Headphones,1,11.99,12/14/19 19:00,"765 South St, Boston, MA 02215" +320295,iPhone,1,700,12/12/19 20:23,"967 11th St, Boston, MA 02215" +320296,USB-C Charging Cable,2,11.95,12/20/19 22:39,"590 Washington St, San Francisco, CA 94016" +320297,Vareebadd Phone,1,400,12/22/19 09:53,"892 14th St, Boston, MA 02215" +320297,USB-C Charging Cable,1,11.95,12/22/19 09:53,"892 14th St, Boston, MA 02215" +320298,34in Ultrawide Monitor,1,379.99,12/18/19 15:53,"12 14th St, San Francisco, CA 94016" +320299,iPhone,1,700,12/23/19 12:55,"201 4th St, Atlanta, GA 30301" +320299,Lightning Charging Cable,1,14.95,12/23/19 12:55,"201 4th St, Atlanta, GA 30301" +320300,27in FHD Monitor,1,149.99,12/09/19 09:09,"615 Adams St, San Francisco, CA 94016" +320301,AA Batteries (4-pack),1,3.84,12/31/19 23:59,"491 Meadow St, Atlanta, GA 30301" +320302,Vareebadd Phone,1,400,12/15/19 17:58,"285 West St, San Francisco, CA 94016" +320303,Lightning Charging Cable,1,14.95,12/06/19 10:47,"930 6th St, Austin, TX 73301" +320304,Lightning Charging Cable,1,14.95,12/22/19 00:31,"283 Highland St, Portland, OR 97035" +320305,AAA Batteries (4-pack),3,2.99,12/01/19 13:51,"114 Center St, Atlanta, GA 30301" +320306,AAA Batteries (4-pack),1,2.99,12/14/19 11:25,"855 8th St, Dallas, TX 75001" +320307,AA Batteries (4-pack),1,3.84,12/19/19 15:51,"14 Lincoln St, San Francisco, CA 94016" +320308,Wired Headphones,1,11.99,12/18/19 11:45,"726 Ridge St, Los Angeles, CA 90001" +320309,Macbook Pro Laptop,1,1700,12/30/19 16:48,"29 Cherry St, Boston, MA 02215" +320310,Google Phone,1,600,12/11/19 14:55,"225 West St, San Francisco, CA 94016" +320310,USB-C Charging Cable,1,11.95,12/11/19 14:55,"225 West St, San Francisco, CA 94016" +320310,Bose SoundSport Headphones,1,99.99,12/11/19 14:55,"225 West St, San Francisco, CA 94016" +320311,34in Ultrawide Monitor,1,379.99,12/11/19 18:49,"899 Johnson St, Dallas, TX 75001" +320312,AAA Batteries (4-pack),2,2.99,12/08/19 22:19,"928 Willow St, Atlanta, GA 30301" +320313,AAA Batteries (4-pack),1,2.99,12/01/19 16:49,"391 Johnson St, Atlanta, GA 30301" +320314,AA Batteries (4-pack),1,3.84,12/31/19 14:32,"804 Washington St, Boston, MA 02215" +320315,AA Batteries (4-pack),1,3.84,12/28/19 10:23,"989 North St, New York City, NY 10001" +320316,USB-C Charging Cable,1,11.95,12/18/19 11:55,"907 8th St, Boston, MA 02215" +320317,AA Batteries (4-pack),1,3.84,12/14/19 16:18,"43 River St, San Francisco, CA 94016" +320318,Apple Airpods Headphones,1,150,12/17/19 19:52,"404 Wilson St, Boston, MA 02215" +320319,Lightning Charging Cable,1,14.95,12/06/19 19:52,"562 Chestnut St, San Francisco, CA 94016" +320320,Bose SoundSport Headphones,1,99.99,12/22/19 21:45,"951 Cherry St, Seattle, WA 98101" +320321,Apple Airpods Headphones,1,150,12/08/19 14:08,"757 Adams St, San Francisco, CA 94016" +320322,Wired Headphones,1,11.99,12/12/19 13:25,"653 14th St, San Francisco, CA 94016" +320323,AA Batteries (4-pack),2,3.84,12/19/19 15:03,"49 Cherry St, San Francisco, CA 94016" +320324,Wired Headphones,1,11.99,12/22/19 12:23,"310 Maple St, Seattle, WA 98101" +320325,AA Batteries (4-pack),2,3.84,12/03/19 20:55,"332 4th St, Seattle, WA 98101" +320326,AA Batteries (4-pack),2,3.84,12/06/19 16:13,"84 West St, New York City, NY 10001" +320327,Google Phone,1,600,12/16/19 10:15,"491 Wilson St, Boston, MA 02215" +320328,USB-C Charging Cable,1,11.95,12/20/19 17:29,"571 Center St, Boston, MA 02215" +320329,USB-C Charging Cable,1,11.95,12/04/19 18:29,"340 South St, Austin, TX 73301" +320330,USB-C Charging Cable,1,11.95,12/10/19 20:27,"79 9th St, Dallas, TX 75001" +320331,AAA Batteries (4-pack),2,2.99,12/30/19 19:30,"995 Madison St, Boston, MA 02215" +320332,Lightning Charging Cable,1,14.95,12/29/19 21:22,"318 Wilson St, Atlanta, GA 30301" +320333,AAA Batteries (4-pack),1,2.99,12/07/19 09:41,"700 Church St, Los Angeles, CA 90001" +320334,USB-C Charging Cable,1,11.95,12/23/19 20:01,"869 8th St, San Francisco, CA 94016" +320335,USB-C Charging Cable,1,11.95,12/06/19 04:40,"129 2nd St, Boston, MA 02215" +320336,27in FHD Monitor,1,149.99,12/06/19 17:34,"617 Meadow St, Los Angeles, CA 90001" +320337,Wired Headphones,1,11.99,12/03/19 15:13,"327 Wilson St, San Francisco, CA 94016" +320338,USB-C Charging Cable,1,11.95,12/30/19 00:03,"382 6th St, New York City, NY 10001" +320339,Wired Headphones,1,11.99,12/26/19 13:44,"75 6th St, Los Angeles, CA 90001" +,,,,, +320340,Lightning Charging Cable,1,14.95,12/28/19 21:04,"112 Center St, San Francisco, CA 94016" +320341,20in Monitor,1,109.99,12/06/19 09:40,"379 7th St, Atlanta, GA 30301" +320342,Lightning Charging Cable,1,14.95,12/11/19 23:06,"762 River St, New York City, NY 10001" +320343,AAA Batteries (4-pack),3,2.99,12/06/19 14:31,"794 South St, New York City, NY 10001" +320344,AAA Batteries (4-pack),1,2.99,12/12/19 18:40,"298 River St, Boston, MA 02215" +320345,Bose SoundSport Headphones,1,99.99,12/07/19 13:29,"171 Center St, Los Angeles, CA 90001" +320346,34in Ultrawide Monitor,1,379.99,12/15/19 21:30,"660 Walnut St, Boston, MA 02215" +320347,iPhone,1,700,12/22/19 19:02,"16 5th St, Austin, TX 73301" +320347,Lightning Charging Cable,1,14.95,12/22/19 19:02,"16 5th St, Austin, TX 73301" +320348,Lightning Charging Cable,1,14.95,12/31/19 15:19,"882 Willow St, San Francisco, CA 94016" +320349,Bose SoundSport Headphones,1,99.99,12/27/19 19:58,"99 Spruce St, Los Angeles, CA 90001" +320350,Vareebadd Phone,1,400,12/19/19 08:19,"539 5th St, Los Angeles, CA 90001" +320351,Apple Airpods Headphones,1,150,12/29/19 19:20,"134 Washington St, San Francisco, CA 94016" +320352,iPhone,1,700,12/17/19 20:59,"688 Elm St, Atlanta, GA 30301" +320353,LG Washing Machine,1,600.0,12/01/19 04:40,"146 2nd St, Atlanta, GA 30301" +320354,Apple Airpods Headphones,1,150,12/15/19 15:48,"595 1st St, Seattle, WA 98101" +320355,Apple Airpods Headphones,1,150,12/26/19 21:52,"152 River St, New York City, NY 10001" +320356,Flatscreen TV,1,300,12/30/19 12:12,"438 9th St, Portland, OR 97035" +320357,Macbook Pro Laptop,1,1700,12/26/19 05:48,"759 Cedar St, Boston, MA 02215" +320358,Wired Headphones,1,11.99,12/19/19 16:36,"418 South St, San Francisco, CA 94016" +320359,USB-C Charging Cable,1,11.95,12/12/19 09:17,"961 Pine St, New York City, NY 10001" +320360,Bose SoundSport Headphones,1,99.99,12/20/19 16:52,"452 Forest St, San Francisco, CA 94016" +320361,Bose SoundSport Headphones,1,99.99,12/07/19 16:31,"740 Jefferson St, San Francisco, CA 94016" +320362,27in FHD Monitor,1,149.99,12/09/19 21:11,"700 Walnut St, New York City, NY 10001" +320363,AAA Batteries (4-pack),1,2.99,12/15/19 00:08,"837 Church St, Dallas, TX 75001" +320364,Lightning Charging Cable,1,14.95,12/13/19 18:15,"613 Cherry St, San Francisco, CA 94016" +320365,LG Dryer,1,600.0,12/04/19 14:34,"983 Cedar St, Portland, OR 97035" +320366,Wired Headphones,1,11.99,12/22/19 01:07,"434 9th St, New York City, NY 10001" +320367,Lightning Charging Cable,1,14.95,12/17/19 13:15,"691 Lakeview St, San Francisco, CA 94016" +320368,Macbook Pro Laptop,1,1700,12/18/19 13:37,"714 9th St, Portland, OR 97035" +320369,iPhone,1,700,12/10/19 22:17,"1 1st St, Los Angeles, CA 90001" +320370,Lightning Charging Cable,1,14.95,12/26/19 19:25,"350 12th St, Dallas, TX 75001" +320371,USB-C Charging Cable,1,11.95,12/19/19 13:53,"363 4th St, Los Angeles, CA 90001" +320372,Lightning Charging Cable,1,14.95,12/01/19 13:18,"250 Washington St, Los Angeles, CA 90001" +320373,Macbook Pro Laptop,1,1700,12/10/19 12:07,"6 Adams St, New York City, NY 10001" +320374,Lightning Charging Cable,1,14.95,12/20/19 19:18,"155 Forest St, Austin, TX 73301" +320375,Vareebadd Phone,1,400,12/28/19 06:39,"205 South St, Dallas, TX 75001" +320376,USB-C Charging Cable,1,11.95,12/30/19 20:55,"562 Maple St, Seattle, WA 98101" +320377,Bose SoundSport Headphones,1,99.99,12/18/19 17:59,"660 12th St, Dallas, TX 75001" +320378,Lightning Charging Cable,1,14.95,12/13/19 21:11,"535 Sunset St, San Francisco, CA 94016" +320379,AA Batteries (4-pack),1,3.84,12/30/19 15:27,"105 Elm St, New York City, NY 10001" +320380,iPhone,1,700,12/08/19 13:46,"727 Forest St, San Francisco, CA 94016" +320381,AAA Batteries (4-pack),1,2.99,12/08/19 15:29,"296 Park St, San Francisco, CA 94016" +320382,Flatscreen TV,1,300,12/30/19 16:51,"824 Dogwood St, New York City, NY 10001" +320383,Macbook Pro Laptop,1,1700,12/20/19 17:14,"768 8th St, San Francisco, CA 94016" +320384,iPhone,1,700,12/18/19 14:09,"597 Highland St, Seattle, WA 98101" +320385,Bose SoundSport Headphones,1,99.99,12/18/19 01:25,"981 2nd St, Boston, MA 02215" +320386,27in FHD Monitor,1,149.99,12/17/19 16:31,"708 Pine St, San Francisco, CA 94016" +320387,iPhone,1,700,12/10/19 09:15,"247 8th St, New York City, NY 10001" +320388,Wired Headphones,1,11.99,12/18/19 09:23,"719 Madison St, Atlanta, GA 30301" +320389,USB-C Charging Cable,1,11.95,12/03/19 20:03,"744 2nd St, Seattle, WA 98101" +320390,AAA Batteries (4-pack),1,2.99,12/23/19 09:36,"835 Willow St, Austin, TX 73301" +320391,Google Phone,1,600,12/08/19 21:07,"720 13th St, Seattle, WA 98101" +320392,Wired Headphones,1,11.99,12/06/19 23:16,"752 South St, Dallas, TX 75001" +320393,34in Ultrawide Monitor,1,379.99,12/08/19 12:53,"569 14th St, Los Angeles, CA 90001" +320394,Apple Airpods Headphones,1,150,12/01/19 20:17,"455 14th St, Los Angeles, CA 90001" +320395,USB-C Charging Cable,1,11.95,12/24/19 04:50,"744 Cherry St, Boston, MA 02215" +320396,Bose SoundSport Headphones,1,99.99,12/01/19 12:18,"819 Main St, San Francisco, CA 94016" +320397,Bose SoundSport Headphones,1,99.99,12/20/19 18:41,"328 9th St, Boston, MA 02215" +320398,AA Batteries (4-pack),3,3.84,12/11/19 13:34,"764 Wilson St, Los Angeles, CA 90001" +320398,Bose SoundSport Headphones,1,99.99,12/11/19 13:34,"764 Wilson St, Los Angeles, CA 90001" +320399,Google Phone,1,600,12/24/19 18:19,"841 7th St, Dallas, TX 75001" +320400,Apple Airpods Headphones,1,150,12/20/19 11:49,"437 11th St, Seattle, WA 98101" +320401,27in FHD Monitor,1,149.99,12/12/19 14:05,"878 Walnut St, Boston, MA 02215" +320402,Lightning Charging Cable,1,14.95,12/27/19 19:39,"126 14th St, Boston, MA 02215" +320403,Wired Headphones,1,11.99,12/16/19 06:33,"85 5th St, Boston, MA 02215" +320404,34in Ultrawide Monitor,1,379.99,12/18/19 17:33,"741 Johnson St, Boston, MA 02215" +320405,Wired Headphones,1,11.99,12/19/19 14:56,"596 2nd St, Atlanta, GA 30301" +320406,AAA Batteries (4-pack),1,2.99,12/14/19 17:29,"797 Meadow St, Los Angeles, CA 90001" +320407,20in Monitor,1,109.99,12/09/19 09:54,"415 River St, New York City, NY 10001" +320408,Google Phone,1,600,12/09/19 15:22,"606 Hickory St, Austin, TX 73301" +320409,Macbook Pro Laptop,1,1700,12/31/19 16:08,"234 Wilson St, San Francisco, CA 94016" +320410,34in Ultrawide Monitor,1,379.99,12/29/19 16:49,"56 Ridge St, Atlanta, GA 30301" +320411,27in 4K Gaming Monitor,1,389.99,12/14/19 19:36,"159 Pine St, Los Angeles, CA 90001" +320412,AAA Batteries (4-pack),3,2.99,12/19/19 10:32,"527 1st St, San Francisco, CA 94016" +320413,27in FHD Monitor,1,149.99,12/31/19 14:23,"363 Hickory St, Dallas, TX 75001" +320414,Lightning Charging Cable,1,14.95,12/28/19 06:41,"544 4th St, Portland, OR 97035" +320415,27in 4K Gaming Monitor,1,389.99,12/21/19 17:16,"126 Willow St, San Francisco, CA 94016" +320416,USB-C Charging Cable,1,11.95,12/31/19 22:16,"957 Hill St, Austin, TX 73301" +320416,Google Phone,1,600,12/31/19 22:16,"957 Hill St, Austin, TX 73301" +320417,Bose SoundSport Headphones,1,99.99,12/11/19 21:18,"915 13th St, Portland, OR 97035" +320418,AAA Batteries (4-pack),1,2.99,12/10/19 03:57,"447 Jefferson St, San Francisco, CA 94016" +320419,34in Ultrawide Monitor,1,379.99,12/16/19 08:56,"127 Walnut St, San Francisco, CA 94016" +320420,ThinkPad Laptop,1,999.99,12/12/19 21:20,"892 Maple St, Los Angeles, CA 90001" +320421,Lightning Charging Cable,1,14.95,12/11/19 13:14,"875 Johnson St, San Francisco, CA 94016" +320422,USB-C Charging Cable,1,11.95,12/19/19 07:11,"717 South St, New York City, NY 10001" +320423,Lightning Charging Cable,1,14.95,12/03/19 06:41,"877 2nd St, Boston, MA 02215" +320424,Lightning Charging Cable,1,14.95,12/10/19 01:16,"561 Madison St, Los Angeles, CA 90001" +320425,Bose SoundSport Headphones,1,99.99,12/17/19 10:48,"557 Lakeview St, San Francisco, CA 94016" +320426,Apple Airpods Headphones,1,150,12/18/19 19:26,"750 9th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +320427,USB-C Charging Cable,2,11.95,12/12/19 21:53,"567 Meadow St, Los Angeles, CA 90001" +320428,AA Batteries (4-pack),1,3.84,12/24/19 15:42,"254 River St, Austin, TX 73301" +320429,AA Batteries (4-pack),2,3.84,12/03/19 22:34,"361 Pine St, Los Angeles, CA 90001" +320430,27in FHD Monitor,1,149.99,12/30/19 09:09,"93 Washington St, Portland, OR 97035" +320431,27in FHD Monitor,1,149.99,12/27/19 21:40,"187 Pine St, Boston, MA 02215" +320432,Apple Airpods Headphones,1,150,12/21/19 19:50,"874 8th St, Atlanta, GA 30301" +320433,Lightning Charging Cable,1,14.95,12/25/19 08:31,"516 Adams St, San Francisco, CA 94016" +320434,Wired Headphones,1,11.99,12/27/19 09:52,"265 Spruce St, San Francisco, CA 94016" +320435,AAA Batteries (4-pack),2,2.99,12/12/19 10:24,"972 South St, New York City, NY 10001" +320436,Apple Airpods Headphones,1,150,12/24/19 19:26,"522 7th St, San Francisco, CA 94016" +320437,USB-C Charging Cable,1,11.95,12/08/19 09:27,"568 Highland St, Boston, MA 02215" +320437,Macbook Pro Laptop,1,1700,12/08/19 09:27,"568 Highland St, Boston, MA 02215" +320438,Bose SoundSport Headphones,1,99.99,12/10/19 13:17,"943 Hill St, Dallas, TX 75001" +320439,USB-C Charging Cable,1,11.95,12/07/19 09:23,"227 8th St, Portland, OR 97035" +320440,Bose SoundSport Headphones,1,99.99,12/23/19 20:04,"28 Wilson St, Austin, TX 73301" +320441,USB-C Charging Cable,1,11.95,12/09/19 12:25,"360 Wilson St, New York City, NY 10001" +320442,Flatscreen TV,1,300,12/10/19 13:51,"245 Cedar St, Los Angeles, CA 90001" +320443,27in FHD Monitor,1,149.99,12/20/19 01:26,"7 Lincoln St, New York City, NY 10001" +320444,Bose SoundSport Headphones,1,99.99,12/10/19 19:43,"649 Wilson St, New York City, NY 10001" +320445,AAA Batteries (4-pack),1,2.99,12/05/19 17:44,"548 Cherry St, Boston, MA 02215" +320446,AA Batteries (4-pack),1,3.84,12/25/19 02:25,"593 1st St, San Francisco, CA 94016" +320447,Lightning Charging Cable,1,14.95,12/02/19 16:43,"898 Spruce St, New York City, NY 10001" +320448,AAA Batteries (4-pack),3,2.99,12/21/19 16:45,"947 Willow St, Atlanta, GA 30301" +320449,Bose SoundSport Headphones,1,99.99,12/18/19 15:37,"950 Church St, San Francisco, CA 94016" +320450,Apple Airpods Headphones,1,150,12/05/19 12:11,"587 Jackson St, Seattle, WA 98101" +320451,34in Ultrawide Monitor,1,379.99,12/30/19 19:20,"486 North St, Seattle, WA 98101" +320452,Apple Airpods Headphones,1,150,12/30/19 01:10,"841 Cherry St, Seattle, WA 98101" +320453,Apple Airpods Headphones,1,150,12/08/19 02:58,"33 4th St, Boston, MA 02215" +320454,USB-C Charging Cable,1,11.95,12/07/19 17:27,"18 Washington St, New York City, NY 10001" +320455,Macbook Pro Laptop,1,1700,12/07/19 20:41,"365 Jackson St, Seattle, WA 98101" +320456,Lightning Charging Cable,2,14.95,12/09/19 15:23,"890 Spruce St, Los Angeles, CA 90001" +320457,USB-C Charging Cable,1,11.95,12/15/19 09:40,"209 Spruce St, Los Angeles, CA 90001" +320458,USB-C Charging Cable,1,11.95,12/10/19 12:36,"937 Madison St, San Francisco, CA 94016" +320459,Flatscreen TV,1,300,12/03/19 02:37,"952 Pine St, Dallas, TX 75001" +320460,AAA Batteries (4-pack),2,2.99,12/20/19 10:40,"118 1st St, San Francisco, CA 94016" +320461,ThinkPad Laptop,1,999.99,12/06/19 18:27,"97 Adams St, Los Angeles, CA 90001" +320462,USB-C Charging Cable,1,11.95,12/22/19 00:52,"390 Jackson St, Boston, MA 02215" +320463,20in Monitor,1,109.99,12/01/19 06:13,"110 Lake St, New York City, NY 10001" +320464,Apple Airpods Headphones,1,150,12/28/19 21:08,"801 12th St, Boston, MA 02215" +320465,Apple Airpods Headphones,1,150,12/16/19 15:50,"991 8th St, Boston, MA 02215" +320466,Google Phone,1,600,12/12/19 08:13,"509 Highland St, Austin, TX 73301" +320467,USB-C Charging Cable,1,11.95,12/15/19 19:30,"620 Jefferson St, Portland, OR 97035" +320468,ThinkPad Laptop,1,999.99,12/27/19 14:16,"297 Dogwood St, San Francisco, CA 94016" +320469,Bose SoundSport Headphones,1,99.99,12/21/19 23:07,"769 Lincoln St, Los Angeles, CA 90001" +320470,AAA Batteries (4-pack),1,2.99,12/04/19 19:20,"831 Washington St, San Francisco, CA 94016" +320471,Lightning Charging Cable,1,14.95,12/14/19 20:14,"74 4th St, Dallas, TX 75001" +320472,Wired Headphones,1,11.99,12/26/19 14:11,"185 Maple St, San Francisco, CA 94016" +320473,Lightning Charging Cable,2,14.95,12/11/19 00:29,"129 Lincoln St, Los Angeles, CA 90001" +320474,Lightning Charging Cable,1,14.95,12/02/19 16:52,"918 Hill St, San Francisco, CA 94016" +320475,AAA Batteries (4-pack),1,2.99,12/12/19 11:53,"6 Ridge St, Los Angeles, CA 90001" +320476,20in Monitor,1,109.99,12/09/19 11:24,"219 Dogwood St, San Francisco, CA 94016" +320477,ThinkPad Laptop,1,999.99,12/10/19 23:45,"751 Adams St, San Francisco, CA 94016" +320478,USB-C Charging Cable,1,11.95,12/05/19 12:29,"11 1st St, San Francisco, CA 94016" +320479,Apple Airpods Headphones,1,150,12/23/19 12:25,"660 Dogwood St, Seattle, WA 98101" +320480,Bose SoundSport Headphones,1,99.99,12/20/19 14:23,"985 Dogwood St, Portland, OR 97035" +320481,27in FHD Monitor,1,149.99,12/24/19 15:47,"292 9th St, Seattle, WA 98101" +320482,AAA Batteries (4-pack),1,2.99,12/09/19 17:22,"687 Elm St, New York City, NY 10001" +320483,AAA Batteries (4-pack),1,2.99,12/16/19 11:05,"335 Lakeview St, New York City, NY 10001" +320483,AAA Batteries (4-pack),1,2.99,12/16/19 11:05,"335 Lakeview St, New York City, NY 10001" +320484,AA Batteries (4-pack),1,3.84,12/20/19 22:49,"952 Chestnut St, San Francisco, CA 94016" +320485,27in 4K Gaming Monitor,1,389.99,12/18/19 13:21,"184 Madison St, Portland, OR 97035" +320486,Wired Headphones,2,11.99,12/31/19 09:01,"78 Adams St, New York City, NY 10001" +320487,iPhone,1,700,12/11/19 11:11,"148 Elm St, Los Angeles, CA 90001" +320487,Lightning Charging Cable,1,14.95,12/11/19 11:11,"148 Elm St, Los Angeles, CA 90001" +320488,34in Ultrawide Monitor,1,379.99,12/20/19 14:57,"650 Meadow St, San Francisco, CA 94016" +320489,Lightning Charging Cable,1,14.95,12/19/19 22:41,"81 10th St, Austin, TX 73301" +320490,Bose SoundSport Headphones,1,99.99,12/21/19 20:34,"28 Hickory St, Los Angeles, CA 90001" +320491,Apple Airpods Headphones,1,150,12/10/19 17:25,"82 Walnut St, New York City, NY 10001" +320492,34in Ultrawide Monitor,1,379.99,12/07/19 06:15,"953 8th St, Los Angeles, CA 90001" +320493,USB-C Charging Cable,1,11.95,12/04/19 22:21,"498 Johnson St, New York City, NY 10001" +320494,AA Batteries (4-pack),1,3.84,12/21/19 14:59,"559 9th St, San Francisco, CA 94016" +320495,AA Batteries (4-pack),1,3.84,12/15/19 17:06,"74 Lakeview St, San Francisco, CA 94016" +320496,AAA Batteries (4-pack),1,2.99,12/08/19 14:46,"136 Lakeview St, Seattle, WA 98101" +320497,iPhone,1,700,12/20/19 08:43,"35 Lake St, San Francisco, CA 94016" +320497,Apple Airpods Headphones,1,150,12/20/19 08:43,"35 Lake St, San Francisco, CA 94016" +320498,Apple Airpods Headphones,1,150,12/01/19 13:51,"982 Cedar St, San Francisco, CA 94016" +320499,AAA Batteries (4-pack),2,2.99,12/16/19 08:24,"758 Church St, Seattle, WA 98101" +320500,27in FHD Monitor,1,149.99,12/17/19 13:11,"924 Cherry St, New York City, NY 10001" +320501,Apple Airpods Headphones,1,150,12/18/19 22:08,"67 14th St, Atlanta, GA 30301" +320502,AA Batteries (4-pack),1,3.84,12/25/19 21:16,"759 11th St, New York City, NY 10001" +320503,Wired Headphones,1,11.99,12/15/19 11:44,"868 Maple St, New York City, NY 10001" +320504,LG Dryer,1,600.0,12/04/19 12:50,"709 Main St, New York City, NY 10001" +320505,Apple Airpods Headphones,1,150,12/30/19 17:12,"906 1st St, New York City, NY 10001" +320506,Wired Headphones,1,11.99,12/08/19 18:40,"309 1st St, Los Angeles, CA 90001" +320507,AA Batteries (4-pack),1,3.84,12/10/19 13:52,"276 Adams St, New York City, NY 10001" +320508,Macbook Pro Laptop,1,1700,12/08/19 00:39,"382 Forest St, Dallas, TX 75001" +320509,USB-C Charging Cable,1,11.95,12/12/19 15:46,"94 Cherry St, Los Angeles, CA 90001" +320510,USB-C Charging Cable,1,11.95,12/24/19 21:38,"639 Hill St, Dallas, TX 75001" +320511,Flatscreen TV,1,300,12/08/19 13:44,"76 Walnut St, San Francisco, CA 94016" +320512,Wired Headphones,1,11.99,12/03/19 12:28,"530 Jefferson St, Portland, OR 97035" +320513,Bose SoundSport Headphones,1,99.99,12/26/19 14:11,"284 Park St, New York City, NY 10001" +320513,27in FHD Monitor,1,149.99,12/26/19 14:11,"284 Park St, New York City, NY 10001" +320514,USB-C Charging Cable,1,11.95,12/30/19 22:17,"744 13th St, Los Angeles, CA 90001" +320514,34in Ultrawide Monitor,1,379.99,12/30/19 22:17,"744 13th St, Los Angeles, CA 90001" +320515,Macbook Pro Laptop,1,1700,12/22/19 12:14,"713 Willow St, Dallas, TX 75001" +320516,Lightning Charging Cable,1,14.95,12/27/19 15:21,"927 Elm St, Atlanta, GA 30301" +320517,Apple Airpods Headphones,1,150,12/02/19 19:00,"505 Spruce St, Boston, MA 02215" +320518,USB-C Charging Cable,1,11.95,12/18/19 12:27,"551 Madison St, Austin, TX 73301" +320519,AA Batteries (4-pack),4,3.84,12/27/19 13:00,"196 Center St, New York City, NY 10001" +320520,27in FHD Monitor,1,149.99,12/27/19 09:21,"474 Center St, San Francisco, CA 94016" +320521,Wired Headphones,1,11.99,12/23/19 05:55,"924 Cherry St, Los Angeles, CA 90001" +320522,Google Phone,1,600,12/31/19 11:58,"169 4th St, San Francisco, CA 94016" +320523,27in FHD Monitor,1,149.99,12/01/19 09:12,"207 Elm St, San Francisco, CA 94016" +320524,Lightning Charging Cable,1,14.95,12/15/19 22:14,"426 9th St, New York City, NY 10001" +320525,Wired Headphones,1,11.99,12/12/19 10:52,"678 Highland St, New York City, NY 10001" +320526,USB-C Charging Cable,2,11.95,12/04/19 12:15,"5 Forest St, Boston, MA 02215" +320527,AAA Batteries (4-pack),2,2.99,12/03/19 17:36,"131 Ridge St, Boston, MA 02215" +320528,Flatscreen TV,1,300,12/11/19 21:39,"986 Pine St, Los Angeles, CA 90001" +320529,USB-C Charging Cable,1,11.95,12/27/19 20:11,"961 Hill St, San Francisco, CA 94016" +320530,Apple Airpods Headphones,1,150,12/02/19 18:52,"416 Main St, San Francisco, CA 94016" +320531,Lightning Charging Cable,1,14.95,12/12/19 17:37,"977 Jackson St, Atlanta, GA 30301" +320532,Wired Headphones,1,11.99,12/29/19 13:09,"866 Washington St, New York City, NY 10001" +320533,34in Ultrawide Monitor,1,379.99,12/25/19 06:39,"821 1st St, San Francisco, CA 94016" +320534,34in Ultrawide Monitor,1,379.99,12/15/19 06:25,"287 Cherry St, Portland, OR 97035" +320535,Wired Headphones,1,11.99,12/26/19 15:32,"136 9th St, Atlanta, GA 30301" +320536,AA Batteries (4-pack),1,3.84,12/27/19 11:01,"634 Ridge St, Los Angeles, CA 90001" +320537,Bose SoundSport Headphones,1,99.99,12/23/19 13:45,"490 Meadow St, San Francisco, CA 94016" +320538,Lightning Charging Cable,1,14.95,12/25/19 11:07,"991 Maple St, Atlanta, GA 30301" +320539,Flatscreen TV,1,300,12/23/19 14:00,"798 Jefferson St, Seattle, WA 98101" +320540,Lightning Charging Cable,1,14.95,12/15/19 12:43,"336 Washington St, Austin, TX 73301" +320541,AA Batteries (4-pack),1,3.84,12/16/19 11:10,"547 West St, San Francisco, CA 94016" +320542,Lightning Charging Cable,1,14.95,12/29/19 19:09,"98 Ridge St, Los Angeles, CA 90001" +320543,AAA Batteries (4-pack),1,2.99,12/20/19 19:28,"808 Highland St, Dallas, TX 75001" +320544,27in FHD Monitor,1,149.99,12/11/19 05:59,"103 Elm St, Los Angeles, CA 90001" +320545,20in Monitor,1,109.99,12/18/19 10:34,"264 Church St, Atlanta, GA 30301" +320546,AAA Batteries (4-pack),1,2.99,12/09/19 15:57,"865 13th St, Dallas, TX 75001" +320547,Wired Headphones,1,11.99,12/23/19 05:12,"167 Madison St, Los Angeles, CA 90001" +320547,Wired Headphones,1,11.99,12/23/19 05:12,"167 Madison St, Los Angeles, CA 90001" +320548,AA Batteries (4-pack),1,3.84,12/22/19 18:47,"130 Cherry St, New York City, NY 10001" +320549,34in Ultrawide Monitor,1,379.99,12/24/19 20:29,"821 Dogwood St, Seattle, WA 98101" +320550,Bose SoundSport Headphones,1,99.99,12/17/19 17:31,"675 4th St, New York City, NY 10001" +320551,Lightning Charging Cable,1,14.95,12/04/19 11:43,"602 Maple St, Los Angeles, CA 90001" +320552,AAA Batteries (4-pack),3,2.99,12/10/19 15:16,"23 Spruce St, Boston, MA 02215" +320553,Macbook Pro Laptop,1,1700,12/01/19 20:54,"178 Adams St, Los Angeles, CA 90001" +320554,AAA Batteries (4-pack),2,2.99,12/08/19 14:26,"905 Hickory St, New York City, NY 10001" +320555,Bose SoundSport Headphones,1,99.99,12/29/19 10:43,"293 Maple St, Dallas, TX 75001" +320556,20in Monitor,1,109.99,12/18/19 22:45,"55 Park St, Atlanta, GA 30301" +320557,20in Monitor,1,109.99,12/29/19 11:43,"723 Walnut St, Los Angeles, CA 90001" +320558,Bose SoundSport Headphones,1,99.99,12/01/19 09:33,"629 Adams St, Atlanta, GA 30301" +320559,USB-C Charging Cable,1,11.95,12/21/19 13:16,"724 Washington St, New York City, NY 10001" +320560,Macbook Pro Laptop,1,1700,12/24/19 19:02,"22 Jackson St, San Francisco, CA 94016" +320561,USB-C Charging Cable,1,11.95,12/21/19 19:46,"878 Sunset St, New York City, NY 10001" +320562,Bose SoundSport Headphones,1,99.99,12/30/19 20:14,"589 9th St, Portland, OR 97035" +320563,Lightning Charging Cable,1,14.95,12/04/19 15:31,"513 10th St, Austin, TX 73301" +320563,Wired Headphones,2,11.99,12/04/19 15:31,"513 10th St, Austin, TX 73301" +320564,Lightning Charging Cable,1,14.95,12/20/19 22:35,"285 6th St, Dallas, TX 75001" +320565,Apple Airpods Headphones,1,150,12/01/19 06:48,"160 Park St, Austin, TX 73301" +320566,AAA Batteries (4-pack),1,2.99,12/16/19 22:57,"983 Adams St, San Francisco, CA 94016" +320567,Bose SoundSport Headphones,1,99.99,12/24/19 08:19,"179 Willow St, San Francisco, CA 94016" +320567,AA Batteries (4-pack),1,3.84,12/24/19 08:19,"179 Willow St, San Francisco, CA 94016" +320568,Lightning Charging Cable,1,14.95,12/16/19 19:36,"826 Park St, Los Angeles, CA 90001" +320569,Google Phone,1,600,12/11/19 10:42,"357 Sunset St, Boston, MA 02215" +320570,27in 4K Gaming Monitor,1,389.99,12/25/19 14:26,"891 Park St, Dallas, TX 75001" +320571,AAA Batteries (4-pack),1,2.99,12/28/19 08:18,"821 Park St, Atlanta, GA 30301" +320572,AA Batteries (4-pack),1,3.84,12/15/19 03:07,"871 14th St, Los Angeles, CA 90001" +320573,AAA Batteries (4-pack),1,2.99,12/02/19 22:51,"738 South St, Boston, MA 02215" +320574,AAA Batteries (4-pack),1,2.99,12/26/19 14:51,"666 2nd St, Seattle, WA 98101" +320575,Wired Headphones,1,11.99,12/08/19 01:36,"906 Wilson St, Los Angeles, CA 90001" +320576,USB-C Charging Cable,1,11.95,12/16/19 13:35,"946 Walnut St, New York City, NY 10001" +320577,20in Monitor,1,109.99,12/18/19 16:45,"888 Maple St, Boston, MA 02215" +320578,Wired Headphones,1,11.99,12/15/19 21:47,"877 Main St, San Francisco, CA 94016" +320579,Lightning Charging Cable,1,14.95,12/06/19 18:06,"605 Sunset St, Portland, ME 04101" +320580,Lightning Charging Cable,1,14.95,12/09/19 20:04,"409 Cedar St, Los Angeles, CA 90001" +320581,34in Ultrawide Monitor,1,379.99,12/19/19 10:02,"54 12th St, Portland, ME 04101" +320582,USB-C Charging Cable,1,11.95,12/13/19 16:06,"205 Madison St, Portland, OR 97035" +320583,Lightning Charging Cable,1,14.95,12/05/19 11:06,"781 Johnson St, Portland, OR 97035" +320584,Wired Headphones,1,11.99,12/03/19 19:49,"378 7th St, San Francisco, CA 94016" +320585,Apple Airpods Headphones,1,150,12/06/19 11:43,"942 Hickory St, Boston, MA 02215" +320586,USB-C Charging Cable,2,11.95,12/15/19 22:04,"587 Walnut St, Los Angeles, CA 90001" +320587,Apple Airpods Headphones,1,150,12/05/19 15:41,"811 Pine St, San Francisco, CA 94016" +320588,Google Phone,1,600,12/22/19 07:08,"810 9th St, San Francisco, CA 94016" +320589,Bose SoundSport Headphones,1,99.99,12/24/19 07:23,"622 Lakeview St, Seattle, WA 98101" +320590,27in FHD Monitor,1,149.99,12/03/19 12:33,"186 Park St, New York City, NY 10001" +320591,AA Batteries (4-pack),1,3.84,12/14/19 23:22,"49 Chestnut St, New York City, NY 10001" +320592,20in Monitor,1,109.99,12/05/19 23:13,"827 Washington St, New York City, NY 10001" +320593,Macbook Pro Laptop,1,1700,12/08/19 19:47,"865 Meadow St, Seattle, WA 98101" +320594,AA Batteries (4-pack),1,3.84,12/20/19 10:40,"479 Wilson St, Dallas, TX 75001" +320595,USB-C Charging Cable,1,11.95,12/13/19 19:28,"288 5th St, New York City, NY 10001" +320596,AAA Batteries (4-pack),1,2.99,12/21/19 06:56,"89 Dogwood St, Boston, MA 02215" +320597,Google Phone,1,600,12/17/19 07:22,"632 South St, Atlanta, GA 30301" +320598,Wired Headphones,1,11.99,12/11/19 07:25,"780 14th St, San Francisco, CA 94016" +320599,20in Monitor,1,109.99,12/13/19 17:52,"720 6th St, New York City, NY 10001" +320600,AA Batteries (4-pack),1,3.84,12/30/19 20:23,"333 10th St, New York City, NY 10001" +320601,Macbook Pro Laptop,1,1700,12/11/19 10:56,"26 Lakeview St, San Francisco, CA 94016" +320602,Macbook Pro Laptop,1,1700,12/22/19 08:18,"910 Lake St, San Francisco, CA 94016" +320603,Wired Headphones,1,11.99,12/01/19 15:48,"575 5th St, Los Angeles, CA 90001" +320604,Wired Headphones,1,11.99,12/07/19 21:56,"921 Chestnut St, Seattle, WA 98101" +320605,Apple Airpods Headphones,1,150,12/23/19 10:54,"328 Hickory St, New York City, NY 10001" +320606,Lightning Charging Cable,1,14.95,12/25/19 11:52,"249 Sunset St, New York City, NY 10001" +320607,Bose SoundSport Headphones,1,99.99,12/06/19 15:21,"520 Cherry St, Los Angeles, CA 90001" +320608,Macbook Pro Laptop,1,1700,12/12/19 13:08,"564 7th St, San Francisco, CA 94016" +320609,USB-C Charging Cable,1,11.95,12/27/19 17:19,"949 Washington St, Seattle, WA 98101" +320610,AAA Batteries (4-pack),2,2.99,12/04/19 17:55,"484 1st St, New York City, NY 10001" +320611,20in Monitor,1,109.99,12/24/19 12:38,"551 South St, Boston, MA 02215" +320612,AA Batteries (4-pack),1,3.84,12/24/19 09:31,"326 Dogwood St, Atlanta, GA 30301" +320613,Lightning Charging Cable,1,14.95,12/29/19 19:35,"719 Chestnut St, New York City, NY 10001" +320614,AA Batteries (4-pack),1,3.84,12/03/19 04:46,"735 12th St, Boston, MA 02215" +320615,Google Phone,1,600,12/09/19 15:50,"285 Ridge St, Los Angeles, CA 90001" +320616,LG Washing Machine,1,600.0,12/15/19 18:45,"974 Forest St, San Francisco, CA 94016" +320617,27in FHD Monitor,1,149.99,12/16/19 09:36,"152 Hill St, Los Angeles, CA 90001" +320618,Apple Airpods Headphones,1,150,12/31/19 08:45,"917 Lincoln St, San Francisco, CA 94016" +320619,Lightning Charging Cable,1,14.95,12/20/19 23:38,"148 6th St, Los Angeles, CA 90001" +320620,Lightning Charging Cable,1,14.95,12/16/19 23:29,"374 2nd St, New York City, NY 10001" +320621,iPhone,1,700,12/07/19 21:31,"119 12th St, Los Angeles, CA 90001" +320622,20in Monitor,1,109.99,12/28/19 11:42,"213 Willow St, Los Angeles, CA 90001" +320623,20in Monitor,1,109.99,12/18/19 16:54,"138 9th St, Atlanta, GA 30301" +320624,ThinkPad Laptop,1,999.99,12/13/19 13:16,"607 Jackson St, Portland, OR 97035" +320625,iPhone,1,700,12/17/19 17:07,"824 Lakeview St, Los Angeles, CA 90001" +320626,Wired Headphones,1,11.99,12/25/19 14:27,"918 Park St, San Francisco, CA 94016" +320627,34in Ultrawide Monitor,1,379.99,12/27/19 10:48,"188 7th St, Austin, TX 73301" +320628,34in Ultrawide Monitor,1,379.99,12/17/19 19:29,"32 Highland St, Dallas, TX 75001" +320629,USB-C Charging Cable,1,11.95,12/13/19 13:02,"132 14th St, Atlanta, GA 30301" +320630,Bose SoundSport Headphones,1,99.99,12/17/19 09:33,"283 11th St, Los Angeles, CA 90001" +320631,Vareebadd Phone,1,400,12/07/19 19:56,"512 Hickory St, New York City, NY 10001" +320632,Wired Headphones,1,11.99,12/09/19 08:31,"206 Sunset St, Los Angeles, CA 90001" +320633,AAA Batteries (4-pack),1,2.99,12/26/19 18:55,"560 4th St, Boston, MA 02215" +320634,USB-C Charging Cable,1,11.95,12/22/19 16:31,"435 Main St, San Francisco, CA 94016" +320635,27in FHD Monitor,1,149.99,12/03/19 19:00,"34 Madison St, Boston, MA 02215" +320636,Flatscreen TV,1,300,12/02/19 09:22,"638 Walnut St, San Francisco, CA 94016" +320637,Apple Airpods Headphones,1,150,12/11/19 22:38,"673 11th St, Los Angeles, CA 90001" +320638,27in 4K Gaming Monitor,1,389.99,12/28/19 08:49,"444 8th St, Austin, TX 73301" +320639,Macbook Pro Laptop,1,1700,12/23/19 22:09,"836 Willow St, San Francisco, CA 94016" +320640,Macbook Pro Laptop,1,1700,12/27/19 14:16,"891 Meadow St, Austin, TX 73301" +320641,USB-C Charging Cable,2,11.95,12/10/19 18:04,"880 Dogwood St, Boston, MA 02215" +320642,AAA Batteries (4-pack),1,2.99,12/17/19 06:29,"937 Forest St, New York City, NY 10001" +320643,AA Batteries (4-pack),1,3.84,12/01/19 12:46,"926 1st St, New York City, NY 10001" +320644,AAA Batteries (4-pack),1,2.99,12/28/19 14:32,"940 Hill St, San Francisco, CA 94016" +320645,Google Phone,1,600,12/19/19 21:25,"721 Lake St, Portland, OR 97035" +320646,Lightning Charging Cable,1,14.95,12/28/19 08:56,"116 Lake St, Boston, MA 02215" +320647,Bose SoundSport Headphones,1,99.99,12/17/19 18:38,"659 Forest St, San Francisco, CA 94016" +320648,USB-C Charging Cable,1,11.95,12/25/19 17:25,"945 Park St, Seattle, WA 98101" +320649,Bose SoundSport Headphones,1,99.99,12/13/19 21:49,"324 1st St, Atlanta, GA 30301" +320650,Bose SoundSport Headphones,1,99.99,12/20/19 19:57,"294 1st St, San Francisco, CA 94016" +320651,AA Batteries (4-pack),1,3.84,12/14/19 19:12,"328 Forest St, Dallas, TX 75001" +320652,USB-C Charging Cable,1,11.95,12/18/19 20:41,"645 14th St, San Francisco, CA 94016" +320653,iPhone,1,700,12/02/19 17:39,"187 Jackson St, San Francisco, CA 94016" +320654,Bose SoundSport Headphones,1,99.99,12/09/19 18:46,"967 Jefferson St, New York City, NY 10001" +320655,27in FHD Monitor,1,149.99,12/21/19 20:07,"492 4th St, Atlanta, GA 30301" +320656,USB-C Charging Cable,1,11.95,12/07/19 22:30,"289 Washington St, San Francisco, CA 94016" +320657,Wired Headphones,1,11.99,12/30/19 12:55,"470 Adams St, Los Angeles, CA 90001" +320658,AA Batteries (4-pack),1,3.84,12/30/19 13:11,"269 2nd St, Dallas, TX 75001" +320659,27in 4K Gaming Monitor,1,389.99,12/14/19 10:16,"48 Jackson St, New York City, NY 10001" +320660,AA Batteries (4-pack),1,3.84,12/05/19 16:53,"404 Cedar St, New York City, NY 10001" +320661,27in FHD Monitor,1,149.99,12/16/19 15:19,"960 Washington St, Atlanta, GA 30301" +320662,Apple Airpods Headphones,1,150,12/30/19 12:55,"440 5th St, San Francisco, CA 94016" +320663,34in Ultrawide Monitor,1,379.99,12/17/19 22:38,"632 4th St, San Francisco, CA 94016" +320664,34in Ultrawide Monitor,1,379.99,12/09/19 20:22,"593 Lincoln St, Seattle, WA 98101" +320665,Google Phone,1,600,12/16/19 17:40,"267 South St, Seattle, WA 98101" +320666,Bose SoundSport Headphones,1,99.99,12/02/19 14:56,"858 Church St, Atlanta, GA 30301" +320666,Flatscreen TV,1,300,12/02/19 14:56,"858 Church St, Atlanta, GA 30301" +320667,AAA Batteries (4-pack),1,2.99,12/06/19 07:42,"707 11th St, Dallas, TX 75001" +320668,Lightning Charging Cable,1,14.95,12/18/19 12:01,"760 Pine St, Seattle, WA 98101" +320669,27in FHD Monitor,1,149.99,12/10/19 11:28,"612 Hill St, Dallas, TX 75001" +320670,AA Batteries (4-pack),1,3.84,12/16/19 09:19,"478 7th St, San Francisco, CA 94016" +320671,Wired Headphones,1,11.99,12/28/19 12:16,"567 South St, Boston, MA 02215" +320672,AAA Batteries (4-pack),1,2.99,12/25/19 16:00,"159 Chestnut St, Seattle, WA 98101" +320673,AAA Batteries (4-pack),1,2.99,12/27/19 10:25,"253 West St, Los Angeles, CA 90001" +320674,Lightning Charging Cable,1,14.95,12/01/19 15:31,"184 Walnut St, New York City, NY 10001" +320675,Lightning Charging Cable,2,14.95,12/23/19 18:10,"331 Cedar St, Boston, MA 02215" +320676,Lightning Charging Cable,1,14.95,12/10/19 18:38,"702 Cedar St, San Francisco, CA 94016" +320677,AA Batteries (4-pack),1,3.84,12/14/19 16:26,"86 Spruce St, Atlanta, GA 30301" +320678,Google Phone,1,600,12/10/19 10:59,"433 Ridge St, Los Angeles, CA 90001" +320679,Bose SoundSport Headphones,1,99.99,12/15/19 00:18,"85 12th St, New York City, NY 10001" +320680,Flatscreen TV,1,300,12/16/19 20:20,"897 8th St, San Francisco, CA 94016" +320681,Apple Airpods Headphones,1,150,12/26/19 18:57,"426 11th St, Portland, OR 97035" +320682,USB-C Charging Cable,1,11.95,12/28/19 15:38,"596 Highland St, New York City, NY 10001" +320683,Apple Airpods Headphones,1,150,12/14/19 18:42,"430 Park St, Portland, ME 04101" +320684,34in Ultrawide Monitor,1,379.99,12/15/19 06:54,"548 8th St, Dallas, TX 75001" +320685,USB-C Charging Cable,1,11.95,12/03/19 16:13,"333 Meadow St, Los Angeles, CA 90001" +320686,Apple Airpods Headphones,1,150,12/24/19 17:10,"152 Dogwood St, Los Angeles, CA 90001" +320687,USB-C Charging Cable,3,11.95,12/15/19 17:35,"982 Park St, Dallas, TX 75001" +320688,20in Monitor,1,109.99,12/15/19 19:50,"190 River St, Portland, OR 97035" +320689,Lightning Charging Cable,1,14.95,12/02/19 13:46,"638 Cedar St, Boston, MA 02215" +320690,Wired Headphones,1,11.99,12/28/19 18:35,"901 Lincoln St, San Francisco, CA 94016" +320691,Flatscreen TV,1,300,12/25/19 15:22,"923 12th St, Austin, TX 73301" +320692,AA Batteries (4-pack),2,3.84,12/11/19 13:19,"791 10th St, Los Angeles, CA 90001" +320693,USB-C Charging Cable,1,11.95,12/28/19 20:50,"313 Lincoln St, Los Angeles, CA 90001" +320694,USB-C Charging Cable,1,11.95,12/23/19 09:29,"37 Madison St, Boston, MA 02215" +320695,Lightning Charging Cable,1,14.95,12/30/19 14:46,"29 Highland St, San Francisco, CA 94016" +320696,AAA Batteries (4-pack),5,2.99,12/30/19 09:46,"75 Forest St, New York City, NY 10001" +320696,iPhone,1,700,12/30/19 09:46,"75 Forest St, New York City, NY 10001" +320697,iPhone,1,700,12/12/19 14:40,"814 West St, San Francisco, CA 94016" +320698,Bose SoundSport Headphones,1,99.99,12/30/19 22:45,"333 Washington St, Boston, MA 02215" +,,,,, +320699,iPhone,1,700,12/21/19 19:49,"68 Church St, Boston, MA 02215" +320700,27in 4K Gaming Monitor,1,389.99,12/15/19 22:12,"351 11th St, San Francisco, CA 94016" +320701,27in FHD Monitor,1,149.99,12/17/19 20:12,"72 Sunset St, Los Angeles, CA 90001" +320702,Lightning Charging Cable,1,14.95,12/26/19 11:23,"375 Willow St, San Francisco, CA 94016" +320703,Lightning Charging Cable,1,14.95,12/05/19 16:40,"122 Meadow St, San Francisco, CA 94016" +320704,Apple Airpods Headphones,1,150,12/01/19 19:19,"149 Forest St, New York City, NY 10001" +320705,Lightning Charging Cable,1,14.95,12/24/19 22:32,"592 Park St, New York City, NY 10001" +320706,Flatscreen TV,1,300,12/26/19 19:48,"792 Main St, San Francisco, CA 94016" +320707,27in FHD Monitor,1,149.99,12/27/19 07:56,"249 Lincoln St, Austin, TX 73301" +320708,USB-C Charging Cable,1,11.95,12/20/19 18:15,"599 Adams St, San Francisco, CA 94016" +320709,Vareebadd Phone,1,400,12/17/19 14:51,"506 Lincoln St, New York City, NY 10001" +320710,ThinkPad Laptop,1,999.99,12/18/19 20:12,"108 13th St, New York City, NY 10001" +320711,Bose SoundSport Headphones,1,99.99,12/16/19 15:41,"301 West St, New York City, NY 10001" +320712,USB-C Charging Cable,1,11.95,12/07/19 21:35,"138 4th St, Los Angeles, CA 90001" +320713,AAA Batteries (4-pack),1,2.99,12/03/19 12:35,"496 Cherry St, Portland, ME 04101" +320714,AA Batteries (4-pack),1,3.84,12/24/19 23:13,"257 Maple St, San Francisco, CA 94016" +320715,Apple Airpods Headphones,1,150,12/28/19 23:34,"459 Forest St, Los Angeles, CA 90001" +320716,Apple Airpods Headphones,1,150,12/08/19 18:43,"114 Willow St, Atlanta, GA 30301" +320717,Bose SoundSport Headphones,1,99.99,12/26/19 12:21,"383 River St, Seattle, WA 98101" +320718,AA Batteries (4-pack),1,3.84,12/04/19 17:22,"229 Cherry St, Los Angeles, CA 90001" +320719,Vareebadd Phone,1,400,12/02/19 12:31,"318 North St, Austin, TX 73301" +320720,Lightning Charging Cable,1,14.95,12/02/19 19:03,"431 Church St, Los Angeles, CA 90001" +320721,USB-C Charging Cable,1,11.95,12/01/19 22:01,"65 10th St, Atlanta, GA 30301" +320722,Apple Airpods Headphones,1,150,12/06/19 18:10,"256 Johnson St, Dallas, TX 75001" +320723,Lightning Charging Cable,1,14.95,12/24/19 19:41,"734 Park St, Los Angeles, CA 90001" +320724,iPhone,1,700,12/08/19 22:43,"914 Johnson St, Boston, MA 02215" +320725,Lightning Charging Cable,1,14.95,12/26/19 08:55,"563 Hill St, San Francisco, CA 94016" +320726,Lightning Charging Cable,1,14.95,12/30/19 09:51,"217 Washington St, Seattle, WA 98101" +320727,Wired Headphones,1,11.99,12/17/19 21:07,"954 Elm St, Atlanta, GA 30301" +320728,27in FHD Monitor,1,149.99,12/10/19 11:39,"998 14th St, Los Angeles, CA 90001" +320729,Vareebadd Phone,1,400,12/01/19 22:43,"665 4th St, Los Angeles, CA 90001" +320730,20in Monitor,1,109.99,12/11/19 11:28,"961 North St, Dallas, TX 75001" +320731,USB-C Charging Cable,1,11.95,12/04/19 12:09,"553 13th St, Boston, MA 02215" +320732,Wired Headphones,1,11.99,12/15/19 22:23,"343 Cherry St, Boston, MA 02215" +320733,27in FHD Monitor,1,149.99,12/05/19 20:06,"577 Ridge St, Austin, TX 73301" +320734,Apple Airpods Headphones,1,150,12/01/19 08:38,"211 Lakeview St, New York City, NY 10001" +320734,AAA Batteries (4-pack),1,2.99,12/01/19 08:38,"211 Lakeview St, New York City, NY 10001" +320735,AA Batteries (4-pack),2,3.84,12/25/19 13:39,"351 River St, Austin, TX 73301" +320736,Lightning Charging Cable,1,14.95,12/29/19 23:38,"682 2nd St, Seattle, WA 98101" +320737,34in Ultrawide Monitor,1,379.99,12/05/19 21:00,"843 Willow St, Los Angeles, CA 90001" +320738,USB-C Charging Cable,1,11.95,12/26/19 11:38,"311 Lincoln St, Los Angeles, CA 90001" +320739,AA Batteries (4-pack),1,3.84,12/14/19 11:47,"344 Hill St, Atlanta, GA 30301" +320740,20in Monitor,1,109.99,12/13/19 16:18,"522 Dogwood St, Atlanta, GA 30301" +320741,Bose SoundSport Headphones,1,99.99,12/08/19 09:24,"937 Hickory St, Dallas, TX 75001" +320742,Apple Airpods Headphones,1,150,12/18/19 22:02,"784 Adams St, New York City, NY 10001" +320743,USB-C Charging Cable,1,11.95,12/05/19 12:10,"762 Maple St, Seattle, WA 98101" +320744,Lightning Charging Cable,2,14.95,12/28/19 23:06,"401 1st St, Atlanta, GA 30301" +320745,Apple Airpods Headphones,1,150,12/07/19 09:29,"437 14th St, Boston, MA 02215" +320746,20in Monitor,1,109.99,12/04/19 15:27,"231 Lakeview St, Dallas, TX 75001" +320747,Bose SoundSport Headphones,1,99.99,12/29/19 21:03,"187 Park St, Dallas, TX 75001" +320748,USB-C Charging Cable,1,11.95,12/25/19 18:17,"988 Pine St, San Francisco, CA 94016" +320749,Lightning Charging Cable,1,14.95,12/27/19 08:48,"463 8th St, Atlanta, GA 30301" +320750,Wired Headphones,1,11.99,12/04/19 13:20,"946 Johnson St, New York City, NY 10001" +320751,Bose SoundSport Headphones,1,99.99,12/08/19 11:57,"436 Lincoln St, Boston, MA 02215" +320752,20in Monitor,1,109.99,12/13/19 19:48,"672 Chestnut St, Boston, MA 02215" +320753,iPhone,1,700,12/21/19 14:01,"722 South St, Austin, TX 73301" +320754,27in FHD Monitor,1,149.99,12/18/19 21:47,"990 Forest St, Atlanta, GA 30301" +320755,AA Batteries (4-pack),2,3.84,12/31/19 16:37,"701 Meadow St, Dallas, TX 75001" +320756,AA Batteries (4-pack),1,3.84,12/12/19 10:17,"78 Walnut St, Portland, OR 97035" +320757,AA Batteries (4-pack),2,3.84,12/19/19 05:46,"381 Pine St, New York City, NY 10001" +320758,Wired Headphones,1,11.99,12/14/19 12:23,"819 Hill St, Seattle, WA 98101" +320758,Apple Airpods Headphones,1,150,12/14/19 12:23,"819 Hill St, Seattle, WA 98101" +320759,Wired Headphones,1,11.99,12/04/19 19:25,"274 Meadow St, Portland, OR 97035" +320760,USB-C Charging Cable,1,11.95,12/23/19 09:48,"881 Spruce St, San Francisco, CA 94016" +320761,Bose SoundSport Headphones,1,99.99,12/15/19 11:46,"417 Jackson St, Portland, OR 97035" +320762,Apple Airpods Headphones,1,150,12/22/19 19:22,"874 Madison St, Atlanta, GA 30301" +320763,AA Batteries (4-pack),1,3.84,01/01/20 00:36,"497 Church St, San Francisco, CA 94016" +320764,Macbook Pro Laptop,1,1700,12/31/19 22:29,"853 4th St, Seattle, WA 98101" +320765,Lightning Charging Cable,1,14.95,12/30/19 06:52,"668 1st St, Atlanta, GA 30301" +320766,Lightning Charging Cable,1,14.95,12/12/19 20:35,"112 Johnson St, San Francisco, CA 94016" +320767,Flatscreen TV,1,300,12/08/19 14:46,"825 Lake St, Los Angeles, CA 90001" +320768,Apple Airpods Headphones,1,150,12/27/19 09:14,"849 Pine St, San Francisco, CA 94016" +320769,Lightning Charging Cable,1,14.95,12/04/19 14:26,"485 Hickory St, San Francisco, CA 94016" +320770,Macbook Pro Laptop,1,1700,12/11/19 16:46,"433 Hickory St, San Francisco, CA 94016" +320771,AA Batteries (4-pack),2,3.84,12/25/19 13:33,"627 12th St, Los Angeles, CA 90001" +320772,USB-C Charging Cable,1,11.95,12/26/19 12:47,"412 Church St, New York City, NY 10001" +320773,Lightning Charging Cable,1,14.95,12/24/19 13:07,"22 Park St, San Francisco, CA 94016" +320774,AAA Batteries (4-pack),1,2.99,12/30/19 13:03,"199 Hickory St, San Francisco, CA 94016" +320775,Macbook Pro Laptop,1,1700,12/21/19 17:52,"298 9th St, Dallas, TX 75001" +320776,AAA Batteries (4-pack),1,2.99,12/21/19 14:28,"378 Hill St, New York City, NY 10001" +320777,Wired Headphones,1,11.99,12/01/19 19:47,"608 Highland St, Los Angeles, CA 90001" +320778,iPhone,1,700,12/09/19 21:11,"801 13th St, Seattle, WA 98101" +320779,Bose SoundSport Headphones,1,99.99,12/24/19 11:02,"454 6th St, New York City, NY 10001" +320780,USB-C Charging Cable,1,11.95,12/21/19 12:35,"291 Main St, San Francisco, CA 94016" +320781,27in 4K Gaming Monitor,1,389.99,12/24/19 12:11,"282 Forest St, Atlanta, GA 30301" +320782,27in 4K Gaming Monitor,1,389.99,12/02/19 17:42,"15 Washington St, Los Angeles, CA 90001" +320783,iPhone,1,700,12/26/19 21:04,"471 Main St, Boston, MA 02215" +320784,USB-C Charging Cable,1,11.95,12/29/19 18:09,"366 12th St, San Francisco, CA 94016" +320785,27in FHD Monitor,1,149.99,12/10/19 17:47,"547 Chestnut St, Portland, OR 97035" +320786,34in Ultrawide Monitor,1,379.99,12/18/19 11:55,"468 Ridge St, Dallas, TX 75001" +320787,AAA Batteries (4-pack),1,2.99,12/18/19 12:08,"972 South St, Atlanta, GA 30301" +320788,AAA Batteries (4-pack),2,2.99,12/16/19 23:40,"247 10th St, Austin, TX 73301" +320789,AA Batteries (4-pack),1,3.84,12/08/19 17:27,"815 4th St, Dallas, TX 75001" +320790,Macbook Pro Laptop,1,1700,12/01/19 17:43,"244 Forest St, San Francisco, CA 94016" +320791,AAA Batteries (4-pack),1,2.99,12/22/19 23:53,"805 Walnut St, Los Angeles, CA 90001" +320792,USB-C Charging Cable,1,11.95,12/18/19 23:21,"484 Washington St, Atlanta, GA 30301" +320793,Lightning Charging Cable,1,14.95,12/18/19 08:47,"357 Willow St, New York City, NY 10001" +320794,Wired Headphones,1,11.99,12/24/19 17:25,"76 Jefferson St, San Francisco, CA 94016" +320795,20in Monitor,1,109.99,12/27/19 19:35,"390 Sunset St, San Francisco, CA 94016" +320796,USB-C Charging Cable,1,11.95,12/18/19 08:31,"987 Lakeview St, San Francisco, CA 94016" +320797,AAA Batteries (4-pack),3,2.99,12/28/19 17:48,"180 Hill St, Austin, TX 73301" +320798,AA Batteries (4-pack),2,3.84,12/06/19 15:15,"446 Elm St, Los Angeles, CA 90001" +320798,27in FHD Monitor,1,149.99,12/06/19 15:15,"446 Elm St, Los Angeles, CA 90001" +320799,AAA Batteries (4-pack),1,2.99,12/31/19 18:13,"994 Chestnut St, Atlanta, GA 30301" +320800,Wired Headphones,1,11.99,12/03/19 15:24,"398 7th St, San Francisco, CA 94016" +320801,27in FHD Monitor,1,149.99,12/15/19 19:16,"160 Maple St, Boston, MA 02215" +320802,Bose SoundSport Headphones,1,99.99,12/11/19 16:11,"910 Hill St, Dallas, TX 75001" +320803,Vareebadd Phone,1,400,12/18/19 22:32,"497 Lakeview St, Boston, MA 02215" +320804,USB-C Charging Cable,1,11.95,12/23/19 22:15,"380 12th St, San Francisco, CA 94016" +320805,AAA Batteries (4-pack),1,2.99,12/07/19 19:30,"472 9th St, Dallas, TX 75001" +320806,AA Batteries (4-pack),1,3.84,12/20/19 09:22,"645 Hickory St, San Francisco, CA 94016" +320807,Lightning Charging Cable,1,14.95,12/01/19 13:28,"53 10th St, Los Angeles, CA 90001" +320808,AAA Batteries (4-pack),1,2.99,12/11/19 18:54,"57 Center St, New York City, NY 10001" +320809,Lightning Charging Cable,1,14.95,12/01/19 08:11,"751 5th St, New York City, NY 10001" +320810,Lightning Charging Cable,1,14.95,12/19/19 13:30,"975 Church St, Austin, TX 73301" +320811,20in Monitor,1,109.99,12/03/19 22:32,"807 Meadow St, Los Angeles, CA 90001" +320812,Bose SoundSport Headphones,1,99.99,12/15/19 07:05,"580 Park St, Seattle, WA 98101" +320813,ThinkPad Laptop,1,999.99,12/15/19 18:22,"941 10th St, San Francisco, CA 94016" +320814,34in Ultrawide Monitor,1,379.99,12/27/19 19:44,"75 Meadow St, New York City, NY 10001" +320815,Macbook Pro Laptop,1,1700,12/01/19 13:37,"735 Spruce St, Boston, MA 02215" +320816,Macbook Pro Laptop,1,1700,12/08/19 19:22,"929 1st St, Boston, MA 02215" +320817,27in FHD Monitor,1,149.99,12/02/19 10:10,"851 2nd St, San Francisco, CA 94016" +320818,Wired Headphones,1,11.99,12/19/19 18:58,"102 Ridge St, Portland, OR 97035" +320818,iPhone,1,700,12/19/19 18:58,"102 Ridge St, Portland, OR 97035" +320819,Lightning Charging Cable,1,14.95,12/26/19 16:22,"421 Washington St, San Francisco, CA 94016" +320820,AA Batteries (4-pack),1,3.84,12/04/19 23:44,"592 1st St, San Francisco, CA 94016" +320821,AAA Batteries (4-pack),1,2.99,12/14/19 11:11,"152 Lake St, New York City, NY 10001" +320822,AAA Batteries (4-pack),1,2.99,12/24/19 09:11,"881 Spruce St, Los Angeles, CA 90001" +320823,Flatscreen TV,1,300,12/19/19 10:46,"185 Cedar St, New York City, NY 10001" +320824,27in FHD Monitor,1,149.99,12/12/19 22:50,"870 South St, New York City, NY 10001" +320825,Lightning Charging Cable,1,14.95,12/24/19 21:42,"451 Hill St, Los Angeles, CA 90001" +320826,Google Phone,1,600,12/21/19 21:55,"819 9th St, Seattle, WA 98101" +320826,USB-C Charging Cable,1,11.95,12/21/19 21:55,"819 9th St, Seattle, WA 98101" +320827,Bose SoundSport Headphones,1,99.99,12/30/19 18:30,"482 14th St, Seattle, WA 98101" +320828,Apple Airpods Headphones,1,150,12/17/19 08:36,"501 2nd St, San Francisco, CA 94016" +320829,Lightning Charging Cable,2,14.95,12/19/19 14:10,"241 Jefferson St, New York City, NY 10001" +320830,Bose SoundSport Headphones,1,99.99,12/09/19 06:15,"659 Cherry St, Boston, MA 02215" +320831,Apple Airpods Headphones,1,150,12/10/19 18:39,"552 13th St, New York City, NY 10001" +320832,USB-C Charging Cable,1,11.95,12/29/19 17:15,"241 12th St, New York City, NY 10001" +320833,AAA Batteries (4-pack),1,2.99,12/22/19 19:54,"721 Spruce St, Atlanta, GA 30301" +320834,34in Ultrawide Monitor,1,379.99,12/05/19 10:09,"829 12th St, San Francisco, CA 94016" +320835,USB-C Charging Cable,1,11.95,12/27/19 14:45,"51 Church St, San Francisco, CA 94016" +320836,Wired Headphones,1,11.99,12/28/19 06:24,"467 Hickory St, Atlanta, GA 30301" +320837,USB-C Charging Cable,1,11.95,12/15/19 14:04,"307 Forest St, San Francisco, CA 94016" +320838,Bose SoundSport Headphones,1,99.99,12/02/19 18:44,"380 Madison St, Boston, MA 02215" +320839,Apple Airpods Headphones,1,150,12/28/19 14:20,"492 Spruce St, Boston, MA 02215" +320840,Google Phone,1,600,12/26/19 22:23,"564 Walnut St, Boston, MA 02215" +320841,Bose SoundSport Headphones,1,99.99,12/31/19 21:32,"266 10th St, Seattle, WA 98101" +320842,Flatscreen TV,1,300,12/26/19 09:23,"891 Ridge St, San Francisco, CA 94016" +320843,Lightning Charging Cable,1,14.95,12/21/19 10:40,"748 4th St, Los Angeles, CA 90001" +320844,20in Monitor,1,109.99,12/31/19 19:36,"615 Hill St, Los Angeles, CA 90001" +320845,Macbook Pro Laptop,1,1700,12/04/19 16:23,"245 12th St, Los Angeles, CA 90001" +320846,27in 4K Gaming Monitor,1,389.99,12/02/19 12:40,"794 6th St, Boston, MA 02215" +320847,AAA Batteries (4-pack),3,2.99,12/16/19 12:11,"637 Willow St, New York City, NY 10001" +320848,USB-C Charging Cable,1,11.95,12/28/19 21:53,"351 Jackson St, San Francisco, CA 94016" +320849,Wired Headphones,2,11.99,12/18/19 18:34,"830 Jefferson St, Los Angeles, CA 90001" +320850,AA Batteries (4-pack),1,3.84,12/10/19 21:42,"428 Lincoln St, San Francisco, CA 94016" +320851,USB-C Charging Cable,1,11.95,12/23/19 12:46,"603 Meadow St, Portland, OR 97035" +320852,USB-C Charging Cable,1,11.95,12/06/19 11:18,"735 Elm St, Los Angeles, CA 90001" +320853,34in Ultrawide Monitor,1,379.99,12/14/19 16:51,"319 Sunset St, San Francisco, CA 94016" +320854,27in FHD Monitor,1,149.99,12/14/19 16:07,"511 Adams St, Boston, MA 02215" +320854,Bose SoundSport Headphones,1,99.99,12/14/19 16:07,"511 Adams St, Boston, MA 02215" +320855,AA Batteries (4-pack),1,3.84,12/19/19 13:34,"314 1st St, Los Angeles, CA 90001" +320856,Apple Airpods Headphones,1,150,12/15/19 16:44,"86 Jefferson St, New York City, NY 10001" +320857,AA Batteries (4-pack),1,3.84,12/22/19 13:12,"996 Madison St, San Francisco, CA 94016" +320858,USB-C Charging Cable,1,11.95,12/11/19 18:13,"76 4th St, Portland, OR 97035" +320859,27in 4K Gaming Monitor,1,389.99,12/01/19 09:08,"794 Lakeview St, Boston, MA 02215" +320860,AAA Batteries (4-pack),1,2.99,12/18/19 21:46,"810 14th St, Boston, MA 02215" +320861,Lightning Charging Cable,1,14.95,12/26/19 17:51,"208 Jackson St, New York City, NY 10001" +320862,USB-C Charging Cable,1,11.95,12/10/19 21:15,"746 Johnson St, New York City, NY 10001" +320863,LG Dryer,1,600.0,12/22/19 21:31,"438 9th St, Seattle, WA 98101" +320864,Vareebadd Phone,1,400,12/13/19 12:34,"822 Spruce St, Boston, MA 02215" +320864,USB-C Charging Cable,1,11.95,12/13/19 12:34,"822 Spruce St, Boston, MA 02215" +320864,27in 4K Gaming Monitor,1,389.99,12/13/19 12:34,"822 Spruce St, Boston, MA 02215" +320865,27in 4K Gaming Monitor,1,389.99,12/03/19 22:28,"315 14th St, New York City, NY 10001" +320866,Lightning Charging Cable,1,14.95,12/09/19 09:22,"381 River St, Austin, TX 73301" +320867,iPhone,1,700,12/31/19 09:44,"650 River St, New York City, NY 10001" +320867,Lightning Charging Cable,1,14.95,12/31/19 09:44,"650 River St, New York City, NY 10001" +320868,Wired Headphones,1,11.99,12/14/19 14:55,"901 8th St, San Francisco, CA 94016" +320869,USB-C Charging Cable,1,11.95,12/19/19 09:27,"645 Church St, Los Angeles, CA 90001" +320870,Wired Headphones,1,11.99,12/16/19 23:44,"520 6th St, Los Angeles, CA 90001" +320871,Wired Headphones,1,11.99,12/19/19 15:37,"622 8th St, New York City, NY 10001" +320872,Lightning Charging Cable,1,14.95,12/13/19 12:01,"585 1st St, Boston, MA 02215" +320872,AA Batteries (4-pack),1,3.84,12/13/19 12:01,"585 1st St, Boston, MA 02215" +320873,AAA Batteries (4-pack),1,2.99,12/04/19 10:47,"490 Pine St, Boston, MA 02215" +320874,AA Batteries (4-pack),2,3.84,12/11/19 16:50,"813 West St, Portland, OR 97035" +320875,Bose SoundSport Headphones,1,99.99,12/01/19 22:00,"50 Pine St, Austin, TX 73301" +320876,USB-C Charging Cable,1,11.95,12/27/19 19:10,"473 Walnut St, San Francisco, CA 94016" +320877,USB-C Charging Cable,1,11.95,12/21/19 17:10,"96 Elm St, Los Angeles, CA 90001" +320878,Google Phone,1,600,12/26/19 18:58,"41 Church St, San Francisco, CA 94016" +320879,Lightning Charging Cable,1,14.95,12/14/19 22:04,"732 Ridge St, Los Angeles, CA 90001" +320880,Macbook Pro Laptop,1,1700,12/20/19 22:25,"986 Hickory St, Los Angeles, CA 90001" +320881,Wired Headphones,1,11.99,12/26/19 16:33,"149 Highland St, Seattle, WA 98101" +320882,34in Ultrawide Monitor,1,379.99,12/04/19 18:21,"174 Main St, Seattle, WA 98101" +320883,AAA Batteries (4-pack),1,2.99,12/09/19 23:49,"990 Elm St, Atlanta, GA 30301" +320884,Wired Headphones,1,11.99,12/28/19 12:35,"568 9th St, San Francisco, CA 94016" +320885,Bose SoundSport Headphones,1,99.99,12/04/19 20:38,"760 Lakeview St, San Francisco, CA 94016" +320886,AAA Batteries (4-pack),2,2.99,12/30/19 14:53,"310 14th St, Los Angeles, CA 90001" +320887,Lightning Charging Cable,1,14.95,12/07/19 20:49,"892 Center St, Austin, TX 73301" +320888,Google Phone,1,600,12/22/19 13:28,"496 14th St, San Francisco, CA 94016" +320889,Wired Headphones,1,11.99,12/07/19 00:18,"686 9th St, Boston, MA 02215" +320890,Lightning Charging Cable,1,14.95,12/18/19 19:00,"241 Hill St, Seattle, WA 98101" +320891,Bose SoundSport Headphones,1,99.99,12/08/19 16:05,"984 9th St, Los Angeles, CA 90001" +320892,ThinkPad Laptop,1,999.99,12/07/19 09:38,"974 10th St, Los Angeles, CA 90001" +320893,Macbook Pro Laptop,1,1700,12/13/19 20:25,"587 Madison St, Boston, MA 02215" +320894,AAA Batteries (4-pack),1,2.99,12/14/19 15:41,"994 Center St, Austin, TX 73301" +320895,20in Monitor,1,109.99,12/03/19 11:40,"35 Meadow St, San Francisco, CA 94016" +320896,iPhone,1,700,12/06/19 11:04,"859 5th St, Boston, MA 02215" +320897,Wired Headphones,1,11.99,12/31/19 22:48,"646 11th St, Boston, MA 02215" +320898,20in Monitor,1,109.99,12/10/19 12:41,"839 Lake St, Portland, OR 97035" +320899,iPhone,1,700,12/07/19 06:07,"637 13th St, Portland, ME 04101" +320899,Lightning Charging Cable,1,14.95,12/07/19 06:07,"637 13th St, Portland, ME 04101" +320900,iPhone,1,700,12/02/19 08:05,"969 Pine St, Dallas, TX 75001" +320901,Google Phone,1,600,12/28/19 14:38,"581 Ridge St, Seattle, WA 98101" +320902,Apple Airpods Headphones,1,150,12/11/19 16:03,"788 Church St, Seattle, WA 98101" +320903,Flatscreen TV,1,300,12/23/19 21:50,"297 West St, San Francisco, CA 94016" +320904,Apple Airpods Headphones,1,150,12/20/19 18:41,"571 Chestnut St, Portland, OR 97035" +320904,Wired Headphones,1,11.99,12/20/19 18:41,"571 Chestnut St, Portland, OR 97035" +320905,AAA Batteries (4-pack),2,2.99,12/30/19 17:09,"314 Adams St, Los Angeles, CA 90001" +320906,Bose SoundSport Headphones,1,99.99,12/27/19 10:09,"808 Lake St, Dallas, TX 75001" +320907,iPhone,1,700,12/07/19 12:01,"402 Hickory St, Seattle, WA 98101" +320907,Lightning Charging Cable,1,14.95,12/07/19 12:01,"402 Hickory St, Seattle, WA 98101" +320907,Apple Airpods Headphones,1,150,12/07/19 12:01,"402 Hickory St, Seattle, WA 98101" +320908,Apple Airpods Headphones,1,150,12/26/19 23:10,"711 Center St, Seattle, WA 98101" +320909,AA Batteries (4-pack),2,3.84,12/19/19 23:08,"95 6th St, Portland, OR 97035" +320910,USB-C Charging Cable,1,11.95,12/17/19 21:28,"357 Wilson St, San Francisco, CA 94016" +320911,AA Batteries (4-pack),1,3.84,12/17/19 19:58,"425 12th St, San Francisco, CA 94016" +320912,Lightning Charging Cable,1,14.95,12/23/19 09:50,"786 South St, Dallas, TX 75001" +320913,AA Batteries (4-pack),1,3.84,12/22/19 14:04,"171 13th St, San Francisco, CA 94016" +320914,Apple Airpods Headphones,1,150,12/02/19 14:22,"316 Madison St, San Francisco, CA 94016" +320915,Apple Airpods Headphones,1,150,12/09/19 14:27,"460 Church St, Boston, MA 02215" +320916,AA Batteries (4-pack),1,3.84,12/26/19 18:03,"865 Cedar St, New York City, NY 10001" +320917,AAA Batteries (4-pack),3,2.99,12/30/19 14:32,"786 Pine St, Seattle, WA 98101" +320918,AA Batteries (4-pack),1,3.84,12/23/19 17:44,"144 7th St, Los Angeles, CA 90001" +320919,Bose SoundSport Headphones,1,99.99,12/08/19 21:29,"121 6th St, San Francisco, CA 94016" +320920,20in Monitor,1,109.99,12/29/19 11:55,"460 5th St, Los Angeles, CA 90001" +320921,AAA Batteries (4-pack),3,2.99,12/31/19 14:37,"823 9th St, Los Angeles, CA 90001" +320922,Wired Headphones,1,11.99,12/02/19 21:17,"976 13th St, San Francisco, CA 94016" +320923,USB-C Charging Cable,1,11.95,12/10/19 01:14,"64 Walnut St, Seattle, WA 98101" +320924,AA Batteries (4-pack),1,3.84,12/09/19 18:38,"117 4th St, Los Angeles, CA 90001" +320925,Wired Headphones,1,11.99,12/31/19 18:18,"14 14th St, Seattle, WA 98101" +320926,ThinkPad Laptop,1,999.99,12/26/19 09:17,"883 North St, San Francisco, CA 94016" +320927,Wired Headphones,2,11.99,12/29/19 13:59,"150 Main St, Portland, OR 97035" +320928,Wired Headphones,1,11.99,12/23/19 10:05,"874 8th St, San Francisco, CA 94016" +320929,AA Batteries (4-pack),1,3.84,12/08/19 13:27,"857 Hickory St, Portland, OR 97035" +320930,Apple Airpods Headphones,1,150,12/29/19 21:10,"886 Park St, Boston, MA 02215" +320931,Flatscreen TV,1,300,12/13/19 10:44,"469 South St, Portland, OR 97035" +320932,Apple Airpods Headphones,1,150,12/16/19 14:25,"133 9th St, Boston, MA 02215" +320933,Wired Headphones,2,11.99,12/25/19 12:37,"785 Sunset St, New York City, NY 10001" +320934,USB-C Charging Cable,1,11.95,12/26/19 18:52,"162 Jackson St, San Francisco, CA 94016" +320935,AA Batteries (4-pack),1,3.84,12/28/19 18:14,"696 Lake St, San Francisco, CA 94016" +320936,AA Batteries (4-pack),1,3.84,12/27/19 13:39,"462 Chestnut St, Los Angeles, CA 90001" +320937,Bose SoundSport Headphones,1,99.99,12/10/19 21:36,"807 14th St, San Francisco, CA 94016" +320938,Wired Headphones,1,11.99,12/25/19 20:09,"105 13th St, Dallas, TX 75001" +320939,Apple Airpods Headphones,1,150,12/04/19 14:54,"102 Madison St, Seattle, WA 98101" +320940,Lightning Charging Cable,1,14.95,12/24/19 21:39,"935 Adams St, Boston, MA 02215" +320941,Lightning Charging Cable,1,14.95,12/19/19 15:04,"152 13th St, Austin, TX 73301" +320942,AAA Batteries (4-pack),1,2.99,12/07/19 10:45,"159 Highland St, Los Angeles, CA 90001" +320943,Lightning Charging Cable,1,14.95,12/17/19 12:27,"503 11th St, San Francisco, CA 94016" +320944,20in Monitor,1,109.99,12/13/19 07:12,"422 Maple St, Seattle, WA 98101" +320945,Macbook Pro Laptop,1,1700,12/24/19 18:01,"234 4th St, San Francisco, CA 94016" +320946,Lightning Charging Cable,1,14.95,12/24/19 18:46,"480 River St, Seattle, WA 98101" +320947,iPhone,1,700,12/22/19 18:30,"232 Lakeview St, Dallas, TX 75001" +320947,Lightning Charging Cable,1,14.95,12/22/19 18:30,"232 Lakeview St, Dallas, TX 75001" +320948,AAA Batteries (4-pack),2,2.99,12/26/19 16:18,"546 Spruce St, Seattle, WA 98101" +320948,AA Batteries (4-pack),1,3.84,12/26/19 16:18,"546 Spruce St, Seattle, WA 98101" +320949,Bose SoundSport Headphones,1,99.99,12/25/19 18:15,"839 Sunset St, San Francisco, CA 94016" +320950,ThinkPad Laptop,1,999.99,12/08/19 12:11,"891 Forest St, Boston, MA 02215" +320951,AAA Batteries (4-pack),1,2.99,12/24/19 16:36,"693 Maple St, San Francisco, CA 94016" +320952,AA Batteries (4-pack),1,3.84,12/16/19 12:44,"67 Forest St, Seattle, WA 98101" +320953,AA Batteries (4-pack),1,3.84,12/07/19 23:18,"836 Ridge St, New York City, NY 10001" +320954,USB-C Charging Cable,2,11.95,12/31/19 18:43,"710 9th St, San Francisco, CA 94016" +320955,20in Monitor,1,109.99,12/28/19 13:00,"510 Jefferson St, Portland, ME 04101" +320956,USB-C Charging Cable,1,11.95,12/18/19 23:44,"992 Lake St, Boston, MA 02215" +320957,Lightning Charging Cable,1,14.95,12/31/19 18:15,"387 Sunset St, San Francisco, CA 94016" +320958,USB-C Charging Cable,1,11.95,12/26/19 07:31,"829 Lakeview St, San Francisco, CA 94016" +320959,27in 4K Gaming Monitor,1,389.99,12/18/19 13:06,"367 Wilson St, San Francisco, CA 94016" +320960,AA Batteries (4-pack),1,3.84,12/18/19 12:50,"107 Lakeview St, Boston, MA 02215" +320961,ThinkPad Laptop,1,999.99,12/02/19 19:53,"270 Wilson St, San Francisco, CA 94016" +320962,AAA Batteries (4-pack),1,2.99,12/03/19 11:32,"483 Madison St, Atlanta, GA 30301" +320963,Bose SoundSport Headphones,1,99.99,12/20/19 15:29,"645 Church St, Seattle, WA 98101" +320964,USB-C Charging Cable,1,11.95,12/03/19 12:32,"127 Washington St, Boston, MA 02215" +320965,20in Monitor,1,109.99,12/16/19 20:32,"739 West St, Boston, MA 02215" +320966,Macbook Pro Laptop,1,1700,12/17/19 19:24,"127 Wilson St, Dallas, TX 75001" +320967,Apple Airpods Headphones,1,150,12/19/19 21:40,"484 1st St, New York City, NY 10001" +320968,ThinkPad Laptop,1,999.99,12/27/19 18:02,"578 Jefferson St, San Francisco, CA 94016" +320969,27in 4K Gaming Monitor,1,389.99,12/24/19 23:09,"479 8th St, New York City, NY 10001" +320970,USB-C Charging Cable,1,11.95,12/02/19 13:25,"552 Jefferson St, New York City, NY 10001" +320971,27in FHD Monitor,1,149.99,12/17/19 10:55,"99 Maple St, Portland, OR 97035" +320972,Bose SoundSport Headphones,1,99.99,12/13/19 12:21,"898 Adams St, Los Angeles, CA 90001" +320973,34in Ultrawide Monitor,1,379.99,12/21/19 15:35,"475 9th St, Boston, MA 02215" +320974,AA Batteries (4-pack),1,3.84,12/24/19 12:37,"440 Jefferson St, Los Angeles, CA 90001" +320975,AAA Batteries (4-pack),1,2.99,12/17/19 12:12,"449 Ridge St, Seattle, WA 98101" +320976,Vareebadd Phone,1,400,12/11/19 21:06,"525 Park St, Los Angeles, CA 90001" +320977,ThinkPad Laptop,1,999.99,12/24/19 07:17,"660 Hickory St, San Francisco, CA 94016" +320978,Apple Airpods Headphones,1,150,12/09/19 17:11,"494 South St, Atlanta, GA 30301" +320979,Bose SoundSport Headphones,1,99.99,12/05/19 21:57,"379 Chestnut St, Austin, TX 73301" +320980,iPhone,1,700,12/03/19 13:30,"723 4th St, New York City, NY 10001" +320980,Lightning Charging Cable,1,14.95,12/03/19 13:30,"723 4th St, New York City, NY 10001" +320981,Apple Airpods Headphones,1,150,12/06/19 13:46,"64 Walnut St, San Francisco, CA 94016" +320982,20in Monitor,1,109.99,12/11/19 19:06,"293 1st St, Dallas, TX 75001" +320983,Wired Headphones,1,11.99,12/19/19 18:22,"12 Wilson St, Los Angeles, CA 90001" +320984,Flatscreen TV,1,300,12/30/19 12:53,"165 Hickory St, Boston, MA 02215" +320985,Bose SoundSport Headphones,1,99.99,12/27/19 22:23,"307 South St, New York City, NY 10001" +320986,Apple Airpods Headphones,1,150,12/21/19 14:38,"333 Cedar St, Boston, MA 02215" +320987,AAA Batteries (4-pack),1,2.99,12/28/19 17:24,"402 North St, San Francisco, CA 94016" +320988,AA Batteries (4-pack),2,3.84,12/28/19 22:57,"777 6th St, Boston, MA 02215" +320989,AAA Batteries (4-pack),2,2.99,12/25/19 15:55,"742 Maple St, Boston, MA 02215" +320990,Lightning Charging Cable,1,14.95,12/13/19 23:16,"56 West St, Atlanta, GA 30301" +320991,Lightning Charging Cable,1,14.95,12/06/19 13:35,"625 Jefferson St, Boston, MA 02215" +320992,AAA Batteries (4-pack),1,2.99,12/08/19 16:49,"742 Maple St, New York City, NY 10001" +320993,USB-C Charging Cable,1,11.95,12/14/19 23:03,"260 Lakeview St, San Francisco, CA 94016" +320994,Apple Airpods Headphones,1,150,12/19/19 16:58,"256 9th St, Atlanta, GA 30301" +320995,Apple Airpods Headphones,1,150,12/16/19 03:32,"21 Main St, San Francisco, CA 94016" +320996,20in Monitor,1,109.99,12/02/19 12:52,"282 14th St, Seattle, WA 98101" +320997,USB-C Charging Cable,1,11.95,12/14/19 18:34,"375 Elm St, San Francisco, CA 94016" +320998,Lightning Charging Cable,1,14.95,12/27/19 08:26,"339 7th St, Atlanta, GA 30301" +320999,AAA Batteries (4-pack),1,2.99,12/14/19 01:02,"467 Walnut St, Los Angeles, CA 90001" +321000,AA Batteries (4-pack),1,3.84,12/04/19 10:21,"408 Cedar St, New York City, NY 10001" +321001,Apple Airpods Headphones,1,150,12/09/19 09:20,"576 12th St, New York City, NY 10001" +321002,Macbook Pro Laptop,1,1700,12/30/19 19:37,"40 Ridge St, San Francisco, CA 94016" +321003,34in Ultrawide Monitor,1,379.99,12/29/19 00:02,"586 8th St, Los Angeles, CA 90001" +321004,Lightning Charging Cable,1,14.95,12/15/19 11:00,"645 10th St, San Francisco, CA 94016" +321005,Lightning Charging Cable,1,14.95,12/15/19 22:39,"350 Lake St, Los Angeles, CA 90001" +321006,Flatscreen TV,1,300,12/09/19 16:52,"417 Lakeview St, San Francisco, CA 94016" +321007,AA Batteries (4-pack),1,3.84,12/20/19 16:17,"518 Jefferson St, Boston, MA 02215" +321008,Apple Airpods Headphones,1,150,12/06/19 11:10,"944 2nd St, San Francisco, CA 94016" +321009,Flatscreen TV,1,300,12/07/19 21:20,"390 Forest St, Boston, MA 02215" +321010,Wired Headphones,2,11.99,12/28/19 19:03,"822 Center St, Los Angeles, CA 90001" +321011,AA Batteries (4-pack),2,3.84,12/13/19 15:57,"284 Ridge St, Portland, OR 97035" +321012,Wired Headphones,1,11.99,12/25/19 09:50,"244 Dogwood St, Atlanta, GA 30301" +321013,iPhone,1,700,12/14/19 08:43,"384 Chestnut St, San Francisco, CA 94016" +321014,27in 4K Gaming Monitor,1,389.99,12/04/19 23:02,"368 Johnson St, San Francisco, CA 94016" +321015,AAA Batteries (4-pack),1,2.99,12/28/19 22:51,"450 Sunset St, Seattle, WA 98101" +321016,AA Batteries (4-pack),1,3.84,12/31/19 16:06,"542 Chestnut St, Los Angeles, CA 90001" +321017,AAA Batteries (4-pack),3,2.99,12/20/19 09:47,"756 11th St, San Francisco, CA 94016" +321018,Wired Headphones,1,11.99,12/28/19 15:25,"934 Dogwood St, San Francisco, CA 94016" +321019,Wired Headphones,3,11.99,12/04/19 21:33,"91 Elm St, New York City, NY 10001" +321020,27in FHD Monitor,1,149.99,12/27/19 15:34,"587 6th St, Austin, TX 73301" +321021,USB-C Charging Cable,1,11.95,12/06/19 13:43,"460 Madison St, Austin, TX 73301" +321022,Wired Headphones,1,11.99,12/19/19 22:21,"788 Lakeview St, Los Angeles, CA 90001" +321023,ThinkPad Laptop,1,999.99,12/16/19 15:22,"82 Elm St, Portland, OR 97035" +321024,iPhone,1,700,12/21/19 19:53,"55 6th St, New York City, NY 10001" +321025,USB-C Charging Cable,1,11.95,12/25/19 21:35,"471 Chestnut St, Los Angeles, CA 90001" +321026,27in 4K Gaming Monitor,1,389.99,12/14/19 15:49,"168 10th St, Dallas, TX 75001" +321027,ThinkPad Laptop,1,999.99,12/25/19 09:41,"104 Forest St, Los Angeles, CA 90001" +321028,Apple Airpods Headphones,1,150,12/07/19 12:21,"925 6th St, Austin, TX 73301" +321029,Apple Airpods Headphones,1,150,12/08/19 23:29,"747 Lakeview St, San Francisco, CA 94016" +321030,27in 4K Gaming Monitor,1,389.99,12/04/19 10:25,"479 Dogwood St, Los Angeles, CA 90001" +321031,AA Batteries (4-pack),1,3.84,12/17/19 15:10,"924 Dogwood St, Dallas, TX 75001" +321032,Wired Headphones,1,11.99,12/08/19 20:49,"343 Park St, Boston, MA 02215" +321033,27in FHD Monitor,1,149.99,12/26/19 12:25,"563 Cherry St, Los Angeles, CA 90001" +321034,Apple Airpods Headphones,1,150,12/07/19 10:48,"852 Adams St, Atlanta, GA 30301" +321035,iPhone,1,700,12/09/19 11:11,"662 Madison St, Portland, ME 04101" +321036,20in Monitor,1,109.99,12/01/19 09:08,"231 Wilson St, Austin, TX 73301" +321037,ThinkPad Laptop,1,999.99,12/31/19 11:57,"242 1st St, New York City, NY 10001" +321038,USB-C Charging Cable,1,11.95,12/02/19 11:36,"206 Dogwood St, Austin, TX 73301" +321039,Lightning Charging Cable,1,14.95,12/04/19 10:58,"895 Johnson St, New York City, NY 10001" +321040,USB-C Charging Cable,2,11.95,12/16/19 18:19,"112 Park St, Boston, MA 02215" +321041,Vareebadd Phone,1,400,12/24/19 07:10,"273 Sunset St, San Francisco, CA 94016" +321041,USB-C Charging Cable,1,11.95,12/24/19 07:10,"273 Sunset St, San Francisco, CA 94016" +321042,Bose SoundSport Headphones,1,99.99,12/29/19 19:24,"918 Church St, Dallas, TX 75001" +321043,Macbook Pro Laptop,1,1700,12/01/19 20:01,"768 6th St, Portland, OR 97035" +321044,AA Batteries (4-pack),1,3.84,12/16/19 00:03,"184 North St, Austin, TX 73301" +321045,AAA Batteries (4-pack),1,2.99,12/29/19 14:49,"139 Center St, Los Angeles, CA 90001" +321046,Apple Airpods Headphones,1,150,12/08/19 21:54,"293 Main St, Portland, OR 97035" +321046,Macbook Pro Laptop,1,1700,12/08/19 21:54,"293 Main St, Portland, OR 97035" +321047,ThinkPad Laptop,1,999.99,12/24/19 15:09,"890 2nd St, San Francisco, CA 94016" +321048,Macbook Pro Laptop,1,1700,12/18/19 06:19,"350 South St, Los Angeles, CA 90001" +321049,Lightning Charging Cable,1,14.95,12/19/19 12:50,"969 Spruce St, San Francisco, CA 94016" +321050,USB-C Charging Cable,1,11.95,12/10/19 16:38,"140 River St, Atlanta, GA 30301" +321051,Lightning Charging Cable,1,14.95,12/05/19 10:17,"266 Chestnut St, Boston, MA 02215" +321052,34in Ultrawide Monitor,1,379.99,12/26/19 13:47,"643 Wilson St, Los Angeles, CA 90001" +321053,USB-C Charging Cable,1,11.95,12/15/19 06:08,"148 13th St, Seattle, WA 98101" +321054,27in FHD Monitor,1,149.99,12/23/19 18:10,"893 Highland St, New York City, NY 10001" +321055,34in Ultrawide Monitor,1,379.99,12/03/19 13:39,"389 11th St, Atlanta, GA 30301" +321056,Bose SoundSport Headphones,1,99.99,12/27/19 23:40,"366 Lakeview St, Los Angeles, CA 90001" +321057,Lightning Charging Cable,1,14.95,12/14/19 16:18,"778 Jefferson St, Boston, MA 02215" +321058,USB-C Charging Cable,1,11.95,12/26/19 16:30,"871 Spruce St, New York City, NY 10001" +321059,27in FHD Monitor,1,149.99,12/18/19 13:30,"536 Sunset St, Boston, MA 02215" +321060,USB-C Charging Cable,1,11.95,12/10/19 12:27,"609 Church St, Los Angeles, CA 90001" +321061,AAA Batteries (4-pack),1,2.99,12/15/19 00:08,"17 Walnut St, San Francisco, CA 94016" +321062,Bose SoundSport Headphones,1,99.99,12/02/19 01:48,"830 14th St, Seattle, WA 98101" +321063,Wired Headphones,2,11.99,12/31/19 20:26,"971 2nd St, Dallas, TX 75001" +321064,34in Ultrawide Monitor,1,379.99,12/08/19 16:21,"141 11th St, Los Angeles, CA 90001" +321065,iPhone,1,700,12/13/19 19:04,"72 Highland St, Seattle, WA 98101" +321066,Macbook Pro Laptop,1,1700,12/17/19 19:31,"908 10th St, Dallas, TX 75001" +321067,Lightning Charging Cable,1,14.95,12/06/19 11:54,"626 Madison St, San Francisco, CA 94016" +321068,AAA Batteries (4-pack),2,2.99,12/23/19 19:42,"159 South St, San Francisco, CA 94016" +321069,20in Monitor,1,109.99,12/29/19 15:31,"812 11th St, San Francisco, CA 94016" +321070,Apple Airpods Headphones,1,150,12/02/19 09:57,"656 Sunset St, San Francisco, CA 94016" +321071,AAA Batteries (4-pack),1,2.99,12/30/19 11:26,"380 Cedar St, Seattle, WA 98101" +321072,Wired Headphones,1,11.99,12/20/19 20:01,"350 12th St, New York City, NY 10001" +321073,34in Ultrawide Monitor,1,379.99,12/03/19 08:35,"868 4th St, Portland, OR 97035" +321074,Wired Headphones,1,11.99,12/01/19 17:13,"638 Cherry St, Boston, MA 02215" +321075,AAA Batteries (4-pack),1,2.99,12/26/19 16:13,"424 Lake St, New York City, NY 10001" +321076,Macbook Pro Laptop,1,1700,12/20/19 09:55,"423 6th St, Portland, ME 04101" +321077,Google Phone,1,600,12/14/19 14:07,"715 9th St, San Francisco, CA 94016" +321077,USB-C Charging Cable,1,11.95,12/14/19 14:07,"715 9th St, San Francisco, CA 94016" +321078,Lightning Charging Cable,1,14.95,12/28/19 19:15,"747 Dogwood St, New York City, NY 10001" +321079,USB-C Charging Cable,1,11.95,12/22/19 08:11,"478 Washington St, Portland, OR 97035" +321080,Lightning Charging Cable,1,14.95,12/04/19 14:38,"830 West St, Dallas, TX 75001" +321081,Lightning Charging Cable,1,14.95,12/27/19 22:05,"812 4th St, Boston, MA 02215" +321082,Wired Headphones,1,11.99,12/28/19 14:03,"968 West St, Los Angeles, CA 90001" +321083,ThinkPad Laptop,1,999.99,12/30/19 10:52,"83 10th St, New York City, NY 10001" +321084,Flatscreen TV,1,300,12/09/19 08:48,"367 Lincoln St, Los Angeles, CA 90001" +321085,Lightning Charging Cable,1,14.95,12/11/19 21:16,"845 Meadow St, Portland, ME 04101" +321086,Lightning Charging Cable,1,14.95,12/05/19 08:50,"38 Willow St, Dallas, TX 75001" +321087,Wired Headphones,1,11.99,12/17/19 16:46,"189 12th St, Dallas, TX 75001" +321088,Lightning Charging Cable,1,14.95,12/09/19 08:10,"492 Cherry St, Los Angeles, CA 90001" +321089,Wired Headphones,1,11.99,12/16/19 10:38,"195 North St, Dallas, TX 75001" +321090,Lightning Charging Cable,1,14.95,12/19/19 17:19,"483 Madison St, Boston, MA 02215" +321091,USB-C Charging Cable,1,11.95,12/30/19 12:07,"897 14th St, Los Angeles, CA 90001" +321092,USB-C Charging Cable,2,11.95,12/07/19 19:27,"378 Cedar St, Los Angeles, CA 90001" +321093,AAA Batteries (4-pack),1,2.99,12/14/19 21:47,"846 Pine St, San Francisco, CA 94016" +321094,AAA Batteries (4-pack),1,2.99,12/11/19 10:21,"515 9th St, San Francisco, CA 94016" +321095,27in 4K Gaming Monitor,1,389.99,12/24/19 09:32,"427 Jackson St, Portland, ME 04101" +321096,ThinkPad Laptop,1,999.99,12/15/19 15:34,"747 13th St, New York City, NY 10001" +321097,USB-C Charging Cable,1,11.95,12/23/19 19:30,"437 West St, New York City, NY 10001" +321098,Lightning Charging Cable,1,14.95,12/27/19 23:21,"229 5th St, San Francisco, CA 94016" +321099,Lightning Charging Cable,1,14.95,12/20/19 18:13,"270 North St, Los Angeles, CA 90001" +321100,Macbook Pro Laptop,1,1700,12/06/19 10:31,"404 Maple St, Dallas, TX 75001" +321101,20in Monitor,1,109.99,12/13/19 18:20,"465 Cedar St, Boston, MA 02215" +321102,iPhone,1,700,12/14/19 20:17,"444 Sunset St, Boston, MA 02215" +321103,ThinkPad Laptop,1,999.99,12/20/19 07:16,"963 Wilson St, Boston, MA 02215" +321104,AAA Batteries (4-pack),6,2.99,12/25/19 02:15,"257 8th St, Los Angeles, CA 90001" +321105,Apple Airpods Headphones,1,150,12/26/19 06:52,"506 8th St, Seattle, WA 98101" +321106,AA Batteries (4-pack),1,3.84,12/18/19 22:34,"41 Highland St, Dallas, TX 75001" +321107,AAA Batteries (4-pack),2,2.99,12/21/19 18:45,"534 Cherry St, San Francisco, CA 94016" +321108,Wired Headphones,1,11.99,12/22/19 01:30,"564 Church St, Boston, MA 02215" +321109,Bose SoundSport Headphones,1,99.99,12/07/19 15:38,"113 Elm St, Los Angeles, CA 90001" +321110,20in Monitor,1,109.99,12/09/19 15:28,"36 Main St, San Francisco, CA 94016" +321111,Bose SoundSport Headphones,1,99.99,12/02/19 18:00,"494 1st St, Seattle, WA 98101" +321112,ThinkPad Laptop,1,999.99,12/18/19 08:57,"758 Ridge St, Portland, OR 97035" +321113,Apple Airpods Headphones,1,150,12/25/19 10:22,"426 Jefferson St, San Francisco, CA 94016" +321114,20in Monitor,1,109.99,12/26/19 12:51,"369 Jackson St, Austin, TX 73301" +321115,Wired Headphones,1,11.99,12/05/19 17:50,"740 Lincoln St, Boston, MA 02215" +321116,AAA Batteries (4-pack),1,2.99,12/23/19 14:53,"718 Johnson St, San Francisco, CA 94016" +321117,iPhone,1,700,12/02/19 18:42,"993 4th St, San Francisco, CA 94016" +321118,Macbook Pro Laptop,1,1700,12/03/19 22:07,"714 Dogwood St, Seattle, WA 98101" +321119,Macbook Pro Laptop,1,1700,12/30/19 20:40,"270 7th St, Seattle, WA 98101" +321120,Lightning Charging Cable,1,14.95,12/21/19 17:39,"583 Church St, Seattle, WA 98101" +321121,AA Batteries (4-pack),1,3.84,12/14/19 11:04,"864 Walnut St, Seattle, WA 98101" +321122,20in Monitor,1,109.99,12/26/19 16:24,"130 Wilson St, Austin, TX 73301" +321123,Lightning Charging Cable,1,14.95,12/13/19 18:30,"211 4th St, Boston, MA 02215" +321124,AA Batteries (4-pack),1,3.84,12/13/19 11:27,"46 North St, San Francisco, CA 94016" +321125,USB-C Charging Cable,1,11.95,12/06/19 01:19,"48 10th St, Seattle, WA 98101" +321126,AA Batteries (4-pack),1,3.84,12/14/19 19:25,"867 2nd St, New York City, NY 10001" +321127,USB-C Charging Cable,1,11.95,12/28/19 15:11,"103 1st St, San Francisco, CA 94016" +321128,AAA Batteries (4-pack),2,2.99,12/29/19 14:20,"681 South St, Austin, TX 73301" +321129,AAA Batteries (4-pack),2,2.99,12/20/19 13:49,"386 5th St, Seattle, WA 98101" +321130,Wired Headphones,1,11.99,12/11/19 12:13,"860 Maple St, Dallas, TX 75001" +321131,USB-C Charging Cable,1,11.95,12/30/19 09:17,"114 Walnut St, San Francisco, CA 94016" +321132,Lightning Charging Cable,1,14.95,12/12/19 08:33,"838 9th St, Los Angeles, CA 90001" +321132,Flatscreen TV,1,300,12/12/19 08:33,"838 9th St, Los Angeles, CA 90001" +321133,34in Ultrawide Monitor,1,379.99,12/25/19 16:47,"516 Cedar St, Los Angeles, CA 90001" +321133,AA Batteries (4-pack),1,3.84,12/25/19 16:47,"516 Cedar St, Los Angeles, CA 90001" +321134,Macbook Pro Laptop,1,1700,12/26/19 17:18,"684 8th St, San Francisco, CA 94016" +321135,AAA Batteries (4-pack),1,2.99,12/21/19 19:50,"123 Highland St, Los Angeles, CA 90001" +321136,Lightning Charging Cable,1,14.95,12/26/19 10:56,"921 Wilson St, San Francisco, CA 94016" +321137,Bose SoundSport Headphones,1,99.99,12/16/19 11:35,"638 1st St, Austin, TX 73301" +321138,ThinkPad Laptop,1,999.99,12/31/19 23:21,"973 Chestnut St, Boston, MA 02215" +321139,AA Batteries (4-pack),3,3.84,12/26/19 21:17,"368 South St, Austin, TX 73301" +321140,Macbook Pro Laptop,1,1700,12/15/19 19:59,"334 14th St, San Francisco, CA 94016" +321141,AA Batteries (4-pack),1,3.84,12/17/19 08:08,"256 Walnut St, Austin, TX 73301" +321142,Apple Airpods Headphones,1,150,12/03/19 07:52,"78 6th St, San Francisco, CA 94016" +321143,Apple Airpods Headphones,1,150,12/08/19 15:34,"580 13th St, New York City, NY 10001" +321144,Macbook Pro Laptop,1,1700,12/24/19 09:56,"535 Main St, New York City, NY 10001" +321145,USB-C Charging Cable,1,11.95,01/01/20 04:22,"393 Forest St, San Francisco, CA 94016" +321146,27in FHD Monitor,1,149.99,12/03/19 21:12,"877 Ridge St, Los Angeles, CA 90001" +321147,AA Batteries (4-pack),1,3.84,12/24/19 18:49,"675 Maple St, Atlanta, GA 30301" +321148,AAA Batteries (4-pack),2,2.99,12/15/19 11:16,"230 1st St, Seattle, WA 98101" +321149,Lightning Charging Cable,1,14.95,12/30/19 07:56,"712 Hickory St, New York City, NY 10001" +321150,Lightning Charging Cable,1,14.95,12/25/19 15:21,"522 Lake St, New York City, NY 10001" +321151,27in FHD Monitor,1,149.99,12/07/19 15:23,"109 Walnut St, San Francisco, CA 94016" +321152,Wired Headphones,1,11.99,12/15/19 08:54,"888 Willow St, Portland, OR 97035" +321153,Flatscreen TV,1,300,12/23/19 19:45,"17 Dogwood St, Los Angeles, CA 90001" +321154,iPhone,1,700,12/28/19 20:38,"291 5th St, Boston, MA 02215" +321155,AA Batteries (4-pack),1,3.84,12/15/19 00:03,"263 Park St, San Francisco, CA 94016" +321156,iPhone,1,700,12/16/19 12:43,"371 Adams St, Boston, MA 02215" +321157,Bose SoundSport Headphones,1,99.99,12/11/19 08:00,"124 2nd St, Los Angeles, CA 90001" +321158,USB-C Charging Cable,1,11.95,12/30/19 14:35,"994 Madison St, Los Angeles, CA 90001" +321159,iPhone,1,700,12/16/19 14:24,"251 River St, New York City, NY 10001" +321159,Lightning Charging Cable,1,14.95,12/16/19 14:24,"251 River St, New York City, NY 10001" +321160,ThinkPad Laptop,1,999.99,12/17/19 13:06,"944 Main St, San Francisco, CA 94016" +321161,Wired Headphones,1,11.99,12/14/19 09:15,"895 13th St, New York City, NY 10001" +321162,AA Batteries (4-pack),1,3.84,12/15/19 20:57,"265 Washington St, San Francisco, CA 94016" +321163,iPhone,1,700,12/13/19 17:39,"205 Adams St, Los Angeles, CA 90001" +321163,Wired Headphones,1,11.99,12/13/19 17:39,"205 Adams St, Los Angeles, CA 90001" +321164,Lightning Charging Cable,1,14.95,12/22/19 14:18,"380 River St, San Francisco, CA 94016" +321165,27in 4K Gaming Monitor,1,389.99,12/16/19 14:28,"305 Highland St, Seattle, WA 98101" +321166,Apple Airpods Headphones,1,150,12/23/19 20:48,"424 Willow St, San Francisco, CA 94016" +321167,Lightning Charging Cable,1,14.95,12/24/19 13:31,"146 8th St, San Francisco, CA 94016" +321168,iPhone,1,700,12/31/19 14:17,"348 Cedar St, Seattle, WA 98101" +321169,Wired Headphones,1,11.99,12/16/19 17:26,"357 Elm St, Austin, TX 73301" +321170,Flatscreen TV,1,300,12/07/19 17:46,"551 13th St, Boston, MA 02215" +321171,AA Batteries (4-pack),2,3.84,12/20/19 12:23,"999 10th St, San Francisco, CA 94016" +321172,AA Batteries (4-pack),1,3.84,12/20/19 22:30,"145 River St, Boston, MA 02215" +321173,AAA Batteries (4-pack),1,2.99,12/27/19 18:11,"217 Pine St, Seattle, WA 98101" +321174,USB-C Charging Cable,1,11.95,12/31/19 21:55,"222 Maple St, San Francisco, CA 94016" +321175,Flatscreen TV,1,300,12/08/19 11:46,"664 Madison St, New York City, NY 10001" +321176,Google Phone,1,600,12/28/19 13:34,"433 Lake St, Boston, MA 02215" +321177,Google Phone,1,600,12/28/19 18:08,"844 Spruce St, Portland, OR 97035" +321178,AA Batteries (4-pack),2,3.84,12/22/19 23:27,"73 Center St, San Francisco, CA 94016" +321179,AAA Batteries (4-pack),2,2.99,12/02/19 16:07,"877 Madison St, New York City, NY 10001" +321180,Bose SoundSport Headphones,1,99.99,12/17/19 18:22,"561 Johnson St, Portland, OR 97035" +321181,Apple Airpods Headphones,1,150,12/09/19 18:14,"23 Lakeview St, Portland, ME 04101" +321182,20in Monitor,1,109.99,12/08/19 21:49,"788 River St, Los Angeles, CA 90001" +321183,Vareebadd Phone,1,400,12/21/19 12:03,"202 Lincoln St, San Francisco, CA 94016" +321184,Apple Airpods Headphones,1,150,12/17/19 08:41,"47 Meadow St, Portland, ME 04101" +321185,Bose SoundSport Headphones,1,99.99,12/29/19 23:50,"598 North St, Atlanta, GA 30301" +321186,Lightning Charging Cable,1,14.95,12/19/19 11:55,"454 Hill St, Los Angeles, CA 90001" +321187,Lightning Charging Cable,1,14.95,12/12/19 04:49,"293 Jackson St, Seattle, WA 98101" +321188,27in 4K Gaming Monitor,1,389.99,12/18/19 16:07,"982 Adams St, Portland, OR 97035" +321189,USB-C Charging Cable,1,11.95,12/21/19 14:09,"87 Highland St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +321190,Apple Airpods Headphones,1,150,12/26/19 12:54,"828 Church St, New York City, NY 10001" +321191,27in FHD Monitor,1,149.99,12/14/19 09:09,"931 Church St, Atlanta, GA 30301" +321192,Lightning Charging Cable,1,14.95,12/09/19 12:33,"908 8th St, Los Angeles, CA 90001" +321193,AA Batteries (4-pack),1,3.84,12/09/19 11:20,"894 Adams St, Atlanta, GA 30301" +321194,Wired Headphones,1,11.99,12/30/19 15:19,"147 2nd St, Portland, OR 97035" +321195,AAA Batteries (4-pack),1,2.99,12/23/19 18:15,"44 Dogwood St, Atlanta, GA 30301" +321196,27in FHD Monitor,1,149.99,12/29/19 00:22,"517 Jackson St, New York City, NY 10001" +321197,USB-C Charging Cable,1,11.95,12/24/19 11:43,"788 11th St, Atlanta, GA 30301" +321198,LG Washing Machine,1,600.0,12/26/19 22:26,"277 Jefferson St, Seattle, WA 98101" +321199,ThinkPad Laptop,1,999.99,12/14/19 21:28,"889 West St, Boston, MA 02215" +321200,Lightning Charging Cable,1,14.95,12/26/19 20:12,"393 Dogwood St, New York City, NY 10001" +321201,Wired Headphones,1,11.99,12/23/19 15:51,"846 Cherry St, Dallas, TX 75001" +321202,27in FHD Monitor,1,149.99,12/09/19 15:56,"33 South St, New York City, NY 10001" +321203,AA Batteries (4-pack),1,3.84,12/08/19 17:09,"839 North St, Portland, OR 97035" +321204,Macbook Pro Laptop,1,1700,12/03/19 17:54,"79 North St, New York City, NY 10001" +321205,USB-C Charging Cable,1,11.95,12/14/19 13:40,"693 Willow St, San Francisco, CA 94016" +,,,,, +321206,Google Phone,1,600,12/22/19 22:17,"743 12th St, Dallas, TX 75001" +321206,Wired Headphones,1,11.99,12/22/19 22:17,"743 12th St, Dallas, TX 75001" +321207,Wired Headphones,1,11.99,12/31/19 22:04,"567 Madison St, Austin, TX 73301" +321208,Macbook Pro Laptop,1,1700,12/19/19 13:02,"253 Park St, San Francisco, CA 94016" +321209,27in 4K Gaming Monitor,1,389.99,12/20/19 10:10,"368 8th St, Los Angeles, CA 90001" +321210,20in Monitor,1,109.99,12/08/19 22:04,"404 Chestnut St, New York City, NY 10001" +321211,iPhone,1,700,12/05/19 16:00,"688 Walnut St, Dallas, TX 75001" +321212,Apple Airpods Headphones,1,150,12/25/19 15:11,"268 6th St, Portland, OR 97035" +321212,Flatscreen TV,1,300,12/25/19 15:11,"268 6th St, Portland, OR 97035" +321213,27in 4K Gaming Monitor,1,389.99,12/07/19 12:21,"947 Forest St, Dallas, TX 75001" +321214,Bose SoundSport Headphones,1,99.99,12/12/19 12:39,"703 Jefferson St, Atlanta, GA 30301" +321215,ThinkPad Laptop,1,999.99,12/13/19 15:40,"750 5th St, Los Angeles, CA 90001" +321216,27in FHD Monitor,1,149.99,12/21/19 11:53,"885 Main St, Austin, TX 73301" +321217,Apple Airpods Headphones,1,150,12/29/19 13:38,"581 Church St, San Francisco, CA 94016" +321218,Bose SoundSport Headphones,1,99.99,12/25/19 21:32,"350 Cedar St, Dallas, TX 75001" +321219,27in FHD Monitor,1,149.99,12/02/19 15:51,"981 Wilson St, Austin, TX 73301" +321220,AAA Batteries (4-pack),1,2.99,12/07/19 19:32,"866 10th St, Los Angeles, CA 90001" +321221,Macbook Pro Laptop,1,1700,12/07/19 03:09,"697 Adams St, Boston, MA 02215" +321222,Apple Airpods Headphones,1,150,12/13/19 11:12,"140 Main St, Atlanta, GA 30301" +321223,AA Batteries (4-pack),1,3.84,12/19/19 12:31,"113 Chestnut St, San Francisco, CA 94016" +321224,AAA Batteries (4-pack),2,2.99,12/03/19 11:57,"995 10th St, Boston, MA 02215" +321225,Bose SoundSport Headphones,1,99.99,12/28/19 05:43,"298 2nd St, Boston, MA 02215" +321226,AA Batteries (4-pack),1,3.84,12/25/19 18:00,"657 11th St, Boston, MA 02215" +321227,Lightning Charging Cable,1,14.95,12/30/19 06:36,"710 Adams St, Los Angeles, CA 90001" +321228,AAA Batteries (4-pack),2,2.99,12/30/19 21:20,"554 Spruce St, Seattle, WA 98101" +321229,Bose SoundSport Headphones,1,99.99,12/31/19 18:14,"486 2nd St, Austin, TX 73301" +321230,27in 4K Gaming Monitor,1,389.99,12/17/19 06:27,"304 4th St, Seattle, WA 98101" +,,,,, +321231,Lightning Charging Cable,1,14.95,12/21/19 10:58,"185 Highland St, San Francisco, CA 94016" +321232,34in Ultrawide Monitor,1,379.99,12/29/19 22:38,"289 Chestnut St, Seattle, WA 98101" +321233,Lightning Charging Cable,1,14.95,12/02/19 15:24,"607 5th St, Dallas, TX 75001" +321234,AAA Batteries (4-pack),1,2.99,12/25/19 07:42,"383 Cedar St, Portland, ME 04101" +321235,Lightning Charging Cable,1,14.95,12/04/19 17:56,"4 Cherry St, San Francisco, CA 94016" +321236,iPhone,1,700,12/06/19 09:40,"774 5th St, Boston, MA 02215" +321236,Lightning Charging Cable,1,14.95,12/06/19 09:40,"774 5th St, Boston, MA 02215" +321237,Macbook Pro Laptop,1,1700,12/13/19 00:58,"640 1st St, San Francisco, CA 94016" +321238,Wired Headphones,1,11.99,12/24/19 19:46,"603 9th St, San Francisco, CA 94016" +321239,Lightning Charging Cable,1,14.95,12/31/19 22:54,"862 7th St, San Francisco, CA 94016" +321240,20in Monitor,1,109.99,12/05/19 09:38,"642 Dogwood St, Portland, OR 97035" +321241,Flatscreen TV,1,300,12/29/19 23:59,"414 5th St, San Francisco, CA 94016" +321242,Apple Airpods Headphones,1,150,12/17/19 18:13,"511 11th St, San Francisco, CA 94016" +321243,AAA Batteries (4-pack),2,2.99,12/29/19 00:16,"711 7th St, Seattle, WA 98101" +321244,Lightning Charging Cable,1,14.95,12/13/19 22:05,"555 Johnson St, San Francisco, CA 94016" +321245,Bose SoundSport Headphones,1,99.99,12/13/19 19:58,"728 Spruce St, Dallas, TX 75001" +321246,AAA Batteries (4-pack),1,2.99,12/25/19 14:05,"234 9th St, Boston, MA 02215" +321247,Wired Headphones,1,11.99,12/12/19 20:23,"789 7th St, San Francisco, CA 94016" +321248,Lightning Charging Cable,1,14.95,12/25/19 06:49,"835 Johnson St, Los Angeles, CA 90001" +321249,AA Batteries (4-pack),2,3.84,12/01/19 23:41,"540 2nd St, Seattle, WA 98101" +321250,AAA Batteries (4-pack),3,2.99,12/15/19 10:35,"953 Elm St, Atlanta, GA 30301" +321251,AAA Batteries (4-pack),2,2.99,12/26/19 09:04,"141 Elm St, San Francisco, CA 94016" +321252,27in FHD Monitor,1,149.99,12/01/19 14:47,"996 14th St, Atlanta, GA 30301" +321253,Apple Airpods Headphones,1,150,12/01/19 16:38,"908 6th St, New York City, NY 10001" +321254,Bose SoundSport Headphones,1,99.99,12/26/19 20:01,"70 Walnut St, Portland, OR 97035" +321255,34in Ultrawide Monitor,1,379.99,12/04/19 21:54,"49 Willow St, New York City, NY 10001" +321256,Wired Headphones,1,11.99,12/08/19 09:43,"407 Hill St, Boston, MA 02215" +321257,Apple Airpods Headphones,1,150,12/28/19 21:38,"705 Main St, Atlanta, GA 30301" +321258,USB-C Charging Cable,1,11.95,12/20/19 19:46,"411 Cedar St, Los Angeles, CA 90001" +321259,AA Batteries (4-pack),3,3.84,12/06/19 21:53,"883 13th St, New York City, NY 10001" +321260,USB-C Charging Cable,1,11.95,12/16/19 12:27,"677 4th St, San Francisco, CA 94016" +321261,Lightning Charging Cable,1,14.95,12/30/19 18:42,"52 Dogwood St, San Francisco, CA 94016" +321262,Wired Headphones,1,11.99,12/11/19 18:44,"476 5th St, Los Angeles, CA 90001" +321263,USB-C Charging Cable,1,11.95,12/12/19 21:08,"451 Dogwood St, Los Angeles, CA 90001" +321264,Google Phone,1,600,12/23/19 20:23,"692 Church St, Boston, MA 02215" +321265,Lightning Charging Cable,1,14.95,12/18/19 13:09,"739 14th St, San Francisco, CA 94016" +321266,Apple Airpods Headphones,1,150,12/22/19 16:14,"766 Ridge St, Boston, MA 02215" +321267,27in FHD Monitor,1,149.99,12/30/19 23:29,"46 Hickory St, Atlanta, GA 30301" +321268,USB-C Charging Cable,1,11.95,12/11/19 18:49,"43 West St, San Francisco, CA 94016" +321269,Lightning Charging Cable,1,14.95,12/05/19 15:16,"960 North St, Dallas, TX 75001" +321270,AAA Batteries (4-pack),1,2.99,12/03/19 19:05,"824 Madison St, Dallas, TX 75001" +321271,Google Phone,1,600,12/15/19 11:06,"533 Wilson St, New York City, NY 10001" +321271,USB-C Charging Cable,1,11.95,12/15/19 11:06,"533 Wilson St, New York City, NY 10001" +321272,Wired Headphones,1,11.99,12/17/19 18:33,"21 Johnson St, Dallas, TX 75001" +321273,AA Batteries (4-pack),1,3.84,12/05/19 18:29,"697 5th St, Atlanta, GA 30301" +321274,AAA Batteries (4-pack),1,2.99,12/10/19 18:40,"618 Hill St, San Francisco, CA 94016" +321275,34in Ultrawide Monitor,1,379.99,12/03/19 06:32,"264 Wilson St, Austin, TX 73301" +321276,AA Batteries (4-pack),1,3.84,12/16/19 22:00,"816 4th St, Los Angeles, CA 90001" +321277,USB-C Charging Cable,1,11.95,12/30/19 10:33,"128 13th St, Dallas, TX 75001" +321278,iPhone,1,700,12/04/19 19:16,"433 Sunset St, San Francisco, CA 94016" +321279,Wired Headphones,1,11.99,12/06/19 09:25,"96 Walnut St, San Francisco, CA 94016" +321280,Lightning Charging Cable,1,14.95,12/31/19 07:22,"404 Wilson St, Atlanta, GA 30301" +321281,Apple Airpods Headphones,1,150,12/17/19 22:09,"234 North St, Atlanta, GA 30301" +321282,Wired Headphones,1,11.99,12/04/19 17:54,"646 9th St, Seattle, WA 98101" +321283,Wired Headphones,1,11.99,12/22/19 15:46,"229 Washington St, Atlanta, GA 30301" +321284,AAA Batteries (4-pack),1,2.99,12/01/19 19:39,"209 North St, Atlanta, GA 30301" +321285,27in FHD Monitor,1,149.99,12/14/19 09:29,"573 Ridge St, New York City, NY 10001" +321285,27in 4K Gaming Monitor,1,389.99,12/14/19 09:29,"573 Ridge St, New York City, NY 10001" +321286,Vareebadd Phone,1,400,12/30/19 20:31,"859 Spruce St, Austin, TX 73301" +321287,AAA Batteries (4-pack),1,2.99,12/11/19 12:47,"921 Lincoln St, New York City, NY 10001" +321288,Macbook Pro Laptop,1,1700,12/05/19 18:56,"610 14th St, San Francisco, CA 94016" +321289,AAA Batteries (4-pack),1,2.99,12/18/19 14:01,"954 Hill St, San Francisco, CA 94016" +321290,AAA Batteries (4-pack),1,2.99,12/09/19 15:29,"31 Lake St, New York City, NY 10001" +321291,Bose SoundSport Headphones,1,99.99,12/08/19 19:54,"577 9th St, San Francisco, CA 94016" +321292,AA Batteries (4-pack),1,3.84,12/07/19 10:10,"312 Ridge St, San Francisco, CA 94016" +321293,ThinkPad Laptop,1,999.99,12/10/19 15:13,"950 Maple St, Portland, OR 97035" +321294,USB-C Charging Cable,1,11.95,12/19/19 20:12,"944 Wilson St, Seattle, WA 98101" +321295,AA Batteries (4-pack),1,3.84,12/04/19 11:23,"79 Johnson St, San Francisco, CA 94016" +321295,Google Phone,1,600,12/04/19 11:23,"79 Johnson St, San Francisco, CA 94016" +321296,AA Batteries (4-pack),1,3.84,12/30/19 21:29,"732 Spruce St, Dallas, TX 75001" +321297,AA Batteries (4-pack),1,3.84,12/31/19 19:07,"251 Wilson St, San Francisco, CA 94016" +321298,Lightning Charging Cable,1,14.95,12/09/19 20:28,"976 Dogwood St, Los Angeles, CA 90001" +321299,Lightning Charging Cable,1,14.95,12/24/19 13:49,"748 River St, Boston, MA 02215" +321300,AA Batteries (4-pack),1,3.84,12/10/19 10:13,"426 Maple St, New York City, NY 10001" +321301,AAA Batteries (4-pack),5,2.99,12/05/19 11:25,"705 Lake St, Austin, TX 73301" +321302,Lightning Charging Cable,2,14.95,12/17/19 19:19,"2 4th St, San Francisco, CA 94016" +321303,AAA Batteries (4-pack),2,2.99,12/02/19 10:02,"341 2nd St, Los Angeles, CA 90001" +321304,AA Batteries (4-pack),2,3.84,12/14/19 18:34,"61 South St, Los Angeles, CA 90001" +321305,Apple Airpods Headphones,1,150,12/25/19 16:40,"568 Center St, New York City, NY 10001" +321306,Bose SoundSport Headphones,1,99.99,12/14/19 18:14,"196 Walnut St, Austin, TX 73301" +321307,Google Phone,1,600,12/11/19 18:55,"496 11th St, Seattle, WA 98101" +321308,Apple Airpods Headphones,1,150,12/02/19 14:59,"846 Adams St, Portland, OR 97035" +321309,AAA Batteries (4-pack),1,2.99,12/10/19 17:28,"772 Sunset St, Portland, OR 97035" +321310,LG Washing Machine,1,600.0,12/20/19 12:57,"421 Wilson St, Boston, MA 02215" +321311,Bose SoundSport Headphones,1,99.99,12/10/19 10:11,"450 Church St, San Francisco, CA 94016" +321312,iPhone,1,700,12/18/19 10:22,"597 Cherry St, Atlanta, GA 30301" +321313,20in Monitor,1,109.99,12/25/19 15:25,"174 7th St, Seattle, WA 98101" +321314,AA Batteries (4-pack),1,3.84,12/15/19 08:39,"941 Maple St, Dallas, TX 75001" +321315,AAA Batteries (4-pack),1,2.99,12/01/19 14:50,"221 Elm St, Portland, OR 97035" +321316,AA Batteries (4-pack),1,3.84,12/24/19 12:52,"114 Center St, Boston, MA 02215" +321317,Vareebadd Phone,1,400,12/20/19 09:27,"228 Wilson St, San Francisco, CA 94016" +321318,AA Batteries (4-pack),1,3.84,12/17/19 20:46,"219 Hickory St, Dallas, TX 75001" +321319,Lightning Charging Cable,2,14.95,12/10/19 13:05,"374 4th St, San Francisco, CA 94016" +321320,Lightning Charging Cable,1,14.95,12/19/19 07:58,"355 Walnut St, Atlanta, GA 30301" +321321,Bose SoundSport Headphones,1,99.99,12/04/19 17:15,"926 7th St, Los Angeles, CA 90001" +321322,Bose SoundSport Headphones,1,99.99,12/05/19 21:06,"146 Adams St, Dallas, TX 75001" +321323,Wired Headphones,1,11.99,12/09/19 20:56,"788 Forest St, New York City, NY 10001" +321324,Flatscreen TV,1,300,12/27/19 14:12,"246 Sunset St, Los Angeles, CA 90001" +321325,Lightning Charging Cable,1,14.95,12/10/19 09:12,"202 Hickory St, San Francisco, CA 94016" +321326,USB-C Charging Cable,1,11.95,12/19/19 14:10,"615 Cherry St, New York City, NY 10001" +321327,USB-C Charging Cable,1,11.95,12/15/19 18:58,"632 Hickory St, San Francisco, CA 94016" +321328,USB-C Charging Cable,1,11.95,12/17/19 07:44,"126 Lake St, San Francisco, CA 94016" +321329,Wired Headphones,1,11.99,12/16/19 10:17,"516 Church St, Boston, MA 02215" +321330,Lightning Charging Cable,1,14.95,12/05/19 23:37,"482 7th St, Atlanta, GA 30301" +321330,Bose SoundSport Headphones,1,99.99,12/05/19 23:37,"482 7th St, Atlanta, GA 30301" +321331,Macbook Pro Laptop,1,1700,12/26/19 09:11,"746 Cedar St, Boston, MA 02215" +321332,USB-C Charging Cable,1,11.95,12/23/19 14:30,"924 Adams St, Seattle, WA 98101" +321333,Lightning Charging Cable,1,14.95,12/08/19 14:34,"801 10th St, Los Angeles, CA 90001" +321334,Wired Headphones,1,11.99,12/12/19 19:53,"989 West St, New York City, NY 10001" +321335,AAA Batteries (4-pack),1,2.99,12/08/19 06:53,"918 5th St, San Francisco, CA 94016" +321336,AAA Batteries (4-pack),4,2.99,12/03/19 11:43,"40 Spruce St, Seattle, WA 98101" +321337,Lightning Charging Cable,1,14.95,12/23/19 15:03,"36 Adams St, Dallas, TX 75001" +321338,Bose SoundSport Headphones,1,99.99,12/03/19 09:41,"569 Ridge St, Dallas, TX 75001" +321339,AAA Batteries (4-pack),2,2.99,12/03/19 19:26,"937 Main St, Atlanta, GA 30301" +321340,USB-C Charging Cable,1,11.95,12/29/19 21:48,"241 Ridge St, San Francisco, CA 94016" +321341,iPhone,1,700,12/02/19 15:28,"157 Cherry St, Boston, MA 02215" +321342,Flatscreen TV,1,300,12/28/19 18:53,"165 Johnson St, Atlanta, GA 30301" +321343,27in FHD Monitor,1,149.99,12/24/19 19:17,"306 Lakeview St, Dallas, TX 75001" +321344,AAA Batteries (4-pack),1,2.99,12/28/19 22:19,"265 Lake St, San Francisco, CA 94016" +321345,AA Batteries (4-pack),1,3.84,12/13/19 20:14,"360 Hill St, Los Angeles, CA 90001" +321346,20in Monitor,1,109.99,12/25/19 10:51,"814 Forest St, New York City, NY 10001" +321347,34in Ultrawide Monitor,1,379.99,12/23/19 10:59,"626 River St, Portland, OR 97035" +321348,AAA Batteries (4-pack),1,2.99,12/23/19 17:53,"55 Hickory St, Los Angeles, CA 90001" +321349,Lightning Charging Cable,2,14.95,12/28/19 23:51,"789 6th St, New York City, NY 10001" +321350,AA Batteries (4-pack),1,3.84,12/17/19 00:44,"609 West St, Seattle, WA 98101" +321351,AAA Batteries (4-pack),1,2.99,12/20/19 00:37,"813 South St, San Francisco, CA 94016" +321352,Vareebadd Phone,1,400,12/05/19 16:42,"105 Walnut St, San Francisco, CA 94016" +321352,USB-C Charging Cable,1,11.95,12/05/19 16:42,"105 Walnut St, San Francisco, CA 94016" +321353,Wired Headphones,1,11.99,12/12/19 12:33,"463 Pine St, Los Angeles, CA 90001" +321354,ThinkPad Laptop,1,999.99,12/18/19 14:10,"608 Lake St, Atlanta, GA 30301" +321355,Lightning Charging Cable,1,14.95,12/25/19 18:42,"790 Wilson St, Seattle, WA 98101" +321356,USB-C Charging Cable,1,11.95,12/09/19 19:54,"797 Walnut St, Seattle, WA 98101" +321357,USB-C Charging Cable,1,11.95,12/07/19 01:45,"378 7th St, Los Angeles, CA 90001" +321358,Lightning Charging Cable,1,14.95,12/18/19 18:47,"41 West St, Atlanta, GA 30301" +321359,20in Monitor,1,109.99,12/20/19 15:49,"246 Adams St, Los Angeles, CA 90001" +321360,AA Batteries (4-pack),1,3.84,12/12/19 19:22,"957 9th St, Dallas, TX 75001" +321361,Google Phone,1,600,12/11/19 08:52,"543 Lakeview St, Los Angeles, CA 90001" +321361,USB-C Charging Cable,1,11.95,12/11/19 08:52,"543 Lakeview St, Los Angeles, CA 90001" +321362,USB-C Charging Cable,2,11.95,12/03/19 14:15,"594 South St, Los Angeles, CA 90001" +321363,Apple Airpods Headphones,1,150,12/05/19 19:26,"95 Cherry St, Dallas, TX 75001" +321364,Apple Airpods Headphones,1,150,12/28/19 13:22,"31 7th St, New York City, NY 10001" +321365,USB-C Charging Cable,1,11.95,12/17/19 17:36,"310 Lake St, Los Angeles, CA 90001" +321366,Wired Headphones,1,11.99,12/08/19 02:21,"921 8th St, Dallas, TX 75001" +321367,AA Batteries (4-pack),1,3.84,12/19/19 10:22,"561 13th St, Atlanta, GA 30301" +321368,Lightning Charging Cable,1,14.95,12/31/19 14:25,"385 2nd St, San Francisco, CA 94016" +321369,Bose SoundSport Headphones,1,99.99,12/31/19 12:07,"754 13th St, San Francisco, CA 94016" +321370,27in FHD Monitor,1,149.99,12/20/19 19:53,"179 14th St, Los Angeles, CA 90001" +321371,AA Batteries (4-pack),2,3.84,12/17/19 15:58,"166 Dogwood St, Boston, MA 02215" +321372,iPhone,1,700,12/05/19 18:00,"151 West St, Austin, TX 73301" +321372,Lightning Charging Cable,1,14.95,12/05/19 18:00,"151 West St, Austin, TX 73301" +321372,Apple Airpods Headphones,1,150,12/05/19 18:00,"151 West St, Austin, TX 73301" +321373,20in Monitor,1,109.99,12/05/19 12:23,"894 River St, Los Angeles, CA 90001" +321374,Wired Headphones,2,11.99,12/22/19 21:03,"949 Cedar St, Boston, MA 02215" +321375,Apple Airpods Headphones,1,150,12/27/19 13:33,"255 Sunset St, Atlanta, GA 30301" +321376,AAA Batteries (4-pack),1,2.99,12/21/19 13:16,"904 10th St, Austin, TX 73301" +321377,Google Phone,1,600,12/23/19 19:46,"251 Meadow St, Portland, OR 97035" +321377,USB-C Charging Cable,1,11.95,12/23/19 19:46,"251 Meadow St, Portland, OR 97035" +321378,ThinkPad Laptop,1,999.99,12/01/19 14:37,"468 North St, Portland, OR 97035" +321379,27in FHD Monitor,1,149.99,12/28/19 21:30,"379 Highland St, Seattle, WA 98101" +321380,Flatscreen TV,1,300,12/14/19 20:29,"653 Spruce St, Seattle, WA 98101" +321381,AAA Batteries (4-pack),1,2.99,12/30/19 05:14,"947 Jackson St, Los Angeles, CA 90001" +321382,AAA Batteries (4-pack),1,2.99,12/14/19 22:04,"613 Park St, San Francisco, CA 94016" +321383,Wired Headphones,1,11.99,12/04/19 09:02,"229 Madison St, Seattle, WA 98101" +321384,AAA Batteries (4-pack),3,2.99,12/18/19 19:58,"198 South St, Dallas, TX 75001" +321385,27in FHD Monitor,1,149.99,12/26/19 18:23,"634 Meadow St, San Francisco, CA 94016" +321386,Wired Headphones,1,11.99,12/14/19 13:40,"846 Walnut St, Los Angeles, CA 90001" +321387,AAA Batteries (4-pack),4,2.99,12/05/19 12:28,"518 13th St, Atlanta, GA 30301" +321388,Wired Headphones,1,11.99,12/08/19 17:21,"191 Lakeview St, San Francisco, CA 94016" +321389,Lightning Charging Cable,1,14.95,12/10/19 12:46,"445 14th St, New York City, NY 10001" +321390,Bose SoundSport Headphones,1,99.99,12/09/19 16:54,"428 North St, Boston, MA 02215" +321391,AA Batteries (4-pack),1,3.84,12/24/19 23:19,"756 Sunset St, Seattle, WA 98101" +321392,20in Monitor,1,109.99,12/31/19 21:48,"836 Dogwood St, Portland, OR 97035" +321393,Apple Airpods Headphones,1,150,12/14/19 12:32,"866 Wilson St, Seattle, WA 98101" +321394,27in FHD Monitor,1,149.99,12/19/19 10:10,"575 8th St, New York City, NY 10001" +321395,AAA Batteries (4-pack),5,2.99,12/21/19 11:38,"42 South St, Dallas, TX 75001" +321396,AA Batteries (4-pack),1,3.84,12/23/19 16:57,"1 Elm St, Seattle, WA 98101" +321397,27in 4K Gaming Monitor,1,389.99,12/18/19 21:31,"186 Jackson St, San Francisco, CA 94016" +321398,27in FHD Monitor,1,149.99,12/09/19 23:42,"103 Jackson St, Seattle, WA 98101" +321399,27in 4K Gaming Monitor,1,389.99,12/15/19 19:14,"979 Center St, New York City, NY 10001" +321400,iPhone,1,700,12/03/19 21:45,"661 Walnut St, New York City, NY 10001" +321401,Wired Headphones,1,11.99,12/04/19 14:44,"645 Walnut St, Atlanta, GA 30301" +321402,Google Phone,1,600,12/21/19 13:48,"117 13th St, Boston, MA 02215" +321403,Apple Airpods Headphones,1,150,12/18/19 01:27,"18 Church St, San Francisco, CA 94016" +321404,Google Phone,1,600,01/01/20 01:03,"440 Lake St, Seattle, WA 98101" +321405,Bose SoundSport Headphones,1,99.99,12/16/19 15:04,"952 Pine St, Seattle, WA 98101" +321406,Lightning Charging Cable,1,14.95,12/10/19 12:53,"31 Elm St, Los Angeles, CA 90001" +321407,USB-C Charging Cable,1,11.95,12/22/19 20:28,"533 4th St, Dallas, TX 75001" +321408,Apple Airpods Headphones,1,150,12/03/19 11:35,"142 Madison St, Seattle, WA 98101" +321409,AAA Batteries (4-pack),1,2.99,12/19/19 11:27,"953 12th St, Dallas, TX 75001" +321410,Google Phone,1,600,12/25/19 00:59,"107 Park St, San Francisco, CA 94016" +321411,27in 4K Gaming Monitor,1,389.99,12/16/19 19:57,"555 Lakeview St, San Francisco, CA 94016" +321412,AAA Batteries (4-pack),5,2.99,12/01/19 11:47,"292 8th St, Dallas, TX 75001" +321413,AA Batteries (4-pack),2,3.84,12/26/19 08:21,"882 Forest St, Austin, TX 73301" +321414,Wired Headphones,1,11.99,12/13/19 20:50,"872 Highland St, San Francisco, CA 94016" +321415,iPhone,1,700,12/11/19 02:40,"372 Maple St, Dallas, TX 75001" +321416,Google Phone,1,600,12/15/19 17:16,"296 Walnut St, New York City, NY 10001" +321417,Lightning Charging Cable,1,14.95,12/04/19 23:17,"158 Park St, Los Angeles, CA 90001" +321418,34in Ultrawide Monitor,1,379.99,12/15/19 13:38,"916 Jefferson St, San Francisco, CA 94016" +321419,Macbook Pro Laptop,1,1700,12/22/19 13:04,"25 14th St, San Francisco, CA 94016" +321419,Macbook Pro Laptop,1,1700,12/22/19 13:04,"25 14th St, San Francisco, CA 94016" +321420,iPhone,1,700,12/06/19 07:17,"454 West St, Austin, TX 73301" +321421,USB-C Charging Cable,1,11.95,12/17/19 14:07,"884 Madison St, New York City, NY 10001" +321422,Bose SoundSport Headphones,1,99.99,12/12/19 20:16,"316 Ridge St, New York City, NY 10001" +321423,USB-C Charging Cable,1,11.95,12/05/19 19:33,"8 Cherry St, Boston, MA 02215" +321424,AA Batteries (4-pack),1,3.84,12/01/19 12:01,"407 Adams St, San Francisco, CA 94016" +321425,USB-C Charging Cable,1,11.95,12/29/19 14:40,"381 Johnson St, Seattle, WA 98101" +321426,Bose SoundSport Headphones,1,99.99,12/25/19 07:49,"456 2nd St, New York City, NY 10001" +321427,27in FHD Monitor,1,149.99,12/26/19 14:48,"207 Lake St, San Francisco, CA 94016" +321428,AAA Batteries (4-pack),1,2.99,12/20/19 20:20,"191 Cherry St, Seattle, WA 98101" +321429,Bose SoundSport Headphones,1,99.99,12/23/19 18:59,"754 12th St, Atlanta, GA 30301" +321430,27in 4K Gaming Monitor,1,389.99,12/16/19 20:25,"1 11th St, New York City, NY 10001" +321431,Wired Headphones,1,11.99,12/26/19 11:45,"634 11th St, Boston, MA 02215" +321432,27in FHD Monitor,1,149.99,12/15/19 14:41,"250 Cherry St, Los Angeles, CA 90001" +321433,Google Phone,1,600,12/28/19 21:47,"64 West St, New York City, NY 10001" +321433,USB-C Charging Cable,1,11.95,12/28/19 21:47,"64 West St, New York City, NY 10001" +321434,AA Batteries (4-pack),1,3.84,12/14/19 07:17,"518 14th St, Dallas, TX 75001" +321435,Wired Headphones,1,11.99,12/17/19 10:40,"373 Wilson St, Seattle, WA 98101" +321436,Wired Headphones,1,11.99,12/04/19 15:55,"18 Lake St, Los Angeles, CA 90001" +321437,Apple Airpods Headphones,1,150,12/02/19 20:54,"683 Lincoln St, Boston, MA 02215" +321438,27in FHD Monitor,1,149.99,12/05/19 17:09,"112 Cedar St, Los Angeles, CA 90001" +321439,iPhone,1,700,01/01/20 01:27,"785 Pine St, Seattle, WA 98101" +321439,Apple Airpods Headphones,1,150,01/01/20 01:27,"785 Pine St, Seattle, WA 98101" +321440,Bose SoundSport Headphones,1,99.99,12/03/19 17:40,"936 Wilson St, San Francisco, CA 94016" +321441,USB-C Charging Cable,1,11.95,12/24/19 19:35,"970 7th St, Dallas, TX 75001" +321442,AA Batteries (4-pack),1,3.84,12/30/19 14:04,"296 Adams St, Los Angeles, CA 90001" +321442,iPhone,1,700,12/30/19 14:04,"296 Adams St, Los Angeles, CA 90001" +321443,Flatscreen TV,1,300,12/19/19 21:29,"295 Cedar St, San Francisco, CA 94016" +321444,AAA Batteries (4-pack),1,2.99,12/29/19 17:35,"869 6th St, Seattle, WA 98101" +321445,Bose SoundSport Headphones,1,99.99,12/10/19 18:53,"787 10th St, Portland, OR 97035" +321446,USB-C Charging Cable,1,11.95,12/11/19 08:38,"573 Center St, Boston, MA 02215" +321447,27in FHD Monitor,1,149.99,12/29/19 13:16,"365 Park St, Atlanta, GA 30301" +321448,AA Batteries (4-pack),1,3.84,12/02/19 23:42,"127 West St, Boston, MA 02215" +321449,USB-C Charging Cable,1,11.95,12/31/19 17:58,"903 Cedar St, San Francisco, CA 94016" +321450,Wired Headphones,1,11.99,12/28/19 20:13,"498 Hill St, Austin, TX 73301" +321451,34in Ultrawide Monitor,1,379.99,12/16/19 11:27,"498 9th St, Austin, TX 73301" +321452,USB-C Charging Cable,1,11.95,12/31/19 19:41,"825 4th St, Los Angeles, CA 90001" +321453,iPhone,1,700,12/13/19 19:08,"109 Wilson St, Portland, OR 97035" +321454,AA Batteries (4-pack),4,3.84,12/22/19 19:37,"872 Lincoln St, Portland, ME 04101" +321455,Flatscreen TV,1,300,12/21/19 10:07,"624 Meadow St, San Francisco, CA 94016" +321456,27in 4K Gaming Monitor,1,389.99,12/15/19 09:12,"13 Washington St, Dallas, TX 75001" +321457,Wired Headphones,1,11.99,12/28/19 11:53,"129 14th St, Los Angeles, CA 90001" +321458,USB-C Charging Cable,1,11.95,12/21/19 14:14,"811 Elm St, San Francisco, CA 94016" +321459,Apple Airpods Headphones,1,150,12/07/19 18:48,"469 10th St, Seattle, WA 98101" +321460,Lightning Charging Cable,1,14.95,12/19/19 21:06,"565 2nd St, Portland, OR 97035" +321461,AAA Batteries (4-pack),1,2.99,12/19/19 20:54,"561 Jackson St, New York City, NY 10001" +321462,Bose SoundSport Headphones,1,99.99,12/24/19 13:14,"173 13th St, Boston, MA 02215" +321463,Bose SoundSport Headphones,1,99.99,12/17/19 21:40,"42 12th St, San Francisco, CA 94016" +321464,Flatscreen TV,1,300,12/31/19 21:14,"446 South St, Boston, MA 02215" +321465,AA Batteries (4-pack),1,3.84,12/18/19 15:09,"71 Cherry St, Los Angeles, CA 90001" +321466,Apple Airpods Headphones,1,150,12/20/19 13:35,"532 4th St, Portland, OR 97035" +321467,Vareebadd Phone,1,400,12/11/19 23:38,"388 2nd St, San Francisco, CA 94016" +321468,Wired Headphones,1,11.99,12/21/19 13:48,"162 Maple St, Los Angeles, CA 90001" +321469,Lightning Charging Cable,1,14.95,12/19/19 14:28,"42 Highland St, Los Angeles, CA 90001" +321470,iPhone,1,700,12/17/19 14:51,"921 2nd St, Boston, MA 02215" +321470,Lightning Charging Cable,1,14.95,12/17/19 14:51,"921 2nd St, Boston, MA 02215" +321471,Lightning Charging Cable,1,14.95,12/12/19 12:22,"700 West St, Los Angeles, CA 90001" +321472,AA Batteries (4-pack),2,3.84,12/29/19 06:55,"383 Highland St, San Francisco, CA 94016" +321473,Lightning Charging Cable,2,14.95,12/12/19 11:49,"547 14th St, Atlanta, GA 30301" +321474,Bose SoundSport Headphones,1,99.99,12/29/19 17:30,"907 Sunset St, San Francisco, CA 94016" +321475,USB-C Charging Cable,1,11.95,12/30/19 12:55,"477 River St, New York City, NY 10001" +321476,Wired Headphones,1,11.99,12/19/19 17:42,"501 Forest St, Los Angeles, CA 90001" +321477,Bose SoundSport Headphones,1,99.99,12/09/19 20:19,"580 Ridge St, New York City, NY 10001" +321478,27in 4K Gaming Monitor,1,389.99,12/15/19 10:47,"315 7th St, Portland, OR 97035" +321479,Bose SoundSport Headphones,1,99.99,12/14/19 20:06,"146 1st St, San Francisco, CA 94016" +321480,Macbook Pro Laptop,1,1700,12/20/19 11:18,"166 Lake St, Boston, MA 02215" +321481,USB-C Charging Cable,1,11.95,12/07/19 14:07,"895 12th St, Dallas, TX 75001" +321482,USB-C Charging Cable,1,11.95,12/03/19 19:08,"65 Lincoln St, New York City, NY 10001" +321483,AAA Batteries (4-pack),1,2.99,12/29/19 16:38,"827 Forest St, New York City, NY 10001" +321484,Flatscreen TV,1,300,12/24/19 13:32,"917 Park St, New York City, NY 10001" +321485,Lightning Charging Cable,1,14.95,12/20/19 11:43,"712 Elm St, San Francisco, CA 94016" +321486,USB-C Charging Cable,1,11.95,12/20/19 16:10,"77 Jefferson St, Austin, TX 73301" +321487,Lightning Charging Cable,1,14.95,12/06/19 09:54,"652 Cherry St, Boston, MA 02215" +321488,AAA Batteries (4-pack),1,2.99,12/19/19 17:24,"538 South St, Atlanta, GA 30301" +321489,AAA Batteries (4-pack),1,2.99,12/12/19 12:20,"695 Dogwood St, Dallas, TX 75001" +321490,Bose SoundSport Headphones,2,99.99,12/01/19 10:35,"621 2nd St, Seattle, WA 98101" +321491,Lightning Charging Cable,1,14.95,12/10/19 19:25,"45 Maple St, New York City, NY 10001" +321492,USB-C Charging Cable,1,11.95,12/05/19 13:52,"370 Elm St, New York City, NY 10001" +321493,USB-C Charging Cable,1,11.95,12/01/19 18:10,"787 12th St, Boston, MA 02215" +321494,Apple Airpods Headphones,1,150,12/22/19 14:01,"779 Forest St, Atlanta, GA 30301" +321495,27in 4K Gaming Monitor,1,389.99,12/21/19 13:19,"848 Sunset St, Atlanta, GA 30301" +321496,ThinkPad Laptop,1,999.99,12/14/19 15:14,"606 5th St, Los Angeles, CA 90001" +321497,AA Batteries (4-pack),1,3.84,12/19/19 11:28,"64 Chestnut St, San Francisco, CA 94016" +321498,Lightning Charging Cable,1,14.95,12/15/19 20:13,"490 Adams St, Los Angeles, CA 90001" +321499,Macbook Pro Laptop,1,1700,12/14/19 19:59,"883 Maple St, New York City, NY 10001" +321500,27in FHD Monitor,1,149.99,12/26/19 14:51,"534 Lakeview St, Dallas, TX 75001" +321501,Bose SoundSport Headphones,1,99.99,12/25/19 17:39,"698 Adams St, Dallas, TX 75001" +321502,USB-C Charging Cable,1,11.95,12/26/19 18:13,"468 Lakeview St, Seattle, WA 98101" +321503,AA Batteries (4-pack),2,3.84,12/13/19 10:57,"952 West St, Seattle, WA 98101" +321504,27in FHD Monitor,1,149.99,12/31/19 14:11,"26 Hickory St, Portland, OR 97035" +321505,34in Ultrawide Monitor,1,379.99,12/31/19 15:47,"32 4th St, San Francisco, CA 94016" +321506,Wired Headphones,1,11.99,12/20/19 16:33,"628 Jefferson St, San Francisco, CA 94016" +321507,Wired Headphones,1,11.99,12/07/19 23:33,"187 2nd St, San Francisco, CA 94016" +321508,AA Batteries (4-pack),1,3.84,12/12/19 15:16,"321 13th St, Los Angeles, CA 90001" +321509,Wired Headphones,1,11.99,12/09/19 20:11,"516 Johnson St, Dallas, TX 75001" +321510,USB-C Charging Cable,1,11.95,12/27/19 10:33,"468 Maple St, San Francisco, CA 94016" +321511,Bose SoundSport Headphones,1,99.99,12/15/19 17:13,"819 River St, San Francisco, CA 94016" +321512,27in 4K Gaming Monitor,1,389.99,12/31/19 20:14,"994 6th St, Seattle, WA 98101" +321513,Lightning Charging Cable,1,14.95,12/02/19 00:01,"922 South St, San Francisco, CA 94016" +321514,AAA Batteries (4-pack),2,2.99,12/25/19 21:11,"47 10th St, Austin, TX 73301" +321515,Wired Headphones,1,11.99,12/03/19 16:24,"398 Center St, Los Angeles, CA 90001" +321516,Wired Headphones,1,11.99,12/29/19 18:06,"911 Wilson St, Los Angeles, CA 90001" +,,,,, +321517,ThinkPad Laptop,1,999.99,12/03/19 10:46,"602 2nd St, San Francisco, CA 94016" +321518,Wired Headphones,1,11.99,12/17/19 15:05,"918 9th St, Boston, MA 02215" +321519,Bose SoundSport Headphones,1,99.99,12/10/19 18:49,"630 12th St, Los Angeles, CA 90001" +321520,27in FHD Monitor,1,149.99,12/23/19 14:34,"300 Jackson St, Atlanta, GA 30301" +321521,Wired Headphones,1,11.99,12/12/19 13:04,"659 Jackson St, Atlanta, GA 30301" +321522,27in 4K Gaming Monitor,1,389.99,12/16/19 15:45,"755 Sunset St, Portland, ME 04101" +321523,34in Ultrawide Monitor,1,379.99,12/16/19 22:20,"431 Adams St, New York City, NY 10001" +321524,ThinkPad Laptop,1,999.99,12/24/19 01:07,"83 14th St, Atlanta, GA 30301" +321525,27in 4K Gaming Monitor,1,389.99,12/11/19 11:42,"642 Cedar St, Dallas, TX 75001" +321526,iPhone,1,700,12/11/19 17:21,"63 Main St, Boston, MA 02215" +321527,AA Batteries (4-pack),1,3.84,12/05/19 23:42,"953 13th St, Portland, OR 97035" +321528,27in FHD Monitor,1,149.99,12/19/19 22:23,"471 Forest St, Los Angeles, CA 90001" +321529,Bose SoundSport Headphones,1,99.99,12/12/19 10:07,"46 Chestnut St, Dallas, TX 75001" +321530,27in 4K Gaming Monitor,1,389.99,12/22/19 08:42,"583 14th St, San Francisco, CA 94016" +321531,AA Batteries (4-pack),1,3.84,12/16/19 19:57,"353 Walnut St, Los Angeles, CA 90001" +321532,USB-C Charging Cable,1,11.95,12/07/19 19:21,"828 11th St, Atlanta, GA 30301" +321533,Lightning Charging Cable,1,14.95,12/07/19 14:02,"815 Jackson St, New York City, NY 10001" +321534,AAA Batteries (4-pack),1,2.99,12/09/19 18:00,"419 Cedar St, San Francisco, CA 94016" +321535,Google Phone,1,600,12/27/19 08:38,"221 Wilson St, Dallas, TX 75001" +321535,USB-C Charging Cable,1,11.95,12/27/19 08:38,"221 Wilson St, Dallas, TX 75001" +321536,iPhone,1,700,12/28/19 11:04,"372 12th St, Austin, TX 73301" +321537,ThinkPad Laptop,1,999.99,12/17/19 12:56,"178 9th St, Austin, TX 73301" +321538,Bose SoundSport Headphones,1,99.99,12/04/19 16:02,"25 South St, Atlanta, GA 30301" +321539,Wired Headphones,1,11.99,12/01/19 20:59,"674 Maple St, Portland, OR 97035" +321540,Bose SoundSport Headphones,1,99.99,12/09/19 04:21,"831 7th St, San Francisco, CA 94016" +321541,Wired Headphones,1,11.99,12/17/19 09:58,"330 Madison St, Boston, MA 02215" +321542,USB-C Charging Cable,1,11.95,12/12/19 14:33,"815 Wilson St, Los Angeles, CA 90001" +321543,Lightning Charging Cable,3,14.95,12/22/19 07:21,"50 Washington St, San Francisco, CA 94016" +321544,Lightning Charging Cable,1,14.95,12/09/19 17:54,"612 2nd St, San Francisco, CA 94016" +321545,Wired Headphones,1,11.99,12/26/19 09:58,"896 Madison St, New York City, NY 10001" +321545,27in FHD Monitor,1,149.99,12/26/19 09:58,"896 Madison St, New York City, NY 10001" +321546,AAA Batteries (4-pack),1,2.99,12/07/19 19:02,"821 1st St, Atlanta, GA 30301" +321547,27in FHD Monitor,1,149.99,12/05/19 21:47,"657 6th St, Los Angeles, CA 90001" +321548,AA Batteries (4-pack),2,3.84,12/17/19 11:08,"84 2nd St, Seattle, WA 98101" +321549,20in Monitor,1,109.99,12/03/19 18:08,"485 Church St, Boston, MA 02215" +321550,Lightning Charging Cable,1,14.95,12/08/19 10:30,"170 Ridge St, Los Angeles, CA 90001" +321551,USB-C Charging Cable,1,11.95,12/22/19 00:22,"192 6th St, San Francisco, CA 94016" +321552,Lightning Charging Cable,1,14.95,12/21/19 15:40,"77 Meadow St, Boston, MA 02215" +321553,34in Ultrawide Monitor,1,379.99,12/08/19 16:14,"639 Willow St, San Francisco, CA 94016" +321554,34in Ultrawide Monitor,1,379.99,12/02/19 11:44,"415 Dogwood St, New York City, NY 10001" +321555,Lightning Charging Cable,1,14.95,12/10/19 18:49,"755 South St, Austin, TX 73301" +321556,34in Ultrawide Monitor,1,379.99,12/25/19 17:06,"946 Walnut St, New York City, NY 10001" +321557,27in FHD Monitor,1,149.99,12/22/19 16:56,"906 Walnut St, Los Angeles, CA 90001" +321558,Flatscreen TV,1,300,12/13/19 19:33,"495 Wilson St, Atlanta, GA 30301" +321559,27in 4K Gaming Monitor,1,389.99,12/21/19 16:58,"641 Center St, San Francisco, CA 94016" +321560,AAA Batteries (4-pack),1,2.99,12/30/19 22:12,"158 Wilson St, Atlanta, GA 30301" +321561,Wired Headphones,1,11.99,12/19/19 08:00,"712 Lincoln St, Los Angeles, CA 90001" +321562,Bose SoundSport Headphones,1,99.99,12/29/19 18:20,"240 Ridge St, Dallas, TX 75001" +321563,20in Monitor,1,109.99,12/05/19 11:19,"954 West St, Atlanta, GA 30301" +321564,ThinkPad Laptop,1,999.99,12/02/19 15:54,"264 Jackson St, New York City, NY 10001" +321565,USB-C Charging Cable,1,11.95,12/03/19 12:52,"196 Cherry St, San Francisco, CA 94016" +321566,Wired Headphones,1,11.99,12/23/19 11:22,"251 Hickory St, Boston, MA 02215" +321567,Lightning Charging Cable,1,14.95,12/31/19 14:19,"106 Jefferson St, San Francisco, CA 94016" +321568,27in 4K Gaming Monitor,1,389.99,12/11/19 13:49,"175 Washington St, Los Angeles, CA 90001" +321569,Lightning Charging Cable,1,14.95,12/16/19 13:26,"764 Church St, Los Angeles, CA 90001" +321570,20in Monitor,1,109.99,12/04/19 07:01,"421 Cherry St, San Francisco, CA 94016" +321571,Flatscreen TV,1,300,12/09/19 10:28,"166 Meadow St, New York City, NY 10001" +321572,AA Batteries (4-pack),1,3.84,12/07/19 18:29,"2 Maple St, Seattle, WA 98101" +321573,Apple Airpods Headphones,1,150,12/08/19 15:55,"281 Hill St, Boston, MA 02215" +321574,Apple Airpods Headphones,1,150,12/25/19 19:40,"654 5th St, Austin, TX 73301" +321574,Wired Headphones,1,11.99,12/25/19 19:40,"654 5th St, Austin, TX 73301" +321575,AAA Batteries (4-pack),2,2.99,12/25/19 17:39,"467 Lake St, New York City, NY 10001" +321576,Lightning Charging Cable,1,14.95,12/16/19 20:40,"860 Main St, Boston, MA 02215" +321577,27in FHD Monitor,1,149.99,12/18/19 23:43,"307 Lincoln St, Boston, MA 02215" +321578,Wired Headphones,1,11.99,01/01/20 00:01,"76 Highland St, Los Angeles, CA 90001" +321579,Apple Airpods Headphones,1,150,12/13/19 14:01,"549 Lake St, San Francisco, CA 94016" +321580,Bose SoundSport Headphones,1,99.99,12/20/19 18:39,"412 River St, Austin, TX 73301" +321581,Apple Airpods Headphones,1,150,12/07/19 21:34,"876 12th St, San Francisco, CA 94016" +321582,Lightning Charging Cable,1,14.95,12/14/19 17:59,"481 Lake St, Atlanta, GA 30301" +321583,Wired Headphones,1,11.99,12/03/19 16:43,"448 Sunset St, Los Angeles, CA 90001" +321584,USB-C Charging Cable,1,11.95,12/10/19 17:43,"719 13th St, New York City, NY 10001" +321585,20in Monitor,1,109.99,12/19/19 18:54,"428 1st St, Boston, MA 02215" +321586,Wired Headphones,1,11.99,12/13/19 17:32,"54 10th St, Austin, TX 73301" +321587,USB-C Charging Cable,1,11.95,12/06/19 09:21,"230 8th St, Atlanta, GA 30301" +321588,Bose SoundSport Headphones,1,99.99,12/12/19 16:55,"43 5th St, Los Angeles, CA 90001" +321589,Wired Headphones,1,11.99,12/27/19 21:11,"164 4th St, Boston, MA 02215" +321590,AA Batteries (4-pack),1,3.84,12/20/19 18:14,"750 Washington St, Austin, TX 73301" +321591,Wired Headphones,1,11.99,12/26/19 19:08,"3 Main St, Los Angeles, CA 90001" +321592,USB-C Charging Cable,1,11.95,12/26/19 22:15,"932 Sunset St, Seattle, WA 98101" +321593,Wired Headphones,1,11.99,12/13/19 06:55,"581 West St, Portland, OR 97035" +321594,AA Batteries (4-pack),1,3.84,12/13/19 17:15,"146 Chestnut St, Dallas, TX 75001" +321595,AA Batteries (4-pack),1,3.84,12/03/19 11:40,"904 12th St, Portland, ME 04101" +321596,Lightning Charging Cable,1,14.95,12/30/19 01:37,"430 Elm St, Atlanta, GA 30301" +321597,20in Monitor,1,109.99,12/03/19 19:03,"441 4th St, Los Angeles, CA 90001" +321598,iPhone,1,700,12/29/19 08:04,"85 13th St, Seattle, WA 98101" +321599,Apple Airpods Headphones,1,150,12/05/19 12:09,"307 1st St, Dallas, TX 75001" +321600,USB-C Charging Cable,1,11.95,12/24/19 21:57,"775 Dogwood St, San Francisco, CA 94016" +321601,USB-C Charging Cable,1,11.95,12/04/19 14:38,"264 Cedar St, San Francisco, CA 94016" +321602,AAA Batteries (4-pack),1,2.99,12/05/19 14:32,"659 1st St, Austin, TX 73301" +321603,20in Monitor,1,109.99,12/28/19 13:14,"858 14th St, Atlanta, GA 30301" +321604,Apple Airpods Headphones,1,150,12/16/19 16:28,"530 11th St, Seattle, WA 98101" +321605,AA Batteries (4-pack),1,3.84,12/19/19 21:56,"136 6th St, Dallas, TX 75001" +321606,Lightning Charging Cable,1,14.95,12/13/19 20:50,"107 South St, San Francisco, CA 94016" +321607,AAA Batteries (4-pack),2,2.99,12/22/19 12:29,"958 Forest St, Los Angeles, CA 90001" +321608,Google Phone,1,600,12/16/19 19:27,"795 Forest St, San Francisco, CA 94016" +321609,Wired Headphones,1,11.99,12/05/19 15:03,"965 2nd St, San Francisco, CA 94016" +321610,Vareebadd Phone,1,400,12/05/19 00:38,"722 7th St, Boston, MA 02215" +321611,Apple Airpods Headphones,1,150,12/26/19 18:06,"276 Main St, San Francisco, CA 94016" +321612,Bose SoundSport Headphones,1,99.99,12/22/19 11:58,"294 13th St, Los Angeles, CA 90001" +321613,Wired Headphones,1,11.99,12/14/19 13:50,"232 Church St, Seattle, WA 98101" +321614,Lightning Charging Cable,1,14.95,12/31/19 19:58,"238 4th St, San Francisco, CA 94016" +321615,Bose SoundSport Headphones,1,99.99,12/04/19 17:02,"325 River St, Dallas, TX 75001" +321616,Wired Headphones,1,11.99,12/07/19 20:45,"659 North St, San Francisco, CA 94016" +321617,AA Batteries (4-pack),1,3.84,12/04/19 16:43,"546 West St, New York City, NY 10001" +321618,AAA Batteries (4-pack),1,2.99,12/15/19 01:15,"905 Lincoln St, Portland, OR 97035" +321619,Vareebadd Phone,1,400,12/23/19 19:17,"824 Forest St, Boston, MA 02215" +321619,Wired Headphones,1,11.99,12/23/19 19:17,"824 Forest St, Boston, MA 02215" +321620,Macbook Pro Laptop,1,1700,12/08/19 08:45,"318 4th St, Dallas, TX 75001" +321621,27in 4K Gaming Monitor,1,389.99,12/26/19 19:38,"893 Church St, San Francisco, CA 94016" +321622,AAA Batteries (4-pack),1,2.99,12/16/19 16:30,"434 Hill St, Los Angeles, CA 90001" +321623,Apple Airpods Headphones,1,150,12/30/19 10:31,"287 Cedar St, Portland, ME 04101" +321624,USB-C Charging Cable,2,11.95,12/08/19 10:56,"180 8th St, Atlanta, GA 30301" +321625,AAA Batteries (4-pack),2,2.99,12/06/19 20:50,"753 Cherry St, Seattle, WA 98101" +321626,20in Monitor,1,109.99,12/09/19 11:54,"728 Meadow St, Austin, TX 73301" +321627,AA Batteries (4-pack),1,3.84,12/14/19 01:29,"704 7th St, New York City, NY 10001" +321628,Bose SoundSport Headphones,1,99.99,12/19/19 20:09,"607 Lake St, New York City, NY 10001" +321629,Apple Airpods Headphones,1,150,12/15/19 22:32,"584 5th St, Boston, MA 02215" +321630,AAA Batteries (4-pack),1,2.99,12/10/19 22:06,"795 Cedar St, Boston, MA 02215" +321631,AA Batteries (4-pack),1,3.84,12/22/19 06:39,"201 Walnut St, New York City, NY 10001" +321632,Lightning Charging Cable,1,14.95,12/01/19 23:13,"383 Forest St, New York City, NY 10001" +321633,27in 4K Gaming Monitor,1,389.99,12/21/19 19:25,"681 Cherry St, San Francisco, CA 94016" +321634,AAA Batteries (4-pack),1,2.99,12/12/19 19:16,"169 Hickory St, Boston, MA 02215" +321635,AAA Batteries (4-pack),1,2.99,12/21/19 00:37,"44 Spruce St, San Francisco, CA 94016" +321636,Flatscreen TV,1,300,12/11/19 14:30,"959 Park St, New York City, NY 10001" +321637,Apple Airpods Headphones,1,150,12/17/19 17:12,"199 Wilson St, New York City, NY 10001" +321638,Wired Headphones,1,11.99,12/01/19 21:46,"963 12th St, San Francisco, CA 94016" +321639,Lightning Charging Cable,1,14.95,12/28/19 17:22,"851 Hickory St, Boston, MA 02215" +321640,Wired Headphones,1,11.99,12/02/19 19:50,"474 9th St, Atlanta, GA 30301" +321641,AAA Batteries (4-pack),4,2.99,12/18/19 20:35,"416 South St, Atlanta, GA 30301" +321642,27in 4K Gaming Monitor,1,389.99,12/26/19 09:07,"224 Johnson St, Boston, MA 02215" +321643,27in 4K Gaming Monitor,1,389.99,12/11/19 02:20,"563 Sunset St, New York City, NY 10001" +321644,AA Batteries (4-pack),1,3.84,12/16/19 14:07,"129 Meadow St, San Francisco, CA 94016" +321645,ThinkPad Laptop,1,999.99,12/08/19 15:42,"383 Meadow St, San Francisco, CA 94016" +321646,Lightning Charging Cable,1,14.95,12/23/19 20:31,"755 Highland St, Boston, MA 02215" +321647,Lightning Charging Cable,1,14.95,12/10/19 17:53,"477 10th St, Seattle, WA 98101" +321648,Bose SoundSport Headphones,1,99.99,12/06/19 12:09,"680 8th St, Dallas, TX 75001" +321649,27in 4K Gaming Monitor,1,389.99,12/03/19 09:08,"531 Cedar St, Los Angeles, CA 90001" +321650,Lightning Charging Cable,1,14.95,12/31/19 18:06,"49 Main St, New York City, NY 10001" +321651,Apple Airpods Headphones,1,150,12/11/19 18:04,"482 Lake St, San Francisco, CA 94016" +321652,Bose SoundSport Headphones,1,99.99,12/03/19 16:09,"467 Dogwood St, Atlanta, GA 30301" +321653,27in FHD Monitor,1,149.99,12/31/19 11:53,"512 Pine St, Portland, ME 04101" +321654,USB-C Charging Cable,1,11.95,12/20/19 17:55,"927 8th St, Los Angeles, CA 90001" +321655,AAA Batteries (4-pack),1,2.99,12/28/19 12:46,"743 Cedar St, Atlanta, GA 30301" +321656,34in Ultrawide Monitor,1,379.99,12/18/19 15:20,"550 North St, Boston, MA 02215" +321657,AA Batteries (4-pack),1,3.84,12/11/19 22:01,"180 9th St, Portland, OR 97035" +321658,USB-C Charging Cable,1,11.95,12/19/19 13:10,"990 8th St, Los Angeles, CA 90001" +321659,Google Phone,1,600,12/14/19 19:55,"755 Johnson St, Austin, TX 73301" +321660,AAA Batteries (4-pack),1,2.99,12/26/19 17:31,"534 West St, Los Angeles, CA 90001" +321661,USB-C Charging Cable,1,11.95,12/14/19 15:14,"596 Lakeview St, New York City, NY 10001" +321662,AA Batteries (4-pack),1,3.84,12/01/19 21:18,"447 Center St, Dallas, TX 75001" +321663,34in Ultrawide Monitor,1,379.99,12/30/19 14:33,"941 Madison St, Austin, TX 73301" +321664,Apple Airpods Headphones,1,150,12/24/19 10:58,"394 Elm St, Atlanta, GA 30301" +321665,AAA Batteries (4-pack),1,2.99,12/02/19 07:46,"9 6th St, Austin, TX 73301" +321666,Wired Headphones,1,11.99,12/17/19 18:44,"149 Adams St, San Francisco, CA 94016" +321667,27in 4K Gaming Monitor,1,389.99,12/09/19 17:02,"572 Hill St, San Francisco, CA 94016" +321668,27in 4K Gaming Monitor,1,389.99,12/16/19 23:08,"213 14th St, Seattle, WA 98101" +321669,AA Batteries (4-pack),1,3.84,12/17/19 19:35,"768 Willow St, New York City, NY 10001" +321670,Wired Headphones,1,11.99,12/27/19 19:14,"917 Madison St, Dallas, TX 75001" +321671,AA Batteries (4-pack),3,3.84,12/29/19 17:48,"462 6th St, Boston, MA 02215" +321672,AA Batteries (4-pack),1,3.84,12/06/19 14:05,"966 Madison St, Seattle, WA 98101" +321673,AAA Batteries (4-pack),1,2.99,12/01/19 22:54,"120 Forest St, Boston, MA 02215" +321674,Wired Headphones,1,11.99,12/24/19 17:04,"382 West St, New York City, NY 10001" +321675,AAA Batteries (4-pack),1,2.99,12/24/19 18:44,"268 Meadow St, New York City, NY 10001" +321676,Google Phone,1,600,12/19/19 10:13,"393 5th St, San Francisco, CA 94016" +321677,AAA Batteries (4-pack),2,2.99,12/14/19 11:29,"778 11th St, San Francisco, CA 94016" +321678,iPhone,1,700,12/05/19 18:41,"384 Johnson St, Los Angeles, CA 90001" +321679,USB-C Charging Cable,1,11.95,12/01/19 09:10,"538 Maple St, San Francisco, CA 94016" +321680,LG Washing Machine,1,600.0,12/27/19 19:30,"156 Adams St, Dallas, TX 75001" +321681,20in Monitor,1,109.99,12/23/19 22:37,"637 Church St, San Francisco, CA 94016" +159657,AAA Batteries (4-pack),2,2.99,02/11/19 18:04,"932 5th St, San Francisco, CA 94016" +159657,Wired Headphones,1,11.99,02/11/19 18:04,"932 5th St, San Francisco, CA 94016" +159658,Lightning Charging Cable,1,14.95,02/14/19 21:06,"738 West St, Atlanta, GA 30301" +159659,iPhone,1,700.0,02/01/19 15:35,"917 Hickory St, Atlanta, GA 30301" +159660,Apple Airpods Headphones,1,150.0,02/01/19 20:06,"461 Lake St, San Francisco, CA 94016" +159661,Macbook Pro Laptop,1,1700.0,02/16/19 10:20,"381 Hill St, Portland, OR 97035" +159662,20in Monitor,1,109.99,02/26/19 23:40,"784 Cedar St, San Francisco, CA 94016" +159663,Apple Airpods Headphones,1,150.0,02/12/19 18:44,"253 Jackson St, Austin, TX 73301" +159664,USB-C Charging Cable,1,11.95,02/07/19 01:00,"808 13th St, Dallas, TX 75001" +159665,Wired Headphones,1,11.99,02/04/19 18:23,"304 1st St, Seattle, WA 98101" +159666,LG Dryer,1,600.0,02/07/19 14:22,"233 2nd St, Los Angeles, CA 90001" +159667,AAA Batteries (4-pack),1,2.99,02/13/19 09:13,"72 Forest St, Boston, MA 02215" +159668,Apple Airpods Headphones,1,150.0,02/28/19 13:01,"192 Sunset St, San Francisco, CA 94016" +159668,USB-C Charging Cable,1,11.95,02/28/19 13:01,"192 Sunset St, San Francisco, CA 94016" +159669,Bose SoundSport Headphones,1,99.99,02/02/19 22:17,"45 Pine St, Boston, MA 02215" +159670,AA Batteries (4-pack),1,3.84,02/02/19 18:49,"280 Adams St, Austin, TX 73301" +159671,iPhone,1,700.0,02/24/19 21:00,"591 Madison St, Boston, MA 02215" +159672,AA Batteries (4-pack),1,3.84,02/27/19 09:47,"516 Pine St, Boston, MA 02215" +159673,Wired Headphones,1,11.99,02/21/19 20:11,"842 Johnson St, New York City, NY 10001" +159674,USB-C Charging Cable,1,11.95,02/01/19 18:47,"578 North St, Los Angeles, CA 90001" +159675,Bose SoundSport Headphones,1,99.99,02/18/19 17:30,"472 10th St, Atlanta, GA 30301" +159676,Lightning Charging Cable,1,14.95,02/24/19 07:42,"644 4th St, Seattle, WA 98101" +159677,Apple Airpods Headphones,1,150.0,02/03/19 16:54,"644 Sunset St, Boston, MA 02215" +159677,Macbook Pro Laptop,1,1700.0,02/03/19 16:54,"644 Sunset St, Boston, MA 02215" +159678,Apple Airpods Headphones,1,150.0,02/10/19 21:38,"469 Adams St, Atlanta, GA 30301" +159679,Wired Headphones,1,11.99,02/24/19 21:02,"334 4th St, Boston, MA 02215" +159680,USB-C Charging Cable,1,11.95,02/10/19 12:18,"665 Washington St, New York City, NY 10001" +159681,USB-C Charging Cable,1,11.95,02/14/19 12:54,"912 Center St, Los Angeles, CA 90001" +159682,Flatscreen TV,1,300.0,02/19/19 12:45,"134 Pine St, Los Angeles, CA 90001" +159683,AAA Batteries (4-pack),1,2.99,02/08/19 19:21,"137 River St, San Francisco, CA 94016" +159684,Apple Airpods Headphones,1,150.0,02/26/19 12:23,"720 Jefferson St, Atlanta, GA 30301" +159685,AAA Batteries (4-pack),2,2.99,02/19/19 21:09,"667 Ridge St, Los Angeles, CA 90001" +159686,Google Phone,1,600.0,02/07/19 21:15,"5 8th St, Los Angeles, CA 90001" +159687,AA Batteries (4-pack),2,3.84,02/17/19 20:18,"360 North St, San Francisco, CA 94016" +159688,USB-C Charging Cable,2,11.95,02/11/19 19:43,"993 Willow St, San Francisco, CA 94016" +159689,Apple Airpods Headphones,1,150.0,02/14/19 09:01,"487 Main St, Atlanta, GA 30301" +159690,AA Batteries (4-pack),1,3.84,02/11/19 10:24,"974 Wilson St, Seattle, WA 98101" +159691,iPhone,1,700.0,02/11/19 21:32,"385 Walnut St, Los Angeles, CA 90001" +159692,Wired Headphones,1,11.99,02/07/19 16:29,"872 Maple St, Austin, TX 73301" +159693,Bose SoundSport Headphones,1,99.99,02/24/19 17:46,"197 Highland St, Seattle, WA 98101" +159694,Lightning Charging Cable,1,14.95,02/09/19 10:03,"263 Madison St, San Francisco, CA 94016" +159695,Apple Airpods Headphones,1,150.0,02/02/19 00:19,"727 Dogwood St, New York City, NY 10001" +159696,AAA Batteries (4-pack),3,2.99,02/01/19 21:00,"400 Park St, New York City, NY 10001" +159697,Lightning Charging Cable,1,14.95,02/25/19 15:49,"44 7th St, New York City, NY 10001" +159698,USB-C Charging Cable,1,11.95,03/01/19 01:13,"913 Meadow St, New York City, NY 10001" +159699,AA Batteries (4-pack),1,3.84,02/13/19 18:19,"333 Jackson St, Boston, MA 02215" +159700,AAA Batteries (4-pack),1,2.99,02/23/19 11:44,"715 Adams St, New York City, NY 10001" +159701,AAA Batteries (4-pack),1,2.99,02/01/19 13:01,"249 11th St, San Francisco, CA 94016" +159702,Macbook Pro Laptop,1,1700.0,02/12/19 23:55,"118 Walnut St, Austin, TX 73301" +159703,Macbook Pro Laptop,1,1700.0,02/26/19 20:54,"782 4th St, San Francisco, CA 94016" +159704,Bose SoundSport Headphones,1,99.99,02/27/19 20:44,"971 Lincoln St, Los Angeles, CA 90001" +159705,Lightning Charging Cable,1,14.95,02/19/19 08:35,"233 Cherry St, New York City, NY 10001" +159706,USB-C Charging Cable,1,11.95,02/19/19 00:01,"590 Lake St, Seattle, WA 98101" +159707,34in Ultrawide Monitor,1,379.99,02/17/19 19:16,"130 North St, Los Angeles, CA 90001" +159708,Wired Headphones,1,11.99,02/07/19 10:11,"799 Meadow St, Los Angeles, CA 90001" +159708,AAA Batteries (4-pack),2,2.99,02/07/19 10:11,"799 Meadow St, Los Angeles, CA 90001" +159709,Lightning Charging Cable,1,14.95,02/25/19 16:33,"567 14th St, Los Angeles, CA 90001" +159710,AA Batteries (4-pack),1,3.84,02/23/19 13:17,"104 5th St, Austin, TX 73301" +159711,Apple Airpods Headphones,1,150.0,02/13/19 22:33,"509 Maple St, Los Angeles, CA 90001" +159712,Lightning Charging Cable,2,14.95,02/07/19 16:13,"433 Dogwood St, San Francisco, CA 94016" +159713,Macbook Pro Laptop,1,1700.0,02/07/19 15:53,"426 Jackson St, Portland, OR 97035" +159714,ThinkPad Laptop,1,999.99,02/21/19 00:22,"713 9th St, Portland, OR 97035" +159715,Apple Airpods Headphones,1,150.0,02/17/19 15:40,"240 Dogwood St, Los Angeles, CA 90001" +159716,27in 4K Gaming Monitor,1,389.99,02/23/19 23:33,"662 Ridge St, Seattle, WA 98101" +159717,Wired Headphones,1,11.99,02/22/19 21:09,"774 Hickory St, Los Angeles, CA 90001" +159718,Lightning Charging Cable,1,14.95,02/06/19 06:54,"784 Park St, San Francisco, CA 94016" +159719,Wired Headphones,1,11.99,02/07/19 07:55,"191 Hill St, Dallas, TX 75001" +159720,27in FHD Monitor,1,149.99,02/14/19 16:40,"503 Cedar St, Los Angeles, CA 90001" +159721,Macbook Pro Laptop,1,1700.0,02/12/19 17:55,"463 7th St, Seattle, WA 98101" +159722,34in Ultrawide Monitor,1,379.99,02/22/19 15:40,"78 Park St, San Francisco, CA 94016" +159723,AAA Batteries (4-pack),1,2.99,02/27/19 18:29,"404 Dogwood St, Seattle, WA 98101" +159724,Wired Headphones,1,11.99,02/25/19 11:58,"592 12th St, Boston, MA 02215" +159725,ThinkPad Laptop,1,999.99,02/10/19 17:55,"374 Maple St, Los Angeles, CA 90001" +159726,AA Batteries (4-pack),1,3.84,02/07/19 19:09,"130 14th St, Los Angeles, CA 90001" +159727,Apple Airpods Headphones,1,150.0,02/24/19 12:14,"560 Johnson St, Atlanta, GA 30301" +159728,AA Batteries (4-pack),1,3.84,02/10/19 08:32,"214 Jackson St, New York City, NY 10001" +159729,AA Batteries (4-pack),1,3.84,02/17/19 20:45,"742 8th St, Atlanta, GA 30301" +159730,Apple Airpods Headphones,1,150.0,02/12/19 14:09,"397 South St, Atlanta, GA 30301" +159731,Google Phone,1,600.0,02/12/19 17:40,"383 River St, Boston, MA 02215" +159731,USB-C Charging Cable,1,11.95,02/12/19 17:40,"383 River St, Boston, MA 02215" +159732,AA Batteries (4-pack),1,3.84,02/20/19 18:38,"518 11th St, Dallas, TX 75001" +159733,27in 4K Gaming Monitor,1,389.99,02/02/19 11:35,"588 Main St, San Francisco, CA 94016" +159734,Vareebadd Phone,1,400.0,02/12/19 17:14,"878 1st St, Los Angeles, CA 90001" +159735,AAA Batteries (4-pack),1,2.99,02/04/19 11:06,"346 Maple St, Atlanta, GA 30301" +159736,AAA Batteries (4-pack),1,2.99,02/10/19 22:35,"255 8th St, New York City, NY 10001" +159737,AA Batteries (4-pack),1,3.84,02/01/19 17:22,"460 Willow St, San Francisco, CA 94016" +159738,27in FHD Monitor,1,149.99,02/19/19 13:38,"904 Lake St, New York City, NY 10001" +159739,iPhone,1,700.0,02/16/19 15:05,"883 Chestnut St, Los Angeles, CA 90001" +159740,USB-C Charging Cable,1,11.95,02/15/19 17:22,"102 2nd St, Dallas, TX 75001" +159741,Google Phone,1,600.0,02/12/19 12:11,"12 Johnson St, Los Angeles, CA 90001" +159742,Bose SoundSport Headphones,1,99.99,02/22/19 15:10,"538 11th St, Los Angeles, CA 90001" +159743,Lightning Charging Cable,1,14.95,02/23/19 03:09,"489 2nd St, Seattle, WA 98101" +159744,AAA Batteries (4-pack),2,2.99,02/25/19 16:51,"303 Lakeview St, Atlanta, GA 30301" +159745,27in 4K Gaming Monitor,1,389.99,02/07/19 11:14,"41 North St, Dallas, TX 75001" +159746,AA Batteries (4-pack),1,3.84,02/02/19 21:58,"15 Hickory St, Los Angeles, CA 90001" +159747,Apple Airpods Headphones,1,150.0,02/02/19 18:46,"596 Wilson St, Atlanta, GA 30301" +159748,Apple Airpods Headphones,1,150.0,02/22/19 11:37,"915 Jackson St, Los Angeles, CA 90001" +159749,Lightning Charging Cable,1,14.95,02/08/19 00:17,"768 Cedar St, San Francisco, CA 94016" +159750,AAA Batteries (4-pack),1,2.99,02/17/19 10:05,"378 Forest St, New York City, NY 10001" +159751,AAA Batteries (4-pack),2,2.99,02/19/19 12:57,"504 Church St, Portland, OR 97035" +159752,AAA Batteries (4-pack),1,2.99,02/14/19 21:58,"95 10th St, Dallas, TX 75001" +159753,USB-C Charging Cable,1,11.95,02/13/19 08:30,"994 13th St, New York City, NY 10001" +159754,iPhone,1,700.0,02/01/19 08:39,"842 Main St, Boston, MA 02215" +159755,Wired Headphones,1,11.99,02/09/19 02:46,"31 Lake St, Atlanta, GA 30301" +159756,20in Monitor,1,109.99,02/02/19 23:12,"935 South St, Los Angeles, CA 90001" +159757,Google Phone,1,600.0,02/09/19 09:58,"271 1st St, San Francisco, CA 94016" +159758,Macbook Pro Laptop,1,1700.0,02/16/19 09:37,"446 13th St, Los Angeles, CA 90001" +159759,Apple Airpods Headphones,1,150.0,02/11/19 13:25,"293 Cherry St, Atlanta, GA 30301" +159760,AA Batteries (4-pack),1,3.84,02/13/19 05:56,"670 Walnut St, Dallas, TX 75001" +159761,Bose SoundSport Headphones,1,99.99,02/06/19 09:48,"426 2nd St, Boston, MA 02215" +159762,27in FHD Monitor,1,149.99,02/09/19 19:49,"174 Cedar St, Atlanta, GA 30301" +159763,Bose SoundSport Headphones,1,99.99,02/16/19 17:10,"130 10th St, Dallas, TX 75001" +159764,Macbook Pro Laptop,1,1700.0,02/24/19 14:29,"496 Highland St, Seattle, WA 98101" +159765,Vareebadd Phone,1,400.0,02/02/19 13:55,"467 Chestnut St, Dallas, TX 75001" +159766,Apple Airpods Headphones,1,150.0,02/17/19 21:22,"840 13th St, New York City, NY 10001" +159767,Apple Airpods Headphones,1,150.0,02/05/19 20:48,"437 4th St, Portland, OR 97035" +159768,LG Washing Machine,1,600.0,02/13/19 17:30,"128 1st St, Atlanta, GA 30301" +159769,Bose SoundSport Headphones,1,99.99,02/25/19 21:38,"251 Madison St, New York City, NY 10001" +159770,Wired Headphones,1,11.99,02/16/19 07:42,"977 5th St, Dallas, TX 75001" +159771,Flatscreen TV,1,300.0,02/11/19 17:48,"912 7th St, New York City, NY 10001" +159772,AAA Batteries (4-pack),1,2.99,02/26/19 10:33,"201 Jackson St, San Francisco, CA 94016" +159773,27in FHD Monitor,1,149.99,02/18/19 20:53,"654 North St, New York City, NY 10001" +159774,Apple Airpods Headphones,1,150.0,02/17/19 21:23,"903 Maple St, Boston, MA 02215" +159775,Apple Airpods Headphones,1,150.0,02/25/19 21:22,"627 Hill St, San Francisco, CA 94016" +159776,Apple Airpods Headphones,1,150.0,02/24/19 18:30,"636 8th St, Los Angeles, CA 90001" +159777,AA Batteries (4-pack),1,3.84,02/11/19 08:49,"306 Lakeview St, San Francisco, CA 94016" +159778,USB-C Charging Cable,1,11.95,02/05/19 21:38,"97 Pine St, Boston, MA 02215" +159779,Apple Airpods Headphones,1,150.0,02/18/19 10:04,"373 5th St, Dallas, TX 75001" +159780,27in FHD Monitor,1,149.99,02/17/19 13:31,"934 Maple St, Dallas, TX 75001" +159781,Lightning Charging Cable,1,14.95,02/04/19 07:08,"656 4th St, San Francisco, CA 94016" +159782,Apple Airpods Headphones,1,150.0,02/10/19 22:30,"400 South St, Portland, OR 97035" +159783,AA Batteries (4-pack),2,3.84,02/08/19 18:55,"154 6th St, San Francisco, CA 94016" +159784,Wired Headphones,1,11.99,02/20/19 13:04,"445 Church St, San Francisco, CA 94016" +159785,AA Batteries (4-pack),1,3.84,02/10/19 01:30,"886 Dogwood St, New York City, NY 10001" +159786,AAA Batteries (4-pack),1,2.99,02/08/19 10:18,"828 Washington St, Atlanta, GA 30301" +159786,20in Monitor,1,109.99,02/08/19 10:18,"828 Washington St, Atlanta, GA 30301" +159787,Wired Headphones,1,11.99,02/17/19 19:57,"215 Ridge St, New York City, NY 10001" +159788,Apple Airpods Headphones,1,150.0,02/21/19 12:08,"320 Park St, New York City, NY 10001" +159789,AA Batteries (4-pack),1,3.84,02/02/19 11:05,"832 Elm St, Boston, MA 02215" +159790,AAA Batteries (4-pack),1,2.99,02/26/19 15:18,"561 West St, Dallas, TX 75001" +159791,USB-C Charging Cable,2,11.95,02/06/19 19:42,"979 13th St, Boston, MA 02215" +159792,AAA Batteries (4-pack),3,2.99,02/22/19 05:16,"75 Madison St, Portland, OR 97035" +159793,AA Batteries (4-pack),1,3.84,02/13/19 14:28,"211 11th St, New York City, NY 10001" +159794,Wired Headphones,1,11.99,02/11/19 14:29,"865 Sunset St, Atlanta, GA 30301" +159795,AAA Batteries (4-pack),1,2.99,02/23/19 13:31,"30 5th St, New York City, NY 10001" +159796,Macbook Pro Laptop,1,1700.0,02/28/19 22:49,"476 Spruce St, San Francisco, CA 94016" +159797,20in Monitor,1,109.99,02/03/19 10:12,"912 Dogwood St, Dallas, TX 75001" +159798,Macbook Pro Laptop,1,1700.0,03/01/19 01:36,"796 Washington St, Los Angeles, CA 90001" +159799,AA Batteries (4-pack),2,3.84,02/07/19 13:52,"482 Walnut St, San Francisco, CA 94016" +159800,USB-C Charging Cable,1,11.95,02/01/19 21:09,"881 Chestnut St, Boston, MA 02215" +159801,AAA Batteries (4-pack),1,2.99,02/22/19 18:05,"95 Hill St, San Francisco, CA 94016" +159802,27in FHD Monitor,1,149.99,02/27/19 20:51,"667 Cherry St, Seattle, WA 98101" +159803,Macbook Pro Laptop,1,1700.0,02/25/19 18:12,"204 Wilson St, San Francisco, CA 94016" +159804,Apple Airpods Headphones,1,150.0,02/01/19 13:28,"579 Walnut St, San Francisco, CA 94016" +159805,Lightning Charging Cable,1,14.95,02/22/19 16:40,"322 River St, Los Angeles, CA 90001" +159806,Macbook Pro Laptop,1,1700.0,02/24/19 21:32,"944 9th St, Dallas, TX 75001" +159807,Apple Airpods Headphones,1,150.0,02/15/19 18:51,"441 Cherry St, Los Angeles, CA 90001" +159808,Bose SoundSport Headphones,1,99.99,02/10/19 09:05,"796 West St, San Francisco, CA 94016" +159808,Lightning Charging Cable,1,14.95,02/10/19 09:05,"796 West St, San Francisco, CA 94016" +159809,Flatscreen TV,1,300.0,02/06/19 17:21,"604 Pine St, San Francisco, CA 94016" +159810,Bose SoundSport Headphones,1,99.99,02/18/19 16:40,"774 Church St, Seattle, WA 98101" +159811,AA Batteries (4-pack),2,3.84,02/25/19 11:30,"624 Hickory St, Portland, ME 04101" +159812,AAA Batteries (4-pack),1,2.99,02/06/19 10:15,"694 Chestnut St, San Francisco, CA 94016" +159812,27in 4K Gaming Monitor,1,389.99,02/06/19 10:15,"694 Chestnut St, San Francisco, CA 94016" +159813,27in 4K Gaming Monitor,1,389.99,02/20/19 22:17,"765 Maple St, Seattle, WA 98101" +159814,Lightning Charging Cable,1,14.95,02/17/19 21:12,"253 Wilson St, Boston, MA 02215" +159815,USB-C Charging Cable,1,11.95,02/24/19 19:38,"83 South St, Seattle, WA 98101" +159816,Flatscreen TV,1,300.0,02/02/19 13:59,"876 Sunset St, New York City, NY 10001" +159817,Macbook Pro Laptop,1,1700.0,02/03/19 21:19,"82 Pine St, San Francisco, CA 94016" +159818,34in Ultrawide Monitor,1,379.99,02/22/19 11:51,"716 Cherry St, Seattle, WA 98101" +159819,iPhone,1,700.0,02/02/19 12:36,"578 Jefferson St, New York City, NY 10001" +159820,AA Batteries (4-pack),1,3.84,02/18/19 20:07,"820 1st St, Seattle, WA 98101" +159821,Lightning Charging Cable,1,14.95,02/21/19 00:36,"926 Forest St, Los Angeles, CA 90001" +159822,20in Monitor,1,109.99,02/28/19 10:52,"82 Pine St, Portland, OR 97035" +159823,AA Batteries (4-pack),4,3.84,02/18/19 12:09,"309 Johnson St, Boston, MA 02215" +159824,AA Batteries (4-pack),1,3.84,02/11/19 21:48,"440 Adams St, Atlanta, GA 30301" +159825,Wired Headphones,1,11.99,02/22/19 08:14,"38 6th St, Los Angeles, CA 90001" +159826,AA Batteries (4-pack),1,3.84,02/06/19 19:39,"98 Willow St, Dallas, TX 75001" +159827,AAA Batteries (4-pack),1,2.99,02/03/19 17:54,"434 Hill St, Dallas, TX 75001" +159828,LG Washing Machine,1,600.0,02/19/19 13:29,"195 Willow St, Los Angeles, CA 90001" +159829,AAA Batteries (4-pack),2,2.99,02/10/19 21:43,"381 6th St, San Francisco, CA 94016" +159830,Lightning Charging Cable,1,14.95,02/25/19 11:15,"404 10th St, New York City, NY 10001" +159831,USB-C Charging Cable,1,11.95,02/02/19 20:29,"649 Spruce St, New York City, NY 10001" +159832,Lightning Charging Cable,2,14.95,02/20/19 20:54,"484 2nd St, San Francisco, CA 94016" +159833,27in FHD Monitor,1,149.99,02/08/19 21:15,"795 Walnut St, Boston, MA 02215" +159834,34in Ultrawide Monitor,1,379.99,02/17/19 02:19,"810 10th St, New York City, NY 10001" +159835,Flatscreen TV,1,300.0,02/20/19 20:56,"298 Adams St, New York City, NY 10001" +159836,27in FHD Monitor,1,149.99,02/18/19 14:11,"684 Main St, Portland, OR 97035" +159837,Wired Headphones,3,11.99,02/25/19 19:49,"741 5th St, Los Angeles, CA 90001" +159838,AA Batteries (4-pack),2,3.84,02/23/19 09:09,"755 Walnut St, Portland, OR 97035" +159839,34in Ultrawide Monitor,1,379.99,02/17/19 21:59,"448 Elm St, Los Angeles, CA 90001" +159840,Wired Headphones,1,11.99,02/25/19 14:09,"957 Jefferson St, Los Angeles, CA 90001" +159841,Lightning Charging Cable,3,14.95,02/06/19 12:27,"995 Sunset St, New York City, NY 10001" +159842,AAA Batteries (4-pack),1,2.99,02/27/19 20:00,"141 Dogwood St, Seattle, WA 98101" +159843,Wired Headphones,1,11.99,02/15/19 12:41,"568 2nd St, San Francisco, CA 94016" +159844,AA Batteries (4-pack),1,3.84,02/08/19 16:28,"303 7th St, Dallas, TX 75001" +159844,USB-C Charging Cable,1,11.95,02/08/19 16:28,"303 7th St, Dallas, TX 75001" +159845,AAA Batteries (4-pack),4,2.99,02/02/19 10:28,"163 Cherry St, New York City, NY 10001" +159846,USB-C Charging Cable,2,11.95,02/11/19 11:58,"197 Elm St, Portland, OR 97035" +159847,Wired Headphones,3,11.99,02/07/19 12:06,"219 Wilson St, San Francisco, CA 94016" +159848,USB-C Charging Cable,1,11.95,02/04/19 22:53,"18 Walnut St, Atlanta, GA 30301" +159849,Google Phone,1,600.0,02/20/19 06:50,"727 Church St, San Francisco, CA 94016" +159850,Wired Headphones,1,11.99,02/01/19 12:36,"276 Dogwood St, Boston, MA 02215" +159851,iPhone,1,700.0,02/28/19 21:42,"827 Jackson St, New York City, NY 10001" +159852,AA Batteries (4-pack),1,3.84,02/12/19 14:40,"493 Park St, San Francisco, CA 94016" +159853,Wired Headphones,1,11.99,02/02/19 15:31,"425 Forest St, Boston, MA 02215" +159854,AA Batteries (4-pack),1,3.84,02/28/19 15:48,"115 Center St, Los Angeles, CA 90001" +159855,Lightning Charging Cable,1,14.95,02/03/19 11:12,"356 Sunset St, Los Angeles, CA 90001" +159856,Bose SoundSport Headphones,1,99.99,02/19/19 22:35,"261 Cedar St, New York City, NY 10001" +159857,27in FHD Monitor,1,149.99,02/25/19 18:58,"185 14th St, Los Angeles, CA 90001" +159858,34in Ultrawide Monitor,1,379.99,02/21/19 15:24,"965 Park St, Dallas, TX 75001" +159859,ThinkPad Laptop,1,999.99,02/19/19 06:59,"376 Wilson St, Austin, TX 73301" +159860,Lightning Charging Cable,1,14.95,02/17/19 23:16,"709 Ridge St, Portland, OR 97035" +159861,Google Phone,1,600.0,02/02/19 09:44,"289 8th St, Austin, TX 73301" +159862,iPhone,1,700.0,02/16/19 11:18,"827 Ridge St, Boston, MA 02215" +159863,iPhone,1,700.0,02/13/19 19:41,"929 6th St, Austin, TX 73301" +159864,AAA Batteries (4-pack),2,2.99,02/15/19 00:05,"673 14th St, Portland, OR 97035" +159865,AAA Batteries (4-pack),1,2.99,02/26/19 16:58,"144 10th St, Portland, OR 97035" +159866,Wired Headphones,1,11.99,02/14/19 14:41,"798 Lakeview St, San Francisco, CA 94016" +159867,AAA Batteries (4-pack),3,2.99,02/08/19 19:04,"387 Forest St, New York City, NY 10001" +159868,34in Ultrawide Monitor,1,379.99,02/13/19 23:14,"821 Cherry St, Boston, MA 02215" +159869,AAA Batteries (4-pack),1,2.99,02/16/19 13:26,"582 Hill St, Boston, MA 02215" +159870,AAA Batteries (4-pack),1,2.99,02/18/19 20:19,"30 Chestnut St, Seattle, WA 98101" +159871,Wired Headphones,1,11.99,02/01/19 23:34,"860 6th St, Boston, MA 02215" +159872,AAA Batteries (4-pack),2,2.99,02/20/19 22:23,"299 Hickory St, San Francisco, CA 94016" +159873,Lightning Charging Cable,2,14.95,02/25/19 01:23,"425 Elm St, New York City, NY 10001" +159874,AAA Batteries (4-pack),1,2.99,02/02/19 15:32,"592 Hill St, Austin, TX 73301" +159874,Wired Headphones,1,11.99,02/02/19 15:32,"592 Hill St, Austin, TX 73301" +159875,AAA Batteries (4-pack),1,2.99,02/16/19 08:38,"67 Dogwood St, Los Angeles, CA 90001" +159876,AA Batteries (4-pack),2,3.84,02/23/19 18:18,"93 Park St, Portland, OR 97035" +159877,27in FHD Monitor,1,149.99,02/04/19 23:11,"972 North St, Boston, MA 02215" +159878,AAA Batteries (4-pack),1,2.99,02/06/19 21:52,"486 River St, Boston, MA 02215" +159879,Lightning Charging Cable,1,14.95,02/20/19 17:48,"842 Dogwood St, Boston, MA 02215" +159879,AA Batteries (4-pack),1,3.84,02/20/19 17:48,"842 Dogwood St, Boston, MA 02215" +159880,Lightning Charging Cable,1,14.95,02/02/19 12:29,"327 Hickory St, San Francisco, CA 94016" +159881,Bose SoundSport Headphones,1,99.99,02/17/19 22:01,"444 5th St, Portland, OR 97035" +159882,Bose SoundSport Headphones,1,99.99,02/27/19 13:30,"565 Main St, San Francisco, CA 94016" +159883,Google Phone,1,600.0,02/11/19 10:50,"981 Chestnut St, New York City, NY 10001" +159884,Macbook Pro Laptop,1,1700.0,02/27/19 19:14,"960 Maple St, Dallas, TX 75001" +159885,Apple Airpods Headphones,1,150.0,02/17/19 15:37,"215 14th St, Austin, TX 73301" +159886,USB-C Charging Cable,1,11.95,02/14/19 15:52,"13 Cedar St, Portland, OR 97035" +159887,27in 4K Gaming Monitor,1,389.99,02/22/19 21:35,"897 Hickory St, Atlanta, GA 30301" +159888,USB-C Charging Cable,1,11.95,02/12/19 19:57,"354 6th St, Los Angeles, CA 90001" +159889,27in FHD Monitor,1,149.99,02/13/19 10:50,"300 North St, San Francisco, CA 94016" +159890,iPhone,1,700.0,02/04/19 13:00,"842 Madison St, San Francisco, CA 94016" +159891,Bose SoundSport Headphones,1,99.99,02/22/19 06:41,"669 1st St, Los Angeles, CA 90001" +159892,20in Monitor,1,109.99,02/09/19 20:14,"650 8th St, Portland, ME 04101" +159893,20in Monitor,1,109.99,02/21/19 16:43,"667 Highland St, Boston, MA 02215" +159894,Macbook Pro Laptop,1,1700.0,02/04/19 19:49,"456 5th St, San Francisco, CA 94016" +159895,USB-C Charging Cable,1,11.95,02/19/19 18:02,"965 Center St, San Francisco, CA 94016" +159896,Lightning Charging Cable,1,14.95,02/21/19 18:14,"678 Chestnut St, Portland, OR 97035" +159897,Wired Headphones,4,11.99,02/25/19 09:03,"415 5th St, San Francisco, CA 94016" +159898,Wired Headphones,2,11.99,02/09/19 14:06,"977 Main St, Austin, TX 73301" +159899,Wired Headphones,3,11.99,02/01/19 09:25,"299 Washington St, Seattle, WA 98101" +159900,LG Washing Machine,1,600.0,02/12/19 16:25,"808 10th St, San Francisco, CA 94016" +159901,USB-C Charging Cable,1,11.95,02/03/19 18:16,"162 Walnut St, San Francisco, CA 94016" +159902,USB-C Charging Cable,1,11.95,02/25/19 06:48,"318 Highland St, Seattle, WA 98101" +159903,Bose SoundSport Headphones,1,99.99,02/04/19 18:31,"631 5th St, New York City, NY 10001" +159904,AAA Batteries (4-pack),1,2.99,02/20/19 20:54,"873 Forest St, Dallas, TX 75001" +159905,Wired Headphones,2,11.99,02/03/19 19:47,"235 Hickory St, New York City, NY 10001" +159906,Lightning Charging Cable,1,14.95,02/27/19 12:49,"412 1st St, Boston, MA 02215" +159907,Vareebadd Phone,1,400.0,02/18/19 23:24,"978 Pine St, San Francisco, CA 94016" +159907,USB-C Charging Cable,1,11.95,02/18/19 23:24,"978 Pine St, San Francisco, CA 94016" +159908,Lightning Charging Cable,1,14.95,02/23/19 09:53,"933 Lakeview St, Atlanta, GA 30301" +159909,Wired Headphones,1,11.99,02/17/19 14:30,"993 South St, Los Angeles, CA 90001" +159910,Lightning Charging Cable,1,14.95,02/06/19 12:47,"912 14th St, Dallas, TX 75001" +159911,27in FHD Monitor,1,149.99,02/10/19 12:45,"592 River St, San Francisco, CA 94016" +159912,AAA Batteries (4-pack),1,2.99,02/03/19 01:23,"238 Washington St, Atlanta, GA 30301" +159913,Lightning Charging Cable,1,14.95,02/08/19 23:37,"74 Willow St, San Francisco, CA 94016" +159914,AA Batteries (4-pack),2,3.84,02/15/19 16:00,"165 Elm St, Portland, OR 97035" +159915,Lightning Charging Cable,1,14.95,02/16/19 01:10,"50 13th St, San Francisco, CA 94016" +159916,Wired Headphones,1,11.99,02/03/19 09:11,"187 Washington St, Dallas, TX 75001" +159917,AAA Batteries (4-pack),1,2.99,02/28/19 22:24,"402 Pine St, Seattle, WA 98101" +159918,Apple Airpods Headphones,1,150.0,02/09/19 12:49,"325 Adams St, Boston, MA 02215" +159919,AA Batteries (4-pack),1,3.84,02/18/19 13:58,"563 6th St, New York City, NY 10001" +159920,USB-C Charging Cable,1,11.95,02/02/19 09:11,"127 Johnson St, New York City, NY 10001" +159921,Lightning Charging Cable,1,14.95,02/10/19 16:29,"612 Cherry St, Boston, MA 02215" +159922,Apple Airpods Headphones,1,150.0,02/27/19 13:08,"358 Hill St, Dallas, TX 75001" +159923,Apple Airpods Headphones,1,150.0,02/04/19 17:33,"166 Lake St, Atlanta, GA 30301" +159924,Wired Headphones,1,11.99,02/19/19 22:55,"42 2nd St, Portland, OR 97035" +159925,Wired Headphones,1,11.99,02/04/19 10:15,"71 Adams St, San Francisco, CA 94016" +159926,Apple Airpods Headphones,1,150.0,02/08/19 14:21,"262 10th St, New York City, NY 10001" +159927,Google Phone,1,600.0,02/13/19 14:13,"878 14th St, Portland, OR 97035" +159928,AA Batteries (4-pack),3,3.84,02/18/19 14:11,"373 South St, San Francisco, CA 94016" +159929,AAA Batteries (4-pack),2,2.99,02/23/19 11:28,"385 Washington St, San Francisco, CA 94016" +159930,AAA Batteries (4-pack),3,2.99,02/20/19 20:03,"692 12th St, Portland, OR 97035" +159931,ThinkPad Laptop,1,999.99,02/15/19 16:15,"402 Hill St, Los Angeles, CA 90001" +159932,Lightning Charging Cable,1,14.95,02/02/19 21:28,"680 10th St, Dallas, TX 75001" +159933,Wired Headphones,2,11.99,02/09/19 16:31,"341 Center St, San Francisco, CA 94016" +159934,20in Monitor,1,109.99,02/05/19 21:23,"574 Madison St, New York City, NY 10001" +159935,Wired Headphones,1,11.99,02/15/19 12:47,"396 Washington St, San Francisco, CA 94016" +159936,Wired Headphones,1,11.99,02/12/19 18:46,"731 Forest St, Seattle, WA 98101" +159937,USB-C Charging Cable,1,11.95,02/18/19 11:43,"745 West St, Los Angeles, CA 90001" +159938,Bose SoundSport Headphones,1,99.99,02/18/19 22:46,"245 Meadow St, Los Angeles, CA 90001" +159939,Lightning Charging Cable,1,14.95,02/18/19 21:27,"679 Jackson St, Seattle, WA 98101" +159940,Bose SoundSport Headphones,1,99.99,02/19/19 17:54,"272 Cherry St, Los Angeles, CA 90001" +159941,Lightning Charging Cable,1,14.95,02/10/19 22:11,"371 South St, New York City, NY 10001" +159942,USB-C Charging Cable,1,11.95,02/14/19 10:15,"660 Hickory St, Dallas, TX 75001" +159943,USB-C Charging Cable,1,11.95,02/13/19 16:23,"916 South St, Los Angeles, CA 90001" +159943,AAA Batteries (4-pack),1,2.99,02/13/19 16:23,"916 South St, Los Angeles, CA 90001" +159944,Bose SoundSport Headphones,1,99.99,02/13/19 15:37,"156 Elm St, Dallas, TX 75001" +159945,Wired Headphones,1,11.99,02/23/19 19:44,"52 4th St, Los Angeles, CA 90001" +159946,USB-C Charging Cable,1,11.95,02/21/19 15:29,"522 Elm St, Los Angeles, CA 90001" +159947,Google Phone,1,600.0,02/16/19 06:26,"562 Washington St, Atlanta, GA 30301" +159948,iPhone,1,700.0,02/11/19 22:25,"924 Center St, Boston, MA 02215" +159948,Wired Headphones,1,11.99,02/11/19 22:25,"924 Center St, Boston, MA 02215" +159949,AA Batteries (4-pack),1,3.84,02/23/19 22:58,"78 Center St, New York City, NY 10001" +159950,20in Monitor,1,109.99,02/11/19 13:40,"191 Walnut St, Boston, MA 02215" +159951,USB-C Charging Cable,1,11.95,02/04/19 14:31,"307 Wilson St, New York City, NY 10001" +159952,Apple Airpods Headphones,1,150.0,02/09/19 14:00,"397 South St, Portland, OR 97035" +159953,iPhone,1,700.0,02/25/19 10:00,"877 Meadow St, San Francisco, CA 94016" +159953,Wired Headphones,1,11.99,02/25/19 10:00,"877 Meadow St, San Francisco, CA 94016" +159954,27in 4K Gaming Monitor,1,389.99,02/13/19 20:18,"125 11th St, Los Angeles, CA 90001" +159955,AA Batteries (4-pack),1,3.84,02/06/19 12:24,"354 Sunset St, New York City, NY 10001" +159956,Bose SoundSport Headphones,1,99.99,02/28/19 17:20,"152 Church St, Los Angeles, CA 90001" +159957,AAA Batteries (4-pack),2,2.99,02/12/19 02:01,"821 Madison St, San Francisco, CA 94016" +159958,Apple Airpods Headphones,1,150.0,02/06/19 19:18,"228 Elm St, San Francisco, CA 94016" +159959,Lightning Charging Cable,1,14.95,02/22/19 14:05,"315 North St, Los Angeles, CA 90001" +159960,USB-C Charging Cable,1,11.95,02/18/19 10:59,"181 Hickory St, Seattle, WA 98101" +159961,Wired Headphones,1,11.99,02/13/19 09:28,"156 Wilson St, Los Angeles, CA 90001" +159962,Wired Headphones,1,11.99,02/05/19 12:45,"548 14th St, Los Angeles, CA 90001" +159963,20in Monitor,1,109.99,02/14/19 13:49,"456 Hickory St, Austin, TX 73301" +159964,34in Ultrawide Monitor,1,379.99,02/10/19 02:07,"510 11th St, San Francisco, CA 94016" +159965,USB-C Charging Cable,1,11.95,02/02/19 21:46,"253 Walnut St, San Francisco, CA 94016" +159966,USB-C Charging Cable,1,11.95,02/25/19 08:26,"696 Hill St, Portland, OR 97035" +159967,Lightning Charging Cable,1,14.95,02/06/19 14:16,"943 1st St, Dallas, TX 75001" +159968,iPhone,1,700.0,02/03/19 11:16,"559 Chestnut St, Dallas, TX 75001" +159968,Lightning Charging Cable,1,14.95,02/03/19 11:16,"559 Chestnut St, Dallas, TX 75001" +159969,Apple Airpods Headphones,1,150.0,02/08/19 14:02,"56 Center St, Boston, MA 02215" +159970,USB-C Charging Cable,1,11.95,02/06/19 14:30,"543 South St, Atlanta, GA 30301" +159971,Lightning Charging Cable,1,14.95,02/26/19 08:18,"452 14th St, Austin, TX 73301" +159972,Lightning Charging Cable,1,14.95,02/18/19 19:57,"421 4th St, Boston, MA 02215" +159973,ThinkPad Laptop,1,999.99,02/21/19 13:41,"670 9th St, Austin, TX 73301" +159974,Wired Headphones,1,11.99,02/13/19 19:54,"597 Walnut St, Portland, OR 97035" +159975,27in FHD Monitor,1,149.99,02/18/19 21:15,"671 6th St, Seattle, WA 98101" +159976,AAA Batteries (4-pack),1,2.99,02/22/19 20:59,"194 Willow St, San Francisco, CA 94016" +159977,Lightning Charging Cable,1,14.95,02/17/19 09:37,"938 Main St, San Francisco, CA 94016" +159978,AAA Batteries (4-pack),1,2.99,02/21/19 22:19,"365 10th St, Boston, MA 02215" +159979,Lightning Charging Cable,1,14.95,02/25/19 15:28,"236 4th St, Los Angeles, CA 90001" +159980,AA Batteries (4-pack),1,3.84,02/02/19 16:52,"331 6th St, San Francisco, CA 94016" +159981,20in Monitor,1,109.99,02/26/19 22:28,"40 Spruce St, New York City, NY 10001" +159982,USB-C Charging Cable,1,11.95,02/09/19 18:18,"568 Willow St, New York City, NY 10001" +159983,iPhone,1,700.0,02/03/19 12:20,"807 West St, Portland, ME 04101" +159984,Wired Headphones,1,11.99,02/19/19 13:09,"287 South St, Boston, MA 02215" +159985,USB-C Charging Cable,1,11.95,02/20/19 19:42,"291 Lake St, New York City, NY 10001" +159986,Wired Headphones,1,11.99,02/20/19 19:53,"752 Lake St, Seattle, WA 98101" +159987,USB-C Charging Cable,1,11.95,02/05/19 11:25,"333 Lake St, San Francisco, CA 94016" +159988,USB-C Charging Cable,1,11.95,02/27/19 07:19,"173 6th St, Boston, MA 02215" +159989,AAA Batteries (4-pack),2,2.99,02/10/19 19:04,"117 Lakeview St, New York City, NY 10001" +159989,Wired Headphones,1,11.99,02/10/19 19:04,"117 Lakeview St, New York City, NY 10001" +159990,USB-C Charging Cable,1,11.95,02/02/19 17:38,"677 River St, San Francisco, CA 94016" +159991,USB-C Charging Cable,1,11.95,02/25/19 11:08,"895 Dogwood St, San Francisco, CA 94016" +159992,Wired Headphones,1,11.99,02/27/19 16:31,"497 Jefferson St, Boston, MA 02215" +159993,USB-C Charging Cable,1,11.95,02/04/19 09:55,"653 Adams St, Dallas, TX 75001" +159994,AAA Batteries (4-pack),1,2.99,02/14/19 20:11,"19 Sunset St, Los Angeles, CA 90001" +159995,Lightning Charging Cable,1,14.95,02/28/19 22:05,"182 Wilson St, Los Angeles, CA 90001" +159996,34in Ultrawide Monitor,1,379.99,02/03/19 21:07,"27 Lincoln St, San Francisco, CA 94016" +159997,AAA Batteries (4-pack),2,2.99,02/08/19 18:50,"706 Hill St, Los Angeles, CA 90001" +159998,Lightning Charging Cable,1,14.95,02/08/19 18:08,"681 2nd St, Portland, OR 97035" +159999,USB-C Charging Cable,2,11.95,02/12/19 11:40,"417 9th St, Boston, MA 02215" +160000,USB-C Charging Cable,2,11.95,02/16/19 22:26,"184 Lake St, Boston, MA 02215" +160001,AA Batteries (4-pack),1,3.84,02/14/19 20:48,"379 11th St, Dallas, TX 75001" +160002,AAA Batteries (4-pack),1,2.99,02/22/19 09:39,"417 Church St, Los Angeles, CA 90001" +160003,AA Batteries (4-pack),1,3.84,02/25/19 22:02,"579 Sunset St, Los Angeles, CA 90001" +160004,iPhone,1,700.0,02/03/19 22:45,"536 Jackson St, Atlanta, GA 30301" +160005,Lightning Charging Cable,1,14.95,02/12/19 22:51,"576 Jackson St, Dallas, TX 75001" +160006,AAA Batteries (4-pack),3,2.99,02/14/19 13:10,"90 Adams St, Los Angeles, CA 90001" +160007,Bose SoundSport Headphones,1,99.99,02/21/19 10:02,"327 Spruce St, Los Angeles, CA 90001" +160008,27in 4K Gaming Monitor,1,389.99,02/03/19 18:27,"915 7th St, San Francisco, CA 94016" +160009,27in FHD Monitor,1,149.99,02/08/19 10:01,"954 Sunset St, Atlanta, GA 30301" +160010,Apple Airpods Headphones,1,150.0,02/13/19 20:09,"824 6th St, San Francisco, CA 94016" +160011,USB-C Charging Cable,1,11.95,02/26/19 18:46,"76 Elm St, San Francisco, CA 94016" +160012,27in 4K Gaming Monitor,1,389.99,02/06/19 22:06,"816 Church St, San Francisco, CA 94016" +160013,Wired Headphones,2,11.99,02/07/19 09:49,"151 5th St, Dallas, TX 75001" +160014,USB-C Charging Cable,1,11.95,02/04/19 06:24,"125 11th St, Dallas, TX 75001" +160015,AAA Batteries (4-pack),1,2.99,02/12/19 22:11,"42 7th St, Los Angeles, CA 90001" +160016,Flatscreen TV,1,300.0,02/02/19 00:32,"895 Lake St, Austin, TX 73301" +160017,iPhone,1,700.0,02/16/19 15:08,"326 Elm St, Dallas, TX 75001" +160018,AAA Batteries (4-pack),1,2.99,02/16/19 14:33,"854 Dogwood St, San Francisco, CA 94016" +160019,Flatscreen TV,1,300.0,02/14/19 13:55,"750 Center St, Atlanta, GA 30301" +160020,Vareebadd Phone,1,400.0,02/21/19 15:48,"739 Ridge St, Los Angeles, CA 90001" +160020,USB-C Charging Cable,1,11.95,02/21/19 15:48,"739 Ridge St, Los Angeles, CA 90001" +160021,Wired Headphones,1,11.99,02/08/19 20:02,"99 Spruce St, Dallas, TX 75001" +160022,Flatscreen TV,1,300.0,02/11/19 12:39,"135 5th St, Austin, TX 73301" +160023,AAA Batteries (4-pack),1,2.99,02/04/19 19:26,"550 Wilson St, San Francisco, CA 94016" +160024,Wired Headphones,1,11.99,02/22/19 15:18,"255 Pine St, Dallas, TX 75001" +160025,Wired Headphones,2,11.99,02/07/19 15:14,"144 10th St, San Francisco, CA 94016" +160026,USB-C Charging Cable,1,11.95,02/04/19 09:33,"693 6th St, New York City, NY 10001" +160027,AAA Batteries (4-pack),1,2.99,02/17/19 18:06,"907 Adams St, Boston, MA 02215" +160028,AAA Batteries (4-pack),1,2.99,02/16/19 19:36,"158 Hickory St, San Francisco, CA 94016" +160029,AAA Batteries (4-pack),1,2.99,02/07/19 12:06,"311 Hill St, Dallas, TX 75001" +160030,Wired Headphones,1,11.99,02/06/19 14:14,"395 10th St, New York City, NY 10001" +160031,Wired Headphones,1,11.99,02/06/19 15:09,"769 Sunset St, Seattle, WA 98101" +160032,AA Batteries (4-pack),1,3.84,02/12/19 16:03,"600 Johnson St, Dallas, TX 75001" +160033,Google Phone,1,600.0,02/07/19 19:47,"918 Walnut St, Atlanta, GA 30301" +160034,27in 4K Gaming Monitor,1,389.99,02/16/19 11:37,"778 Cedar St, San Francisco, CA 94016" +160035,Vareebadd Phone,1,400.0,02/01/19 08:37,"774 1st St, Seattle, WA 98101" +160036,USB-C Charging Cable,1,11.95,02/23/19 23:01,"972 Cedar St, Los Angeles, CA 90001" +160037,USB-C Charging Cable,1,11.95,02/05/19 08:59,"290 Ridge St, New York City, NY 10001" +160038,Lightning Charging Cable,1,14.95,02/07/19 15:14,"888 13th St, San Francisco, CA 94016" +160039,Lightning Charging Cable,1,14.95,02/09/19 18:20,"492 Sunset St, Seattle, WA 98101" +160040,27in 4K Gaming Monitor,1,389.99,02/03/19 21:17,"149 Main St, New York City, NY 10001" +160041,Flatscreen TV,1,300.0,02/25/19 15:20,"667 Lakeview St, San Francisco, CA 94016" +160042,Macbook Pro Laptop,1,1700.0,02/25/19 22:00,"328 North St, Seattle, WA 98101" +160043,27in FHD Monitor,1,149.99,02/19/19 11:23,"482 1st St, Dallas, TX 75001" +160044,AA Batteries (4-pack),1,3.84,02/17/19 11:58,"642 Maple St, New York City, NY 10001" +160045,AAA Batteries (4-pack),7,2.99,02/05/19 20:23,"224 13th St, Seattle, WA 98101" +160046,Lightning Charging Cable,1,14.95,02/25/19 14:52,"635 Madison St, Austin, TX 73301" +160047,Lightning Charging Cable,3,14.95,02/12/19 18:01,"569 South St, Boston, MA 02215" +160048,Wired Headphones,2,11.99,02/06/19 20:22,"780 1st St, San Francisco, CA 94016" +160049,Google Phone,1,600.0,02/13/19 13:37,"491 Walnut St, San Francisco, CA 94016" +160050,ThinkPad Laptop,1,999.99,02/10/19 09:59,"199 6th St, San Francisco, CA 94016" +160051,AAA Batteries (4-pack),3,2.99,02/02/19 18:08,"426 Elm St, Austin, TX 73301" +160052,Wired Headphones,1,11.99,02/20/19 09:42,"560 Walnut St, Los Angeles, CA 90001" +160053,Apple Airpods Headphones,1,150.0,02/02/19 12:36,"573 Lakeview St, Los Angeles, CA 90001" +160054,AA Batteries (4-pack),2,3.84,02/08/19 13:36,"896 Meadow St, Portland, ME 04101" +160055,USB-C Charging Cable,1,11.95,02/10/19 21:34,"76 Lincoln St, San Francisco, CA 94016" +160056,Bose SoundSport Headphones,1,99.99,02/11/19 13:08,"658 Pine St, New York City, NY 10001" +160057,Vareebadd Phone,1,400.0,02/13/19 17:44,"308 Sunset St, New York City, NY 10001" +160057,Wired Headphones,2,11.99,02/13/19 17:44,"308 Sunset St, New York City, NY 10001" +160057,Macbook Pro Laptop,1,1700.0,02/13/19 17:44,"308 Sunset St, New York City, NY 10001" +160058,Apple Airpods Headphones,1,150.0,02/20/19 16:39,"472 Walnut St, Seattle, WA 98101" +160059,Wired Headphones,1,11.99,02/14/19 16:47,"679 6th St, San Francisco, CA 94016" +160060,27in FHD Monitor,1,149.99,02/13/19 17:54,"263 Lincoln St, San Francisco, CA 94016" +160061,ThinkPad Laptop,1,999.99,02/13/19 20:37,"82 10th St, New York City, NY 10001" +160062,AA Batteries (4-pack),1,3.84,02/24/19 08:55,"189 14th St, Boston, MA 02215" +160063,Flatscreen TV,1,300.0,02/08/19 20:18,"827 Willow St, Los Angeles, CA 90001" +160064,USB-C Charging Cable,1,11.95,02/06/19 14:15,"753 Center St, San Francisco, CA 94016" +160065,Lightning Charging Cable,1,14.95,02/05/19 03:07,"367 10th St, Boston, MA 02215" +160066,27in FHD Monitor,1,149.99,02/21/19 19:46,"148 Willow St, New York City, NY 10001" +160067,AA Batteries (4-pack),2,3.84,02/23/19 10:11,"191 11th St, Austin, TX 73301" +160068,Bose SoundSport Headphones,1,99.99,02/02/19 16:49,"820 Lakeview St, San Francisco, CA 94016" +160069,iPhone,1,700.0,02/19/19 23:45,"161 Park St, Portland, OR 97035" +160070,Google Phone,1,600.0,02/28/19 12:22,"596 Lincoln St, San Francisco, CA 94016" +160071,AA Batteries (4-pack),2,3.84,02/08/19 15:30,"208 Church St, Los Angeles, CA 90001" +160072,Apple Airpods Headphones,1,150.0,02/02/19 19:47,"737 14th St, New York City, NY 10001" +160073,Apple Airpods Headphones,1,150.0,02/02/19 21:54,"32 Willow St, San Francisco, CA 94016" +160074,AA Batteries (4-pack),1,3.84,02/02/19 20:22,"345 Hill St, San Francisco, CA 94016" +160075,Apple Airpods Headphones,1,150.0,02/06/19 16:39,"760 Church St, Los Angeles, CA 90001" +160076,Flatscreen TV,2,300.0,02/06/19 08:17,"247 Center St, Seattle, WA 98101" +160077,USB-C Charging Cable,1,11.95,02/15/19 14:57,"117 Willow St, Los Angeles, CA 90001" +160078,iPhone,1,700.0,02/11/19 04:38,"534 10th St, Austin, TX 73301" +160079,Macbook Pro Laptop,1,1700.0,02/14/19 15:43,"701 Lakeview St, Austin, TX 73301" +160080,Wired Headphones,1,11.99,02/18/19 15:33,"488 Lincoln St, New York City, NY 10001" +160081,Lightning Charging Cable,1,14.95,02/28/19 08:50,"375 Johnson St, New York City, NY 10001" +160082,Lightning Charging Cable,1,14.95,02/21/19 09:20,"975 Cedar St, Seattle, WA 98101" +160083,34in Ultrawide Monitor,1,379.99,02/12/19 18:14,"405 Lake St, San Francisco, CA 94016" +160084,AA Batteries (4-pack),1,3.84,02/23/19 10:33,"831 Maple St, San Francisco, CA 94016" +160085,AA Batteries (4-pack),1,3.84,02/15/19 10:18,"569 Ridge St, Portland, OR 97035" +160086,iPhone,1,700.0,02/12/19 19:05,"276 Pine St, San Francisco, CA 94016" +160087,AAA Batteries (4-pack),1,2.99,02/07/19 19:15,"617 Cedar St, San Francisco, CA 94016" +,,,,, +160088,27in FHD Monitor,1,149.99,02/13/19 12:39,"93 Lincoln St, Los Angeles, CA 90001" +160089,34in Ultrawide Monitor,1,379.99,02/18/19 09:44,"989 South St, Los Angeles, CA 90001" +160090,34in Ultrawide Monitor,1,379.99,02/11/19 09:31,"556 Jackson St, Austin, TX 73301" +160091,Lightning Charging Cable,1,14.95,02/01/19 18:03,"542 Madison St, Atlanta, GA 30301" +160092,iPhone,1,700,02/01/19 19:27,"651 Washington St, San Francisco, CA 94016" +160093,Macbook Pro Laptop,1,1700,02/26/19 21:21,"670 10th St, Atlanta, GA 30301" +160094,27in 4K Gaming Monitor,1,389.99,02/16/19 22:15,"55 Washington St, Dallas, TX 75001" +160095,Lightning Charging Cable,1,14.95,02/20/19 09:10,"812 Lincoln St, Los Angeles, CA 90001" +160096,AA Batteries (4-pack),1,3.84,02/20/19 05:03,"827 Ridge St, New York City, NY 10001" +160097,Apple Airpods Headphones,1,150,02/27/19 12:51,"569 10th St, Atlanta, GA 30301" +160098,AAA Batteries (4-pack),2,2.99,02/02/19 21:41,"332 6th St, New York City, NY 10001" +160099,AA Batteries (4-pack),2,3.84,02/16/19 12:30,"460 South St, New York City, NY 10001" +160100,Macbook Pro Laptop,1,1700,02/24/19 23:22,"798 Church St, San Francisco, CA 94016" +160101,Apple Airpods Headphones,1,150,02/27/19 07:38,"609 1st St, San Francisco, CA 94016" +160102,Macbook Pro Laptop,1,1700,02/02/19 18:44,"615 Forest St, Los Angeles, CA 90001" +160103,AA Batteries (4-pack),3,3.84,02/03/19 10:52,"183 Main St, Seattle, WA 98101" +160104,AA Batteries (4-pack),1,3.84,02/19/19 08:38,"351 Lake St, San Francisco, CA 94016" +160105,27in FHD Monitor,1,149.99,02/05/19 20:08,"534 8th St, Seattle, WA 98101" +160106,ThinkPad Laptop,1,999.99,02/27/19 19:21,"865 Washington St, Boston, MA 02215" +160107,AAA Batteries (4-pack),2,2.99,02/14/19 10:37,"961 West St, San Francisco, CA 94016" +160108,Apple Airpods Headphones,1,150,02/01/19 12:58,"776 Washington St, Boston, MA 02215" +160109,Google Phone,1,600,02/18/19 16:59,"25 Lake St, Atlanta, GA 30301" +160109,USB-C Charging Cable,2,11.95,02/18/19 16:59,"25 Lake St, Atlanta, GA 30301" +160110,AA Batteries (4-pack),1,3.84,02/14/19 20:01,"799 Cedar St, Dallas, TX 75001" +160111,USB-C Charging Cable,2,11.95,02/14/19 16:03,"199 9th St, San Francisco, CA 94016" +160112,AAA Batteries (4-pack),1,2.99,02/14/19 15:09,"205 Wilson St, Atlanta, GA 30301" +160113,Bose SoundSport Headphones,1,99.99,02/13/19 17:45,"506 Madison St, Los Angeles, CA 90001" +160114,34in Ultrawide Monitor,1,379.99,02/21/19 09:21,"677 14th St, San Francisco, CA 94016" +160115,Bose SoundSport Headphones,1,99.99,02/06/19 12:03,"451 Forest St, Los Angeles, CA 90001" +160116,Lightning Charging Cable,1,14.95,02/26/19 11:24,"481 North St, San Francisco, CA 94016" +160117,Bose SoundSport Headphones,1,99.99,02/26/19 16:32,"547 4th St, Los Angeles, CA 90001" +160118,AA Batteries (4-pack),1,3.84,02/23/19 14:08,"454 Adams St, San Francisco, CA 94016" +160119,Wired Headphones,1,11.99,02/13/19 16:27,"934 River St, Los Angeles, CA 90001" +160120,Apple Airpods Headphones,1,150,02/12/19 17:35,"458 Forest St, Portland, OR 97035" +160121,Wired Headphones,1,11.99,02/23/19 23:21,"645 2nd St, Los Angeles, CA 90001" +160122,Google Phone,1,600,02/17/19 04:26,"336 Johnson St, Los Angeles, CA 90001" +160122,Apple Airpods Headphones,1,150,02/17/19 04:26,"336 Johnson St, Los Angeles, CA 90001" +160123,AAA Batteries (4-pack),1,2.99,02/07/19 18:06,"108 Walnut St, San Francisco, CA 94016" +160124,Lightning Charging Cable,1,14.95,02/03/19 23:30,"850 Church St, Dallas, TX 75001" +160125,Bose SoundSport Headphones,1,99.99,02/11/19 19:45,"231 Center St, Boston, MA 02215" +160126,USB-C Charging Cable,1,11.95,02/04/19 20:17,"769 River St, San Francisco, CA 94016" +160127,Google Phone,1,600,02/21/19 15:56,"139 6th St, Atlanta, GA 30301" +160128,AA Batteries (4-pack),1,3.84,02/01/19 18:27,"88 4th St, San Francisco, CA 94016" +160129,AA Batteries (4-pack),1,3.84,02/03/19 17:16,"925 Sunset St, New York City, NY 10001" +160130,AAA Batteries (4-pack),2,2.99,02/28/19 12:49,"50 Hickory St, Portland, OR 97035" +160131,20in Monitor,1,109.99,02/23/19 19:53,"912 Hill St, Seattle, WA 98101" +160132,Apple Airpods Headphones,1,150,02/14/19 04:24,"648 River St, Los Angeles, CA 90001" +160133,Wired Headphones,1,11.99,02/21/19 16:41,"310 Sunset St, Seattle, WA 98101" +160134,AA Batteries (4-pack),1,3.84,02/25/19 16:46,"281 5th St, Austin, TX 73301" +160135,34in Ultrawide Monitor,1,379.99,02/22/19 10:21,"213 8th St, Los Angeles, CA 90001" +160136,Wired Headphones,1,11.99,02/14/19 08:16,"765 9th St, Portland, OR 97035" +160137,ThinkPad Laptop,1,999.99,02/27/19 11:13,"572 7th St, Los Angeles, CA 90001" +160138,Wired Headphones,1,11.99,02/26/19 22:20,"945 6th St, Los Angeles, CA 90001" +160139,Lightning Charging Cable,1,14.95,02/13/19 12:56,"548 North St, Los Angeles, CA 90001" +160140,AAA Batteries (4-pack),1,2.99,02/04/19 21:00,"530 14th St, Los Angeles, CA 90001" +160141,USB-C Charging Cable,1,11.95,02/16/19 20:27,"631 Park St, San Francisco, CA 94016" +160142,20in Monitor,1,109.99,02/04/19 17:46,"907 Spruce St, San Francisco, CA 94016" +160143,27in 4K Gaming Monitor,1,389.99,02/06/19 11:35,"899 Maple St, Boston, MA 02215" +160144,Wired Headphones,1,11.99,02/23/19 20:39,"499 Lincoln St, Portland, OR 97035" +160145,Macbook Pro Laptop,1,1700,02/27/19 23:10,"494 West St, San Francisco, CA 94016" +160145,AAA Batteries (4-pack),1,2.99,02/27/19 23:10,"494 West St, San Francisco, CA 94016" +160146,Flatscreen TV,1,300,02/03/19 23:26,"376 4th St, San Francisco, CA 94016" +160147,Lightning Charging Cable,2,14.95,02/09/19 21:18,"497 Center St, San Francisco, CA 94016" +160148,20in Monitor,1,109.99,02/01/19 15:01,"518 Willow St, Los Angeles, CA 90001" +160149,AA Batteries (4-pack),1,3.84,02/11/19 15:00,"810 Cedar St, San Francisco, CA 94016" +160150,Lightning Charging Cable,1,14.95,02/25/19 15:22,"173 South St, Seattle, WA 98101" +160151,AA Batteries (4-pack),2,3.84,02/20/19 11:59,"640 11th St, New York City, NY 10001" +160152,AA Batteries (4-pack),1,3.84,02/28/19 19:47,"384 10th St, New York City, NY 10001" +160153,AAA Batteries (4-pack),1,2.99,02/28/19 17:56,"613 Sunset St, New York City, NY 10001" +160154,Macbook Pro Laptop,1,1700,02/03/19 20:48,"786 South St, Seattle, WA 98101" +160155,Wired Headphones,1,11.99,02/18/19 15:57,"673 Washington St, San Francisco, CA 94016" +160156,Macbook Pro Laptop,1,1700,02/16/19 14:03,"794 Sunset St, Atlanta, GA 30301" +160157,iPhone,1,700,02/10/19 22:40,"814 Hickory St, Austin, TX 73301" +160157,Lightning Charging Cable,1,14.95,02/10/19 22:40,"814 Hickory St, Austin, TX 73301" +160158,iPhone,1,700,02/21/19 08:28,"871 Forest St, New York City, NY 10001" +160159,Vareebadd Phone,1,400,02/26/19 18:46,"377 Center St, Boston, MA 02215" +160159,USB-C Charging Cable,1,11.95,02/26/19 18:46,"377 Center St, Boston, MA 02215" +160160,Macbook Pro Laptop,1,1700,02/21/19 04:19,"657 Dogwood St, Los Angeles, CA 90001" +160161,AA Batteries (4-pack),1,3.84,02/27/19 12:39,"994 6th St, Seattle, WA 98101" +160162,Lightning Charging Cable,1,14.95,02/16/19 19:54,"309 Washington St, Boston, MA 02215" +160163,AAA Batteries (4-pack),3,2.99,02/04/19 08:29,"924 Wilson St, San Francisco, CA 94016" +160164,27in 4K Gaming Monitor,1,389.99,02/01/19 18:21,"762 River St, Atlanta, GA 30301" +160165,34in Ultrawide Monitor,1,379.99,02/20/19 13:56,"559 Jefferson St, San Francisco, CA 94016" +160166,27in FHD Monitor,1,149.99,02/08/19 06:36,"290 Jefferson St, New York City, NY 10001" +160167,20in Monitor,1,109.99,02/28/19 18:42,"669 Maple St, San Francisco, CA 94016" +160168,iPhone,1,700,02/19/19 08:54,"262 South St, San Francisco, CA 94016" +160169,ThinkPad Laptop,1,999.99,02/11/19 09:41,"554 10th St, New York City, NY 10001" +160170,27in FHD Monitor,1,149.99,02/18/19 10:05,"671 14th St, San Francisco, CA 94016" +160171,USB-C Charging Cable,1,11.95,02/08/19 14:22,"671 14th St, Boston, MA 02215" +160172,AA Batteries (4-pack),3,3.84,02/07/19 07:11,"757 Chestnut St, San Francisco, CA 94016" +160173,34in Ultrawide Monitor,1,379.99,02/27/19 13:07,"882 Jackson St, San Francisco, CA 94016" +160174,Google Phone,1,600,02/23/19 18:53,"490 Spruce St, San Francisco, CA 94016" +160175,AA Batteries (4-pack),1,3.84,02/17/19 18:10,"30 Dogwood St, Portland, ME 04101" +160176,Bose SoundSport Headphones,1,99.99,02/15/19 22:00,"651 9th St, New York City, NY 10001" +160177,AAA Batteries (4-pack),2,2.99,02/08/19 16:57,"144 Johnson St, Atlanta, GA 30301" +160178,iPhone,1,700,02/16/19 18:12,"510 11th St, Dallas, TX 75001" +160179,Bose SoundSport Headphones,1,99.99,02/03/19 21:11,"324 12th St, San Francisco, CA 94016" +160180,USB-C Charging Cable,1,11.95,02/14/19 14:03,"799 5th St, Austin, TX 73301" +160181,Bose SoundSport Headphones,1,99.99,02/07/19 18:53,"96 Hickory St, New York City, NY 10001" +160182,AA Batteries (4-pack),1,3.84,02/08/19 23:54,"767 Chestnut St, Portland, OR 97035" +160183,iPhone,1,700,02/08/19 15:03,"841 Center St, Seattle, WA 98101" +160184,Macbook Pro Laptop,1,1700,02/13/19 18:25,"373 Forest St, San Francisco, CA 94016" +160185,Bose SoundSport Headphones,1,99.99,02/04/19 17:36,"652 Washington St, New York City, NY 10001" +160186,AAA Batteries (4-pack),1,2.99,02/23/19 13:41,"12 Lake St, Boston, MA 02215" +160187,AAA Batteries (4-pack),2,2.99,02/23/19 11:31,"692 2nd St, Boston, MA 02215" +160188,AAA Batteries (4-pack),1,2.99,02/23/19 22:26,"715 9th St, San Francisco, CA 94016" +160189,27in FHD Monitor,1,149.99,02/10/19 20:41,"555 Pine St, New York City, NY 10001" +160190,AA Batteries (4-pack),1,3.84,02/02/19 11:53,"205 Walnut St, Portland, ME 04101" +160191,AA Batteries (4-pack),1,3.84,02/14/19 20:03,"276 Pine St, Los Angeles, CA 90001" +160192,iPhone,1,700,02/22/19 19:20,"13 Meadow St, New York City, NY 10001" +160193,USB-C Charging Cable,1,11.95,02/13/19 19:57,"537 Washington St, Boston, MA 02215" +160194,AA Batteries (4-pack),3,3.84,02/07/19 10:08,"684 River St, Atlanta, GA 30301" +160195,34in Ultrawide Monitor,1,379.99,02/14/19 14:28,"306 1st St, New York City, NY 10001" +160196,Wired Headphones,1,11.99,02/21/19 18:33,"813 North St, New York City, NY 10001" +160197,Bose SoundSport Headphones,1,99.99,02/28/19 21:50,"567 9th St, New York City, NY 10001" +160198,Lightning Charging Cable,1,14.95,02/07/19 11:27,"192 Center St, San Francisco, CA 94016" +160199,34in Ultrawide Monitor,1,379.99,02/20/19 00:50,"595 Maple St, San Francisco, CA 94016" +160200,AAA Batteries (4-pack),1,2.99,02/16/19 20:48,"119 Lakeview St, Boston, MA 02215" +160201,Flatscreen TV,1,300,02/12/19 08:56,"37 Johnson St, Los Angeles, CA 90001" +160202,Bose SoundSport Headphones,1,99.99,02/15/19 12:51,"260 5th St, Los Angeles, CA 90001" +160203,Flatscreen TV,1,300,02/10/19 23:31,"894 Elm St, New York City, NY 10001" +160204,Wired Headphones,1,11.99,02/10/19 16:24,"616 14th St, San Francisco, CA 94016" +160205,Wired Headphones,1,11.99,02/15/19 20:16,"371 Center St, San Francisco, CA 94016" +160206,27in FHD Monitor,1,149.99,02/17/19 22:23,"783 Lincoln St, Portland, OR 97035" +160207,AA Batteries (4-pack),1,3.84,02/16/19 08:32,"843 Dogwood St, San Francisco, CA 94016" +160208,Apple Airpods Headphones,1,150,02/28/19 10:37,"169 Hill St, Atlanta, GA 30301" +160209,34in Ultrawide Monitor,1,379.99,02/22/19 17:44,"148 Jefferson St, Atlanta, GA 30301" +160210,Wired Headphones,1,11.99,02/17/19 17:57,"428 Washington St, Boston, MA 02215" +160211,Wired Headphones,1,11.99,02/04/19 16:32,"1 Washington St, San Francisco, CA 94016" +160212,27in 4K Gaming Monitor,1,389.99,02/13/19 21:51,"333 11th St, New York City, NY 10001" +160213,Apple Airpods Headphones,1,150,02/03/19 21:40,"452 Park St, Boston, MA 02215" +160214,Apple Airpods Headphones,1,150,02/18/19 06:56,"528 Willow St, Austin, TX 73301" +160215,USB-C Charging Cable,1,11.95,02/19/19 10:01,"542 4th St, San Francisco, CA 94016" +160216,Flatscreen TV,1,300,02/10/19 11:12,"565 Wilson St, Seattle, WA 98101" +160217,Lightning Charging Cable,1,14.95,02/22/19 07:47,"404 Church St, Atlanta, GA 30301" +160218,AAA Batteries (4-pack),2,2.99,02/11/19 19:05,"427 10th St, San Francisco, CA 94016" +160219,34in Ultrawide Monitor,1,379.99,02/14/19 21:23,"576 10th St, Boston, MA 02215" +160220,USB-C Charging Cable,1,11.95,02/11/19 11:27,"743 Ridge St, New York City, NY 10001" +160221,Wired Headphones,1,11.99,02/20/19 10:33,"70 Center St, Atlanta, GA 30301" +160222,Lightning Charging Cable,2,14.95,02/11/19 12:33,"380 Maple St, San Francisco, CA 94016" +160223,34in Ultrawide Monitor,1,379.99,02/17/19 18:45,"953 Main St, Boston, MA 02215" +160224,Lightning Charging Cable,1,14.95,02/25/19 21:09,"716 Washington St, Portland, OR 97035" +160225,Flatscreen TV,1,300,02/10/19 16:50,"361 9th St, San Francisco, CA 94016" +160226,34in Ultrawide Monitor,1,379.99,02/28/19 11:03,"228 Chestnut St, New York City, NY 10001" +160227,Apple Airpods Headphones,1,150,02/22/19 09:56,"998 Elm St, San Francisco, CA 94016" +160228,LG Washing Machine,1,600.0,02/08/19 01:29,"797 14th St, New York City, NY 10001" +160229,Wired Headphones,1,11.99,02/02/19 11:55,"195 11th St, Dallas, TX 75001" +160230,USB-C Charging Cable,1,11.95,02/03/19 10:00,"334 Lakeview St, Seattle, WA 98101" +160231,USB-C Charging Cable,1,11.95,02/15/19 07:57,"130 Cedar St, Atlanta, GA 30301" +160232,AA Batteries (4-pack),4,3.84,02/28/19 09:26,"720 Ridge St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +160233,Lightning Charging Cable,1,14.95,02/08/19 19:46,"910 Pine St, San Francisco, CA 94016" +160234,AA Batteries (4-pack),1,3.84,02/19/19 09:05,"979 Ridge St, Atlanta, GA 30301" +160235,AA Batteries (4-pack),1,3.84,02/24/19 09:33,"709 Dogwood St, Boston, MA 02215" +160236,AA Batteries (4-pack),4,3.84,02/15/19 01:12,"805 Maple St, Austin, TX 73301" +160237,27in FHD Monitor,1,149.99,02/15/19 12:21,"410 12th St, Boston, MA 02215" +160238,Apple Airpods Headphones,1,150,02/02/19 09:55,"11 8th St, Los Angeles, CA 90001" +160239,Lightning Charging Cable,1,14.95,02/17/19 10:53,"992 Willow St, New York City, NY 10001" +160240,Lightning Charging Cable,1,14.95,02/12/19 09:53,"875 Pine St, Los Angeles, CA 90001" +160241,AA Batteries (4-pack),4,3.84,02/17/19 09:06,"833 Park St, San Francisco, CA 94016" +160242,Wired Headphones,2,11.99,02/09/19 20:58,"229 9th St, Los Angeles, CA 90001" +160243,Apple Airpods Headphones,1,150,02/02/19 20:55,"198 11th St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +160244,27in FHD Monitor,1,149.99,02/13/19 10:28,"776 South St, Atlanta, GA 30301" +160245,20in Monitor,1,109.99,02/27/19 13:13,"28 8th St, Los Angeles, CA 90001" +160246,27in 4K Gaming Monitor,1,389.99,02/12/19 13:57,"734 Willow St, San Francisco, CA 94016" +160247,Flatscreen TV,1,300,02/20/19 11:18,"348 Pine St, Austin, TX 73301" +160248,27in 4K Gaming Monitor,1,389.99,02/21/19 11:44,"73 Adams St, Seattle, WA 98101" +160249,USB-C Charging Cable,1,11.95,02/09/19 20:49,"269 6th St, Boston, MA 02215" +160250,Vareebadd Phone,1,400,02/19/19 20:52,"356 Maple St, New York City, NY 10001" +160251,Bose SoundSport Headphones,1,99.99,02/18/19 10:55,"483 Highland St, Boston, MA 02215" +160252,Lightning Charging Cable,1,14.95,02/12/19 21:59,"982 Spruce St, New York City, NY 10001" +160253,Bose SoundSport Headphones,1,99.99,02/12/19 04:41,"90 Lincoln St, Boston, MA 02215" +160254,AA Batteries (4-pack),3,3.84,02/07/19 09:28,"250 Chestnut St, Los Angeles, CA 90001" +160255,AA Batteries (4-pack),1,3.84,02/16/19 09:44,"31 South St, San Francisco, CA 94016" +160256,Apple Airpods Headphones,1,150,02/04/19 19:08,"993 Chestnut St, San Francisco, CA 94016" +160257,Apple Airpods Headphones,1,150,02/16/19 14:26,"597 Park St, San Francisco, CA 94016" +160258,AA Batteries (4-pack),2,3.84,02/07/19 13:24,"648 13th St, Boston, MA 02215" +160259,Wired Headphones,1,11.99,02/15/19 18:26,"386 11th St, Los Angeles, CA 90001" +160260,Lightning Charging Cable,1,14.95,02/07/19 12:54,"189 Center St, Seattle, WA 98101" +160261,AA Batteries (4-pack),1,3.84,02/17/19 11:23,"524 Willow St, San Francisco, CA 94016" +160262,AAA Batteries (4-pack),2,2.99,02/11/19 20:24,"992 8th St, New York City, NY 10001" +160263,Flatscreen TV,1,300,02/04/19 20:13,"337 Madison St, Los Angeles, CA 90001" +160264,AAA Batteries (4-pack),1,2.99,02/15/19 12:06,"139 Hickory St, New York City, NY 10001" +160265,Bose SoundSport Headphones,1,99.99,02/07/19 16:06,"106 11th St, San Francisco, CA 94016" +160266,Wired Headphones,2,11.99,02/21/19 09:52,"48 Highland St, San Francisco, CA 94016" +160267,AAA Batteries (4-pack),1,2.99,02/03/19 21:22,"934 Hill St, Boston, MA 02215" +160268,AAA Batteries (4-pack),1,2.99,02/16/19 17:29,"334 Chestnut St, Portland, OR 97035" +160269,Lightning Charging Cable,1,14.95,02/17/19 16:48,"764 Cedar St, Los Angeles, CA 90001" +160270,AAA Batteries (4-pack),3,2.99,02/24/19 13:36,"151 10th St, San Francisco, CA 94016" +160271,Wired Headphones,1,11.99,02/06/19 23:23,"312 South St, Seattle, WA 98101" +160272,AA Batteries (4-pack),3,3.84,02/22/19 21:46,"241 Main St, Atlanta, GA 30301" +160272,Macbook Pro Laptop,1,1700,02/22/19 21:46,"241 Main St, Atlanta, GA 30301" +160273,27in FHD Monitor,1,149.99,02/18/19 07:59,"648 Hickory St, Boston, MA 02215" +160274,USB-C Charging Cable,1,11.95,02/23/19 21:00,"302 Willow St, San Francisco, CA 94016" +160275,Google Phone,1,600,02/19/19 15:56,"155 Cherry St, Los Angeles, CA 90001" +160276,Macbook Pro Laptop,1,1700,02/04/19 05:32,"608 Adams St, Dallas, TX 75001" +160277,Lightning Charging Cable,1,14.95,02/28/19 13:44,"938 Chestnut St, New York City, NY 10001" +160278,27in 4K Gaming Monitor,1,389.99,02/22/19 21:33,"451 Cedar St, San Francisco, CA 94016" +160279,AAA Batteries (4-pack),1,2.99,02/20/19 08:26,"835 Chestnut St, Atlanta, GA 30301" +160280,AAA Batteries (4-pack),1,2.99,02/23/19 19:46,"987 Madison St, Los Angeles, CA 90001" +160281,Apple Airpods Headphones,1,150,02/21/19 13:30,"755 Main St, San Francisco, CA 94016" +160282,AAA Batteries (4-pack),1,2.99,02/04/19 10:28,"747 Dogwood St, Portland, ME 04101" +160283,AA Batteries (4-pack),2,3.84,02/14/19 18:17,"45 1st St, New York City, NY 10001" +160284,Flatscreen TV,1,300,02/24/19 10:01,"206 12th St, Los Angeles, CA 90001" +160285,Wired Headphones,1,11.99,02/02/19 16:05,"360 Spruce St, San Francisco, CA 94016" +160286,USB-C Charging Cable,2,11.95,02/23/19 09:39,"67 6th St, Atlanta, GA 30301" +160287,Google Phone,1,600,02/27/19 12:12,"882 South St, Seattle, WA 98101" +160288,Apple Airpods Headphones,1,150,02/28/19 19:17,"338 13th St, New York City, NY 10001" +160289,USB-C Charging Cable,2,11.95,02/25/19 18:58,"656 Main St, San Francisco, CA 94016" +160290,Wired Headphones,1,11.99,02/19/19 21:11,"69 Main St, New York City, NY 10001" +160291,ThinkPad Laptop,1,999.99,02/27/19 17:24,"951 River St, San Francisco, CA 94016" +160292,Wired Headphones,1,11.99,02/04/19 18:04,"75 10th St, Portland, ME 04101" +160293,Apple Airpods Headphones,1,150,02/04/19 21:22,"317 Cherry St, San Francisco, CA 94016" +160294,iPhone,1,700,02/21/19 00:41,"655 North St, Los Angeles, CA 90001" +160295,Macbook Pro Laptop,1,1700,02/12/19 14:13,"287 Washington St, San Francisco, CA 94016" +160296,Apple Airpods Headphones,1,150,02/18/19 18:57,"160 Johnson St, Boston, MA 02215" +160297,27in FHD Monitor,1,149.99,02/12/19 00:27,"5 Jefferson St, Los Angeles, CA 90001" +160298,USB-C Charging Cable,2,11.95,02/26/19 14:06,"272 14th St, San Francisco, CA 94016" +160299,AA Batteries (4-pack),1,3.84,02/13/19 12:18,"415 Highland St, New York City, NY 10001" +160300,Macbook Pro Laptop,1,1700,02/20/19 20:56,"408 Pine St, New York City, NY 10001" +160301,27in 4K Gaming Monitor,1,389.99,02/26/19 19:18,"235 14th St, Seattle, WA 98101" +160302,Wired Headphones,2,11.99,02/10/19 00:06,"449 Church St, Portland, OR 97035" +160303,iPhone,1,700,02/19/19 13:12,"107 Main St, Austin, TX 73301" +160304,34in Ultrawide Monitor,1,379.99,02/28/19 16:48,"610 Madison St, San Francisco, CA 94016" +160305,34in Ultrawide Monitor,1,379.99,02/13/19 10:26,"138 14th St, Seattle, WA 98101" +160306,Wired Headphones,1,11.99,02/21/19 12:03,"966 Hill St, Austin, TX 73301" +160307,USB-C Charging Cable,1,11.95,02/21/19 16:34,"351 Dogwood St, Los Angeles, CA 90001" +160308,Google Phone,1,600,02/08/19 00:09,"257 10th St, Atlanta, GA 30301" +160309,27in FHD Monitor,1,149.99,02/10/19 11:28,"710 Lakeview St, San Francisco, CA 94016" +160310,USB-C Charging Cable,1,11.95,02/01/19 10:13,"745 South St, San Francisco, CA 94016" +160311,Apple Airpods Headphones,1,150,02/08/19 21:12,"386 Chestnut St, Dallas, TX 75001" +160312,Bose SoundSport Headphones,1,99.99,02/14/19 08:28,"103 Washington St, Boston, MA 02215" +160313,27in FHD Monitor,1,149.99,02/22/19 12:46,"307 Jefferson St, Dallas, TX 75001" +160314,Google Phone,1,600,02/05/19 12:49,"383 Main St, Boston, MA 02215" +160315,AA Batteries (4-pack),1,3.84,02/21/19 19:14,"904 Walnut St, Seattle, WA 98101" +160316,AA Batteries (4-pack),1,3.84,02/22/19 20:12,"715 13th St, San Francisco, CA 94016" +160317,34in Ultrawide Monitor,1,379.99,02/15/19 16:21,"413 Center St, San Francisco, CA 94016" +160318,iPhone,1,700,02/10/19 20:05,"508 6th St, San Francisco, CA 94016" +160319,Apple Airpods Headphones,1,150,02/28/19 01:11,"478 7th St, New York City, NY 10001" +160320,Google Phone,1,600,02/12/19 15:15,"187 11th St, Atlanta, GA 30301" +160321,Bose SoundSport Headphones,1,99.99,02/20/19 16:59,"166 13th St, Boston, MA 02215" +160322,USB-C Charging Cable,1,11.95,02/24/19 07:23,"410 12th St, Los Angeles, CA 90001" +160323,27in 4K Gaming Monitor,1,389.99,02/13/19 10:57,"961 Lake St, Portland, ME 04101" +160324,20in Monitor,1,109.99,02/27/19 20:58,"19 Chestnut St, San Francisco, CA 94016" +160325,Apple Airpods Headphones,1,150,02/21/19 16:39,"537 12th St, Seattle, WA 98101" +160326,AAA Batteries (4-pack),2,2.99,02/27/19 12:22,"604 11th St, San Francisco, CA 94016" +160327,AAA Batteries (4-pack),1,2.99,02/11/19 19:57,"931 Washington St, San Francisco, CA 94016" +160328,Bose SoundSport Headphones,1,99.99,02/17/19 22:27,"824 Church St, Los Angeles, CA 90001" +160329,Wired Headphones,1,11.99,02/10/19 22:28,"647 Meadow St, San Francisco, CA 94016" +160330,Apple Airpods Headphones,1,150,02/12/19 18:55,"5 Park St, Dallas, TX 75001" +160331,AAA Batteries (4-pack),2,2.99,02/10/19 12:05,"525 Hickory St, Atlanta, GA 30301" +160332,AAA Batteries (4-pack),2,2.99,02/28/19 15:33,"129 Center St, New York City, NY 10001" +160333,AA Batteries (4-pack),1,3.84,02/10/19 05:07,"532 River St, Los Angeles, CA 90001" +160334,Google Phone,1,600,02/16/19 15:15,"916 14th St, San Francisco, CA 94016" +160334,USB-C Charging Cable,1,11.95,02/16/19 15:15,"916 14th St, San Francisco, CA 94016" +160335,Lightning Charging Cable,1,14.95,02/10/19 13:19,"240 West St, San Francisco, CA 94016" +160336,27in FHD Monitor,1,149.99,02/13/19 13:56,"817 Highland St, Los Angeles, CA 90001" +160337,AA Batteries (4-pack),2,3.84,02/19/19 15:10,"526 West St, New York City, NY 10001" +160338,AA Batteries (4-pack),1,3.84,02/07/19 12:29,"606 4th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +160339,AAA Batteries (4-pack),1,2.99,02/28/19 12:13,"834 7th St, Atlanta, GA 30301" +160340,USB-C Charging Cable,1,11.95,02/18/19 17:05,"416 Maple St, New York City, NY 10001" +160341,Apple Airpods Headphones,1,150,02/25/19 16:36,"475 4th St, San Francisco, CA 94016" +160342,Bose SoundSport Headphones,1,99.99,02/17/19 14:19,"6 Chestnut St, San Francisco, CA 94016" +160343,Bose SoundSport Headphones,1,99.99,02/17/19 22:51,"309 11th St, New York City, NY 10001" +160344,Wired Headphones,1,11.99,02/28/19 17:51,"754 Jefferson St, Seattle, WA 98101" +160345,Wired Headphones,1,11.99,02/28/19 15:42,"407 6th St, Atlanta, GA 30301" +160346,ThinkPad Laptop,1,999.99,02/24/19 09:12,"884 1st St, Atlanta, GA 30301" +160347,AA Batteries (4-pack),2,3.84,02/23/19 19:41,"184 4th St, Portland, OR 97035" +160347,Wired Headphones,1,11.99,02/23/19 19:41,"184 4th St, Portland, OR 97035" +160348,USB-C Charging Cable,1,11.95,02/14/19 21:39,"908 Main St, Seattle, WA 98101" +160349,Flatscreen TV,1,300,02/22/19 18:33,"219 9th St, Los Angeles, CA 90001" +160350,Bose SoundSport Headphones,1,99.99,02/13/19 16:26,"920 Cedar St, Los Angeles, CA 90001" +160351,AA Batteries (4-pack),2,3.84,02/17/19 21:35,"569 North St, San Francisco, CA 94016" +160352,AAA Batteries (4-pack),2,2.99,02/28/19 05:48,"91 14th St, New York City, NY 10001" +160353,AA Batteries (4-pack),1,3.84,02/02/19 19:54,"753 11th St, Dallas, TX 75001" +160354,20in Monitor,1,109.99,02/09/19 20:26,"600 North St, Seattle, WA 98101" +160355,AAA Batteries (4-pack),3,2.99,02/26/19 00:44,"956 9th St, Seattle, WA 98101" +160356,Wired Headphones,1,11.99,02/20/19 10:46,"983 Elm St, San Francisco, CA 94016" +160357,AAA Batteries (4-pack),1,2.99,02/05/19 15:09,"58 Willow St, San Francisco, CA 94016" +160358,AA Batteries (4-pack),1,3.84,02/16/19 10:46,"248 Lake St, Boston, MA 02215" +160359,iPhone,1,700,03/01/19 01:12,"305 South St, San Francisco, CA 94016" +160360,Wired Headphones,1,11.99,02/22/19 12:11,"594 Chestnut St, Boston, MA 02215" +160361,34in Ultrawide Monitor,1,379.99,02/03/19 13:49,"902 Cedar St, Boston, MA 02215" +160362,AAA Batteries (4-pack),1,2.99,02/12/19 19:17,"369 Elm St, New York City, NY 10001" +160363,Lightning Charging Cable,1,14.95,02/24/19 21:09,"674 12th St, New York City, NY 10001" +160364,Google Phone,1,600,02/19/19 22:32,"636 2nd St, New York City, NY 10001" +160365,Google Phone,1,600,02/24/19 19:25,"535 Maple St, Atlanta, GA 30301" +160366,USB-C Charging Cable,1,11.95,02/22/19 22:55,"489 Hill St, New York City, NY 10001" +160367,USB-C Charging Cable,1,11.95,02/24/19 08:28,"220 Ridge St, New York City, NY 10001" +160368,AA Batteries (4-pack),1,3.84,02/20/19 12:55,"723 Sunset St, Austin, TX 73301" +160369,Wired Headphones,1,11.99,02/27/19 19:36,"334 14th St, New York City, NY 10001" +160370,Flatscreen TV,1,300,02/17/19 21:36,"218 Elm St, San Francisco, CA 94016" +160371,iPhone,1,700,02/10/19 17:55,"198 Walnut St, Los Angeles, CA 90001" +160372,Wired Headphones,1,11.99,02/27/19 19:04,"391 Main St, Boston, MA 02215" +160373,Flatscreen TV,1,300,02/16/19 11:44,"824 Maple St, Los Angeles, CA 90001" +160374,27in FHD Monitor,1,149.99,02/06/19 11:06,"666 2nd St, Dallas, TX 75001" +160375,USB-C Charging Cable,1,11.95,02/02/19 19:52,"939 1st St, New York City, NY 10001" +160376,Lightning Charging Cable,1,14.95,02/11/19 17:27,"120 Center St, Los Angeles, CA 90001" +160377,Macbook Pro Laptop,1,1700,02/07/19 20:32,"922 9th St, San Francisco, CA 94016" +160378,Apple Airpods Headphones,1,150,02/06/19 20:16,"479 Johnson St, Los Angeles, CA 90001" +160379,Google Phone,1,600,02/14/19 17:13,"588 Spruce St, Seattle, WA 98101" +160380,Flatscreen TV,1,300,02/22/19 13:26,"859 9th St, New York City, NY 10001" +160381,Lightning Charging Cable,2,14.95,02/20/19 22:41,"364 Cedar St, Boston, MA 02215" +160382,USB-C Charging Cable,1,11.95,02/19/19 10:49,"102 Chestnut St, Dallas, TX 75001" +160383,Lightning Charging Cable,1,14.95,02/13/19 11:08,"31 Spruce St, New York City, NY 10001" +160384,AAA Batteries (4-pack),1,2.99,02/23/19 16:10,"964 Washington St, Austin, TX 73301" +160385,27in FHD Monitor,1,149.99,02/18/19 20:26,"893 Highland St, San Francisco, CA 94016" +160386,34in Ultrawide Monitor,1,379.99,02/01/19 17:53,"570 Hill St, Los Angeles, CA 90001" +160387,AAA Batteries (4-pack),1,2.99,02/19/19 00:05,"247 Willow St, Portland, ME 04101" +160388,AA Batteries (4-pack),1,3.84,02/22/19 22:17,"740 Lake St, Los Angeles, CA 90001" +160389,Wired Headphones,1,11.99,02/10/19 07:50,"168 Spruce St, New York City, NY 10001" +160390,USB-C Charging Cable,2,11.95,02/13/19 23:04,"714 Wilson St, San Francisco, CA 94016" +160391,AAA Batteries (4-pack),1,2.99,02/18/19 21:07,"804 12th St, San Francisco, CA 94016" +160392,AAA Batteries (4-pack),3,2.99,02/21/19 14:01,"383 Lakeview St, Austin, TX 73301" +160393,Apple Airpods Headphones,1,150,02/24/19 19:19,"130 10th St, Dallas, TX 75001" +160394,34in Ultrawide Monitor,1,379.99,02/17/19 00:40,"402 Hill St, San Francisco, CA 94016" +160395,Google Phone,1,600,02/07/19 18:47,"435 Chestnut St, Portland, OR 97035" +160396,Apple Airpods Headphones,1,150,02/09/19 22:37,"771 9th St, San Francisco, CA 94016" +160397,Apple Airpods Headphones,1,150,02/05/19 14:06,"430 11th St, San Francisco, CA 94016" +160398,Apple Airpods Headphones,1,150,02/15/19 20:48,"460 Maple St, San Francisco, CA 94016" +160399,Lightning Charging Cable,1,14.95,02/10/19 14:55,"628 Ridge St, Los Angeles, CA 90001" +160399,Google Phone,1,600,02/10/19 14:55,"628 Ridge St, Los Angeles, CA 90001" +160400,iPhone,1,700,02/24/19 13:54,"257 Meadow St, Los Angeles, CA 90001" +160401,27in FHD Monitor,1,149.99,02/22/19 15:58,"306 Willow St, Dallas, TX 75001" +160401,AAA Batteries (4-pack),1,2.99,02/22/19 15:58,"306 Willow St, Dallas, TX 75001" +160402,Wired Headphones,1,11.99,02/27/19 09:13,"399 11th St, New York City, NY 10001" +160403,Wired Headphones,1,11.99,02/16/19 21:10,"394 Maple St, San Francisco, CA 94016" +160404,AAA Batteries (4-pack),1,2.99,02/13/19 19:21,"307 Johnson St, Seattle, WA 98101" +160405,Wired Headphones,1,11.99,02/26/19 09:54,"846 Hill St, Austin, TX 73301" +160406,AA Batteries (4-pack),2,3.84,02/23/19 01:14,"436 Highland St, San Francisco, CA 94016" +160407,AA Batteries (4-pack),1,3.84,02/04/19 18:52,"939 5th St, New York City, NY 10001" +160408,27in FHD Monitor,1,149.99,02/24/19 20:15,"52 Cherry St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +160409,USB-C Charging Cable,2,11.95,02/23/19 15:37,"577 4th St, Los Angeles, CA 90001" +160410,Apple Airpods Headphones,1,150,02/11/19 10:02,"470 Lake St, Los Angeles, CA 90001" +160411,Macbook Pro Laptop,1,1700,02/25/19 15:45,"545 South St, Atlanta, GA 30301" +160412,USB-C Charging Cable,1,11.95,02/27/19 12:43,"330 Cedar St, Austin, TX 73301" +160413,AA Batteries (4-pack),1,3.84,02/08/19 18:10,"605 13th St, Los Angeles, CA 90001" +160414,AAA Batteries (4-pack),2,2.99,02/27/19 20:23,"479 14th St, Atlanta, GA 30301" +160415,Apple Airpods Headphones,1,150,02/05/19 23:10,"970 Maple St, Los Angeles, CA 90001" +160416,AA Batteries (4-pack),1,3.84,02/18/19 17:00,"515 Forest St, Dallas, TX 75001" +160417,AA Batteries (4-pack),2,3.84,02/07/19 23:16,"271 2nd St, New York City, NY 10001" +160418,Google Phone,1,600,02/22/19 23:32,"555 7th St, New York City, NY 10001" +160419,Apple Airpods Headphones,1,150,02/05/19 19:00,"449 Lincoln St, New York City, NY 10001" +160420,27in FHD Monitor,1,149.99,02/18/19 21:12,"198 Cherry St, Boston, MA 02215" +160421,20in Monitor,1,109.99,02/12/19 17:45,"969 Maple St, Austin, TX 73301" +,,,,, +160422,AA Batteries (4-pack),1,3.84,02/20/19 12:19,"117 Johnson St, Dallas, TX 75001" +160423,Google Phone,1,600,02/24/19 23:52,"172 Cedar St, Atlanta, GA 30301" +160424,Wired Headphones,1,11.99,02/05/19 12:07,"749 8th St, Los Angeles, CA 90001" +160425,Bose SoundSport Headphones,1,99.99,02/25/19 11:24,"710 Park St, New York City, NY 10001" +160426,AAA Batteries (4-pack),1,2.99,02/10/19 09:39,"45 River St, Los Angeles, CA 90001" +160427,Apple Airpods Headphones,1,150,02/13/19 07:56,"766 Jefferson St, San Francisco, CA 94016" +160428,Wired Headphones,1,11.99,02/23/19 15:29,"626 River St, San Francisco, CA 94016" +160429,Lightning Charging Cable,1,14.95,02/11/19 12:38,"663 Cedar St, Los Angeles, CA 90001" +160430,AAA Batteries (4-pack),1,2.99,02/05/19 19:12,"156 2nd St, San Francisco, CA 94016" +160431,Wired Headphones,1,11.99,02/21/19 11:29,"751 Main St, Boston, MA 02215" +160432,Google Phone,1,600,02/20/19 18:14,"454 8th St, San Francisco, CA 94016" +160433,27in 4K Gaming Monitor,1,389.99,02/11/19 23:37,"119 South St, San Francisco, CA 94016" +160434,Wired Headphones,1,11.99,02/19/19 11:02,"760 Meadow St, Los Angeles, CA 90001" +160435,iPhone,1,700,02/27/19 06:41,"836 13th St, New York City, NY 10001" +160435,Lightning Charging Cable,1,14.95,02/27/19 06:41,"836 13th St, New York City, NY 10001" +160436,USB-C Charging Cable,2,11.95,02/07/19 12:27,"251 Park St, Boston, MA 02215" +160437,Wired Headphones,2,11.99,02/14/19 09:55,"597 Maple St, Dallas, TX 75001" +160438,Apple Airpods Headphones,1,150,02/22/19 19:45,"871 7th St, San Francisco, CA 94016" +160439,34in Ultrawide Monitor,1,379.99,02/03/19 01:28,"68 Forest St, Portland, OR 97035" +160440,Apple Airpods Headphones,1,150,02/16/19 15:49,"97 Spruce St, Boston, MA 02215" +160441,Flatscreen TV,1,300,02/08/19 12:06,"545 Main St, San Francisco, CA 94016" +160442,iPhone,1,700,02/16/19 19:12,"116 7th St, Portland, OR 97035" +160442,Lightning Charging Cable,1,14.95,02/16/19 19:12,"116 7th St, Portland, OR 97035" +160443,27in 4K Gaming Monitor,1,389.99,02/04/19 20:48,"321 Lincoln St, San Francisco, CA 94016" +160444,ThinkPad Laptop,1,999.99,02/16/19 13:50,"300 8th St, Atlanta, GA 30301" +160445,iPhone,1,700,02/26/19 14:03,"381 Jackson St, Dallas, TX 75001" +160446,Lightning Charging Cable,1,14.95,02/28/19 07:17,"355 Chestnut St, Los Angeles, CA 90001" +160447,Macbook Pro Laptop,1,1700,02/23/19 09:34,"527 Hickory St, Dallas, TX 75001" +160448,AA Batteries (4-pack),1,3.84,02/27/19 18:07,"890 Willow St, Seattle, WA 98101" +160449,Apple Airpods Headphones,1,150,02/28/19 16:33,"808 Church St, New York City, NY 10001" +160450,Wired Headphones,1,11.99,02/03/19 14:26,"47 Wilson St, San Francisco, CA 94016" +160451,Bose SoundSport Headphones,1,99.99,02/18/19 11:54,"243 Maple St, Los Angeles, CA 90001" +160452,Apple Airpods Headphones,1,150,02/08/19 06:04,"349 Sunset St, San Francisco, CA 94016" +160453,Apple Airpods Headphones,1,150,02/24/19 18:30,"851 1st St, Seattle, WA 98101" +160453,27in FHD Monitor,1,149.99,02/24/19 18:30,"851 1st St, Seattle, WA 98101" +160454,AAA Batteries (4-pack),2,2.99,02/23/19 15:50,"201 West St, New York City, NY 10001" +160455,Wired Headphones,1,11.99,02/25/19 16:47,"621 7th St, Portland, OR 97035" +160456,iPhone,1,700,02/19/19 23:28,"383 Willow St, San Francisco, CA 94016" +160457,USB-C Charging Cable,1,11.95,02/26/19 08:45,"898 Walnut St, Los Angeles, CA 90001" +160458,iPhone,1,700,02/20/19 15:35,"640 13th St, San Francisco, CA 94016" +160458,Lightning Charging Cable,1,14.95,02/20/19 15:35,"640 13th St, San Francisco, CA 94016" +160459,Apple Airpods Headphones,1,150,02/16/19 10:30,"291 6th St, Los Angeles, CA 90001" +160460,AA Batteries (4-pack),1,3.84,02/01/19 16:15,"758 9th St, Seattle, WA 98101" +160461,Apple Airpods Headphones,1,150,02/14/19 18:11,"737 Walnut St, Dallas, TX 75001" +160462,USB-C Charging Cable,1,11.95,02/21/19 07:30,"915 10th St, Los Angeles, CA 90001" +160463,AA Batteries (4-pack),1,3.84,02/15/19 14:44,"620 12th St, Seattle, WA 98101" +160464,Flatscreen TV,1,300,02/04/19 00:33,"494 Forest St, San Francisco, CA 94016" +160465,USB-C Charging Cable,1,11.95,02/11/19 07:40,"819 1st St, Los Angeles, CA 90001" +160466,Apple Airpods Headphones,1,150,02/24/19 19:45,"872 Maple St, New York City, NY 10001" +160467,Macbook Pro Laptop,1,1700,02/14/19 09:33,"164 Spruce St, New York City, NY 10001" +160468,iPhone,1,700,02/09/19 17:09,"208 10th St, Austin, TX 73301" +160469,Wired Headphones,1,11.99,02/25/19 18:55,"835 Willow St, Austin, TX 73301" +160470,Macbook Pro Laptop,1,1700,02/21/19 18:54,"927 2nd St, Los Angeles, CA 90001" +160471,Wired Headphones,1,11.99,02/02/19 14:49,"577 Cedar St, Austin, TX 73301" +160472,Lightning Charging Cable,1,14.95,02/13/19 22:53,"533 Lakeview St, Boston, MA 02215" +160473,AA Batteries (4-pack),1,3.84,02/11/19 22:09,"379 Cedar St, Los Angeles, CA 90001" +160474,USB-C Charging Cable,1,11.95,02/15/19 08:37,"201 Park St, San Francisco, CA 94016" +160475,AAA Batteries (4-pack),1,2.99,02/22/19 20:30,"663 Center St, Boston, MA 02215" +160476,Wired Headphones,1,11.99,02/15/19 19:52,"86 Chestnut St, Dallas, TX 75001" +160477,34in Ultrawide Monitor,1,379.99,02/24/19 11:57,"640 Forest St, Portland, OR 97035" +160478,ThinkPad Laptop,1,999.99,02/13/19 10:13,"274 9th St, San Francisco, CA 94016" +160479,AAA Batteries (4-pack),4,2.99,02/25/19 20:21,"987 Jackson St, Boston, MA 02215" +160480,27in 4K Gaming Monitor,1,389.99,02/04/19 11:08,"775 Maple St, Los Angeles, CA 90001" +160481,27in 4K Gaming Monitor,1,389.99,02/12/19 11:56,"235 Wilson St, Austin, TX 73301" +160482,Lightning Charging Cable,1,14.95,02/17/19 18:27,"847 8th St, Los Angeles, CA 90001" +160483,Lightning Charging Cable,1,14.95,02/19/19 13:28,"397 Jackson St, Los Angeles, CA 90001" +160484,Lightning Charging Cable,1,14.95,02/25/19 18:05,"379 4th St, Portland, OR 97035" +160485,AA Batteries (4-pack),1,3.84,02/13/19 00:29,"784 5th St, Seattle, WA 98101" +160486,Bose SoundSport Headphones,1,99.99,02/11/19 16:48,"334 Elm St, Austin, TX 73301" +160487,AAA Batteries (4-pack),1,2.99,02/12/19 06:24,"163 14th St, Dallas, TX 75001" +160488,iPhone,1,700,02/24/19 03:12,"130 Lake St, Los Angeles, CA 90001" +160489,Wired Headphones,1,11.99,02/05/19 03:39,"752 Walnut St, Boston, MA 02215" +160490,ThinkPad Laptop,1,999.99,02/13/19 19:58,"505 11th St, San Francisco, CA 94016" +160491,AAA Batteries (4-pack),1,2.99,02/19/19 10:27,"993 5th St, Los Angeles, CA 90001" +160492,20in Monitor,1,109.99,02/21/19 09:42,"667 Forest St, Austin, TX 73301" +160493,Wired Headphones,1,11.99,02/05/19 18:34,"6 Pine St, Boston, MA 02215" +160494,Bose SoundSport Headphones,1,99.99,02/08/19 21:15,"522 Willow St, San Francisco, CA 94016" +160495,27in 4K Gaming Monitor,1,389.99,02/15/19 16:54,"979 Church St, Boston, MA 02215" +160495,USB-C Charging Cable,1,11.95,02/15/19 16:54,"979 Church St, Boston, MA 02215" +160496,Google Phone,1,600,02/11/19 23:56,"66 Maple St, San Francisco, CA 94016" +160497,AAA Batteries (4-pack),3,2.99,02/11/19 17:54,"379 9th St, Atlanta, GA 30301" +160498,iPhone,1,700,02/14/19 20:08,"645 7th St, Seattle, WA 98101" +160499,27in FHD Monitor,1,149.99,02/16/19 00:20,"937 West St, San Francisco, CA 94016" +160500,AAA Batteries (4-pack),1,2.99,02/17/19 11:15,"249 Sunset St, Los Angeles, CA 90001" +160501,Macbook Pro Laptop,1,1700,02/24/19 07:20,"61 Church St, Boston, MA 02215" +160502,Apple Airpods Headphones,1,150,02/18/19 12:12,"837 Wilson St, San Francisco, CA 94016" +160503,USB-C Charging Cable,1,11.95,02/24/19 17:37,"864 8th St, San Francisco, CA 94016" +160504,27in 4K Gaming Monitor,1,389.99,02/17/19 04:55,"637 12th St, Boston, MA 02215" +160505,Flatscreen TV,1,300,02/22/19 15:24,"214 10th St, Boston, MA 02215" +160506,USB-C Charging Cable,1,11.95,02/05/19 06:08,"751 Church St, San Francisco, CA 94016" +160507,AAA Batteries (4-pack),5,2.99,02/07/19 16:47,"228 Park St, New York City, NY 10001" +160508,Bose SoundSport Headphones,1,99.99,02/12/19 13:02,"627 Cherry St, Dallas, TX 75001" +160509,Bose SoundSport Headphones,1,99.99,02/20/19 20:38,"964 Walnut St, Dallas, TX 75001" +160510,AA Batteries (4-pack),2,3.84,02/20/19 13:17,"316 North St, Atlanta, GA 30301" +160511,AA Batteries (4-pack),2,3.84,02/22/19 13:10,"452 Lakeview St, Austin, TX 73301" +160512,20in Monitor,1,109.99,02/10/19 02:56,"323 2nd St, Austin, TX 73301" +160513,Google Phone,1,600,02/25/19 02:37,"237 Cedar St, San Francisco, CA 94016" +160514,iPhone,1,700,02/08/19 13:17,"54 Church St, Atlanta, GA 30301" +160514,Macbook Pro Laptop,1,1700,02/08/19 13:17,"54 Church St, Atlanta, GA 30301" +160515,34in Ultrawide Monitor,1,379.99,02/04/19 13:07,"987 Center St, New York City, NY 10001" +160516,27in 4K Gaming Monitor,1,389.99,02/12/19 22:26,"713 Park St, Dallas, TX 75001" +160517,Wired Headphones,1,11.99,02/19/19 17:06,"933 Maple St, New York City, NY 10001" +160518,AA Batteries (4-pack),1,3.84,02/27/19 10:55,"217 Willow St, San Francisco, CA 94016" +160519,Lightning Charging Cable,1,14.95,02/22/19 11:15,"639 9th St, San Francisco, CA 94016" +160520,Apple Airpods Headphones,1,150,02/16/19 17:35,"716 Dogwood St, New York City, NY 10001" +160521,Lightning Charging Cable,1,14.95,02/19/19 17:17,"706 Center St, Los Angeles, CA 90001" +160522,AAA Batteries (4-pack),1,2.99,02/16/19 22:03,"637 Main St, Portland, OR 97035" +160523,Apple Airpods Headphones,1,150,02/23/19 16:50,"560 Church St, Boston, MA 02215" +160524,Lightning Charging Cable,1,14.95,02/19/19 13:35,"932 Pine St, New York City, NY 10001" +160525,34in Ultrawide Monitor,1,379.99,02/18/19 23:46,"596 8th St, Boston, MA 02215" +160526,AAA Batteries (4-pack),1,2.99,02/05/19 22:58,"388 Cherry St, San Francisco, CA 94016" +160527,Lightning Charging Cable,1,14.95,02/09/19 15:46,"325 Lake St, Los Angeles, CA 90001" +160528,Wired Headphones,1,11.99,02/23/19 12:36,"838 Wilson St, Portland, ME 04101" +160529,USB-C Charging Cable,1,11.95,02/17/19 23:02,"632 Meadow St, Seattle, WA 98101" +160530,Apple Airpods Headphones,1,150,02/07/19 20:20,"920 Cherry St, New York City, NY 10001" +160531,AAA Batteries (4-pack),1,2.99,02/05/19 15:05,"978 South St, Atlanta, GA 30301" +160532,Flatscreen TV,1,300,02/06/19 13:53,"930 Sunset St, San Francisco, CA 94016" +160533,AA Batteries (4-pack),1,3.84,02/04/19 17:50,"75 Walnut St, Dallas, TX 75001" +160534,Wired Headphones,1,11.99,02/02/19 06:34,"476 West St, Boston, MA 02215" +160535,iPhone,1,700,02/22/19 21:26,"622 Lakeview St, San Francisco, CA 94016" +160536,Google Phone,1,600,02/24/19 10:58,"286 2nd St, Atlanta, GA 30301" +160537,Wired Headphones,2,11.99,02/19/19 05:19,"30 Washington St, New York City, NY 10001" +160538,Flatscreen TV,1,300,02/06/19 17:31,"510 9th St, San Francisco, CA 94016" +160539,ThinkPad Laptop,1,999.99,02/07/19 16:54,"734 Lake St, San Francisco, CA 94016" +160540,ThinkPad Laptop,1,999.99,02/05/19 04:22,"821 Spruce St, Los Angeles, CA 90001" +160541,AA Batteries (4-pack),3,3.84,02/20/19 21:23,"513 Spruce St, New York City, NY 10001" +160542,USB-C Charging Cable,1,11.95,02/14/19 21:59,"135 7th St, New York City, NY 10001" +160543,AAA Batteries (4-pack),4,2.99,02/22/19 14:05,"139 Willow St, Seattle, WA 98101" +160544,iPhone,1,700,02/24/19 11:55,"111 Center St, San Francisco, CA 94016" +160545,USB-C Charging Cable,1,11.95,02/08/19 12:15,"835 12th St, Dallas, TX 75001" +160546,Wired Headphones,1,11.99,02/10/19 04:49,"946 5th St, San Francisco, CA 94016" +160547,ThinkPad Laptop,1,999.99,02/07/19 18:31,"342 13th St, Atlanta, GA 30301" +160548,20in Monitor,1,109.99,02/28/19 18:57,"432 Center St, New York City, NY 10001" +160549,Macbook Pro Laptop,1,1700,02/10/19 02:29,"153 Johnson St, New York City, NY 10001" +160550,AA Batteries (4-pack),2,3.84,02/14/19 13:18,"225 Jefferson St, San Francisco, CA 94016" +160551,Apple Airpods Headphones,1,150,02/22/19 23:24,"41 Jackson St, Los Angeles, CA 90001" +160552,AAA Batteries (4-pack),3,2.99,02/18/19 10:17,"108 Willow St, San Francisco, CA 94016" +160553,Lightning Charging Cable,1,14.95,02/03/19 19:14,"380 Lakeview St, Seattle, WA 98101" +,,,,, +160554,Lightning Charging Cable,1,14.95,02/19/19 18:52,"586 12th St, Seattle, WA 98101" +160555,27in 4K Gaming Monitor,1,389.99,02/22/19 15:08,"432 Pine St, San Francisco, CA 94016" +160556,Bose SoundSport Headphones,1,99.99,02/05/19 21:05,"271 Pine St, New York City, NY 10001" +160557,Bose SoundSport Headphones,1,99.99,02/06/19 12:22,"847 Hickory St, New York City, NY 10001" +160558,Wired Headphones,1,11.99,02/07/19 06:16,"472 Jackson St, San Francisco, CA 94016" +160559,USB-C Charging Cable,1,11.95,02/07/19 18:45,"332 Center St, Seattle, WA 98101" +160560,Bose SoundSport Headphones,1,99.99,02/11/19 14:29,"531 Ridge St, San Francisco, CA 94016" +160561,Bose SoundSport Headphones,1,99.99,02/08/19 23:19,"728 Forest St, San Francisco, CA 94016" +160562,Wired Headphones,1,11.99,02/05/19 00:35,"810 Willow St, San Francisco, CA 94016" +160563,Wired Headphones,1,11.99,02/03/19 17:49,"749 Johnson St, Seattle, WA 98101" +160564,AAA Batteries (4-pack),1,2.99,02/21/19 14:31,"286 Park St, Dallas, TX 75001" +160565,AA Batteries (4-pack),1,3.84,02/22/19 16:00,"94 Jackson St, Portland, OR 97035" +160566,Bose SoundSport Headphones,1,99.99,02/19/19 16:00,"454 13th St, Los Angeles, CA 90001" +160567,USB-C Charging Cable,1,11.95,02/18/19 17:13,"623 Hickory St, New York City, NY 10001" +160568,AAA Batteries (4-pack),3,2.99,02/19/19 06:13,"175 9th St, New York City, NY 10001" +160569,20in Monitor,1,109.99,02/04/19 07:29,"33 North St, Boston, MA 02215" +160570,Apple Airpods Headphones,1,150,02/24/19 22:27,"977 12th St, New York City, NY 10001" +160571,Bose SoundSport Headphones,1,99.99,02/07/19 13:25,"288 10th St, Atlanta, GA 30301" +160572,Wired Headphones,1,11.99,02/20/19 20:36,"57 7th St, Dallas, TX 75001" +160573,USB-C Charging Cable,1,11.95,02/18/19 13:24,"431 13th St, San Francisco, CA 94016" +160574,Lightning Charging Cable,1,14.95,02/07/19 19:53,"791 Johnson St, Portland, OR 97035" +160575,Bose SoundSport Headphones,1,99.99,02/15/19 19:37,"481 Sunset St, San Francisco, CA 94016" +160576,Wired Headphones,1,11.99,02/16/19 12:06,"714 9th St, Boston, MA 02215" +160577,Google Phone,1,600,02/02/19 19:25,"90 Meadow St, Los Angeles, CA 90001" +160577,Wired Headphones,1,11.99,02/02/19 19:25,"90 Meadow St, Los Angeles, CA 90001" +160578,USB-C Charging Cable,1,11.95,02/21/19 14:18,"879 12th St, Boston, MA 02215" +160579,Macbook Pro Laptop,1,1700,02/01/19 17:36,"176 West St, Seattle, WA 98101" +160580,20in Monitor,1,109.99,02/13/19 02:49,"886 Jefferson St, Portland, OR 97035" +160581,Wired Headphones,1,11.99,02/24/19 17:28,"608 Lakeview St, San Francisco, CA 94016" +160582,USB-C Charging Cable,2,11.95,02/13/19 10:45,"132 South St, San Francisco, CA 94016" +160583,27in 4K Gaming Monitor,1,389.99,02/09/19 17:39,"69 West St, Dallas, TX 75001" +160584,AA Batteries (4-pack),1,3.84,02/15/19 20:50,"671 Sunset St, Los Angeles, CA 90001" +160585,Wired Headphones,1,11.99,02/05/19 13:55,"788 Forest St, Dallas, TX 75001" +160586,AA Batteries (4-pack),2,3.84,02/02/19 17:19,"775 Forest St, New York City, NY 10001" +160587,ThinkPad Laptop,1,999.99,02/23/19 15:58,"415 Pine St, Los Angeles, CA 90001" +160588,AA Batteries (4-pack),2,3.84,02/03/19 13:21,"477 10th St, Dallas, TX 75001" +160589,Wired Headphones,1,11.99,02/11/19 18:35,"533 Adams St, Dallas, TX 75001" +160590,Wired Headphones,1,11.99,02/06/19 11:07,"495 1st St, San Francisco, CA 94016" +160591,USB-C Charging Cable,1,11.95,02/13/19 16:53,"625 Jefferson St, Boston, MA 02215" +160592,34in Ultrawide Monitor,1,379.99,02/11/19 19:29,"837 River St, Atlanta, GA 30301" +160593,AAA Batteries (4-pack),1,2.99,02/08/19 22:06,"661 Cedar St, San Francisco, CA 94016" +160594,ThinkPad Laptop,1,999.99,02/23/19 17:08,"299 1st St, San Francisco, CA 94016" +160595,20in Monitor,1,109.99,02/20/19 13:45,"327 South St, Atlanta, GA 30301" +160596,27in 4K Gaming Monitor,1,389.99,02/16/19 16:29,"567 12th St, New York City, NY 10001" +160597,Apple Airpods Headphones,1,150,02/07/19 22:54,"290 Pine St, San Francisco, CA 94016" +160598,AA Batteries (4-pack),1,3.84,02/02/19 19:11,"395 7th St, Seattle, WA 98101" +160599,AA Batteries (4-pack),1,3.84,02/07/19 19:24,"665 Jackson St, Boston, MA 02215" +160600,USB-C Charging Cable,1,11.95,02/09/19 18:01,"617 11th St, San Francisco, CA 94016" +160601,Google Phone,1,600,02/08/19 15:59,"807 River St, Los Angeles, CA 90001" +160602,AAA Batteries (4-pack),1,2.99,02/28/19 22:26,"98 Johnson St, Atlanta, GA 30301" +160603,Wired Headphones,1,11.99,02/08/19 20:55,"689 Lake St, San Francisco, CA 94016" +160604,USB-C Charging Cable,1,11.95,02/18/19 08:33,"243 River St, Portland, OR 97035" +160605,AAA Batteries (4-pack),1,2.99,02/10/19 18:53,"897 2nd St, San Francisco, CA 94016" +160606,USB-C Charging Cable,1,11.95,02/12/19 16:16,"656 Chestnut St, San Francisco, CA 94016" +160607,Lightning Charging Cable,1,14.95,02/05/19 13:54,"440 5th St, Boston, MA 02215" +160608,Macbook Pro Laptop,1,1700,02/08/19 11:56,"426 West St, Portland, OR 97035" +160609,USB-C Charging Cable,1,11.95,02/11/19 19:27,"803 Meadow St, New York City, NY 10001" +160610,Wired Headphones,1,11.99,02/11/19 06:22,"662 West St, Portland, OR 97035" +160611,Apple Airpods Headphones,1,150,02/17/19 10:01,"342 Washington St, Austin, TX 73301" +160612,Apple Airpods Headphones,1,150,02/14/19 05:33,"736 Lincoln St, Portland, OR 97035" +160613,27in 4K Gaming Monitor,1,389.99,02/16/19 12:06,"217 Cedar St, Los Angeles, CA 90001" +160614,USB-C Charging Cable,2,11.95,02/15/19 11:38,"523 Meadow St, Atlanta, GA 30301" +160614,Apple Airpods Headphones,1,150,02/15/19 11:38,"523 Meadow St, Atlanta, GA 30301" +160615,Lightning Charging Cable,1,14.95,02/11/19 17:42,"979 Chestnut St, San Francisco, CA 94016" +160616,AA Batteries (4-pack),1,3.84,02/10/19 09:50,"83 4th St, New York City, NY 10001" +160617,AAA Batteries (4-pack),2,2.99,02/07/19 14:48,"491 Church St, Los Angeles, CA 90001" +160618,USB-C Charging Cable,2,11.95,02/18/19 11:54,"799 North St, Portland, OR 97035" +160619,27in 4K Gaming Monitor,1,389.99,02/03/19 11:09,"102 Lincoln St, Seattle, WA 98101" +160620,AA Batteries (4-pack),1,3.84,02/12/19 07:59,"781 Pine St, San Francisco, CA 94016" +160621,AAA Batteries (4-pack),1,2.99,02/28/19 11:50,"952 Hickory St, Atlanta, GA 30301" +160622,Lightning Charging Cable,1,14.95,02/03/19 21:56,"745 13th St, Portland, OR 97035" +160623,Wired Headphones,1,11.99,02/25/19 10:39,"203 Jefferson St, Atlanta, GA 30301" +160624,Lightning Charging Cable,1,14.95,02/18/19 08:05,"980 River St, San Francisco, CA 94016" +160625,USB-C Charging Cable,1,11.95,02/02/19 23:37,"770 Elm St, Atlanta, GA 30301" +160626,AA Batteries (4-pack),1,3.84,02/09/19 11:30,"200 Hill St, Austin, TX 73301" +160627,Apple Airpods Headphones,1,150,02/10/19 13:46,"265 North St, Boston, MA 02215" +160628,USB-C Charging Cable,1,11.95,02/20/19 19:19,"118 11th St, Dallas, TX 75001" +160629,Wired Headphones,1,11.99,02/10/19 13:15,"175 Center St, Boston, MA 02215" +160630,Lightning Charging Cable,1,14.95,02/18/19 10:16,"888 North St, San Francisco, CA 94016" +160631,USB-C Charging Cable,1,11.95,02/23/19 23:02,"485 Center St, Los Angeles, CA 90001" +160632,Bose SoundSport Headphones,1,99.99,02/12/19 10:51,"902 7th St, Los Angeles, CA 90001" +160633,Wired Headphones,1,11.99,02/03/19 21:10,"657 River St, Boston, MA 02215" +160634,AAA Batteries (4-pack),1,2.99,02/04/19 16:31,"99 Center St, San Francisco, CA 94016" +160635,iPhone,1,700,02/06/19 15:32,"937 South St, Los Angeles, CA 90001" +160635,Apple Airpods Headphones,1,150,02/06/19 15:32,"937 South St, Los Angeles, CA 90001" +160636,AAA Batteries (4-pack),2,2.99,02/27/19 09:42,"905 Highland St, Atlanta, GA 30301" +160636,AAA Batteries (4-pack),2,2.99,02/27/19 09:42,"905 Highland St, Atlanta, GA 30301" +160637,Macbook Pro Laptop,1,1700,02/24/19 08:28,"471 Jefferson St, New York City, NY 10001" +160638,Lightning Charging Cable,1,14.95,02/27/19 17:27,"254 7th St, San Francisco, CA 94016" +160639,Bose SoundSport Headphones,1,99.99,02/18/19 16:46,"686 South St, Atlanta, GA 30301" +160640,Lightning Charging Cable,1,14.95,02/28/19 19:14,"860 West St, Portland, ME 04101" +160641,AAA Batteries (4-pack),3,2.99,02/05/19 11:01,"320 Madison St, San Francisco, CA 94016" +160642,iPhone,1,700,02/17/19 15:56,"664 5th St, Dallas, TX 75001" +160643,Bose SoundSport Headphones,1,99.99,02/08/19 07:14,"213 Park St, Seattle, WA 98101" +160644,Bose SoundSport Headphones,1,99.99,02/23/19 16:57,"100 Park St, San Francisco, CA 94016" +160645,Lightning Charging Cable,2,14.95,02/01/19 20:58,"837 Maple St, Seattle, WA 98101" +160646,Wired Headphones,1,11.99,02/20/19 15:12,"689 Jefferson St, San Francisco, CA 94016" +160647,Lightning Charging Cable,1,14.95,02/02/19 15:52,"525 Adams St, Portland, OR 97035" +160648,Apple Airpods Headphones,1,150,02/03/19 20:02,"574 Spruce St, San Francisco, CA 94016" +160649,Bose SoundSport Headphones,1,99.99,02/11/19 22:43,"103 Main St, San Francisco, CA 94016" +160650,Apple Airpods Headphones,1,150,02/21/19 11:50,"669 Johnson St, Los Angeles, CA 90001" +160651,Flatscreen TV,1,300,02/24/19 13:12,"538 Dogwood St, San Francisco, CA 94016" +160652,Wired Headphones,1,11.99,02/16/19 11:30,"313 West St, New York City, NY 10001" +160653,AA Batteries (4-pack),1,3.84,02/14/19 18:21,"848 5th St, Los Angeles, CA 90001" +160654,Apple Airpods Headphones,1,150,02/21/19 17:37,"664 8th St, New York City, NY 10001" +160654,Apple Airpods Headphones,1,150,02/21/19 17:37,"664 8th St, New York City, NY 10001" +160655,AA Batteries (4-pack),2,3.84,02/28/19 21:02,"179 Wilson St, San Francisco, CA 94016" +160656,27in 4K Gaming Monitor,1,389.99,02/11/19 11:41,"193 Elm St, Boston, MA 02215" +160657,USB-C Charging Cable,1,11.95,02/05/19 23:33,"490 Washington St, New York City, NY 10001" +160658,Bose SoundSport Headphones,1,99.99,02/23/19 22:05,"556 Adams St, Los Angeles, CA 90001" +160659,Wired Headphones,1,11.99,02/26/19 15:10,"61 Wilson St, New York City, NY 10001" +160660,Google Phone,1,600,02/17/19 22:15,"21 Johnson St, Boston, MA 02215" +160660,USB-C Charging Cable,1,11.95,02/17/19 22:15,"21 Johnson St, Boston, MA 02215" +160661,Apple Airpods Headphones,1,150,02/09/19 22:39,"528 North St, San Francisco, CA 94016" +160662,AA Batteries (4-pack),2,3.84,02/09/19 10:35,"763 Hickory St, Atlanta, GA 30301" +160663,Lightning Charging Cable,1,14.95,02/11/19 15:33,"786 Sunset St, Los Angeles, CA 90001" +160664,USB-C Charging Cable,1,11.95,02/16/19 10:37,"187 Highland St, Seattle, WA 98101" +160665,AAA Batteries (4-pack),1,2.99,02/28/19 21:19,"246 South St, San Francisco, CA 94016" +160666,AA Batteries (4-pack),4,3.84,02/02/19 21:05,"443 River St, San Francisco, CA 94016" +160667,USB-C Charging Cable,1,11.95,02/12/19 12:28,"945 Maple St, New York City, NY 10001" +160668,AA Batteries (4-pack),1,3.84,02/14/19 09:31,"252 Walnut St, Portland, OR 97035" +160669,USB-C Charging Cable,1,11.95,02/10/19 12:22,"665 Cherry St, Los Angeles, CA 90001" +160670,USB-C Charging Cable,1,11.95,02/01/19 17:01,"890 Forest St, San Francisco, CA 94016" +160671,AA Batteries (4-pack),1,3.84,02/22/19 15:07,"68 Forest St, Seattle, WA 98101" +160672,Bose SoundSport Headphones,1,99.99,02/09/19 17:32,"810 10th St, Los Angeles, CA 90001" +160673,20in Monitor,1,109.99,02/23/19 21:54,"573 Lakeview St, Atlanta, GA 30301" +160674,Apple Airpods Headphones,1,150,02/15/19 18:21,"113 Cedar St, San Francisco, CA 94016" +160675,USB-C Charging Cable,1,11.95,02/18/19 19:41,"762 12th St, San Francisco, CA 94016" +160676,Bose SoundSport Headphones,1,99.99,02/28/19 16:10,"587 Adams St, New York City, NY 10001" +160677,Apple Airpods Headphones,1,150,02/20/19 01:08,"491 Jefferson St, Atlanta, GA 30301" +160678,Apple Airpods Headphones,1,150,02/07/19 18:21,"49 North St, Seattle, WA 98101" +160679,iPhone,1,700,02/04/19 20:01,"230 Ridge St, San Francisco, CA 94016" +160680,20in Monitor,1,109.99,02/21/19 20:38,"716 South St, Los Angeles, CA 90001" +160681,Lightning Charging Cable,1,14.95,02/07/19 13:44,"722 Maple St, Austin, TX 73301" +,,,,, +160682,USB-C Charging Cable,1,11.95,02/17/19 08:58,"680 Washington St, San Francisco, CA 94016" +160683,Lightning Charging Cable,1,14.95,02/17/19 14:13,"347 Meadow St, Los Angeles, CA 90001" +160684,34in Ultrawide Monitor,1,379.99,02/06/19 17:49,"67 Walnut St, New York City, NY 10001" +160685,Lightning Charging Cable,1,14.95,02/20/19 15:25,"618 Madison St, San Francisco, CA 94016" +160686,Wired Headphones,1,11.99,02/10/19 09:09,"596 14th St, New York City, NY 10001" +160687,AAA Batteries (4-pack),1,2.99,02/14/19 21:14,"755 Lakeview St, Boston, MA 02215" +160688,AAA Batteries (4-pack),1,2.99,02/12/19 16:47,"638 Meadow St, Dallas, TX 75001" +160689,USB-C Charging Cable,1,11.95,02/09/19 00:48,"370 Church St, Atlanta, GA 30301" +160690,Bose SoundSport Headphones,1,99.99,02/10/19 21:20,"448 Highland St, New York City, NY 10001" +160691,iPhone,1,700,02/08/19 18:26,"642 14th St, New York City, NY 10001" +160691,Lightning Charging Cable,1,14.95,02/08/19 18:26,"642 14th St, New York City, NY 10001" +160692,USB-C Charging Cable,1,11.95,02/25/19 07:15,"70 4th St, Boston, MA 02215" +160693,AA Batteries (4-pack),1,3.84,02/11/19 21:27,"208 10th St, Los Angeles, CA 90001" +160694,Wired Headphones,1,11.99,02/10/19 17:19,"176 West St, Boston, MA 02215" +160695,AA Batteries (4-pack),2,3.84,02/08/19 15:59,"665 Wilson St, San Francisco, CA 94016" +160696,Apple Airpods Headphones,1,150,02/28/19 19:35,"614 Cherry St, Austin, TX 73301" +160697,34in Ultrawide Monitor,1,379.99,02/02/19 18:27,"244 Church St, New York City, NY 10001" +160698,LG Washing Machine,1,600.0,02/22/19 09:02,"290 10th St, Los Angeles, CA 90001" +160699,USB-C Charging Cable,1,11.95,02/19/19 04:40,"471 2nd St, Los Angeles, CA 90001" +160700,Apple Airpods Headphones,1,150,02/01/19 15:06,"506 8th St, Los Angeles, CA 90001" +160701,Apple Airpods Headphones,1,150,02/08/19 13:27,"676 Cherry St, Seattle, WA 98101" +160702,AAA Batteries (4-pack),1,2.99,02/03/19 21:32,"399 1st St, New York City, NY 10001" +160703,Macbook Pro Laptop,1,1700,02/07/19 08:26,"52 Spruce St, San Francisco, CA 94016" +160704,Macbook Pro Laptop,1,1700,02/18/19 06:31,"388 Madison St, Portland, OR 97035" +,,,,, +160705,Bose SoundSport Headphones,1,99.99,02/02/19 19:22,"22 Hill St, Dallas, TX 75001" +160706,Bose SoundSport Headphones,1,99.99,02/02/19 11:55,"232 Lakeview St, San Francisco, CA 94016" +160707,AAA Batteries (4-pack),2,2.99,02/04/19 13:39,"699 Wilson St, Portland, OR 97035" +160708,AA Batteries (4-pack),3,3.84,02/23/19 08:34,"566 Elm St, San Francisco, CA 94016" +160709,iPhone,1,700,02/13/19 13:59,"714 9th St, Portland, OR 97035" +160710,Bose SoundSport Headphones,1,99.99,02/09/19 18:03,"709 Cedar St, Austin, TX 73301" +160711,Apple Airpods Headphones,1,150,02/05/19 02:22,"139 Pine St, San Francisco, CA 94016" +160712,Bose SoundSport Headphones,1,99.99,02/12/19 14:51,"687 11th St, Dallas, TX 75001" +160713,USB-C Charging Cable,1,11.95,02/11/19 17:06,"741 Meadow St, Boston, MA 02215" +160714,USB-C Charging Cable,1,11.95,02/07/19 13:02,"738 Lakeview St, San Francisco, CA 94016" +160715,34in Ultrawide Monitor,1,379.99,02/02/19 10:49,"729 12th St, Los Angeles, CA 90001" +160716,Lightning Charging Cable,1,14.95,02/05/19 19:14,"368 6th St, Atlanta, GA 30301" +160717,USB-C Charging Cable,1,11.95,02/03/19 07:39,"261 Elm St, Boston, MA 02215" +160718,AA Batteries (4-pack),1,3.84,02/08/19 15:31,"577 Spruce St, San Francisco, CA 94016" +160719,AA Batteries (4-pack),1,3.84,02/03/19 12:24,"312 14th St, Seattle, WA 98101" +160720,AA Batteries (4-pack),2,3.84,02/21/19 15:22,"54 5th St, Boston, MA 02215" +160721,27in FHD Monitor,1,149.99,02/23/19 09:50,"103 10th St, Boston, MA 02215" +160722,Bose SoundSport Headphones,1,99.99,02/15/19 08:49,"19 1st St, New York City, NY 10001" +160723,AA Batteries (4-pack),1,3.84,02/07/19 16:14,"250 7th St, Los Angeles, CA 90001" +160724,Apple Airpods Headphones,1,150,02/01/19 10:35,"973 Jackson St, Portland, ME 04101" +160725,20in Monitor,1,109.99,02/04/19 07:48,"968 10th St, Boston, MA 02215" +160726,Apple Airpods Headphones,1,150,02/28/19 22:38,"280 Lakeview St, Portland, ME 04101" +160727,Wired Headphones,1,11.99,02/03/19 18:15,"153 Walnut St, Austin, TX 73301" +160728,20in Monitor,1,109.99,02/26/19 12:43,"557 Lake St, Atlanta, GA 30301" +160729,AA Batteries (4-pack),1,3.84,02/09/19 18:56,"207 Madison St, San Francisco, CA 94016" +160730,USB-C Charging Cable,2,11.95,02/12/19 17:11,"706 11th St, New York City, NY 10001" +160731,Apple Airpods Headphones,1,150,02/04/19 03:47,"782 Forest St, Los Angeles, CA 90001" +160732,34in Ultrawide Monitor,1,379.99,02/09/19 09:52,"180 Wilson St, New York City, NY 10001" +160733,Lightning Charging Cable,1,14.95,02/10/19 13:25,"345 Jefferson St, Seattle, WA 98101" +160734,20in Monitor,1,109.99,02/06/19 12:45,"233 1st St, Portland, OR 97035" +160735,Wired Headphones,1,11.99,02/07/19 10:23,"919 6th St, New York City, NY 10001" +160736,Macbook Pro Laptop,1,1700,02/13/19 09:03,"960 Park St, Dallas, TX 75001" +160737,USB-C Charging Cable,1,11.95,02/14/19 20:41,"806 4th St, Austin, TX 73301" +160738,Apple Airpods Headphones,1,150,02/09/19 14:35,"313 West St, Los Angeles, CA 90001" +160739,AA Batteries (4-pack),1,3.84,02/26/19 14:54,"283 Sunset St, Los Angeles, CA 90001" +160740,Bose SoundSport Headphones,1,99.99,02/27/19 17:19,"31 Lakeview St, San Francisco, CA 94016" +160741,AA Batteries (4-pack),2,3.84,02/05/19 15:40,"578 Park St, Los Angeles, CA 90001" +160742,AAA Batteries (4-pack),2,2.99,02/15/19 17:25,"465 Madison St, Austin, TX 73301" +160743,AAA Batteries (4-pack),2,2.99,02/27/19 07:48,"53 Jefferson St, Atlanta, GA 30301" +160744,iPhone,1,700,02/16/19 19:22,"906 Maple St, San Francisco, CA 94016" +160744,Lightning Charging Cable,1,14.95,02/16/19 19:22,"906 Maple St, San Francisco, CA 94016" +160744,Wired Headphones,1,11.99,02/16/19 19:22,"906 Maple St, San Francisco, CA 94016" +160745,27in 4K Gaming Monitor,1,389.99,02/06/19 20:01,"849 Adams St, San Francisco, CA 94016" +160746,20in Monitor,1,109.99,02/21/19 15:59,"256 Pine St, Dallas, TX 75001" +160747,Vareebadd Phone,1,400,02/08/19 21:22,"318 Chestnut St, San Francisco, CA 94016" +160748,AAA Batteries (4-pack),1,2.99,02/16/19 20:30,"26 Pine St, Boston, MA 02215" +160749,Flatscreen TV,1,300,02/27/19 20:14,"336 Pine St, Dallas, TX 75001" +160750,Bose SoundSport Headphones,1,99.99,02/04/19 16:56,"951 Wilson St, Atlanta, GA 30301" +160751,27in FHD Monitor,1,149.99,02/08/19 19:48,"653 Church St, Portland, OR 97035" +160752,Wired Headphones,1,11.99,02/04/19 22:40,"483 Lakeview St, Boston, MA 02215" +160753,Apple Airpods Headphones,1,150,02/28/19 13:22,"965 Pine St, Austin, TX 73301" +160754,AAA Batteries (4-pack),1,2.99,02/07/19 20:06,"699 Adams St, Boston, MA 02215" +160755,AAA Batteries (4-pack),2,2.99,02/28/19 09:33,"59 13th St, New York City, NY 10001" +160756,USB-C Charging Cable,1,11.95,02/14/19 01:37,"128 Walnut St, San Francisco, CA 94016" +160757,Apple Airpods Headphones,1,150,02/26/19 13:50,"372 Lincoln St, New York City, NY 10001" +160758,AAA Batteries (4-pack),2,2.99,02/02/19 20:17,"870 Center St, Los Angeles, CA 90001" +160759,AAA Batteries (4-pack),1,2.99,02/03/19 20:28,"99 Adams St, New York City, NY 10001" +160760,AAA Batteries (4-pack),1,2.99,02/27/19 13:57,"273 Willow St, Boston, MA 02215" +160761,AA Batteries (4-pack),1,3.84,02/03/19 22:05,"342 Jefferson St, Los Angeles, CA 90001" +160762,Lightning Charging Cable,1,14.95,02/13/19 13:31,"489 Forest St, Atlanta, GA 30301" +160763,USB-C Charging Cable,1,11.95,02/20/19 10:56,"139 Church St, New York City, NY 10001" +160764,Lightning Charging Cable,1,14.95,02/10/19 11:18,"165 Adams St, San Francisco, CA 94016" +160765,USB-C Charging Cable,1,11.95,02/15/19 21:10,"144 Maple St, Boston, MA 02215" +160766,Lightning Charging Cable,1,14.95,02/11/19 19:42,"453 Church St, San Francisco, CA 94016" +160767,Lightning Charging Cable,1,14.95,02/10/19 23:25,"501 Dogwood St, Portland, OR 97035" +160768,Lightning Charging Cable,1,14.95,02/15/19 22:58,"293 Forest St, New York City, NY 10001" +160769,20in Monitor,1,109.99,02/26/19 10:54,"982 Forest St, Dallas, TX 75001" +160770,Flatscreen TV,1,300,02/02/19 07:04,"765 7th St, San Francisco, CA 94016" +160771,Bose SoundSport Headphones,1,99.99,02/02/19 19:28,"745 13th St, New York City, NY 10001" +160772,USB-C Charging Cable,1,11.95,02/22/19 13:01,"676 11th St, New York City, NY 10001" +160773,Macbook Pro Laptop,1,1700,02/23/19 10:50,"547 Park St, New York City, NY 10001" +160774,AA Batteries (4-pack),1,3.84,02/09/19 14:04,"6 North St, Los Angeles, CA 90001" +160775,AA Batteries (4-pack),2,3.84,02/19/19 21:40,"939 Walnut St, Austin, TX 73301" +160776,iPhone,1,700,02/17/19 15:21,"105 Sunset St, Seattle, WA 98101" +160777,Wired Headphones,1,11.99,02/11/19 18:18,"358 Willow St, Dallas, TX 75001" +160778,AA Batteries (4-pack),1,3.84,02/03/19 11:22,"84 10th St, Los Angeles, CA 90001" +160779,LG Dryer,1,600.0,02/15/19 10:28,"413 Center St, San Francisco, CA 94016" +160780,Lightning Charging Cable,1,14.95,02/11/19 13:35,"650 Walnut St, Los Angeles, CA 90001" +160781,Bose SoundSport Headphones,1,99.99,02/26/19 23:59,"587 Dogwood St, New York City, NY 10001" +160782,AAA Batteries (4-pack),2,2.99,02/19/19 12:44,"542 Park St, San Francisco, CA 94016" +160783,iPhone,1,700,02/17/19 16:19,"129 Park St, Austin, TX 73301" +160784,Wired Headphones,1,11.99,02/27/19 13:51,"529 Adams St, San Francisco, CA 94016" +160785,Wired Headphones,1,11.99,02/11/19 06:37,"710 Chestnut St, Seattle, WA 98101" +160786,Lightning Charging Cable,1,14.95,02/16/19 15:52,"514 West St, Portland, ME 04101" +160787,AA Batteries (4-pack),1,3.84,02/22/19 08:21,"842 Main St, San Francisco, CA 94016" +160788,20in Monitor,1,109.99,02/26/19 01:25,"747 Lincoln St, Dallas, TX 75001" +160789,27in 4K Gaming Monitor,1,389.99,02/22/19 14:19,"635 Park St, Dallas, TX 75001" +160790,Lightning Charging Cable,1,14.95,02/27/19 10:28,"546 Washington St, New York City, NY 10001" +160791,27in FHD Monitor,1,149.99,02/22/19 19:57,"463 Park St, Boston, MA 02215" +160792,Google Phone,1,600,02/28/19 17:59,"707 Dogwood St, San Francisco, CA 94016" +160792,Bose SoundSport Headphones,1,99.99,02/28/19 17:59,"707 Dogwood St, San Francisco, CA 94016" +160793,AAA Batteries (4-pack),3,2.99,02/21/19 15:47,"261 7th St, New York City, NY 10001" +160794,Lightning Charging Cable,1,14.95,02/20/19 20:32,"527 Dogwood St, Austin, TX 73301" +160795,USB-C Charging Cable,1,11.95,02/20/19 02:42,"72 Lakeview St, Los Angeles, CA 90001" +160796,USB-C Charging Cable,1,11.95,02/09/19 14:17,"939 Washington St, Los Angeles, CA 90001" +160797,AA Batteries (4-pack),1,3.84,02/13/19 23:18,"216 Center St, Boston, MA 02215" +160798,34in Ultrawide Monitor,1,379.99,02/01/19 22:32,"888 Elm St, Los Angeles, CA 90001" +160799,Bose SoundSport Headphones,1,99.99,02/28/19 20:28,"165 6th St, San Francisco, CA 94016" +160800,AA Batteries (4-pack),1,3.84,02/21/19 13:00,"356 13th St, San Francisco, CA 94016" +160801,Bose SoundSport Headphones,1,99.99,02/12/19 18:04,"240 Willow St, Portland, OR 97035" +160802,Vareebadd Phone,1,400,02/19/19 14:39,"316 Wilson St, New York City, NY 10001" +160803,27in FHD Monitor,1,149.99,02/26/19 15:48,"689 Adams St, Portland, OR 97035" +160804,Bose SoundSport Headphones,1,99.99,02/16/19 12:58,"551 Ridge St, San Francisco, CA 94016" +160805,AAA Batteries (4-pack),1,2.99,02/26/19 11:49,"681 2nd St, Austin, TX 73301" +160806,LG Dryer,1,600.0,02/02/19 10:15,"94 Hickory St, Los Angeles, CA 90001" +160807,Flatscreen TV,1,300,02/05/19 11:52,"941 West St, Dallas, TX 75001" +160808,USB-C Charging Cable,1,11.95,02/25/19 08:45,"10 Johnson St, San Francisco, CA 94016" +160809,ThinkPad Laptop,1,999.99,02/14/19 12:05,"595 Lincoln St, Boston, MA 02215" +160810,Bose SoundSport Headphones,1,99.99,02/12/19 14:05,"390 11th St, Boston, MA 02215" +160811,USB-C Charging Cable,1,11.95,02/24/19 20:14,"311 5th St, Boston, MA 02215" +160811,AAA Batteries (4-pack),1,2.99,02/24/19 20:14,"311 5th St, Boston, MA 02215" +160812,AA Batteries (4-pack),1,3.84,02/11/19 18:09,"326 Ridge St, San Francisco, CA 94016" +160813,USB-C Charging Cable,1,11.95,02/02/19 19:50,"590 5th St, Los Angeles, CA 90001" +160814,iPhone,1,700,02/24/19 23:30,"536 Wilson St, Los Angeles, CA 90001" +160814,Lightning Charging Cable,2,14.95,02/24/19 23:30,"536 Wilson St, Los Angeles, CA 90001" +160815,iPhone,1,700,02/15/19 21:06,"548 Adams St, Dallas, TX 75001" +160816,27in FHD Monitor,1,149.99,02/06/19 13:28,"78 River St, Austin, TX 73301" +160817,LG Dryer,1,600.0,02/11/19 11:00,"657 Spruce St, New York City, NY 10001" +160818,27in FHD Monitor,1,149.99,02/24/19 11:15,"424 Johnson St, San Francisco, CA 94016" +160819,USB-C Charging Cable,1,11.95,02/22/19 18:28,"484 Willow St, Boston, MA 02215" +160820,Wired Headphones,1,11.99,02/15/19 10:04,"114 Pine St, San Francisco, CA 94016" +160821,iPhone,1,700,02/20/19 20:10,"499 Center St, New York City, NY 10001" +160822,27in FHD Monitor,1,149.99,02/10/19 13:46,"262 Wilson St, San Francisco, CA 94016" +160823,AAA Batteries (4-pack),1,2.99,02/21/19 19:42,"957 Sunset St, Austin, TX 73301" +160824,iPhone,1,700,02/16/19 07:39,"585 5th St, Los Angeles, CA 90001" +160825,USB-C Charging Cable,1,11.95,02/02/19 08:30,"551 12th St, Los Angeles, CA 90001" +160826,Lightning Charging Cable,1,14.95,02/05/19 11:55,"494 Park St, Portland, OR 97035" +160827,Apple Airpods Headphones,1,150,02/16/19 00:46,"742 Meadow St, Los Angeles, CA 90001" +160828,27in 4K Gaming Monitor,1,389.99,02/18/19 17:04,"209 Lakeview St, San Francisco, CA 94016" +160829,AA Batteries (4-pack),1,3.84,02/02/19 10:32,"61 Hill St, San Francisco, CA 94016" +160830,27in FHD Monitor,1,149.99,02/10/19 12:35,"554 Cherry St, Austin, TX 73301" +160831,Lightning Charging Cable,2,14.95,02/27/19 23:20,"745 Hill St, Seattle, WA 98101" +160832,AA Batteries (4-pack),2,3.84,02/09/19 22:00,"602 7th St, Atlanta, GA 30301" +160833,27in FHD Monitor,1,149.99,02/14/19 07:53,"102 Washington St, Los Angeles, CA 90001" +160834,AA Batteries (4-pack),1,3.84,02/06/19 13:11,"225 Center St, Los Angeles, CA 90001" +160835,Apple Airpods Headphones,1,150,02/20/19 01:21,"572 Ridge St, Atlanta, GA 30301" +160836,Bose SoundSport Headphones,1,99.99,02/27/19 14:10,"355 1st St, New York City, NY 10001" +160837,Wired Headphones,1,11.99,02/17/19 23:13,"575 11th St, Seattle, WA 98101" +160838,Wired Headphones,1,11.99,02/22/19 16:49,"76 Main St, Boston, MA 02215" +160839,Lightning Charging Cable,1,14.95,02/06/19 14:46,"511 4th St, Austin, TX 73301" +160840,Apple Airpods Headphones,1,150,02/14/19 11:39,"226 4th St, Portland, OR 97035" +160841,Lightning Charging Cable,1,14.95,02/19/19 19:39,"68 Main St, San Francisco, CA 94016" +160841,34in Ultrawide Monitor,1,379.99,02/19/19 19:39,"68 Main St, San Francisco, CA 94016" +160842,Macbook Pro Laptop,1,1700,02/05/19 09:59,"608 Cedar St, Boston, MA 02215" +160843,Flatscreen TV,1,300,02/22/19 11:12,"117 Adams St, Los Angeles, CA 90001" +160844,ThinkPad Laptop,1,999.99,02/23/19 23:19,"640 Forest St, Atlanta, GA 30301" +160844,27in FHD Monitor,1,149.99,02/23/19 23:19,"640 Forest St, Atlanta, GA 30301" +160845,ThinkPad Laptop,1,999.99,02/03/19 10:03,"732 8th St, Austin, TX 73301" +160846,AAA Batteries (4-pack),1,2.99,02/06/19 07:21,"731 11th St, Atlanta, GA 30301" +160847,Bose SoundSport Headphones,1,99.99,02/27/19 08:51,"313 Adams St, Atlanta, GA 30301" +160848,AAA Batteries (4-pack),1,2.99,02/03/19 16:12,"415 Meadow St, Atlanta, GA 30301" +160849,LG Washing Machine,1,600.0,02/01/19 20:47,"987 North St, New York City, NY 10001" +160850,Bose SoundSport Headphones,1,99.99,02/28/19 22:22,"40 4th St, Austin, TX 73301" +160851,USB-C Charging Cable,1,11.95,02/16/19 19:23,"699 Maple St, Portland, OR 97035" +160852,Flatscreen TV,1,300,02/03/19 19:56,"152 West St, Dallas, TX 75001" +160853,ThinkPad Laptop,1,999.99,02/26/19 11:45,"757 Dogwood St, Los Angeles, CA 90001" +160854,ThinkPad Laptop,1,999.99,02/06/19 23:59,"666 Cherry St, San Francisco, CA 94016" +160855,20in Monitor,1,109.99,02/12/19 11:58,"594 Meadow St, Portland, OR 97035" +160856,Lightning Charging Cable,1,14.95,02/06/19 11:10,"669 10th St, Austin, TX 73301" +160857,AA Batteries (4-pack),1,3.84,02/28/19 23:27,"394 Hickory St, Los Angeles, CA 90001" +160858,Google Phone,1,600,02/11/19 17:46,"203 Adams St, New York City, NY 10001" +160859,iPhone,1,700,02/14/19 03:28,"380 Forest St, Los Angeles, CA 90001" +160859,Lightning Charging Cable,1,14.95,02/14/19 03:28,"380 Forest St, Los Angeles, CA 90001" +160860,27in FHD Monitor,1,149.99,02/26/19 07:15,"878 Lakeview St, Los Angeles, CA 90001" +160861,AAA Batteries (4-pack),1,2.99,02/26/19 17:33,"684 Elm St, New York City, NY 10001" +160862,AAA Batteries (4-pack),1,2.99,02/14/19 22:43,"815 Washington St, New York City, NY 10001" +160863,Wired Headphones,1,11.99,02/05/19 00:20,"423 Sunset St, New York City, NY 10001" +160864,AAA Batteries (4-pack),1,2.99,02/20/19 14:10,"606 12th St, Los Angeles, CA 90001" +160865,Flatscreen TV,1,300,02/04/19 21:28,"376 Maple St, Boston, MA 02215" +160866,iPhone,1,700,02/04/19 12:37,"583 6th St, San Francisco, CA 94016" +160867,USB-C Charging Cable,1,11.95,02/08/19 09:10,"247 Jackson St, Austin, TX 73301" +160868,27in 4K Gaming Monitor,1,389.99,02/25/19 12:35,"964 6th St, San Francisco, CA 94016" +160869,USB-C Charging Cable,1,11.95,02/15/19 02:47,"204 Main St, San Francisco, CA 94016" +160870,Lightning Charging Cable,1,14.95,02/14/19 20:47,"298 Adams St, San Francisco, CA 94016" +160871,20in Monitor,1,109.99,02/05/19 21:34,"476 Sunset St, New York City, NY 10001" +160872,Flatscreen TV,1,300,02/06/19 10:38,"935 14th St, New York City, NY 10001" +160873,34in Ultrawide Monitor,1,379.99,02/21/19 14:49,"305 6th St, San Francisco, CA 94016" +160874,USB-C Charging Cable,1,11.95,02/16/19 18:09,"113 South St, Boston, MA 02215" +160875,AAA Batteries (4-pack),1,2.99,02/07/19 13:09,"875 Meadow St, Portland, OR 97035" +160876,Wired Headphones,1,11.99,02/11/19 18:28,"378 Lincoln St, Dallas, TX 75001" +160877,AA Batteries (4-pack),1,3.84,02/25/19 06:36,"312 Elm St, Seattle, WA 98101" +160878,Apple Airpods Headphones,1,150,02/12/19 09:23,"636 14th St, Seattle, WA 98101" +160879,Apple Airpods Headphones,1,150,02/17/19 22:29,"142 Ridge St, San Francisco, CA 94016" +160880,Wired Headphones,1,11.99,02/27/19 21:58,"626 1st St, Atlanta, GA 30301" +160881,Lightning Charging Cable,1,14.95,02/19/19 21:05,"549 8th St, Portland, OR 97035" +160882,Flatscreen TV,1,300,02/22/19 18:31,"989 South St, San Francisco, CA 94016" +160883,AAA Batteries (4-pack),1,2.99,02/08/19 17:54,"118 Hickory St, Austin, TX 73301" +160884,27in FHD Monitor,1,149.99,02/12/19 13:17,"301 Adams St, Los Angeles, CA 90001" +160885,Macbook Pro Laptop,1,1700,02/19/19 15:41,"272 Washington St, Atlanta, GA 30301" +160886,Wired Headphones,1,11.99,02/05/19 18:30,"186 11th St, New York City, NY 10001" +160887,Bose SoundSport Headphones,1,99.99,02/22/19 13:47,"854 12th St, Dallas, TX 75001" +160888,AA Batteries (4-pack),1,3.84,02/02/19 18:09,"498 Highland St, Boston, MA 02215" +160889,ThinkPad Laptop,1,999.99,02/10/19 10:49,"326 Johnson St, Seattle, WA 98101" +160890,USB-C Charging Cable,1,11.95,02/13/19 16:20,"706 Sunset St, New York City, NY 10001" +160891,USB-C Charging Cable,1,11.95,02/15/19 18:29,"531 10th St, Portland, OR 97035" +160892,AAA Batteries (4-pack),1,2.99,02/23/19 14:06,"570 Meadow St, Los Angeles, CA 90001" +160893,Wired Headphones,1,11.99,02/25/19 16:38,"602 14th St, Portland, OR 97035" +160894,27in 4K Gaming Monitor,1,389.99,02/12/19 18:35,"531 Jefferson St, Los Angeles, CA 90001" +160895,USB-C Charging Cable,1,11.95,02/10/19 20:39,"9 Willow St, Seattle, WA 98101" +160896,Lightning Charging Cable,1,14.95,02/03/19 23:07,"533 4th St, New York City, NY 10001" +160897,USB-C Charging Cable,1,11.95,02/03/19 16:42,"606 Pine St, Boston, MA 02215" +160898,34in Ultrawide Monitor,1,379.99,02/28/19 19:47,"492 14th St, Austin, TX 73301" +160899,Vareebadd Phone,1,400,02/08/19 12:18,"508 River St, San Francisco, CA 94016" +160900,USB-C Charging Cable,1,11.95,02/22/19 06:50,"832 6th St, Boston, MA 02215" +160901,AA Batteries (4-pack),1,3.84,02/14/19 11:32,"18 Main St, New York City, NY 10001" +160902,USB-C Charging Cable,2,11.95,02/22/19 12:50,"323 Center St, Los Angeles, CA 90001" +160903,Lightning Charging Cable,1,14.95,02/20/19 15:48,"483 11th St, Dallas, TX 75001" +160904,Bose SoundSport Headphones,1,99.99,02/24/19 16:22,"933 Pine St, Boston, MA 02215" +160905,34in Ultrawide Monitor,1,379.99,02/04/19 10:38,"181 Cedar St, Boston, MA 02215" +160906,USB-C Charging Cable,1,11.95,02/20/19 14:51,"556 9th St, Austin, TX 73301" +160907,27in FHD Monitor,1,149.99,02/26/19 22:34,"727 Walnut St, Los Angeles, CA 90001" +160908,iPhone,1,700,02/20/19 20:21,"114 12th St, Austin, TX 73301" +160908,Wired Headphones,1,11.99,02/20/19 20:21,"114 12th St, Austin, TX 73301" +160909,Macbook Pro Laptop,1,1700,02/09/19 08:21,"188 Elm St, Los Angeles, CA 90001" +160910,iPhone,1,700,02/15/19 09:26,"228 Meadow St, Dallas, TX 75001" +160911,AA Batteries (4-pack),2,3.84,02/06/19 18:58,"648 6th St, New York City, NY 10001" +160912,Wired Headphones,1,11.99,02/16/19 11:53,"809 Main St, Los Angeles, CA 90001" +160913,Lightning Charging Cable,1,14.95,02/10/19 17:40,"153 Highland St, Boston, MA 02215" +160914,Wired Headphones,1,11.99,02/10/19 08:38,"442 Cherry St, Boston, MA 02215" +160915,USB-C Charging Cable,1,11.95,02/17/19 10:48,"111 South St, New York City, NY 10001" +160916,27in FHD Monitor,1,149.99,02/26/19 18:28,"287 5th St, Atlanta, GA 30301" +160917,AA Batteries (4-pack),1,3.84,02/12/19 13:28,"404 River St, San Francisco, CA 94016" +160918,Google Phone,1,600,02/01/19 15:57,"565 Park St, Boston, MA 02215" +160918,USB-C Charging Cable,1,11.95,02/01/19 15:57,"565 Park St, Boston, MA 02215" +160918,Bose SoundSport Headphones,1,99.99,02/01/19 15:57,"565 Park St, Boston, MA 02215" +160919,Wired Headphones,1,11.99,02/26/19 18:07,"843 1st St, Los Angeles, CA 90001" +160920,AAA Batteries (4-pack),3,2.99,02/21/19 16:49,"120 9th St, San Francisco, CA 94016" +160921,Bose SoundSport Headphones,1,99.99,02/07/19 20:12,"838 Lincoln St, Austin, TX 73301" +160922,Lightning Charging Cable,1,14.95,02/22/19 23:41,"214 2nd St, Atlanta, GA 30301" +160923,27in FHD Monitor,1,149.99,02/09/19 12:57,"420 14th St, San Francisco, CA 94016" +160924,Wired Headphones,1,11.99,02/12/19 09:12,"18 Wilson St, San Francisco, CA 94016" +160925,Apple Airpods Headphones,1,150,02/12/19 19:49,"619 Elm St, Portland, OR 97035" +160926,AA Batteries (4-pack),1,3.84,02/23/19 21:24,"117 14th St, Dallas, TX 75001" +160927,USB-C Charging Cable,1,11.95,02/19/19 15:35,"783 Lakeview St, Dallas, TX 75001" +160927,Bose SoundSport Headphones,1,99.99,02/19/19 15:35,"783 Lakeview St, Dallas, TX 75001" +160928,USB-C Charging Cable,1,11.95,02/22/19 10:20,"98 Church St, Los Angeles, CA 90001" +160929,Apple Airpods Headphones,1,150,02/04/19 17:45,"474 Willow St, San Francisco, CA 94016" +160930,Apple Airpods Headphones,1,150,02/10/19 13:19,"154 Church St, Atlanta, GA 30301" +160931,Google Phone,1,600,02/12/19 12:24,"826 Forest St, San Francisco, CA 94016" +160932,Google Phone,1,600,02/11/19 10:53,"847 12th St, New York City, NY 10001" +160933,Wired Headphones,1,11.99,02/19/19 19:33,"907 Highland St, New York City, NY 10001" +160934,iPhone,1,700,02/10/19 11:09,"360 6th St, San Francisco, CA 94016" +160935,iPhone,1,700,02/10/19 17:45,"449 Maple St, Dallas, TX 75001" +160936,Apple Airpods Headphones,1,150,02/22/19 12:33,"966 Pine St, Atlanta, GA 30301" +160937,USB-C Charging Cable,1,11.95,02/13/19 19:43,"435 Lake St, Los Angeles, CA 90001" +160938,Lightning Charging Cable,1,14.95,02/08/19 06:35,"383 9th St, San Francisco, CA 94016" +160939,Apple Airpods Headphones,1,150,02/18/19 22:26,"701 Lakeview St, San Francisco, CA 94016" +160940,20in Monitor,1,109.99,02/25/19 20:38,"359 West St, Los Angeles, CA 90001" +160941,27in FHD Monitor,1,149.99,02/28/19 01:05,"238 Center St, Los Angeles, CA 90001" +160942,Wired Headphones,1,11.99,02/19/19 12:47,"270 Hickory St, Portland, OR 97035" +160943,Lightning Charging Cable,1,14.95,02/02/19 12:53,"587 Jackson St, San Francisco, CA 94016" +160944,Lightning Charging Cable,1,14.95,02/04/19 10:50,"63 Lake St, San Francisco, CA 94016" +160944,Lightning Charging Cable,1,14.95,02/04/19 10:50,"63 Lake St, San Francisco, CA 94016" +160945,Apple Airpods Headphones,1,150,02/26/19 20:10,"775 2nd St, Los Angeles, CA 90001" +160946,AA Batteries (4-pack),2,3.84,02/01/19 18:21,"49 River St, Dallas, TX 75001" +160947,27in FHD Monitor,1,149.99,02/04/19 17:25,"83 5th St, San Francisco, CA 94016" +160948,AAA Batteries (4-pack),5,2.99,02/08/19 11:28,"912 13th St, San Francisco, CA 94016" +160949,ThinkPad Laptop,1,999.99,02/05/19 20:06,"898 Meadow St, New York City, NY 10001" +160950,Macbook Pro Laptop,1,1700,02/01/19 06:23,"859 Cherry St, Los Angeles, CA 90001" +160951,Flatscreen TV,1,300,02/02/19 10:07,"105 Park St, Seattle, WA 98101" +160952,Wired Headphones,1,11.99,02/01/19 16:20,"824 Johnson St, New York City, NY 10001" +160953,AAA Batteries (4-pack),1,2.99,02/09/19 15:22,"315 River St, Seattle, WA 98101" +160954,USB-C Charging Cable,1,11.95,02/20/19 15:29,"204 9th St, Los Angeles, CA 90001" +160955,Bose SoundSport Headphones,1,99.99,02/10/19 18:28,"326 Pine St, New York City, NY 10001" +160956,Apple Airpods Headphones,1,150,02/15/19 10:50,"938 Cedar St, New York City, NY 10001" +160957,Lightning Charging Cable,1,14.95,02/12/19 19:36,"455 11th St, San Francisco, CA 94016" +160958,Wired Headphones,1,11.99,02/27/19 21:33,"222 Jackson St, New York City, NY 10001" +160959,Google Phone,1,600,02/24/19 17:14,"410 14th St, Portland, OR 97035" +160960,Apple Airpods Headphones,1,150,02/16/19 21:19,"744 South St, San Francisco, CA 94016" +160961,AAA Batteries (4-pack),1,2.99,02/06/19 13:38,"269 10th St, Boston, MA 02215" +160962,AAA Batteries (4-pack),2,2.99,02/18/19 10:05,"4 Meadow St, San Francisco, CA 94016" +160963,AA Batteries (4-pack),1,3.84,02/24/19 18:57,"663 West St, San Francisco, CA 94016" +160964,Google Phone,1,600,02/21/19 12:50,"106 Church St, San Francisco, CA 94016" +160965,27in FHD Monitor,1,149.99,02/15/19 19:02,"743 Elm St, San Francisco, CA 94016" +160966,Wired Headphones,1,11.99,02/22/19 15:10,"497 1st St, Los Angeles, CA 90001" +160967,USB-C Charging Cable,1,11.95,02/16/19 14:17,"286 Chestnut St, Boston, MA 02215" +160968,20in Monitor,1,109.99,02/11/19 16:41,"330 14th St, San Francisco, CA 94016" +160969,iPhone,1,700,02/14/19 10:00,"677 13th St, Portland, OR 97035" +160970,Wired Headphones,1,11.99,02/24/19 21:04,"599 Dogwood St, Portland, OR 97035" +160971,Bose SoundSport Headphones,1,99.99,02/01/19 16:20,"209 Dogwood St, Boston, MA 02215" +160972,34in Ultrawide Monitor,1,379.99,02/15/19 15:30,"147 12th St, Portland, OR 97035" +160973,USB-C Charging Cable,1,11.95,02/16/19 14:00,"423 2nd St, San Francisco, CA 94016" +160974,Bose SoundSport Headphones,1,99.99,02/21/19 20:20,"996 13th St, Portland, OR 97035" +160975,Lightning Charging Cable,1,14.95,02/16/19 18:31,"96 Hickory St, New York City, NY 10001" +160976,iPhone,1,700,02/27/19 14:25,"575 Highland St, Boston, MA 02215" +160977,AAA Batteries (4-pack),1,2.99,02/25/19 22:22,"994 River St, San Francisco, CA 94016" +160978,Wired Headphones,1,11.99,02/12/19 14:21,"27 Walnut St, Boston, MA 02215" +160979,LG Washing Machine,1,600.0,02/19/19 14:13,"994 2nd St, Dallas, TX 75001" +160980,27in 4K Gaming Monitor,1,389.99,02/12/19 12:18,"747 Johnson St, Boston, MA 02215" +160981,USB-C Charging Cable,1,11.95,02/17/19 20:23,"427 Wilson St, San Francisco, CA 94016" +160982,USB-C Charging Cable,1,11.95,02/15/19 15:15,"672 Pine St, Los Angeles, CA 90001" +160983,Wired Headphones,1,11.99,02/13/19 17:01,"590 Elm St, Boston, MA 02215" +160984,USB-C Charging Cable,1,11.95,02/18/19 09:46,"399 1st St, Dallas, TX 75001" +160985,Bose SoundSport Headphones,1,99.99,02/22/19 19:43,"265 Lake St, Los Angeles, CA 90001" +160986,Bose SoundSport Headphones,1,99.99,02/15/19 19:43,"958 Dogwood St, San Francisco, CA 94016" +160987,34in Ultrawide Monitor,1,379.99,02/18/19 11:16,"394 14th St, Los Angeles, CA 90001" +160988,Bose SoundSport Headphones,1,99.99,02/15/19 15:22,"118 7th St, Los Angeles, CA 90001" +160989,AA Batteries (4-pack),1,3.84,02/28/19 11:26,"76 Spruce St, Boston, MA 02215" +160990,Lightning Charging Cable,1,14.95,02/18/19 11:32,"406 Highland St, Los Angeles, CA 90001" +160991,AA Batteries (4-pack),1,3.84,02/26/19 10:38,"310 Adams St, Atlanta, GA 30301" +160992,USB-C Charging Cable,1,11.95,02/22/19 23:47,"232 7th St, Seattle, WA 98101" +160993,Wired Headphones,1,11.99,02/15/19 08:59,"244 Church St, Dallas, TX 75001" +160994,Wired Headphones,1,11.99,02/11/19 15:17,"422 Lake St, Austin, TX 73301" +160995,Google Phone,1,600,02/08/19 21:42,"675 Walnut St, Seattle, WA 98101" +160996,Wired Headphones,1,11.99,02/28/19 16:45,"62 5th St, Atlanta, GA 30301" +160997,Apple Airpods Headphones,1,150,02/05/19 20:07,"181 Center St, Portland, OR 97035" +160998,AAA Batteries (4-pack),1,2.99,02/02/19 18:19,"401 8th St, Seattle, WA 98101" +160999,AAA Batteries (4-pack),4,2.99,02/27/19 09:19,"240 River St, Boston, MA 02215" +161000,Lightning Charging Cable,1,14.95,02/05/19 02:48,"746 1st St, New York City, NY 10001" +161001,AAA Batteries (4-pack),1,2.99,02/17/19 17:49,"349 Park St, Boston, MA 02215" +161002,20in Monitor,1,109.99,02/16/19 07:33,"709 Elm St, Los Angeles, CA 90001" +161003,Flatscreen TV,1,300,02/26/19 15:51,"428 2nd St, San Francisco, CA 94016" +161004,Apple Airpods Headphones,1,150,02/23/19 18:07,"398 9th St, San Francisco, CA 94016" +161005,Wired Headphones,1,11.99,02/02/19 14:54,"869 Chestnut St, Boston, MA 02215" +161006,Wired Headphones,1,11.99,02/13/19 11:56,"332 10th St, San Francisco, CA 94016" +161007,Bose SoundSport Headphones,1,99.99,02/19/19 08:50,"496 Chestnut St, San Francisco, CA 94016" +161008,AA Batteries (4-pack),2,3.84,02/28/19 11:30,"200 Jefferson St, Los Angeles, CA 90001" +161009,AAA Batteries (4-pack),9,2.99,02/17/19 16:13,"614 West St, Portland, OR 97035" +161010,AA Batteries (4-pack),1,3.84,02/19/19 18:26,"977 11th St, New York City, NY 10001" +161011,ThinkPad Laptop,1,999.99,02/11/19 15:47,"206 13th St, Los Angeles, CA 90001" +161012,Google Phone,1,600,02/22/19 11:23,"278 Highland St, New York City, NY 10001" +161013,AA Batteries (4-pack),1,3.84,02/28/19 17:15,"931 Pine St, Dallas, TX 75001" +161014,20in Monitor,1,109.99,02/14/19 01:35,"627 Walnut St, San Francisco, CA 94016" +161015,USB-C Charging Cable,1,11.95,02/07/19 07:57,"873 Walnut St, Boston, MA 02215" +161016,AA Batteries (4-pack),1,3.84,02/18/19 08:31,"407 Jackson St, Atlanta, GA 30301" +161017,Lightning Charging Cable,1,14.95,02/06/19 16:16,"87 River St, Los Angeles, CA 90001" +161018,ThinkPad Laptop,1,999.99,02/11/19 12:22,"180 7th St, Boston, MA 02215" +161019,ThinkPad Laptop,1,999.99,02/12/19 09:14,"1 Elm St, Seattle, WA 98101" +161020,AA Batteries (4-pack),1,3.84,02/09/19 01:25,"858 1st St, Atlanta, GA 30301" +161021,Lightning Charging Cable,1,14.95,02/04/19 15:55,"142 7th St, Portland, OR 97035" +161022,Lightning Charging Cable,1,14.95,02/13/19 05:42,"556 Ridge St, Los Angeles, CA 90001" +161023,AAA Batteries (4-pack),2,2.99,02/01/19 17:21,"222 2nd St, Portland, OR 97035" +161024,Lightning Charging Cable,1,14.95,02/04/19 15:53,"617 South St, Boston, MA 02215" +161025,Bose SoundSport Headphones,1,99.99,02/04/19 15:04,"792 Lakeview St, New York City, NY 10001" +161026,Wired Headphones,1,11.99,02/17/19 15:50,"271 Willow St, Portland, OR 97035" +161027,20in Monitor,1,109.99,02/21/19 02:03,"967 Jefferson St, Dallas, TX 75001" +161028,34in Ultrawide Monitor,1,379.99,02/17/19 14:26,"810 12th St, New York City, NY 10001" +161029,AA Batteries (4-pack),1,3.84,02/07/19 10:25,"346 Dogwood St, New York City, NY 10001" +161030,Wired Headphones,1,11.99,02/17/19 18:07,"194 North St, Dallas, TX 75001" +161031,ThinkPad Laptop,1,999.99,02/11/19 17:38,"118 Johnson St, Atlanta, GA 30301" +161032,Bose SoundSport Headphones,1,99.99,02/28/19 22:18,"730 13th St, Austin, TX 73301" +161033,Bose SoundSport Headphones,1,99.99,02/14/19 18:05,"765 14th St, Atlanta, GA 30301" +161034,Lightning Charging Cable,1,14.95,02/15/19 14:15,"170 Lincoln St, Seattle, WA 98101" +161035,USB-C Charging Cable,1,11.95,02/24/19 08:51,"22 Center St, Los Angeles, CA 90001" +161036,27in 4K Gaming Monitor,1,389.99,02/08/19 16:38,"632 Johnson St, Boston, MA 02215" +161037,iPhone,1,700,02/25/19 12:04,"25 Main St, New York City, NY 10001" +161038,Bose SoundSport Headphones,1,99.99,02/25/19 10:09,"409 13th St, Atlanta, GA 30301" +161039,ThinkPad Laptop,1,999.99,02/11/19 14:54,"54 Highland St, Seattle, WA 98101" +161040,27in FHD Monitor,1,149.99,02/17/19 07:50,"810 14th St, San Francisco, CA 94016" +161041,Apple Airpods Headphones,1,150,02/02/19 18:45,"758 Center St, Austin, TX 73301" +161042,Lightning Charging Cable,1,14.95,02/04/19 17:57,"701 Cedar St, Austin, TX 73301" +161043,USB-C Charging Cable,1,11.95,02/23/19 19:16,"148 Spruce St, New York City, NY 10001" +161044,USB-C Charging Cable,1,11.95,02/23/19 19:55,"578 Forest St, New York City, NY 10001" +161045,AA Batteries (4-pack),1,3.84,02/17/19 11:25,"148 Hickory St, San Francisco, CA 94016" +161046,34in Ultrawide Monitor,1,379.99,02/15/19 18:03,"206 9th St, Boston, MA 02215" +161047,Lightning Charging Cable,1,14.95,02/15/19 23:25,"665 5th St, Los Angeles, CA 90001" +161048,AA Batteries (4-pack),1,3.84,02/20/19 17:43,"514 Jackson St, San Francisco, CA 94016" +161049,20in Monitor,1,109.99,02/21/19 11:31,"475 Lincoln St, Boston, MA 02215" +161050,Bose SoundSport Headphones,1,99.99,02/06/19 12:22,"582 4th St, New York City, NY 10001" +161051,Wired Headphones,1,11.99,02/10/19 19:41,"376 10th St, San Francisco, CA 94016" +161052,Lightning Charging Cable,1,14.95,02/15/19 19:06,"90 Elm St, San Francisco, CA 94016" +161053,AA Batteries (4-pack),1,3.84,02/22/19 15:56,"179 Sunset St, Los Angeles, CA 90001" +161054,AA Batteries (4-pack),1,3.84,02/18/19 15:40,"335 Elm St, Boston, MA 02215" +161055,ThinkPad Laptop,1,999.99,02/05/19 11:18,"942 Spruce St, Seattle, WA 98101" +161056,Wired Headphones,1,11.99,02/23/19 08:13,"488 4th St, Los Angeles, CA 90001" +161057,USB-C Charging Cable,1,11.95,02/05/19 18:11,"718 Cherry St, San Francisco, CA 94016" +161058,AA Batteries (4-pack),1,3.84,02/27/19 19:36,"598 Cedar St, Atlanta, GA 30301" +161059,Apple Airpods Headphones,1,150,02/20/19 12:29,"178 Jefferson St, Dallas, TX 75001" +161060,Lightning Charging Cable,2,14.95,02/28/19 05:33,"343 Lincoln St, San Francisco, CA 94016" +161061,Wired Headphones,1,11.99,02/10/19 18:03,"232 10th St, Los Angeles, CA 90001" +161062,AAA Batteries (4-pack),3,2.99,02/03/19 17:08,"412 7th St, New York City, NY 10001" +161063,Wired Headphones,1,11.99,02/24/19 17:37,"868 12th St, Dallas, TX 75001" +161064,AA Batteries (4-pack),1,3.84,02/26/19 14:37,"474 Park St, New York City, NY 10001" +161065,AAA Batteries (4-pack),1,2.99,02/17/19 16:04,"683 Johnson St, San Francisco, CA 94016" +161066,Wired Headphones,1,11.99,02/08/19 11:45,"406 River St, San Francisco, CA 94016" +161067,Apple Airpods Headphones,1,150,02/10/19 10:37,"932 Walnut St, Los Angeles, CA 90001" +161068,Flatscreen TV,1,300,02/11/19 10:36,"927 Elm St, Dallas, TX 75001" +161069,Wired Headphones,1,11.99,02/04/19 08:34,"141 Sunset St, San Francisco, CA 94016" +161070,AAA Batteries (4-pack),2,2.99,02/04/19 16:31,"984 Johnson St, Seattle, WA 98101" +161071,27in FHD Monitor,1,149.99,02/08/19 17:24,"997 14th St, Boston, MA 02215" +161072,Lightning Charging Cable,1,14.95,02/01/19 15:26,"745 Park St, Los Angeles, CA 90001" +161073,27in 4K Gaming Monitor,1,389.99,02/16/19 21:20,"401 Sunset St, San Francisco, CA 94016" +161074,Wired Headphones,1,11.99,02/20/19 22:29,"93 8th St, San Francisco, CA 94016" +161075,Bose SoundSport Headphones,1,99.99,02/27/19 16:47,"808 Main St, Portland, OR 97035" +161076,Bose SoundSport Headphones,1,99.99,02/24/19 13:24,"301 12th St, New York City, NY 10001" +161077,Macbook Pro Laptop,1,1700,02/09/19 23:20,"734 South St, San Francisco, CA 94016" +161078,AAA Batteries (4-pack),1,2.99,02/01/19 10:57,"857 Elm St, Boston, MA 02215" +161079,USB-C Charging Cable,1,11.95,02/11/19 13:45,"423 Johnson St, San Francisco, CA 94016" +161080,AAA Batteries (4-pack),2,2.99,02/10/19 21:40,"678 Spruce St, New York City, NY 10001" +161081,34in Ultrawide Monitor,1,379.99,02/26/19 14:08,"953 Chestnut St, Portland, OR 97035" +161082,AA Batteries (4-pack),1,3.84,02/06/19 10:46,"990 8th St, San Francisco, CA 94016" +161083,Apple Airpods Headphones,1,150,02/21/19 13:25,"37 12th St, San Francisco, CA 94016" +161084,Wired Headphones,1,11.99,02/06/19 10:31,"585 5th St, San Francisco, CA 94016" +161085,AA Batteries (4-pack),3,3.84,02/12/19 19:50,"623 Center St, San Francisco, CA 94016" +161086,iPhone,1,700,02/23/19 12:50,"780 Highland St, San Francisco, CA 94016" +161087,Apple Airpods Headphones,1,150,02/22/19 01:55,"320 Dogwood St, Boston, MA 02215" +161088,Wired Headphones,1,11.99,02/10/19 12:06,"900 Cherry St, Dallas, TX 75001" +161089,AAA Batteries (4-pack),2,2.99,02/13/19 20:30,"948 Church St, Portland, OR 97035" +161090,Bose SoundSport Headphones,1,99.99,02/18/19 13:02,"90 Johnson St, Los Angeles, CA 90001" +161091,Flatscreen TV,1,300,02/20/19 11:36,"592 Dogwood St, Boston, MA 02215" +161092,USB-C Charging Cable,1,11.95,02/07/19 15:53,"134 Hickory St, Seattle, WA 98101" +161093,Wired Headphones,1,11.99,02/07/19 13:35,"722 11th St, Dallas, TX 75001" +161094,27in FHD Monitor,1,149.99,02/17/19 11:44,"652 Main St, Atlanta, GA 30301" +161095,Apple Airpods Headphones,1,150,02/14/19 09:43,"470 Sunset St, Austin, TX 73301" +161096,Apple Airpods Headphones,1,150,02/21/19 16:24,"145 Dogwood St, Portland, OR 97035" +161097,Lightning Charging Cable,1,14.95,02/13/19 22:33,"428 Johnson St, Seattle, WA 98101" +161098,20in Monitor,1,109.99,02/05/19 15:24,"304 River St, Los Angeles, CA 90001" +161099,USB-C Charging Cable,1,11.95,02/02/19 12:45,"538 North St, San Francisco, CA 94016" +161100,Lightning Charging Cable,1,14.95,02/15/19 12:32,"191 Ridge St, Seattle, WA 98101" +161101,Apple Airpods Headphones,1,150,02/10/19 09:41,"723 Walnut St, Austin, TX 73301" +161101,Lightning Charging Cable,1,14.95,02/10/19 09:41,"723 Walnut St, Austin, TX 73301" +161102,AA Batteries (4-pack),1,3.84,02/06/19 11:36,"841 South St, New York City, NY 10001" +161102,AAA Batteries (4-pack),2,2.99,02/06/19 11:36,"841 South St, New York City, NY 10001" +161103,Google Phone,1,600,02/03/19 07:35,"588 Forest St, Portland, OR 97035" +161104,Bose SoundSport Headphones,2,99.99,02/11/19 18:31,"190 West St, San Francisco, CA 94016" +161105,USB-C Charging Cable,1,11.95,02/13/19 00:43,"577 Sunset St, Boston, MA 02215" +161106,USB-C Charging Cable,2,11.95,02/22/19 22:29,"4 Center St, New York City, NY 10001" +161107,AAA Batteries (4-pack),1,2.99,02/12/19 11:04,"243 North St, Austin, TX 73301" +161108,ThinkPad Laptop,1,999.99,02/28/19 13:23,"317 12th St, New York City, NY 10001" +161108,Lightning Charging Cable,1,14.95,02/28/19 13:23,"317 12th St, New York City, NY 10001" +161109,Wired Headphones,1,11.99,02/11/19 13:22,"417 Meadow St, Boston, MA 02215" +161110,AA Batteries (4-pack),1,3.84,02/09/19 15:54,"205 River St, Los Angeles, CA 90001" +161110,Apple Airpods Headphones,1,150,02/09/19 15:54,"205 River St, Los Angeles, CA 90001" +161111,34in Ultrawide Monitor,1,379.99,02/10/19 21:07,"219 9th St, Seattle, WA 98101" +161112,Lightning Charging Cable,1,14.95,02/13/19 16:49,"120 2nd St, San Francisco, CA 94016" +161113,Vareebadd Phone,1,400,02/04/19 00:30,"819 7th St, Seattle, WA 98101" +161113,Wired Headphones,1,11.99,02/04/19 00:30,"819 7th St, Seattle, WA 98101" +161114,Wired Headphones,2,11.99,02/21/19 19:50,"430 12th St, Boston, MA 02215" +161115,Apple Airpods Headphones,1,150,02/20/19 09:44,"228 Jefferson St, Atlanta, GA 30301" +161116,AA Batteries (4-pack),1,3.84,02/06/19 19:52,"121 South St, Portland, OR 97035" +161117,27in 4K Gaming Monitor,1,389.99,02/27/19 23:48,"325 Sunset St, San Francisco, CA 94016" +161118,ThinkPad Laptop,1,999.99,02/25/19 18:14,"924 Hill St, New York City, NY 10001" +161119,Wired Headphones,1,11.99,02/24/19 17:55,"133 Church St, New York City, NY 10001" +161120,AAA Batteries (4-pack),2,2.99,02/19/19 22:00,"425 Meadow St, Boston, MA 02215" +161121,USB-C Charging Cable,1,11.95,02/17/19 15:57,"581 1st St, San Francisco, CA 94016" +161122,Bose SoundSport Headphones,1,99.99,02/16/19 19:28,"562 4th St, Dallas, TX 75001" +161123,AAA Batteries (4-pack),3,2.99,02/05/19 17:50,"354 Jefferson St, Austin, TX 73301" +161124,Bose SoundSport Headphones,1,99.99,02/14/19 17:45,"10 Walnut St, Dallas, TX 75001" +161125,27in FHD Monitor,1,149.99,02/14/19 08:46,"978 Adams St, Boston, MA 02215" +161126,27in FHD Monitor,1,149.99,02/20/19 06:18,"349 Adams St, Los Angeles, CA 90001" +161127,Wired Headphones,3,11.99,02/10/19 13:26,"921 Lincoln St, Austin, TX 73301" +161128,USB-C Charging Cable,1,11.95,02/15/19 18:20,"275 River St, Seattle, WA 98101" +161129,Bose SoundSport Headphones,1,99.99,02/12/19 21:08,"238 Spruce St, Los Angeles, CA 90001" +161129,Apple Airpods Headphones,1,150,02/12/19 21:08,"238 Spruce St, Los Angeles, CA 90001" +161130,Wired Headphones,1,11.99,02/02/19 09:32,"417 Highland St, Boston, MA 02215" +161131,Flatscreen TV,1,300,02/08/19 13:50,"795 North St, San Francisco, CA 94016" +161132,Apple Airpods Headphones,1,150,02/21/19 09:54,"470 6th St, Dallas, TX 75001" +161133,LG Washing Machine,1,600.0,02/20/19 10:44,"23 South St, Seattle, WA 98101" +161134,Apple Airpods Headphones,1,150,02/10/19 18:02,"42 Sunset St, Boston, MA 02215" +161135,Wired Headphones,1,11.99,02/18/19 14:13,"34 Meadow St, Los Angeles, CA 90001" +161136,Lightning Charging Cable,1,14.95,02/04/19 13:33,"285 River St, Boston, MA 02215" +161137,Apple Airpods Headphones,1,150,02/18/19 19:58,"995 North St, Los Angeles, CA 90001" +161138,AA Batteries (4-pack),1,3.84,02/18/19 16:58,"3 Washington St, San Francisco, CA 94016" +161139,Macbook Pro Laptop,1,1700,02/04/19 19:22,"189 Cherry St, San Francisco, CA 94016" +161140,27in 4K Gaming Monitor,1,389.99,02/11/19 15:23,"396 Meadow St, San Francisco, CA 94016" +161141,Bose SoundSport Headphones,1,99.99,02/27/19 22:03,"569 North St, Austin, TX 73301" +161142,Google Phone,1,600,02/17/19 09:45,"217 Cherry St, San Francisco, CA 94016" +161143,AA Batteries (4-pack),1,3.84,02/10/19 11:28,"336 Adams St, Boston, MA 02215" +161144,27in FHD Monitor,1,149.99,02/04/19 21:27,"719 North St, Dallas, TX 75001" +161145,AAA Batteries (4-pack),1,2.99,02/17/19 02:10,"40 Ridge St, Boston, MA 02215" +161146,Bose SoundSport Headphones,1,99.99,02/07/19 08:12,"474 Elm St, New York City, NY 10001" +161147,USB-C Charging Cable,1,11.95,02/03/19 19:41,"61 7th St, Seattle, WA 98101" +161148,iPhone,1,700,02/24/19 23:24,"770 Cherry St, San Francisco, CA 94016" +161149,20in Monitor,1,109.99,02/03/19 16:44,"865 14th St, San Francisco, CA 94016" +161150,Wired Headphones,1,11.99,02/18/19 23:28,"857 14th St, San Francisco, CA 94016" +161151,Wired Headphones,1,11.99,02/07/19 07:11,"816 Maple St, Boston, MA 02215" +161152,Apple Airpods Headphones,1,150,02/28/19 10:20,"980 Madison St, New York City, NY 10001" +161153,iPhone,2,700,02/26/19 20:00,"909 2nd St, Boston, MA 02215" +161154,Google Phone,1,600,02/16/19 08:38,"893 Cherry St, Atlanta, GA 30301" +161155,Wired Headphones,1,11.99,02/11/19 15:25,"665 Chestnut St, Atlanta, GA 30301" +161156,Apple Airpods Headphones,1,150,02/02/19 07:03,"632 Maple St, Atlanta, GA 30301" +161156,Macbook Pro Laptop,1,1700,02/02/19 07:03,"632 Maple St, Atlanta, GA 30301" +161157,Apple Airpods Headphones,1,150,02/02/19 03:15,"718 4th St, San Francisco, CA 94016" +161158,Bose SoundSport Headphones,1,99.99,02/13/19 06:34,"992 Cherry St, New York City, NY 10001" +161159,Macbook Pro Laptop,1,1700,02/08/19 12:51,"912 7th St, San Francisco, CA 94016" +161160,USB-C Charging Cable,1,11.95,02/20/19 12:58,"849 Church St, Boston, MA 02215" +161161,Google Phone,1,600,02/04/19 17:20,"111 13th St, Austin, TX 73301" +161162,AAA Batteries (4-pack),1,2.99,02/27/19 14:39,"293 Jackson St, San Francisco, CA 94016" +161163,Apple Airpods Headphones,1,150,02/20/19 12:02,"827 5th St, Boston, MA 02215" +161164,34in Ultrawide Monitor,1,379.99,02/08/19 18:43,"349 Walnut St, New York City, NY 10001" +161165,USB-C Charging Cable,1,11.95,02/18/19 21:40,"796 Willow St, Portland, ME 04101" +161166,27in FHD Monitor,1,149.99,02/16/19 12:10,"527 7th St, Seattle, WA 98101" +161167,Wired Headphones,1,11.99,02/12/19 00:25,"239 Highland St, Boston, MA 02215" +161167,USB-C Charging Cable,1,11.95,02/12/19 00:25,"239 Highland St, Boston, MA 02215" +161168,USB-C Charging Cable,1,11.95,02/28/19 21:44,"898 10th St, Austin, TX 73301" +161169,AAA Batteries (4-pack),1,2.99,02/11/19 14:40,"285 South St, Los Angeles, CA 90001" +161170,AAA Batteries (4-pack),1,2.99,02/27/19 11:53,"515 6th St, San Francisco, CA 94016" +161171,AA Batteries (4-pack),5,3.84,02/26/19 11:53,"853 Chestnut St, Los Angeles, CA 90001" +161172,iPhone,1,700,02/24/19 12:29,"526 Meadow St, Seattle, WA 98101" +161173,AAA Batteries (4-pack),2,2.99,02/05/19 16:27,"5 9th St, Seattle, WA 98101" +161174,USB-C Charging Cable,1,11.95,02/18/19 18:19,"700 Walnut St, San Francisco, CA 94016" +161175,Bose SoundSport Headphones,1,99.99,02/24/19 06:25,"594 Walnut St, Austin, TX 73301" +161176,AAA Batteries (4-pack),1,2.99,02/02/19 18:37,"563 Lincoln St, San Francisco, CA 94016" +161177,Google Phone,1,600,02/14/19 01:02,"15 10th St, Los Angeles, CA 90001" +161178,34in Ultrawide Monitor,1,379.99,02/25/19 16:08,"929 7th St, New York City, NY 10001" +161179,Wired Headphones,1,11.99,02/25/19 00:12,"951 Park St, Austin, TX 73301" +161180,Wired Headphones,1,11.99,02/01/19 15:42,"729 Ridge St, San Francisco, CA 94016" +161181,27in FHD Monitor,1,149.99,02/13/19 12:39,"62 Hickory St, Atlanta, GA 30301" +161182,Google Phone,1,600,02/04/19 11:53,"167 Jackson St, Dallas, TX 75001" +161183,Lightning Charging Cable,1,14.95,02/14/19 11:15,"421 7th St, San Francisco, CA 94016" +161184,USB-C Charging Cable,4,11.95,02/19/19 12:25,"708 Johnson St, Los Angeles, CA 90001" +161185,Apple Airpods Headphones,1,150,02/22/19 08:36,"128 Lincoln St, Atlanta, GA 30301" +161186,Apple Airpods Headphones,1,150,02/12/19 16:12,"608 Ridge St, New York City, NY 10001" +161187,Lightning Charging Cable,1,14.95,02/09/19 22:04,"54 Wilson St, Seattle, WA 98101" +161188,Apple Airpods Headphones,1,150,02/26/19 06:42,"535 Chestnut St, San Francisco, CA 94016" +161189,iPhone,1,700,02/21/19 12:03,"436 Meadow St, Boston, MA 02215" +161189,Lightning Charging Cable,1,14.95,02/21/19 12:03,"436 Meadow St, Boston, MA 02215" +161190,27in FHD Monitor,1,149.99,02/14/19 16:33,"727 Jefferson St, San Francisco, CA 94016" +161191,Wired Headphones,1,11.99,02/16/19 10:36,"885 Spruce St, Dallas, TX 75001" +161192,Lightning Charging Cable,1,14.95,02/28/19 19:39,"304 Sunset St, San Francisco, CA 94016" +161193,iPhone,1,700,02/28/19 08:55,"416 14th St, San Francisco, CA 94016" +161194,USB-C Charging Cable,1,11.95,02/11/19 09:18,"65 Center St, Los Angeles, CA 90001" +161195,USB-C Charging Cable,2,11.95,02/26/19 14:18,"265 Park St, San Francisco, CA 94016" +161196,AA Batteries (4-pack),2,3.84,02/26/19 13:18,"363 Madison St, San Francisco, CA 94016" +161197,27in FHD Monitor,1,149.99,02/26/19 08:20,"425 Lake St, New York City, NY 10001" +161198,Lightning Charging Cable,1,14.95,02/19/19 12:31,"762 4th St, Los Angeles, CA 90001" +161199,iPhone,1,700,02/26/19 20:25,"808 4th St, New York City, NY 10001" +161200,Apple Airpods Headphones,1,150,02/06/19 22:36,"562 Meadow St, New York City, NY 10001" +161201,27in FHD Monitor,1,149.99,02/16/19 12:44,"318 1st St, San Francisco, CA 94016" +161202,Macbook Pro Laptop,1,1700,02/19/19 11:23,"713 4th St, San Francisco, CA 94016" +161203,Bose SoundSport Headphones,1,99.99,02/26/19 20:32,"193 6th St, Boston, MA 02215" +161204,Google Phone,1,600,02/13/19 16:10,"703 9th St, Portland, OR 97035" +161204,USB-C Charging Cable,1,11.95,02/13/19 16:10,"703 9th St, Portland, OR 97035" +161205,Wired Headphones,1,11.99,02/05/19 13:40,"883 River St, Seattle, WA 98101" +161206,ThinkPad Laptop,1,999.99,02/02/19 09:49,"785 Elm St, Seattle, WA 98101" +161207,Lightning Charging Cable,1,14.95,02/22/19 18:31,"330 South St, San Francisco, CA 94016" +161208,Apple Airpods Headphones,1,150,02/25/19 18:09,"604 Main St, Portland, OR 97035" +161209,AAA Batteries (4-pack),1,2.99,02/09/19 17:44,"610 Spruce St, Portland, ME 04101" +161210,20in Monitor,1,109.99,02/01/19 14:22,"628 Maple St, Portland, OR 97035" +161211,Apple Airpods Headphones,1,150,02/27/19 11:43,"742 Hill St, Los Angeles, CA 90001" +161212,Apple Airpods Headphones,1,150,02/07/19 00:20,"333 Park St, San Francisco, CA 94016" +161213,Vareebadd Phone,1,400,02/25/19 12:34,"749 12th St, Portland, OR 97035" +161214,AA Batteries (4-pack),1,3.84,02/17/19 13:19,"490 9th St, San Francisco, CA 94016" +161215,Bose SoundSport Headphones,1,99.99,02/23/19 00:27,"990 Willow St, San Francisco, CA 94016" +161216,AAA Batteries (4-pack),1,2.99,02/10/19 04:42,"502 Adams St, Atlanta, GA 30301" +161217,Bose SoundSport Headphones,1,99.99,02/08/19 10:39,"854 Ridge St, Boston, MA 02215" +161218,Apple Airpods Headphones,1,150,02/15/19 14:24,"351 Cedar St, Atlanta, GA 30301" +161219,AAA Batteries (4-pack),1,2.99,02/21/19 09:06,"394 Johnson St, Boston, MA 02215" +161220,Wired Headphones,1,11.99,02/14/19 11:05,"302 7th St, Boston, MA 02215" +161221,ThinkPad Laptop,1,999.99,02/19/19 09:10,"321 Main St, San Francisco, CA 94016" +161222,Macbook Pro Laptop,1,1700,02/20/19 22:57,"649 2nd St, San Francisco, CA 94016" +161223,AAA Batteries (4-pack),1,2.99,02/05/19 14:49,"926 1st St, Dallas, TX 75001" +161224,Apple Airpods Headphones,1,150,02/10/19 01:31,"308 Adams St, San Francisco, CA 94016" +161225,27in FHD Monitor,1,149.99,02/07/19 07:32,"210 South St, San Francisco, CA 94016" +161226,ThinkPad Laptop,1,999.99,02/03/19 18:28,"686 9th St, Los Angeles, CA 90001" +161227,Bose SoundSport Headphones,1,99.99,02/14/19 00:07,"19 River St, San Francisco, CA 94016" +161228,ThinkPad Laptop,1,999.99,02/21/19 15:23,"150 5th St, San Francisco, CA 94016" +161229,Wired Headphones,1,11.99,02/27/19 14:25,"604 12th St, New York City, NY 10001" +161230,AA Batteries (4-pack),2,3.84,02/16/19 14:40,"471 Ridge St, Dallas, TX 75001" +161231,USB-C Charging Cable,1,11.95,02/07/19 01:22,"552 Washington St, Los Angeles, CA 90001" +161232,AAA Batteries (4-pack),1,2.99,02/22/19 13:54,"277 Johnson St, Dallas, TX 75001" +161233,ThinkPad Laptop,1,999.99,02/21/19 20:14,"201 Sunset St, San Francisco, CA 94016" +161234,USB-C Charging Cable,2,11.95,02/28/19 12:12,"399 Sunset St, San Francisco, CA 94016" +161235,Flatscreen TV,1,300,02/19/19 07:56,"732 Willow St, San Francisco, CA 94016" +161236,Flatscreen TV,1,300,02/01/19 18:15,"202 Washington St, San Francisco, CA 94016" +161237,AAA Batteries (4-pack),1,2.99,02/28/19 23:54,"863 14th St, Boston, MA 02215" +161238,AAA Batteries (4-pack),1,2.99,02/16/19 22:35,"700 Church St, New York City, NY 10001" +161239,AAA Batteries (4-pack),1,2.99,02/17/19 09:08,"963 11th St, Portland, ME 04101" +161240,AA Batteries (4-pack),1,3.84,02/01/19 18:45,"718 Highland St, Austin, TX 73301" +161241,Bose SoundSport Headphones,1,99.99,02/08/19 14:36,"876 West St, Dallas, TX 75001" +161242,34in Ultrawide Monitor,1,379.99,02/11/19 20:26,"240 Park St, San Francisco, CA 94016" +161243,Bose SoundSport Headphones,1,99.99,02/02/19 12:24,"581 Dogwood St, Seattle, WA 98101" +161244,AA Batteries (4-pack),1,3.84,02/03/19 15:12,"846 Madison St, San Francisco, CA 94016" +161245,Flatscreen TV,1,300,02/15/19 13:51,"349 South St, Boston, MA 02215" +161246,USB-C Charging Cable,1,11.95,02/12/19 17:06,"942 Maple St, New York City, NY 10001" +161247,AA Batteries (4-pack),1,3.84,02/21/19 21:39,"369 Wilson St, Los Angeles, CA 90001" +161248,AA Batteries (4-pack),4,3.84,02/17/19 15:13,"867 Hill St, New York City, NY 10001" +161249,AA Batteries (4-pack),2,3.84,02/07/19 16:17,"277 5th St, Los Angeles, CA 90001" +161250,AAA Batteries (4-pack),1,2.99,02/07/19 20:23,"717 Highland St, New York City, NY 10001" +161251,27in 4K Gaming Monitor,1,389.99,02/26/19 16:57,"552 Center St, Los Angeles, CA 90001" +161252,Wired Headphones,1,11.99,02/04/19 17:03,"732 Meadow St, Los Angeles, CA 90001" +161253,27in FHD Monitor,1,149.99,02/09/19 20:42,"626 Pine St, Los Angeles, CA 90001" +161254,AA Batteries (4-pack),1,3.84,02/12/19 18:02,"292 North St, San Francisco, CA 94016" +161255,Google Phone,1,600,02/12/19 20:15,"636 Walnut St, Boston, MA 02215" +161256,AAA Batteries (4-pack),1,2.99,02/21/19 11:08,"396 2nd St, Boston, MA 02215" +161257,Google Phone,1,600,02/01/19 18:12,"457 Meadow St, Austin, TX 73301" +161258,Lightning Charging Cable,1,14.95,02/28/19 13:10,"252 1st St, New York City, NY 10001" +161259,Macbook Pro Laptop,1,1700,02/15/19 11:02,"965 Jefferson St, Austin, TX 73301" +161260,Wired Headphones,1,11.99,02/10/19 23:52,"732 South St, San Francisco, CA 94016" +161261,AAA Batteries (4-pack),1,2.99,02/24/19 13:14,"208 Washington St, Atlanta, GA 30301" +161262,AAA Batteries (4-pack),1,2.99,02/28/19 11:09,"745 Park St, Seattle, WA 98101" +161263,Lightning Charging Cable,1,14.95,02/15/19 23:32,"975 Sunset St, Los Angeles, CA 90001" +161264,Wired Headphones,1,11.99,02/09/19 12:53,"774 Cedar St, San Francisco, CA 94016" +161265,USB-C Charging Cable,1,11.95,02/16/19 11:03,"14 Chestnut St, Boston, MA 02215" +161266,AA Batteries (4-pack),1,3.84,02/25/19 08:15,"761 2nd St, Seattle, WA 98101" +161267,USB-C Charging Cable,1,11.95,02/18/19 20:43,"12 Center St, San Francisco, CA 94016" +161268,Wired Headphones,1,11.99,02/14/19 15:47,"577 Lakeview St, San Francisco, CA 94016" +161269,AAA Batteries (4-pack),4,2.99,02/19/19 16:34,"476 Wilson St, Atlanta, GA 30301" +161270,AAA Batteries (4-pack),2,2.99,02/07/19 10:51,"131 Lakeview St, Los Angeles, CA 90001" +161271,iPhone,1,700,02/03/19 18:04,"3 Dogwood St, Los Angeles, CA 90001" +161271,Apple Airpods Headphones,1,150,02/03/19 18:04,"3 Dogwood St, Los Angeles, CA 90001" +161272,Bose SoundSport Headphones,1,99.99,02/08/19 11:11,"758 Park St, Boston, MA 02215" +161273,Wired Headphones,1,11.99,02/19/19 12:10,"81 Madison St, San Francisco, CA 94016" +161274,USB-C Charging Cable,1,11.95,02/03/19 21:55,"874 Ridge St, New York City, NY 10001" +161275,ThinkPad Laptop,1,999.99,02/16/19 22:42,"148 9th St, Austin, TX 73301" +161276,USB-C Charging Cable,1,11.95,02/08/19 08:16,"473 West St, San Francisco, CA 94016" +161277,Wired Headphones,1,11.99,02/01/19 15:11,"26 Park St, Los Angeles, CA 90001" +161278,Wired Headphones,1,11.99,02/10/19 12:38,"750 13th St, Austin, TX 73301" +161279,27in 4K Gaming Monitor,1,389.99,02/03/19 14:58,"955 Church St, Seattle, WA 98101" +161280,Flatscreen TV,1,300,02/14/19 13:48,"49 Jackson St, San Francisco, CA 94016" +161281,27in 4K Gaming Monitor,1,389.99,02/22/19 07:37,"675 Hill St, Boston, MA 02215" +161282,AA Batteries (4-pack),1,3.84,02/10/19 20:21,"101 Ridge St, Seattle, WA 98101" +161283,Lightning Charging Cable,2,14.95,02/08/19 10:16,"446 River St, San Francisco, CA 94016" +161284,USB-C Charging Cable,1,11.95,02/20/19 18:08,"446 Church St, Seattle, WA 98101" +161285,USB-C Charging Cable,1,11.95,02/08/19 16:28,"260 Elm St, New York City, NY 10001" +161285,Vareebadd Phone,1,400,02/08/19 16:28,"260 Elm St, New York City, NY 10001" +161286,Lightning Charging Cable,1,14.95,02/10/19 08:12,"419 Madison St, San Francisco, CA 94016" +161287,iPhone,1,700,02/24/19 19:17,"130 11th St, Portland, OR 97035" +161288,Wired Headphones,1,11.99,02/21/19 16:38,"967 Highland St, Atlanta, GA 30301" +161289,AAA Batteries (4-pack),3,2.99,02/12/19 10:32,"28 2nd St, Los Angeles, CA 90001" +161290,USB-C Charging Cable,2,11.95,02/23/19 17:07,"634 Chestnut St, Los Angeles, CA 90001" +161291,27in FHD Monitor,1,149.99,02/12/19 13:32,"510 Maple St, Los Angeles, CA 90001" +161292,Lightning Charging Cable,1,14.95,02/26/19 23:52,"399 12th St, Portland, OR 97035" +161293,27in FHD Monitor,1,149.99,02/12/19 08:56,"631 Center St, Los Angeles, CA 90001" +161294,27in 4K Gaming Monitor,1,389.99,02/17/19 19:35,"570 Wilson St, New York City, NY 10001" +161295,USB-C Charging Cable,2,11.95,02/11/19 18:49,"745 Hickory St, San Francisco, CA 94016" +161296,ThinkPad Laptop,1,999.99,02/25/19 17:08,"655 10th St, Portland, OR 97035" +161297,AA Batteries (4-pack),1,3.84,02/21/19 18:42,"447 1st St, Austin, TX 73301" +161298,AA Batteries (4-pack),2,3.84,02/04/19 15:31,"653 Meadow St, Los Angeles, CA 90001" +161299,34in Ultrawide Monitor,1,379.99,02/20/19 11:30,"576 Walnut St, San Francisco, CA 94016" +161300,AA Batteries (4-pack),1,3.84,02/01/19 12:27,"294 Hill St, Austin, TX 73301" +161301,USB-C Charging Cable,1,11.95,02/06/19 09:49,"373 Meadow St, Atlanta, GA 30301" +161302,Lightning Charging Cable,1,14.95,02/24/19 16:49,"447 Maple St, San Francisco, CA 94016" +161303,AAA Batteries (4-pack),1,2.99,02/14/19 17:15,"133 Spruce St, San Francisco, CA 94016" +161304,AA Batteries (4-pack),1,3.84,02/01/19 14:38,"710 River St, San Francisco, CA 94016" +161305,Macbook Pro Laptop,1,1700,02/04/19 08:21,"11 2nd St, Atlanta, GA 30301" +161306,AAA Batteries (4-pack),2,2.99,02/21/19 19:48,"846 Madison St, Seattle, WA 98101" +161307,Wired Headphones,1,11.99,02/26/19 12:35,"42 Dogwood St, Seattle, WA 98101" +161308,Bose SoundSport Headphones,1,99.99,02/18/19 17:41,"38 Lincoln St, San Francisco, CA 94016" +161309,Apple Airpods Headphones,1,150,02/25/19 22:15,"913 Ridge St, Boston, MA 02215" +161310,ThinkPad Laptop,1,999.99,02/21/19 09:02,"462 Center St, Atlanta, GA 30301" +161311,USB-C Charging Cable,1,11.95,02/02/19 14:02,"749 Washington St, San Francisco, CA 94016" +161312,USB-C Charging Cable,1,11.95,02/14/19 22:18,"713 Wilson St, New York City, NY 10001" +161313,Macbook Pro Laptop,1,1700,02/01/19 18:46,"496 Washington St, Boston, MA 02215" +161314,USB-C Charging Cable,1,11.95,02/21/19 16:11,"753 Elm St, Boston, MA 02215" +161315,iPhone,1,700,02/22/19 00:11,"308 13th St, Portland, OR 97035" +161316,Wired Headphones,1,11.99,02/11/19 18:53,"836 North St, Los Angeles, CA 90001" +161317,Apple Airpods Headphones,1,150,02/21/19 16:21,"498 Maple St, Los Angeles, CA 90001" +161318,Lightning Charging Cable,1,14.95,02/24/19 00:16,"246 10th St, Dallas, TX 75001" +161319,Lightning Charging Cable,1,14.95,02/16/19 06:47,"338 Main St, Austin, TX 73301" +161320,Apple Airpods Headphones,1,150,02/27/19 20:39,"906 6th St, Dallas, TX 75001" +161321,27in 4K Gaming Monitor,1,389.99,02/22/19 16:19,"356 Washington St, New York City, NY 10001" +161322,USB-C Charging Cable,1,11.95,02/01/19 13:17,"562 Johnson St, San Francisco, CA 94016" +161323,AA Batteries (4-pack),1,3.84,02/15/19 13:16,"748 Lake St, Los Angeles, CA 90001" +161324,Lightning Charging Cable,1,14.95,02/01/19 07:42,"28 Church St, New York City, NY 10001" +161325,27in 4K Gaming Monitor,1,389.99,02/01/19 08:54,"520 Center St, Atlanta, GA 30301" +161326,Macbook Pro Laptop,1,1700,02/09/19 11:34,"25 7th St, Boston, MA 02215" +161327,AA Batteries (4-pack),1,3.84,02/09/19 10:06,"635 13th St, New York City, NY 10001" +161328,Apple Airpods Headphones,1,150,02/08/19 20:05,"897 Willow St, Los Angeles, CA 90001" +161329,USB-C Charging Cable,1,11.95,02/18/19 12:10,"313 6th St, San Francisco, CA 94016" +161330,Apple Airpods Headphones,1,150,02/19/19 23:27,"800 13th St, Los Angeles, CA 90001" +161331,Lightning Charging Cable,1,14.95,02/21/19 17:33,"541 Wilson St, Los Angeles, CA 90001" +161332,AAA Batteries (4-pack),1,2.99,02/22/19 07:27,"753 12th St, Boston, MA 02215" +161333,USB-C Charging Cable,3,11.95,02/06/19 10:52,"820 Willow St, San Francisco, CA 94016" +161334,Lightning Charging Cable,1,14.95,02/19/19 08:12,"205 North St, Dallas, TX 75001" +161335,AAA Batteries (4-pack),1,2.99,02/02/19 22:00,"668 4th St, Los Angeles, CA 90001" +161336,AAA Batteries (4-pack),3,2.99,02/09/19 21:41,"961 Wilson St, San Francisco, CA 94016" +161337,Lightning Charging Cable,1,14.95,02/05/19 17:01,"499 Dogwood St, Austin, TX 73301" +161338,Bose SoundSport Headphones,1,99.99,02/11/19 13:25,"674 River St, Seattle, WA 98101" +161339,AA Batteries (4-pack),1,3.84,02/09/19 16:43,"986 6th St, Dallas, TX 75001" +161340,Wired Headphones,1,11.99,02/18/19 19:09,"4 Elm St, Boston, MA 02215" +161341,USB-C Charging Cable,1,11.95,02/14/19 02:29,"203 Jackson St, Dallas, TX 75001" +161342,AA Batteries (4-pack),1,3.84,02/24/19 18:42,"991 Madison St, Los Angeles, CA 90001" +161343,USB-C Charging Cable,2,11.95,02/23/19 16:20,"282 Park St, Portland, OR 97035" +161344,Apple Airpods Headphones,1,150,02/26/19 11:45,"164 Pine St, Seattle, WA 98101" +161345,AAA Batteries (4-pack),1,2.99,02/20/19 21:35,"374 Spruce St, San Francisco, CA 94016" +161346,AAA Batteries (4-pack),1,2.99,02/02/19 11:44,"803 Elm St, Boston, MA 02215" +161347,27in 4K Gaming Monitor,1,389.99,02/14/19 19:41,"970 Lakeview St, Boston, MA 02215" +161348,Google Phone,1,600,02/09/19 17:15,"198 Lakeview St, Dallas, TX 75001" +161349,Google Phone,1,600,02/10/19 13:11,"761 Hickory St, San Francisco, CA 94016" +161350,iPhone,1,700,02/03/19 13:22,"280 Lake St, Boston, MA 02215" +161351,Bose SoundSport Headphones,1,99.99,02/13/19 10:10,"45 Wilson St, New York City, NY 10001" +161352,Lightning Charging Cable,1,14.95,02/03/19 20:30,"9 South St, Portland, OR 97035" +161353,Macbook Pro Laptop,1,1700,02/13/19 08:48,"497 Jackson St, New York City, NY 10001" +161354,Lightning Charging Cable,1,14.95,02/21/19 19:10,"788 8th St, Boston, MA 02215" +161355,AAA Batteries (4-pack),1,2.99,02/25/19 10:13,"40 Wilson St, Dallas, TX 75001" +161356,Bose SoundSport Headphones,1,99.99,02/17/19 09:06,"569 12th St, Los Angeles, CA 90001" +161357,AA Batteries (4-pack),1,3.84,02/07/19 21:50,"789 Park St, San Francisco, CA 94016" +161358,USB-C Charging Cable,1,11.95,02/12/19 14:35,"394 Hill St, Portland, OR 97035" +161359,Wired Headphones,1,11.99,02/15/19 18:16,"462 14th St, Los Angeles, CA 90001" +161360,Apple Airpods Headphones,1,150,02/13/19 06:14,"873 Sunset St, San Francisco, CA 94016" +161361,Google Phone,1,600,02/23/19 13:05,"617 11th St, Portland, OR 97035" +161362,AA Batteries (4-pack),1,3.84,02/13/19 23:27,"250 Spruce St, New York City, NY 10001" +161363,Lightning Charging Cable,1,14.95,02/11/19 22:12,"658 Elm St, San Francisco, CA 94016" +161364,Flatscreen TV,1,300,02/26/19 19:38,"761 Walnut St, Seattle, WA 98101" +161365,Apple Airpods Headphones,1,150,02/06/19 15:36,"976 Wilson St, Los Angeles, CA 90001" +161366,Apple Airpods Headphones,1,150,02/04/19 09:36,"85 Forest St, Portland, OR 97035" +161367,Lightning Charging Cable,1,14.95,02/03/19 08:45,"706 Elm St, Atlanta, GA 30301" +161368,USB-C Charging Cable,1,11.95,02/26/19 14:14,"133 11th St, New York City, NY 10001" +161369,AAA Batteries (4-pack),2,2.99,02/15/19 22:03,"633 North St, Austin, TX 73301" +161370,34in Ultrawide Monitor,1,379.99,02/14/19 14:31,"932 Willow St, New York City, NY 10001" +161371,Wired Headphones,1,11.99,02/23/19 20:27,"172 Cedar St, Los Angeles, CA 90001" +161372,Bose SoundSport Headphones,1,99.99,02/23/19 16:23,"335 Sunset St, San Francisco, CA 94016" +161373,27in FHD Monitor,1,149.99,02/12/19 22:00,"818 Main St, Los Angeles, CA 90001" +161374,AAA Batteries (4-pack),1,2.99,02/08/19 10:18,"454 Jefferson St, New York City, NY 10001" +161375,34in Ultrawide Monitor,1,379.99,02/26/19 16:29,"321 13th St, Los Angeles, CA 90001" +161376,Lightning Charging Cable,2,14.95,02/11/19 07:26,"182 Lincoln St, San Francisco, CA 94016" +161377,USB-C Charging Cable,1,11.95,02/22/19 08:33,"299 Willow St, New York City, NY 10001" +161378,AA Batteries (4-pack),2,3.84,02/08/19 08:51,"814 12th St, San Francisco, CA 94016" +161379,Apple Airpods Headphones,1,150,02/10/19 16:59,"230 Adams St, San Francisco, CA 94016" +161380,ThinkPad Laptop,1,999.99,02/16/19 04:42,"333 Highland St, New York City, NY 10001" +161381,AAA Batteries (4-pack),1,2.99,02/28/19 07:03,"905 14th St, San Francisco, CA 94016" +161382,Wired Headphones,1,11.99,02/13/19 17:43,"327 Forest St, New York City, NY 10001" +161383,AA Batteries (4-pack),1,3.84,02/28/19 14:13,"322 Lincoln St, San Francisco, CA 94016" +161384,Lightning Charging Cable,1,14.95,02/22/19 00:35,"663 Cherry St, Los Angeles, CA 90001" +161385,Apple Airpods Headphones,1,150,02/25/19 21:13,"160 Church St, Seattle, WA 98101" +161386,Lightning Charging Cable,1,14.95,02/25/19 19:38,"302 Maple St, Dallas, TX 75001" +161387,Bose SoundSport Headphones,1,99.99,02/25/19 20:51,"996 Adams St, Atlanta, GA 30301" +161388,AA Batteries (4-pack),1,3.84,02/06/19 09:44,"966 River St, New York City, NY 10001" +161389,Macbook Pro Laptop,1,1700,02/15/19 11:13,"953 West St, New York City, NY 10001" +161390,Wired Headphones,1,11.99,02/01/19 11:56,"373 River St, New York City, NY 10001" +161391,Lightning Charging Cable,1,14.95,02/11/19 00:40,"854 Park St, San Francisco, CA 94016" +161392,Apple Airpods Headphones,1,150,02/14/19 15:37,"581 Johnson St, Austin, TX 73301" +161393,Wired Headphones,2,11.99,02/25/19 00:16,"337 14th St, San Francisco, CA 94016" +161394,34in Ultrawide Monitor,1,379.99,02/02/19 17:20,"736 Jefferson St, San Francisco, CA 94016" +161395,Bose SoundSport Headphones,1,99.99,02/12/19 08:17,"796 North St, New York City, NY 10001" +161396,Lightning Charging Cable,1,14.95,02/03/19 12:48,"378 North St, San Francisco, CA 94016" +161397,20in Monitor,1,109.99,02/27/19 11:14,"70 14th St, Dallas, TX 75001" +161398,Wired Headphones,1,11.99,02/08/19 08:57,"274 Church St, Boston, MA 02215" +161399,iPhone,1,700,02/11/19 10:57,"495 West St, San Francisco, CA 94016" +161400,34in Ultrawide Monitor,1,379.99,02/14/19 13:22,"731 Hickory St, Boston, MA 02215" +161401,AAA Batteries (4-pack),1,2.99,02/26/19 12:42,"572 Pine St, Portland, OR 97035" +161402,Vareebadd Phone,1,400,02/18/19 19:07,"278 Spruce St, Boston, MA 02215" +161402,Bose SoundSport Headphones,1,99.99,02/18/19 19:07,"278 Spruce St, Boston, MA 02215" +161403,USB-C Charging Cable,1,11.95,02/09/19 11:04,"761 Johnson St, San Francisco, CA 94016" +161404,Apple Airpods Headphones,1,150,02/27/19 21:47,"188 Church St, Portland, OR 97035" +161405,34in Ultrawide Monitor,1,379.99,02/04/19 22:15,"189 Adams St, Atlanta, GA 30301" +161406,Macbook Pro Laptop,1,1700,02/13/19 15:06,"540 Washington St, Boston, MA 02215" +161407,Lightning Charging Cable,1,14.95,02/13/19 19:57,"350 Cherry St, San Francisco, CA 94016" +161408,Lightning Charging Cable,1,14.95,02/11/19 09:39,"698 Jackson St, Seattle, WA 98101" +161409,27in FHD Monitor,1,149.99,02/22/19 12:11,"766 11th St, San Francisco, CA 94016" +161410,Apple Airpods Headphones,1,150,02/17/19 21:48,"229 Church St, Seattle, WA 98101" +161411,34in Ultrawide Monitor,1,379.99,02/20/19 17:30,"477 Spruce St, Dallas, TX 75001" +161412,USB-C Charging Cable,1,11.95,02/13/19 13:16,"661 5th St, Atlanta, GA 30301" +161413,AAA Batteries (4-pack),1,2.99,02/08/19 07:53,"723 Willow St, Los Angeles, CA 90001" +161414,AAA Batteries (4-pack),1,2.99,02/19/19 09:17,"696 13th St, Boston, MA 02215" +161415,Lightning Charging Cable,1,14.95,02/28/19 11:46,"271 Hickory St, New York City, NY 10001" +161416,Apple Airpods Headphones,1,150,02/20/19 16:16,"253 13th St, Seattle, WA 98101" +161417,Wired Headphones,1,11.99,02/04/19 00:58,"819 Hickory St, Seattle, WA 98101" +161418,AAA Batteries (4-pack),1,2.99,02/26/19 17:36,"477 2nd St, Atlanta, GA 30301" +161419,AA Batteries (4-pack),1,3.84,02/22/19 06:17,"527 13th St, New York City, NY 10001" +161420,27in FHD Monitor,1,149.99,02/26/19 22:45,"231 12th St, San Francisco, CA 94016" +161421,Wired Headphones,1,11.99,02/22/19 21:20,"553 West St, New York City, NY 10001" +161422,Apple Airpods Headphones,1,150,02/12/19 16:53,"210 14th St, San Francisco, CA 94016" +161423,Apple Airpods Headphones,1,150,02/24/19 09:44,"963 Highland St, San Francisco, CA 94016" +161424,AAA Batteries (4-pack),1,2.99,02/28/19 12:46,"649 Maple St, Boston, MA 02215" +161425,AA Batteries (4-pack),1,3.84,02/25/19 23:36,"705 Adams St, Atlanta, GA 30301" +161426,USB-C Charging Cable,1,11.95,02/18/19 20:51,"512 7th St, Boston, MA 02215" +161427,Macbook Pro Laptop,1,1700,02/26/19 14:22,"734 Lake St, San Francisco, CA 94016" +161428,USB-C Charging Cable,1,11.95,02/05/19 16:38,"85 8th St, Los Angeles, CA 90001" +161429,Vareebadd Phone,1,400,02/09/19 00:37,"907 Madison St, San Francisco, CA 94016" +161430,Apple Airpods Headphones,1,150,02/17/19 11:51,"868 Maple St, San Francisco, CA 94016" +161431,Wired Headphones,1,11.99,02/03/19 22:38,"909 Forest St, Seattle, WA 98101" +161432,AA Batteries (4-pack),2,3.84,02/22/19 11:31,"683 Cherry St, San Francisco, CA 94016" +161433,27in 4K Gaming Monitor,1,389.99,02/26/19 10:47,"872 Cherry St, Boston, MA 02215" +161434,USB-C Charging Cable,2,11.95,02/03/19 15:42,"513 6th St, Austin, TX 73301" +161435,Lightning Charging Cable,1,14.95,02/01/19 19:23,"510 12th St, Seattle, WA 98101" +161436,Bose SoundSport Headphones,1,99.99,02/07/19 06:36,"970 Jefferson St, Los Angeles, CA 90001" +161437,AAA Batteries (4-pack),1,2.99,02/23/19 12:47,"640 Cedar St, San Francisco, CA 94016" +161438,Wired Headphones,1,11.99,02/06/19 20:50,"858 Wilson St, Boston, MA 02215" +161439,Flatscreen TV,1,300,02/06/19 01:26,"871 Chestnut St, Atlanta, GA 30301" +161440,Lightning Charging Cable,1,14.95,02/26/19 14:19,"916 2nd St, Seattle, WA 98101" +161441,USB-C Charging Cable,1,11.95,02/14/19 12:09,"754 Lincoln St, Los Angeles, CA 90001" +161442,AAA Batteries (4-pack),1,2.99,02/05/19 12:31,"301 Walnut St, Austin, TX 73301" +161443,Apple Airpods Headphones,1,150,02/14/19 15:44,"298 Cherry St, San Francisco, CA 94016" +161444,AAA Batteries (4-pack),1,2.99,02/01/19 22:12,"766 Jefferson St, Los Angeles, CA 90001" +161445,Wired Headphones,2,11.99,02/27/19 21:15,"900 Hill St, Seattle, WA 98101" +161446,20in Monitor,1,109.99,02/21/19 11:36,"538 5th St, Austin, TX 73301" +161447,Wired Headphones,1,11.99,02/20/19 13:31,"47 Adams St, San Francisco, CA 94016" +161448,20in Monitor,1,109.99,02/24/19 12:38,"853 5th St, Los Angeles, CA 90001" +161449,27in FHD Monitor,1,149.99,02/24/19 20:11,"60 Washington St, San Francisco, CA 94016" +161450,AA Batteries (4-pack),1,3.84,02/26/19 23:58,"747 6th St, New York City, NY 10001" +161451,AAA Batteries (4-pack),1,2.99,02/26/19 12:42,"536 4th St, San Francisco, CA 94016" +161452,34in Ultrawide Monitor,1,379.99,02/26/19 18:58,"104 Spruce St, Los Angeles, CA 90001" +161453,Lightning Charging Cable,1,14.95,02/25/19 20:36,"905 Jackson St, San Francisco, CA 94016" +161454,AA Batteries (4-pack),1,3.84,02/08/19 14:10,"97 Chestnut St, Atlanta, GA 30301" +161455,USB-C Charging Cable,1,11.95,02/07/19 04:37,"784 8th St, San Francisco, CA 94016" +161456,Lightning Charging Cable,1,14.95,02/27/19 16:18,"554 Sunset St, New York City, NY 10001" +161457,AA Batteries (4-pack),1,3.84,02/24/19 15:52,"15 Center St, Portland, OR 97035" +161458,34in Ultrawide Monitor,1,379.99,02/06/19 10:28,"90 Sunset St, Atlanta, GA 30301" +161459,USB-C Charging Cable,1,11.95,02/01/19 18:51,"692 River St, San Francisco, CA 94016" +161460,Wired Headphones,1,11.99,02/18/19 21:30,"116 Meadow St, Los Angeles, CA 90001" +161461,Wired Headphones,1,11.99,02/08/19 14:38,"8 Ridge St, Los Angeles, CA 90001" +161462,Apple Airpods Headphones,1,150,02/28/19 12:31,"603 9th St, Los Angeles, CA 90001" +161463,AAA Batteries (4-pack),1,2.99,02/01/19 12:37,"246 13th St, San Francisco, CA 94016" +161464,Flatscreen TV,1,300,02/22/19 17:49,"1 Johnson St, New York City, NY 10001" +161465,AAA Batteries (4-pack),1,2.99,02/03/19 10:06,"841 13th St, Seattle, WA 98101" +161466,USB-C Charging Cable,1,11.95,02/20/19 11:05,"286 Main St, San Francisco, CA 94016" +161467,Wired Headphones,1,11.99,02/14/19 06:18,"781 Park St, Portland, OR 97035" +161468,ThinkPad Laptop,1,999.99,02/06/19 06:01,"457 Chestnut St, Los Angeles, CA 90001" +161469,Lightning Charging Cable,1,14.95,02/23/19 18:45,"48 Park St, Seattle, WA 98101" +161470,ThinkPad Laptop,1,999.99,02/28/19 15:53,"442 14th St, New York City, NY 10001" +161471,Bose SoundSport Headphones,1,99.99,02/18/19 23:50,"311 West St, Seattle, WA 98101" +161472,Wired Headphones,3,11.99,02/21/19 06:05,"33 River St, Los Angeles, CA 90001" +161473,Lightning Charging Cable,1,14.95,02/26/19 22:11,"574 Cherry St, New York City, NY 10001" +161474,iPhone,1,700,02/10/19 17:06,"813 Walnut St, New York City, NY 10001" +161474,Wired Headphones,1,11.99,02/10/19 17:06,"813 Walnut St, New York City, NY 10001" +161475,AA Batteries (4-pack),1,3.84,02/02/19 14:44,"725 Jackson St, Portland, OR 97035" +161476,27in 4K Gaming Monitor,1,389.99,02/24/19 12:31,"533 Pine St, Los Angeles, CA 90001" +161477,27in 4K Gaming Monitor,1,389.99,02/27/19 20:58,"458 River St, New York City, NY 10001" +161478,ThinkPad Laptop,1,999.99,02/07/19 12:23,"129 Willow St, Los Angeles, CA 90001" +161479,AAA Batteries (4-pack),1,2.99,02/23/19 14:30,"212 Lakeview St, Seattle, WA 98101" +161480,USB-C Charging Cable,1,11.95,02/16/19 22:30,"267 14th St, Atlanta, GA 30301" +161481,AA Batteries (4-pack),1,3.84,02/19/19 18:29,"960 Cedar St, Portland, OR 97035" +161482,27in 4K Gaming Monitor,1,389.99,02/20/19 10:17,"872 Jackson St, Dallas, TX 75001" +161483,Lightning Charging Cable,1,14.95,02/22/19 15:51,"571 Ridge St, Dallas, TX 75001" +161484,AA Batteries (4-pack),1,3.84,02/09/19 12:38,"230 Walnut St, Boston, MA 02215" +161485,Apple Airpods Headphones,1,150,02/13/19 10:24,"971 Elm St, New York City, NY 10001" +161486,iPhone,1,700,02/19/19 13:58,"390 Sunset St, San Francisco, CA 94016" +161487,27in FHD Monitor,1,149.99,02/12/19 13:53,"577 Wilson St, San Francisco, CA 94016" +161488,AA Batteries (4-pack),1,3.84,02/13/19 11:05,"325 Johnson St, Los Angeles, CA 90001" +161489,AA Batteries (4-pack),2,3.84,02/19/19 16:10,"971 Park St, Boston, MA 02215" +161490,Wired Headphones,1,11.99,02/01/19 11:59,"182 Spruce St, Dallas, TX 75001" +161491,Apple Airpods Headphones,1,150,02/03/19 10:33,"605 Highland St, Austin, TX 73301" +161492,Apple Airpods Headphones,1,150,02/10/19 23:32,"865 Madison St, Atlanta, GA 30301" +161493,iPhone,1,700,02/02/19 09:33,"215 Washington St, Austin, TX 73301" +161494,iPhone,1,700,02/19/19 09:32,"472 4th St, San Francisco, CA 94016" +161494,Lightning Charging Cable,1,14.95,02/19/19 09:32,"472 4th St, San Francisco, CA 94016" +161494,ThinkPad Laptop,1,999.99,02/19/19 09:32,"472 4th St, San Francisco, CA 94016" +161495,USB-C Charging Cable,1,11.95,02/28/19 19:36,"612 Madison St, Dallas, TX 75001" +161496,27in FHD Monitor,1,149.99,02/08/19 00:23,"771 South St, Boston, MA 02215" +161497,Flatscreen TV,1,300,02/17/19 21:14,"439 11th St, Atlanta, GA 30301" +161498,Lightning Charging Cable,1,14.95,02/09/19 09:21,"719 Maple St, New York City, NY 10001" +161499,27in 4K Gaming Monitor,1,389.99,02/22/19 08:42,"950 Spruce St, Boston, MA 02215" +161500,USB-C Charging Cable,1,11.95,02/02/19 21:53,"247 Main St, Austin, TX 73301" +161501,Bose SoundSport Headphones,1,99.99,02/07/19 16:24,"494 4th St, Boston, MA 02215" +161502,Lightning Charging Cable,1,14.95,02/04/19 16:38,"275 14th St, Portland, OR 97035" +161503,Bose SoundSport Headphones,1,99.99,02/14/19 18:54,"891 Chestnut St, Los Angeles, CA 90001" +161504,Bose SoundSport Headphones,1,99.99,02/26/19 10:04,"616 Sunset St, Portland, OR 97035" +161505,27in FHD Monitor,1,149.99,02/03/19 13:10,"900 Cedar St, Dallas, TX 75001" +161506,Apple Airpods Headphones,1,150,02/14/19 16:43,"425 8th St, San Francisco, CA 94016" +161507,Apple Airpods Headphones,1,150,02/08/19 14:28,"951 Cedar St, San Francisco, CA 94016" +161508,Flatscreen TV,1,300,02/24/19 16:21,"177 Forest St, New York City, NY 10001" +161509,27in FHD Monitor,1,149.99,02/25/19 17:26,"521 Forest St, Los Angeles, CA 90001" +161510,AAA Batteries (4-pack),2,2.99,02/25/19 12:03,"629 Park St, San Francisco, CA 94016" +161511,USB-C Charging Cable,1,11.95,02/28/19 22:04,"84 8th St, Los Angeles, CA 90001" +161512,Apple Airpods Headphones,1,150,02/03/19 22:58,"463 Chestnut St, Los Angeles, CA 90001" +161512,AAA Batteries (4-pack),2,2.99,02/03/19 22:58,"463 Chestnut St, Los Angeles, CA 90001" +161513,AA Batteries (4-pack),1,3.84,02/12/19 15:06,"982 1st St, Los Angeles, CA 90001" +161514,iPhone,1,700,02/02/19 17:45,"920 Walnut St, New York City, NY 10001" +161515,AA Batteries (4-pack),2,3.84,02/16/19 15:18,"617 1st St, Portland, OR 97035" +161516,27in 4K Gaming Monitor,1,389.99,02/07/19 09:52,"343 Chestnut St, San Francisco, CA 94016" +161517,USB-C Charging Cable,1,11.95,02/19/19 21:15,"999 Cedar St, Dallas, TX 75001" +161518,AAA Batteries (4-pack),1,2.99,02/19/19 02:00,"56 2nd St, Los Angeles, CA 90001" +161519,Lightning Charging Cable,1,14.95,02/01/19 18:32,"151 6th St, Los Angeles, CA 90001" +161520,Bose SoundSport Headphones,1,99.99,02/20/19 15:58,"23 12th St, Portland, OR 97035" +161521,Bose SoundSport Headphones,1,99.99,02/16/19 21:49,"430 Dogwood St, Seattle, WA 98101" +161522,34in Ultrawide Monitor,1,379.99,02/26/19 17:05,"109 Highland St, Atlanta, GA 30301" +161523,AA Batteries (4-pack),1,3.84,02/25/19 16:51,"778 Church St, Dallas, TX 75001" +161524,20in Monitor,1,109.99,02/04/19 22:36,"961 12th St, Dallas, TX 75001" +161525,USB-C Charging Cable,1,11.95,02/04/19 11:03,"741 Cherry St, Portland, ME 04101" +161526,LG Dryer,1,600.0,02/20/19 19:37,"54 Maple St, San Francisco, CA 94016" +161527,27in FHD Monitor,1,149.99,02/26/19 18:40,"116 6th St, Portland, ME 04101" +161528,Lightning Charging Cable,1,14.95,02/22/19 19:49,"291 Dogwood St, San Francisco, CA 94016" +161529,USB-C Charging Cable,1,11.95,02/21/19 14:29,"343 2nd St, Dallas, TX 75001" +161530,Lightning Charging Cable,1,14.95,02/10/19 21:08,"788 Willow St, Boston, MA 02215" +161531,AAA Batteries (4-pack),3,2.99,02/10/19 21:38,"638 Lake St, San Francisco, CA 94016" +161532,Lightning Charging Cable,1,14.95,02/28/19 15:23,"405 Park St, New York City, NY 10001" +161533,Bose SoundSport Headphones,1,99.99,02/03/19 13:35,"2 Lake St, San Francisco, CA 94016" +161534,Lightning Charging Cable,2,14.95,02/10/19 19:58,"648 5th St, Los Angeles, CA 90001" +161535,Lightning Charging Cable,1,14.95,02/14/19 09:09,"884 Lakeview St, Austin, TX 73301" +161536,Bose SoundSport Headphones,1,99.99,02/05/19 05:49,"776 Hickory St, San Francisco, CA 94016" +161537,Wired Headphones,1,11.99,02/04/19 14:04,"604 Sunset St, San Francisco, CA 94016" +161538,AA Batteries (4-pack),1,3.84,02/05/19 14:12,"486 Johnson St, Portland, OR 97035" +161539,AA Batteries (4-pack),2,3.84,02/24/19 20:57,"574 Hickory St, Seattle, WA 98101" +161540,Lightning Charging Cable,1,14.95,02/17/19 09:09,"708 7th St, New York City, NY 10001" +161541,Bose SoundSport Headphones,1,99.99,02/08/19 20:40,"26 Forest St, San Francisco, CA 94016" +161542,Bose SoundSport Headphones,1,99.99,02/02/19 22:57,"603 Lake St, New York City, NY 10001" +161543,34in Ultrawide Monitor,1,379.99,02/05/19 01:56,"130 7th St, San Francisco, CA 94016" +161544,27in FHD Monitor,1,149.99,02/27/19 20:23,"899 Adams St, San Francisco, CA 94016" +161545,iPhone,1,700,02/07/19 23:35,"914 Lake St, Seattle, WA 98101" +161546,Lightning Charging Cable,1,14.95,02/11/19 18:27,"316 10th St, New York City, NY 10001" +161547,Bose SoundSport Headphones,1,99.99,02/06/19 13:15,"247 Cherry St, San Francisco, CA 94016" +161548,Macbook Pro Laptop,1,1700,02/12/19 22:14,"70 6th St, Portland, ME 04101" +161549,AAA Batteries (4-pack),1,2.99,02/15/19 22:38,"968 11th St, San Francisco, CA 94016" +161550,Lightning Charging Cable,2,14.95,02/10/19 00:20,"303 Adams St, San Francisco, CA 94016" +161551,Wired Headphones,1,11.99,02/26/19 17:40,"981 Highland St, Atlanta, GA 30301" +161552,USB-C Charging Cable,1,11.95,02/08/19 20:23,"80 Willow St, Dallas, TX 75001" +161553,USB-C Charging Cable,1,11.95,02/11/19 13:47,"437 10th St, Los Angeles, CA 90001" +161553,AAA Batteries (4-pack),1,2.99,02/11/19 13:47,"437 10th St, Los Angeles, CA 90001" +161554,Lightning Charging Cable,1,14.95,02/23/19 11:07,"252 River St, San Francisco, CA 94016" +161555,LG Washing Machine,1,600.0,02/23/19 12:37,"600 West St, Seattle, WA 98101" +161556,LG Washing Machine,1,600.0,02/27/19 11:08,"375 Jefferson St, New York City, NY 10001" +161557,AA Batteries (4-pack),1,3.84,02/22/19 10:07,"586 Lincoln St, Atlanta, GA 30301" +161558,27in FHD Monitor,1,149.99,02/19/19 09:18,"795 Lakeview St, Boston, MA 02215" +161559,Flatscreen TV,1,300,02/19/19 12:29,"92 Johnson St, Dallas, TX 75001" +161560,Wired Headphones,1,11.99,02/16/19 07:29,"683 River St, Los Angeles, CA 90001" +161561,Flatscreen TV,1,300,02/05/19 15:44,"741 Walnut St, Austin, TX 73301" +161562,ThinkPad Laptop,1,999.99,02/17/19 11:26,"645 Sunset St, New York City, NY 10001" +161563,Bose SoundSport Headphones,1,99.99,02/06/19 21:35,"216 12th St, Seattle, WA 98101" +161564,Bose SoundSport Headphones,1,99.99,02/27/19 19:05,"971 1st St, Seattle, WA 98101" +161565,AAA Batteries (4-pack),3,2.99,02/23/19 16:57,"493 Main St, San Francisco, CA 94016" +161566,AAA Batteries (4-pack),1,2.99,02/19/19 17:53,"529 Jackson St, San Francisco, CA 94016" +161567,27in 4K Gaming Monitor,1,389.99,02/05/19 14:29,"61 West St, San Francisco, CA 94016" +161568,Apple Airpods Headphones,1,150,02/07/19 21:01,"190 Meadow St, San Francisco, CA 94016" +161569,USB-C Charging Cable,2,11.95,02/08/19 13:26,"355 2nd St, Atlanta, GA 30301" +161570,Lightning Charging Cable,1,14.95,02/23/19 09:03,"539 Maple St, Boston, MA 02215" +161571,34in Ultrawide Monitor,2,379.99,02/10/19 15:34,"622 Highland St, New York City, NY 10001" +161572,Wired Headphones,1,11.99,02/24/19 23:08,"750 9th St, Los Angeles, CA 90001" +161573,27in FHD Monitor,1,149.99,02/23/19 13:05,"840 Ridge St, Los Angeles, CA 90001" +161574,Google Phone,1,600,02/16/19 00:14,"260 4th St, Austin, TX 73301" +161575,AA Batteries (4-pack),1,3.84,02/02/19 18:42,"427 Dogwood St, Los Angeles, CA 90001" +161576,Lightning Charging Cable,1,14.95,02/02/19 06:16,"823 West St, San Francisco, CA 94016" +161577,20in Monitor,1,109.99,02/14/19 15:33,"295 West St, San Francisco, CA 94016" +161578,Wired Headphones,1,11.99,02/06/19 22:56,"967 Dogwood St, Boston, MA 02215" +161579,Wired Headphones,1,11.99,02/03/19 17:09,"979 7th St, Atlanta, GA 30301" +161580,Wired Headphones,1,11.99,02/11/19 16:09,"452 Madison St, Boston, MA 02215" +161581,AA Batteries (4-pack),1,3.84,02/12/19 15:01,"138 Walnut St, Dallas, TX 75001" +161582,27in FHD Monitor,1,149.99,02/12/19 07:40,"227 Lake St, San Francisco, CA 94016" +161583,Apple Airpods Headphones,1,150,02/06/19 12:44,"307 Adams St, Portland, ME 04101" +161584,Lightning Charging Cable,1,14.95,02/17/19 13:25,"842 13th St, Boston, MA 02215" +161585,AA Batteries (4-pack),1,3.84,02/22/19 16:59,"306 Center St, Los Angeles, CA 90001" +161586,Lightning Charging Cable,2,14.95,02/03/19 13:24,"400 Main St, Los Angeles, CA 90001" +161587,Apple Airpods Headphones,1,150,02/01/19 11:33,"722 Johnson St, San Francisco, CA 94016" +161588,Bose SoundSport Headphones,1,99.99,02/14/19 15:30,"508 10th St, Seattle, WA 98101" +161589,Lightning Charging Cable,1,14.95,02/12/19 16:18,"72 Center St, Los Angeles, CA 90001" +161590,Vareebadd Phone,1,400,02/09/19 17:56,"914 12th St, Seattle, WA 98101" +161590,Wired Headphones,1,11.99,02/09/19 17:56,"914 12th St, Seattle, WA 98101" +161591,USB-C Charging Cable,1,11.95,02/23/19 14:25,"230 Lincoln St, San Francisco, CA 94016" +161592,AAA Batteries (4-pack),1,2.99,02/16/19 09:35,"562 Elm St, Boston, MA 02215" +161593,AAA Batteries (4-pack),1,2.99,02/04/19 09:24,"593 Church St, Austin, TX 73301" +161594,Apple Airpods Headphones,1,150,02/05/19 08:27,"158 Ridge St, San Francisco, CA 94016" +161595,iPhone,1,700,02/16/19 07:14,"109 8th St, San Francisco, CA 94016" +161595,Lightning Charging Cable,1,14.95,02/16/19 07:14,"109 8th St, San Francisco, CA 94016" +161596,Apple Airpods Headphones,1,150,02/04/19 21:45,"49 South St, San Francisco, CA 94016" +161597,27in FHD Monitor,1,149.99,02/11/19 19:01,"269 Madison St, Los Angeles, CA 90001" +161598,USB-C Charging Cable,1,11.95,02/06/19 16:49,"573 Sunset St, San Francisco, CA 94016" +161599,LG Washing Machine,1,600.0,02/28/19 20:04,"970 Jefferson St, Boston, MA 02215" +161600,iPhone,1,700,02/10/19 12:48,"574 6th St, San Francisco, CA 94016" +161600,Lightning Charging Cable,1,14.95,02/10/19 12:48,"574 6th St, San Francisco, CA 94016" +161601,AAA Batteries (4-pack),3,2.99,02/07/19 21:56,"559 Spruce St, San Francisco, CA 94016" +161602,USB-C Charging Cable,1,11.95,02/09/19 09:49,"88 Jackson St, Dallas, TX 75001" +161603,34in Ultrawide Monitor,1,379.99,02/27/19 17:51,"135 Maple St, Boston, MA 02215" +161604,Apple Airpods Headphones,1,150,02/12/19 13:28,"481 Highland St, San Francisco, CA 94016" +161605,Macbook Pro Laptop,1,1700,02/05/19 10:14,"666 Main St, Austin, TX 73301" +161606,AA Batteries (4-pack),2,3.84,02/21/19 14:38,"694 Spruce St, Los Angeles, CA 90001" +161607,Apple Airpods Headphones,1,150,02/15/19 10:32,"671 Wilson St, Los Angeles, CA 90001" +161608,USB-C Charging Cable,1,11.95,02/02/19 09:04,"996 South St, Portland, OR 97035" +161609,AA Batteries (4-pack),1,3.84,02/02/19 19:46,"324 Ridge St, Los Angeles, CA 90001" +161610,Lightning Charging Cable,1,14.95,02/16/19 09:25,"906 Maple St, Los Angeles, CA 90001" +161611,20in Monitor,1,109.99,02/05/19 09:30,"860 7th St, New York City, NY 10001" +161612,Wired Headphones,1,11.99,02/10/19 19:18,"868 Lake St, Los Angeles, CA 90001" +161613,Wired Headphones,1,11.99,02/27/19 17:12,"700 Walnut St, San Francisco, CA 94016" +161613,Flatscreen TV,1,300,02/27/19 17:12,"700 Walnut St, San Francisco, CA 94016" +161614,Google Phone,1,600,02/02/19 19:56,"455 Pine St, Portland, OR 97035" +161615,Apple Airpods Headphones,1,150,02/27/19 12:52,"425 Madison St, Austin, TX 73301" +161616,Wired Headphones,1,11.99,02/10/19 21:20,"247 Cedar St, San Francisco, CA 94016" +161617,iPhone,1,700,02/18/19 00:45,"671 4th St, San Francisco, CA 94016" +161618,AAA Batteries (4-pack),2,2.99,02/04/19 10:23,"541 Walnut St, Boston, MA 02215" +161619,USB-C Charging Cable,1,11.95,02/06/19 10:42,"288 Hickory St, Seattle, WA 98101" +161620,AA Batteries (4-pack),3,3.84,02/17/19 10:10,"214 6th St, Los Angeles, CA 90001" +161621,iPhone,1,700,02/06/19 15:42,"87 7th St, Atlanta, GA 30301" +161622,AAA Batteries (4-pack),2,2.99,02/09/19 10:31,"361 Washington St, San Francisco, CA 94016" +161623,Wired Headphones,1,11.99,02/27/19 13:34,"701 Adams St, Los Angeles, CA 90001" +161624,Apple Airpods Headphones,1,150,02/18/19 16:01,"245 11th St, Boston, MA 02215" +161625,AA Batteries (4-pack),1,3.84,02/06/19 12:33,"350 Madison St, Atlanta, GA 30301" +161626,Lightning Charging Cable,1,14.95,02/08/19 22:03,"224 6th St, Portland, OR 97035" +161627,AAA Batteries (4-pack),1,2.99,02/22/19 13:20,"947 North St, Los Angeles, CA 90001" +161628,Bose SoundSport Headphones,1,99.99,02/08/19 23:02,"124 Cherry St, San Francisco, CA 94016" +161629,Apple Airpods Headphones,1,150,02/28/19 10:45,"1 Lake St, Boston, MA 02215" +161630,Apple Airpods Headphones,1,150,02/18/19 18:17,"819 Lake St, Los Angeles, CA 90001" +161631,27in 4K Gaming Monitor,1,389.99,02/18/19 21:54,"370 Lake St, New York City, NY 10001" +161632,AAA Batteries (4-pack),1,2.99,02/11/19 18:38,"472 Wilson St, San Francisco, CA 94016" +161633,USB-C Charging Cable,1,11.95,02/02/19 11:43,"202 Jackson St, San Francisco, CA 94016" +161634,34in Ultrawide Monitor,1,379.99,02/18/19 00:02,"445 11th St, San Francisco, CA 94016" +161635,27in 4K Gaming Monitor,1,389.99,02/25/19 16:06,"906 2nd St, Boston, MA 02215" +161636,USB-C Charging Cable,1,11.95,02/15/19 21:10,"413 8th St, Seattle, WA 98101" +161637,27in FHD Monitor,1,149.99,02/17/19 14:29,"371 North St, Seattle, WA 98101" +161638,USB-C Charging Cable,1,11.95,02/26/19 22:45,"658 Willow St, San Francisco, CA 94016" +161639,Wired Headphones,1,11.99,02/17/19 09:55,"844 Wilson St, Los Angeles, CA 90001" +161640,AAA Batteries (4-pack),1,2.99,02/09/19 12:42,"345 Cherry St, New York City, NY 10001" +161640,ThinkPad Laptop,1,999.99,02/09/19 12:42,"345 Cherry St, New York City, NY 10001" +161641,Flatscreen TV,1,300,02/26/19 16:59,"473 5th St, Los Angeles, CA 90001" +161642,Flatscreen TV,1,300,02/02/19 21:25,"258 Madison St, New York City, NY 10001" +161643,Bose SoundSport Headphones,1,99.99,02/05/19 13:22,"968 Highland St, Austin, TX 73301" +161644,Flatscreen TV,1,300,02/26/19 14:58,"398 6th St, Los Angeles, CA 90001" +161645,iPhone,1,700,02/25/19 10:25,"141 Main St, San Francisco, CA 94016" +161646,Bose SoundSport Headphones,1,99.99,02/20/19 14:18,"704 Elm St, Boston, MA 02215" +161647,USB-C Charging Cable,1,11.95,02/11/19 12:43,"418 Center St, New York City, NY 10001" +161648,Lightning Charging Cable,1,14.95,02/18/19 22:27,"899 Maple St, Atlanta, GA 30301" +161649,Lightning Charging Cable,1,14.95,02/15/19 09:04,"545 Cedar St, Seattle, WA 98101" +161650,iPhone,1,700,02/06/19 21:15,"728 Wilson St, New York City, NY 10001" +161651,27in FHD Monitor,1,149.99,02/25/19 14:45,"395 10th St, San Francisco, CA 94016" +161652,Apple Airpods Headphones,1,150,02/03/19 08:43,"37 5th St, Austin, TX 73301" +161653,USB-C Charging Cable,1,11.95,02/26/19 05:51,"934 Hickory St, San Francisco, CA 94016" +161654,AA Batteries (4-pack),1,3.84,02/07/19 12:20,"366 2nd St, San Francisco, CA 94016" +161655,Macbook Pro Laptop,1,1700,02/11/19 14:04,"285 Dogwood St, New York City, NY 10001" +161656,AA Batteries (4-pack),1,3.84,02/24/19 13:44,"859 Lakeview St, Boston, MA 02215" +161657,27in 4K Gaming Monitor,1,389.99,02/09/19 11:25,"549 Forest St, Los Angeles, CA 90001" +161658,27in 4K Gaming Monitor,1,389.99,02/24/19 18:57,"785 Main St, New York City, NY 10001" +161659,AA Batteries (4-pack),1,3.84,02/11/19 11:11,"271 Hickory St, San Francisco, CA 94016" +161660,Bose SoundSport Headphones,1,99.99,02/06/19 14:20,"902 7th St, Atlanta, GA 30301" +161661,Wired Headphones,1,11.99,02/17/19 18:15,"322 Lakeview St, Los Angeles, CA 90001" +161662,Lightning Charging Cable,1,14.95,02/13/19 11:21,"414 Chestnut St, San Francisco, CA 94016" +161663,Lightning Charging Cable,1,14.95,02/12/19 12:26,"678 Chestnut St, Los Angeles, CA 90001" +161664,USB-C Charging Cable,1,11.95,02/20/19 14:11,"995 Cherry St, San Francisco, CA 94016" +161665,27in FHD Monitor,1,149.99,02/10/19 13:34,"725 4th St, Seattle, WA 98101" +161666,Bose SoundSport Headphones,1,99.99,02/14/19 14:43,"209 Jefferson St, San Francisco, CA 94016" +161667,Apple Airpods Headphones,1,150,02/27/19 18:34,"660 Jackson St, Boston, MA 02215" +161668,AAA Batteries (4-pack),1,2.99,02/23/19 13:08,"887 13th St, Atlanta, GA 30301" +161669,Wired Headphones,1,11.99,02/01/19 14:00,"816 6th St, Los Angeles, CA 90001" +161670,AAA Batteries (4-pack),1,2.99,02/25/19 10:08,"164 4th St, San Francisco, CA 94016" +161671,Lightning Charging Cable,1,14.95,02/04/19 13:38,"10 West St, Los Angeles, CA 90001" +161672,Apple Airpods Headphones,1,150,02/22/19 16:59,"311 Lakeview St, Austin, TX 73301" +161673,27in 4K Gaming Monitor,1,389.99,02/19/19 08:24,"170 Forest St, San Francisco, CA 94016" +161674,USB-C Charging Cable,1,11.95,02/04/19 22:36,"683 2nd St, Atlanta, GA 30301" +161675,AAA Batteries (4-pack),1,2.99,02/08/19 18:28,"239 4th St, Los Angeles, CA 90001" +161676,AAA Batteries (4-pack),1,2.99,02/16/19 14:45,"789 West St, New York City, NY 10001" +161677,USB-C Charging Cable,1,11.95,02/09/19 15:35,"625 7th St, New York City, NY 10001" +161678,AA Batteries (4-pack),1,3.84,02/04/19 10:47,"842 Jackson St, Dallas, TX 75001" +161679,AA Batteries (4-pack),1,3.84,02/20/19 16:53,"938 Forest St, San Francisco, CA 94016" +161680,Bose SoundSport Headphones,1,99.99,02/26/19 21:55,"225 Madison St, Dallas, TX 75001" +161681,27in FHD Monitor,1,149.99,02/17/19 13:17,"648 South St, San Francisco, CA 94016" +161682,USB-C Charging Cable,1,11.95,02/17/19 14:26,"771 Willow St, Boston, MA 02215" +161683,Lightning Charging Cable,1,14.95,02/20/19 15:04,"212 North St, Portland, OR 97035" +161684,Lightning Charging Cable,2,14.95,02/23/19 17:11,"618 Meadow St, Dallas, TX 75001" +161685,27in FHD Monitor,1,149.99,02/18/19 16:26,"655 Forest St, San Francisco, CA 94016" +161686,AA Batteries (4-pack),1,3.84,02/22/19 12:26,"485 Meadow St, San Francisco, CA 94016" +161687,Lightning Charging Cable,1,14.95,02/12/19 12:32,"249 Spruce St, San Francisco, CA 94016" +161688,AA Batteries (4-pack),2,3.84,02/21/19 03:58,"270 Church St, Seattle, WA 98101" +161689,Apple Airpods Headphones,1,150,02/19/19 12:02,"567 Adams St, Atlanta, GA 30301" +161690,USB-C Charging Cable,1,11.95,02/17/19 15:55,"413 Adams St, San Francisco, CA 94016" +161691,USB-C Charging Cable,1,11.95,02/24/19 09:40,"349 4th St, Boston, MA 02215" +161692,Bose SoundSport Headphones,1,99.99,02/21/19 09:06,"965 South St, Seattle, WA 98101" +161693,AA Batteries (4-pack),2,3.84,02/14/19 14:51,"500 Maple St, San Francisco, CA 94016" +161694,Flatscreen TV,1,300,02/19/19 15:27,"563 Jefferson St, Boston, MA 02215" +161695,Flatscreen TV,1,300,02/12/19 08:14,"207 Hickory St, Los Angeles, CA 90001" +161696,USB-C Charging Cable,2,11.95,02/07/19 11:58,"643 Forest St, Los Angeles, CA 90001" +161697,USB-C Charging Cable,1,11.95,02/15/19 00:59,"748 North St, San Francisco, CA 94016" +161698,AA Batteries (4-pack),2,3.84,02/10/19 22:28,"577 Jefferson St, Los Angeles, CA 90001" +161699,Wired Headphones,1,11.99,02/13/19 11:11,"987 Cherry St, Los Angeles, CA 90001" +161700,Wired Headphones,1,11.99,02/10/19 13:20,"123 7th St, Boston, MA 02215" +161701,Google Phone,1,600,02/12/19 23:41,"283 Madison St, Los Angeles, CA 90001" +161702,Apple Airpods Headphones,1,150,02/15/19 13:29,"575 14th St, Atlanta, GA 30301" +161703,USB-C Charging Cable,1,11.95,02/06/19 10:46,"505 Church St, Boston, MA 02215" +161704,Flatscreen TV,1,300,02/21/19 14:37,"906 Jackson St, San Francisco, CA 94016" +161705,USB-C Charging Cable,1,11.95,02/16/19 19:31,"898 Ridge St, Atlanta, GA 30301" +161706,Apple Airpods Headphones,1,150,02/22/19 12:59,"821 Highland St, Boston, MA 02215" +161707,Lightning Charging Cable,2,14.95,02/21/19 20:29,"661 5th St, Boston, MA 02215" +161708,27in FHD Monitor,1,149.99,02/17/19 20:27,"380 Chestnut St, San Francisco, CA 94016" +161709,Lightning Charging Cable,1,14.95,02/28/19 15:40,"942 Adams St, Los Angeles, CA 90001" +161710,USB-C Charging Cable,3,11.95,02/14/19 18:26,"397 Walnut St, Boston, MA 02215" +161711,34in Ultrawide Monitor,1,379.99,02/23/19 13:26,"218 1st St, Atlanta, GA 30301" +161712,USB-C Charging Cable,1,11.95,02/19/19 20:47,"578 Johnson St, New York City, NY 10001" +161713,20in Monitor,1,109.99,02/10/19 01:37,"183 South St, San Francisco, CA 94016" +161714,AAA Batteries (4-pack),1,2.99,02/02/19 23:45,"134 Johnson St, Los Angeles, CA 90001" +161715,AA Batteries (4-pack),1,3.84,02/15/19 19:16,"613 Chestnut St, Austin, TX 73301" +161716,Lightning Charging Cable,1,14.95,02/26/19 14:13,"434 Johnson St, San Francisco, CA 94016" +161717,27in 4K Gaming Monitor,1,389.99,02/05/19 11:25,"620 7th St, Boston, MA 02215" +161718,ThinkPad Laptop,1,999.99,02/12/19 19:28,"595 West St, New York City, NY 10001" +161719,20in Monitor,1,109.99,02/12/19 17:51,"852 Jackson St, New York City, NY 10001" +161720,AAA Batteries (4-pack),1,2.99,02/08/19 13:13,"308 8th St, San Francisco, CA 94016" +161721,Lightning Charging Cable,1,14.95,02/15/19 13:12,"932 Maple St, Dallas, TX 75001" +161722,Lightning Charging Cable,1,14.95,02/09/19 15:35,"392 Forest St, Dallas, TX 75001" +161723,Lightning Charging Cable,1,14.95,02/10/19 14:40,"151 Maple St, Los Angeles, CA 90001" +161724,AAA Batteries (4-pack),5,2.99,02/08/19 23:50,"950 Lakeview St, Atlanta, GA 30301" +161725,Apple Airpods Headphones,1,150,02/06/19 17:10,"576 North St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +161726,Wired Headphones,1,11.99,02/12/19 17:32,"449 Walnut St, New York City, NY 10001" +161727,27in 4K Gaming Monitor,1,389.99,02/20/19 12:16,"593 Main St, Dallas, TX 75001" +161728,20in Monitor,1,109.99,02/25/19 20:51,"375 14th St, San Francisco, CA 94016" +161729,Wired Headphones,1,11.99,02/28/19 10:08,"285 4th St, New York City, NY 10001" +161730,ThinkPad Laptop,1,999.99,02/20/19 18:13,"765 Hill St, San Francisco, CA 94016" +161731,AA Batteries (4-pack),1,3.84,02/15/19 19:49,"854 9th St, Seattle, WA 98101" +161732,20in Monitor,1,109.99,02/26/19 20:12,"65 Ridge St, San Francisco, CA 94016" +161733,AA Batteries (4-pack),1,3.84,02/02/19 09:07,"369 Hill St, Los Angeles, CA 90001" +161734,AA Batteries (4-pack),1,3.84,02/15/19 20:28,"310 8th St, Boston, MA 02215" +161735,Apple Airpods Headphones,1,150,02/18/19 11:19,"551 8th St, San Francisco, CA 94016" +161736,iPhone,1,700,02/10/19 17:11,"659 Adams St, Austin, TX 73301" +161737,AAA Batteries (4-pack),2,2.99,02/16/19 14:24,"611 South St, New York City, NY 10001" +161738,Wired Headphones,1,11.99,02/16/19 16:15,"872 Highland St, Boston, MA 02215" +161739,Wired Headphones,1,11.99,02/26/19 16:33,"343 Johnson St, New York City, NY 10001" +161740,iPhone,1,700,02/19/19 18:59,"746 Adams St, New York City, NY 10001" +161741,Flatscreen TV,1,300,02/02/19 21:33,"166 North St, Boston, MA 02215" +161742,iPhone,1,700,02/16/19 19:37,"422 Elm St, Los Angeles, CA 90001" +161742,Apple Airpods Headphones,1,150,02/16/19 19:37,"422 Elm St, Los Angeles, CA 90001" +161742,27in 4K Gaming Monitor,1,389.99,02/16/19 19:37,"422 Elm St, Los Angeles, CA 90001" +161743,34in Ultrawide Monitor,1,379.99,02/25/19 12:57,"898 Wilson St, Dallas, TX 75001" +161744,27in FHD Monitor,1,149.99,02/11/19 10:57,"838 Cherry St, Boston, MA 02215" +161745,Wired Headphones,1,11.99,02/07/19 21:33,"400 Willow St, Los Angeles, CA 90001" +161746,Lightning Charging Cable,1,14.95,02/04/19 14:33,"123 Chestnut St, Los Angeles, CA 90001" +161747,USB-C Charging Cable,1,11.95,02/21/19 13:21,"152 Spruce St, Boston, MA 02215" +161748,27in 4K Gaming Monitor,1,389.99,02/14/19 18:50,"352 Maple St, Los Angeles, CA 90001" +161749,Lightning Charging Cable,1,14.95,02/01/19 11:33,"963 Cherry St, San Francisco, CA 94016" +161750,Lightning Charging Cable,1,14.95,02/10/19 11:23,"456 Park St, Seattle, WA 98101" +161751,USB-C Charging Cable,1,11.95,02/03/19 13:38,"894 7th St, San Francisco, CA 94016" +161752,34in Ultrawide Monitor,1,379.99,02/13/19 12:07,"411 1st St, Atlanta, GA 30301" +161753,USB-C Charging Cable,1,11.95,02/20/19 09:22,"780 Jefferson St, Atlanta, GA 30301" +161754,USB-C Charging Cable,1,11.95,02/09/19 14:38,"464 13th St, San Francisco, CA 94016" +161755,Apple Airpods Headphones,1,150,02/15/19 19:18,"9 13th St, Los Angeles, CA 90001" +161756,Vareebadd Phone,1,400,02/16/19 13:40,"976 Wilson St, Seattle, WA 98101" +161757,Wired Headphones,1,11.99,02/21/19 21:56,"46 Meadow St, Los Angeles, CA 90001" +161758,Bose SoundSport Headphones,1,99.99,02/24/19 23:40,"162 Elm St, New York City, NY 10001" +161759,Lightning Charging Cable,1,14.95,02/24/19 21:03,"355 1st St, San Francisco, CA 94016" +161760,USB-C Charging Cable,1,11.95,02/25/19 16:31,"732 Cherry St, Dallas, TX 75001" +161761,Wired Headphones,1,11.99,02/06/19 19:05,"669 Lakeview St, Los Angeles, CA 90001" +161761,Lightning Charging Cable,1,14.95,02/06/19 19:05,"669 Lakeview St, Los Angeles, CA 90001" +161762,Lightning Charging Cable,1,14.95,02/21/19 11:47,"55 Cherry St, Atlanta, GA 30301" +161763,Lightning Charging Cable,1,14.95,02/01/19 23:19,"728 Walnut St, Boston, MA 02215" +161764,Wired Headphones,1,11.99,02/15/19 12:39,"597 Wilson St, Boston, MA 02215" +161765,AAA Batteries (4-pack),1,2.99,02/02/19 16:58,"772 14th St, Atlanta, GA 30301" +161766,Wired Headphones,1,11.99,02/01/19 10:08,"230 Highland St, Dallas, TX 75001" +161767,iPhone,1,700,02/13/19 21:27,"883 1st St, San Francisco, CA 94016" +161768,Flatscreen TV,1,300,02/18/19 16:29,"769 Hickory St, San Francisco, CA 94016" +161769,27in 4K Gaming Monitor,1,389.99,02/22/19 12:37,"397 Highland St, Dallas, TX 75001" +161770,Macbook Pro Laptop,1,1700,02/07/19 11:10,"755 Adams St, Seattle, WA 98101" +161771,AA Batteries (4-pack),1,3.84,02/01/19 21:07,"161 Center St, Boston, MA 02215" +161772,AA Batteries (4-pack),2,3.84,02/11/19 20:17,"953 7th St, Seattle, WA 98101" +161773,34in Ultrawide Monitor,1,379.99,02/24/19 16:06,"978 11th St, Los Angeles, CA 90001" +161774,Wired Headphones,1,11.99,02/28/19 19:40,"937 Willow St, New York City, NY 10001" +161775,USB-C Charging Cable,2,11.95,02/03/19 16:34,"539 Park St, Atlanta, GA 30301" +161776,Google Phone,1,600,02/18/19 11:41,"507 Lakeview St, Los Angeles, CA 90001" +161776,USB-C Charging Cable,1,11.95,02/18/19 11:41,"507 Lakeview St, Los Angeles, CA 90001" +161777,Lightning Charging Cable,1,14.95,02/13/19 19:14,"374 Elm St, San Francisco, CA 94016" +161778,34in Ultrawide Monitor,1,379.99,02/27/19 13:35,"751 West St, San Francisco, CA 94016" +161779,20in Monitor,1,109.99,02/02/19 10:05,"383 10th St, Los Angeles, CA 90001" +161780,AAA Batteries (4-pack),1,2.99,02/12/19 22:02,"719 Lincoln St, San Francisco, CA 94016" +161781,27in FHD Monitor,1,149.99,02/21/19 12:22,"906 Lake St, Los Angeles, CA 90001" +161782,Bose SoundSport Headphones,1,99.99,02/15/19 14:27,"199 Cherry St, San Francisco, CA 94016" +161783,Wired Headphones,1,11.99,02/10/19 07:03,"208 9th St, Atlanta, GA 30301" +161784,Google Phone,1,600,02/11/19 07:02,"366 Spruce St, San Francisco, CA 94016" +161784,USB-C Charging Cable,1,11.95,02/11/19 07:02,"366 Spruce St, San Francisco, CA 94016" +161785,AAA Batteries (4-pack),2,2.99,02/04/19 11:49,"573 8th St, Los Angeles, CA 90001" +161786,AA Batteries (4-pack),2,3.84,02/10/19 08:50,"958 12th St, Austin, TX 73301" +161787,LG Dryer,1,600.0,02/28/19 18:11,"459 Dogwood St, Portland, OR 97035" +161788,Google Phone,1,600,02/23/19 16:22,"181 Meadow St, San Francisco, CA 94016" +161789,Apple Airpods Headphones,1,150,02/28/19 21:20,"422 Johnson St, Atlanta, GA 30301" +161790,Bose SoundSport Headphones,1,99.99,02/18/19 18:05,"734 Pine St, Seattle, WA 98101" +161791,Lightning Charging Cable,1,14.95,02/02/19 15:40,"320 Hill St, San Francisco, CA 94016" +161792,Apple Airpods Headphones,1,150,02/05/19 12:13,"684 Maple St, Atlanta, GA 30301" +161793,Wired Headphones,1,11.99,02/22/19 22:18,"899 4th St, San Francisco, CA 94016" +161794,AAA Batteries (4-pack),2,2.99,02/03/19 09:14,"482 Spruce St, Portland, ME 04101" +161795,Macbook Pro Laptop,1,1700,02/17/19 00:51,"941 Madison St, Seattle, WA 98101" +161796,AA Batteries (4-pack),1,3.84,02/21/19 11:12,"697 Elm St, Atlanta, GA 30301" +161797,AA Batteries (4-pack),2,3.84,02/18/19 14:53,"576 Lincoln St, San Francisco, CA 94016" +161798,USB-C Charging Cable,1,11.95,02/21/19 14:02,"351 Spruce St, San Francisco, CA 94016" +161799,Google Phone,1,600,02/23/19 12:08,"386 Church St, San Francisco, CA 94016" +161799,Wired Headphones,1,11.99,02/23/19 12:08,"386 Church St, San Francisco, CA 94016" +161800,AA Batteries (4-pack),1,3.84,02/08/19 11:50,"627 12th St, San Francisco, CA 94016" +161801,USB-C Charging Cable,1,11.95,02/15/19 19:36,"620 Hickory St, Boston, MA 02215" +161802,USB-C Charging Cable,1,11.95,02/21/19 20:06,"122 Pine St, Los Angeles, CA 90001" +161803,Apple Airpods Headphones,1,150,02/01/19 09:39,"657 West St, Dallas, TX 75001" +161803,AAA Batteries (4-pack),2,2.99,02/01/19 09:39,"657 West St, Dallas, TX 75001" +161804,27in 4K Gaming Monitor,1,389.99,02/03/19 17:17,"649 Meadow St, Boston, MA 02215" +161805,AAA Batteries (4-pack),1,2.99,02/09/19 19:52,"163 Washington St, Los Angeles, CA 90001" +161806,Lightning Charging Cable,1,14.95,02/24/19 14:40,"432 Chestnut St, Atlanta, GA 30301" +161807,AA Batteries (4-pack),1,3.84,02/09/19 13:20,"546 Lincoln St, Dallas, TX 75001" +161808,34in Ultrawide Monitor,1,379.99,02/26/19 12:15,"179 Center St, San Francisco, CA 94016" +161809,Wired Headphones,1,11.99,02/19/19 22:28,"219 Elm St, Dallas, TX 75001" +161810,27in FHD Monitor,1,149.99,02/06/19 08:43,"634 West St, San Francisco, CA 94016" +161811,AAA Batteries (4-pack),2,2.99,02/25/19 18:38,"745 Sunset St, San Francisco, CA 94016" +161812,iPhone,1,700,02/23/19 12:49,"751 Park St, Austin, TX 73301" +161813,Wired Headphones,1,11.99,02/12/19 19:46,"43 Chestnut St, Dallas, TX 75001" +161814,Wired Headphones,1,11.99,02/28/19 10:36,"212 Church St, San Francisco, CA 94016" +161815,AA Batteries (4-pack),2,3.84,02/02/19 04:11,"492 4th St, New York City, NY 10001" +161816,Bose SoundSport Headphones,1,99.99,02/28/19 18:38,"683 14th St, San Francisco, CA 94016" +161817,Google Phone,1,600,02/09/19 14:28,"207 11th St, San Francisco, CA 94016" +161818,Wired Headphones,1,11.99,02/11/19 10:22,"64 2nd St, Los Angeles, CA 90001" +161819,AA Batteries (4-pack),1,3.84,02/24/19 14:00,"665 Lake St, Atlanta, GA 30301" +161820,Wired Headphones,1,11.99,02/27/19 15:59,"284 Maple St, Portland, OR 97035" +161821,Macbook Pro Laptop,1,1700,02/10/19 20:16,"153 Walnut St, San Francisco, CA 94016" +161822,Lightning Charging Cable,1,14.95,02/20/19 17:06,"889 Hill St, Boston, MA 02215" +161823,Wired Headphones,2,11.99,02/03/19 20:51,"603 Jefferson St, Los Angeles, CA 90001" +161824,Bose SoundSport Headphones,1,99.99,02/21/19 12:46,"518 Spruce St, San Francisco, CA 94016" +161825,AA Batteries (4-pack),1,3.84,02/08/19 12:11,"846 Madison St, New York City, NY 10001" +161826,Apple Airpods Headphones,1,150,02/17/19 14:39,"596 Jefferson St, Portland, OR 97035" +161827,Apple Airpods Headphones,1,150,02/15/19 10:01,"79 Sunset St, New York City, NY 10001" +161828,LG Washing Machine,1,600.0,02/13/19 13:26,"469 Lincoln St, Portland, OR 97035" +161829,Bose SoundSport Headphones,1,99.99,02/19/19 11:28,"640 Park St, New York City, NY 10001" +161830,Lightning Charging Cable,1,14.95,02/16/19 22:38,"510 Sunset St, Seattle, WA 98101" +161831,Wired Headphones,1,11.99,02/06/19 02:02,"65 4th St, Los Angeles, CA 90001" +161832,Lightning Charging Cable,3,14.95,02/27/19 15:33,"619 Main St, New York City, NY 10001" +161833,Wired Headphones,1,11.99,02/11/19 19:14,"171 Walnut St, Seattle, WA 98101" +161834,Lightning Charging Cable,1,14.95,02/04/19 08:44,"881 5th St, San Francisco, CA 94016" +161835,Apple Airpods Headphones,1,150,02/13/19 14:17,"957 7th St, Boston, MA 02215" +161836,Macbook Pro Laptop,1,1700,02/07/19 14:41,"624 Lakeview St, San Francisco, CA 94016" +161837,Flatscreen TV,1,300,02/01/19 17:10,"202 West St, Los Angeles, CA 90001" +161838,20in Monitor,1,109.99,02/16/19 09:10,"299 Ridge St, San Francisco, CA 94016" +161839,Bose SoundSport Headphones,1,99.99,02/19/19 07:04,"981 West St, Boston, MA 02215" +161840,Lightning Charging Cable,1,14.95,02/10/19 18:08,"682 Hill St, Austin, TX 73301" +161841,AA Batteries (4-pack),1,3.84,02/03/19 11:36,"197 Maple St, Los Angeles, CA 90001" +161842,Wired Headphones,1,11.99,02/23/19 08:40,"687 Ridge St, Seattle, WA 98101" +161843,27in 4K Gaming Monitor,1,389.99,02/18/19 09:42,"248 7th St, San Francisco, CA 94016" +161844,ThinkPad Laptop,1,999.99,02/09/19 23:05,"58 Adams St, Atlanta, GA 30301" +161845,Wired Headphones,1,11.99,02/28/19 20:32,"268 Wilson St, San Francisco, CA 94016" +161846,Wired Headphones,1,11.99,02/05/19 07:14,"75 Walnut St, Portland, OR 97035" +161847,Bose SoundSport Headphones,1,99.99,02/18/19 10:16,"451 Hickory St, Austin, TX 73301" +161848,34in Ultrawide Monitor,1,379.99,02/24/19 12:40,"465 Jefferson St, Seattle, WA 98101" +161849,AA Batteries (4-pack),1,3.84,02/20/19 21:57,"764 North St, Portland, OR 97035" +161850,LG Washing Machine,1,600.0,02/21/19 21:41,"352 13th St, San Francisco, CA 94016" +161851,Lightning Charging Cable,2,14.95,02/04/19 18:36,"862 1st St, Atlanta, GA 30301" +161852,Bose SoundSport Headphones,1,99.99,02/04/19 07:59,"347 14th St, Boston, MA 02215" +161853,Wired Headphones,1,11.99,02/10/19 23:36,"515 13th St, San Francisco, CA 94016" +161854,Apple Airpods Headphones,1,150,02/05/19 13:40,"116 North St, Boston, MA 02215" +161855,Lightning Charging Cable,1,14.95,02/15/19 12:16,"459 Lincoln St, New York City, NY 10001" +161856,AA Batteries (4-pack),1,3.84,02/07/19 21:27,"673 River St, New York City, NY 10001" +161857,Google Phone,1,600,02/05/19 23:13,"545 Wilson St, San Francisco, CA 94016" +161858,iPhone,1,700,02/09/19 10:11,"31 Sunset St, Los Angeles, CA 90001" +161859,Wired Headphones,1,11.99,02/18/19 00:18,"652 10th St, Boston, MA 02215" +161860,Apple Airpods Headphones,1,150,02/11/19 20:48,"19 Willow St, Los Angeles, CA 90001" +161861,Google Phone,1,600,02/17/19 22:42,"975 West St, Los Angeles, CA 90001" +161861,Wired Headphones,1,11.99,02/17/19 22:42,"975 West St, Los Angeles, CA 90001" +161862,Apple Airpods Headphones,1,150,02/25/19 17:21,"391 Walnut St, Seattle, WA 98101" +161863,USB-C Charging Cable,1,11.95,02/28/19 16:37,"575 Jackson St, Austin, TX 73301" +161864,AA Batteries (4-pack),1,3.84,02/11/19 16:04,"376 Cedar St, Austin, TX 73301" +161865,Wired Headphones,1,11.99,02/16/19 19:52,"51 Lakeview St, Seattle, WA 98101" +161866,USB-C Charging Cable,1,11.95,02/12/19 13:14,"231 13th St, Seattle, WA 98101" +161867,USB-C Charging Cable,1,11.95,02/09/19 10:27,"479 North St, Dallas, TX 75001" +161868,AA Batteries (4-pack),1,3.84,02/28/19 19:23,"497 9th St, New York City, NY 10001" +161869,34in Ultrawide Monitor,1,379.99,02/04/19 13:43,"142 10th St, New York City, NY 10001" +161870,Lightning Charging Cable,1,14.95,02/03/19 08:53,"872 Hill St, Los Angeles, CA 90001" +161871,AA Batteries (4-pack),1,3.84,02/06/19 20:00,"767 Walnut St, Portland, OR 97035" +161872,Apple Airpods Headphones,1,150,02/10/19 01:36,"767 Lincoln St, Boston, MA 02215" +161873,Bose SoundSport Headphones,1,99.99,02/01/19 15:36,"727 Lake St, San Francisco, CA 94016" +161874,20in Monitor,1,109.99,02/27/19 13:27,"529 Willow St, Boston, MA 02215" +161875,USB-C Charging Cable,1,11.95,02/14/19 12:00,"470 Walnut St, Los Angeles, CA 90001" +161876,AAA Batteries (4-pack),1,2.99,02/06/19 07:50,"103 Dogwood St, Los Angeles, CA 90001" +161877,Wired Headphones,1,11.99,02/14/19 18:06,"593 Chestnut St, Boston, MA 02215" +161878,Apple Airpods Headphones,1,150,02/25/19 14:25,"435 Lakeview St, Portland, ME 04101" +161879,27in FHD Monitor,1,149.99,02/17/19 16:40,"618 Cherry St, New York City, NY 10001" +161880,Apple Airpods Headphones,1,150,02/12/19 09:31,"13 Elm St, Dallas, TX 75001" +161881,20in Monitor,1,109.99,02/05/19 17:58,"701 11th St, Dallas, TX 75001" +161882,AA Batteries (4-pack),3,3.84,02/04/19 11:35,"315 Wilson St, Los Angeles, CA 90001" +161883,Lightning Charging Cable,1,14.95,02/06/19 07:45,"646 Cherry St, Dallas, TX 75001" +161884,iPhone,1,700,02/26/19 06:46,"72 Madison St, Seattle, WA 98101" +161885,USB-C Charging Cable,1,11.95,02/01/19 22:24,"755 River St, Atlanta, GA 30301" +161886,Macbook Pro Laptop,1,1700,02/26/19 19:38,"989 Highland St, Dallas, TX 75001" +161887,iPhone,1,700,02/10/19 21:50,"254 8th St, Los Angeles, CA 90001" +161888,Lightning Charging Cable,1,14.95,02/09/19 05:30,"463 Cherry St, Austin, TX 73301" +161889,Flatscreen TV,1,300,02/12/19 13:37,"867 South St, Dallas, TX 75001" +161890,Wired Headphones,1,11.99,02/23/19 15:50,"361 Church St, Austin, TX 73301" +161891,Lightning Charging Cable,1,14.95,02/05/19 22:44,"620 2nd St, Los Angeles, CA 90001" +161892,Lightning Charging Cable,1,14.95,02/27/19 12:08,"623 13th St, San Francisco, CA 94016" +161893,27in 4K Gaming Monitor,1,389.99,02/12/19 16:45,"492 Church St, Atlanta, GA 30301" +161894,Wired Headphones,1,11.99,02/21/19 07:32,"195 6th St, San Francisco, CA 94016" +161895,Macbook Pro Laptop,1,1700,02/25/19 10:34,"337 Hill St, San Francisco, CA 94016" +161896,USB-C Charging Cable,1,11.95,02/06/19 10:52,"875 Adams St, Los Angeles, CA 90001" +161897,AAA Batteries (4-pack),2,2.99,02/02/19 20:04,"689 Forest St, Dallas, TX 75001" +161898,Macbook Pro Laptop,1,1700,02/22/19 10:54,"311 Park St, San Francisco, CA 94016" +161899,AAA Batteries (4-pack),1,2.99,02/12/19 16:07,"896 Jefferson St, Boston, MA 02215" +161900,Apple Airpods Headphones,1,150,02/14/19 11:55,"339 6th St, San Francisco, CA 94016" +161901,Vareebadd Phone,1,400,02/14/19 13:56,"652 Walnut St, San Francisco, CA 94016" +161902,27in 4K Gaming Monitor,1,389.99,02/09/19 21:42,"573 Wilson St, New York City, NY 10001" +161903,AAA Batteries (4-pack),2,2.99,02/14/19 20:52,"391 Ridge St, Atlanta, GA 30301" +161904,Flatscreen TV,1,300,02/20/19 17:47,"737 Lakeview St, San Francisco, CA 94016" +161905,34in Ultrawide Monitor,1,379.99,02/20/19 20:53,"889 Walnut St, Los Angeles, CA 90001" +161906,AAA Batteries (4-pack),2,2.99,02/07/19 18:42,"295 7th St, Atlanta, GA 30301" +161907,Wired Headphones,1,11.99,02/18/19 15:09,"895 Willow St, San Francisco, CA 94016" +161908,Lightning Charging Cable,1,14.95,02/14/19 12:22,"325 Adams St, Portland, ME 04101" +161909,USB-C Charging Cable,1,11.95,02/21/19 18:49,"672 Pine St, San Francisco, CA 94016" +161910,AA Batteries (4-pack),1,3.84,02/25/19 15:22,"114 Lake St, New York City, NY 10001" +161911,Lightning Charging Cable,2,14.95,02/01/19 16:51,"815 Lakeview St, Los Angeles, CA 90001" +161912,USB-C Charging Cable,1,11.95,02/09/19 16:03,"849 Park St, Boston, MA 02215" +161913,AA Batteries (4-pack),2,3.84,02/19/19 22:58,"906 11th St, Seattle, WA 98101" +161914,27in FHD Monitor,1,149.99,02/28/19 14:08,"96 11th St, Seattle, WA 98101" +161915,AAA Batteries (4-pack),1,2.99,02/19/19 15:01,"489 Spruce St, Los Angeles, CA 90001" +161916,20in Monitor,1,109.99,02/18/19 18:40,"599 Willow St, San Francisco, CA 94016" +161917,AAA Batteries (4-pack),1,2.99,02/23/19 12:15,"105 11th St, Austin, TX 73301" +161918,AA Batteries (4-pack),1,3.84,02/19/19 08:06,"353 Madison St, San Francisco, CA 94016" +161919,Apple Airpods Headphones,1,150,02/21/19 18:13,"163 Cedar St, Atlanta, GA 30301" +161920,Wired Headphones,1,11.99,02/15/19 01:07,"940 Forest St, New York City, NY 10001" +161921,27in 4K Gaming Monitor,1,389.99,02/02/19 12:04,"218 North St, New York City, NY 10001" +161922,Wired Headphones,1,11.99,02/28/19 14:18,"662 12th St, Seattle, WA 98101" +161923,Wired Headphones,1,11.99,02/06/19 10:24,"924 Hickory St, Seattle, WA 98101" +161924,USB-C Charging Cable,1,11.95,02/18/19 23:55,"758 Ridge St, New York City, NY 10001" +161925,Lightning Charging Cable,1,14.95,02/20/19 17:44,"422 Park St, San Francisco, CA 94016" +161926,Wired Headphones,1,11.99,02/04/19 11:45,"992 Center St, New York City, NY 10001" +161927,AA Batteries (4-pack),1,3.84,02/12/19 21:53,"677 4th St, Los Angeles, CA 90001" +161928,AAA Batteries (4-pack),2,2.99,02/06/19 17:07,"368 Dogwood St, Los Angeles, CA 90001" +161929,Google Phone,1,600,02/03/19 21:45,"221 12th St, Los Angeles, CA 90001" +161930,Wired Headphones,1,11.99,02/19/19 13:38,"646 Walnut St, Los Angeles, CA 90001" +161931,Apple Airpods Headphones,1,150,02/15/19 00:55,"313 Maple St, Boston, MA 02215" +161932,Google Phone,1,600,02/09/19 14:06,"660 Main St, San Francisco, CA 94016" +161933,27in FHD Monitor,1,149.99,02/13/19 19:13,"147 12th St, New York City, NY 10001" +161934,Vareebadd Phone,1,400,02/05/19 16:59,"31 Dogwood St, Atlanta, GA 30301" +161934,USB-C Charging Cable,2,11.95,02/05/19 16:59,"31 Dogwood St, Atlanta, GA 30301" +161935,27in FHD Monitor,1,149.99,02/17/19 21:51,"551 Highland St, Los Angeles, CA 90001" +161936,Wired Headphones,1,11.99,02/09/19 19:13,"111 8th St, Boston, MA 02215" +161936,Macbook Pro Laptop,1,1700,02/09/19 19:13,"111 8th St, Boston, MA 02215" +161937,Lightning Charging Cable,1,14.95,02/05/19 09:53,"645 12th St, Los Angeles, CA 90001" +161938,Apple Airpods Headphones,1,150,02/04/19 16:39,"11 13th St, San Francisco, CA 94016" +161939,USB-C Charging Cable,1,11.95,02/01/19 12:06,"899 Johnson St, Seattle, WA 98101" +161940,Google Phone,1,600,02/12/19 15:36,"227 9th St, San Francisco, CA 94016" +161941,USB-C Charging Cable,1,11.95,02/16/19 14:25,"488 Pine St, San Francisco, CA 94016" +161942,iPhone,1,700,02/01/19 22:48,"191 South St, Los Angeles, CA 90001" +161943,34in Ultrawide Monitor,1,379.99,02/25/19 23:33,"226 Jackson St, Los Angeles, CA 90001" +161944,Vareebadd Phone,1,400,02/20/19 17:30,"820 Cherry St, San Francisco, CA 94016" +161944,Wired Headphones,1,11.99,02/20/19 17:30,"820 Cherry St, San Francisco, CA 94016" +161945,Flatscreen TV,1,300,02/25/19 09:21,"873 River St, Dallas, TX 75001" +161946,AA Batteries (4-pack),2,3.84,02/20/19 22:02,"438 Wilson St, San Francisco, CA 94016" +161947,Flatscreen TV,1,300,02/23/19 19:37,"486 12th St, Atlanta, GA 30301" +161948,AAA Batteries (4-pack),5,2.99,02/20/19 16:06,"387 9th St, Los Angeles, CA 90001" +161949,USB-C Charging Cable,1,11.95,02/04/19 14:21,"441 9th St, Dallas, TX 75001" +161950,AAA Batteries (4-pack),1,2.99,02/03/19 19:47,"407 River St, Los Angeles, CA 90001" +161951,Lightning Charging Cable,1,14.95,02/09/19 11:07,"148 Sunset St, New York City, NY 10001" +161952,20in Monitor,1,109.99,02/14/19 21:19,"236 Madison St, Atlanta, GA 30301" +161953,USB-C Charging Cable,1,11.95,02/18/19 17:25,"125 Ridge St, Dallas, TX 75001" +161954,34in Ultrawide Monitor,1,379.99,02/19/19 10:12,"768 12th St, Portland, OR 97035" +161955,AA Batteries (4-pack),2,3.84,02/09/19 13:48,"967 Sunset St, Portland, ME 04101" +161956,Lightning Charging Cable,1,14.95,02/17/19 18:15,"635 4th St, Los Angeles, CA 90001" +161957,Wired Headphones,1,11.99,02/17/19 14:30,"926 Ridge St, Austin, TX 73301" +161957,Bose SoundSport Headphones,1,99.99,02/17/19 14:30,"926 Ridge St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +161958,Lightning Charging Cable,1,14.95,02/25/19 15:04,"452 6th St, Atlanta, GA 30301" +161959,Bose SoundSport Headphones,1,99.99,02/07/19 18:18,"558 Sunset St, Boston, MA 02215" +161960,AA Batteries (4-pack),1,3.84,02/13/19 13:04,"810 Church St, San Francisco, CA 94016" +161961,Lightning Charging Cable,1,14.95,02/10/19 04:51,"109 Jefferson St, Los Angeles, CA 90001" +161962,Macbook Pro Laptop,1,1700,02/18/19 03:24,"875 South St, New York City, NY 10001" +161963,Apple Airpods Headphones,1,150,02/26/19 14:21,"232 Lincoln St, Atlanta, GA 30301" +161964,ThinkPad Laptop,1,999.99,02/23/19 14:22,"864 Madison St, Los Angeles, CA 90001" +161965,Bose SoundSport Headphones,1,99.99,02/26/19 20:04,"540 5th St, Atlanta, GA 30301" +161966,20in Monitor,1,109.99,02/19/19 10:31,"305 Maple St, San Francisco, CA 94016" +161967,AAA Batteries (4-pack),1,2.99,02/10/19 07:30,"784 Ridge St, San Francisco, CA 94016" +161968,AAA Batteries (4-pack),3,2.99,02/04/19 11:52,"687 8th St, Portland, ME 04101" +161969,LG Dryer,1,600.0,02/09/19 22:16,"846 Washington St, Los Angeles, CA 90001" +161970,Bose SoundSport Headphones,1,99.99,02/23/19 12:58,"129 7th St, Los Angeles, CA 90001" +161971,27in FHD Monitor,1,149.99,02/03/19 16:17,"729 Main St, New York City, NY 10001" +161972,AA Batteries (4-pack),1,3.84,02/18/19 19:35,"146 Adams St, New York City, NY 10001" +161973,Lightning Charging Cable,3,14.95,02/14/19 13:06,"109 Sunset St, Austin, TX 73301" +161974,Flatscreen TV,1,300,02/25/19 15:18,"147 Center St, Los Angeles, CA 90001" +161975,USB-C Charging Cable,1,11.95,02/13/19 20:55,"542 Highland St, Atlanta, GA 30301" +161976,iPhone,1,700,02/21/19 12:48,"843 South St, Dallas, TX 75001" +161977,AAA Batteries (4-pack),1,2.99,02/28/19 08:40,"259 West St, Dallas, TX 75001" +161978,Bose SoundSport Headphones,1,99.99,02/24/19 09:39,"108 2nd St, Los Angeles, CA 90001" +161979,AAA Batteries (4-pack),1,2.99,02/09/19 11:31,"539 4th St, San Francisco, CA 94016" +161980,USB-C Charging Cable,1,11.95,02/19/19 23:34,"626 Lakeview St, Dallas, TX 75001" +161981,AAA Batteries (4-pack),1,2.99,02/02/19 10:50,"113 Walnut St, Los Angeles, CA 90001" +161982,Google Phone,1,600,02/24/19 11:19,"484 Hill St, Boston, MA 02215" +161983,AA Batteries (4-pack),1,3.84,02/24/19 06:29,"192 Park St, Dallas, TX 75001" +161984,Apple Airpods Headphones,1,150,02/23/19 21:58,"508 11th St, Seattle, WA 98101" +161985,USB-C Charging Cable,1,11.95,02/13/19 23:26,"107 Park St, Austin, TX 73301" +161986,Bose SoundSport Headphones,1,99.99,02/11/19 11:58,"463 Elm St, San Francisco, CA 94016" +161987,USB-C Charging Cable,1,11.95,02/15/19 20:13,"183 Main St, Atlanta, GA 30301" +161988,Wired Headphones,1,11.99,02/16/19 18:53,"572 7th St, Boston, MA 02215" +161989,AA Batteries (4-pack),1,3.84,02/15/19 11:57,"629 Wilson St, Los Angeles, CA 90001" +161990,AA Batteries (4-pack),1,3.84,02/07/19 05:46,"590 10th St, Atlanta, GA 30301" +161991,Bose SoundSport Headphones,1,99.99,02/18/19 19:25,"20 Hill St, Atlanta, GA 30301" +161992,Macbook Pro Laptop,1,1700,02/16/19 20:12,"685 1st St, San Francisco, CA 94016" +161993,AAA Batteries (4-pack),3,2.99,02/03/19 11:01,"55 Sunset St, New York City, NY 10001" +161994,Bose SoundSport Headphones,1,99.99,02/28/19 19:10,"340 6th St, Portland, OR 97035" +161995,Lightning Charging Cable,1,14.95,02/19/19 18:38,"383 Forest St, New York City, NY 10001" +161996,Apple Airpods Headphones,1,150,02/23/19 21:34,"59 12th St, New York City, NY 10001" +161997,Apple Airpods Headphones,1,150,02/10/19 22:16,"48 Center St, Los Angeles, CA 90001" +161998,Bose SoundSport Headphones,1,99.99,02/20/19 07:45,"405 14th St, Los Angeles, CA 90001" +161999,Apple Airpods Headphones,1,150,02/19/19 03:54,"686 Dogwood St, Boston, MA 02215" +162000,ThinkPad Laptop,1,999.99,02/25/19 17:03,"664 West St, Los Angeles, CA 90001" +162001,Wired Headphones,1,11.99,02/25/19 15:23,"652 Hill St, Austin, TX 73301" +162002,LG Washing Machine,1,600.0,02/16/19 13:39,"239 Adams St, Austin, TX 73301" +162003,AAA Batteries (4-pack),1,2.99,02/09/19 11:27,"133 Chestnut St, Boston, MA 02215" +162004,34in Ultrawide Monitor,1,379.99,02/21/19 11:41,"276 Chestnut St, Los Angeles, CA 90001" +162005,AA Batteries (4-pack),1,3.84,02/04/19 12:48,"597 10th St, Dallas, TX 75001" +162006,Macbook Pro Laptop,1,1700,02/11/19 10:05,"540 5th St, Boston, MA 02215" +162007,Lightning Charging Cable,1,14.95,02/15/19 18:37,"906 Church St, Los Angeles, CA 90001" +162008,AA Batteries (4-pack),2,3.84,02/15/19 07:26,"733 Willow St, San Francisco, CA 94016" +162009,Lightning Charging Cable,1,14.95,02/04/19 19:31,"187 11th St, Los Angeles, CA 90001" +162010,Bose SoundSport Headphones,1,99.99,02/09/19 20:05,"931 Jefferson St, Los Angeles, CA 90001" +162011,Wired Headphones,1,11.99,02/16/19 10:23,"694 Cedar St, San Francisco, CA 94016" +162012,27in 4K Gaming Monitor,1,389.99,02/22/19 13:45,"586 Main St, Seattle, WA 98101" +162013,27in 4K Gaming Monitor,1,389.99,02/08/19 13:47,"893 Jackson St, Boston, MA 02215" +162014,Macbook Pro Laptop,1,1700,02/01/19 11:52,"870 5th St, Boston, MA 02215" +162015,Apple Airpods Headphones,1,150,02/24/19 19:32,"396 12th St, Atlanta, GA 30301" +162016,Lightning Charging Cable,1,14.95,02/12/19 06:05,"149 River St, Los Angeles, CA 90001" +162017,20in Monitor,1,109.99,02/04/19 22:25,"372 8th St, Portland, OR 97035" +162018,Lightning Charging Cable,1,14.95,02/28/19 17:47,"76 Walnut St, San Francisco, CA 94016" +162019,AA Batteries (4-pack),1,3.84,02/03/19 20:13,"993 Elm St, Portland, OR 97035" +162020,Google Phone,1,600,02/16/19 14:08,"59 Cedar St, Dallas, TX 75001" +162021,Wired Headphones,1,11.99,02/01/19 20:27,"279 2nd St, San Francisco, CA 94016" +162022,USB-C Charging Cable,1,11.95,02/01/19 20:30,"493 Park St, New York City, NY 10001" +162023,AAA Batteries (4-pack),1,2.99,02/02/19 20:45,"764 13th St, Boston, MA 02215" +162024,AA Batteries (4-pack),2,3.84,02/01/19 19:19,"384 2nd St, Boston, MA 02215" +162025,Lightning Charging Cable,1,14.95,02/17/19 23:05,"781 Lake St, San Francisco, CA 94016" +162026,Wired Headphones,1,11.99,02/17/19 18:03,"819 Madison St, Seattle, WA 98101" +162027,Bose SoundSport Headphones,1,99.99,02/22/19 08:58,"118 Lincoln St, Portland, OR 97035" +162028,Apple Airpods Headphones,1,150,02/03/19 10:24,"565 Main St, San Francisco, CA 94016" +162029,AAA Batteries (4-pack),1,2.99,02/27/19 20:41,"864 Pine St, Portland, OR 97035" +162030,AA Batteries (4-pack),1,3.84,02/03/19 19:48,"592 5th St, Dallas, TX 75001" +162031,AAA Batteries (4-pack),2,2.99,02/02/19 10:46,"459 Hill St, Atlanta, GA 30301" +162032,AA Batteries (4-pack),2,3.84,02/03/19 16:00,"722 Highland St, Seattle, WA 98101" +162033,Google Phone,1,600,02/27/19 11:35,"470 Church St, Boston, MA 02215" +162034,Apple Airpods Headphones,1,150,02/23/19 06:55,"436 11th St, Los Angeles, CA 90001" +162035,Apple Airpods Headphones,1,150,02/28/19 16:15,"116 Hill St, San Francisco, CA 94016" +162036,ThinkPad Laptop,1,999.99,02/09/19 13:25,"765 South St, Dallas, TX 75001" +162036,AA Batteries (4-pack),1,3.84,02/09/19 13:25,"765 South St, Dallas, TX 75001" +162037,Flatscreen TV,1,300,02/27/19 09:05,"636 2nd St, San Francisco, CA 94016" +162038,Wired Headphones,1,11.99,02/05/19 14:18,"453 Walnut St, Los Angeles, CA 90001" +162039,Wired Headphones,1,11.99,02/20/19 16:13,"663 Madison St, Dallas, TX 75001" +162040,AA Batteries (4-pack),1,3.84,02/22/19 20:11,"420 Lincoln St, San Francisco, CA 94016" +162041,20in Monitor,1,109.99,02/07/19 15:21,"908 4th St, Boston, MA 02215" +162042,Apple Airpods Headphones,1,150,02/11/19 14:48,"69 Pine St, Portland, OR 97035" +162043,USB-C Charging Cable,1,11.95,02/03/19 20:47,"228 12th St, New York City, NY 10001" +162044,Lightning Charging Cable,1,14.95,02/09/19 15:35,"352 10th St, Los Angeles, CA 90001" +162045,AAA Batteries (4-pack),1,2.99,02/08/19 15:19,"872 14th St, Los Angeles, CA 90001" +162046,Wired Headphones,1,11.99,02/06/19 05:49,"17 Forest St, Portland, OR 97035" +162046,Vareebadd Phone,1,400,02/06/19 05:49,"17 Forest St, Portland, OR 97035" +162047,AAA Batteries (4-pack),1,2.99,02/21/19 12:27,"222 Washington St, San Francisco, CA 94016" +162048,USB-C Charging Cable,1,11.95,02/03/19 16:51,"853 Elm St, Los Angeles, CA 90001" +162049,27in FHD Monitor,1,149.99,02/16/19 15:21,"941 6th St, San Francisco, CA 94016" +162049,USB-C Charging Cable,1,11.95,02/16/19 15:21,"941 6th St, San Francisco, CA 94016" +162050,LG Washing Machine,1,600.0,02/23/19 09:55,"963 Dogwood St, Austin, TX 73301" +162051,Flatscreen TV,1,300,02/28/19 05:59,"582 Maple St, Dallas, TX 75001" +162052,Apple Airpods Headphones,1,150,02/07/19 16:27,"673 West St, Atlanta, GA 30301" +162053,Wired Headphones,1,11.99,02/08/19 11:41,"223 Jefferson St, Portland, OR 97035" +162054,Google Phone,1,600,02/27/19 19:13,"473 Maple St, Los Angeles, CA 90001" +162055,AAA Batteries (4-pack),1,2.99,02/03/19 19:38,"217 1st St, San Francisco, CA 94016" +162056,AA Batteries (4-pack),4,3.84,02/17/19 15:22,"442 Forest St, Boston, MA 02215" +162056,AA Batteries (4-pack),2,3.84,02/17/19 15:22,"442 Forest St, Boston, MA 02215" +162057,Bose SoundSport Headphones,1,99.99,02/13/19 13:10,"845 Ridge St, San Francisco, CA 94016" +162058,Apple Airpods Headphones,1,150,02/12/19 18:33,"592 Adams St, Austin, TX 73301" +162059,AA Batteries (4-pack),2,3.84,02/13/19 21:15,"64 Willow St, Seattle, WA 98101" +162060,USB-C Charging Cable,1,11.95,02/18/19 01:27,"623 Center St, Atlanta, GA 30301" +162061,LG Dryer,1,600.0,02/19/19 15:29,"398 Lake St, San Francisco, CA 94016" +162062,Macbook Pro Laptop,1,1700,02/17/19 18:00,"161 10th St, Los Angeles, CA 90001" +162063,Wired Headphones,1,11.99,02/07/19 22:01,"647 South St, Dallas, TX 75001" +162064,iPhone,1,700,02/22/19 21:32,"3 Forest St, Atlanta, GA 30301" +162064,Flatscreen TV,1,300,02/22/19 21:32,"3 Forest St, Atlanta, GA 30301" +162065,20in Monitor,1,109.99,02/14/19 18:55,"238 Cherry St, Atlanta, GA 30301" +162066,Flatscreen TV,1,300,02/17/19 13:03,"286 Jackson St, Los Angeles, CA 90001" +162067,AA Batteries (4-pack),1,3.84,02/27/19 15:13,"258 Lake St, Seattle, WA 98101" +162068,USB-C Charging Cable,1,11.95,02/22/19 19:36,"446 West St, New York City, NY 10001" +162069,Bose SoundSport Headphones,1,99.99,02/01/19 15:35,"927 8th St, Los Angeles, CA 90001" +162070,USB-C Charging Cable,1,11.95,02/28/19 20:31,"855 Johnson St, Boston, MA 02215" +162071,34in Ultrawide Monitor,1,379.99,02/15/19 16:37,"352 Spruce St, San Francisco, CA 94016" +162072,27in FHD Monitor,1,149.99,02/11/19 15:20,"43 Dogwood St, Los Angeles, CA 90001" +162073,Wired Headphones,1,11.99,02/20/19 16:52,"264 Jackson St, Seattle, WA 98101" +162073,Lightning Charging Cable,1,14.95,02/20/19 16:52,"264 Jackson St, Seattle, WA 98101" +162074,AA Batteries (4-pack),1,3.84,02/11/19 10:31,"385 West St, San Francisco, CA 94016" +162075,Macbook Pro Laptop,1,1700,02/07/19 18:26,"285 13th St, Los Angeles, CA 90001" +162076,Wired Headphones,2,11.99,02/23/19 14:17,"242 4th St, Austin, TX 73301" +162077,Wired Headphones,1,11.99,02/06/19 21:48,"67 Madison St, San Francisco, CA 94016" +162078,AA Batteries (4-pack),1,3.84,02/23/19 07:54,"159 Chestnut St, Dallas, TX 75001" +162079,Bose SoundSport Headphones,1,99.99,02/21/19 09:50,"405 North St, Dallas, TX 75001" +162080,AA Batteries (4-pack),1,3.84,02/06/19 21:11,"357 Willow St, Los Angeles, CA 90001" +162081,AA Batteries (4-pack),1,3.84,03/01/19 01:09,"219 Washington St, New York City, NY 10001" +162082,Wired Headphones,1,11.99,02/11/19 11:42,"719 South St, Austin, TX 73301" +162083,Lightning Charging Cable,1,14.95,02/19/19 12:17,"470 Willow St, Los Angeles, CA 90001" +162084,AAA Batteries (4-pack),3,2.99,02/16/19 12:01,"366 Jefferson St, Los Angeles, CA 90001" +162085,34in Ultrawide Monitor,1,379.99,02/14/19 09:16,"920 Center St, Boston, MA 02215" +162086,iPhone,1,700,02/17/19 10:20,"900 Cedar St, San Francisco, CA 94016" +162086,Lightning Charging Cable,1,14.95,02/17/19 10:20,"900 Cedar St, San Francisco, CA 94016" +162087,Apple Airpods Headphones,1,150,02/25/19 18:18,"837 Forest St, Atlanta, GA 30301" +162088,Macbook Pro Laptop,1,1700,02/18/19 17:41,"282 South St, Dallas, TX 75001" +162089,Lightning Charging Cable,1,14.95,02/19/19 14:31,"486 Jefferson St, Los Angeles, CA 90001" +162090,27in 4K Gaming Monitor,1,389.99,02/24/19 09:30,"769 Sunset St, Dallas, TX 75001" +162091,AAA Batteries (4-pack),1,2.99,02/26/19 02:49,"404 10th St, Seattle, WA 98101" +162092,20in Monitor,1,109.99,02/13/19 21:12,"589 Hickory St, Los Angeles, CA 90001" +162093,AA Batteries (4-pack),1,3.84,02/16/19 18:39,"667 South St, Atlanta, GA 30301" +162094,Google Phone,1,600,02/06/19 21:22,"790 Highland St, Seattle, WA 98101" +162095,27in FHD Monitor,1,149.99,02/08/19 22:15,"350 11th St, San Francisco, CA 94016" +162096,Apple Airpods Headphones,1,150,02/17/19 14:47,"583 Meadow St, Portland, OR 97035" +162096,Lightning Charging Cable,1,14.95,02/17/19 14:47,"583 Meadow St, Portland, OR 97035" +162097,Vareebadd Phone,1,400,02/13/19 11:35,"744 Sunset St, New York City, NY 10001" +162098,34in Ultrawide Monitor,1,379.99,02/07/19 13:33,"127 Johnson St, Boston, MA 02215" +162099,Apple Airpods Headphones,1,150,02/27/19 12:32,"590 Lakeview St, San Francisco, CA 94016" +162100,Bose SoundSport Headphones,1,99.99,02/26/19 23:01,"909 1st St, Atlanta, GA 30301" +162101,Lightning Charging Cable,1,14.95,02/15/19 22:21,"465 Pine St, San Francisco, CA 94016" +162102,AA Batteries (4-pack),2,3.84,02/23/19 09:23,"476 Johnson St, San Francisco, CA 94016" +162103,AAA Batteries (4-pack),1,2.99,02/05/19 21:06,"374 Forest St, San Francisco, CA 94016" +162104,Wired Headphones,1,11.99,02/22/19 08:20,"657 Lakeview St, New York City, NY 10001" +162105,27in FHD Monitor,1,149.99,02/08/19 18:13,"806 Wilson St, San Francisco, CA 94016" +162106,34in Ultrawide Monitor,1,379.99,02/28/19 07:25,"480 Jefferson St, Austin, TX 73301" +162107,Wired Headphones,2,11.99,02/01/19 12:24,"5 Johnson St, San Francisco, CA 94016" +162108,iPhone,1,700,02/27/19 12:19,"174 Sunset St, San Francisco, CA 94016" +162109,Apple Airpods Headphones,1,150,02/05/19 22:57,"943 2nd St, Los Angeles, CA 90001" +162110,Wired Headphones,1,11.99,02/17/19 07:47,"431 Hill St, Dallas, TX 75001" +162111,AAA Batteries (4-pack),1,2.99,02/20/19 10:43,"140 Cedar St, Dallas, TX 75001" +162112,AA Batteries (4-pack),1,3.84,02/05/19 12:06,"313 Main St, San Francisco, CA 94016" +162113,Apple Airpods Headphones,1,150,02/23/19 11:15,"901 1st St, Seattle, WA 98101" +162114,USB-C Charging Cable,1,11.95,02/05/19 15:29,"933 Hickory St, San Francisco, CA 94016" +162115,USB-C Charging Cable,1,11.95,02/21/19 13:04,"358 13th St, Boston, MA 02215" +162116,Lightning Charging Cable,1,14.95,02/19/19 20:52,"238 11th St, San Francisco, CA 94016" +162117,20in Monitor,1,109.99,02/10/19 13:55,"845 Chestnut St, Los Angeles, CA 90001" +162118,Apple Airpods Headphones,1,150,02/13/19 13:31,"180 Maple St, Austin, TX 73301" +162119,Wired Headphones,1,11.99,02/19/19 01:35,"999 Meadow St, Dallas, TX 75001" +162120,Google Phone,1,600,02/01/19 11:31,"315 11th St, Los Angeles, CA 90001" +162121,Apple Airpods Headphones,1,150,02/14/19 11:50,"940 Hill St, San Francisco, CA 94016" +162122,27in FHD Monitor,1,149.99,02/01/19 12:21,"21 1st St, San Francisco, CA 94016" +162123,AA Batteries (4-pack),1,3.84,02/14/19 19:30,"605 1st St, Portland, OR 97035" +162124,Lightning Charging Cable,1,14.95,02/25/19 22:18,"594 Jackson St, Atlanta, GA 30301" +162125,USB-C Charging Cable,1,11.95,02/23/19 16:15,"382 Pine St, San Francisco, CA 94016" +162126,20in Monitor,1,109.99,02/15/19 09:07,"346 Highland St, San Francisco, CA 94016" +162127,AAA Batteries (4-pack),2,2.99,02/20/19 17:16,"147 Willow St, Los Angeles, CA 90001" +162128,AA Batteries (4-pack),1,3.84,02/06/19 11:31,"211 10th St, Los Angeles, CA 90001" +162129,Wired Headphones,1,11.99,02/23/19 10:11,"530 2nd St, Boston, MA 02215" +162130,AA Batteries (4-pack),4,3.84,02/01/19 20:24,"364 14th St, Dallas, TX 75001" +162131,Google Phone,1,600,02/18/19 13:09,"147 Meadow St, Los Angeles, CA 90001" +162132,Wired Headphones,1,11.99,02/03/19 17:35,"203 Center St, San Francisco, CA 94016" +162133,Apple Airpods Headphones,2,150,02/26/19 20:40,"808 Center St, Atlanta, GA 30301" +162134,USB-C Charging Cable,1,11.95,02/06/19 12:03,"942 Jackson St, Los Angeles, CA 90001" +162135,Lightning Charging Cable,1,14.95,02/21/19 14:04,"641 Hickory St, Portland, ME 04101" +162136,AA Batteries (4-pack),1,3.84,02/13/19 20:43,"855 Jefferson St, New York City, NY 10001" +162137,Bose SoundSport Headphones,1,99.99,02/06/19 10:51,"871 Ridge St, New York City, NY 10001" +162138,Lightning Charging Cable,1,14.95,02/03/19 17:16,"657 4th St, Boston, MA 02215" +162139,27in FHD Monitor,1,149.99,02/14/19 21:22,"665 Walnut St, Dallas, TX 75001" +162140,Lightning Charging Cable,1,14.95,02/26/19 17:31,"724 Wilson St, New York City, NY 10001" +162141,Bose SoundSport Headphones,1,99.99,02/15/19 16:26,"939 8th St, New York City, NY 10001" +162142,USB-C Charging Cable,1,11.95,02/22/19 22:02,"456 Hickory St, San Francisco, CA 94016" +162143,AA Batteries (4-pack),2,3.84,02/17/19 16:22,"376 North St, San Francisco, CA 94016" +162144,Wired Headphones,2,11.99,02/02/19 08:02,"915 Jefferson St, Atlanta, GA 30301" +162145,AAA Batteries (4-pack),1,2.99,02/03/19 18:26,"731 7th St, San Francisco, CA 94016" +162146,AAA Batteries (4-pack),4,2.99,02/07/19 10:09,"760 Johnson St, Seattle, WA 98101" +162147,Lightning Charging Cable,1,14.95,02/22/19 07:19,"600 Main St, Portland, OR 97035" +162148,AA Batteries (4-pack),1,3.84,02/27/19 12:38,"486 Jackson St, Portland, ME 04101" +162149,Apple Airpods Headphones,1,150,02/09/19 16:00,"695 South St, Austin, TX 73301" +162150,Wired Headphones,1,11.99,02/06/19 09:25,"618 Park St, New York City, NY 10001" +162151,27in FHD Monitor,1,149.99,02/20/19 19:58,"552 2nd St, Portland, OR 97035" +162152,AAA Batteries (4-pack),1,2.99,02/06/19 09:49,"844 2nd St, Los Angeles, CA 90001" +162153,Apple Airpods Headphones,1,150,02/04/19 13:48,"393 Cedar St, Atlanta, GA 30301" +162154,Apple Airpods Headphones,1,150,02/01/19 18:49,"519 South St, Los Angeles, CA 90001" +162155,Wired Headphones,2,11.99,02/08/19 10:01,"474 9th St, Los Angeles, CA 90001" +162156,Lightning Charging Cable,1,14.95,02/01/19 22:47,"335 Spruce St, Dallas, TX 75001" +162157,AA Batteries (4-pack),1,3.84,02/04/19 20:18,"121 Jefferson St, San Francisco, CA 94016" +162158,AA Batteries (4-pack),2,3.84,02/25/19 14:14,"796 Lakeview St, Atlanta, GA 30301" +162159,Google Phone,1,600,02/01/19 12:41,"522 Washington St, Los Angeles, CA 90001" +162160,34in Ultrawide Monitor,1,379.99,02/20/19 07:28,"395 7th St, Portland, OR 97035" +162161,Macbook Pro Laptop,1,1700,02/21/19 16:33,"821 Forest St, Boston, MA 02215" +162162,Wired Headphones,1,11.99,02/16/19 10:08,"186 Sunset St, San Francisco, CA 94016" +162163,Apple Airpods Headphones,1,150,02/18/19 19:36,"337 South St, Los Angeles, CA 90001" +162164,Wired Headphones,1,11.99,02/13/19 13:21,"536 Johnson St, Los Angeles, CA 90001" +162165,Apple Airpods Headphones,1,150,02/11/19 19:56,"626 5th St, San Francisco, CA 94016" +162166,Lightning Charging Cable,1,14.95,02/18/19 14:12,"838 Forest St, Dallas, TX 75001" +162167,AA Batteries (4-pack),1,3.84,02/28/19 17:01,"411 Ridge St, Los Angeles, CA 90001" +162168,USB-C Charging Cable,1,11.95,02/05/19 14:10,"963 River St, New York City, NY 10001" +162169,AAA Batteries (4-pack),3,2.99,02/17/19 14:27,"862 Elm St, New York City, NY 10001" +162170,Bose SoundSport Headphones,1,99.99,02/25/19 09:18,"428 Lake St, Seattle, WA 98101" +162171,Bose SoundSport Headphones,1,99.99,02/19/19 20:32,"890 Wilson St, Boston, MA 02215" +162172,34in Ultrawide Monitor,1,379.99,02/11/19 16:34,"184 4th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +162173,AA Batteries (4-pack),1,3.84,02/12/19 21:10,"301 Cherry St, New York City, NY 10001" +162174,ThinkPad Laptop,1,999.99,02/12/19 19:18,"868 Jackson St, Los Angeles, CA 90001" +162174,34in Ultrawide Monitor,1,379.99,02/12/19 19:18,"868 Jackson St, Los Angeles, CA 90001" +162175,USB-C Charging Cable,1,11.95,02/24/19 16:06,"783 7th St, Los Angeles, CA 90001" +162176,Vareebadd Phone,1,400,02/17/19 19:48,"945 Forest St, Dallas, TX 75001" +162177,Apple Airpods Headphones,1,150,02/05/19 09:36,"39 Walnut St, San Francisco, CA 94016" +162178,Flatscreen TV,1,300,02/13/19 07:24,"268 11th St, San Francisco, CA 94016" +162179,Bose SoundSport Headphones,1,99.99,02/24/19 14:19,"901 Chestnut St, San Francisco, CA 94016" +162180,27in 4K Gaming Monitor,1,389.99,02/06/19 14:18,"129 Wilson St, New York City, NY 10001" +162181,27in FHD Monitor,1,149.99,02/26/19 03:37,"168 Cherry St, Boston, MA 02215" +162182,AA Batteries (4-pack),1,3.84,02/27/19 08:03,"300 Dogwood St, San Francisco, CA 94016" +162183,Apple Airpods Headphones,1,150,02/24/19 20:36,"812 2nd St, Los Angeles, CA 90001" +162184,20in Monitor,1,109.99,02/04/19 10:37,"41 Chestnut St, Dallas, TX 75001" +162185,Wired Headphones,1,11.99,02/01/19 13:07,"898 Lincoln St, Seattle, WA 98101" +162186,Flatscreen TV,1,300,02/11/19 23:27,"700 River St, Boston, MA 02215" +162187,AAA Batteries (4-pack),1,2.99,02/22/19 22:17,"848 Jackson St, Atlanta, GA 30301" +162188,Apple Airpods Headphones,1,150,02/07/19 20:38,"239 South St, Dallas, TX 75001" +162189,Lightning Charging Cable,1,14.95,02/09/19 12:59,"567 10th St, San Francisco, CA 94016" +162190,Apple Airpods Headphones,1,150,02/27/19 12:26,"207 6th St, Dallas, TX 75001" +162191,USB-C Charging Cable,1,11.95,02/19/19 08:28,"648 5th St, Dallas, TX 75001" +162192,AA Batteries (4-pack),1,3.84,02/07/19 00:00,"139 Lakeview St, Seattle, WA 98101" +162193,Wired Headphones,1,11.99,02/10/19 14:02,"81 Cedar St, San Francisco, CA 94016" +162194,34in Ultrawide Monitor,1,379.99,02/04/19 07:50,"44 5th St, Portland, OR 97035" +162195,Apple Airpods Headphones,1,150,02/19/19 10:03,"361 Elm St, San Francisco, CA 94016" +162196,20in Monitor,1,109.99,02/03/19 08:43,"710 Dogwood St, Portland, ME 04101" +162197,AAA Batteries (4-pack),1,2.99,02/16/19 15:45,"664 Hickory St, San Francisco, CA 94016" +162198,Apple Airpods Headphones,1,150,02/16/19 16:08,"341 13th St, Atlanta, GA 30301" +162199,Wired Headphones,1,11.99,02/21/19 08:10,"388 River St, Los Angeles, CA 90001" +162200,AA Batteries (4-pack),1,3.84,02/27/19 12:21,"501 11th St, Los Angeles, CA 90001" +162201,Apple Airpods Headphones,1,150,02/09/19 09:01,"240 Sunset St, Portland, OR 97035" +162202,iPhone,1,700,02/24/19 11:43,"415 2nd St, New York City, NY 10001" +162202,Wired Headphones,1,11.99,02/24/19 11:43,"415 2nd St, New York City, NY 10001" +162203,LG Washing Machine,1,600.0,02/08/19 12:13,"57 9th St, San Francisco, CA 94016" +162204,Lightning Charging Cable,1,14.95,02/09/19 04:40,"677 Ridge St, New York City, NY 10001" +162205,Apple Airpods Headphones,1,150,02/08/19 15:30,"55 4th St, Boston, MA 02215" +162206,Macbook Pro Laptop,1,1700,02/17/19 16:54,"764 Chestnut St, San Francisco, CA 94016" +162207,Flatscreen TV,1,300,02/09/19 03:14,"512 10th St, Atlanta, GA 30301" +162208,AAA Batteries (4-pack),1,2.99,02/06/19 16:34,"531 Willow St, San Francisco, CA 94016" +162209,Bose SoundSport Headphones,1,99.99,02/22/19 08:20,"399 Meadow St, Dallas, TX 75001" +162210,AA Batteries (4-pack),1,3.84,02/16/19 11:30,"134 Maple St, Atlanta, GA 30301" +162211,Apple Airpods Headphones,1,150,02/19/19 08:17,"212 Walnut St, Portland, ME 04101" +162212,Google Phone,1,600,02/26/19 21:22,"130 11th St, New York City, NY 10001" +162212,Wired Headphones,1,11.99,02/26/19 21:22,"130 11th St, New York City, NY 10001" +162213,AAA Batteries (4-pack),4,2.99,02/02/19 22:53,"561 Park St, Boston, MA 02215" +162214,AAA Batteries (4-pack),3,2.99,02/04/19 10:38,"704 Lakeview St, Boston, MA 02215" +162215,USB-C Charging Cable,1,11.95,02/19/19 12:54,"330 8th St, Los Angeles, CA 90001" +162216,AAA Batteries (4-pack),1,2.99,02/28/19 21:33,"219 West St, Los Angeles, CA 90001" +162217,Bose SoundSport Headphones,1,99.99,02/18/19 09:08,"455 Sunset St, Los Angeles, CA 90001" +162218,AAA Batteries (4-pack),1,2.99,02/15/19 15:13,"175 Adams St, San Francisco, CA 94016" +162219,27in 4K Gaming Monitor,1,389.99,02/25/19 18:08,"618 10th St, New York City, NY 10001" +162220,AA Batteries (4-pack),1,3.84,02/09/19 18:08,"796 West St, Los Angeles, CA 90001" +162221,ThinkPad Laptop,1,999.99,02/06/19 12:17,"48 Jefferson St, San Francisco, CA 94016" +162222,AA Batteries (4-pack),1,3.84,02/28/19 14:50,"347 10th St, San Francisco, CA 94016" +162223,Apple Airpods Headphones,1,150,02/26/19 21:42,"111 Walnut St, San Francisco, CA 94016" +162224,Apple Airpods Headphones,1,150,02/02/19 16:21,"65 Jackson St, Boston, MA 02215" +162225,Lightning Charging Cable,1,14.95,02/12/19 13:35,"928 Jefferson St, San Francisco, CA 94016" +162226,Bose SoundSport Headphones,1,99.99,02/16/19 18:05,"363 7th St, Dallas, TX 75001" +162227,Flatscreen TV,1,300,02/17/19 10:05,"204 11th St, Portland, OR 97035" +162228,Wired Headphones,1,11.99,02/01/19 12:53,"137 Lincoln St, Dallas, TX 75001" +162229,USB-C Charging Cable,1,11.95,02/12/19 14:46,"487 Park St, Boston, MA 02215" +162230,34in Ultrawide Monitor,1,379.99,02/08/19 13:03,"322 Church St, Seattle, WA 98101" +162231,Apple Airpods Headphones,1,150,02/16/19 20:30,"272 Chestnut St, Boston, MA 02215" +162232,USB-C Charging Cable,1,11.95,02/19/19 19:31,"849 Spruce St, Dallas, TX 75001" +162233,34in Ultrawide Monitor,1,379.99,02/26/19 21:21,"356 12th St, Boston, MA 02215" +162234,Wired Headphones,1,11.99,02/14/19 21:08,"465 Johnson St, San Francisco, CA 94016" +162235,Google Phone,1,600,02/03/19 20:46,"881 South St, New York City, NY 10001" +162236,Wired Headphones,1,11.99,02/10/19 09:56,"99 Lincoln St, San Francisco, CA 94016" +162237,Wired Headphones,1,11.99,02/09/19 20:58,"497 Elm St, Austin, TX 73301" +162237,Bose SoundSport Headphones,1,99.99,02/09/19 20:58,"497 Elm St, Austin, TX 73301" +162238,AAA Batteries (4-pack),1,2.99,02/24/19 15:11,"495 12th St, San Francisco, CA 94016" +162239,AA Batteries (4-pack),1,3.84,02/09/19 06:14,"304 Jefferson St, Boston, MA 02215" +162240,Apple Airpods Headphones,1,150,02/15/19 12:16,"645 Adams St, New York City, NY 10001" +162241,AA Batteries (4-pack),1,3.84,02/08/19 22:19,"506 Ridge St, San Francisco, CA 94016" +162242,20in Monitor,1,109.99,02/03/19 16:15,"635 Lakeview St, Austin, TX 73301" +162243,Bose SoundSport Headphones,1,99.99,02/07/19 10:34,"179 West St, San Francisco, CA 94016" +162244,Wired Headphones,2,11.99,02/01/19 17:30,"291 6th St, Austin, TX 73301" +162245,Bose SoundSport Headphones,1,99.99,02/15/19 14:17,"358 5th St, San Francisco, CA 94016" +162246,AAA Batteries (4-pack),1,2.99,02/26/19 19:51,"654 1st St, Boston, MA 02215" +162247,Bose SoundSport Headphones,1,99.99,02/24/19 11:02,"106 12th St, Boston, MA 02215" +162248,USB-C Charging Cable,2,11.95,02/26/19 09:29,"142 Hickory St, Dallas, TX 75001" +162249,Wired Headphones,1,11.99,02/07/19 15:25,"739 12th St, Los Angeles, CA 90001" +162250,USB-C Charging Cable,1,11.95,02/13/19 14:37,"614 Lake St, Austin, TX 73301" +162251,Apple Airpods Headphones,1,150,02/18/19 08:37,"186 Sunset St, Dallas, TX 75001" +162252,USB-C Charging Cable,1,11.95,02/07/19 22:58,"60 4th St, San Francisco, CA 94016" +162253,Flatscreen TV,1,300,02/20/19 17:59,"686 4th St, Seattle, WA 98101" +162254,AAA Batteries (4-pack),1,2.99,02/25/19 09:57,"343 Maple St, New York City, NY 10001" +162255,34in Ultrawide Monitor,1,379.99,02/01/19 08:42,"921 2nd St, Los Angeles, CA 90001" +162256,Apple Airpods Headphones,1,150,02/19/19 10:05,"441 5th St, Los Angeles, CA 90001" +162257,Wired Headphones,1,11.99,02/04/19 08:26,"368 Jefferson St, Los Angeles, CA 90001" +162258,ThinkPad Laptop,1,999.99,02/26/19 09:51,"676 Center St, Boston, MA 02215" +162259,ThinkPad Laptop,1,999.99,02/07/19 19:08,"500 Wilson St, Austin, TX 73301" +162260,USB-C Charging Cable,2,11.95,02/13/19 10:19,"174 West St, Los Angeles, CA 90001" +162261,Flatscreen TV,1,300,02/01/19 14:15,"118 Maple St, Atlanta, GA 30301" +162262,Bose SoundSport Headphones,1,99.99,02/25/19 12:24,"810 Dogwood St, Austin, TX 73301" +162263,Lightning Charging Cable,1,14.95,02/10/19 18:51,"943 Jackson St, Atlanta, GA 30301" +162264,USB-C Charging Cable,1,11.95,02/17/19 15:43,"348 Hill St, New York City, NY 10001" +162265,iPhone,1,700,02/12/19 13:20,"974 Lake St, Atlanta, GA 30301" +162266,Bose SoundSport Headphones,1,99.99,02/02/19 08:33,"498 7th St, Portland, OR 97035" +162267,Flatscreen TV,1,300,02/10/19 18:44,"597 Sunset St, Austin, TX 73301" +162268,Flatscreen TV,1,300,02/28/19 01:30,"689 Lake St, San Francisco, CA 94016" +162269,AAA Batteries (4-pack),1,2.99,02/17/19 13:00,"420 10th St, Atlanta, GA 30301" +162270,Bose SoundSport Headphones,1,99.99,02/19/19 13:16,"325 Lakeview St, Portland, OR 97035" +162271,Lightning Charging Cable,1,14.95,02/10/19 21:01,"416 Jefferson St, Boston, MA 02215" +162272,Wired Headphones,2,11.99,02/04/19 10:28,"861 Center St, San Francisco, CA 94016" +162273,AAA Batteries (4-pack),3,2.99,02/13/19 12:29,"719 11th St, New York City, NY 10001" +162274,Lightning Charging Cable,1,14.95,02/09/19 06:43,"548 Church St, Boston, MA 02215" +162275,Wired Headphones,1,11.99,02/27/19 21:57,"495 Willow St, Los Angeles, CA 90001" +162276,Bose SoundSport Headphones,1,99.99,02/05/19 20:48,"660 West St, New York City, NY 10001" +162277,Macbook Pro Laptop,1,1700,02/08/19 09:34,"769 Highland St, Atlanta, GA 30301" +162278,AAA Batteries (4-pack),2,2.99,02/02/19 20:07,"669 Hill St, Seattle, WA 98101" +162279,USB-C Charging Cable,1,11.95,02/27/19 22:56,"305 Main St, Boston, MA 02215" +162280,Apple Airpods Headphones,1,150,02/22/19 12:38,"320 Highland St, Seattle, WA 98101" +162281,Wired Headphones,1,11.99,02/20/19 16:46,"824 Hickory St, New York City, NY 10001" +162282,Apple Airpods Headphones,1,150,02/14/19 09:10,"515 West St, Seattle, WA 98101" +162283,Wired Headphones,1,11.99,02/03/19 20:51,"508 13th St, San Francisco, CA 94016" +162284,27in FHD Monitor,1,149.99,02/09/19 21:26,"188 8th St, San Francisco, CA 94016" +162285,ThinkPad Laptop,1,999.99,02/25/19 23:43,"673 8th St, Los Angeles, CA 90001" +162286,AA Batteries (4-pack),1,3.84,02/17/19 19:29,"864 Elm St, Dallas, TX 75001" +162287,Lightning Charging Cable,1,14.95,02/06/19 14:09,"128 Ridge St, San Francisco, CA 94016" +162288,34in Ultrawide Monitor,1,379.99,02/02/19 23:56,"840 River St, San Francisco, CA 94016" +162289,Lightning Charging Cable,1,14.95,02/24/19 22:24,"104 7th St, San Francisco, CA 94016" +162290,Lightning Charging Cable,1,14.95,02/02/19 14:08,"125 4th St, Portland, ME 04101" +162291,Lightning Charging Cable,1,14.95,02/17/19 20:47,"516 Willow St, Atlanta, GA 30301" +162292,27in 4K Gaming Monitor,1,389.99,02/08/19 19:51,"127 Willow St, Los Angeles, CA 90001" +162293,AAA Batteries (4-pack),5,2.99,02/16/19 19:56,"475 Lincoln St, Seattle, WA 98101" +162294,27in FHD Monitor,1,149.99,02/01/19 08:39,"339 Park St, San Francisco, CA 94016" +162295,Apple Airpods Headphones,1,150,02/05/19 07:08,"990 North St, Austin, TX 73301" +162296,Vareebadd Phone,1,400,02/14/19 11:43,"951 Main St, New York City, NY 10001" +162297,Wired Headphones,1,11.99,02/21/19 17:55,"309 Spruce St, Los Angeles, CA 90001" +162298,Apple Airpods Headphones,1,150,02/16/19 20:11,"170 Washington St, San Francisco, CA 94016" +162299,ThinkPad Laptop,1,999.99,02/02/19 22:21,"291 7th St, New York City, NY 10001" +162300,USB-C Charging Cable,1,11.95,02/25/19 10:30,"172 Cedar St, Atlanta, GA 30301" +162300,USB-C Charging Cable,1,11.95,02/25/19 10:30,"172 Cedar St, Atlanta, GA 30301" +162301,Lightning Charging Cable,1,14.95,02/15/19 00:08,"765 Forest St, San Francisco, CA 94016" +162302,USB-C Charging Cable,1,11.95,02/18/19 23:53,"104 River St, San Francisco, CA 94016" +162303,27in FHD Monitor,1,149.99,02/05/19 20:24,"400 Dogwood St, Dallas, TX 75001" +162304,Google Phone,1,600,02/19/19 13:59,"662 Sunset St, Dallas, TX 75001" +162305,Flatscreen TV,1,300,02/24/19 11:54,"278 Johnson St, Boston, MA 02215" +162306,AAA Batteries (4-pack),1,2.99,02/08/19 20:01,"726 Chestnut St, San Francisco, CA 94016" +162307,20in Monitor,1,109.99,02/10/19 23:03,"69 Walnut St, Portland, OR 97035" +162308,Google Phone,1,600,02/01/19 11:06,"4 Hill St, Atlanta, GA 30301" +162308,USB-C Charging Cable,1,11.95,02/01/19 11:06,"4 Hill St, Atlanta, GA 30301" +162308,Bose SoundSport Headphones,1,99.99,02/01/19 11:06,"4 Hill St, Atlanta, GA 30301" +162309,27in FHD Monitor,1,149.99,02/15/19 19:06,"47 Spruce St, Atlanta, GA 30301" +162310,Google Phone,1,600,02/04/19 15:58,"442 Hickory St, Atlanta, GA 30301" +162311,ThinkPad Laptop,1,999.99,02/07/19 18:35,"40 4th St, Boston, MA 02215" +162312,Google Phone,1,600,02/22/19 06:16,"717 10th St, Los Angeles, CA 90001" +162312,Wired Headphones,1,11.99,02/22/19 06:16,"717 10th St, Los Angeles, CA 90001" +162312,Lightning Charging Cable,1,14.95,02/22/19 06:16,"717 10th St, Los Angeles, CA 90001" +162313,USB-C Charging Cable,1,11.95,02/21/19 08:02,"679 Elm St, Los Angeles, CA 90001" +162314,AA Batteries (4-pack),4,3.84,02/14/19 10:30,"93 Jefferson St, San Francisco, CA 94016" +162315,iPhone,1,700,02/07/19 18:28,"493 Highland St, San Francisco, CA 94016" +162316,Flatscreen TV,1,300,02/10/19 13:11,"625 Dogwood St, Los Angeles, CA 90001" +162317,Apple Airpods Headphones,1,150,02/02/19 11:55,"533 Cedar St, San Francisco, CA 94016" +162318,Vareebadd Phone,1,400,02/25/19 21:35,"313 Dogwood St, Portland, ME 04101" +162318,AAA Batteries (4-pack),1,2.99,02/25/19 21:35,"313 Dogwood St, Portland, ME 04101" +162319,Wired Headphones,1,11.99,02/19/19 17:39,"721 Church St, Seattle, WA 98101" +162320,Lightning Charging Cable,1,14.95,02/10/19 08:04,"186 Dogwood St, New York City, NY 10001" +162321,Macbook Pro Laptop,1,1700,02/01/19 14:00,"33 Wilson St, San Francisco, CA 94016" +162322,iPhone,1,700,02/25/19 13:24,"850 5th St, Los Angeles, CA 90001" +162323,Wired Headphones,1,11.99,02/28/19 16:45,"422 Lakeview St, Austin, TX 73301" +162324,Wired Headphones,1,11.99,02/14/19 00:11,"545 Walnut St, Portland, OR 97035" +162325,Wired Headphones,1,11.99,02/21/19 20:42,"510 Adams St, Austin, TX 73301" +162326,Wired Headphones,1,11.99,02/09/19 14:44,"790 Johnson St, San Francisco, CA 94016" +162327,Apple Airpods Headphones,1,150,02/17/19 16:15,"687 11th St, San Francisco, CA 94016" +162328,AAA Batteries (4-pack),2,2.99,02/04/19 17:30,"757 9th St, Los Angeles, CA 90001" +162329,Wired Headphones,1,11.99,02/25/19 11:38,"241 Wilson St, San Francisco, CA 94016" +162330,USB-C Charging Cable,2,11.95,02/21/19 12:53,"721 North St, Austin, TX 73301" +162331,34in Ultrawide Monitor,1,379.99,02/01/19 15:54,"345 Main St, Austin, TX 73301" +162332,USB-C Charging Cable,1,11.95,02/24/19 18:44,"432 Jackson St, Dallas, TX 75001" +162333,AA Batteries (4-pack),2,3.84,02/26/19 15:54,"371 North St, San Francisco, CA 94016" +162334,Wired Headphones,1,11.99,02/19/19 13:17,"286 Cedar St, Atlanta, GA 30301" +162335,Apple Airpods Headphones,1,150,02/15/19 18:52,"702 Hill St, Atlanta, GA 30301" +162336,Lightning Charging Cable,1,14.95,02/13/19 08:19,"520 Pine St, Seattle, WA 98101" +162337,AAA Batteries (4-pack),2,2.99,02/21/19 03:06,"766 Spruce St, Boston, MA 02215" +162338,AAA Batteries (4-pack),1,2.99,02/22/19 12:41,"423 Main St, San Francisco, CA 94016" +162339,iPhone,1,700,02/01/19 13:23,"131 10th St, Austin, TX 73301" +162339,Wired Headphones,1,11.99,02/01/19 13:23,"131 10th St, Austin, TX 73301" +162340,20in Monitor,1,109.99,02/02/19 17:00,"32 Hill St, Boston, MA 02215" +162341,20in Monitor,1,109.99,02/16/19 08:29,"771 6th St, New York City, NY 10001" +162342,Bose SoundSport Headphones,1,99.99,02/24/19 19:41,"778 8th St, Seattle, WA 98101" +162343,Wired Headphones,1,11.99,02/07/19 09:42,"810 Jefferson St, Portland, OR 97035" +162344,Apple Airpods Headphones,1,150,02/26/19 17:22,"933 Ridge St, New York City, NY 10001" +162345,AAA Batteries (4-pack),1,2.99,02/13/19 14:44,"779 Spruce St, Seattle, WA 98101" +162346,Lightning Charging Cable,1,14.95,02/09/19 19:30,"121 Sunset St, Los Angeles, CA 90001" +162347,Wired Headphones,1,11.99,02/14/19 23:06,"43 2nd St, Portland, OR 97035" +162348,AA Batteries (4-pack),1,3.84,02/14/19 13:42,"599 Walnut St, Los Angeles, CA 90001" +162349,Flatscreen TV,1,300,02/24/19 17:07,"702 Johnson St, Seattle, WA 98101" +162350,Bose SoundSport Headphones,1,99.99,02/20/19 14:38,"293 Park St, Portland, OR 97035" +162351,34in Ultrawide Monitor,1,379.99,02/22/19 21:56,"461 Lincoln St, Portland, OR 97035" +162352,Wired Headphones,1,11.99,02/23/19 19:46,"766 Willow St, Los Angeles, CA 90001" +162353,20in Monitor,1,109.99,02/08/19 18:27,"301 Cedar St, Atlanta, GA 30301" +162354,Lightning Charging Cable,1,14.95,02/17/19 15:05,"662 14th St, San Francisco, CA 94016" +162355,USB-C Charging Cable,1,11.95,02/16/19 01:13,"380 11th St, Seattle, WA 98101" +162356,Bose SoundSport Headphones,1,99.99,02/05/19 21:01,"910 11th St, San Francisco, CA 94016" +162357,27in FHD Monitor,1,149.99,02/22/19 12:34,"887 Hill St, Los Angeles, CA 90001" +162358,Apple Airpods Headphones,1,150,02/16/19 09:35,"935 Elm St, Portland, OR 97035" +162359,AAA Batteries (4-pack),2,2.99,02/02/19 10:44,"254 Main St, Dallas, TX 75001" +162360,Wired Headphones,1,11.99,02/03/19 15:25,"493 Main St, New York City, NY 10001" +162361,AAA Batteries (4-pack),1,2.99,02/02/19 16:31,"762 7th St, Boston, MA 02215" +162362,iPhone,1,700,02/09/19 18:28,"447 6th St, New York City, NY 10001" +162363,AAA Batteries (4-pack),1,2.99,02/06/19 08:54,"165 Ridge St, Seattle, WA 98101" +162364,Google Phone,1,600,02/18/19 21:59,"345 Lake St, New York City, NY 10001" +162365,Apple Airpods Headphones,1,150,02/12/19 11:14,"745 Jefferson St, New York City, NY 10001" +162366,27in FHD Monitor,1,149.99,02/07/19 18:30,"214 Johnson St, San Francisco, CA 94016" +162367,34in Ultrawide Monitor,1,379.99,02/08/19 18:06,"41 5th St, Austin, TX 73301" +162368,iPhone,1,700,02/28/19 20:32,"100 4th St, San Francisco, CA 94016" +162369,AA Batteries (4-pack),1,3.84,02/12/19 22:56,"54 Johnson St, New York City, NY 10001" +162370,AAA Batteries (4-pack),1,2.99,02/13/19 18:49,"581 North St, Los Angeles, CA 90001" +162371,Bose SoundSport Headphones,1,99.99,02/27/19 12:58,"172 5th St, Dallas, TX 75001" +162372,34in Ultrawide Monitor,1,379.99,02/28/19 16:17,"819 Spruce St, New York City, NY 10001" +162373,34in Ultrawide Monitor,1,379.99,02/06/19 08:28,"563 Adams St, New York City, NY 10001" +162374,20in Monitor,1,109.99,02/05/19 23:11,"427 Highland St, San Francisco, CA 94016" +162375,Macbook Pro Laptop,1,1700,02/21/19 14:24,"917 13th St, Portland, OR 97035" +162376,AA Batteries (4-pack),1,3.84,02/09/19 14:04,"454 Spruce St, Los Angeles, CA 90001" +162377,AA Batteries (4-pack),2,3.84,02/28/19 13:36,"785 11th St, New York City, NY 10001" +162378,USB-C Charging Cable,1,11.95,02/25/19 16:04,"229 Park St, Portland, OR 97035" +162379,Apple Airpods Headphones,1,150,02/20/19 17:09,"454 1st St, San Francisco, CA 94016" +162380,Bose SoundSport Headphones,1,99.99,02/13/19 12:19,"919 Meadow St, San Francisco, CA 94016" +162381,AA Batteries (4-pack),2,3.84,02/06/19 06:55,"773 Adams St, Los Angeles, CA 90001" +162382,USB-C Charging Cable,1,11.95,02/03/19 14:14,"450 Lakeview St, Seattle, WA 98101" +162383,Lightning Charging Cable,2,14.95,02/21/19 02:47,"392 10th St, San Francisco, CA 94016" +162384,Bose SoundSport Headphones,1,99.99,02/03/19 07:43,"873 1st St, New York City, NY 10001" +162385,Macbook Pro Laptop,1,1700,02/18/19 22:25,"11 Sunset St, Portland, OR 97035" +162386,Wired Headphones,2,11.99,02/03/19 23:27,"819 River St, New York City, NY 10001" +162387,Wired Headphones,1,11.99,02/28/19 17:11,"147 7th St, San Francisco, CA 94016" +162388,USB-C Charging Cable,1,11.95,02/25/19 04:04,"146 9th St, Atlanta, GA 30301" +162389,Bose SoundSport Headphones,1,99.99,02/09/19 13:08,"960 1st St, Portland, OR 97035" +162390,27in 4K Gaming Monitor,1,389.99,02/07/19 04:05,"843 Center St, Boston, MA 02215" +162391,Macbook Pro Laptop,1,1700,02/21/19 06:20,"503 Park St, Los Angeles, CA 90001" +162392,AA Batteries (4-pack),1,3.84,02/11/19 20:00,"448 4th St, Los Angeles, CA 90001" +162393,Bose SoundSport Headphones,1,99.99,02/11/19 15:59,"209 12th St, Boston, MA 02215" +162394,Lightning Charging Cable,1,14.95,02/14/19 09:45,"944 14th St, San Francisco, CA 94016" +162395,iPhone,1,700,02/20/19 22:26,"602 Madison St, Los Angeles, CA 90001" +162396,27in 4K Gaming Monitor,1,389.99,02/04/19 09:01,"781 River St, New York City, NY 10001" +162397,27in FHD Monitor,1,149.99,02/27/19 19:29,"504 West St, Boston, MA 02215" +162398,USB-C Charging Cable,1,11.95,02/23/19 10:47,"417 West St, Seattle, WA 98101" +162399,USB-C Charging Cable,1,11.95,02/17/19 08:17,"737 9th St, Los Angeles, CA 90001" +162400,Apple Airpods Headphones,1,150,02/20/19 17:25,"558 7th St, Los Angeles, CA 90001" +162401,27in FHD Monitor,1,149.99,02/05/19 16:39,"220 Johnson St, Los Angeles, CA 90001" +162402,AAA Batteries (4-pack),1,2.99,02/14/19 19:00,"554 Walnut St, Boston, MA 02215" +162403,AA Batteries (4-pack),2,3.84,02/15/19 16:23,"739 Jackson St, Portland, ME 04101" +162404,Wired Headphones,1,11.99,02/16/19 17:29,"932 Chestnut St, Austin, TX 73301" +162405,AA Batteries (4-pack),1,3.84,02/28/19 12:16,"568 Wilson St, New York City, NY 10001" +162406,AA Batteries (4-pack),5,3.84,02/26/19 13:50,"782 Forest St, Boston, MA 02215" +162407,27in 4K Gaming Monitor,1,389.99,02/07/19 10:07,"25 Adams St, Los Angeles, CA 90001" +162408,AAA Batteries (4-pack),1,2.99,02/02/19 16:35,"575 Dogwood St, New York City, NY 10001" +162409,AAA Batteries (4-pack),2,2.99,02/06/19 12:04,"69 12th St, Boston, MA 02215" +162410,Macbook Pro Laptop,1,1700,02/22/19 20:30,"347 Meadow St, Los Angeles, CA 90001" +162411,Bose SoundSport Headphones,1,99.99,02/08/19 21:39,"334 6th St, New York City, NY 10001" +162412,Wired Headphones,1,11.99,02/06/19 23:48,"23 6th St, San Francisco, CA 94016" +162413,AAA Batteries (4-pack),1,2.99,02/27/19 11:21,"391 Forest St, Austin, TX 73301" +162414,Lightning Charging Cable,1,14.95,02/13/19 23:48,"734 River St, Los Angeles, CA 90001" +162415,Bose SoundSport Headphones,1,99.99,02/23/19 21:33,"138 Cherry St, Boston, MA 02215" +162416,27in FHD Monitor,1,149.99,02/26/19 17:30,"846 9th St, Dallas, TX 75001" +162417,Lightning Charging Cable,1,14.95,02/08/19 22:54,"750 Washington St, San Francisco, CA 94016" +162418,Macbook Pro Laptop,1,1700,02/27/19 19:47,"408 11th St, Portland, OR 97035" +162419,USB-C Charging Cable,1,11.95,02/25/19 23:31,"127 6th St, Portland, ME 04101" +162420,AA Batteries (4-pack),2,3.84,02/11/19 11:30,"440 River St, Los Angeles, CA 90001" +162421,USB-C Charging Cable,1,11.95,02/17/19 09:09,"643 Hill St, Los Angeles, CA 90001" +162422,27in FHD Monitor,1,149.99,02/14/19 16:03,"295 Highland St, San Francisco, CA 94016" +162423,AAA Batteries (4-pack),1,2.99,02/12/19 21:50,"596 14th St, San Francisco, CA 94016" +162424,USB-C Charging Cable,1,11.95,02/25/19 16:09,"526 5th St, Los Angeles, CA 90001" +162425,27in 4K Gaming Monitor,1,389.99,02/08/19 18:03,"287 Park St, San Francisco, CA 94016" +162426,USB-C Charging Cable,2,11.95,02/14/19 17:44,"943 Jefferson St, San Francisco, CA 94016" +162427,20in Monitor,1,109.99,02/13/19 12:58,"940 Johnson St, New York City, NY 10001" +162428,Wired Headphones,1,11.99,02/12/19 19:51,"64 Ridge St, Los Angeles, CA 90001" +162429,Google Phone,1,600,02/17/19 14:43,"887 Highland St, Dallas, TX 75001" +162430,USB-C Charging Cable,1,11.95,02/10/19 13:59,"909 River St, Portland, OR 97035" +162431,Wired Headphones,1,11.99,02/23/19 16:38,"286 Adams St, Austin, TX 73301" +162432,Macbook Pro Laptop,1,1700,02/28/19 17:02,"701 Lincoln St, Los Angeles, CA 90001" +162433,Lightning Charging Cable,1,14.95,02/16/19 09:28,"908 Lakeview St, Portland, ME 04101" +162434,USB-C Charging Cable,1,11.95,02/07/19 16:32,"147 4th St, San Francisco, CA 94016" +162435,Apple Airpods Headphones,1,150,02/03/19 09:26,"597 Dogwood St, San Francisco, CA 94016" +162436,Lightning Charging Cable,1,14.95,02/24/19 16:59,"822 South St, Los Angeles, CA 90001" +162437,AAA Batteries (4-pack),2,2.99,02/26/19 12:27,"993 1st St, New York City, NY 10001" +162438,LG Washing Machine,1,600.0,02/20/19 22:30,"946 11th St, Portland, OR 97035" +162439,27in FHD Monitor,1,149.99,02/21/19 10:54,"976 9th St, New York City, NY 10001" +162440,Wired Headphones,1,11.99,02/14/19 23:13,"168 Lincoln St, San Francisco, CA 94016" +162441,Lightning Charging Cable,1,14.95,02/01/19 11:04,"645 Jackson St, New York City, NY 10001" +162442,Apple Airpods Headphones,1,150,02/03/19 11:57,"242 Dogwood St, Dallas, TX 75001" +162443,Flatscreen TV,1,300,02/22/19 15:42,"332 7th St, Seattle, WA 98101" +162444,Apple Airpods Headphones,1,150,02/22/19 13:34,"189 13th St, San Francisco, CA 94016" +162444,AA Batteries (4-pack),1,3.84,02/22/19 13:34,"189 13th St, San Francisco, CA 94016" +162445,Wired Headphones,1,11.99,02/26/19 13:50,"666 Lake St, San Francisco, CA 94016" +162446,AAA Batteries (4-pack),2,2.99,02/07/19 00:36,"158 5th St, Boston, MA 02215" +162447,AA Batteries (4-pack),1,3.84,02/22/19 01:07,"195 Adams St, San Francisco, CA 94016" +162448,USB-C Charging Cable,1,11.95,02/27/19 12:27,"873 13th St, Seattle, WA 98101" +162449,Lightning Charging Cable,1,14.95,02/20/19 11:15,"408 1st St, San Francisco, CA 94016" +162450,Lightning Charging Cable,1,14.95,02/20/19 15:36,"189 North St, New York City, NY 10001" +162451,Wired Headphones,1,11.99,02/18/19 17:55,"457 14th St, San Francisco, CA 94016" +162452,Wired Headphones,1,11.99,02/21/19 20:08,"351 South St, Atlanta, GA 30301" +162453,27in 4K Gaming Monitor,1,389.99,02/19/19 01:31,"333 Sunset St, Los Angeles, CA 90001" +162454,Wired Headphones,1,11.99,02/26/19 11:41,"629 13th St, Los Angeles, CA 90001" +162455,Wired Headphones,1,11.99,02/19/19 22:39,"756 Highland St, San Francisco, CA 94016" +162456,Google Phone,1,600,02/12/19 12:03,"766 Sunset St, San Francisco, CA 94016" +162457,Wired Headphones,1,11.99,02/14/19 06:34,"477 11th St, Boston, MA 02215" +162458,AA Batteries (4-pack),1,3.84,02/07/19 16:24,"90 West St, Dallas, TX 75001" +162459,Apple Airpods Headphones,1,150,02/20/19 19:22,"824 Lakeview St, Seattle, WA 98101" +162460,AA Batteries (4-pack),3,3.84,02/27/19 17:49,"920 11th St, Los Angeles, CA 90001" +162461,Lightning Charging Cable,1,14.95,02/16/19 09:32,"123 Hill St, Seattle, WA 98101" +162462,Lightning Charging Cable,1,14.95,02/07/19 15:49,"128 Cedar St, New York City, NY 10001" +162463,AA Batteries (4-pack),1,3.84,02/06/19 09:38,"863 Highland St, Boston, MA 02215" +162464,Vareebadd Phone,1,400,02/08/19 15:45,"423 West St, Austin, TX 73301" +162465,Bose SoundSport Headphones,1,99.99,02/20/19 21:56,"772 4th St, Los Angeles, CA 90001" +162466,AAA Batteries (4-pack),1,2.99,02/01/19 10:30,"69 1st St, New York City, NY 10001" +162467,Wired Headphones,1,11.99,02/02/19 17:27,"767 Hickory St, Atlanta, GA 30301" +162468,AA Batteries (4-pack),1,3.84,02/07/19 11:33,"746 2nd St, Seattle, WA 98101" +162469,Wired Headphones,2,11.99,02/14/19 21:33,"727 Meadow St, Los Angeles, CA 90001" +162470,27in FHD Monitor,1,149.99,02/12/19 18:08,"639 North St, San Francisco, CA 94016" +162471,AA Batteries (4-pack),1,3.84,02/22/19 00:54,"969 Madison St, San Francisco, CA 94016" +162472,AA Batteries (4-pack),5,3.84,02/18/19 17:29,"709 Sunset St, New York City, NY 10001" +162473,iPhone,1,700,02/01/19 12:43,"530 Lake St, San Francisco, CA 94016" +162474,Flatscreen TV,1,300,02/05/19 13:19,"719 Highland St, Los Angeles, CA 90001" +162475,Google Phone,1,600,02/23/19 00:12,"135 Hickory St, Atlanta, GA 30301" +162476,USB-C Charging Cable,2,11.95,02/10/19 00:31,"360 Highland St, Seattle, WA 98101" +162477,Lightning Charging Cable,1,14.95,02/17/19 21:13,"917 Chestnut St, Boston, MA 02215" +162478,USB-C Charging Cable,1,11.95,02/05/19 11:09,"312 2nd St, Seattle, WA 98101" +162479,27in FHD Monitor,1,149.99,02/16/19 16:38,"980 7th St, San Francisco, CA 94016" +162480,Lightning Charging Cable,1,14.95,02/01/19 12:51,"403 Maple St, Los Angeles, CA 90001" +162481,AA Batteries (4-pack),1,3.84,02/02/19 22:06,"772 Ridge St, Boston, MA 02215" +162482,ThinkPad Laptop,1,999.99,02/07/19 14:12,"909 Maple St, Dallas, TX 75001" +162483,Bose SoundSport Headphones,1,99.99,02/12/19 14:16,"875 Ridge St, Portland, OR 97035" +162484,Wired Headphones,1,11.99,02/27/19 22:16,"123 Elm St, Portland, OR 97035" +162485,Wired Headphones,1,11.99,02/18/19 00:35,"436 2nd St, San Francisco, CA 94016" +162486,AAA Batteries (4-pack),2,2.99,02/14/19 23:18,"246 Washington St, Los Angeles, CA 90001" +162487,iPhone,1,700,02/13/19 22:33,"717 Main St, San Francisco, CA 94016" +162487,Lightning Charging Cable,1,14.95,02/13/19 22:33,"717 Main St, San Francisco, CA 94016" +162488,Lightning Charging Cable,1,14.95,02/03/19 00:20,"945 Walnut St, New York City, NY 10001" +162489,20in Monitor,1,109.99,02/10/19 09:10,"555 Cedar St, San Francisco, CA 94016" +162490,Wired Headphones,1,11.99,02/26/19 07:08,"878 South St, Los Angeles, CA 90001" +162491,Wired Headphones,1,11.99,02/15/19 10:13,"618 Spruce St, Los Angeles, CA 90001" +162492,Wired Headphones,1,11.99,02/09/19 07:52,"62 Willow St, Portland, ME 04101" +162493,AAA Batteries (4-pack),1,2.99,02/27/19 05:29,"844 Cedar St, Atlanta, GA 30301" +162494,Lightning Charging Cable,2,14.95,02/20/19 10:23,"458 4th St, Portland, OR 97035" +162495,Bose SoundSport Headphones,1,99.99,02/26/19 22:02,"667 Lake St, Atlanta, GA 30301" +162496,Wired Headphones,1,11.99,02/03/19 20:00,"612 Johnson St, San Francisco, CA 94016" +162497,AA Batteries (4-pack),1,3.84,02/23/19 21:22,"905 Highland St, New York City, NY 10001" +162498,Apple Airpods Headphones,1,150,02/06/19 12:27,"315 Madison St, San Francisco, CA 94016" +162498,Bose SoundSport Headphones,1,99.99,02/06/19 12:27,"315 Madison St, San Francisco, CA 94016" +162499,20in Monitor,1,109.99,02/14/19 03:12,"818 West St, New York City, NY 10001" +162500,USB-C Charging Cable,2,11.95,02/06/19 15:58,"606 8th St, Dallas, TX 75001" +162501,Lightning Charging Cable,1,14.95,02/05/19 13:56,"528 West St, Atlanta, GA 30301" +162502,Wired Headphones,1,11.99,02/27/19 20:42,"712 Hickory St, Boston, MA 02215" +162503,Google Phone,1,600,02/06/19 12:09,"738 Hickory St, Boston, MA 02215" +162504,Apple Airpods Headphones,1,150,02/15/19 14:37,"957 Jackson St, New York City, NY 10001" +162505,AA Batteries (4-pack),1,3.84,02/19/19 06:22,"766 Dogwood St, Portland, OR 97035" +162506,Vareebadd Phone,1,400,02/07/19 15:26,"353 6th St, Los Angeles, CA 90001" +162507,Google Phone,1,600,02/22/19 16:32,"758 Pine St, New York City, NY 10001" +162507,USB-C Charging Cable,1,11.95,02/22/19 16:32,"758 Pine St, New York City, NY 10001" +162508,Wired Headphones,1,11.99,02/02/19 16:34,"474 Hill St, New York City, NY 10001" +162509,Lightning Charging Cable,1,14.95,02/02/19 18:49,"973 Chestnut St, Boston, MA 02215" +162510,USB-C Charging Cable,2,11.95,02/15/19 21:18,"626 10th St, New York City, NY 10001" +162511,Apple Airpods Headphones,1,150,02/22/19 18:51,"241 Pine St, Dallas, TX 75001" +,,,,, +162512,Macbook Pro Laptop,1,1700,02/20/19 20:33,"50 Hill St, New York City, NY 10001" +162513,AA Batteries (4-pack),1,3.84,02/08/19 11:40,"645 Lake St, San Francisco, CA 94016" +162514,Apple Airpods Headphones,1,150,02/18/19 13:41,"517 Jackson St, Boston, MA 02215" +162515,USB-C Charging Cable,1,11.95,02/10/19 11:03,"5 Maple St, Atlanta, GA 30301" +162516,USB-C Charging Cable,1,11.95,02/22/19 08:46,"127 Ridge St, San Francisco, CA 94016" +162517,Lightning Charging Cable,1,14.95,02/15/19 16:51,"795 Highland St, San Francisco, CA 94016" +162518,Flatscreen TV,1,300,02/05/19 10:16,"752 North St, Dallas, TX 75001" +162519,AA Batteries (4-pack),1,3.84,02/05/19 07:40,"978 Willow St, San Francisco, CA 94016" +162520,USB-C Charging Cable,1,11.95,02/12/19 11:12,"218 Sunset St, Dallas, TX 75001" +162521,AAA Batteries (4-pack),2,2.99,02/10/19 13:19,"957 Jackson St, Atlanta, GA 30301" +162522,Bose SoundSport Headphones,1,99.99,02/28/19 09:35,"479 11th St, San Francisco, CA 94016" +162523,Bose SoundSport Headphones,1,99.99,02/09/19 11:38,"803 Forest St, Los Angeles, CA 90001" +162524,34in Ultrawide Monitor,2,379.99,02/08/19 15:42,"143 Johnson St, Los Angeles, CA 90001" +162525,AA Batteries (4-pack),1,3.84,02/07/19 21:47,"891 Meadow St, San Francisco, CA 94016" +162526,USB-C Charging Cable,1,11.95,02/16/19 00:16,"685 Pine St, Boston, MA 02215" +162527,27in FHD Monitor,1,149.99,02/19/19 20:52,"729 Forest St, Los Angeles, CA 90001" +162528,Apple Airpods Headphones,1,150,02/09/19 16:25,"795 14th St, Portland, OR 97035" +162529,AA Batteries (4-pack),1,3.84,02/01/19 13:38,"490 Johnson St, Boston, MA 02215" +162530,AA Batteries (4-pack),1,3.84,02/01/19 08:42,"763 6th St, Boston, MA 02215" +162530,27in FHD Monitor,1,149.99,02/01/19 08:42,"763 6th St, Boston, MA 02215" +162531,Flatscreen TV,1,300,02/27/19 19:22,"714 Willow St, San Francisco, CA 94016" +162532,Apple Airpods Headphones,1,150,02/22/19 00:36,"659 Wilson St, New York City, NY 10001" +162533,Wired Headphones,1,11.99,02/21/19 11:45,"730 Pine St, San Francisco, CA 94016" +162534,AAA Batteries (4-pack),2,2.99,02/23/19 05:24,"934 Spruce St, Austin, TX 73301" +162535,AAA Batteries (4-pack),1,2.99,02/03/19 03:21,"215 Hill St, Austin, TX 73301" +162536,Lightning Charging Cable,1,14.95,02/11/19 13:40,"984 West St, Los Angeles, CA 90001" +162537,AAA Batteries (4-pack),3,2.99,02/09/19 09:26,"991 Pine St, San Francisco, CA 94016" +162538,Macbook Pro Laptop,1,1700,02/01/19 08:08,"707 Meadow St, Boston, MA 02215" +162539,Flatscreen TV,1,300,02/22/19 15:25,"290 6th St, Austin, TX 73301" +162540,Google Phone,1,600,02/10/19 10:26,"555 Park St, Boston, MA 02215" +162541,Bose SoundSport Headphones,1,99.99,02/20/19 17:20,"634 6th St, Los Angeles, CA 90001" +162542,Flatscreen TV,1,300,02/11/19 17:57,"535 Adams St, Portland, OR 97035" +162543,Apple Airpods Headphones,1,150,02/08/19 07:30,"510 8th St, San Francisco, CA 94016" +162544,USB-C Charging Cable,1,11.95,02/10/19 17:11,"306 1st St, Boston, MA 02215" +162545,USB-C Charging Cable,1,11.95,02/12/19 18:43,"560 Madison St, New York City, NY 10001" +162546,27in FHD Monitor,1,149.99,02/08/19 17:34,"409 Lakeview St, New York City, NY 10001" +162547,AA Batteries (4-pack),1,3.84,02/28/19 14:04,"729 Adams St, Atlanta, GA 30301" +162548,27in 4K Gaming Monitor,1,389.99,02/19/19 20:38,"926 Dogwood St, New York City, NY 10001" +162549,Wired Headphones,1,11.99,02/07/19 20:17,"368 Hill St, San Francisco, CA 94016" +162550,iPhone,1,700,02/22/19 21:49,"970 12th St, New York City, NY 10001" +162551,Wired Headphones,1,11.99,02/10/19 10:30,"613 9th St, Los Angeles, CA 90001" +162552,Apple Airpods Headphones,1,150,02/25/19 10:57,"287 Main St, Atlanta, GA 30301" +162553,Google Phone,1,600,02/09/19 12:41,"222 Forest St, Portland, OR 97035" +162554,Apple Airpods Headphones,1,150,02/27/19 07:25,"963 Lake St, Austin, TX 73301" +162555,Lightning Charging Cable,1,14.95,02/11/19 16:46,"183 Lake St, Atlanta, GA 30301" +162556,34in Ultrawide Monitor,1,379.99,02/16/19 17:56,"196 14th St, Atlanta, GA 30301" +162557,Google Phone,1,600,02/23/19 16:11,"654 Park St, Austin, TX 73301" +162558,Bose SoundSport Headphones,1,99.99,02/26/19 21:03,"124 10th St, San Francisco, CA 94016" +162559,USB-C Charging Cable,1,11.95,02/27/19 21:18,"536 5th St, Austin, TX 73301" +162560,Google Phone,1,600,02/16/19 23:13,"352 West St, Austin, TX 73301" +162561,Apple Airpods Headphones,1,150,02/02/19 05:57,"401 Church St, New York City, NY 10001" +162562,AAA Batteries (4-pack),1,2.99,02/05/19 08:11,"251 South St, Los Angeles, CA 90001" +162563,Wired Headphones,1,11.99,02/01/19 15:11,"774 Sunset St, Portland, OR 97035" +162564,Lightning Charging Cable,2,14.95,02/14/19 23:03,"174 12th St, New York City, NY 10001" +162565,USB-C Charging Cable,1,11.95,02/11/19 10:55,"100 Willow St, Portland, OR 97035" +162566,AA Batteries (4-pack),1,3.84,02/15/19 00:12,"4 Washington St, San Francisco, CA 94016" +162567,USB-C Charging Cable,1,11.95,02/23/19 07:52,"452 Main St, Los Angeles, CA 90001" +162568,Lightning Charging Cable,1,14.95,02/06/19 19:14,"820 Dogwood St, San Francisco, CA 94016" +162569,Lightning Charging Cable,1,14.95,02/12/19 19:28,"471 14th St, Los Angeles, CA 90001" +162570,Google Phone,1,600,02/22/19 16:51,"323 Lincoln St, Los Angeles, CA 90001" +162570,USB-C Charging Cable,1,11.95,02/22/19 16:51,"323 Lincoln St, Los Angeles, CA 90001" +162571,USB-C Charging Cable,1,11.95,02/14/19 23:55,"113 2nd St, San Francisco, CA 94016" +162572,20in Monitor,1,109.99,02/10/19 16:14,"219 6th St, Los Angeles, CA 90001" +162573,20in Monitor,1,109.99,02/10/19 11:10,"884 14th St, Los Angeles, CA 90001" +162574,Apple Airpods Headphones,1,150,02/27/19 08:29,"71 Lincoln St, Seattle, WA 98101" +162575,USB-C Charging Cable,1,11.95,02/19/19 14:05,"590 9th St, Los Angeles, CA 90001" +162576,AAA Batteries (4-pack),1,2.99,02/19/19 21:32,"467 7th St, New York City, NY 10001" +162577,Wired Headphones,1,11.99,02/10/19 12:54,"463 4th St, Dallas, TX 75001" +162578,Lightning Charging Cable,1,14.95,02/01/19 14:47,"160 Chestnut St, San Francisco, CA 94016" +162579,Google Phone,1,600,02/01/19 13:30,"978 2nd St, Seattle, WA 98101" +162580,USB-C Charging Cable,1,11.95,02/14/19 06:43,"397 Lincoln St, Dallas, TX 75001" +162581,Lightning Charging Cable,1,14.95,02/22/19 14:53,"486 South St, Austin, TX 73301" +162582,ThinkPad Laptop,1,999.99,02/01/19 13:56,"652 Johnson St, New York City, NY 10001" +162583,27in 4K Gaming Monitor,1,389.99,02/07/19 14:05,"196 4th St, San Francisco, CA 94016" +162584,Wired Headphones,1,11.99,02/28/19 18:48,"933 Washington St, Los Angeles, CA 90001" +162585,AA Batteries (4-pack),1,3.84,02/25/19 15:17,"498 Willow St, Seattle, WA 98101" +162586,AA Batteries (4-pack),1,3.84,02/22/19 12:29,"949 Washington St, Los Angeles, CA 90001" +162587,Google Phone,1,600,02/20/19 15:41,"984 Forest St, Los Angeles, CA 90001" +162588,Bose SoundSport Headphones,1,99.99,02/25/19 18:40,"124 Lakeview St, San Francisco, CA 94016" +162589,Lightning Charging Cable,1,14.95,02/09/19 14:11,"280 Hickory St, Los Angeles, CA 90001" +162590,AAA Batteries (4-pack),1,2.99,02/25/19 21:00,"491 Madison St, Boston, MA 02215" +162591,Wired Headphones,1,11.99,02/08/19 00:51,"967 North St, Seattle, WA 98101" +162592,AAA Batteries (4-pack),1,2.99,02/04/19 03:09,"405 Church St, San Francisco, CA 94016" +162593,AA Batteries (4-pack),3,3.84,02/11/19 12:59,"508 Sunset St, New York City, NY 10001" +162594,Wired Headphones,1,11.99,02/13/19 13:30,"208 Jackson St, Seattle, WA 98101" +162595,AA Batteries (4-pack),1,3.84,02/08/19 15:05,"657 Center St, San Francisco, CA 94016" +162596,Bose SoundSport Headphones,1,99.99,02/13/19 16:41,"16 West St, San Francisco, CA 94016" +162597,Lightning Charging Cable,1,14.95,02/12/19 17:59,"793 Willow St, Los Angeles, CA 90001" +162598,27in FHD Monitor,2,149.99,02/07/19 18:04,"490 Hickory St, Seattle, WA 98101" +162599,AA Batteries (4-pack),2,3.84,02/14/19 20:02,"322 Spruce St, Portland, OR 97035" +162600,AAA Batteries (4-pack),1,2.99,02/10/19 16:24,"203 Washington St, Atlanta, GA 30301" +162601,Bose SoundSport Headphones,1,99.99,02/24/19 09:01,"3 Lake St, San Francisco, CA 94016" +162602,USB-C Charging Cable,1,11.95,02/04/19 15:13,"276 12th St, San Francisco, CA 94016" +162603,Flatscreen TV,1,300,02/23/19 11:40,"596 1st St, San Francisco, CA 94016" +162604,AAA Batteries (4-pack),1,2.99,02/03/19 13:02,"838 Wilson St, San Francisco, CA 94016" +162605,AAA Batteries (4-pack),3,2.99,02/16/19 18:32,"616 Walnut St, New York City, NY 10001" +162606,ThinkPad Laptop,1,999.99,02/03/19 18:46,"566 8th St, Atlanta, GA 30301" +162607,Bose SoundSport Headphones,1,99.99,02/10/19 15:32,"236 Adams St, Portland, OR 97035" +162608,iPhone,1,700,02/25/19 18:06,"382 Jefferson St, Seattle, WA 98101" +162609,AA Batteries (4-pack),1,3.84,02/26/19 12:47,"572 Cedar St, Atlanta, GA 30301" +162610,AA Batteries (4-pack),1,3.84,02/13/19 17:56,"239 Walnut St, New York City, NY 10001" +162611,Google Phone,1,600,02/26/19 14:27,"613 Chestnut St, San Francisco, CA 94016" +162612,AAA Batteries (4-pack),1,2.99,02/11/19 19:16,"840 7th St, New York City, NY 10001" +162613,AAA Batteries (4-pack),4,2.99,02/20/19 18:10,"653 South St, Boston, MA 02215" +162614,AA Batteries (4-pack),1,3.84,02/01/19 23:14,"575 Dogwood St, New York City, NY 10001" +162615,Wired Headphones,1,11.99,02/10/19 10:13,"364 Forest St, Portland, OR 97035" +162616,Apple Airpods Headphones,1,150,02/15/19 21:23,"636 Walnut St, San Francisco, CA 94016" +162617,Wired Headphones,1,11.99,02/16/19 11:41,"495 Highland St, San Francisco, CA 94016" +162618,Wired Headphones,1,11.99,02/08/19 18:11,"497 8th St, Dallas, TX 75001" +162619,Apple Airpods Headphones,1,150,02/16/19 00:18,"414 Hill St, Dallas, TX 75001" +162620,AA Batteries (4-pack),3,3.84,02/27/19 02:06,"973 South St, Austin, TX 73301" +162620,Apple Airpods Headphones,1,150,02/27/19 02:06,"973 South St, Austin, TX 73301" +162621,Wired Headphones,1,11.99,02/11/19 01:57,"552 West St, Los Angeles, CA 90001" +162622,Lightning Charging Cable,1,14.95,02/07/19 11:08,"400 Walnut St, San Francisco, CA 94016" +162623,ThinkPad Laptop,1,999.99,02/11/19 12:08,"537 Church St, San Francisco, CA 94016" +162624,Lightning Charging Cable,1,14.95,02/10/19 07:07,"899 Walnut St, Atlanta, GA 30301" +162625,Apple Airpods Headphones,1,150,02/27/19 23:10,"354 Hill St, Boston, MA 02215" +162626,Wired Headphones,1,11.99,02/06/19 22:20,"631 Park St, Los Angeles, CA 90001" +162627,Macbook Pro Laptop,1,1700,02/18/19 16:26,"392 Dogwood St, New York City, NY 10001" +162628,Wired Headphones,1,11.99,02/13/19 14:28,"3 Meadow St, New York City, NY 10001" +162628,AAA Batteries (4-pack),2,2.99,02/13/19 14:28,"3 Meadow St, New York City, NY 10001" +162629,Bose SoundSport Headphones,1,99.99,02/10/19 12:25,"45 Main St, New York City, NY 10001" +162630,USB-C Charging Cable,1,11.95,02/13/19 05:53,"365 Jackson St, Los Angeles, CA 90001" +162631,iPhone,1,700,02/28/19 10:13,"549 Madison St, San Francisco, CA 94016" +162631,Wired Headphones,1,11.99,02/28/19 10:13,"549 Madison St, San Francisco, CA 94016" +162632,USB-C Charging Cable,1,11.95,02/15/19 13:30,"112 Maple St, Seattle, WA 98101" +162633,Lightning Charging Cable,1,14.95,02/25/19 18:32,"342 River St, Dallas, TX 75001" +162634,Google Phone,1,600,02/22/19 19:17,"855 14th St, Portland, ME 04101" +162635,AAA Batteries (4-pack),5,2.99,02/04/19 11:24,"962 Elm St, Boston, MA 02215" +162636,AAA Batteries (4-pack),2,2.99,02/20/19 12:57,"133 11th St, Portland, ME 04101" +162637,AA Batteries (4-pack),2,3.84,02/10/19 09:25,"27 13th St, Portland, ME 04101" +162638,AA Batteries (4-pack),1,3.84,02/15/19 18:48,"450 Lincoln St, Boston, MA 02215" +162639,LG Dryer,1,600.0,02/14/19 13:27,"182 Hill St, Los Angeles, CA 90001" +162640,Wired Headphones,1,11.99,02/22/19 15:09,"108 8th St, Seattle, WA 98101" +162641,AAA Batteries (4-pack),1,2.99,02/15/19 19:13,"830 Walnut St, San Francisco, CA 94016" +162642,Lightning Charging Cable,1,14.95,02/13/19 12:50,"481 Willow St, Boston, MA 02215" +162643,Google Phone,1,600,02/19/19 19:42,"418 Park St, Seattle, WA 98101" +162643,USB-C Charging Cable,1,11.95,02/19/19 19:42,"418 Park St, Seattle, WA 98101" +162644,27in FHD Monitor,1,149.99,02/01/19 23:35,"976 Dogwood St, San Francisco, CA 94016" +162645,Apple Airpods Headphones,1,150,02/10/19 13:24,"191 Lincoln St, Seattle, WA 98101" +162646,Apple Airpods Headphones,1,150,02/12/19 07:10,"367 7th St, Dallas, TX 75001" +162647,Lightning Charging Cable,1,14.95,02/08/19 21:01,"863 8th St, New York City, NY 10001" +162648,Lightning Charging Cable,1,14.95,02/09/19 12:19,"818 Park St, San Francisco, CA 94016" +162649,Google Phone,1,600,02/14/19 06:44,"931 12th St, Austin, TX 73301" +162650,27in 4K Gaming Monitor,1,389.99,02/09/19 22:04,"89 Spruce St, San Francisco, CA 94016" +162651,Bose SoundSport Headphones,1,99.99,02/17/19 09:50,"194 Cherry St, Portland, OR 97035" +162651,Flatscreen TV,1,300,02/17/19 09:50,"194 Cherry St, Portland, OR 97035" +162652,Vareebadd Phone,1,400,02/19/19 13:07,"573 Hickory St, San Francisco, CA 94016" +162653,AAA Batteries (4-pack),2,2.99,02/28/19 18:57,"798 Meadow St, Boston, MA 02215" +162654,AA Batteries (4-pack),1,3.84,02/26/19 10:38,"868 Madison St, Atlanta, GA 30301" +162655,Apple Airpods Headphones,2,150,02/22/19 00:51,"959 10th St, Dallas, TX 75001" +162656,Macbook Pro Laptop,1,1700,02/16/19 19:59,"625 Hill St, Dallas, TX 75001" +162657,27in FHD Monitor,1,149.99,02/23/19 12:26,"222 Ridge St, San Francisco, CA 94016" +162658,Lightning Charging Cable,1,14.95,02/09/19 17:21,"787 Meadow St, Portland, ME 04101" +162659,iPhone,1,700,02/14/19 16:25,"956 Sunset St, Los Angeles, CA 90001" +162660,Lightning Charging Cable,2,14.95,02/08/19 21:05,"980 Hickory St, Boston, MA 02215" +162661,Google Phone,1,600,02/13/19 14:19,"699 Main St, Dallas, TX 75001" +162662,Flatscreen TV,1,300,02/27/19 19:11,"998 Walnut St, New York City, NY 10001" +162663,AAA Batteries (4-pack),2,2.99,02/01/19 11:45,"280 9th St, New York City, NY 10001" +162664,27in FHD Monitor,1,149.99,02/06/19 23:29,"286 Hill St, Seattle, WA 98101" +162665,Macbook Pro Laptop,1,1700,02/22/19 16:25,"68 Ridge St, Austin, TX 73301" +162666,27in FHD Monitor,1,149.99,02/02/19 12:03,"747 Spruce St, Boston, MA 02215" +162667,Apple Airpods Headphones,1,150,02/20/19 21:44,"637 1st St, Boston, MA 02215" +162668,34in Ultrawide Monitor,1,379.99,02/20/19 08:23,"930 West St, Boston, MA 02215" +162669,Lightning Charging Cable,1,14.95,02/27/19 18:56,"383 Highland St, New York City, NY 10001" +162670,Macbook Pro Laptop,1,1700,02/10/19 19:27,"391 Spruce St, Atlanta, GA 30301" +162671,AA Batteries (4-pack),1,3.84,02/18/19 11:56,"493 Main St, New York City, NY 10001" +162672,Lightning Charging Cable,1,14.95,02/19/19 11:18,"374 Sunset St, Los Angeles, CA 90001" +162673,AAA Batteries (4-pack),1,2.99,02/10/19 10:21,"147 Forest St, Los Angeles, CA 90001" +162674,Apple Airpods Headphones,1,150,02/26/19 18:59,"438 Lincoln St, Atlanta, GA 30301" +162675,Google Phone,1,600,02/11/19 07:30,"741 13th St, Atlanta, GA 30301" +162676,Flatscreen TV,1,300,02/14/19 19:29,"234 Hill St, Boston, MA 02215" +162677,34in Ultrawide Monitor,1,379.99,02/27/19 11:07,"418 River St, Dallas, TX 75001" +162678,Apple Airpods Headphones,1,150,02/14/19 00:42,"438 South St, New York City, NY 10001" +162679,AAA Batteries (4-pack),1,2.99,02/16/19 15:18,"285 Hill St, Atlanta, GA 30301" +162680,Flatscreen TV,1,300,02/07/19 10:21,"564 Highland St, New York City, NY 10001" +162681,27in 4K Gaming Monitor,1,389.99,02/12/19 19:52,"973 Wilson St, Dallas, TX 75001" +162682,AAA Batteries (4-pack),1,2.99,02/15/19 08:19,"985 Maple St, Austin, TX 73301" +162683,AAA Batteries (4-pack),1,2.99,02/06/19 19:18,"686 Johnson St, Portland, OR 97035" +162684,27in 4K Gaming Monitor,1,389.99,02/15/19 12:52,"929 Willow St, San Francisco, CA 94016" +162685,AAA Batteries (4-pack),1,2.99,02/07/19 13:08,"477 Church St, San Francisco, CA 94016" +162685,AAA Batteries (4-pack),1,2.99,02/07/19 13:08,"477 Church St, San Francisco, CA 94016" +162686,Lightning Charging Cable,1,14.95,02/11/19 13:46,"919 7th St, San Francisco, CA 94016" +162687,34in Ultrawide Monitor,1,379.99,02/13/19 12:56,"696 14th St, Boston, MA 02215" +162688,Vareebadd Phone,1,400,02/11/19 16:03,"957 South St, San Francisco, CA 94016" +162689,34in Ultrawide Monitor,1,379.99,02/07/19 14:50,"604 14th St, New York City, NY 10001" +162690,Macbook Pro Laptop,1,1700,02/15/19 07:23,"742 2nd St, Los Angeles, CA 90001" +162691,USB-C Charging Cable,1,11.95,02/10/19 05:12,"802 4th St, Dallas, TX 75001" +162692,Google Phone,1,600,02/01/19 12:22,"487 Madison St, San Francisco, CA 94016" +162693,27in FHD Monitor,1,149.99,02/27/19 10:35,"160 Center St, Austin, TX 73301" +162694,Apple Airpods Headphones,1,150,02/01/19 20:42,"283 Madison St, Dallas, TX 75001" +162695,Lightning Charging Cable,2,14.95,02/10/19 00:28,"932 4th St, San Francisco, CA 94016" +162696,AA Batteries (4-pack),2,3.84,02/21/19 17:05,"417 Meadow St, San Francisco, CA 94016" +162697,Apple Airpods Headphones,1,150,02/20/19 11:37,"424 10th St, Los Angeles, CA 90001" +162698,Apple Airpods Headphones,1,150,02/04/19 16:23,"382 11th St, Seattle, WA 98101" +162699,AAA Batteries (4-pack),2,2.99,02/22/19 19:04,"855 Highland St, Seattle, WA 98101" +162700,27in 4K Gaming Monitor,1,389.99,02/11/19 19:27,"240 Lakeview St, New York City, NY 10001" +162701,Lightning Charging Cable,1,14.95,02/20/19 05:23,"189 11th St, San Francisco, CA 94016" +162702,27in FHD Monitor,1,149.99,02/05/19 13:41,"389 1st St, Dallas, TX 75001" +162703,iPhone,1,700,02/04/19 22:52,"257 Jackson St, Los Angeles, CA 90001" +162704,AAA Batteries (4-pack),1,2.99,02/14/19 13:49,"712 Madison St, Boston, MA 02215" +162705,AAA Batteries (4-pack),2,2.99,02/21/19 09:04,"736 Pine St, San Francisco, CA 94016" +162706,Wired Headphones,1,11.99,02/28/19 10:14,"140 10th St, Seattle, WA 98101" +162707,LG Washing Machine,1,600.0,02/18/19 20:35,"595 13th St, Austin, TX 73301" +162708,iPhone,1,700,02/20/19 19:31,"5 Washington St, San Francisco, CA 94016" +162709,AAA Batteries (4-pack),1,2.99,02/13/19 19:41,"432 Washington St, Los Angeles, CA 90001" +162710,USB-C Charging Cable,1,11.95,02/04/19 14:34,"487 10th St, San Francisco, CA 94016" +162711,Apple Airpods Headphones,1,150,02/20/19 16:27,"855 Hill St, New York City, NY 10001" +162712,Wired Headphones,1,11.99,02/11/19 19:02,"423 14th St, Austin, TX 73301" +162713,ThinkPad Laptop,1,999.99,02/02/19 13:00,"509 Lakeview St, Austin, TX 73301" +162714,34in Ultrawide Monitor,1,379.99,02/28/19 22:00,"684 Maple St, Dallas, TX 75001" +162715,Apple Airpods Headphones,1,150,02/07/19 19:25,"668 14th St, Seattle, WA 98101" +162716,Wired Headphones,1,11.99,02/23/19 16:39,"622 Elm St, Los Angeles, CA 90001" +162717,AA Batteries (4-pack),1,3.84,02/18/19 07:42,"118 Johnson St, New York City, NY 10001" +162718,Apple Airpods Headphones,1,150,02/27/19 20:36,"549 7th St, Los Angeles, CA 90001" +162719,Bose SoundSport Headphones,1,99.99,02/14/19 16:04,"436 12th St, Dallas, TX 75001" +162720,AAA Batteries (4-pack),1,2.99,02/14/19 11:24,"755 8th St, Atlanta, GA 30301" +162721,27in 4K Gaming Monitor,1,389.99,02/11/19 17:27,"903 North St, San Francisco, CA 94016" +162722,Vareebadd Phone,1,400,02/23/19 23:46,"386 Main St, Los Angeles, CA 90001" +162723,27in 4K Gaming Monitor,1,389.99,02/25/19 08:14,"950 Pine St, Los Angeles, CA 90001" +162724,ThinkPad Laptop,1,999.99,02/06/19 17:25,"161 Hickory St, Dallas, TX 75001" +162725,AAA Batteries (4-pack),2,2.99,02/09/19 16:24,"911 Washington St, Dallas, TX 75001" +162726,Wired Headphones,1,11.99,02/13/19 18:32,"305 South St, Austin, TX 73301" +162727,AA Batteries (4-pack),1,3.84,02/15/19 22:10,"471 14th St, Boston, MA 02215" +162728,Wired Headphones,1,11.99,02/01/19 21:37,"4 Church St, Boston, MA 02215" +162729,USB-C Charging Cable,1,11.95,02/13/19 16:50,"732 Walnut St, Dallas, TX 75001" +162730,AAA Batteries (4-pack),1,2.99,02/27/19 00:05,"823 Washington St, Seattle, WA 98101" +162731,Macbook Pro Laptop,1,1700,02/11/19 20:54,"489 Dogwood St, San Francisco, CA 94016" +162732,34in Ultrawide Monitor,1,379.99,02/12/19 08:46,"549 4th St, Los Angeles, CA 90001" +162733,Lightning Charging Cable,1,14.95,02/02/19 19:08,"218 7th St, Dallas, TX 75001" +162734,Bose SoundSport Headphones,1,99.99,02/07/19 13:01,"567 West St, San Francisco, CA 94016" +162735,USB-C Charging Cable,1,11.95,02/21/19 19:24,"391 Adams St, Boston, MA 02215" +162736,27in 4K Gaming Monitor,1,389.99,02/04/19 19:08,"50 12th St, Boston, MA 02215" +162737,Wired Headphones,2,11.99,02/19/19 12:58,"140 Meadow St, Atlanta, GA 30301" +162738,AAA Batteries (4-pack),4,2.99,02/23/19 20:34,"679 Park St, San Francisco, CA 94016" +162739,Lightning Charging Cable,1,14.95,02/15/19 14:49,"164 Maple St, Los Angeles, CA 90001" +162740,USB-C Charging Cable,1,11.95,02/16/19 09:24,"821 South St, Portland, OR 97035" +162741,Bose SoundSport Headphones,1,99.99,02/16/19 01:57,"653 West St, Atlanta, GA 30301" +162742,Wired Headphones,1,11.99,02/20/19 06:51,"704 Pine St, New York City, NY 10001" +162743,27in 4K Gaming Monitor,1,389.99,02/13/19 19:43,"780 11th St, Los Angeles, CA 90001" +162744,Bose SoundSport Headphones,1,99.99,02/22/19 00:30,"661 2nd St, San Francisco, CA 94016" +162745,Wired Headphones,1,11.99,02/20/19 17:11,"793 12th St, Los Angeles, CA 90001" +162746,20in Monitor,1,109.99,02/19/19 00:06,"900 Meadow St, San Francisco, CA 94016" +162747,AAA Batteries (4-pack),1,2.99,02/15/19 03:24,"940 Washington St, Portland, OR 97035" +162748,AAA Batteries (4-pack),1,2.99,02/27/19 21:09,"116 River St, New York City, NY 10001" +162749,Wired Headphones,1,11.99,02/08/19 19:24,"766 12th St, Dallas, TX 75001" +162750,Wired Headphones,1,11.99,02/13/19 07:42,"585 Willow St, Atlanta, GA 30301" +162751,USB-C Charging Cable,1,11.95,02/11/19 22:05,"711 1st St, Portland, OR 97035" +162752,AAA Batteries (4-pack),1,2.99,02/27/19 15:28,"393 Jackson St, San Francisco, CA 94016" +162753,Lightning Charging Cable,1,14.95,02/17/19 17:42,"573 Lakeview St, Los Angeles, CA 90001" +162754,AA Batteries (4-pack),1,3.84,02/12/19 11:56,"517 Jackson St, Austin, TX 73301" +162755,USB-C Charging Cable,1,11.95,02/27/19 10:56,"622 5th St, Austin, TX 73301" +162756,USB-C Charging Cable,1,11.95,02/10/19 12:46,"707 Church St, Seattle, WA 98101" +162757,Macbook Pro Laptop,1,1700,02/24/19 17:27,"48 Johnson St, Boston, MA 02215" +162758,USB-C Charging Cable,1,11.95,02/13/19 21:35,"863 Maple St, San Francisco, CA 94016" +162759,AAA Batteries (4-pack),3,2.99,02/23/19 19:44,"195 Ridge St, New York City, NY 10001" +162760,USB-C Charging Cable,2,11.95,02/03/19 11:57,"718 South St, Los Angeles, CA 90001" +162761,Lightning Charging Cable,1,14.95,02/18/19 00:36,"538 Walnut St, Dallas, TX 75001" +162762,AAA Batteries (4-pack),2,2.99,02/04/19 12:15,"532 Hill St, Atlanta, GA 30301" +162763,Flatscreen TV,1,300,02/26/19 05:50,"916 Pine St, New York City, NY 10001" +162764,27in FHD Monitor,1,149.99,02/28/19 12:46,"235 Pine St, Atlanta, GA 30301" +162765,Google Phone,1,600,02/28/19 13:19,"21 Cherry St, New York City, NY 10001" +162765,Bose SoundSport Headphones,1,99.99,02/28/19 13:19,"21 Cherry St, New York City, NY 10001" +162766,USB-C Charging Cable,1,11.95,02/05/19 10:47,"295 1st St, San Francisco, CA 94016" +162767,Bose SoundSport Headphones,1,99.99,02/08/19 21:40,"270 Sunset St, Boston, MA 02215" +162768,Lightning Charging Cable,1,14.95,02/26/19 13:04,"769 Jackson St, San Francisco, CA 94016" +162769,Flatscreen TV,1,300,02/06/19 00:51,"649 South St, Los Angeles, CA 90001" +162770,USB-C Charging Cable,1,11.95,02/11/19 16:42,"973 7th St, New York City, NY 10001" +162771,Apple Airpods Headphones,1,150,02/24/19 08:41,"518 Johnson St, Seattle, WA 98101" +162772,34in Ultrawide Monitor,1,379.99,02/05/19 20:15,"919 Park St, Atlanta, GA 30301" +162772,Wired Headphones,1,11.99,02/05/19 20:15,"919 Park St, Atlanta, GA 30301" +162773,AAA Batteries (4-pack),2,2.99,02/01/19 12:24,"85 Lakeview St, Dallas, TX 75001" +162774,USB-C Charging Cable,1,11.95,02/08/19 08:59,"689 Madison St, San Francisco, CA 94016" +162774,Lightning Charging Cable,2,14.95,02/08/19 08:59,"689 Madison St, San Francisco, CA 94016" +162775,AA Batteries (4-pack),1,3.84,02/20/19 12:35,"490 Lake St, New York City, NY 10001" +162776,Wired Headphones,1,11.99,02/10/19 19:37,"80 Highland St, San Francisco, CA 94016" +162777,USB-C Charging Cable,1,11.95,02/28/19 14:46,"297 Lake St, New York City, NY 10001" +162778,iPhone,1,700,02/14/19 19:15,"867 6th St, New York City, NY 10001" +162779,Apple Airpods Headphones,1,150,02/08/19 11:47,"508 South St, New York City, NY 10001" +162780,USB-C Charging Cable,1,11.95,02/07/19 18:47,"838 Center St, Los Angeles, CA 90001" +162781,34in Ultrawide Monitor,1,379.99,02/21/19 22:40,"105 Washington St, New York City, NY 10001" +162782,Wired Headphones,1,11.99,02/02/19 09:03,"973 Jefferson St, New York City, NY 10001" +162783,AAA Batteries (4-pack),2,2.99,02/15/19 20:42,"336 2nd St, Dallas, TX 75001" +162784,USB-C Charging Cable,1,11.95,02/06/19 19:50,"250 Pine St, Los Angeles, CA 90001" +162785,USB-C Charging Cable,1,11.95,02/08/19 09:08,"746 Pine St, San Francisco, CA 94016" +162786,27in 4K Gaming Monitor,1,389.99,02/08/19 12:06,"233 Jackson St, Los Angeles, CA 90001" +162787,Lightning Charging Cable,1,14.95,02/27/19 12:27,"230 13th St, Atlanta, GA 30301" +162788,USB-C Charging Cable,1,11.95,02/23/19 11:26,"151 Walnut St, Boston, MA 02215" +162789,20in Monitor,1,109.99,02/18/19 13:27,"198 Center St, New York City, NY 10001" +162790,Flatscreen TV,1,300,02/05/19 18:11,"592 Maple St, Portland, OR 97035" +162791,20in Monitor,1,109.99,02/25/19 16:20,"241 9th St, San Francisco, CA 94016" +162792,AA Batteries (4-pack),3,3.84,02/27/19 13:35,"955 13th St, New York City, NY 10001" +162793,AA Batteries (4-pack),1,3.84,02/26/19 14:28,"50 River St, Boston, MA 02215" +162794,Macbook Pro Laptop,1,1700,02/13/19 21:54,"197 Chestnut St, San Francisco, CA 94016" +162795,Lightning Charging Cable,1,14.95,02/16/19 14:33,"748 River St, Portland, OR 97035" +162796,Google Phone,1,600,02/23/19 14:34,"72 River St, New York City, NY 10001" +162797,Wired Headphones,1,11.99,02/11/19 14:06,"279 Pine St, San Francisco, CA 94016" +162798,20in Monitor,1,109.99,02/09/19 13:03,"695 Sunset St, Boston, MA 02215" +162799,Wired Headphones,1,11.99,02/18/19 23:22,"34 Main St, San Francisco, CA 94016" +162800,Bose SoundSport Headphones,1,99.99,02/26/19 10:33,"543 12th St, Boston, MA 02215" +162801,Flatscreen TV,1,300,02/14/19 11:58,"174 Hill St, Seattle, WA 98101" +162802,Lightning Charging Cable,1,14.95,02/10/19 11:41,"470 10th St, San Francisco, CA 94016" +162803,AAA Batteries (4-pack),3,2.99,02/03/19 17:01,"557 Ridge St, Boston, MA 02215" +162803,AAA Batteries (4-pack),1,2.99,02/03/19 17:01,"557 Ridge St, Boston, MA 02215" +162804,AAA Batteries (4-pack),1,2.99,02/27/19 06:15,"874 Madison St, Boston, MA 02215" +162805,AAA Batteries (4-pack),2,2.99,02/06/19 07:25,"266 Johnson St, Dallas, TX 75001" +162806,AAA Batteries (4-pack),1,2.99,02/08/19 20:28,"27 4th St, Atlanta, GA 30301" +162807,Wired Headphones,2,11.99,02/03/19 13:10,"148 1st St, Los Angeles, CA 90001" +162808,iPhone,1,700,02/15/19 16:21,"936 Lincoln St, Boston, MA 02215" +162808,Wired Headphones,1,11.99,02/15/19 16:21,"936 Lincoln St, Boston, MA 02215" +162809,iPhone,1,700,02/21/19 22:38,"931 Ridge St, Portland, OR 97035" +162810,Google Phone,1,600,02/18/19 14:27,"672 Park St, Boston, MA 02215" +162811,Flatscreen TV,1,300,02/14/19 18:49,"804 10th St, Dallas, TX 75001" +162812,AA Batteries (4-pack),1,3.84,02/25/19 23:07,"750 Elm St, Los Angeles, CA 90001" +162813,Google Phone,1,600,02/09/19 21:02,"252 Walnut St, Dallas, TX 75001" +162814,27in FHD Monitor,1,149.99,02/13/19 19:56,"320 Maple St, Los Angeles, CA 90001" +162815,AAA Batteries (4-pack),1,2.99,02/12/19 01:01,"122 Ridge St, San Francisco, CA 94016" +162816,AAA Batteries (4-pack),2,2.99,02/24/19 07:38,"641 River St, Boston, MA 02215" +162817,AA Batteries (4-pack),1,3.84,02/11/19 08:36,"113 North St, Los Angeles, CA 90001" +162818,Apple Airpods Headphones,1,150,02/13/19 20:36,"172 Chestnut St, Los Angeles, CA 90001" +162819,Macbook Pro Laptop,1,1700,02/16/19 08:34,"84 5th St, San Francisco, CA 94016" +162819,ThinkPad Laptop,1,999.99,02/16/19 08:34,"84 5th St, San Francisco, CA 94016" +162820,Lightning Charging Cable,1,14.95,02/28/19 17:50,"956 1st St, Los Angeles, CA 90001" +162821,ThinkPad Laptop,1,999.99,02/15/19 14:48,"617 Jackson St, Los Angeles, CA 90001" +162822,Bose SoundSport Headphones,1,99.99,02/01/19 13:53,"890 13th St, Boston, MA 02215" +162823,Bose SoundSport Headphones,1,99.99,02/13/19 20:15,"963 6th St, San Francisco, CA 94016" +162824,Bose SoundSport Headphones,1,99.99,02/20/19 09:39,"835 Washington St, San Francisco, CA 94016" +162825,USB-C Charging Cable,2,11.95,02/05/19 14:42,"330 11th St, San Francisco, CA 94016" +162826,Apple Airpods Headphones,1,150,02/23/19 19:22,"400 Wilson St, Seattle, WA 98101" +162827,USB-C Charging Cable,1,11.95,02/10/19 19:59,"227 Cherry St, New York City, NY 10001" +162828,Bose SoundSport Headphones,1,99.99,02/28/19 20:05,"484 Washington St, Portland, OR 97035" +162829,Bose SoundSport Headphones,1,99.99,02/19/19 00:01,"160 6th St, Los Angeles, CA 90001" +162830,AAA Batteries (4-pack),6,2.99,02/04/19 15:43,"333 Lincoln St, Atlanta, GA 30301" +162831,AA Batteries (4-pack),1,3.84,02/09/19 18:30,"25 8th St, New York City, NY 10001" +162832,AA Batteries (4-pack),1,3.84,02/23/19 17:00,"519 Maple St, Los Angeles, CA 90001" +162833,27in 4K Gaming Monitor,1,389.99,02/27/19 15:52,"561 Hickory St, Portland, OR 97035" +162834,USB-C Charging Cable,1,11.95,02/26/19 14:34,"256 4th St, Seattle, WA 98101" +162835,USB-C Charging Cable,1,11.95,02/17/19 12:12,"784 1st St, San Francisco, CA 94016" +162836,USB-C Charging Cable,1,11.95,02/09/19 19:52,"276 Chestnut St, Boston, MA 02215" +162837,27in FHD Monitor,1,149.99,02/27/19 21:24,"33 Center St, San Francisco, CA 94016" +162838,USB-C Charging Cable,1,11.95,02/04/19 19:54,"592 6th St, Boston, MA 02215" +162839,Apple Airpods Headphones,1,150,02/07/19 12:20,"910 Spruce St, Dallas, TX 75001" +162840,Wired Headphones,3,11.99,02/10/19 21:14,"381 Washington St, Atlanta, GA 30301" +162841,Lightning Charging Cable,1,14.95,02/08/19 00:10,"56 Lake St, San Francisco, CA 94016" +162842,Lightning Charging Cable,1,14.95,02/02/19 14:11,"124 Jackson St, New York City, NY 10001" +162843,AAA Batteries (4-pack),2,2.99,02/11/19 18:01,"96 Elm St, New York City, NY 10001" +162844,AAA Batteries (4-pack),1,2.99,02/03/19 07:54,"742 Willow St, San Francisco, CA 94016" +162845,AA Batteries (4-pack),1,3.84,02/21/19 06:27,"716 12th St, Seattle, WA 98101" +162846,USB-C Charging Cable,1,11.95,02/24/19 21:31,"268 South St, New York City, NY 10001" +162847,Wired Headphones,1,11.99,02/05/19 20:42,"585 11th St, Portland, OR 97035" +162848,AAA Batteries (4-pack),1,2.99,02/25/19 12:19,"908 Lake St, Seattle, WA 98101" +162849,AA Batteries (4-pack),1,3.84,02/01/19 20:53,"988 14th St, San Francisco, CA 94016" +162850,Flatscreen TV,1,300,02/24/19 16:51,"78 11th St, Seattle, WA 98101" +162851,Lightning Charging Cable,1,14.95,02/24/19 18:21,"820 Walnut St, San Francisco, CA 94016" +162852,Lightning Charging Cable,2,14.95,02/05/19 14:29,"853 7th St, Los Angeles, CA 90001" +162853,27in FHD Monitor,1,149.99,02/28/19 16:33,"373 Lincoln St, Dallas, TX 75001" +162854,27in 4K Gaming Monitor,1,389.99,02/12/19 19:44,"498 Elm St, Atlanta, GA 30301" +162855,Wired Headphones,1,11.99,02/05/19 21:11,"231 Lakeview St, Dallas, TX 75001" +162856,Lightning Charging Cable,1,14.95,02/07/19 19:52,"27 Center St, Los Angeles, CA 90001" +162857,AA Batteries (4-pack),1,3.84,02/27/19 01:12,"592 2nd St, Los Angeles, CA 90001" +162858,Wired Headphones,1,11.99,02/22/19 00:23,"459 Hickory St, Los Angeles, CA 90001" +162859,Wired Headphones,1,11.99,02/20/19 22:05,"58 Madison St, Atlanta, GA 30301" +162860,34in Ultrawide Monitor,1,379.99,02/12/19 09:59,"968 Washington St, New York City, NY 10001" +162861,34in Ultrawide Monitor,1,379.99,02/04/19 11:14,"614 North St, Seattle, WA 98101" +162862,Apple Airpods Headphones,1,150,02/13/19 06:38,"325 Spruce St, New York City, NY 10001" +162863,AAA Batteries (4-pack),2,2.99,02/05/19 20:00,"273 Spruce St, Portland, ME 04101" +162864,AA Batteries (4-pack),3,3.84,02/03/19 12:30,"210 Jackson St, Atlanta, GA 30301" +162865,AAA Batteries (4-pack),2,2.99,02/20/19 12:45,"211 North St, Seattle, WA 98101" +162866,USB-C Charging Cable,1,11.95,02/13/19 23:13,"568 Cedar St, New York City, NY 10001" +162867,Lightning Charging Cable,1,14.95,02/10/19 12:24,"829 Madison St, Seattle, WA 98101" +162868,AA Batteries (4-pack),1,3.84,02/21/19 17:40,"29 Highland St, Seattle, WA 98101" +162869,Wired Headphones,1,11.99,02/01/19 21:20,"181 Elm St, Boston, MA 02215" +162870,AA Batteries (4-pack),1,3.84,02/20/19 13:58,"451 Park St, San Francisco, CA 94016" +162871,AAA Batteries (4-pack),2,2.99,02/12/19 20:21,"270 Cedar St, Dallas, TX 75001" +162872,USB-C Charging Cable,1,11.95,02/07/19 12:47,"454 9th St, Los Angeles, CA 90001" +162873,Apple Airpods Headphones,1,150,02/24/19 23:24,"365 6th St, Boston, MA 02215" +162874,AAA Batteries (4-pack),2,2.99,02/06/19 21:38,"532 Cedar St, Seattle, WA 98101" +162875,Wired Headphones,1,11.99,02/16/19 08:50,"125 Park St, Dallas, TX 75001" +162876,Google Phone,1,600,02/14/19 14:55,"473 14th St, Los Angeles, CA 90001" +162876,Wired Headphones,1,11.99,02/14/19 14:55,"473 14th St, Los Angeles, CA 90001" +162877,USB-C Charging Cable,1,11.95,02/28/19 15:01,"174 North St, San Francisco, CA 94016" +162878,USB-C Charging Cable,1,11.95,02/14/19 14:55,"455 Cherry St, San Francisco, CA 94016" +162879,AAA Batteries (4-pack),3,2.99,02/06/19 11:31,"492 Cedar St, Atlanta, GA 30301" +162880,27in FHD Monitor,1,149.99,02/11/19 10:44,"70 Lincoln St, Boston, MA 02215" +162881,USB-C Charging Cable,1,11.95,02/16/19 19:35,"770 Lakeview St, Seattle, WA 98101" +162882,Lightning Charging Cable,1,14.95,02/05/19 19:03,"736 Spruce St, Boston, MA 02215" +162883,Bose SoundSport Headphones,1,99.99,02/03/19 22:32,"460 Ridge St, Portland, OR 97035" +162884,27in FHD Monitor,1,149.99,02/24/19 22:19,"954 North St, Boston, MA 02215" +162885,Wired Headphones,1,11.99,02/13/19 22:40,"190 Center St, Los Angeles, CA 90001" +162886,Apple Airpods Headphones,1,150,02/02/19 18:44,"933 14th St, Atlanta, GA 30301" +162887,AAA Batteries (4-pack),1,2.99,02/28/19 17:25,"213 12th St, San Francisco, CA 94016" +162888,AAA Batteries (4-pack),4,2.99,02/17/19 22:18,"887 Walnut St, Seattle, WA 98101" +162889,AAA Batteries (4-pack),1,2.99,02/01/19 08:52,"932 Hill St, San Francisco, CA 94016" +162890,AAA Batteries (4-pack),1,2.99,02/16/19 19:31,"509 Hickory St, Dallas, TX 75001" +162891,27in FHD Monitor,1,149.99,02/04/19 08:25,"764 12th St, Portland, OR 97035" +162892,Lightning Charging Cable,1,14.95,02/12/19 16:20,"816 Ridge St, Dallas, TX 75001" +162893,Google Phone,1,600,02/18/19 09:52,"684 Sunset St, New York City, NY 10001" +162894,27in 4K Gaming Monitor,1,389.99,02/15/19 16:09,"655 Ridge St, Seattle, WA 98101" +162895,Google Phone,1,600,02/09/19 09:31,"60 7th St, New York City, NY 10001" +162896,Bose SoundSport Headphones,1,99.99,02/11/19 20:53,"223 5th St, Los Angeles, CA 90001" +162897,AAA Batteries (4-pack),2,2.99,02/09/19 07:12,"529 8th St, Dallas, TX 75001" +162898,Wired Headphones,1,11.99,02/23/19 23:14,"662 1st St, Portland, OR 97035" +162899,AA Batteries (4-pack),1,3.84,02/02/19 10:20,"567 Cherry St, New York City, NY 10001" +162900,Macbook Pro Laptop,1,1700,02/15/19 22:48,"124 Meadow St, Dallas, TX 75001" +162901,Wired Headphones,1,11.99,02/22/19 23:00,"842 Sunset St, New York City, NY 10001" +162902,Lightning Charging Cable,1,14.95,02/11/19 21:47,"894 Cedar St, Portland, OR 97035" +162903,Lightning Charging Cable,1,14.95,02/10/19 07:42,"343 Church St, San Francisco, CA 94016" +162904,34in Ultrawide Monitor,1,379.99,02/22/19 20:46,"463 14th St, Seattle, WA 98101" +162905,USB-C Charging Cable,1,11.95,02/28/19 20:20,"263 4th St, New York City, NY 10001" +162906,AAA Batteries (4-pack),1,2.99,02/18/19 12:33,"620 11th St, Dallas, TX 75001" +162907,AA Batteries (4-pack),1,3.84,02/01/19 14:44,"130 Maple St, San Francisco, CA 94016" +162908,27in FHD Monitor,1,149.99,02/07/19 17:21,"433 Adams St, San Francisco, CA 94016" +162909,Bose SoundSport Headphones,1,99.99,02/26/19 20:37,"775 Lake St, New York City, NY 10001" +162910,27in 4K Gaming Monitor,1,389.99,02/13/19 07:53,"21 Highland St, San Francisco, CA 94016" +162911,Lightning Charging Cable,1,14.95,02/09/19 12:39,"652 Adams St, Los Angeles, CA 90001" +162912,Apple Airpods Headphones,1,150,02/15/19 14:39,"27 Lake St, Seattle, WA 98101" +162913,USB-C Charging Cable,1,11.95,02/20/19 23:03,"598 9th St, Seattle, WA 98101" +162914,34in Ultrawide Monitor,1,379.99,02/20/19 18:45,"830 7th St, Atlanta, GA 30301" +162915,Lightning Charging Cable,1,14.95,02/06/19 11:43,"184 Jefferson St, San Francisco, CA 94016" +162916,Wired Headphones,1,11.99,02/22/19 12:33,"506 Elm St, Atlanta, GA 30301" +162917,AA Batteries (4-pack),1,3.84,02/13/19 13:26,"521 8th St, San Francisco, CA 94016" +162918,iPhone,1,700,02/09/19 13:40,"231 Highland St, San Francisco, CA 94016" +162918,Wired Headphones,1,11.99,02/09/19 13:40,"231 Highland St, San Francisco, CA 94016" +162919,Lightning Charging Cable,1,14.95,02/15/19 17:03,"848 Wilson St, San Francisco, CA 94016" +162920,Flatscreen TV,1,300,02/11/19 14:06,"433 13th St, Dallas, TX 75001" +162921,Bose SoundSport Headphones,1,99.99,02/05/19 22:24,"65 Forest St, Portland, OR 97035" +162922,Bose SoundSport Headphones,1,99.99,02/03/19 07:18,"594 Lincoln St, Los Angeles, CA 90001" +162923,27in FHD Monitor,1,149.99,02/28/19 21:24,"382 7th St, San Francisco, CA 94016" +162924,34in Ultrawide Monitor,1,379.99,02/10/19 12:20,"834 9th St, New York City, NY 10001" +162925,AA Batteries (4-pack),1,3.84,02/23/19 14:39,"283 River St, Dallas, TX 75001" +162926,Wired Headphones,1,11.99,02/26/19 23:42,"802 Jefferson St, Austin, TX 73301" +162927,Vareebadd Phone,1,400,02/27/19 15:30,"555 Wilson St, New York City, NY 10001" +162928,USB-C Charging Cable,1,11.95,02/18/19 11:46,"85 Highland St, Portland, OR 97035" +162929,USB-C Charging Cable,2,11.95,02/13/19 10:58,"696 North St, Portland, ME 04101" +162930,20in Monitor,1,109.99,02/14/19 10:19,"290 Washington St, San Francisco, CA 94016" +162931,Lightning Charging Cable,1,14.95,02/10/19 09:27,"649 Main St, San Francisco, CA 94016" +162932,Bose SoundSport Headphones,1,99.99,02/13/19 15:57,"611 11th St, Boston, MA 02215" +162933,Apple Airpods Headphones,1,150,02/07/19 11:02,"474 Adams St, Los Angeles, CA 90001" +162934,Lightning Charging Cable,1,14.95,02/24/19 11:50,"863 Cedar St, Los Angeles, CA 90001" +162935,AA Batteries (4-pack),1,3.84,02/04/19 20:11,"345 Pine St, Los Angeles, CA 90001" +162936,27in 4K Gaming Monitor,1,389.99,02/18/19 16:47,"761 Willow St, San Francisco, CA 94016" +162937,27in FHD Monitor,1,149.99,02/21/19 08:43,"686 Forest St, Dallas, TX 75001" +162938,Lightning Charging Cable,1,14.95,02/04/19 09:39,"754 North St, New York City, NY 10001" +162939,Lightning Charging Cable,1,14.95,02/28/19 19:36,"314 1st St, Portland, OR 97035" +162940,Wired Headphones,1,11.99,02/11/19 13:10,"240 Washington St, Dallas, TX 75001" +162941,27in FHD Monitor,1,149.99,02/25/19 12:28,"277 North St, New York City, NY 10001" +162942,Apple Airpods Headphones,1,150,02/16/19 09:13,"545 5th St, Atlanta, GA 30301" +162943,Flatscreen TV,1,300,02/17/19 01:05,"234 5th St, Portland, OR 97035" +162944,ThinkPad Laptop,1,999.99,02/03/19 10:50,"309 Highland St, San Francisco, CA 94016" +162945,Lightning Charging Cable,1,14.95,02/05/19 09:56,"75 River St, Los Angeles, CA 90001" +162946,AAA Batteries (4-pack),2,2.99,02/22/19 07:44,"562 Wilson St, Portland, OR 97035" +162947,Bose SoundSport Headphones,1,99.99,02/18/19 13:23,"925 Lake St, San Francisco, CA 94016" +162948,27in 4K Gaming Monitor,1,389.99,02/28/19 08:58,"589 West St, Los Angeles, CA 90001" +162949,Bose SoundSport Headphones,1,99.99,02/01/19 21:18,"720 Pine St, Boston, MA 02215" +162950,ThinkPad Laptop,1,999.99,02/15/19 12:37,"847 Elm St, Boston, MA 02215" +162951,27in 4K Gaming Monitor,1,389.99,02/09/19 14:12,"713 Lincoln St, New York City, NY 10001" +162952,Google Phone,1,600,02/16/19 21:51,"141 Forest St, Seattle, WA 98101" +162953,AA Batteries (4-pack),1,3.84,02/21/19 22:36,"211 West St, San Francisco, CA 94016" +162954,Bose SoundSport Headphones,1,99.99,02/10/19 23:02,"149 8th St, Boston, MA 02215" +162955,Apple Airpods Headphones,1,150,02/12/19 19:31,"96 South St, Dallas, TX 75001" +162956,Wired Headphones,1,11.99,02/28/19 13:48,"977 Church St, New York City, NY 10001" +162957,27in FHD Monitor,1,149.99,02/03/19 11:30,"976 6th St, New York City, NY 10001" +162958,34in Ultrawide Monitor,1,379.99,02/14/19 22:06,"740 North St, San Francisco, CA 94016" +162959,Apple Airpods Headphones,1,150,02/15/19 14:22,"574 Pine St, Austin, TX 73301" +162960,Wired Headphones,1,11.99,02/09/19 19:06,"72 Ridge St, San Francisco, CA 94016" +162961,Bose SoundSport Headphones,1,99.99,02/13/19 01:09,"852 9th St, San Francisco, CA 94016" +162962,Macbook Pro Laptop,1,1700,02/06/19 10:17,"992 Cedar St, Dallas, TX 75001" +162963,Lightning Charging Cable,1,14.95,02/12/19 12:45,"18 Cedar St, Seattle, WA 98101" +162964,ThinkPad Laptop,1,999.99,02/05/19 19:24,"780 1st St, New York City, NY 10001" +162965,Apple Airpods Headphones,1,150,02/28/19 18:52,"300 Cherry St, Los Angeles, CA 90001" +162966,Apple Airpods Headphones,1,150,02/11/19 20:12,"304 Cherry St, Austin, TX 73301" +162967,Apple Airpods Headphones,1,150,02/03/19 13:28,"626 5th St, New York City, NY 10001" +162968,Bose SoundSport Headphones,1,99.99,02/20/19 09:40,"143 Hickory St, San Francisco, CA 94016" +162969,AAA Batteries (4-pack),2,2.99,02/01/19 22:25,"741 Wilson St, Atlanta, GA 30301" +162970,AA Batteries (4-pack),3,3.84,02/27/19 17:47,"260 Maple St, Seattle, WA 98101" +162971,Wired Headphones,1,11.99,02/01/19 14:25,"669 Lake St, Portland, OR 97035" +162972,Google Phone,1,600,02/09/19 18:42,"820 6th St, Portland, OR 97035" +162973,Bose SoundSport Headphones,1,99.99,02/21/19 18:40,"92 Hickory St, Los Angeles, CA 90001" +162974,Bose SoundSport Headphones,1,99.99,02/12/19 14:53,"28 Spruce St, Los Angeles, CA 90001" +162975,AA Batteries (4-pack),1,3.84,02/22/19 06:55,"174 Jackson St, New York City, NY 10001" +162976,AAA Batteries (4-pack),1,2.99,02/14/19 20:03,"810 Johnson St, Austin, TX 73301" +162977,34in Ultrawide Monitor,1,379.99,02/05/19 10:30,"92 Washington St, Seattle, WA 98101" +162978,AAA Batteries (4-pack),1,2.99,02/07/19 20:30,"875 Jefferson St, Los Angeles, CA 90001" +162979,Macbook Pro Laptop,1,1700,02/27/19 22:34,"262 Sunset St, Portland, ME 04101" +162980,AA Batteries (4-pack),1,3.84,02/22/19 21:09,"950 5th St, San Francisco, CA 94016" +162981,iPhone,1,700,02/03/19 10:21,"387 South St, Los Angeles, CA 90001" +162982,iPhone,1,700,02/06/19 18:47,"908 Johnson St, Los Angeles, CA 90001" +162982,Wired Headphones,1,11.99,02/06/19 18:47,"908 Johnson St, Los Angeles, CA 90001" +162983,AA Batteries (4-pack),1,3.84,02/07/19 13:11,"299 Center St, San Francisco, CA 94016" +162984,Apple Airpods Headphones,1,150,02/12/19 19:51,"504 Cedar St, San Francisco, CA 94016" +162985,ThinkPad Laptop,1,999.99,02/04/19 16:47,"850 Lakeview St, New York City, NY 10001" +162986,20in Monitor,1,109.99,02/09/19 20:44,"109 10th St, New York City, NY 10001" +162986,USB-C Charging Cable,1,11.95,02/09/19 20:44,"109 10th St, New York City, NY 10001" +162987,Google Phone,1,600,02/10/19 10:00,"160 Jefferson St, Los Angeles, CA 90001" +162988,Apple Airpods Headphones,1,150,02/23/19 23:40,"711 Willow St, San Francisco, CA 94016" +162989,34in Ultrawide Monitor,1,379.99,02/04/19 09:19,"188 Ridge St, San Francisco, CA 94016" +162990,Vareebadd Phone,1,400,02/27/19 07:53,"247 12th St, New York City, NY 10001" +162990,USB-C Charging Cable,1,11.95,02/27/19 07:53,"247 12th St, New York City, NY 10001" +162990,Wired Headphones,1,11.99,02/27/19 07:53,"247 12th St, New York City, NY 10001" +162991,Bose SoundSport Headphones,1,99.99,02/07/19 21:59,"344 Maple St, Boston, MA 02215" +162992,AAA Batteries (4-pack),1,2.99,02/07/19 11:57,"168 11th St, Boston, MA 02215" +162993,AAA Batteries (4-pack),2,2.99,02/12/19 19:41,"263 Main St, Seattle, WA 98101" +162994,Bose SoundSport Headphones,1,99.99,02/24/19 04:17,"34 Pine St, Atlanta, GA 30301" +162995,iPhone,1,700,02/22/19 13:35,"171 1st St, Austin, TX 73301" +162995,Lightning Charging Cable,1,14.95,02/22/19 13:35,"171 1st St, Austin, TX 73301" +162996,Lightning Charging Cable,1,14.95,02/18/19 12:57,"87 Madison St, San Francisco, CA 94016" +162997,USB-C Charging Cable,1,11.95,02/07/19 13:19,"555 Walnut St, San Francisco, CA 94016" +162998,AA Batteries (4-pack),1,3.84,02/04/19 13:51,"634 South St, Los Angeles, CA 90001" +162999,AA Batteries (4-pack),1,3.84,02/27/19 00:05,"799 Cherry St, San Francisco, CA 94016" +163000,USB-C Charging Cable,1,11.95,02/28/19 11:01,"480 Walnut St, Portland, OR 97035" +163001,Apple Airpods Headphones,1,150,02/04/19 22:08,"259 River St, San Francisco, CA 94016" +163002,Wired Headphones,1,11.99,02/01/19 18:14,"924 9th St, San Francisco, CA 94016" +163003,20in Monitor,1,109.99,02/27/19 14:27,"888 6th St, New York City, NY 10001" +163004,ThinkPad Laptop,1,999.99,02/03/19 23:43,"714 2nd St, Boston, MA 02215" +163005,Apple Airpods Headphones,1,150,02/09/19 11:01,"55 14th St, Atlanta, GA 30301" +163006,AA Batteries (4-pack),1,3.84,02/12/19 11:34,"881 Chestnut St, San Francisco, CA 94016" +163007,Apple Airpods Headphones,1,150,02/09/19 20:29,"23 12th St, San Francisco, CA 94016" +163008,Bose SoundSport Headphones,1,99.99,02/27/19 19:41,"482 13th St, New York City, NY 10001" +163009,AA Batteries (4-pack),3,3.84,02/28/19 15:16,"963 7th St, Boston, MA 02215" +163010,20in Monitor,2,109.99,02/18/19 19:05,"995 2nd St, San Francisco, CA 94016" +163011,iPhone,1,700,02/17/19 15:28,"448 Ridge St, Austin, TX 73301" +163011,Wired Headphones,1,11.99,02/17/19 15:28,"448 Ridge St, Austin, TX 73301" +163012,Bose SoundSport Headphones,1,99.99,02/08/19 15:58,"943 Hickory St, Boston, MA 02215" +163013,USB-C Charging Cable,1,11.95,02/23/19 12:10,"256 South St, Seattle, WA 98101" +163014,27in FHD Monitor,1,149.99,02/21/19 18:45,"31 North St, Seattle, WA 98101" +163015,Bose SoundSport Headphones,1,99.99,02/06/19 10:58,"511 8th St, New York City, NY 10001" +163016,Wired Headphones,2,11.99,02/15/19 16:21,"299 11th St, Boston, MA 02215" +163017,AAA Batteries (4-pack),2,2.99,02/21/19 21:19,"822 6th St, Atlanta, GA 30301" +163018,Wired Headphones,1,11.99,02/27/19 11:38,"24 Cedar St, Los Angeles, CA 90001" +163019,34in Ultrawide Monitor,1,379.99,02/02/19 17:35,"346 6th St, San Francisco, CA 94016" +163020,USB-C Charging Cable,1,11.95,02/19/19 19:48,"918 Adams St, New York City, NY 10001" +163021,27in FHD Monitor,1,149.99,02/19/19 18:03,"717 Forest St, Portland, ME 04101" +163022,27in 4K Gaming Monitor,1,389.99,02/04/19 21:25,"648 Wilson St, Atlanta, GA 30301" +163023,Lightning Charging Cable,1,14.95,02/18/19 12:40,"595 5th St, San Francisco, CA 94016" +163024,Wired Headphones,1,11.99,02/26/19 18:11,"20 Center St, Boston, MA 02215" +163025,Bose SoundSport Headphones,1,99.99,02/23/19 11:51,"806 Chestnut St, Portland, OR 97035" +163026,Lightning Charging Cable,1,14.95,02/24/19 01:10,"954 Highland St, New York City, NY 10001" +163027,USB-C Charging Cable,1,11.95,02/14/19 11:38,"331 Wilson St, San Francisco, CA 94016" +163028,Wired Headphones,1,11.99,02/04/19 15:01,"773 Spruce St, New York City, NY 10001" +163029,Lightning Charging Cable,2,14.95,02/20/19 13:34,"475 Elm St, New York City, NY 10001" +163030,Bose SoundSport Headphones,1,99.99,02/22/19 11:19,"78 North St, Dallas, TX 75001" +163031,iPhone,1,700,02/15/19 18:21,"550 Park St, Atlanta, GA 30301" +163032,34in Ultrawide Monitor,1,379.99,02/17/19 08:58,"408 8th St, Seattle, WA 98101" +163033,27in 4K Gaming Monitor,1,389.99,02/18/19 20:25,"661 8th St, Boston, MA 02215" +163034,20in Monitor,1,109.99,02/19/19 21:23,"9 North St, Dallas, TX 75001" +163035,Bose SoundSport Headphones,1,99.99,02/02/19 10:07,"855 Adams St, San Francisco, CA 94016" +163036,Wired Headphones,1,11.99,02/18/19 14:01,"998 Jackson St, Atlanta, GA 30301" +163037,AA Batteries (4-pack),1,3.84,02/22/19 14:01,"310 North St, Atlanta, GA 30301" +163038,Wired Headphones,1,11.99,02/15/19 21:23,"625 Lake St, Dallas, TX 75001" +163039,Lightning Charging Cable,1,14.95,02/01/19 19:05,"870 10th St, Boston, MA 02215" +163040,AA Batteries (4-pack),1,3.84,02/06/19 23:20,"284 9th St, New York City, NY 10001" +163041,Wired Headphones,1,11.99,02/18/19 17:57,"678 North St, New York City, NY 10001" +163042,Vareebadd Phone,1,400,02/21/19 12:13,"196 Hickory St, Austin, TX 73301" +163043,AAA Batteries (4-pack),1,2.99,02/18/19 08:25,"266 Wilson St, Boston, MA 02215" +163044,USB-C Charging Cable,1,11.95,02/04/19 21:06,"923 Cherry St, San Francisco, CA 94016" +163045,Wired Headphones,1,11.99,02/16/19 15:23,"755 Main St, New York City, NY 10001" +163046,Wired Headphones,1,11.99,02/25/19 13:34,"947 8th St, New York City, NY 10001" +163047,34in Ultrawide Monitor,1,379.99,02/23/19 20:54,"19 Washington St, Los Angeles, CA 90001" +163048,34in Ultrawide Monitor,1,379.99,02/20/19 18:46,"652 Meadow St, Portland, OR 97035" +163049,AAA Batteries (4-pack),1,2.99,02/23/19 10:12,"144 West St, Los Angeles, CA 90001" +163050,AAA Batteries (4-pack),1,2.99,02/15/19 21:07,"977 Main St, Boston, MA 02215" +163051,AA Batteries (4-pack),1,3.84,02/27/19 19:53,"227 4th St, New York City, NY 10001" +163052,USB-C Charging Cable,1,11.95,02/27/19 12:38,"827 Walnut St, San Francisco, CA 94016" +163053,Lightning Charging Cable,1,14.95,02/07/19 11:24,"407 Highland St, Boston, MA 02215" +163054,Bose SoundSport Headphones,1,99.99,02/08/19 07:13,"140 Wilson St, Atlanta, GA 30301" +163055,USB-C Charging Cable,1,11.95,02/26/19 19:57,"756 14th St, San Francisco, CA 94016" +163056,AAA Batteries (4-pack),1,2.99,02/07/19 18:20,"326 Wilson St, Austin, TX 73301" +163057,USB-C Charging Cable,2,11.95,02/15/19 10:12,"543 Adams St, Austin, TX 73301" +163058,AAA Batteries (4-pack),3,2.99,02/12/19 19:38,"258 Park St, Portland, OR 97035" +163059,USB-C Charging Cable,1,11.95,02/28/19 23:58,"996 Johnson St, Portland, OR 97035" +163060,27in 4K Gaming Monitor,1,389.99,02/09/19 13:24,"361 Chestnut St, Portland, OR 97035" +163061,AAA Batteries (4-pack),1,2.99,02/16/19 23:52,"69 Willow St, Portland, OR 97035" +163062,Lightning Charging Cable,1,14.95,02/07/19 08:40,"898 Jackson St, Los Angeles, CA 90001" +163063,27in FHD Monitor,1,149.99,02/06/19 16:41,"133 Park St, Atlanta, GA 30301" +163064,Bose SoundSport Headphones,1,99.99,02/24/19 18:53,"799 9th St, Dallas, TX 75001" +163065,iPhone,1,700,02/22/19 19:29,"88 1st St, Los Angeles, CA 90001" +163066,AA Batteries (4-pack),1,3.84,02/19/19 00:28,"879 11th St, New York City, NY 10001" +163067,Wired Headphones,1,11.99,02/18/19 07:54,"737 Lakeview St, Los Angeles, CA 90001" +163068,27in FHD Monitor,1,149.99,02/04/19 16:40,"394 6th St, Portland, OR 97035" +163069,AAA Batteries (4-pack),1,2.99,02/22/19 08:45,"936 Lake St, Atlanta, GA 30301" +163070,AAA Batteries (4-pack),2,2.99,02/23/19 12:48,"80 Dogwood St, Atlanta, GA 30301" +163071,Apple Airpods Headphones,1,150,02/15/19 15:44,"943 Hickory St, New York City, NY 10001" +163072,AAA Batteries (4-pack),2,2.99,02/22/19 23:44,"800 Washington St, Los Angeles, CA 90001" +163073,27in FHD Monitor,1,149.99,02/27/19 00:06,"970 Cherry St, Boston, MA 02215" +163074,Wired Headphones,1,11.99,02/26/19 19:16,"438 Forest St, New York City, NY 10001" +163075,AAA Batteries (4-pack),1,2.99,02/28/19 17:51,"571 Maple St, San Francisco, CA 94016" +163076,Apple Airpods Headphones,1,150,02/05/19 12:43,"555 Hickory St, Seattle, WA 98101" +163077,iPhone,1,700,02/16/19 16:50,"337 Lincoln St, Los Angeles, CA 90001" +163078,iPhone,1,700,02/12/19 18:57,"507 Elm St, Portland, OR 97035" +163079,Wired Headphones,1,11.99,02/16/19 19:43,"118 Willow St, San Francisco, CA 94016" +163079,AAA Batteries (4-pack),1,2.99,02/16/19 19:43,"118 Willow St, San Francisco, CA 94016" +163080,USB-C Charging Cable,1,11.95,02/10/19 22:19,"754 West St, San Francisco, CA 94016" +163081,Lightning Charging Cable,1,14.95,02/18/19 05:38,"974 Johnson St, Los Angeles, CA 90001" +163082,iPhone,1,700,02/12/19 15:00,"480 Jackson St, Los Angeles, CA 90001" +163083,Apple Airpods Headphones,1,150,02/16/19 01:55,"863 Pine St, Boston, MA 02215" +163084,Wired Headphones,1,11.99,02/22/19 08:27,"660 West St, Los Angeles, CA 90001" +163085,Bose SoundSport Headphones,1,99.99,02/21/19 22:45,"308 Cedar St, Boston, MA 02215" +163086,AAA Batteries (4-pack),3,2.99,02/05/19 00:11,"439 9th St, Boston, MA 02215" +163087,AAA Batteries (4-pack),1,2.99,02/20/19 19:32,"783 Hill St, Los Angeles, CA 90001" +163088,Lightning Charging Cable,1,14.95,02/24/19 18:11,"833 River St, New York City, NY 10001" +163089,USB-C Charging Cable,1,11.95,02/05/19 17:23,"892 1st St, New York City, NY 10001" +163090,AAA Batteries (4-pack),1,2.99,02/12/19 01:00,"979 Lake St, Austin, TX 73301" +163091,Lightning Charging Cable,1,14.95,02/07/19 22:38,"367 5th St, New York City, NY 10001" +163092,USB-C Charging Cable,1,11.95,02/11/19 21:52,"155 9th St, San Francisco, CA 94016" +163093,USB-C Charging Cable,2,11.95,02/23/19 11:31,"128 Madison St, San Francisco, CA 94016" +163094,iPhone,1,700,02/02/19 14:30,"560 Main St, Dallas, TX 75001" +163095,Macbook Pro Laptop,1,1700,02/09/19 06:05,"723 Jackson St, Los Angeles, CA 90001" +163096,AAA Batteries (4-pack),1,2.99,02/06/19 13:56,"975 Spruce St, Atlanta, GA 30301" +163097,Macbook Pro Laptop,1,1700,02/17/19 19:40,"420 12th St, Atlanta, GA 30301" +163098,AAA Batteries (4-pack),1,2.99,02/05/19 17:52,"217 Elm St, Los Angeles, CA 90001" +163099,AAA Batteries (4-pack),1,2.99,02/05/19 07:42,"586 1st St, Los Angeles, CA 90001" +163100,Apple Airpods Headphones,1,150,02/28/19 13:54,"525 Highland St, San Francisco, CA 94016" +163101,AA Batteries (4-pack),2,3.84,02/10/19 22:18,"183 Center St, San Francisco, CA 94016" +163102,Lightning Charging Cable,1,14.95,02/22/19 15:25,"777 Jefferson St, New York City, NY 10001" +163103,AAA Batteries (4-pack),1,2.99,02/15/19 18:09,"512 11th St, New York City, NY 10001" +163104,iPhone,1,700,02/12/19 15:24,"590 Highland St, New York City, NY 10001" +163105,Apple Airpods Headphones,1,150,02/18/19 18:01,"212 Willow St, New York City, NY 10001" +163106,AAA Batteries (4-pack),2,2.99,02/11/19 20:08,"898 Hill St, Dallas, TX 75001" +163107,AAA Batteries (4-pack),3,2.99,02/21/19 17:03,"129 Walnut St, San Francisco, CA 94016" +163108,Apple Airpods Headphones,1,150,02/03/19 21:31,"665 North St, New York City, NY 10001" +163109,USB-C Charging Cable,1,11.95,02/28/19 11:22,"836 Church St, Seattle, WA 98101" +163110,Lightning Charging Cable,1,14.95,02/08/19 13:05,"612 Walnut St, Seattle, WA 98101" +163111,USB-C Charging Cable,2,11.95,02/05/19 23:15,"669 Washington St, Seattle, WA 98101" +163112,Macbook Pro Laptop,1,1700,02/27/19 00:08,"853 Lakeview St, San Francisco, CA 94016" +163113,34in Ultrawide Monitor,1,379.99,02/22/19 12:18,"627 Washington St, Portland, ME 04101" +163114,34in Ultrawide Monitor,1,379.99,02/21/19 06:37,"921 11th St, Austin, TX 73301" +163115,iPhone,1,700,02/14/19 10:53,"519 Meadow St, Seattle, WA 98101" +163115,AA Batteries (4-pack),1,3.84,02/14/19 10:53,"519 Meadow St, Seattle, WA 98101" +163116,AA Batteries (4-pack),1,3.84,02/15/19 12:37,"145 Sunset St, Atlanta, GA 30301" +163117,Apple Airpods Headphones,1,150,02/20/19 10:11,"84 Maple St, Seattle, WA 98101" +163118,AA Batteries (4-pack),1,3.84,02/25/19 13:34,"948 6th St, Austin, TX 73301" +163119,34in Ultrawide Monitor,1,379.99,02/24/19 17:03,"66 Willow St, Portland, ME 04101" +163120,USB-C Charging Cable,1,11.95,02/13/19 11:32,"461 Lincoln St, San Francisco, CA 94016" +163121,AAA Batteries (4-pack),1,2.99,02/12/19 18:56,"452 Lake St, San Francisco, CA 94016" +163122,Flatscreen TV,1,300,02/03/19 12:01,"437 South St, Dallas, TX 75001" +163123,Lightning Charging Cable,1,14.95,02/19/19 19:18,"232 Forest St, Los Angeles, CA 90001" +163124,Lightning Charging Cable,1,14.95,02/05/19 13:38,"576 Johnson St, New York City, NY 10001" +163125,Macbook Pro Laptop,1,1700,02/14/19 17:40,"391 14th St, Portland, OR 97035" +163126,Bose SoundSport Headphones,1,99.99,02/09/19 21:35,"102 10th St, San Francisco, CA 94016" +163127,20in Monitor,1,109.99,02/19/19 21:15,"810 North St, San Francisco, CA 94016" +163128,27in FHD Monitor,1,149.99,02/06/19 12:14,"687 Cherry St, Seattle, WA 98101" +163129,Apple Airpods Headphones,1,150,02/27/19 13:12,"209 Spruce St, San Francisco, CA 94016" +163130,Lightning Charging Cable,1,14.95,02/01/19 13:15,"682 2nd St, New York City, NY 10001" +163131,ThinkPad Laptop,1,999.99,02/03/19 17:53,"142 Lake St, New York City, NY 10001" +163132,Apple Airpods Headphones,1,150,02/25/19 09:07,"171 Adams St, Boston, MA 02215" +163133,Macbook Pro Laptop,1,1700,02/17/19 17:11,"821 Wilson St, New York City, NY 10001" +163134,AAA Batteries (4-pack),1,2.99,02/25/19 14:16,"956 8th St, San Francisco, CA 94016" +163135,Google Phone,1,600,02/18/19 20:09,"152 Cherry St, San Francisco, CA 94016" +163136,34in Ultrawide Monitor,1,379.99,02/12/19 19:09,"97 South St, Los Angeles, CA 90001" +163137,ThinkPad Laptop,1,999.99,02/01/19 08:56,"861 7th St, New York City, NY 10001" +163138,34in Ultrawide Monitor,1,379.99,02/08/19 11:22,"952 Adams St, San Francisco, CA 94016" +163139,Wired Headphones,1,11.99,02/25/19 21:27,"823 Cherry St, Los Angeles, CA 90001" +163140,USB-C Charging Cable,1,11.95,02/14/19 11:07,"706 Spruce St, San Francisco, CA 94016" +163141,27in 4K Gaming Monitor,1,389.99,02/14/19 14:46,"824 Center St, Portland, OR 97035" +163142,Apple Airpods Headphones,1,150,02/24/19 17:12,"640 14th St, Boston, MA 02215" +163143,AAA Batteries (4-pack),1,2.99,02/08/19 22:45,"362 West St, San Francisco, CA 94016" +163144,AAA Batteries (4-pack),1,2.99,02/11/19 20:10,"839 Elm St, New York City, NY 10001" +163145,Wired Headphones,1,11.99,02/04/19 19:18,"228 River St, Austin, TX 73301" +163146,Apple Airpods Headphones,1,150,02/19/19 05:51,"694 2nd St, Los Angeles, CA 90001" +163147,Wired Headphones,1,11.99,02/27/19 22:36,"894 Dogwood St, Dallas, TX 75001" +163148,iPhone,1,700,02/28/19 19:31,"338 Sunset St, Los Angeles, CA 90001" +163148,Apple Airpods Headphones,1,150,02/28/19 19:31,"338 Sunset St, Los Angeles, CA 90001" +163149,27in 4K Gaming Monitor,1,389.99,02/01/19 19:46,"128 Jefferson St, San Francisco, CA 94016" +163150,Bose SoundSport Headphones,1,99.99,02/21/19 13:14,"208 Ridge St, Austin, TX 73301" +163151,Lightning Charging Cable,1,14.95,02/23/19 22:13,"115 Maple St, Boston, MA 02215" +163152,AAA Batteries (4-pack),1,2.99,02/24/19 23:24,"357 9th St, Los Angeles, CA 90001" +163153,27in 4K Gaming Monitor,1,389.99,02/05/19 22:13,"199 7th St, Portland, OR 97035" +163154,Apple Airpods Headphones,1,150,02/26/19 19:49,"70 Church St, Boston, MA 02215" +163155,AA Batteries (4-pack),2,3.84,02/04/19 15:17,"893 Sunset St, New York City, NY 10001" +163156,Wired Headphones,1,11.99,02/22/19 22:40,"947 6th St, Los Angeles, CA 90001" +163157,AA Batteries (4-pack),2,3.84,02/15/19 19:06,"761 Pine St, Los Angeles, CA 90001" +163158,USB-C Charging Cable,1,11.95,02/08/19 12:41,"284 Highland St, Dallas, TX 75001" +163159,Wired Headphones,1,11.99,02/01/19 13:47,"188 Dogwood St, San Francisco, CA 94016" +163160,Macbook Pro Laptop,1,1700,02/21/19 20:30,"126 Willow St, Portland, OR 97035" +163160,Lightning Charging Cable,1,14.95,02/21/19 20:30,"126 Willow St, Portland, OR 97035" +163161,Lightning Charging Cable,1,14.95,02/08/19 11:27,"407 South St, Atlanta, GA 30301" +163162,Lightning Charging Cable,1,14.95,02/12/19 00:15,"173 Center St, Los Angeles, CA 90001" +163163,Google Phone,1,600,02/05/19 19:37,"866 Cherry St, San Francisco, CA 94016" +163164,AAA Batteries (4-pack),2,2.99,02/09/19 12:31,"376 8th St, San Francisco, CA 94016" +163165,ThinkPad Laptop,1,999.99,02/04/19 19:47,"494 Washington St, Atlanta, GA 30301" +163166,iPhone,1,700,02/08/19 11:11,"691 Meadow St, San Francisco, CA 94016" +163167,Lightning Charging Cable,1,14.95,02/23/19 18:06,"284 Cherry St, Seattle, WA 98101" +163168,AAA Batteries (4-pack),2,2.99,02/16/19 11:00,"913 Main St, New York City, NY 10001" +163169,Wired Headphones,1,11.99,02/17/19 17:38,"713 5th St, San Francisco, CA 94016" +163170,AA Batteries (4-pack),1,3.84,02/25/19 19:20,"542 South St, New York City, NY 10001" +163171,AAA Batteries (4-pack),1,2.99,02/13/19 20:58,"673 1st St, San Francisco, CA 94016" +163172,AA Batteries (4-pack),1,3.84,02/25/19 06:19,"868 Main St, Austin, TX 73301" +163173,Apple Airpods Headphones,1,150,02/25/19 22:23,"163 Hill St, Boston, MA 02215" +163174,AAA Batteries (4-pack),5,2.99,02/08/19 11:16,"228 Church St, San Francisco, CA 94016" +163175,Google Phone,1,600,02/18/19 19:40,"343 South St, San Francisco, CA 94016" +163175,USB-C Charging Cable,1,11.95,02/18/19 19:40,"343 South St, San Francisco, CA 94016" +163176,Wired Headphones,1,11.99,02/05/19 08:16,"211 Jackson St, Dallas, TX 75001" +163177,AA Batteries (4-pack),1,3.84,02/11/19 10:01,"833 Park St, New York City, NY 10001" +163178,Flatscreen TV,1,300,02/05/19 19:06,"723 Jackson St, San Francisco, CA 94016" +163179,34in Ultrawide Monitor,1,379.99,02/03/19 20:10,"605 14th St, New York City, NY 10001" +163180,Wired Headphones,1,11.99,02/14/19 20:36,"279 5th St, Seattle, WA 98101" +163181,Lightning Charging Cable,1,14.95,02/01/19 17:54,"155 Lake St, San Francisco, CA 94016" +163182,Wired Headphones,1,11.99,02/15/19 17:19,"804 1st St, San Francisco, CA 94016" +163183,Apple Airpods Headphones,1,150,02/26/19 14:39,"468 West St, San Francisco, CA 94016" +163184,Lightning Charging Cable,1,14.95,02/12/19 13:04,"227 Wilson St, New York City, NY 10001" +163185,AAA Batteries (4-pack),1,2.99,02/28/19 17:53,"432 Chestnut St, Seattle, WA 98101" +163186,USB-C Charging Cable,1,11.95,02/13/19 19:28,"977 Lincoln St, New York City, NY 10001" +163187,AAA Batteries (4-pack),1,2.99,02/23/19 17:02,"990 Cherry St, New York City, NY 10001" +163188,Bose SoundSport Headphones,1,99.99,02/09/19 14:12,"492 Maple St, San Francisco, CA 94016" +163189,Wired Headphones,2,11.99,02/10/19 09:54,"622 Hill St, San Francisco, CA 94016" +163190,Lightning Charging Cable,1,14.95,02/08/19 21:06,"956 13th St, Portland, OR 97035" +163191,27in 4K Gaming Monitor,1,389.99,02/02/19 12:59,"202 9th St, San Francisco, CA 94016" +163192,27in 4K Gaming Monitor,1,389.99,02/08/19 18:11,"601 Meadow St, San Francisco, CA 94016" +163193,USB-C Charging Cable,1,11.95,02/03/19 14:12,"681 Chestnut St, Los Angeles, CA 90001" +163194,Lightning Charging Cable,2,14.95,02/27/19 20:14,"298 9th St, Los Angeles, CA 90001" +163195,20in Monitor,1,109.99,02/06/19 12:30,"181 Jackson St, New York City, NY 10001" +163196,AAA Batteries (4-pack),1,2.99,02/09/19 16:17,"117 Jefferson St, Los Angeles, CA 90001" +163197,iPhone,1,700,02/15/19 12:34,"993 11th St, Boston, MA 02215" +163198,AA Batteries (4-pack),1,3.84,02/27/19 20:51,"748 Washington St, New York City, NY 10001" +163199,Macbook Pro Laptop,1,1700,02/01/19 15:14,"801 14th St, Los Angeles, CA 90001" +163200,Lightning Charging Cable,1,14.95,02/04/19 08:36,"789 Jackson St, Boston, MA 02215" +163201,AAA Batteries (4-pack),1,2.99,02/13/19 20:29,"297 West St, Los Angeles, CA 90001" +163202,AA Batteries (4-pack),1,3.84,02/17/19 11:39,"186 Elm St, Los Angeles, CA 90001" +163203,AA Batteries (4-pack),1,3.84,02/02/19 20:15,"451 Washington St, San Francisco, CA 94016" +163204,20in Monitor,1,109.99,02/22/19 12:16,"959 Cherry St, San Francisco, CA 94016" +163205,Flatscreen TV,1,300,02/23/19 00:02,"805 Wilson St, New York City, NY 10001" +163206,27in FHD Monitor,1,149.99,02/19/19 15:08,"970 Forest St, Dallas, TX 75001" +163207,27in FHD Monitor,1,149.99,02/20/19 04:06,"406 14th St, Boston, MA 02215" +163208,Macbook Pro Laptop,1,1700,02/02/19 16:12,"931 South St, Seattle, WA 98101" +163209,Lightning Charging Cable,1,14.95,02/06/19 18:28,"813 Jackson St, New York City, NY 10001" +163210,AA Batteries (4-pack),1,3.84,02/28/19 19:10,"651 Washington St, Portland, OR 97035" +163211,AA Batteries (4-pack),1,3.84,02/01/19 12:32,"338 West St, Portland, OR 97035" +163212,iPhone,1,700,02/07/19 01:03,"884 Chestnut St, San Francisco, CA 94016" +163213,USB-C Charging Cable,1,11.95,02/18/19 11:41,"480 11th St, Seattle, WA 98101" +163214,AAA Batteries (4-pack),1,2.99,02/21/19 15:52,"870 2nd St, Portland, OR 97035" +163215,Bose SoundSport Headphones,1,99.99,02/26/19 10:56,"330 Lakeview St, Atlanta, GA 30301" +163216,AAA Batteries (4-pack),1,2.99,02/01/19 08:50,"561 4th St, Seattle, WA 98101" +163217,Bose SoundSport Headphones,1,99.99,02/08/19 22:32,"717 Washington St, Dallas, TX 75001" +163218,USB-C Charging Cable,1,11.95,02/14/19 17:11,"240 Park St, Los Angeles, CA 90001" +163219,ThinkPad Laptop,1,999.99,02/04/19 17:08,"214 North St, Los Angeles, CA 90001" +163220,Bose SoundSport Headphones,1,99.99,02/18/19 20:21,"234 Dogwood St, Los Angeles, CA 90001" +163221,Wired Headphones,3,11.99,02/24/19 20:39,"449 Washington St, Seattle, WA 98101" +163222,Wired Headphones,1,11.99,02/04/19 21:52,"314 Forest St, San Francisco, CA 94016" +163223,USB-C Charging Cable,1,11.95,02/08/19 18:39,"79 8th St, Boston, MA 02215" +163224,AAA Batteries (4-pack),1,2.99,02/03/19 15:24,"523 13th St, Los Angeles, CA 90001" +163225,AAA Batteries (4-pack),1,2.99,02/05/19 17:07,"679 Lake St, Los Angeles, CA 90001" +163226,27in FHD Monitor,1,149.99,02/02/19 21:27,"171 6th St, San Francisco, CA 94016" +163227,Wired Headphones,1,11.99,02/23/19 14:52,"775 Lincoln St, Austin, TX 73301" +163228,Macbook Pro Laptop,1,1700,02/24/19 09:22,"32 Forest St, Los Angeles, CA 90001" +163229,Flatscreen TV,1,300,02/07/19 12:04,"695 Adams St, San Francisco, CA 94016" +163230,Apple Airpods Headphones,1,150,02/05/19 14:00,"697 North St, Los Angeles, CA 90001" +163231,USB-C Charging Cable,1,11.95,02/03/19 20:28,"376 11th St, Dallas, TX 75001" +163232,AA Batteries (4-pack),1,3.84,02/02/19 16:41,"401 Ridge St, Atlanta, GA 30301" +163233,AA Batteries (4-pack),2,3.84,02/18/19 06:21,"721 Meadow St, Seattle, WA 98101" +163234,Lightning Charging Cable,1,14.95,02/13/19 13:12,"776 Wilson St, Austin, TX 73301" +163235,AAA Batteries (4-pack),1,2.99,02/03/19 13:10,"568 River St, San Francisco, CA 94016" +163236,Bose SoundSport Headphones,1,99.99,02/15/19 20:23,"502 1st St, Boston, MA 02215" +163237,AA Batteries (4-pack),1,3.84,02/05/19 20:32,"646 1st St, San Francisco, CA 94016" +163238,27in FHD Monitor,1,149.99,02/05/19 11:27,"478 Jackson St, Atlanta, GA 30301" +163239,Wired Headphones,1,11.99,02/06/19 17:19,"674 Lake St, Boston, MA 02215" +163240,Lightning Charging Cable,1,14.95,02/23/19 20:21,"619 8th St, San Francisco, CA 94016" +163241,Wired Headphones,1,11.99,02/05/19 13:35,"832 Elm St, San Francisco, CA 94016" +163242,Google Phone,1,600,02/01/19 18:41,"221 Pine St, Dallas, TX 75001" +163243,Flatscreen TV,1,300,02/14/19 03:27,"415 9th St, New York City, NY 10001" +163244,27in FHD Monitor,1,149.99,02/15/19 19:24,"41 Spruce St, San Francisco, CA 94016" +163245,Flatscreen TV,1,300,02/24/19 13:22,"275 Lincoln St, San Francisco, CA 94016" +163246,34in Ultrawide Monitor,1,379.99,02/10/19 11:49,"257 Johnson St, Boston, MA 02215" +163247,AAA Batteries (4-pack),1,2.99,02/25/19 23:36,"261 Forest St, Atlanta, GA 30301" +163248,Google Phone,1,600,02/23/19 19:32,"574 13th St, San Francisco, CA 94016" +163248,USB-C Charging Cable,1,11.95,02/23/19 19:32,"574 13th St, San Francisco, CA 94016" +163249,Lightning Charging Cable,1,14.95,02/07/19 14:26,"179 Meadow St, Seattle, WA 98101" +163250,USB-C Charging Cable,2,11.95,02/02/19 15:44,"626 Elm St, San Francisco, CA 94016" +163251,AAA Batteries (4-pack),2,2.99,02/25/19 11:56,"19 Hickory St, Atlanta, GA 30301" +163252,34in Ultrawide Monitor,1,379.99,02/05/19 15:44,"173 10th St, New York City, NY 10001" +163253,Apple Airpods Headphones,1,150,02/24/19 22:13,"833 Lake St, San Francisco, CA 94016" +163254,Wired Headphones,1,11.99,02/22/19 16:10,"460 Spruce St, Boston, MA 02215" +163255,AA Batteries (4-pack),2,3.84,02/06/19 19:57,"975 Center St, Portland, OR 97035" +163256,Wired Headphones,1,11.99,02/10/19 17:48,"441 13th St, Atlanta, GA 30301" +163257,27in FHD Monitor,1,149.99,02/23/19 08:53,"59 Park St, New York City, NY 10001" +163258,Apple Airpods Headphones,1,150,02/14/19 06:14,"647 Hill St, Austin, TX 73301" +163259,Lightning Charging Cable,1,14.95,02/22/19 10:15,"735 10th St, New York City, NY 10001" +163260,Apple Airpods Headphones,1,150,02/24/19 02:46,"867 Main St, Dallas, TX 75001" +163261,AAA Batteries (4-pack),1,2.99,02/07/19 10:23,"191 Hill St, Seattle, WA 98101" +163262,Apple Airpods Headphones,1,150,02/18/19 08:21,"209 Willow St, Los Angeles, CA 90001" +163263,Flatscreen TV,1,300,02/01/19 10:44,"707 5th St, New York City, NY 10001" +163264,Wired Headphones,1,11.99,02/08/19 21:57,"989 1st St, San Francisco, CA 94016" +163265,Wired Headphones,1,11.99,02/08/19 20:39,"565 Spruce St, Austin, TX 73301" +163266,27in 4K Gaming Monitor,1,389.99,02/04/19 23:49,"251 7th St, Los Angeles, CA 90001" +163267,AA Batteries (4-pack),3,3.84,02/15/19 12:49,"764 Cherry St, Portland, OR 97035" +163268,USB-C Charging Cable,1,11.95,02/04/19 09:56,"973 Park St, Dallas, TX 75001" +163269,Lightning Charging Cable,2,14.95,02/18/19 14:20,"223 Meadow St, Seattle, WA 98101" +163270,AA Batteries (4-pack),1,3.84,02/27/19 20:08,"519 Cedar St, Los Angeles, CA 90001" +163271,AAA Batteries (4-pack),1,2.99,02/15/19 11:35,"174 Hill St, Los Angeles, CA 90001" +163272,Flatscreen TV,1,300,02/26/19 20:19,"897 14th St, Dallas, TX 75001" +163273,AAA Batteries (4-pack),1,2.99,02/16/19 14:59,"445 Highland St, San Francisco, CA 94016" +163274,Flatscreen TV,1,300,02/15/19 11:39,"651 Johnson St, Dallas, TX 75001" +163275,Apple Airpods Headphones,1,150,02/05/19 23:37,"851 Highland St, San Francisco, CA 94016" +163276,iPhone,1,700,02/04/19 01:08,"475 Center St, San Francisco, CA 94016" +163276,Lightning Charging Cable,1,14.95,02/04/19 01:08,"475 Center St, San Francisco, CA 94016" +163277,AAA Batteries (4-pack),1,2.99,02/12/19 10:39,"432 14th St, Los Angeles, CA 90001" +163278,Bose SoundSport Headphones,1,99.99,02/03/19 14:01,"863 Cherry St, Atlanta, GA 30301" +163279,USB-C Charging Cable,1,11.95,02/03/19 22:40,"315 8th St, New York City, NY 10001" +163280,Google Phone,1,600,02/17/19 17:49,"761 Cedar St, Boston, MA 02215" +163281,34in Ultrawide Monitor,1,379.99,02/10/19 09:20,"550 Johnson St, Boston, MA 02215" +163282,Wired Headphones,2,11.99,02/10/19 10:34,"647 5th St, San Francisco, CA 94016" +163283,AAA Batteries (4-pack),1,2.99,02/25/19 14:53,"475 Chestnut St, Seattle, WA 98101" +163284,Wired Headphones,1,11.99,02/01/19 11:55,"124 4th St, Boston, MA 02215" +163285,AA Batteries (4-pack),1,3.84,02/16/19 09:12,"427 Spruce St, Dallas, TX 75001" +163286,27in FHD Monitor,1,149.99,02/02/19 15:24,"935 8th St, Los Angeles, CA 90001" +163287,Bose SoundSport Headphones,1,99.99,02/18/19 21:39,"908 Church St, Seattle, WA 98101" +163288,Macbook Pro Laptop,1,1700,02/16/19 18:53,"196 Church St, New York City, NY 10001" +163289,AA Batteries (4-pack),1,3.84,02/11/19 20:29,"235 Center St, Portland, OR 97035" +163290,Flatscreen TV,1,300,02/15/19 00:02,"877 West St, New York City, NY 10001" +163291,AAA Batteries (4-pack),1,2.99,02/08/19 11:56,"730 Sunset St, New York City, NY 10001" +163292,Apple Airpods Headphones,1,150,02/06/19 17:17,"574 11th St, Boston, MA 02215" +163293,Apple Airpods Headphones,1,150,02/16/19 20:47,"448 Lakeview St, Boston, MA 02215" +163294,Google Phone,1,600,02/04/19 21:22,"647 Dogwood St, Los Angeles, CA 90001" +163295,ThinkPad Laptop,1,999.99,02/01/19 22:32,"893 Dogwood St, Los Angeles, CA 90001" +163296,AA Batteries (4-pack),1,3.84,02/15/19 03:27,"925 Park St, New York City, NY 10001" +163297,USB-C Charging Cable,1,11.95,02/03/19 08:14,"138 Forest St, San Francisco, CA 94016" +163298,Bose SoundSport Headphones,1,99.99,02/21/19 17:27,"160 Lincoln St, New York City, NY 10001" +163299,ThinkPad Laptop,1,999.99,02/07/19 22:55,"788 Walnut St, Portland, OR 97035" +163300,USB-C Charging Cable,1,11.95,02/27/19 12:37,"215 Hickory St, Atlanta, GA 30301" +163301,AAA Batteries (4-pack),1,2.99,02/03/19 15:44,"778 13th St, Atlanta, GA 30301" +163302,Lightning Charging Cable,1,14.95,02/21/19 07:26,"764 Lake St, Portland, OR 97035" +163303,LG Washing Machine,1,600.0,02/12/19 18:58,"907 Park St, Seattle, WA 98101" +163304,Google Phone,1,600,02/27/19 18:53,"468 Washington St, Seattle, WA 98101" +163304,Bose SoundSport Headphones,1,99.99,02/27/19 18:53,"468 Washington St, Seattle, WA 98101" +163305,USB-C Charging Cable,2,11.95,02/20/19 10:55,"804 7th St, San Francisco, CA 94016" +163306,Apple Airpods Headphones,2,150,02/01/19 21:53,"242 Sunset St, Los Angeles, CA 90001" +163307,Lightning Charging Cable,1,14.95,02/19/19 18:05,"669 Ridge St, Boston, MA 02215" +163308,34in Ultrawide Monitor,1,379.99,02/05/19 08:18,"207 Adams St, Boston, MA 02215" +163309,Google Phone,1,600,02/26/19 18:20,"396 Johnson St, Los Angeles, CA 90001" +163310,Macbook Pro Laptop,1,1700,02/23/19 14:14,"172 Lakeview St, Atlanta, GA 30301" +163310,iPhone,1,700,02/23/19 14:14,"172 Lakeview St, Atlanta, GA 30301" +163311,USB-C Charging Cable,1,11.95,02/03/19 20:38,"722 Dogwood St, Boston, MA 02215" +163312,USB-C Charging Cable,1,11.95,02/17/19 22:19,"834 10th St, San Francisco, CA 94016" +163313,AA Batteries (4-pack),1,3.84,02/21/19 21:23,"345 Johnson St, Portland, OR 97035" +163314,20in Monitor,1,109.99,02/22/19 15:53,"888 Sunset St, Atlanta, GA 30301" +163315,Apple Airpods Headphones,1,150,02/01/19 09:26,"391 6th St, Los Angeles, CA 90001" +163316,USB-C Charging Cable,2,11.95,02/11/19 21:26,"782 8th St, San Francisco, CA 94016" +163316,Lightning Charging Cable,1,14.95,02/11/19 21:26,"782 8th St, San Francisco, CA 94016" +163317,AAA Batteries (4-pack),1,2.99,02/09/19 06:21,"334 West St, Atlanta, GA 30301" +163318,AAA Batteries (4-pack),2,2.99,02/06/19 20:47,"773 Willow St, San Francisco, CA 94016" +163319,Lightning Charging Cable,1,14.95,02/07/19 23:11,"530 Hill St, New York City, NY 10001" +163320,Apple Airpods Headphones,1,150,02/20/19 21:27,"290 River St, New York City, NY 10001" +163321,AA Batteries (4-pack),2,3.84,02/15/19 23:11,"429 Madison St, Austin, TX 73301" +163322,Apple Airpods Headphones,1,150,02/07/19 19:20,"783 Maple St, Los Angeles, CA 90001" +163323,AAA Batteries (4-pack),1,2.99,02/02/19 18:14,"580 5th St, Los Angeles, CA 90001" +163324,Lightning Charging Cable,1,14.95,02/10/19 20:25,"808 1st St, Dallas, TX 75001" +163325,USB-C Charging Cable,1,11.95,02/10/19 18:39,"640 Ridge St, New York City, NY 10001" +163326,USB-C Charging Cable,1,11.95,02/07/19 12:46,"394 2nd St, San Francisco, CA 94016" +163327,AA Batteries (4-pack),1,3.84,02/23/19 14:17,"414 Park St, San Francisco, CA 94016" +163328,AA Batteries (4-pack),1,3.84,02/17/19 12:31,"793 Dogwood St, Atlanta, GA 30301" +163329,ThinkPad Laptop,1,999.99,02/25/19 10:53,"151 Main St, Austin, TX 73301" +163330,Apple Airpods Headphones,1,150,02/05/19 12:00,"657 7th St, San Francisco, CA 94016" +163331,Wired Headphones,1,11.99,02/02/19 20:22,"44 Center St, Dallas, TX 75001" +163332,Wired Headphones,1,11.99,02/23/19 09:13,"412 9th St, Atlanta, GA 30301" +163333,Lightning Charging Cable,1,14.95,02/26/19 04:17,"123 Chestnut St, Portland, OR 97035" +163334,AAA Batteries (4-pack),1,2.99,02/02/19 21:54,"203 2nd St, Atlanta, GA 30301" +163335,Macbook Pro Laptop,1,1700,02/21/19 19:38,"907 Dogwood St, Dallas, TX 75001" +163336,USB-C Charging Cable,1,11.95,02/28/19 12:28,"811 11th St, Boston, MA 02215" +163337,AA Batteries (4-pack),1,3.84,02/21/19 09:22,"615 Walnut St, Dallas, TX 75001" +163338,34in Ultrawide Monitor,1,379.99,02/08/19 17:57,"725 Spruce St, New York City, NY 10001" +163338,AAA Batteries (4-pack),2,2.99,02/08/19 17:57,"725 Spruce St, New York City, NY 10001" +163339,USB-C Charging Cable,1,11.95,02/02/19 13:24,"102 Lake St, Seattle, WA 98101" +163340,AA Batteries (4-pack),1,3.84,02/15/19 01:40,"946 Jackson St, Dallas, TX 75001" +163341,AA Batteries (4-pack),1,3.84,02/21/19 09:54,"685 9th St, San Francisco, CA 94016" +163342,Lightning Charging Cable,1,14.95,02/25/19 00:06,"511 13th St, New York City, NY 10001" +163343,AA Batteries (4-pack),1,3.84,02/11/19 20:28,"148 Walnut St, New York City, NY 10001" +163344,27in FHD Monitor,1,149.99,02/01/19 17:45,"318 Jackson St, Seattle, WA 98101" +163345,USB-C Charging Cable,1,11.95,02/19/19 18:03,"172 Madison St, Los Angeles, CA 90001" +163346,Google Phone,1,600,02/11/19 01:36,"835 1st St, Seattle, WA 98101" +163347,Apple Airpods Headphones,1,150,02/07/19 19:20,"441 Johnson St, San Francisco, CA 94016" +163348,AAA Batteries (4-pack),1,2.99,02/23/19 14:56,"660 11th St, New York City, NY 10001" +163349,Lightning Charging Cable,1,14.95,02/12/19 17:06,"483 Main St, Atlanta, GA 30301" +163350,Macbook Pro Laptop,1,1700,02/24/19 11:26,"803 Washington St, Boston, MA 02215" +163351,Flatscreen TV,1,300,02/01/19 18:46,"909 Main St, Portland, OR 97035" +163352,Lightning Charging Cable,1,14.95,02/24/19 01:25,"839 Johnson St, Seattle, WA 98101" +163353,Wired Headphones,1,11.99,02/27/19 16:55,"33 8th St, San Francisco, CA 94016" +163354,Bose SoundSport Headphones,1,99.99,02/19/19 22:27,"736 Chestnut St, Atlanta, GA 30301" +163355,Bose SoundSport Headphones,1,99.99,02/26/19 22:22,"921 14th St, Atlanta, GA 30301" +163356,USB-C Charging Cable,1,11.95,02/07/19 16:57,"75 11th St, San Francisco, CA 94016" +163357,Lightning Charging Cable,1,14.95,02/23/19 16:10,"285 Hickory St, San Francisco, CA 94016" +163358,34in Ultrawide Monitor,1,379.99,02/13/19 23:03,"982 West St, Austin, TX 73301" +163359,AA Batteries (4-pack),1,3.84,02/11/19 13:07,"69 North St, Los Angeles, CA 90001" +163360,27in 4K Gaming Monitor,1,389.99,02/26/19 17:19,"856 Cherry St, San Francisco, CA 94016" +163361,Wired Headphones,1,11.99,02/02/19 19:24,"188 Spruce St, Los Angeles, CA 90001" +163362,Wired Headphones,1,11.99,02/07/19 09:20,"227 Cedar St, San Francisco, CA 94016" +163363,Bose SoundSport Headphones,1,99.99,02/01/19 18:25,"116 6th St, Boston, MA 02215" +163364,Bose SoundSport Headphones,1,99.99,02/06/19 07:56,"93 Lakeview St, Portland, OR 97035" +163365,Bose SoundSport Headphones,1,99.99,02/01/19 15:56,"162 Main St, Boston, MA 02215" +163366,AAA Batteries (4-pack),2,2.99,02/01/19 17:07,"339 West St, Portland, OR 97035" +163367,Bose SoundSport Headphones,1,99.99,02/26/19 21:48,"323 Main St, Atlanta, GA 30301" +163368,AAA Batteries (4-pack),2,2.99,02/14/19 20:23,"372 Walnut St, San Francisco, CA 94016" +163369,Wired Headphones,1,11.99,02/08/19 03:55,"930 2nd St, Atlanta, GA 30301" +163370,AAA Batteries (4-pack),5,2.99,02/26/19 16:25,"420 River St, San Francisco, CA 94016" +163371,Lightning Charging Cable,1,14.95,02/24/19 12:07,"981 River St, San Francisco, CA 94016" +163372,AAA Batteries (4-pack),2,2.99,02/06/19 22:48,"25 11th St, New York City, NY 10001" +163373,Wired Headphones,1,11.99,02/25/19 15:44,"146 Lake St, San Francisco, CA 94016" +163374,AAA Batteries (4-pack),3,2.99,02/26/19 16:15,"224 9th St, Seattle, WA 98101" +163375,34in Ultrawide Monitor,1,379.99,02/11/19 08:54,"135 9th St, San Francisco, CA 94016" +163376,27in FHD Monitor,1,149.99,02/03/19 17:52,"553 1st St, Dallas, TX 75001" +163377,Bose SoundSport Headphones,1,99.99,02/05/19 14:31,"575 Ridge St, Boston, MA 02215" +163378,AA Batteries (4-pack),1,3.84,02/25/19 17:38,"689 Maple St, Seattle, WA 98101" +163379,iPhone,1,700,02/06/19 13:03,"126 4th St, Los Angeles, CA 90001" +163380,Lightning Charging Cable,1,14.95,02/18/19 17:22,"921 5th St, Atlanta, GA 30301" +,,,,, +163381,Lightning Charging Cable,1,14.95,02/07/19 18:29,"430 Chestnut St, San Francisco, CA 94016" +163382,Macbook Pro Laptop,1,1700,02/08/19 16:58,"312 Pine St, Atlanta, GA 30301" +163383,27in 4K Gaming Monitor,1,389.99,02/01/19 15:32,"325 11th St, Seattle, WA 98101" +163384,iPhone,1,700,02/21/19 16:07,"637 Washington St, Los Angeles, CA 90001" +163384,Wired Headphones,2,11.99,02/21/19 16:07,"637 Washington St, Los Angeles, CA 90001" +163385,Lightning Charging Cable,2,14.95,02/23/19 14:22,"341 4th St, Boston, MA 02215" +163386,Bose SoundSport Headphones,1,99.99,02/10/19 17:27,"169 Forest St, Los Angeles, CA 90001" +163387,20in Monitor,1,109.99,02/21/19 08:10,"306 Lakeview St, San Francisco, CA 94016" +163388,Lightning Charging Cable,1,14.95,02/09/19 13:23,"597 Hickory St, New York City, NY 10001" +163389,AA Batteries (4-pack),1,3.84,02/05/19 20:20,"561 River St, San Francisco, CA 94016" +163390,Wired Headphones,2,11.99,02/09/19 03:40,"312 12th St, Boston, MA 02215" +163391,Lightning Charging Cable,1,14.95,02/03/19 06:55,"773 North St, New York City, NY 10001" +163392,27in FHD Monitor,1,149.99,02/15/19 11:27,"891 7th St, Atlanta, GA 30301" +163393,AA Batteries (4-pack),2,3.84,02/21/19 14:35,"273 Highland St, New York City, NY 10001" +163394,AAA Batteries (4-pack),1,2.99,02/16/19 19:09,"19 10th St, Los Angeles, CA 90001" +163395,USB-C Charging Cable,1,11.95,02/09/19 10:11,"468 2nd St, San Francisco, CA 94016" +163396,Wired Headphones,1,11.99,02/07/19 17:27,"869 Cedar St, Seattle, WA 98101" +163397,USB-C Charging Cable,1,11.95,02/22/19 15:28,"697 Willow St, Atlanta, GA 30301" +163398,Lightning Charging Cable,1,14.95,02/24/19 15:51,"57 Church St, Austin, TX 73301" +163399,AA Batteries (4-pack),1,3.84,02/02/19 19:47,"872 Park St, Boston, MA 02215" +163400,20in Monitor,1,109.99,02/08/19 13:34,"194 Hickory St, Boston, MA 02215" +163401,AA Batteries (4-pack),1,3.84,02/18/19 11:49,"902 Washington St, New York City, NY 10001" +163402,Wired Headphones,1,11.99,02/09/19 00:35,"497 Jefferson St, New York City, NY 10001" +163403,27in 4K Gaming Monitor,1,389.99,02/24/19 19:11,"635 14th St, Dallas, TX 75001" +163404,USB-C Charging Cable,1,11.95,02/15/19 10:37,"697 Meadow St, Dallas, TX 75001" +163405,Wired Headphones,1,11.99,02/13/19 00:10,"424 Park St, Los Angeles, CA 90001" +163406,27in FHD Monitor,1,149.99,02/18/19 18:54,"716 Lincoln St, Los Angeles, CA 90001" +163407,USB-C Charging Cable,1,11.95,02/01/19 09:49,"857 Sunset St, San Francisco, CA 94016" +163408,20in Monitor,1,109.99,02/10/19 07:16,"771 Chestnut St, San Francisco, CA 94016" +163409,Bose SoundSport Headphones,1,99.99,02/07/19 13:27,"572 Spruce St, Portland, OR 97035" +163410,27in 4K Gaming Monitor,1,389.99,02/18/19 15:44,"581 Madison St, Dallas, TX 75001" +163411,AA Batteries (4-pack),1,3.84,02/07/19 12:38,"753 West St, Seattle, WA 98101" +163412,27in 4K Gaming Monitor,1,389.99,02/11/19 09:01,"937 Jefferson St, New York City, NY 10001" +163413,USB-C Charging Cable,2,11.95,02/02/19 21:50,"190 Main St, New York City, NY 10001" +163414,Lightning Charging Cable,1,14.95,02/27/19 15:40,"887 Elm St, Portland, OR 97035" +163415,Apple Airpods Headphones,1,150,02/19/19 23:32,"593 Willow St, San Francisco, CA 94016" +163416,27in 4K Gaming Monitor,1,389.99,02/19/19 20:19,"910 Sunset St, New York City, NY 10001" +163417,AA Batteries (4-pack),4,3.84,02/24/19 12:57,"745 Forest St, Seattle, WA 98101" +163418,Macbook Pro Laptop,1,1700,02/26/19 13:14,"518 Main St, Atlanta, GA 30301" +163419,Wired Headphones,1,11.99,02/15/19 16:46,"586 Sunset St, San Francisco, CA 94016" +163420,Lightning Charging Cable,1,14.95,02/12/19 17:59,"967 Meadow St, Los Angeles, CA 90001" +163421,USB-C Charging Cable,1,11.95,02/13/19 21:50,"680 7th St, Boston, MA 02215" +163422,Lightning Charging Cable,1,14.95,02/13/19 20:44,"744 North St, San Francisco, CA 94016" +163423,Apple Airpods Headphones,1,150,02/23/19 14:13,"594 South St, Seattle, WA 98101" +163424,USB-C Charging Cable,1,11.95,02/15/19 23:56,"824 11th St, San Francisco, CA 94016" +163425,Macbook Pro Laptop,1,1700,02/27/19 12:55,"864 Lake St, New York City, NY 10001" +163426,AA Batteries (4-pack),1,3.84,02/02/19 00:08,"809 Willow St, San Francisco, CA 94016" +163427,AA Batteries (4-pack),2,3.84,02/12/19 19:37,"236 2nd St, Portland, OR 97035" +163428,Lightning Charging Cable,1,14.95,02/19/19 10:40,"173 Spruce St, San Francisco, CA 94016" +163429,iPhone,1,700,02/11/19 10:00,"868 Ridge St, New York City, NY 10001" +163430,USB-C Charging Cable,1,11.95,02/21/19 20:00,"688 1st St, Los Angeles, CA 90001" +163431,Apple Airpods Headphones,1,150,02/22/19 23:05,"381 River St, San Francisco, CA 94016" +163432,Apple Airpods Headphones,2,150,02/20/19 17:38,"417 Cedar St, Atlanta, GA 30301" +163433,Flatscreen TV,1,300,02/02/19 17:36,"583 Cherry St, San Francisco, CA 94016" +163434,Apple Airpods Headphones,1,150,02/02/19 11:13,"699 Maple St, Portland, OR 97035" +163435,Lightning Charging Cable,1,14.95,03/01/19 01:42,"519 14th St, Portland, ME 04101" +163436,USB-C Charging Cable,1,11.95,02/11/19 23:51,"548 Center St, Portland, OR 97035" +163437,Vareebadd Phone,1,400,02/28/19 07:17,"596 6th St, Boston, MA 02215" +163438,AAA Batteries (4-pack),1,2.99,02/14/19 00:20,"458 Willow St, Boston, MA 02215" +163439,20in Monitor,1,109.99,02/13/19 13:01,"723 12th St, Atlanta, GA 30301" +163440,Apple Airpods Headphones,1,150,02/20/19 21:42,"77 Cherry St, Seattle, WA 98101" +163441,USB-C Charging Cable,1,11.95,02/13/19 17:56,"214 2nd St, New York City, NY 10001" +163442,Bose SoundSport Headphones,1,99.99,02/23/19 12:10,"1 Wilson St, San Francisco, CA 94016" +163443,27in FHD Monitor,1,149.99,02/06/19 22:22,"884 Washington St, Austin, TX 73301" +163444,Wired Headphones,1,11.99,02/01/19 16:59,"104 Highland St, San Francisco, CA 94016" +163445,27in 4K Gaming Monitor,1,389.99,02/08/19 20:43,"130 Jefferson St, Atlanta, GA 30301" +163446,USB-C Charging Cable,2,11.95,02/01/19 19:54,"193 9th St, San Francisco, CA 94016" +163447,AA Batteries (4-pack),1,3.84,02/05/19 12:56,"9 Washington St, New York City, NY 10001" +163448,Bose SoundSport Headphones,1,99.99,02/18/19 14:11,"748 Willow St, New York City, NY 10001" +163449,AAA Batteries (4-pack),1,2.99,02/02/19 16:57,"800 South St, Portland, OR 97035" +163450,AAA Batteries (4-pack),1,2.99,02/22/19 17:59,"876 Lake St, San Francisco, CA 94016" +163451,Bose SoundSport Headphones,1,99.99,02/13/19 02:27,"12 Sunset St, Los Angeles, CA 90001" +163452,Wired Headphones,1,11.99,02/03/19 07:30,"711 Hickory St, Atlanta, GA 30301" +163453,AAA Batteries (4-pack),1,2.99,02/16/19 19:42,"386 Church St, New York City, NY 10001" +163454,Wired Headphones,1,11.99,02/23/19 12:33,"957 11th St, San Francisco, CA 94016" +163455,USB-C Charging Cable,1,11.95,02/08/19 06:40,"540 Cedar St, San Francisco, CA 94016" +163456,Bose SoundSport Headphones,1,99.99,02/15/19 00:29,"643 Elm St, Portland, OR 97035" +163457,USB-C Charging Cable,1,11.95,02/10/19 08:27,"533 12th St, Dallas, TX 75001" +163458,Lightning Charging Cable,1,14.95,02/02/19 11:18,"535 Meadow St, Atlanta, GA 30301" +163459,34in Ultrawide Monitor,1,379.99,02/15/19 19:05,"181 Cedar St, Seattle, WA 98101" +163460,AA Batteries (4-pack),1,3.84,02/11/19 12:03,"444 South St, Dallas, TX 75001" +163461,AAA Batteries (4-pack),2,2.99,02/18/19 19:28,"851 Park St, Los Angeles, CA 90001" +163462,Macbook Pro Laptop,1,1700,02/12/19 19:32,"74 Johnson St, Portland, ME 04101" +163463,AA Batteries (4-pack),2,3.84,02/11/19 11:46,"46 Maple St, Atlanta, GA 30301" +163464,Bose SoundSport Headphones,1,99.99,02/27/19 17:22,"162 Park St, Atlanta, GA 30301" +163465,USB-C Charging Cable,1,11.95,02/05/19 22:40,"139 Meadow St, New York City, NY 10001" +163466,USB-C Charging Cable,1,11.95,02/01/19 11:33,"158 West St, Seattle, WA 98101" +163467,Lightning Charging Cable,1,14.95,02/09/19 12:34,"418 Chestnut St, San Francisco, CA 94016" +163468,Vareebadd Phone,1,400,02/14/19 03:02,"373 14th St, Atlanta, GA 30301" +163468,USB-C Charging Cable,2,11.95,02/14/19 03:02,"373 14th St, Atlanta, GA 30301" +163469,USB-C Charging Cable,1,11.95,02/06/19 21:24,"501 Ridge St, Los Angeles, CA 90001" +163470,Lightning Charging Cable,1,14.95,02/11/19 18:26,"293 2nd St, San Francisco, CA 94016" +163471,USB-C Charging Cable,1,11.95,02/19/19 19:36,"9 13th St, San Francisco, CA 94016" +163472,Bose SoundSport Headphones,1,99.99,02/11/19 07:14,"210 Cherry St, Dallas, TX 75001" +163473,AAA Batteries (4-pack),1,2.99,02/07/19 14:12,"876 Walnut St, New York City, NY 10001" +163474,USB-C Charging Cable,1,11.95,02/24/19 08:57,"737 Meadow St, Seattle, WA 98101" +163475,Apple Airpods Headphones,1,150,02/21/19 21:11,"922 Cedar St, Austin, TX 73301" +163476,27in FHD Monitor,1,149.99,02/06/19 17:43,"717 Ridge St, San Francisco, CA 94016" +163477,Lightning Charging Cable,1,14.95,02/23/19 19:32,"772 Adams St, San Francisco, CA 94016" +163478,Apple Airpods Headphones,1,150,02/19/19 07:05,"545 Cherry St, Los Angeles, CA 90001" +163479,Lightning Charging Cable,1,14.95,02/05/19 20:24,"106 4th St, Boston, MA 02215" +163480,34in Ultrawide Monitor,1,379.99,02/25/19 23:43,"733 Cherry St, Austin, TX 73301" +163481,AAA Batteries (4-pack),1,2.99,02/10/19 20:26,"890 Cherry St, Los Angeles, CA 90001" +163482,Macbook Pro Laptop,1,1700,02/02/19 14:12,"14 9th St, San Francisco, CA 94016" +163483,Bose SoundSport Headphones,1,99.99,02/15/19 00:19,"505 Dogwood St, Austin, TX 73301" +163484,AA Batteries (4-pack),2,3.84,02/04/19 17:40,"862 Wilson St, Boston, MA 02215" +163485,AA Batteries (4-pack),1,3.84,02/02/19 15:21,"423 Spruce St, Seattle, WA 98101" +163486,Wired Headphones,1,11.99,02/01/19 11:34,"510 6th St, Boston, MA 02215" +163487,USB-C Charging Cable,1,11.95,02/22/19 10:38,"282 12th St, San Francisco, CA 94016" +163488,USB-C Charging Cable,1,11.95,02/04/19 07:31,"599 Park St, San Francisco, CA 94016" +163489,iPhone,1,700,02/23/19 15:06,"717 Wilson St, Los Angeles, CA 90001" +163490,AA Batteries (4-pack),1,3.84,02/19/19 13:57,"355 Church St, San Francisco, CA 94016" +163491,Apple Airpods Headphones,1,150,02/04/19 17:56,"887 Lake St, Los Angeles, CA 90001" +163492,AAA Batteries (4-pack),1,2.99,02/22/19 12:29,"233 Elm St, San Francisco, CA 94016" +163493,USB-C Charging Cable,1,11.95,02/13/19 13:17,"787 Cedar St, Los Angeles, CA 90001" +163494,AA Batteries (4-pack),3,3.84,02/03/19 10:51,"449 Forest St, Atlanta, GA 30301" +163495,Bose SoundSport Headphones,1,99.99,02/27/19 18:58,"854 Wilson St, Atlanta, GA 30301" +163495,Wired Headphones,1,11.99,02/27/19 18:58,"854 Wilson St, Atlanta, GA 30301" +163496,AAA Batteries (4-pack),1,2.99,02/05/19 01:55,"59 Adams St, Dallas, TX 75001" +163497,Wired Headphones,1,11.99,02/20/19 20:20,"343 Cherry St, San Francisco, CA 94016" +163498,Bose SoundSport Headphones,1,99.99,02/13/19 15:55,"281 Wilson St, Atlanta, GA 30301" +163499,Wired Headphones,1,11.99,02/03/19 21:38,"385 West St, Seattle, WA 98101" +163500,20in Monitor,1,109.99,02/26/19 07:17,"633 7th St, Los Angeles, CA 90001" +163501,USB-C Charging Cable,1,11.95,02/08/19 01:30,"275 Jefferson St, San Francisco, CA 94016" +163502,USB-C Charging Cable,1,11.95,02/19/19 13:37,"952 Lakeview St, Boston, MA 02215" +163503,27in 4K Gaming Monitor,1,389.99,02/27/19 08:14,"531 River St, Portland, OR 97035" +163504,LG Dryer,1,600.0,02/23/19 21:53,"484 Madison St, Los Angeles, CA 90001" +163505,Bose SoundSport Headphones,1,99.99,02/06/19 13:45,"475 Jefferson St, Boston, MA 02215" +163506,Wired Headphones,1,11.99,02/26/19 15:51,"332 Washington St, Los Angeles, CA 90001" +163507,Bose SoundSport Headphones,1,99.99,02/28/19 10:08,"718 Hickory St, Boston, MA 02215" +163508,iPhone,1,700,02/23/19 13:48,"143 Madison St, Los Angeles, CA 90001" +163509,Lightning Charging Cable,1,14.95,02/13/19 10:33,"400 5th St, San Francisco, CA 94016" +163510,27in 4K Gaming Monitor,1,389.99,02/07/19 19:34,"670 Highland St, San Francisco, CA 94016" +163511,20in Monitor,1,109.99,02/13/19 19:11,"43 Dogwood St, Seattle, WA 98101" +163511,Lightning Charging Cable,1,14.95,02/13/19 19:11,"43 Dogwood St, Seattle, WA 98101" +163512,AA Batteries (4-pack),2,3.84,02/28/19 09:47,"826 1st St, Boston, MA 02215" +163513,Bose SoundSport Headphones,1,99.99,02/12/19 10:48,"375 River St, Atlanta, GA 30301" +163514,27in FHD Monitor,1,149.99,02/14/19 11:14,"543 West St, San Francisco, CA 94016" +163515,USB-C Charging Cable,1,11.95,02/24/19 18:33,"575 Forest St, New York City, NY 10001" +163516,AA Batteries (4-pack),1,3.84,02/28/19 17:54,"976 Ridge St, Los Angeles, CA 90001" +163517,iPhone,1,700,02/17/19 17:35,"17 Meadow St, Atlanta, GA 30301" +163518,AAA Batteries (4-pack),1,2.99,02/03/19 16:45,"41 Main St, Los Angeles, CA 90001" +163519,AAA Batteries (4-pack),1,2.99,02/10/19 15:19,"82 Washington St, New York City, NY 10001" +163520,27in 4K Gaming Monitor,1,389.99,02/24/19 18:05,"547 Maple St, San Francisco, CA 94016" +163521,AA Batteries (4-pack),2,3.84,02/14/19 15:02,"74 Jackson St, Seattle, WA 98101" +163522,27in FHD Monitor,1,149.99,02/28/19 22:06,"574 Sunset St, San Francisco, CA 94016" +163523,27in FHD Monitor,1,149.99,02/22/19 18:04,"179 10th St, Los Angeles, CA 90001" +163524,Bose SoundSport Headphones,1,99.99,02/08/19 16:09,"357 Church St, Dallas, TX 75001" +163525,Wired Headphones,1,11.99,02/06/19 20:34,"87 Hill St, San Francisco, CA 94016" +163526,Bose SoundSport Headphones,1,99.99,02/23/19 15:13,"928 Adams St, New York City, NY 10001" +163527,AA Batteries (4-pack),1,3.84,02/21/19 16:36,"957 8th St, Atlanta, GA 30301" +163528,ThinkPad Laptop,1,999.99,02/06/19 10:10,"290 Dogwood St, Portland, OR 97035" +163529,Apple Airpods Headphones,1,150,02/25/19 17:57,"447 Hill St, Los Angeles, CA 90001" +163530,iPhone,1,700,02/23/19 11:37,"496 North St, New York City, NY 10001" +163531,iPhone,1,700,02/26/19 19:53,"328 Highland St, Dallas, TX 75001" +163531,Lightning Charging Cable,1,14.95,02/26/19 19:53,"328 Highland St, Dallas, TX 75001" +163532,Bose SoundSport Headphones,1,99.99,02/22/19 23:46,"802 South St, Seattle, WA 98101" +163533,Macbook Pro Laptop,1,1700,02/05/19 19:05,"303 Pine St, Los Angeles, CA 90001" +163534,27in 4K Gaming Monitor,1,389.99,02/25/19 10:15,"315 Highland St, Austin, TX 73301" +163535,Bose SoundSport Headphones,1,99.99,02/22/19 17:54,"479 Center St, Boston, MA 02215" +163536,Wired Headphones,1,11.99,02/07/19 09:39,"661 13th St, New York City, NY 10001" +163537,iPhone,1,700,02/12/19 10:29,"835 6th St, Boston, MA 02215" +163538,Lightning Charging Cable,2,14.95,02/02/19 16:15,"747 6th St, San Francisco, CA 94016" +163539,Macbook Pro Laptop,1,1700,02/17/19 11:54,"145 Main St, Atlanta, GA 30301" +163540,AAA Batteries (4-pack),1,2.99,02/07/19 08:38,"959 7th St, Dallas, TX 75001" +163541,Lightning Charging Cable,2,14.95,02/08/19 10:04,"690 Forest St, Los Angeles, CA 90001" +163542,Lightning Charging Cable,1,14.95,02/16/19 20:55,"367 5th St, San Francisco, CA 94016" +163543,Bose SoundSport Headphones,1,99.99,02/06/19 17:56,"305 Lincoln St, Austin, TX 73301" +163544,Apple Airpods Headphones,1,150,02/25/19 18:23,"493 West St, Austin, TX 73301" +163545,Google Phone,1,600,02/02/19 19:55,"559 River St, Los Angeles, CA 90001" +163546,Macbook Pro Laptop,1,1700,02/15/19 13:29,"366 6th St, Los Angeles, CA 90001" +163547,USB-C Charging Cable,1,11.95,02/01/19 08:37,"793 Pine St, San Francisco, CA 94016" +163548,Bose SoundSport Headphones,1,99.99,02/14/19 15:03,"781 Johnson St, Seattle, WA 98101" +163549,USB-C Charging Cable,1,11.95,02/14/19 09:57,"205 1st St, Boston, MA 02215" +163550,USB-C Charging Cable,1,11.95,02/22/19 21:01,"918 13th St, Atlanta, GA 30301" +163551,34in Ultrawide Monitor,1,379.99,02/01/19 18:26,"409 Meadow St, Portland, ME 04101" +163552,Lightning Charging Cable,1,14.95,02/07/19 20:35,"861 Washington St, Los Angeles, CA 90001" +163553,USB-C Charging Cable,1,11.95,02/03/19 15:38,"904 Dogwood St, Austin, TX 73301" +163554,27in FHD Monitor,1,149.99,02/11/19 10:55,"717 Forest St, Portland, OR 97035" +163555,USB-C Charging Cable,1,11.95,02/13/19 13:34,"419 Forest St, Boston, MA 02215" +163555,34in Ultrawide Monitor,1,379.99,02/13/19 13:34,"419 Forest St, Boston, MA 02215" +163556,Apple Airpods Headphones,1,150,02/10/19 16:49,"251 Lake St, San Francisco, CA 94016" +163557,Wired Headphones,1,11.99,02/01/19 12:09,"811 6th St, Atlanta, GA 30301" +163558,Bose SoundSport Headphones,1,99.99,02/09/19 20:18,"916 Jefferson St, New York City, NY 10001" +163559,AA Batteries (4-pack),2,3.84,02/20/19 09:51,"782 Sunset St, New York City, NY 10001" +163560,Wired Headphones,1,11.99,02/23/19 20:15,"749 River St, New York City, NY 10001" +163561,Macbook Pro Laptop,1,1700,02/16/19 14:51,"424 Cedar St, Boston, MA 02215" +163562,AA Batteries (4-pack),1,3.84,02/23/19 09:15,"739 West St, New York City, NY 10001" +163563,Lightning Charging Cable,1,14.95,02/20/19 17:36,"995 Sunset St, Los Angeles, CA 90001" +163564,27in 4K Gaming Monitor,1,389.99,02/12/19 15:37,"270 Forest St, Los Angeles, CA 90001" +163565,AAA Batteries (4-pack),1,2.99,02/05/19 23:56,"444 Church St, San Francisco, CA 94016" +163566,USB-C Charging Cable,2,11.95,02/28/19 20:42,"921 Willow St, Boston, MA 02215" +163567,AAA Batteries (4-pack),1,2.99,02/19/19 18:29,"132 Meadow St, Seattle, WA 98101" +163568,Wired Headphones,1,11.99,02/15/19 12:31,"738 North St, San Francisco, CA 94016" +163569,Wired Headphones,1,11.99,02/23/19 20:17,"159 7th St, San Francisco, CA 94016" +163570,AAA Batteries (4-pack),1,2.99,02/20/19 16:51,"621 Willow St, Seattle, WA 98101" +163571,Apple Airpods Headphones,1,150,02/20/19 19:31,"932 Lake St, New York City, NY 10001" +163572,Lightning Charging Cable,1,14.95,02/19/19 13:28,"638 12th St, New York City, NY 10001" +163573,Lightning Charging Cable,1,14.95,02/13/19 22:00,"810 12th St, Atlanta, GA 30301" +163574,USB-C Charging Cable,1,11.95,02/15/19 13:34,"442 River St, Atlanta, GA 30301" +163575,Bose SoundSport Headphones,1,99.99,02/11/19 14:04,"271 Center St, Austin, TX 73301" +163576,Lightning Charging Cable,1,14.95,02/28/19 19:58,"228 Cherry St, Boston, MA 02215" +163577,34in Ultrawide Monitor,1,379.99,02/19/19 10:14,"52 Sunset St, San Francisco, CA 94016" +163578,AAA Batteries (4-pack),3,2.99,02/22/19 17:09,"155 Highland St, New York City, NY 10001" +163579,AA Batteries (4-pack),2,3.84,02/27/19 14:20,"252 Jackson St, Portland, OR 97035" +163580,Lightning Charging Cable,1,14.95,02/11/19 07:14,"591 9th St, San Francisco, CA 94016" +163581,34in Ultrawide Monitor,1,379.99,02/06/19 20:25,"727 Main St, Portland, OR 97035" +163582,Lightning Charging Cable,1,14.95,02/17/19 05:41,"734 Spruce St, San Francisco, CA 94016" +163583,34in Ultrawide Monitor,1,379.99,02/06/19 02:12,"260 Chestnut St, New York City, NY 10001" +163584,27in FHD Monitor,1,149.99,02/20/19 16:32,"532 Lakeview St, Boston, MA 02215" +163585,34in Ultrawide Monitor,1,379.99,02/26/19 13:46,"911 Meadow St, San Francisco, CA 94016" +163586,AAA Batteries (4-pack),2,2.99,02/06/19 08:53,"537 Center St, Boston, MA 02215" +163587,AAA Batteries (4-pack),2,2.99,02/10/19 10:01,"579 Spruce St, San Francisco, CA 94016" +163588,AAA Batteries (4-pack),1,2.99,02/13/19 19:07,"769 Lincoln St, Los Angeles, CA 90001" +163589,Bose SoundSport Headphones,1,99.99,02/09/19 18:08,"51 5th St, Portland, OR 97035" +163590,Apple Airpods Headphones,1,150,02/09/19 13:27,"462 4th St, Austin, TX 73301" +163591,20in Monitor,1,109.99,02/22/19 10:20,"368 4th St, Boston, MA 02215" +163592,Lightning Charging Cable,1,14.95,02/11/19 10:58,"397 Lake St, Portland, OR 97035" +163593,Wired Headphones,1,11.99,02/23/19 06:47,"256 12th St, Seattle, WA 98101" +163594,ThinkPad Laptop,1,999.99,02/17/19 13:39,"753 11th St, Los Angeles, CA 90001" +163595,USB-C Charging Cable,1,11.95,02/17/19 16:59,"280 Maple St, Boston, MA 02215" +163596,27in FHD Monitor,2,149.99,02/02/19 19:12,"352 Park St, New York City, NY 10001" +163597,Apple Airpods Headphones,1,150,02/05/19 22:33,"972 Forest St, Seattle, WA 98101" +163598,AA Batteries (4-pack),3,3.84,02/03/19 20:00,"557 Lincoln St, San Francisco, CA 94016" +163599,AAA Batteries (4-pack),1,2.99,02/02/19 12:53,"561 Maple St, San Francisco, CA 94016" +163600,Wired Headphones,1,11.99,02/19/19 11:17,"777 9th St, New York City, NY 10001" +163601,Macbook Pro Laptop,1,1700,02/25/19 18:37,"493 Pine St, Atlanta, GA 30301" +163602,Vareebadd Phone,1,400,02/23/19 19:35,"558 Meadow St, Boston, MA 02215" +163603,27in FHD Monitor,1,149.99,02/04/19 12:52,"687 Johnson St, Dallas, TX 75001" +163604,Bose SoundSport Headphones,1,99.99,02/15/19 20:26,"773 Cherry St, New York City, NY 10001" +163605,Apple Airpods Headphones,1,150,02/28/19 22:02,"57 Meadow St, Dallas, TX 75001" +163606,iPhone,1,700,02/15/19 17:34,"668 12th St, New York City, NY 10001" +163607,USB-C Charging Cable,1,11.95,02/07/19 19:48,"392 North St, Portland, OR 97035" +163608,Bose SoundSport Headphones,1,99.99,02/28/19 16:42,"354 Jefferson St, New York City, NY 10001" +163609,Lightning Charging Cable,1,14.95,02/02/19 15:26,"178 Lake St, Boston, MA 02215" +163610,Wired Headphones,1,11.99,02/02/19 16:57,"617 River St, Dallas, TX 75001" +163611,34in Ultrawide Monitor,1,379.99,02/03/19 00:19,"724 Cedar St, New York City, NY 10001" +163612,AAA Batteries (4-pack),1,2.99,02/28/19 22:19,"278 Spruce St, Dallas, TX 75001" +163613,AA Batteries (4-pack),1,3.84,02/16/19 12:10,"548 Spruce St, San Francisco, CA 94016" +163614,AA Batteries (4-pack),1,3.84,02/13/19 17:57,"944 River St, Seattle, WA 98101" +163615,USB-C Charging Cable,1,11.95,02/18/19 17:06,"68 Adams St, Dallas, TX 75001" +163616,Apple Airpods Headphones,1,150,02/05/19 13:39,"672 Madison St, Seattle, WA 98101" +163617,USB-C Charging Cable,1,11.95,02/06/19 15:45,"880 Dogwood St, Atlanta, GA 30301" +163618,Bose SoundSport Headphones,1,99.99,02/02/19 21:11,"774 10th St, New York City, NY 10001" +163619,Lightning Charging Cable,1,14.95,02/08/19 11:33,"833 North St, Los Angeles, CA 90001" +163620,Wired Headphones,1,11.99,02/28/19 06:50,"199 Lakeview St, Seattle, WA 98101" +163621,27in FHD Monitor,1,149.99,02/25/19 10:30,"22 Ridge St, Los Angeles, CA 90001" +163622,AAA Batteries (4-pack),1,2.99,02/25/19 16:16,"245 14th St, Portland, OR 97035" +163623,AA Batteries (4-pack),3,3.84,02/16/19 23:01,"401 Cedar St, Seattle, WA 98101" +163624,USB-C Charging Cable,1,11.95,02/24/19 21:29,"134 River St, Los Angeles, CA 90001" +163625,AAA Batteries (4-pack),1,2.99,02/23/19 19:25,"335 8th St, San Francisco, CA 94016" +163625,27in 4K Gaming Monitor,1,389.99,02/23/19 19:25,"335 8th St, San Francisco, CA 94016" +163626,Wired Headphones,1,11.99,02/03/19 13:17,"717 13th St, Dallas, TX 75001" +163627,AAA Batteries (4-pack),1,2.99,02/17/19 20:25,"834 2nd St, Los Angeles, CA 90001" +163628,Apple Airpods Headphones,1,150,02/25/19 11:40,"464 South St, Atlanta, GA 30301" +163629,Apple Airpods Headphones,1,150,02/10/19 13:01,"995 10th St, Atlanta, GA 30301" +163630,Apple Airpods Headphones,1,150,02/20/19 16:33,"591 8th St, San Francisco, CA 94016" +163631,AA Batteries (4-pack),1,3.84,02/18/19 21:49,"797 Washington St, Los Angeles, CA 90001" +163632,Macbook Pro Laptop,1,1700,02/25/19 20:37,"199 Wilson St, San Francisco, CA 94016" +163633,USB-C Charging Cable,1,11.95,02/09/19 08:57,"405 Park St, Boston, MA 02215" +163634,27in FHD Monitor,1,149.99,02/08/19 07:07,"501 Lincoln St, San Francisco, CA 94016" +163635,USB-C Charging Cable,1,11.95,02/25/19 07:45,"844 Johnson St, Boston, MA 02215" +163636,Apple Airpods Headphones,1,150,02/27/19 08:13,"312 Meadow St, Dallas, TX 75001" +163637,Wired Headphones,1,11.99,02/15/19 00:47,"881 Spruce St, Los Angeles, CA 90001" +163638,AAA Batteries (4-pack),2,2.99,02/08/19 21:46,"194 Elm St, Portland, OR 97035" +163639,Lightning Charging Cable,2,14.95,02/02/19 20:19,"394 Lincoln St, San Francisco, CA 94016" +163640,Apple Airpods Headphones,1,150,02/01/19 18:35,"165 North St, Boston, MA 02215" +163641,AA Batteries (4-pack),2,3.84,02/17/19 17:27,"150 1st St, Dallas, TX 75001" +163642,AAA Batteries (4-pack),1,2.99,02/23/19 15:52,"336 Cherry St, Atlanta, GA 30301" +163643,Lightning Charging Cable,2,14.95,02/09/19 12:34,"47 4th St, San Francisco, CA 94016" +163644,Apple Airpods Headphones,1,150,02/03/19 22:49,"736 West St, New York City, NY 10001" +163645,AA Batteries (4-pack),2,3.84,02/14/19 14:18,"682 Jackson St, Seattle, WA 98101" +163646,Lightning Charging Cable,1,14.95,02/07/19 13:27,"121 West St, New York City, NY 10001" +163647,Apple Airpods Headphones,1,150,02/07/19 00:54,"45 Jackson St, San Francisco, CA 94016" +163648,AA Batteries (4-pack),1,3.84,02/28/19 14:13,"261 North St, Boston, MA 02215" +163649,Wired Headphones,1,11.99,02/10/19 12:28,"551 Church St, San Francisco, CA 94016" +163650,AA Batteries (4-pack),1,3.84,02/14/19 15:22,"323 Park St, Dallas, TX 75001" +163651,USB-C Charging Cable,1,11.95,02/22/19 07:21,"241 Lakeview St, Atlanta, GA 30301" +163652,Apple Airpods Headphones,1,150,02/20/19 18:25,"586 Johnson St, Los Angeles, CA 90001" +163653,AAA Batteries (4-pack),4,2.99,02/13/19 18:54,"324 Dogwood St, Los Angeles, CA 90001" +163654,Bose SoundSport Headphones,1,99.99,02/21/19 08:26,"324 Church St, San Francisco, CA 94016" +163655,34in Ultrawide Monitor,1,379.99,02/10/19 01:37,"859 Walnut St, Boston, MA 02215" +163656,Flatscreen TV,1,300,02/20/19 09:47,"729 Pine St, Atlanta, GA 30301" +163657,Google Phone,1,600,02/21/19 21:27,"865 Pine St, Boston, MA 02215" +163657,USB-C Charging Cable,1,11.95,02/21/19 21:27,"865 Pine St, Boston, MA 02215" +163658,USB-C Charging Cable,1,11.95,02/06/19 13:40,"777 North St, Los Angeles, CA 90001" +163659,AAA Batteries (4-pack),2,2.99,02/21/19 15:22,"882 Pine St, San Francisco, CA 94016" +163660,AA Batteries (4-pack),1,3.84,02/11/19 18:42,"283 Walnut St, Dallas, TX 75001" +163661,USB-C Charging Cable,1,11.95,02/19/19 21:46,"982 Hickory St, Dallas, TX 75001" +163662,USB-C Charging Cable,3,11.95,02/05/19 16:13,"349 9th St, Seattle, WA 98101" +163663,Apple Airpods Headphones,1,150,02/22/19 12:24,"404 10th St, San Francisco, CA 94016" +163664,AAA Batteries (4-pack),1,2.99,02/21/19 17:24,"927 West St, Los Angeles, CA 90001" +163665,Flatscreen TV,1,300,02/01/19 14:51,"600 Walnut St, Los Angeles, CA 90001" +163666,ThinkPad Laptop,1,999.99,02/04/19 17:25,"668 River St, Los Angeles, CA 90001" +163667,Wired Headphones,1,11.99,02/05/19 08:56,"430 Cedar St, Los Angeles, CA 90001" +163668,AA Batteries (4-pack),3,3.84,02/26/19 10:26,"706 12th St, New York City, NY 10001" +163669,AAA Batteries (4-pack),1,2.99,02/01/19 07:56,"957 Willow St, Atlanta, GA 30301" +163670,Google Phone,1,600,02/23/19 11:10,"626 River St, San Francisco, CA 94016" +163671,AA Batteries (4-pack),1,3.84,02/20/19 11:59,"23 Adams St, New York City, NY 10001" +163672,AAA Batteries (4-pack),2,2.99,02/21/19 12:16,"733 Elm St, San Francisco, CA 94016" +163673,AAA Batteries (4-pack),1,2.99,02/17/19 18:44,"636 Willow St, New York City, NY 10001" +163674,Apple Airpods Headphones,1,150,02/22/19 11:39,"773 Jefferson St, Portland, OR 97035" +163675,AA Batteries (4-pack),1,3.84,02/17/19 12:39,"177 8th St, New York City, NY 10001" +163676,27in FHD Monitor,2,149.99,02/23/19 17:42,"835 Highland St, Seattle, WA 98101" +163677,AA Batteries (4-pack),1,3.84,02/20/19 20:51,"970 Spruce St, San Francisco, CA 94016" +163678,AAA Batteries (4-pack),1,2.99,02/07/19 22:02,"438 Pine St, San Francisco, CA 94016" +163679,34in Ultrawide Monitor,1,379.99,02/19/19 11:23,"309 5th St, Portland, OR 97035" +163680,AA Batteries (4-pack),1,3.84,02/13/19 12:50,"94 Sunset St, Seattle, WA 98101" +163681,27in 4K Gaming Monitor,1,389.99,02/09/19 23:14,"712 Meadow St, Atlanta, GA 30301" +163682,USB-C Charging Cable,1,11.95,02/19/19 13:23,"962 Highland St, San Francisco, CA 94016" +163683,USB-C Charging Cable,1,11.95,02/22/19 19:58,"384 Jefferson St, Boston, MA 02215" +163684,27in FHD Monitor,1,149.99,02/18/19 01:32,"107 North St, Seattle, WA 98101" +163685,Google Phone,1,600,02/01/19 07:49,"978 13th St, San Francisco, CA 94016" +163685,USB-C Charging Cable,1,11.95,02/01/19 07:49,"978 13th St, San Francisco, CA 94016" +163686,iPhone,1,700,02/21/19 16:50,"462 14th St, Dallas, TX 75001" +163687,Macbook Pro Laptop,1,1700,02/03/19 22:47,"584 14th St, Atlanta, GA 30301" +163688,34in Ultrawide Monitor,1,379.99,02/14/19 15:11,"555 Dogwood St, San Francisco, CA 94016" +163689,34in Ultrawide Monitor,1,379.99,02/18/19 01:21,"582 2nd St, New York City, NY 10001" +163690,AA Batteries (4-pack),1,3.84,02/21/19 10:44,"368 14th St, San Francisco, CA 94016" +163691,AAA Batteries (4-pack),1,2.99,02/23/19 16:42,"866 Sunset St, San Francisco, CA 94016" +163692,Lightning Charging Cable,1,14.95,02/23/19 19:47,"153 Walnut St, Dallas, TX 75001" +163693,Wired Headphones,1,11.99,02/03/19 14:26,"187 Highland St, San Francisco, CA 94016" +163694,Lightning Charging Cable,1,14.95,02/21/19 07:40,"898 Adams St, Los Angeles, CA 90001" +163695,Bose SoundSport Headphones,1,99.99,02/16/19 18:52,"254 Cherry St, Los Angeles, CA 90001" +163696,Flatscreen TV,1,300,02/07/19 17:11,"244 Elm St, Los Angeles, CA 90001" +163697,Lightning Charging Cable,1,14.95,02/13/19 17:05,"781 13th St, Austin, TX 73301" +163698,AA Batteries (4-pack),2,3.84,02/07/19 14:41,"227 Chestnut St, Los Angeles, CA 90001" +163699,Bose SoundSport Headphones,1,99.99,02/26/19 14:27,"352 5th St, Dallas, TX 75001" +163700,Lightning Charging Cable,1,14.95,02/06/19 12:50,"527 Spruce St, San Francisco, CA 94016" +163701,Apple Airpods Headphones,1,150,02/03/19 15:41,"323 Cherry St, Portland, OR 97035" +163702,AA Batteries (4-pack),1,3.84,02/15/19 18:55,"950 6th St, San Francisco, CA 94016" +163703,Google Phone,1,600,02/14/19 22:58,"321 9th St, Atlanta, GA 30301" +163703,USB-C Charging Cable,1,11.95,02/14/19 22:58,"321 9th St, Atlanta, GA 30301" +163704,Wired Headphones,1,11.99,02/08/19 21:45,"454 10th St, San Francisco, CA 94016" +163705,Apple Airpods Headphones,1,150,02/13/19 12:58,"65 5th St, Los Angeles, CA 90001" +163706,Apple Airpods Headphones,1,150,02/15/19 18:39,"386 Madison St, Portland, OR 97035" +163707,USB-C Charging Cable,1,11.95,02/18/19 13:25,"254 Hill St, Los Angeles, CA 90001" +163708,iPhone,1,700,02/19/19 13:03,"613 Park St, Dallas, TX 75001" +163709,iPhone,1,700,02/13/19 23:02,"429 2nd St, New York City, NY 10001" +163710,Google Phone,1,600,02/09/19 10:40,"123 Chestnut St, New York City, NY 10001" +163711,USB-C Charging Cable,1,11.95,02/24/19 10:18,"484 6th St, San Francisco, CA 94016" +163712,Macbook Pro Laptop,1,1700,02/19/19 13:56,"371 13th St, San Francisco, CA 94016" +163713,27in 4K Gaming Monitor,1,389.99,02/27/19 20:19,"714 Sunset St, Atlanta, GA 30301" +163714,AA Batteries (4-pack),1,3.84,02/09/19 21:16,"643 11th St, San Francisco, CA 94016" +163715,Wired Headphones,2,11.99,02/24/19 10:29,"936 Church St, Austin, TX 73301" +163716,Wired Headphones,1,11.99,02/15/19 14:43,"56 Jefferson St, New York City, NY 10001" +163717,Bose SoundSport Headphones,1,99.99,02/15/19 12:11,"448 Hill St, Boston, MA 02215" +163718,Lightning Charging Cable,1,14.95,02/17/19 16:16,"996 10th St, Portland, OR 97035" +163719,AAA Batteries (4-pack),1,2.99,02/05/19 13:08,"916 Cedar St, Seattle, WA 98101" +163719,AA Batteries (4-pack),1,3.84,02/05/19 13:08,"916 Cedar St, Seattle, WA 98101" +163720,27in FHD Monitor,1,149.99,02/14/19 12:23,"178 14th St, San Francisco, CA 94016" +163721,27in 4K Gaming Monitor,1,389.99,02/20/19 14:01,"935 Cherry St, San Francisco, CA 94016" +163722,Macbook Pro Laptop,1,1700,02/11/19 18:36,"673 Madison St, Dallas, TX 75001" +163723,27in FHD Monitor,1,149.99,02/07/19 12:33,"689 13th St, New York City, NY 10001" +163724,Macbook Pro Laptop,1,1700,02/23/19 08:16,"535 11th St, San Francisco, CA 94016" +163725,AA Batteries (4-pack),1,3.84,02/09/19 14:16,"247 Adams St, Seattle, WA 98101" +163726,AAA Batteries (4-pack),1,2.99,02/28/19 21:14,"793 11th St, San Francisco, CA 94016" +163727,Apple Airpods Headphones,1,150,02/12/19 15:57,"395 Madison St, Atlanta, GA 30301" +163728,27in 4K Gaming Monitor,1,389.99,02/24/19 09:30,"124 Dogwood St, San Francisco, CA 94016" +163729,USB-C Charging Cable,1,11.95,02/04/19 16:05,"250 Chestnut St, New York City, NY 10001" +163730,iPhone,1,700,02/09/19 17:02,"152 4th St, Los Angeles, CA 90001" +163731,Apple Airpods Headphones,1,150,02/13/19 20:20,"915 Lincoln St, San Francisco, CA 94016" +163732,AA Batteries (4-pack),2,3.84,02/19/19 12:48,"99 Madison St, New York City, NY 10001" +163733,USB-C Charging Cable,1,11.95,02/27/19 17:15,"651 North St, New York City, NY 10001" +163734,Wired Headphones,1,11.99,02/16/19 16:50,"782 Chestnut St, Atlanta, GA 30301" +163735,27in FHD Monitor,1,149.99,02/14/19 10:51,"870 Jefferson St, New York City, NY 10001" +163736,AA Batteries (4-pack),1,3.84,02/15/19 07:20,"238 Dogwood St, Los Angeles, CA 90001" +163737,Wired Headphones,1,11.99,02/27/19 14:42,"255 Walnut St, Seattle, WA 98101" +163738,Wired Headphones,1,11.99,02/15/19 22:32,"196 Jefferson St, Dallas, TX 75001" +163739,USB-C Charging Cable,1,11.95,02/06/19 05:17,"422 12th St, Boston, MA 02215" +163740,Bose SoundSport Headphones,1,99.99,02/10/19 01:34,"155 8th St, Los Angeles, CA 90001" +163741,Apple Airpods Headphones,1,150,02/14/19 14:21,"459 Spruce St, New York City, NY 10001" +163742,Bose SoundSport Headphones,1,99.99,02/28/19 14:39,"990 Adams St, San Francisco, CA 94016" +163743,Wired Headphones,1,11.99,02/14/19 15:17,"830 Dogwood St, Portland, OR 97035" +163744,ThinkPad Laptop,1,999.99,02/03/19 18:23,"729 Hill St, San Francisco, CA 94016" +163745,AAA Batteries (4-pack),1,2.99,02/26/19 15:21,"89 Maple St, San Francisco, CA 94016" +163746,AAA Batteries (4-pack),1,2.99,02/17/19 12:22,"359 Willow St, New York City, NY 10001" +163747,iPhone,1,700,02/18/19 22:05,"839 Elm St, Atlanta, GA 30301" +163748,27in FHD Monitor,1,149.99,02/28/19 12:46,"636 Jefferson St, Los Angeles, CA 90001" +163749,USB-C Charging Cable,1,11.95,02/23/19 17:43,"916 Cedar St, Atlanta, GA 30301" +163750,AA Batteries (4-pack),2,3.84,02/24/19 14:16,"410 8th St, Portland, OR 97035" +163751,AA Batteries (4-pack),3,3.84,02/02/19 16:07,"97 South St, New York City, NY 10001" +163752,27in 4K Gaming Monitor,1,389.99,02/10/19 20:40,"10 14th St, Portland, OR 97035" +163753,Wired Headphones,1,11.99,02/16/19 13:02,"664 14th St, Boston, MA 02215" +163754,Wired Headphones,1,11.99,02/24/19 17:13,"751 Washington St, San Francisco, CA 94016" +163755,Bose SoundSport Headphones,1,99.99,02/03/19 17:45,"137 North St, Portland, OR 97035" +163756,Vareebadd Phone,1,400,02/03/19 12:02,"669 8th St, Boston, MA 02215" +163756,USB-C Charging Cable,1,11.95,02/03/19 12:02,"669 8th St, Boston, MA 02215" +163757,Apple Airpods Headphones,1,150,02/07/19 16:34,"557 6th St, San Francisco, CA 94016" +163758,27in 4K Gaming Monitor,1,389.99,02/08/19 08:38,"670 Pine St, Boston, MA 02215" +163759,Apple Airpods Headphones,1,150,02/10/19 23:41,"707 Lakeview St, Dallas, TX 75001" +163760,USB-C Charging Cable,1,11.95,02/18/19 12:46,"443 River St, Los Angeles, CA 90001" +163761,Flatscreen TV,1,300,02/18/19 16:38,"134 12th St, Portland, OR 97035" +163762,Lightning Charging Cable,1,14.95,02/04/19 08:28,"320 12th St, Boston, MA 02215" +163763,Lightning Charging Cable,1,14.95,02/12/19 13:37,"844 Forest St, New York City, NY 10001" +163764,USB-C Charging Cable,1,11.95,02/23/19 10:02,"645 Hill St, Portland, OR 97035" +163765,USB-C Charging Cable,1,11.95,02/15/19 18:31,"89 Willow St, San Francisco, CA 94016" +163766,AAA Batteries (4-pack),1,2.99,02/24/19 21:15,"16 Church St, Los Angeles, CA 90001" +163767,Wired Headphones,1,11.99,02/20/19 09:26,"804 9th St, Austin, TX 73301" +163768,AAA Batteries (4-pack),1,2.99,02/03/19 14:20,"239 Highland St, Portland, OR 97035" +163769,34in Ultrawide Monitor,1,379.99,02/24/19 13:54,"666 North St, Portland, ME 04101" +163770,34in Ultrawide Monitor,1,379.99,02/08/19 01:39,"128 Ridge St, San Francisco, CA 94016" +163771,USB-C Charging Cable,1,11.95,02/17/19 13:56,"282 Cedar St, San Francisco, CA 94016" +163772,Google Phone,1,600,02/27/19 19:55,"858 Maple St, New York City, NY 10001" +163773,27in FHD Monitor,1,149.99,02/15/19 07:37,"822 Walnut St, Dallas, TX 75001" +163774,Lightning Charging Cable,1,14.95,02/19/19 06:43,"487 Cedar St, Seattle, WA 98101" +163775,iPhone,1,700,02/11/19 08:00,"803 Hickory St, Dallas, TX 75001" +163776,USB-C Charging Cable,1,11.95,02/22/19 21:48,"446 7th St, Austin, TX 73301" +163777,Macbook Pro Laptop,1,1700,02/14/19 16:48,"984 10th St, Los Angeles, CA 90001" +163778,Macbook Pro Laptop,1,1700,02/26/19 07:50,"853 9th St, New York City, NY 10001" +163779,34in Ultrawide Monitor,1,379.99,02/17/19 22:00,"596 Adams St, Boston, MA 02215" +163780,Bose SoundSport Headphones,1,99.99,02/07/19 18:22,"723 Center St, Los Angeles, CA 90001" +163781,ThinkPad Laptop,1,999.99,02/24/19 22:41,"363 Lincoln St, Los Angeles, CA 90001" +163782,Apple Airpods Headphones,1,150,02/14/19 06:56,"834 Adams St, Los Angeles, CA 90001" +163783,Wired Headphones,1,11.99,02/22/19 09:36,"369 Elm St, Austin, TX 73301" +163784,ThinkPad Laptop,1,999.99,02/09/19 12:11,"981 Ridge St, New York City, NY 10001" +163785,27in 4K Gaming Monitor,1,389.99,02/18/19 10:34,"265 Maple St, Atlanta, GA 30301" +163786,34in Ultrawide Monitor,1,379.99,02/13/19 08:45,"413 Maple St, San Francisco, CA 94016" +163787,Wired Headphones,1,11.99,02/06/19 12:47,"286 Forest St, Portland, OR 97035" +163788,USB-C Charging Cable,1,11.95,02/23/19 23:27,"197 South St, San Francisco, CA 94016" +163789,iPhone,1,700,02/09/19 07:22,"164 River St, Boston, MA 02215" +163790,Google Phone,1,600,02/13/19 07:35,"761 Lakeview St, San Francisco, CA 94016" +163791,20in Monitor,1,109.99,02/03/19 20:10,"452 Hickory St, Portland, OR 97035" +163791,AA Batteries (4-pack),1,3.84,02/03/19 20:10,"452 Hickory St, Portland, OR 97035" +163792,Macbook Pro Laptop,1,1700,02/10/19 07:28,"945 2nd St, New York City, NY 10001" +163793,AA Batteries (4-pack),1,3.84,02/08/19 19:07,"276 8th St, New York City, NY 10001" +163794,Lightning Charging Cable,1,14.95,02/07/19 09:03,"506 Hickory St, San Francisco, CA 94016" +163795,AAA Batteries (4-pack),1,2.99,02/02/19 23:08,"342 Jefferson St, Boston, MA 02215" +163796,Wired Headphones,2,11.99,02/09/19 21:49,"204 14th St, New York City, NY 10001" +163797,27in FHD Monitor,1,149.99,02/03/19 11:41,"377 Forest St, Dallas, TX 75001" +163798,34in Ultrawide Monitor,1,379.99,02/05/19 11:25,"31 Lincoln St, Seattle, WA 98101" +163799,AAA Batteries (4-pack),1,2.99,02/28/19 13:50,"472 Adams St, New York City, NY 10001" +163800,Bose SoundSport Headphones,1,99.99,02/27/19 18:55,"458 Park St, Boston, MA 02215" +163801,USB-C Charging Cable,1,11.95,02/17/19 09:31,"874 13th St, Portland, OR 97035" +163802,Macbook Pro Laptop,1,1700,02/13/19 10:50,"248 Hill St, San Francisco, CA 94016" +163803,27in 4K Gaming Monitor,1,389.99,02/27/19 20:42,"748 Highland St, San Francisco, CA 94016" +163804,Lightning Charging Cable,1,14.95,02/14/19 17:50,"541 Lake St, Dallas, TX 75001" +163805,ThinkPad Laptop,1,999.99,02/11/19 20:03,"862 Main St, Dallas, TX 75001" +163806,Lightning Charging Cable,2,14.95,02/27/19 19:36,"753 14th St, Los Angeles, CA 90001" +163807,Bose SoundSport Headphones,1,99.99,02/18/19 19:15,"596 Lake St, Portland, OR 97035" +163808,Lightning Charging Cable,1,14.95,02/04/19 01:29,"211 Lincoln St, Atlanta, GA 30301" +163809,Google Phone,1,600,02/04/19 19:31,"146 River St, Seattle, WA 98101" +163810,27in FHD Monitor,1,149.99,02/20/19 20:34,"383 Ridge St, San Francisco, CA 94016" +163811,AAA Batteries (4-pack),1,2.99,02/09/19 19:27,"698 River St, Los Angeles, CA 90001" +163812,AA Batteries (4-pack),2,3.84,02/16/19 17:30,"888 Cedar St, Seattle, WA 98101" +163813,AA Batteries (4-pack),1,3.84,02/11/19 21:32,"872 Hill St, Portland, OR 97035" +163814,Flatscreen TV,1,300,02/09/19 22:29,"633 4th St, San Francisco, CA 94016" +163814,USB-C Charging Cable,1,11.95,02/09/19 22:29,"633 4th St, San Francisco, CA 94016" +163815,27in FHD Monitor,1,149.99,02/15/19 19:16,"455 Maple St, San Francisco, CA 94016" +163816,Wired Headphones,1,11.99,02/06/19 15:39,"769 Cherry St, Portland, OR 97035" +163817,AA Batteries (4-pack),2,3.84,02/26/19 13:45,"266 West St, San Francisco, CA 94016" +163818,AA Batteries (4-pack),1,3.84,02/17/19 20:16,"921 Jackson St, Los Angeles, CA 90001" +163819,USB-C Charging Cable,1,11.95,02/14/19 20:19,"621 Ridge St, Los Angeles, CA 90001" +163820,27in FHD Monitor,1,149.99,02/09/19 18:10,"884 9th St, Los Angeles, CA 90001" +163821,Wired Headphones,1,11.99,02/26/19 10:45,"741 4th St, San Francisco, CA 94016" +163821,Apple Airpods Headphones,1,150,02/26/19 10:45,"741 4th St, San Francisco, CA 94016" +163822,Apple Airpods Headphones,1,150,02/01/19 07:24,"84 Cedar St, New York City, NY 10001" +163823,Wired Headphones,1,11.99,02/11/19 10:59,"624 14th St, Atlanta, GA 30301" +163824,AA Batteries (4-pack),4,3.84,02/20/19 06:08,"66 Lakeview St, Atlanta, GA 30301" +163825,iPhone,1,700,02/17/19 21:21,"762 Elm St, Atlanta, GA 30301" +163825,Lightning Charging Cable,1,14.95,02/17/19 21:21,"762 Elm St, Atlanta, GA 30301" +163825,Wired Headphones,1,11.99,02/17/19 21:21,"762 Elm St, Atlanta, GA 30301" +163826,USB-C Charging Cable,1,11.95,02/02/19 18:01,"459 South St, San Francisco, CA 94016" +163827,27in FHD Monitor,1,149.99,02/18/19 21:25,"507 River St, Portland, OR 97035" +163828,AA Batteries (4-pack),1,3.84,02/25/19 22:06,"779 River St, Dallas, TX 75001" +163829,ThinkPad Laptop,1,999.99,02/09/19 10:57,"289 6th St, Seattle, WA 98101" +163830,AAA Batteries (4-pack),2,2.99,02/11/19 08:38,"793 Maple St, Boston, MA 02215" +163831,LG Washing Machine,1,600.0,02/24/19 17:30,"336 Jackson St, Atlanta, GA 30301" +163832,Lightning Charging Cable,2,14.95,02/25/19 06:00,"355 Church St, Seattle, WA 98101" +163832,AA Batteries (4-pack),1,3.84,02/25/19 06:00,"355 Church St, Seattle, WA 98101" +163833,ThinkPad Laptop,1,999.99,02/01/19 20:18,"148 1st St, Los Angeles, CA 90001" +163834,USB-C Charging Cable,2,11.95,02/07/19 19:43,"605 Church St, New York City, NY 10001" +163835,Apple Airpods Headphones,1,150,02/10/19 21:20,"891 Elm St, Boston, MA 02215" +163836,AAA Batteries (4-pack),1,2.99,02/24/19 12:18,"576 Park St, Dallas, TX 75001" +163837,Macbook Pro Laptop,1,1700,02/24/19 14:34,"863 Wilson St, San Francisco, CA 94016" +163838,Lightning Charging Cable,1,14.95,02/05/19 12:10,"341 13th St, Dallas, TX 75001" +163839,AAA Batteries (4-pack),1,2.99,02/06/19 10:34,"270 2nd St, Austin, TX 73301" +163840,27in FHD Monitor,1,149.99,02/26/19 00:08,"945 River St, Atlanta, GA 30301" +163841,AAA Batteries (4-pack),1,2.99,02/20/19 23:30,"935 Madison St, Los Angeles, CA 90001" +163842,Apple Airpods Headphones,1,150,02/06/19 12:41,"10 Hill St, New York City, NY 10001" +163843,Macbook Pro Laptop,1,1700,02/03/19 16:38,"60 Spruce St, New York City, NY 10001" +163844,Lightning Charging Cable,1,14.95,02/13/19 13:38,"269 4th St, Atlanta, GA 30301" +163844,AAA Batteries (4-pack),2,2.99,02/13/19 13:38,"269 4th St, Atlanta, GA 30301" +163845,34in Ultrawide Monitor,1,379.99,02/07/19 18:12,"271 Meadow St, Atlanta, GA 30301" +163845,Lightning Charging Cable,1,14.95,02/07/19 18:12,"271 Meadow St, Atlanta, GA 30301" +163846,Lightning Charging Cable,1,14.95,02/24/19 07:15,"784 Lakeview St, Dallas, TX 75001" +163847,Macbook Pro Laptop,1,1700,02/18/19 13:36,"826 7th St, Portland, OR 97035" +163848,Wired Headphones,1,11.99,02/11/19 13:05,"728 North St, New York City, NY 10001" +163849,USB-C Charging Cable,1,11.95,02/15/19 13:28,"978 Jackson St, New York City, NY 10001" +163850,34in Ultrawide Monitor,1,379.99,02/01/19 18:52,"393 Meadow St, Los Angeles, CA 90001" +163851,AAA Batteries (4-pack),1,2.99,02/28/19 14:29,"626 Lincoln St, San Francisco, CA 94016" +163852,AA Batteries (4-pack),1,3.84,02/28/19 19:48,"981 Center St, Atlanta, GA 30301" +163853,Lightning Charging Cable,2,14.95,02/08/19 20:12,"743 Hill St, New York City, NY 10001" +163854,AA Batteries (4-pack),1,3.84,02/08/19 14:18,"748 Washington St, San Francisco, CA 94016" +163855,Flatscreen TV,1,300,02/23/19 09:02,"164 1st St, Boston, MA 02215" +163856,USB-C Charging Cable,1,11.95,02/14/19 19:51,"814 Wilson St, Portland, OR 97035" +163857,USB-C Charging Cable,2,11.95,02/14/19 18:33,"890 Wilson St, Austin, TX 73301" +163858,27in 4K Gaming Monitor,1,389.99,02/07/19 08:32,"793 Jackson St, Los Angeles, CA 90001" +163859,AA Batteries (4-pack),2,3.84,02/28/19 10:19,"608 Forest St, San Francisco, CA 94016" +163860,Wired Headphones,1,11.99,02/04/19 20:37,"844 Meadow St, Boston, MA 02215" +163861,AAA Batteries (4-pack),2,2.99,02/12/19 11:31,"967 Church St, San Francisco, CA 94016" +163862,Macbook Pro Laptop,1,1700,02/27/19 07:40,"354 Meadow St, Austin, TX 73301" +163863,20in Monitor,1,109.99,02/04/19 10:53,"799 Lincoln St, Los Angeles, CA 90001" +163864,Lightning Charging Cable,1,14.95,02/20/19 00:10,"802 12th St, Portland, OR 97035" +163865,iPhone,1,700,02/25/19 20:31,"758 12th St, Boston, MA 02215" +163866,Wired Headphones,1,11.99,02/04/19 20:42,"528 11th St, Boston, MA 02215" +163867,34in Ultrawide Monitor,1,379.99,02/20/19 20:07,"60 4th St, San Francisco, CA 94016" +163868,ThinkPad Laptop,1,999.99,02/08/19 17:25,"265 Spruce St, New York City, NY 10001" +163869,Lightning Charging Cable,1,14.95,02/04/19 10:11,"913 Chestnut St, Los Angeles, CA 90001" +163869,27in FHD Monitor,1,149.99,02/04/19 10:11,"913 Chestnut St, Los Angeles, CA 90001" +163870,AAA Batteries (4-pack),1,2.99,02/28/19 10:22,"246 Lake St, Los Angeles, CA 90001" +163871,Macbook Pro Laptop,1,1700,02/09/19 21:23,"701 Main St, Los Angeles, CA 90001" +163872,AA Batteries (4-pack),1,3.84,02/13/19 19:22,"528 Park St, New York City, NY 10001" +163873,Apple Airpods Headphones,1,150,02/28/19 14:46,"148 Park St, New York City, NY 10001" +163874,Lightning Charging Cable,1,14.95,02/15/19 14:51,"318 5th St, Portland, OR 97035" +163875,Apple Airpods Headphones,1,150,02/18/19 12:03,"766 Highland St, Austin, TX 73301" +163876,iPhone,1,700,02/23/19 12:01,"720 13th St, Los Angeles, CA 90001" +163876,Lightning Charging Cable,1,14.95,02/23/19 12:01,"720 13th St, Los Angeles, CA 90001" +163877,Google Phone,1,600,02/13/19 14:31,"717 Madison St, San Francisco, CA 94016" +163878,Wired Headphones,1,11.99,02/21/19 14:14,"429 Hill St, Los Angeles, CA 90001" +163879,Lightning Charging Cable,1,14.95,02/08/19 09:22,"566 13th St, Los Angeles, CA 90001" +163880,27in FHD Monitor,1,149.99,02/11/19 16:52,"183 Maple St, San Francisco, CA 94016" +163881,Lightning Charging Cable,1,14.95,02/11/19 23:17,"692 Spruce St, New York City, NY 10001" +163882,Wired Headphones,2,11.99,02/20/19 15:07,"672 River St, Atlanta, GA 30301" +163883,AAA Batteries (4-pack),1,2.99,02/20/19 13:41,"834 Walnut St, New York City, NY 10001" +163884,AAA Batteries (4-pack),1,2.99,02/08/19 09:23,"887 Ridge St, Los Angeles, CA 90001" +163885,AAA Batteries (4-pack),2,2.99,02/22/19 19:05,"465 5th St, New York City, NY 10001" +163886,AA Batteries (4-pack),1,3.84,02/17/19 15:30,"823 10th St, New York City, NY 10001" +163887,Flatscreen TV,1,300,02/11/19 11:22,"82 7th St, Los Angeles, CA 90001" +,,,,, +163888,Apple Airpods Headphones,1,150,02/28/19 10:15,"658 Jefferson St, New York City, NY 10001" +163889,Wired Headphones,1,11.99,02/26/19 15:28,"737 Walnut St, Atlanta, GA 30301" +163890,27in FHD Monitor,1,149.99,02/05/19 12:49,"408 Center St, New York City, NY 10001" +163891,34in Ultrawide Monitor,1,379.99,02/08/19 19:16,"428 1st St, San Francisco, CA 94016" +163892,AA Batteries (4-pack),1,3.84,02/14/19 00:01,"337 Cedar St, Boston, MA 02215" +163893,Apple Airpods Headphones,1,150,02/05/19 18:41,"87 Main St, New York City, NY 10001" +163894,34in Ultrawide Monitor,1,379.99,02/09/19 19:06,"314 Hill St, Los Angeles, CA 90001" +163894,Bose SoundSport Headphones,1,99.99,02/09/19 19:06,"314 Hill St, Los Angeles, CA 90001" +163895,Google Phone,1,600,02/22/19 10:43,"90 7th St, San Francisco, CA 94016" +163896,Lightning Charging Cable,1,14.95,02/16/19 18:08,"582 Highland St, Atlanta, GA 30301" +163897,Google Phone,1,600,02/22/19 16:30,"243 Walnut St, New York City, NY 10001" +163898,Bose SoundSport Headphones,1,99.99,02/27/19 18:24,"121 6th St, Boston, MA 02215" +163899,Lightning Charging Cable,2,14.95,02/14/19 21:15,"912 11th St, San Francisco, CA 94016" +163900,AAA Batteries (4-pack),7,2.99,02/15/19 13:13,"363 8th St, San Francisco, CA 94016" +163901,Bose SoundSport Headphones,1,99.99,02/08/19 23:40,"751 7th St, Los Angeles, CA 90001" +163902,Bose SoundSport Headphones,1,99.99,02/04/19 23:53,"925 South St, Boston, MA 02215" +163902,Wired Headphones,1,11.99,02/04/19 23:53,"925 South St, Boston, MA 02215" +163903,Wired Headphones,1,11.99,02/24/19 11:20,"52 Walnut St, San Francisco, CA 94016" +163904,iPhone,1,700,02/07/19 18:35,"96 Willow St, New York City, NY 10001" +163905,Macbook Pro Laptop,1,1700,02/05/19 15:23,"434 10th St, Austin, TX 73301" +163906,AAA Batteries (4-pack),1,2.99,02/22/19 06:11,"174 Maple St, Atlanta, GA 30301" +163907,USB-C Charging Cable,1,11.95,02/15/19 19:13,"243 Jackson St, New York City, NY 10001" +163908,Lightning Charging Cable,1,14.95,02/15/19 09:27,"169 13th St, New York City, NY 10001" +163909,Lightning Charging Cable,3,14.95,02/21/19 17:44,"326 Highland St, Portland, OR 97035" +163910,Flatscreen TV,1,300,02/07/19 09:50,"66 5th St, Portland, OR 97035" +163911,Wired Headphones,1,11.99,02/13/19 16:10,"603 Lake St, Austin, TX 73301" +163912,Lightning Charging Cable,1,14.95,02/06/19 13:08,"85 8th St, New York City, NY 10001" +163913,Lightning Charging Cable,1,14.95,02/16/19 10:29,"979 Elm St, Dallas, TX 75001" +163914,AAA Batteries (4-pack),1,2.99,02/06/19 07:19,"164 Jackson St, Los Angeles, CA 90001" +163915,Flatscreen TV,1,300,02/19/19 12:15,"720 Elm St, Boston, MA 02215" +163916,Wired Headphones,1,11.99,02/27/19 13:21,"762 Forest St, San Francisco, CA 94016" +163917,27in 4K Gaming Monitor,1,389.99,02/02/19 18:33,"332 2nd St, Boston, MA 02215" +163918,AA Batteries (4-pack),1,3.84,02/03/19 08:33,"74 Pine St, Atlanta, GA 30301" +163919,27in FHD Monitor,1,149.99,02/07/19 12:36,"332 Highland St, New York City, NY 10001" +163920,AAA Batteries (4-pack),1,2.99,02/19/19 18:34,"627 Willow St, Dallas, TX 75001" +163921,USB-C Charging Cable,1,11.95,02/20/19 13:18,"73 West St, Los Angeles, CA 90001" +163922,ThinkPad Laptop,1,999.99,02/02/19 22:07,"377 Chestnut St, Boston, MA 02215" +163923,AAA Batteries (4-pack),3,2.99,02/25/19 07:23,"620 Church St, San Francisco, CA 94016" +163924,Vareebadd Phone,1,400,02/20/19 16:17,"501 Washington St, Boston, MA 02215" +163925,AAA Batteries (4-pack),1,2.99,02/19/19 13:31,"572 Meadow St, San Francisco, CA 94016" +163926,USB-C Charging Cable,1,11.95,02/12/19 23:29,"742 Hickory St, San Francisco, CA 94016" +163927,Wired Headphones,1,11.99,02/10/19 21:28,"773 Adams St, Dallas, TX 75001" +163928,27in 4K Gaming Monitor,1,389.99,02/11/19 19:17,"384 Madison St, New York City, NY 10001" +163929,Vareebadd Phone,1,400,02/26/19 23:23,"872 Jackson St, Austin, TX 73301" +163930,Wired Headphones,1,11.99,02/27/19 13:43,"800 Willow St, Dallas, TX 75001" +163931,iPhone,1,700,02/23/19 10:21,"382 Washington St, Portland, ME 04101" +163932,27in 4K Gaming Monitor,1,389.99,02/05/19 17:08,"382 Washington St, Dallas, TX 75001" +163933,Lightning Charging Cable,1,14.95,02/14/19 18:11,"336 Church St, Boston, MA 02215" +163934,USB-C Charging Cable,1,11.95,02/21/19 08:08,"975 Walnut St, Los Angeles, CA 90001" +163935,Bose SoundSport Headphones,1,99.99,02/26/19 14:37,"292 Maple St, Austin, TX 73301" +163936,34in Ultrawide Monitor,1,379.99,02/22/19 16:17,"413 West St, Atlanta, GA 30301" +163937,Vareebadd Phone,1,400,02/06/19 11:53,"664 Church St, Boston, MA 02215" +163938,Apple Airpods Headphones,1,150,02/10/19 20:05,"674 Hill St, Dallas, TX 75001" +163939,Wired Headphones,1,11.99,02/17/19 16:40,"159 Ridge St, Seattle, WA 98101" +163940,USB-C Charging Cable,1,11.95,02/17/19 19:16,"956 Hickory St, Atlanta, GA 30301" +163941,27in FHD Monitor,1,149.99,02/12/19 15:52,"508 Jackson St, Boston, MA 02215" +163942,Wired Headphones,1,11.99,02/03/19 12:32,"320 Elm St, Austin, TX 73301" +163943,Apple Airpods Headphones,1,150,02/14/19 21:34,"819 8th St, Austin, TX 73301" +163944,Wired Headphones,1,11.99,02/02/19 11:57,"694 River St, Portland, OR 97035" +163945,20in Monitor,1,109.99,02/23/19 16:33,"90 Pine St, Atlanta, GA 30301" +163946,Apple Airpods Headphones,1,150,02/06/19 15:24,"307 11th St, Los Angeles, CA 90001" +163947,USB-C Charging Cable,1,11.95,02/27/19 07:37,"711 Meadow St, Atlanta, GA 30301" +163948,USB-C Charging Cable,1,11.95,02/13/19 08:46,"224 Walnut St, Los Angeles, CA 90001" +163949,20in Monitor,1,109.99,02/28/19 14:33,"647 Johnson St, Los Angeles, CA 90001" +163950,Apple Airpods Headphones,1,150,02/09/19 14:05,"564 13th St, Boston, MA 02215" +163951,Bose SoundSport Headphones,1,99.99,02/22/19 11:52,"610 Wilson St, San Francisco, CA 94016" +163952,Apple Airpods Headphones,1,150,02/19/19 20:58,"198 Cedar St, New York City, NY 10001" +163953,AAA Batteries (4-pack),1,2.99,02/23/19 17:01,"63 Spruce St, Boston, MA 02215" +163954,27in 4K Gaming Monitor,1,389.99,02/16/19 15:38,"360 Lake St, Austin, TX 73301" +163955,20in Monitor,1,109.99,02/28/19 09:08,"347 8th St, San Francisco, CA 94016" +163956,Macbook Pro Laptop,1,1700,02/07/19 07:27,"553 Cedar St, New York City, NY 10001" +163957,Wired Headphones,1,11.99,02/02/19 00:56,"584 Johnson St, San Francisco, CA 94016" +163958,AA Batteries (4-pack),1,3.84,02/20/19 10:09,"69 Pine St, Los Angeles, CA 90001" +163959,USB-C Charging Cable,1,11.95,02/07/19 15:43,"455 Willow St, Seattle, WA 98101" +163960,USB-C Charging Cable,1,11.95,02/22/19 10:46,"80 Park St, Los Angeles, CA 90001" +163960,Macbook Pro Laptop,1,1700,02/22/19 10:46,"80 Park St, Los Angeles, CA 90001" +163961,AAA Batteries (4-pack),1,2.99,02/05/19 04:34,"216 North St, Austin, TX 73301" +163962,AA Batteries (4-pack),1,3.84,02/14/19 22:49,"846 6th St, Los Angeles, CA 90001" +163963,AA Batteries (4-pack),1,3.84,02/22/19 11:51,"558 Sunset St, San Francisco, CA 94016" +163964,Lightning Charging Cable,1,14.95,02/01/19 07:47,"638 Park St, Portland, OR 97035" +163965,AA Batteries (4-pack),2,3.84,02/06/19 23:29,"930 Lakeview St, Atlanta, GA 30301" +163966,AA Batteries (4-pack),1,3.84,02/04/19 21:14,"122 Park St, Dallas, TX 75001" +163967,AAA Batteries (4-pack),1,2.99,02/04/19 14:12,"48 8th St, Los Angeles, CA 90001" +163968,AAA Batteries (4-pack),2,2.99,02/05/19 12:19,"173 1st St, San Francisco, CA 94016" +163969,AAA Batteries (4-pack),1,2.99,02/25/19 21:20,"747 Washington St, San Francisco, CA 94016" +163970,AA Batteries (4-pack),1,3.84,02/06/19 13:11,"355 Pine St, New York City, NY 10001" +163971,AAA Batteries (4-pack),1,2.99,02/23/19 19:20,"192 13th St, Portland, OR 97035" +163972,AAA Batteries (4-pack),1,2.99,02/15/19 12:51,"270 Cedar St, New York City, NY 10001" +163973,Lightning Charging Cable,1,14.95,02/05/19 14:43,"996 Walnut St, San Francisco, CA 94016" +163974,Bose SoundSport Headphones,1,99.99,02/13/19 12:53,"730 9th St, Los Angeles, CA 90001" +163975,ThinkPad Laptop,1,999.99,02/03/19 14:50,"364 Dogwood St, San Francisco, CA 94016" +163976,Lightning Charging Cable,1,14.95,02/24/19 12:07,"281 Hickory St, New York City, NY 10001" +163977,Lightning Charging Cable,1,14.95,02/23/19 13:00,"441 Elm St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +163978,Apple Airpods Headphones,1,150,02/11/19 07:32,"477 Spruce St, San Francisco, CA 94016" +163979,AAA Batteries (4-pack),2,2.99,02/21/19 18:27,"385 1st St, Seattle, WA 98101" +163980,27in 4K Gaming Monitor,1,389.99,02/21/19 11:45,"369 Sunset St, Boston, MA 02215" +163981,Apple Airpods Headphones,1,150,02/02/19 19:47,"305 Center St, Los Angeles, CA 90001" +163982,ThinkPad Laptop,1,999.99,02/17/19 21:56,"422 Lake St, Dallas, TX 75001" +163983,USB-C Charging Cable,2,11.95,02/20/19 22:01,"132 8th St, San Francisco, CA 94016" +163984,Lightning Charging Cable,1,14.95,02/15/19 20:34,"804 Willow St, San Francisco, CA 94016" +163985,27in FHD Monitor,1,149.99,02/09/19 22:45,"257 Cherry St, Portland, OR 97035" +163986,27in FHD Monitor,1,149.99,02/25/19 12:49,"509 8th St, Austin, TX 73301" +163987,Apple Airpods Headphones,1,150,02/17/19 15:12,"255 Lincoln St, San Francisco, CA 94016" +163988,34in Ultrawide Monitor,1,379.99,02/02/19 22:23,"999 10th St, New York City, NY 10001" +163989,AA Batteries (4-pack),1,3.84,02/05/19 08:53,"76 Jackson St, Los Angeles, CA 90001" +163990,Wired Headphones,1,11.99,02/10/19 09:29,"612 12th St, New York City, NY 10001" +163991,27in FHD Monitor,1,149.99,02/16/19 12:09,"829 Washington St, Portland, OR 97035" +163992,AAA Batteries (4-pack),1,2.99,02/16/19 18:07,"307 Wilson St, San Francisco, CA 94016" +163993,Wired Headphones,1,11.99,02/04/19 17:45,"922 Center St, San Francisco, CA 94016" +163994,AAA Batteries (4-pack),1,2.99,02/07/19 15:54,"552 Lakeview St, Seattle, WA 98101" +163995,AAA Batteries (4-pack),3,2.99,02/06/19 19:46,"999 Jackson St, Boston, MA 02215" +163996,AA Batteries (4-pack),1,3.84,02/14/19 20:26,"514 River St, Los Angeles, CA 90001" +163997,Bose SoundSport Headphones,1,99.99,02/16/19 22:32,"129 Lincoln St, Boston, MA 02215" +163998,Wired Headphones,1,11.99,02/27/19 12:11,"782 Elm St, Boston, MA 02215" +163999,Bose SoundSport Headphones,1,99.99,02/22/19 14:14,"424 North St, San Francisco, CA 94016" +164000,20in Monitor,1,109.99,02/22/19 13:48,"303 Church St, Atlanta, GA 30301" +164001,Apple Airpods Headphones,1,150,02/20/19 17:11,"277 9th St, Los Angeles, CA 90001" +164002,Lightning Charging Cable,1,14.95,02/09/19 15:06,"362 2nd St, Los Angeles, CA 90001" +164003,Wired Headphones,1,11.99,02/23/19 08:24,"78 Lake St, Atlanta, GA 30301" +164004,AAA Batteries (4-pack),2,2.99,02/16/19 09:45,"209 Meadow St, Los Angeles, CA 90001" +164005,Wired Headphones,1,11.99,02/17/19 15:21,"452 West St, Boston, MA 02215" +164006,27in 4K Gaming Monitor,1,389.99,02/28/19 21:11,"183 Dogwood St, New York City, NY 10001" +164007,ThinkPad Laptop,1,999.99,02/11/19 09:47,"700 10th St, Dallas, TX 75001" +164008,Apple Airpods Headphones,1,150,02/12/19 20:22,"653 Adams St, Seattle, WA 98101" +164009,Lightning Charging Cable,1,14.95,02/19/19 15:27,"107 6th St, Boston, MA 02215" +164010,Lightning Charging Cable,1,14.95,02/23/19 13:30,"283 Jefferson St, Seattle, WA 98101" +164010,AAA Batteries (4-pack),2,2.99,02/23/19 13:30,"283 Jefferson St, Seattle, WA 98101" +164011,27in FHD Monitor,1,149.99,02/02/19 20:16,"956 4th St, Los Angeles, CA 90001" +164012,Macbook Pro Laptop,1,1700,02/21/19 08:35,"799 Washington St, San Francisco, CA 94016" +164013,Lightning Charging Cable,1,14.95,02/14/19 19:46,"262 River St, Los Angeles, CA 90001" +164014,27in FHD Monitor,1,149.99,02/12/19 13:05,"361 Johnson St, San Francisco, CA 94016" +164015,27in FHD Monitor,1,149.99,02/04/19 00:36,"517 North St, Seattle, WA 98101" +164016,27in 4K Gaming Monitor,1,389.99,02/27/19 11:13,"661 Meadow St, Austin, TX 73301" +164017,Vareebadd Phone,1,400,02/17/19 10:55,"511 Hill St, Atlanta, GA 30301" +164018,USB-C Charging Cable,1,11.95,02/17/19 16:08,"922 Meadow St, Los Angeles, CA 90001" +164019,Apple Airpods Headphones,1,150,02/07/19 03:56,"645 11th St, San Francisco, CA 94016" +164020,20in Monitor,1,109.99,02/24/19 13:00,"409 Church St, Los Angeles, CA 90001" +164021,AA Batteries (4-pack),1,3.84,02/06/19 22:42,"990 7th St, Boston, MA 02215" +164022,27in FHD Monitor,1,149.99,02/17/19 19:42,"706 9th St, San Francisco, CA 94016" +164023,20in Monitor,1,109.99,02/21/19 22:37,"13 1st St, New York City, NY 10001" +164024,AA Batteries (4-pack),2,3.84,02/25/19 11:15,"315 12th St, New York City, NY 10001" +,,,,, +164025,27in 4K Gaming Monitor,1,389.99,02/05/19 19:25,"703 Center St, Los Angeles, CA 90001" +164026,Bose SoundSport Headphones,1,99.99,02/03/19 17:22,"993 North St, San Francisco, CA 94016" +164027,AAA Batteries (4-pack),2,2.99,02/18/19 16:01,"253 13th St, Boston, MA 02215" +164028,USB-C Charging Cable,1,11.95,02/13/19 13:02,"416 5th St, New York City, NY 10001" +164029,Wired Headphones,1,11.99,02/24/19 15:56,"644 12th St, Los Angeles, CA 90001" +164030,20in Monitor,1,109.99,02/04/19 10:41,"938 7th St, Boston, MA 02215" +164031,Vareebadd Phone,1,400,02/26/19 11:51,"917 9th St, Seattle, WA 98101" +164032,AA Batteries (4-pack),1,3.84,02/18/19 17:30,"879 Cedar St, Boston, MA 02215" +164033,Apple Airpods Headphones,1,150,02/05/19 00:17,"939 Hickory St, Portland, OR 97035" +164034,Flatscreen TV,1,300,02/27/19 11:59,"5 River St, San Francisco, CA 94016" +164035,USB-C Charging Cable,1,11.95,02/07/19 15:31,"756 Pine St, Austin, TX 73301" +164036,AAA Batteries (4-pack),1,2.99,02/26/19 11:02,"794 Jackson St, San Francisco, CA 94016" +164037,AA Batteries (4-pack),2,3.84,02/01/19 09:37,"208 Pine St, Boston, MA 02215" +164038,AAA Batteries (4-pack),2,2.99,02/18/19 17:31,"309 Sunset St, New York City, NY 10001" +164039,Wired Headphones,1,11.99,02/05/19 23:12,"641 Center St, Seattle, WA 98101" +164040,Google Phone,1,600,02/14/19 13:10,"943 14th St, Portland, ME 04101" +164041,AAA Batteries (4-pack),1,2.99,02/23/19 08:40,"249 Spruce St, Los Angeles, CA 90001" +164042,27in FHD Monitor,1,149.99,02/05/19 17:36,"474 Maple St, Los Angeles, CA 90001" +164043,27in FHD Monitor,1,149.99,02/18/19 07:40,"243 Johnson St, Atlanta, GA 30301" +164044,USB-C Charging Cable,1,11.95,02/09/19 13:15,"149 Lakeview St, Atlanta, GA 30301" +164045,Bose SoundSport Headphones,1,99.99,02/25/19 12:52,"567 Hill St, Dallas, TX 75001" +164046,AA Batteries (4-pack),1,3.84,02/02/19 22:21,"825 South St, Dallas, TX 75001" +164047,Lightning Charging Cable,1,14.95,02/28/19 18:13,"561 Elm St, Dallas, TX 75001" +164048,USB-C Charging Cable,1,11.95,02/21/19 22:19,"600 Hill St, Seattle, WA 98101" +164049,27in 4K Gaming Monitor,1,389.99,02/04/19 19:26,"615 11th St, Boston, MA 02215" +164050,Wired Headphones,1,11.99,02/23/19 00:23,"339 Wilson St, Dallas, TX 75001" +164051,Lightning Charging Cable,1,14.95,02/11/19 02:16,"389 Jefferson St, Los Angeles, CA 90001" +164052,Bose SoundSport Headphones,1,99.99,02/05/19 06:02,"822 Highland St, Los Angeles, CA 90001" +164053,Wired Headphones,1,11.99,02/26/19 12:31,"769 11th St, Los Angeles, CA 90001" +164054,Apple Airpods Headphones,1,150,02/12/19 14:55,"508 Washington St, San Francisco, CA 94016" +164055,AAA Batteries (4-pack),1,2.99,02/12/19 18:14,"374 10th St, Atlanta, GA 30301" +164056,Bose SoundSport Headphones,1,99.99,02/08/19 00:09,"754 North St, Los Angeles, CA 90001" +164057,Lightning Charging Cable,1,14.95,02/09/19 01:58,"156 Church St, New York City, NY 10001" +164058,AAA Batteries (4-pack),3,2.99,02/12/19 13:42,"158 Lakeview St, Dallas, TX 75001" +164059,AAA Batteries (4-pack),2,2.99,02/18/19 12:17,"730 Cedar St, Dallas, TX 75001" +164060,27in FHD Monitor,1,149.99,02/17/19 16:29,"263 2nd St, San Francisco, CA 94016" +164061,iPhone,1,700,02/02/19 11:09,"218 Washington St, San Francisco, CA 94016" +164062,Google Phone,1,600,02/11/19 17:48,"878 2nd St, Austin, TX 73301" +164062,Wired Headphones,1,11.99,02/11/19 17:48,"878 2nd St, Austin, TX 73301" +164063,Apple Airpods Headphones,1,150,02/17/19 13:06,"378 Walnut St, Dallas, TX 75001" +164064,Apple Airpods Headphones,1,150,02/27/19 16:09,"650 4th St, Boston, MA 02215" +164065,Wired Headphones,1,11.99,02/28/19 09:30,"89 8th St, Los Angeles, CA 90001" +164066,Lightning Charging Cable,1,14.95,02/07/19 12:35,"106 6th St, Austin, TX 73301" +164067,Wired Headphones,1,11.99,02/10/19 20:49,"655 Jefferson St, Seattle, WA 98101" +164068,Bose SoundSport Headphones,1,99.99,02/04/19 09:01,"180 6th St, Los Angeles, CA 90001" +164069,USB-C Charging Cable,1,11.95,02/18/19 13:54,"836 Highland St, Boston, MA 02215" +164070,Lightning Charging Cable,1,14.95,02/12/19 18:33,"237 12th St, Boston, MA 02215" +164071,AA Batteries (4-pack),1,3.84,02/26/19 22:12,"637 12th St, Portland, OR 97035" +164072,Bose SoundSport Headphones,1,99.99,02/22/19 12:40,"259 Elm St, San Francisco, CA 94016" +164073,AAA Batteries (4-pack),1,2.99,02/06/19 20:48,"571 14th St, San Francisco, CA 94016" +164074,Wired Headphones,1,11.99,02/27/19 20:36,"750 Sunset St, Seattle, WA 98101" +164075,27in FHD Monitor,1,149.99,02/22/19 23:17,"955 14th St, San Francisco, CA 94016" +164076,Apple Airpods Headphones,1,150,02/21/19 06:04,"144 Chestnut St, San Francisco, CA 94016" +164077,Wired Headphones,1,11.99,02/11/19 13:26,"634 11th St, Los Angeles, CA 90001" +164078,AA Batteries (4-pack),1,3.84,02/25/19 20:03,"953 Lincoln St, San Francisco, CA 94016" +164079,Bose SoundSport Headphones,1,99.99,02/21/19 09:47,"159 Ridge St, Boston, MA 02215" +164080,Lightning Charging Cable,1,14.95,02/10/19 22:02,"278 Lake St, Los Angeles, CA 90001" +164081,Bose SoundSport Headphones,1,99.99,02/16/19 00:13,"422 Johnson St, Los Angeles, CA 90001" +164082,Apple Airpods Headphones,1,150,02/11/19 20:42,"181 Johnson St, Boston, MA 02215" +164083,27in 4K Gaming Monitor,1,389.99,02/27/19 10:02,"769 5th St, San Francisco, CA 94016" +164084,27in 4K Gaming Monitor,1,389.99,02/27/19 09:36,"560 Wilson St, New York City, NY 10001" +164085,iPhone,1,700,02/11/19 13:07,"611 Washington St, Boston, MA 02215" +164085,Lightning Charging Cable,1,14.95,02/11/19 13:07,"611 Washington St, Boston, MA 02215" +164086,27in 4K Gaming Monitor,1,389.99,02/08/19 20:16,"694 Pine St, Atlanta, GA 30301" +164086,AAA Batteries (4-pack),3,2.99,02/08/19 20:16,"694 Pine St, Atlanta, GA 30301" +164087,ThinkPad Laptop,1,999.99,02/02/19 14:57,"625 Lakeview St, San Francisco, CA 94016" +164088,iPhone,1,700,02/01/19 11:07,"871 Pine St, New York City, NY 10001" +164089,27in 4K Gaming Monitor,1,389.99,02/09/19 17:41,"937 West St, Atlanta, GA 30301" +164090,AA Batteries (4-pack),4,3.84,02/07/19 15:42,"117 Dogwood St, New York City, NY 10001" +164091,Lightning Charging Cable,1,14.95,02/01/19 12:40,"236 Jefferson St, New York City, NY 10001" +164092,AA Batteries (4-pack),1,3.84,02/09/19 15:53,"942 7th St, San Francisco, CA 94016" +164093,27in FHD Monitor,1,149.99,02/04/19 18:32,"386 Center St, Dallas, TX 75001" +164094,20in Monitor,1,109.99,02/01/19 17:09,"52 11th St, Atlanta, GA 30301" +164095,20in Monitor,1,109.99,02/24/19 15:56,"263 2nd St, Los Angeles, CA 90001" +164096,Apple Airpods Headphones,1,150,02/28/19 17:15,"442 West St, Dallas, TX 75001" +164097,AA Batteries (4-pack),1,3.84,02/01/19 18:15,"782 Park St, Los Angeles, CA 90001" +164098,AA Batteries (4-pack),1,3.84,02/17/19 18:27,"506 South St, Dallas, TX 75001" +164099,iPhone,1,700,02/20/19 17:44,"150 Spruce St, Boston, MA 02215" +164100,AAA Batteries (4-pack),1,2.99,02/27/19 23:47,"737 River St, Seattle, WA 98101" +164101,iPhone,1,700,02/12/19 18:48,"128 Hickory St, Los Angeles, CA 90001" +164101,Lightning Charging Cable,1,14.95,02/12/19 18:48,"128 Hickory St, Los Angeles, CA 90001" +164102,Lightning Charging Cable,1,14.95,02/21/19 20:46,"425 Main St, San Francisco, CA 94016" +164103,Flatscreen TV,1,300,02/11/19 22:53,"595 Main St, Seattle, WA 98101" +164104,Lightning Charging Cable,1,14.95,02/26/19 17:46,"605 10th St, Los Angeles, CA 90001" +164105,USB-C Charging Cable,1,11.95,02/27/19 17:35,"892 Pine St, New York City, NY 10001" +164106,Macbook Pro Laptop,1,1700,02/05/19 16:51,"741 2nd St, Los Angeles, CA 90001" +164107,Wired Headphones,1,11.99,02/14/19 13:19,"217 Forest St, Atlanta, GA 30301" +164108,LG Washing Machine,1,600.0,02/07/19 10:04,"47 Madison St, Boston, MA 02215" +164109,Wired Headphones,1,11.99,02/20/19 07:57,"571 Cedar St, Seattle, WA 98101" +164110,Google Phone,1,600,02/24/19 04:09,"633 Jefferson St, New York City, NY 10001" +164110,Wired Headphones,1,11.99,02/24/19 04:09,"633 Jefferson St, New York City, NY 10001" +164111,Bose SoundSport Headphones,1,99.99,02/22/19 13:55,"60 Hickory St, Boston, MA 02215" +164112,USB-C Charging Cable,1,11.95,02/17/19 21:05,"145 Lakeview St, Los Angeles, CA 90001" +164113,iPhone,1,700,02/08/19 12:22,"699 Meadow St, New York City, NY 10001" +164114,AAA Batteries (4-pack),1,2.99,02/08/19 23:34,"157 Lakeview St, San Francisco, CA 94016" +164115,AA Batteries (4-pack),3,3.84,02/10/19 21:49,"479 14th St, Seattle, WA 98101" +164116,USB-C Charging Cable,1,11.95,02/02/19 19:43,"207 Meadow St, Los Angeles, CA 90001" +164117,20in Monitor,1,109.99,02/09/19 20:42,"953 North St, Austin, TX 73301" +164118,Lightning Charging Cable,1,14.95,02/10/19 14:51,"746 Maple St, Seattle, WA 98101" +164119,Lightning Charging Cable,2,14.95,02/13/19 11:09,"98 Jackson St, Austin, TX 73301" +164120,34in Ultrawide Monitor,1,379.99,02/12/19 19:21,"21 Jackson St, Portland, OR 97035" +164121,AAA Batteries (4-pack),1,2.99,02/11/19 12:23,"724 5th St, San Francisco, CA 94016" +164122,Flatscreen TV,1,300,02/16/19 19:18,"596 Chestnut St, Portland, OR 97035" +164123,USB-C Charging Cable,1,11.95,02/11/19 21:17,"979 14th St, Los Angeles, CA 90001" +,,,,, +164124,Macbook Pro Laptop,1,1700,02/16/19 13:48,"233 Park St, San Francisco, CA 94016" +,,,,, +164125,Bose SoundSport Headphones,1,99.99,02/09/19 09:26,"27 River St, New York City, NY 10001" +164126,27in FHD Monitor,1,149.99,02/04/19 22:13,"824 Lake St, San Francisco, CA 94016" +164127,ThinkPad Laptop,1,999.99,02/27/19 12:23,"52 Meadow St, San Francisco, CA 94016" +164128,Flatscreen TV,1,300,02/09/19 16:01,"188 6th St, New York City, NY 10001" +164129,AAA Batteries (4-pack),1,2.99,02/18/19 21:55,"167 Hill St, Austin, TX 73301" +164130,USB-C Charging Cable,1,11.95,02/10/19 14:36,"984 Walnut St, San Francisco, CA 94016" +164131,Lightning Charging Cable,1,14.95,02/17/19 15:13,"736 Adams St, Boston, MA 02215" +164132,AA Batteries (4-pack),1,3.84,02/23/19 18:55,"699 Hill St, New York City, NY 10001" +164132,Apple Airpods Headphones,1,150,02/23/19 18:55,"699 Hill St, New York City, NY 10001" +164133,Lightning Charging Cable,3,14.95,02/25/19 18:46,"912 Elm St, Portland, OR 97035" +164134,Apple Airpods Headphones,1,150,02/01/19 17:21,"610 Spruce St, San Francisco, CA 94016" +164135,Macbook Pro Laptop,1,1700,02/21/19 22:27,"12 Highland St, Dallas, TX 75001" +164136,Flatscreen TV,1,300,02/26/19 14:07,"162 7th St, Portland, OR 97035" +164137,Lightning Charging Cable,1,14.95,02/26/19 01:04,"186 Cedar St, San Francisco, CA 94016" +164138,AAA Batteries (4-pack),2,2.99,02/01/19 20:54,"921 1st St, Los Angeles, CA 90001" +164139,Wired Headphones,2,11.99,02/08/19 21:09,"163 Lake St, Portland, OR 97035" +164140,27in 4K Gaming Monitor,1,389.99,02/28/19 10:58,"93 13th St, San Francisco, CA 94016" +164141,AAA Batteries (4-pack),3,2.99,02/03/19 17:54,"490 West St, Los Angeles, CA 90001" +164142,USB-C Charging Cable,1,11.95,02/10/19 16:56,"598 Jackson St, Los Angeles, CA 90001" +164143,USB-C Charging Cable,1,11.95,02/20/19 11:23,"221 6th St, Los Angeles, CA 90001" +164144,Wired Headphones,1,11.99,02/14/19 16:23,"972 9th St, New York City, NY 10001" +164145,AA Batteries (4-pack),1,3.84,02/06/19 00:18,"502 Ridge St, New York City, NY 10001" +164146,Apple Airpods Headphones,1,150,02/06/19 06:41,"725 Elm St, Atlanta, GA 30301" +164147,ThinkPad Laptop,1,999.99,02/27/19 15:48,"876 Adams St, Los Angeles, CA 90001" +164148,Lightning Charging Cable,1,14.95,02/04/19 17:52,"688 Maple St, Dallas, TX 75001" +164149,AAA Batteries (4-pack),1,2.99,02/10/19 12:16,"15 Elm St, Boston, MA 02215" +164150,AA Batteries (4-pack),1,3.84,02/19/19 19:47,"770 Johnson St, San Francisco, CA 94016" +164151,27in 4K Gaming Monitor,1,389.99,02/15/19 12:25,"354 Forest St, Atlanta, GA 30301" +164152,AA Batteries (4-pack),3,3.84,02/19/19 11:39,"568 Maple St, San Francisco, CA 94016" +164153,AA Batteries (4-pack),2,3.84,02/22/19 21:04,"823 Lake St, San Francisco, CA 94016" +164154,Vareebadd Phone,1,400,02/25/19 13:30,"750 Washington St, Boston, MA 02215" +164155,Vareebadd Phone,1,400,02/18/19 03:40,"402 Meadow St, Seattle, WA 98101" +164156,27in 4K Gaming Monitor,1,389.99,02/11/19 19:56,"913 Pine St, Los Angeles, CA 90001" +164157,AA Batteries (4-pack),2,3.84,02/21/19 15:26,"254 12th St, Austin, TX 73301" +164158,Lightning Charging Cable,1,14.95,02/07/19 07:14,"500 Sunset St, Atlanta, GA 30301" +164159,AA Batteries (4-pack),1,3.84,02/13/19 12:26,"777 River St, San Francisco, CA 94016" +164160,AAA Batteries (4-pack),1,2.99,02/22/19 09:03,"83 Main St, Atlanta, GA 30301" +164161,Macbook Pro Laptop,1,1700,02/25/19 14:17,"9 Madison St, Boston, MA 02215" +164162,AAA Batteries (4-pack),2,2.99,02/11/19 10:57,"43 Meadow St, Dallas, TX 75001" +164163,Lightning Charging Cable,1,14.95,02/12/19 15:55,"750 7th St, New York City, NY 10001" +164164,USB-C Charging Cable,1,11.95,02/23/19 19:13,"851 Chestnut St, Austin, TX 73301" +164165,AA Batteries (4-pack),2,3.84,02/16/19 19:11,"24 Adams St, Portland, OR 97035" +164166,34in Ultrawide Monitor,1,379.99,02/18/19 20:25,"159 River St, Atlanta, GA 30301" +164167,AAA Batteries (4-pack),1,2.99,02/04/19 12:08,"176 2nd St, Dallas, TX 75001" +164168,Wired Headphones,1,11.99,02/12/19 10:11,"836 Washington St, Portland, OR 97035" +164169,Lightning Charging Cable,1,14.95,02/28/19 19:30,"523 Madison St, Boston, MA 02215" +164170,Apple Airpods Headphones,1,150,02/22/19 14:53,"888 Johnson St, San Francisco, CA 94016" +164171,Lightning Charging Cable,1,14.95,02/13/19 12:11,"486 Cherry St, Dallas, TX 75001" +164172,Lightning Charging Cable,1,14.95,02/13/19 10:41,"114 Church St, Portland, OR 97035" +164172,Bose SoundSport Headphones,1,99.99,02/13/19 10:41,"114 Church St, Portland, OR 97035" +164173,ThinkPad Laptop,1,999.99,02/08/19 21:53,"579 12th St, New York City, NY 10001" +164174,Lightning Charging Cable,1,14.95,02/27/19 21:53,"502 West St, San Francisco, CA 94016" +164175,27in 4K Gaming Monitor,1,389.99,02/05/19 23:08,"709 Lincoln St, Dallas, TX 75001" +164176,34in Ultrawide Monitor,1,379.99,02/24/19 10:36,"246 Lincoln St, Los Angeles, CA 90001" +164177,Lightning Charging Cable,1,14.95,02/09/19 08:59,"727 Cherry St, Boston, MA 02215" +164178,27in 4K Gaming Monitor,1,389.99,02/19/19 23:57,"670 Adams St, New York City, NY 10001" +164179,AA Batteries (4-pack),3,3.84,02/14/19 22:23,"679 Cedar St, Los Angeles, CA 90001" +164180,27in FHD Monitor,1,149.99,02/28/19 13:30,"5 West St, San Francisco, CA 94016" +164181,Wired Headphones,1,11.99,02/05/19 09:58,"294 Walnut St, Boston, MA 02215" +164182,Macbook Pro Laptop,1,1700,02/17/19 19:52,"116 Forest St, Seattle, WA 98101" +164183,USB-C Charging Cable,1,11.95,02/05/19 15:17,"688 Forest St, Los Angeles, CA 90001" +164184,Google Phone,1,600,02/04/19 13:08,"904 Hill St, Dallas, TX 75001" +164184,USB-C Charging Cable,1,11.95,02/04/19 13:08,"904 Hill St, Dallas, TX 75001" +164185,Wired Headphones,1,11.99,02/28/19 23:23,"951 Jefferson St, Boston, MA 02215" +164186,Wired Headphones,1,11.99,02/06/19 15:11,"399 Cedar St, New York City, NY 10001" +164187,USB-C Charging Cable,1,11.95,02/11/19 20:38,"849 West St, New York City, NY 10001" +164188,Wired Headphones,1,11.99,02/14/19 01:04,"23 6th St, Boston, MA 02215" +164189,Wired Headphones,1,11.99,02/10/19 17:34,"546 Maple St, Austin, TX 73301" +164190,AA Batteries (4-pack),2,3.84,02/22/19 16:17,"955 Center St, New York City, NY 10001" +164191,Apple Airpods Headphones,1,150,02/28/19 17:42,"443 Cherry St, Seattle, WA 98101" +164192,AA Batteries (4-pack),1,3.84,02/03/19 14:10,"330 Center St, Seattle, WA 98101" +164193,Flatscreen TV,1,300,02/21/19 17:49,"118 Lakeview St, Seattle, WA 98101" +164194,Apple Airpods Headphones,1,150,02/20/19 23:04,"674 Cedar St, Boston, MA 02215" +164195,AA Batteries (4-pack),1,3.84,02/21/19 20:52,"763 Adams St, San Francisco, CA 94016" +164196,USB-C Charging Cable,1,11.95,02/18/19 23:37,"268 5th St, San Francisco, CA 94016" +164197,27in 4K Gaming Monitor,1,389.99,02/27/19 18:39,"108 Walnut St, Boston, MA 02215" +164198,AAA Batteries (4-pack),1,2.99,02/12/19 16:58,"826 Hill St, Austin, TX 73301" +164199,Wired Headphones,1,11.99,02/12/19 21:05,"768 Adams St, Boston, MA 02215" +164200,27in 4K Gaming Monitor,1,389.99,02/16/19 08:00,"42 Pine St, Los Angeles, CA 90001" +164201,Flatscreen TV,1,300,02/04/19 14:33,"358 13th St, New York City, NY 10001" +164202,20in Monitor,1,109.99,02/08/19 18:02,"568 Walnut St, New York City, NY 10001" +164203,AAA Batteries (4-pack),1,2.99,02/25/19 16:53,"175 Ridge St, Los Angeles, CA 90001" +164204,Apple Airpods Headphones,1,150,02/04/19 09:19,"266 Meadow St, Los Angeles, CA 90001" +164205,AAA Batteries (4-pack),2,2.99,02/16/19 18:06,"670 Center St, Portland, OR 97035" +164206,Wired Headphones,1,11.99,02/25/19 08:55,"676 Hill St, Dallas, TX 75001" +164207,Lightning Charging Cable,1,14.95,02/12/19 22:36,"948 Main St, New York City, NY 10001" +164208,Wired Headphones,1,11.99,02/17/19 11:24,"225 Pine St, Boston, MA 02215" +164209,AA Batteries (4-pack),1,3.84,02/01/19 16:08,"24 Wilson St, Los Angeles, CA 90001" +164210,USB-C Charging Cable,2,11.95,02/22/19 07:32,"841 1st St, New York City, NY 10001" +164211,USB-C Charging Cable,1,11.95,02/27/19 14:03,"332 Washington St, Dallas, TX 75001" +164212,Lightning Charging Cable,1,14.95,02/03/19 19:52,"636 Willow St, Atlanta, GA 30301" +164213,Wired Headphones,1,11.99,02/02/19 09:46,"93 North St, Portland, OR 97035" +164214,Lightning Charging Cable,2,14.95,02/19/19 18:29,"209 Dogwood St, New York City, NY 10001" +164215,Lightning Charging Cable,1,14.95,02/14/19 08:57,"509 Hill St, San Francisco, CA 94016" +164216,AAA Batteries (4-pack),1,2.99,02/09/19 20:49,"633 Walnut St, San Francisco, CA 94016" +164216,Wired Headphones,2,11.99,02/09/19 20:49,"633 Walnut St, San Francisco, CA 94016" +164217,Apple Airpods Headphones,1,150,02/19/19 20:48,"272 Church St, Los Angeles, CA 90001" +164218,iPhone,1,700,02/04/19 17:20,"941 Pine St, Austin, TX 73301" +164219,Wired Headphones,1,11.99,02/05/19 18:24,"526 4th St, Atlanta, GA 30301" +164220,AAA Batteries (4-pack),1,2.99,02/16/19 16:19,"289 South St, Los Angeles, CA 90001" +164221,Bose SoundSport Headphones,1,99.99,02/20/19 14:39,"587 4th St, Seattle, WA 98101" +164222,AAA Batteries (4-pack),1,2.99,02/08/19 20:21,"636 Cherry St, Boston, MA 02215" +164223,USB-C Charging Cable,1,11.95,02/27/19 21:46,"853 Dogwood St, Los Angeles, CA 90001" +164224,20in Monitor,1,109.99,02/09/19 19:14,"853 7th St, Los Angeles, CA 90001" +164225,Google Phone,1,600,02/15/19 22:37,"811 1st St, Dallas, TX 75001" +164226,Lightning Charging Cable,1,14.95,02/15/19 23:13,"350 Lakeview St, San Francisco, CA 94016" +164227,AAA Batteries (4-pack),1,2.99,02/20/19 08:34,"812 Pine St, San Francisco, CA 94016" +164228,Lightning Charging Cable,1,14.95,02/19/19 01:32,"792 Church St, Seattle, WA 98101" +164229,Apple Airpods Headphones,1,150,02/24/19 10:21,"777 Spruce St, Boston, MA 02215" +164230,Apple Airpods Headphones,1,150,02/10/19 15:52,"396 Pine St, San Francisco, CA 94016" +164231,USB-C Charging Cable,1,11.95,02/23/19 14:55,"642 Center St, New York City, NY 10001" +164232,USB-C Charging Cable,1,11.95,02/01/19 20:27,"197 River St, Dallas, TX 75001" +164233,Lightning Charging Cable,1,14.95,02/10/19 11:18,"911 Park St, Dallas, TX 75001" +164234,Apple Airpods Headphones,1,150,02/10/19 16:01,"124 Forest St, Portland, OR 97035" +164235,AA Batteries (4-pack),1,3.84,02/07/19 20:59,"692 Lakeview St, Los Angeles, CA 90001" +164236,Lightning Charging Cable,1,14.95,02/25/19 13:57,"878 Highland St, New York City, NY 10001" +164237,AA Batteries (4-pack),2,3.84,02/28/19 07:38,"501 Dogwood St, New York City, NY 10001" +164238,AA Batteries (4-pack),2,3.84,02/01/19 11:51,"862 6th St, Portland, OR 97035" +164239,AA Batteries (4-pack),1,3.84,02/12/19 18:19,"296 Pine St, San Francisco, CA 94016" +164240,Apple Airpods Headphones,1,150,02/20/19 12:44,"740 4th St, Dallas, TX 75001" +164241,Bose SoundSport Headphones,1,99.99,02/01/19 07:12,"10 Chestnut St, Seattle, WA 98101" +164242,Wired Headphones,1,11.99,02/04/19 10:20,"271 Dogwood St, Dallas, TX 75001" +164243,Lightning Charging Cable,1,14.95,02/22/19 21:28,"807 Adams St, Seattle, WA 98101" +164244,27in FHD Monitor,1,149.99,02/01/19 10:40,"228 8th St, Los Angeles, CA 90001" +164245,Bose SoundSport Headphones,1,99.99,02/16/19 10:43,"442 Willow St, San Francisco, CA 94016" +164246,ThinkPad Laptop,1,999.99,02/16/19 14:05,"926 6th St, Atlanta, GA 30301" +164247,Wired Headphones,1,11.99,02/25/19 19:56,"233 Lincoln St, New York City, NY 10001" +164248,AA Batteries (4-pack),1,3.84,02/11/19 19:02,"726 Maple St, Portland, OR 97035" +164249,AA Batteries (4-pack),1,3.84,02/27/19 12:47,"418 Hill St, Los Angeles, CA 90001" +164250,AA Batteries (4-pack),2,3.84,02/11/19 19:39,"312 Lincoln St, Los Angeles, CA 90001" +164251,34in Ultrawide Monitor,1,379.99,02/11/19 15:03,"775 River St, San Francisco, CA 94016" +164252,Wired Headphones,1,11.99,02/01/19 10:12,"524 Madison St, San Francisco, CA 94016" +164253,34in Ultrawide Monitor,1,379.99,02/09/19 20:36,"971 Lincoln St, San Francisco, CA 94016" +164254,AAA Batteries (4-pack),1,2.99,02/08/19 13:40,"363 Sunset St, San Francisco, CA 94016" +164255,Bose SoundSport Headphones,1,99.99,02/04/19 13:57,"580 Ridge St, Boston, MA 02215" +164256,Flatscreen TV,1,300,02/25/19 14:57,"509 Ridge St, San Francisco, CA 94016" +164257,Wired Headphones,2,11.99,02/02/19 10:41,"371 Maple St, Portland, ME 04101" +164258,Lightning Charging Cable,1,14.95,02/20/19 10:46,"767 Lincoln St, Los Angeles, CA 90001" +164259,Bose SoundSport Headphones,1,99.99,02/23/19 23:41,"508 Pine St, Austin, TX 73301" +164260,USB-C Charging Cable,1,11.95,02/16/19 13:22,"50 River St, Boston, MA 02215" +164261,AAA Batteries (4-pack),1,2.99,02/01/19 13:23,"72 Hill St, Los Angeles, CA 90001" +164262,Wired Headphones,1,11.99,02/06/19 14:05,"432 Jackson St, Seattle, WA 98101" +164263,AAA Batteries (4-pack),1,2.99,02/24/19 22:53,"502 1st St, Dallas, TX 75001" +164264,AAA Batteries (4-pack),1,2.99,02/22/19 12:57,"162 Washington St, Boston, MA 02215" +164265,AAA Batteries (4-pack),1,2.99,02/13/19 10:31,"437 Lake St, New York City, NY 10001" +164266,27in 4K Gaming Monitor,1,389.99,02/25/19 13:32,"348 Adams St, San Francisco, CA 94016" +164267,27in 4K Gaming Monitor,1,389.99,02/05/19 20:31,"653 Lake St, New York City, NY 10001" +164268,Apple Airpods Headphones,1,150,02/11/19 18:40,"954 Cherry St, Boston, MA 02215" +164269,Wired Headphones,1,11.99,02/22/19 17:52,"391 Meadow St, Boston, MA 02215" +164270,AA Batteries (4-pack),1,3.84,02/15/19 14:03,"393 Johnson St, New York City, NY 10001" +164271,USB-C Charging Cable,1,11.95,02/24/19 19:29,"697 Center St, Portland, OR 97035" +164272,Lightning Charging Cable,1,14.95,02/21/19 23:21,"327 Adams St, Los Angeles, CA 90001" +164273,USB-C Charging Cable,1,11.95,02/24/19 22:48,"504 Madison St, Atlanta, GA 30301" +164274,USB-C Charging Cable,1,11.95,02/09/19 17:29,"718 4th St, San Francisco, CA 94016" +164275,AAA Batteries (4-pack),1,2.99,02/15/19 16:03,"288 Meadow St, New York City, NY 10001" +164276,Lightning Charging Cable,1,14.95,02/12/19 14:54,"670 South St, San Francisco, CA 94016" +164277,Wired Headphones,1,11.99,02/22/19 13:06,"239 9th St, Los Angeles, CA 90001" +164278,AAA Batteries (4-pack),1,2.99,02/09/19 11:56,"650 Elm St, Los Angeles, CA 90001" +164279,USB-C Charging Cable,1,11.95,02/25/19 16:31,"395 Hill St, Atlanta, GA 30301" +164280,Lightning Charging Cable,1,14.95,02/28/19 17:09,"930 12th St, Boston, MA 02215" +164281,iPhone,1,700,02/06/19 21:20,"444 Wilson St, New York City, NY 10001" +164282,34in Ultrawide Monitor,1,379.99,02/25/19 10:55,"157 10th St, Seattle, WA 98101" +164283,AA Batteries (4-pack),3,3.84,02/18/19 09:58,"752 Elm St, Atlanta, GA 30301" +164284,34in Ultrawide Monitor,1,379.99,02/28/19 05:44,"962 Church St, Boston, MA 02215" +164285,Bose SoundSport Headphones,1,99.99,02/26/19 21:51,"573 Adams St, Los Angeles, CA 90001" +164286,Apple Airpods Headphones,1,150,02/02/19 12:41,"120 Jefferson St, Austin, TX 73301" +164287,Apple Airpods Headphones,1,150,02/24/19 21:03,"768 11th St, Boston, MA 02215" +164288,Apple Airpods Headphones,1,150,02/09/19 21:56,"900 5th St, Dallas, TX 75001" +164289,USB-C Charging Cable,1,11.95,02/22/19 04:44,"518 Adams St, San Francisco, CA 94016" +164290,AA Batteries (4-pack),2,3.84,02/23/19 16:12,"560 North St, San Francisco, CA 94016" +164291,Macbook Pro Laptop,1,1700,02/16/19 19:09,"931 Lincoln St, New York City, NY 10001" +164292,AA Batteries (4-pack),1,3.84,02/17/19 21:13,"418 13th St, Portland, OR 97035" +164293,34in Ultrawide Monitor,1,379.99,02/10/19 22:04,"854 Lincoln St, Los Angeles, CA 90001" +164294,Flatscreen TV,1,300,02/26/19 18:40,"265 9th St, Boston, MA 02215" +164295,34in Ultrawide Monitor,1,379.99,02/01/19 06:15,"651 Maple St, Los Angeles, CA 90001" +164296,27in FHD Monitor,1,149.99,02/20/19 15:53,"897 South St, Los Angeles, CA 90001" +164297,ThinkPad Laptop,1,999.99,02/25/19 14:24,"770 Spruce St, New York City, NY 10001" +164298,Lightning Charging Cable,1,14.95,02/17/19 19:56,"897 Hill St, San Francisco, CA 94016" +164299,Apple Airpods Headphones,1,150,02/18/19 22:29,"590 5th St, San Francisco, CA 94016" +164300,34in Ultrawide Monitor,1,379.99,02/25/19 13:32,"124 Lakeview St, San Francisco, CA 94016" +164301,20in Monitor,1,109.99,02/17/19 08:55,"265 11th St, San Francisco, CA 94016" +164302,USB-C Charging Cable,1,11.95,02/21/19 18:46,"258 12th St, Austin, TX 73301" +164303,Lightning Charging Cable,1,14.95,02/14/19 17:48,"261 Hickory St, Los Angeles, CA 90001" +164304,AAA Batteries (4-pack),1,2.99,02/06/19 21:24,"841 Willow St, Los Angeles, CA 90001" +164305,Bose SoundSport Headphones,1,99.99,02/03/19 16:43,"153 Chestnut St, Los Angeles, CA 90001" +164306,iPhone,1,700,02/23/19 20:01,"746 12th St, Los Angeles, CA 90001" +164307,27in FHD Monitor,1,149.99,02/22/19 08:41,"279 Dogwood St, San Francisco, CA 94016" +164308,iPhone,1,700,02/10/19 19:38,"376 Washington St, San Francisco, CA 94016" +164309,Bose SoundSport Headphones,1,99.99,02/23/19 13:32,"195 Meadow St, New York City, NY 10001" +164310,USB-C Charging Cable,1,11.95,02/16/19 19:09,"552 Cedar St, Boston, MA 02215" +164310,Apple Airpods Headphones,1,150,02/16/19 19:09,"552 Cedar St, Boston, MA 02215" +164311,Bose SoundSport Headphones,1,99.99,02/15/19 21:21,"26 Adams St, New York City, NY 10001" +164312,Wired Headphones,1,11.99,02/26/19 15:53,"324 Spruce St, Los Angeles, CA 90001" +164313,27in FHD Monitor,1,149.99,02/09/19 07:18,"780 Cedar St, San Francisco, CA 94016" +164314,USB-C Charging Cable,1,11.95,02/05/19 18:49,"144 2nd St, Los Angeles, CA 90001" +164315,AAA Batteries (4-pack),3,2.99,02/09/19 10:04,"476 Hill St, San Francisco, CA 94016" +164316,AA Batteries (4-pack),1,3.84,02/03/19 18:39,"590 10th St, San Francisco, CA 94016" +164317,Lightning Charging Cable,1,14.95,02/07/19 16:59,"847 Walnut St, Portland, ME 04101" +164318,Apple Airpods Headphones,1,150,02/10/19 19:34,"833 Walnut St, Boston, MA 02215" +164319,Wired Headphones,1,11.99,02/14/19 21:13,"590 River St, New York City, NY 10001" +164320,AA Batteries (4-pack),1,3.84,02/15/19 13:03,"131 West St, Los Angeles, CA 90001" +164321,AA Batteries (4-pack),1,3.84,02/03/19 20:59,"2 Maple St, Seattle, WA 98101" +164322,USB-C Charging Cable,1,11.95,02/15/19 13:07,"230 14th St, Dallas, TX 75001" +164323,USB-C Charging Cable,1,11.95,02/24/19 09:27,"696 2nd St, New York City, NY 10001" +164324,AA Batteries (4-pack),1,3.84,02/27/19 21:35,"841 9th St, New York City, NY 10001" +164325,Lightning Charging Cable,1,14.95,02/05/19 19:46,"799 14th St, Atlanta, GA 30301" +164326,Lightning Charging Cable,1,14.95,02/17/19 16:02,"699 Jefferson St, Los Angeles, CA 90001" +164327,USB-C Charging Cable,1,11.95,02/15/19 19:32,"5 Hickory St, Los Angeles, CA 90001" +164328,AAA Batteries (4-pack),1,2.99,02/08/19 13:34,"677 River St, Portland, OR 97035" +164329,iPhone,1,700,02/16/19 14:36,"909 Lake St, Seattle, WA 98101" +164330,Bose SoundSport Headphones,1,99.99,02/13/19 19:20,"530 6th St, Los Angeles, CA 90001" +164331,Google Phone,1,600,02/10/19 15:55,"817 Sunset St, New York City, NY 10001" +164332,Google Phone,1,600,02/09/19 15:02,"319 Sunset St, San Francisco, CA 94016" +164333,27in FHD Monitor,1,149.99,02/25/19 09:17,"504 River St, Seattle, WA 98101" +164334,USB-C Charging Cable,1,11.95,02/28/19 22:39,"745 2nd St, Portland, ME 04101" +164335,Bose SoundSport Headphones,1,99.99,02/19/19 19:06,"879 5th St, Los Angeles, CA 90001" +164336,34in Ultrawide Monitor,1,379.99,02/24/19 11:06,"521 Hickory St, San Francisco, CA 94016" +164337,USB-C Charging Cable,1,11.95,02/09/19 20:44,"124 Cedar St, Boston, MA 02215" +164338,Lightning Charging Cable,1,14.95,02/06/19 11:51,"566 12th St, Boston, MA 02215" +164339,Wired Headphones,1,11.99,02/13/19 13:22,"747 South St, New York City, NY 10001" +164340,AA Batteries (4-pack),1,3.84,02/25/19 17:42,"69 2nd St, New York City, NY 10001" +164341,27in 4K Gaming Monitor,1,389.99,02/14/19 12:39,"646 11th St, Boston, MA 02215" +164342,AAA Batteries (4-pack),1,2.99,02/05/19 13:09,"653 Forest St, Atlanta, GA 30301" +164343,AA Batteries (4-pack),1,3.84,02/01/19 14:22,"498 Washington St, New York City, NY 10001" +164344,AA Batteries (4-pack),1,3.84,02/05/19 20:08,"634 11th St, Los Angeles, CA 90001" +164344,USB-C Charging Cable,1,11.95,02/05/19 20:08,"634 11th St, Los Angeles, CA 90001" +164345,AA Batteries (4-pack),1,3.84,02/20/19 11:02,"356 9th St, Los Angeles, CA 90001" +164346,Wired Headphones,1,11.99,02/23/19 14:10,"690 River St, San Francisco, CA 94016" +164347,Lightning Charging Cable,1,14.95,02/07/19 18:14,"284 Washington St, San Francisco, CA 94016" +164348,27in FHD Monitor,1,149.99,02/23/19 15:41,"353 Lake St, San Francisco, CA 94016" +164349,AAA Batteries (4-pack),2,2.99,02/28/19 01:40,"772 Madison St, San Francisco, CA 94016" +164350,AA Batteries (4-pack),1,3.84,02/18/19 01:29,"109 Park St, Seattle, WA 98101" +164351,Bose SoundSport Headphones,1,99.99,02/06/19 18:23,"556 Adams St, Boston, MA 02215" +164352,USB-C Charging Cable,1,11.95,02/25/19 09:02,"197 Hickory St, Boston, MA 02215" +164352,Google Phone,1,600,02/25/19 09:02,"197 Hickory St, Boston, MA 02215" +164353,27in 4K Gaming Monitor,1,389.99,02/05/19 07:33,"937 Wilson St, San Francisco, CA 94016" +164354,Wired Headphones,1,11.99,02/27/19 15:01,"519 7th St, San Francisco, CA 94016" +164355,Lightning Charging Cable,1,14.95,02/15/19 12:42,"96 8th St, San Francisco, CA 94016" +164356,20in Monitor,1,109.99,02/21/19 14:25,"17 Church St, Los Angeles, CA 90001" +164357,Lightning Charging Cable,1,14.95,02/27/19 07:42,"691 Maple St, Los Angeles, CA 90001" +164358,Bose SoundSport Headphones,1,99.99,02/16/19 12:07,"286 Dogwood St, Seattle, WA 98101" +164359,Lightning Charging Cable,2,14.95,02/25/19 18:13,"546 Lincoln St, Seattle, WA 98101" +164360,Apple Airpods Headphones,1,150,02/15/19 22:58,"897 Madison St, Atlanta, GA 30301" +164361,AA Batteries (4-pack),1,3.84,02/13/19 11:42,"413 Cherry St, Portland, OR 97035" +164362,Apple Airpods Headphones,1,150,02/03/19 16:56,"340 13th St, Los Angeles, CA 90001" +164363,AAA Batteries (4-pack),1,2.99,02/10/19 11:09,"496 Lincoln St, Los Angeles, CA 90001" +164364,Lightning Charging Cable,1,14.95,02/04/19 21:48,"785 Lake St, New York City, NY 10001" +,,,,, +164365,AA Batteries (4-pack),1,3.84,02/09/19 08:49,"972 1st St, Los Angeles, CA 90001" +164365,34in Ultrawide Monitor,1,379.99,02/09/19 08:49,"972 1st St, Los Angeles, CA 90001" +164366,Bose SoundSport Headphones,1,99.99,02/17/19 08:49,"771 Hill St, Los Angeles, CA 90001" +164367,27in 4K Gaming Monitor,1,389.99,02/25/19 12:35,"783 North St, Atlanta, GA 30301" +164368,27in 4K Gaming Monitor,1,389.99,02/28/19 22:08,"376 Lakeview St, Atlanta, GA 30301" +164369,AA Batteries (4-pack),3,3.84,02/22/19 15:01,"279 Hickory St, Dallas, TX 75001" +164370,27in FHD Monitor,1,149.99,02/09/19 15:01,"515 West St, Atlanta, GA 30301" +164371,Flatscreen TV,1,300,02/06/19 03:25,"585 Willow St, San Francisco, CA 94016" +164372,AAA Batteries (4-pack),3,2.99,02/09/19 11:33,"750 Lincoln St, New York City, NY 10001" +164373,Lightning Charging Cable,1,14.95,02/26/19 11:10,"647 Hill St, New York City, NY 10001" +164374,Google Phone,1,600,02/02/19 14:21,"496 Cherry St, San Francisco, CA 94016" +164374,USB-C Charging Cable,1,11.95,02/02/19 14:21,"496 Cherry St, San Francisco, CA 94016" +164374,Bose SoundSport Headphones,1,99.99,02/02/19 14:21,"496 Cherry St, San Francisco, CA 94016" +164375,Flatscreen TV,1,300,02/19/19 11:18,"273 Highland St, San Francisco, CA 94016" +164376,34in Ultrawide Monitor,1,379.99,02/20/19 23:47,"448 Cedar St, Portland, OR 97035" +164377,ThinkPad Laptop,1,999.99,02/19/19 15:48,"263 Elm St, San Francisco, CA 94016" +164378,Google Phone,1,600,02/24/19 17:50,"652 1st St, Portland, ME 04101" +164379,AA Batteries (4-pack),3,3.84,02/05/19 20:39,"4 Willow St, New York City, NY 10001" +164380,27in 4K Gaming Monitor,1,389.99,02/15/19 10:39,"79 Johnson St, Seattle, WA 98101" +164381,Bose SoundSport Headphones,1,99.99,02/10/19 06:40,"42 10th St, Seattle, WA 98101" +164382,Google Phone,1,600,02/14/19 20:28,"715 13th St, New York City, NY 10001" +164383,iPhone,1,700,02/17/19 11:56,"260 9th St, Portland, OR 97035" +164384,Wired Headphones,1,11.99,02/17/19 22:40,"359 Cedar St, Los Angeles, CA 90001" +164385,Wired Headphones,1,11.99,02/11/19 11:24,"492 Elm St, San Francisco, CA 94016" +164386,AAA Batteries (4-pack),3,2.99,02/01/19 05:44,"627 Meadow St, Austin, TX 73301" +164387,AAA Batteries (4-pack),2,2.99,02/21/19 12:21,"299 South St, Dallas, TX 75001" +164388,AAA Batteries (4-pack),2,2.99,02/03/19 15:24,"257 4th St, Los Angeles, CA 90001" +164389,AAA Batteries (4-pack),1,2.99,02/20/19 21:09,"757 Johnson St, San Francisco, CA 94016" +164390,20in Monitor,1,109.99,02/19/19 23:42,"130 Highland St, New York City, NY 10001" +164391,Flatscreen TV,1,300,02/19/19 09:06,"38 Lincoln St, Atlanta, GA 30301" +164392,USB-C Charging Cable,2,11.95,02/03/19 15:27,"852 Highland St, San Francisco, CA 94016" +164393,iPhone,1,700,02/17/19 00:02,"628 Cherry St, Los Angeles, CA 90001" +164394,Lightning Charging Cable,1,14.95,02/26/19 12:36,"677 Sunset St, Boston, MA 02215" +164395,Flatscreen TV,1,300,03/01/19 01:31,"524 Johnson St, San Francisco, CA 94016" +164396,AAA Batteries (4-pack),6,2.99,02/02/19 10:43,"335 11th St, New York City, NY 10001" +164397,Flatscreen TV,1,300,02/10/19 09:03,"396 Washington St, San Francisco, CA 94016" +164398,USB-C Charging Cable,1,11.95,02/05/19 11:42,"10 South St, Los Angeles, CA 90001" +164399,Apple Airpods Headphones,1,150,02/04/19 10:09,"340 14th St, San Francisco, CA 94016" +164400,AA Batteries (4-pack),2,3.84,02/11/19 12:34,"273 West St, Dallas, TX 75001" +164401,Lightning Charging Cable,1,14.95,02/05/19 16:41,"580 10th St, Seattle, WA 98101" +164402,20in Monitor,1,109.99,02/10/19 23:10,"858 Wilson St, Los Angeles, CA 90001" +164403,27in FHD Monitor,1,149.99,02/20/19 21:10,"684 North St, New York City, NY 10001" +164404,AA Batteries (4-pack),1,3.84,02/23/19 17:05,"892 10th St, Seattle, WA 98101" +164405,34in Ultrawide Monitor,1,379.99,02/07/19 17:27,"816 River St, Austin, TX 73301" +164406,Lightning Charging Cable,1,14.95,02/20/19 06:58,"659 Hill St, Austin, TX 73301" +164407,20in Monitor,1,109.99,02/17/19 15:39,"650 Jefferson St, San Francisco, CA 94016" +164408,AA Batteries (4-pack),1,3.84,02/21/19 11:26,"720 Willow St, Portland, OR 97035" +164409,iPhone,1,700,02/28/19 19:03,"252 5th St, Boston, MA 02215" +164410,iPhone,1,700,02/15/19 11:51,"311 Park St, Los Angeles, CA 90001" +164410,Vareebadd Phone,1,400,02/15/19 11:51,"311 Park St, Los Angeles, CA 90001" +164411,34in Ultrawide Monitor,1,379.99,02/04/19 11:59,"48 9th St, San Francisco, CA 94016" +164412,Apple Airpods Headphones,1,150,02/02/19 09:13,"102 Washington St, San Francisco, CA 94016" +164413,iPhone,1,700,02/14/19 18:59,"611 Johnson St, Austin, TX 73301" +164413,Lightning Charging Cable,1,14.95,02/14/19 18:59,"611 Johnson St, Austin, TX 73301" +164413,Wired Headphones,2,11.99,02/14/19 18:59,"611 Johnson St, Austin, TX 73301" +164414,27in FHD Monitor,1,149.99,02/08/19 08:41,"412 Main St, Los Angeles, CA 90001" +164415,AAA Batteries (4-pack),4,2.99,02/09/19 19:36,"943 Jefferson St, Dallas, TX 75001" +164416,AA Batteries (4-pack),3,3.84,02/09/19 17:16,"864 4th St, Dallas, TX 75001" +164417,Bose SoundSport Headphones,1,99.99,02/09/19 18:26,"400 8th St, San Francisco, CA 94016" +164418,ThinkPad Laptop,1,999.99,02/10/19 10:01,"684 4th St, San Francisco, CA 94016" +164419,iPhone,1,700,02/24/19 13:53,"280 1st St, Dallas, TX 75001" +164419,Lightning Charging Cable,1,14.95,02/24/19 13:53,"280 1st St, Dallas, TX 75001" +164420,Lightning Charging Cable,1,14.95,02/08/19 07:38,"659 Highland St, San Francisco, CA 94016" +164421,AAA Batteries (4-pack),1,2.99,02/09/19 01:08,"710 Chestnut St, Dallas, TX 75001" +164422,Apple Airpods Headphones,1,150,02/02/19 17:10,"220 North St, Boston, MA 02215" +164423,AA Batteries (4-pack),1,3.84,02/26/19 13:37,"220 13th St, New York City, NY 10001" +164423,USB-C Charging Cable,2,11.95,02/26/19 13:37,"220 13th St, New York City, NY 10001" +164424,AAA Batteries (4-pack),1,2.99,02/09/19 10:51,"803 11th St, New York City, NY 10001" +164425,Lightning Charging Cable,1,14.95,02/27/19 17:43,"166 14th St, New York City, NY 10001" +164426,27in FHD Monitor,1,149.99,02/26/19 19:45,"895 Jackson St, Boston, MA 02215" +164427,ThinkPad Laptop,1,999.99,02/03/19 14:06,"17 Lincoln St, Portland, OR 97035" +164428,AAA Batteries (4-pack),1,2.99,02/09/19 07:35,"354 6th St, San Francisco, CA 94016" +164429,Google Phone,1,600,02/15/19 21:33,"52 Johnson St, Portland, OR 97035" +164430,USB-C Charging Cable,1,11.95,02/21/19 20:57,"858 Maple St, Seattle, WA 98101" +164431,USB-C Charging Cable,1,11.95,02/03/19 17:42,"76 Lakeview St, Seattle, WA 98101" +164432,ThinkPad Laptop,1,999.99,02/09/19 18:08,"256 Cherry St, San Francisco, CA 94016" +164433,Apple Airpods Headphones,1,150,02/15/19 18:14,"989 8th St, Seattle, WA 98101" +164434,Wired Headphones,1,11.99,02/04/19 08:43,"389 7th St, Seattle, WA 98101" +164435,USB-C Charging Cable,1,11.95,02/17/19 17:50,"52 North St, Boston, MA 02215" +164436,Lightning Charging Cable,1,14.95,02/07/19 16:56,"208 9th St, San Francisco, CA 94016" +164437,Wired Headphones,1,11.99,02/21/19 14:52,"610 Meadow St, Boston, MA 02215" +164438,Flatscreen TV,1,300,02/11/19 16:50,"718 Hickory St, Los Angeles, CA 90001" +164439,20in Monitor,1,109.99,02/19/19 12:18,"113 6th St, Dallas, TX 75001" +164440,USB-C Charging Cable,1,11.95,02/25/19 17:07,"805 Adams St, San Francisco, CA 94016" +164441,AAA Batteries (4-pack),4,2.99,02/12/19 15:23,"391 Washington St, Portland, ME 04101" +164442,Bose SoundSport Headphones,1,99.99,02/27/19 15:52,"565 Lincoln St, Portland, OR 97035" +164443,Bose SoundSport Headphones,1,99.99,02/17/19 16:19,"204 Chestnut St, Atlanta, GA 30301" +164444,USB-C Charging Cable,1,11.95,02/01/19 19:42,"401 Hill St, New York City, NY 10001" +164445,27in 4K Gaming Monitor,1,389.99,02/15/19 12:51,"536 Forest St, Portland, OR 97035" +164446,USB-C Charging Cable,2,11.95,02/22/19 21:02,"727 7th St, Los Angeles, CA 90001" +164447,Lightning Charging Cable,1,14.95,02/09/19 00:53,"573 Hill St, Austin, TX 73301" +164448,34in Ultrawide Monitor,1,379.99,02/19/19 15:39,"913 Johnson St, Los Angeles, CA 90001" +164449,Bose SoundSport Headphones,1,99.99,02/10/19 00:05,"73 Lincoln St, Seattle, WA 98101" +164450,Wired Headphones,1,11.99,02/07/19 19:21,"59 Center St, San Francisco, CA 94016" +164451,27in 4K Gaming Monitor,1,389.99,02/09/19 09:30,"174 Hickory St, Los Angeles, CA 90001" +164452,Macbook Pro Laptop,1,1700,02/17/19 14:32,"797 8th St, Dallas, TX 75001" +164453,Wired Headphones,1,11.99,02/05/19 16:58,"404 Jefferson St, Los Angeles, CA 90001" +164454,Vareebadd Phone,1,400,02/23/19 13:53,"71 8th St, San Francisco, CA 94016" +164454,USB-C Charging Cable,1,11.95,02/23/19 13:53,"71 8th St, San Francisco, CA 94016" +164455,USB-C Charging Cable,1,11.95,02/25/19 13:57,"859 Center St, Seattle, WA 98101" +164456,USB-C Charging Cable,1,11.95,02/14/19 17:56,"507 South St, San Francisco, CA 94016" +164457,AA Batteries (4-pack),1,3.84,02/06/19 16:10,"797 13th St, San Francisco, CA 94016" +164458,AA Batteries (4-pack),1,3.84,02/20/19 17:53,"413 Meadow St, Los Angeles, CA 90001" +164459,Lightning Charging Cable,1,14.95,02/05/19 19:33,"424 8th St, San Francisco, CA 94016" +164460,iPhone,1,700,02/10/19 21:53,"438 Chestnut St, San Francisco, CA 94016" +164460,Lightning Charging Cable,1,14.95,02/10/19 21:53,"438 Chestnut St, San Francisco, CA 94016" +164461,USB-C Charging Cable,1,11.95,02/17/19 13:09,"13 Lincoln St, Atlanta, GA 30301" +164462,USB-C Charging Cable,1,11.95,02/09/19 20:41,"388 Willow St, San Francisco, CA 94016" +164463,AAA Batteries (4-pack),1,2.99,02/14/19 18:23,"60 South St, Los Angeles, CA 90001" +164464,USB-C Charging Cable,1,11.95,02/21/19 10:48,"478 9th St, San Francisco, CA 94016" +164465,Bose SoundSport Headphones,3,99.99,02/02/19 12:36,"941 Jefferson St, Dallas, TX 75001" +164466,Lightning Charging Cable,1,14.95,02/20/19 08:10,"111 13th St, San Francisco, CA 94016" +164467,AA Batteries (4-pack),1,3.84,02/11/19 19:10,"750 11th St, Austin, TX 73301" +164468,Lightning Charging Cable,2,14.95,02/08/19 17:54,"358 12th St, Austin, TX 73301" +164469,Flatscreen TV,1,300,02/03/19 14:33,"400 Lincoln St, New York City, NY 10001" +164470,USB-C Charging Cable,1,11.95,02/07/19 10:26,"161 8th St, Boston, MA 02215" +164471,Macbook Pro Laptop,1,1700,02/14/19 17:01,"884 2nd St, Dallas, TX 75001" +164472,ThinkPad Laptop,1,999.99,02/03/19 21:49,"516 1st St, Los Angeles, CA 90001" +164473,Bose SoundSport Headphones,1,99.99,02/23/19 01:51,"423 Adams St, San Francisco, CA 94016" +164474,Bose SoundSport Headphones,1,99.99,02/17/19 19:44,"62 8th St, San Francisco, CA 94016" +164475,USB-C Charging Cable,2,11.95,02/13/19 11:07,"433 Walnut St, Los Angeles, CA 90001" +164476,ThinkPad Laptop,1,999.99,02/05/19 11:25,"819 West St, Atlanta, GA 30301" +164477,USB-C Charging Cable,1,11.95,02/23/19 22:20,"318 Lincoln St, San Francisco, CA 94016" +164478,USB-C Charging Cable,1,11.95,02/13/19 20:37,"421 Center St, San Francisco, CA 94016" +164479,Google Phone,1,600,02/04/19 22:27,"192 Jefferson St, Boston, MA 02215" +164480,Lightning Charging Cable,1,14.95,02/19/19 16:49,"190 Hickory St, Seattle, WA 98101" +164481,Lightning Charging Cable,1,14.95,02/05/19 21:36,"205 Forest St, New York City, NY 10001" +164482,Wired Headphones,1,11.99,02/26/19 14:48,"858 Dogwood St, Atlanta, GA 30301" +164483,Lightning Charging Cable,1,14.95,02/19/19 16:53,"626 Cherry St, Dallas, TX 75001" +164484,AAA Batteries (4-pack),3,2.99,02/15/19 12:36,"576 Adams St, New York City, NY 10001" +164485,Lightning Charging Cable,1,14.95,02/22/19 22:52,"901 Willow St, San Francisco, CA 94016" +164486,USB-C Charging Cable,1,11.95,02/08/19 02:26,"485 Center St, Dallas, TX 75001" +164487,Flatscreen TV,1,300,02/09/19 19:19,"251 10th St, Boston, MA 02215" +164488,USB-C Charging Cable,1,11.95,02/15/19 14:45,"413 9th St, Portland, ME 04101" +164489,Bose SoundSport Headphones,1,99.99,02/18/19 19:18,"632 South St, Los Angeles, CA 90001" +,,,,, +164490,27in 4K Gaming Monitor,1,389.99,02/10/19 12:05,"591 6th St, Boston, MA 02215" +164491,Apple Airpods Headphones,1,150,02/25/19 18:09,"170 West St, New York City, NY 10001" +164492,USB-C Charging Cable,1,11.95,02/05/19 16:16,"453 Cherry St, San Francisco, CA 94016" +164493,AA Batteries (4-pack),1,3.84,02/15/19 20:18,"393 Washington St, Dallas, TX 75001" +164494,USB-C Charging Cable,1,11.95,02/07/19 11:58,"102 North St, New York City, NY 10001" +164495,Wired Headphones,1,11.99,02/19/19 14:13,"423 Church St, Dallas, TX 75001" +,,,,, +164496,iPhone,1,700,02/24/19 12:09,"540 Willow St, Portland, OR 97035" +164496,Apple Airpods Headphones,1,150,02/24/19 12:09,"540 Willow St, Portland, OR 97035" +164497,Apple Airpods Headphones,1,150,02/17/19 15:24,"170 Dogwood St, Los Angeles, CA 90001" +164498,Apple Airpods Headphones,1,150,02/07/19 10:41,"983 6th St, Dallas, TX 75001" +164499,USB-C Charging Cable,1,11.95,02/06/19 14:42,"790 Church St, New York City, NY 10001" +164500,ThinkPad Laptop,1,999.99,02/04/19 20:46,"854 Forest St, Boston, MA 02215" +164501,Lightning Charging Cable,1,14.95,02/06/19 07:16,"138 Spruce St, Portland, OR 97035" +164502,Lightning Charging Cable,1,14.95,02/25/19 17:15,"76 Wilson St, Los Angeles, CA 90001" +164503,iPhone,1,700,02/20/19 09:07,"987 Dogwood St, San Francisco, CA 94016" +164504,Bose SoundSport Headphones,1,99.99,02/08/19 15:59,"984 Jefferson St, New York City, NY 10001" +164505,USB-C Charging Cable,2,11.95,02/14/19 15:04,"301 6th St, San Francisco, CA 94016" +164506,27in 4K Gaming Monitor,1,389.99,02/14/19 21:20,"3 4th St, Los Angeles, CA 90001" +164507,USB-C Charging Cable,1,11.95,02/11/19 17:58,"673 Elm St, Portland, OR 97035" +164508,USB-C Charging Cable,1,11.95,02/10/19 21:50,"988 Center St, Los Angeles, CA 90001" +164509,ThinkPad Laptop,1,999.99,02/24/19 08:17,"680 Jackson St, Dallas, TX 75001" +164510,Wired Headphones,1,11.99,02/03/19 16:55,"196 14th St, Portland, OR 97035" +164511,Apple Airpods Headphones,1,150,02/09/19 13:18,"243 Church St, San Francisco, CA 94016" +164512,27in FHD Monitor,1,149.99,02/14/19 19:44,"251 9th St, New York City, NY 10001" +164513,Bose SoundSport Headphones,1,99.99,02/25/19 19:14,"543 Washington St, Seattle, WA 98101" +164514,Wired Headphones,2,11.99,02/10/19 10:32,"602 South St, Los Angeles, CA 90001" +164515,USB-C Charging Cable,1,11.95,02/17/19 11:52,"685 Hickory St, New York City, NY 10001" +164516,Macbook Pro Laptop,1,1700,02/24/19 22:32,"809 1st St, Los Angeles, CA 90001" +164517,AA Batteries (4-pack),1,3.84,02/13/19 11:32,"766 2nd St, San Francisco, CA 94016" +164518,USB-C Charging Cable,1,11.95,02/20/19 12:37,"462 Lincoln St, San Francisco, CA 94016" +164519,Vareebadd Phone,1,400,02/09/19 16:03,"473 North St, San Francisco, CA 94016" +164520,Lightning Charging Cable,1,14.95,02/15/19 19:49,"24 Sunset St, Los Angeles, CA 90001" +164521,iPhone,1,700,02/01/19 12:43,"353 Johnson St, Los Angeles, CA 90001" +164522,Apple Airpods Headphones,1,150,02/28/19 17:59,"91 Jefferson St, San Francisco, CA 94016" +164523,Bose SoundSport Headphones,1,99.99,02/07/19 17:43,"242 Madison St, Los Angeles, CA 90001" +164524,Apple Airpods Headphones,1,150,02/19/19 12:06,"500 2nd St, San Francisco, CA 94016" +164525,34in Ultrawide Monitor,1,379.99,02/22/19 20:08,"174 11th St, San Francisco, CA 94016" +164526,Vareebadd Phone,1,400,02/07/19 19:07,"754 Pine St, New York City, NY 10001" +164527,27in 4K Gaming Monitor,1,389.99,02/28/19 08:11,"903 Dogwood St, Los Angeles, CA 90001" +164528,AA Batteries (4-pack),1,3.84,02/17/19 16:52,"740 Park St, Dallas, TX 75001" +164529,AAA Batteries (4-pack),1,2.99,02/27/19 15:12,"286 6th St, Los Angeles, CA 90001" +164530,Wired Headphones,1,11.99,02/04/19 14:03,"778 Ridge St, Los Angeles, CA 90001" +164531,Lightning Charging Cable,1,14.95,02/10/19 07:40,"255 7th St, San Francisco, CA 94016" +164532,Bose SoundSport Headphones,1,99.99,02/11/19 18:46,"859 Forest St, New York City, NY 10001" +164533,Lightning Charging Cable,1,14.95,02/08/19 20:24,"692 6th St, Austin, TX 73301" +164534,Bose SoundSport Headphones,1,99.99,02/04/19 19:49,"700 Pine St, Austin, TX 73301" +164535,Google Phone,1,600,02/24/19 08:21,"496 Pine St, Los Angeles, CA 90001" +164536,AA Batteries (4-pack),1,3.84,02/10/19 11:40,"525 Main St, Boston, MA 02215" +164537,Apple Airpods Headphones,1,150,02/04/19 20:36,"523 Center St, Seattle, WA 98101" +164538,Flatscreen TV,1,300,02/02/19 20:21,"572 14th St, New York City, NY 10001" +164538,Bose SoundSport Headphones,1,99.99,02/02/19 20:21,"572 14th St, New York City, NY 10001" +164539,AA Batteries (4-pack),1,3.84,02/23/19 12:14,"875 Hill St, Seattle, WA 98101" +164540,20in Monitor,1,109.99,02/19/19 13:58,"440 South St, Seattle, WA 98101" +164541,34in Ultrawide Monitor,1,379.99,02/01/19 23:02,"406 Lincoln St, Austin, TX 73301" +164542,AAA Batteries (4-pack),2,2.99,02/26/19 09:09,"325 12th St, Dallas, TX 75001" +164543,USB-C Charging Cable,1,11.95,02/14/19 22:14,"461 8th St, Los Angeles, CA 90001" +164544,AAA Batteries (4-pack),3,2.99,02/02/19 21:07,"280 North St, Austin, TX 73301" +164545,AAA Batteries (4-pack),1,2.99,02/06/19 13:08,"788 Hill St, San Francisco, CA 94016" +164546,USB-C Charging Cable,1,11.95,02/08/19 11:09,"28 9th St, Los Angeles, CA 90001" +164547,Macbook Pro Laptop,1,1700,02/16/19 18:22,"516 West St, Los Angeles, CA 90001" +164548,AA Batteries (4-pack),1,3.84,02/21/19 00:01,"238 Walnut St, Boston, MA 02215" +164549,AA Batteries (4-pack),2,3.84,02/26/19 02:39,"674 Church St, San Francisco, CA 94016" +164550,USB-C Charging Cable,1,11.95,02/23/19 05:01,"339 Sunset St, San Francisco, CA 94016" +164551,Vareebadd Phone,1,400,02/07/19 19:38,"617 Adams St, Los Angeles, CA 90001" +164552,AA Batteries (4-pack),1,3.84,02/09/19 20:55,"956 Hill St, Boston, MA 02215" +164553,Apple Airpods Headphones,1,150,02/05/19 06:33,"876 11th St, Boston, MA 02215" +164554,USB-C Charging Cable,1,11.95,02/22/19 11:00,"969 Jefferson St, Atlanta, GA 30301" +164555,AAA Batteries (4-pack),1,2.99,02/24/19 12:48,"749 10th St, San Francisco, CA 94016" +164556,USB-C Charging Cable,1,11.95,02/11/19 09:51,"327 Highland St, Atlanta, GA 30301" +164557,Wired Headphones,1,11.99,02/13/19 22:11,"282 Cedar St, Seattle, WA 98101" +164558,Lightning Charging Cable,1,14.95,02/14/19 11:00,"194 Main St, Portland, OR 97035" +164559,Flatscreen TV,1,300,02/10/19 17:55,"442 9th St, Seattle, WA 98101" +164560,USB-C Charging Cable,1,11.95,02/10/19 11:34,"752 Highland St, New York City, NY 10001" +164561,Flatscreen TV,1,300,02/26/19 07:22,"874 7th St, Boston, MA 02215" +164562,34in Ultrawide Monitor,1,379.99,02/19/19 17:33,"841 Spruce St, San Francisco, CA 94016" +164563,27in FHD Monitor,1,149.99,02/19/19 19:42,"340 Pine St, Los Angeles, CA 90001" +164564,AAA Batteries (4-pack),2,2.99,02/14/19 02:37,"450 Cherry St, Austin, TX 73301" +164565,Wired Headphones,1,11.99,02/11/19 22:25,"724 Center St, Boston, MA 02215" +164566,Bose SoundSport Headphones,1,99.99,02/01/19 20:28,"132 5th St, San Francisco, CA 94016" +164567,AAA Batteries (4-pack),3,2.99,02/11/19 10:53,"710 Lakeview St, Los Angeles, CA 90001" +164568,Wired Headphones,1,11.99,02/03/19 10:15,"844 Park St, Los Angeles, CA 90001" +164569,AAA Batteries (4-pack),3,2.99,02/23/19 22:01,"45 Forest St, Atlanta, GA 30301" +164570,27in 4K Gaming Monitor,1,389.99,02/12/19 10:30,"636 11th St, New York City, NY 10001" +164571,27in 4K Gaming Monitor,1,389.99,02/27/19 19:51,"701 13th St, Boston, MA 02215" +164572,Flatscreen TV,1,300,02/25/19 11:27,"475 10th St, Atlanta, GA 30301" +164573,iPhone,1,700,02/15/19 18:55,"210 Jefferson St, San Francisco, CA 94016" +164573,Wired Headphones,1,11.99,02/15/19 18:55,"210 Jefferson St, San Francisco, CA 94016" +164574,Lightning Charging Cable,1,14.95,02/15/19 14:12,"648 North St, Los Angeles, CA 90001" +164575,Lightning Charging Cable,1,14.95,02/12/19 17:42,"247 Hickory St, New York City, NY 10001" +164576,Flatscreen TV,1,300,02/15/19 10:36,"866 Center St, San Francisco, CA 94016" +164577,27in 4K Gaming Monitor,1,389.99,02/27/19 17:39,"633 Jefferson St, Seattle, WA 98101" +164578,iPhone,1,700,02/28/19 22:26,"676 Elm St, San Francisco, CA 94016" +164578,Wired Headphones,1,11.99,02/28/19 22:26,"676 Elm St, San Francisco, CA 94016" +164579,Google Phone,1,600,02/03/19 20:03,"467 Sunset St, San Francisco, CA 94016" +164580,27in 4K Gaming Monitor,1,389.99,02/27/19 14:32,"944 North St, San Francisco, CA 94016" +164581,20in Monitor,1,109.99,02/25/19 11:37,"98 Willow St, Los Angeles, CA 90001" +164582,Lightning Charging Cable,1,14.95,02/02/19 17:51,"795 Hickory St, New York City, NY 10001" +164583,34in Ultrawide Monitor,1,379.99,02/12/19 20:08,"846 5th St, San Francisco, CA 94016" +164584,USB-C Charging Cable,1,11.95,02/14/19 11:02,"79 Pine St, Austin, TX 73301" +164585,27in FHD Monitor,1,149.99,02/12/19 09:16,"291 Jackson St, San Francisco, CA 94016" +164586,AAA Batteries (4-pack),4,2.99,02/09/19 18:19,"119 Maple St, New York City, NY 10001" +164587,34in Ultrawide Monitor,1,379.99,02/11/19 16:24,"882 7th St, San Francisco, CA 94016" +164588,AA Batteries (4-pack),1,3.84,02/14/19 13:43,"669 Hickory St, Los Angeles, CA 90001" +164589,USB-C Charging Cable,1,11.95,02/04/19 22:38,"872 Spruce St, Atlanta, GA 30301" +164590,Flatscreen TV,1,300,02/19/19 09:51,"213 Dogwood St, New York City, NY 10001" +164591,Lightning Charging Cable,1,14.95,02/15/19 16:23,"848 Ridge St, Portland, OR 97035" +164592,Macbook Pro Laptop,1,1700,02/02/19 19:02,"879 Willow St, Boston, MA 02215" +164593,Apple Airpods Headphones,1,150,02/02/19 11:10,"64 Hickory St, Los Angeles, CA 90001" +164594,AA Batteries (4-pack),1,3.84,02/24/19 13:52,"948 11th St, Dallas, TX 75001" +164595,Apple Airpods Headphones,1,150,02/27/19 07:46,"254 Church St, New York City, NY 10001" +164596,Wired Headphones,1,11.99,02/16/19 16:55,"186 9th St, San Francisco, CA 94016" +164597,Wired Headphones,1,11.99,02/05/19 09:42,"689 Spruce St, Dallas, TX 75001" +164597,ThinkPad Laptop,1,999.99,02/05/19 09:42,"689 Spruce St, Dallas, TX 75001" +164598,Lightning Charging Cable,1,14.95,02/20/19 15:36,"589 Meadow St, Seattle, WA 98101" +164599,Wired Headphones,1,11.99,02/21/19 13:16,"521 Dogwood St, Dallas, TX 75001" +164600,AA Batteries (4-pack),2,3.84,02/08/19 16:19,"180 1st St, Atlanta, GA 30301" +164601,Macbook Pro Laptop,1,1700,02/19/19 12:34,"374 Jefferson St, Seattle, WA 98101" +164602,Vareebadd Phone,1,400,02/09/19 18:33,"191 Lake St, Boston, MA 02215" +164603,Lightning Charging Cable,1,14.95,02/25/19 10:49,"243 Johnson St, Boston, MA 02215" +164604,AAA Batteries (4-pack),1,2.99,02/15/19 12:18,"737 South St, Los Angeles, CA 90001" +164605,ThinkPad Laptop,1,999.99,02/28/19 12:02,"914 13th St, New York City, NY 10001" +164606,Lightning Charging Cable,1,14.95,02/26/19 14:39,"709 Park St, Seattle, WA 98101" +164607,20in Monitor,1,109.99,02/09/19 20:45,"975 Jefferson St, Atlanta, GA 30301" +164608,USB-C Charging Cable,1,11.95,02/20/19 10:45,"585 Forest St, San Francisco, CA 94016" +164609,20in Monitor,1,109.99,02/18/19 15:00,"277 Lincoln St, Portland, ME 04101" +164610,Wired Headphones,1,11.99,02/16/19 13:31,"654 Dogwood St, Portland, OR 97035" +164611,AA Batteries (4-pack),1,3.84,02/16/19 12:47,"489 Elm St, Los Angeles, CA 90001" +164612,USB-C Charging Cable,1,11.95,02/24/19 13:08,"875 Meadow St, Dallas, TX 75001" +164613,Wired Headphones,1,11.99,02/14/19 11:02,"40 Center St, Atlanta, GA 30301" +164614,AA Batteries (4-pack),1,3.84,02/08/19 10:46,"629 Adams St, Atlanta, GA 30301" +164615,34in Ultrawide Monitor,1,379.99,02/27/19 08:57,"935 Jackson St, San Francisco, CA 94016" +164616,Google Phone,1,600,02/13/19 13:21,"309 11th St, Los Angeles, CA 90001" +164616,USB-C Charging Cable,1,11.95,02/13/19 13:21,"309 11th St, Los Angeles, CA 90001" +164617,ThinkPad Laptop,1,999.99,02/25/19 19:59,"759 Park St, Seattle, WA 98101" +164618,LG Washing Machine,1,600.0,02/01/19 10:38,"278 Washington St, San Francisco, CA 94016" +164619,AA Batteries (4-pack),1,3.84,02/11/19 00:27,"232 14th St, Portland, OR 97035" +164620,AAA Batteries (4-pack),4,2.99,02/05/19 13:35,"834 Park St, San Francisco, CA 94016" +164621,USB-C Charging Cable,1,11.95,02/23/19 11:32,"692 Wilson St, San Francisco, CA 94016" +164622,Wired Headphones,1,11.99,02/15/19 22:24,"725 Meadow St, New York City, NY 10001" +164623,ThinkPad Laptop,1,999.99,02/16/19 10:39,"37 Willow St, Boston, MA 02215" +164624,USB-C Charging Cable,1,11.95,02/05/19 08:45,"498 7th St, Los Angeles, CA 90001" +164625,Lightning Charging Cable,1,14.95,02/03/19 15:52,"43 Hill St, San Francisco, CA 94016" +164626,AA Batteries (4-pack),1,3.84,02/03/19 18:51,"469 Highland St, Atlanta, GA 30301" +164627,AAA Batteries (4-pack),1,2.99,02/02/19 15:10,"788 8th St, Austin, TX 73301" +164628,27in 4K Gaming Monitor,1,389.99,02/26/19 22:54,"251 6th St, San Francisco, CA 94016" +164629,34in Ultrawide Monitor,1,379.99,02/06/19 00:56,"220 Washington St, San Francisco, CA 94016" +164630,Apple Airpods Headphones,1,150,02/24/19 19:41,"830 North St, Los Angeles, CA 90001" +164631,AA Batteries (4-pack),1,3.84,02/05/19 10:53,"256 4th St, Portland, ME 04101" +164632,USB-C Charging Cable,1,11.95,02/28/19 14:52,"861 Lake St, San Francisco, CA 94016" +164633,LG Dryer,1,600.0,02/12/19 12:28,"309 Wilson St, Atlanta, GA 30301" +164634,iPhone,1,700,02/09/19 11:07,"897 River St, San Francisco, CA 94016" +164635,Lightning Charging Cable,1,14.95,02/02/19 11:34,"972 Pine St, New York City, NY 10001" +164636,20in Monitor,1,109.99,02/13/19 17:34,"428 Meadow St, New York City, NY 10001" +164637,27in 4K Gaming Monitor,1,389.99,02/05/19 18:58,"221 8th St, Boston, MA 02215" +164638,Apple Airpods Headphones,1,150,02/26/19 16:45,"977 Madison St, Seattle, WA 98101" +164639,AAA Batteries (4-pack),1,2.99,02/15/19 23:51,"723 1st St, Los Angeles, CA 90001" +164640,Wired Headphones,1,11.99,02/05/19 15:27,"150 Madison St, Los Angeles, CA 90001" +164641,AAA Batteries (4-pack),1,2.99,02/08/19 13:03,"989 Highland St, New York City, NY 10001" +164642,AAA Batteries (4-pack),1,2.99,02/26/19 13:29,"692 Jefferson St, Portland, OR 97035" +164643,AA Batteries (4-pack),1,3.84,02/20/19 13:19,"130 Madison St, Boston, MA 02215" +164644,20in Monitor,1,109.99,02/15/19 20:25,"33 Johnson St, Atlanta, GA 30301" +164645,AA Batteries (4-pack),1,3.84,02/17/19 13:14,"929 14th St, Austin, TX 73301" +164646,AAA Batteries (4-pack),3,2.99,02/25/19 15:36,"46 6th St, Portland, OR 97035" +164647,20in Monitor,1,109.99,02/18/19 21:22,"502 8th St, Los Angeles, CA 90001" +164648,Wired Headphones,1,11.99,02/26/19 21:40,"746 12th St, San Francisco, CA 94016" +164649,Lightning Charging Cable,1,14.95,02/15/19 19:58,"573 Park St, Seattle, WA 98101" +164650,Vareebadd Phone,1,400,02/11/19 12:31,"108 Elm St, San Francisco, CA 94016" +164650,USB-C Charging Cable,1,11.95,02/11/19 12:31,"108 Elm St, San Francisco, CA 94016" +164651,USB-C Charging Cable,1,11.95,02/08/19 11:57,"510 8th St, Atlanta, GA 30301" +164652,Google Phone,1,600,02/06/19 22:59,"261 Johnson St, Atlanta, GA 30301" +164652,Bose SoundSport Headphones,1,99.99,02/06/19 22:59,"261 Johnson St, Atlanta, GA 30301" +164653,27in FHD Monitor,1,149.99,02/24/19 02:20,"151 5th St, New York City, NY 10001" +164654,34in Ultrawide Monitor,1,379.99,02/19/19 09:12,"823 4th St, Los Angeles, CA 90001" +164655,20in Monitor,1,109.99,02/24/19 13:25,"421 Willow St, Seattle, WA 98101" +164656,Wired Headphones,1,11.99,02/07/19 18:03,"880 Spruce St, San Francisco, CA 94016" +164657,Lightning Charging Cable,1,14.95,02/03/19 10:41,"794 North St, Austin, TX 73301" +164658,Bose SoundSport Headphones,1,99.99,02/27/19 12:03,"386 Main St, San Francisco, CA 94016" +164659,Wired Headphones,1,11.99,02/21/19 12:32,"640 2nd St, Portland, OR 97035" +164660,Wired Headphones,1,11.99,02/19/19 20:18,"399 North St, Seattle, WA 98101" +164661,34in Ultrawide Monitor,1,379.99,02/17/19 15:28,"330 Sunset St, Los Angeles, CA 90001" +164662,27in FHD Monitor,1,149.99,02/18/19 15:08,"956 Meadow St, Los Angeles, CA 90001" +164662,AAA Batteries (4-pack),1,2.99,02/18/19 15:08,"956 Meadow St, Los Angeles, CA 90001" +164663,USB-C Charging Cable,1,11.95,02/11/19 09:18,"210 Elm St, Los Angeles, CA 90001" +164664,iPhone,1,700,02/13/19 22:48,"68 4th St, New York City, NY 10001" +164665,34in Ultrawide Monitor,1,379.99,02/19/19 10:42,"710 Johnson St, San Francisco, CA 94016" +164666,USB-C Charging Cable,1,11.95,02/08/19 13:32,"325 Walnut St, Atlanta, GA 30301" +164667,Macbook Pro Laptop,1,1700,02/02/19 05:20,"295 10th St, Dallas, TX 75001" +164668,AAA Batteries (4-pack),1,2.99,02/04/19 01:44,"627 Walnut St, Boston, MA 02215" +164669,Wired Headphones,1,11.99,02/25/19 20:21,"385 Highland St, San Francisco, CA 94016" +164670,Lightning Charging Cable,1,14.95,02/22/19 19:55,"55 West St, Atlanta, GA 30301" +164671,Flatscreen TV,1,300,02/22/19 19:00,"675 14th St, Dallas, TX 75001" +164672,iPhone,1,700,02/12/19 12:40,"787 7th St, Atlanta, GA 30301" +164673,Wired Headphones,1,11.99,02/03/19 21:05,"798 Dogwood St, Seattle, WA 98101" +164674,AAA Batteries (4-pack),1,2.99,02/14/19 01:23,"584 Center St, San Francisco, CA 94016" +164675,AAA Batteries (4-pack),1,2.99,02/05/19 08:27,"759 Meadow St, Boston, MA 02215" +164676,Bose SoundSport Headphones,1,99.99,02/01/19 16:44,"433 Cedar St, New York City, NY 10001" +164677,Wired Headphones,1,11.99,02/26/19 12:17,"922 1st St, Portland, OR 97035" +164678,Apple Airpods Headphones,1,150,02/19/19 16:54,"216 7th St, Los Angeles, CA 90001" +164679,AA Batteries (4-pack),1,3.84,02/22/19 21:04,"333 5th St, Los Angeles, CA 90001" +164680,AA Batteries (4-pack),1,3.84,02/05/19 19:24,"421 Madison St, San Francisco, CA 94016" +164681,34in Ultrawide Monitor,1,379.99,02/24/19 13:09,"516 Pine St, Los Angeles, CA 90001" +164682,Apple Airpods Headphones,1,150,02/20/19 15:40,"276 Hill St, San Francisco, CA 94016" +164683,AAA Batteries (4-pack),1,2.99,02/15/19 17:11,"744 West St, San Francisco, CA 94016" +164684,Macbook Pro Laptop,1,1700,02/21/19 10:46,"404 Lincoln St, San Francisco, CA 94016" +164685,AAA Batteries (4-pack),3,2.99,02/08/19 21:59,"777 10th St, New York City, NY 10001" +164686,Lightning Charging Cable,1,14.95,02/03/19 20:06,"132 Lakeview St, San Francisco, CA 94016" +164687,AA Batteries (4-pack),1,3.84,02/15/19 08:41,"716 Lake St, Los Angeles, CA 90001" +164688,Lightning Charging Cable,1,14.95,02/24/19 16:16,"897 Elm St, San Francisco, CA 94016" +164689,34in Ultrawide Monitor,1,379.99,02/12/19 18:54,"789 Washington St, San Francisco, CA 94016" +164690,AAA Batteries (4-pack),1,2.99,02/22/19 15:53,"352 Center St, Los Angeles, CA 90001" +164691,Macbook Pro Laptop,1,1700,02/25/19 21:07,"575 Cedar St, Dallas, TX 75001" +164692,Macbook Pro Laptop,1,1700,02/24/19 19:51,"870 Pine St, San Francisco, CA 94016" +164693,USB-C Charging Cable,1,11.95,02/27/19 14:00,"254 Lakeview St, Austin, TX 73301" +164694,Wired Headphones,1,11.99,02/08/19 09:54,"380 Center St, Dallas, TX 75001" +164695,Lightning Charging Cable,1,14.95,02/20/19 08:42,"879 11th St, San Francisco, CA 94016" +164696,iPhone,1,700,02/26/19 16:53,"963 10th St, Austin, TX 73301" +164697,Google Phone,1,600,02/11/19 14:11,"234 Ridge St, Boston, MA 02215" +164697,Wired Headphones,1,11.99,02/11/19 14:11,"234 Ridge St, Boston, MA 02215" +164697,USB-C Charging Cable,1,11.95,02/11/19 14:11,"234 Ridge St, Boston, MA 02215" +164698,Lightning Charging Cable,1,14.95,02/06/19 15:12,"356 1st St, New York City, NY 10001" +164699,Wired Headphones,1,11.99,02/04/19 16:57,"355 Forest St, Los Angeles, CA 90001" +164700,Wired Headphones,1,11.99,02/10/19 20:06,"426 Main St, Atlanta, GA 30301" +164701,Google Phone,1,600,02/07/19 11:54,"108 Sunset St, San Francisco, CA 94016" +164701,USB-C Charging Cable,1,11.95,02/07/19 11:54,"108 Sunset St, San Francisco, CA 94016" +164702,Wired Headphones,1,11.99,02/10/19 11:38,"548 1st St, San Francisco, CA 94016" +164702,ThinkPad Laptop,1,999.99,02/10/19 11:38,"548 1st St, San Francisco, CA 94016" +164703,AAA Batteries (4-pack),1,2.99,02/04/19 20:59,"942 Dogwood St, Atlanta, GA 30301" +164703,Apple Airpods Headphones,1,150,02/04/19 20:59,"942 Dogwood St, Atlanta, GA 30301" +164704,Wired Headphones,1,11.99,02/28/19 15:37,"745 9th St, Boston, MA 02215" +164705,Flatscreen TV,1,300,02/15/19 16:08,"745 Hickory St, San Francisco, CA 94016" +164706,AAA Batteries (4-pack),2,2.99,02/22/19 17:13,"394 River St, Boston, MA 02215" +164707,Bose SoundSport Headphones,1,99.99,02/16/19 22:32,"271 Park St, New York City, NY 10001" +164708,USB-C Charging Cable,1,11.95,02/11/19 20:07,"377 River St, Los Angeles, CA 90001" +164709,Macbook Pro Laptop,1,1700,02/18/19 10:12,"400 Lakeview St, San Francisco, CA 94016" +164710,Lightning Charging Cable,1,14.95,02/01/19 11:00,"278 Meadow St, Boston, MA 02215" +164711,Google Phone,1,600,02/12/19 09:11,"208 Pine St, San Francisco, CA 94016" +164712,ThinkPad Laptop,1,999.99,02/19/19 18:56,"726 9th St, San Francisco, CA 94016" +164713,Wired Headphones,1,11.99,02/21/19 00:22,"76 Johnson St, San Francisco, CA 94016" +164714,Wired Headphones,1,11.99,02/01/19 14:04,"250 1st St, San Francisco, CA 94016" +164715,Lightning Charging Cable,1,14.95,02/17/19 10:41,"614 6th St, Los Angeles, CA 90001" +164716,AA Batteries (4-pack),1,3.84,02/28/19 18:25,"561 5th St, Seattle, WA 98101" +164717,Lightning Charging Cable,1,14.95,02/24/19 17:39,"162 9th St, Seattle, WA 98101" +164718,Flatscreen TV,1,300,02/25/19 17:13,"621 8th St, Los Angeles, CA 90001" +164719,USB-C Charging Cable,1,11.95,02/20/19 21:54,"283 12th St, Seattle, WA 98101" +164720,Wired Headphones,2,11.99,02/14/19 01:45,"856 Highland St, Atlanta, GA 30301" +164721,34in Ultrawide Monitor,1,379.99,02/13/19 06:51,"664 Cherry St, San Francisco, CA 94016" +164722,AAA Batteries (4-pack),1,2.99,02/11/19 21:53,"298 7th St, San Francisco, CA 94016" +164723,AAA Batteries (4-pack),1,2.99,02/14/19 16:23,"40 Washington St, Los Angeles, CA 90001" +164724,Apple Airpods Headphones,1,150,02/26/19 10:26,"65 Adams St, San Francisco, CA 94016" +164725,USB-C Charging Cable,1,11.95,02/22/19 17:10,"66 Wilson St, Dallas, TX 75001" +164726,Bose SoundSport Headphones,1,99.99,02/04/19 11:24,"423 Adams St, Los Angeles, CA 90001" +164727,Flatscreen TV,1,300,02/26/19 22:28,"684 West St, Los Angeles, CA 90001" +164728,iPhone,1,700,02/17/19 19:52,"853 Main St, Austin, TX 73301" +164729,USB-C Charging Cable,1,11.95,02/22/19 21:05,"320 5th St, Boston, MA 02215" +164730,Wired Headphones,1,11.99,02/22/19 13:15,"911 7th St, New York City, NY 10001" +164731,ThinkPad Laptop,1,999.99,02/22/19 00:37,"555 Highland St, Dallas, TX 75001" +164732,27in 4K Gaming Monitor,1,389.99,02/22/19 18:38,"954 Meadow St, San Francisco, CA 94016" +164733,AAA Batteries (4-pack),1,2.99,02/09/19 13:01,"640 11th St, Portland, ME 04101" +164734,Google Phone,1,600,02/23/19 19:11,"75 Maple St, Los Angeles, CA 90001" +164735,34in Ultrawide Monitor,1,379.99,02/12/19 18:35,"146 Lincoln St, Portland, ME 04101" +164736,Lightning Charging Cable,1,14.95,02/21/19 09:34,"402 Lincoln St, Austin, TX 73301" +164737,Apple Airpods Headphones,1,150,02/09/19 15:58,"24 Jackson St, Los Angeles, CA 90001" +164738,AAA Batteries (4-pack),1,2.99,02/15/19 16:16,"147 Cherry St, San Francisco, CA 94016" +164739,20in Monitor,1,109.99,02/25/19 12:34,"490 10th St, Portland, OR 97035" +164740,Lightning Charging Cable,1,14.95,02/16/19 07:57,"727 7th St, Boston, MA 02215" +164741,USB-C Charging Cable,1,11.95,02/01/19 13:20,"855 Dogwood St, Austin, TX 73301" +164742,iPhone,1,700,02/25/19 06:48,"809 South St, Atlanta, GA 30301" +164742,Apple Airpods Headphones,1,150,02/25/19 06:48,"809 South St, Atlanta, GA 30301" +164743,27in FHD Monitor,2,149.99,02/08/19 19:13,"763 Walnut St, Dallas, TX 75001" +164744,USB-C Charging Cable,1,11.95,02/19/19 21:28,"726 1st St, Los Angeles, CA 90001" +164745,Macbook Pro Laptop,1,1700,02/09/19 12:07,"150 Washington St, Los Angeles, CA 90001" +164746,iPhone,1,700,02/05/19 17:50,"316 4th St, San Francisco, CA 94016" +164747,USB-C Charging Cable,1,11.95,02/02/19 22:42,"477 Hickory St, San Francisco, CA 94016" +164748,Google Phone,1,600,02/17/19 07:37,"465 Spruce St, Atlanta, GA 30301" +164749,AA Batteries (4-pack),2,3.84,02/17/19 19:24,"322 Jackson St, Austin, TX 73301" +164750,Wired Headphones,1,11.99,02/24/19 20:04,"67 Jefferson St, New York City, NY 10001" +164751,AAA Batteries (4-pack),1,2.99,02/21/19 20:52,"282 Hickory St, New York City, NY 10001" +164752,USB-C Charging Cable,1,11.95,02/02/19 08:04,"729 Main St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +164753,USB-C Charging Cable,1,11.95,02/17/19 08:04,"749 11th St, San Francisco, CA 94016" +164754,27in 4K Gaming Monitor,1,389.99,02/15/19 12:35,"428 Jefferson St, San Francisco, CA 94016" +164755,AA Batteries (4-pack),2,3.84,02/28/19 13:37,"756 Park St, Portland, OR 97035" +164756,AA Batteries (4-pack),1,3.84,02/02/19 22:01,"401 Hill St, Portland, OR 97035" +164757,Bose SoundSport Headphones,1,99.99,02/05/19 15:09,"787 Highland St, San Francisco, CA 94016" +164758,AA Batteries (4-pack),1,3.84,02/05/19 09:36,"985 Dogwood St, New York City, NY 10001" +164759,ThinkPad Laptop,1,999.99,02/01/19 13:22,"893 Maple St, San Francisco, CA 94016" +164760,27in 4K Gaming Monitor,1,389.99,02/19/19 14:13,"565 4th St, San Francisco, CA 94016" +164761,Lightning Charging Cable,1,14.95,02/18/19 22:06,"138 Cherry St, Los Angeles, CA 90001" +164762,USB-C Charging Cable,1,11.95,02/06/19 18:43,"411 1st St, Atlanta, GA 30301" +164763,USB-C Charging Cable,1,11.95,02/12/19 21:11,"660 Hickory St, San Francisco, CA 94016" +164764,Wired Headphones,2,11.99,02/17/19 15:33,"707 Meadow St, Atlanta, GA 30301" +164764,Wired Headphones,1,11.99,02/17/19 15:33,"707 Meadow St, Atlanta, GA 30301" +164765,Apple Airpods Headphones,1,150,02/04/19 12:05,"221 Jefferson St, San Francisco, CA 94016" +164766,AA Batteries (4-pack),3,3.84,02/22/19 11:35,"63 Maple St, Portland, OR 97035" +164767,Lightning Charging Cable,1,14.95,02/08/19 22:10,"481 Church St, New York City, NY 10001" +164768,Wired Headphones,1,11.99,02/21/19 19:20,"947 Forest St, Boston, MA 02215" +164769,AAA Batteries (4-pack),2,2.99,02/10/19 20:41,"468 Meadow St, Boston, MA 02215" +164770,Wired Headphones,1,11.99,02/08/19 21:42,"971 Walnut St, Portland, ME 04101" +164771,Wired Headphones,2,11.99,02/12/19 14:06,"120 Lake St, San Francisco, CA 94016" +164772,Google Phone,1,600,02/11/19 17:21,"254 Hill St, Dallas, TX 75001" +164773,Apple Airpods Headphones,1,150,02/14/19 12:52,"355 Cherry St, San Francisco, CA 94016" +164774,AAA Batteries (4-pack),1,2.99,02/20/19 20:33,"481 Hickory St, Seattle, WA 98101" +164775,34in Ultrawide Monitor,1,379.99,02/20/19 13:03,"900 Spruce St, Seattle, WA 98101" +164776,AA Batteries (4-pack),1,3.84,02/16/19 16:28,"288 Sunset St, San Francisco, CA 94016" +164777,Bose SoundSport Headphones,1,99.99,02/25/19 09:14,"206 Church St, Los Angeles, CA 90001" +164778,AAA Batteries (4-pack),1,2.99,02/23/19 19:22,"783 Hickory St, Austin, TX 73301" +164779,AAA Batteries (4-pack),1,2.99,02/26/19 10:46,"825 Pine St, Atlanta, GA 30301" +164780,Wired Headphones,2,11.99,02/11/19 06:51,"277 Sunset St, Los Angeles, CA 90001" +164781,27in FHD Monitor,1,149.99,02/02/19 09:11,"134 Main St, Portland, OR 97035" +164782,iPhone,1,700,02/07/19 21:27,"988 Hickory St, Boston, MA 02215" +164782,Wired Headphones,1,11.99,02/07/19 21:27,"988 Hickory St, Boston, MA 02215" +164783,Apple Airpods Headphones,1,150,02/26/19 09:35,"747 Cedar St, San Francisco, CA 94016" +164784,27in 4K Gaming Monitor,1,389.99,02/22/19 17:33,"668 Spruce St, Dallas, TX 75001" +164785,Flatscreen TV,1,300,02/26/19 14:10,"262 Highland St, San Francisco, CA 94016" +164786,Lightning Charging Cable,1,14.95,02/21/19 19:31,"614 Ridge St, Seattle, WA 98101" +164787,AAA Batteries (4-pack),1,2.99,02/08/19 12:32,"824 1st St, San Francisco, CA 94016" +164788,Wired Headphones,1,11.99,02/12/19 11:47,"727 Jackson St, Los Angeles, CA 90001" +164789,Google Phone,1,600,02/10/19 21:20,"362 Jackson St, New York City, NY 10001" +164789,USB-C Charging Cable,1,11.95,02/10/19 21:20,"362 Jackson St, New York City, NY 10001" +164790,Apple Airpods Headphones,1,150,02/02/19 12:57,"232 Johnson St, Dallas, TX 75001" +164791,27in FHD Monitor,1,149.99,02/28/19 20:12,"591 7th St, New York City, NY 10001" +164792,Wired Headphones,1,11.99,02/09/19 20:21,"777 Spruce St, San Francisco, CA 94016" +164793,AAA Batteries (4-pack),1,2.99,02/23/19 20:54,"63 Center St, Seattle, WA 98101" +164794,Wired Headphones,2,11.99,02/20/19 10:55,"625 4th St, Los Angeles, CA 90001" +164795,Apple Airpods Headphones,1,150,02/21/19 21:33,"73 Johnson St, San Francisco, CA 94016" +164796,Wired Headphones,1,11.99,02/06/19 19:47,"136 12th St, San Francisco, CA 94016" +164797,Wired Headphones,1,11.99,02/04/19 07:49,"482 Jackson St, San Francisco, CA 94016" +164798,Lightning Charging Cable,1,14.95,02/06/19 10:16,"51 Highland St, Los Angeles, CA 90001" +164799,AA Batteries (4-pack),1,3.84,02/12/19 12:25,"566 9th St, Los Angeles, CA 90001" +164800,Bose SoundSport Headphones,1,99.99,02/22/19 11:07,"808 Jefferson St, San Francisco, CA 94016" +164801,27in FHD Monitor,1,149.99,02/13/19 10:55,"33 10th St, Los Angeles, CA 90001" +164802,Wired Headphones,1,11.99,02/01/19 16:44,"203 Cherry St, Los Angeles, CA 90001" +164803,Flatscreen TV,1,300,02/07/19 18:39,"282 Jackson St, Portland, OR 97035" +164804,Lightning Charging Cable,1,14.95,02/19/19 06:40,"575 Jefferson St, Boston, MA 02215" +164805,Lightning Charging Cable,1,14.95,02/25/19 18:48,"794 4th St, San Francisco, CA 94016" +164806,34in Ultrawide Monitor,1,379.99,02/16/19 21:44,"729 Johnson St, New York City, NY 10001" +164807,Apple Airpods Headphones,1,150,02/19/19 10:38,"650 4th St, San Francisco, CA 94016" +164808,Lightning Charging Cable,1,14.95,02/21/19 14:29,"653 Jackson St, Atlanta, GA 30301" +164809,Google Phone,1,600,02/13/19 21:09,"155 7th St, New York City, NY 10001" +164810,27in FHD Monitor,1,149.99,02/20/19 22:30,"219 9th St, Boston, MA 02215" +164811,AAA Batteries (4-pack),1,2.99,02/05/19 14:57,"514 Lincoln St, Los Angeles, CA 90001" +164812,Macbook Pro Laptop,1,1700,02/13/19 16:35,"974 Jefferson St, New York City, NY 10001" +164813,ThinkPad Laptop,1,999.99,02/11/19 00:34,"21 Sunset St, Dallas, TX 75001" +164814,AA Batteries (4-pack),1,3.84,02/20/19 20:41,"389 Elm St, San Francisco, CA 94016" +164815,iPhone,1,700,02/21/19 12:21,"988 10th St, Seattle, WA 98101" +164816,iPhone,1,700,02/13/19 12:08,"568 Wilson St, Boston, MA 02215" +164816,Lightning Charging Cable,1,14.95,02/13/19 12:08,"568 Wilson St, Boston, MA 02215" +164817,Wired Headphones,2,11.99,02/12/19 21:54,"162 Hill St, Austin, TX 73301" +164818,AAA Batteries (4-pack),1,2.99,02/11/19 22:14,"804 Cedar St, Los Angeles, CA 90001" +164819,Lightning Charging Cable,2,14.95,02/15/19 12:05,"554 Highland St, New York City, NY 10001" +164820,Bose SoundSport Headphones,1,99.99,02/15/19 12:27,"950 River St, Dallas, TX 75001" +164821,Macbook Pro Laptop,1,1700,02/23/19 08:02,"316 Meadow St, Los Angeles, CA 90001" +164822,iPhone,1,700,02/10/19 11:50,"32 Spruce St, Atlanta, GA 30301" +164823,AA Batteries (4-pack),1,3.84,02/17/19 19:51,"312 11th St, Seattle, WA 98101" +164824,Lightning Charging Cable,1,14.95,02/24/19 02:49,"764 River St, Los Angeles, CA 90001" +164825,iPhone,1,700,02/23/19 13:32,"372 4th St, New York City, NY 10001" +164826,Vareebadd Phone,1,400,02/11/19 18:09,"865 7th St, New York City, NY 10001" +164827,AA Batteries (4-pack),1,3.84,02/12/19 23:35,"780 5th St, Atlanta, GA 30301" +164828,Lightning Charging Cable,1,14.95,02/21/19 12:20,"58 Park St, Los Angeles, CA 90001" +164829,Flatscreen TV,1,300,02/24/19 09:15,"773 11th St, Portland, OR 97035" +164830,ThinkPad Laptop,1,999.99,02/16/19 12:45,"53 Sunset St, Seattle, WA 98101" +164831,Wired Headphones,2,11.99,02/05/19 19:50,"586 Chestnut St, New York City, NY 10001" +164832,AAA Batteries (4-pack),1,2.99,02/07/19 12:54,"790 South St, New York City, NY 10001" +164833,AAA Batteries (4-pack),1,2.99,02/26/19 07:57,"36 Pine St, Portland, OR 97035" +164834,Google Phone,1,600,02/15/19 12:00,"250 Dogwood St, Dallas, TX 75001" +164835,USB-C Charging Cable,1,11.95,02/25/19 09:06,"132 Jackson St, San Francisco, CA 94016" +164836,AAA Batteries (4-pack),1,2.99,02/20/19 12:26,"631 Adams St, San Francisco, CA 94016" +164837,ThinkPad Laptop,1,999.99,02/28/19 10:40,"834 Willow St, Seattle, WA 98101" +164838,AA Batteries (4-pack),1,3.84,02/09/19 17:36,"766 Johnson St, Los Angeles, CA 90001" +164839,USB-C Charging Cable,1,11.95,02/18/19 04:25,"322 Wilson St, Austin, TX 73301" +164840,27in 4K Gaming Monitor,1,389.99,02/24/19 22:23,"276 Hickory St, Atlanta, GA 30301" +164841,Lightning Charging Cable,1,14.95,02/04/19 17:07,"284 Hill St, Los Angeles, CA 90001" +164842,AAA Batteries (4-pack),1,2.99,02/05/19 11:26,"821 Cedar St, Portland, ME 04101" +164843,AA Batteries (4-pack),1,3.84,02/07/19 17:04,"534 Jefferson St, San Francisco, CA 94016" +164844,USB-C Charging Cable,1,11.95,02/09/19 09:04,"613 Center St, New York City, NY 10001" +164845,27in 4K Gaming Monitor,1,389.99,02/14/19 01:26,"696 11th St, San Francisco, CA 94016" +164846,Bose SoundSport Headphones,1,99.99,02/01/19 16:33,"628 Sunset St, Atlanta, GA 30301" +164847,USB-C Charging Cable,1,11.95,02/11/19 20:42,"676 13th St, Austin, TX 73301" +164848,USB-C Charging Cable,1,11.95,02/16/19 15:53,"792 Johnson St, San Francisco, CA 94016" +164849,Lightning Charging Cable,1,14.95,02/28/19 04:21,"161 Center St, Portland, OR 97035" +164850,ThinkPad Laptop,1,999.99,02/08/19 17:52,"33 Ridge St, Boston, MA 02215" +164851,34in Ultrawide Monitor,1,379.99,02/08/19 19:53,"478 Meadow St, Portland, OR 97035" +164852,iPhone,1,700,02/03/19 19:25,"75 8th St, New York City, NY 10001" +164853,Wired Headphones,1,11.99,02/18/19 18:59,"998 Washington St, Los Angeles, CA 90001" +164854,27in FHD Monitor,1,149.99,02/06/19 14:24,"725 Dogwood St, Portland, ME 04101" +164855,Wired Headphones,1,11.99,02/10/19 20:57,"866 Forest St, Atlanta, GA 30301" +164856,20in Monitor,1,109.99,02/22/19 04:40,"326 South St, San Francisco, CA 94016" +164857,Macbook Pro Laptop,1,1700,02/05/19 08:30,"957 13th St, San Francisco, CA 94016" +164858,USB-C Charging Cable,1,11.95,02/20/19 10:11,"773 Hickory St, San Francisco, CA 94016" +164859,Flatscreen TV,1,300,02/23/19 09:15,"555 Walnut St, Los Angeles, CA 90001" +164860,AA Batteries (4-pack),3,3.84,02/19/19 09:17,"270 Meadow St, Seattle, WA 98101" +164861,Flatscreen TV,1,300,02/28/19 20:50,"114 8th St, Atlanta, GA 30301" +164862,USB-C Charging Cable,1,11.95,02/23/19 11:23,"852 Jackson St, Atlanta, GA 30301" +164863,AA Batteries (4-pack),1,3.84,02/04/19 23:17,"682 12th St, Seattle, WA 98101" +164864,USB-C Charging Cable,1,11.95,02/11/19 09:42,"669 12th St, San Francisco, CA 94016" +164865,USB-C Charging Cable,1,11.95,02/18/19 16:24,"334 8th St, Portland, OR 97035" +164866,USB-C Charging Cable,1,11.95,02/05/19 12:21,"77 Pine St, Austin, TX 73301" +164867,AA Batteries (4-pack),1,3.84,02/15/19 13:18,"519 Spruce St, Los Angeles, CA 90001" +164868,iPhone,1,700,02/09/19 11:40,"395 Walnut St, Atlanta, GA 30301" +164869,Wired Headphones,1,11.99,02/13/19 12:36,"97 Church St, Austin, TX 73301" +164870,AAA Batteries (4-pack),1,2.99,02/18/19 14:27,"572 14th St, San Francisco, CA 94016" +164871,USB-C Charging Cable,1,11.95,02/11/19 12:12,"267 Johnson St, San Francisco, CA 94016" +164872,Apple Airpods Headphones,1,150,02/06/19 07:56,"597 Main St, San Francisco, CA 94016" +164873,AA Batteries (4-pack),1,3.84,02/10/19 11:56,"203 Elm St, New York City, NY 10001" +164874,Apple Airpods Headphones,1,150,02/20/19 21:11,"898 5th St, Los Angeles, CA 90001" +164875,Lightning Charging Cable,1,14.95,02/10/19 13:52,"761 Ridge St, New York City, NY 10001" +164876,AAA Batteries (4-pack),2,2.99,02/11/19 16:00,"579 9th St, San Francisco, CA 94016" +164877,Wired Headphones,1,11.99,02/28/19 08:51,"86 North St, Dallas, TX 75001" +164878,Bose SoundSport Headphones,1,99.99,02/19/19 20:55,"482 Hickory St, New York City, NY 10001" +164879,Apple Airpods Headphones,1,150,02/25/19 10:05,"841 11th St, Dallas, TX 75001" +164880,27in 4K Gaming Monitor,1,389.99,02/09/19 20:54,"923 2nd St, San Francisco, CA 94016" +164881,Flatscreen TV,1,300,02/20/19 13:48,"316 4th St, Dallas, TX 75001" +164882,Lightning Charging Cable,1,14.95,02/23/19 12:54,"18 Cherry St, San Francisco, CA 94016" +164883,AA Batteries (4-pack),2,3.84,02/08/19 17:52,"753 Jefferson St, Atlanta, GA 30301" +164884,iPhone,1,700,02/11/19 15:31,"637 Church St, Boston, MA 02215" +164885,Macbook Pro Laptop,1,1700,02/06/19 18:45,"155 13th St, Boston, MA 02215" +164886,Lightning Charging Cable,1,14.95,02/06/19 19:26,"618 11th St, San Francisco, CA 94016" +164887,Apple Airpods Headphones,1,150,02/17/19 21:02,"788 8th St, Dallas, TX 75001" +164888,27in FHD Monitor,1,149.99,02/02/19 23:33,"400 Walnut St, San Francisco, CA 94016" +164889,27in 4K Gaming Monitor,1,389.99,02/11/19 19:49,"961 14th St, New York City, NY 10001" +164890,Wired Headphones,1,11.99,02/11/19 11:39,"344 10th St, Atlanta, GA 30301" +164891,USB-C Charging Cable,1,11.95,02/12/19 15:34,"354 7th St, Los Angeles, CA 90001" +164892,USB-C Charging Cable,1,11.95,02/10/19 15:31,"970 14th St, Boston, MA 02215" +164893,Lightning Charging Cable,1,14.95,02/01/19 14:20,"121 Spruce St, Atlanta, GA 30301" +164894,AA Batteries (4-pack),3,3.84,02/18/19 21:23,"34 9th St, New York City, NY 10001" +164895,AA Batteries (4-pack),1,3.84,02/09/19 20:03,"569 Park St, Atlanta, GA 30301" +164896,Flatscreen TV,1,300,02/01/19 12:35,"692 Meadow St, Portland, OR 97035" +164897,Wired Headphones,1,11.99,02/24/19 20:00,"387 Cherry St, Boston, MA 02215" +164898,Bose SoundSport Headphones,2,99.99,02/12/19 18:42,"47 West St, San Francisco, CA 94016" +164899,AA Batteries (4-pack),2,3.84,02/26/19 20:19,"236 8th St, Atlanta, GA 30301" +164900,Wired Headphones,1,11.99,02/14/19 05:23,"63 Meadow St, Atlanta, GA 30301" +164901,AAA Batteries (4-pack),1,2.99,02/24/19 17:36,"958 Lake St, San Francisco, CA 94016" +164902,Lightning Charging Cable,1,14.95,02/19/19 15:46,"538 14th St, New York City, NY 10001" +164903,USB-C Charging Cable,1,11.95,02/14/19 13:31,"977 7th St, Dallas, TX 75001" +164904,27in FHD Monitor,1,149.99,02/27/19 15:47,"83 Lakeview St, Atlanta, GA 30301" +164905,Google Phone,1,600,02/12/19 18:36,"625 Jefferson St, San Francisco, CA 94016" +164906,iPhone,1,700,02/27/19 07:15,"777 Main St, Seattle, WA 98101" +164907,27in 4K Gaming Monitor,1,389.99,02/05/19 15:39,"81 9th St, Los Angeles, CA 90001" +164908,AA Batteries (4-pack),1,3.84,02/24/19 05:30,"642 Jackson St, Portland, ME 04101" +164909,Apple Airpods Headphones,1,150,02/02/19 09:32,"455 9th St, Seattle, WA 98101" +164910,AAA Batteries (4-pack),1,2.99,02/19/19 18:35,"508 South St, Dallas, TX 75001" +164911,USB-C Charging Cable,1,11.95,02/15/19 20:32,"189 10th St, Los Angeles, CA 90001" +164912,Wired Headphones,1,11.99,02/22/19 19:10,"75 2nd St, San Francisco, CA 94016" +164913,Apple Airpods Headphones,1,150,02/20/19 11:40,"130 14th St, New York City, NY 10001" +164914,Apple Airpods Headphones,1,150,02/27/19 09:53,"702 Church St, New York City, NY 10001" +164915,Wired Headphones,1,11.99,02/03/19 14:59,"425 1st St, Atlanta, GA 30301" +164916,AA Batteries (4-pack),2,3.84,02/04/19 10:51,"249 Jefferson St, Boston, MA 02215" +164917,AA Batteries (4-pack),1,3.84,02/12/19 21:37,"875 Spruce St, San Francisco, CA 94016" +164918,AAA Batteries (4-pack),1,2.99,02/28/19 21:32,"940 6th St, Los Angeles, CA 90001" +164919,20in Monitor,1,109.99,02/10/19 04:22,"357 Adams St, San Francisco, CA 94016" +164920,Macbook Pro Laptop,1,1700,02/26/19 11:13,"888 Lakeview St, Dallas, TX 75001" +164921,AA Batteries (4-pack),2,3.84,02/21/19 11:53,"594 9th St, New York City, NY 10001" +164922,USB-C Charging Cable,1,11.95,02/05/19 21:47,"273 Maple St, Atlanta, GA 30301" +164923,ThinkPad Laptop,1,999.99,02/26/19 08:26,"564 10th St, Atlanta, GA 30301" +164924,Lightning Charging Cable,1,14.95,02/04/19 21:35,"960 Jefferson St, New York City, NY 10001" +164925,iPhone,1,700,02/02/19 22:00,"764 Washington St, San Francisco, CA 94016" +164926,Bose SoundSport Headphones,1,99.99,02/21/19 11:04,"954 1st St, San Francisco, CA 94016" +164927,Vareebadd Phone,1,400,02/28/19 17:47,"571 Wilson St, Dallas, TX 75001" +164928,Apple Airpods Headphones,1,150,02/20/19 18:27,"979 1st St, San Francisco, CA 94016" +164929,27in FHD Monitor,1,149.99,02/07/19 16:13,"493 Main St, Los Angeles, CA 90001" +164930,Wired Headphones,1,11.99,02/04/19 10:27,"105 Spruce St, Seattle, WA 98101" +164931,Google Phone,1,600,02/15/19 10:16,"731 14th St, New York City, NY 10001" +164932,USB-C Charging Cable,1,11.95,02/22/19 17:28,"705 Jackson St, Portland, OR 97035" +164933,Wired Headphones,1,11.99,02/13/19 15:22,"532 Maple St, San Francisco, CA 94016" +164934,AA Batteries (4-pack),1,3.84,02/22/19 22:37,"105 11th St, Los Angeles, CA 90001" +164935,Google Phone,1,600,02/02/19 18:48,"341 10th St, Seattle, WA 98101" +164936,Wired Headphones,1,11.99,02/23/19 21:46,"908 Sunset St, Portland, OR 97035" +164937,Lightning Charging Cable,1,14.95,02/09/19 12:33,"324 10th St, Los Angeles, CA 90001" +164938,Wired Headphones,1,11.99,02/22/19 12:04,"974 4th St, New York City, NY 10001" +164939,34in Ultrawide Monitor,1,379.99,02/15/19 01:07,"852 12th St, Los Angeles, CA 90001" +164940,Lightning Charging Cable,1,14.95,02/07/19 14:12,"61 Spruce St, Los Angeles, CA 90001" +164941,Macbook Pro Laptop,1,1700,02/11/19 20:04,"114 7th St, Los Angeles, CA 90001" +164942,Google Phone,1,600,02/17/19 15:09,"266 South St, San Francisco, CA 94016" +164943,Flatscreen TV,1,300,02/28/19 20:15,"37 Willow St, San Francisco, CA 94016" +164944,27in 4K Gaming Monitor,1,389.99,02/22/19 11:00,"990 North St, New York City, NY 10001" +164945,USB-C Charging Cable,1,11.95,02/13/19 21:52,"874 Main St, San Francisco, CA 94016" +164946,AAA Batteries (4-pack),1,2.99,02/10/19 19:34,"500 13th St, San Francisco, CA 94016" +164947,USB-C Charging Cable,1,11.95,02/28/19 18:14,"943 Lakeview St, New York City, NY 10001" +164948,AA Batteries (4-pack),1,3.84,02/10/19 11:25,"925 Washington St, Los Angeles, CA 90001" +164949,ThinkPad Laptop,1,999.99,02/07/19 12:13,"382 Johnson St, Portland, OR 97035" +164950,34in Ultrawide Monitor,1,379.99,02/02/19 07:41,"681 13th St, Dallas, TX 75001" +164951,AAA Batteries (4-pack),1,2.99,02/22/19 18:26,"84 Cherry St, Atlanta, GA 30301" +164952,USB-C Charging Cable,2,11.95,02/11/19 20:48,"228 Meadow St, Los Angeles, CA 90001" +164953,AAA Batteries (4-pack),1,2.99,02/28/19 11:26,"348 Pine St, Los Angeles, CA 90001" +164954,USB-C Charging Cable,2,11.95,02/23/19 08:01,"258 Adams St, San Francisco, CA 94016" +164955,34in Ultrawide Monitor,1,379.99,02/23/19 16:33,"781 2nd St, San Francisco, CA 94016" +164956,USB-C Charging Cable,2,11.95,02/17/19 09:02,"55 Main St, Dallas, TX 75001" +164957,Apple Airpods Headphones,1,150,02/14/19 20:12,"683 River St, San Francisco, CA 94016" +164958,USB-C Charging Cable,1,11.95,02/15/19 14:40,"782 Church St, Seattle, WA 98101" +164959,27in 4K Gaming Monitor,1,389.99,02/27/19 16:17,"872 5th St, San Francisco, CA 94016" +164960,iPhone,1,700,02/26/19 09:12,"337 West St, Los Angeles, CA 90001" +164960,Wired Headphones,1,11.99,02/26/19 09:12,"337 West St, Los Angeles, CA 90001" +164960,Wired Headphones,1,11.99,02/26/19 09:12,"337 West St, Los Angeles, CA 90001" +164961,Bose SoundSport Headphones,1,99.99,02/26/19 08:06,"520 Ridge St, San Francisco, CA 94016" +164962,Wired Headphones,2,11.99,03/01/19 00:23,"67 Maple St, Atlanta, GA 30301" +164963,Macbook Pro Laptop,1,1700,02/01/19 19:32,"495 Sunset St, Los Angeles, CA 90001" +164964,AAA Batteries (4-pack),2,2.99,02/17/19 09:54,"93 Elm St, New York City, NY 10001" +164965,Lightning Charging Cable,1,14.95,02/07/19 19:04,"671 Elm St, Seattle, WA 98101" +164966,AA Batteries (4-pack),2,3.84,02/13/19 15:31,"600 Johnson St, Boston, MA 02215" +164967,Vareebadd Phone,1,400,02/16/19 22:06,"722 4th St, Los Angeles, CA 90001" +164968,USB-C Charging Cable,1,11.95,02/25/19 11:08,"831 Hickory St, Boston, MA 02215" +164969,USB-C Charging Cable,1,11.95,02/12/19 16:54,"768 Elm St, San Francisco, CA 94016" +164970,Apple Airpods Headphones,1,150,02/16/19 21:00,"994 South St, San Francisco, CA 94016" +164971,AAA Batteries (4-pack),3,2.99,02/16/19 16:37,"567 14th St, Dallas, TX 75001" +164972,AAA Batteries (4-pack),1,2.99,02/01/19 10:15,"248 Johnson St, San Francisco, CA 94016" +164973,Flatscreen TV,1,300,02/20/19 13:21,"378 12th St, Atlanta, GA 30301" +164974,AA Batteries (4-pack),1,3.84,02/01/19 11:58,"143 Main St, San Francisco, CA 94016" +164975,34in Ultrawide Monitor,1,379.99,02/23/19 18:23,"5 10th St, New York City, NY 10001" +164976,Bose SoundSport Headphones,1,99.99,02/24/19 23:03,"405 Maple St, Boston, MA 02215" +164977,Wired Headphones,1,11.99,02/27/19 08:23,"439 4th St, San Francisco, CA 94016" +164978,Apple Airpods Headphones,1,150,02/06/19 16:33,"309 Meadow St, Los Angeles, CA 90001" +164979,Apple Airpods Headphones,1,150,02/17/19 20:55,"597 Park St, San Francisco, CA 94016" +164980,34in Ultrawide Monitor,1,379.99,02/19/19 08:54,"283 Chestnut St, Austin, TX 73301" +164981,Apple Airpods Headphones,1,150,02/19/19 18:36,"251 2nd St, Los Angeles, CA 90001" +164982,AAA Batteries (4-pack),2,2.99,02/12/19 05:13,"475 Meadow St, Austin, TX 73301" +164983,Lightning Charging Cable,1,14.95,02/10/19 22:53,"880 Meadow St, San Francisco, CA 94016" +164984,Apple Airpods Headphones,1,150,02/24/19 15:26,"483 Hickory St, San Francisco, CA 94016" +164985,Apple Airpods Headphones,1,150,02/03/19 11:07,"817 Lincoln St, Portland, ME 04101" +164986,Macbook Pro Laptop,1,1700,02/04/19 09:48,"388 11th St, Atlanta, GA 30301" +164987,34in Ultrawide Monitor,1,379.99,02/21/19 09:05,"726 Center St, Portland, OR 97035" +164988,34in Ultrawide Monitor,1,379.99,02/09/19 22:25,"701 Ridge St, Seattle, WA 98101" +164989,27in FHD Monitor,1,149.99,02/23/19 10:12,"850 11th St, Atlanta, GA 30301" +164990,Wired Headphones,1,11.99,02/24/19 00:11,"244 4th St, Boston, MA 02215" +164991,Macbook Pro Laptop,1,1700,02/09/19 01:20,"252 Jackson St, San Francisco, CA 94016" +164992,USB-C Charging Cable,1,11.95,02/21/19 12:36,"426 Jefferson St, Los Angeles, CA 90001" +164993,Lightning Charging Cable,1,14.95,02/14/19 18:52,"287 Church St, Seattle, WA 98101" +164994,Macbook Pro Laptop,1,1700,02/18/19 17:08,"606 12th St, San Francisco, CA 94016" +164995,Wired Headphones,1,11.99,02/10/19 22:50,"237 Pine St, Portland, ME 04101" +164996,Wired Headphones,1,11.99,02/06/19 08:20,"17 Hickory St, New York City, NY 10001" +164997,AA Batteries (4-pack),1,3.84,02/14/19 11:48,"66 4th St, New York City, NY 10001" +164998,27in FHD Monitor,1,149.99,02/21/19 06:38,"181 2nd St, San Francisco, CA 94016" +164999,AAA Batteries (4-pack),1,2.99,02/12/19 16:09,"124 Ridge St, Seattle, WA 98101" +165000,AA Batteries (4-pack),1,3.84,02/05/19 05:48,"75 Ridge St, Los Angeles, CA 90001" +165001,Apple Airpods Headphones,1,150,02/01/19 11:58,"953 Maple St, Los Angeles, CA 90001" +165002,Wired Headphones,1,11.99,02/11/19 22:52,"526 South St, Seattle, WA 98101" +165003,Lightning Charging Cable,1,14.95,02/02/19 15:00,"628 Adams St, Boston, MA 02215" +165004,Lightning Charging Cable,1,14.95,02/08/19 12:24,"481 Pine St, Atlanta, GA 30301" +165005,27in 4K Gaming Monitor,1,389.99,02/16/19 10:54,"591 Spruce St, Portland, OR 97035" +165006,USB-C Charging Cable,1,11.95,02/04/19 11:00,"251 8th St, Austin, TX 73301" +165007,Bose SoundSport Headphones,1,99.99,02/07/19 12:51,"382 Chestnut St, New York City, NY 10001" +165008,USB-C Charging Cable,1,11.95,02/14/19 19:57,"873 Center St, Boston, MA 02215" +165009,Bose SoundSport Headphones,1,99.99,02/22/19 20:26,"781 Lakeview St, Seattle, WA 98101" +165010,Wired Headphones,1,11.99,02/02/19 10:31,"852 West St, Los Angeles, CA 90001" +165011,USB-C Charging Cable,1,11.95,02/10/19 15:03,"127 1st St, Los Angeles, CA 90001" +165012,Apple Airpods Headphones,1,150,02/13/19 17:14,"405 Spruce St, Los Angeles, CA 90001" +165013,Bose SoundSport Headphones,1,99.99,02/24/19 10:07,"254 Wilson St, Los Angeles, CA 90001" +165014,Lightning Charging Cable,1,14.95,02/21/19 16:04,"557 12th St, San Francisco, CA 94016" +165015,27in FHD Monitor,1,149.99,02/19/19 14:44,"353 8th St, San Francisco, CA 94016" +165016,USB-C Charging Cable,1,11.95,02/06/19 20:48,"881 Maple St, Boston, MA 02215" +165017,AAA Batteries (4-pack),2,2.99,02/16/19 12:52,"431 Spruce St, Portland, OR 97035" +165018,USB-C Charging Cable,2,11.95,02/16/19 11:06,"637 Willow St, San Francisco, CA 94016" +165019,Wired Headphones,1,11.99,02/10/19 08:50,"361 Main St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +165020,Apple Airpods Headphones,1,150,02/13/19 16:10,"304 5th St, Dallas, TX 75001" +165021,USB-C Charging Cable,1,11.95,02/14/19 19:42,"277 Cherry St, Boston, MA 02215" +165022,Google Phone,1,600,02/23/19 12:45,"535 Washington St, Seattle, WA 98101" +165023,Apple Airpods Headphones,1,150,02/05/19 20:07,"11 Sunset St, Boston, MA 02215" +165024,AA Batteries (4-pack),3,3.84,02/12/19 18:59,"268 Madison St, Dallas, TX 75001" +165025,Apple Airpods Headphones,1,150,02/26/19 20:03,"991 Cherry St, San Francisco, CA 94016" +165026,AA Batteries (4-pack),1,3.84,02/07/19 12:21,"16 Chestnut St, Los Angeles, CA 90001" +165027,Lightning Charging Cable,1,14.95,02/17/19 20:37,"441 5th St, New York City, NY 10001" +165028,Google Phone,1,600,02/17/19 00:31,"759 6th St, New York City, NY 10001" +165029,Macbook Pro Laptop,1,1700,02/24/19 20:24,"308 Park St, New York City, NY 10001" +165030,AA Batteries (4-pack),1,3.84,02/24/19 12:55,"830 Lake St, San Francisco, CA 94016" +165031,AA Batteries (4-pack),1,3.84,02/17/19 19:57,"300 Church St, Los Angeles, CA 90001" +165032,iPhone,1,700,02/04/19 15:51,"584 River St, New York City, NY 10001" +165033,AA Batteries (4-pack),1,3.84,02/19/19 20:32,"878 Hill St, San Francisco, CA 94016" +165034,AAA Batteries (4-pack),2,2.99,02/09/19 12:51,"564 Walnut St, Dallas, TX 75001" +165035,AA Batteries (4-pack),2,3.84,02/02/19 08:59,"724 Maple St, New York City, NY 10001" +165035,27in 4K Gaming Monitor,1,389.99,02/02/19 08:59,"724 Maple St, New York City, NY 10001" +165036,AA Batteries (4-pack),2,3.84,02/20/19 13:37,"815 Lakeview St, Atlanta, GA 30301" +165037,Lightning Charging Cable,1,14.95,02/07/19 21:34,"234 7th St, Boston, MA 02215" +165038,AAA Batteries (4-pack),2,2.99,02/04/19 09:39,"228 Center St, Austin, TX 73301" +165039,27in FHD Monitor,1,149.99,02/17/19 16:44,"283 2nd St, Los Angeles, CA 90001" +165040,AAA Batteries (4-pack),7,2.99,02/24/19 23:39,"341 Elm St, San Francisco, CA 94016" +165041,USB-C Charging Cable,1,11.95,02/24/19 16:00,"396 Highland St, San Francisco, CA 94016" +165042,USB-C Charging Cable,1,11.95,02/03/19 03:20,"76 Jefferson St, Seattle, WA 98101" +165043,Lightning Charging Cable,1,14.95,02/06/19 10:00,"5 Spruce St, Austin, TX 73301" +165044,AAA Batteries (4-pack),1,2.99,02/03/19 01:23,"966 Willow St, San Francisco, CA 94016" +165045,Lightning Charging Cable,1,14.95,02/15/19 11:44,"115 Cedar St, San Francisco, CA 94016" +165046,Apple Airpods Headphones,1,150,02/06/19 21:00,"378 10th St, San Francisco, CA 94016" +165047,Wired Headphones,1,11.99,02/11/19 14:27,"233 South St, Portland, OR 97035" +165048,Wired Headphones,1,11.99,02/02/19 11:29,"139 1st St, Portland, OR 97035" +165049,Bose SoundSport Headphones,1,99.99,02/23/19 21:41,"531 Ridge St, San Francisco, CA 94016" +165050,Wired Headphones,1,11.99,02/07/19 20:01,"752 Johnson St, Austin, TX 73301" +165051,AA Batteries (4-pack),1,3.84,02/06/19 19:12,"61 North St, San Francisco, CA 94016" +165052,USB-C Charging Cable,1,11.95,02/24/19 13:05,"99 Lake St, Austin, TX 73301" +165053,27in FHD Monitor,1,149.99,02/23/19 09:55,"825 11th St, Los Angeles, CA 90001" +165054,Lightning Charging Cable,1,14.95,02/03/19 14:29,"240 5th St, San Francisco, CA 94016" +165055,Bose SoundSport Headphones,1,99.99,02/11/19 20:09,"465 Chestnut St, Dallas, TX 75001" +165056,Lightning Charging Cable,1,14.95,02/11/19 19:23,"486 River St, Portland, OR 97035" +165057,20in Monitor,1,109.99,02/28/19 22:18,"322 Jackson St, Los Angeles, CA 90001" +165058,27in FHD Monitor,1,149.99,02/03/19 16:55,"308 6th St, Austin, TX 73301" +165059,Wired Headphones,1,11.99,02/01/19 10:21,"325 Johnson St, Atlanta, GA 30301" +165060,27in FHD Monitor,1,149.99,02/28/19 17:39,"406 West St, Seattle, WA 98101" +165061,AAA Batteries (4-pack),1,2.99,02/25/19 17:47,"620 Lakeview St, San Francisco, CA 94016" +165062,Macbook Pro Laptop,1,1700,02/02/19 10:15,"174 Washington St, Los Angeles, CA 90001" +165063,Wired Headphones,1,11.99,02/24/19 15:01,"925 Wilson St, Boston, MA 02215" +165064,Bose SoundSport Headphones,1,99.99,02/04/19 11:39,"132 North St, Seattle, WA 98101" +165065,ThinkPad Laptop,1,999.99,02/24/19 19:56,"829 Hickory St, New York City, NY 10001" +165066,27in FHD Monitor,1,149.99,02/20/19 12:10,"49 8th St, San Francisco, CA 94016" +165067,27in FHD Monitor,1,149.99,02/23/19 22:19,"481 Jackson St, New York City, NY 10001" +165068,AA Batteries (4-pack),2,3.84,02/12/19 21:12,"648 Sunset St, Austin, TX 73301" +165069,Bose SoundSport Headphones,1,99.99,02/04/19 13:01,"933 Ridge St, San Francisco, CA 94016" +165070,iPhone,1,700,02/28/19 06:18,"337 Lake St, New York City, NY 10001" +165070,Lightning Charging Cable,1,14.95,02/28/19 06:18,"337 Lake St, New York City, NY 10001" +165071,AA Batteries (4-pack),2,3.84,02/19/19 09:09,"611 4th St, Los Angeles, CA 90001" +165072,AAA Batteries (4-pack),1,2.99,02/02/19 11:57,"848 Walnut St, Austin, TX 73301" +165073,USB-C Charging Cable,1,11.95,02/06/19 19:53,"316 13th St, Atlanta, GA 30301" +165074,27in FHD Monitor,1,149.99,02/25/19 14:09,"155 River St, Boston, MA 02215" +165075,20in Monitor,1,109.99,02/23/19 12:53,"679 Madison St, Los Angeles, CA 90001" +165076,AA Batteries (4-pack),1,3.84,02/03/19 23:29,"328 Cedar St, Los Angeles, CA 90001" +165077,USB-C Charging Cable,1,11.95,02/02/19 09:18,"206 Lakeview St, Seattle, WA 98101" +165078,27in 4K Gaming Monitor,1,389.99,02/07/19 21:36,"112 River St, Dallas, TX 75001" +165079,Apple Airpods Headphones,1,150,02/10/19 18:42,"71 11th St, San Francisco, CA 94016" +165080,Apple Airpods Headphones,1,150,02/02/19 19:30,"454 9th St, San Francisco, CA 94016" +165081,AA Batteries (4-pack),1,3.84,02/15/19 12:02,"363 Chestnut St, Seattle, WA 98101" +165082,Lightning Charging Cable,1,14.95,02/10/19 07:05,"939 Lincoln St, San Francisco, CA 94016" +165083,Apple Airpods Headphones,1,150,02/28/19 10:20,"151 Cedar St, Austin, TX 73301" +165084,Lightning Charging Cable,1,14.95,02/08/19 21:52,"337 Pine St, New York City, NY 10001" +165085,AA Batteries (4-pack),1,3.84,02/14/19 14:05,"754 2nd St, Los Angeles, CA 90001" +165086,Wired Headphones,1,11.99,02/04/19 15:38,"727 Jefferson St, San Francisco, CA 94016" +165087,USB-C Charging Cable,1,11.95,02/12/19 15:15,"854 8th St, Dallas, TX 75001" +165088,Bose SoundSport Headphones,1,99.99,02/05/19 11:33,"709 Hill St, Los Angeles, CA 90001" +165089,Apple Airpods Headphones,1,150,02/18/19 17:02,"387 Jefferson St, New York City, NY 10001" +165090,27in 4K Gaming Monitor,1,389.99,02/10/19 14:14,"584 Cherry St, Atlanta, GA 30301" +165091,USB-C Charging Cable,1,11.95,02/15/19 12:26,"992 Chestnut St, Dallas, TX 75001" +165092,Bose SoundSport Headphones,1,99.99,02/17/19 21:46,"122 Spruce St, Atlanta, GA 30301" +165093,USB-C Charging Cable,1,11.95,02/07/19 15:52,"457 11th St, Austin, TX 73301" +165094,Lightning Charging Cable,1,14.95,02/27/19 18:48,"316 2nd St, Atlanta, GA 30301" +165095,AA Batteries (4-pack),2,3.84,02/15/19 21:14,"919 Sunset St, Seattle, WA 98101" +165096,Bose SoundSport Headphones,1,99.99,02/10/19 18:11,"518 Chestnut St, Boston, MA 02215" +165097,Bose SoundSport Headphones,1,99.99,02/28/19 21:19,"571 2nd St, San Francisco, CA 94016" +165098,Wired Headphones,1,11.99,02/06/19 17:55,"844 Elm St, Boston, MA 02215" +165098,AAA Batteries (4-pack),1,2.99,02/06/19 17:55,"844 Elm St, Boston, MA 02215" +165099,Flatscreen TV,1,300,02/21/19 12:08,"520 Dogwood St, Los Angeles, CA 90001" +165100,AAA Batteries (4-pack),1,2.99,02/20/19 01:05,"409 Willow St, New York City, NY 10001" +165101,USB-C Charging Cable,1,11.95,02/25/19 21:20,"52 Johnson St, Seattle, WA 98101" +165102,USB-C Charging Cable,1,11.95,02/03/19 14:28,"280 Madison St, Boston, MA 02215" +165103,27in 4K Gaming Monitor,1,389.99,02/10/19 07:09,"928 10th St, Los Angeles, CA 90001" +165104,AA Batteries (4-pack),4,3.84,02/08/19 09:20,"733 13th St, Portland, OR 97035" +165104,USB-C Charging Cable,1,11.95,02/08/19 09:20,"733 13th St, Portland, OR 97035" +165105,Lightning Charging Cable,1,14.95,02/05/19 20:58,"575 13th St, Boston, MA 02215" +165106,AA Batteries (4-pack),2,3.84,02/11/19 19:54,"503 West St, Boston, MA 02215" +165107,Bose SoundSport Headphones,1,99.99,02/11/19 08:51,"898 Wilson St, Austin, TX 73301" +165108,iPhone,1,700,02/28/19 12:52,"343 Meadow St, Portland, OR 97035" +165109,27in FHD Monitor,1,149.99,02/25/19 17:25,"625 9th St, New York City, NY 10001" +165110,Apple Airpods Headphones,1,150,02/21/19 07:42,"153 Elm St, San Francisco, CA 94016" +165111,USB-C Charging Cable,1,11.95,02/10/19 11:37,"979 Spruce St, Portland, OR 97035" +165112,Bose SoundSport Headphones,1,99.99,02/10/19 19:38,"933 Lakeview St, New York City, NY 10001" +165113,Lightning Charging Cable,1,14.95,02/20/19 18:03,"484 Lake St, Los Angeles, CA 90001" +165114,Flatscreen TV,1,300,02/12/19 11:24,"345 Highland St, New York City, NY 10001" +165115,34in Ultrawide Monitor,1,379.99,02/27/19 10:36,"398 13th St, New York City, NY 10001" +165116,Lightning Charging Cable,1,14.95,02/12/19 20:00,"684 Madison St, New York City, NY 10001" +165117,AA Batteries (4-pack),1,3.84,02/21/19 21:51,"943 Hickory St, Los Angeles, CA 90001" +165118,AA Batteries (4-pack),1,3.84,02/05/19 16:21,"378 Jefferson St, Boston, MA 02215" +165119,Wired Headphones,1,11.99,02/02/19 13:59,"519 Hickory St, New York City, NY 10001" +165120,20in Monitor,1,109.99,02/09/19 08:43,"704 Forest St, Boston, MA 02215" +165121,AA Batteries (4-pack),1,3.84,02/21/19 14:53,"2 Dogwood St, Seattle, WA 98101" +165122,USB-C Charging Cable,2,11.95,02/28/19 14:14,"617 Forest St, Seattle, WA 98101" +165123,USB-C Charging Cable,1,11.95,02/22/19 13:16,"772 Jefferson St, San Francisco, CA 94016" +165124,Apple Airpods Headphones,1,150,02/10/19 23:16,"521 Ridge St, Atlanta, GA 30301" +165125,AA Batteries (4-pack),1,3.84,02/25/19 12:57,"384 North St, San Francisco, CA 94016" +165126,USB-C Charging Cable,1,11.95,02/03/19 14:07,"322 Pine St, Los Angeles, CA 90001" +165127,USB-C Charging Cable,1,11.95,02/21/19 12:03,"761 Sunset St, Seattle, WA 98101" +165128,27in 4K Gaming Monitor,1,389.99,02/24/19 23:41,"413 South St, San Francisco, CA 94016" +165129,iPhone,1,700,02/19/19 09:23,"690 Walnut St, Los Angeles, CA 90001" +165130,USB-C Charging Cable,1,11.95,02/27/19 21:45,"585 Center St, New York City, NY 10001" +165131,Bose SoundSport Headphones,2,99.99,02/14/19 11:47,"399 Hickory St, Austin, TX 73301" +165132,Apple Airpods Headphones,1,150,02/26/19 17:07,"668 Center St, Dallas, TX 75001" +165132,Vareebadd Phone,1,400,02/26/19 17:07,"668 Center St, Dallas, TX 75001" +165133,Lightning Charging Cable,2,14.95,02/20/19 13:30,"808 Meadow St, San Francisco, CA 94016" +165134,AA Batteries (4-pack),2,3.84,02/16/19 16:12,"166 Hickory St, Boston, MA 02215" +165135,Lightning Charging Cable,1,14.95,02/25/19 00:20,"117 11th St, Portland, OR 97035" +165136,Google Phone,1,600,02/14/19 03:32,"762 6th St, San Francisco, CA 94016" +165137,AAA Batteries (4-pack),1,2.99,02/11/19 13:03,"523 12th St, San Francisco, CA 94016" +165138,34in Ultrawide Monitor,1,379.99,02/19/19 12:14,"763 North St, Los Angeles, CA 90001" +165139,USB-C Charging Cable,1,11.95,02/05/19 23:07,"947 5th St, San Francisco, CA 94016" +165140,Flatscreen TV,1,300,02/17/19 18:46,"513 1st St, Portland, OR 97035" +165141,LG Washing Machine,1,600.0,02/08/19 16:20,"406 Willow St, Atlanta, GA 30301" +165142,Bose SoundSport Headphones,1,99.99,02/04/19 10:10,"95 Johnson St, Los Angeles, CA 90001" +165143,AAA Batteries (4-pack),1,2.99,02/05/19 17:19,"112 Wilson St, San Francisco, CA 94016" +165144,USB-C Charging Cable,1,11.95,02/09/19 06:37,"223 5th St, Seattle, WA 98101" +165145,USB-C Charging Cable,1,11.95,02/23/19 17:25,"856 13th St, Los Angeles, CA 90001" +165146,Bose SoundSport Headphones,1,99.99,02/10/19 21:56,"475 Sunset St, Atlanta, GA 30301" +165147,AAA Batteries (4-pack),1,2.99,02/07/19 20:52,"382 Spruce St, Atlanta, GA 30301" +165148,AA Batteries (4-pack),2,3.84,02/20/19 18:05,"948 Pine St, Boston, MA 02215" +165149,Bose SoundSport Headphones,1,99.99,02/28/19 11:50,"598 Maple St, Boston, MA 02215" +165150,AA Batteries (4-pack),1,3.84,02/13/19 17:20,"987 11th St, San Francisco, CA 94016" +165151,Lightning Charging Cable,1,14.95,02/10/19 15:30,"123 13th St, New York City, NY 10001" +165152,USB-C Charging Cable,1,11.95,02/26/19 12:54,"381 Center St, Seattle, WA 98101" +165153,Wired Headphones,2,11.99,02/27/19 09:50,"85 Highland St, Los Angeles, CA 90001" +165154,USB-C Charging Cable,1,11.95,02/23/19 20:22,"197 Adams St, New York City, NY 10001" +165155,AAA Batteries (4-pack),1,2.99,02/07/19 09:45,"435 Chestnut St, Austin, TX 73301" +165156,USB-C Charging Cable,1,11.95,02/15/19 15:37,"14 8th St, New York City, NY 10001" +165157,AA Batteries (4-pack),1,3.84,02/24/19 11:30,"54 7th St, Seattle, WA 98101" +165158,Wired Headphones,1,11.99,02/04/19 18:07,"843 Willow St, Atlanta, GA 30301" +165159,Flatscreen TV,1,300,02/18/19 14:53,"659 10th St, Seattle, WA 98101" +165160,iPhone,1,700,02/28/19 18:52,"879 10th St, San Francisco, CA 94016" +165160,Lightning Charging Cable,1,14.95,02/28/19 18:52,"879 10th St, San Francisco, CA 94016" +165161,Wired Headphones,1,11.99,02/13/19 09:06,"954 Jefferson St, Boston, MA 02215" +165162,AA Batteries (4-pack),2,3.84,02/27/19 11:53,"627 Wilson St, Los Angeles, CA 90001" +165163,Wired Headphones,1,11.99,02/24/19 11:06,"196 Dogwood St, Los Angeles, CA 90001" +165164,Apple Airpods Headphones,1,150,02/01/19 09:21,"636 8th St, Portland, ME 04101" +165165,27in 4K Gaming Monitor,1,389.99,02/17/19 18:22,"828 8th St, San Francisco, CA 94016" +165166,AA Batteries (4-pack),1,3.84,02/27/19 17:21,"798 Church St, Atlanta, GA 30301" +165167,Wired Headphones,1,11.99,02/28/19 19:50,"47 6th St, San Francisco, CA 94016" +165168,AAA Batteries (4-pack),1,2.99,02/08/19 16:54,"706 Dogwood St, New York City, NY 10001" +165169,ThinkPad Laptop,1,999.99,02/15/19 07:52,"727 Hickory St, Seattle, WA 98101" +165170,27in FHD Monitor,1,149.99,02/16/19 21:38,"680 Washington St, New York City, NY 10001" +165171,Lightning Charging Cable,1,14.95,02/28/19 16:19,"909 Dogwood St, Seattle, WA 98101" +165172,Wired Headphones,1,11.99,02/01/19 10:02,"322 Highland St, San Francisco, CA 94016" +165173,Bose SoundSport Headphones,1,99.99,02/04/19 23:25,"202 Wilson St, Los Angeles, CA 90001" +165174,Macbook Pro Laptop,1,1700,02/16/19 18:01,"781 Wilson St, Los Angeles, CA 90001" +165175,Apple Airpods Headphones,1,150,02/21/19 16:42,"203 Adams St, Boston, MA 02215" +165176,Wired Headphones,1,11.99,02/15/19 17:03,"221 River St, Dallas, TX 75001" +165177,AAA Batteries (4-pack),1,2.99,02/28/19 18:54,"131 14th St, Seattle, WA 98101" +165178,USB-C Charging Cable,1,11.95,02/19/19 09:49,"294 6th St, San Francisco, CA 94016" +165179,AA Batteries (4-pack),1,3.84,02/15/19 15:30,"89 Cherry St, San Francisco, CA 94016" +165180,Apple Airpods Headphones,1,150,02/11/19 18:56,"273 2nd St, Portland, ME 04101" +165181,Wired Headphones,1,11.99,02/17/19 11:35,"647 Meadow St, New York City, NY 10001" +165182,Lightning Charging Cable,1,14.95,02/20/19 14:03,"335 Cherry St, New York City, NY 10001" +165183,Vareebadd Phone,1,400,02/14/19 16:41,"342 8th St, San Francisco, CA 94016" +165184,Flatscreen TV,1,300,02/23/19 13:52,"193 West St, Atlanta, GA 30301" +165185,Google Phone,1,600,02/04/19 14:59,"836 Dogwood St, Boston, MA 02215" +165186,AAA Batteries (4-pack),1,2.99,02/12/19 11:11,"295 Hill St, San Francisco, CA 94016" +165187,Wired Headphones,1,11.99,02/19/19 15:16,"498 Forest St, San Francisco, CA 94016" +165188,Bose SoundSport Headphones,1,99.99,02/06/19 23:24,"39 8th St, San Francisco, CA 94016" +165189,USB-C Charging Cable,1,11.95,02/13/19 01:59,"737 Madison St, Seattle, WA 98101" +165190,AAA Batteries (4-pack),1,2.99,02/03/19 17:34,"23 1st St, Portland, OR 97035" +165191,Wired Headphones,1,11.99,02/18/19 17:28,"837 Church St, New York City, NY 10001" +165191,Bose SoundSport Headphones,1,99.99,02/18/19 17:28,"837 Church St, New York City, NY 10001" +165192,Wired Headphones,1,11.99,02/17/19 19:56,"228 Lakeview St, San Francisco, CA 94016" +165193,AAA Batteries (4-pack),2,2.99,02/17/19 08:19,"193 Elm St, Portland, OR 97035" +165194,ThinkPad Laptop,1,999.99,02/19/19 17:01,"872 Spruce St, Los Angeles, CA 90001" +165195,Apple Airpods Headphones,1,150,02/14/19 23:49,"703 Park St, New York City, NY 10001" +165196,Macbook Pro Laptop,1,1700,02/17/19 22:06,"847 9th St, New York City, NY 10001" +165197,27in FHD Monitor,1,149.99,02/06/19 18:31,"785 Willow St, New York City, NY 10001" +165198,Wired Headphones,1,11.99,02/11/19 11:13,"543 Hill St, San Francisco, CA 94016" +165199,Apple Airpods Headphones,1,150,02/21/19 18:45,"80 Pine St, San Francisco, CA 94016" +165200,Apple Airpods Headphones,1,150,02/08/19 09:24,"735 Elm St, Portland, OR 97035" +165201,Bose SoundSport Headphones,1,99.99,02/15/19 08:50,"959 Cedar St, San Francisco, CA 94016" +165202,AAA Batteries (4-pack),1,2.99,02/03/19 12:39,"400 Ridge St, Seattle, WA 98101" +165203,27in 4K Gaming Monitor,1,389.99,02/12/19 01:46,"506 13th St, New York City, NY 10001" +165204,AAA Batteries (4-pack),1,2.99,02/01/19 11:43,"361 Wilson St, Seattle, WA 98101" +165204,USB-C Charging Cable,1,11.95,02/01/19 11:43,"361 Wilson St, Seattle, WA 98101" +165205,Flatscreen TV,1,300,02/02/19 19:26,"626 12th St, San Francisco, CA 94016" +165206,USB-C Charging Cable,1,11.95,02/17/19 13:35,"328 Park St, San Francisco, CA 94016" +165207,Vareebadd Phone,1,400,02/22/19 11:59,"888 Hickory St, New York City, NY 10001" +165207,USB-C Charging Cable,1,11.95,02/22/19 11:59,"888 Hickory St, New York City, NY 10001" +165207,AAA Batteries (4-pack),2,2.99,02/22/19 11:59,"888 Hickory St, New York City, NY 10001" +165208,Bose SoundSport Headphones,1,99.99,02/12/19 12:44,"293 South St, Atlanta, GA 30301" +165209,AA Batteries (4-pack),1,3.84,02/09/19 09:44,"203 Johnson St, Los Angeles, CA 90001" +165210,AAA Batteries (4-pack),3,2.99,02/28/19 12:53,"284 13th St, San Francisco, CA 94016" +165211,Bose SoundSport Headphones,1,99.99,02/19/19 13:47,"786 Hill St, New York City, NY 10001" +165212,Apple Airpods Headphones,1,150,02/02/19 22:09,"627 Walnut St, San Francisco, CA 94016" +165213,AAA Batteries (4-pack),1,2.99,02/19/19 23:13,"90 Hill St, Austin, TX 73301" +165214,AAA Batteries (4-pack),1,2.99,02/14/19 19:19,"910 River St, Los Angeles, CA 90001" +165215,27in 4K Gaming Monitor,1,389.99,02/19/19 01:00,"837 Elm St, Los Angeles, CA 90001" +165216,USB-C Charging Cable,1,11.95,02/10/19 12:42,"847 Spruce St, Austin, TX 73301" +165217,AA Batteries (4-pack),1,3.84,02/16/19 07:36,"973 Jefferson St, Los Angeles, CA 90001" +165218,AAA Batteries (4-pack),3,2.99,02/14/19 10:41,"302 Jefferson St, Seattle, WA 98101" +165219,27in 4K Gaming Monitor,1,389.99,02/19/19 06:17,"260 12th St, Boston, MA 02215" +165220,USB-C Charging Cable,1,11.95,02/28/19 19:58,"499 Madison St, New York City, NY 10001" +165221,Wired Headphones,1,11.99,02/03/19 21:54,"4 Hickory St, Atlanta, GA 30301" +165222,Bose SoundSport Headphones,1,99.99,02/25/19 18:01,"943 1st St, Austin, TX 73301" +165223,Google Phone,1,600,02/05/19 17:52,"359 Elm St, Boston, MA 02215" +165224,Apple Airpods Headphones,1,150,02/19/19 13:05,"455 Dogwood St, San Francisco, CA 94016" +165225,AAA Batteries (4-pack),1,2.99,02/26/19 03:42,"707 Maple St, San Francisco, CA 94016" +165226,USB-C Charging Cable,1,11.95,02/05/19 18:42,"859 10th St, New York City, NY 10001" +165226,Lightning Charging Cable,1,14.95,02/05/19 18:42,"859 10th St, New York City, NY 10001" +165227,Flatscreen TV,1,300,02/20/19 14:11,"398 South St, New York City, NY 10001" +165228,Apple Airpods Headphones,1,150,02/22/19 20:13,"792 River St, Boston, MA 02215" +165229,Macbook Pro Laptop,1,1700,02/10/19 12:42,"856 Lincoln St, Seattle, WA 98101" +165230,Lightning Charging Cable,1,14.95,02/22/19 10:34,"469 Washington St, San Francisco, CA 94016" +165231,iPhone,1,700,02/21/19 05:59,"241 Elm St, San Francisco, CA 94016" +165232,Apple Airpods Headphones,1,150,02/28/19 20:58,"397 Lake St, Los Angeles, CA 90001" +165233,Flatscreen TV,1,300,02/18/19 14:32,"786 4th St, Seattle, WA 98101" +165234,Macbook Pro Laptop,1,1700,02/11/19 21:23,"66 Adams St, Boston, MA 02215" +165235,Wired Headphones,1,11.99,02/09/19 14:27,"513 Walnut St, San Francisco, CA 94016" +165236,27in FHD Monitor,1,149.99,02/06/19 20:01,"639 Church St, San Francisco, CA 94016" +165237,AA Batteries (4-pack),1,3.84,02/17/19 08:20,"13 Park St, New York City, NY 10001" +165238,Apple Airpods Headphones,1,150,02/28/19 10:18,"753 River St, Dallas, TX 75001" +165239,Wired Headphones,1,11.99,02/18/19 10:34,"609 Washington St, San Francisco, CA 94016" +165240,USB-C Charging Cable,1,11.95,02/19/19 19:17,"689 7th St, Boston, MA 02215" +165241,Bose SoundSport Headphones,1,99.99,02/24/19 14:20,"695 Dogwood St, Dallas, TX 75001" +165242,Bose SoundSport Headphones,1,99.99,02/13/19 13:09,"631 Jefferson St, San Francisco, CA 94016" +165243,USB-C Charging Cable,1,11.95,02/02/19 11:35,"987 14th St, San Francisco, CA 94016" +165244,Wired Headphones,1,11.99,02/21/19 09:14,"31 North St, New York City, NY 10001" +165245,iPhone,1,700,02/11/19 17:20,"319 Hill St, New York City, NY 10001" +165246,Macbook Pro Laptop,1,1700,02/20/19 19:44,"736 4th St, New York City, NY 10001" +165247,AA Batteries (4-pack),1,3.84,02/11/19 21:22,"156 Willow St, San Francisco, CA 94016" +165248,Apple Airpods Headphones,1,150,02/03/19 10:36,"713 5th St, Los Angeles, CA 90001" +165249,27in FHD Monitor,1,149.99,02/07/19 17:45,"79 Jefferson St, New York City, NY 10001" +165250,AAA Batteries (4-pack),3,2.99,02/26/19 10:51,"993 Washington St, San Francisco, CA 94016" +165251,Apple Airpods Headphones,1,150,02/24/19 22:31,"218 Walnut St, Los Angeles, CA 90001" +165252,USB-C Charging Cable,2,11.95,02/10/19 21:04,"851 11th St, San Francisco, CA 94016" +165253,27in 4K Gaming Monitor,1,389.99,02/04/19 13:49,"375 Chestnut St, Seattle, WA 98101" +165254,AAA Batteries (4-pack),1,2.99,02/26/19 09:38,"955 Chestnut St, Boston, MA 02215" +165255,Macbook Pro Laptop,1,1700,02/19/19 22:41,"197 9th St, New York City, NY 10001" +165256,USB-C Charging Cable,2,11.95,02/06/19 16:23,"84 2nd St, Boston, MA 02215" +165257,Google Phone,1,600,02/18/19 15:03,"281 Willow St, Los Angeles, CA 90001" +165258,Bose SoundSport Headphones,1,99.99,02/16/19 21:50,"738 Dogwood St, Atlanta, GA 30301" +165259,AAA Batteries (4-pack),1,2.99,02/08/19 01:27,"326 Highland St, Atlanta, GA 30301" +165260,Lightning Charging Cable,1,14.95,02/08/19 13:59,"216 West St, San Francisco, CA 94016" +165261,AAA Batteries (4-pack),1,2.99,02/14/19 15:29,"125 Walnut St, Atlanta, GA 30301" +165262,20in Monitor,1,109.99,02/06/19 16:34,"43 Lincoln St, Los Angeles, CA 90001" +165263,Lightning Charging Cable,1,14.95,02/26/19 13:22,"442 Cherry St, New York City, NY 10001" +165264,Bose SoundSport Headphones,1,99.99,02/26/19 14:27,"786 Washington St, Austin, TX 73301" +165265,Google Phone,1,600,02/02/19 12:00,"914 Lincoln St, Boston, MA 02215" +165266,Lightning Charging Cable,1,14.95,02/15/19 20:00,"381 2nd St, Los Angeles, CA 90001" +165267,USB-C Charging Cable,2,11.95,02/11/19 14:16,"233 Sunset St, Boston, MA 02215" +165268,Lightning Charging Cable,1,14.95,02/26/19 14:18,"164 12th St, Seattle, WA 98101" +165269,Wired Headphones,1,11.99,02/23/19 11:12,"607 Chestnut St, Los Angeles, CA 90001" +165270,AAA Batteries (4-pack),1,2.99,02/24/19 06:12,"898 Lake St, Boston, MA 02215" +165271,27in FHD Monitor,1,149.99,02/06/19 22:24,"515 Pine St, Seattle, WA 98101" +165272,Bose SoundSport Headphones,1,99.99,02/04/19 20:31,"251 Meadow St, San Francisco, CA 94016" +165273,Apple Airpods Headphones,1,150,02/15/19 09:26,"383 5th St, Dallas, TX 75001" +165274,AA Batteries (4-pack),2,3.84,03/01/19 02:16,"449 13th St, San Francisco, CA 94016" +165275,Google Phone,1,600,02/25/19 23:21,"597 Lincoln St, Atlanta, GA 30301" +165275,USB-C Charging Cable,1,11.95,02/25/19 23:21,"597 Lincoln St, Atlanta, GA 30301" +165276,ThinkPad Laptop,1,999.99,02/14/19 17:47,"168 Forest St, Atlanta, GA 30301" +165276,Apple Airpods Headphones,1,150,02/14/19 17:47,"168 Forest St, Atlanta, GA 30301" +165277,Lightning Charging Cable,1,14.95,02/17/19 18:14,"664 9th St, New York City, NY 10001" +165278,USB-C Charging Cable,1,11.95,02/14/19 10:35,"377 8th St, New York City, NY 10001" +165279,Lightning Charging Cable,1,14.95,02/05/19 16:39,"258 7th St, Los Angeles, CA 90001" +165280,USB-C Charging Cable,1,11.95,02/26/19 12:43,"984 Highland St, New York City, NY 10001" +165281,USB-C Charging Cable,1,11.95,02/24/19 04:18,"900 Jefferson St, Austin, TX 73301" +165282,AA Batteries (4-pack),2,3.84,02/13/19 10:21,"669 6th St, Austin, TX 73301" +165283,Apple Airpods Headphones,1,150,02/15/19 16:52,"358 Willow St, New York City, NY 10001" +165284,Flatscreen TV,1,300,02/12/19 20:17,"686 12th St, San Francisco, CA 94016" +165285,20in Monitor,1,109.99,02/28/19 23:56,"742 Hickory St, Atlanta, GA 30301" +165286,USB-C Charging Cable,2,11.95,02/23/19 11:08,"36 7th St, Dallas, TX 75001" +165287,ThinkPad Laptop,1,999.99,02/06/19 12:21,"215 13th St, San Francisco, CA 94016" +165288,Apple Airpods Headphones,1,150,02/06/19 10:51,"285 Park St, Atlanta, GA 30301" +165289,34in Ultrawide Monitor,1,379.99,02/13/19 01:20,"906 Maple St, Los Angeles, CA 90001" +165290,Google Phone,1,600,02/01/19 13:30,"573 13th St, San Francisco, CA 94016" +165290,USB-C Charging Cable,1,11.95,02/01/19 13:30,"573 13th St, San Francisco, CA 94016" +165291,USB-C Charging Cable,2,11.95,02/23/19 19:58,"955 1st St, New York City, NY 10001" +165292,Apple Airpods Headphones,1,150,02/17/19 18:50,"970 Elm St, Seattle, WA 98101" +165293,USB-C Charging Cable,1,11.95,02/10/19 16:36,"26 5th St, Los Angeles, CA 90001" +165294,Apple Airpods Headphones,1,150,02/03/19 14:21,"49 South St, Atlanta, GA 30301" +165295,USB-C Charging Cable,1,11.95,02/27/19 09:39,"839 Ridge St, Los Angeles, CA 90001" +165296,ThinkPad Laptop,1,999.99,02/28/19 22:46,"562 Madison St, New York City, NY 10001" +165297,Lightning Charging Cable,1,14.95,02/03/19 13:04,"357 Jackson St, San Francisco, CA 94016" +165298,Macbook Pro Laptop,1,1700,02/09/19 07:12,"667 Jackson St, Portland, OR 97035" +165299,iPhone,1,700,02/16/19 11:31,"790 11th St, Seattle, WA 98101" +165299,Lightning Charging Cable,1,14.95,02/16/19 11:31,"790 11th St, Seattle, WA 98101" +165300,Wired Headphones,1,11.99,02/21/19 22:05,"828 Dogwood St, San Francisco, CA 94016" +165301,iPhone,1,700,02/06/19 16:46,"880 Walnut St, Los Angeles, CA 90001" +165302,AAA Batteries (4-pack),2,2.99,02/25/19 22:27,"768 Church St, New York City, NY 10001" +165303,Wired Headphones,1,11.99,02/08/19 21:32,"347 Main St, New York City, NY 10001" +165304,AAA Batteries (4-pack),1,2.99,02/22/19 18:34,"69 10th St, Boston, MA 02215" +165305,Bose SoundSport Headphones,1,99.99,02/19/19 16:38,"111 Forest St, San Francisco, CA 94016" +165306,Wired Headphones,1,11.99,02/21/19 22:53,"412 River St, New York City, NY 10001" +165306,Apple Airpods Headphones,1,150,02/21/19 22:53,"412 River St, New York City, NY 10001" +165307,AAA Batteries (4-pack),2,2.99,02/08/19 11:24,"182 Jackson St, Boston, MA 02215" +165308,Vareebadd Phone,1,400,02/17/19 11:45,"736 Washington St, Los Angeles, CA 90001" +165309,USB-C Charging Cable,1,11.95,02/19/19 00:03,"89 River St, Portland, ME 04101" +165310,Lightning Charging Cable,1,14.95,02/11/19 17:20,"501 7th St, New York City, NY 10001" +165311,USB-C Charging Cable,1,11.95,02/21/19 09:02,"791 Ridge St, Portland, OR 97035" +165312,Wired Headphones,1,11.99,02/24/19 16:26,"640 Lincoln St, San Francisco, CA 94016" +165313,USB-C Charging Cable,1,11.95,02/24/19 21:16,"835 Meadow St, Portland, OR 97035" +165314,AAA Batteries (4-pack),1,2.99,02/11/19 21:23,"890 Cedar St, Seattle, WA 98101" +165315,AAA Batteries (4-pack),1,2.99,02/16/19 12:08,"515 Hickory St, New York City, NY 10001" +165316,34in Ultrawide Monitor,1,379.99,02/20/19 14:49,"417 Pine St, New York City, NY 10001" +165317,USB-C Charging Cable,1,11.95,02/21/19 12:35,"463 Pine St, Boston, MA 02215" +165318,Apple Airpods Headphones,1,150,02/07/19 21:49,"135 Washington St, Los Angeles, CA 90001" +165319,AA Batteries (4-pack),1,3.84,02/07/19 12:43,"878 Church St, Austin, TX 73301" +165320,AA Batteries (4-pack),1,3.84,02/24/19 11:22,"539 11th St, Dallas, TX 75001" +165321,USB-C Charging Cable,1,11.95,02/23/19 13:18,"706 Hickory St, New York City, NY 10001" +165322,27in 4K Gaming Monitor,1,389.99,02/04/19 16:48,"666 North St, San Francisco, CA 94016" +165323,Bose SoundSport Headphones,1,99.99,02/11/19 11:10,"88 Cherry St, Los Angeles, CA 90001" +165324,AAA Batteries (4-pack),2,2.99,02/06/19 01:35,"18 Wilson St, Los Angeles, CA 90001" +165325,AAA Batteries (4-pack),1,2.99,03/01/19 00:40,"426 Center St, Los Angeles, CA 90001" +165326,USB-C Charging Cable,1,11.95,02/24/19 11:36,"346 7th St, San Francisco, CA 94016" +165327,Wired Headphones,1,11.99,02/21/19 20:31,"613 Elm St, Los Angeles, CA 90001" +165328,AA Batteries (4-pack),1,3.84,02/24/19 21:41,"366 4th St, Seattle, WA 98101" +165329,Apple Airpods Headphones,1,150,02/27/19 12:35,"524 Pine St, Atlanta, GA 30301" +165330,AA Batteries (4-pack),1,3.84,02/23/19 13:01,"646 Pine St, San Francisco, CA 94016" +165331,AAA Batteries (4-pack),1,2.99,02/05/19 18:47,"520 Madison St, Boston, MA 02215" +165332,AA Batteries (4-pack),2,3.84,02/18/19 13:58,"249 12th St, Seattle, WA 98101" +165333,20in Monitor,1,109.99,02/15/19 10:58,"882 Spruce St, San Francisco, CA 94016" +165334,Apple Airpods Headphones,1,150,02/04/19 19:56,"411 Jackson St, Dallas, TX 75001" +165335,Google Phone,1,600,02/21/19 14:38,"250 Madison St, Los Angeles, CA 90001" +165336,Wired Headphones,1,11.99,02/05/19 19:52,"35 Elm St, San Francisco, CA 94016" +165337,Lightning Charging Cable,1,14.95,02/15/19 16:10,"832 Jackson St, Atlanta, GA 30301" +165338,Apple Airpods Headphones,1,150,02/24/19 11:15,"196 Hill St, San Francisco, CA 94016" +165339,Wired Headphones,1,11.99,02/17/19 22:42,"182 North St, Austin, TX 73301" +165340,Lightning Charging Cable,1,14.95,02/13/19 09:25,"669 Dogwood St, Austin, TX 73301" +165341,AAA Batteries (4-pack),2,2.99,02/22/19 19:37,"928 5th St, Dallas, TX 75001" +165342,Wired Headphones,1,11.99,02/11/19 09:47,"109 Madison St, San Francisco, CA 94016" +165343,AAA Batteries (4-pack),2,2.99,02/22/19 21:44,"894 Hickory St, Boston, MA 02215" +165344,Wired Headphones,1,11.99,02/01/19 13:06,"601 13th St, Austin, TX 73301" +165345,ThinkPad Laptop,1,999.99,02/01/19 21:44,"582 Hill St, Boston, MA 02215" +165346,AAA Batteries (4-pack),2,2.99,02/14/19 22:25,"555 Wilson St, New York City, NY 10001" +165347,AAA Batteries (4-pack),1,2.99,02/12/19 12:46,"80 Jackson St, Portland, OR 97035" +165348,AA Batteries (4-pack),2,3.84,02/22/19 20:35,"955 Jefferson St, San Francisco, CA 94016" +165349,USB-C Charging Cable,2,11.95,02/12/19 10:15,"313 Church St, Boston, MA 02215" +165350,Apple Airpods Headphones,1,150,02/28/19 00:40,"962 Park St, New York City, NY 10001" +165351,Apple Airpods Headphones,1,150,02/14/19 20:25,"524 North St, Los Angeles, CA 90001" +165352,Macbook Pro Laptop,1,1700,02/11/19 14:00,"9 Cedar St, Atlanta, GA 30301" +165353,27in 4K Gaming Monitor,1,389.99,02/16/19 15:49,"221 River St, Seattle, WA 98101" +165354,AA Batteries (4-pack),2,3.84,02/22/19 18:06,"603 12th St, San Francisco, CA 94016" +165355,AAA Batteries (4-pack),1,2.99,02/16/19 11:05,"154 Walnut St, Los Angeles, CA 90001" +165356,AA Batteries (4-pack),1,3.84,02/09/19 15:15,"827 Pine St, Boston, MA 02215" +165357,Google Phone,1,600,02/16/19 01:07,"364 Washington St, Los Angeles, CA 90001" +165358,iPhone,1,700,02/04/19 23:42,"460 Forest St, Boston, MA 02215" +165358,Lightning Charging Cable,1,14.95,02/04/19 23:42,"460 Forest St, Boston, MA 02215" +165359,AAA Batteries (4-pack),1,2.99,02/08/19 13:26,"854 Jefferson St, New York City, NY 10001" +165360,Wired Headphones,1,11.99,02/06/19 06:29,"268 11th St, Atlanta, GA 30301" +165361,Lightning Charging Cable,1,14.95,02/16/19 12:57,"716 Center St, San Francisco, CA 94016" +165362,AA Batteries (4-pack),1,3.84,02/01/19 23:56,"661 Ridge St, San Francisco, CA 94016" +165363,AA Batteries (4-pack),1,3.84,02/12/19 15:30,"212 Jackson St, San Francisco, CA 94016" +165364,Wired Headphones,1,11.99,02/02/19 21:50,"530 2nd St, New York City, NY 10001" +165364,AA Batteries (4-pack),1,3.84,02/02/19 21:50,"530 2nd St, New York City, NY 10001" +165365,AAA Batteries (4-pack),1,2.99,02/22/19 11:35,"501 Park St, San Francisco, CA 94016" +165366,USB-C Charging Cable,1,11.95,02/26/19 11:17,"558 2nd St, Los Angeles, CA 90001" +165367,Macbook Pro Laptop,1,1700,02/04/19 14:59,"610 Madison St, Los Angeles, CA 90001" +165368,AA Batteries (4-pack),2,3.84,02/20/19 13:57,"951 Meadow St, Boston, MA 02215" +165369,Lightning Charging Cable,1,14.95,02/20/19 13:49,"92 Forest St, New York City, NY 10001" +165370,Apple Airpods Headphones,1,150,02/21/19 17:44,"449 Spruce St, Seattle, WA 98101" +165371,Apple Airpods Headphones,1,150,02/11/19 17:39,"685 Lakeview St, Los Angeles, CA 90001" +165372,AAA Batteries (4-pack),2,2.99,02/08/19 12:25,"871 North St, New York City, NY 10001" +165373,Wired Headphones,1,11.99,02/18/19 17:33,"325 Chestnut St, Los Angeles, CA 90001" +165374,Lightning Charging Cable,1,14.95,02/08/19 11:42,"338 Hill St, New York City, NY 10001" +165375,Wired Headphones,1,11.99,02/21/19 13:31,"380 Hill St, Austin, TX 73301" +165376,Wired Headphones,1,11.99,02/26/19 11:44,"341 Main St, Atlanta, GA 30301" +165377,USB-C Charging Cable,1,11.95,02/25/19 22:28,"411 12th St, Atlanta, GA 30301" +165378,LG Washing Machine,1,600.0,02/07/19 15:05,"791 8th St, Atlanta, GA 30301" +165379,Wired Headphones,1,11.99,02/27/19 14:39,"184 Spruce St, New York City, NY 10001" +165380,Lightning Charging Cable,2,14.95,02/21/19 14:55,"512 11th St, New York City, NY 10001" +165381,AA Batteries (4-pack),1,3.84,02/12/19 21:58,"707 14th St, New York City, NY 10001" +165382,Flatscreen TV,1,300,02/27/19 07:50,"756 11th St, Dallas, TX 75001" +165383,USB-C Charging Cable,1,11.95,02/04/19 22:03,"482 Dogwood St, Boston, MA 02215" +165384,Bose SoundSport Headphones,1,99.99,02/10/19 17:15,"670 Church St, Portland, OR 97035" +165385,USB-C Charging Cable,1,11.95,02/20/19 18:13,"159 Maple St, Los Angeles, CA 90001" +165386,34in Ultrawide Monitor,1,379.99,02/17/19 16:41,"704 Spruce St, Portland, OR 97035" +165387,Apple Airpods Headphones,1,150,02/22/19 15:22,"908 13th St, Los Angeles, CA 90001" +165388,AA Batteries (4-pack),1,3.84,02/09/19 23:10,"553 Maple St, Austin, TX 73301" +165389,Google Phone,1,600,02/23/19 17:14,"405 Elm St, Los Angeles, CA 90001" +165390,Lightning Charging Cable,1,14.95,02/01/19 13:23,"161 Lincoln St, Portland, OR 97035" +165391,AAA Batteries (4-pack),1,2.99,02/01/19 04:31,"644 Elm St, New York City, NY 10001" +165392,AA Batteries (4-pack),2,3.84,02/06/19 15:59,"119 North St, New York City, NY 10001" +165393,Wired Headphones,1,11.99,02/18/19 03:31,"727 Adams St, Atlanta, GA 30301" +165394,Wired Headphones,1,11.99,02/19/19 17:15,"621 Highland St, Austin, TX 73301" +165395,Apple Airpods Headphones,1,150,02/25/19 21:00,"804 11th St, Los Angeles, CA 90001" +165396,Apple Airpods Headphones,1,150,02/23/19 23:33,"13 Sunset St, Los Angeles, CA 90001" +165397,LG Washing Machine,1,600.0,02/17/19 13:04,"966 Pine St, Los Angeles, CA 90001" +165398,Wired Headphones,1,11.99,02/10/19 21:43,"935 Pine St, Seattle, WA 98101" +165398,AAA Batteries (4-pack),3,2.99,02/10/19 21:43,"935 Pine St, Seattle, WA 98101" +165399,Lightning Charging Cable,1,14.95,02/24/19 18:10,"512 11th St, New York City, NY 10001" +165400,20in Monitor,1,109.99,02/25/19 14:04,"538 Cedar St, San Francisco, CA 94016" +165401,Bose SoundSport Headphones,1,99.99,02/03/19 00:14,"648 2nd St, Austin, TX 73301" +165402,AAA Batteries (4-pack),2,2.99,02/08/19 14:00,"199 Church St, Dallas, TX 75001" +165403,Lightning Charging Cable,1,14.95,02/07/19 12:46,"342 8th St, Los Angeles, CA 90001" +165404,AAA Batteries (4-pack),2,2.99,02/02/19 14:29,"526 River St, New York City, NY 10001" +165405,27in 4K Gaming Monitor,1,389.99,02/03/19 00:42,"98 Maple St, New York City, NY 10001" +165406,AAA Batteries (4-pack),1,2.99,02/11/19 11:32,"204 14th St, Boston, MA 02215" +165406,27in 4K Gaming Monitor,1,389.99,02/11/19 11:32,"204 14th St, Boston, MA 02215" +165407,AA Batteries (4-pack),1,3.84,02/16/19 00:53,"455 Dogwood St, New York City, NY 10001" +165408,AA Batteries (4-pack),1,3.84,02/10/19 21:02,"598 12th St, New York City, NY 10001" +165409,Bose SoundSport Headphones,1,99.99,02/22/19 12:04,"589 South St, Seattle, WA 98101" +165410,AAA Batteries (4-pack),2,2.99,02/25/19 22:48,"336 Elm St, San Francisco, CA 94016" +165411,Bose SoundSport Headphones,2,99.99,02/07/19 16:23,"220 Forest St, San Francisco, CA 94016" +165412,USB-C Charging Cable,1,11.95,02/09/19 14:25,"675 Hill St, Dallas, TX 75001" +165413,Wired Headphones,2,11.99,02/25/19 09:46,"358 Jefferson St, Boston, MA 02215" +165414,27in 4K Gaming Monitor,1,389.99,02/19/19 19:14,"807 Park St, Atlanta, GA 30301" +165415,LG Dryer,1,600.0,02/28/19 21:12,"323 6th St, Los Angeles, CA 90001" +165416,34in Ultrawide Monitor,1,379.99,02/18/19 14:10,"980 8th St, San Francisco, CA 94016" +165417,USB-C Charging Cable,1,11.95,02/18/19 16:36,"16 Washington St, Austin, TX 73301" +165418,Lightning Charging Cable,1,14.95,02/21/19 01:52,"232 Dogwood St, San Francisco, CA 94016" +165418,AAA Batteries (4-pack),2,2.99,02/21/19 01:52,"232 Dogwood St, San Francisco, CA 94016" +165419,USB-C Charging Cable,1,11.95,02/23/19 20:02,"896 Adams St, Austin, TX 73301" +165420,AA Batteries (4-pack),1,3.84,02/16/19 10:13,"27 7th St, Seattle, WA 98101" +165421,AAA Batteries (4-pack),3,2.99,02/16/19 05:20,"385 Forest St, Los Angeles, CA 90001" +165422,AAA Batteries (4-pack),1,2.99,02/08/19 22:11,"710 Lakeview St, Seattle, WA 98101" +165423,AAA Batteries (4-pack),4,2.99,02/06/19 08:31,"519 8th St, San Francisco, CA 94016" +165424,USB-C Charging Cable,1,11.95,02/28/19 13:44,"813 9th St, Austin, TX 73301" +165425,Apple Airpods Headphones,1,150,02/05/19 15:20,"372 6th St, San Francisco, CA 94016" +165426,Macbook Pro Laptop,1,1700,02/06/19 22:59,"296 9th St, Atlanta, GA 30301" +165427,AA Batteries (4-pack),1,3.84,02/25/19 20:18,"413 Spruce St, San Francisco, CA 94016" +165428,Lightning Charging Cable,1,14.95,02/12/19 14:08,"356 13th St, Portland, OR 97035" +165429,27in FHD Monitor,1,149.99,02/16/19 14:01,"910 Lakeview St, New York City, NY 10001" +165430,Bose SoundSport Headphones,1,99.99,02/24/19 11:33,"804 Adams St, New York City, NY 10001" +165431,AA Batteries (4-pack),1,3.84,02/19/19 10:47,"43 Forest St, Seattle, WA 98101" +165432,27in FHD Monitor,1,149.99,02/25/19 12:03,"801 Cedar St, Los Angeles, CA 90001" +165433,Flatscreen TV,1,300,02/24/19 01:28,"879 Jackson St, Boston, MA 02215" +165434,20in Monitor,1,109.99,02/21/19 09:15,"593 Pine St, Seattle, WA 98101" +165435,AAA Batteries (4-pack),1,2.99,02/17/19 06:25,"511 Lincoln St, Los Angeles, CA 90001" +165436,Lightning Charging Cable,1,14.95,02/20/19 22:16,"733 South St, Boston, MA 02215" +165437,27in FHD Monitor,1,149.99,02/18/19 08:25,"484 Chestnut St, Los Angeles, CA 90001" +165438,ThinkPad Laptop,1,999.99,02/20/19 14:06,"490 Sunset St, Los Angeles, CA 90001" +165439,Bose SoundSport Headphones,1,99.99,02/16/19 20:14,"782 11th St, Los Angeles, CA 90001" +165440,AAA Batteries (4-pack),1,2.99,02/12/19 11:18,"989 5th St, Seattle, WA 98101" +165441,Wired Headphones,1,11.99,02/02/19 00:47,"938 Dogwood St, Atlanta, GA 30301" +165442,Apple Airpods Headphones,1,150,02/22/19 22:22,"761 Main St, New York City, NY 10001" +165443,USB-C Charging Cable,1,11.95,02/09/19 14:07,"408 Adams St, New York City, NY 10001" +165444,Macbook Pro Laptop,1,1700,02/23/19 01:35,"606 Wilson St, San Francisco, CA 94016" +165445,USB-C Charging Cable,1,11.95,02/26/19 11:32,"935 Hill St, New York City, NY 10001" +165446,Lightning Charging Cable,1,14.95,02/21/19 10:05,"844 Lakeview St, Seattle, WA 98101" +165447,iPhone,1,700,02/03/19 13:36,"732 13th St, Los Angeles, CA 90001" +165448,Wired Headphones,1,11.99,02/13/19 13:27,"658 Pine St, Los Angeles, CA 90001" +165449,Apple Airpods Headphones,1,150,02/25/19 17:33,"155 Spruce St, San Francisco, CA 94016" +165450,27in 4K Gaming Monitor,1,389.99,02/10/19 10:10,"140 Spruce St, Los Angeles, CA 90001" +165451,AA Batteries (4-pack),1,3.84,02/02/19 22:49,"474 Jefferson St, New York City, NY 10001" +165452,Lightning Charging Cable,1,14.95,02/27/19 19:42,"612 River St, Los Angeles, CA 90001" +165453,Flatscreen TV,1,300,02/12/19 23:11,"305 Jefferson St, Austin, TX 73301" +165454,ThinkPad Laptop,1,999.99,02/11/19 13:35,"41 Hill St, San Francisco, CA 94016" +165455,Lightning Charging Cable,1,14.95,02/12/19 09:24,"695 Main St, Seattle, WA 98101" +165456,Bose SoundSport Headphones,1,99.99,02/01/19 17:14,"926 Adams St, Portland, ME 04101" +165457,Wired Headphones,1,11.99,02/05/19 14:42,"22 Lakeview St, New York City, NY 10001" +165458,Flatscreen TV,1,300,02/25/19 14:43,"781 North St, San Francisco, CA 94016" +165459,AA Batteries (4-pack),2,3.84,02/22/19 19:47,"874 Center St, Portland, OR 97035" +165460,Wired Headphones,1,11.99,02/17/19 11:14,"758 Washington St, New York City, NY 10001" +165461,27in 4K Gaming Monitor,1,389.99,02/15/19 22:58,"880 10th St, San Francisco, CA 94016" +165462,AA Batteries (4-pack),1,3.84,02/26/19 23:04,"842 Cedar St, Portland, OR 97035" +165463,AA Batteries (4-pack),1,3.84,02/08/19 16:23,"977 7th St, Boston, MA 02215" +165464,27in 4K Gaming Monitor,1,389.99,02/25/19 09:12,"949 6th St, Portland, OR 97035" +165465,ThinkPad Laptop,1,999.99,02/10/19 08:28,"871 Johnson St, Los Angeles, CA 90001" +165466,Google Phone,1,600,02/13/19 23:41,"449 North St, Dallas, TX 75001" +165466,USB-C Charging Cable,1,11.95,02/13/19 23:41,"449 North St, Dallas, TX 75001" +165466,Wired Headphones,1,11.99,02/13/19 23:41,"449 North St, Dallas, TX 75001" +165467,USB-C Charging Cable,1,11.95,02/07/19 12:23,"785 Park St, San Francisco, CA 94016" +165468,27in FHD Monitor,1,149.99,02/12/19 20:09,"965 11th St, Boston, MA 02215" +165469,Apple Airpods Headphones,1,150,02/20/19 22:09,"525 Center St, San Francisco, CA 94016" +165470,Apple Airpods Headphones,1,150,02/19/19 21:20,"257 Lake St, Portland, OR 97035" +165471,AAA Batteries (4-pack),2,2.99,02/28/19 08:24,"854 Lincoln St, Seattle, WA 98101" +165472,ThinkPad Laptop,1,999.99,02/15/19 21:25,"233 Hickory St, San Francisco, CA 94016" +165473,AAA Batteries (4-pack),1,2.99,02/11/19 14:57,"332 Lake St, Los Angeles, CA 90001" +165474,34in Ultrawide Monitor,1,379.99,02/07/19 12:02,"238 14th St, Boston, MA 02215" +165475,Macbook Pro Laptop,1,1700,02/04/19 13:53,"989 14th St, Austin, TX 73301" +165476,Apple Airpods Headphones,1,150,02/17/19 17:43,"47 Cherry St, Los Angeles, CA 90001" +165477,27in 4K Gaming Monitor,1,389.99,02/07/19 12:43,"119 2nd St, Seattle, WA 98101" +165478,USB-C Charging Cable,1,11.95,02/26/19 21:14,"773 4th St, Atlanta, GA 30301" +165479,Lightning Charging Cable,1,14.95,02/04/19 21:02,"861 West St, Atlanta, GA 30301" +165480,27in 4K Gaming Monitor,1,389.99,02/01/19 21:35,"988 Spruce St, Los Angeles, CA 90001" +165481,ThinkPad Laptop,1,999.99,02/16/19 21:56,"540 Jefferson St, San Francisco, CA 94016" +165482,Lightning Charging Cable,1,14.95,02/11/19 09:54,"750 Lake St, Austin, TX 73301" +165483,Flatscreen TV,1,300,02/12/19 12:33,"36 South St, Los Angeles, CA 90001" +165484,Macbook Pro Laptop,1,1700,02/26/19 16:18,"471 Chestnut St, Los Angeles, CA 90001" +165485,AAA Batteries (4-pack),1,2.99,02/04/19 15:32,"133 Hill St, Seattle, WA 98101" +165486,Lightning Charging Cable,1,14.95,02/19/19 11:22,"379 Lakeview St, Los Angeles, CA 90001" +165487,Apple Airpods Headphones,1,150,02/07/19 08:42,"533 Maple St, Los Angeles, CA 90001" +165488,AA Batteries (4-pack),1,3.84,02/14/19 16:51,"597 Cedar St, San Francisco, CA 94016" +165489,AAA Batteries (4-pack),1,2.99,02/20/19 13:17,"667 Dogwood St, Atlanta, GA 30301" +165490,Macbook Pro Laptop,1,1700,02/11/19 21:01,"349 Spruce St, New York City, NY 10001" +165491,Lightning Charging Cable,1,14.95,02/23/19 11:08,"351 Meadow St, San Francisco, CA 94016" +165492,Bose SoundSport Headphones,1,99.99,02/24/19 03:43,"899 Chestnut St, San Francisco, CA 94016" +165493,Lightning Charging Cable,2,14.95,02/15/19 23:15,"615 14th St, Los Angeles, CA 90001" +165494,34in Ultrawide Monitor,1,379.99,02/23/19 23:51,"70 13th St, Portland, OR 97035" +165495,AA Batteries (4-pack),1,3.84,02/01/19 19:01,"720 Dogwood St, Seattle, WA 98101" +165496,Macbook Pro Laptop,1,1700,02/23/19 10:50,"61 Adams St, San Francisco, CA 94016" +165497,Bose SoundSport Headphones,1,99.99,02/09/19 19:55,"906 Sunset St, Seattle, WA 98101" +165498,AA Batteries (4-pack),2,3.84,02/08/19 12:09,"411 Church St, San Francisco, CA 94016" +165499,Apple Airpods Headphones,1,150,02/26/19 22:12,"493 8th St, Los Angeles, CA 90001" +165500,Macbook Pro Laptop,1,1700,02/13/19 20:51,"278 Sunset St, Seattle, WA 98101" +165501,ThinkPad Laptop,1,999.99,02/15/19 11:40,"357 Cherry St, San Francisco, CA 94016" +165502,27in FHD Monitor,1,149.99,02/01/19 22:45,"515 River St, Seattle, WA 98101" +165503,Bose SoundSport Headphones,1,99.99,02/11/19 10:23,"981 1st St, New York City, NY 10001" +165504,34in Ultrawide Monitor,1,379.99,02/27/19 16:09,"36 8th St, New York City, NY 10001" +165505,Wired Headphones,1,11.99,02/02/19 20:49,"414 Chestnut St, Boston, MA 02215" +165506,27in FHD Monitor,1,149.99,02/17/19 13:50,"480 13th St, Dallas, TX 75001" +165507,Macbook Pro Laptop,1,1700,02/17/19 21:11,"504 Willow St, Portland, OR 97035" +165508,AA Batteries (4-pack),1,3.84,02/21/19 14:44,"365 Cherry St, New York City, NY 10001" +165509,AAA Batteries (4-pack),1,2.99,02/04/19 16:34,"15 Lincoln St, Los Angeles, CA 90001" +165510,AAA Batteries (4-pack),1,2.99,02/13/19 13:06,"531 Jackson St, Portland, OR 97035" +165511,Wired Headphones,1,11.99,02/09/19 18:29,"841 9th St, New York City, NY 10001" +165512,USB-C Charging Cable,1,11.95,02/20/19 19:42,"445 West St, Portland, OR 97035" +165513,AAA Batteries (4-pack),2,2.99,02/08/19 08:24,"18 14th St, Boston, MA 02215" +165514,27in 4K Gaming Monitor,1,389.99,02/08/19 00:38,"511 Washington St, Portland, ME 04101" +165515,AA Batteries (4-pack),1,3.84,02/02/19 18:37,"902 Cedar St, San Francisco, CA 94016" +165516,iPhone,1,700,02/25/19 11:27,"77 12th St, San Francisco, CA 94016" +165517,Lightning Charging Cable,1,14.95,02/11/19 15:04,"551 Forest St, Los Angeles, CA 90001" +165518,AAA Batteries (4-pack),1,2.99,02/10/19 12:55,"424 1st St, San Francisco, CA 94016" +165519,Google Phone,1,600,02/17/19 16:29,"192 Washington St, Los Angeles, CA 90001" +165520,USB-C Charging Cable,1,11.95,02/04/19 20:24,"545 Sunset St, Portland, OR 97035" +165521,AA Batteries (4-pack),2,3.84,02/28/19 18:53,"130 West St, Boston, MA 02215" +165522,AAA Batteries (4-pack),1,2.99,02/19/19 18:51,"93 2nd St, Seattle, WA 98101" +165523,AAA Batteries (4-pack),1,2.99,02/19/19 19:23,"308 Center St, Atlanta, GA 30301" +165524,Lightning Charging Cable,1,14.95,02/14/19 21:22,"784 Jackson St, Atlanta, GA 30301" +165525,AAA Batteries (4-pack),2,2.99,02/07/19 17:09,"200 Lakeview St, New York City, NY 10001" +165526,AA Batteries (4-pack),1,3.84,02/16/19 16:34,"438 Forest St, New York City, NY 10001" +165527,AAA Batteries (4-pack),1,2.99,02/07/19 20:18,"669 Park St, Boston, MA 02215" +165528,Lightning Charging Cable,1,14.95,02/18/19 17:31,"124 Center St, Seattle, WA 98101" +165529,Wired Headphones,1,11.99,02/02/19 10:33,"7 6th St, Los Angeles, CA 90001" +165530,USB-C Charging Cable,2,11.95,02/13/19 00:52,"496 Pine St, Dallas, TX 75001" +165531,Bose SoundSport Headphones,1,99.99,02/26/19 09:38,"634 Cedar St, Los Angeles, CA 90001" +165532,Google Phone,1,600,02/05/19 21:07,"491 Pine St, Los Angeles, CA 90001" +165533,Lightning Charging Cable,1,14.95,02/20/19 12:38,"482 Wilson St, San Francisco, CA 94016" +,,,,, +165534,Macbook Pro Laptop,1,1700,02/08/19 18:05,"817 Washington St, Los Angeles, CA 90001" +165535,AAA Batteries (4-pack),1,2.99,02/19/19 18:32,"958 12th St, Dallas, TX 75001" +165536,Wired Headphones,1,11.99,02/09/19 13:09,"532 7th St, San Francisco, CA 94016" +165537,Bose SoundSport Headphones,1,99.99,02/23/19 22:21,"981 Main St, Boston, MA 02215" +165538,27in FHD Monitor,1,149.99,02/02/19 04:00,"62 Church St, New York City, NY 10001" +165539,27in FHD Monitor,1,149.99,02/12/19 10:53,"313 Main St, Boston, MA 02215" +165540,AA Batteries (4-pack),2,3.84,02/28/19 03:55,"489 Pine St, San Francisco, CA 94016" +165541,Apple Airpods Headphones,1,150,02/19/19 15:38,"410 Willow St, San Francisco, CA 94016" +165542,Wired Headphones,2,11.99,02/09/19 22:26,"503 7th St, Boston, MA 02215" +165543,iPhone,1,700,02/02/19 12:50,"926 Willow St, Los Angeles, CA 90001" +165543,27in 4K Gaming Monitor,1,389.99,02/02/19 12:50,"926 Willow St, Los Angeles, CA 90001" +165544,Wired Headphones,3,11.99,02/13/19 09:02,"609 Forest St, Boston, MA 02215" +165545,Lightning Charging Cable,1,14.95,02/27/19 09:52,"886 Highland St, San Francisco, CA 94016" +165546,27in 4K Gaming Monitor,1,389.99,02/13/19 20:23,"725 Jefferson St, Boston, MA 02215" +165547,Wired Headphones,1,11.99,02/08/19 20:40,"884 4th St, San Francisco, CA 94016" +165548,Wired Headphones,2,11.99,02/20/19 19:25,"430 Lakeview St, Seattle, WA 98101" +165549,AA Batteries (4-pack),1,3.84,02/06/19 20:48,"598 Highland St, San Francisco, CA 94016" +165550,iPhone,1,700,02/24/19 22:40,"490 Spruce St, Seattle, WA 98101" +165551,Bose SoundSport Headphones,1,99.99,02/06/19 10:30,"465 Hill St, New York City, NY 10001" +165552,USB-C Charging Cable,1,11.95,02/01/19 21:45,"557 9th St, Boston, MA 02215" +165553,Lightning Charging Cable,1,14.95,02/11/19 16:44,"17 Jefferson St, Los Angeles, CA 90001" +165554,ThinkPad Laptop,1,999.99,02/21/19 02:42,"863 8th St, New York City, NY 10001" +165555,Wired Headphones,1,11.99,02/06/19 12:24,"307 Washington St, Atlanta, GA 30301" +165556,AAA Batteries (4-pack),1,2.99,02/16/19 18:03,"993 9th St, Seattle, WA 98101" +165557,Lightning Charging Cable,1,14.95,02/28/19 12:03,"895 Willow St, San Francisco, CA 94016" +165558,Lightning Charging Cable,1,14.95,02/22/19 13:28,"11 Walnut St, Atlanta, GA 30301" +165559,34in Ultrawide Monitor,1,379.99,02/02/19 11:18,"473 Meadow St, San Francisco, CA 94016" +165560,Google Phone,1,600,02/15/19 21:06,"812 Maple St, New York City, NY 10001" +165560,USB-C Charging Cable,1,11.95,02/15/19 21:06,"812 Maple St, New York City, NY 10001" +165561,Lightning Charging Cable,1,14.95,02/26/19 21:55,"589 Park St, New York City, NY 10001" +165562,AA Batteries (4-pack),1,3.84,02/21/19 11:17,"456 Elm St, Portland, ME 04101" +165563,Apple Airpods Headphones,1,150,02/20/19 20:28,"659 Maple St, Los Angeles, CA 90001" +165564,AA Batteries (4-pack),1,3.84,02/15/19 08:07,"67 Center St, San Francisco, CA 94016" +165565,AAA Batteries (4-pack),1,2.99,02/23/19 15:11,"30 Highland St, Los Angeles, CA 90001" +165566,AAA Batteries (4-pack),1,2.99,02/13/19 09:30,"424 5th St, Boston, MA 02215" +165567,USB-C Charging Cable,1,11.95,02/12/19 11:35,"894 River St, Los Angeles, CA 90001" +165568,AA Batteries (4-pack),1,3.84,02/08/19 20:28,"243 Adams St, New York City, NY 10001" +165569,AAA Batteries (4-pack),1,2.99,02/02/19 10:19,"113 Pine St, Boston, MA 02215" +165570,iPhone,1,700,02/09/19 19:44,"472 North St, Dallas, TX 75001" +165570,Wired Headphones,1,11.99,02/09/19 19:44,"472 North St, Dallas, TX 75001" +165571,iPhone,1,700,02/09/19 15:37,"990 5th St, Atlanta, GA 30301" +165572,27in 4K Gaming Monitor,1,389.99,02/17/19 21:19,"370 8th St, Austin, TX 73301" +165573,Apple Airpods Headphones,1,150,02/02/19 16:26,"113 13th St, Los Angeles, CA 90001" +165574,20in Monitor,1,109.99,02/10/19 13:54,"804 Hill St, Seattle, WA 98101" +165575,Wired Headphones,1,11.99,02/06/19 15:20,"91 Chestnut St, Seattle, WA 98101" +165576,AA Batteries (4-pack),1,3.84,02/18/19 21:40,"782 Jefferson St, Seattle, WA 98101" +165577,AAA Batteries (4-pack),1,2.99,02/21/19 11:53,"967 8th St, San Francisco, CA 94016" +165578,Wired Headphones,1,11.99,02/02/19 17:52,"85 Forest St, Los Angeles, CA 90001" +165579,Google Phone,1,600,02/19/19 12:36,"833 Jefferson St, San Francisco, CA 94016" +165580,Google Phone,1,600,02/09/19 19:20,"373 Johnson St, Portland, OR 97035" +165581,Lightning Charging Cable,1,14.95,02/19/19 13:09,"261 13th St, New York City, NY 10001" +165582,Wired Headphones,1,11.99,02/09/19 08:37,"876 Forest St, San Francisco, CA 94016" +165583,Bose SoundSport Headphones,1,99.99,02/20/19 15:13,"382 West St, Portland, ME 04101" +165584,Apple Airpods Headphones,1,150,02/02/19 17:07,"341 Main St, Los Angeles, CA 90001" +165585,AAA Batteries (4-pack),3,2.99,02/05/19 13:19,"469 7th St, San Francisco, CA 94016" +165586,27in FHD Monitor,1,149.99,02/16/19 14:51,"517 Lincoln St, San Francisco, CA 94016" +165587,Lightning Charging Cable,1,14.95,02/16/19 11:50,"961 North St, Atlanta, GA 30301" +165588,AA Batteries (4-pack),1,3.84,02/14/19 14:45,"598 Spruce St, Los Angeles, CA 90001" +165589,Bose SoundSport Headphones,1,99.99,02/10/19 11:47,"517 1st St, Atlanta, GA 30301" +165590,USB-C Charging Cable,1,11.95,02/08/19 19:14,"620 Park St, San Francisco, CA 94016" +165591,Bose SoundSport Headphones,1,99.99,02/03/19 13:32,"513 Jefferson St, Atlanta, GA 30301" +165592,Apple Airpods Headphones,1,150,02/07/19 18:47,"272 10th St, Boston, MA 02215" +165593,AA Batteries (4-pack),3,3.84,02/14/19 15:46,"867 13th St, New York City, NY 10001" +165594,27in 4K Gaming Monitor,1,389.99,02/02/19 17:47,"390 12th St, San Francisco, CA 94016" +165595,AA Batteries (4-pack),2,3.84,02/03/19 11:39,"700 Jackson St, San Francisco, CA 94016" +165596,Lightning Charging Cable,1,14.95,02/07/19 11:46,"248 14th St, Los Angeles, CA 90001" +165597,Lightning Charging Cable,1,14.95,02/13/19 19:58,"695 Hill St, San Francisco, CA 94016" +165598,AA Batteries (4-pack),1,3.84,02/07/19 10:28,"625 Washington St, San Francisco, CA 94016" +165599,Wired Headphones,1,11.99,02/14/19 08:59,"385 Dogwood St, Boston, MA 02215" +165600,Apple Airpods Headphones,1,150,02/14/19 10:55,"85 Jackson St, Portland, OR 97035" +165601,Bose SoundSport Headphones,1,99.99,02/22/19 10:53,"558 River St, Los Angeles, CA 90001" +165602,AA Batteries (4-pack),1,3.84,02/23/19 16:11,"489 Pine St, New York City, NY 10001" +165603,27in FHD Monitor,1,149.99,02/01/19 08:37,"48 Park St, Seattle, WA 98101" +165604,Wired Headphones,1,11.99,02/02/19 16:52,"563 Lincoln St, Boston, MA 02215" +165605,AA Batteries (4-pack),2,3.84,02/13/19 11:09,"919 2nd St, Austin, TX 73301" +165606,27in FHD Monitor,1,149.99,02/20/19 18:04,"738 Jefferson St, Los Angeles, CA 90001" +165607,AA Batteries (4-pack),1,3.84,02/09/19 20:55,"506 12th St, San Francisco, CA 94016" +165608,Bose SoundSport Headphones,1,99.99,02/24/19 09:52,"217 Adams St, New York City, NY 10001" +165609,27in 4K Gaming Monitor,1,389.99,02/21/19 17:37,"952 Spruce St, Seattle, WA 98101" +165610,27in 4K Gaming Monitor,1,389.99,02/25/19 18:04,"540 8th St, San Francisco, CA 94016" +165611,Wired Headphones,1,11.99,02/09/19 09:57,"768 Madison St, Boston, MA 02215" +165612,Macbook Pro Laptop,1,1700,02/24/19 12:32,"853 Walnut St, Portland, OR 97035" +165613,34in Ultrawide Monitor,1,379.99,02/19/19 14:37,"257 Chestnut St, Los Angeles, CA 90001" +165614,Bose SoundSport Headphones,1,99.99,02/02/19 08:06,"859 Washington St, Dallas, TX 75001" +165615,Lightning Charging Cable,1,14.95,02/09/19 13:56,"402 8th St, Seattle, WA 98101" +165616,AAA Batteries (4-pack),1,2.99,02/17/19 08:48,"107 12th St, Portland, OR 97035" +165617,AAA Batteries (4-pack),1,2.99,02/08/19 14:54,"747 Washington St, Dallas, TX 75001" +165618,iPhone,1,700,02/01/19 16:56,"895 5th St, Los Angeles, CA 90001" +165618,Wired Headphones,1,11.99,02/01/19 16:56,"895 5th St, Los Angeles, CA 90001" +165619,ThinkPad Laptop,1,999.99,02/18/19 12:30,"956 Maple St, Los Angeles, CA 90001" +165620,Lightning Charging Cable,1,14.95,02/17/19 23:05,"167 Wilson St, Dallas, TX 75001" +165621,USB-C Charging Cable,2,11.95,02/27/19 11:32,"437 Elm St, Portland, ME 04101" +165622,AAA Batteries (4-pack),1,2.99,02/12/19 05:58,"409 Adams St, New York City, NY 10001" +165623,USB-C Charging Cable,1,11.95,02/14/19 19:54,"463 Walnut St, Austin, TX 73301" +165624,27in FHD Monitor,1,149.99,02/20/19 13:40,"512 Park St, San Francisco, CA 94016" +165625,Macbook Pro Laptop,1,1700,02/09/19 19:26,"707 Lakeview St, Los Angeles, CA 90001" +165626,USB-C Charging Cable,1,11.95,02/17/19 07:18,"362 Dogwood St, San Francisco, CA 94016" +165627,Flatscreen TV,1,300,02/03/19 19:58,"896 Madison St, New York City, NY 10001" +165628,Wired Headphones,1,11.99,02/08/19 20:55,"18 Hill St, San Francisco, CA 94016" +165629,Vareebadd Phone,1,400,02/07/19 21:51,"623 Washington St, New York City, NY 10001" +165629,USB-C Charging Cable,1,11.95,02/07/19 21:51,"623 Washington St, New York City, NY 10001" +165630,Apple Airpods Headphones,1,150,02/26/19 18:45,"548 Sunset St, San Francisco, CA 94016" +165631,Wired Headphones,1,11.99,02/11/19 10:01,"783 Highland St, Dallas, TX 75001" +165632,USB-C Charging Cable,1,11.95,02/16/19 11:03,"886 10th St, Atlanta, GA 30301" +165633,Apple Airpods Headphones,1,150,02/20/19 10:15,"636 Dogwood St, Dallas, TX 75001" +165634,Apple Airpods Headphones,1,150,02/04/19 22:23,"595 14th St, Seattle, WA 98101" +165635,AAA Batteries (4-pack),1,2.99,02/14/19 13:44,"361 Maple St, San Francisco, CA 94016" +165636,Macbook Pro Laptop,1,1700,02/27/19 00:16,"832 Park St, Dallas, TX 75001" +165637,AAA Batteries (4-pack),1,2.99,02/05/19 20:36,"92 Highland St, Portland, OR 97035" +165638,AAA Batteries (4-pack),4,2.99,02/24/19 18:39,"596 1st St, Seattle, WA 98101" +165639,Apple Airpods Headphones,1,150,02/26/19 23:41,"347 12th St, Los Angeles, CA 90001" +165640,Wired Headphones,1,11.99,02/02/19 21:19,"188 4th St, Los Angeles, CA 90001" +165641,Wired Headphones,1,11.99,02/28/19 08:24,"633 Lincoln St, San Francisco, CA 94016" +165642,Macbook Pro Laptop,1,1700,02/04/19 14:04,"556 5th St, Los Angeles, CA 90001" +165643,AAA Batteries (4-pack),1,2.99,02/08/19 15:34,"355 Forest St, Los Angeles, CA 90001" +165644,USB-C Charging Cable,2,11.95,02/17/19 20:17,"839 Highland St, Los Angeles, CA 90001" +165645,Wired Headphones,1,11.99,02/19/19 13:24,"758 9th St, Boston, MA 02215" +165646,USB-C Charging Cable,1,11.95,02/25/19 09:30,"693 Willow St, Dallas, TX 75001" +165647,Wired Headphones,1,11.99,02/25/19 20:35,"591 Spruce St, Atlanta, GA 30301" +165648,34in Ultrawide Monitor,1,379.99,02/27/19 10:07,"870 Madison St, San Francisco, CA 94016" +165649,Google Phone,1,600,02/06/19 18:04,"638 Meadow St, New York City, NY 10001" +165650,Wired Headphones,1,11.99,02/27/19 08:29,"328 8th St, San Francisco, CA 94016" +165651,Wired Headphones,1,11.99,02/10/19 17:25,"394 Lakeview St, Los Angeles, CA 90001" +165652,AAA Batteries (4-pack),1,2.99,02/24/19 16:36,"864 Wilson St, Seattle, WA 98101" +165653,AAA Batteries (4-pack),3,2.99,02/08/19 21:47,"879 13th St, San Francisco, CA 94016" +165654,Wired Headphones,1,11.99,02/25/19 14:06,"359 River St, Dallas, TX 75001" +165655,AAA Batteries (4-pack),1,2.99,02/20/19 18:05,"495 2nd St, Seattle, WA 98101" +165656,USB-C Charging Cable,1,11.95,02/03/19 23:31,"768 Maple St, Boston, MA 02215" +165657,iPhone,1,700,02/06/19 12:32,"851 Center St, Boston, MA 02215" +165658,iPhone,1,700,02/11/19 13:40,"231 Highland St, Los Angeles, CA 90001" +165659,Wired Headphones,1,11.99,02/11/19 23:19,"387 8th St, Boston, MA 02215" +165660,Bose SoundSport Headphones,1,99.99,02/10/19 18:37,"479 Wilson St, New York City, NY 10001" +165661,Lightning Charging Cable,1,14.95,02/03/19 16:05,"70 Jefferson St, Seattle, WA 98101" +165662,Bose SoundSport Headphones,2,99.99,02/11/19 16:54,"87 Adams St, San Francisco, CA 94016" +165663,USB-C Charging Cable,1,11.95,02/04/19 08:38,"183 Elm St, Dallas, TX 75001" +165664,AAA Batteries (4-pack),1,2.99,02/08/19 11:56,"995 Forest St, Dallas, TX 75001" +165665,34in Ultrawide Monitor,1,379.99,02/24/19 14:49,"876 North St, New York City, NY 10001" +165665,34in Ultrawide Monitor,1,379.99,02/24/19 14:49,"876 North St, New York City, NY 10001" +165666,Macbook Pro Laptop,1,1700,02/23/19 17:30,"826 Cherry St, New York City, NY 10001" +165667,Google Phone,1,600,02/02/19 14:44,"29 Johnson St, Dallas, TX 75001" +165668,Bose SoundSport Headphones,1,99.99,02/24/19 22:38,"252 Dogwood St, Boston, MA 02215" +165669,Lightning Charging Cable,1,14.95,02/07/19 12:25,"322 Ridge St, San Francisco, CA 94016" +165670,AAA Batteries (4-pack),2,2.99,02/19/19 15:23,"149 6th St, Seattle, WA 98101" +165671,Bose SoundSport Headphones,1,99.99,02/12/19 07:30,"472 Madison St, San Francisco, CA 94016" +165672,AAA Batteries (4-pack),1,2.99,02/22/19 13:40,"334 Wilson St, San Francisco, CA 94016" +165673,AA Batteries (4-pack),1,3.84,02/20/19 14:58,"481 Elm St, Seattle, WA 98101" +165674,iPhone,1,700,02/27/19 18:08,"41 Jackson St, Boston, MA 02215" +165675,Wired Headphones,1,11.99,02/28/19 22:38,"209 South St, Seattle, WA 98101" +165675,AA Batteries (4-pack),1,3.84,02/28/19 22:38,"209 South St, Seattle, WA 98101" +165676,Lightning Charging Cable,1,14.95,02/21/19 21:23,"287 South St, Los Angeles, CA 90001" +165677,Lightning Charging Cable,1,14.95,02/12/19 00:51,"620 Pine St, San Francisco, CA 94016" +165678,USB-C Charging Cable,1,11.95,02/01/19 16:06,"43 River St, San Francisco, CA 94016" +165679,Macbook Pro Laptop,1,1700,02/14/19 12:49,"867 11th St, San Francisco, CA 94016" +165680,20in Monitor,1,109.99,02/24/19 08:42,"49 14th St, New York City, NY 10001" +165681,27in FHD Monitor,1,149.99,02/09/19 23:21,"201 Meadow St, San Francisco, CA 94016" +165682,Bose SoundSport Headphones,1,99.99,02/01/19 18:34,"475 Cedar St, Portland, OR 97035" +165683,Bose SoundSport Headphones,1,99.99,02/11/19 19:45,"844 5th St, Boston, MA 02215" +165684,Bose SoundSport Headphones,1,99.99,02/07/19 18:59,"53 Sunset St, Austin, TX 73301" +165684,Apple Airpods Headphones,1,150,02/07/19 18:59,"53 Sunset St, Austin, TX 73301" +165685,20in Monitor,1,109.99,02/02/19 08:06,"999 4th St, San Francisco, CA 94016" +165686,Apple Airpods Headphones,1,150,02/11/19 11:50,"225 5th St, San Francisco, CA 94016" +165687,Google Phone,1,600,02/17/19 00:51,"28 Spruce St, San Francisco, CA 94016" +165688,Apple Airpods Headphones,1,150,02/27/19 20:28,"705 Maple St, Los Angeles, CA 90001" +165689,Wired Headphones,1,11.99,02/23/19 20:49,"889 Forest St, Dallas, TX 75001" +165690,USB-C Charging Cable,1,11.95,02/19/19 11:07,"865 Chestnut St, San Francisco, CA 94016" +165691,34in Ultrawide Monitor,1,379.99,02/03/19 19:48,"351 Lake St, Dallas, TX 75001" +165692,Wired Headphones,1,11.99,02/08/19 18:34,"383 Hill St, Los Angeles, CA 90001" +165693,Wired Headphones,1,11.99,02/10/19 20:19,"505 Highland St, San Francisco, CA 94016" +165694,USB-C Charging Cable,1,11.95,02/15/19 17:55,"837 Willow St, Dallas, TX 75001" +165695,27in 4K Gaming Monitor,1,389.99,02/04/19 13:32,"640 Jackson St, New York City, NY 10001" +165696,AAA Batteries (4-pack),1,2.99,02/27/19 13:29,"653 Park St, New York City, NY 10001" +165697,Wired Headphones,1,11.99,02/15/19 22:03,"798 12th St, Portland, OR 97035" +165698,Apple Airpods Headphones,1,150,02/08/19 22:34,"866 South St, San Francisco, CA 94016" +165699,27in FHD Monitor,1,149.99,02/10/19 21:28,"400 4th St, Los Angeles, CA 90001" +165700,iPhone,1,700,02/13/19 15:52,"872 1st St, New York City, NY 10001" +165701,AAA Batteries (4-pack),2,2.99,02/21/19 00:26,"17 14th St, Los Angeles, CA 90001" +165702,iPhone,1,700,02/08/19 12:34,"935 11th St, San Francisco, CA 94016" +165702,Lightning Charging Cable,1,14.95,02/08/19 12:34,"935 11th St, San Francisco, CA 94016" +165703,Apple Airpods Headphones,1,150,02/09/19 18:36,"939 Lake St, Portland, OR 97035" +165704,AA Batteries (4-pack),1,3.84,02/13/19 18:43,"146 Jackson St, Portland, OR 97035" +165705,USB-C Charging Cable,1,11.95,02/14/19 18:15,"409 Johnson St, Seattle, WA 98101" +165706,AAA Batteries (4-pack),3,2.99,02/14/19 18:28,"987 Willow St, Austin, TX 73301" +165707,Flatscreen TV,1,300,02/25/19 21:00,"298 Dogwood St, Atlanta, GA 30301" +165708,AA Batteries (4-pack),4,3.84,02/22/19 21:35,"236 Elm St, San Francisco, CA 94016" +165709,Wired Headphones,1,11.99,02/14/19 21:19,"626 Johnson St, Seattle, WA 98101" +165710,Bose SoundSport Headphones,1,99.99,02/15/19 08:44,"639 Hill St, Los Angeles, CA 90001" +165711,27in FHD Monitor,1,149.99,02/15/19 23:08,"540 River St, Atlanta, GA 30301" +165712,Lightning Charging Cable,1,14.95,02/17/19 01:03,"485 7th St, Los Angeles, CA 90001" +165713,AA Batteries (4-pack),1,3.84,02/24/19 14:53,"723 Lake St, San Francisco, CA 94016" +165714,Vareebadd Phone,1,400,02/03/19 11:05,"142 Church St, San Francisco, CA 94016" +165715,AAA Batteries (4-pack),1,2.99,02/06/19 21:14,"524 Jefferson St, Atlanta, GA 30301" +165716,AAA Batteries (4-pack),3,2.99,02/04/19 19:05,"456 Cherry St, Austin, TX 73301" +165717,Wired Headphones,2,11.99,02/14/19 01:19,"741 Forest St, Austin, TX 73301" +165718,iPhone,1,700,02/10/19 11:26,"627 6th St, San Francisco, CA 94016" +165718,Wired Headphones,1,11.99,02/10/19 11:26,"627 6th St, San Francisco, CA 94016" +165719,27in 4K Gaming Monitor,1,389.99,02/11/19 10:42,"252 Dogwood St, Dallas, TX 75001" +165720,AA Batteries (4-pack),1,3.84,02/16/19 17:18,"900 Jefferson St, San Francisco, CA 94016" +165721,Bose SoundSport Headphones,1,99.99,02/18/19 09:17,"278 Pine St, Boston, MA 02215" +165722,AAA Batteries (4-pack),1,2.99,02/28/19 11:26,"421 Lincoln St, Atlanta, GA 30301" +165723,AA Batteries (4-pack),2,3.84,02/09/19 19:25,"188 Forest St, San Francisco, CA 94016" +165724,Bose SoundSport Headphones,1,99.99,02/11/19 10:03,"585 Ridge St, Seattle, WA 98101" +165725,AA Batteries (4-pack),1,3.84,02/13/19 21:33,"4 Hill St, San Francisco, CA 94016" +165726,AAA Batteries (4-pack),3,2.99,02/26/19 15:18,"508 14th St, San Francisco, CA 94016" +165727,27in FHD Monitor,1,149.99,02/15/19 05:39,"361 9th St, Austin, TX 73301" +165728,ThinkPad Laptop,1,999.99,02/17/19 20:07,"188 Park St, Seattle, WA 98101" +165729,Lightning Charging Cable,1,14.95,02/13/19 13:29,"839 Adams St, San Francisco, CA 94016" +165730,Apple Airpods Headphones,1,150,02/12/19 11:41,"509 Jefferson St, Boston, MA 02215" +165731,iPhone,1,700,02/25/19 17:43,"572 Sunset St, Boston, MA 02215" +165731,Apple Airpods Headphones,1,150,02/25/19 17:43,"572 Sunset St, Boston, MA 02215" +165732,27in 4K Gaming Monitor,1,389.99,02/11/19 23:03,"368 Chestnut St, Los Angeles, CA 90001" +165733,AA Batteries (4-pack),1,3.84,02/10/19 21:38,"796 Lincoln St, San Francisco, CA 94016" +165734,AAA Batteries (4-pack),1,2.99,02/02/19 18:13,"636 6th St, San Francisco, CA 94016" +165735,AAA Batteries (4-pack),1,2.99,02/09/19 19:54,"335 Sunset St, Los Angeles, CA 90001" +165736,AAA Batteries (4-pack),2,2.99,02/08/19 11:35,"507 13th St, Los Angeles, CA 90001" +165737,Bose SoundSport Headphones,1,99.99,02/02/19 20:01,"100 12th St, Los Angeles, CA 90001" +165738,LG Washing Machine,1,600.0,02/22/19 12:52,"398 Jefferson St, San Francisco, CA 94016" +165739,USB-C Charging Cable,1,11.95,02/27/19 17:15,"961 7th St, Seattle, WA 98101" +165740,USB-C Charging Cable,1,11.95,02/23/19 11:33,"204 Meadow St, San Francisco, CA 94016" +165741,Lightning Charging Cable,2,14.95,02/06/19 16:59,"774 7th St, Seattle, WA 98101" +165742,AAA Batteries (4-pack),2,2.99,02/24/19 15:29,"91 Adams St, Los Angeles, CA 90001" +165743,Bose SoundSport Headphones,1,99.99,02/28/19 01:05,"975 Maple St, Austin, TX 73301" +165744,Wired Headphones,1,11.99,02/17/19 16:14,"153 West St, Los Angeles, CA 90001" +165745,Wired Headphones,1,11.99,02/28/19 01:43,"512 4th St, Atlanta, GA 30301" +165746,Lightning Charging Cable,1,14.95,02/27/19 17:33,"190 Washington St, Los Angeles, CA 90001" +165747,Lightning Charging Cable,1,14.95,02/06/19 13:57,"545 River St, Los Angeles, CA 90001" +165748,AAA Batteries (4-pack),1,2.99,02/07/19 18:44,"161 Hickory St, Seattle, WA 98101" +165749,Lightning Charging Cable,2,14.95,02/14/19 14:10,"18 6th St, Portland, OR 97035" +165750,ThinkPad Laptop,1,999.99,02/05/19 15:38,"545 14th St, Dallas, TX 75001" +165751,Bose SoundSport Headphones,1,99.99,02/13/19 12:29,"884 5th St, Los Angeles, CA 90001" +165752,AAA Batteries (4-pack),3,2.99,02/21/19 16:10,"157 Washington St, San Francisco, CA 94016" +165753,Flatscreen TV,1,300,02/10/19 10:48,"630 Sunset St, New York City, NY 10001" +165754,Wired Headphones,1,11.99,02/06/19 07:10,"33 South St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +165755,USB-C Charging Cable,1,11.95,02/06/19 20:48,"42 Hickory St, Dallas, TX 75001" +165756,AAA Batteries (4-pack),2,2.99,02/14/19 06:29,"754 Park St, San Francisco, CA 94016" +165757,ThinkPad Laptop,1,999.99,02/22/19 12:42,"136 Wilson St, New York City, NY 10001" +165758,Wired Headphones,1,11.99,02/10/19 22:06,"323 Hickory St, Boston, MA 02215" +165759,Wired Headphones,2,11.99,02/22/19 18:05,"853 13th St, Atlanta, GA 30301" +165760,Wired Headphones,1,11.99,02/13/19 12:17,"724 4th St, Los Angeles, CA 90001" +165761,27in FHD Monitor,1,149.99,02/04/19 13:59,"55 Lake St, Atlanta, GA 30301" +165762,Wired Headphones,1,11.99,02/01/19 16:38,"861 10th St, New York City, NY 10001" +165763,27in 4K Gaming Monitor,1,389.99,02/08/19 15:16,"582 Maple St, Los Angeles, CA 90001" +165764,34in Ultrawide Monitor,1,379.99,02/11/19 18:43,"426 Park St, San Francisco, CA 94016" +165765,Lightning Charging Cable,1,14.95,02/13/19 20:05,"279 Elm St, San Francisco, CA 94016" +165766,Bose SoundSport Headphones,1,99.99,02/04/19 09:27,"404 10th St, Austin, TX 73301" +165767,Apple Airpods Headphones,1,150,02/14/19 07:53,"518 Park St, Boston, MA 02215" +165768,AA Batteries (4-pack),1,3.84,02/02/19 21:32,"951 Cherry St, Atlanta, GA 30301" +165769,Bose SoundSport Headphones,1,99.99,02/23/19 16:00,"543 Pine St, Seattle, WA 98101" +165770,Flatscreen TV,1,300,02/02/19 18:58,"115 Jefferson St, Portland, OR 97035" +165771,Bose SoundSport Headphones,1,99.99,02/17/19 20:44,"879 Walnut St, Seattle, WA 98101" +165772,Bose SoundSport Headphones,1,99.99,02/23/19 12:08,"632 Ridge St, Boston, MA 02215" +165773,USB-C Charging Cable,1,11.95,02/03/19 12:24,"318 7th St, Dallas, TX 75001" +165774,Wired Headphones,1,11.99,02/20/19 02:19,"704 Jackson St, Seattle, WA 98101" +165775,27in 4K Gaming Monitor,1,389.99,02/01/19 17:30,"642 Cherry St, Austin, TX 73301" +165776,AA Batteries (4-pack),1,3.84,02/09/19 15:06,"87 7th St, San Francisco, CA 94016" +165777,Wired Headphones,1,11.99,02/06/19 22:27,"83 Chestnut St, Los Angeles, CA 90001" +165778,AA Batteries (4-pack),1,3.84,02/09/19 23:39,"783 Adams St, Boston, MA 02215" +165779,Wired Headphones,1,11.99,02/26/19 18:15,"597 Church St, San Francisco, CA 94016" +165780,AAA Batteries (4-pack),1,2.99,02/16/19 11:09,"355 Pine St, Austin, TX 73301" +165780,iPhone,1,700,02/16/19 11:09,"355 Pine St, Austin, TX 73301" +165781,27in FHD Monitor,1,149.99,02/20/19 21:38,"82 1st St, New York City, NY 10001" +165782,AA Batteries (4-pack),1,3.84,02/06/19 11:09,"388 Meadow St, Boston, MA 02215" +165783,USB-C Charging Cable,1,11.95,02/08/19 20:16,"85 2nd St, New York City, NY 10001" +165784,Macbook Pro Laptop,1,1700,02/19/19 18:14,"413 14th St, Dallas, TX 75001" +165785,AAA Batteries (4-pack),1,2.99,02/26/19 16:46,"446 Highland St, San Francisco, CA 94016" +165786,Wired Headphones,1,11.99,02/22/19 18:28,"791 Hickory St, Los Angeles, CA 90001" +165787,Wired Headphones,1,11.99,02/20/19 12:41,"404 Park St, San Francisco, CA 94016" +165788,AA Batteries (4-pack),1,3.84,02/04/19 22:38,"344 West St, Portland, OR 97035" +165789,AAA Batteries (4-pack),1,2.99,02/23/19 16:42,"963 Cedar St, Los Angeles, CA 90001" +165790,AAA Batteries (4-pack),2,2.99,02/21/19 07:32,"166 Sunset St, New York City, NY 10001" +165791,AA Batteries (4-pack),3,3.84,02/16/19 20:04,"782 Church St, Seattle, WA 98101" +165792,ThinkPad Laptop,1,999.99,02/09/19 21:36,"350 Forest St, Dallas, TX 75001" +165793,AA Batteries (4-pack),1,3.84,02/26/19 19:57,"360 River St, San Francisco, CA 94016" +165794,Macbook Pro Laptop,1,1700,02/27/19 07:07,"221 West St, San Francisco, CA 94016" +165795,AA Batteries (4-pack),1,3.84,02/09/19 01:11,"10 Washington St, Seattle, WA 98101" +165796,AAA Batteries (4-pack),1,2.99,02/20/19 12:28,"901 14th St, Los Angeles, CA 90001" +165797,Wired Headphones,1,11.99,02/03/19 12:31,"937 Meadow St, Los Angeles, CA 90001" +165798,Wired Headphones,1,11.99,02/28/19 09:11,"761 5th St, New York City, NY 10001" +165799,Wired Headphones,1,11.99,02/25/19 09:00,"482 12th St, Atlanta, GA 30301" +165800,AAA Batteries (4-pack),1,2.99,02/13/19 09:20,"684 Jefferson St, Boston, MA 02215" +165801,ThinkPad Laptop,1,999.99,02/10/19 18:31,"363 8th St, Dallas, TX 75001" +165802,Lightning Charging Cable,1,14.95,02/19/19 00:30,"120 Dogwood St, Dallas, TX 75001" +165803,AA Batteries (4-pack),2,3.84,02/28/19 15:03,"48 14th St, San Francisco, CA 94016" +165804,Lightning Charging Cable,1,14.95,02/23/19 23:18,"319 9th St, Portland, OR 97035" +165805,AA Batteries (4-pack),2,3.84,02/22/19 22:31,"509 Meadow St, Atlanta, GA 30301" +165806,Lightning Charging Cable,1,14.95,02/08/19 17:04,"721 Lake St, San Francisco, CA 94016" +165807,Lightning Charging Cable,1,14.95,02/21/19 12:05,"418 1st St, Los Angeles, CA 90001" +165808,Apple Airpods Headphones,1,150,02/24/19 15:00,"951 9th St, New York City, NY 10001" +165809,27in 4K Gaming Monitor,1,389.99,02/10/19 14:49,"85 8th St, Seattle, WA 98101" +165810,Bose SoundSport Headphones,1,99.99,02/16/19 12:35,"256 Park St, Boston, MA 02215" +165811,27in 4K Gaming Monitor,1,389.99,02/13/19 23:44,"875 Willow St, New York City, NY 10001" +165812,AAA Batteries (4-pack),1,2.99,02/09/19 23:00,"446 12th St, Seattle, WA 98101" +165813,27in FHD Monitor,1,149.99,02/22/19 22:42,"192 7th St, Atlanta, GA 30301" +165814,Lightning Charging Cable,2,14.95,02/09/19 14:24,"876 10th St, Portland, OR 97035" +165815,Lightning Charging Cable,1,14.95,02/26/19 18:05,"922 Chestnut St, Portland, OR 97035" +165816,Wired Headphones,1,11.99,02/02/19 14:10,"237 14th St, Los Angeles, CA 90001" +165817,Apple Airpods Headphones,1,150,02/15/19 10:28,"679 Hickory St, New York City, NY 10001" +165818,Flatscreen TV,1,300,02/16/19 21:10,"135 Walnut St, San Francisco, CA 94016" +165819,Wired Headphones,1,11.99,02/01/19 16:07,"226 Washington St, Atlanta, GA 30301" +165820,Vareebadd Phone,1,400,02/12/19 16:08,"704 Highland St, New York City, NY 10001" +165820,USB-C Charging Cable,1,11.95,02/12/19 16:08,"704 Highland St, New York City, NY 10001" +165821,Google Phone,1,600,02/28/19 18:21,"75 11th St, Portland, ME 04101" +165822,AA Batteries (4-pack),4,3.84,02/27/19 16:00,"744 Meadow St, Seattle, WA 98101" +165823,AAA Batteries (4-pack),1,2.99,02/24/19 21:15,"63 Hill St, Seattle, WA 98101" +165824,ThinkPad Laptop,1,999.99,02/15/19 19:02,"866 Ridge St, Los Angeles, CA 90001" +165825,ThinkPad Laptop,1,999.99,02/09/19 00:38,"252 Meadow St, New York City, NY 10001" +165826,AA Batteries (4-pack),1,3.84,02/01/19 19:56,"207 West St, New York City, NY 10001" +165827,Apple Airpods Headphones,1,150,02/10/19 10:14,"929 Chestnut St, Los Angeles, CA 90001" +165828,AA Batteries (4-pack),1,3.84,02/12/19 21:43,"732 Washington St, Portland, OR 97035" +165829,Lightning Charging Cable,1,14.95,02/01/19 08:51,"896 Washington St, San Francisco, CA 94016" +165830,Wired Headphones,1,11.99,02/11/19 17:21,"729 Dogwood St, San Francisco, CA 94016" +165831,USB-C Charging Cable,1,11.95,02/21/19 15:28,"292 South St, San Francisco, CA 94016" +165832,Lightning Charging Cable,1,14.95,02/10/19 06:23,"148 Cedar St, Atlanta, GA 30301" +165833,AA Batteries (4-pack),1,3.84,02/16/19 13:28,"475 Jackson St, Portland, ME 04101" +165834,27in 4K Gaming Monitor,1,389.99,02/18/19 19:36,"187 Maple St, New York City, NY 10001" +165835,Apple Airpods Headphones,1,150,02/16/19 20:27,"382 11th St, San Francisco, CA 94016" +165836,AA Batteries (4-pack),1,3.84,02/26/19 20:51,"76 Cherry St, San Francisco, CA 94016" +165837,Wired Headphones,1,11.99,02/13/19 15:57,"436 North St, Los Angeles, CA 90001" +165838,iPhone,1,700,02/27/19 07:14,"219 Spruce St, San Francisco, CA 94016" +165839,USB-C Charging Cable,1,11.95,02/06/19 19:24,"832 Highland St, Atlanta, GA 30301" +165840,27in FHD Monitor,1,149.99,02/25/19 20:42,"818 Willow St, New York City, NY 10001" +165841,AAA Batteries (4-pack),1,2.99,02/13/19 09:50,"389 14th St, New York City, NY 10001" +165842,AA Batteries (4-pack),4,3.84,02/23/19 17:35,"41 Sunset St, San Francisco, CA 94016" +165843,Apple Airpods Headphones,1,150,02/01/19 10:08,"48 Chestnut St, New York City, NY 10001" +165844,Lightning Charging Cable,1,14.95,02/27/19 00:26,"563 6th St, New York City, NY 10001" +165845,ThinkPad Laptop,1,999.99,02/11/19 12:41,"669 Center St, Portland, OR 97035" +165846,20in Monitor,1,109.99,02/03/19 17:09,"427 12th St, Los Angeles, CA 90001" +165847,Bose SoundSport Headphones,1,99.99,02/19/19 12:08,"236 River St, Dallas, TX 75001" +165848,AA Batteries (4-pack),1,3.84,02/27/19 14:54,"994 Ridge St, Los Angeles, CA 90001" +165849,AA Batteries (4-pack),2,3.84,02/19/19 13:10,"791 Park St, Portland, ME 04101" +165850,Flatscreen TV,1,300,02/17/19 22:05,"489 Adams St, New York City, NY 10001" +165851,Bose SoundSport Headphones,1,99.99,02/02/19 20:56,"668 Forest St, New York City, NY 10001" +165852,AA Batteries (4-pack),1,3.84,02/27/19 20:36,"35 West St, Seattle, WA 98101" +165853,AA Batteries (4-pack),1,3.84,02/15/19 14:26,"142 South St, Seattle, WA 98101" +165854,27in FHD Monitor,1,149.99,02/22/19 01:53,"250 Meadow St, San Francisco, CA 94016" +165855,ThinkPad Laptop,1,999.99,02/07/19 13:11,"190 Highland St, Dallas, TX 75001" +165856,20in Monitor,1,109.99,02/24/19 13:26,"461 8th St, Atlanta, GA 30301" +165857,Macbook Pro Laptop,1,1700,02/01/19 15:54,"990 Spruce St, Boston, MA 02215" +165858,AAA Batteries (4-pack),2,2.99,02/24/19 15:49,"339 5th St, Dallas, TX 75001" +165859,Macbook Pro Laptop,1,1700,02/02/19 21:32,"613 Madison St, Portland, OR 97035" +165860,27in FHD Monitor,1,149.99,02/03/19 07:52,"203 6th St, San Francisco, CA 94016" +165861,27in FHD Monitor,1,149.99,02/02/19 12:46,"637 8th St, Dallas, TX 75001" +165862,AA Batteries (4-pack),2,3.84,02/25/19 21:36,"497 4th St, Austin, TX 73301" +165863,27in FHD Monitor,1,149.99,02/04/19 00:49,"663 Park St, Austin, TX 73301" +165864,34in Ultrawide Monitor,1,379.99,02/08/19 03:31,"602 Adams St, Boston, MA 02215" +165865,Wired Headphones,1,11.99,02/20/19 05:28,"678 Walnut St, Los Angeles, CA 90001" +165866,Flatscreen TV,1,300,02/27/19 23:46,"707 Highland St, Boston, MA 02215" +165867,AAA Batteries (4-pack),1,2.99,02/04/19 20:30,"589 7th St, New York City, NY 10001" +165867,Wired Headphones,1,11.99,02/04/19 20:30,"589 7th St, New York City, NY 10001" +165868,AA Batteries (4-pack),1,3.84,02/06/19 10:12,"138 River St, Seattle, WA 98101" +165869,AA Batteries (4-pack),1,3.84,02/11/19 20:26,"667 Church St, Los Angeles, CA 90001" +165870,USB-C Charging Cable,1,11.95,02/13/19 11:14,"301 Ridge St, San Francisco, CA 94016" +165871,Vareebadd Phone,1,400,02/13/19 19:27,"793 4th St, New York City, NY 10001" +165872,USB-C Charging Cable,1,11.95,02/04/19 12:54,"72 12th St, Los Angeles, CA 90001" +165873,34in Ultrawide Monitor,1,379.99,02/13/19 15:30,"641 Pine St, Portland, OR 97035" +165874,Apple Airpods Headphones,1,150,02/25/19 17:50,"726 Meadow St, San Francisco, CA 94016" +165875,Bose SoundSport Headphones,1,99.99,02/08/19 00:12,"537 Highland St, Dallas, TX 75001" +165876,27in FHD Monitor,1,149.99,02/09/19 14:50,"697 11th St, Atlanta, GA 30301" +165877,AAA Batteries (4-pack),2,2.99,02/16/19 11:58,"75 5th St, Dallas, TX 75001" +165878,Bose SoundSport Headphones,1,99.99,02/01/19 22:19,"522 Main St, San Francisco, CA 94016" +165879,Wired Headphones,1,11.99,02/05/19 19:12,"173 Johnson St, Boston, MA 02215" +165880,Macbook Pro Laptop,1,1700,02/12/19 00:16,"408 10th St, Seattle, WA 98101" +165881,AA Batteries (4-pack),1,3.84,02/28/19 23:10,"101 5th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +165882,Lightning Charging Cable,1,14.95,02/09/19 07:11,"210 Elm St, New York City, NY 10001" +165883,Wired Headphones,1,11.99,02/15/19 13:19,"376 River St, San Francisco, CA 94016" +165884,USB-C Charging Cable,1,11.95,02/07/19 17:35,"986 1st St, San Francisco, CA 94016" +165885,Bose SoundSport Headphones,1,99.99,02/06/19 00:17,"790 Madison St, San Francisco, CA 94016" +165886,Lightning Charging Cable,1,14.95,02/03/19 19:27,"286 Park St, Atlanta, GA 30301" +165887,iPhone,1,700,02/13/19 00:24,"336 West St, Los Angeles, CA 90001" +165887,Lightning Charging Cable,1,14.95,02/13/19 00:24,"336 West St, Los Angeles, CA 90001" +165888,AA Batteries (4-pack),1,3.84,02/17/19 20:12,"714 9th St, Boston, MA 02215" +,,,,, +165889,Wired Headphones,1,11.99,02/22/19 07:21,"896 1st St, New York City, NY 10001" +165889,Lightning Charging Cable,1,14.95,02/22/19 07:21,"896 1st St, New York City, NY 10001" +165890,AA Batteries (4-pack),1,3.84,02/12/19 22:40,"995 6th St, San Francisco, CA 94016" +165891,AAA Batteries (4-pack),2,2.99,02/19/19 12:43,"486 Willow St, Atlanta, GA 30301" +165892,AAA Batteries (4-pack),1,2.99,02/06/19 12:20,"845 2nd St, Dallas, TX 75001" +165893,Flatscreen TV,1,300,02/08/19 07:08,"650 1st St, Los Angeles, CA 90001" +165894,Bose SoundSport Headphones,1,99.99,02/26/19 05:27,"385 Jefferson St, Portland, OR 97035" +165895,USB-C Charging Cable,1,11.95,02/06/19 16:37,"109 River St, New York City, NY 10001" +165896,27in 4K Gaming Monitor,1,389.99,02/24/19 06:37,"760 14th St, Los Angeles, CA 90001" +165897,AA Batteries (4-pack),1,3.84,02/17/19 10:32,"946 11th St, San Francisco, CA 94016" +165898,Bose SoundSport Headphones,1,99.99,02/25/19 11:10,"139 1st St, Los Angeles, CA 90001" +165899,Google Phone,1,600,02/21/19 11:20,"765 Lakeview St, Portland, OR 97035" +165900,AAA Batteries (4-pack),2,2.99,02/19/19 17:10,"663 Chestnut St, Boston, MA 02215" +165901,Bose SoundSport Headphones,1,99.99,02/25/19 19:38,"841 North St, Los Angeles, CA 90001" +165902,AA Batteries (4-pack),2,3.84,02/11/19 12:36,"777 Adams St, Boston, MA 02215" +165903,LG Dryer,1,600.0,02/28/19 12:17,"189 Washington St, Boston, MA 02215" +165904,USB-C Charging Cable,1,11.95,02/10/19 13:55,"320 Center St, San Francisco, CA 94016" +165905,AAA Batteries (4-pack),3,2.99,02/27/19 06:59,"651 7th St, San Francisco, CA 94016" +165906,USB-C Charging Cable,1,11.95,02/09/19 18:04,"326 1st St, New York City, NY 10001" +165907,20in Monitor,1,109.99,02/19/19 20:45,"24 Adams St, Austin, TX 73301" +165908,Bose SoundSport Headphones,1,99.99,02/28/19 09:02,"215 Washington St, Portland, OR 97035" +165909,Lightning Charging Cable,1,14.95,02/26/19 12:01,"681 Highland St, San Francisco, CA 94016" +165910,Vareebadd Phone,1,400,02/04/19 15:38,"56 Dogwood St, San Francisco, CA 94016" +165910,USB-C Charging Cable,1,11.95,02/04/19 15:38,"56 Dogwood St, San Francisco, CA 94016" +165911,27in FHD Monitor,1,149.99,02/02/19 10:15,"19 Madison St, Los Angeles, CA 90001" +165912,AA Batteries (4-pack),2,3.84,02/26/19 17:12,"391 Johnson St, San Francisco, CA 94016" +165913,Bose SoundSport Headphones,1,99.99,02/03/19 21:57,"130 8th St, San Francisco, CA 94016" +165914,Wired Headphones,1,11.99,02/07/19 20:33,"792 Wilson St, San Francisco, CA 94016" +165915,27in 4K Gaming Monitor,1,389.99,02/02/19 10:22,"862 Highland St, Seattle, WA 98101" +165916,AA Batteries (4-pack),1,3.84,02/04/19 13:25,"233 Walnut St, Seattle, WA 98101" +165917,Bose SoundSport Headphones,1,99.99,02/10/19 21:29,"792 Spruce St, Dallas, TX 75001" +165918,AAA Batteries (4-pack),2,2.99,02/09/19 13:08,"758 Walnut St, New York City, NY 10001" +165919,Bose SoundSport Headphones,1,99.99,02/18/19 22:32,"803 Adams St, San Francisco, CA 94016" +165920,USB-C Charging Cable,1,11.95,02/03/19 13:20,"750 Forest St, Boston, MA 02215" +165921,Wired Headphones,1,11.99,02/21/19 04:02,"903 Cedar St, Seattle, WA 98101" +165922,iPhone,1,700,02/14/19 09:55,"428 River St, San Francisco, CA 94016" +165923,AAA Batteries (4-pack),1,2.99,02/17/19 17:01,"713 Center St, New York City, NY 10001" +165924,ThinkPad Laptop,1,999.99,02/02/19 10:34,"237 Cedar St, Dallas, TX 75001" +165925,Macbook Pro Laptop,1,1700,02/20/19 13:33,"559 11th St, Austin, TX 73301" +165926,27in FHD Monitor,1,149.99,02/26/19 20:25,"516 Dogwood St, Atlanta, GA 30301" +165927,Flatscreen TV,1,300,02/24/19 20:45,"996 5th St, San Francisco, CA 94016" +165928,iPhone,1,700,02/28/19 19:49,"952 Washington St, Portland, OR 97035" +165929,iPhone,1,700,02/21/19 17:57,"520 Jackson St, Portland, OR 97035" +165929,AAA Batteries (4-pack),2,2.99,02/21/19 17:57,"520 Jackson St, Portland, OR 97035" +165930,USB-C Charging Cable,1,11.95,02/28/19 12:13,"522 Adams St, Atlanta, GA 30301" +165931,AA Batteries (4-pack),2,3.84,02/28/19 20:14,"9 11th St, San Francisco, CA 94016" +165932,27in 4K Gaming Monitor,1,389.99,02/01/19 12:45,"931 Highland St, New York City, NY 10001" +165933,Lightning Charging Cable,1,14.95,02/27/19 11:15,"627 Hickory St, San Francisco, CA 94016" +165934,27in FHD Monitor,1,149.99,02/15/19 20:30,"4 Lakeview St, San Francisco, CA 94016" +165935,Lightning Charging Cable,1,14.95,02/01/19 17:27,"283 Willow St, Atlanta, GA 30301" +165936,USB-C Charging Cable,1,11.95,02/16/19 13:35,"730 Ridge St, San Francisco, CA 94016" +165937,USB-C Charging Cable,1,11.95,02/23/19 19:36,"562 Park St, San Francisco, CA 94016" +165937,Wired Headphones,1,11.99,02/23/19 19:36,"562 Park St, San Francisco, CA 94016" +165938,Apple Airpods Headphones,1,150,02/20/19 10:56,"980 11th St, Los Angeles, CA 90001" +165939,ThinkPad Laptop,1,999.99,02/16/19 13:35,"376 Maple St, Seattle, WA 98101" +165940,Apple Airpods Headphones,1,150,02/03/19 08:52,"74 Washington St, San Francisco, CA 94016" +165941,Lightning Charging Cable,1,14.95,02/07/19 09:05,"189 Cedar St, San Francisco, CA 94016" +165942,USB-C Charging Cable,1,11.95,02/19/19 19:17,"937 13th St, Dallas, TX 75001" +165943,Wired Headphones,1,11.99,02/25/19 16:20,"307 Church St, Los Angeles, CA 90001" +165944,AA Batteries (4-pack),3,3.84,02/17/19 21:23,"438 Elm St, Los Angeles, CA 90001" +165945,USB-C Charging Cable,1,11.95,02/02/19 21:02,"770 Adams St, New York City, NY 10001" +165946,Wired Headphones,1,11.99,02/10/19 15:15,"414 Church St, San Francisco, CA 94016" +165947,Apple Airpods Headphones,1,150,02/02/19 21:12,"986 Willow St, Portland, OR 97035" +165948,27in 4K Gaming Monitor,1,389.99,02/06/19 02:05,"853 12th St, Austin, TX 73301" +165949,AA Batteries (4-pack),1,3.84,02/25/19 15:33,"347 Madison St, Los Angeles, CA 90001" +165950,Wired Headphones,1,11.99,02/15/19 14:07,"897 Johnson St, Atlanta, GA 30301" +165951,Apple Airpods Headphones,1,150,02/05/19 17:33,"734 Spruce St, San Francisco, CA 94016" +165952,Macbook Pro Laptop,1,1700,02/03/19 10:18,"416 South St, Boston, MA 02215" +165953,Macbook Pro Laptop,1,1700,02/15/19 11:07,"606 14th St, Los Angeles, CA 90001" +165954,Lightning Charging Cable,1,14.95,02/18/19 15:59,"354 South St, Los Angeles, CA 90001" +165955,Bose SoundSport Headphones,1,99.99,02/06/19 09:01,"797 West St, Austin, TX 73301" +165956,iPhone,1,700,02/19/19 10:25,"573 2nd St, Los Angeles, CA 90001" +165957,AA Batteries (4-pack),2,3.84,02/12/19 14:07,"488 South St, San Francisco, CA 94016" +165958,20in Monitor,1,109.99,02/06/19 20:54,"956 5th St, New York City, NY 10001" +165959,Macbook Pro Laptop,1,1700,02/20/19 12:54,"289 Ridge St, Seattle, WA 98101" +165960,Google Phone,1,600,02/13/19 22:07,"82 13th St, San Francisco, CA 94016" +165960,Wired Headphones,1,11.99,02/13/19 22:07,"82 13th St, San Francisco, CA 94016" +165961,AAA Batteries (4-pack),1,2.99,02/24/19 09:52,"161 North St, San Francisco, CA 94016" +165962,Wired Headphones,1,11.99,02/12/19 23:22,"817 Washington St, San Francisco, CA 94016" +165963,ThinkPad Laptop,1,999.99,02/27/19 09:42,"729 1st St, Portland, ME 04101" +165964,AAA Batteries (4-pack),3,2.99,02/17/19 09:54,"630 South St, Boston, MA 02215" +165965,27in FHD Monitor,1,149.99,02/23/19 11:56,"322 11th St, Boston, MA 02215" +165966,Wired Headphones,1,11.99,02/01/19 21:20,"512 Church St, San Francisco, CA 94016" +165967,Macbook Pro Laptop,1,1700,02/02/19 06:25,"813 Hickory St, New York City, NY 10001" +165968,AAA Batteries (4-pack),1,2.99,02/03/19 00:57,"757 Elm St, Los Angeles, CA 90001" +165969,Apple Airpods Headphones,1,150,02/19/19 20:13,"856 Jackson St, New York City, NY 10001" +165970,AA Batteries (4-pack),1,3.84,02/14/19 12:08,"747 4th St, Dallas, TX 75001" +165971,Macbook Pro Laptop,1,1700,02/16/19 11:16,"536 9th St, San Francisco, CA 94016" +165972,USB-C Charging Cable,1,11.95,02/01/19 18:07,"787 River St, San Francisco, CA 94016" +165973,AA Batteries (4-pack),2,3.84,02/23/19 11:52,"519 7th St, New York City, NY 10001" +165974,Wired Headphones,1,11.99,02/17/19 13:10,"394 Church St, Dallas, TX 75001" +165975,Flatscreen TV,1,300,02/21/19 19:33,"626 Center St, Los Angeles, CA 90001" +165976,Wired Headphones,1,11.99,02/03/19 08:34,"623 West St, New York City, NY 10001" +165977,Lightning Charging Cable,1,14.95,02/25/19 16:17,"151 Willow St, Austin, TX 73301" +165978,27in FHD Monitor,1,149.99,02/09/19 09:13,"289 River St, San Francisco, CA 94016" +165979,Apple Airpods Headphones,1,150,02/16/19 20:04,"18 Johnson St, New York City, NY 10001" +165980,USB-C Charging Cable,1,11.95,02/17/19 15:49,"427 Willow St, Atlanta, GA 30301" +165981,AA Batteries (4-pack),3,3.84,02/28/19 21:07,"100 Madison St, Los Angeles, CA 90001" +165982,34in Ultrawide Monitor,1,379.99,02/05/19 06:34,"183 Main St, Los Angeles, CA 90001" +165983,AAA Batteries (4-pack),1,2.99,02/15/19 12:08,"682 Sunset St, San Francisco, CA 94016" +165984,27in FHD Monitor,1,149.99,02/26/19 17:47,"955 Hill St, Portland, OR 97035" +165985,USB-C Charging Cable,1,11.95,02/16/19 10:56,"115 Park St, San Francisco, CA 94016" +165986,Apple Airpods Headphones,1,150,02/10/19 08:24,"453 Center St, Portland, ME 04101" +165987,27in FHD Monitor,1,149.99,02/06/19 18:09,"887 Ridge St, San Francisco, CA 94016" +165988,USB-C Charging Cable,1,11.95,02/07/19 19:20,"12 Elm St, San Francisco, CA 94016" +165989,Wired Headphones,2,11.99,02/19/19 21:42,"509 Cherry St, Boston, MA 02215" +165990,Bose SoundSport Headphones,1,99.99,02/01/19 11:13,"398 Maple St, Boston, MA 02215" +165991,Wired Headphones,1,11.99,02/25/19 22:58,"847 Main St, Seattle, WA 98101" +165992,iPhone,1,700,02/14/19 20:15,"614 Forest St, San Francisco, CA 94016" +165992,Apple Airpods Headphones,1,150,02/14/19 20:15,"614 Forest St, San Francisco, CA 94016" +165993,AA Batteries (4-pack),1,3.84,02/23/19 11:25,"541 Spruce St, Los Angeles, CA 90001" +165994,Lightning Charging Cable,1,14.95,02/10/19 10:19,"528 Jackson St, San Francisco, CA 94016" +165995,AAA Batteries (4-pack),1,2.99,02/17/19 09:07,"944 Willow St, San Francisco, CA 94016" +165996,Bose SoundSport Headphones,2,99.99,02/26/19 06:07,"593 Pine St, Boston, MA 02215" +165997,Wired Headphones,2,11.99,02/19/19 17:42,"980 1st St, Los Angeles, CA 90001" +165998,AA Batteries (4-pack),1,3.84,02/04/19 11:23,"808 5th St, San Francisco, CA 94016" +165999,AAA Batteries (4-pack),1,2.99,02/18/19 10:43,"226 Center St, Los Angeles, CA 90001" +166000,iPhone,2,700,02/18/19 09:16,"768 5th St, Los Angeles, CA 90001" +166001,AAA Batteries (4-pack),1,2.99,02/10/19 21:52,"416 Wilson St, Dallas, TX 75001" +166002,iPhone,1,700,02/18/19 01:26,"653 Park St, Los Angeles, CA 90001" +166003,Apple Airpods Headphones,1,150,02/10/19 11:40,"392 Cherry St, Boston, MA 02215" +166004,AA Batteries (4-pack),1,3.84,02/09/19 10:53,"417 Hickory St, Dallas, TX 75001" +166005,Lightning Charging Cable,1,14.95,02/19/19 16:31,"948 Forest St, Boston, MA 02215" +166006,20in Monitor,1,109.99,02/11/19 18:30,"734 Lake St, Seattle, WA 98101" +166007,Apple Airpods Headphones,1,150,02/13/19 20:22,"417 Hill St, Los Angeles, CA 90001" +166008,AA Batteries (4-pack),1,3.84,02/25/19 03:34,"534 Chestnut St, Boston, MA 02215" +166009,Google Phone,1,600,02/10/19 18:50,"750 Chestnut St, Seattle, WA 98101" +166010,Apple Airpods Headphones,1,150,02/22/19 23:03,"226 Jefferson St, New York City, NY 10001" +166011,USB-C Charging Cable,1,11.95,02/02/19 17:09,"535 Madison St, San Francisco, CA 94016" +166012,27in 4K Gaming Monitor,1,389.99,02/01/19 15:26,"588 13th St, San Francisco, CA 94016" +166013,34in Ultrawide Monitor,1,379.99,02/25/19 16:29,"972 Johnson St, San Francisco, CA 94016" +166014,Lightning Charging Cable,1,14.95,02/10/19 18:01,"72 Chestnut St, New York City, NY 10001" +166015,USB-C Charging Cable,1,11.95,02/01/19 12:06,"315 Elm St, Seattle, WA 98101" +166016,Lightning Charging Cable,1,14.95,02/25/19 13:04,"432 10th St, San Francisco, CA 94016" +166017,AA Batteries (4-pack),3,3.84,02/02/19 09:57,"145 Lincoln St, New York City, NY 10001" +166018,USB-C Charging Cable,1,11.95,02/10/19 13:15,"25 Ridge St, San Francisco, CA 94016" +166019,27in 4K Gaming Monitor,1,389.99,02/24/19 10:29,"830 Dogwood St, San Francisco, CA 94016" +166020,AAA Batteries (4-pack),1,2.99,02/27/19 17:03,"621 Jefferson St, San Francisco, CA 94016" +166021,AA Batteries (4-pack),1,3.84,02/07/19 09:12,"346 Walnut St, San Francisco, CA 94016" +166022,Wired Headphones,1,11.99,02/04/19 22:50,"887 Lakeview St, San Francisco, CA 94016" +166023,27in FHD Monitor,1,149.99,02/28/19 22:26,"79 Meadow St, Atlanta, GA 30301" +166024,USB-C Charging Cable,1,11.95,02/23/19 11:43,"812 Adams St, Boston, MA 02215" +166025,Lightning Charging Cable,1,14.95,02/11/19 16:42,"420 Forest St, San Francisco, CA 94016" +166026,Lightning Charging Cable,1,14.95,02/03/19 17:40,"771 South St, San Francisco, CA 94016" +166027,AA Batteries (4-pack),3,3.84,02/02/19 12:12,"598 14th St, Los Angeles, CA 90001" +166028,AA Batteries (4-pack),1,3.84,02/21/19 15:26,"599 Church St, Atlanta, GA 30301" +166029,Wired Headphones,1,11.99,02/17/19 12:18,"271 Jefferson St, San Francisco, CA 94016" +166030,Macbook Pro Laptop,1,1700,02/09/19 20:54,"579 Johnson St, Austin, TX 73301" +166031,USB-C Charging Cable,1,11.95,02/18/19 08:46,"772 Lincoln St, New York City, NY 10001" +166032,Bose SoundSport Headphones,1,99.99,02/06/19 10:24,"97 Chestnut St, Los Angeles, CA 90001" +166033,AAA Batteries (4-pack),3,2.99,02/14/19 20:03,"548 13th St, San Francisco, CA 94016" +166034,AA Batteries (4-pack),1,3.84,02/14/19 16:42,"862 River St, Los Angeles, CA 90001" +166035,AAA Batteries (4-pack),1,2.99,02/24/19 13:40,"846 Jackson St, San Francisco, CA 94016" +166036,Bose SoundSport Headphones,1,99.99,02/18/19 14:49,"506 North St, Portland, OR 97035" +166037,Apple Airpods Headphones,1,150,02/18/19 17:04,"700 North St, Dallas, TX 75001" +166038,27in FHD Monitor,1,149.99,02/24/19 21:20,"651 Lakeview St, San Francisco, CA 94016" +166039,AA Batteries (4-pack),2,3.84,02/20/19 11:30,"411 8th St, New York City, NY 10001" +166040,Apple Airpods Headphones,1,150,02/18/19 14:31,"57 Wilson St, Los Angeles, CA 90001" +166041,27in FHD Monitor,1,149.99,02/20/19 13:58,"385 10th St, Atlanta, GA 30301" +166042,Google Phone,1,600,02/12/19 17:37,"572 12th St, Los Angeles, CA 90001" +166043,AAA Batteries (4-pack),1,2.99,02/23/19 15:23,"800 Forest St, San Francisco, CA 94016" +166043,AAA Batteries (4-pack),1,2.99,02/23/19 15:23,"800 Forest St, San Francisco, CA 94016" +166044,AA Batteries (4-pack),1,3.84,02/19/19 15:41,"75 River St, New York City, NY 10001" +166045,20in Monitor,1,109.99,02/16/19 15:40,"120 Jefferson St, Austin, TX 73301" +166046,Wired Headphones,1,11.99,02/18/19 19:19,"557 Lincoln St, New York City, NY 10001" +166047,27in 4K Gaming Monitor,1,389.99,02/16/19 08:39,"146 Park St, Los Angeles, CA 90001" +166048,Apple Airpods Headphones,1,150,02/09/19 15:24,"193 Sunset St, Los Angeles, CA 90001" +166049,AAA Batteries (4-pack),4,2.99,02/04/19 19:43,"354 Jackson St, Portland, OR 97035" +166050,Wired Headphones,1,11.99,02/12/19 09:17,"231 Center St, San Francisco, CA 94016" +166051,20in Monitor,1,109.99,02/27/19 09:35,"97 Center St, San Francisco, CA 94016" +166052,AA Batteries (4-pack),1,3.84,02/23/19 22:16,"925 Lake St, Los Angeles, CA 90001" +166053,Apple Airpods Headphones,1,150,02/25/19 08:51,"146 9th St, Seattle, WA 98101" +166054,ThinkPad Laptop,1,999.99,02/05/19 20:18,"828 4th St, San Francisco, CA 94016" +166055,iPhone,1,700,02/07/19 22:41,"945 14th St, Los Angeles, CA 90001" +166056,27in 4K Gaming Monitor,1,389.99,02/21/19 20:37,"215 Cherry St, San Francisco, CA 94016" +166057,Bose SoundSport Headphones,1,99.99,02/23/19 23:01,"946 Dogwood St, New York City, NY 10001" +166058,27in FHD Monitor,1,149.99,02/19/19 10:34,"883 Jefferson St, Portland, ME 04101" +166059,27in 4K Gaming Monitor,1,389.99,02/24/19 13:32,"801 Forest St, Los Angeles, CA 90001" +166060,AAA Batteries (4-pack),1,2.99,02/13/19 10:29,"580 13th St, San Francisco, CA 94016" +166061,Flatscreen TV,1,300,02/21/19 05:45,"606 Johnson St, Los Angeles, CA 90001" +166062,USB-C Charging Cable,1,11.95,02/01/19 10:51,"346 Highland St, San Francisco, CA 94016" +166063,Lightning Charging Cable,1,14.95,02/10/19 17:25,"458 Johnson St, San Francisco, CA 94016" +166064,AA Batteries (4-pack),1,3.84,02/07/19 13:27,"649 Lincoln St, New York City, NY 10001" +166065,27in 4K Gaming Monitor,1,389.99,02/09/19 11:44,"637 Johnson St, Los Angeles, CA 90001" +166066,Apple Airpods Headphones,1,150,02/07/19 12:07,"172 9th St, San Francisco, CA 94016" +166067,Apple Airpods Headphones,1,150,02/27/19 22:15,"734 Ridge St, Los Angeles, CA 90001" +166068,AAA Batteries (4-pack),1,2.99,02/26/19 20:02,"933 Lake St, Atlanta, GA 30301" +166069,Wired Headphones,1,11.99,02/19/19 11:53,"144 14th St, San Francisco, CA 94016" +166070,27in 4K Gaming Monitor,1,389.99,02/10/19 13:38,"930 Wilson St, Austin, TX 73301" +166071,AAA Batteries (4-pack),4,2.99,02/12/19 02:51,"553 Lincoln St, Portland, OR 97035" +166072,Lightning Charging Cable,1,14.95,02/17/19 08:22,"309 Sunset St, Atlanta, GA 30301" +166073,Google Phone,1,600,02/25/19 12:19,"924 1st St, Boston, MA 02215" +166074,Lightning Charging Cable,1,14.95,02/12/19 11:48,"41 Hill St, Dallas, TX 75001" +166075,Lightning Charging Cable,1,14.95,02/15/19 22:13,"580 Lakeview St, Los Angeles, CA 90001" +166076,27in 4K Gaming Monitor,1,389.99,02/12/19 20:40,"253 North St, Portland, ME 04101" +166077,Lightning Charging Cable,3,14.95,02/28/19 12:37,"708 Lakeview St, San Francisco, CA 94016" +166078,USB-C Charging Cable,1,11.95,02/26/19 07:54,"148 Hickory St, Boston, MA 02215" +166079,AA Batteries (4-pack),1,3.84,02/03/19 09:22,"845 Jefferson St, Dallas, TX 75001" +166080,Apple Airpods Headphones,1,150,02/11/19 11:27,"97 Lincoln St, Portland, OR 97035" +166081,Lightning Charging Cable,1,14.95,02/05/19 13:08,"311 Adams St, Atlanta, GA 30301" +166082,USB-C Charging Cable,1,11.95,02/10/19 16:41,"956 Lakeview St, Los Angeles, CA 90001" +166083,Wired Headphones,1,11.99,02/16/19 00:20,"80 River St, Boston, MA 02215" +166084,AAA Batteries (4-pack),1,2.99,02/18/19 17:49,"969 Meadow St, New York City, NY 10001" +166085,iPhone,1,700,02/28/19 11:38,"314 Pine St, Los Angeles, CA 90001" +166085,Lightning Charging Cable,1,14.95,02/28/19 11:38,"314 Pine St, Los Angeles, CA 90001" +166086,AA Batteries (4-pack),1,3.84,02/21/19 21:55,"226 Spruce St, Los Angeles, CA 90001" +166087,USB-C Charging Cable,1,11.95,02/07/19 20:18,"360 Lincoln St, Boston, MA 02215" +166088,Google Phone,1,600,02/18/19 10:44,"112 Jefferson St, Boston, MA 02215" +166089,Lightning Charging Cable,1,14.95,02/07/19 19:41,"161 Spruce St, San Francisco, CA 94016" +166090,Google Phone,1,600,02/08/19 19:46,"613 13th St, Los Angeles, CA 90001" +166090,USB-C Charging Cable,1,11.95,02/08/19 19:46,"613 13th St, Los Angeles, CA 90001" +166091,Flatscreen TV,1,300,02/21/19 12:22,"453 Elm St, Los Angeles, CA 90001" +166092,34in Ultrawide Monitor,1,379.99,02/27/19 19:14,"286 4th St, Austin, TX 73301" +166093,Wired Headphones,2,11.99,02/19/19 08:10,"922 9th St, Seattle, WA 98101" +166094,27in FHD Monitor,1,149.99,02/23/19 21:03,"50 South St, San Francisco, CA 94016" +166095,AA Batteries (4-pack),2,3.84,02/28/19 17:58,"595 6th St, Atlanta, GA 30301" +166096,AA Batteries (4-pack),1,3.84,02/23/19 00:24,"897 North St, Austin, TX 73301" +166097,Lightning Charging Cable,1,14.95,02/24/19 19:39,"654 Center St, New York City, NY 10001" +166098,AAA Batteries (4-pack),5,2.99,02/12/19 11:48,"272 West St, New York City, NY 10001" +166099,20in Monitor,1,109.99,02/22/19 20:59,"537 North St, New York City, NY 10001" +166100,27in FHD Monitor,1,149.99,02/02/19 14:55,"512 Willow St, Atlanta, GA 30301" +166101,Apple Airpods Headphones,1,150,02/25/19 11:25,"158 8th St, Atlanta, GA 30301" +166102,27in FHD Monitor,1,149.99,02/15/19 19:45,"848 11th St, New York City, NY 10001" +166103,AA Batteries (4-pack),1,3.84,02/21/19 20:09,"86 Main St, Austin, TX 73301" +166104,AAA Batteries (4-pack),1,2.99,02/08/19 20:56,"277 Meadow St, Austin, TX 73301" +166105,Bose SoundSport Headphones,1,99.99,02/21/19 11:40,"589 Jefferson St, New York City, NY 10001" +166106,iPhone,1,700,02/24/19 17:02,"266 Chestnut St, New York City, NY 10001" +166107,27in FHD Monitor,1,149.99,02/26/19 11:57,"898 10th St, Dallas, TX 75001" +166108,27in FHD Monitor,1,149.99,02/23/19 21:42,"635 South St, San Francisco, CA 94016" +166109,AA Batteries (4-pack),1,3.84,02/12/19 11:44,"648 Hill St, San Francisco, CA 94016" +166110,AAA Batteries (4-pack),1,2.99,02/03/19 17:00,"375 6th St, San Francisco, CA 94016" +166111,Bose SoundSport Headphones,1,99.99,02/15/19 17:08,"624 5th St, Portland, ME 04101" +166112,AA Batteries (4-pack),1,3.84,02/23/19 07:41,"106 Adams St, San Francisco, CA 94016" +166113,Apple Airpods Headphones,1,150,02/26/19 11:22,"17 Lakeview St, Los Angeles, CA 90001" +166114,AA Batteries (4-pack),1,3.84,02/18/19 19:09,"346 Adams St, Atlanta, GA 30301" +166115,ThinkPad Laptop,1,999.99,02/01/19 12:53,"369 Maple St, Seattle, WA 98101" +166116,Apple Airpods Headphones,1,150,02/08/19 07:26,"798 1st St, Boston, MA 02215" +166117,Bose SoundSport Headphones,1,99.99,02/02/19 23:38,"16 Lake St, Portland, OR 97035" +166118,Wired Headphones,1,11.99,02/06/19 10:05,"229 12th St, San Francisco, CA 94016" +166119,27in FHD Monitor,1,149.99,02/04/19 11:11,"286 Cherry St, Seattle, WA 98101" +166120,34in Ultrawide Monitor,1,379.99,02/13/19 08:13,"95 Center St, Dallas, TX 75001" +166121,27in FHD Monitor,1,149.99,02/16/19 11:09,"433 Wilson St, San Francisco, CA 94016" +166122,AAA Batteries (4-pack),2,2.99,02/01/19 18:04,"963 Forest St, Los Angeles, CA 90001" +166123,34in Ultrawide Monitor,1,379.99,02/17/19 22:37,"206 Jefferson St, Portland, OR 97035" +166124,Apple Airpods Headphones,1,150,02/09/19 17:41,"424 14th St, Boston, MA 02215" +166125,34in Ultrawide Monitor,1,379.99,02/08/19 19:39,"451 South St, Portland, OR 97035" +166126,Lightning Charging Cable,1,14.95,02/05/19 09:34,"305 9th St, San Francisco, CA 94016" +166127,Wired Headphones,1,11.99,02/03/19 21:14,"945 2nd St, Seattle, WA 98101" +166128,Wired Headphones,1,11.99,02/04/19 13:06,"130 Maple St, Austin, TX 73301" +166129,AA Batteries (4-pack),1,3.84,02/22/19 11:15,"859 Jackson St, San Francisco, CA 94016" +166130,Lightning Charging Cable,1,14.95,02/07/19 21:17,"379 10th St, Portland, OR 97035" +166131,Lightning Charging Cable,1,14.95,02/07/19 18:40,"59 12th St, Portland, OR 97035" +166132,27in 4K Gaming Monitor,1,389.99,02/02/19 14:11,"126 8th St, Atlanta, GA 30301" +166133,Apple Airpods Headphones,1,150,02/01/19 16:44,"790 4th St, San Francisco, CA 94016" +166134,AA Batteries (4-pack),1,3.84,02/07/19 00:54,"315 12th St, San Francisco, CA 94016" +166135,Bose SoundSport Headphones,1,99.99,02/17/19 11:04,"647 Lincoln St, New York City, NY 10001" +166136,Lightning Charging Cable,1,14.95,02/21/19 20:48,"298 Jefferson St, New York City, NY 10001" +166137,Apple Airpods Headphones,1,150,02/04/19 10:55,"879 5th St, Atlanta, GA 30301" +166138,ThinkPad Laptop,1,999.99,02/16/19 11:49,"971 Dogwood St, San Francisco, CA 94016" +166139,34in Ultrawide Monitor,1,379.99,02/27/19 19:45,"824 Spruce St, New York City, NY 10001" +166140,AA Batteries (4-pack),1,3.84,02/07/19 18:58,"297 Main St, Boston, MA 02215" +166141,34in Ultrawide Monitor,1,379.99,02/09/19 10:53,"281 Elm St, San Francisco, CA 94016" +166142,AA Batteries (4-pack),2,3.84,02/15/19 09:52,"52 South St, Los Angeles, CA 90001" +166143,Google Phone,1,600,02/09/19 19:06,"250 Cedar St, Los Angeles, CA 90001" +166144,Lightning Charging Cable,1,14.95,02/26/19 20:34,"32 Lincoln St, Atlanta, GA 30301" +166145,20in Monitor,1,109.99,02/21/19 21:13,"945 Maple St, San Francisco, CA 94016" +166146,Wired Headphones,1,11.99,02/02/19 22:24,"236 12th St, Atlanta, GA 30301" +166146,20in Monitor,1,109.99,02/02/19 22:24,"236 12th St, Atlanta, GA 30301" +166147,Wired Headphones,1,11.99,02/22/19 19:41,"904 9th St, San Francisco, CA 94016" +166148,Apple Airpods Headphones,1,150,02/17/19 18:49,"133 1st St, Boston, MA 02215" +166149,Bose SoundSport Headphones,1,99.99,02/18/19 22:26,"709 Hill St, San Francisco, CA 94016" +166150,Bose SoundSport Headphones,1,99.99,02/14/19 17:54,"14 Willow St, Boston, MA 02215" +166151,27in 4K Gaming Monitor,1,389.99,02/21/19 12:28,"706 Elm St, Los Angeles, CA 90001" +166152,Wired Headphones,1,11.99,02/06/19 16:54,"722 5th St, Atlanta, GA 30301" +166153,27in 4K Gaming Monitor,1,389.99,02/07/19 10:06,"99 Adams St, Seattle, WA 98101" +166154,Lightning Charging Cable,1,14.95,02/06/19 19:30,"937 Highland St, San Francisco, CA 94016" +166155,AAA Batteries (4-pack),3,2.99,02/27/19 09:01,"153 Church St, Los Angeles, CA 90001" +166156,Bose SoundSport Headphones,1,99.99,02/08/19 11:59,"804 Lincoln St, Los Angeles, CA 90001" +166157,ThinkPad Laptop,1,999.99,02/03/19 07:30,"792 Pine St, Seattle, WA 98101" +166158,Wired Headphones,1,11.99,02/24/19 18:52,"815 10th St, Atlanta, GA 30301" +166159,Wired Headphones,1,11.99,02/12/19 17:41,"747 Sunset St, Atlanta, GA 30301" +166160,Wired Headphones,1,11.99,02/20/19 11:27,"838 Walnut St, San Francisco, CA 94016" +166161,ThinkPad Laptop,1,999.99,02/17/19 19:35,"228 Jefferson St, San Francisco, CA 94016" +166162,Lightning Charging Cable,1,14.95,02/20/19 16:38,"752 9th St, Boston, MA 02215" +166163,AA Batteries (4-pack),1,3.84,02/11/19 21:05,"540 4th St, New York City, NY 10001" +166164,AA Batteries (4-pack),1,3.84,02/14/19 10:44,"815 Hill St, Boston, MA 02215" +166165,Lightning Charging Cable,1,14.95,02/17/19 09:08,"769 Park St, Boston, MA 02215" +166166,Lightning Charging Cable,1,14.95,02/06/19 20:11,"65 4th St, Seattle, WA 98101" +166167,Flatscreen TV,1,300,02/09/19 13:46,"229 2nd St, Austin, TX 73301" +166168,Wired Headphones,1,11.99,02/09/19 19:21,"342 Dogwood St, San Francisco, CA 94016" +166169,ThinkPad Laptop,1,999.99,02/22/19 11:51,"320 4th St, Los Angeles, CA 90001" +166170,AAA Batteries (4-pack),3,2.99,02/28/19 14:27,"662 Sunset St, San Francisco, CA 94016" +166171,AAA Batteries (4-pack),2,2.99,02/16/19 15:03,"110 14th St, New York City, NY 10001" +166172,27in FHD Monitor,1,149.99,02/21/19 19:16,"103 13th St, Boston, MA 02215" +166173,Wired Headphones,1,11.99,02/03/19 17:54,"481 Willow St, Seattle, WA 98101" +166174,Google Phone,1,600,02/23/19 08:05,"919 Pine St, Atlanta, GA 30301" +166175,Wired Headphones,1,11.99,02/02/19 09:00,"770 Pine St, Los Angeles, CA 90001" +166175,AA Batteries (4-pack),1,3.84,02/02/19 09:00,"770 Pine St, Los Angeles, CA 90001" +166176,Wired Headphones,1,11.99,02/03/19 15:56,"901 14th St, Dallas, TX 75001" +166177,ThinkPad Laptop,1,999.99,02/19/19 15:49,"816 Walnut St, Boston, MA 02215" +166178,AAA Batteries (4-pack),1,2.99,02/01/19 20:57,"801 Meadow St, Boston, MA 02215" +166179,Wired Headphones,1,11.99,02/17/19 13:10,"26 Meadow St, Dallas, TX 75001" +166180,USB-C Charging Cable,1,11.95,02/16/19 12:44,"134 Sunset St, San Francisco, CA 94016" +166181,Lightning Charging Cable,1,14.95,02/10/19 18:06,"931 Spruce St, Austin, TX 73301" +166182,Macbook Pro Laptop,1,1700,02/25/19 07:20,"817 Center St, San Francisco, CA 94016" +166182,AA Batteries (4-pack),1,3.84,02/25/19 07:20,"817 Center St, San Francisco, CA 94016" +166183,34in Ultrawide Monitor,1,379.99,02/17/19 22:00,"243 10th St, Seattle, WA 98101" +166184,Bose SoundSport Headphones,1,99.99,02/26/19 16:38,"36 Jefferson St, Dallas, TX 75001" +166185,Apple Airpods Headphones,1,150,02/28/19 17:32,"936 13th St, Atlanta, GA 30301" +166186,Wired Headphones,1,11.99,02/10/19 22:30,"487 Lake St, Atlanta, GA 30301" +166187,Apple Airpods Headphones,1,150,02/28/19 12:35,"830 Adams St, San Francisco, CA 94016" +166188,Apple Airpods Headphones,1,150,02/02/19 10:14,"496 Dogwood St, Dallas, TX 75001" +166189,AAA Batteries (4-pack),1,2.99,02/14/19 11:26,"454 Willow St, Seattle, WA 98101" +166190,27in 4K Gaming Monitor,1,389.99,02/10/19 15:52,"450 Center St, San Francisco, CA 94016" +166190,USB-C Charging Cable,1,11.95,02/10/19 15:52,"450 Center St, San Francisco, CA 94016" +166191,27in FHD Monitor,1,149.99,02/21/19 13:41,"931 4th St, Los Angeles, CA 90001" +166192,Macbook Pro Laptop,1,1700,02/28/19 13:12,"855 10th St, San Francisco, CA 94016" +166193,Google Phone,1,600,02/15/19 10:32,"794 Wilson St, Austin, TX 73301" +166193,USB-C Charging Cable,1,11.95,02/15/19 10:32,"794 Wilson St, Austin, TX 73301" +166194,ThinkPad Laptop,1,999.99,02/07/19 06:37,"242 Washington St, Atlanta, GA 30301" +166195,USB-C Charging Cable,1,11.95,02/20/19 12:41,"318 Walnut St, Boston, MA 02215" +166196,27in 4K Gaming Monitor,1,389.99,02/02/19 13:55,"884 Main St, Seattle, WA 98101" +166197,Wired Headphones,1,11.99,02/20/19 23:01,"830 9th St, Portland, OR 97035" +166198,AAA Batteries (4-pack),1,2.99,02/09/19 05:07,"984 Highland St, New York City, NY 10001" +166199,AAA Batteries (4-pack),2,2.99,02/07/19 10:20,"407 Highland St, San Francisco, CA 94016" +166200,Lightning Charging Cable,1,14.95,02/03/19 14:12,"70 Ridge St, San Francisco, CA 94016" +166201,34in Ultrawide Monitor,1,379.99,02/24/19 14:07,"116 Johnson St, Boston, MA 02215" +166202,ThinkPad Laptop,1,999.99,02/28/19 23:58,"897 7th St, Seattle, WA 98101" +166203,Wired Headphones,1,11.99,02/07/19 19:53,"470 8th St, New York City, NY 10001" +166204,iPhone,1,700,02/06/19 20:40,"871 13th St, San Francisco, CA 94016" +166205,Lightning Charging Cable,1,14.95,02/05/19 00:16,"165 Johnson St, Los Angeles, CA 90001" +166205,Macbook Pro Laptop,1,1700,02/05/19 00:16,"165 Johnson St, Los Angeles, CA 90001" +166206,Bose SoundSport Headphones,1,99.99,02/16/19 11:10,"278 13th St, San Francisco, CA 94016" +166207,ThinkPad Laptop,1,999.99,02/18/19 20:21,"158 Lakeview St, New York City, NY 10001" +166208,ThinkPad Laptop,1,999.99,02/05/19 23:39,"368 River St, San Francisco, CA 94016" +166209,Wired Headphones,1,11.99,02/24/19 11:08,"22 4th St, New York City, NY 10001" +166210,Apple Airpods Headphones,1,150,02/20/19 21:18,"173 Wilson St, New York City, NY 10001" +166211,USB-C Charging Cable,1,11.95,02/09/19 23:04,"473 7th St, Dallas, TX 75001" +166212,Lightning Charging Cable,1,14.95,02/26/19 01:11,"822 North St, Portland, OR 97035" +166212,Bose SoundSport Headphones,1,99.99,02/26/19 01:11,"822 North St, Portland, OR 97035" +166213,AA Batteries (4-pack),2,3.84,02/11/19 20:47,"464 Park St, New York City, NY 10001" +166214,AA Batteries (4-pack),1,3.84,02/08/19 15:27,"732 Ridge St, Portland, OR 97035" +166215,Apple Airpods Headphones,1,150,02/27/19 12:35,"566 Lincoln St, Dallas, TX 75001" +166216,AAA Batteries (4-pack),4,2.99,02/10/19 15:12,"270 Spruce St, San Francisco, CA 94016" +166217,27in 4K Gaming Monitor,1,389.99,02/28/19 16:13,"393 11th St, San Francisco, CA 94016" +166218,Wired Headphones,1,11.99,02/09/19 17:13,"795 Maple St, Los Angeles, CA 90001" +166219,Lightning Charging Cable,1,14.95,02/25/19 19:20,"933 9th St, Dallas, TX 75001" +166220,Apple Airpods Headphones,1,150,02/23/19 15:13,"698 Highland St, Atlanta, GA 30301" +166221,Bose SoundSport Headphones,1,99.99,02/16/19 13:48,"938 Maple St, Atlanta, GA 30301" +166222,20in Monitor,1,109.99,02/02/19 17:24,"949 Ridge St, San Francisco, CA 94016" +166223,Google Phone,1,600,02/20/19 09:53,"331 11th St, Atlanta, GA 30301" +166223,USB-C Charging Cable,1,11.95,02/20/19 09:53,"331 11th St, Atlanta, GA 30301" +166224,USB-C Charging Cable,1,11.95,02/10/19 01:03,"805 6th St, Los Angeles, CA 90001" +166225,Bose SoundSport Headphones,1,99.99,02/13/19 16:12,"643 West St, Austin, TX 73301" +166226,Lightning Charging Cable,1,14.95,02/09/19 18:53,"775 Willow St, San Francisco, CA 94016" +166227,USB-C Charging Cable,1,11.95,02/11/19 21:41,"131 7th St, Seattle, WA 98101" +166228,Apple Airpods Headphones,1,150,02/26/19 12:59,"544 Maple St, New York City, NY 10001" +166229,Google Phone,1,600,02/18/19 19:40,"49 1st St, Boston, MA 02215" +166230,AAA Batteries (4-pack),1,2.99,02/09/19 11:23,"194 Cedar St, Los Angeles, CA 90001" +166231,Lightning Charging Cable,1,14.95,02/20/19 11:21,"306 7th St, San Francisco, CA 94016" +166232,Bose SoundSport Headphones,1,99.99,02/05/19 13:11,"928 Wilson St, Boston, MA 02215" +166233,Wired Headphones,1,11.99,02/14/19 18:52,"897 6th St, Los Angeles, CA 90001" +166233,AA Batteries (4-pack),2,3.84,02/14/19 18:52,"897 6th St, Los Angeles, CA 90001" +166234,AAA Batteries (4-pack),3,2.99,02/17/19 10:17,"217 Wilson St, San Francisco, CA 94016" +166235,Apple Airpods Headphones,1,150,02/01/19 12:11,"67 Lakeview St, Los Angeles, CA 90001" +166236,AA Batteries (4-pack),1,3.84,02/15/19 19:08,"510 South St, San Francisco, CA 94016" +166237,Lightning Charging Cable,2,14.95,02/02/19 12:35,"537 River St, New York City, NY 10001" +166238,Bose SoundSport Headphones,1,99.99,02/07/19 15:49,"750 Johnson St, San Francisco, CA 94016" +166239,Apple Airpods Headphones,1,150,02/02/19 20:31,"391 1st St, Dallas, TX 75001" +166240,Apple Airpods Headphones,1,150,02/12/19 20:41,"583 Center St, Seattle, WA 98101" +166241,USB-C Charging Cable,1,11.95,02/12/19 23:59,"127 Chestnut St, New York City, NY 10001" +166242,Flatscreen TV,1,300,02/25/19 17:32,"240 4th St, Los Angeles, CA 90001" +166243,Apple Airpods Headphones,1,150,02/27/19 14:51,"295 South St, Seattle, WA 98101" +166244,AA Batteries (4-pack),1,3.84,02/08/19 17:14,"725 Cedar St, Boston, MA 02215" +166245,Flatscreen TV,1,300,02/07/19 17:37,"353 South St, San Francisco, CA 94016" +166246,Lightning Charging Cable,1,14.95,02/03/19 11:42,"94 Meadow St, Dallas, TX 75001" +166247,27in FHD Monitor,1,149.99,02/14/19 12:54,"899 Highland St, Boston, MA 02215" +166248,AA Batteries (4-pack),1,3.84,02/22/19 16:55,"26 Jackson St, Los Angeles, CA 90001" +166249,Macbook Pro Laptop,1,1700,02/10/19 14:14,"642 Chestnut St, New York City, NY 10001" +166250,Wired Headphones,3,11.99,02/02/19 17:07,"109 7th St, Los Angeles, CA 90001" +166251,USB-C Charging Cable,1,11.95,02/09/19 14:10,"100 11th St, San Francisco, CA 94016" +166252,ThinkPad Laptop,1,999.99,02/20/19 05:57,"896 13th St, Austin, TX 73301" +166253,27in 4K Gaming Monitor,1,389.99,02/14/19 00:19,"397 Walnut St, San Francisco, CA 94016" +166254,Flatscreen TV,1,300,02/11/19 08:09,"175 Maple St, Seattle, WA 98101" +166255,AA Batteries (4-pack),1,3.84,02/25/19 13:50,"364 Church St, San Francisco, CA 94016" +166256,AAA Batteries (4-pack),4,2.99,02/28/19 14:49,"848 13th St, Austin, TX 73301" +166257,Apple Airpods Headphones,1,150,02/14/19 19:02,"419 Lincoln St, New York City, NY 10001" +166258,Bose SoundSport Headphones,1,99.99,02/11/19 21:16,"611 Cedar St, Seattle, WA 98101" +166259,AAA Batteries (4-pack),1,2.99,02/16/19 12:00,"345 Pine St, Los Angeles, CA 90001" +166260,Bose SoundSport Headphones,1,99.99,02/01/19 15:47,"821 13th St, San Francisco, CA 94016" +166261,AAA Batteries (4-pack),2,2.99,02/14/19 08:15,"245 Main St, Portland, OR 97035" +166262,27in 4K Gaming Monitor,1,389.99,02/26/19 18:21,"901 Forest St, Atlanta, GA 30301" +166263,USB-C Charging Cable,1,11.95,02/28/19 14:30,"827 Spruce St, Seattle, WA 98101" +166263,34in Ultrawide Monitor,1,379.99,02/28/19 14:30,"827 Spruce St, Seattle, WA 98101" +166264,USB-C Charging Cable,1,11.95,02/07/19 14:31,"719 Church St, Boston, MA 02215" +166265,ThinkPad Laptop,1,999.99,02/02/19 09:27,"654 1st St, San Francisco, CA 94016" +166266,Lightning Charging Cable,1,14.95,02/26/19 09:31,"504 Lincoln St, Boston, MA 02215" +166267,AA Batteries (4-pack),1,3.84,02/12/19 10:29,"807 Forest St, Seattle, WA 98101" +166268,iPhone,1,700,02/05/19 14:29,"718 4th St, Boston, MA 02215" +166269,ThinkPad Laptop,1,999.99,02/01/19 13:38,"422 Johnson St, New York City, NY 10001" +166270,27in 4K Gaming Monitor,1,389.99,02/01/19 08:53,"799 Elm St, New York City, NY 10001" +166271,Lightning Charging Cable,1,14.95,02/02/19 14:15,"607 11th St, Los Angeles, CA 90001" +166272,USB-C Charging Cable,1,11.95,02/11/19 15:09,"128 9th St, Boston, MA 02215" +166273,20in Monitor,1,109.99,02/23/19 04:22,"672 South St, Los Angeles, CA 90001" +166273,Bose SoundSport Headphones,1,99.99,02/23/19 04:22,"672 South St, Los Angeles, CA 90001" +166274,USB-C Charging Cable,1,11.95,02/28/19 10:29,"150 Walnut St, Boston, MA 02215" +166275,Lightning Charging Cable,1,14.95,02/13/19 16:56,"437 Washington St, New York City, NY 10001" +166276,Flatscreen TV,1,300,02/12/19 13:53,"152 4th St, Atlanta, GA 30301" +166277,Apple Airpods Headphones,1,150,02/01/19 14:50,"294 5th St, Austin, TX 73301" +166278,iPhone,1,700,02/21/19 13:12,"185 1st St, Los Angeles, CA 90001" +166279,USB-C Charging Cable,1,11.95,02/01/19 23:36,"184 West St, New York City, NY 10001" +166280,Macbook Pro Laptop,1,1700,02/17/19 10:49,"151 Ridge St, Boston, MA 02215" +166281,USB-C Charging Cable,1,11.95,02/05/19 12:04,"954 14th St, Los Angeles, CA 90001" +166282,ThinkPad Laptop,1,999.99,02/06/19 12:06,"610 5th St, San Francisco, CA 94016" +166283,AA Batteries (4-pack),1,3.84,02/12/19 11:46,"779 Pine St, Los Angeles, CA 90001" +166284,AA Batteries (4-pack),1,3.84,02/20/19 09:38,"174 Wilson St, San Francisco, CA 94016" +166285,Google Phone,1,600,02/18/19 14:55,"854 Cedar St, Boston, MA 02215" +166286,AAA Batteries (4-pack),1,2.99,02/20/19 21:34,"656 Maple St, Los Angeles, CA 90001" +166287,Apple Airpods Headphones,1,150,02/10/19 16:11,"753 Center St, San Francisco, CA 94016" +166288,iPhone,1,700,02/16/19 00:17,"810 Lincoln St, San Francisco, CA 94016" +166289,27in FHD Monitor,1,149.99,02/05/19 13:32,"733 Johnson St, New York City, NY 10001" +166290,Bose SoundSport Headphones,1,99.99,02/21/19 13:41,"978 Park St, Los Angeles, CA 90001" +166291,iPhone,1,700,02/16/19 14:50,"696 7th St, Los Angeles, CA 90001" +166291,Apple Airpods Headphones,1,150,02/16/19 14:50,"696 7th St, Los Angeles, CA 90001" +166292,iPhone,1,700,02/06/19 00:39,"789 Lincoln St, Atlanta, GA 30301" +166292,Wired Headphones,1,11.99,02/06/19 00:39,"789 Lincoln St, Atlanta, GA 30301" +166293,AAA Batteries (4-pack),2,2.99,02/03/19 17:31,"521 Walnut St, Seattle, WA 98101" +166294,Wired Headphones,1,11.99,02/16/19 10:46,"126 12th St, Los Angeles, CA 90001" +166295,USB-C Charging Cable,1,11.95,02/15/19 17:25,"586 Jefferson St, Los Angeles, CA 90001" +166296,Macbook Pro Laptop,1,1700,02/17/19 20:01,"646 Jackson St, San Francisco, CA 94016" +166297,Wired Headphones,1,11.99,02/24/19 12:06,"955 Hickory St, Seattle, WA 98101" +166298,AA Batteries (4-pack),1,3.84,02/11/19 12:03,"1 Highland St, Los Angeles, CA 90001" +166299,34in Ultrawide Monitor,1,379.99,02/08/19 18:37,"592 Madison St, San Francisco, CA 94016" +166300,ThinkPad Laptop,1,999.99,02/09/19 12:27,"399 7th St, San Francisco, CA 94016" +166301,34in Ultrawide Monitor,1,379.99,02/21/19 19:16,"554 Jackson St, Atlanta, GA 30301" +166302,USB-C Charging Cable,1,11.95,02/02/19 07:27,"854 5th St, Boston, MA 02215" +166303,27in FHD Monitor,1,149.99,02/05/19 14:02,"151 Forest St, Portland, OR 97035" +166304,Lightning Charging Cable,1,14.95,02/02/19 11:29,"877 1st St, San Francisco, CA 94016" +166305,Bose SoundSport Headphones,1,99.99,02/20/19 10:50,"152 Hill St, Los Angeles, CA 90001" +166306,AAA Batteries (4-pack),1,2.99,02/25/19 12:45,"153 Highland St, San Francisco, CA 94016" +166307,Bose SoundSport Headphones,1,99.99,02/04/19 14:58,"976 Pine St, Seattle, WA 98101" +166308,AAA Batteries (4-pack),1,2.99,02/12/19 13:32,"587 14th St, Los Angeles, CA 90001" +166309,Wired Headphones,2,11.99,02/08/19 00:42,"125 14th St, Dallas, TX 75001" +166310,Lightning Charging Cable,2,14.95,02/16/19 18:32,"508 1st St, Los Angeles, CA 90001" +166311,Lightning Charging Cable,1,14.95,02/25/19 13:37,"176 2nd St, Portland, OR 97035" +166312,20in Monitor,1,109.99,02/04/19 20:29,"33 Madison St, Portland, OR 97035" +166313,Wired Headphones,1,11.99,02/17/19 21:01,"456 Main St, Dallas, TX 75001" +166314,AAA Batteries (4-pack),1,2.99,02/15/19 10:39,"164 Cedar St, Boston, MA 02215" +166315,27in 4K Gaming Monitor,1,389.99,02/04/19 20:23,"560 Lincoln St, Portland, OR 97035" +166316,Bose SoundSport Headphones,1,99.99,02/22/19 15:22,"989 Johnson St, Seattle, WA 98101" +166317,USB-C Charging Cable,1,11.95,02/09/19 08:13,"817 5th St, New York City, NY 10001" +166318,20in Monitor,1,109.99,02/23/19 11:25,"810 Lakeview St, San Francisco, CA 94016" +166319,ThinkPad Laptop,1,999.99,02/03/19 11:13,"265 11th St, Los Angeles, CA 90001" +166320,USB-C Charging Cable,1,11.95,02/06/19 12:50,"490 Walnut St, Atlanta, GA 30301" +166321,34in Ultrawide Monitor,1,379.99,02/06/19 16:32,"960 Pine St, Boston, MA 02215" +166322,iPhone,1,700,02/25/19 12:27,"894 Church St, Boston, MA 02215" +166323,Lightning Charging Cable,1,14.95,02/16/19 21:47,"859 12th St, Atlanta, GA 30301" +166324,Apple Airpods Headphones,1,150,02/15/19 16:03,"793 Dogwood St, Los Angeles, CA 90001" +166325,AAA Batteries (4-pack),2,2.99,02/04/19 21:26,"540 Forest St, New York City, NY 10001" +166326,Apple Airpods Headphones,1,150,02/24/19 00:03,"253 Lake St, San Francisco, CA 94016" +166327,Apple Airpods Headphones,1,150,02/20/19 12:10,"54 Center St, Los Angeles, CA 90001" +166328,USB-C Charging Cable,1,11.95,02/10/19 19:30,"90 Jackson St, New York City, NY 10001" +166329,AA Batteries (4-pack),2,3.84,02/26/19 14:41,"415 9th St, Boston, MA 02215" +166330,AAA Batteries (4-pack),2,2.99,02/11/19 09:08,"86 Willow St, New York City, NY 10001" +166331,Bose SoundSport Headphones,1,99.99,02/01/19 19:32,"122 12th St, Seattle, WA 98101" +166332,iPhone,1,700,02/27/19 10:42,"985 Sunset St, Los Angeles, CA 90001" +166333,AAA Batteries (4-pack),1,2.99,02/17/19 21:15,"232 Hickory St, San Francisco, CA 94016" +166334,Apple Airpods Headphones,1,150,02/06/19 18:38,"33 Johnson St, Austin, TX 73301" +166335,USB-C Charging Cable,1,11.95,02/06/19 21:29,"722 10th St, Seattle, WA 98101" +166336,USB-C Charging Cable,1,11.95,02/21/19 17:35,"644 Church St, Atlanta, GA 30301" +166337,Google Phone,1,600,02/04/19 14:54,"416 Hill St, San Francisco, CA 94016" +166338,Bose SoundSport Headphones,1,99.99,02/03/19 14:11,"477 River St, New York City, NY 10001" +166339,AAA Batteries (4-pack),1,2.99,02/17/19 13:14,"36 Cherry St, Dallas, TX 75001" +166340,Vareebadd Phone,1,400,02/24/19 08:00,"424 Johnson St, Dallas, TX 75001" +166341,AA Batteries (4-pack),2,3.84,02/28/19 15:40,"373 Jefferson St, New York City, NY 10001" +166342,Wired Headphones,1,11.99,02/28/19 07:25,"898 Pine St, Dallas, TX 75001" +166343,iPhone,1,700,02/11/19 20:10,"141 Washington St, Boston, MA 02215" +166344,AAA Batteries (4-pack),1,2.99,02/26/19 11:18,"511 1st St, Seattle, WA 98101" +166345,27in 4K Gaming Monitor,1,389.99,02/27/19 17:54,"86 Cedar St, Boston, MA 02215" +166346,USB-C Charging Cable,1,11.95,02/07/19 18:15,"585 Sunset St, San Francisco, CA 94016" +166347,USB-C Charging Cable,2,11.95,02/16/19 21:55,"273 8th St, New York City, NY 10001" +166348,AA Batteries (4-pack),1,3.84,02/18/19 01:52,"110 Adams St, San Francisco, CA 94016" +166349,AA Batteries (4-pack),1,3.84,02/07/19 16:06,"469 Chestnut St, San Francisco, CA 94016" +166350,Lightning Charging Cable,1,14.95,02/06/19 11:33,"572 Forest St, Portland, OR 97035" +166351,AA Batteries (4-pack),1,3.84,02/15/19 09:18,"614 5th St, San Francisco, CA 94016" +166352,Lightning Charging Cable,1,14.95,02/20/19 22:27,"898 Hill St, Portland, ME 04101" +166353,AAA Batteries (4-pack),3,2.99,02/27/19 01:02,"616 West St, Seattle, WA 98101" +166354,AA Batteries (4-pack),1,3.84,02/10/19 21:46,"860 Church St, San Francisco, CA 94016" +166355,LG Washing Machine,1,600.0,02/22/19 19:16,"168 Cherry St, Seattle, WA 98101" +166356,Apple Airpods Headphones,1,150,02/20/19 11:03,"303 River St, Austin, TX 73301" +166357,AA Batteries (4-pack),1,3.84,02/28/19 12:48,"764 2nd St, Boston, MA 02215" +166358,27in FHD Monitor,1,149.99,02/24/19 09:38,"125 14th St, Boston, MA 02215" +166359,Lightning Charging Cable,1,14.95,02/04/19 12:50,"890 Spruce St, San Francisco, CA 94016" +166360,iPhone,1,700,02/10/19 09:11,"934 Hill St, New York City, NY 10001" +166360,Lightning Charging Cable,2,14.95,02/10/19 09:11,"934 Hill St, New York City, NY 10001" +166361,USB-C Charging Cable,1,11.95,02/11/19 17:35,"26 Wilson St, Seattle, WA 98101" +166362,Lightning Charging Cable,1,14.95,02/07/19 22:39,"376 Walnut St, San Francisco, CA 94016" +166363,AAA Batteries (4-pack),1,2.99,02/06/19 10:03,"811 Highland St, San Francisco, CA 94016" +166364,AA Batteries (4-pack),1,3.84,02/25/19 20:09,"745 Sunset St, Los Angeles, CA 90001" +166365,27in FHD Monitor,1,149.99,02/15/19 19:23,"545 Wilson St, Los Angeles, CA 90001" +166366,Apple Airpods Headphones,1,150,02/26/19 21:24,"736 South St, San Francisco, CA 94016" +166367,Apple Airpods Headphones,1,150,02/16/19 21:36,"580 Walnut St, Atlanta, GA 30301" +166367,ThinkPad Laptop,1,999.99,02/16/19 21:36,"580 Walnut St, Atlanta, GA 30301" +166368,Lightning Charging Cable,1,14.95,02/27/19 21:31,"841 Chestnut St, Boston, MA 02215" +166369,Lightning Charging Cable,1,14.95,02/06/19 13:59,"665 Meadow St, Boston, MA 02215" +166370,AA Batteries (4-pack),1,3.84,02/15/19 18:33,"871 Cherry St, Boston, MA 02215" +166371,Apple Airpods Headphones,1,150,02/15/19 01:50,"583 South St, Seattle, WA 98101" +166372,Wired Headphones,1,11.99,02/02/19 18:10,"971 2nd St, Los Angeles, CA 90001" +166373,Wired Headphones,1,11.99,02/18/19 16:16,"244 Lincoln St, San Francisco, CA 94016" +166374,AA Batteries (4-pack),2,3.84,02/22/19 19:01,"791 5th St, Dallas, TX 75001" +166375,Flatscreen TV,1,300,02/11/19 16:36,"721 Lake St, New York City, NY 10001" +166376,USB-C Charging Cable,1,11.95,02/15/19 13:24,"331 Washington St, Seattle, WA 98101" +166377,USB-C Charging Cable,1,11.95,02/27/19 19:35,"738 Cherry St, San Francisco, CA 94016" +166378,AAA Batteries (4-pack),1,2.99,02/16/19 05:48,"627 Lakeview St, Seattle, WA 98101" +166379,Wired Headphones,1,11.99,02/24/19 07:19,"900 South St, Boston, MA 02215" +166380,20in Monitor,1,109.99,02/17/19 09:47,"11 West St, Atlanta, GA 30301" +166381,AA Batteries (4-pack),2,3.84,02/19/19 21:39,"170 Lakeview St, Austin, TX 73301" +166382,Bose SoundSport Headphones,1,99.99,02/04/19 23:15,"243 4th St, Atlanta, GA 30301" +166383,Google Phone,1,600,02/03/19 22:04,"24 Church St, Los Angeles, CA 90001" +166384,LG Washing Machine,1,600.0,02/25/19 11:37,"573 Sunset St, San Francisco, CA 94016" +166385,USB-C Charging Cable,1,11.95,02/21/19 23:05,"48 Pine St, Boston, MA 02215" +166385,AAA Batteries (4-pack),1,2.99,02/21/19 23:05,"48 Pine St, Boston, MA 02215" +166386,27in 4K Gaming Monitor,1,389.99,02/20/19 15:33,"80 Jefferson St, San Francisco, CA 94016" +166387,27in FHD Monitor,1,149.99,02/08/19 20:57,"21 Park St, New York City, NY 10001" +166388,ThinkPad Laptop,1,999.99,02/16/19 22:15,"120 14th St, Dallas, TX 75001" +166389,Lightning Charging Cable,1,14.95,02/01/19 14:16,"210 Johnson St, San Francisco, CA 94016" +166390,AAA Batteries (4-pack),2,2.99,02/18/19 17:21,"73 Church St, New York City, NY 10001" +166391,AAA Batteries (4-pack),1,2.99,02/26/19 08:20,"910 4th St, New York City, NY 10001" +166392,Apple Airpods Headphones,1,150,02/10/19 11:23,"907 Willow St, San Francisco, CA 94016" +166393,27in 4K Gaming Monitor,1,389.99,02/28/19 19:24,"954 Church St, Dallas, TX 75001" +166394,Bose SoundSport Headphones,1,99.99,02/19/19 20:18,"987 Church St, Portland, ME 04101" +166395,Lightning Charging Cable,1,14.95,02/10/19 15:21,"171 Ridge St, San Francisco, CA 94016" +166396,Lightning Charging Cable,2,14.95,02/24/19 14:32,"663 Highland St, Dallas, TX 75001" +166397,Bose SoundSport Headphones,1,99.99,02/27/19 23:07,"602 6th St, Seattle, WA 98101" +166398,iPhone,1,700,02/18/19 21:53,"755 Lincoln St, New York City, NY 10001" +166398,Lightning Charging Cable,1,14.95,02/18/19 21:53,"755 Lincoln St, New York City, NY 10001" +166399,ThinkPad Laptop,1,999.99,02/03/19 22:06,"237 Main St, Atlanta, GA 30301" +166400,iPhone,1,700,02/28/19 11:56,"99 Pine St, San Francisco, CA 94016" +166401,USB-C Charging Cable,1,11.95,02/24/19 11:38,"85 Center St, San Francisco, CA 94016" +166402,27in 4K Gaming Monitor,1,389.99,02/04/19 20:32,"860 Maple St, San Francisco, CA 94016" +166403,AAA Batteries (4-pack),2,2.99,02/19/19 10:15,"398 7th St, San Francisco, CA 94016" +166404,27in 4K Gaming Monitor,1,389.99,02/02/19 06:37,"402 Cedar St, Los Angeles, CA 90001" +166405,Bose SoundSport Headphones,1,99.99,02/17/19 19:39,"56 Jefferson St, Los Angeles, CA 90001" +166406,Bose SoundSport Headphones,1,99.99,02/01/19 18:11,"594 5th St, Boston, MA 02215" +166407,Wired Headphones,1,11.99,02/24/19 21:01,"415 9th St, Dallas, TX 75001" +166408,20in Monitor,1,109.99,02/18/19 17:04,"907 Church St, San Francisco, CA 94016" +166409,USB-C Charging Cable,1,11.95,02/08/19 18:50,"768 Main St, Dallas, TX 75001" +166410,Bose SoundSport Headphones,1,99.99,02/06/19 15:46,"799 Dogwood St, San Francisco, CA 94016" +166411,Wired Headphones,1,11.99,02/23/19 15:57,"112 Maple St, San Francisco, CA 94016" +166412,iPhone,1,700,02/03/19 16:11,"627 14th St, Dallas, TX 75001" +166413,AA Batteries (4-pack),1,3.84,02/27/19 07:27,"547 Cherry St, San Francisco, CA 94016" +166414,Apple Airpods Headphones,1,150,02/07/19 12:14,"898 1st St, New York City, NY 10001" +166415,LG Washing Machine,1,600.0,02/13/19 19:04,"668 10th St, Boston, MA 02215" +166415,Wired Headphones,2,11.99,02/13/19 19:04,"668 10th St, Boston, MA 02215" +166416,Apple Airpods Headphones,1,150,02/25/19 13:21,"640 North St, San Francisco, CA 94016" +166417,Bose SoundSport Headphones,1,99.99,02/23/19 23:34,"129 Hickory St, Dallas, TX 75001" +166418,Vareebadd Phone,1,400,02/10/19 03:56,"18 10th St, Atlanta, GA 30301" +166419,Wired Headphones,1,11.99,02/24/19 08:58,"370 Lincoln St, San Francisco, CA 94016" +166420,Bose SoundSport Headphones,1,99.99,02/26/19 19:31,"61 Hickory St, Dallas, TX 75001" +166421,AA Batteries (4-pack),1,3.84,02/05/19 11:23,"104 Highland St, New York City, NY 10001" +166422,AAA Batteries (4-pack),2,2.99,02/17/19 08:41,"887 9th St, Los Angeles, CA 90001" +166423,Bose SoundSport Headphones,1,99.99,02/02/19 15:41,"961 Ridge St, Los Angeles, CA 90001" +166424,Apple Airpods Headphones,1,150,02/19/19 15:49,"893 14th St, Los Angeles, CA 90001" +166425,27in 4K Gaming Monitor,1,389.99,02/25/19 09:11,"557 Washington St, Austin, TX 73301" +166426,34in Ultrawide Monitor,1,379.99,02/26/19 21:31,"262 12th St, Boston, MA 02215" +166427,Lightning Charging Cable,1,14.95,02/20/19 01:30,"17 Jackson St, New York City, NY 10001" +166428,ThinkPad Laptop,1,999.99,02/15/19 08:46,"862 8th St, San Francisco, CA 94016" +166429,AA Batteries (4-pack),2,3.84,02/16/19 09:52,"570 Lincoln St, Austin, TX 73301" +166430,AAA Batteries (4-pack),1,2.99,02/08/19 23:37,"265 2nd St, Los Angeles, CA 90001" +166431,Lightning Charging Cable,1,14.95,02/19/19 22:55,"966 Park St, San Francisco, CA 94016" +166432,Bose SoundSport Headphones,1,99.99,02/04/19 10:13,"699 Meadow St, Dallas, TX 75001" +166433,Lightning Charging Cable,1,14.95,02/24/19 21:32,"250 9th St, Portland, OR 97035" +166434,34in Ultrawide Monitor,1,379.99,02/11/19 01:32,"252 Park St, San Francisco, CA 94016" +166435,Bose SoundSport Headphones,1,99.99,02/24/19 11:17,"190 Chestnut St, New York City, NY 10001" +166436,AAA Batteries (4-pack),1,2.99,02/03/19 17:32,"44 4th St, Boston, MA 02215" +166437,AA Batteries (4-pack),1,3.84,02/20/19 15:04,"184 13th St, Portland, ME 04101" +166438,Lightning Charging Cable,1,14.95,02/05/19 11:05,"995 Jefferson St, San Francisco, CA 94016" +166439,Flatscreen TV,1,300,02/06/19 19:04,"171 5th St, New York City, NY 10001" +166440,USB-C Charging Cable,1,11.95,02/10/19 12:46,"271 Madison St, Los Angeles, CA 90001" +166441,27in 4K Gaming Monitor,1,389.99,02/28/19 11:39,"245 9th St, Dallas, TX 75001" +166442,Lightning Charging Cable,1,14.95,02/20/19 12:29,"109 Church St, Boston, MA 02215" +166443,Wired Headphones,1,11.99,02/10/19 19:28,"765 Chestnut St, Seattle, WA 98101" +166444,Macbook Pro Laptop,1,1700,02/24/19 22:34,"121 Washington St, Seattle, WA 98101" +166445,Flatscreen TV,1,300,02/16/19 15:33,"407 River St, Portland, OR 97035" +166446,27in FHD Monitor,1,149.99,02/19/19 21:05,"707 12th St, San Francisco, CA 94016" +166447,Apple Airpods Headphones,1,150,02/28/19 01:10,"902 Spruce St, San Francisco, CA 94016" +166448,27in 4K Gaming Monitor,1,389.99,02/01/19 09:19,"598 2nd St, Atlanta, GA 30301" +166449,Wired Headphones,1,11.99,02/18/19 01:23,"675 7th St, Atlanta, GA 30301" +166450,Lightning Charging Cable,1,14.95,02/14/19 20:57,"656 River St, San Francisco, CA 94016" +166451,Wired Headphones,1,11.99,02/16/19 16:49,"766 Church St, Seattle, WA 98101" +166452,AAA Batteries (4-pack),1,2.99,02/28/19 11:21,"441 11th St, Seattle, WA 98101" +166453,Apple Airpods Headphones,1,150,02/27/19 10:13,"357 Church St, Seattle, WA 98101" +166454,27in FHD Monitor,1,149.99,02/05/19 23:09,"72 Adams St, Seattle, WA 98101" +166455,USB-C Charging Cable,1,11.95,02/13/19 10:49,"339 Johnson St, Los Angeles, CA 90001" +166456,Macbook Pro Laptop,1,1700,02/28/19 18:47,"31 Washington St, Boston, MA 02215" +166457,Apple Airpods Headphones,1,150,02/26/19 11:53,"537 Madison St, Portland, OR 97035" +166458,AAA Batteries (4-pack),1,2.99,02/26/19 21:47,"100 Ridge St, Portland, OR 97035" +166459,iPhone,1,700,02/14/19 19:04,"334 Chestnut St, San Francisco, CA 94016" +166460,Macbook Pro Laptop,1,1700,02/18/19 15:28,"650 Highland St, San Francisco, CA 94016" +166461,Macbook Pro Laptop,1,1700,02/25/19 21:43,"755 Wilson St, San Francisco, CA 94016" +166462,ThinkPad Laptop,1,999.99,02/18/19 09:49,"321 1st St, San Francisco, CA 94016" +166463,AA Batteries (4-pack),1,3.84,02/06/19 09:51,"94 North St, Portland, OR 97035" +166464,Bose SoundSport Headphones,1,99.99,02/10/19 21:01,"896 Ridge St, San Francisco, CA 94016" +166465,USB-C Charging Cable,1,11.95,02/20/19 16:13,"878 South St, Atlanta, GA 30301" +166466,AAA Batteries (4-pack),1,2.99,02/02/19 18:34,"626 North St, Dallas, TX 75001" +166467,Lightning Charging Cable,3,14.95,02/25/19 09:55,"185 Sunset St, Dallas, TX 75001" +166468,27in FHD Monitor,1,149.99,02/16/19 09:00,"133 14th St, Boston, MA 02215" +166469,iPhone,1,700,02/07/19 11:38,"844 Elm St, Seattle, WA 98101" +166470,27in FHD Monitor,1,149.99,02/13/19 21:17,"463 Lake St, San Francisco, CA 94016" +166471,Wired Headphones,1,11.99,02/15/19 18:18,"165 Elm St, Los Angeles, CA 90001" +166472,AAA Batteries (4-pack),1,2.99,02/13/19 04:15,"710 Lakeview St, San Francisco, CA 94016" +166473,Apple Airpods Headphones,1,150,02/13/19 20:42,"563 14th St, Seattle, WA 98101" +166474,34in Ultrawide Monitor,1,379.99,02/28/19 21:39,"43 Walnut St, Boston, MA 02215" +166475,USB-C Charging Cable,1,11.95,02/05/19 12:05,"669 Meadow St, Boston, MA 02215" +166476,AA Batteries (4-pack),2,3.84,02/11/19 16:01,"860 4th St, Seattle, WA 98101" +166477,27in FHD Monitor,1,149.99,02/03/19 17:57,"706 Lake St, San Francisco, CA 94016" +166478,Apple Airpods Headphones,1,150,02/11/19 18:14,"418 Park St, San Francisco, CA 94016" +166479,Wired Headphones,1,11.99,02/16/19 10:31,"188 9th St, San Francisco, CA 94016" +166480,Apple Airpods Headphones,1,150,02/20/19 15:05,"434 Pine St, Austin, TX 73301" +166481,Vareebadd Phone,1,400,02/05/19 01:42,"835 Cherry St, Portland, OR 97035" +166482,27in FHD Monitor,1,149.99,02/13/19 10:45,"825 Lakeview St, San Francisco, CA 94016" +166483,AAA Batteries (4-pack),5,2.99,02/12/19 15:02,"22 1st St, San Francisco, CA 94016" +166483,AA Batteries (4-pack),4,3.84,02/12/19 15:02,"22 1st St, San Francisco, CA 94016" +166484,27in FHD Monitor,1,149.99,02/19/19 06:19,"140 Main St, San Francisco, CA 94016" +166485,Wired Headphones,1,11.99,02/22/19 14:43,"920 Wilson St, Dallas, TX 75001" +166486,AA Batteries (4-pack),1,3.84,02/22/19 08:27,"477 14th St, Boston, MA 02215" +166487,AA Batteries (4-pack),1,3.84,02/03/19 12:57,"893 Pine St, Boston, MA 02215" +166488,ThinkPad Laptop,1,999.99,02/01/19 13:07,"766 Chestnut St, New York City, NY 10001" +166489,Lightning Charging Cable,1,14.95,02/25/19 10:47,"864 12th St, Austin, TX 73301" +166490,Bose SoundSport Headphones,1,99.99,02/16/19 11:46,"441 Walnut St, Austin, TX 73301" +166491,USB-C Charging Cable,1,11.95,02/26/19 08:29,"212 Chestnut St, Dallas, TX 75001" +166492,Wired Headphones,1,11.99,02/17/19 17:43,"463 7th St, San Francisco, CA 94016" +166493,Google Phone,1,600,02/08/19 11:54,"113 Madison St, New York City, NY 10001" +166494,Lightning Charging Cable,1,14.95,02/01/19 16:19,"519 Johnson St, San Francisco, CA 94016" +166495,34in Ultrawide Monitor,1,379.99,02/15/19 00:02,"363 Madison St, Los Angeles, CA 90001" +166496,Google Phone,1,600,02/27/19 01:08,"557 Walnut St, New York City, NY 10001" +166496,USB-C Charging Cable,2,11.95,02/27/19 01:08,"557 Walnut St, New York City, NY 10001" +166497,AA Batteries (4-pack),1,3.84,02/08/19 22:05,"99 4th St, Atlanta, GA 30301" +166498,Wired Headphones,1,11.99,02/01/19 19:39,"417 14th St, Seattle, WA 98101" +166499,USB-C Charging Cable,1,11.95,02/10/19 08:49,"70 Madison St, Atlanta, GA 30301" +166500,Macbook Pro Laptop,1,1700,02/25/19 20:56,"320 12th St, San Francisco, CA 94016" +166501,Wired Headphones,1,11.99,02/25/19 21:41,"91 9th St, Austin, TX 73301" +166502,Lightning Charging Cable,1,14.95,02/09/19 13:34,"284 West St, Portland, ME 04101" +166503,Lightning Charging Cable,1,14.95,02/03/19 15:42,"88 Ridge St, New York City, NY 10001" +166504,AAA Batteries (4-pack),3,2.99,02/05/19 13:24,"915 Willow St, San Francisco, CA 94016" +166505,Wired Headphones,2,11.99,02/28/19 17:22,"879 Forest St, San Francisco, CA 94016" +166506,20in Monitor,1,109.99,02/02/19 17:31,"997 Hickory St, Los Angeles, CA 90001" +166507,AAA Batteries (4-pack),1,2.99,02/28/19 20:38,"255 Forest St, New York City, NY 10001" +166508,AA Batteries (4-pack),2,3.84,02/14/19 12:51,"753 8th St, Seattle, WA 98101" +166509,Bose SoundSport Headphones,1,99.99,02/06/19 14:18,"532 7th St, Los Angeles, CA 90001" +166510,AAA Batteries (4-pack),1,2.99,02/28/19 02:44,"371 Wilson St, Dallas, TX 75001" +166511,Apple Airpods Headphones,1,150,02/25/19 17:35,"311 Willow St, New York City, NY 10001" +166512,Flatscreen TV,1,300,02/26/19 00:48,"155 Johnson St, Atlanta, GA 30301" +166513,Lightning Charging Cable,1,14.95,02/21/19 04:03,"238 Elm St, Los Angeles, CA 90001" +166514,Apple Airpods Headphones,1,150,02/08/19 15:26,"29 Cedar St, San Francisco, CA 94016" +166515,Apple Airpods Headphones,1,150,02/25/19 10:06,"852 12th St, San Francisco, CA 94016" +166515,Wired Headphones,2,11.99,02/25/19 10:06,"852 12th St, San Francisco, CA 94016" +166516,Lightning Charging Cable,1,14.95,02/13/19 20:07,"200 Cedar St, Boston, MA 02215" +166517,AA Batteries (4-pack),2,3.84,02/08/19 00:45,"617 Elm St, New York City, NY 10001" +166518,Bose SoundSport Headphones,1,99.99,02/13/19 11:34,"793 4th St, Seattle, WA 98101" +166519,iPhone,1,700,02/25/19 14:17,"37 2nd St, San Francisco, CA 94016" +166520,Wired Headphones,2,11.99,02/14/19 16:43,"107 7th St, New York City, NY 10001" +166521,AA Batteries (4-pack),1,3.84,02/03/19 17:56,"703 Church St, Portland, OR 97035" +166522,AA Batteries (4-pack),3,3.84,02/21/19 01:04,"347 Meadow St, Austin, TX 73301" +166523,34in Ultrawide Monitor,1,379.99,02/12/19 15:36,"246 13th St, San Francisco, CA 94016" +166524,Lightning Charging Cable,1,14.95,02/02/19 20:43,"208 Jefferson St, Dallas, TX 75001" +166525,Lightning Charging Cable,1,14.95,02/26/19 20:16,"488 10th St, Seattle, WA 98101" +166526,USB-C Charging Cable,1,11.95,02/13/19 21:23,"318 12th St, Los Angeles, CA 90001" +166527,Wired Headphones,1,11.99,02/13/19 20:21,"348 Sunset St, Los Angeles, CA 90001" +166528,Wired Headphones,1,11.99,02/09/19 14:27,"541 6th St, San Francisco, CA 94016" +166529,Bose SoundSport Headphones,1,99.99,02/26/19 19:28,"545 Chestnut St, Boston, MA 02215" +166530,Bose SoundSport Headphones,1,99.99,02/16/19 13:03,"486 Lake St, Los Angeles, CA 90001" +166531,AAA Batteries (4-pack),1,2.99,02/17/19 12:01,"876 Adams St, Boston, MA 02215" +166532,AAA Batteries (4-pack),1,2.99,02/03/19 18:21,"578 7th St, New York City, NY 10001" +166533,Lightning Charging Cable,1,14.95,02/15/19 09:22,"694 Chestnut St, San Francisco, CA 94016" +166534,27in FHD Monitor,1,149.99,02/28/19 13:11,"167 5th St, Atlanta, GA 30301" +166535,Macbook Pro Laptop,1,1700,02/04/19 00:13,"920 7th St, Austin, TX 73301" +166536,Wired Headphones,1,11.99,02/25/19 09:25,"285 Sunset St, San Francisco, CA 94016" +166537,34in Ultrawide Monitor,1,379.99,02/26/19 12:05,"648 10th St, San Francisco, CA 94016" +166538,iPhone,1,700,02/27/19 17:02,"766 12th St, Portland, OR 97035" +166539,Bose SoundSport Headphones,1,99.99,02/11/19 10:51,"190 5th St, Los Angeles, CA 90001" +166540,AAA Batteries (4-pack),1,2.99,02/24/19 18:52,"783 Lake St, Los Angeles, CA 90001" +166541,USB-C Charging Cable,1,11.95,02/26/19 09:17,"716 North St, San Francisco, CA 94016" +166542,USB-C Charging Cable,1,11.95,02/06/19 06:18,"171 Chestnut St, New York City, NY 10001" +166543,AA Batteries (4-pack),4,3.84,02/03/19 15:01,"753 1st St, Boston, MA 02215" +166544,Wired Headphones,1,11.99,02/01/19 18:34,"906 North St, Boston, MA 02215" +166545,Apple Airpods Headphones,1,150,02/07/19 17:20,"612 Madison St, Austin, TX 73301" +166546,AA Batteries (4-pack),1,3.84,02/22/19 13:17,"671 1st St, Seattle, WA 98101" +166547,Bose SoundSport Headphones,1,99.99,02/22/19 18:53,"700 Forest St, Dallas, TX 75001" +166548,Apple Airpods Headphones,1,150,02/12/19 15:01,"430 6th St, San Francisco, CA 94016" +166549,Apple Airpods Headphones,1,150,02/25/19 21:29,"252 Dogwood St, Austin, TX 73301" +166550,iPhone,1,700,02/28/19 23:31,"885 Jefferson St, Atlanta, GA 30301" +166551,AA Batteries (4-pack),1,3.84,02/05/19 15:24,"753 10th St, San Francisco, CA 94016" +166552,Bose SoundSport Headphones,1,99.99,02/20/19 20:58,"743 Adams St, San Francisco, CA 94016" +166553,AA Batteries (4-pack),1,3.84,02/19/19 08:45,"354 Willow St, Los Angeles, CA 90001" +166554,Lightning Charging Cable,1,14.95,02/11/19 13:05,"348 Main St, New York City, NY 10001" +166555,AA Batteries (4-pack),1,3.84,02/25/19 18:47,"219 Sunset St, Austin, TX 73301" +166556,Apple Airpods Headphones,1,150,02/04/19 07:31,"795 Forest St, Dallas, TX 75001" +166557,AA Batteries (4-pack),1,3.84,02/17/19 09:04,"761 Maple St, Portland, ME 04101" +166558,AA Batteries (4-pack),1,3.84,02/15/19 09:28,"173 Willow St, Boston, MA 02215" +166559,Bose SoundSport Headphones,1,99.99,02/02/19 17:40,"19 Dogwood St, Dallas, TX 75001" +166559,Vareebadd Phone,1,400,02/02/19 17:40,"19 Dogwood St, Dallas, TX 75001" +166560,Lightning Charging Cable,1,14.95,02/08/19 07:48,"982 6th St, San Francisco, CA 94016" +166561,Wired Headphones,1,11.99,02/02/19 11:14,"932 North St, Dallas, TX 75001" +166562,AAA Batteries (4-pack),1,2.99,02/08/19 19:36,"562 Wilson St, Atlanta, GA 30301" +166563,Lightning Charging Cable,1,14.95,02/08/19 17:35,"674 9th St, New York City, NY 10001" +166564,Lightning Charging Cable,1,14.95,02/08/19 12:53,"770 Walnut St, Los Angeles, CA 90001" +166565,Wired Headphones,1,11.99,02/13/19 10:53,"380 7th St, San Francisco, CA 94016" +166566,Wired Headphones,1,11.99,02/28/19 13:43,"839 9th St, San Francisco, CA 94016" +166567,Lightning Charging Cable,1,14.95,02/28/19 04:24,"615 8th St, New York City, NY 10001" +166568,USB-C Charging Cable,1,11.95,02/22/19 21:05,"186 6th St, San Francisco, CA 94016" +166569,34in Ultrawide Monitor,1,379.99,02/22/19 19:17,"49 River St, Dallas, TX 75001" +166570,USB-C Charging Cable,1,11.95,02/14/19 04:39,"857 Madison St, San Francisco, CA 94016" +166571,AA Batteries (4-pack),2,3.84,02/10/19 20:25,"928 Hickory St, San Francisco, CA 94016" +166572,Flatscreen TV,1,300,02/18/19 13:06,"871 Hickory St, San Francisco, CA 94016" +166573,Apple Airpods Headphones,1,150,02/05/19 18:43,"917 North St, New York City, NY 10001" +166574,AAA Batteries (4-pack),1,2.99,02/09/19 16:00,"757 North St, Atlanta, GA 30301" +166575,Wired Headphones,1,11.99,02/14/19 13:04,"36 Center St, Boston, MA 02215" +166576,Flatscreen TV,1,300,02/22/19 19:44,"316 Johnson St, Boston, MA 02215" +166577,20in Monitor,1,109.99,02/28/19 23:26,"468 Forest St, New York City, NY 10001" +166578,Lightning Charging Cable,1,14.95,02/28/19 20:53,"736 8th St, San Francisco, CA 94016" +166579,34in Ultrawide Monitor,1,379.99,02/11/19 14:32,"262 Jackson St, San Francisco, CA 94016" +166580,Apple Airpods Headphones,1,150,02/28/19 10:11,"82 Cherry St, New York City, NY 10001" +166581,AA Batteries (4-pack),1,3.84,02/04/19 11:54,"478 Lake St, San Francisco, CA 94016" +166581,Wired Headphones,1,11.99,02/04/19 11:54,"478 Lake St, San Francisco, CA 94016" +166582,27in 4K Gaming Monitor,1,389.99,02/10/19 04:13,"315 Elm St, Los Angeles, CA 90001" +166583,Flatscreen TV,1,300,02/05/19 17:19,"101 Main St, Los Angeles, CA 90001" +166584,Wired Headphones,1,11.99,02/15/19 14:25,"839 Jefferson St, New York City, NY 10001" +166585,AAA Batteries (4-pack),1,2.99,02/02/19 18:52,"6 14th St, Boston, MA 02215" +166586,USB-C Charging Cable,1,11.95,02/17/19 20:16,"570 Lincoln St, New York City, NY 10001" +166587,Lightning Charging Cable,1,14.95,02/12/19 13:12,"941 1st St, San Francisco, CA 94016" +166588,27in FHD Monitor,1,149.99,02/03/19 16:21,"351 Adams St, San Francisco, CA 94016" +166589,Lightning Charging Cable,1,14.95,02/26/19 12:13,"161 Center St, Atlanta, GA 30301" +166590,27in FHD Monitor,1,149.99,02/28/19 15:33,"560 Jackson St, San Francisco, CA 94016" +166591,AA Batteries (4-pack),2,3.84,02/24/19 12:47,"793 Meadow St, Boston, MA 02215" +166592,USB-C Charging Cable,1,11.95,02/09/19 11:50,"681 Willow St, Portland, OR 97035" +166593,27in FHD Monitor,1,149.99,02/05/19 15:30,"683 6th St, Los Angeles, CA 90001" +166593,Apple Airpods Headphones,1,150,02/05/19 15:30,"683 6th St, Los Angeles, CA 90001" +166594,27in FHD Monitor,1,149.99,02/16/19 14:07,"509 Ridge St, San Francisco, CA 94016" +166595,iPhone,1,700,02/14/19 19:51,"826 12th St, San Francisco, CA 94016" +166596,iPhone,1,700,02/07/19 12:13,"274 7th St, New York City, NY 10001" +166596,Lightning Charging Cable,1,14.95,02/07/19 12:13,"274 7th St, New York City, NY 10001" +166597,Bose SoundSport Headphones,1,99.99,02/13/19 11:17,"209 8th St, Los Angeles, CA 90001" +166598,Wired Headphones,1,11.99,02/09/19 07:12,"372 Washington St, San Francisco, CA 94016" +166599,Bose SoundSport Headphones,1,99.99,02/08/19 09:32,"249 Willow St, New York City, NY 10001" +166600,AA Batteries (4-pack),1,3.84,02/06/19 19:32,"40 2nd St, Dallas, TX 75001" +166601,Wired Headphones,1,11.99,02/04/19 12:18,"71 5th St, New York City, NY 10001" +166602,Lightning Charging Cable,1,14.95,02/22/19 14:00,"916 Lincoln St, New York City, NY 10001" +166603,Apple Airpods Headphones,1,150,02/21/19 03:39,"828 Dogwood St, Austin, TX 73301" +166604,Wired Headphones,1,11.99,02/22/19 16:13,"676 West St, San Francisco, CA 94016" +166605,34in Ultrawide Monitor,1,379.99,02/13/19 13:34,"618 1st St, Austin, TX 73301" +166606,iPhone,1,700,02/03/19 08:10,"596 Dogwood St, Boston, MA 02215" +166607,AAA Batteries (4-pack),3,2.99,02/20/19 14:28,"388 1st St, Los Angeles, CA 90001" +166608,Vareebadd Phone,1,400,02/22/19 18:11,"440 14th St, Dallas, TX 75001" +166609,34in Ultrawide Monitor,1,379.99,02/15/19 06:44,"206 12th St, New York City, NY 10001" +166610,AAA Batteries (4-pack),1,2.99,02/28/19 21:26,"50 Meadow St, Austin, TX 73301" +166611,Vareebadd Phone,1,400,02/14/19 09:03,"326 Center St, Dallas, TX 75001" +166612,ThinkPad Laptop,1,999.99,02/14/19 19:44,"357 Madison St, Seattle, WA 98101" +166613,Lightning Charging Cable,1,14.95,02/04/19 09:45,"554 Pine St, Los Angeles, CA 90001" +166614,AAA Batteries (4-pack),1,2.99,02/18/19 06:22,"538 Lakeview St, Los Angeles, CA 90001" +166615,AAA Batteries (4-pack),3,2.99,02/04/19 10:42,"156 Ridge St, New York City, NY 10001" +166616,Apple Airpods Headphones,1,150,02/09/19 10:48,"928 Adams St, Portland, OR 97035" +166616,AA Batteries (4-pack),2,3.84,02/09/19 10:48,"928 Adams St, Portland, OR 97035" +166617,iPhone,1,700,02/22/19 15:18,"128 Lake St, Boston, MA 02215" +166618,27in 4K Gaming Monitor,1,389.99,02/07/19 03:05,"380 14th St, San Francisco, CA 94016" +166619,Wired Headphones,1,11.99,02/03/19 22:18,"163 Chestnut St, Dallas, TX 75001" +166620,AA Batteries (4-pack),2,3.84,02/09/19 06:59,"464 Johnson St, Austin, TX 73301" +166621,AAA Batteries (4-pack),3,2.99,02/24/19 16:00,"758 Cedar St, Portland, OR 97035" +166622,USB-C Charging Cable,1,11.95,02/12/19 11:57,"186 Forest St, San Francisco, CA 94016" +166623,USB-C Charging Cable,1,11.95,02/10/19 10:21,"388 Adams St, Atlanta, GA 30301" +166624,Apple Airpods Headphones,1,150,02/23/19 06:48,"400 West St, Los Angeles, CA 90001" +166625,AA Batteries (4-pack),1,3.84,02/28/19 00:54,"115 1st St, Portland, OR 97035" +166626,27in FHD Monitor,1,149.99,02/01/19 13:43,"737 Ridge St, San Francisco, CA 94016" +166627,27in 4K Gaming Monitor,1,389.99,02/04/19 19:49,"114 Walnut St, Dallas, TX 75001" +166628,AAA Batteries (4-pack),1,2.99,02/17/19 19:05,"259 Madison St, Austin, TX 73301" +166629,USB-C Charging Cable,1,11.95,02/25/19 14:47,"646 Cedar St, San Francisco, CA 94016" +166630,34in Ultrawide Monitor,1,379.99,02/17/19 13:20,"113 North St, Los Angeles, CA 90001" +166631,20in Monitor,1,109.99,02/13/19 13:21,"53 Church St, San Francisco, CA 94016" +166632,Bose SoundSport Headphones,1,99.99,02/17/19 09:25,"989 10th St, Boston, MA 02215" +166632,Google Phone,1,600,02/17/19 09:25,"989 10th St, Boston, MA 02215" +166633,Apple Airpods Headphones,1,150,02/15/19 13:22,"439 Highland St, Austin, TX 73301" +166634,USB-C Charging Cable,1,11.95,02/02/19 07:00,"252 Lakeview St, Los Angeles, CA 90001" +166635,27in FHD Monitor,1,149.99,02/03/19 01:10,"71 Hickory St, Dallas, TX 75001" +166636,Flatscreen TV,1,300,02/19/19 12:27,"464 River St, Boston, MA 02215" +166637,AAA Batteries (4-pack),1,2.99,02/27/19 16:03,"326 13th St, Los Angeles, CA 90001" +166638,AAA Batteries (4-pack),1,2.99,02/18/19 19:52,"580 Cherry St, Seattle, WA 98101" +166639,Bose SoundSport Headphones,1,99.99,02/11/19 20:54,"618 Meadow St, Austin, TX 73301" +166640,Macbook Pro Laptop,1,1700,02/03/19 12:17,"868 Johnson St, Seattle, WA 98101" +166641,Apple Airpods Headphones,1,150,02/22/19 20:30,"781 4th St, Los Angeles, CA 90001" +166642,Lightning Charging Cable,1,14.95,02/02/19 18:19,"750 River St, Atlanta, GA 30301" +166643,27in 4K Gaming Monitor,1,389.99,02/04/19 17:06,"536 West St, Dallas, TX 75001" +166644,34in Ultrawide Monitor,1,379.99,02/26/19 18:40,"588 Center St, New York City, NY 10001" +166645,AA Batteries (4-pack),1,3.84,02/16/19 18:16,"397 5th St, San Francisco, CA 94016" +166646,Wired Headphones,1,11.99,02/22/19 17:27,"288 Walnut St, San Francisco, CA 94016" +166647,27in 4K Gaming Monitor,1,389.99,02/16/19 21:52,"454 Madison St, Dallas, TX 75001" +166648,Wired Headphones,1,11.99,02/01/19 07:50,"547 1st St, New York City, NY 10001" +166649,27in 4K Gaming Monitor,1,389.99,02/06/19 20:10,"650 South St, San Francisco, CA 94016" +166650,Apple Airpods Headphones,1,150,02/10/19 17:32,"708 Jackson St, San Francisco, CA 94016" +166651,27in 4K Gaming Monitor,1,389.99,02/28/19 14:40,"388 2nd St, Los Angeles, CA 90001" +166652,Wired Headphones,2,11.99,02/04/19 11:38,"371 Church St, Austin, TX 73301" +166653,Apple Airpods Headphones,1,150,02/05/19 21:46,"221 Spruce St, Austin, TX 73301" +166654,27in 4K Gaming Monitor,1,389.99,02/07/19 08:54,"30 Sunset St, San Francisco, CA 94016" +166655,Google Phone,1,600,02/13/19 19:53,"281 Spruce St, San Francisco, CA 94016" +166656,Macbook Pro Laptop,1,1700,02/12/19 23:23,"66 Ridge St, Austin, TX 73301" +166657,20in Monitor,1,109.99,02/20/19 04:04,"941 Walnut St, New York City, NY 10001" +166658,Apple Airpods Headphones,1,150,02/05/19 17:02,"257 Highland St, New York City, NY 10001" +166659,AA Batteries (4-pack),1,3.84,02/09/19 23:33,"903 Pine St, Los Angeles, CA 90001" +166660,Google Phone,1,600,02/28/19 14:38,"301 Cedar St, Los Angeles, CA 90001" +166661,LG Dryer,1,600.0,02/23/19 00:03,"139 4th St, Los Angeles, CA 90001" +166662,Flatscreen TV,1,300,02/07/19 12:28,"898 14th St, New York City, NY 10001" +166663,AAA Batteries (4-pack),1,2.99,02/17/19 08:04,"949 Wilson St, San Francisco, CA 94016" +166664,AA Batteries (4-pack),1,3.84,02/27/19 03:24,"375 1st St, San Francisco, CA 94016" +166665,Apple Airpods Headphones,1,150,02/03/19 18:39,"303 Highland St, Portland, ME 04101" +166666,AA Batteries (4-pack),1,3.84,02/15/19 12:49,"113 Madison St, Los Angeles, CA 90001" +166667,27in FHD Monitor,1,149.99,02/05/19 06:39,"45 Wilson St, San Francisco, CA 94016" +166668,ThinkPad Laptop,1,999.99,02/25/19 11:40,"303 Madison St, San Francisco, CA 94016" +166669,USB-C Charging Cable,1,11.95,02/02/19 22:03,"83 South St, Boston, MA 02215" +166670,USB-C Charging Cable,1,11.95,02/21/19 10:56,"958 Cedar St, Atlanta, GA 30301" +166671,USB-C Charging Cable,1,11.95,02/10/19 18:29,"328 West St, San Francisco, CA 94016" +166672,Apple Airpods Headphones,1,150,02/20/19 09:17,"837 5th St, Boston, MA 02215" +166673,27in 4K Gaming Monitor,1,389.99,02/20/19 15:19,"840 Park St, New York City, NY 10001" +166674,iPhone,1,700,02/08/19 22:21,"738 1st St, Boston, MA 02215" +166675,Google Phone,1,600,02/06/19 21:44,"15 Meadow St, Los Angeles, CA 90001" +166676,AA Batteries (4-pack),1,3.84,02/27/19 10:35,"749 Walnut St, Boston, MA 02215" +166677,Bose SoundSport Headphones,1,99.99,02/08/19 11:43,"56 11th St, San Francisco, CA 94016" +166678,Wired Headphones,1,11.99,02/18/19 19:20,"105 Hickory St, Portland, OR 97035" +166679,USB-C Charging Cable,1,11.95,02/14/19 16:39,"992 Walnut St, Los Angeles, CA 90001" +166680,AAA Batteries (4-pack),1,2.99,02/20/19 07:48,"753 Wilson St, San Francisco, CA 94016" +166681,Lightning Charging Cable,1,14.95,02/14/19 17:30,"467 7th St, Seattle, WA 98101" +166682,AA Batteries (4-pack),1,3.84,02/05/19 18:17,"384 Sunset St, Atlanta, GA 30301" +166683,Apple Airpods Headphones,1,150,02/21/19 16:30,"613 Walnut St, San Francisco, CA 94016" +166684,Apple Airpods Headphones,1,150,02/22/19 09:19,"22 13th St, Los Angeles, CA 90001" +166685,Wired Headphones,1,11.99,02/19/19 00:44,"844 13th St, Portland, OR 97035" +166686,USB-C Charging Cable,1,11.95,02/13/19 16:32,"266 Park St, Atlanta, GA 30301" +166687,20in Monitor,1,109.99,02/21/19 20:46,"365 West St, New York City, NY 10001" +166688,AA Batteries (4-pack),1,3.84,02/23/19 15:00,"63 4th St, San Francisco, CA 94016" +166689,Bose SoundSport Headphones,1,99.99,02/11/19 11:10,"413 Park St, Atlanta, GA 30301" +166690,AAA Batteries (4-pack),1,2.99,02/03/19 20:54,"1 12th St, Atlanta, GA 30301" +166691,AAA Batteries (4-pack),1,2.99,02/16/19 18:13,"76 River St, Austin, TX 73301" +166692,USB-C Charging Cable,1,11.95,02/23/19 02:52,"3 Jefferson St, Los Angeles, CA 90001" +166693,AA Batteries (4-pack),3,3.84,02/26/19 17:48,"15 10th St, Seattle, WA 98101" +166694,Bose SoundSport Headphones,1,99.99,02/20/19 21:14,"673 8th St, Boston, MA 02215" +166695,27in 4K Gaming Monitor,1,389.99,02/22/19 08:08,"59 Main St, San Francisco, CA 94016" +166696,Bose SoundSport Headphones,1,99.99,02/14/19 22:20,"412 Willow St, Seattle, WA 98101" +166697,ThinkPad Laptop,1,999.99,02/09/19 13:41,"862 10th St, San Francisco, CA 94016" +166698,Wired Headphones,1,11.99,02/13/19 09:01,"720 10th St, New York City, NY 10001" +166699,Wired Headphones,1,11.99,02/05/19 17:16,"938 Washington St, New York City, NY 10001" +,,,,, +166700,AA Batteries (4-pack),1,3.84,02/15/19 09:40,"261 Cedar St, Los Angeles, CA 90001" +166701,27in FHD Monitor,1,149.99,02/07/19 14:43,"820 Walnut St, San Francisco, CA 94016" +166702,AA Batteries (4-pack),1,3.84,02/07/19 09:31,"982 Spruce St, Seattle, WA 98101" +166703,AAA Batteries (4-pack),1,2.99,02/25/19 21:28,"757 Elm St, Dallas, TX 75001" +166704,Apple Airpods Headphones,1,150,02/25/19 17:00,"4 Spruce St, Dallas, TX 75001" +166705,AA Batteries (4-pack),1,3.84,02/14/19 11:08,"545 Jackson St, San Francisco, CA 94016" +166706,Wired Headphones,1,11.99,02/16/19 22:06,"631 River St, Los Angeles, CA 90001" +166707,Google Phone,1,600,02/04/19 16:17,"35 1st St, Atlanta, GA 30301" +166707,USB-C Charging Cable,1,11.95,02/04/19 16:17,"35 1st St, Atlanta, GA 30301" +166708,AA Batteries (4-pack),1,3.84,02/08/19 14:05,"979 7th St, San Francisco, CA 94016" +166709,AAA Batteries (4-pack),1,2.99,02/26/19 12:38,"722 Highland St, San Francisco, CA 94016" +166710,AA Batteries (4-pack),1,3.84,02/01/19 22:32,"437 Willow St, San Francisco, CA 94016" +166711,AA Batteries (4-pack),1,3.84,02/17/19 17:53,"851 South St, Atlanta, GA 30301" +166712,Macbook Pro Laptop,1,1700,02/08/19 16:31,"263 Forest St, Los Angeles, CA 90001" +166713,AAA Batteries (4-pack),1,2.99,02/22/19 19:21,"377 Willow St, San Francisco, CA 94016" +166714,Lightning Charging Cable,1,14.95,02/25/19 23:33,"925 Willow St, Los Angeles, CA 90001" +166715,AAA Batteries (4-pack),1,2.99,02/17/19 21:57,"864 Church St, New York City, NY 10001" +166716,USB-C Charging Cable,1,11.95,02/08/19 15:53,"331 Church St, San Francisco, CA 94016" +166717,AA Batteries (4-pack),1,3.84,02/20/19 00:23,"578 Highland St, Portland, OR 97035" +166718,Lightning Charging Cable,1,14.95,02/13/19 11:57,"42 10th St, Boston, MA 02215" +166719,Flatscreen TV,1,300,02/21/19 17:02,"519 1st St, San Francisco, CA 94016" +166720,Apple Airpods Headphones,1,150,02/11/19 20:48,"412 Lakeview St, Boston, MA 02215" +166721,Vareebadd Phone,1,400,02/03/19 19:09,"346 1st St, San Francisco, CA 94016" +166721,Wired Headphones,2,11.99,02/03/19 19:09,"346 1st St, San Francisco, CA 94016" +166722,AAA Batteries (4-pack),1,2.99,02/08/19 21:41,"446 Lakeview St, Dallas, TX 75001" +166723,iPhone,1,700,02/08/19 00:10,"966 Forest St, Los Angeles, CA 90001" +166724,AAA Batteries (4-pack),1,2.99,02/27/19 10:18,"672 5th St, Los Angeles, CA 90001" +166725,LG Washing Machine,1,600.0,02/13/19 12:23,"233 Lincoln St, Dallas, TX 75001" +166726,Macbook Pro Laptop,1,1700,02/22/19 15:19,"909 Pine St, Dallas, TX 75001" +166727,AAA Batteries (4-pack),1,2.99,02/11/19 15:28,"171 Madison St, Portland, OR 97035" +166728,Wired Headphones,1,11.99,02/09/19 05:32,"412 Lakeview St, New York City, NY 10001" +166729,ThinkPad Laptop,1,999.99,02/08/19 16:48,"48 Johnson St, New York City, NY 10001" +166730,USB-C Charging Cable,1,11.95,02/08/19 13:20,"511 1st St, Boston, MA 02215" +166731,Lightning Charging Cable,1,14.95,02/27/19 16:44,"284 Johnson St, San Francisco, CA 94016" +166732,Google Phone,1,600,02/15/19 10:27,"631 Main St, San Francisco, CA 94016" +166733,iPhone,1,700,02/03/19 10:04,"409 Meadow St, San Francisco, CA 94016" +166734,Bose SoundSport Headphones,1,99.99,02/14/19 12:22,"677 13th St, Austin, TX 73301" +166735,Wired Headphones,1,11.99,02/25/19 18:46,"356 Jefferson St, San Francisco, CA 94016" +166736,USB-C Charging Cable,1,11.95,02/20/19 09:10,"622 Chestnut St, Austin, TX 73301" +166737,Google Phone,1,600,02/14/19 16:45,"2 7th St, New York City, NY 10001" +166738,iPhone,1,700,02/17/19 18:04,"427 Hill St, San Francisco, CA 94016" +166738,Lightning Charging Cable,2,14.95,02/17/19 18:04,"427 Hill St, San Francisco, CA 94016" +166739,Wired Headphones,1,11.99,02/24/19 18:07,"206 Highland St, San Francisco, CA 94016" +166740,27in FHD Monitor,1,149.99,02/26/19 15:01,"199 Jackson St, San Francisco, CA 94016" +166741,USB-C Charging Cable,1,11.95,02/24/19 14:55,"828 Ridge St, Los Angeles, CA 90001" +166742,Bose SoundSport Headphones,1,99.99,02/02/19 22:20,"680 6th St, Boston, MA 02215" +166743,AAA Batteries (4-pack),1,2.99,02/11/19 17:01,"921 4th St, Boston, MA 02215" +166744,Lightning Charging Cable,1,14.95,02/01/19 23:49,"858 12th St, New York City, NY 10001" +166745,Google Phone,1,600,02/16/19 15:32,"513 Spruce St, Boston, MA 02215" +166746,iPhone,1,700,02/09/19 16:13,"172 Johnson St, New York City, NY 10001" +166747,Macbook Pro Laptop,1,1700,02/20/19 00:00,"264 Lincoln St, Los Angeles, CA 90001" +166748,Bose SoundSport Headphones,1,99.99,02/01/19 16:09,"411 River St, New York City, NY 10001" +166749,USB-C Charging Cable,1,11.95,02/08/19 19:36,"446 Main St, Dallas, TX 75001" +166749,USB-C Charging Cable,1,11.95,02/08/19 19:36,"446 Main St, Dallas, TX 75001" +166750,Wired Headphones,1,11.99,02/08/19 06:44,"564 Main St, Atlanta, GA 30301" +166751,27in FHD Monitor,1,149.99,02/21/19 22:13,"798 Center St, San Francisco, CA 94016" +166752,20in Monitor,1,109.99,02/05/19 15:40,"520 Lakeview St, Dallas, TX 75001" +166753,Bose SoundSport Headphones,1,99.99,02/23/19 20:49,"249 South St, San Francisco, CA 94016" +166754,USB-C Charging Cable,1,11.95,02/21/19 09:49,"29 Park St, San Francisco, CA 94016" +166755,Apple Airpods Headphones,1,150,02/11/19 03:18,"820 2nd St, Dallas, TX 75001" +166756,USB-C Charging Cable,1,11.95,02/21/19 13:40,"608 River St, Seattle, WA 98101" +166757,Apple Airpods Headphones,1,150,02/07/19 06:51,"691 Johnson St, San Francisco, CA 94016" +166758,AAA Batteries (4-pack),1,2.99,02/19/19 13:01,"119 Spruce St, San Francisco, CA 94016" +166759,AA Batteries (4-pack),1,3.84,02/14/19 14:32,"953 Cherry St, San Francisco, CA 94016" +166760,Wired Headphones,1,11.99,02/08/19 19:28,"586 Johnson St, Boston, MA 02215" +166761,27in FHD Monitor,1,149.99,02/02/19 10:02,"528 West St, New York City, NY 10001" +166762,Bose SoundSport Headphones,1,99.99,02/27/19 19:46,"673 Cedar St, Seattle, WA 98101" +166763,Google Phone,1,600,02/02/19 13:43,"426 Park St, Atlanta, GA 30301" +166764,27in 4K Gaming Monitor,1,389.99,02/27/19 20:54,"82 Lake St, Los Angeles, CA 90001" +166765,USB-C Charging Cable,1,11.95,02/07/19 08:55,"601 Adams St, Los Angeles, CA 90001" +166766,Wired Headphones,1,11.99,02/14/19 21:14,"429 Lakeview St, San Francisco, CA 94016" +166767,iPhone,1,700,02/24/19 20:28,"757 4th St, San Francisco, CA 94016" +166768,ThinkPad Laptop,1,999.99,02/08/19 13:38,"147 2nd St, Atlanta, GA 30301" +166769,Wired Headphones,1,11.99,02/22/19 00:12,"730 Ridge St, Seattle, WA 98101" +166770,AAA Batteries (4-pack),1,2.99,02/03/19 09:19,"714 Center St, Austin, TX 73301" +166771,Wired Headphones,1,11.99,02/23/19 13:50,"935 Elm St, San Francisco, CA 94016" +166772,USB-C Charging Cable,1,11.95,02/17/19 17:08,"24 Maple St, San Francisco, CA 94016" +166773,iPhone,1,700,02/07/19 14:19,"679 West St, Dallas, TX 75001" +166773,Lightning Charging Cable,1,14.95,02/07/19 14:19,"679 West St, Dallas, TX 75001" +166774,Lightning Charging Cable,1,14.95,02/10/19 11:17,"474 Meadow St, San Francisco, CA 94016" +166775,ThinkPad Laptop,1,999.99,02/24/19 17:40,"221 Main St, Boston, MA 02215" +166776,USB-C Charging Cable,2,11.95,02/02/19 23:42,"457 Forest St, Boston, MA 02215" +166777,Apple Airpods Headphones,1,150,02/23/19 00:59,"401 12th St, Portland, OR 97035" +166778,USB-C Charging Cable,1,11.95,02/15/19 13:49,"746 Willow St, Boston, MA 02215" +166779,AA Batteries (4-pack),1,3.84,02/27/19 09:48,"386 Chestnut St, San Francisco, CA 94016" +166780,Google Phone,1,600,02/14/19 09:16,"984 Cherry St, New York City, NY 10001" +166780,Wired Headphones,1,11.99,02/14/19 09:16,"984 Cherry St, New York City, NY 10001" +166780,27in FHD Monitor,1,149.99,02/14/19 09:16,"984 Cherry St, New York City, NY 10001" +166781,Apple Airpods Headphones,1,150,02/11/19 06:50,"412 Park St, Los Angeles, CA 90001" +166782,20in Monitor,1,109.99,02/02/19 13:52,"489 Lincoln St, Portland, OR 97035" +166783,AA Batteries (4-pack),1,3.84,02/16/19 07:32,"608 Adams St, New York City, NY 10001" +166784,AA Batteries (4-pack),1,3.84,02/02/19 03:10,"189 Lakeview St, Boston, MA 02215" +166785,AA Batteries (4-pack),3,3.84,02/25/19 10:20,"535 Walnut St, Boston, MA 02215" +166786,iPhone,1,700,02/17/19 19:01,"63 Lake St, San Francisco, CA 94016" +166787,LG Dryer,1,600.0,02/05/19 10:36,"215 Sunset St, New York City, NY 10001" +166788,AAA Batteries (4-pack),1,2.99,02/06/19 18:46,"313 Cherry St, Seattle, WA 98101" +166789,Vareebadd Phone,1,400,02/24/19 15:06,"764 7th St, Atlanta, GA 30301" +166789,USB-C Charging Cable,1,11.95,02/24/19 15:06,"764 7th St, Atlanta, GA 30301" +166790,USB-C Charging Cable,1,11.95,02/15/19 14:00,"925 Meadow St, Portland, OR 97035" +166791,AAA Batteries (4-pack),3,2.99,02/13/19 10:59,"700 1st St, Los Angeles, CA 90001" +166792,27in 4K Gaming Monitor,1,389.99,02/02/19 00:38,"270 Chestnut St, New York City, NY 10001" +166793,Wired Headphones,2,11.99,02/03/19 18:49,"565 Church St, San Francisco, CA 94016" +166794,Apple Airpods Headphones,1,150,02/25/19 23:52,"700 Church St, Portland, ME 04101" +166795,Apple Airpods Headphones,1,150,02/25/19 12:26,"739 Pine St, Atlanta, GA 30301" +166796,Wired Headphones,1,11.99,02/17/19 10:46,"666 River St, San Francisco, CA 94016" +166797,Apple Airpods Headphones,1,150,02/18/19 21:10,"165 Spruce St, San Francisco, CA 94016" +166798,Apple Airpods Headphones,1,150,02/14/19 21:33,"838 Main St, Los Angeles, CA 90001" +166798,Bose SoundSport Headphones,1,99.99,02/14/19 21:33,"838 Main St, Los Angeles, CA 90001" +166799,Lightning Charging Cable,1,14.95,02/17/19 23:34,"308 North St, San Francisco, CA 94016" +166800,34in Ultrawide Monitor,1,379.99,02/07/19 07:16,"560 13th St, New York City, NY 10001" +166801,Wired Headphones,1,11.99,02/02/19 00:46,"175 12th St, San Francisco, CA 94016" +166802,iPhone,1,700,02/02/19 18:51,"86 6th St, Boston, MA 02215" +166803,USB-C Charging Cable,1,11.95,02/01/19 18:22,"903 2nd St, San Francisco, CA 94016" +166804,Wired Headphones,1,11.99,02/13/19 19:48,"885 Highland St, San Francisco, CA 94016" +166805,Vareebadd Phone,1,400,02/03/19 11:50,"238 Chestnut St, Los Angeles, CA 90001" +166806,USB-C Charging Cable,1,11.95,02/23/19 19:56,"929 Main St, Dallas, TX 75001" +166807,AAA Batteries (4-pack),1,2.99,02/25/19 12:01,"456 Lakeview St, San Francisco, CA 94016" +166808,Apple Airpods Headphones,1,150,02/09/19 06:28,"839 North St, San Francisco, CA 94016" +166809,AA Batteries (4-pack),1,3.84,02/10/19 09:05,"303 Main St, San Francisco, CA 94016" +166810,Flatscreen TV,1,300,02/11/19 10:47,"630 Adams St, Dallas, TX 75001" +166811,34in Ultrawide Monitor,1,379.99,02/26/19 15:43,"524 Park St, Los Angeles, CA 90001" +166812,Bose SoundSport Headphones,1,99.99,02/18/19 13:45,"376 Cedar St, San Francisco, CA 94016" +166813,Bose SoundSport Headphones,1,99.99,02/16/19 10:20,"972 Main St, Los Angeles, CA 90001" +166814,AA Batteries (4-pack),1,3.84,02/22/19 18:33,"304 Lakeview St, Los Angeles, CA 90001" +166815,AA Batteries (4-pack),1,3.84,02/19/19 19:11,"660 4th St, Los Angeles, CA 90001" +166816,Wired Headphones,1,11.99,02/19/19 14:00,"465 Meadow St, Los Angeles, CA 90001" +166817,USB-C Charging Cable,1,11.95,02/25/19 09:50,"931 Elm St, Dallas, TX 75001" +166818,Bose SoundSport Headphones,1,99.99,02/15/19 22:33,"364 12th St, Boston, MA 02215" +166819,27in FHD Monitor,1,149.99,02/23/19 21:04,"475 Jackson St, Boston, MA 02215" +166820,Apple Airpods Headphones,1,150,02/22/19 19:40,"733 Spruce St, Boston, MA 02215" +166821,Bose SoundSport Headphones,1,99.99,02/25/19 15:10,"911 River St, Los Angeles, CA 90001" +166822,Wired Headphones,1,11.99,02/28/19 12:01,"818 Lincoln St, Los Angeles, CA 90001" +166823,Apple Airpods Headphones,1,150,02/16/19 14:27,"792 7th St, New York City, NY 10001" +166824,Bose SoundSport Headphones,1,99.99,02/24/19 21:18,"368 Willow St, Los Angeles, CA 90001" +166825,AAA Batteries (4-pack),1,2.99,02/11/19 20:07,"16 Washington St, San Francisco, CA 94016" +166826,AA Batteries (4-pack),3,3.84,02/16/19 07:35,"702 Johnson St, San Francisco, CA 94016" +166827,Lightning Charging Cable,1,14.95,02/24/19 14:40,"997 Walnut St, Dallas, TX 75001" +166828,AAA Batteries (4-pack),1,2.99,02/15/19 18:59,"803 Lake St, Seattle, WA 98101" +166829,20in Monitor,1,109.99,03/01/19 00:01,"818 Lakeview St, San Francisco, CA 94016" +166830,Lightning Charging Cable,1,14.95,02/24/19 19:36,"624 Dogwood St, San Francisco, CA 94016" +166831,Apple Airpods Headphones,1,150,02/25/19 17:48,"48 South St, Portland, ME 04101" +166832,Apple Airpods Headphones,1,150,02/20/19 15:34,"338 10th St, Austin, TX 73301" +166833,Flatscreen TV,1,300,02/21/19 13:03,"309 7th St, Boston, MA 02215" +166834,27in 4K Gaming Monitor,1,389.99,02/25/19 23:16,"681 Hickory St, New York City, NY 10001" +166835,AA Batteries (4-pack),1,3.84,02/15/19 18:35,"59 Hickory St, New York City, NY 10001" +166836,USB-C Charging Cable,1,11.95,02/14/19 12:25,"62 South St, New York City, NY 10001" +166837,ThinkPad Laptop,1,999.99,02/11/19 05:37,"537 Center St, San Francisco, CA 94016" +166838,27in 4K Gaming Monitor,1,389.99,02/07/19 19:48,"532 Highland St, San Francisco, CA 94016" +166839,AA Batteries (4-pack),1,3.84,02/21/19 21:08,"584 Main St, San Francisco, CA 94016" +166840,USB-C Charging Cable,1,11.95,02/17/19 15:06,"502 Elm St, San Francisco, CA 94016" +166840,USB-C Charging Cable,1,11.95,02/17/19 15:06,"502 Elm St, San Francisco, CA 94016" +166841,Wired Headphones,1,11.99,02/04/19 21:16,"575 12th St, Portland, OR 97035" +166842,AA Batteries (4-pack),1,3.84,02/09/19 16:14,"603 1st St, Boston, MA 02215" +166843,Lightning Charging Cable,1,14.95,02/23/19 20:53,"947 Highland St, Los Angeles, CA 90001" +166844,27in FHD Monitor,1,149.99,02/26/19 04:10,"92 Wilson St, Portland, OR 97035" +166845,27in 4K Gaming Monitor,1,389.99,02/03/19 05:37,"62 Walnut St, New York City, NY 10001" +166846,LG Washing Machine,1,600.0,02/13/19 19:50,"423 Center St, Dallas, TX 75001" +166847,ThinkPad Laptop,1,999.99,02/17/19 10:24,"978 Cherry St, Atlanta, GA 30301" +166848,AAA Batteries (4-pack),1,2.99,02/05/19 19:10,"232 Sunset St, Atlanta, GA 30301" +166849,AAA Batteries (4-pack),2,2.99,02/28/19 17:29,"524 Willow St, San Francisco, CA 94016" +166850,27in FHD Monitor,1,149.99,02/03/19 20:17,"339 Chestnut St, Boston, MA 02215" +166851,34in Ultrawide Monitor,1,379.99,02/14/19 15:51,"772 Johnson St, Los Angeles, CA 90001" +166852,Wired Headphones,1,11.99,02/15/19 20:15,"398 Walnut St, Seattle, WA 98101" +166853,iPhone,1,700,02/15/19 15:12,"58 Church St, San Francisco, CA 94016" +166853,Wired Headphones,1,11.99,02/15/19 15:12,"58 Church St, San Francisco, CA 94016" +166854,Flatscreen TV,1,300,02/10/19 04:31,"260 Highland St, San Francisco, CA 94016" +166855,AA Batteries (4-pack),1,3.84,02/01/19 14:19,"425 Lakeview St, New York City, NY 10001" +166856,USB-C Charging Cable,1,11.95,02/11/19 16:15,"216 North St, Atlanta, GA 30301" +166857,34in Ultrawide Monitor,1,379.99,02/26/19 08:07,"779 14th St, Los Angeles, CA 90001" +166858,ThinkPad Laptop,1,999.99,02/04/19 11:03,"350 Spruce St, Portland, OR 97035" +166859,Bose SoundSport Headphones,1,99.99,02/08/19 18:48,"582 Lake St, San Francisco, CA 94016" +166860,Apple Airpods Headphones,1,150,02/12/19 18:55,"310 Church St, Los Angeles, CA 90001" +166861,AAA Batteries (4-pack),3,2.99,02/07/19 14:20,"295 12th St, Seattle, WA 98101" +166862,Flatscreen TV,1,300,02/27/19 11:36,"56 River St, San Francisco, CA 94016" +166863,AAA Batteries (4-pack),2,2.99,02/10/19 08:09,"629 8th St, San Francisco, CA 94016" +166864,Macbook Pro Laptop,1,1700,02/07/19 14:13,"962 1st St, Los Angeles, CA 90001" +166865,27in 4K Gaming Monitor,1,389.99,02/06/19 20:53,"291 Center St, Portland, ME 04101" +166866,Apple Airpods Headphones,1,150,02/04/19 00:35,"783 Chestnut St, Portland, OR 97035" +166867,Google Phone,1,600,02/18/19 10:21,"993 Elm St, Los Angeles, CA 90001" +166867,Bose SoundSport Headphones,1,99.99,02/18/19 10:21,"993 Elm St, Los Angeles, CA 90001" +166868,Wired Headphones,1,11.99,02/15/19 19:55,"969 Washington St, Austin, TX 73301" +166869,AAA Batteries (4-pack),1,2.99,02/15/19 18:43,"870 Pine St, San Francisco, CA 94016" +166870,Macbook Pro Laptop,1,1700,02/18/19 14:56,"356 Elm St, Dallas, TX 75001" +166871,AAA Batteries (4-pack),1,2.99,02/01/19 11:26,"185 Forest St, Austin, TX 73301" +166872,34in Ultrawide Monitor,1,379.99,02/18/19 17:14,"53 Hickory St, Atlanta, GA 30301" +166873,Wired Headphones,1,11.99,02/16/19 23:26,"380 Ridge St, San Francisco, CA 94016" +166874,Lightning Charging Cable,1,14.95,02/16/19 19:45,"470 6th St, Los Angeles, CA 90001" +166875,iPhone,1,700,02/23/19 17:21,"511 South St, Seattle, WA 98101" +166876,Wired Headphones,2,11.99,02/16/19 20:16,"932 Maple St, Boston, MA 02215" +166877,Bose SoundSport Headphones,1,99.99,02/04/19 18:37,"595 Spruce St, San Francisco, CA 94016" +166878,Lightning Charging Cable,1,14.95,02/10/19 06:41,"990 River St, Boston, MA 02215" +166879,Flatscreen TV,1,300,02/15/19 17:34,"864 Highland St, Portland, ME 04101" +166880,Apple Airpods Headphones,1,150,02/22/19 14:45,"411 Hickory St, Atlanta, GA 30301" +166881,AA Batteries (4-pack),3,3.84,02/26/19 08:25,"433 Highland St, New York City, NY 10001" +166882,34in Ultrawide Monitor,1,379.99,02/13/19 05:13,"234 Hickory St, Los Angeles, CA 90001" +166883,iPhone,1,700,02/27/19 19:13,"350 Pine St, Los Angeles, CA 90001" +166884,Google Phone,1,600,02/27/19 00:10,"765 Cedar St, Seattle, WA 98101" +166885,34in Ultrawide Monitor,1,379.99,02/17/19 22:51,"940 Church St, Atlanta, GA 30301" +166886,AAA Batteries (4-pack),1,2.99,02/03/19 14:48,"396 Cedar St, Seattle, WA 98101" +166887,Wired Headphones,1,11.99,02/17/19 12:52,"193 Chestnut St, Los Angeles, CA 90001" +166888,ThinkPad Laptop,1,999.99,02/01/19 16:37,"448 Elm St, Portland, OR 97035" +166889,AAA Batteries (4-pack),2,2.99,02/06/19 23:17,"813 Pine St, San Francisco, CA 94016" +166890,AA Batteries (4-pack),1,3.84,02/04/19 18:40,"868 Maple St, Atlanta, GA 30301" +166891,iPhone,1,700,02/25/19 13:22,"961 Pine St, Boston, MA 02215" +166892,USB-C Charging Cable,1,11.95,02/23/19 13:49,"859 13th St, Atlanta, GA 30301" +166893,Wired Headphones,1,11.99,02/07/19 09:57,"936 Jefferson St, Dallas, TX 75001" +166894,USB-C Charging Cable,2,11.95,02/28/19 21:21,"259 Center St, Atlanta, GA 30301" +166895,Apple Airpods Headphones,1,150,02/06/19 19:47,"204 8th St, Seattle, WA 98101" +166896,27in 4K Gaming Monitor,1,389.99,02/22/19 23:31,"21 Wilson St, Atlanta, GA 30301" +166897,USB-C Charging Cable,1,11.95,02/12/19 08:04,"246 Walnut St, Dallas, TX 75001" +166898,27in FHD Monitor,1,149.99,02/01/19 18:00,"664 Highland St, San Francisco, CA 94016" +166899,20in Monitor,1,109.99,02/05/19 16:18,"355 1st St, Dallas, TX 75001" +166900,Vareebadd Phone,1,400,02/10/19 09:19,"395 10th St, Atlanta, GA 30301" +166900,USB-C Charging Cable,2,11.95,02/10/19 09:19,"395 10th St, Atlanta, GA 30301" +166900,Wired Headphones,3,11.99,02/10/19 09:19,"395 10th St, Atlanta, GA 30301" +166901,Apple Airpods Headphones,1,150,02/14/19 18:19,"403 Highland St, New York City, NY 10001" +166902,AA Batteries (4-pack),1,3.84,02/22/19 12:09,"398 Walnut St, San Francisco, CA 94016" +166903,AAA Batteries (4-pack),1,2.99,02/01/19 20:38,"180 Jefferson St, Seattle, WA 98101" +166904,USB-C Charging Cable,1,11.95,02/21/19 14:35,"586 Lincoln St, Boston, MA 02215" +166905,AAA Batteries (4-pack),1,2.99,02/19/19 13:06,"701 Willow St, San Francisco, CA 94016" +166906,27in FHD Monitor,1,149.99,02/23/19 12:34,"152 Park St, Dallas, TX 75001" +166907,Wired Headphones,1,11.99,02/16/19 23:18,"309 Chestnut St, San Francisco, CA 94016" +166908,Macbook Pro Laptop,1,1700,02/01/19 22:26,"989 9th St, Austin, TX 73301" +166909,Wired Headphones,1,11.99,02/27/19 18:59,"919 Hickory St, Atlanta, GA 30301" +166910,27in 4K Gaming Monitor,1,389.99,02/02/19 19:32,"368 Adams St, New York City, NY 10001" +166911,Macbook Pro Laptop,1,1700,02/14/19 23:03,"370 6th St, Portland, OR 97035" +166912,iPhone,1,700,02/05/19 11:01,"382 4th St, Atlanta, GA 30301" +166912,Apple Airpods Headphones,1,150,02/05/19 11:01,"382 4th St, Atlanta, GA 30301" +166913,ThinkPad Laptop,1,999.99,02/16/19 09:36,"624 Maple St, New York City, NY 10001" +166914,27in FHD Monitor,1,149.99,02/18/19 20:47,"86 12th St, San Francisco, CA 94016" +166915,Apple Airpods Headphones,1,150,02/12/19 16:43,"309 Highland St, Seattle, WA 98101" +166916,USB-C Charging Cable,1,11.95,02/04/19 06:19,"261 River St, New York City, NY 10001" +166917,iPhone,1,700,02/24/19 18:21,"612 Walnut St, New York City, NY 10001" +166918,Apple Airpods Headphones,1,150,02/06/19 23:56,"324 Walnut St, Dallas, TX 75001" +166919,Bose SoundSport Headphones,1,99.99,02/01/19 10:34,"825 Forest St, Dallas, TX 75001" +166920,AAA Batteries (4-pack),1,2.99,02/27/19 06:04,"765 12th St, San Francisco, CA 94016" +166921,AAA Batteries (4-pack),1,2.99,02/02/19 21:01,"607 Adams St, Los Angeles, CA 90001" +166922,27in FHD Monitor,1,149.99,02/02/19 17:34,"423 Wilson St, Austin, TX 73301" +166923,Bose SoundSport Headphones,1,99.99,02/09/19 12:04,"1 14th St, Seattle, WA 98101" +166924,Bose SoundSport Headphones,1,99.99,02/04/19 23:56,"692 Pine St, New York City, NY 10001" +166925,Bose SoundSport Headphones,1,99.99,02/12/19 13:45,"211 Maple St, Los Angeles, CA 90001" +166926,Bose SoundSport Headphones,1,99.99,02/13/19 17:47,"952 Highland St, New York City, NY 10001" +166927,USB-C Charging Cable,2,11.95,02/05/19 08:07,"988 Meadow St, Los Angeles, CA 90001" +166928,Wired Headphones,1,11.99,02/13/19 20:19,"574 Sunset St, Seattle, WA 98101" +166929,Bose SoundSport Headphones,1,99.99,02/17/19 22:01,"290 Center St, San Francisco, CA 94016" +166930,27in FHD Monitor,1,149.99,02/07/19 16:39,"824 Hickory St, San Francisco, CA 94016" +166931,Wired Headphones,1,11.99,02/12/19 20:44,"991 Chestnut St, San Francisco, CA 94016" +166932,Bose SoundSport Headphones,1,99.99,02/02/19 14:47,"348 Willow St, Dallas, TX 75001" +166932,20in Monitor,1,109.99,02/02/19 14:47,"348 Willow St, Dallas, TX 75001" +166933,Wired Headphones,1,11.99,02/12/19 15:35,"576 9th St, Portland, OR 97035" +166934,Bose SoundSport Headphones,1,99.99,02/14/19 00:37,"459 4th St, San Francisco, CA 94016" +166935,USB-C Charging Cable,1,11.95,02/27/19 11:06,"526 Spruce St, Seattle, WA 98101" +166936,Google Phone,1,600,02/18/19 12:02,"488 14th St, San Francisco, CA 94016" +166936,USB-C Charging Cable,1,11.95,02/18/19 12:02,"488 14th St, San Francisco, CA 94016" +166937,Lightning Charging Cable,1,14.95,02/07/19 11:53,"660 Hill St, Seattle, WA 98101" +166938,Apple Airpods Headphones,1,150,02/05/19 11:42,"436 Wilson St, Los Angeles, CA 90001" +166939,Macbook Pro Laptop,1,1700,02/05/19 12:47,"450 West St, New York City, NY 10001" +166940,Lightning Charging Cable,1,14.95,02/07/19 00:42,"313 Cherry St, Dallas, TX 75001" +166940,Wired Headphones,1,11.99,02/07/19 00:42,"313 Cherry St, Dallas, TX 75001" +166941,AA Batteries (4-pack),3,3.84,02/17/19 08:09,"598 River St, Boston, MA 02215" +166942,27in 4K Gaming Monitor,1,389.99,02/12/19 09:26,"981 Lakeview St, Seattle, WA 98101" +166943,AAA Batteries (4-pack),3,2.99,02/26/19 13:01,"434 Cedar St, New York City, NY 10001" +166944,Bose SoundSport Headphones,1,99.99,02/28/19 06:59,"726 12th St, Portland, OR 97035" +166945,AAA Batteries (4-pack),1,2.99,02/25/19 09:34,"210 Adams St, New York City, NY 10001" +166946,Wired Headphones,1,11.99,02/09/19 17:50,"685 Washington St, Dallas, TX 75001" +166947,Wired Headphones,1,11.99,02/05/19 11:36,"93 Sunset St, San Francisco, CA 94016" +166948,Apple Airpods Headphones,1,150,02/24/19 21:25,"939 Cherry St, New York City, NY 10001" +166949,AA Batteries (4-pack),1,3.84,02/17/19 20:50,"504 12th St, San Francisco, CA 94016" +166950,USB-C Charging Cable,1,11.95,02/12/19 00:00,"692 Center St, Portland, OR 97035" +166951,Wired Headphones,1,11.99,02/12/19 15:37,"218 10th St, Seattle, WA 98101" +166952,AA Batteries (4-pack),1,3.84,02/22/19 16:48,"597 12th St, San Francisco, CA 94016" +166952,USB-C Charging Cable,1,11.95,02/22/19 16:48,"597 12th St, San Francisco, CA 94016" +166953,20in Monitor,1,109.99,02/14/19 16:32,"672 Chestnut St, Dallas, TX 75001" +166954,AAA Batteries (4-pack),2,2.99,02/22/19 22:24,"193 Highland St, Boston, MA 02215" +166955,Wired Headphones,1,11.99,02/25/19 12:21,"268 Washington St, Austin, TX 73301" +166956,AAA Batteries (4-pack),1,2.99,02/06/19 19:56,"287 Forest St, Atlanta, GA 30301" +166957,AAA Batteries (4-pack),1,2.99,02/10/19 16:31,"352 Walnut St, Boston, MA 02215" +166958,Lightning Charging Cable,1,14.95,02/09/19 13:01,"731 4th St, San Francisco, CA 94016" +166959,Apple Airpods Headphones,1,150,02/23/19 13:50,"974 Washington St, San Francisco, CA 94016" +166960,Wired Headphones,1,11.99,02/12/19 10:53,"69 North St, Portland, OR 97035" +166961,Bose SoundSport Headphones,1,99.99,02/05/19 13:07,"998 Johnson St, Portland, OR 97035" +166962,AA Batteries (4-pack),1,3.84,02/26/19 20:08,"304 13th St, San Francisco, CA 94016" +166963,AAA Batteries (4-pack),1,2.99,02/03/19 20:16,"652 Spruce St, Portland, ME 04101" +166964,27in FHD Monitor,1,149.99,02/13/19 20:52,"963 Hickory St, Los Angeles, CA 90001" +166965,Apple Airpods Headphones,1,150,02/17/19 18:36,"148 Lake St, Portland, OR 97035" +166966,27in 4K Gaming Monitor,1,389.99,02/04/19 12:36,"106 6th St, New York City, NY 10001" +166967,Macbook Pro Laptop,1,1700,02/05/19 13:50,"696 7th St, Los Angeles, CA 90001" +166968,Apple Airpods Headphones,1,150,02/25/19 17:38,"848 Washington St, San Francisco, CA 94016" +166969,iPhone,1,700,02/16/19 09:34,"125 Highland St, Los Angeles, CA 90001" +166970,USB-C Charging Cable,1,11.95,02/12/19 20:36,"850 2nd St, Austin, TX 73301" +166971,Google Phone,1,600,02/14/19 10:40,"136 Jackson St, Seattle, WA 98101" +166972,Wired Headphones,2,11.99,02/12/19 20:45,"573 North St, San Francisco, CA 94016" +166973,LG Washing Machine,1,600.0,02/22/19 09:39,"120 1st St, Dallas, TX 75001" +166974,Wired Headphones,1,11.99,02/10/19 14:47,"474 Hickory St, San Francisco, CA 94016" +166975,AAA Batteries (4-pack),4,2.99,02/05/19 09:39,"263 6th St, Atlanta, GA 30301" +166976,Wired Headphones,1,11.99,02/03/19 12:11,"342 Walnut St, Dallas, TX 75001" +166977,Wired Headphones,1,11.99,02/28/19 19:36,"180 Wilson St, Atlanta, GA 30301" +166978,Bose SoundSport Headphones,1,99.99,02/25/19 18:42,"6 Washington St, Boston, MA 02215" +166979,AA Batteries (4-pack),1,3.84,02/09/19 17:08,"563 South St, New York City, NY 10001" +166980,AAA Batteries (4-pack),1,2.99,02/18/19 18:06,"19 9th St, San Francisco, CA 94016" +166981,Wired Headphones,1,11.99,02/03/19 12:37,"869 Hickory St, New York City, NY 10001" +166982,USB-C Charging Cable,1,11.95,02/07/19 08:16,"564 4th St, Portland, ME 04101" +166983,Lightning Charging Cable,1,14.95,02/11/19 15:49,"915 Sunset St, Atlanta, GA 30301" +166984,AAA Batteries (4-pack),1,2.99,02/06/19 21:05,"129 Sunset St, Atlanta, GA 30301" +166985,USB-C Charging Cable,1,11.95,02/08/19 23:22,"172 River St, Los Angeles, CA 90001" +166986,USB-C Charging Cable,1,11.95,02/23/19 07:23,"998 Sunset St, San Francisco, CA 94016" +166987,ThinkPad Laptop,1,999.99,02/06/19 10:17,"732 South St, Seattle, WA 98101" +166988,34in Ultrawide Monitor,1,379.99,02/06/19 17:38,"224 Hill St, New York City, NY 10001" +166989,AAA Batteries (4-pack),4,2.99,02/02/19 08:45,"556 Meadow St, New York City, NY 10001" +166990,20in Monitor,1,109.99,02/08/19 20:49,"680 8th St, Dallas, TX 75001" +166991,Google Phone,1,600,02/24/19 20:36,"610 Lake St, San Francisco, CA 94016" +166992,Apple Airpods Headphones,1,150,02/08/19 22:44,"486 Pine St, Boston, MA 02215" +166993,ThinkPad Laptop,1,999.99,02/23/19 08:13,"953 West St, Austin, TX 73301" +166994,AA Batteries (4-pack),1,3.84,02/21/19 17:44,"615 4th St, Seattle, WA 98101" +166995,27in 4K Gaming Monitor,1,389.99,02/08/19 12:14,"899 4th St, San Francisco, CA 94016" +166996,AAA Batteries (4-pack),1,2.99,02/18/19 13:58,"297 Jackson St, San Francisco, CA 94016" +166997,Wired Headphones,1,11.99,02/27/19 08:37,"473 Lake St, Seattle, WA 98101" +166998,Bose SoundSport Headphones,1,99.99,02/06/19 14:07,"758 5th St, Los Angeles, CA 90001" +166999,Vareebadd Phone,1,400,02/25/19 23:03,"816 Forest St, Los Angeles, CA 90001" +167000,27in FHD Monitor,1,149.99,02/10/19 11:20,"61 South St, Seattle, WA 98101" +167001,iPhone,1,700,02/03/19 15:21,"607 Washington St, Portland, OR 97035" +167002,20in Monitor,1,109.99,02/10/19 18:03,"900 9th St, New York City, NY 10001" +167003,USB-C Charging Cable,1,11.95,02/23/19 11:07,"171 South St, San Francisco, CA 94016" +167004,27in FHD Monitor,1,149.99,02/16/19 05:58,"853 9th St, New York City, NY 10001" +167005,27in 4K Gaming Monitor,1,389.99,02/03/19 12:47,"370 Center St, New York City, NY 10001" +167006,20in Monitor,1,109.99,02/17/19 12:35,"173 Church St, Boston, MA 02215" +167007,USB-C Charging Cable,1,11.95,02/10/19 18:19,"260 Center St, Austin, TX 73301" +167008,AAA Batteries (4-pack),1,2.99,02/06/19 03:41,"941 South St, Atlanta, GA 30301" +167009,Lightning Charging Cable,1,14.95,02/04/19 17:16,"709 Maple St, New York City, NY 10001" +167010,ThinkPad Laptop,1,999.99,02/12/19 17:28,"156 Adams St, Atlanta, GA 30301" +167011,iPhone,1,700,02/11/19 23:09,"205 Jefferson St, Seattle, WA 98101" +167012,Vareebadd Phone,1,400,02/26/19 09:19,"200 Lake St, Boston, MA 02215" +167013,AA Batteries (4-pack),1,3.84,02/05/19 12:02,"799 14th St, San Francisco, CA 94016" +167014,Lightning Charging Cable,1,14.95,02/03/19 22:54,"367 Main St, San Francisco, CA 94016" +167015,Google Phone,1,600,02/08/19 18:18,"72 13th St, Seattle, WA 98101" +167016,USB-C Charging Cable,1,11.95,02/16/19 12:47,"852 South St, Austin, TX 73301" +167017,AAA Batteries (4-pack),1,2.99,02/25/19 18:15,"999 North St, Dallas, TX 75001" +167018,USB-C Charging Cable,1,11.95,02/24/19 11:30,"135 Church St, New York City, NY 10001" +167019,Wired Headphones,1,11.99,02/05/19 19:47,"581 2nd St, Atlanta, GA 30301" +167020,AA Batteries (4-pack),1,3.84,02/22/19 09:54,"219 River St, New York City, NY 10001" +167021,Lightning Charging Cable,1,14.95,02/13/19 15:29,"346 13th St, Los Angeles, CA 90001" +167022,27in 4K Gaming Monitor,1,389.99,02/04/19 09:57,"857 5th St, Los Angeles, CA 90001" +167023,LG Dryer,1,600.0,02/14/19 08:51,"93 Johnson St, Boston, MA 02215" +167024,USB-C Charging Cable,1,11.95,02/28/19 15:39,"757 Main St, Austin, TX 73301" +167025,USB-C Charging Cable,1,11.95,02/20/19 17:54,"54 12th St, New York City, NY 10001" +167026,Google Phone,1,600,02/21/19 01:03,"4 Church St, New York City, NY 10001" +167027,27in FHD Monitor,1,149.99,02/28/19 09:49,"851 Cedar St, Boston, MA 02215" +167028,Apple Airpods Headphones,1,150,02/17/19 14:16,"752 5th St, Los Angeles, CA 90001" +167029,Google Phone,1,600,02/07/19 10:10,"148 Pine St, Atlanta, GA 30301" +167030,Bose SoundSport Headphones,1,99.99,02/17/19 18:38,"537 Washington St, Portland, ME 04101" +167031,iPhone,1,700,02/02/19 18:12,"851 Adams St, Portland, ME 04101" +167031,Apple Airpods Headphones,1,150,02/02/19 18:12,"851 Adams St, Portland, ME 04101" +167031,Bose SoundSport Headphones,1,99.99,02/02/19 18:12,"851 Adams St, Portland, ME 04101" +167032,Bose SoundSport Headphones,1,99.99,02/06/19 15:17,"777 Meadow St, Seattle, WA 98101" +167033,Wired Headphones,1,11.99,02/21/19 23:21,"642 7th St, Boston, MA 02215" +167034,USB-C Charging Cable,1,11.95,02/19/19 13:52,"257 10th St, Portland, ME 04101" +167035,Macbook Pro Laptop,1,1700,02/23/19 22:56,"10 Dogwood St, Los Angeles, CA 90001" +167036,27in FHD Monitor,1,149.99,02/21/19 08:43,"490 Forest St, Austin, TX 73301" +167037,iPhone,1,700,02/14/19 18:04,"398 Washington St, Atlanta, GA 30301" +167038,AA Batteries (4-pack),1,3.84,02/21/19 10:03,"354 Dogwood St, Dallas, TX 75001" +167039,Lightning Charging Cable,1,14.95,02/24/19 09:20,"653 7th St, New York City, NY 10001" +167040,Bose SoundSport Headphones,1,99.99,02/24/19 12:19,"701 Hickory St, Austin, TX 73301" +167041,USB-C Charging Cable,1,11.95,02/15/19 15:10,"627 5th St, Atlanta, GA 30301" +167042,AA Batteries (4-pack),1,3.84,02/16/19 11:15,"820 Cedar St, San Francisco, CA 94016" +167043,27in FHD Monitor,1,149.99,02/02/19 13:41,"371 South St, Los Angeles, CA 90001" +167044,AA Batteries (4-pack),1,3.84,02/06/19 15:08,"928 2nd St, Boston, MA 02215" +167045,Lightning Charging Cable,1,14.95,02/20/19 14:55,"651 Hickory St, Los Angeles, CA 90001" +167046,Apple Airpods Headphones,1,150,02/13/19 08:47,"77 Lincoln St, San Francisco, CA 94016" +167047,iPhone,1,700,02/16/19 20:25,"364 Walnut St, New York City, NY 10001" +167048,AAA Batteries (4-pack),4,2.99,02/10/19 10:34,"270 13th St, San Francisco, CA 94016" +167049,Apple Airpods Headphones,1,150,02/20/19 22:14,"676 Hill St, Austin, TX 73301" +167050,Wired Headphones,1,11.99,02/03/19 21:30,"394 Cedar St, Los Angeles, CA 90001" +167051,27in 4K Gaming Monitor,1,389.99,02/03/19 07:48,"449 Center St, San Francisco, CA 94016" +167052,Wired Headphones,1,11.99,02/19/19 20:45,"625 South St, Boston, MA 02215" +167053,AAA Batteries (4-pack),2,2.99,02/09/19 15:21,"855 14th St, Seattle, WA 98101" +167054,Lightning Charging Cable,1,14.95,02/02/19 14:21,"237 Pine St, Atlanta, GA 30301" +167055,AAA Batteries (4-pack),2,2.99,02/02/19 14:44,"592 Elm St, New York City, NY 10001" +167056,USB-C Charging Cable,1,11.95,02/26/19 09:48,"472 Adams St, San Francisco, CA 94016" +167057,AA Batteries (4-pack),4,3.84,02/14/19 09:38,"26 1st St, Los Angeles, CA 90001" +167058,Wired Headphones,1,11.99,02/01/19 21:10,"941 Sunset St, Boston, MA 02215" +167059,USB-C Charging Cable,1,11.95,02/19/19 20:23,"607 Willow St, Portland, OR 97035" +167060,USB-C Charging Cable,1,11.95,02/02/19 19:32,"821 Walnut St, San Francisco, CA 94016" +167061,Lightning Charging Cable,1,14.95,02/11/19 22:46,"826 Maple St, Dallas, TX 75001" +167062,AAA Batteries (4-pack),2,2.99,02/05/19 16:22,"236 Johnson St, New York City, NY 10001" +167063,20in Monitor,1,109.99,02/24/19 11:24,"906 Hill St, Seattle, WA 98101" +167064,Wired Headphones,1,11.99,02/03/19 06:04,"749 13th St, New York City, NY 10001" +167065,34in Ultrawide Monitor,1,379.99,02/23/19 19:57,"750 Pine St, New York City, NY 10001" +167066,AA Batteries (4-pack),3,3.84,02/01/19 19:55,"688 Cherry St, Austin, TX 73301" +167067,USB-C Charging Cable,1,11.95,02/17/19 12:33,"202 Elm St, Boston, MA 02215" +167068,Macbook Pro Laptop,1,1700,02/07/19 20:23,"600 River St, Los Angeles, CA 90001" +167069,Lightning Charging Cable,1,14.95,02/15/19 15:58,"711 Hickory St, Austin, TX 73301" +167070,Flatscreen TV,1,300,02/03/19 02:22,"571 Jackson St, Boston, MA 02215" +167071,USB-C Charging Cable,1,11.95,02/23/19 11:53,"718 2nd St, Atlanta, GA 30301" +167072,Lightning Charging Cable,1,14.95,02/05/19 16:00,"151 Walnut St, San Francisco, CA 94016" +167073,Vareebadd Phone,1,400,02/22/19 20:46,"814 13th St, Boston, MA 02215" +167074,AA Batteries (4-pack),1,3.84,02/05/19 09:01,"997 14th St, Dallas, TX 75001" +167075,Vareebadd Phone,1,400,02/01/19 14:16,"233 Willow St, San Francisco, CA 94016" +167075,Wired Headphones,1,11.99,02/01/19 14:16,"233 Willow St, San Francisco, CA 94016" +167076,USB-C Charging Cable,2,11.95,02/02/19 12:51,"271 Main St, New York City, NY 10001" +167077,20in Monitor,1,109.99,02/28/19 21:07,"87 Lakeview St, Los Angeles, CA 90001" +167078,USB-C Charging Cable,1,11.95,02/20/19 09:37,"942 Dogwood St, San Francisco, CA 94016" +167079,34in Ultrawide Monitor,1,379.99,02/23/19 17:21,"727 Cedar St, Los Angeles, CA 90001" +167080,AA Batteries (4-pack),1,3.84,02/23/19 12:26,"39 7th St, Dallas, TX 75001" +167081,USB-C Charging Cable,1,11.95,02/19/19 19:46,"671 North St, Austin, TX 73301" +167082,AA Batteries (4-pack),2,3.84,02/22/19 19:45,"439 4th St, Atlanta, GA 30301" +167083,AAA Batteries (4-pack),2,2.99,02/25/19 21:16,"44 Jefferson St, Austin, TX 73301" +167084,Lightning Charging Cable,1,14.95,02/15/19 13:01,"625 8th St, Seattle, WA 98101" +167085,AAA Batteries (4-pack),1,2.99,02/04/19 12:38,"329 Lakeview St, Atlanta, GA 30301" +167086,Lightning Charging Cable,1,14.95,02/14/19 07:01,"281 Lincoln St, Austin, TX 73301" +167087,Lightning Charging Cable,1,14.95,02/21/19 00:12,"235 Hickory St, San Francisco, CA 94016" +167088,Wired Headphones,1,11.99,02/02/19 20:41,"862 Elm St, San Francisco, CA 94016" +167089,20in Monitor,1,109.99,02/25/19 07:50,"251 Lakeview St, Seattle, WA 98101" +167090,USB-C Charging Cable,1,11.95,02/28/19 10:35,"134 River St, San Francisco, CA 94016" +167091,Apple Airpods Headphones,1,150,02/03/19 18:32,"553 1st St, Seattle, WA 98101" +167092,AAA Batteries (4-pack),2,2.99,02/21/19 16:07,"152 10th St, Los Angeles, CA 90001" +167093,Apple Airpods Headphones,1,150,02/03/19 19:57,"718 1st St, Los Angeles, CA 90001" +167094,27in 4K Gaming Monitor,1,389.99,02/28/19 11:59,"728 7th St, Dallas, TX 75001" +167095,27in FHD Monitor,1,149.99,02/07/19 09:47,"891 Lake St, Atlanta, GA 30301" +167096,AA Batteries (4-pack),2,3.84,02/20/19 19:24,"385 Pine St, Los Angeles, CA 90001" +167097,34in Ultrawide Monitor,1,379.99,02/08/19 12:19,"836 Adams St, Seattle, WA 98101" +167098,27in 4K Gaming Monitor,1,389.99,02/25/19 09:15,"590 Cedar St, San Francisco, CA 94016" +167099,Bose SoundSport Headphones,1,99.99,02/10/19 12:20,"957 4th St, Austin, TX 73301" +167100,Lightning Charging Cable,2,14.95,02/27/19 11:43,"988 West St, New York City, NY 10001" +167101,AAA Batteries (4-pack),1,2.99,02/07/19 20:42,"522 Maple St, Boston, MA 02215" +167102,Wired Headphones,1,11.99,02/04/19 00:13,"160 North St, Los Angeles, CA 90001" +167103,Bose SoundSport Headphones,1,99.99,02/24/19 10:31,"546 Lakeview St, San Francisco, CA 94016" +167104,Lightning Charging Cable,1,14.95,02/03/19 01:15,"969 8th St, San Francisco, CA 94016" +167105,Lightning Charging Cable,1,14.95,02/02/19 10:16,"385 Lakeview St, Seattle, WA 98101" +167106,34in Ultrawide Monitor,1,379.99,02/07/19 00:47,"203 Wilson St, San Francisco, CA 94016" +167107,Apple Airpods Headphones,1,150,02/22/19 22:23,"777 West St, Seattle, WA 98101" +167108,34in Ultrawide Monitor,1,379.99,02/17/19 13:15,"953 Willow St, Portland, OR 97035" +167109,Bose SoundSport Headphones,1,99.99,02/10/19 14:02,"221 Ridge St, New York City, NY 10001" +167110,Bose SoundSport Headphones,1,99.99,02/03/19 13:29,"34 Cherry St, Los Angeles, CA 90001" +167111,Apple Airpods Headphones,1,150,02/06/19 20:34,"1 Elm St, Portland, ME 04101" +167112,Apple Airpods Headphones,1,150,02/13/19 19:57,"577 Jefferson St, San Francisco, CA 94016" +167113,27in FHD Monitor,1,149.99,02/11/19 10:27,"370 Main St, New York City, NY 10001" +167114,Apple Airpods Headphones,1,150,02/11/19 13:11,"251 5th St, Los Angeles, CA 90001" +167115,Apple Airpods Headphones,1,150,02/24/19 08:08,"57 4th St, Seattle, WA 98101" +167116,Wired Headphones,2,11.99,02/21/19 18:59,"821 Washington St, Los Angeles, CA 90001" +167117,34in Ultrawide Monitor,1,379.99,02/16/19 17:41,"788 Elm St, Los Angeles, CA 90001" +167118,Apple Airpods Headphones,1,150,02/08/19 11:14,"918 4th St, Boston, MA 02215" +167119,AA Batteries (4-pack),1,3.84,02/09/19 13:59,"962 West St, Boston, MA 02215" +167120,Wired Headphones,1,11.99,02/14/19 07:55,"941 Chestnut St, Atlanta, GA 30301" +167121,27in FHD Monitor,1,149.99,02/04/19 19:47,"235 12th St, San Francisco, CA 94016" +167122,Bose SoundSport Headphones,1,99.99,02/17/19 12:35,"324 1st St, Los Angeles, CA 90001" +167123,AAA Batteries (4-pack),1,2.99,02/26/19 13:28,"650 Main St, Boston, MA 02215" +167124,Wired Headphones,1,11.99,02/02/19 22:07,"921 Church St, Boston, MA 02215" +167125,Apple Airpods Headphones,1,150,02/10/19 21:51,"801 Jackson St, San Francisco, CA 94016" +167126,Google Phone,1,600,02/09/19 17:27,"659 Pine St, San Francisco, CA 94016" +167127,USB-C Charging Cable,1,11.95,02/08/19 20:50,"431 Jefferson St, New York City, NY 10001" +167128,AA Batteries (4-pack),1,3.84,02/15/19 10:49,"890 13th St, San Francisco, CA 94016" +167129,Wired Headphones,1,11.99,02/19/19 20:46,"601 Main St, San Francisco, CA 94016" +167130,AA Batteries (4-pack),1,3.84,02/01/19 12:18,"748 Lake St, San Francisco, CA 94016" +167131,AAA Batteries (4-pack),1,2.99,02/03/19 11:15,"722 Ridge St, Atlanta, GA 30301" +167132,USB-C Charging Cable,1,11.95,02/05/19 01:09,"295 11th St, New York City, NY 10001" +167133,Wired Headphones,1,11.99,02/11/19 22:02,"575 Jackson St, San Francisco, CA 94016" +167134,Apple Airpods Headphones,1,150,02/07/19 17:16,"451 Park St, Los Angeles, CA 90001" +167135,AAA Batteries (4-pack),2,2.99,02/24/19 11:02,"591 Adams St, San Francisco, CA 94016" +167136,USB-C Charging Cable,1,11.95,02/07/19 02:24,"699 Maple St, Portland, OR 97035" +167137,Macbook Pro Laptop,1,1700,02/02/19 09:55,"330 Willow St, Boston, MA 02215" +167138,Apple Airpods Headphones,1,150,02/25/19 22:41,"799 14th St, Los Angeles, CA 90001" +167139,Wired Headphones,1,11.99,02/12/19 12:58,"329 Cedar St, Atlanta, GA 30301" +167140,27in FHD Monitor,1,149.99,02/05/19 16:53,"465 South St, Los Angeles, CA 90001" +167141,Vareebadd Phone,1,400,02/25/19 07:21,"815 7th St, San Francisco, CA 94016" +167141,USB-C Charging Cable,1,11.95,02/25/19 07:21,"815 7th St, San Francisco, CA 94016" +167142,Apple Airpods Headphones,1,150,02/07/19 11:39,"390 Hickory St, San Francisco, CA 94016" +167143,Apple Airpods Headphones,1,150,02/20/19 22:31,"914 Spruce St, Boston, MA 02215" +167144,iPhone,1,700,02/26/19 12:25,"768 6th St, San Francisco, CA 94016" +167145,USB-C Charging Cable,1,11.95,02/05/19 09:44,"352 Washington St, Seattle, WA 98101" +167146,Bose SoundSport Headphones,2,99.99,02/12/19 14:05,"156 12th St, Portland, OR 97035" +167147,Lightning Charging Cable,1,14.95,02/17/19 10:25,"659 Center St, New York City, NY 10001" +167148,27in FHD Monitor,1,149.99,02/28/19 14:23,"504 Maple St, Los Angeles, CA 90001" +167148,AAA Batteries (4-pack),1,2.99,02/28/19 14:23,"504 Maple St, Los Angeles, CA 90001" +167149,ThinkPad Laptop,1,999.99,02/18/19 12:49,"528 Dogwood St, Dallas, TX 75001" +167150,ThinkPad Laptop,1,999.99,02/18/19 18:39,"538 Jackson St, Seattle, WA 98101" +,,,,, +167151,Bose SoundSport Headphones,1,99.99,02/23/19 09:43,"454 Maple St, Boston, MA 02215" +167152,Lightning Charging Cable,1,14.95,02/27/19 21:53,"608 6th St, Seattle, WA 98101" +167153,AAA Batteries (4-pack),1,2.99,02/26/19 15:34,"538 4th St, Los Angeles, CA 90001" +167154,AAA Batteries (4-pack),4,2.99,02/18/19 10:00,"28 Ridge St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +167155,USB-C Charging Cable,1,11.95,02/07/19 16:58,"905 Dogwood St, Boston, MA 02215" +167156,Apple Airpods Headphones,1,150,02/02/19 02:22,"556 West St, San Francisco, CA 94016" +167157,AA Batteries (4-pack),2,3.84,02/08/19 17:51,"228 13th St, Seattle, WA 98101" +167158,Lightning Charging Cable,1,14.95,02/06/19 12:14,"176 10th St, Dallas, TX 75001" +167159,Wired Headphones,1,11.99,02/14/19 17:45,"748 Sunset St, San Francisco, CA 94016" +,,,,, +167160,AAA Batteries (4-pack),1,2.99,02/24/19 18:38,"433 11th St, San Francisco, CA 94016" +167161,Wired Headphones,1,11.99,02/24/19 11:10,"886 11th St, Dallas, TX 75001" +167162,Bose SoundSport Headphones,1,99.99,02/02/19 03:37,"870 Cedar St, Los Angeles, CA 90001" +167163,USB-C Charging Cable,1,11.95,02/26/19 10:57,"987 Walnut St, Boston, MA 02215" +167164,Bose SoundSport Headphones,1,99.99,02/14/19 19:33,"211 Jackson St, Boston, MA 02215" +167165,Bose SoundSport Headphones,1,99.99,02/23/19 01:09,"144 Hickory St, San Francisco, CA 94016" +167166,Lightning Charging Cable,1,14.95,02/01/19 14:13,"592 Madison St, New York City, NY 10001" +167167,USB-C Charging Cable,1,11.95,02/26/19 21:09,"9 Walnut St, San Francisco, CA 94016" +167168,27in FHD Monitor,1,149.99,02/24/19 10:00,"117 Lincoln St, Seattle, WA 98101" +167169,Lightning Charging Cable,1,14.95,02/26/19 21:08,"873 8th St, Boston, MA 02215" +167170,20in Monitor,1,109.99,02/03/19 02:09,"179 Willow St, Dallas, TX 75001" +167171,27in 4K Gaming Monitor,1,389.99,02/26/19 15:29,"184 Elm St, Atlanta, GA 30301" +167172,Wired Headphones,1,11.99,02/26/19 13:12,"193 Church St, Dallas, TX 75001" +167173,27in FHD Monitor,1,149.99,02/18/19 09:15,"223 Dogwood St, Dallas, TX 75001" +167174,AAA Batteries (4-pack),1,2.99,02/07/19 20:48,"363 North St, Austin, TX 73301" +167175,USB-C Charging Cable,1,11.95,02/22/19 13:57,"363 Lake St, Dallas, TX 75001" +167176,Bose SoundSport Headphones,1,99.99,02/11/19 20:24,"787 Main St, Portland, ME 04101" +167177,AA Batteries (4-pack),1,3.84,02/08/19 12:52,"385 Lake St, San Francisco, CA 94016" +167178,Wired Headphones,1,11.99,02/15/19 17:48,"671 Washington St, San Francisco, CA 94016" +167179,AAA Batteries (4-pack),1,2.99,02/05/19 11:52,"798 6th St, New York City, NY 10001" +167180,USB-C Charging Cable,1,11.95,02/14/19 21:18,"85 5th St, New York City, NY 10001" +167181,34in Ultrawide Monitor,1,379.99,02/14/19 13:17,"249 West St, Los Angeles, CA 90001" +167182,Wired Headphones,1,11.99,02/26/19 11:53,"743 Lake St, Austin, TX 73301" +167183,Wired Headphones,3,11.99,02/20/19 06:35,"986 Lake St, Portland, OR 97035" +167184,Lightning Charging Cable,1,14.95,02/18/19 09:54,"564 Pine St, Portland, OR 97035" +167185,AAA Batteries (4-pack),1,2.99,02/07/19 20:56,"357 Park St, San Francisco, CA 94016" +167186,AA Batteries (4-pack),1,3.84,02/02/19 07:01,"216 7th St, New York City, NY 10001" +167187,34in Ultrawide Monitor,1,379.99,02/17/19 15:41,"837 Cedar St, Boston, MA 02215" +167188,USB-C Charging Cable,1,11.95,02/18/19 11:09,"998 Main St, San Francisco, CA 94016" +167189,USB-C Charging Cable,1,11.95,02/19/19 12:41,"864 Adams St, Boston, MA 02215" +167190,AA Batteries (4-pack),1,3.84,02/23/19 03:38,"940 Chestnut St, Boston, MA 02215" +167191,Google Phone,1,600,02/16/19 15:22,"561 13th St, Los Angeles, CA 90001" +167192,iPhone,1,700,02/12/19 10:30,"792 Willow St, Dallas, TX 75001" +167193,iPhone,1,700,02/25/19 22:11,"836 10th St, Los Angeles, CA 90001" +167194,Macbook Pro Laptop,1,1700,02/08/19 16:40,"525 Ridge St, San Francisco, CA 94016" +167195,AAA Batteries (4-pack),1,2.99,02/12/19 10:26,"406 Pine St, Portland, OR 97035" +167196,34in Ultrawide Monitor,1,379.99,02/16/19 14:21,"819 Jefferson St, San Francisco, CA 94016" +167197,34in Ultrawide Monitor,1,379.99,02/01/19 23:38,"653 11th St, New York City, NY 10001" +167198,34in Ultrawide Monitor,1,379.99,02/25/19 21:15,"303 6th St, Seattle, WA 98101" +167199,iPhone,1,700,02/14/19 19:11,"528 Jefferson St, Austin, TX 73301" +167200,Bose SoundSport Headphones,1,99.99,02/14/19 13:34,"11 1st St, Dallas, TX 75001" +167201,34in Ultrawide Monitor,1,379.99,02/15/19 11:33,"323 Madison St, San Francisco, CA 94016" +167202,AA Batteries (4-pack),1,3.84,02/16/19 13:50,"717 Lincoln St, Portland, ME 04101" +167203,Macbook Pro Laptop,1,1700,02/17/19 11:39,"579 12th St, San Francisco, CA 94016" +167204,Apple Airpods Headphones,1,150,02/17/19 10:53,"536 12th St, Boston, MA 02215" +167205,Wired Headphones,1,11.99,02/28/19 19:50,"82 8th St, Atlanta, GA 30301" +167206,AAA Batteries (4-pack),1,2.99,02/15/19 12:46,"798 River St, Austin, TX 73301" +167207,AAA Batteries (4-pack),1,2.99,02/26/19 20:43,"878 Pine St, New York City, NY 10001" +167208,Lightning Charging Cable,1,14.95,02/08/19 09:41,"669 Jackson St, San Francisco, CA 94016" +167209,27in FHD Monitor,1,149.99,02/09/19 19:00,"362 4th St, Atlanta, GA 30301" +167210,Wired Headphones,1,11.99,02/18/19 13:53,"861 9th St, San Francisco, CA 94016" +167211,27in 4K Gaming Monitor,1,389.99,02/05/19 16:07,"325 Cedar St, Boston, MA 02215" +167212,Wired Headphones,1,11.99,02/26/19 08:05,"46 Jefferson St, Portland, OR 97035" +167213,27in FHD Monitor,1,149.99,02/27/19 23:27,"223 Wilson St, Boston, MA 02215" +167214,Apple Airpods Headphones,1,150,02/07/19 16:50,"485 Hickory St, Atlanta, GA 30301" +167215,Macbook Pro Laptop,1,1700,02/04/19 08:43,"255 Chestnut St, Los Angeles, CA 90001" +167216,27in FHD Monitor,1,149.99,02/05/19 11:48,"176 Lake St, San Francisco, CA 94016" +167217,Lightning Charging Cable,1,14.95,02/28/19 20:14,"858 9th St, San Francisco, CA 94016" +167218,Apple Airpods Headphones,1,150,02/27/19 16:02,"583 Church St, San Francisco, CA 94016" +167219,USB-C Charging Cable,1,11.95,02/19/19 23:24,"872 Madison St, Dallas, TX 75001" +167220,ThinkPad Laptop,1,999.99,02/27/19 16:43,"154 Madison St, Los Angeles, CA 90001" +167221,20in Monitor,1,109.99,02/15/19 15:31,"648 Lakeview St, New York City, NY 10001" +167222,USB-C Charging Cable,1,11.95,02/04/19 19:58,"800 8th St, Los Angeles, CA 90001" +167223,USB-C Charging Cable,1,11.95,02/08/19 20:20,"734 10th St, Dallas, TX 75001" +167224,USB-C Charging Cable,1,11.95,02/11/19 18:25,"296 Hill St, Los Angeles, CA 90001" +167225,USB-C Charging Cable,1,11.95,02/14/19 02:21,"941 South St, San Francisco, CA 94016" +167226,USB-C Charging Cable,1,11.95,02/10/19 17:09,"185 Johnson St, Austin, TX 73301" +167227,Bose SoundSport Headphones,1,99.99,02/11/19 19:08,"595 Walnut St, Los Angeles, CA 90001" +167228,AAA Batteries (4-pack),1,2.99,02/03/19 15:24,"160 12th St, Portland, OR 97035" +167229,Wired Headphones,1,11.99,02/13/19 18:16,"270 Highland St, Dallas, TX 75001" +167230,iPhone,1,700,02/10/19 17:49,"273 2nd St, Los Angeles, CA 90001" +167231,AAA Batteries (4-pack),1,2.99,02/13/19 12:41,"366 9th St, Portland, ME 04101" +167232,USB-C Charging Cable,1,11.95,02/03/19 17:25,"964 4th St, Portland, ME 04101" +167233,AA Batteries (4-pack),1,3.84,02/14/19 16:07,"687 Ridge St, Dallas, TX 75001" +167234,Lightning Charging Cable,1,14.95,02/23/19 22:14,"955 Park St, Seattle, WA 98101" +167235,Wired Headphones,1,11.99,02/09/19 13:50,"382 Spruce St, Dallas, TX 75001" +167236,Lightning Charging Cable,1,14.95,02/15/19 20:40,"597 Jackson St, Seattle, WA 98101" +167237,Wired Headphones,1,11.99,02/12/19 12:15,"36 Jackson St, Dallas, TX 75001" +167238,AA Batteries (4-pack),2,3.84,02/07/19 18:36,"312 Hill St, Los Angeles, CA 90001" +167239,34in Ultrawide Monitor,1,379.99,02/25/19 09:16,"592 11th St, Atlanta, GA 30301" +167240,Lightning Charging Cable,1,14.95,02/13/19 21:20,"148 14th St, San Francisco, CA 94016" +167241,AAA Batteries (4-pack),2,2.99,02/09/19 18:28,"910 6th St, Portland, OR 97035" +167242,Wired Headphones,1,11.99,02/18/19 15:49,"355 12th St, San Francisco, CA 94016" +167243,iPhone,1,700,02/01/19 14:03,"962 Pine St, Atlanta, GA 30301" +167244,AAA Batteries (4-pack),1,2.99,02/23/19 20:35,"832 Sunset St, Atlanta, GA 30301" +167245,Apple Airpods Headphones,1,150,02/05/19 16:39,"908 4th St, Austin, TX 73301" +167246,AA Batteries (4-pack),1,3.84,02/23/19 14:38,"691 Willow St, New York City, NY 10001" +167247,Macbook Pro Laptop,1,1700,02/21/19 22:52,"56 Walnut St, San Francisco, CA 94016" +167248,ThinkPad Laptop,1,999.99,02/19/19 06:30,"574 13th St, Los Angeles, CA 90001" +167249,AA Batteries (4-pack),2,3.84,02/06/19 18:58,"425 Lakeview St, Los Angeles, CA 90001" +167250,Lightning Charging Cable,1,14.95,02/14/19 07:59,"232 12th St, Dallas, TX 75001" +167250,27in FHD Monitor,1,149.99,02/14/19 07:59,"232 12th St, Dallas, TX 75001" +167251,AA Batteries (4-pack),2,3.84,02/16/19 22:47,"925 Highland St, Los Angeles, CA 90001" +167252,USB-C Charging Cable,1,11.95,02/23/19 15:11,"392 Jackson St, San Francisco, CA 94016" +167253,AAA Batteries (4-pack),1,2.99,02/18/19 09:47,"554 Jackson St, Austin, TX 73301" +167254,Macbook Pro Laptop,1,1700,02/22/19 09:45,"663 South St, Portland, OR 97035" +167255,AA Batteries (4-pack),1,3.84,02/19/19 15:15,"831 Highland St, Atlanta, GA 30301" +167256,Lightning Charging Cable,1,14.95,02/12/19 12:05,"125 9th St, Boston, MA 02215" +167257,AAA Batteries (4-pack),3,2.99,02/04/19 14:26,"751 4th St, Atlanta, GA 30301" +167258,USB-C Charging Cable,2,11.95,02/19/19 15:02,"865 Lake St, San Francisco, CA 94016" +167259,USB-C Charging Cable,1,11.95,02/19/19 08:56,"997 Lake St, San Francisco, CA 94016" +167260,AAA Batteries (4-pack),1,2.99,02/13/19 11:39,"19 Washington St, Los Angeles, CA 90001" +167261,Bose SoundSport Headphones,1,99.99,02/19/19 19:35,"283 Johnson St, Los Angeles, CA 90001" +167262,Apple Airpods Headphones,1,150,02/18/19 08:20,"665 13th St, Seattle, WA 98101" +167263,AA Batteries (4-pack),2,3.84,02/16/19 11:05,"816 Spruce St, Los Angeles, CA 90001" +167264,Google Phone,1,600,02/16/19 19:14,"884 13th St, Los Angeles, CA 90001" +167265,USB-C Charging Cable,1,11.95,02/23/19 03:26,"459 13th St, Portland, OR 97035" +167266,iPhone,1,700,02/04/19 16:08,"825 Jefferson St, Los Angeles, CA 90001" +167267,USB-C Charging Cable,1,11.95,02/03/19 12:01,"202 Center St, San Francisco, CA 94016" +167268,Apple Airpods Headphones,1,150,02/27/19 20:12,"231 8th St, San Francisco, CA 94016" +167269,Apple Airpods Headphones,1,150,02/27/19 19:13,"975 8th St, San Francisco, CA 94016" +167270,27in 4K Gaming Monitor,1,389.99,02/02/19 11:16,"499 10th St, New York City, NY 10001" +167271,USB-C Charging Cable,1,11.95,02/09/19 06:16,"772 9th St, New York City, NY 10001" +167272,Lightning Charging Cable,1,14.95,02/21/19 09:42,"250 Jackson St, Boston, MA 02215" +167273,Lightning Charging Cable,1,14.95,02/11/19 12:50,"191 7th St, Boston, MA 02215" +167274,Google Phone,1,600,02/08/19 08:48,"830 Lincoln St, Atlanta, GA 30301" +167275,AAA Batteries (4-pack),5,2.99,02/23/19 09:03,"785 9th St, Atlanta, GA 30301" +167275,Lightning Charging Cable,1,14.95,02/23/19 09:03,"785 9th St, Atlanta, GA 30301" +167276,LG Washing Machine,1,600.0,02/16/19 08:16,"496 North St, New York City, NY 10001" +167277,AA Batteries (4-pack),1,3.84,02/27/19 16:48,"413 River St, Seattle, WA 98101" +167278,iPhone,1,700,02/02/19 18:47,"353 River St, Austin, TX 73301" +167279,Bose SoundSport Headphones,1,99.99,02/25/19 19:36,"757 Jefferson St, Seattle, WA 98101" +167280,Flatscreen TV,1,300,02/04/19 11:49,"789 Hill St, Austin, TX 73301" +167281,iPhone,1,700,02/10/19 12:47,"232 Lake St, San Francisco, CA 94016" +167282,Bose SoundSport Headphones,1,99.99,02/18/19 17:33,"194 Meadow St, San Francisco, CA 94016" +167283,Lightning Charging Cable,1,14.95,02/19/19 16:36,"611 14th St, Seattle, WA 98101" +167284,AAA Batteries (4-pack),1,2.99,02/04/19 15:16,"577 2nd St, Seattle, WA 98101" +167285,USB-C Charging Cable,1,11.95,02/07/19 11:43,"680 Hill St, San Francisco, CA 94016" +167286,ThinkPad Laptop,1,999.99,02/01/19 09:16,"381 Center St, San Francisco, CA 94016" +167287,USB-C Charging Cable,1,11.95,02/24/19 22:33,"10 6th St, Seattle, WA 98101" +167288,Bose SoundSport Headphones,1,99.99,02/27/19 19:43,"799 Spruce St, New York City, NY 10001" +167289,Apple Airpods Headphones,1,150,02/28/19 16:20,"153 Center St, Seattle, WA 98101" +167290,27in 4K Gaming Monitor,1,389.99,02/05/19 08:20,"812 Center St, San Francisco, CA 94016" +167291,Lightning Charging Cable,2,14.95,02/08/19 12:09,"939 Ridge St, Dallas, TX 75001" +167292,Wired Headphones,1,11.99,02/07/19 20:10,"739 Jefferson St, Austin, TX 73301" +167293,Wired Headphones,1,11.99,02/26/19 12:01,"530 Dogwood St, Boston, MA 02215" +167294,AAA Batteries (4-pack),1,2.99,02/06/19 13:13,"58 North St, Dallas, TX 75001" +167295,AA Batteries (4-pack),1,3.84,02/14/19 00:13,"630 9th St, Los Angeles, CA 90001" +167296,34in Ultrawide Monitor,1,379.99,02/26/19 20:37,"655 Highland St, New York City, NY 10001" +167297,AA Batteries (4-pack),1,3.84,02/26/19 10:07,"392 Wilson St, Dallas, TX 75001" +167298,27in 4K Gaming Monitor,1,389.99,02/19/19 11:01,"855 12th St, New York City, NY 10001" +167299,27in FHD Monitor,1,149.99,02/27/19 07:48,"614 Lincoln St, Austin, TX 73301" +167300,Lightning Charging Cable,1,14.95,02/06/19 10:33,"856 Forest St, New York City, NY 10001" +167301,Bose SoundSport Headphones,1,99.99,02/18/19 17:43,"359 Elm St, Seattle, WA 98101" +167302,AA Batteries (4-pack),2,3.84,02/15/19 20:31,"423 Adams St, Seattle, WA 98101" +167303,AAA Batteries (4-pack),1,2.99,02/11/19 22:09,"256 10th St, Los Angeles, CA 90001" +167303,Wired Headphones,1,11.99,02/11/19 22:09,"256 10th St, Los Angeles, CA 90001" +167304,Macbook Pro Laptop,1,1700,02/17/19 15:29,"202 Main St, Boston, MA 02215" +167305,Wired Headphones,3,11.99,02/23/19 22:07,"650 9th St, Dallas, TX 75001" +167306,27in FHD Monitor,1,149.99,02/06/19 22:51,"11 Chestnut St, Los Angeles, CA 90001" +167307,USB-C Charging Cable,1,11.95,02/03/19 13:32,"193 River St, Seattle, WA 98101" +167308,Apple Airpods Headphones,1,150,02/18/19 17:22,"542 Jefferson St, New York City, NY 10001" +167309,USB-C Charging Cable,1,11.95,02/19/19 13:13,"908 Meadow St, New York City, NY 10001" +167310,USB-C Charging Cable,2,11.95,02/12/19 09:31,"769 Chestnut St, San Francisco, CA 94016" +167311,USB-C Charging Cable,1,11.95,02/14/19 17:55,"15 Adams St, New York City, NY 10001" +167312,Google Phone,1,600,02/05/19 11:27,"939 4th St, San Francisco, CA 94016" +167313,AA Batteries (4-pack),3,3.84,02/04/19 18:27,"472 Dogwood St, New York City, NY 10001" +167314,27in 4K Gaming Monitor,1,389.99,02/22/19 12:25,"854 Hickory St, Atlanta, GA 30301" +167315,Apple Airpods Headphones,1,150,02/28/19 12:19,"824 10th St, New York City, NY 10001" +167316,27in 4K Gaming Monitor,1,389.99,02/25/19 13:55,"908 Cherry St, Los Angeles, CA 90001" +167317,iPhone,1,700,02/05/19 21:39,"127 Spruce St, Los Angeles, CA 90001" +167318,Wired Headphones,1,11.99,02/21/19 12:01,"122 Ridge St, San Francisco, CA 94016" +167318,34in Ultrawide Monitor,1,379.99,02/21/19 12:01,"122 Ridge St, San Francisco, CA 94016" +167319,iPhone,1,700,02/28/19 18:43,"114 Willow St, San Francisco, CA 94016" +167320,Lightning Charging Cable,1,14.95,02/10/19 14:09,"271 Ridge St, San Francisco, CA 94016" +167321,27in 4K Gaming Monitor,1,389.99,02/22/19 19:48,"721 6th St, Atlanta, GA 30301" +167322,AA Batteries (4-pack),1,3.84,02/18/19 12:50,"79 Elm St, Seattle, WA 98101" +167323,AA Batteries (4-pack),1,3.84,02/11/19 18:22,"78 Highland St, Dallas, TX 75001" +167324,Bose SoundSport Headphones,1,99.99,02/09/19 15:57,"866 10th St, Dallas, TX 75001" +167325,AAA Batteries (4-pack),1,2.99,02/21/19 23:20,"179 Sunset St, Atlanta, GA 30301" +167326,Macbook Pro Laptop,1,1700,02/08/19 15:56,"677 Dogwood St, New York City, NY 10001" +167327,Lightning Charging Cable,2,14.95,02/18/19 10:23,"795 Ridge St, New York City, NY 10001" +167328,ThinkPad Laptop,1,999.99,02/18/19 17:42,"666 Cherry St, Los Angeles, CA 90001" +167329,Bose SoundSport Headphones,1,99.99,02/04/19 22:54,"622 Cedar St, Atlanta, GA 30301" +167330,20in Monitor,1,109.99,02/09/19 10:02,"209 2nd St, Atlanta, GA 30301" +167331,AA Batteries (4-pack),4,3.84,02/23/19 09:24,"752 Pine St, San Francisco, CA 94016" +167332,Bose SoundSport Headphones,1,99.99,02/08/19 18:27,"362 Maple St, San Francisco, CA 94016" +167333,AA Batteries (4-pack),1,3.84,02/13/19 18:17,"675 Jackson St, Los Angeles, CA 90001" +167334,AAA Batteries (4-pack),1,2.99,02/11/19 12:47,"51 13th St, Los Angeles, CA 90001" +167335,Lightning Charging Cable,1,14.95,02/20/19 11:39,"667 Washington St, Dallas, TX 75001" +167336,LG Dryer,1,600.0,02/06/19 06:05,"850 Adams St, San Francisco, CA 94016" +167337,34in Ultrawide Monitor,1,379.99,02/14/19 00:22,"560 Center St, Portland, OR 97035" +167338,USB-C Charging Cable,1,11.95,02/02/19 20:01,"602 Maple St, New York City, NY 10001" +167339,Lightning Charging Cable,2,14.95,02/11/19 12:44,"66 Madison St, Los Angeles, CA 90001" +167340,Wired Headphones,1,11.99,02/15/19 07:09,"626 Lake St, San Francisco, CA 94016" +167341,Apple Airpods Headphones,1,150,02/18/19 09:55,"104 Maple St, New York City, NY 10001" +167342,Lightning Charging Cable,1,14.95,02/16/19 21:51,"516 South St, New York City, NY 10001" +167343,USB-C Charging Cable,1,11.95,02/17/19 14:05,"572 Willow St, Boston, MA 02215" +167344,AAA Batteries (4-pack),2,2.99,02/21/19 09:39,"625 Elm St, Atlanta, GA 30301" +167345,AAA Batteries (4-pack),1,2.99,02/18/19 09:08,"952 Maple St, Boston, MA 02215" +167346,Bose SoundSport Headphones,1,99.99,02/28/19 14:46,"878 Highland St, San Francisco, CA 94016" +167347,Apple Airpods Headphones,1,150,02/22/19 19:15,"984 Cedar St, Dallas, TX 75001" +167348,Google Phone,1,600,02/02/19 13:31,"530 Cedar St, Austin, TX 73301" +167349,Macbook Pro Laptop,1,1700,02/19/19 08:20,"217 West St, Boston, MA 02215" +167350,Vareebadd Phone,1,400,02/11/19 14:51,"497 2nd St, Dallas, TX 75001" +167351,Lightning Charging Cable,2,14.95,02/22/19 22:53,"809 Forest St, Seattle, WA 98101" +167352,27in FHD Monitor,1,149.99,02/21/19 17:47,"295 Hickory St, San Francisco, CA 94016" +167353,Apple Airpods Headphones,1,150,02/21/19 09:32,"816 7th St, Los Angeles, CA 90001" +167354,Wired Headphones,1,11.99,02/26/19 13:01,"288 Main St, Boston, MA 02215" +167355,Google Phone,1,600,02/03/19 16:57,"265 Meadow St, Atlanta, GA 30301" +167356,Lightning Charging Cable,1,14.95,02/01/19 09:32,"386 1st St, Boston, MA 02215" +167357,AA Batteries (4-pack),1,3.84,02/14/19 03:30,"750 Cherry St, Boston, MA 02215" +167358,Wired Headphones,1,11.99,02/11/19 22:04,"135 9th St, San Francisco, CA 94016" +167359,Macbook Pro Laptop,1,1700,02/11/19 21:46,"60 Spruce St, Los Angeles, CA 90001" +167360,USB-C Charging Cable,3,11.95,02/18/19 11:15,"845 Park St, New York City, NY 10001" +167361,34in Ultrawide Monitor,1,379.99,02/24/19 07:50,"102 Lake St, Los Angeles, CA 90001" +167362,AA Batteries (4-pack),1,3.84,02/13/19 17:39,"584 Highland St, Boston, MA 02215" +167363,AA Batteries (4-pack),1,3.84,02/27/19 22:01,"232 Hill St, Los Angeles, CA 90001" +167364,AAA Batteries (4-pack),1,2.99,02/27/19 16:13,"190 Main St, Los Angeles, CA 90001" +167365,AA Batteries (4-pack),1,3.84,02/13/19 06:23,"835 Madison St, Los Angeles, CA 90001" +167366,Google Phone,1,600,02/20/19 20:58,"332 Maple St, San Francisco, CA 94016" +167367,Lightning Charging Cable,1,14.95,02/16/19 17:48,"961 Cherry St, Los Angeles, CA 90001" +167368,Lightning Charging Cable,1,14.95,02/01/19 18:17,"619 Ridge St, San Francisco, CA 94016" +167369,USB-C Charging Cable,1,11.95,02/02/19 01:35,"60 Wilson St, San Francisco, CA 94016" +167370,27in FHD Monitor,1,149.99,02/02/19 10:39,"126 Pine St, Los Angeles, CA 90001" +167371,Wired Headphones,1,11.99,02/28/19 02:24,"215 Jefferson St, San Francisco, CA 94016" +167372,Flatscreen TV,1,300,02/03/19 18:59,"800 7th St, San Francisco, CA 94016" +167373,USB-C Charging Cable,1,11.95,02/17/19 20:51,"192 13th St, Los Angeles, CA 90001" +167374,USB-C Charging Cable,1,11.95,02/26/19 13:32,"393 Walnut St, San Francisco, CA 94016" +167375,Wired Headphones,1,11.99,02/05/19 13:46,"171 1st St, New York City, NY 10001" +167375,Bose SoundSport Headphones,1,99.99,02/05/19 13:46,"171 1st St, New York City, NY 10001" +167376,Apple Airpods Headphones,1,150,02/28/19 19:15,"145 North St, Los Angeles, CA 90001" +167377,LG Dryer,1,600.0,02/26/19 20:15,"30 5th St, New York City, NY 10001" +167378,20in Monitor,1,109.99,02/10/19 09:01,"944 Maple St, San Francisco, CA 94016" +167379,iPhone,1,700,02/26/19 00:05,"590 Meadow St, New York City, NY 10001" +167380,AAA Batteries (4-pack),1,2.99,02/09/19 08:44,"70 Lakeview St, Dallas, TX 75001" +167380,27in FHD Monitor,1,149.99,02/09/19 08:44,"70 Lakeview St, Dallas, TX 75001" +167381,Apple Airpods Headphones,1,150,02/14/19 13:42,"45 5th St, Seattle, WA 98101" +167382,USB-C Charging Cable,1,11.95,02/12/19 16:56,"675 Wilson St, San Francisco, CA 94016" +167383,AAA Batteries (4-pack),3,2.99,02/25/19 17:24,"329 9th St, San Francisco, CA 94016" +167384,Macbook Pro Laptop,1,1700,02/06/19 23:25,"19 Church St, Los Angeles, CA 90001" +167385,Lightning Charging Cable,1,14.95,02/11/19 20:47,"361 Jefferson St, Boston, MA 02215" +167386,Lightning Charging Cable,1,14.95,02/09/19 10:36,"259 Main St, Dallas, TX 75001" +167387,Flatscreen TV,1,300,02/22/19 11:28,"382 Spruce St, Dallas, TX 75001" +167387,Lightning Charging Cable,1,14.95,02/22/19 11:28,"382 Spruce St, Dallas, TX 75001" +167388,USB-C Charging Cable,1,11.95,02/09/19 09:50,"792 Wilson St, San Francisco, CA 94016" +167389,Wired Headphones,1,11.99,02/21/19 07:37,"489 11th St, San Francisco, CA 94016" +167390,27in 4K Gaming Monitor,1,389.99,02/08/19 23:32,"881 Chestnut St, Los Angeles, CA 90001" +167391,AA Batteries (4-pack),1,3.84,02/12/19 13:07,"7 Madison St, Atlanta, GA 30301" +167392,USB-C Charging Cable,1,11.95,02/07/19 10:06,"17 7th St, New York City, NY 10001" +167393,USB-C Charging Cable,1,11.95,02/27/19 09:11,"479 Dogwood St, Portland, OR 97035" +167394,Google Phone,1,600,02/08/19 11:08,"368 Hill St, New York City, NY 10001" +167395,Lightning Charging Cable,1,14.95,02/24/19 12:30,"778 Church St, San Francisco, CA 94016" +167396,AA Batteries (4-pack),1,3.84,02/07/19 19:40,"177 Dogwood St, Los Angeles, CA 90001" +167397,LG Dryer,1,600.0,02/27/19 14:11,"914 Lincoln St, Boston, MA 02215" +167398,AAA Batteries (4-pack),1,2.99,02/14/19 13:50,"900 Sunset St, Seattle, WA 98101" +167399,USB-C Charging Cable,1,11.95,02/09/19 21:54,"735 5th St, San Francisco, CA 94016" +167400,USB-C Charging Cable,2,11.95,02/12/19 23:27,"245 Center St, Los Angeles, CA 90001" +167401,Bose SoundSport Headphones,1,99.99,02/02/19 18:14,"966 1st St, San Francisco, CA 94016" +167402,AA Batteries (4-pack),2,3.84,02/14/19 12:16,"993 Main St, Portland, ME 04101" +167403,Bose SoundSport Headphones,1,99.99,02/27/19 15:27,"222 14th St, Boston, MA 02215" +167404,Bose SoundSport Headphones,1,99.99,02/25/19 16:31,"49 Lakeview St, Boston, MA 02215" +167405,Google Phone,1,600,02/05/19 13:30,"579 Willow St, Atlanta, GA 30301" +167405,USB-C Charging Cable,1,11.95,02/05/19 13:30,"579 Willow St, Atlanta, GA 30301" +167405,Wired Headphones,1,11.99,02/05/19 13:30,"579 Willow St, Atlanta, GA 30301" +167406,Wired Headphones,1,11.99,02/21/19 20:19,"613 Jefferson St, Los Angeles, CA 90001" +167407,AAA Batteries (4-pack),2,2.99,02/28/19 17:12,"366 12th St, Atlanta, GA 30301" +167408,Apple Airpods Headphones,1,150,02/22/19 20:36,"115 Maple St, New York City, NY 10001" +167409,Macbook Pro Laptop,1,1700,02/12/19 08:39,"196 4th St, Seattle, WA 98101" +167410,27in 4K Gaming Monitor,1,389.99,02/02/19 16:32,"199 South St, San Francisco, CA 94016" +167411,USB-C Charging Cable,1,11.95,02/16/19 16:54,"670 Sunset St, Dallas, TX 75001" +167412,Apple Airpods Headphones,1,150,02/14/19 00:59,"611 1st St, Atlanta, GA 30301" +167413,USB-C Charging Cable,1,11.95,03/01/19 01:08,"67 9th St, New York City, NY 10001" +167414,AA Batteries (4-pack),1,3.84,02/21/19 20:34,"361 Hill St, Portland, OR 97035" +167415,Apple Airpods Headphones,1,150,02/20/19 22:16,"490 11th St, Los Angeles, CA 90001" +167416,Lightning Charging Cable,1,14.95,02/21/19 18:41,"360 Forest St, Los Angeles, CA 90001" +167417,Apple Airpods Headphones,1,150,02/03/19 20:59,"972 Adams St, Los Angeles, CA 90001" +167418,AA Batteries (4-pack),1,3.84,02/18/19 22:10,"779 Dogwood St, San Francisco, CA 94016" +167419,Google Phone,1,600,02/17/19 16:27,"502 Ridge St, Boston, MA 02215" +167420,AAA Batteries (4-pack),1,2.99,02/03/19 15:21,"674 Center St, Austin, TX 73301" +167421,Macbook Pro Laptop,1,1700,02/14/19 23:42,"654 2nd St, San Francisco, CA 94016" +167422,AA Batteries (4-pack),1,3.84,02/24/19 19:18,"121 Washington St, Dallas, TX 75001" +167423,Lightning Charging Cable,1,14.95,02/22/19 18:26,"14 Adams St, New York City, NY 10001" +167424,USB-C Charging Cable,1,11.95,02/16/19 14:07,"382 4th St, Boston, MA 02215" +167425,USB-C Charging Cable,1,11.95,02/17/19 08:38,"164 Jackson St, Boston, MA 02215" +167426,34in Ultrawide Monitor,1,379.99,02/04/19 13:27,"682 14th St, New York City, NY 10001" +167427,AAA Batteries (4-pack),1,2.99,02/14/19 18:59,"125 Cedar St, New York City, NY 10001" +167428,Lightning Charging Cable,1,14.95,02/28/19 17:56,"408 Wilson St, Boston, MA 02215" +167429,AAA Batteries (4-pack),3,2.99,02/16/19 18:08,"961 Lakeview St, Boston, MA 02215" +167430,Wired Headphones,2,11.99,02/18/19 13:47,"845 5th St, Los Angeles, CA 90001" +167431,USB-C Charging Cable,1,11.95,02/25/19 03:23,"254 Jackson St, San Francisco, CA 94016" +167432,AA Batteries (4-pack),2,3.84,02/28/19 16:08,"30 Wilson St, San Francisco, CA 94016" +167433,Lightning Charging Cable,1,14.95,02/23/19 12:16,"875 7th St, Portland, OR 97035" +167434,AAA Batteries (4-pack),1,2.99,02/21/19 08:51,"519 11th St, Boston, MA 02215" +167435,Lightning Charging Cable,1,14.95,02/23/19 12:12,"3 11th St, Boston, MA 02215" +167436,Apple Airpods Headphones,1,150,02/18/19 12:22,"169 Walnut St, Los Angeles, CA 90001" +167437,27in FHD Monitor,1,149.99,02/01/19 11:20,"712 6th St, San Francisco, CA 94016" +167438,AA Batteries (4-pack),2,3.84,02/27/19 18:22,"259 12th St, Atlanta, GA 30301" +167439,AAA Batteries (4-pack),1,2.99,02/08/19 18:28,"318 Washington St, Boston, MA 02215" +167440,27in 4K Gaming Monitor,1,389.99,02/20/19 00:16,"227 Walnut St, Seattle, WA 98101" +167441,Wired Headphones,1,11.99,02/18/19 16:02,"840 7th St, San Francisco, CA 94016" +167442,USB-C Charging Cable,1,11.95,02/26/19 16:30,"959 7th St, New York City, NY 10001" +167443,AA Batteries (4-pack),1,3.84,02/22/19 10:03,"490 12th St, Boston, MA 02215" +167444,Lightning Charging Cable,1,14.95,02/18/19 09:32,"236 Meadow St, Dallas, TX 75001" +167445,Bose SoundSport Headphones,1,99.99,02/02/19 12:55,"421 Adams St, San Francisco, CA 94016" +167446,Flatscreen TV,1,300,02/12/19 12:59,"637 Adams St, New York City, NY 10001" +167447,USB-C Charging Cable,1,11.95,02/15/19 18:23,"854 River St, Boston, MA 02215" +167448,AAA Batteries (4-pack),1,2.99,02/25/19 18:06,"165 Lincoln St, Portland, OR 97035" +167449,AAA Batteries (4-pack),3,2.99,02/24/19 08:09,"721 Madison St, Austin, TX 73301" +167450,Bose SoundSport Headphones,1,99.99,02/03/19 08:45,"931 11th St, Los Angeles, CA 90001" +167451,USB-C Charging Cable,1,11.95,02/08/19 13:17,"725 Wilson St, Dallas, TX 75001" +167452,20in Monitor,1,109.99,02/15/19 10:07,"728 Chestnut St, New York City, NY 10001" +167453,Bose SoundSport Headphones,1,99.99,02/04/19 18:07,"183 Adams St, New York City, NY 10001" +167454,Apple Airpods Headphones,1,150,02/16/19 15:17,"2 13th St, New York City, NY 10001" +167455,AA Batteries (4-pack),1,3.84,02/13/19 00:06,"625 Pine St, Boston, MA 02215" +167456,iPhone,1,700,02/21/19 14:01,"536 West St, Seattle, WA 98101" +167457,Apple Airpods Headphones,1,150,02/13/19 12:16,"933 6th St, Seattle, WA 98101" +167458,ThinkPad Laptop,1,999.99,02/27/19 10:41,"373 Church St, New York City, NY 10001" +167459,Flatscreen TV,1,300,02/07/19 09:02,"765 Lakeview St, San Francisco, CA 94016" +167460,iPhone,1,700,02/10/19 12:37,"277 River St, Los Angeles, CA 90001" +167461,Lightning Charging Cable,1,14.95,02/11/19 12:15,"583 North St, Dallas, TX 75001" +167462,Wired Headphones,1,11.99,02/28/19 18:32,"900 Church St, Portland, OR 97035" +167463,Apple Airpods Headphones,1,150,02/18/19 12:24,"891 10th St, San Francisco, CA 94016" +167464,USB-C Charging Cable,1,11.95,02/26/19 17:15,"802 Lake St, Boston, MA 02215" +167465,AAA Batteries (4-pack),2,2.99,02/05/19 18:43,"292 Pine St, Seattle, WA 98101" +167466,27in 4K Gaming Monitor,1,389.99,02/20/19 10:32,"437 Walnut St, San Francisco, CA 94016" +167467,Lightning Charging Cable,1,14.95,02/18/19 18:44,"904 Cherry St, San Francisco, CA 94016" +167468,AA Batteries (4-pack),1,3.84,02/04/19 20:07,"594 Cherry St, Boston, MA 02215" +167469,Lightning Charging Cable,1,14.95,02/12/19 12:43,"436 Hickory St, Los Angeles, CA 90001" +167470,AAA Batteries (4-pack),1,2.99,02/21/19 19:15,"87 Sunset St, New York City, NY 10001" +167471,Google Phone,1,600,02/21/19 16:13,"486 Johnson St, Atlanta, GA 30301" +167472,Flatscreen TV,1,300,02/07/19 16:21,"22 10th St, Boston, MA 02215" +167473,Apple Airpods Headphones,1,150,02/25/19 20:34,"976 Jackson St, New York City, NY 10001" +167474,Bose SoundSport Headphones,1,99.99,02/04/19 07:16,"509 River St, San Francisco, CA 94016" +167475,Lightning Charging Cable,1,14.95,02/02/19 14:45,"216 Elm St, Boston, MA 02215" +167475,Flatscreen TV,1,300,02/02/19 14:45,"216 Elm St, Boston, MA 02215" +167476,Google Phone,1,600,02/02/19 09:01,"867 South St, New York City, NY 10001" +167476,Bose SoundSport Headphones,1,99.99,02/02/19 09:01,"867 South St, New York City, NY 10001" +167477,Lightning Charging Cable,1,14.95,02/26/19 19:34,"973 2nd St, Seattle, WA 98101" +167478,Lightning Charging Cable,1,14.95,02/18/19 18:13,"794 12th St, Los Angeles, CA 90001" +167479,Macbook Pro Laptop,1,1700,02/14/19 06:38,"748 Washington St, New York City, NY 10001" +167480,Google Phone,1,600,02/15/19 16:34,"116 Jackson St, San Francisco, CA 94016" +167480,USB-C Charging Cable,1,11.95,02/15/19 16:34,"116 Jackson St, San Francisco, CA 94016" +167481,20in Monitor,1,109.99,02/01/19 12:38,"823 6th St, San Francisco, CA 94016" +167482,Lightning Charging Cable,1,14.95,02/21/19 21:33,"184 Lakeview St, Dallas, TX 75001" +167483,Macbook Pro Laptop,1,1700,02/25/19 18:06,"989 Maple St, Los Angeles, CA 90001" +167484,USB-C Charging Cable,2,11.95,02/27/19 19:30,"131 9th St, San Francisco, CA 94016" +167485,Wired Headphones,3,11.99,02/25/19 09:51,"72 Ridge St, San Francisco, CA 94016" +167486,27in 4K Gaming Monitor,1,389.99,02/20/19 12:36,"207 10th St, San Francisco, CA 94016" +167487,AAA Batteries (4-pack),1,2.99,02/08/19 14:06,"871 7th St, Portland, OR 97035" +167488,27in FHD Monitor,1,149.99,02/23/19 08:39,"788 Main St, Atlanta, GA 30301" +167489,27in 4K Gaming Monitor,1,389.99,02/15/19 08:24,"702 Lakeview St, Portland, OR 97035" +167490,USB-C Charging Cable,1,11.95,02/15/19 12:59,"144 Pine St, San Francisco, CA 94016" +167491,Wired Headphones,1,11.99,02/19/19 15:34,"657 Cherry St, Boston, MA 02215" +167492,AA Batteries (4-pack),1,3.84,02/26/19 18:00,"259 Lakeview St, Seattle, WA 98101" +167493,27in FHD Monitor,1,149.99,02/11/19 17:07,"112 Cedar St, Seattle, WA 98101" +167494,AAA Batteries (4-pack),1,2.99,02/27/19 17:07,"755 Lincoln St, Los Angeles, CA 90001" +167495,Lightning Charging Cable,1,14.95,02/12/19 17:38,"632 Elm St, San Francisco, CA 94016" +167496,AA Batteries (4-pack),1,3.84,02/01/19 21:38,"175 Sunset St, Austin, TX 73301" +167497,Google Phone,1,600,02/06/19 17:38,"567 Lincoln St, New York City, NY 10001" +167498,Bose SoundSport Headphones,1,99.99,02/08/19 21:13,"63 West St, Portland, OR 97035" +167499,Lightning Charging Cable,1,14.95,02/03/19 12:54,"179 Lincoln St, Portland, OR 97035" +167500,Bose SoundSport Headphones,1,99.99,02/11/19 21:21,"98 Ridge St, Boston, MA 02215" +167501,Wired Headphones,1,11.99,02/24/19 14:37,"474 Chestnut St, Seattle, WA 98101" +167502,Wired Headphones,1,11.99,02/22/19 20:10,"356 Johnson St, Portland, OR 97035" +167503,Bose SoundSport Headphones,1,99.99,02/03/19 16:05,"551 Maple St, Seattle, WA 98101" +167504,Lightning Charging Cable,1,14.95,02/24/19 11:41,"90 10th St, Seattle, WA 98101" +167505,27in FHD Monitor,1,149.99,02/06/19 12:48,"223 Highland St, Los Angeles, CA 90001" +167506,Flatscreen TV,1,300,02/23/19 11:17,"518 Lincoln St, Los Angeles, CA 90001" +167507,AA Batteries (4-pack),1,3.84,02/27/19 08:32,"359 Walnut St, Los Angeles, CA 90001" +167507,Bose SoundSport Headphones,1,99.99,02/27/19 08:32,"359 Walnut St, Los Angeles, CA 90001" +167508,Apple Airpods Headphones,1,150,02/07/19 09:45,"173 12th St, New York City, NY 10001" +167509,USB-C Charging Cable,1,11.95,02/10/19 20:28,"331 North St, San Francisco, CA 94016" +167510,AA Batteries (4-pack),1,3.84,02/16/19 20:52,"995 13th St, San Francisco, CA 94016" +167511,Google Phone,1,600,02/13/19 22:26,"285 6th St, Boston, MA 02215" +167512,27in 4K Gaming Monitor,1,389.99,02/25/19 16:41,"556 Wilson St, Los Angeles, CA 90001" +167513,Apple Airpods Headphones,1,150,02/27/19 16:06,"654 14th St, San Francisco, CA 94016" +167514,LG Dryer,1,600.0,02/08/19 22:27,"948 Dogwood St, Los Angeles, CA 90001" +167515,AAA Batteries (4-pack),2,2.99,02/27/19 16:12,"651 2nd St, Los Angeles, CA 90001" +167516,Wired Headphones,1,11.99,02/21/19 16:53,"321 Jackson St, Atlanta, GA 30301" +167517,USB-C Charging Cable,1,11.95,02/14/19 19:38,"541 13th St, Boston, MA 02215" +167518,AA Batteries (4-pack),1,3.84,02/22/19 10:00,"151 1st St, Dallas, TX 75001" +167519,Lightning Charging Cable,1,14.95,02/17/19 23:46,"352 Jefferson St, Atlanta, GA 30301" +167520,Vareebadd Phone,1,400,02/06/19 11:37,"525 4th St, Seattle, WA 98101" +167521,Apple Airpods Headphones,1,150,02/20/19 10:36,"248 River St, San Francisco, CA 94016" +167522,Google Phone,1,600,02/07/19 14:57,"265 Jackson St, Los Angeles, CA 90001" +167523,ThinkPad Laptop,1,999.99,02/13/19 18:45,"828 Sunset St, Boston, MA 02215" +167523,34in Ultrawide Monitor,1,379.99,02/13/19 18:45,"828 Sunset St, Boston, MA 02215" +167524,Lightning Charging Cable,1,14.95,02/14/19 22:55,"349 Hickory St, Atlanta, GA 30301" +167525,Google Phone,1,600,02/06/19 18:48,"269 West St, Seattle, WA 98101" +167526,AA Batteries (4-pack),1,3.84,02/25/19 12:58,"966 Spruce St, Boston, MA 02215" +167527,34in Ultrawide Monitor,1,379.99,02/24/19 16:45,"350 Lakeview St, Seattle, WA 98101" +167528,Wired Headphones,1,11.99,02/13/19 16:38,"981 13th St, Boston, MA 02215" +167529,34in Ultrawide Monitor,1,379.99,02/12/19 14:18,"104 Spruce St, Seattle, WA 98101" +167530,27in 4K Gaming Monitor,1,389.99,02/21/19 11:45,"330 Hill St, San Francisco, CA 94016" +167531,USB-C Charging Cable,1,11.95,02/16/19 18:07,"526 13th St, Boston, MA 02215" +167532,Lightning Charging Cable,2,14.95,02/05/19 17:39,"852 Elm St, Atlanta, GA 30301" +167533,AAA Batteries (4-pack),2,2.99,02/16/19 21:47,"535 Washington St, Atlanta, GA 30301" +167534,Lightning Charging Cable,1,14.95,02/06/19 07:53,"343 Dogwood St, Los Angeles, CA 90001" +167535,USB-C Charging Cable,2,11.95,02/04/19 16:40,"83 Pine St, Los Angeles, CA 90001" +167536,AA Batteries (4-pack),1,3.84,02/22/19 11:25,"332 Ridge St, Los Angeles, CA 90001" +167537,AA Batteries (4-pack),2,3.84,02/24/19 05:45,"752 Forest St, Seattle, WA 98101" +167538,USB-C Charging Cable,2,11.95,02/09/19 15:07,"239 Church St, Los Angeles, CA 90001" +167539,AAA Batteries (4-pack),1,2.99,02/17/19 07:22,"507 Johnson St, San Francisco, CA 94016" +167540,AA Batteries (4-pack),1,3.84,02/15/19 14:16,"192 North St, Boston, MA 02215" +167541,Wired Headphones,1,11.99,02/18/19 12:07,"141 11th St, Los Angeles, CA 90001" +167542,AA Batteries (4-pack),1,3.84,02/27/19 19:35,"358 Cherry St, San Francisco, CA 94016" +167543,Apple Airpods Headphones,1,150,02/09/19 09:38,"76 2nd St, Los Angeles, CA 90001" +167544,Lightning Charging Cable,2,14.95,02/21/19 08:41,"398 Forest St, Atlanta, GA 30301" +167545,Apple Airpods Headphones,1,150,02/08/19 20:06,"561 Sunset St, San Francisco, CA 94016" +167546,USB-C Charging Cable,1,11.95,02/05/19 11:33,"136 Highland St, San Francisco, CA 94016" +167547,AAA Batteries (4-pack),2,2.99,02/11/19 21:09,"650 14th St, San Francisco, CA 94016" +167548,AA Batteries (4-pack),1,3.84,02/06/19 17:07,"289 1st St, Portland, ME 04101" +167549,Wired Headphones,1,11.99,02/20/19 19:29,"464 Church St, Dallas, TX 75001" +167550,20in Monitor,1,109.99,02/14/19 11:36,"783 North St, Austin, TX 73301" +167551,AA Batteries (4-pack),1,3.84,02/07/19 07:46,"26 Cedar St, Dallas, TX 75001" +167552,AA Batteries (4-pack),1,3.84,02/11/19 13:32,"5 14th St, Seattle, WA 98101" +167553,USB-C Charging Cable,2,11.95,02/24/19 11:14,"345 10th St, New York City, NY 10001" +167554,Lightning Charging Cable,1,14.95,02/02/19 09:58,"822 Meadow St, Boston, MA 02215" +167555,Google Phone,1,600,02/23/19 00:01,"767 Highland St, Dallas, TX 75001" +167556,AA Batteries (4-pack),1,3.84,02/14/19 15:06,"48 Jackson St, San Francisco, CA 94016" +167557,Bose SoundSport Headphones,1,99.99,02/26/19 13:25,"788 Elm St, Atlanta, GA 30301" +167558,AA Batteries (4-pack),1,3.84,02/22/19 10:16,"665 Lake St, San Francisco, CA 94016" +167559,27in 4K Gaming Monitor,1,389.99,02/14/19 19:25,"950 South St, Seattle, WA 98101" +167560,Google Phone,1,600,02/01/19 08:44,"20 Lakeview St, Boston, MA 02215" +167561,Wired Headphones,1,11.99,02/03/19 12:46,"771 9th St, Dallas, TX 75001" +167562,iPhone,1,700,02/11/19 19:54,"446 Park St, New York City, NY 10001" +167562,Apple Airpods Headphones,1,150,02/11/19 19:54,"446 Park St, New York City, NY 10001" +167563,27in FHD Monitor,1,149.99,02/06/19 12:39,"212 Jackson St, San Francisco, CA 94016" +167564,27in 4K Gaming Monitor,1,389.99,02/05/19 17:20,"920 South St, Dallas, TX 75001" +167565,Bose SoundSport Headphones,1,99.99,02/24/19 18:29,"145 Jefferson St, San Francisco, CA 94016" +167566,USB-C Charging Cable,1,11.95,02/25/19 16:05,"30 Hickory St, New York City, NY 10001" +167567,Vareebadd Phone,1,400,02/02/19 11:51,"278 14th St, San Francisco, CA 94016" +167567,USB-C Charging Cable,1,11.95,02/02/19 11:51,"278 14th St, San Francisco, CA 94016" +167567,Bose SoundSport Headphones,1,99.99,02/02/19 11:51,"278 14th St, San Francisco, CA 94016" +167568,Flatscreen TV,1,300,02/01/19 13:59,"931 12th St, Boston, MA 02215" +167569,Bose SoundSport Headphones,1,99.99,02/03/19 17:17,"932 7th St, Seattle, WA 98101" +167570,Wired Headphones,1,11.99,02/16/19 17:06,"638 Walnut St, San Francisco, CA 94016" +167571,Apple Airpods Headphones,1,150,02/09/19 05:58,"253 South St, Seattle, WA 98101" +167572,USB-C Charging Cable,1,11.95,02/15/19 14:00,"481 13th St, San Francisco, CA 94016" +167573,Macbook Pro Laptop,1,1700,02/01/19 17:11,"251 Ridge St, New York City, NY 10001" +167574,AA Batteries (4-pack),1,3.84,02/15/19 08:51,"855 8th St, Dallas, TX 75001" +167575,Apple Airpods Headphones,1,150,02/08/19 15:04,"540 10th St, San Francisco, CA 94016" +167576,AAA Batteries (4-pack),1,2.99,02/10/19 08:37,"147 Hickory St, Seattle, WA 98101" +167577,AAA Batteries (4-pack),2,2.99,02/04/19 08:03,"216 Highland St, Seattle, WA 98101" +167578,34in Ultrawide Monitor,1,379.99,02/18/19 16:59,"97 Ridge St, Boston, MA 02215" +167579,Wired Headphones,1,11.99,02/18/19 12:28,"54 Chestnut St, San Francisco, CA 94016" +167580,Bose SoundSport Headphones,1,99.99,02/27/19 12:19,"583 West St, San Francisco, CA 94016" +167581,USB-C Charging Cable,1,11.95,02/14/19 17:28,"260 River St, San Francisco, CA 94016" +167582,Wired Headphones,1,11.99,02/03/19 11:08,"577 Chestnut St, Atlanta, GA 30301" +167583,AAA Batteries (4-pack),1,2.99,02/04/19 19:34,"122 Chestnut St, Austin, TX 73301" +167584,20in Monitor,1,109.99,02/17/19 17:46,"925 6th St, Los Angeles, CA 90001" +167585,20in Monitor,1,109.99,02/21/19 08:51,"773 Willow St, Boston, MA 02215" +167586,AAA Batteries (4-pack),2,2.99,02/19/19 20:19,"861 Hill St, Los Angeles, CA 90001" +167587,USB-C Charging Cable,1,11.95,02/02/19 07:17,"807 Cedar St, Atlanta, GA 30301" +167588,iPhone,1,700,02/20/19 13:57,"445 7th St, Los Angeles, CA 90001" +167588,Wired Headphones,2,11.99,02/20/19 13:57,"445 7th St, Los Angeles, CA 90001" +167589,Macbook Pro Laptop,1,1700,02/25/19 22:48,"624 Lakeview St, San Francisco, CA 94016" +167590,20in Monitor,1,109.99,02/06/19 17:49,"538 Spruce St, Los Angeles, CA 90001" +167591,Wired Headphones,1,11.99,02/15/19 19:56,"345 Chestnut St, Boston, MA 02215" +167592,Lightning Charging Cable,1,14.95,02/13/19 16:01,"970 Maple St, San Francisco, CA 94016" +167593,AAA Batteries (4-pack),1,2.99,02/18/19 19:46,"246 Main St, Los Angeles, CA 90001" +167594,20in Monitor,2,109.99,02/22/19 23:01,"296 Jackson St, Boston, MA 02215" +167595,iPhone,1,700,02/28/19 09:17,"406 11th St, New York City, NY 10001" +167596,27in FHD Monitor,1,149.99,02/12/19 14:58,"77 10th St, Dallas, TX 75001" +167597,AA Batteries (4-pack),1,3.84,02/17/19 09:52,"46 Park St, Portland, ME 04101" +167598,Bose SoundSport Headphones,1,99.99,02/17/19 17:30,"917 Highland St, San Francisco, CA 94016" +167599,USB-C Charging Cable,1,11.95,02/16/19 05:06,"132 Maple St, Los Angeles, CA 90001" +167600,AAA Batteries (4-pack),1,2.99,02/05/19 22:08,"637 Center St, Los Angeles, CA 90001" +167601,Bose SoundSport Headphones,1,99.99,02/09/19 19:09,"377 6th St, Portland, OR 97035" +167602,Lightning Charging Cable,2,14.95,02/12/19 09:05,"451 Madison St, San Francisco, CA 94016" +167603,Bose SoundSport Headphones,1,99.99,02/25/19 12:12,"387 Chestnut St, San Francisco, CA 94016" +167604,USB-C Charging Cable,1,11.95,02/12/19 18:59,"245 Ridge St, Los Angeles, CA 90001" +167605,AAA Batteries (4-pack),1,2.99,02/10/19 19:36,"394 Dogwood St, San Francisco, CA 94016" +167606,27in 4K Gaming Monitor,1,389.99,02/01/19 12:13,"77 Maple St, Boston, MA 02215" +167607,Flatscreen TV,1,300,02/27/19 00:06,"11 Spruce St, Los Angeles, CA 90001" +167608,AAA Batteries (4-pack),2,2.99,02/14/19 16:51,"199 Pine St, San Francisco, CA 94016" +167609,AAA Batteries (4-pack),1,2.99,02/28/19 14:44,"95 Jefferson St, Boston, MA 02215" +167610,Bose SoundSport Headphones,1,99.99,02/08/19 22:49,"538 Highland St, Boston, MA 02215" +167611,AA Batteries (4-pack),1,3.84,02/12/19 19:55,"580 12th St, Atlanta, GA 30301" +167612,Apple Airpods Headphones,1,150,02/15/19 13:28,"785 Willow St, San Francisco, CA 94016" +167613,Wired Headphones,1,11.99,02/02/19 21:43,"20 Jackson St, New York City, NY 10001" +167614,27in FHD Monitor,1,149.99,02/16/19 11:38,"476 Jackson St, Dallas, TX 75001" +167615,AAA Batteries (4-pack),2,2.99,02/12/19 19:13,"821 Washington St, Portland, OR 97035" +167616,27in FHD Monitor,1,149.99,02/20/19 12:32,"568 Maple St, Los Angeles, CA 90001" +167617,USB-C Charging Cable,1,11.95,02/24/19 12:28,"770 Lake St, Austin, TX 73301" +167618,Apple Airpods Headphones,1,150,02/23/19 23:27,"896 12th St, Los Angeles, CA 90001" +167619,AA Batteries (4-pack),1,3.84,02/09/19 13:20,"627 Forest St, Los Angeles, CA 90001" +167620,USB-C Charging Cable,1,11.95,02/09/19 15:41,"801 Johnson St, Portland, OR 97035" +167621,LG Dryer,1,600.0,03/01/19 00:58,"294 Ridge St, Los Angeles, CA 90001" +167622,iPhone,1,700,02/02/19 18:30,"360 Main St, Boston, MA 02215" +167622,Wired Headphones,1,11.99,02/02/19 18:30,"360 Main St, Boston, MA 02215" +167623,USB-C Charging Cable,1,11.95,02/17/19 10:45,"844 Lake St, San Francisco, CA 94016" +167624,Wired Headphones,1,11.99,02/14/19 07:39,"430 Cedar St, Austin, TX 73301" +167625,LG Dryer,1,600.0,02/26/19 16:54,"159 7th St, San Francisco, CA 94016" +167626,Apple Airpods Headphones,1,150,02/18/19 19:47,"738 Center St, San Francisco, CA 94016" +167627,Wired Headphones,1,11.99,02/07/19 12:48,"616 Johnson St, San Francisco, CA 94016" +167628,Apple Airpods Headphones,1,150,02/03/19 14:53,"396 Main St, Austin, TX 73301" +167629,Macbook Pro Laptop,1,1700,02/13/19 11:43,"773 Johnson St, Portland, OR 97035" +167630,Apple Airpods Headphones,1,150,02/12/19 14:38,"571 Park St, Los Angeles, CA 90001" +167631,27in FHD Monitor,1,149.99,02/02/19 17:41,"364 Washington St, Boston, MA 02215" +167632,Bose SoundSport Headphones,1,99.99,02/03/19 18:02,"995 Cherry St, New York City, NY 10001" +167633,Wired Headphones,1,11.99,02/27/19 20:19,"524 4th St, Boston, MA 02215" +167634,AA Batteries (4-pack),1,3.84,02/04/19 21:37,"686 Lakeview St, Boston, MA 02215" +167635,Apple Airpods Headphones,1,150,02/26/19 20:49,"267 Madison St, San Francisco, CA 94016" +167636,AAA Batteries (4-pack),1,2.99,02/02/19 15:38,"128 West St, Los Angeles, CA 90001" +167637,Google Phone,1,600,02/25/19 10:53,"433 13th St, New York City, NY 10001" +167638,AAA Batteries (4-pack),1,2.99,02/05/19 18:30,"438 Ridge St, San Francisco, CA 94016" +167639,Wired Headphones,1,11.99,02/16/19 05:10,"49 Cherry St, Portland, ME 04101" +167640,Wired Headphones,1,11.99,02/03/19 13:56,"387 West St, San Francisco, CA 94016" +167641,Bose SoundSport Headphones,1,99.99,02/09/19 11:52,"335 North St, Austin, TX 73301" +167642,AA Batteries (4-pack),2,3.84,02/20/19 20:14,"511 Elm St, San Francisco, CA 94016" +167643,AA Batteries (4-pack),1,3.84,02/07/19 09:24,"265 North St, Atlanta, GA 30301" +167643,USB-C Charging Cable,1,11.95,02/07/19 09:24,"265 North St, Atlanta, GA 30301" +167644,USB-C Charging Cable,1,11.95,02/05/19 12:15,"993 Spruce St, San Francisco, CA 94016" +167645,AA Batteries (4-pack),4,3.84,02/14/19 08:32,"257 Forest St, San Francisco, CA 94016" +167646,Wired Headphones,1,11.99,02/18/19 19:59,"121 6th St, Dallas, TX 75001" +167647,Apple Airpods Headphones,1,150,02/26/19 20:49,"89 Forest St, Atlanta, GA 30301" +167648,Lightning Charging Cable,1,14.95,02/15/19 22:37,"125 Meadow St, Los Angeles, CA 90001" +167649,Wired Headphones,1,11.99,02/01/19 16:13,"724 Jackson St, New York City, NY 10001" +167650,USB-C Charging Cable,1,11.95,02/11/19 22:45,"750 4th St, San Francisco, CA 94016" +167651,AAA Batteries (4-pack),2,2.99,02/10/19 13:47,"908 Highland St, New York City, NY 10001" +167652,USB-C Charging Cable,1,11.95,02/28/19 19:28,"881 Park St, Dallas, TX 75001" +167653,Bose SoundSport Headphones,1,99.99,02/28/19 12:08,"252 South St, Los Angeles, CA 90001" +167654,Vareebadd Phone,1,400,02/07/19 14:03,"50 Lincoln St, New York City, NY 10001" +167655,Apple Airpods Headphones,1,150,02/09/19 11:12,"87 North St, Dallas, TX 75001" +167656,Lightning Charging Cable,1,14.95,02/05/19 12:48,"712 Lincoln St, Dallas, TX 75001" +167657,27in FHD Monitor,1,149.99,02/27/19 09:29,"61 Maple St, Boston, MA 02215" +167658,27in FHD Monitor,1,149.99,02/15/19 13:29,"917 Lincoln St, Portland, OR 97035" +167659,Bose SoundSport Headphones,1,99.99,02/10/19 16:38,"39 Dogwood St, Los Angeles, CA 90001" +167660,Lightning Charging Cable,2,14.95,02/18/19 18:55,"520 Spruce St, Boston, MA 02215" +167661,Wired Headphones,1,11.99,02/02/19 22:02,"44 South St, Austin, TX 73301" +167662,27in FHD Monitor,1,149.99,02/23/19 21:41,"645 Walnut St, Atlanta, GA 30301" +167663,Bose SoundSport Headphones,1,99.99,02/12/19 22:58,"199 Spruce St, Los Angeles, CA 90001" +167663,AA Batteries (4-pack),1,3.84,02/12/19 22:58,"199 Spruce St, Los Angeles, CA 90001" +167664,Lightning Charging Cable,1,14.95,02/13/19 22:11,"806 South St, Atlanta, GA 30301" +167665,USB-C Charging Cable,1,11.95,02/09/19 12:25,"417 Park St, New York City, NY 10001" +167666,Apple Airpods Headphones,1,150,02/13/19 20:38,"895 2nd St, Boston, MA 02215" +167667,Lightning Charging Cable,1,14.95,02/24/19 20:10,"186 Jackson St, Dallas, TX 75001" +167668,Wired Headphones,1,11.99,02/05/19 07:43,"188 Main St, Seattle, WA 98101" +167669,AAA Batteries (4-pack),1,2.99,02/18/19 00:25,"435 7th St, San Francisco, CA 94016" +167670,AA Batteries (4-pack),2,3.84,02/28/19 15:23,"578 Maple St, Seattle, WA 98101" +167671,USB-C Charging Cable,1,11.95,02/17/19 12:12,"987 6th St, Boston, MA 02215" +167672,Bose SoundSport Headphones,1,99.99,02/03/19 19:27,"266 14th St, Seattle, WA 98101" +167673,AA Batteries (4-pack),1,3.84,02/17/19 06:02,"298 Johnson St, New York City, NY 10001" +167674,Lightning Charging Cable,1,14.95,02/11/19 18:17,"917 1st St, Atlanta, GA 30301" +167675,USB-C Charging Cable,1,11.95,02/01/19 10:01,"418 Spruce St, Boston, MA 02215" +167676,Apple Airpods Headphones,1,150,02/24/19 14:18,"63 Madison St, Los Angeles, CA 90001" +167677,27in 4K Gaming Monitor,1,389.99,02/21/19 11:18,"381 13th St, New York City, NY 10001" +167678,34in Ultrawide Monitor,1,379.99,02/01/19 21:28,"293 4th St, Dallas, TX 75001" +167679,Apple Airpods Headphones,1,150,02/27/19 22:14,"20 Sunset St, Los Angeles, CA 90001" +167680,Apple Airpods Headphones,1,150,02/19/19 18:54,"875 Maple St, Dallas, TX 75001" +167681,34in Ultrawide Monitor,1,379.99,02/13/19 14:21,"24 Adams St, Los Angeles, CA 90001" +167682,Flatscreen TV,1,300,02/06/19 15:14,"987 Meadow St, Dallas, TX 75001" +167683,Flatscreen TV,1,300,02/09/19 18:44,"555 South St, Seattle, WA 98101" +167684,Google Phone,1,600,02/08/19 15:27,"940 Center St, Atlanta, GA 30301" +167685,Wired Headphones,1,11.99,02/10/19 13:13,"556 6th St, New York City, NY 10001" +167686,AAA Batteries (4-pack),1,2.99,02/26/19 20:26,"461 Forest St, Austin, TX 73301" +167687,Lightning Charging Cable,1,14.95,02/22/19 19:22,"267 Church St, New York City, NY 10001" +167688,Macbook Pro Laptop,1,1700,02/27/19 15:47,"391 Wilson St, Los Angeles, CA 90001" +167689,AAA Batteries (4-pack),1,2.99,02/27/19 14:42,"825 Hill St, Seattle, WA 98101" +167690,27in FHD Monitor,1,149.99,02/06/19 23:35,"489 14th St, Austin, TX 73301" +167691,AAA Batteries (4-pack),1,2.99,02/24/19 13:41,"347 Johnson St, Portland, OR 97035" +167692,27in 4K Gaming Monitor,1,389.99,02/15/19 01:45,"10 Cedar St, Los Angeles, CA 90001" +167693,AA Batteries (4-pack),1,3.84,02/23/19 07:50,"689 11th St, San Francisco, CA 94016" +167694,AAA Batteries (4-pack),2,2.99,02/23/19 15:10,"108 Washington St, New York City, NY 10001" +167695,AA Batteries (4-pack),1,3.84,02/01/19 18:29,"62 Walnut St, San Francisco, CA 94016" +167696,Lightning Charging Cable,1,14.95,02/24/19 01:32,"519 Hill St, Los Angeles, CA 90001" +167697,iPhone,1,700,02/14/19 09:42,"253 Main St, Atlanta, GA 30301" +167698,AA Batteries (4-pack),2,3.84,02/04/19 08:36,"882 Dogwood St, Los Angeles, CA 90001" +167699,Lightning Charging Cable,2,14.95,02/18/19 12:50,"288 North St, Los Angeles, CA 90001" +167700,AAA Batteries (4-pack),1,2.99,02/19/19 14:24,"611 10th St, Portland, ME 04101" +167701,Flatscreen TV,1,300,02/10/19 13:16,"86 Center St, New York City, NY 10001" +167702,USB-C Charging Cable,2,11.95,02/19/19 09:38,"638 Willow St, Dallas, TX 75001" +167703,Apple Airpods Headphones,1,150,02/15/19 15:15,"423 Johnson St, Los Angeles, CA 90001" +167704,Google Phone,1,600,02/06/19 00:41,"26 Pine St, Dallas, TX 75001" +167705,Wired Headphones,1,11.99,02/25/19 19:49,"855 Lake St, Portland, OR 97035" +167706,iPhone,1,700,02/07/19 15:29,"965 Spruce St, San Francisco, CA 94016" +167707,Lightning Charging Cable,1,14.95,02/13/19 20:21,"683 12th St, Los Angeles, CA 90001" +167708,ThinkPad Laptop,1,999.99,02/13/19 11:33,"721 Washington St, New York City, NY 10001" +167709,AAA Batteries (4-pack),1,2.99,02/26/19 17:47,"265 Jefferson St, Seattle, WA 98101" +167710,Apple Airpods Headphones,1,150,02/18/19 09:28,"881 Park St, Los Angeles, CA 90001" +167711,AAA Batteries (4-pack),1,2.99,02/09/19 16:17,"468 4th St, San Francisco, CA 94016" +167712,AA Batteries (4-pack),1,3.84,02/07/19 18:21,"1 North St, San Francisco, CA 94016" +167713,AA Batteries (4-pack),1,3.84,02/14/19 09:16,"81 Adams St, Seattle, WA 98101" +167714,USB-C Charging Cable,1,11.95,02/20/19 20:27,"969 Main St, San Francisco, CA 94016" +167715,USB-C Charging Cable,1,11.95,02/03/19 13:20,"349 2nd St, San Francisco, CA 94016" +167716,USB-C Charging Cable,1,11.95,02/21/19 11:38,"562 Sunset St, Dallas, TX 75001" +167717,USB-C Charging Cable,2,11.95,02/24/19 20:42,"948 14th St, San Francisco, CA 94016" +167718,AA Batteries (4-pack),1,3.84,02/28/19 23:54,"34 Jefferson St, San Francisco, CA 94016" +167719,USB-C Charging Cable,1,11.95,02/03/19 14:25,"20 9th St, Los Angeles, CA 90001" +167720,Bose SoundSport Headphones,1,99.99,02/25/19 17:37,"30 2nd St, Boston, MA 02215" +167721,AAA Batteries (4-pack),1,2.99,02/04/19 15:26,"108 Madison St, San Francisco, CA 94016" +167722,Lightning Charging Cable,1,14.95,02/23/19 16:39,"528 Madison St, Dallas, TX 75001" +167723,27in 4K Gaming Monitor,1,389.99,02/05/19 00:00,"118 Forest St, Boston, MA 02215" +167724,Lightning Charging Cable,1,14.95,02/21/19 14:00,"445 Lincoln St, Dallas, TX 75001" +167725,Wired Headphones,1,11.99,02/09/19 12:48,"935 Church St, Atlanta, GA 30301" +167726,27in FHD Monitor,1,149.99,02/28/19 19:21,"768 River St, Los Angeles, CA 90001" +167727,iPhone,1,700,02/01/19 12:37,"325 Church St, New York City, NY 10001" +167728,ThinkPad Laptop,1,999.99,02/26/19 14:28,"935 Jackson St, Portland, OR 97035" +167729,34in Ultrawide Monitor,1,379.99,02/17/19 13:27,"841 12th St, New York City, NY 10001" +167730,USB-C Charging Cable,1,11.95,02/10/19 12:51,"877 Pine St, Dallas, TX 75001" +167731,27in FHD Monitor,1,149.99,02/08/19 09:23,"844 13th St, Austin, TX 73301" +167732,Wired Headphones,2,11.99,02/27/19 21:22,"155 Willow St, Seattle, WA 98101" +167733,Macbook Pro Laptop,1,1700,02/13/19 00:45,"48 Center St, Dallas, TX 75001" +167734,AAA Batteries (4-pack),1,2.99,02/12/19 09:37,"556 Johnson St, San Francisco, CA 94016" +167735,USB-C Charging Cable,1,11.95,02/16/19 14:25,"616 Jackson St, San Francisco, CA 94016" +167736,27in 4K Gaming Monitor,1,389.99,02/15/19 10:10,"491 Maple St, Seattle, WA 98101" +167737,27in FHD Monitor,1,149.99,02/15/19 10:37,"292 Sunset St, Seattle, WA 98101" +167738,Lightning Charging Cable,1,14.95,02/21/19 09:47,"195 13th St, Seattle, WA 98101" +167739,34in Ultrawide Monitor,1,379.99,02/10/19 12:41,"51 Forest St, Dallas, TX 75001" +167740,iPhone,1,700,02/25/19 17:01,"155 4th St, Los Angeles, CA 90001" +167741,ThinkPad Laptop,1,999.99,02/19/19 07:52,"357 Lakeview St, Atlanta, GA 30301" +167742,Lightning Charging Cable,1,14.95,02/05/19 09:38,"137 Elm St, Atlanta, GA 30301" +167743,AA Batteries (4-pack),1,3.84,02/15/19 22:37,"415 South St, San Francisco, CA 94016" +167744,Flatscreen TV,1,300,02/18/19 22:42,"893 Adams St, Los Angeles, CA 90001" +167745,Apple Airpods Headphones,1,150,02/19/19 19:33,"176 6th St, Dallas, TX 75001" +167746,AA Batteries (4-pack),3,3.84,02/27/19 10:41,"179 Lincoln St, New York City, NY 10001" +167747,Bose SoundSport Headphones,1,99.99,02/12/19 04:48,"995 4th St, Austin, TX 73301" +167748,Lightning Charging Cable,1,14.95,02/19/19 06:09,"768 Lincoln St, San Francisco, CA 94016" +167749,Apple Airpods Headphones,1,150,02/04/19 17:46,"211 Walnut St, Dallas, TX 75001" +167750,Bose SoundSport Headphones,1,99.99,02/20/19 23:09,"384 Forest St, Boston, MA 02215" +167751,iPhone,1,700,02/25/19 11:00,"49 Elm St, New York City, NY 10001" +167752,Lightning Charging Cable,1,14.95,02/10/19 12:43,"227 4th St, Portland, OR 97035" +167753,AAA Batteries (4-pack),1,2.99,02/21/19 01:06,"286 Sunset St, Los Angeles, CA 90001" +167754,Flatscreen TV,1,300,02/26/19 14:00,"120 Park St, New York City, NY 10001" +167755,ThinkPad Laptop,1,999.99,02/19/19 07:37,"671 7th St, Boston, MA 02215" +167756,ThinkPad Laptop,1,999.99,02/19/19 19:23,"685 North St, New York City, NY 10001" +167757,AA Batteries (4-pack),1,3.84,02/18/19 18:31,"243 Pine St, San Francisco, CA 94016" +167758,Wired Headphones,1,11.99,02/10/19 13:49,"885 4th St, Seattle, WA 98101" +167759,Flatscreen TV,1,300,02/12/19 16:16,"164 9th St, New York City, NY 10001" +167760,Lightning Charging Cable,1,14.95,02/07/19 05:09,"528 Dogwood St, Los Angeles, CA 90001" +167761,AAA Batteries (4-pack),1,2.99,02/02/19 08:45,"972 7th St, Dallas, TX 75001" +167762,Macbook Pro Laptop,1,1700,02/25/19 19:05,"399 Johnson St, Portland, OR 97035" +167763,LG Dryer,1,600.0,02/14/19 12:14,"399 Lake St, New York City, NY 10001" +167764,Wired Headphones,1,11.99,02/28/19 19:40,"952 12th St, San Francisco, CA 94016" +167765,Wired Headphones,1,11.99,02/26/19 02:27,"650 Dogwood St, Boston, MA 02215" +167766,27in 4K Gaming Monitor,1,389.99,02/01/19 14:59,"462 Maple St, Los Angeles, CA 90001" +167767,Lightning Charging Cable,1,14.95,02/03/19 10:25,"29 Ridge St, Seattle, WA 98101" +167768,AAA Batteries (4-pack),1,2.99,02/23/19 13:38,"156 Sunset St, Dallas, TX 75001" +167769,ThinkPad Laptop,1,999.99,02/23/19 18:26,"580 Park St, New York City, NY 10001" +167770,34in Ultrawide Monitor,1,379.99,02/05/19 21:49,"354 Highland St, Seattle, WA 98101" +167771,20in Monitor,1,109.99,02/10/19 16:27,"19 Spruce St, Seattle, WA 98101" +167772,Google Phone,1,600,02/12/19 12:00,"561 South St, San Francisco, CA 94016" +167773,USB-C Charging Cable,1,11.95,02/08/19 19:09,"517 14th St, San Francisco, CA 94016" +167774,Flatscreen TV,1,300,02/19/19 18:24,"896 4th St, San Francisco, CA 94016" +167775,USB-C Charging Cable,1,11.95,02/26/19 14:38,"91 8th St, Los Angeles, CA 90001" +167776,Lightning Charging Cable,2,14.95,02/04/19 09:27,"535 1st St, San Francisco, CA 94016" +167776,AAA Batteries (4-pack),1,2.99,02/04/19 09:27,"535 1st St, San Francisco, CA 94016" +167777,Bose SoundSport Headphones,1,99.99,02/08/19 11:31,"818 Willow St, Portland, OR 97035" +167778,Lightning Charging Cable,1,14.95,02/15/19 21:24,"397 9th St, Los Angeles, CA 90001" +167779,Bose SoundSport Headphones,1,99.99,02/03/19 08:15,"440 Sunset St, San Francisco, CA 94016" +167780,Lightning Charging Cable,1,14.95,02/01/19 14:44,"578 Lincoln St, Seattle, WA 98101" +167781,USB-C Charging Cable,1,11.95,02/14/19 21:04,"622 7th St, Los Angeles, CA 90001" +167782,Apple Airpods Headphones,1,150,02/22/19 14:11,"366 10th St, New York City, NY 10001" +167783,27in FHD Monitor,1,149.99,02/12/19 23:53,"538 Highland St, San Francisco, CA 94016" +167784,Apple Airpods Headphones,1,150,02/20/19 12:30,"675 1st St, Los Angeles, CA 90001" +167785,Bose SoundSport Headphones,1,99.99,02/01/19 09:02,"862 Hill St, Portland, ME 04101" +167786,AA Batteries (4-pack),1,3.84,02/06/19 09:19,"934 5th St, San Francisco, CA 94016" +167787,Apple Airpods Headphones,1,150,02/01/19 13:52,"19 9th St, San Francisco, CA 94016" +167788,USB-C Charging Cable,1,11.95,02/16/19 12:05,"113 Hickory St, Boston, MA 02215" +167789,27in 4K Gaming Monitor,1,389.99,02/06/19 00:22,"441 Elm St, New York City, NY 10001" +167790,27in FHD Monitor,1,149.99,02/10/19 15:38,"776 Dogwood St, New York City, NY 10001" +167791,USB-C Charging Cable,1,11.95,02/27/19 15:23,"546 Hill St, San Francisco, CA 94016" +167792,20in Monitor,1,109.99,02/11/19 09:47,"267 8th St, Atlanta, GA 30301" +167793,Google Phone,1,600,02/20/19 21:48,"364 Spruce St, Atlanta, GA 30301" +167793,Wired Headphones,3,11.99,02/20/19 21:48,"364 Spruce St, Atlanta, GA 30301" +167794,AAA Batteries (4-pack),1,2.99,02/04/19 16:08,"792 Willow St, Austin, TX 73301" +167795,AA Batteries (4-pack),1,3.84,02/24/19 21:14,"790 Chestnut St, Los Angeles, CA 90001" +167796,Macbook Pro Laptop,1,1700,02/23/19 15:32,"924 10th St, Atlanta, GA 30301" +167797,Bose SoundSport Headphones,1,99.99,02/06/19 12:39,"173 Ridge St, New York City, NY 10001" +167798,Apple Airpods Headphones,1,150,02/21/19 20:06,"328 7th St, Atlanta, GA 30301" +167799,AA Batteries (4-pack),2,3.84,02/10/19 12:07,"518 Lincoln St, San Francisco, CA 94016" +167800,Wired Headphones,1,11.99,02/20/19 12:16,"821 11th St, Los Angeles, CA 90001" +167801,20in Monitor,1,109.99,02/08/19 20:56,"874 6th St, San Francisco, CA 94016" +167802,AA Batteries (4-pack),1,3.84,02/15/19 18:07,"939 Highland St, San Francisco, CA 94016" +167803,Lightning Charging Cable,1,14.95,02/16/19 20:12,"586 Lincoln St, New York City, NY 10001" +167804,Lightning Charging Cable,1,14.95,02/28/19 08:18,"175 Walnut St, Seattle, WA 98101" +167805,AAA Batteries (4-pack),1,2.99,02/01/19 19:30,"358 Main St, Seattle, WA 98101" +167806,Wired Headphones,1,11.99,02/16/19 18:57,"933 7th St, San Francisco, CA 94016" +167807,Vareebadd Phone,1,400,02/16/19 13:46,"573 7th St, Boston, MA 02215" +167807,USB-C Charging Cable,1,11.95,02/16/19 13:46,"573 7th St, Boston, MA 02215" +167807,Wired Headphones,1,11.99,02/16/19 13:46,"573 7th St, Boston, MA 02215" +167808,ThinkPad Laptop,1,999.99,02/05/19 21:01,"327 13th St, Atlanta, GA 30301" +167809,iPhone,1,700,02/22/19 15:03,"286 12th St, San Francisco, CA 94016" +167810,27in 4K Gaming Monitor,1,389.99,02/17/19 21:51,"683 Walnut St, Dallas, TX 75001" +167811,Lightning Charging Cable,1,14.95,02/24/19 08:45,"118 Pine St, San Francisco, CA 94016" +167812,Apple Airpods Headphones,1,150,02/12/19 16:21,"803 14th St, Seattle, WA 98101" +167813,Lightning Charging Cable,1,14.95,02/24/19 12:26,"225 6th St, Seattle, WA 98101" +167814,USB-C Charging Cable,1,11.95,02/24/19 21:50,"385 Lincoln St, Los Angeles, CA 90001" +167815,iPhone,1,700,02/07/19 16:03,"298 Sunset St, New York City, NY 10001" +167816,Wired Headphones,1,11.99,02/25/19 06:22,"153 Madison St, Boston, MA 02215" +167817,Lightning Charging Cable,1,14.95,02/24/19 20:41,"973 Washington St, San Francisco, CA 94016" +167818,USB-C Charging Cable,1,11.95,02/05/19 01:55,"989 10th St, Boston, MA 02215" +167819,AAA Batteries (4-pack),1,2.99,02/06/19 15:59,"869 Johnson St, Los Angeles, CA 90001" +167820,Apple Airpods Headphones,1,150,02/04/19 20:24,"249 Jefferson St, Portland, OR 97035" +167821,Lightning Charging Cable,1,14.95,02/03/19 13:38,"929 Elm St, Austin, TX 73301" +167822,Lightning Charging Cable,1,14.95,02/03/19 18:34,"262 2nd St, Austin, TX 73301" +167823,Apple Airpods Headphones,1,150,02/07/19 21:29,"300 Hill St, Portland, OR 97035" +167824,Google Phone,1,600,02/04/19 16:43,"416 Highland St, Los Angeles, CA 90001" +167825,AAA Batteries (4-pack),1,2.99,02/13/19 22:56,"637 Church St, San Francisco, CA 94016" +167826,USB-C Charging Cable,1,11.95,02/13/19 18:50,"475 6th St, San Francisco, CA 94016" +167827,Flatscreen TV,1,300,02/17/19 15:15,"63 Cherry St, Seattle, WA 98101" +167828,Apple Airpods Headphones,1,150,02/10/19 23:32,"98 Lakeview St, Seattle, WA 98101" +167829,ThinkPad Laptop,1,999.99,02/03/19 13:32,"811 South St, Austin, TX 73301" +167830,USB-C Charging Cable,1,11.95,02/04/19 09:26,"571 4th St, Portland, ME 04101" +167831,iPhone,1,700,02/20/19 09:13,"724 West St, Atlanta, GA 30301" +167832,USB-C Charging Cable,1,11.95,02/24/19 09:37,"603 7th St, San Francisco, CA 94016" +167833,27in FHD Monitor,1,149.99,02/01/19 20:14,"621 9th St, New York City, NY 10001" +167834,Lightning Charging Cable,2,14.95,02/05/19 18:25,"783 Lakeview St, Los Angeles, CA 90001" +167835,Wired Headphones,1,11.99,02/04/19 13:44,"415 Johnson St, San Francisco, CA 94016" +167836,ThinkPad Laptop,1,999.99,02/18/19 20:31,"8 Forest St, Boston, MA 02215" +167837,USB-C Charging Cable,1,11.95,02/06/19 00:19,"592 Maple St, Seattle, WA 98101" +167838,Wired Headphones,1,11.99,02/15/19 11:13,"364 1st St, Atlanta, GA 30301" +167839,AAA Batteries (4-pack),1,2.99,02/02/19 19:45,"928 Lakeview St, San Francisco, CA 94016" +167840,USB-C Charging Cable,1,11.95,02/20/19 11:47,"489 Lakeview St, New York City, NY 10001" +167841,Macbook Pro Laptop,1,1700,02/25/19 20:48,"183 Washington St, San Francisco, CA 94016" +167842,Wired Headphones,1,11.99,02/17/19 20:27,"657 Pine St, Los Angeles, CA 90001" +167843,Bose SoundSport Headphones,1,99.99,02/28/19 11:20,"540 14th St, New York City, NY 10001" +167844,USB-C Charging Cable,1,11.95,02/28/19 08:43,"940 Jefferson St, Seattle, WA 98101" +167845,Apple Airpods Headphones,1,150,02/23/19 11:30,"299 Meadow St, San Francisco, CA 94016" +167846,27in FHD Monitor,1,149.99,02/04/19 15:47,"871 Jefferson St, San Francisco, CA 94016" +167847,Vareebadd Phone,1,400,02/01/19 21:21,"580 9th St, Los Angeles, CA 90001" +167848,AA Batteries (4-pack),1,3.84,02/26/19 12:01,"163 Jackson St, Seattle, WA 98101" +167849,USB-C Charging Cable,2,11.95,02/01/19 11:27,"228 4th St, Los Angeles, CA 90001" +167850,Apple Airpods Headphones,1,150,02/04/19 14:01,"179 North St, Dallas, TX 75001" +167851,iPhone,1,700,02/08/19 18:00,"311 Cherry St, San Francisco, CA 94016" +167852,Apple Airpods Headphones,1,150,02/24/19 17:25,"57 5th St, Dallas, TX 75001" +167853,Bose SoundSport Headphones,1,99.99,02/27/19 12:21,"261 11th St, San Francisco, CA 94016" +167854,Wired Headphones,1,11.99,02/09/19 20:19,"425 Madison St, San Francisco, CA 94016" +167855,USB-C Charging Cable,1,11.95,02/23/19 11:37,"180 11th St, San Francisco, CA 94016" +167856,Bose SoundSport Headphones,1,99.99,02/05/19 08:47,"568 Jefferson St, San Francisco, CA 94016" +167857,AAA Batteries (4-pack),3,2.99,02/19/19 13:13,"660 Cherry St, New York City, NY 10001" +167858,AAA Batteries (4-pack),1,2.99,02/12/19 23:25,"563 8th St, San Francisco, CA 94016" +167859,27in FHD Monitor,1,149.99,02/06/19 22:16,"454 Johnson St, Portland, OR 97035" +167860,AAA Batteries (4-pack),1,2.99,02/14/19 01:16,"45 Center St, San Francisco, CA 94016" +167861,20in Monitor,1,109.99,02/01/19 18:40,"176 Forest St, Atlanta, GA 30301" +167862,AAA Batteries (4-pack),1,2.99,02/04/19 23:03,"438 Lakeview St, San Francisco, CA 94016" +167863,Lightning Charging Cable,1,14.95,02/01/19 18:38,"920 Wilson St, San Francisco, CA 94016" +167864,27in FHD Monitor,1,149.99,02/12/19 10:09,"965 Jefferson St, Austin, TX 73301" +167865,Macbook Pro Laptop,1,1700,02/09/19 23:55,"819 7th St, Portland, OR 97035" +167866,AAA Batteries (4-pack),1,2.99,02/04/19 17:45,"68 9th St, San Francisco, CA 94016" +167867,Wired Headphones,1,11.99,02/10/19 07:50,"766 Maple St, Boston, MA 02215" +167868,Wired Headphones,1,11.99,02/15/19 10:27,"669 Ridge St, San Francisco, CA 94016" +167869,20in Monitor,1,109.99,02/13/19 12:40,"160 Park St, San Francisco, CA 94016" +167870,Wired Headphones,1,11.99,02/17/19 01:00,"381 5th St, Los Angeles, CA 90001" +167871,Flatscreen TV,1,300,02/16/19 16:33,"972 Lake St, San Francisco, CA 94016" +167872,AAA Batteries (4-pack),1,2.99,02/24/19 15:39,"560 Park St, San Francisco, CA 94016" +167873,AAA Batteries (4-pack),1,2.99,02/02/19 17:22,"404 Elm St, Portland, ME 04101" +167874,Wired Headphones,1,11.99,02/28/19 08:07,"565 7th St, New York City, NY 10001" +167875,Bose SoundSport Headphones,1,99.99,02/01/19 12:42,"683 12th St, Los Angeles, CA 90001" +167876,AAA Batteries (4-pack),3,2.99,02/13/19 17:34,"97 5th St, Seattle, WA 98101" +167877,Flatscreen TV,1,300,02/27/19 22:49,"179 Lake St, Los Angeles, CA 90001" +167878,Wired Headphones,1,11.99,02/01/19 11:07,"840 River St, Los Angeles, CA 90001" +167879,AAA Batteries (4-pack),4,2.99,02/15/19 00:33,"684 Cherry St, New York City, NY 10001" +167880,USB-C Charging Cable,1,11.95,02/12/19 21:01,"527 Lakeview St, New York City, NY 10001" +167881,Lightning Charging Cable,1,14.95,02/10/19 14:54,"998 Church St, New York City, NY 10001" +167882,Wired Headphones,2,11.99,02/16/19 20:27,"388 Jefferson St, Atlanta, GA 30301" +167883,ThinkPad Laptop,1,999.99,02/11/19 17:20,"178 Walnut St, New York City, NY 10001" +167884,27in FHD Monitor,1,149.99,02/14/19 23:06,"647 Lincoln St, New York City, NY 10001" +167885,Wired Headphones,1,11.99,02/14/19 13:21,"886 5th St, Dallas, TX 75001" +167886,Wired Headphones,2,11.99,02/13/19 07:09,"55 Cedar St, New York City, NY 10001" +167887,USB-C Charging Cable,1,11.95,02/08/19 16:42,"999 Willow St, Atlanta, GA 30301" +167888,USB-C Charging Cable,1,11.95,02/08/19 21:32,"702 Chestnut St, Seattle, WA 98101" +167889,AAA Batteries (4-pack),1,2.99,02/22/19 22:56,"974 North St, San Francisco, CA 94016" +167890,iPhone,1,700,02/08/19 21:03,"519 Spruce St, Seattle, WA 98101" +167891,USB-C Charging Cable,1,11.95,02/13/19 17:41,"290 Cedar St, Seattle, WA 98101" +167892,AA Batteries (4-pack),1,3.84,02/13/19 17:31,"834 Hickory St, Atlanta, GA 30301" +167893,USB-C Charging Cable,1,11.95,02/20/19 12:12,"312 10th St, New York City, NY 10001" +167894,AA Batteries (4-pack),3,3.84,02/20/19 12:49,"995 River St, Los Angeles, CA 90001" +167895,AAA Batteries (4-pack),1,2.99,02/08/19 18:37,"680 Main St, San Francisco, CA 94016" +167896,AAA Batteries (4-pack),1,2.99,02/09/19 09:50,"152 Hickory St, Boston, MA 02215" +167897,USB-C Charging Cable,2,11.95,02/25/19 14:49,"59 Jackson St, Boston, MA 02215" +167898,Wired Headphones,1,11.99,02/05/19 16:25,"437 Cherry St, New York City, NY 10001" +167899,Wired Headphones,1,11.99,02/01/19 09:58,"47 10th St, San Francisco, CA 94016" +167900,USB-C Charging Cable,1,11.95,02/23/19 10:21,"795 Lincoln St, Los Angeles, CA 90001" +167901,Lightning Charging Cable,1,14.95,02/13/19 10:42,"393 Jackson St, Boston, MA 02215" +167902,Apple Airpods Headphones,1,150,02/11/19 20:26,"980 Adams St, Los Angeles, CA 90001" +167903,Bose SoundSport Headphones,1,99.99,02/10/19 08:48,"658 Spruce St, Portland, OR 97035" +167904,20in Monitor,1,109.99,02/18/19 13:09,"15 Hill St, San Francisco, CA 94016" +167905,27in 4K Gaming Monitor,1,389.99,02/18/19 23:04,"71 River St, Dallas, TX 75001" +167906,AAA Batteries (4-pack),2,2.99,02/01/19 17:27,"131 Dogwood St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +167907,AA Batteries (4-pack),1,3.84,02/11/19 23:15,"545 5th St, Los Angeles, CA 90001" +167908,USB-C Charging Cable,1,11.95,02/06/19 20:21,"541 Jefferson St, San Francisco, CA 94016" +167909,27in 4K Gaming Monitor,1,389.99,02/05/19 11:03,"714 Main St, Los Angeles, CA 90001" +167910,USB-C Charging Cable,1,11.95,03/01/19 01:22,"795 Cherry St, New York City, NY 10001" +167911,iPhone,1,700,02/04/19 02:32,"764 Adams St, Los Angeles, CA 90001" +167912,Apple Airpods Headphones,1,150,02/02/19 12:54,"156 River St, Los Angeles, CA 90001" +167913,AA Batteries (4-pack),1,3.84,02/10/19 11:05,"262 Elm St, Austin, TX 73301" +167914,Wired Headphones,1,11.99,02/19/19 18:21,"21 Main St, New York City, NY 10001" +167915,AAA Batteries (4-pack),2,2.99,02/19/19 19:17,"890 Main St, San Francisco, CA 94016" +167916,USB-C Charging Cable,1,11.95,02/28/19 07:22,"725 Willow St, Atlanta, GA 30301" +167917,AAA Batteries (4-pack),3,2.99,02/01/19 06:22,"105 12th St, San Francisco, CA 94016" +167918,Google Phone,1,600,02/07/19 13:39,"998 Forest St, Los Angeles, CA 90001" +167919,Bose SoundSport Headphones,1,99.99,02/11/19 23:23,"443 Highland St, San Francisco, CA 94016" +167920,AAA Batteries (4-pack),1,2.99,02/13/19 15:17,"389 6th St, Los Angeles, CA 90001" +167921,27in FHD Monitor,1,149.99,02/01/19 12:24,"332 Dogwood St, Atlanta, GA 30301" +167922,Bose SoundSport Headphones,1,99.99,02/08/19 08:04,"88 Hickory St, San Francisco, CA 94016" +167923,USB-C Charging Cable,1,11.95,02/18/19 11:10,"589 Jackson St, New York City, NY 10001" +167924,Apple Airpods Headphones,1,150,02/23/19 13:21,"566 Church St, Boston, MA 02215" +167925,Wired Headphones,1,11.99,02/08/19 15:26,"991 12th St, Seattle, WA 98101" +167926,AA Batteries (4-pack),1,3.84,02/03/19 10:58,"56 6th St, Atlanta, GA 30301" +167927,AAA Batteries (4-pack),2,2.99,02/17/19 23:10,"522 Lakeview St, New York City, NY 10001" +167928,AAA Batteries (4-pack),1,2.99,02/08/19 12:44,"553 West St, Atlanta, GA 30301" +167929,Google Phone,1,600,02/10/19 11:33,"678 Maple St, Austin, TX 73301" +167930,AAA Batteries (4-pack),3,2.99,02/22/19 15:08,"73 9th St, Boston, MA 02215" +167931,AAA Batteries (4-pack),4,2.99,02/13/19 16:05,"985 Willow St, Boston, MA 02215" +167932,Macbook Pro Laptop,1,1700,02/08/19 16:53,"452 Hill St, San Francisco, CA 94016" +167933,Google Phone,1,600,02/10/19 08:14,"327 Pine St, Los Angeles, CA 90001" +167934,Lightning Charging Cable,1,14.95,02/01/19 15:31,"39 North St, New York City, NY 10001" +167935,iPhone,1,700,02/23/19 10:00,"457 Sunset St, Boston, MA 02215" +167936,AAA Batteries (4-pack),5,2.99,02/23/19 08:49,"498 Ridge St, New York City, NY 10001" +167937,USB-C Charging Cable,1,11.95,02/08/19 20:15,"44 Cedar St, Austin, TX 73301" +167938,AA Batteries (4-pack),1,3.84,02/11/19 17:29,"996 Wilson St, New York City, NY 10001" +167939,AA Batteries (4-pack),1,3.84,02/07/19 21:41,"789 Walnut St, Los Angeles, CA 90001" +167940,Wired Headphones,1,11.99,02/12/19 12:47,"447 Main St, San Francisco, CA 94016" +167941,Google Phone,1,600,02/22/19 17:32,"732 2nd St, Los Angeles, CA 90001" +167941,Wired Headphones,1,11.99,02/22/19 17:32,"732 2nd St, Los Angeles, CA 90001" +167942,ThinkPad Laptop,1,999.99,02/01/19 10:11,"455 Lakeview St, Los Angeles, CA 90001" +167943,AAA Batteries (4-pack),1,2.99,02/16/19 08:42,"494 Adams St, Portland, OR 97035" +167944,USB-C Charging Cable,1,11.95,02/22/19 15:54,"91 1st St, New York City, NY 10001" +167945,Google Phone,1,600,02/28/19 16:40,"717 North St, San Francisco, CA 94016" +167946,Wired Headphones,1,11.99,02/02/19 13:56,"732 Adams St, San Francisco, CA 94016" +167947,Apple Airpods Headphones,1,150,02/21/19 12:12,"403 Ridge St, Dallas, TX 75001" +167948,27in FHD Monitor,1,149.99,02/19/19 03:25,"502 Jackson St, Los Angeles, CA 90001" +167949,AAA Batteries (4-pack),2,2.99,02/10/19 10:54,"11 North St, San Francisco, CA 94016" +167950,Wired Headphones,1,11.99,02/27/19 14:32,"939 Main St, Portland, OR 97035" +167951,Apple Airpods Headphones,1,150,02/03/19 16:12,"417 Cherry St, San Francisco, CA 94016" +167952,27in FHD Monitor,1,149.99,02/01/19 05:45,"539 14th St, Portland, OR 97035" +167953,Vareebadd Phone,1,400,02/13/19 15:49,"893 Jackson St, San Francisco, CA 94016" +167953,USB-C Charging Cable,1,11.95,02/13/19 15:49,"893 Jackson St, San Francisco, CA 94016" +167954,Wired Headphones,1,11.99,02/14/19 00:46,"859 12th St, Portland, OR 97035" +167955,Lightning Charging Cable,1,14.95,02/08/19 08:22,"340 Lakeview St, Dallas, TX 75001" +167956,34in Ultrawide Monitor,1,379.99,02/20/19 12:35,"434 South St, Los Angeles, CA 90001" +167957,AAA Batteries (4-pack),1,2.99,02/20/19 00:23,"170 Lincoln St, Atlanta, GA 30301" +167958,USB-C Charging Cable,1,11.95,02/10/19 20:55,"296 10th St, Seattle, WA 98101" +167959,AA Batteries (4-pack),1,3.84,02/03/19 23:49,"851 Madison St, Atlanta, GA 30301" +167960,LG Dryer,1,600.0,02/26/19 22:26,"785 Cedar St, Dallas, TX 75001" +167961,USB-C Charging Cable,1,11.95,02/04/19 14:40,"891 14th St, New York City, NY 10001" +167962,Google Phone,1,600,02/16/19 00:03,"613 Johnson St, Los Angeles, CA 90001" +167963,Bose SoundSport Headphones,1,99.99,02/27/19 18:51,"504 West St, San Francisco, CA 94016" +167964,Macbook Pro Laptop,1,1700,02/17/19 10:39,"279 Cedar St, Boston, MA 02215" +167965,AAA Batteries (4-pack),1,2.99,02/08/19 07:58,"105 Church St, Boston, MA 02215" +167966,AAA Batteries (4-pack),1,2.99,02/09/19 16:53,"53 4th St, Los Angeles, CA 90001" +167967,Google Phone,1,600,02/04/19 11:52,"461 8th St, Los Angeles, CA 90001" +167967,USB-C Charging Cable,1,11.95,02/04/19 11:52,"461 8th St, Los Angeles, CA 90001" +167968,AA Batteries (4-pack),1,3.84,02/19/19 15:45,"718 West St, New York City, NY 10001" +167969,Apple Airpods Headphones,1,150,02/20/19 14:58,"39 Park St, New York City, NY 10001" +167970,AAA Batteries (4-pack),1,2.99,02/11/19 13:52,"374 4th St, San Francisco, CA 94016" +167971,AA Batteries (4-pack),1,3.84,02/22/19 13:33,"706 14th St, Seattle, WA 98101" +167972,Lightning Charging Cable,1,14.95,02/02/19 10:32,"851 Forest St, Boston, MA 02215" +167973,USB-C Charging Cable,2,11.95,02/23/19 11:23,"44 1st St, Boston, MA 02215" +167974,AA Batteries (4-pack),1,3.84,02/03/19 22:15,"182 9th St, Atlanta, GA 30301" +167975,Wired Headphones,1,11.99,02/12/19 20:34,"716 Highland St, San Francisco, CA 94016" +,,,,, +167976,Apple Airpods Headphones,1,150,02/09/19 19:31,"939 Church St, Austin, TX 73301" +167977,Apple Airpods Headphones,1,150,02/26/19 12:05,"645 Maple St, New York City, NY 10001" +167978,Apple Airpods Headphones,1,150,02/24/19 01:23,"25 1st St, Boston, MA 02215" +167979,Apple Airpods Headphones,1,150,02/14/19 13:29,"493 Wilson St, San Francisco, CA 94016" +167980,iPhone,1,700,02/13/19 15:01,"89 Jackson St, Boston, MA 02215" +167981,AAA Batteries (4-pack),1,2.99,02/23/19 17:07,"240 8th St, New York City, NY 10001" +167982,AA Batteries (4-pack),1,3.84,02/25/19 22:00,"114 Jefferson St, Boston, MA 02215" +167983,AA Batteries (4-pack),1,3.84,02/25/19 13:10,"414 Walnut St, Los Angeles, CA 90001" +167984,Macbook Pro Laptop,1,1700,02/08/19 14:57,"493 2nd St, Dallas, TX 75001" +167985,Lightning Charging Cable,1,14.95,02/17/19 17:24,"312 4th St, Los Angeles, CA 90001" +167986,Apple Airpods Headphones,1,150,02/08/19 19:10,"703 Madison St, San Francisco, CA 94016" +167987,Wired Headphones,1,11.99,02/28/19 17:28,"279 Madison St, Dallas, TX 75001" +167988,Lightning Charging Cable,1,14.95,02/22/19 14:06,"124 Jefferson St, Boston, MA 02215" +167989,Lightning Charging Cable,1,14.95,02/10/19 23:17,"383 Chestnut St, Seattle, WA 98101" +167990,Lightning Charging Cable,1,14.95,02/13/19 02:10,"332 Chestnut St, San Francisco, CA 94016" +167991,USB-C Charging Cable,1,11.95,02/20/19 07:56,"217 Hill St, San Francisco, CA 94016" +167992,AA Batteries (4-pack),1,3.84,02/05/19 12:29,"958 Lakeview St, Atlanta, GA 30301" +167993,AAA Batteries (4-pack),1,2.99,02/01/19 21:38,"773 Church St, San Francisco, CA 94016" +167994,Flatscreen TV,1,300,02/05/19 12:08,"51 Sunset St, Los Angeles, CA 90001" +167995,Apple Airpods Headphones,1,150,02/19/19 21:04,"786 Cedar St, Portland, ME 04101" +167996,Lightning Charging Cable,1,14.95,02/11/19 16:54,"890 Johnson St, San Francisco, CA 94016" +167997,27in 4K Gaming Monitor,1,389.99,02/06/19 12:42,"946 Park St, Seattle, WA 98101" +167998,AAA Batteries (4-pack),2,2.99,02/18/19 21:54,"955 13th St, Atlanta, GA 30301" +167999,Lightning Charging Cable,1,14.95,02/12/19 20:45,"421 Elm St, Dallas, TX 75001" +168000,Bose SoundSport Headphones,1,99.99,02/13/19 08:11,"892 6th St, San Francisco, CA 94016" +168001,27in 4K Gaming Monitor,1,389.99,02/15/19 12:08,"218 Lakeview St, San Francisco, CA 94016" +168002,Apple Airpods Headphones,1,150,02/06/19 00:51,"44 Cherry St, San Francisco, CA 94016" +168003,27in FHD Monitor,1,149.99,02/03/19 12:27,"26 Johnson St, Los Angeles, CA 90001" +168004,USB-C Charging Cable,1,11.95,02/02/19 20:55,"127 Chestnut St, Dallas, TX 75001" +168005,Wired Headphones,1,11.99,02/25/19 18:29,"568 Adams St, San Francisco, CA 94016" +168006,Vareebadd Phone,1,400,02/24/19 16:55,"486 Lakeview St, Boston, MA 02215" +168007,Apple Airpods Headphones,1,150,02/07/19 14:02,"59 Hill St, Austin, TX 73301" +168008,20in Monitor,1,109.99,02/08/19 00:24,"866 Spruce St, Seattle, WA 98101" +168009,iPhone,1,700,02/02/19 08:37,"190 Main St, San Francisco, CA 94016" +168009,Apple Airpods Headphones,1,150,02/02/19 08:37,"190 Main St, San Francisco, CA 94016" +168010,Apple Airpods Headphones,1,150,02/02/19 18:13,"957 North St, Seattle, WA 98101" +168011,AAA Batteries (4-pack),1,2.99,02/15/19 13:50,"994 7th St, San Francisco, CA 94016" +168012,Apple Airpods Headphones,1,150,02/01/19 23:32,"42 14th St, Boston, MA 02215" +168013,AAA Batteries (4-pack),1,2.99,02/24/19 13:57,"725 Walnut St, New York City, NY 10001" +168014,AA Batteries (4-pack),1,3.84,02/17/19 19:12,"863 Main St, Los Angeles, CA 90001" +168015,Bose SoundSport Headphones,1,99.99,02/21/19 12:36,"897 Hickory St, Dallas, TX 75001" +168016,AAA Batteries (4-pack),1,2.99,02/25/19 16:52,"266 10th St, San Francisco, CA 94016" +168017,Flatscreen TV,1,300,02/27/19 17:37,"54 7th St, Los Angeles, CA 90001" +168018,Flatscreen TV,1,300,02/01/19 16:27,"373 Lakeview St, Boston, MA 02215" +168019,Apple Airpods Headphones,1,150,02/23/19 21:35,"454 Church St, Boston, MA 02215" +168020,AA Batteries (4-pack),1,3.84,02/04/19 17:03,"507 Dogwood St, Austin, TX 73301" +168021,Apple Airpods Headphones,1,150,02/11/19 11:00,"62 Ridge St, Los Angeles, CA 90001" +168022,Flatscreen TV,1,300,02/06/19 09:50,"804 Cherry St, New York City, NY 10001" +168023,USB-C Charging Cable,1,11.95,02/14/19 17:01,"176 Washington St, New York City, NY 10001" +168024,AAA Batteries (4-pack),3,2.99,02/08/19 14:06,"150 West St, Seattle, WA 98101" +168025,Bose SoundSport Headphones,1,99.99,02/01/19 18:24,"101 12th St, Portland, OR 97035" +168026,USB-C Charging Cable,1,11.95,02/24/19 15:04,"644 9th St, Portland, OR 97035" +168027,USB-C Charging Cable,1,11.95,02/03/19 23:33,"499 Jackson St, Dallas, TX 75001" +168028,iPhone,1,700,02/17/19 23:49,"735 11th St, San Francisco, CA 94016" +168029,AAA Batteries (4-pack),1,2.99,02/15/19 20:20,"786 Adams St, San Francisco, CA 94016" +168030,Lightning Charging Cable,1,14.95,02/27/19 16:21,"322 Walnut St, Seattle, WA 98101" +168031,AAA Batteries (4-pack),1,2.99,02/19/19 14:30,"956 Center St, San Francisco, CA 94016" +168032,Lightning Charging Cable,1,14.95,02/10/19 12:21,"96 Meadow St, Dallas, TX 75001" +168033,27in 4K Gaming Monitor,1,389.99,02/11/19 13:55,"249 Lincoln St, San Francisco, CA 94016" +168034,AAA Batteries (4-pack),1,2.99,02/23/19 17:47,"698 4th St, Boston, MA 02215" +168035,AA Batteries (4-pack),1,3.84,02/21/19 16:18,"200 13th St, Seattle, WA 98101" +168036,Apple Airpods Headphones,1,150,02/12/19 11:26,"489 7th St, Dallas, TX 75001" +168037,AAA Batteries (4-pack),1,2.99,02/13/19 12:03,"441 Main St, New York City, NY 10001" +168038,iPhone,1,700,02/12/19 11:56,"343 Spruce St, New York City, NY 10001" +168039,Wired Headphones,1,11.99,02/24/19 10:12,"142 Maple St, San Francisco, CA 94016" +168039,AAA Batteries (4-pack),1,2.99,02/24/19 10:12,"142 Maple St, San Francisco, CA 94016" +168040,Apple Airpods Headphones,1,150,02/10/19 18:21,"115 Church St, Los Angeles, CA 90001" +168041,Lightning Charging Cable,1,14.95,02/13/19 22:24,"979 Lake St, New York City, NY 10001" +168042,AA Batteries (4-pack),3,3.84,02/03/19 19:33,"484 8th St, San Francisco, CA 94016" +168043,AAA Batteries (4-pack),4,2.99,02/02/19 05:21,"963 Meadow St, New York City, NY 10001" +168044,iPhone,1,700,02/17/19 08:20,"915 Highland St, San Francisco, CA 94016" +168045,AA Batteries (4-pack),1,3.84,02/04/19 07:40,"621 7th St, San Francisco, CA 94016" +168046,Bose SoundSport Headphones,1,99.99,02/11/19 12:01,"423 Spruce St, New York City, NY 10001" +168047,USB-C Charging Cable,1,11.95,02/01/19 16:06,"176 North St, Austin, TX 73301" +168048,USB-C Charging Cable,1,11.95,02/19/19 23:35,"19 Highland St, San Francisco, CA 94016" +168049,AAA Batteries (4-pack),1,2.99,02/01/19 20:04,"74 12th St, Atlanta, GA 30301" +168050,Wired Headphones,1,11.99,02/17/19 22:23,"176 13th St, San Francisco, CA 94016" +,,,,, +168051,AA Batteries (4-pack),1,3.84,02/25/19 10:57,"78 North St, Boston, MA 02215" +168052,Bose SoundSport Headphones,1,99.99,02/08/19 20:38,"111 8th St, Boston, MA 02215" +168053,20in Monitor,1,109.99,02/19/19 14:43,"182 Highland St, New York City, NY 10001" +168054,27in 4K Gaming Monitor,1,389.99,02/19/19 12:23,"672 West St, Portland, OR 97035" +168055,ThinkPad Laptop,1,999.99,02/16/19 15:35,"536 13th St, Los Angeles, CA 90001" +168056,AAA Batteries (4-pack),1,2.99,02/16/19 12:07,"177 2nd St, Austin, TX 73301" +168057,Lightning Charging Cable,1,14.95,02/22/19 16:49,"543 Forest St, San Francisco, CA 94016" +168058,Bose SoundSport Headphones,1,99.99,02/02/19 22:33,"624 West St, Los Angeles, CA 90001" +168059,AAA Batteries (4-pack),1,2.99,02/14/19 10:19,"118 Dogwood St, New York City, NY 10001" +168060,Wired Headphones,1,11.99,02/09/19 20:51,"153 Park St, Portland, OR 97035" +168061,Lightning Charging Cable,1,14.95,02/04/19 23:54,"512 Hickory St, Boston, MA 02215" +168062,USB-C Charging Cable,1,11.95,02/15/19 12:29,"169 Forest St, Dallas, TX 75001" +168063,AA Batteries (4-pack),1,3.84,02/16/19 14:44,"472 Highland St, San Francisco, CA 94016" +168064,Lightning Charging Cable,1,14.95,02/23/19 12:14,"560 Jackson St, Austin, TX 73301" +168065,Macbook Pro Laptop,1,1700,02/18/19 17:12,"481 Johnson St, New York City, NY 10001" +168066,USB-C Charging Cable,1,11.95,02/04/19 15:39,"976 Cherry St, Los Angeles, CA 90001" +168067,AA Batteries (4-pack),1,3.84,02/23/19 15:44,"963 Dogwood St, San Francisco, CA 94016" +168068,USB-C Charging Cable,1,11.95,02/22/19 14:27,"793 Forest St, San Francisco, CA 94016" +168069,iPhone,1,700,02/13/19 00:16,"709 13th St, Los Angeles, CA 90001" +168070,34in Ultrawide Monitor,1,379.99,02/26/19 13:28,"513 Hill St, San Francisco, CA 94016" +168071,27in FHD Monitor,1,149.99,02/12/19 11:13,"190 Cedar St, San Francisco, CA 94016" +168072,34in Ultrawide Monitor,1,379.99,02/03/19 14:39,"432 6th St, Boston, MA 02215" +168073,Apple Airpods Headphones,1,150,02/27/19 19:37,"656 10th St, Boston, MA 02215" +168074,Apple Airpods Headphones,1,150,02/13/19 13:55,"44 Dogwood St, Seattle, WA 98101" +168075,27in FHD Monitor,1,149.99,02/28/19 15:06,"86 2nd St, New York City, NY 10001" +168076,Wired Headphones,1,11.99,02/02/19 21:31,"637 Highland St, New York City, NY 10001" +168077,AAA Batteries (4-pack),1,2.99,02/21/19 10:29,"564 Wilson St, Dallas, TX 75001" +168078,AAA Batteries (4-pack),1,2.99,02/20/19 14:22,"891 Cedar St, New York City, NY 10001" +168079,USB-C Charging Cable,1,11.95,02/26/19 07:49,"176 West St, Boston, MA 02215" +168080,AA Batteries (4-pack),2,3.84,02/25/19 02:28,"20 South St, Los Angeles, CA 90001" +168081,20in Monitor,1,109.99,02/06/19 18:13,"963 5th St, Portland, OR 97035" +168082,Apple Airpods Headphones,1,150,02/22/19 13:00,"260 6th St, Los Angeles, CA 90001" +168083,Bose SoundSport Headphones,1,99.99,02/22/19 19:15,"18 1st St, Atlanta, GA 30301" +168084,ThinkPad Laptop,1,999.99,02/01/19 17:19,"712 South St, San Francisco, CA 94016" +168085,USB-C Charging Cable,1,11.95,02/12/19 09:48,"319 Elm St, Austin, TX 73301" +168086,Apple Airpods Headphones,1,150,02/05/19 00:02,"45 Jackson St, Austin, TX 73301" +168087,AA Batteries (4-pack),3,3.84,02/17/19 17:14,"478 10th St, Los Angeles, CA 90001" +168088,Wired Headphones,1,11.99,02/26/19 19:37,"250 Lake St, Dallas, TX 75001" +168089,Lightning Charging Cable,1,14.95,02/18/19 17:21,"629 Center St, Austin, TX 73301" +168090,Wired Headphones,1,11.99,02/05/19 23:24,"580 2nd St, Boston, MA 02215" +168091,Bose SoundSport Headphones,1,99.99,02/23/19 11:49,"14 Hill St, Los Angeles, CA 90001" +168092,AA Batteries (4-pack),1,3.84,02/03/19 21:43,"295 Adams St, Los Angeles, CA 90001" +168093,Bose SoundSport Headphones,1,99.99,02/20/19 22:14,"1 Cherry St, Atlanta, GA 30301" +168094,Lightning Charging Cable,1,14.95,02/15/19 11:54,"180 Adams St, San Francisco, CA 94016" +168095,Flatscreen TV,1,300,02/20/19 18:04,"963 Highland St, Boston, MA 02215" +168096,Bose SoundSport Headphones,1,99.99,02/25/19 13:28,"681 Ridge St, Los Angeles, CA 90001" +168097,Bose SoundSport Headphones,1,99.99,02/06/19 13:33,"635 Dogwood St, Austin, TX 73301" +168098,Lightning Charging Cable,1,14.95,02/16/19 12:27,"298 14th St, San Francisco, CA 94016" +168099,USB-C Charging Cable,1,11.95,02/10/19 23:56,"993 Elm St, Atlanta, GA 30301" +168100,Lightning Charging Cable,1,14.95,02/03/19 10:05,"627 5th St, Atlanta, GA 30301" +168101,34in Ultrawide Monitor,1,379.99,02/05/19 20:32,"467 Spruce St, San Francisco, CA 94016" +168102,AAA Batteries (4-pack),2,2.99,02/20/19 13:56,"712 Main St, San Francisco, CA 94016" +168103,27in FHD Monitor,1,149.99,02/23/19 08:22,"439 Highland St, Seattle, WA 98101" +168104,AAA Batteries (4-pack),1,2.99,02/14/19 10:03,"347 Lakeview St, San Francisco, CA 94016" +168105,Apple Airpods Headphones,1,150,02/20/19 17:28,"824 Johnson St, Austin, TX 73301" +168105,AAA Batteries (4-pack),1,2.99,02/20/19 17:28,"824 Johnson St, Austin, TX 73301" +168106,Wired Headphones,1,11.99,02/23/19 14:48,"358 Cherry St, San Francisco, CA 94016" +168107,USB-C Charging Cable,1,11.95,02/12/19 13:05,"872 Ridge St, Dallas, TX 75001" +168108,iPhone,1,700,02/28/19 12:48,"30 Adams St, Boston, MA 02215" +168109,Macbook Pro Laptop,1,1700,02/23/19 16:02,"153 13th St, San Francisco, CA 94016" +168110,AAA Batteries (4-pack),4,2.99,02/08/19 21:31,"960 West St, New York City, NY 10001" +168111,Lightning Charging Cable,1,14.95,02/22/19 01:04,"924 9th St, San Francisco, CA 94016" +168112,Lightning Charging Cable,1,14.95,02/28/19 15:33,"557 North St, San Francisco, CA 94016" +168113,iPhone,1,700,02/28/19 21:18,"166 2nd St, Seattle, WA 98101" +168113,Lightning Charging Cable,1,14.95,02/28/19 21:18,"166 2nd St, Seattle, WA 98101" +168114,20in Monitor,1,109.99,02/02/19 11:59,"277 11th St, Los Angeles, CA 90001" +168115,AAA Batteries (4-pack),1,2.99,02/18/19 21:59,"972 Main St, San Francisco, CA 94016" +168116,Google Phone,1,600,02/26/19 22:13,"369 Lake St, San Francisco, CA 94016" +168117,AAA Batteries (4-pack),2,2.99,02/18/19 18:13,"162 South St, Seattle, WA 98101" +168118,USB-C Charging Cable,1,11.95,02/01/19 19:25,"210 2nd St, Seattle, WA 98101" +168119,AAA Batteries (4-pack),1,2.99,02/21/19 14:53,"623 Center St, San Francisco, CA 94016" +168120,AAA Batteries (4-pack),1,2.99,02/15/19 23:41,"652 Spruce St, Boston, MA 02215" +168121,AA Batteries (4-pack),1,3.84,02/15/19 23:33,"278 Highland St, Dallas, TX 75001" +168122,AAA Batteries (4-pack),2,2.99,02/19/19 00:07,"437 Maple St, Seattle, WA 98101" +168123,Wired Headphones,1,11.99,02/10/19 18:26,"158 2nd St, San Francisco, CA 94016" +168124,27in 4K Gaming Monitor,1,389.99,02/09/19 14:29,"976 Cherry St, San Francisco, CA 94016" +168125,27in 4K Gaming Monitor,1,389.99,02/12/19 12:47,"190 Park St, Boston, MA 02215" +168126,Lightning Charging Cable,1,14.95,02/09/19 08:09,"517 Elm St, Dallas, TX 75001" +168127,Apple Airpods Headphones,1,150,02/22/19 13:53,"597 Main St, Atlanta, GA 30301" +168128,AAA Batteries (4-pack),2,2.99,02/03/19 19:51,"124 Dogwood St, Atlanta, GA 30301" +168129,AAA Batteries (4-pack),1,2.99,02/06/19 13:03,"132 Wilson St, Los Angeles, CA 90001" +168130,ThinkPad Laptop,1,999.99,02/21/19 18:21,"992 10th St, Dallas, TX 75001" +168131,iPhone,1,700,02/19/19 09:00,"211 8th St, Boston, MA 02215" +168132,Flatscreen TV,1,300,02/10/19 14:05,"229 Main St, New York City, NY 10001" +168133,USB-C Charging Cable,1,11.95,02/04/19 10:52,"774 Ridge St, Seattle, WA 98101" +168134,Lightning Charging Cable,1,14.95,02/18/19 09:59,"413 Jefferson St, Portland, ME 04101" +168135,AAA Batteries (4-pack),3,2.99,02/09/19 18:47,"656 Spruce St, Los Angeles, CA 90001" +168136,Wired Headphones,1,11.99,02/22/19 12:17,"906 Forest St, Boston, MA 02215" +168137,Lightning Charging Cable,1,14.95,02/05/19 17:50,"716 Pine St, San Francisco, CA 94016" +168138,USB-C Charging Cable,1,11.95,02/17/19 08:07,"933 Johnson St, Atlanta, GA 30301" +168139,Bose SoundSport Headphones,1,99.99,02/07/19 04:03,"275 Adams St, Boston, MA 02215" +168140,AA Batteries (4-pack),1,3.84,02/01/19 14:56,"301 Spruce St, Boston, MA 02215" +168141,Apple Airpods Headphones,1,150,02/12/19 15:39,"48 4th St, Austin, TX 73301" +168142,AA Batteries (4-pack),1,3.84,02/02/19 07:19,"437 Wilson St, San Francisco, CA 94016" +168143,USB-C Charging Cable,1,11.95,02/15/19 15:14,"871 Highland St, Austin, TX 73301" +168144,Lightning Charging Cable,1,14.95,02/19/19 16:16,"467 7th St, Los Angeles, CA 90001" +168145,Bose SoundSport Headphones,1,99.99,02/15/19 21:47,"522 Ridge St, New York City, NY 10001" +168146,Lightning Charging Cable,1,14.95,02/11/19 02:01,"630 Chestnut St, Dallas, TX 75001" +168147,AAA Batteries (4-pack),1,2.99,02/23/19 20:16,"156 West St, Los Angeles, CA 90001" +168148,Lightning Charging Cable,1,14.95,02/11/19 22:52,"716 Lake St, Los Angeles, CA 90001" +168149,AA Batteries (4-pack),1,3.84,02/14/19 16:37,"284 1st St, Boston, MA 02215" +168150,USB-C Charging Cable,1,11.95,02/28/19 12:55,"177 Jefferson St, Dallas, TX 75001" +168151,Bose SoundSport Headphones,1,99.99,02/24/19 10:38,"380 Walnut St, New York City, NY 10001" +168152,USB-C Charging Cable,1,11.95,02/11/19 20:33,"143 Spruce St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +168153,AA Batteries (4-pack),2,3.84,02/09/19 14:28,"900 Madison St, San Francisco, CA 94016" +168154,AAA Batteries (4-pack),3,2.99,02/12/19 12:22,"11 Chestnut St, Seattle, WA 98101" +168155,USB-C Charging Cable,1,11.95,02/20/19 17:59,"921 11th St, Portland, OR 97035" +168156,Google Phone,1,600,02/26/19 17:23,"348 Jefferson St, Atlanta, GA 30301" +168157,Macbook Pro Laptop,1,1700,02/14/19 17:54,"688 Main St, San Francisco, CA 94016" +168158,Wired Headphones,1,11.99,02/25/19 17:31,"918 9th St, San Francisco, CA 94016" +168159,Wired Headphones,1,11.99,02/27/19 20:07,"244 Lake St, Austin, TX 73301" +168160,27in FHD Monitor,1,149.99,02/10/19 12:48,"163 Elm St, San Francisco, CA 94016" +168161,Wired Headphones,1,11.99,02/11/19 09:34,"983 Meadow St, San Francisco, CA 94016" +168162,Lightning Charging Cable,1,14.95,02/04/19 20:51,"214 Center St, New York City, NY 10001" +168163,Macbook Pro Laptop,1,1700,02/08/19 13:53,"146 2nd St, New York City, NY 10001" +168164,USB-C Charging Cable,1,11.95,02/16/19 10:07,"390 Willow St, Portland, OR 97035" +168165,Apple Airpods Headphones,1,150,02/08/19 23:57,"708 Cherry St, Dallas, TX 75001" +168166,Google Phone,1,600,02/10/19 17:20,"598 West St, Boston, MA 02215" +168167,34in Ultrawide Monitor,1,379.99,02/17/19 09:06,"657 Willow St, Dallas, TX 75001" +168168,20in Monitor,1,109.99,02/06/19 15:31,"274 Cedar St, Boston, MA 02215" +168169,27in FHD Monitor,1,149.99,02/07/19 09:17,"144 North St, Portland, OR 97035" +168170,AAA Batteries (4-pack),1,2.99,02/22/19 18:44,"523 10th St, Portland, OR 97035" +168171,iPhone,1,700,02/05/19 17:56,"109 Lincoln St, New York City, NY 10001" +168172,Bose SoundSport Headphones,1,99.99,02/28/19 19:20,"149 7th St, New York City, NY 10001" +168173,27in FHD Monitor,1,149.99,02/03/19 14:06,"38 Jackson St, Dallas, TX 75001" +168174,Bose SoundSport Headphones,1,99.99,02/16/19 23:37,"352 11th St, New York City, NY 10001" +168175,Bose SoundSport Headphones,1,99.99,02/08/19 00:11,"665 Wilson St, Dallas, TX 75001" +168176,Wired Headphones,1,11.99,02/10/19 17:47,"22 Highland St, Boston, MA 02215" +168177,AAA Batteries (4-pack),1,2.99,02/14/19 17:04,"599 Dogwood St, Atlanta, GA 30301" +168178,ThinkPad Laptop,1,999.99,02/25/19 15:56,"840 10th St, Seattle, WA 98101" +168179,Lightning Charging Cable,1,14.95,02/28/19 15:52,"572 Lincoln St, Portland, ME 04101" +168180,Apple Airpods Headphones,1,150,02/06/19 14:11,"73 Lakeview St, Los Angeles, CA 90001" +168181,USB-C Charging Cable,1,11.95,02/16/19 08:12,"19 Church St, San Francisco, CA 94016" +168182,AA Batteries (4-pack),2,3.84,02/09/19 20:06,"91 Park St, San Francisco, CA 94016" +168183,iPhone,1,700,02/28/19 16:16,"380 South St, New York City, NY 10001" +168184,AAA Batteries (4-pack),1,2.99,02/10/19 16:08,"321 Main St, Seattle, WA 98101" +168185,AA Batteries (4-pack),2,3.84,02/23/19 18:27,"243 13th St, Los Angeles, CA 90001" +168186,USB-C Charging Cable,2,11.95,02/07/19 02:24,"408 Church St, San Francisco, CA 94016" +168187,Macbook Pro Laptop,1,1700,02/03/19 19:52,"30 Main St, Los Angeles, CA 90001" +168188,iPhone,1,700,02/10/19 21:53,"274 14th St, Dallas, TX 75001" +168188,Lightning Charging Cable,1,14.95,02/10/19 21:53,"274 14th St, Dallas, TX 75001" +168189,Bose SoundSport Headphones,1,99.99,02/14/19 10:59,"90 Cedar St, San Francisco, CA 94016" +168190,Google Phone,1,600,02/10/19 00:15,"180 Ridge St, San Francisco, CA 94016" +168190,USB-C Charging Cable,1,11.95,02/10/19 00:15,"180 Ridge St, San Francisco, CA 94016" +168191,34in Ultrawide Monitor,1,379.99,02/25/19 02:23,"54 Pine St, Portland, OR 97035" +168192,Lightning Charging Cable,1,14.95,02/15/19 19:38,"621 1st St, San Francisco, CA 94016" +168193,Lightning Charging Cable,1,14.95,02/15/19 12:10,"868 2nd St, Portland, OR 97035" +168194,Apple Airpods Headphones,1,150,02/13/19 20:08,"998 Pine St, Los Angeles, CA 90001" +168195,20in Monitor,1,109.99,02/22/19 03:27,"338 12th St, Boston, MA 02215" +168196,USB-C Charging Cable,1,11.95,02/06/19 14:59,"117 Center St, Los Angeles, CA 90001" +168197,Wired Headphones,1,11.99,02/18/19 11:44,"441 Lincoln St, Seattle, WA 98101" +168198,USB-C Charging Cable,1,11.95,02/25/19 07:59,"264 11th St, Atlanta, GA 30301" +168199,USB-C Charging Cable,1,11.95,02/12/19 13:49,"247 14th St, New York City, NY 10001" +168200,34in Ultrawide Monitor,1,379.99,02/27/19 06:47,"779 Main St, Boston, MA 02215" +168201,Apple Airpods Headphones,1,150,02/15/19 19:41,"542 Maple St, Seattle, WA 98101" +168202,ThinkPad Laptop,1,999.99,02/25/19 23:11,"9 Washington St, Dallas, TX 75001" +168203,USB-C Charging Cable,1,11.95,02/18/19 12:32,"426 11th St, San Francisco, CA 94016" +168204,AAA Batteries (4-pack),1,2.99,02/10/19 20:11,"713 6th St, San Francisco, CA 94016" +168205,AAA Batteries (4-pack),1,2.99,02/21/19 14:46,"801 Highland St, San Francisco, CA 94016" +168206,AA Batteries (4-pack),3,3.84,02/19/19 13:45,"763 Lake St, Dallas, TX 75001" +168207,AAA Batteries (4-pack),1,2.99,02/26/19 20:12,"213 14th St, Atlanta, GA 30301" +168208,ThinkPad Laptop,1,999.99,02/15/19 15:58,"945 11th St, Seattle, WA 98101" +168209,Apple Airpods Headphones,1,150,02/22/19 12:23,"672 Center St, Austin, TX 73301" +168210,ThinkPad Laptop,1,999.99,02/20/19 20:39,"723 Cherry St, Boston, MA 02215" +168211,AA Batteries (4-pack),1,3.84,02/06/19 14:06,"296 Center St, New York City, NY 10001" +168212,Lightning Charging Cable,1,14.95,02/09/19 16:28,"102 Walnut St, Portland, OR 97035" +168213,34in Ultrawide Monitor,1,379.99,02/18/19 21:29,"995 Main St, Los Angeles, CA 90001" +168214,Lightning Charging Cable,1,14.95,02/09/19 00:13,"39 Main St, Los Angeles, CA 90001" +168215,ThinkPad Laptop,1,999.99,02/17/19 12:24,"239 Ridge St, Boston, MA 02215" +168216,AA Batteries (4-pack),1,3.84,02/08/19 13:33,"29 Willow St, Dallas, TX 75001" +168217,ThinkPad Laptop,1,999.99,02/21/19 14:48,"844 6th St, New York City, NY 10001" +168218,Wired Headphones,2,11.99,02/20/19 23:53,"274 South St, Austin, TX 73301" +168219,AA Batteries (4-pack),1,3.84,02/20/19 15:32,"271 14th St, Portland, OR 97035" +168220,LG Dryer,1,600.0,02/18/19 08:58,"629 South St, Boston, MA 02215" +168221,AAA Batteries (4-pack),1,2.99,02/25/19 22:24,"538 5th St, Boston, MA 02215" +168222,AA Batteries (4-pack),3,3.84,02/05/19 20:48,"848 10th St, San Francisco, CA 94016" +168223,Wired Headphones,1,11.99,02/17/19 12:33,"613 1st St, Los Angeles, CA 90001" +168224,USB-C Charging Cable,1,11.95,02/14/19 17:21,"543 Cherry St, Boston, MA 02215" +168225,AA Batteries (4-pack),1,3.84,02/04/19 13:15,"554 Spruce St, Austin, TX 73301" +168226,Lightning Charging Cable,1,14.95,02/13/19 01:13,"435 Pine St, Dallas, TX 75001" +168227,Macbook Pro Laptop,1,1700,02/09/19 17:46,"473 6th St, Atlanta, GA 30301" +168228,Lightning Charging Cable,1,14.95,02/14/19 10:25,"390 West St, Seattle, WA 98101" +168229,USB-C Charging Cable,1,11.95,02/22/19 18:48,"492 Main St, Los Angeles, CA 90001" +168230,27in FHD Monitor,1,149.99,02/07/19 12:50,"551 Church St, Atlanta, GA 30301" +168231,Wired Headphones,2,11.99,02/23/19 19:24,"968 Willow St, San Francisco, CA 94016" +168232,USB-C Charging Cable,1,11.95,02/26/19 18:41,"141 6th St, Dallas, TX 75001" +168233,Apple Airpods Headphones,1,150,02/19/19 12:44,"342 6th St, Dallas, TX 75001" +168234,27in FHD Monitor,1,149.99,02/15/19 18:03,"979 6th St, Atlanta, GA 30301" +168234,Wired Headphones,1,11.99,02/15/19 18:03,"979 6th St, Atlanta, GA 30301" +168235,AAA Batteries (4-pack),1,2.99,02/15/19 11:42,"825 River St, Atlanta, GA 30301" +168236,27in FHD Monitor,1,149.99,02/18/19 02:46,"925 Hickory St, San Francisco, CA 94016" +168237,AAA Batteries (4-pack),2,2.99,02/07/19 11:46,"936 Hickory St, Atlanta, GA 30301" +168238,Lightning Charging Cable,1,14.95,02/15/19 21:06,"18 Lake St, Portland, OR 97035" +168239,AA Batteries (4-pack),1,3.84,02/02/19 08:40,"504 Lake St, Seattle, WA 98101" +168240,USB-C Charging Cable,1,11.95,02/02/19 21:36,"446 Lake St, Los Angeles, CA 90001" +168241,Flatscreen TV,1,300,02/17/19 15:46,"639 Madison St, San Francisco, CA 94016" +168242,Bose SoundSport Headphones,1,99.99,02/26/19 14:34,"742 14th St, Los Angeles, CA 90001" +168243,Wired Headphones,1,11.99,02/28/19 20:40,"950 Hill St, San Francisco, CA 94016" +168244,USB-C Charging Cable,1,11.95,02/09/19 18:02,"503 2nd St, New York City, NY 10001" +168245,Lightning Charging Cable,1,14.95,02/03/19 11:38,"794 Pine St, Portland, OR 97035" +168246,Bose SoundSport Headphones,1,99.99,02/21/19 10:47,"132 Pine St, Seattle, WA 98101" +168247,AAA Batteries (4-pack),1,2.99,02/04/19 19:10,"3 4th St, Los Angeles, CA 90001" +168248,ThinkPad Laptop,1,999.99,02/19/19 00:55,"470 Lakeview St, Atlanta, GA 30301" +168249,USB-C Charging Cable,1,11.95,02/04/19 20:19,"826 Lakeview St, San Francisco, CA 94016" +168250,27in FHD Monitor,1,149.99,02/07/19 12:43,"299 14th St, Austin, TX 73301" +168251,27in FHD Monitor,1,149.99,02/25/19 22:05,"343 Dogwood St, San Francisco, CA 94016" +168252,Wired Headphones,1,11.99,02/24/19 19:17,"971 Dogwood St, Boston, MA 02215" +168253,Macbook Pro Laptop,1,1700,02/19/19 04:28,"59 North St, Portland, OR 97035" +168254,Lightning Charging Cable,1,14.95,02/08/19 11:30,"905 Lake St, Atlanta, GA 30301" +168255,27in FHD Monitor,1,149.99,02/08/19 21:50,"190 Jackson St, Dallas, TX 75001" +168256,Wired Headphones,1,11.99,02/18/19 23:48,"399 8th St, San Francisco, CA 94016" +168257,20in Monitor,1,109.99,02/23/19 19:42,"835 Wilson St, Boston, MA 02215" +168258,AA Batteries (4-pack),3,3.84,02/03/19 09:23,"563 Lakeview St, San Francisco, CA 94016" +168259,Bose SoundSport Headphones,1,99.99,02/09/19 13:36,"923 Willow St, San Francisco, CA 94016" +168260,AAA Batteries (4-pack),1,2.99,02/01/19 11:43,"121 Pine St, San Francisco, CA 94016" +168261,AA Batteries (4-pack),2,3.84,02/21/19 17:23,"92 Pine St, Boston, MA 02215" +168262,ThinkPad Laptop,1,999.99,02/11/19 22:40,"117 Hickory St, San Francisco, CA 94016" +168263,Bose SoundSport Headphones,1,99.99,02/08/19 09:48,"730 Elm St, Austin, TX 73301" +168264,ThinkPad Laptop,1,999.99,02/26/19 19:22,"375 Center St, Austin, TX 73301" +168265,Lightning Charging Cable,1,14.95,02/14/19 16:01,"332 North St, Boston, MA 02215" +168266,AAA Batteries (4-pack),1,2.99,02/01/19 20:19,"308 Forest St, Dallas, TX 75001" +168267,AA Batteries (4-pack),1,3.84,02/11/19 11:49,"774 Main St, Dallas, TX 75001" +168268,27in 4K Gaming Monitor,1,389.99,02/15/19 19:23,"638 West St, New York City, NY 10001" +168269,USB-C Charging Cable,1,11.95,02/04/19 20:25,"216 13th St, Seattle, WA 98101" +168270,Apple Airpods Headphones,1,150,02/02/19 13:45,"612 Cedar St, New York City, NY 10001" +168271,Bose SoundSport Headphones,1,99.99,02/19/19 10:04,"917 Hill St, Los Angeles, CA 90001" +168272,Macbook Pro Laptop,1,1700,02/18/19 12:13,"969 Washington St, Boston, MA 02215" +168273,AAA Batteries (4-pack),3,2.99,02/24/19 06:47,"134 1st St, Portland, OR 97035" +168274,USB-C Charging Cable,2,11.95,02/28/19 20:55,"869 North St, Atlanta, GA 30301" +168275,Lightning Charging Cable,1,14.95,02/05/19 11:47,"117 Meadow St, Los Angeles, CA 90001" +168276,Wired Headphones,1,11.99,02/03/19 14:30,"857 Hill St, Atlanta, GA 30301" +168277,Lightning Charging Cable,1,14.95,02/07/19 20:22,"566 Park St, San Francisco, CA 94016" +168278,ThinkPad Laptop,1,999.99,02/21/19 17:25,"375 Center St, San Francisco, CA 94016" +168279,AA Batteries (4-pack),2,3.84,02/19/19 19:02,"79 Wilson St, San Francisco, CA 94016" +168280,Wired Headphones,1,11.99,02/17/19 12:07,"936 Cherry St, Portland, ME 04101" +168281,Google Phone,1,600,02/12/19 18:02,"18 Sunset St, San Francisco, CA 94016" +168282,Lightning Charging Cable,1,14.95,02/20/19 12:07,"447 Ridge St, San Francisco, CA 94016" +168283,Wired Headphones,1,11.99,02/24/19 21:55,"817 Highland St, Austin, TX 73301" +168284,AAA Batteries (4-pack),1,2.99,02/16/19 10:53,"358 Jefferson St, San Francisco, CA 94016" +168285,Google Phone,1,600,02/13/19 00:25,"187 Center St, Boston, MA 02215" +168286,Flatscreen TV,1,300,02/14/19 12:00,"673 River St, Los Angeles, CA 90001" +168287,AAA Batteries (4-pack),1,2.99,02/06/19 13:10,"637 Washington St, Austin, TX 73301" +168288,AAA Batteries (4-pack),1,2.99,02/26/19 13:08,"384 Center St, Austin, TX 73301" +168289,Wired Headphones,1,11.99,02/21/19 20:02,"1 River St, Dallas, TX 75001" +168290,AAA Batteries (4-pack),1,2.99,02/09/19 19:48,"47 Elm St, San Francisco, CA 94016" +168291,Flatscreen TV,1,300,02/13/19 15:13,"726 Church St, Austin, TX 73301" +168292,20in Monitor,1,109.99,02/09/19 11:11,"159 Forest St, Boston, MA 02215" +168293,Macbook Pro Laptop,1,1700,02/16/19 13:40,"651 Adams St, San Francisco, CA 94016" +,,,,, +168294,Apple Airpods Headphones,1,150,02/27/19 18:55,"768 Center St, Los Angeles, CA 90001" +168295,AAA Batteries (4-pack),2,2.99,02/12/19 19:26,"496 Cherry St, San Francisco, CA 94016" +168296,iPhone,1,700,02/03/19 07:25,"773 North St, Los Angeles, CA 90001" +168296,Wired Headphones,1,11.99,02/03/19 07:25,"773 North St, Los Angeles, CA 90001" +168297,iPhone,1,700,02/28/19 16:19,"41 Ridge St, San Francisco, CA 94016" +168297,Apple Airpods Headphones,1,150,02/28/19 16:19,"41 Ridge St, San Francisco, CA 94016" +168298,Macbook Pro Laptop,1,1700,02/10/19 09:05,"669 Dogwood St, Atlanta, GA 30301" +168299,Google Phone,1,600,02/25/19 10:44,"410 Church St, San Francisco, CA 94016" +168300,USB-C Charging Cable,1,11.95,02/20/19 11:26,"838 13th St, Seattle, WA 98101" +168301,Apple Airpods Headphones,1,150,02/03/19 17:54,"930 North St, San Francisco, CA 94016" +168302,Wired Headphones,1,11.99,02/02/19 13:13,"563 North St, New York City, NY 10001" +168303,ThinkPad Laptop,1,999.99,02/12/19 01:35,"908 Cedar St, Dallas, TX 75001" +168304,Wired Headphones,1,11.99,02/06/19 14:19,"649 Dogwood St, San Francisco, CA 94016" +168304,Google Phone,1,600,02/06/19 14:19,"649 Dogwood St, San Francisco, CA 94016" +168305,USB-C Charging Cable,1,11.95,02/03/19 09:16,"502 Washington St, Los Angeles, CA 90001" +168306,AAA Batteries (4-pack),3,2.99,02/22/19 08:08,"640 Elm St, New York City, NY 10001" +168307,Lightning Charging Cable,1,14.95,02/21/19 18:57,"352 13th St, New York City, NY 10001" +168308,AA Batteries (4-pack),1,3.84,02/25/19 22:38,"401 Cherry St, Los Angeles, CA 90001" +168309,Lightning Charging Cable,1,14.95,02/04/19 16:28,"192 Hickory St, Los Angeles, CA 90001" +168310,AAA Batteries (4-pack),2,2.99,02/04/19 14:43,"497 7th St, San Francisco, CA 94016" +168311,27in FHD Monitor,2,149.99,02/06/19 09:08,"490 14th St, San Francisco, CA 94016" +168312,ThinkPad Laptop,1,999.99,02/15/19 11:30,"694 Church St, San Francisco, CA 94016" +168313,iPhone,1,700,02/21/19 10:57,"245 11th St, San Francisco, CA 94016" +168314,Lightning Charging Cable,1,14.95,02/17/19 12:19,"16 6th St, San Francisco, CA 94016" +168315,AA Batteries (4-pack),2,3.84,02/26/19 20:28,"419 Adams St, Austin, TX 73301" +168316,Wired Headphones,1,11.99,02/07/19 18:28,"260 14th St, San Francisco, CA 94016" +168317,Apple Airpods Headphones,1,150,02/17/19 08:37,"612 Forest St, Dallas, TX 75001" +168318,Vareebadd Phone,1,400,02/14/19 15:39,"360 14th St, Atlanta, GA 30301" +168319,Wired Headphones,1,11.99,02/24/19 20:42,"449 Park St, Dallas, TX 75001" +168320,Lightning Charging Cable,1,14.95,02/12/19 12:25,"745 10th St, San Francisco, CA 94016" +168321,AA Batteries (4-pack),1,3.84,02/22/19 17:11,"120 10th St, Seattle, WA 98101" +168322,AA Batteries (4-pack),1,3.84,02/20/19 08:16,"900 Jefferson St, Austin, TX 73301" +168323,AAA Batteries (4-pack),2,2.99,02/10/19 14:03,"402 Meadow St, New York City, NY 10001" +168324,AAA Batteries (4-pack),1,2.99,02/07/19 15:14,"373 Forest St, Dallas, TX 75001" +168325,Lightning Charging Cable,1,14.95,02/24/19 08:11,"441 Pine St, Seattle, WA 98101" +168326,Lightning Charging Cable,1,14.95,02/11/19 11:27,"192 Hickory St, Los Angeles, CA 90001" +168327,USB-C Charging Cable,1,11.95,02/21/19 19:29,"702 1st St, Atlanta, GA 30301" +168328,Wired Headphones,1,11.99,02/13/19 07:24,"750 Walnut St, San Francisco, CA 94016" +168329,Bose SoundSport Headphones,1,99.99,02/11/19 20:06,"914 14th St, New York City, NY 10001" +168330,ThinkPad Laptop,1,999.99,02/07/19 20:46,"252 Lakeview St, Portland, OR 97035" +168331,Lightning Charging Cable,1,14.95,02/07/19 14:58,"368 Forest St, Los Angeles, CA 90001" +168332,Apple Airpods Headphones,1,150,02/09/19 19:12,"439 10th St, Portland, OR 97035" +168333,Flatscreen TV,1,300,02/11/19 20:39,"11 Lakeview St, Austin, TX 73301" +168334,AA Batteries (4-pack),1,3.84,02/06/19 12:47,"283 12th St, Seattle, WA 98101" +168335,ThinkPad Laptop,1,999.99,02/03/19 14:31,"695 Church St, Seattle, WA 98101" +168336,27in 4K Gaming Monitor,1,389.99,02/20/19 13:49,"304 North St, San Francisco, CA 94016" +168337,Flatscreen TV,1,300,02/08/19 12:33,"554 Wilson St, New York City, NY 10001" +168338,Vareebadd Phone,1,400,02/23/19 13:39,"738 Johnson St, Atlanta, GA 30301" +168338,USB-C Charging Cable,1,11.95,02/23/19 13:39,"738 Johnson St, Atlanta, GA 30301" +168339,AAA Batteries (4-pack),1,2.99,02/25/19 08:54,"153 8th St, Los Angeles, CA 90001" +168340,Lightning Charging Cable,1,14.95,02/28/19 19:49,"430 9th St, New York City, NY 10001" +168341,34in Ultrawide Monitor,1,379.99,02/16/19 09:52,"340 8th St, Atlanta, GA 30301" +168342,Wired Headphones,1,11.99,02/18/19 18:18,"614 Cedar St, Austin, TX 73301" +168343,Lightning Charging Cable,2,14.95,02/01/19 15:52,"884 9th St, Atlanta, GA 30301" +168344,20in Monitor,1,109.99,02/11/19 14:58,"24 Lake St, Atlanta, GA 30301" +168345,LG Washing Machine,1,600.0,02/21/19 18:56,"489 Park St, Los Angeles, CA 90001" +168346,Vareebadd Phone,1,400,02/04/19 13:08,"462 11th St, Boston, MA 02215" +168347,AAA Batteries (4-pack),3,2.99,02/13/19 18:24,"179 2nd St, San Francisco, CA 94016" +168348,Google Phone,1,600,02/28/19 18:14,"89 Park St, San Francisco, CA 94016" +168349,iPhone,1,700,02/22/19 02:17,"940 Washington St, Los Angeles, CA 90001" +168350,Wired Headphones,2,11.99,02/08/19 21:58,"158 Adams St, Atlanta, GA 30301" +168351,Apple Airpods Headphones,1,150,02/12/19 13:39,"38 Sunset St, New York City, NY 10001" +168352,Google Phone,1,600,02/15/19 04:32,"392 10th St, Los Angeles, CA 90001" +168352,Lightning Charging Cable,1,14.95,02/15/19 04:32,"392 10th St, Los Angeles, CA 90001" +168353,Lightning Charging Cable,1,14.95,02/15/19 19:33,"545 Johnson St, Los Angeles, CA 90001" +168354,AAA Batteries (4-pack),1,2.99,02/12/19 21:59,"608 Wilson St, Boston, MA 02215" +168355,AAA Batteries (4-pack),4,2.99,02/16/19 01:22,"483 Cedar St, New York City, NY 10001" +168356,iPhone,1,700,02/27/19 20:38,"150 Main St, New York City, NY 10001" +168357,AAA Batteries (4-pack),2,2.99,02/04/19 16:41,"236 Forest St, San Francisco, CA 94016" +168358,AA Batteries (4-pack),1,3.84,02/23/19 15:04,"562 6th St, Dallas, TX 75001" +168359,Bose SoundSport Headphones,1,99.99,02/06/19 14:34,"891 8th St, New York City, NY 10001" +168360,USB-C Charging Cable,1,11.95,03/01/19 00:18,"738 Forest St, Dallas, TX 75001" +168361,Wired Headphones,1,11.99,02/16/19 12:54,"692 South St, Boston, MA 02215" +168362,Bose SoundSport Headphones,1,99.99,02/19/19 12:29,"850 11th St, New York City, NY 10001" +168363,Lightning Charging Cable,1,14.95,02/18/19 15:00,"486 Cedar St, San Francisco, CA 94016" +168364,Lightning Charging Cable,1,14.95,02/10/19 11:24,"468 Lincoln St, Los Angeles, CA 90001" +168365,USB-C Charging Cable,1,11.95,02/16/19 07:09,"139 8th St, Atlanta, GA 30301" +168366,LG Washing Machine,1,600.0,02/06/19 18:44,"650 River St, Austin, TX 73301" +168367,27in 4K Gaming Monitor,1,389.99,02/23/19 17:22,"185 12th St, New York City, NY 10001" +168368,iPhone,1,700,02/25/19 17:06,"862 Elm St, Austin, TX 73301" +168369,Wired Headphones,2,11.99,02/26/19 18:38,"178 7th St, Dallas, TX 75001" +168370,AAA Batteries (4-pack),1,2.99,02/07/19 07:18,"878 Spruce St, Boston, MA 02215" +168371,27in FHD Monitor,1,149.99,02/05/19 12:44,"249 Hill St, San Francisco, CA 94016" +168372,27in 4K Gaming Monitor,1,389.99,02/24/19 14:32,"353 River St, Los Angeles, CA 90001" +168373,Vareebadd Phone,1,400,02/14/19 02:18,"464 Jefferson St, Seattle, WA 98101" +168374,27in FHD Monitor,1,149.99,02/22/19 13:15,"334 South St, Seattle, WA 98101" +168375,Apple Airpods Headphones,1,150,02/16/19 12:24,"574 Hill St, San Francisco, CA 94016" +168376,AAA Batteries (4-pack),1,2.99,02/26/19 22:21,"119 Adams St, San Francisco, CA 94016" +168377,27in 4K Gaming Monitor,1,389.99,02/04/19 19:15,"612 Wilson St, Atlanta, GA 30301" +168378,Lightning Charging Cable,1,14.95,02/18/19 21:29,"285 10th St, Boston, MA 02215" +168379,Bose SoundSport Headphones,1,99.99,02/07/19 12:38,"428 Lakeview St, San Francisco, CA 94016" +168380,AAA Batteries (4-pack),1,2.99,02/26/19 15:47,"409 Jackson St, Boston, MA 02215" +168381,Lightning Charging Cable,1,14.95,02/01/19 10:29,"158 Elm St, Boston, MA 02215" +168382,Lightning Charging Cable,1,14.95,02/21/19 10:03,"193 Hill St, San Francisco, CA 94016" +168383,Vareebadd Phone,1,400,02/12/19 16:28,"375 Highland St, Los Angeles, CA 90001" +168384,AAA Batteries (4-pack),2,2.99,02/09/19 15:24,"284 2nd St, Portland, ME 04101" +168385,Bose SoundSport Headphones,1,99.99,02/13/19 12:36,"589 Lakeview St, New York City, NY 10001" +168386,Macbook Pro Laptop,1,1700,02/20/19 08:19,"58 1st St, Los Angeles, CA 90001" +168387,Macbook Pro Laptop,1,1700,02/26/19 19:08,"783 Walnut St, San Francisco, CA 94016" +168388,ThinkPad Laptop,1,999.99,02/03/19 13:16,"214 9th St, Los Angeles, CA 90001" +168389,Apple Airpods Headphones,1,150,02/23/19 09:19,"318 6th St, Boston, MA 02215" +168390,Lightning Charging Cable,1,14.95,02/25/19 11:51,"411 Pine St, Dallas, TX 75001" +168391,USB-C Charging Cable,1,11.95,02/21/19 12:51,"538 Adams St, Atlanta, GA 30301" +168392,34in Ultrawide Monitor,1,379.99,02/23/19 19:19,"477 Highland St, Austin, TX 73301" +168392,iPhone,1,700,02/23/19 19:19,"477 Highland St, Austin, TX 73301" +168393,AA Batteries (4-pack),1,3.84,02/11/19 21:27,"150 North St, San Francisco, CA 94016" +168394,AA Batteries (4-pack),1,3.84,02/06/19 12:04,"24 Pine St, Portland, ME 04101" +168395,Lightning Charging Cable,1,14.95,02/23/19 17:32,"299 Washington St, San Francisco, CA 94016" +168396,Bose SoundSport Headphones,2,99.99,02/12/19 00:58,"542 Forest St, San Francisco, CA 94016" +168397,USB-C Charging Cable,1,11.95,02/16/19 18:45,"414 South St, San Francisco, CA 94016" +168398,20in Monitor,1,109.99,02/07/19 15:50,"525 4th St, Dallas, TX 75001" +168399,AA Batteries (4-pack),1,3.84,02/15/19 08:51,"231 Meadow St, Seattle, WA 98101" +168400,Apple Airpods Headphones,1,150,02/24/19 07:09,"922 2nd St, Dallas, TX 75001" +168401,Lightning Charging Cable,1,14.95,02/15/19 12:55,"185 Cherry St, Seattle, WA 98101" +168402,Macbook Pro Laptop,1,1700,02/08/19 00:09,"481 Johnson St, Seattle, WA 98101" +168403,Wired Headphones,1,11.99,02/08/19 20:19,"128 4th St, Dallas, TX 75001" +168404,USB-C Charging Cable,1,11.95,02/06/19 20:46,"808 Chestnut St, New York City, NY 10001" +168405,USB-C Charging Cable,1,11.95,02/25/19 17:45,"204 6th St, San Francisco, CA 94016" +168406,20in Monitor,1,109.99,02/21/19 21:12,"572 8th St, Dallas, TX 75001" +168407,Wired Headphones,1,11.99,02/18/19 11:16,"103 Ridge St, Dallas, TX 75001" +168408,Google Phone,1,600,02/28/19 16:00,"439 Sunset St, Boston, MA 02215" +168409,Apple Airpods Headphones,1,150,02/12/19 09:36,"706 Ridge St, Atlanta, GA 30301" +168410,20in Monitor,1,109.99,02/22/19 16:51,"478 Johnson St, Boston, MA 02215" +168411,AAA Batteries (4-pack),1,2.99,02/28/19 11:03,"877 Lincoln St, Austin, TX 73301" +168412,27in FHD Monitor,1,149.99,02/13/19 20:28,"339 Highland St, New York City, NY 10001" +168413,AA Batteries (4-pack),1,3.84,02/16/19 20:19,"836 Lincoln St, San Francisco, CA 94016" +168414,AAA Batteries (4-pack),2,2.99,02/14/19 17:53,"384 Jefferson St, Austin, TX 73301" +168415,27in 4K Gaming Monitor,1,389.99,02/03/19 21:58,"336 Hickory St, San Francisco, CA 94016" +168416,Apple Airpods Headphones,1,150,02/14/19 22:09,"915 Park St, New York City, NY 10001" +168417,Google Phone,1,600,02/05/19 00:45,"188 Hickory St, New York City, NY 10001" +168418,Wired Headphones,1,11.99,02/11/19 10:52,"944 7th St, Atlanta, GA 30301" +168419,Bose SoundSport Headphones,1,99.99,02/16/19 19:23,"660 Washington St, Atlanta, GA 30301" +168420,27in FHD Monitor,1,149.99,02/06/19 17:11,"641 Lakeview St, Dallas, TX 75001" +168421,AAA Batteries (4-pack),1,2.99,02/26/19 14:08,"392 Hill St, Atlanta, GA 30301" +168422,iPhone,1,700,02/12/19 13:12,"281 Forest St, Portland, OR 97035" +168423,AA Batteries (4-pack),2,3.84,02/25/19 19:33,"802 Lake St, San Francisco, CA 94016" +168424,Lightning Charging Cable,1,14.95,02/14/19 07:47,"263 River St, Dallas, TX 75001" +168425,AA Batteries (4-pack),1,3.84,02/23/19 17:40,"562 6th St, Austin, TX 73301" +168426,Lightning Charging Cable,1,14.95,02/07/19 20:28,"852 Hickory St, Seattle, WA 98101" +168426,LG Washing Machine,1,600.0,02/07/19 20:28,"852 Hickory St, Seattle, WA 98101" +168427,USB-C Charging Cable,1,11.95,02/19/19 11:56,"910 Ridge St, Boston, MA 02215" +,,,,, +168428,Lightning Charging Cable,1,14.95,02/10/19 17:28,"666 Ridge St, Seattle, WA 98101" +168429,Apple Airpods Headphones,1,150,02/09/19 15:01,"257 Willow St, Dallas, TX 75001" +168430,AAA Batteries (4-pack),1,2.99,02/27/19 12:02,"631 Dogwood St, Atlanta, GA 30301" +168431,AA Batteries (4-pack),1,3.84,02/19/19 17:51,"826 Meadow St, San Francisco, CA 94016" +168432,USB-C Charging Cable,1,11.95,02/25/19 11:37,"918 6th St, San Francisco, CA 94016" +168433,Lightning Charging Cable,1,14.95,02/13/19 21:07,"543 Chestnut St, Austin, TX 73301" +168434,USB-C Charging Cable,1,11.95,02/19/19 09:43,"216 1st St, Atlanta, GA 30301" +168435,20in Monitor,1,109.99,02/14/19 21:49,"63 8th St, Boston, MA 02215" +168436,AAA Batteries (4-pack),5,2.99,02/28/19 15:49,"83 River St, Portland, OR 97035" +168437,34in Ultrawide Monitor,1,379.99,02/24/19 19:59,"832 Hickory St, Dallas, TX 75001" +168438,Bose SoundSport Headphones,1,99.99,02/23/19 22:49,"813 Main St, San Francisco, CA 94016" +168439,iPhone,1,700,02/23/19 14:34,"282 Walnut St, Boston, MA 02215" +168440,ThinkPad Laptop,1,999.99,02/04/19 12:52,"931 Spruce St, Atlanta, GA 30301" +168441,Lightning Charging Cable,1,14.95,02/20/19 12:35,"237 Jefferson St, San Francisco, CA 94016" +168442,Bose SoundSport Headphones,1,99.99,02/15/19 22:50,"191 Wilson St, Austin, TX 73301" +168443,AAA Batteries (4-pack),1,2.99,02/23/19 15:35,"987 Washington St, New York City, NY 10001" +168444,AAA Batteries (4-pack),1,2.99,02/20/19 21:24,"332 Madison St, Atlanta, GA 30301" +168445,Macbook Pro Laptop,1,1700,02/10/19 11:23,"178 Johnson St, Los Angeles, CA 90001" +168446,USB-C Charging Cable,1,11.95,02/07/19 12:50,"694 Jackson St, Los Angeles, CA 90001" +168447,Apple Airpods Headphones,1,150,02/16/19 16:30,"29 Center St, Atlanta, GA 30301" +168448,Apple Airpods Headphones,1,150,02/02/19 19:55,"619 8th St, Atlanta, GA 30301" +168449,Lightning Charging Cable,1,14.95,02/06/19 12:18,"739 Maple St, Los Angeles, CA 90001" +168450,AA Batteries (4-pack),1,3.84,02/20/19 15:07,"711 Cherry St, Atlanta, GA 30301" +168451,Bose SoundSport Headphones,1,99.99,02/24/19 11:45,"15 Madison St, San Francisco, CA 94016" +168452,Wired Headphones,1,11.99,02/01/19 12:44,"516 Hill St, Atlanta, GA 30301" +168453,Lightning Charging Cable,1,14.95,02/13/19 20:05,"557 Cedar St, Los Angeles, CA 90001" +168454,Flatscreen TV,1,300,02/03/19 18:06,"586 13th St, San Francisco, CA 94016" +168455,Wired Headphones,1,11.99,02/21/19 13:24,"333 Jackson St, Los Angeles, CA 90001" +168456,27in FHD Monitor,1,149.99,02/04/19 16:57,"459 Ridge St, Los Angeles, CA 90001" +168457,27in 4K Gaming Monitor,1,389.99,02/28/19 20:08,"380 Spruce St, San Francisco, CA 94016" +168458,34in Ultrawide Monitor,1,379.99,02/25/19 12:24,"907 Dogwood St, Seattle, WA 98101" +168459,Macbook Pro Laptop,1,1700,02/15/19 12:12,"94 Cedar St, Boston, MA 02215" +168460,Lightning Charging Cable,1,14.95,02/07/19 21:32,"622 1st St, Dallas, TX 75001" +168461,ThinkPad Laptop,1,999.99,02/07/19 08:57,"797 Jefferson St, San Francisco, CA 94016" +168462,Wired Headphones,1,11.99,02/04/19 14:15,"170 Jefferson St, San Francisco, CA 94016" +168463,Wired Headphones,1,11.99,02/25/19 12:22,"741 Center St, New York City, NY 10001" +168464,USB-C Charging Cable,1,11.95,02/22/19 23:38,"580 Dogwood St, Seattle, WA 98101" +168465,Wired Headphones,1,11.99,02/11/19 12:05,"976 Jefferson St, Los Angeles, CA 90001" +168466,Lightning Charging Cable,2,14.95,02/24/19 16:36,"937 9th St, San Francisco, CA 94016" +168467,Wired Headphones,1,11.99,02/02/19 17:53,"351 Washington St, Los Angeles, CA 90001" +168468,Bose SoundSport Headphones,1,99.99,02/25/19 17:57,"425 4th St, Austin, TX 73301" +168469,27in 4K Gaming Monitor,1,389.99,02/14/19 21:26,"657 6th St, San Francisco, CA 94016" +168470,Google Phone,1,600,02/26/19 22:22,"651 West St, Seattle, WA 98101" +168470,USB-C Charging Cable,1,11.95,02/26/19 22:22,"651 West St, Seattle, WA 98101" +168471,Apple Airpods Headphones,1,150,02/02/19 12:49,"586 Main St, Seattle, WA 98101" +168472,34in Ultrawide Monitor,1,379.99,02/13/19 13:04,"200 1st St, New York City, NY 10001" +168473,iPhone,1,700,02/24/19 21:44,"794 2nd St, San Francisco, CA 94016" +168474,AAA Batteries (4-pack),1,2.99,02/10/19 10:49,"174 Walnut St, Austin, TX 73301" +168475,USB-C Charging Cable,1,11.95,02/04/19 22:49,"631 Center St, Atlanta, GA 30301" +168476,AA Batteries (4-pack),1,3.84,02/28/19 00:35,"599 Lake St, Los Angeles, CA 90001" +168477,Vareebadd Phone,1,400,02/13/19 13:16,"198 6th St, Boston, MA 02215" +168478,Lightning Charging Cable,1,14.95,02/12/19 08:44,"322 Church St, New York City, NY 10001" +168479,Apple Airpods Headphones,1,150,02/24/19 13:28,"19 4th St, Dallas, TX 75001" +168480,Google Phone,1,600,02/23/19 17:40,"785 10th St, Atlanta, GA 30301" +168481,Macbook Pro Laptop,1,1700,02/14/19 00:27,"647 Jackson St, San Francisco, CA 94016" +168482,AA Batteries (4-pack),1,3.84,02/03/19 08:50,"838 Meadow St, Boston, MA 02215" +168483,Lightning Charging Cable,1,14.95,02/19/19 18:05,"698 Hill St, San Francisco, CA 94016" +168484,27in FHD Monitor,1,149.99,02/14/19 22:48,"793 10th St, San Francisco, CA 94016" +168485,Wired Headphones,1,11.99,02/18/19 22:15,"914 Dogwood St, San Francisco, CA 94016" +168486,Apple Airpods Headphones,1,150,02/13/19 18:27,"536 Center St, Los Angeles, CA 90001" +168487,USB-C Charging Cable,1,11.95,02/07/19 16:09,"483 Elm St, Boston, MA 02215" +168488,Macbook Pro Laptop,1,1700,02/24/19 09:25,"314 Washington St, San Francisco, CA 94016" +168489,Lightning Charging Cable,1,14.95,02/01/19 15:15,"531 Sunset St, Boston, MA 02215" +168490,Bose SoundSport Headphones,1,99.99,02/05/19 16:51,"127 Lincoln St, Los Angeles, CA 90001" +168491,AA Batteries (4-pack),1,3.84,02/26/19 14:40,"146 Chestnut St, Atlanta, GA 30301" +168492,Macbook Pro Laptop,1,1700,02/17/19 17:22,"209 Center St, New York City, NY 10001" +168493,Macbook Pro Laptop,1,1700,02/01/19 10:58,"159 Johnson St, Los Angeles, CA 90001" +168494,AAA Batteries (4-pack),3,2.99,02/05/19 08:24,"734 Dogwood St, Los Angeles, CA 90001" +168495,Macbook Pro Laptop,1,1700,02/24/19 08:41,"852 9th St, Los Angeles, CA 90001" +168496,Wired Headphones,1,11.99,02/14/19 12:26,"661 River St, San Francisco, CA 94016" +168497,AAA Batteries (4-pack),1,2.99,02/12/19 20:49,"386 West St, Atlanta, GA 30301" +168498,ThinkPad Laptop,1,999.99,02/06/19 17:32,"78 9th St, San Francisco, CA 94016" +168499,AA Batteries (4-pack),1,3.84,02/20/19 11:21,"892 Johnson St, Los Angeles, CA 90001" +168500,20in Monitor,1,109.99,02/13/19 13:48,"411 10th St, San Francisco, CA 94016" +168501,20in Monitor,1,109.99,02/24/19 22:29,"554 Meadow St, San Francisco, CA 94016" +168502,iPhone,1,700,02/18/19 01:47,"438 Forest St, Los Angeles, CA 90001" +168503,USB-C Charging Cable,1,11.95,02/21/19 17:18,"630 Maple St, New York City, NY 10001" +168504,Apple Airpods Headphones,1,150,02/18/19 12:16,"131 9th St, Austin, TX 73301" +168505,AA Batteries (4-pack),1,3.84,02/07/19 10:59,"429 Lincoln St, Los Angeles, CA 90001" +168506,USB-C Charging Cable,1,11.95,02/12/19 09:25,"856 2nd St, San Francisco, CA 94016" +168507,Apple Airpods Headphones,1,150,02/18/19 08:27,"279 4th St, San Francisco, CA 94016" +168508,Apple Airpods Headphones,1,150,02/17/19 19:46,"441 Jackson St, Dallas, TX 75001" +168509,AA Batteries (4-pack),1,3.84,02/18/19 06:48,"659 Cherry St, Boston, MA 02215" +168510,Wired Headphones,1,11.99,02/23/19 11:02,"325 1st St, Los Angeles, CA 90001" +168510,AAA Batteries (4-pack),2,2.99,02/23/19 11:02,"325 1st St, Los Angeles, CA 90001" +168511,AAA Batteries (4-pack),2,2.99,02/17/19 19:34,"462 Cherry St, New York City, NY 10001" +168512,AAA Batteries (4-pack),2,2.99,02/19/19 09:46,"593 Meadow St, Los Angeles, CA 90001" +168513,AA Batteries (4-pack),1,3.84,02/12/19 18:10,"46 Willow St, Portland, OR 97035" +168514,iPhone,1,700,02/19/19 11:23,"257 Wilson St, San Francisco, CA 94016" +168515,Lightning Charging Cable,2,14.95,02/23/19 16:04,"558 Elm St, San Francisco, CA 94016" +168516,AAA Batteries (4-pack),6,2.99,02/24/19 23:13,"988 Spruce St, San Francisco, CA 94016" +168517,USB-C Charging Cable,2,11.95,02/04/19 15:09,"768 10th St, San Francisco, CA 94016" +168518,Vareebadd Phone,1,400,02/20/19 15:19,"127 Meadow St, Portland, OR 97035" +168518,USB-C Charging Cable,1,11.95,02/20/19 15:19,"127 Meadow St, Portland, OR 97035" +168519,AA Batteries (4-pack),3,3.84,02/09/19 13:33,"574 Willow St, Los Angeles, CA 90001" +168520,Wired Headphones,1,11.99,02/03/19 13:56,"756 7th St, New York City, NY 10001" +168521,Lightning Charging Cable,1,14.95,02/02/19 23:46,"992 Cedar St, San Francisco, CA 94016" +168522,Google Phone,1,600,02/05/19 17:56,"131 Lake St, Los Angeles, CA 90001" +168523,34in Ultrawide Monitor,1,379.99,02/11/19 13:21,"287 Hill St, Portland, OR 97035" +168524,Apple Airpods Headphones,1,150,02/20/19 18:03,"858 Lakeview St, Atlanta, GA 30301" +168525,USB-C Charging Cable,1,11.95,02/10/19 20:03,"249 Lakeview St, Portland, OR 97035" +168526,Wired Headphones,1,11.99,02/10/19 09:53,"241 11th St, Los Angeles, CA 90001" +168527,Lightning Charging Cable,1,14.95,02/10/19 22:12,"968 Dogwood St, Los Angeles, CA 90001" +168528,Macbook Pro Laptop,1,1700,02/07/19 08:37,"144 12th St, Dallas, TX 75001" +168529,AA Batteries (4-pack),1,3.84,02/19/19 18:52,"431 1st St, New York City, NY 10001" +168530,Apple Airpods Headphones,1,150,02/02/19 02:03,"541 4th St, New York City, NY 10001" +168531,Lightning Charging Cable,1,14.95,02/26/19 14:35,"600 Sunset St, San Francisco, CA 94016" +168532,Bose SoundSport Headphones,1,99.99,02/10/19 13:12,"285 11th St, Los Angeles, CA 90001" +168533,USB-C Charging Cable,1,11.95,02/02/19 08:52,"945 Sunset St, San Francisco, CA 94016" +168534,iPhone,1,700,02/02/19 11:13,"564 Chestnut St, San Francisco, CA 94016" +168535,27in FHD Monitor,1,149.99,02/10/19 19:25,"420 4th St, Boston, MA 02215" +168536,AA Batteries (4-pack),4,3.84,02/28/19 11:28,"910 Main St, Dallas, TX 75001" +168537,USB-C Charging Cable,1,11.95,02/15/19 12:28,"827 10th St, New York City, NY 10001" +168538,AA Batteries (4-pack),2,3.84,02/16/19 11:54,"118 12th St, San Francisco, CA 94016" +168539,AA Batteries (4-pack),1,3.84,02/26/19 16:59,"634 Ridge St, Portland, ME 04101" +168540,AAA Batteries (4-pack),1,2.99,02/20/19 14:53,"859 North St, Boston, MA 02215" +168541,USB-C Charging Cable,1,11.95,02/19/19 20:03,"863 Cedar St, Boston, MA 02215" +168542,AAA Batteries (4-pack),1,2.99,02/19/19 09:22,"316 Dogwood St, San Francisco, CA 94016" +168543,Macbook Pro Laptop,1,1700,02/16/19 08:28,"639 7th St, New York City, NY 10001" +168544,iPhone,1,700,02/01/19 12:16,"390 Jefferson St, Atlanta, GA 30301" +168544,Apple Airpods Headphones,1,150,02/01/19 12:16,"390 Jefferson St, Atlanta, GA 30301" +168545,Lightning Charging Cable,1,14.95,02/20/19 06:10,"445 Wilson St, New York City, NY 10001" +168546,Lightning Charging Cable,1,14.95,02/25/19 21:05,"44 North St, Los Angeles, CA 90001" +168547,20in Monitor,1,109.99,02/15/19 19:22,"356 7th St, New York City, NY 10001" +168548,AAA Batteries (4-pack),2,2.99,02/26/19 17:08,"942 12th St, Dallas, TX 75001" +168549,Flatscreen TV,1,300,02/25/19 11:47,"964 Sunset St, Dallas, TX 75001" +168550,AA Batteries (4-pack),3,3.84,02/03/19 13:07,"860 6th St, Boston, MA 02215" +168551,USB-C Charging Cable,1,11.95,02/10/19 13:40,"153 Adams St, Dallas, TX 75001" +168552,USB-C Charging Cable,1,11.95,02/14/19 18:02,"692 Meadow St, Los Angeles, CA 90001" +168553,AAA Batteries (4-pack),1,2.99,02/28/19 16:21,"731 Washington St, New York City, NY 10001" +168554,AAA Batteries (4-pack),1,2.99,02/18/19 12:21,"536 Meadow St, San Francisco, CA 94016" +168555,Apple Airpods Headphones,1,150,02/01/19 09:50,"641 Elm St, Los Angeles, CA 90001" +168556,iPhone,1,700,02/09/19 13:31,"472 Lakeview St, Boston, MA 02215" +168557,27in 4K Gaming Monitor,1,389.99,02/14/19 20:25,"848 Forest St, New York City, NY 10001" +168558,AA Batteries (4-pack),1,3.84,02/03/19 22:46,"856 Cedar St, Los Angeles, CA 90001" +168559,Bose SoundSport Headphones,1,99.99,02/14/19 22:08,"194 1st St, New York City, NY 10001" +168560,27in FHD Monitor,1,149.99,02/28/19 15:03,"720 11th St, Los Angeles, CA 90001" +168561,Apple Airpods Headphones,1,150,02/18/19 09:37,"622 14th St, Dallas, TX 75001" +168562,USB-C Charging Cable,1,11.95,02/09/19 21:23,"170 11th St, Seattle, WA 98101" +168563,USB-C Charging Cable,1,11.95,02/27/19 17:49,"332 Adams St, Seattle, WA 98101" +168564,USB-C Charging Cable,2,11.95,02/08/19 11:12,"824 Madison St, Seattle, WA 98101" +168565,Wired Headphones,1,11.99,02/21/19 08:07,"963 13th St, Portland, OR 97035" +168566,Apple Airpods Headphones,1,150,02/24/19 21:10,"800 Highland St, Los Angeles, CA 90001" +168567,USB-C Charging Cable,1,11.95,02/28/19 17:52,"319 11th St, Seattle, WA 98101" +168568,Apple Airpods Headphones,1,150,02/12/19 01:06,"145 Sunset St, Austin, TX 73301" +168569,Wired Headphones,1,11.99,02/14/19 17:33,"306 12th St, Austin, TX 73301" +168570,Apple Airpods Headphones,1,150,02/09/19 20:54,"519 2nd St, New York City, NY 10001" +168571,AAA Batteries (4-pack),1,2.99,02/28/19 17:22,"960 8th St, Seattle, WA 98101" +168572,Wired Headphones,1,11.99,02/09/19 11:19,"815 Chestnut St, San Francisco, CA 94016" +168573,Apple Airpods Headphones,1,150,02/08/19 20:44,"597 14th St, San Francisco, CA 94016" +168574,Lightning Charging Cable,1,14.95,02/05/19 21:16,"531 8th St, Seattle, WA 98101" +168575,Apple Airpods Headphones,1,150,02/17/19 09:52,"866 Highland St, Los Angeles, CA 90001" +168576,Lightning Charging Cable,2,14.95,02/11/19 10:42,"680 North St, Atlanta, GA 30301" +168577,Lightning Charging Cable,1,14.95,02/02/19 12:56,"279 Madison St, New York City, NY 10001" +168578,iPhone,1,700,02/02/19 22:49,"459 Jackson St, San Francisco, CA 94016" +168578,Lightning Charging Cable,1,14.95,02/02/19 22:49,"459 Jackson St, San Francisco, CA 94016" +168578,Wired Headphones,1,11.99,02/02/19 22:49,"459 Jackson St, San Francisco, CA 94016" +168579,AA Batteries (4-pack),2,3.84,02/10/19 11:47,"219 North St, San Francisco, CA 94016" +168580,27in FHD Monitor,1,149.99,02/10/19 15:58,"200 South St, Portland, OR 97035" +168581,Wired Headphones,1,11.99,02/06/19 23:38,"71 Lake St, San Francisco, CA 94016" +168582,AA Batteries (4-pack),1,3.84,02/01/19 16:01,"155 Maple St, Boston, MA 02215" +168583,Lightning Charging Cable,1,14.95,02/15/19 20:39,"807 Meadow St, Boston, MA 02215" +168584,Apple Airpods Headphones,1,150,02/07/19 15:56,"660 Washington St, Portland, OR 97035" +168585,AA Batteries (4-pack),1,3.84,02/22/19 18:54,"483 Sunset St, San Francisco, CA 94016" +168586,AAA Batteries (4-pack),1,2.99,02/09/19 13:19,"246 Walnut St, Austin, TX 73301" +168587,USB-C Charging Cable,2,11.95,02/10/19 18:58,"979 North St, Boston, MA 02215" +168588,Apple Airpods Headphones,1,150,02/03/19 19:14,"847 River St, Atlanta, GA 30301" +168589,Macbook Pro Laptop,1,1700,02/03/19 13:45,"122 Spruce St, Seattle, WA 98101" +168590,Bose SoundSport Headphones,1,99.99,02/21/19 23:10,"239 Church St, Seattle, WA 98101" +168591,USB-C Charging Cable,1,11.95,02/17/19 12:38,"504 South St, New York City, NY 10001" +168592,Lightning Charging Cable,1,14.95,02/04/19 02:12,"439 1st St, Seattle, WA 98101" +168593,Flatscreen TV,1,300,02/20/19 17:41,"674 Lake St, New York City, NY 10001" +168594,27in 4K Gaming Monitor,1,389.99,02/25/19 18:41,"551 Ridge St, Austin, TX 73301" +168595,Lightning Charging Cable,1,14.95,02/03/19 19:40,"500 Jackson St, Dallas, TX 75001" +168596,USB-C Charging Cable,1,11.95,02/01/19 19:49,"403 Chestnut St, San Francisco, CA 94016" +168597,27in 4K Gaming Monitor,1,389.99,02/22/19 17:43,"504 River St, Boston, MA 02215" +168598,27in FHD Monitor,1,149.99,02/07/19 15:48,"791 2nd St, San Francisco, CA 94016" +168599,27in FHD Monitor,1,149.99,02/10/19 12:09,"966 South St, San Francisco, CA 94016" +168600,Lightning Charging Cable,1,14.95,02/02/19 17:36,"771 Hickory St, San Francisco, CA 94016" +168601,Lightning Charging Cable,1,14.95,02/26/19 10:33,"841 Washington St, Boston, MA 02215" +168602,Lightning Charging Cable,2,14.95,02/13/19 13:20,"250 4th St, New York City, NY 10001" +168603,AAA Batteries (4-pack),1,2.99,02/12/19 21:23,"238 Center St, Atlanta, GA 30301" +168604,Lightning Charging Cable,1,14.95,02/08/19 23:26,"173 Center St, Los Angeles, CA 90001" +168605,34in Ultrawide Monitor,1,379.99,02/22/19 12:56,"205 Church St, San Francisco, CA 94016" +168606,Lightning Charging Cable,1,14.95,02/14/19 14:50,"337 Sunset St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +168607,Lightning Charging Cable,1,14.95,02/03/19 08:19,"603 South St, Seattle, WA 98101" +168608,Apple Airpods Headphones,1,150,02/20/19 15:46,"236 Lake St, New York City, NY 10001" +168609,Apple Airpods Headphones,1,150,02/24/19 23:02,"478 14th St, Los Angeles, CA 90001" +168610,Lightning Charging Cable,1,14.95,02/07/19 11:44,"489 Lakeview St, Boston, MA 02215" +168611,Wired Headphones,1,11.99,02/22/19 21:03,"50 Wilson St, Boston, MA 02215" +168612,ThinkPad Laptop,1,999.99,02/25/19 08:37,"712 13th St, Seattle, WA 98101" +168613,AAA Batteries (4-pack),2,2.99,02/04/19 23:55,"149 9th St, Austin, TX 73301" +168614,Google Phone,1,600,02/10/19 06:54,"578 8th St, Boston, MA 02215" +168615,AA Batteries (4-pack),2,3.84,02/19/19 15:48,"204 7th St, Los Angeles, CA 90001" +168616,AAA Batteries (4-pack),1,2.99,02/20/19 14:00,"667 Cherry St, Atlanta, GA 30301" +,,,,, +168617,Bose SoundSport Headphones,1,99.99,02/25/19 11:31,"166 Jefferson St, San Francisco, CA 94016" +168618,Bose SoundSport Headphones,1,99.99,02/21/19 08:33,"54 Dogwood St, San Francisco, CA 94016" +168619,AAA Batteries (4-pack),4,2.99,02/08/19 15:30,"908 Lincoln St, Los Angeles, CA 90001" +168620,Lightning Charging Cable,1,14.95,02/08/19 09:43,"713 River St, Portland, OR 97035" +168621,Apple Airpods Headphones,1,150,02/10/19 05:44,"374 Walnut St, San Francisco, CA 94016" +168622,Apple Airpods Headphones,1,150,02/05/19 10:13,"387 Meadow St, Austin, TX 73301" +168623,Wired Headphones,1,11.99,02/02/19 17:54,"382 13th St, Boston, MA 02215" +168624,AA Batteries (4-pack),1,3.84,02/11/19 08:12,"802 11th St, Los Angeles, CA 90001" +168625,27in FHD Monitor,1,149.99,02/22/19 18:02,"28 Elm St, New York City, NY 10001" +168626,Flatscreen TV,1,300,02/17/19 10:46,"398 Walnut St, Austin, TX 73301" +168627,27in 4K Gaming Monitor,1,389.99,02/07/19 21:08,"259 4th St, Los Angeles, CA 90001" +168628,iPhone,1,700,02/05/19 15:30,"277 7th St, Portland, OR 97035" +168628,Lightning Charging Cable,1,14.95,02/05/19 15:30,"277 7th St, Portland, OR 97035" +168629,Wired Headphones,1,11.99,02/15/19 17:24,"573 8th St, Dallas, TX 75001" +168630,iPhone,1,700,02/18/19 15:13,"608 River St, New York City, NY 10001" +168631,Apple Airpods Headphones,1,150,02/02/19 15:25,"948 Main St, Los Angeles, CA 90001" +168632,Lightning Charging Cable,1,14.95,02/11/19 15:02,"32 6th St, Dallas, TX 75001" +168633,AA Batteries (4-pack),1,3.84,02/02/19 14:01,"357 Maple St, San Francisco, CA 94016" +168634,Apple Airpods Headphones,1,150,02/26/19 19:16,"107 Cedar St, Los Angeles, CA 90001" +168635,AA Batteries (4-pack),1,3.84,02/11/19 10:22,"586 Hill St, Atlanta, GA 30301" +168635,AAA Batteries (4-pack),1,2.99,02/11/19 10:22,"586 Hill St, Atlanta, GA 30301" +168636,Wired Headphones,1,11.99,02/18/19 02:55,"573 Dogwood St, Atlanta, GA 30301" +168637,USB-C Charging Cable,1,11.95,02/18/19 00:21,"746 9th St, San Francisco, CA 94016" +168638,Flatscreen TV,1,300,02/15/19 13:10,"198 River St, San Francisco, CA 94016" +168639,Lightning Charging Cable,1,14.95,02/14/19 22:22,"934 West St, Seattle, WA 98101" +168640,34in Ultrawide Monitor,1,379.99,02/16/19 19:54,"124 Jefferson St, San Francisco, CA 94016" +168641,Bose SoundSport Headphones,1,99.99,02/01/19 11:28,"651 North St, Los Angeles, CA 90001" +168642,Google Phone,1,600,02/20/19 16:55,"843 Jackson St, New York City, NY 10001" +168643,USB-C Charging Cable,1,11.95,02/02/19 16:59,"781 Pine St, Atlanta, GA 30301" +168644,AA Batteries (4-pack),1,3.84,02/19/19 18:11,"76 Maple St, Portland, ME 04101" +168645,USB-C Charging Cable,1,11.95,02/18/19 22:06,"452 6th St, Portland, OR 97035" +168646,Flatscreen TV,1,300,02/16/19 23:29,"672 Hickory St, San Francisco, CA 94016" +168647,AAA Batteries (4-pack),2,2.99,02/05/19 22:20,"83 Spruce St, Atlanta, GA 30301" +168648,Google Phone,1,600,02/14/19 16:19,"32 Walnut St, San Francisco, CA 94016" +168649,Lightning Charging Cable,1,14.95,02/17/19 20:05,"719 Lincoln St, Boston, MA 02215" +168650,Lightning Charging Cable,1,14.95,02/05/19 13:19,"268 Adams St, Seattle, WA 98101" +168651,27in FHD Monitor,1,149.99,02/14/19 07:46,"279 Forest St, Los Angeles, CA 90001" +168652,iPhone,1,700,02/14/19 18:49,"59 2nd St, Los Angeles, CA 90001" +168652,Lightning Charging Cable,1,14.95,02/14/19 18:49,"59 2nd St, Los Angeles, CA 90001" +168653,AAA Batteries (4-pack),1,2.99,02/02/19 23:24,"558 Center St, San Francisco, CA 94016" +168654,Lightning Charging Cable,1,14.95,02/27/19 09:35,"428 Wilson St, Boston, MA 02215" +168655,Apple Airpods Headphones,1,150,02/27/19 21:56,"619 Lincoln St, Austin, TX 73301" +168656,Wired Headphones,1,11.99,02/17/19 14:08,"581 Lincoln St, Boston, MA 02215" +168657,AA Batteries (4-pack),1,3.84,02/11/19 13:43,"650 Meadow St, Atlanta, GA 30301" +168658,Wired Headphones,1,11.99,02/24/19 15:01,"399 2nd St, New York City, NY 10001" +168659,Apple Airpods Headphones,1,150,02/03/19 15:57,"788 Willow St, Atlanta, GA 30301" +168660,USB-C Charging Cable,1,11.95,02/10/19 11:32,"474 Jackson St, Dallas, TX 75001" +168661,Wired Headphones,1,11.99,02/06/19 12:12,"331 Willow St, Los Angeles, CA 90001" +168662,USB-C Charging Cable,1,11.95,02/09/19 10:20,"449 Highland St, Seattle, WA 98101" +168663,AAA Batteries (4-pack),2,2.99,02/14/19 14:43,"521 9th St, Seattle, WA 98101" +168664,AAA Batteries (4-pack),1,2.99,02/01/19 15:54,"288 Elm St, San Francisco, CA 94016" +168665,Wired Headphones,1,11.99,02/05/19 23:07,"251 1st St, New York City, NY 10001" +168666,AA Batteries (4-pack),1,3.84,02/16/19 12:04,"524 Hickory St, Los Angeles, CA 90001" +168667,AA Batteries (4-pack),1,3.84,02/06/19 06:08,"14 Maple St, New York City, NY 10001" +168667,USB-C Charging Cable,1,11.95,02/06/19 06:08,"14 Maple St, New York City, NY 10001" +168668,Lightning Charging Cable,1,14.95,02/04/19 17:26,"101 Maple St, Portland, OR 97035" +168669,Bose SoundSport Headphones,1,99.99,02/02/19 12:32,"79 7th St, Los Angeles, CA 90001" +168670,USB-C Charging Cable,1,11.95,02/27/19 21:35,"51 6th St, San Francisco, CA 94016" +168671,Macbook Pro Laptop,1,1700,02/07/19 19:46,"664 4th St, New York City, NY 10001" +168672,Wired Headphones,1,11.99,02/28/19 21:27,"227 14th St, San Francisco, CA 94016" +168673,Bose SoundSport Headphones,1,99.99,02/03/19 13:51,"995 7th St, Los Angeles, CA 90001" +168674,Google Phone,1,600,02/01/19 15:27,"285 Madison St, Seattle, WA 98101" +168674,USB-C Charging Cable,1,11.95,02/01/19 15:27,"285 Madison St, Seattle, WA 98101" +168675,Bose SoundSport Headphones,1,99.99,02/19/19 09:03,"753 Highland St, New York City, NY 10001" +168676,Lightning Charging Cable,2,14.95,02/14/19 11:20,"367 Jefferson St, Dallas, TX 75001" +168677,Lightning Charging Cable,2,14.95,02/06/19 19:11,"36 Washington St, Los Angeles, CA 90001" +168678,27in 4K Gaming Monitor,1,389.99,02/25/19 12:44,"984 Lincoln St, Austin, TX 73301" +168679,Lightning Charging Cable,1,14.95,02/21/19 22:12,"639 Lakeview St, Austin, TX 73301" +168680,Wired Headphones,1,11.99,02/04/19 12:28,"709 Hickory St, New York City, NY 10001" +168681,Bose SoundSport Headphones,2,99.99,02/18/19 11:23,"479 Dogwood St, Boston, MA 02215" +168682,Lightning Charging Cable,1,14.95,02/16/19 11:13,"89 Walnut St, Los Angeles, CA 90001" +168683,Lightning Charging Cable,1,14.95,02/19/19 14:57,"486 Highland St, Los Angeles, CA 90001" +168684,Apple Airpods Headphones,1,150,02/05/19 18:38,"772 7th St, New York City, NY 10001" +168685,iPhone,1,700,02/10/19 17:38,"691 Cherry St, Atlanta, GA 30301" +168685,Lightning Charging Cable,1,14.95,02/10/19 17:38,"691 Cherry St, Atlanta, GA 30301" +168686,Apple Airpods Headphones,1,150,02/17/19 01:28,"202 Lincoln St, San Francisco, CA 94016" +168687,Bose SoundSport Headphones,1,99.99,02/12/19 14:39,"599 7th St, New York City, NY 10001" +168688,Apple Airpods Headphones,1,150,02/05/19 12:51,"683 Pine St, San Francisco, CA 94016" +168689,Lightning Charging Cable,1,14.95,02/07/19 12:09,"310 Jefferson St, Dallas, TX 75001" +168689,Lightning Charging Cable,1,14.95,02/07/19 12:09,"310 Jefferson St, Dallas, TX 75001" +168690,27in 4K Gaming Monitor,1,389.99,02/26/19 19:48,"626 Jefferson St, Dallas, TX 75001" +168691,USB-C Charging Cable,1,11.95,02/13/19 10:00,"899 Ridge St, New York City, NY 10001" +168692,34in Ultrawide Monitor,1,379.99,02/21/19 14:05,"72 Ridge St, Boston, MA 02215" +168693,Bose SoundSport Headphones,1,99.99,02/27/19 07:46,"18 14th St, Austin, TX 73301" +168694,AAA Batteries (4-pack),2,2.99,02/03/19 14:50,"551 Lake St, San Francisco, CA 94016" +168695,ThinkPad Laptop,1,999.99,02/11/19 01:39,"748 Cedar St, New York City, NY 10001" +168696,Macbook Pro Laptop,1,1700,02/21/19 11:06,"133 South St, San Francisco, CA 94016" +168697,Flatscreen TV,1,300,02/01/19 21:41,"238 1st St, Atlanta, GA 30301" +168698,Apple Airpods Headphones,1,150,02/16/19 15:39,"915 Maple St, San Francisco, CA 94016" +168698,Google Phone,1,600,02/16/19 15:39,"915 Maple St, San Francisco, CA 94016" +168699,27in 4K Gaming Monitor,1,389.99,02/16/19 18:29,"213 Lakeview St, Seattle, WA 98101" +168700,Lightning Charging Cable,1,14.95,02/27/19 15:57,"136 Madison St, Dallas, TX 75001" +168701,Bose SoundSport Headphones,1,99.99,02/06/19 21:50,"998 Sunset St, New York City, NY 10001" +168702,USB-C Charging Cable,1,11.95,02/02/19 16:14,"778 8th St, New York City, NY 10001" +168703,USB-C Charging Cable,2,11.95,02/25/19 08:40,"857 14th St, Los Angeles, CA 90001" +168704,AAA Batteries (4-pack),1,2.99,02/12/19 00:16,"898 Willow St, New York City, NY 10001" +168705,Lightning Charging Cable,1,14.95,02/28/19 11:04,"45 Forest St, New York City, NY 10001" +168706,USB-C Charging Cable,1,11.95,02/22/19 16:19,"707 West St, San Francisco, CA 94016" +168707,Lightning Charging Cable,2,14.95,02/11/19 16:07,"192 Willow St, Dallas, TX 75001" +168707,Bose SoundSport Headphones,1,99.99,02/11/19 16:07,"192 Willow St, Dallas, TX 75001" +168708,Flatscreen TV,1,300,02/17/19 21:17,"262 Johnson St, Boston, MA 02215" +168709,Wired Headphones,1,11.99,02/15/19 15:16,"8 Hill St, Los Angeles, CA 90001" +168710,USB-C Charging Cable,2,11.95,02/22/19 11:51,"973 River St, Los Angeles, CA 90001" +168711,27in FHD Monitor,1,149.99,02/16/19 09:56,"300 Park St, Dallas, TX 75001" +168712,USB-C Charging Cable,2,11.95,02/20/19 12:14,"360 Hill St, Boston, MA 02215" +168713,27in 4K Gaming Monitor,1,389.99,02/28/19 12:49,"526 Pine St, San Francisco, CA 94016" +168714,Lightning Charging Cable,1,14.95,02/20/19 20:35,"698 North St, New York City, NY 10001" +168715,Wired Headphones,1,11.99,02/05/19 08:38,"681 Hickory St, New York City, NY 10001" +168716,AAA Batteries (4-pack),1,2.99,02/21/19 20:37,"394 Jefferson St, Atlanta, GA 30301" +168717,USB-C Charging Cable,1,11.95,02/22/19 10:50,"74 Dogwood St, Austin, TX 73301" +168718,Bose SoundSport Headphones,1,99.99,02/09/19 19:12,"616 Dogwood St, San Francisco, CA 94016" +168719,Apple Airpods Headphones,1,150,02/25/19 13:05,"54 12th St, Los Angeles, CA 90001" +168720,AAA Batteries (4-pack),3,2.99,02/03/19 21:15,"727 6th St, Boston, MA 02215" +168721,Bose SoundSport Headphones,1,99.99,02/21/19 12:12,"428 1st St, Los Angeles, CA 90001" +168722,Macbook Pro Laptop,1,1700,02/25/19 14:51,"297 Madison St, Seattle, WA 98101" +168723,Bose SoundSport Headphones,1,99.99,02/16/19 07:37,"417 Cherry St, Dallas, TX 75001" +168724,USB-C Charging Cable,1,11.95,02/21/19 09:34,"38 Maple St, New York City, NY 10001" +168725,AA Batteries (4-pack),4,3.84,02/02/19 14:48,"241 Hickory St, Portland, OR 97035" +168726,Apple Airpods Headphones,1,150,02/26/19 21:10,"574 Spruce St, Seattle, WA 98101" +168727,27in 4K Gaming Monitor,1,389.99,02/01/19 10:03,"34 Main St, Portland, OR 97035" +168728,AA Batteries (4-pack),1,3.84,02/10/19 04:39,"160 Lincoln St, New York City, NY 10001" +168729,ThinkPad Laptop,1,999.99,02/24/19 10:25,"70 Dogwood St, New York City, NY 10001" +168730,USB-C Charging Cable,1,11.95,02/04/19 18:15,"381 Forest St, Atlanta, GA 30301" +168731,Wired Headphones,1,11.99,02/20/19 22:14,"146 Washington St, San Francisco, CA 94016" +168732,AAA Batteries (4-pack),1,2.99,02/02/19 16:56,"875 10th St, Los Angeles, CA 90001" +168733,Vareebadd Phone,1,400,02/19/19 20:03,"125 Maple St, Dallas, TX 75001" +168733,USB-C Charging Cable,1,11.95,02/19/19 20:03,"125 Maple St, Dallas, TX 75001" +168734,AA Batteries (4-pack),4,3.84,02/12/19 08:16,"657 Forest St, Boston, MA 02215" +168735,Bose SoundSport Headphones,1,99.99,02/08/19 12:17,"803 North St, Austin, TX 73301" +168736,20in Monitor,1,109.99,02/17/19 21:10,"869 North St, Los Angeles, CA 90001" +168737,AA Batteries (4-pack),2,3.84,02/24/19 19:05,"495 River St, Boston, MA 02215" +168738,27in 4K Gaming Monitor,1,389.99,02/17/19 18:27,"694 Lakeview St, Atlanta, GA 30301" +168739,Google Phone,1,600,02/25/19 02:06,"108 Spruce St, Los Angeles, CA 90001" +168739,Bose SoundSport Headphones,1,99.99,02/25/19 02:06,"108 Spruce St, Los Angeles, CA 90001" +168740,USB-C Charging Cable,1,11.95,02/14/19 04:02,"380 Walnut St, Boston, MA 02215" +168741,Wired Headphones,1,11.99,02/04/19 13:57,"65 Hill St, Dallas, TX 75001" +168742,USB-C Charging Cable,1,11.95,02/02/19 15:16,"160 Forest St, Seattle, WA 98101" +168743,USB-C Charging Cable,1,11.95,02/18/19 17:13,"825 Chestnut St, Los Angeles, CA 90001" +168744,USB-C Charging Cable,1,11.95,02/11/19 09:35,"331 13th St, Portland, OR 97035" +168745,ThinkPad Laptop,1,999.99,02/13/19 10:13,"988 River St, Austin, TX 73301" +168746,AAA Batteries (4-pack),1,2.99,02/07/19 16:49,"348 9th St, Dallas, TX 75001" +168747,Apple Airpods Headphones,1,150,02/14/19 23:10,"354 Lake St, Seattle, WA 98101" +168748,Bose SoundSport Headphones,1,99.99,02/16/19 21:05,"83 Cedar St, San Francisco, CA 94016" +168749,Bose SoundSport Headphones,1,99.99,02/02/19 13:58,"327 7th St, San Francisco, CA 94016" +168750,AAA Batteries (4-pack),1,2.99,02/25/19 10:07,"714 Ridge St, Atlanta, GA 30301" +168751,Lightning Charging Cable,1,14.95,02/23/19 23:38,"479 Center St, San Francisco, CA 94016" +168752,34in Ultrawide Monitor,1,379.99,02/01/19 08:40,"990 Jefferson St, San Francisco, CA 94016" +168753,Google Phone,1,600,02/04/19 07:51,"418 14th St, Boston, MA 02215" +168754,27in FHD Monitor,1,149.99,02/05/19 12:09,"465 Jackson St, Boston, MA 02215" +168755,AAA Batteries (4-pack),1,2.99,02/14/19 16:25,"193 Forest St, San Francisco, CA 94016" +168756,Bose SoundSport Headphones,1,99.99,02/06/19 22:19,"62 Elm St, Atlanta, GA 30301" +168757,Lightning Charging Cable,1,14.95,02/20/19 10:54,"142 Cedar St, Austin, TX 73301" +168758,34in Ultrawide Monitor,1,379.99,03/01/19 01:32,"851 West St, Boston, MA 02215" +168759,iPhone,1,700,02/12/19 06:23,"748 Pine St, Dallas, TX 75001" +168760,Lightning Charging Cable,1,14.95,02/13/19 00:56,"5 Willow St, New York City, NY 10001" +168761,Lightning Charging Cable,1,14.95,02/27/19 17:55,"810 5th St, Boston, MA 02215" +168762,Apple Airpods Headphones,1,150,02/19/19 16:08,"380 Washington St, San Francisco, CA 94016" +168763,AA Batteries (4-pack),2,3.84,02/17/19 10:42,"957 Maple St, San Francisco, CA 94016" +168764,AA Batteries (4-pack),1,3.84,02/28/19 18:56,"444 Chestnut St, Boston, MA 02215" +168764,Lightning Charging Cable,1,14.95,02/28/19 18:56,"444 Chestnut St, Boston, MA 02215" +168765,Wired Headphones,1,11.99,02/25/19 20:34,"752 Center St, New York City, NY 10001" +168766,AA Batteries (4-pack),1,3.84,02/27/19 19:16,"139 Center St, Dallas, TX 75001" +168767,27in FHD Monitor,1,149.99,02/20/19 19:54,"11 Ridge St, Seattle, WA 98101" +168768,Bose SoundSport Headphones,1,99.99,02/16/19 18:37,"309 12th St, Dallas, TX 75001" +168769,34in Ultrawide Monitor,1,379.99,02/07/19 07:11,"753 Hickory St, New York City, NY 10001" +168770,AAA Batteries (4-pack),1,2.99,02/11/19 14:54,"313 14th St, Dallas, TX 75001" +168771,Macbook Pro Laptop,1,1700,02/15/19 15:32,"384 Willow St, New York City, NY 10001" +168772,Bose SoundSport Headphones,1,99.99,02/03/19 17:50,"786 14th St, Boston, MA 02215" +168773,AAA Batteries (4-pack),1,2.99,02/05/19 16:34,"855 Pine St, Atlanta, GA 30301" +168774,AAA Batteries (4-pack),1,2.99,02/25/19 08:08,"113 Jefferson St, Dallas, TX 75001" +168775,USB-C Charging Cable,1,11.95,02/24/19 21:28,"339 5th St, Boston, MA 02215" +168776,27in 4K Gaming Monitor,1,389.99,02/21/19 20:44,"435 Cedar St, New York City, NY 10001" +168777,Macbook Pro Laptop,1,1700,02/06/19 11:53,"232 Wilson St, San Francisco, CA 94016" +168778,AAA Batteries (4-pack),1,2.99,02/11/19 15:09,"66 11th St, San Francisco, CA 94016" +168779,Wired Headphones,1,11.99,02/26/19 18:14,"570 11th St, Dallas, TX 75001" +168780,USB-C Charging Cable,2,11.95,02/20/19 12:46,"126 Jackson St, San Francisco, CA 94016" +168781,USB-C Charging Cable,1,11.95,02/03/19 18:43,"668 Spruce St, Dallas, TX 75001" +168782,AA Batteries (4-pack),1,3.84,02/12/19 22:25,"902 South St, New York City, NY 10001" +168783,AAA Batteries (4-pack),2,2.99,02/05/19 14:29,"509 2nd St, Portland, OR 97035" +168784,20in Monitor,1,109.99,02/09/19 22:09,"861 Lincoln St, San Francisco, CA 94016" +168785,USB-C Charging Cable,1,11.95,02/26/19 20:43,"825 Wilson St, Atlanta, GA 30301" +168786,Wired Headphones,1,11.99,02/01/19 22:11,"745 Spruce St, New York City, NY 10001" +168787,Macbook Pro Laptop,1,1700,02/15/19 01:03,"721 River St, New York City, NY 10001" +168788,Bose SoundSport Headphones,1,99.99,02/01/19 08:21,"173 2nd St, San Francisco, CA 94016" +168789,Lightning Charging Cable,1,14.95,02/22/19 17:54,"883 Lincoln St, Los Angeles, CA 90001" +168790,AAA Batteries (4-pack),1,2.99,02/21/19 20:23,"626 1st St, Los Angeles, CA 90001" +168791,Wired Headphones,1,11.99,02/20/19 14:45,"781 Cedar St, Los Angeles, CA 90001" +168792,iPhone,1,700,02/14/19 15:16,"615 North St, San Francisco, CA 94016" +168792,USB-C Charging Cable,1,11.95,02/14/19 15:16,"615 North St, San Francisco, CA 94016" +168793,AAA Batteries (4-pack),2,2.99,02/10/19 16:49,"16 South St, Dallas, TX 75001" +168794,Apple Airpods Headphones,1,150,02/21/19 14:46,"714 River St, New York City, NY 10001" +168795,34in Ultrawide Monitor,1,379.99,02/01/19 18:56,"104 1st St, San Francisco, CA 94016" +168796,Flatscreen TV,1,300,02/16/19 14:05,"984 6th St, San Francisco, CA 94016" +168797,Lightning Charging Cable,1,14.95,02/06/19 00:27,"467 North St, San Francisco, CA 94016" +168798,Lightning Charging Cable,1,14.95,02/17/19 17:14,"702 10th St, Boston, MA 02215" +168799,Lightning Charging Cable,1,14.95,02/02/19 22:28,"951 Lakeview St, San Francisco, CA 94016" +168800,AAA Batteries (4-pack),1,2.99,02/03/19 21:27,"195 13th St, San Francisco, CA 94016" +168801,USB-C Charging Cable,1,11.95,02/26/19 11:34,"151 8th St, Austin, TX 73301" +168802,USB-C Charging Cable,1,11.95,02/27/19 19:18,"297 6th St, Boston, MA 02215" +168803,Apple Airpods Headphones,1,150,02/14/19 19:15,"40 Park St, Dallas, TX 75001" +168804,Flatscreen TV,1,300,02/06/19 15:29,"99 5th St, Boston, MA 02215" +168805,USB-C Charging Cable,1,11.95,02/10/19 21:10,"367 Wilson St, Dallas, TX 75001" +168806,Lightning Charging Cable,1,14.95,02/10/19 12:16,"267 North St, San Francisco, CA 94016" +168807,USB-C Charging Cable,2,11.95,02/03/19 10:46,"569 Highland St, Boston, MA 02215" +168808,AAA Batteries (4-pack),3,2.99,02/03/19 17:01,"861 Sunset St, San Francisco, CA 94016" +168809,Flatscreen TV,1,300,02/22/19 20:43,"484 West St, Seattle, WA 98101" +168810,AAA Batteries (4-pack),1,2.99,02/23/19 16:02,"539 1st St, San Francisco, CA 94016" +168811,AA Batteries (4-pack),3,3.84,02/19/19 14:10,"748 10th St, Atlanta, GA 30301" +168812,Flatscreen TV,1,300,02/14/19 17:43,"845 Jackson St, Los Angeles, CA 90001" +168813,Apple Airpods Headphones,1,150,02/18/19 12:18,"520 Ridge St, Seattle, WA 98101" +168814,Wired Headphones,2,11.99,02/08/19 03:05,"499 8th St, San Francisco, CA 94016" +168815,Flatscreen TV,1,300,02/11/19 20:45,"55 Meadow St, San Francisco, CA 94016" +168816,Wired Headphones,1,11.99,02/01/19 11:28,"181 Park St, Atlanta, GA 30301" +168817,USB-C Charging Cable,1,11.95,02/02/19 15:54,"887 Willow St, San Francisco, CA 94016" +168818,Macbook Pro Laptop,1,1700,02/18/19 09:17,"351 10th St, San Francisco, CA 94016" +168819,AAA Batteries (4-pack),2,2.99,02/13/19 08:20,"779 Johnson St, Los Angeles, CA 90001" +168820,20in Monitor,1,109.99,02/17/19 09:03,"377 Forest St, Dallas, TX 75001" +168821,AAA Batteries (4-pack),1,2.99,02/01/19 19:20,"712 14th St, Los Angeles, CA 90001" +168822,USB-C Charging Cable,1,11.95,02/10/19 11:15,"619 Adams St, Atlanta, GA 30301" +168823,ThinkPad Laptop,1,999.99,02/08/19 17:53,"518 Washington St, San Francisco, CA 94016" +168824,Macbook Pro Laptop,1,1700,02/27/19 02:41,"514 Highland St, Dallas, TX 75001" +168825,Lightning Charging Cable,1,14.95,02/01/19 17:57,"751 Ridge St, Portland, OR 97035" +168826,Bose SoundSport Headphones,1,99.99,02/11/19 12:28,"331 14th St, Dallas, TX 75001" +168827,USB-C Charging Cable,1,11.95,02/11/19 14:07,"463 Lake St, Boston, MA 02215" +168828,Flatscreen TV,1,300,02/15/19 12:24,"555 10th St, Dallas, TX 75001" +168829,AAA Batteries (4-pack),1,2.99,02/28/19 09:17,"356 Jackson St, Dallas, TX 75001" +168830,Wired Headphones,1,11.99,02/02/19 18:54,"129 Dogwood St, Los Angeles, CA 90001" +168831,Bose SoundSport Headphones,1,99.99,02/10/19 23:45,"96 Washington St, Seattle, WA 98101" +168832,iPhone,1,700,02/14/19 13:56,"588 1st St, Los Angeles, CA 90001" +168832,Wired Headphones,1,11.99,02/14/19 13:56,"588 1st St, Los Angeles, CA 90001" +168833,USB-C Charging Cable,1,11.95,02/08/19 21:19,"218 7th St, San Francisco, CA 94016" +168834,Wired Headphones,1,11.99,02/07/19 12:25,"823 Cherry St, Portland, OR 97035" +168835,27in FHD Monitor,1,149.99,02/08/19 21:50,"377 5th St, Dallas, TX 75001" +168836,USB-C Charging Cable,1,11.95,02/18/19 17:33,"490 Cedar St, Atlanta, GA 30301" +168837,Wired Headphones,1,11.99,02/10/19 16:50,"819 West St, Los Angeles, CA 90001" +168838,Lightning Charging Cable,1,14.95,02/16/19 22:08,"906 Dogwood St, New York City, NY 10001" +168839,Apple Airpods Headphones,1,150,02/26/19 18:07,"138 Hill St, Seattle, WA 98101" +168840,Apple Airpods Headphones,1,150,02/10/19 19:31,"537 Lakeview St, Los Angeles, CA 90001" +168841,AA Batteries (4-pack),1,3.84,02/26/19 06:59,"959 Pine St, Los Angeles, CA 90001" +168842,Apple Airpods Headphones,1,150,02/24/19 12:27,"32 Meadow St, New York City, NY 10001" +168843,Apple Airpods Headphones,1,150,02/11/19 10:02,"153 7th St, Dallas, TX 75001" +168844,Apple Airpods Headphones,1,150,02/23/19 21:55,"816 North St, Los Angeles, CA 90001" +168845,USB-C Charging Cable,1,11.95,02/09/19 03:38,"756 6th St, Atlanta, GA 30301" +168846,Flatscreen TV,1,300,02/08/19 06:19,"252 Cedar St, Los Angeles, CA 90001" +168847,Bose SoundSport Headphones,1,99.99,02/03/19 05:27,"675 Highland St, San Francisco, CA 94016" +168848,Wired Headphones,2,11.99,02/05/19 09:45,"909 Elm St, Atlanta, GA 30301" +168849,Google Phone,1,600,02/09/19 10:32,"114 Lincoln St, San Francisco, CA 94016" +168849,USB-C Charging Cable,1,11.95,02/09/19 10:32,"114 Lincoln St, San Francisco, CA 94016" +168850,USB-C Charging Cable,1,11.95,02/02/19 10:45,"614 Center St, Atlanta, GA 30301" +168851,Bose SoundSport Headphones,1,99.99,02/18/19 11:26,"254 Johnson St, Los Angeles, CA 90001" +168852,AA Batteries (4-pack),3,3.84,02/21/19 10:04,"622 Park St, Boston, MA 02215" +168853,Bose SoundSport Headphones,1,99.99,02/28/19 13:02,"112 Meadow St, Boston, MA 02215" +168854,Vareebadd Phone,1,400,02/17/19 14:37,"104 Dogwood St, Boston, MA 02215" +168855,USB-C Charging Cable,1,11.95,02/10/19 02:45,"774 Meadow St, Portland, OR 97035" +168856,USB-C Charging Cable,1,11.95,02/15/19 17:39,"747 Adams St, Seattle, WA 98101" +168857,AA Batteries (4-pack),2,3.84,02/26/19 16:33,"620 Elm St, New York City, NY 10001" +168858,AAA Batteries (4-pack),1,2.99,02/14/19 07:23,"811 14th St, New York City, NY 10001" +168859,34in Ultrawide Monitor,1,379.99,02/21/19 16:12,"413 11th St, Portland, OR 97035" +168860,AA Batteries (4-pack),1,3.84,02/26/19 11:16,"105 Lakeview St, San Francisco, CA 94016" +168861,Lightning Charging Cable,1,14.95,02/10/19 22:15,"35 Spruce St, Seattle, WA 98101" +168862,Apple Airpods Headphones,1,150,02/13/19 20:24,"821 Washington St, San Francisco, CA 94016" +168863,USB-C Charging Cable,1,11.95,02/28/19 19:34,"918 Pine St, San Francisco, CA 94016" +168864,USB-C Charging Cable,1,11.95,02/12/19 20:04,"770 Adams St, Portland, OR 97035" +168865,Wired Headphones,1,11.99,02/26/19 14:11,"90 South St, Boston, MA 02215" +168866,USB-C Charging Cable,1,11.95,02/02/19 13:34,"169 Pine St, Seattle, WA 98101" +168867,USB-C Charging Cable,1,11.95,02/16/19 18:59,"708 North St, Atlanta, GA 30301" +168868,Wired Headphones,1,11.99,02/25/19 20:07,"89 Walnut St, Atlanta, GA 30301" +168869,Lightning Charging Cable,1,14.95,02/21/19 10:27,"372 5th St, Dallas, TX 75001" +168870,Wired Headphones,1,11.99,02/26/19 19:23,"501 South St, Los Angeles, CA 90001" +168870,Wired Headphones,1,11.99,02/26/19 19:23,"501 South St, Los Angeles, CA 90001" +168871,iPhone,1,700,02/26/19 22:01,"408 Meadow St, San Francisco, CA 94016" +168871,Lightning Charging Cable,1,14.95,02/26/19 22:01,"408 Meadow St, San Francisco, CA 94016" +168872,AAA Batteries (4-pack),1,2.99,02/05/19 20:59,"928 Spruce St, Los Angeles, CA 90001" +168873,USB-C Charging Cable,1,11.95,02/25/19 10:40,"353 9th St, San Francisco, CA 94016" +168874,AA Batteries (4-pack),1,3.84,02/13/19 08:14,"353 4th St, Dallas, TX 75001" +168875,Apple Airpods Headphones,1,150,02/23/19 04:23,"389 Ridge St, New York City, NY 10001" +168876,Wired Headphones,2,11.99,02/22/19 13:54,"939 Dogwood St, San Francisco, CA 94016" +168877,Apple Airpods Headphones,1,150,02/27/19 21:23,"289 14th St, New York City, NY 10001" +168878,27in FHD Monitor,1,149.99,02/16/19 17:17,"852 2nd St, Los Angeles, CA 90001" +168879,USB-C Charging Cable,1,11.95,02/13/19 19:27,"602 Lakeview St, Boston, MA 02215" +168880,AAA Batteries (4-pack),1,2.99,02/21/19 08:47,"691 Spruce St, San Francisco, CA 94016" +168881,Vareebadd Phone,1,400,02/12/19 18:35,"813 Meadow St, New York City, NY 10001" +168882,AAA Batteries (4-pack),1,2.99,02/05/19 21:06,"694 9th St, New York City, NY 10001" +168883,Wired Headphones,1,11.99,02/12/19 23:59,"991 Center St, Seattle, WA 98101" +168884,AAA Batteries (4-pack),1,2.99,02/11/19 12:53,"378 Walnut St, Portland, OR 97035" +168885,USB-C Charging Cable,1,11.95,02/06/19 13:52,"567 Walnut St, Dallas, TX 75001" +168886,Google Phone,1,600,02/06/19 21:50,"708 Highland St, Dallas, TX 75001" +168887,AA Batteries (4-pack),1,3.84,02/02/19 15:04,"511 Sunset St, San Francisco, CA 94016" +168888,Apple Airpods Headphones,1,150,02/21/19 07:21,"96 Center St, Austin, TX 73301" +168889,USB-C Charging Cable,1,11.95,02/08/19 12:32,"34 Chestnut St, Los Angeles, CA 90001" +168890,iPhone,1,700,02/08/19 12:57,"316 North St, Boston, MA 02215" +168890,Lightning Charging Cable,1,14.95,02/08/19 12:57,"316 North St, Boston, MA 02215" +168891,iPhone,1,700,02/11/19 11:22,"453 Johnson St, New York City, NY 10001" +168892,20in Monitor,1,109.99,02/13/19 11:53,"58 Cherry St, New York City, NY 10001" +168893,USB-C Charging Cable,1,11.95,02/15/19 23:56,"951 Lakeview St, New York City, NY 10001" +168894,Lightning Charging Cable,1,14.95,02/08/19 18:22,"119 Walnut St, Portland, OR 97035" +168895,AA Batteries (4-pack),1,3.84,02/18/19 21:41,"944 7th St, New York City, NY 10001" +168896,USB-C Charging Cable,1,11.95,02/25/19 17:22,"202 Wilson St, Dallas, TX 75001" +168897,Wired Headphones,1,11.99,02/20/19 12:39,"364 West St, Seattle, WA 98101" +168898,Bose SoundSport Headphones,1,99.99,02/25/19 19:55,"756 Maple St, Portland, OR 97035" +168899,Lightning Charging Cable,1,14.95,02/23/19 15:31,"185 Johnson St, New York City, NY 10001" +168900,Bose SoundSport Headphones,1,99.99,02/16/19 12:22,"297 Chestnut St, Los Angeles, CA 90001" +168901,Apple Airpods Headphones,1,150,02/25/19 11:55,"623 2nd St, Portland, OR 97035" +168902,Bose SoundSport Headphones,1,99.99,02/13/19 09:02,"931 Hill St, New York City, NY 10001" +168903,USB-C Charging Cable,1,11.95,02/15/19 10:32,"561 Forest St, Portland, OR 97035" +168904,Wired Headphones,1,11.99,02/26/19 09:08,"375 Main St, San Francisco, CA 94016" +168905,AAA Batteries (4-pack),2,2.99,02/26/19 14:54,"155 Lakeview St, Los Angeles, CA 90001" +168906,AA Batteries (4-pack),1,3.84,02/14/19 09:45,"602 Ridge St, Dallas, TX 75001" +168907,Bose SoundSport Headphones,1,99.99,02/02/19 10:33,"145 10th St, New York City, NY 10001" +168908,Apple Airpods Headphones,1,150,02/01/19 16:59,"163 River St, New York City, NY 10001" +168909,AAA Batteries (4-pack),2,2.99,02/03/19 16:45,"117 Johnson St, Boston, MA 02215" +168910,Wired Headphones,1,11.99,02/18/19 21:55,"479 5th St, Atlanta, GA 30301" +168911,AA Batteries (4-pack),1,3.84,02/21/19 06:27,"124 12th St, Seattle, WA 98101" +168912,AA Batteries (4-pack),1,3.84,02/02/19 22:57,"118 Johnson St, Boston, MA 02215" +168913,Wired Headphones,1,11.99,02/09/19 22:45,"246 Church St, Los Angeles, CA 90001" +168914,Wired Headphones,1,11.99,02/06/19 09:23,"540 Church St, Austin, TX 73301" +168915,27in FHD Monitor,1,149.99,02/15/19 21:18,"992 Center St, San Francisco, CA 94016" +168916,27in FHD Monitor,1,149.99,02/06/19 18:48,"990 Church St, Seattle, WA 98101" +168917,Lightning Charging Cable,1,14.95,02/10/19 11:17,"14 7th St, Portland, OR 97035" +168918,Lightning Charging Cable,1,14.95,02/12/19 01:23,"254 7th St, Boston, MA 02215" +168919,USB-C Charging Cable,1,11.95,02/22/19 22:52,"678 West St, Seattle, WA 98101" +168920,iPhone,1,700,02/06/19 23:15,"898 11th St, New York City, NY 10001" +168920,AAA Batteries (4-pack),1,2.99,02/06/19 23:15,"898 11th St, New York City, NY 10001" +168921,20in Monitor,1,109.99,02/02/19 20:40,"135 Cherry St, New York City, NY 10001" +168922,AAA Batteries (4-pack),1,2.99,02/21/19 18:59,"717 Pine St, Dallas, TX 75001" +168923,20in Monitor,1,109.99,02/24/19 12:05,"713 Jackson St, San Francisco, CA 94016" +168924,AAA Batteries (4-pack),1,2.99,02/11/19 10:56,"357 9th St, San Francisco, CA 94016" +168925,AA Batteries (4-pack),2,3.84,02/07/19 12:49,"111 Cedar St, San Francisco, CA 94016" +168926,Wired Headphones,2,11.99,02/23/19 17:50,"601 Wilson St, Boston, MA 02215" +168927,AAA Batteries (4-pack),1,2.99,02/22/19 06:29,"80 Madison St, San Francisco, CA 94016" +168928,AAA Batteries (4-pack),2,2.99,02/10/19 21:30,"907 Lakeview St, Boston, MA 02215" +168929,AA Batteries (4-pack),1,3.84,02/09/19 23:30,"799 Walnut St, Seattle, WA 98101" +168930,USB-C Charging Cable,2,11.95,02/09/19 12:13,"183 10th St, Atlanta, GA 30301" +168931,AAA Batteries (4-pack),1,2.99,02/10/19 14:50,"799 Highland St, Austin, TX 73301" +168932,AAA Batteries (4-pack),1,2.99,03/01/19 00:42,"970 Lake St, San Francisco, CA 94016" +168933,Wired Headphones,1,11.99,02/22/19 14:21,"973 Hill St, Dallas, TX 75001" +168934,AAA Batteries (4-pack),1,2.99,02/12/19 12:12,"41 Walnut St, Austin, TX 73301" +168935,Lightning Charging Cable,1,14.95,02/22/19 19:56,"354 South St, San Francisco, CA 94016" +168936,20in Monitor,1,109.99,02/27/19 18:50,"848 Cedar St, San Francisco, CA 94016" +168937,Macbook Pro Laptop,1,1700,02/07/19 04:41,"793 14th St, Portland, OR 97035" +168938,Wired Headphones,1,11.99,02/03/19 20:06,"538 Center St, Seattle, WA 98101" +168939,USB-C Charging Cable,1,11.95,02/13/19 21:24,"690 5th St, Los Angeles, CA 90001" +168940,Wired Headphones,1,11.99,02/21/19 05:45,"652 Lincoln St, San Francisco, CA 94016" +168941,Wired Headphones,1,11.99,02/26/19 13:10,"783 1st St, New York City, NY 10001" +168942,Flatscreen TV,1,300,02/12/19 11:13,"413 Wilson St, Austin, TX 73301" +168943,Lightning Charging Cable,1,14.95,02/16/19 20:26,"527 Pine St, Seattle, WA 98101" +168944,Google Phone,1,600,02/07/19 11:00,"361 11th St, Dallas, TX 75001" +168945,Bose SoundSport Headphones,1,99.99,02/07/19 21:30,"666 14th St, Dallas, TX 75001" +168946,Lightning Charging Cable,1,14.95,02/10/19 15:45,"299 Johnson St, Seattle, WA 98101" +168947,LG Washing Machine,1,600.0,02/13/19 13:02,"505 Johnson St, Seattle, WA 98101" +168948,iPhone,1,700,02/18/19 19:00,"116 8th St, Atlanta, GA 30301" +168949,20in Monitor,1,109.99,02/23/19 21:17,"76 Lakeview St, New York City, NY 10001" +,,,,, +168950,20in Monitor,1,109.99,02/24/19 08:18,"341 Spruce St, Los Angeles, CA 90001" +168951,Macbook Pro Laptop,1,1700,02/27/19 02:46,"553 Church St, New York City, NY 10001" +168952,USB-C Charging Cable,1,11.95,02/22/19 20:45,"843 Sunset St, San Francisco, CA 94016" +168953,LG Dryer,1,600.0,02/22/19 17:38,"528 8th St, San Francisco, CA 94016" +168954,USB-C Charging Cable,1,11.95,02/15/19 18:41,"27 Madison St, San Francisco, CA 94016" +168955,Macbook Pro Laptop,1,1700,02/28/19 16:49,"348 River St, Boston, MA 02215" +168956,Wired Headphones,1,11.99,02/03/19 18:02,"485 Willow St, San Francisco, CA 94016" +168957,Vareebadd Phone,1,400,02/15/19 14:24,"126 South St, San Francisco, CA 94016" +168957,USB-C Charging Cable,1,11.95,02/15/19 14:24,"126 South St, San Francisco, CA 94016" +168958,Google Phone,1,600,02/04/19 16:44,"24 West St, Portland, OR 97035" +168958,Wired Headphones,1,11.99,02/04/19 16:44,"24 West St, Portland, OR 97035" +168959,iPhone,1,700,02/13/19 08:53,"842 4th St, Atlanta, GA 30301" +168959,Lightning Charging Cable,1,14.95,02/13/19 08:53,"842 4th St, Atlanta, GA 30301" +168960,AA Batteries (4-pack),1,3.84,02/20/19 11:27,"397 Johnson St, Atlanta, GA 30301" +168961,Bose SoundSport Headphones,1,99.99,02/03/19 09:55,"298 River St, San Francisco, CA 94016" +168962,Vareebadd Phone,1,400,02/01/19 13:04,"100 Pine St, Seattle, WA 98101" +168963,Macbook Pro Laptop,1,1700,02/10/19 13:20,"288 Johnson St, San Francisco, CA 94016" +168964,34in Ultrawide Monitor,1,379.99,02/08/19 12:22,"470 12th St, Los Angeles, CA 90001" +168965,iPhone,1,700,02/06/19 07:27,"130 Forest St, Los Angeles, CA 90001" +168966,iPhone,1,700,02/24/19 14:36,"545 2nd St, San Francisco, CA 94016" +168967,Lightning Charging Cable,1,14.95,02/28/19 15:20,"232 Lincoln St, Los Angeles, CA 90001" +168968,Bose SoundSport Headphones,1,99.99,02/13/19 14:01,"436 Wilson St, Los Angeles, CA 90001" +168969,AA Batteries (4-pack),3,3.84,02/18/19 08:50,"849 Cherry St, New York City, NY 10001" +168970,AAA Batteries (4-pack),1,2.99,02/09/19 01:40,"640 14th St, San Francisco, CA 94016" +168970,Lightning Charging Cable,1,14.95,02/09/19 01:40,"640 14th St, San Francisco, CA 94016" +168971,iPhone,1,700,02/21/19 16:34,"689 Spruce St, San Francisco, CA 94016" +168972,Lightning Charging Cable,1,14.95,02/10/19 18:48,"726 7th St, San Francisco, CA 94016" +168973,Bose SoundSport Headphones,1,99.99,02/22/19 17:03,"657 10th St, Portland, OR 97035" +168974,Apple Airpods Headphones,1,150,02/18/19 22:02,"333 11th St, New York City, NY 10001" +168975,34in Ultrawide Monitor,1,379.99,02/23/19 22:33,"577 Washington St, Atlanta, GA 30301" +168976,AA Batteries (4-pack),1,3.84,02/02/19 21:34,"532 Dogwood St, New York City, NY 10001" +168977,Bose SoundSport Headphones,1,99.99,02/22/19 12:17,"127 14th St, San Francisco, CA 94016" +168978,USB-C Charging Cable,1,11.95,02/14/19 06:47,"982 14th St, San Francisco, CA 94016" +168979,Bose SoundSport Headphones,1,99.99,02/17/19 16:11,"864 Lakeview St, Portland, OR 97035" +168980,AA Batteries (4-pack),1,3.84,02/12/19 12:31,"497 Spruce St, San Francisco, CA 94016" +168981,Lightning Charging Cable,1,14.95,02/25/19 12:41,"875 Madison St, Boston, MA 02215" +168982,Apple Airpods Headphones,1,150,02/28/19 14:27,"77 River St, Boston, MA 02215" +168983,AAA Batteries (4-pack),1,2.99,02/26/19 05:48,"813 South St, Portland, ME 04101" +168984,USB-C Charging Cable,1,11.95,02/20/19 11:50,"783 Lincoln St, Boston, MA 02215" +168985,Lightning Charging Cable,1,14.95,02/10/19 13:00,"702 4th St, Austin, TX 73301" +168985,AA Batteries (4-pack),2,3.84,02/10/19 13:00,"702 4th St, Austin, TX 73301" +168986,27in FHD Monitor,1,149.99,02/13/19 23:54,"904 4th St, New York City, NY 10001" +168987,Lightning Charging Cable,1,14.95,02/23/19 14:00,"383 Jackson St, Los Angeles, CA 90001" +168988,Apple Airpods Headphones,1,150,02/07/19 21:01,"818 Jackson St, San Francisco, CA 94016" +168989,Apple Airpods Headphones,1,150,02/14/19 17:51,"165 Cedar St, Dallas, TX 75001" +168990,Apple Airpods Headphones,1,150,02/04/19 11:29,"315 Ridge St, Atlanta, GA 30301" +168991,USB-C Charging Cable,1,11.95,02/18/19 09:53,"740 11th St, Boston, MA 02215" +168992,USB-C Charging Cable,1,11.95,02/02/19 10:04,"97 Center St, New York City, NY 10001" +168993,AA Batteries (4-pack),1,3.84,02/17/19 14:01,"683 Park St, Dallas, TX 75001" +168994,AAA Batteries (4-pack),1,2.99,02/03/19 10:39,"585 Elm St, San Francisco, CA 94016" +168995,Bose SoundSport Headphones,1,99.99,02/25/19 11:04,"751 2nd St, Los Angeles, CA 90001" +168996,Wired Headphones,1,11.99,02/02/19 18:56,"372 Maple St, Los Angeles, CA 90001" +168997,USB-C Charging Cable,2,11.95,02/17/19 16:57,"700 1st St, Los Angeles, CA 90001" +168998,AAA Batteries (4-pack),2,2.99,02/08/19 18:21,"101 Walnut St, Boston, MA 02215" +168999,Wired Headphones,1,11.99,02/12/19 13:02,"44 Lake St, Austin, TX 73301" +169000,Lightning Charging Cable,1,14.95,02/01/19 19:26,"430 Jefferson St, Los Angeles, CA 90001" +169001,iPhone,1,700,02/12/19 20:41,"513 Meadow St, San Francisco, CA 94016" +169001,Lightning Charging Cable,1,14.95,02/12/19 20:41,"513 Meadow St, San Francisco, CA 94016" +169001,Wired Headphones,1,11.99,02/12/19 20:41,"513 Meadow St, San Francisco, CA 94016" +169002,27in FHD Monitor,1,149.99,02/15/19 12:57,"683 Cherry St, Boston, MA 02215" +169003,Lightning Charging Cable,2,14.95,02/05/19 10:56,"2 Park St, New York City, NY 10001" +169004,USB-C Charging Cable,1,11.95,02/01/19 13:33,"600 Lakeview St, Boston, MA 02215" +169005,AAA Batteries (4-pack),1,2.99,02/10/19 20:06,"41 Willow St, Atlanta, GA 30301" +169006,Lightning Charging Cable,1,14.95,02/16/19 18:10,"793 Jackson St, Portland, OR 97035" +169007,Apple Airpods Headphones,1,150,02/27/19 17:50,"652 Cherry St, Los Angeles, CA 90001" +169008,Macbook Pro Laptop,1,1700,02/23/19 15:13,"111 Johnson St, Austin, TX 73301" +169009,Lightning Charging Cable,1,14.95,02/20/19 09:18,"986 1st St, San Francisco, CA 94016" +169010,Lightning Charging Cable,1,14.95,02/14/19 18:20,"729 North St, Boston, MA 02215" +169011,USB-C Charging Cable,1,11.95,02/26/19 05:06,"275 Main St, San Francisco, CA 94016" +169012,AAA Batteries (4-pack),2,2.99,02/21/19 15:29,"514 Lincoln St, New York City, NY 10001" +169013,USB-C Charging Cable,1,11.95,02/16/19 12:57,"940 Maple St, San Francisco, CA 94016" +169014,AA Batteries (4-pack),4,3.84,02/10/19 18:39,"845 14th St, Dallas, TX 75001" +169015,AA Batteries (4-pack),1,3.84,02/28/19 10:09,"822 12th St, San Francisco, CA 94016" +169016,iPhone,1,700,02/21/19 10:00,"418 Maple St, New York City, NY 10001" +169017,Bose SoundSport Headphones,1,99.99,02/28/19 10:37,"427 1st St, Atlanta, GA 30301" +169018,Vareebadd Phone,1,400,02/04/19 10:05,"621 Adams St, New York City, NY 10001" +169019,Google Phone,1,600,02/09/19 12:15,"165 Elm St, Austin, TX 73301" +169020,AAA Batteries (4-pack),1,2.99,02/19/19 20:16,"586 Hickory St, New York City, NY 10001" +169021,USB-C Charging Cable,1,11.95,02/04/19 10:25,"613 10th St, New York City, NY 10001" +169022,27in FHD Monitor,1,149.99,02/22/19 17:30,"57 Hill St, Los Angeles, CA 90001" +169023,iPhone,1,700,02/22/19 18:46,"364 Wilson St, Los Angeles, CA 90001" +169023,Wired Headphones,1,11.99,02/22/19 18:46,"364 Wilson St, Los Angeles, CA 90001" +169024,AA Batteries (4-pack),1,3.84,02/22/19 19:01,"675 Jefferson St, New York City, NY 10001" +169025,Lightning Charging Cable,1,14.95,02/13/19 10:15,"530 Lake St, Boston, MA 02215" +169026,AA Batteries (4-pack),1,3.84,02/12/19 16:37,"34 9th St, San Francisco, CA 94016" +169027,AAA Batteries (4-pack),1,2.99,02/04/19 13:05,"389 South St, Boston, MA 02215" +169028,Bose SoundSport Headphones,1,99.99,02/23/19 19:20,"933 4th St, Boston, MA 02215" +169029,Lightning Charging Cable,1,14.95,02/23/19 22:42,"565 Meadow St, Los Angeles, CA 90001" +169030,ThinkPad Laptop,1,999.99,02/28/19 17:39,"470 Madison St, Los Angeles, CA 90001" +169031,Wired Headphones,1,11.99,02/10/19 17:32,"624 12th St, Seattle, WA 98101" +169032,ThinkPad Laptop,1,999.99,02/08/19 18:06,"816 5th St, Atlanta, GA 30301" +169033,ThinkPad Laptop,1,999.99,02/26/19 13:06,"841 Dogwood St, Los Angeles, CA 90001" +169034,USB-C Charging Cable,1,11.95,02/25/19 23:38,"392 Spruce St, Boston, MA 02215" +169035,34in Ultrawide Monitor,1,379.99,02/18/19 11:44,"878 Meadow St, Portland, OR 97035" +169036,Bose SoundSport Headphones,1,99.99,02/07/19 02:46,"491 Lake St, New York City, NY 10001" +169037,Macbook Pro Laptop,1,1700,02/27/19 17:55,"607 13th St, Boston, MA 02215" +169038,Bose SoundSport Headphones,1,99.99,02/10/19 11:45,"466 Dogwood St, San Francisco, CA 94016" +169039,Vareebadd Phone,1,400,02/26/19 10:46,"480 South St, Seattle, WA 98101" +169039,Wired Headphones,1,11.99,02/26/19 10:46,"480 South St, Seattle, WA 98101" +169040,Apple Airpods Headphones,1,150,02/22/19 23:15,"417 13th St, New York City, NY 10001" +169041,USB-C Charging Cable,1,11.95,02/18/19 11:38,"98 6th St, Seattle, WA 98101" +169042,Wired Headphones,1,11.99,02/25/19 17:58,"963 Jefferson St, Austin, TX 73301" +169043,Bose SoundSport Headphones,1,99.99,02/24/19 14:46,"741 Hickory St, San Francisco, CA 94016" +169044,Lightning Charging Cable,1,14.95,02/08/19 15:41,"472 North St, New York City, NY 10001" +169044,AAA Batteries (4-pack),1,2.99,02/08/19 15:41,"472 North St, New York City, NY 10001" +169045,27in FHD Monitor,1,149.99,02/06/19 08:40,"420 4th St, New York City, NY 10001" +169046,Lightning Charging Cable,1,14.95,02/01/19 14:20,"257 Sunset St, Los Angeles, CA 90001" +169047,AAA Batteries (4-pack),1,2.99,02/06/19 11:35,"695 Elm St, Los Angeles, CA 90001" +169048,Lightning Charging Cable,1,14.95,02/18/19 19:11,"983 Forest St, Portland, OR 97035" +169049,AA Batteries (4-pack),1,3.84,02/08/19 16:20,"557 Hickory St, Boston, MA 02215" +169050,AA Batteries (4-pack),2,3.84,02/09/19 12:59,"381 Pine St, Los Angeles, CA 90001" +169051,AA Batteries (4-pack),1,3.84,02/17/19 14:10,"766 11th St, Los Angeles, CA 90001" +169052,20in Monitor,1,109.99,02/13/19 16:52,"535 Willow St, Los Angeles, CA 90001" +169053,Lightning Charging Cable,1,14.95,02/27/19 16:31,"410 Chestnut St, Boston, MA 02215" +169054,AAA Batteries (4-pack),1,2.99,02/03/19 00:42,"480 Lincoln St, Atlanta, GA 30301" +169055,Wired Headphones,1,11.99,02/13/19 10:44,"174 13th St, Dallas, TX 75001" +169056,USB-C Charging Cable,1,11.95,02/26/19 21:17,"821 1st St, Austin, TX 73301" +169057,USB-C Charging Cable,1,11.95,02/15/19 11:33,"369 Lakeview St, New York City, NY 10001" +169058,AAA Batteries (4-pack),2,2.99,02/25/19 12:17,"346 Church St, Boston, MA 02215" +169059,Lightning Charging Cable,1,14.95,02/17/19 11:23,"344 Hickory St, San Francisco, CA 94016" +169060,Lightning Charging Cable,1,14.95,02/14/19 12:38,"242 Jefferson St, New York City, NY 10001" +169061,Macbook Pro Laptop,1,1700,02/13/19 00:32,"364 7th St, Dallas, TX 75001" +169062,Apple Airpods Headphones,1,150,02/07/19 22:34,"861 Hickory St, San Francisco, CA 94016" +169063,Flatscreen TV,1,300,02/28/19 13:55,"725 Willow St, Dallas, TX 75001" +169064,AAA Batteries (4-pack),1,2.99,02/10/19 14:18,"915 Main St, Boston, MA 02215" +169065,Macbook Pro Laptop,1,1700,02/15/19 11:37,"685 Johnson St, Seattle, WA 98101" +169066,AAA Batteries (4-pack),1,2.99,02/25/19 13:25,"794 1st St, San Francisco, CA 94016" +169067,Lightning Charging Cable,1,14.95,02/04/19 18:19,"621 Jackson St, Los Angeles, CA 90001" +169068,AAA Batteries (4-pack),2,2.99,02/20/19 09:39,"197 9th St, Los Angeles, CA 90001" +169068,Bose SoundSport Headphones,1,99.99,02/20/19 09:39,"197 9th St, Los Angeles, CA 90001" +169069,AA Batteries (4-pack),1,3.84,02/17/19 17:49,"142 Highland St, San Francisco, CA 94016" +169070,Lightning Charging Cable,1,14.95,02/18/19 19:37,"202 South St, Dallas, TX 75001" +169071,27in FHD Monitor,1,149.99,02/21/19 18:42,"362 Sunset St, Los Angeles, CA 90001" +169072,ThinkPad Laptop,1,999.99,02/13/19 14:36,"797 Lake St, Boston, MA 02215" +169073,AA Batteries (4-pack),2,3.84,02/17/19 16:39,"309 2nd St, Atlanta, GA 30301" +169074,Wired Headphones,1,11.99,02/13/19 04:48,"73 12th St, Atlanta, GA 30301" +169075,AAA Batteries (4-pack),2,2.99,02/11/19 21:46,"323 Willow St, San Francisco, CA 94016" +169076,Wired Headphones,1,11.99,02/01/19 16:06,"447 Hickory St, Los Angeles, CA 90001" +169077,AA Batteries (4-pack),1,3.84,02/24/19 14:29,"19 Johnson St, San Francisco, CA 94016" +169078,USB-C Charging Cable,1,11.95,02/04/19 19:50,"928 Church St, New York City, NY 10001" +169079,Google Phone,1,600,02/03/19 21:35,"69 13th St, Dallas, TX 75001" +169080,Wired Headphones,1,11.99,02/20/19 08:21,"946 Willow St, Los Angeles, CA 90001" +169081,Apple Airpods Headphones,1,150,02/25/19 12:43,"20 Forest St, San Francisco, CA 94016" +169082,AAA Batteries (4-pack),2,2.99,02/14/19 12:12,"941 Highland St, Boston, MA 02215" +169083,Macbook Pro Laptop,1,1700,02/27/19 13:16,"299 Cedar St, Atlanta, GA 30301" +169084,Bose SoundSport Headphones,2,99.99,02/12/19 15:54,"215 1st St, Los Angeles, CA 90001" +169085,AA Batteries (4-pack),1,3.84,02/17/19 12:39,"731 Hill St, Austin, TX 73301" +169086,20in Monitor,1,109.99,02/19/19 11:38,"402 Church St, Atlanta, GA 30301" +169087,Lightning Charging Cable,1,14.95,02/21/19 10:18,"346 4th St, Seattle, WA 98101" +169088,Lightning Charging Cable,1,14.95,02/23/19 14:12,"309 Ridge St, Boston, MA 02215" +169089,Bose SoundSport Headphones,1,99.99,02/19/19 15:06,"835 Highland St, New York City, NY 10001" +169090,AA Batteries (4-pack),1,3.84,02/21/19 21:30,"170 2nd St, Atlanta, GA 30301" +169091,Wired Headphones,1,11.99,02/27/19 12:17,"1 River St, Los Angeles, CA 90001" +169092,Bose SoundSport Headphones,1,99.99,02/24/19 22:18,"447 Center St, Los Angeles, CA 90001" +169093,AAA Batteries (4-pack),1,2.99,02/14/19 18:37,"464 2nd St, Seattle, WA 98101" +169094,iPhone,1,700,02/10/19 15:40,"735 Maple St, Portland, ME 04101" +169095,AA Batteries (4-pack),3,3.84,02/16/19 19:35,"541 13th St, Austin, TX 73301" +169096,Apple Airpods Headphones,1,150,02/03/19 10:04,"539 Madison St, San Francisco, CA 94016" +169097,Bose SoundSport Headphones,1,99.99,02/23/19 22:41,"195 Center St, Dallas, TX 75001" +169098,ThinkPad Laptop,1,999.99,02/11/19 17:36,"494 2nd St, Los Angeles, CA 90001" +169099,AA Batteries (4-pack),1,3.84,02/12/19 17:14,"671 14th St, Atlanta, GA 30301" +169100,Wired Headphones,1,11.99,02/25/19 12:52,"654 Cedar St, Portland, OR 97035" +169101,USB-C Charging Cable,2,11.95,02/22/19 12:14,"704 Madison St, Atlanta, GA 30301" +169102,ThinkPad Laptop,1,999.99,02/04/19 10:30,"232 4th St, Los Angeles, CA 90001" +169103,Lightning Charging Cable,1,14.95,02/27/19 23:29,"833 12th St, San Francisco, CA 94016" +169104,Macbook Pro Laptop,1,1700,02/21/19 07:19,"501 River St, Seattle, WA 98101" +169105,34in Ultrawide Monitor,1,379.99,02/23/19 18:11,"373 7th St, Atlanta, GA 30301" +169106,AA Batteries (4-pack),3,3.84,02/24/19 06:46,"678 Pine St, Los Angeles, CA 90001" +169107,AA Batteries (4-pack),1,3.84,02/12/19 16:38,"795 5th St, Portland, OR 97035" +169108,ThinkPad Laptop,1,999.99,02/26/19 09:46,"634 Ridge St, Boston, MA 02215" +169109,Apple Airpods Headphones,1,150,02/06/19 21:39,"863 Dogwood St, Boston, MA 02215" +169110,Flatscreen TV,1,300,02/10/19 14:46,"902 Church St, New York City, NY 10001" +169111,iPhone,1,700,02/09/19 14:40,"817 Jackson St, Austin, TX 73301" +169111,Lightning Charging Cable,1,14.95,02/09/19 14:40,"817 Jackson St, Austin, TX 73301" +169111,Wired Headphones,1,11.99,02/09/19 14:40,"817 Jackson St, Austin, TX 73301" +169112,27in FHD Monitor,1,149.99,02/15/19 19:45,"981 Wilson St, San Francisco, CA 94016" +169113,AAA Batteries (4-pack),2,2.99,02/04/19 15:31,"943 Church St, Los Angeles, CA 90001" +169114,27in FHD Monitor,1,149.99,02/12/19 16:16,"815 Wilson St, San Francisco, CA 94016" +169115,Flatscreen TV,1,300,02/08/19 11:46,"688 North St, Seattle, WA 98101" +169116,Flatscreen TV,1,300,02/20/19 01:28,"678 Jackson St, Dallas, TX 75001" +169117,Lightning Charging Cable,1,14.95,02/03/19 12:21,"283 Washington St, San Francisco, CA 94016" +169118,USB-C Charging Cable,1,11.95,02/23/19 22:20,"551 9th St, Atlanta, GA 30301" +169119,AAA Batteries (4-pack),1,2.99,02/17/19 23:39,"622 Forest St, Los Angeles, CA 90001" +169120,Apple Airpods Headphones,1,150,02/07/19 08:57,"476 9th St, San Francisco, CA 94016" +169121,USB-C Charging Cable,1,11.95,02/12/19 14:39,"206 14th St, San Francisco, CA 94016" +169122,27in FHD Monitor,1,149.99,02/27/19 22:28,"794 Madison St, San Francisco, CA 94016" +169123,iPhone,1,700,02/13/19 16:25,"379 Wilson St, Los Angeles, CA 90001" +169124,USB-C Charging Cable,2,11.95,02/03/19 09:37,"732 14th St, Portland, OR 97035" +169125,Macbook Pro Laptop,1,1700,02/07/19 12:14,"333 Jefferson St, Los Angeles, CA 90001" +169126,27in FHD Monitor,1,149.99,02/18/19 00:26,"962 9th St, Portland, OR 97035" +169127,20in Monitor,1,109.99,02/04/19 21:48,"582 12th St, Los Angeles, CA 90001" +169128,AAA Batteries (4-pack),1,2.99,02/24/19 06:42,"997 River St, Boston, MA 02215" +169129,Apple Airpods Headphones,1,150,02/28/19 13:56,"533 5th St, Austin, TX 73301" +169130,iPhone,1,700,02/25/19 17:01,"300 Hickory St, San Francisco, CA 94016" +169131,Wired Headphones,1,11.99,02/07/19 12:28,"388 Elm St, Seattle, WA 98101" +169132,27in FHD Monitor,1,149.99,02/21/19 14:29,"613 South St, San Francisco, CA 94016" +169132,Wired Headphones,1,11.99,02/21/19 14:29,"613 South St, San Francisco, CA 94016" +169133,USB-C Charging Cable,1,11.95,02/12/19 07:43,"301 10th St, Dallas, TX 75001" +169134,USB-C Charging Cable,1,11.95,02/02/19 18:38,"153 Lake St, San Francisco, CA 94016" +169135,Apple Airpods Headphones,1,150,02/20/19 16:13,"889 6th St, Atlanta, GA 30301" +169136,iPhone,1,700,02/12/19 11:06,"586 South St, Boston, MA 02215" +169137,USB-C Charging Cable,1,11.95,02/16/19 17:52,"337 8th St, New York City, NY 10001" +169138,Bose SoundSport Headphones,1,99.99,02/22/19 06:46,"706 Church St, San Francisco, CA 94016" +169139,Lightning Charging Cable,1,14.95,02/26/19 08:36,"441 Cedar St, Boston, MA 02215" +169140,34in Ultrawide Monitor,1,379.99,02/21/19 08:14,"922 Adams St, San Francisco, CA 94016" +169141,Wired Headphones,1,11.99,02/08/19 18:34,"345 Chestnut St, Boston, MA 02215" +169142,USB-C Charging Cable,1,11.95,02/12/19 17:51,"274 Cherry St, Boston, MA 02215" +169143,AA Batteries (4-pack),1,3.84,02/04/19 20:59,"705 West St, Los Angeles, CA 90001" +169144,AA Batteries (4-pack),2,3.84,02/12/19 14:06,"756 Hill St, New York City, NY 10001" +169145,AA Batteries (4-pack),3,3.84,02/08/19 10:03,"695 Lincoln St, San Francisco, CA 94016" +169146,AA Batteries (4-pack),2,3.84,02/23/19 18:09,"962 Ridge St, Boston, MA 02215" +169147,Lightning Charging Cable,1,14.95,02/13/19 00:15,"594 Lakeview St, San Francisco, CA 94016" +169148,AA Batteries (4-pack),1,3.84,02/27/19 17:17,"171 Highland St, San Francisco, CA 94016" +169149,Lightning Charging Cable,1,14.95,02/14/19 14:37,"711 Dogwood St, Dallas, TX 75001" +169150,AA Batteries (4-pack),1,3.84,02/05/19 09:33,"863 6th St, Los Angeles, CA 90001" +169151,AAA Batteries (4-pack),1,2.99,02/23/19 07:42,"691 Wilson St, Los Angeles, CA 90001" +169152,Apple Airpods Headphones,1,150,02/19/19 18:19,"645 13th St, Portland, ME 04101" +169153,USB-C Charging Cable,1,11.95,02/21/19 11:57,"705 Hickory St, New York City, NY 10001" +169154,Google Phone,1,600,02/10/19 00:49,"680 8th St, Dallas, TX 75001" +169155,Macbook Pro Laptop,1,1700,02/20/19 10:49,"680 North St, San Francisco, CA 94016" +169156,Lightning Charging Cable,1,14.95,02/19/19 10:42,"921 Forest St, Portland, ME 04101" +169157,iPhone,1,700,02/09/19 09:38,"201 River St, Austin, TX 73301" +169158,USB-C Charging Cable,2,11.95,02/20/19 01:25,"811 Madison St, San Francisco, CA 94016" +169159,Lightning Charging Cable,1,14.95,02/01/19 18:11,"920 Jackson St, San Francisco, CA 94016" +169160,27in 4K Gaming Monitor,1,389.99,02/15/19 13:58,"847 Ridge St, Austin, TX 73301" +169161,AA Batteries (4-pack),1,3.84,02/05/19 11:56,"918 Meadow St, San Francisco, CA 94016" +169162,USB-C Charging Cable,1,11.95,02/14/19 11:57,"696 Pine St, Boston, MA 02215" +169163,iPhone,1,700,02/12/19 14:36,"844 11th St, Atlanta, GA 30301" +169164,AA Batteries (4-pack),1,3.84,02/26/19 11:22,"809 Johnson St, New York City, NY 10001" +169165,AAA Batteries (4-pack),5,2.99,02/18/19 11:19,"261 Cherry St, Boston, MA 02215" +169166,34in Ultrawide Monitor,1,379.99,02/15/19 19:11,"283 14th St, Austin, TX 73301" +169167,Lightning Charging Cable,1,14.95,02/21/19 08:54,"994 Johnson St, Seattle, WA 98101" +169168,Apple Airpods Headphones,1,150,02/18/19 14:51,"476 Washington St, New York City, NY 10001" +169169,Apple Airpods Headphones,1,150,02/02/19 15:08,"547 Ridge St, Portland, OR 97035" +169170,Bose SoundSport Headphones,1,99.99,02/02/19 20:35,"160 13th St, Dallas, TX 75001" +169171,Bose SoundSport Headphones,1,99.99,02/08/19 07:35,"156 6th St, Seattle, WA 98101" +169172,AAA Batteries (4-pack),1,2.99,02/05/19 12:36,"516 Jackson St, New York City, NY 10001" +169173,AA Batteries (4-pack),1,3.84,02/18/19 22:41,"716 Cedar St, Austin, TX 73301" +169174,iPhone,1,700,02/26/19 17:29,"315 Ridge St, San Francisco, CA 94016" +169175,AA Batteries (4-pack),1,3.84,02/23/19 11:50,"977 Center St, Dallas, TX 75001" +169176,Wired Headphones,1,11.99,02/22/19 11:24,"692 Main St, Dallas, TX 75001" +169177,iPhone,1,700,02/01/19 09:06,"608 8th St, Atlanta, GA 30301" +169178,AA Batteries (4-pack),1,3.84,02/08/19 23:23,"772 Maple St, San Francisco, CA 94016" +169179,iPhone,1,700,02/01/19 07:03,"755 Jefferson St, San Francisco, CA 94016" +169180,20in Monitor,1,109.99,02/19/19 15:12,"190 Maple St, San Francisco, CA 94016" +169181,USB-C Charging Cable,1,11.95,02/13/19 12:07,"236 14th St, New York City, NY 10001" +169182,Lightning Charging Cable,2,14.95,02/05/19 11:45,"949 North St, Dallas, TX 75001" +169183,Wired Headphones,1,11.99,02/26/19 09:12,"405 13th St, Los Angeles, CA 90001" +169184,27in FHD Monitor,1,149.99,02/02/19 17:37,"698 Pine St, Atlanta, GA 30301" +169185,USB-C Charging Cable,1,11.95,02/28/19 09:37,"524 2nd St, San Francisco, CA 94016" +169186,Wired Headphones,1,11.99,02/12/19 07:56,"876 Dogwood St, Atlanta, GA 30301" +169187,27in 4K Gaming Monitor,1,389.99,02/17/19 10:28,"530 Lincoln St, Los Angeles, CA 90001" +169188,Flatscreen TV,1,300,02/25/19 06:38,"37 Ridge St, Portland, OR 97035" +169189,27in 4K Gaming Monitor,1,389.99,02/21/19 19:58,"144 Highland St, San Francisco, CA 94016" +169190,Bose SoundSport Headphones,1,99.99,02/17/19 15:03,"167 River St, Los Angeles, CA 90001" +169191,USB-C Charging Cable,1,11.95,02/27/19 14:20,"900 10th St, San Francisco, CA 94016" +169192,34in Ultrawide Monitor,1,379.99,02/10/19 23:33,"458 Hill St, Los Angeles, CA 90001" +169193,AAA Batteries (4-pack),1,2.99,02/04/19 14:11,"727 South St, New York City, NY 10001" +169194,AAA Batteries (4-pack),1,2.99,02/06/19 09:51,"835 Church St, Atlanta, GA 30301" +169195,Apple Airpods Headphones,1,150,02/12/19 12:01,"80 6th St, Dallas, TX 75001" +169196,AAA Batteries (4-pack),1,2.99,02/10/19 16:53,"347 River St, Boston, MA 02215" +169197,27in 4K Gaming Monitor,1,389.99,02/06/19 16:06,"709 8th St, San Francisco, CA 94016" +169198,20in Monitor,1,109.99,02/07/19 19:42,"297 Lincoln St, New York City, NY 10001" +169199,USB-C Charging Cable,1,11.95,02/23/19 18:49,"331 Center St, San Francisco, CA 94016" +169200,ThinkPad Laptop,1,999.99,02/06/19 06:31,"327 7th St, San Francisco, CA 94016" +169201,34in Ultrawide Monitor,1,379.99,02/21/19 16:53,"17 Wilson St, Atlanta, GA 30301" +169202,Bose SoundSport Headphones,1,99.99,02/23/19 18:23,"637 Ridge St, San Francisco, CA 94016" +169203,Lightning Charging Cable,1,14.95,02/14/19 18:47,"982 North St, Boston, MA 02215" +169204,Macbook Pro Laptop,1,1700,02/27/19 12:59,"577 Cedar St, Los Angeles, CA 90001" +169205,Apple Airpods Headphones,1,150,02/11/19 12:32,"453 Highland St, New York City, NY 10001" +169206,34in Ultrawide Monitor,1,379.99,02/10/19 02:18,"448 Jackson St, Boston, MA 02215" +169207,AAA Batteries (4-pack),3,2.99,02/15/19 14:08,"643 Washington St, Los Angeles, CA 90001" +169208,27in FHD Monitor,1,149.99,02/02/19 17:49,"372 Elm St, Dallas, TX 75001" +169209,AAA Batteries (4-pack),1,2.99,02/19/19 14:11,"90 Spruce St, San Francisco, CA 94016" +169210,Apple Airpods Headphones,1,150,02/06/19 20:51,"604 Walnut St, Los Angeles, CA 90001" +169211,Bose SoundSport Headphones,1,99.99,02/03/19 19:22,"217 Forest St, San Francisco, CA 94016" +169212,iPhone,1,700,02/19/19 23:18,"666 Madison St, Seattle, WA 98101" +169212,Lightning Charging Cable,1,14.95,02/19/19 23:18,"666 Madison St, Seattle, WA 98101" +169213,Lightning Charging Cable,1,14.95,02/21/19 11:18,"868 Park St, San Francisco, CA 94016" +169214,Google Phone,1,600,02/12/19 14:03,"601 2nd St, Atlanta, GA 30301" +169215,Lightning Charging Cable,1,14.95,02/08/19 18:44,"720 Dogwood St, New York City, NY 10001" +169216,34in Ultrawide Monitor,1,379.99,02/04/19 10:39,"428 Wilson St, Seattle, WA 98101" +169217,Bose SoundSport Headphones,1,99.99,02/18/19 14:01,"866 Center St, Atlanta, GA 30301" +169218,AAA Batteries (4-pack),1,2.99,02/11/19 07:53,"218 Pine St, Los Angeles, CA 90001" +169219,27in FHD Monitor,1,149.99,02/12/19 13:38,"468 Maple St, Los Angeles, CA 90001" +169220,Lightning Charging Cable,1,14.95,02/25/19 18:35,"616 11th St, San Francisco, CA 94016" +169220,ThinkPad Laptop,1,999.99,02/25/19 18:35,"616 11th St, San Francisco, CA 94016" +169221,Wired Headphones,1,11.99,02/07/19 23:08,"587 North St, New York City, NY 10001" +169222,iPhone,1,700,02/08/19 23:34,"451 Maple St, New York City, NY 10001" +169223,USB-C Charging Cable,1,11.95,02/08/19 00:44,"821 11th St, New York City, NY 10001" +169224,34in Ultrawide Monitor,1,379.99,02/19/19 17:19,"407 Highland St, Seattle, WA 98101" +169225,Macbook Pro Laptop,1,1700,02/07/19 09:10,"111 Center St, Los Angeles, CA 90001" +169226,LG Dryer,1,600.0,02/28/19 00:06,"544 9th St, Austin, TX 73301" +169227,LG Washing Machine,1,600.0,02/25/19 18:43,"119 Chestnut St, San Francisco, CA 94016" +169228,Apple Airpods Headphones,1,150,02/02/19 12:05,"612 Maple St, New York City, NY 10001" +169229,AAA Batteries (4-pack),1,2.99,02/27/19 15:17,"734 Ridge St, Seattle, WA 98101" +169230,Bose SoundSport Headphones,1,99.99,02/19/19 21:17,"227 Center St, Los Angeles, CA 90001" +169231,AAA Batteries (4-pack),5,2.99,02/20/19 12:54,"594 Pine St, Los Angeles, CA 90001" +169232,iPhone,1,700,02/02/19 14:49,"495 Madison St, San Francisco, CA 94016" +169233,AAA Batteries (4-pack),1,2.99,02/06/19 17:03,"127 14th St, San Francisco, CA 94016" +169234,Vareebadd Phone,1,400,02/20/19 08:40,"95 Madison St, New York City, NY 10001" +169234,Wired Headphones,1,11.99,02/20/19 08:40,"95 Madison St, New York City, NY 10001" +169235,Wired Headphones,1,11.99,02/10/19 11:06,"548 Meadow St, San Francisco, CA 94016" +169235,Wired Headphones,1,11.99,02/10/19 11:06,"548 Meadow St, San Francisco, CA 94016" +169236,USB-C Charging Cable,1,11.95,02/16/19 23:07,"47 Cherry St, Portland, OR 97035" +169237,Lightning Charging Cable,2,14.95,02/16/19 23:48,"2 Chestnut St, Los Angeles, CA 90001" +169238,USB-C Charging Cable,1,11.95,02/26/19 10:26,"1 13th St, San Francisco, CA 94016" +169239,20in Monitor,1,109.99,02/16/19 20:20,"994 2nd St, Los Angeles, CA 90001" +169240,Lightning Charging Cable,1,14.95,02/19/19 16:28,"732 13th St, San Francisco, CA 94016" +169241,LG Dryer,1,600.0,02/08/19 16:46,"775 Lincoln St, Boston, MA 02215" +169242,27in FHD Monitor,1,149.99,02/22/19 18:57,"806 7th St, Atlanta, GA 30301" +169242,Apple Airpods Headphones,1,150,02/22/19 18:57,"806 7th St, Atlanta, GA 30301" +169243,Vareebadd Phone,1,400,02/20/19 22:19,"406 14th St, New York City, NY 10001" +169244,AA Batteries (4-pack),2,3.84,02/12/19 09:20,"975 Elm St, Los Angeles, CA 90001" +169245,USB-C Charging Cable,1,11.95,02/03/19 19:41,"571 Johnson St, Boston, MA 02215" +169246,Google Phone,1,600,02/07/19 23:43,"52 6th St, New York City, NY 10001" +169247,Lightning Charging Cable,1,14.95,02/06/19 09:07,"159 1st St, Seattle, WA 98101" +169248,Bose SoundSport Headphones,1,99.99,02/20/19 15:31,"900 Spruce St, Boston, MA 02215" +169249,34in Ultrawide Monitor,1,379.99,02/21/19 20:26,"32 Wilson St, Los Angeles, CA 90001" +169250,Lightning Charging Cable,1,14.95,02/28/19 11:50,"956 Hickory St, Austin, TX 73301" +169251,AA Batteries (4-pack),3,3.84,02/17/19 12:14,"496 4th St, Atlanta, GA 30301" +169252,AAA Batteries (4-pack),5,2.99,02/03/19 10:53,"362 Spruce St, New York City, NY 10001" +169253,Apple Airpods Headphones,1,150,02/10/19 12:57,"201 Highland St, Los Angeles, CA 90001" +169254,Vareebadd Phone,1,400,02/21/19 21:07,"801 Highland St, New York City, NY 10001" +169255,AA Batteries (4-pack),1,3.84,02/28/19 19:38,"945 Madison St, Los Angeles, CA 90001" +169256,AAA Batteries (4-pack),1,2.99,02/25/19 20:56,"150 Main St, Dallas, TX 75001" +169257,20in Monitor,1,109.99,02/15/19 13:39,"584 Meadow St, Portland, OR 97035" +169258,AA Batteries (4-pack),1,3.84,02/22/19 08:46,"652 Hill St, Atlanta, GA 30301" +169259,Apple Airpods Headphones,1,150,03/01/19 02:07,"636 9th St, New York City, NY 10001" +169260,Wired Headphones,1,11.99,02/08/19 16:41,"216 Cedar St, Austin, TX 73301" +169261,Bose SoundSport Headphones,1,99.99,02/15/19 21:08,"473 Hickory St, Dallas, TX 75001" +169262,Wired Headphones,1,11.99,02/12/19 19:16,"554 Elm St, San Francisco, CA 94016" +169263,iPhone,1,700,02/15/19 20:24,"991 Washington St, San Francisco, CA 94016" +169264,34in Ultrawide Monitor,1,379.99,02/01/19 12:42,"122 Lake St, San Francisco, CA 94016" +169265,Lightning Charging Cable,1,14.95,02/07/19 11:35,"632 7th St, Portland, OR 97035" +169266,AA Batteries (4-pack),1,3.84,02/24/19 20:59,"399 Johnson St, New York City, NY 10001" +169267,Bose SoundSport Headphones,1,99.99,02/28/19 01:07,"25 Sunset St, San Francisco, CA 94016" +169268,ThinkPad Laptop,1,999.99,02/23/19 13:02,"952 11th St, Los Angeles, CA 90001" +169269,Flatscreen TV,1,300,02/02/19 09:40,"958 Meadow St, Dallas, TX 75001" +169270,Flatscreen TV,1,300,02/15/19 23:57,"856 10th St, Seattle, WA 98101" +169271,27in 4K Gaming Monitor,1,389.99,02/16/19 20:04,"437 Walnut St, Dallas, TX 75001" +169272,Lightning Charging Cable,1,14.95,02/08/19 00:02,"265 Wilson St, Dallas, TX 75001" +169273,AAA Batteries (4-pack),1,2.99,02/02/19 10:43,"546 12th St, San Francisco, CA 94016" +169274,Lightning Charging Cable,1,14.95,02/01/19 20:12,"79 Lake St, Boston, MA 02215" +169275,Apple Airpods Headphones,1,150,02/02/19 18:16,"720 10th St, Dallas, TX 75001" +169275,AAA Batteries (4-pack),4,2.99,02/02/19 18:16,"720 10th St, Dallas, TX 75001" +169276,AAA Batteries (4-pack),2,2.99,02/05/19 13:07,"818 10th St, Austin, TX 73301" +169277,AA Batteries (4-pack),1,3.84,02/15/19 20:10,"952 Hill St, Los Angeles, CA 90001" +169278,27in 4K Gaming Monitor,1,389.99,02/14/19 13:27,"63 Willow St, Boston, MA 02215" +169279,Lightning Charging Cable,1,14.95,02/13/19 19:03,"13 South St, Los Angeles, CA 90001" +169280,34in Ultrawide Monitor,1,379.99,02/24/19 22:24,"455 Johnson St, New York City, NY 10001" +169281,27in 4K Gaming Monitor,1,389.99,02/16/19 09:51,"364 Johnson St, San Francisco, CA 94016" +169282,iPhone,1,700,02/19/19 23:28,"533 Washington St, New York City, NY 10001" +169283,Lightning Charging Cable,1,14.95,02/18/19 19:31,"134 Meadow St, San Francisco, CA 94016" +169284,Wired Headphones,2,11.99,02/26/19 07:59,"633 West St, San Francisco, CA 94016" +169285,AAA Batteries (4-pack),1,2.99,02/17/19 23:55,"246 12th St, Los Angeles, CA 90001" +169286,Lightning Charging Cable,1,14.95,02/25/19 17:35,"800 9th St, San Francisco, CA 94016" +169287,Google Phone,1,600,02/13/19 12:40,"211 Adams St, Boston, MA 02215" +169287,USB-C Charging Cable,1,11.95,02/13/19 12:40,"211 Adams St, Boston, MA 02215" +169288,Apple Airpods Headphones,1,150,02/10/19 07:43,"525 Cherry St, San Francisco, CA 94016" +169289,Bose SoundSport Headphones,1,99.99,02/13/19 15:48,"613 Sunset St, Los Angeles, CA 90001" +169290,AA Batteries (4-pack),1,3.84,02/19/19 20:22,"266 14th St, San Francisco, CA 94016" +169291,AAA Batteries (4-pack),1,2.99,02/03/19 19:53,"828 4th St, San Francisco, CA 94016" +169292,USB-C Charging Cable,1,11.95,02/20/19 21:17,"914 Wilson St, Los Angeles, CA 90001" +169293,Apple Airpods Headphones,1,150,02/19/19 18:49,"497 5th St, Atlanta, GA 30301" +169294,iPhone,1,700,02/09/19 16:41,"676 Chestnut St, Boston, MA 02215" +169295,27in 4K Gaming Monitor,1,389.99,02/06/19 13:13,"144 Lakeview St, Atlanta, GA 30301" +169296,Wired Headphones,1,11.99,02/01/19 14:50,"683 4th St, San Francisco, CA 94016" +169297,ThinkPad Laptop,1,999.99,02/11/19 17:22,"941 Jackson St, New York City, NY 10001" +169298,Vareebadd Phone,1,400,02/18/19 07:32,"749 5th St, Los Angeles, CA 90001" +169299,AAA Batteries (4-pack),1,2.99,02/12/19 21:49,"120 Willow St, San Francisco, CA 94016" +169300,Macbook Pro Laptop,1,1700,02/01/19 17:23,"243 Highland St, Boston, MA 02215" +169301,Lightning Charging Cable,1,14.95,02/12/19 21:09,"577 West St, Austin, TX 73301" +169302,AA Batteries (4-pack),1,3.84,02/04/19 15:39,"169 Walnut St, Dallas, TX 75001" +169303,Apple Airpods Headphones,1,150,02/13/19 19:37,"839 Pine St, Atlanta, GA 30301" +169304,Apple Airpods Headphones,1,150,02/05/19 11:49,"977 Highland St, Los Angeles, CA 90001" +169305,iPhone,1,700,02/13/19 13:23,"40 Adams St, San Francisco, CA 94016" +169305,Wired Headphones,1,11.99,02/13/19 13:23,"40 Adams St, San Francisco, CA 94016" +169306,20in Monitor,1,109.99,02/23/19 19:52,"149 13th St, San Francisco, CA 94016" +169307,Apple Airpods Headphones,1,150,02/28/19 21:54,"706 5th St, Los Angeles, CA 90001" +169308,Wired Headphones,1,11.99,02/16/19 00:38,"175 River St, Seattle, WA 98101" +169309,AA Batteries (4-pack),1,3.84,02/09/19 18:39,"926 1st St, San Francisco, CA 94016" +169310,AA Batteries (4-pack),2,3.84,02/08/19 12:39,"403 Adams St, Portland, OR 97035" +169311,AAA Batteries (4-pack),2,2.99,02/24/19 11:54,"435 5th St, Los Angeles, CA 90001" +169312,Wired Headphones,1,11.99,02/01/19 12:02,"514 West St, San Francisco, CA 94016" +169313,USB-C Charging Cable,1,11.95,02/21/19 14:31,"189 Main St, Seattle, WA 98101" +169314,ThinkPad Laptop,1,999.99,02/01/19 09:08,"35 8th St, Boston, MA 02215" +169315,AA Batteries (4-pack),2,3.84,02/27/19 09:08,"993 Jefferson St, Portland, ME 04101" +169316,USB-C Charging Cable,1,11.95,02/10/19 11:19,"193 14th St, San Francisco, CA 94016" +169317,Wired Headphones,1,11.99,02/20/19 13:25,"319 Meadow St, San Francisco, CA 94016" +169318,Wired Headphones,2,11.99,02/25/19 15:41,"100 2nd St, Seattle, WA 98101" +169319,Lightning Charging Cable,1,14.95,02/15/19 15:01,"353 South St, New York City, NY 10001" +169320,Wired Headphones,2,11.99,02/08/19 16:00,"2 Center St, Atlanta, GA 30301" +169321,AA Batteries (4-pack),1,3.84,02/14/19 16:31,"916 Lakeview St, New York City, NY 10001" +169322,AA Batteries (4-pack),1,3.84,02/14/19 22:36,"882 Jefferson St, Portland, OR 97035" +169323,AAA Batteries (4-pack),2,2.99,02/27/19 07:00,"318 10th St, Dallas, TX 75001" +169324,20in Monitor,1,109.99,02/16/19 10:27,"318 12th St, Atlanta, GA 30301" +169325,AAA Batteries (4-pack),2,2.99,02/02/19 19:57,"682 North St, Austin, TX 73301" +169326,27in 4K Gaming Monitor,1,389.99,02/26/19 23:19,"831 Ridge St, Portland, ME 04101" +169327,27in FHD Monitor,1,149.99,02/21/19 19:19,"549 2nd St, Boston, MA 02215" +169328,27in 4K Gaming Monitor,1,389.99,02/16/19 09:29,"639 Forest St, Portland, OR 97035" +169329,Bose SoundSport Headphones,1,99.99,02/03/19 12:33,"404 6th St, San Francisco, CA 94016" +169330,AA Batteries (4-pack),3,3.84,02/10/19 15:00,"503 14th St, Los Angeles, CA 90001" +169330,Flatscreen TV,1,300,02/10/19 15:00,"503 14th St, Los Angeles, CA 90001" +169331,Wired Headphones,1,11.99,02/28/19 23:54,"234 Main St, Dallas, TX 75001" +169332,Bose SoundSport Headphones,1,99.99,02/21/19 07:29,"724 Forest St, Dallas, TX 75001" +169333,Wired Headphones,1,11.99,02/22/19 15:45,"227 Spruce St, Austin, TX 73301" +169334,Lightning Charging Cable,1,14.95,02/10/19 18:51,"300 Main St, San Francisco, CA 94016" +169335,Lightning Charging Cable,1,14.95,02/16/19 09:57,"841 Hickory St, Atlanta, GA 30301" +169336,Apple Airpods Headphones,1,150,02/03/19 14:16,"797 Lincoln St, Los Angeles, CA 90001" +169337,Lightning Charging Cable,1,14.95,02/28/19 11:13,"740 Willow St, San Francisco, CA 94016" +169338,ThinkPad Laptop,1,999.99,02/22/19 16:34,"703 Highland St, New York City, NY 10001" +169339,Apple Airpods Headphones,1,150,02/28/19 20:55,"197 Cherry St, Boston, MA 02215" +169340,Macbook Pro Laptop,1,1700,02/19/19 14:23,"684 5th St, Los Angeles, CA 90001" +169341,USB-C Charging Cable,1,11.95,02/14/19 18:11,"718 4th St, Seattle, WA 98101" +169342,Wired Headphones,1,11.99,02/12/19 12:54,"317 Park St, San Francisco, CA 94016" +169343,iPhone,1,700,02/28/19 13:58,"761 North St, New York City, NY 10001" +169344,USB-C Charging Cable,1,11.95,02/25/19 11:14,"625 8th St, San Francisco, CA 94016" +169345,USB-C Charging Cable,1,11.95,02/24/19 11:38,"815 River St, Los Angeles, CA 90001" +169346,34in Ultrawide Monitor,1,379.99,02/17/19 23:18,"733 8th St, San Francisco, CA 94016" +169347,AAA Batteries (4-pack),2,2.99,02/05/19 11:14,"627 11th St, San Francisco, CA 94016" +169348,Lightning Charging Cable,1,14.95,02/19/19 11:05,"287 Ridge St, New York City, NY 10001" +169349,Wired Headphones,1,11.99,02/24/19 20:04,"223 Adams St, Seattle, WA 98101" +169350,Wired Headphones,1,11.99,02/01/19 12:56,"55 West St, New York City, NY 10001" +169351,Wired Headphones,1,11.99,02/08/19 13:12,"556 Church St, Los Angeles, CA 90001" +169352,AA Batteries (4-pack),1,3.84,02/17/19 16:02,"18 Lakeview St, Atlanta, GA 30301" +169353,AA Batteries (4-pack),1,3.84,02/19/19 21:58,"173 1st St, New York City, NY 10001" +169354,iPhone,1,700,02/02/19 13:11,"273 Cherry St, New York City, NY 10001" +169355,AAA Batteries (4-pack),4,2.99,02/14/19 05:22,"134 Main St, San Francisco, CA 94016" +169356,Bose SoundSport Headphones,1,99.99,02/03/19 23:28,"482 Wilson St, Los Angeles, CA 90001" +169357,Apple Airpods Headphones,1,150,02/06/19 11:49,"848 Lincoln St, Seattle, WA 98101" +169358,34in Ultrawide Monitor,1,379.99,02/24/19 13:58,"908 Adams St, New York City, NY 10001" +169359,AA Batteries (4-pack),1,3.84,02/06/19 21:30,"650 Lincoln St, San Francisco, CA 94016" +169360,34in Ultrawide Monitor,1,379.99,02/13/19 18:59,"493 Forest St, Seattle, WA 98101" +169361,iPhone,1,700,02/27/19 13:00,"732 4th St, Portland, OR 97035" +169362,Google Phone,1,600,02/27/19 13:12,"73 6th St, Austin, TX 73301" +169363,Flatscreen TV,1,300,02/08/19 19:20,"292 Madison St, San Francisco, CA 94016" +169364,Lightning Charging Cable,1,14.95,02/17/19 16:18,"73 Cedar St, Boston, MA 02215" +169365,AAA Batteries (4-pack),1,2.99,02/21/19 15:00,"108 Lake St, Dallas, TX 75001" +169366,AA Batteries (4-pack),1,3.84,02/15/19 22:43,"688 11th St, San Francisco, CA 94016" +169367,Bose SoundSport Headphones,1,99.99,02/02/19 17:32,"205 Chestnut St, Austin, TX 73301" +169368,USB-C Charging Cable,1,11.95,02/08/19 23:41,"235 South St, Los Angeles, CA 90001" +169369,Lightning Charging Cable,1,14.95,02/12/19 20:16,"975 Adams St, San Francisco, CA 94016" +169370,Lightning Charging Cable,1,14.95,02/09/19 08:41,"366 Church St, Boston, MA 02215" +169371,27in FHD Monitor,1,149.99,02/05/19 17:02,"880 Main St, Dallas, TX 75001" +169372,iPhone,1,700,02/23/19 20:53,"104 Jackson St, Seattle, WA 98101" +169372,Wired Headphones,1,11.99,02/23/19 20:53,"104 Jackson St, Seattle, WA 98101" +169373,34in Ultrawide Monitor,1,379.99,02/27/19 10:59,"937 4th St, Boston, MA 02215" +169374,Wired Headphones,1,11.99,02/23/19 17:00,"900 Elm St, San Francisco, CA 94016" +169375,Apple Airpods Headphones,1,150,02/27/19 19:49,"385 Hill St, Portland, ME 04101" +169376,Apple Airpods Headphones,1,150,02/10/19 12:32,"552 1st St, Atlanta, GA 30301" +169377,USB-C Charging Cable,1,11.95,02/13/19 11:25,"572 Madison St, Seattle, WA 98101" +169378,27in FHD Monitor,1,149.99,02/28/19 21:44,"751 11th St, Los Angeles, CA 90001" +169379,27in FHD Monitor,1,149.99,02/09/19 10:09,"719 Ridge St, Seattle, WA 98101" +169380,AAA Batteries (4-pack),1,2.99,02/25/19 20:06,"162 8th St, Portland, ME 04101" +169381,Wired Headphones,1,11.99,02/01/19 14:16,"364 Park St, New York City, NY 10001" +169382,Apple Airpods Headphones,1,150,02/04/19 10:38,"216 Maple St, San Francisco, CA 94016" +169383,AA Batteries (4-pack),2,3.84,02/08/19 10:10,"918 12th St, Austin, TX 73301" +169384,Lightning Charging Cable,1,14.95,02/07/19 09:46,"539 Church St, San Francisco, CA 94016" +169385,AAA Batteries (4-pack),1,2.99,02/08/19 17:44,"789 8th St, San Francisco, CA 94016" +169386,Lightning Charging Cable,1,14.95,02/12/19 10:12,"664 Maple St, Los Angeles, CA 90001" +169387,AA Batteries (4-pack),1,3.84,02/28/19 19:25,"737 1st St, San Francisco, CA 94016" +169388,AA Batteries (4-pack),1,3.84,02/04/19 18:14,"413 Adams St, Dallas, TX 75001" +169389,AAA Batteries (4-pack),1,2.99,02/14/19 17:50,"427 6th St, Los Angeles, CA 90001" +169390,27in 4K Gaming Monitor,1,389.99,02/21/19 16:35,"396 Spruce St, New York City, NY 10001" +169390,Bose SoundSport Headphones,1,99.99,02/21/19 16:35,"396 Spruce St, New York City, NY 10001" +169391,AA Batteries (4-pack),1,3.84,02/19/19 19:13,"817 2nd St, New York City, NY 10001" +169392,34in Ultrawide Monitor,1,379.99,02/19/19 21:09,"823 Meadow St, Seattle, WA 98101" +169393,27in FHD Monitor,1,149.99,02/10/19 08:06,"793 14th St, San Francisco, CA 94016" +169394,20in Monitor,1,109.99,02/24/19 00:17,"384 Jackson St, Los Angeles, CA 90001" +169395,Apple Airpods Headphones,1,150,02/02/19 12:03,"451 Adams St, Austin, TX 73301" +169396,USB-C Charging Cable,1,11.95,02/04/19 18:07,"730 7th St, New York City, NY 10001" +169397,USB-C Charging Cable,1,11.95,02/25/19 16:22,"606 Jefferson St, Seattle, WA 98101" +169398,Lightning Charging Cable,1,14.95,02/05/19 11:59,"682 Park St, Austin, TX 73301" +169399,Lightning Charging Cable,1,14.95,02/07/19 16:55,"139 12th St, Seattle, WA 98101" +169400,27in FHD Monitor,1,149.99,02/13/19 01:13,"710 5th St, New York City, NY 10001" +169401,AAA Batteries (4-pack),1,2.99,02/11/19 17:04,"53 6th St, Los Angeles, CA 90001" +169402,AA Batteries (4-pack),1,3.84,02/06/19 22:45,"39 1st St, New York City, NY 10001" +169403,AAA Batteries (4-pack),1,2.99,02/28/19 11:52,"980 Jackson St, Austin, TX 73301" +169404,Flatscreen TV,1,300,02/23/19 20:30,"399 Elm St, Seattle, WA 98101" +169405,20in Monitor,1,109.99,02/04/19 16:33,"234 Adams St, Boston, MA 02215" +169406,AA Batteries (4-pack),1,3.84,02/19/19 12:15,"810 11th St, Boston, MA 02215" +169406,Flatscreen TV,1,300,02/19/19 12:15,"810 11th St, Boston, MA 02215" +169407,Apple Airpods Headphones,1,150,02/12/19 18:48,"500 11th St, Dallas, TX 75001" +169408,Lightning Charging Cable,1,14.95,02/24/19 10:27,"596 11th St, New York City, NY 10001" +169409,Bose SoundSport Headphones,1,99.99,02/13/19 15:29,"217 8th St, San Francisco, CA 94016" +169410,AA Batteries (4-pack),1,3.84,02/12/19 21:27,"784 North St, Boston, MA 02215" +169411,AAA Batteries (4-pack),1,2.99,02/15/19 11:47,"866 11th St, Seattle, WA 98101" +169412,AAA Batteries (4-pack),1,2.99,02/23/19 19:51,"805 9th St, Austin, TX 73301" +169413,iPhone,1,700,02/28/19 18:49,"847 10th St, Los Angeles, CA 90001" +169414,27in FHD Monitor,1,149.99,02/05/19 17:41,"235 Lakeview St, Austin, TX 73301" +169415,AA Batteries (4-pack),1,3.84,02/17/19 15:11,"669 Main St, San Francisco, CA 94016" +169416,AA Batteries (4-pack),1,3.84,02/22/19 22:30,"852 11th St, New York City, NY 10001" +169417,Google Phone,1,600,02/19/19 22:01,"300 Forest St, Boston, MA 02215" +169418,USB-C Charging Cable,1,11.95,02/19/19 13:42,"657 1st St, Los Angeles, CA 90001" +169419,Lightning Charging Cable,1,14.95,02/05/19 20:54,"667 Elm St, Boston, MA 02215" +169420,AA Batteries (4-pack),5,3.84,02/14/19 17:40,"302 Maple St, Boston, MA 02215" +169421,Macbook Pro Laptop,1,1700,02/16/19 18:03,"770 Pine St, San Francisco, CA 94016" +169422,Wired Headphones,1,11.99,02/07/19 11:52,"173 5th St, San Francisco, CA 94016" +169423,Google Phone,1,600,02/22/19 11:45,"995 Ridge St, Dallas, TX 75001" +169424,27in FHD Monitor,1,149.99,02/25/19 15:34,"229 Dogwood St, Austin, TX 73301" +169425,34in Ultrawide Monitor,1,379.99,02/12/19 15:04,"949 Hickory St, Seattle, WA 98101" +169426,Bose SoundSport Headphones,1,99.99,02/17/19 23:44,"671 5th St, San Francisco, CA 94016" +169427,Flatscreen TV,1,300,02/26/19 20:07,"19 Ridge St, Atlanta, GA 30301" +169428,34in Ultrawide Monitor,1,379.99,02/17/19 07:50,"919 Maple St, Atlanta, GA 30301" +169429,AAA Batteries (4-pack),1,2.99,02/05/19 20:42,"818 Maple St, Seattle, WA 98101" +169430,Lightning Charging Cable,1,14.95,02/22/19 19:46,"14 1st St, Los Angeles, CA 90001" +169431,27in 4K Gaming Monitor,1,389.99,02/23/19 09:05,"655 Hill St, San Francisco, CA 94016" +169432,Macbook Pro Laptop,1,1700,02/10/19 11:51,"855 South St, Los Angeles, CA 90001" +169433,Macbook Pro Laptop,1,1700,02/11/19 11:11,"616 Church St, Atlanta, GA 30301" +169434,Lightning Charging Cable,2,14.95,02/14/19 14:52,"39 Willow St, Boston, MA 02215" +169435,AA Batteries (4-pack),1,3.84,02/10/19 00:43,"643 Hill St, New York City, NY 10001" +169436,AAA Batteries (4-pack),1,2.99,02/10/19 21:39,"686 7th St, San Francisco, CA 94016" +169437,20in Monitor,1,109.99,02/05/19 19:25,"999 Highland St, Boston, MA 02215" +169438,Wired Headphones,1,11.99,02/05/19 17:04,"210 Pine St, Portland, OR 97035" +169439,Apple Airpods Headphones,1,150,02/07/19 05:33,"398 Main St, San Francisco, CA 94016" +169440,Lightning Charging Cable,2,14.95,02/03/19 20:43,"731 Hickory St, Seattle, WA 98101" +169441,AA Batteries (4-pack),1,3.84,02/23/19 22:02,"225 1st St, Los Angeles, CA 90001" +169442,USB-C Charging Cable,2,11.95,02/14/19 13:36,"568 Willow St, Dallas, TX 75001" +169443,Flatscreen TV,1,300,02/24/19 22:48,"300 5th St, Dallas, TX 75001" +169444,iPhone,1,700,02/05/19 19:08,"810 Meadow St, Dallas, TX 75001" +169445,AA Batteries (4-pack),1,3.84,02/04/19 16:26,"817 Church St, Austin, TX 73301" +169446,Apple Airpods Headphones,1,150,02/06/19 00:35,"852 5th St, Los Angeles, CA 90001" +169447,Lightning Charging Cable,1,14.95,02/27/19 11:03,"336 2nd St, New York City, NY 10001" +169448,20in Monitor,1,109.99,02/12/19 18:05,"534 Spruce St, New York City, NY 10001" +169449,Wired Headphones,2,11.99,02/10/19 10:40,"436 14th St, San Francisco, CA 94016" +169450,Google Phone,1,600,02/26/19 13:11,"748 8th St, Dallas, TX 75001" +169451,USB-C Charging Cable,1,11.95,03/01/19 01:22,"683 Lakeview St, Atlanta, GA 30301" +169452,Lightning Charging Cable,1,14.95,02/09/19 13:13,"447 Cherry St, New York City, NY 10001" +169453,34in Ultrawide Monitor,1,379.99,02/05/19 08:27,"789 Highland St, Seattle, WA 98101" +169454,AA Batteries (4-pack),1,3.84,02/18/19 08:57,"205 South St, Boston, MA 02215" +169455,Apple Airpods Headphones,1,150,02/02/19 22:09,"73 Maple St, San Francisco, CA 94016" +169456,Apple Airpods Headphones,1,150,02/28/19 12:22,"149 Hickory St, San Francisco, CA 94016" +169457,AAA Batteries (4-pack),1,2.99,02/08/19 13:28,"836 River St, Boston, MA 02215" +169458,Lightning Charging Cable,1,14.95,02/11/19 00:45,"664 Lincoln St, San Francisco, CA 94016" +169459,27in FHD Monitor,1,149.99,02/20/19 12:18,"277 12th St, San Francisco, CA 94016" +169460,ThinkPad Laptop,1,999.99,02/11/19 21:37,"399 Elm St, Boston, MA 02215" +169461,AA Batteries (4-pack),1,3.84,02/05/19 15:00,"243 Sunset St, Atlanta, GA 30301" +169462,Macbook Pro Laptop,1,1700,02/12/19 23:11,"817 Meadow St, New York City, NY 10001" +169463,Lightning Charging Cable,1,14.95,02/12/19 11:03,"14 Cedar St, San Francisco, CA 94016" +169464,Google Phone,1,600,02/02/19 10:19,"320 Washington St, Seattle, WA 98101" +169464,USB-C Charging Cable,1,11.95,02/02/19 10:19,"320 Washington St, Seattle, WA 98101" +169465,Bose SoundSport Headphones,1,99.99,02/04/19 21:22,"553 Jackson St, Boston, MA 02215" +169466,USB-C Charging Cable,1,11.95,02/02/19 20:16,"32 Hickory St, Dallas, TX 75001" +169467,Wired Headphones,2,11.99,02/28/19 10:43,"927 Pine St, Atlanta, GA 30301" +169468,USB-C Charging Cable,1,11.95,02/21/19 23:48,"52 West St, Los Angeles, CA 90001" +169469,AA Batteries (4-pack),1,3.84,02/17/19 10:45,"341 Ridge St, Los Angeles, CA 90001" +169470,AAA Batteries (4-pack),1,2.99,02/12/19 09:21,"544 Cherry St, New York City, NY 10001" +169471,Bose SoundSport Headphones,1,99.99,02/24/19 20:14,"28 Dogwood St, Seattle, WA 98101" +169472,Google Phone,1,600,02/18/19 17:20,"418 7th St, New York City, NY 10001" +169473,Wired Headphones,2,11.99,02/27/19 09:48,"739 7th St, Dallas, TX 75001" +169474,USB-C Charging Cable,1,11.95,02/19/19 14:39,"418 Lake St, San Francisco, CA 94016" +169475,27in 4K Gaming Monitor,1,389.99,02/15/19 12:10,"989 Washington St, Portland, OR 97035" +169476,AAA Batteries (4-pack),1,2.99,02/22/19 15:24,"986 8th St, Dallas, TX 75001" +169477,USB-C Charging Cable,1,11.95,02/23/19 09:22,"278 Cherry St, Seattle, WA 98101" +169478,AAA Batteries (4-pack),1,2.99,02/26/19 21:43,"114 Hickory St, Portland, OR 97035" +169479,AA Batteries (4-pack),1,3.84,02/17/19 17:13,"29 Meadow St, San Francisco, CA 94016" +169480,Lightning Charging Cable,1,14.95,02/07/19 16:47,"48 11th St, San Francisco, CA 94016" +169481,Lightning Charging Cable,1,14.95,02/14/19 13:48,"767 7th St, San Francisco, CA 94016" +169482,AAA Batteries (4-pack),2,2.99,02/05/19 23:00,"334 Cedar St, Seattle, WA 98101" +169483,USB-C Charging Cable,1,11.95,02/27/19 16:56,"844 10th St, Seattle, WA 98101" +169484,AAA Batteries (4-pack),1,2.99,02/19/19 18:48,"261 Washington St, Atlanta, GA 30301" +169485,AAA Batteries (4-pack),3,2.99,02/12/19 18:04,"576 River St, Boston, MA 02215" +169486,Bose SoundSport Headphones,1,99.99,02/01/19 06:54,"827 Lakeview St, Atlanta, GA 30301" +169487,Macbook Pro Laptop,1,1700,02/06/19 16:30,"689 Meadow St, Dallas, TX 75001" +169487,USB-C Charging Cable,1,11.95,02/06/19 16:30,"689 Meadow St, Dallas, TX 75001" +169488,34in Ultrawide Monitor,1,379.99,02/20/19 19:29,"998 10th St, Atlanta, GA 30301" +169489,AA Batteries (4-pack),1,3.84,02/19/19 11:46,"905 Highland St, Austin, TX 73301" +169490,AA Batteries (4-pack),2,3.84,02/14/19 19:34,"597 6th St, Los Angeles, CA 90001" +169491,Bose SoundSport Headphones,1,99.99,02/12/19 20:05,"225 11th St, Seattle, WA 98101" +169492,Apple Airpods Headphones,1,150,02/21/19 22:05,"755 13th St, Austin, TX 73301" +169493,34in Ultrawide Monitor,1,379.99,02/22/19 10:48,"635 North St, Los Angeles, CA 90001" +169494,USB-C Charging Cable,1,11.95,02/13/19 21:26,"909 2nd St, Dallas, TX 75001" +169495,Wired Headphones,1,11.99,02/03/19 16:42,"400 11th St, Dallas, TX 75001" +169496,Lightning Charging Cable,1,14.95,02/14/19 13:21,"813 South St, Boston, MA 02215" +169497,Google Phone,1,600,02/14/19 08:52,"419 4th St, Portland, OR 97035" +169498,27in FHD Monitor,1,149.99,02/15/19 19:56,"765 Highland St, Seattle, WA 98101" +169499,Lightning Charging Cable,1,14.95,02/27/19 23:44,"868 Highland St, Portland, OR 97035" +169500,Bose SoundSport Headphones,1,99.99,02/18/19 18:23,"71 Meadow St, Dallas, TX 75001" +169501,Bose SoundSport Headphones,1,99.99,02/28/19 16:18,"850 Washington St, Seattle, WA 98101" +169502,Vareebadd Phone,1,400,02/09/19 19:29,"752 Main St, Los Angeles, CA 90001" +169503,Lightning Charging Cable,2,14.95,02/08/19 13:07,"310 5th St, Boston, MA 02215" +169504,Wired Headphones,1,11.99,02/22/19 11:39,"419 Chestnut St, New York City, NY 10001" +169505,AA Batteries (4-pack),1,3.84,02/23/19 20:05,"931 Sunset St, New York City, NY 10001" +169506,Apple Airpods Headphones,1,150,02/25/19 19:19,"443 4th St, San Francisco, CA 94016" +169507,Vareebadd Phone,1,400,02/20/19 18:02,"627 Madison St, San Francisco, CA 94016" +169507,USB-C Charging Cable,1,11.95,02/20/19 18:02,"627 Madison St, San Francisco, CA 94016" +169508,AA Batteries (4-pack),1,3.84,02/06/19 10:53,"784 Lake St, Dallas, TX 75001" +169509,AAA Batteries (4-pack),1,2.99,02/06/19 18:43,"46 North St, Dallas, TX 75001" +169510,AAA Batteries (4-pack),2,2.99,02/13/19 19:17,"304 Cherry St, Boston, MA 02215" +169511,Google Phone,1,600,02/20/19 11:42,"536 Cedar St, Los Angeles, CA 90001" +169512,AAA Batteries (4-pack),1,2.99,02/27/19 07:36,"730 6th St, Atlanta, GA 30301" +169513,27in 4K Gaming Monitor,1,389.99,02/07/19 14:10,"325 Ridge St, Atlanta, GA 30301" +169514,Wired Headphones,2,11.99,02/19/19 00:08,"285 6th St, San Francisco, CA 94016" +169515,20in Monitor,1,109.99,02/01/19 17:40,"402 11th St, Austin, TX 73301" +169516,Bose SoundSport Headphones,1,99.99,02/20/19 16:03,"575 1st St, New York City, NY 10001" +169517,Wired Headphones,1,11.99,02/19/19 10:34,"795 Spruce St, Los Angeles, CA 90001" +169518,Bose SoundSport Headphones,1,99.99,02/23/19 17:26,"490 4th St, San Francisco, CA 94016" +169519,Wired Headphones,1,11.99,02/23/19 19:28,"646 Cherry St, San Francisco, CA 94016" +169520,Wired Headphones,3,11.99,02/24/19 23:49,"700 North St, Los Angeles, CA 90001" +169521,AAA Batteries (4-pack),1,2.99,02/03/19 14:18,"418 Forest St, Dallas, TX 75001" +169522,34in Ultrawide Monitor,1,379.99,02/18/19 11:23,"621 Wilson St, Dallas, TX 75001" +169523,34in Ultrawide Monitor,1,379.99,02/17/19 10:39,"690 14th St, New York City, NY 10001" +169524,Apple Airpods Headphones,1,150,02/02/19 13:35,"5 Hickory St, New York City, NY 10001" +169524,Wired Headphones,1,11.99,02/02/19 13:35,"5 Hickory St, New York City, NY 10001" +169525,Bose SoundSport Headphones,1,99.99,02/13/19 09:19,"857 Johnson St, Austin, TX 73301" +169525,USB-C Charging Cable,1,11.95,02/13/19 09:19,"857 Johnson St, Austin, TX 73301" +169526,USB-C Charging Cable,2,11.95,02/20/19 08:55,"636 Cherry St, Los Angeles, CA 90001" +169527,Apple Airpods Headphones,1,150,02/14/19 23:52,"480 Hickory St, New York City, NY 10001" +169528,AA Batteries (4-pack),2,3.84,02/27/19 11:22,"299 Main St, New York City, NY 10001" +169529,USB-C Charging Cable,1,11.95,02/14/19 20:01,"279 Willow St, Boston, MA 02215" +169530,USB-C Charging Cable,1,11.95,02/07/19 11:14,"648 Chestnut St, Los Angeles, CA 90001" +169531,Bose SoundSport Headphones,1,99.99,02/12/19 13:56,"310 Johnson St, Portland, OR 97035" +169532,AA Batteries (4-pack),1,3.84,02/21/19 19:37,"301 Church St, San Francisco, CA 94016" +169533,Apple Airpods Headphones,1,150,02/20/19 15:57,"945 Park St, Los Angeles, CA 90001" +169534,27in FHD Monitor,1,149.99,02/26/19 18:13,"772 Center St, San Francisco, CA 94016" +169535,AA Batteries (4-pack),1,3.84,02/15/19 19:11,"203 Dogwood St, New York City, NY 10001" +169536,USB-C Charging Cable,1,11.95,02/07/19 20:47,"983 South St, San Francisco, CA 94016" +169537,AA Batteries (4-pack),1,3.84,02/04/19 11:02,"635 10th St, Boston, MA 02215" +169538,27in FHD Monitor,1,149.99,02/02/19 15:33,"500 Maple St, Austin, TX 73301" +169539,Bose SoundSport Headphones,1,99.99,02/25/19 17:11,"415 Lake St, Boston, MA 02215" +169540,Wired Headphones,1,11.99,02/25/19 19:31,"764 West St, San Francisco, CA 94016" +169541,Macbook Pro Laptop,1,1700,02/13/19 19:37,"25 Hill St, Boston, MA 02215" +169542,AAA Batteries (4-pack),3,2.99,02/20/19 04:47,"988 2nd St, San Francisco, CA 94016" +169543,AAA Batteries (4-pack),2,2.99,02/26/19 18:09,"422 Hill St, Dallas, TX 75001" +169544,AAA Batteries (4-pack),2,2.99,02/27/19 16:56,"791 Pine St, New York City, NY 10001" +169545,Bose SoundSport Headphones,1,99.99,02/26/19 14:04,"970 Hill St, San Francisco, CA 94016" +169546,AAA Batteries (4-pack),1,2.99,02/16/19 03:53,"642 Jackson St, San Francisco, CA 94016" +169547,LG Dryer,1,600.0,02/08/19 13:53,"331 West St, Austin, TX 73301" +169548,Google Phone,1,600,02/02/19 15:31,"143 14th St, Dallas, TX 75001" +169549,AA Batteries (4-pack),1,3.84,02/16/19 10:59,"791 Washington St, San Francisco, CA 94016" +169550,Apple Airpods Headphones,1,150,02/19/19 16:34,"343 Spruce St, Atlanta, GA 30301" +169551,Apple Airpods Headphones,1,150,02/21/19 08:59,"780 Ridge St, New York City, NY 10001" +169552,Wired Headphones,1,11.99,02/11/19 15:03,"126 13th St, Atlanta, GA 30301" +169553,Bose SoundSport Headphones,1,99.99,02/07/19 10:18,"379 Hickory St, San Francisco, CA 94016" +169554,AA Batteries (4-pack),2,3.84,02/17/19 20:41,"674 8th St, Boston, MA 02215" +169555,Apple Airpods Headphones,1,150,02/01/19 11:23,"210 Park St, Boston, MA 02215" +169556,AAA Batteries (4-pack),1,2.99,02/25/19 00:06,"331 9th St, Portland, OR 97035" +169557,AA Batteries (4-pack),1,3.84,02/19/19 12:00,"700 Spruce St, Atlanta, GA 30301" +169558,Apple Airpods Headphones,1,150,02/19/19 12:21,"673 South St, San Francisco, CA 94016" +169559,Bose SoundSport Headphones,1,99.99,02/10/19 16:39,"723 Walnut St, San Francisco, CA 94016" +169560,Macbook Pro Laptop,1,1700,02/19/19 06:38,"667 Johnson St, Boston, MA 02215" +169561,27in 4K Gaming Monitor,1,389.99,02/07/19 08:45,"723 Ridge St, Dallas, TX 75001" +169562,Apple Airpods Headphones,1,150,02/15/19 13:25,"154 Forest St, San Francisco, CA 94016" +169563,Lightning Charging Cable,1,14.95,02/04/19 07:12,"837 Highland St, Austin, TX 73301" +169564,AA Batteries (4-pack),1,3.84,02/16/19 14:00,"898 Adams St, New York City, NY 10001" +169565,USB-C Charging Cable,1,11.95,02/25/19 20:03,"978 Lincoln St, San Francisco, CA 94016" +169566,AA Batteries (4-pack),1,3.84,02/19/19 15:22,"637 4th St, Atlanta, GA 30301" +169567,Apple Airpods Headphones,1,150,02/06/19 11:52,"278 14th St, Los Angeles, CA 90001" +169568,Lightning Charging Cable,1,14.95,02/18/19 19:04,"443 11th St, Atlanta, GA 30301" +169569,iPhone,1,700,02/01/19 13:14,"2 8th St, Los Angeles, CA 90001" +169569,Wired Headphones,1,11.99,02/01/19 13:14,"2 8th St, Los Angeles, CA 90001" +169570,27in FHD Monitor,1,149.99,02/22/19 15:06,"966 South St, Los Angeles, CA 90001" +169571,Flatscreen TV,1,300,02/03/19 00:21,"231 Cedar St, San Francisco, CA 94016" +169572,AA Batteries (4-pack),1,3.84,02/05/19 07:50,"377 Madison St, San Francisco, CA 94016" +169573,USB-C Charging Cable,1,11.95,02/08/19 16:38,"843 Church St, New York City, NY 10001" +169574,USB-C Charging Cable,1,11.95,02/17/19 17:38,"967 Lakeview St, Atlanta, GA 30301" +169575,Lightning Charging Cable,1,14.95,02/06/19 17:45,"533 10th St, San Francisco, CA 94016" +169576,Bose SoundSport Headphones,1,99.99,02/20/19 14:38,"619 6th St, Los Angeles, CA 90001" +169577,USB-C Charging Cable,1,11.95,02/13/19 05:23,"528 Hickory St, San Francisco, CA 94016" +169578,Bose SoundSport Headphones,1,99.99,02/23/19 11:03,"468 Hickory St, Portland, ME 04101" +169579,Flatscreen TV,1,300,02/20/19 10:34,"854 Hill St, Austin, TX 73301" +169580,Apple Airpods Headphones,1,150,02/07/19 00:12,"196 Lakeview St, San Francisco, CA 94016" +169581,USB-C Charging Cable,1,11.95,02/01/19 09:44,"244 13th St, Atlanta, GA 30301" +169582,Lightning Charging Cable,1,14.95,02/04/19 11:40,"121 6th St, Austin, TX 73301" +169583,27in 4K Gaming Monitor,1,389.99,02/11/19 18:29,"727 Church St, New York City, NY 10001" +169584,USB-C Charging Cable,1,11.95,02/07/19 03:00,"979 Washington St, New York City, NY 10001" +169585,Bose SoundSport Headphones,1,99.99,02/09/19 14:23,"638 10th St, San Francisco, CA 94016" +169586,AA Batteries (4-pack),1,3.84,02/10/19 13:32,"781 Elm St, San Francisco, CA 94016" +169587,Wired Headphones,2,11.99,02/09/19 17:35,"412 Cedar St, New York City, NY 10001" +169588,Lightning Charging Cable,1,14.95,02/01/19 22:20,"811 Maple St, San Francisco, CA 94016" +169589,Apple Airpods Headphones,1,150,02/06/19 20:08,"78 Dogwood St, Boston, MA 02215" +169590,Wired Headphones,1,11.99,02/07/19 08:33,"739 Cherry St, New York City, NY 10001" +169591,USB-C Charging Cable,1,11.95,02/04/19 20:07,"163 Cedar St, Dallas, TX 75001" +169591,Wired Headphones,1,11.99,02/04/19 20:07,"163 Cedar St, Dallas, TX 75001" +169592,ThinkPad Laptop,1,999.99,02/17/19 21:09,"878 4th St, Atlanta, GA 30301" +169593,Wired Headphones,1,11.99,02/24/19 14:04,"872 8th St, Austin, TX 73301" +169594,27in 4K Gaming Monitor,1,389.99,02/18/19 12:07,"575 Adams St, New York City, NY 10001" +169595,20in Monitor,1,109.99,02/07/19 11:36,"533 Jefferson St, Portland, OR 97035" +169596,Wired Headphones,1,11.99,02/18/19 10:48,"509 Highland St, Los Angeles, CA 90001" +169597,Lightning Charging Cable,1,14.95,02/22/19 18:50,"787 12th St, Atlanta, GA 30301" +169598,20in Monitor,1,109.99,02/01/19 09:15,"594 1st St, Seattle, WA 98101" +169599,iPhone,1,700,02/09/19 16:18,"628 Forest St, Portland, ME 04101" +169600,Bose SoundSport Headphones,1,99.99,02/07/19 09:17,"102 Adams St, New York City, NY 10001" +169601,Wired Headphones,1,11.99,02/14/19 11:04,"139 2nd St, Seattle, WA 98101" +169602,ThinkPad Laptop,1,999.99,02/27/19 12:32,"282 Johnson St, Los Angeles, CA 90001" +169603,USB-C Charging Cable,1,11.95,02/08/19 10:33,"479 Chestnut St, San Francisco, CA 94016" +169604,iPhone,1,700,02/11/19 18:42,"489 Center St, Los Angeles, CA 90001" +169605,AAA Batteries (4-pack),1,2.99,02/02/19 21:49,"736 8th St, Los Angeles, CA 90001" +169606,AAA Batteries (4-pack),1,2.99,02/05/19 16:25,"895 Highland St, Los Angeles, CA 90001" +169607,Apple Airpods Headphones,1,150,02/06/19 16:40,"756 13th St, Boston, MA 02215" +169608,AAA Batteries (4-pack),1,2.99,02/08/19 23:10,"585 Sunset St, Austin, TX 73301" +169608,USB-C Charging Cable,1,11.95,02/08/19 23:10,"585 Sunset St, Austin, TX 73301" +169609,AAA Batteries (4-pack),1,2.99,02/07/19 19:35,"953 12th St, Seattle, WA 98101" +169610,Apple Airpods Headphones,1,150,02/05/19 21:59,"296 North St, Boston, MA 02215" +169611,Wired Headphones,1,11.99,02/10/19 09:38,"207 4th St, Portland, OR 97035" +169612,Wired Headphones,1,11.99,02/13/19 17:42,"770 North St, San Francisco, CA 94016" +169613,Vareebadd Phone,1,400,02/08/19 21:57,"945 River St, San Francisco, CA 94016" +169613,USB-C Charging Cable,2,11.95,02/08/19 21:57,"945 River St, San Francisco, CA 94016" +169613,Wired Headphones,1,11.99,02/08/19 21:57,"945 River St, San Francisco, CA 94016" +169614,Lightning Charging Cable,1,14.95,02/24/19 19:08,"248 Elm St, Los Angeles, CA 90001" +169614,Google Phone,1,600,02/24/19 19:08,"248 Elm St, Los Angeles, CA 90001" +169615,Wired Headphones,1,11.99,02/27/19 17:50,"441 13th St, San Francisco, CA 94016" +169616,Lightning Charging Cable,1,14.95,02/03/19 14:09,"699 10th St, New York City, NY 10001" +169617,AAA Batteries (4-pack),2,2.99,02/28/19 09:14,"418 Johnson St, San Francisco, CA 94016" +169618,27in FHD Monitor,1,149.99,02/27/19 13:34,"596 Ridge St, New York City, NY 10001" +169619,27in FHD Monitor,1,149.99,02/08/19 06:47,"401 Church St, Los Angeles, CA 90001" +169620,Wired Headphones,1,11.99,02/06/19 21:07,"357 Pine St, New York City, NY 10001" +169621,AAA Batteries (4-pack),1,2.99,02/12/19 00:06,"854 Adams St, San Francisco, CA 94016" +169622,AA Batteries (4-pack),1,3.84,02/19/19 19:57,"719 Meadow St, Atlanta, GA 30301" +169623,Bose SoundSport Headphones,1,99.99,02/25/19 10:32,"774 6th St, Boston, MA 02215" +169624,USB-C Charging Cable,1,11.95,02/22/19 12:28,"434 Spruce St, Dallas, TX 75001" +169625,27in 4K Gaming Monitor,1,389.99,02/06/19 15:47,"788 Wilson St, Seattle, WA 98101" +169626,AAA Batteries (4-pack),3,2.99,02/20/19 14:50,"999 11th St, San Francisco, CA 94016" +169627,Bose SoundSport Headphones,1,99.99,02/10/19 19:58,"416 12th St, Seattle, WA 98101" +169628,AAA Batteries (4-pack),1,2.99,02/16/19 13:35,"89 Wilson St, San Francisco, CA 94016" +169629,Vareebadd Phone,1,400,02/03/19 18:41,"796 Lincoln St, Dallas, TX 75001" +169630,Google Phone,1,600,02/12/19 09:08,"860 14th St, Los Angeles, CA 90001" +169630,USB-C Charging Cable,1,11.95,02/12/19 09:08,"860 14th St, Los Angeles, CA 90001" +169631,Lightning Charging Cable,1,14.95,02/10/19 13:10,"880 Forest St, Atlanta, GA 30301" +169632,Lightning Charging Cable,1,14.95,02/28/19 16:39,"82 Lakeview St, Los Angeles, CA 90001" +169633,Wired Headphones,2,11.99,02/12/19 04:13,"232 Lake St, San Francisco, CA 94016" +169634,Lightning Charging Cable,1,14.95,02/04/19 16:06,"908 10th St, Dallas, TX 75001" +169635,AA Batteries (4-pack),1,3.84,02/04/19 15:59,"359 Walnut St, Los Angeles, CA 90001" +169636,Apple Airpods Headphones,1,150,02/20/19 20:12,"102 5th St, San Francisco, CA 94016" +169637,AAA Batteries (4-pack),2,2.99,02/26/19 07:57,"412 Adams St, Dallas, TX 75001" +169638,AA Batteries (4-pack),2,3.84,02/06/19 14:13,"748 Highland St, San Francisco, CA 94016" +169639,AAA Batteries (4-pack),1,2.99,02/26/19 12:55,"960 Highland St, Boston, MA 02215" +169640,Bose SoundSport Headphones,1,99.99,02/18/19 14:47,"965 Cedar St, Boston, MA 02215" +169641,Flatscreen TV,1,300,02/28/19 23:20,"583 Hill St, Portland, OR 97035" +169642,Apple Airpods Headphones,1,150,02/12/19 11:43,"705 Washington St, New York City, NY 10001" +169643,AA Batteries (4-pack),1,3.84,02/20/19 18:58,"370 1st St, Atlanta, GA 30301" +169644,ThinkPad Laptop,1,999.99,02/22/19 19:08,"967 Hill St, New York City, NY 10001" +169645,Bose SoundSport Headphones,1,99.99,02/16/19 19:50,"84 Cedar St, Los Angeles, CA 90001" +169646,Apple Airpods Headphones,1,150,02/24/19 16:50,"477 Elm St, San Francisco, CA 94016" +169647,Flatscreen TV,1,300,02/27/19 15:48,"970 Park St, Dallas, TX 75001" +169648,AAA Batteries (4-pack),1,2.99,02/22/19 21:09,"107 Chestnut St, Los Angeles, CA 90001" +169649,AAA Batteries (4-pack),1,2.99,02/11/19 11:35,"529 Wilson St, San Francisco, CA 94016" +169650,USB-C Charging Cable,1,11.95,02/18/19 21:25,"678 River St, Dallas, TX 75001" +169651,Wired Headphones,1,11.99,02/16/19 20:36,"857 4th St, Atlanta, GA 30301" +169652,Apple Airpods Headphones,1,150,02/21/19 20:54,"955 10th St, Dallas, TX 75001" +169653,USB-C Charging Cable,1,11.95,02/08/19 09:21,"121 Forest St, San Francisco, CA 94016" +169654,AAA Batteries (4-pack),1,2.99,02/26/19 09:49,"363 13th St, Los Angeles, CA 90001" +169655,AAA Batteries (4-pack),2,2.99,02/13/19 16:37,"999 Cedar St, Boston, MA 02215" +169656,20in Monitor,1,109.99,02/12/19 09:07,"690 1st St, Seattle, WA 98101" +169657,USB-C Charging Cable,1,11.95,02/23/19 22:57,"664 Highland St, Seattle, WA 98101" +169658,Apple Airpods Headphones,1,150,02/08/19 17:07,"161 Forest St, Los Angeles, CA 90001" +169659,AAA Batteries (4-pack),1,2.99,02/18/19 00:30,"526 Dogwood St, Los Angeles, CA 90001" +169659,USB-C Charging Cable,1,11.95,02/18/19 00:30,"526 Dogwood St, Los Angeles, CA 90001" +169660,AA Batteries (4-pack),2,3.84,02/16/19 10:14,"989 Spruce St, Dallas, TX 75001" +169661,27in 4K Gaming Monitor,1,389.99,02/07/19 20:32,"849 Pine St, Los Angeles, CA 90001" +169662,Wired Headphones,1,11.99,02/23/19 19:58,"352 Pine St, Dallas, TX 75001" +169663,Lightning Charging Cable,1,14.95,02/15/19 15:01,"752 Wilson St, New York City, NY 10001" +169664,AAA Batteries (4-pack),3,2.99,02/08/19 10:43,"831 Cherry St, New York City, NY 10001" +169665,Macbook Pro Laptop,1,1700,02/27/19 23:41,"247 Main St, New York City, NY 10001" +169666,USB-C Charging Cable,1,11.95,02/28/19 00:37,"598 Maple St, Los Angeles, CA 90001" +169667,ThinkPad Laptop,1,999.99,02/16/19 21:47,"130 Willow St, New York City, NY 10001" +169668,AAA Batteries (4-pack),1,2.99,02/01/19 19:47,"842 14th St, Austin, TX 73301" +169669,27in FHD Monitor,1,149.99,02/28/19 14:28,"665 Highland St, New York City, NY 10001" +169670,27in FHD Monitor,1,149.99,02/10/19 17:56,"828 11th St, Seattle, WA 98101" +169671,Macbook Pro Laptop,1,1700,02/08/19 10:17,"576 Johnson St, San Francisco, CA 94016" +169672,AA Batteries (4-pack),1,3.84,02/11/19 13:22,"823 8th St, Los Angeles, CA 90001" +169673,USB-C Charging Cable,1,11.95,02/24/19 14:26,"578 Sunset St, New York City, NY 10001" +169674,Lightning Charging Cable,1,14.95,02/08/19 14:36,"618 South St, Los Angeles, CA 90001" +169675,Apple Airpods Headphones,1,150,02/06/19 10:31,"187 River St, Seattle, WA 98101" +169676,34in Ultrawide Monitor,1,379.99,02/27/19 06:02,"233 Hickory St, Seattle, WA 98101" +169677,AAA Batteries (4-pack),1,2.99,02/10/19 19:45,"990 1st St, New York City, NY 10001" +169678,Bose SoundSport Headphones,1,99.99,02/02/19 14:35,"826 Willow St, Dallas, TX 75001" +169679,AA Batteries (4-pack),1,3.84,02/25/19 22:35,"135 Dogwood St, Portland, OR 97035" +169680,Bose SoundSport Headphones,1,99.99,02/13/19 10:26,"388 Sunset St, San Francisco, CA 94016" +169681,AAA Batteries (4-pack),1,2.99,02/20/19 19:28,"657 Johnson St, Dallas, TX 75001" +169682,Bose SoundSport Headphones,1,99.99,02/19/19 17:38,"282 Madison St, Seattle, WA 98101" +169683,Macbook Pro Laptop,1,1700,02/03/19 14:37,"702 Lake St, Seattle, WA 98101" +169684,20in Monitor,1,109.99,02/07/19 14:48,"264 10th St, Seattle, WA 98101" +169685,Wired Headphones,1,11.99,02/26/19 18:36,"646 13th St, Los Angeles, CA 90001" +169686,27in 4K Gaming Monitor,1,389.99,02/14/19 07:12,"54 Sunset St, San Francisco, CA 94016" +169687,USB-C Charging Cable,1,11.95,02/12/19 09:19,"228 Jackson St, Atlanta, GA 30301" +169688,AA Batteries (4-pack),3,3.84,02/10/19 08:12,"712 Cedar St, Atlanta, GA 30301" +169689,USB-C Charging Cable,1,11.95,02/18/19 22:41,"936 Lake St, Portland, ME 04101" +169690,Flatscreen TV,1,300,02/09/19 15:41,"968 Johnson St, New York City, NY 10001" +169691,USB-C Charging Cable,4,11.95,02/16/19 01:13,"691 1st St, Boston, MA 02215" +169692,Lightning Charging Cable,1,14.95,02/27/19 23:08,"899 Chestnut St, Dallas, TX 75001" +169693,Wired Headphones,1,11.99,02/07/19 11:32,"932 Meadow St, Dallas, TX 75001" +169694,Macbook Pro Laptop,1,1700,02/07/19 20:41,"837 Wilson St, Boston, MA 02215" +169695,AAA Batteries (4-pack),1,2.99,02/06/19 17:19,"507 14th St, Atlanta, GA 30301" +169696,AA Batteries (4-pack),1,3.84,02/22/19 15:00,"813 River St, San Francisco, CA 94016" +169697,AAA Batteries (4-pack),1,2.99,02/20/19 18:01,"810 Dogwood St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +169698,Bose SoundSport Headphones,1,99.99,02/04/19 20:49,"792 Forest St, Portland, OR 97035" +169699,Wired Headphones,1,11.99,02/26/19 01:02,"116 12th St, San Francisco, CA 94016" +169700,AA Batteries (4-pack),1,3.84,02/22/19 16:38,"80 13th St, San Francisco, CA 94016" +169701,34in Ultrawide Monitor,1,379.99,02/12/19 12:14,"288 Center St, San Francisco, CA 94016" +,,,,, +169702,AAA Batteries (4-pack),1,2.99,02/06/19 08:22,"545 10th St, Dallas, TX 75001" +169703,Bose SoundSport Headphones,1,99.99,03/01/19 00:18,"416 Chestnut St, Los Angeles, CA 90001" +169704,ThinkPad Laptop,1,999.99,02/01/19 23:25,"983 13th St, Portland, OR 97035" +169705,Apple Airpods Headphones,1,150,02/16/19 15:45,"377 14th St, Boston, MA 02215" +169706,Apple Airpods Headphones,1,150,02/27/19 19:55,"522 Walnut St, New York City, NY 10001" +169707,AAA Batteries (4-pack),1,2.99,02/25/19 13:09,"265 Elm St, New York City, NY 10001" +169708,iPhone,1,700,02/28/19 11:24,"722 North St, San Francisco, CA 94016" +169708,Apple Airpods Headphones,1,150,02/28/19 11:24,"722 North St, San Francisco, CA 94016" +169709,20in Monitor,1,109.99,02/21/19 16:46,"176 Lakeview St, San Francisco, CA 94016" +169710,Lightning Charging Cable,1,14.95,02/27/19 18:31,"219 Lincoln St, San Francisco, CA 94016" +169711,Wired Headphones,1,11.99,02/26/19 10:01,"271 7th St, Dallas, TX 75001" +169712,Lightning Charging Cable,1,14.95,02/06/19 12:33,"927 Hickory St, Dallas, TX 75001" +169713,Lightning Charging Cable,1,14.95,02/02/19 20:02,"875 Dogwood St, Dallas, TX 75001" +169714,AA Batteries (4-pack),3,3.84,02/08/19 17:49,"192 8th St, Dallas, TX 75001" +169715,iPhone,1,700,02/24/19 10:07,"836 Main St, Los Angeles, CA 90001" +169716,27in FHD Monitor,1,149.99,02/08/19 13:23,"526 11th St, San Francisco, CA 94016" +169717,Macbook Pro Laptop,1,1700,02/11/19 21:59,"829 4th St, Boston, MA 02215" +169718,Lightning Charging Cable,1,14.95,02/25/19 19:33,"17 Jackson St, Los Angeles, CA 90001" +,,,,, +169719,iPhone,1,700,02/06/19 09:34,"218 Willow St, Los Angeles, CA 90001" +169720,27in FHD Monitor,1,149.99,02/08/19 19:46,"187 Madison St, New York City, NY 10001" +169721,AAA Batteries (4-pack),2,2.99,02/09/19 06:15,"986 Pine St, Los Angeles, CA 90001" +169722,Wired Headphones,1,11.99,02/01/19 20:55,"704 Madison St, Seattle, WA 98101" +169723,27in FHD Monitor,1,149.99,02/26/19 20:08,"67 Maple St, San Francisco, CA 94016" +169724,34in Ultrawide Monitor,1,379.99,02/18/19 11:17,"273 Wilson St, Portland, OR 97035" +169725,Flatscreen TV,1,300,02/09/19 11:22,"938 Madison St, Los Angeles, CA 90001" +169726,Apple Airpods Headphones,1,150,02/05/19 10:02,"271 Meadow St, Portland, OR 97035" +169727,Wired Headphones,1,11.99,02/05/19 21:13,"728 Meadow St, San Francisco, CA 94016" +169728,34in Ultrawide Monitor,1,379.99,02/01/19 20:37,"961 8th St, Austin, TX 73301" +169729,AA Batteries (4-pack),2,3.84,02/01/19 05:49,"703 Hill St, New York City, NY 10001" +169730,AAA Batteries (4-pack),2,2.99,02/02/19 21:41,"652 North St, New York City, NY 10001" +169731,Apple Airpods Headphones,1,150,02/13/19 11:26,"892 Johnson St, Seattle, WA 98101" +169732,Apple Airpods Headphones,1,150,02/19/19 12:18,"36 Pine St, Seattle, WA 98101" +169733,USB-C Charging Cable,1,11.95,02/04/19 16:26,"750 Forest St, Dallas, TX 75001" +169734,Wired Headphones,1,11.99,02/28/19 22:04,"163 South St, Portland, ME 04101" +169735,USB-C Charging Cable,1,11.95,02/18/19 14:48,"686 Lakeview St, Dallas, TX 75001" +169736,Wired Headphones,1,11.99,02/17/19 19:02,"61 12th St, New York City, NY 10001" +169737,AA Batteries (4-pack),1,3.84,02/23/19 17:56,"443 Jackson St, San Francisco, CA 94016" +,,,,, +169738,AA Batteries (4-pack),4,3.84,02/28/19 19:59,"490 14th St, Dallas, TX 75001" +169739,USB-C Charging Cable,1,11.95,02/16/19 02:25,"960 Hickory St, New York City, NY 10001" +169740,Macbook Pro Laptop,1,1700,02/22/19 22:01,"831 6th St, Seattle, WA 98101" +169741,iPhone,1,700,02/05/19 14:57,"669 Spruce St, Atlanta, GA 30301" +169741,Lightning Charging Cable,1,14.95,02/05/19 14:57,"669 Spruce St, Atlanta, GA 30301" +169741,Wired Headphones,1,11.99,02/05/19 14:57,"669 Spruce St, Atlanta, GA 30301" +169742,27in FHD Monitor,1,149.99,02/25/19 10:54,"441 Elm St, Austin, TX 73301" +169743,Apple Airpods Headphones,1,150,02/25/19 13:24,"553 4th St, Seattle, WA 98101" +169744,Lightning Charging Cable,2,14.95,02/12/19 18:33,"830 West St, Boston, MA 02215" +169745,AA Batteries (4-pack),1,3.84,02/22/19 14:03,"621 8th St, Austin, TX 73301" +169746,Apple Airpods Headphones,1,150,02/21/19 10:48,"904 Lake St, Los Angeles, CA 90001" +169747,AAA Batteries (4-pack),1,2.99,02/18/19 17:35,"734 Highland St, San Francisco, CA 94016" +169748,27in FHD Monitor,1,149.99,02/05/19 23:15,"150 Cedar St, Dallas, TX 75001" +169749,Apple Airpods Headphones,1,150,02/27/19 19:57,"444 Elm St, San Francisco, CA 94016" +169750,Macbook Pro Laptop,1,1700,02/22/19 23:04,"830 Sunset St, San Francisco, CA 94016" +169751,Bose SoundSport Headphones,1,99.99,02/06/19 16:39,"693 Highland St, San Francisco, CA 94016" +169752,27in 4K Gaming Monitor,1,389.99,02/10/19 16:47,"617 Main St, Seattle, WA 98101" +169753,AA Batteries (4-pack),1,3.84,02/07/19 10:19,"938 Dogwood St, San Francisco, CA 94016" +169754,AAA Batteries (4-pack),1,2.99,02/11/19 18:38,"749 4th St, San Francisco, CA 94016" +169755,AA Batteries (4-pack),1,3.84,02/15/19 12:01,"177 Main St, Portland, OR 97035" +169756,iPhone,1,700,02/03/19 12:03,"669 Chestnut St, San Francisco, CA 94016" +169757,Wired Headphones,2,11.99,02/26/19 16:02,"395 Lincoln St, New York City, NY 10001" +169758,27in 4K Gaming Monitor,1,389.99,02/16/19 17:50,"441 4th St, San Francisco, CA 94016" +169759,34in Ultrawide Monitor,1,379.99,02/20/19 11:00,"495 Hill St, Dallas, TX 75001" +169760,AA Batteries (4-pack),1,3.84,02/22/19 15:20,"241 Maple St, Dallas, TX 75001" +169761,Apple Airpods Headphones,1,150,02/28/19 19:20,"899 Jefferson St, Seattle, WA 98101" +169762,Wired Headphones,1,11.99,02/02/19 18:17,"277 5th St, Los Angeles, CA 90001" +169763,AAA Batteries (4-pack),3,2.99,02/16/19 10:32,"112 Washington St, San Francisco, CA 94016" +169764,27in 4K Gaming Monitor,1,389.99,02/03/19 00:02,"199 11th St, New York City, NY 10001" +169765,AA Batteries (4-pack),1,3.84,02/02/19 16:29,"75 Meadow St, New York City, NY 10001" +169766,Apple Airpods Headphones,1,150,02/04/19 10:21,"760 4th St, Boston, MA 02215" +169767,AA Batteries (4-pack),1,3.84,02/13/19 21:34,"17 9th St, New York City, NY 10001" +169767,AAA Batteries (4-pack),1,2.99,02/13/19 21:34,"17 9th St, New York City, NY 10001" +169768,34in Ultrawide Monitor,1,379.99,02/23/19 16:59,"931 Madison St, Atlanta, GA 30301" +169769,Lightning Charging Cable,1,14.95,02/26/19 08:15,"949 6th St, Boston, MA 02215" +169770,Wired Headphones,2,11.99,02/12/19 23:04,"463 Maple St, Los Angeles, CA 90001" +169771,Bose SoundSport Headphones,1,99.99,02/11/19 23:30,"473 Highland St, Seattle, WA 98101" +169772,USB-C Charging Cable,1,11.95,02/19/19 20:32,"222 Church St, San Francisco, CA 94016" +169773,27in FHD Monitor,1,149.99,02/18/19 19:07,"666 Cedar St, Boston, MA 02215" +169774,AAA Batteries (4-pack),1,2.99,02/16/19 13:50,"672 Cherry St, Boston, MA 02215" +169775,LG Washing Machine,1,600.0,02/01/19 13:44,"581 14th St, Boston, MA 02215" +169776,Bose SoundSport Headphones,1,99.99,02/18/19 00:52,"8 Wilson St, Dallas, TX 75001" +169777,Wired Headphones,1,11.99,02/22/19 18:15,"971 2nd St, Austin, TX 73301" +169778,27in FHD Monitor,1,149.99,02/21/19 16:27,"487 River St, San Francisco, CA 94016" +169779,USB-C Charging Cable,1,11.95,02/12/19 12:01,"356 Willow St, Seattle, WA 98101" +169780,Bose SoundSport Headphones,1,99.99,02/04/19 17:13,"783 Lincoln St, Atlanta, GA 30301" +169781,34in Ultrawide Monitor,1,379.99,02/06/19 10:20,"377 Lake St, Boston, MA 02215" +169782,iPhone,1,700,02/09/19 21:10,"607 Lakeview St, New York City, NY 10001" +169782,Wired Headphones,1,11.99,02/09/19 21:10,"607 Lakeview St, New York City, NY 10001" +169783,USB-C Charging Cable,1,11.95,02/27/19 20:16,"599 6th St, Dallas, TX 75001" +169784,AAA Batteries (4-pack),3,2.99,02/23/19 16:15,"301 2nd St, Los Angeles, CA 90001" +169785,Google Phone,1,600,02/12/19 14:09,"303 Hill St, Los Angeles, CA 90001" +169786,Wired Headphones,1,11.99,02/01/19 23:42,"393 Highland St, San Francisco, CA 94016" +169787,Google Phone,1,600,02/17/19 13:52,"824 Madison St, Atlanta, GA 30301" +169788,Wired Headphones,1,11.99,02/09/19 09:44,"496 Chestnut St, New York City, NY 10001" +169789,34in Ultrawide Monitor,1,379.99,02/16/19 22:44,"213 6th St, San Francisco, CA 94016" +169790,Lightning Charging Cable,1,14.95,02/23/19 05:09,"973 Cherry St, New York City, NY 10001" +169791,AAA Batteries (4-pack),1,2.99,02/25/19 13:11,"99 7th St, Dallas, TX 75001" +169792,Bose SoundSport Headphones,1,99.99,02/25/19 19:15,"78 West St, Austin, TX 73301" +169793,Bose SoundSport Headphones,1,99.99,02/26/19 15:51,"819 Ridge St, Boston, MA 02215" +169794,Lightning Charging Cable,1,14.95,02/27/19 01:15,"179 Madison St, Austin, TX 73301" +169795,Wired Headphones,1,11.99,02/01/19 16:19,"977 Pine St, Seattle, WA 98101" +169796,Vareebadd Phone,1,400,02/25/19 23:04,"551 Lake St, Dallas, TX 75001" +169797,Bose SoundSport Headphones,1,99.99,02/10/19 19:48,"252 Lincoln St, Austin, TX 73301" +169798,Bose SoundSport Headphones,1,99.99,02/19/19 15:52,"858 Hickory St, San Francisco, CA 94016" +169799,AA Batteries (4-pack),1,3.84,02/26/19 17:07,"240 14th St, New York City, NY 10001" +169800,Apple Airpods Headphones,1,150,02/20/19 15:07,"932 Main St, Los Angeles, CA 90001" +169801,Apple Airpods Headphones,1,150,02/16/19 20:37,"828 2nd St, Austin, TX 73301" +169802,Flatscreen TV,1,300,02/23/19 20:27,"300 4th St, San Francisco, CA 94016" +169803,Vareebadd Phone,1,400,02/15/19 11:54,"450 Lake St, San Francisco, CA 94016" +169804,USB-C Charging Cable,1,11.95,02/04/19 14:37,"955 Center St, Boston, MA 02215" +169805,Bose SoundSport Headphones,1,99.99,02/01/19 20:41,"170 North St, Boston, MA 02215" +169806,AA Batteries (4-pack),2,3.84,02/21/19 12:10,"788 Madison St, Los Angeles, CA 90001" +169807,Apple Airpods Headphones,1,150,02/18/19 16:38,"594 14th St, San Francisco, CA 94016" +169807,Wired Headphones,1,11.99,02/18/19 16:38,"594 14th St, San Francisco, CA 94016" +169808,Lightning Charging Cable,1,14.95,02/08/19 07:45,"840 Lincoln St, Atlanta, GA 30301" +169809,Lightning Charging Cable,1,14.95,02/12/19 21:51,"21 River St, San Francisco, CA 94016" +169809,27in 4K Gaming Monitor,1,389.99,02/12/19 21:51,"21 River St, San Francisco, CA 94016" +169810,Lightning Charging Cable,1,14.95,02/12/19 19:55,"261 Willow St, Boston, MA 02215" +169811,AAA Batteries (4-pack),1,2.99,02/21/19 11:18,"556 Highland St, Seattle, WA 98101" +169812,Bose SoundSport Headphones,1,99.99,02/17/19 12:49,"170 Washington St, Los Angeles, CA 90001" +169813,USB-C Charging Cable,1,11.95,02/26/19 20:15,"153 Elm St, New York City, NY 10001" +169814,AA Batteries (4-pack),1,3.84,02/28/19 12:36,"812 2nd St, Los Angeles, CA 90001" +169815,AAA Batteries (4-pack),1,2.99,02/18/19 19:04,"389 Center St, San Francisco, CA 94016" +169816,Apple Airpods Headphones,1,150,02/01/19 08:35,"620 Walnut St, San Francisco, CA 94016" +169817,20in Monitor,1,109.99,02/20/19 23:08,"628 Sunset St, New York City, NY 10001" +169818,Wired Headphones,1,11.99,02/19/19 00:48,"123 Johnson St, Los Angeles, CA 90001" +169819,iPhone,1,700,02/03/19 08:33,"440 4th St, New York City, NY 10001" +169820,Apple Airpods Headphones,1,150,02/26/19 22:14,"235 North St, New York City, NY 10001" +169821,USB-C Charging Cable,1,11.95,02/10/19 21:22,"592 13th St, Boston, MA 02215" +169822,Lightning Charging Cable,1,14.95,02/18/19 08:39,"518 Chestnut St, New York City, NY 10001" +169823,iPhone,1,700,02/12/19 17:00,"333 Jackson St, New York City, NY 10001" +169824,27in 4K Gaming Monitor,1,389.99,02/07/19 11:33,"132 Cherry St, Los Angeles, CA 90001" +169825,AAA Batteries (4-pack),1,2.99,02/07/19 13:42,"191 Hill St, Seattle, WA 98101" +169826,Wired Headphones,1,11.99,02/20/19 11:31,"281 Johnson St, Dallas, TX 75001" +169827,AAA Batteries (4-pack),1,2.99,02/01/19 16:49,"685 5th St, San Francisco, CA 94016" +169828,Lightning Charging Cable,1,14.95,02/13/19 14:09,"921 Washington St, Los Angeles, CA 90001" +169829,Apple Airpods Headphones,1,150,02/02/19 11:32,"44 Spruce St, San Francisco, CA 94016" +169830,27in 4K Gaming Monitor,1,389.99,02/25/19 15:51,"74 7th St, Seattle, WA 98101" +169831,AAA Batteries (4-pack),2,2.99,02/05/19 10:52,"91 Highland St, San Francisco, CA 94016" +169832,27in FHD Monitor,1,149.99,02/13/19 09:06,"976 14th St, New York City, NY 10001" +169833,USB-C Charging Cable,1,11.95,02/12/19 20:54,"906 Jefferson St, Portland, OR 97035" +169834,Wired Headphones,2,11.99,02/08/19 15:52,"969 Main St, New York City, NY 10001" +169835,34in Ultrawide Monitor,1,379.99,02/16/19 20:49,"396 Madison St, Los Angeles, CA 90001" +169836,Flatscreen TV,1,300,02/17/19 18:58,"964 11th St, New York City, NY 10001" +169837,AAA Batteries (4-pack),2,2.99,02/16/19 10:34,"414 Cedar St, New York City, NY 10001" +169838,AAA Batteries (4-pack),2,2.99,02/23/19 17:45,"9 Dogwood St, Dallas, TX 75001" +169839,AA Batteries (4-pack),2,3.84,02/06/19 13:43,"907 Sunset St, Dallas, TX 75001" +169840,27in 4K Gaming Monitor,1,389.99,02/01/19 21:08,"393 Johnson St, Seattle, WA 98101" +169841,USB-C Charging Cable,1,11.95,02/14/19 22:22,"942 2nd St, Atlanta, GA 30301" +169842,Flatscreen TV,1,300,02/16/19 15:04,"803 5th St, Los Angeles, CA 90001" +169843,USB-C Charging Cable,1,11.95,02/15/19 05:54,"595 Maple St, San Francisco, CA 94016" +169844,Wired Headphones,1,11.99,02/20/19 10:33,"992 1st St, Atlanta, GA 30301" +169845,AA Batteries (4-pack),1,3.84,02/28/19 19:31,"609 Lincoln St, Seattle, WA 98101" +169846,Lightning Charging Cable,1,14.95,02/05/19 23:18,"987 Washington St, New York City, NY 10001" +169847,34in Ultrawide Monitor,1,379.99,02/07/19 22:51,"940 Lincoln St, Los Angeles, CA 90001" +169848,AAA Batteries (4-pack),3,2.99,02/14/19 21:27,"552 Jefferson St, San Francisco, CA 94016" +169849,AA Batteries (4-pack),1,3.84,02/01/19 16:58,"433 Willow St, New York City, NY 10001" +169850,AAA Batteries (4-pack),1,2.99,02/20/19 14:33,"899 Sunset St, San Francisco, CA 94016" +169851,Wired Headphones,1,11.99,02/04/19 16:32,"755 Park St, Atlanta, GA 30301" +169852,Lightning Charging Cable,1,14.95,02/05/19 11:27,"987 5th St, San Francisco, CA 94016" +169853,Apple Airpods Headphones,1,150,02/11/19 01:27,"187 Meadow St, Portland, ME 04101" +169854,AAA Batteries (4-pack),2,2.99,02/07/19 12:31,"477 Highland St, Portland, OR 97035" +169855,iPhone,1,700,02/25/19 09:11,"274 Main St, San Francisco, CA 94016" +169855,Wired Headphones,1,11.99,02/25/19 09:11,"274 Main St, San Francisco, CA 94016" +169856,Bose SoundSport Headphones,1,99.99,02/04/19 22:48,"558 5th St, Dallas, TX 75001" +169857,27in FHD Monitor,1,149.99,02/09/19 15:46,"582 Hickory St, Atlanta, GA 30301" +169858,Apple Airpods Headphones,1,150,02/06/19 09:44,"705 13th St, San Francisco, CA 94016" +169859,34in Ultrawide Monitor,1,379.99,02/21/19 19:40,"439 Madison St, San Francisco, CA 94016" +169860,27in 4K Gaming Monitor,1,389.99,02/06/19 01:44,"448 Spruce St, New York City, NY 10001" +169861,USB-C Charging Cable,1,11.95,02/25/19 16:36,"395 Main St, Seattle, WA 98101" +169862,AAA Batteries (4-pack),1,2.99,02/07/19 11:46,"332 South St, Dallas, TX 75001" +169863,Lightning Charging Cable,1,14.95,02/01/19 10:46,"829 Cherry St, Austin, TX 73301" +169864,Flatscreen TV,1,300,02/16/19 12:42,"467 Chestnut St, San Francisco, CA 94016" +169865,Wired Headphones,2,11.99,02/24/19 20:13,"745 Cedar St, Austin, TX 73301" +169866,AA Batteries (4-pack),1,3.84,02/11/19 14:02,"507 10th St, Atlanta, GA 30301" +169867,Apple Airpods Headphones,1,150,02/07/19 18:45,"118 Lakeview St, San Francisco, CA 94016" +169868,USB-C Charging Cable,2,11.95,02/08/19 18:55,"629 Walnut St, Los Angeles, CA 90001" +169869,AAA Batteries (4-pack),2,2.99,02/16/19 13:56,"15 Lakeview St, Boston, MA 02215" +169870,Bose SoundSport Headphones,1,99.99,02/05/19 08:11,"920 Lake St, Austin, TX 73301" +169871,Lightning Charging Cable,1,14.95,02/27/19 11:04,"243 Lake St, Seattle, WA 98101" +169872,Macbook Pro Laptop,1,1700,02/03/19 11:08,"647 Lake St, Dallas, TX 75001" +169873,27in 4K Gaming Monitor,1,389.99,02/10/19 16:00,"361 Wilson St, New York City, NY 10001" +169874,Apple Airpods Headphones,1,150,02/13/19 22:21,"30 Elm St, San Francisco, CA 94016" +169875,AA Batteries (4-pack),1,3.84,02/05/19 11:32,"161 Elm St, San Francisco, CA 94016" +169876,AA Batteries (4-pack),2,3.84,02/16/19 21:19,"219 Chestnut St, Atlanta, GA 30301" +169877,Lightning Charging Cable,1,14.95,02/07/19 17:37,"708 10th St, Atlanta, GA 30301" +169878,AA Batteries (4-pack),2,3.84,02/26/19 13:10,"148 North St, Atlanta, GA 30301" +169879,Lightning Charging Cable,1,14.95,02/21/19 01:04,"398 Ridge St, San Francisco, CA 94016" +169880,AA Batteries (4-pack),2,3.84,02/22/19 21:21,"31 Maple St, Atlanta, GA 30301" +169881,Wired Headphones,1,11.99,02/07/19 21:52,"773 8th St, New York City, NY 10001" +169882,Lightning Charging Cable,1,14.95,02/13/19 21:40,"899 Sunset St, Boston, MA 02215" +169883,AAA Batteries (4-pack),1,2.99,02/20/19 20:07,"844 Cedar St, Austin, TX 73301" +169884,AAA Batteries (4-pack),1,2.99,02/27/19 21:23,"812 5th St, Atlanta, GA 30301" +169885,iPhone,1,700,02/07/19 12:14,"990 Walnut St, Boston, MA 02215" +169886,USB-C Charging Cable,1,11.95,02/18/19 17:13,"37 Pine St, New York City, NY 10001" +169887,AAA Batteries (4-pack),2,2.99,02/26/19 18:31,"484 Jefferson St, New York City, NY 10001" +169888,AA Batteries (4-pack),2,3.84,02/06/19 06:07,"719 Hill St, New York City, NY 10001" +169889,AA Batteries (4-pack),1,3.84,02/18/19 15:56,"645 Spruce St, Boston, MA 02215" +169890,Wired Headphones,2,11.99,02/10/19 17:43,"967 Cedar St, Los Angeles, CA 90001" +169891,AA Batteries (4-pack),1,3.84,02/01/19 09:47,"838 13th St, Atlanta, GA 30301" +169892,27in FHD Monitor,1,149.99,02/19/19 20:51,"6 River St, San Francisco, CA 94016" +169893,Wired Headphones,1,11.99,02/10/19 17:19,"194 Cherry St, Atlanta, GA 30301" +169894,AA Batteries (4-pack),2,3.84,02/11/19 18:58,"761 7th St, New York City, NY 10001" +169895,Wired Headphones,1,11.99,02/16/19 10:40,"392 River St, New York City, NY 10001" +169896,Google Phone,1,600,02/02/19 05:53,"718 Meadow St, Boston, MA 02215" +169897,AAA Batteries (4-pack),1,2.99,02/10/19 15:46,"692 Chestnut St, Seattle, WA 98101" +169898,USB-C Charging Cable,1,11.95,02/08/19 14:58,"564 6th St, Austin, TX 73301" +169899,AA Batteries (4-pack),2,3.84,02/04/19 23:12,"536 Hickory St, Boston, MA 02215" +169900,AAA Batteries (4-pack),3,2.99,02/03/19 17:08,"394 5th St, San Francisco, CA 94016" +169901,USB-C Charging Cable,1,11.95,02/08/19 18:44,"769 6th St, San Francisco, CA 94016" +169902,27in FHD Monitor,1,149.99,02/24/19 13:49,"303 Jackson St, Seattle, WA 98101" +169903,ThinkPad Laptop,1,999.99,02/15/19 21:31,"690 Ridge St, Boston, MA 02215" +169903,Wired Headphones,1,11.99,02/15/19 21:31,"690 Ridge St, Boston, MA 02215" +169904,Wired Headphones,1,11.99,02/25/19 17:17,"837 13th St, San Francisco, CA 94016" +169905,Bose SoundSport Headphones,1,99.99,02/17/19 16:45,"874 12th St, Atlanta, GA 30301" +169906,USB-C Charging Cable,1,11.95,02/17/19 14:12,"458 Adams St, Dallas, TX 75001" +169907,27in FHD Monitor,1,149.99,02/07/19 17:46,"264 10th St, New York City, NY 10001" +169908,AAA Batteries (4-pack),1,2.99,02/02/19 19:54,"815 Lake St, Dallas, TX 75001" +169909,Wired Headphones,2,11.99,02/10/19 13:26,"982 Center St, New York City, NY 10001" +169910,Lightning Charging Cable,1,14.95,02/28/19 22:56,"104 Center St, San Francisco, CA 94016" +169911,Bose SoundSport Headphones,1,99.99,02/09/19 14:24,"682 Madison St, Boston, MA 02215" +169912,USB-C Charging Cable,1,11.95,02/11/19 16:05,"141 North St, Seattle, WA 98101" +169913,iPhone,1,700,02/16/19 00:04,"178 14th St, Dallas, TX 75001" +169914,AA Batteries (4-pack),2,3.84,02/20/19 11:15,"448 Cherry St, Portland, ME 04101" +169915,USB-C Charging Cable,1,11.95,02/18/19 19:33,"654 South St, San Francisco, CA 94016" +169916,Apple Airpods Headphones,1,150,02/27/19 13:15,"327 12th St, San Francisco, CA 94016" +169917,Lightning Charging Cable,1,14.95,02/23/19 21:32,"893 Cherry St, Los Angeles, CA 90001" +169918,Lightning Charging Cable,1,14.95,02/01/19 09:43,"746 Wilson St, Atlanta, GA 30301" +169919,Wired Headphones,1,11.99,02/27/19 18:10,"496 Chestnut St, Seattle, WA 98101" +169920,Lightning Charging Cable,1,14.95,02/21/19 14:30,"758 Spruce St, Los Angeles, CA 90001" +169921,USB-C Charging Cable,1,11.95,02/07/19 12:11,"117 Center St, San Francisco, CA 94016" +169922,Lightning Charging Cable,1,14.95,02/03/19 21:24,"405 Pine St, Atlanta, GA 30301" +169923,Google Phone,1,600,02/27/19 01:25,"161 7th St, Atlanta, GA 30301" +169924,AAA Batteries (4-pack),1,2.99,02/17/19 13:09,"672 Hickory St, Los Angeles, CA 90001" +169925,Wired Headphones,1,11.99,02/13/19 17:53,"735 Center St, New York City, NY 10001" +169926,USB-C Charging Cable,1,11.95,02/19/19 13:18,"827 12th St, San Francisco, CA 94016" +169927,iPhone,1,700,02/10/19 14:59,"923 Hickory St, Boston, MA 02215" +169928,Wired Headphones,2,11.99,02/27/19 18:57,"913 Lake St, Portland, OR 97035" +169929,Lightning Charging Cable,1,14.95,02/28/19 12:46,"353 4th St, San Francisco, CA 94016" +169930,27in FHD Monitor,1,149.99,02/10/19 21:02,"188 Highland St, Portland, OR 97035" +169931,Wired Headphones,1,11.99,02/08/19 20:20,"758 Adams St, New York City, NY 10001" +169932,Bose SoundSport Headphones,1,99.99,02/13/19 00:00,"688 North St, San Francisco, CA 94016" +169933,AAA Batteries (4-pack),1,2.99,02/09/19 21:57,"849 River St, Atlanta, GA 30301" +169934,Flatscreen TV,1,300,02/22/19 23:51,"108 Dogwood St, Portland, OR 97035" +169935,Lightning Charging Cable,1,14.95,02/07/19 01:01,"686 5th St, Boston, MA 02215" +169936,AAA Batteries (4-pack),8,2.99,02/25/19 11:22,"530 Maple St, New York City, NY 10001" +169937,LG Dryer,1,600.0,02/08/19 18:41,"876 Highland St, Atlanta, GA 30301" +169938,USB-C Charging Cable,1,11.95,02/01/19 21:27,"224 Highland St, San Francisco, CA 94016" +169939,Macbook Pro Laptop,1,1700,02/05/19 10:54,"838 Walnut St, Seattle, WA 98101" +169940,Flatscreen TV,1,300,02/08/19 01:00,"443 Forest St, Austin, TX 73301" +169941,AAA Batteries (4-pack),2,2.99,02/12/19 17:49,"264 Elm St, Dallas, TX 75001" +169942,27in FHD Monitor,1,149.99,02/01/19 12:03,"206 2nd St, Seattle, WA 98101" +169943,ThinkPad Laptop,1,999.99,02/02/19 08:52,"856 Main St, Los Angeles, CA 90001" +169944,27in FHD Monitor,1,149.99,02/13/19 06:31,"643 Washington St, San Francisco, CA 94016" +169945,USB-C Charging Cable,1,11.95,02/22/19 11:12,"615 Lake St, New York City, NY 10001" +169946,Lightning Charging Cable,1,14.95,02/02/19 22:08,"73 Cedar St, New York City, NY 10001" +169947,Wired Headphones,1,11.99,02/10/19 23:12,"615 13th St, New York City, NY 10001" +169948,AAA Batteries (4-pack),1,2.99,02/28/19 17:48,"945 Jefferson St, Boston, MA 02215" +169949,AAA Batteries (4-pack),2,2.99,02/08/19 15:52,"986 Jefferson St, San Francisco, CA 94016" +169950,Macbook Pro Laptop,1,1700,02/14/19 23:06,"679 Chestnut St, New York City, NY 10001" +169951,USB-C Charging Cable,1,11.95,02/17/19 19:12,"728 Hill St, New York City, NY 10001" +169952,AAA Batteries (4-pack),1,2.99,02/14/19 12:50,"36 6th St, San Francisco, CA 94016" +169953,Apple Airpods Headphones,1,150,02/15/19 00:04,"11 5th St, San Francisco, CA 94016" +169954,Apple Airpods Headphones,1,150,03/01/19 01:18,"534 River St, San Francisco, CA 94016" +169955,Lightning Charging Cable,1,14.95,02/02/19 14:23,"300 Highland St, Austin, TX 73301" +169956,Wired Headphones,1,11.99,02/04/19 00:31,"723 Elm St, Boston, MA 02215" +169957,USB-C Charging Cable,1,11.95,02/11/19 14:18,"485 5th St, Los Angeles, CA 90001" +169958,AAA Batteries (4-pack),1,2.99,02/10/19 22:27,"763 7th St, San Francisco, CA 94016" +169959,Bose SoundSport Headphones,1,99.99,02/21/19 15:00,"989 Meadow St, Los Angeles, CA 90001" +169960,27in FHD Monitor,1,149.99,02/04/19 23:47,"412 Lincoln St, Austin, TX 73301" +169961,Lightning Charging Cable,1,14.95,02/08/19 13:29,"900 Center St, San Francisco, CA 94016" +169962,USB-C Charging Cable,1,11.95,02/06/19 13:01,"498 Willow St, Dallas, TX 75001" +169963,AAA Batteries (4-pack),1,2.99,02/15/19 17:19,"547 Church St, Dallas, TX 75001" +169964,Lightning Charging Cable,1,14.95,02/02/19 11:24,"237 Chestnut St, Atlanta, GA 30301" +169965,USB-C Charging Cable,1,11.95,02/01/19 20:49,"797 South St, San Francisco, CA 94016" +169966,AA Batteries (4-pack),1,3.84,02/07/19 19:16,"557 8th St, Los Angeles, CA 90001" +169967,Lightning Charging Cable,1,14.95,02/20/19 07:13,"927 Church St, Dallas, TX 75001" +169968,USB-C Charging Cable,1,11.95,02/10/19 12:06,"809 Lakeview St, Boston, MA 02215" +169969,Wired Headphones,1,11.99,02/13/19 15:53,"547 Park St, San Francisco, CA 94016" +169970,Lightning Charging Cable,1,14.95,02/13/19 16:44,"993 Lake St, San Francisco, CA 94016" +169971,Macbook Pro Laptop,1,1700,02/12/19 16:56,"249 Lincoln St, New York City, NY 10001" +169972,Bose SoundSport Headphones,1,99.99,02/05/19 18:10,"918 Lakeview St, Seattle, WA 98101" +169973,Wired Headphones,1,11.99,02/24/19 11:07,"914 11th St, Boston, MA 02215" +169974,AAA Batteries (4-pack),1,2.99,02/16/19 13:47,"204 Madison St, San Francisco, CA 94016" +169975,AA Batteries (4-pack),2,3.84,02/03/19 22:10,"875 8th St, Austin, TX 73301" +169975,Wired Headphones,1,11.99,02/03/19 22:10,"875 8th St, Austin, TX 73301" +169976,Bose SoundSport Headphones,1,99.99,02/04/19 08:23,"859 Johnson St, Los Angeles, CA 90001" +169977,27in FHD Monitor,1,149.99,02/01/19 07:21,"145 Chestnut St, Atlanta, GA 30301" +169978,AAA Batteries (4-pack),2,2.99,02/16/19 09:54,"434 Cherry St, Los Angeles, CA 90001" +169979,iPhone,1,700,02/28/19 22:28,"975 Wilson St, New York City, NY 10001" +169979,Apple Airpods Headphones,1,150,02/28/19 22:28,"975 Wilson St, New York City, NY 10001" +169980,iPhone,1,700,02/02/19 17:58,"732 Johnson St, Austin, TX 73301" +169981,27in FHD Monitor,1,149.99,02/12/19 10:25,"22 12th St, Portland, OR 97035" +169982,AA Batteries (4-pack),1,3.84,02/03/19 10:09,"508 Hickory St, Los Angeles, CA 90001" +169983,AAA Batteries (4-pack),1,2.99,02/12/19 10:56,"196 North St, Boston, MA 02215" +169984,AAA Batteries (4-pack),1,2.99,02/17/19 09:13,"259 Johnson St, San Francisco, CA 94016" +169985,USB-C Charging Cable,1,11.95,02/11/19 07:09,"801 8th St, Boston, MA 02215" +169986,USB-C Charging Cable,1,11.95,02/15/19 12:26,"673 Jackson St, Boston, MA 02215" +169987,Lightning Charging Cable,1,14.95,02/04/19 10:08,"344 Jackson St, San Francisco, CA 94016" +169988,Bose SoundSport Headphones,1,99.99,02/07/19 08:21,"515 Elm St, Portland, OR 97035" +169989,AAA Batteries (4-pack),2,2.99,02/11/19 21:51,"226 Hickory St, New York City, NY 10001" +169990,AAA Batteries (4-pack),2,2.99,02/02/19 13:43,"7 8th St, Portland, OR 97035" +169991,Lightning Charging Cable,1,14.95,02/18/19 20:21,"789 1st St, San Francisco, CA 94016" +169992,Flatscreen TV,1,300,02/26/19 15:12,"260 Maple St, San Francisco, CA 94016" +169993,Apple Airpods Headphones,1,150,02/02/19 16:53,"427 Maple St, Portland, OR 97035" +169994,Wired Headphones,1,11.99,02/15/19 13:25,"469 Hickory St, San Francisco, CA 94016" +169995,USB-C Charging Cable,1,11.95,02/07/19 16:52,"450 Chestnut St, San Francisco, CA 94016" +169996,AA Batteries (4-pack),2,3.84,02/12/19 12:44,"542 Highland St, San Francisco, CA 94016" +169997,27in 4K Gaming Monitor,1,389.99,02/13/19 17:03,"471 8th St, San Francisco, CA 94016" +169998,LG Dryer,1,600.0,02/09/19 07:55,"711 North St, Los Angeles, CA 90001" +169999,AA Batteries (4-pack),1,3.84,02/02/19 16:36,"701 4th St, Dallas, TX 75001" +170000,AAA Batteries (4-pack),1,2.99,02/13/19 06:05,"573 Wilson St, San Francisco, CA 94016" +170001,AA Batteries (4-pack),1,3.84,02/12/19 10:19,"934 Center St, New York City, NY 10001" +170002,Macbook Pro Laptop,1,1700,02/13/19 11:55,"394 Sunset St, San Francisco, CA 94016" +170003,AA Batteries (4-pack),1,3.84,02/05/19 12:33,"114 11th St, New York City, NY 10001" +170004,AA Batteries (4-pack),1,3.84,02/10/19 07:35,"720 Main St, Los Angeles, CA 90001" +170005,Bose SoundSport Headphones,1,99.99,02/11/19 16:16,"116 2nd St, Boston, MA 02215" +170006,20in Monitor,1,109.99,02/24/19 15:19,"556 Wilson St, Atlanta, GA 30301" +170007,USB-C Charging Cable,1,11.95,02/13/19 13:00,"995 Highland St, San Francisco, CA 94016" +170008,34in Ultrawide Monitor,1,379.99,02/22/19 17:26,"823 Jefferson St, Atlanta, GA 30301" +170009,USB-C Charging Cable,1,11.95,02/18/19 20:57,"841 8th St, Portland, OR 97035" +170010,Apple Airpods Headphones,1,150,02/15/19 13:58,"125 North St, Austin, TX 73301" +170011,AA Batteries (4-pack),1,3.84,02/24/19 17:17,"552 Washington St, Portland, ME 04101" +170012,AA Batteries (4-pack),1,3.84,02/13/19 23:30,"467 Chestnut St, San Francisco, CA 94016" +170013,USB-C Charging Cable,1,11.95,02/11/19 18:29,"71 Madison St, Dallas, TX 75001" +170014,Wired Headphones,1,11.99,02/10/19 18:27,"574 Highland St, San Francisco, CA 94016" +170015,Flatscreen TV,1,300,02/07/19 18:25,"757 Johnson St, New York City, NY 10001" +170016,Lightning Charging Cable,1,14.95,02/20/19 13:06,"344 Jefferson St, Los Angeles, CA 90001" +170017,Bose SoundSport Headphones,1,99.99,02/10/19 15:04,"39 Church St, Los Angeles, CA 90001" +170018,USB-C Charging Cable,1,11.95,02/14/19 06:39,"641 5th St, San Francisco, CA 94016" +170019,USB-C Charging Cable,1,11.95,02/25/19 16:04,"981 2nd St, Portland, OR 97035" +170020,Lightning Charging Cable,1,14.95,02/27/19 21:09,"153 12th St, Los Angeles, CA 90001" +170021,Google Phone,1,600,02/20/19 16:44,"413 7th St, Boston, MA 02215" +170021,USB-C Charging Cable,1,11.95,02/20/19 16:44,"413 7th St, Boston, MA 02215" +170022,27in 4K Gaming Monitor,1,389.99,02/04/19 18:27,"86 Meadow St, Los Angeles, CA 90001" +170023,AA Batteries (4-pack),1,3.84,02/19/19 20:57,"356 Lincoln St, Seattle, WA 98101" +170024,Google Phone,1,600,02/16/19 15:19,"831 Main St, San Francisco, CA 94016" +170025,Google Phone,1,600,02/08/19 20:54,"903 12th St, Austin, TX 73301" +170026,USB-C Charging Cable,1,11.95,02/03/19 06:56,"95 South St, Seattle, WA 98101" +170027,Macbook Pro Laptop,1,1700,02/17/19 11:41,"119 Jackson St, San Francisco, CA 94016" +170028,Macbook Pro Laptop,1,1700,02/01/19 17:27,"414 Church St, Boston, MA 02215" +170029,LG Washing Machine,1,600.0,02/08/19 14:40,"276 Lake St, Portland, ME 04101" +170030,27in FHD Monitor,1,149.99,02/23/19 21:29,"913 South St, San Francisco, CA 94016" +170031,ThinkPad Laptop,1,999.99,02/24/19 23:54,"335 13th St, Dallas, TX 75001" +170032,Apple Airpods Headphones,1,150,02/20/19 02:11,"689 Jefferson St, Boston, MA 02215" +170033,AAA Batteries (4-pack),1,2.99,02/17/19 23:27,"145 7th St, New York City, NY 10001" +170034,USB-C Charging Cable,1,11.95,02/23/19 13:01,"212 Jefferson St, New York City, NY 10001" +170035,Macbook Pro Laptop,1,1700,02/08/19 00:47,"790 Adams St, San Francisco, CA 94016" +170036,Wired Headphones,1,11.99,02/26/19 21:44,"881 Elm St, Boston, MA 02215" +170037,Wired Headphones,2,11.99,02/27/19 22:27,"158 Cedar St, Portland, OR 97035" +170038,Google Phone,1,600,02/04/19 10:20,"397 Willow St, San Francisco, CA 94016" +170039,Wired Headphones,1,11.99,02/09/19 19:26,"934 Park St, Los Angeles, CA 90001" +170040,AA Batteries (4-pack),2,3.84,02/17/19 17:30,"401 1st St, Los Angeles, CA 90001" +170041,Wired Headphones,1,11.99,02/04/19 17:47,"447 Meadow St, Portland, OR 97035" +170042,Apple Airpods Headphones,1,150,02/21/19 20:32,"211 River St, Atlanta, GA 30301" +170043,USB-C Charging Cable,2,11.95,02/25/19 10:47,"363 11th St, Portland, OR 97035" +170044,ThinkPad Laptop,1,999.99,02/12/19 19:35,"21 Chestnut St, San Francisco, CA 94016" +170045,Bose SoundSport Headphones,1,99.99,02/19/19 23:03,"514 West St, Boston, MA 02215" +170046,Bose SoundSport Headphones,1,99.99,02/16/19 20:39,"919 Hill St, Austin, TX 73301" +170047,Lightning Charging Cable,1,14.95,02/11/19 16:40,"942 Willow St, Seattle, WA 98101" +170048,Lightning Charging Cable,2,14.95,02/27/19 17:59,"171 5th St, Boston, MA 02215" +170049,Apple Airpods Headphones,1,150,02/27/19 14:46,"760 Sunset St, San Francisco, CA 94016" +170050,AA Batteries (4-pack),1,3.84,02/14/19 10:27,"59 11th St, San Francisco, CA 94016" +170051,Wired Headphones,1,11.99,02/08/19 00:55,"229 Cherry St, San Francisco, CA 94016" +170052,USB-C Charging Cable,1,11.95,02/24/19 17:34,"713 10th St, San Francisco, CA 94016" +170053,Apple Airpods Headphones,1,150,02/12/19 18:36,"581 Spruce St, Seattle, WA 98101" +170054,Lightning Charging Cable,1,14.95,02/24/19 09:36,"694 West St, New York City, NY 10001" +170055,AAA Batteries (4-pack),1,2.99,02/27/19 14:21,"736 6th St, San Francisco, CA 94016" +170056,AA Batteries (4-pack),1,3.84,02/06/19 15:50,"292 Lakeview St, New York City, NY 10001" +170057,AAA Batteries (4-pack),1,2.99,02/04/19 16:38,"5 12th St, Atlanta, GA 30301" +170058,Lightning Charging Cable,1,14.95,02/23/19 23:38,"238 Hill St, Austin, TX 73301" +170059,Lightning Charging Cable,1,14.95,02/17/19 17:42,"82 Highland St, Austin, TX 73301" +170060,iPhone,1,700,02/04/19 10:52,"581 Spruce St, Los Angeles, CA 90001" +170061,Lightning Charging Cable,1,14.95,02/02/19 20:03,"108 Hill St, San Francisco, CA 94016" +170062,Lightning Charging Cable,1,14.95,02/06/19 19:27,"74 Sunset St, New York City, NY 10001" +170063,Google Phone,1,600,02/08/19 15:51,"226 South St, San Francisco, CA 94016" +170063,Wired Headphones,1,11.99,02/08/19 15:51,"226 South St, San Francisco, CA 94016" +170064,Wired Headphones,1,11.99,02/08/19 11:57,"318 Cedar St, San Francisco, CA 94016" +170065,27in FHD Monitor,1,149.99,02/23/19 06:24,"335 Madison St, Portland, OR 97035" +170066,AA Batteries (4-pack),1,3.84,02/24/19 22:34,"603 Johnson St, San Francisco, CA 94016" +170067,Macbook Pro Laptop,1,1700,02/01/19 09:17,"57 Hickory St, San Francisco, CA 94016" +170068,Wired Headphones,2,11.99,02/13/19 20:58,"516 8th St, San Francisco, CA 94016" +170069,Bose SoundSport Headphones,1,99.99,02/01/19 22:40,"877 North St, Atlanta, GA 30301" +170070,Google Phone,1,600,02/12/19 03:26,"797 Sunset St, Los Angeles, CA 90001" +170071,Lightning Charging Cable,1,14.95,02/10/19 12:52,"898 Cherry St, New York City, NY 10001" +170072,Bose SoundSport Headphones,1,99.99,02/05/19 20:36,"530 Park St, Dallas, TX 75001" +170073,Wired Headphones,1,11.99,02/11/19 18:43,"283 13th St, Atlanta, GA 30301" +170074,Lightning Charging Cable,2,14.95,02/15/19 21:40,"989 Elm St, Austin, TX 73301" +170075,Apple Airpods Headphones,1,150,02/25/19 15:50,"654 Chestnut St, Los Angeles, CA 90001" +170076,27in FHD Monitor,1,149.99,02/14/19 11:25,"987 Spruce St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +170077,20in Monitor,1,109.99,02/03/19 06:32,"251 9th St, Dallas, TX 75001" +170078,Lightning Charging Cable,1,14.95,02/02/19 11:49,"445 Hill St, Seattle, WA 98101" +170079,27in FHD Monitor,1,149.99,02/03/19 16:42,"721 5th St, Dallas, TX 75001" +170080,Apple Airpods Headphones,1,150,02/23/19 09:06,"297 Main St, San Francisco, CA 94016" +170081,Macbook Pro Laptop,1,1700,02/26/19 18:37,"752 9th St, Atlanta, GA 30301" +170082,AA Batteries (4-pack),3,3.84,02/09/19 20:03,"728 Lakeview St, Atlanta, GA 30301" +170083,Bose SoundSport Headphones,1,99.99,02/27/19 02:00,"943 Forest St, San Francisco, CA 94016" +170084,Wired Headphones,1,11.99,02/21/19 08:25,"141 2nd St, New York City, NY 10001" +170085,Flatscreen TV,1,300,02/24/19 08:41,"74 8th St, San Francisco, CA 94016" +170086,27in FHD Monitor,1,149.99,02/25/19 22:49,"398 Meadow St, Boston, MA 02215" +170087,Flatscreen TV,1,300,02/24/19 18:54,"980 Hill St, San Francisco, CA 94016" +170088,USB-C Charging Cable,1,11.95,02/20/19 14:18,"737 Park St, San Francisco, CA 94016" +170089,34in Ultrawide Monitor,1,379.99,02/05/19 16:32,"733 4th St, Dallas, TX 75001" +170090,Wired Headphones,2,11.99,02/08/19 14:27,"485 Adams St, Los Angeles, CA 90001" +170091,Wired Headphones,1,11.99,02/16/19 11:30,"383 7th St, Boston, MA 02215" +170092,USB-C Charging Cable,1,11.95,02/19/19 20:58,"657 Center St, Dallas, TX 75001" +170093,AA Batteries (4-pack),1,3.84,02/16/19 21:32,"268 Ridge St, Los Angeles, CA 90001" +170094,ThinkPad Laptop,1,999.99,02/14/19 10:38,"188 Forest St, San Francisco, CA 94016" +170095,Wired Headphones,1,11.99,02/28/19 19:19,"620 5th St, San Francisco, CA 94016" +170096,AAA Batteries (4-pack),1,2.99,02/07/19 19:07,"298 Pine St, San Francisco, CA 94016" +170097,AA Batteries (4-pack),2,3.84,02/07/19 11:20,"514 Maple St, Atlanta, GA 30301" +170098,AA Batteries (4-pack),2,3.84,02/10/19 15:12,"524 7th St, Los Angeles, CA 90001" +170099,iPhone,1,700,02/10/19 17:53,"454 Adams St, San Francisco, CA 94016" +170100,AAA Batteries (4-pack),1,2.99,02/26/19 11:58,"148 4th St, Dallas, TX 75001" +170101,Lightning Charging Cable,1,14.95,02/02/19 20:28,"246 Lakeview St, San Francisco, CA 94016" +170102,Lightning Charging Cable,2,14.95,02/27/19 13:09,"216 Lakeview St, Los Angeles, CA 90001" +170103,Wired Headphones,1,11.99,02/26/19 19:18,"510 Lake St, Atlanta, GA 30301" +170104,34in Ultrawide Monitor,1,379.99,02/05/19 16:45,"487 River St, San Francisco, CA 94016" +170105,Bose SoundSport Headphones,1,99.99,02/07/19 18:48,"179 Highland St, Los Angeles, CA 90001" +170106,Wired Headphones,1,11.99,02/09/19 05:51,"805 Park St, New York City, NY 10001" +170107,27in FHD Monitor,1,149.99,02/10/19 15:38,"181 Cherry St, Seattle, WA 98101" +170108,Apple Airpods Headphones,1,150,02/20/19 20:21,"76 Jefferson St, Portland, OR 97035" +170109,Wired Headphones,1,11.99,02/01/19 23:04,"379 River St, Seattle, WA 98101" +170110,AAA Batteries (4-pack),1,2.99,02/19/19 01:31,"450 Maple St, Atlanta, GA 30301" +170111,Apple Airpods Headphones,1,150,02/28/19 22:19,"707 2nd St, New York City, NY 10001" +170112,Macbook Pro Laptop,1,1700,02/27/19 11:41,"979 Meadow St, Dallas, TX 75001" +170113,Lightning Charging Cable,1,14.95,02/14/19 16:55,"335 Sunset St, New York City, NY 10001" +170114,20in Monitor,1,109.99,02/19/19 13:49,"120 Center St, Dallas, TX 75001" +170115,Flatscreen TV,1,300,02/01/19 20:30,"914 South St, Austin, TX 73301" +170116,Vareebadd Phone,1,400,02/21/19 14:22,"737 Cedar St, New York City, NY 10001" +170117,USB-C Charging Cable,1,11.95,02/16/19 11:05,"883 Wilson St, Seattle, WA 98101" +170118,27in 4K Gaming Monitor,1,389.99,02/24/19 10:00,"643 Willow St, New York City, NY 10001" +170119,Apple Airpods Headphones,1,150,02/21/19 10:18,"284 Park St, Los Angeles, CA 90001" +170120,Bose SoundSport Headphones,1,99.99,02/20/19 17:45,"615 1st St, Los Angeles, CA 90001" +170121,Macbook Pro Laptop,1,1700,02/13/19 07:53,"19 9th St, Los Angeles, CA 90001" +170122,Wired Headphones,1,11.99,02/11/19 12:01,"935 7th St, Portland, OR 97035" +170123,27in 4K Gaming Monitor,1,389.99,02/21/19 17:46,"212 West St, Boston, MA 02215" +170124,iPhone,1,700,02/20/19 11:09,"135 4th St, New York City, NY 10001" +170125,AA Batteries (4-pack),3,3.84,02/25/19 23:27,"438 Church St, Boston, MA 02215" +170126,Lightning Charging Cable,1,14.95,02/25/19 10:02,"50 Cedar St, New York City, NY 10001" +170126,Macbook Pro Laptop,1,1700,02/25/19 10:02,"50 Cedar St, New York City, NY 10001" +170127,27in FHD Monitor,1,149.99,02/09/19 17:00,"909 Ridge St, Los Angeles, CA 90001" +170128,Flatscreen TV,1,300,02/28/19 21:49,"598 4th St, Portland, OR 97035" +170129,USB-C Charging Cable,1,11.95,02/22/19 17:32,"964 Spruce St, Los Angeles, CA 90001" +170130,ThinkPad Laptop,1,999.99,02/08/19 23:46,"582 River St, San Francisco, CA 94016" +170131,27in 4K Gaming Monitor,1,389.99,02/23/19 20:36,"423 2nd St, Los Angeles, CA 90001" +170132,27in FHD Monitor,1,149.99,02/27/19 14:50,"321 Jefferson St, Seattle, WA 98101" +170133,AAA Batteries (4-pack),1,2.99,02/06/19 23:57,"32 Lakeview St, San Francisco, CA 94016" +170134,Google Phone,1,600,02/22/19 22:40,"558 Elm St, Dallas, TX 75001" +170134,Bose SoundSport Headphones,1,99.99,02/22/19 22:40,"558 Elm St, Dallas, TX 75001" +170134,Wired Headphones,1,11.99,02/22/19 22:40,"558 Elm St, Dallas, TX 75001" +170135,AA Batteries (4-pack),1,3.84,02/14/19 11:00,"106 9th St, Los Angeles, CA 90001" +170136,Lightning Charging Cable,1,14.95,02/25/19 01:30,"30 Main St, San Francisco, CA 94016" +170137,USB-C Charging Cable,1,11.95,02/27/19 18:29,"448 Cedar St, Dallas, TX 75001" +170138,AA Batteries (4-pack),1,3.84,02/16/19 22:52,"452 7th St, Dallas, TX 75001" +170139,AA Batteries (4-pack),1,3.84,02/27/19 12:46,"79 13th St, Portland, OR 97035" +170140,Wired Headphones,1,11.99,02/11/19 12:41,"145 Jefferson St, Los Angeles, CA 90001" +170141,AA Batteries (4-pack),1,3.84,02/10/19 10:45,"18 Chestnut St, Seattle, WA 98101" +170142,34in Ultrawide Monitor,1,379.99,02/11/19 18:29,"956 1st St, San Francisco, CA 94016" +170143,Lightning Charging Cable,1,14.95,02/06/19 15:27,"170 Main St, Los Angeles, CA 90001" +170144,Bose SoundSport Headphones,1,99.99,02/25/19 12:58,"259 Walnut St, Dallas, TX 75001" +170145,Lightning Charging Cable,1,14.95,02/14/19 21:18,"62 2nd St, San Francisco, CA 94016" +170146,Lightning Charging Cable,2,14.95,02/25/19 15:40,"763 Lake St, Dallas, TX 75001" +170147,Bose SoundSport Headphones,1,99.99,02/22/19 21:32,"797 2nd St, Portland, ME 04101" +170148,AA Batteries (4-pack),3,3.84,02/05/19 00:54,"414 Cherry St, New York City, NY 10001" +170149,LG Washing Machine,1,600.0,02/26/19 21:47,"27 Center St, Boston, MA 02215" +170150,USB-C Charging Cable,1,11.95,02/28/19 12:42,"415 Willow St, Los Angeles, CA 90001" +170151,AA Batteries (4-pack),2,3.84,02/12/19 23:15,"79 Meadow St, Los Angeles, CA 90001" +170152,27in FHD Monitor,1,149.99,02/12/19 16:53,"473 5th St, San Francisco, CA 94016" +170153,Macbook Pro Laptop,1,1700,02/25/19 18:07,"906 Sunset St, Austin, TX 73301" +170154,USB-C Charging Cable,1,11.95,02/01/19 15:45,"336 Jackson St, Seattle, WA 98101" +170155,AA Batteries (4-pack),2,3.84,02/21/19 13:04,"138 Walnut St, Boston, MA 02215" +170156,Lightning Charging Cable,1,14.95,02/28/19 08:34,"317 Highland St, Dallas, TX 75001" +170157,Wired Headphones,1,11.99,02/20/19 10:56,"442 10th St, San Francisco, CA 94016" +170158,Lightning Charging Cable,2,14.95,02/06/19 17:35,"868 North St, Dallas, TX 75001" +170159,Wired Headphones,1,11.99,02/11/19 10:40,"401 5th St, Portland, OR 97035" +170160,27in FHD Monitor,1,149.99,02/13/19 13:59,"999 1st St, San Francisco, CA 94016" +170161,Lightning Charging Cable,1,14.95,02/10/19 22:07,"56 Hill St, Seattle, WA 98101" +170162,27in 4K Gaming Monitor,1,389.99,02/02/19 23:48,"516 Madison St, Austin, TX 73301" +170163,Lightning Charging Cable,1,14.95,02/13/19 13:04,"274 Pine St, Boston, MA 02215" +170164,Bose SoundSport Headphones,1,99.99,02/27/19 13:31,"358 7th St, Los Angeles, CA 90001" +170165,Google Phone,1,600,02/13/19 13:49,"20 Park St, San Francisco, CA 94016" +170165,USB-C Charging Cable,1,11.95,02/13/19 13:49,"20 Park St, San Francisco, CA 94016" +170166,USB-C Charging Cable,1,11.95,02/17/19 22:32,"102 Dogwood St, Los Angeles, CA 90001" +170167,AA Batteries (4-pack),1,3.84,02/25/19 07:22,"860 6th St, Austin, TX 73301" +170168,AAA Batteries (4-pack),2,2.99,02/01/19 11:13,"946 Center St, San Francisco, CA 94016" +170169,AAA Batteries (4-pack),1,2.99,02/25/19 16:02,"345 Wilson St, San Francisco, CA 94016" +170170,Wired Headphones,1,11.99,02/01/19 18:17,"829 Forest St, San Francisco, CA 94016" +170171,Bose SoundSport Headphones,1,99.99,02/19/19 18:28,"830 Chestnut St, Boston, MA 02215" +170172,27in FHD Monitor,1,149.99,02/02/19 09:49,"864 4th St, Portland, OR 97035" +170173,AAA Batteries (4-pack),1,2.99,02/15/19 11:40,"250 Sunset St, Seattle, WA 98101" +170174,Wired Headphones,1,11.99,02/15/19 13:54,"888 14th St, Boston, MA 02215" +170175,Apple Airpods Headphones,1,150,02/03/19 11:06,"918 Hill St, Los Angeles, CA 90001" +170176,Macbook Pro Laptop,1,1700,02/18/19 21:01,"504 Church St, Seattle, WA 98101" +170177,34in Ultrawide Monitor,1,379.99,02/26/19 12:05,"309 Dogwood St, Portland, OR 97035" +170178,AAA Batteries (4-pack),1,2.99,02/01/19 12:17,"689 1st St, New York City, NY 10001" +170179,USB-C Charging Cable,1,11.95,02/26/19 10:34,"430 7th St, Dallas, TX 75001" +170180,27in FHD Monitor,1,149.99,02/14/19 15:46,"578 Walnut St, San Francisco, CA 94016" +170180,USB-C Charging Cable,1,11.95,02/14/19 15:46,"578 Walnut St, San Francisco, CA 94016" +170181,Google Phone,1,600,02/06/19 14:42,"464 4th St, New York City, NY 10001" +170181,Wired Headphones,1,11.99,02/06/19 14:42,"464 4th St, New York City, NY 10001" +170182,AA Batteries (4-pack),1,3.84,02/16/19 18:07,"814 Cherry St, New York City, NY 10001" +170183,AA Batteries (4-pack),1,3.84,02/03/19 23:00,"880 13th St, San Francisco, CA 94016" +170184,Flatscreen TV,1,300,02/07/19 14:31,"694 Church St, San Francisco, CA 94016" +170185,Apple Airpods Headphones,1,150,02/21/19 12:55,"297 Maple St, Dallas, TX 75001" +170186,Macbook Pro Laptop,1,1700,02/04/19 09:52,"171 Chestnut St, Los Angeles, CA 90001" +170187,AA Batteries (4-pack),1,3.84,02/21/19 13:50,"36 Jackson St, San Francisco, CA 94016" +170188,USB-C Charging Cable,1,11.95,02/02/19 18:30,"592 6th St, New York City, NY 10001" +170189,Wired Headphones,1,11.99,02/15/19 14:46,"436 Church St, San Francisco, CA 94016" +170190,34in Ultrawide Monitor,1,379.99,02/03/19 14:20,"994 Sunset St, Dallas, TX 75001" +170191,AAA Batteries (4-pack),1,2.99,02/06/19 14:59,"676 14th St, Portland, OR 97035" +170192,Apple Airpods Headphones,1,150,02/22/19 09:16,"57 11th St, San Francisco, CA 94016" +170193,AAA Batteries (4-pack),1,2.99,02/26/19 11:47,"297 1st St, Austin, TX 73301" +170194,Lightning Charging Cable,1,14.95,02/15/19 14:47,"239 Lake St, Portland, OR 97035" +170195,Apple Airpods Headphones,1,150,02/27/19 17:21,"819 11th St, Los Angeles, CA 90001" +170196,AAA Batteries (4-pack),2,2.99,02/02/19 16:01,"823 12th St, Los Angeles, CA 90001" +170197,Apple Airpods Headphones,2,150,02/06/19 09:44,"994 River St, New York City, NY 10001" +170198,AAA Batteries (4-pack),1,2.99,02/24/19 18:43,"811 Center St, Dallas, TX 75001" +170199,Bose SoundSport Headphones,1,99.99,02/20/19 21:27,"863 North St, New York City, NY 10001" +170200,USB-C Charging Cable,1,11.95,02/27/19 18:28,"151 Johnson St, Atlanta, GA 30301" +170201,Flatscreen TV,1,300,02/14/19 20:30,"867 Hill St, Los Angeles, CA 90001" +170202,USB-C Charging Cable,1,11.95,02/05/19 14:18,"457 Ridge St, Boston, MA 02215" +170203,AA Batteries (4-pack),1,3.84,02/24/19 22:09,"341 7th St, Los Angeles, CA 90001" +170204,USB-C Charging Cable,1,11.95,02/09/19 16:15,"80 10th St, New York City, NY 10001" +170205,AA Batteries (4-pack),1,3.84,02/08/19 21:28,"620 Dogwood St, San Francisco, CA 94016" +170206,Bose SoundSport Headphones,1,99.99,02/28/19 14:18,"320 13th St, San Francisco, CA 94016" +170207,Apple Airpods Headphones,1,150,02/12/19 15:56,"208 Lake St, Los Angeles, CA 90001" +170208,AA Batteries (4-pack),1,3.84,02/22/19 22:45,"270 Lake St, New York City, NY 10001" +170209,iPhone,1,700,02/25/19 17:57,"612 4th St, Austin, TX 73301" +170209,Apple Airpods Headphones,1,150,02/25/19 17:57,"612 4th St, Austin, TX 73301" +170210,USB-C Charging Cable,1,11.95,02/12/19 11:26,"174 14th St, Portland, OR 97035" +170211,Apple Airpods Headphones,1,150,02/24/19 10:01,"892 Spruce St, Seattle, WA 98101" +170212,ThinkPad Laptop,1,999.99,02/18/19 17:40,"569 Washington St, New York City, NY 10001" +170213,27in FHD Monitor,1,149.99,02/25/19 22:02,"45 Jackson St, San Francisco, CA 94016" +170214,Apple Airpods Headphones,1,150,02/23/19 09:07,"153 River St, Dallas, TX 75001" +170215,Wired Headphones,1,11.99,02/14/19 16:28,"971 Cherry St, Los Angeles, CA 90001" +170216,USB-C Charging Cable,1,11.95,02/03/19 09:17,"436 Adams St, Portland, OR 97035" +170217,Wired Headphones,1,11.99,02/09/19 12:12,"532 West St, New York City, NY 10001" +170218,27in FHD Monitor,1,149.99,02/17/19 17:21,"823 Pine St, Boston, MA 02215" +170219,Macbook Pro Laptop,1,1700,02/10/19 12:43,"69 7th St, Los Angeles, CA 90001" +170220,USB-C Charging Cable,1,11.95,02/26/19 15:04,"515 Sunset St, San Francisco, CA 94016" +170220,AA Batteries (4-pack),1,3.84,02/26/19 15:04,"515 Sunset St, San Francisco, CA 94016" +170221,Apple Airpods Headphones,1,150,02/16/19 20:31,"328 River St, Boston, MA 02215" +170222,AAA Batteries (4-pack),3,2.99,02/14/19 01:42,"341 Dogwood St, Los Angeles, CA 90001" +170223,Lightning Charging Cable,1,14.95,02/25/19 19:59,"707 Pine St, San Francisco, CA 94016" +170224,Apple Airpods Headphones,1,150,02/07/19 08:30,"341 Park St, New York City, NY 10001" +170225,AA Batteries (4-pack),1,3.84,02/19/19 16:12,"690 Pine St, Boston, MA 02215" +170226,AAA Batteries (4-pack),2,2.99,02/12/19 13:51,"413 Lincoln St, New York City, NY 10001" +170227,USB-C Charging Cable,1,11.95,02/27/19 15:18,"926 Park St, Los Angeles, CA 90001" +170228,Apple Airpods Headphones,1,150,02/09/19 12:16,"472 Meadow St, San Francisco, CA 94016" +170229,Flatscreen TV,1,300,02/11/19 15:21,"943 Chestnut St, Boston, MA 02215" +170230,Apple Airpods Headphones,1,150,02/17/19 06:23,"248 Maple St, Los Angeles, CA 90001" +170231,USB-C Charging Cable,2,11.95,02/25/19 00:01,"19 Cherry St, Boston, MA 02215" +170232,Macbook Pro Laptop,1,1700,02/22/19 20:06,"536 Main St, Atlanta, GA 30301" +170233,iPhone,1,700,02/09/19 15:12,"529 Park St, Boston, MA 02215" +170234,20in Monitor,1,109.99,02/05/19 17:32,"235 Spruce St, Atlanta, GA 30301" +170235,Google Phone,1,600,02/09/19 23:11,"81 Maple St, Atlanta, GA 30301" +170236,Apple Airpods Headphones,1,150,02/18/19 19:38,"461 6th St, San Francisco, CA 94016" +170237,USB-C Charging Cable,1,11.95,02/25/19 19:53,"550 9th St, New York City, NY 10001" +170238,AAA Batteries (4-pack),1,2.99,02/07/19 14:49,"91 Washington St, Portland, OR 97035" +170239,34in Ultrawide Monitor,1,379.99,02/07/19 00:07,"235 Jefferson St, San Francisco, CA 94016" +170240,AA Batteries (4-pack),3,3.84,02/14/19 21:28,"978 7th St, Los Angeles, CA 90001" +170241,34in Ultrawide Monitor,1,379.99,02/02/19 17:04,"235 Forest St, New York City, NY 10001" +170242,LG Dryer,1,600.0,02/28/19 18:45,"427 West St, San Francisco, CA 94016" +170243,Wired Headphones,1,11.99,02/18/19 17:34,"956 Lincoln St, Dallas, TX 75001" +170244,Apple Airpods Headphones,1,150,02/21/19 23:45,"866 Ridge St, New York City, NY 10001" +170245,Apple Airpods Headphones,1,150,02/05/19 14:16,"154 Church St, Los Angeles, CA 90001" +170246,AAA Batteries (4-pack),2,2.99,02/06/19 10:12,"497 Pine St, Boston, MA 02215" +170247,Apple Airpods Headphones,1,150,02/18/19 06:37,"335 Forest St, San Francisco, CA 94016" +170248,AAA Batteries (4-pack),1,2.99,02/11/19 02:00,"694 Chestnut St, Los Angeles, CA 90001" +170249,Google Phone,1,600,02/26/19 12:13,"939 Jackson St, Los Angeles, CA 90001" +170250,AAA Batteries (4-pack),1,2.99,02/14/19 10:21,"781 West St, Los Angeles, CA 90001" +170251,Lightning Charging Cable,2,14.95,02/16/19 21:25,"857 10th St, Boston, MA 02215" +170252,iPhone,1,700,02/15/19 21:16,"632 Madison St, San Francisco, CA 94016" +170253,Lightning Charging Cable,1,14.95,02/11/19 20:38,"961 11th St, Austin, TX 73301" +170254,Wired Headphones,1,11.99,02/08/19 15:22,"740 Chestnut St, Los Angeles, CA 90001" +170255,27in FHD Monitor,1,149.99,02/13/19 16:19,"449 River St, New York City, NY 10001" +170256,AA Batteries (4-pack),2,3.84,02/24/19 09:46,"76 Forest St, San Francisco, CA 94016" +170257,Bose SoundSport Headphones,1,99.99,02/13/19 19:02,"710 4th St, Boston, MA 02215" +170258,Lightning Charging Cable,1,14.95,02/04/19 22:19,"853 2nd St, Boston, MA 02215" +170259,Apple Airpods Headphones,1,150,02/06/19 19:03,"281 Pine St, Atlanta, GA 30301" +170260,Wired Headphones,1,11.99,02/04/19 22:51,"564 Dogwood St, San Francisco, CA 94016" +170261,Apple Airpods Headphones,1,150,02/16/19 11:08,"715 Jackson St, Los Angeles, CA 90001" +170262,ThinkPad Laptop,1,999.99,02/13/19 15:17,"533 11th St, Austin, TX 73301" +170263,AAA Batteries (4-pack),1,2.99,02/15/19 01:09,"49 2nd St, Boston, MA 02215" +170264,AA Batteries (4-pack),2,3.84,02/27/19 14:28,"339 South St, Boston, MA 02215" +170265,27in FHD Monitor,1,149.99,02/11/19 17:51,"112 Sunset St, Los Angeles, CA 90001" +170265,Lightning Charging Cable,1,14.95,02/11/19 17:51,"112 Sunset St, Los Angeles, CA 90001" +170266,Apple Airpods Headphones,1,150,02/22/19 23:32,"999 West St, New York City, NY 10001" +170267,AAA Batteries (4-pack),1,2.99,02/15/19 09:11,"820 Wilson St, Los Angeles, CA 90001" +170268,AAA Batteries (4-pack),1,2.99,02/12/19 11:46,"454 Park St, Dallas, TX 75001" +170269,27in FHD Monitor,1,149.99,02/06/19 20:03,"779 Johnson St, Los Angeles, CA 90001" +170270,Wired Headphones,1,11.99,02/13/19 23:05,"843 Lakeview St, San Francisco, CA 94016" +170271,Bose SoundSport Headphones,1,99.99,02/23/19 07:18,"352 Johnson St, San Francisco, CA 94016" +170272,USB-C Charging Cable,1,11.95,02/23/19 09:33,"339 Maple St, San Francisco, CA 94016" +170273,Lightning Charging Cable,1,14.95,02/04/19 14:25,"620 Sunset St, Dallas, TX 75001" +170274,Lightning Charging Cable,1,14.95,02/10/19 15:51,"288 2nd St, Seattle, WA 98101" +170275,Lightning Charging Cable,1,14.95,02/09/19 15:58,"47 11th St, Los Angeles, CA 90001" +170276,27in 4K Gaming Monitor,1,389.99,02/24/19 20:15,"89 Forest St, Dallas, TX 75001" +170277,AAA Batteries (4-pack),2,2.99,02/14/19 11:07,"975 Maple St, San Francisco, CA 94016" +170277,27in FHD Monitor,1,149.99,02/14/19 11:07,"975 Maple St, San Francisco, CA 94016" +170278,USB-C Charging Cable,1,11.95,02/21/19 12:47,"472 Ridge St, Los Angeles, CA 90001" +170279,AA Batteries (4-pack),1,3.84,02/12/19 16:33,"576 Pine St, Boston, MA 02215" +170280,Flatscreen TV,1,300,02/25/19 18:32,"901 Hickory St, San Francisco, CA 94016" +170281,USB-C Charging Cable,1,11.95,02/27/19 18:51,"498 4th St, Atlanta, GA 30301" +170282,USB-C Charging Cable,1,11.95,02/25/19 20:23,"973 Forest St, Dallas, TX 75001" +170283,Wired Headphones,1,11.99,02/24/19 14:29,"420 Church St, San Francisco, CA 94016" +170284,Wired Headphones,1,11.99,02/24/19 19:57,"736 Hill St, Atlanta, GA 30301" +170284,AA Batteries (4-pack),1,3.84,02/24/19 19:57,"736 Hill St, Atlanta, GA 30301" +170285,USB-C Charging Cable,1,11.95,02/23/19 21:39,"85 Maple St, San Francisco, CA 94016" +170286,USB-C Charging Cable,1,11.95,02/25/19 20:46,"917 Wilson St, Los Angeles, CA 90001" +170287,iPhone,1,700,02/03/19 09:54,"270 Lincoln St, Seattle, WA 98101" +170288,USB-C Charging Cable,1,11.95,02/27/19 09:50,"205 5th St, New York City, NY 10001" +170289,Flatscreen TV,1,300,02/18/19 12:29,"972 Washington St, Boston, MA 02215" +170290,Apple Airpods Headphones,1,150,02/08/19 11:46,"456 Center St, Portland, OR 97035" +170291,27in 4K Gaming Monitor,1,389.99,02/16/19 14:33,"618 10th St, San Francisco, CA 94016" +170292,iPhone,1,700,02/03/19 17:55,"796 Wilson St, Boston, MA 02215" +170293,27in 4K Gaming Monitor,1,389.99,02/14/19 21:17,"879 Church St, San Francisco, CA 94016" +170294,Wired Headphones,2,11.99,02/07/19 05:58,"636 Cherry St, New York City, NY 10001" +170295,iPhone,1,700,02/19/19 14:58,"692 Madison St, Dallas, TX 75001" +170295,Apple Airpods Headphones,1,150,02/19/19 14:58,"692 Madison St, Dallas, TX 75001" +170296,Apple Airpods Headphones,1,150,02/15/19 20:53,"373 Hickory St, Los Angeles, CA 90001" +170297,AAA Batteries (4-pack),1,2.99,02/14/19 19:57,"596 Chestnut St, Boston, MA 02215" +170298,AAA Batteries (4-pack),1,2.99,02/24/19 20:09,"365 Church St, Los Angeles, CA 90001" +170299,AAA Batteries (4-pack),2,2.99,02/26/19 18:22,"346 Hickory St, New York City, NY 10001" +170300,27in FHD Monitor,1,149.99,02/06/19 20:57,"33 Highland St, New York City, NY 10001" +170301,AAA Batteries (4-pack),1,2.99,02/09/19 19:31,"59 11th St, San Francisco, CA 94016" +170302,Bose SoundSport Headphones,1,99.99,02/10/19 15:45,"959 West St, Boston, MA 02215" +170303,AAA Batteries (4-pack),1,2.99,02/01/19 11:26,"860 River St, San Francisco, CA 94016" +170304,Lightning Charging Cable,1,14.95,02/25/19 12:20,"575 Maple St, Los Angeles, CA 90001" +170305,Lightning Charging Cable,1,14.95,02/01/19 14:12,"960 Center St, San Francisco, CA 94016" +170306,Bose SoundSport Headphones,1,99.99,02/09/19 17:01,"789 14th St, Atlanta, GA 30301" +170307,27in FHD Monitor,1,149.99,02/07/19 20:21,"733 2nd St, Seattle, WA 98101" +170308,USB-C Charging Cable,1,11.95,02/28/19 15:10,"511 North St, Atlanta, GA 30301" +170309,iPhone,1,700,02/26/19 13:29,"171 Washington St, San Francisco, CA 94016" +170310,Lightning Charging Cable,1,14.95,02/15/19 20:34,"118 Hickory St, Boston, MA 02215" +170311,iPhone,1,700,02/01/19 19:42,"687 North St, Atlanta, GA 30301" +170312,AA Batteries (4-pack),1,3.84,02/02/19 13:58,"897 Spruce St, San Francisco, CA 94016" +170313,Apple Airpods Headphones,1,150,02/05/19 19:32,"638 Madison St, Los Angeles, CA 90001" +170314,Apple Airpods Headphones,1,150,02/16/19 06:56,"734 Jefferson St, Austin, TX 73301" +170315,Apple Airpods Headphones,1,150,02/03/19 08:51,"11 Main St, San Francisco, CA 94016" +170316,27in FHD Monitor,1,149.99,02/06/19 12:56,"699 Lincoln St, New York City, NY 10001" +170317,Lightning Charging Cable,1,14.95,02/28/19 12:29,"884 7th St, San Francisco, CA 94016" +170318,AAA Batteries (4-pack),6,2.99,02/20/19 19:51,"935 Highland St, Boston, MA 02215" +170319,iPhone,1,700,02/01/19 09:12,"830 Church St, San Francisco, CA 94016" +170320,AA Batteries (4-pack),1,3.84,02/27/19 23:25,"174 12th St, New York City, NY 10001" +170321,Bose SoundSport Headphones,1,99.99,02/15/19 14:08,"15 Main St, Seattle, WA 98101" +170322,USB-C Charging Cable,1,11.95,02/20/19 18:14,"461 Willow St, Dallas, TX 75001" +170323,Apple Airpods Headphones,1,150,02/15/19 13:40,"387 Madison St, Los Angeles, CA 90001" +170324,AA Batteries (4-pack),1,3.84,02/26/19 20:16,"398 7th St, New York City, NY 10001" +170325,Lightning Charging Cable,1,14.95,02/25/19 16:04,"212 13th St, San Francisco, CA 94016" +170326,Wired Headphones,1,11.99,02/01/19 14:09,"413 Spruce St, San Francisco, CA 94016" +170327,USB-C Charging Cable,1,11.95,02/02/19 11:20,"495 Meadow St, Boston, MA 02215" +170328,AAA Batteries (4-pack),2,2.99,02/03/19 12:08,"681 South St, San Francisco, CA 94016" +170329,27in FHD Monitor,1,149.99,02/21/19 18:48,"167 Walnut St, San Francisco, CA 94016" +170330,AAA Batteries (4-pack),1,2.99,02/07/19 00:23,"107 2nd St, Atlanta, GA 30301" +170331,Wired Headphones,1,11.99,02/21/19 20:58,"815 South St, Boston, MA 02215" +170332,Apple Airpods Headphones,1,150,02/12/19 08:38,"750 8th St, San Francisco, CA 94016" +170333,Bose SoundSport Headphones,1,99.99,02/28/19 23:09,"846 Forest St, San Francisco, CA 94016" +170334,AA Batteries (4-pack),1,3.84,02/06/19 11:09,"482 Johnson St, Los Angeles, CA 90001" +170335,Wired Headphones,1,11.99,02/14/19 22:37,"170 Washington St, San Francisco, CA 94016" +170336,27in FHD Monitor,1,149.99,02/01/19 09:38,"926 Jackson St, Atlanta, GA 30301" +170337,USB-C Charging Cable,1,11.95,02/08/19 20:06,"548 Hill St, Austin, TX 73301" +170338,AA Batteries (4-pack),1,3.84,02/05/19 21:06,"744 Church St, San Francisco, CA 94016" +170339,Macbook Pro Laptop,1,1700,02/04/19 22:58,"218 2nd St, Los Angeles, CA 90001" +170340,USB-C Charging Cable,1,11.95,02/12/19 09:19,"246 Jackson St, Los Angeles, CA 90001" +170341,AA Batteries (4-pack),1,3.84,02/04/19 20:01,"630 14th St, New York City, NY 10001" +170342,Flatscreen TV,1,300,02/07/19 19:35,"872 Sunset St, New York City, NY 10001" +170343,Apple Airpods Headphones,1,150,02/04/19 09:16,"70 Hill St, Dallas, TX 75001" +170344,Bose SoundSport Headphones,1,99.99,02/24/19 01:24,"985 South St, San Francisco, CA 94016" +170345,20in Monitor,1,109.99,02/10/19 08:26,"345 Maple St, Dallas, TX 75001" +170346,Bose SoundSport Headphones,1,99.99,02/07/19 14:18,"239 Washington St, New York City, NY 10001" +170347,USB-C Charging Cable,1,11.95,02/18/19 20:44,"998 Chestnut St, Seattle, WA 98101" +170348,AAA Batteries (4-pack),3,2.99,02/01/19 14:08,"333 Lincoln St, Seattle, WA 98101" +170349,27in FHD Monitor,1,149.99,02/25/19 14:33,"533 12th St, Boston, MA 02215" +170350,20in Monitor,1,109.99,02/19/19 08:32,"766 11th St, Dallas, TX 75001" +170351,Bose SoundSport Headphones,1,99.99,02/20/19 18:49,"585 6th St, Los Angeles, CA 90001" +170351,Flatscreen TV,1,300,02/20/19 18:49,"585 6th St, Los Angeles, CA 90001" +170352,Lightning Charging Cable,1,14.95,02/06/19 10:27,"328 2nd St, Portland, OR 97035" +170353,27in FHD Monitor,1,149.99,02/08/19 09:51,"188 Forest St, Boston, MA 02215" +170354,Wired Headphones,1,11.99,02/18/19 22:32,"581 13th St, Dallas, TX 75001" +170355,Bose SoundSport Headphones,1,99.99,02/02/19 10:13,"646 4th St, Boston, MA 02215" +170356,AA Batteries (4-pack),1,3.84,02/08/19 12:21,"848 Spruce St, New York City, NY 10001" +170357,27in FHD Monitor,1,149.99,02/18/19 18:05,"842 Walnut St, Los Angeles, CA 90001" +170358,AAA Batteries (4-pack),1,2.99,02/05/19 00:50,"361 Cherry St, San Francisco, CA 94016" +170359,Lightning Charging Cable,1,14.95,02/24/19 08:00,"314 Highland St, Los Angeles, CA 90001" +170360,34in Ultrawide Monitor,1,379.99,02/06/19 07:15,"438 Pine St, San Francisco, CA 94016" +170361,Wired Headphones,1,11.99,02/13/19 22:43,"492 Willow St, Portland, ME 04101" +170362,Wired Headphones,2,11.99,02/02/19 18:16,"945 2nd St, San Francisco, CA 94016" +170363,ThinkPad Laptop,1,999.99,02/23/19 13:56,"254 Washington St, Los Angeles, CA 90001" +170364,Apple Airpods Headphones,1,150,02/01/19 11:00,"297 Forest St, San Francisco, CA 94016" +170365,Lightning Charging Cable,1,14.95,02/08/19 17:36,"619 Johnson St, Portland, OR 97035" +170366,Apple Airpods Headphones,1,150,02/24/19 17:33,"103 Elm St, San Francisco, CA 94016" +170367,AAA Batteries (4-pack),1,2.99,02/09/19 18:45,"438 Madison St, San Francisco, CA 94016" +170368,Flatscreen TV,1,300,02/12/19 13:21,"830 Johnson St, San Francisco, CA 94016" +170369,Wired Headphones,1,11.99,02/17/19 08:28,"581 Jefferson St, New York City, NY 10001" +170370,Apple Airpods Headphones,1,150,02/07/19 17:45,"509 Main St, San Francisco, CA 94016" +170371,Flatscreen TV,1,300,02/01/19 23:49,"851 Highland St, Seattle, WA 98101" +170372,Google Phone,1,600,02/25/19 11:37,"190 Maple St, Los Angeles, CA 90001" +170373,Wired Headphones,2,11.99,02/12/19 12:34,"456 Spruce St, Seattle, WA 98101" +170374,AAA Batteries (4-pack),1,2.99,02/03/19 08:26,"260 10th St, Seattle, WA 98101" +170375,Wired Headphones,1,11.99,02/15/19 19:46,"66 1st St, Austin, TX 73301" +170376,AA Batteries (4-pack),1,3.84,02/24/19 19:52,"423 River St, Seattle, WA 98101" +170377,AAA Batteries (4-pack),3,2.99,02/16/19 20:55,"866 Church St, New York City, NY 10001" +170378,AA Batteries (4-pack),3,3.84,02/15/19 14:47,"121 Dogwood St, Dallas, TX 75001" +170379,AA Batteries (4-pack),1,3.84,02/09/19 19:10,"420 Johnson St, Los Angeles, CA 90001" +170380,Bose SoundSport Headphones,1,99.99,02/03/19 11:01,"58 Adams St, Portland, OR 97035" +170381,AAA Batteries (4-pack),1,2.99,02/23/19 21:52,"543 Jefferson St, Portland, OR 97035" +170382,AAA Batteries (4-pack),2,2.99,02/27/19 19:23,"173 Church St, San Francisco, CA 94016" +170383,USB-C Charging Cable,1,11.95,02/07/19 20:05,"900 Spruce St, Austin, TX 73301" +170384,AAA Batteries (4-pack),1,2.99,02/10/19 12:07,"581 Cedar St, Los Angeles, CA 90001" +170385,Bose SoundSport Headphones,1,99.99,02/18/19 11:15,"276 Washington St, Seattle, WA 98101" +170386,Apple Airpods Headphones,1,150,02/11/19 12:58,"910 Elm St, Dallas, TX 75001" +170387,Flatscreen TV,1,300,02/25/19 10:52,"350 8th St, New York City, NY 10001" +170388,Bose SoundSport Headphones,1,99.99,02/21/19 22:44,"294 Lake St, New York City, NY 10001" +170389,27in FHD Monitor,1,149.99,02/01/19 10:00,"821 Chestnut St, New York City, NY 10001" +170390,Bose SoundSport Headphones,1,99.99,02/22/19 16:02,"863 Washington St, Portland, OR 97035" +170391,Wired Headphones,1,11.99,02/28/19 10:23,"908 North St, Austin, TX 73301" +170392,AAA Batteries (4-pack),1,2.99,02/05/19 16:19,"724 6th St, Los Angeles, CA 90001" +170393,Lightning Charging Cable,1,14.95,02/05/19 08:58,"218 6th St, Dallas, TX 75001" +170394,AA Batteries (4-pack),1,3.84,02/18/19 10:57,"348 West St, Los Angeles, CA 90001" +170395,27in 4K Gaming Monitor,1,389.99,02/10/19 13:07,"572 1st St, Atlanta, GA 30301" +170396,Lightning Charging Cable,1,14.95,02/25/19 22:52,"740 Lakeview St, Atlanta, GA 30301" +170397,Flatscreen TV,1,300,02/19/19 19:19,"95 11th St, New York City, NY 10001" +170398,AA Batteries (4-pack),2,3.84,02/27/19 19:40,"425 Cherry St, New York City, NY 10001" +170399,Wired Headphones,1,11.99,02/22/19 18:52,"67 12th St, San Francisco, CA 94016" +170400,Lightning Charging Cable,1,14.95,02/28/19 08:41,"485 Cherry St, Seattle, WA 98101" +170401,Lightning Charging Cable,1,14.95,02/18/19 11:52,"796 Madison St, San Francisco, CA 94016" +170402,Bose SoundSport Headphones,1,99.99,02/17/19 13:20,"73 Hickory St, New York City, NY 10001" +170403,AA Batteries (4-pack),1,3.84,02/14/19 15:46,"763 Cherry St, San Francisco, CA 94016" +170404,34in Ultrawide Monitor,1,379.99,02/24/19 14:20,"546 Park St, Los Angeles, CA 90001" +170405,AA Batteries (4-pack),1,3.84,02/20/19 08:14,"747 Maple St, San Francisco, CA 94016" +170406,Google Phone,1,600,02/22/19 10:35,"757 7th St, Los Angeles, CA 90001" +170406,Bose SoundSport Headphones,1,99.99,02/22/19 10:35,"757 7th St, Los Angeles, CA 90001" +170407,Apple Airpods Headphones,1,150,02/06/19 22:20,"855 Elm St, New York City, NY 10001" +170408,USB-C Charging Cable,1,11.95,02/05/19 10:55,"231 Jefferson St, Portland, OR 97035" +170409,USB-C Charging Cable,1,11.95,02/18/19 01:09,"918 12th St, Los Angeles, CA 90001" +170410,27in 4K Gaming Monitor,1,389.99,02/17/19 16:13,"234 Willow St, Austin, TX 73301" +170411,Wired Headphones,1,11.99,02/25/19 22:41,"862 12th St, Austin, TX 73301" +170412,USB-C Charging Cable,1,11.95,02/16/19 07:59,"291 Meadow St, San Francisco, CA 94016" +170413,Lightning Charging Cable,1,14.95,02/11/19 11:18,"398 Hickory St, Atlanta, GA 30301" +170414,AAA Batteries (4-pack),1,2.99,02/28/19 16:29,"266 Maple St, Austin, TX 73301" +170415,Lightning Charging Cable,1,14.95,02/06/19 14:19,"448 Lincoln St, Los Angeles, CA 90001" +170416,Macbook Pro Laptop,1,1700,02/03/19 13:41,"130 Elm St, Los Angeles, CA 90001" +170417,Bose SoundSport Headphones,1,99.99,02/18/19 09:54,"469 Hickory St, Seattle, WA 98101" +170418,ThinkPad Laptop,1,999.99,02/05/19 11:52,"677 4th St, Los Angeles, CA 90001" +170419,Apple Airpods Headphones,1,150,02/06/19 20:28,"115 9th St, Los Angeles, CA 90001" +170420,Apple Airpods Headphones,1,150,02/17/19 11:32,"283 Chestnut St, New York City, NY 10001" +170421,Lightning Charging Cable,1,14.95,02/05/19 16:39,"55 Walnut St, Seattle, WA 98101" +170422,USB-C Charging Cable,1,11.95,02/28/19 10:04,"824 9th St, Seattle, WA 98101" +170423,Bose SoundSport Headphones,1,99.99,02/10/19 09:20,"749 10th St, Los Angeles, CA 90001" +170424,Wired Headphones,1,11.99,02/06/19 11:55,"44 West St, San Francisco, CA 94016" +170425,Apple Airpods Headphones,1,150,02/19/19 10:30,"113 Cherry St, Los Angeles, CA 90001" +170426,AAA Batteries (4-pack),1,2.99,02/09/19 19:37,"313 Washington St, Los Angeles, CA 90001" +170427,Bose SoundSport Headphones,1,99.99,02/17/19 16:20,"813 Johnson St, Atlanta, GA 30301" +170428,AA Batteries (4-pack),1,3.84,02/23/19 18:33,"662 10th St, Austin, TX 73301" +170429,Lightning Charging Cable,1,14.95,02/06/19 20:37,"329 Chestnut St, San Francisco, CA 94016" +170430,AA Batteries (4-pack),1,3.84,02/09/19 08:06,"648 10th St, New York City, NY 10001" +170431,Lightning Charging Cable,1,14.95,02/16/19 10:16,"98 2nd St, San Francisco, CA 94016" +170432,Lightning Charging Cable,1,14.95,02/03/19 00:23,"324 Wilson St, Boston, MA 02215" +170433,Wired Headphones,1,11.99,02/09/19 02:53,"77 Lakeview St, Seattle, WA 98101" +170434,iPhone,1,700,02/10/19 20:59,"250 Lincoln St, San Francisco, CA 94016" +170435,Apple Airpods Headphones,1,150,02/23/19 19:57,"822 South St, San Francisco, CA 94016" +170436,Bose SoundSport Headphones,1,99.99,02/08/19 16:58,"143 Center St, Los Angeles, CA 90001" +170437,AAA Batteries (4-pack),1,2.99,02/21/19 19:02,"627 West St, San Francisco, CA 94016" +170438,USB-C Charging Cable,1,11.95,02/11/19 19:05,"661 Spruce St, Atlanta, GA 30301" +170439,Apple Airpods Headphones,1,150,02/24/19 07:26,"334 Spruce St, Atlanta, GA 30301" +170440,AAA Batteries (4-pack),1,2.99,02/14/19 14:17,"612 Meadow St, Atlanta, GA 30301" +170441,27in FHD Monitor,1,149.99,02/14/19 17:15,"93 Maple St, Atlanta, GA 30301" +170441,AA Batteries (4-pack),1,3.84,02/14/19 17:15,"93 Maple St, Atlanta, GA 30301" +170442,Apple Airpods Headphones,1,150,02/05/19 00:02,"775 14th St, Atlanta, GA 30301" +170443,AAA Batteries (4-pack),1,2.99,02/12/19 11:24,"426 Jefferson St, Seattle, WA 98101" +170444,USB-C Charging Cable,1,11.95,02/23/19 19:33,"185 10th St, San Francisco, CA 94016" +170445,iPhone,1,700,02/19/19 17:21,"290 14th St, San Francisco, CA 94016" +170446,Macbook Pro Laptop,1,1700,02/20/19 12:55,"246 Highland St, San Francisco, CA 94016" +170447,AA Batteries (4-pack),1,3.84,02/05/19 13:35,"43 Park St, Boston, MA 02215" +170448,Apple Airpods Headphones,1,150,02/16/19 08:01,"825 Hill St, Boston, MA 02215" +170449,USB-C Charging Cable,2,11.95,02/27/19 15:30,"962 Ridge St, Seattle, WA 98101" +170450,AA Batteries (4-pack),1,3.84,02/08/19 15:47,"496 Washington St, Boston, MA 02215" +170451,AAA Batteries (4-pack),1,2.99,02/22/19 20:48,"331 Chestnut St, Dallas, TX 75001" +170452,USB-C Charging Cable,1,11.95,02/28/19 23:24,"549 1st St, New York City, NY 10001" +170453,USB-C Charging Cable,1,11.95,02/10/19 11:39,"83 1st St, Seattle, WA 98101" +170454,34in Ultrawide Monitor,1,379.99,02/15/19 13:30,"738 West St, Austin, TX 73301" +170455,AAA Batteries (4-pack),1,2.99,02/14/19 16:24,"859 Lake St, Los Angeles, CA 90001" +170456,Wired Headphones,1,11.99,02/18/19 08:15,"452 Lincoln St, Dallas, TX 75001" +170457,Wired Headphones,1,11.99,02/09/19 08:33,"252 Walnut St, Austin, TX 73301" +170458,Lightning Charging Cable,1,14.95,02/03/19 22:08,"323 Park St, New York City, NY 10001" +170459,20in Monitor,1,109.99,02/27/19 16:53,"240 Meadow St, Los Angeles, CA 90001" +170460,Lightning Charging Cable,1,14.95,02/19/19 19:18,"217 Main St, Dallas, TX 75001" +170461,34in Ultrawide Monitor,1,379.99,02/11/19 21:08,"436 Church St, Los Angeles, CA 90001" +170462,27in 4K Gaming Monitor,1,389.99,02/25/19 16:03,"562 Lake St, Boston, MA 02215" +170463,Bose SoundSport Headphones,1,99.99,02/07/19 13:28,"249 10th St, Los Angeles, CA 90001" +170464,Apple Airpods Headphones,1,150,02/22/19 12:03,"723 Washington St, New York City, NY 10001" +170465,ThinkPad Laptop,1,999.99,02/06/19 14:28,"925 Jefferson St, Boston, MA 02215" +170466,Lightning Charging Cable,1,14.95,02/07/19 14:56,"137 Washington St, Dallas, TX 75001" +170466,Flatscreen TV,1,300,02/07/19 14:56,"137 Washington St, Dallas, TX 75001" +170467,AAA Batteries (4-pack),2,2.99,02/17/19 05:46,"908 8th St, Boston, MA 02215" +170468,USB-C Charging Cable,1,11.95,02/01/19 15:03,"872 7th St, Atlanta, GA 30301" +170469,Apple Airpods Headphones,1,150,02/10/19 15:02,"818 4th St, Seattle, WA 98101" +170470,Bose SoundSport Headphones,1,99.99,02/10/19 19:32,"850 Lakeview St, Boston, MA 02215" +170471,Lightning Charging Cable,1,14.95,02/20/19 14:33,"120 11th St, Atlanta, GA 30301" +170472,AA Batteries (4-pack),1,3.84,02/19/19 12:02,"559 Cedar St, San Francisco, CA 94016" +170473,Wired Headphones,2,11.99,02/23/19 19:54,"343 Madison St, Los Angeles, CA 90001" +170474,Lightning Charging Cable,1,14.95,02/20/19 15:23,"732 Highland St, San Francisco, CA 94016" +170475,AAA Batteries (4-pack),2,2.99,02/16/19 12:39,"814 Jefferson St, Boston, MA 02215" +170476,USB-C Charging Cable,1,11.95,02/12/19 22:56,"384 Spruce St, Seattle, WA 98101" +170477,Wired Headphones,1,11.99,02/26/19 16:20,"104 Wilson St, San Francisco, CA 94016" +170478,Wired Headphones,1,11.99,02/22/19 21:10,"423 6th St, San Francisco, CA 94016" +170479,iPhone,1,700,02/14/19 16:12,"633 Hickory St, San Francisco, CA 94016" +170480,Lightning Charging Cable,1,14.95,02/12/19 16:32,"31 Center St, San Francisco, CA 94016" +170481,34in Ultrawide Monitor,1,379.99,02/18/19 10:12,"812 Wilson St, Boston, MA 02215" +170482,Vareebadd Phone,1,400,02/03/19 10:11,"884 River St, Seattle, WA 98101" +170483,27in FHD Monitor,1,149.99,02/02/19 20:02,"625 Walnut St, New York City, NY 10001" +170484,USB-C Charging Cable,2,11.95,02/04/19 11:28,"175 Willow St, Portland, OR 97035" +170485,Google Phone,1,600,02/27/19 14:04,"830 Lake St, Los Angeles, CA 90001" +170486,AA Batteries (4-pack),2,3.84,02/02/19 22:46,"838 River St, New York City, NY 10001" +170487,27in FHD Monitor,1,149.99,02/28/19 11:22,"772 Jefferson St, Los Angeles, CA 90001" +170487,AAA Batteries (4-pack),1,2.99,02/28/19 11:22,"772 Jefferson St, Los Angeles, CA 90001" +170488,iPhone,1,700,02/01/19 18:39,"696 12th St, New York City, NY 10001" +170489,Apple Airpods Headphones,1,150,02/02/19 19:41,"149 Walnut St, San Francisco, CA 94016" +170490,AA Batteries (4-pack),2,3.84,02/23/19 14:54,"122 Meadow St, Seattle, WA 98101" +170491,Macbook Pro Laptop,1,1700,02/28/19 16:59,"679 13th St, Austin, TX 73301" +170492,27in 4K Gaming Monitor,1,389.99,02/23/19 14:08,"546 9th St, New York City, NY 10001" +170493,AA Batteries (4-pack),1,3.84,02/10/19 16:10,"399 Jefferson St, Boston, MA 02215" +170494,27in FHD Monitor,1,149.99,02/05/19 18:09,"321 7th St, San Francisco, CA 94016" +170495,Apple Airpods Headphones,1,150,02/04/19 11:11,"745 Washington St, Los Angeles, CA 90001" +170496,27in 4K Gaming Monitor,1,389.99,02/13/19 21:49,"691 Church St, Portland, OR 97035" +170497,iPhone,1,700,02/26/19 20:05,"858 Wilson St, Boston, MA 02215" +170498,Wired Headphones,1,11.99,02/24/19 15:52,"695 Ridge St, New York City, NY 10001" +170499,USB-C Charging Cable,1,11.95,02/14/19 19:07,"120 Hickory St, Los Angeles, CA 90001" +170500,ThinkPad Laptop,1,999.99,02/08/19 18:35,"960 Cherry St, Los Angeles, CA 90001" +170501,AA Batteries (4-pack),2,3.84,02/27/19 17:53,"705 Highland St, Los Angeles, CA 90001" +170502,USB-C Charging Cable,1,11.95,02/26/19 21:33,"536 Jefferson St, San Francisco, CA 94016" +170503,Wired Headphones,1,11.99,02/14/19 22:38,"243 Lincoln St, Seattle, WA 98101" +170504,Lightning Charging Cable,1,14.95,02/04/19 16:07,"617 Lake St, Atlanta, GA 30301" +170505,Bose SoundSport Headphones,1,99.99,02/06/19 15:54,"669 Chestnut St, Portland, OR 97035" +170506,Lightning Charging Cable,1,14.95,02/02/19 10:11,"543 Dogwood St, Los Angeles, CA 90001" +170507,Apple Airpods Headphones,1,150,02/28/19 19:50,"154 Johnson St, Los Angeles, CA 90001" +170508,Apple Airpods Headphones,1,150,02/12/19 12:15,"255 Sunset St, Los Angeles, CA 90001" +170509,Lightning Charging Cable,1,14.95,02/22/19 12:19,"710 11th St, San Francisco, CA 94016" +170510,AA Batteries (4-pack),2,3.84,02/16/19 08:17,"101 Elm St, New York City, NY 10001" +170511,USB-C Charging Cable,1,11.95,02/07/19 10:06,"462 Hill St, Austin, TX 73301" +170512,Lightning Charging Cable,1,14.95,02/22/19 11:40,"182 Johnson St, Dallas, TX 75001" +170513,34in Ultrawide Monitor,1,379.99,02/16/19 18:50,"575 Hill St, Portland, OR 97035" +170514,Lightning Charging Cable,1,14.95,02/27/19 09:34,"325 Cherry St, Austin, TX 73301" +170515,Apple Airpods Headphones,1,150,02/24/19 19:44,"59 Cedar St, Boston, MA 02215" +170516,AA Batteries (4-pack),1,3.84,02/07/19 10:55,"556 14th St, Portland, OR 97035" +170517,AA Batteries (4-pack),2,3.84,02/17/19 20:09,"4 Hill St, San Francisco, CA 94016" +170518,Bose SoundSport Headphones,1,99.99,02/06/19 20:10,"155 South St, Dallas, TX 75001" +170519,Lightning Charging Cable,1,14.95,02/27/19 19:25,"749 Center St, San Francisco, CA 94016" +170520,Lightning Charging Cable,1,14.95,02/07/19 08:51,"525 Cherry St, Seattle, WA 98101" +170521,AAA Batteries (4-pack),2,2.99,02/11/19 12:44,"757 Madison St, Seattle, WA 98101" +170522,Wired Headphones,1,11.99,02/21/19 13:33,"519 13th St, Boston, MA 02215" +170523,Google Phone,1,600,02/25/19 10:51,"699 Chestnut St, San Francisco, CA 94016" +170523,USB-C Charging Cable,1,11.95,02/25/19 10:51,"699 Chestnut St, San Francisco, CA 94016" +170524,Lightning Charging Cable,1,14.95,02/22/19 20:21,"224 Maple St, New York City, NY 10001" +170525,Apple Airpods Headphones,1,150,02/22/19 16:19,"326 Washington St, Atlanta, GA 30301" +170526,AAA Batteries (4-pack),1,2.99,02/08/19 20:37,"738 North St, Dallas, TX 75001" +170527,AAA Batteries (4-pack),4,2.99,02/12/19 21:25,"555 Cherry St, San Francisco, CA 94016" +170528,USB-C Charging Cable,1,11.95,02/02/19 17:53,"816 Elm St, Dallas, TX 75001" +170529,27in FHD Monitor,1,149.99,02/27/19 12:52,"520 Lincoln St, Portland, OR 97035" +170530,Flatscreen TV,1,300,02/24/19 19:25,"992 Lake St, Los Angeles, CA 90001" +170531,27in FHD Monitor,1,149.99,02/11/19 21:57,"250 Walnut St, Boston, MA 02215" +170532,AA Batteries (4-pack),1,3.84,02/26/19 16:39,"564 Forest St, Portland, ME 04101" +170533,USB-C Charging Cable,1,11.95,02/28/19 20:20,"674 Highland St, San Francisco, CA 94016" +170534,Wired Headphones,1,11.99,02/19/19 19:38,"998 1st St, San Francisco, CA 94016" +170535,Lightning Charging Cable,1,14.95,02/12/19 11:43,"953 Cherry St, San Francisco, CA 94016" +170536,USB-C Charging Cable,1,11.95,02/15/19 21:01,"489 Wilson St, San Francisco, CA 94016" +170537,Apple Airpods Headphones,1,150,02/06/19 11:38,"221 Spruce St, San Francisco, CA 94016" +170538,Bose SoundSport Headphones,1,99.99,02/03/19 09:17,"2 Adams St, Boston, MA 02215" +170539,USB-C Charging Cable,1,11.95,02/21/19 05:28,"733 Jackson St, Dallas, TX 75001" +170540,34in Ultrawide Monitor,1,379.99,02/03/19 21:07,"432 9th St, New York City, NY 10001" +170541,Vareebadd Phone,1,400,02/06/19 07:28,"818 Cedar St, Boston, MA 02215" +170542,20in Monitor,1,109.99,02/23/19 13:19,"19 Elm St, Austin, TX 73301" +170543,Apple Airpods Headphones,1,150,02/21/19 00:15,"597 Main St, New York City, NY 10001" +170544,ThinkPad Laptop,1,999.99,02/19/19 22:53,"277 Maple St, San Francisco, CA 94016" +170545,Google Phone,1,600,02/14/19 21:22,"606 Hill St, Boston, MA 02215" +170546,AA Batteries (4-pack),1,3.84,02/18/19 19:19,"262 Ridge St, Los Angeles, CA 90001" +170547,Bose SoundSport Headphones,1,99.99,02/02/19 12:37,"771 Johnson St, Austin, TX 73301" +170548,USB-C Charging Cable,1,11.95,02/26/19 17:56,"890 Hickory St, San Francisco, CA 94016" +170549,Google Phone,1,600,02/16/19 13:57,"586 Willow St, Portland, OR 97035" +170550,Wired Headphones,1,11.99,02/02/19 20:03,"993 Washington St, Boston, MA 02215" +170551,AAA Batteries (4-pack),2,2.99,02/16/19 15:32,"735 Lakeview St, Atlanta, GA 30301" +170551,Wired Headphones,1,11.99,02/16/19 15:32,"735 Lakeview St, Atlanta, GA 30301" +170552,Wired Headphones,1,11.99,02/17/19 15:59,"765 11th St, Dallas, TX 75001" +170553,AAA Batteries (4-pack),1,2.99,02/16/19 20:10,"278 Park St, San Francisco, CA 94016" +170554,27in 4K Gaming Monitor,1,389.99,02/01/19 13:07,"175 12th St, Atlanta, GA 30301" +170554,AA Batteries (4-pack),1,3.84,02/01/19 13:07,"175 12th St, Atlanta, GA 30301" +170555,AA Batteries (4-pack),1,3.84,02/02/19 14:42,"580 4th St, Boston, MA 02215" +170556,Lightning Charging Cable,1,14.95,02/06/19 18:21,"749 14th St, Boston, MA 02215" +170557,34in Ultrawide Monitor,1,379.99,02/11/19 10:09,"604 Adams St, San Francisco, CA 94016" +170558,Lightning Charging Cable,1,14.95,02/10/19 16:44,"364 Chestnut St, Boston, MA 02215" +170559,Macbook Pro Laptop,1,1700,02/20/19 15:07,"748 Cedar St, Seattle, WA 98101" +170560,Google Phone,1,600,02/02/19 10:28,"928 Cherry St, Portland, OR 97035" +170561,Wired Headphones,1,11.99,02/09/19 12:06,"272 13th St, Los Angeles, CA 90001" +170562,Wired Headphones,1,11.99,02/10/19 21:51,"755 Jefferson St, Los Angeles, CA 90001" +170563,Wired Headphones,1,11.99,02/28/19 21:55,"393 South St, Dallas, TX 75001" +170564,Wired Headphones,1,11.99,02/06/19 20:19,"724 South St, Austin, TX 73301" +170565,iPhone,1,700,02/01/19 17:38,"64 Main St, Dallas, TX 75001" +170566,iPhone,1,700,02/04/19 13:11,"236 Cedar St, Portland, ME 04101" +170567,USB-C Charging Cable,1,11.95,02/23/19 11:28,"503 Adams St, Los Angeles, CA 90001" +170568,27in 4K Gaming Monitor,1,389.99,02/10/19 14:44,"115 Hill St, Seattle, WA 98101" +170569,USB-C Charging Cable,1,11.95,02/28/19 16:15,"940 Hickory St, Austin, TX 73301" +170570,Lightning Charging Cable,1,14.95,02/23/19 19:11,"57 Park St, San Francisco, CA 94016" +170571,USB-C Charging Cable,1,11.95,02/23/19 12:52,"466 Cherry St, San Francisco, CA 94016" +170572,Lightning Charging Cable,1,14.95,02/09/19 22:08,"497 West St, Dallas, TX 75001" +170573,Bose SoundSport Headphones,1,99.99,02/23/19 20:56,"116 Jefferson St, Los Angeles, CA 90001" +170574,27in FHD Monitor,1,149.99,02/22/19 16:02,"947 5th St, Dallas, TX 75001" +170575,AAA Batteries (4-pack),2,2.99,02/04/19 17:42,"874 Cedar St, San Francisco, CA 94016" +170576,AAA Batteries (4-pack),1,2.99,02/09/19 13:34,"701 Highland St, Los Angeles, CA 90001" +170577,Lightning Charging Cable,1,14.95,02/16/19 22:46,"647 5th St, Los Angeles, CA 90001" +170578,AA Batteries (4-pack),1,3.84,02/02/19 08:39,"193 Cedar St, Seattle, WA 98101" +170579,Flatscreen TV,1,300,02/04/19 22:19,"507 Willow St, Boston, MA 02215" +170580,Bose SoundSport Headphones,1,99.99,02/02/19 18:05,"181 6th St, New York City, NY 10001" +170581,Wired Headphones,1,11.99,02/17/19 20:41,"332 Hill St, Los Angeles, CA 90001" +170582,Apple Airpods Headphones,1,150,02/23/19 16:29,"173 Lakeview St, Los Angeles, CA 90001" +170583,AAA Batteries (4-pack),1,2.99,02/24/19 18:08,"3 Spruce St, Seattle, WA 98101" +170584,AAA Batteries (4-pack),1,2.99,02/07/19 09:51,"783 Elm St, Portland, OR 97035" +170585,iPhone,1,700,02/07/19 23:22,"570 7th St, New York City, NY 10001" +170586,Wired Headphones,1,11.99,02/12/19 14:07,"569 Washington St, San Francisco, CA 94016" +170587,Wired Headphones,1,11.99,02/27/19 10:03,"979 2nd St, Dallas, TX 75001" +170588,USB-C Charging Cable,1,11.95,02/06/19 23:49,"780 Willow St, Portland, OR 97035" +170589,USB-C Charging Cable,1,11.95,02/26/19 09:02,"937 10th St, Austin, TX 73301" +170590,Macbook Pro Laptop,1,1700,02/24/19 08:55,"131 Dogwood St, Portland, ME 04101" +170591,Bose SoundSport Headphones,1,99.99,02/10/19 11:22,"814 Main St, New York City, NY 10001" +170592,Apple Airpods Headphones,1,150,02/06/19 13:30,"577 Maple St, Dallas, TX 75001" +170593,USB-C Charging Cable,1,11.95,02/18/19 17:30,"83 Chestnut St, Boston, MA 02215" +170594,USB-C Charging Cable,1,11.95,02/01/19 09:31,"826 Center St, San Francisco, CA 94016" +170595,AAA Batteries (4-pack),1,2.99,02/24/19 16:10,"635 13th St, Seattle, WA 98101" +170596,iPhone,1,700,02/05/19 19:41,"346 Maple St, Boston, MA 02215" +170597,20in Monitor,1,109.99,02/27/19 17:31,"101 2nd St, Los Angeles, CA 90001" +170598,27in 4K Gaming Monitor,1,389.99,02/28/19 17:30,"692 Chestnut St, New York City, NY 10001" +170599,AAA Batteries (4-pack),1,2.99,02/23/19 21:46,"528 Pine St, San Francisco, CA 94016" +170600,Wired Headphones,1,11.99,02/04/19 23:37,"6 4th St, Atlanta, GA 30301" +170601,USB-C Charging Cable,1,11.95,02/05/19 11:58,"439 South St, Dallas, TX 75001" +170602,Apple Airpods Headphones,1,150,02/10/19 19:24,"646 Forest St, Boston, MA 02215" +170603,ThinkPad Laptop,1,999.99,02/26/19 22:01,"802 Pine St, Boston, MA 02215" +170604,AA Batteries (4-pack),1,3.84,02/15/19 14:51,"823 Wilson St, Boston, MA 02215" +170605,iPhone,1,700,02/19/19 09:33,"427 10th St, New York City, NY 10001" +170606,Lightning Charging Cable,1,14.95,02/15/19 08:09,"688 8th St, Boston, MA 02215" +170607,ThinkPad Laptop,1,999.99,02/27/19 22:54,"975 4th St, Portland, OR 97035" +170608,USB-C Charging Cable,1,11.95,02/14/19 06:06,"695 12th St, Los Angeles, CA 90001" +170609,AA Batteries (4-pack),2,3.84,02/19/19 14:17,"742 Cherry St, San Francisco, CA 94016" +170610,AAA Batteries (4-pack),1,2.99,02/23/19 21:40,"652 Hickory St, Los Angeles, CA 90001" +170611,USB-C Charging Cable,1,11.95,02/02/19 19:39,"719 Meadow St, Los Angeles, CA 90001" +170612,Wired Headphones,1,11.99,02/01/19 12:11,"695 Johnson St, Portland, OR 97035" +170613,Lightning Charging Cable,1,14.95,02/03/19 20:33,"668 11th St, Los Angeles, CA 90001" +170614,AA Batteries (4-pack),1,3.84,02/21/19 08:49,"856 Cherry St, San Francisco, CA 94016" +170615,AAA Batteries (4-pack),2,2.99,02/11/19 14:54,"335 Meadow St, Boston, MA 02215" +170616,AA Batteries (4-pack),1,3.84,02/09/19 08:45,"479 7th St, Atlanta, GA 30301" +170617,AA Batteries (4-pack),1,3.84,02/16/19 00:06,"849 Highland St, Atlanta, GA 30301" +170618,AAA Batteries (4-pack),2,2.99,02/13/19 19:47,"575 14th St, San Francisco, CA 94016" +170619,AAA Batteries (4-pack),1,2.99,02/15/19 19:46,"986 Meadow St, Seattle, WA 98101" +170620,Lightning Charging Cable,1,14.95,02/10/19 12:49,"675 Lakeview St, Boston, MA 02215" +170621,Bose SoundSport Headphones,1,99.99,02/22/19 18:48,"19 Lake St, San Francisco, CA 94016" +170622,Wired Headphones,2,11.99,02/13/19 16:19,"498 Lake St, New York City, NY 10001" +170623,Lightning Charging Cable,1,14.95,02/07/19 16:23,"971 Maple St, Boston, MA 02215" +170624,Apple Airpods Headphones,1,150,02/11/19 14:35,"634 Adams St, New York City, NY 10001" +170625,Apple Airpods Headphones,1,150,02/01/19 10:47,"336 Washington St, Seattle, WA 98101" +170626,AAA Batteries (4-pack),2,2.99,02/24/19 09:36,"448 4th St, Austin, TX 73301" +170627,Google Phone,1,600,02/09/19 14:05,"943 North St, Dallas, TX 75001" +170628,Bose SoundSport Headphones,1,99.99,02/21/19 21:52,"568 11th St, Atlanta, GA 30301" +170629,Bose SoundSport Headphones,1,99.99,02/18/19 14:18,"711 2nd St, New York City, NY 10001" +170630,Apple Airpods Headphones,1,150,02/17/19 15:05,"573 Elm St, San Francisco, CA 94016" +170631,Flatscreen TV,1,300,02/20/19 19:38,"604 Wilson St, San Francisco, CA 94016" +170632,Apple Airpods Headphones,1,150,02/20/19 20:16,"573 1st St, Portland, ME 04101" +170633,27in 4K Gaming Monitor,1,389.99,02/22/19 17:07,"881 Adams St, Los Angeles, CA 90001" +170634,Wired Headphones,1,11.99,02/10/19 20:50,"757 9th St, New York City, NY 10001" +170635,Macbook Pro Laptop,1,1700,02/01/19 14:42,"668 Center St, Dallas, TX 75001" +170636,Wired Headphones,2,11.99,02/27/19 00:11,"32 Maple St, Los Angeles, CA 90001" +170637,Apple Airpods Headphones,1,150,02/18/19 12:06,"993 5th St, New York City, NY 10001" +170638,Flatscreen TV,2,300,02/26/19 12:59,"470 Walnut St, Austin, TX 73301" +170639,AA Batteries (4-pack),1,3.84,02/22/19 09:49,"65 Lake St, Portland, OR 97035" +170640,AA Batteries (4-pack),1,3.84,02/06/19 21:03,"684 Jackson St, Austin, TX 73301" +170641,Lightning Charging Cable,1,14.95,02/24/19 16:22,"988 2nd St, Austin, TX 73301" +170642,AAA Batteries (4-pack),1,2.99,02/21/19 23:08,"878 Adams St, New York City, NY 10001" +170643,Wired Headphones,1,11.99,02/14/19 17:31,"125 10th St, New York City, NY 10001" +170644,AA Batteries (4-pack),1,3.84,02/01/19 15:09,"495 Madison St, Dallas, TX 75001" +170645,Lightning Charging Cable,1,14.95,02/03/19 16:33,"824 Washington St, Los Angeles, CA 90001" +170646,20in Monitor,1,109.99,02/10/19 08:11,"153 10th St, San Francisco, CA 94016" +170647,Bose SoundSport Headphones,1,99.99,02/27/19 15:05,"76 West St, Los Angeles, CA 90001" +170648,34in Ultrawide Monitor,1,379.99,02/14/19 11:48,"170 Lincoln St, Los Angeles, CA 90001" +170649,USB-C Charging Cable,1,11.95,02/27/19 18:57,"840 South St, Portland, ME 04101" +170650,AA Batteries (4-pack),3,3.84,02/18/19 07:30,"623 Chestnut St, Seattle, WA 98101" +170651,34in Ultrawide Monitor,1,379.99,02/06/19 07:30,"600 8th St, Portland, OR 97035" +170652,20in Monitor,1,109.99,02/18/19 15:34,"760 Meadow St, Boston, MA 02215" +170653,USB-C Charging Cable,1,11.95,02/13/19 20:43,"256 9th St, New York City, NY 10001" +170654,34in Ultrawide Monitor,1,379.99,02/22/19 22:34,"565 Cedar St, Dallas, TX 75001" +170655,USB-C Charging Cable,1,11.95,02/12/19 22:13,"56 Lakeview St, Los Angeles, CA 90001" +170656,AAA Batteries (4-pack),1,2.99,02/23/19 22:59,"68 Lincoln St, Atlanta, GA 30301" +170657,Flatscreen TV,1,300,02/18/19 16:06,"303 Jefferson St, New York City, NY 10001" +170658,iPhone,1,700,02/06/19 14:20,"60 Hickory St, San Francisco, CA 94016" +170659,Wired Headphones,1,11.99,02/25/19 19:47,"484 Cherry St, Atlanta, GA 30301" +170660,Apple Airpods Headphones,1,150,02/17/19 09:03,"442 2nd St, Los Angeles, CA 90001" +170661,AAA Batteries (4-pack),5,2.99,02/04/19 09:04,"64 Walnut St, San Francisco, CA 94016" +170662,AAA Batteries (4-pack),2,2.99,02/15/19 14:10,"399 8th St, Boston, MA 02215" +170662,Wired Headphones,1,11.99,02/15/19 14:10,"399 8th St, Boston, MA 02215" +170663,34in Ultrawide Monitor,1,379.99,02/03/19 15:32,"264 Maple St, Los Angeles, CA 90001" +170664,Lightning Charging Cable,1,14.95,02/22/19 17:16,"448 8th St, Seattle, WA 98101" +170665,Wired Headphones,1,11.99,02/11/19 13:07,"195 4th St, San Francisco, CA 94016" +170665,Lightning Charging Cable,1,14.95,02/11/19 13:07,"195 4th St, San Francisco, CA 94016" +170666,Bose SoundSport Headphones,1,99.99,02/15/19 10:56,"485 Cherry St, Portland, OR 97035" +170667,27in 4K Gaming Monitor,1,389.99,02/09/19 17:37,"8 South St, San Francisco, CA 94016" +170668,20in Monitor,1,109.99,02/07/19 07:52,"342 Hill St, Atlanta, GA 30301" +170669,Lightning Charging Cable,1,14.95,02/12/19 00:11,"147 Jefferson St, New York City, NY 10001" +170670,Apple Airpods Headphones,1,150,02/08/19 23:38,"33 Washington St, Portland, OR 97035" +170671,Flatscreen TV,1,300,02/08/19 19:12,"228 1st St, Austin, TX 73301" +170672,Apple Airpods Headphones,1,150,02/09/19 23:46,"545 Spruce St, Los Angeles, CA 90001" +170673,ThinkPad Laptop,1,999.99,02/05/19 12:02,"250 8th St, Dallas, TX 75001" +170674,AAA Batteries (4-pack),1,2.99,02/05/19 07:53,"896 4th St, San Francisco, CA 94016" +170675,Apple Airpods Headphones,1,150,02/17/19 10:21,"419 Lake St, Portland, OR 97035" +170676,Wired Headphones,1,11.99,02/08/19 20:48,"941 Elm St, Atlanta, GA 30301" +170677,AA Batteries (4-pack),1,3.84,02/11/19 21:50,"40 7th St, Los Angeles, CA 90001" +170678,Bose SoundSport Headphones,1,99.99,02/10/19 09:35,"482 Center St, New York City, NY 10001" +170679,Apple Airpods Headphones,1,150,02/23/19 13:26,"119 Hickory St, Portland, OR 97035" +170680,ThinkPad Laptop,1,999.99,02/27/19 10:02,"975 Elm St, San Francisco, CA 94016" +170681,AA Batteries (4-pack),1,3.84,02/20/19 07:22,"44 River St, New York City, NY 10001" +170682,USB-C Charging Cable,1,11.95,02/08/19 00:22,"138 13th St, Austin, TX 73301" +170683,AAA Batteries (4-pack),1,2.99,02/28/19 14:52,"402 Washington St, Boston, MA 02215" +170684,Apple Airpods Headphones,1,150,02/19/19 17:59,"596 Lake St, Los Angeles, CA 90001" +170685,AA Batteries (4-pack),1,3.84,02/10/19 22:54,"410 Ridge St, New York City, NY 10001" +170686,USB-C Charging Cable,1,11.95,02/21/19 23:21,"715 Washington St, Los Angeles, CA 90001" +170687,Flatscreen TV,1,300,02/14/19 20:06,"633 Spruce St, New York City, NY 10001" +170687,Wired Headphones,1,11.99,02/14/19 20:06,"633 Spruce St, New York City, NY 10001" +170688,27in 4K Gaming Monitor,1,389.99,02/24/19 18:41,"879 7th St, New York City, NY 10001" +170688,USB-C Charging Cable,1,11.95,02/24/19 18:41,"879 7th St, New York City, NY 10001" +170689,AA Batteries (4-pack),1,3.84,02/06/19 14:51,"904 Walnut St, Seattle, WA 98101" +170690,AA Batteries (4-pack),1,3.84,02/04/19 23:54,"222 Maple St, San Francisco, CA 94016" +170691,Macbook Pro Laptop,1,1700,02/08/19 20:57,"446 Lincoln St, New York City, NY 10001" +170692,AAA Batteries (4-pack),1,2.99,02/02/19 18:32,"257 Johnson St, Atlanta, GA 30301" +170693,Bose SoundSport Headphones,1,99.99,02/12/19 22:23,"494 Lake St, Dallas, TX 75001" +170694,AAA Batteries (4-pack),1,2.99,02/03/19 06:38,"565 Chestnut St, Seattle, WA 98101" +170695,Wired Headphones,1,11.99,02/20/19 19:58,"158 Elm St, Los Angeles, CA 90001" +170696,Lightning Charging Cable,1,14.95,02/03/19 14:42,"432 2nd St, Seattle, WA 98101" +170697,USB-C Charging Cable,1,11.95,02/05/19 11:31,"105 Lincoln St, Seattle, WA 98101" +170698,Lightning Charging Cable,1,14.95,02/21/19 18:37,"442 Adams St, Los Angeles, CA 90001" +170699,Lightning Charging Cable,1,14.95,02/13/19 13:36,"915 Madison St, Boston, MA 02215" +170700,USB-C Charging Cable,2,11.95,02/28/19 09:02,"878 Cherry St, Portland, OR 97035" +170701,AA Batteries (4-pack),2,3.84,02/13/19 12:40,"350 North St, New York City, NY 10001" +170702,ThinkPad Laptop,1,999.99,02/12/19 09:26,"670 12th St, New York City, NY 10001" +170703,USB-C Charging Cable,1,11.95,02/05/19 09:41,"419 11th St, Boston, MA 02215" +170704,AAA Batteries (4-pack),3,2.99,02/22/19 20:03,"279 Wilson St, Dallas, TX 75001" +170705,ThinkPad Laptop,1,999.99,02/12/19 20:06,"979 1st St, San Francisco, CA 94016" +170706,LG Dryer,1,600.0,02/08/19 22:25,"734 Jefferson St, Los Angeles, CA 90001" +170707,Google Phone,1,600,02/25/19 13:12,"200 Washington St, Portland, OR 97035" +170707,USB-C Charging Cable,1,11.95,02/25/19 13:12,"200 Washington St, Portland, OR 97035" +170708,27in 4K Gaming Monitor,1,389.99,02/13/19 11:24,"629 Elm St, Boston, MA 02215" +170709,AAA Batteries (4-pack),1,2.99,02/08/19 14:47,"700 Main St, Los Angeles, CA 90001" +170710,27in 4K Gaming Monitor,1,389.99,02/02/19 12:15,"943 1st St, Boston, MA 02215" +170711,Google Phone,1,600,02/23/19 19:45,"461 5th St, San Francisco, CA 94016" +170712,Bose SoundSport Headphones,1,99.99,02/19/19 22:10,"237 West St, New York City, NY 10001" +170713,AA Batteries (4-pack),1,3.84,02/27/19 12:25,"776 13th St, Los Angeles, CA 90001" +170714,Wired Headphones,1,11.99,02/07/19 17:35,"378 North St, San Francisco, CA 94016" +170715,Lightning Charging Cable,1,14.95,02/18/19 18:21,"607 Maple St, Portland, ME 04101" +170716,Flatscreen TV,1,300,02/16/19 00:35,"799 Church St, San Francisco, CA 94016" +170717,Wired Headphones,1,11.99,02/05/19 13:40,"772 Elm St, Los Angeles, CA 90001" +170718,USB-C Charging Cable,1,11.95,02/13/19 13:59,"828 Walnut St, New York City, NY 10001" +170719,20in Monitor,1,109.99,02/15/19 16:25,"124 River St, Atlanta, GA 30301" +170720,27in 4K Gaming Monitor,1,389.99,02/02/19 19:15,"405 Sunset St, New York City, NY 10001" +170721,ThinkPad Laptop,1,999.99,02/14/19 18:28,"275 Wilson St, San Francisco, CA 94016" +170722,27in 4K Gaming Monitor,1,389.99,02/15/19 07:56,"781 13th St, New York City, NY 10001" +170723,27in 4K Gaming Monitor,1,389.99,02/10/19 18:16,"662 Washington St, San Francisco, CA 94016" +170724,Apple Airpods Headphones,1,150,02/14/19 14:27,"600 Chestnut St, Dallas, TX 75001" +170725,AA Batteries (4-pack),1,3.84,02/21/19 04:15,"114 Cedar St, New York City, NY 10001" +170726,AA Batteries (4-pack),1,3.84,02/18/19 14:31,"639 Dogwood St, Atlanta, GA 30301" +170727,27in FHD Monitor,1,149.99,02/22/19 15:05,"339 4th St, Austin, TX 73301" +170728,Macbook Pro Laptop,1,1700,02/15/19 17:39,"510 Meadow St, New York City, NY 10001" +170729,USB-C Charging Cable,1,11.95,02/01/19 19:27,"425 Cedar St, San Francisco, CA 94016" +170730,USB-C Charging Cable,1,11.95,02/20/19 18:55,"172 North St, Portland, OR 97035" +170731,Wired Headphones,1,11.99,02/12/19 18:00,"333 Hill St, Atlanta, GA 30301" +170732,Wired Headphones,1,11.99,02/01/19 19:31,"646 11th St, Los Angeles, CA 90001" +170733,Macbook Pro Laptop,1,1700,02/19/19 15:33,"731 13th St, San Francisco, CA 94016" +170734,34in Ultrawide Monitor,1,379.99,02/06/19 21:07,"996 Walnut St, New York City, NY 10001" +170735,Apple Airpods Headphones,1,150,02/10/19 15:00,"648 7th St, Portland, OR 97035" +170736,Apple Airpods Headphones,1,150,02/27/19 14:13,"598 Forest St, Austin, TX 73301" +170737,AAA Batteries (4-pack),1,2.99,02/27/19 19:41,"323 7th St, Atlanta, GA 30301" +170738,iPhone,1,700,02/07/19 18:03,"734 Hickory St, San Francisco, CA 94016" +170739,Lightning Charging Cable,1,14.95,02/05/19 21:48,"330 West St, Dallas, TX 75001" +170740,Apple Airpods Headphones,1,150,02/12/19 14:21,"650 Madison St, Los Angeles, CA 90001" +170741,USB-C Charging Cable,1,11.95,02/13/19 14:39,"683 Hill St, Los Angeles, CA 90001" +170742,AAA Batteries (4-pack),2,2.99,02/06/19 14:02,"11 5th St, New York City, NY 10001" +170743,Wired Headphones,1,11.99,02/20/19 17:19,"945 11th St, Austin, TX 73301" +170744,Macbook Pro Laptop,1,1700,02/13/19 11:57,"790 Jackson St, Austin, TX 73301" +170745,AAA Batteries (4-pack),2,2.99,02/10/19 22:28,"547 Adams St, Dallas, TX 75001" +170746,Lightning Charging Cable,1,14.95,02/01/19 20:05,"310 7th St, San Francisco, CA 94016" +170747,Wired Headphones,1,11.99,03/01/19 00:48,"89 Cherry St, Boston, MA 02215" +170748,Bose SoundSport Headphones,1,99.99,02/15/19 18:48,"151 10th St, San Francisco, CA 94016" +170749,Macbook Pro Laptop,1,1700,02/28/19 20:13,"689 5th St, Atlanta, GA 30301" +170750,USB-C Charging Cable,1,11.95,02/15/19 00:43,"505 Lincoln St, New York City, NY 10001" +170751,iPhone,1,700,02/01/19 05:27,"209 West St, Seattle, WA 98101" +170751,Lightning Charging Cable,1,14.95,02/01/19 05:27,"209 West St, Seattle, WA 98101" +170752,AA Batteries (4-pack),1,3.84,02/12/19 09:37,"680 Ridge St, Seattle, WA 98101" +170753,Flatscreen TV,1,300,02/11/19 12:00,"241 14th St, Portland, OR 97035" +170754,ThinkPad Laptop,1,999.99,02/28/19 18:04,"330 Jackson St, Atlanta, GA 30301" +170755,27in 4K Gaming Monitor,1,389.99,02/01/19 11:39,"369 5th St, San Francisco, CA 94016" +170756,Lightning Charging Cable,1,14.95,02/06/19 16:29,"203 Lake St, New York City, NY 10001" +170757,iPhone,1,700,02/23/19 16:22,"35 13th St, Seattle, WA 98101" +170757,34in Ultrawide Monitor,1,379.99,02/23/19 16:22,"35 13th St, Seattle, WA 98101" +170758,AA Batteries (4-pack),1,3.84,02/25/19 22:16,"56 Ridge St, New York City, NY 10001" +170759,Lightning Charging Cable,1,14.95,02/21/19 19:36,"79 Sunset St, San Francisco, CA 94016" +170760,Wired Headphones,1,11.99,02/18/19 15:00,"768 Center St, Dallas, TX 75001" +170761,ThinkPad Laptop,1,999.99,02/19/19 19:18,"570 1st St, Los Angeles, CA 90001" +170762,Wired Headphones,1,11.99,02/10/19 00:05,"531 7th St, Seattle, WA 98101" +170763,Bose SoundSport Headphones,1,99.99,02/21/19 03:08,"633 1st St, Los Angeles, CA 90001" +170764,AAA Batteries (4-pack),2,2.99,02/10/19 07:59,"274 Ridge St, Seattle, WA 98101" +170765,ThinkPad Laptop,1,999.99,02/16/19 13:15,"330 West St, Seattle, WA 98101" +170766,AAA Batteries (4-pack),1,2.99,02/07/19 17:53,"766 4th St, Dallas, TX 75001" +170767,Wired Headphones,1,11.99,02/04/19 14:39,"953 Main St, Portland, OR 97035" +170768,Lightning Charging Cable,1,14.95,02/28/19 14:53,"79 Hill St, Seattle, WA 98101" +170769,USB-C Charging Cable,1,11.95,02/03/19 22:34,"354 5th St, San Francisco, CA 94016" +170770,34in Ultrawide Monitor,1,379.99,02/27/19 12:17,"610 9th St, Boston, MA 02215" +170771,20in Monitor,1,109.99,02/23/19 13:06,"420 Lincoln St, Atlanta, GA 30301" +170772,34in Ultrawide Monitor,1,379.99,02/21/19 09:17,"747 4th St, Dallas, TX 75001" +170773,Apple Airpods Headphones,1,150,02/25/19 13:29,"359 Jackson St, Austin, TX 73301" +170774,Lightning Charging Cable,1,14.95,02/07/19 20:21,"254 South St, Portland, OR 97035" +170775,Apple Airpods Headphones,1,150,02/14/19 18:29,"626 Hill St, New York City, NY 10001" +170776,34in Ultrawide Monitor,1,379.99,02/20/19 15:23,"779 Jackson St, Austin, TX 73301" +170777,AAA Batteries (4-pack),1,2.99,02/20/19 10:50,"613 Highland St, Los Angeles, CA 90001" +170778,Macbook Pro Laptop,1,1700,02/12/19 18:27,"823 Highland St, New York City, NY 10001" +170779,USB-C Charging Cable,1,11.95,02/26/19 09:17,"152 Chestnut St, Atlanta, GA 30301" +170780,Bose SoundSport Headphones,1,99.99,02/15/19 17:53,"88 West St, New York City, NY 10001" +170781,20in Monitor,1,109.99,02/11/19 19:23,"438 6th St, San Francisco, CA 94016" +170782,27in 4K Gaming Monitor,1,389.99,02/05/19 09:40,"560 Main St, Los Angeles, CA 90001" +170783,USB-C Charging Cable,1,11.95,02/18/19 19:36,"577 Center St, San Francisco, CA 94016" +170784,Bose SoundSport Headphones,1,99.99,02/28/19 09:22,"254 12th St, Los Angeles, CA 90001" +170785,Lightning Charging Cable,1,14.95,02/24/19 15:30,"674 7th St, Dallas, TX 75001" +170786,Lightning Charging Cable,2,14.95,02/06/19 15:49,"428 Walnut St, San Francisco, CA 94016" +170787,Apple Airpods Headphones,1,150,02/07/19 15:40,"96 9th St, Los Angeles, CA 90001" +170788,20in Monitor,1,109.99,02/07/19 12:36,"510 4th St, Atlanta, GA 30301" +170789,34in Ultrawide Monitor,1,379.99,02/27/19 13:45,"349 6th St, San Francisco, CA 94016" +170790,AAA Batteries (4-pack),1,2.99,02/22/19 23:24,"590 Lake St, Boston, MA 02215" +170791,Apple Airpods Headphones,1,150,02/06/19 09:23,"271 Forest St, San Francisco, CA 94016" +170792,Lightning Charging Cable,2,14.95,02/15/19 11:11,"263 Willow St, San Francisco, CA 94016" +170793,USB-C Charging Cable,2,11.95,02/13/19 21:33,"784 11th St, Dallas, TX 75001" +170794,Flatscreen TV,1,300,02/21/19 00:10,"297 Lincoln St, New York City, NY 10001" +170795,USB-C Charging Cable,1,11.95,02/23/19 17:34,"932 Johnson St, Seattle, WA 98101" +170796,Wired Headphones,1,11.99,02/02/19 18:42,"693 14th St, Boston, MA 02215" +170797,Lightning Charging Cable,1,14.95,02/15/19 17:00,"286 14th St, Los Angeles, CA 90001" +170798,Wired Headphones,1,11.99,02/24/19 16:37,"99 7th St, Seattle, WA 98101" +170798,Flatscreen TV,1,300,02/24/19 16:37,"99 7th St, Seattle, WA 98101" +170799,Bose SoundSport Headphones,1,99.99,02/10/19 14:11,"846 6th St, Portland, OR 97035" +170800,iPhone,1,700,02/10/19 09:45,"41 Spruce St, San Francisco, CA 94016" +170801,AA Batteries (4-pack),3,3.84,02/10/19 01:11,"871 7th St, Boston, MA 02215" +170802,AA Batteries (4-pack),2,3.84,02/27/19 15:02,"238 10th St, Dallas, TX 75001" +170803,AAA Batteries (4-pack),2,2.99,02/06/19 07:48,"850 Spruce St, San Francisco, CA 94016" +170804,Bose SoundSport Headphones,1,99.99,02/06/19 20:51,"487 Lakeview St, San Francisco, CA 94016" +170805,34in Ultrawide Monitor,1,379.99,02/09/19 20:00,"738 Hill St, Seattle, WA 98101" +170806,Macbook Pro Laptop,1,1700,02/18/19 21:41,"301 Highland St, Los Angeles, CA 90001" +170807,Wired Headphones,1,11.99,02/01/19 21:15,"81 Johnson St, Los Angeles, CA 90001" +170808,27in FHD Monitor,1,149.99,02/23/19 12:31,"653 10th St, Dallas, TX 75001" +170809,Bose SoundSport Headphones,1,99.99,02/07/19 11:30,"673 Cedar St, San Francisco, CA 94016" +170810,Google Phone,1,600,02/10/19 11:17,"457 Wilson St, Dallas, TX 75001" +170811,AA Batteries (4-pack),1,3.84,02/09/19 15:41,"878 8th St, Los Angeles, CA 90001" +170812,34in Ultrawide Monitor,1,379.99,02/05/19 16:28,"422 Pine St, New York City, NY 10001" +170813,Lightning Charging Cable,1,14.95,02/01/19 16:52,"461 4th St, Dallas, TX 75001" +170814,AAA Batteries (4-pack),1,2.99,02/03/19 12:16,"839 Madison St, New York City, NY 10001" +170815,27in FHD Monitor,1,149.99,02/15/19 18:51,"786 Church St, San Francisco, CA 94016" +170816,iPhone,1,700,02/10/19 19:07,"649 Spruce St, Boston, MA 02215" +170817,27in 4K Gaming Monitor,1,389.99,02/23/19 11:52,"678 Wilson St, Portland, OR 97035" +170818,Lightning Charging Cable,1,14.95,02/13/19 16:32,"57 12th St, San Francisco, CA 94016" +170819,USB-C Charging Cable,1,11.95,02/05/19 12:03,"477 Wilson St, Portland, ME 04101" +170820,Google Phone,1,600,02/02/19 17:06,"89 Walnut St, San Francisco, CA 94016" +170820,USB-C Charging Cable,1,11.95,02/02/19 17:06,"89 Walnut St, San Francisco, CA 94016" +170821,Bose SoundSport Headphones,1,99.99,02/16/19 20:59,"124 Cedar St, Seattle, WA 98101" +170822,Wired Headphones,1,11.99,02/11/19 21:25,"23 Walnut St, Seattle, WA 98101" +170823,Lightning Charging Cable,1,14.95,02/11/19 06:08,"46 Park St, Los Angeles, CA 90001" +170824,LG Dryer,1,600.0,02/08/19 18:21,"229 Church St, Boston, MA 02215" +170825,AAA Batteries (4-pack),1,2.99,02/17/19 14:32,"33 7th St, New York City, NY 10001" +170826,AA Batteries (4-pack),1,3.84,02/23/19 23:59,"96 Maple St, Los Angeles, CA 90001" +170827,Apple Airpods Headphones,1,150,02/07/19 14:53,"800 Pine St, Los Angeles, CA 90001" +170828,USB-C Charging Cable,2,11.95,02/04/19 15:00,"752 6th St, San Francisco, CA 94016" +170829,Bose SoundSport Headphones,1,99.99,02/28/19 20:11,"213 West St, San Francisco, CA 94016" +170830,AA Batteries (4-pack),1,3.84,02/09/19 12:05,"295 Ridge St, Seattle, WA 98101" +170831,Lightning Charging Cable,1,14.95,02/11/19 09:29,"176 Chestnut St, Austin, TX 73301" +170832,USB-C Charging Cable,1,11.95,02/07/19 16:33,"931 10th St, Boston, MA 02215" +170833,USB-C Charging Cable,1,11.95,02/12/19 18:07,"536 Meadow St, Boston, MA 02215" +170834,ThinkPad Laptop,1,999.99,02/06/19 19:28,"825 Ridge St, Boston, MA 02215" +170835,USB-C Charging Cable,1,11.95,02/22/19 22:29,"291 Jackson St, Los Angeles, CA 90001" +170836,Lightning Charging Cable,1,14.95,02/23/19 17:15,"205 River St, Portland, OR 97035" +170837,Lightning Charging Cable,1,14.95,02/16/19 15:17,"251 Madison St, Los Angeles, CA 90001" +170838,Google Phone,1,600,02/05/19 09:00,"353 4th St, Boston, MA 02215" +170838,USB-C Charging Cable,2,11.95,02/05/19 09:00,"353 4th St, Boston, MA 02215" +170838,Bose SoundSport Headphones,1,99.99,02/05/19 09:00,"353 4th St, Boston, MA 02215" +170839,Flatscreen TV,1,300,02/27/19 11:57,"789 Dogwood St, San Francisco, CA 94016" +170840,Wired Headphones,1,11.99,02/09/19 01:16,"395 Johnson St, San Francisco, CA 94016" +170841,20in Monitor,1,109.99,02/28/19 12:48,"416 Dogwood St, Atlanta, GA 30301" +170842,Lightning Charging Cable,1,14.95,02/03/19 21:06,"288 Cedar St, San Francisco, CA 94016" +170843,Lightning Charging Cable,1,14.95,02/18/19 16:04,"471 11th St, Austin, TX 73301" +170844,Macbook Pro Laptop,1,1700,02/20/19 14:24,"482 Maple St, Boston, MA 02215" +170845,iPhone,1,700,02/15/19 22:06,"27 Cherry St, New York City, NY 10001" +170845,Apple Airpods Headphones,1,150,02/15/19 22:06,"27 Cherry St, New York City, NY 10001" +170846,AAA Batteries (4-pack),1,2.99,02/15/19 16:26,"302 10th St, Los Angeles, CA 90001" +170847,Lightning Charging Cable,1,14.95,02/09/19 18:09,"706 River St, Austin, TX 73301" +170848,27in FHD Monitor,1,149.99,02/20/19 08:24,"724 Forest St, Atlanta, GA 30301" +170849,AAA Batteries (4-pack),2,2.99,02/03/19 00:33,"550 Jefferson St, Austin, TX 73301" +170850,ThinkPad Laptop,1,999.99,02/14/19 20:39,"166 Lake St, New York City, NY 10001" +170851,AA Batteries (4-pack),1,3.84,02/17/19 12:38,"945 Lakeview St, Seattle, WA 98101" +170852,Bose SoundSport Headphones,1,99.99,02/04/19 09:28,"92 South St, Atlanta, GA 30301" +170853,USB-C Charging Cable,1,11.95,02/13/19 17:11,"521 Meadow St, Dallas, TX 75001" +170854,34in Ultrawide Monitor,1,379.99,02/05/19 13:24,"58 Meadow St, Los Angeles, CA 90001" +170855,AAA Batteries (4-pack),1,2.99,02/13/19 20:22,"136 2nd St, Dallas, TX 75001" +170856,Lightning Charging Cable,1,14.95,02/01/19 18:10,"20 9th St, Boston, MA 02215" +170857,Wired Headphones,1,11.99,02/08/19 12:36,"796 8th St, San Francisco, CA 94016" +170858,AAA Batteries (4-pack),1,2.99,02/23/19 12:09,"560 North St, New York City, NY 10001" +170859,34in Ultrawide Monitor,1,379.99,02/28/19 09:26,"981 Jefferson St, Seattle, WA 98101" +170860,27in FHD Monitor,1,149.99,02/24/19 08:16,"892 Spruce St, Seattle, WA 98101" +170861,AA Batteries (4-pack),1,3.84,02/19/19 17:17,"170 Johnson St, Atlanta, GA 30301" +170862,Lightning Charging Cable,1,14.95,02/10/19 13:34,"960 Lake St, Seattle, WA 98101" +170863,AAA Batteries (4-pack),2,2.99,02/27/19 19:26,"285 Main St, San Francisco, CA 94016" +170864,USB-C Charging Cable,1,11.95,02/25/19 08:16,"168 Washington St, Seattle, WA 98101" +170865,Apple Airpods Headphones,1,150,02/13/19 11:38,"708 Cedar St, Seattle, WA 98101" +170866,34in Ultrawide Monitor,1,379.99,02/24/19 09:42,"261 North St, Seattle, WA 98101" +170867,20in Monitor,1,109.99,02/13/19 13:17,"236 7th St, Boston, MA 02215" +170868,Wired Headphones,2,11.99,02/11/19 21:00,"617 Walnut St, Boston, MA 02215" +170869,Flatscreen TV,1,300,02/01/19 22:50,"246 Hill St, Los Angeles, CA 90001" +170870,20in Monitor,1,109.99,02/10/19 14:48,"205 5th St, Dallas, TX 75001" +170871,AA Batteries (4-pack),2,3.84,02/07/19 17:20,"628 Madison St, San Francisco, CA 94016" +170872,Apple Airpods Headphones,1,150,02/28/19 17:32,"132 Cherry St, San Francisco, CA 94016" +170873,AAA Batteries (4-pack),1,2.99,02/22/19 15:26,"471 Hickory St, Dallas, TX 75001" +170874,USB-C Charging Cable,1,11.95,02/05/19 12:51,"310 Maple St, San Francisco, CA 94016" +170875,Vareebadd Phone,1,400,02/09/19 23:31,"300 Walnut St, San Francisco, CA 94016" +170876,USB-C Charging Cable,1,11.95,02/16/19 21:58,"323 Sunset St, Portland, OR 97035" +170877,AA Batteries (4-pack),2,3.84,02/17/19 15:29,"602 Cedar St, Boston, MA 02215" +170878,AA Batteries (4-pack),2,3.84,02/21/19 11:27,"888 Lakeview St, San Francisco, CA 94016" +170879,USB-C Charging Cable,1,11.95,02/25/19 11:05,"412 13th St, New York City, NY 10001" +170880,34in Ultrawide Monitor,1,379.99,02/06/19 21:07,"381 Maple St, Los Angeles, CA 90001" +170881,USB-C Charging Cable,1,11.95,02/21/19 12:45,"357 Park St, San Francisco, CA 94016" +170882,USB-C Charging Cable,1,11.95,02/03/19 18:50,"844 Church St, Seattle, WA 98101" +170883,USB-C Charging Cable,1,11.95,02/13/19 00:27,"640 Main St, Seattle, WA 98101" +170884,Lightning Charging Cable,1,14.95,02/12/19 10:05,"83 Adams St, Seattle, WA 98101" +170885,34in Ultrawide Monitor,1,379.99,02/28/19 01:16,"885 Forest St, Boston, MA 02215" +170886,Lightning Charging Cable,1,14.95,02/07/19 13:12,"298 6th St, Los Angeles, CA 90001" +170886,iPhone,1,700,02/07/19 13:12,"298 6th St, Los Angeles, CA 90001" +170887,Lightning Charging Cable,1,14.95,02/04/19 18:44,"152 Cedar St, San Francisco, CA 94016" +170888,iPhone,1,700,02/06/19 18:07,"299 11th St, Los Angeles, CA 90001" +170889,USB-C Charging Cable,1,11.95,02/06/19 19:59,"3 Hill St, New York City, NY 10001" +170890,Bose SoundSport Headphones,1,99.99,02/24/19 09:50,"510 8th St, Austin, TX 73301" +170891,Flatscreen TV,1,300,02/22/19 18:07,"714 Park St, Los Angeles, CA 90001" +170892,27in FHD Monitor,1,149.99,02/22/19 19:26,"692 Forest St, Portland, OR 97035" +170893,Wired Headphones,1,11.99,02/16/19 14:09,"953 West St, Portland, OR 97035" +170894,ThinkPad Laptop,1,999.99,02/11/19 13:07,"572 Johnson St, San Francisco, CA 94016" +170895,LG Washing Machine,1,600.0,02/02/19 11:10,"662 Dogwood St, New York City, NY 10001" +170896,Lightning Charging Cable,1,14.95,02/04/19 12:05,"489 Elm St, Seattle, WA 98101" +170897,Lightning Charging Cable,1,14.95,02/27/19 17:51,"557 6th St, San Francisco, CA 94016" +170898,Lightning Charging Cable,1,14.95,02/26/19 17:17,"104 Elm St, Seattle, WA 98101" +170899,34in Ultrawide Monitor,1,379.99,02/16/19 00:46,"599 6th St, Dallas, TX 75001" +170900,USB-C Charging Cable,1,11.95,02/28/19 05:50,"346 Willow St, Dallas, TX 75001" +170901,USB-C Charging Cable,1,11.95,02/26/19 23:10,"578 Lincoln St, Seattle, WA 98101" +170902,Wired Headphones,1,11.99,02/03/19 06:49,"172 Johnson St, Boston, MA 02215" +170903,Lightning Charging Cable,1,14.95,02/14/19 08:00,"579 Jefferson St, Los Angeles, CA 90001" +170904,USB-C Charging Cable,1,11.95,02/05/19 17:48,"548 South St, San Francisco, CA 94016" +170905,USB-C Charging Cable,1,11.95,02/01/19 11:08,"594 Lakeview St, Atlanta, GA 30301" +170906,AAA Batteries (4-pack),1,2.99,02/22/19 09:09,"102 Forest St, San Francisco, CA 94016" +170907,Apple Airpods Headphones,1,150,02/23/19 15:52,"577 11th St, San Francisco, CA 94016" +170908,Macbook Pro Laptop,1,1700,02/17/19 07:41,"727 Johnson St, Boston, MA 02215" +170909,Bose SoundSport Headphones,1,99.99,02/02/19 17:51,"538 West St, Atlanta, GA 30301" +170910,27in FHD Monitor,1,149.99,02/24/19 18:10,"707 7th St, Los Angeles, CA 90001" +170911,Bose SoundSport Headphones,1,99.99,02/22/19 20:15,"268 Cherry St, Los Angeles, CA 90001" +170912,AAA Batteries (4-pack),1,2.99,02/14/19 23:34,"909 11th St, San Francisco, CA 94016" +170913,USB-C Charging Cable,2,11.95,02/25/19 22:40,"859 Meadow St, Austin, TX 73301" +170914,Wired Headphones,1,11.99,02/10/19 08:38,"462 Walnut St, Atlanta, GA 30301" +170915,Bose SoundSport Headphones,1,99.99,02/07/19 11:54,"839 Hickory St, Atlanta, GA 30301" +170916,AA Batteries (4-pack),2,3.84,02/23/19 20:10,"101 Pine St, New York City, NY 10001" +170917,Google Phone,1,600,02/25/19 11:36,"365 10th St, Los Angeles, CA 90001" +170918,27in 4K Gaming Monitor,1,389.99,02/12/19 18:32,"34 Maple St, Boston, MA 02215" +170919,Apple Airpods Headphones,1,150,02/16/19 13:14,"892 Meadow St, New York City, NY 10001" +170920,AAA Batteries (4-pack),1,2.99,02/07/19 22:33,"258 Wilson St, San Francisco, CA 94016" +170921,AA Batteries (4-pack),2,3.84,02/02/19 22:51,"90 11th St, San Francisco, CA 94016" +170922,USB-C Charging Cable,1,11.95,02/15/19 20:36,"475 10th St, New York City, NY 10001" +170923,Wired Headphones,1,11.99,02/20/19 19:02,"40 Cherry St, New York City, NY 10001" +170924,Flatscreen TV,1,300,02/11/19 18:40,"917 Johnson St, New York City, NY 10001" +170925,AAA Batteries (4-pack),1,2.99,02/16/19 16:12,"326 8th St, Los Angeles, CA 90001" +170926,AA Batteries (4-pack),1,3.84,02/06/19 18:19,"299 Park St, New York City, NY 10001" +170927,Wired Headphones,1,11.99,02/15/19 15:48,"301 12th St, Los Angeles, CA 90001" +170928,AAA Batteries (4-pack),1,2.99,02/23/19 02:02,"199 Walnut St, San Francisco, CA 94016" +170929,Macbook Pro Laptop,1,1700,02/15/19 15:16,"966 2nd St, San Francisco, CA 94016" +170929,Lightning Charging Cable,1,14.95,02/15/19 15:16,"966 2nd St, San Francisco, CA 94016" +170930,Apple Airpods Headphones,1,150,02/25/19 19:45,"217 11th St, Dallas, TX 75001" +170931,USB-C Charging Cable,1,11.95,02/03/19 12:43,"887 Ridge St, Austin, TX 73301" +170932,Bose SoundSport Headphones,1,99.99,02/11/19 11:33,"999 13th St, San Francisco, CA 94016" +170933,USB-C Charging Cable,1,11.95,02/11/19 09:48,"20 13th St, Boston, MA 02215" +,,,,, +170934,Wired Headphones,1,11.99,02/07/19 15:37,"175 Highland St, Dallas, TX 75001" +170935,Apple Airpods Headphones,1,150,02/24/19 22:17,"795 North St, Boston, MA 02215" +170936,Wired Headphones,1,11.99,02/28/19 20:08,"798 Willow St, San Francisco, CA 94016" +170937,Wired Headphones,1,11.99,02/16/19 15:00,"169 Main St, Boston, MA 02215" +170938,Wired Headphones,1,11.99,02/09/19 18:35,"944 Ridge St, San Francisco, CA 94016" +170939,Bose SoundSport Headphones,1,99.99,02/11/19 12:23,"605 Johnson St, Los Angeles, CA 90001" +170940,Lightning Charging Cable,1,14.95,02/20/19 10:12,"162 Sunset St, Portland, ME 04101" +170941,Wired Headphones,1,11.99,02/18/19 20:39,"235 Highland St, New York City, NY 10001" +170942,20in Monitor,1,109.99,02/22/19 11:53,"455 Washington St, Seattle, WA 98101" +170943,Lightning Charging Cable,1,14.95,02/26/19 06:57,"117 Hill St, Los Angeles, CA 90001" +170944,27in FHD Monitor,1,149.99,02/02/19 08:25,"568 Cherry St, San Francisco, CA 94016" +170945,AAA Batteries (4-pack),1,2.99,02/09/19 21:55,"245 Church St, New York City, NY 10001" +170945,AAA Batteries (4-pack),1,2.99,02/09/19 21:55,"245 Church St, New York City, NY 10001" +170946,Apple Airpods Headphones,1,150,02/08/19 13:27,"448 13th St, Boston, MA 02215" +170947,27in FHD Monitor,1,149.99,02/19/19 00:26,"852 Cherry St, Boston, MA 02215" +170948,AAA Batteries (4-pack),2,2.99,02/07/19 13:55,"918 Maple St, Seattle, WA 98101" +170949,Apple Airpods Headphones,1,150,02/20/19 02:16,"294 Chestnut St, San Francisco, CA 94016" +170950,Bose SoundSport Headphones,1,99.99,02/05/19 07:06,"865 Elm St, Austin, TX 73301" +170951,Macbook Pro Laptop,1,1700,02/05/19 13:50,"423 10th St, Austin, TX 73301" +170952,Flatscreen TV,1,300,02/18/19 09:51,"740 Jackson St, New York City, NY 10001" +170953,27in 4K Gaming Monitor,1,389.99,02/14/19 13:00,"872 Johnson St, Boston, MA 02215" +170954,AA Batteries (4-pack),2,3.84,02/09/19 13:58,"322 9th St, Seattle, WA 98101" +170955,Vareebadd Phone,1,400,02/08/19 19:28,"856 Elm St, Dallas, TX 75001" +170955,USB-C Charging Cable,1,11.95,02/08/19 19:28,"856 Elm St, Dallas, TX 75001" +170956,USB-C Charging Cable,2,11.95,02/26/19 17:18,"367 North St, San Francisco, CA 94016" +170957,27in FHD Monitor,1,149.99,02/17/19 17:27,"318 Lakeview St, Dallas, TX 75001" +170958,Flatscreen TV,1,300,02/28/19 23:32,"261 Walnut St, New York City, NY 10001" +170959,Wired Headphones,1,11.99,02/26/19 17:52,"142 Jackson St, San Francisco, CA 94016" +170960,AAA Batteries (4-pack),4,2.99,02/11/19 17:44,"680 Wilson St, Los Angeles, CA 90001" +170961,iPhone,1,700,02/28/19 18:38,"609 Park St, Los Angeles, CA 90001" +170962,AAA Batteries (4-pack),1,2.99,02/17/19 23:45,"683 4th St, San Francisco, CA 94016" +170963,AA Batteries (4-pack),2,3.84,02/19/19 06:26,"686 Center St, San Francisco, CA 94016" +170964,27in FHD Monitor,1,149.99,02/11/19 18:15,"741 Cherry St, Atlanta, GA 30301" +170965,USB-C Charging Cable,1,11.95,02/02/19 12:47,"273 10th St, Los Angeles, CA 90001" +170966,AAA Batteries (4-pack),1,2.99,02/22/19 17:55,"582 West St, Portland, OR 97035" +170967,USB-C Charging Cable,2,11.95,02/14/19 10:27,"828 Main St, San Francisco, CA 94016" +170968,Lightning Charging Cable,1,14.95,02/26/19 20:14,"76 Maple St, Dallas, TX 75001" +170969,34in Ultrawide Monitor,1,379.99,02/12/19 04:37,"236 7th St, Seattle, WA 98101" +170970,iPhone,1,700,02/17/19 21:41,"116 Willow St, New York City, NY 10001" +170971,AA Batteries (4-pack),1,3.84,02/01/19 11:57,"766 8th St, Dallas, TX 75001" +170972,27in FHD Monitor,1,149.99,02/09/19 17:09,"304 Highland St, San Francisco, CA 94016" +170973,AA Batteries (4-pack),1,3.84,02/12/19 14:43,"399 13th St, Los Angeles, CA 90001" +170974,AAA Batteries (4-pack),1,2.99,02/16/19 22:09,"719 Maple St, New York City, NY 10001" +,,,,, +170975,ThinkPad Laptop,1,999.99,02/03/19 21:45,"985 Ridge St, San Francisco, CA 94016" +170976,27in 4K Gaming Monitor,1,389.99,02/03/19 21:19,"570 Jackson St, New York City, NY 10001" +170977,AAA Batteries (4-pack),1,2.99,02/10/19 18:22,"605 Dogwood St, Seattle, WA 98101" +170978,Apple Airpods Headphones,1,150,02/17/19 12:55,"306 Dogwood St, San Francisco, CA 94016" +170979,USB-C Charging Cable,1,11.95,02/21/19 19:31,"607 Sunset St, Dallas, TX 75001" +170980,Bose SoundSport Headphones,1,99.99,02/10/19 09:09,"61 2nd St, San Francisco, CA 94016" +170981,Apple Airpods Headphones,1,150,02/19/19 11:29,"2 West St, Dallas, TX 75001" +170982,USB-C Charging Cable,1,11.95,02/26/19 14:30,"363 Jackson St, San Francisco, CA 94016" +170983,Lightning Charging Cable,1,14.95,02/11/19 15:57,"66 Highland St, San Francisco, CA 94016" +170984,Apple Airpods Headphones,1,150,02/28/19 22:11,"590 6th St, Boston, MA 02215" +170985,Apple Airpods Headphones,1,150,02/21/19 17:58,"797 Washington St, San Francisco, CA 94016" +170986,Lightning Charging Cable,1,14.95,02/04/19 14:36,"89 Lakeview St, Dallas, TX 75001" +170987,27in FHD Monitor,1,149.99,02/03/19 06:33,"126 Madison St, New York City, NY 10001" +170988,USB-C Charging Cable,1,11.95,02/11/19 10:04,"642 Madison St, Seattle, WA 98101" +170989,Apple Airpods Headphones,1,150,02/07/19 12:28,"565 West St, Atlanta, GA 30301" +170990,AA Batteries (4-pack),1,3.84,02/17/19 11:07,"700 Dogwood St, San Francisco, CA 94016" +170991,27in 4K Gaming Monitor,1,389.99,02/17/19 13:54,"125 14th St, New York City, NY 10001" +170992,AA Batteries (4-pack),1,3.84,02/03/19 00:04,"691 North St, San Francisco, CA 94016" +170993,Bose SoundSport Headphones,1,99.99,02/09/19 22:28,"86 Washington St, Seattle, WA 98101" +170994,Bose SoundSport Headphones,1,99.99,02/25/19 04:33,"205 11th St, Austin, TX 73301" +170995,Lightning Charging Cable,1,14.95,02/01/19 13:46,"459 South St, Los Angeles, CA 90001" +170996,Wired Headphones,2,11.99,02/01/19 12:51,"678 12th St, New York City, NY 10001" +170997,AAA Batteries (4-pack),3,2.99,02/11/19 21:15,"14 14th St, Seattle, WA 98101" +170998,Bose SoundSport Headphones,2,99.99,02/24/19 20:54,"541 Meadow St, Los Angeles, CA 90001" +170999,27in 4K Gaming Monitor,1,389.99,02/25/19 19:25,"537 Walnut St, Los Angeles, CA 90001" +,,,,, +171000,34in Ultrawide Monitor,1,379.99,02/16/19 09:39,"659 West St, Los Angeles, CA 90001" +171001,Vareebadd Phone,1,400,02/10/19 00:13,"317 6th St, Boston, MA 02215" +171001,USB-C Charging Cable,1,11.95,02/10/19 00:13,"317 6th St, Boston, MA 02215" +171002,Lightning Charging Cable,1,14.95,02/08/19 21:40,"929 Spruce St, New York City, NY 10001" +171003,34in Ultrawide Monitor,1,379.99,02/10/19 18:19,"502 Main St, Atlanta, GA 30301" +171004,AAA Batteries (4-pack),2,2.99,02/26/19 15:42,"381 South St, New York City, NY 10001" +171005,USB-C Charging Cable,1,11.95,02/17/19 06:41,"586 Lakeview St, Boston, MA 02215" +171006,27in FHD Monitor,1,149.99,02/02/19 15:16,"564 Meadow St, San Francisco, CA 94016" +171007,34in Ultrawide Monitor,1,379.99,02/04/19 17:54,"755 Walnut St, Boston, MA 02215" +171008,34in Ultrawide Monitor,1,379.99,02/04/19 11:00,"300 South St, San Francisco, CA 94016" +171009,Apple Airpods Headphones,1,150,02/21/19 12:30,"219 Willow St, San Francisco, CA 94016" +171010,Wired Headphones,1,11.99,02/15/19 00:15,"417 Lake St, San Francisco, CA 94016" +171011,Wired Headphones,1,11.99,02/07/19 01:15,"714 Park St, Austin, TX 73301" +171012,34in Ultrawide Monitor,1,379.99,02/06/19 17:13,"514 7th St, San Francisco, CA 94016" +171013,27in 4K Gaming Monitor,1,389.99,02/21/19 21:44,"254 Adams St, New York City, NY 10001" +171014,iPhone,1,700,02/25/19 13:51,"777 2nd St, Los Angeles, CA 90001" +171015,USB-C Charging Cable,1,11.95,02/01/19 06:35,"276 Spruce St, San Francisco, CA 94016" +171016,ThinkPad Laptop,1,999.99,02/26/19 20:22,"260 10th St, Austin, TX 73301" +171017,AA Batteries (4-pack),1,3.84,02/01/19 17:25,"173 Main St, San Francisco, CA 94016" +171018,Google Phone,1,600,02/17/19 20:05,"442 Johnson St, Boston, MA 02215" +171019,Macbook Pro Laptop,1,1700,02/20/19 09:41,"912 Wilson St, Los Angeles, CA 90001" +171020,Apple Airpods Headphones,1,150,02/14/19 11:02,"150 Lakeview St, San Francisco, CA 94016" +171021,Bose SoundSport Headphones,1,99.99,02/22/19 20:31,"140 Jefferson St, Los Angeles, CA 90001" +171022,Macbook Pro Laptop,1,1700,02/27/19 14:39,"630 Jefferson St, San Francisco, CA 94016" +171023,Wired Headphones,2,11.99,02/23/19 12:41,"860 Elm St, Los Angeles, CA 90001" +171024,Lightning Charging Cable,1,14.95,02/24/19 16:00,"635 West St, Atlanta, GA 30301" +171025,Bose SoundSport Headphones,1,99.99,02/09/19 11:12,"64 Forest St, Los Angeles, CA 90001" +171026,Bose SoundSport Headphones,1,99.99,02/10/19 14:03,"4 River St, San Francisco, CA 94016" +171027,Macbook Pro Laptop,1,1700,02/04/19 12:44,"269 Main St, New York City, NY 10001" +171028,Wired Headphones,1,11.99,02/27/19 11:02,"964 Church St, Austin, TX 73301" +171029,AA Batteries (4-pack),2,3.84,02/05/19 16:42,"822 Meadow St, Austin, TX 73301" +171030,Flatscreen TV,1,300,02/10/19 13:41,"676 Adams St, Austin, TX 73301" +171031,Apple Airpods Headphones,1,150,02/04/19 20:27,"153 Hickory St, Boston, MA 02215" +171032,Wired Headphones,1,11.99,02/25/19 17:54,"602 Chestnut St, Portland, OR 97035" +171033,iPhone,1,700,02/05/19 01:17,"55 West St, Dallas, TX 75001" +171034,iPhone,1,700,02/19/19 06:20,"961 Sunset St, Atlanta, GA 30301" +171035,USB-C Charging Cable,1,11.95,02/02/19 11:18,"726 Forest St, Seattle, WA 98101" +171036,ThinkPad Laptop,1,999.99,02/05/19 10:52,"400 Meadow St, Atlanta, GA 30301" +171037,Bose SoundSport Headphones,1,99.99,02/03/19 14:08,"273 Maple St, San Francisco, CA 94016" +171038,34in Ultrawide Monitor,1,379.99,02/28/19 13:04,"963 Highland St, Atlanta, GA 30301" +171039,Lightning Charging Cable,1,14.95,02/20/19 19:05,"379 1st St, San Francisco, CA 94016" +171040,Apple Airpods Headphones,1,150,02/06/19 10:54,"675 South St, San Francisco, CA 94016" +171041,Apple Airpods Headphones,1,150,02/26/19 08:52,"983 1st St, San Francisco, CA 94016" +171042,USB-C Charging Cable,1,11.95,02/12/19 16:01,"815 Park St, New York City, NY 10001" +171043,AA Batteries (4-pack),1,3.84,02/14/19 15:58,"509 Hill St, San Francisco, CA 94016" +171044,34in Ultrawide Monitor,1,379.99,02/23/19 21:27,"838 1st St, Atlanta, GA 30301" +171045,USB-C Charging Cable,1,11.95,02/04/19 17:52,"818 Wilson St, Boston, MA 02215" +171046,34in Ultrawide Monitor,1,379.99,02/22/19 20:18,"360 Adams St, San Francisco, CA 94016" +171047,AA Batteries (4-pack),1,3.84,02/20/19 19:05,"560 River St, Los Angeles, CA 90001" +171048,Bose SoundSport Headphones,1,99.99,02/13/19 22:55,"963 Church St, Austin, TX 73301" +171049,USB-C Charging Cable,1,11.95,02/24/19 16:43,"77 Chestnut St, New York City, NY 10001" +171050,Lightning Charging Cable,1,14.95,02/26/19 12:29,"625 Lincoln St, Austin, TX 73301" +171051,Wired Headphones,2,11.99,02/07/19 11:07,"172 Cherry St, San Francisco, CA 94016" +171052,Lightning Charging Cable,1,14.95,02/02/19 19:41,"590 Meadow St, Los Angeles, CA 90001" +171053,Bose SoundSport Headphones,1,99.99,02/21/19 16:45,"755 Main St, Boston, MA 02215" +171054,Google Phone,1,600,02/15/19 22:27,"891 Jefferson St, Austin, TX 73301" +171054,USB-C Charging Cable,1,11.95,02/15/19 22:27,"891 Jefferson St, Austin, TX 73301" +171055,Apple Airpods Headphones,1,150,02/04/19 18:08,"396 Washington St, San Francisco, CA 94016" +171056,AAA Batteries (4-pack),1,2.99,02/27/19 20:28,"55 Cherry St, Portland, OR 97035" +171057,USB-C Charging Cable,1,11.95,02/06/19 14:35,"940 4th St, San Francisco, CA 94016" +171058,ThinkPad Laptop,1,999.99,02/09/19 19:48,"198 Lakeview St, San Francisco, CA 94016" +171059,34in Ultrawide Monitor,1,379.99,02/28/19 10:14,"709 Ridge St, Boston, MA 02215" +171060,USB-C Charging Cable,2,11.95,02/25/19 09:15,"676 Willow St, Austin, TX 73301" +171061,Google Phone,1,600,02/01/19 21:36,"880 Park St, San Francisco, CA 94016" +171062,USB-C Charging Cable,1,11.95,02/17/19 13:00,"554 Cedar St, Los Angeles, CA 90001" +171063,Lightning Charging Cable,1,14.95,02/05/19 07:45,"764 Cherry St, Boston, MA 02215" +171063,27in FHD Monitor,1,149.99,02/05/19 07:45,"764 Cherry St, Boston, MA 02215" +171064,iPhone,1,700,02/07/19 10:26,"695 Madison St, New York City, NY 10001" +171065,ThinkPad Laptop,1,999.99,02/20/19 09:53,"75 Sunset St, New York City, NY 10001" +171066,Apple Airpods Headphones,1,150,02/06/19 14:36,"356 Pine St, Seattle, WA 98101" +171067,USB-C Charging Cable,1,11.95,02/04/19 14:50,"235 Hickory St, Boston, MA 02215" +171068,Lightning Charging Cable,1,14.95,02/10/19 09:08,"79 Hickory St, Seattle, WA 98101" +171069,Wired Headphones,1,11.99,02/17/19 09:34,"401 Elm St, Los Angeles, CA 90001" +171070,Apple Airpods Headphones,1,150,02/01/19 13:02,"202 Center St, Atlanta, GA 30301" +171070,Wired Headphones,1,11.99,02/01/19 13:02,"202 Center St, Atlanta, GA 30301" +171071,AA Batteries (4-pack),4,3.84,02/24/19 17:46,"42 11th St, Los Angeles, CA 90001" +171072,34in Ultrawide Monitor,1,379.99,02/07/19 18:23,"307 5th St, San Francisco, CA 94016" +171073,Wired Headphones,1,11.99,02/01/19 16:30,"950 Jackson St, San Francisco, CA 94016" +171074,Apple Airpods Headphones,1,150,02/23/19 08:19,"436 Hickory St, Seattle, WA 98101" +171075,Apple Airpods Headphones,1,150,02/01/19 22:47,"805 Washington St, Austin, TX 73301" +171076,AA Batteries (4-pack),1,3.84,02/19/19 21:09,"6 Ridge St, San Francisco, CA 94016" +171077,AAA Batteries (4-pack),1,2.99,02/26/19 14:16,"573 Jackson St, Portland, OR 97035" +171078,AA Batteries (4-pack),1,3.84,02/09/19 03:32,"753 Hill St, San Francisco, CA 94016" +171079,Flatscreen TV,1,300,02/20/19 18:08,"703 14th St, Atlanta, GA 30301" +171080,Wired Headphones,2,11.99,02/04/19 17:00,"148 14th St, New York City, NY 10001" +171081,27in 4K Gaming Monitor,1,389.99,02/25/19 18:35,"484 Spruce St, Dallas, TX 75001" +171082,Lightning Charging Cable,1,14.95,02/15/19 13:03,"734 Highland St, Los Angeles, CA 90001" +171083,Apple Airpods Headphones,1,150,02/11/19 23:44,"863 2nd St, Austin, TX 73301" +171084,Apple Airpods Headphones,1,150,02/03/19 22:01,"690 Dogwood St, Boston, MA 02215" +171085,27in 4K Gaming Monitor,1,389.99,02/09/19 13:29,"905 Johnson St, Seattle, WA 98101" +171086,Wired Headphones,1,11.99,02/28/19 22:25,"182 Church St, Seattle, WA 98101" +171087,USB-C Charging Cable,1,11.95,02/15/19 19:34,"321 1st St, San Francisco, CA 94016" +171088,AAA Batteries (4-pack),2,2.99,02/26/19 21:17,"399 11th St, New York City, NY 10001" +171089,Apple Airpods Headphones,1,150,02/28/19 12:51,"570 Elm St, Austin, TX 73301" +171090,Wired Headphones,2,11.99,02/02/19 21:05,"465 Lincoln St, Atlanta, GA 30301" +171091,Vareebadd Phone,1,400,02/14/19 19:54,"651 Lakeview St, San Francisco, CA 94016" +171092,AAA Batteries (4-pack),1,2.99,02/18/19 11:28,"842 Lake St, Atlanta, GA 30301" +171093,Wired Headphones,1,11.99,02/17/19 13:54,"766 Jackson St, Portland, OR 97035" +171094,AA Batteries (4-pack),3,3.84,02/15/19 13:12,"810 Jefferson St, New York City, NY 10001" +171095,iPhone,1,700,02/08/19 04:13,"960 12th St, San Francisco, CA 94016" +171096,Wired Headphones,1,11.99,02/19/19 20:25,"25 North St, New York City, NY 10001" +171097,USB-C Charging Cable,1,11.95,02/25/19 10:41,"709 Jackson St, Dallas, TX 75001" +171098,Vareebadd Phone,1,400,02/17/19 09:25,"656 Center St, Atlanta, GA 30301" +171098,USB-C Charging Cable,1,11.95,02/17/19 09:25,"656 Center St, Atlanta, GA 30301" +171099,Wired Headphones,2,11.99,02/04/19 09:58,"709 West St, San Francisco, CA 94016" +171100,Wired Headphones,1,11.99,02/03/19 13:58,"550 Meadow St, Seattle, WA 98101" +171101,27in FHD Monitor,1,149.99,02/07/19 19:31,"505 13th St, Dallas, TX 75001" +171102,USB-C Charging Cable,1,11.95,02/12/19 18:04,"595 Willow St, Seattle, WA 98101" +171103,USB-C Charging Cable,1,11.95,02/10/19 09:22,"322 Church St, Dallas, TX 75001" +171104,Wired Headphones,1,11.99,02/15/19 03:59,"462 Adams St, San Francisco, CA 94016" +171105,USB-C Charging Cable,1,11.95,02/14/19 00:29,"509 Spruce St, San Francisco, CA 94016" +171106,Wired Headphones,1,11.99,02/12/19 22:44,"765 Sunset St, Seattle, WA 98101" +171107,AAA Batteries (4-pack),3,2.99,02/28/19 17:36,"797 Park St, Portland, OR 97035" +171108,Lightning Charging Cable,1,14.95,02/22/19 12:01,"93 Jefferson St, Dallas, TX 75001" +171109,20in Monitor,1,109.99,02/26/19 16:41,"686 Lincoln St, Dallas, TX 75001" +171110,27in FHD Monitor,1,149.99,02/01/19 10:34,"330 Lake St, Los Angeles, CA 90001" +171111,Lightning Charging Cable,1,14.95,02/06/19 17:54,"560 6th St, San Francisco, CA 94016" +171112,Lightning Charging Cable,1,14.95,02/11/19 22:58,"191 11th St, New York City, NY 10001" +171113,Apple Airpods Headphones,1,150,02/19/19 22:56,"291 5th St, New York City, NY 10001" +171113,AA Batteries (4-pack),1,3.84,02/19/19 22:56,"291 5th St, New York City, NY 10001" +171114,AA Batteries (4-pack),2,3.84,02/21/19 21:21,"270 North St, San Francisco, CA 94016" +171115,AAA Batteries (4-pack),2,2.99,02/07/19 22:30,"985 Cherry St, Los Angeles, CA 90001" +171116,Bose SoundSport Headphones,1,99.99,02/19/19 00:43,"768 Hickory St, New York City, NY 10001" +171117,AAA Batteries (4-pack),1,2.99,02/28/19 13:23,"228 River St, San Francisco, CA 94016" +171118,27in FHD Monitor,1,149.99,02/24/19 00:19,"350 10th St, Austin, TX 73301" +171119,AA Batteries (4-pack),2,3.84,02/03/19 15:19,"476 West St, Boston, MA 02215" +171120,27in 4K Gaming Monitor,1,389.99,02/16/19 12:28,"954 Main St, San Francisco, CA 94016" +171121,Wired Headphones,1,11.99,02/11/19 10:54,"963 Dogwood St, Atlanta, GA 30301" +171122,Lightning Charging Cable,1,14.95,03/01/19 00:04,"864 Cherry St, San Francisco, CA 94016" +171123,27in FHD Monitor,1,149.99,02/12/19 09:58,"300 Lakeview St, Portland, OR 97035" +171124,Lightning Charging Cable,1,14.95,02/02/19 15:21,"520 11th St, Atlanta, GA 30301" +171125,27in FHD Monitor,1,149.99,02/21/19 20:12,"489 12th St, San Francisco, CA 94016" +171126,Apple Airpods Headphones,1,150,02/10/19 18:49,"742 Washington St, Atlanta, GA 30301" +171127,Lightning Charging Cable,1,14.95,02/09/19 11:00,"483 Wilson St, Portland, ME 04101" +171128,27in 4K Gaming Monitor,1,389.99,02/13/19 11:37,"828 Hickory St, Atlanta, GA 30301" +171129,Lightning Charging Cable,1,14.95,02/06/19 10:43,"246 Church St, Dallas, TX 75001" +171130,Wired Headphones,1,11.99,02/01/19 15:17,"77 Hill St, New York City, NY 10001" +171131,AAA Batteries (4-pack),1,2.99,02/26/19 14:32,"559 Highland St, Dallas, TX 75001" +171132,Wired Headphones,1,11.99,02/03/19 15:37,"237 Willow St, Los Angeles, CA 90001" +171133,Wired Headphones,1,11.99,02/04/19 23:24,"483 10th St, San Francisco, CA 94016" +171134,USB-C Charging Cable,1,11.95,02/14/19 07:53,"110 8th St, New York City, NY 10001" +171135,34in Ultrawide Monitor,1,379.99,02/16/19 20:46,"475 Center St, Seattle, WA 98101" +171136,AA Batteries (4-pack),2,3.84,02/09/19 11:15,"320 Cherry St, San Francisco, CA 94016" +171137,Bose SoundSport Headphones,1,99.99,02/26/19 13:38,"800 Elm St, San Francisco, CA 94016" +171138,AAA Batteries (4-pack),3,2.99,02/22/19 21:32,"587 Cedar St, New York City, NY 10001" +171139,Google Phone,1,600,02/24/19 16:40,"562 Walnut St, Dallas, TX 75001" +171140,27in FHD Monitor,1,149.99,02/09/19 20:44,"512 13th St, Los Angeles, CA 90001" +171141,27in FHD Monitor,1,149.99,02/20/19 09:37,"170 5th St, Los Angeles, CA 90001" +171142,Bose SoundSport Headphones,1,99.99,02/01/19 17:14,"551 Madison St, San Francisco, CA 94016" +171143,USB-C Charging Cable,1,11.95,02/10/19 13:02,"246 9th St, San Francisco, CA 94016" +171144,AA Batteries (4-pack),1,3.84,02/24/19 18:11,"750 4th St, Atlanta, GA 30301" +171145,AAA Batteries (4-pack),1,2.99,02/06/19 15:22,"116 Lakeview St, Los Angeles, CA 90001" +171146,Lightning Charging Cable,1,14.95,02/14/19 22:51,"976 11th St, San Francisco, CA 94016" +171147,Apple Airpods Headphones,1,150,02/06/19 10:42,"846 Willow St, New York City, NY 10001" +171148,USB-C Charging Cable,1,11.95,02/26/19 10:16,"961 Center St, San Francisco, CA 94016" +171149,AA Batteries (4-pack),1,3.84,02/27/19 13:44,"790 2nd St, Los Angeles, CA 90001" +171150,Lightning Charging Cable,1,14.95,02/05/19 19:27,"187 Highland St, New York City, NY 10001" +171151,ThinkPad Laptop,1,999.99,02/27/19 20:20,"662 7th St, Los Angeles, CA 90001" +171152,34in Ultrawide Monitor,1,379.99,02/17/19 18:56,"252 Jefferson St, Atlanta, GA 30301" +171153,iPhone,1,700,02/01/19 20:35,"646 6th St, Los Angeles, CA 90001" +171153,Wired Headphones,1,11.99,02/01/19 20:35,"646 6th St, Los Angeles, CA 90001" +171154,Wired Headphones,1,11.99,02/25/19 14:16,"283 5th St, Boston, MA 02215" +171155,34in Ultrawide Monitor,1,379.99,02/24/19 18:56,"427 Hill St, New York City, NY 10001" +171156,AA Batteries (4-pack),1,3.84,02/16/19 06:33,"54 Elm St, Atlanta, GA 30301" +171157,34in Ultrawide Monitor,1,379.99,02/21/19 18:57,"88 1st St, Boston, MA 02215" +171158,USB-C Charging Cable,1,11.95,02/01/19 19:39,"502 Highland St, Boston, MA 02215" +171159,34in Ultrawide Monitor,1,379.99,02/25/19 16:22,"682 Walnut St, Boston, MA 02215" +171160,Macbook Pro Laptop,1,1700,02/08/19 10:25,"922 5th St, Portland, OR 97035" +171161,27in FHD Monitor,1,149.99,02/02/19 12:46,"811 Park St, San Francisco, CA 94016" +171162,AAA Batteries (4-pack),2,2.99,02/07/19 14:16,"238 Jackson St, Dallas, TX 75001" +171163,Apple Airpods Headphones,1,150,02/22/19 09:17,"524 South St, Los Angeles, CA 90001" +171164,AA Batteries (4-pack),1,3.84,02/21/19 14:59,"525 Center St, San Francisco, CA 94016" +171165,Lightning Charging Cable,2,14.95,02/08/19 06:06,"259 13th St, San Francisco, CA 94016" +171166,AAA Batteries (4-pack),1,2.99,02/10/19 11:50,"233 Adams St, San Francisco, CA 94016" +171167,Wired Headphones,1,11.99,02/16/19 08:52,"513 Washington St, Austin, TX 73301" +171168,USB-C Charging Cable,1,11.95,02/14/19 18:26,"873 14th St, Dallas, TX 75001" +171169,AAA Batteries (4-pack),2,2.99,02/02/19 11:25,"716 1st St, Atlanta, GA 30301" +171170,Macbook Pro Laptop,1,1700,02/02/19 12:51,"279 10th St, Seattle, WA 98101" +171171,AA Batteries (4-pack),1,3.84,02/22/19 02:50,"307 West St, Los Angeles, CA 90001" +171172,USB-C Charging Cable,1,11.95,02/22/19 23:06,"645 South St, Atlanta, GA 30301" +171173,iPhone,1,700,02/23/19 23:00,"868 Spruce St, San Francisco, CA 94016" +171174,AAA Batteries (4-pack),2,2.99,02/12/19 19:53,"236 Main St, Portland, ME 04101" +171175,Bose SoundSport Headphones,1,99.99,02/20/19 20:07,"972 Meadow St, San Francisco, CA 94016" +171176,AA Batteries (4-pack),2,3.84,02/26/19 07:45,"603 Walnut St, Los Angeles, CA 90001" +171177,AA Batteries (4-pack),3,3.84,02/14/19 02:03,"46 Ridge St, Portland, ME 04101" +171178,Wired Headphones,1,11.99,02/24/19 17:56,"534 7th St, Atlanta, GA 30301" +171179,Wired Headphones,1,11.99,02/13/19 16:02,"284 Center St, Los Angeles, CA 90001" +171180,AAA Batteries (4-pack),5,2.99,02/09/19 14:25,"585 Dogwood St, New York City, NY 10001" +171181,AA Batteries (4-pack),1,3.84,02/14/19 01:18,"505 Adams St, New York City, NY 10001" +171182,Apple Airpods Headphones,1,150,02/09/19 15:21,"132 Chestnut St, Portland, ME 04101" +171183,20in Monitor,1,109.99,02/08/19 19:10,"21 Adams St, Los Angeles, CA 90001" +171184,Wired Headphones,1,11.99,02/25/19 18:22,"381 Spruce St, Dallas, TX 75001" +171185,Wired Headphones,1,11.99,02/22/19 16:59,"376 Willow St, New York City, NY 10001" +171186,Lightning Charging Cable,1,14.95,02/12/19 22:50,"165 Hickory St, San Francisco, CA 94016" +171187,Bose SoundSport Headphones,1,99.99,02/23/19 19:03,"408 Hickory St, New York City, NY 10001" +171188,USB-C Charging Cable,1,11.95,02/01/19 11:51,"425 2nd St, Los Angeles, CA 90001" +171189,Bose SoundSport Headphones,1,99.99,02/06/19 14:20,"346 Jefferson St, New York City, NY 10001" +171190,Lightning Charging Cable,1,14.95,02/26/19 21:19,"750 13th St, Portland, OR 97035" +171191,27in FHD Monitor,1,149.99,02/25/19 18:50,"471 Lincoln St, San Francisco, CA 94016" +171192,Wired Headphones,1,11.99,02/07/19 21:41,"489 8th St, Los Angeles, CA 90001" +171192,27in FHD Monitor,1,149.99,02/07/19 21:41,"489 8th St, Los Angeles, CA 90001" +171193,27in 4K Gaming Monitor,1,389.99,02/12/19 08:55,"687 West St, San Francisco, CA 94016" +171194,Lightning Charging Cable,1,14.95,02/06/19 17:19,"270 Spruce St, San Francisco, CA 94016" +171195,AA Batteries (4-pack),1,3.84,02/19/19 17:06,"562 8th St, San Francisco, CA 94016" +171196,Lightning Charging Cable,1,14.95,02/27/19 13:24,"312 Elm St, Boston, MA 02215" +171197,Bose SoundSport Headphones,1,99.99,02/16/19 20:50,"596 Hickory St, Seattle, WA 98101" +171198,USB-C Charging Cable,1,11.95,02/09/19 11:46,"266 Elm St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +171199,Bose SoundSport Headphones,1,99.99,02/24/19 12:44,"287 Johnson St, San Francisco, CA 94016" +171200,Macbook Pro Laptop,1,1700,02/11/19 10:11,"761 Adams St, San Francisco, CA 94016" +171201,Wired Headphones,1,11.99,02/11/19 04:42,"299 Walnut St, San Francisco, CA 94016" +171202,AAA Batteries (4-pack),1,2.99,02/17/19 15:29,"545 Washington St, San Francisco, CA 94016" +171203,34in Ultrawide Monitor,1,379.99,02/27/19 12:52,"479 Wilson St, Boston, MA 02215" +171204,Bose SoundSport Headphones,1,99.99,02/10/19 15:19,"749 Jefferson St, Austin, TX 73301" +171205,Wired Headphones,1,11.99,02/15/19 15:55,"307 Ridge St, Dallas, TX 75001" +171206,USB-C Charging Cable,1,11.95,02/24/19 20:13,"666 Walnut St, New York City, NY 10001" +171207,AAA Batteries (4-pack),1,2.99,02/25/19 13:17,"441 Spruce St, New York City, NY 10001" +171208,USB-C Charging Cable,1,11.95,02/04/19 14:33,"775 Chestnut St, Austin, TX 73301" +171209,USB-C Charging Cable,1,11.95,02/02/19 21:33,"422 10th St, Dallas, TX 75001" +171210,Lightning Charging Cable,1,14.95,02/05/19 18:58,"698 Madison St, Atlanta, GA 30301" +171211,27in FHD Monitor,1,149.99,02/08/19 11:37,"956 Ridge St, New York City, NY 10001" +171212,AA Batteries (4-pack),1,3.84,02/28/19 17:56,"116 Wilson St, New York City, NY 10001" +171213,AA Batteries (4-pack),2,3.84,02/04/19 21:07,"635 Dogwood St, San Francisco, CA 94016" +171214,USB-C Charging Cable,1,11.95,02/11/19 21:18,"302 1st St, San Francisco, CA 94016" +171215,iPhone,1,700,02/19/19 19:33,"171 Chestnut St, Los Angeles, CA 90001" +171216,Wired Headphones,1,11.99,02/08/19 18:29,"581 13th St, San Francisco, CA 94016" +171217,20in Monitor,1,109.99,02/25/19 10:17,"450 Ridge St, Los Angeles, CA 90001" +171218,Lightning Charging Cable,1,14.95,02/18/19 11:13,"25 South St, Boston, MA 02215" +171219,AA Batteries (4-pack),2,3.84,02/25/19 16:36,"119 Elm St, Seattle, WA 98101" +171220,Apple Airpods Headphones,1,150,02/15/19 09:55,"75 Walnut St, Los Angeles, CA 90001" +171221,AAA Batteries (4-pack),2,2.99,02/19/19 18:57,"638 Adams St, San Francisco, CA 94016" +171222,Apple Airpods Headphones,1,150,02/05/19 07:45,"613 Walnut St, San Francisco, CA 94016" +171223,Wired Headphones,1,11.99,02/07/19 13:13,"854 10th St, Atlanta, GA 30301" +171224,AA Batteries (4-pack),1,3.84,02/19/19 10:12,"799 North St, Boston, MA 02215" +171225,27in FHD Monitor,1,149.99,02/15/19 07:25,"113 Ridge St, San Francisco, CA 94016" +171226,USB-C Charging Cable,1,11.95,02/21/19 16:01,"497 Wilson St, New York City, NY 10001" +171227,Lightning Charging Cable,1,14.95,02/05/19 15:19,"231 4th St, Atlanta, GA 30301" +171228,AA Batteries (4-pack),1,3.84,02/13/19 21:50,"570 West St, New York City, NY 10001" +171229,LG Washing Machine,1,600.0,02/02/19 20:10,"584 Chestnut St, San Francisco, CA 94016" +171230,Bose SoundSport Headphones,1,99.99,02/28/19 06:33,"584 River St, New York City, NY 10001" +171231,iPhone,1,700,02/22/19 18:56,"195 Hickory St, Austin, TX 73301" +171232,Bose SoundSport Headphones,1,99.99,02/01/19 10:07,"301 Pine St, San Francisco, CA 94016" +171233,27in FHD Monitor,1,149.99,02/06/19 18:27,"283 Forest St, Dallas, TX 75001" +171234,AA Batteries (4-pack),1,3.84,02/03/19 00:54,"941 1st St, Los Angeles, CA 90001" +171235,Google Phone,1,600,02/21/19 12:57,"150 West St, Atlanta, GA 30301" +171236,20in Monitor,1,109.99,02/15/19 20:46,"571 Johnson St, San Francisco, CA 94016" +171237,AAA Batteries (4-pack),1,2.99,02/02/19 15:08,"841 Main St, Los Angeles, CA 90001" +171238,USB-C Charging Cable,1,11.95,02/20/19 20:12,"248 Willow St, Los Angeles, CA 90001" +171239,Bose SoundSport Headphones,1,99.99,02/28/19 01:09,"364 Adams St, New York City, NY 10001" +171240,AA Batteries (4-pack),1,3.84,02/11/19 17:22,"588 7th St, Atlanta, GA 30301" +171241,AA Batteries (4-pack),3,3.84,02/02/19 14:29,"103 2nd St, San Francisco, CA 94016" +171242,Lightning Charging Cable,1,14.95,02/02/19 21:00,"313 Main St, San Francisco, CA 94016" +171243,AA Batteries (4-pack),3,3.84,02/12/19 08:26,"625 11th St, New York City, NY 10001" +171244,27in 4K Gaming Monitor,1,389.99,02/24/19 00:01,"27 6th St, New York City, NY 10001" +171245,LG Dryer,1,600.0,02/14/19 20:59,"287 12th St, Los Angeles, CA 90001" +171246,USB-C Charging Cable,1,11.95,02/24/19 12:41,"433 Elm St, San Francisco, CA 94016" +171247,Apple Airpods Headphones,1,150,02/24/19 16:04,"571 Hickory St, Los Angeles, CA 90001" +171248,AAA Batteries (4-pack),1,2.99,02/10/19 15:07,"45 Forest St, Boston, MA 02215" +171249,AAA Batteries (4-pack),1,2.99,02/01/19 11:51,"556 Maple St, Los Angeles, CA 90001" +171250,Apple Airpods Headphones,1,150,02/04/19 11:47,"167 12th St, San Francisco, CA 94016" +171251,Lightning Charging Cable,3,14.95,02/10/19 15:54,"456 Spruce St, Los Angeles, CA 90001" +171252,ThinkPad Laptop,1,999.99,02/27/19 06:03,"340 10th St, San Francisco, CA 94016" +171253,Bose SoundSport Headphones,1,99.99,02/04/19 19:00,"754 4th St, Portland, OR 97035" +171254,Apple Airpods Headphones,1,150,02/28/19 18:57,"111 2nd St, Los Angeles, CA 90001" +171255,iPhone,1,700,02/27/19 11:47,"946 Park St, Seattle, WA 98101" +171256,Lightning Charging Cable,1,14.95,02/12/19 18:42,"580 Walnut St, Los Angeles, CA 90001" +171257,Macbook Pro Laptop,1,1700,02/19/19 19:37,"56 Ridge St, Portland, OR 97035" +171258,Lightning Charging Cable,1,14.95,02/01/19 12:11,"450 North St, San Francisco, CA 94016" +171259,Wired Headphones,1,11.99,02/22/19 10:50,"366 Hill St, Boston, MA 02215" +,,,,, +171260,Lightning Charging Cable,1,14.95,02/27/19 10:47,"220 4th St, Boston, MA 02215" +171261,Lightning Charging Cable,1,14.95,02/01/19 14:41,"114 2nd St, Los Angeles, CA 90001" +171262,AAA Batteries (4-pack),2,2.99,02/23/19 13:56,"417 Lincoln St, Austin, TX 73301" +171263,Macbook Pro Laptop,1,1700,02/15/19 13:35,"577 Chestnut St, San Francisco, CA 94016" +171264,AA Batteries (4-pack),1,3.84,02/18/19 06:21,"477 9th St, Atlanta, GA 30301" +171265,AAA Batteries (4-pack),2,2.99,02/04/19 19:18,"179 Meadow St, Los Angeles, CA 90001" +171266,Lightning Charging Cable,1,14.95,02/24/19 17:52,"988 Main St, Seattle, WA 98101" +171267,Wired Headphones,1,11.99,02/17/19 18:05,"970 Center St, Dallas, TX 75001" +171268,Bose SoundSport Headphones,1,99.99,02/25/19 14:09,"39 Madison St, Dallas, TX 75001" +171269,USB-C Charging Cable,1,11.95,02/16/19 16:37,"335 Maple St, San Francisco, CA 94016" +171270,USB-C Charging Cable,1,11.95,02/08/19 14:25,"925 Jefferson St, Austin, TX 73301" +171271,Apple Airpods Headphones,1,150,02/28/19 15:27,"325 Jefferson St, Seattle, WA 98101" +171272,Apple Airpods Headphones,1,150,02/15/19 16:27,"997 Spruce St, Boston, MA 02215" +171273,Lightning Charging Cable,1,14.95,02/23/19 17:25,"228 Wilson St, New York City, NY 10001" +171274,Lightning Charging Cable,2,14.95,02/04/19 11:39,"198 Lincoln St, San Francisco, CA 94016" +171275,Lightning Charging Cable,1,14.95,02/20/19 10:37,"942 Church St, Atlanta, GA 30301" +171276,Bose SoundSport Headphones,1,99.99,02/13/19 19:58,"356 South St, Seattle, WA 98101" +171277,AAA Batteries (4-pack),2,2.99,02/13/19 23:23,"516 Dogwood St, New York City, NY 10001" +171278,Apple Airpods Headphones,1,150,02/05/19 13:27,"881 Hickory St, Los Angeles, CA 90001" +171279,Wired Headphones,1,11.99,02/24/19 21:58,"261 13th St, San Francisco, CA 94016" +171280,USB-C Charging Cable,1,11.95,02/16/19 00:18,"97 5th St, Seattle, WA 98101" +171281,USB-C Charging Cable,2,11.95,02/13/19 20:30,"704 River St, San Francisco, CA 94016" +171282,Bose SoundSport Headphones,1,99.99,02/01/19 13:31,"588 Lincoln St, Dallas, TX 75001" +171283,AAA Batteries (4-pack),1,2.99,02/26/19 23:12,"227 South St, Atlanta, GA 30301" +171284,Google Phone,1,600,02/06/19 19:51,"211 Elm St, Austin, TX 73301" +171285,Apple Airpods Headphones,1,150,02/10/19 18:06,"348 Elm St, New York City, NY 10001" +171286,Wired Headphones,1,11.99,02/22/19 14:31,"601 6th St, Atlanta, GA 30301" +171287,AA Batteries (4-pack),2,3.84,02/23/19 14:36,"195 Adams St, New York City, NY 10001" +171288,Flatscreen TV,1,300,02/17/19 14:58,"25 Dogwood St, Austin, TX 73301" +171289,Apple Airpods Headphones,1,150,02/26/19 13:43,"384 Dogwood St, New York City, NY 10001" +171290,Wired Headphones,1,11.99,02/09/19 21:09,"556 Hill St, Seattle, WA 98101" +171291,Macbook Pro Laptop,1,1700,02/17/19 14:42,"261 Cedar St, New York City, NY 10001" +171292,Lightning Charging Cable,1,14.95,02/22/19 21:03,"775 Main St, San Francisco, CA 94016" +171293,Macbook Pro Laptop,1,1700,02/16/19 18:38,"878 Ridge St, San Francisco, CA 94016" +171294,Wired Headphones,1,11.99,02/08/19 12:50,"319 Church St, Los Angeles, CA 90001" +171295,34in Ultrawide Monitor,1,379.99,02/19/19 23:39,"516 Lakeview St, New York City, NY 10001" +171296,USB-C Charging Cable,1,11.95,02/28/19 12:05,"793 1st St, Boston, MA 02215" +171297,20in Monitor,1,109.99,02/01/19 10:11,"689 Pine St, New York City, NY 10001" +171298,Flatscreen TV,1,300,02/22/19 17:44,"816 South St, Los Angeles, CA 90001" +171299,Google Phone,1,600,02/14/19 15:19,"701 Adams St, Los Angeles, CA 90001" +171300,AAA Batteries (4-pack),2,2.99,02/15/19 14:06,"360 10th St, Portland, OR 97035" +171301,20in Monitor,1,109.99,02/06/19 19:13,"258 4th St, Los Angeles, CA 90001" +171302,34in Ultrawide Monitor,1,379.99,02/02/19 16:26,"378 Sunset St, New York City, NY 10001" +171303,AA Batteries (4-pack),1,3.84,02/06/19 19:30,"96 Park St, Atlanta, GA 30301" +171304,iPhone,1,700,02/04/19 00:35,"530 Cherry St, Boston, MA 02215" +171305,AA Batteries (4-pack),1,3.84,02/05/19 06:15,"129 Cedar St, Los Angeles, CA 90001" +171306,Apple Airpods Headphones,1,150,02/24/19 13:17,"701 Meadow St, Boston, MA 02215" +171306,USB-C Charging Cable,1,11.95,02/24/19 13:17,"701 Meadow St, Boston, MA 02215" +171307,Bose SoundSport Headphones,1,99.99,02/27/19 17:51,"326 South St, Seattle, WA 98101" +171308,Google Phone,1,600,02/27/19 14:51,"316 Chestnut St, New York City, NY 10001" +171308,USB-C Charging Cable,1,11.95,02/27/19 14:51,"316 Chestnut St, New York City, NY 10001" +171309,Bose SoundSport Headphones,1,99.99,02/28/19 11:10,"494 12th St, San Francisco, CA 94016" +171310,34in Ultrawide Monitor,1,379.99,02/07/19 15:54,"10 Jackson St, Dallas, TX 75001" +171311,27in FHD Monitor,1,149.99,02/08/19 09:25,"49 2nd St, New York City, NY 10001" +171312,Apple Airpods Headphones,1,150,02/11/19 17:33,"117 Highland St, San Francisco, CA 94016" +171313,AAA Batteries (4-pack),2,2.99,02/18/19 13:05,"138 5th St, San Francisco, CA 94016" +171313,Apple Airpods Headphones,1,150,02/18/19 13:05,"138 5th St, San Francisco, CA 94016" +171314,Wired Headphones,1,11.99,02/11/19 16:06,"572 5th St, Seattle, WA 98101" +171315,AAA Batteries (4-pack),1,2.99,02/16/19 17:59,"905 10th St, Austin, TX 73301" +171316,AA Batteries (4-pack),1,3.84,02/12/19 01:43,"545 North St, San Francisco, CA 94016" +171317,AAA Batteries (4-pack),3,2.99,02/11/19 13:35,"923 Lakeview St, Dallas, TX 75001" +171318,AAA Batteries (4-pack),3,2.99,02/06/19 21:38,"396 Cedar St, San Francisco, CA 94016" +171319,USB-C Charging Cable,1,11.95,02/15/19 11:25,"297 1st St, Atlanta, GA 30301" +171319,34in Ultrawide Monitor,1,379.99,02/15/19 11:25,"297 1st St, Atlanta, GA 30301" +171320,Macbook Pro Laptop,1,1700,02/15/19 12:17,"867 South St, Atlanta, GA 30301" +171321,34in Ultrawide Monitor,1,379.99,02/11/19 00:04,"488 Jefferson St, San Francisco, CA 94016" +171322,USB-C Charging Cable,1,11.95,02/24/19 08:02,"796 Maple St, Los Angeles, CA 90001" +171323,AA Batteries (4-pack),1,3.84,02/14/19 20:22,"153 13th St, New York City, NY 10001" +171324,27in FHD Monitor,1,149.99,02/06/19 11:47,"395 Jackson St, San Francisco, CA 94016" +171325,USB-C Charging Cable,1,11.95,02/11/19 20:22,"854 4th St, Seattle, WA 98101" +171326,Wired Headphones,1,11.99,02/01/19 11:11,"876 Jefferson St, San Francisco, CA 94016" +171327,Wired Headphones,1,11.99,02/02/19 10:38,"641 Walnut St, Portland, ME 04101" +171328,27in 4K Gaming Monitor,1,389.99,02/05/19 15:59,"385 Highland St, Austin, TX 73301" +171329,USB-C Charging Cable,1,11.95,02/19/19 16:36,"220 9th St, San Francisco, CA 94016" +171330,Apple Airpods Headphones,1,150,02/13/19 10:52,"404 2nd St, Austin, TX 73301" +171331,Apple Airpods Headphones,1,150,02/15/19 16:46,"597 Johnson St, Dallas, TX 75001" +171332,USB-C Charging Cable,2,11.95,02/16/19 21:07,"957 Center St, Boston, MA 02215" +171333,Apple Airpods Headphones,1,150,02/18/19 20:06,"517 Lakeview St, Los Angeles, CA 90001" +171334,AA Batteries (4-pack),2,3.84,02/21/19 23:04,"423 Church St, San Francisco, CA 94016" +171335,AAA Batteries (4-pack),2,2.99,02/23/19 11:57,"934 Park St, New York City, NY 10001" +171336,AAA Batteries (4-pack),2,2.99,02/19/19 16:40,"941 Cedar St, Los Angeles, CA 90001" +171337,34in Ultrawide Monitor,1,379.99,02/23/19 16:03,"780 9th St, San Francisco, CA 94016" +171338,Apple Airpods Headphones,1,150,02/25/19 13:42,"457 1st St, Dallas, TX 75001" +171339,Bose SoundSport Headphones,1,99.99,02/04/19 19:48,"719 Jackson St, New York City, NY 10001" +171340,Apple Airpods Headphones,1,150,02/04/19 17:39,"734 Jefferson St, New York City, NY 10001" +171341,Bose SoundSport Headphones,1,99.99,02/20/19 08:34,"241 North St, San Francisco, CA 94016" +171342,Apple Airpods Headphones,1,150,02/08/19 09:49,"908 12th St, Los Angeles, CA 90001" +171343,Apple Airpods Headphones,1,150,02/25/19 16:33,"171 Adams St, Atlanta, GA 30301" +171344,Bose SoundSport Headphones,1,99.99,02/27/19 13:51,"26 Highland St, Seattle, WA 98101" +171345,Bose SoundSport Headphones,1,99.99,02/26/19 12:33,"605 Hickory St, New York City, NY 10001" +171346,Wired Headphones,1,11.99,02/15/19 12:09,"247 11th St, New York City, NY 10001" +171347,20in Monitor,1,109.99,02/14/19 14:03,"152 Forest St, Seattle, WA 98101" +171348,Macbook Pro Laptop,1,1700,02/21/19 16:02,"836 Spruce St, San Francisco, CA 94016" +171349,34in Ultrawide Monitor,1,379.99,02/07/19 10:35,"475 Dogwood St, Los Angeles, CA 90001" +171350,Bose SoundSport Headphones,1,99.99,02/20/19 10:52,"264 5th St, Los Angeles, CA 90001" +171351,27in 4K Gaming Monitor,1,389.99,02/05/19 21:09,"560 Main St, San Francisco, CA 94016" +171352,Wired Headphones,1,11.99,02/23/19 10:42,"367 8th St, Seattle, WA 98101" +171353,Lightning Charging Cable,3,14.95,02/12/19 09:50,"137 Ridge St, Los Angeles, CA 90001" +171354,Lightning Charging Cable,1,14.95,02/11/19 21:34,"634 River St, Los Angeles, CA 90001" +171355,USB-C Charging Cable,1,11.95,02/20/19 11:21,"805 Cedar St, Seattle, WA 98101" +171356,Vareebadd Phone,1,400,02/07/19 10:37,"507 Jefferson St, Seattle, WA 98101" +171357,AAA Batteries (4-pack),3,2.99,02/04/19 18:04,"351 Maple St, Austin, TX 73301" +171358,27in 4K Gaming Monitor,1,389.99,02/09/19 00:53,"802 Dogwood St, Austin, TX 73301" +171359,34in Ultrawide Monitor,1,379.99,02/01/19 09:33,"411 4th St, Atlanta, GA 30301" +171360,USB-C Charging Cable,1,11.95,02/05/19 09:50,"764 Cherry St, Dallas, TX 75001" +171361,Bose SoundSport Headphones,1,99.99,02/28/19 16:31,"167 Spruce St, New York City, NY 10001" +171362,Flatscreen TV,1,300,02/02/19 09:16,"88 Highland St, Austin, TX 73301" +171363,Bose SoundSport Headphones,1,99.99,02/15/19 23:34,"432 Sunset St, New York City, NY 10001" +171364,27in 4K Gaming Monitor,1,389.99,02/07/19 21:28,"419 River St, Dallas, TX 75001" +171365,iPhone,1,700,02/03/19 09:11,"633 1st St, Los Angeles, CA 90001" +171365,Lightning Charging Cable,1,14.95,02/03/19 09:11,"633 1st St, Los Angeles, CA 90001" +171366,Lightning Charging Cable,2,14.95,02/14/19 12:45,"409 Elm St, Seattle, WA 98101" +171367,Flatscreen TV,1,300,02/15/19 14:23,"564 Chestnut St, San Francisco, CA 94016" +171368,iPhone,1,700,02/25/19 11:32,"627 12th St, New York City, NY 10001" +171369,AA Batteries (4-pack),1,3.84,02/04/19 11:21,"84 West St, New York City, NY 10001" +171370,AAA Batteries (4-pack),2,2.99,02/10/19 09:32,"989 Pine St, Atlanta, GA 30301" +171371,Lightning Charging Cable,1,14.95,02/17/19 12:43,"753 Forest St, Atlanta, GA 30301" +171372,AA Batteries (4-pack),1,3.84,02/11/19 14:39,"74 Meadow St, Los Angeles, CA 90001" +171373,Apple Airpods Headphones,1,150,02/07/19 21:39,"999 4th St, Austin, TX 73301" +171374,AA Batteries (4-pack),1,3.84,02/11/19 14:01,"536 5th St, San Francisco, CA 94016" +171375,USB-C Charging Cable,1,11.95,02/13/19 13:46,"467 Madison St, Boston, MA 02215" +171376,USB-C Charging Cable,1,11.95,02/03/19 17:09,"421 Cedar St, Atlanta, GA 30301" +171377,27in FHD Monitor,1,149.99,02/13/19 19:59,"916 9th St, San Francisco, CA 94016" +171378,Macbook Pro Laptop,1,1700,02/24/19 16:57,"618 Hill St, Los Angeles, CA 90001" +171379,27in FHD Monitor,1,149.99,02/18/19 22:30,"600 Sunset St, Boston, MA 02215" +171380,AA Batteries (4-pack),2,3.84,02/13/19 16:44,"596 Wilson St, Austin, TX 73301" +171381,AAA Batteries (4-pack),1,2.99,02/21/19 11:29,"70 Jackson St, Los Angeles, CA 90001" +171382,AAA Batteries (4-pack),1,2.99,02/05/19 21:26,"516 Pine St, San Francisco, CA 94016" +171383,AA Batteries (4-pack),2,3.84,02/14/19 08:01,"76 Johnson St, Seattle, WA 98101" +171384,Apple Airpods Headphones,1,150,02/05/19 10:31,"750 11th St, Portland, OR 97035" +171385,Lightning Charging Cable,1,14.95,02/18/19 09:47,"664 10th St, Dallas, TX 75001" +171386,AAA Batteries (4-pack),1,2.99,02/02/19 21:12,"699 Pine St, Los Angeles, CA 90001" +171387,USB-C Charging Cable,1,11.95,02/13/19 17:34,"307 Madison St, Los Angeles, CA 90001" +171388,USB-C Charging Cable,1,11.95,02/11/19 22:14,"945 Meadow St, Dallas, TX 75001" +171389,Wired Headphones,1,11.99,02/17/19 07:47,"522 Main St, San Francisco, CA 94016" +171390,iPhone,1,700,02/01/19 07:43,"187 5th St, San Francisco, CA 94016" +171391,27in FHD Monitor,1,149.99,02/14/19 06:35,"448 West St, San Francisco, CA 94016" +171392,Apple Airpods Headphones,1,150,02/07/19 21:20,"494 Chestnut St, New York City, NY 10001" +171393,AA Batteries (4-pack),3,3.84,02/26/19 16:27,"340 Wilson St, Boston, MA 02215" +171394,27in 4K Gaming Monitor,1,389.99,02/21/19 10:28,"993 Lakeview St, Austin, TX 73301" +171395,Vareebadd Phone,1,400,02/08/19 18:39,"775 Hill St, Boston, MA 02215" +171396,27in FHD Monitor,1,149.99,02/04/19 18:47,"857 7th St, Portland, OR 97035" +171397,AA Batteries (4-pack),1,3.84,02/26/19 10:52,"525 13th St, San Francisco, CA 94016" +171398,USB-C Charging Cable,1,11.95,02/27/19 11:06,"838 Lakeview St, Boston, MA 02215" +171399,Wired Headphones,1,11.99,02/28/19 01:32,"613 Wilson St, Dallas, TX 75001" +171400,Google Phone,1,600,02/25/19 13:26,"79 12th St, New York City, NY 10001" +171401,27in 4K Gaming Monitor,1,389.99,02/09/19 13:54,"947 Spruce St, Atlanta, GA 30301" +171402,iPhone,1,700,02/02/19 14:22,"367 Dogwood St, Atlanta, GA 30301" +171403,Wired Headphones,1,11.99,02/25/19 21:27,"125 13th St, New York City, NY 10001" +171404,AA Batteries (4-pack),3,3.84,02/13/19 19:30,"344 14th St, Dallas, TX 75001" +171405,AA Batteries (4-pack),1,3.84,02/05/19 20:41,"767 Lake St, New York City, NY 10001" +171406,USB-C Charging Cable,1,11.95,02/13/19 22:19,"199 11th St, Seattle, WA 98101" +171407,USB-C Charging Cable,1,11.95,02/23/19 15:39,"665 7th St, San Francisco, CA 94016" +171408,AAA Batteries (4-pack),2,2.99,02/24/19 17:53,"491 Washington St, Los Angeles, CA 90001" +171409,Wired Headphones,1,11.99,02/28/19 10:23,"167 2nd St, Los Angeles, CA 90001" +171410,Lightning Charging Cable,1,14.95,02/17/19 11:37,"631 Lincoln St, Los Angeles, CA 90001" +171411,27in 4K Gaming Monitor,1,389.99,02/18/19 14:02,"178 Ridge St, Portland, OR 97035" +171412,Wired Headphones,1,11.99,02/10/19 11:14,"645 Cherry St, San Francisco, CA 94016" +171413,34in Ultrawide Monitor,1,379.99,02/17/19 12:03,"328 Hill St, Los Angeles, CA 90001" +171414,Wired Headphones,1,11.99,02/15/19 22:56,"563 Jackson St, New York City, NY 10001" +171415,Macbook Pro Laptop,1,1700,02/09/19 08:13,"163 Forest St, Los Angeles, CA 90001" +171416,AA Batteries (4-pack),1,3.84,02/28/19 16:17,"198 Dogwood St, San Francisco, CA 94016" +171417,27in 4K Gaming Monitor,1,389.99,02/04/19 21:23,"962 Madison St, Austin, TX 73301" +171418,USB-C Charging Cable,1,11.95,02/21/19 08:34,"621 River St, Seattle, WA 98101" +171419,AAA Batteries (4-pack),1,2.99,02/07/19 13:33,"910 Lake St, New York City, NY 10001" +171420,AA Batteries (4-pack),1,3.84,02/17/19 06:13,"19 Washington St, Austin, TX 73301" +171421,Lightning Charging Cable,1,14.95,02/05/19 12:36,"735 Cedar St, Atlanta, GA 30301" +171422,Google Phone,1,600,02/28/19 18:31,"125 Park St, Dallas, TX 75001" +171423,Bose SoundSport Headphones,1,99.99,02/18/19 14:11,"272 Elm St, New York City, NY 10001" +171424,Wired Headphones,1,11.99,02/07/19 00:56,"459 13th St, Seattle, WA 98101" +171425,Lightning Charging Cable,1,14.95,02/17/19 12:37,"542 Hickory St, Atlanta, GA 30301" +171426,AAA Batteries (4-pack),1,2.99,02/07/19 09:13,"555 12th St, Dallas, TX 75001" +171427,AA Batteries (4-pack),1,3.84,02/07/19 05:03,"956 6th St, Los Angeles, CA 90001" +171428,Bose SoundSport Headphones,1,99.99,02/03/19 20:05,"6 13th St, Dallas, TX 75001" +171429,AAA Batteries (4-pack),1,2.99,02/21/19 21:09,"841 12th St, Atlanta, GA 30301" +171430,AAA Batteries (4-pack),3,2.99,02/14/19 23:40,"114 Main St, San Francisco, CA 94016" +171431,Lightning Charging Cable,1,14.95,02/20/19 20:33,"838 7th St, San Francisco, CA 94016" +171432,20in Monitor,1,109.99,02/09/19 23:22,"742 Pine St, San Francisco, CA 94016" +171433,AAA Batteries (4-pack),1,2.99,02/12/19 18:31,"946 Pine St, Los Angeles, CA 90001" +171434,AA Batteries (4-pack),1,3.84,02/20/19 17:04,"109 9th St, San Francisco, CA 94016" +171435,Apple Airpods Headphones,1,150,02/04/19 14:34,"700 Willow St, Austin, TX 73301" +171436,Apple Airpods Headphones,1,150,02/23/19 12:42,"535 Center St, Atlanta, GA 30301" +171437,Lightning Charging Cable,1,14.95,02/05/19 13:45,"747 Washington St, San Francisco, CA 94016" +171438,Lightning Charging Cable,1,14.95,02/06/19 15:44,"618 Center St, San Francisco, CA 94016" +171439,27in FHD Monitor,1,149.99,02/27/19 12:22,"702 Forest St, San Francisco, CA 94016" +171440,ThinkPad Laptop,1,999.99,02/06/19 13:23,"724 Ridge St, Dallas, TX 75001" +171441,Bose SoundSport Headphones,1,99.99,02/05/19 23:16,"196 Hill St, Los Angeles, CA 90001" +171442,AA Batteries (4-pack),1,3.84,02/23/19 13:06,"483 Madison St, Austin, TX 73301" +171443,AA Batteries (4-pack),1,3.84,02/09/19 17:08,"369 Walnut St, San Francisco, CA 94016" +171444,27in FHD Monitor,1,149.99,02/07/19 09:58,"711 Hickory St, Portland, OR 97035" +171445,Apple Airpods Headphones,1,150,02/28/19 20:54,"196 Hill St, Portland, ME 04101" +171446,Apple Airpods Headphones,1,150,02/03/19 14:15,"19 6th St, San Francisco, CA 94016" +171447,AA Batteries (4-pack),1,3.84,02/07/19 15:36,"961 Lincoln St, San Francisco, CA 94016" +171448,27in 4K Gaming Monitor,1,389.99,02/09/19 18:00,"261 Lakeview St, San Francisco, CA 94016" +171449,USB-C Charging Cable,1,11.95,02/05/19 13:53,"401 8th St, San Francisco, CA 94016" +171450,USB-C Charging Cable,1,11.95,02/05/19 10:05,"971 Jefferson St, Los Angeles, CA 90001" +171451,iPhone,1,700,02/12/19 15:27,"467 Walnut St, San Francisco, CA 94016" +171451,Lightning Charging Cable,1,14.95,02/12/19 15:27,"467 Walnut St, San Francisco, CA 94016" +171451,Apple Airpods Headphones,1,150,02/12/19 15:27,"467 Walnut St, San Francisco, CA 94016" +171452,AA Batteries (4-pack),1,3.84,02/02/19 13:18,"319 Meadow St, San Francisco, CA 94016" +171452,Wired Headphones,1,11.99,02/02/19 13:18,"319 Meadow St, San Francisco, CA 94016" +171453,Lightning Charging Cable,1,14.95,02/06/19 21:19,"576 Chestnut St, Austin, TX 73301" +171454,AA Batteries (4-pack),1,3.84,02/17/19 00:03,"564 6th St, Atlanta, GA 30301" +171455,Lightning Charging Cable,1,14.95,02/15/19 13:39,"57 Jackson St, New York City, NY 10001" +171456,Apple Airpods Headphones,1,150,02/23/19 22:07,"389 Cedar St, Dallas, TX 75001" +171457,27in 4K Gaming Monitor,1,389.99,02/14/19 16:44,"213 13th St, San Francisco, CA 94016" +171458,27in 4K Gaming Monitor,1,389.99,02/03/19 14:20,"106 Jackson St, New York City, NY 10001" +171459,Google Phone,1,600,02/02/19 18:59,"314 5th St, Portland, OR 97035" +171460,34in Ultrawide Monitor,1,379.99,02/08/19 11:49,"899 7th St, San Francisco, CA 94016" +171461,20in Monitor,1,109.99,02/22/19 22:30,"870 14th St, Atlanta, GA 30301" +171462,27in 4K Gaming Monitor,1,389.99,02/14/19 16:22,"978 Madison St, Austin, TX 73301" +171463,Bose SoundSport Headphones,1,99.99,02/24/19 11:23,"654 14th St, San Francisco, CA 94016" +171464,AAA Batteries (4-pack),2,2.99,02/18/19 16:43,"789 Maple St, San Francisco, CA 94016" +171465,iPhone,1,700,02/24/19 14:08,"594 Madison St, San Francisco, CA 94016" +171466,AAA Batteries (4-pack),2,2.99,02/13/19 16:03,"820 1st St, Portland, OR 97035" +171467,Apple Airpods Headphones,1,150,02/01/19 19:20,"416 Adams St, Atlanta, GA 30301" +171468,AA Batteries (4-pack),1,3.84,02/25/19 00:05,"216 West St, Los Angeles, CA 90001" +171469,27in FHD Monitor,1,149.99,02/14/19 17:26,"404 11th St, San Francisco, CA 94016" +171470,USB-C Charging Cable,1,11.95,02/15/19 10:27,"607 Madison St, Seattle, WA 98101" +171471,20in Monitor,1,109.99,02/17/19 20:52,"637 North St, Austin, TX 73301" +171472,Wired Headphones,1,11.99,02/27/19 14:25,"605 Dogwood St, Boston, MA 02215" +171473,iPhone,1,700,02/09/19 06:37,"433 Madison St, New York City, NY 10001" +171474,AA Batteries (4-pack),1,3.84,02/22/19 11:56,"221 Lincoln St, Los Angeles, CA 90001" +171475,AAA Batteries (4-pack),2,2.99,02/21/19 15:51,"90 River St, Dallas, TX 75001" +171476,Wired Headphones,1,11.99,02/26/19 10:08,"994 10th St, New York City, NY 10001" +171477,AA Batteries (4-pack),1,3.84,02/15/19 08:22,"206 1st St, Dallas, TX 75001" +171478,AA Batteries (4-pack),1,3.84,02/19/19 15:49,"95 12th St, Boston, MA 02215" +171479,Apple Airpods Headphones,1,150,02/24/19 06:12,"307 Main St, San Francisco, CA 94016" +171480,Apple Airpods Headphones,1,150,02/02/19 19:02,"391 Chestnut St, Dallas, TX 75001" +171481,34in Ultrawide Monitor,1,379.99,02/04/19 12:05,"388 Chestnut St, Los Angeles, CA 90001" +171482,20in Monitor,1,109.99,02/02/19 22:00,"383 13th St, Dallas, TX 75001" +171483,Lightning Charging Cable,1,14.95,02/09/19 16:09,"218 Lakeview St, Atlanta, GA 30301" +171484,Wired Headphones,1,11.99,02/28/19 23:08,"862 Madison St, San Francisco, CA 94016" +171485,Wired Headphones,1,11.99,02/13/19 20:33,"414 4th St, San Francisco, CA 94016" +171486,Bose SoundSport Headphones,1,99.99,02/23/19 20:41,"986 North St, San Francisco, CA 94016" +171487,Bose SoundSport Headphones,1,99.99,02/02/19 21:44,"934 Cherry St, Dallas, TX 75001" +171488,27in FHD Monitor,1,149.99,02/04/19 12:21,"687 Jefferson St, Los Angeles, CA 90001" +171489,USB-C Charging Cable,1,11.95,02/28/19 20:14,"939 12th St, Dallas, TX 75001" +171490,Bose SoundSport Headphones,1,99.99,02/25/19 06:48,"990 Forest St, Atlanta, GA 30301" +171491,34in Ultrawide Monitor,1,379.99,02/28/19 22:38,"263 Church St, Dallas, TX 75001" +171492,Bose SoundSport Headphones,1,99.99,02/11/19 12:09,"215 Jefferson St, Seattle, WA 98101" +171493,Flatscreen TV,1,300,02/09/19 17:10,"780 South St, Portland, OR 97035" +171494,AA Batteries (4-pack),3,3.84,02/24/19 13:08,"551 Adams St, New York City, NY 10001" +171495,Wired Headphones,1,11.99,02/06/19 16:31,"88 6th St, Boston, MA 02215" +171496,Apple Airpods Headphones,1,150,02/07/19 20:52,"699 South St, Los Angeles, CA 90001" +171497,AA Batteries (4-pack),1,3.84,02/14/19 10:53,"82 4th St, New York City, NY 10001" +171498,iPhone,1,700,02/22/19 12:45,"409 Walnut St, Los Angeles, CA 90001" +171499,Bose SoundSport Headphones,1,99.99,02/17/19 18:54,"503 13th St, Los Angeles, CA 90001" +171500,Flatscreen TV,1,300,02/12/19 05:51,"345 Park St, Portland, OR 97035" +171501,27in 4K Gaming Monitor,1,389.99,02/05/19 21:23,"905 Hickory St, San Francisco, CA 94016" +171502,Google Phone,1,600,02/09/19 14:44,"140 Johnson St, San Francisco, CA 94016" +171502,USB-C Charging Cable,1,11.95,02/09/19 14:44,"140 Johnson St, San Francisco, CA 94016" +171503,Google Phone,1,600,02/28/19 17:18,"240 Meadow St, Boston, MA 02215" +171504,USB-C Charging Cable,2,11.95,02/16/19 15:15,"145 South St, Austin, TX 73301" +171505,Bose SoundSport Headphones,1,99.99,02/15/19 08:50,"42 Willow St, Boston, MA 02215" +171506,Apple Airpods Headphones,1,150,02/24/19 21:56,"840 Hickory St, Austin, TX 73301" +171507,USB-C Charging Cable,1,11.95,02/22/19 17:07,"175 8th St, Los Angeles, CA 90001" +171508,27in 4K Gaming Monitor,1,389.99,02/19/19 21:05,"229 Meadow St, Dallas, TX 75001" +171509,iPhone,1,700,02/16/19 23:49,"620 Johnson St, San Francisco, CA 94016" +171510,AA Batteries (4-pack),1,3.84,02/22/19 12:22,"744 4th St, Los Angeles, CA 90001" +171511,AAA Batteries (4-pack),1,2.99,02/22/19 19:25,"310 Ridge St, New York City, NY 10001" +171512,Wired Headphones,1,11.99,02/20/19 20:43,"994 13th St, San Francisco, CA 94016" +171513,27in 4K Gaming Monitor,1,389.99,02/05/19 16:02,"325 Washington St, San Francisco, CA 94016" +171514,AAA Batteries (4-pack),2,2.99,02/03/19 19:30,"777 Hickory St, Los Angeles, CA 90001" +171515,Lightning Charging Cable,1,14.95,02/27/19 09:45,"481 14th St, Boston, MA 02215" +171516,Apple Airpods Headphones,1,150,02/22/19 18:36,"226 Cedar St, San Francisco, CA 94016" +171517,Flatscreen TV,1,300,02/14/19 14:14,"114 13th St, Dallas, TX 75001" +171518,Bose SoundSport Headphones,1,99.99,02/27/19 08:52,"779 South St, Boston, MA 02215" +171519,27in 4K Gaming Monitor,1,389.99,02/06/19 19:22,"527 Madison St, Los Angeles, CA 90001" +171520,34in Ultrawide Monitor,1,379.99,02/15/19 10:27,"383 Park St, New York City, NY 10001" +171521,AAA Batteries (4-pack),4,2.99,02/19/19 17:38,"372 Jefferson St, Seattle, WA 98101" +171522,Lightning Charging Cable,1,14.95,02/24/19 13:36,"439 Sunset St, Los Angeles, CA 90001" +171523,AAA Batteries (4-pack),2,2.99,02/16/19 10:48,"178 6th St, New York City, NY 10001" +171524,Bose SoundSport Headphones,1,99.99,02/22/19 19:17,"522 West St, New York City, NY 10001" +171525,Wired Headphones,1,11.99,02/15/19 14:04,"674 Cedar St, San Francisco, CA 94016" +171526,USB-C Charging Cable,1,11.95,02/07/19 14:54,"320 13th St, Boston, MA 02215" +171527,Bose SoundSport Headphones,1,99.99,02/15/19 00:07,"508 7th St, Seattle, WA 98101" +171528,Google Phone,1,600,02/13/19 11:05,"66 Forest St, Atlanta, GA 30301" +171529,AAA Batteries (4-pack),1,2.99,02/20/19 20:07,"57 Lake St, Portland, OR 97035" +171530,Lightning Charging Cable,1,14.95,02/19/19 13:21,"800 Jefferson St, Dallas, TX 75001" +171531,AA Batteries (4-pack),1,3.84,02/20/19 15:51,"301 Lincoln St, San Francisco, CA 94016" +171532,Wired Headphones,1,11.99,02/27/19 08:58,"856 Main St, New York City, NY 10001" +171533,USB-C Charging Cable,1,11.95,02/19/19 17:35,"709 2nd St, San Francisco, CA 94016" +171534,AAA Batteries (4-pack),1,2.99,02/11/19 19:04,"34 Meadow St, Los Angeles, CA 90001" +171535,Lightning Charging Cable,1,14.95,02/18/19 16:22,"931 Elm St, New York City, NY 10001" +171536,USB-C Charging Cable,2,11.95,02/02/19 09:57,"961 Elm St, Los Angeles, CA 90001" +171537,AAA Batteries (4-pack),1,2.99,02/14/19 11:22,"265 1st St, Portland, OR 97035" +171538,Lightning Charging Cable,2,14.95,02/19/19 10:08,"961 11th St, Portland, OR 97035" +171539,Apple Airpods Headphones,1,150,02/18/19 10:36,"4 Spruce St, Seattle, WA 98101" +171540,USB-C Charging Cable,1,11.95,02/10/19 11:22,"458 Main St, Atlanta, GA 30301" +171541,34in Ultrawide Monitor,1,379.99,02/11/19 18:23,"456 Elm St, San Francisco, CA 94016" +171541,AAA Batteries (4-pack),2,2.99,02/11/19 18:23,"456 Elm St, San Francisco, CA 94016" +171542,Google Phone,1,600,02/15/19 18:06,"525 Main St, Boston, MA 02215" +171543,Wired Headphones,1,11.99,02/03/19 09:11,"947 Maple St, Atlanta, GA 30301" +171544,Lightning Charging Cable,1,14.95,02/05/19 12:36,"537 Washington St, San Francisco, CA 94016" +171545,Wired Headphones,1,11.99,02/08/19 09:35,"296 Cedar St, Portland, ME 04101" +171546,34in Ultrawide Monitor,1,379.99,02/10/19 14:39,"273 13th St, San Francisco, CA 94016" +171547,Wired Headphones,1,11.99,02/05/19 14:18,"197 11th St, Boston, MA 02215" +171548,Lightning Charging Cable,1,14.95,02/16/19 14:11,"94 10th St, Los Angeles, CA 90001" +171549,AAA Batteries (4-pack),1,2.99,02/28/19 01:24,"643 Adams St, Los Angeles, CA 90001" +171550,27in FHD Monitor,1,149.99,02/13/19 02:57,"525 West St, San Francisco, CA 94016" +171551,AAA Batteries (4-pack),1,2.99,02/27/19 21:48,"347 Hickory St, Seattle, WA 98101" +171552,AA Batteries (4-pack),1,3.84,02/05/19 11:03,"984 Willow St, Los Angeles, CA 90001" +171553,Flatscreen TV,1,300,02/17/19 19:15,"24 Park St, Atlanta, GA 30301" +171554,Wired Headphones,1,11.99,02/20/19 11:40,"749 14th St, Atlanta, GA 30301" +171555,Flatscreen TV,1,300,02/06/19 20:37,"156 Willow St, San Francisco, CA 94016" +171556,AA Batteries (4-pack),1,3.84,02/08/19 14:07,"453 Adams St, Boston, MA 02215" +171557,AAA Batteries (4-pack),1,2.99,02/22/19 21:14,"104 Jackson St, Boston, MA 02215" +171558,Lightning Charging Cable,1,14.95,02/20/19 18:27,"583 7th St, San Francisco, CA 94016" +171559,AAA Batteries (4-pack),1,2.99,02/10/19 20:43,"603 Main St, Dallas, TX 75001" +171560,AAA Batteries (4-pack),1,2.99,02/28/19 10:58,"778 Ridge St, New York City, NY 10001" +171561,Bose SoundSport Headphones,1,99.99,02/04/19 12:24,"660 10th St, Boston, MA 02215" +171562,Flatscreen TV,1,300,02/15/19 14:07,"259 Washington St, Dallas, TX 75001" +171563,Lightning Charging Cable,1,14.95,02/28/19 09:02,"603 Walnut St, San Francisco, CA 94016" +171564,34in Ultrawide Monitor,1,379.99,02/28/19 15:12,"971 14th St, Los Angeles, CA 90001" +171565,Bose SoundSport Headphones,1,99.99,02/21/19 17:18,"794 Ridge St, Portland, OR 97035" +171566,USB-C Charging Cable,1,11.95,02/14/19 08:10,"233 4th St, Dallas, TX 75001" +171567,USB-C Charging Cable,1,11.95,02/14/19 15:11,"912 Lakeview St, Atlanta, GA 30301" +171568,AA Batteries (4-pack),1,3.84,02/12/19 13:39,"314 Spruce St, Austin, TX 73301" +171569,Lightning Charging Cable,2,14.95,02/17/19 10:51,"848 Pine St, New York City, NY 10001" +171570,Lightning Charging Cable,1,14.95,02/08/19 13:48,"19 7th St, Boston, MA 02215" +171571,USB-C Charging Cable,1,11.95,02/10/19 12:44,"734 Park St, San Francisco, CA 94016" +171572,20in Monitor,1,109.99,02/20/19 10:23,"975 Madison St, Dallas, TX 75001" +171573,Wired Headphones,1,11.99,02/20/19 22:53,"818 Walnut St, Seattle, WA 98101" +171574,AA Batteries (4-pack),2,3.84,02/15/19 18:48,"753 Ridge St, San Francisco, CA 94016" +171575,ThinkPad Laptop,1,999.99,02/01/19 15:43,"432 Chestnut St, New York City, NY 10001" +171576,27in 4K Gaming Monitor,1,389.99,02/20/19 07:42,"105 Lincoln St, Atlanta, GA 30301" +171577,AA Batteries (4-pack),1,3.84,02/20/19 23:34,"419 Main St, Dallas, TX 75001" +171578,Lightning Charging Cable,1,14.95,02/01/19 13:29,"133 Spruce St, San Francisco, CA 94016" +171579,AA Batteries (4-pack),1,3.84,02/07/19 22:54,"936 Elm St, Austin, TX 73301" +171580,iPhone,1,700,02/24/19 18:23,"563 Jefferson St, Boston, MA 02215" +171581,20in Monitor,1,109.99,02/23/19 17:33,"466 Pine St, Seattle, WA 98101" +171582,USB-C Charging Cable,1,11.95,02/08/19 14:06,"351 Maple St, San Francisco, CA 94016" +171583,Apple Airpods Headphones,1,150,02/07/19 20:22,"257 Cedar St, Portland, OR 97035" +171584,Lightning Charging Cable,1,14.95,02/20/19 08:11,"627 Maple St, Dallas, TX 75001" +171585,ThinkPad Laptop,1,999.99,02/12/19 19:48,"113 Cedar St, New York City, NY 10001" +171586,Lightning Charging Cable,1,14.95,02/03/19 09:07,"786 Main St, Boston, MA 02215" +171587,AA Batteries (4-pack),1,3.84,02/08/19 13:08,"348 9th St, Boston, MA 02215" +171588,ThinkPad Laptop,1,999.99,02/28/19 16:51,"719 Pine St, Boston, MA 02215" +171589,Apple Airpods Headphones,1,150,02/20/19 09:52,"775 Spruce St, Austin, TX 73301" +171590,AA Batteries (4-pack),1,3.84,02/11/19 14:57,"117 Washington St, San Francisco, CA 94016" +171591,Macbook Pro Laptop,1,1700,02/03/19 23:35,"939 10th St, San Francisco, CA 94016" +171592,AA Batteries (4-pack),1,3.84,02/22/19 12:00,"532 4th St, Dallas, TX 75001" +171593,AA Batteries (4-pack),1,3.84,02/25/19 09:44,"982 Madison St, Boston, MA 02215" +171594,Wired Headphones,1,11.99,02/03/19 15:49,"839 Madison St, San Francisco, CA 94016" +171595,USB-C Charging Cable,1,11.95,02/19/19 21:03,"822 8th St, Atlanta, GA 30301" +171596,AAA Batteries (4-pack),1,2.99,02/28/19 11:09,"606 Lakeview St, San Francisco, CA 94016" +171597,Apple Airpods Headphones,1,150,02/04/19 16:32,"534 Lakeview St, Boston, MA 02215" +171598,Flatscreen TV,1,300,02/25/19 17:13,"513 12th St, Austin, TX 73301" +171599,Vareebadd Phone,1,400,02/22/19 11:49,"169 Center St, Portland, OR 97035" +171600,Lightning Charging Cable,2,14.95,02/10/19 17:53,"688 Lake St, San Francisco, CA 94016" +171601,Apple Airpods Headphones,1,150,02/27/19 08:48,"538 Cherry St, Atlanta, GA 30301" +171602,Lightning Charging Cable,2,14.95,02/22/19 15:31,"691 7th St, Los Angeles, CA 90001" +171603,AAA Batteries (4-pack),1,2.99,02/26/19 11:58,"574 12th St, Atlanta, GA 30301" +171604,USB-C Charging Cable,1,11.95,02/26/19 10:40,"495 Lincoln St, Boston, MA 02215" +171605,Apple Airpods Headphones,1,150,02/11/19 22:29,"677 Maple St, New York City, NY 10001" +171606,AA Batteries (4-pack),1,3.84,02/16/19 12:58,"726 Wilson St, Los Angeles, CA 90001" +171607,AA Batteries (4-pack),3,3.84,02/11/19 17:06,"222 Forest St, Dallas, TX 75001" +171608,Lightning Charging Cable,1,14.95,02/25/19 13:48,"903 Cedar St, Seattle, WA 98101" +171609,Flatscreen TV,1,300,02/04/19 19:31,"639 Hickory St, San Francisco, CA 94016" +171610,iPhone,1,700,02/15/19 09:22,"250 Washington St, Los Angeles, CA 90001" +171610,Lightning Charging Cable,1,14.95,02/15/19 09:22,"250 Washington St, Los Angeles, CA 90001" +171610,Wired Headphones,1,11.99,02/15/19 09:22,"250 Washington St, Los Angeles, CA 90001" +171611,27in FHD Monitor,1,149.99,02/14/19 00:06,"571 Pine St, New York City, NY 10001" +171612,AA Batteries (4-pack),1,3.84,02/25/19 15:45,"78 Hill St, Los Angeles, CA 90001" +171613,iPhone,1,700,02/23/19 08:32,"275 Walnut St, San Francisco, CA 94016" +171614,Wired Headphones,1,11.99,02/25/19 10:00,"798 Lakeview St, Boston, MA 02215" +171615,Lightning Charging Cable,1,14.95,02/04/19 19:50,"614 Wilson St, Seattle, WA 98101" +171616,AAA Batteries (4-pack),2,2.99,02/24/19 21:49,"338 Maple St, Atlanta, GA 30301" +171617,AA Batteries (4-pack),1,3.84,02/20/19 23:32,"468 Meadow St, San Francisco, CA 94016" +171618,USB-C Charging Cable,1,11.95,02/23/19 14:22,"382 South St, Austin, TX 73301" +171619,iPhone,1,700,02/03/19 08:58,"853 11th St, New York City, NY 10001" +171620,iPhone,1,700,02/20/19 17:04,"815 Madison St, Los Angeles, CA 90001" +171620,Lightning Charging Cable,1,14.95,02/20/19 17:04,"815 Madison St, Los Angeles, CA 90001" +171621,USB-C Charging Cable,1,11.95,02/19/19 23:56,"23 River St, Seattle, WA 98101" +171622,ThinkPad Laptop,1,999.99,02/14/19 08:17,"572 4th St, Los Angeles, CA 90001" +171623,AA Batteries (4-pack),1,3.84,02/28/19 12:19,"272 Cherry St, New York City, NY 10001" +171624,Wired Headphones,1,11.99,02/02/19 11:35,"707 West St, Los Angeles, CA 90001" +171625,AAA Batteries (4-pack),1,2.99,02/10/19 00:06,"928 Jefferson St, Atlanta, GA 30301" +171626,Google Phone,1,600,02/22/19 04:20,"609 Cherry St, San Francisco, CA 94016" +171627,Bose SoundSport Headphones,1,99.99,02/13/19 23:16,"448 Meadow St, Austin, TX 73301" +171628,Wired Headphones,1,11.99,02/26/19 10:19,"799 Chestnut St, Los Angeles, CA 90001" +171629,USB-C Charging Cable,1,11.95,02/26/19 10:54,"726 Cherry St, Austin, TX 73301" +171630,Apple Airpods Headphones,1,150,02/09/19 07:35,"417 River St, Portland, OR 97035" +171631,Lightning Charging Cable,1,14.95,02/13/19 20:47,"482 Madison St, San Francisco, CA 94016" +171632,AAA Batteries (4-pack),1,2.99,02/19/19 09:07,"92 12th St, Dallas, TX 75001" +171633,USB-C Charging Cable,1,11.95,02/13/19 15:26,"364 Johnson St, New York City, NY 10001" +171634,34in Ultrawide Monitor,1,379.99,02/19/19 00:33,"861 Jefferson St, San Francisco, CA 94016" +171635,USB-C Charging Cable,1,11.95,02/08/19 16:16,"837 Madison St, Los Angeles, CA 90001" +171636,Wired Headphones,1,11.99,02/11/19 15:31,"671 Spruce St, Atlanta, GA 30301" +171637,Wired Headphones,1,11.99,02/18/19 08:56,"206 Willow St, Seattle, WA 98101" +171638,AAA Batteries (4-pack),2,2.99,02/11/19 13:58,"733 North St, San Francisco, CA 94016" +171639,AA Batteries (4-pack),4,3.84,02/01/19 10:06,"8 5th St, Dallas, TX 75001" +171640,Lightning Charging Cable,1,14.95,02/20/19 18:10,"677 Hickory St, New York City, NY 10001" +171641,Wired Headphones,1,11.99,02/19/19 15:30,"100 11th St, Los Angeles, CA 90001" +,,,,, +171642,iPhone,1,700,02/08/19 22:52,"403 Forest St, San Francisco, CA 94016" +171643,AAA Batteries (4-pack),1,2.99,02/19/19 21:59,"935 North St, Portland, OR 97035" +171644,AA Batteries (4-pack),1,3.84,02/10/19 06:41,"778 Spruce St, Austin, TX 73301" +171645,USB-C Charging Cable,1,11.95,02/15/19 14:01,"577 Adams St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +171646,Google Phone,1,600,02/01/19 12:32,"198 Park St, Los Angeles, CA 90001" +171646,Bose SoundSport Headphones,1,99.99,02/01/19 12:32,"198 Park St, Los Angeles, CA 90001" +171647,27in 4K Gaming Monitor,1,389.99,02/07/19 14:10,"735 Lincoln St, New York City, NY 10001" +171648,Google Phone,1,600,02/14/19 19:50,"894 Lakeview St, Dallas, TX 75001" +171648,Wired Headphones,1,11.99,02/14/19 19:50,"894 Lakeview St, Dallas, TX 75001" +171649,20in Monitor,1,109.99,02/14/19 08:50,"164 Center St, New York City, NY 10001" +171649,Flatscreen TV,1,300,02/14/19 08:50,"164 Center St, New York City, NY 10001" +171650,USB-C Charging Cable,1,11.95,02/21/19 18:39,"377 Spruce St, Seattle, WA 98101" +171651,iPhone,1,700,02/24/19 06:34,"14 Chestnut St, Atlanta, GA 30301" +171652,Wired Headphones,1,11.99,02/17/19 07:34,"98 Lake St, Boston, MA 02215" +171653,USB-C Charging Cable,1,11.95,02/23/19 10:13,"154 Jefferson St, New York City, NY 10001" +171654,AA Batteries (4-pack),1,3.84,02/18/19 10:18,"179 Lakeview St, New York City, NY 10001" +171655,AAA Batteries (4-pack),1,2.99,02/05/19 16:32,"949 Hickory St, Portland, OR 97035" +171656,LG Washing Machine,1,600.0,02/22/19 00:26,"771 11th St, New York City, NY 10001" +171657,34in Ultrawide Monitor,1,379.99,02/23/19 10:32,"354 4th St, Los Angeles, CA 90001" +171658,Bose SoundSport Headphones,1,99.99,02/03/19 10:49,"386 2nd St, San Francisco, CA 94016" +171659,27in 4K Gaming Monitor,1,389.99,02/09/19 22:28,"440 Jackson St, Austin, TX 73301" +171660,Lightning Charging Cable,1,14.95,02/20/19 18:05,"460 Washington St, New York City, NY 10001" +171661,Lightning Charging Cable,1,14.95,02/23/19 10:42,"126 10th St, San Francisco, CA 94016" +171662,AA Batteries (4-pack),1,3.84,02/04/19 05:04,"331 Lincoln St, Portland, OR 97035" +171663,USB-C Charging Cable,1,11.95,02/16/19 14:54,"382 River St, Boston, MA 02215" +171664,Macbook Pro Laptop,1,1700,02/17/19 23:30,"826 Church St, Austin, TX 73301" +171665,Apple Airpods Headphones,1,150,02/19/19 15:15,"365 10th St, New York City, NY 10001" +171666,Apple Airpods Headphones,1,150,02/23/19 07:10,"472 4th St, Dallas, TX 75001" +171667,USB-C Charging Cable,1,11.95,02/13/19 10:35,"580 Dogwood St, New York City, NY 10001" +171668,Bose SoundSport Headphones,1,99.99,02/23/19 15:35,"502 Jefferson St, Seattle, WA 98101" +171669,AA Batteries (4-pack),1,3.84,02/07/19 21:44,"205 Wilson St, Portland, ME 04101" +171670,AAA Batteries (4-pack),1,2.99,02/05/19 21:42,"678 Lakeview St, Los Angeles, CA 90001" +171671,Bose SoundSport Headphones,1,99.99,02/15/19 21:19,"130 Washington St, Austin, TX 73301" +171672,Apple Airpods Headphones,1,150,02/11/19 11:54,"65 North St, Atlanta, GA 30301" +171673,Apple Airpods Headphones,1,150,02/21/19 17:17,"64 6th St, San Francisco, CA 94016" +171674,ThinkPad Laptop,1,999.99,02/20/19 18:39,"135 Pine St, San Francisco, CA 94016" +171675,USB-C Charging Cable,1,11.95,02/16/19 12:21,"68 9th St, Austin, TX 73301" +171676,Lightning Charging Cable,1,14.95,02/04/19 21:37,"382 Maple St, Portland, OR 97035" +171677,AAA Batteries (4-pack),1,2.99,02/02/19 08:31,"76 Highland St, Austin, TX 73301" +171678,Lightning Charging Cable,1,14.95,02/02/19 09:40,"50 Ridge St, San Francisco, CA 94016" +171679,27in 4K Gaming Monitor,1,389.99,02/18/19 17:47,"361 Cedar St, New York City, NY 10001" +171679,Flatscreen TV,1,300,02/18/19 17:47,"361 Cedar St, New York City, NY 10001" +171680,Macbook Pro Laptop,1,1700,02/06/19 08:55,"632 1st St, San Francisco, CA 94016" +171681,34in Ultrawide Monitor,1,379.99,02/22/19 11:49,"292 Cherry St, Boston, MA 02215" +171682,USB-C Charging Cable,1,11.95,02/15/19 20:29,"848 4th St, Portland, ME 04101" +171683,Flatscreen TV,1,300,02/04/19 15:42,"532 South St, Atlanta, GA 30301" +171684,Bose SoundSport Headphones,1,99.99,02/23/19 14:49,"449 North St, San Francisco, CA 94016" +171685,USB-C Charging Cable,1,11.95,02/28/19 19:02,"317 Lakeview St, San Francisco, CA 94016" +171686,Bose SoundSport Headphones,1,99.99,02/07/19 12:36,"93 Jackson St, Austin, TX 73301" +171687,AAA Batteries (4-pack),2,2.99,02/23/19 09:13,"806 11th St, Los Angeles, CA 90001" +171688,27in 4K Gaming Monitor,1,389.99,02/10/19 15:11,"274 Dogwood St, New York City, NY 10001" +171689,Apple Airpods Headphones,1,150,02/18/19 17:37,"538 10th St, San Francisco, CA 94016" +171690,Wired Headphones,1,11.99,02/27/19 18:46,"425 Hill St, New York City, NY 10001" +171691,20in Monitor,1,109.99,02/02/19 07:20,"695 Willow St, San Francisco, CA 94016" +171692,27in FHD Monitor,1,149.99,02/01/19 20:15,"79 5th St, San Francisco, CA 94016" +171693,ThinkPad Laptop,1,999.99,02/09/19 12:39,"174 Elm St, Los Angeles, CA 90001" +171694,USB-C Charging Cable,1,11.95,02/11/19 03:07,"924 Cherry St, New York City, NY 10001" +171695,34in Ultrawide Monitor,1,379.99,02/05/19 23:31,"892 Cedar St, Portland, OR 97035" +171696,Flatscreen TV,1,300,02/19/19 19:12,"82 Park St, New York City, NY 10001" +171697,Wired Headphones,1,11.99,02/04/19 10:58,"94 2nd St, Los Angeles, CA 90001" +171698,USB-C Charging Cable,1,11.95,02/17/19 13:07,"589 9th St, New York City, NY 10001" +171699,27in FHD Monitor,1,149.99,02/05/19 19:42,"559 1st St, Los Angeles, CA 90001" +171700,Wired Headphones,1,11.99,02/07/19 18:52,"442 Hill St, Los Angeles, CA 90001" +171701,Macbook Pro Laptop,1,1700,02/26/19 22:21,"26 14th St, Los Angeles, CA 90001" +171702,USB-C Charging Cable,1,11.95,02/27/19 21:52,"322 13th St, Los Angeles, CA 90001" +171703,Bose SoundSport Headphones,1,99.99,02/21/19 19:59,"460 Hill St, San Francisco, CA 94016" +171704,34in Ultrawide Monitor,1,379.99,02/09/19 17:25,"393 Lakeview St, New York City, NY 10001" +171705,Bose SoundSport Headphones,1,99.99,02/12/19 09:27,"726 Ridge St, San Francisco, CA 94016" +171706,Lightning Charging Cable,1,14.95,02/20/19 18:31,"284 Jefferson St, Los Angeles, CA 90001" +171707,Apple Airpods Headphones,1,150,02/28/19 22:03,"400 Church St, Los Angeles, CA 90001" +171708,AAA Batteries (4-pack),1,2.99,02/18/19 09:09,"247 Center St, San Francisco, CA 94016" +171709,Macbook Pro Laptop,1,1700,02/24/19 07:39,"658 South St, Los Angeles, CA 90001" +171710,Lightning Charging Cable,1,14.95,02/04/19 10:49,"935 14th St, Portland, OR 97035" +171711,AAA Batteries (4-pack),1,2.99,02/26/19 18:11,"168 Wilson St, Boston, MA 02215" +171712,USB-C Charging Cable,1,11.95,02/05/19 20:56,"908 Washington St, San Francisco, CA 94016" +171713,Macbook Pro Laptop,1,1700,02/25/19 19:13,"541 Lincoln St, Boston, MA 02215" +171714,Bose SoundSport Headphones,1,99.99,02/12/19 08:53,"173 Park St, Atlanta, GA 30301" +171715,Lightning Charging Cable,1,14.95,02/12/19 12:15,"260 11th St, Portland, OR 97035" +171716,Wired Headphones,2,11.99,02/01/19 12:42,"643 Church St, Dallas, TX 75001" +171717,Wired Headphones,1,11.99,02/25/19 13:11,"16 14th St, Boston, MA 02215" +171718,AA Batteries (4-pack),1,3.84,02/26/19 21:38,"935 Pine St, Dallas, TX 75001" +171719,USB-C Charging Cable,1,11.95,02/24/19 18:13,"433 Hill St, New York City, NY 10001" +171720,iPhone,1,700,02/06/19 11:16,"488 7th St, Dallas, TX 75001" +171721,Lightning Charging Cable,1,14.95,02/10/19 18:39,"958 North St, Seattle, WA 98101" +171722,Macbook Pro Laptop,1,1700,02/26/19 20:52,"385 Park St, Boston, MA 02215" +171723,27in FHD Monitor,1,149.99,02/24/19 14:52,"613 North St, New York City, NY 10001" +171724,USB-C Charging Cable,1,11.95,02/21/19 15:52,"945 Willow St, Los Angeles, CA 90001" +171725,AAA Batteries (4-pack),2,2.99,02/27/19 21:05,"682 Forest St, New York City, NY 10001" +171726,Bose SoundSport Headphones,1,99.99,02/22/19 09:37,"293 Hill St, Los Angeles, CA 90001" +171727,USB-C Charging Cable,1,11.95,02/16/19 21:19,"825 Sunset St, Atlanta, GA 30301" +171728,27in 4K Gaming Monitor,1,389.99,02/02/19 11:45,"792 Pine St, Los Angeles, CA 90001" +171729,USB-C Charging Cable,1,11.95,02/15/19 22:00,"506 North St, Los Angeles, CA 90001" +171730,AA Batteries (4-pack),1,3.84,02/12/19 22:57,"216 Elm St, Los Angeles, CA 90001" +171731,ThinkPad Laptop,1,999.99,02/06/19 13:37,"207 Walnut St, New York City, NY 10001" +171732,AAA Batteries (4-pack),3,2.99,02/26/19 08:22,"226 Spruce St, San Francisco, CA 94016" +171733,Apple Airpods Headphones,1,150,02/04/19 11:08,"88 2nd St, Dallas, TX 75001" +171734,Apple Airpods Headphones,1,150,02/06/19 21:05,"925 Lincoln St, San Francisco, CA 94016" +171735,Bose SoundSport Headphones,1,99.99,02/26/19 00:46,"608 South St, Los Angeles, CA 90001" +171736,Bose SoundSport Headphones,1,99.99,02/20/19 09:44,"777 Church St, New York City, NY 10001" +171737,AA Batteries (4-pack),2,3.84,02/14/19 10:47,"937 Madison St, Seattle, WA 98101" +171738,27in FHD Monitor,1,149.99,02/24/19 16:06,"581 Meadow St, Los Angeles, CA 90001" +171739,USB-C Charging Cable,1,11.95,02/05/19 12:28,"372 North St, San Francisco, CA 94016" +171740,Google Phone,1,600,02/12/19 13:20,"813 Elm St, Boston, MA 02215" +171741,Apple Airpods Headphones,1,150,02/11/19 01:09,"575 Sunset St, San Francisco, CA 94016" +171742,USB-C Charging Cable,1,11.95,02/21/19 13:45,"348 Highland St, Boston, MA 02215" +171743,iPhone,1,700,02/10/19 21:22,"715 Johnson St, Los Angeles, CA 90001" +171744,Apple Airpods Headphones,1,150,02/23/19 18:57,"264 North St, Seattle, WA 98101" +171745,ThinkPad Laptop,1,999.99,02/23/19 10:21,"905 Highland St, San Francisco, CA 94016" +171746,Google Phone,1,600,02/06/19 13:29,"729 North St, New York City, NY 10001" +171747,Macbook Pro Laptop,1,1700,02/09/19 14:42,"730 Jackson St, New York City, NY 10001" +171748,Wired Headphones,1,11.99,02/25/19 15:30,"964 8th St, Seattle, WA 98101" +171749,Bose SoundSport Headphones,1,99.99,02/17/19 08:30,"774 2nd St, Los Angeles, CA 90001" +171749,iPhone,1,700,02/17/19 08:30,"774 2nd St, Los Angeles, CA 90001" +171750,34in Ultrawide Monitor,1,379.99,02/08/19 00:27,"321 Ridge St, Dallas, TX 75001" +171751,AA Batteries (4-pack),1,3.84,02/07/19 13:43,"131 Meadow St, Dallas, TX 75001" +171752,LG Dryer,1,600.0,02/08/19 06:23,"607 Jackson St, Dallas, TX 75001" +171753,USB-C Charging Cable,1,11.95,02/03/19 18:58,"716 Willow St, San Francisco, CA 94016" +171754,27in FHD Monitor,1,149.99,02/21/19 22:06,"188 1st St, San Francisco, CA 94016" +171755,Apple Airpods Headphones,1,150,02/09/19 12:02,"223 Pine St, Portland, OR 97035" +171756,Lightning Charging Cable,1,14.95,02/17/19 22:23,"53 Cherry St, San Francisco, CA 94016" +171757,AA Batteries (4-pack),1,3.84,02/17/19 21:25,"721 Lincoln St, Austin, TX 73301" +171758,iPhone,1,700,02/07/19 12:23,"118 Pine St, New York City, NY 10001" +171758,Lightning Charging Cable,2,14.95,02/07/19 12:23,"118 Pine St, New York City, NY 10001" +171759,AA Batteries (4-pack),1,3.84,02/17/19 16:59,"23 11th St, New York City, NY 10001" +171760,AA Batteries (4-pack),1,3.84,02/14/19 16:14,"136 Church St, Seattle, WA 98101" +171761,USB-C Charging Cable,1,11.95,02/27/19 14:09,"322 Walnut St, Boston, MA 02215" +171762,Lightning Charging Cable,1,14.95,02/10/19 00:54,"47 Lincoln St, Boston, MA 02215" +171763,iPhone,1,700,02/15/19 10:38,"534 Lincoln St, San Francisco, CA 94016" +171764,Apple Airpods Headphones,1,150,02/10/19 20:57,"975 West St, Boston, MA 02215" +171765,Google Phone,1,600,02/15/19 20:07,"810 Lakeview St, Dallas, TX 75001" +171766,Wired Headphones,1,11.99,02/04/19 10:49,"532 Church St, New York City, NY 10001" +171767,AA Batteries (4-pack),1,3.84,02/22/19 17:40,"284 Washington St, Atlanta, GA 30301" +171768,Apple Airpods Headphones,1,150,02/16/19 11:14,"420 Meadow St, New York City, NY 10001" +171769,ThinkPad Laptop,1,999.99,02/28/19 00:48,"907 8th St, San Francisco, CA 94016" +171770,Bose SoundSport Headphones,1,99.99,02/10/19 21:07,"427 West St, San Francisco, CA 94016" +171771,AA Batteries (4-pack),1,3.84,02/15/19 11:59,"142 5th St, Boston, MA 02215" +171772,AA Batteries (4-pack),1,3.84,02/05/19 11:43,"597 Jefferson St, San Francisco, CA 94016" +171773,Wired Headphones,1,11.99,02/12/19 15:58,"297 Highland St, New York City, NY 10001" +171774,AA Batteries (4-pack),2,3.84,02/11/19 19:18,"765 Dogwood St, Boston, MA 02215" +171775,Google Phone,1,600,02/04/19 12:32,"135 4th St, San Francisco, CA 94016" +171776,Apple Airpods Headphones,1,150,02/11/19 17:40,"721 5th St, San Francisco, CA 94016" +171777,AAA Batteries (4-pack),1,2.99,02/24/19 11:33,"741 14th St, San Francisco, CA 94016" +171778,USB-C Charging Cable,1,11.95,02/28/19 14:59,"738 Jackson St, Dallas, TX 75001" +171779,iPhone,1,700,02/04/19 16:47,"801 9th St, Atlanta, GA 30301" +171780,Lightning Charging Cable,1,14.95,02/07/19 17:40,"851 6th St, San Francisco, CA 94016" +171781,Flatscreen TV,1,300,02/28/19 12:00,"959 Hickory St, Atlanta, GA 30301" +171782,27in 4K Gaming Monitor,1,389.99,02/02/19 09:06,"478 Meadow St, San Francisco, CA 94016" +171783,Vareebadd Phone,1,400,02/21/19 09:01,"132 Pine St, San Francisco, CA 94016" +171784,20in Monitor,1,109.99,02/17/19 19:19,"757 Forest St, New York City, NY 10001" +171785,Apple Airpods Headphones,1,150,02/10/19 13:19,"177 Maple St, Atlanta, GA 30301" +171785,Apple Airpods Headphones,1,150,02/10/19 13:19,"177 Maple St, Atlanta, GA 30301" +171786,Wired Headphones,3,11.99,02/05/19 14:36,"260 Hill St, Los Angeles, CA 90001" +171787,AAA Batteries (4-pack),2,2.99,02/17/19 14:53,"14 14th St, San Francisco, CA 94016" +171788,Google Phone,1,600,02/15/19 12:20,"295 Center St, San Francisco, CA 94016" +171788,USB-C Charging Cable,1,11.95,02/15/19 12:20,"295 Center St, San Francisco, CA 94016" +171789,AA Batteries (4-pack),1,3.84,02/06/19 10:11,"481 Willow St, San Francisco, CA 94016" +171790,20in Monitor,1,109.99,02/28/19 16:53,"139 Walnut St, San Francisco, CA 94016" +171791,Lightning Charging Cable,1,14.95,02/08/19 21:22,"69 South St, Atlanta, GA 30301" +171792,Google Phone,1,600,03/01/19 00:28,"133 5th St, Boston, MA 02215" +171793,27in 4K Gaming Monitor,1,389.99,02/02/19 21:54,"180 Willow St, San Francisco, CA 94016" +171794,USB-C Charging Cable,1,11.95,02/27/19 21:05,"778 North St, San Francisco, CA 94016" +171795,USB-C Charging Cable,1,11.95,02/04/19 12:26,"769 10th St, San Francisco, CA 94016" +171796,Lightning Charging Cable,1,14.95,02/03/19 09:47,"912 Johnson St, Los Angeles, CA 90001" +171797,USB-C Charging Cable,1,11.95,02/03/19 22:31,"735 River St, San Francisco, CA 94016" +171798,AA Batteries (4-pack),2,3.84,02/12/19 21:44,"992 13th St, Los Angeles, CA 90001" +171799,Lightning Charging Cable,1,14.95,02/20/19 21:07,"428 9th St, New York City, NY 10001" +171800,27in 4K Gaming Monitor,1,389.99,02/17/19 17:50,"826 Spruce St, Portland, OR 97035" +171801,Macbook Pro Laptop,1,1700,02/05/19 17:55,"624 8th St, Los Angeles, CA 90001" +171802,iPhone,1,700,02/26/19 15:59,"308 Forest St, San Francisco, CA 94016" +171803,27in 4K Gaming Monitor,1,389.99,02/06/19 18:06,"511 6th St, Boston, MA 02215" +171804,27in 4K Gaming Monitor,1,389.99,02/16/19 11:25,"295 11th St, Atlanta, GA 30301" +171805,Lightning Charging Cable,2,14.95,02/24/19 13:03,"976 4th St, Seattle, WA 98101" +171806,Lightning Charging Cable,1,14.95,02/04/19 14:08,"199 Washington St, San Francisco, CA 94016" +171807,Bose SoundSport Headphones,1,99.99,02/08/19 12:33,"383 Jackson St, San Francisco, CA 94016" +171808,27in 4K Gaming Monitor,1,389.99,02/22/19 14:27,"165 Main St, Austin, TX 73301" +171809,Lightning Charging Cable,1,14.95,02/11/19 12:11,"662 Church St, San Francisco, CA 94016" +171810,34in Ultrawide Monitor,1,379.99,02/16/19 22:13,"584 Cedar St, San Francisco, CA 94016" +171811,AA Batteries (4-pack),1,3.84,02/06/19 18:53,"129 2nd St, Portland, OR 97035" +171812,34in Ultrawide Monitor,1,379.99,02/03/19 17:45,"65 9th St, Boston, MA 02215" +171813,Flatscreen TV,1,300,02/26/19 11:49,"863 Madison St, New York City, NY 10001" +171814,ThinkPad Laptop,1,999.99,02/08/19 14:16,"528 Spruce St, San Francisco, CA 94016" +171815,Apple Airpods Headphones,1,150,02/07/19 14:03,"342 Ridge St, Boston, MA 02215" +171816,Lightning Charging Cable,1,14.95,02/25/19 20:41,"75 Meadow St, Seattle, WA 98101" +171817,Apple Airpods Headphones,1,150,03/01/19 00:24,"586 14th St, Seattle, WA 98101" +171818,20in Monitor,1,109.99,02/08/19 23:54,"91 Madison St, Austin, TX 73301" +171819,Wired Headphones,1,11.99,02/17/19 20:04,"918 Pine St, Portland, OR 97035" +171820,USB-C Charging Cable,1,11.95,02/25/19 13:03,"272 Cedar St, Los Angeles, CA 90001" +171821,34in Ultrawide Monitor,1,379.99,02/14/19 20:26,"677 Maple St, San Francisco, CA 94016" +171822,Apple Airpods Headphones,1,150,02/16/19 22:29,"140 Lake St, Los Angeles, CA 90001" +171823,Bose SoundSport Headphones,1,99.99,02/21/19 01:27,"303 Hill St, Los Angeles, CA 90001" +171824,AAA Batteries (4-pack),1,2.99,02/19/19 19:40,"926 1st St, New York City, NY 10001" +171825,Lightning Charging Cable,1,14.95,02/19/19 09:19,"525 Walnut St, Seattle, WA 98101" +171826,20in Monitor,1,109.99,02/08/19 13:33,"22 9th St, Los Angeles, CA 90001" +171827,27in 4K Gaming Monitor,1,389.99,02/01/19 21:04,"262 Madison St, San Francisco, CA 94016" +171828,Lightning Charging Cable,1,14.95,02/13/19 16:17,"921 Hill St, Dallas, TX 75001" +171829,Lightning Charging Cable,1,14.95,02/27/19 11:42,"383 Jackson St, San Francisco, CA 94016" +171830,27in FHD Monitor,1,149.99,02/06/19 21:19,"416 Hickory St, Los Angeles, CA 90001" +171831,AA Batteries (4-pack),1,3.84,02/19/19 00:38,"976 South St, Austin, TX 73301" +171832,AAA Batteries (4-pack),1,2.99,02/18/19 19:58,"260 West St, New York City, NY 10001" +171833,USB-C Charging Cable,1,11.95,02/16/19 12:33,"581 Ridge St, New York City, NY 10001" +171834,Lightning Charging Cable,1,14.95,02/12/19 21:32,"700 River St, Atlanta, GA 30301" +171835,Wired Headphones,1,11.99,02/20/19 12:52,"409 7th St, San Francisco, CA 94016" +171836,AAA Batteries (4-pack),1,2.99,02/05/19 00:00,"379 Chestnut St, San Francisco, CA 94016" +171837,AAA Batteries (4-pack),2,2.99,02/09/19 12:02,"355 Park St, New York City, NY 10001" +171838,AAA Batteries (4-pack),2,2.99,02/24/19 20:32,"98 4th St, Portland, OR 97035" +171839,Google Phone,1,600,02/05/19 12:35,"361 Highland St, San Francisco, CA 94016" +171839,Bose SoundSport Headphones,1,99.99,02/05/19 12:35,"361 Highland St, San Francisco, CA 94016" +171840,AAA Batteries (4-pack),1,2.99,02/02/19 13:29,"906 Johnson St, Seattle, WA 98101" +171841,AA Batteries (4-pack),2,3.84,02/25/19 19:56,"747 Walnut St, Los Angeles, CA 90001" +171842,Google Phone,1,600,02/17/19 11:34,"974 Hickory St, Portland, ME 04101" +171843,USB-C Charging Cable,1,11.95,02/08/19 16:27,"383 13th St, San Francisco, CA 94016" +171844,AA Batteries (4-pack),1,3.84,02/06/19 20:55,"373 Meadow St, Dallas, TX 75001" +171845,Apple Airpods Headphones,1,150,02/11/19 13:13,"766 5th St, Austin, TX 73301" +171846,iPhone,1,700,02/24/19 11:31,"508 Adams St, Dallas, TX 75001" +171846,Apple Airpods Headphones,1,150,02/24/19 11:31,"508 Adams St, Dallas, TX 75001" +171847,Bose SoundSport Headphones,1,99.99,02/13/19 14:14,"873 Adams St, Dallas, TX 75001" +171848,Bose SoundSport Headphones,1,99.99,02/27/19 21:58,"726 Willow St, San Francisco, CA 94016" +171849,34in Ultrawide Monitor,1,379.99,02/26/19 16:29,"675 7th St, New York City, NY 10001" +171850,Bose SoundSport Headphones,1,99.99,02/13/19 18:34,"349 Washington St, Boston, MA 02215" +171851,USB-C Charging Cable,1,11.95,02/28/19 09:50,"382 8th St, Dallas, TX 75001" +171852,Lightning Charging Cable,1,14.95,02/08/19 15:27,"898 Spruce St, Portland, OR 97035" +171853,AAA Batteries (4-pack),1,2.99,02/08/19 11:03,"814 Spruce St, San Francisco, CA 94016" +171854,Wired Headphones,1,11.99,02/02/19 13:21,"385 Park St, Boston, MA 02215" +171855,AAA Batteries (4-pack),2,2.99,02/03/19 18:42,"1 Willow St, Los Angeles, CA 90001" +171856,Bose SoundSport Headphones,1,99.99,02/22/19 09:47,"742 Forest St, Boston, MA 02215" +171857,USB-C Charging Cable,1,11.95,02/05/19 14:47,"166 12th St, Seattle, WA 98101" +171858,AA Batteries (4-pack),1,3.84,02/06/19 23:32,"313 7th St, Atlanta, GA 30301" +171858,Bose SoundSport Headphones,1,99.99,02/06/19 23:32,"313 7th St, Atlanta, GA 30301" +171859,Bose SoundSport Headphones,1,99.99,02/18/19 17:24,"87 Dogwood St, Portland, OR 97035" +171860,AA Batteries (4-pack),1,3.84,02/21/19 20:58,"345 9th St, San Francisco, CA 94016" +171861,Wired Headphones,1,11.99,02/04/19 00:34,"990 Hill St, Atlanta, GA 30301" +171862,Wired Headphones,1,11.99,02/01/19 09:18,"66 1st St, New York City, NY 10001" +171863,USB-C Charging Cable,1,11.95,02/17/19 12:46,"780 Jackson St, Boston, MA 02215" +171864,Wired Headphones,1,11.99,02/12/19 18:18,"783 Elm St, Los Angeles, CA 90001" +171865,Wired Headphones,1,11.99,02/26/19 19:14,"298 Willow St, Boston, MA 02215" +171866,27in 4K Gaming Monitor,1,389.99,02/04/19 20:12,"14 12th St, Atlanta, GA 30301" +171867,27in 4K Gaming Monitor,1,389.99,02/20/19 14:38,"476 2nd St, Portland, OR 97035" +171868,Lightning Charging Cable,1,14.95,02/28/19 22:21,"572 Sunset St, Dallas, TX 75001" +171869,20in Monitor,1,109.99,02/09/19 13:38,"845 Main St, Austin, TX 73301" +171870,USB-C Charging Cable,1,11.95,02/09/19 14:07,"963 Jefferson St, Los Angeles, CA 90001" +171871,Wired Headphones,1,11.99,02/05/19 17:08,"330 11th St, Boston, MA 02215" +171872,USB-C Charging Cable,1,11.95,02/25/19 10:09,"247 Lincoln St, San Francisco, CA 94016" +171873,iPhone,1,700,02/01/19 11:27,"642 Center St, Los Angeles, CA 90001" +171874,Flatscreen TV,1,300,02/23/19 18:10,"257 West St, Boston, MA 02215" +171875,Wired Headphones,2,11.99,02/12/19 07:17,"199 Jefferson St, Austin, TX 73301" +171876,Apple Airpods Headphones,1,150,02/20/19 10:21,"635 Main St, Portland, OR 97035" +171877,Flatscreen TV,1,300,02/12/19 07:29,"269 8th St, Boston, MA 02215" +171878,Macbook Pro Laptop,1,1700,02/26/19 06:46,"175 Wilson St, New York City, NY 10001" +171879,AA Batteries (4-pack),1,3.84,02/09/19 15:15,"332 Hickory St, Dallas, TX 75001" +171880,Bose SoundSport Headphones,1,99.99,02/20/19 00:04,"157 Elm St, Atlanta, GA 30301" +171881,34in Ultrawide Monitor,1,379.99,02/03/19 19:27,"492 River St, Portland, OR 97035" +171882,Wired Headphones,1,11.99,02/16/19 14:14,"778 9th St, Dallas, TX 75001" +171883,Bose SoundSport Headphones,1,99.99,02/02/19 00:57,"190 Adams St, New York City, NY 10001" +171884,iPhone,1,700,02/14/19 10:18,"119 Ridge St, Dallas, TX 75001" +171884,Lightning Charging Cable,1,14.95,02/14/19 10:18,"119 Ridge St, Dallas, TX 75001" +171885,Wired Headphones,1,11.99,02/07/19 10:45,"836 Forest St, Atlanta, GA 30301" +171886,20in Monitor,1,109.99,02/26/19 11:40,"585 Madison St, Atlanta, GA 30301" +171887,AA Batteries (4-pack),1,3.84,02/08/19 19:38,"870 Walnut St, Dallas, TX 75001" +171888,USB-C Charging Cable,2,11.95,02/06/19 22:03,"544 Pine St, San Francisco, CA 94016" +171888,Wired Headphones,1,11.99,02/06/19 22:03,"544 Pine St, San Francisco, CA 94016" +171889,ThinkPad Laptop,1,999.99,02/21/19 11:12,"59 Jefferson St, Portland, OR 97035" +171890,AAA Batteries (4-pack),1,2.99,02/28/19 14:47,"597 North St, Los Angeles, CA 90001" +171891,Wired Headphones,1,11.99,02/13/19 12:20,"871 Jefferson St, New York City, NY 10001" +171892,iPhone,1,700,02/05/19 06:55,"684 7th St, Dallas, TX 75001" +171892,Wired Headphones,1,11.99,02/05/19 06:55,"684 7th St, Dallas, TX 75001" +171893,USB-C Charging Cable,1,11.95,02/13/19 12:27,"914 South St, San Francisco, CA 94016" +171894,20in Monitor,1,109.99,02/15/19 11:55,"253 Center St, Atlanta, GA 30301" +171895,Wired Headphones,1,11.99,02/28/19 19:25,"916 Highland St, Dallas, TX 75001" +171896,AA Batteries (4-pack),1,3.84,02/27/19 10:50,"565 Cedar St, San Francisco, CA 94016" +171896,AAA Batteries (4-pack),1,2.99,02/27/19 10:50,"565 Cedar St, San Francisco, CA 94016" +171897,Google Phone,1,600,02/16/19 19:16,"458 8th St, Dallas, TX 75001" +171898,AAA Batteries (4-pack),1,2.99,02/18/19 13:02,"269 Johnson St, San Francisco, CA 94016" +171899,iPhone,1,700,02/25/19 12:36,"911 Sunset St, Los Angeles, CA 90001" +171900,Lightning Charging Cable,1,14.95,02/17/19 10:15,"733 Washington St, Portland, OR 97035" +171901,Wired Headphones,1,11.99,02/20/19 18:57,"677 Hill St, Los Angeles, CA 90001" +171902,Apple Airpods Headphones,1,150,02/04/19 19:43,"504 Church St, Los Angeles, CA 90001" +171902,Lightning Charging Cable,1,14.95,02/04/19 19:43,"504 Church St, Los Angeles, CA 90001" +171903,Lightning Charging Cable,1,14.95,02/24/19 14:55,"754 Cherry St, New York City, NY 10001" +171904,AAA Batteries (4-pack),2,2.99,02/25/19 15:28,"197 Adams St, San Francisco, CA 94016" +171905,Lightning Charging Cable,1,14.95,02/07/19 20:14,"365 1st St, San Francisco, CA 94016" +171906,iPhone,1,700,02/17/19 11:51,"210 West St, Seattle, WA 98101" +171906,Wired Headphones,1,11.99,02/17/19 11:51,"210 West St, Seattle, WA 98101" +171907,AAA Batteries (4-pack),2,2.99,02/12/19 19:15,"190 4th St, San Francisco, CA 94016" +171908,AAA Batteries (4-pack),2,2.99,02/07/19 14:39,"12 Sunset St, Seattle, WA 98101" +171909,Wired Headphones,1,11.99,02/02/19 20:11,"337 Forest St, New York City, NY 10001" +171910,Bose SoundSport Headphones,1,99.99,02/05/19 17:40,"59 14th St, Austin, TX 73301" +171911,ThinkPad Laptop,1,999.99,02/21/19 09:14,"580 Madison St, Los Angeles, CA 90001" +171912,USB-C Charging Cable,1,11.95,02/03/19 16:43,"208 Lakeview St, New York City, NY 10001" +171913,34in Ultrawide Monitor,1,379.99,02/13/19 11:44,"939 Willow St, Seattle, WA 98101" +171914,USB-C Charging Cable,1,11.95,02/27/19 13:19,"503 West St, San Francisco, CA 94016" +171915,Wired Headphones,1,11.99,02/16/19 19:02,"857 Washington St, Los Angeles, CA 90001" +171916,Lightning Charging Cable,2,14.95,02/06/19 16:24,"399 West St, New York City, NY 10001" +171917,AAA Batteries (4-pack),3,2.99,02/26/19 16:02,"316 8th St, Seattle, WA 98101" +171918,Bose SoundSport Headphones,1,99.99,02/17/19 20:16,"228 Dogwood St, Seattle, WA 98101" +171919,Wired Headphones,1,11.99,02/11/19 18:24,"87 6th St, San Francisco, CA 94016" +171920,Lightning Charging Cable,1,14.95,02/05/19 16:48,"611 West St, San Francisco, CA 94016" +171921,Bose SoundSport Headphones,1,99.99,02/28/19 23:02,"414 Elm St, San Francisco, CA 94016" +171922,AA Batteries (4-pack),1,3.84,02/23/19 14:39,"386 Cedar St, Dallas, TX 75001" +171923,USB-C Charging Cable,2,11.95,02/17/19 22:35,"452 Washington St, Atlanta, GA 30301" +171924,Flatscreen TV,1,300,02/27/19 18:12,"265 Sunset St, Atlanta, GA 30301" +171925,ThinkPad Laptop,1,999.99,02/15/19 13:26,"131 Willow St, Atlanta, GA 30301" +171926,AA Batteries (4-pack),1,3.84,02/08/19 14:46,"892 Cedar St, Boston, MA 02215" +171927,Wired Headphones,1,11.99,02/26/19 17:20,"154 Spruce St, New York City, NY 10001" +171928,Lightning Charging Cable,1,14.95,02/12/19 15:34,"259 Cherry St, San Francisco, CA 94016" +171928,Lightning Charging Cable,1,14.95,02/12/19 15:34,"259 Cherry St, San Francisco, CA 94016" +171929,Apple Airpods Headphones,1,150,02/09/19 16:37,"335 Hill St, San Francisco, CA 94016" +171930,Vareebadd Phone,1,400,02/05/19 13:42,"593 Pine St, Portland, ME 04101" +171931,USB-C Charging Cable,1,11.95,02/10/19 17:34,"448 4th St, Dallas, TX 75001" +171932,iPhone,1,700,02/28/19 18:42,"62 Washington St, Los Angeles, CA 90001" +171933,AA Batteries (4-pack),2,3.84,02/27/19 19:28,"264 South St, Dallas, TX 75001" +171934,LG Dryer,1,600.0,02/02/19 11:02,"692 Park St, Los Angeles, CA 90001" +171935,27in 4K Gaming Monitor,1,389.99,02/25/19 16:02,"949 Spruce St, Portland, ME 04101" +171936,iPhone,1,700,02/20/19 18:47,"86 Cedar St, Seattle, WA 98101" +171936,Lightning Charging Cable,1,14.95,02/20/19 18:47,"86 Cedar St, Seattle, WA 98101" +171937,AA Batteries (4-pack),2,3.84,02/23/19 09:56,"626 6th St, Seattle, WA 98101" +171938,Lightning Charging Cable,1,14.95,02/01/19 22:37,"285 Elm St, Atlanta, GA 30301" +171939,Apple Airpods Headphones,1,150,02/20/19 21:32,"213 Pine St, Boston, MA 02215" +171940,AAA Batteries (4-pack),1,2.99,02/12/19 11:48,"152 Lakeview St, New York City, NY 10001" +171941,Lightning Charging Cable,1,14.95,02/23/19 17:10,"856 10th St, Austin, TX 73301" +171942,27in 4K Gaming Monitor,1,389.99,02/07/19 17:20,"682 Lakeview St, San Francisco, CA 94016" +171943,AA Batteries (4-pack),3,3.84,02/14/19 06:08,"839 Lake St, Boston, MA 02215" +171944,USB-C Charging Cable,1,11.95,02/10/19 20:30,"917 Washington St, Los Angeles, CA 90001" +171945,34in Ultrawide Monitor,1,379.99,02/01/19 11:28,"785 River St, San Francisco, CA 94016" +171946,27in FHD Monitor,1,149.99,02/01/19 15:10,"714 Hill St, New York City, NY 10001" +171947,LG Washing Machine,1,600.0,02/17/19 00:01,"857 Jackson St, New York City, NY 10001" +171948,Wired Headphones,4,11.99,02/21/19 19:08,"304 Highland St, New York City, NY 10001" +171949,AA Batteries (4-pack),1,3.84,02/05/19 10:44,"652 Center St, San Francisco, CA 94016" +171950,Apple Airpods Headphones,1,150,02/28/19 17:43,"74 Chestnut St, Los Angeles, CA 90001" +171951,AA Batteries (4-pack),2,3.84,02/05/19 19:08,"788 Hickory St, Dallas, TX 75001" +171952,27in 4K Gaming Monitor,1,389.99,02/07/19 13:12,"879 Meadow St, Boston, MA 02215" +171953,Lightning Charging Cable,1,14.95,02/23/19 14:25,"409 Center St, Portland, OR 97035" +171954,AAA Batteries (4-pack),1,2.99,02/28/19 12:57,"380 Johnson St, Dallas, TX 75001" +171955,Apple Airpods Headphones,1,150,02/01/19 17:44,"338 North St, San Francisco, CA 94016" +171956,Lightning Charging Cable,1,14.95,02/18/19 06:35,"678 Madison St, Dallas, TX 75001" +171957,AAA Batteries (4-pack),1,2.99,02/22/19 07:56,"100 Meadow St, Los Angeles, CA 90001" +171958,Wired Headphones,1,11.99,02/09/19 15:59,"361 Chestnut St, San Francisco, CA 94016" +171959,AA Batteries (4-pack),1,3.84,02/07/19 17:33,"890 Elm St, Los Angeles, CA 90001" +171960,Bose SoundSport Headphones,1,99.99,02/19/19 19:54,"64 Jackson St, New York City, NY 10001" +171961,Google Phone,1,600,02/14/19 20:51,"870 6th St, Portland, OR 97035" +171962,Apple Airpods Headphones,1,150,02/24/19 08:01,"763 North St, Los Angeles, CA 90001" +171963,Lightning Charging Cable,1,14.95,02/03/19 22:16,"159 Wilson St, San Francisco, CA 94016" +171964,Lightning Charging Cable,1,14.95,02/13/19 11:22,"57 Cedar St, New York City, NY 10001" +171965,Macbook Pro Laptop,1,1700,02/04/19 14:24,"128 South St, San Francisco, CA 94016" +171966,Wired Headphones,1,11.99,02/24/19 12:25,"340 Cherry St, San Francisco, CA 94016" +171967,Wired Headphones,1,11.99,02/12/19 17:59,"422 Walnut St, Boston, MA 02215" +171968,27in 4K Gaming Monitor,1,389.99,02/16/19 11:03,"141 13th St, Los Angeles, CA 90001" +171969,AA Batteries (4-pack),1,3.84,02/04/19 13:46,"322 Wilson St, San Francisco, CA 94016" +171970,27in FHD Monitor,1,149.99,02/27/19 20:07,"60 Highland St, Dallas, TX 75001" +171971,USB-C Charging Cable,1,11.95,02/07/19 00:18,"761 Church St, Los Angeles, CA 90001" +171972,27in 4K Gaming Monitor,1,389.99,02/24/19 23:20,"833 Lincoln St, New York City, NY 10001" +171973,ThinkPad Laptop,1,999.99,02/08/19 12:35,"833 Hickory St, Dallas, TX 75001" +171974,USB-C Charging Cable,1,11.95,02/14/19 17:47,"948 Spruce St, Portland, OR 97035" +171975,USB-C Charging Cable,1,11.95,02/10/19 12:58,"818 11th St, Los Angeles, CA 90001" +171976,AAA Batteries (4-pack),1,2.99,02/24/19 02:18,"726 Hill St, Dallas, TX 75001" +171977,Google Phone,1,600,02/23/19 17:15,"959 River St, Seattle, WA 98101" +171977,USB-C Charging Cable,1,11.95,02/23/19 17:15,"959 River St, Seattle, WA 98101" +171978,Apple Airpods Headphones,1,150,02/06/19 22:51,"586 Forest St, Boston, MA 02215" +171979,iPhone,1,700,02/12/19 21:19,"553 Jefferson St, San Francisco, CA 94016" +171980,Lightning Charging Cable,1,14.95,02/11/19 02:14,"148 Spruce St, Los Angeles, CA 90001" +171981,AA Batteries (4-pack),1,3.84,02/28/19 08:01,"542 Dogwood St, Los Angeles, CA 90001" +171982,Bose SoundSport Headphones,1,99.99,02/08/19 19:18,"81 Hill St, New York City, NY 10001" +171983,USB-C Charging Cable,1,11.95,02/13/19 14:01,"555 Meadow St, Los Angeles, CA 90001" +171984,AA Batteries (4-pack),1,3.84,02/21/19 23:10,"492 Pine St, New York City, NY 10001" +171985,Google Phone,1,600,02/24/19 22:48,"174 1st St, Atlanta, GA 30301" +171986,20in Monitor,1,109.99,02/21/19 12:47,"755 Lakeview St, San Francisco, CA 94016" +171987,Macbook Pro Laptop,1,1700,02/09/19 20:08,"577 Jackson St, San Francisco, CA 94016" +171988,AAA Batteries (4-pack),1,2.99,02/20/19 11:24,"515 Cedar St, Boston, MA 02215" +171989,AAA Batteries (4-pack),2,2.99,02/24/19 10:59,"871 Center St, Los Angeles, CA 90001" +171990,Apple Airpods Headphones,1,150,02/02/19 01:18,"395 Ridge St, San Francisco, CA 94016" +171991,USB-C Charging Cable,1,11.95,02/21/19 17:27,"174 Center St, Portland, OR 97035" +171992,Bose SoundSport Headphones,1,99.99,02/09/19 14:43,"434 Lincoln St, Dallas, TX 75001" +171993,Google Phone,1,600,02/18/19 22:31,"238 South St, Austin, TX 73301" +171994,Lightning Charging Cable,1,14.95,02/25/19 19:42,"129 Sunset St, New York City, NY 10001" +171995,Bose SoundSport Headphones,1,99.99,02/08/19 14:06,"172 Center St, Los Angeles, CA 90001" +171996,USB-C Charging Cable,2,11.95,02/23/19 20:18,"63 Sunset St, Los Angeles, CA 90001" +171997,Macbook Pro Laptop,1,1700,02/06/19 11:25,"113 Hickory St, Atlanta, GA 30301" +171998,27in FHD Monitor,1,149.99,02/25/19 10:21,"543 West St, New York City, NY 10001" +171999,AA Batteries (4-pack),1,3.84,02/28/19 19:12,"406 5th St, Portland, OR 97035" +172000,Google Phone,1,600,02/08/19 11:05,"619 Maple St, Los Angeles, CA 90001" +172001,AA Batteries (4-pack),2,3.84,02/22/19 15:09,"656 Cherry St, Boston, MA 02215" +172002,Lightning Charging Cable,1,14.95,02/01/19 13:07,"505 6th St, Los Angeles, CA 90001" +172003,AAA Batteries (4-pack),1,2.99,02/07/19 21:39,"222 Johnson St, Austin, TX 73301" +172004,USB-C Charging Cable,1,11.95,02/27/19 15:48,"696 Lakeview St, Austin, TX 73301" +172005,iPhone,1,700,02/19/19 11:34,"470 8th St, San Francisco, CA 94016" +172006,Bose SoundSport Headphones,1,99.99,02/23/19 10:21,"881 10th St, San Francisco, CA 94016" +172007,USB-C Charging Cable,1,11.95,02/20/19 17:45,"716 Adams St, San Francisco, CA 94016" +172008,Bose SoundSport Headphones,1,99.99,02/25/19 13:18,"833 Hill St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +172009,Bose SoundSport Headphones,1,99.99,02/19/19 10:14,"64 Forest St, Boston, MA 02215" +172010,AAA Batteries (4-pack),2,2.99,02/08/19 14:50,"658 Elm St, New York City, NY 10001" +172011,USB-C Charging Cable,1,11.95,02/06/19 19:42,"728 Washington St, Boston, MA 02215" +172012,Bose SoundSport Headphones,1,99.99,02/06/19 15:36,"514 Dogwood St, Los Angeles, CA 90001" +172013,AA Batteries (4-pack),1,3.84,02/22/19 16:39,"25 10th St, Dallas, TX 75001" +172014,Lightning Charging Cable,1,14.95,02/10/19 17:20,"365 5th St, Seattle, WA 98101" +172015,AA Batteries (4-pack),1,3.84,02/16/19 10:45,"35 12th St, Boston, MA 02215" +172016,Lightning Charging Cable,1,14.95,02/02/19 16:50,"136 Forest St, Dallas, TX 75001" +172017,iPhone,1,700,02/04/19 20:58,"40 Pine St, Austin, TX 73301" +172018,USB-C Charging Cable,1,11.95,02/28/19 13:52,"466 8th St, Los Angeles, CA 90001" +172019,AA Batteries (4-pack),2,3.84,02/08/19 07:27,"793 Cherry St, San Francisco, CA 94016" +172020,Lightning Charging Cable,2,14.95,02/22/19 14:30,"96 Lake St, San Francisco, CA 94016" +172021,27in FHD Monitor,1,149.99,02/27/19 11:42,"463 11th St, San Francisco, CA 94016" +172022,AA Batteries (4-pack),3,3.84,02/04/19 17:38,"541 South St, San Francisco, CA 94016" +172023,AA Batteries (4-pack),1,3.84,02/10/19 13:14,"809 Hill St, Portland, OR 97035" +172023,Bose SoundSport Headphones,1,99.99,02/10/19 13:14,"809 Hill St, Portland, OR 97035" +172024,Lightning Charging Cable,1,14.95,02/27/19 12:37,"68 4th St, Los Angeles, CA 90001" +172025,27in FHD Monitor,1,149.99,02/02/19 08:58,"254 12th St, San Francisco, CA 94016" +172026,34in Ultrawide Monitor,1,379.99,02/12/19 22:00,"884 Dogwood St, Seattle, WA 98101" +172027,AA Batteries (4-pack),1,3.84,02/22/19 17:18,"16 11th St, Los Angeles, CA 90001" +172028,Google Phone,1,600,02/22/19 21:54,"81 South St, Dallas, TX 75001" +172028,USB-C Charging Cable,1,11.95,02/22/19 21:54,"81 South St, Dallas, TX 75001" +172029,27in FHD Monitor,1,149.99,02/19/19 10:40,"127 Jackson St, Boston, MA 02215" +172030,AA Batteries (4-pack),1,3.84,02/22/19 20:21,"819 Elm St, Seattle, WA 98101" +172031,AA Batteries (4-pack),4,3.84,02/12/19 08:22,"336 Meadow St, Portland, ME 04101" +172032,Bose SoundSport Headphones,1,99.99,02/22/19 17:23,"976 Ridge St, Seattle, WA 98101" +172033,Apple Airpods Headphones,1,150,02/03/19 11:49,"163 13th St, Los Angeles, CA 90001" +172034,27in FHD Monitor,1,149.99,02/03/19 21:28,"631 Meadow St, Atlanta, GA 30301" +172035,Wired Headphones,1,11.99,02/05/19 16:25,"591 14th St, Dallas, TX 75001" +172036,USB-C Charging Cable,2,11.95,02/22/19 23:34,"879 South St, Seattle, WA 98101" +172037,USB-C Charging Cable,1,11.95,02/10/19 12:09,"774 Spruce St, Los Angeles, CA 90001" +172038,Flatscreen TV,1,300,02/27/19 14:25,"259 8th St, Los Angeles, CA 90001" +172039,Lightning Charging Cable,1,14.95,02/23/19 06:50,"420 Sunset St, San Francisco, CA 94016" +172040,Wired Headphones,1,11.99,02/01/19 17:54,"32 Lake St, Portland, OR 97035" +172041,USB-C Charging Cable,1,11.95,02/16/19 11:03,"770 Lake St, Los Angeles, CA 90001" +172042,AA Batteries (4-pack),2,3.84,02/26/19 01:05,"345 Spruce St, Dallas, TX 75001" +172043,Vareebadd Phone,1,400,02/11/19 18:02,"685 1st St, San Francisco, CA 94016" +172044,AAA Batteries (4-pack),2,2.99,02/15/19 20:12,"631 Walnut St, Seattle, WA 98101" +172045,Apple Airpods Headphones,1,150,02/18/19 09:18,"294 Walnut St, Boston, MA 02215" +172046,Apple Airpods Headphones,2,150,02/04/19 08:38,"987 Elm St, Los Angeles, CA 90001" +172047,34in Ultrawide Monitor,1,379.99,02/25/19 12:54,"170 Center St, Los Angeles, CA 90001" +172048,Bose SoundSport Headphones,1,99.99,02/09/19 14:36,"51 2nd St, San Francisco, CA 94016" +172049,Flatscreen TV,1,300,02/25/19 11:53,"709 5th St, Seattle, WA 98101" +172050,AAA Batteries (4-pack),1,2.99,02/18/19 16:44,"134 Main St, Dallas, TX 75001" +172051,Wired Headphones,1,11.99,02/10/19 12:35,"692 12th St, San Francisco, CA 94016" +172052,AA Batteries (4-pack),2,3.84,02/03/19 17:54,"860 Wilson St, Boston, MA 02215" +172052,AAA Batteries (4-pack),2,2.99,02/03/19 17:54,"860 Wilson St, Boston, MA 02215" +172053,USB-C Charging Cable,1,11.95,02/01/19 09:15,"730 Walnut St, San Francisco, CA 94016" +172054,27in FHD Monitor,1,149.99,02/28/19 08:01,"625 South St, Austin, TX 73301" +172055,20in Monitor,1,109.99,02/02/19 22:46,"616 6th St, Dallas, TX 75001" +172056,Wired Headphones,1,11.99,02/04/19 05:56,"180 Forest St, Seattle, WA 98101" +172057,AAA Batteries (4-pack),1,2.99,02/09/19 16:12,"268 Walnut St, Portland, ME 04101" +172058,27in 4K Gaming Monitor,1,389.99,02/15/19 14:07,"41 Elm St, Los Angeles, CA 90001" +172059,Bose SoundSport Headphones,1,99.99,02/28/19 03:23,"350 Cedar St, Los Angeles, CA 90001" +172060,Lightning Charging Cable,1,14.95,02/01/19 17:33,"786 North St, San Francisco, CA 94016" +172061,AAA Batteries (4-pack),3,2.99,02/28/19 19:14,"561 Madison St, San Francisco, CA 94016" +172062,Apple Airpods Headphones,1,150,02/27/19 10:33,"78 5th St, Atlanta, GA 30301" +172063,Lightning Charging Cable,1,14.95,02/10/19 15:44,"700 Lincoln St, San Francisco, CA 94016" +172064,Lightning Charging Cable,1,14.95,02/09/19 21:12,"786 Walnut St, Atlanta, GA 30301" +172065,Google Phone,1,600,02/13/19 19:12,"990 Hickory St, Atlanta, GA 30301" +172066,Lightning Charging Cable,1,14.95,02/08/19 12:01,"755 Lake St, Seattle, WA 98101" +172067,iPhone,1,700,02/26/19 14:05,"462 Adams St, San Francisco, CA 94016" +172068,Lightning Charging Cable,1,14.95,02/10/19 12:56,"527 Cherry St, Seattle, WA 98101" +172069,34in Ultrawide Monitor,1,379.99,02/17/19 14:52,"711 Spruce St, Los Angeles, CA 90001" +172070,AA Batteries (4-pack),1,3.84,02/27/19 05:56,"625 Cedar St, Portland, OR 97035" +172071,AAA Batteries (4-pack),1,2.99,02/05/19 23:50,"469 14th St, Los Angeles, CA 90001" +172072,Apple Airpods Headphones,1,150,02/08/19 19:30,"129 7th St, Los Angeles, CA 90001" +172073,27in FHD Monitor,1,149.99,02/10/19 00:03,"934 7th St, Dallas, TX 75001" +172074,AA Batteries (4-pack),1,3.84,02/06/19 11:43,"157 14th St, Boston, MA 02215" +172075,27in FHD Monitor,1,149.99,02/03/19 14:02,"389 Center St, Los Angeles, CA 90001" +172076,AAA Batteries (4-pack),2,2.99,02/19/19 13:08,"130 Center St, Boston, MA 02215" +172077,Wired Headphones,1,11.99,02/23/19 12:21,"866 Cherry St, Seattle, WA 98101" +172078,Lightning Charging Cable,1,14.95,02/15/19 16:04,"592 Lake St, Atlanta, GA 30301" +172079,AA Batteries (4-pack),1,3.84,02/08/19 18:54,"275 Wilson St, San Francisco, CA 94016" +172080,27in 4K Gaming Monitor,1,389.99,02/27/19 14:48,"632 Jackson St, Dallas, TX 75001" +172081,Wired Headphones,1,11.99,02/03/19 17:54,"152 9th St, New York City, NY 10001" +172082,Lightning Charging Cable,1,14.95,02/01/19 12:36,"317 Church St, Dallas, TX 75001" +172083,Bose SoundSport Headphones,1,99.99,02/04/19 08:20,"248 13th St, Los Angeles, CA 90001" +172084,AA Batteries (4-pack),2,3.84,02/25/19 08:21,"95 Park St, Dallas, TX 75001" +172085,ThinkPad Laptop,1,999.99,02/27/19 01:39,"85 7th St, Portland, OR 97035" +172086,Macbook Pro Laptop,1,1700,02/10/19 21:22,"499 Cherry St, Seattle, WA 98101" +172087,iPhone,1,700,02/22/19 08:17,"241 14th St, Austin, TX 73301" +172088,AA Batteries (4-pack),1,3.84,02/21/19 12:39,"112 South St, New York City, NY 10001" +172089,20in Monitor,1,109.99,02/27/19 08:39,"13 North St, San Francisco, CA 94016" +172090,AAA Batteries (4-pack),1,2.99,02/13/19 20:10,"870 Jackson St, Los Angeles, CA 90001" +172091,Apple Airpods Headphones,1,150,02/13/19 13:54,"60 12th St, Boston, MA 02215" +172092,Apple Airpods Headphones,1,150,02/09/19 15:16,"991 Jefferson St, Los Angeles, CA 90001" +172093,AAA Batteries (4-pack),1,2.99,02/02/19 16:37,"906 13th St, Boston, MA 02215" +172094,20in Monitor,1,109.99,02/02/19 17:42,"65 Chestnut St, Los Angeles, CA 90001" +172095,Bose SoundSport Headphones,1,99.99,02/15/19 17:15,"44 Jefferson St, Austin, TX 73301" +172096,27in FHD Monitor,1,149.99,02/04/19 20:53,"744 2nd St, Los Angeles, CA 90001" +172097,iPhone,1,700,02/08/19 12:23,"419 North St, Boston, MA 02215" +172098,AAA Batteries (4-pack),2,2.99,02/27/19 10:11,"254 Hickory St, Portland, OR 97035" +172099,Bose SoundSport Headphones,1,99.99,02/06/19 07:42,"680 Willow St, San Francisco, CA 94016" +172100,34in Ultrawide Monitor,1,379.99,02/03/19 16:09,"512 Madison St, Dallas, TX 75001" +172101,27in FHD Monitor,1,149.99,02/01/19 13:53,"378 Forest St, Boston, MA 02215" +172102,Bose SoundSport Headphones,1,99.99,02/05/19 14:14,"4 10th St, New York City, NY 10001" +172103,Bose SoundSport Headphones,1,99.99,02/27/19 12:05,"586 Highland St, Atlanta, GA 30301" +172104,USB-C Charging Cable,1,11.95,02/26/19 09:58,"554 Cedar St, Boston, MA 02215" +172105,iPhone,1,700,02/25/19 21:04,"384 11th St, Boston, MA 02215" +172106,AAA Batteries (4-pack),5,2.99,02/25/19 17:56,"181 Cherry St, San Francisco, CA 94016" +172107,Bose SoundSport Headphones,1,99.99,02/16/19 23:17,"141 Jefferson St, Seattle, WA 98101" +172108,Lightning Charging Cable,2,14.95,02/02/19 12:13,"759 Spruce St, Seattle, WA 98101" +172109,Lightning Charging Cable,1,14.95,02/04/19 19:21,"501 Jefferson St, Los Angeles, CA 90001" +172110,AA Batteries (4-pack),1,3.84,02/25/19 14:25,"90 Wilson St, New York City, NY 10001" +172111,USB-C Charging Cable,1,11.95,02/20/19 13:47,"363 Ridge St, San Francisco, CA 94016" +172112,27in FHD Monitor,1,149.99,02/28/19 22:30,"264 Walnut St, San Francisco, CA 94016" +172113,Apple Airpods Headphones,1,150,02/05/19 10:05,"168 12th St, New York City, NY 10001" +172114,Lightning Charging Cable,1,14.95,02/20/19 07:45,"929 Wilson St, San Francisco, CA 94016" +172115,Bose SoundSport Headphones,1,99.99,02/02/19 12:35,"44 Hill St, San Francisco, CA 94016" +172116,Lightning Charging Cable,1,14.95,02/23/19 09:09,"804 Washington St, Dallas, TX 75001" +172117,AA Batteries (4-pack),2,3.84,02/09/19 08:18,"56 Sunset St, San Francisco, CA 94016" +172118,27in FHD Monitor,1,149.99,02/08/19 08:12,"520 2nd St, Dallas, TX 75001" +172119,USB-C Charging Cable,1,11.95,02/11/19 19:15,"132 Spruce St, Dallas, TX 75001" +172120,Lightning Charging Cable,1,14.95,02/03/19 20:31,"806 North St, New York City, NY 10001" +172121,USB-C Charging Cable,1,11.95,02/20/19 22:13,"634 Ridge St, Boston, MA 02215" +172122,AAA Batteries (4-pack),2,2.99,02/07/19 19:01,"35 Dogwood St, Los Angeles, CA 90001" +172123,Apple Airpods Headphones,1,150,02/21/19 23:44,"638 Ridge St, Austin, TX 73301" +172124,Wired Headphones,1,11.99,02/03/19 12:59,"541 Wilson St, San Francisco, CA 94016" +172125,USB-C Charging Cable,2,11.95,02/18/19 07:56,"51 1st St, Los Angeles, CA 90001" +172126,34in Ultrawide Monitor,1,379.99,02/14/19 10:35,"672 4th St, San Francisco, CA 94016" +172127,USB-C Charging Cable,1,11.95,02/25/19 15:26,"410 6th St, Portland, OR 97035" +172128,iPhone,1,700,02/05/19 00:04,"504 River St, San Francisco, CA 94016" +172129,USB-C Charging Cable,1,11.95,02/15/19 20:46,"68 10th St, San Francisco, CA 94016" +172130,Apple Airpods Headphones,1,150,02/16/19 09:02,"223 Park St, New York City, NY 10001" +172131,Lightning Charging Cable,1,14.95,02/16/19 11:26,"757 Center St, Los Angeles, CA 90001" +172132,27in FHD Monitor,1,149.99,02/03/19 12:17,"867 Dogwood St, Boston, MA 02215" +172133,USB-C Charging Cable,1,11.95,02/17/19 15:55,"254 North St, San Francisco, CA 94016" +172134,27in FHD Monitor,1,149.99,02/10/19 12:07,"728 Johnson St, Atlanta, GA 30301" +172135,Lightning Charging Cable,1,14.95,02/10/19 07:48,"222 Spruce St, San Francisco, CA 94016" +172136,34in Ultrawide Monitor,1,379.99,02/07/19 13:56,"934 Spruce St, San Francisco, CA 94016" +172137,27in FHD Monitor,1,149.99,02/09/19 15:49,"695 11th St, Atlanta, GA 30301" +172138,AA Batteries (4-pack),1,3.84,02/19/19 16:06,"80 Pine St, San Francisco, CA 94016" +172139,27in 4K Gaming Monitor,1,389.99,02/06/19 20:28,"965 5th St, Dallas, TX 75001" +172140,Lightning Charging Cable,1,14.95,02/20/19 22:59,"161 Sunset St, Boston, MA 02215" +172141,USB-C Charging Cable,1,11.95,02/26/19 23:20,"773 4th St, Portland, OR 97035" +172142,34in Ultrawide Monitor,1,379.99,02/09/19 11:05,"766 Maple St, San Francisco, CA 94016" +172143,Wired Headphones,1,11.99,02/02/19 20:26,"82 Adams St, San Francisco, CA 94016" +172144,AA Batteries (4-pack),1,3.84,02/08/19 17:04,"124 Main St, Boston, MA 02215" +172145,Bose SoundSport Headphones,1,99.99,02/24/19 13:15,"572 Walnut St, Los Angeles, CA 90001" +172146,Bose SoundSport Headphones,1,99.99,02/06/19 06:36,"87 Park St, Los Angeles, CA 90001" +172147,USB-C Charging Cable,1,11.95,02/16/19 20:24,"320 South St, San Francisco, CA 94016" +172148,USB-C Charging Cable,1,11.95,02/22/19 19:33,"480 Washington St, Los Angeles, CA 90001" +206225,Apple Airpods Headphones,1,150.0,06/07/19 15:20,"769 Spruce St, San Francisco, CA 94016" +206226,AAA Batteries (4-pack),1,2.99,06/03/19 22:38,"431 Madison St, Los Angeles, CA 90001" +206227,USB-C Charging Cable,1,11.95,06/15/19 11:15,"88 Lake St, Portland, OR 97035" +206228,AA Batteries (4-pack),1,3.84,06/10/19 17:24,"49 6th St, Boston, MA 02215" +206229,27in FHD Monitor,1,149.99,06/23/19 00:46,"728 Lakeview St, Seattle, WA 98101" +206230,27in FHD Monitor,1,149.99,06/09/19 15:39,"171 Walnut St, Boston, MA 02215" +206231,iPhone,1,700.0,06/10/19 19:03,"153 Pine St, New York City, NY 10001" +206232,AA Batteries (4-pack),1,3.84,06/09/19 01:41,"965 Highland St, Portland, ME 04101" +206233,AAA Batteries (4-pack),1,2.99,06/21/19 16:24,"536 Maple St, Boston, MA 02215" +206234,Lightning Charging Cable,1,14.95,06/21/19 01:14,"684 Highland St, San Francisco, CA 94016" +206235,Lightning Charging Cable,2,14.95,06/24/19 16:34,"319 River St, Seattle, WA 98101" +206236,AA Batteries (4-pack),2,3.84,06/10/19 21:55,"462 Park St, New York City, NY 10001" +206237,Bose SoundSport Headphones,1,99.99,06/11/19 08:06,"906 4th St, Los Angeles, CA 90001" +206238,AAA Batteries (4-pack),1,2.99,06/25/19 10:33,"163 Johnson St, Portland, OR 97035" +206239,USB-C Charging Cable,1,11.95,06/10/19 13:54,"327 Jefferson St, Boston, MA 02215" +206240,34in Ultrawide Monitor,1,379.99,06/02/19 20:39,"571 8th St, New York City, NY 10001" +206241,Bose SoundSport Headphones,1,99.99,06/30/19 20:49,"34 7th St, Boston, MA 02215" +206242,AAA Batteries (4-pack),3,2.99,06/25/19 21:32,"161 13th St, Portland, OR 97035" +206243,Google Phone,1,600.0,06/08/19 18:44,"427 2nd St, Atlanta, GA 30301" +206243,USB-C Charging Cable,1,11.95,06/08/19 18:44,"427 2nd St, Atlanta, GA 30301" +206244,AAA Batteries (4-pack),1,2.99,06/25/19 11:27,"286 13th St, San Francisco, CA 94016" +206244,27in 4K Gaming Monitor,1,389.99,06/25/19 11:27,"286 13th St, San Francisco, CA 94016" +206245,AAA Batteries (4-pack),1,2.99,06/03/19 09:02,"435 West St, Seattle, WA 98101" +206246,USB-C Charging Cable,1,11.95,06/16/19 06:12,"179 12th St, San Francisco, CA 94016" +206247,Lightning Charging Cable,1,14.95,06/29/19 14:33,"987 River St, Portland, OR 97035" +206248,20in Monitor,1,109.99,06/15/19 12:13,"194 11th St, Portland, OR 97035" +206249,AA Batteries (4-pack),1,3.84,06/26/19 13:52,"73 Center St, Atlanta, GA 30301" +206250,iPhone,1,700.0,06/19/19 08:10,"178 Willow St, Dallas, TX 75001" +206250,Lightning Charging Cable,1,14.95,06/19/19 08:10,"178 Willow St, Dallas, TX 75001" +206251,Wired Headphones,1,11.99,06/09/19 10:54,"242 Hickory St, Dallas, TX 75001" +206252,USB-C Charging Cable,1,11.95,06/14/19 13:05,"694 6th St, Seattle, WA 98101" +206253,AAA Batteries (4-pack),1,2.99,06/28/19 14:16,"380 Adams St, Boston, MA 02215" +206254,Bose SoundSport Headphones,1,99.99,06/30/19 11:21,"269 Highland St, San Francisco, CA 94016" +206255,AA Batteries (4-pack),2,3.84,06/01/19 22:54,"875 Main St, San Francisco, CA 94016" +206256,34in Ultrawide Monitor,1,379.99,06/30/19 22:39,"986 Meadow St, Los Angeles, CA 90001" +206257,Macbook Pro Laptop,1,1700.0,06/22/19 18:59,"618 Hill St, Portland, OR 97035" +206258,27in FHD Monitor,1,149.99,06/27/19 18:11,"544 Lakeview St, New York City, NY 10001" +206259,Apple Airpods Headphones,1,150.0,06/22/19 17:07,"583 7th St, Los Angeles, CA 90001" +206260,AA Batteries (4-pack),1,3.84,06/18/19 16:19,"922 North St, San Francisco, CA 94016" +206261,Apple Airpods Headphones,1,150.0,06/27/19 09:02,"296 Lincoln St, Seattle, WA 98101" +206262,Apple Airpods Headphones,1,150.0,06/01/19 10:44,"904 Sunset St, Atlanta, GA 30301" +206263,iPhone,1,700.0,06/18/19 11:06,"692 Jackson St, Los Angeles, CA 90001" +206264,AAA Batteries (4-pack),1,2.99,06/10/19 18:55,"368 13th St, San Francisco, CA 94016" +206265,Wired Headphones,1,11.99,06/07/19 09:06,"588 Highland St, Los Angeles, CA 90001" +206266,Lightning Charging Cable,1,14.95,06/27/19 11:33,"11 Walnut St, San Francisco, CA 94016" +206267,Google Phone,1,600.0,06/28/19 22:27,"153 8th St, San Francisco, CA 94016" +206267,USB-C Charging Cable,1,11.95,06/28/19 22:27,"153 8th St, San Francisco, CA 94016" +206268,Lightning Charging Cable,1,14.95,06/26/19 11:03,"906 10th St, Atlanta, GA 30301" +206269,Wired Headphones,1,11.99,06/16/19 11:15,"442 Center St, New York City, NY 10001" +206270,ThinkPad Laptop,1,999.99,06/16/19 10:56,"548 Forest St, San Francisco, CA 94016" +206271,Bose SoundSport Headphones,1,99.99,06/19/19 13:36,"915 14th St, New York City, NY 10001" +206272,Bose SoundSport Headphones,1,99.99,06/02/19 15:45,"938 Walnut St, Atlanta, GA 30301" +206273,Lightning Charging Cable,1,14.95,06/25/19 12:21,"958 2nd St, Los Angeles, CA 90001" +206274,Bose SoundSport Headphones,1,99.99,06/25/19 14:27,"567 Maple St, San Francisco, CA 94016" +206275,Apple Airpods Headphones,1,150.0,06/29/19 11:18,"340 Jefferson St, Boston, MA 02215" +206276,USB-C Charging Cable,1,11.95,06/20/19 20:55,"487 Lincoln St, Atlanta, GA 30301" +206277,Vareebadd Phone,1,400.0,06/10/19 15:50,"72 Washington St, Portland, ME 04101" +206278,Apple Airpods Headphones,1,150.0,06/18/19 10:42,"271 1st St, New York City, NY 10001" +206279,Bose SoundSport Headphones,1,99.99,06/12/19 16:47,"282 West St, Los Angeles, CA 90001" +206280,Wired Headphones,1,11.99,06/30/19 17:22,"868 West St, San Francisco, CA 94016" +206281,Apple Airpods Headphones,1,150.0,06/16/19 17:31,"655 9th St, San Francisco, CA 94016" +206282,Lightning Charging Cable,1,14.95,06/28/19 20:59,"378 Elm St, Dallas, TX 75001" +206283,ThinkPad Laptop,1,999.99,06/01/19 11:26,"237 6th St, San Francisco, CA 94016" +206284,Wired Headphones,1,11.99,06/21/19 21:01,"681 Elm St, Atlanta, GA 30301" +206285,34in Ultrawide Monitor,1,379.99,06/02/19 20:19,"817 Forest St, Seattle, WA 98101" +206286,Wired Headphones,1,11.99,06/28/19 14:42,"69 Jackson St, Atlanta, GA 30301" +206287,27in 4K Gaming Monitor,1,389.99,06/19/19 14:28,"992 Madison St, New York City, NY 10001" +206288,USB-C Charging Cable,1,11.95,06/08/19 23:38,"755 South St, San Francisco, CA 94016" +206289,USB-C Charging Cable,1,11.95,06/11/19 19:22,"597 Cherry St, Boston, MA 02215" +206290,27in FHD Monitor,1,149.99,06/28/19 07:53,"797 South St, Boston, MA 02215" +206291,Flatscreen TV,1,300.0,06/10/19 23:39,"132 9th St, Atlanta, GA 30301" +206292,Lightning Charging Cable,1,14.95,06/05/19 14:02,"467 1st St, San Francisco, CA 94016" +206292,iPhone,1,700.0,06/05/19 14:02,"467 1st St, San Francisco, CA 94016" +206293,USB-C Charging Cable,1,11.95,06/03/19 10:54,"116 Washington St, Seattle, WA 98101" +206294,Apple Airpods Headphones,1,150.0,06/22/19 10:24,"916 Lake St, Los Angeles, CA 90001" +206295,Apple Airpods Headphones,2,150.0,06/26/19 17:14,"592 Madison St, San Francisco, CA 94016" +206296,USB-C Charging Cable,2,11.95,06/21/19 00:37,"519 2nd St, Seattle, WA 98101" +206297,34in Ultrawide Monitor,1,379.99,06/17/19 20:06,"850 11th St, Portland, ME 04101" +206298,34in Ultrawide Monitor,1,379.99,06/25/19 06:32,"346 Sunset St, New York City, NY 10001" +206299,Wired Headphones,1,11.99,06/25/19 18:57,"831 West St, New York City, NY 10001" +206300,USB-C Charging Cable,1,11.95,06/19/19 19:49,"979 Pine St, New York City, NY 10001" +206301,34in Ultrawide Monitor,1,379.99,06/14/19 21:15,"462 Highland St, San Francisco, CA 94016" +206302,USB-C Charging Cable,1,11.95,06/05/19 15:51,"422 6th St, Portland, OR 97035" +206303,USB-C Charging Cable,1,11.95,06/08/19 10:38,"638 9th St, San Francisco, CA 94016" +206304,27in 4K Gaming Monitor,1,389.99,06/17/19 18:45,"889 5th St, Austin, TX 73301" +206305,Apple Airpods Headphones,1,150.0,06/04/19 10:05,"261 6th St, Dallas, TX 75001" +206306,34in Ultrawide Monitor,1,379.99,06/28/19 11:30,"604 Chestnut St, San Francisco, CA 94016" +206307,Wired Headphones,1,11.99,06/17/19 16:20,"950 11th St, New York City, NY 10001" +206308,34in Ultrawide Monitor,1,379.99,06/21/19 16:03,"162 Main St, Austin, TX 73301" +206309,27in FHD Monitor,1,149.99,06/18/19 08:37,"788 9th St, New York City, NY 10001" +206310,Google Phone,1,600.0,06/30/19 19:52,"535 Elm St, New York City, NY 10001" +206311,AAA Batteries (4-pack),3,2.99,06/06/19 20:54,"526 Maple St, Seattle, WA 98101" +206312,27in FHD Monitor,1,149.99,06/15/19 22:19,"331 Maple St, New York City, NY 10001" +206313,34in Ultrawide Monitor,1,379.99,06/18/19 13:08,"593 Sunset St, Seattle, WA 98101" +206314,Lightning Charging Cable,1,14.95,06/24/19 20:41,"349 Pine St, Portland, OR 97035" +206315,Lightning Charging Cable,1,14.95,06/20/19 09:52,"435 Willow St, New York City, NY 10001" +206316,AAA Batteries (4-pack),4,2.99,06/08/19 09:33,"500 Jackson St, Atlanta, GA 30301" +206317,Google Phone,1,600.0,06/29/19 16:42,"512 Elm St, San Francisco, CA 94016" +206317,USB-C Charging Cable,1,11.95,06/29/19 16:42,"512 Elm St, San Francisco, CA 94016" +206318,AAA Batteries (4-pack),2,2.99,06/05/19 14:36,"343 Meadow St, Boston, MA 02215" +206319,AAA Batteries (4-pack),4,2.99,06/12/19 16:20,"248 Hickory St, San Francisco, CA 94016" +206320,ThinkPad Laptop,1,999.99,06/07/19 16:50,"852 West St, New York City, NY 10001" +206321,Bose SoundSport Headphones,1,99.99,06/21/19 14:28,"729 Lake St, Seattle, WA 98101" +206322,Google Phone,1,600.0,06/23/19 22:14,"221 Willow St, New York City, NY 10001" +206322,Bose SoundSport Headphones,1,99.99,06/23/19 22:14,"221 Willow St, New York City, NY 10001" +206323,Apple Airpods Headphones,1,150.0,06/22/19 11:29,"840 2nd St, Dallas, TX 75001" +206324,AAA Batteries (4-pack),1,2.99,06/14/19 16:50,"426 Wilson St, Seattle, WA 98101" +206325,USB-C Charging Cable,1,11.95,06/17/19 12:00,"557 Spruce St, San Francisco, CA 94016" +206326,Google Phone,1,600.0,06/22/19 15:20,"306 South St, New York City, NY 10001" +206327,Macbook Pro Laptop,1,1700.0,06/17/19 09:06,"429 10th St, New York City, NY 10001" +206328,AAA Batteries (4-pack),3,2.99,06/28/19 19:32,"840 Walnut St, Portland, OR 97035" +206329,Macbook Pro Laptop,1,1700.0,06/06/19 15:56,"65 2nd St, San Francisco, CA 94016" +206330,ThinkPad Laptop,1,999.99,06/11/19 15:49,"798 Chestnut St, Boston, MA 02215" +206331,Lightning Charging Cable,1,14.95,06/15/19 20:18,"909 7th St, Seattle, WA 98101" +206332,Apple Airpods Headphones,1,150.0,06/21/19 20:43,"518 Maple St, Dallas, TX 75001" +206333,AAA Batteries (4-pack),1,2.99,06/13/19 13:56,"736 Main St, Boston, MA 02215" +206334,Bose SoundSport Headphones,1,99.99,06/27/19 12:16,"337 12th St, Atlanta, GA 30301" +206335,AA Batteries (4-pack),1,3.84,06/04/19 21:17,"51 2nd St, Los Angeles, CA 90001" +206336,Wired Headphones,1,11.99,06/01/19 17:45,"367 Lincoln St, New York City, NY 10001" +206337,Google Phone,1,600.0,06/01/19 09:49,"356 9th St, Seattle, WA 98101" +206338,Lightning Charging Cable,1,14.95,06/30/19 12:52,"280 Lake St, San Francisco, CA 94016" +206338,27in FHD Monitor,1,149.99,06/30/19 12:52,"280 Lake St, San Francisco, CA 94016" +206339,ThinkPad Laptop,1,999.99,06/11/19 10:00,"324 Walnut St, Dallas, TX 75001" +206340,Apple Airpods Headphones,1,150.0,06/04/19 19:59,"529 12th St, Dallas, TX 75001" +206341,Macbook Pro Laptop,1,1700.0,06/14/19 13:33,"2 1st St, Seattle, WA 98101" +206342,Wired Headphones,1,11.99,06/29/19 20:07,"845 14th St, Atlanta, GA 30301" +206343,Lightning Charging Cable,1,14.95,06/26/19 11:20,"602 Sunset St, Dallas, TX 75001" +206344,Bose SoundSport Headphones,1,99.99,06/11/19 17:36,"447 5th St, New York City, NY 10001" +206345,Bose SoundSport Headphones,1,99.99,06/20/19 15:13,"225 Johnson St, Los Angeles, CA 90001" +206346,AA Batteries (4-pack),1,3.84,06/09/19 08:23,"911 Washington St, Atlanta, GA 30301" +206347,Macbook Pro Laptop,1,1700.0,06/04/19 15:56,"523 Jackson St, Dallas, TX 75001" +206348,USB-C Charging Cable,1,11.95,06/30/19 10:38,"537 6th St, San Francisco, CA 94016" +206349,USB-C Charging Cable,1,11.95,06/11/19 11:21,"959 9th St, Seattle, WA 98101" +206350,USB-C Charging Cable,1,11.95,06/20/19 12:15,"381 6th St, New York City, NY 10001" +206350,Bose SoundSport Headphones,1,99.99,06/20/19 12:15,"381 6th St, New York City, NY 10001" +206351,Bose SoundSport Headphones,1,99.99,06/21/19 09:11,"556 Jackson St, San Francisco, CA 94016" +206352,USB-C Charging Cable,1,11.95,06/22/19 14:30,"974 Hill St, San Francisco, CA 94016" +206353,20in Monitor,1,109.99,06/10/19 19:48,"971 Meadow St, New York City, NY 10001" +206354,Apple Airpods Headphones,1,150.0,06/06/19 20:01,"22 Adams St, Los Angeles, CA 90001" +206355,Wired Headphones,1,11.99,06/13/19 11:08,"746 Center St, Los Angeles, CA 90001" +206356,Wired Headphones,1,11.99,06/02/19 17:27,"158 1st St, Austin, TX 73301" +206357,AA Batteries (4-pack),1,3.84,06/07/19 10:07,"16 River St, Portland, OR 97035" +206358,AA Batteries (4-pack),1,3.84,06/30/19 12:18,"503 South St, New York City, NY 10001" +206359,Lightning Charging Cable,1,14.95,06/21/19 18:35,"987 West St, San Francisco, CA 94016" +206360,Apple Airpods Headphones,1,150.0,06/13/19 20:01,"702 Lake St, Boston, MA 02215" +206361,34in Ultrawide Monitor,1,379.99,06/24/19 15:27,"549 Forest St, San Francisco, CA 94016" +206362,Lightning Charging Cable,1,14.95,06/22/19 21:54,"261 Lakeview St, Los Angeles, CA 90001" +206363,27in 4K Gaming Monitor,1,389.99,06/02/19 16:02,"423 Sunset St, Boston, MA 02215" +206364,Bose SoundSport Headphones,1,99.99,06/13/19 01:31,"693 Cedar St, Los Angeles, CA 90001" +206365,Bose SoundSport Headphones,1,99.99,06/12/19 17:56,"667 Elm St, Los Angeles, CA 90001" +206366,Google Phone,1,600.0,06/10/19 22:12,"265 7th St, Los Angeles, CA 90001" +206367,27in 4K Gaming Monitor,1,389.99,06/20/19 22:07,"801 Cherry St, San Francisco, CA 94016" +206368,AAA Batteries (4-pack),1,2.99,06/13/19 18:49,"455 13th St, Austin, TX 73301" +206369,Lightning Charging Cable,1,14.95,06/17/19 00:01,"720 West St, New York City, NY 10001" +206370,Apple Airpods Headphones,2,150.0,06/18/19 21:08,"605 Dogwood St, New York City, NY 10001" +206371,Bose SoundSport Headphones,1,99.99,06/29/19 13:39,"97 River St, Portland, ME 04101" +206372,Lightning Charging Cable,1,14.95,06/24/19 11:36,"947 1st St, Portland, OR 97035" +206373,27in 4K Gaming Monitor,1,389.99,06/20/19 00:35,"878 Willow St, Los Angeles, CA 90001" +206374,Google Phone,1,600.0,06/04/19 14:28,"466 Jefferson St, San Francisco, CA 94016" +206375,Bose SoundSport Headphones,1,99.99,06/07/19 08:38,"709 Meadow St, Portland, OR 97035" +206376,Lightning Charging Cable,1,14.95,06/14/19 10:54,"685 7th St, San Francisco, CA 94016" +206377,AAA Batteries (4-pack),1,2.99,06/04/19 13:37,"423 Lakeview St, New York City, NY 10001" +206378,USB-C Charging Cable,1,11.95,06/23/19 00:05,"227 Walnut St, San Francisco, CA 94016" +206379,Wired Headphones,1,11.99,06/19/19 22:50,"747 Walnut St, New York City, NY 10001" +206380,ThinkPad Laptop,1,999.99,06/11/19 19:08,"988 Willow St, Austin, TX 73301" +206381,AAA Batteries (4-pack),1,2.99,06/22/19 07:19,"664 Spruce St, San Francisco, CA 94016" +206382,iPhone,1,700.0,06/02/19 09:31,"876 8th St, San Francisco, CA 94016" +206382,Apple Airpods Headphones,1,150.0,06/02/19 09:31,"876 8th St, San Francisco, CA 94016" +206383,AA Batteries (4-pack),1,3.84,06/17/19 00:01,"909 Johnson St, Atlanta, GA 30301" +206384,AA Batteries (4-pack),1,3.84,06/12/19 14:00,"867 River St, Austin, TX 73301" +206385,Apple Airpods Headphones,1,150.0,06/15/19 21:28,"174 Johnson St, Atlanta, GA 30301" +206386,Bose SoundSport Headphones,1,99.99,06/03/19 14:15,"190 Jefferson St, San Francisco, CA 94016" +206387,AA Batteries (4-pack),1,3.84,06/24/19 15:40,"951 Sunset St, Boston, MA 02215" +206388,Lightning Charging Cable,1,14.95,06/15/19 21:58,"631 Johnson St, San Francisco, CA 94016" +206389,27in FHD Monitor,1,149.99,06/06/19 19:55,"17 North St, Portland, OR 97035" +206390,Google Phone,1,600.0,06/04/19 10:49,"575 Willow St, Seattle, WA 98101" +206390,USB-C Charging Cable,1,11.95,06/04/19 10:49,"575 Willow St, Seattle, WA 98101" +206391,USB-C Charging Cable,1,11.95,06/23/19 17:36,"336 Wilson St, Atlanta, GA 30301" +206392,Lightning Charging Cable,1,14.95,06/30/19 16:28,"812 Lincoln St, Seattle, WA 98101" +206393,AAA Batteries (4-pack),1,2.99,06/26/19 23:19,"402 5th St, New York City, NY 10001" +206394,iPhone,1,700.0,06/06/19 21:23,"175 Hill St, Austin, TX 73301" +206395,AAA Batteries (4-pack),4,2.99,06/13/19 14:01,"358 Madison St, San Francisco, CA 94016" +206396,Lightning Charging Cable,1,14.95,06/09/19 12:53,"338 11th St, Portland, ME 04101" +206397,Bose SoundSport Headphones,1,99.99,06/13/19 14:19,"900 Center St, Seattle, WA 98101" +206398,AA Batteries (4-pack),1,3.84,06/13/19 17:18,"125 Jefferson St, San Francisco, CA 94016" +206399,Google Phone,1,600.0,06/27/19 11:16,"587 Dogwood St, San Francisco, CA 94016" +206399,USB-C Charging Cable,1,11.95,06/27/19 11:16,"587 Dogwood St, San Francisco, CA 94016" +206400,Apple Airpods Headphones,1,150.0,06/27/19 15:42,"851 10th St, Atlanta, GA 30301" +206401,Wired Headphones,1,11.99,06/25/19 22:31,"895 11th St, San Francisco, CA 94016" +206402,iPhone,1,700.0,06/20/19 18:38,"614 Johnson St, San Francisco, CA 94016" +206403,Apple Airpods Headphones,1,150.0,06/03/19 08:55,"741 Jackson St, Portland, OR 97035" +206404,Wired Headphones,1,11.99,06/13/19 14:49,"750 4th St, San Francisco, CA 94016" +206405,Bose SoundSport Headphones,1,99.99,06/07/19 11:52,"610 2nd St, San Francisco, CA 94016" +206406,Apple Airpods Headphones,2,150.0,06/26/19 11:30,"543 Spruce St, Atlanta, GA 30301" +206407,Bose SoundSport Headphones,1,99.99,06/15/19 19:18,"196 9th St, Boston, MA 02215" +206408,iPhone,1,700.0,06/03/19 08:44,"26 South St, Boston, MA 02215" +206409,AA Batteries (4-pack),1,3.84,06/13/19 17:08,"229 2nd St, Portland, OR 97035" +206410,Wired Headphones,1,11.99,06/27/19 13:25,"240 Adams St, Los Angeles, CA 90001" +206411,Macbook Pro Laptop,1,1700.0,06/18/19 10:51,"825 North St, Boston, MA 02215" +206412,USB-C Charging Cable,1,11.95,06/07/19 17:59,"429 Walnut St, Dallas, TX 75001" +206413,iPhone,1,700.0,06/27/19 10:45,"962 12th St, New York City, NY 10001" +206413,Lightning Charging Cable,1,14.95,06/27/19 10:45,"962 12th St, New York City, NY 10001" +206414,Wired Headphones,1,11.99,06/13/19 21:37,"658 Elm St, Boston, MA 02215" +206415,Lightning Charging Cable,1,14.95,06/28/19 00:43,"33 Pine St, New York City, NY 10001" +206416,Lightning Charging Cable,1,14.95,06/10/19 22:12,"539 Pine St, Portland, OR 97035" +206417,AA Batteries (4-pack),1,3.84,06/21/19 13:12,"138 Johnson St, New York City, NY 10001" +206418,AAA Batteries (4-pack),3,2.99,06/18/19 11:35,"220 8th St, San Francisco, CA 94016" +206419,AA Batteries (4-pack),1,3.84,06/26/19 13:35,"382 7th St, New York City, NY 10001" +206420,AA Batteries (4-pack),1,3.84,06/14/19 08:16,"527 Hickory St, Los Angeles, CA 90001" +206421,AAA Batteries (4-pack),1,2.99,06/04/19 21:45,"473 Center St, Dallas, TX 75001" +206422,USB-C Charging Cable,1,11.95,06/09/19 20:50,"274 Chestnut St, Dallas, TX 75001" +206423,Wired Headphones,1,11.99,06/19/19 16:18,"19 Washington St, Austin, TX 73301" +206424,Lightning Charging Cable,1,14.95,06/23/19 17:54,"326 14th St, Los Angeles, CA 90001" +206425,Apple Airpods Headphones,1,150.0,06/11/19 12:44,"32 Highland St, Los Angeles, CA 90001" +206426,Apple Airpods Headphones,1,150.0,06/30/19 13:22,"490 Cedar St, Los Angeles, CA 90001" +206427,USB-C Charging Cable,1,11.95,06/30/19 22:08,"282 Main St, Los Angeles, CA 90001" +206428,Apple Airpods Headphones,1,150.0,06/21/19 10:52,"764 Johnson St, Boston, MA 02215" +206429,Vareebadd Phone,1,400.0,06/14/19 11:50,"667 Hill St, Los Angeles, CA 90001" +206430,Lightning Charging Cable,1,14.95,06/22/19 18:27,"421 11th St, Los Angeles, CA 90001" +206431,AAA Batteries (4-pack),1,2.99,06/13/19 09:58,"312 Lake St, Dallas, TX 75001" +206432,27in FHD Monitor,1,149.99,06/03/19 22:47,"710 Cherry St, San Francisco, CA 94016" +206433,USB-C Charging Cable,1,11.95,06/25/19 10:57,"736 Hill St, San Francisco, CA 94016" +206434,Apple Airpods Headphones,1,150.0,06/01/19 18:53,"150 Lakeview St, Los Angeles, CA 90001" +206435,Lightning Charging Cable,1,14.95,06/02/19 01:06,"937 West St, Seattle, WA 98101" +206436,34in Ultrawide Monitor,1,379.99,06/22/19 15:19,"960 12th St, San Francisco, CA 94016" +206437,Bose SoundSport Headphones,1,99.99,06/04/19 21:49,"373 Wilson St, San Francisco, CA 94016" +206438,Wired Headphones,1,11.99,06/24/19 17:32,"147 Maple St, Seattle, WA 98101" +206439,ThinkPad Laptop,1,999.99,06/10/19 14:58,"32 Center St, San Francisco, CA 94016" +206439,USB-C Charging Cable,1,11.95,06/10/19 14:58,"32 Center St, San Francisco, CA 94016" +206440,iPhone,1,700.0,06/22/19 13:51,"698 Main St, San Francisco, CA 94016" +206440,Lightning Charging Cable,1,14.95,06/22/19 13:51,"698 Main St, San Francisco, CA 94016" +206441,27in FHD Monitor,1,149.99,06/25/19 13:33,"579 Church St, Portland, OR 97035" +206442,AAA Batteries (4-pack),2,2.99,06/23/19 05:16,"624 Walnut St, New York City, NY 10001" +206443,Lightning Charging Cable,1,14.95,06/06/19 09:02,"350 Washington St, San Francisco, CA 94016" +206444,Lightning Charging Cable,1,14.95,06/27/19 23:49,"730 Church St, New York City, NY 10001" +206445,34in Ultrawide Monitor,1,379.99,06/18/19 16:27,"500 14th St, New York City, NY 10001" +206446,AA Batteries (4-pack),1,3.84,06/08/19 12:51,"646 Dogwood St, Austin, TX 73301" +206447,USB-C Charging Cable,1,11.95,06/03/19 00:50,"355 Willow St, New York City, NY 10001" +206448,Wired Headphones,1,11.99,06/23/19 10:26,"354 River St, Boston, MA 02215" +206449,AAA Batteries (4-pack),1,2.99,06/18/19 23:30,"936 Spruce St, Boston, MA 02215" +206450,Lightning Charging Cable,1,14.95,06/22/19 19:59,"992 Adams St, Atlanta, GA 30301" +206451,Apple Airpods Headphones,1,150.0,06/03/19 14:05,"261 Willow St, Atlanta, GA 30301" +206452,Vareebadd Phone,1,400.0,06/19/19 23:07,"497 Center St, San Francisco, CA 94016" +206452,Bose SoundSport Headphones,1,99.99,06/19/19 23:07,"497 Center St, San Francisco, CA 94016" +206453,Bose SoundSport Headphones,1,99.99,06/02/19 22:04,"585 Cherry St, Portland, OR 97035" +206454,Vareebadd Phone,1,400.0,06/18/19 07:18,"543 2nd St, Seattle, WA 98101" +206455,AAA Batteries (4-pack),1,2.99,06/23/19 18:20,"146 North St, San Francisco, CA 94016" +206456,Bose SoundSport Headphones,1,99.99,06/25/19 07:28,"594 Hickory St, San Francisco, CA 94016" +206457,27in 4K Gaming Monitor,1,389.99,06/15/19 01:07,"970 14th St, Seattle, WA 98101" +206458,Wired Headphones,2,11.99,06/16/19 08:10,"618 13th St, Austin, TX 73301" +206459,AAA Batteries (4-pack),2,2.99,06/04/19 14:03,"681 Washington St, Los Angeles, CA 90001" +206460,AAA Batteries (4-pack),1,2.99,06/15/19 21:26,"45 Walnut St, Boston, MA 02215" +206461,AA Batteries (4-pack),2,3.84,06/29/19 17:32,"836 Forest St, San Francisco, CA 94016" +206462,Bose SoundSport Headphones,1,99.99,06/30/19 21:09,"701 7th St, Los Angeles, CA 90001" +206463,AA Batteries (4-pack),2,3.84,06/14/19 23:05,"531 9th St, Seattle, WA 98101" +206464,USB-C Charging Cable,1,11.95,06/26/19 10:24,"621 Church St, Boston, MA 02215" +206465,Flatscreen TV,1,300.0,06/18/19 18:41,"854 West St, New York City, NY 10001" +206466,Apple Airpods Headphones,1,150.0,06/01/19 17:40,"219 South St, Boston, MA 02215" +206467,AA Batteries (4-pack),2,3.84,06/16/19 10:34,"564 Meadow St, Dallas, TX 75001" +206468,AA Batteries (4-pack),1,3.84,06/30/19 11:13,"587 13th St, Atlanta, GA 30301" +206469,Lightning Charging Cable,2,14.95,06/27/19 09:51,"845 5th St, San Francisco, CA 94016" +206470,AA Batteries (4-pack),1,3.84,06/05/19 08:41,"556 6th St, Boston, MA 02215" +206471,20in Monitor,1,109.99,06/30/19 14:20,"568 7th St, San Francisco, CA 94016" +206472,iPhone,1,700.0,06/14/19 23:39,"597 River St, New York City, NY 10001" +206473,Wired Headphones,1,11.99,06/09/19 14:53,"687 Jackson St, New York City, NY 10001" +206474,Bose SoundSport Headphones,1,99.99,06/22/19 11:41,"813 10th St, New York City, NY 10001" +206475,Lightning Charging Cable,2,14.95,06/16/19 00:06,"493 West St, San Francisco, CA 94016" +206476,Wired Headphones,1,11.99,06/05/19 13:06,"13 Jefferson St, New York City, NY 10001" +206477,AA Batteries (4-pack),4,3.84,06/13/19 19:02,"952 Walnut St, San Francisco, CA 94016" +206478,iPhone,1,700.0,06/18/19 15:24,"181 1st St, Seattle, WA 98101" +206479,USB-C Charging Cable,1,11.95,06/21/19 19:52,"915 Ridge St, Boston, MA 02215" +206480,Bose SoundSport Headphones,1,99.99,06/23/19 01:43,"396 River St, Atlanta, GA 30301" +206481,27in 4K Gaming Monitor,1,389.99,06/21/19 19:20,"123 Chestnut St, San Francisco, CA 94016" +206482,USB-C Charging Cable,1,11.95,06/19/19 12:35,"342 4th St, New York City, NY 10001" +206483,20in Monitor,1,109.99,06/03/19 18:17,"466 Church St, San Francisco, CA 94016" +206484,Lightning Charging Cable,1,14.95,06/23/19 13:04,"839 Washington St, Portland, OR 97035" +206485,USB-C Charging Cable,1,11.95,06/23/19 21:58,"546 14th St, Portland, OR 97035" +206486,AAA Batteries (4-pack),1,2.99,06/20/19 17:32,"486 1st St, New York City, NY 10001" +206487,Macbook Pro Laptop,1,1700.0,06/12/19 19:55,"897 Willow St, New York City, NY 10001" +206488,Lightning Charging Cable,1,14.95,06/05/19 14:32,"890 Adams St, Seattle, WA 98101" +206489,AAA Batteries (4-pack),1,2.99,06/11/19 23:11,"64 Dogwood St, Los Angeles, CA 90001" +206490,USB-C Charging Cable,1,11.95,06/16/19 15:24,"393 Wilson St, San Francisco, CA 94016" +206491,Macbook Pro Laptop,1,1700.0,06/16/19 16:24,"156 Main St, New York City, NY 10001" +206492,27in FHD Monitor,1,149.99,06/27/19 00:05,"292 12th St, Portland, OR 97035" +206493,Wired Headphones,1,11.99,06/24/19 13:20,"669 Meadow St, Dallas, TX 75001" +206494,Lightning Charging Cable,2,14.95,06/30/19 12:09,"27 Park St, Atlanta, GA 30301" +206495,iPhone,1,700.0,06/27/19 17:15,"245 Maple St, San Francisco, CA 94016" +206496,Apple Airpods Headphones,1,150.0,06/20/19 07:24,"333 Forest St, Boston, MA 02215" +206497,Lightning Charging Cable,1,14.95,06/20/19 00:55,"531 2nd St, New York City, NY 10001" +206498,Wired Headphones,1,11.99,06/10/19 11:55,"48 11th St, Dallas, TX 75001" +206499,Wired Headphones,1,11.99,06/26/19 10:10,"5 Cedar St, San Francisco, CA 94016" +206500,Apple Airpods Headphones,1,150.0,06/09/19 14:11,"261 Wilson St, Los Angeles, CA 90001" +206501,AA Batteries (4-pack),1,3.84,06/09/19 13:57,"921 Forest St, Austin, TX 73301" +206502,AA Batteries (4-pack),1,3.84,06/22/19 00:30,"243 Main St, San Francisco, CA 94016" +206503,34in Ultrawide Monitor,1,379.99,06/04/19 12:59,"211 13th St, Austin, TX 73301" +206504,Lightning Charging Cable,1,14.95,06/30/19 18:57,"4 Walnut St, Atlanta, GA 30301" +206505,34in Ultrawide Monitor,1,379.99,06/03/19 10:10,"334 Sunset St, Austin, TX 73301" +206506,Flatscreen TV,1,300.0,06/17/19 13:11,"186 Elm St, Atlanta, GA 30301" +206507,Lightning Charging Cable,1,14.95,06/26/19 20:07,"227 Cedar St, New York City, NY 10001" +206508,AAA Batteries (4-pack),2,2.99,06/09/19 23:56,"657 Jackson St, San Francisco, CA 94016" +206509,27in 4K Gaming Monitor,1,389.99,06/17/19 16:21,"764 Highland St, Seattle, WA 98101" +206510,Wired Headphones,1,11.99,06/13/19 13:44,"878 Lincoln St, Atlanta, GA 30301" +206511,Bose SoundSport Headphones,1,99.99,06/28/19 17:37,"127 Forest St, Los Angeles, CA 90001" +206512,Apple Airpods Headphones,1,150.0,06/08/19 15:07,"636 Maple St, San Francisco, CA 94016" +206513,Google Phone,1,600.0,06/25/19 18:45,"615 14th St, San Francisco, CA 94016" +206514,Flatscreen TV,1,300.0,06/09/19 18:41,"539 Meadow St, New York City, NY 10001" +206515,Lightning Charging Cable,1,14.95,06/05/19 12:17,"75 Elm St, San Francisco, CA 94016" +206516,USB-C Charging Cable,1,11.95,06/16/19 09:18,"407 River St, San Francisco, CA 94016" +206517,Bose SoundSport Headphones,1,99.99,06/05/19 13:02,"560 Church St, Atlanta, GA 30301" +206518,Google Phone,1,600.0,06/06/19 13:05,"213 13th St, New York City, NY 10001" +206518,Wired Headphones,1,11.99,06/06/19 13:05,"213 13th St, New York City, NY 10001" +206519,Apple Airpods Headphones,1,150.0,06/16/19 06:33,"587 8th St, Portland, OR 97035" +206520,USB-C Charging Cable,1,11.95,06/26/19 20:12,"777 Walnut St, Los Angeles, CA 90001" +206521,27in 4K Gaming Monitor,1,389.99,06/19/19 22:43,"558 8th St, Boston, MA 02215" +206522,AA Batteries (4-pack),1,3.84,06/06/19 21:20,"146 5th St, Seattle, WA 98101" +206523,AAA Batteries (4-pack),2,2.99,06/01/19 11:28,"396 14th St, Austin, TX 73301" +206524,Macbook Pro Laptop,1,1700.0,06/30/19 10:33,"310 4th St, San Francisco, CA 94016" +206525,AAA Batteries (4-pack),2,2.99,06/28/19 14:18,"762 Walnut St, Atlanta, GA 30301" +206526,Wired Headphones,1,11.99,06/24/19 19:45,"944 Johnson St, Seattle, WA 98101" +206527,AA Batteries (4-pack),1,3.84,06/05/19 17:17,"362 Cherry St, San Francisco, CA 94016" +206528,Google Phone,1,600.0,06/15/19 13:57,"75 Lincoln St, Los Angeles, CA 90001" +206529,iPhone,1,700.0,06/10/19 17:47,"685 Willow St, Portland, OR 97035" +206530,Lightning Charging Cable,1,14.95,06/09/19 01:41,"988 12th St, New York City, NY 10001" +206531,27in FHD Monitor,1,149.99,06/13/19 13:20,"15 Washington St, San Francisco, CA 94016" +206532,Wired Headphones,1,11.99,06/27/19 23:31,"783 Forest St, Atlanta, GA 30301" +206533,USB-C Charging Cable,1,11.95,06/11/19 20:29,"618 Maple St, Austin, TX 73301" +206534,34in Ultrawide Monitor,1,379.99,06/06/19 11:59,"948 13th St, Austin, TX 73301" +206535,AAA Batteries (4-pack),1,2.99,06/24/19 22:01,"501 Main St, San Francisco, CA 94016" +206536,27in 4K Gaming Monitor,1,389.99,06/15/19 22:26,"135 Adams St, Los Angeles, CA 90001" +206537,34in Ultrawide Monitor,1,379.99,06/10/19 06:48,"464 Chestnut St, New York City, NY 10001" +206538,AA Batteries (4-pack),1,3.84,06/23/19 16:17,"235 Park St, Los Angeles, CA 90001" +206539,AA Batteries (4-pack),1,3.84,06/12/19 00:09,"276 Wilson St, Portland, ME 04101" +206540,LG Washing Machine,1,600.0,06/12/19 21:54,"241 Cherry St, Los Angeles, CA 90001" +206541,ThinkPad Laptop,1,999.99,06/23/19 16:59,"719 Washington St, Boston, MA 02215" +206542,AA Batteries (4-pack),1,3.84,06/10/19 15:11,"823 7th St, San Francisco, CA 94016" +206542,AAA Batteries (4-pack),1,2.99,06/10/19 15:11,"823 7th St, San Francisco, CA 94016" +206543,Lightning Charging Cable,1,14.95,06/07/19 18:23,"26 Hickory St, San Francisco, CA 94016" +206544,AA Batteries (4-pack),1,3.84,06/07/19 12:18,"863 North St, Dallas, TX 75001" +206545,34in Ultrawide Monitor,1,379.99,06/25/19 18:46,"572 13th St, Dallas, TX 75001" +206546,Lightning Charging Cable,2,14.95,06/23/19 16:39,"764 1st St, Boston, MA 02215" +206547,Vareebadd Phone,1,400.0,06/22/19 22:38,"140 Wilson St, Boston, MA 02215" +206548,Vareebadd Phone,1,400.0,06/23/19 14:04,"262 Wilson St, Dallas, TX 75001" +206549,Lightning Charging Cable,1,14.95,06/21/19 12:54,"66 Madison St, San Francisco, CA 94016" +206550,USB-C Charging Cable,1,11.95,06/07/19 22:14,"843 Washington St, Boston, MA 02215" +206551,Bose SoundSport Headphones,1,99.99,06/23/19 11:23,"437 Forest St, New York City, NY 10001" +206552,ThinkPad Laptop,1,999.99,06/23/19 13:30,"745 Highland St, Boston, MA 02215" +206553,Google Phone,1,600.0,06/22/19 14:49,"744 Maple St, Los Angeles, CA 90001" +206554,Apple Airpods Headphones,1,150.0,06/25/19 22:19,"618 Hickory St, Seattle, WA 98101" +206555,USB-C Charging Cable,1,11.95,06/11/19 04:53,"68 Elm St, Dallas, TX 75001" +206556,27in 4K Gaming Monitor,1,389.99,06/12/19 08:44,"294 Jackson St, San Francisco, CA 94016" +206557,USB-C Charging Cable,1,11.95,06/13/19 14:29,"184 Park St, Los Angeles, CA 90001" +206558,Bose SoundSport Headphones,1,99.99,06/04/19 06:41,"178 4th St, San Francisco, CA 94016" +206559,Wired Headphones,1,11.99,06/09/19 13:55,"65 Jackson St, Atlanta, GA 30301" +206560,USB-C Charging Cable,1,11.95,06/24/19 20:36,"435 Walnut St, Boston, MA 02215" +206561,Lightning Charging Cable,1,14.95,06/26/19 09:13,"220 Walnut St, Atlanta, GA 30301" +206562,Wired Headphones,1,11.99,06/02/19 21:41,"919 Chestnut St, New York City, NY 10001" +206563,AAA Batteries (4-pack),1,2.99,06/25/19 18:05,"669 Center St, New York City, NY 10001" +206564,Apple Airpods Headphones,1,150.0,06/27/19 06:24,"199 Walnut St, Los Angeles, CA 90001" +206565,34in Ultrawide Monitor,1,379.99,06/01/19 19:32,"170 Highland St, Boston, MA 02215" +206566,Lightning Charging Cable,1,14.95,06/14/19 16:52,"621 Center St, Los Angeles, CA 90001" +206567,USB-C Charging Cable,1,11.95,06/05/19 06:33,"558 Meadow St, New York City, NY 10001" +206568,USB-C Charging Cable,1,11.95,06/02/19 07:22,"548 Ridge St, Boston, MA 02215" +206569,Flatscreen TV,1,300.0,06/11/19 19:01,"189 Elm St, San Francisco, CA 94016" +206570,USB-C Charging Cable,1,11.95,06/04/19 12:07,"103 Pine St, New York City, NY 10001" +206571,27in 4K Gaming Monitor,1,389.99,06/19/19 07:53,"131 Hickory St, Seattle, WA 98101" +206572,Lightning Charging Cable,1,14.95,06/12/19 11:24,"26 Washington St, San Francisco, CA 94016" +206573,20in Monitor,1,109.99,06/07/19 14:47,"432 Jackson St, Portland, OR 97035" +206574,AAA Batteries (4-pack),4,2.99,06/18/19 13:49,"154 Pine St, Atlanta, GA 30301" +206575,Lightning Charging Cable,1,14.95,06/26/19 19:34,"260 Hill St, San Francisco, CA 94016" +206576,27in 4K Gaming Monitor,1,389.99,06/11/19 23:45,"156 Pine St, Los Angeles, CA 90001" +206577,USB-C Charging Cable,1,11.95,06/24/19 19:02,"317 Walnut St, New York City, NY 10001" +206578,AAA Batteries (4-pack),3,2.99,06/16/19 13:30,"973 5th St, San Francisco, CA 94016" +206579,USB-C Charging Cable,1,11.95,06/29/19 22:29,"940 West St, Atlanta, GA 30301" +206580,AAA Batteries (4-pack),2,2.99,06/23/19 09:15,"282 8th St, Atlanta, GA 30301" +206581,Vareebadd Phone,1,400.0,06/29/19 09:05,"915 North St, New York City, NY 10001" +206581,USB-C Charging Cable,3,11.95,06/29/19 09:05,"915 North St, New York City, NY 10001" +206582,USB-C Charging Cable,1,11.95,06/24/19 11:05,"544 8th St, Austin, TX 73301" +206583,Lightning Charging Cable,1,14.95,06/02/19 10:33,"635 North St, San Francisco, CA 94016" +206584,AA Batteries (4-pack),2,3.84,06/24/19 22:09,"599 Washington St, San Francisco, CA 94016" +206585,20in Monitor,1,109.99,06/26/19 19:06,"721 Center St, New York City, NY 10001" +206586,USB-C Charging Cable,1,11.95,06/17/19 10:02,"954 Walnut St, Atlanta, GA 30301" +206587,AAA Batteries (4-pack),1,2.99,06/27/19 07:00,"737 6th St, New York City, NY 10001" +206588,Apple Airpods Headphones,1,150.0,06/12/19 11:54,"655 Madison St, New York City, NY 10001" +206589,AAA Batteries (4-pack),2,2.99,06/19/19 01:12,"779 11th St, Seattle, WA 98101" +206590,Lightning Charging Cable,1,14.95,06/19/19 15:08,"43 6th St, Seattle, WA 98101" +206591,Flatscreen TV,1,300.0,06/21/19 10:24,"770 Dogwood St, San Francisco, CA 94016" +206592,Lightning Charging Cable,1,14.95,06/04/19 20:21,"21 13th St, Dallas, TX 75001" +206593,Bose SoundSport Headphones,1,99.99,06/29/19 16:55,"400 Main St, San Francisco, CA 94016" +206594,ThinkPad Laptop,1,999.99,06/15/19 08:29,"40 1st St, Atlanta, GA 30301" +206595,iPhone,1,700.0,06/07/19 16:55,"610 6th St, Seattle, WA 98101" +206596,Macbook Pro Laptop,1,1700.0,06/28/19 12:55,"22 9th St, New York City, NY 10001" +206597,AAA Batteries (4-pack),4,2.99,06/11/19 13:50,"532 River St, New York City, NY 10001" +206598,AA Batteries (4-pack),1,3.84,06/24/19 21:46,"906 14th St, San Francisco, CA 94016" +206599,Lightning Charging Cable,1,14.95,06/02/19 19:32,"526 Jackson St, Seattle, WA 98101" +206600,Wired Headphones,1,11.99,06/12/19 23:03,"365 8th St, New York City, NY 10001" +206601,USB-C Charging Cable,1,11.95,06/22/19 09:12,"441 Sunset St, San Francisco, CA 94016" +206602,USB-C Charging Cable,1,11.95,06/08/19 13:32,"381 Jackson St, Boston, MA 02215" +206603,AA Batteries (4-pack),1,3.84,06/14/19 17:18,"685 Cedar St, Seattle, WA 98101" +206604,Wired Headphones,2,11.99,06/18/19 18:29,"531 Dogwood St, New York City, NY 10001" +206605,27in FHD Monitor,1,149.99,06/19/19 18:14,"286 Hickory St, New York City, NY 10001" +206606,USB-C Charging Cable,1,11.95,06/13/19 13:52,"663 6th St, Dallas, TX 75001" +206607,Google Phone,1,600.0,06/03/19 10:13,"256 Washington St, Seattle, WA 98101" +206608,Bose SoundSport Headphones,1,99.99,06/03/19 09:24,"119 Main St, Dallas, TX 75001" +206609,ThinkPad Laptop,1,999.99,06/14/19 19:52,"192 Lincoln St, Los Angeles, CA 90001" +206610,AA Batteries (4-pack),1,3.84,06/23/19 13:42,"7 Lake St, Dallas, TX 75001" +206611,Apple Airpods Headphones,1,150.0,06/12/19 20:31,"142 14th St, Atlanta, GA 30301" +206612,27in FHD Monitor,1,149.99,06/16/19 13:44,"778 14th St, Los Angeles, CA 90001" +206613,Lightning Charging Cable,1,14.95,06/18/19 21:37,"967 2nd St, San Francisco, CA 94016" +206614,Apple Airpods Headphones,1,150.0,06/04/19 20:24,"375 Walnut St, Dallas, TX 75001" +206615,LG Washing Machine,1,600.0,06/09/19 17:49,"824 Adams St, San Francisco, CA 94016" +206616,USB-C Charging Cable,1,11.95,06/03/19 09:29,"557 Lincoln St, Seattle, WA 98101" +206617,Lightning Charging Cable,1,14.95,06/21/19 18:59,"779 Cedar St, Seattle, WA 98101" +206617,Bose SoundSport Headphones,1,99.99,06/21/19 18:59,"779 Cedar St, Seattle, WA 98101" +206618,Lightning Charging Cable,1,14.95,06/05/19 19:05,"202 12th St, Boston, MA 02215" +206619,AAA Batteries (4-pack),1,2.99,06/18/19 09:37,"197 Maple St, Atlanta, GA 30301" +206620,AA Batteries (4-pack),1,3.84,06/08/19 09:36,"990 River St, San Francisco, CA 94016" +206621,AAA Batteries (4-pack),1,2.99,06/28/19 12:00,"819 Church St, Boston, MA 02215" +206622,USB-C Charging Cable,2,11.95,06/28/19 13:39,"702 1st St, San Francisco, CA 94016" +206623,Wired Headphones,1,11.99,06/20/19 15:42,"827 Maple St, San Francisco, CA 94016" +206624,Apple Airpods Headphones,1,150.0,06/26/19 15:57,"155 Hickory St, New York City, NY 10001" +206625,USB-C Charging Cable,1,11.95,06/04/19 18:52,"890 1st St, Austin, TX 73301" +206626,AA Batteries (4-pack),1,3.84,06/30/19 17:36,"171 14th St, Los Angeles, CA 90001" +206627,USB-C Charging Cable,1,11.95,06/07/19 19:13,"295 Jackson St, San Francisco, CA 94016" +206628,Google Phone,1,600.0,06/18/19 13:48,"572 6th St, Seattle, WA 98101" +206628,Wired Headphones,1,11.99,06/18/19 13:48,"572 6th St, Seattle, WA 98101" +206629,Apple Airpods Headphones,1,150.0,06/24/19 20:31,"918 Dogwood St, Boston, MA 02215" +206630,iPhone,1,700.0,06/21/19 09:18,"174 Sunset St, Boston, MA 02215" +206631,Flatscreen TV,1,300.0,06/01/19 11:17,"262 Meadow St, Dallas, TX 75001" +206632,AA Batteries (4-pack),1,3.84,06/04/19 15:38,"882 Sunset St, San Francisco, CA 94016" +206633,USB-C Charging Cable,1,11.95,06/20/19 16:03,"104 South St, Dallas, TX 75001" +206634,Flatscreen TV,1,300.0,06/03/19 21:01,"479 1st St, Portland, OR 97035" +206635,AAA Batteries (4-pack),1,2.99,06/30/19 18:25,"503 Chestnut St, Dallas, TX 75001" +206636,Macbook Pro Laptop,1,1700.0,06/03/19 17:50,"217 West St, Seattle, WA 98101" +206636,Flatscreen TV,1,300.0,06/03/19 17:50,"217 West St, Seattle, WA 98101" +206637,USB-C Charging Cable,1,11.95,06/28/19 15:54,"797 Church St, New York City, NY 10001" +206638,AAA Batteries (4-pack),1,2.99,06/24/19 20:03,"551 Lake St, New York City, NY 10001" +206639,Wired Headphones,1,11.99,06/06/19 02:56,"513 Hill St, Atlanta, GA 30301" +206640,Lightning Charging Cable,1,14.95,06/09/19 20:28,"290 4th St, San Francisco, CA 94016" +206641,AA Batteries (4-pack),1,3.84,06/15/19 13:03,"815 Sunset St, Seattle, WA 98101" +206642,34in Ultrawide Monitor,1,379.99,06/11/19 09:34,"839 Jefferson St, Dallas, TX 75001" +206643,27in FHD Monitor,1,149.99,06/13/19 14:23,"877 Adams St, Atlanta, GA 30301" +206644,AA Batteries (4-pack),2,3.84,06/07/19 13:05,"941 13th St, Boston, MA 02215" +206645,20in Monitor,1,109.99,06/24/19 17:26,"535 Meadow St, New York City, NY 10001" +206646,27in 4K Gaming Monitor,1,389.99,06/13/19 21:17,"807 14th St, New York City, NY 10001" +206647,Lightning Charging Cable,1,14.95,06/25/19 07:55,"144 6th St, San Francisco, CA 94016" +206648,Lightning Charging Cable,1,14.95,06/01/19 18:17,"414 Lakeview St, San Francisco, CA 94016" +206649,AA Batteries (4-pack),2,3.84,06/11/19 20:06,"129 Center St, San Francisco, CA 94016" +206650,AAA Batteries (4-pack),1,2.99,06/26/19 18:02,"901 13th St, Atlanta, GA 30301" +206651,AA Batteries (4-pack),1,3.84,06/01/19 19:45,"638 4th St, Atlanta, GA 30301" +206652,Bose SoundSport Headphones,1,99.99,06/03/19 12:43,"108 Hill St, New York City, NY 10001" +206653,AA Batteries (4-pack),1,3.84,06/30/19 11:29,"219 Jackson St, Dallas, TX 75001" +206654,Bose SoundSport Headphones,1,99.99,06/11/19 11:34,"988 8th St, Austin, TX 73301" +206655,USB-C Charging Cable,1,11.95,06/30/19 23:32,"544 Adams St, New York City, NY 10001" +206656,Lightning Charging Cable,1,14.95,06/22/19 17:58,"489 Park St, Los Angeles, CA 90001" +206657,AAA Batteries (4-pack),1,2.99,06/02/19 11:30,"240 Pine St, Los Angeles, CA 90001" +206658,AA Batteries (4-pack),1,3.84,06/25/19 15:05,"798 Lakeview St, San Francisco, CA 94016" +206659,AAA Batteries (4-pack),2,2.99,06/06/19 13:03,"16 Willow St, New York City, NY 10001" +206660,AA Batteries (4-pack),1,3.84,06/20/19 23:00,"40 7th St, New York City, NY 10001" +206661,Lightning Charging Cable,1,14.95,06/28/19 20:28,"638 14th St, San Francisco, CA 94016" +206662,34in Ultrawide Monitor,1,379.99,06/30/19 02:52,"732 Hill St, San Francisco, CA 94016" +206663,20in Monitor,1,109.99,06/02/19 18:07,"88 4th St, Los Angeles, CA 90001" +206663,iPhone,1,700.0,06/02/19 18:07,"88 4th St, Los Angeles, CA 90001" +206664,20in Monitor,1,109.99,06/12/19 09:31,"868 Meadow St, San Francisco, CA 94016" +206665,Google Phone,1,600.0,06/07/19 20:27,"662 Elm St, San Francisco, CA 94016" +206666,Apple Airpods Headphones,1,150.0,06/03/19 16:40,"87 13th St, Seattle, WA 98101" +206667,27in FHD Monitor,1,149.99,06/13/19 23:18,"999 Sunset St, Atlanta, GA 30301" +206668,Wired Headphones,1,11.99,06/19/19 08:26,"363 1st St, Dallas, TX 75001" +206669,Wired Headphones,1,11.99,06/12/19 09:56,"801 Walnut St, San Francisco, CA 94016" +206670,iPhone,1,700.0,06/07/19 14:36,"580 14th St, Los Angeles, CA 90001" +206671,20in Monitor,1,109.99,06/11/19 12:52,"917 Lake St, Portland, ME 04101" +206672,20in Monitor,1,109.99,06/12/19 00:40,"569 River St, Los Angeles, CA 90001" +206673,Apple Airpods Headphones,1,150.0,06/13/19 11:04,"759 Lake St, San Francisco, CA 94016" +206674,20in Monitor,1,109.99,06/15/19 12:57,"852 River St, Seattle, WA 98101" +206675,Wired Headphones,1,11.99,06/10/19 21:48,"791 Ridge St, New York City, NY 10001" +206676,AA Batteries (4-pack),4,3.84,06/22/19 10:29,"669 Lincoln St, New York City, NY 10001" +206677,AA Batteries (4-pack),1,3.84,06/18/19 13:39,"100 Willow St, Seattle, WA 98101" +206678,AA Batteries (4-pack),2,3.84,06/01/19 08:15,"399 1st St, Austin, TX 73301" +206679,Lightning Charging Cable,1,14.95,06/21/19 18:07,"651 Ridge St, San Francisco, CA 94016" +206680,Google Phone,1,600.0,06/29/19 12:10,"227 Adams St, Dallas, TX 75001" +206681,Wired Headphones,1,11.99,06/24/19 16:53,"443 Madison St, Boston, MA 02215" +206682,Bose SoundSport Headphones,1,99.99,06/12/19 07:03,"508 10th St, San Francisco, CA 94016" +206683,Wired Headphones,1,11.99,06/27/19 20:16,"327 Adams St, Los Angeles, CA 90001" +206684,Lightning Charging Cable,1,14.95,06/16/19 18:40,"313 12th St, Los Angeles, CA 90001" +206685,AAA Batteries (4-pack),2,2.99,06/05/19 21:38,"892 Forest St, New York City, NY 10001" +206686,Bose SoundSport Headphones,1,99.99,06/22/19 19:36,"987 North St, New York City, NY 10001" +206687,AA Batteries (4-pack),1,3.84,06/12/19 20:08,"51 Pine St, San Francisco, CA 94016" +206688,ThinkPad Laptop,1,999.99,06/11/19 04:34,"309 Church St, Boston, MA 02215" +206689,Wired Headphones,1,11.99,06/17/19 00:05,"284 9th St, Los Angeles, CA 90001" +206690,Lightning Charging Cable,1,14.95,06/24/19 15:29,"773 Highland St, Los Angeles, CA 90001" +206691,AAA Batteries (4-pack),1,2.99,06/16/19 23:58,"433 Madison St, San Francisco, CA 94016" +206692,iPhone,1,700.0,06/26/19 13:32,"149 Lincoln St, San Francisco, CA 94016" +206693,Google Phone,1,600.0,06/05/19 15:13,"810 2nd St, Seattle, WA 98101" +206693,USB-C Charging Cable,1,11.95,06/05/19 15:13,"810 2nd St, Seattle, WA 98101" +206694,AAA Batteries (4-pack),1,2.99,06/05/19 15:53,"433 Wilson St, Los Angeles, CA 90001" +206695,Apple Airpods Headphones,1,150.0,06/10/19 12:42,"360 Chestnut St, Atlanta, GA 30301" +206696,Wired Headphones,1,11.99,06/22/19 18:09,"21 Highland St, Dallas, TX 75001" +206697,AA Batteries (4-pack),1,3.84,06/08/19 14:15,"316 Lincoln St, San Francisco, CA 94016" +206698,iPhone,1,700.0,06/11/19 21:35,"507 Main St, Boston, MA 02215" +206699,34in Ultrawide Monitor,1,379.99,06/01/19 14:18,"944 2nd St, Austin, TX 73301" +,,,,, +206700,AA Batteries (4-pack),1,3.84,06/25/19 12:24,"139 Spruce St, New York City, NY 10001" +206701,Macbook Pro Laptop,1,1700,06/10/19 22:05,"939 13th St, Atlanta, GA 30301" +206702,20in Monitor,1,109.99,06/22/19 19:40,"489 Chestnut St, Boston, MA 02215" +206703,Apple Airpods Headphones,1,150,06/21/19 22:31,"750 1st St, San Francisco, CA 94016" +206704,34in Ultrawide Monitor,1,379.99,06/02/19 22:18,"409 Park St, San Francisco, CA 94016" +206705,Lightning Charging Cable,1,14.95,06/16/19 10:32,"162 14th St, Dallas, TX 75001" +206706,Bose SoundSport Headphones,1,99.99,06/03/19 10:00,"373 4th St, Los Angeles, CA 90001" +206707,Lightning Charging Cable,1,14.95,06/30/19 12:48,"156 Cherry St, San Francisco, CA 94016" +206708,34in Ultrawide Monitor,1,379.99,06/07/19 00:15,"922 River St, San Francisco, CA 94016" +206709,Lightning Charging Cable,1,14.95,06/13/19 17:10,"424 Sunset St, Boston, MA 02215" +206709,Google Phone,1,600,06/13/19 17:10,"424 Sunset St, Boston, MA 02215" +206710,27in FHD Monitor,1,149.99,06/09/19 15:01,"744 10th St, Los Angeles, CA 90001" +206711,Lightning Charging Cable,2,14.95,06/20/19 15:27,"685 Maple St, New York City, NY 10001" +206712,Apple Airpods Headphones,1,150,06/16/19 23:58,"90 Walnut St, Austin, TX 73301" +206713,27in 4K Gaming Monitor,1,389.99,06/19/19 09:55,"712 Jackson St, Boston, MA 02215" +206714,Bose SoundSport Headphones,1,99.99,06/18/19 19:54,"564 12th St, San Francisco, CA 94016" +206715,Lightning Charging Cable,1,14.95,06/13/19 23:35,"174 West St, San Francisco, CA 94016" +206716,Wired Headphones,1,11.99,06/09/19 01:24,"421 Forest St, Dallas, TX 75001" +206717,USB-C Charging Cable,1,11.95,06/07/19 04:45,"236 River St, Los Angeles, CA 90001" +206718,Flatscreen TV,1,300,06/21/19 20:39,"171 Elm St, Seattle, WA 98101" +206719,USB-C Charging Cable,1,11.95,06/26/19 18:02,"984 12th St, Boston, MA 02215" +206720,Bose SoundSport Headphones,1,99.99,06/08/19 15:27,"791 Willow St, Seattle, WA 98101" +206721,Apple Airpods Headphones,1,150,06/30/19 11:50,"265 South St, Boston, MA 02215" +206722,Macbook Pro Laptop,1,1700,06/05/19 11:36,"958 Dogwood St, Los Angeles, CA 90001" +206723,27in 4K Gaming Monitor,1,389.99,06/09/19 11:00,"85 Hickory St, Boston, MA 02215" +206724,AA Batteries (4-pack),1,3.84,06/10/19 10:55,"820 Church St, Portland, OR 97035" +206725,Apple Airpods Headphones,1,150,06/26/19 14:37,"57 2nd St, Portland, ME 04101" +206726,Flatscreen TV,1,300,06/28/19 19:34,"420 Pine St, Atlanta, GA 30301" +206727,34in Ultrawide Monitor,1,379.99,06/25/19 18:44,"520 11th St, Los Angeles, CA 90001" +206728,iPhone,1,700,06/09/19 20:25,"423 Highland St, Los Angeles, CA 90001" +206728,Lightning Charging Cable,1,14.95,06/09/19 20:25,"423 Highland St, Los Angeles, CA 90001" +206729,Bose SoundSport Headphones,1,99.99,06/01/19 18:43,"249 Walnut St, Dallas, TX 75001" +206730,Apple Airpods Headphones,1,150,06/08/19 23:03,"13 Forest St, Los Angeles, CA 90001" +206731,Google Phone,1,600,06/21/19 13:35,"258 River St, San Francisco, CA 94016" +206732,Apple Airpods Headphones,1,150,06/02/19 21:33,"35 Lake St, New York City, NY 10001" +206733,Google Phone,1,600,06/30/19 09:12,"649 Willow St, New York City, NY 10001" +206733,USB-C Charging Cable,1,11.95,06/30/19 09:12,"649 Willow St, New York City, NY 10001" +206733,Wired Headphones,1,11.99,06/30/19 09:12,"649 Willow St, New York City, NY 10001" +206734,Lightning Charging Cable,1,14.95,06/17/19 21:22,"572 Forest St, Los Angeles, CA 90001" +206735,Apple Airpods Headphones,1,150,06/12/19 19:25,"975 5th St, Portland, OR 97035" +206735,AAA Batteries (4-pack),2,2.99,06/12/19 19:25,"975 5th St, Portland, OR 97035" +206736,AA Batteries (4-pack),1,3.84,06/16/19 18:31,"117 Forest St, Austin, TX 73301" +206737,AAA Batteries (4-pack),1,2.99,06/24/19 18:35,"431 8th St, New York City, NY 10001" +206738,Lightning Charging Cable,1,14.95,06/21/19 04:40,"648 Maple St, Austin, TX 73301" +206739,AA Batteries (4-pack),1,3.84,06/08/19 11:42,"157 14th St, Los Angeles, CA 90001" +206740,Flatscreen TV,1,300,06/01/19 19:30,"536 Cedar St, San Francisco, CA 94016" +206741,Flatscreen TV,1,300,06/06/19 15:48,"607 Center St, Los Angeles, CA 90001" +206742,AA Batteries (4-pack),1,3.84,06/22/19 21:03,"88 Sunset St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +206743,Apple Airpods Headphones,1,150,06/29/19 13:41,"122 West St, San Francisco, CA 94016" +206744,USB-C Charging Cable,1,11.95,06/15/19 11:53,"976 Center St, Los Angeles, CA 90001" +206745,AA Batteries (4-pack),1,3.84,06/14/19 20:17,"795 North St, San Francisco, CA 94016" +206746,USB-C Charging Cable,1,11.95,06/15/19 15:20,"429 Hill St, Seattle, WA 98101" +206747,Bose SoundSport Headphones,1,99.99,06/04/19 19:34,"932 River St, New York City, NY 10001" +206748,AA Batteries (4-pack),1,3.84,06/26/19 16:51,"913 Highland St, Atlanta, GA 30301" +206749,Wired Headphones,1,11.99,06/07/19 22:06,"280 Willow St, San Francisco, CA 94016" +206750,Bose SoundSport Headphones,1,99.99,06/09/19 17:12,"171 13th St, New York City, NY 10001" +206751,iPhone,1,700,06/10/19 20:59,"657 Church St, Portland, OR 97035" +206752,AA Batteries (4-pack),2,3.84,06/10/19 14:15,"680 4th St, New York City, NY 10001" +206753,27in FHD Monitor,1,149.99,06/16/19 17:58,"95 4th St, New York City, NY 10001" +206754,27in 4K Gaming Monitor,1,389.99,06/30/19 15:07,"98 Center St, Portland, OR 97035" +206755,AA Batteries (4-pack),2,3.84,06/25/19 12:23,"520 North St, Seattle, WA 98101" +206756,AAA Batteries (4-pack),3,2.99,06/13/19 03:14,"55 6th St, New York City, NY 10001" +206757,20in Monitor,1,109.99,06/18/19 21:13,"873 Forest St, Dallas, TX 75001" +206758,Wired Headphones,1,11.99,06/21/19 10:29,"479 Dogwood St, Los Angeles, CA 90001" +206758,Lightning Charging Cable,1,14.95,06/21/19 10:29,"479 Dogwood St, Los Angeles, CA 90001" +206759,20in Monitor,1,109.99,06/26/19 19:16,"69 2nd St, Boston, MA 02215" +206760,USB-C Charging Cable,2,11.95,06/23/19 13:45,"270 Main St, San Francisco, CA 94016" +206761,iPhone,1,700,06/07/19 05:00,"89 8th St, Atlanta, GA 30301" +206762,Lightning Charging Cable,1,14.95,06/18/19 19:48,"229 5th St, San Francisco, CA 94016" +206763,AAA Batteries (4-pack),1,2.99,06/19/19 18:53,"734 Chestnut St, Los Angeles, CA 90001" +206764,Bose SoundSport Headphones,1,99.99,06/27/19 22:03,"617 Madison St, Portland, OR 97035" +206765,iPhone,1,700,06/01/19 12:47,"125 Forest St, Los Angeles, CA 90001" +206766,Macbook Pro Laptop,1,1700,06/26/19 21:29,"538 Jackson St, Austin, TX 73301" +206767,Bose SoundSport Headphones,1,99.99,06/26/19 19:52,"543 Cherry St, Atlanta, GA 30301" +206768,Bose SoundSport Headphones,1,99.99,06/04/19 08:32,"530 Jefferson St, Dallas, TX 75001" +206769,AA Batteries (4-pack),1,3.84,06/29/19 10:06,"771 Main St, Dallas, TX 75001" +206770,Apple Airpods Headphones,1,150,06/22/19 22:17,"695 Sunset St, Dallas, TX 75001" +206771,Lightning Charging Cable,1,14.95,06/23/19 10:54,"729 Ridge St, San Francisco, CA 94016" +206772,AA Batteries (4-pack),2,3.84,06/15/19 20:23,"813 West St, Los Angeles, CA 90001" +206773,Lightning Charging Cable,1,14.95,06/08/19 19:54,"526 12th St, Boston, MA 02215" +206774,27in 4K Gaming Monitor,1,389.99,06/11/19 05:59,"529 Ridge St, Los Angeles, CA 90001" +206775,Bose SoundSport Headphones,1,99.99,06/11/19 11:03,"997 Johnson St, New York City, NY 10001" +206776,AA Batteries (4-pack),1,3.84,06/09/19 20:57,"864 13th St, Portland, OR 97035" +206777,Apple Airpods Headphones,1,150,06/10/19 19:13,"809 Walnut St, San Francisco, CA 94016" +206778,Macbook Pro Laptop,1,1700,06/11/19 19:21,"694 Park St, Austin, TX 73301" +206779,Lightning Charging Cable,1,14.95,06/13/19 13:03,"24 Lake St, Seattle, WA 98101" +206780,USB-C Charging Cable,1,11.95,06/12/19 19:09,"195 Lake St, Dallas, TX 75001" +206781,Bose SoundSport Headphones,1,99.99,06/20/19 17:26,"613 Main St, Portland, OR 97035" +206782,Apple Airpods Headphones,1,150,06/15/19 18:33,"613 River St, Dallas, TX 75001" +206783,iPhone,1,700,06/19/19 11:16,"412 Cherry St, San Francisco, CA 94016" +206784,AA Batteries (4-pack),1,3.84,06/10/19 08:38,"738 2nd St, San Francisco, CA 94016" +206785,iPhone,1,700,06/07/19 22:25,"829 Hill St, Atlanta, GA 30301" +206786,Google Phone,1,600,06/20/19 19:45,"354 13th St, Seattle, WA 98101" +206787,AAA Batteries (4-pack),1,2.99,06/11/19 22:48,"636 10th St, Los Angeles, CA 90001" +206788,Bose SoundSport Headphones,1,99.99,06/12/19 14:05,"74 Lake St, Portland, OR 97035" +206789,AAA Batteries (4-pack),1,2.99,06/20/19 08:38,"670 13th St, Seattle, WA 98101" +206790,Apple Airpods Headphones,1,150,06/18/19 23:17,"333 Park St, Atlanta, GA 30301" +206791,iPhone,1,700,06/10/19 13:44,"774 Wilson St, San Francisco, CA 94016" +206792,Bose SoundSport Headphones,1,99.99,06/27/19 20:44,"210 North St, Atlanta, GA 30301" +206793,Bose SoundSport Headphones,1,99.99,06/01/19 23:37,"735 North St, Seattle, WA 98101" +206794,Lightning Charging Cable,1,14.95,06/08/19 22:08,"969 7th St, San Francisco, CA 94016" +206795,Wired Headphones,1,11.99,06/25/19 10:43,"382 Maple St, San Francisco, CA 94016" +206796,Macbook Pro Laptop,1,1700,06/29/19 18:17,"413 8th St, Boston, MA 02215" +206797,AA Batteries (4-pack),1,3.84,06/09/19 20:22,"283 Adams St, New York City, NY 10001" +206798,AA Batteries (4-pack),2,3.84,06/17/19 14:12,"142 Willow St, San Francisco, CA 94016" +206799,Flatscreen TV,1,300,06/26/19 16:09,"804 Hickory St, Los Angeles, CA 90001" +206800,USB-C Charging Cable,1,11.95,06/12/19 19:16,"929 North St, Los Angeles, CA 90001" +206801,AA Batteries (4-pack),1,3.84,06/10/19 22:58,"550 Forest St, Portland, ME 04101" +206802,AAA Batteries (4-pack),1,2.99,06/17/19 18:30,"858 Forest St, Boston, MA 02215" +206803,Apple Airpods Headphones,1,150,06/04/19 08:47,"363 Walnut St, Los Angeles, CA 90001" +206804,27in FHD Monitor,1,149.99,06/13/19 11:28,"400 Willow St, Austin, TX 73301" +206805,34in Ultrawide Monitor,1,379.99,06/27/19 14:15,"732 Highland St, Los Angeles, CA 90001" +206806,ThinkPad Laptop,1,999.99,06/29/19 19:19,"727 West St, Seattle, WA 98101" +206807,AA Batteries (4-pack),1,3.84,06/22/19 18:10,"497 Hill St, New York City, NY 10001" +206808,27in FHD Monitor,1,149.99,06/10/19 20:41,"208 Church St, Los Angeles, CA 90001" +206809,USB-C Charging Cable,1,11.95,06/16/19 13:20,"286 Dogwood St, Los Angeles, CA 90001" +206810,Apple Airpods Headphones,1,150,06/15/19 14:33,"457 1st St, Austin, TX 73301" +206811,ThinkPad Laptop,1,999.99,06/11/19 23:07,"404 Spruce St, Boston, MA 02215" +206812,Apple Airpods Headphones,1,150,06/19/19 10:09,"551 10th St, Atlanta, GA 30301" +206813,Lightning Charging Cable,1,14.95,06/23/19 18:05,"299 8th St, Los Angeles, CA 90001" +206814,USB-C Charging Cable,1,11.95,06/23/19 13:27,"961 Sunset St, Atlanta, GA 30301" +206815,Vareebadd Phone,1,400,06/25/19 15:10,"263 Lakeview St, Seattle, WA 98101" +206816,27in 4K Gaming Monitor,1,389.99,06/12/19 14:32,"242 9th St, San Francisco, CA 94016" +206817,Apple Airpods Headphones,1,150,06/12/19 07:52,"312 10th St, Boston, MA 02215" +206818,Bose SoundSport Headphones,1,99.99,06/27/19 19:29,"849 Hickory St, Los Angeles, CA 90001" +206818,Wired Headphones,2,11.99,06/27/19 19:29,"849 Hickory St, Los Angeles, CA 90001" +206819,Lightning Charging Cable,1,14.95,06/01/19 20:07,"483 Willow St, Los Angeles, CA 90001" +206820,Flatscreen TV,1,300,06/30/19 12:24,"660 Dogwood St, Dallas, TX 75001" +206821,AAA Batteries (4-pack),1,2.99,06/18/19 10:50,"23 Lakeview St, Boston, MA 02215" +206822,USB-C Charging Cable,1,11.95,06/24/19 10:36,"228 Hickory St, Boston, MA 02215" +206823,20in Monitor,1,109.99,06/27/19 19:54,"318 4th St, New York City, NY 10001" +206824,USB-C Charging Cable,1,11.95,06/17/19 11:40,"147 13th St, San Francisco, CA 94016" +206825,Apple Airpods Headphones,1,150,06/29/19 20:15,"633 North St, New York City, NY 10001" +206826,27in 4K Gaming Monitor,1,389.99,06/16/19 22:18,"549 9th St, Portland, OR 97035" +206827,USB-C Charging Cable,1,11.95,06/21/19 22:17,"405 4th St, New York City, NY 10001" +206828,Macbook Pro Laptop,1,1700,06/22/19 09:09,"208 River St, Boston, MA 02215" +206828,Macbook Pro Laptop,1,1700,06/22/19 09:09,"208 River St, Boston, MA 02215" +206829,Google Phone,1,600,06/08/19 11:13,"96 Walnut St, Atlanta, GA 30301" +206829,USB-C Charging Cable,1,11.95,06/08/19 11:13,"96 Walnut St, Atlanta, GA 30301" +206830,34in Ultrawide Monitor,1,379.99,06/26/19 22:05,"818 Chestnut St, Austin, TX 73301" +206831,AA Batteries (4-pack),2,3.84,06/12/19 17:16,"187 Hill St, Dallas, TX 75001" +206832,20in Monitor,1,109.99,06/04/19 12:53,"481 Dogwood St, Boston, MA 02215" +206833,Wired Headphones,1,11.99,06/30/19 22:52,"31 Main St, New York City, NY 10001" +206834,Lightning Charging Cable,1,14.95,06/12/19 12:20,"880 Elm St, San Francisco, CA 94016" +206835,USB-C Charging Cable,1,11.95,06/30/19 10:38,"665 Walnut St, New York City, NY 10001" +206836,AA Batteries (4-pack),1,3.84,06/11/19 14:54,"222 Meadow St, Los Angeles, CA 90001" +206837,Bose SoundSport Headphones,1,99.99,06/29/19 18:22,"607 10th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +206838,AAA Batteries (4-pack),1,2.99,06/08/19 08:46,"463 Lake St, Austin, TX 73301" +206839,Apple Airpods Headphones,1,150,06/22/19 09:13,"346 2nd St, New York City, NY 10001" +206840,AAA Batteries (4-pack),2,2.99,06/05/19 14:49,"689 Pine St, San Francisco, CA 94016" +206841,34in Ultrawide Monitor,1,379.99,06/10/19 21:55,"177 10th St, New York City, NY 10001" +206842,AA Batteries (4-pack),1,3.84,06/28/19 10:47,"184 West St, Los Angeles, CA 90001" +206843,Lightning Charging Cable,1,14.95,06/24/19 15:48,"91 Hill St, Atlanta, GA 30301" +206844,AA Batteries (4-pack),1,3.84,06/27/19 10:46,"581 Jackson St, Los Angeles, CA 90001" +206845,Apple Airpods Headphones,1,150,06/13/19 20:48,"886 Jackson St, San Francisco, CA 94016" +206846,27in 4K Gaming Monitor,1,389.99,06/08/19 12:54,"958 Walnut St, New York City, NY 10001" +206847,Wired Headphones,1,11.99,06/27/19 21:24,"462 10th St, Seattle, WA 98101" +206848,AAA Batteries (4-pack),1,2.99,06/08/19 20:14,"985 Hill St, Los Angeles, CA 90001" +206848,Vareebadd Phone,1,400,06/08/19 20:14,"985 Hill St, Los Angeles, CA 90001" +206849,LG Washing Machine,1,600.0,06/14/19 08:57,"934 Highland St, Los Angeles, CA 90001" +206850,LG Washing Machine,1,600.0,06/23/19 13:54,"96 Adams St, San Francisco, CA 94016" +206851,USB-C Charging Cable,1,11.95,06/17/19 17:04,"653 Lincoln St, New York City, NY 10001" +206852,Bose SoundSport Headphones,1,99.99,06/27/19 14:35,"60 11th St, San Francisco, CA 94016" +206853,Lightning Charging Cable,1,14.95,06/26/19 11:15,"787 Cedar St, San Francisco, CA 94016" +206854,USB-C Charging Cable,1,11.95,06/18/19 00:51,"658 Pine St, San Francisco, CA 94016" +206855,Wired Headphones,1,11.99,06/18/19 21:02,"981 6th St, Seattle, WA 98101" +206856,20in Monitor,1,109.99,06/18/19 16:16,"190 Washington St, Los Angeles, CA 90001" +206857,Lightning Charging Cable,1,14.95,06/25/19 03:48,"564 4th St, Boston, MA 02215" +206858,Google Phone,1,600,06/05/19 22:58,"688 2nd St, San Francisco, CA 94016" +206858,USB-C Charging Cable,1,11.95,06/05/19 22:58,"688 2nd St, San Francisco, CA 94016" +206859,Bose SoundSport Headphones,1,99.99,06/24/19 12:41,"674 Dogwood St, Seattle, WA 98101" +206860,AAA Batteries (4-pack),1,2.99,06/23/19 10:53,"747 Cherry St, Seattle, WA 98101" +206861,ThinkPad Laptop,1,999.99,06/06/19 11:22,"880 Main St, San Francisco, CA 94016" +206862,Macbook Pro Laptop,1,1700,06/12/19 09:50,"654 Meadow St, Seattle, WA 98101" +206863,USB-C Charging Cable,1,11.95,06/23/19 15:53,"986 Church St, Boston, MA 02215" +206864,AAA Batteries (4-pack),1,2.99,06/16/19 17:05,"407 Hill St, Los Angeles, CA 90001" +206864,AAA Batteries (4-pack),1,2.99,06/16/19 17:05,"407 Hill St, Los Angeles, CA 90001" +206865,USB-C Charging Cable,1,11.95,06/03/19 17:34,"952 8th St, Los Angeles, CA 90001" +206866,Flatscreen TV,1,300,06/05/19 19:48,"698 Pine St, New York City, NY 10001" +206867,AAA Batteries (4-pack),1,2.99,06/23/19 16:31,"302 7th St, Dallas, TX 75001" +206868,Wired Headphones,1,11.99,06/03/19 18:43,"705 Pine St, Dallas, TX 75001" +206869,USB-C Charging Cable,1,11.95,06/10/19 20:24,"367 Lakeview St, Dallas, TX 75001" +206870,Vareebadd Phone,1,400,06/27/19 22:48,"6 1st St, San Francisco, CA 94016" +206871,Apple Airpods Headphones,1,150,06/06/19 20:50,"27 Willow St, Boston, MA 02215" +206872,Bose SoundSport Headphones,1,99.99,06/21/19 09:21,"777 4th St, Austin, TX 73301" +206873,Wired Headphones,1,11.99,06/21/19 18:29,"457 Willow St, San Francisco, CA 94016" +206874,AA Batteries (4-pack),1,3.84,06/24/19 21:31,"710 Maple St, Los Angeles, CA 90001" +206875,Flatscreen TV,1,300,06/22/19 12:23,"480 Pine St, Atlanta, GA 30301" +206876,Apple Airpods Headphones,1,150,06/23/19 14:16,"629 Hickory St, Seattle, WA 98101" +206877,Lightning Charging Cable,1,14.95,06/13/19 02:02,"846 Wilson St, Boston, MA 02215" +206878,ThinkPad Laptop,1,999.99,06/08/19 04:17,"638 South St, New York City, NY 10001" +206879,AA Batteries (4-pack),1,3.84,06/05/19 19:35,"708 7th St, Portland, OR 97035" +206880,USB-C Charging Cable,1,11.95,06/19/19 05:22,"946 Cherry St, Boston, MA 02215" +206881,Flatscreen TV,1,300,06/21/19 22:12,"260 North St, San Francisco, CA 94016" +206882,20in Monitor,1,109.99,06/14/19 14:03,"960 13th St, Seattle, WA 98101" +206883,AA Batteries (4-pack),2,3.84,06/23/19 11:02,"404 Highland St, Los Angeles, CA 90001" +206884,34in Ultrawide Monitor,1,379.99,06/01/19 08:09,"384 12th St, Boston, MA 02215" +206885,USB-C Charging Cable,1,11.95,06/06/19 09:31,"881 Forest St, San Francisco, CA 94016" +206886,Google Phone,1,600,06/01/19 12:22,"233 Hill St, San Francisco, CA 94016" +206887,Lightning Charging Cable,1,14.95,06/16/19 17:06,"698 Ridge St, San Francisco, CA 94016" +206888,AAA Batteries (4-pack),2,2.99,06/01/19 13:11,"111 Willow St, Portland, OR 97035" +206889,USB-C Charging Cable,1,11.95,06/16/19 18:15,"706 Jackson St, San Francisco, CA 94016" +206890,Wired Headphones,1,11.99,06/30/19 13:08,"916 Hickory St, Seattle, WA 98101" +206891,AAA Batteries (4-pack),1,2.99,06/12/19 18:32,"706 10th St, Seattle, WA 98101" +206892,Bose SoundSport Headphones,1,99.99,06/20/19 15:38,"100 Jefferson St, San Francisco, CA 94016" +206893,Macbook Pro Laptop,1,1700,06/27/19 17:26,"928 Maple St, San Francisco, CA 94016" +206894,Flatscreen TV,1,300,06/08/19 14:11,"107 Adams St, Atlanta, GA 30301" +206895,Bose SoundSport Headphones,1,99.99,06/10/19 07:33,"406 Chestnut St, Portland, OR 97035" +206896,Apple Airpods Headphones,1,150,06/23/19 22:46,"889 Jefferson St, San Francisco, CA 94016" +206897,Vareebadd Phone,1,400,06/11/19 19:47,"435 14th St, Dallas, TX 75001" +206897,USB-C Charging Cable,1,11.95,06/11/19 19:47,"435 14th St, Dallas, TX 75001" +206898,34in Ultrawide Monitor,1,379.99,06/07/19 02:19,"937 Adams St, San Francisco, CA 94016" +206899,Apple Airpods Headphones,1,150,06/18/19 19:08,"221 Jackson St, San Francisco, CA 94016" +206900,Wired Headphones,1,11.99,06/25/19 01:14,"287 10th St, San Francisco, CA 94016" +206901,Apple Airpods Headphones,1,150,06/17/19 02:48,"435 Wilson St, Austin, TX 73301" +206902,Lightning Charging Cable,1,14.95,06/05/19 20:10,"134 7th St, Dallas, TX 75001" +206903,AAA Batteries (4-pack),1,2.99,06/16/19 01:21,"879 8th St, Atlanta, GA 30301" +206904,AA Batteries (4-pack),2,3.84,06/04/19 20:09,"338 Lakeview St, San Francisco, CA 94016" +206905,Apple Airpods Headphones,1,150,06/22/19 20:04,"670 Hill St, Atlanta, GA 30301" +206906,Macbook Pro Laptop,1,1700,06/30/19 14:16,"671 Jackson St, Los Angeles, CA 90001" +206907,Wired Headphones,1,11.99,06/20/19 00:17,"313 Cherry St, Portland, OR 97035" +206908,Lightning Charging Cable,1,14.95,06/11/19 17:26,"589 West St, Los Angeles, CA 90001" +206909,27in 4K Gaming Monitor,1,389.99,06/23/19 09:04,"749 Cherry St, Dallas, TX 75001" +206910,Bose SoundSport Headphones,1,99.99,06/27/19 22:25,"605 West St, Atlanta, GA 30301" +206911,AA Batteries (4-pack),1,3.84,06/28/19 13:06,"954 12th St, San Francisco, CA 94016" +206912,27in 4K Gaming Monitor,1,389.99,06/30/19 21:55,"515 Forest St, Boston, MA 02215" +206913,27in 4K Gaming Monitor,1,389.99,06/06/19 19:14,"24 5th St, Portland, OR 97035" +206914,USB-C Charging Cable,1,11.95,06/10/19 22:22,"352 West St, New York City, NY 10001" +206915,Lightning Charging Cable,1,14.95,06/03/19 09:39,"585 Elm St, San Francisco, CA 94016" +206916,USB-C Charging Cable,1,11.95,06/23/19 21:02,"244 Chestnut St, San Francisco, CA 94016" +206917,AAA Batteries (4-pack),2,2.99,06/04/19 13:23,"555 6th St, Boston, MA 02215" +206918,AA Batteries (4-pack),1,3.84,06/13/19 10:57,"702 1st St, San Francisco, CA 94016" +206919,Google Phone,1,600,06/26/19 10:40,"22 9th St, Seattle, WA 98101" +206919,USB-C Charging Cable,1,11.95,06/26/19 10:40,"22 9th St, Seattle, WA 98101" +206920,USB-C Charging Cable,1,11.95,06/26/19 09:40,"283 Spruce St, Portland, OR 97035" +206921,Wired Headphones,2,11.99,06/18/19 20:26,"56 Washington St, San Francisco, CA 94016" +206922,AA Batteries (4-pack),1,3.84,06/12/19 21:36,"517 Willow St, Los Angeles, CA 90001" +206923,AA Batteries (4-pack),1,3.84,06/13/19 00:17,"825 Jackson St, San Francisco, CA 94016" +206924,Macbook Pro Laptop,1,1700,06/24/19 11:31,"937 Cedar St, Seattle, WA 98101" +206925,Flatscreen TV,1,300,06/25/19 10:10,"842 Hill St, Boston, MA 02215" +206926,Apple Airpods Headphones,1,150,06/09/19 17:12,"182 Johnson St, Los Angeles, CA 90001" +206927,Lightning Charging Cable,2,14.95,06/06/19 20:34,"140 14th St, Portland, OR 97035" +206928,Wired Headphones,1,11.99,06/21/19 22:06,"343 Center St, Boston, MA 02215" +206929,USB-C Charging Cable,1,11.95,06/30/19 13:54,"710 Forest St, Atlanta, GA 30301" +206930,AA Batteries (4-pack),2,3.84,06/26/19 21:46,"665 1st St, Dallas, TX 75001" +206931,Bose SoundSport Headphones,2,99.99,06/03/19 13:59,"4 Hickory St, New York City, NY 10001" +206932,Lightning Charging Cable,1,14.95,06/04/19 13:09,"936 North St, Los Angeles, CA 90001" +206933,iPhone,1,700,06/02/19 16:03,"250 1st St, Seattle, WA 98101" +206933,Lightning Charging Cable,1,14.95,06/02/19 16:03,"250 1st St, Seattle, WA 98101" +206933,Macbook Pro Laptop,1,1700,06/02/19 16:03,"250 1st St, Seattle, WA 98101" +206934,Bose SoundSport Headphones,1,99.99,06/16/19 12:31,"516 Walnut St, San Francisco, CA 94016" +206935,Apple Airpods Headphones,1,150,06/13/19 12:04,"483 Chestnut St, Dallas, TX 75001" +206936,Wired Headphones,1,11.99,06/28/19 11:48,"345 Jefferson St, New York City, NY 10001" +206937,USB-C Charging Cable,1,11.95,06/23/19 18:39,"259 Center St, Atlanta, GA 30301" +206938,AAA Batteries (4-pack),2,2.99,06/29/19 18:58,"835 West St, New York City, NY 10001" +206939,Apple Airpods Headphones,1,150,06/07/19 22:00,"222 West St, Seattle, WA 98101" +206940,Google Phone,1,600,06/17/19 17:26,"339 Highland St, Austin, TX 73301" +206940,Wired Headphones,1,11.99,06/17/19 17:26,"339 Highland St, Austin, TX 73301" +206941,Wired Headphones,1,11.99,06/14/19 16:14,"684 Cedar St, New York City, NY 10001" +206942,AAA Batteries (4-pack),1,2.99,06/04/19 00:20,"296 Highland St, Los Angeles, CA 90001" +206943,USB-C Charging Cable,1,11.95,06/09/19 15:18,"312 6th St, Boston, MA 02215" +206944,Wired Headphones,1,11.99,06/18/19 19:19,"466 Meadow St, San Francisco, CA 94016" +206945,Bose SoundSport Headphones,1,99.99,06/23/19 16:39,"587 South St, San Francisco, CA 94016" +206946,Apple Airpods Headphones,1,150,06/13/19 20:14,"220 Lake St, Los Angeles, CA 90001" +206947,USB-C Charging Cable,1,11.95,06/11/19 16:45,"843 North St, New York City, NY 10001" +206948,Apple Airpods Headphones,1,150,06/11/19 12:28,"332 Adams St, New York City, NY 10001" +206949,Apple Airpods Headphones,1,150,06/23/19 16:40,"779 Cedar St, Austin, TX 73301" +206950,Lightning Charging Cable,1,14.95,06/21/19 19:55,"258 West St, Austin, TX 73301" +206951,AA Batteries (4-pack),1,3.84,06/28/19 17:36,"259 Cherry St, Seattle, WA 98101" +206952,USB-C Charging Cable,1,11.95,06/15/19 13:51,"604 Hill St, Portland, OR 97035" +206953,ThinkPad Laptop,1,999.99,06/27/19 23:29,"745 Maple St, San Francisco, CA 94016" +206954,Apple Airpods Headphones,1,150,06/14/19 16:18,"215 Lakeview St, Austin, TX 73301" +206955,27in 4K Gaming Monitor,1,389.99,06/14/19 08:20,"73 5th St, New York City, NY 10001" +206956,Macbook Pro Laptop,1,1700,06/18/19 14:39,"595 Washington St, New York City, NY 10001" +206957,Wired Headphones,1,11.99,06/17/19 12:34,"176 River St, Atlanta, GA 30301" +206958,Apple Airpods Headphones,1,150,06/30/19 20:23,"827 13th St, Boston, MA 02215" +206959,Vareebadd Phone,1,400,06/03/19 23:56,"805 Lake St, San Francisco, CA 94016" +206959,USB-C Charging Cable,1,11.95,06/03/19 23:56,"805 Lake St, San Francisco, CA 94016" +206960,Apple Airpods Headphones,1,150,06/28/19 18:20,"873 Adams St, San Francisco, CA 94016" +206961,Google Phone,1,600,06/06/19 08:23,"794 2nd St, Seattle, WA 98101" +206961,USB-C Charging Cable,1,11.95,06/06/19 08:23,"794 2nd St, Seattle, WA 98101" +206962,Apple Airpods Headphones,1,150,06/26/19 17:12,"711 Cherry St, New York City, NY 10001" +206963,USB-C Charging Cable,1,11.95,06/30/19 21:07,"560 Lincoln St, New York City, NY 10001" +206964,Apple Airpods Headphones,1,150,06/19/19 23:04,"543 10th St, New York City, NY 10001" +206965,27in FHD Monitor,1,149.99,06/05/19 14:48,"302 6th St, San Francisco, CA 94016" +206966,Lightning Charging Cable,1,14.95,06/24/19 17:08,"731 10th St, New York City, NY 10001" +206967,Wired Headphones,2,11.99,06/28/19 08:05,"467 Elm St, Los Angeles, CA 90001" +206968,USB-C Charging Cable,1,11.95,06/19/19 08:22,"441 Hill St, New York City, NY 10001" +206969,USB-C Charging Cable,1,11.95,06/08/19 17:45,"958 South St, San Francisco, CA 94016" +206970,Bose SoundSport Headphones,1,99.99,06/22/19 00:51,"764 9th St, San Francisco, CA 94016" +206971,Apple Airpods Headphones,1,150,06/10/19 19:37,"203 Pine St, San Francisco, CA 94016" +206972,Lightning Charging Cable,1,14.95,06/14/19 15:00,"397 Cedar St, New York City, NY 10001" +206973,USB-C Charging Cable,1,11.95,06/28/19 06:42,"337 Walnut St, New York City, NY 10001" +206974,AA Batteries (4-pack),2,3.84,06/16/19 18:09,"656 11th St, Seattle, WA 98101" +206975,Apple Airpods Headphones,1,150,06/03/19 15:08,"766 Jefferson St, Atlanta, GA 30301" +206976,Wired Headphones,1,11.99,06/16/19 12:23,"657 Meadow St, Los Angeles, CA 90001" +206977,Lightning Charging Cable,1,14.95,06/04/19 21:01,"812 Cherry St, Los Angeles, CA 90001" +206978,Google Phone,1,600,06/01/19 16:48,"591 Hill St, New York City, NY 10001" +206979,Lightning Charging Cable,1,14.95,06/14/19 00:15,"274 12th St, Los Angeles, CA 90001" +206980,USB-C Charging Cable,1,11.95,06/06/19 06:34,"661 7th St, Los Angeles, CA 90001" +206981,34in Ultrawide Monitor,1,379.99,06/13/19 09:40,"572 Cherry St, San Francisco, CA 94016" +206982,Lightning Charging Cable,1,14.95,06/10/19 15:05,"671 Highland St, Portland, OR 97035" +206983,20in Monitor,1,109.99,06/03/19 10:15,"909 Highland St, Los Angeles, CA 90001" +206984,AAA Batteries (4-pack),1,2.99,06/13/19 22:09,"884 West St, San Francisco, CA 94016" +206985,USB-C Charging Cable,1,11.95,06/12/19 10:44,"106 11th St, San Francisco, CA 94016" +206986,ThinkPad Laptop,1,999.99,06/08/19 18:06,"921 1st St, San Francisco, CA 94016" +206987,Lightning Charging Cable,1,14.95,06/11/19 01:16,"245 Dogwood St, Los Angeles, CA 90001" +206988,Apple Airpods Headphones,1,150,06/08/19 14:09,"170 Dogwood St, New York City, NY 10001" +206989,Lightning Charging Cable,1,14.95,06/18/19 13:21,"604 Willow St, San Francisco, CA 94016" +206990,Lightning Charging Cable,1,14.95,06/02/19 18:05,"502 1st St, San Francisco, CA 94016" +206991,Wired Headphones,1,11.99,06/18/19 17:17,"687 Jefferson St, Atlanta, GA 30301" +206992,Lightning Charging Cable,1,14.95,06/22/19 12:44,"276 Ridge St, San Francisco, CA 94016" +206993,Google Phone,1,600,06/27/19 07:22,"690 7th St, Atlanta, GA 30301" +206994,Lightning Charging Cable,1,14.95,06/19/19 18:50,"659 Pine St, Atlanta, GA 30301" +206995,AA Batteries (4-pack),1,3.84,06/13/19 11:43,"554 Lake St, Austin, TX 73301" +206996,USB-C Charging Cable,1,11.95,06/27/19 10:42,"901 Lake St, Los Angeles, CA 90001" +206997,USB-C Charging Cable,1,11.95,06/08/19 14:20,"563 13th St, Seattle, WA 98101" +206998,AA Batteries (4-pack),1,3.84,06/27/19 14:26,"63 Church St, Boston, MA 02215" +206999,AAA Batteries (4-pack),2,2.99,06/20/19 11:04,"750 River St, Dallas, TX 75001" +206999,AA Batteries (4-pack),1,3.84,06/20/19 11:04,"750 River St, Dallas, TX 75001" +207000,Lightning Charging Cable,1,14.95,06/10/19 14:29,"84 Meadow St, Boston, MA 02215" +207001,27in FHD Monitor,1,149.99,06/24/19 20:25,"833 Lakeview St, Los Angeles, CA 90001" +207002,27in FHD Monitor,2,149.99,06/22/19 12:38,"837 4th St, Atlanta, GA 30301" +207003,USB-C Charging Cable,1,11.95,06/03/19 21:16,"376 Cherry St, San Francisco, CA 94016" +207004,Wired Headphones,1,11.99,06/17/19 22:34,"945 Washington St, Dallas, TX 75001" +207005,USB-C Charging Cable,1,11.95,06/05/19 09:48,"934 Forest St, New York City, NY 10001" +207006,AAA Batteries (4-pack),1,2.99,06/22/19 13:02,"835 River St, San Francisco, CA 94016" +207007,27in FHD Monitor,1,149.99,06/25/19 10:46,"950 Ridge St, Los Angeles, CA 90001" +207008,Lightning Charging Cable,1,14.95,06/08/19 12:29,"732 Johnson St, San Francisco, CA 94016" +207009,AAA Batteries (4-pack),1,2.99,06/28/19 11:53,"717 1st St, Portland, OR 97035" +207010,Apple Airpods Headphones,1,150,06/18/19 20:30,"813 Hill St, San Francisco, CA 94016" +207010,34in Ultrawide Monitor,1,379.99,06/18/19 20:30,"813 Hill St, San Francisco, CA 94016" +207011,Google Phone,1,600,06/21/19 23:24,"549 Ridge St, San Francisco, CA 94016" +207012,Google Phone,1,600,06/20/19 14:06,"814 Adams St, Los Angeles, CA 90001" +207012,USB-C Charging Cable,1,11.95,06/20/19 14:06,"814 Adams St, Los Angeles, CA 90001" +207013,Bose SoundSport Headphones,1,99.99,06/14/19 17:00,"575 North St, San Francisco, CA 94016" +207014,Apple Airpods Headphones,1,150,06/08/19 20:07,"821 Jackson St, Portland, OR 97035" +207014,AAA Batteries (4-pack),1,2.99,06/08/19 20:07,"821 Jackson St, Portland, OR 97035" +207015,AAA Batteries (4-pack),2,2.99,06/10/19 13:34,"910 Cedar St, Seattle, WA 98101" +207016,Flatscreen TV,1,300,06/01/19 16:37,"991 Park St, Los Angeles, CA 90001" +207017,Apple Airpods Headphones,1,150,06/29/19 18:56,"172 Maple St, Atlanta, GA 30301" +207018,Bose SoundSport Headphones,1,99.99,06/01/19 20:08,"898 Pine St, San Francisco, CA 94016" +207019,27in 4K Gaming Monitor,1,389.99,06/24/19 22:09,"246 Main St, New York City, NY 10001" +207020,Wired Headphones,1,11.99,06/15/19 14:13,"914 Cedar St, Los Angeles, CA 90001" +207021,iPhone,1,700,06/19/19 14:18,"432 Adams St, Seattle, WA 98101" +207022,Lightning Charging Cable,1,14.95,06/03/19 21:06,"573 Center St, Los Angeles, CA 90001" +207023,Lightning Charging Cable,1,14.95,06/01/19 17:59,"168 Main St, New York City, NY 10001" +207024,AAA Batteries (4-pack),1,2.99,06/19/19 11:48,"336 Elm St, Los Angeles, CA 90001" +207025,AA Batteries (4-pack),2,3.84,06/02/19 11:06,"844 Hickory St, San Francisco, CA 94016" +207026,Bose SoundSport Headphones,1,99.99,06/19/19 20:30,"245 Dogwood St, Seattle, WA 98101" +207027,Bose SoundSport Headphones,1,99.99,06/30/19 08:33,"740 11th St, Los Angeles, CA 90001" +207028,AA Batteries (4-pack),1,3.84,06/26/19 03:21,"549 Lake St, San Francisco, CA 94016" +207029,Wired Headphones,1,11.99,06/23/19 21:29,"169 Sunset St, New York City, NY 10001" +207030,AA Batteries (4-pack),1,3.84,06/08/19 12:58,"49 Highland St, San Francisco, CA 94016" +207031,Apple Airpods Headphones,1,150,06/13/19 21:43,"262 9th St, San Francisco, CA 94016" +207032,AAA Batteries (4-pack),1,2.99,06/02/19 09:29,"139 2nd St, Boston, MA 02215" +207033,20in Monitor,1,109.99,06/23/19 12:11,"148 Hill St, Boston, MA 02215" +207034,34in Ultrawide Monitor,1,379.99,06/18/19 17:54,"922 5th St, Los Angeles, CA 90001" +207035,Wired Headphones,1,11.99,06/12/19 00:42,"702 Lincoln St, San Francisco, CA 94016" +207036,Wired Headphones,1,11.99,06/10/19 10:31,"836 11th St, San Francisco, CA 94016" +207037,Bose SoundSport Headphones,1,99.99,06/14/19 05:07,"320 4th St, Boston, MA 02215" +207038,AA Batteries (4-pack),4,3.84,06/21/19 14:52,"532 South St, Los Angeles, CA 90001" +207039,AA Batteries (4-pack),2,3.84,06/22/19 13:07,"309 Dogwood St, Boston, MA 02215" +207040,Bose SoundSport Headphones,1,99.99,06/29/19 13:17,"856 Church St, Atlanta, GA 30301" +207041,20in Monitor,1,109.99,06/14/19 13:30,"203 Lakeview St, Los Angeles, CA 90001" +207042,AAA Batteries (4-pack),3,2.99,06/03/19 09:16,"14 4th St, Atlanta, GA 30301" +207043,AAA Batteries (4-pack),2,2.99,06/12/19 11:45,"507 Hill St, Los Angeles, CA 90001" +207044,Lightning Charging Cable,1,14.95,06/29/19 01:54,"513 Center St, Dallas, TX 75001" +207045,27in FHD Monitor,1,149.99,06/01/19 14:56,"382 North St, San Francisco, CA 94016" +207046,USB-C Charging Cable,1,11.95,06/01/19 15:04,"550 10th St, Dallas, TX 75001" +207047,USB-C Charging Cable,1,11.95,06/28/19 13:20,"574 13th St, Dallas, TX 75001" +207048,34in Ultrawide Monitor,1,379.99,06/10/19 17:18,"839 Spruce St, Portland, ME 04101" +207049,Apple Airpods Headphones,1,150,06/06/19 09:29,"446 Spruce St, San Francisco, CA 94016" +207050,USB-C Charging Cable,2,11.95,06/25/19 21:38,"238 River St, Seattle, WA 98101" +207051,AA Batteries (4-pack),5,3.84,06/13/19 23:23,"622 9th St, Los Angeles, CA 90001" +207052,LG Dryer,1,600.0,06/11/19 19:41,"759 River St, San Francisco, CA 94016" +207053,Macbook Pro Laptop,1,1700,06/22/19 14:21,"570 Hickory St, New York City, NY 10001" +207054,AA Batteries (4-pack),2,3.84,06/13/19 22:12,"799 Walnut St, San Francisco, CA 94016" +207055,34in Ultrawide Monitor,1,379.99,06/11/19 19:05,"968 7th St, Los Angeles, CA 90001" +207056,AA Batteries (4-pack),2,3.84,06/22/19 06:55,"222 Cedar St, Boston, MA 02215" +207057,USB-C Charging Cable,1,11.95,06/06/19 18:00,"318 Meadow St, Boston, MA 02215" +207058,AAA Batteries (4-pack),1,2.99,06/30/19 20:00,"682 Wilson St, Boston, MA 02215" +207059,Bose SoundSport Headphones,1,99.99,06/05/19 10:31,"678 7th St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +207060,Wired Headphones,1,11.99,06/15/19 04:44,"255 Johnson St, Los Angeles, CA 90001" +207061,Flatscreen TV,1,300,06/19/19 12:46,"438 11th St, San Francisco, CA 94016" +207062,iPhone,1,700,06/13/19 12:49,"867 River St, Seattle, WA 98101" +207063,Wired Headphones,2,11.99,06/12/19 13:05,"569 South St, San Francisco, CA 94016" +207064,AA Batteries (4-pack),1,3.84,06/19/19 16:34,"570 Meadow St, Boston, MA 02215" +207065,Apple Airpods Headphones,1,150,06/26/19 18:24,"411 Willow St, Portland, OR 97035" +207066,Wired Headphones,1,11.99,06/23/19 11:32,"866 Meadow St, Los Angeles, CA 90001" +207067,USB-C Charging Cable,1,11.95,06/12/19 17:50,"750 14th St, San Francisco, CA 94016" +207068,Wired Headphones,1,11.99,06/10/19 17:55,"743 South St, New York City, NY 10001" +207069,Apple Airpods Headphones,1,150,06/05/19 20:02,"916 Spruce St, Dallas, TX 75001" +207070,USB-C Charging Cable,1,11.95,06/24/19 12:20,"293 Willow St, San Francisco, CA 94016" +207071,Google Phone,1,600,06/29/19 16:14,"519 Church St, San Francisco, CA 94016" +207071,USB-C Charging Cable,1,11.95,06/29/19 16:14,"519 Church St, San Francisco, CA 94016" +207072,Lightning Charging Cable,1,14.95,06/21/19 22:59,"809 Pine St, Boston, MA 02215" +207073,AA Batteries (4-pack),1,3.84,06/29/19 15:40,"982 Adams St, Portland, OR 97035" +207074,AA Batteries (4-pack),1,3.84,06/01/19 13:37,"980 Walnut St, Austin, TX 73301" +207075,27in FHD Monitor,1,149.99,06/26/19 19:19,"830 Jackson St, San Francisco, CA 94016" +207076,USB-C Charging Cable,1,11.95,06/29/19 10:51,"500 Elm St, Los Angeles, CA 90001" +207077,USB-C Charging Cable,1,11.95,06/16/19 19:45,"890 10th St, Boston, MA 02215" +207078,Lightning Charging Cable,2,14.95,06/21/19 13:26,"796 Lakeview St, San Francisco, CA 94016" +207079,Apple Airpods Headphones,1,150,06/09/19 06:09,"395 Maple St, Los Angeles, CA 90001" +207080,Apple Airpods Headphones,1,150,06/05/19 14:01,"842 6th St, Portland, ME 04101" +207081,AA Batteries (4-pack),1,3.84,06/11/19 12:16,"726 10th St, San Francisco, CA 94016" +207082,AAA Batteries (4-pack),1,2.99,06/23/19 10:59,"496 6th St, Boston, MA 02215" +207083,AA Batteries (4-pack),2,3.84,06/27/19 00:05,"951 10th St, Los Angeles, CA 90001" +207084,27in 4K Gaming Monitor,1,389.99,06/14/19 15:09,"633 6th St, Portland, ME 04101" +207085,27in 4K Gaming Monitor,1,389.99,06/07/19 18:27,"985 Cherry St, Atlanta, GA 30301" +207086,Wired Headphones,1,11.99,06/08/19 11:19,"737 River St, Boston, MA 02215" +207087,AA Batteries (4-pack),1,3.84,06/01/19 12:56,"893 Johnson St, New York City, NY 10001" +207088,Lightning Charging Cable,1,14.95,06/23/19 11:50,"366 11th St, Los Angeles, CA 90001" +207089,Apple Airpods Headphones,1,150,06/01/19 19:59,"572 Adams St, New York City, NY 10001" +207089,Wired Headphones,1,11.99,06/01/19 19:59,"572 Adams St, New York City, NY 10001" +207090,Google Phone,1,600,06/30/19 23:55,"592 Jackson St, Seattle, WA 98101" +207091,USB-C Charging Cable,1,11.95,06/13/19 07:59,"890 Park St, Austin, TX 73301" +207092,USB-C Charging Cable,1,11.95,06/14/19 19:02,"200 Jackson St, San Francisco, CA 94016" +207093,Macbook Pro Laptop,1,1700,06/17/19 10:48,"375 Wilson St, San Francisco, CA 94016" +207094,ThinkPad Laptop,1,999.99,06/20/19 22:12,"225 Ridge St, Dallas, TX 75001" +207095,Flatscreen TV,1,300,06/20/19 17:58,"545 Lake St, San Francisco, CA 94016" +207096,Flatscreen TV,1,300,06/09/19 00:41,"992 Sunset St, San Francisco, CA 94016" +207097,USB-C Charging Cable,1,11.95,06/05/19 18:00,"840 11th St, San Francisco, CA 94016" +207098,USB-C Charging Cable,1,11.95,06/14/19 22:51,"169 11th St, Boston, MA 02215" +207099,Wired Headphones,1,11.99,06/12/19 19:41,"338 Hickory St, Boston, MA 02215" +207100,34in Ultrawide Monitor,1,379.99,06/15/19 11:24,"593 Jefferson St, Boston, MA 02215" +207101,ThinkPad Laptop,1,999.99,06/22/19 18:22,"746 10th St, Atlanta, GA 30301" +207102,AAA Batteries (4-pack),2,2.99,06/03/19 10:49,"107 8th St, Los Angeles, CA 90001" +207103,AA Batteries (4-pack),3,3.84,06/15/19 16:07,"703 14th St, Los Angeles, CA 90001" +207104,Flatscreen TV,1,300,06/14/19 22:48,"987 4th St, San Francisco, CA 94016" +207105,AAA Batteries (4-pack),1,2.99,06/12/19 15:29,"405 5th St, New York City, NY 10001" +207106,Lightning Charging Cable,1,14.95,06/22/19 20:51,"511 River St, San Francisco, CA 94016" +207107,USB-C Charging Cable,1,11.95,06/13/19 09:04,"363 Main St, Boston, MA 02215" +207108,Lightning Charging Cable,1,14.95,06/06/19 10:14,"672 Center St, Atlanta, GA 30301" +207109,27in FHD Monitor,1,149.99,06/19/19 15:36,"673 5th St, Boston, MA 02215" +207110,Wired Headphones,1,11.99,06/12/19 18:53,"329 Forest St, San Francisco, CA 94016" +207111,Apple Airpods Headphones,1,150,06/13/19 00:22,"816 Willow St, Los Angeles, CA 90001" +207112,Apple Airpods Headphones,1,150,06/27/19 19:47,"658 13th St, New York City, NY 10001" +207113,Apple Airpods Headphones,1,150,06/16/19 11:50,"663 5th St, San Francisco, CA 94016" +207114,Wired Headphones,1,11.99,06/08/19 14:55,"338 10th St, Atlanta, GA 30301" +207115,Macbook Pro Laptop,1,1700,06/21/19 13:31,"759 Pine St, Los Angeles, CA 90001" +207116,34in Ultrawide Monitor,1,379.99,06/24/19 17:24,"228 Forest St, Los Angeles, CA 90001" +207117,AA Batteries (4-pack),5,3.84,06/10/19 01:11,"429 Cedar St, Atlanta, GA 30301" +207118,27in FHD Monitor,1,149.99,06/14/19 14:57,"290 1st St, Boston, MA 02215" +207119,Lightning Charging Cable,1,14.95,06/10/19 22:24,"745 Lake St, Los Angeles, CA 90001" +207120,iPhone,1,700,06/23/19 10:33,"181 Center St, Dallas, TX 75001" +207120,Apple Airpods Headphones,1,150,06/23/19 10:33,"181 Center St, Dallas, TX 75001" +207120,Wired Headphones,1,11.99,06/23/19 10:33,"181 Center St, Dallas, TX 75001" +207121,Apple Airpods Headphones,1,150,06/22/19 19:03,"394 Highland St, Los Angeles, CA 90001" +207122,34in Ultrawide Monitor,1,379.99,06/22/19 19:49,"189 Church St, San Francisco, CA 94016" +207123,Macbook Pro Laptop,1,1700,06/26/19 00:38,"282 Walnut St, Boston, MA 02215" +207124,Bose SoundSport Headphones,1,99.99,06/18/19 21:45,"381 Walnut St, New York City, NY 10001" +207125,AAA Batteries (4-pack),1,2.99,06/16/19 08:51,"251 Main St, Seattle, WA 98101" +207126,Lightning Charging Cable,1,14.95,06/26/19 02:22,"978 Wilson St, San Francisco, CA 94016" +207127,Lightning Charging Cable,1,14.95,06/28/19 05:52,"300 7th St, New York City, NY 10001" +207128,34in Ultrawide Monitor,1,379.99,06/16/19 11:35,"787 Park St, Los Angeles, CA 90001" +207129,USB-C Charging Cable,1,11.95,06/20/19 12:33,"282 14th St, Seattle, WA 98101" +207130,Google Phone,1,600,06/29/19 18:58,"749 River St, San Francisco, CA 94016" +207130,USB-C Charging Cable,1,11.95,06/29/19 18:58,"749 River St, San Francisco, CA 94016" +207131,Wired Headphones,1,11.99,06/20/19 13:11,"66 6th St, New York City, NY 10001" +207132,27in 4K Gaming Monitor,1,389.99,06/04/19 17:27,"875 Cedar St, Seattle, WA 98101" +207133,USB-C Charging Cable,1,11.95,06/07/19 10:04,"579 Park St, Los Angeles, CA 90001" +207134,AAA Batteries (4-pack),1,2.99,06/06/19 12:23,"724 South St, San Francisco, CA 94016" +207135,AA Batteries (4-pack),1,3.84,06/16/19 13:25,"617 Pine St, Seattle, WA 98101" +207136,Bose SoundSport Headphones,1,99.99,06/20/19 20:06,"817 Main St, Atlanta, GA 30301" +207137,USB-C Charging Cable,1,11.95,06/05/19 15:51,"66 12th St, San Francisco, CA 94016" +207138,AAA Batteries (4-pack),1,2.99,06/18/19 06:49,"712 13th St, Atlanta, GA 30301" +207139,LG Dryer,1,600.0,06/10/19 10:28,"651 Park St, Seattle, WA 98101" +207140,Lightning Charging Cable,1,14.95,06/04/19 19:20,"475 Chestnut St, Boston, MA 02215" +207141,AA Batteries (4-pack),1,3.84,06/17/19 19:37,"267 13th St, New York City, NY 10001" +207142,iPhone,1,700,06/25/19 12:07,"52 Cedar St, Boston, MA 02215" +207143,USB-C Charging Cable,1,11.95,06/06/19 13:56,"181 Washington St, Atlanta, GA 30301" +207144,Wired Headphones,1,11.99,06/05/19 22:11,"253 Johnson St, Los Angeles, CA 90001" +207144,AA Batteries (4-pack),1,3.84,06/05/19 22:11,"253 Johnson St, Los Angeles, CA 90001" +207145,Wired Headphones,1,11.99,06/26/19 20:48,"833 13th St, New York City, NY 10001" +207146,Lightning Charging Cable,1,14.95,06/05/19 16:04,"827 Spruce St, Los Angeles, CA 90001" +207147,Apple Airpods Headphones,1,150,06/13/19 11:03,"388 14th St, Atlanta, GA 30301" +207148,Wired Headphones,1,11.99,06/23/19 02:33,"344 Dogwood St, Atlanta, GA 30301" +207149,AAA Batteries (4-pack),2,2.99,06/14/19 18:13,"1 North St, Boston, MA 02215" +207150,AAA Batteries (4-pack),3,2.99,06/03/19 00:58,"999 Ridge St, Seattle, WA 98101" +207151,AAA Batteries (4-pack),1,2.99,06/27/19 17:19,"281 Cedar St, Seattle, WA 98101" +207152,AA Batteries (4-pack),1,3.84,06/28/19 19:08,"229 Meadow St, Dallas, TX 75001" +207153,Flatscreen TV,1,300,06/13/19 22:52,"248 5th St, San Francisco, CA 94016" +207154,Lightning Charging Cable,1,14.95,06/10/19 12:43,"307 Hill St, San Francisco, CA 94016" +207155,Lightning Charging Cable,1,14.95,06/12/19 02:48,"720 11th St, Seattle, WA 98101" +207156,Lightning Charging Cable,1,14.95,06/17/19 11:55,"718 1st St, Seattle, WA 98101" +207157,Wired Headphones,1,11.99,06/25/19 13:09,"244 West St, Atlanta, GA 30301" +207158,Apple Airpods Headphones,1,150,06/22/19 14:51,"442 11th St, Austin, TX 73301" +207159,Bose SoundSport Headphones,1,99.99,06/15/19 20:47,"776 Madison St, San Francisco, CA 94016" +207160,20in Monitor,1,109.99,06/23/19 17:14,"269 7th St, San Francisco, CA 94016" +207161,Wired Headphones,1,11.99,06/17/19 20:43,"271 5th St, New York City, NY 10001" +207162,34in Ultrawide Monitor,1,379.99,06/21/19 05:25,"617 Jefferson St, San Francisco, CA 94016" +207163,USB-C Charging Cable,2,11.95,06/24/19 21:00,"121 11th St, San Francisco, CA 94016" +207164,27in FHD Monitor,1,149.99,06/11/19 13:57,"499 Adams St, Portland, OR 97035" +207165,20in Monitor,1,109.99,06/15/19 18:26,"354 Lake St, San Francisco, CA 94016" +207166,ThinkPad Laptop,1,999.99,06/24/19 01:07,"959 Hickory St, Atlanta, GA 30301" +207167,USB-C Charging Cable,2,11.95,06/05/19 10:25,"241 North St, San Francisco, CA 94016" +207168,Macbook Pro Laptop,1,1700,06/13/19 00:56,"913 Dogwood St, San Francisco, CA 94016" +207169,Bose SoundSport Headphones,1,99.99,06/25/19 13:42,"934 Highland St, San Francisco, CA 94016" +207170,USB-C Charging Cable,1,11.95,06/17/19 19:18,"865 Main St, Seattle, WA 98101" +207171,USB-C Charging Cable,1,11.95,06/25/19 22:33,"83 Park St, Seattle, WA 98101" +207172,Lightning Charging Cable,1,14.95,06/15/19 11:43,"231 Forest St, Dallas, TX 75001" +207173,AA Batteries (4-pack),1,3.84,06/09/19 10:41,"751 Cedar St, Seattle, WA 98101" +207174,iPhone,1,700,06/07/19 08:35,"963 Dogwood St, San Francisco, CA 94016" +207174,Apple Airpods Headphones,1,150,06/07/19 08:35,"963 Dogwood St, San Francisco, CA 94016" +207175,Lightning Charging Cable,1,14.95,06/11/19 21:11,"622 Main St, Dallas, TX 75001" +207176,USB-C Charging Cable,1,11.95,06/15/19 21:53,"256 Dogwood St, Boston, MA 02215" +207177,27in FHD Monitor,1,149.99,06/20/19 16:08,"120 Hill St, Dallas, TX 75001" +207178,27in 4K Gaming Monitor,1,389.99,06/26/19 12:09,"308 Wilson St, New York City, NY 10001" +207179,Wired Headphones,1,11.99,06/25/19 13:44,"375 Lincoln St, Los Angeles, CA 90001" +207180,Wired Headphones,1,11.99,06/05/19 08:30,"708 12th St, Seattle, WA 98101" +207181,Apple Airpods Headphones,1,150,06/24/19 10:30,"152 Johnson St, Los Angeles, CA 90001" +207182,Lightning Charging Cable,1,14.95,06/01/19 15:23,"538 Adams St, Seattle, WA 98101" +207183,USB-C Charging Cable,1,11.95,06/12/19 01:12,"392 River St, San Francisco, CA 94016" +207184,Wired Headphones,2,11.99,06/03/19 13:53,"817 Dogwood St, Los Angeles, CA 90001" +207185,iPhone,1,700,06/13/19 19:54,"893 Dogwood St, Boston, MA 02215" +207185,Macbook Pro Laptop,1,1700,06/13/19 19:54,"893 Dogwood St, Boston, MA 02215" +207186,USB-C Charging Cable,1,11.95,06/10/19 12:04,"397 Cherry St, New York City, NY 10001" +207187,ThinkPad Laptop,1,999.99,06/29/19 18:05,"670 Johnson St, Boston, MA 02215" +207188,AA Batteries (4-pack),1,3.84,06/22/19 18:25,"386 Lakeview St, Austin, TX 73301" +207189,Lightning Charging Cable,1,14.95,06/11/19 17:37,"586 Jefferson St, New York City, NY 10001" +207190,Vareebadd Phone,1,400,06/09/19 22:43,"947 Dogwood St, Los Angeles, CA 90001" +207191,Lightning Charging Cable,1,14.95,06/26/19 19:48,"399 1st St, San Francisco, CA 94016" +207192,Lightning Charging Cable,1,14.95,06/04/19 09:45,"234 Ridge St, San Francisco, CA 94016" +207193,Lightning Charging Cable,1,14.95,06/25/19 21:19,"685 Center St, Atlanta, GA 30301" +207194,Bose SoundSport Headphones,1,99.99,06/21/19 08:59,"940 Hill St, Dallas, TX 75001" +207195,AA Batteries (4-pack),1,3.84,06/04/19 22:29,"266 10th St, Los Angeles, CA 90001" +207196,Bose SoundSport Headphones,1,99.99,06/25/19 14:42,"828 12th St, San Francisco, CA 94016" +207197,Wired Headphones,1,11.99,06/22/19 13:20,"978 Pine St, Dallas, TX 75001" +207198,Wired Headphones,1,11.99,07/01/19 00:31,"689 Center St, San Francisco, CA 94016" +207199,AAA Batteries (4-pack),1,2.99,06/14/19 19:26,"327 Sunset St, San Francisco, CA 94016" +207200,Wired Headphones,1,11.99,06/17/19 17:04,"779 6th St, Seattle, WA 98101" +207201,AAA Batteries (4-pack),1,2.99,06/20/19 22:10,"395 Lake St, Atlanta, GA 30301" +207202,Lightning Charging Cable,1,14.95,06/15/19 20:40,"285 Adams St, Portland, OR 97035" +207203,iPhone,1,700,06/11/19 14:42,"223 6th St, San Francisco, CA 94016" +207203,Lightning Charging Cable,1,14.95,06/11/19 14:42,"223 6th St, San Francisco, CA 94016" +207204,Apple Airpods Headphones,1,150,06/15/19 14:36,"254 Highland St, New York City, NY 10001" +207205,USB-C Charging Cable,2,11.95,06/15/19 06:13,"838 Lincoln St, San Francisco, CA 94016" +207206,Google Phone,1,600,06/25/19 22:02,"550 1st St, Boston, MA 02215" +207206,USB-C Charging Cable,1,11.95,06/25/19 22:02,"550 1st St, Boston, MA 02215" +207207,Lightning Charging Cable,1,14.95,06/22/19 21:04,"113 Meadow St, Austin, TX 73301" +207208,27in 4K Gaming Monitor,1,389.99,06/23/19 21:10,"578 11th St, Seattle, WA 98101" +207209,Bose SoundSport Headphones,1,99.99,06/21/19 07:53,"131 4th St, Seattle, WA 98101" +207210,Google Phone,1,600,06/09/19 09:02,"745 Walnut St, San Francisco, CA 94016" +207211,AAA Batteries (4-pack),1,2.99,06/12/19 19:57,"124 Washington St, San Francisco, CA 94016" +207212,Lightning Charging Cable,1,14.95,06/16/19 19:10,"622 5th St, Los Angeles, CA 90001" +207212,Apple Airpods Headphones,1,150,06/16/19 19:10,"622 5th St, Los Angeles, CA 90001" +207213,Lightning Charging Cable,1,14.95,06/26/19 16:08,"705 Willow St, San Francisco, CA 94016" +207214,AA Batteries (4-pack),5,3.84,06/21/19 14:30,"756 5th St, Portland, OR 97035" +207215,27in 4K Gaming Monitor,1,389.99,06/30/19 22:07,"276 Dogwood St, Dallas, TX 75001" +207216,AAA Batteries (4-pack),1,2.99,06/28/19 17:35,"929 Cherry St, San Francisco, CA 94016" +207217,27in 4K Gaming Monitor,1,389.99,06/29/19 00:10,"810 2nd St, New York City, NY 10001" +207218,iPhone,1,700,06/01/19 16:28,"436 Jefferson St, New York City, NY 10001" +207218,Wired Headphones,1,11.99,06/01/19 16:28,"436 Jefferson St, New York City, NY 10001" +207219,USB-C Charging Cable,1,11.95,06/01/19 19:36,"875 Cherry St, San Francisco, CA 94016" +207220,Bose SoundSport Headphones,1,99.99,06/06/19 11:03,"702 12th St, Portland, OR 97035" +207221,AA Batteries (4-pack),1,3.84,06/13/19 10:59,"630 14th St, Los Angeles, CA 90001" +207222,Flatscreen TV,1,300,06/20/19 22:54,"180 River St, New York City, NY 10001" +207223,Macbook Pro Laptop,1,1700,06/29/19 20:36,"691 8th St, San Francisco, CA 94016" +207224,USB-C Charging Cable,1,11.95,06/21/19 23:21,"119 Adams St, New York City, NY 10001" +207225,AAA Batteries (4-pack),1,2.99,06/10/19 15:13,"360 Chestnut St, Boston, MA 02215" +207225,Lightning Charging Cable,1,14.95,06/10/19 15:13,"360 Chestnut St, Boston, MA 02215" +207226,Lightning Charging Cable,1,14.95,06/16/19 11:58,"463 Washington St, Austin, TX 73301" +207227,USB-C Charging Cable,1,11.95,06/08/19 22:15,"282 Ridge St, New York City, NY 10001" +207228,USB-C Charging Cable,1,11.95,06/30/19 19:16,"233 Maple St, Seattle, WA 98101" +207229,Apple Airpods Headphones,1,150,06/24/19 16:07,"937 14th St, Dallas, TX 75001" +207230,AA Batteries (4-pack),2,3.84,06/19/19 14:55,"531 7th St, Los Angeles, CA 90001" +207231,Lightning Charging Cable,1,14.95,06/23/19 16:45,"959 14th St, Dallas, TX 75001" +207232,Lightning Charging Cable,1,14.95,06/01/19 09:53,"333 Meadow St, New York City, NY 10001" +207233,Apple Airpods Headphones,1,150,06/03/19 19:16,"315 Highland St, San Francisco, CA 94016" +207234,Lightning Charging Cable,1,14.95,06/14/19 13:21,"594 6th St, New York City, NY 10001" +207235,Lightning Charging Cable,1,14.95,06/28/19 15:52,"1 Park St, Atlanta, GA 30301" +207236,Bose SoundSport Headphones,1,99.99,06/28/19 12:01,"630 5th St, Portland, OR 97035" +207237,Bose SoundSport Headphones,1,99.99,06/16/19 10:40,"917 14th St, San Francisco, CA 94016" +207238,Lightning Charging Cable,1,14.95,06/01/19 10:13,"959 Meadow St, New York City, NY 10001" +207239,AAA Batteries (4-pack),1,2.99,06/03/19 13:11,"480 Pine St, Los Angeles, CA 90001" +207240,27in 4K Gaming Monitor,1,389.99,06/02/19 14:02,"49 Sunset St, Portland, OR 97035" +207241,34in Ultrawide Monitor,1,379.99,06/21/19 04:11,"501 Highland St, San Francisco, CA 94016" +207242,AA Batteries (4-pack),1,3.84,06/28/19 18:51,"853 2nd St, San Francisco, CA 94016" +207242,Wired Headphones,1,11.99,06/28/19 18:51,"853 2nd St, San Francisco, CA 94016" +207243,27in 4K Gaming Monitor,1,389.99,06/22/19 09:36,"184 14th St, Boston, MA 02215" +207244,Macbook Pro Laptop,1,1700,06/29/19 16:45,"779 13th St, San Francisco, CA 94016" +207245,AAA Batteries (4-pack),2,2.99,06/21/19 12:52,"305 7th St, San Francisco, CA 94016" +207246,AAA Batteries (4-pack),1,2.99,06/12/19 16:17,"499 South St, Austin, TX 73301" +207247,AAA Batteries (4-pack),2,2.99,06/17/19 10:55,"739 South St, Los Angeles, CA 90001" +207248,AAA Batteries (4-pack),2,2.99,06/26/19 12:58,"649 Lake St, Austin, TX 73301" +207249,27in FHD Monitor,1,149.99,06/17/19 13:15,"413 9th St, San Francisco, CA 94016" +207250,AAA Batteries (4-pack),1,2.99,06/15/19 09:34,"125 Park St, Los Angeles, CA 90001" +207251,Wired Headphones,1,11.99,06/12/19 22:10,"103 Elm St, Atlanta, GA 30301" +207252,AA Batteries (4-pack),1,3.84,06/19/19 16:50,"460 Center St, New York City, NY 10001" +207253,Wired Headphones,1,11.99,06/23/19 09:45,"664 Walnut St, New York City, NY 10001" +207254,AA Batteries (4-pack),1,3.84,06/15/19 17:44,"272 Johnson St, Boston, MA 02215" +207255,Lightning Charging Cable,1,14.95,06/01/19 13:36,"727 Center St, Seattle, WA 98101" +207256,20in Monitor,1,109.99,06/18/19 11:14,"148 Meadow St, San Francisco, CA 94016" +207257,Apple Airpods Headphones,1,150,06/22/19 23:07,"87 Madison St, Portland, OR 97035" +207258,Vareebadd Phone,1,400,06/14/19 12:46,"425 8th St, San Francisco, CA 94016" +207259,Lightning Charging Cable,1,14.95,06/30/19 08:42,"725 Meadow St, Boston, MA 02215" +207260,AA Batteries (4-pack),1,3.84,06/07/19 18:24,"809 West St, San Francisco, CA 94016" +207261,Wired Headphones,1,11.99,06/09/19 09:32,"951 Madison St, Seattle, WA 98101" +207261,AA Batteries (4-pack),1,3.84,06/09/19 09:32,"951 Madison St, Seattle, WA 98101" +207262,20in Monitor,1,109.99,06/10/19 15:11,"243 Johnson St, Seattle, WA 98101" +207263,USB-C Charging Cable,1,11.95,06/19/19 11:06,"236 Lakeview St, New York City, NY 10001" +207263,Bose SoundSport Headphones,1,99.99,06/19/19 11:06,"236 Lakeview St, New York City, NY 10001" +207264,AAA Batteries (4-pack),1,2.99,06/14/19 19:05,"542 Pine St, San Francisco, CA 94016" +207265,AAA Batteries (4-pack),1,2.99,06/02/19 01:18,"926 Jackson St, Seattle, WA 98101" +207266,AAA Batteries (4-pack),1,2.99,06/20/19 11:45,"239 9th St, Atlanta, GA 30301" +207267,Wired Headphones,1,11.99,06/17/19 22:23,"944 13th St, San Francisco, CA 94016" +207268,Wired Headphones,1,11.99,06/16/19 13:56,"349 West St, Los Angeles, CA 90001" +207269,Flatscreen TV,1,300,06/02/19 10:49,"964 13th St, Los Angeles, CA 90001" +207270,Lightning Charging Cable,1,14.95,06/22/19 17:06,"394 Jefferson St, San Francisco, CA 94016" +207271,AA Batteries (4-pack),1,3.84,06/13/19 10:10,"265 Jackson St, Los Angeles, CA 90001" +207272,AAA Batteries (4-pack),1,2.99,06/29/19 15:22,"806 1st St, San Francisco, CA 94016" +207273,Apple Airpods Headphones,1,150,06/07/19 21:00,"545 Sunset St, Los Angeles, CA 90001" +207274,Lightning Charging Cable,1,14.95,06/21/19 12:53,"260 Cedar St, Los Angeles, CA 90001" +207275,Bose SoundSport Headphones,1,99.99,06/08/19 04:26,"808 Ridge St, Atlanta, GA 30301" +207276,27in 4K Gaming Monitor,1,389.99,06/10/19 09:06,"939 10th St, Austin, TX 73301" +207277,Lightning Charging Cable,1,14.95,06/23/19 16:08,"479 Willow St, Los Angeles, CA 90001" +207278,USB-C Charging Cable,1,11.95,06/22/19 21:52,"571 Madison St, Seattle, WA 98101" +207279,AA Batteries (4-pack),1,3.84,06/05/19 13:40,"374 North St, Boston, MA 02215" +207280,Wired Headphones,1,11.99,06/05/19 20:24,"894 River St, New York City, NY 10001" +207281,Lightning Charging Cable,1,14.95,06/06/19 20:04,"877 Adams St, Atlanta, GA 30301" +207282,AA Batteries (4-pack),3,3.84,06/12/19 16:42,"93 Hill St, Seattle, WA 98101" +207283,27in 4K Gaming Monitor,1,389.99,06/09/19 16:10,"226 Johnson St, Dallas, TX 75001" +207284,Wired Headphones,1,11.99,06/27/19 18:50,"300 Washington St, San Francisco, CA 94016" +207285,Apple Airpods Headphones,1,150,06/01/19 14:48,"183 Hickory St, New York City, NY 10001" +207286,34in Ultrawide Monitor,1,379.99,06/13/19 13:30,"633 Hill St, Los Angeles, CA 90001" +207287,USB-C Charging Cable,2,11.95,06/02/19 03:23,"149 12th St, Portland, OR 97035" +207287,Bose SoundSport Headphones,1,99.99,06/02/19 03:23,"149 12th St, Portland, OR 97035" +207288,Apple Airpods Headphones,1,150,06/19/19 16:28,"307 Park St, Los Angeles, CA 90001" +207289,20in Monitor,1,109.99,06/09/19 09:37,"622 Willow St, Boston, MA 02215" +207290,Flatscreen TV,1,300,06/11/19 18:42,"268 14th St, Seattle, WA 98101" +207291,AA Batteries (4-pack),4,3.84,06/18/19 08:30,"808 North St, Los Angeles, CA 90001" +207292,AA Batteries (4-pack),2,3.84,06/12/19 17:48,"126 River St, Portland, OR 97035" +207293,iPhone,1,700,06/10/19 21:29,"93 Washington St, New York City, NY 10001" +207294,Lightning Charging Cable,2,14.95,06/17/19 11:50,"380 Lake St, Dallas, TX 75001" +207295,iPhone,1,700,06/30/19 16:39,"960 Hill St, Austin, TX 73301" +207295,Lightning Charging Cable,1,14.95,06/30/19 16:39,"960 Hill St, Austin, TX 73301" +207296,Google Phone,1,600,06/13/19 18:43,"793 Park St, San Francisco, CA 94016" +207297,AAA Batteries (4-pack),2,2.99,06/23/19 08:37,"294 Hickory St, Los Angeles, CA 90001" +207298,Wired Headphones,1,11.99,06/01/19 21:22,"690 12th St, San Francisco, CA 94016" +207299,USB-C Charging Cable,2,11.95,06/29/19 10:40,"349 Park St, Los Angeles, CA 90001" +207300,Flatscreen TV,1,300,06/09/19 20:24,"190 6th St, Dallas, TX 75001" +207301,Macbook Pro Laptop,1,1700,06/25/19 03:40,"591 12th St, New York City, NY 10001" +207302,AA Batteries (4-pack),2,3.84,06/22/19 15:29,"570 Ridge St, Atlanta, GA 30301" +207303,ThinkPad Laptop,1,999.99,06/06/19 10:13,"935 Highland St, Austin, TX 73301" +207304,AAA Batteries (4-pack),1,2.99,06/06/19 12:30,"333 Adams St, Boston, MA 02215" +207305,Bose SoundSport Headphones,1,99.99,06/09/19 17:05,"304 Cedar St, San Francisco, CA 94016" +207306,Google Phone,1,600,06/09/19 21:59,"621 Highland St, Boston, MA 02215" +207307,AAA Batteries (4-pack),1,2.99,06/12/19 06:53,"7 Cherry St, Boston, MA 02215" +207308,Apple Airpods Headphones,1,150,06/25/19 15:19,"896 Wilson St, Atlanta, GA 30301" +207309,USB-C Charging Cable,1,11.95,06/16/19 23:35,"611 Dogwood St, San Francisco, CA 94016" +207310,AAA Batteries (4-pack),3,2.99,06/05/19 08:47,"624 Center St, New York City, NY 10001" +207311,USB-C Charging Cable,1,11.95,06/30/19 20:04,"50 Pine St, San Francisco, CA 94016" +207312,USB-C Charging Cable,1,11.95,06/23/19 10:15,"11 9th St, Portland, OR 97035" +207313,AA Batteries (4-pack),1,3.84,06/15/19 12:41,"120 North St, Dallas, TX 75001" +207314,AA Batteries (4-pack),1,3.84,06/06/19 14:47,"811 8th St, San Francisco, CA 94016" +207315,Macbook Pro Laptop,1,1700,06/01/19 14:08,"259 13th St, New York City, NY 10001" +207316,20in Monitor,1,109.99,06/05/19 13:12,"679 5th St, Los Angeles, CA 90001" +207317,AA Batteries (4-pack),1,3.84,06/12/19 23:06,"783 Maple St, Portland, OR 97035" +207317,AAA Batteries (4-pack),1,2.99,06/12/19 23:06,"783 Maple St, Portland, OR 97035" +207318,Macbook Pro Laptop,1,1700,06/01/19 11:24,"697 Highland St, San Francisco, CA 94016" +207319,Vareebadd Phone,1,400,06/24/19 20:24,"599 Cedar St, San Francisco, CA 94016" +207319,Wired Headphones,1,11.99,06/24/19 20:24,"599 Cedar St, San Francisco, CA 94016" +207320,27in 4K Gaming Monitor,1,389.99,06/29/19 19:03,"447 Jefferson St, Los Angeles, CA 90001" +207321,Lightning Charging Cable,1,14.95,06/05/19 18:25,"699 6th St, San Francisco, CA 94016" +207322,Lightning Charging Cable,1,14.95,06/20/19 23:02,"210 Hickory St, Portland, ME 04101" +207323,AAA Batteries (4-pack),1,2.99,06/20/19 20:20,"216 11th St, Atlanta, GA 30301" +207324,Apple Airpods Headphones,1,150,06/29/19 17:54,"838 Highland St, Atlanta, GA 30301" +207325,34in Ultrawide Monitor,1,379.99,06/02/19 20:10,"914 Walnut St, San Francisco, CA 94016" +207326,Bose SoundSport Headphones,1,99.99,06/15/19 19:13,"282 Jackson St, San Francisco, CA 94016" +207327,USB-C Charging Cable,1,11.95,06/23/19 11:55,"684 8th St, Austin, TX 73301" +207328,AA Batteries (4-pack),1,3.84,06/10/19 02:34,"234 Sunset St, San Francisco, CA 94016" +207329,Google Phone,1,600,06/10/19 19:30,"492 Lake St, Los Angeles, CA 90001" +207330,27in FHD Monitor,1,149.99,06/29/19 09:27,"442 Highland St, San Francisco, CA 94016" +207331,Wired Headphones,1,11.99,06/25/19 19:29,"244 Elm St, Los Angeles, CA 90001" +207332,AAA Batteries (4-pack),1,2.99,06/01/19 09:23,"31 7th St, Dallas, TX 75001" +207333,iPhone,1,700,06/15/19 09:54,"183 River St, Los Angeles, CA 90001" +207334,20in Monitor,1,109.99,06/25/19 15:16,"606 Hill St, San Francisco, CA 94016" +207335,Lightning Charging Cable,1,14.95,06/16/19 14:43,"327 Chestnut St, Dallas, TX 75001" +207336,Flatscreen TV,1,300,06/07/19 15:08,"107 Main St, Boston, MA 02215" +207337,ThinkPad Laptop,1,999.99,06/20/19 20:43,"572 Hickory St, San Francisco, CA 94016" +207338,AAA Batteries (4-pack),2,2.99,06/11/19 08:30,"802 Forest St, Atlanta, GA 30301" +207339,34in Ultrawide Monitor,1,379.99,06/26/19 10:58,"619 Cedar St, Seattle, WA 98101" +207340,AAA Batteries (4-pack),1,2.99,06/19/19 21:55,"571 13th St, San Francisco, CA 94016" +207341,Bose SoundSport Headphones,1,99.99,06/23/19 14:52,"883 13th St, San Francisco, CA 94016" +207342,Lightning Charging Cable,1,14.95,06/27/19 20:56,"81 13th St, San Francisco, CA 94016" +207343,27in FHD Monitor,1,149.99,06/12/19 15:11,"385 Willow St, Seattle, WA 98101" +207344,Wired Headphones,1,11.99,06/28/19 15:48,"342 Lakeview St, Seattle, WA 98101" +207345,Wired Headphones,1,11.99,06/24/19 08:40,"516 4th St, Los Angeles, CA 90001" +207346,Bose SoundSport Headphones,1,99.99,06/13/19 12:08,"442 Washington St, Dallas, TX 75001" +207347,27in 4K Gaming Monitor,1,389.99,06/02/19 15:21,"275 Forest St, Boston, MA 02215" +207348,AA Batteries (4-pack),1,3.84,06/18/19 07:26,"467 Meadow St, New York City, NY 10001" +207349,USB-C Charging Cable,1,11.95,06/22/19 06:25,"639 West St, Austin, TX 73301" +207350,USB-C Charging Cable,1,11.95,06/08/19 14:40,"218 Lincoln St, New York City, NY 10001" +207351,Lightning Charging Cable,1,14.95,06/04/19 09:28,"237 River St, Dallas, TX 75001" +207352,Vareebadd Phone,1,400,06/01/19 23:08,"571 14th St, Atlanta, GA 30301" +207352,Wired Headphones,1,11.99,06/01/19 23:08,"571 14th St, Atlanta, GA 30301" +207353,Bose SoundSport Headphones,1,99.99,06/22/19 13:50,"798 Ridge St, San Francisco, CA 94016" +207354,AAA Batteries (4-pack),1,2.99,06/19/19 08:57,"556 Maple St, Boston, MA 02215" +207355,Wired Headphones,1,11.99,06/14/19 18:02,"680 Park St, Los Angeles, CA 90001" +207356,Vareebadd Phone,1,400,06/15/19 23:20,"381 Church St, Los Angeles, CA 90001" +207357,Lightning Charging Cable,1,14.95,06/30/19 10:02,"290 Ridge St, Boston, MA 02215" +207358,34in Ultrawide Monitor,1,379.99,06/06/19 16:15,"961 Main St, Seattle, WA 98101" +207359,Apple Airpods Headphones,1,150,06/11/19 13:20,"201 Meadow St, New York City, NY 10001" +207360,Lightning Charging Cable,1,14.95,06/17/19 23:19,"339 13th St, San Francisco, CA 94016" +207361,Apple Airpods Headphones,1,150,06/20/19 15:34,"577 1st St, Los Angeles, CA 90001" +207362,Google Phone,1,600,06/09/19 14:19,"140 Willow St, San Francisco, CA 94016" +207363,27in FHD Monitor,1,149.99,06/29/19 20:19,"766 Adams St, Atlanta, GA 30301" +207364,27in FHD Monitor,1,149.99,06/12/19 13:01,"863 Pine St, New York City, NY 10001" +207365,Apple Airpods Headphones,1,150,06/24/19 19:14,"871 River St, Los Angeles, CA 90001" +207366,Bose SoundSport Headphones,1,99.99,06/16/19 01:28,"846 Dogwood St, Boston, MA 02215" +207366,Lightning Charging Cable,1,14.95,06/16/19 01:28,"846 Dogwood St, Boston, MA 02215" +207367,Macbook Pro Laptop,1,1700,06/15/19 18:35,"2 Jefferson St, Seattle, WA 98101" +207368,Wired Headphones,1,11.99,06/11/19 18:30,"190 Hill St, San Francisco, CA 94016" +207369,USB-C Charging Cable,1,11.95,06/28/19 21:06,"725 Forest St, New York City, NY 10001" +207370,Apple Airpods Headphones,1,150,06/03/19 17:18,"326 Highland St, New York City, NY 10001" +207371,Lightning Charging Cable,1,14.95,06/05/19 08:21,"963 5th St, Dallas, TX 75001" +207372,Google Phone,1,600,06/23/19 12:54,"783 8th St, Atlanta, GA 30301" +207373,USB-C Charging Cable,2,11.95,06/24/19 05:30,"716 Dogwood St, Austin, TX 73301" +207374,Apple Airpods Headphones,1,150,06/07/19 14:15,"943 Madison St, Los Angeles, CA 90001" +207375,20in Monitor,1,109.99,06/29/19 10:03,"785 Ridge St, Seattle, WA 98101" +207376,Flatscreen TV,1,300,06/30/19 13:47,"562 5th St, Los Angeles, CA 90001" +207377,Apple Airpods Headphones,1,150,06/20/19 11:54,"959 Adams St, Los Angeles, CA 90001" +207378,Lightning Charging Cable,1,14.95,06/03/19 10:05,"436 Wilson St, Los Angeles, CA 90001" +207379,Apple Airpods Headphones,1,150,06/25/19 16:00,"392 8th St, San Francisco, CA 94016" +207379,iPhone,1,700,06/25/19 16:00,"392 8th St, San Francisco, CA 94016" +207380,Apple Airpods Headphones,1,150,06/09/19 22:50,"676 14th St, Los Angeles, CA 90001" +207381,USB-C Charging Cable,2,11.95,06/05/19 12:05,"386 Jackson St, Boston, MA 02215" +207382,AAA Batteries (4-pack),3,2.99,06/04/19 12:29,"587 Washington St, Los Angeles, CA 90001" +207383,Bose SoundSport Headphones,1,99.99,06/03/19 11:37,"961 Highland St, San Francisco, CA 94016" +207384,iPhone,1,700,06/09/19 14:57,"112 Park St, Boston, MA 02215" +207385,AAA Batteries (4-pack),1,2.99,06/27/19 08:30,"437 Hill St, San Francisco, CA 94016" +207386,Macbook Pro Laptop,1,1700,06/11/19 20:12,"217 Meadow St, San Francisco, CA 94016" +207387,20in Monitor,1,109.99,06/16/19 15:35,"3 Ridge St, Boston, MA 02215" +207388,Flatscreen TV,2,300,06/09/19 12:40,"746 Maple St, New York City, NY 10001" +207389,Lightning Charging Cable,1,14.95,06/24/19 09:45,"235 6th St, Dallas, TX 75001" +207390,iPhone,1,700,06/29/19 14:55,"67 River St, San Francisco, CA 94016" +207391,Bose SoundSport Headphones,1,99.99,06/12/19 13:59,"177 6th St, Dallas, TX 75001" +207392,Google Phone,1,600,06/24/19 23:15,"188 Willow St, Los Angeles, CA 90001" +207393,iPhone,1,700,06/23/19 06:33,"376 West St, San Francisco, CA 94016" +207394,iPhone,1,700,06/16/19 15:22,"525 Park St, Seattle, WA 98101" +207394,Wired Headphones,1,11.99,06/16/19 15:22,"525 Park St, Seattle, WA 98101" +207395,27in 4K Gaming Monitor,1,389.99,06/19/19 11:22,"774 Wilson St, San Francisco, CA 94016" +207396,AA Batteries (4-pack),1,3.84,06/23/19 16:16,"644 Jackson St, Austin, TX 73301" +207397,Lightning Charging Cable,1,14.95,06/07/19 14:18,"253 Sunset St, San Francisco, CA 94016" +207398,Lightning Charging Cable,1,14.95,06/16/19 18:20,"155 Jackson St, Austin, TX 73301" +207399,AAA Batteries (4-pack),1,2.99,06/17/19 22:14,"919 Elm St, San Francisco, CA 94016" +207400,AA Batteries (4-pack),2,3.84,06/05/19 13:54,"654 14th St, Austin, TX 73301" +207401,AAA Batteries (4-pack),2,2.99,06/05/19 20:10,"188 1st St, San Francisco, CA 94016" +207402,AAA Batteries (4-pack),1,2.99,06/19/19 18:52,"918 5th St, New York City, NY 10001" +207403,Apple Airpods Headphones,1,150,06/21/19 13:03,"632 Elm St, Atlanta, GA 30301" +207404,27in FHD Monitor,1,149.99,06/15/19 20:59,"104 8th St, Boston, MA 02215" +207405,27in FHD Monitor,1,149.99,06/20/19 11:14,"636 5th St, Los Angeles, CA 90001" +207406,Wired Headphones,1,11.99,06/05/19 22:02,"899 13th St, New York City, NY 10001" +207407,AAA Batteries (4-pack),1,2.99,06/06/19 09:54,"952 5th St, Portland, OR 97035" +207408,AAA Batteries (4-pack),1,2.99,06/02/19 22:27,"74 13th St, New York City, NY 10001" +207409,Google Phone,1,600,06/27/19 11:18,"706 Walnut St, Boston, MA 02215" +207409,Wired Headphones,1,11.99,06/27/19 11:18,"706 Walnut St, Boston, MA 02215" +207410,Apple Airpods Headphones,1,150,06/01/19 11:13,"888 7th St, Atlanta, GA 30301" +207411,ThinkPad Laptop,1,999.99,06/22/19 09:49,"182 Adams St, New York City, NY 10001" +207412,USB-C Charging Cable,2,11.95,06/09/19 20:56,"971 Pine St, Los Angeles, CA 90001" +207413,USB-C Charging Cable,1,11.95,06/04/19 18:25,"715 Hill St, San Francisco, CA 94016" +207414,Wired Headphones,1,11.99,06/07/19 22:57,"338 Park St, Austin, TX 73301" +207415,Wired Headphones,1,11.99,06/24/19 02:00,"101 North St, Dallas, TX 75001" +207416,AAA Batteries (4-pack),1,2.99,06/19/19 23:29,"127 Jefferson St, San Francisco, CA 94016" +207417,Wired Headphones,1,11.99,06/01/19 15:42,"680 Willow St, San Francisco, CA 94016" +207417,34in Ultrawide Monitor,1,379.99,06/01/19 15:42,"680 Willow St, San Francisco, CA 94016" +207418,Apple Airpods Headphones,1,150,06/24/19 17:25,"910 10th St, New York City, NY 10001" +207419,Google Phone,1,600,06/17/19 10:49,"998 Hickory St, Boston, MA 02215" +207420,Macbook Pro Laptop,1,1700,06/07/19 17:10,"732 12th St, Boston, MA 02215" +207421,34in Ultrawide Monitor,1,379.99,06/30/19 15:56,"584 Walnut St, Boston, MA 02215" +207422,USB-C Charging Cable,1,11.95,06/07/19 17:55,"7 Willow St, Los Angeles, CA 90001" +207423,34in Ultrawide Monitor,1,379.99,06/11/19 11:00,"663 Willow St, San Francisco, CA 94016" +207423,Wired Headphones,1,11.99,06/11/19 11:00,"663 Willow St, San Francisco, CA 94016" +207424,Lightning Charging Cable,1,14.95,06/05/19 18:36,"259 South St, New York City, NY 10001" +207425,AAA Batteries (4-pack),1,2.99,06/10/19 21:17,"937 11th St, Portland, OR 97035" +,,,,, +207426,LG Washing Machine,1,600.0,06/06/19 17:05,"66 14th St, Boston, MA 02215" +207427,Google Phone,1,600,06/01/19 13:54,"459 Meadow St, Boston, MA 02215" +207428,Apple Airpods Headphones,1,150,06/06/19 19:58,"274 12th St, New York City, NY 10001" +207429,AA Batteries (4-pack),1,3.84,06/09/19 02:36,"514 Spruce St, Seattle, WA 98101" +207430,27in 4K Gaming Monitor,1,389.99,06/26/19 16:58,"334 Chestnut St, Seattle, WA 98101" +207431,AAA Batteries (4-pack),2,2.99,06/10/19 13:25,"276 9th St, Seattle, WA 98101" +207432,Apple Airpods Headphones,1,150,06/14/19 16:48,"940 Sunset St, Seattle, WA 98101" +207433,Google Phone,1,600,06/02/19 11:21,"820 Johnson St, Atlanta, GA 30301" +207434,AAA Batteries (4-pack),1,2.99,06/15/19 13:27,"449 Cedar St, Dallas, TX 75001" +207435,Lightning Charging Cable,1,14.95,06/07/19 16:16,"130 5th St, Atlanta, GA 30301" +207436,USB-C Charging Cable,1,11.95,06/18/19 14:03,"656 Adams St, New York City, NY 10001" +207437,Apple Airpods Headphones,1,150,06/16/19 13:22,"440 Main St, New York City, NY 10001" +207438,AA Batteries (4-pack),1,3.84,06/19/19 00:30,"650 Ridge St, San Francisco, CA 94016" +207439,Wired Headphones,1,11.99,06/25/19 08:34,"43 Center St, Boston, MA 02215" +207440,27in FHD Monitor,1,149.99,06/11/19 04:42,"904 Hickory St, Seattle, WA 98101" +207441,Vareebadd Phone,1,400,06/05/19 19:15,"837 Jackson St, San Francisco, CA 94016" +207442,iPhone,1,700,06/14/19 21:14,"364 Ridge St, San Francisco, CA 94016" +207442,Apple Airpods Headphones,1,150,06/14/19 21:14,"364 Ridge St, San Francisco, CA 94016" +207443,AAA Batteries (4-pack),1,2.99,06/28/19 19:32,"5 Adams St, San Francisco, CA 94016" +207444,Macbook Pro Laptop,1,1700,06/26/19 15:41,"390 Jackson St, San Francisco, CA 94016" +207445,ThinkPad Laptop,1,999.99,06/08/19 16:11,"907 Cedar St, New York City, NY 10001" +207446,Macbook Pro Laptop,1,1700,06/14/19 22:23,"824 Madison St, Dallas, TX 75001" +207447,USB-C Charging Cable,1,11.95,06/12/19 23:29,"358 2nd St, Seattle, WA 98101" +207448,USB-C Charging Cable,1,11.95,06/11/19 22:02,"303 Chestnut St, Austin, TX 73301" +207449,Lightning Charging Cable,1,14.95,06/09/19 21:03,"641 Cedar St, New York City, NY 10001" +207450,Apple Airpods Headphones,1,150,06/16/19 19:23,"789 11th St, New York City, NY 10001" +207451,Lightning Charging Cable,1,14.95,06/18/19 12:01,"827 Forest St, San Francisco, CA 94016" +207452,Lightning Charging Cable,1,14.95,06/12/19 14:19,"521 Spruce St, Austin, TX 73301" +207453,34in Ultrawide Monitor,1,379.99,06/25/19 12:54,"649 West St, Dallas, TX 75001" +207454,Bose SoundSport Headphones,1,99.99,06/16/19 19:09,"28 14th St, Portland, OR 97035" +207455,Wired Headphones,2,11.99,06/19/19 08:29,"219 Ridge St, Portland, ME 04101" +207456,USB-C Charging Cable,1,11.95,06/09/19 13:49,"25 Johnson St, Seattle, WA 98101" +207457,Wired Headphones,1,11.99,06/06/19 16:50,"7 Jefferson St, New York City, NY 10001" +207458,Apple Airpods Headphones,1,150,06/27/19 22:49,"941 11th St, Los Angeles, CA 90001" +207459,Lightning Charging Cable,1,14.95,06/21/19 05:41,"285 Madison St, Atlanta, GA 30301" +207460,Apple Airpods Headphones,1,150,06/30/19 17:31,"289 Lake St, San Francisco, CA 94016" +207461,Lightning Charging Cable,1,14.95,06/19/19 10:45,"129 7th St, Austin, TX 73301" +207462,AA Batteries (4-pack),2,3.84,06/17/19 17:29,"191 12th St, Los Angeles, CA 90001" +207463,AAA Batteries (4-pack),2,2.99,06/04/19 12:51,"101 Walnut St, Los Angeles, CA 90001" +207464,USB-C Charging Cable,1,11.95,06/21/19 17:48,"842 14th St, San Francisco, CA 94016" +207465,Lightning Charging Cable,1,14.95,06/13/19 15:01,"826 Willow St, Los Angeles, CA 90001" +207466,27in 4K Gaming Monitor,1,389.99,06/15/19 09:07,"950 Jackson St, New York City, NY 10001" +207467,AA Batteries (4-pack),4,3.84,06/05/19 14:37,"251 Dogwood St, San Francisco, CA 94016" +207468,AA Batteries (4-pack),3,3.84,06/27/19 00:26,"261 Spruce St, Dallas, TX 75001" +207469,Lightning Charging Cable,1,14.95,06/29/19 18:02,"577 Walnut St, Atlanta, GA 30301" +207470,Lightning Charging Cable,1,14.95,06/11/19 15:39,"379 Jackson St, Los Angeles, CA 90001" +207471,AAA Batteries (4-pack),1,2.99,06/18/19 18:33,"865 Lakeview St, New York City, NY 10001" +207472,34in Ultrawide Monitor,1,379.99,06/29/19 18:56,"572 Madison St, San Francisco, CA 94016" +207473,AA Batteries (4-pack),2,3.84,06/25/19 17:13,"909 North St, San Francisco, CA 94016" +207474,Bose SoundSport Headphones,1,99.99,06/07/19 19:59,"492 8th St, Atlanta, GA 30301" +207475,AAA Batteries (4-pack),3,2.99,06/29/19 11:33,"920 5th St, Seattle, WA 98101" +207476,Wired Headphones,1,11.99,06/01/19 13:20,"6 Hickory St, San Francisco, CA 94016" +207477,USB-C Charging Cable,1,11.95,06/23/19 14:52,"715 Johnson St, Boston, MA 02215" +207478,AA Batteries (4-pack),1,3.84,06/02/19 22:16,"494 South St, San Francisco, CA 94016" +207479,Vareebadd Phone,1,400,06/01/19 23:19,"720 Center St, Atlanta, GA 30301" +207480,USB-C Charging Cable,1,11.95,06/28/19 17:26,"325 Chestnut St, Seattle, WA 98101" +207481,AAA Batteries (4-pack),1,2.99,06/30/19 18:26,"467 9th St, New York City, NY 10001" +207482,Lightning Charging Cable,1,14.95,06/04/19 17:02,"532 Ridge St, San Francisco, CA 94016" +207483,USB-C Charging Cable,1,11.95,06/06/19 19:17,"875 Main St, Seattle, WA 98101" +207484,Apple Airpods Headphones,1,150,06/29/19 09:16,"795 South St, New York City, NY 10001" +207485,27in FHD Monitor,1,149.99,06/25/19 19:45,"149 Highland St, San Francisco, CA 94016" +207486,27in 4K Gaming Monitor,1,389.99,06/08/19 16:34,"829 Lake St, Boston, MA 02215" +207487,AA Batteries (4-pack),1,3.84,06/08/19 13:17,"478 Walnut St, New York City, NY 10001" +207488,AAA Batteries (4-pack),1,2.99,06/08/19 20:15,"414 Main St, New York City, NY 10001" +207489,Lightning Charging Cable,1,14.95,06/12/19 21:12,"635 Johnson St, New York City, NY 10001" +207490,Lightning Charging Cable,1,14.95,06/24/19 17:16,"595 Meadow St, Atlanta, GA 30301" +207491,AA Batteries (4-pack),1,3.84,06/01/19 19:42,"615 4th St, Portland, OR 97035" +207492,AAA Batteries (4-pack),2,2.99,06/09/19 18:17,"512 Hill St, San Francisco, CA 94016" +207493,Lightning Charging Cable,1,14.95,06/29/19 14:00,"59 Washington St, New York City, NY 10001" +207494,27in FHD Monitor,1,149.99,06/08/19 22:10,"717 10th St, Los Angeles, CA 90001" +207495,USB-C Charging Cable,1,11.95,06/28/19 16:48,"899 8th St, Seattle, WA 98101" +207496,Apple Airpods Headphones,1,150,06/25/19 22:04,"890 10th St, Boston, MA 02215" +207497,Apple Airpods Headphones,1,150,06/27/19 14:42,"124 14th St, Dallas, TX 75001" +207498,Apple Airpods Headphones,1,150,06/27/19 11:45,"12 Hickory St, New York City, NY 10001" +207499,27in FHD Monitor,1,149.99,06/29/19 09:46,"213 1st St, San Francisco, CA 94016" +207500,AAA Batteries (4-pack),1,2.99,06/11/19 19:43,"399 4th St, Boston, MA 02215" +207501,Lightning Charging Cable,1,14.95,06/03/19 19:04,"181 Maple St, Los Angeles, CA 90001" +207502,iPhone,1,700,06/23/19 19:11,"172 Hill St, Seattle, WA 98101" +207502,Lightning Charging Cable,1,14.95,06/23/19 19:11,"172 Hill St, Seattle, WA 98101" +207502,Wired Headphones,1,11.99,06/23/19 19:11,"172 Hill St, Seattle, WA 98101" +207503,Google Phone,1,600,06/30/19 21:49,"251 Jefferson St, San Francisco, CA 94016" +207504,iPhone,1,700,06/30/19 16:14,"45 Lake St, Atlanta, GA 30301" +207505,Bose SoundSport Headphones,1,99.99,06/16/19 19:27,"312 Meadow St, Portland, OR 97035" +207506,USB-C Charging Cable,1,11.95,06/13/19 07:12,"591 12th St, Austin, TX 73301" +207507,AA Batteries (4-pack),1,3.84,06/26/19 10:58,"721 Lincoln St, Seattle, WA 98101" +207508,AA Batteries (4-pack),1,3.84,06/27/19 08:19,"317 Park St, San Francisco, CA 94016" +207509,34in Ultrawide Monitor,1,379.99,06/12/19 12:47,"179 West St, New York City, NY 10001" +207510,USB-C Charging Cable,1,11.95,06/20/19 01:12,"295 10th St, San Francisco, CA 94016" +207511,Lightning Charging Cable,1,14.95,06/18/19 11:14,"716 Chestnut St, Dallas, TX 75001" +207512,AA Batteries (4-pack),1,3.84,06/08/19 19:24,"328 12th St, Portland, OR 97035" +207513,AA Batteries (4-pack),1,3.84,06/19/19 00:10,"205 7th St, Seattle, WA 98101" +207514,iPhone,1,700,06/09/19 14:52,"163 Hickory St, Portland, OR 97035" +207515,Google Phone,1,600,06/27/19 00:15,"611 Elm St, Atlanta, GA 30301" +207516,AA Batteries (4-pack),2,3.84,06/26/19 22:53,"944 Adams St, Portland, OR 97035" +207517,Wired Headphones,1,11.99,06/11/19 13:21,"87 Maple St, Seattle, WA 98101" +207518,Lightning Charging Cable,1,14.95,06/15/19 19:35,"83 Adams St, San Francisco, CA 94016" +207519,AAA Batteries (4-pack),2,2.99,06/01/19 18:12,"16 1st St, San Francisco, CA 94016" +207520,iPhone,1,700,06/02/19 15:55,"409 Jefferson St, Dallas, TX 75001" +207521,Lightning Charging Cable,1,14.95,06/10/19 01:16,"814 Jefferson St, San Francisco, CA 94016" +207522,AA Batteries (4-pack),1,3.84,06/04/19 23:19,"492 Sunset St, Boston, MA 02215" +207523,Lightning Charging Cable,1,14.95,06/20/19 19:20,"857 North St, Boston, MA 02215" +207524,Apple Airpods Headphones,1,150,06/26/19 21:07,"342 Park St, Austin, TX 73301" +207525,Google Phone,1,600,06/26/19 19:00,"429 South St, San Francisco, CA 94016" +207526,27in FHD Monitor,1,149.99,06/16/19 16:02,"946 Washington St, New York City, NY 10001" +207527,Wired Headphones,1,11.99,06/01/19 12:02,"571 Lake St, Los Angeles, CA 90001" +207528,USB-C Charging Cable,1,11.95,06/03/19 08:49,"324 West St, Seattle, WA 98101" +207529,USB-C Charging Cable,1,11.95,06/02/19 21:26,"310 Meadow St, Portland, OR 97035" +207530,Google Phone,1,600,06/14/19 17:12,"464 14th St, San Francisco, CA 94016" +207530,USB-C Charging Cable,1,11.95,06/14/19 17:12,"464 14th St, San Francisco, CA 94016" +207531,AAA Batteries (4-pack),2,2.99,06/29/19 10:58,"459 13th St, Seattle, WA 98101" +207532,34in Ultrawide Monitor,1,379.99,06/06/19 21:18,"421 9th St, Los Angeles, CA 90001" +207533,Bose SoundSport Headphones,1,99.99,06/04/19 18:00,"457 Madison St, San Francisco, CA 94016" +207534,USB-C Charging Cable,2,11.95,06/26/19 23:15,"91 Walnut St, Los Angeles, CA 90001" +207535,USB-C Charging Cable,1,11.95,06/29/19 14:11,"823 Hickory St, Los Angeles, CA 90001" +207536,Lightning Charging Cable,1,14.95,06/29/19 19:59,"26 12th St, San Francisco, CA 94016" +207537,Lightning Charging Cable,1,14.95,06/17/19 21:16,"343 Jackson St, San Francisco, CA 94016" +207538,iPhone,1,700,06/01/19 13:10,"235 Ridge St, San Francisco, CA 94016" +207538,Wired Headphones,1,11.99,06/01/19 13:10,"235 Ridge St, San Francisco, CA 94016" +207539,Lightning Charging Cable,1,14.95,06/08/19 10:41,"454 Washington St, New York City, NY 10001" +207540,Google Phone,1,600,06/26/19 19:03,"248 4th St, Seattle, WA 98101" +207541,USB-C Charging Cable,1,11.95,06/25/19 17:32,"258 Cedar St, New York City, NY 10001" +207542,AA Batteries (4-pack),1,3.84,06/28/19 13:52,"963 Washington St, Los Angeles, CA 90001" +207543,27in 4K Gaming Monitor,1,389.99,06/15/19 18:47,"324 14th St, San Francisco, CA 94016" +207544,USB-C Charging Cable,2,11.95,06/11/19 19:01,"6 6th St, San Francisco, CA 94016" +207545,27in FHD Monitor,1,149.99,06/07/19 19:05,"890 Church St, Boston, MA 02215" +207546,iPhone,1,700,06/28/19 16:46,"556 Willow St, San Francisco, CA 94016" +207547,Lightning Charging Cable,1,14.95,06/05/19 14:48,"306 2nd St, San Francisco, CA 94016" +207548,Bose SoundSport Headphones,1,99.99,06/10/19 09:24,"730 Highland St, San Francisco, CA 94016" +207549,AAA Batteries (4-pack),1,2.99,06/08/19 00:04,"884 Cherry St, Los Angeles, CA 90001" +207550,iPhone,1,700,06/19/19 12:37,"167 Jefferson St, Seattle, WA 98101" +207551,USB-C Charging Cable,1,11.95,06/09/19 19:34,"43 Hickory St, New York City, NY 10001" +207552,Apple Airpods Headphones,1,150,06/25/19 13:22,"206 13th St, San Francisco, CA 94016" +207553,USB-C Charging Cable,1,11.95,06/03/19 14:56,"869 11th St, Seattle, WA 98101" +207554,Apple Airpods Headphones,1,150,06/15/19 00:49,"237 Cherry St, Los Angeles, CA 90001" +207554,27in FHD Monitor,1,149.99,06/15/19 00:49,"237 Cherry St, Los Angeles, CA 90001" +207555,USB-C Charging Cable,1,11.95,06/13/19 07:05,"744 Hickory St, Dallas, TX 75001" +207556,34in Ultrawide Monitor,1,379.99,06/07/19 16:33,"367 1st St, New York City, NY 10001" +207556,34in Ultrawide Monitor,1,379.99,06/07/19 16:33,"367 1st St, New York City, NY 10001" +207557,AAA Batteries (4-pack),1,2.99,06/20/19 05:29,"515 Cedar St, Los Angeles, CA 90001" +207558,34in Ultrawide Monitor,1,379.99,06/05/19 15:18,"693 6th St, Los Angeles, CA 90001" +207559,AA Batteries (4-pack),1,3.84,06/03/19 14:29,"629 12th St, San Francisco, CA 94016" +207560,USB-C Charging Cable,1,11.95,06/14/19 17:07,"975 River St, Austin, TX 73301" +207561,Wired Headphones,1,11.99,06/10/19 12:50,"760 Dogwood St, Boston, MA 02215" +207562,20in Monitor,2,109.99,06/30/19 21:40,"867 Cherry St, Seattle, WA 98101" +207563,Bose SoundSport Headphones,1,99.99,06/07/19 11:02,"736 Lincoln St, Boston, MA 02215" +207564,27in FHD Monitor,1,149.99,06/16/19 06:09,"598 Hill St, San Francisco, CA 94016" +207565,Lightning Charging Cable,1,14.95,06/08/19 21:30,"315 Walnut St, Los Angeles, CA 90001" +207566,USB-C Charging Cable,2,11.95,06/10/19 19:54,"596 Dogwood St, Atlanta, GA 30301" +207567,Apple Airpods Headphones,1,150,06/30/19 14:06,"810 North St, Atlanta, GA 30301" +207568,Bose SoundSport Headphones,1,99.99,06/01/19 21:00,"664 13th St, Los Angeles, CA 90001" +207569,Bose SoundSport Headphones,1,99.99,06/03/19 20:37,"502 South St, New York City, NY 10001" +207570,AA Batteries (4-pack),1,3.84,06/06/19 17:38,"211 Hill St, San Francisco, CA 94016" +207571,AA Batteries (4-pack),1,3.84,06/29/19 09:43,"150 Johnson St, Los Angeles, CA 90001" +207572,Flatscreen TV,1,300,06/22/19 20:06,"208 North St, Portland, ME 04101" +207573,AA Batteries (4-pack),1,3.84,06/24/19 22:53,"382 Hickory St, Los Angeles, CA 90001" +207574,Flatscreen TV,1,300,06/14/19 12:57,"333 6th St, Portland, OR 97035" +207575,Lightning Charging Cable,1,14.95,06/22/19 17:34,"452 Dogwood St, San Francisco, CA 94016" +207576,27in 4K Gaming Monitor,1,389.99,06/08/19 09:29,"69 Elm St, Dallas, TX 75001" +207577,USB-C Charging Cable,1,11.95,06/23/19 12:41,"439 10th St, Los Angeles, CA 90001" +207578,USB-C Charging Cable,1,11.95,06/06/19 13:05,"546 Ridge St, Austin, TX 73301" +207579,AA Batteries (4-pack),1,3.84,06/07/19 02:46,"301 10th St, San Francisco, CA 94016" +207580,USB-C Charging Cable,1,11.95,06/02/19 07:52,"63 Wilson St, San Francisco, CA 94016" +207581,Lightning Charging Cable,1,14.95,06/04/19 13:49,"397 Elm St, Atlanta, GA 30301" +207582,27in FHD Monitor,1,149.99,06/06/19 21:15,"920 Elm St, New York City, NY 10001" +207583,Wired Headphones,2,11.99,06/22/19 21:54,"165 Lincoln St, San Francisco, CA 94016" +207584,Lightning Charging Cable,1,14.95,06/14/19 21:05,"360 13th St, Boston, MA 02215" +207585,Apple Airpods Headphones,1,150,06/29/19 16:19,"89 11th St, Los Angeles, CA 90001" +207586,USB-C Charging Cable,1,11.95,06/28/19 20:29,"555 Hill St, Dallas, TX 75001" +207587,AAA Batteries (4-pack),1,2.99,06/01/19 02:49,"862 Lincoln St, Austin, TX 73301" +207588,AAA Batteries (4-pack),1,2.99,06/11/19 21:37,"702 10th St, San Francisco, CA 94016" +207589,Lightning Charging Cable,1,14.95,06/08/19 13:26,"457 Jefferson St, San Francisco, CA 94016" +207590,Macbook Pro Laptop,1,1700,06/29/19 21:58,"604 Center St, Dallas, TX 75001" +207591,Google Phone,1,600,06/07/19 12:46,"631 Lincoln St, San Francisco, CA 94016" +207592,Apple Airpods Headphones,1,150,06/21/19 06:22,"991 Hickory St, Dallas, TX 75001" +207593,Wired Headphones,2,11.99,06/28/19 17:20,"830 Lakeview St, Seattle, WA 98101" +207594,AAA Batteries (4-pack),1,2.99,06/11/19 09:24,"351 Adams St, Boston, MA 02215" +207595,Apple Airpods Headphones,1,150,06/03/19 09:43,"370 Church St, San Francisco, CA 94016" +207596,20in Monitor,1,109.99,06/20/19 08:56,"521 Willow St, San Francisco, CA 94016" +207597,Bose SoundSport Headphones,1,99.99,06/24/19 14:00,"574 Ridge St, Austin, TX 73301" +207598,ThinkPad Laptop,1,999.99,06/02/19 21:03,"842 Church St, Boston, MA 02215" +207599,Apple Airpods Headphones,1,150,06/18/19 23:51,"393 Walnut St, Dallas, TX 75001" +207600,27in FHD Monitor,1,149.99,06/04/19 17:33,"692 Cherry St, San Francisco, CA 94016" +207601,Apple Airpods Headphones,1,150,06/09/19 17:09,"319 Jackson St, San Francisco, CA 94016" +207602,Wired Headphones,1,11.99,06/30/19 14:25,"283 West St, San Francisco, CA 94016" +207603,AAA Batteries (4-pack),1,2.99,06/05/19 21:07,"57 Center St, Seattle, WA 98101" +207604,Apple Airpods Headphones,1,150,06/18/19 02:38,"279 11th St, New York City, NY 10001" +207605,AA Batteries (4-pack),1,3.84,06/04/19 14:51,"605 Center St, Seattle, WA 98101" +207606,AA Batteries (4-pack),1,3.84,06/24/19 23:34,"679 Cherry St, Atlanta, GA 30301" +207607,Google Phone,1,600,06/05/19 13:56,"532 Sunset St, Boston, MA 02215" +207608,USB-C Charging Cable,1,11.95,06/15/19 19:11,"934 Lake St, New York City, NY 10001" +207609,Lightning Charging Cable,1,14.95,06/17/19 15:42,"65 Park St, Atlanta, GA 30301" +207610,Apple Airpods Headphones,1,150,06/04/19 19:50,"263 8th St, Austin, TX 73301" +207611,AAA Batteries (4-pack),1,2.99,06/15/19 10:24,"482 Lake St, Los Angeles, CA 90001" +207612,AA Batteries (4-pack),1,3.84,06/18/19 21:37,"462 West St, New York City, NY 10001" +207613,27in 4K Gaming Monitor,1,389.99,06/29/19 23:03,"32 South St, Boston, MA 02215" +207614,27in FHD Monitor,1,149.99,06/20/19 10:38,"921 Spruce St, San Francisco, CA 94016" +207615,Bose SoundSport Headphones,1,99.99,06/23/19 17:37,"159 Church St, Los Angeles, CA 90001" +207616,Google Phone,1,600,06/19/19 19:01,"882 5th St, San Francisco, CA 94016" +207617,27in 4K Gaming Monitor,1,389.99,06/08/19 10:58,"258 1st St, Los Angeles, CA 90001" +207617,Flatscreen TV,1,300,06/08/19 10:58,"258 1st St, Los Angeles, CA 90001" +207618,ThinkPad Laptop,1,999.99,06/11/19 19:27,"578 Elm St, Seattle, WA 98101" +207619,ThinkPad Laptop,1,999.99,06/14/19 08:00,"335 Hill St, Los Angeles, CA 90001" +207620,USB-C Charging Cable,1,11.95,06/21/19 16:07,"436 Jefferson St, Portland, ME 04101" +207621,Bose SoundSport Headphones,1,99.99,06/24/19 21:46,"490 River St, Dallas, TX 75001" +207622,Google Phone,1,600,06/21/19 09:32,"292 Johnson St, Dallas, TX 75001" +207623,Bose SoundSport Headphones,1,99.99,06/15/19 23:03,"924 12th St, Dallas, TX 75001" +207624,Macbook Pro Laptop,1,1700,06/29/19 23:16,"472 4th St, San Francisco, CA 94016" +207625,AA Batteries (4-pack),2,3.84,06/14/19 19:45,"660 9th St, Dallas, TX 75001" +207626,iPhone,1,700,06/23/19 19:31,"123 West St, Boston, MA 02215" +207627,Lightning Charging Cable,1,14.95,06/11/19 16:46,"405 Cherry St, Dallas, TX 75001" +207628,27in FHD Monitor,1,149.99,06/10/19 12:20,"259 Meadow St, Dallas, TX 75001" +207629,Apple Airpods Headphones,1,150,06/13/19 18:28,"818 Elm St, Los Angeles, CA 90001" +207630,27in FHD Monitor,1,149.99,06/11/19 11:33,"136 4th St, San Francisco, CA 94016" +207631,ThinkPad Laptop,1,999.99,06/23/19 11:11,"888 Adams St, Los Angeles, CA 90001" +207632,Lightning Charging Cable,1,14.95,06/18/19 18:17,"419 West St, Los Angeles, CA 90001" +207633,Wired Headphones,1,11.99,06/04/19 07:18,"812 Madison St, San Francisco, CA 94016" +207634,27in 4K Gaming Monitor,1,389.99,06/10/19 09:15,"856 North St, New York City, NY 10001" +207635,USB-C Charging Cable,1,11.95,06/29/19 08:22,"67 West St, Los Angeles, CA 90001" +207636,USB-C Charging Cable,1,11.95,06/09/19 14:23,"665 2nd St, Boston, MA 02215" +207637,USB-C Charging Cable,1,11.95,06/26/19 20:15,"933 Hickory St, Dallas, TX 75001" +207638,20in Monitor,1,109.99,06/20/19 11:30,"12 Lake St, Boston, MA 02215" +207639,Wired Headphones,1,11.99,06/28/19 06:06,"497 Washington St, Seattle, WA 98101" +207640,27in 4K Gaming Monitor,1,389.99,06/19/19 17:27,"843 Willow St, New York City, NY 10001" +207641,Wired Headphones,1,11.99,06/30/19 23:26,"704 Sunset St, New York City, NY 10001" +207642,USB-C Charging Cable,1,11.95,06/17/19 13:03,"906 Lincoln St, Portland, OR 97035" +207643,AA Batteries (4-pack),2,3.84,06/12/19 19:38,"191 River St, Seattle, WA 98101" +207644,Macbook Pro Laptop,1,1700,06/17/19 10:30,"150 Washington St, New York City, NY 10001" +207645,USB-C Charging Cable,1,11.95,06/13/19 18:10,"127 Willow St, Seattle, WA 98101" +207646,Wired Headphones,1,11.99,06/07/19 10:48,"276 Wilson St, San Francisco, CA 94016" +207647,iPhone,1,700,06/05/19 20:34,"405 Sunset St, Boston, MA 02215" +207648,Lightning Charging Cable,1,14.95,06/17/19 16:40,"344 Forest St, Dallas, TX 75001" +207649,USB-C Charging Cable,1,11.95,06/21/19 08:22,"186 Sunset St, New York City, NY 10001" +207650,Wired Headphones,1,11.99,06/03/19 21:25,"58 Highland St, Portland, OR 97035" +207651,AAA Batteries (4-pack),1,2.99,06/24/19 21:12,"387 5th St, Seattle, WA 98101" +207652,27in FHD Monitor,1,149.99,06/11/19 19:27,"627 Lakeview St, Boston, MA 02215" +207653,AA Batteries (4-pack),1,3.84,06/01/19 19:54,"625 7th St, Los Angeles, CA 90001" +207654,AA Batteries (4-pack),1,3.84,06/30/19 04:02,"732 Johnson St, New York City, NY 10001" +207655,Lightning Charging Cable,1,14.95,06/04/19 17:45,"835 12th St, San Francisco, CA 94016" +207656,Wired Headphones,1,11.99,06/30/19 13:22,"82 Church St, Los Angeles, CA 90001" +207657,Bose SoundSport Headphones,1,99.99,06/21/19 01:27,"274 5th St, Los Angeles, CA 90001" +207658,AA Batteries (4-pack),2,3.84,06/08/19 15:42,"109 South St, Austin, TX 73301" +207659,AA Batteries (4-pack),1,3.84,06/03/19 15:32,"119 5th St, San Francisco, CA 94016" +207660,AA Batteries (4-pack),1,3.84,06/24/19 08:53,"244 4th St, San Francisco, CA 94016" +207661,Wired Headphones,2,11.99,06/08/19 15:27,"763 5th St, San Francisco, CA 94016" +207662,27in FHD Monitor,1,149.99,06/27/19 15:46,"804 Lake St, Dallas, TX 75001" +207663,USB-C Charging Cable,1,11.95,06/15/19 10:40,"898 Madison St, Los Angeles, CA 90001" +207664,Macbook Pro Laptop,1,1700,06/10/19 18:20,"756 13th St, New York City, NY 10001" +207665,Bose SoundSport Headphones,1,99.99,06/25/19 15:41,"521 Pine St, San Francisco, CA 94016" +207666,AA Batteries (4-pack),1,3.84,06/10/19 10:35,"360 Washington St, San Francisco, CA 94016" +207667,USB-C Charging Cable,1,11.95,06/26/19 07:45,"875 Madison St, New York City, NY 10001" +207668,Apple Airpods Headphones,1,150,06/25/19 20:56,"22 Forest St, Boston, MA 02215" +207669,Macbook Pro Laptop,1,1700,06/17/19 17:21,"382 Sunset St, San Francisco, CA 94016" +207670,Wired Headphones,1,11.99,06/13/19 17:09,"441 South St, Los Angeles, CA 90001" +207671,Macbook Pro Laptop,1,1700,06/17/19 13:09,"78 Willow St, Atlanta, GA 30301" +207672,Flatscreen TV,1,300,06/06/19 15:54,"634 Chestnut St, Austin, TX 73301" +207673,ThinkPad Laptop,1,999.99,06/29/19 08:25,"274 Washington St, Los Angeles, CA 90001" +207674,Apple Airpods Headphones,1,150,06/20/19 20:56,"461 Lake St, Los Angeles, CA 90001" +207675,iPhone,1,700,06/19/19 09:29,"153 Washington St, New York City, NY 10001" +207676,AAA Batteries (4-pack),1,2.99,06/22/19 11:12,"206 Ridge St, Portland, ME 04101" +207677,Wired Headphones,2,11.99,06/20/19 22:37,"779 Meadow St, San Francisco, CA 94016" +207678,Wired Headphones,1,11.99,06/28/19 12:36,"422 13th St, Boston, MA 02215" +207679,AA Batteries (4-pack),1,3.84,06/04/19 15:07,"375 Highland St, San Francisco, CA 94016" +207680,Google Phone,1,600,06/01/19 17:47,"804 Jackson St, San Francisco, CA 94016" +207680,USB-C Charging Cable,1,11.95,06/01/19 17:47,"804 Jackson St, San Francisco, CA 94016" +207681,27in FHD Monitor,1,149.99,06/26/19 19:55,"266 10th St, San Francisco, CA 94016" +207682,34in Ultrawide Monitor,1,379.99,06/22/19 18:37,"327 Lincoln St, Dallas, TX 75001" +207683,Wired Headphones,1,11.99,06/22/19 07:28,"906 8th St, San Francisco, CA 94016" +207684,Wired Headphones,2,11.99,06/05/19 10:18,"617 1st St, San Francisco, CA 94016" +207685,Bose SoundSport Headphones,2,99.99,06/06/19 18:22,"235 Elm St, Boston, MA 02215" +207686,Wired Headphones,1,11.99,06/07/19 17:23,"56 Meadow St, New York City, NY 10001" +207687,AAA Batteries (4-pack),3,2.99,06/11/19 20:46,"765 Pine St, Seattle, WA 98101" +207688,Lightning Charging Cable,1,14.95,06/14/19 18:56,"819 6th St, Portland, ME 04101" +207689,AA Batteries (4-pack),2,3.84,06/07/19 17:58,"132 12th St, Boston, MA 02215" +207690,AA Batteries (4-pack),1,3.84,06/10/19 10:22,"560 Highland St, Boston, MA 02215" +207691,Lightning Charging Cable,1,14.95,06/14/19 19:31,"134 9th St, Austin, TX 73301" +207692,AA Batteries (4-pack),3,3.84,06/13/19 14:46,"979 Forest St, Portland, OR 97035" +207693,USB-C Charging Cable,1,11.95,06/13/19 14:38,"241 Hickory St, Dallas, TX 75001" +207694,Wired Headphones,1,11.99,06/05/19 16:38,"596 8th St, Boston, MA 02215" +207695,USB-C Charging Cable,1,11.95,06/14/19 14:01,"256 North St, San Francisco, CA 94016" +207695,USB-C Charging Cable,2,11.95,06/14/19 14:01,"256 North St, San Francisco, CA 94016" +207696,ThinkPad Laptop,1,999.99,06/20/19 12:31,"418 Meadow St, New York City, NY 10001" +207697,Wired Headphones,1,11.99,06/25/19 20:16,"307 Cedar St, Boston, MA 02215" +207698,iPhone,1,700,06/26/19 17:38,"699 1st St, San Francisco, CA 94016" +207699,34in Ultrawide Monitor,1,379.99,06/27/19 18:38,"482 Lake St, Dallas, TX 75001" +207700,Macbook Pro Laptop,1,1700,06/29/19 08:31,"20 Ridge St, Atlanta, GA 30301" +207701,Flatscreen TV,1,300,06/08/19 08:02,"333 North St, San Francisco, CA 94016" +207702,AAA Batteries (4-pack),2,2.99,06/11/19 07:40,"800 2nd St, San Francisco, CA 94016" +207703,Lightning Charging Cable,1,14.95,06/26/19 19:50,"146 12th St, Los Angeles, CA 90001" +207704,Wired Headphones,2,11.99,06/07/19 23:20,"207 Ridge St, Dallas, TX 75001" +207705,34in Ultrawide Monitor,1,379.99,06/26/19 23:31,"665 12th St, New York City, NY 10001" +207706,USB-C Charging Cable,1,11.95,06/14/19 21:46,"79 Wilson St, San Francisco, CA 94016" +207707,Wired Headphones,1,11.99,06/11/19 23:08,"35 Wilson St, Los Angeles, CA 90001" +207708,Apple Airpods Headphones,1,150,06/15/19 06:27,"807 7th St, Los Angeles, CA 90001" +207709,AAA Batteries (4-pack),1,2.99,06/29/19 22:14,"192 Walnut St, Los Angeles, CA 90001" +207710,Wired Headphones,1,11.99,06/24/19 20:18,"427 Center St, Boston, MA 02215" +207711,iPhone,1,700,06/16/19 15:09,"677 Maple St, Los Angeles, CA 90001" +207711,Wired Headphones,1,11.99,06/16/19 15:09,"677 Maple St, Los Angeles, CA 90001" +207712,AA Batteries (4-pack),1,3.84,06/15/19 13:52,"409 Jefferson St, New York City, NY 10001" +207713,Apple Airpods Headphones,1,150,06/05/19 11:43,"864 Meadow St, San Francisco, CA 94016" +207714,Apple Airpods Headphones,1,150,06/28/19 15:22,"647 7th St, Los Angeles, CA 90001" +207715,AAA Batteries (4-pack),1,2.99,06/14/19 16:44,"889 Wilson St, San Francisco, CA 94016" +207716,iPhone,1,700,06/19/19 21:45,"110 Hill St, San Francisco, CA 94016" +207717,Apple Airpods Headphones,1,150,06/24/19 14:48,"607 Maple St, Los Angeles, CA 90001" +207718,iPhone,1,700,06/26/19 20:33,"172 5th St, San Francisco, CA 94016" +207719,Macbook Pro Laptop,1,1700,06/20/19 19:44,"34 Forest St, San Francisco, CA 94016" +207720,AAA Batteries (4-pack),1,2.99,06/09/19 14:56,"305 Walnut St, Seattle, WA 98101" +207721,AA Batteries (4-pack),1,3.84,06/23/19 14:51,"15 Jackson St, Seattle, WA 98101" +207722,iPhone,1,700,06/15/19 14:53,"346 Lakeview St, San Francisco, CA 94016" +207722,USB-C Charging Cable,1,11.95,06/15/19 14:53,"346 Lakeview St, San Francisco, CA 94016" +207723,Bose SoundSport Headphones,1,99.99,06/07/19 18:34,"644 4th St, Atlanta, GA 30301" +207724,AAA Batteries (4-pack),1,2.99,06/19/19 10:52,"654 6th St, Portland, ME 04101" +207725,34in Ultrawide Monitor,1,379.99,06/02/19 14:15,"406 Walnut St, San Francisco, CA 94016" +207726,AA Batteries (4-pack),1,3.84,06/27/19 21:46,"700 10th St, San Francisco, CA 94016" +207727,Vareebadd Phone,1,400,06/25/19 18:48,"732 Meadow St, Seattle, WA 98101" +207727,USB-C Charging Cable,1,11.95,06/25/19 18:48,"732 Meadow St, Seattle, WA 98101" +207728,Apple Airpods Headphones,1,150,06/08/19 20:05,"948 Ridge St, New York City, NY 10001" +207729,ThinkPad Laptop,1,999.99,06/11/19 20:56,"916 Lincoln St, Los Angeles, CA 90001" +207730,Flatscreen TV,1,300,06/26/19 21:06,"505 Center St, San Francisco, CA 94016" +207731,AAA Batteries (4-pack),1,2.99,06/18/19 21:24,"598 Forest St, Portland, ME 04101" +207732,27in 4K Gaming Monitor,1,389.99,06/30/19 16:09,"918 Spruce St, Boston, MA 02215" +207733,Macbook Pro Laptop,1,1700,06/30/19 20:21,"146 7th St, San Francisco, CA 94016" +207734,Flatscreen TV,1,300,06/05/19 15:41,"85 Forest St, Atlanta, GA 30301" +207735,27in 4K Gaming Monitor,1,389.99,06/08/19 23:26,"231 4th St, Boston, MA 02215" +207736,Lightning Charging Cable,1,14.95,06/12/19 09:16,"148 Walnut St, San Francisco, CA 94016" +207737,Lightning Charging Cable,1,14.95,06/30/19 17:38,"348 Hickory St, Austin, TX 73301" +207738,Vareebadd Phone,1,400,06/27/19 23:02,"253 9th St, Los Angeles, CA 90001" +207739,27in FHD Monitor,1,149.99,06/02/19 19:04,"767 Jefferson St, Portland, OR 97035" +207740,Wired Headphones,1,11.99,06/02/19 19:46,"841 7th St, San Francisco, CA 94016" +207741,AA Batteries (4-pack),1,3.84,06/09/19 20:43,"684 Jefferson St, San Francisco, CA 94016" +207742,AA Batteries (4-pack),2,3.84,06/02/19 13:21,"619 4th St, Boston, MA 02215" +207743,Wired Headphones,1,11.99,06/24/19 20:25,"568 Walnut St, Portland, ME 04101" +207744,USB-C Charging Cable,3,11.95,06/28/19 17:38,"109 8th St, Boston, MA 02215" +207745,Macbook Pro Laptop,1,1700,06/24/19 17:23,"853 River St, Dallas, TX 75001" +207746,AA Batteries (4-pack),1,3.84,06/12/19 17:05,"362 Elm St, San Francisco, CA 94016" +207747,AAA Batteries (4-pack),2,2.99,06/07/19 13:30,"309 5th St, Los Angeles, CA 90001" +207748,AA Batteries (4-pack),1,3.84,06/04/19 14:58,"412 Main St, Seattle, WA 98101" +207749,Bose SoundSport Headphones,1,99.99,06/11/19 16:30,"338 Park St, San Francisco, CA 94016" +207750,iPhone,1,700,06/01/19 21:16,"274 Willow St, Los Angeles, CA 90001" +207751,AA Batteries (4-pack),1,3.84,06/17/19 08:39,"657 7th St, Seattle, WA 98101" +207752,AAA Batteries (4-pack),1,2.99,06/26/19 12:55,"201 Madison St, Dallas, TX 75001" +207753,Bose SoundSport Headphones,1,99.99,06/25/19 09:58,"539 Adams St, Dallas, TX 75001" +207754,Google Phone,1,600,06/13/19 13:11,"444 Hickory St, Los Angeles, CA 90001" +207755,USB-C Charging Cable,1,11.95,06/04/19 18:28,"439 Jackson St, Dallas, TX 75001" +207756,27in FHD Monitor,1,149.99,06/11/19 11:56,"259 Hill St, Seattle, WA 98101" +207756,Wired Headphones,1,11.99,06/11/19 11:56,"259 Hill St, Seattle, WA 98101" +207757,iPhone,1,700,06/17/19 12:07,"916 Jackson St, Los Angeles, CA 90001" +207758,34in Ultrawide Monitor,1,379.99,06/07/19 21:06,"691 Forest St, Seattle, WA 98101" +207759,AA Batteries (4-pack),2,3.84,06/14/19 15:23,"166 Center St, Atlanta, GA 30301" +207760,AA Batteries (4-pack),1,3.84,06/25/19 17:47,"422 Johnson St, San Francisco, CA 94016" +207761,Google Phone,1,600,06/21/19 18:47,"288 Willow St, Seattle, WA 98101" +207761,USB-C Charging Cable,1,11.95,06/21/19 18:47,"288 Willow St, Seattle, WA 98101" +207762,34in Ultrawide Monitor,1,379.99,06/24/19 08:45,"66 Church St, San Francisco, CA 94016" +207763,AA Batteries (4-pack),1,3.84,06/06/19 10:54,"631 Jefferson St, New York City, NY 10001" +207764,Apple Airpods Headphones,1,150,06/05/19 20:01,"59 Washington St, San Francisco, CA 94016" +207765,iPhone,1,700,06/07/19 12:21,"895 North St, Austin, TX 73301" +207766,27in FHD Monitor,1,149.99,06/16/19 14:04,"533 Spruce St, Atlanta, GA 30301" +207767,27in 4K Gaming Monitor,1,389.99,06/15/19 08:51,"119 North St, Austin, TX 73301" +207768,iPhone,1,700,06/11/19 12:17,"949 Lincoln St, New York City, NY 10001" +207769,20in Monitor,1,109.99,06/24/19 12:20,"755 Park St, Atlanta, GA 30301" +207770,27in 4K Gaming Monitor,1,389.99,06/09/19 12:22,"651 Church St, San Francisco, CA 94016" +207771,AA Batteries (4-pack),2,3.84,06/22/19 21:59,"884 Pine St, San Francisco, CA 94016" +207772,27in FHD Monitor,1,149.99,06/20/19 22:05,"413 Madison St, Seattle, WA 98101" +207773,ThinkPad Laptop,1,999.99,06/23/19 17:59,"454 11th St, Boston, MA 02215" +207774,27in FHD Monitor,1,149.99,06/12/19 14:20,"406 Chestnut St, San Francisco, CA 94016" +207775,USB-C Charging Cable,1,11.95,06/12/19 12:32,"799 River St, San Francisco, CA 94016" +207776,Lightning Charging Cable,1,14.95,06/19/19 15:52,"905 Chestnut St, San Francisco, CA 94016" +207777,Wired Headphones,1,11.99,06/22/19 18:26,"84 Pine St, Atlanta, GA 30301" +207778,iPhone,1,700,06/06/19 12:21,"333 Lake St, Atlanta, GA 30301" +207778,Lightning Charging Cable,1,14.95,06/06/19 12:21,"333 Lake St, Atlanta, GA 30301" +207779,20in Monitor,1,109.99,06/14/19 19:20,"784 Highland St, Los Angeles, CA 90001" +207780,Wired Headphones,1,11.99,06/06/19 09:29,"971 Willow St, Los Angeles, CA 90001" +207780,27in 4K Gaming Monitor,1,389.99,06/06/19 09:29,"971 Willow St, Los Angeles, CA 90001" +207781,AAA Batteries (4-pack),1,2.99,06/06/19 15:38,"182 Main St, Austin, TX 73301" +207782,AAA Batteries (4-pack),1,2.99,06/29/19 17:47,"918 Highland St, Los Angeles, CA 90001" +207783,ThinkPad Laptop,1,999.99,06/02/19 11:16,"830 Hickory St, Los Angeles, CA 90001" +207784,Lightning Charging Cable,1,14.95,06/13/19 21:29,"685 North St, New York City, NY 10001" +207785,Google Phone,1,600,06/08/19 20:16,"285 Elm St, San Francisco, CA 94016" +207785,USB-C Charging Cable,1,11.95,06/08/19 20:16,"285 Elm St, San Francisco, CA 94016" +207786,Lightning Charging Cable,1,14.95,06/25/19 10:30,"922 14th St, San Francisco, CA 94016" +207787,Wired Headphones,1,11.99,06/17/19 12:57,"296 Washington St, Los Angeles, CA 90001" +207788,20in Monitor,1,109.99,06/14/19 16:33,"196 Jefferson St, Seattle, WA 98101" +207789,AAA Batteries (4-pack),1,2.99,06/25/19 22:11,"260 Adams St, San Francisco, CA 94016" +207790,27in FHD Monitor,1,149.99,06/05/19 06:03,"667 Pine St, Dallas, TX 75001" +207791,Wired Headphones,1,11.99,06/25/19 04:15,"241 Lincoln St, Austin, TX 73301" +207792,Flatscreen TV,1,300,06/23/19 00:32,"640 Highland St, Los Angeles, CA 90001" +207792,34in Ultrawide Monitor,1,379.99,06/23/19 00:32,"640 Highland St, Los Angeles, CA 90001" +207793,AA Batteries (4-pack),2,3.84,06/07/19 22:12,"136 Ridge St, Boston, MA 02215" +207794,AA Batteries (4-pack),2,3.84,06/09/19 13:52,"306 10th St, Austin, TX 73301" +207795,Lightning Charging Cable,1,14.95,06/20/19 10:38,"235 Lake St, Boston, MA 02215" +207796,Wired Headphones,2,11.99,06/30/19 08:29,"684 14th St, San Francisco, CA 94016" +207797,Apple Airpods Headphones,1,150,06/30/19 15:06,"928 Spruce St, New York City, NY 10001" +207798,Wired Headphones,1,11.99,06/12/19 18:15,"59 Jefferson St, Los Angeles, CA 90001" +207799,Wired Headphones,1,11.99,06/06/19 17:53,"369 5th St, San Francisco, CA 94016" +207800,20in Monitor,1,109.99,06/20/19 12:09,"500 Walnut St, San Francisco, CA 94016" +207801,Apple Airpods Headphones,1,150,06/28/19 10:41,"741 Hill St, Boston, MA 02215" +207802,USB-C Charging Cable,2,11.95,06/23/19 10:06,"277 Lakeview St, San Francisco, CA 94016" +207803,AA Batteries (4-pack),1,3.84,06/27/19 13:53,"922 Wilson St, Atlanta, GA 30301" +207804,AA Batteries (4-pack),1,3.84,06/22/19 18:29,"144 Wilson St, Portland, OR 97035" +207805,Wired Headphones,1,11.99,06/18/19 18:45,"533 Washington St, Boston, MA 02215" +207806,AA Batteries (4-pack),1,3.84,06/01/19 14:58,"140 Forest St, New York City, NY 10001" +207807,Apple Airpods Headphones,1,150,06/13/19 16:01,"986 Walnut St, Dallas, TX 75001" +207808,Apple Airpods Headphones,1,150,06/04/19 16:29,"251 4th St, Boston, MA 02215" +207809,Wired Headphones,1,11.99,06/10/19 14:14,"707 14th St, New York City, NY 10001" +207810,Wired Headphones,1,11.99,06/04/19 21:50,"176 9th St, Portland, OR 97035" +207811,USB-C Charging Cable,2,11.95,06/04/19 13:24,"700 Chestnut St, San Francisco, CA 94016" +207812,Flatscreen TV,1,300,06/19/19 14:37,"724 West St, San Francisco, CA 94016" +207813,AAA Batteries (4-pack),1,2.99,06/24/19 08:40,"461 2nd St, Boston, MA 02215" +207814,Lightning Charging Cable,1,14.95,06/02/19 16:32,"161 Spruce St, Atlanta, GA 30301" +207815,Macbook Pro Laptop,1,1700,06/04/19 14:02,"972 Cherry St, San Francisco, CA 94016" +207816,Macbook Pro Laptop,1,1700,06/25/19 19:10,"60 North St, Seattle, WA 98101" +207817,USB-C Charging Cable,1,11.95,06/21/19 21:35,"922 6th St, Los Angeles, CA 90001" +207818,USB-C Charging Cable,1,11.95,06/19/19 21:38,"95 South St, Los Angeles, CA 90001" +207819,Apple Airpods Headphones,1,150,06/08/19 19:40,"57 Wilson St, San Francisco, CA 94016" +207820,27in 4K Gaming Monitor,1,389.99,06/05/19 09:27,"456 Main St, New York City, NY 10001" +207821,34in Ultrawide Monitor,1,379.99,06/27/19 12:35,"912 10th St, New York City, NY 10001" +207822,Wired Headphones,1,11.99,06/17/19 22:52,"412 Forest St, New York City, NY 10001" +207823,27in FHD Monitor,1,149.99,06/11/19 12:19,"809 12th St, San Francisco, CA 94016" +207824,AA Batteries (4-pack),1,3.84,06/27/19 16:44,"885 Elm St, Austin, TX 73301" +207825,AA Batteries (4-pack),2,3.84,06/26/19 08:40,"473 Ridge St, Atlanta, GA 30301" +207826,Google Phone,1,600,06/12/19 07:45,"590 1st St, Los Angeles, CA 90001" +207827,Bose SoundSport Headphones,1,99.99,06/18/19 14:54,"672 4th St, Atlanta, GA 30301" +207828,Lightning Charging Cable,1,14.95,06/17/19 08:15,"536 Lakeview St, San Francisco, CA 94016" +207829,Bose SoundSport Headphones,2,99.99,06/09/19 10:01,"816 Walnut St, Boston, MA 02215" +207830,27in FHD Monitor,1,149.99,06/25/19 10:03,"686 Walnut St, Dallas, TX 75001" +207831,34in Ultrawide Monitor,1,379.99,06/03/19 20:56,"781 Johnson St, Portland, ME 04101" +207832,Lightning Charging Cable,1,14.95,06/07/19 18:21,"291 5th St, New York City, NY 10001" +207833,27in FHD Monitor,1,149.99,06/10/19 09:30,"45 10th St, Atlanta, GA 30301" +207834,Bose SoundSport Headphones,1,99.99,06/01/19 13:15,"914 West St, Los Angeles, CA 90001" +207835,Lightning Charging Cable,1,14.95,06/27/19 08:26,"975 Madison St, New York City, NY 10001" +207836,Apple Airpods Headphones,1,150,06/07/19 10:24,"805 12th St, Seattle, WA 98101" +207837,AAA Batteries (4-pack),1,2.99,06/19/19 18:09,"379 River St, Los Angeles, CA 90001" +207838,Google Phone,1,600,06/02/19 12:55,"593 West St, Dallas, TX 75001" +207839,AA Batteries (4-pack),2,3.84,06/28/19 13:57,"237 Jackson St, Austin, TX 73301" +207840,AA Batteries (4-pack),1,3.84,06/12/19 14:16,"519 Washington St, Dallas, TX 75001" +207841,27in 4K Gaming Monitor,1,389.99,06/19/19 13:46,"651 14th St, San Francisco, CA 94016" +207842,AAA Batteries (4-pack),1,2.99,06/06/19 19:20,"275 Johnson St, New York City, NY 10001" +207843,34in Ultrawide Monitor,1,379.99,06/23/19 16:49,"527 Washington St, Los Angeles, CA 90001" +207844,Wired Headphones,1,11.99,06/03/19 16:14,"954 13th St, San Francisco, CA 94016" +207845,Wired Headphones,1,11.99,06/06/19 17:59,"574 Church St, Los Angeles, CA 90001" +207846,Lightning Charging Cable,1,14.95,06/15/19 16:10,"603 Highland St, Dallas, TX 75001" +207847,Bose SoundSport Headphones,1,99.99,06/06/19 13:19,"861 Dogwood St, Boston, MA 02215" +207848,Lightning Charging Cable,1,14.95,06/29/19 17:07,"437 9th St, Atlanta, GA 30301" +207849,iPhone,1,700,06/15/19 16:09,"855 West St, Seattle, WA 98101" +207850,34in Ultrawide Monitor,1,379.99,06/11/19 17:43,"220 Center St, Dallas, TX 75001" +207851,Lightning Charging Cable,1,14.95,06/25/19 23:41,"42 Adams St, Boston, MA 02215" +207852,AA Batteries (4-pack),1,3.84,06/28/19 21:47,"416 Johnson St, San Francisco, CA 94016" +207853,27in FHD Monitor,1,149.99,06/08/19 15:16,"672 Lakeview St, Los Angeles, CA 90001" +207854,Google Phone,1,600,06/03/19 13:38,"659 Cherry St, Boston, MA 02215" +207854,USB-C Charging Cable,1,11.95,06/03/19 13:38,"659 Cherry St, Boston, MA 02215" +207855,27in FHD Monitor,1,149.99,06/28/19 15:14,"269 Lake St, New York City, NY 10001" +207856,Google Phone,1,600,06/19/19 23:19,"518 6th St, Dallas, TX 75001" +207856,USB-C Charging Cable,1,11.95,06/19/19 23:19,"518 6th St, Dallas, TX 75001" +207857,Lightning Charging Cable,2,14.95,06/10/19 11:37,"473 Center St, New York City, NY 10001" +207858,20in Monitor,1,109.99,06/03/19 10:52,"366 Church St, San Francisco, CA 94016" +207859,Lightning Charging Cable,1,14.95,06/28/19 18:37,"816 Washington St, Atlanta, GA 30301" +207860,Flatscreen TV,1,300,06/24/19 10:22,"325 Center St, San Francisco, CA 94016" +207861,Apple Airpods Headphones,1,150,06/04/19 08:49,"929 Pine St, Austin, TX 73301" +207862,USB-C Charging Cable,1,11.95,06/25/19 19:56,"676 Jefferson St, San Francisco, CA 94016" +207863,AA Batteries (4-pack),1,3.84,06/30/19 14:35,"60 Hill St, Dallas, TX 75001" +207864,AAA Batteries (4-pack),1,2.99,06/28/19 10:35,"68 4th St, Los Angeles, CA 90001" +207865,Lightning Charging Cable,1,14.95,06/30/19 05:00,"163 Pine St, Austin, TX 73301" +207866,AA Batteries (4-pack),1,3.84,06/16/19 22:23,"133 Forest St, Portland, OR 97035" +207867,Wired Headphones,1,11.99,06/23/19 16:56,"30 Elm St, Boston, MA 02215" +207868,AAA Batteries (4-pack),2,2.99,06/15/19 10:36,"552 Hill St, San Francisco, CA 94016" +207869,AAA Batteries (4-pack),1,2.99,06/01/19 20:13,"572 Adams St, Los Angeles, CA 90001" +207870,27in FHD Monitor,1,149.99,06/11/19 11:00,"174 5th St, Dallas, TX 75001" +207871,AA Batteries (4-pack),3,3.84,06/15/19 09:38,"777 Adams St, Los Angeles, CA 90001" +207872,27in FHD Monitor,1,149.99,06/23/19 20:17,"547 Lakeview St, Atlanta, GA 30301" +207873,AAA Batteries (4-pack),1,2.99,06/29/19 01:25,"644 4th St, Atlanta, GA 30301" +207874,Flatscreen TV,1,300,06/11/19 20:22,"22 Highland St, Seattle, WA 98101" +207875,Bose SoundSport Headphones,1,99.99,06/26/19 16:48,"170 Cherry St, San Francisco, CA 94016" +207876,AA Batteries (4-pack),1,3.84,06/26/19 10:49,"167 Ridge St, Seattle, WA 98101" +207877,34in Ultrawide Monitor,1,379.99,06/08/19 10:57,"284 Cedar St, Los Angeles, CA 90001" +207878,Flatscreen TV,1,300,06/01/19 14:11,"536 Highland St, Dallas, TX 75001" +207879,Wired Headphones,2,11.99,06/04/19 18:50,"821 10th St, Dallas, TX 75001" +207880,34in Ultrawide Monitor,1,379.99,06/28/19 13:51,"147 Chestnut St, San Francisco, CA 94016" +207881,Vareebadd Phone,1,400,06/18/19 15:07,"429 Dogwood St, New York City, NY 10001" +207882,Wired Headphones,1,11.99,06/29/19 23:14,"163 2nd St, Los Angeles, CA 90001" +207883,AA Batteries (4-pack),2,3.84,06/15/19 18:35,"374 4th St, New York City, NY 10001" +207884,AA Batteries (4-pack),1,3.84,06/13/19 13:05,"401 Forest St, New York City, NY 10001" +207885,AAA Batteries (4-pack),3,2.99,06/25/19 18:30,"945 Park St, Austin, TX 73301" +207886,27in 4K Gaming Monitor,1,389.99,06/05/19 05:08,"29 13th St, Portland, OR 97035" +207887,Apple Airpods Headphones,1,150,06/15/19 13:17,"223 14th St, Dallas, TX 75001" +207888,Apple Airpods Headphones,1,150,06/10/19 00:57,"654 6th St, New York City, NY 10001" +207889,Lightning Charging Cable,1,14.95,06/15/19 03:52,"701 Johnson St, Seattle, WA 98101" +207890,27in FHD Monitor,1,149.99,06/09/19 13:32,"767 Adams St, Los Angeles, CA 90001" +207891,Lightning Charging Cable,1,14.95,06/30/19 11:46,"253 Adams St, Seattle, WA 98101" +207892,USB-C Charging Cable,1,11.95,06/22/19 20:23,"301 Park St, New York City, NY 10001" +207893,Google Phone,1,600,06/06/19 08:42,"870 Walnut St, Boston, MA 02215" +207893,USB-C Charging Cable,1,11.95,06/06/19 08:42,"870 Walnut St, Boston, MA 02215" +207894,AAA Batteries (4-pack),2,2.99,06/27/19 07:28,"693 Cedar St, Boston, MA 02215" +207895,27in FHD Monitor,1,149.99,06/18/19 21:52,"150 Church St, New York City, NY 10001" +207896,Apple Airpods Headphones,1,150,06/16/19 04:04,"219 13th St, Dallas, TX 75001" +207897,Google Phone,1,600,06/28/19 19:04,"301 South St, San Francisco, CA 94016" +207898,AA Batteries (4-pack),1,3.84,06/26/19 20:39,"11 Adams St, New York City, NY 10001" +207899,Flatscreen TV,1,300,06/28/19 19:30,"976 Willow St, Los Angeles, CA 90001" +207900,Bose SoundSport Headphones,1,99.99,06/19/19 17:51,"559 Hill St, Seattle, WA 98101" +207901,AAA Batteries (4-pack),2,2.99,06/18/19 11:23,"831 Cherry St, Seattle, WA 98101" +207902,27in FHD Monitor,1,149.99,06/06/19 00:02,"357 Church St, Boston, MA 02215" +207903,AA Batteries (4-pack),1,3.84,06/15/19 12:00,"341 Madison St, San Francisco, CA 94016" +207904,34in Ultrawide Monitor,1,379.99,06/06/19 08:37,"164 Cherry St, Los Angeles, CA 90001" +207905,Apple Airpods Headphones,1,150,06/04/19 16:51,"901 Hickory St, Boston, MA 02215" +207906,Wired Headphones,1,11.99,06/08/19 19:06,"322 Willow St, San Francisco, CA 94016" +207907,20in Monitor,1,109.99,06/17/19 12:17,"230 Center St, Boston, MA 02215" +207908,Macbook Pro Laptop,1,1700,06/22/19 07:53,"457 5th St, New York City, NY 10001" +207909,Wired Headphones,1,11.99,06/03/19 13:10,"450 Church St, Los Angeles, CA 90001" +207910,Apple Airpods Headphones,1,150,06/25/19 15:17,"995 8th St, San Francisco, CA 94016" +207910,USB-C Charging Cable,1,11.95,06/25/19 15:17,"995 8th St, San Francisco, CA 94016" +207911,Wired Headphones,1,11.99,06/18/19 07:49,"954 Main St, San Francisco, CA 94016" +207912,AA Batteries (4-pack),1,3.84,06/18/19 11:08,"122 Church St, Austin, TX 73301" +207913,Lightning Charging Cable,1,14.95,06/16/19 19:18,"605 Cedar St, San Francisco, CA 94016" +207914,Lightning Charging Cable,1,14.95,06/19/19 09:23,"558 Walnut St, San Francisco, CA 94016" +207915,USB-C Charging Cable,1,11.95,06/02/19 12:03,"556 North St, New York City, NY 10001" +207916,20in Monitor,1,109.99,06/13/19 17:27,"398 Meadow St, Atlanta, GA 30301" +207917,USB-C Charging Cable,1,11.95,06/17/19 14:36,"57 Main St, Dallas, TX 75001" +207918,Wired Headphones,1,11.99,06/18/19 07:38,"810 Spruce St, New York City, NY 10001" +207919,Wired Headphones,1,11.99,06/11/19 13:56,"624 14th St, Atlanta, GA 30301" +207920,AA Batteries (4-pack),2,3.84,06/24/19 13:59,"150 Hickory St, New York City, NY 10001" +207921,Bose SoundSport Headphones,1,99.99,06/10/19 21:17,"281 11th St, San Francisco, CA 94016" +207922,Lightning Charging Cable,1,14.95,06/29/19 10:01,"766 Maple St, Portland, OR 97035" +207923,Apple Airpods Headphones,1,150,06/17/19 10:39,"263 Johnson St, San Francisco, CA 94016" +207924,Wired Headphones,1,11.99,06/25/19 12:24,"816 7th St, Los Angeles, CA 90001" +207925,USB-C Charging Cable,1,11.95,06/27/19 21:17,"970 River St, Los Angeles, CA 90001" +207926,iPhone,1,700,06/27/19 12:03,"394 Johnson St, Atlanta, GA 30301" +207926,Lightning Charging Cable,1,14.95,06/27/19 12:03,"394 Johnson St, Atlanta, GA 30301" +207927,USB-C Charging Cable,1,11.95,06/19/19 08:17,"160 5th St, San Francisco, CA 94016" +207928,USB-C Charging Cable,1,11.95,06/07/19 23:57,"51 Highland St, San Francisco, CA 94016" +207929,USB-C Charging Cable,1,11.95,06/25/19 20:15,"555 Lakeview St, Portland, ME 04101" +207930,Wired Headphones,1,11.99,06/05/19 04:25,"748 Hickory St, San Francisco, CA 94016" +207931,USB-C Charging Cable,1,11.95,06/03/19 10:13,"894 Cherry St, Austin, TX 73301" +207932,USB-C Charging Cable,1,11.95,06/16/19 19:31,"567 Hill St, Los Angeles, CA 90001" +207933,USB-C Charging Cable,1,11.95,06/18/19 01:20,"648 Wilson St, Dallas, TX 75001" +207934,Macbook Pro Laptop,1,1700,06/05/19 13:32,"255 River St, Boston, MA 02215" +207935,AAA Batteries (4-pack),3,2.99,06/24/19 00:04,"854 9th St, New York City, NY 10001" +207936,AA Batteries (4-pack),1,3.84,06/02/19 13:34,"263 Jackson St, San Francisco, CA 94016" +207937,Bose SoundSport Headphones,1,99.99,06/16/19 22:49,"79 Jefferson St, San Francisco, CA 94016" +207938,Vareebadd Phone,1,400,06/11/19 05:30,"140 Johnson St, New York City, NY 10001" +207939,Lightning Charging Cable,1,14.95,07/01/19 02:18,"25 7th St, Portland, ME 04101" +207940,AA Batteries (4-pack),1,3.84,06/26/19 07:43,"836 14th St, Boston, MA 02215" +207941,Lightning Charging Cable,1,14.95,06/21/19 16:07,"138 11th St, Boston, MA 02215" +207942,USB-C Charging Cable,1,11.95,06/13/19 15:59,"73 14th St, Atlanta, GA 30301" +207943,27in 4K Gaming Monitor,1,389.99,06/11/19 17:58,"461 1st St, Austin, TX 73301" +207944,AAA Batteries (4-pack),1,2.99,06/07/19 17:05,"728 Adams St, Seattle, WA 98101" +207945,Wired Headphones,1,11.99,06/19/19 12:07,"771 11th St, Dallas, TX 75001" +207946,AA Batteries (4-pack),1,3.84,06/08/19 17:29,"713 Madison St, New York City, NY 10001" +207947,ThinkPad Laptop,1,999.99,06/27/19 01:05,"736 Elm St, Los Angeles, CA 90001" +207948,AA Batteries (4-pack),1,3.84,06/29/19 20:42,"185 Hill St, Los Angeles, CA 90001" +207949,Apple Airpods Headphones,1,150,06/27/19 13:04,"111 Willow St, Atlanta, GA 30301" +207950,Vareebadd Phone,1,400,06/14/19 17:28,"390 River St, Los Angeles, CA 90001" +207951,LG Washing Machine,1,600.0,06/13/19 11:41,"204 Madison St, Los Angeles, CA 90001" +207952,AA Batteries (4-pack),1,3.84,06/13/19 15:53,"39 Maple St, New York City, NY 10001" +207953,27in FHD Monitor,1,149.99,06/03/19 11:47,"86 West St, Los Angeles, CA 90001" +207954,AAA Batteries (4-pack),1,2.99,06/14/19 07:42,"862 Hickory St, Boston, MA 02215" +207955,Lightning Charging Cable,1,14.95,06/01/19 08:12,"366 Willow St, Portland, OR 97035" +207956,AA Batteries (4-pack),1,3.84,06/18/19 12:16,"58 Adams St, Boston, MA 02215" +207957,AAA Batteries (4-pack),1,2.99,06/11/19 18:37,"939 West St, San Francisco, CA 94016" +207958,ThinkPad Laptop,1,999.99,06/06/19 17:08,"360 Lake St, Austin, TX 73301" +207959,AAA Batteries (4-pack),1,2.99,06/10/19 07:53,"980 Jefferson St, New York City, NY 10001" +207960,AA Batteries (4-pack),1,3.84,06/30/19 19:53,"608 2nd St, Seattle, WA 98101" +207961,Google Phone,1,600,06/15/19 11:55,"847 Madison St, San Francisco, CA 94016" +207962,27in 4K Gaming Monitor,1,389.99,06/17/19 13:12,"912 2nd St, Portland, ME 04101" +207963,AA Batteries (4-pack),1,3.84,06/03/19 21:02,"858 9th St, Los Angeles, CA 90001" +207964,Google Phone,1,600,06/04/19 21:20,"718 Willow St, Dallas, TX 75001" +207965,Flatscreen TV,1,300,06/04/19 10:04,"559 Cherry St, Portland, OR 97035" +207966,Apple Airpods Headphones,1,150,06/04/19 15:02,"832 Dogwood St, Los Angeles, CA 90001" +207967,34in Ultrawide Monitor,1,379.99,06/09/19 19:01,"311 Main St, Atlanta, GA 30301" +207968,Lightning Charging Cable,1,14.95,06/26/19 21:21,"71 Cedar St, Seattle, WA 98101" +207968,USB-C Charging Cable,1,11.95,06/26/19 21:21,"71 Cedar St, Seattle, WA 98101" +207969,AA Batteries (4-pack),3,3.84,06/24/19 21:25,"391 Chestnut St, Portland, ME 04101" +207970,Wired Headphones,1,11.99,06/26/19 22:31,"5 Johnson St, Austin, TX 73301" +207971,27in FHD Monitor,1,149.99,06/29/19 18:57,"783 West St, San Francisco, CA 94016" +207972,Flatscreen TV,1,300,06/19/19 21:04,"552 Ridge St, San Francisco, CA 94016" +207973,Apple Airpods Headphones,1,150,06/14/19 13:21,"204 Elm St, Portland, OR 97035" +207974,Flatscreen TV,1,300,06/09/19 12:23,"905 Hickory St, Portland, OR 97035" +207974,AA Batteries (4-pack),1,3.84,06/09/19 12:23,"905 Hickory St, Portland, OR 97035" +207975,Vareebadd Phone,1,400,06/04/19 10:52,"498 South St, San Francisco, CA 94016" +207975,USB-C Charging Cable,1,11.95,06/04/19 10:52,"498 South St, San Francisco, CA 94016" +207976,Lightning Charging Cable,1,14.95,06/18/19 16:53,"333 Ridge St, Los Angeles, CA 90001" +207977,Vareebadd Phone,1,400,06/30/19 10:58,"795 Elm St, Los Angeles, CA 90001" +207978,Lightning Charging Cable,1,14.95,06/26/19 14:29,"663 9th St, San Francisco, CA 94016" +207979,20in Monitor,1,109.99,06/18/19 14:11,"577 Washington St, Los Angeles, CA 90001" +207980,AA Batteries (4-pack),1,3.84,06/19/19 15:16,"162 Dogwood St, Los Angeles, CA 90001" +207981,Wired Headphones,1,11.99,06/02/19 07:29,"477 Highland St, San Francisco, CA 94016" +207982,Lightning Charging Cable,1,14.95,06/27/19 06:12,"19 Dogwood St, San Francisco, CA 94016" +207983,Bose SoundSport Headphones,1,99.99,06/23/19 17:58,"616 Dogwood St, Atlanta, GA 30301" +207984,Bose SoundSport Headphones,1,99.99,06/17/19 08:25,"176 Maple St, Austin, TX 73301" +207985,Wired Headphones,1,11.99,06/24/19 12:16,"861 Church St, San Francisco, CA 94016" +207986,27in FHD Monitor,1,149.99,06/14/19 12:14,"719 Johnson St, Boston, MA 02215" +207987,Lightning Charging Cable,1,14.95,06/04/19 20:56,"704 Forest St, Los Angeles, CA 90001" +207988,AAA Batteries (4-pack),1,2.99,06/19/19 13:40,"728 Church St, New York City, NY 10001" +207989,USB-C Charging Cable,1,11.95,06/19/19 02:24,"887 9th St, New York City, NY 10001" +207990,Lightning Charging Cable,2,14.95,06/09/19 17:43,"376 9th St, Seattle, WA 98101" +207991,Apple Airpods Headphones,1,150,06/08/19 09:55,"617 West St, Atlanta, GA 30301" +207992,Apple Airpods Headphones,1,150,06/18/19 17:38,"151 Lake St, San Francisco, CA 94016" +207993,Apple Airpods Headphones,1,150,06/29/19 18:13,"262 West St, New York City, NY 10001" +207994,Bose SoundSport Headphones,1,99.99,06/27/19 13:05,"288 Maple St, Austin, TX 73301" +207995,Apple Airpods Headphones,1,150,06/19/19 10:54,"170 Cherry St, Los Angeles, CA 90001" +207996,Google Phone,1,600,06/09/19 20:45,"938 2nd St, Austin, TX 73301" +207996,Wired Headphones,1,11.99,06/09/19 20:45,"938 2nd St, Austin, TX 73301" +207997,Flatscreen TV,1,300,06/03/19 21:33,"904 Church St, Seattle, WA 98101" +207998,Lightning Charging Cable,2,14.95,06/18/19 13:34,"474 Hickory St, San Francisco, CA 94016" +207999,Macbook Pro Laptop,1,1700,06/16/19 14:25,"668 Main St, Los Angeles, CA 90001" +208000,Macbook Pro Laptop,1,1700,06/04/19 20:34,"696 Ridge St, Los Angeles, CA 90001" +208001,34in Ultrawide Monitor,1,379.99,06/04/19 18:15,"793 Adams St, Dallas, TX 75001" +208002,Bose SoundSport Headphones,1,99.99,06/02/19 14:49,"756 9th St, San Francisco, CA 94016" +208003,AAA Batteries (4-pack),1,2.99,06/28/19 05:49,"652 1st St, Austin, TX 73301" +208004,27in 4K Gaming Monitor,1,389.99,06/29/19 13:09,"181 Cherry St, Los Angeles, CA 90001" +208005,Lightning Charging Cable,1,14.95,06/03/19 14:37,"472 Washington St, Austin, TX 73301" +208006,Wired Headphones,1,11.99,06/02/19 12:47,"808 Meadow St, New York City, NY 10001" +208007,USB-C Charging Cable,1,11.95,06/27/19 09:56,"548 Johnson St, Los Angeles, CA 90001" +208008,Apple Airpods Headphones,1,150,06/30/19 13:58,"225 Dogwood St, Austin, TX 73301" +208009,Lightning Charging Cable,1,14.95,06/19/19 11:00,"167 Jackson St, New York City, NY 10001" +208010,AAA Batteries (4-pack),1,2.99,06/10/19 18:08,"368 Hill St, Austin, TX 73301" +208011,Bose SoundSport Headphones,1,99.99,06/25/19 12:14,"212 Jackson St, Dallas, TX 75001" +208012,Google Phone,1,600,06/13/19 13:31,"702 Lakeview St, Boston, MA 02215" +208012,USB-C Charging Cable,2,11.95,06/13/19 13:31,"702 Lakeview St, Boston, MA 02215" +208013,USB-C Charging Cable,1,11.95,06/27/19 15:13,"699 11th St, Austin, TX 73301" +208014,Wired Headphones,1,11.99,06/17/19 10:55,"818 Hill St, New York City, NY 10001" +208015,USB-C Charging Cable,1,11.95,06/18/19 09:18,"179 Forest St, Los Angeles, CA 90001" +208016,27in 4K Gaming Monitor,1,389.99,06/10/19 13:16,"183 Willow St, Los Angeles, CA 90001" +208017,ThinkPad Laptop,1,999.99,06/20/19 03:50,"259 Chestnut St, Atlanta, GA 30301" +208018,AA Batteries (4-pack),1,3.84,06/17/19 21:28,"685 West St, San Francisco, CA 94016" +208019,AA Batteries (4-pack),1,3.84,06/24/19 21:15,"884 Maple St, San Francisco, CA 94016" +208020,Lightning Charging Cable,1,14.95,06/25/19 23:53,"248 2nd St, New York City, NY 10001" +208021,AAA Batteries (4-pack),2,2.99,06/19/19 22:32,"490 Sunset St, Boston, MA 02215" +208022,Lightning Charging Cable,1,14.95,06/09/19 15:21,"990 Lake St, Atlanta, GA 30301" +208023,27in FHD Monitor,1,149.99,06/02/19 17:47,"317 Forest St, San Francisco, CA 94016" +208024,Lightning Charging Cable,1,14.95,06/21/19 05:48,"467 Walnut St, Los Angeles, CA 90001" +208025,USB-C Charging Cable,1,11.95,06/10/19 21:28,"328 Adams St, Austin, TX 73301" +208026,AA Batteries (4-pack),3,3.84,06/19/19 09:38,"608 Church St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +208027,Apple Airpods Headphones,1,150,06/14/19 12:58,"809 Willow St, Boston, MA 02215" +208028,34in Ultrawide Monitor,1,379.99,06/25/19 22:45,"552 Sunset St, San Francisco, CA 94016" +208029,Lightning Charging Cable,1,14.95,06/22/19 11:27,"637 Madison St, Portland, OR 97035" +208030,AA Batteries (4-pack),2,3.84,06/26/19 22:42,"478 Ridge St, Seattle, WA 98101" +208031,Flatscreen TV,1,300,06/20/19 09:10,"708 1st St, New York City, NY 10001" +208032,27in 4K Gaming Monitor,1,389.99,06/29/19 22:46,"539 Forest St, San Francisco, CA 94016" +208033,Apple Airpods Headphones,1,150,06/24/19 11:34,"877 Highland St, Los Angeles, CA 90001" +208034,iPhone,1,700,06/06/19 10:09,"171 Lake St, San Francisco, CA 94016" +208035,27in FHD Monitor,1,149.99,06/22/19 13:38,"245 Chestnut St, Dallas, TX 75001" +208036,20in Monitor,1,109.99,06/28/19 21:17,"623 11th St, Seattle, WA 98101" +208037,Lightning Charging Cable,1,14.95,06/22/19 23:18,"950 Pine St, Seattle, WA 98101" +208038,AAA Batteries (4-pack),1,2.99,06/16/19 18:33,"541 Madison St, Dallas, TX 75001" +208039,Wired Headphones,1,11.99,06/27/19 00:40,"529 Spruce St, Seattle, WA 98101" +208040,AAA Batteries (4-pack),1,2.99,06/18/19 15:12,"575 Cedar St, San Francisco, CA 94016" +208041,Bose SoundSport Headphones,1,99.99,06/23/19 14:33,"776 Adams St, New York City, NY 10001" +208042,Vareebadd Phone,1,400,06/13/19 16:52,"495 8th St, Atlanta, GA 30301" +208043,Vareebadd Phone,1,400,06/24/19 15:23,"109 11th St, Los Angeles, CA 90001" +208044,AA Batteries (4-pack),2,3.84,06/24/19 19:58,"780 Jefferson St, Los Angeles, CA 90001" +208045,USB-C Charging Cable,1,11.95,06/27/19 17:33,"324 11th St, Boston, MA 02215" +208046,Wired Headphones,1,11.99,06/23/19 20:30,"840 Highland St, Dallas, TX 75001" +208046,27in 4K Gaming Monitor,1,389.99,06/23/19 20:30,"840 Highland St, Dallas, TX 75001" +208047,AAA Batteries (4-pack),1,2.99,06/12/19 09:28,"578 Hill St, Boston, MA 02215" +208048,Bose SoundSport Headphones,1,99.99,06/30/19 16:46,"630 Center St, Atlanta, GA 30301" +208049,USB-C Charging Cable,1,11.95,06/16/19 19:58,"96 Chestnut St, Los Angeles, CA 90001" +208050,Google Phone,1,600,06/11/19 16:22,"153 Dogwood St, San Francisco, CA 94016" +208051,Apple Airpods Headphones,1,150,06/07/19 11:48,"960 Willow St, Atlanta, GA 30301" +208052,iPhone,1,700,06/19/19 17:35,"76 11th St, Atlanta, GA 30301" +208053,Apple Airpods Headphones,1,150,06/02/19 11:47,"781 Lincoln St, San Francisco, CA 94016" +208054,Apple Airpods Headphones,1,150,06/14/19 17:52,"67 Ridge St, San Francisco, CA 94016" +208055,Apple Airpods Headphones,1,150,06/11/19 23:08,"944 Spruce St, Los Angeles, CA 90001" +208056,AAA Batteries (4-pack),1,2.99,06/27/19 20:00,"183 Ridge St, Boston, MA 02215" +208057,Wired Headphones,1,11.99,06/05/19 18:26,"529 Elm St, Seattle, WA 98101" +208058,Bose SoundSport Headphones,1,99.99,06/02/19 21:42,"885 Dogwood St, San Francisco, CA 94016" +208059,Lightning Charging Cable,1,14.95,06/22/19 15:02,"995 14th St, Dallas, TX 75001" +208060,Lightning Charging Cable,1,14.95,06/21/19 10:16,"656 13th St, Boston, MA 02215" +208061,USB-C Charging Cable,1,11.95,06/02/19 19:58,"870 Church St, San Francisco, CA 94016" +208062,AAA Batteries (4-pack),1,2.99,06/27/19 13:20,"35 Chestnut St, Dallas, TX 75001" +208063,USB-C Charging Cable,1,11.95,06/24/19 11:16,"270 10th St, San Francisco, CA 94016" +208064,USB-C Charging Cable,1,11.95,06/17/19 16:45,"169 Elm St, Atlanta, GA 30301" +208065,AAA Batteries (4-pack),1,2.99,06/23/19 12:11,"47 Johnson St, New York City, NY 10001" +208066,Bose SoundSport Headphones,1,99.99,06/21/19 19:33,"25 Cedar St, Los Angeles, CA 90001" +208067,iPhone,1,700,06/18/19 10:25,"331 7th St, San Francisco, CA 94016" +208068,AA Batteries (4-pack),1,3.84,06/15/19 11:00,"569 Meadow St, Seattle, WA 98101" +208069,Lightning Charging Cable,1,14.95,06/13/19 12:59,"71 North St, New York City, NY 10001" +208070,AA Batteries (4-pack),1,3.84,06/19/19 21:11,"822 12th St, Atlanta, GA 30301" +208071,AA Batteries (4-pack),1,3.84,06/06/19 20:23,"406 12th St, Los Angeles, CA 90001" +208072,Wired Headphones,1,11.99,06/23/19 18:48,"192 Spruce St, New York City, NY 10001" +208073,AA Batteries (4-pack),1,3.84,06/12/19 19:58,"566 2nd St, Los Angeles, CA 90001" +208074,27in FHD Monitor,1,149.99,06/08/19 17:38,"732 Jefferson St, New York City, NY 10001" +208075,Google Phone,1,600,06/03/19 15:03,"181 Dogwood St, New York City, NY 10001" +208076,Apple Airpods Headphones,1,150,06/13/19 23:33,"970 Jackson St, San Francisco, CA 94016" +208077,USB-C Charging Cable,1,11.95,06/25/19 14:08,"895 Spruce St, Boston, MA 02215" +208078,Flatscreen TV,1,300,06/16/19 22:41,"88 7th St, Dallas, TX 75001" +208079,ThinkPad Laptop,1,999.99,06/11/19 13:18,"298 4th St, Boston, MA 02215" +208080,Lightning Charging Cable,1,14.95,06/03/19 00:51,"946 Maple St, Dallas, TX 75001" +208081,Apple Airpods Headphones,1,150,06/15/19 10:03,"945 Meadow St, Los Angeles, CA 90001" +208082,Wired Headphones,1,11.99,06/30/19 19:48,"619 Meadow St, Dallas, TX 75001" +208083,27in 4K Gaming Monitor,1,389.99,06/21/19 12:47,"346 Willow St, Dallas, TX 75001" +208084,AA Batteries (4-pack),2,3.84,06/28/19 07:59,"162 Jefferson St, Dallas, TX 75001" +208085,AAA Batteries (4-pack),1,2.99,06/04/19 08:45,"719 Lake St, Los Angeles, CA 90001" +208086,AAA Batteries (4-pack),1,2.99,06/07/19 18:39,"576 Center St, Austin, TX 73301" +208087,Apple Airpods Headphones,1,150,06/23/19 18:52,"798 9th St, Seattle, WA 98101" +208088,Lightning Charging Cable,1,14.95,06/04/19 23:59,"768 12th St, Boston, MA 02215" +208089,AA Batteries (4-pack),1,3.84,06/22/19 09:27,"752 Adams St, Boston, MA 02215" +208090,Lightning Charging Cable,1,14.95,06/04/19 13:42,"497 1st St, Boston, MA 02215" +208091,Lightning Charging Cable,2,14.95,06/24/19 21:36,"148 Walnut St, San Francisco, CA 94016" +208092,Lightning Charging Cable,1,14.95,06/05/19 12:51,"998 9th St, Atlanta, GA 30301" +208093,Flatscreen TV,1,300,06/29/19 15:31,"940 9th St, New York City, NY 10001" +208094,27in 4K Gaming Monitor,1,389.99,06/28/19 15:58,"997 Jefferson St, Boston, MA 02215" +208095,Google Phone,1,600,06/03/19 16:40,"358 Walnut St, Dallas, TX 75001" +208095,USB-C Charging Cable,1,11.95,06/03/19 16:40,"358 Walnut St, Dallas, TX 75001" +208096,Bose SoundSport Headphones,1,99.99,06/01/19 18:13,"404 Pine St, New York City, NY 10001" +208097,ThinkPad Laptop,1,999.99,06/23/19 11:32,"971 Johnson St, Boston, MA 02215" +208098,ThinkPad Laptop,1,999.99,06/28/19 21:36,"428 Cherry St, San Francisco, CA 94016" +208099,AA Batteries (4-pack),1,3.84,06/27/19 10:54,"359 1st St, Seattle, WA 98101" +208100,27in FHD Monitor,1,149.99,06/29/19 22:48,"528 Jefferson St, New York City, NY 10001" +208100,USB-C Charging Cable,1,11.95,06/29/19 22:48,"528 Jefferson St, New York City, NY 10001" +208101,ThinkPad Laptop,1,999.99,06/15/19 13:50,"787 Cedar St, Dallas, TX 75001" +208102,Lightning Charging Cable,2,14.95,06/04/19 07:55,"392 4th St, Portland, OR 97035" +208103,Bose SoundSport Headphones,1,99.99,06/14/19 09:04,"354 Chestnut St, New York City, NY 10001" +208104,Lightning Charging Cable,1,14.95,06/18/19 19:06,"233 Highland St, Seattle, WA 98101" +208105,Flatscreen TV,1,300,06/29/19 10:18,"229 Maple St, San Francisco, CA 94016" +208106,Google Phone,1,600,06/23/19 14:35,"232 Lincoln St, San Francisco, CA 94016" +208107,Wired Headphones,1,11.99,06/20/19 10:39,"558 8th St, Los Angeles, CA 90001" +208108,AA Batteries (4-pack),3,3.84,06/22/19 01:04,"760 Willow St, San Francisco, CA 94016" +208109,Apple Airpods Headphones,1,150,06/30/19 21:01,"188 Center St, Atlanta, GA 30301" +208110,Wired Headphones,1,11.99,06/14/19 20:11,"94 2nd St, New York City, NY 10001" +208111,Lightning Charging Cable,1,14.95,06/22/19 08:41,"69 13th St, Dallas, TX 75001" +208112,Google Phone,1,600,06/14/19 00:00,"746 Hill St, Dallas, TX 75001" +208112,USB-C Charging Cable,1,11.95,06/14/19 00:00,"746 Hill St, Dallas, TX 75001" +208113,USB-C Charging Cable,1,11.95,06/04/19 20:18,"930 Maple St, Austin, TX 73301" +208114,AAA Batteries (4-pack),1,2.99,06/20/19 11:22,"966 Cedar St, San Francisco, CA 94016" +208114,iPhone,1,700,06/20/19 11:22,"966 Cedar St, San Francisco, CA 94016" +208115,Bose SoundSport Headphones,1,99.99,06/22/19 15:47,"172 4th St, Atlanta, GA 30301" +208116,Flatscreen TV,1,300,06/18/19 15:11,"247 Pine St, San Francisco, CA 94016" +208117,AA Batteries (4-pack),2,3.84,06/17/19 18:50,"701 Park St, Dallas, TX 75001" +208118,USB-C Charging Cable,1,11.95,06/08/19 17:40,"316 1st St, San Francisco, CA 94016" +208119,iPhone,1,700,06/19/19 09:13,"903 7th St, San Francisco, CA 94016" +208120,Lightning Charging Cable,1,14.95,06/04/19 16:30,"573 Meadow St, San Francisco, CA 94016" +208121,20in Monitor,1,109.99,06/30/19 18:22,"616 10th St, Atlanta, GA 30301" +208122,AA Batteries (4-pack),1,3.84,06/15/19 17:58,"404 11th St, Los Angeles, CA 90001" +208123,Bose SoundSport Headphones,1,99.99,06/03/19 07:32,"160 Maple St, Dallas, TX 75001" +208124,20in Monitor,1,109.99,06/26/19 22:34,"464 12th St, Boston, MA 02215" +208125,Lightning Charging Cable,1,14.95,06/07/19 12:47,"565 Jefferson St, New York City, NY 10001" +208126,AAA Batteries (4-pack),2,2.99,06/01/19 21:53,"934 Cedar St, San Francisco, CA 94016" +208127,20in Monitor,1,109.99,06/11/19 20:00,"30 Walnut St, Atlanta, GA 30301" +208128,Wired Headphones,1,11.99,06/03/19 19:19,"227 Lakeview St, Austin, TX 73301" +208129,Wired Headphones,1,11.99,06/01/19 19:59,"420 River St, New York City, NY 10001" +208130,USB-C Charging Cable,1,11.95,06/14/19 17:21,"354 5th St, Dallas, TX 75001" +208131,iPhone,1,700,06/10/19 07:10,"469 7th St, San Francisco, CA 94016" +208132,Apple Airpods Headphones,1,150,06/09/19 13:17,"684 Walnut St, New York City, NY 10001" +208133,USB-C Charging Cable,1,11.95,06/27/19 17:39,"81 9th St, San Francisco, CA 94016" +208134,Bose SoundSport Headphones,1,99.99,06/25/19 16:22,"158 2nd St, Dallas, TX 75001" +208135,Wired Headphones,2,11.99,06/06/19 23:25,"711 Madison St, San Francisco, CA 94016" +208136,Macbook Pro Laptop,1,1700,06/28/19 15:55,"494 Johnson St, Seattle, WA 98101" +208137,Lightning Charging Cable,1,14.95,06/01/19 22:05,"621 Sunset St, San Francisco, CA 94016" +208138,Google Phone,1,600,06/06/19 11:36,"540 Sunset St, Atlanta, GA 30301" +208138,USB-C Charging Cable,1,11.95,06/06/19 11:36,"540 Sunset St, Atlanta, GA 30301" +208138,Wired Headphones,1,11.99,06/06/19 11:36,"540 Sunset St, Atlanta, GA 30301" +208139,AAA Batteries (4-pack),3,2.99,06/19/19 17:32,"119 Adams St, Los Angeles, CA 90001" +208140,AAA Batteries (4-pack),1,2.99,06/14/19 17:36,"282 Willow St, Portland, OR 97035" +208141,ThinkPad Laptop,1,999.99,06/17/19 11:57,"193 Wilson St, Dallas, TX 75001" +208142,Apple Airpods Headphones,1,150,06/06/19 01:42,"929 Lakeview St, Los Angeles, CA 90001" +208142,Wired Headphones,1,11.99,06/06/19 01:42,"929 Lakeview St, Los Angeles, CA 90001" +208143,Wired Headphones,1,11.99,06/01/19 12:45,"401 Main St, San Francisco, CA 94016" +208144,34in Ultrawide Monitor,1,379.99,06/09/19 23:02,"564 2nd St, New York City, NY 10001" +208145,Lightning Charging Cable,2,14.95,06/19/19 12:02,"400 Johnson St, Los Angeles, CA 90001" +208146,Lightning Charging Cable,1,14.95,06/07/19 15:33,"261 9th St, San Francisco, CA 94016" +208147,Bose SoundSport Headphones,1,99.99,06/03/19 13:35,"366 Jefferson St, Austin, TX 73301" +208148,Macbook Pro Laptop,1,1700,06/09/19 14:52,"155 Jackson St, New York City, NY 10001" +208149,Bose SoundSport Headphones,1,99.99,06/14/19 18:50,"652 9th St, San Francisco, CA 94016" +208150,AA Batteries (4-pack),1,3.84,06/30/19 13:10,"66 Sunset St, Boston, MA 02215" +208151,27in FHD Monitor,1,149.99,06/04/19 12:31,"375 Hill St, Portland, OR 97035" +208152,27in FHD Monitor,1,149.99,06/08/19 17:23,"861 13th St, Portland, OR 97035" +208153,AA Batteries (4-pack),1,3.84,06/12/19 18:32,"428 Church St, New York City, NY 10001" +208154,USB-C Charging Cable,1,11.95,06/13/19 08:57,"420 2nd St, New York City, NY 10001" +208155,USB-C Charging Cable,1,11.95,06/17/19 15:00,"758 5th St, San Francisco, CA 94016" +208156,27in 4K Gaming Monitor,1,389.99,06/13/19 18:14,"9 River St, Seattle, WA 98101" +208157,Bose SoundSport Headphones,1,99.99,06/15/19 22:23,"571 North St, San Francisco, CA 94016" +208158,USB-C Charging Cable,1,11.95,06/26/19 16:52,"569 Walnut St, Los Angeles, CA 90001" +208159,AA Batteries (4-pack),1,3.84,06/26/19 20:10,"379 Hill St, San Francisco, CA 94016" +208160,Apple Airpods Headphones,1,150,06/18/19 21:09,"814 Spruce St, Boston, MA 02215" +208161,USB-C Charging Cable,1,11.95,06/14/19 20:34,"821 9th St, Portland, OR 97035" +208162,LG Washing Machine,1,600.0,06/17/19 22:20,"500 Jackson St, Los Angeles, CA 90001" +208163,27in FHD Monitor,1,149.99,06/01/19 18:15,"547 Dogwood St, Atlanta, GA 30301" +208164,AA Batteries (4-pack),1,3.84,06/21/19 09:32,"621 2nd St, New York City, NY 10001" +208165,Bose SoundSport Headphones,1,99.99,06/26/19 12:01,"359 Madison St, New York City, NY 10001" +208166,ThinkPad Laptop,1,999.99,06/18/19 17:36,"293 North St, Austin, TX 73301" +208167,AAA Batteries (4-pack),2,2.99,06/08/19 20:11,"475 Main St, New York City, NY 10001" +208168,AAA Batteries (4-pack),1,2.99,06/27/19 12:41,"566 2nd St, Seattle, WA 98101" +208169,USB-C Charging Cable,1,11.95,06/29/19 16:53,"553 Forest St, San Francisco, CA 94016" +208170,Google Phone,1,600,06/18/19 18:33,"185 14th St, San Francisco, CA 94016" +208171,Wired Headphones,1,11.99,06/26/19 23:22,"164 North St, Boston, MA 02215" +208172,USB-C Charging Cable,1,11.95,06/23/19 10:54,"86 Lake St, New York City, NY 10001" +208173,Vareebadd Phone,1,400,06/17/19 14:35,"218 2nd St, Dallas, TX 75001" +208174,iPhone,1,700,06/29/19 22:23,"661 Cedar St, New York City, NY 10001" +208175,Apple Airpods Headphones,1,150,06/22/19 11:40,"322 West St, San Francisco, CA 94016" +208175,AAA Batteries (4-pack),2,2.99,06/22/19 11:40,"322 West St, San Francisco, CA 94016" +208176,Flatscreen TV,1,300,06/21/19 16:25,"442 Adams St, San Francisco, CA 94016" +208177,AA Batteries (4-pack),1,3.84,06/16/19 00:55,"426 Jefferson St, Portland, OR 97035" +208178,34in Ultrawide Monitor,1,379.99,06/15/19 12:31,"661 Walnut St, New York City, NY 10001" +208179,Google Phone,1,600,06/21/19 04:08,"649 Center St, San Francisco, CA 94016" +208180,AA Batteries (4-pack),2,3.84,06/27/19 20:02,"11 9th St, Dallas, TX 75001" +208181,USB-C Charging Cable,1,11.95,06/06/19 22:24,"305 6th St, New York City, NY 10001" +208182,Flatscreen TV,1,300,06/28/19 20:04,"405 14th St, Seattle, WA 98101" +208183,Lightning Charging Cable,1,14.95,06/03/19 22:52,"704 Cherry St, San Francisco, CA 94016" +208184,USB-C Charging Cable,1,11.95,06/30/19 10:49,"331 Hickory St, Seattle, WA 98101" +208185,Google Phone,1,600,06/18/19 11:17,"17 Madison St, San Francisco, CA 94016" +208186,USB-C Charging Cable,1,11.95,06/14/19 17:28,"533 Jackson St, Boston, MA 02215" +208187,Bose SoundSport Headphones,1,99.99,06/14/19 00:30,"208 1st St, Los Angeles, CA 90001" +208188,Lightning Charging Cable,1,14.95,06/19/19 17:51,"978 Hill St, Dallas, TX 75001" +208189,AA Batteries (4-pack),1,3.84,06/15/19 10:00,"963 Jefferson St, Atlanta, GA 30301" +208190,USB-C Charging Cable,1,11.95,06/18/19 00:07,"105 Ridge St, New York City, NY 10001" +208191,USB-C Charging Cable,1,11.95,06/29/19 15:50,"578 Adams St, Boston, MA 02215" +208192,Apple Airpods Headphones,1,150,06/26/19 22:29,"611 Maple St, Boston, MA 02215" +208193,AAA Batteries (4-pack),1,2.99,06/25/19 08:20,"449 1st St, Los Angeles, CA 90001" +208194,Bose SoundSport Headphones,1,99.99,06/03/19 07:43,"298 Ridge St, Boston, MA 02215" +208195,USB-C Charging Cable,1,11.95,06/20/19 17:18,"94 Lincoln St, Los Angeles, CA 90001" +208196,Lightning Charging Cable,1,14.95,06/29/19 15:32,"40 13th St, Seattle, WA 98101" +208197,Wired Headphones,1,11.99,06/23/19 15:01,"857 14th St, Atlanta, GA 30301" +208198,AAA Batteries (4-pack),1,2.99,06/20/19 12:27,"638 Madison St, Los Angeles, CA 90001" +208199,AAA Batteries (4-pack),1,2.99,06/26/19 12:30,"9 11th St, New York City, NY 10001" +208200,iPhone,1,700,06/02/19 09:52,"651 Meadow St, San Francisco, CA 94016" +208201,AA Batteries (4-pack),1,3.84,06/06/19 21:02,"156 9th St, Seattle, WA 98101" +208202,Flatscreen TV,1,300,06/21/19 14:37,"824 North St, New York City, NY 10001" +208203,AAA Batteries (4-pack),1,2.99,06/21/19 16:27,"248 Maple St, Boston, MA 02215" +208204,AAA Batteries (4-pack),4,2.99,06/17/19 19:47,"734 Hill St, Boston, MA 02215" +208205,Lightning Charging Cable,1,14.95,06/14/19 23:55,"937 5th St, San Francisco, CA 94016" +208206,Bose SoundSport Headphones,1,99.99,06/05/19 18:58,"94 Pine St, Los Angeles, CA 90001" +208207,Apple Airpods Headphones,1,150,06/21/19 20:12,"490 North St, Austin, TX 73301" +208208,USB-C Charging Cable,1,11.95,06/18/19 18:00,"672 14th St, San Francisco, CA 94016" +208209,Vareebadd Phone,1,400,06/04/19 13:38,"682 10th St, Portland, OR 97035" +208210,ThinkPad Laptop,1,999.99,06/30/19 15:32,"604 Sunset St, New York City, NY 10001" +208211,AAA Batteries (4-pack),2,2.99,06/12/19 11:42,"926 River St, Los Angeles, CA 90001" +208212,Google Phone,1,600,06/21/19 00:17,"641 Adams St, Boston, MA 02215" +208213,Wired Headphones,1,11.99,06/03/19 10:15,"291 Dogwood St, Austin, TX 73301" +208214,Google Phone,1,600,06/26/19 22:11,"227 Meadow St, Atlanta, GA 30301" +208215,AAA Batteries (4-pack),1,2.99,06/15/19 18:18,"477 Elm St, Atlanta, GA 30301" +208216,Lightning Charging Cable,1,14.95,06/21/19 18:37,"525 Johnson St, Los Angeles, CA 90001" +208217,Lightning Charging Cable,1,14.95,06/16/19 11:47,"427 2nd St, Los Angeles, CA 90001" +208218,ThinkPad Laptop,1,999.99,06/14/19 20:33,"947 Washington St, San Francisco, CA 94016" +208219,Apple Airpods Headphones,1,150,06/15/19 13:07,"79 Lake St, Atlanta, GA 30301" +208220,Bose SoundSport Headphones,1,99.99,06/29/19 08:44,"362 Washington St, Atlanta, GA 30301" +208221,LG Dryer,1,600.0,06/09/19 21:47,"641 Wilson St, San Francisco, CA 94016" +208222,Apple Airpods Headphones,1,150,06/17/19 13:46,"711 11th St, San Francisco, CA 94016" +208223,Bose SoundSport Headphones,1,99.99,06/22/19 20:38,"591 Jefferson St, San Francisco, CA 94016" +208224,USB-C Charging Cable,1,11.95,06/25/19 15:00,"835 11th St, Los Angeles, CA 90001" +208225,Wired Headphones,1,11.99,06/22/19 14:18,"381 Hickory St, Dallas, TX 75001" +208226,Flatscreen TV,1,300,06/11/19 22:20,"834 Highland St, Los Angeles, CA 90001" +208227,AAA Batteries (4-pack),2,2.99,06/24/19 11:50,"670 Madison St, Austin, TX 73301" +208228,Google Phone,1,600,06/25/19 12:57,"722 Church St, San Francisco, CA 94016" +208228,Wired Headphones,1,11.99,06/25/19 12:57,"722 Church St, San Francisco, CA 94016" +208229,USB-C Charging Cable,1,11.95,06/07/19 03:50,"182 Lincoln St, Los Angeles, CA 90001" +208230,Google Phone,1,600,06/22/19 12:49,"497 9th St, Los Angeles, CA 90001" +208230,USB-C Charging Cable,1,11.95,06/22/19 12:49,"497 9th St, Los Angeles, CA 90001" +208231,AA Batteries (4-pack),1,3.84,06/15/19 14:54,"941 Jefferson St, Boston, MA 02215" +208232,iPhone,1,700,06/22/19 19:48,"377 Hill St, San Francisco, CA 94016" +208232,Lightning Charging Cable,1,14.95,06/22/19 19:48,"377 Hill St, San Francisco, CA 94016" +208233,USB-C Charging Cable,1,11.95,06/28/19 15:48,"238 Chestnut St, San Francisco, CA 94016" +208234,AA Batteries (4-pack),3,3.84,06/06/19 11:29,"240 Washington St, Los Angeles, CA 90001" +208235,Lightning Charging Cable,1,14.95,06/11/19 10:18,"203 Church St, Austin, TX 73301" +208236,AA Batteries (4-pack),1,3.84,06/06/19 22:59,"634 Meadow St, Atlanta, GA 30301" +208237,Lightning Charging Cable,1,14.95,06/07/19 15:09,"735 North St, Los Angeles, CA 90001" +208238,27in FHD Monitor,1,149.99,06/05/19 14:07,"648 Chestnut St, San Francisco, CA 94016" +208239,27in FHD Monitor,1,149.99,06/15/19 08:27,"594 Forest St, Austin, TX 73301" +208240,Lightning Charging Cable,1,14.95,06/16/19 17:51,"994 4th St, Los Angeles, CA 90001" +208241,AA Batteries (4-pack),1,3.84,06/06/19 15:25,"355 4th St, Dallas, TX 75001" +208242,Bose SoundSport Headphones,1,99.99,06/05/19 22:56,"269 Park St, Boston, MA 02215" +208243,AAA Batteries (4-pack),2,2.99,06/07/19 04:13,"602 Maple St, Boston, MA 02215" +208244,Lightning Charging Cable,1,14.95,06/30/19 01:07,"934 South St, San Francisco, CA 94016" +208245,AAA Batteries (4-pack),1,2.99,06/15/19 23:28,"3 Dogwood St, Los Angeles, CA 90001" +208246,AAA Batteries (4-pack),2,2.99,06/22/19 21:16,"862 7th St, Los Angeles, CA 90001" +208247,Flatscreen TV,1,300,06/04/19 20:30,"889 Lakeview St, Los Angeles, CA 90001" +208248,Lightning Charging Cable,1,14.95,06/11/19 14:50,"238 Dogwood St, Boston, MA 02215" +208249,Wired Headphones,1,11.99,06/28/19 10:33,"683 Forest St, New York City, NY 10001" +208250,USB-C Charging Cable,1,11.95,06/04/19 00:48,"53 Pine St, Dallas, TX 75001" +208251,34in Ultrawide Monitor,1,379.99,06/24/19 13:56,"189 River St, Los Angeles, CA 90001" +208252,Macbook Pro Laptop,1,1700,06/06/19 14:08,"62 1st St, New York City, NY 10001" +208253,Lightning Charging Cable,2,14.95,06/07/19 18:13,"183 River St, Atlanta, GA 30301" +208254,Flatscreen TV,1,300,06/09/19 11:53,"54 North St, New York City, NY 10001" +208255,Wired Headphones,1,11.99,06/07/19 17:43,"566 Cherry St, Los Angeles, CA 90001" +208256,Wired Headphones,1,11.99,06/03/19 14:50,"427 Cherry St, Los Angeles, CA 90001" +208257,Lightning Charging Cable,1,14.95,06/10/19 21:22,"10 Wilson St, Portland, OR 97035" +208258,USB-C Charging Cable,1,11.95,06/02/19 20:36,"736 North St, Boston, MA 02215" +208259,USB-C Charging Cable,1,11.95,06/26/19 18:28,"205 4th St, Portland, OR 97035" +208260,Lightning Charging Cable,1,14.95,06/29/19 19:37,"620 Cherry St, Austin, TX 73301" +208261,27in FHD Monitor,1,149.99,06/08/19 19:50,"131 Johnson St, Boston, MA 02215" +208262,Bose SoundSport Headphones,1,99.99,06/17/19 18:59,"193 Church St, Seattle, WA 98101" +208263,Apple Airpods Headphones,1,150,06/10/19 12:59,"626 Highland St, Los Angeles, CA 90001" +208264,AAA Batteries (4-pack),1,2.99,06/25/19 20:16,"743 Center St, New York City, NY 10001" +208265,USB-C Charging Cable,1,11.95,06/06/19 22:22,"171 Washington St, Boston, MA 02215" +208266,Lightning Charging Cable,1,14.95,06/23/19 19:09,"128 Highland St, San Francisco, CA 94016" +208267,Lightning Charging Cable,1,14.95,06/15/19 11:37,"240 Center St, Seattle, WA 98101" +208268,34in Ultrawide Monitor,1,379.99,06/05/19 14:48,"390 2nd St, San Francisco, CA 94016" +208269,Bose SoundSport Headphones,1,99.99,06/04/19 01:18,"401 North St, Atlanta, GA 30301" +208270,Lightning Charging Cable,1,14.95,06/14/19 18:18,"336 Lake St, Boston, MA 02215" +208271,27in FHD Monitor,1,149.99,06/13/19 13:11,"458 Wilson St, New York City, NY 10001" +208272,Apple Airpods Headphones,1,150,06/10/19 13:48,"261 Jefferson St, Los Angeles, CA 90001" +208273,Macbook Pro Laptop,1,1700,06/16/19 18:13,"943 Walnut St, Los Angeles, CA 90001" +208274,AA Batteries (4-pack),1,3.84,06/01/19 17:44,"956 Highland St, San Francisco, CA 94016" +208275,Vareebadd Phone,1,400,06/06/19 23:44,"83 12th St, Los Angeles, CA 90001" +208276,AAA Batteries (4-pack),1,2.99,06/16/19 10:56,"89 Chestnut St, Boston, MA 02215" +208277,AA Batteries (4-pack),1,3.84,06/05/19 21:58,"805 Willow St, Atlanta, GA 30301" +208278,Lightning Charging Cable,1,14.95,06/06/19 21:21,"591 14th St, Los Angeles, CA 90001" +208279,AAA Batteries (4-pack),3,2.99,06/23/19 21:32,"939 North St, New York City, NY 10001" +208280,20in Monitor,1,109.99,06/09/19 19:39,"671 Lincoln St, Los Angeles, CA 90001" +208281,20in Monitor,1,109.99,06/20/19 17:15,"184 Chestnut St, New York City, NY 10001" +208282,Lightning Charging Cable,1,14.95,06/16/19 13:51,"85 Maple St, Portland, ME 04101" +208283,AAA Batteries (4-pack),1,2.99,06/04/19 21:43,"451 Chestnut St, Dallas, TX 75001" +208284,AAA Batteries (4-pack),1,2.99,06/04/19 16:28,"184 West St, Los Angeles, CA 90001" +208285,20in Monitor,1,109.99,06/05/19 07:54,"197 Center St, Boston, MA 02215" +208286,AA Batteries (4-pack),1,3.84,06/14/19 13:06,"688 Willow St, Los Angeles, CA 90001" +208287,Google Phone,1,600,06/19/19 13:50,"627 Lincoln St, San Francisco, CA 94016" +208287,Bose SoundSport Headphones,1,99.99,06/19/19 13:50,"627 Lincoln St, San Francisco, CA 94016" +208288,ThinkPad Laptop,1,999.99,06/07/19 11:47,"671 Lincoln St, Atlanta, GA 30301" +208289,20in Monitor,1,109.99,06/12/19 21:49,"16 Jackson St, San Francisco, CA 94016" +208290,Macbook Pro Laptop,1,1700,06/26/19 05:32,"123 Chestnut St, San Francisco, CA 94016" +208291,iPhone,1,700,06/13/19 11:57,"383 South St, San Francisco, CA 94016" +208291,Lightning Charging Cable,1,14.95,06/13/19 11:57,"383 South St, San Francisco, CA 94016" +208292,27in 4K Gaming Monitor,1,389.99,06/27/19 01:06,"397 South St, Boston, MA 02215" +208293,AA Batteries (4-pack),1,3.84,06/28/19 07:48,"696 8th St, New York City, NY 10001" +208294,Bose SoundSport Headphones,1,99.99,06/10/19 14:13,"381 7th St, New York City, NY 10001" +208295,27in 4K Gaming Monitor,1,389.99,06/09/19 10:44,"474 Center St, New York City, NY 10001" +208296,AAA Batteries (4-pack),1,2.99,06/03/19 14:42,"209 North St, Dallas, TX 75001" +208297,Bose SoundSport Headphones,1,99.99,06/15/19 14:43,"623 Jackson St, Boston, MA 02215" +208298,Wired Headphones,1,11.99,06/06/19 01:25,"999 Park St, San Francisco, CA 94016" +208299,Lightning Charging Cable,1,14.95,06/07/19 13:17,"505 2nd St, San Francisco, CA 94016" +208300,AA Batteries (4-pack),1,3.84,06/10/19 22:00,"315 Washington St, San Francisco, CA 94016" +208301,AA Batteries (4-pack),1,3.84,06/13/19 18:59,"7 Pine St, Atlanta, GA 30301" +208302,Bose SoundSport Headphones,1,99.99,06/11/19 11:16,"980 8th St, San Francisco, CA 94016" +208303,AA Batteries (4-pack),2,3.84,06/15/19 19:50,"152 Meadow St, San Francisco, CA 94016" +208304,AAA Batteries (4-pack),1,2.99,06/18/19 22:00,"131 4th St, Dallas, TX 75001" +208305,Apple Airpods Headphones,1,150,06/14/19 16:45,"485 Hill St, New York City, NY 10001" +208306,AA Batteries (4-pack),2,3.84,06/27/19 15:26,"451 Spruce St, Austin, TX 73301" +208307,Lightning Charging Cable,1,14.95,06/07/19 20:52,"96 Jackson St, Boston, MA 02215" +208308,Lightning Charging Cable,1,14.95,06/26/19 21:06,"335 1st St, Dallas, TX 75001" +208309,USB-C Charging Cable,1,11.95,06/02/19 13:38,"589 Dogwood St, Atlanta, GA 30301" +208310,Bose SoundSport Headphones,1,99.99,06/24/19 15:20,"816 4th St, Los Angeles, CA 90001" +208311,AA Batteries (4-pack),1,3.84,06/15/19 10:31,"760 10th St, Los Angeles, CA 90001" +208312,Bose SoundSport Headphones,1,99.99,06/07/19 16:25,"910 Chestnut St, Dallas, TX 75001" +208313,AAA Batteries (4-pack),1,2.99,06/06/19 22:42,"254 North St, Atlanta, GA 30301" +208314,Apple Airpods Headphones,1,150,06/06/19 15:55,"206 12th St, Los Angeles, CA 90001" +208315,ThinkPad Laptop,1,999.99,06/22/19 07:44,"919 4th St, Seattle, WA 98101" +208316,AAA Batteries (4-pack),1,2.99,06/08/19 15:08,"505 13th St, San Francisco, CA 94016" +208317,Bose SoundSport Headphones,1,99.99,06/02/19 08:09,"391 Spruce St, Austin, TX 73301" +208318,ThinkPad Laptop,1,999.99,06/30/19 21:55,"681 Lake St, New York City, NY 10001" +208319,Wired Headphones,1,11.99,06/01/19 15:24,"476 Madison St, Boston, MA 02215" +208320,AAA Batteries (4-pack),1,2.99,06/26/19 12:01,"398 10th St, Los Angeles, CA 90001" +208321,Lightning Charging Cable,1,14.95,06/08/19 22:15,"309 8th St, Austin, TX 73301" +208322,Wired Headphones,1,11.99,06/11/19 21:20,"462 Lincoln St, San Francisco, CA 94016" +208323,AAA Batteries (4-pack),1,2.99,06/26/19 21:40,"965 12th St, San Francisco, CA 94016" +208324,USB-C Charging Cable,1,11.95,06/09/19 14:02,"414 Jefferson St, Los Angeles, CA 90001" +208325,USB-C Charging Cable,1,11.95,06/23/19 09:56,"178 Cedar St, New York City, NY 10001" +208326,Bose SoundSport Headphones,1,99.99,06/18/19 12:43,"640 6th St, Dallas, TX 75001" +208327,Lightning Charging Cable,1,14.95,06/06/19 09:12,"388 Park St, Portland, OR 97035" +208328,AAA Batteries (4-pack),1,2.99,06/02/19 14:21,"140 Spruce St, Portland, ME 04101" +208329,Lightning Charging Cable,1,14.95,06/18/19 22:08,"976 Hickory St, Boston, MA 02215" +208330,AAA Batteries (4-pack),1,2.99,06/15/19 13:58,"571 Jefferson St, Portland, OR 97035" +208331,Apple Airpods Headphones,1,150,06/13/19 08:22,"855 10th St, Austin, TX 73301" +208332,Apple Airpods Headphones,1,150,06/20/19 10:13,"27 Wilson St, Atlanta, GA 30301" +208333,AAA Batteries (4-pack),4,2.99,06/25/19 17:31,"201 Maple St, Portland, ME 04101" +208334,Macbook Pro Laptop,1,1700,06/08/19 16:51,"821 Ridge St, San Francisco, CA 94016" +208335,USB-C Charging Cable,1,11.95,06/09/19 10:36,"2 13th St, San Francisco, CA 94016" +208336,Lightning Charging Cable,1,14.95,06/26/19 18:29,"249 Adams St, New York City, NY 10001" +208337,USB-C Charging Cable,1,11.95,06/28/19 22:54,"519 Cedar St, Boston, MA 02215" +208338,ThinkPad Laptop,1,999.99,06/17/19 12:17,"192 Washington St, Los Angeles, CA 90001" +208339,USB-C Charging Cable,1,11.95,06/08/19 19:59,"41 1st St, Los Angeles, CA 90001" +208340,AAA Batteries (4-pack),1,2.99,06/23/19 21:39,"749 Madison St, Portland, OR 97035" +208341,Bose SoundSport Headphones,1,99.99,06/17/19 18:25,"369 Maple St, Boston, MA 02215" +208342,Google Phone,1,600,06/14/19 08:21,"469 Elm St, Dallas, TX 75001" +208343,AA Batteries (4-pack),1,3.84,06/21/19 11:27,"75 Forest St, Los Angeles, CA 90001" +208344,Lightning Charging Cable,1,14.95,06/23/19 00:31,"112 Walnut St, San Francisco, CA 94016" +208345,Lightning Charging Cable,1,14.95,06/15/19 18:44,"655 11th St, Seattle, WA 98101" +208346,LG Washing Machine,1,600.0,06/10/19 17:25,"989 Center St, San Francisco, CA 94016" +208347,AAA Batteries (4-pack),2,2.99,06/12/19 08:28,"682 Cherry St, Los Angeles, CA 90001" +208348,Bose SoundSport Headphones,1,99.99,06/28/19 10:25,"92 13th St, Seattle, WA 98101" +208349,27in 4K Gaming Monitor,1,389.99,06/04/19 22:31,"103 Washington St, Los Angeles, CA 90001" +208350,27in FHD Monitor,1,149.99,06/29/19 15:38,"620 Center St, Boston, MA 02215" +208351,AA Batteries (4-pack),2,3.84,06/21/19 22:48,"55 Maple St, Los Angeles, CA 90001" +208352,AA Batteries (4-pack),1,3.84,06/25/19 13:12,"514 Johnson St, Los Angeles, CA 90001" +208353,AA Batteries (4-pack),1,3.84,06/20/19 13:21,"710 14th St, Seattle, WA 98101" +208354,Apple Airpods Headphones,1,150,06/04/19 18:51,"829 10th St, Boston, MA 02215" +208355,Google Phone,1,600,06/22/19 18:36,"985 Dogwood St, Dallas, TX 75001" +208355,Bose SoundSport Headphones,1,99.99,06/22/19 18:36,"985 Dogwood St, Dallas, TX 75001" +208356,Wired Headphones,1,11.99,06/12/19 19:56,"262 Cherry St, Atlanta, GA 30301" +208357,Apple Airpods Headphones,1,150,06/21/19 15:48,"514 Forest St, Portland, OR 97035" +208358,Google Phone,1,600,06/05/19 22:25,"207 Chestnut St, Los Angeles, CA 90001" +208359,USB-C Charging Cable,1,11.95,06/16/19 16:05,"36 Elm St, Los Angeles, CA 90001" +208360,27in FHD Monitor,1,149.99,06/23/19 11:07,"150 10th St, San Francisco, CA 94016" +208361,Bose SoundSport Headphones,1,99.99,06/25/19 17:16,"143 11th St, San Francisco, CA 94016" +208362,Bose SoundSport Headphones,1,99.99,06/06/19 18:33,"423 Highland St, Dallas, TX 75001" +208363,Macbook Pro Laptop,1,1700,06/26/19 14:58,"922 Elm St, Seattle, WA 98101" +208364,AA Batteries (4-pack),1,3.84,06/10/19 19:25,"881 5th St, New York City, NY 10001" +208365,27in 4K Gaming Monitor,1,389.99,06/01/19 15:06,"766 Willow St, Dallas, TX 75001" +208366,AAA Batteries (4-pack),1,2.99,06/01/19 10:45,"366 Jefferson St, Portland, ME 04101" +208367,Apple Airpods Headphones,1,150,06/17/19 12:21,"594 Main St, San Francisco, CA 94016" +208368,AA Batteries (4-pack),1,3.84,06/10/19 17:45,"918 West St, Atlanta, GA 30301" +208369,Flatscreen TV,1,300,06/22/19 15:07,"258 Willow St, Los Angeles, CA 90001" +208370,AA Batteries (4-pack),1,3.84,06/11/19 10:40,"71 Jefferson St, Atlanta, GA 30301" +208371,Lightning Charging Cable,1,14.95,06/15/19 13:55,"194 8th St, Atlanta, GA 30301" +208372,Apple Airpods Headphones,1,150,06/06/19 16:37,"464 4th St, Portland, ME 04101" +208373,Google Phone,1,600,06/24/19 09:06,"707 Lake St, Dallas, TX 75001" +208373,USB-C Charging Cable,1,11.95,06/24/19 09:06,"707 Lake St, Dallas, TX 75001" +208373,Bose SoundSport Headphones,1,99.99,06/24/19 09:06,"707 Lake St, Dallas, TX 75001" +208374,Wired Headphones,1,11.99,06/19/19 21:44,"757 River St, Austin, TX 73301" +208375,AA Batteries (4-pack),1,3.84,06/11/19 13:44,"618 Chestnut St, Atlanta, GA 30301" +208376,Flatscreen TV,1,300,06/06/19 22:12,"164 Maple St, New York City, NY 10001" +208377,AAA Batteries (4-pack),1,2.99,06/25/19 21:33,"395 14th St, Los Angeles, CA 90001" +208378,Apple Airpods Headphones,1,150,06/18/19 21:53,"783 2nd St, Seattle, WA 98101" +208379,Lightning Charging Cable,1,14.95,06/24/19 11:06,"577 Lincoln St, Atlanta, GA 30301" +208380,Lightning Charging Cable,1,14.95,06/01/19 12:13,"651 12th St, Los Angeles, CA 90001" +208381,AA Batteries (4-pack),1,3.84,06/01/19 12:43,"557 Adams St, Atlanta, GA 30301" +208382,Bose SoundSport Headphones,1,99.99,06/23/19 12:14,"997 North St, Los Angeles, CA 90001" +208383,AA Batteries (4-pack),2,3.84,06/16/19 20:08,"465 South St, New York City, NY 10001" +208384,27in FHD Monitor,1,149.99,06/05/19 16:16,"915 Madison St, Portland, OR 97035" +208385,USB-C Charging Cable,1,11.95,06/17/19 15:36,"778 Chestnut St, Los Angeles, CA 90001" +208386,Lightning Charging Cable,1,14.95,06/22/19 21:14,"885 13th St, Seattle, WA 98101" +208387,AAA Batteries (4-pack),1,2.99,06/02/19 01:53,"513 Cherry St, New York City, NY 10001" +208388,AAA Batteries (4-pack),1,2.99,06/16/19 14:47,"176 Church St, Seattle, WA 98101" +208389,Apple Airpods Headphones,1,150,06/15/19 14:24,"780 Adams St, Seattle, WA 98101" +208390,AA Batteries (4-pack),1,3.84,06/14/19 05:25,"553 Washington St, Los Angeles, CA 90001" +208391,Apple Airpods Headphones,1,150,06/28/19 18:08,"125 West St, Los Angeles, CA 90001" +208392,Lightning Charging Cable,1,14.95,06/22/19 12:05,"925 Willow St, San Francisco, CA 94016" +208393,AA Batteries (4-pack),1,3.84,06/29/19 15:03,"481 8th St, San Francisco, CA 94016" +208394,iPhone,1,700,06/15/19 13:37,"7 Madison St, Boston, MA 02215" +208395,iPhone,1,700,06/21/19 11:17,"891 Lake St, San Francisco, CA 94016" +208396,iPhone,1,700,06/27/19 21:25,"242 Hill St, Los Angeles, CA 90001" +208396,Lightning Charging Cable,1,14.95,06/27/19 21:25,"242 Hill St, Los Angeles, CA 90001" +208397,AAA Batteries (4-pack),1,2.99,06/14/19 20:51,"721 Pine St, Boston, MA 02215" +208398,AAA Batteries (4-pack),1,2.99,06/02/19 17:56,"156 Highland St, Boston, MA 02215" +208399,Bose SoundSport Headphones,1,99.99,06/22/19 14:07,"794 North St, Los Angeles, CA 90001" +208400,AA Batteries (4-pack),1,3.84,06/12/19 10:09,"402 4th St, Boston, MA 02215" +208401,Apple Airpods Headphones,1,150,06/06/19 21:12,"142 1st St, Austin, TX 73301" +208402,Google Phone,1,600,06/11/19 22:12,"941 8th St, Boston, MA 02215" +208403,Macbook Pro Laptop,1,1700,06/11/19 06:35,"574 Forest St, Atlanta, GA 30301" +208404,AAA Batteries (4-pack),1,2.99,06/07/19 21:17,"449 Dogwood St, San Francisco, CA 94016" +208405,Flatscreen TV,1,300,06/14/19 12:16,"229 12th St, San Francisco, CA 94016" +208406,Wired Headphones,4,11.99,06/27/19 07:58,"14 Ridge St, Seattle, WA 98101" +208407,AAA Batteries (4-pack),2,2.99,06/04/19 13:24,"399 Maple St, San Francisco, CA 94016" +208408,USB-C Charging Cable,1,11.95,06/29/19 22:16,"407 Church St, Los Angeles, CA 90001" +208409,Macbook Pro Laptop,1,1700,06/18/19 13:27,"227 Walnut St, Atlanta, GA 30301" +208410,AAA Batteries (4-pack),1,2.99,06/12/19 10:27,"303 Johnson St, Los Angeles, CA 90001" +208411,Wired Headphones,1,11.99,06/22/19 21:20,"240 North St, Portland, OR 97035" +208412,Lightning Charging Cable,1,14.95,06/19/19 09:58,"756 Pine St, New York City, NY 10001" +208413,Google Phone,1,600,06/21/19 18:48,"125 Cherry St, Los Angeles, CA 90001" +208414,Bose SoundSport Headphones,1,99.99,06/23/19 16:53,"962 7th St, Boston, MA 02215" +208415,USB-C Charging Cable,1,11.95,06/22/19 18:47,"921 Lakeview St, Dallas, TX 75001" +208416,Apple Airpods Headphones,1,150,06/16/19 11:33,"830 Park St, Los Angeles, CA 90001" +208417,ThinkPad Laptop,1,999.99,06/19/19 12:40,"220 8th St, San Francisco, CA 94016" +208418,27in FHD Monitor,1,149.99,06/10/19 17:39,"688 Lincoln St, Seattle, WA 98101" +208418,Wired Headphones,1,11.99,06/10/19 17:39,"688 Lincoln St, Seattle, WA 98101" +208419,iPhone,1,700,06/24/19 07:46,"267 Willow St, Dallas, TX 75001" +208420,AA Batteries (4-pack),1,3.84,06/08/19 10:59,"958 Pine St, Boston, MA 02215" +208421,iPhone,1,700,06/03/19 06:59,"448 7th St, Los Angeles, CA 90001" +208422,AA Batteries (4-pack),4,3.84,06/16/19 19:31,"734 9th St, San Francisco, CA 94016" +208423,Google Phone,1,600,06/26/19 18:03,"496 Lincoln St, Dallas, TX 75001" +208424,AAA Batteries (4-pack),2,2.99,06/17/19 19:03,"937 Lincoln St, Boston, MA 02215" +208425,Lightning Charging Cable,1,14.95,06/16/19 10:12,"808 7th St, San Francisco, CA 94016" +208426,USB-C Charging Cable,2,11.95,06/07/19 05:20,"495 9th St, San Francisco, CA 94016" +208427,34in Ultrawide Monitor,1,379.99,06/20/19 10:27,"865 Church St, San Francisco, CA 94016" +208428,Lightning Charging Cable,1,14.95,06/15/19 13:13,"15 Pine St, Boston, MA 02215" +208429,USB-C Charging Cable,1,11.95,06/25/19 17:00,"538 Dogwood St, Portland, OR 97035" +208430,Bose SoundSport Headphones,1,99.99,06/28/19 13:06,"878 13th St, New York City, NY 10001" +208431,Lightning Charging Cable,1,14.95,06/18/19 14:05,"623 Pine St, San Francisco, CA 94016" +208432,AA Batteries (4-pack),1,3.84,06/06/19 22:19,"582 9th St, Atlanta, GA 30301" +208433,AAA Batteries (4-pack),1,2.99,06/13/19 10:58,"525 North St, Portland, ME 04101" +208434,LG Dryer,1,600.0,06/21/19 12:42,"776 Spruce St, New York City, NY 10001" +208435,Apple Airpods Headphones,1,150,06/24/19 19:50,"31 Elm St, San Francisco, CA 94016" +208436,Wired Headphones,1,11.99,06/25/19 08:05,"843 10th St, Seattle, WA 98101" +208437,AAA Batteries (4-pack),1,2.99,06/19/19 09:16,"515 Highland St, Boston, MA 02215" +208438,Macbook Pro Laptop,1,1700,06/04/19 13:32,"177 Dogwood St, Boston, MA 02215" +208439,27in 4K Gaming Monitor,1,389.99,06/19/19 11:58,"6 Hill St, Los Angeles, CA 90001" +208440,iPhone,1,700,06/11/19 09:33,"833 North St, Austin, TX 73301" +208441,34in Ultrawide Monitor,1,379.99,06/29/19 22:10,"203 Walnut St, San Francisco, CA 94016" +208442,USB-C Charging Cable,1,11.95,06/14/19 14:44,"701 Cedar St, Boston, MA 02215" +208442,Bose SoundSport Headphones,1,99.99,06/14/19 14:44,"701 Cedar St, Boston, MA 02215" +208443,Flatscreen TV,1,300,06/23/19 19:44,"79 Jackson St, San Francisco, CA 94016" +208444,Bose SoundSport Headphones,1,99.99,06/17/19 14:00,"197 Willow St, Atlanta, GA 30301" +208445,iPhone,1,700,06/15/19 03:15,"315 South St, Boston, MA 02215" +208446,AAA Batteries (4-pack),2,2.99,06/12/19 01:04,"322 Meadow St, Seattle, WA 98101" +208447,AA Batteries (4-pack),1,3.84,06/27/19 08:00,"828 Cherry St, San Francisco, CA 94016" +208448,iPhone,1,700,06/08/19 18:18,"464 Wilson St, Atlanta, GA 30301" +208449,AAA Batteries (4-pack),1,2.99,06/16/19 13:23,"683 Ridge St, Seattle, WA 98101" +208450,27in FHD Monitor,1,149.99,06/06/19 17:48,"422 Johnson St, New York City, NY 10001" +208451,20in Monitor,1,109.99,06/14/19 17:51,"440 Jefferson St, Austin, TX 73301" +208452,Apple Airpods Headphones,1,150,06/08/19 20:14,"584 Walnut St, Los Angeles, CA 90001" +208453,Flatscreen TV,1,300,06/29/19 08:23,"574 Jefferson St, New York City, NY 10001" +208454,Apple Airpods Headphones,1,150,06/18/19 20:27,"252 6th St, Austin, TX 73301" +208455,AA Batteries (4-pack),1,3.84,06/20/19 09:23,"770 Spruce St, Dallas, TX 75001" +208456,27in 4K Gaming Monitor,1,389.99,06/22/19 13:41,"111 Sunset St, New York City, NY 10001" +208457,Lightning Charging Cable,1,14.95,06/08/19 20:23,"85 12th St, New York City, NY 10001" +208458,AA Batteries (4-pack),1,3.84,06/22/19 11:55,"332 10th St, Dallas, TX 75001" +208459,Bose SoundSport Headphones,1,99.99,06/30/19 18:51,"393 Park St, Los Angeles, CA 90001" +208460,USB-C Charging Cable,1,11.95,06/08/19 20:43,"327 Meadow St, Boston, MA 02215" +208461,USB-C Charging Cable,1,11.95,06/10/19 20:01,"391 Jackson St, Boston, MA 02215" +208462,Wired Headphones,1,11.99,06/02/19 23:52,"666 Sunset St, San Francisco, CA 94016" +208463,ThinkPad Laptop,1,999.99,06/28/19 10:37,"884 Lake St, Los Angeles, CA 90001" +208464,Google Phone,1,600,06/07/19 11:48,"619 Forest St, Atlanta, GA 30301" +208465,AA Batteries (4-pack),1,3.84,06/16/19 18:18,"154 River St, Seattle, WA 98101" +208466,Wired Headphones,1,11.99,06/22/19 16:07,"707 Highland St, San Francisco, CA 94016" +208467,34in Ultrawide Monitor,1,379.99,06/27/19 23:53,"198 Church St, New York City, NY 10001" +208468,Wired Headphones,1,11.99,06/28/19 17:43,"810 West St, San Francisco, CA 94016" +208469,Google Phone,1,600,06/09/19 12:09,"392 Jackson St, New York City, NY 10001" +208470,27in FHD Monitor,1,149.99,06/17/19 17:54,"715 Jackson St, New York City, NY 10001" +208471,Bose SoundSport Headphones,1,99.99,06/15/19 23:43,"409 Lincoln St, San Francisco, CA 94016" +208472,AAA Batteries (4-pack),3,2.99,06/05/19 17:02,"762 6th St, Boston, MA 02215" +208473,Lightning Charging Cable,1,14.95,06/02/19 14:41,"838 Chestnut St, Portland, OR 97035" +208474,AAA Batteries (4-pack),3,2.99,06/29/19 16:36,"403 Park St, San Francisco, CA 94016" +208475,USB-C Charging Cable,1,11.95,06/30/19 22:11,"413 Adams St, San Francisco, CA 94016" +208476,Google Phone,1,600,06/14/19 07:38,"504 10th St, New York City, NY 10001" +208476,USB-C Charging Cable,1,11.95,06/14/19 07:38,"504 10th St, New York City, NY 10001" +208477,Wired Headphones,1,11.99,06/19/19 14:01,"571 Lake St, New York City, NY 10001" +208478,Apple Airpods Headphones,1,150,06/14/19 21:40,"840 Sunset St, Portland, OR 97035" +208479,27in FHD Monitor,1,149.99,06/11/19 09:30,"465 8th St, Dallas, TX 75001" +208480,USB-C Charging Cable,1,11.95,06/03/19 11:08,"741 Lake St, San Francisco, CA 94016" +208481,Wired Headphones,2,11.99,06/22/19 00:03,"957 Main St, San Francisco, CA 94016" +208482,Lightning Charging Cable,1,14.95,06/14/19 23:19,"997 Ridge St, Los Angeles, CA 90001" +208483,Lightning Charging Cable,1,14.95,06/01/19 14:41,"720 Cedar St, San Francisco, CA 94016" +208484,Wired Headphones,1,11.99,06/22/19 14:35,"163 Highland St, Portland, OR 97035" +208485,AA Batteries (4-pack),1,3.84,06/13/19 20:56,"584 12th St, San Francisco, CA 94016" +208486,USB-C Charging Cable,2,11.95,06/12/19 20:55,"465 9th St, Seattle, WA 98101" +208487,USB-C Charging Cable,1,11.95,06/16/19 16:50,"673 1st St, Seattle, WA 98101" +208488,Lightning Charging Cable,1,14.95,06/22/19 22:31,"345 Cedar St, New York City, NY 10001" +208489,Wired Headphones,1,11.99,06/01/19 11:52,"53 Walnut St, Dallas, TX 75001" +208490,Wired Headphones,1,11.99,06/06/19 15:02,"865 Willow St, Boston, MA 02215" +208491,34in Ultrawide Monitor,1,379.99,06/11/19 19:48,"404 10th St, Dallas, TX 75001" +208492,USB-C Charging Cable,1,11.95,06/20/19 20:25,"689 Center St, Austin, TX 73301" +208493,Flatscreen TV,1,300,06/04/19 21:42,"202 Walnut St, New York City, NY 10001" +208494,34in Ultrawide Monitor,1,379.99,06/06/19 09:21,"18 Washington St, Portland, OR 97035" +208495,Lightning Charging Cable,1,14.95,06/01/19 22:26,"412 Wilson St, San Francisco, CA 94016" +208496,AAA Batteries (4-pack),1,2.99,06/27/19 22:10,"887 Highland St, Austin, TX 73301" +208497,AA Batteries (4-pack),1,3.84,06/19/19 09:03,"90 Park St, San Francisco, CA 94016" +208498,Wired Headphones,1,11.99,06/27/19 22:00,"741 Wilson St, Seattle, WA 98101" +208499,Macbook Pro Laptop,1,1700,06/27/19 21:39,"206 Lincoln St, Los Angeles, CA 90001" +208500,Lightning Charging Cable,1,14.95,06/27/19 03:37,"832 Lincoln St, Atlanta, GA 30301" +208501,34in Ultrawide Monitor,1,379.99,06/27/19 11:38,"64 Church St, Atlanta, GA 30301" +208502,Macbook Pro Laptop,1,1700,06/16/19 22:09,"937 South St, Seattle, WA 98101" +208503,AA Batteries (4-pack),1,3.84,06/14/19 18:42,"8 Hill St, San Francisco, CA 94016" +208504,Macbook Pro Laptop,1,1700,06/24/19 07:39,"931 Pine St, San Francisco, CA 94016" +208505,AA Batteries (4-pack),2,3.84,06/26/19 17:21,"807 Lake St, Boston, MA 02215" +208506,Lightning Charging Cable,1,14.95,06/29/19 07:59,"17 Elm St, Boston, MA 02215" +208507,USB-C Charging Cable,1,11.95,06/19/19 17:44,"620 Church St, Boston, MA 02215" +208508,Flatscreen TV,1,300,06/11/19 14:37,"599 Hickory St, Los Angeles, CA 90001" +208509,Google Phone,1,600,06/19/19 20:05,"424 5th St, San Francisco, CA 94016" +208510,AA Batteries (4-pack),2,3.84,06/27/19 10:31,"258 Wilson St, Los Angeles, CA 90001" +208511,AAA Batteries (4-pack),2,2.99,06/09/19 16:59,"692 Hill St, Los Angeles, CA 90001" +208512,Macbook Pro Laptop,1,1700,06/27/19 12:02,"385 Washington St, New York City, NY 10001" +208513,Wired Headphones,1,11.99,06/25/19 15:53,"211 10th St, Boston, MA 02215" +208514,Wired Headphones,1,11.99,06/05/19 11:58,"587 4th St, New York City, NY 10001" +208515,iPhone,1,700,06/30/19 12:44,"880 6th St, New York City, NY 10001" +208515,Wired Headphones,1,11.99,06/30/19 12:44,"880 6th St, New York City, NY 10001" +208516,USB-C Charging Cable,1,11.95,06/19/19 09:55,"226 1st St, Seattle, WA 98101" +208517,Bose SoundSport Headphones,1,99.99,06/06/19 20:03,"38 Elm St, Los Angeles, CA 90001" +208518,Lightning Charging Cable,1,14.95,06/30/19 18:41,"790 8th St, Seattle, WA 98101" +208519,AA Batteries (4-pack),1,3.84,06/10/19 15:48,"99 Lakeview St, Boston, MA 02215" +208520,Wired Headphones,1,11.99,06/22/19 16:10,"461 Ridge St, San Francisco, CA 94016" +208521,AA Batteries (4-pack),1,3.84,06/17/19 10:59,"927 Spruce St, Seattle, WA 98101" +208522,Bose SoundSport Headphones,1,99.99,06/01/19 23:16,"234 Cedar St, San Francisco, CA 94016" +208523,USB-C Charging Cable,1,11.95,06/24/19 02:50,"561 Jefferson St, Seattle, WA 98101" +208524,USB-C Charging Cable,1,11.95,06/23/19 19:55,"630 Park St, Seattle, WA 98101" +208525,27in FHD Monitor,1,149.99,06/14/19 09:10,"136 South St, Los Angeles, CA 90001" +208526,27in FHD Monitor,1,149.99,06/12/19 12:40,"313 11th St, Seattle, WA 98101" +208527,Flatscreen TV,1,300,06/27/19 00:34,"839 Ridge St, Dallas, TX 75001" +208528,Lightning Charging Cable,1,14.95,06/18/19 22:19,"314 11th St, San Francisco, CA 94016" +208529,Vareebadd Phone,1,400,06/13/19 11:37,"510 12th St, Austin, TX 73301" +208530,AAA Batteries (4-pack),1,2.99,06/11/19 11:53,"687 Willow St, New York City, NY 10001" +208531,Google Phone,1,600,06/13/19 10:08,"246 Maple St, Los Angeles, CA 90001" +208532,iPhone,1,700,06/21/19 17:33,"628 9th St, Portland, ME 04101" +208532,Wired Headphones,1,11.99,06/21/19 17:33,"628 9th St, Portland, ME 04101" +208533,Flatscreen TV,1,300,06/23/19 10:27,"735 10th St, Atlanta, GA 30301" +208534,AA Batteries (4-pack),2,3.84,06/16/19 14:23,"281 12th St, Atlanta, GA 30301" +208535,USB-C Charging Cable,1,11.95,06/05/19 09:25,"457 7th St, San Francisco, CA 94016" +208536,Lightning Charging Cable,1,14.95,06/19/19 12:33,"545 8th St, Boston, MA 02215" +208537,Bose SoundSport Headphones,1,99.99,06/03/19 15:33,"936 13th St, Los Angeles, CA 90001" +208537,27in 4K Gaming Monitor,1,389.99,06/03/19 15:33,"936 13th St, Los Angeles, CA 90001" +208538,USB-C Charging Cable,1,11.95,06/08/19 19:44,"488 7th St, Boston, MA 02215" +208539,AA Batteries (4-pack),2,3.84,06/21/19 13:13,"898 5th St, San Francisco, CA 94016" +208540,USB-C Charging Cable,1,11.95,06/02/19 18:04,"480 4th St, Boston, MA 02215" +208541,Apple Airpods Headphones,1,150,06/15/19 10:18,"881 Madison St, Los Angeles, CA 90001" +208542,ThinkPad Laptop,1,999.99,06/15/19 21:38,"305 Meadow St, Los Angeles, CA 90001" +208543,Google Phone,1,600,06/04/19 19:21,"289 Highland St, Portland, OR 97035" +208543,Wired Headphones,1,11.99,06/04/19 19:21,"289 Highland St, Portland, OR 97035" +208544,Apple Airpods Headphones,1,150,06/27/19 10:35,"958 Lincoln St, Seattle, WA 98101" +208545,AA Batteries (4-pack),3,3.84,06/25/19 23:20,"924 North St, Atlanta, GA 30301" +208546,USB-C Charging Cable,1,11.95,06/04/19 21:53,"893 Forest St, Portland, OR 97035" +208547,Apple Airpods Headphones,1,150,06/03/19 11:37,"904 River St, Atlanta, GA 30301" +208548,Lightning Charging Cable,1,14.95,06/04/19 22:28,"292 Lake St, Austin, TX 73301" +208549,27in 4K Gaming Monitor,1,389.99,06/12/19 17:15,"418 7th St, Los Angeles, CA 90001" +208549,Lightning Charging Cable,1,14.95,06/12/19 17:15,"418 7th St, Los Angeles, CA 90001" +208550,Google Phone,1,600,06/13/19 14:05,"979 West St, Portland, OR 97035" +208551,AAA Batteries (4-pack),1,2.99,06/07/19 16:08,"698 1st St, Portland, OR 97035" +208552,Apple Airpods Headphones,1,150,06/17/19 20:10,"44 Walnut St, Los Angeles, CA 90001" +208553,USB-C Charging Cable,1,11.95,06/06/19 14:03,"183 West St, Seattle, WA 98101" +208554,Bose SoundSport Headphones,1,99.99,06/11/19 13:32,"750 River St, Los Angeles, CA 90001" +208555,Wired Headphones,1,11.99,06/28/19 19:08,"475 Cedar St, San Francisco, CA 94016" +208556,AA Batteries (4-pack),1,3.84,06/14/19 18:29,"13 Wilson St, New York City, NY 10001" +208557,Bose SoundSport Headphones,1,99.99,06/01/19 07:39,"199 Elm St, Atlanta, GA 30301" +208558,34in Ultrawide Monitor,1,379.99,06/30/19 17:45,"949 Maple St, San Francisco, CA 94016" +208559,27in 4K Gaming Monitor,1,389.99,06/26/19 15:54,"121 Forest St, New York City, NY 10001" +208560,Macbook Pro Laptop,1,1700,06/17/19 08:47,"726 South St, San Francisco, CA 94016" +208561,Lightning Charging Cable,1,14.95,06/26/19 09:43,"257 2nd St, New York City, NY 10001" +208562,Bose SoundSport Headphones,1,99.99,06/27/19 10:16,"33 Chestnut St, Seattle, WA 98101" +208563,Macbook Pro Laptop,1,1700,06/25/19 19:49,"808 Center St, New York City, NY 10001" +208564,USB-C Charging Cable,1,11.95,06/24/19 21:32,"74 Highland St, New York City, NY 10001" +208565,Apple Airpods Headphones,1,150,06/08/19 22:42,"283 Lincoln St, San Francisco, CA 94016" +208566,AA Batteries (4-pack),1,3.84,06/29/19 13:49,"43 Dogwood St, Dallas, TX 75001" +208567,Google Phone,1,600,06/05/19 17:10,"440 9th St, San Francisco, CA 94016" +208568,Apple Airpods Headphones,1,150,06/16/19 15:44,"997 West St, Portland, OR 97035" +208569,27in FHD Monitor,1,149.99,06/15/19 13:39,"320 Church St, New York City, NY 10001" +208570,ThinkPad Laptop,1,999.99,06/14/19 19:21,"779 Jackson St, Boston, MA 02215" +208571,Vareebadd Phone,1,400,06/03/19 21:35,"957 7th St, Los Angeles, CA 90001" +208571,Wired Headphones,1,11.99,06/03/19 21:35,"957 7th St, Los Angeles, CA 90001" +208572,Apple Airpods Headphones,1,150,06/14/19 17:31,"336 Maple St, San Francisco, CA 94016" +208573,20in Monitor,1,109.99,06/08/19 17:40,"321 River St, Portland, OR 97035" +208574,Lightning Charging Cable,1,14.95,06/03/19 08:23,"584 West St, Portland, OR 97035" +208575,Apple Airpods Headphones,1,150,06/03/19 10:58,"379 South St, New York City, NY 10001" +208576,Vareebadd Phone,1,400,06/19/19 19:01,"63 Johnson St, Dallas, TX 75001" +208577,USB-C Charging Cable,1,11.95,06/29/19 11:32,"485 Cherry St, New York City, NY 10001" +208578,Google Phone,1,600,06/19/19 12:19,"471 Wilson St, New York City, NY 10001" +208579,AAA Batteries (4-pack),1,2.99,06/10/19 00:12,"343 Chestnut St, San Francisco, CA 94016" +,,,,, +208580,Wired Headphones,1,11.99,06/19/19 13:51,"291 7th St, Los Angeles, CA 90001" +208581,Lightning Charging Cable,1,14.95,06/13/19 18:00,"878 Center St, Boston, MA 02215" +208582,Wired Headphones,1,11.99,06/24/19 18:19,"755 1st St, Los Angeles, CA 90001" +208583,AAA Batteries (4-pack),1,2.99,06/09/19 20:57,"810 Main St, Los Angeles, CA 90001" +208584,Lightning Charging Cable,1,14.95,06/09/19 16:49,"964 11th St, Los Angeles, CA 90001" +208585,AAA Batteries (4-pack),1,2.99,06/03/19 11:00,"389 Willow St, Boston, MA 02215" +208586,AA Batteries (4-pack),2,3.84,06/05/19 13:01,"733 12th St, Austin, TX 73301" +208587,AA Batteries (4-pack),2,3.84,06/12/19 20:38,"912 9th St, Los Angeles, CA 90001" +208588,Macbook Pro Laptop,1,1700,06/13/19 23:08,"200 Meadow St, Portland, OR 97035" +208589,Apple Airpods Headphones,1,150,06/17/19 17:24,"56 Park St, Los Angeles, CA 90001" +208590,Macbook Pro Laptop,1,1700,06/11/19 10:56,"835 6th St, Boston, MA 02215" +208591,27in 4K Gaming Monitor,1,389.99,06/30/19 16:53,"149 Willow St, Dallas, TX 75001" +208592,27in FHD Monitor,1,149.99,06/27/19 20:07,"756 Willow St, Los Angeles, CA 90001" +208593,Lightning Charging Cable,1,14.95,06/08/19 15:31,"182 5th St, San Francisco, CA 94016" +208594,Lightning Charging Cable,1,14.95,06/08/19 13:42,"671 7th St, Atlanta, GA 30301" +208595,Lightning Charging Cable,1,14.95,06/26/19 16:43,"146 Elm St, Boston, MA 02215" +208596,27in FHD Monitor,1,149.99,06/30/19 13:13,"367 Johnson St, Austin, TX 73301" +208597,USB-C Charging Cable,1,11.95,06/11/19 14:23,"87 2nd St, Atlanta, GA 30301" +208598,AAA Batteries (4-pack),1,2.99,06/30/19 18:15,"940 Park St, Seattle, WA 98101" +208599,Lightning Charging Cable,1,14.95,06/14/19 15:08,"256 Spruce St, Dallas, TX 75001" +208600,Wired Headphones,1,11.99,06/18/19 08:36,"300 Cherry St, San Francisco, CA 94016" +208601,AAA Batteries (4-pack),1,2.99,06/24/19 11:20,"228 2nd St, New York City, NY 10001" +208601,AA Batteries (4-pack),1,3.84,06/24/19 11:20,"228 2nd St, New York City, NY 10001" +208602,AA Batteries (4-pack),1,3.84,06/17/19 14:09,"122 West St, Dallas, TX 75001" +208603,Vareebadd Phone,1,400,06/22/19 08:42,"948 Ridge St, Los Angeles, CA 90001" +208604,27in FHD Monitor,1,149.99,06/09/19 11:38,"854 Church St, New York City, NY 10001" +208605,AA Batteries (4-pack),1,3.84,06/24/19 14:55,"576 5th St, Portland, OR 97035" +208606,Lightning Charging Cable,2,14.95,06/08/19 08:28,"438 Adams St, Boston, MA 02215" +208607,Apple Airpods Headphones,1,150,06/17/19 19:01,"918 Hickory St, San Francisco, CA 94016" +208608,27in 4K Gaming Monitor,1,389.99,06/20/19 14:33,"436 8th St, Austin, TX 73301" +208609,AAA Batteries (4-pack),3,2.99,06/18/19 17:11,"839 12th St, San Francisco, CA 94016" +208610,AAA Batteries (4-pack),1,2.99,06/16/19 14:15,"383 Cedar St, San Francisco, CA 94016" +208611,USB-C Charging Cable,1,11.95,06/24/19 11:14,"728 Cherry St, San Francisco, CA 94016" +208612,USB-C Charging Cable,1,11.95,06/04/19 06:17,"799 2nd St, Dallas, TX 75001" +208612,AAA Batteries (4-pack),1,2.99,06/04/19 06:17,"799 2nd St, Dallas, TX 75001" +208613,Wired Headphones,1,11.99,06/19/19 14:01,"653 Washington St, Dallas, TX 75001" +208614,Lightning Charging Cable,1,14.95,06/01/19 16:47,"999 Elm St, Dallas, TX 75001" +208615,AAA Batteries (4-pack),1,2.99,06/24/19 15:03,"725 Jackson St, Dallas, TX 75001" +208616,Bose SoundSport Headphones,1,99.99,06/21/19 15:08,"817 Willow St, Los Angeles, CA 90001" +208617,Lightning Charging Cable,1,14.95,06/06/19 16:27,"50 Maple St, Portland, OR 97035" +208618,Wired Headphones,1,11.99,06/20/19 20:33,"354 Park St, Boston, MA 02215" +208619,Flatscreen TV,1,300,06/03/19 13:49,"676 Lake St, Los Angeles, CA 90001" +208620,AA Batteries (4-pack),2,3.84,06/15/19 22:47,"201 Walnut St, New York City, NY 10001" +208621,Macbook Pro Laptop,1,1700,06/10/19 19:09,"160 Johnson St, Boston, MA 02215" +208622,AA Batteries (4-pack),3,3.84,06/26/19 10:06,"174 13th St, Boston, MA 02215" +208623,USB-C Charging Cable,1,11.95,06/01/19 18:17,"991 6th St, Portland, OR 97035" +208624,Macbook Pro Laptop,1,1700,06/20/19 22:31,"122 Forest St, Atlanta, GA 30301" +208625,ThinkPad Laptop,1,999.99,06/21/19 22:59,"339 Park St, New York City, NY 10001" +208626,iPhone,1,700,06/04/19 14:29,"634 13th St, Atlanta, GA 30301" +208627,Apple Airpods Headphones,1,150,06/23/19 14:26,"827 South St, Dallas, TX 75001" +208628,AAA Batteries (4-pack),1,2.99,06/11/19 20:12,"898 Cherry St, San Francisco, CA 94016" +208629,USB-C Charging Cable,1,11.95,06/20/19 18:21,"663 12th St, San Francisco, CA 94016" +208630,Macbook Pro Laptop,1,1700,06/06/19 10:11,"54 Park St, San Francisco, CA 94016" +208631,AAA Batteries (4-pack),1,2.99,06/28/19 18:57,"517 Spruce St, Atlanta, GA 30301" +208632,USB-C Charging Cable,1,11.95,06/30/19 19:16,"502 Jackson St, Seattle, WA 98101" +208633,AA Batteries (4-pack),1,3.84,06/07/19 11:52,"228 Cherry St, New York City, NY 10001" +208634,AA Batteries (4-pack),1,3.84,06/17/19 14:07,"103 Lakeview St, Boston, MA 02215" +208635,Lightning Charging Cable,1,14.95,06/15/19 10:58,"461 South St, Boston, MA 02215" +208636,AAA Batteries (4-pack),1,2.99,06/25/19 12:26,"177 Pine St, Atlanta, GA 30301" +208637,Apple Airpods Headphones,1,150,06/22/19 07:13,"996 Hill St, Atlanta, GA 30301" +208638,Apple Airpods Headphones,1,150,06/30/19 13:32,"12 Church St, Dallas, TX 75001" +208639,Apple Airpods Headphones,1,150,06/23/19 10:07,"675 13th St, New York City, NY 10001" +208640,Apple Airpods Headphones,1,150,06/27/19 14:38,"705 Forest St, Boston, MA 02215" +208641,AAA Batteries (4-pack),2,2.99,06/14/19 13:08,"927 Cedar St, Los Angeles, CA 90001" +208642,iPhone,1,700,06/18/19 11:22,"197 West St, Los Angeles, CA 90001" +208643,AA Batteries (4-pack),2,3.84,06/24/19 09:30,"956 6th St, Los Angeles, CA 90001" +,,,,, +208644,Lightning Charging Cable,1,14.95,06/29/19 06:25,"646 Hickory St, Los Angeles, CA 90001" +208645,USB-C Charging Cable,1,11.95,06/03/19 10:39,"69 4th St, New York City, NY 10001" +208646,ThinkPad Laptop,1,999.99,06/12/19 11:42,"956 6th St, Dallas, TX 75001" +208647,AA Batteries (4-pack),1,3.84,06/19/19 20:06,"618 Cedar St, San Francisco, CA 94016" +208648,Bose SoundSport Headphones,1,99.99,06/15/19 17:02,"588 Main St, Dallas, TX 75001" +208649,USB-C Charging Cable,1,11.95,06/01/19 16:03,"303 11th St, Dallas, TX 75001" +208650,AAA Batteries (4-pack),2,2.99,06/22/19 21:20,"498 8th St, Los Angeles, CA 90001" +208651,AAA Batteries (4-pack),1,2.99,06/30/19 11:50,"136 5th St, Portland, OR 97035" +208652,Bose SoundSport Headphones,1,99.99,06/14/19 09:37,"830 Lakeview St, Los Angeles, CA 90001" +208653,Wired Headphones,1,11.99,06/26/19 22:48,"200 13th St, Atlanta, GA 30301" +208654,Apple Airpods Headphones,1,150,06/23/19 00:34,"733 Hickory St, Los Angeles, CA 90001" +208655,AAA Batteries (4-pack),1,2.99,06/17/19 22:12,"136 West St, Dallas, TX 75001" +208656,ThinkPad Laptop,1,999.99,06/29/19 15:56,"732 South St, New York City, NY 10001" +208657,AA Batteries (4-pack),1,3.84,06/13/19 15:45,"140 7th St, San Francisco, CA 94016" +208658,Bose SoundSport Headphones,1,99.99,06/09/19 20:21,"296 Cedar St, Los Angeles, CA 90001" +208659,USB-C Charging Cable,1,11.95,06/02/19 10:36,"329 Maple St, Los Angeles, CA 90001" +208660,Lightning Charging Cable,1,14.95,06/09/19 19:22,"781 Spruce St, San Francisco, CA 94016" +208661,Apple Airpods Headphones,1,150,06/11/19 12:40,"872 6th St, Portland, OR 97035" +208662,USB-C Charging Cable,1,11.95,06/08/19 22:37,"176 Johnson St, Atlanta, GA 30301" +208663,Apple Airpods Headphones,1,150,06/25/19 10:51,"607 12th St, Portland, ME 04101" +208664,27in FHD Monitor,1,149.99,06/11/19 18:29,"514 Church St, Austin, TX 73301" +208665,Apple Airpods Headphones,1,150,06/16/19 16:34,"154 Johnson St, Austin, TX 73301" +208666,AA Batteries (4-pack),1,3.84,06/08/19 17:44,"69 West St, Atlanta, GA 30301" +208667,USB-C Charging Cable,1,11.95,06/02/19 09:30,"948 Pine St, Los Angeles, CA 90001" +208668,Wired Headphones,1,11.99,06/07/19 19:34,"466 Lincoln St, Dallas, TX 75001" +208669,27in FHD Monitor,1,149.99,06/16/19 10:42,"676 4th St, Atlanta, GA 30301" +208670,USB-C Charging Cable,1,11.95,06/13/19 13:34,"266 River St, New York City, NY 10001" +208671,Lightning Charging Cable,1,14.95,06/12/19 23:13,"40 Hickory St, New York City, NY 10001" +208672,USB-C Charging Cable,1,11.95,06/04/19 06:24,"350 Park St, New York City, NY 10001" +,,,,, +208673,34in Ultrawide Monitor,1,379.99,06/23/19 14:33,"981 12th St, Portland, OR 97035" +208674,Lightning Charging Cable,1,14.95,06/17/19 17:57,"768 Lakeview St, San Francisco, CA 94016" +208675,Apple Airpods Headphones,1,150,06/10/19 10:34,"742 Washington St, Dallas, TX 75001" +208676,AA Batteries (4-pack),1,3.84,06/07/19 17:18,"609 13th St, New York City, NY 10001" +208677,Wired Headphones,1,11.99,06/22/19 10:47,"454 Dogwood St, New York City, NY 10001" +208678,Bose SoundSport Headphones,1,99.99,06/11/19 10:52,"814 6th St, Boston, MA 02215" +208679,27in FHD Monitor,1,149.99,06/18/19 17:51,"485 Willow St, Boston, MA 02215" +208680,AAA Batteries (4-pack),2,2.99,06/03/19 14:10,"216 Johnson St, Portland, OR 97035" +208681,Vareebadd Phone,1,400,06/26/19 08:43,"709 5th St, Seattle, WA 98101" +208682,34in Ultrawide Monitor,1,379.99,06/14/19 21:56,"263 Elm St, Portland, OR 97035" +208683,Macbook Pro Laptop,1,1700,06/16/19 06:05,"37 Spruce St, San Francisco, CA 94016" +208683,USB-C Charging Cable,1,11.95,06/16/19 06:05,"37 Spruce St, San Francisco, CA 94016" +208684,Apple Airpods Headphones,1,150,06/27/19 09:54,"140 11th St, Dallas, TX 75001" +208685,Bose SoundSport Headphones,1,99.99,06/23/19 13:53,"616 Spruce St, Boston, MA 02215" +208686,Lightning Charging Cable,1,14.95,06/10/19 14:33,"774 13th St, Boston, MA 02215" +208687,iPhone,1,700,06/10/19 11:33,"854 7th St, Seattle, WA 98101" +208688,Lightning Charging Cable,1,14.95,06/06/19 19:26,"607 12th St, Seattle, WA 98101" +208689,Apple Airpods Headphones,1,150,06/09/19 14:58,"605 Walnut St, San Francisco, CA 94016" +208690,Wired Headphones,1,11.99,06/03/19 15:12,"214 West St, San Francisco, CA 94016" +208691,AAA Batteries (4-pack),1,2.99,06/21/19 19:17,"221 Sunset St, Atlanta, GA 30301" +208692,AAA Batteries (4-pack),4,2.99,06/24/19 15:59,"189 River St, New York City, NY 10001" +208692,AAA Batteries (4-pack),3,2.99,06/24/19 15:59,"189 River St, New York City, NY 10001" +208693,Lightning Charging Cable,1,14.95,06/18/19 11:59,"401 5th St, Seattle, WA 98101" +208694,AA Batteries (4-pack),1,3.84,06/03/19 16:49,"284 River St, Boston, MA 02215" +208695,USB-C Charging Cable,2,11.95,06/18/19 01:25,"191 Adams St, Atlanta, GA 30301" +208696,Apple Airpods Headphones,1,150,06/10/19 15:47,"448 9th St, Portland, OR 97035" +208697,ThinkPad Laptop,1,999.99,06/17/19 20:07,"303 Park St, San Francisco, CA 94016" +208698,Wired Headphones,1,11.99,06/28/19 15:07,"932 Chestnut St, Seattle, WA 98101" +208699,AAA Batteries (4-pack),1,2.99,06/25/19 14:56,"491 Spruce St, Los Angeles, CA 90001" +208700,34in Ultrawide Monitor,1,379.99,06/24/19 11:19,"567 13th St, New York City, NY 10001" +208701,Lightning Charging Cable,2,14.95,06/06/19 19:12,"415 Church St, Dallas, TX 75001" +208702,LG Dryer,1,600.0,06/30/19 21:27,"326 Lincoln St, San Francisco, CA 94016" +208703,AAA Batteries (4-pack),1,2.99,06/14/19 19:30,"750 1st St, Los Angeles, CA 90001" +208704,Bose SoundSport Headphones,1,99.99,06/09/19 14:15,"702 14th St, Boston, MA 02215" +208705,27in 4K Gaming Monitor,1,389.99,06/11/19 18:43,"215 River St, Dallas, TX 75001" +208706,Wired Headphones,1,11.99,06/23/19 14:07,"440 Elm St, Los Angeles, CA 90001" +208707,USB-C Charging Cable,1,11.95,06/29/19 08:08,"670 Main St, Atlanta, GA 30301" +208708,Apple Airpods Headphones,1,150,06/08/19 20:00,"789 Lake St, New York City, NY 10001" +208709,AAA Batteries (4-pack),1,2.99,06/17/19 13:19,"524 Jackson St, San Francisco, CA 94016" +208710,AA Batteries (4-pack),2,3.84,06/11/19 18:36,"98 Willow St, Portland, ME 04101" +208711,27in FHD Monitor,1,149.99,06/10/19 14:53,"438 Madison St, Dallas, TX 75001" +208712,AA Batteries (4-pack),2,3.84,06/30/19 01:06,"846 Madison St, Boston, MA 02215" +208713,Wired Headphones,1,11.99,06/11/19 18:41,"879 Hickory St, Atlanta, GA 30301" +208714,USB-C Charging Cable,1,11.95,06/12/19 23:19,"794 Cedar St, Austin, TX 73301" +208714,Macbook Pro Laptop,1,1700,06/12/19 23:19,"794 Cedar St, Austin, TX 73301" +208715,Lightning Charging Cable,1,14.95,06/20/19 19:59,"317 Lake St, Los Angeles, CA 90001" +208716,Lightning Charging Cable,1,14.95,06/30/19 20:36,"315 11th St, Atlanta, GA 30301" +208717,USB-C Charging Cable,1,11.95,06/01/19 17:35,"131 Lake St, Los Angeles, CA 90001" +208718,Wired Headphones,1,11.99,06/16/19 21:13,"626 Cedar St, Los Angeles, CA 90001" +208719,34in Ultrawide Monitor,1,379.99,06/30/19 11:09,"543 Hill St, Dallas, TX 75001" +208720,Wired Headphones,1,11.99,06/22/19 12:36,"449 Jefferson St, San Francisco, CA 94016" +208721,Macbook Pro Laptop,1,1700,06/12/19 22:58,"129 Adams St, Portland, OR 97035" +208722,Bose SoundSport Headphones,1,99.99,06/27/19 14:05,"276 13th St, New York City, NY 10001" +208723,Lightning Charging Cable,1,14.95,06/16/19 01:07,"332 Washington St, San Francisco, CA 94016" +208724,USB-C Charging Cable,1,11.95,06/27/19 07:34,"807 Jefferson St, San Francisco, CA 94016" +208725,Macbook Pro Laptop,1,1700,06/04/19 19:43,"280 Johnson St, Los Angeles, CA 90001" +208726,USB-C Charging Cable,1,11.95,06/01/19 14:51,"96 North St, San Francisco, CA 94016" +208727,Lightning Charging Cable,1,14.95,06/17/19 16:22,"365 South St, San Francisco, CA 94016" +208728,Lightning Charging Cable,1,14.95,06/01/19 11:01,"111 Ridge St, San Francisco, CA 94016" +208729,AA Batteries (4-pack),1,3.84,06/02/19 23:25,"474 West St, Austin, TX 73301" +208730,ThinkPad Laptop,1,999.99,06/17/19 16:35,"198 1st St, Los Angeles, CA 90001" +208731,AA Batteries (4-pack),1,3.84,06/22/19 07:54,"568 Jackson St, Los Angeles, CA 90001" +208732,34in Ultrawide Monitor,1,379.99,06/22/19 10:50,"989 Cherry St, New York City, NY 10001" +208733,Flatscreen TV,1,300,06/26/19 14:46,"606 Jackson St, New York City, NY 10001" +208734,Wired Headphones,1,11.99,06/07/19 22:46,"895 Hill St, New York City, NY 10001" +208735,Bose SoundSport Headphones,1,99.99,06/15/19 05:57,"857 Maple St, Boston, MA 02215" +208736,USB-C Charging Cable,1,11.95,06/24/19 23:59,"655 Church St, New York City, NY 10001" +208737,34in Ultrawide Monitor,1,379.99,06/26/19 21:14,"802 Lakeview St, Seattle, WA 98101" +208738,Apple Airpods Headphones,1,150,06/16/19 01:54,"705 Cherry St, Los Angeles, CA 90001" +208739,Apple Airpods Headphones,1,150,06/06/19 00:01,"908 5th St, San Francisco, CA 94016" +208740,Macbook Pro Laptop,1,1700,06/09/19 14:59,"214 4th St, Los Angeles, CA 90001" +208741,AAA Batteries (4-pack),1,2.99,06/30/19 13:06,"898 14th St, Dallas, TX 75001" +208742,iPhone,1,700,06/13/19 22:44,"614 1st St, Seattle, WA 98101" +208743,34in Ultrawide Monitor,1,379.99,06/17/19 12:22,"221 7th St, Seattle, WA 98101" +208744,Wired Headphones,2,11.99,06/06/19 11:05,"106 Pine St, San Francisco, CA 94016" +208745,AAA Batteries (4-pack),1,2.99,06/05/19 08:40,"10 12th St, Boston, MA 02215" +208746,USB-C Charging Cable,1,11.95,06/23/19 10:30,"301 1st St, Boston, MA 02215" +208747,AAA Batteries (4-pack),2,2.99,06/15/19 00:08,"111 Meadow St, San Francisco, CA 94016" +208748,AAA Batteries (4-pack),1,2.99,06/21/19 21:01,"895 Hickory St, New York City, NY 10001" +208749,AAA Batteries (4-pack),1,2.99,06/17/19 22:05,"576 Hill St, Boston, MA 02215" +208750,Macbook Pro Laptop,1,1700,06/16/19 11:15,"728 Forest St, New York City, NY 10001" +208751,27in FHD Monitor,1,149.99,06/18/19 09:11,"992 11th St, San Francisco, CA 94016" +208752,Flatscreen TV,1,300,06/26/19 22:07,"676 Johnson St, San Francisco, CA 94016" +208753,34in Ultrawide Monitor,1,379.99,06/01/19 22:16,"522 River St, New York City, NY 10001" +208754,AAA Batteries (4-pack),1,2.99,06/26/19 22:19,"53 Washington St, San Francisco, CA 94016" +208755,iPhone,1,700,06/27/19 11:32,"807 Jefferson St, Austin, TX 73301" +208755,Wired Headphones,1,11.99,06/27/19 11:32,"807 Jefferson St, Austin, TX 73301" +208756,AAA Batteries (4-pack),2,2.99,06/16/19 17:36,"395 West St, New York City, NY 10001" +208757,USB-C Charging Cable,1,11.95,06/18/19 19:03,"377 Walnut St, Boston, MA 02215" +208758,Apple Airpods Headphones,1,150,06/25/19 15:04,"494 Center St, Boston, MA 02215" +208759,AA Batteries (4-pack),1,3.84,06/06/19 16:13,"951 Jackson St, Seattle, WA 98101" +208760,Wired Headphones,2,11.99,06/30/19 00:41,"859 Dogwood St, New York City, NY 10001" +208761,20in Monitor,1,109.99,06/30/19 18:56,"396 12th St, San Francisco, CA 94016" +208762,AAA Batteries (4-pack),1,2.99,06/06/19 14:02,"623 Dogwood St, San Francisco, CA 94016" +208763,Wired Headphones,1,11.99,06/02/19 09:38,"825 Hickory St, San Francisco, CA 94016" +208764,Bose SoundSport Headphones,1,99.99,06/14/19 08:21,"792 Main St, San Francisco, CA 94016" +208765,Bose SoundSport Headphones,1,99.99,06/03/19 16:22,"996 Lakeview St, Boston, MA 02215" +208766,20in Monitor,1,109.99,06/16/19 15:18,"575 Lakeview St, New York City, NY 10001" +208767,USB-C Charging Cable,1,11.95,06/30/19 15:26,"322 7th St, New York City, NY 10001" +208768,Flatscreen TV,1,300,06/18/19 10:14,"393 Church St, Boston, MA 02215" +208768,AA Batteries (4-pack),1,3.84,06/18/19 10:14,"393 Church St, Boston, MA 02215" +208769,Lightning Charging Cable,1,14.95,06/10/19 19:09,"864 Meadow St, Dallas, TX 75001" +208770,AA Batteries (4-pack),2,3.84,06/26/19 20:19,"651 Hill St, Dallas, TX 75001" +208771,Apple Airpods Headphones,1,150,06/11/19 23:02,"515 Hill St, Austin, TX 73301" +208772,USB-C Charging Cable,1,11.95,06/26/19 18:40,"89 8th St, Seattle, WA 98101" +208773,34in Ultrawide Monitor,1,379.99,06/19/19 13:39,"258 Willow St, Los Angeles, CA 90001" +208774,Apple Airpods Headphones,1,150,06/20/19 14:21,"177 Highland St, Boston, MA 02215" +208775,Bose SoundSport Headphones,1,99.99,06/13/19 19:56,"518 Ridge St, Boston, MA 02215" +208776,AA Batteries (4-pack),2,3.84,06/04/19 17:15,"222 Lakeview St, New York City, NY 10001" +208777,Bose SoundSport Headphones,1,99.99,06/20/19 11:40,"714 Pine St, Portland, OR 97035" +208778,USB-C Charging Cable,1,11.95,06/14/19 13:35,"916 Lakeview St, Los Angeles, CA 90001" +208779,AA Batteries (4-pack),2,3.84,06/04/19 14:56,"443 Jefferson St, Portland, OR 97035" +208780,AA Batteries (4-pack),1,3.84,06/25/19 15:20,"169 14th St, New York City, NY 10001" +208781,Lightning Charging Cable,1,14.95,06/24/19 17:03,"120 12th St, Los Angeles, CA 90001" +208782,USB-C Charging Cable,1,11.95,06/27/19 09:10,"70 Church St, Atlanta, GA 30301" +208783,Macbook Pro Laptop,1,1700,06/10/19 10:56,"803 Main St, San Francisco, CA 94016" +208784,Lightning Charging Cable,1,14.95,06/05/19 19:46,"520 1st St, Boston, MA 02215" +208785,AA Batteries (4-pack),1,3.84,06/21/19 17:28,"596 Jefferson St, New York City, NY 10001" +208786,USB-C Charging Cable,1,11.95,06/28/19 20:20,"95 Pine St, Boston, MA 02215" +208787,Bose SoundSport Headphones,1,99.99,06/12/19 12:12,"407 Chestnut St, Boston, MA 02215" +208788,AA Batteries (4-pack),1,3.84,06/16/19 10:29,"233 8th St, San Francisco, CA 94016" +208789,Apple Airpods Headphones,1,150,06/25/19 22:47,"941 Wilson St, Austin, TX 73301" +208790,Lightning Charging Cable,1,14.95,06/04/19 18:46,"369 Cedar St, Boston, MA 02215" +208791,Apple Airpods Headphones,1,150,06/21/19 11:30,"367 Lincoln St, San Francisco, CA 94016" +208792,27in 4K Gaming Monitor,1,389.99,06/14/19 12:58,"919 Lake St, Seattle, WA 98101" +208793,AA Batteries (4-pack),4,3.84,06/08/19 05:32,"985 Jefferson St, Austin, TX 73301" +208794,Bose SoundSport Headphones,1,99.99,06/13/19 06:01,"1 2nd St, Los Angeles, CA 90001" +208795,27in FHD Monitor,1,149.99,06/19/19 16:32,"359 Main St, Seattle, WA 98101" +208796,AAA Batteries (4-pack),1,2.99,06/22/19 08:46,"751 4th St, Portland, OR 97035" +208797,AAA Batteries (4-pack),1,2.99,06/30/19 07:22,"594 Hickory St, New York City, NY 10001" +208798,LG Dryer,1,600.0,06/14/19 15:49,"637 Sunset St, Los Angeles, CA 90001" +208799,27in 4K Gaming Monitor,1,389.99,06/05/19 10:48,"456 Meadow St, Los Angeles, CA 90001" +208800,Wired Headphones,1,11.99,06/17/19 05:10,"287 Sunset St, Los Angeles, CA 90001" +208801,Lightning Charging Cable,1,14.95,06/21/19 18:24,"256 13th St, Dallas, TX 75001" +208802,USB-C Charging Cable,1,11.95,06/07/19 23:25,"330 Lake St, Los Angeles, CA 90001" +208803,Flatscreen TV,1,300,06/03/19 00:47,"878 2nd St, San Francisco, CA 94016" +208804,Lightning Charging Cable,1,14.95,06/30/19 21:40,"227 Johnson St, Los Angeles, CA 90001" +208805,Lightning Charging Cable,1,14.95,06/11/19 11:49,"5 Jefferson St, San Francisco, CA 94016" +208806,Wired Headphones,1,11.99,06/10/19 11:30,"82 Washington St, San Francisco, CA 94016" +208807,Wired Headphones,1,11.99,06/18/19 19:29,"168 Chestnut St, San Francisco, CA 94016" +208808,Apple Airpods Headphones,1,150,06/20/19 12:27,"600 Sunset St, Portland, OR 97035" +208809,AA Batteries (4-pack),5,3.84,06/22/19 18:18,"111 Center St, San Francisco, CA 94016" +208810,34in Ultrawide Monitor,1,379.99,06/07/19 16:15,"299 11th St, San Francisco, CA 94016" +208811,AAA Batteries (4-pack),1,2.99,06/28/19 21:15,"840 Sunset St, Los Angeles, CA 90001" +208812,Wired Headphones,1,11.99,06/11/19 01:46,"705 Elm St, Boston, MA 02215" +208813,AAA Batteries (4-pack),3,2.99,06/27/19 13:45,"719 Jackson St, Austin, TX 73301" +208814,AA Batteries (4-pack),1,3.84,06/14/19 14:31,"965 Meadow St, Boston, MA 02215" +208815,20in Monitor,1,109.99,06/16/19 22:29,"296 Maple St, New York City, NY 10001" +208816,USB-C Charging Cable,1,11.95,06/10/19 07:40,"497 South St, Portland, OR 97035" +208817,Flatscreen TV,1,300,06/17/19 22:00,"672 Lake St, San Francisco, CA 94016" +208818,Wired Headphones,1,11.99,06/05/19 09:29,"191 Meadow St, Atlanta, GA 30301" +208819,Wired Headphones,1,11.99,06/25/19 18:41,"437 North St, Boston, MA 02215" +208820,Bose SoundSport Headphones,1,99.99,06/27/19 20:02,"520 Forest St, New York City, NY 10001" +208821,AA Batteries (4-pack),1,3.84,06/22/19 11:10,"530 11th St, Los Angeles, CA 90001" +208822,Google Phone,1,600,06/05/19 19:11,"46 13th St, New York City, NY 10001" +208823,Bose SoundSport Headphones,1,99.99,06/27/19 19:26,"338 Meadow St, San Francisco, CA 94016" +208824,Wired Headphones,1,11.99,06/28/19 00:21,"372 Wilson St, New York City, NY 10001" +208825,Wired Headphones,1,11.99,06/23/19 10:46,"350 Jefferson St, Los Angeles, CA 90001" +208826,USB-C Charging Cable,1,11.95,06/14/19 16:33,"994 5th St, Los Angeles, CA 90001" +208827,27in 4K Gaming Monitor,1,389.99,06/12/19 17:52,"853 Cedar St, San Francisco, CA 94016" +208828,Wired Headphones,1,11.99,06/05/19 01:03,"716 Elm St, Austin, TX 73301" +208829,Google Phone,1,600,06/11/19 11:19,"165 Maple St, Portland, OR 97035" +208830,20in Monitor,1,109.99,06/16/19 13:07,"856 Elm St, San Francisco, CA 94016" +208831,Wired Headphones,1,11.99,06/28/19 22:26,"821 Washington St, New York City, NY 10001" +208832,Lightning Charging Cable,1,14.95,06/23/19 17:25,"501 13th St, San Francisco, CA 94016" +208833,USB-C Charging Cable,1,11.95,06/08/19 19:13,"185 1st St, Austin, TX 73301" +208834,Wired Headphones,1,11.99,06/11/19 13:04,"444 Forest St, Seattle, WA 98101" +208835,Google Phone,1,600,06/10/19 17:27,"268 Park St, Boston, MA 02215" +208836,27in FHD Monitor,1,149.99,06/11/19 19:19,"639 Hickory St, Boston, MA 02215" +208837,AAA Batteries (4-pack),1,2.99,06/23/19 05:32,"303 Main St, Atlanta, GA 30301" +208838,Google Phone,1,600,06/27/19 17:05,"555 Maple St, Seattle, WA 98101" +208838,USB-C Charging Cable,1,11.95,06/27/19 17:05,"555 Maple St, Seattle, WA 98101" +208839,Bose SoundSport Headphones,1,99.99,06/02/19 13:57,"883 West St, Los Angeles, CA 90001" +208840,Bose SoundSport Headphones,1,99.99,06/19/19 11:07,"874 8th St, San Francisco, CA 94016" +208841,Wired Headphones,1,11.99,06/30/19 16:54,"138 Wilson St, San Francisco, CA 94016" +208842,Lightning Charging Cable,1,14.95,06/18/19 14:06,"704 Wilson St, New York City, NY 10001" +208843,Bose SoundSport Headphones,1,99.99,06/14/19 14:24,"337 Church St, Los Angeles, CA 90001" +208844,Wired Headphones,1,11.99,06/30/19 12:33,"568 Dogwood St, Los Angeles, CA 90001" +208845,USB-C Charging Cable,1,11.95,06/05/19 09:08,"565 Lake St, San Francisco, CA 94016" +208846,Bose SoundSport Headphones,1,99.99,06/18/19 19:33,"379 Lake St, Atlanta, GA 30301" +208847,Macbook Pro Laptop,1,1700,06/01/19 16:05,"603 Washington St, Boston, MA 02215" +208848,20in Monitor,1,109.99,06/12/19 09:09,"477 Center St, Atlanta, GA 30301" +208849,USB-C Charging Cable,1,11.95,06/02/19 22:08,"52 13th St, Dallas, TX 75001" +208850,AAA Batteries (4-pack),3,2.99,06/22/19 19:45,"637 Lakeview St, Los Angeles, CA 90001" +208851,Macbook Pro Laptop,1,1700,06/22/19 15:17,"404 Chestnut St, New York City, NY 10001" +208852,Apple Airpods Headphones,1,150,06/28/19 16:54,"514 8th St, Seattle, WA 98101" +208853,Wired Headphones,1,11.99,06/01/19 16:44,"603 7th St, Austin, TX 73301" +208854,AA Batteries (4-pack),1,3.84,06/24/19 14:43,"120 10th St, New York City, NY 10001" +208855,AA Batteries (4-pack),1,3.84,06/13/19 11:21,"178 Church St, San Francisco, CA 94016" +208856,USB-C Charging Cable,1,11.95,06/26/19 16:23,"323 14th St, Los Angeles, CA 90001" +208857,AAA Batteries (4-pack),1,2.99,06/04/19 11:25,"175 6th St, Atlanta, GA 30301" +208858,Bose SoundSport Headphones,1,99.99,06/22/19 19:49,"279 Cedar St, Atlanta, GA 30301" +208859,Wired Headphones,1,11.99,06/24/19 18:17,"557 Sunset St, Los Angeles, CA 90001" +208860,Apple Airpods Headphones,1,150,06/04/19 11:59,"60 Forest St, San Francisco, CA 94016" +208861,iPhone,1,700,06/11/19 08:14,"936 2nd St, Los Angeles, CA 90001" +208862,34in Ultrawide Monitor,1,379.99,06/08/19 13:30,"188 Chestnut St, Atlanta, GA 30301" +208863,27in 4K Gaming Monitor,1,389.99,06/08/19 13:33,"783 4th St, Los Angeles, CA 90001" +208864,Lightning Charging Cable,1,14.95,06/28/19 21:35,"506 2nd St, Boston, MA 02215" +208865,USB-C Charging Cable,1,11.95,06/13/19 20:48,"713 8th St, Atlanta, GA 30301" +208866,Wired Headphones,1,11.99,06/23/19 23:39,"135 Center St, Austin, TX 73301" +208867,USB-C Charging Cable,1,11.95,06/26/19 12:28,"952 9th St, San Francisco, CA 94016" +208868,AA Batteries (4-pack),1,3.84,06/30/19 18:26,"886 North St, Seattle, WA 98101" +208869,AA Batteries (4-pack),2,3.84,06/07/19 21:31,"772 Lincoln St, Seattle, WA 98101" +208869,USB-C Charging Cable,1,11.95,06/07/19 21:31,"772 Lincoln St, Seattle, WA 98101" +208870,USB-C Charging Cable,1,11.95,06/25/19 03:17,"351 9th St, Atlanta, GA 30301" +208871,AAA Batteries (4-pack),1,2.99,06/14/19 09:03,"176 Highland St, San Francisco, CA 94016" +208872,AAA Batteries (4-pack),1,2.99,06/27/19 16:34,"269 Hill St, San Francisco, CA 94016" +208873,AA Batteries (4-pack),1,3.84,06/03/19 07:53,"309 Cherry St, Los Angeles, CA 90001" +208874,Vareebadd Phone,1,400,06/30/19 23:33,"902 Jackson St, Atlanta, GA 30301" +208874,USB-C Charging Cable,1,11.95,06/30/19 23:33,"902 Jackson St, Atlanta, GA 30301" +208875,Bose SoundSport Headphones,1,99.99,06/05/19 23:42,"183 Hickory St, Atlanta, GA 30301" +208876,iPhone,1,700,06/19/19 14:14,"672 6th St, Seattle, WA 98101" +208877,Google Phone,1,600,06/24/19 10:15,"362 4th St, San Francisco, CA 94016" +208878,AAA Batteries (4-pack),1,2.99,06/23/19 08:34,"359 Walnut St, New York City, NY 10001" +208879,Bose SoundSport Headphones,1,99.99,06/17/19 09:16,"472 Jefferson St, Austin, TX 73301" +208880,AA Batteries (4-pack),1,3.84,06/21/19 00:34,"822 Center St, Atlanta, GA 30301" +208881,Lightning Charging Cable,1,14.95,06/11/19 11:23,"923 Pine St, Los Angeles, CA 90001" +208882,Wired Headphones,1,11.99,06/16/19 19:54,"925 Sunset St, Los Angeles, CA 90001" +208883,Macbook Pro Laptop,1,1700,06/30/19 18:27,"452 Forest St, Boston, MA 02215" +208884,Flatscreen TV,1,300,06/27/19 10:55,"185 Maple St, San Francisco, CA 94016" +208885,Bose SoundSport Headphones,1,99.99,06/19/19 13:56,"514 12th St, San Francisco, CA 94016" +208886,AA Batteries (4-pack),1,3.84,06/11/19 13:51,"58 Madison St, San Francisco, CA 94016" +208887,ThinkPad Laptop,1,999.99,06/04/19 22:00,"245 4th St, San Francisco, CA 94016" +208888,USB-C Charging Cable,2,11.95,06/29/19 17:23,"310 Maple St, Seattle, WA 98101" +208889,Wired Headphones,1,11.99,06/02/19 17:33,"758 Sunset St, Dallas, TX 75001" +208890,USB-C Charging Cable,1,11.95,06/07/19 12:54,"845 Hill St, San Francisco, CA 94016" +208891,AA Batteries (4-pack),1,3.84,06/27/19 14:32,"457 West St, Boston, MA 02215" +208892,Wired Headphones,1,11.99,06/04/19 10:28,"342 Sunset St, Boston, MA 02215" +208893,AAA Batteries (4-pack),1,2.99,06/19/19 06:51,"537 Adams St, New York City, NY 10001" +208894,Wired Headphones,2,11.99,06/25/19 11:41,"396 Ridge St, New York City, NY 10001" +208895,AA Batteries (4-pack),1,3.84,06/03/19 12:34,"649 10th St, Boston, MA 02215" +208896,Wired Headphones,1,11.99,06/15/19 21:07,"138 11th St, Los Angeles, CA 90001" +208897,LG Washing Machine,1,600.0,06/08/19 10:00,"456 Pine St, San Francisco, CA 94016" +208898,Lightning Charging Cable,1,14.95,06/29/19 05:36,"663 Wilson St, Boston, MA 02215" +208899,AAA Batteries (4-pack),2,2.99,06/20/19 22:42,"518 8th St, Boston, MA 02215" +208900,AAA Batteries (4-pack),1,2.99,06/03/19 19:31,"742 Church St, Austin, TX 73301" +208901,34in Ultrawide Monitor,1,379.99,06/11/19 12:13,"100 9th St, Seattle, WA 98101" +208902,Lightning Charging Cable,1,14.95,06/05/19 15:59,"454 Hill St, New York City, NY 10001" +208903,AAA Batteries (4-pack),1,2.99,06/10/19 05:18,"538 Sunset St, Los Angeles, CA 90001" +208904,USB-C Charging Cable,1,11.95,06/22/19 08:06,"75 Pine St, San Francisco, CA 94016" +208905,USB-C Charging Cable,1,11.95,06/17/19 21:02,"258 Sunset St, Los Angeles, CA 90001" +208906,AA Batteries (4-pack),2,3.84,06/03/19 11:36,"371 Hickory St, New York City, NY 10001" +208907,USB-C Charging Cable,1,11.95,06/25/19 13:18,"547 Meadow St, San Francisco, CA 94016" +208908,Google Phone,1,600,06/07/19 20:40,"616 Jefferson St, San Francisco, CA 94016" +208909,Lightning Charging Cable,1,14.95,06/23/19 21:28,"316 Cedar St, San Francisco, CA 94016" +208910,AA Batteries (4-pack),2,3.84,06/21/19 19:03,"370 Madison St, Boston, MA 02215" +208911,Wired Headphones,1,11.99,06/06/19 01:37,"245 South St, New York City, NY 10001" +208912,USB-C Charging Cable,1,11.95,06/27/19 20:52,"872 9th St, Los Angeles, CA 90001" +208912,Lightning Charging Cable,2,14.95,06/27/19 20:52,"872 9th St, Los Angeles, CA 90001" +208913,Lightning Charging Cable,1,14.95,06/06/19 11:32,"115 10th St, Los Angeles, CA 90001" +208914,Lightning Charging Cable,1,14.95,06/15/19 19:38,"862 11th St, Dallas, TX 75001" +208915,Macbook Pro Laptop,1,1700,06/07/19 15:46,"881 Wilson St, Los Angeles, CA 90001" +208916,27in FHD Monitor,1,149.99,06/08/19 19:36,"786 6th St, San Francisco, CA 94016" +208917,AA Batteries (4-pack),1,3.84,06/11/19 15:08,"238 12th St, Boston, MA 02215" +208918,Macbook Pro Laptop,1,1700,06/03/19 12:37,"426 Pine St, Los Angeles, CA 90001" +208919,Bose SoundSport Headphones,1,99.99,06/06/19 20:40,"957 Park St, Los Angeles, CA 90001" +208920,AA Batteries (4-pack),1,3.84,06/12/19 22:02,"378 Adams St, Seattle, WA 98101" +208921,USB-C Charging Cable,1,11.95,06/16/19 16:10,"865 Center St, Dallas, TX 75001" +208922,USB-C Charging Cable,1,11.95,06/06/19 13:41,"581 14th St, Boston, MA 02215" +208923,Google Phone,1,600,06/01/19 15:57,"162 Hickory St, San Francisco, CA 94016" +208923,USB-C Charging Cable,1,11.95,06/01/19 15:57,"162 Hickory St, San Francisco, CA 94016" +208924,Wired Headphones,2,11.99,06/26/19 01:29,"998 Sunset St, Boston, MA 02215" +208925,AAA Batteries (4-pack),2,2.99,06/26/19 20:10,"630 Lake St, Seattle, WA 98101" +208926,Apple Airpods Headphones,1,150,06/08/19 10:34,"498 Cherry St, Austin, TX 73301" +208927,Google Phone,1,600,06/17/19 12:01,"286 Elm St, Dallas, TX 75001" +208928,Bose SoundSport Headphones,1,99.99,06/30/19 22:51,"462 13th St, Atlanta, GA 30301" +208929,USB-C Charging Cable,1,11.95,06/24/19 09:59,"89 Madison St, San Francisco, CA 94016" +208930,ThinkPad Laptop,1,999.99,06/04/19 18:46,"536 Madison St, New York City, NY 10001" +208931,Lightning Charging Cable,1,14.95,06/28/19 13:14,"466 River St, Atlanta, GA 30301" +208932,AA Batteries (4-pack),1,3.84,06/30/19 16:29,"620 10th St, Portland, OR 97035" +208932,USB-C Charging Cable,1,11.95,06/30/19 16:29,"620 10th St, Portland, OR 97035" +208933,AA Batteries (4-pack),1,3.84,06/17/19 08:48,"56 Park St, Los Angeles, CA 90001" +208934,AA Batteries (4-pack),1,3.84,06/03/19 10:43,"383 Washington St, Dallas, TX 75001" +208935,ThinkPad Laptop,1,999.99,06/20/19 21:51,"351 12th St, Boston, MA 02215" +208936,Wired Headphones,1,11.99,06/11/19 10:38,"495 Lake St, New York City, NY 10001" +208937,AAA Batteries (4-pack),1,2.99,06/02/19 13:21,"703 Cedar St, San Francisco, CA 94016" +208938,USB-C Charging Cable,1,11.95,06/09/19 19:14,"312 South St, Boston, MA 02215" +208939,AA Batteries (4-pack),1,3.84,06/30/19 09:32,"610 Lakeview St, Atlanta, GA 30301" +208940,iPhone,1,700,06/19/19 15:00,"587 1st St, Atlanta, GA 30301" +208941,Bose SoundSport Headphones,1,99.99,06/02/19 10:03,"817 Adams St, Atlanta, GA 30301" +208942,Lightning Charging Cable,1,14.95,06/05/19 13:12,"824 Main St, San Francisco, CA 94016" +208943,AA Batteries (4-pack),1,3.84,06/18/19 16:51,"814 Lake St, New York City, NY 10001" +208944,USB-C Charging Cable,1,11.95,06/27/19 19:10,"119 Chestnut St, Los Angeles, CA 90001" +208945,USB-C Charging Cable,1,11.95,06/28/19 15:43,"432 14th St, New York City, NY 10001" +208946,20in Monitor,1,109.99,06/23/19 17:08,"340 West St, Boston, MA 02215" +208947,Google Phone,1,600,06/28/19 21:28,"38 Lake St, San Francisco, CA 94016" +208947,USB-C Charging Cable,2,11.95,06/28/19 21:28,"38 Lake St, San Francisco, CA 94016" +208948,34in Ultrawide Monitor,1,379.99,06/08/19 23:54,"153 Madison St, Atlanta, GA 30301" +208949,Macbook Pro Laptop,1,1700,06/23/19 14:02,"821 10th St, New York City, NY 10001" +208950,Bose SoundSport Headphones,1,99.99,06/16/19 13:09,"202 Sunset St, Portland, OR 97035" +208951,Apple Airpods Headphones,1,150,06/22/19 16:53,"835 1st St, New York City, NY 10001" +208952,AAA Batteries (4-pack),3,2.99,06/08/19 12:38,"425 Washington St, San Francisco, CA 94016" +208953,AA Batteries (4-pack),2,3.84,06/25/19 09:27,"355 Maple St, Austin, TX 73301" +208954,34in Ultrawide Monitor,1,379.99,06/15/19 20:59,"94 Center St, Austin, TX 73301" +208955,AA Batteries (4-pack),2,3.84,06/26/19 12:25,"839 10th St, Los Angeles, CA 90001" +208956,Wired Headphones,1,11.99,06/17/19 11:49,"835 Hickory St, Boston, MA 02215" +208957,Bose SoundSport Headphones,1,99.99,06/10/19 12:27,"86 Sunset St, Seattle, WA 98101" +208958,Bose SoundSport Headphones,1,99.99,06/04/19 11:41,"914 Walnut St, Boston, MA 02215" +208959,Bose SoundSport Headphones,1,99.99,06/15/19 21:48,"679 Main St, San Francisco, CA 94016" +208960,Google Phone,1,600,06/18/19 12:17,"271 Sunset St, Austin, TX 73301" +208961,Lightning Charging Cable,1,14.95,06/22/19 13:47,"254 8th St, Boston, MA 02215" +208962,Bose SoundSport Headphones,1,99.99,06/01/19 17:44,"874 Dogwood St, Atlanta, GA 30301" +208963,AAA Batteries (4-pack),1,2.99,06/04/19 19:02,"841 Forest St, San Francisco, CA 94016" +208964,27in 4K Gaming Monitor,1,389.99,06/04/19 12:39,"452 Spruce St, Atlanta, GA 30301" +208965,Lightning Charging Cable,1,14.95,06/10/19 12:28,"879 Adams St, Dallas, TX 75001" +208965,Google Phone,1,600,06/10/19 12:28,"879 Adams St, Dallas, TX 75001" +208966,ThinkPad Laptop,1,999.99,06/16/19 10:14,"534 1st St, San Francisco, CA 94016" +208967,Wired Headphones,1,11.99,06/09/19 08:22,"52 Adams St, Portland, OR 97035" +208968,Bose SoundSport Headphones,1,99.99,06/12/19 17:06,"509 Hill St, San Francisco, CA 94016" +208969,Lightning Charging Cable,1,14.95,06/27/19 11:26,"150 Lincoln St, Seattle, WA 98101" +208970,USB-C Charging Cable,1,11.95,06/11/19 19:27,"949 13th St, Seattle, WA 98101" +208971,Lightning Charging Cable,1,14.95,06/09/19 13:06,"429 Hill St, Dallas, TX 75001" +208972,AAA Batteries (4-pack),1,2.99,06/22/19 21:17,"167 Highland St, Seattle, WA 98101" +208973,Bose SoundSport Headphones,1,99.99,06/21/19 15:03,"348 Jackson St, Los Angeles, CA 90001" +208974,Wired Headphones,1,11.99,06/26/19 16:09,"409 West St, Los Angeles, CA 90001" +208975,Apple Airpods Headphones,1,150,06/08/19 18:36,"70 7th St, Los Angeles, CA 90001" +208976,Macbook Pro Laptop,1,1700,06/26/19 23:08,"481 Hill St, Los Angeles, CA 90001" +208977,Apple Airpods Headphones,1,150,06/14/19 21:35,"334 11th St, Seattle, WA 98101" +208978,AAA Batteries (4-pack),1,2.99,06/07/19 09:37,"573 Church St, San Francisco, CA 94016" +208979,27in FHD Monitor,1,149.99,06/06/19 13:39,"616 Sunset St, Portland, OR 97035" +208980,Wired Headphones,1,11.99,06/24/19 23:26,"539 Park St, San Francisco, CA 94016" +208981,Lightning Charging Cable,1,14.95,06/30/19 11:32,"15 West St, Atlanta, GA 30301" +208982,Apple Airpods Headphones,1,150,06/27/19 20:51,"660 Maple St, Atlanta, GA 30301" +208983,27in FHD Monitor,1,149.99,06/12/19 10:49,"351 Maple St, New York City, NY 10001" +208984,ThinkPad Laptop,1,999.99,06/11/19 22:17,"631 Hickory St, New York City, NY 10001" +208985,USB-C Charging Cable,1,11.95,06/07/19 15:54,"657 River St, Los Angeles, CA 90001" +208986,USB-C Charging Cable,1,11.95,06/22/19 11:22,"553 Center St, New York City, NY 10001" +208987,AA Batteries (4-pack),2,3.84,06/02/19 15:34,"126 Highland St, Portland, ME 04101" +208988,Wired Headphones,1,11.99,06/26/19 18:07,"413 Adams St, New York City, NY 10001" +208989,34in Ultrawide Monitor,1,379.99,06/15/19 18:39,"808 Lakeview St, Los Angeles, CA 90001" +208990,AAA Batteries (4-pack),1,2.99,06/29/19 16:58,"799 1st St, Los Angeles, CA 90001" +208991,AAA Batteries (4-pack),1,2.99,06/19/19 11:14,"270 Johnson St, San Francisco, CA 94016" +208992,USB-C Charging Cable,1,11.95,06/01/19 08:27,"934 Hill St, Seattle, WA 98101" +208993,Lightning Charging Cable,1,14.95,06/08/19 09:03,"75 Main St, Atlanta, GA 30301" +208994,USB-C Charging Cable,2,11.95,06/01/19 12:52,"670 Madison St, New York City, NY 10001" +208995,Lightning Charging Cable,1,14.95,06/06/19 20:32,"780 Madison St, New York City, NY 10001" +208996,Lightning Charging Cable,1,14.95,06/19/19 08:37,"150 Lincoln St, San Francisco, CA 94016" +208997,Bose SoundSport Headphones,1,99.99,06/20/19 19:50,"104 Ridge St, Los Angeles, CA 90001" +208998,iPhone,1,700,06/26/19 12:21,"15 6th St, San Francisco, CA 94016" +208999,Apple Airpods Headphones,1,150,06/15/19 12:02,"548 North St, Dallas, TX 75001" +209000,Lightning Charging Cable,1,14.95,06/09/19 11:04,"754 Lakeview St, Boston, MA 02215" +209001,Lightning Charging Cable,1,14.95,06/20/19 08:11,"755 Wilson St, Los Angeles, CA 90001" +209002,Google Phone,1,600,06/11/19 18:59,"443 Jefferson St, Boston, MA 02215" +209003,Macbook Pro Laptop,1,1700,06/05/19 23:38,"889 Lakeview St, Dallas, TX 75001" +209004,Wired Headphones,1,11.99,06/10/19 09:07,"761 5th St, Los Angeles, CA 90001" +209005,Flatscreen TV,1,300,06/08/19 00:08,"757 Spruce St, Dallas, TX 75001" +209006,LG Dryer,1,600.0,06/28/19 10:42,"129 Pine St, Los Angeles, CA 90001" +209007,Macbook Pro Laptop,1,1700,06/09/19 15:51,"354 Johnson St, San Francisco, CA 94016" +209008,Bose SoundSport Headphones,1,99.99,06/22/19 18:22,"993 Spruce St, Seattle, WA 98101" +209009,Lightning Charging Cable,1,14.95,06/23/19 11:37,"817 13th St, Los Angeles, CA 90001" +209010,Wired Headphones,1,11.99,06/22/19 10:07,"777 Adams St, Los Angeles, CA 90001" +209011,AAA Batteries (4-pack),2,2.99,06/20/19 22:27,"901 North St, San Francisco, CA 94016" +209012,AAA Batteries (4-pack),1,2.99,06/21/19 17:57,"168 Hickory St, San Francisco, CA 94016" +209013,AAA Batteries (4-pack),1,2.99,06/27/19 22:54,"526 Lincoln St, Boston, MA 02215" +209014,Wired Headphones,1,11.99,06/01/19 04:37,"383 Park St, San Francisco, CA 94016" +209015,Bose SoundSport Headphones,1,99.99,06/27/19 10:08,"648 West St, Los Angeles, CA 90001" +209016,USB-C Charging Cable,3,11.95,06/19/19 16:30,"264 9th St, San Francisco, CA 94016" +209017,AA Batteries (4-pack),1,3.84,06/03/19 11:43,"751 Cedar St, Los Angeles, CA 90001" +209018,27in FHD Monitor,1,149.99,06/23/19 09:55,"999 6th St, San Francisco, CA 94016" +209019,USB-C Charging Cable,1,11.95,06/21/19 12:55,"254 Meadow St, Austin, TX 73301" +209020,AAA Batteries (4-pack),1,2.99,06/05/19 20:37,"82 6th St, Portland, OR 97035" +209021,Macbook Pro Laptop,1,1700,06/06/19 18:17,"126 Hill St, Atlanta, GA 30301" +209022,AAA Batteries (4-pack),1,2.99,06/14/19 20:32,"449 Highland St, Austin, TX 73301" +209023,AAA Batteries (4-pack),1,2.99,06/07/19 22:54,"801 7th St, New York City, NY 10001" +209024,Lightning Charging Cable,1,14.95,06/21/19 07:50,"269 Lincoln St, Boston, MA 02215" +209025,Wired Headphones,1,11.99,06/05/19 17:14,"693 Chestnut St, Boston, MA 02215" +209026,20in Monitor,1,109.99,06/20/19 20:24,"454 Adams St, Los Angeles, CA 90001" +209027,Apple Airpods Headphones,1,150,06/05/19 11:01,"587 11th St, San Francisco, CA 94016" +209028,Apple Airpods Headphones,1,150,06/03/19 20:55,"755 14th St, Los Angeles, CA 90001" +209029,Wired Headphones,2,11.99,06/04/19 08:28,"928 South St, Dallas, TX 75001" +209030,AA Batteries (4-pack),2,3.84,06/28/19 16:12,"520 North St, New York City, NY 10001" +209031,ThinkPad Laptop,1,999.99,06/05/19 19:09,"618 Hill St, Atlanta, GA 30301" +209032,AAA Batteries (4-pack),1,2.99,06/30/19 21:07,"491 Pine St, Los Angeles, CA 90001" +209033,USB-C Charging Cable,2,11.95,06/05/19 13:57,"396 Jefferson St, Boston, MA 02215" +209034,Lightning Charging Cable,1,14.95,06/08/19 22:10,"54 Johnson St, Boston, MA 02215" +209035,ThinkPad Laptop,1,999.99,06/02/19 13:20,"597 Lincoln St, New York City, NY 10001" +209036,Wired Headphones,1,11.99,06/22/19 14:00,"958 River St, San Francisco, CA 94016" +209037,27in 4K Gaming Monitor,1,389.99,06/19/19 13:08,"171 7th St, Los Angeles, CA 90001" +209038,Apple Airpods Headphones,1,150,06/03/19 17:33,"230 Washington St, Los Angeles, CA 90001" +209039,Wired Headphones,1,11.99,06/18/19 11:34,"237 9th St, Portland, OR 97035" +209039,USB-C Charging Cable,1,11.95,06/18/19 11:34,"237 9th St, Portland, OR 97035" +209040,Wired Headphones,1,11.99,06/29/19 20:13,"539 Lakeview St, New York City, NY 10001" +209041,Wired Headphones,1,11.99,06/01/19 15:54,"323 Willow St, San Francisco, CA 94016" +209042,Lightning Charging Cable,1,14.95,06/11/19 19:38,"164 Jackson St, Austin, TX 73301" +209043,Apple Airpods Headphones,1,150,06/21/19 19:18,"69 Center St, San Francisco, CA 94016" +209044,AA Batteries (4-pack),1,3.84,06/17/19 18:17,"610 Sunset St, Austin, TX 73301" +209045,20in Monitor,1,109.99,06/22/19 03:19,"22 Hickory St, Seattle, WA 98101" +209046,34in Ultrawide Monitor,1,379.99,06/22/19 20:40,"185 Chestnut St, Atlanta, GA 30301" +209047,Apple Airpods Headphones,1,150,06/04/19 05:34,"355 Dogwood St, San Francisco, CA 94016" +209048,AA Batteries (4-pack),1,3.84,06/24/19 21:59,"559 4th St, Boston, MA 02215" +209049,Lightning Charging Cable,1,14.95,06/02/19 00:08,"106 Wilson St, San Francisco, CA 94016" +209050,Apple Airpods Headphones,1,150,06/14/19 17:56,"504 Lincoln St, Dallas, TX 75001" +209051,USB-C Charging Cable,1,11.95,06/13/19 08:26,"620 Jackson St, Boston, MA 02215" +209052,iPhone,1,700,06/27/19 13:08,"24 Highland St, San Francisco, CA 94016" +209053,Bose SoundSport Headphones,1,99.99,06/18/19 16:49,"323 Lake St, Boston, MA 02215" +209054,AAA Batteries (4-pack),1,2.99,06/20/19 13:38,"58 Sunset St, Boston, MA 02215" +209055,Google Phone,1,600,06/30/19 18:54,"794 Jefferson St, San Francisco, CA 94016" +209056,Macbook Pro Laptop,1,1700,06/11/19 14:55,"967 Willow St, Austin, TX 73301" +209057,AA Batteries (4-pack),1,3.84,06/06/19 19:27,"319 9th St, Austin, TX 73301" +209058,34in Ultrawide Monitor,1,379.99,06/09/19 15:33,"229 9th St, Portland, OR 97035" +209059,AA Batteries (4-pack),2,3.84,06/20/19 17:57,"808 1st St, Seattle, WA 98101" +209060,ThinkPad Laptop,1,999.99,06/18/19 17:46,"656 6th St, Los Angeles, CA 90001" +209061,USB-C Charging Cable,1,11.95,06/03/19 13:00,"462 Spruce St, Dallas, TX 75001" +209062,AAA Batteries (4-pack),2,2.99,06/25/19 11:40,"758 Chestnut St, New York City, NY 10001" +209063,Lightning Charging Cable,1,14.95,06/12/19 12:07,"239 Maple St, San Francisco, CA 94016" +209064,Bose SoundSport Headphones,1,99.99,06/10/19 15:10,"449 Adams St, San Francisco, CA 94016" +209065,AA Batteries (4-pack),1,3.84,06/18/19 13:38,"120 Walnut St, Boston, MA 02215" +209066,Wired Headphones,1,11.99,06/15/19 10:53,"400 13th St, San Francisco, CA 94016" +209067,AA Batteries (4-pack),1,3.84,06/18/19 16:28,"539 Center St, New York City, NY 10001" +209068,iPhone,1,700,06/09/19 08:53,"676 9th St, Portland, ME 04101" +209069,Bose SoundSport Headphones,1,99.99,06/11/19 09:25,"768 7th St, Atlanta, GA 30301" +209070,Wired Headphones,2,11.99,06/08/19 23:33,"972 10th St, New York City, NY 10001" +209071,AA Batteries (4-pack),1,3.84,06/26/19 18:34,"666 Cherry St, Portland, OR 97035" +209072,Wired Headphones,1,11.99,06/20/19 23:39,"191 River St, San Francisco, CA 94016" +209073,Apple Airpods Headphones,1,150,06/17/19 12:17,"477 Park St, Los Angeles, CA 90001" +209074,AAA Batteries (4-pack),1,2.99,06/25/19 09:59,"414 South St, New York City, NY 10001" +209075,Lightning Charging Cable,2,14.95,06/21/19 16:38,"60 Madison St, New York City, NY 10001" +209076,Lightning Charging Cable,1,14.95,06/15/19 16:23,"546 Johnson St, Los Angeles, CA 90001" +209077,USB-C Charging Cable,1,11.95,06/19/19 11:34,"623 Hickory St, San Francisco, CA 94016" +209078,Google Phone,1,600,06/20/19 06:50,"198 Church St, Boston, MA 02215" +209079,AAA Batteries (4-pack),1,2.99,06/16/19 08:25,"473 Lake St, Dallas, TX 75001" +209080,AA Batteries (4-pack),1,3.84,06/14/19 08:02,"247 Chestnut St, New York City, NY 10001" +209081,Apple Airpods Headphones,1,150,06/18/19 09:59,"207 Lincoln St, San Francisco, CA 94016" +209082,Wired Headphones,1,11.99,06/02/19 12:05,"265 South St, Atlanta, GA 30301" +209082,AA Batteries (4-pack),1,3.84,06/02/19 12:05,"265 South St, Atlanta, GA 30301" +209083,USB-C Charging Cable,1,11.95,06/09/19 12:48,"1 Lake St, San Francisco, CA 94016" +209084,Wired Headphones,1,11.99,06/05/19 18:26,"961 5th St, Seattle, WA 98101" +209085,AA Batteries (4-pack),2,3.84,06/22/19 16:58,"292 Washington St, Boston, MA 02215" +209086,Lightning Charging Cable,1,14.95,06/03/19 11:21,"186 River St, San Francisco, CA 94016" +209087,AA Batteries (4-pack),1,3.84,06/15/19 17:01,"814 Jefferson St, Los Angeles, CA 90001" +209088,ThinkPad Laptop,1,999.99,06/28/19 13:36,"654 12th St, Austin, TX 73301" +209089,AAA Batteries (4-pack),1,2.99,06/13/19 15:46,"799 Pine St, Atlanta, GA 30301" +209090,ThinkPad Laptop,1,999.99,06/21/19 20:56,"799 Ridge St, Boston, MA 02215" +209091,Wired Headphones,1,11.99,06/18/19 20:33,"259 Ridge St, Boston, MA 02215" +209092,iPhone,1,700,06/13/19 19:28,"579 Hill St, Los Angeles, CA 90001" +209093,AAA Batteries (4-pack),1,2.99,06/22/19 22:21,"962 Lincoln St, Boston, MA 02215" +209094,Apple Airpods Headphones,1,150,06/27/19 15:15,"63 Lakeview St, New York City, NY 10001" +209095,34in Ultrawide Monitor,1,379.99,06/03/19 20:38,"203 Ridge St, Dallas, TX 75001" +209096,USB-C Charging Cable,1,11.95,06/13/19 16:50,"621 14th St, Dallas, TX 75001" +209097,Bose SoundSport Headphones,1,99.99,06/06/19 14:57,"431 Center St, Austin, TX 73301" +209098,Apple Airpods Headphones,1,150,06/29/19 22:10,"365 Pine St, New York City, NY 10001" +209099,Lightning Charging Cable,1,14.95,06/06/19 21:56,"971 Church St, Austin, TX 73301" +209100,Wired Headphones,1,11.99,06/26/19 11:08,"984 Ridge St, Atlanta, GA 30301" +209101,USB-C Charging Cable,1,11.95,06/23/19 16:31,"474 Walnut St, New York City, NY 10001" +209102,Lightning Charging Cable,1,14.95,06/25/19 22:41,"837 Ridge St, Los Angeles, CA 90001" +209103,AA Batteries (4-pack),1,3.84,06/12/19 20:22,"766 Lakeview St, Atlanta, GA 30301" +209104,USB-C Charging Cable,1,11.95,06/20/19 20:51,"450 River St, New York City, NY 10001" +209105,Wired Headphones,1,11.99,06/20/19 04:22,"865 Dogwood St, New York City, NY 10001" +209106,Bose SoundSport Headphones,1,99.99,06/24/19 11:53,"64 9th St, San Francisco, CA 94016" +209107,AAA Batteries (4-pack),1,2.99,06/21/19 18:26,"68 Forest St, Seattle, WA 98101" +209108,AA Batteries (4-pack),2,3.84,06/17/19 16:38,"443 Cherry St, New York City, NY 10001" +209109,USB-C Charging Cable,1,11.95,06/13/19 21:36,"392 West St, San Francisco, CA 94016" +209110,USB-C Charging Cable,1,11.95,06/29/19 21:28,"749 Center St, Los Angeles, CA 90001" +209111,USB-C Charging Cable,1,11.95,06/10/19 07:29,"131 Elm St, Dallas, TX 75001" +209112,AAA Batteries (4-pack),2,2.99,06/06/19 20:02,"156 Highland St, Portland, ME 04101" +209113,27in 4K Gaming Monitor,1,389.99,06/03/19 10:41,"995 Lake St, New York City, NY 10001" +209114,Macbook Pro Laptop,1,1700,06/26/19 15:23,"909 Main St, Austin, TX 73301" +209115,USB-C Charging Cable,1,11.95,06/18/19 22:58,"522 6th St, Seattle, WA 98101" +209116,Bose SoundSport Headphones,1,99.99,06/14/19 22:22,"88 Walnut St, San Francisco, CA 94016" +209117,Wired Headphones,1,11.99,06/08/19 21:26,"552 13th St, Los Angeles, CA 90001" +209118,AA Batteries (4-pack),1,3.84,06/04/19 00:01,"643 Church St, San Francisco, CA 94016" +209119,AAA Batteries (4-pack),1,2.99,06/16/19 21:19,"253 13th St, Atlanta, GA 30301" +209120,AA Batteries (4-pack),1,3.84,06/06/19 10:08,"801 Elm St, Los Angeles, CA 90001" +209121,Apple Airpods Headphones,1,150,06/26/19 21:42,"527 7th St, Portland, OR 97035" +209122,Bose SoundSport Headphones,1,99.99,06/30/19 17:02,"391 Adams St, Austin, TX 73301" +209123,AAA Batteries (4-pack),2,2.99,06/28/19 21:32,"722 4th St, Dallas, TX 75001" +209124,Lightning Charging Cable,1,14.95,06/24/19 17:42,"825 Sunset St, Los Angeles, CA 90001" +209125,Lightning Charging Cable,2,14.95,06/12/19 17:43,"114 Park St, Los Angeles, CA 90001" +209126,AA Batteries (4-pack),1,3.84,06/20/19 13:58,"422 Cherry St, Atlanta, GA 30301" +209127,Bose SoundSport Headphones,1,99.99,06/22/19 22:21,"699 Main St, Los Angeles, CA 90001" +209128,AAA Batteries (4-pack),1,2.99,06/11/19 20:01,"180 2nd St, New York City, NY 10001" +209129,Lightning Charging Cable,1,14.95,06/10/19 21:20,"937 8th St, Los Angeles, CA 90001" +209130,Bose SoundSport Headphones,1,99.99,06/05/19 19:43,"991 11th St, Dallas, TX 75001" +209131,Bose SoundSport Headphones,1,99.99,06/12/19 18:16,"421 Washington St, New York City, NY 10001" +209132,Wired Headphones,1,11.99,06/12/19 13:45,"512 Forest St, Los Angeles, CA 90001" +209133,AAA Batteries (4-pack),3,2.99,06/22/19 07:48,"983 Cherry St, Boston, MA 02215" +209134,USB-C Charging Cable,1,11.95,06/12/19 14:24,"1 Elm St, Los Angeles, CA 90001" +209135,Wired Headphones,1,11.99,06/21/19 13:53,"925 9th St, Dallas, TX 75001" +209136,AAA Batteries (4-pack),2,2.99,06/06/19 06:27,"456 Cherry St, Atlanta, GA 30301" +209137,Flatscreen TV,1,300,06/02/19 15:48,"912 7th St, Atlanta, GA 30301" +209138,Lightning Charging Cable,1,14.95,06/21/19 02:37,"688 2nd St, Boston, MA 02215" +209139,27in FHD Monitor,1,149.99,06/06/19 17:25,"936 Cedar St, San Francisco, CA 94016" +209140,Flatscreen TV,1,300,06/27/19 14:07,"55 12th St, Seattle, WA 98101" +209141,AA Batteries (4-pack),1,3.84,06/07/19 17:26,"868 6th St, Atlanta, GA 30301" +209142,Wired Headphones,1,11.99,06/24/19 11:13,"684 Hill St, New York City, NY 10001" +209143,Lightning Charging Cable,1,14.95,06/27/19 07:49,"314 Forest St, New York City, NY 10001" +209144,Lightning Charging Cable,1,14.95,06/27/19 12:23,"67 12th St, New York City, NY 10001" +209145,AA Batteries (4-pack),1,3.84,06/09/19 20:04,"664 Lincoln St, Los Angeles, CA 90001" +209146,USB-C Charging Cable,1,11.95,06/25/19 09:17,"763 Pine St, Boston, MA 02215" +209147,USB-C Charging Cable,2,11.95,06/17/19 19:03,"112 Hickory St, San Francisco, CA 94016" +209148,Lightning Charging Cable,1,14.95,06/04/19 14:43,"9 Maple St, Dallas, TX 75001" +209149,Flatscreen TV,1,300,06/30/19 00:11,"217 North St, Austin, TX 73301" +209150,Google Phone,1,600,06/06/19 12:07,"655 Hickory St, Boston, MA 02215" +209151,Wired Headphones,1,11.99,06/26/19 11:03,"9 12th St, Atlanta, GA 30301" +209152,34in Ultrawide Monitor,1,379.99,06/03/19 16:07,"614 8th St, New York City, NY 10001" +209153,USB-C Charging Cable,1,11.95,06/15/19 16:47,"724 South St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +209154,iPhone,1,700,06/20/19 10:18,"613 Lincoln St, Boston, MA 02215" +209155,AA Batteries (4-pack),1,3.84,06/13/19 05:58,"80 Hickory St, New York City, NY 10001" +209156,Apple Airpods Headphones,1,150,06/23/19 23:26,"717 South St, Boston, MA 02215" +209157,AAA Batteries (4-pack),2,2.99,06/14/19 11:33,"798 7th St, Boston, MA 02215" +209158,AAA Batteries (4-pack),1,2.99,06/17/19 21:46,"731 1st St, San Francisco, CA 94016" +209159,Macbook Pro Laptop,1,1700,06/27/19 23:48,"91 2nd St, Portland, OR 97035" +209160,Apple Airpods Headphones,1,150,06/29/19 12:13,"814 Highland St, Atlanta, GA 30301" +209161,Wired Headphones,1,11.99,06/15/19 13:36,"318 Forest St, Los Angeles, CA 90001" +209162,Lightning Charging Cable,1,14.95,06/24/19 13:17,"628 14th St, Atlanta, GA 30301" +209163,AA Batteries (4-pack),1,3.84,06/04/19 16:44,"114 River St, Seattle, WA 98101" +209164,Wired Headphones,1,11.99,06/07/19 16:28,"900 Jefferson St, Austin, TX 73301" +209165,USB-C Charging Cable,1,11.95,06/13/19 17:09,"526 River St, Seattle, WA 98101" +209166,34in Ultrawide Monitor,1,379.99,06/09/19 09:35,"398 Main St, Boston, MA 02215" +209167,Bose SoundSport Headphones,1,99.99,06/30/19 13:49,"904 Lakeview St, Dallas, TX 75001" +209168,AAA Batteries (4-pack),1,2.99,06/07/19 19:36,"117 Ridge St, Austin, TX 73301" +209169,Apple Airpods Headphones,1,150,06/20/19 14:27,"732 Lincoln St, San Francisco, CA 94016" +209170,Lightning Charging Cable,1,14.95,06/03/19 20:36,"924 Highland St, San Francisco, CA 94016" +209171,Lightning Charging Cable,1,14.95,06/08/19 00:02,"247 4th St, San Francisco, CA 94016" +209172,Lightning Charging Cable,1,14.95,06/08/19 18:56,"437 Lincoln St, Dallas, TX 75001" +209173,USB-C Charging Cable,1,11.95,06/23/19 21:50,"464 Chestnut St, San Francisco, CA 94016" +209174,ThinkPad Laptop,1,999.99,06/22/19 15:39,"44 South St, Boston, MA 02215" +209175,20in Monitor,1,109.99,06/18/19 19:18,"898 6th St, Los Angeles, CA 90001" +209176,Lightning Charging Cable,1,14.95,06/04/19 09:26,"571 River St, San Francisco, CA 94016" +209177,Bose SoundSport Headphones,1,99.99,06/10/19 14:58,"694 8th St, New York City, NY 10001" +209178,AAA Batteries (4-pack),1,2.99,06/21/19 21:20,"411 Washington St, San Francisco, CA 94016" +209179,Apple Airpods Headphones,1,150,06/22/19 11:14,"387 13th St, San Francisco, CA 94016" +209180,AAA Batteries (4-pack),2,2.99,06/28/19 21:21,"773 Chestnut St, San Francisco, CA 94016" +209181,Flatscreen TV,1,300,06/16/19 20:39,"599 Dogwood St, Boston, MA 02215" +209182,27in 4K Gaming Monitor,1,389.99,06/08/19 14:10,"304 Dogwood St, Los Angeles, CA 90001" +209183,Apple Airpods Headphones,1,150,06/08/19 18:34,"190 Lake St, San Francisco, CA 94016" +209184,USB-C Charging Cable,1,11.95,06/27/19 17:13,"377 Jackson St, New York City, NY 10001" +209185,Apple Airpods Headphones,1,150,06/28/19 17:17,"231 Walnut St, Portland, ME 04101" +209186,AAA Batteries (4-pack),1,2.99,06/08/19 12:19,"869 Wilson St, Boston, MA 02215" +209187,Apple Airpods Headphones,1,150,06/20/19 10:31,"955 Washington St, Portland, OR 97035" +209188,AA Batteries (4-pack),1,3.84,06/10/19 00:10,"852 11th St, New York City, NY 10001" +209189,AAA Batteries (4-pack),1,2.99,06/24/19 19:37,"565 Highland St, New York City, NY 10001" +209190,27in FHD Monitor,1,149.99,06/23/19 09:40,"994 Lincoln St, San Francisco, CA 94016" +209191,Apple Airpods Headphones,1,150,06/25/19 13:03,"754 Hickory St, Boston, MA 02215" +209192,Bose SoundSport Headphones,1,99.99,06/20/19 03:15,"507 Johnson St, Los Angeles, CA 90001" +209193,Bose SoundSport Headphones,1,99.99,06/15/19 22:56,"786 North St, Los Angeles, CA 90001" +209194,Macbook Pro Laptop,1,1700,06/19/19 12:30,"567 13th St, Boston, MA 02215" +209195,ThinkPad Laptop,1,999.99,06/13/19 19:32,"510 9th St, New York City, NY 10001" +209196,Wired Headphones,1,11.99,06/27/19 22:12,"176 Walnut St, Dallas, TX 75001" +209197,34in Ultrawide Monitor,1,379.99,06/14/19 15:23,"233 Jackson St, Atlanta, GA 30301" +209198,Apple Airpods Headphones,1,150,06/08/19 18:15,"851 Hill St, New York City, NY 10001" +209199,USB-C Charging Cable,1,11.95,06/04/19 11:24,"686 Adams St, San Francisco, CA 94016" +209200,Bose SoundSport Headphones,1,99.99,06/19/19 19:49,"665 West St, Portland, OR 97035" +209201,Apple Airpods Headphones,1,150,06/19/19 10:03,"168 Lincoln St, New York City, NY 10001" +209202,20in Monitor,1,109.99,06/11/19 19:38,"166 13th St, Los Angeles, CA 90001" +209203,Lightning Charging Cable,1,14.95,06/09/19 09:11,"248 Church St, Atlanta, GA 30301" +209204,Lightning Charging Cable,1,14.95,06/11/19 17:55,"2 River St, Atlanta, GA 30301" +209205,Macbook Pro Laptop,1,1700,06/03/19 19:16,"807 Wilson St, Dallas, TX 75001" +209206,Apple Airpods Headphones,1,150,06/29/19 08:42,"645 Lakeview St, Seattle, WA 98101" +209207,Wired Headphones,1,11.99,06/23/19 13:14,"817 Center St, Dallas, TX 75001" +209208,AAA Batteries (4-pack),1,2.99,06/21/19 12:02,"855 River St, San Francisco, CA 94016" +209208,Google Phone,1,600,06/21/19 12:02,"855 River St, San Francisco, CA 94016" +209209,Bose SoundSport Headphones,1,99.99,06/06/19 20:38,"531 Johnson St, Boston, MA 02215" +209210,Google Phone,1,600,06/18/19 11:13,"485 Ridge St, Seattle, WA 98101" +209211,USB-C Charging Cable,1,11.95,06/24/19 09:30,"472 12th St, Seattle, WA 98101" +209212,Lightning Charging Cable,1,14.95,06/23/19 02:26,"164 Main St, Los Angeles, CA 90001" +209213,AAA Batteries (4-pack),1,2.99,06/03/19 21:00,"274 Sunset St, New York City, NY 10001" +209214,Apple Airpods Headphones,1,150,06/19/19 16:28,"108 13th St, Seattle, WA 98101" +209215,Wired Headphones,2,11.99,06/07/19 20:12,"641 5th St, Dallas, TX 75001" +209216,USB-C Charging Cable,1,11.95,06/16/19 10:50,"223 4th St, Portland, OR 97035" +209217,USB-C Charging Cable,1,11.95,06/21/19 10:29,"844 Hill St, Atlanta, GA 30301" +209218,Lightning Charging Cable,1,14.95,06/13/19 20:51,"276 Forest St, San Francisco, CA 94016" +209219,iPhone,1,700,06/26/19 19:57,"92 Jackson St, Los Angeles, CA 90001" +209220,Google Phone,1,600,06/25/19 19:58,"476 Park St, Los Angeles, CA 90001" +209221,AA Batteries (4-pack),1,3.84,06/09/19 11:56,"256 Pine St, Austin, TX 73301" +209222,USB-C Charging Cable,1,11.95,06/07/19 11:36,"602 Dogwood St, Atlanta, GA 30301" +209223,USB-C Charging Cable,1,11.95,06/26/19 01:05,"279 Willow St, Seattle, WA 98101" +209224,iPhone,1,700,06/13/19 16:27,"102 9th St, San Francisco, CA 94016" +209225,34in Ultrawide Monitor,1,379.99,06/06/19 11:22,"658 Walnut St, New York City, NY 10001" +209226,Google Phone,1,600,06/19/19 07:33,"266 Dogwood St, Atlanta, GA 30301" +209226,USB-C Charging Cable,1,11.95,06/19/19 07:33,"266 Dogwood St, Atlanta, GA 30301" +209227,20in Monitor,1,109.99,06/02/19 16:28,"882 Jackson St, Los Angeles, CA 90001" +209228,AA Batteries (4-pack),1,3.84,06/21/19 05:58,"994 13th St, New York City, NY 10001" +209229,Lightning Charging Cable,1,14.95,06/14/19 17:13,"849 12th St, Los Angeles, CA 90001" +209230,Lightning Charging Cable,2,14.95,06/24/19 22:12,"402 Sunset St, Dallas, TX 75001" +209231,Bose SoundSport Headphones,1,99.99,06/26/19 08:38,"681 Ridge St, New York City, NY 10001" +209232,Lightning Charging Cable,2,14.95,06/19/19 13:04,"139 1st St, Seattle, WA 98101" +209233,USB-C Charging Cable,1,11.95,06/01/19 20:18,"533 Johnson St, San Francisco, CA 94016" +209234,Lightning Charging Cable,1,14.95,06/07/19 11:31,"218 Elm St, San Francisco, CA 94016" +209235,AAA Batteries (4-pack),1,2.99,06/17/19 14:50,"255 Adams St, San Francisco, CA 94016" +209236,iPhone,1,700,06/13/19 19:43,"476 Jackson St, Austin, TX 73301" +209237,Apple Airpods Headphones,1,150,06/13/19 10:51,"101 Dogwood St, San Francisco, CA 94016" +209238,Lightning Charging Cable,1,14.95,06/14/19 17:28,"632 Center St, Los Angeles, CA 90001" +209239,AAA Batteries (4-pack),1,2.99,06/06/19 20:36,"68 Maple St, Austin, TX 73301" +209240,AAA Batteries (4-pack),1,2.99,06/22/19 21:34,"876 11th St, Boston, MA 02215" +209241,Wired Headphones,1,11.99,06/23/19 20:12,"769 9th St, San Francisco, CA 94016" +209242,iPhone,1,700,06/30/19 19:58,"189 Ridge St, New York City, NY 10001" +209243,Lightning Charging Cable,1,14.95,06/09/19 19:47,"496 Spruce St, Dallas, TX 75001" +209244,Apple Airpods Headphones,1,150,06/20/19 19:06,"929 9th St, Dallas, TX 75001" +209245,Wired Headphones,2,11.99,06/04/19 09:38,"278 Lincoln St, Boston, MA 02215" +209246,AAA Batteries (4-pack),1,2.99,06/28/19 03:30,"957 Highland St, Atlanta, GA 30301" +209247,AA Batteries (4-pack),1,3.84,06/26/19 21:07,"59 Johnson St, San Francisco, CA 94016" +209248,20in Monitor,1,109.99,06/28/19 21:47,"959 12th St, Los Angeles, CA 90001" +209249,Bose SoundSport Headphones,1,99.99,06/01/19 18:15,"993 13th St, Boston, MA 02215" +209250,Bose SoundSport Headphones,1,99.99,06/04/19 10:55,"577 Main St, San Francisco, CA 94016" +209251,Wired Headphones,1,11.99,06/28/19 22:39,"215 Adams St, Atlanta, GA 30301" +209252,Macbook Pro Laptop,1,1700,06/14/19 23:31,"341 Washington St, New York City, NY 10001" +209253,Wired Headphones,1,11.99,06/14/19 12:29,"815 Forest St, Dallas, TX 75001" +209254,AA Batteries (4-pack),2,3.84,06/26/19 21:15,"879 Washington St, Austin, TX 73301" +209255,AA Batteries (4-pack),2,3.84,06/19/19 10:11,"873 River St, Los Angeles, CA 90001" +209256,USB-C Charging Cable,2,11.95,06/01/19 14:59,"976 Dogwood St, Los Angeles, CA 90001" +209257,AAA Batteries (4-pack),2,2.99,06/22/19 16:24,"735 13th St, Boston, MA 02215" +209258,Vareebadd Phone,1,400,06/13/19 18:20,"810 Wilson St, Dallas, TX 75001" +209258,Wired Headphones,1,11.99,06/13/19 18:20,"810 Wilson St, Dallas, TX 75001" +209259,20in Monitor,1,109.99,06/10/19 13:16,"440 Pine St, San Francisco, CA 94016" +209260,Wired Headphones,1,11.99,06/29/19 18:12,"101 14th St, San Francisco, CA 94016" +209261,USB-C Charging Cable,1,11.95,06/06/19 19:35,"103 Park St, Seattle, WA 98101" +209262,Lightning Charging Cable,1,14.95,06/15/19 12:04,"393 West St, Boston, MA 02215" +209263,USB-C Charging Cable,1,11.95,06/05/19 18:14,"131 Park St, Los Angeles, CA 90001" +209264,AAA Batteries (4-pack),1,2.99,06/15/19 11:23,"156 Pine St, New York City, NY 10001" +209265,iPhone,1,700,06/29/19 21:22,"484 Forest St, San Francisco, CA 94016" +209266,Apple Airpods Headphones,1,150,06/21/19 08:57,"860 Hickory St, New York City, NY 10001" +209267,iPhone,1,700,06/04/19 13:36,"436 12th St, Boston, MA 02215" +209267,Wired Headphones,1,11.99,06/04/19 13:36,"436 12th St, Boston, MA 02215" +209268,AAA Batteries (4-pack),1,2.99,06/22/19 13:55,"160 Lakeview St, Boston, MA 02215" +209269,Lightning Charging Cable,1,14.95,06/10/19 08:18,"590 Meadow St, Boston, MA 02215" +209270,Wired Headphones,1,11.99,06/06/19 18:04,"706 Wilson St, Austin, TX 73301" +209271,AA Batteries (4-pack),2,3.84,06/16/19 09:16,"651 7th St, Los Angeles, CA 90001" +209272,iPhone,1,700,06/08/19 21:11,"574 Madison St, New York City, NY 10001" +209273,Lightning Charging Cable,1,14.95,06/06/19 13:25,"223 6th St, New York City, NY 10001" +209274,ThinkPad Laptop,1,999.99,06/18/19 14:19,"68 Johnson St, San Francisco, CA 94016" +209275,Lightning Charging Cable,1,14.95,06/24/19 21:19,"89 13th St, San Francisco, CA 94016" +209276,AA Batteries (4-pack),1,3.84,06/08/19 19:38,"335 10th St, New York City, NY 10001" +209277,AAA Batteries (4-pack),2,2.99,06/11/19 17:27,"676 South St, San Francisco, CA 94016" +209278,Lightning Charging Cable,1,14.95,06/03/19 18:06,"163 Lincoln St, New York City, NY 10001" +209279,Bose SoundSport Headphones,1,99.99,06/01/19 15:01,"861 1st St, Boston, MA 02215" +209280,AAA Batteries (4-pack),3,2.99,06/14/19 15:56,"400 Lakeview St, Seattle, WA 98101" +209281,Lightning Charging Cable,1,14.95,06/24/19 12:09,"394 Lincoln St, Boston, MA 02215" +209282,USB-C Charging Cable,1,11.95,06/24/19 00:39,"625 Elm St, Boston, MA 02215" +209283,Lightning Charging Cable,1,14.95,06/26/19 10:41,"107 14th St, Boston, MA 02215" +209284,Bose SoundSport Headphones,1,99.99,06/16/19 14:02,"811 9th St, Los Angeles, CA 90001" +209285,LG Washing Machine,1,600.0,06/05/19 19:00,"953 Center St, New York City, NY 10001" +209286,Lightning Charging Cable,1,14.95,06/21/19 18:54,"908 13th St, San Francisco, CA 94016" +209287,Bose SoundSport Headphones,1,99.99,06/28/19 12:51,"968 14th St, New York City, NY 10001" +209288,Vareebadd Phone,1,400,06/29/19 21:52,"125 Sunset St, Boston, MA 02215" +209289,Google Phone,1,600,06/13/19 17:19,"126 River St, Portland, ME 04101" +209290,USB-C Charging Cable,1,11.95,06/08/19 19:45,"368 Park St, San Francisco, CA 94016" +209291,AA Batteries (4-pack),2,3.84,06/06/19 14:09,"30 Jackson St, New York City, NY 10001" +209292,27in 4K Gaming Monitor,1,389.99,06/27/19 21:31,"307 1st St, Boston, MA 02215" +209293,iPhone,1,700,06/22/19 16:33,"204 Center St, San Francisco, CA 94016" +209294,AA Batteries (4-pack),1,3.84,06/07/19 17:36,"208 Madison St, Los Angeles, CA 90001" +209295,Wired Headphones,1,11.99,06/07/19 09:42,"601 14th St, San Francisco, CA 94016" +209296,Wired Headphones,1,11.99,06/16/19 14:32,"405 Ridge St, San Francisco, CA 94016" +209297,AAA Batteries (4-pack),1,2.99,06/21/19 07:35,"18 Madison St, Los Angeles, CA 90001" +209298,USB-C Charging Cable,1,11.95,06/13/19 15:01,"977 Center St, Dallas, TX 75001" +209299,Apple Airpods Headphones,1,150,06/06/19 09:19,"534 Hill St, Boston, MA 02215" +209300,iPhone,1,700,06/21/19 12:05,"992 13th St, Seattle, WA 98101" +209300,Lightning Charging Cable,1,14.95,06/21/19 12:05,"992 13th St, Seattle, WA 98101" +209301,Bose SoundSport Headphones,1,99.99,06/03/19 09:28,"199 11th St, Austin, TX 73301" +209302,Lightning Charging Cable,1,14.95,06/11/19 15:26,"973 Main St, San Francisco, CA 94016" +209303,Apple Airpods Headphones,1,150,06/25/19 14:16,"948 Cherry St, Dallas, TX 75001" +209304,AAA Batteries (4-pack),1,2.99,06/06/19 21:48,"725 Meadow St, Los Angeles, CA 90001" +209305,Lightning Charging Cable,1,14.95,06/02/19 13:15,"16 13th St, New York City, NY 10001" +209306,27in FHD Monitor,1,149.99,06/10/19 12:19,"621 Wilson St, Dallas, TX 75001" +209307,Lightning Charging Cable,1,14.95,06/18/19 12:25,"115 Hickory St, San Francisco, CA 94016" +209308,USB-C Charging Cable,1,11.95,06/09/19 11:23,"927 1st St, Los Angeles, CA 90001" +209309,USB-C Charging Cable,1,11.95,06/07/19 19:33,"470 Maple St, San Francisco, CA 94016" +209310,Bose SoundSport Headphones,1,99.99,06/22/19 11:12,"697 Elm St, San Francisco, CA 94016" +209311,20in Monitor,1,109.99,06/04/19 23:18,"750 Madison St, Atlanta, GA 30301" +209312,AA Batteries (4-pack),1,3.84,06/22/19 02:05,"436 Church St, San Francisco, CA 94016" +209313,34in Ultrawide Monitor,1,379.99,06/18/19 10:39,"17 Walnut St, Dallas, TX 75001" +209314,20in Monitor,1,109.99,06/17/19 13:04,"119 5th St, Boston, MA 02215" +209315,Wired Headphones,1,11.99,06/11/19 22:21,"635 Highland St, San Francisco, CA 94016" +209316,AAA Batteries (4-pack),1,2.99,06/27/19 18:26,"516 1st St, Atlanta, GA 30301" +209317,Lightning Charging Cable,1,14.95,06/14/19 14:44,"263 Jackson St, San Francisco, CA 94016" +209318,27in 4K Gaming Monitor,1,389.99,06/07/19 21:38,"511 8th St, Austin, TX 73301" +209319,AA Batteries (4-pack),1,3.84,06/04/19 15:00,"393 Lakeview St, San Francisco, CA 94016" +209320,AA Batteries (4-pack),1,3.84,06/08/19 18:39,"757 Highland St, Los Angeles, CA 90001" +209321,Bose SoundSport Headphones,1,99.99,06/30/19 11:32,"782 10th St, San Francisco, CA 94016" +209322,20in Monitor,1,109.99,06/10/19 12:31,"181 Elm St, Boston, MA 02215" +209323,AAA Batteries (4-pack),1,2.99,06/01/19 12:48,"773 Elm St, San Francisco, CA 94016" +209324,AA Batteries (4-pack),1,3.84,06/08/19 16:33,"11 Jackson St, New York City, NY 10001" +209325,Wired Headphones,1,11.99,06/20/19 18:29,"10 2nd St, San Francisco, CA 94016" +209326,AAA Batteries (4-pack),1,2.99,06/02/19 19:55,"753 Jackson St, Boston, MA 02215" +209327,Wired Headphones,1,11.99,06/06/19 13:33,"381 Lakeview St, Atlanta, GA 30301" +209328,LG Dryer,1,600.0,06/23/19 21:33,"508 Spruce St, Dallas, TX 75001" +209329,Lightning Charging Cable,1,14.95,06/10/19 14:54,"880 Elm St, New York City, NY 10001" +209330,Lightning Charging Cable,1,14.95,06/11/19 15:51,"897 2nd St, San Francisco, CA 94016" +209331,AAA Batteries (4-pack),4,2.99,06/03/19 22:10,"659 7th St, San Francisco, CA 94016" +209332,Lightning Charging Cable,1,14.95,06/11/19 18:03,"461 Madison St, Los Angeles, CA 90001" +209333,Lightning Charging Cable,1,14.95,06/03/19 20:28,"111 Adams St, Los Angeles, CA 90001" +209334,20in Monitor,1,109.99,06/16/19 18:43,"194 1st St, Los Angeles, CA 90001" +209335,27in FHD Monitor,1,149.99,06/08/19 17:26,"968 Highland St, San Francisco, CA 94016" +209336,AAA Batteries (4-pack),1,2.99,06/16/19 10:35,"993 North St, Atlanta, GA 30301" +209337,AA Batteries (4-pack),1,3.84,06/01/19 11:23,"533 Ridge St, Atlanta, GA 30301" +209338,AAA Batteries (4-pack),2,2.99,06/30/19 21:26,"661 14th St, Seattle, WA 98101" +209339,Vareebadd Phone,1,400,06/16/19 22:01,"110 13th St, Atlanta, GA 30301" +209340,USB-C Charging Cable,1,11.95,06/07/19 16:15,"487 Park St, Dallas, TX 75001" +209341,AA Batteries (4-pack),1,3.84,06/22/19 18:05,"98 6th St, Boston, MA 02215" +209342,Wired Headphones,1,11.99,06/13/19 17:25,"79 Pine St, Los Angeles, CA 90001" +209343,Lightning Charging Cable,1,14.95,06/13/19 10:15,"317 Adams St, Austin, TX 73301" +209344,USB-C Charging Cable,1,11.95,06/04/19 08:50,"22 River St, Los Angeles, CA 90001" +209345,AA Batteries (4-pack),1,3.84,06/11/19 16:22,"130 West St, San Francisco, CA 94016" +209346,Google Phone,1,600,06/18/19 13:49,"720 West St, Dallas, TX 75001" +209347,Flatscreen TV,1,300,06/20/19 18:46,"338 Adams St, Los Angeles, CA 90001" +209348,27in 4K Gaming Monitor,1,389.99,06/16/19 08:19,"718 Dogwood St, Los Angeles, CA 90001" +209349,Vareebadd Phone,1,400,06/13/19 09:03,"583 Dogwood St, Boston, MA 02215" +209350,AAA Batteries (4-pack),1,2.99,06/24/19 19:53,"552 Forest St, Dallas, TX 75001" +209351,34in Ultrawide Monitor,1,379.99,06/26/19 17:43,"30 4th St, San Francisco, CA 94016" +209352,Lightning Charging Cable,1,14.95,06/20/19 13:40,"372 4th St, San Francisco, CA 94016" +209352,Lightning Charging Cable,1,14.95,06/20/19 13:40,"372 4th St, San Francisco, CA 94016" +209353,USB-C Charging Cable,1,11.95,06/25/19 14:15,"956 North St, Atlanta, GA 30301" +209354,AA Batteries (4-pack),2,3.84,06/13/19 18:18,"575 Dogwood St, Portland, OR 97035" +209355,AA Batteries (4-pack),1,3.84,06/29/19 00:42,"302 Chestnut St, Portland, ME 04101" +209356,Apple Airpods Headphones,1,150,06/09/19 20:24,"72 Church St, New York City, NY 10001" +209357,Macbook Pro Laptop,1,1700,06/30/19 23:52,"913 West St, San Francisco, CA 94016" +209358,AA Batteries (4-pack),1,3.84,06/28/19 19:24,"278 Elm St, Austin, TX 73301" +209359,USB-C Charging Cable,1,11.95,06/08/19 11:41,"843 Lakeview St, San Francisco, CA 94016" +209360,34in Ultrawide Monitor,1,379.99,06/24/19 15:21,"963 Sunset St, Dallas, TX 75001" +209361,iPhone,1,700,06/14/19 13:21,"997 13th St, New York City, NY 10001" +209362,Wired Headphones,1,11.99,06/27/19 10:42,"341 Chestnut St, Seattle, WA 98101" +209363,USB-C Charging Cable,1,11.95,06/15/19 20:29,"192 Hickory St, Seattle, WA 98101" +209364,Google Phone,1,600,06/12/19 20:23,"410 14th St, Austin, TX 73301" +209365,AA Batteries (4-pack),1,3.84,06/13/19 05:57,"111 North St, Boston, MA 02215" +209366,Wired Headphones,1,11.99,06/14/19 12:15,"639 Chestnut St, Seattle, WA 98101" +209367,27in 4K Gaming Monitor,1,389.99,06/21/19 14:25,"892 Center St, New York City, NY 10001" +209368,Macbook Pro Laptop,1,1700,06/02/19 18:10,"627 12th St, Seattle, WA 98101" +209369,Lightning Charging Cable,1,14.95,06/22/19 14:26,"978 Chestnut St, Austin, TX 73301" +209370,AAA Batteries (4-pack),4,2.99,06/19/19 17:04,"612 1st St, Atlanta, GA 30301" +209371,Wired Headphones,1,11.99,06/25/19 10:30,"652 Chestnut St, New York City, NY 10001" +209372,Wired Headphones,1,11.99,06/27/19 12:31,"863 12th St, New York City, NY 10001" +209373,Bose SoundSport Headphones,1,99.99,06/24/19 15:50,"70 Highland St, San Francisco, CA 94016" +209374,AAA Batteries (4-pack),1,2.99,06/07/19 22:42,"527 Park St, Portland, OR 97035" +209375,Bose SoundSport Headphones,1,99.99,06/15/19 06:05,"993 Pine St, New York City, NY 10001" +209376,Wired Headphones,1,11.99,06/06/19 12:41,"545 North St, New York City, NY 10001" +209377,USB-C Charging Cable,1,11.95,06/11/19 18:45,"604 Dogwood St, San Francisco, CA 94016" +209378,34in Ultrawide Monitor,1,379.99,06/08/19 17:41,"877 13th St, Dallas, TX 75001" +209379,Macbook Pro Laptop,1,1700,06/26/19 12:37,"524 10th St, Atlanta, GA 30301" +209380,AAA Batteries (4-pack),1,2.99,06/06/19 11:53,"369 Madison St, Boston, MA 02215" +209381,Apple Airpods Headphones,1,150,06/26/19 21:08,"444 Hickory St, Los Angeles, CA 90001" +209382,Apple Airpods Headphones,1,150,06/16/19 16:36,"743 Chestnut St, Portland, OR 97035" +209383,AA Batteries (4-pack),1,3.84,06/19/19 15:43,"381 1st St, Los Angeles, CA 90001" +209384,AA Batteries (4-pack),1,3.84,06/22/19 23:02,"233 4th St, Austin, TX 73301" +209385,Wired Headphones,1,11.99,06/07/19 17:52,"368 10th St, Atlanta, GA 30301" +209386,27in FHD Monitor,1,149.99,06/13/19 19:57,"987 Johnson St, New York City, NY 10001" +209387,ThinkPad Laptop,1,999.99,06/16/19 12:43,"944 1st St, Dallas, TX 75001" +209388,Lightning Charging Cable,1,14.95,06/22/19 15:18,"217 Spruce St, Austin, TX 73301" +209389,ThinkPad Laptop,1,999.99,06/30/19 09:11,"580 5th St, San Francisco, CA 94016" +209390,Lightning Charging Cable,2,14.95,06/21/19 22:52,"475 Spruce St, San Francisco, CA 94016" +209391,Flatscreen TV,1,300,06/20/19 21:41,"217 Park St, Atlanta, GA 30301" +209392,Vareebadd Phone,1,400,06/07/19 13:24,"455 Willow St, San Francisco, CA 94016" +209392,USB-C Charging Cable,1,11.95,06/07/19 13:24,"455 Willow St, San Francisco, CA 94016" +209393,AA Batteries (4-pack),1,3.84,06/10/19 10:47,"982 Jackson St, Dallas, TX 75001" +209394,USB-C Charging Cable,1,11.95,06/16/19 19:25,"452 South St, San Francisco, CA 94016" +209395,Lightning Charging Cable,1,14.95,06/09/19 12:29,"250 5th St, Dallas, TX 75001" +209396,Apple Airpods Headphones,1,150,06/21/19 14:35,"743 Dogwood St, Portland, OR 97035" +209397,iPhone,1,700,06/12/19 16:34,"107 Lincoln St, Austin, TX 73301" +209398,Apple Airpods Headphones,1,150,06/18/19 12:11,"765 Walnut St, Atlanta, GA 30301" +209399,Bose SoundSport Headphones,1,99.99,06/25/19 10:56,"120 Washington St, Boston, MA 02215" +209400,ThinkPad Laptop,1,999.99,06/20/19 18:17,"679 12th St, San Francisco, CA 94016" +209401,Bose SoundSport Headphones,1,99.99,06/27/19 16:33,"750 Sunset St, New York City, NY 10001" +209402,AAA Batteries (4-pack),3,2.99,06/30/19 11:56,"974 Pine St, San Francisco, CA 94016" +209403,Lightning Charging Cable,1,14.95,06/23/19 01:59,"15 Cherry St, Atlanta, GA 30301" +209404,27in 4K Gaming Monitor,1,389.99,06/12/19 11:19,"769 Forest St, Los Angeles, CA 90001" +209405,Apple Airpods Headphones,1,150,06/04/19 21:25,"196 Dogwood St, Austin, TX 73301" +209406,AAA Batteries (4-pack),2,2.99,06/25/19 01:05,"968 Hill St, Los Angeles, CA 90001" +209407,iPhone,1,700,06/16/19 12:24,"133 South St, Los Angeles, CA 90001" +209408,AA Batteries (4-pack),1,3.84,06/09/19 10:53,"20 Hill St, Portland, ME 04101" +209409,Wired Headphones,1,11.99,06/08/19 14:36,"204 Elm St, Dallas, TX 75001" +209410,AAA Batteries (4-pack),1,2.99,06/23/19 21:23,"22 2nd St, New York City, NY 10001" +209411,Google Phone,1,600,06/08/19 16:30,"855 Washington St, Atlanta, GA 30301" +209412,Flatscreen TV,2,300,06/19/19 22:05,"588 Church St, Los Angeles, CA 90001" +209413,AA Batteries (4-pack),1,3.84,06/12/19 20:33,"222 Lakeview St, San Francisco, CA 94016" +209414,AA Batteries (4-pack),1,3.84,06/18/19 11:53,"433 7th St, Boston, MA 02215" +209415,USB-C Charging Cable,1,11.95,06/12/19 18:13,"313 Lakeview St, Atlanta, GA 30301" +209416,AAA Batteries (4-pack),1,2.99,06/29/19 07:47,"289 River St, Portland, ME 04101" +209417,AA Batteries (4-pack),1,3.84,06/25/19 00:07,"676 Park St, San Francisco, CA 94016" +209418,USB-C Charging Cable,1,11.95,06/13/19 20:03,"608 11th St, Seattle, WA 98101" +209419,27in 4K Gaming Monitor,1,389.99,06/25/19 16:11,"502 South St, San Francisco, CA 94016" +209420,AA Batteries (4-pack),1,3.84,06/21/19 19:34,"931 Church St, Los Angeles, CA 90001" +209421,Apple Airpods Headphones,1,150,06/20/19 16:57,"654 11th St, Portland, ME 04101" +209422,AA Batteries (4-pack),1,3.84,06/04/19 13:23,"364 Jackson St, San Francisco, CA 94016" +209423,AA Batteries (4-pack),1,3.84,06/03/19 23:43,"746 Hickory St, Dallas, TX 75001" +209424,27in 4K Gaming Monitor,1,389.99,06/15/19 11:27,"992 Meadow St, San Francisco, CA 94016" +209425,Lightning Charging Cable,2,14.95,06/23/19 20:33,"603 Pine St, New York City, NY 10001" +209426,Bose SoundSport Headphones,1,99.99,06/12/19 12:04,"329 Willow St, Dallas, TX 75001" +209427,USB-C Charging Cable,1,11.95,06/30/19 21:59,"739 Hill St, Austin, TX 73301" +209428,Bose SoundSport Headphones,1,99.99,06/15/19 21:47,"972 Adams St, Dallas, TX 75001" +209429,Lightning Charging Cable,1,14.95,06/29/19 23:35,"912 Lake St, Dallas, TX 75001" +209430,USB-C Charging Cable,1,11.95,06/05/19 08:19,"355 Cedar St, Portland, OR 97035" +209431,AA Batteries (4-pack),1,3.84,06/07/19 20:05,"5 Dogwood St, Los Angeles, CA 90001" +209432,Flatscreen TV,1,300,06/17/19 19:59,"689 9th St, Los Angeles, CA 90001" +209433,USB-C Charging Cable,1,11.95,06/22/19 07:43,"134 Highland St, San Francisco, CA 94016" +209434,AA Batteries (4-pack),2,3.84,06/29/19 21:01,"330 13th St, Boston, MA 02215" +209434,27in FHD Monitor,1,149.99,06/29/19 21:01,"330 13th St, Boston, MA 02215" +209435,Vareebadd Phone,1,400,06/05/19 14:26,"741 South St, Dallas, TX 75001" +209436,Bose SoundSport Headphones,1,99.99,06/23/19 17:22,"831 Church St, Atlanta, GA 30301" +209437,27in 4K Gaming Monitor,1,389.99,06/07/19 08:25,"609 Jefferson St, Boston, MA 02215" +209438,Lightning Charging Cable,1,14.95,06/20/19 13:40,"315 Sunset St, Boston, MA 02215" +209439,Bose SoundSport Headphones,1,99.99,06/07/19 11:52,"578 1st St, San Francisco, CA 94016" +209440,USB-C Charging Cable,1,11.95,06/05/19 19:40,"302 Hickory St, Los Angeles, CA 90001" +209441,AA Batteries (4-pack),1,3.84,06/19/19 13:06,"381 West St, Austin, TX 73301" +209442,AAA Batteries (4-pack),1,2.99,06/02/19 02:09,"257 5th St, Atlanta, GA 30301" +209443,Bose SoundSport Headphones,1,99.99,06/30/19 23:26,"843 Main St, Dallas, TX 75001" +209444,Apple Airpods Headphones,1,150,06/25/19 09:52,"375 5th St, New York City, NY 10001" +209445,Wired Headphones,1,11.99,06/15/19 01:05,"523 Main St, Boston, MA 02215" +209446,USB-C Charging Cable,1,11.95,06/24/19 09:07,"468 8th St, Portland, OR 97035" +209447,AA Batteries (4-pack),1,3.84,06/15/19 22:19,"572 Lincoln St, San Francisco, CA 94016" +209448,AA Batteries (4-pack),1,3.84,06/02/19 13:45,"322 Hill St, Portland, OR 97035" +209449,AA Batteries (4-pack),1,3.84,06/14/19 13:00,"27 4th St, Los Angeles, CA 90001" +209450,27in 4K Gaming Monitor,1,389.99,06/19/19 16:45,"448 West St, Atlanta, GA 30301" +209451,Wired Headphones,1,11.99,06/23/19 13:50,"188 Wilson St, Dallas, TX 75001" +209452,Apple Airpods Headphones,1,150,06/19/19 12:34,"215 Willow St, San Francisco, CA 94016" +209453,Lightning Charging Cable,1,14.95,06/02/19 17:54,"293 Jackson St, Boston, MA 02215" +209454,27in FHD Monitor,1,149.99,06/09/19 18:33,"680 Spruce St, San Francisco, CA 94016" +209455,Macbook Pro Laptop,1,1700,06/15/19 07:40,"592 Spruce St, Seattle, WA 98101" +209456,27in 4K Gaming Monitor,1,389.99,06/11/19 08:36,"286 Lincoln St, San Francisco, CA 94016" +209457,27in 4K Gaming Monitor,1,389.99,06/22/19 11:58,"901 Lake St, Boston, MA 02215" +209458,AAA Batteries (4-pack),1,2.99,06/25/19 16:22,"855 Cherry St, Atlanta, GA 30301" +209459,AAA Batteries (4-pack),1,2.99,06/26/19 14:37,"374 11th St, Los Angeles, CA 90001" +209460,iPhone,1,700,06/29/19 19:54,"919 West St, San Francisco, CA 94016" +209461,AAA Batteries (4-pack),2,2.99,06/12/19 22:07,"268 Forest St, San Francisco, CA 94016" +209462,Bose SoundSport Headphones,1,99.99,06/11/19 20:12,"101 4th St, Los Angeles, CA 90001" +209463,Flatscreen TV,1,300,06/05/19 13:38,"40 Adams St, Los Angeles, CA 90001" +209464,iPhone,1,700,06/22/19 18:22,"194 14th St, Austin, TX 73301" +209465,AAA Batteries (4-pack),1,2.99,06/19/19 16:42,"773 7th St, San Francisco, CA 94016" +209466,AAA Batteries (4-pack),1,2.99,06/04/19 08:14,"713 Park St, Boston, MA 02215" +209467,USB-C Charging Cable,1,11.95,06/20/19 21:39,"411 Park St, San Francisco, CA 94016" +209468,Lightning Charging Cable,1,14.95,06/29/19 11:46,"163 River St, Austin, TX 73301" +209469,Bose SoundSport Headphones,1,99.99,06/26/19 20:42,"466 Walnut St, New York City, NY 10001" +209469,Lightning Charging Cable,1,14.95,06/26/19 20:42,"466 Walnut St, New York City, NY 10001" +209470,AA Batteries (4-pack),1,3.84,06/08/19 08:44,"622 Jackson St, Atlanta, GA 30301" +209471,Vareebadd Phone,1,400,06/24/19 17:59,"225 10th St, Dallas, TX 75001" +209472,27in 4K Gaming Monitor,1,389.99,06/12/19 16:02,"137 7th St, Los Angeles, CA 90001" +209473,AA Batteries (4-pack),1,3.84,06/04/19 00:58,"645 Forest St, Boston, MA 02215" +209474,Bose SoundSport Headphones,1,99.99,06/23/19 14:52,"120 Pine St, Los Angeles, CA 90001" +209475,34in Ultrawide Monitor,1,379.99,06/04/19 18:17,"849 Lakeview St, San Francisco, CA 94016" +209476,AA Batteries (4-pack),1,3.84,06/22/19 19:59,"363 Lakeview St, Los Angeles, CA 90001" +209477,AAA Batteries (4-pack),1,2.99,06/16/19 16:37,"353 Maple St, Austin, TX 73301" +209478,Apple Airpods Headphones,1,150,06/23/19 11:29,"367 Elm St, Atlanta, GA 30301" +209479,USB-C Charging Cable,1,11.95,06/30/19 22:41,"2 Ridge St, Boston, MA 02215" +209480,Lightning Charging Cable,1,14.95,06/01/19 20:22,"367 Lake St, Los Angeles, CA 90001" +209481,Apple Airpods Headphones,1,150,06/11/19 09:45,"267 6th St, San Francisco, CA 94016" +209482,AAA Batteries (4-pack),2,2.99,06/26/19 20:33,"384 Willow St, Los Angeles, CA 90001" +209483,Lightning Charging Cable,1,14.95,06/23/19 20:55,"26 11th St, Los Angeles, CA 90001" +209484,27in FHD Monitor,1,149.99,06/08/19 20:54,"849 Walnut St, San Francisco, CA 94016" +209485,Lightning Charging Cable,1,14.95,06/08/19 15:29,"622 River St, San Francisco, CA 94016" +209486,USB-C Charging Cable,1,11.95,06/26/19 11:01,"695 Willow St, Portland, OR 97035" +209487,Apple Airpods Headphones,1,150,06/29/19 14:44,"462 Lakeview St, Atlanta, GA 30301" +209488,LG Dryer,1,600.0,06/11/19 20:32,"394 Walnut St, San Francisco, CA 94016" +209489,Macbook Pro Laptop,1,1700,06/16/19 09:10,"658 Wilson St, New York City, NY 10001" +209490,Lightning Charging Cable,1,14.95,06/02/19 12:37,"959 Main St, Boston, MA 02215" +209491,USB-C Charging Cable,1,11.95,06/22/19 10:58,"420 Sunset St, New York City, NY 10001" +209492,USB-C Charging Cable,1,11.95,06/24/19 15:20,"308 4th St, Boston, MA 02215" +209493,Bose SoundSport Headphones,1,99.99,06/20/19 13:56,"636 Adams St, Atlanta, GA 30301" +209494,Lightning Charging Cable,1,14.95,06/15/19 11:48,"450 South St, San Francisco, CA 94016" +209495,Bose SoundSport Headphones,1,99.99,06/24/19 10:30,"191 7th St, Dallas, TX 75001" +209496,27in 4K Gaming Monitor,1,389.99,06/23/19 11:40,"440 Lakeview St, Seattle, WA 98101" +209497,Bose SoundSport Headphones,1,99.99,06/09/19 18:23,"887 Church St, Boston, MA 02215" +209498,Lightning Charging Cable,1,14.95,06/14/19 19:14,"107 Ridge St, Austin, TX 73301" +209499,Bose SoundSport Headphones,1,99.99,06/30/19 17:54,"284 Lakeview St, Dallas, TX 75001" +209500,AA Batteries (4-pack),1,3.84,06/24/19 10:43,"905 Hickory St, New York City, NY 10001" +209501,Apple Airpods Headphones,1,150,06/22/19 10:59,"349 Church St, San Francisco, CA 94016" +209502,iPhone,1,700,06/20/19 11:21,"440 Chestnut St, Los Angeles, CA 90001" +209502,Lightning Charging Cable,1,14.95,06/20/19 11:21,"440 Chestnut St, Los Angeles, CA 90001" +209503,Lightning Charging Cable,1,14.95,06/28/19 12:01,"554 Church St, Boston, MA 02215" +209504,AA Batteries (4-pack),1,3.84,06/22/19 20:15,"176 Willow St, Atlanta, GA 30301" +209505,USB-C Charging Cable,2,11.95,06/24/19 13:06,"395 River St, Atlanta, GA 30301" +209506,Lightning Charging Cable,1,14.95,06/08/19 10:04,"802 Park St, Los Angeles, CA 90001" +209507,Bose SoundSport Headphones,1,99.99,06/12/19 18:36,"554 8th St, New York City, NY 10001" +209508,Bose SoundSport Headphones,1,99.99,06/03/19 08:49,"440 Forest St, Dallas, TX 75001" +209509,Wired Headphones,2,11.99,06/19/19 20:18,"58 Johnson St, Seattle, WA 98101" +209510,AA Batteries (4-pack),2,3.84,06/10/19 16:39,"561 Sunset St, San Francisco, CA 94016" +209511,20in Monitor,1,109.99,06/20/19 14:22,"416 1st St, New York City, NY 10001" +209512,Lightning Charging Cable,1,14.95,06/28/19 12:15,"623 Lincoln St, New York City, NY 10001" +209513,AAA Batteries (4-pack),1,2.99,06/23/19 03:28,"312 Madison St, Los Angeles, CA 90001" +209514,Apple Airpods Headphones,1,150,06/28/19 10:12,"602 4th St, New York City, NY 10001" +209515,Apple Airpods Headphones,1,150,06/21/19 18:14,"672 Meadow St, Boston, MA 02215" +209516,Lightning Charging Cable,1,14.95,06/08/19 03:24,"952 Johnson St, New York City, NY 10001" +209517,AAA Batteries (4-pack),2,2.99,06/01/19 23:36,"568 Main St, Atlanta, GA 30301" +209518,USB-C Charging Cable,1,11.95,06/28/19 00:34,"232 Lincoln St, Los Angeles, CA 90001" +209519,Wired Headphones,1,11.99,06/30/19 19:26,"501 Ridge St, Portland, OR 97035" +209520,Bose SoundSport Headphones,1,99.99,06/06/19 10:49,"64 Park St, Boston, MA 02215" +209521,Lightning Charging Cable,2,14.95,06/23/19 22:43,"65 Center St, Dallas, TX 75001" +209522,Wired Headphones,1,11.99,06/15/19 12:13,"309 Meadow St, Boston, MA 02215" +209523,34in Ultrawide Monitor,1,379.99,06/28/19 18:57,"198 Hickory St, Boston, MA 02215" +209524,Lightning Charging Cable,1,14.95,06/20/19 10:09,"99 Main St, San Francisco, CA 94016" +209525,Google Phone,1,600,06/30/19 17:03,"733 Church St, Los Angeles, CA 90001" +209525,USB-C Charging Cable,1,11.95,06/30/19 17:03,"733 Church St, Los Angeles, CA 90001" +209526,USB-C Charging Cable,1,11.95,06/20/19 11:09,"157 Spruce St, Seattle, WA 98101" +209527,Google Phone,1,600,06/09/19 12:59,"38 Jackson St, Portland, OR 97035" +209528,USB-C Charging Cable,1,11.95,06/10/19 12:01,"716 Spruce St, San Francisco, CA 94016" +209529,AA Batteries (4-pack),2,3.84,06/06/19 00:28,"67 5th St, Los Angeles, CA 90001" +209530,AA Batteries (4-pack),1,3.84,06/17/19 17:21,"112 14th St, Los Angeles, CA 90001" +209531,AA Batteries (4-pack),1,3.84,06/24/19 23:57,"629 1st St, Seattle, WA 98101" +209532,USB-C Charging Cable,1,11.95,06/12/19 13:35,"840 Main St, San Francisco, CA 94016" +209533,34in Ultrawide Monitor,1,379.99,06/06/19 16:19,"902 Church St, Los Angeles, CA 90001" +209534,Wired Headphones,1,11.99,06/30/19 14:03,"934 4th St, San Francisco, CA 94016" +209535,Lightning Charging Cable,1,14.95,06/26/19 07:46,"13 Jackson St, Seattle, WA 98101" +209536,Macbook Pro Laptop,1,1700,06/24/19 18:27,"943 Lakeview St, Boston, MA 02215" +209537,AAA Batteries (4-pack),1,2.99,06/22/19 18:01,"535 14th St, Portland, OR 97035" +209538,Wired Headphones,1,11.99,06/30/19 06:14,"899 Lakeview St, Los Angeles, CA 90001" +209539,Wired Headphones,1,11.99,06/24/19 10:35,"285 Church St, Los Angeles, CA 90001" +209540,USB-C Charging Cable,1,11.95,06/04/19 11:09,"486 Main St, Atlanta, GA 30301" +209541,Lightning Charging Cable,1,14.95,06/05/19 20:07,"799 Jackson St, Atlanta, GA 30301" +209542,AAA Batteries (4-pack),3,2.99,06/25/19 16:14,"187 1st St, Atlanta, GA 30301" +209543,ThinkPad Laptop,1,999.99,06/17/19 13:01,"257 6th St, Boston, MA 02215" +209544,Lightning Charging Cable,2,14.95,06/14/19 17:13,"901 Lake St, Los Angeles, CA 90001" +209545,Wired Headphones,1,11.99,06/08/19 20:42,"284 Hill St, Los Angeles, CA 90001" +209546,USB-C Charging Cable,1,11.95,06/18/19 15:51,"360 West St, New York City, NY 10001" +209547,Flatscreen TV,1,300,06/21/19 20:34,"715 Dogwood St, San Francisco, CA 94016" +209548,34in Ultrawide Monitor,1,379.99,06/24/19 18:21,"537 Jackson St, San Francisco, CA 94016" +209549,AAA Batteries (4-pack),2,2.99,06/27/19 19:53,"826 8th St, Boston, MA 02215" +209550,USB-C Charging Cable,1,11.95,06/21/19 13:01,"238 Walnut St, San Francisco, CA 94016" +209551,AAA Batteries (4-pack),2,2.99,06/15/19 23:45,"933 Lake St, Atlanta, GA 30301" +209552,Wired Headphones,1,11.99,06/19/19 20:28,"350 Elm St, Dallas, TX 75001" +209553,AAA Batteries (4-pack),2,2.99,06/21/19 17:21,"587 Maple St, Seattle, WA 98101" +209554,AA Batteries (4-pack),1,3.84,06/26/19 14:32,"252 Jefferson St, Atlanta, GA 30301" +209555,AA Batteries (4-pack),1,3.84,06/03/19 10:37,"282 Jackson St, Los Angeles, CA 90001" +209556,Macbook Pro Laptop,1,1700,06/08/19 16:18,"767 North St, Boston, MA 02215" +209557,iPhone,1,700,06/03/19 17:00,"482 Walnut St, San Francisco, CA 94016" +209558,Bose SoundSport Headphones,1,99.99,06/13/19 14:25,"997 6th St, New York City, NY 10001" +209559,USB-C Charging Cable,1,11.95,06/18/19 22:55,"713 Church St, Portland, OR 97035" +209560,USB-C Charging Cable,1,11.95,06/01/19 19:25,"785 Center St, San Francisco, CA 94016" +209561,AA Batteries (4-pack),3,3.84,06/03/19 20:14,"965 Washington St, New York City, NY 10001" +209562,Apple Airpods Headphones,1,150,06/27/19 07:18,"129 Hill St, Los Angeles, CA 90001" +209563,Lightning Charging Cable,1,14.95,06/07/19 15:14,"943 Cherry St, Dallas, TX 75001" +209564,AA Batteries (4-pack),1,3.84,06/20/19 21:17,"362 13th St, Atlanta, GA 30301" +209565,AAA Batteries (4-pack),1,2.99,06/08/19 20:57,"691 West St, San Francisco, CA 94016" +209566,AAA Batteries (4-pack),1,2.99,06/10/19 21:19,"764 Jefferson St, Seattle, WA 98101" +209567,27in FHD Monitor,1,149.99,06/12/19 16:45,"800 Willow St, Dallas, TX 75001" +209568,iPhone,1,700,06/09/19 09:26,"703 Sunset St, San Francisco, CA 94016" +209569,34in Ultrawide Monitor,1,379.99,06/19/19 21:33,"41 South St, New York City, NY 10001" +209570,AA Batteries (4-pack),1,3.84,06/17/19 16:16,"455 Maple St, Austin, TX 73301" +209571,ThinkPad Laptop,1,999.99,06/15/19 14:27,"978 Walnut St, San Francisco, CA 94016" +209572,Apple Airpods Headphones,1,150,06/23/19 14:05,"235 Maple St, San Francisco, CA 94016" +209573,Macbook Pro Laptop,1,1700,06/26/19 08:38,"220 10th St, Los Angeles, CA 90001" +209574,USB-C Charging Cable,1,11.95,06/22/19 17:04,"153 7th St, New York City, NY 10001" +209575,AA Batteries (4-pack),1,3.84,06/13/19 09:53,"219 Washington St, Dallas, TX 75001" +209576,Wired Headphones,1,11.99,06/04/19 11:26,"585 1st St, Los Angeles, CA 90001" +209577,27in FHD Monitor,1,149.99,06/11/19 09:38,"6 11th St, Dallas, TX 75001" +209578,AAA Batteries (4-pack),4,2.99,06/21/19 08:05,"697 South St, Dallas, TX 75001" +209579,Apple Airpods Headphones,1,150,06/18/19 20:39,"747 Lake St, New York City, NY 10001" +209580,Wired Headphones,1,11.99,06/17/19 09:56,"808 11th St, Dallas, TX 75001" +209581,Apple Airpods Headphones,1,150,06/27/19 21:55,"238 Wilson St, Boston, MA 02215" +209582,Apple Airpods Headphones,1,150,06/26/19 15:59,"101 6th St, Los Angeles, CA 90001" +209582,20in Monitor,1,109.99,06/26/19 15:59,"101 6th St, Los Angeles, CA 90001" +209583,27in 4K Gaming Monitor,1,389.99,06/30/19 14:05,"135 12th St, San Francisco, CA 94016" +209584,Apple Airpods Headphones,1,150,06/19/19 10:15,"257 Adams St, Seattle, WA 98101" +209585,Apple Airpods Headphones,1,150,06/03/19 18:44,"371 Cherry St, Austin, TX 73301" +209586,27in 4K Gaming Monitor,1,389.99,06/29/19 21:02,"192 Meadow St, New York City, NY 10001" +209587,iPhone,1,700,06/07/19 19:12,"170 Lakeview St, Portland, ME 04101" +209588,USB-C Charging Cable,1,11.95,06/18/19 03:43,"571 Madison St, Portland, ME 04101" +209588,AA Batteries (4-pack),1,3.84,06/18/19 03:43,"571 Madison St, Portland, ME 04101" +209589,Wired Headphones,1,11.99,06/14/19 17:36,"422 10th St, Atlanta, GA 30301" +209590,USB-C Charging Cable,1,11.95,06/21/19 17:03,"400 7th St, San Francisco, CA 94016" +209591,Google Phone,1,600,06/26/19 13:45,"387 7th St, San Francisco, CA 94016" +209592,Vareebadd Phone,1,400,06/24/19 10:52,"925 Center St, Portland, OR 97035" +209593,AAA Batteries (4-pack),1,2.99,06/01/19 06:19,"961 North St, San Francisco, CA 94016" +209594,Lightning Charging Cable,1,14.95,06/16/19 09:59,"415 Wilson St, Los Angeles, CA 90001" +209595,Vareebadd Phone,1,400,06/14/19 08:13,"723 8th St, Austin, TX 73301" +209596,USB-C Charging Cable,1,11.95,06/16/19 15:04,"118 Church St, Boston, MA 02215" +209597,27in 4K Gaming Monitor,1,389.99,06/02/19 22:17,"341 7th St, Atlanta, GA 30301" +209598,Apple Airpods Headphones,1,150,06/06/19 20:14,"744 Sunset St, San Francisco, CA 94016" +209599,Lightning Charging Cable,1,14.95,07/01/19 02:18,"329 14th St, Los Angeles, CA 90001" +209600,iPhone,1,700,06/26/19 08:13,"653 Church St, Portland, OR 97035" +209601,Apple Airpods Headphones,1,150,06/24/19 20:59,"352 River St, New York City, NY 10001" +209602,27in 4K Gaming Monitor,1,389.99,06/17/19 19:03,"829 Main St, New York City, NY 10001" +209603,AAA Batteries (4-pack),3,2.99,06/30/19 15:28,"984 Maple St, Atlanta, GA 30301" +209604,AA Batteries (4-pack),1,3.84,06/25/19 09:09,"662 Sunset St, Seattle, WA 98101" +209605,Macbook Pro Laptop,1,1700,06/23/19 16:38,"847 Lakeview St, Portland, ME 04101" +209606,USB-C Charging Cable,1,11.95,06/14/19 16:14,"825 Church St, Portland, OR 97035" +209607,Vareebadd Phone,1,400,06/01/19 12:15,"911 Church St, New York City, NY 10001" +209607,Bose SoundSport Headphones,1,99.99,06/01/19 12:15,"911 Church St, New York City, NY 10001" +209608,AAA Batteries (4-pack),1,2.99,06/12/19 11:48,"472 1st St, Dallas, TX 75001" +209609,Apple Airpods Headphones,1,150,06/06/19 22:53,"45 13th St, San Francisco, CA 94016" +209609,Bose SoundSport Headphones,1,99.99,06/06/19 22:53,"45 13th St, San Francisco, CA 94016" +209610,Bose SoundSport Headphones,1,99.99,06/19/19 16:23,"631 Spruce St, Boston, MA 02215" +209611,AAA Batteries (4-pack),1,2.99,06/10/19 18:40,"799 Cedar St, San Francisco, CA 94016" +209612,Flatscreen TV,1,300,06/29/19 16:58,"363 Lake St, Los Angeles, CA 90001" +209613,Bose SoundSport Headphones,1,99.99,06/10/19 18:41,"58 13th St, Dallas, TX 75001" +209614,Lightning Charging Cable,1,14.95,06/02/19 02:14,"972 8th St, San Francisco, CA 94016" +209615,Macbook Pro Laptop,1,1700,06/05/19 10:00,"122 Cherry St, Boston, MA 02215" +209616,Macbook Pro Laptop,1,1700,06/19/19 22:42,"526 North St, Atlanta, GA 30301" +209617,20in Monitor,1,109.99,06/28/19 16:56,"538 Lincoln St, Austin, TX 73301" +209618,Wired Headphones,1,11.99,06/05/19 13:12,"658 Lakeview St, Los Angeles, CA 90001" +209619,Lightning Charging Cable,3,14.95,06/09/19 20:06,"863 North St, Atlanta, GA 30301" +209620,Lightning Charging Cable,1,14.95,06/19/19 22:10,"401 14th St, San Francisco, CA 94016" +209621,Vareebadd Phone,1,400,06/08/19 15:52,"401 Church St, Boston, MA 02215" +209622,AAA Batteries (4-pack),2,2.99,06/20/19 20:22,"588 2nd St, Los Angeles, CA 90001" +209623,Lightning Charging Cable,1,14.95,06/19/19 21:19,"469 10th St, Los Angeles, CA 90001" +209624,Vareebadd Phone,1,400,06/08/19 19:15,"587 Center St, San Francisco, CA 94016" +209625,Wired Headphones,1,11.99,06/07/19 14:41,"411 Cherry St, Boston, MA 02215" +209626,Bose SoundSport Headphones,1,99.99,06/12/19 23:37,"114 Wilson St, San Francisco, CA 94016" +209627,USB-C Charging Cable,1,11.95,06/02/19 16:13,"300 Lincoln St, San Francisco, CA 94016" +209628,USB-C Charging Cable,1,11.95,06/13/19 10:01,"633 12th St, Los Angeles, CA 90001" +209629,Apple Airpods Headphones,1,150,06/12/19 05:15,"702 8th St, Austin, TX 73301" +209630,Lightning Charging Cable,1,14.95,06/09/19 12:29,"6 Chestnut St, San Francisco, CA 94016" +209631,Lightning Charging Cable,1,14.95,06/17/19 21:53,"902 North St, Seattle, WA 98101" +209632,Wired Headphones,1,11.99,06/10/19 19:21,"651 Dogwood St, Austin, TX 73301" +209633,AAA Batteries (4-pack),5,2.99,06/07/19 10:34,"80 Spruce St, San Francisco, CA 94016" +209634,Wired Headphones,1,11.99,06/30/19 20:02,"27 Main St, Dallas, TX 75001" +209635,USB-C Charging Cable,1,11.95,06/22/19 11:55,"826 8th St, Portland, OR 97035" +209636,AA Batteries (4-pack),1,3.84,06/18/19 09:34,"617 Washington St, San Francisco, CA 94016" +209637,iPhone,1,700,06/11/19 21:06,"978 Pine St, Atlanta, GA 30301" +209638,27in FHD Monitor,1,149.99,06/26/19 20:53,"338 Chestnut St, Atlanta, GA 30301" +209639,Flatscreen TV,1,300,06/29/19 07:55,"303 Chestnut St, Los Angeles, CA 90001" +209640,Bose SoundSport Headphones,1,99.99,06/15/19 13:37,"34 Madison St, San Francisco, CA 94016" +209641,USB-C Charging Cable,1,11.95,06/19/19 19:40,"365 12th St, Boston, MA 02215" +209642,Lightning Charging Cable,2,14.95,06/10/19 11:32,"920 Adams St, New York City, NY 10001" +209643,Apple Airpods Headphones,1,150,06/17/19 11:35,"357 6th St, New York City, NY 10001" +209644,Wired Headphones,1,11.99,06/16/19 06:14,"679 Maple St, Portland, OR 97035" +209645,USB-C Charging Cable,1,11.95,06/12/19 16:39,"745 Adams St, New York City, NY 10001" +209646,USB-C Charging Cable,1,11.95,06/18/19 18:58,"254 12th St, Portland, OR 97035" +209647,Lightning Charging Cable,1,14.95,06/16/19 12:20,"455 Cedar St, San Francisco, CA 94016" +209648,Google Phone,1,600,06/17/19 21:30,"566 North St, Boston, MA 02215" +209649,Bose SoundSport Headphones,1,99.99,06/06/19 09:21,"179 Hill St, Los Angeles, CA 90001" +209650,Wired Headphones,1,11.99,06/19/19 08:56,"270 River St, Boston, MA 02215" +209651,iPhone,1,700,06/21/19 14:45,"384 Hill St, New York City, NY 10001" +209652,27in FHD Monitor,1,149.99,06/11/19 23:54,"666 Washington St, Seattle, WA 98101" +209653,Wired Headphones,1,11.99,06/09/19 15:33,"214 Lake St, Austin, TX 73301" +209654,27in 4K Gaming Monitor,1,389.99,06/11/19 10:04,"18 Ridge St, Boston, MA 02215" +209655,AA Batteries (4-pack),1,3.84,06/04/19 14:06,"941 14th St, Austin, TX 73301" +209656,20in Monitor,1,109.99,06/23/19 18:35,"803 8th St, Boston, MA 02215" +209657,Wired Headphones,1,11.99,06/21/19 14:31,"703 Church St, Los Angeles, CA 90001" +209658,27in FHD Monitor,1,149.99,06/18/19 16:24,"451 Spruce St, Atlanta, GA 30301" +209659,USB-C Charging Cable,1,11.95,06/11/19 07:41,"626 Hickory St, Boston, MA 02215" +209660,Wired Headphones,1,11.99,06/29/19 18:23,"185 Washington St, New York City, NY 10001" +209661,iPhone,1,700,06/07/19 21:40,"277 6th St, Atlanta, GA 30301" +209662,USB-C Charging Cable,1,11.95,06/02/19 14:29,"198 1st St, San Francisco, CA 94016" +209663,34in Ultrawide Monitor,1,379.99,06/26/19 19:57,"96 River St, Seattle, WA 98101" +209664,USB-C Charging Cable,1,11.95,06/03/19 20:20,"447 Madison St, Los Angeles, CA 90001" +209665,Apple Airpods Headphones,1,150,06/24/19 23:08,"2 Lake St, Los Angeles, CA 90001" +209666,Apple Airpods Headphones,1,150,06/04/19 11:50,"799 Center St, Los Angeles, CA 90001" +209667,Lightning Charging Cable,1,14.95,06/14/19 10:43,"201 4th St, San Francisco, CA 94016" +209668,27in 4K Gaming Monitor,1,389.99,06/13/19 10:51,"559 6th St, San Francisco, CA 94016" +209669,27in 4K Gaming Monitor,1,389.99,06/14/19 16:07,"843 Hill St, Los Angeles, CA 90001" +209670,Lightning Charging Cable,1,14.95,06/14/19 10:22,"365 9th St, New York City, NY 10001" +209671,USB-C Charging Cable,1,11.95,06/02/19 10:31,"511 7th St, San Francisco, CA 94016" +209672,USB-C Charging Cable,2,11.95,06/30/19 12:41,"630 Sunset St, San Francisco, CA 94016" +209673,iPhone,1,700,06/07/19 13:03,"807 Walnut St, San Francisco, CA 94016" +209674,USB-C Charging Cable,1,11.95,06/04/19 17:31,"450 West St, San Francisco, CA 94016" +209675,AA Batteries (4-pack),1,3.84,06/27/19 07:04,"867 North St, Austin, TX 73301" +209676,AA Batteries (4-pack),2,3.84,06/11/19 10:14,"99 Adams St, Boston, MA 02215" +209677,Wired Headphones,1,11.99,06/10/19 18:41,"509 Madison St, San Francisco, CA 94016" +209678,27in FHD Monitor,1,149.99,06/30/19 14:21,"720 River St, San Francisco, CA 94016" +209679,Lightning Charging Cable,1,14.95,06/16/19 09:58,"19 Maple St, San Francisco, CA 94016" +209680,27in 4K Gaming Monitor,1,389.99,06/16/19 14:32,"363 Forest St, Austin, TX 73301" +209681,Google Phone,1,600,06/12/19 19:33,"344 2nd St, Seattle, WA 98101" +209681,Bose SoundSport Headphones,1,99.99,06/12/19 19:33,"344 2nd St, Seattle, WA 98101" +209682,USB-C Charging Cable,1,11.95,06/27/19 16:56,"938 Main St, Boston, MA 02215" +209683,Lightning Charging Cable,2,14.95,06/28/19 20:16,"502 Main St, Los Angeles, CA 90001" +209684,Google Phone,1,600,06/29/19 08:45,"953 Meadow St, Dallas, TX 75001" +209684,USB-C Charging Cable,1,11.95,06/29/19 08:45,"953 Meadow St, Dallas, TX 75001" +209685,AAA Batteries (4-pack),1,2.99,06/22/19 22:43,"58 South St, Boston, MA 02215" +209686,USB-C Charging Cable,1,11.95,06/07/19 20:39,"235 Cedar St, Boston, MA 02215" +209687,Lightning Charging Cable,1,14.95,06/02/19 09:14,"643 11th St, Austin, TX 73301" +209688,Flatscreen TV,1,300,06/18/19 21:53,"877 Wilson St, San Francisco, CA 94016" +209689,USB-C Charging Cable,2,11.95,06/18/19 14:44,"734 Main St, Los Angeles, CA 90001" +209690,Apple Airpods Headphones,1,150,06/19/19 22:30,"61 Willow St, San Francisco, CA 94016" +209691,ThinkPad Laptop,1,999.99,06/25/19 09:04,"886 River St, Dallas, TX 75001" +209692,Lightning Charging Cable,1,14.95,06/04/19 08:53,"478 Hickory St, Los Angeles, CA 90001" +209693,Wired Headphones,1,11.99,06/03/19 16:35,"308 14th St, Los Angeles, CA 90001" +209694,Macbook Pro Laptop,1,1700,06/02/19 11:43,"966 Maple St, San Francisco, CA 94016" +209695,20in Monitor,1,109.99,06/27/19 09:46,"18 Wilson St, San Francisco, CA 94016" +209696,AAA Batteries (4-pack),1,2.99,06/11/19 19:06,"927 9th St, Austin, TX 73301" +209697,USB-C Charging Cable,1,11.95,06/12/19 13:20,"79 Johnson St, Portland, OR 97035" +209698,Apple Airpods Headphones,1,150,06/15/19 23:46,"295 Lake St, Dallas, TX 75001" +209699,34in Ultrawide Monitor,1,379.99,06/18/19 10:05,"624 Hill St, Boston, MA 02215" +209700,AAA Batteries (4-pack),3,2.99,06/03/19 14:32,"202 Ridge St, Boston, MA 02215" +209701,AAA Batteries (4-pack),1,2.99,06/13/19 23:32,"314 11th St, Dallas, TX 75001" +209702,27in 4K Gaming Monitor,1,389.99,06/01/19 16:21,"839 Cherry St, San Francisco, CA 94016" +209703,27in FHD Monitor,1,149.99,06/06/19 10:08,"346 Walnut St, Los Angeles, CA 90001" +209704,AA Batteries (4-pack),2,3.84,06/03/19 08:15,"128 Hill St, San Francisco, CA 94016" +209705,Lightning Charging Cable,1,14.95,06/24/19 15:24,"172 Madison St, Boston, MA 02215" +209706,Bose SoundSport Headphones,1,99.99,06/22/19 18:41,"658 South St, Los Angeles, CA 90001" +209707,ThinkPad Laptop,1,999.99,06/01/19 07:01,"747 Ridge St, San Francisco, CA 94016" +209708,27in FHD Monitor,1,149.99,06/30/19 16:16,"390 Center St, Portland, OR 97035" +209709,Bose SoundSport Headphones,1,99.99,06/08/19 00:16,"489 10th St, San Francisco, CA 94016" +209710,USB-C Charging Cable,1,11.95,06/30/19 18:50,"418 Center St, Boston, MA 02215" +209711,AAA Batteries (4-pack),1,2.99,06/13/19 20:11,"474 Adams St, San Francisco, CA 94016" +209712,Apple Airpods Headphones,1,150,06/23/19 13:21,"118 Walnut St, Dallas, TX 75001" +209713,AAA Batteries (4-pack),2,2.99,06/25/19 15:33,"256 6th St, Los Angeles, CA 90001" +209714,Bose SoundSport Headphones,1,99.99,06/19/19 13:00,"588 Jefferson St, Los Angeles, CA 90001" +209715,Google Phone,1,600,06/17/19 14:41,"320 1st St, Seattle, WA 98101" +209716,Apple Airpods Headphones,1,150,06/07/19 19:30,"714 Forest St, San Francisco, CA 94016" +209717,Apple Airpods Headphones,1,150,06/10/19 11:43,"566 Spruce St, San Francisco, CA 94016" +209718,27in FHD Monitor,1,149.99,06/13/19 09:39,"865 Main St, Seattle, WA 98101" +209719,Lightning Charging Cable,1,14.95,06/06/19 14:21,"685 Sunset St, Seattle, WA 98101" +209720,ThinkPad Laptop,1,999.99,06/07/19 21:36,"424 10th St, San Francisco, CA 94016" +209721,27in 4K Gaming Monitor,1,389.99,06/21/19 07:44,"662 Walnut St, Boston, MA 02215" +209722,Wired Headphones,1,11.99,06/16/19 13:20,"715 Lincoln St, Dallas, TX 75001" +209723,Bose SoundSport Headphones,1,99.99,06/06/19 20:47,"415 Cherry St, Los Angeles, CA 90001" +209724,Wired Headphones,1,11.99,06/21/19 16:04,"92 Madison St, San Francisco, CA 94016" +209725,USB-C Charging Cable,1,11.95,06/23/19 22:29,"690 Lincoln St, Atlanta, GA 30301" +209726,AAA Batteries (4-pack),2,2.99,06/23/19 14:20,"337 6th St, San Francisco, CA 94016" +209727,ThinkPad Laptop,1,999.99,06/19/19 11:00,"48 Meadow St, Atlanta, GA 30301" +209728,Google Phone,1,600,06/24/19 17:19,"689 Wilson St, San Francisco, CA 94016" +209729,27in FHD Monitor,1,149.99,06/28/19 13:24,"837 14th St, Atlanta, GA 30301" +209730,Lightning Charging Cable,1,14.95,06/22/19 19:49,"306 Church St, San Francisco, CA 94016" +209731,20in Monitor,1,109.99,06/04/19 23:06,"552 Willow St, San Francisco, CA 94016" +209732,AAA Batteries (4-pack),1,2.99,06/28/19 21:55,"48 Forest St, Dallas, TX 75001" +209733,Bose SoundSport Headphones,1,99.99,06/07/19 09:36,"120 Lake St, Boston, MA 02215" +209734,Bose SoundSport Headphones,1,99.99,06/15/19 14:53,"606 Lake St, Los Angeles, CA 90001" +209735,AAA Batteries (4-pack),2,2.99,06/30/19 14:49,"787 Highland St, Los Angeles, CA 90001" +209736,Bose SoundSport Headphones,1,99.99,06/27/19 17:30,"134 Elm St, Seattle, WA 98101" +209737,AA Batteries (4-pack),1,3.84,06/18/19 16:12,"707 11th St, Boston, MA 02215" +209738,Lightning Charging Cable,1,14.95,06/16/19 14:13,"749 Willow St, Atlanta, GA 30301" +209739,Lightning Charging Cable,1,14.95,06/10/19 16:00,"424 Willow St, Austin, TX 73301" +209740,AA Batteries (4-pack),1,3.84,06/25/19 15:03,"3 Dogwood St, Los Angeles, CA 90001" +209741,20in Monitor,1,109.99,06/05/19 17:47,"730 Forest St, Atlanta, GA 30301" +209742,ThinkPad Laptop,1,999.99,06/04/19 12:05,"834 Jackson St, Portland, OR 97035" +209743,AA Batteries (4-pack),1,3.84,06/24/19 15:28,"407 Park St, Portland, ME 04101" +209744,27in 4K Gaming Monitor,1,389.99,06/01/19 16:07,"135 Willow St, Los Angeles, CA 90001" +209745,AAA Batteries (4-pack),3,2.99,06/14/19 09:25,"392 Elm St, Austin, TX 73301" +209746,Wired Headphones,1,11.99,06/15/19 23:11,"367 Jackson St, Boston, MA 02215" +209747,27in 4K Gaming Monitor,1,389.99,06/26/19 14:11,"608 Madison St, Boston, MA 02215" +209748,Macbook Pro Laptop,1,1700,06/13/19 20:31,"304 Highland St, Dallas, TX 75001" +209749,Bose SoundSport Headphones,1,99.99,06/24/19 20:27,"113 Chestnut St, Seattle, WA 98101" +209750,Bose SoundSport Headphones,1,99.99,06/30/19 07:40,"658 6th St, Los Angeles, CA 90001" +209751,AA Batteries (4-pack),1,3.84,06/07/19 15:37,"588 Pine St, Austin, TX 73301" +209752,Lightning Charging Cable,1,14.95,06/10/19 19:22,"755 Church St, San Francisco, CA 94016" +209753,Macbook Pro Laptop,1,1700,06/18/19 12:34,"863 Dogwood St, San Francisco, CA 94016" +209754,AAA Batteries (4-pack),2,2.99,06/09/19 19:44,"665 7th St, Portland, OR 97035" +209755,Wired Headphones,1,11.99,06/23/19 13:44,"209 Lake St, Los Angeles, CA 90001" +209756,Apple Airpods Headphones,1,150,06/03/19 15:15,"385 Washington St, Atlanta, GA 30301" +209757,USB-C Charging Cable,1,11.95,06/13/19 16:13,"404 Park St, San Francisco, CA 94016" +209758,Lightning Charging Cable,1,14.95,06/06/19 16:33,"28 9th St, New York City, NY 10001" +209759,USB-C Charging Cable,1,11.95,06/03/19 20:26,"422 Cedar St, Atlanta, GA 30301" +209760,AAA Batteries (4-pack),1,2.99,06/24/19 19:22,"693 West St, San Francisco, CA 94016" +209761,Wired Headphones,1,11.99,06/16/19 17:32,"782 Church St, Boston, MA 02215" +209762,Lightning Charging Cable,1,14.95,06/18/19 11:36,"380 Washington St, Portland, OR 97035" +209763,AAA Batteries (4-pack),1,2.99,06/17/19 17:49,"688 6th St, San Francisco, CA 94016" +209764,AAA Batteries (4-pack),2,2.99,06/30/19 10:58,"146 Forest St, New York City, NY 10001" +209765,AA Batteries (4-pack),1,3.84,06/24/19 08:24,"423 Cedar St, New York City, NY 10001" +209766,Bose SoundSport Headphones,1,99.99,06/08/19 09:16,"874 Ridge St, San Francisco, CA 94016" +209767,Google Phone,1,600,06/11/19 19:08,"452 Meadow St, Atlanta, GA 30301" +209767,Bose SoundSport Headphones,1,99.99,06/11/19 19:08,"452 Meadow St, Atlanta, GA 30301" +209768,Apple Airpods Headphones,1,150,06/13/19 17:20,"18 Jefferson St, San Francisco, CA 94016" +209769,Google Phone,1,600,06/09/19 17:12,"559 Pine St, San Francisco, CA 94016" +209770,27in FHD Monitor,1,149.99,06/27/19 17:15,"878 Lincoln St, New York City, NY 10001" +209771,AAA Batteries (4-pack),2,2.99,06/22/19 19:54,"783 6th St, San Francisco, CA 94016" +209772,iPhone,1,700,06/10/19 14:33,"954 Ridge St, Seattle, WA 98101" +209772,Apple Airpods Headphones,1,150,06/10/19 14:33,"954 Ridge St, Seattle, WA 98101" +209773,Wired Headphones,1,11.99,06/03/19 09:52,"713 River St, Boston, MA 02215" +209774,AA Batteries (4-pack),1,3.84,06/30/19 20:39,"290 Johnson St, San Francisco, CA 94016" +209775,AAA Batteries (4-pack),1,2.99,06/27/19 19:33,"735 7th St, Los Angeles, CA 90001" +209776,Macbook Pro Laptop,1,1700,06/04/19 12:28,"276 Dogwood St, Austin, TX 73301" +209777,Wired Headphones,2,11.99,06/21/19 13:57,"296 1st St, Austin, TX 73301" +209778,Wired Headphones,2,11.99,06/12/19 08:31,"659 Center St, Atlanta, GA 30301" +209779,AAA Batteries (4-pack),1,2.99,06/27/19 13:22,"160 Adams St, New York City, NY 10001" +209780,27in 4K Gaming Monitor,1,389.99,06/22/19 00:54,"769 Sunset St, New York City, NY 10001" +209781,Lightning Charging Cable,1,14.95,06/19/19 13:23,"374 10th St, Dallas, TX 75001" +209782,Lightning Charging Cable,1,14.95,06/16/19 23:39,"903 Highland St, Boston, MA 02215" +209783,Google Phone,1,600,06/10/19 20:34,"14 Walnut St, Atlanta, GA 30301" +209784,AA Batteries (4-pack),1,3.84,06/13/19 21:44,"796 Cedar St, Austin, TX 73301" +209785,AA Batteries (4-pack),1,3.84,06/08/19 14:49,"738 Highland St, Seattle, WA 98101" +209786,AAA Batteries (4-pack),2,2.99,06/30/19 18:49,"88 Dogwood St, Los Angeles, CA 90001" +209787,iPhone,1,700,06/08/19 02:14,"50 Wilson St, New York City, NY 10001" +209788,Wired Headphones,2,11.99,06/12/19 13:37,"390 River St, Seattle, WA 98101" +209789,AA Batteries (4-pack),1,3.84,06/27/19 08:09,"283 1st St, San Francisco, CA 94016" +209790,AA Batteries (4-pack),1,3.84,06/11/19 21:08,"730 5th St, Seattle, WA 98101" +209791,34in Ultrawide Monitor,1,379.99,06/05/19 19:21,"853 6th St, New York City, NY 10001" +209792,AA Batteries (4-pack),1,3.84,06/27/19 23:47,"828 5th St, San Francisco, CA 94016" +,,,,, +209793,USB-C Charging Cable,1,11.95,06/04/19 16:51,"758 South St, Portland, OR 97035" +209794,AAA Batteries (4-pack),3,2.99,06/05/19 23:02,"335 North St, Seattle, WA 98101" +209795,ThinkPad Laptop,1,999.99,06/13/19 23:48,"304 Cherry St, San Francisco, CA 94016" +209796,Lightning Charging Cable,1,14.95,06/06/19 11:48,"986 Lakeview St, San Francisco, CA 94016" +209797,AA Batteries (4-pack),2,3.84,06/01/19 20:58,"843 Jackson St, New York City, NY 10001" +209798,Wired Headphones,1,11.99,06/01/19 20:56,"893 Johnson St, Portland, OR 97035" +209799,Google Phone,1,600,06/25/19 15:04,"806 5th St, San Francisco, CA 94016" +209800,Lightning Charging Cable,1,14.95,06/18/19 09:29,"148 Highland St, Los Angeles, CA 90001" +209801,USB-C Charging Cable,2,11.95,06/21/19 12:50,"131 Dogwood St, San Francisco, CA 94016" +209802,27in 4K Gaming Monitor,1,389.99,06/07/19 17:25,"871 Highland St, Boston, MA 02215" +209803,iPhone,1,700,06/17/19 13:26,"246 2nd St, Dallas, TX 75001" +209804,Lightning Charging Cable,1,14.95,06/02/19 15:16,"405 12th St, New York City, NY 10001" +209805,AA Batteries (4-pack),1,3.84,06/29/19 19:29,"70 Meadow St, Los Angeles, CA 90001" +209806,Apple Airpods Headphones,1,150,06/06/19 23:49,"383 Wilson St, San Francisco, CA 94016" +209807,Wired Headphones,1,11.99,06/29/19 19:27,"996 14th St, Atlanta, GA 30301" +209808,34in Ultrawide Monitor,1,379.99,06/18/19 12:37,"546 South St, Los Angeles, CA 90001" +209809,Google Phone,1,600,06/19/19 17:42,"476 Washington St, Los Angeles, CA 90001" +209809,Bose SoundSport Headphones,1,99.99,06/19/19 17:42,"476 Washington St, Los Angeles, CA 90001" +209809,Wired Headphones,1,11.99,06/19/19 17:42,"476 Washington St, Los Angeles, CA 90001" +209810,Macbook Pro Laptop,1,1700,06/12/19 09:49,"834 Wilson St, San Francisco, CA 94016" +209810,Apple Airpods Headphones,1,150,06/12/19 09:49,"834 Wilson St, San Francisco, CA 94016" +209811,AAA Batteries (4-pack),1,2.99,06/03/19 11:14,"957 Hill St, Boston, MA 02215" +209812,Google Phone,1,600,06/12/19 19:16,"973 Spruce St, Dallas, TX 75001" +209813,Wired Headphones,1,11.99,06/26/19 21:55,"78 Jackson St, Los Angeles, CA 90001" +209814,20in Monitor,1,109.99,06/02/19 20:26,"244 5th St, New York City, NY 10001" +209815,AA Batteries (4-pack),1,3.84,06/19/19 13:32,"975 Main St, Dallas, TX 75001" +209815,AAA Batteries (4-pack),1,2.99,06/19/19 13:32,"975 Main St, Dallas, TX 75001" +209816,Lightning Charging Cable,1,14.95,06/20/19 19:29,"430 7th St, Portland, OR 97035" +209817,Wired Headphones,1,11.99,06/20/19 15:17,"566 River St, New York City, NY 10001" +209818,34in Ultrawide Monitor,1,379.99,06/15/19 17:00,"542 South St, Boston, MA 02215" +209819,Bose SoundSport Headphones,1,99.99,06/26/19 18:39,"805 Spruce St, Austin, TX 73301" +209820,Lightning Charging Cable,1,14.95,06/06/19 20:51,"886 7th St, Los Angeles, CA 90001" +209821,AAA Batteries (4-pack),1,2.99,06/09/19 21:42,"342 Maple St, San Francisco, CA 94016" +209822,AAA Batteries (4-pack),1,2.99,06/05/19 13:16,"510 Park St, Los Angeles, CA 90001" +209823,Wired Headphones,1,11.99,06/09/19 11:54,"266 Spruce St, Portland, OR 97035" +209824,USB-C Charging Cable,1,11.95,06/04/19 18:11,"254 7th St, Boston, MA 02215" +209825,USB-C Charging Cable,1,11.95,06/29/19 13:54,"954 Center St, Atlanta, GA 30301" +209826,ThinkPad Laptop,1,999.99,06/20/19 12:47,"833 5th St, San Francisco, CA 94016" +209827,Wired Headphones,1,11.99,06/30/19 10:03,"832 Hickory St, San Francisco, CA 94016" +209828,AAA Batteries (4-pack),2,2.99,06/02/19 21:03,"895 Maple St, San Francisco, CA 94016" +209829,Apple Airpods Headphones,1,150,06/20/19 00:00,"761 1st St, Portland, OR 97035" +209830,Lightning Charging Cable,1,14.95,06/22/19 09:18,"843 2nd St, Atlanta, GA 30301" +209831,Wired Headphones,1,11.99,06/24/19 20:36,"350 Johnson St, Austin, TX 73301" +209832,Wired Headphones,2,11.99,06/23/19 19:54,"606 Hill St, Austin, TX 73301" +209833,Apple Airpods Headphones,1,150,06/17/19 15:30,"786 Center St, Portland, OR 97035" +209834,USB-C Charging Cable,1,11.95,06/09/19 13:44,"720 8th St, Boston, MA 02215" +209835,AAA Batteries (4-pack),1,2.99,06/25/19 13:36,"99 12th St, Boston, MA 02215" +209836,Lightning Charging Cable,1,14.95,06/02/19 10:07,"833 11th St, Atlanta, GA 30301" +209837,Lightning Charging Cable,1,14.95,06/13/19 21:08,"145 Cedar St, Atlanta, GA 30301" +209838,Wired Headphones,1,11.99,06/28/19 12:32,"146 Main St, San Francisco, CA 94016" +209839,LG Dryer,1,600.0,06/25/19 18:38,"828 8th St, Dallas, TX 75001" +209840,AA Batteries (4-pack),1,3.84,06/16/19 16:40,"982 North St, Los Angeles, CA 90001" +209841,USB-C Charging Cable,1,11.95,06/17/19 21:51,"843 Adams St, Boston, MA 02215" +209842,Lightning Charging Cable,1,14.95,06/26/19 17:34,"330 Center St, Boston, MA 02215" +209843,AA Batteries (4-pack),2,3.84,06/22/19 16:37,"294 Highland St, Los Angeles, CA 90001" +209844,Bose SoundSport Headphones,1,99.99,06/21/19 10:42,"286 Dogwood St, Los Angeles, CA 90001" +209845,Bose SoundSport Headphones,1,99.99,06/23/19 16:03,"91 Lake St, Los Angeles, CA 90001" +209845,Apple Airpods Headphones,1,150,06/23/19 16:03,"91 Lake St, Los Angeles, CA 90001" +209846,USB-C Charging Cable,1,11.95,06/03/19 20:07,"152 Pine St, New York City, NY 10001" +209847,Vareebadd Phone,1,400,06/10/19 14:27,"999 Forest St, San Francisco, CA 94016" +209848,Lightning Charging Cable,1,14.95,06/26/19 10:40,"26 Highland St, Boston, MA 02215" +209849,27in FHD Monitor,1,149.99,06/03/19 18:09,"156 Hickory St, San Francisco, CA 94016" +209850,Lightning Charging Cable,2,14.95,06/15/19 11:32,"582 Hill St, Boston, MA 02215" +209851,27in FHD Monitor,1,149.99,06/30/19 12:13,"3 Hill St, Los Angeles, CA 90001" +209852,Lightning Charging Cable,1,14.95,06/09/19 17:38,"496 Center St, San Francisco, CA 94016" +209853,Flatscreen TV,1,300,06/29/19 09:55,"350 Sunset St, Atlanta, GA 30301" +209854,Lightning Charging Cable,1,14.95,06/10/19 13:48,"884 Cedar St, New York City, NY 10001" +209855,AA Batteries (4-pack),4,3.84,06/25/19 09:32,"330 10th St, Los Angeles, CA 90001" +209856,AAA Batteries (4-pack),1,2.99,06/26/19 12:52,"811 Sunset St, San Francisco, CA 94016" +209857,20in Monitor,1,109.99,06/19/19 09:46,"649 Lincoln St, Dallas, TX 75001" +209858,Lightning Charging Cable,1,14.95,06/10/19 17:02,"61 Main St, Los Angeles, CA 90001" +209859,Apple Airpods Headphones,1,150,06/28/19 09:00,"37 Pine St, Atlanta, GA 30301" +209860,Lightning Charging Cable,1,14.95,06/17/19 18:41,"630 5th St, San Francisco, CA 94016" +209861,34in Ultrawide Monitor,1,379.99,06/16/19 14:54,"23 Church St, Dallas, TX 75001" +209862,iPhone,1,700,06/10/19 22:19,"422 Chestnut St, Austin, TX 73301" +209863,AAA Batteries (4-pack),3,2.99,06/07/19 13:49,"865 Park St, Austin, TX 73301" +209864,20in Monitor,1,109.99,06/23/19 22:35,"462 Johnson St, Portland, OR 97035" +209865,Macbook Pro Laptop,1,1700,06/23/19 18:25,"974 Pine St, Boston, MA 02215" +209866,Wired Headphones,1,11.99,06/24/19 19:41,"190 Main St, Portland, OR 97035" +209867,USB-C Charging Cable,1,11.95,06/19/19 17:22,"984 Park St, Austin, TX 73301" +209868,USB-C Charging Cable,1,11.95,06/26/19 23:15,"932 Lake St, Portland, OR 97035" +209869,Wired Headphones,1,11.99,06/09/19 21:15,"356 Center St, Los Angeles, CA 90001" +209870,Google Phone,1,600,06/10/19 18:13,"488 Jefferson St, Seattle, WA 98101" +209870,Wired Headphones,1,11.99,06/10/19 18:13,"488 Jefferson St, Seattle, WA 98101" +209871,USB-C Charging Cable,1,11.95,06/28/19 17:28,"975 10th St, Boston, MA 02215" +209872,AA Batteries (4-pack),1,3.84,06/18/19 18:42,"40 6th St, San Francisco, CA 94016" +209873,20in Monitor,1,109.99,06/18/19 11:39,"45 South St, Portland, ME 04101" +209874,Apple Airpods Headphones,1,150,06/20/19 15:39,"544 2nd St, Boston, MA 02215" +209875,Lightning Charging Cable,1,14.95,06/19/19 17:27,"811 South St, Los Angeles, CA 90001" +209876,Bose SoundSport Headphones,1,99.99,06/28/19 08:49,"744 Maple St, New York City, NY 10001" +209877,Google Phone,1,600,06/10/19 12:17,"742 Park St, Los Angeles, CA 90001" +209878,Vareebadd Phone,1,400,06/15/19 00:23,"955 14th St, Portland, OR 97035" +209879,Google Phone,1,600,06/22/19 11:57,"890 Maple St, Boston, MA 02215" +209880,Google Phone,1,600,06/11/19 23:56,"780 Park St, San Francisco, CA 94016" +209880,USB-C Charging Cable,1,11.95,06/11/19 23:56,"780 Park St, San Francisco, CA 94016" +209880,Wired Headphones,1,11.99,06/11/19 23:56,"780 Park St, San Francisco, CA 94016" +209881,AAA Batteries (4-pack),1,2.99,06/26/19 13:24,"393 Center St, Boston, MA 02215" +209882,USB-C Charging Cable,1,11.95,06/01/19 12:38,"767 14th St, Seattle, WA 98101" +209883,Lightning Charging Cable,1,14.95,06/23/19 20:49,"218 2nd St, New York City, NY 10001" +209884,AAA Batteries (4-pack),1,2.99,06/01/19 19:04,"899 Dogwood St, San Francisco, CA 94016" +209885,USB-C Charging Cable,1,11.95,06/11/19 15:48,"526 Elm St, Austin, TX 73301" +209886,AA Batteries (4-pack),1,3.84,06/30/19 21:53,"283 Hill St, Dallas, TX 75001" +209887,Flatscreen TV,1,300,06/05/19 19:56,"642 Jackson St, Dallas, TX 75001" +209888,Bose SoundSport Headphones,1,99.99,06/05/19 21:48,"616 Adams St, Portland, OR 97035" +209889,AAA Batteries (4-pack),1,2.99,06/22/19 22:57,"363 Lakeview St, New York City, NY 10001" +209890,Lightning Charging Cable,1,14.95,06/23/19 18:22,"525 4th St, New York City, NY 10001" +209891,Google Phone,1,600,06/02/19 16:11,"562 Hickory St, Austin, TX 73301" +209892,Lightning Charging Cable,1,14.95,06/07/19 18:49,"214 Church St, New York City, NY 10001" +209893,USB-C Charging Cable,1,11.95,06/07/19 09:16,"844 11th St, Atlanta, GA 30301" +209894,Macbook Pro Laptop,1,1700,06/24/19 12:37,"594 Highland St, Seattle, WA 98101" +209895,Apple Airpods Headphones,1,150,06/27/19 07:58,"787 Cedar St, Boston, MA 02215" +209896,Lightning Charging Cable,1,14.95,06/13/19 20:46,"999 Jefferson St, Seattle, WA 98101" +209897,34in Ultrawide Monitor,1,379.99,06/28/19 11:47,"102 Chestnut St, Los Angeles, CA 90001" +209898,AAA Batteries (4-pack),1,2.99,06/15/19 19:48,"541 1st St, New York City, NY 10001" +209899,Wired Headphones,1,11.99,06/15/19 18:24,"146 8th St, New York City, NY 10001" +209900,AAA Batteries (4-pack),1,2.99,06/06/19 13:27,"978 6th St, San Francisco, CA 94016" +209901,Lightning Charging Cable,1,14.95,06/15/19 18:44,"128 Jefferson St, Seattle, WA 98101" +209902,Wired Headphones,1,11.99,06/02/19 02:17,"432 10th St, Los Angeles, CA 90001" +209903,Bose SoundSport Headphones,1,99.99,06/01/19 11:31,"628 South St, Boston, MA 02215" +209904,AA Batteries (4-pack),1,3.84,06/08/19 22:46,"349 7th St, New York City, NY 10001" +209905,USB-C Charging Cable,1,11.95,06/01/19 19:28,"702 Cedar St, Atlanta, GA 30301" +209906,Apple Airpods Headphones,1,150,06/23/19 21:10,"890 Park St, Seattle, WA 98101" +209907,AA Batteries (4-pack),2,3.84,06/09/19 15:15,"432 Park St, Boston, MA 02215" +209908,Lightning Charging Cable,1,14.95,06/23/19 19:29,"323 12th St, Boston, MA 02215" +209909,Wired Headphones,1,11.99,06/13/19 11:53,"390 North St, New York City, NY 10001" +209910,USB-C Charging Cable,1,11.95,06/28/19 23:04,"19 Washington St, San Francisco, CA 94016" +209911,AA Batteries (4-pack),3,3.84,06/22/19 12:02,"895 Cherry St, New York City, NY 10001" +209912,AAA Batteries (4-pack),1,2.99,06/22/19 11:49,"176 Forest St, Los Angeles, CA 90001" +209913,iPhone,1,700,06/24/19 07:49,"197 Church St, New York City, NY 10001" +209914,USB-C Charging Cable,1,11.95,06/20/19 00:47,"627 7th St, Seattle, WA 98101" +209915,Lightning Charging Cable,1,14.95,06/21/19 15:14,"676 Spruce St, San Francisco, CA 94016" +209916,AAA Batteries (4-pack),1,2.99,06/18/19 18:46,"622 14th St, San Francisco, CA 94016" +209917,AAA Batteries (4-pack),4,2.99,06/23/19 17:06,"991 Washington St, Portland, ME 04101" +209918,20in Monitor,1,109.99,06/07/19 12:24,"278 6th St, Boston, MA 02215" +209919,AAA Batteries (4-pack),1,2.99,06/30/19 19:38,"988 Walnut St, San Francisco, CA 94016" +209920,AA Batteries (4-pack),2,3.84,06/21/19 09:37,"197 Sunset St, Los Angeles, CA 90001" +209920,Lightning Charging Cable,1,14.95,06/21/19 09:37,"197 Sunset St, Los Angeles, CA 90001" +209921,AA Batteries (4-pack),1,3.84,06/11/19 22:00,"28 4th St, Seattle, WA 98101" +209922,Bose SoundSport Headphones,1,99.99,06/08/19 01:13,"473 7th St, San Francisco, CA 94016" +209923,AAA Batteries (4-pack),1,2.99,06/05/19 06:58,"271 Church St, Atlanta, GA 30301" +209924,AA Batteries (4-pack),1,3.84,06/29/19 10:54,"444 South St, New York City, NY 10001" +209925,Wired Headphones,1,11.99,06/19/19 22:06,"858 Highland St, San Francisco, CA 94016" +209926,AA Batteries (4-pack),1,3.84,06/26/19 20:48,"876 Pine St, Boston, MA 02215" +209927,LG Washing Machine,1,600.0,06/28/19 12:55,"709 4th St, Boston, MA 02215" +209928,27in 4K Gaming Monitor,1,389.99,06/17/19 12:25,"353 Johnson St, Seattle, WA 98101" +209929,USB-C Charging Cable,1,11.95,06/03/19 09:00,"468 Pine St, Portland, OR 97035" +209930,AA Batteries (4-pack),1,3.84,06/11/19 18:34,"485 Washington St, Portland, OR 97035" +209931,Macbook Pro Laptop,1,1700,06/20/19 18:55,"796 Jefferson St, Austin, TX 73301" +209932,Wired Headphones,1,11.99,06/23/19 20:52,"135 Maple St, Dallas, TX 75001" +209933,USB-C Charging Cable,1,11.95,06/08/19 14:16,"756 Jefferson St, Los Angeles, CA 90001" +209934,AAA Batteries (4-pack),1,2.99,06/01/19 20:29,"457 Washington St, San Francisco, CA 94016" +209935,AAA Batteries (4-pack),1,2.99,06/05/19 21:56,"864 Wilson St, New York City, NY 10001" +209936,AA Batteries (4-pack),1,3.84,06/23/19 20:25,"871 North St, Seattle, WA 98101" +209937,20in Monitor,1,109.99,06/02/19 20:00,"686 Park St, Dallas, TX 75001" +209938,Lightning Charging Cable,1,14.95,06/04/19 12:43,"866 Maple St, San Francisco, CA 94016" +209939,USB-C Charging Cable,1,11.95,06/01/19 23:49,"851 Center St, Atlanta, GA 30301" +209940,Apple Airpods Headphones,1,150,06/04/19 17:57,"93 Maple St, Atlanta, GA 30301" +209941,Lightning Charging Cable,1,14.95,06/05/19 00:24,"854 Washington St, Boston, MA 02215" +209942,AA Batteries (4-pack),1,3.84,06/22/19 23:39,"725 Madison St, Boston, MA 02215" +209943,Wired Headphones,1,11.99,06/01/19 12:37,"403 River St, New York City, NY 10001" +209944,Lightning Charging Cable,1,14.95,06/23/19 08:09,"309 North St, New York City, NY 10001" +209945,AAA Batteries (4-pack),1,2.99,06/10/19 20:40,"892 Jackson St, Seattle, WA 98101" +209946,Lightning Charging Cable,2,14.95,06/07/19 20:27,"140 Pine St, Atlanta, GA 30301" +209947,USB-C Charging Cable,1,11.95,06/24/19 09:31,"820 Cedar St, San Francisco, CA 94016" +209948,AA Batteries (4-pack),1,3.84,06/22/19 20:50,"921 6th St, Boston, MA 02215" +209949,27in 4K Gaming Monitor,1,389.99,06/10/19 16:59,"38 Hickory St, Seattle, WA 98101" +209950,Google Phone,1,600,06/14/19 19:45,"685 Main St, San Francisco, CA 94016" +209951,Lightning Charging Cable,2,14.95,06/29/19 12:14,"261 Maple St, Los Angeles, CA 90001" +209952,USB-C Charging Cable,1,11.95,06/27/19 08:54,"450 Willow St, Boston, MA 02215" +209953,Lightning Charging Cable,1,14.95,06/02/19 02:00,"334 Jefferson St, Atlanta, GA 30301" +209954,AA Batteries (4-pack),1,3.84,06/06/19 07:48,"794 Johnson St, Portland, OR 97035" +209955,Bose SoundSport Headphones,1,99.99,06/22/19 13:13,"438 4th St, Atlanta, GA 30301" +209956,USB-C Charging Cable,1,11.95,06/12/19 16:23,"111 Johnson St, San Francisco, CA 94016" +209957,AAA Batteries (4-pack),1,2.99,06/14/19 00:01,"4 4th St, Seattle, WA 98101" +209958,Wired Headphones,1,11.99,06/21/19 17:10,"994 9th St, San Francisco, CA 94016" +209959,AA Batteries (4-pack),1,3.84,06/27/19 16:16,"327 Jefferson St, Los Angeles, CA 90001" +209960,Bose SoundSport Headphones,1,99.99,06/11/19 09:13,"290 4th St, San Francisco, CA 94016" +209961,AA Batteries (4-pack),4,3.84,06/21/19 18:47,"483 Sunset St, San Francisco, CA 94016" +209962,Apple Airpods Headphones,1,150,06/26/19 13:09,"942 Chestnut St, Atlanta, GA 30301" +209963,AAA Batteries (4-pack),1,2.99,06/29/19 09:16,"351 Cedar St, San Francisco, CA 94016" +209964,Bose SoundSport Headphones,1,99.99,06/03/19 09:39,"344 4th St, Los Angeles, CA 90001" +209965,Flatscreen TV,1,300,06/02/19 14:01,"383 Meadow St, Dallas, TX 75001" +209966,AA Batteries (4-pack),1,3.84,06/08/19 11:47,"409 Chestnut St, New York City, NY 10001" +209967,AAA Batteries (4-pack),3,2.99,06/22/19 20:43,"750 Cherry St, New York City, NY 10001" +209968,AA Batteries (4-pack),1,3.84,06/21/19 17:09,"477 Ridge St, Boston, MA 02215" +209969,USB-C Charging Cable,1,11.95,06/12/19 16:45,"999 Ridge St, San Francisco, CA 94016" +209970,USB-C Charging Cable,1,11.95,06/17/19 01:23,"814 Meadow St, Los Angeles, CA 90001" +209971,USB-C Charging Cable,1,11.95,06/05/19 23:15,"136 Spruce St, San Francisco, CA 94016" +209972,Apple Airpods Headphones,1,150,06/03/19 10:33,"947 North St, San Francisco, CA 94016" +209973,Flatscreen TV,1,300,06/20/19 12:10,"115 Adams St, San Francisco, CA 94016" +209974,Lightning Charging Cable,2,14.95,06/14/19 10:29,"553 14th St, San Francisco, CA 94016" +,,,,, +209975,AA Batteries (4-pack),2,3.84,06/06/19 19:39,"481 Jackson St, Seattle, WA 98101" +209976,27in FHD Monitor,1,149.99,06/02/19 16:56,"578 Meadow St, Boston, MA 02215" +209977,ThinkPad Laptop,1,999.99,06/08/19 07:55,"716 9th St, Boston, MA 02215" +209978,iPhone,1,700,06/04/19 06:13,"811 Highland St, Austin, TX 73301" +209979,USB-C Charging Cable,1,11.95,06/01/19 13:37,"976 Jefferson St, Seattle, WA 98101" +209980,Lightning Charging Cable,2,14.95,06/24/19 09:36,"948 11th St, New York City, NY 10001" +209981,Wired Headphones,1,11.99,06/13/19 19:32,"549 14th St, New York City, NY 10001" +209982,USB-C Charging Cable,1,11.95,06/10/19 21:00,"207 Center St, San Francisco, CA 94016" +209983,USB-C Charging Cable,1,11.95,06/15/19 13:45,"166 Cherry St, Austin, TX 73301" +209984,USB-C Charging Cable,1,11.95,06/25/19 11:49,"215 Park St, Portland, OR 97035" +209985,ThinkPad Laptop,1,999.99,06/25/19 19:03,"338 Washington St, Los Angeles, CA 90001" +209986,AAA Batteries (4-pack),1,2.99,06/22/19 18:43,"937 10th St, Portland, ME 04101" +209987,Bose SoundSport Headphones,1,99.99,06/03/19 19:06,"882 Park St, San Francisco, CA 94016" +209988,27in FHD Monitor,1,149.99,06/15/19 17:31,"627 Pine St, Boston, MA 02215" +209989,27in FHD Monitor,1,149.99,06/18/19 09:19,"389 Willow St, Atlanta, GA 30301" +209990,USB-C Charging Cable,1,11.95,06/18/19 09:44,"162 Washington St, Boston, MA 02215" +209991,27in FHD Monitor,1,149.99,06/02/19 14:37,"547 North St, Boston, MA 02215" +209992,Vareebadd Phone,1,400,06/15/19 17:35,"357 Highland St, Portland, OR 97035" +209993,LG Dryer,1,600.0,06/26/19 09:59,"739 Elm St, San Francisco, CA 94016" +209994,Bose SoundSport Headphones,1,99.99,06/06/19 20:26,"234 Highland St, New York City, NY 10001" +209995,Apple Airpods Headphones,1,150,06/15/19 19:13,"568 8th St, Seattle, WA 98101" +209996,Lightning Charging Cable,1,14.95,06/02/19 23:28,"288 Forest St, Portland, OR 97035" +209997,Flatscreen TV,1,300,06/06/19 21:36,"253 6th St, New York City, NY 10001" +209998,Wired Headphones,1,11.99,06/15/19 18:28,"80 2nd St, Los Angeles, CA 90001" +209999,LG Dryer,1,600.0,06/21/19 11:43,"94 11th St, Atlanta, GA 30301" +210000,ThinkPad Laptop,1,999.99,06/21/19 12:21,"872 Wilson St, San Francisco, CA 94016" +210001,Lightning Charging Cable,1,14.95,06/30/19 13:27,"981 14th St, Seattle, WA 98101" +210002,Flatscreen TV,1,300,06/12/19 13:00,"842 13th St, San Francisco, CA 94016" +210003,USB-C Charging Cable,1,11.95,06/07/19 18:33,"270 Park St, Portland, OR 97035" +210004,USB-C Charging Cable,1,11.95,06/04/19 15:54,"690 Walnut St, San Francisco, CA 94016" +210005,Apple Airpods Headphones,1,150,06/02/19 10:50,"150 River St, Dallas, TX 75001" +210006,27in FHD Monitor,1,149.99,06/15/19 20:02,"433 Highland St, New York City, NY 10001" +210007,Bose SoundSport Headphones,2,99.99,06/11/19 12:57,"483 Washington St, Atlanta, GA 30301" +210008,ThinkPad Laptop,1,999.99,06/14/19 14:09,"534 Walnut St, Boston, MA 02215" +210009,Wired Headphones,2,11.99,06/30/19 13:49,"967 7th St, San Francisco, CA 94016" +210010,AAA Batteries (4-pack),1,2.99,06/11/19 21:32,"725 9th St, San Francisco, CA 94016" +210011,Wired Headphones,1,11.99,07/01/19 01:03,"379 Lake St, Dallas, TX 75001" +210012,ThinkPad Laptop,1,999.99,06/12/19 16:53,"991 9th St, San Francisco, CA 94016" +210013,USB-C Charging Cable,1,11.95,06/13/19 23:11,"939 Adams St, New York City, NY 10001" +210014,Apple Airpods Headphones,1,150,06/15/19 08:51,"771 Cherry St, Atlanta, GA 30301" +210015,USB-C Charging Cable,1,11.95,06/13/19 12:14,"410 1st St, Atlanta, GA 30301" +210016,Lightning Charging Cable,1,14.95,06/05/19 10:12,"801 Main St, San Francisco, CA 94016" +210017,USB-C Charging Cable,1,11.95,06/29/19 10:54,"837 7th St, Atlanta, GA 30301" +210018,Bose SoundSport Headphones,1,99.99,06/08/19 21:14,"833 Willow St, San Francisco, CA 94016" +210019,Apple Airpods Headphones,1,150,06/08/19 13:34,"309 11th St, San Francisco, CA 94016" +210020,AAA Batteries (4-pack),1,2.99,06/07/19 15:51,"663 Washington St, San Francisco, CA 94016" +210021,27in 4K Gaming Monitor,1,389.99,06/06/19 22:57,"318 Hickory St, Atlanta, GA 30301" +210022,AAA Batteries (4-pack),1,2.99,06/28/19 22:58,"601 4th St, San Francisco, CA 94016" +210023,27in FHD Monitor,1,149.99,06/02/19 22:31,"224 12th St, Atlanta, GA 30301" +210024,AAA Batteries (4-pack),2,2.99,06/11/19 07:38,"841 Pine St, Los Angeles, CA 90001" +210025,AAA Batteries (4-pack),1,2.99,06/27/19 19:15,"499 Ridge St, Seattle, WA 98101" +210026,Wired Headphones,1,11.99,06/04/19 12:46,"56 8th St, Los Angeles, CA 90001" +210027,AAA Batteries (4-pack),1,2.99,06/13/19 17:59,"340 Wilson St, Atlanta, GA 30301" +210028,Wired Headphones,1,11.99,06/02/19 09:12,"388 Johnson St, Austin, TX 73301" +210029,AAA Batteries (4-pack),1,2.99,06/26/19 18:41,"265 7th St, Portland, OR 97035" +210030,Lightning Charging Cable,1,14.95,06/20/19 12:18,"683 5th St, Atlanta, GA 30301" +210031,Wired Headphones,1,11.99,06/14/19 16:46,"56 14th St, Atlanta, GA 30301" +210032,Lightning Charging Cable,1,14.95,06/22/19 19:21,"80 12th St, San Francisco, CA 94016" +210033,USB-C Charging Cable,1,11.95,06/25/19 07:29,"790 7th St, Boston, MA 02215" +210034,Apple Airpods Headphones,1,150,06/25/19 11:52,"858 West St, New York City, NY 10001" +210035,Wired Headphones,1,11.99,06/28/19 16:28,"343 10th St, Boston, MA 02215" +210036,USB-C Charging Cable,1,11.95,06/09/19 23:03,"593 Lakeview St, Los Angeles, CA 90001" +210037,Google Phone,1,600,06/01/19 05:26,"135 Washington St, Dallas, TX 75001" +210038,AAA Batteries (4-pack),3,2.99,06/22/19 20:37,"569 Adams St, San Francisco, CA 94016" +210039,27in FHD Monitor,1,149.99,06/30/19 12:39,"889 10th St, Los Angeles, CA 90001" +210040,AA Batteries (4-pack),2,3.84,06/23/19 18:54,"520 7th St, Seattle, WA 98101" +210041,Lightning Charging Cable,1,14.95,06/06/19 04:02,"679 Park St, Los Angeles, CA 90001" +210042,20in Monitor,1,109.99,06/12/19 12:33,"694 Lake St, Dallas, TX 75001" +210043,AAA Batteries (4-pack),2,2.99,06/14/19 12:25,"158 Jackson St, Boston, MA 02215" +210044,LG Washing Machine,1,600.0,06/26/19 10:25,"594 Church St, San Francisco, CA 94016" +210045,Wired Headphones,1,11.99,06/03/19 11:52,"501 North St, Atlanta, GA 30301" +210046,ThinkPad Laptop,1,999.99,06/27/19 11:12,"975 9th St, San Francisco, CA 94016" +210047,AAA Batteries (4-pack),1,2.99,06/09/19 18:36,"621 North St, Atlanta, GA 30301" +210048,USB-C Charging Cable,1,11.95,06/16/19 11:49,"849 1st St, Boston, MA 02215" +210049,AAA Batteries (4-pack),2,2.99,06/02/19 12:01,"114 Jefferson St, Los Angeles, CA 90001" +210050,AA Batteries (4-pack),1,3.84,06/30/19 19:23,"329 Cherry St, San Francisco, CA 94016" +210051,AAA Batteries (4-pack),1,2.99,06/15/19 17:47,"818 Church St, New York City, NY 10001" +210052,USB-C Charging Cable,1,11.95,06/24/19 00:42,"189 Ridge St, Boston, MA 02215" +210053,Apple Airpods Headphones,1,150,06/20/19 13:43,"760 Main St, Boston, MA 02215" +210054,Wired Headphones,1,11.99,06/04/19 22:50,"487 North St, San Francisco, CA 94016" +210055,Wired Headphones,1,11.99,06/07/19 07:17,"556 West St, Los Angeles, CA 90001" +210056,USB-C Charging Cable,1,11.95,06/03/19 12:53,"523 Wilson St, San Francisco, CA 94016" +210057,AAA Batteries (4-pack),1,2.99,06/10/19 16:21,"421 Ridge St, Atlanta, GA 30301" +210058,USB-C Charging Cable,1,11.95,06/27/19 19:13,"435 West St, Los Angeles, CA 90001" +210059,USB-C Charging Cable,1,11.95,06/05/19 16:56,"20 Maple St, Boston, MA 02215" +210060,Bose SoundSport Headphones,1,99.99,06/19/19 18:58,"917 Walnut St, New York City, NY 10001" +210061,AA Batteries (4-pack),1,3.84,06/11/19 09:33,"55 Cedar St, Atlanta, GA 30301" +210062,Lightning Charging Cable,1,14.95,06/19/19 17:27,"437 Walnut St, San Francisco, CA 94016" +210063,Apple Airpods Headphones,1,150,07/01/19 01:03,"834 Church St, Boston, MA 02215" +210064,Wired Headphones,1,11.99,06/29/19 23:20,"213 Chestnut St, San Francisco, CA 94016" +210065,27in 4K Gaming Monitor,1,389.99,06/10/19 15:07,"916 Maple St, San Francisco, CA 94016" +210066,Wired Headphones,1,11.99,06/29/19 20:30,"61 Maple St, San Francisco, CA 94016" +210067,Bose SoundSport Headphones,1,99.99,06/05/19 13:46,"396 2nd St, Los Angeles, CA 90001" +210068,Lightning Charging Cable,1,14.95,06/14/19 19:59,"945 Center St, Boston, MA 02215" +210069,AAA Batteries (4-pack),1,2.99,06/20/19 10:24,"408 Johnson St, Dallas, TX 75001" +210070,Google Phone,1,600,06/07/19 15:25,"480 Jefferson St, New York City, NY 10001" +210071,Lightning Charging Cable,1,14.95,06/06/19 19:22,"293 Walnut St, Atlanta, GA 30301" +210072,Lightning Charging Cable,1,14.95,06/30/19 17:09,"726 6th St, Dallas, TX 75001" +210073,Lightning Charging Cable,1,14.95,06/04/19 16:22,"87 7th St, San Francisco, CA 94016" +210074,Lightning Charging Cable,1,14.95,06/17/19 12:04,"933 South St, Austin, TX 73301" +210075,Google Phone,1,600,06/13/19 09:58,"433 Forest St, Boston, MA 02215" +210075,USB-C Charging Cable,1,11.95,06/13/19 09:58,"433 Forest St, Boston, MA 02215" +210076,AA Batteries (4-pack),1,3.84,06/27/19 18:16,"581 Washington St, New York City, NY 10001" +210077,AAA Batteries (4-pack),2,2.99,06/25/19 14:31,"923 South St, New York City, NY 10001" +210078,Lightning Charging Cable,1,14.95,06/18/19 00:12,"238 13th St, Seattle, WA 98101" +210079,AA Batteries (4-pack),1,3.84,06/22/19 19:45,"533 Center St, Portland, OR 97035" +210080,USB-C Charging Cable,1,11.95,06/22/19 03:08,"16 8th St, Boston, MA 02215" +210081,Bose SoundSport Headphones,1,99.99,06/08/19 20:39,"512 Walnut St, Austin, TX 73301" +210082,Apple Airpods Headphones,1,150,06/19/19 17:07,"341 13th St, Los Angeles, CA 90001" +210082,AAA Batteries (4-pack),1,2.99,06/19/19 17:07,"341 13th St, Los Angeles, CA 90001" +210083,Bose SoundSport Headphones,1,99.99,06/04/19 20:14,"529 Dogwood St, New York City, NY 10001" +210084,Lightning Charging Cable,1,14.95,06/13/19 17:54,"259 12th St, New York City, NY 10001" +210085,Apple Airpods Headphones,1,150,06/29/19 17:51,"605 Main St, New York City, NY 10001" +210086,Lightning Charging Cable,1,14.95,06/30/19 05:49,"598 Pine St, New York City, NY 10001" +210087,AA Batteries (4-pack),2,3.84,06/02/19 05:25,"213 Meadow St, Los Angeles, CA 90001" +210088,AA Batteries (4-pack),1,3.84,06/18/19 10:41,"68 Park St, New York City, NY 10001" +210089,AAA Batteries (4-pack),1,2.99,06/04/19 05:10,"185 Forest St, New York City, NY 10001" +210090,Lightning Charging Cable,1,14.95,06/11/19 21:16,"182 West St, San Francisco, CA 94016" +210091,Apple Airpods Headphones,1,150,06/01/19 20:08,"866 Washington St, Boston, MA 02215" +210092,Wired Headphones,1,11.99,06/12/19 07:17,"924 Hill St, New York City, NY 10001" +210092,Google Phone,1,600,06/12/19 07:17,"924 Hill St, New York City, NY 10001" +210093,Apple Airpods Headphones,1,150,06/03/19 08:42,"438 Jefferson St, New York City, NY 10001" +210094,USB-C Charging Cable,1,11.95,06/28/19 19:02,"991 Washington St, New York City, NY 10001" +210095,Bose SoundSport Headphones,1,99.99,06/10/19 17:29,"170 Forest St, Los Angeles, CA 90001" +210096,Wired Headphones,1,11.99,06/27/19 14:11,"221 Chestnut St, New York City, NY 10001" +210097,AA Batteries (4-pack),2,3.84,06/26/19 10:15,"316 Jackson St, Austin, TX 73301" +210098,Google Phone,1,600,06/09/19 09:15,"254 Hill St, Dallas, TX 75001" +210099,Bose SoundSport Headphones,1,99.99,06/28/19 22:01,"129 Church St, Los Angeles, CA 90001" +210099,Vareebadd Phone,1,400,06/28/19 22:01,"129 Church St, Los Angeles, CA 90001" +210100,AA Batteries (4-pack),1,3.84,06/01/19 16:04,"635 6th St, San Francisco, CA 94016" +210101,Google Phone,1,600,06/21/19 00:49,"884 1st St, San Francisco, CA 94016" +210102,20in Monitor,1,109.99,06/05/19 19:04,"602 Church St, San Francisco, CA 94016" +210103,USB-C Charging Cable,1,11.95,06/29/19 01:52,"473 Maple St, San Francisco, CA 94016" +210104,27in 4K Gaming Monitor,1,389.99,06/12/19 22:53,"590 Chestnut St, Boston, MA 02215" +210105,Wired Headphones,1,11.99,06/07/19 14:49,"259 6th St, San Francisco, CA 94016" +210106,iPhone,1,700,06/18/19 13:50,"212 Park St, New York City, NY 10001" +210107,iPhone,1,700,06/24/19 20:28,"335 Willow St, Seattle, WA 98101" +210108,AAA Batteries (4-pack),1,2.99,06/18/19 10:35,"118 Walnut St, New York City, NY 10001" +210109,Bose SoundSport Headphones,1,99.99,06/05/19 15:44,"247 Jefferson St, San Francisco, CA 94016" +210110,Bose SoundSport Headphones,1,99.99,06/11/19 18:10,"638 10th St, Austin, TX 73301" +210111,AAA Batteries (4-pack),2,2.99,06/12/19 13:14,"248 Meadow St, San Francisco, CA 94016" +210112,Wired Headphones,1,11.99,06/23/19 20:08,"380 2nd St, Los Angeles, CA 90001" +210113,AAA Batteries (4-pack),6,2.99,06/29/19 10:51,"553 Spruce St, San Francisco, CA 94016" +210114,Lightning Charging Cable,1,14.95,06/06/19 10:13,"849 Madison St, Dallas, TX 75001" +210115,AA Batteries (4-pack),1,3.84,06/05/19 20:45,"935 Hickory St, Atlanta, GA 30301" +210116,USB-C Charging Cable,1,11.95,06/30/19 10:46,"256 Lakeview St, New York City, NY 10001" +210117,Lightning Charging Cable,1,14.95,06/18/19 22:45,"980 West St, New York City, NY 10001" +210118,AA Batteries (4-pack),1,3.84,06/13/19 13:26,"863 Spruce St, Atlanta, GA 30301" +210119,Bose SoundSport Headphones,1,99.99,06/15/19 12:39,"851 West St, Atlanta, GA 30301" +210120,USB-C Charging Cable,1,11.95,06/11/19 09:50,"322 Park St, Los Angeles, CA 90001" +210121,Wired Headphones,1,11.99,06/21/19 11:04,"521 Johnson St, Portland, OR 97035" +210122,Flatscreen TV,1,300,06/20/19 18:01,"695 Wilson St, New York City, NY 10001" +210123,27in FHD Monitor,1,149.99,06/29/19 17:20,"805 10th St, Seattle, WA 98101" +210124,USB-C Charging Cable,1,11.95,06/11/19 21:43,"315 14th St, Los Angeles, CA 90001" +210125,USB-C Charging Cable,1,11.95,06/30/19 13:47,"642 Lakeview St, Los Angeles, CA 90001" +210126,iPhone,1,700,06/12/19 17:44,"337 River St, Austin, TX 73301" +210126,Lightning Charging Cable,1,14.95,06/12/19 17:44,"337 River St, Austin, TX 73301" +210127,Apple Airpods Headphones,1,150,06/13/19 10:23,"333 9th St, San Francisco, CA 94016" +210128,Apple Airpods Headphones,1,150,06/02/19 21:42,"508 12th St, San Francisco, CA 94016" +210129,Lightning Charging Cable,1,14.95,06/18/19 01:00,"216 2nd St, Los Angeles, CA 90001" +210130,USB-C Charging Cable,1,11.95,06/28/19 12:22,"101 Adams St, Seattle, WA 98101" +210131,34in Ultrawide Monitor,1,379.99,06/11/19 16:45,"408 Highland St, San Francisco, CA 94016" +210132,Wired Headphones,1,11.99,06/27/19 14:40,"198 4th St, Dallas, TX 75001" +210133,Macbook Pro Laptop,1,1700,06/25/19 14:11,"489 Highland St, New York City, NY 10001" +210134,34in Ultrawide Monitor,1,379.99,06/08/19 12:17,"80 Lake St, Portland, ME 04101" +210135,Bose SoundSport Headphones,1,99.99,06/10/19 13:27,"5 Highland St, Los Angeles, CA 90001" +210136,AAA Batteries (4-pack),1,2.99,06/01/19 23:52,"307 Elm St, Los Angeles, CA 90001" +210137,Macbook Pro Laptop,1,1700,06/28/19 12:34,"109 Highland St, Boston, MA 02215" +210138,Lightning Charging Cable,1,14.95,06/21/19 18:40,"155 7th St, San Francisco, CA 94016" +210139,AAA Batteries (4-pack),1,2.99,06/30/19 22:40,"124 Church St, Los Angeles, CA 90001" +210140,Wired Headphones,1,11.99,06/30/19 19:58,"683 Elm St, San Francisco, CA 94016" +210141,Apple Airpods Headphones,1,150,06/24/19 19:32,"159 West St, Portland, OR 97035" +210142,USB-C Charging Cable,1,11.95,06/15/19 18:38,"453 2nd St, Los Angeles, CA 90001" +210143,USB-C Charging Cable,1,11.95,06/26/19 15:21,"506 South St, Atlanta, GA 30301" +210144,AA Batteries (4-pack),1,3.84,06/28/19 11:51,"288 Jackson St, Los Angeles, CA 90001" +210145,AAA Batteries (4-pack),1,2.99,06/15/19 14:46,"626 14th St, Los Angeles, CA 90001" +210146,USB-C Charging Cable,1,11.95,07/01/19 03:43,"275 Meadow St, Portland, OR 97035" +210147,AAA Batteries (4-pack),2,2.99,06/03/19 16:38,"764 Lake St, San Francisco, CA 94016" +210148,AAA Batteries (4-pack),1,2.99,06/15/19 16:58,"112 Hill St, Dallas, TX 75001" +210149,27in 4K Gaming Monitor,1,389.99,06/21/19 17:33,"673 7th St, New York City, NY 10001" +210150,Bose SoundSport Headphones,1,99.99,06/09/19 12:12,"160 Walnut St, San Francisco, CA 94016" +210151,USB-C Charging Cable,1,11.95,06/20/19 11:08,"441 Adams St, Dallas, TX 75001" +210152,Flatscreen TV,1,300,06/03/19 17:24,"275 4th St, Seattle, WA 98101" +210153,LG Dryer,1,600.0,06/18/19 23:21,"517 Center St, Boston, MA 02215" +210154,Wired Headphones,1,11.99,06/26/19 20:38,"652 6th St, Boston, MA 02215" +210155,27in 4K Gaming Monitor,1,389.99,06/14/19 13:55,"214 Walnut St, Boston, MA 02215" +210156,Lightning Charging Cable,1,14.95,06/12/19 13:32,"140 8th St, Austin, TX 73301" +210157,iPhone,1,700,06/12/19 12:58,"50 Lincoln St, Portland, OR 97035" +210158,Wired Headphones,1,11.99,06/25/19 11:01,"576 12th St, Los Angeles, CA 90001" +210159,20in Monitor,1,109.99,06/05/19 07:35,"505 Cherry St, New York City, NY 10001" +210160,AA Batteries (4-pack),1,3.84,06/21/19 01:02,"182 Elm St, Los Angeles, CA 90001" +210161,34in Ultrawide Monitor,1,379.99,06/03/19 12:41,"932 Highland St, Austin, TX 73301" +210162,Lightning Charging Cable,1,14.95,06/06/19 11:15,"720 Jefferson St, San Francisco, CA 94016" +210163,Lightning Charging Cable,1,14.95,06/08/19 11:46,"111 Park St, Dallas, TX 75001" +210164,27in 4K Gaming Monitor,1,389.99,06/15/19 21:19,"65 Chestnut St, San Francisco, CA 94016" +210165,Bose SoundSport Headphones,1,99.99,06/20/19 10:19,"615 Chestnut St, San Francisco, CA 94016" +210166,AA Batteries (4-pack),1,3.84,06/17/19 12:36,"207 Jackson St, New York City, NY 10001" +210167,20in Monitor,1,109.99,06/10/19 15:16,"345 11th St, Seattle, WA 98101" +210168,Lightning Charging Cable,1,14.95,06/26/19 11:45,"604 West St, Portland, ME 04101" +210169,Apple Airpods Headphones,1,150,06/28/19 20:50,"204 Meadow St, Boston, MA 02215" +210170,Lightning Charging Cable,1,14.95,06/19/19 21:28,"335 Cedar St, New York City, NY 10001" +210171,Apple Airpods Headphones,1,150,06/03/19 05:15,"287 Cedar St, Atlanta, GA 30301" +210172,Lightning Charging Cable,1,14.95,06/16/19 06:46,"593 Jefferson St, San Francisco, CA 94016" +210173,Apple Airpods Headphones,1,150,06/25/19 11:44,"622 11th St, Boston, MA 02215" +210174,AAA Batteries (4-pack),1,2.99,06/07/19 02:36,"127 Lake St, Dallas, TX 75001" +210175,Lightning Charging Cable,1,14.95,06/03/19 13:21,"983 Dogwood St, Austin, TX 73301" +210176,Wired Headphones,1,11.99,06/28/19 08:30,"226 Chestnut St, Austin, TX 73301" +210177,Bose SoundSport Headphones,1,99.99,06/23/19 16:54,"192 Center St, Los Angeles, CA 90001" +210178,AAA Batteries (4-pack),3,2.99,06/19/19 11:27,"396 West St, Los Angeles, CA 90001" +210179,AA Batteries (4-pack),2,3.84,06/10/19 13:43,"365 12th St, San Francisco, CA 94016" +210180,AA Batteries (4-pack),1,3.84,06/11/19 20:38,"922 Hickory St, Los Angeles, CA 90001" +210181,Apple Airpods Headphones,1,150,06/04/19 16:53,"713 5th St, New York City, NY 10001" +210182,AA Batteries (4-pack),1,3.84,06/10/19 00:19,"608 Lincoln St, Boston, MA 02215" +210183,ThinkPad Laptop,1,999.99,06/02/19 12:09,"74 5th St, Los Angeles, CA 90001" +210184,Bose SoundSport Headphones,1,99.99,06/06/19 09:35,"56 Maple St, Portland, ME 04101" +210185,Lightning Charging Cable,1,14.95,06/15/19 11:19,"957 Lake St, Dallas, TX 75001" +210186,AA Batteries (4-pack),1,3.84,06/18/19 00:14,"512 2nd St, Los Angeles, CA 90001" +210187,USB-C Charging Cable,1,11.95,06/13/19 10:45,"165 13th St, Boston, MA 02215" +210188,iPhone,1,700,06/19/19 19:36,"374 Hickory St, New York City, NY 10001" +210189,AA Batteries (4-pack),1,3.84,06/06/19 20:55,"572 1st St, Los Angeles, CA 90001" +210190,AA Batteries (4-pack),1,3.84,06/10/19 20:31,"21 Washington St, San Francisco, CA 94016" +210191,Macbook Pro Laptop,1,1700,06/07/19 00:02,"546 Wilson St, Dallas, TX 75001" +210192,USB-C Charging Cable,1,11.95,06/09/19 21:24,"180 Forest St, New York City, NY 10001" +210193,AA Batteries (4-pack),1,3.84,06/29/19 18:50,"835 Lake St, Los Angeles, CA 90001" +210194,AA Batteries (4-pack),1,3.84,06/02/19 19:17,"861 Chestnut St, San Francisco, CA 94016" +210195,AAA Batteries (4-pack),2,2.99,06/01/19 17:15,"594 Madison St, Atlanta, GA 30301" +210196,ThinkPad Laptop,1,999.99,06/02/19 11:24,"501 13th St, Portland, ME 04101" +210197,Lightning Charging Cable,1,14.95,06/09/19 04:12,"465 Willow St, Austin, TX 73301" +210198,27in FHD Monitor,1,149.99,06/08/19 09:49,"658 Lake St, Atlanta, GA 30301" +210199,20in Monitor,1,109.99,06/19/19 11:23,"498 10th St, Portland, ME 04101" +210200,USB-C Charging Cable,1,11.95,06/18/19 18:08,"748 Dogwood St, San Francisco, CA 94016" +210201,USB-C Charging Cable,1,11.95,06/24/19 15:28,"811 Chestnut St, Los Angeles, CA 90001" +210202,34in Ultrawide Monitor,1,379.99,06/28/19 20:36,"321 Spruce St, Boston, MA 02215" +210203,27in 4K Gaming Monitor,1,389.99,06/16/19 17:36,"53 4th St, New York City, NY 10001" +210204,Bose SoundSport Headphones,1,99.99,06/26/19 11:39,"465 Ridge St, Atlanta, GA 30301" +210205,Lightning Charging Cable,1,14.95,06/16/19 21:04,"33 14th St, Portland, OR 97035" +210206,Wired Headphones,1,11.99,06/01/19 09:18,"562 South St, New York City, NY 10001" +210207,Wired Headphones,1,11.99,06/03/19 19:35,"961 Dogwood St, New York City, NY 10001" +210208,AA Batteries (4-pack),1,3.84,06/05/19 01:51,"198 Ridge St, New York City, NY 10001" +210209,AAA Batteries (4-pack),1,2.99,06/09/19 06:20,"817 14th St, Boston, MA 02215" +210210,Flatscreen TV,1,300,06/03/19 19:20,"273 Lakeview St, Atlanta, GA 30301" +210211,AAA Batteries (4-pack),2,2.99,06/26/19 11:17,"310 Church St, Boston, MA 02215" +210212,Apple Airpods Headphones,1,150,06/11/19 22:46,"693 6th St, Atlanta, GA 30301" +210213,AAA Batteries (4-pack),3,2.99,06/23/19 16:34,"562 Cedar St, Los Angeles, CA 90001" +210214,Lightning Charging Cable,1,14.95,06/24/19 14:18,"282 Maple St, San Francisco, CA 94016" +210215,USB-C Charging Cable,1,11.95,06/21/19 03:32,"384 7th St, New York City, NY 10001" +210216,Apple Airpods Headphones,1,150,06/22/19 01:13,"7 4th St, Portland, OR 97035" +210217,AAA Batteries (4-pack),1,2.99,06/19/19 13:23,"463 Highland St, Los Angeles, CA 90001" +210218,AA Batteries (4-pack),1,3.84,06/24/19 13:25,"559 Ridge St, San Francisco, CA 94016" +210219,iPhone,1,700,06/07/19 10:25,"685 Highland St, San Francisco, CA 94016" +210220,ThinkPad Laptop,1,999.99,06/25/19 16:01,"952 11th St, Los Angeles, CA 90001" +210221,27in 4K Gaming Monitor,1,389.99,06/23/19 11:47,"173 4th St, New York City, NY 10001" +210222,USB-C Charging Cable,1,11.95,06/09/19 17:32,"513 Center St, Atlanta, GA 30301" +210223,27in 4K Gaming Monitor,1,389.99,06/14/19 07:08,"637 Hill St, Los Angeles, CA 90001" +210224,27in FHD Monitor,1,149.99,06/26/19 20:50,"441 14th St, New York City, NY 10001" +210225,USB-C Charging Cable,1,11.95,06/24/19 08:46,"458 West St, San Francisco, CA 94016" +210226,Bose SoundSport Headphones,1,99.99,06/06/19 14:36,"575 Lakeview St, Seattle, WA 98101" +210227,iPhone,1,700,06/03/19 12:55,"275 10th St, Portland, OR 97035" +210228,Wired Headphones,1,11.99,06/25/19 15:55,"463 14th St, San Francisco, CA 94016" +210229,Lightning Charging Cable,1,14.95,06/30/19 22:51,"58 Cherry St, Boston, MA 02215" +210230,AA Batteries (4-pack),1,3.84,06/12/19 19:37,"821 1st St, Austin, TX 73301" +210231,Wired Headphones,2,11.99,06/29/19 19:13,"998 Wilson St, San Francisco, CA 94016" +210232,iPhone,1,700,06/30/19 07:05,"232 Center St, Boston, MA 02215" +210233,Bose SoundSport Headphones,1,99.99,06/26/19 22:28,"819 8th St, San Francisco, CA 94016" +210234,Wired Headphones,1,11.99,06/29/19 11:32,"156 Washington St, San Francisco, CA 94016" +210235,USB-C Charging Cable,1,11.95,06/20/19 17:46,"299 Park St, Los Angeles, CA 90001" +210236,Bose SoundSport Headphones,1,99.99,06/16/19 22:21,"869 Highland St, Boston, MA 02215" +210237,USB-C Charging Cable,1,11.95,06/21/19 10:46,"58 Lincoln St, Boston, MA 02215" +210238,Wired Headphones,1,11.99,06/23/19 19:16,"601 West St, San Francisco, CA 94016" +210239,Lightning Charging Cable,1,14.95,06/21/19 14:00,"118 Cherry St, New York City, NY 10001" +210240,AAA Batteries (4-pack),1,2.99,06/10/19 11:41,"523 Jefferson St, San Francisco, CA 94016" +210241,AA Batteries (4-pack),1,3.84,06/12/19 13:59,"853 1st St, New York City, NY 10001" +210242,iPhone,1,700,06/17/19 12:32,"767 Adams St, Austin, TX 73301" +210243,34in Ultrawide Monitor,1,379.99,06/24/19 23:50,"765 Chestnut St, San Francisco, CA 94016" +210244,34in Ultrawide Monitor,1,379.99,06/05/19 21:06,"278 Lincoln St, New York City, NY 10001" +210245,iPhone,1,700,06/28/19 01:17,"239 Center St, Los Angeles, CA 90001" +210246,Bose SoundSport Headphones,1,99.99,06/03/19 16:17,"61 North St, Seattle, WA 98101" +210247,Wired Headphones,1,11.99,06/18/19 07:24,"630 Adams St, Boston, MA 02215" +210248,34in Ultrawide Monitor,1,379.99,06/08/19 17:38,"324 10th St, Los Angeles, CA 90001" +210249,Wired Headphones,1,11.99,06/08/19 09:22,"737 West St, Boston, MA 02215" +210250,USB-C Charging Cable,1,11.95,06/15/19 13:30,"924 5th St, Atlanta, GA 30301" +210251,34in Ultrawide Monitor,1,379.99,06/21/19 18:56,"728 South St, Boston, MA 02215" +210252,AAA Batteries (4-pack),1,2.99,06/30/19 13:43,"719 Ridge St, San Francisco, CA 94016" +210253,Wired Headphones,1,11.99,06/13/19 21:48,"321 Meadow St, Los Angeles, CA 90001" +210254,USB-C Charging Cable,2,11.95,06/28/19 15:08,"13 9th St, San Francisco, CA 94016" +210255,Flatscreen TV,1,300,06/18/19 12:27,"773 8th St, Dallas, TX 75001" +210256,AAA Batteries (4-pack),2,2.99,06/01/19 15:31,"303 Church St, New York City, NY 10001" +210257,AA Batteries (4-pack),1,3.84,06/12/19 22:44,"57 Madison St, Austin, TX 73301" +210258,27in 4K Gaming Monitor,1,389.99,06/08/19 17:31,"965 Madison St, San Francisco, CA 94016" +210259,Google Phone,1,600,06/26/19 19:12,"806 Maple St, Los Angeles, CA 90001" +210260,AA Batteries (4-pack),1,3.84,06/22/19 09:56,"511 14th St, Atlanta, GA 30301" +210261,AA Batteries (4-pack),1,3.84,06/08/19 21:07,"266 Cherry St, Austin, TX 73301" +210262,Bose SoundSport Headphones,1,99.99,06/11/19 23:08,"95 River St, Atlanta, GA 30301" +210263,Bose SoundSport Headphones,1,99.99,06/21/19 14:12,"501 Hickory St, Los Angeles, CA 90001" +210264,USB-C Charging Cable,2,11.95,06/02/19 22:19,"332 Lincoln St, San Francisco, CA 94016" +210265,27in 4K Gaming Monitor,1,389.99,06/25/19 17:21,"523 Maple St, Atlanta, GA 30301" +210266,Google Phone,1,600,06/11/19 11:28,"623 Pine St, Seattle, WA 98101" +210267,USB-C Charging Cable,1,11.95,06/23/19 20:17,"765 Spruce St, San Francisco, CA 94016" +210268,27in 4K Gaming Monitor,1,389.99,06/02/19 14:54,"595 Willow St, Dallas, TX 75001" +210268,Flatscreen TV,1,300,06/02/19 14:54,"595 Willow St, Dallas, TX 75001" +210269,AAA Batteries (4-pack),1,2.99,06/13/19 21:24,"530 Cherry St, Boston, MA 02215" +210270,Wired Headphones,1,11.99,06/21/19 17:15,"920 Park St, Seattle, WA 98101" +210271,Wired Headphones,1,11.99,06/10/19 17:48,"631 Lake St, San Francisco, CA 94016" +210272,Lightning Charging Cable,1,14.95,06/15/19 18:14,"381 Church St, San Francisco, CA 94016" +210273,ThinkPad Laptop,1,999.99,06/20/19 00:57,"275 Cedar St, Austin, TX 73301" +210274,Apple Airpods Headphones,1,150,06/09/19 21:58,"657 Willow St, Portland, OR 97035" +210275,AAA Batteries (4-pack),1,2.99,06/03/19 16:07,"432 Adams St, Dallas, TX 75001" +210276,27in FHD Monitor,1,149.99,06/20/19 23:39,"802 Sunset St, Atlanta, GA 30301" +210277,Macbook Pro Laptop,1,1700,06/18/19 19:45,"820 13th St, New York City, NY 10001" +210278,34in Ultrawide Monitor,1,379.99,06/03/19 22:40,"196 Chestnut St, Portland, OR 97035" +210278,USB-C Charging Cable,1,11.95,06/03/19 22:40,"196 Chestnut St, Portland, OR 97035" +210279,Bose SoundSport Headphones,1,99.99,06/18/19 09:33,"636 Elm St, New York City, NY 10001" +210280,AAA Batteries (4-pack),1,2.99,06/11/19 16:33,"730 Cedar St, Los Angeles, CA 90001" +210281,USB-C Charging Cable,1,11.95,06/29/19 07:54,"678 Adams St, New York City, NY 10001" +210282,Apple Airpods Headphones,1,150,06/14/19 12:19,"633 Sunset St, Portland, OR 97035" +210283,iPhone,1,700,06/03/19 17:40,"775 Spruce St, New York City, NY 10001" +210284,AAA Batteries (4-pack),1,2.99,06/05/19 22:36,"292 Meadow St, New York City, NY 10001" +210285,Wired Headphones,1,11.99,06/25/19 20:05,"283 Madison St, San Francisco, CA 94016" +210286,Google Phone,1,600,06/25/19 01:02,"417 North St, San Francisco, CA 94016" +210287,AA Batteries (4-pack),1,3.84,06/20/19 16:36,"108 Forest St, Los Angeles, CA 90001" +210288,Lightning Charging Cable,1,14.95,06/24/19 20:14,"967 Ridge St, Portland, OR 97035" +210289,AA Batteries (4-pack),1,3.84,06/24/19 20:02,"992 10th St, Portland, ME 04101" +210290,Lightning Charging Cable,1,14.95,06/10/19 10:33,"259 Jefferson St, San Francisco, CA 94016" +210291,AA Batteries (4-pack),1,3.84,06/22/19 08:15,"9 Sunset St, Boston, MA 02215" +210292,iPhone,1,700,06/05/19 21:31,"723 Jefferson St, Los Angeles, CA 90001" +210293,Bose SoundSport Headphones,1,99.99,06/21/19 13:52,"38 Maple St, San Francisco, CA 94016" +210294,Bose SoundSport Headphones,1,99.99,06/03/19 12:32,"458 Willow St, Los Angeles, CA 90001" +210295,Lightning Charging Cable,1,14.95,06/12/19 15:17,"994 West St, Boston, MA 02215" +210296,Apple Airpods Headphones,1,150,06/09/19 00:53,"422 West St, San Francisco, CA 94016" +210297,27in 4K Gaming Monitor,1,389.99,07/01/19 01:46,"625 River St, New York City, NY 10001" +210298,AAA Batteries (4-pack),1,2.99,06/09/19 12:00,"973 North St, Atlanta, GA 30301" +210299,Bose SoundSport Headphones,1,99.99,06/07/19 23:05,"371 South St, Los Angeles, CA 90001" +210300,USB-C Charging Cable,1,11.95,06/01/19 14:51,"500 8th St, Los Angeles, CA 90001" +210301,27in FHD Monitor,1,149.99,06/02/19 14:21,"153 Johnson St, Boston, MA 02215" +210302,USB-C Charging Cable,1,11.95,06/14/19 12:47,"344 9th St, San Francisco, CA 94016" +210303,Lightning Charging Cable,1,14.95,06/14/19 08:20,"589 Willow St, San Francisco, CA 94016" +210304,Lightning Charging Cable,1,14.95,06/08/19 13:49,"400 Center St, San Francisco, CA 94016" +210305,AAA Batteries (4-pack),1,2.99,06/28/19 21:12,"545 1st St, Los Angeles, CA 90001" +210306,Wired Headphones,1,11.99,06/26/19 10:17,"271 Center St, Portland, OR 97035" +210307,ThinkPad Laptop,1,999.99,06/27/19 17:35,"914 14th St, San Francisco, CA 94016" +210308,Apple Airpods Headphones,1,150,06/20/19 12:00,"334 Adams St, San Francisco, CA 94016" +210309,Lightning Charging Cable,1,14.95,06/17/19 19:03,"681 Elm St, Portland, OR 97035" +210310,Wired Headphones,1,11.99,06/26/19 21:18,"305 Johnson St, Portland, OR 97035" +210311,27in 4K Gaming Monitor,1,389.99,06/05/19 21:45,"945 Center St, Seattle, WA 98101" +210312,Apple Airpods Headphones,1,150,06/10/19 18:57,"990 Sunset St, San Francisco, CA 94016" +210313,Macbook Pro Laptop,1,1700,06/01/19 13:23,"6 Center St, Los Angeles, CA 90001" +210314,AA Batteries (4-pack),1,3.84,06/18/19 14:17,"589 Hickory St, Los Angeles, CA 90001" +210315,Flatscreen TV,1,300,06/08/19 10:17,"436 Wilson St, Seattle, WA 98101" +210316,USB-C Charging Cable,1,11.95,06/21/19 19:04,"664 6th St, San Francisco, CA 94016" +210317,Macbook Pro Laptop,1,1700,06/05/19 17:58,"181 1st St, Atlanta, GA 30301" +210318,USB-C Charging Cable,1,11.95,06/15/19 20:56,"891 Maple St, San Francisco, CA 94016" +210319,Wired Headphones,1,11.99,06/24/19 12:14,"513 14th St, San Francisco, CA 94016" +210320,Lightning Charging Cable,1,14.95,06/11/19 15:32,"864 Jackson St, Atlanta, GA 30301" +210321,iPhone,1,700,06/23/19 12:36,"951 Sunset St, Portland, OR 97035" +210322,ThinkPad Laptop,1,999.99,06/26/19 23:37,"632 Hickory St, Los Angeles, CA 90001" +210323,Wired Headphones,1,11.99,06/04/19 08:52,"650 14th St, Seattle, WA 98101" +210324,Apple Airpods Headphones,1,150,06/19/19 11:23,"473 Chestnut St, New York City, NY 10001" +210325,Apple Airpods Headphones,1,150,06/13/19 21:04,"156 Meadow St, New York City, NY 10001" +210326,Lightning Charging Cable,1,14.95,06/01/19 16:47,"184 Lakeview St, Dallas, TX 75001" +210327,Wired Headphones,1,11.99,06/14/19 22:50,"310 Elm St, New York City, NY 10001" +210328,Flatscreen TV,1,300,06/02/19 01:35,"99 Cedar St, San Francisco, CA 94016" +210329,27in 4K Gaming Monitor,1,389.99,06/05/19 03:54,"319 Highland St, Boston, MA 02215" +210330,34in Ultrawide Monitor,1,379.99,06/08/19 12:46,"993 Johnson St, San Francisco, CA 94016" +210331,Apple Airpods Headphones,1,150,06/02/19 19:58,"331 Hickory St, Austin, TX 73301" +210332,27in 4K Gaming Monitor,1,389.99,06/16/19 09:59,"797 Washington St, San Francisco, CA 94016" +210333,Flatscreen TV,1,300,06/06/19 14:08,"793 6th St, New York City, NY 10001" +210334,Bose SoundSport Headphones,1,99.99,06/15/19 19:35,"487 12th St, Portland, ME 04101" +210335,27in FHD Monitor,1,149.99,06/06/19 09:47,"605 North St, Portland, OR 97035" +210336,Wired Headphones,1,11.99,06/24/19 21:19,"864 Chestnut St, San Francisco, CA 94016" +210337,iPhone,1,700,06/15/19 20:49,"550 West St, Atlanta, GA 30301" +210338,Lightning Charging Cable,1,14.95,06/03/19 15:29,"535 Lake St, San Francisco, CA 94016" +210339,Apple Airpods Headphones,1,150,06/27/19 11:13,"180 West St, San Francisco, CA 94016" +210340,AAA Batteries (4-pack),1,2.99,06/03/19 21:20,"710 River St, San Francisco, CA 94016" +210341,Macbook Pro Laptop,1,1700,06/24/19 22:27,"282 River St, Austin, TX 73301" +210342,Apple Airpods Headphones,1,150,06/26/19 21:09,"997 Madison St, Seattle, WA 98101" +210343,ThinkPad Laptop,1,999.99,06/13/19 18:28,"235 9th St, Portland, ME 04101" +210344,Apple Airpods Headphones,1,150,06/12/19 21:51,"508 Highland St, Atlanta, GA 30301" +210345,USB-C Charging Cable,1,11.95,06/25/19 21:04,"275 Ridge St, Atlanta, GA 30301" +210346,iPhone,1,700,06/03/19 11:58,"611 Ridge St, San Francisco, CA 94016" +210347,Apple Airpods Headphones,1,150,06/25/19 14:18,"54 Johnson St, Dallas, TX 75001" +210348,iPhone,1,700,06/09/19 12:33,"246 Pine St, San Francisco, CA 94016" +210348,Wired Headphones,1,11.99,06/09/19 12:33,"246 Pine St, San Francisco, CA 94016" +210348,iPhone,1,700,06/09/19 12:33,"246 Pine St, San Francisco, CA 94016" +210349,USB-C Charging Cable,2,11.95,06/28/19 21:07,"676 Washington St, Boston, MA 02215" +210350,AA Batteries (4-pack),2,3.84,06/05/19 10:34,"16 North St, Los Angeles, CA 90001" +210351,Wired Headphones,1,11.99,06/19/19 17:31,"843 5th St, Seattle, WA 98101" +210352,27in FHD Monitor,1,149.99,06/11/19 18:12,"53 8th St, San Francisco, CA 94016" +210353,27in FHD Monitor,1,149.99,06/17/19 15:18,"407 Lincoln St, Seattle, WA 98101" +210354,AAA Batteries (4-pack),1,2.99,06/30/19 13:12,"641 2nd St, New York City, NY 10001" +210355,USB-C Charging Cable,1,11.95,06/02/19 19:47,"720 9th St, Dallas, TX 75001" +210356,AAA Batteries (4-pack),1,2.99,06/29/19 12:30,"888 Jackson St, Los Angeles, CA 90001" +210357,AA Batteries (4-pack),1,3.84,06/11/19 13:20,"219 Johnson St, New York City, NY 10001" +,,,,, +210358,AAA Batteries (4-pack),1,2.99,06/17/19 09:05,"918 Meadow St, Dallas, TX 75001" +210359,Bose SoundSport Headphones,1,99.99,06/01/19 07:51,"170 Jackson St, Seattle, WA 98101" +210360,Wired Headphones,1,11.99,06/01/19 12:52,"508 2nd St, Seattle, WA 98101" +210361,USB-C Charging Cable,1,11.95,06/19/19 02:04,"614 13th St, San Francisco, CA 94016" +210362,Wired Headphones,1,11.99,06/04/19 12:56,"525 Hickory St, Atlanta, GA 30301" +210363,Lightning Charging Cable,1,14.95,06/28/19 20:57,"808 5th St, San Francisco, CA 94016" +210364,Apple Airpods Headphones,1,150,06/21/19 18:24,"182 Lincoln St, Boston, MA 02215" +210365,Apple Airpods Headphones,1,150,06/15/19 21:04,"22 Forest St, Atlanta, GA 30301" +210366,Bose SoundSport Headphones,1,99.99,06/26/19 19:04,"699 Madison St, Los Angeles, CA 90001" +210367,Lightning Charging Cable,1,14.95,06/16/19 18:12,"332 Adams St, Atlanta, GA 30301" +210368,AAA Batteries (4-pack),2,2.99,06/02/19 19:34,"505 Cherry St, New York City, NY 10001" +210369,Flatscreen TV,1,300,06/21/19 11:41,"780 Meadow St, San Francisco, CA 94016" +210370,AAA Batteries (4-pack),2,2.99,06/19/19 00:00,"238 River St, Atlanta, GA 30301" +210371,Lightning Charging Cable,1,14.95,06/07/19 15:18,"471 9th St, Los Angeles, CA 90001" +210372,20in Monitor,1,109.99,06/20/19 08:19,"184 1st St, New York City, NY 10001" +210373,ThinkPad Laptop,1,999.99,06/27/19 12:10,"212 6th St, Portland, OR 97035" +210374,Vareebadd Phone,1,400,06/03/19 22:54,"981 Meadow St, Atlanta, GA 30301" +210375,AAA Batteries (4-pack),3,2.99,06/07/19 14:56,"500 Chestnut St, New York City, NY 10001" +210375,AAA Batteries (4-pack),1,2.99,06/07/19 14:56,"500 Chestnut St, New York City, NY 10001" +210376,34in Ultrawide Monitor,1,379.99,06/12/19 12:16,"629 11th St, Seattle, WA 98101" +210377,AAA Batteries (4-pack),3,2.99,06/06/19 12:54,"27 5th St, San Francisco, CA 94016" +210378,Google Phone,1,600,06/05/19 21:54,"629 5th St, Boston, MA 02215" +210379,Apple Airpods Headphones,1,150,06/11/19 15:59,"745 1st St, Boston, MA 02215" +210380,Macbook Pro Laptop,1,1700,06/04/19 16:58,"195 Highland St, Dallas, TX 75001" +210381,Lightning Charging Cable,1,14.95,06/13/19 14:06,"736 Chestnut St, San Francisco, CA 94016" +210382,AAA Batteries (4-pack),1,2.99,06/20/19 11:19,"844 14th St, New York City, NY 10001" +210383,Bose SoundSport Headphones,1,99.99,06/14/19 20:38,"70 Chestnut St, Portland, OR 97035" +210384,Lightning Charging Cable,1,14.95,06/11/19 11:59,"11 11th St, Austin, TX 73301" +210385,AAA Batteries (4-pack),3,2.99,06/20/19 00:08,"970 Jackson St, Portland, OR 97035" +210386,AA Batteries (4-pack),1,3.84,06/08/19 20:43,"383 North St, San Francisco, CA 94016" +210387,20in Monitor,1,109.99,06/01/19 19:24,"566 14th St, San Francisco, CA 94016" +210388,USB-C Charging Cable,1,11.95,06/10/19 20:51,"978 Jackson St, Portland, OR 97035" +210389,Macbook Pro Laptop,1,1700,06/28/19 13:35,"90 11th St, New York City, NY 10001" +210390,USB-C Charging Cable,2,11.95,06/15/19 18:25,"208 Highland St, New York City, NY 10001" +210391,LG Washing Machine,1,600.0,06/16/19 18:55,"126 10th St, New York City, NY 10001" +210392,USB-C Charging Cable,1,11.95,06/12/19 01:58,"898 2nd St, Dallas, TX 75001" +210393,Wired Headphones,1,11.99,06/28/19 18:56,"22 Meadow St, San Francisco, CA 94016" +210394,AA Batteries (4-pack),1,3.84,06/28/19 08:08,"95 Washington St, San Francisco, CA 94016" +210395,USB-C Charging Cable,1,11.95,06/18/19 20:36,"826 Willow St, Los Angeles, CA 90001" +210396,AA Batteries (4-pack),1,3.84,06/21/19 22:06,"134 Ridge St, Los Angeles, CA 90001" +210397,Wired Headphones,1,11.99,06/19/19 09:03,"376 Center St, Los Angeles, CA 90001" +210398,Lightning Charging Cable,1,14.95,06/21/19 14:23,"831 Elm St, New York City, NY 10001" +210399,iPhone,1,700,06/28/19 22:31,"980 Spruce St, Boston, MA 02215" +210400,34in Ultrawide Monitor,1,379.99,06/02/19 08:16,"639 Spruce St, Los Angeles, CA 90001" +210401,AA Batteries (4-pack),1,3.84,06/04/19 15:29,"113 Chestnut St, San Francisco, CA 94016" +210402,AAA Batteries (4-pack),4,2.99,06/29/19 17:23,"413 Ridge St, New York City, NY 10001" +210403,AAA Batteries (4-pack),1,2.99,06/15/19 17:10,"941 River St, San Francisco, CA 94016" +210404,27in 4K Gaming Monitor,1,389.99,06/16/19 15:39,"845 Hill St, Portland, OR 97035" +210405,Lightning Charging Cable,1,14.95,06/25/19 07:23,"958 Lincoln St, San Francisco, CA 94016" +210406,Flatscreen TV,1,300,06/22/19 20:57,"969 5th St, New York City, NY 10001" +210407,Bose SoundSport Headphones,1,99.99,06/13/19 19:59,"501 12th St, Portland, OR 97035" +210408,Bose SoundSport Headphones,1,99.99,06/30/19 16:28,"120 Elm St, Los Angeles, CA 90001" +210409,Wired Headphones,1,11.99,06/27/19 16:30,"245 Washington St, Boston, MA 02215" +210410,Google Phone,1,600,06/10/19 08:59,"183 1st St, Los Angeles, CA 90001" +210411,Bose SoundSport Headphones,1,99.99,06/11/19 12:15,"630 2nd St, San Francisco, CA 94016" +210412,USB-C Charging Cable,1,11.95,06/06/19 16:44,"232 11th St, San Francisco, CA 94016" +210413,Macbook Pro Laptop,1,1700,06/14/19 19:48,"916 Cherry St, Los Angeles, CA 90001" +210414,27in FHD Monitor,1,149.99,06/13/19 14:25,"284 5th St, New York City, NY 10001" +210415,AAA Batteries (4-pack),2,2.99,06/11/19 19:10,"415 Lincoln St, Portland, OR 97035" +210416,Lightning Charging Cable,1,14.95,06/04/19 17:28,"671 Main St, San Francisco, CA 94016" +210417,AAA Batteries (4-pack),1,2.99,06/24/19 09:11,"639 Hill St, Boston, MA 02215" +210418,Macbook Pro Laptop,1,1700,06/11/19 14:21,"727 Center St, New York City, NY 10001" +210419,Apple Airpods Headphones,1,150,06/22/19 14:10,"135 2nd St, Boston, MA 02215" +210420,USB-C Charging Cable,1,11.95,06/18/19 21:44,"691 River St, Los Angeles, CA 90001" +210421,Lightning Charging Cable,1,14.95,06/09/19 11:13,"39 River St, San Francisco, CA 94016" +210422,27in FHD Monitor,1,149.99,06/17/19 20:12,"387 Johnson St, Los Angeles, CA 90001" +210423,Lightning Charging Cable,1,14.95,06/30/19 23:59,"784 Hickory St, San Francisco, CA 94016" +210424,Lightning Charging Cable,1,14.95,06/08/19 22:41,"840 11th St, New York City, NY 10001" +210425,ThinkPad Laptop,1,999.99,06/26/19 15:30,"105 Chestnut St, Los Angeles, CA 90001" +210426,Lightning Charging Cable,1,14.95,06/28/19 18:00,"21 Adams St, San Francisco, CA 94016" +210427,USB-C Charging Cable,1,11.95,06/06/19 10:54,"13 Lincoln St, Seattle, WA 98101" +210428,34in Ultrawide Monitor,1,379.99,06/29/19 19:06,"7 South St, New York City, NY 10001" +210429,AAA Batteries (4-pack),1,2.99,06/14/19 12:25,"700 Washington St, San Francisco, CA 94016" +210430,iPhone,1,700,06/24/19 19:20,"588 Meadow St, Austin, TX 73301" +210431,AA Batteries (4-pack),1,3.84,06/03/19 02:17,"138 Adams St, Dallas, TX 75001" +210432,USB-C Charging Cable,1,11.95,06/25/19 19:13,"413 Ridge St, Portland, OR 97035" +210433,LG Washing Machine,1,600.0,06/02/19 15:03,"705 Elm St, Atlanta, GA 30301" +210434,Flatscreen TV,1,300,06/11/19 08:55,"114 South St, Los Angeles, CA 90001" +210435,AAA Batteries (4-pack),2,2.99,06/13/19 11:42,"738 Madison St, Los Angeles, CA 90001" +210436,Apple Airpods Headphones,1,150,06/27/19 18:47,"899 Jackson St, San Francisco, CA 94016" +210437,AAA Batteries (4-pack),1,2.99,06/27/19 17:46,"265 5th St, San Francisco, CA 94016" +210438,USB-C Charging Cable,1,11.95,06/08/19 14:55,"735 Lake St, San Francisco, CA 94016" +210439,27in FHD Monitor,1,149.99,06/25/19 16:41,"370 Adams St, San Francisco, CA 94016" +210440,AAA Batteries (4-pack),3,2.99,06/15/19 21:22,"3 12th St, Boston, MA 02215" +210441,USB-C Charging Cable,1,11.95,06/16/19 00:54,"812 14th St, Dallas, TX 75001" +210442,Apple Airpods Headphones,1,150,06/12/19 17:57,"503 Church St, Seattle, WA 98101" +210443,Wired Headphones,1,11.99,06/07/19 14:40,"975 Wilson St, Los Angeles, CA 90001" +210444,USB-C Charging Cable,1,11.95,06/08/19 21:00,"849 Ridge St, Boston, MA 02215" +210445,Apple Airpods Headphones,1,150,06/08/19 17:59,"240 1st St, Los Angeles, CA 90001" +210446,Lightning Charging Cable,1,14.95,06/10/19 12:30,"631 Walnut St, Austin, TX 73301" +210447,Wired Headphones,1,11.99,06/25/19 11:43,"385 10th St, Dallas, TX 75001" +210448,AAA Batteries (4-pack),3,2.99,06/08/19 03:16,"458 11th St, Seattle, WA 98101" +210449,Wired Headphones,1,11.99,06/16/19 08:52,"426 Pine St, San Francisco, CA 94016" +210450,Apple Airpods Headphones,1,150,06/11/19 15:54,"497 Maple St, Dallas, TX 75001" +210451,27in 4K Gaming Monitor,1,389.99,06/10/19 10:44,"652 6th St, New York City, NY 10001" +210452,AA Batteries (4-pack),1,3.84,06/20/19 10:43,"897 Wilson St, New York City, NY 10001" +210453,Bose SoundSport Headphones,1,99.99,06/01/19 18:30,"971 6th St, San Francisco, CA 94016" +210454,AAA Batteries (4-pack),3,2.99,06/29/19 14:26,"351 Ridge St, Boston, MA 02215" +210455,AA Batteries (4-pack),1,3.84,06/28/19 15:18,"533 Hickory St, Boston, MA 02215" +210456,USB-C Charging Cable,1,11.95,06/30/19 18:43,"192 6th St, Los Angeles, CA 90001" +210457,Apple Airpods Headphones,1,150,06/08/19 09:34,"814 Wilson St, San Francisco, CA 94016" +210458,USB-C Charging Cable,1,11.95,06/12/19 22:50,"216 1st St, Seattle, WA 98101" +210459,AA Batteries (4-pack),1,3.84,06/16/19 21:05,"122 Lake St, Los Angeles, CA 90001" +210460,iPhone,1,700,06/03/19 19:49,"669 12th St, Los Angeles, CA 90001" +210461,Wired Headphones,1,11.99,06/27/19 12:57,"931 Lincoln St, New York City, NY 10001" +210462,AAA Batteries (4-pack),1,2.99,06/19/19 07:16,"589 Lincoln St, Los Angeles, CA 90001" +210463,ThinkPad Laptop,1,999.99,06/17/19 18:06,"653 10th St, San Francisco, CA 94016" +210464,AA Batteries (4-pack),1,3.84,06/22/19 17:47,"310 Walnut St, Atlanta, GA 30301" +210465,34in Ultrawide Monitor,1,379.99,06/12/19 09:49,"794 Lincoln St, Boston, MA 02215" +210466,Macbook Pro Laptop,1,1700,06/14/19 21:10,"525 11th St, San Francisco, CA 94016" +210467,USB-C Charging Cable,1,11.95,06/07/19 22:00,"497 13th St, Austin, TX 73301" +210468,Wired Headphones,1,11.99,06/27/19 15:25,"229 Chestnut St, New York City, NY 10001" +210469,USB-C Charging Cable,1,11.95,06/03/19 10:58,"198 Church St, Portland, OR 97035" +210470,USB-C Charging Cable,1,11.95,06/15/19 13:04,"346 Main St, Atlanta, GA 30301" +210471,AA Batteries (4-pack),1,3.84,06/12/19 22:10,"437 Willow St, Los Angeles, CA 90001" +210472,27in FHD Monitor,1,149.99,06/19/19 23:18,"295 Maple St, Boston, MA 02215" +210473,Macbook Pro Laptop,1,1700,06/01/19 05:32,"475 Wilson St, San Francisco, CA 94016" +210474,Apple Airpods Headphones,1,150,06/20/19 00:50,"965 12th St, New York City, NY 10001" +210475,Apple Airpods Headphones,1,150,06/21/19 18:39,"55 7th St, San Francisco, CA 94016" +210476,AAA Batteries (4-pack),1,2.99,06/19/19 14:07,"281 River St, Los Angeles, CA 90001" +210477,Lightning Charging Cable,1,14.95,06/26/19 12:50,"231 Walnut St, San Francisco, CA 94016" +210478,Bose SoundSport Headphones,1,99.99,06/19/19 21:28,"215 Jefferson St, Boston, MA 02215" +210479,LG Washing Machine,1,600.0,06/08/19 07:44,"4 Hill St, Los Angeles, CA 90001" +210480,AA Batteries (4-pack),1,3.84,06/19/19 08:24,"319 13th St, Atlanta, GA 30301" +210481,Lightning Charging Cable,1,14.95,06/22/19 22:37,"820 5th St, New York City, NY 10001" +210482,Lightning Charging Cable,1,14.95,06/04/19 18:55,"424 Main St, Boston, MA 02215" +210483,34in Ultrawide Monitor,1,379.99,06/09/19 15:10,"417 Lakeview St, Atlanta, GA 30301" +210484,AAA Batteries (4-pack),1,2.99,06/21/19 16:11,"919 12th St, Dallas, TX 75001" +210485,27in 4K Gaming Monitor,1,389.99,06/08/19 01:17,"62 Cedar St, Atlanta, GA 30301" +210486,Wired Headphones,1,11.99,06/02/19 10:57,"473 14th St, San Francisco, CA 94016" +210487,Apple Airpods Headphones,1,150,06/01/19 10:28,"574 Wilson St, San Francisco, CA 94016" +210488,Bose SoundSport Headphones,1,99.99,06/02/19 11:02,"260 Pine St, Boston, MA 02215" +210489,AAA Batteries (4-pack),3,2.99,06/22/19 15:53,"885 Madison St, Boston, MA 02215" +210490,Macbook Pro Laptop,1,1700,06/19/19 20:03,"969 Spruce St, San Francisco, CA 94016" +210491,Lightning Charging Cable,1,14.95,06/24/19 07:35,"690 5th St, Los Angeles, CA 90001" +210492,34in Ultrawide Monitor,1,379.99,06/12/19 07:55,"897 Lincoln St, Los Angeles, CA 90001" +210493,Wired Headphones,1,11.99,07/01/19 01:14,"706 Cedar St, New York City, NY 10001" +210494,USB-C Charging Cable,1,11.95,06/06/19 23:07,"920 Madison St, San Francisco, CA 94016" +210495,Lightning Charging Cable,1,14.95,06/01/19 19:41,"799 Sunset St, Boston, MA 02215" +210496,Lightning Charging Cable,1,14.95,06/09/19 07:57,"96 Hickory St, Boston, MA 02215" +210497,Wired Headphones,1,11.99,06/01/19 21:18,"542 Cedar St, Los Angeles, CA 90001" +210498,27in 4K Gaming Monitor,1,389.99,06/25/19 17:18,"851 6th St, Dallas, TX 75001" +210499,Wired Headphones,1,11.99,06/30/19 18:37,"209 Johnson St, Portland, OR 97035" +210500,Apple Airpods Headphones,1,150,06/23/19 11:19,"695 6th St, San Francisco, CA 94016" +210501,27in 4K Gaming Monitor,1,389.99,06/21/19 18:53,"316 Lakeview St, New York City, NY 10001" +210502,Bose SoundSport Headphones,1,99.99,06/04/19 22:04,"981 Pine St, Atlanta, GA 30301" +210503,USB-C Charging Cable,1,11.95,06/27/19 17:51,"188 Washington St, Boston, MA 02215" +210504,27in FHD Monitor,1,149.99,06/11/19 15:22,"257 Sunset St, San Francisco, CA 94016" +210505,AA Batteries (4-pack),1,3.84,06/02/19 22:34,"718 Cedar St, Los Angeles, CA 90001" +210506,Wired Headphones,1,11.99,06/18/19 11:08,"262 Elm St, Austin, TX 73301" +210507,Bose SoundSport Headphones,1,99.99,06/07/19 10:04,"966 Park St, Seattle, WA 98101" +210508,Wired Headphones,3,11.99,06/09/19 04:32,"99 Highland St, Boston, MA 02215" +210509,Apple Airpods Headphones,1,150,06/13/19 17:00,"139 Cherry St, San Francisco, CA 94016" +210510,27in FHD Monitor,1,149.99,06/15/19 10:44,"918 Cherry St, Los Angeles, CA 90001" +210511,AAA Batteries (4-pack),1,2.99,06/28/19 17:51,"986 North St, Los Angeles, CA 90001" +210512,USB-C Charging Cable,1,11.95,06/14/19 19:10,"496 Pine St, Atlanta, GA 30301" +210513,Apple Airpods Headphones,1,150,06/20/19 11:26,"642 Lincoln St, San Francisco, CA 94016" +210514,Macbook Pro Laptop,1,1700,06/27/19 12:53,"421 9th St, Seattle, WA 98101" +210515,USB-C Charging Cable,2,11.95,06/10/19 08:22,"873 Lincoln St, Los Angeles, CA 90001" +210516,Flatscreen TV,1,300,06/10/19 10:24,"271 9th St, Seattle, WA 98101" +210517,AA Batteries (4-pack),2,3.84,06/20/19 09:25,"501 Jefferson St, Los Angeles, CA 90001" +210518,Apple Airpods Headphones,1,150,06/04/19 13:45,"315 Willow St, Seattle, WA 98101" +210519,Lightning Charging Cable,1,14.95,06/09/19 14:13,"33 12th St, San Francisco, CA 94016" +210520,AAA Batteries (4-pack),2,2.99,06/27/19 10:22,"474 Hickory St, New York City, NY 10001" +210521,Lightning Charging Cable,1,14.95,06/30/19 14:47,"133 Highland St, Los Angeles, CA 90001" +210522,27in 4K Gaming Monitor,1,389.99,06/05/19 12:48,"628 Cedar St, San Francisco, CA 94016" +210523,Lightning Charging Cable,1,14.95,06/16/19 12:04,"337 Main St, New York City, NY 10001" +210524,Bose SoundSport Headphones,1,99.99,06/01/19 22:29,"646 Forest St, Seattle, WA 98101" +210525,27in FHD Monitor,1,149.99,06/21/19 09:39,"5 Maple St, San Francisco, CA 94016" +210526,iPhone,1,700,06/13/19 15:28,"69 5th St, San Francisco, CA 94016" +210527,Lightning Charging Cable,2,14.95,06/05/19 10:03,"676 Walnut St, Los Angeles, CA 90001" +210528,AAA Batteries (4-pack),4,2.99,06/05/19 09:38,"10 11th St, Los Angeles, CA 90001" +210529,Bose SoundSport Headphones,1,99.99,06/08/19 07:35,"395 South St, Boston, MA 02215" +210530,Apple Airpods Headphones,1,150,06/03/19 13:28,"772 Maple St, New York City, NY 10001" +210531,Apple Airpods Headphones,1,150,06/06/19 09:43,"80 Lakeview St, San Francisco, CA 94016" +210532,Wired Headphones,1,11.99,06/21/19 09:49,"468 Lake St, San Francisco, CA 94016" +210533,Wired Headphones,1,11.99,06/12/19 14:24,"623 Maple St, Austin, TX 73301" +210534,USB-C Charging Cable,1,11.95,06/09/19 16:15,"825 8th St, San Francisco, CA 94016" +210535,Apple Airpods Headphones,1,150,06/27/19 09:52,"88 Hickory St, San Francisco, CA 94016" +210536,Wired Headphones,1,11.99,06/30/19 21:43,"287 Wilson St, Atlanta, GA 30301" +210537,USB-C Charging Cable,1,11.95,06/29/19 18:36,"981 Walnut St, Austin, TX 73301" +210538,34in Ultrawide Monitor,1,379.99,06/16/19 19:25,"493 North St, San Francisco, CA 94016" +210539,Macbook Pro Laptop,1,1700,06/17/19 13:12,"614 Jefferson St, Los Angeles, CA 90001" +210540,AA Batteries (4-pack),1,3.84,06/15/19 19:11,"520 Maple St, Atlanta, GA 30301" +210541,AAA Batteries (4-pack),1,2.99,06/28/19 19:02,"672 4th St, Boston, MA 02215" +210542,Bose SoundSport Headphones,1,99.99,06/18/19 10:49,"849 10th St, Austin, TX 73301" +210543,Wired Headphones,1,11.99,06/08/19 12:08,"517 2nd St, San Francisco, CA 94016" +210544,27in 4K Gaming Monitor,1,389.99,06/10/19 11:38,"179 6th St, San Francisco, CA 94016" +210545,AAA Batteries (4-pack),2,2.99,06/15/19 11:10,"688 Hickory St, Los Angeles, CA 90001" +210546,Apple Airpods Headphones,1,150,06/20/19 16:10,"835 Madison St, Boston, MA 02215" +210547,AA Batteries (4-pack),1,3.84,06/07/19 06:31,"388 11th St, Dallas, TX 75001" +210547,Lightning Charging Cable,1,14.95,06/07/19 06:31,"388 11th St, Dallas, TX 75001" +210548,Flatscreen TV,1,300,06/03/19 11:47,"13 Lincoln St, Los Angeles, CA 90001" +210549,Wired Headphones,1,11.99,06/03/19 10:29,"12 Ridge St, Los Angeles, CA 90001" +210550,iPhone,1,700,06/18/19 16:44,"500 14th St, Los Angeles, CA 90001" +210551,USB-C Charging Cable,1,11.95,06/27/19 20:52,"606 14th St, Atlanta, GA 30301" +210552,Wired Headphones,1,11.99,06/21/19 12:16,"818 Willow St, Boston, MA 02215" +210553,Wired Headphones,1,11.99,06/02/19 17:07,"943 13th St, New York City, NY 10001" +210554,Macbook Pro Laptop,1,1700,06/10/19 12:04,"179 7th St, Los Angeles, CA 90001" +210555,Lightning Charging Cable,2,14.95,06/24/19 20:22,"389 West St, Seattle, WA 98101" +210556,ThinkPad Laptop,1,999.99,06/05/19 17:38,"593 South St, New York City, NY 10001" +210557,AAA Batteries (4-pack),1,2.99,06/14/19 08:50,"169 South St, San Francisco, CA 94016" +210558,Apple Airpods Headphones,1,150,06/30/19 14:01,"757 Church St, San Francisco, CA 94016" +210559,USB-C Charging Cable,1,11.95,06/30/19 12:28,"693 Jefferson St, Austin, TX 73301" +210560,Lightning Charging Cable,1,14.95,06/01/19 09:45,"541 Walnut St, San Francisco, CA 94016" +210561,AA Batteries (4-pack),2,3.84,06/12/19 10:28,"157 Lincoln St, San Francisco, CA 94016" +210562,AAA Batteries (4-pack),2,2.99,06/22/19 14:13,"374 Maple St, San Francisco, CA 94016" +210563,LG Dryer,1,600.0,06/05/19 15:15,"759 8th St, Dallas, TX 75001" +210564,USB-C Charging Cable,1,11.95,06/14/19 14:55,"423 7th St, Boston, MA 02215" +210565,AA Batteries (4-pack),1,3.84,06/24/19 15:53,"903 Washington St, San Francisco, CA 94016" +210566,Google Phone,1,600,06/26/19 22:53,"464 Spruce St, Boston, MA 02215" +210567,Macbook Pro Laptop,1,1700,06/01/19 22:03,"360 Chestnut St, San Francisco, CA 94016" +210568,Wired Headphones,1,11.99,06/01/19 15:37,"405 Chestnut St, Los Angeles, CA 90001" +210569,ThinkPad Laptop,1,999.99,06/01/19 14:19,"239 8th St, Boston, MA 02215" +210570,Apple Airpods Headphones,1,150,06/29/19 10:38,"144 West St, Dallas, TX 75001" +210571,AAA Batteries (4-pack),1,2.99,06/03/19 20:23,"886 Madison St, Boston, MA 02215" +210572,AAA Batteries (4-pack),1,2.99,06/15/19 21:20,"634 Washington St, San Francisco, CA 94016" +210573,Wired Headphones,1,11.99,06/13/19 12:28,"408 14th St, San Francisco, CA 94016" +210574,Lightning Charging Cable,1,14.95,06/18/19 18:29,"41 Lake St, New York City, NY 10001" +210575,USB-C Charging Cable,1,11.95,06/30/19 08:49,"252 Walnut St, Atlanta, GA 30301" +210575,USB-C Charging Cable,1,11.95,06/30/19 08:49,"252 Walnut St, Atlanta, GA 30301" +210576,Google Phone,1,600,06/01/19 18:14,"502 Church St, Los Angeles, CA 90001" +210577,iPhone,1,700,06/23/19 18:40,"175 Park St, Atlanta, GA 30301" +210578,Wired Headphones,1,11.99,06/01/19 20:49,"691 Cherry St, Portland, OR 97035" +210579,Wired Headphones,1,11.99,06/18/19 22:31,"447 Meadow St, San Francisco, CA 94016" +210580,Apple Airpods Headphones,1,150,06/21/19 20:12,"603 Washington St, Boston, MA 02215" +,,,,, +210581,iPhone,1,700,06/29/19 21:35,"536 Walnut St, Portland, OR 97035" +210581,Lightning Charging Cable,1,14.95,06/29/19 21:35,"536 Walnut St, Portland, OR 97035" +210582,iPhone,1,700,06/28/19 22:39,"945 2nd St, Portland, OR 97035" +210582,Lightning Charging Cable,1,14.95,06/28/19 22:39,"945 2nd St, Portland, OR 97035" +210583,Google Phone,1,600,06/27/19 21:56,"234 Wilson St, New York City, NY 10001" +210584,Bose SoundSport Headphones,1,99.99,06/30/19 22:08,"369 Sunset St, Boston, MA 02215" +210585,Wired Headphones,1,11.99,06/04/19 17:40,"422 Lincoln St, San Francisco, CA 94016" +210586,USB-C Charging Cable,1,11.95,06/03/19 21:42,"777 10th St, Los Angeles, CA 90001" +210587,AA Batteries (4-pack),1,3.84,06/17/19 14:51,"464 9th St, Boston, MA 02215" +210588,AA Batteries (4-pack),1,3.84,06/17/19 14:26,"943 River St, San Francisco, CA 94016" +210589,Google Phone,1,600,06/29/19 13:55,"706 2nd St, Boston, MA 02215" +210590,AA Batteries (4-pack),2,3.84,06/28/19 10:56,"331 7th St, Boston, MA 02215" +210591,AA Batteries (4-pack),1,3.84,06/24/19 14:29,"688 Sunset St, Los Angeles, CA 90001" +210592,20in Monitor,1,109.99,06/10/19 21:56,"686 Cherry St, New York City, NY 10001" +210593,USB-C Charging Cable,1,11.95,06/13/19 20:17,"182 West St, Los Angeles, CA 90001" +210594,USB-C Charging Cable,1,11.95,06/23/19 21:35,"810 9th St, Dallas, TX 75001" +210595,Macbook Pro Laptop,1,1700,06/23/19 09:04,"9 Jackson St, San Francisco, CA 94016" +210596,AA Batteries (4-pack),1,3.84,06/11/19 18:15,"23 6th St, Los Angeles, CA 90001" +210597,Apple Airpods Headphones,1,150,06/09/19 13:23,"222 4th St, San Francisco, CA 94016" +210598,USB-C Charging Cable,1,11.95,06/16/19 01:32,"205 Ridge St, Seattle, WA 98101" +210599,27in FHD Monitor,1,149.99,06/11/19 23:24,"565 Sunset St, San Francisco, CA 94016" +210600,USB-C Charging Cable,1,11.95,06/02/19 08:14,"399 Sunset St, New York City, NY 10001" +210601,Apple Airpods Headphones,1,150,06/16/19 18:09,"888 Wilson St, New York City, NY 10001" +210602,34in Ultrawide Monitor,1,379.99,06/02/19 13:23,"233 Cedar St, Boston, MA 02215" +210603,USB-C Charging Cable,1,11.95,06/17/19 09:57,"336 10th St, Atlanta, GA 30301" +210604,Wired Headphones,1,11.99,06/05/19 17:57,"2 River St, Atlanta, GA 30301" +210605,34in Ultrawide Monitor,1,379.99,06/01/19 10:22,"97 Jackson St, San Francisco, CA 94016" +210606,Flatscreen TV,1,300,06/21/19 23:40,"194 Spruce St, Atlanta, GA 30301" +210607,ThinkPad Laptop,1,999.99,06/12/19 13:16,"912 Adams St, San Francisco, CA 94016" +210608,Google Phone,1,600,06/14/19 05:49,"46 6th St, Los Angeles, CA 90001" +210608,USB-C Charging Cable,1,11.95,06/14/19 05:49,"46 6th St, Los Angeles, CA 90001" +210609,USB-C Charging Cable,1,11.95,06/14/19 20:47,"386 10th St, New York City, NY 10001" +210610,Wired Headphones,1,11.99,06/27/19 20:23,"934 Church St, San Francisco, CA 94016" +210611,Lightning Charging Cable,1,14.95,06/25/19 13:42,"822 Chestnut St, Boston, MA 02215" +210612,AAA Batteries (4-pack),1,2.99,06/15/19 11:52,"199 Washington St, Austin, TX 73301" +210613,27in 4K Gaming Monitor,1,389.99,06/05/19 17:07,"511 Ridge St, New York City, NY 10001" +210614,Wired Headphones,1,11.99,06/17/19 22:19,"469 Washington St, Austin, TX 73301" +210615,27in FHD Monitor,1,149.99,06/14/19 11:57,"418 Spruce St, Los Angeles, CA 90001" +210616,Lightning Charging Cable,1,14.95,06/18/19 22:58,"540 Park St, Los Angeles, CA 90001" +210617,USB-C Charging Cable,2,11.95,06/04/19 16:40,"197 North St, Portland, OR 97035" +210618,Lightning Charging Cable,1,14.95,06/30/19 13:19,"170 Church St, San Francisco, CA 94016" +210619,Wired Headphones,1,11.99,06/07/19 18:55,"416 8th St, New York City, NY 10001" +210620,27in FHD Monitor,1,149.99,06/09/19 12:18,"480 Hill St, Dallas, TX 75001" +210621,Apple Airpods Headphones,1,150,06/01/19 08:12,"127 Cherry St, Seattle, WA 98101" +210622,Wired Headphones,1,11.99,06/19/19 16:27,"828 Dogwood St, San Francisco, CA 94016" +210623,Google Phone,1,600,06/12/19 12:20,"398 Washington St, Los Angeles, CA 90001" +210624,USB-C Charging Cable,1,11.95,06/03/19 18:13,"307 Jackson St, Boston, MA 02215" +210625,AAA Batteries (4-pack),1,2.99,06/22/19 20:14,"248 Hill St, Austin, TX 73301" +210626,USB-C Charging Cable,1,11.95,06/04/19 20:46,"982 Walnut St, Los Angeles, CA 90001" +210627,Bose SoundSport Headphones,1,99.99,06/16/19 20:18,"513 Ridge St, San Francisco, CA 94016" +210628,USB-C Charging Cable,1,11.95,06/23/19 13:22,"223 Lake St, Los Angeles, CA 90001" +210629,Lightning Charging Cable,1,14.95,06/10/19 18:59,"879 Cherry St, Los Angeles, CA 90001" +210630,Wired Headphones,1,11.99,06/30/19 02:18,"909 Pine St, Boston, MA 02215" +210631,Wired Headphones,1,11.99,06/24/19 15:29,"621 Washington St, San Francisco, CA 94016" +210632,AAA Batteries (4-pack),2,2.99,06/15/19 09:37,"745 7th St, San Francisco, CA 94016" +210633,27in 4K Gaming Monitor,1,389.99,06/22/19 20:20,"936 Hill St, Los Angeles, CA 90001" +210634,Google Phone,1,600,06/21/19 19:43,"890 River St, Seattle, WA 98101" +210635,Wired Headphones,1,11.99,06/09/19 23:43,"9 Adams St, Boston, MA 02215" +210636,USB-C Charging Cable,1,11.95,06/21/19 11:18,"911 Highland St, Los Angeles, CA 90001" +210637,Bose SoundSport Headphones,1,99.99,06/23/19 23:47,"959 Spruce St, Boston, MA 02215" +210638,27in 4K Gaming Monitor,1,389.99,06/25/19 20:22,"721 Dogwood St, Los Angeles, CA 90001" +210639,Wired Headphones,1,11.99,06/22/19 08:54,"8 Church St, New York City, NY 10001" +210640,34in Ultrawide Monitor,1,379.99,06/30/19 14:46,"773 Hill St, Boston, MA 02215" +210641,27in 4K Gaming Monitor,1,389.99,06/07/19 08:45,"27 8th St, Boston, MA 02215" +210642,Wired Headphones,1,11.99,06/28/19 19:50,"148 7th St, Atlanta, GA 30301" +210643,Bose SoundSport Headphones,1,99.99,06/17/19 16:49,"125 South St, Los Angeles, CA 90001" +210644,27in 4K Gaming Monitor,1,389.99,06/09/19 06:02,"873 Dogwood St, Boston, MA 02215" +210645,Flatscreen TV,1,300,06/16/19 10:01,"404 2nd St, Los Angeles, CA 90001" +210646,Wired Headphones,1,11.99,06/19/19 20:36,"230 Ridge St, Boston, MA 02215" +210647,USB-C Charging Cable,1,11.95,06/04/19 10:04,"798 Jackson St, Seattle, WA 98101" +210648,Lightning Charging Cable,1,14.95,06/29/19 07:27,"171 Spruce St, Dallas, TX 75001" +210649,USB-C Charging Cable,1,11.95,06/17/19 08:39,"55 Cherry St, Boston, MA 02215" +210650,AA Batteries (4-pack),1,3.84,06/10/19 23:21,"750 Sunset St, Dallas, TX 75001" +210651,Macbook Pro Laptop,1,1700,06/26/19 18:45,"188 Church St, San Francisco, CA 94016" +210652,27in FHD Monitor,1,149.99,06/04/19 18:08,"339 Walnut St, San Francisco, CA 94016" +210652,Google Phone,1,600,06/04/19 18:08,"339 Walnut St, San Francisco, CA 94016" +210653,Bose SoundSport Headphones,1,99.99,06/02/19 22:15,"860 Church St, Seattle, WA 98101" +210654,USB-C Charging Cable,1,11.95,06/21/19 12:03,"717 South St, Seattle, WA 98101" +210655,Apple Airpods Headphones,1,150,06/10/19 22:28,"193 9th St, San Francisco, CA 94016" +210656,Wired Headphones,1,11.99,06/18/19 18:12,"541 Forest St, Austin, TX 73301" +210657,USB-C Charging Cable,1,11.95,06/26/19 08:06,"725 14th St, New York City, NY 10001" +210658,27in 4K Gaming Monitor,1,389.99,06/30/19 13:39,"909 Ridge St, San Francisco, CA 94016" +210658,Apple Airpods Headphones,1,150,06/30/19 13:39,"909 Ridge St, San Francisco, CA 94016" +210659,AA Batteries (4-pack),1,3.84,06/07/19 20:43,"705 Wilson St, San Francisco, CA 94016" +210660,Bose SoundSport Headphones,1,99.99,06/02/19 18:19,"428 9th St, Portland, OR 97035" +210661,USB-C Charging Cable,1,11.95,06/19/19 11:29,"941 8th St, Los Angeles, CA 90001" +210662,Google Phone,1,600,06/19/19 14:19,"259 Chestnut St, New York City, NY 10001" +210663,Flatscreen TV,1,300,06/11/19 11:30,"126 West St, Dallas, TX 75001" +210664,Bose SoundSport Headphones,1,99.99,06/14/19 08:59,"8 10th St, San Francisco, CA 94016" +210665,USB-C Charging Cable,1,11.95,06/06/19 13:01,"550 Forest St, San Francisco, CA 94016" +210666,Google Phone,1,600,06/16/19 13:09,"217 Hill St, Dallas, TX 75001" +210667,Bose SoundSport Headphones,1,99.99,06/29/19 11:58,"242 Cherry St, Los Angeles, CA 90001" +210668,Bose SoundSport Headphones,1,99.99,06/29/19 15:08,"656 5th St, San Francisco, CA 94016" +210669,USB-C Charging Cable,1,11.95,06/21/19 21:00,"930 Chestnut St, Los Angeles, CA 90001" +210670,USB-C Charging Cable,1,11.95,06/02/19 12:22,"130 Lakeview St, Los Angeles, CA 90001" +210671,AAA Batteries (4-pack),1,2.99,06/07/19 12:08,"554 West St, San Francisco, CA 94016" +210672,Lightning Charging Cable,1,14.95,06/02/19 22:40,"891 Ridge St, San Francisco, CA 94016" +210673,Lightning Charging Cable,1,14.95,06/19/19 00:09,"751 Hickory St, Atlanta, GA 30301" +210674,Apple Airpods Headphones,1,150,06/25/19 00:32,"657 6th St, Dallas, TX 75001" +210675,Apple Airpods Headphones,1,150,06/24/19 17:27,"720 Willow St, New York City, NY 10001" +210676,AA Batteries (4-pack),1,3.84,06/10/19 18:25,"44 2nd St, Dallas, TX 75001" +210677,AAA Batteries (4-pack),2,2.99,06/08/19 16:06,"356 Park St, Seattle, WA 98101" +210678,Lightning Charging Cable,1,14.95,06/15/19 03:48,"574 West St, Atlanta, GA 30301" +210679,AA Batteries (4-pack),2,3.84,06/02/19 18:37,"73 Sunset St, New York City, NY 10001" +210680,USB-C Charging Cable,1,11.95,06/30/19 17:01,"465 Church St, Atlanta, GA 30301" +210681,AAA Batteries (4-pack),1,2.99,06/25/19 23:21,"98 5th St, Los Angeles, CA 90001" +210682,Bose SoundSport Headphones,1,99.99,06/06/19 11:18,"725 South St, Portland, OR 97035" +210683,USB-C Charging Cable,1,11.95,06/05/19 05:16,"322 1st St, Dallas, TX 75001" +210684,Wired Headphones,1,11.99,06/02/19 00:04,"890 2nd St, San Francisco, CA 94016" +210685,Wired Headphones,1,11.99,06/26/19 16:41,"668 2nd St, Portland, OR 97035" +210686,Wired Headphones,1,11.99,06/09/19 19:18,"868 Jefferson St, San Francisco, CA 94016" +210687,iPhone,1,700,06/23/19 13:45,"675 7th St, San Francisco, CA 94016" +210688,27in FHD Monitor,1,149.99,06/01/19 23:48,"766 12th St, Portland, OR 97035" +210689,USB-C Charging Cable,1,11.95,06/22/19 10:22,"484 Meadow St, Austin, TX 73301" +210690,Wired Headphones,1,11.99,06/07/19 18:49,"252 Lake St, Atlanta, GA 30301" +210691,USB-C Charging Cable,1,11.95,06/11/19 18:01,"774 Elm St, Los Angeles, CA 90001" +210692,USB-C Charging Cable,1,11.95,06/05/19 18:36,"122 Adams St, San Francisco, CA 94016" +210693,Bose SoundSport Headphones,1,99.99,06/02/19 21:37,"207 Forest St, San Francisco, CA 94016" +,,,,, +210694,Apple Airpods Headphones,1,150,06/24/19 19:44,"126 Main St, San Francisco, CA 94016" +210694,Lightning Charging Cable,1,14.95,06/24/19 19:44,"126 Main St, San Francisco, CA 94016" +210695,AA Batteries (4-pack),2,3.84,06/30/19 20:00,"347 10th St, Austin, TX 73301" +210696,ThinkPad Laptop,1,999.99,06/06/19 23:11,"808 Forest St, San Francisco, CA 94016" +210697,Wired Headphones,1,11.99,06/20/19 17:32,"510 Elm St, Boston, MA 02215" +210698,Lightning Charging Cable,1,14.95,06/03/19 14:23,"523 Elm St, Dallas, TX 75001" +210699,Wired Headphones,1,11.99,06/06/19 20:21,"613 Willow St, Los Angeles, CA 90001" +210700,AAA Batteries (4-pack),1,2.99,06/24/19 11:19,"557 Lincoln St, San Francisco, CA 94016" +210701,Lightning Charging Cable,1,14.95,06/20/19 23:31,"980 8th St, Austin, TX 73301" +,,,,, +210702,USB-C Charging Cable,1,11.95,06/19/19 13:33,"173 Chestnut St, Seattle, WA 98101" +210703,USB-C Charging Cable,1,11.95,06/18/19 08:10,"233 South St, Austin, TX 73301" +210704,Bose SoundSport Headphones,1,99.99,06/17/19 18:59,"812 Hill St, New York City, NY 10001" +210705,AA Batteries (4-pack),1,3.84,06/04/19 11:49,"373 Walnut St, Los Angeles, CA 90001" +210706,Flatscreen TV,1,300,06/29/19 14:05,"841 Elm St, Seattle, WA 98101" +210707,27in FHD Monitor,1,149.99,06/23/19 14:16,"299 River St, Seattle, WA 98101" +210708,Lightning Charging Cable,1,14.95,06/29/19 08:47,"45 North St, New York City, NY 10001" +210709,Google Phone,1,600,06/16/19 15:35,"501 Sunset St, San Francisco, CA 94016" +210709,USB-C Charging Cable,1,11.95,06/16/19 15:35,"501 Sunset St, San Francisco, CA 94016" +210710,27in FHD Monitor,1,149.99,06/30/19 10:38,"310 Pine St, Los Angeles, CA 90001" +210711,Lightning Charging Cable,1,14.95,06/03/19 13:15,"753 West St, New York City, NY 10001" +210712,Macbook Pro Laptop,1,1700,06/06/19 17:47,"487 Wilson St, Atlanta, GA 30301" +210713,27in FHD Monitor,1,149.99,06/04/19 08:43,"779 Pine St, Boston, MA 02215" +210714,AAA Batteries (4-pack),1,2.99,06/15/19 15:05,"113 Lake St, New York City, NY 10001" +210715,USB-C Charging Cable,1,11.95,06/06/19 09:21,"568 North St, Portland, OR 97035" +210716,ThinkPad Laptop,1,999.99,06/11/19 13:00,"283 2nd St, Dallas, TX 75001" +210717,Lightning Charging Cable,1,14.95,06/18/19 22:55,"339 Ridge St, San Francisco, CA 94016" +210718,Apple Airpods Headphones,1,150,06/19/19 10:41,"625 Dogwood St, Dallas, TX 75001" +210719,USB-C Charging Cable,1,11.95,06/19/19 21:04,"558 Chestnut St, Atlanta, GA 30301" +210720,Lightning Charging Cable,1,14.95,06/23/19 18:23,"794 Wilson St, New York City, NY 10001" +210721,27in FHD Monitor,1,149.99,06/15/19 12:45,"716 Sunset St, Dallas, TX 75001" +210721,34in Ultrawide Monitor,1,379.99,06/15/19 12:45,"716 Sunset St, Dallas, TX 75001" +210722,AAA Batteries (4-pack),1,2.99,06/16/19 10:55,"112 Elm St, San Francisco, CA 94016" +210723,AAA Batteries (4-pack),3,2.99,06/14/19 20:53,"818 2nd St, New York City, NY 10001" +210724,Apple Airpods Headphones,1,150,06/20/19 12:43,"676 4th St, Austin, TX 73301" +210725,34in Ultrawide Monitor,1,379.99,06/06/19 14:10,"330 Hill St, Portland, OR 97035" +210726,AAA Batteries (4-pack),1,2.99,06/04/19 10:50,"400 2nd St, Seattle, WA 98101" +210727,AAA Batteries (4-pack),3,2.99,06/04/19 12:02,"968 Ridge St, New York City, NY 10001" +210728,AA Batteries (4-pack),1,3.84,06/09/19 20:28,"327 Main St, Los Angeles, CA 90001" +210729,34in Ultrawide Monitor,1,379.99,06/22/19 08:33,"667 Hickory St, Dallas, TX 75001" +210730,AAA Batteries (4-pack),1,2.99,06/01/19 19:35,"417 Ridge St, Portland, ME 04101" +210731,Wired Headphones,1,11.99,06/10/19 21:31,"924 Center St, San Francisco, CA 94016" +210732,Wired Headphones,1,11.99,06/12/19 16:20,"414 Cherry St, Seattle, WA 98101" +210733,iPhone,1,700,06/20/19 09:15,"532 Johnson St, Seattle, WA 98101" +210733,Wired Headphones,1,11.99,06/20/19 09:15,"532 Johnson St, Seattle, WA 98101" +210734,AAA Batteries (4-pack),2,2.99,06/17/19 19:46,"353 Pine St, New York City, NY 10001" +210734,Apple Airpods Headphones,1,150,06/17/19 19:46,"353 Pine St, New York City, NY 10001" +210735,AAA Batteries (4-pack),4,2.99,06/07/19 23:43,"109 Meadow St, Los Angeles, CA 90001" +210736,27in FHD Monitor,1,149.99,06/09/19 14:07,"644 5th St, Dallas, TX 75001" +210737,Lightning Charging Cable,1,14.95,06/28/19 20:50,"596 North St, New York City, NY 10001" +210738,Macbook Pro Laptop,1,1700,06/06/19 16:07,"454 Wilson St, Seattle, WA 98101" +210739,20in Monitor,1,109.99,06/24/19 20:27,"610 South St, New York City, NY 10001" +210740,Wired Headphones,1,11.99,06/27/19 15:50,"978 Cedar St, Boston, MA 02215" +210741,Bose SoundSport Headphones,1,99.99,06/20/19 15:28,"895 Chestnut St, Los Angeles, CA 90001" +210742,Apple Airpods Headphones,1,150,06/08/19 21:56,"253 Highland St, New York City, NY 10001" +210743,Bose SoundSport Headphones,1,99.99,06/03/19 14:48,"862 Ridge St, Seattle, WA 98101" +210744,AA Batteries (4-pack),1,3.84,06/01/19 16:30,"631 11th St, San Francisco, CA 94016" +210745,ThinkPad Laptop,1,999.99,06/21/19 19:19,"257 Pine St, Seattle, WA 98101" +210746,USB-C Charging Cable,1,11.95,06/19/19 23:09,"486 Hill St, Seattle, WA 98101" +210747,Apple Airpods Headphones,1,150,06/02/19 10:06,"558 13th St, Los Angeles, CA 90001" +210748,AAA Batteries (4-pack),1,2.99,06/16/19 12:16,"727 Highland St, San Francisco, CA 94016" +210749,Apple Airpods Headphones,1,150,06/24/19 10:25,"603 Walnut St, Boston, MA 02215" +210750,iPhone,1,700,06/06/19 08:56,"270 7th St, San Francisco, CA 94016" +210750,Wired Headphones,1,11.99,06/06/19 08:56,"270 7th St, San Francisco, CA 94016" +210751,Lightning Charging Cable,1,14.95,06/01/19 23:10,"353 Highland St, New York City, NY 10001" +210752,27in 4K Gaming Monitor,1,389.99,06/05/19 12:36,"82 2nd St, Atlanta, GA 30301" +210753,Lightning Charging Cable,1,14.95,06/17/19 10:30,"124 9th St, Los Angeles, CA 90001" +210754,AA Batteries (4-pack),1,3.84,06/25/19 12:24,"746 Pine St, Los Angeles, CA 90001" +210755,27in FHD Monitor,1,149.99,06/27/19 14:30,"597 Park St, Boston, MA 02215" +210756,27in FHD Monitor,1,149.99,06/18/19 15:58,"677 2nd St, Seattle, WA 98101" +210757,Apple Airpods Headphones,1,150,06/14/19 11:45,"71 Meadow St, New York City, NY 10001" +210758,AAA Batteries (4-pack),1,2.99,06/20/19 12:01,"618 Hickory St, New York City, NY 10001" +210759,Apple Airpods Headphones,1,150,06/17/19 17:17,"776 Main St, San Francisco, CA 94016" +210760,Bose SoundSport Headphones,1,99.99,06/03/19 21:12,"825 2nd St, Dallas, TX 75001" +210761,USB-C Charging Cable,1,11.95,06/18/19 22:53,"267 Hill St, Los Angeles, CA 90001" +210762,Macbook Pro Laptop,1,1700,06/18/19 19:24,"182 Wilson St, Los Angeles, CA 90001" +210763,Apple Airpods Headphones,1,150,06/07/19 18:00,"544 7th St, New York City, NY 10001" +210764,AAA Batteries (4-pack),2,2.99,06/11/19 06:39,"755 1st St, Dallas, TX 75001" +210765,20in Monitor,1,109.99,06/23/19 12:37,"447 Jackson St, Austin, TX 73301" +210766,27in FHD Monitor,1,149.99,06/25/19 12:16,"289 Spruce St, New York City, NY 10001" +210767,USB-C Charging Cable,1,11.95,06/26/19 11:43,"450 Lakeview St, Austin, TX 73301" +210768,Wired Headphones,1,11.99,06/12/19 13:37,"459 6th St, Dallas, TX 75001" +210769,Wired Headphones,1,11.99,06/08/19 19:43,"22 Dogwood St, Boston, MA 02215" +210770,Macbook Pro Laptop,1,1700,06/02/19 20:22,"366 Adams St, Dallas, TX 75001" +210771,Apple Airpods Headphones,1,150,06/08/19 10:42,"894 Willow St, Dallas, TX 75001" +210772,AAA Batteries (4-pack),1,2.99,06/05/19 10:32,"838 South St, San Francisco, CA 94016" +210773,AA Batteries (4-pack),2,3.84,06/26/19 17:03,"574 North St, San Francisco, CA 94016" +210774,Lightning Charging Cable,1,14.95,06/08/19 13:05,"582 Highland St, Seattle, WA 98101" +210775,USB-C Charging Cable,1,11.95,06/02/19 21:17,"667 14th St, San Francisco, CA 94016" +210776,AAA Batteries (4-pack),1,2.99,06/24/19 14:55,"274 West St, New York City, NY 10001" +210777,AA Batteries (4-pack),2,3.84,06/07/19 15:22,"423 9th St, Portland, OR 97035" +210778,AAA Batteries (4-pack),1,2.99,06/28/19 19:11,"380 11th St, Seattle, WA 98101" +210779,Lightning Charging Cable,1,14.95,06/16/19 16:50,"651 1st St, Boston, MA 02215" +210780,Bose SoundSport Headphones,1,99.99,06/22/19 12:16,"793 Lincoln St, Boston, MA 02215" +210781,Wired Headphones,1,11.99,06/25/19 19:41,"544 Meadow St, Seattle, WA 98101" +210782,AAA Batteries (4-pack),1,2.99,06/06/19 22:08,"849 Madison St, San Francisco, CA 94016" +210783,Wired Headphones,1,11.99,06/04/19 22:22,"477 6th St, San Francisco, CA 94016" +210784,ThinkPad Laptop,1,999.99,06/15/19 11:37,"39 Sunset St, Los Angeles, CA 90001" +210785,Lightning Charging Cable,1,14.95,06/18/19 15:36,"478 Chestnut St, Atlanta, GA 30301" +210786,USB-C Charging Cable,1,11.95,06/02/19 18:53,"727 Cedar St, Austin, TX 73301" +210787,Flatscreen TV,1,300,06/25/19 08:14,"608 Johnson St, Seattle, WA 98101" +210788,USB-C Charging Cable,1,11.95,06/11/19 12:38,"393 North St, San Francisco, CA 94016" +210789,USB-C Charging Cable,1,11.95,06/08/19 19:27,"813 Wilson St, Los Angeles, CA 90001" +210790,Wired Headphones,1,11.99,06/12/19 17:47,"745 Church St, Seattle, WA 98101" +210791,Lightning Charging Cable,1,14.95,06/03/19 19:10,"855 Madison St, San Francisco, CA 94016" +,,,,, +210792,AAA Batteries (4-pack),1,2.99,06/16/19 21:01,"408 Lincoln St, Dallas, TX 75001" +210793,Lightning Charging Cable,1,14.95,06/07/19 09:19,"881 Adams St, San Francisco, CA 94016" +210794,27in FHD Monitor,1,149.99,06/02/19 19:31,"15 Center St, San Francisco, CA 94016" +210795,iPhone,1,700,06/28/19 09:31,"744 9th St, Los Angeles, CA 90001" +210796,AA Batteries (4-pack),1,3.84,06/21/19 20:42,"302 North St, San Francisco, CA 94016" +210797,Wired Headphones,1,11.99,06/16/19 18:33,"819 6th St, Los Angeles, CA 90001" +210798,Apple Airpods Headphones,1,150,06/16/19 21:38,"414 Hill St, New York City, NY 10001" +210799,USB-C Charging Cable,1,11.95,06/16/19 19:54,"757 Main St, San Francisco, CA 94016" +210800,Wired Headphones,1,11.99,06/19/19 09:24,"720 9th St, Austin, TX 73301" +210801,Wired Headphones,1,11.99,06/02/19 19:33,"960 7th St, Boston, MA 02215" +210802,Wired Headphones,1,11.99,06/14/19 03:08,"163 Main St, Portland, OR 97035" +210803,Apple Airpods Headphones,1,150,06/09/19 22:36,"122 Cedar St, Atlanta, GA 30301" +210804,Wired Headphones,1,11.99,06/06/19 17:47,"650 8th St, San Francisco, CA 94016" +210805,Macbook Pro Laptop,1,1700,06/26/19 17:37,"952 Lakeview St, San Francisco, CA 94016" +210806,AA Batteries (4-pack),1,3.84,06/01/19 17:05,"759 7th St, Boston, MA 02215" +210807,Macbook Pro Laptop,1,1700,06/23/19 13:48,"505 West St, Atlanta, GA 30301" +210808,Bose SoundSport Headphones,1,99.99,06/16/19 19:44,"164 Lincoln St, Seattle, WA 98101" +210809,AAA Batteries (4-pack),2,2.99,06/20/19 14:47,"23 13th St, Los Angeles, CA 90001" +210810,Macbook Pro Laptop,1,1700,06/28/19 17:31,"147 Dogwood St, San Francisco, CA 94016" +210811,Apple Airpods Headphones,1,150,06/20/19 10:25,"338 8th St, San Francisco, CA 94016" +210812,Flatscreen TV,1,300,06/01/19 20:41,"438 Lake St, Portland, OR 97035" +210813,20in Monitor,1,109.99,06/03/19 20:43,"572 West St, Dallas, TX 75001" +210814,Apple Airpods Headphones,1,150,06/14/19 16:43,"67 Wilson St, Atlanta, GA 30301" +210815,Lightning Charging Cable,1,14.95,06/27/19 14:10,"602 Johnson St, San Francisco, CA 94016" +210816,Lightning Charging Cable,1,14.95,06/28/19 14:23,"455 1st St, New York City, NY 10001" +210817,34in Ultrawide Monitor,1,379.99,06/25/19 21:28,"553 Ridge St, New York City, NY 10001" +210818,AAA Batteries (4-pack),1,2.99,06/06/19 19:36,"130 9th St, Seattle, WA 98101" +210819,AA Batteries (4-pack),1,3.84,06/18/19 08:58,"230 Main St, Seattle, WA 98101" +210820,Lightning Charging Cable,1,14.95,06/14/19 14:47,"298 11th St, Los Angeles, CA 90001" +210821,Wired Headphones,2,11.99,06/20/19 19:14,"821 2nd St, Dallas, TX 75001" +210822,AA Batteries (4-pack),1,3.84,06/27/19 09:50,"121 Ridge St, Los Angeles, CA 90001" +210823,Lightning Charging Cable,1,14.95,06/26/19 18:08,"534 10th St, Seattle, WA 98101" +210824,Apple Airpods Headphones,1,150,06/01/19 14:14,"622 Adams St, Atlanta, GA 30301" +210825,Apple Airpods Headphones,1,150,06/10/19 21:24,"878 10th St, Seattle, WA 98101" +210826,Wired Headphones,1,11.99,06/17/19 08:03,"416 Spruce St, Boston, MA 02215" +210827,Vareebadd Phone,1,400,06/10/19 08:48,"124 1st St, New York City, NY 10001" +210828,USB-C Charging Cable,1,11.95,06/25/19 12:19,"526 2nd St, Boston, MA 02215" +210829,27in FHD Monitor,1,149.99,06/10/19 00:35,"52 Johnson St, New York City, NY 10001" +210830,USB-C Charging Cable,1,11.95,06/16/19 17:43,"931 River St, Boston, MA 02215" +210831,Wired Headphones,1,11.99,06/22/19 14:48,"565 Willow St, New York City, NY 10001" +210832,20in Monitor,1,109.99,06/20/19 22:16,"452 Lake St, Los Angeles, CA 90001" +210833,USB-C Charging Cable,1,11.95,06/11/19 17:38,"523 Walnut St, Los Angeles, CA 90001" +210834,Vareebadd Phone,1,400,06/04/19 19:55,"355 7th St, Boston, MA 02215" +210835,AA Batteries (4-pack),3,3.84,06/01/19 17:23,"912 Meadow St, Atlanta, GA 30301" +210836,Wired Headphones,1,11.99,06/29/19 15:55,"425 Johnson St, Los Angeles, CA 90001" +210837,Flatscreen TV,1,300,06/23/19 19:21,"724 4th St, Boston, MA 02215" +210838,Lightning Charging Cable,1,14.95,06/17/19 17:12,"139 Wilson St, New York City, NY 10001" +210839,Bose SoundSport Headphones,1,99.99,06/06/19 13:18,"12 Center St, Portland, ME 04101" +210840,USB-C Charging Cable,1,11.95,06/24/19 21:21,"905 Spruce St, New York City, NY 10001" +210841,27in 4K Gaming Monitor,1,389.99,06/16/19 13:42,"456 Spruce St, New York City, NY 10001" +210842,ThinkPad Laptop,1,999.99,06/03/19 19:09,"653 Chestnut St, San Francisco, CA 94016" +210843,AA Batteries (4-pack),2,3.84,06/23/19 06:01,"264 Jefferson St, Atlanta, GA 30301" +210844,USB-C Charging Cable,1,11.95,06/10/19 11:00,"997 11th St, San Francisco, CA 94016" +210845,AA Batteries (4-pack),1,3.84,06/22/19 20:09,"258 Cherry St, San Francisco, CA 94016" +210846,Apple Airpods Headphones,1,150,06/10/19 13:12,"365 South St, Austin, TX 73301" +210847,Wired Headphones,1,11.99,06/06/19 19:35,"173 10th St, Seattle, WA 98101" +210848,Wired Headphones,2,11.99,06/01/19 21:35,"919 Meadow St, San Francisco, CA 94016" +210849,Lightning Charging Cable,1,14.95,06/08/19 19:25,"666 Spruce St, Portland, ME 04101" +210850,Macbook Pro Laptop,1,1700,06/23/19 09:06,"927 Jefferson St, Boston, MA 02215" +210851,Apple Airpods Headphones,1,150,06/05/19 21:08,"350 Elm St, Los Angeles, CA 90001" +210852,Bose SoundSport Headphones,1,99.99,06/28/19 11:57,"484 4th St, Portland, OR 97035" +210853,Vareebadd Phone,1,400,06/08/19 18:32,"163 South St, Boston, MA 02215" +210854,Lightning Charging Cable,1,14.95,06/26/19 20:22,"482 Highland St, San Francisco, CA 94016" +210855,20in Monitor,1,109.99,06/06/19 13:47,"476 12th St, New York City, NY 10001" +210856,AAA Batteries (4-pack),3,2.99,06/14/19 15:16,"763 Ridge St, San Francisco, CA 94016" +210857,20in Monitor,1,109.99,06/07/19 18:33,"511 Center St, Atlanta, GA 30301" +210858,20in Monitor,1,109.99,06/23/19 15:08,"697 Ridge St, Dallas, TX 75001" +210859,Google Phone,1,600,06/15/19 21:19,"468 River St, Seattle, WA 98101" +210859,Wired Headphones,1,11.99,06/15/19 21:19,"468 River St, Seattle, WA 98101" +210860,Bose SoundSport Headphones,1,99.99,06/22/19 19:10,"496 River St, New York City, NY 10001" +210861,Bose SoundSport Headphones,1,99.99,06/10/19 19:03,"648 Hickory St, Los Angeles, CA 90001" +210862,Lightning Charging Cable,2,14.95,06/29/19 09:43,"251 West St, Portland, ME 04101" +210863,Bose SoundSport Headphones,1,99.99,06/11/19 18:53,"801 Lake St, New York City, NY 10001" +210864,iPhone,1,700,06/18/19 20:44,"559 South St, Seattle, WA 98101" +210865,20in Monitor,1,109.99,06/10/19 19:39,"232 Elm St, New York City, NY 10001" +210866,iPhone,1,700,06/14/19 12:46,"173 Meadow St, Los Angeles, CA 90001" +210867,Apple Airpods Headphones,1,150,06/02/19 19:22,"404 1st St, Los Angeles, CA 90001" +210868,Bose SoundSport Headphones,1,99.99,06/26/19 15:26,"116 4th St, Atlanta, GA 30301" +210869,USB-C Charging Cable,1,11.95,06/29/19 09:10,"527 Chestnut St, Los Angeles, CA 90001" +210870,Macbook Pro Laptop,1,1700,06/22/19 12:17,"330 13th St, Seattle, WA 98101" +210871,AAA Batteries (4-pack),1,2.99,06/25/19 22:11,"480 Hill St, Seattle, WA 98101" +210872,USB-C Charging Cable,1,11.95,06/28/19 09:57,"23 Walnut St, New York City, NY 10001" +210873,USB-C Charging Cable,1,11.95,06/07/19 09:23,"62 Chestnut St, Los Angeles, CA 90001" +210874,AA Batteries (4-pack),1,3.84,06/24/19 16:16,"539 Forest St, Seattle, WA 98101" +210875,Bose SoundSport Headphones,1,99.99,06/18/19 21:12,"60 14th St, San Francisco, CA 94016" +,,,,, +210876,Bose SoundSport Headphones,1,99.99,06/16/19 00:30,"573 Willow St, Austin, TX 73301" +210877,27in FHD Monitor,1,149.99,06/10/19 09:36,"603 Lake St, San Francisco, CA 94016" +210878,27in 4K Gaming Monitor,1,389.99,06/09/19 12:01,"58 14th St, Boston, MA 02215" +210879,USB-C Charging Cable,2,11.95,06/22/19 13:11,"512 Church St, Los Angeles, CA 90001" +210880,Lightning Charging Cable,2,14.95,06/05/19 11:57,"543 River St, Seattle, WA 98101" +210881,Macbook Pro Laptop,1,1700,06/19/19 10:19,"51 Adams St, Seattle, WA 98101" +210882,Google Phone,1,600,06/24/19 16:08,"588 Wilson St, Dallas, TX 75001" +210883,Wired Headphones,1,11.99,06/04/19 15:45,"52 13th St, Boston, MA 02215" +210884,Lightning Charging Cable,1,14.95,06/18/19 07:33,"692 Adams St, Atlanta, GA 30301" +210885,USB-C Charging Cable,1,11.95,06/19/19 21:10,"908 Lakeview St, Seattle, WA 98101" +210886,27in FHD Monitor,1,149.99,06/30/19 23:51,"405 Madison St, Boston, MA 02215" +210887,Apple Airpods Headphones,1,150,06/07/19 12:00,"814 Dogwood St, Los Angeles, CA 90001" +210888,27in FHD Monitor,1,149.99,06/12/19 16:55,"962 West St, Seattle, WA 98101" +210889,Lightning Charging Cable,1,14.95,06/05/19 20:50,"527 10th St, Atlanta, GA 30301" +210890,AAA Batteries (4-pack),1,2.99,06/16/19 22:07,"654 River St, Austin, TX 73301" +210891,34in Ultrawide Monitor,1,379.99,06/21/19 22:20,"503 Ridge St, New York City, NY 10001" +210892,Bose SoundSport Headphones,1,99.99,06/06/19 21:40,"988 Lake St, Los Angeles, CA 90001" +210893,Apple Airpods Headphones,1,150,06/13/19 19:33,"956 Sunset St, Portland, OR 97035" +210894,AA Batteries (4-pack),3,3.84,06/20/19 20:04,"480 Main St, San Francisco, CA 94016" +210895,Flatscreen TV,1,300,06/14/19 15:43,"500 Pine St, Dallas, TX 75001" +210896,Lightning Charging Cable,1,14.95,06/28/19 09:12,"442 Wilson St, Portland, OR 97035" +210897,AAA Batteries (4-pack),1,2.99,06/04/19 11:55,"533 Hill St, San Francisco, CA 94016" +210898,Wired Headphones,1,11.99,06/28/19 22:04,"440 Ridge St, Los Angeles, CA 90001" +210899,Wired Headphones,2,11.99,06/19/19 19:09,"976 Wilson St, Los Angeles, CA 90001" +210900,Lightning Charging Cable,1,14.95,06/10/19 17:21,"71 6th St, Boston, MA 02215" +210901,Macbook Pro Laptop,1,1700,06/18/19 14:07,"512 Meadow St, Portland, OR 97035" +210902,Lightning Charging Cable,1,14.95,06/25/19 22:21,"216 Elm St, Los Angeles, CA 90001" +210903,USB-C Charging Cable,1,11.95,06/16/19 07:01,"866 Highland St, Los Angeles, CA 90001" +210904,27in FHD Monitor,1,149.99,06/02/19 20:25,"975 Park St, San Francisco, CA 94016" +210905,AA Batteries (4-pack),1,3.84,06/03/19 07:22,"154 5th St, San Francisco, CA 94016" +210906,Wired Headphones,1,11.99,06/22/19 21:10,"123 South St, Austin, TX 73301" +210907,LG Washing Machine,1,600.0,06/19/19 17:55,"293 Jackson St, Dallas, TX 75001" +210908,USB-C Charging Cable,1,11.95,06/21/19 15:12,"619 Jackson St, Austin, TX 73301" +210909,AA Batteries (4-pack),1,3.84,06/21/19 12:57,"657 Jackson St, San Francisco, CA 94016" +210910,AA Batteries (4-pack),2,3.84,06/17/19 15:19,"180 2nd St, New York City, NY 10001" +210911,ThinkPad Laptop,1,999.99,06/01/19 13:29,"368 10th St, Austin, TX 73301" +210911,34in Ultrawide Monitor,1,379.99,06/01/19 13:29,"368 10th St, Austin, TX 73301" +210912,AAA Batteries (4-pack),2,2.99,06/03/19 05:19,"916 8th St, San Francisco, CA 94016" +210913,ThinkPad Laptop,1,999.99,06/20/19 19:26,"535 Cherry St, New York City, NY 10001" +210913,Wired Headphones,1,11.99,06/20/19 19:26,"535 Cherry St, New York City, NY 10001" +210914,Apple Airpods Headphones,1,150,06/09/19 11:03,"948 Maple St, Austin, TX 73301" +210915,34in Ultrawide Monitor,1,379.99,06/03/19 23:47,"600 Maple St, Los Angeles, CA 90001" +210916,AAA Batteries (4-pack),2,2.99,06/07/19 13:34,"947 Main St, Atlanta, GA 30301" +210917,AA Batteries (4-pack),1,3.84,06/24/19 19:33,"672 Center St, Boston, MA 02215" +210918,Lightning Charging Cable,1,14.95,06/15/19 12:51,"63 Washington St, San Francisco, CA 94016" +210919,AAA Batteries (4-pack),1,2.99,06/23/19 15:37,"931 Walnut St, Boston, MA 02215" +210920,LG Dryer,1,600.0,06/30/19 18:00,"541 Hickory St, New York City, NY 10001" +210921,34in Ultrawide Monitor,1,379.99,06/13/19 20:09,"497 2nd St, Los Angeles, CA 90001" +210922,34in Ultrawide Monitor,1,379.99,06/07/19 16:36,"532 Maple St, Atlanta, GA 30301" +210923,USB-C Charging Cable,1,11.95,06/25/19 20:34,"89 Forest St, San Francisco, CA 94016" +210924,AAA Batteries (4-pack),1,2.99,06/28/19 00:47,"687 West St, Atlanta, GA 30301" +210925,AAA Batteries (4-pack),1,2.99,06/21/19 18:25,"103 Hill St, Boston, MA 02215" +210926,AA Batteries (4-pack),1,3.84,06/25/19 18:27,"921 Adams St, San Francisco, CA 94016" +210927,Apple Airpods Headphones,1,150,06/03/19 15:20,"101 Meadow St, Atlanta, GA 30301" +210928,Apple Airpods Headphones,1,150,06/20/19 11:02,"484 Elm St, Portland, ME 04101" +210929,34in Ultrawide Monitor,1,379.99,06/09/19 23:16,"573 Willow St, San Francisco, CA 94016" +210930,27in FHD Monitor,1,149.99,06/23/19 23:18,"940 13th St, Atlanta, GA 30301" +210931,27in 4K Gaming Monitor,1,389.99,06/25/19 08:40,"283 Lakeview St, Boston, MA 02215" +210932,Wired Headphones,1,11.99,06/21/19 09:50,"885 Cedar St, Los Angeles, CA 90001" +210933,AAA Batteries (4-pack),2,2.99,06/21/19 21:18,"83 14th St, San Francisco, CA 94016" +210934,Apple Airpods Headphones,1,150,06/12/19 20:50,"902 Jackson St, New York City, NY 10001" +210935,AA Batteries (4-pack),1,3.84,06/13/19 14:23,"514 Cherry St, Seattle, WA 98101" +210936,Bose SoundSport Headphones,1,99.99,06/09/19 18:44,"508 Hill St, Austin, TX 73301" +210937,Lightning Charging Cable,1,14.95,06/14/19 13:21,"598 River St, San Francisco, CA 94016" +210938,Lightning Charging Cable,1,14.95,06/14/19 20:33,"563 Elm St, San Francisco, CA 94016" +210939,AAA Batteries (4-pack),1,2.99,06/28/19 21:06,"722 7th St, Boston, MA 02215" +210940,AAA Batteries (4-pack),1,2.99,06/18/19 08:40,"458 1st St, Portland, OR 97035" +210941,AA Batteries (4-pack),1,3.84,06/27/19 16:04,"522 5th St, San Francisco, CA 94016" +210941,Bose SoundSport Headphones,1,99.99,06/27/19 16:04,"522 5th St, San Francisco, CA 94016" +210942,Apple Airpods Headphones,1,150,06/01/19 11:54,"5 Meadow St, Boston, MA 02215" +210943,Bose SoundSport Headphones,1,99.99,06/19/19 03:51,"709 Elm St, Portland, OR 97035" +210944,27in 4K Gaming Monitor,1,389.99,06/03/19 13:52,"705 Adams St, Atlanta, GA 30301" +210945,Apple Airpods Headphones,1,150,06/16/19 00:41,"221 Lake St, New York City, NY 10001" +210946,Lightning Charging Cable,1,14.95,06/02/19 17:11,"109 Sunset St, Portland, ME 04101" +210947,Bose SoundSport Headphones,1,99.99,06/14/19 13:39,"922 13th St, Austin, TX 73301" +210948,AA Batteries (4-pack),1,3.84,06/12/19 08:52,"535 Main St, Portland, OR 97035" +210949,USB-C Charging Cable,1,11.95,06/18/19 09:05,"107 Main St, Seattle, WA 98101" +210950,Wired Headphones,1,11.99,06/28/19 22:39,"325 Park St, San Francisco, CA 94016" +210951,Wired Headphones,1,11.99,06/15/19 16:09,"117 8th St, New York City, NY 10001" +210952,USB-C Charging Cable,1,11.95,06/05/19 11:57,"164 Main St, Dallas, TX 75001" +210953,AA Batteries (4-pack),1,3.84,06/30/19 20:03,"311 1st St, Boston, MA 02215" +210954,20in Monitor,1,109.99,06/07/19 22:23,"453 North St, Boston, MA 02215" +210955,Apple Airpods Headphones,1,150,06/11/19 15:10,"402 Maple St, San Francisco, CA 94016" +210956,Wired Headphones,1,11.99,06/11/19 18:34,"454 Spruce St, Boston, MA 02215" +210957,Lightning Charging Cable,1,14.95,06/08/19 00:10,"188 Spruce St, New York City, NY 10001" +210958,USB-C Charging Cable,1,11.95,06/16/19 22:12,"692 Willow St, San Francisco, CA 94016" +210959,Apple Airpods Headphones,1,150,06/18/19 12:46,"472 Cherry St, New York City, NY 10001" +210960,AAA Batteries (4-pack),1,2.99,06/29/19 06:56,"496 Chestnut St, Los Angeles, CA 90001" +210961,Macbook Pro Laptop,1,1700,06/04/19 19:32,"626 4th St, Boston, MA 02215" +210962,iPhone,1,700,06/18/19 16:17,"918 Ridge St, Los Angeles, CA 90001" +210962,Wired Headphones,1,11.99,06/18/19 16:17,"918 Ridge St, Los Angeles, CA 90001" +210963,Google Phone,2,600,06/09/19 13:35,"682 12th St, Los Angeles, CA 90001" +210964,Lightning Charging Cable,1,14.95,06/29/19 16:56,"665 South St, Atlanta, GA 30301" +210965,Lightning Charging Cable,1,14.95,06/12/19 21:20,"361 13th St, Boston, MA 02215" +210966,AA Batteries (4-pack),1,3.84,06/15/19 07:33,"390 1st St, Atlanta, GA 30301" +210967,AAA Batteries (4-pack),1,2.99,06/22/19 23:07,"157 1st St, San Francisco, CA 94016" +210968,Bose SoundSport Headphones,1,99.99,06/02/19 18:43,"667 8th St, San Francisco, CA 94016" +210969,AAA Batteries (4-pack),3,2.99,06/11/19 00:09,"572 Church St, Atlanta, GA 30301" +210970,USB-C Charging Cable,1,11.95,06/25/19 19:49,"994 Hickory St, Boston, MA 02215" +210971,Apple Airpods Headphones,1,150,06/30/19 17:22,"825 Hickory St, New York City, NY 10001" +210972,AAA Batteries (4-pack),1,2.99,06/09/19 15:17,"838 Jefferson St, Seattle, WA 98101" +210973,Google Phone,1,600,06/07/19 18:29,"375 Johnson St, Los Angeles, CA 90001" +210974,LG Washing Machine,1,600.0,06/26/19 14:13,"144 Ridge St, Portland, ME 04101" +210975,27in FHD Monitor,1,149.99,06/06/19 00:40,"267 Hickory St, San Francisco, CA 94016" +210976,Google Phone,1,600,06/23/19 08:46,"471 Park St, Seattle, WA 98101" +210977,Apple Airpods Headphones,1,150,06/15/19 07:48,"987 5th St, New York City, NY 10001" +210978,Lightning Charging Cable,2,14.95,06/12/19 13:15,"880 4th St, Boston, MA 02215" +210979,iPhone,1,700,06/20/19 18:24,"563 Sunset St, Los Angeles, CA 90001" +210980,Wired Headphones,1,11.99,06/30/19 04:08,"326 Pine St, Boston, MA 02215" +210981,USB-C Charging Cable,1,11.95,06/14/19 06:35,"458 7th St, Boston, MA 02215" +210982,USB-C Charging Cable,1,11.95,06/25/19 19:18,"161 7th St, Austin, TX 73301" +210983,Flatscreen TV,1,300,06/25/19 19:09,"904 12th St, Atlanta, GA 30301" +210984,Wired Headphones,1,11.99,06/27/19 15:18,"113 Church St, Los Angeles, CA 90001" +210985,AA Batteries (4-pack),1,3.84,06/19/19 15:25,"866 Lake St, Dallas, TX 75001" +210986,20in Monitor,1,109.99,06/03/19 09:50,"47 Maple St, Dallas, TX 75001" +210987,Apple Airpods Headphones,1,150,06/21/19 18:23,"614 Washington St, San Francisco, CA 94016" +210988,USB-C Charging Cable,2,11.95,06/05/19 12:57,"162 14th St, San Francisco, CA 94016" +210989,Vareebadd Phone,1,400,06/25/19 23:04,"162 South St, San Francisco, CA 94016" +210990,Bose SoundSport Headphones,1,99.99,06/20/19 16:19,"773 South St, Seattle, WA 98101" +210991,27in FHD Monitor,1,149.99,06/13/19 13:56,"633 9th St, Austin, TX 73301" +210992,iPhone,1,700,06/30/19 00:27,"343 Washington St, Seattle, WA 98101" +210993,AA Batteries (4-pack),2,3.84,06/15/19 01:35,"451 Hickory St, Dallas, TX 75001" +210994,Lightning Charging Cable,1,14.95,06/01/19 18:31,"225 7th St, Atlanta, GA 30301" +210995,Wired Headphones,1,11.99,06/25/19 10:43,"649 Jefferson St, San Francisco, CA 94016" +210996,AA Batteries (4-pack),1,3.84,06/26/19 09:12,"918 13th St, New York City, NY 10001" +210997,Bose SoundSport Headphones,1,99.99,06/24/19 18:04,"604 Lakeview St, New York City, NY 10001" +210998,AA Batteries (4-pack),1,3.84,06/16/19 09:41,"903 South St, Dallas, TX 75001" +210999,Flatscreen TV,1,300,06/07/19 20:54,"229 Forest St, Dallas, TX 75001" +211000,Apple Airpods Headphones,1,150,06/05/19 23:10,"652 5th St, Seattle, WA 98101" +211001,Wired Headphones,1,11.99,06/12/19 16:31,"786 Cherry St, Seattle, WA 98101" +211002,Apple Airpods Headphones,1,150,06/23/19 09:08,"284 Forest St, New York City, NY 10001" +211003,Bose SoundSport Headphones,1,99.99,06/14/19 19:35,"205 9th St, Los Angeles, CA 90001" +211004,Wired Headphones,1,11.99,06/13/19 03:47,"671 Hickory St, Boston, MA 02215" +211005,Vareebadd Phone,1,400,06/12/19 11:55,"164 Center St, San Francisco, CA 94016" +211005,Wired Headphones,1,11.99,06/12/19 11:55,"164 Center St, San Francisco, CA 94016" +211006,Wired Headphones,1,11.99,06/09/19 14:54,"685 Meadow St, San Francisco, CA 94016" +211007,Google Phone,1,600,06/13/19 23:41,"370 Meadow St, Boston, MA 02215" +211008,Apple Airpods Headphones,1,150,06/22/19 00:20,"74 Willow St, San Francisco, CA 94016" +211009,AAA Batteries (4-pack),1,2.99,06/04/19 23:55,"753 Spruce St, New York City, NY 10001" +211010,Apple Airpods Headphones,1,150,06/08/19 15:20,"100 14th St, Portland, OR 97035" +211011,Bose SoundSport Headphones,1,99.99,06/25/19 13:42,"264 6th St, Atlanta, GA 30301" +211012,USB-C Charging Cable,1,11.95,06/21/19 18:19,"536 Wilson St, New York City, NY 10001" +211013,Wired Headphones,1,11.99,06/27/19 12:39,"174 South St, Los Angeles, CA 90001" +211014,AAA Batteries (4-pack),1,2.99,06/03/19 23:23,"813 13th St, New York City, NY 10001" +211015,Apple Airpods Headphones,1,150,06/07/19 18:14,"883 Forest St, Boston, MA 02215" +211016,Apple Airpods Headphones,1,150,06/07/19 16:04,"192 Highland St, Boston, MA 02215" +211017,Wired Headphones,1,11.99,06/18/19 21:33,"204 13th St, Seattle, WA 98101" +211018,Bose SoundSport Headphones,1,99.99,06/06/19 19:32,"867 South St, Los Angeles, CA 90001" +211019,AAA Batteries (4-pack),1,2.99,06/28/19 20:03,"578 Ridge St, Atlanta, GA 30301" +211020,Lightning Charging Cable,2,14.95,06/20/19 22:36,"880 Spruce St, San Francisco, CA 94016" +211021,Google Phone,1,600,06/13/19 13:44,"334 12th St, San Francisco, CA 94016" +211022,Apple Airpods Headphones,1,150,06/10/19 19:34,"869 Lincoln St, New York City, NY 10001" +211023,Bose SoundSport Headphones,1,99.99,06/25/19 07:12,"83 1st St, San Francisco, CA 94016" +211024,Vareebadd Phone,1,400,06/09/19 20:43,"252 Dogwood St, New York City, NY 10001" +211025,Apple Airpods Headphones,1,150,06/27/19 08:40,"660 Madison St, San Francisco, CA 94016" +211026,Flatscreen TV,1,300,06/19/19 19:13,"709 Center St, Los Angeles, CA 90001" +211027,LG Washing Machine,1,600.0,06/27/19 12:13,"407 5th St, Seattle, WA 98101" +211028,AAA Batteries (4-pack),1,2.99,06/01/19 12:39,"170 North St, Dallas, TX 75001" +211029,Apple Airpods Headphones,1,150,06/16/19 10:56,"333 Walnut St, San Francisco, CA 94016" +211030,AA Batteries (4-pack),1,3.84,06/16/19 10:56,"438 2nd St, San Francisco, CA 94016" +211031,USB-C Charging Cable,1,11.95,06/13/19 13:44,"628 Ridge St, Boston, MA 02215" +211032,27in FHD Monitor,1,149.99,06/20/19 18:26,"401 8th St, New York City, NY 10001" +211033,iPhone,1,700,06/08/19 13:05,"77 Chestnut St, Los Angeles, CA 90001" +211033,Lightning Charging Cable,1,14.95,06/08/19 13:05,"77 Chestnut St, Los Angeles, CA 90001" +211034,Wired Headphones,1,11.99,06/17/19 21:33,"567 Cherry St, New York City, NY 10001" +211035,27in FHD Monitor,1,149.99,06/20/19 11:59,"303 6th St, San Francisco, CA 94016" +211036,AAA Batteries (4-pack),3,2.99,06/20/19 18:38,"113 Lake St, Los Angeles, CA 90001" +211037,AAA Batteries (4-pack),1,2.99,06/01/19 08:39,"101 Hickory St, San Francisco, CA 94016" +211038,USB-C Charging Cable,1,11.95,06/30/19 12:50,"855 2nd St, Austin, TX 73301" +211039,Lightning Charging Cable,1,14.95,06/17/19 08:30,"563 2nd St, Los Angeles, CA 90001" +211040,Wired Headphones,1,11.99,06/16/19 21:38,"558 12th St, Los Angeles, CA 90001" +211041,Wired Headphones,1,11.99,06/13/19 17:24,"125 Madison St, Los Angeles, CA 90001" +211042,Lightning Charging Cable,1,14.95,06/09/19 14:34,"4 Pine St, Boston, MA 02215" +211043,USB-C Charging Cable,1,11.95,06/03/19 11:38,"556 7th St, San Francisco, CA 94016" +211044,USB-C Charging Cable,1,11.95,06/24/19 18:03,"957 6th St, Atlanta, GA 30301" +211045,AAA Batteries (4-pack),2,2.99,06/13/19 18:45,"343 Maple St, Atlanta, GA 30301" +211046,Apple Airpods Headphones,1,150,06/01/19 21:37,"93 Pine St, San Francisco, CA 94016" +211047,Lightning Charging Cable,2,14.95,06/02/19 20:04,"333 Pine St, San Francisco, CA 94016" +211048,Lightning Charging Cable,1,14.95,06/17/19 08:33,"308 4th St, Dallas, TX 75001" +211049,iPhone,1,700,06/10/19 16:56,"879 14th St, Boston, MA 02215" +211050,USB-C Charging Cable,1,11.95,06/08/19 19:22,"541 Park St, Dallas, TX 75001" +211051,AA Batteries (4-pack),1,3.84,06/25/19 21:56,"506 Walnut St, Boston, MA 02215" +211052,Apple Airpods Headphones,1,150,06/04/19 07:25,"709 Sunset St, Dallas, TX 75001" +211053,USB-C Charging Cable,1,11.95,06/09/19 22:26,"326 13th St, San Francisco, CA 94016" +211054,Google Phone,1,600,06/29/19 00:03,"420 11th St, San Francisco, CA 94016" +211055,27in 4K Gaming Monitor,1,389.99,06/14/19 09:34,"615 Cherry St, New York City, NY 10001" +211056,USB-C Charging Cable,1,11.95,06/17/19 11:38,"355 Willow St, Austin, TX 73301" +211057,Apple Airpods Headphones,1,150,06/17/19 16:22,"718 Center St, New York City, NY 10001" +211058,27in 4K Gaming Monitor,1,389.99,06/03/19 19:57,"141 Jackson St, San Francisco, CA 94016" +211059,Lightning Charging Cable,1,14.95,06/03/19 14:51,"681 South St, Los Angeles, CA 90001" +211060,AA Batteries (4-pack),2,3.84,06/29/19 12:54,"878 9th St, Atlanta, GA 30301" +211061,AA Batteries (4-pack),1,3.84,06/23/19 19:48,"422 Main St, Los Angeles, CA 90001" +211062,USB-C Charging Cable,1,11.95,06/28/19 17:19,"612 Hill St, Seattle, WA 98101" +211063,Vareebadd Phone,1,400,06/29/19 22:24,"102 Main St, Dallas, TX 75001" +211064,Bose SoundSport Headphones,1,99.99,06/08/19 12:30,"792 2nd St, New York City, NY 10001" +211065,Lightning Charging Cable,1,14.95,06/27/19 22:26,"13 South St, Los Angeles, CA 90001" +211066,34in Ultrawide Monitor,1,379.99,06/17/19 01:30,"674 South St, New York City, NY 10001" +211067,27in FHD Monitor,1,149.99,06/20/19 14:46,"47 Spruce St, Dallas, TX 75001" +211068,iPhone,1,700,06/08/19 12:49,"590 10th St, New York City, NY 10001" +211068,Lightning Charging Cable,2,14.95,06/08/19 12:49,"590 10th St, New York City, NY 10001" +211069,USB-C Charging Cable,1,11.95,06/30/19 11:07,"488 5th St, Los Angeles, CA 90001" +211070,27in FHD Monitor,1,149.99,06/22/19 19:19,"989 12th St, San Francisco, CA 94016" +211071,20in Monitor,1,109.99,06/11/19 09:39,"884 Maple St, San Francisco, CA 94016" +211071,Wired Headphones,1,11.99,06/11/19 09:39,"884 Maple St, San Francisco, CA 94016" +211072,Flatscreen TV,1,300,06/19/19 17:31,"345 Highland St, San Francisco, CA 94016" +211073,AA Batteries (4-pack),1,3.84,06/29/19 21:20,"574 Wilson St, San Francisco, CA 94016" +211074,Apple Airpods Headphones,1,150,06/16/19 19:35,"642 4th St, San Francisco, CA 94016" +211075,AA Batteries (4-pack),1,3.84,06/15/19 12:22,"71 South St, San Francisco, CA 94016" +211076,ThinkPad Laptop,1,999.99,06/12/19 09:20,"734 8th St, Boston, MA 02215" +211077,34in Ultrawide Monitor,1,379.99,06/03/19 11:36,"455 Forest St, Portland, OR 97035" +211078,Vareebadd Phone,1,400,06/14/19 13:11,"811 Lake St, San Francisco, CA 94016" +211079,Lightning Charging Cable,1,14.95,06/13/19 16:56,"173 Johnson St, Portland, ME 04101" +211080,AAA Batteries (4-pack),2,2.99,06/09/19 12:39,"411 10th St, Portland, OR 97035" +211081,Lightning Charging Cable,1,14.95,06/08/19 12:36,"564 Adams St, San Francisco, CA 94016" +211082,27in FHD Monitor,1,149.99,06/03/19 22:51,"916 10th St, San Francisco, CA 94016" +211083,USB-C Charging Cable,1,11.95,06/23/19 12:49,"691 Jackson St, Dallas, TX 75001" +211084,USB-C Charging Cable,1,11.95,06/07/19 08:30,"778 Main St, Dallas, TX 75001" +211085,Wired Headphones,1,11.99,06/04/19 16:21,"653 Meadow St, Portland, OR 97035" +211086,Wired Headphones,2,11.99,06/15/19 10:39,"88 Forest St, Dallas, TX 75001" +211087,ThinkPad Laptop,1,999.99,06/22/19 11:45,"926 Main St, San Francisco, CA 94016" +211087,Bose SoundSport Headphones,1,99.99,06/22/19 11:45,"926 Main St, San Francisco, CA 94016" +211088,USB-C Charging Cable,2,11.95,06/22/19 12:14,"62 14th St, San Francisco, CA 94016" +211089,Flatscreen TV,1,300,06/07/19 21:36,"397 1st St, Dallas, TX 75001" +211090,AAA Batteries (4-pack),2,2.99,06/14/19 08:39,"776 Church St, San Francisco, CA 94016" +211091,Lightning Charging Cable,1,14.95,06/29/19 07:31,"987 Cedar St, New York City, NY 10001" +211092,AA Batteries (4-pack),3,3.84,06/28/19 13:10,"658 Cedar St, New York City, NY 10001" +211093,Apple Airpods Headphones,1,150,06/27/19 21:30,"528 1st St, Portland, ME 04101" +211094,USB-C Charging Cable,1,11.95,06/18/19 18:28,"927 Main St, Boston, MA 02215" +211095,Macbook Pro Laptop,1,1700,06/04/19 23:05,"843 Lake St, Boston, MA 02215" +211096,Google Phone,1,600,06/30/19 10:55,"289 Spruce St, Atlanta, GA 30301" +211097,AA Batteries (4-pack),1,3.84,06/27/19 18:38,"872 8th St, Los Angeles, CA 90001" +211098,USB-C Charging Cable,1,11.95,06/22/19 10:40,"725 Washington St, Los Angeles, CA 90001" +211099,Apple Airpods Headphones,1,150,06/01/19 15:15,"200 Center St, Los Angeles, CA 90001" +211100,Apple Airpods Headphones,1,150,06/07/19 19:03,"620 Hill St, San Francisco, CA 94016" +211101,27in 4K Gaming Monitor,1,389.99,06/09/19 20:33,"393 Lake St, Seattle, WA 98101" +211102,34in Ultrawide Monitor,1,379.99,06/07/19 18:34,"212 Wilson St, San Francisco, CA 94016" +211103,Lightning Charging Cable,1,14.95,06/24/19 11:26,"832 West St, New York City, NY 10001" +211104,Apple Airpods Headphones,1,150,06/21/19 18:57,"142 North St, New York City, NY 10001" +211105,Bose SoundSport Headphones,1,99.99,06/01/19 05:50,"699 11th St, Austin, TX 73301" +211106,20in Monitor,1,109.99,06/26/19 21:40,"114 Elm St, New York City, NY 10001" +211107,27in FHD Monitor,1,149.99,06/28/19 12:20,"856 Highland St, Boston, MA 02215" +211108,ThinkPad Laptop,1,999.99,06/16/19 00:36,"272 Madison St, Austin, TX 73301" +211109,Bose SoundSport Headphones,1,99.99,06/13/19 23:12,"549 1st St, New York City, NY 10001" +211110,Apple Airpods Headphones,1,150,06/09/19 13:16,"622 Sunset St, Seattle, WA 98101" +211111,Lightning Charging Cable,1,14.95,06/20/19 15:12,"129 Jefferson St, New York City, NY 10001" +211112,27in FHD Monitor,1,149.99,06/29/19 14:12,"657 Meadow St, New York City, NY 10001" +211113,Apple Airpods Headphones,1,150,06/15/19 09:16,"890 Lakeview St, New York City, NY 10001" +211114,AA Batteries (4-pack),1,3.84,06/20/19 09:19,"522 Walnut St, Portland, OR 97035" +211115,Vareebadd Phone,1,400,06/01/19 18:02,"283 Maple St, San Francisco, CA 94016" +211116,Wired Headphones,2,11.99,06/23/19 16:48,"827 Center St, New York City, NY 10001" +211117,Wired Headphones,1,11.99,06/18/19 03:55,"360 South St, Atlanta, GA 30301" +211118,Flatscreen TV,1,300,06/07/19 23:57,"761 7th St, Los Angeles, CA 90001" +211119,Wired Headphones,1,11.99,06/01/19 22:10,"8 South St, Seattle, WA 98101" +211120,iPhone,1,700,06/23/19 17:39,"134 Lakeview St, Boston, MA 02215" +211121,Flatscreen TV,1,300,06/20/19 21:45,"379 Sunset St, Atlanta, GA 30301" +211122,AA Batteries (4-pack),1,3.84,06/14/19 13:49,"804 Adams St, Los Angeles, CA 90001" +211122,Lightning Charging Cable,1,14.95,06/14/19 13:49,"804 Adams St, Los Angeles, CA 90001" +211123,Wired Headphones,1,11.99,06/07/19 19:15,"478 Johnson St, Boston, MA 02215" +211123,27in FHD Monitor,1,149.99,06/07/19 19:15,"478 Johnson St, Boston, MA 02215" +211124,USB-C Charging Cable,1,11.95,06/17/19 09:16,"19 Jefferson St, San Francisco, CA 94016" +211125,Bose SoundSport Headphones,1,99.99,06/26/19 12:01,"523 Lincoln St, San Francisco, CA 94016" +211126,Lightning Charging Cable,1,14.95,06/20/19 01:43,"53 Dogwood St, Dallas, TX 75001" +211127,Lightning Charging Cable,1,14.95,06/19/19 20:43,"663 Johnson St, San Francisco, CA 94016" +211128,Bose SoundSport Headphones,1,99.99,06/07/19 19:52,"824 13th St, Los Angeles, CA 90001" +211129,AA Batteries (4-pack),2,3.84,06/27/19 12:02,"322 Dogwood St, Portland, ME 04101" +211130,AAA Batteries (4-pack),1,2.99,06/20/19 11:12,"249 6th St, San Francisco, CA 94016" +211131,USB-C Charging Cable,1,11.95,06/01/19 18:28,"344 Hill St, Boston, MA 02215" +211132,USB-C Charging Cable,1,11.95,06/10/19 08:47,"533 5th St, Portland, ME 04101" +211133,Apple Airpods Headphones,1,150,06/04/19 13:54,"81 Chestnut St, San Francisco, CA 94016" +211134,Flatscreen TV,1,300,06/20/19 14:41,"22 2nd St, Austin, TX 73301" +211135,USB-C Charging Cable,1,11.95,06/07/19 16:13,"51 5th St, New York City, NY 10001" +211136,27in 4K Gaming Monitor,1,389.99,06/05/19 22:04,"441 Lake St, San Francisco, CA 94016" +211137,Apple Airpods Headphones,1,150,06/14/19 13:24,"576 Church St, Seattle, WA 98101" +211138,USB-C Charging Cable,1,11.95,06/04/19 08:00,"302 Sunset St, Dallas, TX 75001" +211139,20in Monitor,1,109.99,06/13/19 12:00,"159 Pine St, San Francisco, CA 94016" +211140,AAA Batteries (4-pack),2,2.99,06/13/19 08:34,"371 West St, New York City, NY 10001" +211141,AA Batteries (4-pack),1,3.84,06/28/19 11:24,"178 Lakeview St, San Francisco, CA 94016" +211142,27in 4K Gaming Monitor,1,389.99,06/29/19 18:12,"594 Church St, San Francisco, CA 94016" +211143,Bose SoundSport Headphones,1,99.99,06/13/19 16:16,"653 Lakeview St, Austin, TX 73301" +211144,Bose SoundSport Headphones,1,99.99,06/20/19 11:35,"289 Maple St, Dallas, TX 75001" +211145,AAA Batteries (4-pack),1,2.99,06/17/19 13:01,"365 Sunset St, Atlanta, GA 30301" +211146,Apple Airpods Headphones,1,150,06/16/19 13:44,"266 1st St, San Francisco, CA 94016" +211147,20in Monitor,1,109.99,06/07/19 19:35,"3 Maple St, Los Angeles, CA 90001" +211148,Macbook Pro Laptop,1,1700,06/05/19 08:18,"241 Jefferson St, San Francisco, CA 94016" +211149,AAA Batteries (4-pack),2,2.99,06/30/19 17:27,"308 North St, Portland, OR 97035" +211150,27in FHD Monitor,1,149.99,06/01/19 11:19,"113 Walnut St, Austin, TX 73301" +211151,Bose SoundSport Headphones,1,99.99,06/04/19 14:05,"768 West St, New York City, NY 10001" +211152,USB-C Charging Cable,1,11.95,06/04/19 17:54,"112 Adams St, San Francisco, CA 94016" +211153,27in 4K Gaming Monitor,1,389.99,06/01/19 11:48,"26 Lake St, New York City, NY 10001" +211154,AAA Batteries (4-pack),2,2.99,06/11/19 11:57,"627 Jackson St, Boston, MA 02215" +211155,AAA Batteries (4-pack),4,2.99,06/17/19 12:14,"736 Adams St, Atlanta, GA 30301" +211156,Apple Airpods Headphones,1,150,06/30/19 19:18,"215 Adams St, Los Angeles, CA 90001" +211157,AA Batteries (4-pack),2,3.84,06/25/19 20:24,"585 Dogwood St, New York City, NY 10001" +211158,Lightning Charging Cable,1,14.95,06/08/19 10:54,"677 River St, Dallas, TX 75001" +211159,Wired Headphones,1,11.99,06/24/19 11:07,"155 Hill St, New York City, NY 10001" +211160,USB-C Charging Cable,2,11.95,06/12/19 09:44,"563 9th St, Boston, MA 02215" +211161,Lightning Charging Cable,1,14.95,06/29/19 12:43,"911 Forest St, Boston, MA 02215" +211162,AAA Batteries (4-pack),1,2.99,06/23/19 22:02,"812 8th St, San Francisco, CA 94016" +211163,Lightning Charging Cable,1,14.95,06/17/19 09:40,"443 Lakeview St, New York City, NY 10001" +211164,Lightning Charging Cable,1,14.95,06/21/19 18:32,"55 14th St, San Francisco, CA 94016" +211165,Wired Headphones,1,11.99,06/07/19 22:42,"520 10th St, San Francisco, CA 94016" +211166,USB-C Charging Cable,1,11.95,06/27/19 19:04,"102 Center St, Dallas, TX 75001" +211167,Google Phone,1,600,06/20/19 22:49,"643 Cedar St, Boston, MA 02215" +211168,AA Batteries (4-pack),1,3.84,06/22/19 23:49,"86 Cedar St, Portland, OR 97035" +211169,ThinkPad Laptop,1,999.99,06/21/19 15:17,"619 Pine St, San Francisco, CA 94016" +211170,Wired Headphones,1,11.99,06/29/19 10:57,"379 Dogwood St, New York City, NY 10001" +211171,USB-C Charging Cable,1,11.95,06/30/19 23:26,"481 Walnut St, Austin, TX 73301" +211172,USB-C Charging Cable,1,11.95,06/30/19 10:07,"447 Spruce St, Boston, MA 02215" +211173,34in Ultrawide Monitor,1,379.99,06/05/19 12:38,"512 Forest St, San Francisco, CA 94016" +211174,34in Ultrawide Monitor,1,379.99,06/22/19 22:01,"934 2nd St, Atlanta, GA 30301" +211175,USB-C Charging Cable,1,11.95,06/27/19 11:22,"248 Forest St, San Francisco, CA 94016" +211176,Apple Airpods Headphones,1,150,06/21/19 17:50,"683 11th St, New York City, NY 10001" +211177,Apple Airpods Headphones,1,150,06/18/19 12:46,"88 Hickory St, Portland, ME 04101" +211178,Google Phone,1,600,06/28/19 07:24,"231 11th St, Boston, MA 02215" +211179,Macbook Pro Laptop,1,1700,06/20/19 21:34,"723 Madison St, San Francisco, CA 94016" +211180,AA Batteries (4-pack),2,3.84,06/07/19 17:45,"697 Pine St, San Francisco, CA 94016" +211181,Lightning Charging Cable,1,14.95,06/25/19 06:42,"846 Wilson St, Dallas, TX 75001" +211182,AAA Batteries (4-pack),2,2.99,06/07/19 13:10,"431 Lakeview St, San Francisco, CA 94016" +211182,USB-C Charging Cable,1,11.95,06/07/19 13:10,"431 Lakeview St, San Francisco, CA 94016" +211183,Apple Airpods Headphones,1,150,06/30/19 15:43,"772 West St, New York City, NY 10001" +211184,Wired Headphones,1,11.99,06/24/19 20:52,"405 14th St, Dallas, TX 75001" +211185,AAA Batteries (4-pack),3,2.99,06/09/19 18:45,"67 8th St, Boston, MA 02215" +211186,iPhone,1,700,06/27/19 20:55,"98 Jefferson St, San Francisco, CA 94016" +211187,Flatscreen TV,1,300,06/04/19 10:53,"876 Sunset St, New York City, NY 10001" +211188,AA Batteries (4-pack),1,3.84,06/06/19 14:39,"72 Hickory St, Portland, OR 97035" +211189,Wired Headphones,1,11.99,06/08/19 19:14,"66 Cedar St, San Francisco, CA 94016" +211190,USB-C Charging Cable,1,11.95,06/09/19 12:04,"550 Willow St, Dallas, TX 75001" +211191,AAA Batteries (4-pack),1,2.99,06/30/19 10:58,"916 Highland St, Seattle, WA 98101" +211192,27in FHD Monitor,1,149.99,06/05/19 01:35,"711 Lakeview St, Atlanta, GA 30301" +211193,USB-C Charging Cable,1,11.95,06/15/19 17:36,"72 Pine St, Seattle, WA 98101" +211194,AAA Batteries (4-pack),2,2.99,06/11/19 13:04,"831 Johnson St, Los Angeles, CA 90001" +211195,Lightning Charging Cable,1,14.95,06/03/19 18:15,"903 Ridge St, Austin, TX 73301" +211196,iPhone,1,700,06/11/19 09:49,"722 Adams St, San Francisco, CA 94016" +211197,Apple Airpods Headphones,1,150,06/29/19 21:53,"26 Sunset St, Los Angeles, CA 90001" +211198,Vareebadd Phone,1,400,06/22/19 14:39,"819 5th St, Seattle, WA 98101" +211198,USB-C Charging Cable,1,11.95,06/22/19 14:39,"819 5th St, Seattle, WA 98101" +211199,AA Batteries (4-pack),4,3.84,06/16/19 15:49,"19 Sunset St, San Francisco, CA 94016" +211200,USB-C Charging Cable,1,11.95,06/05/19 19:50,"64 6th St, Atlanta, GA 30301" +211201,20in Monitor,1,109.99,06/23/19 12:24,"508 Forest St, Austin, TX 73301" +211202,AA Batteries (4-pack),2,3.84,06/29/19 01:52,"802 Elm St, San Francisco, CA 94016" +211203,AA Batteries (4-pack),1,3.84,06/21/19 16:14,"720 8th St, San Francisco, CA 94016" +211204,Google Phone,1,600,06/16/19 15:49,"939 6th St, Boston, MA 02215" +211205,Macbook Pro Laptop,1,1700,06/17/19 23:45,"47 Willow St, San Francisco, CA 94016" +211206,Apple Airpods Headphones,1,150,06/21/19 08:40,"536 4th St, Portland, ME 04101" +211207,Bose SoundSport Headphones,1,99.99,06/23/19 22:02,"504 Cedar St, San Francisco, CA 94016" +211208,Macbook Pro Laptop,1,1700,06/30/19 12:20,"742 8th St, Los Angeles, CA 90001" +211209,27in 4K Gaming Monitor,1,389.99,06/09/19 11:42,"34 Lakeview St, Dallas, TX 75001" +211210,Wired Headphones,1,11.99,06/05/19 00:03,"990 Pine St, Dallas, TX 75001" +211211,USB-C Charging Cable,1,11.95,06/17/19 08:33,"157 Adams St, San Francisco, CA 94016" +211212,AA Batteries (4-pack),3,3.84,06/16/19 11:47,"737 2nd St, Los Angeles, CA 90001" +211213,27in FHD Monitor,1,149.99,06/01/19 16:21,"723 Chestnut St, Portland, OR 97035" +211214,Wired Headphones,1,11.99,06/18/19 20:08,"585 4th St, San Francisco, CA 94016" +211215,USB-C Charging Cable,1,11.95,06/24/19 19:38,"729 7th St, San Francisco, CA 94016" +211216,ThinkPad Laptop,1,999.99,06/15/19 08:10,"728 Cedar St, Los Angeles, CA 90001" +211217,USB-C Charging Cable,1,11.95,06/01/19 10:38,"523 7th St, Los Angeles, CA 90001" +211218,USB-C Charging Cable,1,11.95,06/17/19 19:01,"319 Sunset St, Los Angeles, CA 90001" +211219,20in Monitor,1,109.99,06/08/19 20:36,"568 8th St, San Francisco, CA 94016" +211220,20in Monitor,1,109.99,06/16/19 17:14,"148 1st St, San Francisco, CA 94016" +211221,Macbook Pro Laptop,1,1700,06/08/19 22:07,"584 West St, Austin, TX 73301" +211222,USB-C Charging Cable,1,11.95,06/08/19 15:01,"680 Sunset St, Portland, OR 97035" +211223,Apple Airpods Headphones,1,150,06/18/19 18:23,"548 Highland St, San Francisco, CA 94016" +211224,Wired Headphones,1,11.99,06/13/19 12:28,"897 Adams St, Dallas, TX 75001" +211224,Lightning Charging Cable,2,14.95,06/13/19 12:28,"897 Adams St, Dallas, TX 75001" +211225,Bose SoundSport Headphones,1,99.99,06/22/19 13:49,"355 Highland St, San Francisco, CA 94016" +211226,AA Batteries (4-pack),1,3.84,06/04/19 12:23,"200 Hickory St, Los Angeles, CA 90001" +211227,27in FHD Monitor,1,149.99,06/16/19 10:44,"599 Willow St, New York City, NY 10001" +211228,AA Batteries (4-pack),1,3.84,06/27/19 07:37,"940 Cherry St, Los Angeles, CA 90001" +211229,Apple Airpods Headphones,1,150,06/23/19 12:27,"804 9th St, San Francisco, CA 94016" +211230,USB-C Charging Cable,1,11.95,06/08/19 07:24,"782 Jackson St, New York City, NY 10001" +211231,Lightning Charging Cable,1,14.95,06/09/19 14:30,"8 5th St, Atlanta, GA 30301" +211232,Wired Headphones,1,11.99,06/16/19 10:05,"435 Park St, Atlanta, GA 30301" +211233,27in 4K Gaming Monitor,1,389.99,06/18/19 20:46,"197 Lake St, Boston, MA 02215" +211234,34in Ultrawide Monitor,1,379.99,06/26/19 10:38,"221 5th St, Seattle, WA 98101" +211235,AAA Batteries (4-pack),1,2.99,06/16/19 19:27,"108 8th St, Dallas, TX 75001" +211236,AA Batteries (4-pack),1,3.84,06/10/19 18:15,"172 Walnut St, Seattle, WA 98101" +211237,Wired Headphones,1,11.99,06/04/19 19:10,"884 River St, Portland, OR 97035" +211238,USB-C Charging Cable,1,11.95,06/29/19 11:29,"259 Park St, Seattle, WA 98101" +211239,AA Batteries (4-pack),1,3.84,06/17/19 17:51,"57 Jackson St, Dallas, TX 75001" +211240,AAA Batteries (4-pack),1,2.99,06/28/19 13:37,"513 Madison St, Los Angeles, CA 90001" +211241,ThinkPad Laptop,1,999.99,06/25/19 16:15,"969 Park St, Boston, MA 02215" +211242,Wired Headphones,1,11.99,06/20/19 12:31,"359 Maple St, Los Angeles, CA 90001" +211243,Bose SoundSport Headphones,1,99.99,06/28/19 00:09,"549 2nd St, Boston, MA 02215" +211244,Wired Headphones,1,11.99,06/11/19 08:17,"751 River St, San Francisco, CA 94016" +211245,AA Batteries (4-pack),1,3.84,06/26/19 10:17,"16 8th St, San Francisco, CA 94016" +211246,USB-C Charging Cable,1,11.95,06/11/19 19:03,"479 Hickory St, Dallas, TX 75001" +211247,27in 4K Gaming Monitor,1,389.99,06/11/19 18:49,"319 Adams St, Boston, MA 02215" +211248,27in 4K Gaming Monitor,1,389.99,06/18/19 19:13,"153 5th St, San Francisco, CA 94016" +211249,AAA Batteries (4-pack),1,2.99,06/16/19 12:54,"992 8th St, San Francisco, CA 94016" +211250,Lightning Charging Cable,1,14.95,06/07/19 19:14,"267 5th St, Portland, OR 97035" +211251,27in FHD Monitor,1,149.99,06/13/19 12:34,"804 Spruce St, San Francisco, CA 94016" +211252,27in FHD Monitor,1,149.99,06/03/19 11:31,"857 Wilson St, Austin, TX 73301" +211253,27in FHD Monitor,1,149.99,06/28/19 17:54,"978 Pine St, Los Angeles, CA 90001" +211254,Wired Headphones,1,11.99,06/25/19 13:07,"672 Wilson St, Seattle, WA 98101" +211255,Wired Headphones,1,11.99,06/17/19 16:12,"223 11th St, New York City, NY 10001" +211255,27in FHD Monitor,1,149.99,06/17/19 16:12,"223 11th St, New York City, NY 10001" +211256,USB-C Charging Cable,1,11.95,06/14/19 13:16,"808 1st St, Portland, OR 97035" +211257,Lightning Charging Cable,1,14.95,06/25/19 00:19,"831 Spruce St, Los Angeles, CA 90001" +211258,Apple Airpods Headphones,1,150,06/02/19 11:32,"191 South St, San Francisco, CA 94016" +211259,AA Batteries (4-pack),1,3.84,06/08/19 17:59,"721 Lake St, Los Angeles, CA 90001" +211260,iPhone,1,700,06/17/19 07:56,"569 Maple St, Atlanta, GA 30301" +211261,Wired Headphones,2,11.99,06/15/19 13:56,"31 Main St, Dallas, TX 75001" +211262,USB-C Charging Cable,1,11.95,06/19/19 15:28,"762 Willow St, Atlanta, GA 30301" +211263,iPhone,1,700,06/12/19 22:53,"435 Adams St, Seattle, WA 98101" +211264,Apple Airpods Headphones,1,150,06/14/19 16:46,"155 Washington St, San Francisco, CA 94016" +211265,ThinkPad Laptop,1,999.99,06/24/19 16:44,"24 Lake St, Boston, MA 02215" +211266,LG Dryer,1,600.0,06/06/19 20:35,"749 Wilson St, Seattle, WA 98101" +211267,USB-C Charging Cable,1,11.95,06/17/19 21:44,"183 Main St, Seattle, WA 98101" +211268,AA Batteries (4-pack),1,3.84,06/12/19 15:35,"603 North St, Boston, MA 02215" +211269,USB-C Charging Cable,1,11.95,06/12/19 18:27,"526 Spruce St, San Francisco, CA 94016" +211270,Google Phone,1,600,06/24/19 17:06,"987 4th St, San Francisco, CA 94016" +211271,Wired Headphones,1,11.99,06/13/19 15:00,"411 13th St, Dallas, TX 75001" +211272,34in Ultrawide Monitor,1,379.99,06/28/19 22:07,"786 5th St, Boston, MA 02215" +211273,Bose SoundSport Headphones,1,99.99,06/14/19 14:13,"81 Hickory St, San Francisco, CA 94016" +211274,ThinkPad Laptop,1,999.99,06/20/19 19:31,"691 Lakeview St, Los Angeles, CA 90001" +211275,Wired Headphones,1,11.99,06/13/19 21:02,"591 11th St, Portland, OR 97035" +211276,Bose SoundSport Headphones,1,99.99,06/19/19 14:11,"978 Madison St, Dallas, TX 75001" +211277,AA Batteries (4-pack),1,3.84,06/06/19 17:35,"999 Washington St, Portland, ME 04101" +211278,AA Batteries (4-pack),1,3.84,06/10/19 22:14,"177 Hill St, New York City, NY 10001" +211279,Bose SoundSport Headphones,1,99.99,06/30/19 20:10,"293 5th St, San Francisco, CA 94016" +211280,20in Monitor,1,109.99,06/15/19 13:55,"888 Hill St, New York City, NY 10001" +211281,Apple Airpods Headphones,1,150,06/01/19 20:44,"472 South St, Los Angeles, CA 90001" +211282,27in 4K Gaming Monitor,1,389.99,06/15/19 16:37,"494 Park St, Boston, MA 02215" +211283,USB-C Charging Cable,1,11.95,06/18/19 23:48,"70 Walnut St, Portland, OR 97035" +211284,AA Batteries (4-pack),1,3.84,06/02/19 16:42,"720 1st St, New York City, NY 10001" +211285,Lightning Charging Cable,2,14.95,06/17/19 14:33,"23 6th St, New York City, NY 10001" +211286,Apple Airpods Headphones,1,150,06/27/19 20:39,"863 Sunset St, New York City, NY 10001" +211287,Bose SoundSport Headphones,1,99.99,06/16/19 11:04,"750 Walnut St, San Francisco, CA 94016" +211288,AA Batteries (4-pack),1,3.84,06/07/19 11:49,"61 9th St, Los Angeles, CA 90001" +211289,Wired Headphones,1,11.99,06/04/19 11:29,"526 Wilson St, San Francisco, CA 94016" +211290,Apple Airpods Headphones,1,150,06/23/19 14:22,"382 Johnson St, Austin, TX 73301" +211291,Wired Headphones,1,11.99,06/22/19 16:13,"937 Elm St, Seattle, WA 98101" +211292,Apple Airpods Headphones,1,150,06/06/19 20:23,"520 1st St, San Francisco, CA 94016" +211293,iPhone,1,700,06/11/19 06:49,"924 South St, San Francisco, CA 94016" +211294,AAA Batteries (4-pack),1,2.99,06/28/19 17:45,"792 Park St, San Francisco, CA 94016" +211295,USB-C Charging Cable,1,11.95,06/13/19 18:53,"3 11th St, Los Angeles, CA 90001" +211296,Apple Airpods Headphones,1,150,06/29/19 16:50,"437 Lakeview St, Dallas, TX 75001" +211297,AAA Batteries (4-pack),1,2.99,06/22/19 18:33,"8 13th St, Seattle, WA 98101" +211298,Wired Headphones,1,11.99,06/26/19 20:25,"197 Lincoln St, Boston, MA 02215" +211299,Google Phone,1,600,06/20/19 13:03,"653 Spruce St, New York City, NY 10001" +211299,USB-C Charging Cable,1,11.95,06/20/19 13:03,"653 Spruce St, New York City, NY 10001" +211300,Flatscreen TV,1,300,06/09/19 10:57,"92 Washington St, Atlanta, GA 30301" +211301,Apple Airpods Headphones,1,150,06/09/19 10:47,"505 Johnson St, Austin, TX 73301" +211302,34in Ultrawide Monitor,1,379.99,06/17/19 17:45,"243 Hill St, New York City, NY 10001" +211303,20in Monitor,1,109.99,06/02/19 11:53,"407 West St, Los Angeles, CA 90001" +211304,Lightning Charging Cable,2,14.95,06/22/19 23:06,"552 Lake St, Atlanta, GA 30301" +211305,Lightning Charging Cable,1,14.95,06/20/19 12:12,"62 11th St, New York City, NY 10001" +211306,27in FHD Monitor,1,149.99,06/26/19 12:21,"774 Cedar St, Los Angeles, CA 90001" +211307,Apple Airpods Headphones,1,150,06/14/19 11:18,"560 Wilson St, Los Angeles, CA 90001" +211308,USB-C Charging Cable,1,11.95,06/26/19 20:32,"49 Lincoln St, Los Angeles, CA 90001" +211309,USB-C Charging Cable,2,11.95,06/04/19 09:00,"771 Lakeview St, Los Angeles, CA 90001" +211310,AAA Batteries (4-pack),2,2.99,06/09/19 12:21,"520 Cedar St, New York City, NY 10001" +211311,USB-C Charging Cable,1,11.95,06/14/19 16:47,"291 Cherry St, San Francisco, CA 94016" +211312,USB-C Charging Cable,1,11.95,06/01/19 18:12,"809 Forest St, New York City, NY 10001" +211313,USB-C Charging Cable,1,11.95,06/01/19 12:19,"764 Elm St, Boston, MA 02215" +211314,Bose SoundSport Headphones,1,99.99,06/23/19 01:11,"160 Lake St, New York City, NY 10001" +211315,AAA Batteries (4-pack),2,2.99,06/26/19 10:07,"372 4th St, Austin, TX 73301" +211316,Apple Airpods Headphones,1,150,06/23/19 22:53,"122 Lakeview St, Los Angeles, CA 90001" +211317,Lightning Charging Cable,1,14.95,06/17/19 07:49,"694 Center St, San Francisco, CA 94016" +211318,AAA Batteries (4-pack),1,2.99,06/11/19 12:24,"126 Park St, New York City, NY 10001" +211319,Bose SoundSport Headphones,1,99.99,06/26/19 10:40,"266 Lakeview St, New York City, NY 10001" +211320,iPhone,1,700,06/29/19 21:14,"793 Hickory St, Los Angeles, CA 90001" +211321,AAA Batteries (4-pack),1,2.99,06/20/19 22:19,"842 River St, San Francisco, CA 94016" +211322,AA Batteries (4-pack),1,3.84,06/01/19 20:36,"911 13th St, San Francisco, CA 94016" +211323,USB-C Charging Cable,1,11.95,06/21/19 23:27,"621 Walnut St, Portland, OR 97035" +211323,27in FHD Monitor,1,149.99,06/21/19 23:27,"621 Walnut St, Portland, OR 97035" +211324,Flatscreen TV,1,300,06/28/19 12:58,"774 Johnson St, Los Angeles, CA 90001" +211325,Bose SoundSport Headphones,1,99.99,06/17/19 22:52,"758 12th St, Austin, TX 73301" +211326,USB-C Charging Cable,1,11.95,06/28/19 22:53,"701 Lincoln St, Los Angeles, CA 90001" +211327,Apple Airpods Headphones,1,150,06/15/19 00:26,"521 Madison St, Boston, MA 02215" +211328,Apple Airpods Headphones,1,150,06/06/19 13:30,"427 8th St, San Francisco, CA 94016" +211329,Wired Headphones,1,11.99,06/17/19 12:51,"887 North St, San Francisco, CA 94016" +211330,27in FHD Monitor,1,149.99,06/05/19 18:27,"445 Madison St, Atlanta, GA 30301" +211331,Wired Headphones,1,11.99,06/19/19 18:57,"59 14th St, Austin, TX 73301" +211332,AAA Batteries (4-pack),1,2.99,06/19/19 01:13,"678 Hickory St, Los Angeles, CA 90001" +211333,34in Ultrawide Monitor,1,379.99,06/17/19 08:04,"943 14th St, San Francisco, CA 94016" +211334,Lightning Charging Cable,1,14.95,06/30/19 09:33,"941 13th St, San Francisco, CA 94016" +211335,USB-C Charging Cable,1,11.95,06/30/19 09:50,"400 Adams St, Boston, MA 02215" +211336,Lightning Charging Cable,1,14.95,06/07/19 00:15,"609 6th St, San Francisco, CA 94016" +211337,34in Ultrawide Monitor,1,379.99,06/06/19 21:36,"567 11th St, San Francisco, CA 94016" +211338,Wired Headphones,1,11.99,06/22/19 16:13,"532 4th St, Portland, OR 97035" +211339,LG Washing Machine,1,600.0,06/23/19 18:43,"53 6th St, Los Angeles, CA 90001" +211340,27in FHD Monitor,1,149.99,06/11/19 23:49,"696 Johnson St, Portland, OR 97035" +211341,AAA Batteries (4-pack),1,2.99,06/12/19 13:41,"185 Meadow St, New York City, NY 10001" +211342,Lightning Charging Cable,1,14.95,06/16/19 14:54,"553 Park St, Boston, MA 02215" +211343,USB-C Charging Cable,1,11.95,06/27/19 16:13,"147 Jefferson St, Boston, MA 02215" +211344,Vareebadd Phone,1,400,06/18/19 10:24,"168 Elm St, San Francisco, CA 94016" +211344,Wired Headphones,1,11.99,06/18/19 10:24,"168 Elm St, San Francisco, CA 94016" +211345,iPhone,1,700,06/21/19 12:49,"458 Cedar St, Austin, TX 73301" +211346,Lightning Charging Cable,1,14.95,06/11/19 21:28,"1 Lake St, San Francisco, CA 94016" +211347,Bose SoundSport Headphones,1,99.99,06/07/19 18:56,"802 11th St, Portland, OR 97035" +211348,AAA Batteries (4-pack),1,2.99,06/08/19 14:23,"575 Washington St, New York City, NY 10001" +211349,Bose SoundSport Headphones,1,99.99,06/06/19 19:39,"191 14th St, Los Angeles, CA 90001" +211350,Lightning Charging Cable,1,14.95,06/20/19 16:11,"47 1st St, San Francisco, CA 94016" +211351,iPhone,1,700,06/24/19 17:34,"529 Hill St, Los Angeles, CA 90001" +211352,Google Phone,1,600,06/06/19 15:44,"864 Hickory St, New York City, NY 10001" +211353,Bose SoundSport Headphones,1,99.99,06/27/19 11:56,"574 Cedar St, San Francisco, CA 94016" +211354,AAA Batteries (4-pack),3,2.99,06/27/19 15:40,"607 Pine St, Boston, MA 02215" +211355,Lightning Charging Cable,1,14.95,06/22/19 09:41,"991 River St, New York City, NY 10001" +211355,AA Batteries (4-pack),1,3.84,06/22/19 09:41,"991 River St, New York City, NY 10001" +211356,AAA Batteries (4-pack),1,2.99,06/23/19 19:14,"507 Hickory St, Seattle, WA 98101" +211357,Flatscreen TV,1,300,06/22/19 20:44,"758 River St, San Francisco, CA 94016" +211358,Lightning Charging Cable,1,14.95,06/26/19 17:16,"46 8th St, Atlanta, GA 30301" +211359,USB-C Charging Cable,2,11.95,06/17/19 00:19,"460 South St, Portland, ME 04101" +211360,Bose SoundSport Headphones,1,99.99,06/07/19 11:07,"317 Lincoln St, San Francisco, CA 94016" +211361,Wired Headphones,1,11.99,06/29/19 15:45,"237 Elm St, San Francisco, CA 94016" +211362,27in 4K Gaming Monitor,1,389.99,06/19/19 09:09,"427 Spruce St, San Francisco, CA 94016" +211363,Flatscreen TV,1,300,06/25/19 14:41,"629 Jefferson St, Austin, TX 73301" +211364,Wired Headphones,1,11.99,06/20/19 17:30,"521 River St, Los Angeles, CA 90001" +211365,AA Batteries (4-pack),2,3.84,06/02/19 14:25,"988 West St, San Francisco, CA 94016" +211366,Wired Headphones,1,11.99,06/20/19 13:45,"114 4th St, Portland, OR 97035" +211367,Vareebadd Phone,1,400,06/06/19 21:15,"971 Ridge St, Portland, ME 04101" +211368,Google Phone,1,600,06/20/19 17:37,"142 Forest St, Boston, MA 02215" +211369,AAA Batteries (4-pack),1,2.99,06/03/19 13:09,"853 4th St, Boston, MA 02215" +211370,AA Batteries (4-pack),1,3.84,06/03/19 08:50,"955 6th St, New York City, NY 10001" +211371,Apple Airpods Headphones,1,150,06/06/19 16:07,"558 14th St, Los Angeles, CA 90001" +211372,AA Batteries (4-pack),1,3.84,06/25/19 22:37,"522 5th St, San Francisco, CA 94016" +211373,AAA Batteries (4-pack),1,2.99,06/21/19 11:05,"811 Spruce St, New York City, NY 10001" +211374,USB-C Charging Cable,1,11.95,06/21/19 09:13,"919 Walnut St, San Francisco, CA 94016" +211375,AA Batteries (4-pack),1,3.84,06/18/19 15:23,"246 6th St, Los Angeles, CA 90001" +211376,AAA Batteries (4-pack),1,2.99,06/01/19 21:27,"143 8th St, Seattle, WA 98101" +211377,Bose SoundSport Headphones,1,99.99,06/20/19 07:53,"912 River St, Boston, MA 02215" +211378,Google Phone,1,600,06/30/19 20:31,"887 Jefferson St, Atlanta, GA 30301" +211379,AA Batteries (4-pack),1,3.84,06/25/19 21:10,"340 Jackson St, New York City, NY 10001" +211380,27in FHD Monitor,1,149.99,06/10/19 18:18,"64 7th St, Dallas, TX 75001" +211381,USB-C Charging Cable,1,11.95,06/23/19 09:24,"506 13th St, Los Angeles, CA 90001" +211382,34in Ultrawide Monitor,1,379.99,06/19/19 18:16,"183 Sunset St, San Francisco, CA 94016" +211383,Lightning Charging Cable,1,14.95,06/04/19 07:10,"559 West St, San Francisco, CA 94016" +211384,20in Monitor,1,109.99,06/01/19 19:18,"576 Jefferson St, New York City, NY 10001" +211385,AAA Batteries (4-pack),2,2.99,06/11/19 06:16,"889 Walnut St, Portland, OR 97035" +211386,Apple Airpods Headphones,1,150,06/05/19 09:10,"771 Main St, San Francisco, CA 94016" +211387,34in Ultrawide Monitor,1,379.99,06/26/19 13:38,"844 2nd St, Los Angeles, CA 90001" +211388,iPhone,1,700,06/15/19 11:14,"45 Main St, Seattle, WA 98101" +211389,AA Batteries (4-pack),1,3.84,06/20/19 16:19,"300 Forest St, San Francisco, CA 94016" +211390,iPhone,1,700,06/22/19 23:11,"899 Spruce St, Boston, MA 02215" +211391,27in 4K Gaming Monitor,1,389.99,06/30/19 18:35,"479 5th St, Los Angeles, CA 90001" +211392,20in Monitor,1,109.99,06/07/19 16:23,"141 Lakeview St, Dallas, TX 75001" +211393,LG Dryer,1,600.0,06/18/19 09:31,"162 11th St, San Francisco, CA 94016" +211394,Bose SoundSport Headphones,1,99.99,06/02/19 09:14,"402 14th St, San Francisco, CA 94016" +211395,27in FHD Monitor,1,149.99,06/12/19 22:23,"544 9th St, Seattle, WA 98101" +211396,AAA Batteries (4-pack),2,2.99,06/26/19 15:55,"493 Center St, Dallas, TX 75001" +211397,AA Batteries (4-pack),1,3.84,06/02/19 11:28,"936 River St, Seattle, WA 98101" +211398,ThinkPad Laptop,1,999.99,06/10/19 13:38,"175 10th St, Los Angeles, CA 90001" +211399,20in Monitor,1,109.99,06/12/19 23:24,"997 Jackson St, San Francisco, CA 94016" +211400,AA Batteries (4-pack),1,3.84,06/02/19 09:48,"892 Park St, Dallas, TX 75001" +211401,Wired Headphones,1,11.99,06/22/19 16:26,"907 Jefferson St, San Francisco, CA 94016" +211402,AAA Batteries (4-pack),1,2.99,06/19/19 20:43,"401 6th St, Los Angeles, CA 90001" +211403,Google Phone,1,600,06/15/19 18:30,"942 Jackson St, Austin, TX 73301" +211404,Lightning Charging Cable,1,14.95,06/28/19 19:55,"332 Lincoln St, San Francisco, CA 94016" +211405,Bose SoundSport Headphones,1,99.99,06/05/19 22:09,"177 Walnut St, San Francisco, CA 94016" +211406,20in Monitor,1,109.99,06/26/19 10:07,"803 River St, Atlanta, GA 30301" +211407,Bose SoundSport Headphones,1,99.99,06/12/19 21:32,"940 1st St, Los Angeles, CA 90001" +211408,Lightning Charging Cable,1,14.95,06/07/19 00:14,"670 Hill St, Portland, OR 97035" +211409,Lightning Charging Cable,1,14.95,06/06/19 17:46,"811 Main St, Portland, OR 97035" +211410,iPhone,1,700,06/29/19 18:18,"201 4th St, Dallas, TX 75001" +211410,Apple Airpods Headphones,1,150,06/29/19 18:18,"201 4th St, Dallas, TX 75001" +211411,Apple Airpods Headphones,1,150,06/22/19 19:06,"810 Elm St, San Francisco, CA 94016" +211412,27in 4K Gaming Monitor,1,389.99,06/26/19 15:19,"350 Highland St, San Francisco, CA 94016" +211413,AAA Batteries (4-pack),1,2.99,06/21/19 11:07,"702 Lake St, Atlanta, GA 30301" +211414,Wired Headphones,1,11.99,06/09/19 22:12,"864 2nd St, Dallas, TX 75001" +211415,Bose SoundSport Headphones,1,99.99,06/02/19 14:41,"210 Main St, Dallas, TX 75001" +211416,20in Monitor,1,109.99,06/19/19 17:37,"81 Lakeview St, Los Angeles, CA 90001" +211417,USB-C Charging Cable,1,11.95,06/12/19 14:37,"469 Washington St, Los Angeles, CA 90001" +211418,AA Batteries (4-pack),1,3.84,06/23/19 12:27,"681 12th St, Seattle, WA 98101" +211419,27in 4K Gaming Monitor,1,389.99,06/24/19 19:23,"476 North St, New York City, NY 10001" +211420,iPhone,1,700,06/19/19 19:54,"79 Hill St, San Francisco, CA 94016" +211420,Wired Headphones,1,11.99,06/19/19 19:54,"79 Hill St, San Francisco, CA 94016" +211421,AA Batteries (4-pack),2,3.84,06/12/19 11:01,"104 Lake St, Los Angeles, CA 90001" +211422,Apple Airpods Headphones,1,150,06/25/19 22:30,"853 Chestnut St, San Francisco, CA 94016" +211423,USB-C Charging Cable,1,11.95,06/07/19 10:43,"171 Park St, Portland, OR 97035" +211424,Apple Airpods Headphones,1,150,06/15/19 21:19,"781 2nd St, New York City, NY 10001" +211425,USB-C Charging Cable,1,11.95,06/24/19 21:03,"561 7th St, New York City, NY 10001" +211426,Lightning Charging Cable,1,14.95,06/23/19 20:48,"73 Washington St, San Francisco, CA 94016" +211427,AA Batteries (4-pack),1,3.84,06/17/19 21:20,"833 Forest St, Seattle, WA 98101" +211428,USB-C Charging Cable,1,11.95,06/09/19 01:34,"62 8th St, Boston, MA 02215" +211429,20in Monitor,1,109.99,06/01/19 22:11,"266 Adams St, Los Angeles, CA 90001" +211430,AAA Batteries (4-pack),1,2.99,06/17/19 11:01,"146 Maple St, San Francisco, CA 94016" +211431,AA Batteries (4-pack),1,3.84,06/21/19 16:50,"488 9th St, Austin, TX 73301" +211432,Bose SoundSport Headphones,1,99.99,06/26/19 12:52,"687 1st St, Portland, OR 97035" +211433,Google Phone,1,600,06/06/19 11:42,"993 Park St, Dallas, TX 75001" +211434,27in FHD Monitor,1,149.99,06/27/19 00:08,"911 Jefferson St, San Francisco, CA 94016" +211435,AAA Batteries (4-pack),1,2.99,06/01/19 11:30,"143 Hickory St, Los Angeles, CA 90001" +211435,iPhone,1,700,06/01/19 11:30,"143 Hickory St, Los Angeles, CA 90001" +211436,USB-C Charging Cable,1,11.95,06/06/19 17:14,"565 Center St, San Francisco, CA 94016" +211437,27in FHD Monitor,1,149.99,06/02/19 00:47,"563 Elm St, Los Angeles, CA 90001" +211438,Wired Headphones,1,11.99,06/07/19 09:42,"961 Lincoln St, New York City, NY 10001" +211439,AA Batteries (4-pack),1,3.84,06/07/19 16:12,"766 Cherry St, New York City, NY 10001" +211440,AA Batteries (4-pack),1,3.84,06/02/19 16:57,"419 Jefferson St, New York City, NY 10001" +211441,Wired Headphones,1,11.99,06/26/19 20:52,"785 Spruce St, San Francisco, CA 94016" +211442,Google Phone,1,600,06/01/19 19:28,"576 Ridge St, Seattle, WA 98101" +211442,Bose SoundSport Headphones,1,99.99,06/01/19 19:28,"576 Ridge St, Seattle, WA 98101" +211443,USB-C Charging Cable,1,11.95,06/02/19 15:41,"299 Lakeview St, San Francisco, CA 94016" +211444,Bose SoundSport Headphones,1,99.99,06/15/19 21:51,"657 Hickory St, Boston, MA 02215" +211445,Apple Airpods Headphones,1,150,06/12/19 05:53,"560 West St, Los Angeles, CA 90001" +211446,Wired Headphones,1,11.99,06/29/19 20:21,"398 Center St, New York City, NY 10001" +211447,34in Ultrawide Monitor,1,379.99,06/08/19 21:50,"724 7th St, San Francisco, CA 94016" +211448,USB-C Charging Cable,1,11.95,06/02/19 08:23,"899 11th St, Atlanta, GA 30301" +211449,Bose SoundSport Headphones,1,99.99,06/06/19 18:13,"226 8th St, San Francisco, CA 94016" +211450,Lightning Charging Cable,1,14.95,06/15/19 16:35,"647 Main St, Los Angeles, CA 90001" +211451,AA Batteries (4-pack),3,3.84,06/01/19 11:10,"987 Forest St, Austin, TX 73301" +211452,Lightning Charging Cable,1,14.95,06/06/19 20:50,"376 Cedar St, New York City, NY 10001" +211453,AA Batteries (4-pack),1,3.84,06/24/19 15:46,"751 10th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +211454,iPhone,1,700,06/18/19 10:20,"66 Center St, San Francisco, CA 94016" +211455,Apple Airpods Headphones,1,150,06/19/19 20:27,"980 Jackson St, San Francisco, CA 94016" +211456,Flatscreen TV,1,300,06/15/19 21:49,"268 South St, Seattle, WA 98101" +211457,Wired Headphones,1,11.99,06/02/19 17:01,"127 North St, Los Angeles, CA 90001" +211458,USB-C Charging Cable,1,11.95,06/02/19 08:30,"482 5th St, Boston, MA 02215" +211459,AAA Batteries (4-pack),1,2.99,06/07/19 20:05,"297 Maple St, Austin, TX 73301" +211460,Apple Airpods Headphones,1,150,06/04/19 12:16,"934 13th St, Boston, MA 02215" +211461,LG Dryer,1,600.0,06/15/19 07:33,"869 8th St, San Francisco, CA 94016" +211461,AAA Batteries (4-pack),4,2.99,06/15/19 07:33,"869 8th St, San Francisco, CA 94016" +211462,Wired Headphones,1,11.99,06/07/19 09:47,"163 5th St, Austin, TX 73301" +211463,Bose SoundSport Headphones,1,99.99,06/26/19 19:10,"867 5th St, Los Angeles, CA 90001" +211464,ThinkPad Laptop,1,999.99,06/15/19 17:30,"658 Elm St, Dallas, TX 75001" +211465,AA Batteries (4-pack),2,3.84,06/13/19 17:05,"301 West St, Los Angeles, CA 90001" +211466,Wired Headphones,1,11.99,06/26/19 14:22,"923 Ridge St, Seattle, WA 98101" +211467,AA Batteries (4-pack),4,3.84,06/25/19 18:22,"338 10th St, Atlanta, GA 30301" +211468,LG Dryer,1,600.0,06/01/19 10:08,"381 Hickory St, Austin, TX 73301" +211469,Flatscreen TV,1,300,06/13/19 12:30,"780 Pine St, New York City, NY 10001" +211470,Apple Airpods Headphones,1,150,06/01/19 22:27,"295 Pine St, Portland, OR 97035" +211471,Apple Airpods Headphones,1,150,06/05/19 13:00,"963 River St, Dallas, TX 75001" +211472,USB-C Charging Cable,1,11.95,06/20/19 11:14,"524 Cherry St, Los Angeles, CA 90001" +211473,Lightning Charging Cable,1,14.95,06/06/19 18:02,"359 West St, Austin, TX 73301" +211474,AA Batteries (4-pack),1,3.84,06/24/19 08:40,"952 Adams St, San Francisco, CA 94016" +211475,USB-C Charging Cable,1,11.95,06/04/19 01:14,"525 Johnson St, Dallas, TX 75001" +211476,Bose SoundSport Headphones,1,99.99,06/07/19 22:24,"578 Willow St, Seattle, WA 98101" +211477,AAA Batteries (4-pack),1,2.99,06/08/19 22:33,"299 14th St, Los Angeles, CA 90001" +211478,20in Monitor,1,109.99,06/13/19 18:02,"36 Chestnut St, Portland, OR 97035" +211479,27in FHD Monitor,1,149.99,06/08/19 18:00,"670 Adams St, Los Angeles, CA 90001" +211480,Apple Airpods Headphones,1,150,06/16/19 17:53,"810 Lake St, San Francisco, CA 94016" +211481,AA Batteries (4-pack),1,3.84,06/12/19 11:06,"458 Cedar St, Boston, MA 02215" +211482,Wired Headphones,1,11.99,06/30/19 11:28,"205 Cherry St, Dallas, TX 75001" +211483,Apple Airpods Headphones,1,150,06/19/19 08:32,"277 South St, San Francisco, CA 94016" +211484,Lightning Charging Cable,1,14.95,06/14/19 19:35,"140 10th St, New York City, NY 10001" +211485,AA Batteries (4-pack),2,3.84,06/03/19 11:36,"459 Walnut St, Los Angeles, CA 90001" +211486,Apple Airpods Headphones,1,150,06/27/19 12:41,"783 Pine St, Portland, OR 97035" +211487,AA Batteries (4-pack),1,3.84,06/13/19 11:39,"565 10th St, Portland, ME 04101" +211488,Bose SoundSport Headphones,2,99.99,06/29/19 19:23,"823 Spruce St, Boston, MA 02215" +211489,USB-C Charging Cable,1,11.95,06/01/19 09:23,"557 Elm St, Atlanta, GA 30301" +211490,Bose SoundSport Headphones,1,99.99,06/19/19 19:40,"201 Lake St, San Francisco, CA 94016" +211491,Flatscreen TV,1,300,06/28/19 23:11,"625 Highland St, Austin, TX 73301" +211492,Macbook Pro Laptop,1,1700,06/24/19 23:01,"296 1st St, Los Angeles, CA 90001" +211493,Lightning Charging Cable,1,14.95,06/23/19 18:10,"881 9th St, Atlanta, GA 30301" +211494,34in Ultrawide Monitor,1,379.99,06/30/19 19:17,"603 Jackson St, San Francisco, CA 94016" +211495,AAA Batteries (4-pack),1,2.99,06/05/19 16:57,"843 Elm St, Seattle, WA 98101" +211496,Bose SoundSport Headphones,1,99.99,06/10/19 02:35,"964 Sunset St, Los Angeles, CA 90001" +211497,ThinkPad Laptop,1,999.99,06/24/19 22:33,"940 10th St, Los Angeles, CA 90001" +211497,AA Batteries (4-pack),1,3.84,06/24/19 22:33,"940 10th St, Los Angeles, CA 90001" +211498,Wired Headphones,1,11.99,06/16/19 13:51,"712 South St, San Francisco, CA 94016" +211499,iPhone,1,700,06/17/19 09:47,"955 Church St, San Francisco, CA 94016" +211500,Apple Airpods Headphones,1,150,06/12/19 12:35,"860 Church St, San Francisco, CA 94016" +211501,AA Batteries (4-pack),1,3.84,06/21/19 01:38,"992 Washington St, Atlanta, GA 30301" +211502,Lightning Charging Cable,1,14.95,06/02/19 09:38,"822 Washington St, New York City, NY 10001" +211503,Apple Airpods Headphones,1,150,06/30/19 14:00,"905 Ridge St, Boston, MA 02215" +211504,Wired Headphones,1,11.99,06/10/19 19:48,"409 Cedar St, Dallas, TX 75001" +211505,AAA Batteries (4-pack),1,2.99,06/19/19 16:08,"346 Forest St, Atlanta, GA 30301" +211506,iPhone,1,700,06/08/19 17:18,"462 Madison St, Los Angeles, CA 90001" +211507,Wired Headphones,2,11.99,06/25/19 23:09,"798 Jackson St, San Francisco, CA 94016" +211508,Lightning Charging Cable,1,14.95,06/28/19 06:37,"228 Walnut St, Dallas, TX 75001" +211509,Vareebadd Phone,1,400,06/14/19 21:20,"575 9th St, Los Angeles, CA 90001" +211510,Bose SoundSport Headphones,1,99.99,06/10/19 19:14,"253 Lake St, Portland, OR 97035" +211511,Google Phone,1,600,06/20/19 22:14,"319 Meadow St, Atlanta, GA 30301" +211512,AAA Batteries (4-pack),1,2.99,06/22/19 10:37,"314 Walnut St, New York City, NY 10001" +211513,USB-C Charging Cable,1,11.95,06/21/19 16:49,"596 Ridge St, San Francisco, CA 94016" +211514,34in Ultrawide Monitor,1,379.99,06/21/19 19:17,"487 11th St, Dallas, TX 75001" +211515,LG Washing Machine,1,600.0,06/27/19 11:50,"51 Jackson St, Los Angeles, CA 90001" +211516,Bose SoundSport Headphones,2,99.99,06/26/19 17:44,"535 Highland St, New York City, NY 10001" +211517,AA Batteries (4-pack),1,3.84,06/17/19 12:45,"880 Willow St, San Francisco, CA 94016" +211518,iPhone,1,700,06/07/19 13:03,"971 9th St, San Francisco, CA 94016" +211519,USB-C Charging Cable,1,11.95,06/02/19 13:49,"421 Park St, Atlanta, GA 30301" +211520,Lightning Charging Cable,1,14.95,06/19/19 12:35,"92 Madison St, New York City, NY 10001" +211521,Macbook Pro Laptop,1,1700,06/27/19 11:17,"22 Ridge St, Boston, MA 02215" +211522,AA Batteries (4-pack),1,3.84,06/02/19 18:37,"277 West St, San Francisco, CA 94016" +211523,Wired Headphones,2,11.99,06/12/19 09:59,"110 Wilson St, New York City, NY 10001" +211524,Wired Headphones,1,11.99,06/25/19 10:27,"793 Meadow St, San Francisco, CA 94016" +211525,20in Monitor,1,109.99,06/13/19 13:55,"301 Spruce St, Atlanta, GA 30301" +211526,Lightning Charging Cable,1,14.95,06/02/19 21:27,"918 Cherry St, New York City, NY 10001" +211527,Macbook Pro Laptop,1,1700,06/11/19 10:12,"802 Highland St, Boston, MA 02215" +211528,Lightning Charging Cable,1,14.95,06/17/19 09:20,"364 Ridge St, San Francisco, CA 94016" +211529,AAA Batteries (4-pack),1,2.99,06/29/19 19:39,"142 Meadow St, Atlanta, GA 30301" +211530,Apple Airpods Headphones,1,150,06/30/19 19:32,"665 Washington St, San Francisco, CA 94016" +211530,34in Ultrawide Monitor,1,379.99,06/30/19 19:32,"665 Washington St, San Francisco, CA 94016" +211531,Apple Airpods Headphones,1,150,06/12/19 07:41,"14 Chestnut St, Boston, MA 02215" +211532,Lightning Charging Cable,1,14.95,06/28/19 11:05,"853 Maple St, Portland, OR 97035" +211533,Lightning Charging Cable,1,14.95,06/18/19 08:07,"863 1st St, Atlanta, GA 30301" +211534,Lightning Charging Cable,1,14.95,06/09/19 12:59,"301 Hickory St, Dallas, TX 75001" +211535,USB-C Charging Cable,1,11.95,06/25/19 22:14,"473 Cherry St, San Francisco, CA 94016" +211536,Lightning Charging Cable,2,14.95,06/26/19 20:22,"920 6th St, Dallas, TX 75001" +211537,34in Ultrawide Monitor,1,379.99,06/08/19 22:35,"622 South St, Portland, OR 97035" +211538,AA Batteries (4-pack),1,3.84,06/18/19 07:15,"479 Sunset St, San Francisco, CA 94016" +211539,Wired Headphones,1,11.99,06/26/19 09:51,"589 Wilson St, New York City, NY 10001" +211540,Wired Headphones,1,11.99,06/20/19 21:52,"616 Cherry St, San Francisco, CA 94016" +211541,Bose SoundSport Headphones,1,99.99,06/23/19 21:48,"981 North St, Los Angeles, CA 90001" +211542,Apple Airpods Headphones,1,150,06/26/19 13:23,"395 Adams St, Atlanta, GA 30301" +211543,Apple Airpods Headphones,1,150,06/26/19 23:35,"616 5th St, San Francisco, CA 94016" +211544,Apple Airpods Headphones,1,150,06/05/19 14:18,"228 1st St, San Francisco, CA 94016" +211545,27in FHD Monitor,1,149.99,06/15/19 09:01,"150 West St, Los Angeles, CA 90001" +211546,20in Monitor,1,109.99,06/02/19 11:02,"156 Pine St, San Francisco, CA 94016" +211547,Lightning Charging Cable,1,14.95,06/28/19 19:30,"291 7th St, San Francisco, CA 94016" +211548,Apple Airpods Headphones,1,150,06/26/19 14:39,"894 Lincoln St, San Francisco, CA 94016" +211549,Apple Airpods Headphones,1,150,06/15/19 14:08,"256 Hill St, New York City, NY 10001" +211550,AAA Batteries (4-pack),2,2.99,06/15/19 15:35,"915 4th St, Austin, TX 73301" +211551,Lightning Charging Cable,2,14.95,06/03/19 18:36,"426 Cherry St, San Francisco, CA 94016" +211552,AA Batteries (4-pack),2,3.84,06/23/19 10:25,"55 7th St, San Francisco, CA 94016" +211553,27in 4K Gaming Monitor,1,389.99,06/08/19 10:51,"758 12th St, Portland, OR 97035" +211554,USB-C Charging Cable,1,11.95,06/28/19 08:39,"893 Johnson St, Dallas, TX 75001" +211555,Bose SoundSport Headphones,1,99.99,06/20/19 22:56,"435 Adams St, Atlanta, GA 30301" +211556,AA Batteries (4-pack),1,3.84,06/21/19 17:12,"230 Johnson St, Boston, MA 02215" +211557,Macbook Pro Laptop,1,1700,06/06/19 10:00,"933 Highland St, Portland, OR 97035" +211558,Lightning Charging Cable,1,14.95,06/28/19 17:04,"247 13th St, Boston, MA 02215" +211558,USB-C Charging Cable,1,11.95,06/28/19 17:04,"247 13th St, Boston, MA 02215" +211559,USB-C Charging Cable,1,11.95,06/27/19 00:52,"958 South St, New York City, NY 10001" +211560,Wired Headphones,1,11.99,06/30/19 14:56,"45 13th St, Boston, MA 02215" +211561,27in FHD Monitor,1,149.99,06/07/19 09:35,"630 Park St, New York City, NY 10001" +211562,ThinkPad Laptop,1,999.99,06/05/19 12:21,"434 Main St, San Francisco, CA 94016" +211563,LG Dryer,1,600.0,06/19/19 14:41,"384 Center St, Dallas, TX 75001" +211564,Lightning Charging Cable,1,14.95,06/06/19 11:54,"883 13th St, Atlanta, GA 30301" +211565,27in FHD Monitor,1,149.99,06/05/19 13:00,"619 Washington St, New York City, NY 10001" +211566,Bose SoundSport Headphones,1,99.99,06/27/19 19:23,"457 13th St, Boston, MA 02215" +211567,Lightning Charging Cable,1,14.95,06/02/19 00:39,"268 Washington St, San Francisco, CA 94016" +211568,USB-C Charging Cable,1,11.95,06/19/19 13:33,"468 11th St, Seattle, WA 98101" +211569,ThinkPad Laptop,1,999.99,06/19/19 21:24,"557 Jackson St, Boston, MA 02215" +211570,Google Phone,1,600,06/09/19 23:59,"233 13th St, San Francisco, CA 94016" +211570,Wired Headphones,1,11.99,06/09/19 23:59,"233 13th St, San Francisco, CA 94016" +211571,20in Monitor,1,109.99,06/22/19 01:02,"243 Lakeview St, San Francisco, CA 94016" +211572,Lightning Charging Cable,1,14.95,06/13/19 10:49,"278 River St, Seattle, WA 98101" +211573,27in FHD Monitor,1,149.99,06/28/19 12:04,"613 Ridge St, Los Angeles, CA 90001" +211574,ThinkPad Laptop,1,999.99,06/09/19 21:45,"683 Dogwood St, New York City, NY 10001" +211575,ThinkPad Laptop,1,999.99,06/09/19 07:09,"349 Willow St, Boston, MA 02215" +211576,USB-C Charging Cable,1,11.95,06/24/19 20:11,"495 8th St, Seattle, WA 98101" +211577,20in Monitor,1,109.99,06/07/19 15:30,"486 Adams St, Los Angeles, CA 90001" +211578,iPhone,1,700,06/11/19 20:05,"383 Forest St, Seattle, WA 98101" +211578,Lightning Charging Cable,1,14.95,06/11/19 20:05,"383 Forest St, Seattle, WA 98101" +211579,Bose SoundSport Headphones,1,99.99,06/26/19 21:47,"475 1st St, Los Angeles, CA 90001" +211580,34in Ultrawide Monitor,1,379.99,06/10/19 13:26,"548 Church St, Dallas, TX 75001" +211581,Flatscreen TV,1,300,06/06/19 23:58,"456 Lakeview St, Los Angeles, CA 90001" +211582,LG Washing Machine,1,600.0,06/27/19 00:42,"955 8th St, Boston, MA 02215" +211583,AAA Batteries (4-pack),1,2.99,06/11/19 23:29,"178 Center St, New York City, NY 10001" +211584,AA Batteries (4-pack),5,3.84,06/24/19 09:32,"737 Elm St, New York City, NY 10001" +211585,Wired Headphones,1,11.99,06/10/19 11:51,"394 Dogwood St, San Francisco, CA 94016" +211586,USB-C Charging Cable,1,11.95,06/18/19 19:52,"161 Johnson St, Austin, TX 73301" +211587,Lightning Charging Cable,1,14.95,06/18/19 17:54,"786 Hickory St, Seattle, WA 98101" +211588,34in Ultrawide Monitor,1,379.99,06/10/19 19:00,"337 6th St, Boston, MA 02215" +211589,AA Batteries (4-pack),1,3.84,06/14/19 22:29,"312 Cedar St, Los Angeles, CA 90001" +211590,USB-C Charging Cable,1,11.95,06/26/19 15:22,"295 6th St, San Francisco, CA 94016" +211591,USB-C Charging Cable,1,11.95,06/08/19 22:55,"226 Spruce St, Dallas, TX 75001" +211592,27in FHD Monitor,1,149.99,06/21/19 19:07,"461 6th St, Austin, TX 73301" +211593,AA Batteries (4-pack),1,3.84,06/17/19 02:31,"475 Walnut St, Austin, TX 73301" +211594,AAA Batteries (4-pack),1,2.99,06/19/19 18:18,"72 West St, Boston, MA 02215" +211595,Wired Headphones,1,11.99,06/24/19 17:42,"509 6th St, San Francisco, CA 94016" +211596,AA Batteries (4-pack),1,3.84,06/10/19 20:35,"981 Main St, San Francisco, CA 94016" +211597,AA Batteries (4-pack),1,3.84,06/04/19 16:11,"143 Church St, Boston, MA 02215" +211598,Lightning Charging Cable,1,14.95,06/12/19 23:03,"762 Main St, San Francisco, CA 94016" +211599,AA Batteries (4-pack),3,3.84,06/09/19 17:12,"455 8th St, New York City, NY 10001" +211600,Lightning Charging Cable,1,14.95,06/15/19 15:08,"397 2nd St, Portland, OR 97035" +211601,AA Batteries (4-pack),1,3.84,06/12/19 04:51,"653 Cherry St, Boston, MA 02215" +211602,Apple Airpods Headphones,1,150,06/18/19 23:55,"963 11th St, Portland, OR 97035" +211603,Wired Headphones,1,11.99,06/27/19 17:45,"958 Dogwood St, New York City, NY 10001" +211604,AAA Batteries (4-pack),1,2.99,06/22/19 14:41,"975 Maple St, Los Angeles, CA 90001" +211605,Wired Headphones,1,11.99,06/16/19 23:53,"188 12th St, Los Angeles, CA 90001" +211606,Wired Headphones,1,11.99,06/28/19 11:47,"827 Walnut St, Dallas, TX 75001" +211607,34in Ultrawide Monitor,1,379.99,06/27/19 12:47,"351 South St, Seattle, WA 98101" +211608,Wired Headphones,2,11.99,06/12/19 12:38,"162 Maple St, San Francisco, CA 94016" +211609,USB-C Charging Cable,1,11.95,06/15/19 09:04,"153 Washington St, New York City, NY 10001" +211610,AAA Batteries (4-pack),2,2.99,06/29/19 21:34,"672 14th St, Seattle, WA 98101" +211611,Apple Airpods Headphones,1,150,06/13/19 21:12,"810 Sunset St, San Francisco, CA 94016" +211612,Google Phone,1,600,06/11/19 14:50,"584 Park St, San Francisco, CA 94016" +211613,Lightning Charging Cable,1,14.95,06/03/19 20:40,"320 4th St, New York City, NY 10001" +211614,Google Phone,1,600,06/29/19 00:36,"170 9th St, Portland, OR 97035" +211615,AA Batteries (4-pack),2,3.84,06/16/19 03:12,"571 8th St, Dallas, TX 75001" +211616,USB-C Charging Cable,1,11.95,06/10/19 12:02,"315 Wilson St, Austin, TX 73301" +211617,Google Phone,1,600,06/09/19 13:13,"362 7th St, Atlanta, GA 30301" +211618,Macbook Pro Laptop,1,1700,06/02/19 14:37,"860 Dogwood St, Los Angeles, CA 90001" +211619,Apple Airpods Headphones,1,150,06/25/19 11:39,"722 Sunset St, Los Angeles, CA 90001" +211620,Bose SoundSport Headphones,1,99.99,06/05/19 12:46,"593 Church St, New York City, NY 10001" +211621,Apple Airpods Headphones,1,150,06/09/19 10:15,"663 Park St, Los Angeles, CA 90001" +211622,Lightning Charging Cable,1,14.95,06/16/19 02:01,"346 South St, Atlanta, GA 30301" +211623,USB-C Charging Cable,1,11.95,06/27/19 12:44,"928 2nd St, Seattle, WA 98101" +211624,ThinkPad Laptop,1,999.99,06/25/19 18:44,"122 Dogwood St, New York City, NY 10001" +211625,Google Phone,1,600,06/23/19 17:33,"656 Adams St, Seattle, WA 98101" +211626,Lightning Charging Cable,1,14.95,06/18/19 17:12,"362 Lake St, New York City, NY 10001" +211627,Bose SoundSport Headphones,1,99.99,06/10/19 11:18,"432 Cherry St, Portland, OR 97035" +211628,USB-C Charging Cable,1,11.95,06/04/19 17:30,"673 Cherry St, Los Angeles, CA 90001" +211629,Apple Airpods Headphones,1,150,06/23/19 21:16,"863 6th St, San Francisco, CA 94016" +211630,AAA Batteries (4-pack),3,2.99,06/20/19 11:01,"274 1st St, Seattle, WA 98101" +211631,27in 4K Gaming Monitor,1,389.99,06/10/19 12:29,"854 1st St, Boston, MA 02215" +211632,Lightning Charging Cable,1,14.95,06/28/19 17:00,"113 Church St, Dallas, TX 75001" +211633,USB-C Charging Cable,1,11.95,06/19/19 21:58,"11 5th St, Atlanta, GA 30301" +211634,Google Phone,1,600,06/18/19 17:18,"12 Johnson St, New York City, NY 10001" +211635,Wired Headphones,1,11.99,06/14/19 16:06,"56 Jackson St, San Francisco, CA 94016" +211636,AA Batteries (4-pack),1,3.84,06/12/19 00:56,"100 Washington St, Boston, MA 02215" +211637,Flatscreen TV,1,300,06/08/19 07:50,"465 Pine St, Los Angeles, CA 90001" +211638,Apple Airpods Headphones,1,150,06/03/19 19:38,"285 Meadow St, Atlanta, GA 30301" +211638,Apple Airpods Headphones,1,150,06/03/19 19:38,"285 Meadow St, Atlanta, GA 30301" +211639,AA Batteries (4-pack),2,3.84,06/14/19 14:00,"135 13th St, San Francisco, CA 94016" +211640,Lightning Charging Cable,1,14.95,06/25/19 16:23,"959 Hickory St, San Francisco, CA 94016" +211641,27in 4K Gaming Monitor,1,389.99,06/19/19 10:21,"269 6th St, Atlanta, GA 30301" +211642,34in Ultrawide Monitor,1,379.99,06/02/19 11:33,"245 Madison St, San Francisco, CA 94016" +211643,AA Batteries (4-pack),1,3.84,06/26/19 21:17,"40 Center St, New York City, NY 10001" +211644,AAA Batteries (4-pack),1,2.99,06/27/19 14:27,"53 Elm St, New York City, NY 10001" +211645,20in Monitor,1,109.99,06/11/19 15:23,"963 2nd St, Seattle, WA 98101" +211646,AA Batteries (4-pack),2,3.84,06/10/19 23:28,"412 Hill St, Atlanta, GA 30301" +211647,LG Washing Machine,1,600.0,06/10/19 00:16,"66 Lincoln St, San Francisco, CA 94016" +211648,USB-C Charging Cable,1,11.95,06/26/19 22:32,"26 Main St, Los Angeles, CA 90001" +211649,27in FHD Monitor,1,149.99,06/27/19 18:44,"584 Main St, Seattle, WA 98101" +211650,Wired Headphones,1,11.99,06/01/19 17:28,"665 Park St, San Francisco, CA 94016" +211651,27in 4K Gaming Monitor,1,389.99,06/05/19 10:22,"948 Washington St, New York City, NY 10001" +211652,34in Ultrawide Monitor,1,379.99,06/14/19 22:15,"457 Cedar St, San Francisco, CA 94016" +211653,Wired Headphones,2,11.99,06/12/19 09:24,"721 4th St, Seattle, WA 98101" +211654,Bose SoundSport Headphones,1,99.99,06/01/19 19:20,"853 Pine St, Boston, MA 02215" +211655,AAA Batteries (4-pack),1,2.99,06/02/19 22:04,"689 9th St, San Francisco, CA 94016" +211656,Apple Airpods Headphones,1,150,06/23/19 08:17,"131 2nd St, San Francisco, CA 94016" +211657,Bose SoundSport Headphones,1,99.99,06/22/19 09:35,"889 7th St, Los Angeles, CA 90001" +211658,AAA Batteries (4-pack),1,2.99,06/26/19 17:29,"523 1st St, Dallas, TX 75001" +211659,34in Ultrawide Monitor,1,379.99,06/08/19 19:21,"157 4th St, Dallas, TX 75001" +211660,AAA Batteries (4-pack),1,2.99,06/30/19 20:01,"761 5th St, New York City, NY 10001" +211661,27in FHD Monitor,1,149.99,06/27/19 16:53,"883 Highland St, Seattle, WA 98101" +211662,AA Batteries (4-pack),3,3.84,06/27/19 16:28,"990 Lakeview St, San Francisco, CA 94016" +211663,34in Ultrawide Monitor,1,379.99,06/11/19 23:09,"19 Cherry St, Portland, ME 04101" +211664,Google Phone,1,600,06/02/19 09:49,"913 Main St, Portland, OR 97035" +211664,USB-C Charging Cable,1,11.95,06/02/19 09:49,"913 Main St, Portland, OR 97035" +211665,AA Batteries (4-pack),2,3.84,06/14/19 09:01,"887 13th St, New York City, NY 10001" +211666,Wired Headphones,1,11.99,06/23/19 21:25,"364 Chestnut St, Los Angeles, CA 90001" +211667,Lightning Charging Cable,1,14.95,06/27/19 16:31,"405 13th St, Los Angeles, CA 90001" +211668,Wired Headphones,1,11.99,06/24/19 08:46,"685 Lakeview St, Dallas, TX 75001" +211669,27in FHD Monitor,1,149.99,06/09/19 19:00,"679 Lakeview St, New York City, NY 10001" +211670,Macbook Pro Laptop,1,1700,06/25/19 12:36,"502 Forest St, Seattle, WA 98101" +211671,USB-C Charging Cable,1,11.95,06/26/19 13:43,"975 Main St, Boston, MA 02215" +211672,27in FHD Monitor,1,149.99,06/04/19 15:50,"128 Chestnut St, Atlanta, GA 30301" +211673,27in 4K Gaming Monitor,1,389.99,06/20/19 23:31,"484 Highland St, New York City, NY 10001" +211674,27in 4K Gaming Monitor,1,389.99,06/15/19 09:42,"106 12th St, Seattle, WA 98101" +211675,USB-C Charging Cable,1,11.95,06/22/19 12:29,"932 12th St, Los Angeles, CA 90001" +211676,USB-C Charging Cable,1,11.95,06/23/19 10:38,"4 Walnut St, Los Angeles, CA 90001" +211677,Flatscreen TV,1,300,06/04/19 12:57,"235 Ridge St, Seattle, WA 98101" +211678,Wired Headphones,1,11.99,06/26/19 00:10,"725 2nd St, Los Angeles, CA 90001" +211679,20in Monitor,1,109.99,06/06/19 18:07,"843 Hickory St, Los Angeles, CA 90001" +211680,Bose SoundSport Headphones,1,99.99,06/06/19 08:23,"453 Dogwood St, Los Angeles, CA 90001" +211681,Vareebadd Phone,1,400,06/02/19 22:36,"273 Cherry St, Los Angeles, CA 90001" +211682,USB-C Charging Cable,1,11.95,06/09/19 10:08,"458 12th St, Portland, OR 97035" +211683,27in FHD Monitor,1,149.99,06/13/19 11:27,"355 13th St, San Francisco, CA 94016" +211684,Lightning Charging Cable,1,14.95,06/02/19 09:45,"122 West St, Portland, OR 97035" +211685,AAA Batteries (4-pack),3,2.99,06/12/19 13:14,"761 Park St, New York City, NY 10001" +211686,AA Batteries (4-pack),2,3.84,06/05/19 07:37,"208 4th St, San Francisco, CA 94016" +211687,Lightning Charging Cable,1,14.95,06/13/19 14:52,"265 West St, Portland, OR 97035" +211688,Google Phone,1,600,06/18/19 08:52,"27 Hill St, Boston, MA 02215" +211689,Lightning Charging Cable,1,14.95,06/10/19 13:32,"478 7th St, Boston, MA 02215" +211690,Wired Headphones,1,11.99,06/16/19 14:36,"871 Jackson St, San Francisco, CA 94016" +211691,USB-C Charging Cable,1,11.95,06/27/19 09:25,"414 North St, San Francisco, CA 94016" +211692,Lightning Charging Cable,1,14.95,06/30/19 22:30,"773 Jefferson St, New York City, NY 10001" +211693,Apple Airpods Headphones,1,150,06/08/19 21:24,"407 Park St, Dallas, TX 75001" +211694,AA Batteries (4-pack),1,3.84,06/06/19 16:53,"17 11th St, San Francisco, CA 94016" +211695,USB-C Charging Cable,1,11.95,06/26/19 12:04,"261 Willow St, Los Angeles, CA 90001" +211696,AAA Batteries (4-pack),1,2.99,06/13/19 10:26,"515 Madison St, San Francisco, CA 94016" +211697,AAA Batteries (4-pack),3,2.99,06/13/19 19:10,"596 1st St, Atlanta, GA 30301" +211698,AAA Batteries (4-pack),4,2.99,06/02/19 18:52,"365 Hickory St, Atlanta, GA 30301" +211699,AAA Batteries (4-pack),1,2.99,06/24/19 09:02,"717 West St, Dallas, TX 75001" +211700,AA Batteries (4-pack),2,3.84,06/25/19 11:06,"470 Center St, Atlanta, GA 30301" +211701,AAA Batteries (4-pack),1,2.99,06/10/19 11:04,"163 Maple St, Boston, MA 02215" +211702,Google Phone,1,600,06/18/19 16:41,"845 South St, Portland, ME 04101" +211702,Bose SoundSport Headphones,1,99.99,06/18/19 16:41,"845 South St, Portland, ME 04101" +211703,AA Batteries (4-pack),1,3.84,06/15/19 11:46,"66 Dogwood St, Portland, OR 97035" +211704,Lightning Charging Cable,1,14.95,06/28/19 12:26,"693 Washington St, Boston, MA 02215" +211705,Macbook Pro Laptop,1,1700,06/10/19 22:30,"864 West St, San Francisco, CA 94016" +211706,USB-C Charging Cable,1,11.95,06/15/19 14:55,"347 Lake St, Dallas, TX 75001" +211707,AAA Batteries (4-pack),1,2.99,06/08/19 14:26,"708 Park St, Dallas, TX 75001" +211708,USB-C Charging Cable,1,11.95,06/23/19 11:22,"759 Madison St, San Francisco, CA 94016" +211709,AA Batteries (4-pack),1,3.84,06/21/19 13:36,"755 Center St, Austin, TX 73301" +211710,USB-C Charging Cable,1,11.95,06/18/19 11:55,"547 Hickory St, Seattle, WA 98101" +211711,Flatscreen TV,1,300,06/09/19 20:04,"860 Spruce St, San Francisco, CA 94016" +211712,Wired Headphones,1,11.99,06/30/19 14:53,"236 Pine St, Los Angeles, CA 90001" +211712,Wired Headphones,2,11.99,06/30/19 14:53,"236 Pine St, Los Angeles, CA 90001" +211713,Bose SoundSport Headphones,1,99.99,06/14/19 12:42,"280 Center St, Los Angeles, CA 90001" +211714,Wired Headphones,1,11.99,06/09/19 15:20,"984 Johnson St, Los Angeles, CA 90001" +211715,USB-C Charging Cable,1,11.95,06/12/19 00:21,"892 Spruce St, San Francisco, CA 94016" +211716,AA Batteries (4-pack),1,3.84,06/23/19 09:28,"683 Dogwood St, Dallas, TX 75001" +211717,Apple Airpods Headphones,1,150,06/18/19 16:14,"13 Highland St, Portland, OR 97035" +211718,AA Batteries (4-pack),1,3.84,06/02/19 18:38,"420 4th St, San Francisco, CA 94016" +211719,Wired Headphones,1,11.99,06/23/19 10:12,"924 Elm St, Los Angeles, CA 90001" +211720,27in FHD Monitor,1,149.99,06/28/19 11:44,"806 Hickory St, Los Angeles, CA 90001" +211721,USB-C Charging Cable,1,11.95,06/29/19 09:53,"30 Willow St, Atlanta, GA 30301" +211722,Wired Headphones,1,11.99,06/11/19 18:33,"396 Lincoln St, San Francisco, CA 94016" +211723,Flatscreen TV,1,300,06/08/19 10:04,"809 Pine St, San Francisco, CA 94016" +211724,AA Batteries (4-pack),1,3.84,06/01/19 08:41,"356 Church St, Los Angeles, CA 90001" +211725,USB-C Charging Cable,1,11.95,06/03/19 10:16,"207 Wilson St, Boston, MA 02215" +211725,USB-C Charging Cable,1,11.95,06/03/19 10:16,"207 Wilson St, Boston, MA 02215" +211726,Bose SoundSport Headphones,1,99.99,06/24/19 12:57,"502 Ridge St, Atlanta, GA 30301" +211727,Lightning Charging Cable,1,14.95,06/10/19 16:34,"634 Elm St, Los Angeles, CA 90001" +211728,Google Phone,1,600,06/26/19 00:27,"796 9th St, New York City, NY 10001" +211729,USB-C Charging Cable,1,11.95,06/22/19 14:52,"642 Lakeview St, Seattle, WA 98101" +211730,Lightning Charging Cable,1,14.95,06/30/19 12:05,"791 South St, Boston, MA 02215" +211731,Google Phone,1,600,06/14/19 13:50,"671 Adams St, Austin, TX 73301" +211732,AA Batteries (4-pack),1,3.84,06/08/19 14:11,"901 Forest St, Boston, MA 02215" +211733,27in FHD Monitor,1,149.99,06/16/19 21:50,"983 Johnson St, Seattle, WA 98101" +211734,Flatscreen TV,1,300,06/15/19 11:59,"133 Johnson St, Seattle, WA 98101" +211735,Apple Airpods Headphones,1,150,06/25/19 02:42,"666 Lakeview St, New York City, NY 10001" +211736,27in 4K Gaming Monitor,1,389.99,06/07/19 22:38,"2 Pine St, Los Angeles, CA 90001" +211737,AA Batteries (4-pack),1,3.84,06/30/19 14:29,"880 Lake St, New York City, NY 10001" +211738,Lightning Charging Cable,1,14.95,06/23/19 20:02,"205 Forest St, San Francisco, CA 94016" +211739,Google Phone,1,600,06/06/19 19:03,"854 Elm St, San Francisco, CA 94016" +211739,USB-C Charging Cable,1,11.95,06/06/19 19:03,"854 Elm St, San Francisco, CA 94016" +211740,USB-C Charging Cable,1,11.95,06/29/19 11:38,"365 Dogwood St, New York City, NY 10001" +211741,AAA Batteries (4-pack),1,2.99,06/28/19 11:23,"742 13th St, Boston, MA 02215" +211742,Lightning Charging Cable,1,14.95,06/19/19 22:47,"487 Elm St, Los Angeles, CA 90001" +211743,Bose SoundSport Headphones,1,99.99,06/15/19 11:25,"168 Hickory St, Seattle, WA 98101" +211744,USB-C Charging Cable,2,11.95,06/01/19 12:25,"418 Lake St, Portland, OR 97035" +211745,USB-C Charging Cable,1,11.95,06/17/19 11:38,"927 1st St, San Francisco, CA 94016" +211746,Lightning Charging Cable,1,14.95,06/30/19 20:54,"309 Johnson St, Los Angeles, CA 90001" +211747,27in FHD Monitor,1,149.99,06/24/19 12:50,"314 4th St, San Francisco, CA 94016" +211748,Lightning Charging Cable,1,14.95,06/02/19 08:13,"866 Washington St, Los Angeles, CA 90001" +211749,USB-C Charging Cable,1,11.95,06/08/19 19:42,"350 9th St, Seattle, WA 98101" +211750,27in FHD Monitor,1,149.99,06/05/19 16:14,"838 Hickory St, New York City, NY 10001" +211751,Bose SoundSport Headphones,1,99.99,06/20/19 07:40,"756 5th St, San Francisco, CA 94016" +211752,Apple Airpods Headphones,1,150,06/06/19 18:04,"908 9th St, Atlanta, GA 30301" +211753,Apple Airpods Headphones,1,150,06/30/19 21:11,"292 Ridge St, Atlanta, GA 30301" +211754,AA Batteries (4-pack),1,3.84,06/15/19 17:35,"234 13th St, Boston, MA 02215" +211755,Wired Headphones,1,11.99,06/02/19 22:48,"759 Washington St, Atlanta, GA 30301" +211756,Bose SoundSport Headphones,1,99.99,06/13/19 17:08,"270 Hickory St, Los Angeles, CA 90001" +211757,34in Ultrawide Monitor,1,379.99,06/17/19 16:15,"241 5th St, Boston, MA 02215" +211758,Wired Headphones,1,11.99,06/17/19 14:08,"805 Maple St, San Francisco, CA 94016" +211759,iPhone,1,700,06/22/19 12:51,"629 10th St, New York City, NY 10001" +211759,Lightning Charging Cable,1,14.95,06/22/19 12:51,"629 10th St, New York City, NY 10001" +211760,AAA Batteries (4-pack),4,2.99,06/25/19 06:50,"541 Wilson St, New York City, NY 10001" +211761,AAA Batteries (4-pack),1,2.99,06/09/19 08:20,"869 6th St, New York City, NY 10001" +211762,Apple Airpods Headphones,1,150,06/03/19 10:03,"195 Jackson St, Austin, TX 73301" +211763,Google Phone,1,600,06/10/19 16:32,"698 Chestnut St, Boston, MA 02215" +211763,USB-C Charging Cable,2,11.95,06/10/19 16:32,"698 Chestnut St, Boston, MA 02215" +211764,Wired Headphones,1,11.99,06/21/19 21:26,"304 14th St, San Francisco, CA 94016" +211765,AAA Batteries (4-pack),2,2.99,06/26/19 06:40,"11 Walnut St, Portland, OR 97035" +211766,AA Batteries (4-pack),2,3.84,06/19/19 22:56,"457 Park St, Los Angeles, CA 90001" +211767,AA Batteries (4-pack),1,3.84,06/06/19 12:56,"139 Jackson St, New York City, NY 10001" +211768,Bose SoundSport Headphones,1,99.99,06/17/19 14:25,"30 Walnut St, San Francisco, CA 94016" +211769,Macbook Pro Laptop,1,1700,06/14/19 17:08,"894 Hill St, New York City, NY 10001" +211770,Flatscreen TV,1,300,06/23/19 18:25,"121 5th St, San Francisco, CA 94016" +211771,AA Batteries (4-pack),1,3.84,06/30/19 02:48,"489 North St, Seattle, WA 98101" +211772,Lightning Charging Cable,1,14.95,06/24/19 10:49,"349 8th St, Seattle, WA 98101" +211773,20in Monitor,1,109.99,06/23/19 11:56,"191 Cherry St, Atlanta, GA 30301" +211774,Wired Headphones,1,11.99,06/26/19 13:21,"555 Sunset St, San Francisco, CA 94016" +211775,Bose SoundSport Headphones,1,99.99,06/18/19 22:44,"219 Cedar St, San Francisco, CA 94016" +211776,USB-C Charging Cable,1,11.95,06/29/19 12:38,"237 Lakeview St, New York City, NY 10001" +211777,Google Phone,1,600,06/27/19 23:35,"439 8th St, New York City, NY 10001" +211778,USB-C Charging Cable,1,11.95,06/06/19 08:45,"570 Jackson St, Atlanta, GA 30301" +211779,27in FHD Monitor,1,149.99,06/05/19 17:45,"289 1st St, San Francisco, CA 94016" +211780,USB-C Charging Cable,2,11.95,06/11/19 22:17,"439 South St, San Francisco, CA 94016" +211781,AAA Batteries (4-pack),4,2.99,06/13/19 12:37,"889 Walnut St, Seattle, WA 98101" +211782,Google Phone,1,600,06/07/19 17:44,"322 11th St, Seattle, WA 98101" +211782,USB-C Charging Cable,1,11.95,06/07/19 17:44,"322 11th St, Seattle, WA 98101" +211783,USB-C Charging Cable,1,11.95,06/15/19 00:42,"682 12th St, Boston, MA 02215" +211784,Vareebadd Phone,1,400,06/11/19 13:25,"676 Lakeview St, Atlanta, GA 30301" +211784,USB-C Charging Cable,1,11.95,06/11/19 13:25,"676 Lakeview St, Atlanta, GA 30301" +211785,Bose SoundSport Headphones,1,99.99,06/12/19 06:40,"722 Sunset St, New York City, NY 10001" +211786,Lightning Charging Cable,1,14.95,06/07/19 14:59,"774 Wilson St, San Francisco, CA 94016" +211787,Bose SoundSport Headphones,1,99.99,06/07/19 17:59,"140 Maple St, Los Angeles, CA 90001" +211788,27in FHD Monitor,1,149.99,06/03/19 07:00,"66 North St, Austin, TX 73301" +211789,20in Monitor,1,109.99,06/23/19 18:07,"197 8th St, San Francisco, CA 94016" +211790,USB-C Charging Cable,1,11.95,06/16/19 19:12,"453 Washington St, Seattle, WA 98101" +211791,Wired Headphones,1,11.99,06/29/19 18:09,"771 1st St, Boston, MA 02215" +211792,Wired Headphones,1,11.99,06/19/19 13:30,"317 Pine St, Boston, MA 02215" +211793,USB-C Charging Cable,1,11.95,06/19/19 23:41,"710 Park St, San Francisco, CA 94016" +211794,USB-C Charging Cable,1,11.95,06/11/19 21:42,"878 Park St, Seattle, WA 98101" +211795,USB-C Charging Cable,1,11.95,06/16/19 20:35,"838 14th St, Boston, MA 02215" +211796,Apple Airpods Headphones,1,150,06/21/19 13:26,"960 Meadow St, Dallas, TX 75001" +211797,AA Batteries (4-pack),1,3.84,06/04/19 10:20,"360 Cedar St, San Francisco, CA 94016" +211798,Bose SoundSport Headphones,1,99.99,06/13/19 13:19,"555 Jefferson St, San Francisco, CA 94016" +211799,Lightning Charging Cable,1,14.95,06/19/19 20:58,"371 9th St, San Francisco, CA 94016" +211800,Bose SoundSport Headphones,1,99.99,06/10/19 09:56,"247 Madison St, Boston, MA 02215" +211801,AAA Batteries (4-pack),1,2.99,06/17/19 13:47,"21 Adams St, Dallas, TX 75001" +211802,AAA Batteries (4-pack),2,2.99,06/19/19 19:17,"352 Willow St, San Francisco, CA 94016" +211803,Lightning Charging Cable,1,14.95,06/09/19 11:40,"785 7th St, Portland, OR 97035" +211804,AA Batteries (4-pack),1,3.84,06/09/19 14:27,"102 Hill St, San Francisco, CA 94016" +211805,AA Batteries (4-pack),1,3.84,06/05/19 22:57,"650 Cedar St, San Francisco, CA 94016" +211806,iPhone,1,700,06/12/19 07:06,"561 Elm St, San Francisco, CA 94016" +211807,ThinkPad Laptop,1,999.99,06/03/19 15:45,"265 Church St, San Francisco, CA 94016" +211808,Vareebadd Phone,1,400,06/24/19 15:39,"696 Chestnut St, Dallas, TX 75001" +211809,34in Ultrawide Monitor,1,379.99,06/29/19 12:11,"199 7th St, Seattle, WA 98101" +211810,Lightning Charging Cable,1,14.95,06/23/19 17:39,"444 8th St, Atlanta, GA 30301" +211811,AA Batteries (4-pack),2,3.84,06/25/19 19:26,"901 Center St, Dallas, TX 75001" +211812,Lightning Charging Cable,1,14.95,06/17/19 14:45,"800 River St, Seattle, WA 98101" +211813,Apple Airpods Headphones,1,150,06/23/19 12:01,"313 North St, Portland, ME 04101" +211814,27in 4K Gaming Monitor,1,389.99,06/24/19 23:18,"622 2nd St, San Francisco, CA 94016" +211815,AAA Batteries (4-pack),4,2.99,06/08/19 18:18,"411 Cedar St, New York City, NY 10001" +211816,AA Batteries (4-pack),1,3.84,06/16/19 20:34,"270 13th St, Dallas, TX 75001" +211817,Wired Headphones,1,11.99,06/09/19 17:56,"341 Elm St, Boston, MA 02215" +211818,USB-C Charging Cable,1,11.95,06/24/19 07:20,"978 Cherry St, Dallas, TX 75001" +211819,Wired Headphones,1,11.99,06/24/19 00:38,"52 Main St, New York City, NY 10001" +211819,AAA Batteries (4-pack),2,2.99,06/24/19 00:38,"52 Main St, New York City, NY 10001" +211820,AAA Batteries (4-pack),1,2.99,06/12/19 13:46,"363 Pine St, Boston, MA 02215" +211821,Wired Headphones,1,11.99,06/30/19 12:07,"374 Wilson St, San Francisco, CA 94016" +211822,USB-C Charging Cable,1,11.95,06/19/19 09:17,"668 Lincoln St, Los Angeles, CA 90001" +211823,iPhone,1,700,06/01/19 23:38,"669 10th St, San Francisco, CA 94016" +211824,USB-C Charging Cable,2,11.95,06/21/19 10:49,"653 River St, Los Angeles, CA 90001" +211825,USB-C Charging Cable,1,11.95,06/12/19 16:17,"810 Lakeview St, New York City, NY 10001" +211826,34in Ultrawide Monitor,1,379.99,06/07/19 22:21,"251 Spruce St, Seattle, WA 98101" +211826,Bose SoundSport Headphones,1,99.99,06/07/19 22:21,"251 Spruce St, Seattle, WA 98101" +211827,AAA Batteries (4-pack),6,2.99,06/14/19 18:38,"745 4th St, Atlanta, GA 30301" +211828,Lightning Charging Cable,1,14.95,06/10/19 16:08,"348 Jackson St, San Francisco, CA 94016" +211829,AAA Batteries (4-pack),1,2.99,06/29/19 09:37,"758 West St, San Francisco, CA 94016" +211830,AA Batteries (4-pack),1,3.84,06/05/19 17:48,"495 8th St, New York City, NY 10001" +211831,Macbook Pro Laptop,1,1700,06/29/19 12:25,"436 9th St, Seattle, WA 98101" +211832,USB-C Charging Cable,1,11.95,06/23/19 21:29,"397 9th St, Seattle, WA 98101" +211833,ThinkPad Laptop,1,999.99,06/02/19 10:49,"386 North St, San Francisco, CA 94016" +211834,Bose SoundSport Headphones,1,99.99,06/21/19 23:24,"252 Main St, New York City, NY 10001" +211835,Wired Headphones,1,11.99,06/28/19 13:06,"602 Spruce St, Boston, MA 02215" +211836,Flatscreen TV,1,300,06/11/19 21:36,"296 Walnut St, Seattle, WA 98101" +211837,Bose SoundSport Headphones,1,99.99,06/23/19 22:38,"553 Pine St, San Francisco, CA 94016" +211838,Wired Headphones,1,11.99,06/19/19 19:52,"495 14th St, San Francisco, CA 94016" +211839,Apple Airpods Headphones,1,150,06/26/19 08:03,"73 Dogwood St, San Francisco, CA 94016" +211840,Bose SoundSport Headphones,1,99.99,06/25/19 14:05,"124 Pine St, San Francisco, CA 94016" +211841,ThinkPad Laptop,1,999.99,06/02/19 19:34,"273 11th St, Boston, MA 02215" +211842,USB-C Charging Cable,1,11.95,06/02/19 10:32,"949 Meadow St, Austin, TX 73301" +211843,Apple Airpods Headphones,1,150,06/25/19 13:54,"787 Washington St, Atlanta, GA 30301" +211844,USB-C Charging Cable,1,11.95,06/01/19 18:12,"177 Lake St, Seattle, WA 98101" +211845,Google Phone,1,600,06/21/19 09:40,"394 14th St, San Francisco, CA 94016" +211846,Google Phone,1,600,06/16/19 21:13,"74 1st St, Seattle, WA 98101" +211847,Wired Headphones,1,11.99,06/28/19 13:57,"324 Lake St, Boston, MA 02215" +211848,AAA Batteries (4-pack),1,2.99,06/25/19 09:26,"719 Pine St, Atlanta, GA 30301" +211849,Macbook Pro Laptop,1,1700,06/30/19 09:50,"442 Center St, Seattle, WA 98101" +211850,Lightning Charging Cable,1,14.95,06/06/19 19:55,"868 Adams St, Portland, OR 97035" +211851,27in FHD Monitor,1,149.99,06/18/19 09:00,"328 Wilson St, Los Angeles, CA 90001" +211852,USB-C Charging Cable,1,11.95,06/28/19 09:27,"403 Center St, Los Angeles, CA 90001" +211853,Bose SoundSport Headphones,1,99.99,06/03/19 19:28,"539 Forest St, Boston, MA 02215" +211854,20in Monitor,1,109.99,06/16/19 11:53,"290 Hill St, Dallas, TX 75001" +211855,AAA Batteries (4-pack),2,2.99,06/11/19 14:23,"189 South St, Portland, ME 04101" +211856,Flatscreen TV,1,300,06/22/19 10:51,"63 6th St, Austin, TX 73301" +211857,Flatscreen TV,1,300,06/05/19 21:25,"98 6th St, Seattle, WA 98101" +211858,Google Phone,1,600,06/11/19 09:25,"256 5th St, Boston, MA 02215" +211859,34in Ultrawide Monitor,1,379.99,06/04/19 16:54,"257 Center St, Los Angeles, CA 90001" +211860,Lightning Charging Cable,1,14.95,06/08/19 10:20,"401 Lincoln St, San Francisco, CA 94016" +211861,USB-C Charging Cable,1,11.95,06/02/19 12:20,"914 7th St, Los Angeles, CA 90001" +211862,Apple Airpods Headphones,1,150,06/04/19 21:40,"994 Hill St, Dallas, TX 75001" +211863,27in FHD Monitor,1,149.99,06/16/19 12:32,"366 Lake St, Los Angeles, CA 90001" +211864,Google Phone,1,600,06/15/19 13:13,"351 River St, New York City, NY 10001" +211865,Wired Headphones,1,11.99,06/19/19 20:27,"643 13th St, Dallas, TX 75001" +211865,USB-C Charging Cable,1,11.95,06/19/19 20:27,"643 13th St, Dallas, TX 75001" +211866,Lightning Charging Cable,1,14.95,06/04/19 16:30,"599 1st St, Portland, OR 97035" +211867,Bose SoundSport Headphones,1,99.99,06/08/19 15:06,"918 North St, San Francisco, CA 94016" +211868,Bose SoundSport Headphones,1,99.99,06/16/19 13:34,"15 Dogwood St, New York City, NY 10001" +211869,Lightning Charging Cable,1,14.95,06/19/19 14:37,"865 Maple St, San Francisco, CA 94016" +211870,USB-C Charging Cable,1,11.95,06/27/19 10:04,"407 Cherry St, San Francisco, CA 94016" +211871,Lightning Charging Cable,1,14.95,06/27/19 16:13,"205 Walnut St, Seattle, WA 98101" +211872,ThinkPad Laptop,1,999.99,06/23/19 20:10,"841 Lake St, Seattle, WA 98101" +211873,Wired Headphones,1,11.99,06/23/19 22:47,"646 2nd St, San Francisco, CA 94016" +211874,iPhone,1,700,06/25/19 16:26,"454 Washington St, New York City, NY 10001" +211875,USB-C Charging Cable,1,11.95,06/21/19 18:08,"228 Adams St, San Francisco, CA 94016" +211876,AAA Batteries (4-pack),5,2.99,06/23/19 17:01,"529 7th St, San Francisco, CA 94016" +211877,Wired Headphones,1,11.99,06/20/19 00:30,"586 Walnut St, San Francisco, CA 94016" +211878,USB-C Charging Cable,1,11.95,06/29/19 17:29,"215 12th St, Austin, TX 73301" +211879,AAA Batteries (4-pack),1,2.99,06/14/19 20:32,"573 8th St, San Francisco, CA 94016" +211880,34in Ultrawide Monitor,1,379.99,06/18/19 16:05,"727 Lake St, San Francisco, CA 94016" +211881,ThinkPad Laptop,1,999.99,06/20/19 18:47,"464 Johnson St, San Francisco, CA 94016" +211882,Wired Headphones,1,11.99,06/12/19 22:04,"680 Maple St, Portland, OR 97035" +211883,Bose SoundSport Headphones,1,99.99,06/08/19 19:08,"820 Hill St, San Francisco, CA 94016" +211884,AA Batteries (4-pack),1,3.84,06/03/19 20:03,"385 Cedar St, Atlanta, GA 30301" +211885,AA Batteries (4-pack),1,3.84,06/03/19 10:38,"415 7th St, Los Angeles, CA 90001" +211886,Wired Headphones,1,11.99,06/15/19 20:35,"492 Willow St, New York City, NY 10001" +211887,Apple Airpods Headphones,1,150,06/02/19 22:02,"977 Wilson St, Boston, MA 02215" +211888,27in 4K Gaming Monitor,1,389.99,06/07/19 10:21,"842 South St, Austin, TX 73301" +211889,iPhone,1,700,06/28/19 17:33,"736 Wilson St, Dallas, TX 75001" +211889,Lightning Charging Cable,1,14.95,06/28/19 17:33,"736 Wilson St, Dallas, TX 75001" +211890,AAA Batteries (4-pack),1,2.99,06/23/19 21:00,"578 Meadow St, Seattle, WA 98101" +211891,Macbook Pro Laptop,2,1700,06/21/19 09:57,"524 Washington St, San Francisco, CA 94016" +211892,AA Batteries (4-pack),1,3.84,06/18/19 13:28,"529 Madison St, Boston, MA 02215" +211893,USB-C Charging Cable,1,11.95,06/12/19 07:05,"962 Dogwood St, Seattle, WA 98101" +211894,Bose SoundSport Headphones,1,99.99,06/13/19 10:50,"266 Pine St, San Francisco, CA 94016" +211895,Apple Airpods Headphones,1,150,06/09/19 11:31,"922 Washington St, San Francisco, CA 94016" +211896,AAA Batteries (4-pack),1,2.99,06/21/19 12:58,"378 1st St, Los Angeles, CA 90001" +211897,AAA Batteries (4-pack),5,2.99,06/19/19 06:24,"796 Church St, Boston, MA 02215" +211898,USB-C Charging Cable,1,11.95,06/01/19 21:59,"370 6th St, San Francisco, CA 94016" +211899,iPhone,1,700,06/26/19 20:47,"401 Forest St, Portland, OR 97035" +211899,Lightning Charging Cable,1,14.95,06/26/19 20:47,"401 Forest St, Portland, OR 97035" +211900,34in Ultrawide Monitor,1,379.99,06/13/19 10:28,"802 Dogwood St, Atlanta, GA 30301" +211901,Apple Airpods Headphones,1,150,06/20/19 20:39,"940 Johnson St, Portland, OR 97035" +211902,27in 4K Gaming Monitor,1,389.99,06/20/19 16:40,"378 Madison St, San Francisco, CA 94016" +211903,Wired Headphones,1,11.99,06/17/19 17:11,"681 Main St, Austin, TX 73301" +211904,AAA Batteries (4-pack),1,2.99,06/11/19 20:46,"9 Sunset St, Los Angeles, CA 90001" +211905,AA Batteries (4-pack),1,3.84,06/07/19 23:51,"239 Washington St, Austin, TX 73301" +211906,USB-C Charging Cable,1,11.95,06/21/19 13:52,"628 Madison St, San Francisco, CA 94016" +211907,Vareebadd Phone,1,400,06/25/19 12:38,"419 11th St, Los Angeles, CA 90001" +211908,USB-C Charging Cable,1,11.95,06/11/19 17:48,"229 Pine St, New York City, NY 10001" +211909,AA Batteries (4-pack),1,3.84,06/13/19 13:54,"994 Washington St, Los Angeles, CA 90001" +211910,iPhone,1,700,06/29/19 16:44,"455 Spruce St, Dallas, TX 75001" +211911,Apple Airpods Headphones,1,150,06/27/19 11:22,"900 Lakeview St, Atlanta, GA 30301" +211912,Wired Headphones,1,11.99,06/19/19 23:31,"724 8th St, Los Angeles, CA 90001" +211913,20in Monitor,1,109.99,06/05/19 12:20,"177 Chestnut St, Dallas, TX 75001" +211914,AAA Batteries (4-pack),2,2.99,06/09/19 09:26,"774 Highland St, Los Angeles, CA 90001" +211915,USB-C Charging Cable,1,11.95,06/20/19 19:22,"898 Pine St, Dallas, TX 75001" +211916,Lightning Charging Cable,1,14.95,06/09/19 20:44,"117 Dogwood St, New York City, NY 10001" +211917,AAA Batteries (4-pack),2,2.99,06/09/19 21:34,"222 Chestnut St, Portland, OR 97035" +211918,Lightning Charging Cable,2,14.95,06/19/19 13:54,"173 14th St, New York City, NY 10001" +211919,AAA Batteries (4-pack),2,2.99,06/24/19 06:58,"765 Sunset St, San Francisco, CA 94016" +211920,27in 4K Gaming Monitor,1,389.99,06/13/19 14:14,"687 1st St, San Francisco, CA 94016" +211921,Apple Airpods Headphones,1,150,06/09/19 22:50,"779 11th St, Los Angeles, CA 90001" +211922,Lightning Charging Cable,1,14.95,06/14/19 18:27,"669 North St, New York City, NY 10001" +211923,AA Batteries (4-pack),1,3.84,06/17/19 19:19,"455 Jackson St, San Francisco, CA 94016" +211924,ThinkPad Laptop,1,999.99,06/15/19 21:22,"597 Meadow St, Atlanta, GA 30301" +211925,AA Batteries (4-pack),1,3.84,06/09/19 22:39,"313 4th St, Portland, OR 97035" +211926,USB-C Charging Cable,1,11.95,06/24/19 14:23,"115 2nd St, Los Angeles, CA 90001" +211927,iPhone,1,700,06/19/19 13:33,"315 9th St, Dallas, TX 75001" +211927,Wired Headphones,1,11.99,06/19/19 13:33,"315 9th St, Dallas, TX 75001" +211928,34in Ultrawide Monitor,1,379.99,06/07/19 17:51,"409 Forest St, San Francisco, CA 94016" +211929,AA Batteries (4-pack),2,3.84,06/17/19 23:23,"305 River St, Seattle, WA 98101" +211930,USB-C Charging Cable,1,11.95,06/02/19 21:49,"654 Meadow St, Atlanta, GA 30301" +211931,Wired Headphones,1,11.99,06/16/19 12:52,"409 Cedar St, Los Angeles, CA 90001" +211932,USB-C Charging Cable,1,11.95,06/16/19 13:37,"257 North St, New York City, NY 10001" +211933,USB-C Charging Cable,1,11.95,06/14/19 22:28,"98 West St, Los Angeles, CA 90001" +211934,Wired Headphones,1,11.99,07/01/19 01:10,"143 Walnut St, Dallas, TX 75001" +211935,Lightning Charging Cable,1,14.95,06/29/19 17:19,"612 12th St, San Francisco, CA 94016" +211936,USB-C Charging Cable,1,11.95,06/10/19 07:51,"803 Church St, Atlanta, GA 30301" +211937,Apple Airpods Headphones,1,150,06/06/19 20:29,"388 Sunset St, Seattle, WA 98101" +211938,LG Dryer,1,600.0,06/18/19 19:19,"468 Meadow St, Dallas, TX 75001" +211939,Apple Airpods Headphones,1,150,06/02/19 15:15,"814 Walnut St, Boston, MA 02215" +211940,Apple Airpods Headphones,1,150,06/19/19 09:35,"783 Johnson St, New York City, NY 10001" +211941,Lightning Charging Cable,2,14.95,06/21/19 08:28,"149 8th St, Los Angeles, CA 90001" +211942,Wired Headphones,1,11.99,06/14/19 10:23,"271 Main St, Portland, ME 04101" +211943,Apple Airpods Headphones,1,150,06/21/19 09:11,"331 14th St, New York City, NY 10001" +211944,27in 4K Gaming Monitor,1,389.99,06/25/19 11:15,"621 Pine St, Boston, MA 02215" +211945,iPhone,1,700,06/25/19 07:34,"704 9th St, Dallas, TX 75001" +211946,USB-C Charging Cable,2,11.95,06/08/19 16:45,"289 Maple St, San Francisco, CA 94016" +211947,Lightning Charging Cable,1,14.95,06/01/19 09:53,"639 Church St, Los Angeles, CA 90001" +211948,USB-C Charging Cable,1,11.95,06/18/19 20:13,"399 1st St, Los Angeles, CA 90001" +211949,Google Phone,1,600,06/26/19 23:52,"676 North St, San Francisco, CA 94016" +211950,iPhone,1,700,06/28/19 11:23,"941 10th St, Dallas, TX 75001" +211950,Lightning Charging Cable,1,14.95,06/28/19 11:23,"941 10th St, Dallas, TX 75001" +211951,Apple Airpods Headphones,1,150,06/12/19 20:21,"486 Lakeview St, Seattle, WA 98101" +211952,AA Batteries (4-pack),1,3.84,06/20/19 21:25,"618 Ridge St, Los Angeles, CA 90001" +211953,iPhone,1,700,06/23/19 23:09,"29 9th St, Dallas, TX 75001" +211953,Wired Headphones,1,11.99,06/23/19 23:09,"29 9th St, Dallas, TX 75001" +211954,Wired Headphones,1,11.99,06/15/19 12:00,"414 Wilson St, San Francisco, CA 94016" +211955,Wired Headphones,1,11.99,06/28/19 17:19,"701 Highland St, San Francisco, CA 94016" +211956,USB-C Charging Cable,1,11.95,06/02/19 18:31,"271 Johnson St, Dallas, TX 75001" +211957,Lightning Charging Cable,1,14.95,06/24/19 15:57,"378 Lakeview St, Dallas, TX 75001" +211958,27in 4K Gaming Monitor,1,389.99,06/16/19 12:17,"147 North St, Seattle, WA 98101" +211959,AA Batteries (4-pack),1,3.84,06/07/19 20:31,"523 Cedar St, San Francisco, CA 94016" +211960,USB-C Charging Cable,1,11.95,06/10/19 04:34,"157 Walnut St, Boston, MA 02215" +211961,USB-C Charging Cable,1,11.95,06/23/19 16:50,"182 Madison St, Portland, ME 04101" +211962,Lightning Charging Cable,1,14.95,06/23/19 04:29,"18 Hill St, Los Angeles, CA 90001" +211963,AAA Batteries (4-pack),1,2.99,06/20/19 21:42,"513 Washington St, New York City, NY 10001" +211964,Flatscreen TV,1,300,06/26/19 18:07,"628 Cherry St, Portland, OR 97035" +211965,Lightning Charging Cable,1,14.95,06/15/19 09:43,"721 8th St, Los Angeles, CA 90001" +211966,LG Washing Machine,1,600.0,06/18/19 20:37,"516 Park St, Los Angeles, CA 90001" +211967,AA Batteries (4-pack),3,3.84,06/11/19 22:10,"753 Park St, Portland, OR 97035" +211968,Apple Airpods Headphones,1,150,06/11/19 15:50,"661 11th St, San Francisco, CA 94016" +211969,Bose SoundSport Headphones,1,99.99,06/05/19 19:27,"90 Lincoln St, San Francisco, CA 94016" +211970,Macbook Pro Laptop,1,1700,06/14/19 00:09,"20 Forest St, San Francisco, CA 94016" +211971,Bose SoundSport Headphones,1,99.99,06/25/19 14:54,"729 North St, Austin, TX 73301" +211972,27in FHD Monitor,1,149.99,06/07/19 15:52,"42 Sunset St, San Francisco, CA 94016" +211973,AA Batteries (4-pack),1,3.84,06/19/19 07:32,"158 West St, Los Angeles, CA 90001" +211974,Wired Headphones,1,11.99,06/20/19 12:04,"905 Highland St, New York City, NY 10001" +211975,Lightning Charging Cable,1,14.95,06/20/19 12:01,"91 Church St, Seattle, WA 98101" +211976,Wired Headphones,1,11.99,06/10/19 00:35,"238 Cedar St, San Francisco, CA 94016" +211977,AAA Batteries (4-pack),2,2.99,06/20/19 18:52,"880 Dogwood St, New York City, NY 10001" +211978,USB-C Charging Cable,2,11.95,06/02/19 19:24,"49 Main St, Atlanta, GA 30301" +211979,Google Phone,1,600,06/16/19 21:58,"865 Lakeview St, Austin, TX 73301" +211980,Flatscreen TV,1,300,06/07/19 07:05,"507 Cherry St, San Francisco, CA 94016" +211981,Flatscreen TV,1,300,06/18/19 21:12,"136 Cedar St, Boston, MA 02215" +211982,AAA Batteries (4-pack),1,2.99,06/19/19 19:28,"156 Lake St, Dallas, TX 75001" +211983,AA Batteries (4-pack),1,3.84,06/02/19 06:59,"272 9th St, San Francisco, CA 94016" +211984,LG Washing Machine,1,600.0,06/20/19 09:25,"606 Meadow St, San Francisco, CA 94016" +211985,AAA Batteries (4-pack),1,2.99,06/30/19 09:21,"671 Lake St, San Francisco, CA 94016" +211986,Apple Airpods Headphones,1,150,06/29/19 06:32,"669 Willow St, Boston, MA 02215" +211987,AAA Batteries (4-pack),3,2.99,06/21/19 18:57,"805 Maple St, San Francisco, CA 94016" +211988,USB-C Charging Cable,1,11.95,06/20/19 11:59,"67 7th St, Los Angeles, CA 90001" +211989,AA Batteries (4-pack),2,3.84,06/15/19 18:48,"726 Walnut St, San Francisco, CA 94016" +211990,AAA Batteries (4-pack),4,2.99,06/04/19 19:39,"696 7th St, Los Angeles, CA 90001" +211991,USB-C Charging Cable,1,11.95,06/15/19 10:10,"986 River St, Boston, MA 02215" +211992,27in FHD Monitor,1,149.99,06/25/19 20:10,"933 Wilson St, Dallas, TX 75001" +211993,Google Phone,1,600,06/04/19 22:59,"993 10th St, San Francisco, CA 94016" +211994,AA Batteries (4-pack),2,3.84,06/06/19 11:47,"43 Chestnut St, Los Angeles, CA 90001" +211995,27in 4K Gaming Monitor,1,389.99,06/27/19 22:21,"938 Center St, Dallas, TX 75001" +211996,20in Monitor,1,109.99,06/06/19 21:52,"328 Ridge St, Seattle, WA 98101" +211997,USB-C Charging Cable,2,11.95,06/30/19 18:25,"743 Walnut St, New York City, NY 10001" +211998,AA Batteries (4-pack),1,3.84,06/10/19 23:23,"446 14th St, San Francisco, CA 94016" +211999,Macbook Pro Laptop,1,1700,06/09/19 11:27,"294 Madison St, Austin, TX 73301" +212000,Lightning Charging Cable,1,14.95,06/26/19 15:02,"160 13th St, Los Angeles, CA 90001" +212001,USB-C Charging Cable,1,11.95,06/05/19 06:27,"125 Church St, San Francisco, CA 94016" +212002,AA Batteries (4-pack),1,3.84,06/16/19 09:14,"587 2nd St, San Francisco, CA 94016" +212003,27in 4K Gaming Monitor,1,389.99,06/01/19 13:09,"86 13th St, San Francisco, CA 94016" +212004,USB-C Charging Cable,1,11.95,06/19/19 20:48,"625 Johnson St, San Francisco, CA 94016" +212005,iPhone,1,700,06/13/19 06:22,"76 Highland St, San Francisco, CA 94016" +212006,34in Ultrawide Monitor,1,379.99,06/04/19 10:36,"375 8th St, San Francisco, CA 94016" +212007,Bose SoundSport Headphones,1,99.99,06/07/19 18:38,"998 8th St, New York City, NY 10001" +212008,AA Batteries (4-pack),1,3.84,06/02/19 13:04,"195 Lincoln St, Boston, MA 02215" +212009,Wired Headphones,1,11.99,06/27/19 12:33,"302 Church St, Portland, ME 04101" +212010,AAA Batteries (4-pack),1,2.99,06/27/19 23:02,"710 Lincoln St, Austin, TX 73301" +212011,Bose SoundSport Headphones,1,99.99,06/03/19 16:32,"692 Jackson St, New York City, NY 10001" +212012,USB-C Charging Cable,1,11.95,06/30/19 21:23,"679 Meadow St, Boston, MA 02215" +212013,AA Batteries (4-pack),1,3.84,06/23/19 20:27,"426 8th St, New York City, NY 10001" +212014,Lightning Charging Cable,1,14.95,06/29/19 14:21,"315 7th St, San Francisco, CA 94016" +212015,Lightning Charging Cable,1,14.95,06/02/19 16:01,"511 Hickory St, Los Angeles, CA 90001" +212016,Lightning Charging Cable,1,14.95,06/25/19 10:58,"876 2nd St, Boston, MA 02215" +212017,AAA Batteries (4-pack),1,2.99,06/13/19 17:19,"215 11th St, Los Angeles, CA 90001" +212018,USB-C Charging Cable,2,11.95,06/01/19 13:24,"680 North St, Portland, ME 04101" +212019,Lightning Charging Cable,1,14.95,06/12/19 08:30,"708 10th St, Dallas, TX 75001" +212020,ThinkPad Laptop,1,999.99,06/06/19 13:26,"746 Lakeview St, Atlanta, GA 30301" +212021,AAA Batteries (4-pack),1,2.99,06/29/19 11:25,"54 Highland St, Austin, TX 73301" +212022,iPhone,1,700,06/26/19 16:55,"793 Park St, Austin, TX 73301" +212022,iPhone,1,700,06/26/19 16:55,"793 Park St, Austin, TX 73301" +212023,USB-C Charging Cable,3,11.95,06/09/19 17:56,"882 Lake St, Atlanta, GA 30301" +212024,Bose SoundSport Headphones,1,99.99,06/08/19 17:08,"561 Highland St, Los Angeles, CA 90001" +212024,27in 4K Gaming Monitor,1,389.99,06/08/19 17:08,"561 Highland St, Los Angeles, CA 90001" +212025,Wired Headphones,1,11.99,06/04/19 20:53,"580 Chestnut St, San Francisco, CA 94016" +212026,LG Washing Machine,1,600.0,06/03/19 11:56,"1 Highland St, San Francisco, CA 94016" +212027,USB-C Charging Cable,2,11.95,06/05/19 14:08,"174 5th St, Los Angeles, CA 90001" +212028,Wired Headphones,1,11.99,06/17/19 18:18,"934 North St, Los Angeles, CA 90001" +212029,AA Batteries (4-pack),1,3.84,06/08/19 13:26,"131 2nd St, Atlanta, GA 30301" +212030,Apple Airpods Headphones,2,150,06/23/19 10:22,"734 Hickory St, San Francisco, CA 94016" +212031,Bose SoundSport Headphones,1,99.99,06/03/19 22:58,"846 Wilson St, Portland, OR 97035" +212032,USB-C Charging Cable,1,11.95,06/04/19 13:55,"448 14th St, Los Angeles, CA 90001" +212033,Lightning Charging Cable,1,14.95,06/08/19 20:54,"487 Elm St, Portland, OR 97035" +212034,Flatscreen TV,1,300,06/26/19 09:31,"388 14th St, Seattle, WA 98101" +212035,27in FHD Monitor,1,149.99,06/20/19 08:23,"601 Adams St, Atlanta, GA 30301" +212036,Wired Headphones,2,11.99,06/07/19 13:13,"152 Washington St, New York City, NY 10001" +212037,AAA Batteries (4-pack),2,2.99,06/03/19 21:34,"855 7th St, San Francisco, CA 94016" +212038,AA Batteries (4-pack),1,3.84,06/14/19 13:45,"654 1st St, Portland, OR 97035" +212039,AA Batteries (4-pack),1,3.84,06/22/19 18:21,"483 Meadow St, New York City, NY 10001" +212040,AAA Batteries (4-pack),1,2.99,06/02/19 13:37,"94 12th St, Los Angeles, CA 90001" +212041,USB-C Charging Cable,1,11.95,06/14/19 03:21,"381 Lake St, Austin, TX 73301" +212042,Bose SoundSport Headphones,1,99.99,06/21/19 23:54,"245 Jackson St, Dallas, TX 75001" +212043,Wired Headphones,1,11.99,06/21/19 23:05,"507 Maple St, Los Angeles, CA 90001" +212044,AAA Batteries (4-pack),1,2.99,06/15/19 21:31,"838 Highland St, Atlanta, GA 30301" +212045,Apple Airpods Headphones,1,150,06/10/19 20:25,"58 6th St, Seattle, WA 98101" +212046,AAA Batteries (4-pack),1,2.99,06/11/19 19:17,"673 West St, San Francisco, CA 94016" +212047,AA Batteries (4-pack),1,3.84,06/26/19 20:33,"334 Jackson St, New York City, NY 10001" +212048,ThinkPad Laptop,1,999.99,06/20/19 18:54,"666 11th St, New York City, NY 10001" +212049,Bose SoundSport Headphones,1,99.99,06/27/19 13:22,"761 Cherry St, San Francisco, CA 94016" +212050,34in Ultrawide Monitor,1,379.99,06/09/19 17:47,"676 Lincoln St, Seattle, WA 98101" +212051,27in FHD Monitor,1,149.99,06/30/19 10:40,"364 South St, New York City, NY 10001" +212052,Lightning Charging Cable,1,14.95,06/17/19 17:01,"777 South St, San Francisco, CA 94016" +212053,Lightning Charging Cable,1,14.95,06/30/19 18:48,"790 Highland St, New York City, NY 10001" +212053,Lightning Charging Cable,1,14.95,06/30/19 18:48,"790 Highland St, New York City, NY 10001" +212054,Flatscreen TV,1,300,06/04/19 00:38,"789 Washington St, Seattle, WA 98101" +212055,USB-C Charging Cable,1,11.95,06/11/19 09:25,"176 Elm St, New York City, NY 10001" +212056,AA Batteries (4-pack),1,3.84,06/09/19 22:44,"653 14th St, San Francisco, CA 94016" +212057,27in 4K Gaming Monitor,1,389.99,06/06/19 10:55,"955 Forest St, Dallas, TX 75001" +212058,LG Washing Machine,1,600.0,06/17/19 13:22,"108 4th St, Atlanta, GA 30301" +212059,LG Dryer,1,600.0,06/14/19 12:07,"906 6th St, Atlanta, GA 30301" +212060,iPhone,1,700,06/06/19 18:54,"706 12th St, New York City, NY 10001" +212060,Apple Airpods Headphones,1,150,06/06/19 18:54,"706 12th St, New York City, NY 10001" +212061,Flatscreen TV,1,300,06/08/19 22:07,"138 Spruce St, Austin, TX 73301" +212062,Lightning Charging Cable,1,14.95,06/11/19 09:41,"300 Cedar St, San Francisco, CA 94016" +212063,Wired Headphones,1,11.99,06/06/19 08:21,"460 7th St, San Francisco, CA 94016" +212064,AAA Batteries (4-pack),4,2.99,06/06/19 13:54,"226 10th St, San Francisco, CA 94016" +212065,USB-C Charging Cable,1,11.95,06/28/19 11:05,"175 Park St, San Francisco, CA 94016" +212066,AA Batteries (4-pack),2,3.84,06/25/19 15:56,"714 Church St, Portland, ME 04101" +212067,Apple Airpods Headphones,1,150,06/02/19 11:21,"931 Dogwood St, San Francisco, CA 94016" +212068,Lightning Charging Cable,1,14.95,06/11/19 14:21,"964 Walnut St, Seattle, WA 98101" +212069,Google Phone,1,600,06/10/19 15:05,"982 7th St, Los Angeles, CA 90001" +212070,iPhone,1,700,06/18/19 15:05,"536 11th St, San Francisco, CA 94016" +212071,Vareebadd Phone,1,400,06/10/19 18:16,"704 8th St, Portland, OR 97035" +212072,AA Batteries (4-pack),1,3.84,06/18/19 15:33,"867 Forest St, San Francisco, CA 94016" +212073,Flatscreen TV,1,300,06/30/19 00:36,"319 Jefferson St, Austin, TX 73301" +212074,Apple Airpods Headphones,1,150,06/26/19 11:54,"28 Lakeview St, Seattle, WA 98101" +212075,AA Batteries (4-pack),1,3.84,06/20/19 19:07,"489 14th St, Boston, MA 02215" +212076,AAA Batteries (4-pack),1,2.99,06/28/19 21:46,"610 West St, New York City, NY 10001" +212077,Apple Airpods Headphones,1,150,06/28/19 21:01,"199 Cherry St, Los Angeles, CA 90001" +212078,AA Batteries (4-pack),1,3.84,06/18/19 15:42,"57 Willow St, San Francisco, CA 94016" +212079,AAA Batteries (4-pack),1,2.99,06/17/19 22:53,"541 Jefferson St, Portland, ME 04101" +212080,Wired Headphones,1,11.99,06/22/19 23:35,"775 Meadow St, Atlanta, GA 30301" +212081,Apple Airpods Headphones,1,150,06/21/19 19:31,"500 Washington St, Boston, MA 02215" +212082,27in 4K Gaming Monitor,1,389.99,06/05/19 12:41,"390 Hickory St, San Francisco, CA 94016" +212083,USB-C Charging Cable,2,11.95,06/03/19 07:15,"962 2nd St, Atlanta, GA 30301" +212084,Google Phone,1,600,06/11/19 22:51,"472 Johnson St, San Francisco, CA 94016" +212085,AA Batteries (4-pack),1,3.84,06/08/19 09:30,"530 Hickory St, San Francisco, CA 94016" +212086,Lightning Charging Cable,1,14.95,06/30/19 06:52,"182 River St, Los Angeles, CA 90001" +212087,27in FHD Monitor,1,149.99,06/06/19 10:41,"817 14th St, Boston, MA 02215" +212088,USB-C Charging Cable,1,11.95,06/11/19 21:03,"867 1st St, Seattle, WA 98101" +212089,Lightning Charging Cable,1,14.95,06/02/19 21:49,"697 Cherry St, Dallas, TX 75001" +212090,iPhone,1,700,06/18/19 15:37,"168 Meadow St, San Francisco, CA 94016" +212091,AA Batteries (4-pack),1,3.84,06/13/19 22:15,"415 Johnson St, Dallas, TX 75001" +212092,Apple Airpods Headphones,1,150,06/20/19 21:51,"710 5th St, Los Angeles, CA 90001" +212093,iPhone,1,700,06/17/19 10:17,"850 12th St, Los Angeles, CA 90001" +212094,Bose SoundSport Headphones,1,99.99,06/16/19 08:29,"837 Willow St, Seattle, WA 98101" +212095,Lightning Charging Cable,1,14.95,06/22/19 11:48,"397 14th St, New York City, NY 10001" +212096,Vareebadd Phone,1,400,06/14/19 18:43,"890 Jackson St, San Francisco, CA 94016" +212097,AAA Batteries (4-pack),1,2.99,06/12/19 12:59,"721 Madison St, Boston, MA 02215" +212098,Bose SoundSport Headphones,1,99.99,06/19/19 17:22,"839 Ridge St, San Francisco, CA 94016" +212099,Lightning Charging Cable,1,14.95,06/01/19 23:04,"444 River St, Los Angeles, CA 90001" +212100,ThinkPad Laptop,1,999.99,06/08/19 13:19,"584 Maple St, New York City, NY 10001" +212101,AA Batteries (4-pack),2,3.84,06/13/19 19:33,"796 Forest St, Austin, TX 73301" +212102,Google Phone,1,600,06/07/19 12:49,"731 Maple St, Boston, MA 02215" +212103,Apple Airpods Headphones,1,150,06/22/19 17:39,"415 Walnut St, Boston, MA 02215" +212104,USB-C Charging Cable,1,11.95,06/20/19 16:21,"459 Ridge St, San Francisco, CA 94016" +212105,Bose SoundSport Headphones,1,99.99,06/30/19 10:53,"494 Spruce St, New York City, NY 10001" +212106,Apple Airpods Headphones,1,150,06/22/19 21:00,"233 8th St, Seattle, WA 98101" +212107,AAA Batteries (4-pack),1,2.99,06/08/19 12:37,"16 9th St, Atlanta, GA 30301" +212108,AAA Batteries (4-pack),2,2.99,06/26/19 17:17,"467 Washington St, Austin, TX 73301" +212109,AA Batteries (4-pack),1,3.84,06/14/19 17:51,"333 Lincoln St, San Francisco, CA 94016" +212110,AA Batteries (4-pack),1,3.84,06/23/19 12:27,"835 Wilson St, Boston, MA 02215" +212111,Lightning Charging Cable,1,14.95,06/17/19 00:41,"374 Elm St, Boston, MA 02215" +212112,USB-C Charging Cable,1,11.95,06/25/19 09:19,"333 Maple St, San Francisco, CA 94016" +212113,Apple Airpods Headphones,1,150,06/21/19 16:19,"972 Wilson St, New York City, NY 10001" +212114,AAA Batteries (4-pack),2,2.99,06/13/19 08:50,"41 Wilson St, New York City, NY 10001" +212115,Wired Headphones,1,11.99,06/28/19 11:59,"312 Highland St, San Francisco, CA 94016" +212116,USB-C Charging Cable,2,11.95,06/11/19 15:59,"914 9th St, San Francisco, CA 94016" +212117,34in Ultrawide Monitor,1,379.99,06/22/19 09:48,"764 Cherry St, Boston, MA 02215" +212118,Bose SoundSport Headphones,1,99.99,06/24/19 20:04,"610 13th St, Los Angeles, CA 90001" +212119,AAA Batteries (4-pack),1,2.99,06/19/19 20:18,"429 Maple St, Atlanta, GA 30301" +212120,Apple Airpods Headphones,1,150,06/24/19 19:43,"312 West St, Atlanta, GA 30301" +212121,Lightning Charging Cable,1,14.95,06/20/19 10:03,"2 5th St, New York City, NY 10001" +212122,Bose SoundSport Headphones,1,99.99,06/09/19 19:07,"617 West St, Atlanta, GA 30301" +212123,Bose SoundSport Headphones,1,99.99,06/18/19 21:00,"137 Cherry St, Portland, OR 97035" +212124,AA Batteries (4-pack),3,3.84,06/29/19 11:39,"164 1st St, Seattle, WA 98101" +212125,Lightning Charging Cable,1,14.95,06/10/19 22:53,"893 7th St, Los Angeles, CA 90001" +212126,AA Batteries (4-pack),1,3.84,06/22/19 09:39,"156 River St, Los Angeles, CA 90001" +212127,ThinkPad Laptop,1,999.99,06/20/19 19:16,"667 Ridge St, Boston, MA 02215" +212128,Google Phone,1,600,06/26/19 06:40,"705 Park St, New York City, NY 10001" +212129,Lightning Charging Cable,1,14.95,06/04/19 18:32,"200 8th St, Los Angeles, CA 90001" +212130,USB-C Charging Cable,1,11.95,06/08/19 10:07,"273 Hill St, Austin, TX 73301" +212131,Lightning Charging Cable,1,14.95,06/03/19 18:06,"76 Maple St, Los Angeles, CA 90001" +212132,34in Ultrawide Monitor,1,379.99,06/27/19 15:53,"249 Adams St, Los Angeles, CA 90001" +212133,iPhone,1,700,06/02/19 20:17,"632 West St, Seattle, WA 98101" +212134,27in FHD Monitor,1,149.99,06/23/19 13:27,"691 Jackson St, San Francisco, CA 94016" +212135,20in Monitor,1,109.99,06/12/19 07:29,"911 Walnut St, Los Angeles, CA 90001" +212136,Bose SoundSport Headphones,1,99.99,06/27/19 22:39,"369 Hill St, Los Angeles, CA 90001" +212137,Vareebadd Phone,1,400,06/06/19 08:28,"648 Chestnut St, Los Angeles, CA 90001" +212138,Lightning Charging Cable,1,14.95,06/18/19 17:28,"228 14th St, Atlanta, GA 30301" +212139,Flatscreen TV,1,300,06/11/19 10:43,"681 Ridge St, Los Angeles, CA 90001" +212140,Lightning Charging Cable,1,14.95,06/11/19 12:25,"830 Cedar St, Los Angeles, CA 90001" +212141,Lightning Charging Cable,1,14.95,06/15/19 12:29,"714 Elm St, Boston, MA 02215" +212142,AAA Batteries (4-pack),1,2.99,06/01/19 14:53,"777 Willow St, Los Angeles, CA 90001" +212142,Apple Airpods Headphones,1,150,06/01/19 14:53,"777 Willow St, Los Angeles, CA 90001" +212143,AAA Batteries (4-pack),1,2.99,06/20/19 13:11,"670 Hill St, Austin, TX 73301" +212144,Wired Headphones,1,11.99,06/10/19 21:34,"95 Chestnut St, Boston, MA 02215" +212145,Lightning Charging Cable,1,14.95,06/02/19 11:09,"938 Cherry St, Atlanta, GA 30301" +212146,AAA Batteries (4-pack),1,2.99,06/02/19 12:11,"220 Walnut St, Seattle, WA 98101" +212147,USB-C Charging Cable,1,11.95,06/01/19 15:37,"521 Hickory St, San Francisco, CA 94016" +212148,27in FHD Monitor,1,149.99,06/05/19 14:47,"584 Lakeview St, Los Angeles, CA 90001" +212149,Apple Airpods Headphones,1,150,06/27/19 19:59,"990 1st St, New York City, NY 10001" +212150,Bose SoundSport Headphones,1,99.99,06/27/19 17:08,"527 7th St, Dallas, TX 75001" +212151,34in Ultrawide Monitor,1,379.99,06/19/19 18:15,"760 Walnut St, Seattle, WA 98101" +212152,Wired Headphones,1,11.99,06/29/19 07:33,"106 Meadow St, San Francisco, CA 94016" +212153,AA Batteries (4-pack),1,3.84,06/24/19 00:05,"658 1st St, New York City, NY 10001" +212154,AA Batteries (4-pack),1,3.84,06/08/19 18:35,"224 2nd St, Los Angeles, CA 90001" +212155,34in Ultrawide Monitor,1,379.99,06/14/19 11:17,"650 Main St, San Francisco, CA 94016" +212156,27in FHD Monitor,1,149.99,06/16/19 12:32,"718 Chestnut St, San Francisco, CA 94016" +212157,Flatscreen TV,1,300,06/09/19 16:27,"411 Walnut St, San Francisco, CA 94016" +212158,USB-C Charging Cable,1,11.95,06/18/19 16:12,"17 Spruce St, Atlanta, GA 30301" +212159,USB-C Charging Cable,1,11.95,06/06/19 08:10,"274 Hickory St, New York City, NY 10001" +212160,Wired Headphones,1,11.99,06/14/19 11:32,"260 Lakeview St, San Francisco, CA 94016" +212161,AAA Batteries (4-pack),1,2.99,06/21/19 09:46,"490 Highland St, Dallas, TX 75001" +212162,Wired Headphones,1,11.99,06/01/19 22:29,"51 Forest St, Los Angeles, CA 90001" +212163,Lightning Charging Cable,1,14.95,06/25/19 08:58,"617 Madison St, San Francisco, CA 94016" +212164,AA Batteries (4-pack),1,3.84,06/11/19 21:30,"755 5th St, Dallas, TX 75001" +212165,Lightning Charging Cable,1,14.95,06/21/19 12:36,"223 Adams St, San Francisco, CA 94016" +212166,iPhone,1,700,06/25/19 16:01,"346 Church St, Los Angeles, CA 90001" +212167,AAA Batteries (4-pack),1,2.99,06/14/19 10:38,"994 Maple St, San Francisco, CA 94016" +212168,AAA Batteries (4-pack),1,2.99,06/19/19 19:32,"915 Adams St, Los Angeles, CA 90001" +212169,Bose SoundSport Headphones,1,99.99,06/14/19 17:50,"863 Washington St, San Francisco, CA 94016" +212170,Lightning Charging Cable,1,14.95,06/10/19 19:52,"343 6th St, New York City, NY 10001" +212171,27in FHD Monitor,1,149.99,06/02/19 21:32,"313 South St, San Francisco, CA 94016" +212172,Bose SoundSport Headphones,1,99.99,06/15/19 15:32,"260 Hickory St, Los Angeles, CA 90001" +212172,AA Batteries (4-pack),2,3.84,06/15/19 15:32,"260 Hickory St, Los Angeles, CA 90001" +212173,AA Batteries (4-pack),5,3.84,06/23/19 12:04,"714 1st St, Austin, TX 73301" +212174,27in FHD Monitor,1,149.99,06/13/19 18:20,"351 Highland St, Atlanta, GA 30301" +212175,Lightning Charging Cable,1,14.95,06/17/19 12:26,"136 11th St, New York City, NY 10001" +212176,Lightning Charging Cable,1,14.95,06/18/19 18:10,"683 Elm St, Austin, TX 73301" +212177,Wired Headphones,1,11.99,06/08/19 17:51,"465 5th St, Portland, OR 97035" +212178,27in FHD Monitor,1,149.99,06/06/19 01:11,"891 Jefferson St, Portland, OR 97035" +212179,Wired Headphones,1,11.99,06/06/19 19:40,"567 Maple St, San Francisco, CA 94016" +212180,AAA Batteries (4-pack),1,2.99,06/16/19 13:42,"344 Washington St, Portland, OR 97035" +212181,27in 4K Gaming Monitor,1,389.99,06/20/19 01:06,"92 Willow St, San Francisco, CA 94016" +212182,Wired Headphones,1,11.99,06/08/19 11:57,"754 Highland St, Atlanta, GA 30301" +212183,34in Ultrawide Monitor,1,379.99,06/13/19 16:36,"705 Hill St, San Francisco, CA 94016" +212184,USB-C Charging Cable,1,11.95,06/29/19 21:07,"56 Meadow St, San Francisco, CA 94016" +212185,Lightning Charging Cable,1,14.95,06/12/19 20:31,"396 Highland St, Portland, OR 97035" +212186,Lightning Charging Cable,1,14.95,06/29/19 19:54,"620 Cherry St, Los Angeles, CA 90001" +212187,AA Batteries (4-pack),1,3.84,06/11/19 09:23,"166 South St, Dallas, TX 75001" +212188,Flatscreen TV,1,300,06/18/19 17:13,"773 Chestnut St, San Francisco, CA 94016" +212189,AA Batteries (4-pack),3,3.84,06/02/19 19:14,"227 2nd St, Los Angeles, CA 90001" +212190,AA Batteries (4-pack),1,3.84,06/12/19 23:30,"339 Lincoln St, Los Angeles, CA 90001" +212191,Lightning Charging Cable,1,14.95,06/21/19 15:29,"784 6th St, Atlanta, GA 30301" +212192,AA Batteries (4-pack),1,3.84,06/03/19 01:37,"883 Madison St, Atlanta, GA 30301" +212193,AA Batteries (4-pack),2,3.84,06/10/19 09:56,"501 West St, San Francisco, CA 94016" +212194,Lightning Charging Cable,1,14.95,06/26/19 10:26,"211 11th St, Austin, TX 73301" +212195,USB-C Charging Cable,1,11.95,06/01/19 21:33,"135 Forest St, Austin, TX 73301" +212196,AA Batteries (4-pack),1,3.84,06/12/19 19:01,"3 1st St, Dallas, TX 75001" +212197,Apple Airpods Headphones,1,150,06/24/19 10:18,"838 Hickory St, Los Angeles, CA 90001" +212198,USB-C Charging Cable,1,11.95,06/22/19 09:25,"282 Jackson St, San Francisco, CA 94016" +212199,20in Monitor,1,109.99,06/10/19 19:35,"460 Chestnut St, San Francisco, CA 94016" +212200,Google Phone,1,600,06/26/19 12:45,"259 Lincoln St, New York City, NY 10001" +212201,Lightning Charging Cable,1,14.95,06/18/19 20:28,"375 Ridge St, New York City, NY 10001" +212202,USB-C Charging Cable,1,11.95,06/28/19 10:34,"708 5th St, San Francisco, CA 94016" +212203,Flatscreen TV,1,300,06/24/19 14:34,"866 Wilson St, New York City, NY 10001" +212204,AA Batteries (4-pack),1,3.84,06/20/19 09:25,"325 2nd St, Boston, MA 02215" +212205,Lightning Charging Cable,1,14.95,06/03/19 03:45,"67 River St, San Francisco, CA 94016" +212206,AAA Batteries (4-pack),1,2.99,06/25/19 14:18,"891 4th St, Austin, TX 73301" +212207,AA Batteries (4-pack),1,3.84,06/19/19 19:38,"336 Main St, Boston, MA 02215" +212208,Lightning Charging Cable,1,14.95,06/30/19 09:06,"399 Sunset St, Los Angeles, CA 90001" +212209,USB-C Charging Cable,1,11.95,06/29/19 12:22,"883 9th St, Portland, OR 97035" +212210,AA Batteries (4-pack),1,3.84,06/02/19 05:15,"523 13th St, San Francisco, CA 94016" +212211,AAA Batteries (4-pack),3,2.99,06/02/19 16:17,"130 West St, Los Angeles, CA 90001" +212212,Wired Headphones,1,11.99,06/24/19 09:08,"996 Hill St, New York City, NY 10001" +212213,20in Monitor,1,109.99,06/24/19 16:02,"718 Meadow St, Dallas, TX 75001" +212214,Google Phone,1,600,06/18/19 08:11,"450 10th St, Dallas, TX 75001" +212215,AAA Batteries (4-pack),1,2.99,06/30/19 19:24,"530 Sunset St, San Francisco, CA 94016" +212216,Wired Headphones,2,11.99,06/05/19 12:40,"943 12th St, New York City, NY 10001" +212217,Google Phone,1,600,06/24/19 10:35,"738 Lakeview St, New York City, NY 10001" +212217,USB-C Charging Cable,1,11.95,06/24/19 10:35,"738 Lakeview St, New York City, NY 10001" +212218,USB-C Charging Cable,1,11.95,06/04/19 22:17,"488 8th St, Los Angeles, CA 90001" +212219,AA Batteries (4-pack),1,3.84,06/16/19 09:39,"680 Center St, New York City, NY 10001" +212220,34in Ultrawide Monitor,1,379.99,06/28/19 00:15,"513 11th St, San Francisco, CA 94016" +212221,Lightning Charging Cable,1,14.95,06/15/19 10:21,"695 Chestnut St, San Francisco, CA 94016" +212222,Bose SoundSport Headphones,1,99.99,06/02/19 14:00,"688 Wilson St, Dallas, TX 75001" +212223,AAA Batteries (4-pack),2,2.99,06/21/19 17:05,"475 Highland St, Atlanta, GA 30301" +212224,Lightning Charging Cable,1,14.95,06/13/19 10:39,"147 Wilson St, San Francisco, CA 94016" +212225,Lightning Charging Cable,1,14.95,06/12/19 19:37,"733 Lakeview St, Los Angeles, CA 90001" +212226,USB-C Charging Cable,1,11.95,06/09/19 21:07,"129 Lincoln St, Boston, MA 02215" +212227,Wired Headphones,1,11.99,06/27/19 17:08,"546 13th St, Austin, TX 73301" +212228,34in Ultrawide Monitor,1,379.99,06/24/19 18:40,"178 Park St, Seattle, WA 98101" +212229,AA Batteries (4-pack),1,3.84,06/12/19 11:09,"550 Highland St, Atlanta, GA 30301" +212230,Lightning Charging Cable,1,14.95,06/24/19 07:10,"468 South St, San Francisco, CA 94016" +212231,AA Batteries (4-pack),2,3.84,06/18/19 21:55,"183 Ridge St, San Francisco, CA 94016" +212232,Apple Airpods Headphones,1,150,06/24/19 23:40,"176 4th St, San Francisco, CA 94016" +212233,Macbook Pro Laptop,1,1700,06/23/19 12:21,"234 Center St, New York City, NY 10001" +212234,Apple Airpods Headphones,1,150,06/20/19 06:39,"169 Lincoln St, New York City, NY 10001" +212235,34in Ultrawide Monitor,1,379.99,06/28/19 16:29,"10 Willow St, Atlanta, GA 30301" +212236,Wired Headphones,1,11.99,06/04/19 09:56,"132 Walnut St, Portland, OR 97035" +212237,Wired Headphones,1,11.99,06/30/19 20:19,"88 4th St, Los Angeles, CA 90001" +212238,Apple Airpods Headphones,1,150,06/03/19 10:53,"1 12th St, Atlanta, GA 30301" +212239,27in 4K Gaming Monitor,1,389.99,06/22/19 20:53,"190 Maple St, San Francisco, CA 94016" +212240,Lightning Charging Cable,1,14.95,06/09/19 20:28,"387 Park St, Seattle, WA 98101" +212241,27in FHD Monitor,1,149.99,06/23/19 16:58,"352 11th St, Boston, MA 02215" +212242,iPhone,1,700,06/03/19 21:15,"913 12th St, San Francisco, CA 94016" +212242,AAA Batteries (4-pack),1,2.99,06/03/19 21:15,"913 12th St, San Francisco, CA 94016" +212243,27in 4K Gaming Monitor,1,389.99,06/04/19 19:37,"751 North St, New York City, NY 10001" +212244,AAA Batteries (4-pack),2,2.99,06/27/19 07:18,"932 2nd St, San Francisco, CA 94016" +212245,Bose SoundSport Headphones,1,99.99,06/13/19 20:21,"156 South St, San Francisco, CA 94016" +212246,AA Batteries (4-pack),1,3.84,06/19/19 10:16,"126 Forest St, Seattle, WA 98101" +212247,Bose SoundSport Headphones,1,99.99,06/12/19 10:16,"239 Chestnut St, San Francisco, CA 94016" +212248,Bose SoundSport Headphones,1,99.99,06/21/19 11:26,"887 Highland St, Los Angeles, CA 90001" +212249,Apple Airpods Headphones,1,150,06/09/19 10:21,"796 9th St, San Francisco, CA 94016" +212250,AAA Batteries (4-pack),1,2.99,06/21/19 09:05,"963 Cedar St, Portland, OR 97035" +212251,Bose SoundSport Headphones,1,99.99,06/10/19 10:44,"516 Highland St, Portland, OR 97035" +212252,Lightning Charging Cable,1,14.95,06/21/19 12:14,"809 1st St, Boston, MA 02215" +212253,AAA Batteries (4-pack),2,2.99,06/20/19 21:59,"367 10th St, Portland, ME 04101" +212254,Apple Airpods Headphones,1,150,06/08/19 10:32,"546 Ridge St, Dallas, TX 75001" +212255,AA Batteries (4-pack),2,3.84,06/30/19 13:43,"792 Park St, New York City, NY 10001" +212256,Macbook Pro Laptop,1,1700,06/18/19 13:39,"470 Johnson St, Dallas, TX 75001" +212257,Bose SoundSport Headphones,1,99.99,06/11/19 17:18,"523 Cedar St, New York City, NY 10001" +212258,AA Batteries (4-pack),2,3.84,06/03/19 17:25,"427 Jefferson St, San Francisco, CA 94016" +212259,Lightning Charging Cable,1,14.95,06/21/19 17:59,"285 Cedar St, New York City, NY 10001" +212260,LG Washing Machine,1,600.0,06/14/19 20:37,"844 Center St, Los Angeles, CA 90001" +212261,AA Batteries (4-pack),1,3.84,06/27/19 14:14,"208 River St, Seattle, WA 98101" +212262,Wired Headphones,1,11.99,06/04/19 12:18,"621 Willow St, Dallas, TX 75001" +212263,34in Ultrawide Monitor,1,379.99,06/17/19 06:32,"813 Lakeview St, Dallas, TX 75001" +212264,AAA Batteries (4-pack),1,2.99,06/18/19 19:35,"39 Main St, Seattle, WA 98101" +212264,AA Batteries (4-pack),1,3.84,06/18/19 19:35,"39 Main St, Seattle, WA 98101" +212265,USB-C Charging Cable,1,11.95,06/10/19 03:12,"664 Johnson St, San Francisco, CA 94016" +212266,Wired Headphones,1,11.99,06/30/19 16:50,"845 7th St, Seattle, WA 98101" +212267,AA Batteries (4-pack),4,3.84,06/08/19 19:30,"367 Meadow St, Dallas, TX 75001" +212268,AAA Batteries (4-pack),1,2.99,06/10/19 16:11,"323 9th St, Seattle, WA 98101" +212269,iPhone,1,700,06/16/19 16:35,"450 Chestnut St, New York City, NY 10001" +212269,Wired Headphones,2,11.99,06/16/19 16:35,"450 Chestnut St, New York City, NY 10001" +212270,Flatscreen TV,1,300,06/21/19 21:58,"990 Wilson St, San Francisco, CA 94016" +212271,Lightning Charging Cable,1,14.95,06/27/19 20:57,"340 Lincoln St, San Francisco, CA 94016" +212272,Wired Headphones,1,11.99,06/26/19 15:55,"353 Meadow St, San Francisco, CA 94016" +212273,USB-C Charging Cable,1,11.95,06/05/19 18:27,"816 Cherry St, San Francisco, CA 94016" +212274,Flatscreen TV,1,300,06/01/19 10:41,"775 11th St, Boston, MA 02215" +212275,Bose SoundSport Headphones,1,99.99,06/28/19 21:43,"78 Chestnut St, Seattle, WA 98101" +212276,Wired Headphones,1,11.99,06/11/19 19:31,"946 Jefferson St, New York City, NY 10001" +212277,AA Batteries (4-pack),1,3.84,06/11/19 14:05,"236 4th St, New York City, NY 10001" +212278,27in 4K Gaming Monitor,1,389.99,06/10/19 02:00,"183 Cedar St, Boston, MA 02215" +212279,USB-C Charging Cable,1,11.95,06/01/19 18:07,"840 7th St, Seattle, WA 98101" +212280,Lightning Charging Cable,2,14.95,06/29/19 19:39,"604 11th St, Boston, MA 02215" +212281,AA Batteries (4-pack),1,3.84,06/29/19 19:58,"771 Hickory St, New York City, NY 10001" +212282,Lightning Charging Cable,1,14.95,06/21/19 13:04,"791 2nd St, New York City, NY 10001" +212283,AA Batteries (4-pack),1,3.84,06/29/19 22:27,"967 13th St, Los Angeles, CA 90001" +212284,Wired Headphones,1,11.99,06/08/19 02:04,"995 North St, Seattle, WA 98101" +212285,Flatscreen TV,1,300,06/07/19 12:04,"100 River St, Austin, TX 73301" +212286,Bose SoundSport Headphones,1,99.99,06/19/19 22:54,"604 Adams St, Boston, MA 02215" +212287,Wired Headphones,1,11.99,06/28/19 09:16,"286 Park St, Boston, MA 02215" +212288,Macbook Pro Laptop,1,1700,06/07/19 08:12,"30 Cedar St, San Francisco, CA 94016" +212289,Apple Airpods Headphones,1,150,06/20/19 19:37,"895 Meadow St, San Francisco, CA 94016" +212290,USB-C Charging Cable,1,11.95,06/24/19 22:37,"391 7th St, San Francisco, CA 94016" +212291,USB-C Charging Cable,1,11.95,06/08/19 18:06,"156 4th St, Los Angeles, CA 90001" +212292,iPhone,1,700,06/10/19 06:22,"772 Spruce St, New York City, NY 10001" +212293,ThinkPad Laptop,1,999.99,06/04/19 12:52,"553 2nd St, San Francisco, CA 94016" +212294,iPhone,1,700,06/29/19 16:01,"652 Maple St, New York City, NY 10001" +212295,Lightning Charging Cable,1,14.95,06/22/19 13:14,"359 Dogwood St, Boston, MA 02215" +212296,AA Batteries (4-pack),2,3.84,06/29/19 15:16,"761 14th St, San Francisco, CA 94016" +212297,Wired Headphones,1,11.99,06/20/19 15:28,"539 South St, Los Angeles, CA 90001" +212298,Wired Headphones,1,11.99,06/19/19 15:34,"157 Main St, Boston, MA 02215" +212299,Apple Airpods Headphones,1,150,06/09/19 02:28,"317 2nd St, Boston, MA 02215" +212300,ThinkPad Laptop,1,999.99,06/17/19 22:27,"388 Center St, New York City, NY 10001" +212301,Apple Airpods Headphones,1,150,06/14/19 06:47,"441 Pine St, Los Angeles, CA 90001" +212302,Wired Headphones,1,11.99,06/28/19 18:56,"220 Washington St, San Francisco, CA 94016" +212303,Lightning Charging Cable,1,14.95,06/11/19 16:11,"691 Forest St, Boston, MA 02215" +212304,34in Ultrawide Monitor,1,379.99,06/25/19 06:54,"161 Lake St, Boston, MA 02215" +212305,Lightning Charging Cable,1,14.95,06/21/19 03:59,"638 11th St, San Francisco, CA 94016" +212306,Wired Headphones,1,11.99,06/10/19 13:47,"775 Johnson St, Los Angeles, CA 90001" +212307,USB-C Charging Cable,1,11.95,06/22/19 16:59,"668 6th St, New York City, NY 10001" +212308,Flatscreen TV,1,300,06/21/19 17:49,"598 Jefferson St, Portland, OR 97035" +212309,Vareebadd Phone,1,400,06/28/19 20:31,"349 Lincoln St, Seattle, WA 98101" +212310,Google Phone,1,600,06/26/19 00:15,"836 8th St, Boston, MA 02215" +212310,USB-C Charging Cable,1,11.95,06/26/19 00:15,"836 8th St, Boston, MA 02215" +212311,ThinkPad Laptop,1,999.99,06/01/19 14:01,"41 Jackson St, Boston, MA 02215" +212312,Apple Airpods Headphones,1,150,06/09/19 08:07,"60 4th St, Atlanta, GA 30301" +212313,USB-C Charging Cable,2,11.95,06/16/19 16:00,"806 North St, Atlanta, GA 30301" +212314,Wired Headphones,1,11.99,06/08/19 13:53,"739 Lincoln St, Boston, MA 02215" +212315,Wired Headphones,1,11.99,06/24/19 13:45,"77 Jackson St, Los Angeles, CA 90001" +212316,AAA Batteries (4-pack),1,2.99,06/21/19 03:19,"838 Washington St, Atlanta, GA 30301" +212317,USB-C Charging Cable,1,11.95,06/13/19 18:01,"153 Maple St, Atlanta, GA 30301" +212318,34in Ultrawide Monitor,1,379.99,06/02/19 21:08,"987 Cherry St, Dallas, TX 75001" +212319,iPhone,1,700,06/13/19 20:00,"429 Lincoln St, San Francisco, CA 94016" +212319,Wired Headphones,1,11.99,06/13/19 20:00,"429 Lincoln St, San Francisco, CA 94016" +212320,Bose SoundSport Headphones,1,99.99,06/15/19 17:46,"658 9th St, New York City, NY 10001" +212321,USB-C Charging Cable,1,11.95,06/03/19 19:58,"839 Highland St, Austin, TX 73301" +212322,ThinkPad Laptop,1,999.99,06/20/19 15:24,"997 River St, Boston, MA 02215" +212323,Wired Headphones,1,11.99,06/28/19 16:24,"672 South St, New York City, NY 10001" +212324,Lightning Charging Cable,1,14.95,06/01/19 15:17,"708 4th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +212325,Vareebadd Phone,1,400,06/11/19 01:41,"351 Forest St, San Francisco, CA 94016" +212326,27in FHD Monitor,1,149.99,06/22/19 07:39,"997 Park St, Atlanta, GA 30301" +212327,Apple Airpods Headphones,1,150,06/08/19 09:24,"740 11th St, Seattle, WA 98101" +212328,Lightning Charging Cable,1,14.95,06/23/19 11:08,"263 Ridge St, San Francisco, CA 94016" +212329,AAA Batteries (4-pack),1,2.99,06/11/19 21:28,"971 Wilson St, Los Angeles, CA 90001" +212330,USB-C Charging Cable,1,11.95,06/22/19 15:52,"977 Pine St, Seattle, WA 98101" +212331,iPhone,1,700,06/28/19 23:32,"593 7th St, Los Angeles, CA 90001" +212332,20in Monitor,1,109.99,06/18/19 16:27,"924 Hill St, Atlanta, GA 30301" +212332,Lightning Charging Cable,1,14.95,06/18/19 16:27,"924 Hill St, Atlanta, GA 30301" +212333,Macbook Pro Laptop,1,1700,06/11/19 22:23,"814 Jefferson St, Los Angeles, CA 90001" +212334,USB-C Charging Cable,1,11.95,06/03/19 13:21,"883 13th St, Seattle, WA 98101" +212335,AA Batteries (4-pack),6,3.84,06/21/19 11:20,"213 Park St, Dallas, TX 75001" +212336,Google Phone,1,600,06/20/19 21:35,"440 Highland St, New York City, NY 10001" +212337,USB-C Charging Cable,1,11.95,06/21/19 11:12,"429 Center St, San Francisco, CA 94016" +212338,27in 4K Gaming Monitor,1,389.99,06/21/19 13:32,"729 Church St, San Francisco, CA 94016" +212339,AAA Batteries (4-pack),1,2.99,06/12/19 13:41,"345 Lakeview St, Los Angeles, CA 90001" +212340,AAA Batteries (4-pack),1,2.99,06/23/19 13:01,"889 Washington St, Los Angeles, CA 90001" +212341,USB-C Charging Cable,1,11.95,06/18/19 19:53,"732 Spruce St, San Francisco, CA 94016" +212342,Bose SoundSport Headphones,1,99.99,06/07/19 12:14,"24 4th St, Boston, MA 02215" +212343,Wired Headphones,1,11.99,06/30/19 19:42,"472 Forest St, New York City, NY 10001" +212344,AA Batteries (4-pack),1,3.84,06/24/19 09:17,"12 4th St, Portland, ME 04101" +212345,iPhone,1,700,06/02/19 12:51,"341 Walnut St, Dallas, TX 75001" +212346,Lightning Charging Cable,1,14.95,06/23/19 15:39,"692 Jackson St, Atlanta, GA 30301" +212347,AA Batteries (4-pack),1,3.84,06/03/19 11:04,"838 Adams St, San Francisco, CA 94016" +212348,Wired Headphones,1,11.99,06/26/19 14:31,"863 Jackson St, New York City, NY 10001" +212349,34in Ultrawide Monitor,1,379.99,06/29/19 19:51,"332 Center St, Los Angeles, CA 90001" +212350,USB-C Charging Cable,2,11.95,06/06/19 09:57,"82 West St, Los Angeles, CA 90001" +212351,AAA Batteries (4-pack),2,2.99,06/18/19 22:53,"963 Church St, Portland, OR 97035" +212352,AAA Batteries (4-pack),1,2.99,06/26/19 17:40,"268 Washington St, San Francisco, CA 94016" +212353,USB-C Charging Cable,1,11.95,06/03/19 13:23,"618 Hickory St, Los Angeles, CA 90001" +212354,Google Phone,1,600,06/26/19 16:57,"897 Forest St, Boston, MA 02215" +212355,Wired Headphones,1,11.99,06/16/19 06:24,"562 Cedar St, Boston, MA 02215" +212356,Lightning Charging Cable,1,14.95,06/21/19 15:34,"426 Center St, Los Angeles, CA 90001" +212357,AA Batteries (4-pack),1,3.84,06/06/19 18:34,"261 Sunset St, Seattle, WA 98101" +212358,AA Batteries (4-pack),1,3.84,06/20/19 16:36,"606 Pine St, Los Angeles, CA 90001" +212359,34in Ultrawide Monitor,1,379.99,06/08/19 16:43,"312 11th St, San Francisco, CA 94016" +212360,Wired Headphones,1,11.99,06/04/19 22:18,"133 Dogwood St, Boston, MA 02215" +212361,Bose SoundSport Headphones,2,99.99,06/09/19 22:56,"713 Adams St, New York City, NY 10001" +212362,iPhone,1,700,06/23/19 14:00,"270 10th St, New York City, NY 10001" +212363,USB-C Charging Cable,1,11.95,06/25/19 09:53,"675 4th St, New York City, NY 10001" +212364,AA Batteries (4-pack),1,3.84,06/20/19 18:26,"292 Chestnut St, Boston, MA 02215" +212365,AA Batteries (4-pack),1,3.84,06/11/19 20:24,"410 Lincoln St, Atlanta, GA 30301" +212366,20in Monitor,1,109.99,06/28/19 15:31,"789 Cherry St, Boston, MA 02215" +212367,20in Monitor,1,109.99,06/16/19 15:37,"412 Lakeview St, Austin, TX 73301" +212368,27in 4K Gaming Monitor,1,389.99,06/15/19 19:03,"64 13th St, Los Angeles, CA 90001" +212369,Lightning Charging Cable,1,14.95,06/24/19 13:50,"125 Chestnut St, Portland, OR 97035" +212370,Lightning Charging Cable,2,14.95,06/14/19 18:10,"700 Ridge St, Los Angeles, CA 90001" +212371,Wired Headphones,1,11.99,06/16/19 12:24,"956 9th St, Boston, MA 02215" +212372,Apple Airpods Headphones,1,150,06/27/19 02:22,"118 Walnut St, San Francisco, CA 94016" +212373,ThinkPad Laptop,1,999.99,06/06/19 21:46,"257 Jackson St, Dallas, TX 75001" +212374,Vareebadd Phone,1,400,06/10/19 00:23,"717 River St, San Francisco, CA 94016" +212375,34in Ultrawide Monitor,1,379.99,06/27/19 07:38,"472 Washington St, San Francisco, CA 94016" +212376,AAA Batteries (4-pack),1,2.99,06/23/19 19:58,"833 Sunset St, Boston, MA 02215" +212377,Wired Headphones,1,11.99,06/19/19 14:04,"604 14th St, Dallas, TX 75001" +212378,20in Monitor,1,109.99,06/02/19 15:18,"504 Willow St, San Francisco, CA 94016" +212379,Lightning Charging Cable,1,14.95,06/23/19 11:15,"551 Dogwood St, Boston, MA 02215" +212380,Apple Airpods Headphones,1,150,06/13/19 18:17,"473 1st St, Boston, MA 02215" +212381,27in 4K Gaming Monitor,1,389.99,06/01/19 20:01,"826 13th St, Seattle, WA 98101" +212382,Wired Headphones,1,11.99,06/18/19 06:51,"992 Lakeview St, Los Angeles, CA 90001" +212383,Wired Headphones,1,11.99,06/21/19 04:20,"187 10th St, New York City, NY 10001" +212384,iPhone,1,700,06/07/19 12:53,"65 14th St, Los Angeles, CA 90001" +212385,AA Batteries (4-pack),2,3.84,06/10/19 18:41,"648 8th St, Los Angeles, CA 90001" +212386,Wired Headphones,1,11.99,06/13/19 23:00,"818 Elm St, Dallas, TX 75001" +212387,Wired Headphones,1,11.99,06/11/19 23:05,"325 Sunset St, Atlanta, GA 30301" +212388,Wired Headphones,1,11.99,06/18/19 21:25,"543 South St, New York City, NY 10001" +212389,Lightning Charging Cable,1,14.95,06/03/19 17:39,"407 Maple St, Portland, OR 97035" +212390,ThinkPad Laptop,1,999.99,06/01/19 12:12,"565 6th St, Seattle, WA 98101" +212391,27in 4K Gaming Monitor,1,389.99,06/16/19 21:39,"911 Spruce St, Atlanta, GA 30301" +212392,27in FHD Monitor,1,149.99,06/08/19 09:04,"871 10th St, New York City, NY 10001" +212393,20in Monitor,1,109.99,06/30/19 12:03,"569 Spruce St, Portland, OR 97035" +212394,Lightning Charging Cable,1,14.95,06/24/19 17:15,"251 Washington St, San Francisco, CA 94016" +212395,Google Phone,1,600,06/26/19 10:17,"736 13th St, Los Angeles, CA 90001" +212396,Bose SoundSport Headphones,1,99.99,06/07/19 13:01,"59 1st St, Seattle, WA 98101" +212397,Google Phone,1,600,06/17/19 15:16,"561 Jefferson St, Seattle, WA 98101" +212398,Google Phone,1,600,06/23/19 20:55,"739 South St, Boston, MA 02215" +212399,USB-C Charging Cable,1,11.95,06/01/19 08:34,"560 South St, Boston, MA 02215" +212400,Wired Headphones,1,11.99,06/16/19 19:19,"217 Center St, Atlanta, GA 30301" +212401,Macbook Pro Laptop,1,1700,06/09/19 14:39,"541 Johnson St, Los Angeles, CA 90001" +212402,27in FHD Monitor,1,149.99,06/08/19 07:05,"581 Johnson St, Dallas, TX 75001" +212403,ThinkPad Laptop,1,999.99,06/17/19 15:58,"670 5th St, San Francisco, CA 94016" +212404,ThinkPad Laptop,1,999.99,06/01/19 16:42,"171 Lake St, Seattle, WA 98101" +212405,USB-C Charging Cable,1,11.95,06/15/19 13:14,"47 North St, Boston, MA 02215" +212406,AAA Batteries (4-pack),2,2.99,06/05/19 19:23,"782 10th St, New York City, NY 10001" +212407,Apple Airpods Headphones,1,150,06/06/19 22:04,"617 7th St, Los Angeles, CA 90001" +212408,Bose SoundSport Headphones,1,99.99,06/26/19 11:51,"896 4th St, Dallas, TX 75001" +212409,AA Batteries (4-pack),1,3.84,06/13/19 14:47,"965 Park St, Boston, MA 02215" +212410,USB-C Charging Cable,1,11.95,06/21/19 13:30,"716 Elm St, Atlanta, GA 30301" +212411,AAA Batteries (4-pack),1,2.99,06/14/19 22:59,"258 Jefferson St, Seattle, WA 98101" +212412,Lightning Charging Cable,1,14.95,06/22/19 16:45,"109 9th St, Austin, TX 73301" +212413,iPhone,1,700,06/03/19 20:17,"442 Jefferson St, Seattle, WA 98101" +212414,iPhone,1,700,06/19/19 20:44,"324 9th St, San Francisco, CA 94016" +212414,Wired Headphones,1,11.99,06/19/19 20:44,"324 9th St, San Francisco, CA 94016" +212415,27in FHD Monitor,1,149.99,06/11/19 16:14,"98 Spruce St, Boston, MA 02215" +212416,Bose SoundSport Headphones,1,99.99,06/28/19 13:48,"534 Wilson St, Portland, OR 97035" +212416,USB-C Charging Cable,1,11.95,06/28/19 13:48,"534 Wilson St, Portland, OR 97035" +212417,27in FHD Monitor,1,149.99,06/20/19 17:34,"440 14th St, Los Angeles, CA 90001" +212418,Google Phone,1,600,06/25/19 23:04,"428 Center St, San Francisco, CA 94016" +212418,Lightning Charging Cable,1,14.95,06/25/19 23:04,"428 Center St, San Francisco, CA 94016" +212419,Wired Headphones,1,11.99,06/03/19 13:17,"903 Hickory St, New York City, NY 10001" +212420,AAA Batteries (4-pack),1,2.99,06/04/19 11:10,"479 11th St, Los Angeles, CA 90001" +212421,20in Monitor,1,109.99,06/18/19 13:52,"81 Maple St, Seattle, WA 98101" +212422,Google Phone,1,600,06/20/19 12:34,"495 Washington St, Seattle, WA 98101" +212423,Wired Headphones,1,11.99,06/29/19 14:38,"709 Adams St, Portland, OR 97035" +212424,27in FHD Monitor,1,149.99,06/20/19 11:31,"97 11th St, Boston, MA 02215" +212425,USB-C Charging Cable,1,11.95,06/22/19 20:33,"487 Walnut St, Dallas, TX 75001" +212426,AA Batteries (4-pack),2,3.84,06/19/19 12:16,"85 1st St, San Francisco, CA 94016" +212427,iPhone,1,700,06/20/19 18:47,"612 4th St, Austin, TX 73301" +212428,AAA Batteries (4-pack),1,2.99,06/23/19 11:27,"320 10th St, Seattle, WA 98101" +212429,Lightning Charging Cable,1,14.95,06/10/19 16:08,"331 Wilson St, New York City, NY 10001" +212430,AAA Batteries (4-pack),1,2.99,06/07/19 20:57,"503 Ridge St, Boston, MA 02215" +212431,AAA Batteries (4-pack),1,2.99,06/21/19 00:10,"964 Cedar St, San Francisco, CA 94016" +212432,Lightning Charging Cable,1,14.95,06/13/19 18:51,"177 Elm St, San Francisco, CA 94016" +212433,AA Batteries (4-pack),1,3.84,06/10/19 06:19,"581 13th St, San Francisco, CA 94016" +212434,Apple Airpods Headphones,1,150,06/07/19 20:58,"361 West St, New York City, NY 10001" +212435,Wired Headphones,1,11.99,06/17/19 18:25,"739 North St, San Francisco, CA 94016" +212436,Wired Headphones,1,11.99,06/19/19 22:06,"223 Madison St, Atlanta, GA 30301" +212437,AAA Batteries (4-pack),2,2.99,06/10/19 09:20,"44 Lakeview St, Atlanta, GA 30301" +212438,AA Batteries (4-pack),1,3.84,06/26/19 15:26,"503 Cherry St, Portland, OR 97035" +212439,Wired Headphones,1,11.99,06/13/19 13:03,"530 12th St, New York City, NY 10001" +212440,Lightning Charging Cable,1,14.95,06/07/19 01:44,"577 Church St, Seattle, WA 98101" +212441,Bose SoundSport Headphones,1,99.99,06/20/19 06:47,"923 Elm St, Los Angeles, CA 90001" +212442,AA Batteries (4-pack),4,3.84,06/19/19 00:00,"159 West St, Los Angeles, CA 90001" +212443,AA Batteries (4-pack),1,3.84,06/18/19 16:41,"738 14th St, Atlanta, GA 30301" +212444,Bose SoundSport Headphones,1,99.99,06/22/19 22:39,"77 Hickory St, Los Angeles, CA 90001" +212445,Apple Airpods Headphones,1,150,06/08/19 18:07,"906 Park St, Dallas, TX 75001" +212446,27in FHD Monitor,1,149.99,06/09/19 22:04,"45 Cherry St, Boston, MA 02215" +212447,iPhone,1,700,06/30/19 19:09,"469 Meadow St, Boston, MA 02215" +212448,AAA Batteries (4-pack),2,2.99,06/17/19 17:37,"62 Main St, Seattle, WA 98101" +212449,Bose SoundSport Headphones,1,99.99,06/27/19 09:06,"848 River St, Seattle, WA 98101" +212450,27in 4K Gaming Monitor,1,389.99,06/18/19 12:47,"826 Cedar St, Seattle, WA 98101" +212451,Flatscreen TV,1,300,06/11/19 16:29,"464 Maple St, San Francisco, CA 94016" +212452,AA Batteries (4-pack),1,3.84,06/21/19 11:55,"114 Jackson St, Los Angeles, CA 90001" +212452,AA Batteries (4-pack),1,3.84,06/21/19 11:55,"114 Jackson St, Los Angeles, CA 90001" +212453,USB-C Charging Cable,2,11.95,06/19/19 15:08,"722 Forest St, Dallas, TX 75001" +212454,34in Ultrawide Monitor,1,379.99,06/17/19 20:52,"98 Chestnut St, San Francisco, CA 94016" +212455,AA Batteries (4-pack),1,3.84,06/11/19 21:14,"687 12th St, Los Angeles, CA 90001" +212456,AAA Batteries (4-pack),3,2.99,06/30/19 20:33,"986 Lake St, New York City, NY 10001" +212457,iPhone,1,700,06/03/19 17:52,"417 Johnson St, San Francisco, CA 94016" +212458,ThinkPad Laptop,1,999.99,06/19/19 02:04,"728 Highland St, Portland, OR 97035" +212459,Apple Airpods Headphones,1,150,06/24/19 09:00,"831 Church St, San Francisco, CA 94016" +212460,LG Washing Machine,1,600.0,06/25/19 22:14,"692 Main St, New York City, NY 10001" +212461,AAA Batteries (4-pack),1,2.99,06/13/19 10:12,"78 Forest St, Los Angeles, CA 90001" +212462,iPhone,1,700,06/03/19 20:30,"130 Hickory St, New York City, NY 10001" +212463,Wired Headphones,1,11.99,06/10/19 17:52,"309 Maple St, New York City, NY 10001" +212464,Lightning Charging Cable,1,14.95,06/05/19 11:26,"254 Lincoln St, Seattle, WA 98101" +212465,Lightning Charging Cable,1,14.95,06/18/19 23:53,"916 11th St, San Francisco, CA 94016" +212466,Wired Headphones,1,11.99,06/10/19 13:37,"202 Jefferson St, Seattle, WA 98101" +212467,Bose SoundSport Headphones,1,99.99,06/04/19 13:03,"980 Highland St, Seattle, WA 98101" +212468,AAA Batteries (4-pack),3,2.99,06/20/19 09:55,"940 Washington St, Boston, MA 02215" +212469,AA Batteries (4-pack),1,3.84,06/03/19 09:18,"545 1st St, New York City, NY 10001" +212470,USB-C Charging Cable,1,11.95,06/21/19 13:09,"837 2nd St, San Francisco, CA 94016" +212471,Bose SoundSport Headphones,1,99.99,06/16/19 05:02,"205 Hickory St, Boston, MA 02215" +212472,Apple Airpods Headphones,1,150,06/28/19 14:54,"485 Willow St, San Francisco, CA 94016" +212473,AA Batteries (4-pack),1,3.84,06/15/19 22:47,"994 Walnut St, New York City, NY 10001" +212474,USB-C Charging Cable,1,11.95,06/19/19 19:13,"878 14th St, Seattle, WA 98101" +212475,Wired Headphones,1,11.99,06/29/19 22:49,"806 South St, Seattle, WA 98101" +212476,AA Batteries (4-pack),1,3.84,06/03/19 18:10,"983 14th St, San Francisco, CA 94016" +212477,Lightning Charging Cable,1,14.95,06/29/19 22:23,"791 Pine St, Los Angeles, CA 90001" +212478,Lightning Charging Cable,1,14.95,06/14/19 12:25,"445 Johnson St, Boston, MA 02215" +212479,AA Batteries (4-pack),1,3.84,06/26/19 19:56,"231 4th St, Los Angeles, CA 90001" +212480,27in FHD Monitor,1,149.99,06/18/19 13:57,"133 Spruce St, Seattle, WA 98101" +212481,AA Batteries (4-pack),1,3.84,06/23/19 12:49,"24 Lincoln St, Los Angeles, CA 90001" +212482,Lightning Charging Cable,1,14.95,06/07/19 12:53,"665 Lakeview St, Portland, OR 97035" +212483,27in FHD Monitor,1,149.99,06/26/19 19:27,"515 Park St, Boston, MA 02215" +212484,Lightning Charging Cable,1,14.95,06/08/19 21:43,"505 Jackson St, Los Angeles, CA 90001" +212485,Macbook Pro Laptop,1,1700,06/25/19 16:35,"714 12th St, San Francisco, CA 94016" +212486,Lightning Charging Cable,1,14.95,06/04/19 15:02,"311 10th St, Boston, MA 02215" +212487,USB-C Charging Cable,1,11.95,06/06/19 10:40,"769 Wilson St, Dallas, TX 75001" +212488,34in Ultrawide Monitor,1,379.99,06/09/19 21:55,"708 Ridge St, Atlanta, GA 30301" +212489,27in 4K Gaming Monitor,1,389.99,06/06/19 14:40,"223 Wilson St, San Francisco, CA 94016" +212490,Bose SoundSport Headphones,1,99.99,06/05/19 12:46,"185 West St, Seattle, WA 98101" +212491,AA Batteries (4-pack),1,3.84,06/26/19 09:15,"619 5th St, Austin, TX 73301" +212492,AA Batteries (4-pack),1,3.84,06/24/19 11:21,"548 Jefferson St, San Francisco, CA 94016" +212493,AA Batteries (4-pack),2,3.84,06/17/19 17:32,"368 Walnut St, San Francisco, CA 94016" +212494,AAA Batteries (4-pack),1,2.99,06/09/19 14:34,"148 Park St, Portland, OR 97035" +212495,LG Washing Machine,1,600.0,06/02/19 12:39,"693 Wilson St, Los Angeles, CA 90001" +212496,27in FHD Monitor,1,149.99,06/25/19 19:37,"75 Pine St, Austin, TX 73301" +212497,AA Batteries (4-pack),1,3.84,06/11/19 01:00,"915 South St, Portland, OR 97035" +212498,34in Ultrawide Monitor,1,379.99,06/22/19 09:27,"559 Center St, Portland, OR 97035" +212499,AA Batteries (4-pack),1,3.84,06/17/19 20:25,"347 5th St, Los Angeles, CA 90001" +212500,Apple Airpods Headphones,1,150,06/24/19 13:29,"998 8th St, San Francisco, CA 94016" +212501,20in Monitor,1,109.99,06/07/19 06:07,"636 Walnut St, San Francisco, CA 94016" +212502,27in 4K Gaming Monitor,1,389.99,06/09/19 11:18,"704 Main St, Los Angeles, CA 90001" +212503,ThinkPad Laptop,1,999.99,06/18/19 19:45,"392 14th St, San Francisco, CA 94016" +212504,Macbook Pro Laptop,1,1700,06/06/19 14:35,"932 North St, New York City, NY 10001" +212505,AAA Batteries (4-pack),1,2.99,06/19/19 08:39,"488 7th St, Atlanta, GA 30301" +212506,Lightning Charging Cable,1,14.95,06/03/19 15:45,"216 13th St, Los Angeles, CA 90001" +212507,Wired Headphones,1,11.99,06/29/19 17:33,"528 Jefferson St, Dallas, TX 75001" +212508,Vareebadd Phone,1,400,06/24/19 13:57,"485 Jackson St, Los Angeles, CA 90001" +212508,USB-C Charging Cable,1,11.95,06/24/19 13:57,"485 Jackson St, Los Angeles, CA 90001" +212508,Wired Headphones,2,11.99,06/24/19 13:57,"485 Jackson St, Los Angeles, CA 90001" +212509,Wired Headphones,1,11.99,06/04/19 10:27,"325 Adams St, Boston, MA 02215" +212510,iPhone,1,700,06/10/19 09:12,"771 River St, Los Angeles, CA 90001" +212511,20in Monitor,1,109.99,06/09/19 12:43,"60 11th St, Boston, MA 02215" +212512,Apple Airpods Headphones,1,150,06/21/19 22:26,"657 Cedar St, Los Angeles, CA 90001" +212513,Wired Headphones,1,11.99,06/17/19 09:04,"740 Madison St, Seattle, WA 98101" +212514,USB-C Charging Cable,1,11.95,06/17/19 22:01,"105 1st St, Boston, MA 02215" +212515,USB-C Charging Cable,1,11.95,06/11/19 12:06,"863 West St, San Francisco, CA 94016" +212516,USB-C Charging Cable,1,11.95,06/04/19 07:10,"502 Hill St, Los Angeles, CA 90001" +212517,Wired Headphones,1,11.99,06/26/19 13:18,"780 Cherry St, Dallas, TX 75001" +212518,Bose SoundSport Headphones,1,99.99,06/11/19 13:08,"185 11th St, San Francisco, CA 94016" +212519,Apple Airpods Headphones,1,150,06/14/19 13:20,"805 Adams St, Los Angeles, CA 90001" +212520,34in Ultrawide Monitor,1,379.99,06/29/19 11:05,"38 Lake St, Los Angeles, CA 90001" +212521,Bose SoundSport Headphones,1,99.99,06/22/19 12:03,"855 South St, Atlanta, GA 30301" +212522,USB-C Charging Cable,3,11.95,06/07/19 08:03,"798 Willow St, Dallas, TX 75001" +212523,iPhone,1,700,06/13/19 11:26,"600 Wilson St, Portland, OR 97035" +212524,AAA Batteries (4-pack),1,2.99,06/14/19 19:16,"108 West St, San Francisco, CA 94016" +212525,Apple Airpods Headphones,1,150,06/03/19 17:27,"765 Cedar St, San Francisco, CA 94016" +212526,iPhone,1,700,06/02/19 18:34,"477 11th St, Boston, MA 02215" +212527,AAA Batteries (4-pack),4,2.99,06/19/19 20:41,"593 Hickory St, San Francisco, CA 94016" +212528,Apple Airpods Headphones,1,150,06/14/19 11:14,"111 10th St, New York City, NY 10001" +212529,Wired Headphones,1,11.99,06/15/19 13:50,"739 Adams St, New York City, NY 10001" +212530,AA Batteries (4-pack),2,3.84,06/07/19 20:39,"278 10th St, Boston, MA 02215" +212531,AAA Batteries (4-pack),1,2.99,06/03/19 11:23,"114 Cherry St, New York City, NY 10001" +212532,Wired Headphones,1,11.99,06/01/19 17:17,"784 Walnut St, Boston, MA 02215" +212533,USB-C Charging Cable,1,11.95,06/29/19 15:09,"894 Cedar St, San Francisco, CA 94016" +212534,AAA Batteries (4-pack),1,2.99,06/23/19 23:57,"391 Cedar St, Seattle, WA 98101" +212535,Lightning Charging Cable,1,14.95,06/04/19 13:24,"688 Madison St, San Francisco, CA 94016" +212536,USB-C Charging Cable,2,11.95,06/03/19 06:40,"907 Meadow St, Seattle, WA 98101" +212537,34in Ultrawide Monitor,1,379.99,06/30/19 14:10,"154 4th St, Los Angeles, CA 90001" +212538,Bose SoundSport Headphones,1,99.99,06/09/19 21:05,"738 Pine St, Atlanta, GA 30301" +212539,Wired Headphones,1,11.99,06/28/19 19:02,"46 Washington St, Boston, MA 02215" +212540,AAA Batteries (4-pack),1,2.99,06/22/19 21:49,"665 14th St, Austin, TX 73301" +212541,USB-C Charging Cable,1,11.95,06/11/19 10:19,"693 Chestnut St, San Francisco, CA 94016" +212542,Bose SoundSport Headphones,1,99.99,06/29/19 14:50,"641 Willow St, Austin, TX 73301" +212543,Google Phone,1,600,06/10/19 12:53,"556 Ridge St, Boston, MA 02215" +212543,Bose SoundSport Headphones,1,99.99,06/10/19 12:53,"556 Ridge St, Boston, MA 02215" +212544,AAA Batteries (4-pack),1,2.99,06/13/19 20:01,"635 Washington St, San Francisco, CA 94016" +212545,iPhone,1,700,06/05/19 20:15,"542 Center St, Dallas, TX 75001" +212545,Wired Headphones,1,11.99,06/05/19 20:15,"542 Center St, Dallas, TX 75001" +212546,Macbook Pro Laptop,1,1700,06/10/19 15:48,"230 North St, San Francisco, CA 94016" +212547,Lightning Charging Cable,3,14.95,06/14/19 11:29,"433 11th St, Atlanta, GA 30301" +212548,20in Monitor,1,109.99,06/19/19 20:01,"70 Washington St, New York City, NY 10001" +212549,AAA Batteries (4-pack),1,2.99,06/18/19 22:31,"229 Lincoln St, San Francisco, CA 94016" +212550,AA Batteries (4-pack),1,3.84,06/29/19 21:20,"535 13th St, San Francisco, CA 94016" +212551,USB-C Charging Cable,1,11.95,06/07/19 10:47,"283 12th St, Portland, OR 97035" +212552,Apple Airpods Headphones,1,150,06/23/19 18:32,"574 West St, Los Angeles, CA 90001" +212553,AAA Batteries (4-pack),1,2.99,06/05/19 19:26,"263 Main St, Los Angeles, CA 90001" +212554,Lightning Charging Cable,1,14.95,06/03/19 12:46,"827 Lake St, New York City, NY 10001" +212555,AAA Batteries (4-pack),1,2.99,06/25/19 14:38,"517 14th St, Los Angeles, CA 90001" +212556,Lightning Charging Cable,1,14.95,06/27/19 05:57,"553 Adams St, San Francisco, CA 94016" +212557,Bose SoundSport Headphones,1,99.99,06/07/19 20:30,"871 6th St, Portland, OR 97035" +212558,AAA Batteries (4-pack),1,2.99,06/27/19 08:30,"633 Jackson St, New York City, NY 10001" +212559,Wired Headphones,1,11.99,06/20/19 06:19,"357 Jefferson St, New York City, NY 10001" +212560,20in Monitor,1,109.99,06/14/19 14:53,"768 Lakeview St, Austin, TX 73301" +212561,27in 4K Gaming Monitor,1,389.99,06/16/19 09:22,"683 8th St, Portland, OR 97035" +212562,USB-C Charging Cable,1,11.95,06/06/19 19:19,"284 Meadow St, Dallas, TX 75001" +212563,Macbook Pro Laptop,1,1700,06/23/19 17:18,"974 7th St, San Francisco, CA 94016" +212564,Lightning Charging Cable,1,14.95,06/27/19 11:09,"422 Highland St, Boston, MA 02215" +212565,AAA Batteries (4-pack),2,2.99,06/17/19 16:47,"31 Center St, New York City, NY 10001" +212566,AAA Batteries (4-pack),1,2.99,06/12/19 12:09,"854 Jefferson St, San Francisco, CA 94016" +212567,Apple Airpods Headphones,1,150,06/19/19 17:34,"120 South St, Boston, MA 02215" +212568,AAA Batteries (4-pack),3,2.99,06/09/19 18:59,"495 1st St, Los Angeles, CA 90001" +212569,Apple Airpods Headphones,1,150,06/07/19 09:22,"47 5th St, San Francisco, CA 94016" +212570,Lightning Charging Cable,1,14.95,06/22/19 14:40,"295 2nd St, New York City, NY 10001" +212571,Lightning Charging Cable,1,14.95,06/03/19 19:04,"979 Cedar St, San Francisco, CA 94016" +212572,34in Ultrawide Monitor,1,379.99,06/10/19 10:07,"365 Adams St, Boston, MA 02215" +212573,Lightning Charging Cable,1,14.95,06/25/19 18:00,"920 Highland St, New York City, NY 10001" +212574,Apple Airpods Headphones,1,150,06/12/19 22:12,"26 Madison St, Seattle, WA 98101" +212575,USB-C Charging Cable,1,11.95,06/05/19 10:48,"27 West St, Los Angeles, CA 90001" +212576,USB-C Charging Cable,1,11.95,06/09/19 10:14,"188 Center St, Los Angeles, CA 90001" +212577,AA Batteries (4-pack),1,3.84,06/07/19 10:46,"164 Pine St, San Francisco, CA 94016" +212578,Bose SoundSport Headphones,1,99.99,06/23/19 16:39,"68 12th St, San Francisco, CA 94016" +212579,AAA Batteries (4-pack),1,2.99,06/17/19 11:41,"888 6th St, Los Angeles, CA 90001" +212580,AA Batteries (4-pack),1,3.84,06/24/19 15:27,"526 Chestnut St, Atlanta, GA 30301" +212581,Lightning Charging Cable,1,14.95,06/06/19 19:03,"341 Chestnut St, New York City, NY 10001" +212582,ThinkPad Laptop,1,999.99,06/16/19 12:00,"305 West St, Austin, TX 73301" +212583,USB-C Charging Cable,1,11.95,06/10/19 19:20,"165 Cherry St, Los Angeles, CA 90001" +212584,Apple Airpods Headphones,1,150,06/06/19 22:43,"952 Adams St, Boston, MA 02215" +212585,USB-C Charging Cable,1,11.95,06/04/19 21:00,"523 7th St, New York City, NY 10001" +212586,AAA Batteries (4-pack),1,2.99,06/21/19 10:57,"692 River St, Portland, OR 97035" +212587,20in Monitor,1,109.99,06/03/19 09:00,"869 Church St, Los Angeles, CA 90001" +212588,AAA Batteries (4-pack),1,2.99,06/09/19 08:30,"700 Forest St, San Francisco, CA 94016" +212589,Flatscreen TV,1,300,06/08/19 19:40,"169 9th St, New York City, NY 10001" +212590,27in 4K Gaming Monitor,1,389.99,06/21/19 19:51,"499 Wilson St, Seattle, WA 98101" +212591,27in FHD Monitor,1,149.99,06/30/19 21:54,"757 7th St, San Francisco, CA 94016" +212592,Lightning Charging Cable,1,14.95,06/01/19 11:29,"725 10th St, Los Angeles, CA 90001" +212593,Bose SoundSport Headphones,1,99.99,06/05/19 19:19,"29 Jackson St, Atlanta, GA 30301" +212594,Wired Headphones,1,11.99,06/02/19 16:38,"873 Adams St, San Francisco, CA 94016" +212595,Lightning Charging Cable,1,14.95,06/14/19 19:37,"941 Jackson St, San Francisco, CA 94016" +212596,iPhone,1,700,06/17/19 17:56,"230 Hickory St, Boston, MA 02215" +212597,Wired Headphones,1,11.99,06/23/19 18:53,"676 Meadow St, Austin, TX 73301" +212598,AA Batteries (4-pack),1,3.84,06/22/19 20:42,"286 Cherry St, New York City, NY 10001" +212599,Lightning Charging Cable,1,14.95,06/07/19 18:01,"914 14th St, San Francisco, CA 94016" +212600,Lightning Charging Cable,1,14.95,06/02/19 17:49,"319 Forest St, Atlanta, GA 30301" +212601,AA Batteries (4-pack),1,3.84,06/26/19 02:56,"415 Willow St, Portland, OR 97035" +212602,AA Batteries (4-pack),1,3.84,06/20/19 08:50,"65 Wilson St, San Francisco, CA 94016" +212603,LG Washing Machine,1,600.0,06/25/19 19:30,"838 River St, Dallas, TX 75001" +212604,iPhone,1,700,06/23/19 21:03,"61 Hill St, San Francisco, CA 94016" +212605,Apple Airpods Headphones,1,150,06/09/19 23:27,"620 Park St, New York City, NY 10001" +212606,Lightning Charging Cable,1,14.95,06/03/19 18:31,"243 5th St, San Francisco, CA 94016" +212607,Apple Airpods Headphones,1,150,06/27/19 09:36,"554 South St, San Francisco, CA 94016" +212608,AAA Batteries (4-pack),1,2.99,06/29/19 15:32,"71 West St, Dallas, TX 75001" +212609,Apple Airpods Headphones,1,150,06/10/19 13:26,"497 9th St, Atlanta, GA 30301" +212610,AA Batteries (4-pack),1,3.84,06/03/19 15:48,"6 Center St, Portland, OR 97035" +212611,AA Batteries (4-pack),1,3.84,06/24/19 09:30,"913 Madison St, Seattle, WA 98101" +212612,Apple Airpods Headphones,1,150,06/08/19 07:39,"926 10th St, Atlanta, GA 30301" +212613,27in 4K Gaming Monitor,1,389.99,06/01/19 22:44,"719 Chestnut St, San Francisco, CA 94016" +212614,AAA Batteries (4-pack),2,2.99,06/24/19 10:11,"828 12th St, Boston, MA 02215" +212615,Wired Headphones,1,11.99,06/23/19 21:02,"413 Highland St, New York City, NY 10001" +212616,Bose SoundSport Headphones,1,99.99,06/06/19 18:54,"523 West St, Seattle, WA 98101" +212617,20in Monitor,1,109.99,06/05/19 10:16,"725 2nd St, Seattle, WA 98101" +212618,iPhone,1,700,06/09/19 19:17,"824 Spruce St, San Francisco, CA 94016" +212619,AA Batteries (4-pack),1,3.84,06/02/19 16:58,"740 14th St, Boston, MA 02215" +212620,27in 4K Gaming Monitor,1,389.99,06/04/19 04:01,"593 Dogwood St, San Francisco, CA 94016" +212621,iPhone,1,700,06/23/19 17:15,"526 Willow St, Portland, OR 97035" +212622,Lightning Charging Cable,1,14.95,06/29/19 08:35,"595 13th St, New York City, NY 10001" +212623,20in Monitor,1,109.99,06/16/19 14:26,"470 11th St, San Francisco, CA 94016" +212624,Vareebadd Phone,1,400,06/21/19 22:13,"817 11th St, New York City, NY 10001" +212625,iPhone,1,700,06/03/19 05:59,"325 12th St, San Francisco, CA 94016" +212626,Wired Headphones,1,11.99,06/20/19 09:58,"996 1st St, Boston, MA 02215" +212627,AAA Batteries (4-pack),1,2.99,06/15/19 22:37,"896 Elm St, Los Angeles, CA 90001" +212628,Wired Headphones,1,11.99,06/18/19 13:01,"25 Forest St, Boston, MA 02215" +212629,34in Ultrawide Monitor,1,379.99,06/25/19 17:13,"917 2nd St, New York City, NY 10001" +212630,AAA Batteries (4-pack),1,2.99,06/20/19 18:30,"466 Hill St, Dallas, TX 75001" +212631,Bose SoundSport Headphones,1,99.99,06/18/19 09:48,"776 Cherry St, Austin, TX 73301" +212632,Lightning Charging Cable,1,14.95,06/28/19 16:12,"694 Cedar St, Austin, TX 73301" +212633,Bose SoundSport Headphones,1,99.99,06/04/19 16:00,"455 Cherry St, Seattle, WA 98101" +212634,AA Batteries (4-pack),1,3.84,06/23/19 12:18,"311 South St, Boston, MA 02215" +212635,USB-C Charging Cable,1,11.95,06/17/19 13:29,"232 Willow St, San Francisco, CA 94016" +212636,Google Phone,1,600,06/05/19 11:41,"709 Jefferson St, Seattle, WA 98101" +212637,Macbook Pro Laptop,1,1700,06/18/19 21:54,"350 10th St, Portland, OR 97035" +212638,Lightning Charging Cable,1,14.95,06/10/19 10:04,"631 Lake St, San Francisco, CA 94016" +212639,ThinkPad Laptop,1,999.99,06/14/19 13:18,"870 Cedar St, New York City, NY 10001" +212640,AAA Batteries (4-pack),2,2.99,06/09/19 11:55,"734 10th St, Portland, OR 97035" +212641,USB-C Charging Cable,1,11.95,06/10/19 19:56,"797 North St, Portland, OR 97035" +212642,Wired Headphones,1,11.99,06/21/19 13:14,"290 Main St, New York City, NY 10001" +212643,Apple Airpods Headphones,1,150,06/11/19 19:33,"600 Jefferson St, New York City, NY 10001" +212644,AA Batteries (4-pack),2,3.84,06/15/19 08:01,"613 14th St, San Francisco, CA 94016" +212645,27in FHD Monitor,1,149.99,06/08/19 14:00,"470 Lakeview St, New York City, NY 10001" +212646,Lightning Charging Cable,1,14.95,06/25/19 16:01,"929 6th St, San Francisco, CA 94016" +212647,Bose SoundSport Headphones,1,99.99,06/21/19 16:18,"252 Madison St, Boston, MA 02215" +212648,AAA Batteries (4-pack),1,2.99,06/29/19 18:28,"328 Jefferson St, San Francisco, CA 94016" +212649,Wired Headphones,2,11.99,06/29/19 01:41,"410 Hill St, San Francisco, CA 94016" +212650,USB-C Charging Cable,1,11.95,06/10/19 12:10,"601 14th St, Boston, MA 02215" +212651,Wired Headphones,1,11.99,06/07/19 19:09,"173 4th St, Los Angeles, CA 90001" +212652,AAA Batteries (4-pack),1,2.99,06/20/19 14:56,"118 Spruce St, San Francisco, CA 94016" +212653,Wired Headphones,1,11.99,06/10/19 15:32,"422 10th St, Portland, ME 04101" +212654,Lightning Charging Cable,1,14.95,06/14/19 21:28,"266 Hickory St, New York City, NY 10001" +212655,Lightning Charging Cable,1,14.95,06/29/19 16:07,"841 Jackson St, Dallas, TX 75001" +212656,Wired Headphones,1,11.99,06/22/19 22:57,"768 Center St, San Francisco, CA 94016" +212657,USB-C Charging Cable,1,11.95,06/02/19 11:18,"625 South St, San Francisco, CA 94016" +212658,Bose SoundSport Headphones,1,99.99,06/30/19 23:59,"773 Pine St, Boston, MA 02215" +212659,AA Batteries (4-pack),1,3.84,06/30/19 12:58,"303 Lincoln St, San Francisco, CA 94016" +212660,Apple Airpods Headphones,1,150,06/19/19 14:17,"912 West St, Los Angeles, CA 90001" +212661,Wired Headphones,1,11.99,06/01/19 08:26,"983 Maple St, Seattle, WA 98101" +212662,USB-C Charging Cable,1,11.95,06/18/19 18:15,"741 Pine St, Los Angeles, CA 90001" +212663,AA Batteries (4-pack),1,3.84,06/20/19 11:56,"970 Main St, San Francisco, CA 94016" +212664,Bose SoundSport Headphones,1,99.99,06/05/19 06:31,"306 5th St, Los Angeles, CA 90001" +212665,Wired Headphones,1,11.99,06/13/19 19:40,"349 Church St, Seattle, WA 98101" +212666,Macbook Pro Laptop,1,1700,06/07/19 06:02,"571 Cherry St, Atlanta, GA 30301" +212667,AA Batteries (4-pack),1,3.84,06/10/19 13:13,"557 South St, Portland, OR 97035" +212668,Apple Airpods Headphones,1,150,06/11/19 10:27,"48 Maple St, San Francisco, CA 94016" +212669,Bose SoundSport Headphones,1,99.99,06/20/19 10:34,"608 Maple St, New York City, NY 10001" +212670,Apple Airpods Headphones,1,150,06/21/19 09:58,"747 4th St, Los Angeles, CA 90001" +212671,Apple Airpods Headphones,1,150,06/03/19 12:09,"493 Hill St, San Francisco, CA 94016" +212672,Google Phone,1,600,06/27/19 00:39,"189 Sunset St, Boston, MA 02215" +212672,USB-C Charging Cable,1,11.95,06/27/19 00:39,"189 Sunset St, Boston, MA 02215" +212673,Apple Airpods Headphones,1,150,06/23/19 07:13,"388 10th St, Portland, ME 04101" +212674,AAA Batteries (4-pack),1,2.99,06/03/19 16:14,"35 Pine St, Dallas, TX 75001" +212675,Bose SoundSport Headphones,1,99.99,06/28/19 15:22,"731 Madison St, New York City, NY 10001" +212676,AA Batteries (4-pack),1,3.84,06/26/19 11:24,"208 River St, San Francisco, CA 94016" +212677,USB-C Charging Cable,1,11.95,06/15/19 19:17,"607 Cedar St, San Francisco, CA 94016" +212678,iPhone,1,700,06/25/19 18:58,"305 Willow St, Boston, MA 02215" +212679,AAA Batteries (4-pack),2,2.99,06/05/19 17:45,"437 11th St, San Francisco, CA 94016" +212680,Apple Airpods Headphones,1,150,06/23/19 18:31,"17 Meadow St, Portland, OR 97035" +212681,27in 4K Gaming Monitor,1,389.99,06/03/19 12:04,"416 North St, Seattle, WA 98101" +212682,Wired Headphones,1,11.99,06/19/19 00:11,"94 Wilson St, Atlanta, GA 30301" +212683,ThinkPad Laptop,1,999.99,06/05/19 11:25,"92 Highland St, Seattle, WA 98101" +212684,iPhone,1,700,06/26/19 23:20,"835 Wilson St, San Francisco, CA 94016" +212685,Bose SoundSport Headphones,1,99.99,06/23/19 10:43,"220 Main St, Seattle, WA 98101" +212686,20in Monitor,1,109.99,06/04/19 15:21,"372 Lake St, Dallas, TX 75001" +212687,Macbook Pro Laptop,1,1700,06/02/19 12:24,"700 Jackson St, New York City, NY 10001" +212688,Lightning Charging Cable,1,14.95,06/24/19 20:26,"27 11th St, Atlanta, GA 30301" +212689,AA Batteries (4-pack),1,3.84,06/12/19 19:16,"340 5th St, New York City, NY 10001" +212690,Lightning Charging Cable,1,14.95,06/12/19 08:09,"4 Main St, Los Angeles, CA 90001" +212691,27in 4K Gaming Monitor,1,389.99,06/23/19 02:37,"911 12th St, Los Angeles, CA 90001" +212692,USB-C Charging Cable,1,11.95,06/11/19 09:09,"327 11th St, San Francisco, CA 94016" +212693,Bose SoundSport Headphones,1,99.99,06/16/19 13:14,"541 7th St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +212694,27in FHD Monitor,1,149.99,06/18/19 13:20,"23 Chestnut St, Atlanta, GA 30301" +212695,USB-C Charging Cable,1,11.95,06/14/19 14:36,"275 South St, Portland, OR 97035" +212696,27in FHD Monitor,1,149.99,06/15/19 13:11,"382 12th St, San Francisco, CA 94016" +212697,Lightning Charging Cable,1,14.95,06/01/19 13:18,"58 Park St, Los Angeles, CA 90001" +212698,AA Batteries (4-pack),3,3.84,06/29/19 16:01,"961 Walnut St, Seattle, WA 98101" +212699,27in 4K Gaming Monitor,1,389.99,06/01/19 20:43,"970 Forest St, San Francisco, CA 94016" +212700,LG Dryer,1,600.0,06/27/19 11:39,"414 11th St, San Francisco, CA 94016" +212701,Lightning Charging Cable,1,14.95,06/11/19 13:25,"999 Highland St, Los Angeles, CA 90001" +212702,USB-C Charging Cable,1,11.95,06/09/19 22:11,"503 North St, San Francisco, CA 94016" +212703,Wired Headphones,1,11.99,06/18/19 23:08,"70 2nd St, San Francisco, CA 94016" +212704,Flatscreen TV,1,300,06/10/19 18:23,"114 Walnut St, New York City, NY 10001" +212705,Wired Headphones,1,11.99,06/05/19 21:08,"149 Hill St, Boston, MA 02215" +212706,Wired Headphones,1,11.99,06/17/19 17:54,"124 Walnut St, San Francisco, CA 94016" +212707,20in Monitor,1,109.99,06/25/19 21:41,"970 Cherry St, Boston, MA 02215" +212708,27in 4K Gaming Monitor,1,389.99,06/20/19 19:58,"224 10th St, Seattle, WA 98101" +212709,Wired Headphones,1,11.99,06/30/19 08:56,"168 Meadow St, New York City, NY 10001" +212710,AA Batteries (4-pack),1,3.84,06/05/19 16:51,"873 Meadow St, Seattle, WA 98101" +212711,ThinkPad Laptop,1,999.99,06/06/19 17:03,"501 Walnut St, New York City, NY 10001" +212712,34in Ultrawide Monitor,1,379.99,06/23/19 12:04,"391 Jackson St, Austin, TX 73301" +212713,iPhone,1,700,06/05/19 07:04,"935 12th St, Boston, MA 02215" +212714,27in FHD Monitor,1,149.99,06/09/19 11:58,"752 Madison St, Boston, MA 02215" +212715,Bose SoundSport Headphones,1,99.99,06/18/19 07:44,"445 9th St, New York City, NY 10001" +212716,AA Batteries (4-pack),1,3.84,06/18/19 11:14,"194 13th St, Austin, TX 73301" +212717,20in Monitor,1,109.99,06/06/19 14:26,"640 Jefferson St, New York City, NY 10001" +212718,AAA Batteries (4-pack),2,2.99,06/27/19 10:03,"376 River St, New York City, NY 10001" +212719,Lightning Charging Cable,1,14.95,06/20/19 12:52,"354 Madison St, San Francisco, CA 94016" +212720,20in Monitor,1,109.99,06/28/19 23:24,"965 Maple St, New York City, NY 10001" +212721,Apple Airpods Headphones,1,150,06/05/19 10:44,"473 Cedar St, San Francisco, CA 94016" +212722,Wired Headphones,1,11.99,06/21/19 07:41,"190 Washington St, Boston, MA 02215" +212723,Apple Airpods Headphones,1,150,06/24/19 12:26,"973 Madison St, Portland, OR 97035" +212724,Google Phone,1,600,06/30/19 17:28,"258 Walnut St, Los Angeles, CA 90001" +212725,Apple Airpods Headphones,1,150,06/08/19 21:26,"205 8th St, San Francisco, CA 94016" +212726,Lightning Charging Cable,1,14.95,06/30/19 19:34,"255 Lakeview St, San Francisco, CA 94016" +212727,Apple Airpods Headphones,1,150,06/04/19 13:17,"752 Madison St, Austin, TX 73301" +212728,Flatscreen TV,1,300,06/28/19 13:22,"995 4th St, Portland, OR 97035" +212729,Lightning Charging Cable,1,14.95,06/20/19 14:17,"444 Church St, San Francisco, CA 94016" +212730,Lightning Charging Cable,1,14.95,06/19/19 13:35,"929 Cherry St, New York City, NY 10001" +212731,AAA Batteries (4-pack),1,2.99,06/18/19 12:39,"194 12th St, Dallas, TX 75001" +212732,Wired Headphones,1,11.99,06/03/19 18:50,"719 Church St, Seattle, WA 98101" +212733,ThinkPad Laptop,1,999.99,06/15/19 21:39,"877 1st St, Boston, MA 02215" +212734,AAA Batteries (4-pack),1,2.99,06/17/19 08:33,"950 13th St, Dallas, TX 75001" +212735,Wired Headphones,1,11.99,06/14/19 18:18,"95 Church St, Los Angeles, CA 90001" +212736,AAA Batteries (4-pack),1,2.99,06/23/19 10:05,"691 Adams St, San Francisco, CA 94016" +212737,Lightning Charging Cable,1,14.95,06/07/19 13:36,"816 Wilson St, Boston, MA 02215" +212738,AA Batteries (4-pack),1,3.84,06/27/19 20:16,"597 Church St, Los Angeles, CA 90001" +212739,Apple Airpods Headphones,1,150,06/15/19 08:57,"99 4th St, New York City, NY 10001" +212740,Wired Headphones,1,11.99,06/16/19 09:07,"942 Center St, San Francisco, CA 94016" +212741,Flatscreen TV,1,300,06/08/19 11:11,"755 14th St, Boston, MA 02215" +212742,Google Phone,1,600,06/28/19 14:58,"740 10th St, Los Angeles, CA 90001" +,,,,, +212743,Apple Airpods Headphones,1,150,06/09/19 20:06,"151 8th St, Los Angeles, CA 90001" +212744,USB-C Charging Cable,1,11.95,06/18/19 20:48,"418 Adams St, Boston, MA 02215" +212745,Macbook Pro Laptop,1,1700,06/22/19 13:46,"151 Chestnut St, Austin, TX 73301" +212746,Bose SoundSport Headphones,1,99.99,06/03/19 09:38,"215 Hill St, Los Angeles, CA 90001" +212747,Lightning Charging Cable,2,14.95,06/02/19 11:26,"677 Meadow St, Seattle, WA 98101" +212748,Flatscreen TV,1,300,06/10/19 08:37,"94 West St, New York City, NY 10001" +212749,Macbook Pro Laptop,1,1700,06/03/19 08:04,"171 Church St, Atlanta, GA 30301" +212750,AAA Batteries (4-pack),1,2.99,06/04/19 22:08,"848 Center St, Dallas, TX 75001" +212751,AA Batteries (4-pack),1,3.84,06/06/19 07:45,"920 7th St, Atlanta, GA 30301" +212752,Lightning Charging Cable,1,14.95,06/21/19 21:59,"967 9th St, Boston, MA 02215" +212753,Apple Airpods Headphones,1,150,06/24/19 10:47,"1 6th St, Boston, MA 02215" +212754,ThinkPad Laptop,1,999.99,06/19/19 16:29,"98 Sunset St, San Francisco, CA 94016" +212755,Bose SoundSport Headphones,1,99.99,06/05/19 00:28,"121 11th St, San Francisco, CA 94016" +212756,Wired Headphones,1,11.99,06/06/19 14:41,"899 Jackson St, New York City, NY 10001" +212757,34in Ultrawide Monitor,1,379.99,06/21/19 07:47,"873 11th St, Boston, MA 02215" +212758,AA Batteries (4-pack),2,3.84,06/05/19 05:03,"28 North St, Austin, TX 73301" +212759,AAA Batteries (4-pack),1,2.99,06/07/19 18:01,"851 Cherry St, Boston, MA 02215" +212760,ThinkPad Laptop,1,999.99,06/12/19 16:08,"349 Ridge St, Atlanta, GA 30301" +212761,20in Monitor,1,109.99,06/22/19 19:29,"255 Church St, Dallas, TX 75001" +212762,AAA Batteries (4-pack),1,2.99,06/24/19 15:50,"12 Jackson St, Los Angeles, CA 90001" +212763,AA Batteries (4-pack),1,3.84,06/27/19 15:15,"413 North St, San Francisco, CA 94016" +212764,Lightning Charging Cable,1,14.95,06/05/19 10:50,"71 Wilson St, Dallas, TX 75001" +212765,Wired Headphones,1,11.99,06/24/19 12:18,"681 Johnson St, Austin, TX 73301" +212766,AA Batteries (4-pack),1,3.84,06/14/19 21:49,"948 Main St, New York City, NY 10001" +212767,Bose SoundSport Headphones,1,99.99,06/22/19 08:47,"961 Chestnut St, New York City, NY 10001" +212768,Bose SoundSport Headphones,1,99.99,06/28/19 14:19,"467 West St, Boston, MA 02215" +212769,Wired Headphones,1,11.99,06/25/19 20:55,"155 South St, San Francisco, CA 94016" +212770,Apple Airpods Headphones,1,150,06/12/19 08:25,"302 Elm St, Austin, TX 73301" +212771,Lightning Charging Cable,1,14.95,06/05/19 14:12,"457 Hill St, Boston, MA 02215" +212772,USB-C Charging Cable,1,11.95,06/26/19 16:40,"726 9th St, San Francisco, CA 94016" +212773,Apple Airpods Headphones,1,150,06/14/19 07:57,"533 Pine St, San Francisco, CA 94016" +212774,Bose SoundSport Headphones,1,99.99,06/24/19 15:48,"812 Highland St, Austin, TX 73301" +212775,Google Phone,1,600,06/01/19 15:04,"689 Center St, Boston, MA 02215" +212776,USB-C Charging Cable,1,11.95,06/30/19 00:03,"990 Pine St, New York City, NY 10001" +212777,AA Batteries (4-pack),2,3.84,06/21/19 14:41,"154 Lakeview St, San Francisco, CA 94016" +212778,iPhone,1,700,06/15/19 04:46,"110 Lincoln St, Los Angeles, CA 90001" +212779,27in 4K Gaming Monitor,1,389.99,06/17/19 10:18,"76 Lincoln St, Atlanta, GA 30301" +212780,ThinkPad Laptop,1,999.99,06/22/19 17:55,"358 Willow St, Atlanta, GA 30301" +212781,AA Batteries (4-pack),3,3.84,06/28/19 21:47,"285 Main St, San Francisco, CA 94016" +212782,20in Monitor,1,109.99,06/10/19 14:24,"245 Jefferson St, Los Angeles, CA 90001" +212783,Bose SoundSport Headphones,1,99.99,06/30/19 17:02,"492 Spruce St, San Francisco, CA 94016" +212784,Wired Headphones,1,11.99,06/30/19 17:28,"597 River St, Boston, MA 02215" +212785,27in 4K Gaming Monitor,1,389.99,06/13/19 01:16,"682 Center St, San Francisco, CA 94016" +212786,AA Batteries (4-pack),1,3.84,06/21/19 01:11,"218 Adams St, San Francisco, CA 94016" +212787,USB-C Charging Cable,1,11.95,06/15/19 08:13,"279 Forest St, San Francisco, CA 94016" +212788,27in 4K Gaming Monitor,1,389.99,06/23/19 10:35,"758 Meadow St, San Francisco, CA 94016" +212789,AA Batteries (4-pack),2,3.84,06/03/19 19:23,"244 Meadow St, Atlanta, GA 30301" +212790,Apple Airpods Headphones,1,150,06/06/19 07:52,"636 2nd St, Dallas, TX 75001" +212791,Apple Airpods Headphones,1,150,06/20/19 09:10,"412 14th St, Dallas, TX 75001" +212792,AAA Batteries (4-pack),1,2.99,06/07/19 19:16,"662 Park St, Seattle, WA 98101" +212793,Wired Headphones,1,11.99,06/17/19 16:51,"214 Washington St, Los Angeles, CA 90001" +212794,Wired Headphones,1,11.99,06/08/19 10:36,"435 Chestnut St, Seattle, WA 98101" +212795,AA Batteries (4-pack),2,3.84,06/17/19 16:44,"672 Park St, San Francisco, CA 94016" +212796,AAA Batteries (4-pack),1,2.99,06/21/19 12:21,"112 Elm St, San Francisco, CA 94016" +212797,Apple Airpods Headphones,1,150,06/25/19 22:04,"771 Meadow St, Boston, MA 02215" +212798,Macbook Pro Laptop,1,1700,06/04/19 22:04,"398 Adams St, Seattle, WA 98101" +212799,Bose SoundSport Headphones,1,99.99,06/10/19 12:49,"204 South St, Atlanta, GA 30301" +212800,Bose SoundSport Headphones,1,99.99,06/07/19 10:01,"18 Walnut St, Portland, OR 97035" +212801,AA Batteries (4-pack),1,3.84,06/04/19 19:42,"377 Walnut St, Austin, TX 73301" +212802,AA Batteries (4-pack),1,3.84,06/26/19 14:18,"426 Cedar St, Dallas, TX 75001" +212803,Wired Headphones,1,11.99,06/06/19 13:38,"590 River St, San Francisco, CA 94016" +212804,27in FHD Monitor,1,149.99,06/13/19 11:26,"684 Jackson St, Portland, OR 97035" +212805,34in Ultrawide Monitor,1,379.99,06/30/19 20:53,"427 9th St, Boston, MA 02215" +212806,AA Batteries (4-pack),1,3.84,06/18/19 17:30,"354 Forest St, Atlanta, GA 30301" +212807,Bose SoundSport Headphones,1,99.99,06/28/19 19:27,"414 10th St, New York City, NY 10001" +212808,AAA Batteries (4-pack),1,2.99,06/17/19 18:14,"646 Walnut St, Los Angeles, CA 90001" +212809,AAA Batteries (4-pack),1,2.99,06/17/19 14:17,"383 Lakeview St, Seattle, WA 98101" +212810,AA Batteries (4-pack),1,3.84,06/13/19 18:18,"648 Chestnut St, Dallas, TX 75001" +212811,27in 4K Gaming Monitor,1,389.99,06/13/19 06:50,"512 Park St, Seattle, WA 98101" +212812,Wired Headphones,1,11.99,06/20/19 11:45,"193 Spruce St, San Francisco, CA 94016" +212813,Vareebadd Phone,1,400,06/21/19 22:23,"669 5th St, Seattle, WA 98101" +212813,Bose SoundSport Headphones,1,99.99,06/21/19 22:23,"669 5th St, Seattle, WA 98101" +212814,Bose SoundSport Headphones,2,99.99,06/05/19 20:46,"979 14th St, Dallas, TX 75001" +212815,27in FHD Monitor,1,149.99,06/27/19 15:44,"69 Jefferson St, Los Angeles, CA 90001" +212816,34in Ultrawide Monitor,1,379.99,06/20/19 19:23,"993 Walnut St, Dallas, TX 75001" +212817,USB-C Charging Cable,1,11.95,06/12/19 12:37,"551 Elm St, Austin, TX 73301" +212818,Lightning Charging Cable,1,14.95,06/27/19 09:24,"288 Church St, Portland, OR 97035" +212819,USB-C Charging Cable,1,11.95,06/28/19 12:14,"730 Meadow St, San Francisco, CA 94016" +212820,AA Batteries (4-pack),2,3.84,06/30/19 00:38,"92 Chestnut St, Seattle, WA 98101" +212821,Google Phone,1,600,06/27/19 14:48,"10 Forest St, Dallas, TX 75001" +212822,USB-C Charging Cable,1,11.95,06/25/19 22:00,"166 Chestnut St, New York City, NY 10001" +212823,Lightning Charging Cable,1,14.95,06/26/19 23:07,"746 Elm St, San Francisco, CA 94016" +212824,Wired Headphones,1,11.99,06/05/19 23:40,"620 6th St, Seattle, WA 98101" +212825,USB-C Charging Cable,1,11.95,06/15/19 14:11,"304 Forest St, Portland, OR 97035" +212826,27in FHD Monitor,1,149.99,06/08/19 11:57,"355 Washington St, Los Angeles, CA 90001" +212827,Wired Headphones,1,11.99,06/25/19 11:19,"400 7th St, Dallas, TX 75001" +212828,Wired Headphones,1,11.99,06/12/19 00:27,"129 Cherry St, New York City, NY 10001" +212829,USB-C Charging Cable,2,11.95,06/12/19 19:52,"857 6th St, Austin, TX 73301" +212830,Wired Headphones,1,11.99,06/27/19 15:27,"554 Jefferson St, San Francisco, CA 94016" +212831,AAA Batteries (4-pack),1,2.99,06/20/19 15:24,"958 Willow St, Los Angeles, CA 90001" +212832,USB-C Charging Cable,1,11.95,06/13/19 08:39,"43 14th St, Seattle, WA 98101" +212833,34in Ultrawide Monitor,1,379.99,06/04/19 20:28,"219 Adams St, San Francisco, CA 94016" +212834,Lightning Charging Cable,1,14.95,06/20/19 11:25,"498 Johnson St, Los Angeles, CA 90001" +212834,USB-C Charging Cable,1,11.95,06/20/19 11:25,"498 Johnson St, Los Angeles, CA 90001" +212835,Bose SoundSport Headphones,1,99.99,06/13/19 09:25,"104 Center St, Seattle, WA 98101" +212836,27in FHD Monitor,1,149.99,06/22/19 14:02,"428 Cherry St, Atlanta, GA 30301" +212837,USB-C Charging Cable,1,11.95,06/24/19 19:10,"907 West St, Dallas, TX 75001" +212837,27in FHD Monitor,1,149.99,06/24/19 19:10,"907 West St, Dallas, TX 75001" +212838,Lightning Charging Cable,1,14.95,06/10/19 18:32,"299 6th St, Los Angeles, CA 90001" +212839,AAA Batteries (4-pack),1,2.99,06/18/19 19:44,"262 Cherry St, Dallas, TX 75001" +212840,20in Monitor,1,109.99,06/27/19 12:49,"159 Johnson St, Austin, TX 73301" +212841,Lightning Charging Cable,1,14.95,06/05/19 09:15,"444 4th St, San Francisco, CA 94016" +212842,Wired Headphones,1,11.99,06/19/19 21:18,"527 Church St, San Francisco, CA 94016" +212843,Vareebadd Phone,1,400,06/07/19 08:10,"919 Cherry St, Los Angeles, CA 90001" +212844,Lightning Charging Cable,2,14.95,06/20/19 12:21,"147 Forest St, San Francisco, CA 94016" +212845,Wired Headphones,1,11.99,06/07/19 16:46,"815 Cedar St, Seattle, WA 98101" +212846,AA Batteries (4-pack),1,3.84,06/21/19 13:53,"315 Elm St, Austin, TX 73301" +212847,AAA Batteries (4-pack),1,2.99,06/15/19 06:25,"918 12th St, Boston, MA 02215" +212848,Apple Airpods Headphones,1,150,06/10/19 12:56,"379 Jackson St, Seattle, WA 98101" +212849,27in FHD Monitor,1,149.99,06/04/19 09:52,"215 Cherry St, Dallas, TX 75001" +212850,Wired Headphones,1,11.99,06/05/19 19:11,"183 11th St, New York City, NY 10001" +212851,iPhone,1,700,06/17/19 20:19,"831 7th St, Los Angeles, CA 90001" +212852,LG Washing Machine,1,600.0,06/27/19 13:01,"343 South St, Boston, MA 02215" +212853,AAA Batteries (4-pack),2,2.99,06/07/19 07:35,"765 11th St, Boston, MA 02215" +212854,AA Batteries (4-pack),1,3.84,06/24/19 21:44,"441 Ridge St, Seattle, WA 98101" +212855,Bose SoundSport Headphones,1,99.99,06/26/19 23:16,"862 10th St, San Francisco, CA 94016" +212856,AAA Batteries (4-pack),2,2.99,06/06/19 18:34,"357 Lake St, San Francisco, CA 94016" +212857,34in Ultrawide Monitor,1,379.99,06/04/19 17:11,"252 Willow St, Atlanta, GA 30301" +212858,Bose SoundSport Headphones,1,99.99,06/02/19 14:34,"570 South St, Boston, MA 02215" +212859,AAA Batteries (4-pack),1,2.99,06/22/19 15:48,"73 11th St, San Francisco, CA 94016" +212860,Flatscreen TV,1,300,06/24/19 16:07,"192 1st St, Austin, TX 73301" +212861,Apple Airpods Headphones,1,150,06/11/19 20:40,"193 7th St, Austin, TX 73301" +212862,USB-C Charging Cable,1,11.95,06/10/19 21:14,"280 Willow St, New York City, NY 10001" +212863,Wired Headphones,1,11.99,06/22/19 16:07,"161 Washington St, Boston, MA 02215" +212864,AAA Batteries (4-pack),3,2.99,06/26/19 10:28,"710 Maple St, Boston, MA 02215" +212865,AAA Batteries (4-pack),1,2.99,06/06/19 20:16,"915 6th St, Austin, TX 73301" +212866,Lightning Charging Cable,1,14.95,06/25/19 23:11,"728 Church St, New York City, NY 10001" +212867,AA Batteries (4-pack),2,3.84,06/02/19 12:08,"998 1st St, Portland, ME 04101" +212868,34in Ultrawide Monitor,1,379.99,06/20/19 12:34,"200 Willow St, San Francisco, CA 94016" +212869,AAA Batteries (4-pack),1,2.99,06/20/19 13:54,"895 2nd St, New York City, NY 10001" +212870,USB-C Charging Cable,1,11.95,06/25/19 07:17,"970 River St, Los Angeles, CA 90001" +212871,USB-C Charging Cable,1,11.95,06/24/19 23:54,"633 Spruce St, Boston, MA 02215" +212872,Bose SoundSport Headphones,1,99.99,06/21/19 17:33,"80 Dogwood St, San Francisco, CA 94016" +212873,Lightning Charging Cable,1,14.95,06/06/19 07:11,"711 Johnson St, Los Angeles, CA 90001" +212874,Wired Headphones,1,11.99,06/05/19 08:33,"718 Dogwood St, Dallas, TX 75001" +212875,Wired Headphones,1,11.99,06/01/19 09:56,"399 River St, San Francisco, CA 94016" +212876,Lightning Charging Cable,1,14.95,06/06/19 16:19,"330 North St, San Francisco, CA 94016" +212877,AA Batteries (4-pack),1,3.84,06/08/19 10:17,"443 North St, Los Angeles, CA 90001" +212878,USB-C Charging Cable,1,11.95,06/10/19 15:19,"580 Dogwood St, Boston, MA 02215" +212879,AA Batteries (4-pack),2,3.84,06/29/19 17:17,"207 Park St, Boston, MA 02215" +212880,AA Batteries (4-pack),3,3.84,06/29/19 17:25,"848 Spruce St, Atlanta, GA 30301" +212881,Apple Airpods Headphones,1,150,06/06/19 21:42,"705 Washington St, San Francisco, CA 94016" +212882,AA Batteries (4-pack),2,3.84,06/10/19 16:13,"616 Hill St, New York City, NY 10001" +212883,USB-C Charging Cable,1,11.95,06/13/19 09:59,"221 West St, New York City, NY 10001" +212884,Bose SoundSport Headphones,1,99.99,06/01/19 12:14,"579 Dogwood St, Boston, MA 02215" +212884,27in 4K Gaming Monitor,1,389.99,06/01/19 12:14,"579 Dogwood St, Boston, MA 02215" +212885,27in FHD Monitor,1,149.99,06/02/19 22:30,"426 Washington St, San Francisco, CA 94016" +212886,AAA Batteries (4-pack),3,2.99,06/28/19 13:38,"992 9th St, Dallas, TX 75001" +212887,AAA Batteries (4-pack),1,2.99,06/28/19 11:21,"589 Adams St, San Francisco, CA 94016" +212888,AAA Batteries (4-pack),1,2.99,06/17/19 19:49,"884 Main St, Seattle, WA 98101" +212889,34in Ultrawide Monitor,1,379.99,06/24/19 00:48,"546 8th St, Los Angeles, CA 90001" +212890,Apple Airpods Headphones,1,150,06/06/19 16:17,"794 1st St, San Francisco, CA 94016" +212891,iPhone,1,700,06/10/19 09:35,"534 Highland St, Los Angeles, CA 90001" +212892,Lightning Charging Cable,1,14.95,06/27/19 22:57,"321 North St, San Francisco, CA 94016" +212893,Lightning Charging Cable,1,14.95,06/08/19 20:10,"842 River St, Boston, MA 02215" +212894,27in 4K Gaming Monitor,1,389.99,06/18/19 05:50,"223 Cherry St, Portland, OR 97035" +212894,Bose SoundSport Headphones,1,99.99,06/18/19 05:50,"223 Cherry St, Portland, OR 97035" +212895,27in FHD Monitor,1,149.99,06/08/19 19:49,"448 Elm St, San Francisco, CA 94016" +212896,AA Batteries (4-pack),2,3.84,06/29/19 13:03,"536 Sunset St, New York City, NY 10001" +212897,27in 4K Gaming Monitor,1,389.99,06/01/19 11:40,"72 14th St, Seattle, WA 98101" +212898,AAA Batteries (4-pack),1,2.99,06/30/19 19:22,"104 Park St, New York City, NY 10001" +212899,USB-C Charging Cable,1,11.95,06/21/19 20:34,"336 Lakeview St, San Francisco, CA 94016" +212900,AA Batteries (4-pack),1,3.84,06/24/19 01:22,"764 Johnson St, New York City, NY 10001" +212901,Wired Headphones,1,11.99,06/30/19 12:41,"290 Pine St, Boston, MA 02215" +212902,Lightning Charging Cable,1,14.95,06/16/19 18:31,"884 Jackson St, San Francisco, CA 94016" +212903,Google Phone,1,600,06/16/19 19:45,"860 Hickory St, Los Angeles, CA 90001" +212904,27in 4K Gaming Monitor,1,389.99,06/23/19 20:35,"624 12th St, Atlanta, GA 30301" +212905,27in 4K Gaming Monitor,1,389.99,06/15/19 13:38,"733 Lake St, Dallas, TX 75001" +212905,iPhone,1,700,06/15/19 13:38,"733 Lake St, Dallas, TX 75001" +212906,Flatscreen TV,1,300,06/01/19 11:47,"651 5th St, Atlanta, GA 30301" +212907,Wired Headphones,1,11.99,06/13/19 17:02,"549 Johnson St, Boston, MA 02215" +212908,Bose SoundSport Headphones,1,99.99,06/16/19 10:29,"622 Hill St, Portland, ME 04101" +212909,AA Batteries (4-pack),1,3.84,06/26/19 07:26,"798 Lakeview St, Boston, MA 02215" +212910,Lightning Charging Cable,1,14.95,06/11/19 13:30,"692 River St, Austin, TX 73301" +212911,AA Batteries (4-pack),1,3.84,06/17/19 10:55,"452 Madison St, San Francisco, CA 94016" +212912,AAA Batteries (4-pack),1,2.99,06/19/19 10:24,"449 2nd St, New York City, NY 10001" +212913,Bose SoundSport Headphones,1,99.99,06/25/19 12:03,"84 Sunset St, Dallas, TX 75001" +212914,Flatscreen TV,1,300,06/14/19 18:28,"733 10th St, San Francisco, CA 94016" +212914,Lightning Charging Cable,1,14.95,06/14/19 18:28,"733 10th St, San Francisco, CA 94016" +212915,20in Monitor,1,109.99,06/09/19 18:58,"742 Lakeview St, San Francisco, CA 94016" +212916,Bose SoundSport Headphones,1,99.99,06/26/19 22:05,"712 Center St, San Francisco, CA 94016" +212917,Bose SoundSport Headphones,1,99.99,06/25/19 18:03,"320 Forest St, Boston, MA 02215" +212918,Wired Headphones,1,11.99,06/01/19 16:15,"293 11th St, Los Angeles, CA 90001" +212919,20in Monitor,1,109.99,06/07/19 18:43,"422 Chestnut St, New York City, NY 10001" +212920,Wired Headphones,1,11.99,06/17/19 12:57,"53 Chestnut St, San Francisco, CA 94016" +212921,Apple Airpods Headphones,1,150,06/22/19 23:54,"590 Johnson St, Los Angeles, CA 90001" +212922,Flatscreen TV,1,300,06/13/19 21:38,"583 9th St, New York City, NY 10001" +212923,Flatscreen TV,1,300,06/25/19 08:34,"142 Sunset St, New York City, NY 10001" +212923,Wired Headphones,1,11.99,06/25/19 08:34,"142 Sunset St, New York City, NY 10001" +212924,34in Ultrawide Monitor,1,379.99,06/22/19 21:23,"305 8th St, Portland, OR 97035" +212925,Wired Headphones,1,11.99,06/03/19 13:30,"883 North St, San Francisco, CA 94016" +212926,Lightning Charging Cable,1,14.95,06/24/19 23:57,"859 Meadow St, Los Angeles, CA 90001" +212927,27in 4K Gaming Monitor,1,389.99,06/12/19 21:56,"784 Spruce St, New York City, NY 10001" +212928,Apple Airpods Headphones,1,150,06/01/19 20:49,"149 Johnson St, Dallas, TX 75001" +212929,34in Ultrawide Monitor,1,379.99,06/03/19 09:46,"747 7th St, San Francisco, CA 94016" +212930,Lightning Charging Cable,1,14.95,06/24/19 12:08,"967 2nd St, Austin, TX 73301" +212931,Bose SoundSport Headphones,1,99.99,06/15/19 22:31,"411 Lake St, Boston, MA 02215" +212932,Bose SoundSport Headphones,1,99.99,06/13/19 10:25,"614 11th St, San Francisco, CA 94016" +212933,AA Batteries (4-pack),2,3.84,06/15/19 01:37,"790 1st St, Austin, TX 73301" +212934,AAA Batteries (4-pack),1,2.99,06/03/19 05:33,"932 River St, San Francisco, CA 94016" +212935,Apple Airpods Headphones,1,150,06/28/19 04:57,"723 Chestnut St, New York City, NY 10001" +212936,Apple Airpods Headphones,1,150,06/12/19 17:49,"440 Dogwood St, San Francisco, CA 94016" +212937,Bose SoundSport Headphones,1,99.99,06/06/19 22:59,"295 8th St, New York City, NY 10001" +212938,USB-C Charging Cable,1,11.95,06/06/19 22:07,"867 Church St, New York City, NY 10001" +212939,Lightning Charging Cable,1,14.95,06/12/19 20:43,"876 Jackson St, Boston, MA 02215" +212940,27in FHD Monitor,1,149.99,06/25/19 20:41,"660 Adams St, San Francisco, CA 94016" +212941,iPhone,1,700,06/08/19 09:07,"289 Walnut St, New York City, NY 10001" +212942,USB-C Charging Cable,1,11.95,06/08/19 11:50,"218 Highland St, Seattle, WA 98101" +212943,AA Batteries (4-pack),1,3.84,06/06/19 15:41,"153 Spruce St, Los Angeles, CA 90001" +212944,AA Batteries (4-pack),2,3.84,06/05/19 20:10,"976 Spruce St, Los Angeles, CA 90001" +212945,34in Ultrawide Monitor,1,379.99,06/13/19 11:28,"758 Hill St, San Francisco, CA 94016" +212946,USB-C Charging Cable,2,11.95,06/11/19 16:06,"541 5th St, San Francisco, CA 94016" +212947,Bose SoundSport Headphones,1,99.99,06/01/19 13:42,"517 Johnson St, Atlanta, GA 30301" +212948,34in Ultrawide Monitor,1,379.99,06/22/19 19:59,"839 4th St, Austin, TX 73301" +212949,Wired Headphones,1,11.99,06/07/19 09:46,"566 Chestnut St, Atlanta, GA 30301" +212950,Apple Airpods Headphones,1,150,06/16/19 20:04,"461 Meadow St, Los Angeles, CA 90001" +212951,27in FHD Monitor,1,149.99,06/05/19 11:37,"246 Meadow St, Los Angeles, CA 90001" +212952,USB-C Charging Cable,1,11.95,06/12/19 15:02,"170 Willow St, Portland, OR 97035" +212953,Apple Airpods Headphones,1,150,06/18/19 13:27,"630 Jefferson St, Atlanta, GA 30301" +212954,AAA Batteries (4-pack),2,2.99,06/25/19 11:17,"229 Wilson St, Los Angeles, CA 90001" +212955,27in FHD Monitor,1,149.99,06/04/19 21:13,"942 South St, San Francisco, CA 94016" +212956,Apple Airpods Headphones,1,150,06/24/19 22:02,"884 Church St, Los Angeles, CA 90001" +212957,Flatscreen TV,1,300,06/22/19 11:04,"398 2nd St, New York City, NY 10001" +212958,Bose SoundSport Headphones,1,99.99,06/10/19 18:00,"793 Madison St, New York City, NY 10001" +212959,LG Dryer,1,600.0,06/30/19 17:28,"110 Hill St, Boston, MA 02215" +212960,AA Batteries (4-pack),1,3.84,06/10/19 13:27,"552 Cherry St, Los Angeles, CA 90001" +212961,27in 4K Gaming Monitor,1,389.99,06/26/19 07:55,"373 Forest St, Atlanta, GA 30301" +212962,Wired Headphones,2,11.99,06/11/19 15:19,"233 Jackson St, San Francisco, CA 94016" +212963,AA Batteries (4-pack),2,3.84,06/04/19 19:58,"278 6th St, Austin, TX 73301" +212964,Wired Headphones,1,11.99,06/26/19 15:00,"829 River St, New York City, NY 10001" +212965,Wired Headphones,1,11.99,06/22/19 09:05,"941 11th St, New York City, NY 10001" +212966,USB-C Charging Cable,1,11.95,06/16/19 13:35,"423 Forest St, Boston, MA 02215" +212967,Google Phone,1,600,06/06/19 15:58,"249 Church St, Dallas, TX 75001" +212968,Wired Headphones,1,11.99,06/06/19 12:20,"279 Adams St, San Francisco, CA 94016" +212969,AA Batteries (4-pack),1,3.84,06/10/19 12:25,"83 11th St, San Francisco, CA 94016" +212970,Bose SoundSport Headphones,1,99.99,06/20/19 23:57,"433 1st St, San Francisco, CA 94016" +212971,Apple Airpods Headphones,1,150,06/17/19 15:19,"170 7th St, San Francisco, CA 94016" +212972,AAA Batteries (4-pack),2,2.99,06/14/19 10:22,"724 Maple St, New York City, NY 10001" +212973,34in Ultrawide Monitor,1,379.99,06/17/19 11:27,"260 4th St, Seattle, WA 98101" +212974,Apple Airpods Headphones,1,150,06/09/19 10:53,"972 Park St, Seattle, WA 98101" +212974,27in FHD Monitor,1,149.99,06/09/19 10:53,"972 Park St, Seattle, WA 98101" +212975,Bose SoundSport Headphones,1,99.99,06/24/19 22:42,"378 Lake St, Atlanta, GA 30301" +212976,USB-C Charging Cable,1,11.95,06/21/19 10:36,"962 Jackson St, Seattle, WA 98101" +212977,Wired Headphones,1,11.99,06/16/19 15:13,"107 Pine St, Atlanta, GA 30301" +212978,34in Ultrawide Monitor,1,379.99,06/08/19 17:37,"26 Johnson St, Boston, MA 02215" +212979,Bose SoundSport Headphones,1,99.99,06/22/19 12:37,"508 10th St, San Francisco, CA 94016" +212980,AAA Batteries (4-pack),2,2.99,06/28/19 13:19,"816 Ridge St, Dallas, TX 75001" +212981,27in FHD Monitor,1,149.99,06/09/19 19:22,"723 Dogwood St, Boston, MA 02215" +212982,ThinkPad Laptop,1,999.99,06/12/19 20:29,"723 Cedar St, Los Angeles, CA 90001" +212983,Flatscreen TV,1,300,06/10/19 20:53,"520 Park St, San Francisco, CA 94016" +212984,AA Batteries (4-pack),1,3.84,06/09/19 11:04,"645 Washington St, Atlanta, GA 30301" +212985,AA Batteries (4-pack),1,3.84,06/27/19 00:28,"667 Elm St, Boston, MA 02215" +212986,Apple Airpods Headphones,1,150,06/18/19 09:45,"347 Wilson St, New York City, NY 10001" +212987,27in 4K Gaming Monitor,1,389.99,06/10/19 11:11,"699 Maple St, Seattle, WA 98101" +212988,USB-C Charging Cable,1,11.95,06/01/19 21:23,"606 Elm St, New York City, NY 10001" +212989,Bose SoundSport Headphones,1,99.99,06/04/19 20:11,"826 9th St, Boston, MA 02215" +212990,AAA Batteries (4-pack),1,2.99,06/26/19 20:19,"738 Jackson St, Seattle, WA 98101" +212991,Vareebadd Phone,1,400,06/05/19 08:48,"104 Hickory St, San Francisco, CA 94016" +212992,Bose SoundSport Headphones,1,99.99,06/24/19 14:56,"161 5th St, Boston, MA 02215" +212993,Lightning Charging Cable,1,14.95,06/03/19 22:00,"344 Wilson St, New York City, NY 10001" +212994,34in Ultrawide Monitor,1,379.99,06/15/19 22:46,"470 6th St, Los Angeles, CA 90001" +212995,Lightning Charging Cable,1,14.95,06/16/19 20:13,"216 Washington St, San Francisco, CA 94016" +212996,Wired Headphones,1,11.99,06/18/19 16:37,"76 Jefferson St, San Francisco, CA 94016" +212997,Google Phone,1,600,06/29/19 22:46,"647 Adams St, Dallas, TX 75001" +212997,USB-C Charging Cable,1,11.95,06/29/19 22:46,"647 Adams St, Dallas, TX 75001" +212998,USB-C Charging Cable,1,11.95,06/17/19 08:15,"959 Madison St, New York City, NY 10001" +212999,27in 4K Gaming Monitor,1,389.99,06/10/19 08:22,"278 Wilson St, Portland, ME 04101" +213000,20in Monitor,1,109.99,06/14/19 22:29,"180 Hill St, Austin, TX 73301" +213001,Lightning Charging Cable,1,14.95,06/07/19 07:50,"501 10th St, Boston, MA 02215" +213002,Lightning Charging Cable,1,14.95,06/29/19 14:40,"32 Lake St, Boston, MA 02215" +213003,Google Phone,1,600,06/20/19 16:10,"491 13th St, Los Angeles, CA 90001" +213004,Lightning Charging Cable,1,14.95,06/27/19 22:07,"96 10th St, Boston, MA 02215" +213005,Apple Airpods Headphones,1,150,06/11/19 22:58,"546 10th St, San Francisco, CA 94016" +213006,20in Monitor,1,109.99,06/03/19 13:15,"606 9th St, San Francisco, CA 94016" +213007,AA Batteries (4-pack),1,3.84,06/24/19 13:59,"715 Pine St, New York City, NY 10001" +213008,Macbook Pro Laptop,1,1700,06/18/19 16:21,"565 Spruce St, Seattle, WA 98101" +213009,Lightning Charging Cable,1,14.95,06/28/19 13:37,"64 9th St, Seattle, WA 98101" +213010,iPhone,1,700,06/30/19 13:20,"600 West St, Dallas, TX 75001" +213011,Bose SoundSport Headphones,1,99.99,06/08/19 05:17,"731 Cedar St, New York City, NY 10001" +213012,Apple Airpods Headphones,1,150,06/05/19 23:34,"672 1st St, Austin, TX 73301" +213013,20in Monitor,1,109.99,06/08/19 19:24,"510 8th St, Atlanta, GA 30301" +213014,Apple Airpods Headphones,1,150,06/08/19 19:28,"928 Wilson St, New York City, NY 10001" +213015,AA Batteries (4-pack),1,3.84,06/15/19 19:51,"747 Pine St, Boston, MA 02215" +213016,Wired Headphones,1,11.99,06/12/19 14:36,"552 1st St, Seattle, WA 98101" +213017,AA Batteries (4-pack),1,3.84,06/11/19 07:25,"882 10th St, San Francisco, CA 94016" +213018,iPhone,1,700,06/25/19 01:25,"671 Main St, Seattle, WA 98101" +213019,AAA Batteries (4-pack),1,2.99,06/05/19 17:54,"127 Madison St, San Francisco, CA 94016" +213020,Lightning Charging Cable,1,14.95,06/26/19 22:24,"228 Cedar St, Atlanta, GA 30301" +213021,USB-C Charging Cable,1,11.95,06/30/19 18:26,"321 Ridge St, San Francisco, CA 94016" +213022,AAA Batteries (4-pack),1,2.99,06/12/19 18:24,"367 Johnson St, Portland, OR 97035" +213023,Apple Airpods Headphones,1,150,06/26/19 11:32,"455 11th St, New York City, NY 10001" +213024,AA Batteries (4-pack),1,3.84,06/12/19 14:09,"800 Spruce St, San Francisco, CA 94016" +213025,Wired Headphones,1,11.99,06/17/19 19:48,"553 11th St, Austin, TX 73301" +213026,Apple Airpods Headphones,1,150,06/18/19 14:23,"297 Jefferson St, Atlanta, GA 30301" +213027,Lightning Charging Cable,1,14.95,06/23/19 11:57,"522 Adams St, San Francisco, CA 94016" +213027,AA Batteries (4-pack),1,3.84,06/23/19 11:57,"522 Adams St, San Francisco, CA 94016" +213028,Wired Headphones,1,11.99,06/24/19 13:26,"25 Elm St, New York City, NY 10001" +213029,Wired Headphones,1,11.99,06/09/19 16:56,"487 Highland St, Portland, OR 97035" +213030,AAA Batteries (4-pack),2,2.99,06/17/19 17:49,"644 Wilson St, New York City, NY 10001" +213031,AAA Batteries (4-pack),1,2.99,06/05/19 19:46,"430 Willow St, Los Angeles, CA 90001" +213032,Lightning Charging Cable,1,14.95,06/14/19 10:55,"612 Jefferson St, New York City, NY 10001" +213033,USB-C Charging Cable,1,11.95,06/02/19 19:13,"802 Willow St, Los Angeles, CA 90001" +213034,AA Batteries (4-pack),1,3.84,06/16/19 18:26,"790 Elm St, New York City, NY 10001" +213035,LG Dryer,1,600.0,06/09/19 12:24,"213 Chestnut St, San Francisco, CA 94016" +213036,AAA Batteries (4-pack),1,2.99,06/06/19 09:49,"654 Pine St, Dallas, TX 75001" +213037,AA Batteries (4-pack),1,3.84,06/12/19 12:55,"801 Hill St, Austin, TX 73301" +213038,USB-C Charging Cable,1,11.95,06/15/19 15:02,"324 Lakeview St, New York City, NY 10001" +213039,USB-C Charging Cable,1,11.95,06/14/19 18:58,"416 14th St, Boston, MA 02215" +213040,Apple Airpods Headphones,1,150,06/12/19 20:34,"963 Wilson St, Los Angeles, CA 90001" +213041,ThinkPad Laptop,1,999.99,06/26/19 15:45,"102 Maple St, Los Angeles, CA 90001" +213042,USB-C Charging Cable,1,11.95,06/20/19 19:11,"492 Lincoln St, New York City, NY 10001" +213043,27in FHD Monitor,1,149.99,06/22/19 08:16,"585 Meadow St, Portland, OR 97035" +213044,USB-C Charging Cable,2,11.95,06/29/19 20:59,"737 Washington St, New York City, NY 10001" +213045,Wired Headphones,1,11.99,06/23/19 13:14,"992 4th St, Boston, MA 02215" +213046,ThinkPad Laptop,1,999.99,06/02/19 11:25,"613 Pine St, Atlanta, GA 30301" +213047,Bose SoundSport Headphones,1,99.99,06/17/19 11:27,"605 Lake St, Dallas, TX 75001" +213048,USB-C Charging Cable,1,11.95,06/27/19 16:01,"518 Park St, Los Angeles, CA 90001" +213049,27in 4K Gaming Monitor,1,389.99,06/10/19 09:57,"929 North St, Dallas, TX 75001" +213050,AA Batteries (4-pack),1,3.84,06/21/19 00:08,"181 Madison St, Dallas, TX 75001" +213051,Macbook Pro Laptop,1,1700,06/21/19 12:35,"692 11th St, Portland, OR 97035" +213052,Apple Airpods Headphones,1,150,06/17/19 18:43,"493 Willow St, Dallas, TX 75001" +213053,Lightning Charging Cable,1,14.95,06/27/19 23:20,"836 Meadow St, Los Angeles, CA 90001" +213054,Lightning Charging Cable,1,14.95,06/04/19 00:53,"636 Chestnut St, San Francisco, CA 94016" +213055,Flatscreen TV,1,300,06/14/19 19:15,"361 4th St, New York City, NY 10001" +213056,20in Monitor,1,109.99,06/20/19 17:12,"264 Main St, San Francisco, CA 94016" +213057,AA Batteries (4-pack),1,3.84,06/01/19 19:49,"758 Madison St, Los Angeles, CA 90001" +213058,AA Batteries (4-pack),2,3.84,06/07/19 23:49,"165 11th St, Boston, MA 02215" +213059,Wired Headphones,1,11.99,06/18/19 22:36,"575 Main St, Austin, TX 73301" +213060,AA Batteries (4-pack),1,3.84,06/26/19 10:32,"1 Jackson St, Dallas, TX 75001" +213061,Lightning Charging Cable,1,14.95,06/08/19 16:03,"484 12th St, Austin, TX 73301" +213062,AA Batteries (4-pack),1,3.84,06/13/19 05:56,"752 Madison St, Portland, OR 97035" +213063,20in Monitor,1,109.99,06/17/19 02:35,"643 14th St, Los Angeles, CA 90001" +213064,Lightning Charging Cable,1,14.95,06/27/19 10:29,"701 Jackson St, New York City, NY 10001" +213065,34in Ultrawide Monitor,1,379.99,06/22/19 17:44,"158 Forest St, Boston, MA 02215" +213066,ThinkPad Laptop,1,999.99,06/06/19 11:08,"333 1st St, San Francisco, CA 94016" +213067,LG Washing Machine,1,600.0,06/22/19 22:05,"872 14th St, Seattle, WA 98101" +213068,USB-C Charging Cable,1,11.95,06/16/19 18:44,"39 Johnson St, Austin, TX 73301" +213069,Wired Headphones,1,11.99,06/01/19 18:23,"375 Washington St, Los Angeles, CA 90001" +213070,27in 4K Gaming Monitor,1,389.99,06/13/19 16:19,"266 Jefferson St, Seattle, WA 98101" +213071,Google Phone,1,600,06/23/19 15:05,"810 Willow St, New York City, NY 10001" +213072,AA Batteries (4-pack),3,3.84,06/02/19 16:10,"865 13th St, Los Angeles, CA 90001" +213073,AA Batteries (4-pack),1,3.84,06/21/19 18:54,"136 Cherry St, Los Angeles, CA 90001" +213074,Wired Headphones,1,11.99,06/16/19 12:18,"569 6th St, Dallas, TX 75001" +213075,AAA Batteries (4-pack),1,2.99,06/08/19 01:04,"431 11th St, San Francisco, CA 94016" +213076,Google Phone,1,600,06/09/19 15:05,"212 Lake St, Boston, MA 02215" +213076,USB-C Charging Cable,1,11.95,06/09/19 15:05,"212 Lake St, Boston, MA 02215" +213077,27in 4K Gaming Monitor,1,389.99,06/17/19 21:25,"715 Lake St, Boston, MA 02215" +213078,AAA Batteries (4-pack),1,2.99,06/24/19 22:21,"375 Willow St, New York City, NY 10001" +213079,Apple Airpods Headphones,1,150,06/05/19 19:44,"703 Elm St, Austin, TX 73301" +213080,AAA Batteries (4-pack),2,2.99,06/28/19 09:01,"551 Ridge St, New York City, NY 10001" +213081,34in Ultrawide Monitor,1,379.99,06/01/19 15:56,"212 11th St, Los Angeles, CA 90001" +213082,Bose SoundSport Headphones,2,99.99,06/06/19 16:10,"116 6th St, Seattle, WA 98101" +213083,AA Batteries (4-pack),1,3.84,06/09/19 11:55,"520 14th St, Boston, MA 02215" +213084,Wired Headphones,2,11.99,06/04/19 08:12,"641 6th St, Portland, OR 97035" +213085,Vareebadd Phone,1,400,06/17/19 19:41,"150 Hickory St, New York City, NY 10001" +213086,Lightning Charging Cable,1,14.95,06/30/19 13:38,"305 4th St, Boston, MA 02215" +213087,27in 4K Gaming Monitor,1,389.99,06/08/19 23:03,"584 Center St, Austin, TX 73301" +213088,Bose SoundSport Headphones,1,99.99,06/03/19 11:47,"240 12th St, San Francisco, CA 94016" +213089,Wired Headphones,1,11.99,06/28/19 18:43,"463 Main St, Boston, MA 02215" +213090,USB-C Charging Cable,1,11.95,06/23/19 02:47,"139 Jefferson St, New York City, NY 10001" +213091,Wired Headphones,1,11.99,06/28/19 17:40,"700 Forest St, Boston, MA 02215" +213092,Macbook Pro Laptop,1,1700,06/27/19 13:21,"226 Highland St, San Francisco, CA 94016" +213093,Lightning Charging Cable,1,14.95,06/20/19 13:30,"645 8th St, San Francisco, CA 94016" +213094,iPhone,1,700,06/22/19 19:29,"27 North St, New York City, NY 10001" +213094,Wired Headphones,1,11.99,06/22/19 19:29,"27 North St, New York City, NY 10001" +213095,Bose SoundSport Headphones,1,99.99,06/30/19 10:22,"19 2nd St, Boston, MA 02215" +213096,Wired Headphones,2,11.99,06/23/19 12:57,"30 12th St, New York City, NY 10001" +213097,Bose SoundSport Headphones,1,99.99,06/26/19 13:50,"850 4th St, Dallas, TX 75001" +213098,Lightning Charging Cable,1,14.95,06/12/19 10:08,"96 Wilson St, New York City, NY 10001" +213099,Bose SoundSport Headphones,1,99.99,06/23/19 14:15,"405 Ridge St, Portland, ME 04101" +213100,20in Monitor,1,109.99,06/21/19 19:40,"698 Main St, Seattle, WA 98101" +213101,AAA Batteries (4-pack),2,2.99,06/10/19 12:03,"176 North St, Atlanta, GA 30301" +213102,20in Monitor,1,109.99,06/12/19 15:17,"196 Sunset St, San Francisco, CA 94016" +213103,Wired Headphones,1,11.99,06/24/19 13:49,"751 10th St, Portland, OR 97035" +213104,Apple Airpods Headphones,1,150,06/05/19 23:25,"72 Lake St, Dallas, TX 75001" +213105,Apple Airpods Headphones,1,150,06/25/19 01:07,"201 Walnut St, San Francisco, CA 94016" +213106,Bose SoundSport Headphones,1,99.99,06/10/19 11:44,"879 2nd St, Atlanta, GA 30301" +213107,Apple Airpods Headphones,1,150,06/14/19 19:58,"895 Maple St, Atlanta, GA 30301" +213108,USB-C Charging Cable,1,11.95,06/05/19 16:18,"366 2nd St, San Francisco, CA 94016" +213109,Apple Airpods Headphones,1,150,06/14/19 00:39,"964 Meadow St, Boston, MA 02215" +213110,Lightning Charging Cable,2,14.95,06/29/19 11:06,"23 Hill St, New York City, NY 10001" +213111,27in FHD Monitor,1,149.99,06/22/19 00:23,"996 Johnson St, Los Angeles, CA 90001" +213112,Bose SoundSport Headphones,1,99.99,06/21/19 17:53,"610 Washington St, Austin, TX 73301" +213113,AAA Batteries (4-pack),1,2.99,06/22/19 14:02,"96 Johnson St, Dallas, TX 75001" +213114,Bose SoundSport Headphones,1,99.99,06/04/19 10:30,"404 Hickory St, Seattle, WA 98101" +213115,Lightning Charging Cable,1,14.95,06/16/19 21:59,"395 Dogwood St, San Francisco, CA 94016" +213116,Wired Headphones,1,11.99,06/29/19 08:20,"963 7th St, Dallas, TX 75001" +213117,LG Washing Machine,1,600.0,06/02/19 10:35,"817 6th St, San Francisco, CA 94016" +213118,ThinkPad Laptop,1,999.99,06/13/19 13:07,"963 13th St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +213119,Apple Airpods Headphones,1,150,06/06/19 22:15,"293 Meadow St, San Francisco, CA 94016" +213119,AA Batteries (4-pack),2,3.84,06/06/19 22:15,"293 Meadow St, San Francisco, CA 94016" +213120,Lightning Charging Cable,1,14.95,06/18/19 13:31,"300 Elm St, Boston, MA 02215" +213121,Bose SoundSport Headphones,1,99.99,06/10/19 17:49,"471 Spruce St, New York City, NY 10001" +213122,Apple Airpods Headphones,1,150,06/04/19 23:39,"150 11th St, San Francisco, CA 94016" +213123,ThinkPad Laptop,1,999.99,06/14/19 14:23,"174 2nd St, Seattle, WA 98101" +213124,AAA Batteries (4-pack),2,2.99,06/09/19 20:35,"826 7th St, Portland, OR 97035" +213125,34in Ultrawide Monitor,1,379.99,06/17/19 17:49,"379 Cedar St, Los Angeles, CA 90001" +213126,Google Phone,1,600,06/20/19 15:26,"807 6th St, San Francisco, CA 94016" +213127,20in Monitor,1,109.99,06/20/19 17:35,"301 Lake St, Los Angeles, CA 90001" +213128,Wired Headphones,1,11.99,06/19/19 02:57,"805 Cherry St, Los Angeles, CA 90001" +213129,AAA Batteries (4-pack),2,2.99,06/26/19 14:19,"951 Spruce St, Atlanta, GA 30301" +213130,Wired Headphones,1,11.99,06/03/19 01:05,"228 Main St, San Francisco, CA 94016" +213131,USB-C Charging Cable,1,11.95,06/26/19 07:00,"213 Cherry St, Boston, MA 02215" +213132,27in FHD Monitor,1,149.99,06/29/19 05:09,"688 Chestnut St, San Francisco, CA 94016" +213133,ThinkPad Laptop,1,999.99,06/12/19 16:50,"947 Lakeview St, Boston, MA 02215" +213134,iPhone,1,700,06/12/19 10:15,"809 10th St, Los Angeles, CA 90001" +213135,USB-C Charging Cable,1,11.95,06/07/19 21:07,"311 South St, Atlanta, GA 30301" +213136,USB-C Charging Cable,1,11.95,06/16/19 09:22,"861 Willow St, Los Angeles, CA 90001" +213137,USB-C Charging Cable,1,11.95,06/19/19 14:18,"209 Willow St, New York City, NY 10001" +213138,Wired Headphones,2,11.99,06/06/19 14:14,"386 Wilson St, New York City, NY 10001" +213139,USB-C Charging Cable,1,11.95,06/08/19 21:25,"657 5th St, Los Angeles, CA 90001" +213140,Apple Airpods Headphones,1,150,06/06/19 14:33,"103 West St, Seattle, WA 98101" +213141,iPhone,1,700,06/10/19 11:33,"607 Dogwood St, New York City, NY 10001" +213141,Lightning Charging Cable,1,14.95,06/10/19 11:33,"607 Dogwood St, New York City, NY 10001" +213142,ThinkPad Laptop,1,999.99,06/05/19 03:12,"988 Jefferson St, Austin, TX 73301" +213143,AAA Batteries (4-pack),1,2.99,06/18/19 19:40,"483 Elm St, Seattle, WA 98101" +213144,34in Ultrawide Monitor,1,379.99,06/30/19 19:51,"362 7th St, Seattle, WA 98101" +213145,AAA Batteries (4-pack),1,2.99,06/21/19 15:39,"925 10th St, New York City, NY 10001" +213146,27in FHD Monitor,1,149.99,06/06/19 10:30,"472 Dogwood St, Dallas, TX 75001" +213147,USB-C Charging Cable,1,11.95,06/17/19 19:05,"872 Willow St, New York City, NY 10001" +213148,Lightning Charging Cable,1,14.95,06/26/19 04:06,"505 4th St, Boston, MA 02215" +213149,34in Ultrawide Monitor,1,379.99,06/08/19 10:28,"107 Jefferson St, Portland, OR 97035" +213150,AA Batteries (4-pack),4,3.84,06/13/19 13:13,"704 9th St, Austin, TX 73301" +213151,27in 4K Gaming Monitor,1,389.99,06/24/19 17:52,"592 Sunset St, Dallas, TX 75001" +213152,USB-C Charging Cable,1,11.95,06/22/19 13:02,"716 Center St, San Francisco, CA 94016" +213153,USB-C Charging Cable,1,11.95,06/19/19 22:19,"37 2nd St, New York City, NY 10001" +213154,USB-C Charging Cable,1,11.95,06/27/19 08:24,"566 Park St, San Francisco, CA 94016" +213155,27in 4K Gaming Monitor,1,389.99,06/20/19 00:56,"717 Walnut St, Los Angeles, CA 90001" +213156,AA Batteries (4-pack),3,3.84,06/17/19 08:07,"217 Adams St, Boston, MA 02215" +213157,AAA Batteries (4-pack),1,2.99,06/14/19 18:38,"778 Forest St, Los Angeles, CA 90001" +213158,27in FHD Monitor,1,149.99,06/14/19 15:20,"778 Elm St, Boston, MA 02215" +213159,34in Ultrawide Monitor,1,379.99,06/06/19 00:02,"499 4th St, Seattle, WA 98101" +213160,AA Batteries (4-pack),1,3.84,06/26/19 09:04,"452 Wilson St, San Francisco, CA 94016" +213161,Wired Headphones,2,11.99,06/02/19 17:28,"789 North St, Portland, ME 04101" +213162,Lightning Charging Cable,2,14.95,06/24/19 17:36,"114 Lakeview St, Los Angeles, CA 90001" +213163,34in Ultrawide Monitor,1,379.99,06/06/19 00:16,"944 Willow St, New York City, NY 10001" +213164,AAA Batteries (4-pack),1,2.99,06/04/19 09:34,"448 Forest St, Austin, TX 73301" +213165,Wired Headphones,1,11.99,06/20/19 12:20,"806 Lake St, Dallas, TX 75001" +213166,Lightning Charging Cable,1,14.95,06/28/19 14:22,"937 Spruce St, New York City, NY 10001" +213167,Wired Headphones,1,11.99,06/17/19 21:44,"840 Hickory St, Los Angeles, CA 90001" +213168,Flatscreen TV,1,300,06/01/19 18:50,"322 12th St, San Francisco, CA 94016" +213169,USB-C Charging Cable,1,11.95,06/27/19 15:59,"739 Jackson St, Seattle, WA 98101" +213170,34in Ultrawide Monitor,1,379.99,06/28/19 12:03,"811 Church St, Seattle, WA 98101" +213171,iPhone,1,700,06/03/19 04:48,"498 Chestnut St, San Francisco, CA 94016" +213171,Wired Headphones,1,11.99,06/03/19 04:48,"498 Chestnut St, San Francisco, CA 94016" +213172,AA Batteries (4-pack),2,3.84,06/25/19 17:30,"927 Forest St, Seattle, WA 98101" +213173,Lightning Charging Cable,1,14.95,06/13/19 12:26,"641 Adams St, Boston, MA 02215" +213174,Google Phone,1,600,06/26/19 18:14,"305 10th St, Los Angeles, CA 90001" +213175,Macbook Pro Laptop,1,1700,06/23/19 10:00,"538 9th St, Dallas, TX 75001" +213176,Lightning Charging Cable,1,14.95,06/19/19 17:40,"780 Hill St, Atlanta, GA 30301" +213177,ThinkPad Laptop,1,999.99,06/03/19 08:29,"461 Lakeview St, San Francisco, CA 94016" +213178,AAA Batteries (4-pack),3,2.99,06/22/19 16:01,"812 North St, Seattle, WA 98101" +213179,AA Batteries (4-pack),1,3.84,06/29/19 15:27,"114 Lake St, Seattle, WA 98101" +213180,Apple Airpods Headphones,1,150,06/15/19 14:29,"637 12th St, Los Angeles, CA 90001" +213181,AAA Batteries (4-pack),4,2.99,06/09/19 01:25,"500 14th St, New York City, NY 10001" +213182,AAA Batteries (4-pack),1,2.99,06/09/19 19:17,"494 Walnut St, Atlanta, GA 30301" +213183,34in Ultrawide Monitor,1,379.99,06/19/19 13:02,"774 Willow St, Dallas, TX 75001" +213184,34in Ultrawide Monitor,1,379.99,06/02/19 23:34,"393 Chestnut St, New York City, NY 10001" +213185,AA Batteries (4-pack),2,3.84,06/12/19 11:49,"316 Walnut St, Boston, MA 02215" +213186,Bose SoundSport Headphones,1,99.99,06/07/19 08:01,"439 8th St, Los Angeles, CA 90001" +213187,AA Batteries (4-pack),1,3.84,06/04/19 13:47,"296 Main St, Austin, TX 73301" +213188,USB-C Charging Cable,1,11.95,06/14/19 09:51,"91 North St, San Francisco, CA 94016" +213189,USB-C Charging Cable,1,11.95,06/21/19 13:55,"470 Lake St, San Francisco, CA 94016" +213190,27in FHD Monitor,1,149.99,06/22/19 14:36,"495 Madison St, Los Angeles, CA 90001" +213191,Wired Headphones,1,11.99,06/10/19 10:56,"179 Walnut St, New York City, NY 10001" +213192,34in Ultrawide Monitor,1,379.99,06/11/19 09:59,"193 1st St, Los Angeles, CA 90001" +213193,AAA Batteries (4-pack),1,2.99,06/09/19 21:33,"832 Church St, Atlanta, GA 30301" +213194,Bose SoundSport Headphones,1,99.99,06/01/19 19:52,"264 Wilson St, Atlanta, GA 30301" +213195,USB-C Charging Cable,1,11.95,06/08/19 23:39,"753 Maple St, New York City, NY 10001" +213196,AAA Batteries (4-pack),3,2.99,06/28/19 11:41,"20 6th St, Portland, OR 97035" +213197,AA Batteries (4-pack),1,3.84,06/17/19 16:30,"720 Lakeview St, San Francisco, CA 94016" +213198,AAA Batteries (4-pack),1,2.99,06/17/19 23:38,"826 Maple St, Dallas, TX 75001" +213199,AA Batteries (4-pack),1,3.84,06/17/19 08:29,"284 9th St, New York City, NY 10001" +213200,USB-C Charging Cable,2,11.95,06/27/19 14:52,"950 Chestnut St, Austin, TX 73301" +213201,Bose SoundSport Headphones,1,99.99,06/10/19 21:55,"479 Hickory St, Los Angeles, CA 90001" +213202,USB-C Charging Cable,1,11.95,06/10/19 10:35,"552 8th St, Atlanta, GA 30301" +213203,iPhone,1,700,06/28/19 23:07,"180 Hickory St, New York City, NY 10001" +213204,AAA Batteries (4-pack),2,2.99,06/25/19 11:15,"192 Sunset St, New York City, NY 10001" +213205,Lightning Charging Cable,1,14.95,06/20/19 22:42,"8 Ridge St, Austin, TX 73301" +213206,27in 4K Gaming Monitor,1,389.99,06/28/19 13:10,"859 Spruce St, Los Angeles, CA 90001" +213207,AAA Batteries (4-pack),1,2.99,06/07/19 13:31,"429 Washington St, Boston, MA 02215" +213208,AAA Batteries (4-pack),2,2.99,06/04/19 13:16,"582 14th St, New York City, NY 10001" +213209,AAA Batteries (4-pack),2,2.99,06/01/19 18:32,"935 14th St, Los Angeles, CA 90001" +213210,27in FHD Monitor,1,149.99,06/16/19 10:12,"584 4th St, Seattle, WA 98101" +213211,AA Batteries (4-pack),2,3.84,06/24/19 17:04,"480 Lakeview St, New York City, NY 10001" +213212,AA Batteries (4-pack),1,3.84,06/06/19 11:17,"880 Spruce St, Seattle, WA 98101" +213213,Google Phone,1,600,06/28/19 13:34,"238 Lake St, Dallas, TX 75001" +213213,USB-C Charging Cable,1,11.95,06/28/19 13:34,"238 Lake St, Dallas, TX 75001" +213214,AA Batteries (4-pack),2,3.84,06/09/19 14:00,"553 Walnut St, Seattle, WA 98101" +213215,Macbook Pro Laptop,1,1700,06/08/19 21:49,"244 Wilson St, Seattle, WA 98101" +213216,Lightning Charging Cable,1,14.95,06/13/19 23:59,"563 Hickory St, San Francisco, CA 94016" +213217,AA Batteries (4-pack),2,3.84,06/01/19 12:38,"504 Dogwood St, Atlanta, GA 30301" +213218,Vareebadd Phone,1,400,06/15/19 17:32,"572 Cedar St, Portland, OR 97035" +213219,Bose SoundSport Headphones,1,99.99,06/22/19 15:37,"664 Maple St, New York City, NY 10001" +213220,iPhone,1,700,06/01/19 12:31,"75 Hickory St, Los Angeles, CA 90001" +213221,Wired Headphones,1,11.99,06/27/19 11:46,"84 Park St, Dallas, TX 75001" +213222,34in Ultrawide Monitor,1,379.99,06/26/19 12:43,"130 12th St, Los Angeles, CA 90001" +213223,27in FHD Monitor,1,149.99,06/21/19 20:48,"387 14th St, New York City, NY 10001" +213224,Wired Headphones,1,11.99,06/09/19 22:30,"787 Lake St, Los Angeles, CA 90001" +213225,Wired Headphones,1,11.99,06/29/19 16:29,"724 Chestnut St, Seattle, WA 98101" +213226,Apple Airpods Headphones,1,150,06/20/19 15:40,"133 Madison St, Portland, OR 97035" +213227,34in Ultrawide Monitor,1,379.99,06/29/19 16:19,"76 Washington St, San Francisco, CA 94016" +213228,Lightning Charging Cable,1,14.95,06/19/19 11:17,"373 Jackson St, Austin, TX 73301" +213229,AAA Batteries (4-pack),1,2.99,06/27/19 10:32,"262 Jefferson St, Portland, OR 97035" +213230,Google Phone,1,600,06/10/19 22:44,"405 5th St, San Francisco, CA 94016" +213230,USB-C Charging Cable,1,11.95,06/10/19 22:44,"405 5th St, San Francisco, CA 94016" +213231,Bose SoundSport Headphones,1,99.99,06/26/19 17:20,"605 Sunset St, Los Angeles, CA 90001" +213231,USB-C Charging Cable,1,11.95,06/26/19 17:20,"605 Sunset St, Los Angeles, CA 90001" +213232,iPhone,1,700,06/08/19 23:18,"757 Hickory St, Austin, TX 73301" +213233,Google Phone,1,600,06/05/19 21:29,"580 4th St, Seattle, WA 98101" +213234,AAA Batteries (4-pack),1,2.99,06/24/19 10:14,"963 Wilson St, San Francisco, CA 94016" +213235,Wired Headphones,1,11.99,06/28/19 16:30,"431 Hill St, San Francisco, CA 94016" +213236,iPhone,1,700,06/10/19 18:57,"818 Spruce St, Boston, MA 02215" +213237,ThinkPad Laptop,1,999.99,06/02/19 21:13,"112 11th St, Seattle, WA 98101" +213238,USB-C Charging Cable,1,11.95,06/20/19 18:56,"165 10th St, San Francisco, CA 94016" +213239,AA Batteries (4-pack),2,3.84,06/26/19 13:04,"233 Cedar St, San Francisco, CA 94016" +213240,AA Batteries (4-pack),1,3.84,06/16/19 10:25,"212 Dogwood St, Boston, MA 02215" +213241,AA Batteries (4-pack),1,3.84,06/16/19 19:18,"163 Johnson St, Dallas, TX 75001" +213242,AA Batteries (4-pack),1,3.84,06/08/19 18:56,"912 8th St, San Francisco, CA 94016" +213243,AAA Batteries (4-pack),2,2.99,06/05/19 08:27,"352 River St, Boston, MA 02215" +213244,20in Monitor,1,109.99,06/16/19 09:38,"793 Adams St, Atlanta, GA 30301" +213245,Macbook Pro Laptop,1,1700,06/27/19 14:11,"820 13th St, Seattle, WA 98101" +213246,Bose SoundSport Headphones,1,99.99,06/06/19 20:34,"41 Dogwood St, San Francisco, CA 94016" +213247,Apple Airpods Headphones,1,150,06/20/19 23:24,"147 10th St, New York City, NY 10001" +213248,Apple Airpods Headphones,1,150,06/11/19 13:50,"44 Lake St, Boston, MA 02215" +213249,27in 4K Gaming Monitor,1,389.99,06/30/19 19:18,"177 South St, Los Angeles, CA 90001" +213250,Lightning Charging Cable,1,14.95,06/15/19 10:12,"975 14th St, Seattle, WA 98101" +213251,AA Batteries (4-pack),1,3.84,06/11/19 09:45,"11 Madison St, Los Angeles, CA 90001" +213252,AAA Batteries (4-pack),3,2.99,06/03/19 11:19,"888 12th St, Atlanta, GA 30301" +213253,AAA Batteries (4-pack),1,2.99,06/08/19 15:26,"943 Meadow St, New York City, NY 10001" +213254,AA Batteries (4-pack),2,3.84,06/26/19 17:15,"3 West St, New York City, NY 10001" +213255,Wired Headphones,1,11.99,06/05/19 15:06,"679 Church St, Dallas, TX 75001" +213256,Wired Headphones,1,11.99,06/16/19 19:53,"345 Sunset St, Los Angeles, CA 90001" +213257,Wired Headphones,1,11.99,06/30/19 13:44,"141 5th St, Atlanta, GA 30301" +213258,27in FHD Monitor,1,149.99,06/26/19 15:15,"326 Madison St, Los Angeles, CA 90001" +213259,27in 4K Gaming Monitor,1,389.99,06/25/19 13:32,"671 10th St, Los Angeles, CA 90001" +213260,Lightning Charging Cable,1,14.95,06/23/19 12:42,"199 Jackson St, Austin, TX 73301" +213261,USB-C Charging Cable,1,11.95,06/06/19 12:20,"257 Pine St, Dallas, TX 75001" +213262,34in Ultrawide Monitor,1,379.99,06/04/19 13:28,"768 Jefferson St, Los Angeles, CA 90001" +213263,Wired Headphones,1,11.99,06/17/19 18:36,"584 Lake St, Seattle, WA 98101" +213264,AA Batteries (4-pack),1,3.84,06/20/19 18:37,"112 Ridge St, Austin, TX 73301" +213265,Bose SoundSport Headphones,1,99.99,06/24/19 12:40,"371 Ridge St, Seattle, WA 98101" +213266,AAA Batteries (4-pack),1,2.99,06/26/19 19:02,"834 Lincoln St, Seattle, WA 98101" +213267,AA Batteries (4-pack),1,3.84,06/16/19 19:40,"619 Church St, Portland, OR 97035" +213268,Google Phone,1,600,06/22/19 00:53,"727 Jefferson St, New York City, NY 10001" +213269,Apple Airpods Headphones,1,150,06/11/19 23:23,"739 4th St, Boston, MA 02215" +213270,Google Phone,1,600,06/11/19 19:08,"707 6th St, San Francisco, CA 94016" +213270,Wired Headphones,1,11.99,06/11/19 19:08,"707 6th St, San Francisco, CA 94016" +213271,AAA Batteries (4-pack),1,2.99,06/11/19 23:31,"628 Maple St, Los Angeles, CA 90001" +213272,USB-C Charging Cable,1,11.95,06/09/19 17:10,"468 Highland St, Los Angeles, CA 90001" +213273,Vareebadd Phone,1,400,06/28/19 10:29,"214 Highland St, Los Angeles, CA 90001" +213273,Wired Headphones,1,11.99,06/28/19 10:29,"214 Highland St, Los Angeles, CA 90001" +213274,Apple Airpods Headphones,1,150,06/03/19 20:54,"458 Lincoln St, San Francisco, CA 94016" +213275,Wired Headphones,1,11.99,06/26/19 12:15,"57 12th St, San Francisco, CA 94016" +213276,Macbook Pro Laptop,1,1700,06/17/19 15:57,"868 Willow St, San Francisco, CA 94016" +213277,Bose SoundSport Headphones,1,99.99,06/25/19 08:10,"787 Maple St, San Francisco, CA 94016" +213278,Lightning Charging Cable,1,14.95,06/05/19 16:00,"988 Cedar St, Austin, TX 73301" +213279,Wired Headphones,1,11.99,06/14/19 11:47,"963 Jefferson St, New York City, NY 10001" +213280,Wired Headphones,1,11.99,06/11/19 12:01,"219 Forest St, Seattle, WA 98101" +213281,Wired Headphones,1,11.99,06/09/19 15:07,"764 Church St, New York City, NY 10001" +213282,AA Batteries (4-pack),1,3.84,06/11/19 14:17,"906 Jackson St, Atlanta, GA 30301" +213283,Vareebadd Phone,1,400,06/30/19 13:17,"305 Hill St, San Francisco, CA 94016" +213284,iPhone,1,700,06/18/19 22:10,"179 Center St, New York City, NY 10001" +213284,Lightning Charging Cable,1,14.95,06/18/19 22:10,"179 Center St, New York City, NY 10001" +213285,Macbook Pro Laptop,1,1700,06/28/19 12:00,"483 Adams St, Los Angeles, CA 90001" +213286,USB-C Charging Cable,1,11.95,06/03/19 19:53,"216 North St, San Francisco, CA 94016" +213287,Lightning Charging Cable,1,14.95,06/10/19 11:56,"3 Forest St, San Francisco, CA 94016" +213288,Macbook Pro Laptop,1,1700,06/28/19 11:03,"496 13th St, Portland, ME 04101" +213289,Wired Headphones,1,11.99,06/08/19 21:45,"124 Pine St, San Francisco, CA 94016" +213290,Lightning Charging Cable,1,14.95,06/14/19 11:33,"666 7th St, Los Angeles, CA 90001" +213291,AAA Batteries (4-pack),1,2.99,06/22/19 21:33,"832 South St, San Francisco, CA 94016" +213292,Lightning Charging Cable,1,14.95,06/24/19 13:16,"8 Chestnut St, San Francisco, CA 94016" +213293,Apple Airpods Headphones,1,150,06/03/19 13:49,"918 Cedar St, Boston, MA 02215" +213294,USB-C Charging Cable,1,11.95,06/09/19 13:44,"219 Jackson St, Portland, OR 97035" +213295,AAA Batteries (4-pack),1,2.99,06/01/19 08:39,"599 Sunset St, Austin, TX 73301" +213296,AA Batteries (4-pack),1,3.84,06/28/19 07:54,"551 Center St, Dallas, TX 75001" +213297,AA Batteries (4-pack),2,3.84,06/08/19 15:37,"584 4th St, Los Angeles, CA 90001" +213298,Bose SoundSport Headphones,1,99.99,06/21/19 06:44,"24 Pine St, Boston, MA 02215" +213299,AA Batteries (4-pack),3,3.84,06/12/19 19:36,"832 Willow St, Atlanta, GA 30301" +213300,27in FHD Monitor,1,149.99,06/16/19 11:19,"157 2nd St, Seattle, WA 98101" +213301,Apple Airpods Headphones,1,150,06/20/19 11:55,"704 Lakeview St, Dallas, TX 75001" +213302,Flatscreen TV,1,300,06/03/19 11:13,"953 12th St, Seattle, WA 98101" +213303,27in FHD Monitor,1,149.99,06/27/19 03:02,"475 13th St, Dallas, TX 75001" +213304,AAA Batteries (4-pack),3,2.99,06/04/19 17:09,"979 Johnson St, Portland, OR 97035" +213305,27in FHD Monitor,1,149.99,06/24/19 07:06,"534 Park St, Boston, MA 02215" +213305,Flatscreen TV,1,300,06/24/19 07:06,"534 Park St, Boston, MA 02215" +213306,AA Batteries (4-pack),1,3.84,06/27/19 00:40,"13 8th St, Los Angeles, CA 90001" +213307,Macbook Pro Laptop,1,1700,06/06/19 22:01,"793 River St, Atlanta, GA 30301" +213308,ThinkPad Laptop,1,999.99,06/05/19 23:28,"527 10th St, San Francisco, CA 94016" +213309,Bose SoundSport Headphones,1,99.99,06/18/19 19:10,"590 6th St, Boston, MA 02215" +213310,Google Phone,1,600,06/10/19 16:12,"735 12th St, New York City, NY 10001" +213311,Macbook Pro Laptop,1,1700,06/21/19 13:33,"109 Hill St, San Francisco, CA 94016" +213312,Bose SoundSport Headphones,1,99.99,06/19/19 18:23,"137 Cedar St, San Francisco, CA 94016" +213312,AA Batteries (4-pack),1,3.84,06/19/19 18:23,"137 Cedar St, San Francisco, CA 94016" +213313,ThinkPad Laptop,1,999.99,06/30/19 02:58,"275 2nd St, Boston, MA 02215" +213314,USB-C Charging Cable,1,11.95,06/24/19 13:54,"876 Cedar St, New York City, NY 10001" +213315,Apple Airpods Headphones,1,150,06/03/19 06:54,"933 Cherry St, Seattle, WA 98101" +213316,Vareebadd Phone,1,400,06/11/19 17:39,"888 8th St, Austin, TX 73301" +213317,AAA Batteries (4-pack),1,2.99,06/13/19 16:09,"500 Jackson St, Boston, MA 02215" +213318,Bose SoundSport Headphones,1,99.99,06/11/19 19:02,"299 Hill St, Atlanta, GA 30301" +213319,Bose SoundSport Headphones,1,99.99,06/23/19 22:05,"221 Church St, Austin, TX 73301" +213320,USB-C Charging Cable,1,11.95,06/07/19 11:41,"921 West St, Portland, OR 97035" +213321,Wired Headphones,1,11.99,06/20/19 22:53,"125 11th St, San Francisco, CA 94016" +213322,Apple Airpods Headphones,1,150,06/25/19 12:28,"24 Johnson St, Portland, ME 04101" +213323,Lightning Charging Cable,1,14.95,06/26/19 03:32,"799 13th St, Seattle, WA 98101" +213324,Lightning Charging Cable,1,14.95,06/01/19 13:09,"601 Walnut St, Dallas, TX 75001" +213325,USB-C Charging Cable,1,11.95,06/06/19 23:47,"596 South St, Atlanta, GA 30301" +213326,Macbook Pro Laptop,1,1700,06/29/19 21:05,"289 Cedar St, San Francisco, CA 94016" +213327,AA Batteries (4-pack),1,3.84,06/18/19 20:07,"290 Forest St, Los Angeles, CA 90001" +213328,27in FHD Monitor,1,149.99,06/10/19 18:10,"280 West St, Boston, MA 02215" +213329,Lightning Charging Cable,1,14.95,06/10/19 21:41,"26 Lincoln St, Seattle, WA 98101" +213330,USB-C Charging Cable,1,11.95,06/08/19 17:18,"482 Willow St, Boston, MA 02215" +213331,Lightning Charging Cable,1,14.95,06/15/19 13:53,"802 Dogwood St, Seattle, WA 98101" +213332,AA Batteries (4-pack),2,3.84,06/29/19 17:40,"881 Madison St, Los Angeles, CA 90001" +213333,27in FHD Monitor,1,149.99,06/09/19 20:04,"772 Park St, Seattle, WA 98101" +213334,Apple Airpods Headphones,1,150,06/24/19 10:11,"624 Chestnut St, Seattle, WA 98101" +213335,Apple Airpods Headphones,1,150,06/02/19 16:12,"147 Wilson St, San Francisco, CA 94016" +213336,ThinkPad Laptop,1,999.99,06/01/19 13:35,"636 9th St, San Francisco, CA 94016" +213337,ThinkPad Laptop,1,999.99,06/15/19 08:37,"570 Cherry St, Atlanta, GA 30301" +213338,27in FHD Monitor,1,149.99,06/10/19 13:45,"401 Lake St, Portland, OR 97035" +213339,AA Batteries (4-pack),2,3.84,06/16/19 16:48,"721 Spruce St, San Francisco, CA 94016" +213340,Lightning Charging Cable,1,14.95,06/28/19 20:15,"287 Chestnut St, San Francisco, CA 94016" +213341,Apple Airpods Headphones,1,150,06/13/19 20:42,"876 North St, San Francisco, CA 94016" +213342,20in Monitor,1,109.99,06/01/19 13:24,"385 8th St, Portland, OR 97035" +213343,27in FHD Monitor,1,149.99,06/11/19 20:09,"151 Cherry St, Portland, OR 97035" +213344,Apple Airpods Headphones,1,150,06/11/19 16:38,"638 South St, Seattle, WA 98101" +213344,27in 4K Gaming Monitor,1,389.99,06/11/19 16:38,"638 South St, Seattle, WA 98101" +213345,Bose SoundSport Headphones,1,99.99,06/18/19 19:13,"55 Chestnut St, Boston, MA 02215" +213346,Wired Headphones,2,11.99,06/28/19 16:07,"846 Wilson St, Dallas, TX 75001" +213347,Lightning Charging Cable,1,14.95,06/15/19 15:07,"608 Sunset St, Seattle, WA 98101" +213348,Wired Headphones,1,11.99,06/02/19 12:43,"91 Meadow St, Seattle, WA 98101" +213349,USB-C Charging Cable,1,11.95,06/06/19 12:43,"847 Jackson St, San Francisco, CA 94016" +213350,Wired Headphones,1,11.99,06/16/19 16:52,"947 7th St, Portland, OR 97035" +213351,Wired Headphones,1,11.99,06/13/19 21:50,"202 11th St, Austin, TX 73301" +213352,Apple Airpods Headphones,1,150,06/14/19 17:32,"927 Forest St, Seattle, WA 98101" +213353,AA Batteries (4-pack),1,3.84,06/07/19 13:05,"398 Adams St, San Francisco, CA 94016" +213354,AA Batteries (4-pack),1,3.84,06/25/19 23:58,"42 10th St, San Francisco, CA 94016" +213355,Lightning Charging Cable,2,14.95,06/17/19 00:01,"175 Main St, Dallas, TX 75001" +213356,USB-C Charging Cable,1,11.95,06/01/19 09:44,"116 Spruce St, New York City, NY 10001" +213357,Google Phone,1,600,06/20/19 12:30,"686 13th St, New York City, NY 10001" +213357,Wired Headphones,2,11.99,06/20/19 12:30,"686 13th St, New York City, NY 10001" +213358,AA Batteries (4-pack),1,3.84,06/18/19 08:38,"508 Forest St, Los Angeles, CA 90001" +213359,USB-C Charging Cable,2,11.95,06/25/19 00:55,"522 Cherry St, Boston, MA 02215" +213360,USB-C Charging Cable,1,11.95,06/11/19 15:51,"865 9th St, San Francisco, CA 94016" +213361,USB-C Charging Cable,1,11.95,06/01/19 19:51,"632 Pine St, New York City, NY 10001" +213362,AAA Batteries (4-pack),2,2.99,06/24/19 10:43,"924 Hill St, Boston, MA 02215" +213363,Flatscreen TV,1,300,06/18/19 21:25,"994 Sunset St, Los Angeles, CA 90001" +213364,Bose SoundSport Headphones,1,99.99,06/12/19 09:04,"67 West St, New York City, NY 10001" +213365,27in 4K Gaming Monitor,1,389.99,06/20/19 10:44,"621 Lakeview St, New York City, NY 10001" +213366,USB-C Charging Cable,1,11.95,06/23/19 16:57,"858 Ridge St, San Francisco, CA 94016" +213367,Lightning Charging Cable,1,14.95,06/27/19 16:58,"827 Madison St, San Francisco, CA 94016" +213368,AA Batteries (4-pack),1,3.84,06/14/19 15:05,"322 West St, San Francisco, CA 94016" +213369,20in Monitor,1,109.99,06/03/19 18:34,"710 13th St, Atlanta, GA 30301" +213370,AAA Batteries (4-pack),1,2.99,06/25/19 11:40,"497 Maple St, Los Angeles, CA 90001" +213371,AAA Batteries (4-pack),2,2.99,06/14/19 11:38,"676 Madison St, Boston, MA 02215" +213372,AA Batteries (4-pack),1,3.84,06/12/19 14:28,"405 14th St, New York City, NY 10001" +213373,34in Ultrawide Monitor,1,379.99,06/14/19 19:51,"293 Center St, San Francisco, CA 94016" +213374,Wired Headphones,1,11.99,06/27/19 19:48,"421 10th St, Boston, MA 02215" +213375,Google Phone,1,600,06/14/19 14:52,"98 Sunset St, New York City, NY 10001" +213376,Wired Headphones,1,11.99,06/05/19 00:04,"340 7th St, San Francisco, CA 94016" +213377,AAA Batteries (4-pack),2,2.99,06/05/19 22:25,"601 Spruce St, Austin, TX 73301" +213377,USB-C Charging Cable,1,11.95,06/05/19 22:25,"601 Spruce St, Austin, TX 73301" +213378,Flatscreen TV,1,300,06/29/19 20:07,"167 Sunset St, New York City, NY 10001" +213379,AA Batteries (4-pack),1,3.84,06/17/19 20:13,"755 Ridge St, Dallas, TX 75001" +213380,Bose SoundSport Headphones,1,99.99,06/21/19 21:57,"620 Wilson St, Dallas, TX 75001" +213381,AA Batteries (4-pack),1,3.84,06/13/19 07:13,"188 Johnson St, San Francisco, CA 94016" +213382,AAA Batteries (4-pack),2,2.99,06/27/19 11:50,"813 Madison St, New York City, NY 10001" +213383,Google Phone,1,600,06/09/19 09:24,"957 Adams St, Dallas, TX 75001" +213384,USB-C Charging Cable,1,11.95,06/22/19 10:38,"277 Park St, Boston, MA 02215" +213385,USB-C Charging Cable,1,11.95,06/05/19 18:13,"238 7th St, Portland, OR 97035" +213386,AAA Batteries (4-pack),1,2.99,06/09/19 11:01,"116 Hill St, Boston, MA 02215" +213387,AAA Batteries (4-pack),1,2.99,06/12/19 15:17,"673 9th St, San Francisco, CA 94016" +213388,Flatscreen TV,1,300,06/14/19 10:46,"323 Lakeview St, Los Angeles, CA 90001" +213389,Lightning Charging Cable,1,14.95,06/30/19 09:06,"390 Highland St, Austin, TX 73301" +213390,Google Phone,1,600,06/30/19 21:26,"16 Cedar St, Seattle, WA 98101" +213391,Wired Headphones,1,11.99,06/09/19 23:38,"15 4th St, Atlanta, GA 30301" +213392,Lightning Charging Cable,1,14.95,06/30/19 11:47,"81 1st St, San Francisco, CA 94016" +213393,27in FHD Monitor,1,149.99,06/16/19 14:40,"654 5th St, New York City, NY 10001" +213394,Apple Airpods Headphones,1,150,06/23/19 20:03,"297 7th St, Boston, MA 02215" +213395,AAA Batteries (4-pack),1,2.99,06/02/19 19:48,"917 Church St, Los Angeles, CA 90001" +213396,Macbook Pro Laptop,1,1700,06/02/19 14:56,"316 Church St, San Francisco, CA 94016" +213397,Lightning Charging Cable,1,14.95,06/16/19 18:45,"297 13th St, Boston, MA 02215" +213398,Lightning Charging Cable,1,14.95,06/27/19 08:35,"330 8th St, Dallas, TX 75001" +213399,Google Phone,1,600,06/15/19 19:34,"891 Cherry St, San Francisco, CA 94016" +213399,Bose SoundSport Headphones,1,99.99,06/15/19 19:34,"891 Cherry St, San Francisco, CA 94016" +213400,34in Ultrawide Monitor,1,379.99,06/06/19 13:17,"96 Spruce St, Dallas, TX 75001" +213401,AAA Batteries (4-pack),1,2.99,06/30/19 14:29,"585 13th St, New York City, NY 10001" +213402,Bose SoundSport Headphones,1,99.99,06/11/19 20:30,"168 Jackson St, Portland, OR 97035" +213403,AA Batteries (4-pack),1,3.84,06/02/19 09:40,"272 Wilson St, Los Angeles, CA 90001" +213404,27in FHD Monitor,1,149.99,06/18/19 13:03,"725 Dogwood St, Los Angeles, CA 90001" +213405,Wired Headphones,1,11.99,06/30/19 23:54,"625 South St, San Francisco, CA 94016" +213406,Lightning Charging Cable,2,14.95,06/23/19 14:59,"317 Chestnut St, Los Angeles, CA 90001" +213407,iPhone,1,700,06/21/19 10:44,"855 Maple St, New York City, NY 10001" +213408,iPhone,1,700,06/18/19 11:49,"751 Adams St, Boston, MA 02215" +213409,Bose SoundSport Headphones,1,99.99,06/14/19 19:08,"873 Highland St, Dallas, TX 75001" +213410,iPhone,1,700,06/19/19 20:13,"636 Chestnut St, San Francisco, CA 94016" +213411,Apple Airpods Headphones,1,150,06/10/19 12:12,"367 Cedar St, San Francisco, CA 94016" +213412,34in Ultrawide Monitor,1,379.99,06/30/19 11:08,"104 Spruce St, Los Angeles, CA 90001" +213413,Macbook Pro Laptop,1,1700,06/12/19 08:29,"811 14th St, Seattle, WA 98101" +213414,Bose SoundSport Headphones,1,99.99,06/12/19 18:34,"212 10th St, San Francisco, CA 94016" +213415,AA Batteries (4-pack),2,3.84,06/24/19 13:00,"693 Madison St, Los Angeles, CA 90001" +213416,Bose SoundSport Headphones,1,99.99,06/29/19 19:49,"582 Hill St, Dallas, TX 75001" +213417,USB-C Charging Cable,1,11.95,06/05/19 17:55,"952 Pine St, San Francisco, CA 94016" +213418,USB-C Charging Cable,1,11.95,06/23/19 11:57,"335 Cherry St, Seattle, WA 98101" +213419,Vareebadd Phone,1,400,06/16/19 13:57,"781 Church St, Seattle, WA 98101" +213420,27in FHD Monitor,1,149.99,06/21/19 20:39,"863 Meadow St, Dallas, TX 75001" +213421,Apple Airpods Headphones,1,150,06/08/19 15:40,"253 Willow St, New York City, NY 10001" +213422,Lightning Charging Cable,2,14.95,06/02/19 17:00,"835 Washington St, San Francisco, CA 94016" +213423,ThinkPad Laptop,1,999.99,06/10/19 12:25,"736 South St, Los Angeles, CA 90001" +213424,20in Monitor,1,109.99,06/03/19 19:46,"845 Ridge St, Austin, TX 73301" +213425,AAA Batteries (4-pack),1,2.99,06/10/19 21:36,"950 7th St, Atlanta, GA 30301" +213426,AA Batteries (4-pack),1,3.84,06/17/19 17:31,"73 1st St, Atlanta, GA 30301" +213427,Lightning Charging Cable,2,14.95,06/23/19 11:33,"309 Jackson St, Boston, MA 02215" +213428,Lightning Charging Cable,1,14.95,06/02/19 21:32,"357 4th St, Los Angeles, CA 90001" +213429,Apple Airpods Headphones,1,150,06/16/19 14:59,"195 4th St, Boston, MA 02215" +213430,27in 4K Gaming Monitor,1,389.99,06/01/19 10:25,"55 Center St, Atlanta, GA 30301" +213431,27in FHD Monitor,1,149.99,06/09/19 12:58,"166 Main St, Los Angeles, CA 90001" +213432,Apple Airpods Headphones,1,150,06/05/19 18:59,"873 9th St, Los Angeles, CA 90001" +213433,20in Monitor,1,109.99,06/10/19 10:49,"651 Highland St, Seattle, WA 98101" +213434,USB-C Charging Cable,2,11.95,06/04/19 18:01,"927 Lincoln St, New York City, NY 10001" +213435,AA Batteries (4-pack),1,3.84,06/12/19 15:14,"542 Forest St, San Francisco, CA 94016" +213436,Bose SoundSport Headphones,1,99.99,06/16/19 20:40,"657 West St, Boston, MA 02215" +213437,Lightning Charging Cable,1,14.95,06/28/19 21:07,"356 10th St, Los Angeles, CA 90001" +213437,iPhone,1,700,06/28/19 21:07,"356 10th St, Los Angeles, CA 90001" +213438,Wired Headphones,2,11.99,06/29/19 20:06,"456 West St, New York City, NY 10001" +213439,Wired Headphones,1,11.99,06/10/19 12:44,"378 6th St, San Francisco, CA 94016" +213440,20in Monitor,1,109.99,06/17/19 10:33,"632 Park St, Seattle, WA 98101" +213441,Lightning Charging Cable,1,14.95,06/21/19 03:24,"491 Dogwood St, New York City, NY 10001" +213442,Google Phone,1,600,06/20/19 22:17,"89 Main St, San Francisco, CA 94016" +213443,USB-C Charging Cable,1,11.95,06/24/19 14:20,"608 Wilson St, New York City, NY 10001" +213444,AAA Batteries (4-pack),1,2.99,06/28/19 22:04,"173 Church St, New York City, NY 10001" +213445,iPhone,1,700,06/07/19 11:59,"424 Spruce St, San Francisco, CA 94016" +213445,Lightning Charging Cable,1,14.95,06/07/19 11:59,"424 Spruce St, San Francisco, CA 94016" +213445,Apple Airpods Headphones,1,150,06/07/19 11:59,"424 Spruce St, San Francisco, CA 94016" +213446,Apple Airpods Headphones,1,150,06/20/19 15:18,"543 7th St, New York City, NY 10001" +213447,AAA Batteries (4-pack),3,2.99,06/04/19 17:06,"989 2nd St, Boston, MA 02215" +213448,iPhone,1,700,06/14/19 09:48,"46 7th St, Austin, TX 73301" +213449,AA Batteries (4-pack),1,3.84,06/26/19 14:14,"252 Park St, New York City, NY 10001" +213450,Vareebadd Phone,1,400,06/22/19 20:23,"402 6th St, Boston, MA 02215" +213451,Apple Airpods Headphones,1,150,06/05/19 07:33,"226 Maple St, Seattle, WA 98101" +213452,Apple Airpods Headphones,1,150,06/25/19 10:33,"581 Adams St, Dallas, TX 75001" +213453,AA Batteries (4-pack),1,3.84,06/17/19 21:30,"991 Cedar St, Seattle, WA 98101" +213453,Wired Headphones,1,11.99,06/17/19 21:30,"991 Cedar St, Seattle, WA 98101" +213454,Wired Headphones,1,11.99,06/16/19 11:20,"720 9th St, Los Angeles, CA 90001" +213455,AA Batteries (4-pack),1,3.84,06/12/19 14:09,"902 South St, San Francisco, CA 94016" +213456,Wired Headphones,1,11.99,06/25/19 14:20,"75 14th St, Seattle, WA 98101" +213457,AA Batteries (4-pack),1,3.84,06/12/19 10:13,"383 Chestnut St, Los Angeles, CA 90001" +213458,USB-C Charging Cable,1,11.95,06/11/19 18:14,"502 Adams St, Los Angeles, CA 90001" +213459,iPhone,1,700,06/22/19 14:11,"240 1st St, Los Angeles, CA 90001" +213460,USB-C Charging Cable,2,11.95,06/10/19 20:00,"767 7th St, Portland, OR 97035" +213461,Lightning Charging Cable,1,14.95,06/20/19 13:34,"122 Wilson St, New York City, NY 10001" +213462,USB-C Charging Cable,1,11.95,06/03/19 14:55,"777 River St, New York City, NY 10001" +213463,Apple Airpods Headphones,1,150,06/18/19 13:13,"523 West St, Atlanta, GA 30301" +213464,Wired Headphones,1,11.99,06/02/19 07:42,"823 Lake St, San Francisco, CA 94016" +213465,Bose SoundSport Headphones,1,99.99,06/21/19 18:44,"56 West St, Atlanta, GA 30301" +213466,ThinkPad Laptop,1,999.99,06/12/19 20:00,"873 14th St, San Francisco, CA 94016" +213467,Lightning Charging Cable,1,14.95,06/22/19 18:30,"833 Johnson St, New York City, NY 10001" +213468,USB-C Charging Cable,1,11.95,06/29/19 17:07,"656 Madison St, New York City, NY 10001" +213469,Wired Headphones,1,11.99,06/13/19 07:47,"696 Maple St, Austin, TX 73301" +213470,USB-C Charging Cable,1,11.95,06/27/19 20:31,"737 Chestnut St, Seattle, WA 98101" +213471,Apple Airpods Headphones,1,150,06/12/19 20:52,"209 6th St, San Francisco, CA 94016" +213472,ThinkPad Laptop,1,999.99,06/13/19 22:10,"599 Cedar St, Boston, MA 02215" +213473,AAA Batteries (4-pack),1,2.99,06/04/19 14:33,"446 Elm St, Los Angeles, CA 90001" +213474,USB-C Charging Cable,1,11.95,06/28/19 14:35,"123 Cedar St, Seattle, WA 98101" +213475,AAA Batteries (4-pack),2,2.99,06/20/19 18:30,"976 Jackson St, San Francisco, CA 94016" +213476,USB-C Charging Cable,1,11.95,06/18/19 23:14,"865 7th St, Dallas, TX 75001" +213477,AAA Batteries (4-pack),1,2.99,06/02/19 10:27,"173 1st St, San Francisco, CA 94016" +213478,Apple Airpods Headphones,1,150,06/05/19 17:58,"918 4th St, Los Angeles, CA 90001" +213479,USB-C Charging Cable,1,11.95,06/02/19 22:42,"547 7th St, Seattle, WA 98101" +213480,USB-C Charging Cable,1,11.95,06/17/19 18:44,"700 Pine St, San Francisco, CA 94016" +213481,Lightning Charging Cable,1,14.95,06/15/19 02:55,"406 Elm St, Austin, TX 73301" +213482,Apple Airpods Headphones,1,150,06/15/19 14:20,"804 Chestnut St, Los Angeles, CA 90001" +213483,Macbook Pro Laptop,1,1700,06/09/19 12:02,"48 Lakeview St, San Francisco, CA 94016" +213484,USB-C Charging Cable,1,11.95,06/29/19 14:34,"173 Adams St, New York City, NY 10001" +213485,AA Batteries (4-pack),2,3.84,06/23/19 20:23,"377 8th St, Los Angeles, CA 90001" +213486,27in FHD Monitor,1,149.99,06/26/19 01:25,"4 5th St, Atlanta, GA 30301" +213487,AAA Batteries (4-pack),2,2.99,06/27/19 00:35,"601 Dogwood St, San Francisco, CA 94016" +213488,ThinkPad Laptop,1,999.99,06/13/19 12:01,"586 Wilson St, Los Angeles, CA 90001" +213489,USB-C Charging Cable,1,11.95,06/14/19 17:56,"96 14th St, Portland, OR 97035" +213490,AAA Batteries (4-pack),1,2.99,06/15/19 18:32,"435 Meadow St, San Francisco, CA 94016" +213491,Lightning Charging Cable,2,14.95,06/19/19 14:17,"828 Highland St, San Francisco, CA 94016" +213492,Wired Headphones,1,11.99,06/16/19 22:30,"901 Highland St, New York City, NY 10001" +213493,Apple Airpods Headphones,1,150,06/10/19 13:59,"39 Dogwood St, New York City, NY 10001" +213494,iPhone,1,700,06/01/19 12:10,"663 Adams St, Portland, OR 97035" +213495,Flatscreen TV,1,300,06/28/19 10:08,"402 West St, Los Angeles, CA 90001" +213496,USB-C Charging Cable,1,11.95,06/08/19 19:30,"183 Hill St, Los Angeles, CA 90001" +213497,ThinkPad Laptop,1,999.99,06/03/19 11:59,"259 Lakeview St, Portland, OR 97035" +213498,AAA Batteries (4-pack),1,2.99,06/20/19 15:37,"558 5th St, New York City, NY 10001" +213499,Google Phone,1,600,06/06/19 21:16,"617 12th St, Portland, OR 97035" +213500,34in Ultrawide Monitor,1,379.99,06/05/19 13:14,"516 Maple St, San Francisco, CA 94016" +213501,Apple Airpods Headphones,1,150,06/14/19 12:24,"101 Lake St, Seattle, WA 98101" +213502,27in 4K Gaming Monitor,1,389.99,06/09/19 23:23,"511 2nd St, Seattle, WA 98101" +213503,Google Phone,1,600,06/20/19 14:55,"418 Main St, San Francisco, CA 94016" +213504,AA Batteries (4-pack),2,3.84,06/08/19 11:49,"444 10th St, New York City, NY 10001" +213505,USB-C Charging Cable,1,11.95,06/17/19 17:53,"830 Wilson St, Atlanta, GA 30301" +213506,iPhone,1,700,06/02/19 16:04,"849 Cherry St, Los Angeles, CA 90001" +213507,27in FHD Monitor,1,149.99,06/23/19 18:13,"478 Washington St, Portland, OR 97035" +213508,Apple Airpods Headphones,1,150,06/01/19 10:42,"346 5th St, Los Angeles, CA 90001" +213509,AAA Batteries (4-pack),1,2.99,06/03/19 18:57,"39 Meadow St, Boston, MA 02215" +213509,Bose SoundSport Headphones,1,99.99,06/03/19 18:57,"39 Meadow St, Boston, MA 02215" +213510,Apple Airpods Headphones,1,150,06/27/19 10:50,"147 Lincoln St, New York City, NY 10001" +213511,20in Monitor,1,109.99,06/25/19 13:44,"460 1st St, San Francisco, CA 94016" +213512,ThinkPad Laptop,1,999.99,06/30/19 18:12,"306 8th St, Dallas, TX 75001" +213513,ThinkPad Laptop,1,999.99,06/28/19 19:11,"826 Wilson St, Austin, TX 73301" +213514,34in Ultrawide Monitor,1,379.99,06/07/19 20:42,"183 Washington St, Boston, MA 02215" +213515,AA Batteries (4-pack),1,3.84,06/20/19 23:22,"762 8th St, San Francisco, CA 94016" +213516,AA Batteries (4-pack),1,3.84,06/22/19 20:32,"483 Madison St, Los Angeles, CA 90001" +213517,Apple Airpods Headphones,1,150,06/09/19 14:05,"360 Main St, Seattle, WA 98101" +213518,USB-C Charging Cable,1,11.95,06/03/19 09:07,"126 River St, New York City, NY 10001" +213519,Apple Airpods Headphones,1,150,06/23/19 16:45,"651 Chestnut St, San Francisco, CA 94016" +213520,Wired Headphones,1,11.99,06/12/19 13:00,"557 Meadow St, Seattle, WA 98101" +213521,Bose SoundSport Headphones,1,99.99,06/12/19 11:51,"115 Cedar St, San Francisco, CA 94016" +213522,Lightning Charging Cable,1,14.95,06/25/19 13:56,"210 Jackson St, San Francisco, CA 94016" +213523,Apple Airpods Headphones,1,150,06/09/19 06:51,"519 Forest St, Boston, MA 02215" +213524,Lightning Charging Cable,1,14.95,06/17/19 23:53,"63 10th St, San Francisco, CA 94016" +213525,Bose SoundSport Headphones,1,99.99,06/29/19 19:38,"269 7th St, Atlanta, GA 30301" +213526,Wired Headphones,1,11.99,06/26/19 23:49,"975 South St, Boston, MA 02215" +213527,Apple Airpods Headphones,1,150,06/26/19 13:04,"420 11th St, Portland, OR 97035" +213528,Apple Airpods Headphones,1,150,06/19/19 09:24,"746 8th St, Atlanta, GA 30301" +213529,Lightning Charging Cable,1,14.95,06/19/19 13:27,"774 Adams St, Los Angeles, CA 90001" +213530,AAA Batteries (4-pack),1,2.99,06/28/19 20:32,"427 Maple St, New York City, NY 10001" +213531,LG Dryer,1,600.0,06/08/19 08:57,"266 12th St, Austin, TX 73301" +213532,ThinkPad Laptop,1,999.99,06/02/19 23:32,"701 Walnut St, Dallas, TX 75001" +213533,Lightning Charging Cable,1,14.95,06/04/19 19:25,"413 Jefferson St, New York City, NY 10001" +213534,27in 4K Gaming Monitor,1,389.99,06/05/19 18:45,"820 Hill St, San Francisco, CA 94016" +213535,USB-C Charging Cable,1,11.95,06/27/19 19:04,"358 6th St, San Francisco, CA 94016" +213536,USB-C Charging Cable,1,11.95,06/29/19 19:15,"146 Jackson St, Atlanta, GA 30301" +213537,Wired Headphones,1,11.99,06/18/19 13:29,"369 5th St, Los Angeles, CA 90001" +213538,USB-C Charging Cable,1,11.95,06/15/19 08:31,"524 Spruce St, Dallas, TX 75001" +213539,Vareebadd Phone,1,400,06/15/19 00:49,"213 Forest St, Los Angeles, CA 90001" +213539,USB-C Charging Cable,1,11.95,06/15/19 00:49,"213 Forest St, Los Angeles, CA 90001" +213540,Wired Headphones,1,11.99,06/20/19 20:00,"40 2nd St, Boston, MA 02215" +213541,AA Batteries (4-pack),1,3.84,06/13/19 20:37,"465 Johnson St, Portland, OR 97035" +213542,Lightning Charging Cable,1,14.95,06/30/19 19:51,"596 River St, Austin, TX 73301" +213543,ThinkPad Laptop,1,999.99,06/30/19 13:31,"813 Jefferson St, San Francisco, CA 94016" +213544,Lightning Charging Cable,1,14.95,06/15/19 08:36,"582 11th St, Dallas, TX 75001" +213545,20in Monitor,1,109.99,06/04/19 00:13,"571 Cherry St, San Francisco, CA 94016" +213546,Bose SoundSport Headphones,1,99.99,06/11/19 10:39,"99 Highland St, Portland, OR 97035" +213547,Wired Headphones,1,11.99,06/20/19 15:22,"318 Lincoln St, Boston, MA 02215" +213548,AAA Batteries (4-pack),3,2.99,06/04/19 18:16,"180 Maple St, Portland, OR 97035" +213549,Vareebadd Phone,1,400,06/05/19 17:32,"841 Jefferson St, Los Angeles, CA 90001" +213550,Apple Airpods Headphones,1,150,06/08/19 16:00,"103 Center St, Dallas, TX 75001" +213551,20in Monitor,1,109.99,06/22/19 21:47,"88 Adams St, San Francisco, CA 94016" +213552,27in 4K Gaming Monitor,1,389.99,06/08/19 20:56,"163 Hill St, New York City, NY 10001" +213553,AA Batteries (4-pack),1,3.84,06/15/19 16:33,"498 Cherry St, Portland, ME 04101" +213554,Lightning Charging Cable,1,14.95,06/03/19 14:51,"236 14th St, Atlanta, GA 30301" +213555,Lightning Charging Cable,1,14.95,06/21/19 17:45,"714 Chestnut St, Los Angeles, CA 90001" +213556,Lightning Charging Cable,1,14.95,06/15/19 13:18,"21 1st St, Los Angeles, CA 90001" +213557,Macbook Pro Laptop,1,1700,06/23/19 19:10,"216 Maple St, Portland, ME 04101" +213558,Flatscreen TV,1,300,06/12/19 18:36,"49 Hickory St, New York City, NY 10001" +213559,USB-C Charging Cable,1,11.95,06/21/19 16:36,"290 Park St, Boston, MA 02215" +213560,34in Ultrawide Monitor,1,379.99,06/21/19 14:02,"567 Wilson St, New York City, NY 10001" +213561,ThinkPad Laptop,1,999.99,06/12/19 22:59,"553 11th St, Los Angeles, CA 90001" +213562,34in Ultrawide Monitor,1,379.99,06/17/19 18:57,"273 Willow St, San Francisco, CA 94016" +213563,Wired Headphones,1,11.99,06/22/19 22:55,"864 13th St, Portland, OR 97035" +213564,Apple Airpods Headphones,1,150,06/20/19 09:15,"312 2nd St, Seattle, WA 98101" +213565,iPhone,1,700,06/17/19 08:46,"741 Walnut St, San Francisco, CA 94016" +213566,USB-C Charging Cable,1,11.95,06/24/19 15:59,"935 South St, New York City, NY 10001" +213567,27in FHD Monitor,1,149.99,06/06/19 14:15,"659 12th St, Austin, TX 73301" +213568,Bose SoundSport Headphones,1,99.99,06/07/19 17:41,"892 Walnut St, Los Angeles, CA 90001" +213569,USB-C Charging Cable,1,11.95,06/07/19 15:22,"857 Main St, New York City, NY 10001" +213570,27in FHD Monitor,1,149.99,06/27/19 18:19,"426 Walnut St, Seattle, WA 98101" +213571,ThinkPad Laptop,1,999.99,06/14/19 21:59,"69 14th St, Austin, TX 73301" +213572,Apple Airpods Headphones,1,150,06/16/19 19:37,"612 Hill St, Austin, TX 73301" +213573,AA Batteries (4-pack),1,3.84,06/18/19 22:36,"629 10th St, San Francisco, CA 94016" +213574,USB-C Charging Cable,1,11.95,06/11/19 19:00,"797 11th St, Dallas, TX 75001" +213575,AAA Batteries (4-pack),1,2.99,06/05/19 14:15,"94 Cherry St, Boston, MA 02215" +213576,Macbook Pro Laptop,1,1700,06/22/19 20:01,"510 11th St, Boston, MA 02215" +213577,34in Ultrawide Monitor,1,379.99,06/02/19 16:23,"226 10th St, New York City, NY 10001" +213578,Bose SoundSport Headphones,1,99.99,06/11/19 13:57,"450 11th St, New York City, NY 10001" +213579,Apple Airpods Headphones,1,150,06/26/19 08:40,"249 Lakeview St, Boston, MA 02215" +213580,USB-C Charging Cable,1,11.95,06/16/19 17:04,"978 Church St, San Francisco, CA 94016" +213581,USB-C Charging Cable,2,11.95,06/17/19 15:13,"623 5th St, San Francisco, CA 94016" +213582,Wired Headphones,1,11.99,06/16/19 20:51,"482 8th St, Atlanta, GA 30301" +213583,20in Monitor,1,109.99,06/05/19 11:04,"995 6th St, San Francisco, CA 94016" +213584,USB-C Charging Cable,1,11.95,06/24/19 08:12,"393 Jefferson St, Los Angeles, CA 90001" +213585,Google Phone,1,600,06/14/19 18:53,"990 North St, Los Angeles, CA 90001" +213586,Wired Headphones,1,11.99,06/16/19 17:37,"489 Hill St, Boston, MA 02215" +213587,USB-C Charging Cable,1,11.95,06/04/19 15:02,"61 Elm St, Portland, OR 97035" +213588,AAA Batteries (4-pack),1,2.99,06/08/19 18:53,"305 Hickory St, Los Angeles, CA 90001" +213589,Google Phone,1,600,06/26/19 19:07,"440 9th St, Seattle, WA 98101" +213589,USB-C Charging Cable,1,11.95,06/26/19 19:07,"440 9th St, Seattle, WA 98101" +213589,Wired Headphones,1,11.99,06/26/19 19:07,"440 9th St, Seattle, WA 98101" +213590,Bose SoundSport Headphones,1,99.99,06/28/19 00:01,"585 Lakeview St, Atlanta, GA 30301" +213591,Apple Airpods Headphones,1,150,06/25/19 12:02,"359 South St, Los Angeles, CA 90001" +213592,iPhone,1,700,06/24/19 19:58,"310 Hickory St, San Francisco, CA 94016" +213593,USB-C Charging Cable,3,11.95,06/04/19 04:35,"14 Church St, Boston, MA 02215" +213594,USB-C Charging Cable,1,11.95,06/24/19 18:18,"110 Highland St, San Francisco, CA 94016" +213595,Lightning Charging Cable,1,14.95,06/28/19 19:12,"2 Johnson St, New York City, NY 10001" +213596,Lightning Charging Cable,1,14.95,06/20/19 22:05,"405 Chestnut St, Atlanta, GA 30301" +213597,Bose SoundSport Headphones,1,99.99,06/03/19 16:03,"661 14th St, Dallas, TX 75001" +213598,Wired Headphones,1,11.99,06/19/19 19:48,"83 Cherry St, Dallas, TX 75001" +213599,Wired Headphones,1,11.99,06/03/19 23:21,"639 Madison St, Austin, TX 73301" +213600,AAA Batteries (4-pack),1,2.99,06/23/19 20:45,"586 Wilson St, Los Angeles, CA 90001" +213601,Lightning Charging Cable,1,14.95,06/21/19 19:12,"36 Wilson St, Seattle, WA 98101" +213602,Lightning Charging Cable,1,14.95,06/22/19 09:18,"824 2nd St, Los Angeles, CA 90001" +213603,iPhone,1,700,06/25/19 23:03,"816 Sunset St, Los Angeles, CA 90001" +213604,iPhone,1,700,06/01/19 10:37,"213 Walnut St, Portland, OR 97035" +213605,Apple Airpods Headphones,1,150,06/23/19 22:59,"648 9th St, Austin, TX 73301" +213606,USB-C Charging Cable,1,11.95,06/25/19 09:47,"280 7th St, Atlanta, GA 30301" +213607,34in Ultrawide Monitor,1,379.99,06/11/19 12:04,"188 Cedar St, Dallas, TX 75001" +213608,Lightning Charging Cable,1,14.95,06/22/19 19:35,"126 Chestnut St, Portland, OR 97035" +213609,Bose SoundSport Headphones,1,99.99,06/10/19 21:40,"319 4th St, New York City, NY 10001" +213610,AAA Batteries (4-pack),1,2.99,06/10/19 23:28,"931 5th St, Portland, OR 97035" +213611,USB-C Charging Cable,1,11.95,06/06/19 09:34,"77 Adams St, Dallas, TX 75001" +213612,USB-C Charging Cable,1,11.95,06/07/19 18:36,"676 4th St, Dallas, TX 75001" +213613,ThinkPad Laptop,1,999.99,06/15/19 20:13,"989 Highland St, Los Angeles, CA 90001" +213614,Lightning Charging Cable,1,14.95,06/14/19 09:09,"590 7th St, Portland, OR 97035" +213615,Bose SoundSport Headphones,1,99.99,06/30/19 20:13,"41 Forest St, Boston, MA 02215" +213616,Apple Airpods Headphones,1,150,06/16/19 12:35,"597 North St, San Francisco, CA 94016" +213617,USB-C Charging Cable,1,11.95,06/21/19 09:43,"698 Cedar St, Boston, MA 02215" +213618,27in 4K Gaming Monitor,1,389.99,06/16/19 11:34,"317 Willow St, New York City, NY 10001" +213619,AA Batteries (4-pack),1,3.84,06/25/19 18:39,"137 Chestnut St, Atlanta, GA 30301" +213620,AA Batteries (4-pack),3,3.84,06/21/19 19:05,"702 Jackson St, New York City, NY 10001" +213621,Google Phone,1,600,06/21/19 08:49,"265 Park St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +213622,Lightning Charging Cable,1,14.95,06/12/19 18:27,"255 Adams St, Dallas, TX 75001" +213623,USB-C Charging Cable,1,11.95,06/16/19 12:54,"827 Church St, Portland, OR 97035" +213624,Wired Headphones,1,11.99,06/29/19 13:18,"270 Hickory St, Los Angeles, CA 90001" +213625,Lightning Charging Cable,1,14.95,06/02/19 19:14,"194 Hickory St, Dallas, TX 75001" +213626,Wired Headphones,1,11.99,06/17/19 19:44,"825 Johnson St, Atlanta, GA 30301" +213627,Bose SoundSport Headphones,1,99.99,06/02/19 11:28,"982 Park St, Seattle, WA 98101" +213628,AA Batteries (4-pack),1,3.84,06/13/19 04:41,"423 Wilson St, Boston, MA 02215" +213629,AA Batteries (4-pack),1,3.84,06/30/19 10:48,"867 Spruce St, Boston, MA 02215" +213630,USB-C Charging Cable,1,11.95,06/22/19 11:40,"208 Meadow St, Portland, OR 97035" +213631,AA Batteries (4-pack),1,3.84,06/30/19 21:00,"843 5th St, Boston, MA 02215" +213632,Bose SoundSport Headphones,1,99.99,06/17/19 17:52,"659 Chestnut St, Seattle, WA 98101" +213633,Lightning Charging Cable,1,14.95,06/06/19 16:35,"721 2nd St, San Francisco, CA 94016" +213634,Flatscreen TV,1,300,06/13/19 09:29,"902 West St, San Francisco, CA 94016" +213635,AA Batteries (4-pack),1,3.84,06/10/19 17:56,"768 River St, New York City, NY 10001" +213636,27in 4K Gaming Monitor,1,389.99,06/19/19 17:53,"24 Cherry St, Los Angeles, CA 90001" +213637,AA Batteries (4-pack),1,3.84,06/01/19 23:56,"369 Lakeview St, San Francisco, CA 94016" +213638,27in 4K Gaming Monitor,1,389.99,06/09/19 18:38,"332 Maple St, Los Angeles, CA 90001" +213639,Lightning Charging Cable,1,14.95,06/17/19 18:03,"591 Chestnut St, San Francisco, CA 94016" +213640,Apple Airpods Headphones,1,150,06/09/19 09:10,"312 Jefferson St, New York City, NY 10001" +213641,AAA Batteries (4-pack),1,2.99,06/08/19 22:55,"649 8th St, Austin, TX 73301" +213642,ThinkPad Laptop,1,999.99,06/09/19 10:12,"816 Maple St, Seattle, WA 98101" +213643,27in 4K Gaming Monitor,1,389.99,06/01/19 12:24,"977 Dogwood St, Los Angeles, CA 90001" +213644,Lightning Charging Cable,1,14.95,06/30/19 09:58,"767 2nd St, Dallas, TX 75001" +213645,USB-C Charging Cable,1,11.95,06/15/19 18:36,"103 Cedar St, Seattle, WA 98101" +213646,AAA Batteries (4-pack),1,2.99,06/24/19 22:59,"571 11th St, San Francisco, CA 94016" +213647,Wired Headphones,1,11.99,06/15/19 21:44,"947 Park St, Los Angeles, CA 90001" +213648,ThinkPad Laptop,1,999.99,06/20/19 10:00,"606 Lincoln St, San Francisco, CA 94016" +213649,AA Batteries (4-pack),1,3.84,06/18/19 18:44,"489 Sunset St, New York City, NY 10001" +213650,iPhone,1,700,06/05/19 10:14,"459 South St, Los Angeles, CA 90001" +213651,20in Monitor,1,109.99,06/01/19 16:07,"208 8th St, San Francisco, CA 94016" +213652,Bose SoundSport Headphones,1,99.99,06/19/19 00:43,"168 9th St, Portland, OR 97035" +213653,AAA Batteries (4-pack),1,2.99,06/03/19 22:11,"103 Main St, Seattle, WA 98101" +213654,ThinkPad Laptop,1,999.99,06/19/19 19:20,"395 Wilson St, New York City, NY 10001" +213655,Apple Airpods Headphones,1,150,06/12/19 12:20,"609 13th St, Seattle, WA 98101" +213656,27in FHD Monitor,1,149.99,06/10/19 10:08,"211 North St, Seattle, WA 98101" +213657,Google Phone,1,600,06/04/19 10:28,"918 Willow St, Los Angeles, CA 90001" +213658,Lightning Charging Cable,1,14.95,06/08/19 17:50,"769 Ridge St, Los Angeles, CA 90001" +213659,AAA Batteries (4-pack),1,2.99,06/19/19 18:22,"882 North St, Dallas, TX 75001" +213660,ThinkPad Laptop,1,999.99,06/12/19 08:17,"404 6th St, San Francisco, CA 94016" +213661,AA Batteries (4-pack),1,3.84,06/20/19 15:47,"560 Main St, Portland, OR 97035" +213662,Google Phone,1,600,06/28/19 19:38,"925 Meadow St, San Francisco, CA 94016" +213663,USB-C Charging Cable,1,11.95,06/04/19 12:35,"541 Park St, Los Angeles, CA 90001" +213664,Wired Headphones,1,11.99,06/05/19 06:01,"785 West St, Atlanta, GA 30301" +213665,USB-C Charging Cable,1,11.95,06/10/19 13:59,"360 Main St, Los Angeles, CA 90001" +213666,iPhone,1,700,06/05/19 19:14,"61 14th St, Seattle, WA 98101" +213666,Lightning Charging Cable,1,14.95,06/05/19 19:14,"61 14th St, Seattle, WA 98101" +213667,Lightning Charging Cable,1,14.95,06/23/19 09:35,"894 13th St, Dallas, TX 75001" +213668,Apple Airpods Headphones,1,150,06/20/19 11:56,"347 Johnson St, Austin, TX 73301" +213669,Apple Airpods Headphones,1,150,06/17/19 19:56,"108 Dogwood St, Atlanta, GA 30301" +213670,27in 4K Gaming Monitor,1,389.99,06/07/19 08:32,"301 Johnson St, San Francisco, CA 94016" +213671,ThinkPad Laptop,1,999.99,06/26/19 10:23,"193 North St, Boston, MA 02215" +213672,27in FHD Monitor,1,149.99,06/17/19 14:16,"118 14th St, San Francisco, CA 94016" +213673,Wired Headphones,1,11.99,06/08/19 19:31,"474 1st St, San Francisco, CA 94016" +213674,AA Batteries (4-pack),1,3.84,06/07/19 07:22,"403 6th St, Los Angeles, CA 90001" +213675,Wired Headphones,1,11.99,06/12/19 13:12,"427 River St, Atlanta, GA 30301" +213676,USB-C Charging Cable,1,11.95,06/28/19 17:43,"212 10th St, New York City, NY 10001" +213677,AAA Batteries (4-pack),4,2.99,06/17/19 08:27,"180 4th St, New York City, NY 10001" +213678,USB-C Charging Cable,1,11.95,06/08/19 21:29,"47 1st St, Seattle, WA 98101" +213679,Wired Headphones,1,11.99,06/11/19 09:01,"477 Pine St, Dallas, TX 75001" +213679,AA Batteries (4-pack),1,3.84,06/11/19 09:01,"477 Pine St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +213680,27in FHD Monitor,1,149.99,06/18/19 23:29,"811 Forest St, New York City, NY 10001" +213681,Wired Headphones,1,11.99,06/27/19 18:33,"73 Highland St, Seattle, WA 98101" +213682,USB-C Charging Cable,1,11.95,06/22/19 19:34,"801 2nd St, Los Angeles, CA 90001" +213683,Macbook Pro Laptop,1,1700,06/16/19 20:21,"183 2nd St, Dallas, TX 75001" +213684,USB-C Charging Cable,1,11.95,06/02/19 19:25,"769 Forest St, Los Angeles, CA 90001" +213685,iPhone,1,700,06/14/19 10:53,"127 Center St, San Francisco, CA 94016" +213686,34in Ultrawide Monitor,1,379.99,06/15/19 14:47,"297 South St, Austin, TX 73301" +213687,AA Batteries (4-pack),1,3.84,06/06/19 22:52,"18 Madison St, Boston, MA 02215" +213688,AAA Batteries (4-pack),1,2.99,06/25/19 16:50,"347 Lakeview St, San Francisco, CA 94016" +213689,Wired Headphones,1,11.99,06/16/19 13:13,"646 7th St, Seattle, WA 98101" +213690,34in Ultrawide Monitor,1,379.99,06/18/19 00:55,"144 Jackson St, Seattle, WA 98101" +213690,Apple Airpods Headphones,1,150,06/18/19 00:55,"144 Jackson St, Seattle, WA 98101" +213691,Lightning Charging Cable,1,14.95,06/11/19 10:33,"36 Lincoln St, Dallas, TX 75001" +213692,Bose SoundSport Headphones,1,99.99,06/19/19 09:42,"836 Spruce St, Seattle, WA 98101" +213693,Lightning Charging Cable,1,14.95,06/19/19 17:24,"115 Center St, Dallas, TX 75001" +213694,Flatscreen TV,1,300,06/27/19 20:11,"872 Jefferson St, Atlanta, GA 30301" +213695,AAA Batteries (4-pack),2,2.99,06/14/19 03:17,"202 9th St, Boston, MA 02215" +213696,Lightning Charging Cable,2,14.95,06/01/19 13:29,"626 Chestnut St, San Francisco, CA 94016" +213697,Flatscreen TV,1,300,06/19/19 12:27,"992 Lake St, Portland, OR 97035" +213698,AA Batteries (4-pack),1,3.84,06/13/19 14:35,"148 6th St, Los Angeles, CA 90001" +213699,Lightning Charging Cable,1,14.95,06/21/19 16:15,"19 Ridge St, San Francisco, CA 94016" +213699,34in Ultrawide Monitor,1,379.99,06/21/19 16:15,"19 Ridge St, San Francisco, CA 94016" +213700,AAA Batteries (4-pack),1,2.99,06/24/19 21:53,"547 West St, New York City, NY 10001" +213701,Bose SoundSport Headphones,1,99.99,06/04/19 17:02,"174 West St, Austin, TX 73301" +213702,Bose SoundSport Headphones,1,99.99,06/03/19 19:38,"72 Willow St, Boston, MA 02215" +213703,Wired Headphones,1,11.99,06/13/19 18:21,"925 7th St, Austin, TX 73301" +213704,AAA Batteries (4-pack),2,2.99,06/23/19 14:45,"167 Dogwood St, New York City, NY 10001" +213705,Apple Airpods Headphones,1,150,06/05/19 21:48,"908 Chestnut St, Seattle, WA 98101" +213706,Google Phone,1,600,06/11/19 11:58,"30 Forest St, Boston, MA 02215" +213707,Google Phone,1,600,06/30/19 01:59,"987 Ridge St, San Francisco, CA 94016" +213708,AA Batteries (4-pack),1,3.84,06/08/19 21:28,"210 Forest St, Los Angeles, CA 90001" +213709,AAA Batteries (4-pack),1,2.99,06/30/19 18:21,"842 Main St, Portland, OR 97035" +213710,Lightning Charging Cable,1,14.95,06/01/19 23:02,"992 North St, Dallas, TX 75001" +213711,Lightning Charging Cable,1,14.95,06/19/19 16:51,"721 Lake St, Los Angeles, CA 90001" +213712,AA Batteries (4-pack),1,3.84,06/12/19 13:47,"590 8th St, Atlanta, GA 30301" +213713,USB-C Charging Cable,1,11.95,06/26/19 12:41,"113 Lakeview St, Portland, OR 97035" +213714,ThinkPad Laptop,1,999.99,06/22/19 13:27,"106 West St, Los Angeles, CA 90001" +213715,USB-C Charging Cable,1,11.95,06/22/19 11:54,"210 14th St, Los Angeles, CA 90001" +213716,iPhone,1,700,06/28/19 06:32,"861 Ridge St, Dallas, TX 75001" +213717,USB-C Charging Cable,1,11.95,06/23/19 16:26,"158 Lakeview St, Atlanta, GA 30301" +213718,USB-C Charging Cable,1,11.95,06/26/19 17:34,"619 12th St, San Francisco, CA 94016" +213719,USB-C Charging Cable,1,11.95,06/04/19 15:50,"549 Park St, Atlanta, GA 30301" +213720,AA Batteries (4-pack),1,3.84,06/02/19 16:24,"392 Hill St, New York City, NY 10001" +213721,20in Monitor,1,109.99,06/04/19 14:38,"223 Main St, Seattle, WA 98101" +213722,Wired Headphones,1,11.99,06/01/19 15:44,"949 1st St, Austin, TX 73301" +213723,AAA Batteries (4-pack),1,2.99,06/16/19 15:58,"517 Jefferson St, San Francisco, CA 94016" +213724,Lightning Charging Cable,1,14.95,06/04/19 10:28,"324 Johnson St, San Francisco, CA 94016" +213725,27in 4K Gaming Monitor,1,389.99,06/16/19 00:16,"518 Ridge St, Austin, TX 73301" +213726,Apple Airpods Headphones,1,150,06/30/19 17:00,"783 Jefferson St, San Francisco, CA 94016" +213727,Apple Airpods Headphones,1,150,06/04/19 17:04,"796 1st St, San Francisco, CA 94016" +213728,USB-C Charging Cable,1,11.95,06/26/19 18:36,"840 Wilson St, Los Angeles, CA 90001" +213729,USB-C Charging Cable,1,11.95,06/13/19 21:03,"194 Johnson St, San Francisco, CA 94016" +213730,Apple Airpods Headphones,1,150,06/15/19 19:33,"196 Adams St, San Francisco, CA 94016" +213731,USB-C Charging Cable,2,11.95,06/02/19 16:22,"24 Lake St, Atlanta, GA 30301" +213732,27in 4K Gaming Monitor,1,389.99,06/08/19 15:11,"476 2nd St, Los Angeles, CA 90001" +213733,Google Phone,1,600,06/15/19 20:30,"923 Forest St, Dallas, TX 75001" +213734,Macbook Pro Laptop,1,1700,06/01/19 20:51,"810 Forest St, San Francisco, CA 94016" +213735,Wired Headphones,1,11.99,06/11/19 20:38,"318 7th St, Boston, MA 02215" +213736,Wired Headphones,2,11.99,06/19/19 12:59,"275 Adams St, San Francisco, CA 94016" +213737,AA Batteries (4-pack),1,3.84,06/01/19 08:05,"344 Hickory St, Los Angeles, CA 90001" +213738,Apple Airpods Headphones,1,150,06/17/19 15:32,"180 Church St, San Francisco, CA 94016" +213739,Bose SoundSport Headphones,1,99.99,06/21/19 18:21,"811 Washington St, Atlanta, GA 30301" +213740,USB-C Charging Cable,2,11.95,06/27/19 07:46,"39 8th St, Portland, OR 97035" +213741,Lightning Charging Cable,1,14.95,06/17/19 17:34,"777 Hill St, Atlanta, GA 30301" +213742,USB-C Charging Cable,1,11.95,06/03/19 20:02,"321 North St, Boston, MA 02215" +213743,27in FHD Monitor,1,149.99,06/09/19 00:30,"42 Hill St, Seattle, WA 98101" +213744,Lightning Charging Cable,2,14.95,06/22/19 09:19,"755 Pine St, Boston, MA 02215" +213745,Bose SoundSport Headphones,1,99.99,06/01/19 17:59,"419 Elm St, New York City, NY 10001" +213746,USB-C Charging Cable,1,11.95,06/15/19 13:15,"263 Hickory St, Seattle, WA 98101" +213747,USB-C Charging Cable,1,11.95,06/28/19 19:19,"471 Meadow St, Boston, MA 02215" +213748,Bose SoundSport Headphones,1,99.99,06/09/19 18:44,"141 Park St, San Francisco, CA 94016" +213749,Apple Airpods Headphones,1,150,06/03/19 19:38,"900 Jefferson St, San Francisco, CA 94016" +213750,Bose SoundSport Headphones,1,99.99,06/01/19 08:30,"333 9th St, San Francisco, CA 94016" +213751,USB-C Charging Cable,1,11.95,06/02/19 13:10,"695 Meadow St, Dallas, TX 75001" +213752,Macbook Pro Laptop,1,1700,06/08/19 21:46,"6 North St, San Francisco, CA 94016" +213753,iPhone,1,700,06/12/19 22:11,"138 Willow St, Portland, OR 97035" +213754,20in Monitor,1,109.99,06/28/19 15:39,"365 6th St, New York City, NY 10001" +213755,20in Monitor,1,109.99,06/23/19 22:39,"565 7th St, Los Angeles, CA 90001" +213756,27in 4K Gaming Monitor,1,389.99,06/21/19 18:09,"860 1st St, Austin, TX 73301" +213757,Apple Airpods Headphones,1,150,06/04/19 02:03,"762 Lakeview St, Seattle, WA 98101" +213758,Lightning Charging Cable,1,14.95,06/08/19 15:26,"935 Adams St, Atlanta, GA 30301" +213758,AAA Batteries (4-pack),1,2.99,06/08/19 15:26,"935 Adams St, Atlanta, GA 30301" +213759,AAA Batteries (4-pack),4,2.99,06/16/19 20:23,"493 Jefferson St, Austin, TX 73301" +213760,Apple Airpods Headphones,1,150,06/24/19 12:08,"14 Lakeview St, New York City, NY 10001" +213761,Wired Headphones,1,11.99,06/18/19 10:55,"517 West St, New York City, NY 10001" +213762,AAA Batteries (4-pack),1,2.99,06/04/19 22:12,"222 11th St, Los Angeles, CA 90001" +213763,USB-C Charging Cable,1,11.95,06/12/19 11:36,"246 8th St, Los Angeles, CA 90001" +213764,AAA Batteries (4-pack),4,2.99,06/27/19 19:32,"633 River St, New York City, NY 10001" +213765,20in Monitor,1,109.99,06/25/19 08:20,"84 Pine St, New York City, NY 10001" +213766,AAA Batteries (4-pack),1,2.99,06/26/19 12:14,"659 North St, San Francisco, CA 94016" +213767,AAA Batteries (4-pack),3,2.99,06/23/19 16:01,"954 13th St, New York City, NY 10001" +213768,34in Ultrawide Monitor,1,379.99,06/06/19 18:36,"658 8th St, Los Angeles, CA 90001" +213769,Wired Headphones,1,11.99,06/06/19 15:34,"12 Highland St, Boston, MA 02215" +213770,USB-C Charging Cable,1,11.95,06/22/19 07:09,"566 Main St, Seattle, WA 98101" +213771,Google Phone,1,600,06/25/19 19:06,"703 9th St, Portland, OR 97035" +213772,27in FHD Monitor,1,149.99,06/22/19 18:20,"293 Jefferson St, San Francisco, CA 94016" +213773,Apple Airpods Headphones,1,150,06/08/19 03:12,"586 Spruce St, San Francisco, CA 94016" +213774,USB-C Charging Cable,2,11.95,06/28/19 17:37,"261 Lake St, New York City, NY 10001" +213775,Wired Headphones,1,11.99,06/18/19 13:40,"161 North St, New York City, NY 10001" +213776,27in 4K Gaming Monitor,1,389.99,06/29/19 22:53,"581 River St, Austin, TX 73301" +213777,27in 4K Gaming Monitor,1,389.99,06/16/19 20:59,"151 Meadow St, Boston, MA 02215" +213778,USB-C Charging Cable,1,11.95,06/04/19 19:36,"287 Center St, Boston, MA 02215" +213779,AAA Batteries (4-pack),1,2.99,06/18/19 20:04,"310 2nd St, Seattle, WA 98101" +213780,Vareebadd Phone,1,400,06/16/19 14:40,"154 10th St, Boston, MA 02215" +213781,AA Batteries (4-pack),1,3.84,06/06/19 11:06,"612 Ridge St, Boston, MA 02215" +213782,USB-C Charging Cable,1,11.95,06/20/19 10:01,"186 Jefferson St, Portland, OR 97035" +213783,Lightning Charging Cable,1,14.95,06/15/19 08:00,"369 Church St, Dallas, TX 75001" +213784,34in Ultrawide Monitor,1,379.99,06/07/19 10:23,"638 Center St, San Francisco, CA 94016" +213785,27in 4K Gaming Monitor,1,389.99,06/09/19 22:40,"210 Highland St, Boston, MA 02215" +213786,Wired Headphones,2,11.99,06/04/19 00:25,"178 Spruce St, Atlanta, GA 30301" +213787,Flatscreen TV,1,300,06/22/19 18:05,"948 Pine St, Dallas, TX 75001" +213788,AA Batteries (4-pack),1,3.84,06/03/19 11:38,"380 Pine St, Boston, MA 02215" +213789,AA Batteries (4-pack),1,3.84,06/12/19 18:50,"584 Sunset St, Seattle, WA 98101" +213790,34in Ultrawide Monitor,1,379.99,06/06/19 00:10,"600 6th St, Los Angeles, CA 90001" +213791,Bose SoundSport Headphones,1,99.99,06/27/19 20:24,"145 12th St, Dallas, TX 75001" +213792,AA Batteries (4-pack),1,3.84,06/10/19 15:17,"681 13th St, Portland, OR 97035" +213793,USB-C Charging Cable,2,11.95,06/16/19 10:23,"434 Main St, New York City, NY 10001" +213794,ThinkPad Laptop,1,999.99,06/12/19 19:12,"997 Spruce St, San Francisco, CA 94016" +213795,Bose SoundSport Headphones,1,99.99,06/06/19 00:00,"815 Lakeview St, San Francisco, CA 94016" +213796,Apple Airpods Headphones,1,150,06/21/19 20:29,"132 South St, New York City, NY 10001" +213797,USB-C Charging Cable,1,11.95,06/21/19 14:15,"183 10th St, Portland, OR 97035" +213798,Bose SoundSport Headphones,1,99.99,06/27/19 16:41,"11 Walnut St, Los Angeles, CA 90001" +213799,Bose SoundSport Headphones,1,99.99,06/09/19 16:57,"257 Center St, Austin, TX 73301" +213800,USB-C Charging Cable,1,11.95,06/25/19 20:54,"458 Pine St, New York City, NY 10001" +213801,Google Phone,1,600,06/11/19 09:29,"189 Hill St, San Francisco, CA 94016" +213802,AAA Batteries (4-pack),1,2.99,06/27/19 09:56,"571 10th St, New York City, NY 10001" +213803,Lightning Charging Cable,1,14.95,06/23/19 12:08,"853 Church St, Los Angeles, CA 90001" +213804,Bose SoundSport Headphones,1,99.99,06/29/19 11:17,"752 Pine St, San Francisco, CA 94016" +213805,Wired Headphones,1,11.99,06/02/19 10:49,"530 5th St, San Francisco, CA 94016" +213806,Apple Airpods Headphones,1,150,06/26/19 19:25,"156 Hickory St, New York City, NY 10001" +213807,Lightning Charging Cable,2,14.95,06/13/19 21:08,"883 Highland St, Portland, OR 97035" +213808,27in FHD Monitor,1,149.99,06/06/19 19:18,"352 Cherry St, Los Angeles, CA 90001" +213809,Wired Headphones,1,11.99,06/23/19 06:59,"577 Elm St, Atlanta, GA 30301" +213810,AAA Batteries (4-pack),1,2.99,06/16/19 13:04,"687 Lake St, Portland, OR 97035" +213811,Apple Airpods Headphones,1,150,06/27/19 19:55,"436 11th St, San Francisco, CA 94016" +213812,Lightning Charging Cable,1,14.95,06/09/19 07:40,"584 13th St, San Francisco, CA 94016" +213813,USB-C Charging Cable,1,11.95,06/22/19 17:14,"62 Main St, Austin, TX 73301" +213814,AA Batteries (4-pack),2,3.84,06/07/19 07:49,"71 7th St, Los Angeles, CA 90001" +213815,AA Batteries (4-pack),1,3.84,06/04/19 12:00,"897 Sunset St, Seattle, WA 98101" +213816,USB-C Charging Cable,1,11.95,06/07/19 23:27,"812 Madison St, Austin, TX 73301" +213817,27in FHD Monitor,1,149.99,06/11/19 21:14,"706 8th St, Seattle, WA 98101" +213818,Lightning Charging Cable,1,14.95,06/11/19 09:38,"539 Maple St, New York City, NY 10001" +213819,Flatscreen TV,1,300,06/08/19 08:22,"269 Forest St, Seattle, WA 98101" +213820,Apple Airpods Headphones,1,150,06/28/19 09:21,"917 14th St, Dallas, TX 75001" +213821,Wired Headphones,1,11.99,06/24/19 14:55,"359 7th St, San Francisco, CA 94016" +213822,AA Batteries (4-pack),3,3.84,06/04/19 08:52,"739 South St, Seattle, WA 98101" +213823,Apple Airpods Headphones,1,150,06/09/19 19:43,"629 Elm St, San Francisco, CA 94016" +213824,Apple Airpods Headphones,1,150,06/27/19 10:19,"567 Lincoln St, San Francisco, CA 94016" +213825,USB-C Charging Cable,1,11.95,06/01/19 12:54,"345 11th St, Dallas, TX 75001" +213826,AA Batteries (4-pack),1,3.84,06/15/19 15:12,"250 River St, San Francisco, CA 94016" +213827,Lightning Charging Cable,1,14.95,06/07/19 16:47,"484 Lincoln St, New York City, NY 10001" +213828,AA Batteries (4-pack),1,3.84,06/24/19 18:26,"890 Wilson St, San Francisco, CA 94016" +213829,Lightning Charging Cable,2,14.95,06/16/19 09:54,"645 North St, Los Angeles, CA 90001" +213830,USB-C Charging Cable,1,11.95,06/06/19 09:44,"65 2nd St, Los Angeles, CA 90001" +213831,Wired Headphones,1,11.99,06/17/19 16:47,"754 13th St, San Francisco, CA 94016" +213831,Lightning Charging Cable,1,14.95,06/17/19 16:47,"754 13th St, San Francisco, CA 94016" +213832,USB-C Charging Cable,1,11.95,06/18/19 11:32,"632 Hickory St, San Francisco, CA 94016" +213833,USB-C Charging Cable,4,11.95,06/20/19 19:37,"6 8th St, Los Angeles, CA 90001" +213834,Flatscreen TV,1,300,06/26/19 18:34,"966 Center St, Atlanta, GA 30301" +213835,USB-C Charging Cable,1,11.95,06/28/19 19:20,"581 12th St, San Francisco, CA 94016" +213836,Apple Airpods Headphones,1,150,06/22/19 01:53,"152 Forest St, Portland, ME 04101" +213837,AAA Batteries (4-pack),1,2.99,06/24/19 20:33,"981 Meadow St, San Francisco, CA 94016" +213838,27in 4K Gaming Monitor,1,389.99,06/21/19 13:00,"765 Cherry St, New York City, NY 10001" +213839,Bose SoundSport Headphones,1,99.99,06/05/19 19:59,"468 Dogwood St, New York City, NY 10001" +213840,Wired Headphones,1,11.99,06/11/19 16:53,"585 Park St, San Francisco, CA 94016" +213841,Wired Headphones,1,11.99,06/06/19 10:18,"712 8th St, San Francisco, CA 94016" +213842,Apple Airpods Headphones,1,150,06/12/19 14:32,"182 6th St, Portland, ME 04101" +213843,Bose SoundSport Headphones,1,99.99,06/07/19 01:12,"359 Jefferson St, New York City, NY 10001" +213844,AAA Batteries (4-pack),2,2.99,06/03/19 15:58,"882 7th St, Boston, MA 02215" +213845,27in FHD Monitor,1,149.99,06/23/19 06:11,"875 1st St, New York City, NY 10001" +213846,Flatscreen TV,1,300,06/15/19 12:08,"400 Lincoln St, Seattle, WA 98101" +213847,Lightning Charging Cable,1,14.95,06/19/19 11:10,"807 Highland St, New York City, NY 10001" +213848,ThinkPad Laptop,1,999.99,06/18/19 16:41,"687 Elm St, San Francisco, CA 94016" +213849,LG Dryer,1,600.0,06/05/19 05:25,"653 8th St, Los Angeles, CA 90001" +213850,34in Ultrawide Monitor,1,379.99,06/13/19 16:07,"857 Willow St, New York City, NY 10001" +213851,Apple Airpods Headphones,1,150,06/06/19 23:34,"945 Cherry St, Los Angeles, CA 90001" +213852,Wired Headphones,1,11.99,06/18/19 00:18,"741 North St, Los Angeles, CA 90001" +213853,Lightning Charging Cable,1,14.95,06/14/19 10:51,"543 West St, Seattle, WA 98101" +213854,USB-C Charging Cable,1,11.95,06/19/19 18:47,"17 14th St, Seattle, WA 98101" +213854,27in 4K Gaming Monitor,1,389.99,06/19/19 18:47,"17 14th St, Seattle, WA 98101" +213855,USB-C Charging Cable,1,11.95,06/15/19 15:57,"341 Sunset St, Boston, MA 02215" +213856,ThinkPad Laptop,1,999.99,06/03/19 13:48,"119 Lincoln St, Portland, OR 97035" +213857,34in Ultrawide Monitor,1,379.99,06/20/19 00:47,"732 Hill St, Portland, OR 97035" +213858,Wired Headphones,1,11.99,06/05/19 19:14,"386 Dogwood St, Boston, MA 02215" +213859,USB-C Charging Cable,1,11.95,06/05/19 18:50,"251 Lakeview St, Atlanta, GA 30301" +213860,27in FHD Monitor,1,149.99,06/01/19 12:58,"932 Lincoln St, Dallas, TX 75001" +213861,AA Batteries (4-pack),1,3.84,06/19/19 08:58,"135 Cedar St, Portland, ME 04101" +213862,Wired Headphones,1,11.99,06/26/19 02:40,"497 Elm St, San Francisco, CA 94016" +213863,Wired Headphones,1,11.99,06/07/19 07:45,"460 Willow St, Portland, ME 04101" +213864,Apple Airpods Headphones,1,150,06/11/19 19:41,"421 Jackson St, Boston, MA 02215" +213865,AAA Batteries (4-pack),2,2.99,06/07/19 22:40,"508 Elm St, Boston, MA 02215" +213866,Vareebadd Phone,1,400,06/08/19 20:18,"755 Lake St, Atlanta, GA 30301" +213867,Lightning Charging Cable,1,14.95,06/05/19 11:00,"424 11th St, Portland, OR 97035" +213868,34in Ultrawide Monitor,1,379.99,06/22/19 13:54,"182 Jackson St, Los Angeles, CA 90001" +213869,USB-C Charging Cable,1,11.95,06/13/19 20:31,"976 Jefferson St, San Francisco, CA 94016" +213870,27in 4K Gaming Monitor,1,389.99,06/04/19 16:23,"689 Cherry St, Boston, MA 02215" +213871,Vareebadd Phone,1,400,06/04/19 20:18,"942 14th St, San Francisco, CA 94016" +213872,Bose SoundSport Headphones,1,99.99,06/07/19 15:45,"625 Willow St, Los Angeles, CA 90001" +213873,Wired Headphones,1,11.99,06/16/19 00:14,"490 River St, Dallas, TX 75001" +213874,Wired Headphones,1,11.99,06/16/19 17:36,"241 4th St, Los Angeles, CA 90001" +213875,27in FHD Monitor,1,149.99,06/18/19 13:42,"573 South St, San Francisco, CA 94016" +213876,Google Phone,1,600,06/26/19 11:53,"941 11th St, San Francisco, CA 94016" +213877,Wired Headphones,1,11.99,06/27/19 09:34,"866 River St, Boston, MA 02215" +213878,AAA Batteries (4-pack),1,2.99,06/12/19 21:07,"78 Lake St, Atlanta, GA 30301" +213879,Flatscreen TV,1,300,06/21/19 01:38,"944 West St, San Francisco, CA 94016" +213880,Bose SoundSport Headphones,1,99.99,06/29/19 10:40,"895 Hickory St, New York City, NY 10001" +213881,AA Batteries (4-pack),1,3.84,06/23/19 21:27,"434 South St, New York City, NY 10001" +213882,Bose SoundSport Headphones,1,99.99,06/18/19 10:01,"797 12th St, Los Angeles, CA 90001" +213883,34in Ultrawide Monitor,1,379.99,06/14/19 09:16,"553 Lakeview St, Los Angeles, CA 90001" +213884,Lightning Charging Cable,1,14.95,06/30/19 01:02,"617 Lakeview St, Boston, MA 02215" +213885,27in FHD Monitor,1,149.99,06/22/19 15:48,"894 Maple St, Boston, MA 02215" +213886,Bose SoundSport Headphones,1,99.99,06/05/19 18:10,"790 2nd St, Boston, MA 02215" +213887,AA Batteries (4-pack),1,3.84,06/23/19 19:55,"142 5th St, New York City, NY 10001" +213888,Apple Airpods Headphones,1,150,06/14/19 17:55,"479 North St, New York City, NY 10001" +213889,AA Batteries (4-pack),1,3.84,06/25/19 12:24,"214 8th St, Seattle, WA 98101" +213890,USB-C Charging Cable,1,11.95,06/01/19 14:30,"439 Ridge St, Austin, TX 73301" +213891,34in Ultrawide Monitor,1,379.99,06/12/19 16:21,"44 1st St, San Francisco, CA 94016" +213892,27in FHD Monitor,1,149.99,06/08/19 08:32,"940 West St, New York City, NY 10001" +213893,AAA Batteries (4-pack),1,2.99,06/06/19 23:13,"615 Pine St, San Francisco, CA 94016" +213894,USB-C Charging Cable,1,11.95,06/23/19 17:10,"480 North St, San Francisco, CA 94016" +213895,Apple Airpods Headphones,1,150,06/15/19 21:01,"298 Lake St, New York City, NY 10001" +213896,AAA Batteries (4-pack),1,2.99,06/09/19 11:47,"657 Hickory St, Los Angeles, CA 90001" +213897,Flatscreen TV,1,300,06/09/19 13:06,"462 Ridge St, Boston, MA 02215" +213897,Bose SoundSport Headphones,1,99.99,06/09/19 13:06,"462 Ridge St, Boston, MA 02215" +213898,27in 4K Gaming Monitor,1,389.99,06/18/19 18:11,"471 Hickory St, San Francisco, CA 94016" +213899,27in 4K Gaming Monitor,1,389.99,06/26/19 09:07,"295 Main St, Atlanta, GA 30301" +213900,34in Ultrawide Monitor,1,379.99,06/08/19 10:24,"395 North St, New York City, NY 10001" +213901,Bose SoundSport Headphones,1,99.99,06/07/19 07:12,"786 Jefferson St, New York City, NY 10001" +213902,Wired Headphones,1,11.99,06/25/19 02:15,"849 Washington St, San Francisco, CA 94016" +213903,Bose SoundSport Headphones,1,99.99,06/16/19 11:50,"963 Cedar St, Seattle, WA 98101" +213904,AAA Batteries (4-pack),1,2.99,06/25/19 17:33,"139 Cedar St, San Francisco, CA 94016" +213905,AAA Batteries (4-pack),1,2.99,06/13/19 13:40,"968 Spruce St, San Francisco, CA 94016" +213906,27in 4K Gaming Monitor,1,389.99,06/09/19 20:32,"633 Walnut St, San Francisco, CA 94016" +213907,Bose SoundSport Headphones,1,99.99,06/15/19 19:25,"14 12th St, San Francisco, CA 94016" +213908,34in Ultrawide Monitor,1,379.99,06/22/19 09:49,"121 Meadow St, Los Angeles, CA 90001" +213909,Wired Headphones,1,11.99,06/24/19 15:58,"586 Forest St, New York City, NY 10001" +213910,AAA Batteries (4-pack),3,2.99,06/05/19 16:31,"638 Forest St, Dallas, TX 75001" +213911,Macbook Pro Laptop,1,1700,06/09/19 22:21,"263 Lincoln St, Portland, OR 97035" +213912,AAA Batteries (4-pack),2,2.99,06/11/19 12:55,"937 2nd St, San Francisco, CA 94016" +213913,Bose SoundSport Headphones,1,99.99,06/04/19 10:49,"881 Maple St, Dallas, TX 75001" +213914,Apple Airpods Headphones,1,150,06/10/19 17:57,"422 Church St, Dallas, TX 75001" +213915,Vareebadd Phone,1,400,06/04/19 17:07,"184 Church St, Austin, TX 73301" +213916,iPhone,1,700,06/17/19 18:54,"814 Hickory St, Portland, OR 97035" +213917,Flatscreen TV,1,300,06/22/19 11:06,"518 10th St, Austin, TX 73301" +213918,Lightning Charging Cable,1,14.95,06/25/19 13:57,"688 Maple St, Atlanta, GA 30301" +213919,Bose SoundSport Headphones,1,99.99,06/13/19 17:44,"315 6th St, Atlanta, GA 30301" +213920,Lightning Charging Cable,1,14.95,06/12/19 14:46,"982 6th St, San Francisco, CA 94016" +213921,AAA Batteries (4-pack),2,2.99,06/26/19 13:40,"174 Jefferson St, Dallas, TX 75001" +213922,AA Batteries (4-pack),1,3.84,06/09/19 08:26,"876 Adams St, Boston, MA 02215" +213923,AAA Batteries (4-pack),2,2.99,06/22/19 19:07,"371 Lakeview St, Los Angeles, CA 90001" +213924,AAA Batteries (4-pack),2,2.99,06/14/19 16:12,"517 12th St, San Francisco, CA 94016" +213925,Bose SoundSport Headphones,1,99.99,06/27/19 17:26,"842 Cherry St, New York City, NY 10001" +213926,Lightning Charging Cable,1,14.95,06/12/19 10:58,"142 River St, San Francisco, CA 94016" +213927,AAA Batteries (4-pack),1,2.99,06/09/19 19:46,"169 5th St, San Francisco, CA 94016" +213928,iPhone,1,700,06/18/19 22:04,"889 4th St, New York City, NY 10001" +213929,27in FHD Monitor,1,149.99,06/15/19 16:47,"132 Washington St, San Francisco, CA 94016" +213930,USB-C Charging Cable,1,11.95,06/26/19 16:22,"861 Meadow St, Portland, OR 97035" +213931,Macbook Pro Laptop,1,1700,06/13/19 12:58,"246 Ridge St, Los Angeles, CA 90001" +213932,Flatscreen TV,1,300,06/20/19 13:57,"162 11th St, San Francisco, CA 94016" +213933,Bose SoundSport Headphones,1,99.99,06/26/19 18:26,"521 Jackson St, Dallas, TX 75001" +213934,iPhone,1,700,06/24/19 13:00,"579 Adams St, Boston, MA 02215" +213935,27in 4K Gaming Monitor,1,389.99,06/16/19 15:50,"647 Jefferson St, Portland, OR 97035" +213936,Wired Headphones,1,11.99,06/13/19 12:46,"982 Church St, Seattle, WA 98101" +213937,Google Phone,1,600,06/16/19 18:39,"800 Elm St, New York City, NY 10001" +213938,27in FHD Monitor,1,149.99,06/26/19 15:49,"29 11th St, San Francisco, CA 94016" +213939,Wired Headphones,1,11.99,06/24/19 13:06,"482 Church St, San Francisco, CA 94016" +213940,Wired Headphones,1,11.99,06/12/19 05:58,"798 14th St, Seattle, WA 98101" +213941,Bose SoundSport Headphones,1,99.99,06/29/19 19:51,"964 12th St, Boston, MA 02215" +213942,Wired Headphones,1,11.99,06/17/19 21:34,"267 1st St, Seattle, WA 98101" +213943,LG Washing Machine,1,600.0,06/22/19 17:16,"519 Walnut St, Dallas, TX 75001" +213944,20in Monitor,1,109.99,06/23/19 06:52,"819 Chestnut St, San Francisco, CA 94016" +213945,Lightning Charging Cable,1,14.95,06/05/19 20:12,"685 Wilson St, Portland, OR 97035" +213946,USB-C Charging Cable,1,11.95,06/22/19 15:29,"379 Cherry St, San Francisco, CA 94016" +213947,Lightning Charging Cable,1,14.95,06/06/19 17:03,"703 Lakeview St, Atlanta, GA 30301" +213948,AAA Batteries (4-pack),1,2.99,06/02/19 18:00,"639 Cedar St, Los Angeles, CA 90001" +213949,Flatscreen TV,1,300,06/29/19 12:38,"382 Highland St, Boston, MA 02215" +213950,Wired Headphones,1,11.99,06/11/19 13:36,"128 1st St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +213951,AA Batteries (4-pack),1,3.84,06/12/19 15:18,"258 Maple St, Los Angeles, CA 90001" +213952,AA Batteries (4-pack),1,3.84,06/17/19 16:54,"671 River St, San Francisco, CA 94016" +213953,Macbook Pro Laptop,1,1700,06/16/19 16:43,"300 Dogwood St, Austin, TX 73301" +213954,USB-C Charging Cable,1,11.95,06/19/19 10:33,"759 Church St, Los Angeles, CA 90001" +213955,Google Phone,1,600,06/05/19 14:56,"37 Wilson St, San Francisco, CA 94016" +213955,USB-C Charging Cable,1,11.95,06/05/19 14:56,"37 Wilson St, San Francisco, CA 94016" +213956,AA Batteries (4-pack),1,3.84,06/10/19 11:21,"762 14th St, San Francisco, CA 94016" +213957,Apple Airpods Headphones,1,150,06/03/19 12:46,"463 11th St, Portland, ME 04101" +213958,USB-C Charging Cable,1,11.95,06/14/19 17:08,"431 Dogwood St, New York City, NY 10001" +213959,Apple Airpods Headphones,1,150,06/14/19 11:53,"671 Cherry St, Los Angeles, CA 90001" +213960,AA Batteries (4-pack),1,3.84,06/02/19 16:12,"387 Madison St, Austin, TX 73301" +213961,Bose SoundSport Headphones,1,99.99,06/27/19 14:09,"872 Jackson St, Boston, MA 02215" +213962,AAA Batteries (4-pack),1,2.99,06/15/19 21:21,"503 Chestnut St, Boston, MA 02215" +213963,AA Batteries (4-pack),1,3.84,06/09/19 21:25,"725 2nd St, Los Angeles, CA 90001" +213964,USB-C Charging Cable,1,11.95,06/16/19 19:42,"651 Johnson St, Boston, MA 02215" +213965,Bose SoundSport Headphones,1,99.99,06/27/19 18:00,"72 Washington St, Los Angeles, CA 90001" +213966,Wired Headphones,1,11.99,06/10/19 20:29,"812 Adams St, Los Angeles, CA 90001" +213967,iPhone,1,700,06/26/19 07:12,"772 Main St, San Francisco, CA 94016" +213968,AA Batteries (4-pack),1,3.84,06/11/19 16:01,"39 Johnson St, Los Angeles, CA 90001" +213969,Wired Headphones,1,11.99,06/28/19 19:19,"305 Washington St, San Francisco, CA 94016" +213970,27in FHD Monitor,1,149.99,06/23/19 09:02,"771 Hill St, Austin, TX 73301" +213971,Apple Airpods Headphones,1,150,06/06/19 23:21,"964 Pine St, San Francisco, CA 94016" +213972,Lightning Charging Cable,1,14.95,06/26/19 07:31,"278 Walnut St, Atlanta, GA 30301" +213973,27in 4K Gaming Monitor,1,389.99,06/22/19 15:46,"265 Highland St, New York City, NY 10001" +213974,Lightning Charging Cable,1,14.95,06/30/19 19:25,"315 13th St, San Francisco, CA 94016" +213975,Wired Headphones,1,11.99,06/20/19 12:05,"860 Lake St, Austin, TX 73301" +213976,Lightning Charging Cable,1,14.95,06/21/19 22:00,"967 Lakeview St, San Francisco, CA 94016" +213977,27in FHD Monitor,1,149.99,06/11/19 01:18,"348 River St, Boston, MA 02215" +213978,Wired Headphones,1,11.99,06/18/19 16:52,"585 Jackson St, San Francisco, CA 94016" +213979,Flatscreen TV,1,300,06/03/19 08:27,"71 Hickory St, Atlanta, GA 30301" +213980,AA Batteries (4-pack),1,3.84,06/25/19 07:19,"940 9th St, Seattle, WA 98101" +213980,AA Batteries (4-pack),1,3.84,06/25/19 07:19,"940 9th St, Seattle, WA 98101" +213981,27in FHD Monitor,1,149.99,06/25/19 20:57,"571 Cherry St, Atlanta, GA 30301" +213982,34in Ultrawide Monitor,1,379.99,06/02/19 11:18,"488 14th St, San Francisco, CA 94016" +213983,Google Phone,1,600,06/21/19 05:54,"950 8th St, Los Angeles, CA 90001" +213984,Wired Headphones,1,11.99,06/02/19 13:47,"271 Spruce St, San Francisco, CA 94016" +213985,Apple Airpods Headphones,1,150,06/18/19 23:45,"597 West St, New York City, NY 10001" +213986,iPhone,1,700,06/18/19 17:50,"411 11th St, Boston, MA 02215" +213986,Lightning Charging Cable,1,14.95,06/18/19 17:50,"411 11th St, Boston, MA 02215" +213987,Lightning Charging Cable,1,14.95,06/10/19 11:16,"543 Pine St, Boston, MA 02215" +213988,Google Phone,1,600,06/11/19 00:02,"210 5th St, San Francisco, CA 94016" +213989,Wired Headphones,1,11.99,06/09/19 12:43,"323 Elm St, Dallas, TX 75001" +213990,Wired Headphones,1,11.99,06/03/19 18:03,"841 Madison St, Seattle, WA 98101" +213991,AAA Batteries (4-pack),1,2.99,06/25/19 20:12,"305 Jefferson St, Los Angeles, CA 90001" +213992,Apple Airpods Headphones,1,150,06/10/19 10:45,"527 Cedar St, San Francisco, CA 94016" +213993,USB-C Charging Cable,1,11.95,06/02/19 20:05,"61 South St, Los Angeles, CA 90001" +213994,Lightning Charging Cable,1,14.95,06/03/19 13:59,"251 13th St, Los Angeles, CA 90001" +213994,27in 4K Gaming Monitor,1,389.99,06/03/19 13:59,"251 13th St, Los Angeles, CA 90001" +213995,27in 4K Gaming Monitor,1,389.99,06/11/19 15:00,"489 7th St, Austin, TX 73301" +213996,ThinkPad Laptop,1,999.99,06/28/19 13:11,"555 7th St, Austin, TX 73301" +213997,Wired Headphones,1,11.99,06/16/19 13:20,"533 Maple St, Dallas, TX 75001" +213998,AA Batteries (4-pack),1,3.84,06/17/19 21:45,"524 Johnson St, Boston, MA 02215" +213999,AAA Batteries (4-pack),2,2.99,06/10/19 08:23,"124 Hickory St, Los Angeles, CA 90001" +214000,USB-C Charging Cable,1,11.95,06/09/19 19:11,"80 North St, San Francisco, CA 94016" +214001,Lightning Charging Cable,1,14.95,06/09/19 22:31,"930 Ridge St, Boston, MA 02215" +214002,Bose SoundSport Headphones,1,99.99,06/02/19 07:26,"597 Washington St, New York City, NY 10001" +214003,Apple Airpods Headphones,1,150,06/11/19 16:17,"413 South St, Boston, MA 02215" +214004,Vareebadd Phone,1,400,06/12/19 11:52,"415 Cedar St, San Francisco, CA 94016" +214004,USB-C Charging Cable,1,11.95,06/12/19 11:52,"415 Cedar St, San Francisco, CA 94016" +214004,Bose SoundSport Headphones,1,99.99,06/12/19 11:52,"415 Cedar St, San Francisco, CA 94016" +214005,AA Batteries (4-pack),1,3.84,06/25/19 21:34,"910 West St, Boston, MA 02215" +214006,USB-C Charging Cable,2,11.95,06/10/19 12:54,"892 7th St, Los Angeles, CA 90001" +214007,iPhone,1,700,06/06/19 20:50,"359 12th St, New York City, NY 10001" +214008,AAA Batteries (4-pack),1,2.99,06/06/19 21:17,"232 Hickory St, San Francisco, CA 94016" +214009,27in FHD Monitor,1,149.99,06/11/19 17:01,"108 Elm St, New York City, NY 10001" +214010,Lightning Charging Cable,1,14.95,06/08/19 18:39,"512 Dogwood St, Boston, MA 02215" +214011,Macbook Pro Laptop,1,1700,06/05/19 10:38,"829 Lincoln St, San Francisco, CA 94016" +214012,Wired Headphones,1,11.99,06/06/19 13:27,"44 Lake St, Boston, MA 02215" +214013,ThinkPad Laptop,1,999.99,06/27/19 14:52,"433 Dogwood St, Portland, OR 97035" +214014,USB-C Charging Cable,1,11.95,06/11/19 10:00,"61 Meadow St, Los Angeles, CA 90001" +214015,AA Batteries (4-pack),2,3.84,06/16/19 19:42,"341 Dogwood St, San Francisco, CA 94016" +214016,USB-C Charging Cable,1,11.95,06/05/19 17:45,"302 River St, San Francisco, CA 94016" +214017,Bose SoundSport Headphones,1,99.99,06/11/19 13:05,"883 Forest St, Atlanta, GA 30301" +214018,20in Monitor,1,109.99,06/06/19 10:53,"636 Ridge St, San Francisco, CA 94016" +214019,27in 4K Gaming Monitor,1,389.99,06/03/19 22:26,"354 Chestnut St, San Francisco, CA 94016" +214020,USB-C Charging Cable,3,11.95,06/01/19 14:41,"933 Elm St, Los Angeles, CA 90001" +214021,ThinkPad Laptop,1,999.99,06/28/19 21:33,"868 Maple St, Atlanta, GA 30301" +214022,AA Batteries (4-pack),1,3.84,06/18/19 13:17,"294 9th St, New York City, NY 10001" +214022,Bose SoundSport Headphones,1,99.99,06/18/19 13:17,"294 9th St, New York City, NY 10001" +214023,27in FHD Monitor,1,149.99,06/25/19 04:32,"622 9th St, San Francisco, CA 94016" +214024,Lightning Charging Cable,1,14.95,06/30/19 19:49,"979 Johnson St, Los Angeles, CA 90001" +214025,AA Batteries (4-pack),2,3.84,06/12/19 18:44,"107 4th St, Los Angeles, CA 90001" +214026,USB-C Charging Cable,1,11.95,06/16/19 17:50,"636 Spruce St, San Francisco, CA 94016" +214027,AA Batteries (4-pack),1,3.84,06/07/19 13:25,"999 Jackson St, Portland, OR 97035" +214028,Apple Airpods Headphones,1,150,06/08/19 13:37,"61 Elm St, San Francisco, CA 94016" +214029,Bose SoundSport Headphones,1,99.99,06/11/19 10:05,"698 River St, New York City, NY 10001" +214030,Apple Airpods Headphones,1,150,06/25/19 19:42,"525 Ridge St, Portland, OR 97035" +214031,iPhone,1,700,06/30/19 15:35,"938 6th St, Dallas, TX 75001" +214031,Lightning Charging Cable,1,14.95,06/30/19 15:35,"938 6th St, Dallas, TX 75001" +214032,Wired Headphones,1,11.99,06/24/19 14:10,"140 Cedar St, Portland, OR 97035" +214033,Wired Headphones,1,11.99,06/24/19 19:18,"63 Lake St, Portland, OR 97035" +214034,USB-C Charging Cable,1,11.95,06/16/19 18:05,"237 Jackson St, San Francisco, CA 94016" +214035,Lightning Charging Cable,1,14.95,06/24/19 09:24,"244 Johnson St, Portland, ME 04101" +214036,USB-C Charging Cable,1,11.95,06/07/19 22:44,"762 Washington St, Seattle, WA 98101" +214037,Lightning Charging Cable,1,14.95,06/20/19 00:07,"829 Forest St, New York City, NY 10001" +214038,ThinkPad Laptop,1,999.99,06/02/19 12:25,"464 Hickory St, Seattle, WA 98101" +214039,Apple Airpods Headphones,1,150,06/15/19 22:40,"520 Willow St, Dallas, TX 75001" +214040,Lightning Charging Cable,1,14.95,06/24/19 13:24,"79 1st St, San Francisco, CA 94016" +214041,Wired Headphones,1,11.99,06/14/19 12:34,"511 River St, Atlanta, GA 30301" +214042,20in Monitor,1,109.99,06/23/19 15:55,"95 Meadow St, San Francisco, CA 94016" +214043,Wired Headphones,1,11.99,06/27/19 18:06,"497 Highland St, Portland, OR 97035" +214044,Flatscreen TV,1,300,06/10/19 18:19,"545 4th St, Boston, MA 02215" +214045,USB-C Charging Cable,1,11.95,06/14/19 14:46,"345 Dogwood St, Boston, MA 02215" +214046,Apple Airpods Headphones,1,150,06/10/19 14:19,"835 Sunset St, San Francisco, CA 94016" +214047,Lightning Charging Cable,1,14.95,06/08/19 13:58,"228 Jackson St, New York City, NY 10001" +214048,LG Dryer,1,600.0,06/25/19 10:59,"432 Lincoln St, Atlanta, GA 30301" +214049,Lightning Charging Cable,2,14.95,06/20/19 16:30,"521 14th St, Atlanta, GA 30301" +214050,Apple Airpods Headphones,1,150,06/19/19 18:48,"401 7th St, San Francisco, CA 94016" +214051,Lightning Charging Cable,1,14.95,06/04/19 20:40,"975 Elm St, Portland, OR 97035" +214052,AAA Batteries (4-pack),1,2.99,06/16/19 17:46,"847 Lakeview St, Atlanta, GA 30301" +214053,ThinkPad Laptop,1,999.99,06/27/19 10:42,"745 North St, San Francisco, CA 94016" +214054,iPhone,1,700,06/29/19 13:30,"380 Johnson St, Boston, MA 02215" +214055,Wired Headphones,1,11.99,06/26/19 11:52,"608 Lakeview St, Dallas, TX 75001" +214056,AA Batteries (4-pack),2,3.84,06/19/19 10:21,"208 10th St, New York City, NY 10001" +214057,iPhone,1,700,06/12/19 06:17,"857 12th St, New York City, NY 10001" +214058,AA Batteries (4-pack),2,3.84,06/16/19 20:02,"921 Main St, New York City, NY 10001" +214059,Lightning Charging Cable,1,14.95,06/07/19 15:52,"948 South St, Dallas, TX 75001" +214060,27in FHD Monitor,1,149.99,06/01/19 17:41,"514 Cherry St, Atlanta, GA 30301" +214061,27in FHD Monitor,1,149.99,06/16/19 07:44,"427 Dogwood St, San Francisco, CA 94016" +214062,Apple Airpods Headphones,1,150,06/11/19 22:13,"359 Wilson St, San Francisco, CA 94016" +214063,Wired Headphones,1,11.99,06/30/19 13:18,"655 1st St, Boston, MA 02215" +214064,27in FHD Monitor,1,149.99,06/13/19 06:14,"484 Main St, San Francisco, CA 94016" +214065,AA Batteries (4-pack),1,3.84,06/09/19 16:45,"988 Lakeview St, New York City, NY 10001" +214066,Macbook Pro Laptop,1,1700,06/15/19 07:10,"780 9th St, Austin, TX 73301" +214067,AAA Batteries (4-pack),1,2.99,06/27/19 14:22,"124 North St, San Francisco, CA 94016" +214068,Lightning Charging Cable,3,14.95,06/17/19 11:26,"446 Wilson St, San Francisco, CA 94016" +214069,USB-C Charging Cable,1,11.95,06/19/19 14:58,"895 Highland St, New York City, NY 10001" +214070,iPhone,1,700,06/22/19 19:40,"558 Lake St, Portland, ME 04101" +214070,Wired Headphones,1,11.99,06/22/19 19:40,"558 Lake St, Portland, ME 04101" +214071,Macbook Pro Laptop,1,1700,06/02/19 16:12,"399 Dogwood St, San Francisco, CA 94016" +214072,AA Batteries (4-pack),1,3.84,06/29/19 18:21,"82 12th St, San Francisco, CA 94016" +214073,Wired Headphones,1,11.99,06/08/19 23:59,"909 5th St, Atlanta, GA 30301" +214074,Flatscreen TV,1,300,06/28/19 13:56,"329 Jefferson St, Seattle, WA 98101" +214075,Lightning Charging Cable,1,14.95,06/10/19 11:38,"568 Jefferson St, New York City, NY 10001" +214076,AA Batteries (4-pack),1,3.84,06/16/19 21:37,"505 Jefferson St, New York City, NY 10001" +214077,AA Batteries (4-pack),2,3.84,06/17/19 19:51,"949 Pine St, Los Angeles, CA 90001" +214078,Lightning Charging Cable,1,14.95,06/06/19 16:44,"268 10th St, Dallas, TX 75001" +214079,Wired Headphones,1,11.99,06/28/19 07:40,"29 10th St, Atlanta, GA 30301" +214080,AAA Batteries (4-pack),3,2.99,06/04/19 16:18,"283 Chestnut St, New York City, NY 10001" +214081,27in FHD Monitor,1,149.99,06/29/19 22:03,"363 14th St, Los Angeles, CA 90001" +214082,Bose SoundSport Headphones,1,99.99,06/28/19 08:33,"696 Spruce St, San Francisco, CA 94016" +214083,ThinkPad Laptop,1,999.99,06/25/19 15:51,"544 5th St, Los Angeles, CA 90001" +214084,Lightning Charging Cable,1,14.95,06/20/19 11:18,"896 11th St, Atlanta, GA 30301" +214085,Wired Headphones,1,11.99,06/26/19 19:19,"170 South St, Dallas, TX 75001" +214086,Macbook Pro Laptop,1,1700,06/08/19 22:48,"797 2nd St, Los Angeles, CA 90001" +214087,34in Ultrawide Monitor,1,379.99,06/21/19 17:07,"899 7th St, Dallas, TX 75001" +214088,Flatscreen TV,1,300,06/20/19 23:10,"313 Park St, Los Angeles, CA 90001" +214089,AAA Batteries (4-pack),1,2.99,06/12/19 10:08,"462 Cherry St, Los Angeles, CA 90001" +214090,USB-C Charging Cable,1,11.95,06/28/19 21:33,"991 Pine St, San Francisco, CA 94016" +214091,27in FHD Monitor,1,149.99,06/09/19 18:22,"86 11th St, Austin, TX 73301" +214092,Bose SoundSport Headphones,1,99.99,06/10/19 20:24,"151 Chestnut St, Boston, MA 02215" +214093,AAA Batteries (4-pack),4,2.99,06/25/19 01:21,"915 Elm St, Seattle, WA 98101" +214094,Bose SoundSport Headphones,1,99.99,06/05/19 13:30,"138 13th St, Dallas, TX 75001" +214095,USB-C Charging Cable,1,11.95,06/24/19 13:42,"124 Chestnut St, Dallas, TX 75001" +214096,Macbook Pro Laptop,1,1700,06/02/19 22:50,"783 13th St, Seattle, WA 98101" +214097,AAA Batteries (4-pack),1,2.99,06/08/19 11:52,"970 Walnut St, San Francisco, CA 94016" +214098,Wired Headphones,1,11.99,06/29/19 15:07,"518 Center St, Portland, ME 04101" +214099,20in Monitor,1,109.99,06/01/19 09:08,"90 Maple St, Portland, ME 04101" +214100,AA Batteries (4-pack),1,3.84,06/18/19 11:27,"354 Hill St, Austin, TX 73301" +,,,,, +214101,Bose SoundSport Headphones,1,99.99,06/21/19 20:37,"722 Lake St, San Francisco, CA 94016" +214102,AA Batteries (4-pack),1,3.84,06/06/19 12:23,"995 Center St, New York City, NY 10001" +214103,AAA Batteries (4-pack),1,2.99,06/03/19 20:08,"38 6th St, Dallas, TX 75001" +214104,Flatscreen TV,1,300,06/08/19 18:11,"327 7th St, San Francisco, CA 94016" +214105,Lightning Charging Cable,1,14.95,06/27/19 15:41,"561 5th St, San Francisco, CA 94016" +214106,Flatscreen TV,1,300,06/09/19 15:16,"361 Dogwood St, San Francisco, CA 94016" +214107,Lightning Charging Cable,2,14.95,06/25/19 16:49,"256 13th St, Boston, MA 02215" +214108,Lightning Charging Cable,1,14.95,06/15/19 07:46,"755 Madison St, Seattle, WA 98101" +214109,27in FHD Monitor,1,149.99,06/04/19 10:57,"289 14th St, Atlanta, GA 30301" +214110,Apple Airpods Headphones,1,150,06/22/19 13:44,"688 10th St, Los Angeles, CA 90001" +214111,Apple Airpods Headphones,1,150,06/17/19 18:46,"16 Walnut St, Atlanta, GA 30301" +214112,AAA Batteries (4-pack),1,2.99,06/27/19 17:03,"975 Sunset St, San Francisco, CA 94016" +214113,USB-C Charging Cable,1,11.95,06/16/19 12:25,"676 Hickory St, Boston, MA 02215" +214114,27in FHD Monitor,1,149.99,06/23/19 01:17,"547 Spruce St, Los Angeles, CA 90001" +214115,27in FHD Monitor,1,149.99,06/17/19 10:52,"96 Ridge St, Atlanta, GA 30301" +214116,AA Batteries (4-pack),2,3.84,06/11/19 10:08,"245 North St, New York City, NY 10001" +214117,AAA Batteries (4-pack),2,2.99,06/10/19 09:32,"706 Maple St, Atlanta, GA 30301" +214118,Lightning Charging Cable,1,14.95,06/27/19 10:18,"447 Meadow St, Los Angeles, CA 90001" +214119,iPhone,1,700,06/05/19 11:23,"198 Johnson St, Dallas, TX 75001" +214120,USB-C Charging Cable,1,11.95,06/11/19 22:04,"231 Johnson St, San Francisco, CA 94016" +214121,Macbook Pro Laptop,1,1700,06/19/19 21:15,"76 Hickory St, San Francisco, CA 94016" +214122,AAA Batteries (4-pack),3,2.99,06/29/19 18:46,"258 5th St, Portland, OR 97035" +214123,USB-C Charging Cable,1,11.95,06/07/19 21:29,"949 Ridge St, Austin, TX 73301" +214124,AAA Batteries (4-pack),1,2.99,06/14/19 21:07,"498 West St, Boston, MA 02215" +214125,Flatscreen TV,1,300,06/01/19 11:43,"324 9th St, New York City, NY 10001" +214126,AAA Batteries (4-pack),1,2.99,06/06/19 15:56,"920 8th St, New York City, NY 10001" +214127,Vareebadd Phone,1,400,06/04/19 12:10,"586 5th St, Boston, MA 02215" +214128,Wired Headphones,1,11.99,06/26/19 08:25,"497 11th St, Portland, OR 97035" +214129,34in Ultrawide Monitor,1,379.99,06/08/19 10:33,"270 12th St, New York City, NY 10001" +214130,Lightning Charging Cable,1,14.95,06/24/19 16:28,"270 13th St, Dallas, TX 75001" +214131,Lightning Charging Cable,1,14.95,06/25/19 16:47,"231 Cedar St, Seattle, WA 98101" +214132,27in 4K Gaming Monitor,1,389.99,06/25/19 21:01,"483 West St, New York City, NY 10001" +214133,AAA Batteries (4-pack),1,2.99,06/13/19 23:30,"91 Lake St, New York City, NY 10001" +214134,27in 4K Gaming Monitor,1,389.99,06/11/19 14:59,"329 Sunset St, New York City, NY 10001" +214135,Wired Headphones,1,11.99,06/01/19 21:02,"869 Chestnut St, Dallas, TX 75001" +214136,Vareebadd Phone,1,400,06/21/19 18:22,"809 Wilson St, Dallas, TX 75001" +214136,USB-C Charging Cable,2,11.95,06/21/19 18:22,"809 Wilson St, Dallas, TX 75001" +214137,AA Batteries (4-pack),1,3.84,06/04/19 15:58,"781 North St, New York City, NY 10001" +214138,Flatscreen TV,1,300,06/21/19 00:25,"278 11th St, Seattle, WA 98101" +214139,AAA Batteries (4-pack),1,2.99,06/21/19 09:56,"15 Elm St, Dallas, TX 75001" +214140,Wired Headphones,1,11.99,06/11/19 07:09,"13 Lakeview St, Atlanta, GA 30301" +214141,AA Batteries (4-pack),2,3.84,06/12/19 16:39,"247 Cedar St, Los Angeles, CA 90001" +214142,Apple Airpods Headphones,1,150,06/03/19 08:22,"249 Church St, San Francisco, CA 94016" +214143,AA Batteries (4-pack),1,3.84,06/16/19 09:34,"474 Lake St, San Francisco, CA 94016" +214144,AA Batteries (4-pack),1,3.84,06/18/19 22:59,"834 Hickory St, Los Angeles, CA 90001" +214145,Lightning Charging Cable,1,14.95,06/27/19 16:11,"502 Chestnut St, New York City, NY 10001" +214146,AAA Batteries (4-pack),3,2.99,06/14/19 11:00,"586 Hickory St, New York City, NY 10001" +214147,AAA Batteries (4-pack),1,2.99,06/04/19 14:26,"92 6th St, Seattle, WA 98101" +214148,AA Batteries (4-pack),1,3.84,06/28/19 17:51,"428 Spruce St, San Francisco, CA 94016" +214149,Flatscreen TV,1,300,06/17/19 13:05,"518 Pine St, New York City, NY 10001" +214150,Lightning Charging Cable,1,14.95,06/24/19 16:21,"442 Jackson St, San Francisco, CA 94016" +214151,Wired Headphones,1,11.99,06/25/19 08:38,"770 Park St, San Francisco, CA 94016" +214152,Bose SoundSport Headphones,1,99.99,06/15/19 17:32,"29 6th St, New York City, NY 10001" +214153,27in FHD Monitor,1,149.99,06/11/19 14:20,"427 9th St, Boston, MA 02215" +214154,Apple Airpods Headphones,1,150,06/15/19 17:28,"947 Main St, Boston, MA 02215" +214155,AAA Batteries (4-pack),1,2.99,06/06/19 10:26,"647 Lakeview St, Seattle, WA 98101" +214156,Bose SoundSport Headphones,1,99.99,06/08/19 11:58,"770 Ridge St, Boston, MA 02215" +214157,AA Batteries (4-pack),2,3.84,06/26/19 12:32,"950 13th St, Los Angeles, CA 90001" +214158,Apple Airpods Headphones,1,150,06/11/19 12:40,"233 Madison St, San Francisco, CA 94016" +214159,USB-C Charging Cable,1,11.95,06/04/19 09:58,"845 Elm St, Dallas, TX 75001" +214160,Wired Headphones,1,11.99,06/25/19 20:22,"992 Main St, Dallas, TX 75001" +214161,Wired Headphones,1,11.99,06/03/19 01:26,"840 Ridge St, Portland, OR 97035" +214162,AA Batteries (4-pack),1,3.84,06/26/19 16:37,"286 Lincoln St, New York City, NY 10001" +214163,AAA Batteries (4-pack),1,2.99,06/26/19 08:36,"52 Pine St, San Francisco, CA 94016" +214164,USB-C Charging Cable,1,11.95,06/07/19 15:00,"514 5th St, Dallas, TX 75001" +214165,Lightning Charging Cable,2,14.95,06/19/19 00:56,"538 Hill St, Boston, MA 02215" +214166,USB-C Charging Cable,1,11.95,06/23/19 10:00,"337 Spruce St, Portland, OR 97035" +214167,20in Monitor,1,109.99,06/06/19 11:36,"629 Hill St, Los Angeles, CA 90001" +214168,Wired Headphones,1,11.99,06/07/19 14:15,"748 Ridge St, San Francisco, CA 94016" +214169,Wired Headphones,1,11.99,06/28/19 15:34,"493 Madison St, Portland, OR 97035" +214170,Bose SoundSport Headphones,1,99.99,06/07/19 13:10,"874 Main St, Los Angeles, CA 90001" +214171,34in Ultrawide Monitor,1,379.99,06/30/19 13:33,"27 Church St, Boston, MA 02215" +214172,Google Phone,1,600,06/28/19 10:15,"167 2nd St, Atlanta, GA 30301" +214173,Lightning Charging Cable,1,14.95,06/15/19 01:43,"620 Ridge St, Los Angeles, CA 90001" +214174,Wired Headphones,1,11.99,06/05/19 14:23,"109 9th St, Atlanta, GA 30301" +214175,AAA Batteries (4-pack),1,2.99,06/02/19 22:39,"139 Jackson St, Seattle, WA 98101" +214176,AAA Batteries (4-pack),1,2.99,06/01/19 09:29,"439 Washington St, Atlanta, GA 30301" +214177,Bose SoundSport Headphones,1,99.99,06/30/19 20:08,"449 1st St, Boston, MA 02215" +214178,27in 4K Gaming Monitor,1,389.99,06/10/19 01:43,"545 Elm St, Austin, TX 73301" +214179,27in FHD Monitor,1,149.99,06/13/19 15:18,"977 Sunset St, Atlanta, GA 30301" +214180,AAA Batteries (4-pack),2,2.99,06/20/19 11:33,"597 6th St, Portland, OR 97035" +214181,AAA Batteries (4-pack),3,2.99,06/02/19 15:52,"59 12th St, San Francisco, CA 94016" +214182,AA Batteries (4-pack),2,3.84,06/09/19 15:41,"293 Maple St, Boston, MA 02215" +214183,Wired Headphones,1,11.99,06/11/19 22:05,"652 Hickory St, San Francisco, CA 94016" +214184,Wired Headphones,1,11.99,06/29/19 10:52,"548 North St, Los Angeles, CA 90001" +214185,27in FHD Monitor,1,149.99,06/27/19 20:02,"275 Johnson St, San Francisco, CA 94016" +214186,Bose SoundSport Headphones,1,99.99,06/09/19 15:26,"211 North St, Seattle, WA 98101" +214187,AAA Batteries (4-pack),2,2.99,06/21/19 12:51,"184 Adams St, New York City, NY 10001" +214188,Bose SoundSport Headphones,1,99.99,06/07/19 21:09,"554 Lakeview St, San Francisco, CA 94016" +214189,20in Monitor,1,109.99,06/16/19 00:58,"898 1st St, Atlanta, GA 30301" +214190,Lightning Charging Cable,1,14.95,06/22/19 16:03,"713 8th St, Portland, OR 97035" +214191,AA Batteries (4-pack),1,3.84,06/16/19 09:37,"547 Lake St, San Francisco, CA 94016" +214192,Bose SoundSport Headphones,1,99.99,06/18/19 11:38,"832 Cherry St, Austin, TX 73301" +214193,AAA Batteries (4-pack),1,2.99,06/21/19 11:32,"221 Washington St, Austin, TX 73301" +214194,Macbook Pro Laptop,1,1700,06/06/19 09:48,"439 9th St, Austin, TX 73301" +214195,AAA Batteries (4-pack),1,2.99,06/30/19 14:05,"315 6th St, Boston, MA 02215" +214196,USB-C Charging Cable,1,11.95,06/19/19 15:01,"441 Church St, San Francisco, CA 94016" +214197,LG Dryer,1,600.0,06/09/19 18:24,"230 Washington St, Los Angeles, CA 90001" +214198,Wired Headphones,1,11.99,06/29/19 11:02,"23 13th St, San Francisco, CA 94016" +214199,Apple Airpods Headphones,1,150,06/05/19 17:40,"707 Park St, Atlanta, GA 30301" +214200,AAA Batteries (4-pack),2,2.99,06/08/19 16:42,"372 Jefferson St, Dallas, TX 75001" +214201,AA Batteries (4-pack),1,3.84,06/26/19 13:52,"616 13th St, New York City, NY 10001" +214202,Lightning Charging Cable,1,14.95,06/03/19 23:28,"868 9th St, Los Angeles, CA 90001" +214203,iPhone,1,700,06/14/19 15:09,"222 Sunset St, Los Angeles, CA 90001" +214204,AA Batteries (4-pack),1,3.84,06/26/19 14:35,"425 Cedar St, Boston, MA 02215" +214205,LG Dryer,1,600.0,06/12/19 19:38,"80 River St, Seattle, WA 98101" +214206,USB-C Charging Cable,1,11.95,06/04/19 18:55,"679 14th St, San Francisco, CA 94016" +214207,20in Monitor,1,109.99,06/04/19 07:05,"697 Highland St, San Francisco, CA 94016" +214208,Lightning Charging Cable,1,14.95,06/10/19 21:00,"121 West St, Atlanta, GA 30301" +214209,34in Ultrawide Monitor,1,379.99,06/26/19 14:26,"294 4th St, New York City, NY 10001" +214210,USB-C Charging Cable,1,11.95,06/08/19 20:29,"458 Lincoln St, Portland, OR 97035" +214211,Vareebadd Phone,1,400,06/02/19 04:56,"191 Ridge St, Boston, MA 02215" +214212,Flatscreen TV,1,300,06/29/19 08:05,"924 Ridge St, Los Angeles, CA 90001" +214213,AAA Batteries (4-pack),1,2.99,06/28/19 21:06,"241 South St, Dallas, TX 75001" +214214,Google Phone,1,600,06/01/19 16:38,"525 Adams St, Boston, MA 02215" +214214,Bose SoundSport Headphones,1,99.99,06/01/19 16:38,"525 Adams St, Boston, MA 02215" +214215,AA Batteries (4-pack),1,3.84,06/29/19 15:05,"135 11th St, San Francisco, CA 94016" +214216,USB-C Charging Cable,1,11.95,06/23/19 21:15,"31 7th St, Boston, MA 02215" +214217,Lightning Charging Cable,1,14.95,06/25/19 20:04,"830 Adams St, New York City, NY 10001" +214218,AAA Batteries (4-pack),2,2.99,06/19/19 11:49,"321 Meadow St, Los Angeles, CA 90001" +214219,iPhone,1,700,06/12/19 11:18,"255 Sunset St, San Francisco, CA 94016" +214220,20in Monitor,1,109.99,06/13/19 20:47,"577 Meadow St, Seattle, WA 98101" +214221,27in FHD Monitor,1,149.99,06/27/19 01:17,"570 Park St, Portland, OR 97035" +214222,Macbook Pro Laptop,1,1700,06/13/19 07:41,"341 Chestnut St, Austin, TX 73301" +214223,Wired Headphones,1,11.99,06/07/19 15:00,"648 Pine St, San Francisco, CA 94016" +214224,Apple Airpods Headphones,1,150,06/10/19 19:18,"588 Jackson St, Atlanta, GA 30301" +214225,Wired Headphones,1,11.99,06/29/19 15:14,"338 4th St, Dallas, TX 75001" +214226,USB-C Charging Cable,1,11.95,06/12/19 18:58,"516 Maple St, Boston, MA 02215" +214227,Macbook Pro Laptop,1,1700,06/18/19 20:41,"684 4th St, New York City, NY 10001" +214228,Lightning Charging Cable,1,14.95,06/13/19 01:32,"977 Chestnut St, San Francisco, CA 94016" +214229,AA Batteries (4-pack),1,3.84,06/13/19 07:34,"937 Chestnut St, Los Angeles, CA 90001" +214230,Bose SoundSport Headphones,1,99.99,06/18/19 11:14,"518 Park St, Portland, OR 97035" +214231,27in 4K Gaming Monitor,1,389.99,06/27/19 08:04,"913 Hill St, Seattle, WA 98101" +214232,iPhone,1,700,06/07/19 10:25,"256 6th St, Dallas, TX 75001" +214233,Lightning Charging Cable,1,14.95,06/09/19 12:02,"428 13th St, San Francisco, CA 94016" +214234,Apple Airpods Headphones,1,150,06/20/19 17:10,"655 Johnson St, Atlanta, GA 30301" +214235,USB-C Charging Cable,1,11.95,06/22/19 10:08,"353 Park St, New York City, NY 10001" +214236,Flatscreen TV,1,300,06/10/19 13:05,"809 Hill St, Los Angeles, CA 90001" +214237,Wired Headphones,1,11.99,06/26/19 22:31,"310 Highland St, Dallas, TX 75001" +214238,AA Batteries (4-pack),1,3.84,06/06/19 11:47,"776 Maple St, Los Angeles, CA 90001" +214239,Lightning Charging Cable,1,14.95,06/18/19 12:45,"859 South St, Atlanta, GA 30301" +214240,Macbook Pro Laptop,1,1700,06/11/19 09:32,"407 14th St, Portland, OR 97035" +214241,AA Batteries (4-pack),1,3.84,06/10/19 10:02,"711 Park St, Seattle, WA 98101" +214242,Lightning Charging Cable,1,14.95,06/28/19 23:40,"577 Hill St, San Francisco, CA 94016" +214243,Wired Headphones,1,11.99,06/25/19 20:23,"200 Pine St, San Francisco, CA 94016" +214244,AA Batteries (4-pack),2,3.84,06/09/19 19:39,"753 Main St, San Francisco, CA 94016" +214245,AAA Batteries (4-pack),1,2.99,06/11/19 21:34,"424 12th St, Boston, MA 02215" +214246,AA Batteries (4-pack),1,3.84,06/04/19 18:47,"226 2nd St, New York City, NY 10001" +214247,AA Batteries (4-pack),1,3.84,06/04/19 17:24,"134 North St, New York City, NY 10001" +214248,Wired Headphones,1,11.99,06/07/19 09:57,"96 Main St, Boston, MA 02215" +214249,AAA Batteries (4-pack),1,2.99,06/17/19 11:17,"365 Jackson St, San Francisco, CA 94016" +214250,USB-C Charging Cable,1,11.95,06/30/19 14:32,"666 Cherry St, Seattle, WA 98101" +214251,Apple Airpods Headphones,1,150,06/25/19 12:04,"705 Johnson St, Austin, TX 73301" +214252,27in 4K Gaming Monitor,1,389.99,06/09/19 15:48,"687 2nd St, Atlanta, GA 30301" +214253,Apple Airpods Headphones,1,150,06/19/19 20:01,"946 Forest St, Los Angeles, CA 90001" +214254,AAA Batteries (4-pack),1,2.99,06/26/19 19:48,"744 Johnson St, Boston, MA 02215" +214255,20in Monitor,1,109.99,06/26/19 08:20,"72 Maple St, Seattle, WA 98101" +214256,Lightning Charging Cable,1,14.95,06/15/19 17:23,"222 Johnson St, Boston, MA 02215" +214257,USB-C Charging Cable,1,11.95,06/12/19 19:59,"560 Willow St, Seattle, WA 98101" +214258,Wired Headphones,1,11.99,06/29/19 20:55,"9 Jefferson St, Seattle, WA 98101" +214259,iPhone,1,700,06/10/19 10:09,"134 Jackson St, Seattle, WA 98101" +214260,Wired Headphones,1,11.99,06/28/19 11:31,"902 Meadow St, Portland, OR 97035" +214261,AAA Batteries (4-pack),1,2.99,06/10/19 09:24,"307 12th St, San Francisco, CA 94016" +214262,27in FHD Monitor,1,149.99,06/07/19 19:25,"107 Lake St, Los Angeles, CA 90001" +214263,Bose SoundSport Headphones,1,99.99,06/15/19 11:31,"228 1st St, Boston, MA 02215" +214264,Apple Airpods Headphones,1,150,06/01/19 18:51,"71 14th St, Los Angeles, CA 90001" +214265,Bose SoundSport Headphones,1,99.99,06/16/19 19:43,"986 Lakeview St, Los Angeles, CA 90001" +214266,Wired Headphones,1,11.99,06/03/19 16:29,"140 Adams St, San Francisco, CA 94016" +214267,Lightning Charging Cable,1,14.95,06/17/19 07:57,"426 Spruce St, New York City, NY 10001" +,,,,, +214268,AA Batteries (4-pack),1,3.84,06/12/19 19:08,"189 Willow St, Los Angeles, CA 90001" +214269,USB-C Charging Cable,1,11.95,06/08/19 12:45,"962 Cedar St, Boston, MA 02215" +214270,Apple Airpods Headphones,1,150,06/27/19 20:17,"98 8th St, Dallas, TX 75001" +214270,34in Ultrawide Monitor,1,379.99,06/27/19 20:17,"98 8th St, Dallas, TX 75001" +214271,Lightning Charging Cable,2,14.95,06/04/19 11:25,"893 Highland St, Los Angeles, CA 90001" +214272,Vareebadd Phone,1,400,06/26/19 08:01,"73 5th St, San Francisco, CA 94016" +214273,Bose SoundSport Headphones,1,99.99,06/08/19 18:30,"97 Meadow St, Seattle, WA 98101" +214274,Apple Airpods Headphones,1,150,06/13/19 13:37,"764 Cherry St, Los Angeles, CA 90001" +214275,Lightning Charging Cable,2,14.95,06/12/19 21:17,"325 West St, San Francisco, CA 94016" +214276,27in 4K Gaming Monitor,1,389.99,06/29/19 10:49,"450 6th St, San Francisco, CA 94016" +214277,Google Phone,1,600,06/04/19 18:03,"292 Pine St, Atlanta, GA 30301" +214278,Apple Airpods Headphones,1,150,06/22/19 12:26,"68 Wilson St, Portland, OR 97035" +214279,USB-C Charging Cable,1,11.95,06/25/19 19:50,"181 9th St, Seattle, WA 98101" +214280,Apple Airpods Headphones,2,150,06/04/19 14:25,"417 2nd St, Atlanta, GA 30301" +214281,AA Batteries (4-pack),2,3.84,06/21/19 21:35,"185 North St, New York City, NY 10001" +214282,Lightning Charging Cable,1,14.95,06/20/19 03:32,"19 9th St, Atlanta, GA 30301" +214283,Lightning Charging Cable,1,14.95,06/21/19 14:56,"891 6th St, New York City, NY 10001" +214284,Macbook Pro Laptop,1,1700,06/15/19 18:58,"61 Johnson St, San Francisco, CA 94016" +214285,Wired Headphones,2,11.99,06/09/19 06:24,"321 Maple St, Dallas, TX 75001" +214286,Apple Airpods Headphones,1,150,06/15/19 15:15,"21 Hickory St, Seattle, WA 98101" +214287,Wired Headphones,1,11.99,06/21/19 16:29,"393 10th St, Boston, MA 02215" +214288,USB-C Charging Cable,1,11.95,06/13/19 09:45,"478 14th St, Portland, OR 97035" +214289,AAA Batteries (4-pack),2,2.99,06/27/19 10:55,"724 Chestnut St, Atlanta, GA 30301" +214290,Apple Airpods Headphones,1,150,06/21/19 12:08,"423 Lake St, Boston, MA 02215" +214291,AA Batteries (4-pack),2,3.84,06/08/19 21:32,"203 6th St, Boston, MA 02215" +214292,Google Phone,1,600,06/25/19 15:08,"507 9th St, New York City, NY 10001" +214292,Wired Headphones,1,11.99,06/25/19 15:08,"507 9th St, New York City, NY 10001" +214293,AA Batteries (4-pack),1,3.84,06/20/19 20:44,"724 Walnut St, San Francisco, CA 94016" +214294,iPhone,1,700,06/02/19 20:01,"516 Highland St, Atlanta, GA 30301" +214295,ThinkPad Laptop,1,999.99,06/18/19 00:05,"372 Dogwood St, Los Angeles, CA 90001" +214296,Wired Headphones,1,11.99,06/19/19 13:02,"138 Washington St, San Francisco, CA 94016" +214297,ThinkPad Laptop,1,999.99,06/15/19 23:09,"760 Main St, Seattle, WA 98101" +214298,AAA Batteries (4-pack),1,2.99,06/18/19 10:28,"176 South St, New York City, NY 10001" +214299,Apple Airpods Headphones,1,150,06/21/19 02:29,"47 1st St, Los Angeles, CA 90001" +214300,34in Ultrawide Monitor,1,379.99,06/09/19 19:33,"915 Highland St, San Francisco, CA 94016" +214301,USB-C Charging Cable,1,11.95,06/02/19 06:36,"120 Hill St, San Francisco, CA 94016" +214302,Macbook Pro Laptop,1,1700,06/23/19 18:07,"174 Hill St, San Francisco, CA 94016" +214303,Wired Headphones,1,11.99,06/16/19 13:19,"837 4th St, Atlanta, GA 30301" +214304,AAA Batteries (4-pack),1,2.99,06/21/19 09:56,"826 10th St, Seattle, WA 98101" +214305,Bose SoundSport Headphones,1,99.99,06/19/19 22:32,"377 West St, San Francisco, CA 94016" +214306,AA Batteries (4-pack),2,3.84,06/25/19 21:06,"150 Pine St, San Francisco, CA 94016" +214307,Lightning Charging Cable,1,14.95,06/25/19 17:43,"87 Walnut St, Portland, OR 97035" +214308,AAA Batteries (4-pack),1,2.99,06/25/19 16:44,"275 2nd St, Boston, MA 02215" +214309,27in FHD Monitor,1,149.99,06/09/19 13:19,"504 South St, Los Angeles, CA 90001" +214310,iPhone,1,700,06/30/19 22:21,"568 2nd St, San Francisco, CA 94016" +214311,20in Monitor,1,109.99,06/14/19 23:16,"156 South St, Los Angeles, CA 90001" +214312,USB-C Charging Cable,1,11.95,06/09/19 12:30,"358 Meadow St, San Francisco, CA 94016" +214313,Wired Headphones,1,11.99,06/12/19 08:54,"653 Adams St, Seattle, WA 98101" +214314,Flatscreen TV,1,300,06/05/19 06:47,"207 Wilson St, San Francisco, CA 94016" +214315,AAA Batteries (4-pack),1,2.99,06/03/19 07:43,"750 Church St, New York City, NY 10001" +214316,USB-C Charging Cable,2,11.95,06/14/19 21:10,"750 North St, Los Angeles, CA 90001" +214317,USB-C Charging Cable,1,11.95,06/18/19 19:53,"895 River St, Dallas, TX 75001" +214318,Apple Airpods Headphones,1,150,06/04/19 13:51,"105 Lakeview St, Boston, MA 02215" +214319,27in 4K Gaming Monitor,1,389.99,06/01/19 12:13,"76 Wilson St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +214320,iPhone,1,700,06/10/19 20:07,"538 Jefferson St, Seattle, WA 98101" +214321,Bose SoundSport Headphones,1,99.99,06/11/19 11:05,"383 Main St, Atlanta, GA 30301" +214322,Lightning Charging Cable,1,14.95,06/29/19 12:02,"395 West St, Portland, OR 97035" +214323,USB-C Charging Cable,1,11.95,06/25/19 19:16,"875 Main St, Seattle, WA 98101" +214324,AA Batteries (4-pack),3,3.84,06/18/19 14:51,"234 Ridge St, New York City, NY 10001" +214325,Bose SoundSport Headphones,1,99.99,06/24/19 21:53,"372 Hickory St, Los Angeles, CA 90001" +214326,Apple Airpods Headphones,1,150,06/03/19 14:54,"44 6th St, San Francisco, CA 94016" +214327,Macbook Pro Laptop,1,1700,06/17/19 15:48,"487 Wilson St, Atlanta, GA 30301" +214328,Bose SoundSport Headphones,1,99.99,06/08/19 20:24,"223 West St, Los Angeles, CA 90001" +214329,Apple Airpods Headphones,1,150,06/01/19 13:01,"345 Johnson St, Austin, TX 73301" +214330,Lightning Charging Cable,1,14.95,06/14/19 21:00,"813 Hill St, Dallas, TX 75001" +214331,Lightning Charging Cable,1,14.95,06/13/19 19:32,"786 9th St, Los Angeles, CA 90001" +214332,Google Phone,1,600,06/29/19 14:51,"644 Hill St, San Francisco, CA 94016" +214333,AA Batteries (4-pack),3,3.84,06/10/19 18:27,"587 Dogwood St, Los Angeles, CA 90001" +214334,27in FHD Monitor,1,149.99,06/07/19 01:09,"149 Jackson St, Austin, TX 73301" +214335,Wired Headphones,1,11.99,06/12/19 20:08,"729 Cedar St, Boston, MA 02215" +214336,34in Ultrawide Monitor,1,379.99,06/24/19 09:24,"269 South St, New York City, NY 10001" +214337,AA Batteries (4-pack),1,3.84,06/30/19 20:18,"756 Maple St, San Francisco, CA 94016" +214338,AA Batteries (4-pack),1,3.84,06/09/19 14:39,"445 Sunset St, Los Angeles, CA 90001" +214339,Macbook Pro Laptop,1,1700,06/22/19 14:33,"818 Washington St, New York City, NY 10001" +214340,USB-C Charging Cable,1,11.95,06/02/19 19:08,"454 6th St, New York City, NY 10001" +214341,20in Monitor,1,109.99,06/11/19 07:15,"754 13th St, New York City, NY 10001" +214342,Apple Airpods Headphones,1,150,06/12/19 00:31,"960 Sunset St, Los Angeles, CA 90001" +214343,27in FHD Monitor,1,149.99,06/22/19 12:15,"459 North St, San Francisco, CA 94016" +214344,ThinkPad Laptop,1,999.99,06/17/19 19:33,"106 Ridge St, New York City, NY 10001" +214345,iPhone,1,700,06/19/19 18:43,"100 Dogwood St, San Francisco, CA 94016" +214346,Lightning Charging Cable,1,14.95,06/30/19 13:53,"506 Church St, Dallas, TX 75001" +214347,AA Batteries (4-pack),1,3.84,06/17/19 16:59,"313 Lake St, Seattle, WA 98101" +214347,34in Ultrawide Monitor,1,379.99,06/17/19 16:59,"313 Lake St, Seattle, WA 98101" +,,,,, +214348,27in FHD Monitor,1,149.99,06/04/19 14:34,"190 Lake St, Boston, MA 02215" +214349,USB-C Charging Cable,1,11.95,06/16/19 12:14,"218 13th St, Dallas, TX 75001" +214350,ThinkPad Laptop,1,999.99,06/01/19 19:41,"711 Meadow St, San Francisco, CA 94016" +214351,AA Batteries (4-pack),1,3.84,06/29/19 20:57,"259 2nd St, Portland, OR 97035" +214352,Wired Headphones,1,11.99,06/28/19 20:02,"429 Spruce St, Boston, MA 02215" +214353,Vareebadd Phone,1,400,06/19/19 17:41,"360 4th St, San Francisco, CA 94016" +214354,Google Phone,1,600,06/05/19 17:33,"173 Forest St, Atlanta, GA 30301" +214354,USB-C Charging Cable,1,11.95,06/05/19 17:33,"173 Forest St, Atlanta, GA 30301" +214355,Bose SoundSport Headphones,1,99.99,06/10/19 14:39,"521 Johnson St, Seattle, WA 98101" +214356,AA Batteries (4-pack),4,3.84,06/05/19 11:42,"775 Pine St, New York City, NY 10001" +214357,Google Phone,1,600,06/01/19 11:57,"971 Willow St, Los Angeles, CA 90001" +214358,AA Batteries (4-pack),2,3.84,06/04/19 07:20,"69 4th St, San Francisco, CA 94016" +214359,20in Monitor,1,109.99,06/01/19 14:42,"463 12th St, Dallas, TX 75001" +214360,Google Phone,1,600,06/07/19 21:19,"729 Meadow St, San Francisco, CA 94016" +214361,Macbook Pro Laptop,1,1700,06/29/19 20:46,"274 West St, Atlanta, GA 30301" +214362,Bose SoundSport Headphones,1,99.99,06/18/19 19:41,"907 Madison St, Los Angeles, CA 90001" +214363,Wired Headphones,1,11.99,06/22/19 11:29,"918 West St, Los Angeles, CA 90001" +214364,Vareebadd Phone,1,400,06/25/19 13:30,"950 Cedar St, New York City, NY 10001" +214365,Vareebadd Phone,1,400,06/27/19 10:50,"253 Center St, Dallas, TX 75001" +214366,USB-C Charging Cable,1,11.95,06/05/19 10:51,"752 Meadow St, San Francisco, CA 94016" +214367,Wired Headphones,1,11.99,06/19/19 08:54,"546 10th St, Boston, MA 02215" +214368,iPhone,1,700,06/24/19 23:09,"445 5th St, San Francisco, CA 94016" +214369,ThinkPad Laptop,1,999.99,06/28/19 10:11,"676 Park St, Los Angeles, CA 90001" +214370,USB-C Charging Cable,1,11.95,06/10/19 09:03,"796 Church St, Seattle, WA 98101" +214371,USB-C Charging Cable,1,11.95,06/20/19 12:27,"846 Forest St, San Francisco, CA 94016" +214372,USB-C Charging Cable,1,11.95,06/29/19 23:13,"971 Chestnut St, Seattle, WA 98101" +214373,34in Ultrawide Monitor,1,379.99,06/21/19 22:55,"813 4th St, Seattle, WA 98101" +214374,Apple Airpods Headphones,1,150,06/04/19 13:59,"894 Maple St, Seattle, WA 98101" +214375,27in FHD Monitor,1,149.99,06/04/19 14:04,"67 2nd St, Dallas, TX 75001" +214376,Apple Airpods Headphones,1,150,06/05/19 19:43,"518 Church St, New York City, NY 10001" +214377,AA Batteries (4-pack),1,3.84,06/27/19 08:52,"875 Highland St, Los Angeles, CA 90001" +214378,AAA Batteries (4-pack),1,2.99,06/10/19 20:53,"893 12th St, San Francisco, CA 94016" +214379,Apple Airpods Headphones,1,150,06/15/19 15:17,"653 5th St, Dallas, TX 75001" +214380,AA Batteries (4-pack),1,3.84,06/03/19 11:50,"814 Adams St, Los Angeles, CA 90001" +214381,AA Batteries (4-pack),2,3.84,06/15/19 11:55,"789 West St, Los Angeles, CA 90001" +214382,Lightning Charging Cable,1,14.95,07/01/19 00:50,"369 2nd St, San Francisco, CA 94016" +214383,AAA Batteries (4-pack),2,2.99,06/30/19 12:36,"390 Cherry St, San Francisco, CA 94016" +214384,USB-C Charging Cable,1,11.95,06/08/19 19:03,"937 North St, San Francisco, CA 94016" +214385,iPhone,1,700,06/04/19 17:33,"932 Chestnut St, San Francisco, CA 94016" +214386,AAA Batteries (4-pack),1,2.99,06/03/19 16:46,"962 Spruce St, Austin, TX 73301" +214387,27in FHD Monitor,1,149.99,06/21/19 20:22,"24 Hill St, San Francisco, CA 94016" +214388,AA Batteries (4-pack),1,3.84,06/10/19 21:39,"436 2nd St, San Francisco, CA 94016" +214389,Bose SoundSport Headphones,1,99.99,06/21/19 10:13,"73 1st St, Los Angeles, CA 90001" +214390,Bose SoundSport Headphones,1,99.99,06/08/19 19:17,"758 Ridge St, Atlanta, GA 30301" +214391,Bose SoundSport Headphones,1,99.99,06/17/19 17:58,"629 Center St, New York City, NY 10001" +214392,Wired Headphones,1,11.99,06/15/19 12:36,"19 Center St, Los Angeles, CA 90001" +214393,Google Phone,1,600,06/20/19 11:54,"363 Hill St, San Francisco, CA 94016" +214394,AA Batteries (4-pack),1,3.84,06/20/19 14:29,"495 Chestnut St, San Francisco, CA 94016" +214395,34in Ultrawide Monitor,1,379.99,06/23/19 11:38,"967 Wilson St, Austin, TX 73301" +214396,Macbook Pro Laptop,1,1700,06/23/19 12:35,"318 Park St, Los Angeles, CA 90001" +214397,AAA Batteries (4-pack),1,2.99,06/24/19 22:28,"783 1st St, Boston, MA 02215" +214398,Bose SoundSport Headphones,1,99.99,06/07/19 12:16,"986 Lincoln St, Portland, ME 04101" +214399,AAA Batteries (4-pack),1,2.99,06/10/19 20:19,"699 13th St, Dallas, TX 75001" +214400,Flatscreen TV,1,300,06/24/19 22:03,"423 4th St, New York City, NY 10001" +214401,USB-C Charging Cable,1,11.95,06/10/19 21:45,"709 Chestnut St, Boston, MA 02215" +214402,27in FHD Monitor,1,149.99,06/27/19 08:47,"975 Highland St, Austin, TX 73301" +214403,Flatscreen TV,1,300,06/12/19 01:22,"213 Highland St, San Francisco, CA 94016" +214404,Lightning Charging Cable,1,14.95,06/01/19 17:56,"673 Jefferson St, New York City, NY 10001" +214405,Lightning Charging Cable,1,14.95,06/16/19 20:09,"392 Elm St, Portland, OR 97035" +214406,iPhone,1,700,06/04/19 10:39,"491 Chestnut St, Los Angeles, CA 90001" +214407,USB-C Charging Cable,1,11.95,06/18/19 22:12,"636 6th St, Los Angeles, CA 90001" +214408,AAA Batteries (4-pack),1,2.99,06/11/19 15:25,"504 Main St, Dallas, TX 75001" +214409,Apple Airpods Headphones,1,150,06/14/19 13:08,"668 8th St, San Francisco, CA 94016" +214410,Wired Headphones,1,11.99,06/12/19 11:03,"54 10th St, Dallas, TX 75001" +214411,AAA Batteries (4-pack),1,2.99,06/24/19 19:43,"228 Lake St, Portland, ME 04101" +214412,Apple Airpods Headphones,1,150,06/07/19 21:02,"371 River St, Atlanta, GA 30301" +214413,Lightning Charging Cable,1,14.95,06/01/19 18:26,"925 Sunset St, Boston, MA 02215" +214414,AA Batteries (4-pack),1,3.84,06/02/19 17:13,"122 Park St, San Francisco, CA 94016" +214414,AAA Batteries (4-pack),3,2.99,06/02/19 17:13,"122 Park St, San Francisco, CA 94016" +214415,Apple Airpods Headphones,1,150,06/23/19 15:57,"518 12th St, Los Angeles, CA 90001" +214416,Wired Headphones,1,11.99,06/12/19 17:15,"762 Washington St, Atlanta, GA 30301" +214417,Apple Airpods Headphones,1,150,06/05/19 17:34,"586 Dogwood St, Los Angeles, CA 90001" +214418,AA Batteries (4-pack),1,3.84,06/24/19 16:37,"117 Washington St, Austin, TX 73301" +214419,AAA Batteries (4-pack),2,2.99,06/10/19 05:54,"740 Forest St, San Francisco, CA 94016" +214420,Google Phone,1,600,06/07/19 16:44,"166 Meadow St, Seattle, WA 98101" +214421,Apple Airpods Headphones,1,150,06/14/19 22:50,"957 Willow St, San Francisco, CA 94016" +214422,USB-C Charging Cable,1,11.95,06/11/19 01:40,"778 Adams St, Seattle, WA 98101" +214423,Lightning Charging Cable,1,14.95,06/11/19 16:17,"215 Johnson St, Seattle, WA 98101" +214424,AAA Batteries (4-pack),2,2.99,06/29/19 08:54,"311 Lake St, San Francisco, CA 94016" +214425,Flatscreen TV,1,300,06/22/19 21:28,"822 Highland St, Boston, MA 02215" +214426,Lightning Charging Cable,1,14.95,06/18/19 14:14,"388 Adams St, Austin, TX 73301" +214427,AA Batteries (4-pack),1,3.84,06/21/19 20:34,"478 Meadow St, Atlanta, GA 30301" +214428,USB-C Charging Cable,2,11.95,06/22/19 22:01,"182 Johnson St, Atlanta, GA 30301" +214429,iPhone,1,700,06/25/19 18:46,"691 South St, Los Angeles, CA 90001" +214429,Lightning Charging Cable,1,14.95,06/25/19 18:46,"691 South St, Los Angeles, CA 90001" +214430,USB-C Charging Cable,1,11.95,06/01/19 03:30,"485 8th St, Atlanta, GA 30301" +214431,USB-C Charging Cable,1,11.95,06/15/19 11:58,"896 Adams St, Boston, MA 02215" +214432,LG Washing Machine,1,600.0,06/12/19 11:44,"880 Willow St, San Francisco, CA 94016" +214433,USB-C Charging Cable,1,11.95,06/26/19 11:47,"915 Lake St, Dallas, TX 75001" +214434,Wired Headphones,1,11.99,06/22/19 07:54,"715 Elm St, Dallas, TX 75001" +214435,Lightning Charging Cable,1,14.95,06/01/19 08:05,"162 4th St, Atlanta, GA 30301" +214436,Bose SoundSport Headphones,1,99.99,06/02/19 12:21,"35 Spruce St, Seattle, WA 98101" +214437,20in Monitor,1,109.99,06/16/19 20:57,"488 9th St, Atlanta, GA 30301" +214438,USB-C Charging Cable,1,11.95,06/17/19 18:18,"577 Jackson St, Boston, MA 02215" +214439,20in Monitor,1,109.99,06/02/19 21:26,"470 Wilson St, Dallas, TX 75001" +214440,Lightning Charging Cable,2,14.95,06/15/19 20:36,"382 1st St, San Francisco, CA 94016" +214441,Macbook Pro Laptop,1,1700,06/25/19 18:25,"238 Washington St, New York City, NY 10001" +214442,AA Batteries (4-pack),1,3.84,07/01/19 00:22,"796 Willow St, Portland, ME 04101" +214443,AA Batteries (4-pack),1,3.84,06/14/19 07:15,"677 Walnut St, New York City, NY 10001" +214444,Lightning Charging Cable,1,14.95,06/13/19 12:56,"798 Main St, San Francisco, CA 94016" +214445,Google Phone,1,600,06/20/19 13:07,"708 West St, New York City, NY 10001" +214446,27in 4K Gaming Monitor,1,389.99,06/29/19 16:57,"586 11th St, Seattle, WA 98101" +214447,Apple Airpods Headphones,1,150,06/18/19 12:24,"424 Spruce St, Dallas, TX 75001" +214448,Lightning Charging Cable,2,14.95,06/29/19 10:57,"51 Meadow St, San Francisco, CA 94016" +214449,27in FHD Monitor,1,149.99,06/28/19 10:48,"736 Johnson St, Portland, OR 97035" +214450,AAA Batteries (4-pack),1,2.99,06/14/19 20:28,"380 1st St, San Francisco, CA 94016" +214451,Wired Headphones,1,11.99,06/12/19 10:12,"760 Hill St, San Francisco, CA 94016" +214452,Wired Headphones,1,11.99,06/22/19 01:01,"978 Lake St, Los Angeles, CA 90001" +214453,AA Batteries (4-pack),1,3.84,06/11/19 12:38,"447 10th St, New York City, NY 10001" +214454,AAA Batteries (4-pack),2,2.99,06/06/19 17:39,"835 14th St, Portland, ME 04101" +214455,AAA Batteries (4-pack),3,2.99,06/12/19 13:51,"755 Johnson St, Los Angeles, CA 90001" +214456,27in FHD Monitor,1,149.99,06/03/19 20:02,"80 Cedar St, Boston, MA 02215" +214457,20in Monitor,1,109.99,06/26/19 21:45,"675 9th St, San Francisco, CA 94016" +214458,AAA Batteries (4-pack),2,2.99,06/09/19 19:28,"381 North St, New York City, NY 10001" +214459,AAA Batteries (4-pack),1,2.99,06/21/19 07:28,"957 Church St, Los Angeles, CA 90001" +214460,20in Monitor,1,109.99,06/24/19 14:02,"978 10th St, San Francisco, CA 94016" +214461,Vareebadd Phone,1,400,06/14/19 18:05,"433 Elm St, San Francisco, CA 94016" +214462,34in Ultrawide Monitor,1,379.99,06/26/19 13:19,"912 Elm St, Dallas, TX 75001" +214463,34in Ultrawide Monitor,1,379.99,06/02/19 20:24,"233 Jefferson St, Boston, MA 02215" +214464,iPhone,1,700,06/30/19 12:14,"848 Pine St, San Francisco, CA 94016" +214465,27in FHD Monitor,1,149.99,06/09/19 16:33,"292 Park St, San Francisco, CA 94016" +214466,Apple Airpods Headphones,1,150,06/01/19 10:49,"728 Johnson St, New York City, NY 10001" +214467,20in Monitor,1,109.99,06/08/19 20:39,"998 Johnson St, Dallas, TX 75001" +214468,USB-C Charging Cable,1,11.95,06/24/19 01:21,"788 West St, Los Angeles, CA 90001" +214469,ThinkPad Laptop,1,999.99,06/09/19 22:28,"232 Cedar St, Boston, MA 02215" +214470,AA Batteries (4-pack),1,3.84,06/11/19 23:49,"67 Wilson St, Austin, TX 73301" +214471,AAA Batteries (4-pack),3,2.99,06/01/19 21:59,"324 Dogwood St, Los Angeles, CA 90001" +214472,AAA Batteries (4-pack),2,2.99,06/12/19 00:12,"105 West St, Boston, MA 02215" +214473,Google Phone,1,600,06/08/19 06:59,"327 Lake St, Seattle, WA 98101" +214474,AAA Batteries (4-pack),1,2.99,06/10/19 10:49,"723 4th St, San Francisco, CA 94016" +214475,Wired Headphones,1,11.99,06/04/19 08:04,"268 Lake St, Austin, TX 73301" +214476,AAA Batteries (4-pack),1,2.99,06/15/19 15:45,"27 Cedar St, Los Angeles, CA 90001" +214477,Macbook Pro Laptop,1,1700,06/03/19 11:43,"659 Pine St, Austin, TX 73301" +214477,AA Batteries (4-pack),1,3.84,06/03/19 11:43,"659 Pine St, Austin, TX 73301" +214478,34in Ultrawide Monitor,1,379.99,06/05/19 10:32,"743 Sunset St, New York City, NY 10001" +214479,AAA Batteries (4-pack),1,2.99,06/02/19 21:59,"308 14th St, Austin, TX 73301" +214480,AAA Batteries (4-pack),2,2.99,06/17/19 14:41,"200 2nd St, Los Angeles, CA 90001" +214481,Bose SoundSport Headphones,1,99.99,06/28/19 14:04,"15 Lake St, Los Angeles, CA 90001" +214481,AAA Batteries (4-pack),1,2.99,06/28/19 14:04,"15 Lake St, Los Angeles, CA 90001" +214482,Lightning Charging Cable,1,14.95,06/16/19 22:50,"233 6th St, Austin, TX 73301" +214483,AA Batteries (4-pack),1,3.84,06/01/19 23:24,"366 Johnson St, San Francisco, CA 94016" +214484,Wired Headphones,1,11.99,06/11/19 22:50,"16 Dogwood St, San Francisco, CA 94016" +214485,USB-C Charging Cable,1,11.95,06/02/19 14:31,"992 Center St, Boston, MA 02215" +214486,USB-C Charging Cable,1,11.95,06/05/19 12:26,"202 Spruce St, Boston, MA 02215" +214487,34in Ultrawide Monitor,1,379.99,06/29/19 07:25,"204 Sunset St, San Francisco, CA 94016" +214488,Apple Airpods Headphones,1,150,06/19/19 22:24,"728 Johnson St, San Francisco, CA 94016" +214489,iPhone,1,700,06/28/19 06:56,"919 10th St, Dallas, TX 75001" +214490,AAA Batteries (4-pack),1,2.99,06/06/19 22:38,"817 Park St, Los Angeles, CA 90001" +214491,34in Ultrawide Monitor,1,379.99,06/22/19 11:52,"260 West St, Los Angeles, CA 90001" +214492,AA Batteries (4-pack),1,3.84,06/25/19 16:21,"739 Madison St, New York City, NY 10001" +214493,Bose SoundSport Headphones,1,99.99,06/25/19 02:09,"968 Willow St, Atlanta, GA 30301" +214494,Bose SoundSport Headphones,1,99.99,06/10/19 09:43,"616 Meadow St, Seattle, WA 98101" +214495,Flatscreen TV,1,300,06/19/19 15:45,"649 6th St, New York City, NY 10001" +214496,USB-C Charging Cable,1,11.95,06/20/19 11:30,"363 Lincoln St, Boston, MA 02215" +214497,Wired Headphones,1,11.99,06/26/19 21:42,"711 8th St, San Francisco, CA 94016" +214498,iPhone,1,700,06/18/19 18:28,"79 7th St, San Francisco, CA 94016" +214499,AA Batteries (4-pack),1,3.84,06/07/19 06:26,"715 Jefferson St, San Francisco, CA 94016" +214500,Bose SoundSport Headphones,1,99.99,06/08/19 12:21,"315 West St, Atlanta, GA 30301" +214501,Wired Headphones,1,11.99,06/27/19 18:47,"420 Elm St, New York City, NY 10001" +214502,27in FHD Monitor,1,149.99,06/10/19 09:32,"519 6th St, San Francisco, CA 94016" +214503,Bose SoundSport Headphones,1,99.99,06/12/19 22:36,"970 5th St, San Francisco, CA 94016" +214504,AA Batteries (4-pack),1,3.84,06/05/19 15:32,"700 Sunset St, Seattle, WA 98101" +214505,Apple Airpods Headphones,1,150,06/02/19 18:13,"505 Madison St, Portland, OR 97035" +214506,Wired Headphones,1,11.99,06/19/19 17:32,"528 North St, Los Angeles, CA 90001" +214507,27in 4K Gaming Monitor,1,389.99,06/23/19 13:07,"75 Ridge St, Boston, MA 02215" +214508,34in Ultrawide Monitor,1,379.99,06/15/19 20:22,"833 8th St, New York City, NY 10001" +214509,USB-C Charging Cable,1,11.95,06/02/19 10:48,"877 7th St, Dallas, TX 75001" +214510,ThinkPad Laptop,1,999.99,06/28/19 19:28,"889 Walnut St, San Francisco, CA 94016" +214511,Apple Airpods Headphones,1,150,06/22/19 09:01,"976 Lakeview St, Boston, MA 02215" +214512,AA Batteries (4-pack),1,3.84,06/20/19 12:50,"870 10th St, Los Angeles, CA 90001" +214513,Lightning Charging Cable,1,14.95,06/15/19 07:48,"835 Walnut St, Seattle, WA 98101" +214514,Wired Headphones,1,11.99,06/25/19 18:49,"138 Jackson St, Dallas, TX 75001" +214515,27in 4K Gaming Monitor,1,389.99,06/04/19 12:12,"216 4th St, Los Angeles, CA 90001" +214516,AAA Batteries (4-pack),1,2.99,06/18/19 23:11,"777 9th St, San Francisco, CA 94016" +214517,Wired Headphones,1,11.99,06/11/19 20:43,"685 12th St, San Francisco, CA 94016" +214518,USB-C Charging Cable,1,11.95,06/11/19 12:23,"939 Lakeview St, Portland, OR 97035" +214519,AAA Batteries (4-pack),2,2.99,06/21/19 10:26,"109 Main St, Austin, TX 73301" +214520,Wired Headphones,1,11.99,06/10/19 17:15,"807 Main St, New York City, NY 10001" +214521,Apple Airpods Headphones,1,150,06/09/19 10:10,"146 Washington St, Boston, MA 02215" +214522,Apple Airpods Headphones,1,150,06/15/19 19:27,"418 1st St, San Francisco, CA 94016" +214523,iPhone,1,700,06/16/19 16:25,"240 Hill St, Dallas, TX 75001" +214524,USB-C Charging Cable,1,11.95,06/10/19 11:36,"10 River St, San Francisco, CA 94016" +214525,Apple Airpods Headphones,1,150,06/24/19 19:57,"582 Lake St, Dallas, TX 75001" +,,,,, +214526,AA Batteries (4-pack),1,3.84,06/27/19 12:29,"246 Sunset St, Boston, MA 02215" +214527,USB-C Charging Cable,1,11.95,06/02/19 17:10,"176 12th St, Los Angeles, CA 90001" +214528,Wired Headphones,1,11.99,06/28/19 11:28,"773 Main St, Boston, MA 02215" +214529,AAA Batteries (4-pack),2,2.99,06/27/19 12:49,"901 8th St, Atlanta, GA 30301" +214530,AA Batteries (4-pack),2,3.84,06/29/19 12:35,"587 Park St, Los Angeles, CA 90001" +214531,Lightning Charging Cable,1,14.95,06/05/19 12:53,"430 Hill St, San Francisco, CA 94016" +214532,Bose SoundSport Headphones,1,99.99,06/03/19 14:39,"969 14th St, Austin, TX 73301" +214533,USB-C Charging Cable,1,11.95,06/26/19 10:03,"951 Jefferson St, Atlanta, GA 30301" +214534,Flatscreen TV,1,300,06/07/19 23:17,"401 Madison St, Dallas, TX 75001" +214535,USB-C Charging Cable,1,11.95,06/25/19 10:13,"296 Hickory St, Atlanta, GA 30301" +214536,Apple Airpods Headphones,1,150,06/27/19 17:29,"115 Jefferson St, Atlanta, GA 30301" +214537,ThinkPad Laptop,1,999.99,06/13/19 18:39,"344 Center St, San Francisco, CA 94016" +214538,AAA Batteries (4-pack),2,2.99,06/08/19 10:22,"431 6th St, Atlanta, GA 30301" +214539,AAA Batteries (4-pack),3,2.99,06/16/19 20:32,"320 Washington St, Austin, TX 73301" +214540,AA Batteries (4-pack),2,3.84,06/12/19 00:05,"300 14th St, New York City, NY 10001" +214541,Apple Airpods Headphones,1,150,06/26/19 06:39,"720 Washington St, New York City, NY 10001" +214542,AA Batteries (4-pack),1,3.84,06/21/19 02:33,"604 North St, Los Angeles, CA 90001" +214543,Vareebadd Phone,1,400,06/18/19 20:16,"622 1st St, Los Angeles, CA 90001" +214544,27in FHD Monitor,1,149.99,06/25/19 17:29,"160 Jackson St, Portland, OR 97035" +214545,LG Dryer,1,600.0,06/04/19 23:12,"983 7th St, San Francisco, CA 94016" +214546,iPhone,1,700,06/13/19 13:28,"60 Sunset St, Dallas, TX 75001" +214547,Flatscreen TV,1,300,06/18/19 21:32,"196 Washington St, New York City, NY 10001" +214548,Macbook Pro Laptop,1,1700,06/19/19 21:32,"299 Adams St, Los Angeles, CA 90001" +214549,AAA Batteries (4-pack),2,2.99,06/02/19 14:07,"155 Hill St, San Francisco, CA 94016" +214550,AA Batteries (4-pack),2,3.84,06/16/19 14:20,"677 Hill St, Los Angeles, CA 90001" +214551,AAA Batteries (4-pack),2,2.99,06/16/19 09:05,"877 Madison St, San Francisco, CA 94016" +214552,Lightning Charging Cable,1,14.95,06/10/19 14:15,"576 5th St, New York City, NY 10001" +214553,USB-C Charging Cable,1,11.95,06/21/19 19:21,"541 Madison St, New York City, NY 10001" +214554,Bose SoundSport Headphones,1,99.99,06/12/19 15:43,"262 South St, Dallas, TX 75001" +214555,Wired Headphones,1,11.99,06/26/19 08:03,"555 11th St, San Francisco, CA 94016" +214556,AAA Batteries (4-pack),2,2.99,06/05/19 06:06,"309 Maple St, San Francisco, CA 94016" +214557,Wired Headphones,2,11.99,06/12/19 12:29,"712 Lake St, San Francisco, CA 94016" +214558,Lightning Charging Cable,1,14.95,06/25/19 18:01,"772 4th St, Atlanta, GA 30301" +214559,AAA Batteries (4-pack),1,2.99,06/16/19 19:01,"810 Center St, San Francisco, CA 94016" +214560,AAA Batteries (4-pack),2,2.99,06/22/19 20:19,"533 Chestnut St, San Francisco, CA 94016" +214561,Wired Headphones,1,11.99,06/28/19 13:35,"171 Madison St, Seattle, WA 98101" +214562,AAA Batteries (4-pack),2,2.99,06/13/19 12:15,"680 5th St, New York City, NY 10001" +214563,Wired Headphones,1,11.99,06/01/19 14:03,"862 9th St, Atlanta, GA 30301" +214564,AA Batteries (4-pack),2,3.84,06/12/19 21:57,"257 Wilson St, San Francisco, CA 94016" +214565,Bose SoundSport Headphones,1,99.99,06/16/19 18:26,"54 Elm St, Austin, TX 73301" +214566,Vareebadd Phone,2,400,06/22/19 15:52,"554 9th St, Los Angeles, CA 90001" +214567,Lightning Charging Cable,1,14.95,06/14/19 23:16,"129 5th St, New York City, NY 10001" +214568,27in FHD Monitor,1,149.99,06/09/19 20:25,"733 2nd St, Boston, MA 02215" +214569,AA Batteries (4-pack),1,3.84,06/13/19 13:13,"15 1st St, San Francisco, CA 94016" +214570,USB-C Charging Cable,1,11.95,06/10/19 14:07,"881 Pine St, Seattle, WA 98101" +214571,AAA Batteries (4-pack),1,2.99,06/30/19 10:46,"522 River St, Seattle, WA 98101" +214572,Lightning Charging Cable,1,14.95,06/21/19 20:15,"532 Main St, Boston, MA 02215" +214573,Lightning Charging Cable,1,14.95,06/03/19 19:51,"285 Cedar St, San Francisco, CA 94016" +214574,USB-C Charging Cable,2,11.95,06/30/19 15:34,"533 8th St, San Francisco, CA 94016" +214575,AAA Batteries (4-pack),3,2.99,06/07/19 13:58,"770 Lincoln St, Boston, MA 02215" +214576,Google Phone,1,600,06/05/19 00:56,"444 Park St, San Francisco, CA 94016" +214576,USB-C Charging Cable,1,11.95,06/05/19 00:56,"444 Park St, San Francisco, CA 94016" +214577,Wired Headphones,1,11.99,06/29/19 20:03,"608 Main St, Boston, MA 02215" +214578,AAA Batteries (4-pack),1,2.99,06/18/19 23:03,"780 9th St, San Francisco, CA 94016" +214579,USB-C Charging Cable,1,11.95,06/27/19 09:18,"896 River St, New York City, NY 10001" +214580,27in FHD Monitor,1,149.99,06/25/19 21:11,"860 7th St, San Francisco, CA 94016" +214581,AA Batteries (4-pack),1,3.84,06/07/19 23:04,"92 Jefferson St, Atlanta, GA 30301" +214582,AA Batteries (4-pack),3,3.84,06/30/19 15:24,"241 14th St, Dallas, TX 75001" +214583,USB-C Charging Cable,1,11.95,06/30/19 18:51,"309 Dogwood St, Los Angeles, CA 90001" +214584,Bose SoundSport Headphones,1,99.99,06/08/19 02:12,"676 Johnson St, Atlanta, GA 30301" +214585,USB-C Charging Cable,1,11.95,06/11/19 18:07,"160 Adams St, San Francisco, CA 94016" +214586,USB-C Charging Cable,1,11.95,06/25/19 19:42,"321 Hill St, Dallas, TX 75001" +214587,Wired Headphones,1,11.99,06/09/19 18:34,"130 11th St, Los Angeles, CA 90001" +214588,AA Batteries (4-pack),1,3.84,06/05/19 12:38,"495 Jefferson St, Los Angeles, CA 90001" +214589,Wired Headphones,1,11.99,06/24/19 07:10,"2 Adams St, San Francisco, CA 94016" +214590,USB-C Charging Cable,2,11.95,06/09/19 18:22,"167 Lincoln St, Boston, MA 02215" +214591,Lightning Charging Cable,1,14.95,06/17/19 10:31,"944 Cherry St, Atlanta, GA 30301" +214592,AAA Batteries (4-pack),1,2.99,06/28/19 18:34,"840 2nd St, Seattle, WA 98101" +214593,AA Batteries (4-pack),2,3.84,06/15/19 22:20,"240 Pine St, Atlanta, GA 30301" +214594,ThinkPad Laptop,1,999.99,06/16/19 13:58,"246 Elm St, Dallas, TX 75001" +214595,ThinkPad Laptop,1,999.99,06/14/19 11:44,"745 Church St, Los Angeles, CA 90001" +214596,Macbook Pro Laptop,1,1700,06/18/19 13:27,"715 Cedar St, Seattle, WA 98101" +214597,USB-C Charging Cable,1,11.95,06/03/19 09:38,"744 Washington St, San Francisco, CA 94016" +214598,Apple Airpods Headphones,1,150,06/02/19 19:02,"292 Johnson St, Dallas, TX 75001" +214598,Google Phone,1,600,06/02/19 19:02,"292 Johnson St, Dallas, TX 75001" +214599,ThinkPad Laptop,1,999.99,06/26/19 13:21,"993 Elm St, Los Angeles, CA 90001" +214600,Apple Airpods Headphones,1,150,06/11/19 12:58,"939 2nd St, Austin, TX 73301" +214601,AA Batteries (4-pack),1,3.84,06/11/19 09:12,"60 12th St, San Francisco, CA 94016" +214602,Apple Airpods Headphones,1,150,06/14/19 14:01,"603 Hickory St, Dallas, TX 75001" +214603,27in 4K Gaming Monitor,1,389.99,06/24/19 07:08,"112 Dogwood St, San Francisco, CA 94016" +214603,Bose SoundSport Headphones,1,99.99,06/24/19 07:08,"112 Dogwood St, San Francisco, CA 94016" +214604,Apple Airpods Headphones,1,150,06/27/19 13:57,"430 10th St, Atlanta, GA 30301" +214605,Lightning Charging Cable,1,14.95,06/18/19 20:30,"398 8th St, Seattle, WA 98101" +214606,USB-C Charging Cable,1,11.95,06/05/19 09:55,"160 Forest St, Los Angeles, CA 90001" +214607,34in Ultrawide Monitor,1,379.99,06/30/19 21:03,"983 Hickory St, Los Angeles, CA 90001" +214608,Lightning Charging Cable,1,14.95,06/24/19 18:46,"643 Forest St, Boston, MA 02215" +214609,Macbook Pro Laptop,1,1700,06/23/19 08:29,"383 Church St, New York City, NY 10001" +214610,USB-C Charging Cable,1,11.95,06/14/19 11:34,"529 8th St, New York City, NY 10001" +214611,AA Batteries (4-pack),1,3.84,06/15/19 10:43,"57 Park St, Los Angeles, CA 90001" +214612,Wired Headphones,1,11.99,06/10/19 16:17,"470 Washington St, Los Angeles, CA 90001" +214613,Bose SoundSport Headphones,1,99.99,06/08/19 08:22,"385 1st St, Dallas, TX 75001" +214614,Lightning Charging Cable,2,14.95,06/28/19 22:19,"553 Lake St, Los Angeles, CA 90001" +214615,27in 4K Gaming Monitor,1,389.99,06/28/19 12:33,"807 1st St, San Francisco, CA 94016" +214616,AA Batteries (4-pack),1,3.84,06/12/19 19:19,"782 Chestnut St, Boston, MA 02215" +214617,Macbook Pro Laptop,1,1700,06/24/19 19:25,"315 West St, Seattle, WA 98101" +214618,Macbook Pro Laptop,1,1700,06/02/19 00:30,"988 Center St, San Francisco, CA 94016" +214619,Bose SoundSport Headphones,1,99.99,06/24/19 12:55,"269 2nd St, San Francisco, CA 94016" +214620,Lightning Charging Cable,1,14.95,06/27/19 14:36,"502 South St, San Francisco, CA 94016" +214621,Apple Airpods Headphones,1,150,06/07/19 08:31,"691 Sunset St, Boston, MA 02215" +214622,AA Batteries (4-pack),1,3.84,06/19/19 08:25,"520 8th St, Atlanta, GA 30301" +214623,Lightning Charging Cable,1,14.95,06/15/19 22:08,"890 Maple St, Atlanta, GA 30301" +214624,20in Monitor,1,109.99,06/04/19 19:58,"989 12th St, San Francisco, CA 94016" +214625,AA Batteries (4-pack),2,3.84,06/20/19 17:56,"226 Main St, San Francisco, CA 94016" +214626,Apple Airpods Headphones,1,150,06/22/19 14:47,"329 River St, Dallas, TX 75001" +214627,AAA Batteries (4-pack),2,2.99,06/10/19 11:23,"751 Chestnut St, Los Angeles, CA 90001" +214628,Google Phone,1,600,06/29/19 19:24,"65 Cherry St, Los Angeles, CA 90001" +214629,27in FHD Monitor,1,149.99,06/13/19 18:51,"298 5th St, New York City, NY 10001" +214630,USB-C Charging Cable,1,11.95,06/13/19 07:59,"579 Forest St, Boston, MA 02215" +214631,27in FHD Monitor,1,149.99,06/01/19 11:11,"671 8th St, New York City, NY 10001" +214632,AA Batteries (4-pack),2,3.84,06/06/19 19:48,"405 Jefferson St, Los Angeles, CA 90001" +214633,AA Batteries (4-pack),1,3.84,06/16/19 08:41,"604 West St, New York City, NY 10001" +214634,Apple Airpods Headphones,1,150,06/06/19 08:59,"116 Hill St, New York City, NY 10001" +214635,Flatscreen TV,1,300,06/19/19 13:19,"665 Lakeview St, Austin, TX 73301" +214636,Lightning Charging Cable,1,14.95,06/28/19 20:50,"674 2nd St, San Francisco, CA 94016" +214637,Apple Airpods Headphones,1,150,06/07/19 16:36,"617 Ridge St, New York City, NY 10001" +214638,34in Ultrawide Monitor,1,379.99,06/10/19 20:50,"242 Hickory St, San Francisco, CA 94016" +214639,20in Monitor,1,109.99,06/30/19 22:07,"374 Dogwood St, Seattle, WA 98101" +214640,USB-C Charging Cable,1,11.95,06/04/19 14:10,"576 7th St, Seattle, WA 98101" +214641,AA Batteries (4-pack),1,3.84,06/12/19 12:08,"738 Cherry St, Los Angeles, CA 90001" +214642,USB-C Charging Cable,1,11.95,06/21/19 11:52,"74 Willow St, San Francisco, CA 94016" +214643,AAA Batteries (4-pack),1,2.99,06/28/19 17:44,"912 5th St, New York City, NY 10001" +214644,USB-C Charging Cable,2,11.95,06/18/19 01:12,"56 Sunset St, Los Angeles, CA 90001" +214645,USB-C Charging Cable,1,11.95,06/06/19 11:22,"787 Hill St, Boston, MA 02215" +214646,AA Batteries (4-pack),1,3.84,06/02/19 20:59,"514 Hill St, Portland, OR 97035" +214647,Lightning Charging Cable,1,14.95,06/08/19 20:51,"445 Cherry St, Los Angeles, CA 90001" +214648,AAA Batteries (4-pack),1,2.99,06/08/19 12:10,"438 Lincoln St, Dallas, TX 75001" +214649,USB-C Charging Cable,1,11.95,06/22/19 18:50,"303 Main St, Seattle, WA 98101" +214650,Apple Airpods Headphones,1,150,06/07/19 22:21,"746 Maple St, New York City, NY 10001" +214651,Bose SoundSport Headphones,1,99.99,06/13/19 16:19,"958 West St, Atlanta, GA 30301" +214652,Lightning Charging Cable,1,14.95,06/17/19 17:09,"761 Hickory St, Dallas, TX 75001" +214653,Apple Airpods Headphones,1,150,06/06/19 05:31,"774 Hill St, San Francisco, CA 94016" +214654,AA Batteries (4-pack),1,3.84,06/26/19 09:13,"989 13th St, Portland, OR 97035" +214655,Wired Headphones,1,11.99,06/25/19 11:50,"441 1st St, Atlanta, GA 30301" +214656,AAA Batteries (4-pack),1,2.99,06/26/19 12:25,"959 Jefferson St, Dallas, TX 75001" +214657,Apple Airpods Headphones,1,150,06/16/19 13:32,"5 Cherry St, Seattle, WA 98101" +214658,AAA Batteries (4-pack),1,2.99,06/07/19 10:37,"93 Main St, San Francisco, CA 94016" +214659,AA Batteries (4-pack),1,3.84,06/18/19 23:12,"694 4th St, Los Angeles, CA 90001" +214660,Wired Headphones,1,11.99,06/16/19 20:52,"72 8th St, Portland, ME 04101" +214661,ThinkPad Laptop,1,999.99,06/26/19 10:31,"55 Adams St, Los Angeles, CA 90001" +214662,AAA Batteries (4-pack),3,2.99,06/17/19 10:10,"156 5th St, Boston, MA 02215" +214663,USB-C Charging Cable,1,11.95,06/08/19 12:54,"407 Jackson St, San Francisco, CA 94016" +214664,USB-C Charging Cable,1,11.95,06/22/19 05:05,"184 Elm St, San Francisco, CA 94016" +214665,Wired Headphones,1,11.99,06/23/19 13:31,"803 Elm St, Los Angeles, CA 90001" +214666,Macbook Pro Laptop,1,1700,06/08/19 11:05,"579 Pine St, New York City, NY 10001" +214667,USB-C Charging Cable,1,11.95,06/13/19 19:16,"579 12th St, Boston, MA 02215" +214668,Bose SoundSport Headphones,1,99.99,06/22/19 19:26,"93 Willow St, San Francisco, CA 94016" +214669,Lightning Charging Cable,1,14.95,06/09/19 08:52,"228 14th St, Boston, MA 02215" +214670,Lightning Charging Cable,1,14.95,06/15/19 09:05,"164 5th St, Dallas, TX 75001" +214671,Macbook Pro Laptop,1,1700,06/22/19 11:48,"435 Washington St, Portland, ME 04101" +214672,Wired Headphones,1,11.99,06/14/19 18:18,"574 4th St, San Francisco, CA 94016" +214673,Bose SoundSport Headphones,1,99.99,06/07/19 02:33,"335 Lincoln St, Los Angeles, CA 90001" +214674,Lightning Charging Cable,1,14.95,06/25/19 10:42,"792 Lincoln St, San Francisco, CA 94016" +214675,Bose SoundSport Headphones,1,99.99,06/14/19 18:14,"348 Cedar St, Los Angeles, CA 90001" +214676,Bose SoundSport Headphones,1,99.99,06/15/19 17:36,"981 West St, Boston, MA 02215" +214677,AA Batteries (4-pack),1,3.84,06/22/19 08:54,"833 Wilson St, San Francisco, CA 94016" +214678,Lightning Charging Cable,1,14.95,06/01/19 15:08,"463 10th St, Seattle, WA 98101" +214679,34in Ultrawide Monitor,1,379.99,06/19/19 22:26,"199 8th St, San Francisco, CA 94016" +214680,Bose SoundSport Headphones,1,99.99,06/26/19 20:46,"132 South St, San Francisco, CA 94016" +214681,AA Batteries (4-pack),1,3.84,06/18/19 13:20,"939 Hickory St, Boston, MA 02215" +214682,AAA Batteries (4-pack),1,2.99,06/04/19 03:42,"848 Hill St, Seattle, WA 98101" +214683,iPhone,1,700,06/14/19 07:55,"471 Chestnut St, New York City, NY 10001" +214684,Bose SoundSport Headphones,1,99.99,06/09/19 13:48,"772 Wilson St, Los Angeles, CA 90001" +214685,Wired Headphones,1,11.99,06/03/19 10:08,"282 Ridge St, Atlanta, GA 30301" +214686,Flatscreen TV,1,300,06/23/19 22:30,"42 Maple St, Los Angeles, CA 90001" +214687,Macbook Pro Laptop,1,1700,06/24/19 11:49,"320 West St, Portland, OR 97035" +214688,Bose SoundSport Headphones,1,99.99,06/11/19 14:47,"203 Meadow St, San Francisco, CA 94016" +214689,AAA Batteries (4-pack),1,2.99,06/10/19 17:12,"884 14th St, San Francisco, CA 94016" +214690,Apple Airpods Headphones,1,150,06/22/19 09:41,"347 2nd St, San Francisco, CA 94016" +214691,Wired Headphones,1,11.99,06/13/19 09:01,"460 8th St, San Francisco, CA 94016" +214692,Vareebadd Phone,1,400,06/01/19 17:28,"564 Cherry St, Los Angeles, CA 90001" +214692,Bose SoundSport Headphones,1,99.99,06/01/19 17:28,"564 Cherry St, Los Angeles, CA 90001" +214693,AAA Batteries (4-pack),3,2.99,06/20/19 15:37,"748 5th St, Atlanta, GA 30301" +214694,Google Phone,1,600,06/27/19 12:15,"41 6th St, San Francisco, CA 94016" +214695,Lightning Charging Cable,1,14.95,06/27/19 09:46,"811 Elm St, New York City, NY 10001" +214696,Bose SoundSport Headphones,1,99.99,06/24/19 16:46,"446 8th St, San Francisco, CA 94016" +214697,AAA Batteries (4-pack),1,2.99,06/29/19 11:45,"831 Main St, Boston, MA 02215" +214698,Lightning Charging Cable,1,14.95,06/23/19 02:28,"384 Dogwood St, Los Angeles, CA 90001" +214699,AAA Batteries (4-pack),1,2.99,06/06/19 19:51,"771 Center St, Seattle, WA 98101" +214700,Bose SoundSport Headphones,1,99.99,06/19/19 17:05,"605 2nd St, New York City, NY 10001" +214701,USB-C Charging Cable,1,11.95,06/07/19 19:46,"494 4th St, San Francisco, CA 94016" +214702,Wired Headphones,1,11.99,06/09/19 01:56,"210 Cherry St, Boston, MA 02215" +214703,Lightning Charging Cable,1,14.95,06/23/19 17:30,"521 Jackson St, New York City, NY 10001" +214704,Wired Headphones,1,11.99,06/26/19 17:49,"845 4th St, Atlanta, GA 30301" +214705,Bose SoundSport Headphones,1,99.99,06/08/19 07:09,"487 South St, Los Angeles, CA 90001" +214706,AAA Batteries (4-pack),1,2.99,06/22/19 22:40,"162 Highland St, Seattle, WA 98101" +214707,AAA Batteries (4-pack),1,2.99,06/25/19 17:44,"58 Cedar St, Atlanta, GA 30301" +214708,Apple Airpods Headphones,1,150,06/20/19 23:32,"402 Elm St, San Francisco, CA 94016" +214709,USB-C Charging Cable,1,11.95,06/02/19 09:04,"812 14th St, Portland, OR 97035" +214710,USB-C Charging Cable,1,11.95,06/10/19 12:27,"75 1st St, Boston, MA 02215" +214711,AAA Batteries (4-pack),1,2.99,06/29/19 09:16,"993 14th St, San Francisco, CA 94016" +214712,Google Phone,1,600,06/23/19 11:56,"436 Forest St, San Francisco, CA 94016" +214712,USB-C Charging Cable,1,11.95,06/23/19 11:56,"436 Forest St, San Francisco, CA 94016" +214712,Wired Headphones,1,11.99,06/23/19 11:56,"436 Forest St, San Francisco, CA 94016" +214713,Wired Headphones,1,11.99,06/12/19 20:57,"957 Meadow St, Los Angeles, CA 90001" +214714,27in FHD Monitor,1,149.99,06/06/19 20:18,"643 Cedar St, New York City, NY 10001" +214715,USB-C Charging Cable,1,11.95,06/17/19 17:44,"663 Highland St, Boston, MA 02215" +214716,Wired Headphones,2,11.99,06/25/19 11:17,"535 Washington St, Boston, MA 02215" +214717,AAA Batteries (4-pack),1,2.99,06/05/19 14:21,"362 Washington St, Los Angeles, CA 90001" +214718,Wired Headphones,1,11.99,06/06/19 10:48,"215 Highland St, Dallas, TX 75001" +214719,Wired Headphones,1,11.99,06/18/19 21:01,"46 1st St, Los Angeles, CA 90001" +214720,AA Batteries (4-pack),1,3.84,06/27/19 12:15,"98 14th St, Dallas, TX 75001" +214721,ThinkPad Laptop,1,999.99,06/06/19 18:05,"479 Lakeview St, Los Angeles, CA 90001" +214721,Google Phone,1,600,06/06/19 18:05,"479 Lakeview St, Los Angeles, CA 90001" +214722,AA Batteries (4-pack),1,3.84,06/03/19 12:54,"845 Jefferson St, New York City, NY 10001" +214723,Wired Headphones,1,11.99,06/19/19 12:03,"174 9th St, Seattle, WA 98101" +214724,Bose SoundSport Headphones,1,99.99,06/17/19 19:01,"43 Pine St, Boston, MA 02215" +214725,Bose SoundSport Headphones,1,99.99,06/15/19 11:19,"981 Hill St, Los Angeles, CA 90001" +214726,AA Batteries (4-pack),1,3.84,06/10/19 17:45,"375 Madison St, Boston, MA 02215" +214727,Wired Headphones,1,11.99,06/24/19 18:35,"989 8th St, Austin, TX 73301" +214728,Macbook Pro Laptop,1,1700,06/28/19 11:07,"151 Meadow St, Los Angeles, CA 90001" +214729,ThinkPad Laptop,1,999.99,06/25/19 14:26,"17 1st St, Austin, TX 73301" +214730,Wired Headphones,1,11.99,06/12/19 20:00,"202 11th St, San Francisco, CA 94016" +214731,Wired Headphones,1,11.99,06/04/19 19:10,"80 Church St, Portland, OR 97035" +214732,USB-C Charging Cable,1,11.95,06/27/19 11:53,"846 1st St, San Francisco, CA 94016" +214733,AAA Batteries (4-pack),1,2.99,06/11/19 11:56,"663 7th St, Los Angeles, CA 90001" +214734,Bose SoundSport Headphones,1,99.99,06/19/19 10:51,"647 Center St, Seattle, WA 98101" +214735,AAA Batteries (4-pack),1,2.99,06/06/19 10:02,"226 10th St, San Francisco, CA 94016" +214736,Apple Airpods Headphones,1,150,06/19/19 16:25,"545 North St, Los Angeles, CA 90001" +214737,iPhone,1,700,06/01/19 23:31,"988 Willow St, Austin, TX 73301" +214738,Macbook Pro Laptop,1,1700,06/07/19 10:50,"594 6th St, San Francisco, CA 94016" +214739,34in Ultrawide Monitor,1,379.99,06/17/19 08:56,"136 Cherry St, New York City, NY 10001" +214740,AA Batteries (4-pack),1,3.84,06/19/19 17:04,"875 Walnut St, Los Angeles, CA 90001" +214741,Google Phone,1,600,06/09/19 17:31,"837 Center St, Austin, TX 73301" +214741,USB-C Charging Cable,1,11.95,06/09/19 17:31,"837 Center St, Austin, TX 73301" +214742,AAA Batteries (4-pack),2,2.99,06/19/19 12:05,"836 Main St, Los Angeles, CA 90001" +214743,27in 4K Gaming Monitor,1,389.99,06/19/19 18:54,"788 Center St, Los Angeles, CA 90001" +214744,Wired Headphones,1,11.99,06/02/19 17:46,"520 Sunset St, Seattle, WA 98101" +214745,USB-C Charging Cable,1,11.95,06/02/19 13:50,"371 6th St, Atlanta, GA 30301" +214746,Apple Airpods Headphones,1,150,06/06/19 17:17,"124 Wilson St, San Francisco, CA 94016" +214747,Wired Headphones,1,11.99,06/05/19 23:18,"436 7th St, Boston, MA 02215" +214748,AA Batteries (4-pack),1,3.84,06/10/19 14:22,"119 West St, San Francisco, CA 94016" +214749,Lightning Charging Cable,1,14.95,06/01/19 16:29,"471 Cedar St, Dallas, TX 75001" +214750,ThinkPad Laptop,1,999.99,06/17/19 20:10,"249 Walnut St, Los Angeles, CA 90001" +214751,AAA Batteries (4-pack),1,2.99,06/21/19 18:01,"418 8th St, Boston, MA 02215" +214752,Google Phone,1,600,06/04/19 20:31,"416 1st St, Boston, MA 02215" +214753,Google Phone,1,600,06/30/19 22:08,"781 North St, Los Angeles, CA 90001" +214754,AAA Batteries (4-pack),1,2.99,06/27/19 00:10,"225 13th St, Atlanta, GA 30301" +214755,AA Batteries (4-pack),2,3.84,06/12/19 18:35,"61 Johnson St, Dallas, TX 75001" +214756,Macbook Pro Laptop,1,1700,06/14/19 18:26,"134 7th St, Seattle, WA 98101" +214757,20in Monitor,1,109.99,06/22/19 15:56,"120 13th St, Dallas, TX 75001" +214758,Apple Airpods Headphones,1,150,06/29/19 19:17,"764 Church St, New York City, NY 10001" +214759,AAA Batteries (4-pack),1,2.99,06/07/19 12:34,"586 1st St, San Francisco, CA 94016" +214760,Lightning Charging Cable,1,14.95,06/28/19 21:24,"412 1st St, Boston, MA 02215" +214761,Bose SoundSport Headphones,1,99.99,06/25/19 14:59,"465 Lincoln St, Los Angeles, CA 90001" +214762,AAA Batteries (4-pack),1,2.99,06/21/19 23:38,"383 Church St, Boston, MA 02215" +214763,Wired Headphones,1,11.99,06/24/19 14:08,"597 Adams St, Austin, TX 73301" +214764,Lightning Charging Cable,1,14.95,06/29/19 15:18,"51 West St, San Francisco, CA 94016" +214765,AA Batteries (4-pack),1,3.84,06/09/19 01:04,"889 Spruce St, San Francisco, CA 94016" +214766,Bose SoundSport Headphones,1,99.99,06/24/19 20:09,"769 6th St, Atlanta, GA 30301" +214767,AAA Batteries (4-pack),3,2.99,06/21/19 21:29,"312 11th St, Dallas, TX 75001" +214768,Wired Headphones,1,11.99,06/25/19 19:33,"966 Church St, Austin, TX 73301" +214769,ThinkPad Laptop,1,999.99,06/14/19 18:18,"879 Ridge St, Portland, ME 04101" +214770,AAA Batteries (4-pack),1,2.99,06/14/19 21:27,"205 Forest St, Los Angeles, CA 90001" +214770,Macbook Pro Laptop,1,1700,06/14/19 21:27,"205 Forest St, Los Angeles, CA 90001" +214771,Apple Airpods Headphones,1,150,06/05/19 14:48,"53 Adams St, San Francisco, CA 94016" +214772,Lightning Charging Cable,1,14.95,06/23/19 09:01,"527 14th St, Atlanta, GA 30301" +214773,AAA Batteries (4-pack),1,2.99,06/15/19 10:17,"633 8th St, Seattle, WA 98101" +214774,USB-C Charging Cable,2,11.95,06/18/19 06:09,"308 Wilson St, Seattle, WA 98101" +214775,27in 4K Gaming Monitor,1,389.99,06/19/19 13:24,"918 Hill St, Dallas, TX 75001" +214776,Bose SoundSport Headphones,1,99.99,06/03/19 19:10,"41 8th St, San Francisco, CA 94016" +214777,Google Phone,1,600,06/13/19 13:20,"139 14th St, Boston, MA 02215" +214777,USB-C Charging Cable,1,11.95,06/13/19 13:20,"139 14th St, Boston, MA 02215" +214778,AAA Batteries (4-pack),2,2.99,06/22/19 19:31,"521 Jefferson St, New York City, NY 10001" +214779,Macbook Pro Laptop,1,1700,06/20/19 12:19,"320 9th St, Austin, TX 73301" +214780,Wired Headphones,1,11.99,06/28/19 20:29,"580 North St, San Francisco, CA 94016" +214781,27in FHD Monitor,1,149.99,06/17/19 16:08,"774 Highland St, Boston, MA 02215" +214782,iPhone,1,700,06/20/19 20:36,"734 Forest St, Atlanta, GA 30301" +214782,Lightning Charging Cable,1,14.95,06/20/19 20:36,"734 Forest St, Atlanta, GA 30301" +214783,iPhone,1,700,06/30/19 14:46,"430 7th St, San Francisco, CA 94016" +214784,USB-C Charging Cable,1,11.95,06/10/19 20:00,"720 South St, Los Angeles, CA 90001" +214785,AA Batteries (4-pack),2,3.84,06/14/19 02:50,"598 Forest St, Boston, MA 02215" +214786,AAA Batteries (4-pack),1,2.99,06/10/19 10:14,"206 8th St, Atlanta, GA 30301" +214787,USB-C Charging Cable,1,11.95,06/07/19 08:02,"801 10th St, Dallas, TX 75001" +214788,34in Ultrawide Monitor,1,379.99,06/22/19 11:52,"688 Jackson St, San Francisco, CA 94016" +214789,Bose SoundSport Headphones,1,99.99,06/26/19 00:37,"42 Pine St, Austin, TX 73301" +214790,Bose SoundSport Headphones,1,99.99,06/30/19 11:19,"53 Spruce St, New York City, NY 10001" +214791,20in Monitor,1,109.99,06/21/19 15:23,"431 Elm St, San Francisco, CA 94016" +214792,Google Phone,1,600,06/29/19 15:57,"843 5th St, Los Angeles, CA 90001" +214793,USB-C Charging Cable,1,11.95,06/04/19 19:23,"752 1st St, Boston, MA 02215" +214794,AAA Batteries (4-pack),1,2.99,06/22/19 19:46,"652 1st St, Seattle, WA 98101" +214795,Macbook Pro Laptop,1,1700,06/14/19 16:36,"250 Meadow St, Boston, MA 02215" +214796,AA Batteries (4-pack),1,3.84,06/06/19 14:54,"563 Center St, San Francisco, CA 94016" +214797,Lightning Charging Cable,2,14.95,06/22/19 15:39,"898 Center St, Atlanta, GA 30301" +214798,USB-C Charging Cable,2,11.95,06/10/19 15:22,"557 Lakeview St, Boston, MA 02215" +214799,27in 4K Gaming Monitor,1,389.99,06/10/19 10:20,"998 Wilson St, Boston, MA 02215" +214800,Flatscreen TV,1,300,06/16/19 18:04,"368 Willow St, Dallas, TX 75001" +214801,27in FHD Monitor,1,149.99,06/16/19 21:08,"862 Washington St, Los Angeles, CA 90001" +214802,Flatscreen TV,1,300,06/21/19 07:56,"432 Sunset St, Los Angeles, CA 90001" +214803,USB-C Charging Cable,1,11.95,06/29/19 04:40,"711 Lake St, New York City, NY 10001" +214804,AA Batteries (4-pack),1,3.84,06/19/19 19:40,"667 Wilson St, San Francisco, CA 94016" +214805,Bose SoundSport Headphones,1,99.99,06/01/19 19:28,"892 Church St, New York City, NY 10001" +214806,AA Batteries (4-pack),1,3.84,06/27/19 22:57,"263 12th St, San Francisco, CA 94016" +214807,Bose SoundSport Headphones,1,99.99,06/17/19 21:09,"196 North St, Dallas, TX 75001" +214808,Bose SoundSport Headphones,1,99.99,06/22/19 19:40,"324 Lincoln St, Los Angeles, CA 90001" +214809,Lightning Charging Cable,1,14.95,06/24/19 11:09,"324 Adams St, New York City, NY 10001" +214810,Lightning Charging Cable,1,14.95,06/04/19 19:21,"396 Center St, San Francisco, CA 94016" +214811,USB-C Charging Cable,1,11.95,06/12/19 14:36,"835 6th St, San Francisco, CA 94016" +214812,Flatscreen TV,1,300,06/14/19 15:37,"312 13th St, Los Angeles, CA 90001" +214813,AAA Batteries (4-pack),1,2.99,06/16/19 09:31,"824 11th St, Los Angeles, CA 90001" +214814,AA Batteries (4-pack),1,3.84,06/01/19 19:13,"784 Lake St, Los Angeles, CA 90001" +214815,Apple Airpods Headphones,1,150,06/24/19 11:00,"968 9th St, Boston, MA 02215" +214816,iPhone,1,700,06/09/19 17:58,"433 1st St, Los Angeles, CA 90001" +214816,Wired Headphones,1,11.99,06/09/19 17:58,"433 1st St, Los Angeles, CA 90001" +214817,USB-C Charging Cable,1,11.95,06/12/19 08:06,"53 Park St, New York City, NY 10001" +214818,34in Ultrawide Monitor,1,379.99,06/12/19 15:51,"222 Jackson St, San Francisco, CA 94016" +214819,AAA Batteries (4-pack),1,2.99,06/05/19 12:58,"617 Washington St, Los Angeles, CA 90001" +214820,Lightning Charging Cable,1,14.95,06/08/19 06:34,"397 Cherry St, New York City, NY 10001" +214821,USB-C Charging Cable,2,11.95,06/11/19 13:34,"285 7th St, Atlanta, GA 30301" +214821,Flatscreen TV,1,300,06/11/19 13:34,"285 7th St, Atlanta, GA 30301" +214822,Lightning Charging Cable,1,14.95,06/30/19 16:51,"301 Elm St, New York City, NY 10001" +214823,ThinkPad Laptop,1,999.99,06/01/19 17:44,"957 Hill St, San Francisco, CA 94016" +214824,27in FHD Monitor,1,149.99,06/11/19 14:55,"789 Highland St, Los Angeles, CA 90001" +214825,Wired Headphones,1,11.99,06/25/19 02:17,"254 South St, San Francisco, CA 94016" +214826,AA Batteries (4-pack),1,3.84,06/01/19 22:50,"32 10th St, San Francisco, CA 94016" +214827,AA Batteries (4-pack),1,3.84,06/10/19 13:42,"5 Meadow St, Boston, MA 02215" +214828,AA Batteries (4-pack),2,3.84,06/15/19 17:40,"811 Pine St, New York City, NY 10001" +214829,USB-C Charging Cable,1,11.95,06/25/19 13:35,"522 12th St, Dallas, TX 75001" +214830,AA Batteries (4-pack),1,3.84,06/30/19 21:18,"679 Cedar St, San Francisco, CA 94016" +214831,Google Phone,1,600,06/14/19 18:17,"677 Wilson St, San Francisco, CA 94016" +214831,Bose SoundSport Headphones,1,99.99,06/14/19 18:17,"677 Wilson St, San Francisco, CA 94016" +214832,Apple Airpods Headphones,1,150,06/04/19 11:46,"780 11th St, Boston, MA 02215" +214833,Lightning Charging Cable,1,14.95,06/04/19 22:09,"746 8th St, New York City, NY 10001" +214834,USB-C Charging Cable,1,11.95,06/22/19 14:09,"721 Pine St, Los Angeles, CA 90001" +214835,Apple Airpods Headphones,1,150,06/14/19 12:17,"131 Washington St, New York City, NY 10001" +214836,USB-C Charging Cable,1,11.95,06/26/19 04:51,"612 1st St, San Francisco, CA 94016" +214837,AA Batteries (4-pack),2,3.84,06/16/19 14:39,"16 Cherry St, San Francisco, CA 94016" +214838,AAA Batteries (4-pack),1,2.99,06/05/19 12:05,"701 Hill St, San Francisco, CA 94016" +214839,AAA Batteries (4-pack),1,2.99,06/30/19 10:10,"914 10th St, Dallas, TX 75001" +214840,iPhone,1,700,06/07/19 09:02,"896 River St, San Francisco, CA 94016" +214840,Lightning Charging Cable,1,14.95,06/07/19 09:02,"896 River St, San Francisco, CA 94016" +214840,Wired Headphones,1,11.99,06/07/19 09:02,"896 River St, San Francisco, CA 94016" +214841,Apple Airpods Headphones,1,150,06/26/19 13:35,"551 Chestnut St, Seattle, WA 98101" +214842,USB-C Charging Cable,2,11.95,06/24/19 09:20,"89 Walnut St, San Francisco, CA 94016" +214843,Wired Headphones,1,11.99,06/25/19 11:31,"608 River St, Portland, OR 97035" +214844,Lightning Charging Cable,1,14.95,06/17/19 19:55,"516 Elm St, New York City, NY 10001" +214845,20in Monitor,1,109.99,06/26/19 10:42,"220 Lake St, Austin, TX 73301" +214846,AAA Batteries (4-pack),1,2.99,06/07/19 11:20,"434 Main St, San Francisco, CA 94016" +214847,27in 4K Gaming Monitor,1,389.99,06/22/19 09:02,"784 Spruce St, Los Angeles, CA 90001" +214848,Macbook Pro Laptop,1,1700,06/09/19 21:38,"244 Jefferson St, Boston, MA 02215" +214849,20in Monitor,1,109.99,06/10/19 09:54,"801 Washington St, Los Angeles, CA 90001" +214850,27in 4K Gaming Monitor,1,389.99,06/06/19 16:42,"516 Meadow St, San Francisco, CA 94016" +214851,Wired Headphones,1,11.99,06/14/19 09:37,"79 Chestnut St, Portland, ME 04101" +214851,USB-C Charging Cable,1,11.95,06/14/19 09:37,"79 Chestnut St, Portland, ME 04101" +214852,iPhone,1,700,06/12/19 13:35,"163 Walnut St, Atlanta, GA 30301" +214853,AA Batteries (4-pack),1,3.84,06/13/19 18:40,"497 Ridge St, Seattle, WA 98101" +214854,Wired Headphones,1,11.99,06/17/19 14:41,"366 Park St, Los Angeles, CA 90001" +214855,USB-C Charging Cable,1,11.95,06/13/19 10:11,"164 13th St, Seattle, WA 98101" +214856,USB-C Charging Cable,1,11.95,06/28/19 21:33,"750 Adams St, Los Angeles, CA 90001" +214857,AAA Batteries (4-pack),2,2.99,06/13/19 13:32,"867 Highland St, San Francisco, CA 94016" +214858,AAA Batteries (4-pack),1,2.99,06/08/19 16:37,"524 Walnut St, Dallas, TX 75001" +214859,USB-C Charging Cable,1,11.95,06/16/19 10:13,"100 Park St, Dallas, TX 75001" +214860,AAA Batteries (4-pack),1,2.99,06/29/19 18:29,"598 13th St, Boston, MA 02215" +214861,20in Monitor,1,109.99,06/26/19 16:13,"55 Church St, Los Angeles, CA 90001" +214862,USB-C Charging Cable,1,11.95,06/28/19 13:32,"795 Pine St, Dallas, TX 75001" +214863,Macbook Pro Laptop,1,1700,06/22/19 21:26,"591 Hickory St, San Francisco, CA 94016" +214864,AAA Batteries (4-pack),2,2.99,06/30/19 09:26,"347 Wilson St, New York City, NY 10001" +214865,AA Batteries (4-pack),1,3.84,06/16/19 18:30,"444 Forest St, Dallas, TX 75001" +214866,USB-C Charging Cable,1,11.95,06/21/19 10:15,"377 Walnut St, San Francisco, CA 94016" +214867,AAA Batteries (4-pack),1,2.99,06/27/19 09:33,"376 Sunset St, San Francisco, CA 94016" +214868,34in Ultrawide Monitor,1,379.99,06/18/19 04:38,"683 Chestnut St, Los Angeles, CA 90001" +214869,AA Batteries (4-pack),1,3.84,06/11/19 15:17,"615 Wilson St, Atlanta, GA 30301" +214870,Google Phone,1,600,06/06/19 11:27,"747 6th St, New York City, NY 10001" +214870,USB-C Charging Cable,1,11.95,06/06/19 11:27,"747 6th St, New York City, NY 10001" +214871,Lightning Charging Cable,1,14.95,06/22/19 19:42,"78 Meadow St, Boston, MA 02215" +214872,AAA Batteries (4-pack),3,2.99,06/09/19 20:09,"586 Church St, Boston, MA 02215" +214873,Bose SoundSport Headphones,1,99.99,06/21/19 20:30,"296 Cedar St, New York City, NY 10001" +214874,AA Batteries (4-pack),1,3.84,06/24/19 21:15,"134 8th St, San Francisco, CA 94016" +214875,USB-C Charging Cable,1,11.95,06/20/19 08:32,"949 14th St, San Francisco, CA 94016" +214876,USB-C Charging Cable,1,11.95,06/26/19 14:46,"927 Johnson St, New York City, NY 10001" +214877,USB-C Charging Cable,1,11.95,06/23/19 19:37,"692 Wilson St, Portland, OR 97035" +214878,AAA Batteries (4-pack),2,2.99,06/08/19 08:08,"846 12th St, New York City, NY 10001" +214879,34in Ultrawide Monitor,1,379.99,06/06/19 08:34,"806 Elm St, Austin, TX 73301" +214880,iPhone,1,700,06/22/19 22:28,"608 2nd St, Atlanta, GA 30301" +214880,Lightning Charging Cable,1,14.95,06/22/19 22:28,"608 2nd St, Atlanta, GA 30301" +214881,Lightning Charging Cable,1,14.95,06/30/19 19:10,"601 West St, Seattle, WA 98101" +214882,Apple Airpods Headphones,1,150,06/09/19 19:44,"409 Lake St, New York City, NY 10001" +214883,USB-C Charging Cable,1,11.95,06/14/19 11:49,"442 8th St, Atlanta, GA 30301" +214884,27in FHD Monitor,1,149.99,06/30/19 19:34,"743 Chestnut St, Portland, OR 97035" +214885,USB-C Charging Cable,1,11.95,07/01/19 01:49,"732 Pine St, San Francisco, CA 94016" +214886,USB-C Charging Cable,1,11.95,06/25/19 16:40,"929 1st St, Boston, MA 02215" +214887,Bose SoundSport Headphones,1,99.99,06/04/19 15:36,"96 Sunset St, Dallas, TX 75001" +214888,iPhone,1,700,06/07/19 10:06,"869 7th St, Boston, MA 02215" +214888,Wired Headphones,1,11.99,06/07/19 10:06,"869 7th St, Boston, MA 02215" +214889,Lightning Charging Cable,1,14.95,06/03/19 10:55,"115 Wilson St, New York City, NY 10001" +214890,AAA Batteries (4-pack),1,2.99,06/28/19 00:15,"535 Forest St, Seattle, WA 98101" +214891,AAA Batteries (4-pack),3,2.99,06/12/19 00:06,"864 Willow St, New York City, NY 10001" +214892,USB-C Charging Cable,1,11.95,06/27/19 14:38,"188 5th St, Los Angeles, CA 90001" +214893,AAA Batteries (4-pack),4,2.99,06/09/19 17:56,"932 Lakeview St, Los Angeles, CA 90001" +214894,Bose SoundSport Headphones,1,99.99,06/30/19 10:08,"448 Forest St, Atlanta, GA 30301" +214895,iPhone,1,700,06/01/19 20:11,"51 Hill St, Atlanta, GA 30301" +214896,Wired Headphones,1,11.99,06/14/19 16:49,"666 5th St, Boston, MA 02215" +214897,AA Batteries (4-pack),1,3.84,06/14/19 17:50,"544 Lakeview St, Los Angeles, CA 90001" +214898,AAA Batteries (4-pack),4,2.99,06/27/19 13:04,"737 Cedar St, Atlanta, GA 30301" +214899,AAA Batteries (4-pack),1,2.99,06/15/19 02:15,"438 Park St, Atlanta, GA 30301" +214900,Bose SoundSport Headphones,1,99.99,06/01/19 21:11,"632 Sunset St, Atlanta, GA 30301" +214901,Vareebadd Phone,1,400,06/23/19 08:28,"842 West St, Portland, ME 04101" +214902,AA Batteries (4-pack),2,3.84,06/02/19 18:15,"464 Park St, Seattle, WA 98101" +214903,AAA Batteries (4-pack),1,2.99,06/16/19 18:15,"396 Elm St, San Francisco, CA 94016" +214904,USB-C Charging Cable,1,11.95,06/03/19 19:55,"207 South St, San Francisco, CA 94016" +214905,USB-C Charging Cable,1,11.95,06/21/19 18:21,"777 9th St, San Francisco, CA 94016" +214906,Google Phone,1,600,06/01/19 22:32,"1 Lakeview St, Dallas, TX 75001" +214907,AA Batteries (4-pack),1,3.84,06/27/19 16:31,"645 Adams St, Portland, OR 97035" +214908,Lightning Charging Cable,1,14.95,06/26/19 20:27,"39 Lake St, Austin, TX 73301" +214909,AAA Batteries (4-pack),1,2.99,06/23/19 07:21,"992 Lincoln St, Boston, MA 02215" +214910,Wired Headphones,1,11.99,06/20/19 10:48,"134 North St, San Francisco, CA 94016" +214911,34in Ultrawide Monitor,1,379.99,06/13/19 21:46,"588 Cherry St, Boston, MA 02215" +214912,AA Batteries (4-pack),1,3.84,06/28/19 12:31,"785 11th St, Dallas, TX 75001" +214913,iPhone,1,700,06/10/19 12:19,"791 Willow St, San Francisco, CA 94016" +214914,AA Batteries (4-pack),1,3.84,06/13/19 20:58,"461 Dogwood St, New York City, NY 10001" +214915,Lightning Charging Cable,1,14.95,06/07/19 19:45,"709 11th St, San Francisco, CA 94016" +214916,Wired Headphones,1,11.99,06/02/19 15:24,"490 1st St, San Francisco, CA 94016" +214917,27in FHD Monitor,1,149.99,06/07/19 17:22,"304 Madison St, Boston, MA 02215" +214918,Lightning Charging Cable,1,14.95,06/24/19 14:55,"929 Lake St, Los Angeles, CA 90001" +214919,AA Batteries (4-pack),2,3.84,06/17/19 15:07,"561 Walnut St, Seattle, WA 98101" +214920,iPhone,1,700,06/09/19 18:24,"158 Meadow St, Seattle, WA 98101" +214921,USB-C Charging Cable,1,11.95,06/23/19 12:52,"735 Maple St, Seattle, WA 98101" +214922,AAA Batteries (4-pack),1,2.99,06/30/19 13:42,"317 Cherry St, Los Angeles, CA 90001" +214923,Apple Airpods Headphones,1,150,06/13/19 16:49,"752 6th St, San Francisco, CA 94016" +214924,Macbook Pro Laptop,1,1700,06/14/19 12:18,"778 Meadow St, Dallas, TX 75001" +214925,34in Ultrawide Monitor,1,379.99,06/27/19 07:54,"769 Dogwood St, New York City, NY 10001" +214926,Flatscreen TV,1,300,06/11/19 12:30,"733 Dogwood St, Seattle, WA 98101" +214927,AA Batteries (4-pack),1,3.84,06/25/19 14:24,"923 Dogwood St, New York City, NY 10001" +214928,USB-C Charging Cable,1,11.95,06/11/19 21:12,"337 River St, New York City, NY 10001" +214929,Wired Headphones,1,11.99,06/07/19 10:52,"518 Elm St, San Francisco, CA 94016" +214930,USB-C Charging Cable,1,11.95,06/03/19 23:48,"548 Adams St, Dallas, TX 75001" +214931,iPhone,1,700,06/15/19 16:37,"562 River St, San Francisco, CA 94016" +214932,Apple Airpods Headphones,1,150,06/16/19 20:57,"350 Pine St, San Francisco, CA 94016" +214933,34in Ultrawide Monitor,1,379.99,06/06/19 06:44,"111 Chestnut St, New York City, NY 10001" +214934,iPhone,1,700,06/07/19 02:42,"656 5th St, New York City, NY 10001" +214934,Lightning Charging Cable,1,14.95,06/07/19 02:42,"656 5th St, New York City, NY 10001" +214935,Bose SoundSport Headphones,1,99.99,06/11/19 19:13,"951 2nd St, San Francisco, CA 94016" +214936,Lightning Charging Cable,1,14.95,06/03/19 21:27,"767 12th St, San Francisco, CA 94016" +214937,Google Phone,1,600,06/01/19 12:33,"771 Lake St, Dallas, TX 75001" +214938,Flatscreen TV,1,300,06/14/19 19:43,"370 Ridge St, Seattle, WA 98101" +214939,AA Batteries (4-pack),1,3.84,06/18/19 11:06,"854 Forest St, San Francisco, CA 94016" +214939,Lightning Charging Cable,1,14.95,06/18/19 11:06,"854 Forest St, San Francisco, CA 94016" +214940,USB-C Charging Cable,2,11.95,06/13/19 17:24,"707 Dogwood St, Dallas, TX 75001" +214941,USB-C Charging Cable,1,11.95,06/13/19 22:15,"538 4th St, Austin, TX 73301" +214942,34in Ultrawide Monitor,1,379.99,06/25/19 08:53,"445 Cedar St, Dallas, TX 75001" +214943,AA Batteries (4-pack),2,3.84,06/05/19 20:48,"878 Forest St, Atlanta, GA 30301" +214944,Vareebadd Phone,1,400,06/25/19 18:47,"772 Cedar St, Los Angeles, CA 90001" +214945,AA Batteries (4-pack),2,3.84,06/02/19 10:17,"975 Adams St, New York City, NY 10001" +214946,AAA Batteries (4-pack),2,2.99,06/04/19 10:21,"328 9th St, New York City, NY 10001" +214947,Bose SoundSport Headphones,1,99.99,06/08/19 09:41,"909 South St, Dallas, TX 75001" +214948,Lightning Charging Cable,1,14.95,06/26/19 22:23,"154 Forest St, San Francisco, CA 94016" +214949,Lightning Charging Cable,1,14.95,06/10/19 20:01,"150 Elm St, Dallas, TX 75001" +214950,34in Ultrawide Monitor,1,379.99,06/07/19 19:52,"304 Ridge St, Los Angeles, CA 90001" +214951,34in Ultrawide Monitor,1,379.99,06/29/19 08:53,"684 Willow St, San Francisco, CA 94016" +214952,AA Batteries (4-pack),1,3.84,06/17/19 22:07,"410 1st St, New York City, NY 10001" +214953,27in 4K Gaming Monitor,1,389.99,06/21/19 13:08,"205 13th St, Seattle, WA 98101" +214954,Wired Headphones,1,11.99,06/01/19 15:35,"75 Spruce St, New York City, NY 10001" +214954,Flatscreen TV,1,300,06/01/19 15:35,"75 Spruce St, New York City, NY 10001" +214955,Apple Airpods Headphones,1,150,06/18/19 17:56,"316 South St, Los Angeles, CA 90001" +214956,20in Monitor,1,109.99,06/02/19 23:41,"381 Maple St, Atlanta, GA 30301" +214957,Apple Airpods Headphones,1,150,06/07/19 08:03,"549 Maple St, Seattle, WA 98101" +214958,Bose SoundSport Headphones,1,99.99,06/13/19 21:32,"250 Meadow St, San Francisco, CA 94016" +214959,AA Batteries (4-pack),2,3.84,06/22/19 14:50,"88 Hill St, Los Angeles, CA 90001" +214960,Apple Airpods Headphones,1,150,06/10/19 07:42,"148 Willow St, Seattle, WA 98101" +214961,Lightning Charging Cable,1,14.95,06/29/19 23:28,"502 Adams St, Portland, OR 97035" +214962,ThinkPad Laptop,1,999.99,06/11/19 09:14,"189 Main St, Seattle, WA 98101" +214963,iPhone,1,700,06/26/19 06:47,"10 Chestnut St, San Francisco, CA 94016" +214963,Lightning Charging Cable,1,14.95,06/26/19 06:47,"10 Chestnut St, San Francisco, CA 94016" +214964,Lightning Charging Cable,1,14.95,06/29/19 23:15,"138 Jefferson St, Los Angeles, CA 90001" +214965,27in FHD Monitor,1,149.99,06/05/19 10:15,"90 7th St, San Francisco, CA 94016" +214966,34in Ultrawide Monitor,1,379.99,06/29/19 13:20,"105 2nd St, Austin, TX 73301" +214967,USB-C Charging Cable,1,11.95,06/19/19 22:37,"69 Wilson St, Dallas, TX 75001" +214968,AAA Batteries (4-pack),1,2.99,06/09/19 13:09,"752 6th St, Dallas, TX 75001" +214969,USB-C Charging Cable,1,11.95,06/15/19 16:28,"79 8th St, Boston, MA 02215" +214970,Macbook Pro Laptop,1,1700,06/07/19 16:48,"441 Sunset St, Portland, OR 97035" +214971,Apple Airpods Headphones,1,150,06/06/19 17:26,"765 Hill St, San Francisco, CA 94016" +214972,Apple Airpods Headphones,1,150,06/17/19 22:17,"874 Lincoln St, Dallas, TX 75001" +214973,Flatscreen TV,1,300,06/16/19 15:46,"909 Lakeview St, San Francisco, CA 94016" +214974,Apple Airpods Headphones,1,150,06/02/19 22:04,"133 Lincoln St, San Francisco, CA 94016" +214975,Flatscreen TV,1,300,06/13/19 18:46,"705 Ridge St, New York City, NY 10001" +214976,Bose SoundSport Headphones,1,99.99,06/07/19 00:27,"961 Center St, Boston, MA 02215" +214977,Wired Headphones,1,11.99,06/19/19 22:57,"207 Forest St, San Francisco, CA 94016" +214978,iPhone,1,700,06/06/19 08:01,"701 Center St, Seattle, WA 98101" +214979,AAA Batteries (4-pack),3,2.99,06/03/19 18:52,"463 14th St, San Francisco, CA 94016" +214980,USB-C Charging Cable,1,11.95,06/15/19 16:34,"535 Pine St, Seattle, WA 98101" +214981,USB-C Charging Cable,1,11.95,06/08/19 19:48,"930 Lincoln St, San Francisco, CA 94016" +214982,USB-C Charging Cable,1,11.95,06/29/19 19:32,"52 Willow St, Portland, OR 97035" +214983,Bose SoundSport Headphones,1,99.99,06/17/19 02:12,"646 Cedar St, Los Angeles, CA 90001" +214984,USB-C Charging Cable,1,11.95,06/23/19 17:24,"533 Lincoln St, New York City, NY 10001" +214985,Apple Airpods Headphones,1,150,06/02/19 19:10,"207 10th St, Austin, TX 73301" +214986,Lightning Charging Cable,1,14.95,06/25/19 06:02,"422 Washington St, Seattle, WA 98101" +214987,Bose SoundSport Headphones,1,99.99,06/23/19 07:42,"517 11th St, New York City, NY 10001" +214988,Apple Airpods Headphones,1,150,06/02/19 07:37,"543 Sunset St, Los Angeles, CA 90001" +214989,Wired Headphones,1,11.99,06/28/19 22:04,"52 4th St, Austin, TX 73301" +214990,Wired Headphones,1,11.99,06/16/19 23:44,"393 Forest St, Los Angeles, CA 90001" +214991,27in FHD Monitor,1,149.99,06/20/19 11:56,"851 Hill St, Los Angeles, CA 90001" +214992,iPhone,1,700,06/26/19 20:00,"704 Madison St, San Francisco, CA 94016" +214993,27in FHD Monitor,1,149.99,06/06/19 14:22,"449 Madison St, Los Angeles, CA 90001" +214994,Wired Headphones,1,11.99,06/25/19 17:27,"900 Forest St, San Francisco, CA 94016" +214995,AAA Batteries (4-pack),2,2.99,06/26/19 20:09,"164 6th St, San Francisco, CA 94016" +214996,34in Ultrawide Monitor,1,379.99,06/02/19 08:53,"124 6th St, San Francisco, CA 94016" +214996,Wired Headphones,2,11.99,06/02/19 08:53,"124 6th St, San Francisco, CA 94016" +214997,AA Batteries (4-pack),1,3.84,06/07/19 04:27,"38 Maple St, Seattle, WA 98101" +214998,27in FHD Monitor,1,149.99,06/23/19 11:46,"552 Highland St, Portland, OR 97035" +214999,Lightning Charging Cable,1,14.95,06/09/19 07:01,"491 Elm St, San Francisco, CA 94016" +215000,27in FHD Monitor,1,149.99,06/24/19 01:47,"181 Highland St, Austin, TX 73301" +215001,USB-C Charging Cable,1,11.95,06/15/19 19:45,"124 11th St, San Francisco, CA 94016" +215002,AA Batteries (4-pack),2,3.84,06/22/19 18:34,"329 Forest St, San Francisco, CA 94016" +215003,Flatscreen TV,1,300,06/08/19 18:15,"384 Meadow St, Atlanta, GA 30301" +215004,USB-C Charging Cable,1,11.95,06/09/19 13:05,"996 1st St, New York City, NY 10001" +215005,AAA Batteries (4-pack),2,2.99,06/04/19 19:21,"998 Hill St, San Francisco, CA 94016" +215006,iPhone,1,700,06/20/19 18:34,"60 8th St, Dallas, TX 75001" +215007,AAA Batteries (4-pack),3,2.99,06/11/19 08:31,"706 Pine St, Atlanta, GA 30301" +215008,ThinkPad Laptop,1,999.99,06/19/19 12:41,"356 Jackson St, Austin, TX 73301" +215009,USB-C Charging Cable,1,11.95,06/15/19 13:57,"562 Wilson St, San Francisco, CA 94016" +215009,Bose SoundSport Headphones,1,99.99,06/15/19 13:57,"562 Wilson St, San Francisco, CA 94016" +215010,Google Phone,1,600,06/22/19 17:43,"179 Washington St, Los Angeles, CA 90001" +215010,Bose SoundSport Headphones,1,99.99,06/22/19 17:43,"179 Washington St, Los Angeles, CA 90001" +215011,Wired Headphones,1,11.99,06/22/19 11:41,"735 Johnson St, Atlanta, GA 30301" +215012,Lightning Charging Cable,1,14.95,06/06/19 15:01,"308 Main St, New York City, NY 10001" +215013,AA Batteries (4-pack),1,3.84,06/07/19 11:50,"997 9th St, San Francisco, CA 94016" +215014,Wired Headphones,1,11.99,06/16/19 14:25,"293 South St, San Francisco, CA 94016" +215015,27in 4K Gaming Monitor,1,389.99,06/07/19 01:48,"527 Lincoln St, New York City, NY 10001" +215016,Apple Airpods Headphones,1,150,06/02/19 12:32,"180 Hickory St, San Francisco, CA 94016" +215017,27in FHD Monitor,1,149.99,06/13/19 12:54,"408 8th St, Atlanta, GA 30301" +215018,AA Batteries (4-pack),1,3.84,06/02/19 18:16,"256 Walnut St, New York City, NY 10001" +215019,AA Batteries (4-pack),2,3.84,06/13/19 21:19,"285 Spruce St, Los Angeles, CA 90001" +215020,Wired Headphones,1,11.99,06/26/19 12:58,"504 Highland St, Dallas, TX 75001" +215021,AA Batteries (4-pack),1,3.84,06/30/19 21:50,"174 Wilson St, Boston, MA 02215" +215022,Apple Airpods Headphones,1,150,06/19/19 23:20,"208 Jackson St, Dallas, TX 75001" +215023,Bose SoundSport Headphones,1,99.99,06/14/19 23:44,"888 5th St, Los Angeles, CA 90001" +215024,27in FHD Monitor,1,149.99,06/27/19 20:50,"36 Maple St, San Francisco, CA 94016" +215025,Lightning Charging Cable,1,14.95,06/29/19 14:05,"352 Cedar St, Portland, ME 04101" +215026,27in FHD Monitor,1,149.99,06/17/19 09:21,"140 Main St, Boston, MA 02215" +215027,Macbook Pro Laptop,1,1700,06/11/19 17:18,"154 South St, San Francisco, CA 94016" +215028,Apple Airpods Headphones,1,150,06/16/19 18:50,"380 11th St, Los Angeles, CA 90001" +215029,Bose SoundSport Headphones,1,99.99,06/25/19 15:32,"254 Center St, Atlanta, GA 30301" +215030,27in 4K Gaming Monitor,1,389.99,06/28/19 13:00,"597 Lakeview St, Boston, MA 02215" +215031,iPhone,1,700,06/22/19 06:36,"854 13th St, Los Angeles, CA 90001" +215032,AAA Batteries (4-pack),1,2.99,06/15/19 14:41,"420 Spruce St, San Francisco, CA 94016" +215033,AA Batteries (4-pack),1,3.84,06/11/19 21:45,"568 Spruce St, Austin, TX 73301" +215034,Wired Headphones,1,11.99,06/08/19 18:29,"266 10th St, San Francisco, CA 94016" +215035,AAA Batteries (4-pack),1,2.99,06/05/19 18:44,"122 Sunset St, New York City, NY 10001" +215036,AA Batteries (4-pack),1,3.84,06/16/19 12:35,"606 Adams St, Dallas, TX 75001" +215037,Lightning Charging Cable,1,14.95,06/17/19 11:46,"931 1st St, San Francisco, CA 94016" +215038,Google Phone,1,600,06/17/19 11:34,"841 6th St, New York City, NY 10001" +215039,AAA Batteries (4-pack),1,2.99,06/06/19 16:24,"469 River St, Atlanta, GA 30301" +215040,34in Ultrawide Monitor,1,379.99,06/21/19 16:30,"703 Maple St, San Francisco, CA 94016" +215041,Apple Airpods Headphones,1,150,06/29/19 16:35,"877 Ridge St, San Francisco, CA 94016" +215042,Macbook Pro Laptop,1,1700,06/12/19 13:07,"744 Forest St, Los Angeles, CA 90001" +215043,Google Phone,1,600,06/26/19 15:52,"727 Maple St, Portland, OR 97035" +215044,iPhone,1,700,06/01/19 11:27,"972 South St, Dallas, TX 75001" +215044,Apple Airpods Headphones,1,150,06/01/19 11:27,"972 South St, Dallas, TX 75001" +215045,Lightning Charging Cable,1,14.95,06/16/19 22:05,"757 Hickory St, San Francisco, CA 94016" +215046,Apple Airpods Headphones,1,150,06/17/19 07:21,"895 River St, New York City, NY 10001" +215047,Google Phone,1,600,06/27/19 10:33,"235 Johnson St, New York City, NY 10001" +215048,Lightning Charging Cable,1,14.95,06/18/19 16:45,"924 Spruce St, Atlanta, GA 30301" +215049,27in 4K Gaming Monitor,1,389.99,06/30/19 18:22,"701 1st St, San Francisco, CA 94016" +215050,AA Batteries (4-pack),3,3.84,06/04/19 20:06,"774 13th St, Boston, MA 02215" +215051,AAA Batteries (4-pack),1,2.99,06/14/19 09:14,"885 Hickory St, San Francisco, CA 94016" +215052,Macbook Pro Laptop,1,1700,06/29/19 15:42,"982 10th St, Portland, OR 97035" +215053,27in FHD Monitor,1,149.99,06/10/19 13:16,"719 Forest St, San Francisco, CA 94016" +215054,Wired Headphones,1,11.99,06/26/19 12:51,"633 Lakeview St, Boston, MA 02215" +215055,Wired Headphones,2,11.99,06/10/19 12:42,"290 4th St, San Francisco, CA 94016" +215056,Apple Airpods Headphones,1,150,06/20/19 23:45,"133 Willow St, Boston, MA 02215" +215057,Apple Airpods Headphones,1,150,06/18/19 16:41,"410 River St, San Francisco, CA 94016" +215058,AA Batteries (4-pack),4,3.84,06/12/19 12:51,"518 Cedar St, Seattle, WA 98101" +215059,Wired Headphones,1,11.99,06/04/19 11:24,"576 Park St, Dallas, TX 75001" +215060,Wired Headphones,1,11.99,06/09/19 17:50,"227 12th St, San Francisco, CA 94016" +215061,AA Batteries (4-pack),1,3.84,06/06/19 10:58,"359 Washington St, Los Angeles, CA 90001" +215062,Bose SoundSport Headphones,1,99.99,06/22/19 19:24,"210 Willow St, San Francisco, CA 94016" +215063,20in Monitor,1,109.99,06/27/19 10:39,"76 South St, San Francisco, CA 94016" +215064,Bose SoundSport Headphones,1,99.99,06/26/19 13:41,"964 9th St, San Francisco, CA 94016" +215065,AA Batteries (4-pack),1,3.84,06/11/19 11:52,"586 Wilson St, Dallas, TX 75001" +215066,Bose SoundSport Headphones,1,99.99,06/25/19 11:00,"774 River St, Boston, MA 02215" +215067,Wired Headphones,1,11.99,06/20/19 17:38,"768 11th St, Los Angeles, CA 90001" +215068,USB-C Charging Cable,1,11.95,06/25/19 12:27,"14 5th St, Los Angeles, CA 90001" +215069,34in Ultrawide Monitor,1,379.99,06/29/19 00:09,"914 Pine St, Portland, ME 04101" +215070,USB-C Charging Cable,2,11.95,06/28/19 09:20,"68 Wilson St, Austin, TX 73301" +215070,Wired Headphones,1,11.99,06/28/19 09:20,"68 Wilson St, Austin, TX 73301" +215071,LG Dryer,1,600.0,06/23/19 13:17,"116 Forest St, Seattle, WA 98101" +215072,Lightning Charging Cable,2,14.95,06/11/19 07:36,"911 9th St, San Francisco, CA 94016" +215073,iPhone,1,700,06/18/19 13:23,"462 Madison St, San Francisco, CA 94016" +215074,Lightning Charging Cable,1,14.95,06/02/19 23:43,"567 6th St, San Francisco, CA 94016" +215074,Apple Airpods Headphones,1,150,06/02/19 23:43,"567 6th St, San Francisco, CA 94016" +215075,AA Batteries (4-pack),1,3.84,06/28/19 12:17,"322 Sunset St, Boston, MA 02215" +215076,Wired Headphones,1,11.99,06/10/19 13:51,"94 11th St, Boston, MA 02215" +215077,AA Batteries (4-pack),1,3.84,06/29/19 23:11,"731 6th St, Los Angeles, CA 90001" +215078,Apple Airpods Headphones,1,150,06/13/19 19:07,"934 Pine St, Seattle, WA 98101" +215079,Wired Headphones,1,11.99,06/05/19 20:56,"831 Highland St, Los Angeles, CA 90001" +215080,iPhone,1,700,06/26/19 07:43,"877 Jackson St, Los Angeles, CA 90001" +215081,27in 4K Gaming Monitor,1,389.99,06/13/19 13:47,"669 8th St, Seattle, WA 98101" +215082,iPhone,1,700,06/11/19 17:37,"839 Lakeview St, Boston, MA 02215" +215082,Wired Headphones,1,11.99,06/11/19 17:37,"839 Lakeview St, Boston, MA 02215" +215083,Lightning Charging Cable,1,14.95,06/11/19 22:31,"915 River St, Los Angeles, CA 90001" +215084,Apple Airpods Headphones,1,150,06/16/19 20:31,"926 Adams St, Los Angeles, CA 90001" +215085,AAA Batteries (4-pack),2,2.99,06/07/19 13:03,"68 Center St, San Francisco, CA 94016" +215086,AA Batteries (4-pack),1,3.84,06/25/19 21:36,"979 Sunset St, San Francisco, CA 94016" +215087,LG Washing Machine,1,600.0,06/20/19 11:36,"855 Wilson St, Los Angeles, CA 90001" +215088,34in Ultrawide Monitor,1,379.99,06/27/19 10:20,"590 Dogwood St, Austin, TX 73301" +215089,34in Ultrawide Monitor,1,379.99,06/16/19 14:48,"931 Meadow St, Dallas, TX 75001" +215090,AAA Batteries (4-pack),2,2.99,06/14/19 23:58,"119 Hickory St, San Francisco, CA 94016" +215090,Apple Airpods Headphones,1,150,06/14/19 23:58,"119 Hickory St, San Francisco, CA 94016" +215091,AA Batteries (4-pack),2,3.84,06/02/19 19:59,"236 Maple St, Boston, MA 02215" +215092,AAA Batteries (4-pack),1,2.99,06/16/19 21:34,"151 Cedar St, Dallas, TX 75001" +215093,Google Phone,1,600,06/18/19 11:31,"704 Washington St, New York City, NY 10001" +215094,27in FHD Monitor,1,149.99,06/09/19 18:29,"486 Madison St, Seattle, WA 98101" +215095,ThinkPad Laptop,1,999.99,06/03/19 01:30,"335 Chestnut St, New York City, NY 10001" +215096,USB-C Charging Cable,2,11.95,06/09/19 09:20,"538 Washington St, Atlanta, GA 30301" +215097,USB-C Charging Cable,1,11.95,06/25/19 13:18,"570 9th St, San Francisco, CA 94016" +215098,Lightning Charging Cable,1,14.95,06/21/19 15:03,"545 11th St, San Francisco, CA 94016" +215099,Macbook Pro Laptop,1,1700,06/15/19 10:57,"660 12th St, New York City, NY 10001" +215100,USB-C Charging Cable,1,11.95,06/28/19 13:21,"261 Jefferson St, New York City, NY 10001" +215101,Wired Headphones,1,11.99,06/19/19 11:00,"823 Lake St, Los Angeles, CA 90001" +215102,Bose SoundSport Headphones,1,99.99,06/28/19 17:53,"330 2nd St, New York City, NY 10001" +215103,USB-C Charging Cable,1,11.95,06/07/19 10:13,"179 Chestnut St, New York City, NY 10001" +215104,Wired Headphones,2,11.99,06/08/19 07:57,"605 Walnut St, New York City, NY 10001" +215105,Macbook Pro Laptop,1,1700,06/10/19 21:40,"448 Pine St, San Francisco, CA 94016" +215106,USB-C Charging Cable,1,11.95,06/28/19 17:21,"699 Walnut St, Seattle, WA 98101" +215107,Apple Airpods Headphones,1,150,06/08/19 20:35,"784 Elm St, San Francisco, CA 94016" +215108,Apple Airpods Headphones,1,150,06/25/19 01:45,"53 Dogwood St, Seattle, WA 98101" +215109,USB-C Charging Cable,1,11.95,06/24/19 21:18,"210 Ridge St, Austin, TX 73301" +215110,Apple Airpods Headphones,1,150,06/05/19 21:14,"767 7th St, Dallas, TX 75001" +215111,AAA Batteries (4-pack),1,2.99,06/23/19 21:48,"57 River St, Boston, MA 02215" +215112,USB-C Charging Cable,1,11.95,06/04/19 20:03,"731 Forest St, Atlanta, GA 30301" +215113,USB-C Charging Cable,1,11.95,06/06/19 11:39,"980 Willow St, Seattle, WA 98101" +215114,Apple Airpods Headphones,1,150,06/09/19 19:06,"763 Jefferson St, Los Angeles, CA 90001" +215115,20in Monitor,1,109.99,06/30/19 18:37,"849 Main St, New York City, NY 10001" +215116,Lightning Charging Cable,1,14.95,06/20/19 10:49,"463 Johnson St, New York City, NY 10001" +215117,AAA Batteries (4-pack),1,2.99,06/03/19 09:33,"739 Wilson St, Dallas, TX 75001" +215118,Google Phone,1,600,06/13/19 18:11,"587 2nd St, San Francisco, CA 94016" +215119,Google Phone,1,600,06/30/19 18:10,"745 Cherry St, Atlanta, GA 30301" +215119,Wired Headphones,1,11.99,06/30/19 18:10,"745 Cherry St, Atlanta, GA 30301" +215120,AA Batteries (4-pack),1,3.84,06/01/19 15:46,"160 Main St, San Francisco, CA 94016" +215121,LG Dryer,1,600.0,06/20/19 10:33,"323 13th St, Seattle, WA 98101" +215122,Lightning Charging Cable,1,14.95,06/12/19 13:15,"366 Adams St, San Francisco, CA 94016" +215123,AAA Batteries (4-pack),1,2.99,06/25/19 23:55,"780 River St, Los Angeles, CA 90001" +215124,AA Batteries (4-pack),1,3.84,06/06/19 01:04,"601 12th St, San Francisco, CA 94016" +215125,AAA Batteries (4-pack),2,2.99,06/06/19 17:46,"608 Lincoln St, Dallas, TX 75001" +215126,Google Phone,1,600,06/11/19 06:32,"311 Maple St, Atlanta, GA 30301" +215126,Macbook Pro Laptop,1,1700,06/11/19 06:32,"311 Maple St, Atlanta, GA 30301" +215127,34in Ultrawide Monitor,1,379.99,06/03/19 08:59,"866 South St, Dallas, TX 75001" +215128,27in 4K Gaming Monitor,1,389.99,06/22/19 09:53,"173 Dogwood St, Los Angeles, CA 90001" +215129,USB-C Charging Cable,1,11.95,06/10/19 10:52,"937 Madison St, Austin, TX 73301" +215130,AAA Batteries (4-pack),1,2.99,06/09/19 16:30,"658 Highland St, Los Angeles, CA 90001" +215131,iPhone,1,700,06/13/19 06:36,"297 Madison St, Atlanta, GA 30301" +215132,Wired Headphones,1,11.99,06/13/19 12:01,"174 Elm St, Atlanta, GA 30301" +215133,Apple Airpods Headphones,1,150,06/14/19 13:13,"606 West St, Dallas, TX 75001" +215134,Lightning Charging Cable,1,14.95,06/26/19 17:24,"336 Meadow St, Dallas, TX 75001" +215135,USB-C Charging Cable,1,11.95,06/16/19 14:21,"184 Cherry St, Atlanta, GA 30301" +215136,Apple Airpods Headphones,1,150,06/20/19 18:27,"64 Church St, Dallas, TX 75001" +215137,AAA Batteries (4-pack),1,2.99,06/23/19 07:05,"287 North St, Boston, MA 02215" +215138,Wired Headphones,2,11.99,06/23/19 18:54,"849 South St, Los Angeles, CA 90001" +215139,AAA Batteries (4-pack),1,2.99,06/06/19 17:50,"991 North St, Los Angeles, CA 90001" +215140,20in Monitor,1,109.99,06/12/19 16:31,"435 12th St, San Francisco, CA 94016" +215141,Apple Airpods Headphones,1,150,06/28/19 08:16,"146 Park St, New York City, NY 10001" +215142,34in Ultrawide Monitor,1,379.99,06/19/19 11:13,"633 Main St, Los Angeles, CA 90001" +215143,Wired Headphones,1,11.99,06/29/19 22:31,"18 1st St, San Francisco, CA 94016" +215144,Lightning Charging Cable,1,14.95,06/05/19 09:05,"441 North St, San Francisco, CA 94016" +215145,Apple Airpods Headphones,1,150,06/11/19 11:35,"396 2nd St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +215146,20in Monitor,1,109.99,06/25/19 06:22,"531 Cedar St, Seattle, WA 98101" +215147,Lightning Charging Cable,1,14.95,06/04/19 12:23,"559 Forest St, San Francisco, CA 94016" +215148,USB-C Charging Cable,1,11.95,06/02/19 13:13,"204 Park St, San Francisco, CA 94016" +215149,Wired Headphones,1,11.99,06/09/19 08:57,"532 Church St, Boston, MA 02215" +215150,Bose SoundSport Headphones,1,99.99,06/16/19 20:05,"458 Jackson St, Seattle, WA 98101" +215151,27in 4K Gaming Monitor,1,389.99,06/20/19 08:03,"804 South St, Austin, TX 73301" +215152,USB-C Charging Cable,1,11.95,06/01/19 11:59,"56 13th St, San Francisco, CA 94016" +215153,Apple Airpods Headphones,1,150,06/29/19 11:53,"500 Walnut St, Los Angeles, CA 90001" +215154,AA Batteries (4-pack),1,3.84,06/28/19 14:10,"564 River St, Austin, TX 73301" +215155,Apple Airpods Headphones,1,150,06/12/19 11:58,"48 Highland St, Los Angeles, CA 90001" +215156,Bose SoundSport Headphones,1,99.99,06/02/19 14:24,"657 West St, Dallas, TX 75001" +215157,AA Batteries (4-pack),2,3.84,06/20/19 07:53,"564 8th St, Boston, MA 02215" +215158,AAA Batteries (4-pack),3,2.99,06/03/19 17:49,"128 River St, Seattle, WA 98101" +215159,AA Batteries (4-pack),1,3.84,06/29/19 21:03,"825 Hickory St, New York City, NY 10001" +215160,Lightning Charging Cable,1,14.95,06/10/19 22:49,"148 Cherry St, New York City, NY 10001" +215161,Google Phone,1,600,06/14/19 12:39,"801 River St, San Francisco, CA 94016" +215162,AAA Batteries (4-pack),1,2.99,06/28/19 12:45,"535 South St, New York City, NY 10001" +215163,Google Phone,1,600,06/09/19 09:57,"948 5th St, New York City, NY 10001" +215164,34in Ultrawide Monitor,1,379.99,06/26/19 21:12,"738 Spruce St, Dallas, TX 75001" +215165,27in FHD Monitor,1,149.99,06/14/19 12:42,"605 North St, New York City, NY 10001" +215166,Bose SoundSport Headphones,1,99.99,06/24/19 23:26,"160 Adams St, Seattle, WA 98101" +215167,34in Ultrawide Monitor,1,379.99,06/21/19 16:27,"306 Forest St, New York City, NY 10001" +215168,Bose SoundSport Headphones,1,99.99,06/27/19 12:45,"36 Hickory St, Atlanta, GA 30301" +215169,USB-C Charging Cable,1,11.95,06/15/19 10:38,"589 2nd St, Boston, MA 02215" +215170,Flatscreen TV,1,300,06/22/19 14:58,"144 Johnson St, Boston, MA 02215" +215171,AA Batteries (4-pack),1,3.84,06/06/19 20:39,"406 South St, Dallas, TX 75001" +215172,iPhone,1,700,06/25/19 04:45,"775 Johnson St, Los Angeles, CA 90001" +215172,Lightning Charging Cable,1,14.95,06/25/19 04:45,"775 Johnson St, Los Angeles, CA 90001" +215173,USB-C Charging Cable,1,11.95,06/14/19 15:39,"254 14th St, Los Angeles, CA 90001" +215174,Macbook Pro Laptop,1,1700,06/06/19 13:09,"699 Church St, Portland, OR 97035" +215175,27in FHD Monitor,1,149.99,06/21/19 18:57,"330 12th St, San Francisco, CA 94016" +215176,27in FHD Monitor,1,149.99,06/15/19 18:37,"307 Hill St, Boston, MA 02215" +215177,USB-C Charging Cable,1,11.95,06/15/19 09:07,"288 Dogwood St, San Francisco, CA 94016" +215178,Apple Airpods Headphones,1,150,06/03/19 17:44,"376 Main St, Portland, OR 97035" +215179,Wired Headphones,1,11.99,06/11/19 08:54,"612 14th St, Portland, OR 97035" +215180,27in FHD Monitor,1,149.99,06/29/19 22:41,"102 14th St, San Francisco, CA 94016" +215181,Flatscreen TV,1,300,06/27/19 12:51,"288 Chestnut St, Boston, MA 02215" +215182,AA Batteries (4-pack),1,3.84,06/12/19 14:49,"361 Ridge St, Portland, OR 97035" +215183,AA Batteries (4-pack),1,3.84,06/27/19 00:39,"740 6th St, Portland, OR 97035" +215184,LG Washing Machine,1,600.0,06/05/19 09:16,"700 14th St, San Francisco, CA 94016" +215185,27in 4K Gaming Monitor,1,389.99,06/11/19 15:18,"621 North St, Seattle, WA 98101" +215186,AAA Batteries (4-pack),3,2.99,06/26/19 13:09,"761 Wilson St, Boston, MA 02215" +215187,Google Phone,1,600,06/05/19 18:02,"654 South St, Boston, MA 02215" +215187,USB-C Charging Cable,1,11.95,06/05/19 18:02,"654 South St, Boston, MA 02215" +215188,USB-C Charging Cable,1,11.95,06/25/19 14:53,"612 North St, San Francisco, CA 94016" +215189,USB-C Charging Cable,1,11.95,06/27/19 17:24,"998 Elm St, Portland, OR 97035" +215190,34in Ultrawide Monitor,1,379.99,06/05/19 16:15,"425 Maple St, San Francisco, CA 94016" +215191,Bose SoundSport Headphones,1,99.99,06/14/19 11:40,"491 12th St, Atlanta, GA 30301" +215192,AA Batteries (4-pack),3,3.84,06/10/19 13:56,"76 Lakeview St, Atlanta, GA 30301" +215193,USB-C Charging Cable,1,11.95,06/05/19 21:15,"818 9th St, Boston, MA 02215" +215194,Wired Headphones,1,11.99,06/19/19 23:00,"670 Willow St, New York City, NY 10001" +215195,Bose SoundSport Headphones,1,99.99,06/28/19 15:11,"32 Cedar St, San Francisco, CA 94016" +215196,USB-C Charging Cable,2,11.95,06/23/19 15:23,"250 Lincoln St, Seattle, WA 98101" +215197,27in FHD Monitor,1,149.99,06/28/19 16:18,"984 Dogwood St, San Francisco, CA 94016" +215198,ThinkPad Laptop,1,999.99,06/29/19 20:08,"427 Forest St, San Francisco, CA 94016" +215199,34in Ultrawide Monitor,1,379.99,06/07/19 23:18,"82 Jackson St, San Francisco, CA 94016" +215200,Wired Headphones,1,11.99,06/24/19 13:27,"658 Church St, San Francisco, CA 94016" +215201,AA Batteries (4-pack),1,3.84,06/15/19 11:42,"118 Chestnut St, San Francisco, CA 94016" +215202,AA Batteries (4-pack),1,3.84,06/21/19 16:25,"205 South St, Los Angeles, CA 90001" +215203,20in Monitor,1,109.99,06/23/19 20:06,"169 12th St, Los Angeles, CA 90001" +215204,AAA Batteries (4-pack),1,2.99,06/06/19 15:26,"172 9th St, Boston, MA 02215" +215205,Macbook Pro Laptop,1,1700,06/18/19 10:56,"101 Washington St, Boston, MA 02215" +215206,Bose SoundSport Headphones,1,99.99,06/09/19 10:50,"438 Adams St, San Francisco, CA 94016" +215207,LG Dryer,1,600.0,06/06/19 20:41,"303 Cherry St, Los Angeles, CA 90001" +215208,Lightning Charging Cable,1,14.95,06/22/19 16:48,"421 9th St, Boston, MA 02215" +215209,AAA Batteries (4-pack),1,2.99,06/15/19 18:48,"255 12th St, San Francisco, CA 94016" +215210,34in Ultrawide Monitor,1,379.99,06/23/19 20:23,"457 Hickory St, Portland, OR 97035" +215211,AA Batteries (4-pack),1,3.84,06/03/19 17:42,"895 5th St, Boston, MA 02215" +215212,Apple Airpods Headphones,1,150,06/10/19 14:02,"419 Jefferson St, Los Angeles, CA 90001" +215213,27in 4K Gaming Monitor,1,389.99,06/21/19 18:27,"26 Washington St, Seattle, WA 98101" +215214,AA Batteries (4-pack),1,3.84,06/13/19 13:54,"226 Hickory St, Atlanta, GA 30301" +215215,Lightning Charging Cable,1,14.95,06/02/19 08:06,"441 West St, Los Angeles, CA 90001" +215216,AA Batteries (4-pack),1,3.84,06/28/19 00:22,"135 Lakeview St, Boston, MA 02215" +215217,AAA Batteries (4-pack),1,2.99,06/20/19 14:31,"708 13th St, Atlanta, GA 30301" +215218,AAA Batteries (4-pack),1,2.99,06/17/19 16:12,"962 Lincoln St, San Francisco, CA 94016" +215219,Wired Headphones,1,11.99,06/23/19 23:50,"146 Meadow St, Atlanta, GA 30301" +215220,AAA Batteries (4-pack),1,2.99,06/23/19 15:35,"421 Forest St, Dallas, TX 75001" +215221,Wired Headphones,1,11.99,06/01/19 20:16,"468 Lakeview St, Seattle, WA 98101" +215222,USB-C Charging Cable,1,11.95,06/21/19 11:10,"936 Hickory St, San Francisco, CA 94016" +215223,AA Batteries (4-pack),1,3.84,06/14/19 14:48,"865 11th St, Boston, MA 02215" +215224,Lightning Charging Cable,1,14.95,06/19/19 09:36,"304 Hickory St, Los Angeles, CA 90001" +215225,AA Batteries (4-pack),1,3.84,06/27/19 10:46,"373 Hill St, Atlanta, GA 30301" +215226,Wired Headphones,1,11.99,06/28/19 20:10,"178 7th St, Atlanta, GA 30301" +215227,AAA Batteries (4-pack),1,2.99,06/14/19 21:02,"198 5th St, Atlanta, GA 30301" +215228,AA Batteries (4-pack),1,3.84,06/06/19 08:55,"38 Washington St, Los Angeles, CA 90001" +215229,Lightning Charging Cable,1,14.95,06/12/19 19:45,"633 9th St, Portland, OR 97035" +215230,AA Batteries (4-pack),1,3.84,06/24/19 18:50,"537 Madison St, Boston, MA 02215" +215231,AA Batteries (4-pack),1,3.84,06/21/19 20:57,"321 Sunset St, Los Angeles, CA 90001" +215232,Wired Headphones,1,11.99,06/28/19 01:30,"821 Lake St, Austin, TX 73301" +215233,Bose SoundSport Headphones,1,99.99,06/09/19 14:12,"908 Lakeview St, Austin, TX 73301" +215234,AA Batteries (4-pack),1,3.84,06/25/19 09:43,"776 Lakeview St, San Francisco, CA 94016" +215235,20in Monitor,1,109.99,06/24/19 16:55,"811 Lake St, San Francisco, CA 94016" +215236,USB-C Charging Cable,1,11.95,06/03/19 12:04,"417 2nd St, Boston, MA 02215" +215237,Apple Airpods Headphones,1,150,06/25/19 20:38,"223 Pine St, Atlanta, GA 30301" +215238,AA Batteries (4-pack),1,3.84,06/27/19 12:38,"272 Jackson St, San Francisco, CA 94016" +215239,Apple Airpods Headphones,1,150,06/27/19 10:59,"695 Ridge St, Portland, ME 04101" +215240,Wired Headphones,1,11.99,06/05/19 20:39,"359 Lake St, Los Angeles, CA 90001" +215241,Bose SoundSport Headphones,1,99.99,06/26/19 12:16,"33 12th St, New York City, NY 10001" +215242,Flatscreen TV,1,300,06/29/19 19:31,"335 Jackson St, San Francisco, CA 94016" +215243,Wired Headphones,1,11.99,06/14/19 07:49,"690 Hill St, San Francisco, CA 94016" +215244,Apple Airpods Headphones,1,150,06/28/19 11:28,"310 Walnut St, Portland, OR 97035" +215245,Macbook Pro Laptop,1,1700,06/27/19 21:10,"121 River St, San Francisco, CA 94016" +215246,Macbook Pro Laptop,1,1700,06/28/19 22:20,"332 Willow St, Los Angeles, CA 90001" +215247,Lightning Charging Cable,1,14.95,06/25/19 12:50,"52 6th St, Portland, ME 04101" +215248,Macbook Pro Laptop,1,1700,06/09/19 21:13,"833 8th St, Los Angeles, CA 90001" +215249,AAA Batteries (4-pack),1,2.99,06/14/19 21:18,"597 Maple St, San Francisco, CA 94016" +215250,AA Batteries (4-pack),2,3.84,06/06/19 20:13,"236 Pine St, Seattle, WA 98101" +215251,Bose SoundSport Headphones,1,99.99,06/13/19 10:54,"819 Jefferson St, Boston, MA 02215" +215252,Lightning Charging Cable,1,14.95,06/29/19 11:55,"182 Hickory St, San Francisco, CA 94016" +215253,Wired Headphones,1,11.99,06/05/19 14:46,"556 8th St, San Francisco, CA 94016" +215254,AAA Batteries (4-pack),2,2.99,06/26/19 16:38,"43 6th St, Los Angeles, CA 90001" +215255,AAA Batteries (4-pack),1,2.99,06/07/19 21:26,"809 12th St, San Francisco, CA 94016" +215256,Lightning Charging Cable,2,14.95,06/24/19 22:41,"682 6th St, Atlanta, GA 30301" +215257,AAA Batteries (4-pack),2,2.99,06/01/19 22:33,"107 Church St, New York City, NY 10001" +215258,Lightning Charging Cable,1,14.95,06/23/19 15:31,"344 Maple St, Los Angeles, CA 90001" +215259,34in Ultrawide Monitor,1,379.99,06/27/19 19:17,"743 14th St, Portland, OR 97035" +215260,Vareebadd Phone,1,400,06/16/19 14:06,"351 Walnut St, Atlanta, GA 30301" +215261,AA Batteries (4-pack),2,3.84,06/11/19 09:22,"519 Forest St, San Francisco, CA 94016" +215262,USB-C Charging Cable,1,11.95,06/07/19 12:21,"664 Washington St, Portland, OR 97035" +215263,AA Batteries (4-pack),3,3.84,06/11/19 15:24,"592 Forest St, Los Angeles, CA 90001" +215264,Apple Airpods Headphones,1,150,06/14/19 19:31,"780 North St, Los Angeles, CA 90001" +215265,iPhone,1,700,06/04/19 18:30,"696 Ridge St, Seattle, WA 98101" +215266,34in Ultrawide Monitor,1,379.99,06/18/19 20:06,"690 5th St, Atlanta, GA 30301" +215267,Lightning Charging Cable,1,14.95,06/01/19 16:13,"820 South St, Dallas, TX 75001" +215268,Wired Headphones,1,11.99,06/26/19 23:35,"344 2nd St, Los Angeles, CA 90001" +215269,Apple Airpods Headphones,1,150,06/21/19 12:27,"892 14th St, Dallas, TX 75001" +215269,USB-C Charging Cable,1,11.95,06/21/19 12:27,"892 14th St, Dallas, TX 75001" +215270,Wired Headphones,1,11.99,06/23/19 13:41,"410 8th St, Boston, MA 02215" +215271,AA Batteries (4-pack),1,3.84,06/01/19 20:42,"358 13th St, Boston, MA 02215" +215272,Lightning Charging Cable,1,14.95,06/18/19 09:45,"303 Highland St, San Francisco, CA 94016" +215273,AAA Batteries (4-pack),5,2.99,06/08/19 13:22,"918 14th St, San Francisco, CA 94016" +215274,USB-C Charging Cable,1,11.95,06/14/19 19:55,"63 8th St, San Francisco, CA 94016" +215275,AAA Batteries (4-pack),1,2.99,06/25/19 12:05,"789 Ridge St, Dallas, TX 75001" +215276,Flatscreen TV,1,300,06/29/19 11:49,"851 West St, Portland, OR 97035" +215277,AA Batteries (4-pack),1,3.84,06/24/19 19:23,"407 West St, Boston, MA 02215" +215278,AA Batteries (4-pack),1,3.84,06/12/19 11:47,"133 Madison St, Boston, MA 02215" +215279,AA Batteries (4-pack),1,3.84,06/19/19 11:37,"261 Ridge St, New York City, NY 10001" +215280,Macbook Pro Laptop,1,1700,06/23/19 18:37,"895 Jefferson St, Portland, OR 97035" +215281,AAA Batteries (4-pack),1,2.99,06/22/19 22:35,"297 North St, Boston, MA 02215" +215282,Wired Headphones,1,11.99,06/15/19 20:09,"846 11th St, Seattle, WA 98101" +215283,AA Batteries (4-pack),1,3.84,06/23/19 13:34,"201 Wilson St, New York City, NY 10001" +215284,Lightning Charging Cable,1,14.95,06/29/19 18:56,"596 6th St, Dallas, TX 75001" +215285,Wired Headphones,1,11.99,06/27/19 13:13,"833 9th St, San Francisco, CA 94016" +215286,Wired Headphones,1,11.99,06/03/19 16:41,"86 11th St, Boston, MA 02215" +215287,Flatscreen TV,1,300,06/14/19 18:38,"342 Park St, Atlanta, GA 30301" +215288,AAA Batteries (4-pack),1,2.99,06/05/19 20:15,"647 Adams St, Los Angeles, CA 90001" +215289,34in Ultrawide Monitor,1,379.99,06/20/19 16:30,"482 Center St, San Francisco, CA 94016" +215290,Wired Headphones,1,11.99,06/16/19 07:25,"717 Wilson St, Dallas, TX 75001" +215291,Lightning Charging Cable,1,14.95,06/26/19 23:51,"796 Lake St, Los Angeles, CA 90001" +215292,USB-C Charging Cable,1,11.95,06/19/19 17:16,"843 Washington St, New York City, NY 10001" +215293,Bose SoundSport Headphones,1,99.99,06/04/19 09:24,"87 Main St, San Francisco, CA 94016" +215294,27in FHD Monitor,1,149.99,06/29/19 21:37,"552 Jackson St, Los Angeles, CA 90001" +215295,Wired Headphones,1,11.99,06/04/19 14:05,"184 Lincoln St, Los Angeles, CA 90001" +215296,AAA Batteries (4-pack),1,2.99,06/20/19 19:12,"31 1st St, Dallas, TX 75001" +215297,Bose SoundSport Headphones,1,99.99,06/20/19 22:43,"393 Washington St, San Francisco, CA 94016" +215298,USB-C Charging Cable,2,11.95,06/06/19 20:00,"717 Center St, New York City, NY 10001" +215299,Wired Headphones,1,11.99,06/25/19 21:40,"37 12th St, San Francisco, CA 94016" +215300,Wired Headphones,1,11.99,06/17/19 17:58,"332 Dogwood St, Seattle, WA 98101" +215301,Wired Headphones,1,11.99,06/23/19 12:58,"786 Lincoln St, Atlanta, GA 30301" +215302,iPhone,1,700,06/27/19 17:43,"441 Lakeview St, Los Angeles, CA 90001" +215303,AAA Batteries (4-pack),1,2.99,06/26/19 10:48,"826 Highland St, New York City, NY 10001" +215304,AA Batteries (4-pack),3,3.84,06/19/19 21:13,"409 Spruce St, San Francisco, CA 94016" +215305,Bose SoundSport Headphones,1,99.99,06/28/19 18:25,"610 Cedar St, Boston, MA 02215" +215306,USB-C Charging Cable,1,11.95,06/20/19 15:27,"56 Forest St, San Francisco, CA 94016" +215307,Apple Airpods Headphones,1,150,06/16/19 19:14,"27 Cedar St, Boston, MA 02215" +215308,Wired Headphones,1,11.99,06/18/19 12:01,"347 Elm St, Boston, MA 02215" +215309,Apple Airpods Headphones,1,150,06/15/19 02:19,"329 Main St, Los Angeles, CA 90001" +215310,Google Phone,1,600,06/11/19 14:31,"831 Sunset St, New York City, NY 10001" +215311,AA Batteries (4-pack),1,3.84,06/27/19 19:27,"549 Lakeview St, San Francisco, CA 94016" +215312,AA Batteries (4-pack),2,3.84,06/28/19 08:43,"703 Hickory St, Dallas, TX 75001" +215313,USB-C Charging Cable,1,11.95,06/17/19 11:00,"333 Hickory St, New York City, NY 10001" +215314,27in 4K Gaming Monitor,1,389.99,06/06/19 12:20,"370 Cherry St, Atlanta, GA 30301" +215315,Wired Headphones,1,11.99,06/12/19 19:38,"304 Forest St, Dallas, TX 75001" +215316,AAA Batteries (4-pack),1,2.99,06/28/19 21:51,"911 8th St, San Francisco, CA 94016" +215317,AAA Batteries (4-pack),1,2.99,06/14/19 13:56,"430 Cedar St, New York City, NY 10001" +215318,Bose SoundSport Headphones,1,99.99,06/17/19 17:24,"155 Madison St, Atlanta, GA 30301" +215319,ThinkPad Laptop,1,999.99,06/12/19 19:56,"689 Cedar St, Boston, MA 02215" +215320,AA Batteries (4-pack),1,3.84,06/14/19 00:10,"266 Adams St, San Francisco, CA 94016" +215321,AA Batteries (4-pack),1,3.84,06/29/19 19:29,"521 Chestnut St, San Francisco, CA 94016" +215322,LG Dryer,1,600.0,06/21/19 12:02,"704 Sunset St, Boston, MA 02215" +215323,AAA Batteries (4-pack),2,2.99,06/12/19 17:39,"530 Park St, Atlanta, GA 30301" +215324,Flatscreen TV,1,300,06/24/19 15:38,"542 Chestnut St, San Francisco, CA 94016" +215325,AAA Batteries (4-pack),1,2.99,06/12/19 13:53,"806 Park St, Portland, OR 97035" +215326,AA Batteries (4-pack),2,3.84,06/05/19 23:41,"654 Elm St, San Francisco, CA 94016" +215327,AAA Batteries (4-pack),1,2.99,06/08/19 22:32,"197 Highland St, New York City, NY 10001" +215328,Apple Airpods Headphones,1,150,06/03/19 14:01,"733 Elm St, Boston, MA 02215" +215329,Wired Headphones,1,11.99,06/22/19 14:24,"119 Cherry St, San Francisco, CA 94016" +215330,AAA Batteries (4-pack),1,2.99,06/01/19 18:11,"690 Church St, San Francisco, CA 94016" +215331,Google Phone,1,600,06/20/19 17:11,"56 Spruce St, Dallas, TX 75001" +215331,Wired Headphones,1,11.99,06/20/19 17:11,"56 Spruce St, Dallas, TX 75001" +215332,AA Batteries (4-pack),1,3.84,06/15/19 20:48,"8 North St, New York City, NY 10001" +215333,Wired Headphones,2,11.99,06/01/19 14:49,"118 13th St, Seattle, WA 98101" +215334,iPhone,1,700,06/11/19 17:41,"163 4th St, Dallas, TX 75001" +215335,iPhone,1,700,06/16/19 22:01,"147 Washington St, San Francisco, CA 94016" +215336,USB-C Charging Cable,1,11.95,06/19/19 18:35,"3 Madison St, Los Angeles, CA 90001" +215337,USB-C Charging Cable,2,11.95,06/02/19 20:03,"479 6th St, Seattle, WA 98101" +215338,Apple Airpods Headphones,1,150,06/23/19 14:25,"205 10th St, Los Angeles, CA 90001" +215339,Lightning Charging Cable,1,14.95,06/03/19 10:28,"831 Willow St, Los Angeles, CA 90001" +215340,Apple Airpods Headphones,1,150,06/24/19 20:18,"525 9th St, Atlanta, GA 30301" +215341,27in 4K Gaming Monitor,1,389.99,06/26/19 18:13,"364 Wilson St, Seattle, WA 98101" +215342,27in FHD Monitor,2,149.99,06/22/19 19:12,"476 5th St, Austin, TX 73301" +215343,AA Batteries (4-pack),3,3.84,06/13/19 23:28,"614 Hill St, Boston, MA 02215" +215344,Bose SoundSport Headphones,1,99.99,06/01/19 23:50,"298 Church St, San Francisco, CA 94016" +215345,Bose SoundSport Headphones,1,99.99,06/24/19 19:59,"16 2nd St, Los Angeles, CA 90001" +215346,20in Monitor,1,109.99,06/20/19 13:03,"674 Highland St, Los Angeles, CA 90001" +215347,AAA Batteries (4-pack),1,2.99,06/15/19 23:52,"599 Lakeview St, San Francisco, CA 94016" +215348,Apple Airpods Headphones,1,150,06/13/19 13:00,"598 10th St, Seattle, WA 98101" +215349,Bose SoundSport Headphones,1,99.99,06/21/19 22:08,"931 Jefferson St, San Francisco, CA 94016" +215350,Google Phone,1,600,06/29/19 23:14,"95 North St, San Francisco, CA 94016" +215351,Lightning Charging Cable,1,14.95,06/06/19 12:58,"850 7th St, Atlanta, GA 30301" +,,,,, +215352,AA Batteries (4-pack),2,3.84,06/01/19 19:15,"229 11th St, Los Angeles, CA 90001" +215353,Macbook Pro Laptop,1,1700,06/10/19 21:57,"775 Dogwood St, Los Angeles, CA 90001" +215354,USB-C Charging Cable,1,11.95,06/28/19 01:05,"343 Lakeview St, Boston, MA 02215" +215355,Wired Headphones,1,11.99,06/19/19 11:57,"153 West St, San Francisco, CA 94016" +215355,AAA Batteries (4-pack),1,2.99,06/19/19 11:57,"153 West St, San Francisco, CA 94016" +215356,AA Batteries (4-pack),1,3.84,06/17/19 12:08,"984 Meadow St, Portland, OR 97035" +215357,AAA Batteries (4-pack),1,2.99,06/23/19 10:35,"42 Church St, San Francisco, CA 94016" +215358,Wired Headphones,1,11.99,06/21/19 18:28,"665 North St, New York City, NY 10001" +215359,Bose SoundSport Headphones,1,99.99,06/24/19 12:46,"20 Jackson St, Los Angeles, CA 90001" +215360,AA Batteries (4-pack),3,3.84,06/18/19 02:52,"981 Park St, Boston, MA 02215" +215361,Lightning Charging Cable,1,14.95,06/11/19 19:51,"870 Main St, San Francisco, CA 94016" +215362,AAA Batteries (4-pack),4,2.99,06/05/19 23:25,"585 5th St, Portland, OR 97035" +215363,Wired Headphones,2,11.99,06/10/19 15:01,"685 1st St, Dallas, TX 75001" +215364,Wired Headphones,1,11.99,06/22/19 18:47,"708 Ridge St, Los Angeles, CA 90001" +215365,AAA Batteries (4-pack),3,2.99,06/14/19 19:37,"989 1st St, San Francisco, CA 94016" +215366,AAA Batteries (4-pack),1,2.99,06/30/19 21:57,"186 1st St, San Francisco, CA 94016" +215367,USB-C Charging Cable,2,11.95,06/28/19 14:49,"572 West St, San Francisco, CA 94016" +215368,USB-C Charging Cable,1,11.95,06/27/19 15:52,"427 12th St, Atlanta, GA 30301" +215369,27in FHD Monitor,1,149.99,06/06/19 18:30,"556 Dogwood St, New York City, NY 10001" +215370,AAA Batteries (4-pack),1,2.99,06/26/19 17:44,"5 8th St, Austin, TX 73301" +215371,Flatscreen TV,1,300,06/13/19 13:49,"555 Chestnut St, New York City, NY 10001" +215372,AA Batteries (4-pack),1,3.84,06/16/19 11:25,"567 Forest St, San Francisco, CA 94016" +215373,Apple Airpods Headphones,1,150,06/18/19 21:09,"417 Spruce St, Austin, TX 73301" +215374,Macbook Pro Laptop,1,1700,06/20/19 22:50,"747 Johnson St, Seattle, WA 98101" +215375,Flatscreen TV,1,300,06/04/19 21:35,"572 Church St, Boston, MA 02215" +215376,AAA Batteries (4-pack),1,2.99,06/22/19 15:44,"488 12th St, San Francisco, CA 94016" +215377,AAA Batteries (4-pack),1,2.99,06/14/19 07:08,"646 Elm St, Austin, TX 73301" +215378,iPhone,1,700,06/27/19 09:37,"887 Walnut St, New York City, NY 10001" +215379,USB-C Charging Cable,1,11.95,06/30/19 22:08,"663 Forest St, Austin, TX 73301" +215380,Lightning Charging Cable,1,14.95,06/02/19 11:15,"323 Hickory St, Seattle, WA 98101" +215381,AA Batteries (4-pack),1,3.84,06/13/19 12:37,"967 Dogwood St, San Francisco, CA 94016" +215382,AA Batteries (4-pack),1,3.84,06/30/19 11:10,"584 2nd St, San Francisco, CA 94016" +215383,AAA Batteries (4-pack),2,2.99,06/25/19 23:44,"779 Dogwood St, Boston, MA 02215" +215384,USB-C Charging Cable,1,11.95,06/08/19 09:56,"840 9th St, New York City, NY 10001" +215385,USB-C Charging Cable,1,11.95,06/25/19 14:22,"298 Sunset St, Portland, OR 97035" +215386,27in FHD Monitor,1,149.99,06/07/19 01:53,"706 10th St, Dallas, TX 75001" +215387,27in FHD Monitor,1,149.99,06/01/19 19:45,"919 Lakeview St, Portland, OR 97035" +215388,Bose SoundSport Headphones,1,99.99,06/27/19 00:22,"707 10th St, New York City, NY 10001" +215389,USB-C Charging Cable,1,11.95,06/30/19 14:38,"769 Lincoln St, San Francisco, CA 94016" +215390,AA Batteries (4-pack),2,3.84,06/10/19 16:21,"184 13th St, New York City, NY 10001" +215391,AA Batteries (4-pack),1,3.84,06/07/19 18:09,"274 Center St, Los Angeles, CA 90001" +215392,AAA Batteries (4-pack),3,2.99,06/03/19 20:47,"335 Highland St, Portland, OR 97035" +215393,27in 4K Gaming Monitor,1,389.99,06/15/19 21:21,"263 West St, New York City, NY 10001" +215394,Bose SoundSport Headphones,1,99.99,06/13/19 10:30,"917 13th St, New York City, NY 10001" +215395,Lightning Charging Cable,1,14.95,06/27/19 00:33,"670 North St, Atlanta, GA 30301" +215396,USB-C Charging Cable,1,11.95,06/09/19 19:47,"4 Meadow St, Atlanta, GA 30301" +215397,Lightning Charging Cable,1,14.95,06/05/19 17:46,"472 Madison St, San Francisco, CA 94016" +215398,USB-C Charging Cable,2,11.95,06/28/19 08:00,"969 River St, Boston, MA 02215" +215399,AA Batteries (4-pack),1,3.84,06/10/19 10:44,"418 1st St, New York City, NY 10001" +215400,ThinkPad Laptop,1,999.99,06/04/19 13:18,"927 Forest St, Dallas, TX 75001" +215401,Google Phone,1,600,06/17/19 14:48,"182 West St, Seattle, WA 98101" +215402,27in 4K Gaming Monitor,1,389.99,06/20/19 16:09,"994 14th St, Atlanta, GA 30301" +215403,iPhone,1,700,06/10/19 13:07,"386 Washington St, Atlanta, GA 30301" +215404,Flatscreen TV,1,300,06/05/19 21:41,"537 Hickory St, Seattle, WA 98101" +215405,34in Ultrawide Monitor,1,379.99,06/08/19 21:28,"867 Park St, Portland, ME 04101" +215406,Apple Airpods Headphones,1,150,06/22/19 18:49,"207 Lincoln St, New York City, NY 10001" +215407,USB-C Charging Cable,1,11.95,06/13/19 18:45,"780 Maple St, San Francisco, CA 94016" +215408,USB-C Charging Cable,1,11.95,06/30/19 20:51,"932 Ridge St, San Francisco, CA 94016" +215409,27in 4K Gaming Monitor,1,389.99,06/27/19 21:30,"585 Hill St, Austin, TX 73301" +215410,Wired Headphones,1,11.99,06/12/19 18:37,"826 9th St, Dallas, TX 75001" +215411,Lightning Charging Cable,1,14.95,06/30/19 08:41,"405 Spruce St, Seattle, WA 98101" +215412,iPhone,1,700,06/22/19 07:45,"320 8th St, Seattle, WA 98101" +215413,USB-C Charging Cable,2,11.95,06/16/19 21:01,"115 Jackson St, New York City, NY 10001" +215414,Wired Headphones,1,11.99,06/15/19 10:05,"440 14th St, New York City, NY 10001" +215415,Apple Airpods Headphones,1,150,06/08/19 23:10,"391 Forest St, Atlanta, GA 30301" +215416,Apple Airpods Headphones,1,150,06/03/19 01:15,"332 Willow St, San Francisco, CA 94016" +215417,Macbook Pro Laptop,1,1700,06/08/19 11:27,"118 Center St, New York City, NY 10001" +215418,AA Batteries (4-pack),1,3.84,06/24/19 11:14,"888 Elm St, San Francisco, CA 94016" +215419,AAA Batteries (4-pack),2,2.99,06/06/19 12:42,"288 North St, San Francisco, CA 94016" +215420,AA Batteries (4-pack),1,3.84,06/17/19 22:59,"112 5th St, Los Angeles, CA 90001" +215421,USB-C Charging Cable,1,11.95,06/23/19 20:22,"890 Maple St, Boston, MA 02215" +215422,Lightning Charging Cable,1,14.95,06/05/19 14:07,"835 Washington St, New York City, NY 10001" +215423,Lightning Charging Cable,1,14.95,06/12/19 16:45,"263 West St, San Francisco, CA 94016" +215424,iPhone,1,700,06/15/19 17:24,"879 Washington St, Los Angeles, CA 90001" +215424,Apple Airpods Headphones,1,150,06/15/19 17:24,"879 Washington St, Los Angeles, CA 90001" +215425,AAA Batteries (4-pack),1,2.99,06/19/19 12:28,"465 4th St, New York City, NY 10001" +215426,27in FHD Monitor,2,149.99,06/05/19 19:36,"345 Walnut St, Atlanta, GA 30301" +215427,iPhone,1,700,06/04/19 17:29,"195 Ridge St, Los Angeles, CA 90001" +215428,AAA Batteries (4-pack),3,2.99,06/18/19 18:37,"584 Cedar St, Boston, MA 02215" +215429,AA Batteries (4-pack),2,3.84,06/29/19 01:18,"897 Church St, Seattle, WA 98101" +215430,AA Batteries (4-pack),1,3.84,06/08/19 09:48,"363 9th St, San Francisco, CA 94016" +215431,Apple Airpods Headphones,1,150,06/08/19 14:17,"635 West St, San Francisco, CA 94016" +215432,iPhone,1,700,06/16/19 13:32,"195 8th St, Dallas, TX 75001" +215432,Apple Airpods Headphones,1,150,06/16/19 13:32,"195 8th St, Dallas, TX 75001" +215433,27in 4K Gaming Monitor,1,389.99,06/04/19 10:43,"66 Pine St, New York City, NY 10001" +215434,AA Batteries (4-pack),2,3.84,06/24/19 20:47,"224 13th St, San Francisco, CA 94016" +215435,Wired Headphones,1,11.99,06/29/19 22:19,"844 Pine St, Seattle, WA 98101" +215436,Lightning Charging Cable,1,14.95,06/21/19 14:04,"73 Meadow St, Dallas, TX 75001" +215437,Wired Headphones,1,11.99,06/15/19 15:35,"440 Jackson St, Los Angeles, CA 90001" +215438,Google Phone,1,600,06/06/19 07:57,"17 Wilson St, Portland, OR 97035" +215439,Macbook Pro Laptop,1,1700,06/23/19 12:22,"360 13th St, San Francisco, CA 94016" +215440,Wired Headphones,1,11.99,06/07/19 17:35,"278 11th St, Atlanta, GA 30301" +215441,USB-C Charging Cable,1,11.95,06/25/19 07:53,"2 Pine St, San Francisco, CA 94016" +215442,USB-C Charging Cable,1,11.95,06/15/19 20:43,"138 Lakeview St, Dallas, TX 75001" +215443,Apple Airpods Headphones,1,150,06/08/19 11:20,"220 11th St, Atlanta, GA 30301" +215444,AA Batteries (4-pack),1,3.84,06/18/19 11:24,"284 Main St, Seattle, WA 98101" +215445,AA Batteries (4-pack),1,3.84,06/26/19 20:49,"204 Madison St, Dallas, TX 75001" +215446,27in FHD Monitor,1,149.99,06/23/19 10:26,"396 Lincoln St, New York City, NY 10001" +215447,AAA Batteries (4-pack),1,2.99,06/10/19 15:38,"483 Church St, Los Angeles, CA 90001" +215448,Apple Airpods Headphones,1,150,06/01/19 16:17,"652 13th St, New York City, NY 10001" +215449,AA Batteries (4-pack),1,3.84,06/20/19 16:24,"746 South St, Atlanta, GA 30301" +215450,Apple Airpods Headphones,1,150,07/01/19 01:23,"663 1st St, Los Angeles, CA 90001" +215451,Macbook Pro Laptop,1,1700,06/01/19 11:55,"563 Pine St, Los Angeles, CA 90001" +215452,AAA Batteries (4-pack),1,2.99,06/01/19 13:15,"627 Park St, Portland, OR 97035" +215453,Apple Airpods Headphones,1,150,06/21/19 13:44,"987 13th St, Seattle, WA 98101" +215454,Apple Airpods Headphones,1,150,06/10/19 12:55,"570 Cherry St, San Francisco, CA 94016" +215455,Flatscreen TV,1,300,06/07/19 17:38,"78 8th St, Los Angeles, CA 90001" +215456,Lightning Charging Cable,1,14.95,06/05/19 12:09,"218 Chestnut St, New York City, NY 10001" +215457,USB-C Charging Cable,1,11.95,06/27/19 16:57,"51 Hickory St, San Francisco, CA 94016" +215458,Bose SoundSport Headphones,1,99.99,06/26/19 19:39,"145 Park St, Dallas, TX 75001" +215459,AAA Batteries (4-pack),1,2.99,06/30/19 17:53,"805 Sunset St, Portland, OR 97035" +215460,Macbook Pro Laptop,1,1700,06/14/19 11:55,"620 12th St, New York City, NY 10001" +215461,Wired Headphones,2,11.99,06/16/19 19:53,"381 Madison St, San Francisco, CA 94016" +215462,Flatscreen TV,1,300,06/24/19 16:58,"113 Main St, New York City, NY 10001" +215463,34in Ultrawide Monitor,1,379.99,06/22/19 16:57,"967 Johnson St, San Francisco, CA 94016" +215464,AAA Batteries (4-pack),3,2.99,06/25/19 09:47,"167 13th St, Portland, OR 97035" +215465,USB-C Charging Cable,1,11.95,06/12/19 15:08,"783 Park St, New York City, NY 10001" +215466,Wired Headphones,1,11.99,06/26/19 21:38,"161 Willow St, Atlanta, GA 30301" +215467,AA Batteries (4-pack),1,3.84,06/24/19 16:32,"261 11th St, Boston, MA 02215" +215468,Apple Airpods Headphones,1,150,06/14/19 23:54,"159 North St, San Francisco, CA 94016" +215469,AA Batteries (4-pack),1,3.84,06/01/19 17:14,"454 Dogwood St, San Francisco, CA 94016" +215470,Bose SoundSport Headphones,1,99.99,06/23/19 21:58,"687 7th St, Seattle, WA 98101" +215471,AA Batteries (4-pack),1,3.84,06/18/19 00:14,"931 Walnut St, Austin, TX 73301" +215472,Wired Headphones,1,11.99,06/05/19 19:23,"324 Hill St, San Francisco, CA 94016" +215473,Vareebadd Phone,1,400,06/01/19 19:51,"281 Johnson St, New York City, NY 10001" +215474,34in Ultrawide Monitor,1,379.99,06/10/19 14:45,"742 6th St, Seattle, WA 98101" +215475,Wired Headphones,1,11.99,06/16/19 15:40,"367 Church St, San Francisco, CA 94016" +215476,ThinkPad Laptop,1,999.99,06/16/19 11:15,"708 Main St, New York City, NY 10001" +215477,Wired Headphones,1,11.99,06/19/19 18:26,"354 Washington St, Atlanta, GA 30301" +215478,20in Monitor,1,109.99,06/27/19 21:18,"427 4th St, Boston, MA 02215" +215479,AAA Batteries (4-pack),1,2.99,06/02/19 13:41,"261 Ridge St, Portland, OR 97035" +215480,AA Batteries (4-pack),3,3.84,06/26/19 17:37,"840 6th St, San Francisco, CA 94016" +215481,Wired Headphones,1,11.99,06/11/19 15:48,"317 Elm St, Austin, TX 73301" +215482,Wired Headphones,1,11.99,06/02/19 20:25,"247 2nd St, San Francisco, CA 94016" +215483,Wired Headphones,2,11.99,06/29/19 19:14,"800 Chestnut St, New York City, NY 10001" +215484,Apple Airpods Headphones,1,150,06/18/19 23:49,"497 Willow St, New York City, NY 10001" +215485,Lightning Charging Cable,1,14.95,06/27/19 10:14,"384 Hill St, San Francisco, CA 94016" +215486,Wired Headphones,1,11.99,06/10/19 13:07,"918 Johnson St, Dallas, TX 75001" +215487,AAA Batteries (4-pack),1,2.99,06/16/19 13:09,"705 Lake St, Dallas, TX 75001" +215488,Lightning Charging Cable,1,14.95,06/03/19 07:47,"868 4th St, San Francisco, CA 94016" +215489,Wired Headphones,1,11.99,06/27/19 19:01,"874 Jefferson St, Atlanta, GA 30301" +215490,Google Phone,1,600,06/14/19 00:08,"596 Cherry St, Dallas, TX 75001" +215491,Wired Headphones,1,11.99,06/19/19 10:58,"901 11th St, San Francisco, CA 94016" +215492,USB-C Charging Cable,1,11.95,06/17/19 14:08,"724 Maple St, Los Angeles, CA 90001" +215493,iPhone,1,700,06/11/19 21:35,"297 Wilson St, San Francisco, CA 94016" +215494,Bose SoundSport Headphones,1,99.99,06/12/19 11:45,"71 Maple St, San Francisco, CA 94016" +215495,Lightning Charging Cable,1,14.95,06/14/19 20:12,"380 South St, Portland, ME 04101" +215496,Apple Airpods Headphones,1,150,06/13/19 20:29,"514 Dogwood St, San Francisco, CA 94016" +215497,USB-C Charging Cable,1,11.95,06/15/19 07:21,"970 Spruce St, San Francisco, CA 94016" +215498,AA Batteries (4-pack),2,3.84,06/09/19 16:41,"183 Cedar St, New York City, NY 10001" +215499,27in FHD Monitor,1,149.99,06/05/19 11:29,"104 4th St, Austin, TX 73301" +215500,Bose SoundSport Headphones,1,99.99,06/26/19 18:12,"222 Sunset St, San Francisco, CA 94016" +,,,,, +215501,USB-C Charging Cable,1,11.95,06/07/19 14:30,"479 Dogwood St, Seattle, WA 98101" +215502,Apple Airpods Headphones,1,150,06/02/19 19:25,"565 Highland St, Boston, MA 02215" +215503,Apple Airpods Headphones,1,150,06/12/19 19:58,"825 12th St, Boston, MA 02215" +215504,Lightning Charging Cable,1,14.95,06/16/19 20:48,"246 Walnut St, Los Angeles, CA 90001" +215505,Flatscreen TV,1,300,06/17/19 00:44,"631 Wilson St, New York City, NY 10001" +215506,Bose SoundSport Headphones,1,99.99,06/06/19 19:15,"475 Washington St, Los Angeles, CA 90001" +215507,Apple Airpods Headphones,2,150,06/13/19 11:42,"444 2nd St, Seattle, WA 98101" +215508,Lightning Charging Cable,1,14.95,06/08/19 10:39,"668 Walnut St, San Francisco, CA 94016" +215509,AAA Batteries (4-pack),2,2.99,06/25/19 12:49,"898 West St, New York City, NY 10001" +215510,Apple Airpods Headphones,1,150,06/07/19 19:25,"361 West St, Boston, MA 02215" +215511,Bose SoundSport Headphones,1,99.99,06/21/19 07:24,"482 10th St, Seattle, WA 98101" +215512,AAA Batteries (4-pack),1,2.99,06/27/19 09:24,"868 2nd St, Los Angeles, CA 90001" +215513,USB-C Charging Cable,1,11.95,06/18/19 22:56,"570 Park St, Dallas, TX 75001" +215514,Lightning Charging Cable,1,14.95,06/05/19 12:22,"234 Center St, Seattle, WA 98101" +215515,Wired Headphones,1,11.99,06/25/19 12:20,"428 Cherry St, Seattle, WA 98101" +215516,USB-C Charging Cable,2,11.95,06/04/19 13:42,"352 Cedar St, Dallas, TX 75001" +215517,Google Phone,1,600,06/04/19 11:50,"216 Adams St, San Francisco, CA 94016" +215518,AAA Batteries (4-pack),2,2.99,06/17/19 14:55,"986 4th St, Los Angeles, CA 90001" +215519,iPhone,1,700,06/07/19 09:14,"338 Walnut St, Atlanta, GA 30301" +215520,Bose SoundSport Headphones,1,99.99,06/04/19 15:21,"455 Ridge St, Dallas, TX 75001" +215521,Wired Headphones,1,11.99,06/29/19 23:59,"573 Park St, Portland, OR 97035" +215522,AAA Batteries (4-pack),1,2.99,06/17/19 22:50,"685 Adams St, San Francisco, CA 94016" +215523,AAA Batteries (4-pack),1,2.99,06/10/19 21:08,"411 Park St, San Francisco, CA 94016" +215524,AAA Batteries (4-pack),1,2.99,06/28/19 10:42,"671 South St, Dallas, TX 75001" +215525,Wired Headphones,1,11.99,06/23/19 12:33,"624 2nd St, New York City, NY 10001" +215526,USB-C Charging Cable,1,11.95,06/30/19 15:03,"625 6th St, San Francisco, CA 94016" +215527,27in 4K Gaming Monitor,1,389.99,06/08/19 22:13,"315 Park St, Boston, MA 02215" +215528,AA Batteries (4-pack),1,3.84,06/11/19 17:28,"336 West St, New York City, NY 10001" +215529,AAA Batteries (4-pack),1,2.99,06/06/19 17:51,"754 North St, Seattle, WA 98101" +215530,Wired Headphones,1,11.99,06/03/19 14:13,"393 Elm St, San Francisco, CA 94016" +215531,iPhone,1,700,06/18/19 14:43,"323 8th St, Atlanta, GA 30301" +215532,34in Ultrawide Monitor,1,379.99,06/10/19 20:57,"498 Willow St, New York City, NY 10001" +215533,AA Batteries (4-pack),1,3.84,06/18/19 12:42,"840 Ridge St, New York City, NY 10001" +215534,Wired Headphones,1,11.99,06/07/19 11:08,"752 Spruce St, Los Angeles, CA 90001" +215535,AA Batteries (4-pack),1,3.84,06/27/19 18:21,"196 Maple St, New York City, NY 10001" +215536,Apple Airpods Headphones,1,150,06/07/19 12:36,"938 Spruce St, Seattle, WA 98101" +215537,34in Ultrawide Monitor,1,379.99,06/25/19 14:48,"267 Ridge St, Dallas, TX 75001" +215538,27in 4K Gaming Monitor,1,389.99,06/21/19 15:25,"588 River St, Los Angeles, CA 90001" +215539,Wired Headphones,3,11.99,06/21/19 12:13,"140 Chestnut St, New York City, NY 10001" +215540,USB-C Charging Cable,1,11.95,06/27/19 16:52,"415 12th St, Portland, OR 97035" +215541,Lightning Charging Cable,1,14.95,06/20/19 15:32,"824 Spruce St, Atlanta, GA 30301" +215542,Apple Airpods Headphones,1,150,06/07/19 14:02,"466 Elm St, Boston, MA 02215" +215543,Wired Headphones,1,11.99,06/20/19 12:19,"541 Lincoln St, New York City, NY 10001" +215544,Bose SoundSport Headphones,1,99.99,06/15/19 20:18,"913 14th St, San Francisco, CA 94016" +215545,27in FHD Monitor,1,149.99,06/12/19 07:51,"936 Meadow St, Portland, OR 97035" +215546,Bose SoundSport Headphones,1,99.99,06/08/19 18:13,"917 River St, Portland, OR 97035" +215547,Apple Airpods Headphones,1,150,06/26/19 14:47,"373 Jackson St, New York City, NY 10001" +215547,AAA Batteries (4-pack),2,2.99,06/26/19 14:47,"373 Jackson St, New York City, NY 10001" +215548,Google Phone,1,600,06/24/19 11:32,"882 4th St, Los Angeles, CA 90001" +215549,Apple Airpods Headphones,1,150,06/27/19 22:40,"747 Hickory St, New York City, NY 10001" +215550,AA Batteries (4-pack),1,3.84,06/01/19 20:53,"801 Washington St, San Francisco, CA 94016" +215551,Flatscreen TV,1,300,06/29/19 16:03,"326 Chestnut St, Austin, TX 73301" +215552,iPhone,1,700,06/19/19 12:21,"952 5th St, Portland, ME 04101" +215553,USB-C Charging Cable,1,11.95,06/26/19 17:55,"429 7th St, San Francisco, CA 94016" +215553,Macbook Pro Laptop,1,1700,06/26/19 17:55,"429 7th St, San Francisco, CA 94016" +215554,20in Monitor,1,109.99,06/06/19 22:04,"164 Highland St, Dallas, TX 75001" +215554,Apple Airpods Headphones,1,150,06/06/19 22:04,"164 Highland St, Dallas, TX 75001" +215555,AAA Batteries (4-pack),1,2.99,06/16/19 22:45,"972 Madison St, San Francisco, CA 94016" +215556,27in 4K Gaming Monitor,1,389.99,06/17/19 19:39,"123 Meadow St, Boston, MA 02215" +215557,Apple Airpods Headphones,1,150,06/25/19 17:56,"246 Washington St, Austin, TX 73301" +215558,27in FHD Monitor,1,149.99,06/08/19 18:17,"48 Meadow St, Dallas, TX 75001" +215559,Apple Airpods Headphones,1,150,06/09/19 06:24,"102 Church St, New York City, NY 10001" +215560,Bose SoundSport Headphones,1,99.99,06/15/19 19:19,"731 5th St, New York City, NY 10001" +215561,Apple Airpods Headphones,1,150,06/02/19 22:48,"865 Jefferson St, Austin, TX 73301" +215562,Lightning Charging Cable,1,14.95,06/13/19 12:50,"981 13th St, Los Angeles, CA 90001" +215563,Lightning Charging Cable,1,14.95,06/25/19 09:45,"942 Forest St, San Francisco, CA 94016" +215564,AA Batteries (4-pack),2,3.84,06/05/19 17:05,"829 West St, San Francisco, CA 94016" +215565,27in FHD Monitor,1,149.99,06/06/19 10:04,"125 Church St, San Francisco, CA 94016" +215566,Wired Headphones,1,11.99,06/07/19 18:16,"633 9th St, San Francisco, CA 94016" +215567,Lightning Charging Cable,1,14.95,06/26/19 19:04,"356 Highland St, Dallas, TX 75001" +215568,Apple Airpods Headphones,1,150,06/27/19 14:36,"505 Highland St, San Francisco, CA 94016" +215569,Vareebadd Phone,1,400,06/24/19 10:24,"116 Adams St, Portland, OR 97035" +215570,Apple Airpods Headphones,1,150,06/02/19 14:50,"99 Johnson St, Boston, MA 02215" +215571,Macbook Pro Laptop,1,1700,06/02/19 19:18,"119 Madison St, New York City, NY 10001" +215572,AAA Batteries (4-pack),1,2.99,06/24/19 12:00,"212 Park St, Boston, MA 02215" +215573,Wired Headphones,1,11.99,06/26/19 21:09,"809 6th St, New York City, NY 10001" +215574,Flatscreen TV,1,300,06/20/19 13:44,"317 Sunset St, Los Angeles, CA 90001" +215575,34in Ultrawide Monitor,1,379.99,06/28/19 12:34,"428 Hill St, Portland, OR 97035" +215576,Macbook Pro Laptop,1,1700,06/02/19 09:29,"939 Jefferson St, Austin, TX 73301" +215577,AAA Batteries (4-pack),1,2.99,06/15/19 21:40,"814 Elm St, San Francisco, CA 94016" +215578,Bose SoundSport Headphones,1,99.99,06/14/19 10:15,"603 Jefferson St, San Francisco, CA 94016" +215579,AA Batteries (4-pack),1,3.84,06/26/19 23:39,"67 14th St, San Francisco, CA 94016" +215580,AAA Batteries (4-pack),1,2.99,06/28/19 20:47,"927 11th St, San Francisco, CA 94016" +215581,20in Monitor,1,109.99,06/16/19 22:15,"114 13th St, Boston, MA 02215" +215582,Google Phone,1,600,06/19/19 10:11,"415 River St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +215583,Flatscreen TV,1,300,06/20/19 08:40,"66 Sunset St, New York City, NY 10001" +215584,AA Batteries (4-pack),2,3.84,06/23/19 11:11,"50 River St, Los Angeles, CA 90001" +215585,AAA Batteries (4-pack),1,2.99,06/23/19 15:56,"276 Elm St, New York City, NY 10001" +215586,27in FHD Monitor,1,149.99,06/07/19 22:52,"332 8th St, Dallas, TX 75001" +215587,Macbook Pro Laptop,1,1700,06/05/19 18:45,"974 Highland St, Dallas, TX 75001" +215588,Macbook Pro Laptop,1,1700,06/11/19 16:19,"66 North St, Portland, OR 97035" +215589,USB-C Charging Cable,1,11.95,06/17/19 16:12,"221 5th St, San Francisco, CA 94016" +215590,Apple Airpods Headphones,1,150,06/08/19 22:04,"12 Church St, San Francisco, CA 94016" +215591,USB-C Charging Cable,1,11.95,06/05/19 19:11,"28 14th St, Dallas, TX 75001" +215592,34in Ultrawide Monitor,1,379.99,06/30/19 18:42,"840 11th St, New York City, NY 10001" +215593,34in Ultrawide Monitor,1,379.99,06/03/19 15:54,"867 South St, San Francisco, CA 94016" +215594,34in Ultrawide Monitor,2,379.99,06/26/19 19:41,"36 Meadow St, Los Angeles, CA 90001" +215595,USB-C Charging Cable,1,11.95,06/25/19 22:38,"871 9th St, Los Angeles, CA 90001" +215596,AA Batteries (4-pack),2,3.84,06/25/19 22:26,"277 Madison St, New York City, NY 10001" +215597,Lightning Charging Cable,1,14.95,06/30/19 21:03,"500 Ridge St, Atlanta, GA 30301" +215598,USB-C Charging Cable,1,11.95,06/09/19 20:09,"487 4th St, Dallas, TX 75001" +215599,AA Batteries (4-pack),1,3.84,06/14/19 21:27,"723 Spruce St, New York City, NY 10001" +215600,Apple Airpods Headphones,1,150,06/19/19 10:27,"415 6th St, Atlanta, GA 30301" +215601,USB-C Charging Cable,1,11.95,06/03/19 19:37,"20 6th St, Boston, MA 02215" +215602,20in Monitor,1,109.99,06/04/19 19:34,"816 Center St, New York City, NY 10001" +215603,27in FHD Monitor,1,149.99,06/01/19 22:24,"463 Lake St, San Francisco, CA 94016" +215604,Wired Headphones,1,11.99,06/11/19 19:18,"718 9th St, Seattle, WA 98101" +215605,Lightning Charging Cable,1,14.95,06/08/19 00:07,"596 4th St, Boston, MA 02215" +215606,Wired Headphones,1,11.99,06/12/19 19:55,"673 Elm St, San Francisco, CA 94016" +215607,AA Batteries (4-pack),1,3.84,06/08/19 15:48,"765 14th St, Boston, MA 02215" +215608,AA Batteries (4-pack),1,3.84,06/20/19 19:31,"104 Forest St, New York City, NY 10001" +215609,AA Batteries (4-pack),2,3.84,06/14/19 18:34,"257 13th St, Atlanta, GA 30301" +215610,27in 4K Gaming Monitor,1,389.99,06/10/19 00:46,"526 Cherry St, Los Angeles, CA 90001" +215611,Bose SoundSport Headphones,1,99.99,06/07/19 15:59,"528 10th St, New York City, NY 10001" +215612,AA Batteries (4-pack),1,3.84,06/28/19 10:56,"980 Lincoln St, Los Angeles, CA 90001" +215613,Apple Airpods Headphones,1,150,06/24/19 19:45,"880 Jefferson St, New York City, NY 10001" +215614,USB-C Charging Cable,1,11.95,06/30/19 19:45,"737 Ridge St, San Francisco, CA 94016" +215615,AAA Batteries (4-pack),1,2.99,06/05/19 18:12,"180 2nd St, San Francisco, CA 94016" +215616,AAA Batteries (4-pack),1,2.99,06/28/19 17:40,"619 9th St, Boston, MA 02215" +215617,iPhone,1,700,06/24/19 07:51,"580 Sunset St, Austin, TX 73301" +215618,Lightning Charging Cable,1,14.95,06/14/19 09:23,"777 Highland St, San Francisco, CA 94016" +215619,Flatscreen TV,1,300,06/30/19 07:57,"788 Sunset St, Dallas, TX 75001" +215620,USB-C Charging Cable,1,11.95,06/21/19 07:47,"545 Lakeview St, San Francisco, CA 94016" +215621,AAA Batteries (4-pack),1,2.99,06/04/19 08:08,"46 Lakeview St, San Francisco, CA 94016" +215622,Wired Headphones,1,11.99,06/09/19 08:54,"453 9th St, Seattle, WA 98101" +215623,Google Phone,1,600,06/18/19 14:07,"750 North St, Seattle, WA 98101" +215623,Wired Headphones,1,11.99,06/18/19 14:07,"750 North St, Seattle, WA 98101" +215624,Apple Airpods Headphones,1,150,06/01/19 18:05,"818 4th St, Boston, MA 02215" +215625,iPhone,1,700,06/10/19 10:20,"216 Spruce St, Los Angeles, CA 90001" +215626,USB-C Charging Cable,2,11.95,06/26/19 12:54,"619 Walnut St, Dallas, TX 75001" +215627,Lightning Charging Cable,1,14.95,06/15/19 18:59,"309 Center St, New York City, NY 10001" +215628,USB-C Charging Cable,1,11.95,06/08/19 20:33,"591 7th St, New York City, NY 10001" +215629,Lightning Charging Cable,1,14.95,06/20/19 17:49,"80 Lincoln St, New York City, NY 10001" +215630,LG Washing Machine,1,600.0,06/17/19 08:44,"241 Main St, New York City, NY 10001" +215631,USB-C Charging Cable,1,11.95,06/25/19 20:02,"591 Dogwood St, Portland, OR 97035" +215632,Google Phone,1,600,06/06/19 18:03,"896 Willow St, Boston, MA 02215" +215632,USB-C Charging Cable,1,11.95,06/06/19 18:03,"896 Willow St, Boston, MA 02215" +215633,iPhone,1,700,06/02/19 17:32,"143 Adams St, Atlanta, GA 30301" +215633,Lightning Charging Cable,1,14.95,06/02/19 17:32,"143 Adams St, Atlanta, GA 30301" +215633,Wired Headphones,1,11.99,06/02/19 17:32,"143 Adams St, Atlanta, GA 30301" +215634,AAA Batteries (4-pack),1,2.99,06/19/19 23:57,"961 11th St, San Francisco, CA 94016" +215635,34in Ultrawide Monitor,1,379.99,06/12/19 12:12,"115 2nd St, New York City, NY 10001" +215636,AA Batteries (4-pack),1,3.84,06/17/19 22:56,"571 Madison St, Los Angeles, CA 90001" +215637,AAA Batteries (4-pack),1,2.99,06/25/19 09:20,"442 1st St, New York City, NY 10001" +215638,Flatscreen TV,1,300,06/16/19 18:23,"682 Cherry St, San Francisco, CA 94016" +215639,Wired Headphones,1,11.99,06/04/19 14:36,"878 Washington St, San Francisco, CA 94016" +215640,iPhone,1,700,06/07/19 15:41,"441 Adams St, San Francisco, CA 94016" +215641,27in FHD Monitor,1,149.99,06/14/19 17:37,"156 10th St, New York City, NY 10001" +215642,AAA Batteries (4-pack),2,2.99,06/07/19 07:06,"851 West St, New York City, NY 10001" +215643,AA Batteries (4-pack),2,3.84,06/12/19 15:23,"933 Madison St, Boston, MA 02215" +215644,Bose SoundSport Headphones,1,99.99,06/16/19 13:24,"805 2nd St, New York City, NY 10001" +215645,AA Batteries (4-pack),1,3.84,06/11/19 06:40,"558 Jackson St, Seattle, WA 98101" +215646,USB-C Charging Cable,1,11.95,06/10/19 23:10,"160 Walnut St, Austin, TX 73301" +215647,27in 4K Gaming Monitor,1,389.99,06/08/19 13:15,"334 Cherry St, New York City, NY 10001" +215648,34in Ultrawide Monitor,1,379.99,06/28/19 21:21,"608 Jackson St, Seattle, WA 98101" +215649,Bose SoundSport Headphones,1,99.99,06/10/19 22:02,"742 Meadow St, Seattle, WA 98101" +215650,AA Batteries (4-pack),1,3.84,06/21/19 16:59,"877 Ridge St, Boston, MA 02215" +215651,Lightning Charging Cable,1,14.95,06/25/19 22:23,"475 Madison St, Boston, MA 02215" +215652,AA Batteries (4-pack),1,3.84,06/23/19 15:13,"181 West St, Los Angeles, CA 90001" +215653,Bose SoundSport Headphones,1,99.99,06/29/19 16:10,"383 Washington St, Seattle, WA 98101" +215654,Wired Headphones,1,11.99,06/12/19 18:37,"638 11th St, Seattle, WA 98101" +215655,27in 4K Gaming Monitor,1,389.99,06/03/19 19:20,"645 Meadow St, Los Angeles, CA 90001" +215656,Apple Airpods Headphones,1,150,06/11/19 12:20,"531 Hickory St, Los Angeles, CA 90001" +215657,Google Phone,1,600,06/08/19 11:41,"127 9th St, San Francisco, CA 94016" +215657,USB-C Charging Cable,1,11.95,06/08/19 11:41,"127 9th St, San Francisco, CA 94016" +215658,Flatscreen TV,1,300,06/01/19 13:02,"992 Willow St, Seattle, WA 98101" +215659,34in Ultrawide Monitor,1,379.99,06/24/19 09:47,"118 Lakeview St, San Francisco, CA 94016" +215660,iPhone,1,700,06/09/19 22:20,"79 8th St, San Francisco, CA 94016" +215661,USB-C Charging Cable,2,11.95,06/20/19 14:11,"839 Washington St, Los Angeles, CA 90001" +215662,AA Batteries (4-pack),1,3.84,06/10/19 01:42,"53 South St, Seattle, WA 98101" +215663,iPhone,1,700,06/13/19 18:58,"630 Walnut St, New York City, NY 10001" +215664,ThinkPad Laptop,1,999.99,06/04/19 10:08,"392 Jackson St, Los Angeles, CA 90001" +215665,Lightning Charging Cable,2,14.95,06/29/19 23:37,"730 Park St, Portland, OR 97035" +215666,Apple Airpods Headphones,1,150,06/08/19 06:10,"614 Lincoln St, Atlanta, GA 30301" +215667,iPhone,1,700,06/11/19 09:20,"508 10th St, Los Angeles, CA 90001" +215668,Bose SoundSport Headphones,1,99.99,06/05/19 10:43,"35 Lincoln St, Portland, OR 97035" +215669,Wired Headphones,1,11.99,06/28/19 20:11,"994 7th St, San Francisco, CA 94016" +215670,AAA Batteries (4-pack),1,2.99,06/04/19 16:19,"307 9th St, San Francisco, CA 94016" +215671,AA Batteries (4-pack),1,3.84,06/07/19 08:20,"324 12th St, Atlanta, GA 30301" +215672,Apple Airpods Headphones,1,150,06/01/19 16:30,"577 Meadow St, San Francisco, CA 94016" +215673,USB-C Charging Cable,2,11.95,06/06/19 11:12,"262 Elm St, Los Angeles, CA 90001" +215674,27in FHD Monitor,1,149.99,06/21/19 13:49,"402 5th St, Atlanta, GA 30301" +215675,Lightning Charging Cable,1,14.95,06/06/19 18:19,"83 Spruce St, Atlanta, GA 30301" +215676,Lightning Charging Cable,1,14.95,06/30/19 19:21,"216 Johnson St, Seattle, WA 98101" +215677,34in Ultrawide Monitor,1,379.99,06/30/19 20:41,"89 Highland St, Dallas, TX 75001" +215678,Bose SoundSport Headphones,1,99.99,06/28/19 18:28,"699 Pine St, Austin, TX 73301" +215679,AA Batteries (4-pack),1,3.84,06/12/19 10:08,"701 Johnson St, Portland, OR 97035" +215680,Lightning Charging Cable,1,14.95,06/13/19 21:36,"680 1st St, Boston, MA 02215" +215681,27in FHD Monitor,1,149.99,06/25/19 18:39,"618 Chestnut St, Dallas, TX 75001" +215682,Apple Airpods Headphones,1,150,06/09/19 17:45,"330 10th St, Portland, OR 97035" +215683,USB-C Charging Cable,1,11.95,06/25/19 22:00,"552 10th St, Los Angeles, CA 90001" +215684,Lightning Charging Cable,1,14.95,06/23/19 11:39,"276 Meadow St, Dallas, TX 75001" +215685,Vareebadd Phone,1,400,06/29/19 20:37,"444 Meadow St, Austin, TX 73301" +215685,USB-C Charging Cable,1,11.95,06/29/19 20:37,"444 Meadow St, Austin, TX 73301" +215686,AAA Batteries (4-pack),1,2.99,06/29/19 18:54,"507 Cherry St, Portland, OR 97035" +215687,AA Batteries (4-pack),2,3.84,06/01/19 10:51,"441 Highland St, Boston, MA 02215" +215688,Apple Airpods Headphones,1,150,06/12/19 22:03,"917 Johnson St, Los Angeles, CA 90001" +215689,AAA Batteries (4-pack),1,2.99,06/19/19 18:33,"841 Lake St, San Francisco, CA 94016" +215690,USB-C Charging Cable,1,11.95,06/20/19 20:52,"444 Wilson St, Boston, MA 02215" +215691,Wired Headphones,1,11.99,06/15/19 08:06,"599 10th St, Boston, MA 02215" +215692,27in 4K Gaming Monitor,1,389.99,06/26/19 07:34,"505 Jackson St, Seattle, WA 98101" +215693,Apple Airpods Headphones,1,150,06/14/19 20:56,"234 12th St, Seattle, WA 98101" +215694,iPhone,1,700,06/15/19 13:10,"197 Park St, Austin, TX 73301" +215695,Apple Airpods Headphones,1,150,06/26/19 00:15,"692 7th St, San Francisco, CA 94016" +215696,34in Ultrawide Monitor,1,379.99,06/08/19 20:36,"792 Pine St, San Francisco, CA 94016" +215697,Bose SoundSport Headphones,1,99.99,06/10/19 10:08,"90 Jefferson St, Seattle, WA 98101" +215698,USB-C Charging Cable,1,11.95,06/27/19 23:49,"599 Washington St, Los Angeles, CA 90001" +215699,Lightning Charging Cable,1,14.95,06/09/19 15:00,"357 Wilson St, Los Angeles, CA 90001" +215700,Lightning Charging Cable,1,14.95,06/18/19 06:00,"898 West St, Dallas, TX 75001" +215701,27in 4K Gaming Monitor,1,389.99,06/22/19 20:35,"29 Johnson St, Los Angeles, CA 90001" +215702,Wired Headphones,3,11.99,06/24/19 13:18,"231 Jackson St, New York City, NY 10001" +215703,AAA Batteries (4-pack),1,2.99,06/23/19 11:16,"557 8th St, Seattle, WA 98101" +215704,AAA Batteries (4-pack),1,2.99,06/13/19 14:12,"227 8th St, Los Angeles, CA 90001" +215705,Wired Headphones,1,11.99,06/09/19 23:41,"640 Wilson St, San Francisco, CA 94016" +215706,Google Phone,1,600,06/29/19 23:21,"805 Adams St, San Francisco, CA 94016" +215707,AAA Batteries (4-pack),1,2.99,06/08/19 12:53,"668 Dogwood St, Boston, MA 02215" +215708,Bose SoundSport Headphones,1,99.99,06/28/19 10:11,"414 Willow St, San Francisco, CA 94016" +215709,ThinkPad Laptop,1,999.99,06/18/19 15:03,"587 Lakeview St, Los Angeles, CA 90001" +215710,Google Phone,1,600,06/21/19 21:48,"544 Cherry St, Portland, ME 04101" +215711,AAA Batteries (4-pack),1,2.99,06/10/19 20:14,"197 Lakeview St, Atlanta, GA 30301" +215712,Wired Headphones,1,11.99,06/06/19 20:00,"716 Maple St, Seattle, WA 98101" +215713,27in FHD Monitor,1,149.99,06/29/19 13:07,"413 Spruce St, New York City, NY 10001" +215714,ThinkPad Laptop,1,999.99,06/18/19 18:25,"5 Washington St, Austin, TX 73301" +215715,USB-C Charging Cable,1,11.95,06/29/19 16:45,"483 Willow St, San Francisco, CA 94016" +215716,AAA Batteries (4-pack),1,2.99,06/13/19 14:30,"738 8th St, Austin, TX 73301" +215717,USB-C Charging Cable,1,11.95,06/14/19 13:49,"447 Spruce St, Los Angeles, CA 90001" +215718,27in 4K Gaming Monitor,1,389.99,06/09/19 19:21,"662 River St, San Francisco, CA 94016" +215719,Apple Airpods Headphones,1,150,06/09/19 09:30,"71 Sunset St, San Francisco, CA 94016" +215720,Lightning Charging Cable,1,14.95,06/30/19 09:15,"110 Adams St, San Francisco, CA 94016" +215721,iPhone,1,700,06/10/19 14:37,"740 Dogwood St, Los Angeles, CA 90001" +215722,Lightning Charging Cable,1,14.95,06/13/19 08:05,"848 1st St, Los Angeles, CA 90001" +215723,Bose SoundSport Headphones,1,99.99,06/21/19 23:49,"754 West St, Dallas, TX 75001" +215724,AA Batteries (4-pack),1,3.84,06/05/19 00:08,"535 5th St, San Francisco, CA 94016" +215725,27in 4K Gaming Monitor,1,389.99,06/12/19 08:55,"979 Madison St, Boston, MA 02215" +215726,Macbook Pro Laptop,1,1700,06/03/19 20:30,"813 13th St, Boston, MA 02215" +215727,Flatscreen TV,1,300,06/15/19 09:33,"386 Ridge St, Portland, OR 97035" +215728,AAA Batteries (4-pack),1,2.99,06/05/19 12:15,"15 Sunset St, San Francisco, CA 94016" +215729,Apple Airpods Headphones,1,150,06/18/19 16:49,"63 13th St, Dallas, TX 75001" +215730,Flatscreen TV,1,300,06/23/19 18:41,"24 Jefferson St, Boston, MA 02215" +215731,27in 4K Gaming Monitor,1,389.99,06/29/19 19:44,"755 Walnut St, Boston, MA 02215" +215732,AA Batteries (4-pack),1,3.84,06/09/19 12:25,"92 Willow St, Los Angeles, CA 90001" +215733,Lightning Charging Cable,1,14.95,06/04/19 12:55,"646 12th St, San Francisco, CA 94016" +215734,Flatscreen TV,1,300,06/04/19 18:21,"128 Pine St, New York City, NY 10001" +215735,27in FHD Monitor,1,149.99,06/19/19 09:04,"376 Jackson St, San Francisco, CA 94016" +215736,Wired Headphones,1,11.99,06/26/19 10:00,"942 11th St, San Francisco, CA 94016" +215737,34in Ultrawide Monitor,1,379.99,06/08/19 12:16,"604 Lake St, Atlanta, GA 30301" +215738,Wired Headphones,1,11.99,06/17/19 18:36,"729 Lakeview St, New York City, NY 10001" +215739,AA Batteries (4-pack),2,3.84,06/12/19 15:23,"472 Dogwood St, Boston, MA 02215" +215740,AA Batteries (4-pack),1,3.84,06/08/19 15:11,"562 Johnson St, Atlanta, GA 30301" +215741,Wired Headphones,1,11.99,06/30/19 15:49,"393 Jackson St, Atlanta, GA 30301" +215742,AA Batteries (4-pack),1,3.84,06/17/19 15:22,"562 Highland St, Atlanta, GA 30301" +215743,Lightning Charging Cable,1,14.95,06/17/19 06:31,"607 Spruce St, New York City, NY 10001" +215744,34in Ultrawide Monitor,1,379.99,06/06/19 00:33,"101 8th St, San Francisco, CA 94016" +215745,ThinkPad Laptop,1,999.99,06/23/19 14:29,"189 Ridge St, Portland, ME 04101" +215746,Lightning Charging Cable,1,14.95,06/05/19 01:15,"861 Hill St, Boston, MA 02215" +215747,Apple Airpods Headphones,1,150,06/27/19 17:33,"275 Meadow St, Los Angeles, CA 90001" +215748,AAA Batteries (4-pack),3,2.99,06/04/19 18:12,"789 Lakeview St, San Francisco, CA 94016" +215749,Wired Headphones,1,11.99,06/20/19 22:08,"167 Elm St, Portland, OR 97035" +215750,Wired Headphones,1,11.99,06/19/19 19:00,"18 Highland St, San Francisco, CA 94016" +215751,Lightning Charging Cable,1,14.95,06/12/19 23:03,"715 1st St, New York City, NY 10001" +215752,Bose SoundSport Headphones,1,99.99,06/28/19 12:54,"395 8th St, Austin, TX 73301" +215753,Lightning Charging Cable,1,14.95,06/14/19 22:23,"796 Wilson St, New York City, NY 10001" +215754,ThinkPad Laptop,1,999.99,06/25/19 13:47,"987 Adams St, Portland, OR 97035" +215755,AAA Batteries (4-pack),1,2.99,06/30/19 20:13,"468 Chestnut St, San Francisco, CA 94016" +215756,Lightning Charging Cable,1,14.95,06/27/19 22:14,"425 Meadow St, Los Angeles, CA 90001" +215757,Google Phone,1,600,06/11/19 19:20,"492 Spruce St, Atlanta, GA 30301" +215757,USB-C Charging Cable,1,11.95,06/11/19 19:20,"492 Spruce St, Atlanta, GA 30301" +215758,USB-C Charging Cable,1,11.95,06/25/19 13:05,"929 9th St, Portland, ME 04101" +215759,Google Phone,1,600,06/05/19 00:37,"477 Pine St, San Francisco, CA 94016" +215759,USB-C Charging Cable,1,11.95,06/05/19 00:37,"477 Pine St, San Francisco, CA 94016" +215760,AAA Batteries (4-pack),2,2.99,06/07/19 07:31,"742 Maple St, Atlanta, GA 30301" +215761,27in FHD Monitor,1,149.99,06/05/19 02:59,"911 1st St, Boston, MA 02215" +215762,Wired Headphones,2,11.99,06/07/19 06:32,"73 South St, San Francisco, CA 94016" +215763,LG Washing Machine,1,600.0,06/26/19 03:41,"390 Pine St, Los Angeles, CA 90001" +215764,ThinkPad Laptop,1,999.99,06/13/19 11:05,"204 Park St, Atlanta, GA 30301" +215765,Lightning Charging Cable,1,14.95,06/17/19 11:30,"949 Lake St, New York City, NY 10001" +215766,Apple Airpods Headphones,1,150,06/30/19 19:55,"119 Sunset St, Portland, OR 97035" +215767,34in Ultrawide Monitor,1,379.99,06/23/19 14:55,"212 4th St, San Francisco, CA 94016" +215768,Wired Headphones,1,11.99,06/16/19 13:45,"21 5th St, Boston, MA 02215" +215769,27in 4K Gaming Monitor,1,389.99,06/29/19 19:02,"415 Wilson St, New York City, NY 10001" +215770,Lightning Charging Cable,1,14.95,06/13/19 15:35,"621 12th St, Seattle, WA 98101" +215771,AAA Batteries (4-pack),1,2.99,06/14/19 02:03,"997 Church St, Atlanta, GA 30301" +215772,AA Batteries (4-pack),4,3.84,06/25/19 01:14,"854 Willow St, San Francisco, CA 94016" +215773,AAA Batteries (4-pack),2,2.99,06/26/19 00:40,"831 Johnson St, New York City, NY 10001" +215774,Apple Airpods Headphones,1,150,06/09/19 22:15,"473 Hickory St, San Francisco, CA 94016" +215775,AA Batteries (4-pack),1,3.84,06/06/19 21:14,"835 Center St, Seattle, WA 98101" +215776,AA Batteries (4-pack),1,3.84,06/22/19 17:16,"710 Forest St, San Francisco, CA 94016" +215777,USB-C Charging Cable,1,11.95,06/23/19 19:26,"822 Walnut St, Los Angeles, CA 90001" +215778,AAA Batteries (4-pack),2,2.99,06/16/19 20:51,"689 Lake St, New York City, NY 10001" +215779,34in Ultrawide Monitor,1,379.99,06/28/19 18:55,"882 7th St, Los Angeles, CA 90001" +215780,27in FHD Monitor,1,149.99,06/01/19 10:12,"969 Lincoln St, San Francisco, CA 94016" +215781,ThinkPad Laptop,1,999.99,06/16/19 14:30,"46 West St, Dallas, TX 75001" +215782,AA Batteries (4-pack),1,3.84,06/12/19 17:40,"394 Center St, New York City, NY 10001" +215783,Lightning Charging Cable,1,14.95,06/24/19 20:50,"959 Hickory St, Portland, ME 04101" +215784,Bose SoundSport Headphones,1,99.99,06/26/19 12:14,"806 14th St, Seattle, WA 98101" +215785,Lightning Charging Cable,1,14.95,06/04/19 17:18,"504 13th St, Los Angeles, CA 90001" +215786,AAA Batteries (4-pack),1,2.99,06/15/19 15:04,"467 Jackson St, San Francisco, CA 94016" +215787,Apple Airpods Headphones,1,150,06/25/19 21:12,"744 Ridge St, Atlanta, GA 30301" +215788,34in Ultrawide Monitor,1,379.99,06/08/19 02:11,"988 Madison St, New York City, NY 10001" +215789,AAA Batteries (4-pack),2,2.99,06/18/19 11:07,"228 Highland St, Los Angeles, CA 90001" +215790,AA Batteries (4-pack),1,3.84,06/30/19 21:48,"949 Madison St, Los Angeles, CA 90001" +215791,20in Monitor,1,109.99,06/13/19 20:12,"526 Cedar St, Boston, MA 02215" +215792,Lightning Charging Cable,1,14.95,06/17/19 08:38,"778 7th St, Seattle, WA 98101" +215793,Apple Airpods Headphones,1,150,06/16/19 08:03,"968 Sunset St, Dallas, TX 75001" +215794,Lightning Charging Cable,1,14.95,06/23/19 19:14,"397 Main St, San Francisco, CA 94016" +215795,AAA Batteries (4-pack),1,2.99,06/25/19 20:16,"152 Chestnut St, Los Angeles, CA 90001" +215796,USB-C Charging Cable,1,11.95,06/27/19 13:08,"563 Walnut St, Los Angeles, CA 90001" +215797,AA Batteries (4-pack),1,3.84,06/06/19 16:28,"138 Elm St, Boston, MA 02215" +215798,Apple Airpods Headphones,1,150,06/11/19 18:05,"770 Meadow St, Boston, MA 02215" +215799,ThinkPad Laptop,1,999.99,06/17/19 12:08,"558 Lincoln St, Los Angeles, CA 90001" +215800,27in 4K Gaming Monitor,1,389.99,06/02/19 14:46,"924 5th St, Seattle, WA 98101" +215801,AA Batteries (4-pack),2,3.84,06/23/19 11:24,"639 River St, New York City, NY 10001" +215802,Bose SoundSport Headphones,1,99.99,06/04/19 19:29,"671 Meadow St, Austin, TX 73301" +215803,34in Ultrawide Monitor,1,379.99,06/29/19 12:26,"200 Lakeview St, Seattle, WA 98101" +215804,20in Monitor,1,109.99,06/17/19 10:14,"48 Pine St, Austin, TX 73301" +215805,Google Phone,1,600,06/08/19 21:36,"251 Forest St, Portland, OR 97035" +215806,AAA Batteries (4-pack),2,2.99,06/18/19 08:43,"728 Jackson St, San Francisco, CA 94016" +215807,27in 4K Gaming Monitor,1,389.99,06/26/19 09:09,"762 Forest St, Seattle, WA 98101" +215808,Bose SoundSport Headphones,1,99.99,06/09/19 12:41,"850 Ridge St, San Francisco, CA 94016" +215809,34in Ultrawide Monitor,1,379.99,06/16/19 15:58,"494 Hill St, San Francisco, CA 94016" +215810,USB-C Charging Cable,1,11.95,06/02/19 17:06,"148 13th St, San Francisco, CA 94016" +215811,AA Batteries (4-pack),1,3.84,06/17/19 13:04,"990 Hickory St, New York City, NY 10001" +215812,Lightning Charging Cable,1,14.95,06/04/19 17:57,"619 Meadow St, Los Angeles, CA 90001" +215813,AAA Batteries (4-pack),2,2.99,06/30/19 23:05,"930 Cedar St, Seattle, WA 98101" +215814,ThinkPad Laptop,1,999.99,06/02/19 21:56,"360 Park St, Dallas, TX 75001" +215815,Apple Airpods Headphones,1,150,06/25/19 13:18,"981 Church St, Boston, MA 02215" +215816,AA Batteries (4-pack),1,3.84,06/11/19 23:01,"107 Wilson St, San Francisco, CA 94016" +215817,LG Washing Machine,1,600.0,06/20/19 21:03,"364 12th St, New York City, NY 10001" +215818,AAA Batteries (4-pack),3,2.99,06/24/19 07:14,"261 Madison St, Seattle, WA 98101" +215819,iPhone,1,700,06/20/19 19:02,"726 Willow St, Boston, MA 02215" +215820,AAA Batteries (4-pack),1,2.99,06/26/19 17:30,"182 Wilson St, San Francisco, CA 94016" +215821,Wired Headphones,1,11.99,06/02/19 21:02,"514 West St, Boston, MA 02215" +215822,Macbook Pro Laptop,1,1700,06/03/19 16:28,"778 Dogwood St, San Francisco, CA 94016" +215823,Bose SoundSport Headphones,1,99.99,06/14/19 07:07,"574 Jefferson St, San Francisco, CA 94016" +215824,AA Batteries (4-pack),1,3.84,06/30/19 21:29,"373 Lincoln St, Los Angeles, CA 90001" +215825,Lightning Charging Cable,1,14.95,06/14/19 07:58,"217 Hill St, San Francisco, CA 94016" +215826,Bose SoundSport Headphones,1,99.99,06/26/19 14:26,"863 Madison St, New York City, NY 10001" +215827,27in FHD Monitor,1,149.99,06/16/19 19:41,"430 Johnson St, New York City, NY 10001" +215828,27in FHD Monitor,1,149.99,06/20/19 14:28,"99 7th St, Los Angeles, CA 90001" +215829,Lightning Charging Cable,1,14.95,06/12/19 11:35,"666 13th St, Boston, MA 02215" +215830,Apple Airpods Headphones,1,150,06/26/19 13:49,"177 4th St, San Francisco, CA 94016" +215831,34in Ultrawide Monitor,1,379.99,06/04/19 01:44,"52 North St, San Francisco, CA 94016" +215832,Bose SoundSport Headphones,1,99.99,06/22/19 18:20,"605 River St, Los Angeles, CA 90001" +215833,Lightning Charging Cable,1,14.95,06/19/19 22:37,"491 Park St, Boston, MA 02215" +215834,Flatscreen TV,1,300,06/09/19 10:35,"973 Spruce St, San Francisco, CA 94016" +215835,USB-C Charging Cable,1,11.95,06/28/19 21:10,"61 Madison St, Seattle, WA 98101" +215836,Wired Headphones,1,11.99,06/20/19 21:07,"441 6th St, Los Angeles, CA 90001" +215837,Macbook Pro Laptop,1,1700,06/03/19 21:57,"92 Spruce St, Dallas, TX 75001" +215838,Wired Headphones,1,11.99,06/21/19 10:00,"25 Church St, San Francisco, CA 94016" +215839,AA Batteries (4-pack),1,3.84,06/26/19 17:59,"936 11th St, Boston, MA 02215" +215840,AAA Batteries (4-pack),2,2.99,06/23/19 12:15,"305 Hill St, Los Angeles, CA 90001" +215841,Apple Airpods Headphones,1,150,06/27/19 13:35,"352 Elm St, San Francisco, CA 94016" +215842,Bose SoundSport Headphones,1,99.99,06/16/19 18:12,"100 Adams St, Portland, OR 97035" +215843,Lightning Charging Cable,1,14.95,06/10/19 10:20,"518 1st St, New York City, NY 10001" +215844,Apple Airpods Headphones,1,150,06/27/19 04:39,"126 Maple St, Los Angeles, CA 90001" +215845,AAA Batteries (4-pack),3,2.99,06/16/19 12:01,"950 Jefferson St, New York City, NY 10001" +215846,Lightning Charging Cable,1,14.95,06/25/19 19:38,"105 Elm St, San Francisco, CA 94016" +215847,Bose SoundSport Headphones,1,99.99,06/30/19 10:34,"901 6th St, New York City, NY 10001" +215848,AA Batteries (4-pack),2,3.84,06/22/19 23:45,"185 North St, Dallas, TX 75001" +215849,34in Ultrawide Monitor,1,379.99,06/14/19 16:43,"371 Park St, Boston, MA 02215" +215850,AAA Batteries (4-pack),1,2.99,06/26/19 20:59,"342 Washington St, Seattle, WA 98101" +215851,AAA Batteries (4-pack),1,2.99,06/16/19 12:16,"464 13th St, San Francisco, CA 94016" +215852,AA Batteries (4-pack),2,3.84,06/12/19 12:23,"581 Madison St, Boston, MA 02215" +215853,27in 4K Gaming Monitor,1,389.99,06/23/19 18:54,"562 8th St, Los Angeles, CA 90001" +215854,USB-C Charging Cable,1,11.95,06/15/19 19:18,"804 Park St, Atlanta, GA 30301" +215854,27in 4K Gaming Monitor,1,389.99,06/15/19 19:18,"804 Park St, Atlanta, GA 30301" +215855,Apple Airpods Headphones,1,150,06/07/19 18:18,"231 1st St, San Francisco, CA 94016" +215856,Wired Headphones,1,11.99,06/27/19 22:35,"598 11th St, New York City, NY 10001" +215857,Lightning Charging Cable,1,14.95,06/26/19 18:17,"253 North St, Portland, ME 04101" +215858,AAA Batteries (4-pack),3,2.99,06/23/19 21:12,"855 11th St, Boston, MA 02215" +215859,AA Batteries (4-pack),3,3.84,06/04/19 11:41,"302 Park St, Los Angeles, CA 90001" +215860,Flatscreen TV,1,300,06/07/19 12:45,"188 Adams St, Atlanta, GA 30301" +215861,Bose SoundSport Headphones,1,99.99,06/28/19 15:06,"392 Spruce St, Portland, OR 97035" +215862,27in FHD Monitor,1,149.99,06/13/19 13:19,"563 Washington St, San Francisco, CA 94016" +215863,20in Monitor,1,109.99,06/02/19 16:04,"939 Willow St, New York City, NY 10001" +215864,USB-C Charging Cable,1,11.95,06/21/19 19:49,"809 North St, New York City, NY 10001" +215865,Macbook Pro Laptop,1,1700,06/26/19 23:45,"775 11th St, San Francisco, CA 94016" +215866,AA Batteries (4-pack),2,3.84,06/07/19 17:35,"398 River St, Boston, MA 02215" +215867,Wired Headphones,1,11.99,06/15/19 21:18,"774 Park St, Portland, OR 97035" +215868,Bose SoundSport Headphones,1,99.99,06/25/19 18:43,"630 1st St, San Francisco, CA 94016" +215869,Apple Airpods Headphones,1,150,06/20/19 17:05,"85 Dogwood St, San Francisco, CA 94016" +215870,Lightning Charging Cable,1,14.95,06/20/19 19:13,"439 West St, Seattle, WA 98101" +215871,Apple Airpods Headphones,1,150,06/22/19 07:35,"485 Johnson St, Boston, MA 02215" +215872,AAA Batteries (4-pack),1,2.99,06/08/19 00:06,"985 11th St, New York City, NY 10001" +215873,27in FHD Monitor,1,149.99,06/29/19 13:23,"362 Main St, Austin, TX 73301" +215874,USB-C Charging Cable,1,11.95,06/02/19 17:07,"548 Jackson St, Portland, OR 97035" +215875,Apple Airpods Headphones,1,150,06/07/19 10:47,"802 Lakeview St, New York City, NY 10001" +215876,USB-C Charging Cable,1,11.95,06/03/19 18:17,"683 Adams St, San Francisco, CA 94016" +215877,Lightning Charging Cable,1,14.95,06/29/19 16:17,"590 Park St, Portland, OR 97035" +215878,iPhone,1,700,06/08/19 14:38,"487 1st St, Portland, OR 97035" +215878,Lightning Charging Cable,2,14.95,06/08/19 14:38,"487 1st St, Portland, OR 97035" +215879,Vareebadd Phone,1,400,06/02/19 20:01,"598 Willow St, Los Angeles, CA 90001" +215880,20in Monitor,1,109.99,06/17/19 16:30,"863 4th St, Austin, TX 73301" +215881,AA Batteries (4-pack),1,3.84,06/20/19 22:36,"576 River St, San Francisco, CA 94016" +215882,USB-C Charging Cable,1,11.95,06/08/19 04:47,"396 Washington St, San Francisco, CA 94016" +215883,Bose SoundSport Headphones,1,99.99,06/11/19 10:05,"667 Meadow St, Seattle, WA 98101" +215884,LG Dryer,1,600.0,06/05/19 19:43,"535 Willow St, Dallas, TX 75001" +215885,Vareebadd Phone,1,400,06/23/19 09:14,"144 Hill St, Seattle, WA 98101" +215886,Vareebadd Phone,1,400,06/09/19 02:13,"101 Cedar St, San Francisco, CA 94016" +215887,Wired Headphones,1,11.99,06/25/19 10:42,"922 Wilson St, San Francisco, CA 94016" +215888,27in FHD Monitor,1,149.99,06/08/19 22:51,"449 7th St, Dallas, TX 75001" +215889,Apple Airpods Headphones,1,150,06/18/19 18:14,"188 5th St, San Francisco, CA 94016" +215890,20in Monitor,1,109.99,06/21/19 09:20,"688 Ridge St, Boston, MA 02215" +215891,AA Batteries (4-pack),1,3.84,06/28/19 18:09,"721 Sunset St, Portland, OR 97035" +215892,AA Batteries (4-pack),2,3.84,06/09/19 15:06,"633 8th St, San Francisco, CA 94016" +215893,Wired Headphones,1,11.99,06/06/19 13:23,"561 4th St, Boston, MA 02215" +215894,Bose SoundSport Headphones,1,99.99,06/15/19 12:45,"453 6th St, San Francisco, CA 94016" +215895,Apple Airpods Headphones,1,150,06/14/19 06:22,"74 Jackson St, San Francisco, CA 94016" +215896,Macbook Pro Laptop,1,1700,06/09/19 17:07,"638 Willow St, Atlanta, GA 30301" +215897,AAA Batteries (4-pack),1,2.99,06/13/19 08:51,"853 10th St, San Francisco, CA 94016" +215898,27in FHD Monitor,1,149.99,06/23/19 19:58,"752 Forest St, New York City, NY 10001" +215899,AAA Batteries (4-pack),1,2.99,06/27/19 18:13,"777 Park St, San Francisco, CA 94016" +215900,AA Batteries (4-pack),1,3.84,06/10/19 09:41,"817 Hickory St, San Francisco, CA 94016" +215901,Wired Headphones,1,11.99,06/19/19 22:02,"821 Church St, San Francisco, CA 94016" +215902,Apple Airpods Headphones,1,150,06/23/19 19:10,"967 14th St, New York City, NY 10001" +215903,Google Phone,1,600,06/06/19 09:12,"886 Washington St, Seattle, WA 98101" +215904,Wired Headphones,1,11.99,06/05/19 23:25,"241 Chestnut St, Austin, TX 73301" +215905,Wired Headphones,1,11.99,06/21/19 08:35,"959 West St, San Francisco, CA 94016" +215906,34in Ultrawide Monitor,1,379.99,06/12/19 00:23,"475 Pine St, San Francisco, CA 94016" +215907,27in FHD Monitor,1,149.99,06/26/19 21:48,"109 14th St, Boston, MA 02215" +215908,Google Phone,1,600,06/14/19 18:44,"694 8th St, San Francisco, CA 94016" +215909,Lightning Charging Cable,1,14.95,06/29/19 17:29,"525 Willow St, Boston, MA 02215" +215910,27in 4K Gaming Monitor,1,389.99,06/18/19 11:13,"793 Walnut St, San Francisco, CA 94016" +215911,USB-C Charging Cable,1,11.95,06/05/19 17:19,"38 Jackson St, San Francisco, CA 94016" +215912,Lightning Charging Cable,1,14.95,06/29/19 11:34,"940 2nd St, New York City, NY 10001" +215913,USB-C Charging Cable,1,11.95,06/12/19 13:37,"855 6th St, Austin, TX 73301" +215914,Lightning Charging Cable,2,14.95,06/29/19 23:30,"952 2nd St, San Francisco, CA 94016" +215915,Apple Airpods Headphones,1,150,06/28/19 10:56,"571 Park St, Portland, OR 97035" +215916,Bose SoundSport Headphones,1,99.99,06/21/19 20:04,"913 Lakeview St, Los Angeles, CA 90001" +215917,Wired Headphones,2,11.99,06/01/19 12:50,"384 Madison St, New York City, NY 10001" +215918,Wired Headphones,1,11.99,06/12/19 22:37,"898 Adams St, Portland, ME 04101" +215918,Wired Headphones,1,11.99,06/12/19 22:37,"898 Adams St, Portland, ME 04101" +215919,Wired Headphones,1,11.99,06/09/19 10:56,"276 Walnut St, New York City, NY 10001" +215920,20in Monitor,1,109.99,06/24/19 17:04,"754 Hickory St, New York City, NY 10001" +215921,34in Ultrawide Monitor,1,379.99,06/07/19 09:16,"888 10th St, Boston, MA 02215" +215922,Lightning Charging Cable,1,14.95,06/30/19 10:50,"679 Johnson St, Boston, MA 02215" +215923,USB-C Charging Cable,1,11.95,06/06/19 12:41,"569 Sunset St, Dallas, TX 75001" +215924,USB-C Charging Cable,1,11.95,06/19/19 16:15,"447 Dogwood St, Los Angeles, CA 90001" +215925,Lightning Charging Cable,1,14.95,06/07/19 23:45,"118 11th St, Los Angeles, CA 90001" +215926,AA Batteries (4-pack),2,3.84,06/11/19 19:56,"869 1st St, San Francisco, CA 94016" +215927,Apple Airpods Headphones,1,150,06/12/19 20:41,"986 River St, Seattle, WA 98101" +215928,Bose SoundSport Headphones,1,99.99,06/13/19 09:37,"671 Dogwood St, Los Angeles, CA 90001" +215929,AAA Batteries (4-pack),1,2.99,06/11/19 12:27,"564 West St, Atlanta, GA 30301" +215930,27in 4K Gaming Monitor,1,389.99,06/30/19 17:28,"744 Sunset St, New York City, NY 10001" +215931,USB-C Charging Cable,1,11.95,06/15/19 00:10,"546 10th St, Dallas, TX 75001" +215932,USB-C Charging Cable,1,11.95,06/05/19 11:50,"924 Pine St, Seattle, WA 98101" +215933,Lightning Charging Cable,1,14.95,06/16/19 17:39,"127 Elm St, Boston, MA 02215" +215934,iPhone,1,700,06/22/19 12:04,"692 12th St, Los Angeles, CA 90001" +215935,Google Phone,1,600,06/25/19 11:15,"963 10th St, Los Angeles, CA 90001" +215936,Wired Headphones,1,11.99,06/06/19 14:09,"474 Jefferson St, Boston, MA 02215" +215937,Wired Headphones,1,11.99,06/30/19 14:44,"304 Center St, Los Angeles, CA 90001" +215938,AAA Batteries (4-pack),1,2.99,06/27/19 16:12,"822 Sunset St, Austin, TX 73301" +215938,27in FHD Monitor,1,149.99,06/27/19 16:12,"822 Sunset St, Austin, TX 73301" +215939,USB-C Charging Cable,1,11.95,06/13/19 06:49,"782 Forest St, Dallas, TX 75001" +215940,USB-C Charging Cable,1,11.95,06/19/19 22:09,"335 Park St, Los Angeles, CA 90001" +215941,ThinkPad Laptop,1,999.99,06/21/19 17:49,"901 13th St, Los Angeles, CA 90001" +215942,Apple Airpods Headphones,1,150,06/18/19 16:45,"720 Lake St, San Francisco, CA 94016" +215943,Vareebadd Phone,1,400,06/08/19 12:16,"766 Pine St, Austin, TX 73301" +215944,AA Batteries (4-pack),1,3.84,06/20/19 20:59,"892 Cherry St, Los Angeles, CA 90001" +215945,Bose SoundSport Headphones,1,99.99,06/18/19 13:50,"919 Highland St, Dallas, TX 75001" +215946,AAA Batteries (4-pack),1,2.99,06/26/19 16:55,"938 Chestnut St, San Francisco, CA 94016" +215947,AAA Batteries (4-pack),2,2.99,06/25/19 13:03,"353 8th St, Dallas, TX 75001" +215948,27in 4K Gaming Monitor,1,389.99,06/29/19 05:35,"980 Main St, New York City, NY 10001" +215949,Bose SoundSport Headphones,1,99.99,06/13/19 11:34,"513 12th St, Boston, MA 02215" +215950,Lightning Charging Cable,1,14.95,06/06/19 21:06,"372 7th St, Seattle, WA 98101" +215951,USB-C Charging Cable,1,11.95,06/06/19 14:06,"686 Pine St, San Francisco, CA 94016" +215952,iPhone,1,700,06/21/19 01:12,"496 Walnut St, Austin, TX 73301" +215953,USB-C Charging Cable,1,11.95,06/04/19 13:29,"621 Hill St, Atlanta, GA 30301" +215954,AA Batteries (4-pack),1,3.84,06/13/19 00:16,"762 4th St, Los Angeles, CA 90001" +215955,ThinkPad Laptop,1,999.99,06/21/19 08:06,"484 Center St, Boston, MA 02215" +215956,Wired Headphones,1,11.99,06/27/19 10:22,"640 Church St, Atlanta, GA 30301" +215957,27in 4K Gaming Monitor,1,389.99,06/22/19 13:17,"712 North St, Portland, OR 97035" +215958,27in 4K Gaming Monitor,1,389.99,06/12/19 13:32,"550 Highland St, Los Angeles, CA 90001" +215959,AA Batteries (4-pack),1,3.84,06/07/19 21:27,"596 North St, San Francisco, CA 94016" +215960,Bose SoundSport Headphones,1,99.99,06/15/19 22:23,"760 Washington St, Seattle, WA 98101" +215961,27in FHD Monitor,1,149.99,06/12/19 17:19,"699 Forest St, Austin, TX 73301" +215962,USB-C Charging Cable,1,11.95,06/08/19 13:57,"797 Highland St, Los Angeles, CA 90001" +215963,USB-C Charging Cable,1,11.95,06/18/19 19:45,"918 Elm St, San Francisco, CA 94016" +215964,USB-C Charging Cable,1,11.95,06/01/19 13:20,"985 North St, San Francisco, CA 94016" +215965,AA Batteries (4-pack),1,3.84,06/13/19 14:07,"542 West St, Seattle, WA 98101" +215966,Vareebadd Phone,1,400,06/19/19 09:53,"569 1st St, Los Angeles, CA 90001" +215967,Wired Headphones,1,11.99,06/13/19 10:48,"239 1st St, Los Angeles, CA 90001" +215968,Wired Headphones,2,11.99,06/25/19 22:33,"666 Madison St, Boston, MA 02215" +215969,Wired Headphones,1,11.99,06/26/19 14:58,"915 Lincoln St, New York City, NY 10001" +215970,Lightning Charging Cable,1,14.95,06/17/19 16:25,"184 Lake St, Los Angeles, CA 90001" +215971,USB-C Charging Cable,1,11.95,06/17/19 11:16,"5 Meadow St, Los Angeles, CA 90001" +215972,iPhone,1,700,06/23/19 18:49,"548 Madison St, San Francisco, CA 94016" +215973,iPhone,1,700,06/13/19 14:07,"718 1st St, New York City, NY 10001" +215974,AA Batteries (4-pack),1,3.84,06/02/19 22:15,"276 Jefferson St, San Francisco, CA 94016" +215975,AA Batteries (4-pack),1,3.84,06/22/19 10:16,"923 Center St, Boston, MA 02215" +215976,USB-C Charging Cable,1,11.95,06/23/19 17:26,"60 Church St, San Francisco, CA 94016" +215977,USB-C Charging Cable,1,11.95,06/07/19 17:32,"74 Hickory St, Atlanta, GA 30301" +215978,ThinkPad Laptop,1,999.99,06/29/19 13:40,"598 Wilson St, Boston, MA 02215" +215979,Flatscreen TV,1,300,06/10/19 09:34,"379 9th St, Atlanta, GA 30301" +215980,Flatscreen TV,1,300,06/17/19 22:55,"785 8th St, Los Angeles, CA 90001" +215981,Lightning Charging Cable,1,14.95,06/23/19 22:05,"343 5th St, Atlanta, GA 30301" +215982,AA Batteries (4-pack),2,3.84,06/04/19 21:00,"380 Maple St, Los Angeles, CA 90001" +215983,AAA Batteries (4-pack),1,2.99,06/01/19 18:27,"593 13th St, San Francisco, CA 94016" +215984,Bose SoundSport Headphones,1,99.99,06/04/19 15:16,"921 Wilson St, Atlanta, GA 30301" +215985,AA Batteries (4-pack),1,3.84,06/08/19 15:25,"434 Adams St, Boston, MA 02215" +215986,USB-C Charging Cable,1,11.95,06/08/19 18:18,"435 West St, New York City, NY 10001" +215987,Bose SoundSport Headphones,1,99.99,06/06/19 17:00,"79 Church St, Dallas, TX 75001" +215988,AAA Batteries (4-pack),2,2.99,06/04/19 20:42,"975 11th St, Portland, OR 97035" +215989,Lightning Charging Cable,1,14.95,06/25/19 10:20,"653 Walnut St, New York City, NY 10001" +215990,Wired Headphones,1,11.99,06/11/19 21:49,"558 11th St, Boston, MA 02215" +215991,27in FHD Monitor,1,149.99,06/26/19 18:31,"791 Jackson St, Dallas, TX 75001" +215992,Bose SoundSport Headphones,1,99.99,06/05/19 13:46,"87 Elm St, Portland, OR 97035" +215993,20in Monitor,1,109.99,06/09/19 13:31,"141 Lake St, New York City, NY 10001" +215994,iPhone,1,700,06/12/19 16:42,"270 Pine St, Austin, TX 73301" +215994,Apple Airpods Headphones,1,150,06/12/19 16:42,"270 Pine St, Austin, TX 73301" +215995,34in Ultrawide Monitor,1,379.99,06/29/19 11:43,"120 Walnut St, Los Angeles, CA 90001" +215996,Apple Airpods Headphones,1,150,06/03/19 09:40,"688 Center St, Boston, MA 02215" +215997,AA Batteries (4-pack),1,3.84,06/13/19 13:49,"109 Maple St, Atlanta, GA 30301" +215998,Lightning Charging Cable,1,14.95,06/25/19 23:08,"64 Jefferson St, New York City, NY 10001" +215999,Bose SoundSport Headphones,1,99.99,06/12/19 19:45,"861 Lake St, Atlanta, GA 30301" +216000,LG Washing Machine,1,600.0,06/22/19 11:56,"719 Hill St, Dallas, TX 75001" +216001,Wired Headphones,1,11.99,06/25/19 23:47,"121 4th St, New York City, NY 10001" +216002,Lightning Charging Cable,1,14.95,06/23/19 18:40,"38 West St, San Francisco, CA 94016" +216003,27in FHD Monitor,1,149.99,06/29/19 14:31,"876 Johnson St, San Francisco, CA 94016" +216004,Lightning Charging Cable,1,14.95,06/30/19 21:53,"934 River St, Seattle, WA 98101" +216005,USB-C Charging Cable,2,11.95,06/17/19 16:54,"533 Hill St, Dallas, TX 75001" +216006,20in Monitor,1,109.99,06/10/19 16:13,"637 Pine St, Dallas, TX 75001" +216007,Wired Headphones,1,11.99,06/11/19 21:12,"584 2nd St, Atlanta, GA 30301" +216008,Lightning Charging Cable,1,14.95,06/07/19 17:44,"44 Dogwood St, Los Angeles, CA 90001" +216009,Apple Airpods Headphones,1,150,06/29/19 18:23,"573 12th St, Portland, OR 97035" +216010,AA Batteries (4-pack),2,3.84,06/25/19 08:27,"622 4th St, Boston, MA 02215" +216011,Bose SoundSport Headphones,1,99.99,06/10/19 21:58,"451 Lake St, Austin, TX 73301" +216012,Apple Airpods Headphones,1,150,06/03/19 11:41,"895 Walnut St, New York City, NY 10001" +216013,AA Batteries (4-pack),1,3.84,06/11/19 08:57,"448 Main St, Los Angeles, CA 90001" +216014,AAA Batteries (4-pack),1,2.99,06/13/19 23:31,"262 1st St, Boston, MA 02215" +216015,USB-C Charging Cable,1,11.95,06/25/19 22:24,"161 Lincoln St, Los Angeles, CA 90001" +216016,Wired Headphones,1,11.99,06/06/19 13:16,"186 Sunset St, New York City, NY 10001" +216017,USB-C Charging Cable,1,11.95,06/03/19 12:04,"300 Washington St, Dallas, TX 75001" +216018,USB-C Charging Cable,2,11.95,06/28/19 21:09,"686 Sunset St, San Francisco, CA 94016" +216019,USB-C Charging Cable,1,11.95,06/15/19 17:03,"711 13th St, Seattle, WA 98101" +216020,Lightning Charging Cable,1,14.95,06/18/19 20:32,"544 Hill St, San Francisco, CA 94016" +216021,Flatscreen TV,1,300,06/29/19 14:08,"612 Park St, New York City, NY 10001" +216022,ThinkPad Laptop,1,999.99,06/14/19 17:33,"412 Pine St, San Francisco, CA 94016" +216023,Flatscreen TV,1,300,06/15/19 16:01,"807 Church St, Los Angeles, CA 90001" +216024,27in FHD Monitor,1,149.99,06/26/19 23:01,"62 12th St, San Francisco, CA 94016" +216025,AA Batteries (4-pack),1,3.84,06/12/19 14:44,"107 Wilson St, San Francisco, CA 94016" +216026,Lightning Charging Cable,1,14.95,06/03/19 20:15,"350 Center St, Seattle, WA 98101" +216027,AA Batteries (4-pack),1,3.84,06/26/19 15:03,"749 Maple St, Boston, MA 02215" +216028,Lightning Charging Cable,1,14.95,06/27/19 21:40,"725 Ridge St, Austin, TX 73301" +216029,Lightning Charging Cable,1,14.95,06/01/19 09:47,"194 Lake St, New York City, NY 10001" +216030,Lightning Charging Cable,1,14.95,06/25/19 16:05,"904 Elm St, Austin, TX 73301" +216031,27in 4K Gaming Monitor,1,389.99,06/09/19 21:08,"7 4th St, Austin, TX 73301" +216032,Bose SoundSport Headphones,1,99.99,06/27/19 13:54,"199 River St, Boston, MA 02215" +216033,AA Batteries (4-pack),1,3.84,06/29/19 11:53,"720 Maple St, New York City, NY 10001" +216034,27in FHD Monitor,1,149.99,06/05/19 00:03,"435 Lakeview St, San Francisco, CA 94016" +216035,USB-C Charging Cable,1,11.95,06/06/19 19:23,"674 11th St, Dallas, TX 75001" +216036,Wired Headphones,1,11.99,06/18/19 08:27,"285 Center St, Austin, TX 73301" +216037,ThinkPad Laptop,1,999.99,06/17/19 19:55,"614 North St, Austin, TX 73301" +216038,Wired Headphones,1,11.99,06/01/19 16:04,"170 9th St, New York City, NY 10001" +216039,Lightning Charging Cable,1,14.95,06/04/19 15:03,"248 11th St, Boston, MA 02215" +216040,Lightning Charging Cable,1,14.95,06/07/19 02:00,"331 Madison St, San Francisco, CA 94016" +216041,USB-C Charging Cable,2,11.95,06/12/19 13:59,"567 West St, Boston, MA 02215" +216042,Apple Airpods Headphones,1,150,06/04/19 10:41,"628 Pine St, Seattle, WA 98101" +216043,AA Batteries (4-pack),3,3.84,06/26/19 14:01,"754 Madison St, Atlanta, GA 30301" +216044,Bose SoundSport Headphones,1,99.99,06/10/19 09:16,"417 Hickory St, New York City, NY 10001" +216045,Wired Headphones,2,11.99,06/12/19 00:28,"560 South St, Austin, TX 73301" +216046,Apple Airpods Headphones,1,150,06/10/19 09:37,"305 Ridge St, San Francisco, CA 94016" +216047,Wired Headphones,1,11.99,06/13/19 17:11,"588 5th St, Portland, OR 97035" +216048,Lightning Charging Cable,1,14.95,06/27/19 21:27,"493 Elm St, Los Angeles, CA 90001" +216049,Lightning Charging Cable,1,14.95,06/28/19 16:16,"79 9th St, San Francisco, CA 94016" +216050,Wired Headphones,1,11.99,06/12/19 11:56,"324 Pine St, Los Angeles, CA 90001" +216051,27in FHD Monitor,1,149.99,06/03/19 12:58,"446 Madison St, Atlanta, GA 30301" +216052,Vareebadd Phone,1,400,06/02/19 18:07,"563 Pine St, Los Angeles, CA 90001" +216053,AA Batteries (4-pack),1,3.84,06/26/19 19:38,"430 Wilson St, Los Angeles, CA 90001" +216054,AA Batteries (4-pack),1,3.84,06/22/19 17:10,"42 1st St, San Francisco, CA 94016" +216055,iPhone,1,700,06/13/19 11:31,"556 Jackson St, San Francisco, CA 94016" +216056,Wired Headphones,1,11.99,06/11/19 18:28,"606 Elm St, Atlanta, GA 30301" +216057,Bose SoundSport Headphones,1,99.99,06/05/19 13:54,"716 12th St, Atlanta, GA 30301" +216058,Wired Headphones,1,11.99,06/07/19 19:24,"441 Walnut St, New York City, NY 10001" +216059,AAA Batteries (4-pack),2,2.99,06/17/19 08:42,"977 Pine St, Los Angeles, CA 90001" +216060,USB-C Charging Cable,2,11.95,06/05/19 17:26,"41 Dogwood St, Boston, MA 02215" +216061,34in Ultrawide Monitor,1,379.99,06/08/19 21:12,"820 Maple St, San Francisco, CA 94016" +216062,iPhone,1,700,06/06/19 14:08,"393 Church St, Boston, MA 02215" +216063,Lightning Charging Cable,1,14.95,06/29/19 13:48,"85 Hickory St, Portland, OR 97035" +216063,27in 4K Gaming Monitor,1,389.99,06/29/19 13:48,"85 Hickory St, Portland, OR 97035" +216064,Apple Airpods Headphones,1,150,06/28/19 01:44,"632 Main St, Austin, TX 73301" +216065,AAA Batteries (4-pack),1,2.99,06/27/19 18:28,"279 West St, San Francisco, CA 94016" +216066,USB-C Charging Cable,1,11.95,06/22/19 17:35,"606 Adams St, Dallas, TX 75001" +216067,iPhone,1,700,06/14/19 12:21,"133 Lincoln St, Austin, TX 73301" +216068,iPhone,1,700,06/07/19 22:31,"435 14th St, Portland, OR 97035" +216068,Apple Airpods Headphones,1,150,06/07/19 22:31,"435 14th St, Portland, OR 97035" +216069,Wired Headphones,1,11.99,06/30/19 06:56,"280 Center St, Boston, MA 02215" +216070,USB-C Charging Cable,2,11.95,06/03/19 01:25,"198 11th St, Portland, OR 97035" +216071,USB-C Charging Cable,1,11.95,06/30/19 16:59,"407 Center St, Seattle, WA 98101" +216072,AA Batteries (4-pack),1,3.84,06/14/19 17:59,"174 9th St, Austin, TX 73301" +216073,AA Batteries (4-pack),1,3.84,06/12/19 09:52,"347 5th St, San Francisco, CA 94016" +216074,Apple Airpods Headphones,1,150,06/19/19 21:16,"161 Forest St, San Francisco, CA 94016" +216075,34in Ultrawide Monitor,1,379.99,06/11/19 19:11,"768 Cherry St, San Francisco, CA 94016" +216076,USB-C Charging Cable,1,11.95,06/24/19 20:39,"463 2nd St, Los Angeles, CA 90001" +216077,USB-C Charging Cable,1,11.95,06/10/19 20:17,"417 Jefferson St, Los Angeles, CA 90001" +216078,34in Ultrawide Monitor,1,379.99,06/23/19 19:02,"74 River St, San Francisco, CA 94016" +216079,27in 4K Gaming Monitor,1,389.99,06/24/19 19:11,"983 4th St, Dallas, TX 75001" +216080,Wired Headphones,1,11.99,06/06/19 19:41,"459 Main St, Los Angeles, CA 90001" +216081,Wired Headphones,1,11.99,06/06/19 09:16,"683 Johnson St, New York City, NY 10001" +216082,USB-C Charging Cable,2,11.95,06/29/19 10:19,"334 North St, Los Angeles, CA 90001" +216083,AA Batteries (4-pack),1,3.84,06/15/19 20:31,"458 Pine St, Atlanta, GA 30301" +216084,USB-C Charging Cable,1,11.95,06/11/19 11:07,"478 Spruce St, San Francisco, CA 94016" +216085,Google Phone,1,600,06/24/19 20:50,"110 Johnson St, San Francisco, CA 94016" +216085,USB-C Charging Cable,1,11.95,06/24/19 20:50,"110 Johnson St, San Francisco, CA 94016" +216086,Wired Headphones,1,11.99,06/10/19 07:50,"328 Forest St, New York City, NY 10001" +216087,Apple Airpods Headphones,1,150,06/22/19 09:52,"918 Church St, Los Angeles, CA 90001" +216088,Wired Headphones,1,11.99,06/28/19 14:08,"245 Hill St, Dallas, TX 75001" +216089,Flatscreen TV,1,300,06/04/19 06:59,"622 Park St, San Francisco, CA 94016" +216090,Wired Headphones,1,11.99,06/27/19 19:45,"712 11th St, Atlanta, GA 30301" +216090,AAA Batteries (4-pack),2,2.99,06/27/19 19:45,"712 11th St, Atlanta, GA 30301" +216091,AAA Batteries (4-pack),1,2.99,06/22/19 17:11,"246 Forest St, Seattle, WA 98101" +216092,Lightning Charging Cable,1,14.95,06/04/19 17:57,"838 Lake St, San Francisco, CA 94016" +216093,Wired Headphones,1,11.99,06/20/19 22:15,"65 Jefferson St, Atlanta, GA 30301" +216094,USB-C Charging Cable,1,11.95,06/20/19 14:11,"105 South St, Dallas, TX 75001" +,,,,, +216095,Lightning Charging Cable,1,14.95,06/26/19 22:25,"213 14th St, San Francisco, CA 94016" +216096,Lightning Charging Cable,1,14.95,06/16/19 13:21,"125 13th St, San Francisco, CA 94016" +216097,Apple Airpods Headphones,1,150,06/24/19 10:53,"683 Main St, Dallas, TX 75001" +216098,AA Batteries (4-pack),2,3.84,06/29/19 12:34,"117 Forest St, Los Angeles, CA 90001" +216099,iPhone,1,700,06/06/19 20:26,"118 9th St, Austin, TX 73301" +216100,Apple Airpods Headphones,1,150,06/09/19 12:46,"531 2nd St, San Francisco, CA 94016" +216101,34in Ultrawide Monitor,1,379.99,06/22/19 19:46,"154 Lakeview St, Portland, OR 97035" +216102,AA Batteries (4-pack),1,3.84,06/23/19 18:13,"596 Willow St, San Francisco, CA 94016" +216103,AAA Batteries (4-pack),1,2.99,06/02/19 12:22,"969 11th St, Boston, MA 02215" +216104,27in FHD Monitor,1,149.99,06/15/19 16:44,"44 Highland St, Dallas, TX 75001" +216105,Lightning Charging Cable,1,14.95,06/08/19 18:27,"757 West St, San Francisco, CA 94016" +216106,AAA Batteries (4-pack),1,2.99,06/19/19 20:49,"258 Dogwood St, New York City, NY 10001" +216107,USB-C Charging Cable,1,11.95,06/26/19 09:37,"557 8th St, Los Angeles, CA 90001" +216108,AAA Batteries (4-pack),3,2.99,06/28/19 13:36,"988 Washington St, New York City, NY 10001" +216109,27in FHD Monitor,1,149.99,06/03/19 13:35,"784 Hill St, San Francisco, CA 94016" +216110,Flatscreen TV,1,300,06/23/19 12:38,"825 Lakeview St, Boston, MA 02215" +216111,Bose SoundSport Headphones,1,99.99,06/07/19 12:28,"775 Church St, San Francisco, CA 94016" +216112,USB-C Charging Cable,1,11.95,06/06/19 16:08,"217 Willow St, Los Angeles, CA 90001" +216113,AA Batteries (4-pack),1,3.84,06/23/19 23:53,"108 Hill St, San Francisco, CA 94016" +216113,USB-C Charging Cable,2,11.95,06/23/19 23:53,"108 Hill St, San Francisco, CA 94016" +216114,AAA Batteries (4-pack),1,2.99,06/06/19 16:38,"533 Washington St, New York City, NY 10001" +216115,Bose SoundSport Headphones,1,99.99,06/07/19 09:17,"358 2nd St, Seattle, WA 98101" +,,,,, +216116,AAA Batteries (4-pack),1,2.99,06/02/19 10:37,"798 Walnut St, New York City, NY 10001" +216117,AA Batteries (4-pack),3,3.84,06/06/19 09:23,"857 Maple St, Boston, MA 02215" +216118,USB-C Charging Cable,2,11.95,06/27/19 09:04,"773 Park St, Portland, OR 97035" +216119,ThinkPad Laptop,1,999.99,06/08/19 23:13,"339 Ridge St, Atlanta, GA 30301" +216120,ThinkPad Laptop,1,999.99,06/04/19 22:49,"784 Jefferson St, San Francisco, CA 94016" +216121,Bose SoundSport Headphones,1,99.99,06/24/19 22:37,"2 Spruce St, Los Angeles, CA 90001" +216122,iPhone,1,700,06/26/19 08:15,"745 Chestnut St, New York City, NY 10001" +216123,Lightning Charging Cable,1,14.95,06/05/19 22:15,"125 Meadow St, San Francisco, CA 94016" +216124,USB-C Charging Cable,1,11.95,06/23/19 13:09,"293 Dogwood St, San Francisco, CA 94016" +216125,Macbook Pro Laptop,1,1700,06/20/19 07:59,"37 Maple St, San Francisco, CA 94016" +216126,Lightning Charging Cable,1,14.95,06/03/19 01:02,"237 Park St, Los Angeles, CA 90001" +216127,iPhone,1,700,06/05/19 16:01,"340 11th St, New York City, NY 10001" +216128,27in FHD Monitor,1,149.99,06/12/19 06:32,"850 North St, Los Angeles, CA 90001" +216129,27in 4K Gaming Monitor,1,389.99,06/09/19 14:02,"797 Highland St, Los Angeles, CA 90001" +216130,USB-C Charging Cable,1,11.95,06/09/19 11:19,"354 Elm St, Boston, MA 02215" +216131,Macbook Pro Laptop,1,1700,06/24/19 09:31,"3 14th St, San Francisco, CA 94016" +216132,Flatscreen TV,1,300,06/22/19 18:36,"609 11th St, Seattle, WA 98101" +216133,Apple Airpods Headphones,1,150,06/18/19 15:40,"291 Maple St, Austin, TX 73301" +216134,USB-C Charging Cable,1,11.95,06/21/19 00:48,"527 North St, Los Angeles, CA 90001" +216135,AA Batteries (4-pack),1,3.84,06/30/19 15:30,"294 Lincoln St, Portland, OR 97035" +216136,Lightning Charging Cable,1,14.95,06/23/19 10:30,"850 Park St, San Francisco, CA 94016" +216137,AA Batteries (4-pack),1,3.84,06/02/19 15:22,"457 Johnson St, Boston, MA 02215" +216138,AAA Batteries (4-pack),1,2.99,06/20/19 11:41,"488 Johnson St, San Francisco, CA 94016" +216139,AA Batteries (4-pack),2,3.84,06/30/19 20:03,"940 Maple St, Austin, TX 73301" +216140,20in Monitor,1,109.99,06/14/19 16:58,"234 Jackson St, Portland, ME 04101" +216141,AAA Batteries (4-pack),1,2.99,06/06/19 23:07,"831 Lincoln St, Dallas, TX 75001" +216142,34in Ultrawide Monitor,1,379.99,06/04/19 17:30,"546 Maple St, Los Angeles, CA 90001" +216143,Flatscreen TV,1,300,06/04/19 09:00,"870 Lincoln St, New York City, NY 10001" +216144,Lightning Charging Cable,1,14.95,06/13/19 21:04,"542 Highland St, San Francisco, CA 94016" +216145,AA Batteries (4-pack),1,3.84,06/04/19 20:44,"967 South St, Los Angeles, CA 90001" +216146,AA Batteries (4-pack),2,3.84,06/15/19 07:46,"600 8th St, San Francisco, CA 94016" +216147,USB-C Charging Cable,1,11.95,06/10/19 10:23,"825 West St, Atlanta, GA 30301" +216148,AAA Batteries (4-pack),1,2.99,06/19/19 17:48,"315 Willow St, New York City, NY 10001" +216149,Macbook Pro Laptop,1,1700,06/13/19 09:11,"736 Highland St, Los Angeles, CA 90001" +216150,Macbook Pro Laptop,1,1700,06/22/19 23:09,"987 8th St, Boston, MA 02215" +216151,27in 4K Gaming Monitor,1,389.99,06/21/19 17:14,"901 4th St, Los Angeles, CA 90001" +216152,Apple Airpods Headphones,1,150,06/11/19 22:19,"581 8th St, New York City, NY 10001" +216153,USB-C Charging Cable,1,11.95,06/24/19 11:14,"73 Washington St, Atlanta, GA 30301" +216154,27in FHD Monitor,1,149.99,06/04/19 16:23,"211 6th St, San Francisco, CA 94016" +216155,Bose SoundSport Headphones,1,99.99,06/23/19 20:47,"858 10th St, Seattle, WA 98101" +216156,Bose SoundSport Headphones,1,99.99,06/04/19 11:27,"118 Pine St, Los Angeles, CA 90001" +216157,27in FHD Monitor,1,149.99,06/14/19 19:15,"273 Ridge St, Austin, TX 73301" +216158,USB-C Charging Cable,1,11.95,06/02/19 09:55,"226 Jackson St, Seattle, WA 98101" +216159,Bose SoundSport Headphones,1,99.99,06/20/19 18:17,"392 7th St, San Francisco, CA 94016" +216160,USB-C Charging Cable,1,11.95,06/26/19 23:24,"19 River St, Dallas, TX 75001" +216161,AA Batteries (4-pack),1,3.84,06/11/19 13:26,"869 Johnson St, New York City, NY 10001" +216162,USB-C Charging Cable,1,11.95,06/28/19 20:04,"421 Lakeview St, New York City, NY 10001" +216163,27in FHD Monitor,1,149.99,06/06/19 06:02,"128 Lincoln St, Dallas, TX 75001" +216164,27in 4K Gaming Monitor,1,389.99,06/14/19 13:59,"230 11th St, Los Angeles, CA 90001" +216165,AA Batteries (4-pack),1,3.84,06/02/19 00:28,"83 Sunset St, Atlanta, GA 30301" +216166,Apple Airpods Headphones,1,150,06/12/19 18:58,"676 Sunset St, Austin, TX 73301" +216167,AA Batteries (4-pack),1,3.84,06/26/19 07:33,"691 Washington St, Dallas, TX 75001" +216168,Apple Airpods Headphones,1,150,06/07/19 17:15,"21 8th St, Los Angeles, CA 90001" +216169,AA Batteries (4-pack),1,3.84,06/17/19 12:47,"527 Center St, San Francisco, CA 94016" +216170,iPhone,1,700,06/27/19 14:56,"688 Sunset St, San Francisco, CA 94016" +216171,AA Batteries (4-pack),1,3.84,06/11/19 13:29,"388 14th St, New York City, NY 10001" +216172,20in Monitor,1,109.99,06/11/19 22:00,"992 Church St, New York City, NY 10001" +216173,34in Ultrawide Monitor,1,379.99,06/05/19 17:32,"330 Maple St, Dallas, TX 75001" +216174,Apple Airpods Headphones,1,150,06/09/19 12:52,"264 Meadow St, San Francisco, CA 94016" +216175,iPhone,1,700,06/26/19 15:24,"589 West St, San Francisco, CA 94016" +216176,Lightning Charging Cable,1,14.95,06/06/19 20:44,"908 Dogwood St, Boston, MA 02215" +,,,,, +216177,ThinkPad Laptop,1,999.99,06/26/19 20:41,"764 1st St, Seattle, WA 98101" +216178,Bose SoundSport Headphones,1,99.99,06/04/19 20:40,"575 Jefferson St, Los Angeles, CA 90001" +216179,ThinkPad Laptop,1,999.99,06/26/19 12:56,"638 Madison St, Los Angeles, CA 90001" +216180,Apple Airpods Headphones,1,150,06/04/19 13:18,"222 Forest St, San Francisco, CA 94016" +216181,AA Batteries (4-pack),3,3.84,06/22/19 19:58,"898 Cherry St, San Francisco, CA 94016" +216182,Lightning Charging Cable,1,14.95,06/16/19 20:21,"845 Sunset St, Boston, MA 02215" +216183,AAA Batteries (4-pack),1,2.99,06/20/19 09:58,"457 2nd St, Seattle, WA 98101" +216184,iPhone,1,700,07/01/19 01:30,"372 Lincoln St, Portland, ME 04101" +216185,Lightning Charging Cable,1,14.95,06/28/19 17:45,"213 Washington St, New York City, NY 10001" +216186,Bose SoundSport Headphones,1,99.99,06/04/19 09:01,"428 Spruce St, Boston, MA 02215" +216187,Google Phone,1,600,06/22/19 15:11,"41 Jefferson St, San Francisco, CA 94016" +216188,AAA Batteries (4-pack),2,2.99,06/16/19 12:27,"624 7th St, San Francisco, CA 94016" +216189,Macbook Pro Laptop,1,1700,06/05/19 16:37,"661 10th St, Austin, TX 73301" +216190,USB-C Charging Cable,1,11.95,06/19/19 09:47,"228 Chestnut St, New York City, NY 10001" +216191,AAA Batteries (4-pack),1,2.99,06/14/19 09:42,"437 Elm St, Atlanta, GA 30301" +216192,iPhone,1,700,06/05/19 07:57,"307 Hickory St, Austin, TX 73301" +216193,AAA Batteries (4-pack),2,2.99,06/21/19 22:41,"150 Jackson St, Dallas, TX 75001" +216194,Apple Airpods Headphones,1,150,06/05/19 17:59,"408 South St, Los Angeles, CA 90001" +216195,iPhone,1,700,06/07/19 08:47,"775 Dogwood St, New York City, NY 10001" +216196,AAA Batteries (4-pack),2,2.99,06/22/19 10:27,"911 Park St, Los Angeles, CA 90001" +216197,Bose SoundSport Headphones,1,99.99,06/12/19 13:33,"115 Dogwood St, New York City, NY 10001" +216198,AAA Batteries (4-pack),1,2.99,06/19/19 11:12,"18 Hickory St, San Francisco, CA 94016" +216199,USB-C Charging Cable,1,11.95,06/14/19 23:21,"648 Washington St, San Francisco, CA 94016" +216200,Lightning Charging Cable,1,14.95,06/28/19 13:40,"659 Cherry St, Los Angeles, CA 90001" +216201,34in Ultrawide Monitor,1,379.99,06/19/19 19:27,"202 Cedar St, San Francisco, CA 94016" +216202,LG Washing Machine,1,600.0,06/14/19 18:19,"889 Pine St, San Francisco, CA 94016" +216203,Apple Airpods Headphones,1,150,06/26/19 18:34,"743 Dogwood St, Boston, MA 02215" +216204,Lightning Charging Cable,1,14.95,06/03/19 06:10,"733 12th St, Dallas, TX 75001" +216205,Lightning Charging Cable,1,14.95,06/02/19 12:12,"76 8th St, New York City, NY 10001" +216206,Apple Airpods Headphones,1,150,06/05/19 19:49,"3 8th St, New York City, NY 10001" +216207,iPhone,1,700,06/09/19 12:00,"38 Chestnut St, Atlanta, GA 30301" +216208,Apple Airpods Headphones,1,150,06/06/19 08:14,"11 Jefferson St, Portland, OR 97035" +216209,AAA Batteries (4-pack),2,2.99,06/21/19 10:50,"524 11th St, New York City, NY 10001" +216210,AAA Batteries (4-pack),1,2.99,06/25/19 14:09,"421 Lake St, Seattle, WA 98101" +216211,AA Batteries (4-pack),1,3.84,06/13/19 18:57,"443 Meadow St, Portland, OR 97035" +216212,Apple Airpods Headphones,1,150,06/18/19 11:55,"158 Lake St, New York City, NY 10001" +216213,ThinkPad Laptop,1,999.99,06/14/19 20:20,"376 7th St, New York City, NY 10001" +216214,34in Ultrawide Monitor,1,379.99,06/26/19 23:55,"79 Jackson St, New York City, NY 10001" +216215,27in 4K Gaming Monitor,1,389.99,06/08/19 21:48,"456 14th St, New York City, NY 10001" +216216,Lightning Charging Cable,3,14.95,06/10/19 22:00,"896 Walnut St, New York City, NY 10001" +216217,AAA Batteries (4-pack),4,2.99,06/01/19 17:19,"35 Willow St, San Francisco, CA 94016" +216218,USB-C Charging Cable,1,11.95,06/23/19 23:10,"977 10th St, Seattle, WA 98101" +216219,AAA Batteries (4-pack),1,2.99,06/07/19 08:14,"262 Church St, San Francisco, CA 94016" +216220,Macbook Pro Laptop,1,1700,06/16/19 09:57,"936 Lakeview St, San Francisco, CA 94016" +216221,Lightning Charging Cable,1,14.95,06/23/19 13:25,"297 2nd St, Boston, MA 02215" +216222,Apple Airpods Headphones,1,150,06/07/19 21:36,"841 West St, Seattle, WA 98101" +216223,Apple Airpods Headphones,1,150,06/23/19 20:19,"720 Hickory St, Atlanta, GA 30301" +216224,27in 4K Gaming Monitor,1,389.99,06/23/19 08:01,"662 Hickory St, San Francisco, CA 94016" +216225,USB-C Charging Cable,1,11.95,06/06/19 13:36,"820 8th St, San Francisco, CA 94016" +216226,Lightning Charging Cable,1,14.95,06/10/19 12:07,"428 Walnut St, San Francisco, CA 94016" +216227,Google Phone,1,600,06/28/19 04:04,"980 7th St, Atlanta, GA 30301" +216228,27in FHD Monitor,1,149.99,06/27/19 19:56,"237 1st St, Portland, OR 97035" +216229,AA Batteries (4-pack),3,3.84,06/06/19 14:30,"925 West St, Los Angeles, CA 90001" +216230,Lightning Charging Cable,1,14.95,06/22/19 11:17,"865 4th St, Atlanta, GA 30301" +216231,Lightning Charging Cable,1,14.95,06/27/19 19:48,"678 Sunset St, Portland, ME 04101" +216232,Bose SoundSport Headphones,1,99.99,06/24/19 18:32,"912 Adams St, Los Angeles, CA 90001" +216233,Lightning Charging Cable,1,14.95,06/08/19 17:19,"415 North St, San Francisco, CA 94016" +216234,Apple Airpods Headphones,1,150,06/07/19 12:21,"658 North St, Portland, OR 97035" +216235,ThinkPad Laptop,1,999.99,06/16/19 13:41,"96 Hill St, Portland, OR 97035" +216236,Google Phone,1,600,06/11/19 16:14,"190 2nd St, Los Angeles, CA 90001" +216237,Bose SoundSport Headphones,1,99.99,06/15/19 02:50,"15 Madison St, San Francisco, CA 94016" +216238,USB-C Charging Cable,1,11.95,06/11/19 14:32,"155 8th St, San Francisco, CA 94016" +216239,Flatscreen TV,1,300,06/10/19 19:17,"725 Highland St, Atlanta, GA 30301" +216240,Lightning Charging Cable,1,14.95,06/18/19 08:58,"911 Jackson St, New York City, NY 10001" +216241,AA Batteries (4-pack),1,3.84,06/18/19 11:55,"157 2nd St, Boston, MA 02215" +216242,AA Batteries (4-pack),1,3.84,06/19/19 04:26,"501 Hickory St, Portland, OR 97035" +216243,USB-C Charging Cable,1,11.95,06/03/19 20:38,"958 Main St, New York City, NY 10001" +216244,AAA Batteries (4-pack),1,2.99,06/29/19 09:59,"936 Ridge St, Los Angeles, CA 90001" +216245,Bose SoundSport Headphones,1,99.99,06/04/19 00:42,"220 Lincoln St, San Francisco, CA 94016" +216246,iPhone,1,700,06/13/19 11:58,"943 13th St, Los Angeles, CA 90001" +216246,Apple Airpods Headphones,1,150,06/13/19 11:58,"943 13th St, Los Angeles, CA 90001" +216247,AAA Batteries (4-pack),2,2.99,06/30/19 17:46,"153 Adams St, Los Angeles, CA 90001" +216248,Apple Airpods Headphones,1,150,06/22/19 06:26,"215 Chestnut St, Seattle, WA 98101" +216249,Bose SoundSport Headphones,1,99.99,06/22/19 14:18,"625 North St, San Francisco, CA 94016" +216250,Bose SoundSport Headphones,1,99.99,06/30/19 08:41,"889 4th St, Austin, TX 73301" +216251,27in 4K Gaming Monitor,1,389.99,06/17/19 18:12,"165 Center St, Austin, TX 73301" +216252,34in Ultrawide Monitor,1,379.99,06/23/19 19:05,"39 8th St, San Francisco, CA 94016" +216253,Bose SoundSport Headphones,1,99.99,06/14/19 22:30,"112 Lincoln St, San Francisco, CA 94016" +216254,Wired Headphones,1,11.99,06/17/19 20:23,"634 Madison St, Portland, OR 97035" +216255,Wired Headphones,1,11.99,06/02/19 20:30,"101 Washington St, Los Angeles, CA 90001" +216256,Lightning Charging Cable,1,14.95,06/17/19 10:56,"902 12th St, New York City, NY 10001" +216257,USB-C Charging Cable,1,11.95,06/11/19 19:54,"81 Hickory St, New York City, NY 10001" +216258,USB-C Charging Cable,1,11.95,06/05/19 23:21,"603 2nd St, Los Angeles, CA 90001" +216259,Lightning Charging Cable,1,14.95,06/04/19 11:53,"342 4th St, San Francisco, CA 94016" +216260,Flatscreen TV,1,300,06/02/19 15:51,"360 Meadow St, Los Angeles, CA 90001" +216261,USB-C Charging Cable,1,11.95,06/18/19 13:19,"747 North St, Atlanta, GA 30301" +216262,Google Phone,1,600,06/27/19 11:10,"930 13th St, Austin, TX 73301" +216263,AA Batteries (4-pack),3,3.84,06/06/19 18:02,"610 Maple St, Portland, OR 97035" +216264,Wired Headphones,1,11.99,06/09/19 10:23,"659 8th St, Los Angeles, CA 90001" +216265,AA Batteries (4-pack),2,3.84,06/02/19 01:13,"790 13th St, San Francisco, CA 94016" +216266,USB-C Charging Cable,1,11.95,06/16/19 16:06,"262 Meadow St, San Francisco, CA 94016" +216267,27in FHD Monitor,1,149.99,06/12/19 20:06,"338 Maple St, Los Angeles, CA 90001" +216268,AAA Batteries (4-pack),1,2.99,06/07/19 05:30,"116 Hickory St, Boston, MA 02215" +216269,Lightning Charging Cable,2,14.95,06/01/19 13:05,"238 Park St, New York City, NY 10001" +216270,iPhone,1,700,06/17/19 12:47,"421 Highland St, Los Angeles, CA 90001" +216271,USB-C Charging Cable,2,11.95,06/27/19 12:57,"870 10th St, Boston, MA 02215" +216272,Flatscreen TV,1,300,06/14/19 22:40,"273 Highland St, Boston, MA 02215" +216273,Apple Airpods Headphones,1,150,06/19/19 21:19,"481 Maple St, Austin, TX 73301" +216274,AA Batteries (4-pack),1,3.84,06/25/19 19:14,"330 Hickory St, San Francisco, CA 94016" +216275,Macbook Pro Laptop,1,1700,06/28/19 03:29,"838 West St, Seattle, WA 98101" +216276,AAA Batteries (4-pack),2,2.99,06/20/19 12:26,"245 11th St, Portland, OR 97035" +216277,AAA Batteries (4-pack),2,2.99,06/21/19 10:49,"599 Cherry St, Atlanta, GA 30301" +216278,AAA Batteries (4-pack),2,2.99,06/01/19 21:46,"328 13th St, San Francisco, CA 94016" +216279,Lightning Charging Cable,1,14.95,06/11/19 18:53,"434 South St, San Francisco, CA 94016" +216279,AA Batteries (4-pack),2,3.84,06/11/19 18:53,"434 South St, San Francisco, CA 94016" +216280,Wired Headphones,1,11.99,06/23/19 17:31,"341 Sunset St, New York City, NY 10001" +216281,Flatscreen TV,1,300,06/24/19 19:53,"959 Lincoln St, Boston, MA 02215" +216282,Macbook Pro Laptop,1,1700,06/27/19 21:33,"268 Walnut St, New York City, NY 10001" +216283,34in Ultrawide Monitor,1,379.99,06/15/19 22:01,"155 Chestnut St, Portland, OR 97035" +216284,ThinkPad Laptop,1,999.99,06/22/19 15:12,"426 River St, New York City, NY 10001" +216285,Bose SoundSport Headphones,1,99.99,06/30/19 08:05,"622 West St, New York City, NY 10001" +216286,USB-C Charging Cable,1,11.95,06/22/19 08:57,"138 Hickory St, Los Angeles, CA 90001" +216287,Bose SoundSport Headphones,1,99.99,06/22/19 16:24,"22 Cedar St, Atlanta, GA 30301" +216288,AA Batteries (4-pack),1,3.84,06/19/19 09:29,"77 Dogwood St, San Francisco, CA 94016" +216289,AAA Batteries (4-pack),3,2.99,06/25/19 11:37,"606 14th St, Atlanta, GA 30301" +216290,AA Batteries (4-pack),1,3.84,06/29/19 14:21,"130 River St, Atlanta, GA 30301" +216291,27in FHD Monitor,1,149.99,06/28/19 16:11,"207 Lakeview St, Los Angeles, CA 90001" +216292,USB-C Charging Cable,1,11.95,06/26/19 18:22,"639 Elm St, New York City, NY 10001" +216293,27in FHD Monitor,1,149.99,06/03/19 14:10,"924 Highland St, New York City, NY 10001" +216294,Flatscreen TV,1,300,06/02/19 16:48,"22 12th St, San Francisco, CA 94016" +216295,USB-C Charging Cable,1,11.95,06/23/19 08:35,"922 West St, Seattle, WA 98101" +216296,Bose SoundSport Headphones,1,99.99,06/11/19 21:58,"494 Chestnut St, Seattle, WA 98101" +216297,Apple Airpods Headphones,1,150,06/20/19 21:56,"403 Maple St, Boston, MA 02215" +216298,34in Ultrawide Monitor,1,379.99,06/09/19 11:09,"455 Church St, Los Angeles, CA 90001" +216299,Wired Headphones,1,11.99,06/23/19 14:06,"506 Park St, New York City, NY 10001" +216300,ThinkPad Laptop,1,999.99,06/20/19 15:04,"777 Hickory St, San Francisco, CA 94016" +216301,ThinkPad Laptop,1,999.99,06/12/19 08:03,"734 1st St, Dallas, TX 75001" +216302,AAA Batteries (4-pack),1,2.99,06/30/19 08:47,"27 Wilson St, Atlanta, GA 30301" +216303,USB-C Charging Cable,1,11.95,06/25/19 11:43,"811 Adams St, San Francisco, CA 94016" +216304,Lightning Charging Cable,1,14.95,06/14/19 23:10,"518 13th St, Los Angeles, CA 90001" +216305,Lightning Charging Cable,1,14.95,06/03/19 07:21,"205 Jackson St, Boston, MA 02215" +216306,Lightning Charging Cable,1,14.95,06/06/19 22:34,"20 Meadow St, New York City, NY 10001" +216307,Flatscreen TV,1,300,06/02/19 18:26,"836 Adams St, Atlanta, GA 30301" +216308,AA Batteries (4-pack),2,3.84,06/13/19 13:26,"975 River St, San Francisco, CA 94016" +216309,Apple Airpods Headphones,1,150,06/30/19 14:29,"107 Spruce St, San Francisco, CA 94016" +216310,Macbook Pro Laptop,1,1700,06/13/19 19:44,"342 8th St, San Francisco, CA 94016" +216311,USB-C Charging Cable,1,11.95,06/08/19 07:36,"542 Elm St, Boston, MA 02215" +216312,Google Phone,1,600,06/09/19 12:35,"889 Lake St, Dallas, TX 75001" +216312,Wired Headphones,1,11.99,06/09/19 12:35,"889 Lake St, Dallas, TX 75001" +216313,AAA Batteries (4-pack),2,2.99,06/27/19 10:08,"288 Adams St, Atlanta, GA 30301" +216314,Google Phone,1,600,06/26/19 20:14,"382 Madison St, Boston, MA 02215" +216315,Apple Airpods Headphones,1,150,06/12/19 12:48,"48 Spruce St, Los Angeles, CA 90001" +216316,Lightning Charging Cable,1,14.95,06/28/19 11:43,"518 Park St, San Francisco, CA 94016" +216317,Flatscreen TV,1,300,06/02/19 20:00,"265 Highland St, San Francisco, CA 94016" +216318,Lightning Charging Cable,1,14.95,06/01/19 15:07,"864 Lakeview St, San Francisco, CA 94016" +216319,AAA Batteries (4-pack),1,2.99,06/12/19 19:40,"209 Park St, Los Angeles, CA 90001" +216320,Google Phone,1,600,06/06/19 11:07,"88 Jackson St, Dallas, TX 75001" +216321,Wired Headphones,1,11.99,06/13/19 15:18,"662 Hill St, Atlanta, GA 30301" +216322,Lightning Charging Cable,1,14.95,06/03/19 14:31,"688 Walnut St, San Francisco, CA 94016" +216323,iPhone,1,700,06/22/19 20:38,"717 9th St, San Francisco, CA 94016" +216324,AAA Batteries (4-pack),1,2.99,06/05/19 13:34,"916 4th St, San Francisco, CA 94016" +216325,AAA Batteries (4-pack),1,2.99,06/25/19 19:34,"322 Center St, Seattle, WA 98101" +216326,27in FHD Monitor,1,149.99,06/13/19 01:59,"762 Hickory St, San Francisco, CA 94016" +216326,Wired Headphones,2,11.99,06/13/19 01:59,"762 Hickory St, San Francisco, CA 94016" +216327,Wired Headphones,1,11.99,06/26/19 14:25,"379 Pine St, Boston, MA 02215" +216328,34in Ultrawide Monitor,1,379.99,06/21/19 17:33,"646 Lakeview St, New York City, NY 10001" +216329,Macbook Pro Laptop,1,1700,06/15/19 15:40,"274 5th St, San Francisco, CA 94016" +216330,AAA Batteries (4-pack),1,2.99,06/13/19 18:12,"472 6th St, Austin, TX 73301" +216331,Google Phone,1,600,06/19/19 11:56,"108 Pine St, New York City, NY 10001" +216331,USB-C Charging Cable,1,11.95,06/19/19 11:56,"108 Pine St, New York City, NY 10001" +216332,Wired Headphones,1,11.99,06/14/19 11:38,"549 Hickory St, New York City, NY 10001" +216333,Apple Airpods Headphones,1,150,06/06/19 14:39,"918 Ridge St, Portland, OR 97035" +216334,USB-C Charging Cable,1,11.95,06/22/19 16:44,"267 7th St, San Francisco, CA 94016" +216335,USB-C Charging Cable,2,11.95,06/21/19 22:14,"932 Washington St, Seattle, WA 98101" +216336,Google Phone,1,600,06/23/19 21:07,"989 Meadow St, San Francisco, CA 94016" +216337,27in FHD Monitor,1,149.99,06/04/19 15:14,"179 Church St, Los Angeles, CA 90001" +216338,Lightning Charging Cable,1,14.95,06/03/19 09:15,"331 West St, Boston, MA 02215" +216339,Apple Airpods Headphones,1,150,06/08/19 16:31,"698 Spruce St, San Francisco, CA 94016" +216340,USB-C Charging Cable,1,11.95,06/05/19 16:24,"188 Cherry St, San Francisco, CA 94016" +216341,20in Monitor,1,109.99,06/12/19 18:05,"611 Ridge St, Portland, OR 97035" +216342,27in FHD Monitor,1,149.99,06/09/19 06:57,"342 Spruce St, Los Angeles, CA 90001" +216343,Apple Airpods Headphones,1,150,06/29/19 13:45,"234 Washington St, New York City, NY 10001" +216344,USB-C Charging Cable,1,11.95,06/03/19 03:59,"124 11th St, Atlanta, GA 30301" +216345,27in FHD Monitor,1,149.99,06/07/19 16:37,"608 Madison St, New York City, NY 10001" +216346,Wired Headphones,1,11.99,06/24/19 09:49,"472 South St, Los Angeles, CA 90001" +216347,Lightning Charging Cable,1,14.95,06/27/19 12:05,"453 10th St, Portland, OR 97035" +216348,ThinkPad Laptop,1,999.99,06/10/19 09:02,"992 Dogwood St, Los Angeles, CA 90001" +216349,AAA Batteries (4-pack),1,2.99,06/06/19 18:32,"224 Highland St, San Francisco, CA 94016" +216350,AAA Batteries (4-pack),1,2.99,06/26/19 10:17,"348 North St, Seattle, WA 98101" +216351,Bose SoundSport Headphones,1,99.99,06/20/19 14:30,"232 4th St, San Francisco, CA 94016" +216352,Lightning Charging Cable,1,14.95,06/14/19 00:22,"797 14th St, Seattle, WA 98101" +216353,Lightning Charging Cable,1,14.95,06/08/19 08:30,"132 Cherry St, Seattle, WA 98101" +216354,iPhone,1,700,06/02/19 12:32,"979 North St, San Francisco, CA 94016" +216355,Wired Headphones,1,11.99,06/29/19 15:22,"835 Wilson St, Boston, MA 02215" +216356,Lightning Charging Cable,1,14.95,06/19/19 09:40,"823 Pine St, Seattle, WA 98101" +216357,AA Batteries (4-pack),2,3.84,06/15/19 12:00,"994 Main St, Austin, TX 73301" +216358,AAA Batteries (4-pack),1,2.99,06/25/19 21:20,"500 Johnson St, San Francisco, CA 94016" +216359,Bose SoundSport Headphones,1,99.99,06/10/19 10:24,"649 Main St, Los Angeles, CA 90001" +216360,AA Batteries (4-pack),1,3.84,06/25/19 07:06,"132 West St, Los Angeles, CA 90001" +216361,ThinkPad Laptop,1,999.99,06/30/19 15:17,"629 10th St, Los Angeles, CA 90001" +216362,Google Phone,1,600,06/02/19 14:19,"807 11th St, Boston, MA 02215" +216363,AAA Batteries (4-pack),1,2.99,06/16/19 11:48,"462 7th St, New York City, NY 10001" +216364,Macbook Pro Laptop,1,1700,06/04/19 14:20,"48 11th St, Los Angeles, CA 90001" +216365,AA Batteries (4-pack),2,3.84,06/12/19 13:14,"710 Center St, Los Angeles, CA 90001" +216366,Apple Airpods Headphones,1,150,06/01/19 18:09,"676 2nd St, Portland, OR 97035" +216367,27in FHD Monitor,1,149.99,06/01/19 15:24,"277 Hill St, Dallas, TX 75001" +216368,iPhone,1,700,06/11/19 22:24,"322 Lincoln St, Austin, TX 73301" +216369,Google Phone,1,600,06/09/19 11:46,"618 Jefferson St, Atlanta, GA 30301" +216369,USB-C Charging Cable,1,11.95,06/09/19 11:46,"618 Jefferson St, Atlanta, GA 30301" +216370,AA Batteries (4-pack),2,3.84,06/27/19 09:17,"927 Adams St, Los Angeles, CA 90001" +216371,34in Ultrawide Monitor,1,379.99,06/21/19 10:09,"144 River St, Boston, MA 02215" +216372,LG Dryer,1,600.0,06/08/19 00:10,"74 Forest St, San Francisco, CA 94016" +216373,AAA Batteries (4-pack),1,2.99,06/20/19 21:30,"953 Johnson St, Boston, MA 02215" +216374,20in Monitor,1,109.99,06/20/19 11:59,"942 Pine St, Boston, MA 02215" +216375,Apple Airpods Headphones,1,150,06/02/19 18:35,"913 9th St, San Francisco, CA 94016" +216376,27in FHD Monitor,1,149.99,06/12/19 23:33,"683 Chestnut St, Los Angeles, CA 90001" +216377,Wired Headphones,1,11.99,06/07/19 18:23,"289 Hickory St, San Francisco, CA 94016" +216378,USB-C Charging Cable,2,11.95,06/27/19 12:22,"773 Lakeview St, Seattle, WA 98101" +216379,AA Batteries (4-pack),2,3.84,06/19/19 08:16,"428 5th St, Boston, MA 02215" +216380,34in Ultrawide Monitor,1,379.99,06/25/19 23:53,"383 Spruce St, Seattle, WA 98101" +216381,Apple Airpods Headphones,1,150,06/13/19 07:19,"744 Johnson St, Los Angeles, CA 90001" +216382,USB-C Charging Cable,1,11.95,06/09/19 22:43,"498 Ridge St, Los Angeles, CA 90001" +216383,AAA Batteries (4-pack),6,2.99,06/03/19 20:43,"877 Adams St, Portland, OR 97035" +216384,USB-C Charging Cable,1,11.95,06/30/19 14:22,"443 Lincoln St, New York City, NY 10001" +216385,Vareebadd Phone,1,400,06/09/19 14:16,"977 Forest St, San Francisco, CA 94016" +216386,Wired Headphones,1,11.99,06/30/19 13:25,"495 Forest St, San Francisco, CA 94016" +216387,Wired Headphones,1,11.99,06/13/19 21:40,"91 Washington St, San Francisco, CA 94016" +216388,Lightning Charging Cable,2,14.95,06/11/19 16:07,"621 Washington St, San Francisco, CA 94016" +216389,USB-C Charging Cable,2,11.95,06/21/19 11:17,"241 13th St, San Francisco, CA 94016" +216390,iPhone,1,700,06/30/19 15:57,"682 Forest St, New York City, NY 10001" +216390,Lightning Charging Cable,1,14.95,06/30/19 15:57,"682 Forest St, New York City, NY 10001" +216391,AA Batteries (4-pack),1,3.84,06/20/19 17:30,"422 North St, Atlanta, GA 30301" +216392,Wired Headphones,1,11.99,06/23/19 18:16,"246 2nd St, San Francisco, CA 94016" +216393,Apple Airpods Headphones,1,150,06/12/19 21:00,"649 Chestnut St, San Francisco, CA 94016" +216394,Apple Airpods Headphones,1,150,06/18/19 10:46,"205 5th St, Los Angeles, CA 90001" +216395,Wired Headphones,2,11.99,06/09/19 00:01,"588 Walnut St, San Francisco, CA 94016" +216396,Wired Headphones,1,11.99,06/27/19 09:13,"411 12th St, Portland, OR 97035" +216397,ThinkPad Laptop,1,999.99,06/10/19 17:11,"225 Church St, Austin, TX 73301" +216398,AA Batteries (4-pack),1,3.84,06/16/19 23:00,"783 Hickory St, Los Angeles, CA 90001" +216399,Wired Headphones,1,11.99,06/20/19 17:08,"519 4th St, New York City, NY 10001" +216399,Wired Headphones,1,11.99,06/20/19 17:08,"519 4th St, New York City, NY 10001" +216400,AA Batteries (4-pack),1,3.84,06/22/19 16:18,"101 Spruce St, Austin, TX 73301" +216401,Lightning Charging Cable,1,14.95,06/17/19 14:39,"464 Main St, San Francisco, CA 94016" +216402,LG Washing Machine,1,600.0,06/28/19 18:45,"942 Johnson St, Atlanta, GA 30301" +216403,iPhone,1,700,06/24/19 20:27,"238 Dogwood St, San Francisco, CA 94016" +216404,AA Batteries (4-pack),3,3.84,06/30/19 04:23,"681 Wilson St, Atlanta, GA 30301" +216404,Apple Airpods Headphones,1,150,06/30/19 04:23,"681 Wilson St, Atlanta, GA 30301" +216405,Lightning Charging Cable,1,14.95,06/13/19 13:32,"433 4th St, Portland, OR 97035" +216406,Bose SoundSport Headphones,1,99.99,06/21/19 08:53,"6 Hill St, Seattle, WA 98101" +216407,AAA Batteries (4-pack),1,2.99,06/28/19 01:57,"348 South St, Atlanta, GA 30301" +216408,27in 4K Gaming Monitor,1,389.99,06/16/19 09:04,"412 Adams St, Austin, TX 73301" +216409,Apple Airpods Headphones,1,150,06/19/19 13:58,"684 Main St, Seattle, WA 98101" +216410,AAA Batteries (4-pack),1,2.99,06/27/19 22:35,"321 Jefferson St, New York City, NY 10001" +216411,Apple Airpods Headphones,1,150,06/03/19 19:32,"251 12th St, Seattle, WA 98101" +216412,Wired Headphones,1,11.99,06/24/19 11:15,"838 7th St, New York City, NY 10001" +216413,USB-C Charging Cable,1,11.95,06/12/19 18:01,"6 Chestnut St, Portland, OR 97035" +216414,Flatscreen TV,1,300,06/04/19 15:26,"761 North St, Los Angeles, CA 90001" +216415,USB-C Charging Cable,1,11.95,06/03/19 21:43,"463 Center St, Dallas, TX 75001" +216416,20in Monitor,1,109.99,06/28/19 20:30,"139 Washington St, San Francisco, CA 94016" +216417,Lightning Charging Cable,1,14.95,06/01/19 17:48,"380 Hickory St, Dallas, TX 75001" +216418,20in Monitor,1,109.99,06/28/19 10:49,"266 Elm St, San Francisco, CA 94016" +216419,USB-C Charging Cable,2,11.95,06/06/19 16:05,"823 Park St, Dallas, TX 75001" +216420,Wired Headphones,1,11.99,06/19/19 19:37,"492 Pine St, San Francisco, CA 94016" +216421,Wired Headphones,1,11.99,06/15/19 17:50,"813 Church St, Portland, ME 04101" +216422,Lightning Charging Cable,1,14.95,06/25/19 13:41,"741 Highland St, Atlanta, GA 30301" +216423,Lightning Charging Cable,1,14.95,06/22/19 08:00,"150 11th St, San Francisco, CA 94016" +216424,Google Phone,1,600,06/28/19 20:19,"914 7th St, Los Angeles, CA 90001" +216425,AAA Batteries (4-pack),1,2.99,06/23/19 10:55,"67 14th St, Seattle, WA 98101" +216426,AAA Batteries (4-pack),3,2.99,06/03/19 12:17,"183 Willow St, San Francisco, CA 94016" +216427,AA Batteries (4-pack),2,3.84,06/29/19 22:02,"871 Maple St, Dallas, TX 75001" +216428,iPhone,1,700,06/21/19 19:20,"984 Park St, Seattle, WA 98101" +216429,Lightning Charging Cable,1,14.95,06/11/19 10:45,"15 Forest St, San Francisco, CA 94016" +216430,iPhone,1,700,06/12/19 13:57,"796 8th St, San Francisco, CA 94016" +216431,ThinkPad Laptop,1,999.99,06/23/19 15:51,"758 Jackson St, Seattle, WA 98101" +216432,34in Ultrawide Monitor,1,379.99,06/06/19 18:34,"466 4th St, Austin, TX 73301" +216433,USB-C Charging Cable,1,11.95,06/28/19 13:51,"93 14th St, Dallas, TX 75001" +216434,27in 4K Gaming Monitor,1,389.99,06/19/19 21:01,"573 5th St, San Francisco, CA 94016" +216435,AAA Batteries (4-pack),1,2.99,06/08/19 21:25,"909 13th St, Los Angeles, CA 90001" +216436,AA Batteries (4-pack),1,3.84,06/19/19 16:04,"373 14th St, Portland, ME 04101" +216437,USB-C Charging Cable,1,11.95,06/20/19 20:58,"705 Lakeview St, Austin, TX 73301" +216438,Lightning Charging Cable,1,14.95,06/22/19 10:51,"311 Park St, San Francisco, CA 94016" +216439,AA Batteries (4-pack),2,3.84,06/22/19 13:17,"669 Center St, San Francisco, CA 94016" +216440,Apple Airpods Headphones,1,150,06/15/19 11:44,"637 8th St, New York City, NY 10001" +216441,USB-C Charging Cable,1,11.95,06/15/19 09:43,"64 Elm St, Seattle, WA 98101" +216442,Wired Headphones,1,11.99,06/12/19 12:43,"335 Lincoln St, Los Angeles, CA 90001" +216443,Lightning Charging Cable,1,14.95,06/30/19 17:27,"668 Johnson St, Los Angeles, CA 90001" +216444,iPhone,1,700,06/13/19 15:03,"329 West St, Austin, TX 73301" +216445,AA Batteries (4-pack),1,3.84,06/03/19 07:26,"404 Spruce St, Los Angeles, CA 90001" +216446,27in FHD Monitor,1,149.99,06/23/19 16:48,"855 Sunset St, Atlanta, GA 30301" +216447,27in FHD Monitor,1,149.99,06/11/19 02:22,"904 11th St, San Francisco, CA 94016" +216448,USB-C Charging Cable,1,11.95,06/16/19 06:02,"344 Sunset St, Boston, MA 02215" +216449,Lightning Charging Cable,1,14.95,06/17/19 11:54,"93 Adams St, San Francisco, CA 94016" +216450,27in 4K Gaming Monitor,1,389.99,06/28/19 08:29,"897 Jefferson St, Boston, MA 02215" +216451,LG Washing Machine,1,600.0,06/22/19 18:43,"196 Spruce St, Boston, MA 02215" +216452,USB-C Charging Cable,1,11.95,06/03/19 22:13,"470 Church St, Austin, TX 73301" +216453,USB-C Charging Cable,1,11.95,06/15/19 14:21,"894 Dogwood St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +216454,AA Batteries (4-pack),3,3.84,06/13/19 11:09,"124 Hill St, New York City, NY 10001" +216455,USB-C Charging Cable,1,11.95,06/17/19 20:35,"371 5th St, Los Angeles, CA 90001" +216456,LG Washing Machine,1,600.0,06/30/19 09:15,"737 North St, Portland, OR 97035" +216457,Lightning Charging Cable,1,14.95,06/16/19 12:11,"545 8th St, Austin, TX 73301" +216458,AAA Batteries (4-pack),1,2.99,06/22/19 16:33,"952 4th St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +216459,Lightning Charging Cable,1,14.95,06/02/19 04:03,"49 Dogwood St, San Francisco, CA 94016" +216460,Bose SoundSport Headphones,1,99.99,06/17/19 10:26,"393 Pine St, Los Angeles, CA 90001" +216461,Apple Airpods Headphones,1,150,06/27/19 18:07,"229 Madison St, Los Angeles, CA 90001" +216462,34in Ultrawide Monitor,1,379.99,06/04/19 10:22,"893 2nd St, Portland, ME 04101" +216463,LG Dryer,1,600.0,06/02/19 14:39,"996 Madison St, San Francisco, CA 94016" +216464,Wired Headphones,1,11.99,06/24/19 20:26,"933 Maple St, Atlanta, GA 30301" +216465,USB-C Charging Cable,2,11.95,06/30/19 15:35,"847 11th St, Seattle, WA 98101" +216466,USB-C Charging Cable,1,11.95,06/15/19 03:07,"360 Jackson St, San Francisco, CA 94016" +216467,Bose SoundSport Headphones,1,99.99,06/07/19 19:28,"614 Lake St, Los Angeles, CA 90001" +216468,Flatscreen TV,1,300,06/10/19 11:14,"939 8th St, Atlanta, GA 30301" +216469,Wired Headphones,1,11.99,06/14/19 09:30,"219 Johnson St, Atlanta, GA 30301" +216470,iPhone,1,700,06/18/19 11:50,"468 Johnson St, Boston, MA 02215" +216471,34in Ultrawide Monitor,1,379.99,06/22/19 18:29,"958 Walnut St, Seattle, WA 98101" +216472,Lightning Charging Cable,1,14.95,06/10/19 08:49,"115 9th St, Seattle, WA 98101" +216473,AA Batteries (4-pack),1,3.84,06/18/19 20:21,"394 Adams St, Seattle, WA 98101" +216474,iPhone,1,700,06/19/19 21:42,"521 North St, New York City, NY 10001" +216475,AAA Batteries (4-pack),1,2.99,06/06/19 22:26,"640 Johnson St, Portland, OR 97035" +216476,iPhone,1,700,06/21/19 20:34,"466 5th St, Dallas, TX 75001" +216477,27in FHD Monitor,1,149.99,06/28/19 07:44,"546 Wilson St, New York City, NY 10001" +216478,27in 4K Gaming Monitor,1,389.99,06/23/19 08:36,"289 River St, Los Angeles, CA 90001" +216479,Apple Airpods Headphones,1,150,06/02/19 10:34,"264 6th St, Los Angeles, CA 90001" +216480,USB-C Charging Cable,1,11.95,06/21/19 23:37,"947 Cherry St, Dallas, TX 75001" +216481,27in 4K Gaming Monitor,1,389.99,06/16/19 22:53,"494 10th St, San Francisco, CA 94016" +216482,Bose SoundSport Headphones,1,99.99,06/26/19 00:40,"673 South St, Dallas, TX 75001" +216483,AAA Batteries (4-pack),2,2.99,06/05/19 14:51,"861 13th St, Boston, MA 02215" +216484,Bose SoundSport Headphones,1,99.99,06/09/19 18:39,"763 Lincoln St, San Francisco, CA 94016" +216485,Apple Airpods Headphones,1,150,06/23/19 13:26,"689 North St, Austin, TX 73301" +216486,27in FHD Monitor,1,149.99,06/11/19 20:07,"207 Spruce St, Atlanta, GA 30301" +216487,Wired Headphones,1,11.99,06/25/19 20:05,"21 Cherry St, San Francisco, CA 94016" +216488,20in Monitor,1,109.99,06/06/19 00:08,"677 Forest St, Atlanta, GA 30301" +216489,20in Monitor,1,109.99,06/27/19 20:14,"960 Spruce St, Los Angeles, CA 90001" +216490,AAA Batteries (4-pack),4,2.99,06/10/19 22:03,"756 Walnut St, Seattle, WA 98101" +216491,Lightning Charging Cable,1,14.95,06/19/19 20:48,"267 Jackson St, Los Angeles, CA 90001" +216492,Bose SoundSport Headphones,1,99.99,06/12/19 16:11,"195 Highland St, Atlanta, GA 30301" +216493,Flatscreen TV,1,300,06/24/19 18:31,"346 Meadow St, San Francisco, CA 94016" +216494,Vareebadd Phone,1,400,06/25/19 10:59,"86 2nd St, Seattle, WA 98101" +216494,USB-C Charging Cable,1,11.95,06/25/19 10:59,"86 2nd St, Seattle, WA 98101" +216494,AA Batteries (4-pack),1,3.84,06/25/19 10:59,"86 2nd St, Seattle, WA 98101" +216495,AAA Batteries (4-pack),1,2.99,06/30/19 20:02,"482 Cedar St, New York City, NY 10001" +216496,AAA Batteries (4-pack),2,2.99,06/03/19 21:41,"27 Jackson St, San Francisco, CA 94016" +216497,AA Batteries (4-pack),1,3.84,06/23/19 10:42,"582 7th St, Austin, TX 73301" +216498,AA Batteries (4-pack),2,3.84,06/30/19 08:14,"565 Johnson St, Dallas, TX 75001" +216499,Wired Headphones,1,11.99,06/06/19 10:35,"459 1st St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +216500,AAA Batteries (4-pack),1,2.99,06/07/19 23:00,"629 6th St, San Francisco, CA 94016" +216501,Flatscreen TV,1,300,06/05/19 19:53,"656 River St, Atlanta, GA 30301" +216502,AAA Batteries (4-pack),1,2.99,06/06/19 15:30,"515 Jackson St, San Francisco, CA 94016" +216503,Lightning Charging Cable,1,14.95,06/22/19 10:19,"374 Sunset St, Atlanta, GA 30301" +216504,Wired Headphones,1,11.99,06/02/19 14:02,"34 Madison St, San Francisco, CA 94016" +216505,ThinkPad Laptop,1,999.99,06/18/19 19:52,"778 Center St, New York City, NY 10001" +216506,34in Ultrawide Monitor,1,379.99,06/02/19 07:09,"695 14th St, Dallas, TX 75001" +216507,USB-C Charging Cable,1,11.95,06/03/19 08:39,"896 Hill St, Los Angeles, CA 90001" +216508,Wired Headphones,1,11.99,06/21/19 22:39,"536 Madison St, New York City, NY 10001" +216509,Bose SoundSport Headphones,1,99.99,06/18/19 19:00,"334 Lincoln St, Dallas, TX 75001" +216510,34in Ultrawide Monitor,1,379.99,06/18/19 01:08,"42 Spruce St, Dallas, TX 75001" +216511,AA Batteries (4-pack),1,3.84,06/05/19 20:24,"827 Center St, San Francisco, CA 94016" +216512,Wired Headphones,1,11.99,06/27/19 16:45,"525 5th St, Dallas, TX 75001" +216513,Google Phone,1,600,06/15/19 23:03,"196 Washington St, New York City, NY 10001" +216514,Lightning Charging Cable,1,14.95,06/02/19 13:51,"215 Spruce St, New York City, NY 10001" +216515,AAA Batteries (4-pack),1,2.99,06/16/19 00:05,"518 Washington St, San Francisco, CA 94016" +216515,Apple Airpods Headphones,1,150,06/16/19 00:05,"518 Washington St, San Francisco, CA 94016" +216516,AAA Batteries (4-pack),2,2.99,06/23/19 20:14,"264 Walnut St, Boston, MA 02215" +216517,27in 4K Gaming Monitor,1,389.99,06/19/19 20:39,"333 Hickory St, Seattle, WA 98101" +216518,Macbook Pro Laptop,1,1700,07/01/19 05:16,"360 Ridge St, San Francisco, CA 94016" +216519,AAA Batteries (4-pack),2,2.99,06/11/19 18:03,"22 Wilson St, San Francisco, CA 94016" +216520,Lightning Charging Cable,1,14.95,06/07/19 00:54,"260 8th St, Los Angeles, CA 90001" +216521,iPhone,1,700,06/01/19 08:41,"450 7th St, Los Angeles, CA 90001" +216522,Lightning Charging Cable,1,14.95,06/15/19 19:11,"612 Elm St, San Francisco, CA 94016" +216523,Wired Headphones,1,11.99,06/29/19 14:17,"802 Cherry St, Boston, MA 02215" +216524,AAA Batteries (4-pack),1,2.99,06/24/19 11:57,"45 Lake St, Atlanta, GA 30301" +216525,Apple Airpods Headphones,1,150,06/05/19 22:20,"782 Center St, New York City, NY 10001" +216526,AAA Batteries (4-pack),1,2.99,06/13/19 02:08,"42 Hickory St, Seattle, WA 98101" +216527,AA Batteries (4-pack),1,3.84,06/11/19 17:04,"568 Hill St, San Francisco, CA 94016" +216528,AAA Batteries (4-pack),1,2.99,06/03/19 12:34,"689 Cedar St, Seattle, WA 98101" +216529,Bose SoundSport Headphones,1,99.99,06/12/19 08:55,"968 Hickory St, Los Angeles, CA 90001" +216530,iPhone,1,700,06/28/19 18:51,"917 Cedar St, Los Angeles, CA 90001" +216531,USB-C Charging Cable,1,11.95,06/27/19 21:41,"819 North St, Atlanta, GA 30301" +216532,Apple Airpods Headphones,1,150,06/04/19 16:05,"547 Center St, San Francisco, CA 94016" +216533,34in Ultrawide Monitor,1,379.99,06/05/19 14:07,"171 Hickory St, New York City, NY 10001" +216534,AA Batteries (4-pack),1,3.84,06/21/19 19:11,"853 13th St, Dallas, TX 75001" +216535,20in Monitor,1,109.99,06/10/19 15:50,"269 Wilson St, Los Angeles, CA 90001" +216536,AAA Batteries (4-pack),1,2.99,06/13/19 11:24,"556 Johnson St, San Francisco, CA 94016" +216537,AA Batteries (4-pack),1,3.84,06/17/19 18:47,"876 10th St, Boston, MA 02215" +216538,Bose SoundSport Headphones,1,99.99,06/12/19 09:23,"74 Forest St, Seattle, WA 98101" +216539,USB-C Charging Cable,1,11.95,06/28/19 02:09,"1 7th St, San Francisco, CA 94016" +216540,34in Ultrawide Monitor,1,379.99,06/11/19 12:14,"1 Main St, San Francisco, CA 94016" +216541,Wired Headphones,1,11.99,06/10/19 21:29,"103 Park St, Seattle, WA 98101" +216542,27in 4K Gaming Monitor,1,389.99,06/07/19 07:29,"451 Jefferson St, Los Angeles, CA 90001" +216543,USB-C Charging Cable,2,11.95,06/27/19 08:58,"916 Hickory St, Seattle, WA 98101" +216544,AAA Batteries (4-pack),3,2.99,06/02/19 06:13,"941 Wilson St, Boston, MA 02215" +216545,Bose SoundSport Headphones,1,99.99,06/25/19 16:05,"970 Lake St, New York City, NY 10001" +216546,AAA Batteries (4-pack),2,2.99,06/17/19 18:16,"33 2nd St, New York City, NY 10001" +216547,Apple Airpods Headphones,1,150,06/18/19 19:55,"981 Johnson St, Atlanta, GA 30301" +216548,USB-C Charging Cable,1,11.95,06/25/19 09:35,"66 4th St, New York City, NY 10001" +216549,USB-C Charging Cable,1,11.95,06/05/19 21:00,"702 Meadow St, New York City, NY 10001" +216550,Wired Headphones,1,11.99,06/16/19 21:26,"282 Chestnut St, Los Angeles, CA 90001" +216551,ThinkPad Laptop,1,999.99,06/07/19 19:44,"712 7th St, San Francisco, CA 94016" +216552,Wired Headphones,1,11.99,06/10/19 20:31,"229 Johnson St, New York City, NY 10001" +216553,USB-C Charging Cable,1,11.95,06/18/19 19:31,"997 Johnson St, San Francisco, CA 94016" +216554,AA Batteries (4-pack),1,3.84,06/25/19 16:42,"419 Lakeview St, New York City, NY 10001" +216555,Bose SoundSport Headphones,1,99.99,06/07/19 23:14,"822 Cherry St, Atlanta, GA 30301" +216556,27in FHD Monitor,1,149.99,06/28/19 14:55,"848 South St, Los Angeles, CA 90001" +216557,AA Batteries (4-pack),1,3.84,06/23/19 13:28,"914 Highland St, Los Angeles, CA 90001" +216558,AA Batteries (4-pack),1,3.84,06/03/19 17:01,"846 South St, Boston, MA 02215" +216559,27in FHD Monitor,1,149.99,06/23/19 20:41,"836 Hill St, Boston, MA 02215" +216560,Apple Airpods Headphones,1,150,06/28/19 19:02,"933 Lakeview St, Boston, MA 02215" +216561,Wired Headphones,1,11.99,06/06/19 06:05,"213 Dogwood St, San Francisco, CA 94016" +216562,Apple Airpods Headphones,1,150,06/10/19 00:01,"794 14th St, Dallas, TX 75001" +216563,Macbook Pro Laptop,1,1700,06/23/19 17:02,"772 Main St, New York City, NY 10001" +216564,AA Batteries (4-pack),1,3.84,06/22/19 21:27,"451 Johnson St, Los Angeles, CA 90001" +216565,Bose SoundSport Headphones,1,99.99,06/01/19 08:23,"370 Lincoln St, New York City, NY 10001" +216566,Lightning Charging Cable,1,14.95,06/28/19 22:20,"130 Adams St, San Francisco, CA 94016" +216567,AA Batteries (4-pack),1,3.84,06/29/19 19:55,"555 9th St, Dallas, TX 75001" +216568,27in 4K Gaming Monitor,1,389.99,06/20/19 20:45,"249 Hill St, Atlanta, GA 30301" +216569,AA Batteries (4-pack),2,3.84,06/19/19 15:08,"490 Wilson St, Atlanta, GA 30301" +216570,Bose SoundSport Headphones,1,99.99,06/08/19 07:41,"396 2nd St, Los Angeles, CA 90001" +216571,AAA Batteries (4-pack),1,2.99,06/17/19 05:45,"176 Madison St, Seattle, WA 98101" +216572,Wired Headphones,1,11.99,06/16/19 12:22,"718 Maple St, San Francisco, CA 94016" +216573,AAA Batteries (4-pack),1,2.99,06/02/19 08:50,"132 Center St, New York City, NY 10001" +216574,Lightning Charging Cable,1,14.95,06/17/19 18:09,"603 Elm St, Dallas, TX 75001" +216575,AA Batteries (4-pack),2,3.84,06/18/19 19:35,"163 12th St, New York City, NY 10001" +216576,AA Batteries (4-pack),2,3.84,06/07/19 20:39,"592 Jefferson St, San Francisco, CA 94016" +216577,Wired Headphones,2,11.99,06/03/19 18:22,"724 Lincoln St, Atlanta, GA 30301" +216578,AAA Batteries (4-pack),2,2.99,06/06/19 14:47,"221 Jackson St, Seattle, WA 98101" +,,,,, +216579,Apple Airpods Headphones,1,150,06/06/19 23:10,"286 12th St, Portland, OR 97035" +216580,USB-C Charging Cable,1,11.95,06/19/19 11:19,"293 Hickory St, New York City, NY 10001" +216581,Lightning Charging Cable,1,14.95,06/26/19 18:11,"386 Highland St, Dallas, TX 75001" +216582,USB-C Charging Cable,1,11.95,06/01/19 05:48,"963 2nd St, Portland, ME 04101" +216583,Google Phone,1,600,06/03/19 20:55,"808 Chestnut St, San Francisco, CA 94016" +216583,USB-C Charging Cable,1,11.95,06/03/19 20:55,"808 Chestnut St, San Francisco, CA 94016" +216584,Apple Airpods Headphones,1,150,06/16/19 01:17,"780 8th St, Los Angeles, CA 90001" +216585,USB-C Charging Cable,1,11.95,06/20/19 22:07,"357 9th St, San Francisco, CA 94016" +216586,27in FHD Monitor,1,149.99,06/16/19 15:23,"541 Sunset St, New York City, NY 10001" +216587,Bose SoundSport Headphones,1,99.99,06/02/19 21:10,"397 4th St, Boston, MA 02215" +216588,Bose SoundSport Headphones,1,99.99,06/11/19 08:40,"123 Cedar St, New York City, NY 10001" +216589,Macbook Pro Laptop,1,1700,06/27/19 21:58,"907 Center St, Austin, TX 73301" +216590,27in FHD Monitor,1,149.99,06/09/19 22:43,"811 12th St, New York City, NY 10001" +216591,Apple Airpods Headphones,1,150,06/06/19 00:06,"997 Elm St, Atlanta, GA 30301" +216592,27in FHD Monitor,1,149.99,06/01/19 13:39,"835 13th St, Los Angeles, CA 90001" +216593,Bose SoundSport Headphones,1,99.99,06/12/19 11:56,"716 Pine St, Portland, OR 97035" +216594,Wired Headphones,1,11.99,06/25/19 13:38,"365 South St, Dallas, TX 75001" +216595,ThinkPad Laptop,1,999.99,06/18/19 12:11,"940 6th St, Los Angeles, CA 90001" +216596,AAA Batteries (4-pack),1,2.99,06/07/19 19:34,"593 11th St, San Francisco, CA 94016" +216597,Lightning Charging Cable,1,14.95,06/13/19 16:42,"231 11th St, Los Angeles, CA 90001" +216598,Lightning Charging Cable,1,14.95,06/18/19 11:31,"935 Church St, New York City, NY 10001" +216599,AA Batteries (4-pack),1,3.84,06/15/19 14:16,"976 Maple St, Boston, MA 02215" +216600,AAA Batteries (4-pack),2,2.99,06/14/19 19:17,"882 Chestnut St, Portland, OR 97035" +216601,iPhone,1,700,06/28/19 18:27,"897 8th St, Los Angeles, CA 90001" +216602,27in FHD Monitor,1,149.99,06/18/19 13:01,"645 Sunset St, Boston, MA 02215" +216603,AA Batteries (4-pack),1,3.84,06/03/19 21:46,"884 North St, Austin, TX 73301" +216604,Lightning Charging Cable,1,14.95,06/25/19 17:10,"41 10th St, San Francisco, CA 94016" +216605,Bose SoundSport Headphones,1,99.99,06/22/19 23:25,"309 Walnut St, San Francisco, CA 94016" +216606,Wired Headphones,1,11.99,06/05/19 08:51,"290 North St, Seattle, WA 98101" +216607,20in Monitor,1,109.99,06/18/19 12:37,"250 Park St, San Francisco, CA 94016" +216608,iPhone,1,700,06/13/19 11:11,"400 7th St, Dallas, TX 75001" +216609,Wired Headphones,1,11.99,06/01/19 19:19,"353 Washington St, Austin, TX 73301" +216610,27in FHD Monitor,1,149.99,06/08/19 11:17,"15 Lakeview St, San Francisco, CA 94016" +216611,USB-C Charging Cable,1,11.95,06/30/19 07:48,"149 9th St, Boston, MA 02215" +216612,27in FHD Monitor,1,149.99,06/21/19 18:15,"688 2nd St, Austin, TX 73301" +216613,Wired Headphones,1,11.99,06/02/19 10:05,"419 11th St, Dallas, TX 75001" +216614,Lightning Charging Cable,1,14.95,06/19/19 00:05,"437 Lincoln St, Los Angeles, CA 90001" +216615,Bose SoundSport Headphones,1,99.99,06/23/19 14:59,"67 Park St, Seattle, WA 98101" +216616,AA Batteries (4-pack),1,3.84,06/27/19 20:18,"718 Cherry St, San Francisco, CA 94016" +216617,AA Batteries (4-pack),2,3.84,06/27/19 13:21,"265 Jackson St, Seattle, WA 98101" +216618,Vareebadd Phone,1,400,06/11/19 23:42,"676 8th St, San Francisco, CA 94016" +216618,USB-C Charging Cable,1,11.95,06/11/19 23:42,"676 8th St, San Francisco, CA 94016" +216619,Flatscreen TV,1,300,06/14/19 15:59,"146 Highland St, Austin, TX 73301" +216620,Apple Airpods Headphones,1,150,06/24/19 11:11,"749 12th St, Los Angeles, CA 90001" +216621,Bose SoundSport Headphones,1,99.99,06/27/19 18:39,"217 Hickory St, New York City, NY 10001" +216622,27in FHD Monitor,1,149.99,06/24/19 09:03,"291 River St, Dallas, TX 75001" +216623,AA Batteries (4-pack),1,3.84,06/10/19 21:35,"615 12th St, San Francisco, CA 94016" +216624,34in Ultrawide Monitor,1,379.99,06/16/19 21:07,"584 Meadow St, Los Angeles, CA 90001" +216625,Bose SoundSport Headphones,1,99.99,06/05/19 10:06,"243 South St, Dallas, TX 75001" +216626,AAA Batteries (4-pack),2,2.99,06/17/19 16:51,"635 Maple St, San Francisco, CA 94016" +216627,Apple Airpods Headphones,1,150,06/21/19 19:56,"88 Pine St, Boston, MA 02215" +216628,34in Ultrawide Monitor,1,379.99,06/09/19 11:38,"514 West St, New York City, NY 10001" +216629,27in 4K Gaming Monitor,1,389.99,06/05/19 17:02,"910 Maple St, San Francisco, CA 94016" +216630,Bose SoundSport Headphones,1,99.99,06/20/19 13:42,"76 5th St, Austin, TX 73301" +216631,AA Batteries (4-pack),3,3.84,06/03/19 16:59,"785 Maple St, Seattle, WA 98101" +216632,Wired Headphones,1,11.99,06/29/19 07:56,"393 1st St, San Francisco, CA 94016" +216633,27in FHD Monitor,1,149.99,06/28/19 08:56,"440 Willow St, Los Angeles, CA 90001" +216634,Bose SoundSport Headphones,1,99.99,06/06/19 14:57,"422 Main St, Los Angeles, CA 90001" +216635,AA Batteries (4-pack),1,3.84,06/03/19 20:11,"427 8th St, San Francisco, CA 94016" +216636,Bose SoundSport Headphones,1,99.99,06/07/19 19:21,"971 Adams St, Los Angeles, CA 90001" +216637,Wired Headphones,1,11.99,06/28/19 12:07,"966 Highland St, Portland, OR 97035" +216638,AA Batteries (4-pack),1,3.84,06/10/19 11:29,"831 6th St, Austin, TX 73301" +216639,Wired Headphones,1,11.99,06/21/19 12:31,"177 River St, New York City, NY 10001" +216640,Google Phone,1,600,06/24/19 21:35,"53 Park St, San Francisco, CA 94016" +216641,Flatscreen TV,1,300,06/03/19 11:59,"631 Willow St, Los Angeles, CA 90001" +216642,27in FHD Monitor,1,149.99,06/18/19 10:33,"79 Madison St, Atlanta, GA 30301" +216643,Apple Airpods Headphones,1,150,06/23/19 11:33,"919 11th St, Boston, MA 02215" +216644,Lightning Charging Cable,1,14.95,06/06/19 17:15,"854 Hickory St, San Francisco, CA 94016" +216645,LG Washing Machine,1,600.0,06/25/19 13:29,"198 Maple St, Boston, MA 02215" +216646,Apple Airpods Headphones,1,150,06/26/19 14:22,"987 13th St, Seattle, WA 98101" +216647,Wired Headphones,1,11.99,06/16/19 22:21,"639 South St, Austin, TX 73301" +216648,AA Batteries (4-pack),2,3.84,06/22/19 16:34,"686 13th St, San Francisco, CA 94016" +216649,Flatscreen TV,1,300,06/09/19 19:43,"941 Center St, San Francisco, CA 94016" +216650,iPhone,1,700,06/20/19 20:55,"245 Sunset St, San Francisco, CA 94016" +216651,27in 4K Gaming Monitor,1,389.99,06/25/19 17:49,"559 North St, Dallas, TX 75001" +216651,AAA Batteries (4-pack),1,2.99,06/25/19 17:49,"559 North St, Dallas, TX 75001" +216652,Apple Airpods Headphones,1,150,06/14/19 12:39,"597 Hickory St, Atlanta, GA 30301" +216653,AAA Batteries (4-pack),5,2.99,06/05/19 05:45,"372 Cedar St, Austin, TX 73301" +216654,AAA Batteries (4-pack),2,2.99,06/03/19 09:39,"107 1st St, Los Angeles, CA 90001" +216655,USB-C Charging Cable,1,11.95,06/22/19 20:58,"807 13th St, Portland, OR 97035" +216656,Wired Headphones,1,11.99,06/08/19 14:32,"45 6th St, San Francisco, CA 94016" +216657,AA Batteries (4-pack),1,3.84,06/11/19 22:22,"516 1st St, Dallas, TX 75001" +216658,Google Phone,1,600,06/14/19 03:28,"351 Willow St, San Francisco, CA 94016" +216659,Lightning Charging Cable,1,14.95,06/08/19 20:13,"816 Hill St, Austin, TX 73301" +216660,34in Ultrawide Monitor,1,379.99,06/05/19 06:56,"520 9th St, Portland, OR 97035" +216661,27in FHD Monitor,1,149.99,06/14/19 21:11,"594 Sunset St, Los Angeles, CA 90001" +216662,AAA Batteries (4-pack),1,2.99,06/27/19 11:56,"691 14th St, San Francisco, CA 94016" +216663,Google Phone,1,600,06/16/19 19:34,"873 Highland St, New York City, NY 10001" +216664,Lightning Charging Cable,1,14.95,06/21/19 22:26,"851 Cedar St, New York City, NY 10001" +216665,USB-C Charging Cable,2,11.95,06/21/19 16:44,"568 West St, New York City, NY 10001" +216666,USB-C Charging Cable,2,11.95,06/21/19 16:04,"435 Center St, Los Angeles, CA 90001" +216667,Apple Airpods Headphones,1,150,06/01/19 09:35,"342 5th St, Boston, MA 02215" +216668,ThinkPad Laptop,1,999.99,06/24/19 15:15,"976 8th St, Seattle, WA 98101" +216669,USB-C Charging Cable,1,11.95,06/23/19 10:54,"160 Jefferson St, Seattle, WA 98101" +216670,Lightning Charging Cable,1,14.95,06/01/19 14:43,"62 Lake St, San Francisco, CA 94016" +216671,27in 4K Gaming Monitor,1,389.99,06/15/19 09:11,"876 9th St, Seattle, WA 98101" +216672,Wired Headphones,1,11.99,06/13/19 06:18,"435 11th St, San Francisco, CA 94016" +216673,Google Phone,1,600,06/11/19 01:08,"765 Madison St, San Francisco, CA 94016" +216674,iPhone,1,700,06/03/19 17:14,"322 Adams St, Los Angeles, CA 90001" +216675,Lightning Charging Cable,1,14.95,06/25/19 11:39,"387 Hickory St, Los Angeles, CA 90001" +216676,Apple Airpods Headphones,1,150,06/11/19 20:25,"799 Pine St, San Francisco, CA 94016" +216677,AAA Batteries (4-pack),1,2.99,06/03/19 12:19,"982 Lake St, Portland, OR 97035" +216678,AAA Batteries (4-pack),2,2.99,06/23/19 20:29,"624 Madison St, Seattle, WA 98101" +216679,Google Phone,1,600,06/29/19 09:51,"27 Center St, Seattle, WA 98101" +216680,USB-C Charging Cable,1,11.95,06/30/19 18:58,"428 Chestnut St, Los Angeles, CA 90001" +216681,USB-C Charging Cable,1,11.95,06/25/19 12:03,"604 12th St, Los Angeles, CA 90001" +216682,20in Monitor,1,109.99,06/28/19 10:27,"720 Lincoln St, New York City, NY 10001" +216683,Lightning Charging Cable,1,14.95,06/22/19 17:19,"907 Hill St, Los Angeles, CA 90001" +216684,USB-C Charging Cable,1,11.95,06/26/19 13:03,"398 West St, Los Angeles, CA 90001" +216685,USB-C Charging Cable,1,11.95,06/07/19 20:49,"775 Jackson St, Los Angeles, CA 90001" +216686,Wired Headphones,1,11.99,06/18/19 19:26,"91 1st St, Dallas, TX 75001" +216687,Bose SoundSport Headphones,1,99.99,06/03/19 01:41,"227 10th St, Atlanta, GA 30301" +216688,AAA Batteries (4-pack),2,2.99,06/23/19 05:46,"903 Hill St, San Francisco, CA 94016" +216689,Wired Headphones,1,11.99,06/04/19 20:28,"53 Spruce St, Los Angeles, CA 90001" +216690,Bose SoundSport Headphones,1,99.99,06/13/19 12:35,"888 Hickory St, Dallas, TX 75001" +216691,USB-C Charging Cable,1,11.95,06/05/19 13:14,"127 8th St, New York City, NY 10001" +216692,LG Dryer,1,600.0,06/13/19 11:58,"979 7th St, Dallas, TX 75001" +216693,Wired Headphones,1,11.99,06/16/19 11:12,"758 West St, San Francisco, CA 94016" +216694,Wired Headphones,1,11.99,06/11/19 12:57,"988 Meadow St, Portland, OR 97035" +216695,Wired Headphones,1,11.99,06/17/19 07:52,"20 10th St, Dallas, TX 75001" +216696,Lightning Charging Cable,1,14.95,06/16/19 20:47,"638 7th St, New York City, NY 10001" +216697,AA Batteries (4-pack),1,3.84,06/16/19 06:38,"652 14th St, Boston, MA 02215" +216698,Apple Airpods Headphones,1,150,06/19/19 16:29,"671 12th St, New York City, NY 10001" +216699,iPhone,1,700,06/29/19 13:24,"272 Main St, Los Angeles, CA 90001" +216700,Lightning Charging Cable,1,14.95,06/08/19 19:34,"137 Maple St, San Francisco, CA 94016" +216701,AAA Batteries (4-pack),2,2.99,06/08/19 12:39,"495 Lake St, San Francisco, CA 94016" +216701,Wired Headphones,1,11.99,06/08/19 12:39,"495 Lake St, San Francisco, CA 94016" +216702,Apple Airpods Headphones,1,150,06/06/19 17:46,"498 Park St, Austin, TX 73301" +216703,Lightning Charging Cable,1,14.95,06/13/19 13:41,"854 1st St, San Francisco, CA 94016" +216704,ThinkPad Laptop,1,999.99,06/23/19 23:05,"20 Hickory St, New York City, NY 10001" +216705,Bose SoundSport Headphones,1,99.99,06/04/19 19:08,"352 Church St, Dallas, TX 75001" +216706,iPhone,1,700,06/29/19 13:31,"613 11th St, Austin, TX 73301" +216707,34in Ultrawide Monitor,1,379.99,06/18/19 11:09,"482 Jackson St, Los Angeles, CA 90001" +216708,20in Monitor,1,109.99,06/15/19 16:08,"344 Ridge St, Seattle, WA 98101" +216709,Apple Airpods Headphones,1,150,06/06/19 23:38,"376 Center St, New York City, NY 10001" +216710,iPhone,1,700,06/26/19 19:56,"759 Hill St, New York City, NY 10001" +216711,Wired Headphones,1,11.99,06/07/19 08:56,"94 Ridge St, Boston, MA 02215" +216712,USB-C Charging Cable,1,11.95,06/04/19 00:47,"65 Maple St, Seattle, WA 98101" +216713,USB-C Charging Cable,1,11.95,06/02/19 11:11,"257 Ridge St, Austin, TX 73301" +216714,27in 4K Gaming Monitor,1,389.99,06/14/19 18:49,"132 Ridge St, Austin, TX 73301" +216715,Lightning Charging Cable,1,14.95,06/10/19 22:14,"1 Lakeview St, Atlanta, GA 30301" +216716,AA Batteries (4-pack),1,3.84,06/21/19 19:36,"56 6th St, Atlanta, GA 30301" +216717,27in 4K Gaming Monitor,1,389.99,06/25/19 12:16,"985 Park St, San Francisco, CA 94016" +216718,iPhone,1,700,06/06/19 09:29,"636 River St, Atlanta, GA 30301" +216719,USB-C Charging Cable,1,11.95,06/16/19 12:26,"189 Jackson St, Dallas, TX 75001" +216720,20in Monitor,1,109.99,06/04/19 12:45,"142 Chestnut St, Dallas, TX 75001" +216721,27in 4K Gaming Monitor,1,389.99,06/12/19 15:07,"684 Johnson St, Dallas, TX 75001" +216722,AAA Batteries (4-pack),2,2.99,06/19/19 10:25,"833 Jackson St, Atlanta, GA 30301" +216723,Apple Airpods Headphones,1,150,06/04/19 21:14,"811 Meadow St, New York City, NY 10001" +216724,USB-C Charging Cable,1,11.95,06/22/19 16:41,"214 Forest St, New York City, NY 10001" +216725,AA Batteries (4-pack),1,3.84,06/16/19 05:18,"232 Park St, San Francisco, CA 94016" +216726,Google Phone,1,600,06/25/19 19:53,"176 Cedar St, New York City, NY 10001" +216726,USB-C Charging Cable,1,11.95,06/25/19 19:53,"176 Cedar St, New York City, NY 10001" +216727,AA Batteries (4-pack),1,3.84,06/08/19 20:17,"346 9th St, Boston, MA 02215" +216728,Flatscreen TV,1,300,06/16/19 10:07,"524 Meadow St, Boston, MA 02215" +216729,Lightning Charging Cable,1,14.95,06/22/19 08:42,"389 Willow St, Atlanta, GA 30301" +216730,20in Monitor,1,109.99,06/02/19 08:01,"529 Lincoln St, New York City, NY 10001" +216731,Apple Airpods Headphones,1,150,06/12/19 09:56,"252 Hill St, Boston, MA 02215" +216732,Lightning Charging Cable,1,14.95,06/19/19 21:25,"442 12th St, Atlanta, GA 30301" +216733,AAA Batteries (4-pack),1,2.99,06/10/19 09:21,"249 Lake St, Portland, OR 97035" +216734,AA Batteries (4-pack),3,3.84,06/05/19 17:41,"175 Jackson St, Boston, MA 02215" +216735,iPhone,1,700,06/30/19 13:08,"759 Meadow St, Los Angeles, CA 90001" +216736,USB-C Charging Cable,1,11.95,06/07/19 10:06,"314 Madison St, Dallas, TX 75001" +216737,Apple Airpods Headphones,1,150,06/06/19 15:32,"125 Jackson St, San Francisco, CA 94016" +216738,Lightning Charging Cable,1,14.95,06/19/19 17:53,"179 Walnut St, Boston, MA 02215" +216739,Bose SoundSport Headphones,1,99.99,06/14/19 18:14,"120 Cedar St, Boston, MA 02215" +216740,Google Phone,1,600,06/19/19 10:53,"582 West St, Seattle, WA 98101" +216741,AA Batteries (4-pack),1,3.84,06/24/19 17:25,"555 Spruce St, Los Angeles, CA 90001" +216742,34in Ultrawide Monitor,1,379.99,06/02/19 22:44,"546 West St, Portland, OR 97035" +216743,USB-C Charging Cable,1,11.95,06/16/19 18:36,"773 Hickory St, Austin, TX 73301" +216744,Wired Headphones,1,11.99,06/04/19 12:26,"988 13th St, San Francisco, CA 94016" +216745,AAA Batteries (4-pack),1,2.99,06/14/19 20:07,"805 5th St, Los Angeles, CA 90001" +216746,AAA Batteries (4-pack),1,2.99,06/08/19 13:42,"470 Jefferson St, Atlanta, GA 30301" +216747,AA Batteries (4-pack),1,3.84,06/27/19 14:43,"907 Pine St, Austin, TX 73301" +216748,Lightning Charging Cable,2,14.95,06/01/19 11:54,"278 Adams St, Los Angeles, CA 90001" +216749,27in FHD Monitor,1,149.99,06/02/19 16:49,"160 Madison St, New York City, NY 10001" +216750,34in Ultrawide Monitor,1,379.99,06/26/19 21:25,"260 7th St, Dallas, TX 75001" +216751,AA Batteries (4-pack),1,3.84,06/22/19 14:46,"692 5th St, San Francisco, CA 94016" +216752,Lightning Charging Cable,1,14.95,06/22/19 17:51,"770 North St, San Francisco, CA 94016" +216753,Google Phone,1,600,06/22/19 11:42,"370 Pine St, Los Angeles, CA 90001" +216754,Bose SoundSport Headphones,1,99.99,06/17/19 13:02,"596 13th St, Dallas, TX 75001" +216755,iPhone,1,700,06/25/19 17:11,"955 6th St, Boston, MA 02215" +216755,Lightning Charging Cable,1,14.95,06/25/19 17:11,"955 6th St, Boston, MA 02215" +216756,27in 4K Gaming Monitor,1,389.99,06/15/19 17:45,"165 Ridge St, New York City, NY 10001" +216757,AA Batteries (4-pack),3,3.84,06/17/19 20:47,"809 Park St, San Francisco, CA 94016" +216758,AAA Batteries (4-pack),1,2.99,06/13/19 13:32,"493 North St, Seattle, WA 98101" +216759,Apple Airpods Headphones,1,150,06/12/19 07:41,"116 Elm St, Boston, MA 02215" +216760,USB-C Charging Cable,1,11.95,06/02/19 18:08,"190 South St, San Francisco, CA 94016" +216761,USB-C Charging Cable,1,11.95,06/04/19 17:13,"221 Lincoln St, Dallas, TX 75001" +216762,AAA Batteries (4-pack),1,2.99,06/04/19 16:07,"229 Walnut St, Boston, MA 02215" +216763,Lightning Charging Cable,2,14.95,06/21/19 10:15,"504 Hill St, San Francisco, CA 94016" +216764,Apple Airpods Headphones,1,150,06/01/19 12:14,"694 Adams St, San Francisco, CA 94016" +216765,AAA Batteries (4-pack),2,2.99,06/28/19 08:03,"736 2nd St, New York City, NY 10001" +216766,USB-C Charging Cable,1,11.95,06/05/19 12:39,"18 Chestnut St, Los Angeles, CA 90001" +216767,Wired Headphones,1,11.99,06/08/19 13:08,"760 Highland St, New York City, NY 10001" +216768,27in FHD Monitor,1,149.99,06/16/19 19:20,"643 Madison St, Boston, MA 02215" +216769,27in FHD Monitor,1,149.99,06/30/19 08:14,"747 Forest St, Seattle, WA 98101" +216770,AAA Batteries (4-pack),1,2.99,06/15/19 14:10,"550 Jefferson St, San Francisco, CA 94016" +216771,ThinkPad Laptop,1,999.99,06/15/19 20:07,"593 Sunset St, San Francisco, CA 94016" +216772,27in FHD Monitor,1,149.99,06/12/19 18:01,"758 Cherry St, Atlanta, GA 30301" +216773,USB-C Charging Cable,1,11.95,06/14/19 13:09,"787 10th St, Los Angeles, CA 90001" +216774,AA Batteries (4-pack),1,3.84,06/26/19 18:46,"349 Main St, Boston, MA 02215" +216775,AAA Batteries (4-pack),1,2.99,06/30/19 15:23,"798 1st St, Los Angeles, CA 90001" +216776,Wired Headphones,1,11.99,06/20/19 13:28,"346 12th St, Los Angeles, CA 90001" +216777,USB-C Charging Cable,1,11.95,06/26/19 11:09,"924 1st St, San Francisco, CA 94016" +216778,Lightning Charging Cable,1,14.95,06/26/19 08:01,"382 14th St, Seattle, WA 98101" +216779,34in Ultrawide Monitor,1,379.99,06/19/19 10:04,"734 10th St, San Francisco, CA 94016" +216780,Bose SoundSport Headphones,1,99.99,06/10/19 19:36,"51 Washington St, New York City, NY 10001" +216781,USB-C Charging Cable,1,11.95,06/23/19 21:51,"821 Lakeview St, San Francisco, CA 94016" +216782,AAA Batteries (4-pack),1,2.99,06/11/19 13:39,"82 West St, Seattle, WA 98101" +216783,Lightning Charging Cable,1,14.95,06/21/19 14:43,"607 Chestnut St, Dallas, TX 75001" +216784,Wired Headphones,1,11.99,06/09/19 09:26,"196 Hickory St, Los Angeles, CA 90001" +216785,USB-C Charging Cable,1,11.95,06/08/19 09:49,"387 Sunset St, Portland, ME 04101" +216786,Wired Headphones,1,11.99,06/05/19 04:10,"476 Pine St, Los Angeles, CA 90001" +216787,Vareebadd Phone,1,400,06/15/19 22:00,"466 Church St, San Francisco, CA 94016" +216788,iPhone,1,700,06/23/19 20:55,"510 Dogwood St, San Francisco, CA 94016" +216789,27in FHD Monitor,1,149.99,06/29/19 19:50,"223 Main St, Boston, MA 02215" +216790,USB-C Charging Cable,1,11.95,06/28/19 18:44,"856 Forest St, Dallas, TX 75001" +216791,Lightning Charging Cable,1,14.95,06/04/19 09:27,"598 Jackson St, San Francisco, CA 94016" +216792,Wired Headphones,1,11.99,06/27/19 14:30,"47 Jackson St, Atlanta, GA 30301" +216793,27in FHD Monitor,1,149.99,06/09/19 14:30,"83 Maple St, New York City, NY 10001" +216794,USB-C Charging Cable,2,11.95,06/03/19 20:02,"619 Forest St, San Francisco, CA 94016" +216795,Bose SoundSport Headphones,1,99.99,06/12/19 12:17,"582 10th St, San Francisco, CA 94016" +216796,Lightning Charging Cable,1,14.95,06/23/19 13:06,"332 11th St, San Francisco, CA 94016" +216797,Macbook Pro Laptop,1,1700,06/15/19 09:21,"191 West St, Seattle, WA 98101" +216798,USB-C Charging Cable,1,11.95,06/13/19 19:01,"260 Center St, Atlanta, GA 30301" +216799,Google Phone,1,600,06/23/19 10:41,"278 Park St, San Francisco, CA 94016" +216800,34in Ultrawide Monitor,1,379.99,06/02/19 17:17,"63 Pine St, San Francisco, CA 94016" +216801,AAA Batteries (4-pack),1,2.99,06/18/19 20:39,"783 Highland St, Seattle, WA 98101" +216802,Lightning Charging Cable,1,14.95,06/27/19 21:34,"706 Hickory St, Seattle, WA 98101" +216803,Bose SoundSport Headphones,1,99.99,06/06/19 19:24,"831 12th St, Atlanta, GA 30301" +216804,AA Batteries (4-pack),1,3.84,06/20/19 17:41,"500 Walnut St, San Francisco, CA 94016" +216805,34in Ultrawide Monitor,1,379.99,06/04/19 08:49,"273 Willow St, Dallas, TX 75001" +216806,AAA Batteries (4-pack),1,2.99,06/24/19 00:12,"554 Park St, Los Angeles, CA 90001" +216807,Apple Airpods Headphones,1,150,06/03/19 13:10,"130 6th St, Seattle, WA 98101" +216808,LG Washing Machine,1,600.0,06/18/19 13:24,"210 Forest St, Dallas, TX 75001" +216809,AA Batteries (4-pack),1,3.84,06/04/19 11:17,"647 1st St, Los Angeles, CA 90001" +216810,Lightning Charging Cable,1,14.95,06/18/19 21:21,"888 Elm St, Portland, OR 97035" +216811,ThinkPad Laptop,1,999.99,06/09/19 15:20,"138 7th St, New York City, NY 10001" +216812,Bose SoundSport Headphones,1,99.99,06/24/19 10:43,"83 Meadow St, Seattle, WA 98101" +216813,Lightning Charging Cable,1,14.95,06/07/19 09:37,"145 South St, Los Angeles, CA 90001" +216814,Apple Airpods Headphones,1,150,06/28/19 19:36,"829 Hill St, Los Angeles, CA 90001" +216815,27in FHD Monitor,1,149.99,06/04/19 22:03,"917 Wilson St, San Francisco, CA 94016" +216816,Lightning Charging Cable,1,14.95,06/25/19 09:33,"427 Lake St, Portland, OR 97035" +216817,Wired Headphones,1,11.99,06/27/19 07:26,"405 Chestnut St, Boston, MA 02215" +216818,Apple Airpods Headphones,1,150,06/21/19 19:46,"316 Church St, Los Angeles, CA 90001" +216819,Macbook Pro Laptop,1,1700,06/05/19 19:25,"390 Spruce St, New York City, NY 10001" +216820,Lightning Charging Cable,1,14.95,06/04/19 00:36,"141 Highland St, Atlanta, GA 30301" +216821,Wired Headphones,1,11.99,06/02/19 16:33,"256 5th St, Seattle, WA 98101" +216822,Lightning Charging Cable,1,14.95,06/11/19 22:42,"761 Meadow St, Boston, MA 02215" +216823,Apple Airpods Headphones,1,150,06/08/19 11:14,"272 Cedar St, New York City, NY 10001" +216824,USB-C Charging Cable,1,11.95,06/02/19 22:13,"415 6th St, Boston, MA 02215" +216825,iPhone,1,700,06/15/19 10:06,"154 12th St, New York City, NY 10001" +216826,Flatscreen TV,1,300,06/11/19 14:27,"924 Willow St, New York City, NY 10001" +216827,USB-C Charging Cable,1,11.95,06/25/19 11:47,"970 6th St, New York City, NY 10001" +216828,34in Ultrawide Monitor,1,379.99,06/03/19 13:55,"348 Sunset St, Portland, OR 97035" +216829,Bose SoundSport Headphones,1,99.99,06/17/19 20:09,"214 12th St, Boston, MA 02215" +216830,Apple Airpods Headphones,1,150,06/27/19 16:40,"643 Cedar St, Los Angeles, CA 90001" +216831,27in FHD Monitor,1,149.99,06/19/19 13:55,"348 Main St, New York City, NY 10001" +216832,Lightning Charging Cable,1,14.95,06/09/19 00:54,"454 Jefferson St, Los Angeles, CA 90001" +216833,LG Washing Machine,1,600.0,06/22/19 18:12,"461 Sunset St, Seattle, WA 98101" +216834,Apple Airpods Headphones,1,150,06/12/19 12:09,"876 Johnson St, New York City, NY 10001" +216835,Google Phone,1,600,06/22/19 13:08,"111 5th St, San Francisco, CA 94016" +216835,USB-C Charging Cable,1,11.95,06/22/19 13:08,"111 5th St, San Francisco, CA 94016" +216835,Wired Headphones,1,11.99,06/22/19 13:08,"111 5th St, San Francisco, CA 94016" +216836,AAA Batteries (4-pack),1,2.99,06/08/19 09:43,"673 River St, New York City, NY 10001" +216837,Wired Headphones,1,11.99,06/19/19 15:50,"515 Spruce St, Boston, MA 02215" +216838,AA Batteries (4-pack),1,3.84,06/06/19 10:50,"268 Spruce St, Boston, MA 02215" +216839,AA Batteries (4-pack),1,3.84,06/10/19 10:16,"665 Madison St, Seattle, WA 98101" +216840,AAA Batteries (4-pack),2,2.99,06/22/19 11:25,"229 10th St, San Francisco, CA 94016" +216841,AA Batteries (4-pack),1,3.84,06/26/19 19:16,"697 Cedar St, Los Angeles, CA 90001" +216842,Apple Airpods Headphones,1,150,06/17/19 19:39,"941 10th St, Los Angeles, CA 90001" +216843,ThinkPad Laptop,1,999.99,06/07/19 18:16,"616 Wilson St, Boston, MA 02215" +216844,iPhone,1,700,06/24/19 19:36,"925 Ridge St, Los Angeles, CA 90001" +216844,Lightning Charging Cable,1,14.95,06/24/19 19:36,"925 Ridge St, Los Angeles, CA 90001" +216845,Wired Headphones,1,11.99,06/30/19 23:30,"143 Madison St, Dallas, TX 75001" +216846,Lightning Charging Cable,1,14.95,06/03/19 18:27,"909 Chestnut St, New York City, NY 10001" +216847,Lightning Charging Cable,1,14.95,07/01/19 01:12,"819 Johnson St, Atlanta, GA 30301" +216848,AA Batteries (4-pack),1,3.84,06/08/19 20:40,"497 Hill St, Los Angeles, CA 90001" +216849,AAA Batteries (4-pack),2,2.99,06/30/19 09:28,"785 Hickory St, Los Angeles, CA 90001" +216850,20in Monitor,1,109.99,06/29/19 21:02,"521 Church St, Portland, OR 97035" +216851,ThinkPad Laptop,1,999.99,06/25/19 11:14,"144 Pine St, San Francisco, CA 94016" +216852,Lightning Charging Cable,1,14.95,06/17/19 16:22,"980 Cedar St, Seattle, WA 98101" +216853,AA Batteries (4-pack),1,3.84,06/09/19 13:48,"608 7th St, Portland, ME 04101" +216854,Bose SoundSport Headphones,1,99.99,06/09/19 09:18,"580 10th St, San Francisco, CA 94016" +216855,AA Batteries (4-pack),1,3.84,06/22/19 16:50,"158 Lincoln St, San Francisco, CA 94016" +216856,20in Monitor,1,109.99,06/27/19 20:22,"926 Madison St, San Francisco, CA 94016" +216857,USB-C Charging Cable,1,11.95,06/11/19 20:05,"356 Lake St, San Francisco, CA 94016" +216858,AA Batteries (4-pack),1,3.84,06/20/19 18:51,"135 Lakeview St, San Francisco, CA 94016" +216859,USB-C Charging Cable,1,11.95,06/17/19 12:38,"159 Wilson St, Portland, OR 97035" +216860,iPhone,1,700,06/19/19 13:58,"162 North St, Atlanta, GA 30301" +216861,Flatscreen TV,1,300,06/13/19 21:53,"105 Maple St, San Francisco, CA 94016" +216862,Lightning Charging Cable,1,14.95,06/01/19 13:00,"87 Sunset St, Los Angeles, CA 90001" +216863,AA Batteries (4-pack),1,3.84,06/03/19 06:36,"763 Cherry St, New York City, NY 10001" +216864,Apple Airpods Headphones,1,150,06/25/19 14:11,"202 Cedar St, Seattle, WA 98101" +216865,Bose SoundSport Headphones,1,99.99,06/11/19 06:56,"912 14th St, Dallas, TX 75001" +216866,USB-C Charging Cable,1,11.95,06/10/19 12:12,"386 Dogwood St, Boston, MA 02215" +216867,AAA Batteries (4-pack),3,2.99,06/16/19 21:12,"635 Dogwood St, San Francisco, CA 94016" +216868,Bose SoundSport Headphones,1,99.99,06/26/19 18:27,"651 13th St, San Francisco, CA 94016" +216869,27in FHD Monitor,1,149.99,06/04/19 22:44,"690 Hickory St, Seattle, WA 98101" +216870,Wired Headphones,1,11.99,06/11/19 18:04,"483 9th St, San Francisco, CA 94016" +216871,Flatscreen TV,1,300,06/22/19 10:44,"703 Washington St, New York City, NY 10001" +216872,AA Batteries (4-pack),1,3.84,06/08/19 16:17,"4 Main St, Seattle, WA 98101" +216873,AA Batteries (4-pack),1,3.84,06/09/19 20:15,"330 Washington St, Portland, OR 97035" +216874,Lightning Charging Cable,1,14.95,06/22/19 11:50,"367 11th St, New York City, NY 10001" +216875,iPhone,1,700,06/13/19 12:01,"980 9th St, San Francisco, CA 94016" +216876,USB-C Charging Cable,1,11.95,06/10/19 20:19,"800 Chestnut St, Seattle, WA 98101" +216877,34in Ultrawide Monitor,1,379.99,06/30/19 19:42,"48 9th St, Dallas, TX 75001" +216878,iPhone,1,700,06/04/19 17:56,"5 14th St, New York City, NY 10001" +216878,Apple Airpods Headphones,1,150,06/04/19 17:56,"5 14th St, New York City, NY 10001" +216879,Macbook Pro Laptop,1,1700,06/03/19 11:55,"547 1st St, Austin, TX 73301" +216880,Apple Airpods Headphones,1,150,06/30/19 10:36,"542 North St, Seattle, WA 98101" +216881,Apple Airpods Headphones,1,150,06/26/19 11:57,"616 River St, Portland, OR 97035" +216882,20in Monitor,1,109.99,06/19/19 16:01,"661 9th St, Boston, MA 02215" +216883,34in Ultrawide Monitor,1,379.99,06/01/19 11:14,"542 Washington St, New York City, NY 10001" +216884,AA Batteries (4-pack),1,3.84,06/13/19 09:51,"801 Pine St, San Francisco, CA 94016" +216885,Bose SoundSport Headphones,1,99.99,06/05/19 08:31,"312 Main St, Boston, MA 02215" +216886,Apple Airpods Headphones,1,150,06/10/19 19:21,"255 Washington St, Boston, MA 02215" +216887,USB-C Charging Cable,1,11.95,06/10/19 21:05,"290 Chestnut St, Portland, OR 97035" +216888,AAA Batteries (4-pack),1,2.99,06/22/19 10:52,"315 Main St, New York City, NY 10001" +216889,Lightning Charging Cable,1,14.95,06/23/19 23:55,"283 Adams St, Boston, MA 02215" +216890,Google Phone,1,600,06/07/19 00:32,"499 6th St, Atlanta, GA 30301" +216891,AAA Batteries (4-pack),1,2.99,06/27/19 00:56,"747 7th St, New York City, NY 10001" +216892,USB-C Charging Cable,1,11.95,06/07/19 19:41,"24 Forest St, Atlanta, GA 30301" +216893,AAA Batteries (4-pack),1,2.99,06/23/19 10:52,"146 Pine St, Seattle, WA 98101" +216894,AA Batteries (4-pack),4,3.84,06/25/19 09:16,"847 Ridge St, San Francisco, CA 94016" +216895,Google Phone,1,600,06/20/19 17:16,"267 10th St, San Francisco, CA 94016" +216895,USB-C Charging Cable,1,11.95,06/20/19 17:16,"267 10th St, San Francisco, CA 94016" +216896,AAA Batteries (4-pack),1,2.99,06/11/19 22:19,"979 1st St, San Francisco, CA 94016" +216897,27in 4K Gaming Monitor,1,389.99,06/19/19 18:29,"278 Lakeview St, San Francisco, CA 94016" +216898,Macbook Pro Laptop,1,1700,06/15/19 11:21,"517 Center St, Boston, MA 02215" +216899,USB-C Charging Cable,1,11.95,06/09/19 12:48,"452 Dogwood St, New York City, NY 10001" +216900,iPhone,1,700,06/27/19 11:47,"952 5th St, Portland, OR 97035" +216901,Macbook Pro Laptop,1,1700,06/21/19 12:11,"214 Forest St, Los Angeles, CA 90001" +216902,AAA Batteries (4-pack),2,2.99,06/03/19 18:07,"987 Hickory St, Boston, MA 02215" +216903,AA Batteries (4-pack),2,3.84,06/28/19 21:20,"660 Pine St, Dallas, TX 75001" +216904,Apple Airpods Headphones,1,150,06/24/19 15:19,"104 Chestnut St, Atlanta, GA 30301" +216905,USB-C Charging Cable,1,11.95,06/20/19 06:32,"969 7th St, Atlanta, GA 30301" +216906,AA Batteries (4-pack),1,3.84,06/08/19 08:51,"416 9th St, New York City, NY 10001" +216907,Lightning Charging Cable,1,14.95,06/27/19 13:44,"642 Forest St, Atlanta, GA 30301" +216908,Lightning Charging Cable,1,14.95,06/13/19 11:32,"36 Main St, Los Angeles, CA 90001" +216909,Bose SoundSport Headphones,1,99.99,06/18/19 08:02,"526 Meadow St, Los Angeles, CA 90001" +216910,Bose SoundSport Headphones,1,99.99,06/10/19 11:05,"82 Forest St, San Francisco, CA 94016" +216911,27in 4K Gaming Monitor,1,389.99,06/14/19 15:33,"485 6th St, San Francisco, CA 94016" +216912,AAA Batteries (4-pack),1,2.99,06/13/19 11:41,"967 12th St, Los Angeles, CA 90001" +216913,Lightning Charging Cable,1,14.95,06/14/19 15:42,"36 Cedar St, Seattle, WA 98101" +216914,Apple Airpods Headphones,1,150,06/25/19 06:20,"721 South St, Los Angeles, CA 90001" +216915,20in Monitor,1,109.99,06/03/19 14:08,"20 Elm St, New York City, NY 10001" +216916,Flatscreen TV,1,300,06/28/19 17:27,"931 Wilson St, New York City, NY 10001" +216917,AAA Batteries (4-pack),1,2.99,06/01/19 17:45,"732 Pine St, Los Angeles, CA 90001" +216918,AAA Batteries (4-pack),1,2.99,06/03/19 10:57,"375 Chestnut St, Los Angeles, CA 90001" +216919,Lightning Charging Cable,1,14.95,06/15/19 16:12,"943 7th St, Los Angeles, CA 90001" +216920,Lightning Charging Cable,1,14.95,06/07/19 16:40,"677 Ridge St, Boston, MA 02215" +216921,34in Ultrawide Monitor,1,379.99,06/21/19 16:52,"567 4th St, San Francisco, CA 94016" +216922,LG Dryer,1,600.0,06/10/19 04:59,"416 Wilson St, Los Angeles, CA 90001" +216923,Macbook Pro Laptop,1,1700,06/17/19 06:20,"31 Spruce St, San Francisco, CA 94016" +216924,27in FHD Monitor,1,149.99,06/11/19 21:35,"788 Forest St, San Francisco, CA 94016" +216925,Bose SoundSport Headphones,1,99.99,06/10/19 21:38,"377 Cedar St, Seattle, WA 98101" +216926,AA Batteries (4-pack),1,3.84,06/03/19 17:58,"956 River St, San Francisco, CA 94016" +216927,USB-C Charging Cable,1,11.95,06/17/19 07:57,"904 Center St, San Francisco, CA 94016" +216928,AA Batteries (4-pack),1,3.84,06/21/19 15:45,"509 Church St, San Francisco, CA 94016" +216929,Lightning Charging Cable,1,14.95,06/29/19 14:49,"125 2nd St, Atlanta, GA 30301" +216930,AA Batteries (4-pack),1,3.84,06/21/19 10:54,"383 North St, Los Angeles, CA 90001" +216931,Wired Headphones,1,11.99,06/20/19 02:19,"580 West St, New York City, NY 10001" +216932,Apple Airpods Headphones,1,150,06/16/19 08:31,"183 Lincoln St, San Francisco, CA 94016" +216933,iPhone,1,700,06/05/19 09:38,"997 West St, Boston, MA 02215" +216934,AA Batteries (4-pack),1,3.84,06/25/19 12:45,"894 Main St, Atlanta, GA 30301" +216935,20in Monitor,1,109.99,06/25/19 17:08,"854 9th St, San Francisco, CA 94016" +216936,34in Ultrawide Monitor,1,379.99,06/06/19 21:59,"454 Main St, Dallas, TX 75001" +216937,Google Phone,1,600,06/15/19 20:28,"658 Hill St, Seattle, WA 98101" +216938,Lightning Charging Cable,1,14.95,06/14/19 12:28,"101 13th St, San Francisco, CA 94016" +216939,AAA Batteries (4-pack),3,2.99,06/16/19 17:55,"44 7th St, New York City, NY 10001" +216940,USB-C Charging Cable,2,11.95,06/14/19 21:42,"664 Main St, Atlanta, GA 30301" +216941,AA Batteries (4-pack),1,3.84,06/25/19 17:18,"388 Cedar St, New York City, NY 10001" +216942,iPhone,1,700,06/29/19 14:02,"217 South St, San Francisco, CA 94016" +216943,AA Batteries (4-pack),1,3.84,06/22/19 19:32,"341 12th St, Dallas, TX 75001" +216944,AA Batteries (4-pack),1,3.84,06/14/19 19:42,"185 South St, Boston, MA 02215" +216945,Lightning Charging Cable,1,14.95,06/12/19 16:50,"380 South St, Atlanta, GA 30301" +216946,AA Batteries (4-pack),2,3.84,06/28/19 21:43,"889 6th St, San Francisco, CA 94016" +216947,Apple Airpods Headphones,1,150,06/15/19 12:53,"228 Walnut St, Los Angeles, CA 90001" +216947,Apple Airpods Headphones,1,150,06/15/19 12:53,"228 Walnut St, Los Angeles, CA 90001" +216948,Lightning Charging Cable,1,14.95,06/20/19 17:00,"629 Lakeview St, San Francisco, CA 94016" +216949,AAA Batteries (4-pack),1,2.99,06/29/19 08:55,"629 Forest St, New York City, NY 10001" +216950,AA Batteries (4-pack),1,3.84,06/17/19 12:41,"953 2nd St, Atlanta, GA 30301" +216951,27in FHD Monitor,1,149.99,06/25/19 17:13,"230 Dogwood St, San Francisco, CA 94016" +216952,Vareebadd Phone,1,400,06/06/19 12:30,"5 Johnson St, Seattle, WA 98101" +216953,USB-C Charging Cable,1,11.95,06/14/19 20:48,"383 Dogwood St, Boston, MA 02215" +216954,Bose SoundSport Headphones,1,99.99,06/24/19 15:21,"835 12th St, New York City, NY 10001" +216955,Apple Airpods Headphones,1,150,06/18/19 07:38,"881 Spruce St, Los Angeles, CA 90001" +216956,Google Phone,1,600,06/17/19 13:28,"501 13th St, Dallas, TX 75001" +216957,27in FHD Monitor,1,149.99,06/27/19 11:21,"605 River St, Seattle, WA 98101" +216958,Apple Airpods Headphones,1,150,06/06/19 17:45,"755 4th St, San Francisco, CA 94016" +216959,AAA Batteries (4-pack),1,2.99,06/20/19 16:16,"288 12th St, Dallas, TX 75001" +216960,Lightning Charging Cable,1,14.95,06/08/19 17:34,"915 4th St, Portland, OR 97035" +216961,Apple Airpods Headphones,1,150,06/15/19 19:09,"963 Chestnut St, Boston, MA 02215" +216962,USB-C Charging Cable,1,11.95,06/10/19 11:56,"232 Chestnut St, Austin, TX 73301" +216963,Bose SoundSport Headphones,1,99.99,06/22/19 12:32,"671 Church St, Boston, MA 02215" +216964,AAA Batteries (4-pack),1,2.99,06/16/19 16:35,"275 Meadow St, San Francisco, CA 94016" +216965,AAA Batteries (4-pack),1,2.99,06/14/19 10:52,"538 Meadow St, New York City, NY 10001" +216966,27in FHD Monitor,1,149.99,06/13/19 19:39,"879 Spruce St, New York City, NY 10001" +216967,AAA Batteries (4-pack),1,2.99,06/04/19 19:08,"729 Center St, Dallas, TX 75001" +216968,Flatscreen TV,1,300,06/22/19 07:56,"719 Chestnut St, Boston, MA 02215" +216969,Lightning Charging Cable,1,14.95,06/01/19 10:30,"434 River St, Portland, OR 97035" +216970,27in FHD Monitor,1,149.99,06/18/19 23:07,"184 Jackson St, New York City, NY 10001" +216971,AA Batteries (4-pack),1,3.84,06/18/19 23:29,"688 Forest St, Seattle, WA 98101" +216972,AAA Batteries (4-pack),2,2.99,06/28/19 08:27,"610 River St, New York City, NY 10001" +216973,Google Phone,1,600,06/10/19 21:36,"741 Spruce St, San Francisco, CA 94016" +216973,USB-C Charging Cable,1,11.95,06/10/19 21:36,"741 Spruce St, San Francisco, CA 94016" +,,,,, +216974,Wired Headphones,1,11.99,06/29/19 15:47,"211 Madison St, Boston, MA 02215" +216975,AAA Batteries (4-pack),5,2.99,06/10/19 09:03,"458 Cedar St, Boston, MA 02215" +216976,Vareebadd Phone,1,400,06/10/19 16:48,"237 Adams St, San Francisco, CA 94016" +216976,Wired Headphones,1,11.99,06/10/19 16:48,"237 Adams St, San Francisco, CA 94016" +216977,AA Batteries (4-pack),1,3.84,06/14/19 23:01,"723 12th St, San Francisco, CA 94016" +216978,ThinkPad Laptop,1,999.99,06/10/19 08:27,"984 12th St, San Francisco, CA 94016" +216979,Wired Headphones,1,11.99,06/23/19 14:12,"423 7th St, Los Angeles, CA 90001" +216980,Lightning Charging Cable,1,14.95,06/23/19 05:24,"606 West St, New York City, NY 10001" +216981,USB-C Charging Cable,1,11.95,06/08/19 19:53,"363 South St, Seattle, WA 98101" +216982,Apple Airpods Headphones,1,150,06/09/19 14:48,"614 9th St, Los Angeles, CA 90001" +216983,34in Ultrawide Monitor,1,379.99,06/26/19 07:12,"91 Hickory St, New York City, NY 10001" +216984,USB-C Charging Cable,1,11.95,06/04/19 14:30,"449 Madison St, New York City, NY 10001" +216985,20in Monitor,1,109.99,06/27/19 13:20,"138 7th St, New York City, NY 10001" +216986,AA Batteries (4-pack),2,3.84,06/06/19 10:19,"627 Maple St, Atlanta, GA 30301" +216987,Apple Airpods Headphones,1,150,06/14/19 15:50,"737 Johnson St, Austin, TX 73301" +216988,Bose SoundSport Headphones,1,99.99,06/17/19 04:45,"38 Center St, San Francisco, CA 94016" +216989,USB-C Charging Cable,1,11.95,06/08/19 15:18,"809 Cherry St, New York City, NY 10001" +216990,Apple Airpods Headphones,1,150,06/25/19 20:32,"22 North St, Atlanta, GA 30301" +216991,Bose SoundSport Headphones,1,99.99,06/06/19 14:23,"358 Wilson St, Los Angeles, CA 90001" +216992,AAA Batteries (4-pack),1,2.99,06/08/19 09:47,"333 Spruce St, Portland, ME 04101" +216993,USB-C Charging Cable,1,11.95,06/15/19 09:50,"671 River St, Seattle, WA 98101" +216994,Wired Headphones,2,11.99,06/21/19 16:52,"266 Jackson St, Seattle, WA 98101" +216995,Bose SoundSport Headphones,1,99.99,06/15/19 18:11,"329 2nd St, San Francisco, CA 94016" +216996,USB-C Charging Cable,1,11.95,06/14/19 16:38,"766 13th St, Los Angeles, CA 90001" +216997,Lightning Charging Cable,1,14.95,06/14/19 11:44,"79 Dogwood St, Portland, ME 04101" +216998,Flatscreen TV,1,300,06/25/19 15:09,"766 10th St, San Francisco, CA 94016" +216999,27in 4K Gaming Monitor,1,389.99,06/27/19 11:39,"497 Willow St, New York City, NY 10001" +217000,Lightning Charging Cable,1,14.95,06/10/19 17:42,"548 1st St, New York City, NY 10001" +217001,Lightning Charging Cable,1,14.95,06/03/19 12:51,"39 Johnson St, New York City, NY 10001" +217002,Wired Headphones,1,11.99,06/12/19 16:43,"206 North St, Los Angeles, CA 90001" +217003,AAA Batteries (4-pack),1,2.99,06/16/19 10:32,"56 11th St, New York City, NY 10001" +217004,Apple Airpods Headphones,1,150,06/03/19 09:41,"939 Chestnut St, Dallas, TX 75001" +217005,Lightning Charging Cable,1,14.95,06/27/19 08:12,"920 12th St, San Francisco, CA 94016" +217006,34in Ultrawide Monitor,1,379.99,06/06/19 07:58,"984 Jefferson St, Seattle, WA 98101" +217007,ThinkPad Laptop,1,999.99,06/11/19 17:10,"689 West St, Boston, MA 02215" +217008,USB-C Charging Cable,1,11.95,06/01/19 14:35,"628 Lake St, New York City, NY 10001" +217009,Lightning Charging Cable,1,14.95,06/25/19 17:42,"967 Lake St, San Francisco, CA 94016" +217010,AAA Batteries (4-pack),6,2.99,06/10/19 18:10,"161 Washington St, San Francisco, CA 94016" +217011,AA Batteries (4-pack),1,3.84,06/14/19 16:37,"297 9th St, San Francisco, CA 94016" +217011,20in Monitor,1,109.99,06/14/19 16:37,"297 9th St, San Francisco, CA 94016" +217012,AA Batteries (4-pack),1,3.84,06/25/19 12:04,"508 Elm St, San Francisco, CA 94016" +217013,USB-C Charging Cable,1,11.95,06/26/19 14:09,"588 Walnut St, Atlanta, GA 30301" +217013,AA Batteries (4-pack),1,3.84,06/26/19 14:09,"588 Walnut St, Atlanta, GA 30301" +217014,Lightning Charging Cable,2,14.95,06/17/19 14:42,"367 Adams St, Dallas, TX 75001" +217015,Bose SoundSport Headphones,1,99.99,06/21/19 11:59,"98 Cherry St, Los Angeles, CA 90001" +217016,AAA Batteries (4-pack),2,2.99,06/23/19 13:05,"807 9th St, Seattle, WA 98101" +217017,Apple Airpods Headphones,1,150,06/09/19 07:01,"125 7th St, Atlanta, GA 30301" +217018,iPhone,1,700,06/09/19 13:51,"652 Elm St, San Francisco, CA 94016" +217019,Lightning Charging Cable,1,14.95,06/02/19 16:15,"607 9th St, San Francisco, CA 94016" +217020,LG Dryer,1,600.0,06/20/19 15:13,"941 5th St, New York City, NY 10001" +217021,Apple Airpods Headphones,1,150,06/01/19 18:45,"668 Cedar St, Atlanta, GA 30301" +217022,AA Batteries (4-pack),1,3.84,06/23/19 16:09,"92 Johnson St, New York City, NY 10001" +217023,Wired Headphones,1,11.99,06/17/19 21:54,"899 Lincoln St, Los Angeles, CA 90001" +217024,ThinkPad Laptop,1,999.99,06/08/19 09:49,"424 Lakeview St, Atlanta, GA 30301" +217025,Macbook Pro Laptop,1,1700,06/02/19 12:53,"866 12th St, Atlanta, GA 30301" +217026,AA Batteries (4-pack),1,3.84,06/19/19 14:16,"343 Hill St, Boston, MA 02215" +217027,Wired Headphones,1,11.99,06/30/19 03:55,"560 Lakeview St, San Francisco, CA 94016" +217028,AA Batteries (4-pack),1,3.84,06/09/19 20:42,"756 Washington St, San Francisco, CA 94016" +217029,iPhone,1,700,06/11/19 12:30,"6 Hickory St, San Francisco, CA 94016" +217029,Lightning Charging Cable,1,14.95,06/11/19 12:30,"6 Hickory St, San Francisco, CA 94016" +217030,ThinkPad Laptop,1,999.99,06/18/19 08:07,"957 West St, San Francisco, CA 94016" +217031,USB-C Charging Cable,1,11.95,06/30/19 00:35,"136 West St, New York City, NY 10001" +217032,Google Phone,1,600,06/25/19 00:48,"885 Lakeview St, Los Angeles, CA 90001" +217033,Bose SoundSport Headphones,1,99.99,06/17/19 15:11,"339 Pine St, Los Angeles, CA 90001" +217034,AAA Batteries (4-pack),1,2.99,06/02/19 09:51,"575 Jackson St, Boston, MA 02215" +217035,Lightning Charging Cable,1,14.95,06/16/19 09:57,"991 6th St, San Francisco, CA 94016" +217036,Lightning Charging Cable,1,14.95,06/12/19 11:51,"908 9th St, San Francisco, CA 94016" +217037,Bose SoundSport Headphones,1,99.99,06/06/19 19:17,"594 Chestnut St, Boston, MA 02215" +217038,Lightning Charging Cable,1,14.95,06/04/19 11:40,"799 Main St, Atlanta, GA 30301" +217039,AA Batteries (4-pack),1,3.84,06/28/19 16:44,"395 9th St, San Francisco, CA 94016" +217040,Bose SoundSport Headphones,1,99.99,06/20/19 09:51,"746 West St, Portland, ME 04101" +217041,AA Batteries (4-pack),1,3.84,06/11/19 22:27,"55 Ridge St, New York City, NY 10001" +217042,AAA Batteries (4-pack),1,2.99,06/13/19 20:29,"640 Forest St, San Francisco, CA 94016" +217043,20in Monitor,1,109.99,06/22/19 23:43,"850 Lincoln St, Los Angeles, CA 90001" +217044,USB-C Charging Cable,1,11.95,06/24/19 14:34,"154 Ridge St, Dallas, TX 75001" +217045,AAA Batteries (4-pack),4,2.99,06/15/19 13:13,"943 10th St, San Francisco, CA 94016" +217046,AAA Batteries (4-pack),2,2.99,06/30/19 19:11,"655 2nd St, San Francisco, CA 94016" +217047,Bose SoundSport Headphones,1,99.99,06/24/19 17:27,"630 11th St, Dallas, TX 75001" +217048,Bose SoundSport Headphones,1,99.99,06/16/19 15:37,"296 13th St, Los Angeles, CA 90001" +217049,34in Ultrawide Monitor,1,379.99,06/14/19 11:10,"462 Adams St, Los Angeles, CA 90001" +217050,AA Batteries (4-pack),1,3.84,06/12/19 18:25,"498 Willow St, Los Angeles, CA 90001" +217051,ThinkPad Laptop,1,999.99,06/01/19 17:11,"386 12th St, Dallas, TX 75001" +217052,USB-C Charging Cable,1,11.95,06/19/19 19:15,"123 Cedar St, Portland, ME 04101" +217053,Bose SoundSport Headphones,1,99.99,06/23/19 15:43,"879 South St, Portland, OR 97035" +217054,Apple Airpods Headphones,1,150,06/26/19 11:56,"918 5th St, Los Angeles, CA 90001" +217055,Flatscreen TV,1,300,06/15/19 08:10,"111 South St, New York City, NY 10001" +217056,Lightning Charging Cable,1,14.95,06/25/19 15:14,"124 2nd St, Dallas, TX 75001" +217057,USB-C Charging Cable,1,11.95,06/10/19 09:25,"308 Lake St, San Francisco, CA 94016" +217058,AAA Batteries (4-pack),1,2.99,06/17/19 13:11,"691 7th St, San Francisco, CA 94016" +217059,AA Batteries (4-pack),1,3.84,06/02/19 16:00,"302 Lakeview St, Los Angeles, CA 90001" +217060,AA Batteries (4-pack),1,3.84,06/06/19 12:22,"187 5th St, San Francisco, CA 94016" +217061,AAA Batteries (4-pack),1,2.99,06/15/19 16:42,"165 5th St, Austin, TX 73301" +217062,Apple Airpods Headphones,1,150,06/03/19 22:35,"657 Lincoln St, Austin, TX 73301" +217063,Flatscreen TV,1,300,06/19/19 13:14,"137 Adams St, Boston, MA 02215" +217064,Lightning Charging Cable,1,14.95,06/05/19 18:22,"995 11th St, Boston, MA 02215" +217065,iPhone,1,700,06/16/19 19:03,"901 7th St, Los Angeles, CA 90001" +217066,Bose SoundSport Headphones,1,99.99,06/22/19 00:20,"499 Wilson St, Los Angeles, CA 90001" +217067,34in Ultrawide Monitor,1,379.99,06/27/19 21:36,"120 River St, Boston, MA 02215" +217068,Bose SoundSport Headphones,1,99.99,06/02/19 13:33,"140 Madison St, New York City, NY 10001" +217069,iPhone,1,700,06/09/19 10:45,"27 Spruce St, San Francisco, CA 94016" +217070,Lightning Charging Cable,1,14.95,06/02/19 23:34,"110 Maple St, San Francisco, CA 94016" +217071,AAA Batteries (4-pack),2,2.99,06/02/19 09:12,"32 12th St, Los Angeles, CA 90001" +217072,Bose SoundSport Headphones,1,99.99,06/25/19 13:45,"459 Cedar St, Boston, MA 02215" +217073,Lightning Charging Cable,1,14.95,06/06/19 14:25,"454 9th St, Portland, OR 97035" +217074,Lightning Charging Cable,1,14.95,06/09/19 12:22,"8 14th St, San Francisco, CA 94016" +217075,Lightning Charging Cable,1,14.95,06/02/19 00:12,"896 12th St, San Francisco, CA 94016" +217076,AA Batteries (4-pack),1,3.84,06/11/19 21:34,"346 13th St, Austin, TX 73301" +217077,USB-C Charging Cable,1,11.95,06/02/19 12:13,"370 Walnut St, San Francisco, CA 94016" +217078,Bose SoundSport Headphones,1,99.99,06/23/19 10:28,"946 Main St, Los Angeles, CA 90001" +217079,USB-C Charging Cable,1,11.95,06/26/19 15:10,"293 13th St, Austin, TX 73301" +217080,Macbook Pro Laptop,1,1700,06/24/19 02:34,"574 West St, Boston, MA 02215" +217081,Google Phone,1,600,06/28/19 13:37,"107 Maple St, New York City, NY 10001" +217082,AAA Batteries (4-pack),1,2.99,06/06/19 07:06,"778 Madison St, Los Angeles, CA 90001" +217083,iPhone,1,700,06/17/19 12:45,"616 9th St, New York City, NY 10001" +217084,Wired Headphones,1,11.99,06/07/19 08:34,"868 North St, Los Angeles, CA 90001" +217085,AA Batteries (4-pack),1,3.84,06/01/19 14:09,"289 6th St, Seattle, WA 98101" +217086,Apple Airpods Headphones,1,150,06/01/19 14:31,"106 River St, San Francisco, CA 94016" +217087,Wired Headphones,1,11.99,06/02/19 12:05,"309 Pine St, Dallas, TX 75001" +217088,Google Phone,1,600,06/03/19 16:14,"695 North St, San Francisco, CA 94016" +217088,Bose SoundSport Headphones,1,99.99,06/03/19 16:14,"695 North St, San Francisco, CA 94016" +217089,AA Batteries (4-pack),1,3.84,06/16/19 10:19,"155 Jefferson St, Atlanta, GA 30301" +217090,AA Batteries (4-pack),1,3.84,06/17/19 10:05,"976 North St, Portland, ME 04101" +217091,Lightning Charging Cable,1,14.95,06/21/19 15:11,"257 Park St, Atlanta, GA 30301" +217092,Wired Headphones,1,11.99,06/27/19 09:41,"212 Hill St, Seattle, WA 98101" +217093,Wired Headphones,1,11.99,06/08/19 00:26,"631 10th St, San Francisco, CA 94016" +217094,ThinkPad Laptop,1,999.99,06/16/19 19:24,"231 Dogwood St, Los Angeles, CA 90001" +217095,USB-C Charging Cable,1,11.95,06/27/19 01:10,"1 Dogwood St, Austin, TX 73301" +217096,Lightning Charging Cable,1,14.95,06/01/19 19:52,"316 11th St, New York City, NY 10001" +217097,20in Monitor,1,109.99,06/21/19 00:30,"74 8th St, Los Angeles, CA 90001" +217098,27in 4K Gaming Monitor,1,389.99,06/06/19 17:23,"218 4th St, San Francisco, CA 94016" +217099,Apple Airpods Headphones,1,150,06/14/19 13:10,"108 5th St, San Francisco, CA 94016" +217100,Bose SoundSport Headphones,1,99.99,06/19/19 23:35,"210 6th St, San Francisco, CA 94016" +217101,iPhone,1,700,06/07/19 13:08,"459 13th St, New York City, NY 10001" +217102,Lightning Charging Cable,1,14.95,06/08/19 13:38,"281 Center St, San Francisco, CA 94016" +217103,27in FHD Monitor,1,149.99,06/07/19 07:02,"844 1st St, Portland, OR 97035" +217104,Wired Headphones,1,11.99,06/24/19 00:45,"934 Washington St, Dallas, TX 75001" +217105,AAA Batteries (4-pack),2,2.99,06/30/19 20:25,"399 Jackson St, New York City, NY 10001" +217106,USB-C Charging Cable,1,11.95,06/06/19 13:26,"533 Pine St, Los Angeles, CA 90001" +217107,Lightning Charging Cable,1,14.95,06/13/19 22:19,"291 11th St, Seattle, WA 98101" +217108,AAA Batteries (4-pack),2,2.99,06/27/19 18:44,"535 Cedar St, New York City, NY 10001" +217109,34in Ultrawide Monitor,1,379.99,06/05/19 05:58,"209 5th St, Dallas, TX 75001" +217110,AAA Batteries (4-pack),2,2.99,06/24/19 09:43,"11 6th St, San Francisco, CA 94016" +217111,AA Batteries (4-pack),1,3.84,06/02/19 18:02,"437 Forest St, Boston, MA 02215" +217112,AA Batteries (4-pack),1,3.84,06/17/19 13:46,"856 Chestnut St, San Francisco, CA 94016" +217113,USB-C Charging Cable,1,11.95,06/09/19 14:57,"189 Elm St, New York City, NY 10001" +217114,Lightning Charging Cable,2,14.95,06/19/19 17:15,"248 Adams St, Los Angeles, CA 90001" +217115,Apple Airpods Headphones,1,150,06/16/19 18:22,"516 Park St, New York City, NY 10001" +217116,Wired Headphones,1,11.99,06/25/19 09:32,"121 South St, San Francisco, CA 94016" +217117,20in Monitor,1,109.99,06/08/19 18:24,"394 Lakeview St, San Francisco, CA 94016" +217118,Macbook Pro Laptop,1,1700,06/12/19 12:26,"817 Main St, San Francisco, CA 94016" +217119,Bose SoundSport Headphones,1,99.99,06/21/19 13:08,"1 Ridge St, Los Angeles, CA 90001" +217120,Lightning Charging Cable,1,14.95,06/30/19 19:16,"901 South St, San Francisco, CA 94016" +217121,AA Batteries (4-pack),1,3.84,06/29/19 12:39,"162 Lake St, Austin, TX 73301" +217122,Lightning Charging Cable,1,14.95,06/15/19 06:32,"600 10th St, Los Angeles, CA 90001" +217123,Apple Airpods Headphones,1,150,06/02/19 16:53,"967 Park St, Boston, MA 02215" +217124,AAA Batteries (4-pack),1,2.99,06/09/19 16:44,"305 8th St, New York City, NY 10001" +217125,iPhone,1,700,06/09/19 15:14,"436 Cherry St, Atlanta, GA 30301" +217126,27in 4K Gaming Monitor,1,389.99,06/09/19 16:36,"841 Adams St, Boston, MA 02215" +217127,Wired Headphones,1,11.99,06/22/19 16:06,"821 Hickory St, Atlanta, GA 30301" +217128,AA Batteries (4-pack),1,3.84,06/03/19 11:00,"765 Meadow St, New York City, NY 10001" +217129,AA Batteries (4-pack),1,3.84,06/13/19 00:40,"82 River St, San Francisco, CA 94016" +217130,Wired Headphones,1,11.99,06/07/19 16:11,"442 11th St, Seattle, WA 98101" +217131,Apple Airpods Headphones,1,150,06/13/19 12:10,"192 7th St, Seattle, WA 98101" +217132,iPhone,1,700,06/09/19 19:57,"431 West St, Boston, MA 02215" +217133,20in Monitor,1,109.99,06/25/19 14:13,"41 Lakeview St, New York City, NY 10001" +217134,iPhone,1,700,06/04/19 19:20,"345 Willow St, Seattle, WA 98101" +217134,Lightning Charging Cable,1,14.95,06/04/19 19:20,"345 Willow St, Seattle, WA 98101" +217135,AA Batteries (4-pack),1,3.84,06/14/19 19:36,"623 Elm St, Austin, TX 73301" +217136,Lightning Charging Cable,1,14.95,06/20/19 09:49,"67 Cedar St, Atlanta, GA 30301" +217137,AAA Batteries (4-pack),1,2.99,06/22/19 10:07,"689 4th St, New York City, NY 10001" +217138,Flatscreen TV,1,300,06/13/19 15:51,"382 Jefferson St, San Francisco, CA 94016" +217139,34in Ultrawide Monitor,1,379.99,06/30/19 11:23,"458 2nd St, Seattle, WA 98101" +217140,USB-C Charging Cable,1,11.95,06/30/19 19:22,"118 Highland St, Atlanta, GA 30301" +217141,Vareebadd Phone,1,400,06/09/19 13:02,"468 Cedar St, San Francisco, CA 94016" +217142,Wired Headphones,1,11.99,06/27/19 15:07,"559 Willow St, Boston, MA 02215" +217143,AAA Batteries (4-pack),1,2.99,06/30/19 20:39,"608 South St, Austin, TX 73301" +217144,Wired Headphones,1,11.99,06/08/19 11:09,"835 Cherry St, San Francisco, CA 94016" +217145,Lightning Charging Cable,1,14.95,06/07/19 17:09,"859 Lake St, Dallas, TX 75001" +217146,20in Monitor,1,109.99,06/03/19 21:10,"149 Adams St, Boston, MA 02215" +217147,27in FHD Monitor,1,149.99,06/24/19 10:54,"858 Maple St, New York City, NY 10001" +217148,Apple Airpods Headphones,1,150,06/24/19 07:22,"963 2nd St, New York City, NY 10001" +217149,Lightning Charging Cable,1,14.95,06/02/19 16:48,"927 11th St, Seattle, WA 98101" +217150,AA Batteries (4-pack),1,3.84,06/24/19 10:55,"812 Wilson St, San Francisco, CA 94016" +217151,20in Monitor,1,109.99,06/06/19 18:20,"280 12th St, San Francisco, CA 94016" +217152,27in FHD Monitor,1,149.99,06/08/19 15:53,"767 Washington St, San Francisco, CA 94016" +217153,AA Batteries (4-pack),1,3.84,06/23/19 16:55,"687 Madison St, San Francisco, CA 94016" +217154,USB-C Charging Cable,1,11.95,06/10/19 02:29,"298 Dogwood St, Dallas, TX 75001" +217155,27in FHD Monitor,1,149.99,06/06/19 23:04,"162 Forest St, New York City, NY 10001" +217156,27in FHD Monitor,1,149.99,06/11/19 18:12,"269 Sunset St, San Francisco, CA 94016" +217157,Lightning Charging Cable,1,14.95,06/25/19 15:09,"565 Cherry St, Los Angeles, CA 90001" +217158,Google Phone,1,600,06/27/19 16:13,"832 11th St, Boston, MA 02215" +217159,Apple Airpods Headphones,1,150,06/11/19 15:52,"603 Ridge St, Austin, TX 73301" +217160,Google Phone,1,600,06/04/19 22:18,"785 Spruce St, Austin, TX 73301" +217161,34in Ultrawide Monitor,1,379.99,06/21/19 17:23,"176 14th St, Los Angeles, CA 90001" +217162,USB-C Charging Cable,1,11.95,06/01/19 11:32,"629 Madison St, New York City, NY 10001" +217163,Bose SoundSport Headphones,1,99.99,06/24/19 18:27,"4 7th St, New York City, NY 10001" +217164,iPhone,1,700,06/21/19 09:54,"737 Willow St, Austin, TX 73301" +217165,Bose SoundSport Headphones,1,99.99,06/24/19 10:24,"571 14th St, Dallas, TX 75001" +217166,Wired Headphones,1,11.99,06/04/19 20:15,"538 Johnson St, Austin, TX 73301" +217167,AA Batteries (4-pack),1,3.84,06/07/19 10:18,"776 7th St, Boston, MA 02215" +217168,AA Batteries (4-pack),1,3.84,06/15/19 03:50,"717 14th St, Atlanta, GA 30301" +217169,USB-C Charging Cable,1,11.95,06/15/19 22:59,"759 Sunset St, New York City, NY 10001" +217170,AA Batteries (4-pack),1,3.84,06/02/19 06:11,"497 Cherry St, Los Angeles, CA 90001" +217171,Lightning Charging Cable,1,14.95,06/08/19 14:13,"418 Cherry St, Portland, OR 97035" +217172,Wired Headphones,1,11.99,06/30/19 16:08,"370 Lincoln St, San Francisco, CA 94016" +217173,AA Batteries (4-pack),1,3.84,06/25/19 12:07,"101 Cherry St, Portland, OR 97035" +217174,ThinkPad Laptop,1,999.99,06/07/19 13:24,"478 Church St, Los Angeles, CA 90001" +217175,Wired Headphones,1,11.99,06/19/19 07:12,"12 14th St, Los Angeles, CA 90001" +217176,AA Batteries (4-pack),2,3.84,06/03/19 08:49,"425 Ridge St, Atlanta, GA 30301" +217177,Lightning Charging Cable,1,14.95,06/13/19 17:51,"292 Washington St, Portland, OR 97035" +217178,AA Batteries (4-pack),1,3.84,06/10/19 20:45,"389 Johnson St, San Francisco, CA 94016" +217179,Google Phone,1,600,06/03/19 16:05,"607 Washington St, Boston, MA 02215" +217180,Apple Airpods Headphones,1,150,06/12/19 19:10,"148 Wilson St, Seattle, WA 98101" +217181,Google Phone,1,600,06/10/19 21:03,"407 South St, Boston, MA 02215" +217182,AAA Batteries (4-pack),1,2.99,06/01/19 10:54,"432 10th St, Boston, MA 02215" +217183,ThinkPad Laptop,1,999.99,06/27/19 23:19,"635 Church St, Portland, OR 97035" +217184,AAA Batteries (4-pack),2,2.99,06/04/19 16:37,"841 9th St, San Francisco, CA 94016" +217185,AAA Batteries (4-pack),1,2.99,06/17/19 07:47,"413 Jackson St, Los Angeles, CA 90001" +217186,20in Monitor,1,109.99,06/18/19 09:45,"72 Highland St, Austin, TX 73301" +217187,Lightning Charging Cable,1,14.95,06/20/19 19:05,"200 Meadow St, Dallas, TX 75001" +217188,Bose SoundSport Headphones,1,99.99,06/04/19 13:54,"742 Washington St, New York City, NY 10001" +217189,Wired Headphones,1,11.99,06/19/19 21:17,"266 Hickory St, San Francisco, CA 94016" +217190,AAA Batteries (4-pack),1,2.99,06/10/19 15:56,"654 Washington St, Seattle, WA 98101" +217191,34in Ultrawide Monitor,1,379.99,06/04/19 16:23,"937 Lakeview St, New York City, NY 10001" +217192,USB-C Charging Cable,1,11.95,06/21/19 20:59,"93 Elm St, New York City, NY 10001" +217193,Apple Airpods Headphones,1,150,06/11/19 11:06,"609 Lake St, Los Angeles, CA 90001" +217194,Apple Airpods Headphones,1,150,06/13/19 10:58,"472 North St, Atlanta, GA 30301" +217194,AA Batteries (4-pack),1,3.84,06/13/19 10:58,"472 North St, Atlanta, GA 30301" +217195,Apple Airpods Headphones,1,150,06/23/19 20:00,"180 Lake St, San Francisco, CA 94016" +217196,Google Phone,1,600,06/28/19 22:25,"663 5th St, Los Angeles, CA 90001" +217197,AA Batteries (4-pack),1,3.84,06/04/19 10:58,"222 Johnson St, Los Angeles, CA 90001" +217198,Lightning Charging Cable,1,14.95,06/23/19 07:39,"883 13th St, Portland, OR 97035" +217199,Apple Airpods Headphones,1,150,06/10/19 15:47,"654 Hill St, New York City, NY 10001" +217200,Lightning Charging Cable,1,14.95,06/24/19 05:16,"921 Forest St, Dallas, TX 75001" +217201,USB-C Charging Cable,1,11.95,06/20/19 09:50,"131 Highland St, San Francisco, CA 94016" +217202,USB-C Charging Cable,1,11.95,06/18/19 19:20,"680 7th St, Boston, MA 02215" +217203,Apple Airpods Headphones,1,150,06/14/19 19:38,"960 11th St, New York City, NY 10001" +217204,USB-C Charging Cable,1,11.95,06/14/19 08:45,"837 Cherry St, New York City, NY 10001" +217205,AA Batteries (4-pack),1,3.84,06/09/19 09:25,"793 Sunset St, San Francisco, CA 94016" +217206,Bose SoundSport Headphones,1,99.99,06/19/19 16:13,"780 Lakeview St, New York City, NY 10001" +217207,27in FHD Monitor,1,149.99,06/11/19 19:49,"869 Jefferson St, San Francisco, CA 94016" +217208,AAA Batteries (4-pack),4,2.99,06/20/19 06:56,"907 Pine St, Seattle, WA 98101" +217209,AAA Batteries (4-pack),1,2.99,06/11/19 10:45,"633 Washington St, Dallas, TX 75001" +217210,Lightning Charging Cable,1,14.95,06/14/19 20:30,"723 Center St, Atlanta, GA 30301" +217211,Bose SoundSport Headphones,1,99.99,06/26/19 11:16,"991 Washington St, Seattle, WA 98101" +217212,Google Phone,1,600,06/12/19 11:55,"250 Madison St, Los Angeles, CA 90001" +217213,Lightning Charging Cable,1,14.95,06/17/19 17:22,"784 Wilson St, New York City, NY 10001" +217214,AA Batteries (4-pack),1,3.84,06/14/19 10:07,"616 Hickory St, San Francisco, CA 94016" +217215,USB-C Charging Cable,2,11.95,06/24/19 10:28,"898 Church St, Portland, OR 97035" +217216,USB-C Charging Cable,1,11.95,06/01/19 20:58,"93 Park St, Boston, MA 02215" +217217,Apple Airpods Headphones,1,150,06/30/19 02:25,"567 6th St, Seattle, WA 98101" +217218,27in FHD Monitor,1,149.99,06/05/19 17:18,"892 North St, Los Angeles, CA 90001" +217219,Wired Headphones,1,11.99,06/17/19 23:54,"684 Highland St, Atlanta, GA 30301" +217220,Flatscreen TV,1,300,06/11/19 01:27,"60 14th St, Seattle, WA 98101" +217220,AAA Batteries (4-pack),1,2.99,06/11/19 01:27,"60 14th St, Seattle, WA 98101" +217221,Wired Headphones,1,11.99,06/05/19 08:56,"667 Center St, New York City, NY 10001" +217222,AA Batteries (4-pack),1,3.84,06/11/19 12:49,"535 Lincoln St, Portland, ME 04101" +217223,Wired Headphones,1,11.99,06/21/19 17:03,"927 Lake St, Austin, TX 73301" +217224,AA Batteries (4-pack),1,3.84,06/05/19 21:21,"844 Madison St, Atlanta, GA 30301" +217225,USB-C Charging Cable,1,11.95,06/21/19 08:14,"603 6th St, Dallas, TX 75001" +217226,iPhone,1,700,06/07/19 16:26,"513 Hill St, Austin, TX 73301" +217227,AAA Batteries (4-pack),1,2.99,06/09/19 23:41,"115 6th St, Portland, OR 97035" +217228,LG Washing Machine,1,600.0,06/21/19 16:47,"97 Willow St, Boston, MA 02215" +217229,Wired Headphones,1,11.99,06/12/19 18:34,"427 Hickory St, San Francisco, CA 94016" +217230,20in Monitor,1,109.99,06/17/19 20:29,"615 Lakeview St, Atlanta, GA 30301" +217231,Google Phone,1,600,06/03/19 21:16,"722 West St, Dallas, TX 75001" +217232,Apple Airpods Headphones,1,150,06/29/19 00:41,"465 Meadow St, New York City, NY 10001" +217233,AA Batteries (4-pack),1,3.84,06/16/19 12:09,"623 Jefferson St, Atlanta, GA 30301" +217234,Apple Airpods Headphones,1,150,06/11/19 09:39,"127 12th St, San Francisco, CA 94016" +217235,AA Batteries (4-pack),1,3.84,06/28/19 18:27,"417 Church St, San Francisco, CA 94016" +217236,34in Ultrawide Monitor,1,379.99,06/30/19 16:52,"431 River St, San Francisco, CA 94016" +217237,iPhone,1,700,06/28/19 18:37,"567 Cherry St, San Francisco, CA 94016" +217238,AAA Batteries (4-pack),2,2.99,06/11/19 20:25,"299 Elm St, Portland, OR 97035" +217239,Lightning Charging Cable,1,14.95,06/06/19 15:02,"230 Park St, Los Angeles, CA 90001" +217240,Bose SoundSport Headphones,1,99.99,06/04/19 05:26,"286 1st St, New York City, NY 10001" +217241,AA Batteries (4-pack),1,3.84,06/26/19 11:44,"50 North St, Atlanta, GA 30301" +217242,Lightning Charging Cable,1,14.95,06/29/19 19:14,"675 West St, Los Angeles, CA 90001" +217243,Wired Headphones,1,11.99,06/19/19 09:03,"18 Lakeview St, Portland, OR 97035" +217244,USB-C Charging Cable,1,11.95,06/10/19 12:15,"609 13th St, Boston, MA 02215" +217245,Wired Headphones,1,11.99,06/15/19 21:58,"558 Sunset St, Seattle, WA 98101" +217246,27in FHD Monitor,1,149.99,06/19/19 22:12,"8 Ridge St, Austin, TX 73301" +217247,27in FHD Monitor,1,149.99,06/02/19 07:35,"414 Lakeview St, Portland, OR 97035" +217248,Bose SoundSport Headphones,1,99.99,06/21/19 12:40,"292 North St, San Francisco, CA 94016" +217248,USB-C Charging Cable,1,11.95,06/21/19 12:40,"292 North St, San Francisco, CA 94016" +217249,iPhone,1,700,06/11/19 07:44,"742 Main St, Los Angeles, CA 90001" +217250,AA Batteries (4-pack),1,3.84,06/15/19 09:59,"435 9th St, San Francisco, CA 94016" +217250,Vareebadd Phone,1,400,06/15/19 09:59,"435 9th St, San Francisco, CA 94016" +217251,USB-C Charging Cable,1,11.95,06/04/19 20:12,"437 Cedar St, Atlanta, GA 30301" +217252,Google Phone,1,600,06/19/19 22:14,"295 7th St, New York City, NY 10001" +217253,ThinkPad Laptop,1,999.99,06/24/19 15:24,"574 9th St, San Francisco, CA 94016" +217254,ThinkPad Laptop,1,999.99,06/02/19 21:45,"286 Pine St, Atlanta, GA 30301" +217255,AA Batteries (4-pack),1,3.84,06/23/19 15:55,"558 Lincoln St, Boston, MA 02215" +217256,USB-C Charging Cable,1,11.95,06/13/19 17:45,"484 North St, Boston, MA 02215" +217257,AAA Batteries (4-pack),2,2.99,06/25/19 14:26,"506 Main St, Los Angeles, CA 90001" +217258,27in 4K Gaming Monitor,1,389.99,06/13/19 11:00,"723 Lincoln St, Los Angeles, CA 90001" +217259,Wired Headphones,1,11.99,06/17/19 21:03,"956 4th St, Austin, TX 73301" +217260,20in Monitor,1,109.99,06/22/19 11:49,"430 Pine St, San Francisco, CA 94016" +217261,34in Ultrawide Monitor,1,379.99,06/01/19 21:53,"852 6th St, Dallas, TX 75001" +217262,34in Ultrawide Monitor,1,379.99,06/04/19 14:52,"319 Chestnut St, Boston, MA 02215" +217263,Flatscreen TV,1,300,06/25/19 19:35,"131 North St, Portland, ME 04101" +217264,AAA Batteries (4-pack),2,2.99,06/29/19 11:28,"1 Hickory St, New York City, NY 10001" +217265,LG Washing Machine,1,600.0,06/28/19 07:30,"562 Willow St, San Francisco, CA 94016" +217266,AAA Batteries (4-pack),1,2.99,06/29/19 20:29,"363 Washington St, New York City, NY 10001" +217267,Apple Airpods Headphones,1,150,06/13/19 16:24,"997 7th St, San Francisco, CA 94016" +217268,USB-C Charging Cable,1,11.95,06/13/19 09:43,"728 10th St, San Francisco, CA 94016" +217269,USB-C Charging Cable,1,11.95,06/19/19 23:49,"908 Lincoln St, San Francisco, CA 94016" +217270,Bose SoundSport Headphones,1,99.99,06/08/19 09:22,"794 Adams St, Los Angeles, CA 90001" +217271,Bose SoundSport Headphones,1,99.99,06/25/19 19:00,"526 Chestnut St, San Francisco, CA 94016" +217272,27in FHD Monitor,1,149.99,06/06/19 22:18,"545 Spruce St, New York City, NY 10001" +217273,AAA Batteries (4-pack),2,2.99,06/01/19 21:29,"325 14th St, Los Angeles, CA 90001" +217274,Lightning Charging Cable,1,14.95,06/22/19 10:43,"134 South St, New York City, NY 10001" +217275,27in 4K Gaming Monitor,1,389.99,06/22/19 08:39,"765 12th St, Austin, TX 73301" +217276,iPhone,1,700,06/07/19 18:21,"935 Maple St, Seattle, WA 98101" +217276,Lightning Charging Cable,1,14.95,06/07/19 18:21,"935 Maple St, Seattle, WA 98101" +217277,AAA Batteries (4-pack),1,2.99,06/25/19 15:33,"567 Spruce St, Seattle, WA 98101" +217278,AA Batteries (4-pack),1,3.84,06/13/19 10:14,"135 2nd St, San Francisco, CA 94016" +217279,Wired Headphones,1,11.99,06/09/19 16:27,"79 Johnson St, Dallas, TX 75001" +217280,USB-C Charging Cable,1,11.95,06/24/19 20:40,"741 Lakeview St, San Francisco, CA 94016" +217281,Lightning Charging Cable,1,14.95,06/19/19 15:08,"364 Sunset St, Los Angeles, CA 90001" +217282,Bose SoundSport Headphones,1,99.99,06/03/19 19:03,"879 Elm St, Portland, ME 04101" +217283,34in Ultrawide Monitor,1,379.99,06/10/19 12:57,"710 Cherry St, Los Angeles, CA 90001" +217284,Lightning Charging Cable,1,14.95,06/13/19 21:17,"939 Walnut St, Los Angeles, CA 90001" +217285,Apple Airpods Headphones,1,150,06/08/19 19:51,"600 Lincoln St, San Francisco, CA 94016" +217286,Wired Headphones,1,11.99,06/09/19 09:47,"947 7th St, New York City, NY 10001" +217287,AA Batteries (4-pack),1,3.84,06/21/19 13:55,"120 Hickory St, Portland, OR 97035" +217288,Wired Headphones,1,11.99,06/24/19 17:29,"972 6th St, Los Angeles, CA 90001" +217289,27in 4K Gaming Monitor,1,389.99,06/16/19 04:01,"30 14th St, Los Angeles, CA 90001" +217290,Wired Headphones,1,11.99,06/15/19 20:01,"718 1st St, Dallas, TX 75001" +217291,AAA Batteries (4-pack),1,2.99,06/22/19 14:44,"308 Meadow St, Austin, TX 73301" +217292,Lightning Charging Cable,1,14.95,06/20/19 21:18,"578 Lake St, New York City, NY 10001" +217293,Lightning Charging Cable,1,14.95,06/10/19 08:08,"632 Church St, New York City, NY 10001" +217294,Wired Headphones,2,11.99,06/11/19 17:49,"519 Main St, New York City, NY 10001" +217295,Bose SoundSport Headphones,1,99.99,06/19/19 21:34,"188 West St, San Francisco, CA 94016" +217296,34in Ultrawide Monitor,1,379.99,06/24/19 16:17,"989 West St, San Francisco, CA 94016" +217297,Wired Headphones,1,11.99,06/09/19 17:38,"809 Jefferson St, Boston, MA 02215" +217298,20in Monitor,1,109.99,06/18/19 07:33,"14 14th St, Portland, OR 97035" +217299,27in 4K Gaming Monitor,1,389.99,06/22/19 08:13,"390 Highland St, Los Angeles, CA 90001" +217300,AAA Batteries (4-pack),2,2.99,06/29/19 11:19,"668 Hill St, Boston, MA 02215" +217301,Apple Airpods Headphones,1,150,06/19/19 20:13,"998 Pine St, New York City, NY 10001" +217302,AA Batteries (4-pack),1,3.84,06/02/19 20:47,"23 Spruce St, New York City, NY 10001" +217303,Google Phone,1,600,06/27/19 13:23,"636 West St, Atlanta, GA 30301" +217303,USB-C Charging Cable,1,11.95,06/27/19 13:23,"636 West St, Atlanta, GA 30301" +217304,Lightning Charging Cable,1,14.95,06/13/19 19:01,"474 13th St, San Francisco, CA 94016" +217305,AAA Batteries (4-pack),1,2.99,06/16/19 20:44,"544 Willow St, Los Angeles, CA 90001" +217306,Lightning Charging Cable,1,14.95,06/23/19 20:03,"548 13th St, Portland, OR 97035" +217307,Google Phone,1,600,06/04/19 17:34,"146 Meadow St, Atlanta, GA 30301" +217308,Lightning Charging Cable,1,14.95,06/30/19 10:09,"600 Washington St, Los Angeles, CA 90001" +217309,Macbook Pro Laptop,1,1700,06/12/19 15:37,"298 5th St, Los Angeles, CA 90001" +217310,ThinkPad Laptop,1,999.99,06/20/19 10:16,"248 Hickory St, Boston, MA 02215" +217311,Apple Airpods Headphones,1,150,06/01/19 15:17,"771 Willow St, New York City, NY 10001" +217312,ThinkPad Laptop,1,999.99,06/17/19 09:22,"967 Church St, Los Angeles, CA 90001" +217313,AA Batteries (4-pack),2,3.84,06/14/19 19:56,"871 Highland St, Portland, OR 97035" +217314,AAA Batteries (4-pack),1,2.99,06/21/19 09:46,"200 Walnut St, San Francisco, CA 94016" +217315,USB-C Charging Cable,1,11.95,06/05/19 16:14,"552 Sunset St, Dallas, TX 75001" +217316,AA Batteries (4-pack),1,3.84,06/18/19 12:34,"138 12th St, Los Angeles, CA 90001" +217317,Wired Headphones,1,11.99,06/24/19 23:32,"160 Main St, Seattle, WA 98101" +217318,AA Batteries (4-pack),1,3.84,06/23/19 14:37,"401 11th St, New York City, NY 10001" +217319,AAA Batteries (4-pack),1,2.99,06/02/19 17:15,"183 Spruce St, New York City, NY 10001" +217320,USB-C Charging Cable,1,11.95,06/02/19 20:27,"137 Johnson St, New York City, NY 10001" +217321,AA Batteries (4-pack),1,3.84,06/06/19 13:16,"522 Willow St, San Francisco, CA 94016" +217322,Apple Airpods Headphones,1,150,06/17/19 18:45,"783 Chestnut St, Portland, OR 97035" +217323,Apple Airpods Headphones,1,150,06/24/19 10:16,"634 Willow St, San Francisco, CA 94016" +217324,Google Phone,1,600,06/29/19 07:06,"349 Johnson St, Atlanta, GA 30301" +217325,Lightning Charging Cable,1,14.95,06/03/19 16:29,"659 West St, New York City, NY 10001" +217326,Google Phone,1,600,06/11/19 11:11,"744 North St, Dallas, TX 75001" +217327,AA Batteries (4-pack),1,3.84,06/01/19 18:37,"982 River St, Seattle, WA 98101" +217328,34in Ultrawide Monitor,1,379.99,06/17/19 19:33,"271 South St, Dallas, TX 75001" +217329,AA Batteries (4-pack),1,3.84,06/17/19 17:56,"977 Spruce St, San Francisco, CA 94016" +217330,USB-C Charging Cable,1,11.95,06/10/19 14:42,"514 Walnut St, New York City, NY 10001" +217331,AAA Batteries (4-pack),4,2.99,06/21/19 03:28,"776 Sunset St, Dallas, TX 75001" +217332,AA Batteries (4-pack),1,3.84,06/11/19 17:06,"910 6th St, Los Angeles, CA 90001" +217333,Vareebadd Phone,1,400,06/29/19 16:06,"533 River St, New York City, NY 10001" +217334,34in Ultrawide Monitor,1,379.99,06/25/19 21:38,"282 Pine St, San Francisco, CA 94016" +217335,Apple Airpods Headphones,1,150,06/19/19 21:43,"133 Main St, New York City, NY 10001" +217336,AAA Batteries (4-pack),1,2.99,06/04/19 16:33,"685 Dogwood St, Atlanta, GA 30301" +217337,Lightning Charging Cable,1,14.95,06/24/19 01:46,"430 Johnson St, Austin, TX 73301" +217338,AA Batteries (4-pack),1,3.84,06/10/19 23:54,"563 Spruce St, Austin, TX 73301" +217339,Apple Airpods Headphones,1,150,06/18/19 09:13,"633 Jefferson St, Portland, OR 97035" +217340,AAA Batteries (4-pack),1,2.99,06/03/19 11:32,"535 Elm St, Los Angeles, CA 90001" +217341,Apple Airpods Headphones,1,150,06/01/19 22:08,"509 Willow St, Los Angeles, CA 90001" +217342,AA Batteries (4-pack),2,3.84,06/29/19 07:10,"744 9th St, Dallas, TX 75001" +217343,27in 4K Gaming Monitor,1,389.99,06/23/19 15:14,"669 11th St, New York City, NY 10001" +217344,LG Dryer,1,600.0,06/08/19 15:28,"571 4th St, Los Angeles, CA 90001" +217345,AA Batteries (4-pack),1,3.84,06/22/19 22:32,"685 River St, Atlanta, GA 30301" +217346,Apple Airpods Headphones,1,150,06/15/19 11:06,"558 South St, San Francisco, CA 94016" +217347,AAA Batteries (4-pack),2,2.99,06/07/19 11:34,"58 Ridge St, San Francisco, CA 94016" +217348,Lightning Charging Cable,1,14.95,06/06/19 16:39,"733 Main St, Los Angeles, CA 90001" +217349,AA Batteries (4-pack),1,3.84,06/01/19 08:19,"789 North St, San Francisco, CA 94016" +217350,Wired Headphones,1,11.99,06/17/19 18:30,"746 Park St, Boston, MA 02215" +217351,AA Batteries (4-pack),1,3.84,06/23/19 18:16,"696 Washington St, New York City, NY 10001" +217352,Macbook Pro Laptop,1,1700,06/28/19 19:11,"934 Elm St, Seattle, WA 98101" +217353,AAA Batteries (4-pack),2,2.99,06/23/19 15:06,"855 Johnson St, San Francisco, CA 94016" +217354,27in 4K Gaming Monitor,1,389.99,06/09/19 12:24,"50 River St, Seattle, WA 98101" +217355,Bose SoundSport Headphones,1,99.99,06/25/19 16:48,"480 Hill St, Seattle, WA 98101" +217356,Lightning Charging Cable,1,14.95,06/30/19 21:34,"708 Chestnut St, Austin, TX 73301" +217357,Lightning Charging Cable,1,14.95,06/08/19 19:06,"315 10th St, San Francisco, CA 94016" +217358,USB-C Charging Cable,1,11.95,06/24/19 13:09,"376 Maple St, New York City, NY 10001" +217359,USB-C Charging Cable,1,11.95,06/09/19 13:21,"999 12th St, Portland, OR 97035" +217360,Apple Airpods Headphones,1,150,06/06/19 17:18,"65 5th St, Los Angeles, CA 90001" +217361,USB-C Charging Cable,1,11.95,06/18/19 18:20,"498 Washington St, Atlanta, GA 30301" +217361,27in FHD Monitor,1,149.99,06/18/19 18:20,"498 Washington St, Atlanta, GA 30301" +217362,AAA Batteries (4-pack),2,2.99,06/30/19 22:03,"689 North St, Atlanta, GA 30301" +217363,Wired Headphones,1,11.99,06/16/19 16:12,"57 10th St, San Francisco, CA 94016" +217364,Wired Headphones,1,11.99,06/09/19 13:02,"754 Sunset St, San Francisco, CA 94016" +217365,USB-C Charging Cable,1,11.95,06/15/19 11:20,"779 Lincoln St, San Francisco, CA 94016" +217366,USB-C Charging Cable,1,11.95,06/24/19 14:07,"515 Adams St, Seattle, WA 98101" +217367,Macbook Pro Laptop,1,1700,06/10/19 22:22,"523 West St, Dallas, TX 75001" +217368,Lightning Charging Cable,1,14.95,06/29/19 08:45,"718 Lincoln St, Austin, TX 73301" +217369,Lightning Charging Cable,1,14.95,06/19/19 20:12,"383 Chestnut St, Dallas, TX 75001" +217370,Wired Headphones,1,11.99,06/03/19 20:44,"565 Highland St, Los Angeles, CA 90001" +217371,Lightning Charging Cable,1,14.95,06/23/19 13:45,"410 Lake St, San Francisco, CA 94016" +217372,Wired Headphones,1,11.99,06/24/19 08:48,"675 South St, New York City, NY 10001" +217373,USB-C Charging Cable,1,11.95,06/10/19 01:13,"223 Hickory St, Portland, OR 97035" +217374,Vareebadd Phone,1,400,06/02/19 21:33,"530 West St, San Francisco, CA 94016" +217375,AAA Batteries (4-pack),4,2.99,06/17/19 19:50,"186 Main St, Los Angeles, CA 90001" +217376,Apple Airpods Headphones,1,150,06/05/19 15:11,"924 2nd St, Seattle, WA 98101" +217377,Macbook Pro Laptop,1,1700,06/23/19 08:05,"790 Sunset St, Boston, MA 02215" +217378,AAA Batteries (4-pack),1,2.99,06/04/19 23:33,"934 Lincoln St, San Francisco, CA 94016" +217379,Vareebadd Phone,1,400,06/25/19 19:54,"780 Cedar St, Los Angeles, CA 90001" +217379,USB-C Charging Cable,1,11.95,06/25/19 19:54,"780 Cedar St, Los Angeles, CA 90001" +217380,Apple Airpods Headphones,1,150,06/13/19 18:30,"385 Pine St, Boston, MA 02215" +217381,34in Ultrawide Monitor,1,379.99,06/16/19 19:07,"552 Wilson St, New York City, NY 10001" +217382,AAA Batteries (4-pack),1,2.99,06/27/19 11:23,"552 5th St, San Francisco, CA 94016" +217383,27in 4K Gaming Monitor,1,389.99,06/14/19 19:24,"605 Johnson St, San Francisco, CA 94016" +217384,AA Batteries (4-pack),2,3.84,06/24/19 10:42,"683 Forest St, Los Angeles, CA 90001" +217385,iPhone,1,700,06/18/19 07:50,"736 11th St, Portland, ME 04101" +217386,AA Batteries (4-pack),1,3.84,06/14/19 11:54,"713 Hickory St, Los Angeles, CA 90001" +217387,USB-C Charging Cable,1,11.95,06/19/19 09:45,"84 Hickory St, San Francisco, CA 94016" +217388,Apple Airpods Headphones,1,150,06/24/19 09:58,"994 West St, Boston, MA 02215" +217389,AA Batteries (4-pack),1,3.84,06/14/19 13:41,"448 Cedar St, New York City, NY 10001" +217390,20in Monitor,1,109.99,06/28/19 11:27,"727 Church St, Atlanta, GA 30301" +217391,27in FHD Monitor,1,149.99,06/28/19 10:41,"794 Cherry St, Los Angeles, CA 90001" +217392,27in FHD Monitor,1,149.99,06/06/19 22:40,"667 Church St, New York City, NY 10001" +217392,iPhone,1,700,06/06/19 22:40,"667 Church St, New York City, NY 10001" +217393,Lightning Charging Cable,1,14.95,06/02/19 08:23,"911 4th St, New York City, NY 10001" +217394,Lightning Charging Cable,1,14.95,06/06/19 18:52,"374 Madison St, New York City, NY 10001" +217395,Bose SoundSport Headphones,1,99.99,06/30/19 01:39,"104 Walnut St, Austin, TX 73301" +217396,USB-C Charging Cable,1,11.95,06/26/19 18:27,"409 13th St, San Francisco, CA 94016" +217397,Flatscreen TV,1,300,06/05/19 18:33,"121 7th St, New York City, NY 10001" +217398,USB-C Charging Cable,1,11.95,06/26/19 14:30,"279 Wilson St, Boston, MA 02215" +217399,Lightning Charging Cable,1,14.95,06/07/19 19:23,"345 South St, Dallas, TX 75001" +217400,AA Batteries (4-pack),1,3.84,06/29/19 08:25,"970 Lake St, Atlanta, GA 30301" +217401,AAA Batteries (4-pack),3,2.99,06/28/19 14:05,"164 Hill St, New York City, NY 10001" +217402,USB-C Charging Cable,1,11.95,06/21/19 19:32,"815 Spruce St, San Francisco, CA 94016" +217403,AA Batteries (4-pack),1,3.84,06/28/19 10:00,"853 4th St, Los Angeles, CA 90001" +217404,USB-C Charging Cable,1,11.95,06/23/19 11:17,"576 7th St, Portland, OR 97035" +217405,AAA Batteries (4-pack),1,2.99,06/20/19 04:57,"815 10th St, Los Angeles, CA 90001" +217406,USB-C Charging Cable,1,11.95,06/22/19 01:21,"568 2nd St, Los Angeles, CA 90001" +217407,LG Dryer,1,600.0,06/09/19 14:27,"508 South St, Portland, OR 97035" +217408,AA Batteries (4-pack),2,3.84,06/12/19 12:45,"246 7th St, Boston, MA 02215" +217409,Apple Airpods Headphones,1,150,06/05/19 10:56,"244 Meadow St, Dallas, TX 75001" +217410,Lightning Charging Cable,1,14.95,06/19/19 19:28,"46 Lakeview St, San Francisco, CA 94016" +217411,Macbook Pro Laptop,1,1700,06/08/19 14:22,"275 10th St, Los Angeles, CA 90001" +217412,AAA Batteries (4-pack),1,2.99,06/26/19 11:00,"925 10th St, San Francisco, CA 94016" +217413,Wired Headphones,1,11.99,06/08/19 19:09,"148 Jackson St, San Francisco, CA 94016" +217414,USB-C Charging Cable,2,11.95,06/12/19 20:38,"600 Highland St, Austin, TX 73301" +217415,Bose SoundSport Headphones,1,99.99,06/19/19 18:21,"230 River St, Atlanta, GA 30301" +217416,AAA Batteries (4-pack),3,2.99,06/28/19 12:05,"219 Spruce St, Atlanta, GA 30301" +217417,AAA Batteries (4-pack),3,2.99,06/05/19 17:30,"737 11th St, Dallas, TX 75001" +217418,Apple Airpods Headphones,1,150,06/09/19 10:17,"640 River St, Austin, TX 73301" +217419,Bose SoundSport Headphones,1,99.99,06/08/19 12:44,"877 Cedar St, San Francisco, CA 94016" +217420,Vareebadd Phone,1,400,06/20/19 15:46,"405 12th St, Los Angeles, CA 90001" +217421,Lightning Charging Cable,2,14.95,06/18/19 14:27,"252 Ridge St, Dallas, TX 75001" +217422,Apple Airpods Headphones,1,150,06/21/19 10:55,"923 Wilson St, Portland, OR 97035" +217423,AAA Batteries (4-pack),1,2.99,06/22/19 21:56,"269 2nd St, Los Angeles, CA 90001" +217424,Wired Headphones,2,11.99,06/14/19 12:19,"339 Dogwood St, New York City, NY 10001" +217425,Lightning Charging Cable,1,14.95,06/13/19 21:14,"625 Center St, Dallas, TX 75001" +217426,Lightning Charging Cable,1,14.95,06/10/19 12:48,"973 Church St, Atlanta, GA 30301" +217427,AA Batteries (4-pack),1,3.84,06/29/19 17:44,"193 Johnson St, New York City, NY 10001" +217428,AAA Batteries (4-pack),1,2.99,06/06/19 14:05,"663 Ridge St, Los Angeles, CA 90001" +217429,Apple Airpods Headphones,1,150,06/18/19 19:58,"898 Hickory St, New York City, NY 10001" +217430,27in 4K Gaming Monitor,1,389.99,06/28/19 04:15,"769 Sunset St, San Francisco, CA 94016" +217431,USB-C Charging Cable,1,11.95,06/08/19 13:15,"446 Jefferson St, San Francisco, CA 94016" +217432,Apple Airpods Headphones,1,150,06/02/19 13:50,"603 Lake St, Portland, OR 97035" +217433,Apple Airpods Headphones,1,150,06/26/19 12:17,"864 Adams St, New York City, NY 10001" +217434,Google Phone,1,600,06/05/19 22:56,"616 Lincoln St, Seattle, WA 98101" +217435,Lightning Charging Cable,1,14.95,06/17/19 17:41,"286 Spruce St, San Francisco, CA 94016" +217436,Lightning Charging Cable,1,14.95,06/01/19 15:53,"326 Madison St, Atlanta, GA 30301" +217437,Wired Headphones,1,11.99,06/25/19 18:06,"340 North St, New York City, NY 10001" +217438,27in 4K Gaming Monitor,1,389.99,06/24/19 00:05,"616 6th St, New York City, NY 10001" +217439,Apple Airpods Headphones,1,150,06/10/19 13:28,"217 Jefferson St, San Francisco, CA 94016" +217440,Bose SoundSport Headphones,1,99.99,06/23/19 16:16,"28 Cedar St, Los Angeles, CA 90001" +217441,USB-C Charging Cable,1,11.95,06/19/19 03:15,"977 Center St, Atlanta, GA 30301" +217442,AAA Batteries (4-pack),1,2.99,06/18/19 07:43,"341 Forest St, San Francisco, CA 94016" +217443,Apple Airpods Headphones,1,150,06/13/19 20:09,"229 Ridge St, San Francisco, CA 94016" +217444,Lightning Charging Cable,1,14.95,06/17/19 15:20,"337 4th St, Boston, MA 02215" +217445,34in Ultrawide Monitor,1,379.99,06/09/19 22:14,"720 Cherry St, New York City, NY 10001" +217446,USB-C Charging Cable,1,11.95,06/06/19 08:58,"22 Spruce St, San Francisco, CA 94016" +217447,Bose SoundSport Headphones,1,99.99,06/17/19 20:59,"750 Forest St, Atlanta, GA 30301" +217448,USB-C Charging Cable,1,11.95,06/14/19 08:05,"543 Dogwood St, Dallas, TX 75001" +217449,Bose SoundSport Headphones,1,99.99,06/18/19 20:23,"50 Highland St, San Francisco, CA 94016" +217450,AA Batteries (4-pack),1,3.84,06/08/19 09:34,"154 Spruce St, San Francisco, CA 94016" +217451,AA Batteries (4-pack),1,3.84,06/05/19 23:06,"158 Park St, Atlanta, GA 30301" +217452,AAA Batteries (4-pack),1,2.99,06/04/19 09:58,"173 North St, Los Angeles, CA 90001" +217453,Lightning Charging Cable,1,14.95,06/13/19 15:19,"194 Lake St, San Francisco, CA 94016" +217454,Wired Headphones,1,11.99,06/10/19 20:10,"974 Maple St, New York City, NY 10001" +217455,27in FHD Monitor,1,149.99,06/12/19 10:12,"213 Hill St, San Francisco, CA 94016" +217456,Lightning Charging Cable,1,14.95,06/09/19 16:24,"87 11th St, Los Angeles, CA 90001" +217457,Wired Headphones,1,11.99,06/23/19 20:42,"606 Willow St, New York City, NY 10001" +217458,AA Batteries (4-pack),2,3.84,06/15/19 02:52,"637 Willow St, Los Angeles, CA 90001" +217459,Apple Airpods Headphones,1,150,06/07/19 11:21,"635 Dogwood St, Atlanta, GA 30301" +217460,Bose SoundSport Headphones,1,99.99,06/24/19 12:11,"513 North St, Dallas, TX 75001" +217461,USB-C Charging Cable,1,11.95,06/19/19 00:44,"101 Main St, San Francisco, CA 94016" +217462,Google Phone,1,600,06/19/19 13:35,"288 Cedar St, San Francisco, CA 94016" +217463,AAA Batteries (4-pack),1,2.99,06/16/19 14:17,"928 Adams St, San Francisco, CA 94016" +217464,Macbook Pro Laptop,1,1700,06/19/19 16:55,"197 6th St, Austin, TX 73301" +217465,USB-C Charging Cable,1,11.95,06/22/19 18:48,"161 1st St, Boston, MA 02215" +217466,USB-C Charging Cable,1,11.95,06/20/19 20:14,"481 Hickory St, Portland, OR 97035" +217467,USB-C Charging Cable,1,11.95,06/10/19 01:23,"229 4th St, Seattle, WA 98101" +217468,Macbook Pro Laptop,1,1700,06/07/19 09:42,"372 Lake St, Seattle, WA 98101" +217469,AA Batteries (4-pack),1,3.84,06/20/19 12:36,"234 14th St, San Francisco, CA 94016" +217470,34in Ultrawide Monitor,1,379.99,06/06/19 11:22,"446 North St, Boston, MA 02215" +217471,Google Phone,1,600,06/07/19 21:27,"694 Forest St, Austin, TX 73301" +217472,34in Ultrawide Monitor,1,379.99,06/12/19 19:53,"879 Maple St, Boston, MA 02215" +217473,Apple Airpods Headphones,1,150,06/24/19 12:01,"358 8th St, Seattle, WA 98101" +217474,AA Batteries (4-pack),1,3.84,06/14/19 16:33,"225 Willow St, Los Angeles, CA 90001" +217475,Lightning Charging Cable,1,14.95,06/27/19 14:56,"197 1st St, New York City, NY 10001" +217476,Wired Headphones,1,11.99,06/24/19 18:38,"190 Park St, Los Angeles, CA 90001" +217477,Lightning Charging Cable,1,14.95,06/01/19 16:46,"932 Forest St, Portland, OR 97035" +217478,AAA Batteries (4-pack),2,2.99,06/11/19 22:35,"680 North St, Austin, TX 73301" +217479,Lightning Charging Cable,1,14.95,06/19/19 22:50,"452 Washington St, New York City, NY 10001" +217480,Vareebadd Phone,1,400,06/27/19 08:18,"582 West St, Los Angeles, CA 90001" +217481,Lightning Charging Cable,1,14.95,06/12/19 20:07,"257 Cedar St, New York City, NY 10001" +217482,Apple Airpods Headphones,1,150,06/18/19 21:07,"722 4th St, San Francisco, CA 94016" +217483,Wired Headphones,1,11.99,06/14/19 10:56,"634 11th St, New York City, NY 10001" +217484,Lightning Charging Cable,1,14.95,06/16/19 22:18,"849 10th St, San Francisco, CA 94016" +217485,Lightning Charging Cable,1,14.95,06/18/19 03:27,"422 5th St, Los Angeles, CA 90001" +217486,USB-C Charging Cable,1,11.95,06/07/19 16:22,"89 Church St, Los Angeles, CA 90001" +217487,ThinkPad Laptop,1,999.99,06/17/19 13:48,"149 14th St, San Francisco, CA 94016" +217488,34in Ultrawide Monitor,1,379.99,06/10/19 17:50,"417 Ridge St, San Francisco, CA 94016" +217489,Apple Airpods Headphones,1,150,06/03/19 11:36,"228 Dogwood St, Atlanta, GA 30301" +217490,Google Phone,1,600,06/04/19 09:41,"749 Walnut St, Los Angeles, CA 90001" +217491,USB-C Charging Cable,1,11.95,06/26/19 13:28,"911 Spruce St, Los Angeles, CA 90001" +217492,Wired Headphones,1,11.99,06/02/19 10:32,"514 South St, Seattle, WA 98101" +217493,Wired Headphones,1,11.99,06/05/19 01:00,"5 14th St, Portland, OR 97035" +217494,27in FHD Monitor,1,149.99,06/03/19 15:29,"554 Hickory St, Atlanta, GA 30301" +217495,34in Ultrawide Monitor,1,379.99,06/24/19 13:27,"680 Main St, Boston, MA 02215" +217496,AA Batteries (4-pack),1,3.84,06/21/19 14:49,"124 8th St, Boston, MA 02215" +217497,Bose SoundSport Headphones,1,99.99,06/18/19 18:16,"854 6th St, New York City, NY 10001" +217498,20in Monitor,1,109.99,06/01/19 22:15,"582 Jefferson St, Dallas, TX 75001" +217499,iPhone,1,700,06/30/19 14:35,"36 Meadow St, New York City, NY 10001" +217500,iPhone,1,700,06/17/19 14:58,"670 Walnut St, San Francisco, CA 94016" +217501,34in Ultrawide Monitor,1,379.99,06/14/19 15:10,"128 Chestnut St, Seattle, WA 98101" +217502,USB-C Charging Cable,1,11.95,06/13/19 08:16,"389 Park St, Los Angeles, CA 90001" +217503,AAA Batteries (4-pack),1,2.99,06/30/19 15:53,"233 12th St, Boston, MA 02215" +217504,27in FHD Monitor,1,149.99,06/27/19 18:57,"149 1st St, San Francisco, CA 94016" +217505,Apple Airpods Headphones,1,150,06/03/19 21:26,"687 Wilson St, New York City, NY 10001" +217506,Lightning Charging Cable,1,14.95,06/19/19 20:24,"863 Elm St, Atlanta, GA 30301" +217507,Wired Headphones,1,11.99,06/19/19 20:05,"959 Wilson St, San Francisco, CA 94016" +217508,AA Batteries (4-pack),1,3.84,06/13/19 06:13,"200 South St, San Francisco, CA 94016" +217509,Apple Airpods Headphones,1,150,06/27/19 18:35,"562 1st St, Boston, MA 02215" +217510,27in 4K Gaming Monitor,1,389.99,06/10/19 13:44,"752 Elm St, San Francisco, CA 94016" +217511,Bose SoundSport Headphones,1,99.99,06/22/19 19:02,"781 Church St, Seattle, WA 98101" +217512,Lightning Charging Cable,1,14.95,06/02/19 13:07,"802 Hill St, Boston, MA 02215" +217513,AAA Batteries (4-pack),1,2.99,06/05/19 15:17,"593 Cedar St, Boston, MA 02215" +217514,Vareebadd Phone,1,400,06/02/19 07:49,"645 12th St, Seattle, WA 98101" +217515,Flatscreen TV,1,300,06/24/19 11:49,"922 Hickory St, New York City, NY 10001" +217516,Bose SoundSport Headphones,1,99.99,06/30/19 11:17,"477 Lake St, Austin, TX 73301" +217517,Lightning Charging Cable,1,14.95,06/03/19 00:20,"403 5th St, Portland, OR 97035" +217518,Bose SoundSport Headphones,1,99.99,06/15/19 13:17,"71 9th St, Austin, TX 73301" +217519,34in Ultrawide Monitor,1,379.99,06/20/19 12:30,"483 Elm St, Los Angeles, CA 90001" +217520,Google Phone,1,600,06/26/19 10:38,"22 1st St, Los Angeles, CA 90001" +217521,20in Monitor,1,109.99,06/24/19 22:21,"596 West St, Atlanta, GA 30301" +217522,Flatscreen TV,1,300,06/06/19 23:13,"684 Main St, Los Angeles, CA 90001" +217523,Bose SoundSport Headphones,1,99.99,06/08/19 14:43,"539 11th St, San Francisco, CA 94016" +217524,iPhone,1,700,06/28/19 14:58,"559 Washington St, Dallas, TX 75001" +217525,USB-C Charging Cable,1,11.95,06/05/19 08:50,"543 Lake St, Portland, ME 04101" +217526,Lightning Charging Cable,1,14.95,06/27/19 18:45,"78 Johnson St, New York City, NY 10001" +217527,USB-C Charging Cable,1,11.95,06/10/19 17:16,"949 River St, Los Angeles, CA 90001" +217528,Google Phone,1,600,06/27/19 20:38,"951 14th St, San Francisco, CA 94016" +217529,AAA Batteries (4-pack),5,2.99,06/08/19 11:37,"803 4th St, San Francisco, CA 94016" +217530,Bose SoundSport Headphones,1,99.99,06/30/19 11:39,"473 8th St, Los Angeles, CA 90001" +217531,ThinkPad Laptop,1,999.99,06/22/19 00:47,"735 2nd St, New York City, NY 10001" +217532,Lightning Charging Cable,1,14.95,06/05/19 22:52,"989 Hickory St, San Francisco, CA 94016" +217532,20in Monitor,1,109.99,06/05/19 22:52,"989 Hickory St, San Francisco, CA 94016" +217533,USB-C Charging Cable,1,11.95,06/04/19 18:04,"325 6th St, New York City, NY 10001" +217534,AA Batteries (4-pack),2,3.84,06/30/19 05:49,"222 Washington St, Boston, MA 02215" +217535,Macbook Pro Laptop,1,1700,06/28/19 12:39,"614 Elm St, New York City, NY 10001" +217536,AA Batteries (4-pack),1,3.84,06/14/19 20:26,"62 12th St, Portland, OR 97035" +217537,LG Dryer,1,600.0,06/04/19 10:44,"192 West St, Seattle, WA 98101" +217538,Wired Headphones,1,11.99,06/24/19 16:08,"808 River St, New York City, NY 10001" +217539,AAA Batteries (4-pack),3,2.99,06/03/19 20:33,"565 South St, San Francisco, CA 94016" +217540,Bose SoundSport Headphones,1,99.99,06/06/19 16:49,"26 Chestnut St, Seattle, WA 98101" +217541,Bose SoundSport Headphones,1,99.99,06/13/19 20:14,"759 Dogwood St, San Francisco, CA 94016" +217542,USB-C Charging Cable,1,11.95,06/13/19 17:12,"140 Hickory St, San Francisco, CA 94016" +217543,AAA Batteries (4-pack),1,2.99,06/04/19 13:49,"146 Sunset St, San Francisco, CA 94016" +217544,Google Phone,1,600,06/27/19 14:18,"744 Washington St, Los Angeles, CA 90001" +217544,Wired Headphones,1,11.99,06/27/19 14:18,"744 Washington St, Los Angeles, CA 90001" +217545,AAA Batteries (4-pack),2,2.99,06/25/19 13:57,"501 Jefferson St, Boston, MA 02215" +217546,27in FHD Monitor,1,149.99,06/15/19 19:44,"783 Maple St, Boston, MA 02215" +217547,Wired Headphones,1,11.99,06/21/19 21:04,"929 Madison St, New York City, NY 10001" +217548,Lightning Charging Cable,1,14.95,06/05/19 17:05,"821 Hickory St, Portland, ME 04101" +217549,Bose SoundSport Headphones,1,99.99,06/22/19 16:24,"487 14th St, New York City, NY 10001" +217550,Lightning Charging Cable,1,14.95,06/08/19 01:44,"921 Dogwood St, Los Angeles, CA 90001" +217551,AAA Batteries (4-pack),1,2.99,06/08/19 19:53,"514 12th St, Los Angeles, CA 90001" +217552,Lightning Charging Cable,1,14.95,06/10/19 13:31,"215 River St, New York City, NY 10001" +217553,34in Ultrawide Monitor,2,379.99,06/15/19 22:57,"503 Elm St, San Francisco, CA 94016" +217553,USB-C Charging Cable,1,11.95,06/15/19 22:57,"503 Elm St, San Francisco, CA 94016" +217554,Apple Airpods Headphones,1,150,06/10/19 12:19,"924 Jefferson St, New York City, NY 10001" +217555,AAA Batteries (4-pack),1,2.99,06/06/19 16:13,"227 Jefferson St, San Francisco, CA 94016" +217556,USB-C Charging Cable,1,11.95,06/24/19 19:12,"377 Adams St, Atlanta, GA 30301" +217557,iPhone,1,700,06/10/19 17:55,"935 Hill St, Portland, ME 04101" +217558,Bose SoundSport Headphones,1,99.99,06/15/19 15:30,"888 Pine St, Portland, OR 97035" +217559,Wired Headphones,1,11.99,06/19/19 20:56,"86 1st St, San Francisco, CA 94016" +217560,AAA Batteries (4-pack),1,2.99,06/30/19 12:01,"915 Cherry St, Portland, OR 97035" +217561,LG Dryer,1,600.0,06/18/19 08:18,"943 Cherry St, Los Angeles, CA 90001" +217562,Apple Airpods Headphones,1,150,06/09/19 19:25,"357 9th St, San Francisco, CA 94016" +217563,Apple Airpods Headphones,1,150,06/21/19 09:19,"921 South St, San Francisco, CA 94016" +217564,Lightning Charging Cable,1,14.95,06/24/19 13:28,"452 Hill St, Seattle, WA 98101" +217564,27in FHD Monitor,1,149.99,06/24/19 13:28,"452 Hill St, Seattle, WA 98101" +217565,27in FHD Monitor,1,149.99,06/24/19 14:43,"63 Elm St, Seattle, WA 98101" +217566,USB-C Charging Cable,1,11.95,06/16/19 18:30,"723 Center St, Portland, OR 97035" +217567,Wired Headphones,3,11.99,06/16/19 15:18,"262 Madison St, Atlanta, GA 30301" +217568,27in FHD Monitor,1,149.99,06/16/19 17:24,"193 Washington St, Los Angeles, CA 90001" +217568,iPhone,1,700,06/16/19 17:24,"193 Washington St, Los Angeles, CA 90001" +217569,USB-C Charging Cable,1,11.95,06/12/19 15:38,"575 Jefferson St, Dallas, TX 75001" +217570,USB-C Charging Cable,1,11.95,06/13/19 21:29,"709 2nd St, Austin, TX 73301" +217571,Google Phone,1,600,06/13/19 03:34,"810 Ridge St, San Francisco, CA 94016" +217572,USB-C Charging Cable,1,11.95,06/20/19 19:59,"619 North St, San Francisco, CA 94016" +217573,Macbook Pro Laptop,1,1700,06/14/19 14:07,"751 9th St, Los Angeles, CA 90001" +217574,Apple Airpods Headphones,1,150,06/30/19 08:35,"824 10th St, San Francisco, CA 94016" +217575,Bose SoundSport Headphones,1,99.99,06/19/19 23:03,"389 Main St, Boston, MA 02215" +217576,ThinkPad Laptop,1,999.99,06/29/19 20:01,"902 Maple St, New York City, NY 10001" +217577,AA Batteries (4-pack),1,3.84,06/20/19 21:24,"171 Dogwood St, Austin, TX 73301" +217578,Bose SoundSport Headphones,1,99.99,06/30/19 00:13,"132 Spruce St, San Francisco, CA 94016" +217579,34in Ultrawide Monitor,1,379.99,06/12/19 14:05,"395 Meadow St, Boston, MA 02215" +217580,Flatscreen TV,1,300,06/28/19 13:23,"303 Cherry St, Boston, MA 02215" +217581,34in Ultrawide Monitor,1,379.99,06/17/19 20:37,"632 Dogwood St, Boston, MA 02215" +217582,Lightning Charging Cable,1,14.95,06/23/19 23:39,"877 Dogwood St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +217583,Flatscreen TV,1,300,06/09/19 05:39,"848 Hickory St, Atlanta, GA 30301" +217584,Lightning Charging Cable,1,14.95,06/05/19 15:17,"873 Chestnut St, Los Angeles, CA 90001" +217585,Apple Airpods Headphones,1,150,06/05/19 11:42,"874 Lakeview St, San Francisco, CA 94016" +217586,34in Ultrawide Monitor,1,379.99,06/08/19 08:57,"972 Hickory St, Dallas, TX 75001" +217587,Apple Airpods Headphones,1,150,06/14/19 13:52,"957 Center St, San Francisco, CA 94016" +217588,Lightning Charging Cable,1,14.95,06/23/19 17:33,"238 Lincoln St, Boston, MA 02215" +217589,Flatscreen TV,1,300,06/30/19 08:04,"827 Park St, Seattle, WA 98101" +217590,27in FHD Monitor,1,149.99,06/25/19 13:12,"779 Sunset St, New York City, NY 10001" +217591,Wired Headphones,1,11.99,06/17/19 21:44,"259 9th St, New York City, NY 10001" +217592,Apple Airpods Headphones,1,150,06/09/19 10:11,"384 Lake St, San Francisco, CA 94016" +217593,Apple Airpods Headphones,1,150,06/20/19 19:58,"732 Pine St, New York City, NY 10001" +217594,Lightning Charging Cable,1,14.95,06/18/19 09:06,"403 North St, Atlanta, GA 30301" +217595,27in 4K Gaming Monitor,1,389.99,06/08/19 11:03,"788 Elm St, Seattle, WA 98101" +217596,Flatscreen TV,1,300,06/05/19 15:33,"414 Jefferson St, Atlanta, GA 30301" +217597,Lightning Charging Cable,1,14.95,06/16/19 13:28,"390 Park St, Los Angeles, CA 90001" +217598,USB-C Charging Cable,2,11.95,06/08/19 14:16,"910 5th St, Austin, TX 73301" +217599,Bose SoundSport Headphones,1,99.99,06/23/19 00:08,"604 Hickory St, Austin, TX 73301" +217600,iPhone,1,700,06/29/19 15:19,"209 Jackson St, Los Angeles, CA 90001" +217600,Wired Headphones,1,11.99,06/29/19 15:19,"209 Jackson St, Los Angeles, CA 90001" +217601,20in Monitor,1,109.99,06/24/19 10:17,"487 Elm St, Atlanta, GA 30301" +217602,AAA Batteries (4-pack),3,2.99,06/25/19 10:06,"943 Maple St, Portland, OR 97035" +217603,USB-C Charging Cable,1,11.95,06/09/19 19:58,"267 10th St, Boston, MA 02215" +217604,Apple Airpods Headphones,1,150,06/07/19 13:55,"270 Madison St, Los Angeles, CA 90001" +217605,USB-C Charging Cable,1,11.95,06/12/19 07:11,"361 Walnut St, San Francisco, CA 94016" +217606,AA Batteries (4-pack),1,3.84,06/29/19 14:02,"140 Jefferson St, Boston, MA 02215" +217607,USB-C Charging Cable,1,11.95,06/18/19 21:09,"285 Johnson St, Los Angeles, CA 90001" +217608,Apple Airpods Headphones,1,150,06/28/19 18:10,"48 Adams St, Seattle, WA 98101" +217609,Wired Headphones,1,11.99,06/21/19 15:05,"694 7th St, Dallas, TX 75001" +217610,AA Batteries (4-pack),1,3.84,06/19/19 12:23,"264 4th St, San Francisco, CA 94016" +217611,Macbook Pro Laptop,1,1700,06/17/19 11:23,"556 Lakeview St, Seattle, WA 98101" +217612,Lightning Charging Cable,1,14.95,06/29/19 01:08,"249 12th St, Seattle, WA 98101" +217613,AA Batteries (4-pack),2,3.84,06/26/19 12:58,"361 9th St, Los Angeles, CA 90001" +217614,20in Monitor,1,109.99,06/05/19 00:07,"333 8th St, Los Angeles, CA 90001" +217615,Bose SoundSport Headphones,1,99.99,06/24/19 15:12,"72 Lakeview St, Los Angeles, CA 90001" +217616,USB-C Charging Cable,1,11.95,06/20/19 23:26,"871 Elm St, Dallas, TX 75001" +217617,AAA Batteries (4-pack),1,2.99,06/19/19 16:30,"940 Church St, Boston, MA 02215" +217618,AA Batteries (4-pack),3,3.84,06/29/19 10:39,"390 Ridge St, Boston, MA 02215" +217619,Flatscreen TV,1,300,06/30/19 21:28,"118 8th St, San Francisco, CA 94016" +217620,AA Batteries (4-pack),2,3.84,06/26/19 11:32,"668 Lincoln St, Boston, MA 02215" +217621,AA Batteries (4-pack),1,3.84,06/20/19 23:58,"388 Church St, Dallas, TX 75001" +217622,Apple Airpods Headphones,1,150,06/22/19 15:05,"601 Maple St, New York City, NY 10001" +217623,27in 4K Gaming Monitor,1,389.99,06/19/19 23:11,"430 Chestnut St, Austin, TX 73301" +217624,USB-C Charging Cable,1,11.95,06/04/19 19:46,"373 Hill St, New York City, NY 10001" +217625,27in 4K Gaming Monitor,1,389.99,06/09/19 06:33,"706 Madison St, Los Angeles, CA 90001" +217626,AAA Batteries (4-pack),1,2.99,06/22/19 14:47,"342 7th St, New York City, NY 10001" +217627,iPhone,1,700,06/03/19 09:10,"136 Highland St, Boston, MA 02215" +217628,AA Batteries (4-pack),1,3.84,06/16/19 14:30,"158 Chestnut St, Austin, TX 73301" +217629,AA Batteries (4-pack),1,3.84,06/21/19 07:40,"282 Madison St, San Francisco, CA 94016" +217630,34in Ultrawide Monitor,1,379.99,06/11/19 16:37,"937 Johnson St, Boston, MA 02215" +217631,20in Monitor,1,109.99,06/30/19 06:54,"863 North St, Atlanta, GA 30301" +217632,USB-C Charging Cable,1,11.95,06/28/19 12:46,"63 Cedar St, Los Angeles, CA 90001" +217633,USB-C Charging Cable,2,11.95,06/27/19 16:05,"700 10th St, Los Angeles, CA 90001" +217634,Lightning Charging Cable,1,14.95,06/08/19 08:43,"163 5th St, Dallas, TX 75001" +217635,AA Batteries (4-pack),1,3.84,06/25/19 09:37,"827 Madison St, Los Angeles, CA 90001" +217636,Apple Airpods Headphones,1,150,06/20/19 11:36,"351 Chestnut St, Seattle, WA 98101" +217637,AAA Batteries (4-pack),2,2.99,06/08/19 17:02,"110 Dogwood St, Dallas, TX 75001" +217638,Bose SoundSport Headphones,1,99.99,06/06/19 04:45,"811 Washington St, New York City, NY 10001" +217639,Wired Headphones,1,11.99,06/13/19 11:44,"284 Wilson St, Los Angeles, CA 90001" +217640,Apple Airpods Headphones,1,150,06/18/19 17:39,"670 Ridge St, Portland, ME 04101" +217641,20in Monitor,1,109.99,06/11/19 12:42,"361 Hill St, San Francisco, CA 94016" +217642,Bose SoundSport Headphones,1,99.99,06/02/19 23:09,"883 Pine St, Atlanta, GA 30301" +217643,Bose SoundSport Headphones,1,99.99,06/21/19 22:39,"517 Madison St, Dallas, TX 75001" +217644,AA Batteries (4-pack),1,3.84,06/11/19 15:05,"210 13th St, New York City, NY 10001" +217645,Lightning Charging Cable,1,14.95,06/06/19 08:49,"570 Spruce St, Atlanta, GA 30301" +217646,Lightning Charging Cable,1,14.95,06/12/19 13:06,"658 13th St, Seattle, WA 98101" +217647,AAA Batteries (4-pack),1,2.99,06/30/19 07:42,"334 Highland St, Boston, MA 02215" +217648,AA Batteries (4-pack),6,3.84,06/07/19 15:17,"812 Forest St, San Francisco, CA 94016" +,,,,, +217649,AA Batteries (4-pack),1,3.84,06/12/19 21:40,"859 Elm St, Atlanta, GA 30301" +217650,AAA Batteries (4-pack),1,2.99,06/21/19 13:54,"902 Madison St, Dallas, TX 75001" +217651,Macbook Pro Laptop,1,1700,06/07/19 17:24,"803 Jefferson St, Atlanta, GA 30301" +217652,Lightning Charging Cable,1,14.95,06/22/19 17:57,"205 10th St, San Francisco, CA 94016" +217653,USB-C Charging Cable,1,11.95,06/22/19 17:49,"148 6th St, San Francisco, CA 94016" +217654,Lightning Charging Cable,1,14.95,06/23/19 11:17,"80 Cedar St, Portland, OR 97035" +217655,iPhone,1,700,06/01/19 19:11,"193 Meadow St, San Francisco, CA 94016" +217656,20in Monitor,1,109.99,06/20/19 18:12,"560 Hill St, Portland, OR 97035" +217656,Vareebadd Phone,1,400,06/20/19 18:12,"560 Hill St, Portland, OR 97035" +217657,Flatscreen TV,1,300,06/27/19 15:00,"857 Adams St, Los Angeles, CA 90001" +217658,Bose SoundSport Headphones,1,99.99,06/17/19 22:58,"812 13th St, San Francisco, CA 94016" +217659,Wired Headphones,1,11.99,06/21/19 21:22,"748 Chestnut St, Los Angeles, CA 90001" +217660,AA Batteries (4-pack),1,3.84,06/30/19 16:01,"679 West St, Dallas, TX 75001" +217661,27in FHD Monitor,1,149.99,06/27/19 19:25,"593 Dogwood St, Austin, TX 73301" +217662,Lightning Charging Cable,1,14.95,06/21/19 13:38,"175 Washington St, San Francisco, CA 94016" +217663,AA Batteries (4-pack),1,3.84,06/07/19 20:26,"240 13th St, Seattle, WA 98101" +217664,USB-C Charging Cable,1,11.95,06/15/19 20:19,"316 Forest St, Austin, TX 73301" +217665,USB-C Charging Cable,1,11.95,06/29/19 07:16,"174 5th St, Dallas, TX 75001" +217666,AAA Batteries (4-pack),1,2.99,06/23/19 08:23,"890 Sunset St, Austin, TX 73301" +217667,AA Batteries (4-pack),2,3.84,06/14/19 11:52,"631 Center St, San Francisco, CA 94016" +217668,20in Monitor,1,109.99,06/24/19 19:42,"833 Main St, Los Angeles, CA 90001" +217669,AA Batteries (4-pack),1,3.84,06/22/19 10:52,"862 Wilson St, Portland, OR 97035" +217670,AAA Batteries (4-pack),1,2.99,06/15/19 10:45,"51 Chestnut St, Los Angeles, CA 90001" +217671,Lightning Charging Cable,1,14.95,06/20/19 09:51,"429 Cherry St, New York City, NY 10001" +217672,USB-C Charging Cable,1,11.95,06/23/19 13:20,"528 Sunset St, San Francisco, CA 94016" +217673,34in Ultrawide Monitor,1,379.99,06/05/19 11:04,"451 Cherry St, Atlanta, GA 30301" +217674,USB-C Charging Cable,1,11.95,06/03/19 12:59,"379 Wilson St, New York City, NY 10001" +217675,Apple Airpods Headphones,1,150,06/29/19 09:42,"728 Meadow St, Boston, MA 02215" +217676,Lightning Charging Cable,1,14.95,06/29/19 11:37,"294 Jackson St, Portland, OR 97035" +217677,34in Ultrawide Monitor,1,379.99,06/16/19 19:42,"311 Lake St, New York City, NY 10001" +217678,Bose SoundSport Headphones,1,99.99,06/24/19 19:07,"844 Wilson St, New York City, NY 10001" +217679,Flatscreen TV,1,300,06/20/19 16:44,"69 4th St, New York City, NY 10001" +217680,Lightning Charging Cable,1,14.95,06/10/19 22:15,"774 River St, Portland, ME 04101" +217681,Wired Headphones,1,11.99,06/15/19 13:31,"893 Spruce St, Austin, TX 73301" +217682,27in FHD Monitor,1,149.99,06/05/19 08:16,"323 Elm St, Atlanta, GA 30301" +217683,Wired Headphones,1,11.99,06/10/19 11:29,"842 Lincoln St, Atlanta, GA 30301" +217684,ThinkPad Laptop,1,999.99,06/23/19 00:26,"412 Madison St, San Francisco, CA 94016" +217685,Apple Airpods Headphones,1,150,06/28/19 15:03,"481 9th St, Atlanta, GA 30301" +217686,27in FHD Monitor,1,149.99,06/21/19 16:15,"162 Church St, New York City, NY 10001" +217687,Wired Headphones,1,11.99,06/07/19 21:59,"790 Jackson St, San Francisco, CA 94016" +217688,AAA Batteries (4-pack),1,2.99,06/03/19 08:49,"926 Lake St, Dallas, TX 75001" +217689,USB-C Charging Cable,1,11.95,06/08/19 00:14,"740 11th St, San Francisco, CA 94016" +217690,USB-C Charging Cable,1,11.95,06/14/19 20:07,"135 10th St, New York City, NY 10001" +217691,iPhone,1,700,06/10/19 11:21,"812 Elm St, New York City, NY 10001" +217692,Bose SoundSport Headphones,1,99.99,06/05/19 00:31,"342 Jackson St, San Francisco, CA 94016" +217693,iPhone,1,700,06/30/19 20:16,"22 Lincoln St, New York City, NY 10001" +217694,AAA Batteries (4-pack),1,2.99,06/24/19 11:00,"848 Cherry St, Los Angeles, CA 90001" +217695,AA Batteries (4-pack),1,3.84,06/05/19 16:03,"405 North St, Boston, MA 02215" +217696,AA Batteries (4-pack),1,3.84,06/22/19 21:53,"868 Pine St, Boston, MA 02215" +217697,Apple Airpods Headphones,1,150,06/10/19 16:06,"324 13th St, Dallas, TX 75001" +217698,AA Batteries (4-pack),1,3.84,06/29/19 22:46,"624 Highland St, Los Angeles, CA 90001" +217699,iPhone,1,700,06/16/19 06:46,"729 Cedar St, Seattle, WA 98101" +217700,ThinkPad Laptop,1,999.99,06/17/19 18:10,"385 Johnson St, Los Angeles, CA 90001" +217701,Wired Headphones,1,11.99,06/24/19 13:54,"268 Highland St, San Francisco, CA 94016" +217702,AA Batteries (4-pack),1,3.84,06/09/19 19:14,"491 Elm St, Boston, MA 02215" +217703,Wired Headphones,1,11.99,06/18/19 20:22,"882 South St, Seattle, WA 98101" +217704,Apple Airpods Headphones,1,150,06/11/19 22:21,"255 1st St, Los Angeles, CA 90001" +217705,AA Batteries (4-pack),2,3.84,06/29/19 21:35,"629 Spruce St, Los Angeles, CA 90001" +217706,27in 4K Gaming Monitor,1,389.99,06/28/19 20:07,"315 Elm St, Seattle, WA 98101" +217707,USB-C Charging Cable,1,11.95,06/13/19 12:17,"176 8th St, Seattle, WA 98101" +217708,AA Batteries (4-pack),1,3.84,06/20/19 16:54,"139 Wilson St, Boston, MA 02215" +217709,Apple Airpods Headphones,1,150,06/19/19 12:02,"384 Johnson St, Los Angeles, CA 90001" +217710,USB-C Charging Cable,1,11.95,06/07/19 19:09,"963 Park St, Seattle, WA 98101" +217711,34in Ultrawide Monitor,1,379.99,06/17/19 19:19,"591 13th St, Portland, OR 97035" +217712,AA Batteries (4-pack),2,3.84,06/28/19 17:18,"747 Church St, San Francisco, CA 94016" +217712,USB-C Charging Cable,1,11.95,06/28/19 17:18,"747 Church St, San Francisco, CA 94016" +217713,Bose SoundSport Headphones,1,99.99,06/02/19 15:13,"871 Jefferson St, New York City, NY 10001" +217714,Wired Headphones,1,11.99,06/30/19 13:16,"324 4th St, Los Angeles, CA 90001" +217714,Bose SoundSport Headphones,1,99.99,06/30/19 13:16,"324 4th St, Los Angeles, CA 90001" +217715,AAA Batteries (4-pack),2,2.99,06/01/19 12:05,"193 5th St, Portland, OR 97035" +217716,Lightning Charging Cable,1,14.95,06/26/19 15:31,"491 Cherry St, Dallas, TX 75001" +217717,27in FHD Monitor,1,149.99,06/27/19 20:18,"173 Spruce St, San Francisco, CA 94016" +217718,Bose SoundSport Headphones,1,99.99,06/23/19 16:26,"927 6th St, Boston, MA 02215" +217719,Wired Headphones,1,11.99,06/11/19 10:38,"538 2nd St, Los Angeles, CA 90001" +217720,AAA Batteries (4-pack),1,2.99,06/30/19 09:09,"325 Elm St, San Francisco, CA 94016" +217721,AAA Batteries (4-pack),2,2.99,06/25/19 06:11,"193 Center St, Seattle, WA 98101" +217722,Macbook Pro Laptop,1,1700,06/29/19 16:45,"955 14th St, Los Angeles, CA 90001" +217723,Apple Airpods Headphones,1,150,06/21/19 08:27,"215 Maple St, San Francisco, CA 94016" +217724,USB-C Charging Cable,2,11.95,06/21/19 08:46,"843 7th St, Boston, MA 02215" +217725,LG Washing Machine,1,600.0,06/20/19 11:52,"275 Spruce St, Boston, MA 02215" +217726,Bose SoundSport Headphones,1,99.99,06/23/19 00:50,"256 4th St, Atlanta, GA 30301" +217727,AA Batteries (4-pack),1,3.84,06/04/19 18:51,"110 5th St, Los Angeles, CA 90001" +217728,Wired Headphones,1,11.99,06/21/19 16:46,"318 Jackson St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +217729,USB-C Charging Cable,1,11.95,06/18/19 15:01,"656 8th St, Seattle, WA 98101" +217730,Wired Headphones,1,11.99,06/21/19 13:41,"755 Hickory St, Portland, OR 97035" +217731,Google Phone,1,600,06/19/19 10:57,"245 Washington St, San Francisco, CA 94016" +217732,ThinkPad Laptop,1,999.99,06/26/19 11:55,"40 Washington St, Seattle, WA 98101" +217733,AA Batteries (4-pack),1,3.84,06/08/19 13:21,"56 Cedar St, Austin, TX 73301" +217734,Lightning Charging Cable,1,14.95,06/02/19 21:53,"707 13th St, Seattle, WA 98101" +217735,AAA Batteries (4-pack),1,2.99,06/23/19 19:41,"669 12th St, New York City, NY 10001" +217736,AA Batteries (4-pack),2,3.84,06/12/19 16:15,"817 Forest St, Atlanta, GA 30301" +217737,AA Batteries (4-pack),1,3.84,06/22/19 06:17,"758 Sunset St, Boston, MA 02215" +217738,Google Phone,1,600,06/08/19 18:23,"993 Johnson St, Atlanta, GA 30301" +217738,Bose SoundSport Headphones,1,99.99,06/08/19 18:23,"993 Johnson St, Atlanta, GA 30301" +217739,Lightning Charging Cable,2,14.95,06/06/19 23:41,"728 2nd St, New York City, NY 10001" +217740,AA Batteries (4-pack),1,3.84,06/22/19 13:44,"452 Adams St, San Francisco, CA 94016" +217741,AAA Batteries (4-pack),1,2.99,06/26/19 14:53,"643 Chestnut St, Los Angeles, CA 90001" +217742,AAA Batteries (4-pack),2,2.99,06/25/19 14:06,"460 Lake St, Dallas, TX 75001" +217743,ThinkPad Laptop,1,999.99,06/19/19 10:33,"453 Madison St, Dallas, TX 75001" +217744,Lightning Charging Cable,1,14.95,06/27/19 17:49,"584 Lakeview St, Seattle, WA 98101" +217745,AAA Batteries (4-pack),1,2.99,06/10/19 19:33,"406 Wilson St, Portland, ME 04101" +217746,Bose SoundSport Headphones,1,99.99,06/19/19 09:51,"874 12th St, San Francisco, CA 94016" +217747,AAA Batteries (4-pack),1,2.99,06/13/19 09:51,"121 Cherry St, Boston, MA 02215" +217748,Apple Airpods Headphones,1,150,06/30/19 16:58,"356 Ridge St, Los Angeles, CA 90001" +217749,Lightning Charging Cable,1,14.95,06/05/19 18:44,"118 Center St, Los Angeles, CA 90001" +217750,Lightning Charging Cable,1,14.95,06/25/19 13:04,"424 8th St, Austin, TX 73301" +217751,34in Ultrawide Monitor,1,379.99,06/08/19 22:36,"530 Forest St, San Francisco, CA 94016" +217752,Lightning Charging Cable,2,14.95,06/22/19 09:27,"837 Wilson St, San Francisco, CA 94016" +217753,USB-C Charging Cable,1,11.95,06/02/19 22:28,"632 Main St, New York City, NY 10001" +217754,Apple Airpods Headphones,1,150,06/04/19 11:58,"574 Lakeview St, Seattle, WA 98101" +217755,Macbook Pro Laptop,1,1700,06/29/19 12:45,"154 4th St, Los Angeles, CA 90001" +217756,Google Phone,1,600,06/22/19 19:18,"871 Madison St, Austin, TX 73301" +217757,Apple Airpods Headphones,1,150,06/02/19 20:12,"125 Hickory St, Seattle, WA 98101" +217758,Wired Headphones,1,11.99,06/24/19 08:58,"771 Madison St, Los Angeles, CA 90001" +217759,Bose SoundSport Headphones,1,99.99,06/09/19 20:45,"799 Park St, Boston, MA 02215" +217760,20in Monitor,1,109.99,06/01/19 18:02,"188 2nd St, Atlanta, GA 30301" +217761,Wired Headphones,1,11.99,06/15/19 12:14,"999 13th St, San Francisco, CA 94016" +217762,AA Batteries (4-pack),3,3.84,06/07/19 11:18,"453 Center St, Atlanta, GA 30301" +217763,Lightning Charging Cable,1,14.95,06/07/19 21:54,"806 Hickory St, San Francisco, CA 94016" +217764,34in Ultrawide Monitor,1,379.99,06/15/19 14:17,"363 Chestnut St, Portland, OR 97035" +217765,AAA Batteries (4-pack),1,2.99,06/20/19 21:18,"168 Highland St, Boston, MA 02215" +217766,Bose SoundSport Headphones,1,99.99,06/12/19 15:24,"832 1st St, New York City, NY 10001" +217767,AAA Batteries (4-pack),2,2.99,06/09/19 13:22,"447 North St, Los Angeles, CA 90001" +217768,iPhone,1,700,06/13/19 15:44,"544 Ridge St, San Francisco, CA 94016" +217769,Lightning Charging Cable,1,14.95,06/06/19 00:23,"255 Cedar St, San Francisco, CA 94016" +217770,20in Monitor,1,109.99,06/27/19 16:27,"829 Church St, New York City, NY 10001" +217771,Google Phone,1,600,06/03/19 12:59,"921 Lincoln St, San Francisco, CA 94016" +217772,AA Batteries (4-pack),1,3.84,06/29/19 16:05,"164 1st St, Austin, TX 73301" +217773,Apple Airpods Headphones,1,150,06/27/19 21:01,"147 5th St, San Francisco, CA 94016" +217774,Wired Headphones,1,11.99,06/14/19 14:03,"886 Dogwood St, Los Angeles, CA 90001" +217775,Lightning Charging Cable,1,14.95,06/18/19 14:57,"329 Lincoln St, Los Angeles, CA 90001" +217776,34in Ultrawide Monitor,1,379.99,06/25/19 22:33,"367 5th St, Atlanta, GA 30301" +217777,Lightning Charging Cable,1,14.95,06/01/19 11:50,"551 Sunset St, Los Angeles, CA 90001" +217778,Lightning Charging Cable,1,14.95,06/03/19 03:50,"979 Maple St, Atlanta, GA 30301" +217779,Bose SoundSport Headphones,1,99.99,06/09/19 14:47,"635 2nd St, Portland, OR 97035" +217780,AAA Batteries (4-pack),1,2.99,06/02/19 06:39,"752 Lincoln St, Los Angeles, CA 90001" +217781,USB-C Charging Cable,1,11.95,06/06/19 15:31,"108 1st St, Seattle, WA 98101" +217782,ThinkPad Laptop,1,999.99,06/15/19 21:04,"649 7th St, Dallas, TX 75001" +217783,27in 4K Gaming Monitor,1,389.99,06/08/19 13:42,"987 Spruce St, New York City, NY 10001" +217784,34in Ultrawide Monitor,1,379.99,06/27/19 08:27,"593 10th St, San Francisco, CA 94016" +217785,Lightning Charging Cable,1,14.95,06/04/19 18:18,"582 Cherry St, Portland, ME 04101" +217786,Macbook Pro Laptop,1,1700,06/20/19 20:18,"641 Jefferson St, Seattle, WA 98101" +217787,Google Phone,1,600,06/12/19 12:00,"816 Church St, San Francisco, CA 94016" +217788,Macbook Pro Laptop,1,1700,06/13/19 10:28,"878 Spruce St, Dallas, TX 75001" +217789,AAA Batteries (4-pack),2,2.99,06/04/19 19:53,"997 14th St, Atlanta, GA 30301" +217790,USB-C Charging Cable,1,11.95,06/10/19 16:37,"784 Cherry St, Austin, TX 73301" +217791,AA Batteries (4-pack),1,3.84,06/22/19 20:28,"969 West St, Los Angeles, CA 90001" +217792,Wired Headphones,1,11.99,06/26/19 20:10,"751 North St, Portland, OR 97035" +217793,AA Batteries (4-pack),1,3.84,06/05/19 05:16,"288 Adams St, Seattle, WA 98101" +217794,Bose SoundSport Headphones,1,99.99,06/28/19 11:03,"334 Walnut St, New York City, NY 10001" +217795,Lightning Charging Cable,1,14.95,06/24/19 16:40,"31 Hill St, Portland, OR 97035" +217796,27in FHD Monitor,1,149.99,06/26/19 14:56,"125 Ridge St, Atlanta, GA 30301" +217797,USB-C Charging Cable,2,11.95,06/10/19 13:26,"432 6th St, New York City, NY 10001" +217798,Lightning Charging Cable,1,14.95,06/07/19 22:18,"383 7th St, San Francisco, CA 94016" +217799,AAA Batteries (4-pack),2,2.99,06/21/19 10:02,"751 Cedar St, Los Angeles, CA 90001" +217800,Wired Headphones,1,11.99,06/26/19 00:13,"278 14th St, San Francisco, CA 94016" +217801,20in Monitor,1,109.99,06/16/19 12:21,"113 Wilson St, Los Angeles, CA 90001" +217802,AA Batteries (4-pack),1,3.84,06/21/19 19:20,"970 Cedar St, Los Angeles, CA 90001" +217803,AAA Batteries (4-pack),4,2.99,06/20/19 21:00,"518 Lake St, Los Angeles, CA 90001" +217804,AA Batteries (4-pack),1,3.84,06/14/19 20:10,"575 Lincoln St, Los Angeles, CA 90001" +217805,AA Batteries (4-pack),1,3.84,06/14/19 09:21,"51 Pine St, Seattle, WA 98101" +217806,Lightning Charging Cable,1,14.95,06/19/19 19:31,"58 Forest St, San Francisco, CA 94016" +217807,USB-C Charging Cable,2,11.95,06/07/19 21:21,"540 Jackson St, Seattle, WA 98101" +217808,AAA Batteries (4-pack),3,2.99,06/18/19 20:36,"901 Center St, San Francisco, CA 94016" +217809,AAA Batteries (4-pack),1,2.99,06/29/19 10:30,"98 Sunset St, San Francisco, CA 94016" +217810,AA Batteries (4-pack),1,3.84,06/23/19 09:52,"208 Dogwood St, Seattle, WA 98101" +217811,Flatscreen TV,1,300,06/28/19 10:20,"993 Madison St, Portland, OR 97035" +217812,LG Washing Machine,1,600.0,06/08/19 08:47,"465 Meadow St, San Francisco, CA 94016" +217813,20in Monitor,1,109.99,06/28/19 16:11,"388 Meadow St, Boston, MA 02215" +217814,LG Washing Machine,1,600.0,06/03/19 18:40,"391 11th St, Dallas, TX 75001" +217815,AAA Batteries (4-pack),2,2.99,06/10/19 12:24,"456 6th St, Los Angeles, CA 90001" +217816,USB-C Charging Cable,1,11.95,06/17/19 15:45,"892 12th St, Atlanta, GA 30301" +217817,iPhone,1,700,06/28/19 01:10,"215 9th St, Los Angeles, CA 90001" +217817,Lightning Charging Cable,1,14.95,06/28/19 01:10,"215 9th St, Los Angeles, CA 90001" +217818,iPhone,1,700,06/08/19 20:39,"300 14th St, San Francisco, CA 94016" +217818,Lightning Charging Cable,2,14.95,06/08/19 20:39,"300 14th St, San Francisco, CA 94016" +217819,AA Batteries (4-pack),1,3.84,06/14/19 11:52,"710 Maple St, San Francisco, CA 94016" +217820,Flatscreen TV,1,300,06/08/19 21:39,"724 6th St, New York City, NY 10001" +217821,Lightning Charging Cable,1,14.95,06/15/19 07:11,"21 Pine St, Los Angeles, CA 90001" +217822,Google Phone,1,600,06/15/19 22:34,"524 Hickory St, New York City, NY 10001" +217823,Wired Headphones,1,11.99,06/01/19 13:50,"657 Cedar St, Seattle, WA 98101" +217824,USB-C Charging Cable,1,11.95,06/01/19 23:40,"776 Jefferson St, San Francisco, CA 94016" +217825,AAA Batteries (4-pack),1,2.99,06/06/19 11:17,"134 Highland St, New York City, NY 10001" +217826,AA Batteries (4-pack),1,3.84,06/08/19 16:20,"359 Willow St, San Francisco, CA 94016" +217827,USB-C Charging Cable,1,11.95,06/27/19 22:01,"60 Park St, New York City, NY 10001" +217828,Vareebadd Phone,1,400,06/09/19 10:13,"624 9th St, Dallas, TX 75001" +217829,Lightning Charging Cable,1,14.95,06/04/19 17:51,"76 Elm St, Boston, MA 02215" +217830,Lightning Charging Cable,1,14.95,06/18/19 09:10,"354 14th St, New York City, NY 10001" +217831,USB-C Charging Cable,1,11.95,06/14/19 15:49,"87 Maple St, Dallas, TX 75001" +217832,AA Batteries (4-pack),1,3.84,06/02/19 14:56,"405 Lakeview St, San Francisco, CA 94016" +217833,iPhone,1,700,06/20/19 08:33,"789 Center St, Los Angeles, CA 90001" +217833,Apple Airpods Headphones,1,150,06/20/19 08:33,"789 Center St, Los Angeles, CA 90001" +217834,34in Ultrawide Monitor,1,379.99,06/13/19 14:28,"83 Johnson St, Austin, TX 73301" +217835,ThinkPad Laptop,1,999.99,06/24/19 12:18,"274 Washington St, Boston, MA 02215" +217836,Bose SoundSport Headphones,1,99.99,06/03/19 03:56,"825 Pine St, New York City, NY 10001" +217837,Wired Headphones,1,11.99,06/15/19 20:33,"397 Jefferson St, Dallas, TX 75001" +217838,AAA Batteries (4-pack),1,2.99,06/16/19 11:17,"653 Church St, Boston, MA 02215" +217839,Lightning Charging Cable,1,14.95,06/27/19 16:05,"60 South St, Atlanta, GA 30301" +217840,Vareebadd Phone,1,400,06/24/19 10:27,"61 Lincoln St, Los Angeles, CA 90001" +217841,AAA Batteries (4-pack),2,2.99,06/02/19 22:51,"711 11th St, New York City, NY 10001" +217842,Lightning Charging Cable,1,14.95,06/10/19 00:53,"504 Wilson St, Dallas, TX 75001" +217843,Google Phone,1,600,06/20/19 21:40,"3 12th St, New York City, NY 10001" +217844,Lightning Charging Cable,1,14.95,06/10/19 10:03,"680 Ridge St, New York City, NY 10001" +217845,Bose SoundSport Headphones,1,99.99,06/20/19 09:56,"588 Spruce St, Dallas, TX 75001" +217846,Apple Airpods Headphones,1,150,06/04/19 14:27,"207 Hill St, New York City, NY 10001" +217847,Google Phone,1,600,06/12/19 06:58,"661 8th St, Dallas, TX 75001" +217848,Wired Headphones,1,11.99,06/07/19 15:06,"4 Dogwood St, San Francisco, CA 94016" +217849,Lightning Charging Cable,1,14.95,06/28/19 10:19,"152 Hickory St, San Francisco, CA 94016" +217850,ThinkPad Laptop,1,999.99,06/01/19 10:42,"937 Meadow St, Dallas, TX 75001" +217851,ThinkPad Laptop,1,999.99,06/27/19 17:49,"640 Lake St, New York City, NY 10001" +217852,Bose SoundSport Headphones,1,99.99,06/13/19 13:33,"986 Cherry St, Dallas, TX 75001" +217853,27in FHD Monitor,1,149.99,06/18/19 14:07,"743 Cedar St, San Francisco, CA 94016" +217854,iPhone,1,700,06/03/19 05:36,"472 Adams St, San Francisco, CA 94016" +217854,Apple Airpods Headphones,1,150,06/03/19 05:36,"472 Adams St, San Francisco, CA 94016" +217855,Bose SoundSport Headphones,1,99.99,06/14/19 14:25,"969 Pine St, San Francisco, CA 94016" +217856,Wired Headphones,3,11.99,06/28/19 12:35,"960 2nd St, Dallas, TX 75001" +217857,AA Batteries (4-pack),1,3.84,06/14/19 11:22,"337 Lake St, Atlanta, GA 30301" +217858,Bose SoundSport Headphones,1,99.99,06/26/19 06:57,"49 West St, Portland, ME 04101" +217859,AAA Batteries (4-pack),1,2.99,06/20/19 16:08,"346 Lake St, San Francisco, CA 94016" +217860,27in FHD Monitor,1,149.99,06/07/19 18:09,"236 Forest St, New York City, NY 10001" +217861,AAA Batteries (4-pack),1,2.99,06/18/19 14:04,"719 10th St, San Francisco, CA 94016" +217862,Lightning Charging Cable,1,14.95,06/05/19 19:00,"230 Elm St, Dallas, TX 75001" +217863,Wired Headphones,1,11.99,06/29/19 08:03,"811 9th St, Seattle, WA 98101" +217864,Lightning Charging Cable,1,14.95,06/03/19 22:57,"569 4th St, Boston, MA 02215" +217865,USB-C Charging Cable,1,11.95,06/22/19 13:49,"597 14th St, New York City, NY 10001" +217866,34in Ultrawide Monitor,1,379.99,06/26/19 11:17,"923 Wilson St, Los Angeles, CA 90001" +217867,Flatscreen TV,1,300,06/09/19 23:13,"623 Church St, Boston, MA 02215" +217868,Apple Airpods Headphones,1,150,06/19/19 17:20,"13 11th St, Austin, TX 73301" +217869,AAA Batteries (4-pack),1,2.99,06/29/19 12:29,"139 14th St, Seattle, WA 98101" +217870,USB-C Charging Cable,1,11.95,06/02/19 12:51,"825 Lake St, Seattle, WA 98101" +217871,AA Batteries (4-pack),1,3.84,06/23/19 17:10,"138 Dogwood St, Boston, MA 02215" +217872,Lightning Charging Cable,1,14.95,06/02/19 15:17,"468 12th St, Dallas, TX 75001" +217873,27in 4K Gaming Monitor,1,389.99,06/07/19 19:56,"625 2nd St, San Francisco, CA 94016" +217874,Lightning Charging Cable,1,14.95,06/11/19 19:56,"968 13th St, Atlanta, GA 30301" +217875,Apple Airpods Headphones,1,150,06/10/19 22:28,"373 Highland St, San Francisco, CA 94016" +217876,34in Ultrawide Monitor,1,379.99,06/21/19 17:30,"807 12th St, New York City, NY 10001" +217877,Lightning Charging Cable,1,14.95,06/04/19 17:54,"304 9th St, Boston, MA 02215" +217878,Bose SoundSport Headphones,1,99.99,06/03/19 20:03,"784 Main St, Seattle, WA 98101" +217878,AAA Batteries (4-pack),1,2.99,06/03/19 20:03,"784 Main St, Seattle, WA 98101" +217879,USB-C Charging Cable,1,11.95,06/05/19 20:13,"450 8th St, Austin, TX 73301" +217880,Lightning Charging Cable,1,14.95,06/02/19 11:11,"696 4th St, Seattle, WA 98101" +217881,AAA Batteries (4-pack),1,2.99,06/12/19 15:43,"965 Chestnut St, New York City, NY 10001" +217882,AAA Batteries (4-pack),2,2.99,06/03/19 20:10,"670 Maple St, New York City, NY 10001" +217883,27in FHD Monitor,1,149.99,06/27/19 16:09,"337 Center St, Boston, MA 02215" +217884,USB-C Charging Cable,1,11.95,06/25/19 21:02,"400 Cherry St, Boston, MA 02215" +217885,AAA Batteries (4-pack),1,2.99,06/27/19 11:54,"427 10th St, San Francisco, CA 94016" +217886,Lightning Charging Cable,1,14.95,06/10/19 22:04,"537 Cherry St, Atlanta, GA 30301" +217887,Apple Airpods Headphones,1,150,06/12/19 15:30,"581 11th St, Los Angeles, CA 90001" +217888,Wired Headphones,1,11.99,06/18/19 14:04,"450 Hill St, San Francisco, CA 94016" +217889,AA Batteries (4-pack),1,3.84,06/07/19 17:02,"842 Cedar St, Los Angeles, CA 90001" +217890,Apple Airpods Headphones,1,150,06/23/19 08:29,"946 Chestnut St, Seattle, WA 98101" +217891,USB-C Charging Cable,1,11.95,06/21/19 17:04,"173 Walnut St, Dallas, TX 75001" +217892,ThinkPad Laptop,1,999.99,06/10/19 10:59,"665 Pine St, New York City, NY 10001" +217893,AA Batteries (4-pack),1,3.84,06/26/19 13:41,"391 Maple St, Portland, OR 97035" +217894,AA Batteries (4-pack),1,3.84,06/17/19 16:39,"809 Cedar St, San Francisco, CA 94016" +217895,Wired Headphones,1,11.99,06/06/19 12:15,"240 River St, San Francisco, CA 94016" +217896,iPhone,1,700,06/01/19 13:17,"202 Cherry St, Seattle, WA 98101" +217896,Lightning Charging Cable,1,14.95,06/01/19 13:17,"202 Cherry St, Seattle, WA 98101" +217897,27in FHD Monitor,1,149.99,06/25/19 22:04,"429 Willow St, Dallas, TX 75001" +217898,Wired Headphones,1,11.99,06/07/19 22:53,"868 7th St, Austin, TX 73301" +217899,Apple Airpods Headphones,1,150,06/01/19 22:50,"644 Washington St, Atlanta, GA 30301" +217900,AAA Batteries (4-pack),1,2.99,06/12/19 21:09,"168 4th St, Los Angeles, CA 90001" +217901,USB-C Charging Cable,1,11.95,06/20/19 13:32,"904 Cedar St, Seattle, WA 98101" +217902,34in Ultrawide Monitor,1,379.99,06/14/19 16:14,"357 Ridge St, Los Angeles, CA 90001" +217903,iPhone,1,700,06/19/19 12:07,"931 Meadow St, Los Angeles, CA 90001" +217904,27in 4K Gaming Monitor,1,389.99,06/12/19 10:08,"612 5th St, Los Angeles, CA 90001" +217905,Apple Airpods Headphones,1,150,06/19/19 16:30,"539 1st St, Los Angeles, CA 90001" +217906,iPhone,1,700,06/28/19 16:51,"959 Wilson St, Seattle, WA 98101" +217907,iPhone,1,700,06/18/19 19:50,"11 Main St, Dallas, TX 75001" +217908,USB-C Charging Cable,1,11.95,06/14/19 14:27,"760 West St, New York City, NY 10001" +217909,Bose SoundSport Headphones,1,99.99,06/07/19 23:47,"779 Madison St, Atlanta, GA 30301" +217910,Apple Airpods Headphones,1,150,06/16/19 10:40,"351 8th St, San Francisco, CA 94016" +217911,USB-C Charging Cable,1,11.95,06/14/19 00:22,"944 Jefferson St, San Francisco, CA 94016" +217912,AAA Batteries (4-pack),4,2.99,06/03/19 15:50,"631 Wilson St, Dallas, TX 75001" +217913,Lightning Charging Cable,1,14.95,06/13/19 17:24,"400 1st St, Dallas, TX 75001" +217914,Apple Airpods Headphones,1,150,06/11/19 16:30,"451 North St, Boston, MA 02215" +217915,AA Batteries (4-pack),1,3.84,06/15/19 08:53,"998 Maple St, Los Angeles, CA 90001" +217916,20in Monitor,1,109.99,06/28/19 17:00,"533 Meadow St, San Francisco, CA 94016" +217917,AA Batteries (4-pack),2,3.84,06/08/19 23:45,"728 Cherry St, Los Angeles, CA 90001" +217918,ThinkPad Laptop,1,999.99,06/18/19 16:44,"952 10th St, San Francisco, CA 94016" +217919,Lightning Charging Cable,1,14.95,06/06/19 20:58,"344 Pine St, Los Angeles, CA 90001" +217920,AA Batteries (4-pack),2,3.84,06/14/19 12:21,"180 Jefferson St, San Francisco, CA 94016" +217921,USB-C Charging Cable,1,11.95,06/30/19 15:12,"284 Jackson St, New York City, NY 10001" +217922,AAA Batteries (4-pack),3,2.99,06/06/19 11:18,"747 Hickory St, Dallas, TX 75001" +217923,Lightning Charging Cable,1,14.95,06/29/19 11:07,"828 South St, Seattle, WA 98101" +217924,Wired Headphones,1,11.99,06/17/19 23:08,"376 Church St, Atlanta, GA 30301" +217925,27in 4K Gaming Monitor,1,389.99,06/01/19 22:34,"667 2nd St, Atlanta, GA 30301" +217926,27in FHD Monitor,1,149.99,06/25/19 11:31,"755 14th St, San Francisco, CA 94016" +217926,Google Phone,1,600,06/25/19 11:31,"755 14th St, San Francisco, CA 94016" +217927,AA Batteries (4-pack),2,3.84,06/17/19 12:37,"9 North St, San Francisco, CA 94016" +217928,LG Dryer,1,600.0,06/10/19 16:10,"358 Ridge St, Portland, OR 97035" +217929,USB-C Charging Cable,1,11.95,06/30/19 18:49,"567 Lincoln St, San Francisco, CA 94016" +217930,27in FHD Monitor,1,149.99,06/03/19 00:26,"810 8th St, San Francisco, CA 94016" +217931,Apple Airpods Headphones,1,150,06/16/19 12:19,"938 Center St, Portland, OR 97035" +217932,Bose SoundSport Headphones,1,99.99,06/09/19 19:48,"574 2nd St, Los Angeles, CA 90001" +217933,LG Dryer,1,600.0,06/30/19 20:31,"581 Meadow St, Dallas, TX 75001" +217934,Bose SoundSport Headphones,1,99.99,06/11/19 11:24,"126 Adams St, Portland, OR 97035" +217935,34in Ultrawide Monitor,1,379.99,06/04/19 21:06,"313 Cedar St, Los Angeles, CA 90001" +217936,AA Batteries (4-pack),2,3.84,06/16/19 19:07,"849 Washington St, San Francisco, CA 94016" +217937,Flatscreen TV,1,300,06/21/19 13:07,"190 6th St, New York City, NY 10001" +217938,Wired Headphones,1,11.99,06/25/19 15:29,"700 Hill St, Boston, MA 02215" +217939,34in Ultrawide Monitor,1,379.99,06/26/19 11:34,"724 10th St, Los Angeles, CA 90001" +217940,USB-C Charging Cable,1,11.95,06/18/19 21:41,"831 Cedar St, San Francisco, CA 94016" +217941,Wired Headphones,1,11.99,06/17/19 05:34,"898 7th St, Dallas, TX 75001" +217942,Lightning Charging Cable,1,14.95,06/21/19 15:24,"672 Forest St, Portland, OR 97035" +217943,Lightning Charging Cable,1,14.95,06/06/19 17:56,"547 Forest St, Los Angeles, CA 90001" +217944,Lightning Charging Cable,1,14.95,06/05/19 22:38,"406 Hill St, Boston, MA 02215" +217945,Lightning Charging Cable,1,14.95,06/18/19 13:25,"964 Washington St, Atlanta, GA 30301" +217946,USB-C Charging Cable,2,11.95,06/14/19 17:23,"863 Cedar St, New York City, NY 10001" +217947,Bose SoundSport Headphones,1,99.99,06/17/19 13:02,"998 Dogwood St, New York City, NY 10001" +217948,Lightning Charging Cable,1,14.95,06/16/19 20:46,"628 Jackson St, San Francisco, CA 94016" +217949,Wired Headphones,1,11.99,06/18/19 17:46,"950 13th St, Atlanta, GA 30301" +217950,Lightning Charging Cable,1,14.95,06/07/19 16:36,"33 Lakeview St, Portland, OR 97035" +217951,Vareebadd Phone,1,400,06/07/19 21:21,"631 5th St, Los Angeles, CA 90001" +217951,USB-C Charging Cable,2,11.95,06/07/19 21:21,"631 5th St, Los Angeles, CA 90001" +217952,Wired Headphones,1,11.99,06/22/19 09:53,"589 11th St, Atlanta, GA 30301" +217953,ThinkPad Laptop,1,999.99,06/03/19 01:22,"379 12th St, Los Angeles, CA 90001" +217954,Lightning Charging Cable,1,14.95,06/25/19 21:59,"445 Washington St, Austin, TX 73301" +217955,Lightning Charging Cable,1,14.95,06/06/19 15:33,"34 Ridge St, San Francisco, CA 94016" +217956,Bose SoundSport Headphones,1,99.99,06/01/19 14:49,"477 Johnson St, New York City, NY 10001" +217957,AAA Batteries (4-pack),1,2.99,06/19/19 13:36,"131 Lake St, San Francisco, CA 94016" +217958,Apple Airpods Headphones,1,150,06/29/19 19:45,"672 Madison St, New York City, NY 10001" +217959,Lightning Charging Cable,1,14.95,06/17/19 19:04,"52 Wilson St, Los Angeles, CA 90001" +217960,AAA Batteries (4-pack),2,2.99,06/29/19 17:28,"815 Cedar St, Boston, MA 02215" +217961,27in FHD Monitor,1,149.99,06/28/19 13:04,"76 Lake St, New York City, NY 10001" +217962,USB-C Charging Cable,1,11.95,06/17/19 12:50,"341 Main St, Seattle, WA 98101" +217963,AAA Batteries (4-pack),2,2.99,06/09/19 13:04,"878 Elm St, Austin, TX 73301" +217964,Bose SoundSport Headphones,1,99.99,06/22/19 13:27,"733 Wilson St, Boston, MA 02215" +217965,AA Batteries (4-pack),1,3.84,06/07/19 12:18,"295 Forest St, Dallas, TX 75001" +217966,AAA Batteries (4-pack),1,2.99,06/11/19 15:02,"677 Jackson St, Los Angeles, CA 90001" +217967,Wired Headphones,1,11.99,06/17/19 11:30,"270 1st St, Seattle, WA 98101" +217968,iPhone,1,700,06/02/19 10:30,"903 Chestnut St, Austin, TX 73301" +217968,Lightning Charging Cable,1,14.95,06/02/19 10:30,"903 Chestnut St, Austin, TX 73301" +217968,Apple Airpods Headphones,1,150,06/02/19 10:30,"903 Chestnut St, Austin, TX 73301" +217969,27in 4K Gaming Monitor,1,389.99,06/23/19 10:59,"872 River St, Boston, MA 02215" +217970,Wired Headphones,1,11.99,06/12/19 14:39,"163 2nd St, San Francisco, CA 94016" +217971,Apple Airpods Headphones,1,150,06/08/19 10:23,"781 Sunset St, Austin, TX 73301" +217972,Bose SoundSport Headphones,1,99.99,06/01/19 18:47,"302 Hickory St, San Francisco, CA 94016" +217973,27in FHD Monitor,1,149.99,06/04/19 22:02,"297 Hill St, San Francisco, CA 94016" +217974,AA Batteries (4-pack),1,3.84,06/30/19 16:19,"259 Elm St, Atlanta, GA 30301" +217975,Apple Airpods Headphones,1,150,06/22/19 19:43,"766 Lincoln St, Austin, TX 73301" +217976,Lightning Charging Cable,1,14.95,06/03/19 19:33,"33 Maple St, San Francisco, CA 94016" +217977,27in 4K Gaming Monitor,1,389.99,06/03/19 17:48,"715 Lake St, New York City, NY 10001" +217978,AA Batteries (4-pack),2,3.84,06/22/19 20:11,"314 Park St, San Francisco, CA 94016" +217979,iPhone,1,700,06/01/19 20:45,"327 Park St, Austin, TX 73301" +217980,Bose SoundSport Headphones,1,99.99,06/01/19 23:48,"273 Cedar St, Dallas, TX 75001" +217981,Bose SoundSport Headphones,1,99.99,06/11/19 09:09,"68 Madison St, Atlanta, GA 30301" +217982,AA Batteries (4-pack),2,3.84,06/27/19 09:52,"928 Cedar St, Seattle, WA 98101" +217983,Apple Airpods Headphones,1,150,06/16/19 17:05,"542 Madison St, San Francisco, CA 94016" +217984,USB-C Charging Cable,1,11.95,06/13/19 11:08,"740 Main St, New York City, NY 10001" +217985,AA Batteries (4-pack),3,3.84,06/15/19 16:35,"168 Washington St, San Francisco, CA 94016" +217986,AA Batteries (4-pack),4,3.84,06/24/19 09:08,"824 Pine St, San Francisco, CA 94016" +217987,Macbook Pro Laptop,1,1700,06/11/19 07:36,"211 Dogwood St, Boston, MA 02215" +217988,AAA Batteries (4-pack),1,2.99,06/13/19 07:24,"745 Lake St, Boston, MA 02215" +217989,USB-C Charging Cable,1,11.95,06/19/19 18:00,"697 Cherry St, Dallas, TX 75001" +217990,Wired Headphones,1,11.99,06/16/19 15:45,"878 12th St, Atlanta, GA 30301" +217991,Wired Headphones,1,11.99,06/19/19 14:47,"855 Main St, Dallas, TX 75001" +217992,AA Batteries (4-pack),1,3.84,06/01/19 20:31,"26 South St, Austin, TX 73301" +217993,AA Batteries (4-pack),1,3.84,06/09/19 22:16,"318 4th St, Seattle, WA 98101" +217994,LG Washing Machine,1,600.0,06/27/19 15:34,"438 Lake St, San Francisco, CA 94016" +217995,Apple Airpods Headphones,1,150,06/06/19 21:36,"883 South St, New York City, NY 10001" +217996,AAA Batteries (4-pack),1,2.99,06/25/19 18:20,"418 2nd St, New York City, NY 10001" +217997,AAA Batteries (4-pack),1,2.99,06/12/19 15:14,"963 River St, San Francisco, CA 94016" +217998,20in Monitor,1,109.99,06/01/19 11:07,"103 South St, San Francisco, CA 94016" +217999,AA Batteries (4-pack),1,3.84,06/23/19 17:03,"126 Willow St, Portland, OR 97035" +218000,27in FHD Monitor,1,149.99,06/19/19 18:12,"668 Elm St, Los Angeles, CA 90001" +218001,Bose SoundSport Headphones,1,99.99,06/06/19 10:29,"992 South St, Los Angeles, CA 90001" +218002,Bose SoundSport Headphones,1,99.99,06/27/19 00:47,"475 Jackson St, San Francisco, CA 94016" +218003,27in FHD Monitor,1,149.99,06/15/19 11:35,"844 Dogwood St, San Francisco, CA 94016" +218004,34in Ultrawide Monitor,1,379.99,06/26/19 14:25,"398 Ridge St, Austin, TX 73301" +218005,AAA Batteries (4-pack),1,2.99,06/12/19 23:41,"401 Cherry St, Los Angeles, CA 90001" +218006,Apple Airpods Headphones,1,150,06/03/19 21:28,"10 Jackson St, Boston, MA 02215" +218007,Apple Airpods Headphones,1,150,06/24/19 18:15,"170 Walnut St, New York City, NY 10001" +218008,AA Batteries (4-pack),1,3.84,06/14/19 16:51,"776 Cedar St, Los Angeles, CA 90001" +218009,AAA Batteries (4-pack),2,2.99,06/13/19 13:50,"832 Jefferson St, New York City, NY 10001" +218010,Apple Airpods Headphones,1,150,06/05/19 18:43,"943 River St, Los Angeles, CA 90001" +218011,Bose SoundSport Headphones,1,99.99,06/01/19 22:10,"338 10th St, New York City, NY 10001" +218012,Apple Airpods Headphones,1,150,06/17/19 21:02,"669 Spruce St, San Francisco, CA 94016" +218013,27in 4K Gaming Monitor,1,389.99,06/06/19 03:39,"870 11th St, Portland, ME 04101" +218014,AA Batteries (4-pack),1,3.84,06/26/19 16:42,"122 Jackson St, New York City, NY 10001" +218015,Wired Headphones,1,11.99,06/29/19 07:03,"953 Wilson St, Los Angeles, CA 90001" +218016,AA Batteries (4-pack),1,3.84,06/23/19 22:30,"741 South St, New York City, NY 10001" +218017,AA Batteries (4-pack),1,3.84,06/08/19 20:37,"703 8th St, Boston, MA 02215" +218018,Lightning Charging Cable,2,14.95,06/29/19 12:33,"115 Lakeview St, Seattle, WA 98101" +218019,Macbook Pro Laptop,1,1700,06/21/19 15:22,"522 Spruce St, San Francisco, CA 94016" +218020,Apple Airpods Headphones,1,150,06/30/19 17:25,"761 Hickory St, San Francisco, CA 94016" +218021,Macbook Pro Laptop,1,1700,06/30/19 12:09,"697 14th St, Boston, MA 02215" +218022,AA Batteries (4-pack),2,3.84,06/05/19 23:55,"154 2nd St, Los Angeles, CA 90001" +218023,Vareebadd Phone,1,400,06/11/19 20:13,"573 Johnson St, Boston, MA 02215" +218024,Bose SoundSport Headphones,1,99.99,06/17/19 09:11,"309 Wilson St, Dallas, TX 75001" +218025,iPhone,1,700,06/12/19 11:40,"284 Johnson St, New York City, NY 10001" +218026,AAA Batteries (4-pack),1,2.99,06/14/19 21:43,"934 Dogwood St, San Francisco, CA 94016" +218027,27in 4K Gaming Monitor,1,389.99,06/20/19 21:17,"475 Meadow St, New York City, NY 10001" +218028,Apple Airpods Headphones,1,150,06/05/19 17:53,"609 7th St, New York City, NY 10001" +218029,Flatscreen TV,1,300,06/07/19 13:01,"951 13th St, Los Angeles, CA 90001" +218030,Wired Headphones,1,11.99,06/06/19 20:41,"701 Willow St, Seattle, WA 98101" +218031,AAA Batteries (4-pack),2,2.99,06/04/19 09:32,"297 Lakeview St, Seattle, WA 98101" +218032,USB-C Charging Cable,1,11.95,06/06/19 16:07,"173 Meadow St, San Francisco, CA 94016" +218033,AAA Batteries (4-pack),1,2.99,06/01/19 11:17,"304 4th St, San Francisco, CA 94016" +218034,iPhone,1,700,06/11/19 18:23,"377 7th St, New York City, NY 10001" +218035,USB-C Charging Cable,1,11.95,06/12/19 18:46,"912 West St, Atlanta, GA 30301" +218036,AAA Batteries (4-pack),1,2.99,06/04/19 17:37,"968 West St, Los Angeles, CA 90001" +218037,Bose SoundSport Headphones,1,99.99,06/29/19 16:07,"794 Spruce St, Portland, ME 04101" +218038,Wired Headphones,1,11.99,06/14/19 20:21,"856 Lincoln St, Los Angeles, CA 90001" +218039,USB-C Charging Cable,1,11.95,06/25/19 21:22,"608 9th St, Seattle, WA 98101" +218040,27in FHD Monitor,1,149.99,06/05/19 22:19,"455 12th St, San Francisco, CA 94016" +218041,AA Batteries (4-pack),3,3.84,06/14/19 15:58,"232 Highland St, San Francisco, CA 94016" +218042,Lightning Charging Cable,1,14.95,06/21/19 07:29,"684 Dogwood St, Austin, TX 73301" +218043,AAA Batteries (4-pack),2,2.99,06/24/19 13:31,"937 Spruce St, Atlanta, GA 30301" +218044,Lightning Charging Cable,1,14.95,06/28/19 23:58,"622 5th St, New York City, NY 10001" +218045,Lightning Charging Cable,1,14.95,06/04/19 13:12,"534 Elm St, Los Angeles, CA 90001" +218046,Macbook Pro Laptop,1,1700,06/19/19 16:13,"152 South St, Boston, MA 02215" +218047,Lightning Charging Cable,1,14.95,06/23/19 09:47,"305 Jefferson St, Los Angeles, CA 90001" +218048,Apple Airpods Headphones,1,150,06/29/19 22:54,"197 6th St, New York City, NY 10001" +218049,Bose SoundSport Headphones,1,99.99,06/30/19 15:48,"571 Elm St, New York City, NY 10001" +218050,Flatscreen TV,1,300,06/20/19 00:09,"233 Church St, San Francisco, CA 94016" +218051,USB-C Charging Cable,1,11.95,06/20/19 15:49,"215 13th St, Austin, TX 73301" +218052,Google Phone,1,600,06/07/19 14:17,"881 Adams St, Seattle, WA 98101" +218053,20in Monitor,1,109.99,06/07/19 10:16,"330 Walnut St, San Francisco, CA 94016" +218054,AA Batteries (4-pack),1,3.84,06/05/19 17:59,"472 10th St, Portland, OR 97035" +218055,Lightning Charging Cable,1,14.95,06/15/19 19:33,"809 Main St, San Francisco, CA 94016" +218056,AAA Batteries (4-pack),2,2.99,06/08/19 20:28,"615 South St, San Francisco, CA 94016" +218057,Wired Headphones,1,11.99,06/23/19 00:17,"357 Wilson St, New York City, NY 10001" +218058,USB-C Charging Cable,2,11.95,06/23/19 17:48,"170 Elm St, Los Angeles, CA 90001" +218059,AAA Batteries (4-pack),1,2.99,06/30/19 12:20,"260 Lake St, San Francisco, CA 94016" +218060,USB-C Charging Cable,1,11.95,06/20/19 07:59,"308 5th St, Los Angeles, CA 90001" +218061,20in Monitor,1,109.99,06/23/19 08:59,"966 North St, San Francisco, CA 94016" +218062,20in Monitor,1,109.99,06/07/19 16:17,"188 North St, San Francisco, CA 94016" +218063,AAA Batteries (4-pack),3,2.99,06/04/19 15:17,"653 Willow St, New York City, NY 10001" +218064,Lightning Charging Cable,1,14.95,06/17/19 09:42,"503 North St, Atlanta, GA 30301" +218065,Apple Airpods Headphones,1,150,06/18/19 11:27,"687 West St, San Francisco, CA 94016" +218066,AA Batteries (4-pack),1,3.84,06/21/19 23:38,"537 12th St, New York City, NY 10001" +218067,Google Phone,1,600,06/05/19 11:14,"739 Chestnut St, Boston, MA 02215" +218067,Bose SoundSport Headphones,1,99.99,06/05/19 11:14,"739 Chestnut St, Boston, MA 02215" +218068,AAA Batteries (4-pack),3,2.99,06/25/19 17:29,"315 2nd St, Atlanta, GA 30301" +218069,Apple Airpods Headphones,1,150,06/15/19 11:41,"186 Walnut St, Boston, MA 02215" +218070,Wired Headphones,1,11.99,06/08/19 15:34,"319 7th St, Seattle, WA 98101" +218071,USB-C Charging Cable,1,11.95,06/18/19 17:45,"381 2nd St, New York City, NY 10001" +218072,ThinkPad Laptop,1,999.99,06/07/19 11:24,"831 Lake St, Boston, MA 02215" +218073,34in Ultrawide Monitor,1,379.99,06/13/19 22:24,"320 Highland St, Los Angeles, CA 90001" +218074,Lightning Charging Cable,1,14.95,06/03/19 20:21,"907 Walnut St, Portland, OR 97035" +218075,Lightning Charging Cable,1,14.95,06/05/19 08:39,"642 1st St, Los Angeles, CA 90001" +218076,Apple Airpods Headphones,1,150,06/07/19 21:16,"721 6th St, Portland, OR 97035" +218077,27in FHD Monitor,1,149.99,06/07/19 18:10,"662 10th St, Atlanta, GA 30301" +218078,USB-C Charging Cable,1,11.95,06/09/19 06:56,"669 Sunset St, Los Angeles, CA 90001" +218079,AAA Batteries (4-pack),3,2.99,06/04/19 09:25,"601 Main St, San Francisco, CA 94016" +218080,Apple Airpods Headphones,1,150,06/30/19 23:50,"780 12th St, Atlanta, GA 30301" +218081,Apple Airpods Headphones,1,150,06/07/19 18:08,"613 12th St, Portland, ME 04101" +218082,AA Batteries (4-pack),1,3.84,06/08/19 08:40,"376 Pine St, Los Angeles, CA 90001" +218083,Bose SoundSport Headphones,1,99.99,06/22/19 14:24,"542 5th St, Dallas, TX 75001" +218084,Apple Airpods Headphones,1,150,06/30/19 10:37,"2 West St, Dallas, TX 75001" +218085,Google Phone,1,600,06/19/19 17:07,"919 Park St, New York City, NY 10001" +218086,ThinkPad Laptop,1,999.99,06/02/19 18:56,"767 Lake St, Seattle, WA 98101" +218087,Lightning Charging Cable,1,14.95,06/09/19 14:35,"77 Lake St, Seattle, WA 98101" +218088,Apple Airpods Headphones,1,150,06/27/19 21:57,"881 Meadow St, Dallas, TX 75001" +218089,AAA Batteries (4-pack),1,2.99,06/04/19 05:20,"350 Johnson St, New York City, NY 10001" +218090,AA Batteries (4-pack),2,3.84,06/13/19 07:50,"340 Hickory St, Los Angeles, CA 90001" +218091,Lightning Charging Cable,1,14.95,06/10/19 20:52,"580 Hickory St, New York City, NY 10001" +218092,Bose SoundSport Headphones,1,99.99,06/10/19 21:48,"313 9th St, Atlanta, GA 30301" +218093,Apple Airpods Headphones,1,150,06/12/19 22:13,"853 Madison St, New York City, NY 10001" +218094,Macbook Pro Laptop,1,1700,06/17/19 13:30,"319 Ridge St, Portland, OR 97035" +218095,Apple Airpods Headphones,1,150,06/29/19 19:33,"653 6th St, Atlanta, GA 30301" +218096,Lightning Charging Cable,1,14.95,06/11/19 22:50,"317 Cedar St, New York City, NY 10001" +218097,Lightning Charging Cable,1,14.95,06/07/19 17:54,"142 Ridge St, Atlanta, GA 30301" +218098,Macbook Pro Laptop,1,1700,06/14/19 16:51,"994 Jackson St, Dallas, TX 75001" +218099,iPhone,1,700,06/27/19 17:59,"605 Willow St, San Francisco, CA 94016" +218100,Wired Headphones,1,11.99,06/09/19 07:43,"61 Madison St, San Francisco, CA 94016" +218101,Wired Headphones,1,11.99,06/20/19 11:55,"262 Hill St, Boston, MA 02215" +218102,Bose SoundSport Headphones,1,99.99,06/29/19 06:09,"543 River St, Portland, OR 97035" +218103,iPhone,1,700,06/19/19 11:52,"951 Walnut St, Los Angeles, CA 90001" +218104,Bose SoundSport Headphones,1,99.99,06/12/19 23:11,"425 Walnut St, Los Angeles, CA 90001" +218105,AAA Batteries (4-pack),1,2.99,06/07/19 11:41,"615 8th St, Portland, OR 97035" +218106,Flatscreen TV,1,300,06/10/19 18:10,"502 Johnson St, New York City, NY 10001" +218107,Wired Headphones,1,11.99,06/27/19 09:37,"172 1st St, New York City, NY 10001" +218108,Apple Airpods Headphones,1,150,06/05/19 13:53,"145 Forest St, New York City, NY 10001" +218109,20in Monitor,1,109.99,06/27/19 09:58,"620 Lake St, San Francisco, CA 94016" +218110,AAA Batteries (4-pack),2,2.99,06/16/19 09:36,"943 Chestnut St, Dallas, TX 75001" +218111,Vareebadd Phone,1,400,06/02/19 16:26,"961 Maple St, New York City, NY 10001" +218112,27in FHD Monitor,1,149.99,06/17/19 02:18,"159 Lakeview St, Seattle, WA 98101" +218113,Wired Headphones,1,11.99,06/30/19 12:36,"749 Pine St, San Francisco, CA 94016" +218114,AA Batteries (4-pack),1,3.84,06/01/19 20:09,"645 Chestnut St, Dallas, TX 75001" +218115,Apple Airpods Headphones,1,150,06/22/19 17:18,"206 Main St, Los Angeles, CA 90001" +218116,Lightning Charging Cable,1,14.95,06/07/19 02:06,"886 Ridge St, New York City, NY 10001" +218117,Wired Headphones,1,11.99,06/21/19 10:49,"964 12th St, Atlanta, GA 30301" +218118,AAA Batteries (4-pack),2,2.99,06/19/19 20:47,"643 8th St, Portland, ME 04101" +218119,USB-C Charging Cable,1,11.95,06/24/19 17:08,"62 Hickory St, Los Angeles, CA 90001" +218120,USB-C Charging Cable,1,11.95,06/29/19 12:07,"738 Jackson St, Boston, MA 02215" +218121,Google Phone,1,600,06/14/19 14:38,"640 Dogwood St, Seattle, WA 98101" +218122,USB-C Charging Cable,1,11.95,06/10/19 11:14,"522 Johnson St, Boston, MA 02215" +218123,34in Ultrawide Monitor,1,379.99,06/05/19 09:35,"475 Jefferson St, Portland, OR 97035" +218124,Bose SoundSport Headphones,1,99.99,06/20/19 17:04,"455 6th St, San Francisco, CA 94016" +218125,Bose SoundSport Headphones,1,99.99,06/23/19 14:18,"822 8th St, New York City, NY 10001" +218126,iPhone,1,700,06/24/19 22:01,"749 River St, Los Angeles, CA 90001" +218127,AA Batteries (4-pack),1,3.84,06/20/19 10:14,"640 Sunset St, San Francisco, CA 94016" +218128,Bose SoundSport Headphones,1,99.99,06/26/19 18:18,"409 Adams St, San Francisco, CA 94016" +218129,AAA Batteries (4-pack),3,2.99,06/28/19 11:10,"783 Center St, Atlanta, GA 30301" +218130,34in Ultrawide Monitor,1,379.99,06/18/19 12:40,"427 North St, San Francisco, CA 94016" +218131,USB-C Charging Cable,1,11.95,06/18/19 09:11,"839 Park St, Boston, MA 02215" +218132,USB-C Charging Cable,2,11.95,06/26/19 22:15,"327 Elm St, Seattle, WA 98101" +218133,Macbook Pro Laptop,1,1700,06/06/19 17:05,"654 7th St, San Francisco, CA 94016" +218134,Wired Headphones,1,11.99,06/17/19 13:53,"462 Highland St, Dallas, TX 75001" +218135,Macbook Pro Laptop,1,1700,06/21/19 14:54,"66 Jefferson St, Seattle, WA 98101" +218136,Flatscreen TV,1,300,06/14/19 09:14,"396 Cherry St, Atlanta, GA 30301" +218137,AAA Batteries (4-pack),1,2.99,06/27/19 23:34,"904 5th St, Portland, OR 97035" +218138,Bose SoundSport Headphones,1,99.99,06/18/19 12:38,"388 9th St, Austin, TX 73301" +218139,AA Batteries (4-pack),8,3.84,06/08/19 14:27,"410 Highland St, Los Angeles, CA 90001" +218140,AAA Batteries (4-pack),1,2.99,06/20/19 17:05,"278 Madison St, Austin, TX 73301" +218141,Lightning Charging Cable,1,14.95,06/09/19 18:47,"510 5th St, San Francisco, CA 94016" +218142,Wired Headphones,1,11.99,06/20/19 12:28,"805 Hickory St, Seattle, WA 98101" +218143,AAA Batteries (4-pack),2,2.99,06/19/19 21:20,"452 Jackson St, Los Angeles, CA 90001" +218144,Bose SoundSport Headphones,1,99.99,06/25/19 17:03,"801 7th St, Boston, MA 02215" +218145,Bose SoundSport Headphones,1,99.99,06/15/19 14:00,"853 9th St, Los Angeles, CA 90001" +218146,27in 4K Gaming Monitor,1,389.99,06/14/19 15:39,"778 Chestnut St, Boston, MA 02215" +218147,Lightning Charging Cable,1,14.95,06/12/19 16:50,"567 Highland St, Los Angeles, CA 90001" +218148,USB-C Charging Cable,1,11.95,06/06/19 20:33,"403 2nd St, Dallas, TX 75001" +218149,Flatscreen TV,1,300,06/30/19 23:37,"866 River St, Austin, TX 73301" +218150,AA Batteries (4-pack),1,3.84,06/26/19 14:11,"926 11th St, Austin, TX 73301" +218151,Lightning Charging Cable,1,14.95,06/07/19 13:36,"964 Ridge St, San Francisco, CA 94016" +218152,Apple Airpods Headphones,1,150,06/09/19 07:45,"234 12th St, Los Angeles, CA 90001" +218153,Lightning Charging Cable,1,14.95,06/20/19 08:24,"987 Jefferson St, Portland, OR 97035" +218154,Wired Headphones,2,11.99,06/04/19 12:12,"426 Willow St, Boston, MA 02215" +218155,Bose SoundSport Headphones,1,99.99,06/12/19 22:07,"650 2nd St, San Francisco, CA 94016" +218156,AA Batteries (4-pack),1,3.84,06/01/19 13:38,"856 Lake St, Seattle, WA 98101" +218157,27in 4K Gaming Monitor,1,389.99,06/19/19 15:11,"4 South St, San Francisco, CA 94016" +218158,USB-C Charging Cable,2,11.95,06/02/19 23:14,"53 Washington St, Boston, MA 02215" +218159,AA Batteries (4-pack),2,3.84,06/01/19 19:47,"8 Spruce St, Boston, MA 02215" +218160,Wired Headphones,1,11.99,06/12/19 09:44,"926 13th St, Portland, OR 97035" +218161,Lightning Charging Cable,1,14.95,06/09/19 21:30,"779 Adams St, San Francisco, CA 94016" +218162,27in 4K Gaming Monitor,1,389.99,06/20/19 03:25,"105 Maple St, San Francisco, CA 94016" +218163,iPhone,1,700,06/09/19 01:00,"588 Center St, Los Angeles, CA 90001" +218163,Wired Headphones,2,11.99,06/09/19 01:00,"588 Center St, Los Angeles, CA 90001" +218164,Macbook Pro Laptop,1,1700,06/26/19 17:19,"942 Jackson St, Atlanta, GA 30301" +218165,AAA Batteries (4-pack),1,2.99,06/16/19 17:39,"9 5th St, Boston, MA 02215" +218166,AA Batteries (4-pack),2,3.84,06/16/19 08:49,"202 Lakeview St, New York City, NY 10001" +218167,27in 4K Gaming Monitor,1,389.99,06/13/19 10:41,"378 11th St, Los Angeles, CA 90001" +218168,27in FHD Monitor,1,149.99,06/27/19 10:25,"778 Elm St, Dallas, TX 75001" +218169,AAA Batteries (4-pack),1,2.99,06/05/19 22:29,"982 Jefferson St, Portland, OR 97035" +218170,Lightning Charging Cable,1,14.95,06/23/19 11:42,"905 5th St, San Francisco, CA 94016" +218171,Lightning Charging Cable,1,14.95,06/26/19 08:21,"209 Main St, Atlanta, GA 30301" +218172,USB-C Charging Cable,1,11.95,06/14/19 18:57,"379 Elm St, New York City, NY 10001" +218173,Lightning Charging Cable,1,14.95,06/11/19 16:28,"497 South St, Atlanta, GA 30301" +218174,USB-C Charging Cable,1,11.95,06/01/19 08:00,"318 Park St, Los Angeles, CA 90001" +218175,AA Batteries (4-pack),1,3.84,06/07/19 15:09,"780 Ridge St, San Francisco, CA 94016" +218176,Lightning Charging Cable,1,14.95,06/11/19 14:36,"84 Walnut St, Los Angeles, CA 90001" +218177,Lightning Charging Cable,1,14.95,06/01/19 15:30,"784 West St, Portland, OR 97035" +218178,LG Dryer,1,600.0,06/27/19 21:40,"69 Highland St, Los Angeles, CA 90001" +218179,Lightning Charging Cable,1,14.95,06/28/19 07:57,"967 Park St, New York City, NY 10001" +218180,Lightning Charging Cable,1,14.95,06/19/19 11:44,"382 Cedar St, Los Angeles, CA 90001" +218181,Bose SoundSport Headphones,1,99.99,06/10/19 22:36,"309 Lake St, San Francisco, CA 94016" +218182,Google Phone,1,600,06/07/19 22:10,"316 Spruce St, Portland, OR 97035" +218183,iPhone,1,700,06/03/19 14:43,"375 Wilson St, San Francisco, CA 94016" +218184,USB-C Charging Cable,2,11.95,06/19/19 08:56,"760 Center St, Portland, OR 97035" +218185,AAA Batteries (4-pack),1,2.99,06/19/19 12:26,"465 6th St, New York City, NY 10001" +218186,AAA Batteries (4-pack),1,2.99,06/16/19 23:15,"953 Center St, Seattle, WA 98101" +218187,USB-C Charging Cable,1,11.95,06/25/19 12:17,"417 14th St, Boston, MA 02215" +218188,Lightning Charging Cable,1,14.95,06/26/19 10:20,"912 Park St, Los Angeles, CA 90001" +218189,iPhone,1,700,06/18/19 18:19,"557 West St, Atlanta, GA 30301" +218190,Lightning Charging Cable,1,14.95,06/20/19 08:35,"410 2nd St, Los Angeles, CA 90001" +218191,27in FHD Monitor,1,149.99,06/18/19 22:04,"234 Johnson St, San Francisco, CA 94016" +218192,Apple Airpods Headphones,1,150,06/19/19 15:14,"698 7th St, Boston, MA 02215" +218193,AA Batteries (4-pack),1,3.84,06/20/19 18:41,"214 Church St, New York City, NY 10001" +218194,Lightning Charging Cable,1,14.95,06/07/19 21:05,"181 River St, New York City, NY 10001" +218195,AAA Batteries (4-pack),1,2.99,06/30/19 14:24,"430 Main St, San Francisco, CA 94016" +218196,USB-C Charging Cable,1,11.95,06/19/19 21:22,"494 Elm St, Portland, OR 97035" +218197,USB-C Charging Cable,1,11.95,06/22/19 16:46,"960 2nd St, Dallas, TX 75001" +218198,Wired Headphones,1,11.99,06/03/19 20:18,"316 Pine St, San Francisco, CA 94016" +218199,AAA Batteries (4-pack),1,2.99,06/12/19 20:08,"137 Center St, Atlanta, GA 30301" +218200,USB-C Charging Cable,1,11.95,06/30/19 02:03,"529 Ridge St, San Francisco, CA 94016" +218201,27in FHD Monitor,1,149.99,06/23/19 12:50,"514 5th St, Boston, MA 02215" +218202,Bose SoundSport Headphones,1,99.99,06/29/19 14:39,"570 Chestnut St, Dallas, TX 75001" +218203,USB-C Charging Cable,1,11.95,06/18/19 14:28,"974 Highland St, San Francisco, CA 94016" +218204,Bose SoundSport Headphones,1,99.99,06/28/19 08:48,"803 Jackson St, Los Angeles, CA 90001" +218205,AA Batteries (4-pack),1,3.84,06/03/19 13:17,"390 Main St, New York City, NY 10001" +218206,USB-C Charging Cable,1,11.95,06/11/19 22:00,"558 Dogwood St, Los Angeles, CA 90001" +218207,AAA Batteries (4-pack),1,2.99,06/17/19 13:34,"115 Jefferson St, Portland, OR 97035" +218208,AA Batteries (4-pack),1,3.84,06/18/19 03:17,"35 Meadow St, San Francisco, CA 94016" +218208,AA Batteries (4-pack),1,3.84,06/18/19 03:17,"35 Meadow St, San Francisco, CA 94016" +218209,AA Batteries (4-pack),1,3.84,06/22/19 19:08,"323 North St, San Francisco, CA 94016" +218209,20in Monitor,1,109.99,06/22/19 19:08,"323 North St, San Francisco, CA 94016" +218210,Lightning Charging Cable,1,14.95,06/24/19 13:57,"764 13th St, Boston, MA 02215" +218211,AA Batteries (4-pack),2,3.84,06/08/19 17:43,"611 8th St, San Francisco, CA 94016" +218212,USB-C Charging Cable,1,11.95,06/18/19 12:58,"79 Meadow St, Seattle, WA 98101" +218213,USB-C Charging Cable,1,11.95,06/16/19 13:01,"144 Washington St, Boston, MA 02215" +218214,ThinkPad Laptop,1,999.99,06/23/19 16:57,"982 Lake St, Seattle, WA 98101" +218215,20in Monitor,1,109.99,06/02/19 22:22,"662 Sunset St, Los Angeles, CA 90001" +218215,34in Ultrawide Monitor,1,379.99,06/02/19 22:22,"662 Sunset St, Los Angeles, CA 90001" +218216,34in Ultrawide Monitor,1,379.99,06/22/19 11:22,"45 Cherry St, Los Angeles, CA 90001" +218217,USB-C Charging Cable,1,11.95,06/05/19 14:46,"28 Walnut St, San Francisco, CA 94016" +218218,Lightning Charging Cable,1,14.95,06/24/19 13:31,"940 Spruce St, Boston, MA 02215" +218219,Apple Airpods Headphones,1,150,06/01/19 18:58,"360 River St, Dallas, TX 75001" +218220,Apple Airpods Headphones,1,150,06/06/19 20:35,"410 Lincoln St, San Francisco, CA 94016" +218221,Lightning Charging Cable,1,14.95,06/15/19 10:09,"407 Washington St, San Francisco, CA 94016" +218222,Lightning Charging Cable,1,14.95,06/05/19 22:36,"696 South St, Boston, MA 02215" +218223,Google Phone,1,600,06/05/19 22:04,"764 Maple St, Boston, MA 02215" +218224,AA Batteries (4-pack),1,3.84,06/25/19 10:44,"242 Sunset St, Seattle, WA 98101" +218225,iPhone,1,700,06/10/19 21:42,"78 8th St, New York City, NY 10001" +218226,USB-C Charging Cable,1,11.95,06/02/19 12:18,"378 Johnson St, Dallas, TX 75001" +218227,Google Phone,1,600,06/15/19 11:15,"140 Lincoln St, San Francisco, CA 94016" +218228,Lightning Charging Cable,1,14.95,06/02/19 12:05,"540 13th St, Atlanta, GA 30301" +218229,AAA Batteries (4-pack),1,2.99,06/01/19 09:37,"794 Center St, Los Angeles, CA 90001" +218230,USB-C Charging Cable,1,11.95,06/19/19 21:39,"595 Center St, Boston, MA 02215" +218231,AA Batteries (4-pack),1,3.84,06/30/19 15:18,"752 Wilson St, Austin, TX 73301" +218232,AA Batteries (4-pack),1,3.84,06/10/19 17:57,"26 Pine St, Austin, TX 73301" +218233,ThinkPad Laptop,1,999.99,06/04/19 08:49,"645 4th St, San Francisco, CA 94016" +218234,Lightning Charging Cable,1,14.95,06/28/19 21:11,"196 Highland St, Atlanta, GA 30301" +218235,AAA Batteries (4-pack),1,2.99,06/03/19 21:36,"38 Center St, Boston, MA 02215" +218236,Bose SoundSport Headphones,1,99.99,06/19/19 19:21,"203 5th St, San Francisco, CA 94016" +218237,27in 4K Gaming Monitor,1,389.99,06/09/19 16:13,"838 Forest St, San Francisco, CA 94016" +218238,AA Batteries (4-pack),1,3.84,06/03/19 07:25,"366 Center St, Atlanta, GA 30301" +218239,AAA Batteries (4-pack),2,2.99,06/28/19 20:23,"711 5th St, New York City, NY 10001" +218240,Apple Airpods Headphones,1,150,06/25/19 21:07,"761 Washington St, San Francisco, CA 94016" +218241,34in Ultrawide Monitor,1,379.99,06/10/19 15:35,"847 Hickory St, San Francisco, CA 94016" +218242,USB-C Charging Cable,1,11.95,06/17/19 10:10,"905 11th St, Los Angeles, CA 90001" +218243,27in 4K Gaming Monitor,1,389.99,06/04/19 23:18,"512 Willow St, Seattle, WA 98101" +218244,Bose SoundSport Headphones,1,99.99,06/14/19 09:05,"900 6th St, New York City, NY 10001" +218245,iPhone,1,700,06/10/19 13:53,"894 Adams St, Austin, TX 73301" +218246,Google Phone,1,600,06/24/19 11:31,"303 Pine St, San Francisco, CA 94016" +218247,Wired Headphones,1,11.99,06/15/19 21:29,"828 4th St, New York City, NY 10001" +218248,AAA Batteries (4-pack),1,2.99,06/18/19 12:25,"489 Johnson St, San Francisco, CA 94016" +218249,ThinkPad Laptop,1,999.99,06/29/19 15:37,"11 Main St, Seattle, WA 98101" +218250,iPhone,1,700,06/27/19 11:21,"644 9th St, New York City, NY 10001" +218251,Wired Headphones,1,11.99,06/18/19 18:37,"491 Adams St, Portland, OR 97035" +218252,Lightning Charging Cable,1,14.95,06/07/19 11:48,"841 Spruce St, Atlanta, GA 30301" +218253,Lightning Charging Cable,1,14.95,06/27/19 16:51,"227 Ridge St, San Francisco, CA 94016" +218254,AAA Batteries (4-pack),2,2.99,06/25/19 16:40,"943 Madison St, San Francisco, CA 94016" +218255,Bose SoundSport Headphones,1,99.99,06/19/19 23:51,"861 Walnut St, Boston, MA 02215" +218256,iPhone,1,700,06/23/19 11:46,"914 Washington St, San Francisco, CA 94016" +218257,Wired Headphones,1,11.99,06/25/19 21:26,"768 Lakeview St, San Francisco, CA 94016" +218258,20in Monitor,1,109.99,06/28/19 12:28,"514 Jackson St, Boston, MA 02215" +218259,USB-C Charging Cable,1,11.95,06/14/19 14:33,"934 Madison St, San Francisco, CA 94016" +218260,Lightning Charging Cable,1,14.95,06/17/19 13:23,"17 1st St, Los Angeles, CA 90001" +218261,AA Batteries (4-pack),1,3.84,06/09/19 12:43,"617 Wilson St, San Francisco, CA 94016" +218262,AA Batteries (4-pack),1,3.84,06/03/19 18:43,"785 Maple St, Boston, MA 02215" +218263,Lightning Charging Cable,1,14.95,06/14/19 19:54,"472 Church St, San Francisco, CA 94016" +218264,27in FHD Monitor,2,149.99,06/04/19 11:51,"193 Jackson St, San Francisco, CA 94016" +218265,Lightning Charging Cable,1,14.95,06/23/19 06:44,"585 Center St, Dallas, TX 75001" +218266,Lightning Charging Cable,1,14.95,06/07/19 13:23,"156 South St, Los Angeles, CA 90001" +218267,Apple Airpods Headphones,1,150,06/13/19 21:00,"642 Lake St, Los Angeles, CA 90001" +218268,27in 4K Gaming Monitor,1,389.99,06/09/19 22:26,"389 Jefferson St, San Francisco, CA 94016" +218269,USB-C Charging Cable,1,11.95,06/24/19 10:25,"320 Hickory St, San Francisco, CA 94016" +218270,Lightning Charging Cable,1,14.95,06/09/19 05:40,"333 2nd St, Los Angeles, CA 90001" +218271,Apple Airpods Headphones,1,150,06/20/19 21:13,"369 2nd St, Seattle, WA 98101" +218272,AA Batteries (4-pack),1,3.84,06/06/19 16:23,"533 5th St, San Francisco, CA 94016" +218273,iPhone,1,700,06/22/19 14:41,"944 13th St, Boston, MA 02215" +218274,AAA Batteries (4-pack),1,2.99,06/18/19 20:35,"98 Main St, Atlanta, GA 30301" +218275,27in FHD Monitor,1,149.99,06/14/19 23:03,"16 Meadow St, Los Angeles, CA 90001" +218276,Lightning Charging Cable,1,14.95,06/16/19 14:39,"834 Lakeview St, Atlanta, GA 30301" +218277,Lightning Charging Cable,1,14.95,06/17/19 15:35,"826 Jefferson St, Seattle, WA 98101" +218278,Bose SoundSport Headphones,1,99.99,06/05/19 20:35,"748 Jackson St, Los Angeles, CA 90001" +218279,ThinkPad Laptop,1,999.99,06/20/19 14:02,"128 Highland St, Boston, MA 02215" +218280,27in FHD Monitor,1,149.99,06/30/19 12:15,"720 Center St, Boston, MA 02215" +218281,Apple Airpods Headphones,1,150,06/24/19 21:19,"585 Main St, Portland, OR 97035" +218282,USB-C Charging Cable,1,11.95,06/17/19 15:22,"523 8th St, Seattle, WA 98101" +218283,Bose SoundSport Headphones,1,99.99,06/29/19 23:25,"294 Adams St, Los Angeles, CA 90001" +218284,Lightning Charging Cable,1,14.95,06/25/19 12:05,"425 2nd St, San Francisco, CA 94016" +218285,USB-C Charging Cable,1,11.95,06/25/19 10:05,"92 Center St, San Francisco, CA 94016" +218286,Vareebadd Phone,1,400,06/14/19 01:35,"822 Center St, Boston, MA 02215" +218287,Bose SoundSport Headphones,1,99.99,06/28/19 21:21,"543 Park St, San Francisco, CA 94016" +218288,iPhone,1,700,06/16/19 15:17,"380 Willow St, Portland, OR 97035" +218288,Apple Airpods Headphones,1,150,06/16/19 15:17,"380 Willow St, Portland, OR 97035" +218289,20in Monitor,1,109.99,06/16/19 15:22,"371 North St, Seattle, WA 98101" +218290,Apple Airpods Headphones,1,150,06/20/19 17:27,"292 7th St, Seattle, WA 98101" +218291,iPhone,1,700,06/14/19 17:45,"176 Cherry St, Boston, MA 02215" +218291,Apple Airpods Headphones,1,150,06/14/19 17:45,"176 Cherry St, Boston, MA 02215" +218292,34in Ultrawide Monitor,1,379.99,06/12/19 19:08,"137 Hill St, New York City, NY 10001" +218293,Google Phone,1,600,06/21/19 18:02,"678 Wilson St, San Francisco, CA 94016" +218293,USB-C Charging Cable,1,11.95,06/21/19 18:02,"678 Wilson St, San Francisco, CA 94016" +218294,Apple Airpods Headphones,1,150,06/24/19 13:26,"811 Elm St, San Francisco, CA 94016" +218295,AA Batteries (4-pack),1,3.84,06/16/19 08:41,"907 1st St, Boston, MA 02215" +218296,iPhone,1,700,06/17/19 09:52,"731 Willow St, New York City, NY 10001" +218297,Lightning Charging Cable,1,14.95,06/01/19 16:45,"971 10th St, Los Angeles, CA 90001" +218298,USB-C Charging Cable,1,11.95,06/28/19 12:51,"94 Chestnut St, San Francisco, CA 94016" +218299,AA Batteries (4-pack),1,3.84,06/13/19 12:45,"263 Ridge St, Boston, MA 02215" +218300,Macbook Pro Laptop,1,1700,06/23/19 13:39,"493 West St, San Francisco, CA 94016" +218301,USB-C Charging Cable,1,11.95,06/30/19 07:03,"895 2nd St, New York City, NY 10001" +218302,AAA Batteries (4-pack),1,2.99,06/28/19 12:44,"214 Willow St, Los Angeles, CA 90001" +218303,Wired Headphones,1,11.99,06/24/19 10:05,"143 South St, Boston, MA 02215" +218304,USB-C Charging Cable,2,11.95,06/20/19 11:31,"583 Willow St, Seattle, WA 98101" +218305,Bose SoundSport Headphones,1,99.99,06/17/19 18:04,"594 11th St, Atlanta, GA 30301" +218306,Lightning Charging Cable,1,14.95,06/15/19 10:50,"482 Cherry St, Los Angeles, CA 90001" +218307,Apple Airpods Headphones,1,150,06/03/19 15:10,"698 North St, San Francisco, CA 94016" +218308,Apple Airpods Headphones,1,150,06/27/19 22:40,"869 Wilson St, Boston, MA 02215" +218309,Bose SoundSport Headphones,1,99.99,06/26/19 10:47,"697 Ridge St, Los Angeles, CA 90001" +218310,Lightning Charging Cable,1,14.95,06/17/19 19:59,"500 Lakeview St, San Francisco, CA 94016" +218311,Lightning Charging Cable,1,14.95,06/10/19 17:16,"184 Dogwood St, New York City, NY 10001" +218312,USB-C Charging Cable,1,11.95,06/19/19 14:29,"721 Lake St, Portland, ME 04101" +218313,USB-C Charging Cable,1,11.95,06/18/19 17:04,"794 Highland St, San Francisco, CA 94016" +218314,AAA Batteries (4-pack),1,2.99,06/18/19 08:23,"669 Jefferson St, Seattle, WA 98101" +218315,USB-C Charging Cable,1,11.95,06/08/19 17:13,"407 Dogwood St, Atlanta, GA 30301" +218316,Wired Headphones,1,11.99,06/11/19 14:26,"566 Dogwood St, New York City, NY 10001" +218317,Lightning Charging Cable,1,14.95,06/13/19 10:38,"642 Sunset St, New York City, NY 10001" +218318,AA Batteries (4-pack),1,3.84,06/19/19 21:19,"777 Meadow St, Los Angeles, CA 90001" +218319,iPhone,1,700,06/10/19 23:43,"735 Meadow St, New York City, NY 10001" +218320,Macbook Pro Laptop,1,1700,06/25/19 21:11,"199 11th St, San Francisco, CA 94016" +218321,27in FHD Monitor,1,149.99,06/18/19 13:54,"282 Walnut St, San Francisco, CA 94016" +218322,ThinkPad Laptop,1,999.99,06/11/19 23:47,"795 Hill St, Dallas, TX 75001" +218323,Lightning Charging Cable,1,14.95,06/10/19 23:07,"852 Madison St, New York City, NY 10001" +218324,Bose SoundSport Headphones,1,99.99,06/27/19 00:13,"583 South St, Los Angeles, CA 90001" +218325,ThinkPad Laptop,1,999.99,06/09/19 11:29,"921 Pine St, Portland, OR 97035" +218326,Apple Airpods Headphones,1,150,06/17/19 13:27,"128 Maple St, Atlanta, GA 30301" +218327,Apple Airpods Headphones,1,150,06/02/19 21:26,"823 Forest St, Portland, OR 97035" +218328,27in 4K Gaming Monitor,1,389.99,06/19/19 07:03,"771 4th St, Atlanta, GA 30301" +218329,AAA Batteries (4-pack),1,2.99,06/06/19 21:48,"963 Willow St, San Francisco, CA 94016" +218330,27in FHD Monitor,1,149.99,06/23/19 23:02,"144 Park St, Portland, OR 97035" +218331,Apple Airpods Headphones,1,150,06/02/19 07:41,"693 Highland St, Atlanta, GA 30301" +218332,27in 4K Gaming Monitor,1,389.99,06/28/19 09:36,"400 Johnson St, Austin, TX 73301" +218333,Lightning Charging Cable,1,14.95,06/26/19 19:26,"889 4th St, Portland, OR 97035" +218334,AAA Batteries (4-pack),1,2.99,06/19/19 10:38,"908 9th St, San Francisco, CA 94016" +218335,AA Batteries (4-pack),1,3.84,06/01/19 10:12,"762 7th St, Seattle, WA 98101" +218336,USB-C Charging Cable,1,11.95,06/14/19 18:56,"228 Cherry St, San Francisco, CA 94016" +218337,AA Batteries (4-pack),1,3.84,06/25/19 22:30,"547 2nd St, Seattle, WA 98101" +218338,AA Batteries (4-pack),1,3.84,06/08/19 13:02,"912 Maple St, Seattle, WA 98101" +218339,Apple Airpods Headphones,1,150,06/14/19 18:57,"885 Wilson St, San Francisco, CA 94016" +218340,Bose SoundSport Headphones,1,99.99,06/21/19 00:21,"312 12th St, San Francisco, CA 94016" +218341,Wired Headphones,1,11.99,06/19/19 14:50,"596 Lakeview St, San Francisco, CA 94016" +218342,USB-C Charging Cable,1,11.95,06/07/19 22:31,"436 Lincoln St, Boston, MA 02215" +218343,Bose SoundSport Headphones,1,99.99,06/18/19 15:31,"854 Maple St, Portland, OR 97035" +218344,USB-C Charging Cable,1,11.95,06/30/19 12:11,"97 Jackson St, Austin, TX 73301" +218345,Flatscreen TV,1,300,06/15/19 21:31,"329 Pine St, Seattle, WA 98101" +218346,USB-C Charging Cable,2,11.95,06/22/19 12:04,"928 6th St, Atlanta, GA 30301" +218347,AAA Batteries (4-pack),1,2.99,06/14/19 17:09,"489 Adams St, Los Angeles, CA 90001" +218348,USB-C Charging Cable,1,11.95,06/30/19 20:16,"846 10th St, San Francisco, CA 94016" +218349,Apple Airpods Headphones,1,150,06/09/19 09:39,"84 Center St, Seattle, WA 98101" +218350,AAA Batteries (4-pack),1,2.99,06/12/19 16:29,"3 9th St, Los Angeles, CA 90001" +218351,Wired Headphones,1,11.99,06/09/19 19:41,"471 Main St, Boston, MA 02215" +218352,ThinkPad Laptop,1,999.99,06/17/19 16:34,"516 North St, Los Angeles, CA 90001" +218353,AA Batteries (4-pack),1,3.84,06/01/19 18:59,"492 Jackson St, Boston, MA 02215" +218353,27in 4K Gaming Monitor,1,389.99,06/01/19 18:59,"492 Jackson St, Boston, MA 02215" +218354,Google Phone,1,600,06/24/19 14:53,"251 10th St, Boston, MA 02215" +218355,34in Ultrawide Monitor,1,379.99,06/22/19 23:57,"897 Willow St, New York City, NY 10001" +218356,Bose SoundSport Headphones,1,99.99,06/25/19 11:29,"171 Washington St, Austin, TX 73301" +218357,Lightning Charging Cable,1,14.95,06/03/19 10:47,"302 North St, New York City, NY 10001" +218358,USB-C Charging Cable,1,11.95,06/10/19 10:09,"216 Walnut St, Austin, TX 73301" +218359,Google Phone,1,600,06/28/19 08:59,"548 8th St, Portland, OR 97035" +218360,Lightning Charging Cable,1,14.95,06/22/19 09:53,"397 Maple St, Los Angeles, CA 90001" +218361,Wired Headphones,1,11.99,06/12/19 23:26,"47 Church St, New York City, NY 10001" +218362,27in FHD Monitor,1,149.99,06/06/19 10:20,"963 Hill St, Atlanta, GA 30301" +218363,27in 4K Gaming Monitor,1,389.99,06/16/19 15:25,"827 Meadow St, San Francisco, CA 94016" +218364,27in FHD Monitor,1,149.99,06/06/19 12:36,"50 Lakeview St, Seattle, WA 98101" +218365,USB-C Charging Cable,1,11.95,06/13/19 11:21,"172 Jefferson St, San Francisco, CA 94016" +218366,Google Phone,1,600,06/26/19 21:04,"892 Spruce St, Dallas, TX 75001" +218366,USB-C Charging Cable,2,11.95,06/26/19 21:04,"892 Spruce St, Dallas, TX 75001" +218367,Lightning Charging Cable,1,14.95,06/10/19 11:07,"626 13th St, Seattle, WA 98101" +218368,Flatscreen TV,1,300,06/06/19 19:05,"637 Willow St, Portland, OR 97035" +218369,Apple Airpods Headphones,1,150,06/05/19 11:38,"237 10th St, Austin, TX 73301" +218370,AAA Batteries (4-pack),3,2.99,06/16/19 12:53,"806 Spruce St, Boston, MA 02215" +218371,iPhone,1,700,06/08/19 15:18,"969 Chestnut St, Seattle, WA 98101" +218371,Lightning Charging Cable,1,14.95,06/08/19 15:18,"969 Chestnut St, Seattle, WA 98101" +218372,27in FHD Monitor,1,149.99,06/29/19 18:46,"132 Washington St, Los Angeles, CA 90001" +218373,Lightning Charging Cable,1,14.95,06/17/19 23:10,"882 Madison St, New York City, NY 10001" +218374,34in Ultrawide Monitor,1,379.99,06/30/19 17:17,"266 Church St, Boston, MA 02215" +218375,AA Batteries (4-pack),1,3.84,06/07/19 14:45,"501 Park St, Seattle, WA 98101" +218376,Lightning Charging Cable,1,14.95,06/07/19 14:40,"221 Hickory St, Austin, TX 73301" +218377,iPhone,1,700,06/02/19 09:50,"189 Cherry St, Portland, OR 97035" +218378,AA Batteries (4-pack),1,3.84,06/20/19 20:00,"765 4th St, Los Angeles, CA 90001" +218379,AA Batteries (4-pack),1,3.84,06/04/19 22:17,"316 Park St, San Francisco, CA 94016" +218380,27in FHD Monitor,1,149.99,06/25/19 07:02,"514 Lakeview St, Atlanta, GA 30301" +218381,Wired Headphones,1,11.99,06/30/19 08:49,"231 6th St, Boston, MA 02215" +218382,AA Batteries (4-pack),1,3.84,06/26/19 12:40,"92 2nd St, San Francisco, CA 94016" +218383,USB-C Charging Cable,1,11.95,06/20/19 23:05,"360 Willow St, San Francisco, CA 94016" +218384,20in Monitor,1,109.99,06/14/19 17:43,"897 Johnson St, Seattle, WA 98101" +218385,LG Washing Machine,1,600.0,06/09/19 13:47,"253 14th St, Portland, OR 97035" +218386,AA Batteries (4-pack),1,3.84,06/27/19 20:37,"335 Center St, Seattle, WA 98101" +218387,AAA Batteries (4-pack),6,2.99,06/01/19 16:11,"568 North St, Los Angeles, CA 90001" +218388,Wired Headphones,1,11.99,06/16/19 00:25,"246 South St, Boston, MA 02215" +218389,Bose SoundSport Headphones,1,99.99,06/27/19 14:52,"2 6th St, San Francisco, CA 94016" +218390,Apple Airpods Headphones,1,150,06/14/19 13:17,"352 Church St, Los Angeles, CA 90001" +218391,iPhone,1,700,06/13/19 20:02,"54 Madison St, Los Angeles, CA 90001" +218392,AA Batteries (4-pack),2,3.84,06/21/19 19:03,"197 Madison St, Seattle, WA 98101" +218393,AAA Batteries (4-pack),1,2.99,06/07/19 18:06,"836 Adams St, Portland, OR 97035" +218394,Apple Airpods Headphones,1,150,06/02/19 21:03,"262 6th St, San Francisco, CA 94016" +218395,Wired Headphones,1,11.99,06/01/19 17:29,"180 Willow St, San Francisco, CA 94016" +218396,27in FHD Monitor,1,149.99,06/05/19 17:52,"42 Walnut St, San Francisco, CA 94016" +218397,AA Batteries (4-pack),1,3.84,06/27/19 17:09,"767 Pine St, New York City, NY 10001" +218398,AA Batteries (4-pack),1,3.84,06/23/19 14:08,"312 Meadow St, Los Angeles, CA 90001" +218399,Wired Headphones,2,11.99,06/22/19 18:40,"757 13th St, San Francisco, CA 94016" +218400,27in 4K Gaming Monitor,1,389.99,06/20/19 20:59,"223 5th St, Dallas, TX 75001" +218401,AAA Batteries (4-pack),1,2.99,06/01/19 09:37,"849 Lake St, Seattle, WA 98101" +218402,Apple Airpods Headphones,1,150,06/27/19 15:31,"117 Park St, Atlanta, GA 30301" +218403,Lightning Charging Cable,1,14.95,06/06/19 22:01,"573 8th St, New York City, NY 10001" +218404,AA Batteries (4-pack),1,3.84,06/09/19 18:38,"138 Pine St, San Francisco, CA 94016" +218405,Apple Airpods Headphones,1,150,06/21/19 00:52,"692 Elm St, Dallas, TX 75001" +218406,Apple Airpods Headphones,1,150,06/14/19 13:42,"638 West St, New York City, NY 10001" +218407,27in FHD Monitor,1,149.99,06/14/19 18:27,"18 6th St, Austin, TX 73301" +218408,Lightning Charging Cable,1,14.95,06/25/19 21:40,"334 Wilson St, San Francisco, CA 94016" +218409,Wired Headphones,1,11.99,06/04/19 00:39,"144 Park St, Portland, ME 04101" +218410,Apple Airpods Headphones,1,150,06/26/19 22:59,"5 Lakeview St, San Francisco, CA 94016" +218411,Wired Headphones,1,11.99,06/17/19 21:11,"696 Dogwood St, Atlanta, GA 30301" +218412,Lightning Charging Cable,1,14.95,06/28/19 19:16,"785 Madison St, Seattle, WA 98101" +218413,Wired Headphones,1,11.99,06/24/19 11:23,"80 Hill St, Dallas, TX 75001" +218414,Google Phone,1,600,06/30/19 15:43,"68 1st St, Atlanta, GA 30301" +218415,Google Phone,1,600,06/18/19 23:36,"344 Dogwood St, New York City, NY 10001" +218416,AA Batteries (4-pack),1,3.84,06/06/19 18:37,"573 Cherry St, Boston, MA 02215" +218417,27in FHD Monitor,1,149.99,06/08/19 13:41,"945 14th St, Los Angeles, CA 90001" +218418,AA Batteries (4-pack),1,3.84,06/08/19 17:37,"675 Jackson St, Austin, TX 73301" +218419,iPhone,1,700,06/05/19 15:22,"525 Lake St, New York City, NY 10001" +218420,AAA Batteries (4-pack),3,2.99,06/25/19 12:04,"288 7th St, Boston, MA 02215" +218421,Lightning Charging Cable,1,14.95,06/10/19 22:22,"262 4th St, San Francisco, CA 94016" +218422,Lightning Charging Cable,1,14.95,06/28/19 15:31,"152 2nd St, Atlanta, GA 30301" +218423,Flatscreen TV,1,300,06/20/19 17:48,"533 1st St, New York City, NY 10001" +218424,Wired Headphones,1,11.99,06/01/19 12:06,"57 Lakeview St, New York City, NY 10001" +218425,Lightning Charging Cable,1,14.95,06/15/19 18:38,"185 Ridge St, Boston, MA 02215" +218426,Lightning Charging Cable,1,14.95,06/10/19 17:39,"966 Chestnut St, Atlanta, GA 30301" +218427,USB-C Charging Cable,1,11.95,06/13/19 20:46,"180 Elm St, San Francisco, CA 94016" +218428,Google Phone,1,600,06/07/19 11:56,"814 Spruce St, Dallas, TX 75001" +218429,AAA Batteries (4-pack),1,2.99,06/09/19 14:23,"167 River St, Los Angeles, CA 90001" +218430,Wired Headphones,2,11.99,06/01/19 11:16,"229 Dogwood St, Portland, OR 97035" +218431,20in Monitor,1,109.99,06/08/19 17:59,"136 Elm St, New York City, NY 10001" +218432,AA Batteries (4-pack),1,3.84,06/18/19 11:15,"5 Highland St, New York City, NY 10001" +218433,34in Ultrawide Monitor,1,379.99,06/22/19 14:39,"538 Forest St, Dallas, TX 75001" +218434,34in Ultrawide Monitor,1,379.99,06/04/19 18:15,"309 Main St, Portland, OR 97035" +218435,Google Phone,1,600,06/08/19 15:16,"780 Cherry St, New York City, NY 10001" +218435,USB-C Charging Cable,1,11.95,06/08/19 15:16,"780 Cherry St, New York City, NY 10001" +218436,Lightning Charging Cable,1,14.95,06/15/19 20:48,"89 11th St, Atlanta, GA 30301" +218437,AAA Batteries (4-pack),1,2.99,06/04/19 19:49,"487 Sunset St, San Francisco, CA 94016" +218438,20in Monitor,1,109.99,06/05/19 21:04,"465 Ridge St, Los Angeles, CA 90001" +218439,34in Ultrawide Monitor,1,379.99,06/07/19 00:31,"722 Highland St, Los Angeles, CA 90001" +218440,27in FHD Monitor,1,149.99,06/18/19 19:42,"564 Spruce St, Los Angeles, CA 90001" +218441,USB-C Charging Cable,1,11.95,06/28/19 19:05,"459 Maple St, New York City, NY 10001" +218442,USB-C Charging Cable,1,11.95,06/16/19 15:31,"207 Walnut St, Los Angeles, CA 90001" +218443,27in FHD Monitor,1,149.99,06/19/19 13:45,"310 Meadow St, New York City, NY 10001" +218444,AAA Batteries (4-pack),2,2.99,06/13/19 10:54,"542 Forest St, Los Angeles, CA 90001" +218445,iPhone,1,700,06/09/19 16:30,"47 Highland St, Los Angeles, CA 90001" +218446,AA Batteries (4-pack),1,3.84,06/23/19 15:56,"901 Walnut St, Los Angeles, CA 90001" +218447,Lightning Charging Cable,1,14.95,06/04/19 09:29,"175 11th St, San Francisco, CA 94016" +218448,USB-C Charging Cable,1,11.95,06/28/19 18:29,"967 Madison St, Los Angeles, CA 90001" +218449,Apple Airpods Headphones,1,150,06/12/19 14:37,"436 12th St, Los Angeles, CA 90001" +218450,AA Batteries (4-pack),1,3.84,06/17/19 19:22,"929 Pine St, Los Angeles, CA 90001" +218451,Lightning Charging Cable,1,14.95,06/18/19 22:28,"573 Adams St, New York City, NY 10001" +218452,AA Batteries (4-pack),1,3.84,06/25/19 11:24,"174 Cedar St, Atlanta, GA 30301" +218453,Macbook Pro Laptop,1,1700,06/03/19 20:29,"798 Sunset St, Los Angeles, CA 90001" +218454,Apple Airpods Headphones,1,150,06/27/19 08:22,"64 Hill St, San Francisco, CA 94016" +218455,iPhone,1,700,06/03/19 23:48,"463 12th St, Los Angeles, CA 90001" +218456,AA Batteries (4-pack),1,3.84,06/11/19 17:57,"393 Washington St, New York City, NY 10001" +218457,AA Batteries (4-pack),2,3.84,06/13/19 11:03,"675 Cherry St, New York City, NY 10001" +218458,AA Batteries (4-pack),1,3.84,06/14/19 15:14,"187 Chestnut St, San Francisco, CA 94016" +218459,AA Batteries (4-pack),2,3.84,06/24/19 19:00,"78 14th St, New York City, NY 10001" +218460,27in 4K Gaming Monitor,1,389.99,06/10/19 10:59,"694 Lakeview St, Portland, OR 97035" +218461,Lightning Charging Cable,1,14.95,06/04/19 19:24,"255 Jefferson St, Austin, TX 73301" +218462,Bose SoundSport Headphones,1,99.99,06/17/19 18:29,"476 Main St, Dallas, TX 75001" +218463,Lightning Charging Cable,1,14.95,06/22/19 19:49,"563 Dogwood St, Dallas, TX 75001" +218464,Lightning Charging Cable,1,14.95,06/25/19 16:48,"901 Sunset St, Dallas, TX 75001" +218465,Wired Headphones,1,11.99,06/14/19 11:45,"153 9th St, Seattle, WA 98101" +218466,AA Batteries (4-pack),2,3.84,06/01/19 22:19,"124 7th St, Portland, OR 97035" +218467,Bose SoundSport Headphones,1,99.99,06/16/19 16:02,"549 Forest St, Boston, MA 02215" +218468,USB-C Charging Cable,1,11.95,06/22/19 14:38,"934 13th St, Boston, MA 02215" +218469,20in Monitor,1,109.99,06/27/19 11:33,"579 North St, Los Angeles, CA 90001" +218470,Wired Headphones,1,11.99,06/25/19 12:43,"368 13th St, Austin, TX 73301" +,,,,, +218471,USB-C Charging Cable,1,11.95,06/17/19 15:58,"341 2nd St, Boston, MA 02215" +218472,Apple Airpods Headphones,1,150,06/22/19 15:45,"547 Cedar St, Los Angeles, CA 90001" +218473,AAA Batteries (4-pack),1,2.99,06/04/19 16:17,"778 10th St, San Francisco, CA 94016" +218474,iPhone,1,700,06/29/19 10:18,"694 1st St, Boston, MA 02215" +218475,Apple Airpods Headphones,1,150,06/22/19 15:28,"999 Jackson St, Dallas, TX 75001" +218476,Wired Headphones,1,11.99,06/05/19 13:44,"359 Forest St, Austin, TX 73301" +218477,AAA Batteries (4-pack),1,2.99,06/14/19 12:19,"252 Main St, New York City, NY 10001" +218478,AA Batteries (4-pack),2,3.84,06/03/19 14:43,"43 Lincoln St, Portland, ME 04101" +218479,AAA Batteries (4-pack),1,2.99,06/23/19 14:03,"770 Lakeview St, Boston, MA 02215" +218480,Lightning Charging Cable,1,14.95,06/05/19 12:19,"156 Jackson St, Boston, MA 02215" +218481,AA Batteries (4-pack),1,3.84,06/08/19 10:51,"185 Wilson St, San Francisco, CA 94016" +218482,Lightning Charging Cable,3,14.95,06/09/19 09:36,"845 Maple St, San Francisco, CA 94016" +218483,Wired Headphones,1,11.99,06/08/19 23:48,"924 River St, New York City, NY 10001" +218484,AA Batteries (4-pack),1,3.84,06/22/19 08:30,"962 Wilson St, Austin, TX 73301" +218485,AAA Batteries (4-pack),1,2.99,06/24/19 06:08,"126 Spruce St, Seattle, WA 98101" +218486,USB-C Charging Cable,1,11.95,06/29/19 21:07,"724 Ridge St, San Francisco, CA 94016" +218487,iPhone,1,700,06/28/19 00:07,"232 Spruce St, New York City, NY 10001" +218488,Macbook Pro Laptop,1,1700,06/09/19 04:33,"886 Lakeview St, San Francisco, CA 94016" +218489,Wired Headphones,1,11.99,06/09/19 18:52,"372 Lakeview St, Austin, TX 73301" +218490,AA Batteries (4-pack),1,3.84,06/25/19 09:22,"703 12th St, Boston, MA 02215" +218491,Wired Headphones,1,11.99,06/30/19 21:32,"883 Walnut St, Los Angeles, CA 90001" +218492,Lightning Charging Cable,1,14.95,06/07/19 12:42,"267 Church St, Dallas, TX 75001" +218493,Macbook Pro Laptop,1,1700,06/15/19 17:22,"133 5th St, New York City, NY 10001" +218494,Wired Headphones,1,11.99,06/05/19 18:13,"537 River St, Austin, TX 73301" +218495,Apple Airpods Headphones,1,150,06/09/19 21:02,"512 12th St, Dallas, TX 75001" +218496,Wired Headphones,1,11.99,06/06/19 22:26,"338 8th St, Dallas, TX 75001" +218497,AA Batteries (4-pack),2,3.84,06/08/19 10:13,"201 Hill St, Seattle, WA 98101" +218498,Wired Headphones,2,11.99,06/04/19 23:15,"448 14th St, Seattle, WA 98101" +218499,Wired Headphones,1,11.99,06/12/19 09:51,"552 Maple St, San Francisco, CA 94016" +218500,Apple Airpods Headphones,1,150,06/10/19 12:49,"347 Center St, San Francisco, CA 94016" +218501,27in FHD Monitor,1,149.99,06/20/19 15:49,"513 Adams St, Seattle, WA 98101" +218502,27in 4K Gaming Monitor,1,389.99,06/10/19 22:20,"888 10th St, San Francisco, CA 94016" +218503,20in Monitor,1,109.99,06/20/19 23:06,"117 Cedar St, New York City, NY 10001" +,,,,, +218504,USB-C Charging Cable,2,11.95,06/20/19 08:57,"122 Ridge St, Los Angeles, CA 90001" +218505,Lightning Charging Cable,1,14.95,06/13/19 15:39,"338 Elm St, San Francisco, CA 94016" +218506,Lightning Charging Cable,1,14.95,06/03/19 14:35,"547 Walnut St, Seattle, WA 98101" +218507,Lightning Charging Cable,1,14.95,06/13/19 21:17,"775 5th St, San Francisco, CA 94016" +218508,AAA Batteries (4-pack),5,2.99,06/19/19 09:04,"738 Main St, San Francisco, CA 94016" +218509,USB-C Charging Cable,1,11.95,06/19/19 14:20,"939 Sunset St, Los Angeles, CA 90001" +218510,AA Batteries (4-pack),1,3.84,06/23/19 22:49,"13 6th St, Atlanta, GA 30301" +218511,27in 4K Gaming Monitor,1,389.99,06/25/19 12:53,"697 North St, Boston, MA 02215" +218512,Google Phone,1,600,06/06/19 12:03,"138 Johnson St, Los Angeles, CA 90001" +218513,Lightning Charging Cable,2,14.95,06/27/19 17:22,"560 11th St, Austin, TX 73301" +218514,Lightning Charging Cable,1,14.95,06/07/19 22:31,"392 Lincoln St, New York City, NY 10001" +218515,Wired Headphones,1,11.99,06/19/19 20:41,"24 Spruce St, Dallas, TX 75001" +218516,Lightning Charging Cable,1,14.95,06/19/19 20:37,"219 Forest St, San Francisco, CA 94016" +218517,Flatscreen TV,1,300,06/22/19 19:21,"161 Walnut St, San Francisco, CA 94016" +218518,Apple Airpods Headphones,1,150,06/09/19 21:31,"483 Willow St, Boston, MA 02215" +218519,Bose SoundSport Headphones,1,99.99,06/16/19 11:40,"653 Elm St, San Francisco, CA 94016" +218520,AA Batteries (4-pack),1,3.84,06/28/19 16:04,"56 Elm St, Austin, TX 73301" +218521,Bose SoundSport Headphones,1,99.99,06/23/19 14:54,"411 Cherry St, Seattle, WA 98101" +218522,AAA Batteries (4-pack),2,2.99,06/02/19 05:06,"243 Dogwood St, New York City, NY 10001" +218523,AAA Batteries (4-pack),1,2.99,06/24/19 16:25,"409 Meadow St, San Francisco, CA 94016" +218524,27in FHD Monitor,1,149.99,06/20/19 19:40,"197 Elm St, San Francisco, CA 94016" +218525,34in Ultrawide Monitor,1,379.99,06/05/19 17:42,"291 West St, Los Angeles, CA 90001" +218526,Apple Airpods Headphones,1,150,06/02/19 20:31,"753 Pine St, Dallas, TX 75001" +218527,34in Ultrawide Monitor,1,379.99,06/08/19 03:02,"411 Walnut St, San Francisco, CA 94016" +218528,Wired Headphones,1,11.99,06/28/19 14:42,"52 Adams St, San Francisco, CA 94016" +218529,Google Phone,1,600,06/07/19 08:09,"126 Highland St, San Francisco, CA 94016" +218530,USB-C Charging Cable,1,11.95,06/02/19 14:54,"158 Spruce St, San Francisco, CA 94016" +218531,ThinkPad Laptop,1,999.99,06/13/19 09:12,"687 Spruce St, Atlanta, GA 30301" +218532,Wired Headphones,1,11.99,06/26/19 11:23,"204 10th St, Boston, MA 02215" +218533,Bose SoundSport Headphones,1,99.99,06/21/19 09:15,"190 Meadow St, Seattle, WA 98101" +218534,AAA Batteries (4-pack),1,2.99,06/07/19 14:27,"590 West St, Portland, OR 97035" +218535,AAA Batteries (4-pack),1,2.99,06/09/19 20:03,"646 Highland St, Dallas, TX 75001" +218536,34in Ultrawide Monitor,1,379.99,06/28/19 11:24,"582 Willow St, New York City, NY 10001" +218537,Lightning Charging Cable,1,14.95,06/21/19 22:30,"219 Hickory St, Boston, MA 02215" +218538,iPhone,1,700,06/16/19 15:21,"550 Meadow St, San Francisco, CA 94016" +218538,Lightning Charging Cable,1,14.95,06/16/19 15:21,"550 Meadow St, San Francisco, CA 94016" +218539,Macbook Pro Laptop,1,1700,06/11/19 21:46,"708 Lincoln St, New York City, NY 10001" +218540,27in FHD Monitor,1,149.99,06/27/19 20:28,"510 10th St, Los Angeles, CA 90001" +218541,Apple Airpods Headphones,1,150,06/29/19 16:50,"315 Willow St, New York City, NY 10001" +218542,Macbook Pro Laptop,1,1700,06/13/19 10:19,"253 11th St, New York City, NY 10001" +218543,Flatscreen TV,1,300,06/07/19 13:22,"887 5th St, San Francisco, CA 94016" +218544,USB-C Charging Cable,1,11.95,06/04/19 18:44,"458 Washington St, New York City, NY 10001" +218545,Wired Headphones,1,11.99,06/03/19 16:31,"987 Pine St, Atlanta, GA 30301" +218546,Macbook Pro Laptop,1,1700,06/07/19 17:39,"78 Meadow St, Dallas, TX 75001" +218547,USB-C Charging Cable,1,11.95,06/07/19 09:18,"286 12th St, New York City, NY 10001" +218548,USB-C Charging Cable,1,11.95,06/05/19 18:10,"573 Highland St, Dallas, TX 75001" +218549,ThinkPad Laptop,1,999.99,06/09/19 08:22,"747 South St, Seattle, WA 98101" +218550,AA Batteries (4-pack),1,3.84,06/19/19 09:11,"885 Meadow St, New York City, NY 10001" +218551,Flatscreen TV,1,300,06/18/19 20:11,"646 Jackson St, Boston, MA 02215" +218552,34in Ultrawide Monitor,1,379.99,06/30/19 11:00,"136 6th St, San Francisco, CA 94016" +218553,AAA Batteries (4-pack),1,2.99,06/04/19 09:10,"926 Adams St, San Francisco, CA 94016" +218554,USB-C Charging Cable,1,11.95,06/06/19 17:29,"312 7th St, Atlanta, GA 30301" +218555,Lightning Charging Cable,1,14.95,06/09/19 10:01,"977 Lakeview St, New York City, NY 10001" +218556,34in Ultrawide Monitor,1,379.99,06/07/19 13:35,"356 Meadow St, San Francisco, CA 94016" +218557,AAA Batteries (4-pack),1,2.99,06/07/19 19:35,"431 7th St, Atlanta, GA 30301" +218558,Apple Airpods Headphones,1,150,06/07/19 17:45,"726 Hickory St, Dallas, TX 75001" +218559,Apple Airpods Headphones,1,150,06/14/19 15:04,"950 Adams St, Boston, MA 02215" +218560,Apple Airpods Headphones,1,150,06/26/19 17:17,"172 Walnut St, Los Angeles, CA 90001" +218561,Lightning Charging Cable,1,14.95,06/04/19 15:34,"405 West St, Seattle, WA 98101" +218562,Google Phone,1,600,06/28/19 23:45,"972 Jefferson St, Austin, TX 73301" +218563,AA Batteries (4-pack),1,3.84,06/30/19 08:27,"495 Johnson St, San Francisco, CA 94016" +218564,Bose SoundSport Headphones,1,99.99,06/07/19 10:16,"563 Jefferson St, New York City, NY 10001" +218565,Wired Headphones,1,11.99,06/13/19 15:06,"783 9th St, Los Angeles, CA 90001" +218566,Macbook Pro Laptop,1,1700,06/29/19 17:30,"864 Ridge St, Boston, MA 02215" +218567,27in 4K Gaming Monitor,1,389.99,06/26/19 17:45,"326 Center St, Dallas, TX 75001" +218568,AA Batteries (4-pack),2,3.84,06/10/19 21:30,"407 Dogwood St, Austin, TX 73301" +218569,AA Batteries (4-pack),1,3.84,06/26/19 21:08,"415 10th St, San Francisco, CA 94016" +218570,AAA Batteries (4-pack),1,2.99,06/22/19 22:25,"405 Lake St, Los Angeles, CA 90001" +218571,AAA Batteries (4-pack),1,2.99,06/27/19 10:35,"953 Wilson St, Boston, MA 02215" +218572,Wired Headphones,1,11.99,06/21/19 08:54,"970 Cherry St, New York City, NY 10001" +218573,Vareebadd Phone,1,400,06/24/19 20:20,"162 Madison St, San Francisco, CA 94016" +218573,USB-C Charging Cable,1,11.95,06/24/19 20:20,"162 Madison St, San Francisco, CA 94016" +218574,USB-C Charging Cable,1,11.95,06/04/19 15:42,"786 2nd St, Boston, MA 02215" +218575,USB-C Charging Cable,1,11.95,06/09/19 12:20,"594 1st St, Seattle, WA 98101" +218576,Apple Airpods Headphones,1,150,06/28/19 12:52,"919 Adams St, New York City, NY 10001" +218577,USB-C Charging Cable,1,11.95,06/08/19 20:42,"859 Hill St, San Francisco, CA 94016" +218578,Wired Headphones,1,11.99,06/17/19 13:58,"599 Meadow St, San Francisco, CA 94016" +218579,Macbook Pro Laptop,1,1700,06/29/19 20:57,"508 Church St, New York City, NY 10001" +218580,Wired Headphones,2,11.99,06/01/19 12:51,"737 Highland St, Boston, MA 02215" +218581,AAA Batteries (4-pack),1,2.99,06/29/19 23:25,"162 5th St, Portland, OR 97035" +218582,Vareebadd Phone,1,400,06/26/19 17:59,"346 11th St, San Francisco, CA 94016" +218583,Apple Airpods Headphones,1,150,06/07/19 21:56,"474 Main St, Dallas, TX 75001" +218584,ThinkPad Laptop,1,999.99,06/25/19 00:30,"771 Cherry St, New York City, NY 10001" +218585,USB-C Charging Cable,1,11.95,06/25/19 16:06,"137 Maple St, San Francisco, CA 94016" +218586,AA Batteries (4-pack),1,3.84,06/12/19 19:40,"287 Forest St, Boston, MA 02215" +218587,AAA Batteries (4-pack),3,2.99,06/25/19 12:09,"69 Forest St, New York City, NY 10001" +218588,AAA Batteries (4-pack),1,2.99,06/26/19 18:57,"764 9th St, Los Angeles, CA 90001" +218589,27in FHD Monitor,1,149.99,06/06/19 13:35,"687 Hill St, Atlanta, GA 30301" +218590,27in 4K Gaming Monitor,1,389.99,06/14/19 10:04,"993 Main St, Seattle, WA 98101" +218591,Flatscreen TV,1,300,06/03/19 09:06,"803 North St, Dallas, TX 75001" +218592,Bose SoundSport Headphones,1,99.99,06/04/19 14:36,"460 Sunset St, Atlanta, GA 30301" +218593,27in FHD Monitor,1,149.99,06/17/19 23:58,"436 Jackson St, New York City, NY 10001" +218594,Wired Headphones,1,11.99,06/02/19 21:02,"580 Washington St, Dallas, TX 75001" +218595,USB-C Charging Cable,2,11.95,06/01/19 08:06,"254 Park St, Dallas, TX 75001" +218596,USB-C Charging Cable,1,11.95,06/29/19 23:19,"462 2nd St, Dallas, TX 75001" +218597,Macbook Pro Laptop,1,1700,06/10/19 10:00,"106 West St, New York City, NY 10001" +218598,Bose SoundSport Headphones,1,99.99,06/13/19 12:34,"780 10th St, New York City, NY 10001" +218599,Google Phone,1,600,06/15/19 19:30,"841 4th St, San Francisco, CA 94016" +218600,USB-C Charging Cable,1,11.95,06/23/19 22:59,"53 14th St, San Francisco, CA 94016" +218601,AA Batteries (4-pack),1,3.84,06/21/19 14:55,"317 Maple St, Seattle, WA 98101" +218602,AA Batteries (4-pack),1,3.84,06/18/19 12:05,"651 Center St, Boston, MA 02215" +,,,,, +218603,27in FHD Monitor,1,149.99,06/03/19 14:35,"605 Pine St, San Francisco, CA 94016" +218604,Lightning Charging Cable,1,14.95,06/19/19 11:52,"722 13th St, Boston, MA 02215" +218605,Bose SoundSport Headphones,1,99.99,06/08/19 17:36,"269 Dogwood St, New York City, NY 10001" +218606,AA Batteries (4-pack),2,3.84,06/20/19 01:10,"846 10th St, Los Angeles, CA 90001" +218607,USB-C Charging Cable,1,11.95,06/13/19 07:19,"293 Lakeview St, Boston, MA 02215" +218608,AAA Batteries (4-pack),1,2.99,06/29/19 20:30,"522 Lakeview St, Atlanta, GA 30301" +218609,Wired Headphones,1,11.99,06/12/19 14:40,"882 7th St, New York City, NY 10001" +218610,AA Batteries (4-pack),1,3.84,06/03/19 11:11,"371 Hill St, Dallas, TX 75001" +218611,AA Batteries (4-pack),1,3.84,06/18/19 07:57,"328 8th St, San Francisco, CA 94016" +218612,Bose SoundSport Headphones,1,99.99,06/21/19 16:12,"69 11th St, Boston, MA 02215" +218613,Wired Headphones,1,11.99,06/29/19 11:14,"440 West St, San Francisco, CA 94016" +218614,Bose SoundSport Headphones,1,99.99,06/19/19 12:36,"811 6th St, Los Angeles, CA 90001" +218615,Flatscreen TV,1,300,06/05/19 19:01,"521 West St, San Francisco, CA 94016" +218616,Bose SoundSport Headphones,1,99.99,06/13/19 14:23,"200 Dogwood St, Portland, OR 97035" +218617,AAA Batteries (4-pack),1,2.99,06/27/19 09:27,"293 South St, Atlanta, GA 30301" +218618,AAA Batteries (4-pack),2,2.99,06/25/19 14:17,"588 11th St, New York City, NY 10001" +218619,USB-C Charging Cable,1,11.95,06/08/19 18:31,"26 9th St, Boston, MA 02215" +218620,27in FHD Monitor,1,149.99,06/23/19 09:19,"499 7th St, San Francisco, CA 94016" +218621,Lightning Charging Cable,1,14.95,06/15/19 18:47,"644 Lincoln St, New York City, NY 10001" +218622,27in 4K Gaming Monitor,1,389.99,06/05/19 00:31,"846 Spruce St, San Francisco, CA 94016" +218623,Wired Headphones,1,11.99,06/04/19 19:03,"192 Madison St, Seattle, WA 98101" +218624,Bose SoundSport Headphones,1,99.99,06/27/19 23:17,"993 Lincoln St, Los Angeles, CA 90001" +218625,Lightning Charging Cable,1,14.95,06/08/19 16:32,"342 Church St, Boston, MA 02215" +218626,27in 4K Gaming Monitor,1,389.99,06/20/19 15:02,"808 Jefferson St, Seattle, WA 98101" +218627,USB-C Charging Cable,1,11.95,06/22/19 19:39,"843 14th St, New York City, NY 10001" +218628,Flatscreen TV,1,300,06/06/19 19:13,"600 1st St, San Francisco, CA 94016" +218629,Lightning Charging Cable,1,14.95,06/10/19 14:27,"921 Center St, Los Angeles, CA 90001" +218630,Apple Airpods Headphones,1,150,06/17/19 16:15,"990 Johnson St, Seattle, WA 98101" +218631,AAA Batteries (4-pack),1,2.99,06/16/19 13:22,"689 Highland St, Los Angeles, CA 90001" +218632,iPhone,1,700,06/26/19 06:25,"524 Dogwood St, San Francisco, CA 94016" +218633,Lightning Charging Cable,1,14.95,06/13/19 21:46,"135 5th St, San Francisco, CA 94016" +218634,Lightning Charging Cable,1,14.95,06/04/19 17:32,"356 12th St, New York City, NY 10001" +218634,Apple Airpods Headphones,1,150,06/04/19 17:32,"356 12th St, New York City, NY 10001" +218635,USB-C Charging Cable,1,11.95,06/01/19 23:03,"715 Adams St, New York City, NY 10001" +218636,Bose SoundSport Headphones,1,99.99,06/22/19 19:32,"348 Forest St, Dallas, TX 75001" +218637,AA Batteries (4-pack),1,3.84,06/05/19 15:35,"861 Pine St, Portland, OR 97035" +218638,Wired Headphones,1,11.99,06/20/19 13:13,"581 Maple St, San Francisco, CA 94016" +218639,Vareebadd Phone,1,400,06/02/19 18:05,"324 8th St, Seattle, WA 98101" +218640,AA Batteries (4-pack),1,3.84,06/28/19 17:25,"160 Wilson St, New York City, NY 10001" +218641,USB-C Charging Cable,1,11.95,06/28/19 14:38,"817 Walnut St, New York City, NY 10001" +218642,AAA Batteries (4-pack),1,2.99,06/20/19 14:15,"537 Cherry St, New York City, NY 10001" +218643,AA Batteries (4-pack),1,3.84,06/24/19 20:19,"134 Johnson St, Dallas, TX 75001" +218644,ThinkPad Laptop,1,999.99,06/26/19 02:36,"942 Cherry St, Dallas, TX 75001" +218645,AA Batteries (4-pack),1,3.84,06/23/19 10:25,"762 Cedar St, San Francisco, CA 94016" +218646,iPhone,1,700,06/12/19 13:39,"352 Forest St, Los Angeles, CA 90001" +218647,AAA Batteries (4-pack),6,2.99,06/01/19 17:13,"590 Dogwood St, San Francisco, CA 94016" +218648,27in FHD Monitor,1,149.99,06/14/19 21:47,"383 Adams St, San Francisco, CA 94016" +218649,Flatscreen TV,1,300,06/19/19 12:45,"648 12th St, Austin, TX 73301" +218650,Macbook Pro Laptop,1,1700,06/20/19 23:41,"188 7th St, New York City, NY 10001" +218651,Vareebadd Phone,1,400,06/26/19 10:30,"358 Dogwood St, New York City, NY 10001" +218652,AA Batteries (4-pack),1,3.84,06/30/19 21:32,"576 Church St, Los Angeles, CA 90001" +218653,AA Batteries (4-pack),1,3.84,06/06/19 16:52,"765 8th St, Los Angeles, CA 90001" +218654,Apple Airpods Headphones,1,150,06/22/19 20:57,"228 Johnson St, Dallas, TX 75001" +218655,Wired Headphones,1,11.99,06/28/19 16:21,"932 Center St, Dallas, TX 75001" +218656,Lightning Charging Cable,1,14.95,06/22/19 19:56,"610 Maple St, San Francisco, CA 94016" +218657,USB-C Charging Cable,1,11.95,06/03/19 12:04,"870 Johnson St, San Francisco, CA 94016" +218658,AA Batteries (4-pack),1,3.84,06/16/19 23:24,"434 Maple St, Austin, TX 73301" +218659,Wired Headphones,1,11.99,06/28/19 20:50,"827 Adams St, Dallas, TX 75001" +218660,USB-C Charging Cable,1,11.95,06/01/19 21:31,"374 Hickory St, Atlanta, GA 30301" +218661,AAA Batteries (4-pack),2,2.99,06/26/19 20:48,"469 Lake St, Los Angeles, CA 90001" +218662,Lightning Charging Cable,1,14.95,06/05/19 05:59,"320 Cherry St, Dallas, TX 75001" +218663,Wired Headphones,1,11.99,06/05/19 12:03,"627 11th St, Portland, OR 97035" +218664,Bose SoundSport Headphones,1,99.99,06/19/19 17:33,"730 Lakeview St, New York City, NY 10001" +218665,AAA Batteries (4-pack),3,2.99,06/18/19 11:33,"479 Madison St, Atlanta, GA 30301" +218666,AA Batteries (4-pack),1,3.84,06/11/19 08:13,"758 4th St, New York City, NY 10001" +218667,Apple Airpods Headphones,1,150,06/06/19 12:58,"87 Meadow St, New York City, NY 10001" +218668,Google Phone,1,600,06/08/19 10:23,"250 River St, Los Angeles, CA 90001" +218669,Wired Headphones,1,11.99,06/03/19 11:37,"380 2nd St, San Francisco, CA 94016" +218670,20in Monitor,1,109.99,06/16/19 14:57,"892 Ridge St, Boston, MA 02215" +218671,AA Batteries (4-pack),1,3.84,06/07/19 20:54,"225 6th St, Los Angeles, CA 90001" +218672,Flatscreen TV,1,300,06/20/19 18:06,"461 Church St, Los Angeles, CA 90001" +218673,Google Phone,1,600,06/29/19 00:02,"546 Park St, Los Angeles, CA 90001" +218673,Wired Headphones,1,11.99,06/29/19 00:02,"546 Park St, Los Angeles, CA 90001" +218674,Bose SoundSport Headphones,1,99.99,06/12/19 23:46,"814 Lakeview St, Atlanta, GA 30301" +218675,Lightning Charging Cable,1,14.95,06/12/19 17:29,"396 Madison St, Atlanta, GA 30301" +218676,USB-C Charging Cable,1,11.95,06/25/19 19:23,"768 Hill St, Atlanta, GA 30301" +218677,Lightning Charging Cable,1,14.95,06/01/19 17:32,"18 Main St, San Francisco, CA 94016" +218678,USB-C Charging Cable,1,11.95,06/28/19 10:46,"353 Hickory St, New York City, NY 10001" +218679,Vareebadd Phone,1,400,06/01/19 21:40,"494 11th St, New York City, NY 10001" +218679,USB-C Charging Cable,1,11.95,06/01/19 21:40,"494 11th St, New York City, NY 10001" +218680,AA Batteries (4-pack),1,3.84,06/21/19 20:51,"968 West St, Austin, TX 73301" +218681,AA Batteries (4-pack),2,3.84,06/06/19 19:43,"271 Madison St, Atlanta, GA 30301" +218682,20in Monitor,1,109.99,06/13/19 14:18,"243 Walnut St, San Francisco, CA 94016" +218683,Wired Headphones,1,11.99,06/27/19 22:07,"206 Meadow St, San Francisco, CA 94016" +218684,34in Ultrawide Monitor,1,379.99,06/10/19 11:48,"272 Walnut St, San Francisco, CA 94016" +218685,AAA Batteries (4-pack),2,2.99,06/19/19 17:17,"217 12th St, San Francisco, CA 94016" +218685,ThinkPad Laptop,1,999.99,06/19/19 17:17,"217 12th St, San Francisco, CA 94016" +218686,USB-C Charging Cable,1,11.95,06/11/19 16:09,"22 Lincoln St, Los Angeles, CA 90001" +218687,AAA Batteries (4-pack),1,2.99,06/04/19 11:53,"979 Cherry St, Los Angeles, CA 90001" +218688,AA Batteries (4-pack),1,3.84,06/23/19 22:52,"367 Main St, Los Angeles, CA 90001" +218689,ThinkPad Laptop,1,999.99,06/27/19 13:08,"77 Pine St, Atlanta, GA 30301" +218690,Wired Headphones,1,11.99,06/06/19 22:15,"484 Cedar St, New York City, NY 10001" +218691,Macbook Pro Laptop,1,1700,06/25/19 14:43,"886 Dogwood St, Atlanta, GA 30301" +218692,AA Batteries (4-pack),1,3.84,06/26/19 16:06,"200 4th St, Boston, MA 02215" +218693,ThinkPad Laptop,1,999.99,06/23/19 21:57,"937 Maple St, Austin, TX 73301" +218694,Lightning Charging Cable,1,14.95,06/08/19 16:16,"114 12th St, New York City, NY 10001" +218695,AAA Batteries (4-pack),2,2.99,06/06/19 12:49,"32 9th St, New York City, NY 10001" +218696,AA Batteries (4-pack),1,3.84,06/07/19 19:55,"125 12th St, Atlanta, GA 30301" +218697,20in Monitor,1,109.99,06/12/19 20:28,"657 7th St, Boston, MA 02215" +218698,USB-C Charging Cable,1,11.95,06/29/19 14:26,"760 10th St, New York City, NY 10001" +218699,27in 4K Gaming Monitor,1,389.99,06/21/19 14:35,"333 Elm St, Los Angeles, CA 90001" +218700,Wired Headphones,1,11.99,06/12/19 11:58,"871 Ridge St, Los Angeles, CA 90001" +218701,Lightning Charging Cable,1,14.95,06/09/19 05:59,"4 Spruce St, Boston, MA 02215" +218702,Lightning Charging Cable,1,14.95,06/13/19 12:10,"520 Center St, Dallas, TX 75001" +218703,USB-C Charging Cable,1,11.95,06/08/19 17:05,"824 Church St, Seattle, WA 98101" +218704,AA Batteries (4-pack),2,3.84,06/21/19 18:52,"384 North St, New York City, NY 10001" +218705,20in Monitor,1,109.99,06/26/19 22:53,"568 Cedar St, San Francisco, CA 94016" +218706,Bose SoundSport Headphones,1,99.99,06/22/19 12:37,"668 5th St, Boston, MA 02215" +218707,Bose SoundSport Headphones,1,99.99,06/13/19 22:26,"1 13th St, Los Angeles, CA 90001" +218708,Vareebadd Phone,1,400,06/14/19 13:38,"272 10th St, Los Angeles, CA 90001" +218708,USB-C Charging Cable,1,11.95,06/14/19 13:38,"272 10th St, Los Angeles, CA 90001" +218709,Apple Airpods Headphones,1,150,06/16/19 20:12,"835 Lake St, Dallas, TX 75001" +218710,AAA Batteries (4-pack),3,2.99,06/02/19 17:09,"541 7th St, Atlanta, GA 30301" +218711,Wired Headphones,1,11.99,06/09/19 09:56,"19 Sunset St, Dallas, TX 75001" +218712,LG Washing Machine,1,600.0,06/30/19 10:54,"833 Cedar St, Seattle, WA 98101" +218713,Apple Airpods Headphones,1,150,06/13/19 07:39,"670 Pine St, Seattle, WA 98101" +218714,Lightning Charging Cable,2,14.95,06/08/19 08:42,"965 Jackson St, San Francisco, CA 94016" +218715,iPhone,1,700,06/25/19 16:35,"312 Jefferson St, Los Angeles, CA 90001" +218715,Lightning Charging Cable,1,14.95,06/25/19 16:35,"312 Jefferson St, Los Angeles, CA 90001" +218716,Lightning Charging Cable,1,14.95,06/18/19 10:31,"327 9th St, Portland, ME 04101" +218717,iPhone,1,700,06/13/19 19:17,"92 13th St, San Francisco, CA 94016" +218717,Lightning Charging Cable,1,14.95,06/13/19 19:17,"92 13th St, San Francisco, CA 94016" +218718,AAA Batteries (4-pack),1,2.99,06/17/19 09:10,"181 11th St, San Francisco, CA 94016" +218719,AAA Batteries (4-pack),1,2.99,06/26/19 18:32,"890 Sunset St, New York City, NY 10001" +218720,AAA Batteries (4-pack),2,2.99,06/29/19 23:10,"883 Lincoln St, New York City, NY 10001" +218721,USB-C Charging Cable,1,11.95,06/27/19 16:43,"908 5th St, Dallas, TX 75001" +218721,Wired Headphones,1,11.99,06/27/19 16:43,"908 5th St, Dallas, TX 75001" +218722,Lightning Charging Cable,1,14.95,06/09/19 07:29,"317 Meadow St, Boston, MA 02215" +218723,Lightning Charging Cable,1,14.95,06/08/19 22:20,"519 Cedar St, Boston, MA 02215" +218724,Bose SoundSport Headphones,1,99.99,06/05/19 15:23,"384 Meadow St, Portland, OR 97035" +218725,AAA Batteries (4-pack),1,2.99,06/07/19 15:54,"691 Hill St, New York City, NY 10001" +218726,USB-C Charging Cable,1,11.95,06/05/19 12:25,"121 Forest St, Portland, OR 97035" +218727,Bose SoundSport Headphones,1,99.99,06/15/19 18:09,"389 North St, Los Angeles, CA 90001" +218728,Lightning Charging Cable,1,14.95,06/11/19 14:21,"842 Spruce St, New York City, NY 10001" +218729,27in 4K Gaming Monitor,1,389.99,06/27/19 20:24,"148 Jackson St, San Francisco, CA 94016" +218730,27in 4K Gaming Monitor,1,389.99,06/07/19 23:06,"17 Hickory St, Atlanta, GA 30301" +218731,USB-C Charging Cable,1,11.95,06/08/19 14:36,"936 Forest St, Atlanta, GA 30301" +218732,AAA Batteries (4-pack),2,2.99,06/20/19 10:36,"945 Hill St, Seattle, WA 98101" +218733,USB-C Charging Cable,1,11.95,06/21/19 01:18,"835 Forest St, Los Angeles, CA 90001" +218734,AA Batteries (4-pack),1,3.84,06/19/19 01:19,"944 Walnut St, San Francisco, CA 94016" +218735,Lightning Charging Cable,1,14.95,06/03/19 09:27,"592 Dogwood St, Atlanta, GA 30301" +218736,AAA Batteries (4-pack),1,2.99,06/01/19 15:23,"588 6th St, New York City, NY 10001" +218737,AAA Batteries (4-pack),1,2.99,06/27/19 15:52,"669 Highland St, Atlanta, GA 30301" +,,,,, +218738,27in FHD Monitor,1,149.99,06/23/19 00:49,"966 6th St, San Francisco, CA 94016" +218739,Bose SoundSport Headphones,1,99.99,06/12/19 15:43,"934 Maple St, New York City, NY 10001" +218740,27in FHD Monitor,1,149.99,06/29/19 20:12,"452 12th St, Atlanta, GA 30301" +218741,Macbook Pro Laptop,1,1700,06/07/19 19:28,"361 Church St, Atlanta, GA 30301" +218742,ThinkPad Laptop,1,999.99,06/19/19 21:48,"328 11th St, San Francisco, CA 94016" +218743,Macbook Pro Laptop,1,1700,06/04/19 14:25,"370 14th St, New York City, NY 10001" +218744,ThinkPad Laptop,1,999.99,06/27/19 18:25,"54 Highland St, San Francisco, CA 94016" +218745,AAA Batteries (4-pack),1,2.99,06/05/19 09:09,"950 5th St, Austin, TX 73301" +218746,USB-C Charging Cable,1,11.95,06/27/19 18:16,"801 Forest St, Austin, TX 73301" +218747,Bose SoundSport Headphones,1,99.99,06/03/19 12:54,"218 Dogwood St, Atlanta, GA 30301" +218748,Apple Airpods Headphones,1,150,06/05/19 11:07,"573 Maple St, Boston, MA 02215" +218749,AAA Batteries (4-pack),1,2.99,06/18/19 08:50,"118 Park St, Los Angeles, CA 90001" +218750,USB-C Charging Cable,1,11.95,06/12/19 11:36,"191 Church St, Atlanta, GA 30301" +218751,Google Phone,1,600,06/13/19 14:21,"727 Johnson St, Seattle, WA 98101" +218752,AAA Batteries (4-pack),1,2.99,06/12/19 14:35,"852 Center St, Portland, OR 97035" +218753,USB-C Charging Cable,1,11.95,06/07/19 11:18,"291 Main St, San Francisco, CA 94016" +218754,Apple Airpods Headphones,1,150,06/12/19 18:35,"494 Spruce St, Boston, MA 02215" +218755,AAA Batteries (4-pack),1,2.99,06/23/19 12:40,"755 6th St, Los Angeles, CA 90001" +218756,Apple Airpods Headphones,1,150,06/18/19 16:30,"490 4th St, Austin, TX 73301" +218757,20in Monitor,1,109.99,06/11/19 12:09,"840 Spruce St, New York City, NY 10001" +218758,Lightning Charging Cable,1,14.95,06/06/19 20:01,"158 13th St, Los Angeles, CA 90001" +218759,AAA Batteries (4-pack),1,2.99,06/10/19 20:38,"568 Walnut St, Atlanta, GA 30301" +218760,iPhone,1,700,06/10/19 21:58,"93 Cedar St, Boston, MA 02215" +218760,Apple Airpods Headphones,1,150,06/10/19 21:58,"93 Cedar St, Boston, MA 02215" +218761,Bose SoundSport Headphones,1,99.99,06/26/19 22:34,"350 Chestnut St, Austin, TX 73301" +218762,Wired Headphones,2,11.99,06/18/19 18:35,"73 Lake St, Dallas, TX 75001" +218763,Lightning Charging Cable,1,14.95,06/11/19 12:36,"839 11th St, New York City, NY 10001" +218764,AAA Batteries (4-pack),1,2.99,06/19/19 15:23,"332 Church St, New York City, NY 10001" +218765,iPhone,1,700,06/15/19 11:14,"96 Walnut St, New York City, NY 10001" +218766,34in Ultrawide Monitor,1,379.99,06/20/19 10:13,"284 Lincoln St, Los Angeles, CA 90001" +218767,Wired Headphones,1,11.99,06/22/19 10:21,"769 7th St, New York City, NY 10001" +218768,34in Ultrawide Monitor,1,379.99,06/26/19 12:11,"21 Highland St, New York City, NY 10001" +218769,Bose SoundSport Headphones,1,99.99,06/11/19 15:12,"500 1st St, Portland, OR 97035" +218770,Apple Airpods Headphones,1,150,06/14/19 22:25,"392 Wilson St, Austin, TX 73301" +218771,34in Ultrawide Monitor,1,379.99,06/12/19 20:36,"360 12th St, San Francisco, CA 94016" +218772,Lightning Charging Cable,1,14.95,06/18/19 06:14,"877 1st St, Boston, MA 02215" +218773,Bose SoundSport Headphones,1,99.99,06/08/19 12:26,"316 Sunset St, San Francisco, CA 94016" +218774,AA Batteries (4-pack),1,3.84,06/05/19 08:41,"858 Hill St, Boston, MA 02215" +218775,Wired Headphones,1,11.99,06/07/19 17:24,"40 Chestnut St, Portland, OR 97035" +218776,Apple Airpods Headphones,1,150,06/02/19 20:25,"100 Spruce St, Dallas, TX 75001" +218777,AA Batteries (4-pack),1,3.84,06/03/19 10:04,"467 Center St, San Francisco, CA 94016" +218778,AAA Batteries (4-pack),1,2.99,06/02/19 20:47,"174 Madison St, Los Angeles, CA 90001" +218779,27in FHD Monitor,1,149.99,06/09/19 16:37,"847 Center St, Portland, ME 04101" +218780,20in Monitor,1,109.99,06/11/19 15:49,"178 Lakeview St, Seattle, WA 98101" +218781,iPhone,1,700,06/18/19 19:02,"176 Jackson St, San Francisco, CA 94016" +218781,Lightning Charging Cable,1,14.95,06/18/19 19:02,"176 Jackson St, San Francisco, CA 94016" +218782,Lightning Charging Cable,1,14.95,06/24/19 19:52,"696 9th St, Boston, MA 02215" +218783,Flatscreen TV,1,300,06/01/19 11:57,"62 Dogwood St, San Francisco, CA 94016" +218784,ThinkPad Laptop,1,999.99,06/24/19 20:26,"305 2nd St, Los Angeles, CA 90001" +218785,AAA Batteries (4-pack),1,2.99,06/28/19 11:41,"388 Wilson St, New York City, NY 10001" +218786,Wired Headphones,1,11.99,06/09/19 18:37,"877 Main St, New York City, NY 10001" +218787,AA Batteries (4-pack),3,3.84,06/07/19 22:50,"164 Madison St, Seattle, WA 98101" +218788,20in Monitor,1,109.99,06/06/19 18:33,"437 Willow St, Atlanta, GA 30301" +218789,27in FHD Monitor,1,149.99,06/16/19 17:38,"549 9th St, Los Angeles, CA 90001" +218790,AA Batteries (4-pack),1,3.84,06/08/19 03:59,"711 Park St, Atlanta, GA 30301" +218791,Lightning Charging Cable,1,14.95,06/10/19 18:43,"304 Lakeview St, San Francisco, CA 94016" +218792,Flatscreen TV,1,300,06/16/19 21:33,"858 4th St, Los Angeles, CA 90001" +218793,USB-C Charging Cable,1,11.95,06/16/19 15:03,"14 Johnson St, New York City, NY 10001" +218794,Apple Airpods Headphones,1,150,06/24/19 19:17,"306 Johnson St, Atlanta, GA 30301" +218795,Google Phone,1,600,06/09/19 11:36,"173 1st St, Portland, OR 97035" +218796,AAA Batteries (4-pack),1,2.99,06/24/19 18:15,"998 Ridge St, San Francisco, CA 94016" +218797,AAA Batteries (4-pack),1,2.99,06/09/19 19:52,"742 Main St, Boston, MA 02215" +218798,iPhone,1,700,06/13/19 08:18,"440 Cherry St, Seattle, WA 98101" +218798,Wired Headphones,1,11.99,06/13/19 08:18,"440 Cherry St, Seattle, WA 98101" +218799,Bose SoundSport Headphones,1,99.99,06/20/19 20:14,"603 Cherry St, San Francisco, CA 94016" +218800,Lightning Charging Cable,1,14.95,06/25/19 09:58,"445 Johnson St, Atlanta, GA 30301" +218801,AA Batteries (4-pack),1,3.84,06/06/19 05:37,"828 7th St, Los Angeles, CA 90001" +218802,Apple Airpods Headphones,1,150,06/01/19 17:44,"208 Lincoln St, Atlanta, GA 30301" +218803,Wired Headphones,1,11.99,06/12/19 16:23,"586 Lincoln St, Atlanta, GA 30301" +218804,AA Batteries (4-pack),1,3.84,06/01/19 12:23,"229 Center St, Austin, TX 73301" +218805,Lightning Charging Cable,1,14.95,06/30/19 12:12,"621 4th St, San Francisco, CA 94016" +218806,AAA Batteries (4-pack),1,2.99,06/20/19 08:16,"476 Meadow St, Dallas, TX 75001" +218807,Bose SoundSport Headphones,1,99.99,06/14/19 14:25,"854 Wilson St, San Francisco, CA 94016" +218808,Google Phone,1,600,06/12/19 18:11,"710 Lincoln St, San Francisco, CA 94016" +218809,Wired Headphones,2,11.99,06/30/19 16:57,"755 West St, New York City, NY 10001" +218810,AA Batteries (4-pack),1,3.84,06/21/19 20:01,"653 Park St, San Francisco, CA 94016" +218811,USB-C Charging Cable,1,11.95,06/03/19 20:59,"955 Elm St, Los Angeles, CA 90001" +218812,20in Monitor,1,109.99,06/15/19 06:29,"362 River St, Seattle, WA 98101" +218813,20in Monitor,1,109.99,06/07/19 19:56,"13 Ridge St, San Francisco, CA 94016" +218814,Bose SoundSport Headphones,1,99.99,06/01/19 17:11,"71 Hickory St, Dallas, TX 75001" +218815,AA Batteries (4-pack),1,3.84,06/30/19 17:38,"721 Main St, San Francisco, CA 94016" +218816,AAA Batteries (4-pack),1,2.99,06/28/19 12:54,"603 River St, Dallas, TX 75001" +218817,AAA Batteries (4-pack),1,2.99,06/27/19 22:29,"886 Cedar St, San Francisco, CA 94016" +218818,Bose SoundSport Headphones,1,99.99,06/25/19 22:29,"865 9th St, San Francisco, CA 94016" +218819,Wired Headphones,1,11.99,06/21/19 13:37,"435 Dogwood St, Los Angeles, CA 90001" +218820,AA Batteries (4-pack),2,3.84,06/15/19 13:14,"667 Elm St, San Francisco, CA 94016" +218821,27in FHD Monitor,1,149.99,06/21/19 22:51,"846 Walnut St, San Francisco, CA 94016" +218822,AA Batteries (4-pack),3,3.84,06/28/19 18:41,"891 Highland St, Atlanta, GA 30301" +218823,Vareebadd Phone,1,400,06/23/19 05:14,"182 Willow St, Atlanta, GA 30301" +218824,Lightning Charging Cable,1,14.95,06/24/19 20:15,"999 13th St, New York City, NY 10001" +218825,Bose SoundSport Headphones,1,99.99,06/09/19 10:16,"529 Pine St, San Francisco, CA 94016" +218826,27in 4K Gaming Monitor,1,389.99,06/26/19 21:06,"336 Meadow St, Portland, OR 97035" +218827,Wired Headphones,1,11.99,06/08/19 21:49,"141 Johnson St, Dallas, TX 75001" +218828,Bose SoundSport Headphones,1,99.99,06/02/19 15:20,"13 Park St, Los Angeles, CA 90001" +218829,AA Batteries (4-pack),1,3.84,06/29/19 17:54,"147 Center St, Austin, TX 73301" +218830,Bose SoundSport Headphones,1,99.99,06/28/19 14:23,"555 Forest St, New York City, NY 10001" +218831,27in FHD Monitor,1,149.99,06/12/19 11:25,"321 6th St, Atlanta, GA 30301" +218832,Vareebadd Phone,1,400,06/06/19 10:23,"69 12th St, New York City, NY 10001" +218833,AA Batteries (4-pack),1,3.84,06/30/19 21:06,"439 River St, Dallas, TX 75001" +218834,USB-C Charging Cable,2,11.95,06/21/19 11:03,"575 Spruce St, Dallas, TX 75001" +218835,Bose SoundSport Headphones,1,99.99,06/07/19 10:10,"40 Cherry St, Seattle, WA 98101" +218836,USB-C Charging Cable,1,11.95,06/17/19 14:08,"605 Dogwood St, San Francisco, CA 94016" +218837,AAA Batteries (4-pack),1,2.99,06/02/19 19:32,"260 Cherry St, Atlanta, GA 30301" +218838,AA Batteries (4-pack),1,3.84,06/05/19 08:25,"369 Adams St, Atlanta, GA 30301" +218839,Lightning Charging Cable,2,14.95,06/10/19 10:10,"543 Hickory St, Los Angeles, CA 90001" +218840,USB-C Charging Cable,1,11.95,06/19/19 15:15,"825 9th St, San Francisco, CA 94016" +218841,AA Batteries (4-pack),1,3.84,06/15/19 03:01,"307 Jefferson St, Seattle, WA 98101" +218842,Google Phone,1,600,06/09/19 07:50,"561 7th St, San Francisco, CA 94016" +218843,Macbook Pro Laptop,1,1700,06/14/19 09:47,"692 Church St, San Francisco, CA 94016" +218844,AAA Batteries (4-pack),1,2.99,06/10/19 19:53,"295 Lakeview St, Atlanta, GA 30301" +218845,AA Batteries (4-pack),2,3.84,06/27/19 12:20,"322 Jefferson St, New York City, NY 10001" +218846,Google Phone,1,600,06/10/19 18:26,"775 Madison St, San Francisco, CA 94016" +218847,Lightning Charging Cable,1,14.95,06/10/19 17:51,"811 Spruce St, Portland, OR 97035" +218848,Apple Airpods Headphones,1,150,06/17/19 11:39,"583 Center St, Los Angeles, CA 90001" +218849,USB-C Charging Cable,1,11.95,06/01/19 21:37,"352 Lakeview St, Los Angeles, CA 90001" +218850,27in 4K Gaming Monitor,1,389.99,06/28/19 21:43,"621 Lakeview St, Seattle, WA 98101" +218851,Lightning Charging Cable,1,14.95,06/07/19 06:40,"390 Wilson St, Atlanta, GA 30301" +218852,Bose SoundSport Headphones,1,99.99,06/10/19 18:46,"74 Meadow St, Dallas, TX 75001" +218853,27in FHD Monitor,1,149.99,06/12/19 09:18,"816 14th St, Seattle, WA 98101" +218854,AA Batteries (4-pack),1,3.84,06/05/19 10:40,"532 South St, San Francisco, CA 94016" +218855,Bose SoundSport Headphones,1,99.99,06/20/19 12:41,"941 Walnut St, Los Angeles, CA 90001" +218856,Lightning Charging Cable,1,14.95,06/21/19 12:20,"114 Hill St, San Francisco, CA 94016" +218857,Bose SoundSport Headphones,1,99.99,06/13/19 08:36,"338 Jefferson St, Dallas, TX 75001" +218858,Lightning Charging Cable,1,14.95,06/18/19 21:26,"803 10th St, New York City, NY 10001" +218859,USB-C Charging Cable,1,11.95,06/14/19 01:18,"814 Pine St, Los Angeles, CA 90001" +218860,27in 4K Gaming Monitor,1,389.99,06/10/19 20:25,"707 Jackson St, Boston, MA 02215" +218861,34in Ultrawide Monitor,1,379.99,06/11/19 15:44,"973 Willow St, San Francisco, CA 94016" +218862,Apple Airpods Headphones,1,150,06/16/19 15:24,"656 Maple St, New York City, NY 10001" +218863,Lightning Charging Cable,1,14.95,06/23/19 07:18,"421 Madison St, San Francisco, CA 94016" +218864,Wired Headphones,1,11.99,06/05/19 19:15,"680 Sunset St, San Francisco, CA 94016" +218865,34in Ultrawide Monitor,1,379.99,06/05/19 22:26,"368 Lincoln St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +218866,Bose SoundSport Headphones,1,99.99,06/02/19 21:18,"21 Cedar St, Los Angeles, CA 90001" +218867,Lightning Charging Cable,1,14.95,06/24/19 15:14,"423 Center St, Dallas, TX 75001" +218868,27in 4K Gaming Monitor,1,389.99,06/23/19 11:10,"654 5th St, San Francisco, CA 94016" +218869,Wired Headphones,2,11.99,06/19/19 15:32,"996 Hill St, San Francisco, CA 94016" +218870,Lightning Charging Cable,1,14.95,06/25/19 13:34,"49 5th St, Atlanta, GA 30301" +218871,34in Ultrawide Monitor,1,379.99,06/10/19 21:24,"186 4th St, Boston, MA 02215" +218872,Bose SoundSport Headphones,1,99.99,06/17/19 19:08,"266 Wilson St, Boston, MA 02215" +218873,USB-C Charging Cable,1,11.95,06/07/19 17:03,"497 9th St, Portland, OR 97035" +218874,Lightning Charging Cable,1,14.95,06/07/19 17:16,"955 12th St, New York City, NY 10001" +218874,ThinkPad Laptop,1,999.99,06/07/19 17:16,"955 12th St, New York City, NY 10001" +218875,USB-C Charging Cable,2,11.95,06/06/19 09:42,"467 Ridge St, New York City, NY 10001" +218876,Apple Airpods Headphones,1,150,06/23/19 11:26,"823 7th St, San Francisco, CA 94016" +218877,Macbook Pro Laptop,1,1700,06/07/19 16:02,"75 Hickory St, Boston, MA 02215" +218878,Wired Headphones,1,11.99,06/19/19 09:53,"412 Park St, Atlanta, GA 30301" +218879,Wired Headphones,2,11.99,06/13/19 13:09,"101 Pine St, Los Angeles, CA 90001" +218880,AA Batteries (4-pack),1,3.84,06/06/19 12:07,"528 8th St, New York City, NY 10001" +218881,ThinkPad Laptop,1,999.99,06/08/19 22:55,"479 Johnson St, San Francisco, CA 94016" +218882,AAA Batteries (4-pack),1,2.99,06/25/19 22:44,"951 North St, Los Angeles, CA 90001" +218882,AA Batteries (4-pack),2,3.84,06/25/19 22:44,"951 North St, Los Angeles, CA 90001" +218883,Lightning Charging Cable,1,14.95,06/22/19 13:44,"560 Dogwood St, San Francisco, CA 94016" +218884,AA Batteries (4-pack),2,3.84,06/11/19 09:28,"311 Meadow St, Atlanta, GA 30301" +218885,Wired Headphones,1,11.99,06/10/19 20:07,"884 Main St, New York City, NY 10001" +218886,Lightning Charging Cable,1,14.95,06/22/19 18:09,"717 Forest St, Los Angeles, CA 90001" +218887,34in Ultrawide Monitor,1,379.99,06/01/19 22:06,"426 Lakeview St, San Francisco, CA 94016" +218888,AA Batteries (4-pack),1,3.84,06/17/19 13:14,"216 River St, Seattle, WA 98101" +218889,Flatscreen TV,1,300,06/13/19 14:20,"479 13th St, Boston, MA 02215" +218890,LG Washing Machine,1,600.0,06/11/19 21:07,"543 South St, Portland, OR 97035" +218891,27in FHD Monitor,1,149.99,06/29/19 12:36,"28 7th St, Seattle, WA 98101" +218892,Bose SoundSport Headphones,1,99.99,06/29/19 00:56,"575 Hill St, San Francisco, CA 94016" +218893,Apple Airpods Headphones,1,150,06/08/19 10:57,"103 Forest St, New York City, NY 10001" +218894,Apple Airpods Headphones,1,150,06/17/19 20:46,"415 Hill St, Los Angeles, CA 90001" +218895,ThinkPad Laptop,1,999.99,06/25/19 13:23,"722 North St, Seattle, WA 98101" +218896,Lightning Charging Cable,1,14.95,06/25/19 23:55,"54 2nd St, Los Angeles, CA 90001" +218897,USB-C Charging Cable,1,11.95,06/08/19 15:27,"741 14th St, Portland, ME 04101" +218898,AAA Batteries (4-pack),2,2.99,06/20/19 01:49,"677 Johnson St, Atlanta, GA 30301" +218899,Bose SoundSport Headphones,1,99.99,06/29/19 10:50,"263 7th St, Seattle, WA 98101" +218900,AAA Batteries (4-pack),1,2.99,06/14/19 07:20,"409 11th St, Los Angeles, CA 90001" +218901,Macbook Pro Laptop,1,1700,06/17/19 15:02,"785 Lake St, Boston, MA 02215" +218902,27in FHD Monitor,1,149.99,06/13/19 06:57,"890 11th St, San Francisco, CA 94016" +218903,Lightning Charging Cable,1,14.95,06/02/19 12:58,"643 River St, San Francisco, CA 94016" +218904,Macbook Pro Laptop,1,1700,06/02/19 21:13,"393 Center St, Boston, MA 02215" +218905,Bose SoundSport Headphones,1,99.99,06/25/19 18:26,"527 7th St, Seattle, WA 98101" +218906,Lightning Charging Cable,1,14.95,06/02/19 12:54,"660 7th St, Los Angeles, CA 90001" +218907,Lightning Charging Cable,1,14.95,06/17/19 11:10,"291 North St, San Francisco, CA 94016" +218908,Wired Headphones,1,11.99,06/04/19 12:36,"505 Center St, San Francisco, CA 94016" +218909,AA Batteries (4-pack),2,3.84,06/15/19 12:47,"400 North St, Los Angeles, CA 90001" +218910,AA Batteries (4-pack),1,3.84,06/23/19 07:03,"791 Johnson St, San Francisco, CA 94016" +218911,AAA Batteries (4-pack),2,2.99,06/10/19 13:58,"163 West St, Austin, TX 73301" +218912,AAA Batteries (4-pack),1,2.99,06/03/19 11:52,"160 Hickory St, New York City, NY 10001" +218913,AA Batteries (4-pack),1,3.84,06/20/19 12:57,"240 Willow St, Los Angeles, CA 90001" +218914,AA Batteries (4-pack),3,3.84,06/26/19 13:57,"665 Hill St, Seattle, WA 98101" +218915,iPhone,1,700,06/05/19 13:39,"885 Center St, Dallas, TX 75001" +218916,Apple Airpods Headphones,1,150,06/22/19 12:10,"327 4th St, San Francisco, CA 94016" +218916,AAA Batteries (4-pack),1,2.99,06/22/19 12:10,"327 4th St, San Francisco, CA 94016" +218917,Macbook Pro Laptop,1,1700,06/18/19 16:19,"406 5th St, San Francisco, CA 94016" +218918,Lightning Charging Cable,1,14.95,06/11/19 14:20,"783 Main St, San Francisco, CA 94016" +218919,AAA Batteries (4-pack),2,2.99,06/15/19 09:14,"491 Washington St, Atlanta, GA 30301" +218920,USB-C Charging Cable,1,11.95,06/30/19 14:05,"283 Center St, Atlanta, GA 30301" +218921,Bose SoundSport Headphones,1,99.99,06/03/19 17:23,"723 Sunset St, New York City, NY 10001" +218922,Wired Headphones,1,11.99,06/01/19 17:09,"830 10th St, San Francisco, CA 94016" +218923,Macbook Pro Laptop,1,1700,06/21/19 22:08,"234 Church St, Atlanta, GA 30301" +218924,AAA Batteries (4-pack),1,2.99,06/27/19 19:35,"178 West St, San Francisco, CA 94016" +218925,AAA Batteries (4-pack),1,2.99,06/03/19 15:06,"223 Washington St, Los Angeles, CA 90001" +218926,Apple Airpods Headphones,1,150,06/30/19 08:14,"884 West St, Portland, ME 04101" +218927,Lightning Charging Cable,1,14.95,06/01/19 12:38,"492 5th St, San Francisco, CA 94016" +218928,Bose SoundSport Headphones,1,99.99,06/28/19 11:02,"443 Jackson St, Dallas, TX 75001" +218929,LG Dryer,1,600.0,06/21/19 18:53,"372 Washington St, Portland, OR 97035" +218929,Wired Headphones,1,11.99,06/21/19 18:53,"372 Washington St, Portland, OR 97035" +218930,34in Ultrawide Monitor,1,379.99,06/13/19 02:07,"90 West St, San Francisco, CA 94016" +218931,USB-C Charging Cable,1,11.95,06/16/19 00:23,"976 Adams St, San Francisco, CA 94016" +218932,20in Monitor,1,109.99,06/19/19 20:41,"302 Washington St, Los Angeles, CA 90001" +218933,27in 4K Gaming Monitor,1,389.99,06/22/19 19:51,"322 6th St, Los Angeles, CA 90001" +218934,Wired Headphones,1,11.99,06/26/19 22:15,"543 8th St, San Francisco, CA 94016" +218935,Flatscreen TV,1,300,06/15/19 00:11,"333 1st St, Boston, MA 02215" +218936,Lightning Charging Cable,1,14.95,06/26/19 15:37,"816 River St, San Francisco, CA 94016" +218937,20in Monitor,1,109.99,06/10/19 00:09,"412 Meadow St, Atlanta, GA 30301" +218938,Wired Headphones,1,11.99,06/02/19 10:49,"337 Hill St, San Francisco, CA 94016" +218939,20in Monitor,1,109.99,06/28/19 17:56,"284 Park St, Portland, OR 97035" +218940,Lightning Charging Cable,1,14.95,06/30/19 09:59,"187 Meadow St, New York City, NY 10001" +218941,Macbook Pro Laptop,1,1700,06/05/19 23:23,"477 South St, Austin, TX 73301" +218942,Vareebadd Phone,1,400,06/30/19 21:46,"439 Chestnut St, New York City, NY 10001" +218943,USB-C Charging Cable,1,11.95,06/22/19 11:48,"173 13th St, San Francisco, CA 94016" +218944,AAA Batteries (4-pack),1,2.99,06/02/19 21:10,"366 Willow St, San Francisco, CA 94016" +218945,27in FHD Monitor,1,149.99,06/03/19 15:36,"229 Madison St, San Francisco, CA 94016" +218946,Bose SoundSport Headphones,1,99.99,06/09/19 19:46,"905 Forest St, Portland, OR 97035" +218947,Lightning Charging Cable,1,14.95,06/29/19 13:30,"234 Meadow St, Seattle, WA 98101" +218948,Bose SoundSport Headphones,1,99.99,06/01/19 16:02,"561 6th St, Boston, MA 02215" +218949,USB-C Charging Cable,1,11.95,06/15/19 00:25,"88 1st St, New York City, NY 10001" +218950,AA Batteries (4-pack),1,3.84,06/19/19 22:19,"101 North St, Los Angeles, CA 90001" +218951,Bose SoundSport Headphones,1,99.99,06/16/19 19:34,"570 Center St, Austin, TX 73301" +218952,Lightning Charging Cable,1,14.95,06/23/19 00:27,"378 Johnson St, Atlanta, GA 30301" +218953,Lightning Charging Cable,1,14.95,06/09/19 13:38,"767 Park St, Boston, MA 02215" +218954,USB-C Charging Cable,1,11.95,06/10/19 23:50,"756 South St, San Francisco, CA 94016" +218955,Lightning Charging Cable,1,14.95,06/17/19 12:46,"303 River St, San Francisco, CA 94016" +218956,Lightning Charging Cable,1,14.95,06/18/19 14:14,"212 River St, San Francisco, CA 94016" +218957,Bose SoundSport Headphones,1,99.99,06/29/19 12:12,"666 Wilson St, Atlanta, GA 30301" +218958,Wired Headphones,1,11.99,06/27/19 23:15,"435 11th St, Portland, OR 97035" +218959,34in Ultrawide Monitor,1,379.99,06/04/19 19:21,"745 Maple St, Boston, MA 02215" +218960,Bose SoundSport Headphones,1,99.99,06/07/19 00:18,"258 Pine St, New York City, NY 10001" +218961,ThinkPad Laptop,1,999.99,06/26/19 23:07,"660 Washington St, San Francisco, CA 94016" +218962,Apple Airpods Headphones,1,150,06/19/19 15:00,"618 Hill St, Portland, OR 97035" +218963,LG Dryer,1,600.0,06/13/19 14:07,"166 Jackson St, San Francisco, CA 94016" +218964,AA Batteries (4-pack),2,3.84,06/21/19 10:03,"820 8th St, Seattle, WA 98101" +218965,Wired Headphones,1,11.99,06/05/19 16:14,"179 Cherry St, Austin, TX 73301" +218966,USB-C Charging Cable,1,11.95,06/03/19 10:13,"85 Lake St, Atlanta, GA 30301" +218967,Apple Airpods Headphones,1,150,06/04/19 09:24,"280 South St, Boston, MA 02215" +218968,AAA Batteries (4-pack),3,2.99,06/10/19 19:23,"572 River St, Los Angeles, CA 90001" +218969,USB-C Charging Cable,1,11.95,06/02/19 11:00,"691 Forest St, New York City, NY 10001" +218970,AA Batteries (4-pack),1,3.84,06/13/19 13:06,"200 Hickory St, Seattle, WA 98101" +218971,20in Monitor,1,109.99,06/30/19 10:13,"168 Walnut St, New York City, NY 10001" +218972,AAA Batteries (4-pack),1,2.99,06/27/19 11:57,"598 Hickory St, Portland, OR 97035" +218973,USB-C Charging Cable,1,11.95,06/26/19 21:49,"794 2nd St, New York City, NY 10001" +218974,Macbook Pro Laptop,1,1700,06/25/19 11:15,"465 11th St, Los Angeles, CA 90001" +218975,27in FHD Monitor,1,149.99,06/17/19 21:55,"205 Park St, San Francisco, CA 94016" +218976,AAA Batteries (4-pack),1,2.99,06/25/19 16:18,"379 Ridge St, New York City, NY 10001" +218977,AAA Batteries (4-pack),1,2.99,06/24/19 07:49,"21 Pine St, Boston, MA 02215" +218978,Wired Headphones,1,11.99,06/03/19 17:56,"777 Church St, Atlanta, GA 30301" +218979,Bose SoundSport Headphones,1,99.99,06/01/19 18:09,"941 North St, San Francisco, CA 94016" +218980,AA Batteries (4-pack),1,3.84,06/18/19 20:51,"975 14th St, Portland, OR 97035" +218981,AAA Batteries (4-pack),1,2.99,06/30/19 20:05,"676 Willow St, San Francisco, CA 94016" +218982,27in 4K Gaming Monitor,1,389.99,06/10/19 16:09,"600 Lakeview St, Atlanta, GA 30301" +218983,Apple Airpods Headphones,1,150,06/14/19 23:12,"957 Madison St, Austin, TX 73301" +218984,Wired Headphones,1,11.99,06/06/19 16:50,"977 14th St, Atlanta, GA 30301" +218985,USB-C Charging Cable,1,11.95,06/12/19 17:55,"789 10th St, Boston, MA 02215" +218986,Lightning Charging Cable,1,14.95,06/23/19 13:36,"642 13th St, Boston, MA 02215" +218987,Wired Headphones,1,11.99,06/16/19 14:50,"706 2nd St, San Francisco, CA 94016" +218988,Lightning Charging Cable,1,14.95,06/13/19 23:52,"991 Cherry St, Los Angeles, CA 90001" +218989,20in Monitor,1,109.99,06/22/19 14:31,"730 Cherry St, San Francisco, CA 94016" +218990,iPhone,1,700,06/03/19 03:46,"18 Sunset St, San Francisco, CA 94016" +218991,34in Ultrawide Monitor,1,379.99,06/18/19 00:09,"829 Walnut St, New York City, NY 10001" +218991,Apple Airpods Headphones,1,150,06/18/19 00:09,"829 Walnut St, New York City, NY 10001" +218992,27in 4K Gaming Monitor,1,389.99,06/19/19 11:36,"614 Forest St, New York City, NY 10001" +218993,Bose SoundSport Headphones,1,99.99,06/27/19 16:52,"975 Wilson St, Atlanta, GA 30301" +218994,Google Phone,1,600,06/05/19 14:34,"932 Hill St, New York City, NY 10001" +218995,Flatscreen TV,1,300,06/16/19 19:06,"981 West St, Seattle, WA 98101" +218996,Wired Headphones,1,11.99,06/21/19 14:12,"450 11th St, Boston, MA 02215" +218997,Macbook Pro Laptop,1,1700,06/14/19 13:33,"612 Madison St, Los Angeles, CA 90001" +218998,Wired Headphones,1,11.99,06/27/19 20:46,"303 Wilson St, San Francisco, CA 94016" +218999,Bose SoundSport Headphones,1,99.99,06/12/19 14:24,"848 South St, New York City, NY 10001" +219000,Google Phone,1,600,06/06/19 19:17,"750 6th St, Seattle, WA 98101" +219001,iPhone,1,700,06/24/19 20:19,"337 Lincoln St, San Francisco, CA 94016" +219002,LG Dryer,1,600.0,06/01/19 14:19,"745 Jefferson St, Portland, ME 04101" +219003,Lightning Charging Cable,1,14.95,06/30/19 20:48,"612 10th St, Dallas, TX 75001" +219004,AA Batteries (4-pack),1,3.84,06/05/19 21:28,"670 Sunset St, Dallas, TX 75001" +219005,34in Ultrawide Monitor,1,379.99,06/21/19 11:33,"618 Cherry St, Los Angeles, CA 90001" +219006,AA Batteries (4-pack),1,3.84,06/24/19 04:57,"178 Lake St, San Francisco, CA 94016" +219007,AAA Batteries (4-pack),1,2.99,06/03/19 14:39,"281 1st St, Atlanta, GA 30301" +219008,Apple Airpods Headphones,1,150,06/22/19 11:36,"335 Wilson St, Portland, ME 04101" +219009,27in FHD Monitor,1,149.99,06/26/19 18:08,"808 River St, Dallas, TX 75001" +219010,AA Batteries (4-pack),1,3.84,06/25/19 23:37,"584 Jefferson St, Los Angeles, CA 90001" +219011,Bose SoundSport Headphones,1,99.99,06/20/19 22:53,"746 Wilson St, Los Angeles, CA 90001" +219012,27in FHD Monitor,1,149.99,06/03/19 14:38,"603 Madison St, San Francisco, CA 94016" +219013,USB-C Charging Cable,1,11.95,06/06/19 16:13,"884 8th St, Los Angeles, CA 90001" +219014,Lightning Charging Cable,1,14.95,06/07/19 20:11,"757 8th St, Seattle, WA 98101" +219015,Wired Headphones,1,11.99,06/29/19 12:07,"460 Lake St, Los Angeles, CA 90001" +219016,USB-C Charging Cable,1,11.95,06/20/19 22:59,"655 Sunset St, San Francisco, CA 94016" +219017,Apple Airpods Headphones,1,150,06/06/19 17:16,"766 Highland St, Los Angeles, CA 90001" +219018,AAA Batteries (4-pack),1,2.99,06/18/19 21:46,"489 8th St, Austin, TX 73301" +219019,AA Batteries (4-pack),1,3.84,06/24/19 08:33,"2 Lakeview St, Boston, MA 02215" +219020,USB-C Charging Cable,1,11.95,06/22/19 16:32,"568 Chestnut St, Los Angeles, CA 90001" +219021,USB-C Charging Cable,1,11.95,06/09/19 11:08,"325 9th St, Los Angeles, CA 90001" +219022,USB-C Charging Cable,1,11.95,06/26/19 13:17,"620 10th St, Los Angeles, CA 90001" +219023,iPhone,1,700,06/28/19 20:25,"237 Cherry St, Austin, TX 73301" +219024,AAA Batteries (4-pack),1,2.99,06/04/19 16:43,"774 12th St, San Francisco, CA 94016" +219025,USB-C Charging Cable,1,11.95,06/03/19 16:48,"309 Walnut St, Portland, OR 97035" +219026,AAA Batteries (4-pack),3,2.99,06/15/19 12:40,"75 5th St, Dallas, TX 75001" +219027,Apple Airpods Headphones,1,150,06/22/19 19:46,"285 Forest St, San Francisco, CA 94016" +219028,AAA Batteries (4-pack),2,2.99,06/17/19 09:29,"132 Spruce St, Seattle, WA 98101" +219029,AAA Batteries (4-pack),1,2.99,06/24/19 20:08,"476 13th St, Austin, TX 73301" +219030,Apple Airpods Headphones,1,150,06/30/19 11:26,"728 Lakeview St, San Francisco, CA 94016" +219031,Wired Headphones,1,11.99,06/28/19 13:05,"991 Johnson St, San Francisco, CA 94016" +219032,AA Batteries (4-pack),2,3.84,06/09/19 16:26,"755 Church St, New York City, NY 10001" +219033,34in Ultrawide Monitor,1,379.99,06/22/19 10:08,"827 14th St, Austin, TX 73301" +219034,27in FHD Monitor,1,149.99,06/30/19 19:56,"123 7th St, Los Angeles, CA 90001" +219035,USB-C Charging Cable,1,11.95,06/29/19 13:43,"675 10th St, Los Angeles, CA 90001" +219036,34in Ultrawide Monitor,1,379.99,06/13/19 23:20,"535 Hickory St, Los Angeles, CA 90001" +219037,AA Batteries (4-pack),1,3.84,06/30/19 16:15,"622 Lincoln St, Seattle, WA 98101" +219038,USB-C Charging Cable,1,11.95,06/18/19 22:11,"150 Spruce St, Dallas, TX 75001" +219039,AAA Batteries (4-pack),1,2.99,06/09/19 20:56,"77 Johnson St, San Francisco, CA 94016" +219040,27in FHD Monitor,1,149.99,06/14/19 11:25,"482 11th St, New York City, NY 10001" +219041,AA Batteries (4-pack),1,3.84,06/08/19 22:31,"824 Adams St, Dallas, TX 75001" +219042,Bose SoundSport Headphones,1,99.99,06/25/19 14:10,"916 Center St, Austin, TX 73301" +219043,Lightning Charging Cable,1,14.95,06/28/19 02:00,"272 Pine St, Dallas, TX 75001" +219044,Apple Airpods Headphones,1,150,06/07/19 11:27,"711 River St, Seattle, WA 98101" +219045,Wired Headphones,1,11.99,06/01/19 11:45,"559 Meadow St, Boston, MA 02215" +219046,AA Batteries (4-pack),1,3.84,06/18/19 12:24,"24 Madison St, Dallas, TX 75001" +219047,AAA Batteries (4-pack),1,2.99,06/15/19 07:13,"729 South St, Dallas, TX 75001" +219048,Apple Airpods Headphones,1,150,06/11/19 09:58,"793 Washington St, Seattle, WA 98101" +219049,Wired Headphones,1,11.99,06/25/19 18:16,"263 Cedar St, Los Angeles, CA 90001" +219050,Vareebadd Phone,1,400,06/30/19 23:54,"364 6th St, Los Angeles, CA 90001" +219051,USB-C Charging Cable,1,11.95,06/12/19 11:49,"839 Hickory St, San Francisco, CA 94016" +219052,AAA Batteries (4-pack),1,2.99,06/29/19 19:55,"35 Chestnut St, Los Angeles, CA 90001" +219053,27in 4K Gaming Monitor,1,389.99,06/04/19 23:36,"440 Jefferson St, Dallas, TX 75001" +219054,27in 4K Gaming Monitor,1,389.99,06/02/19 17:19,"485 Elm St, San Francisco, CA 94016" +219055,Apple Airpods Headphones,1,150,06/12/19 18:04,"692 Cherry St, San Francisco, CA 94016" +219056,AAA Batteries (4-pack),1,2.99,06/26/19 00:10,"608 4th St, Portland, ME 04101" +219056,Lightning Charging Cable,1,14.95,06/26/19 00:10,"608 4th St, Portland, ME 04101" +219057,AA Batteries (4-pack),2,3.84,06/25/19 19:30,"964 14th St, Los Angeles, CA 90001" +219058,iPhone,1,700,06/24/19 21:27,"883 Pine St, Atlanta, GA 30301" +219058,Apple Airpods Headphones,1,150,06/24/19 21:27,"883 Pine St, Atlanta, GA 30301" +219059,Apple Airpods Headphones,1,150,06/07/19 10:51,"391 Lakeview St, Seattle, WA 98101" +219060,Bose SoundSport Headphones,1,99.99,06/29/19 16:49,"527 6th St, San Francisco, CA 94016" +219061,Bose SoundSport Headphones,1,99.99,06/09/19 12:11,"553 Hill St, New York City, NY 10001" +219062,USB-C Charging Cable,1,11.95,06/07/19 10:48,"666 Center St, San Francisco, CA 94016" +219063,AA Batteries (4-pack),1,3.84,06/14/19 21:12,"6 Cedar St, Los Angeles, CA 90001" +219064,Lightning Charging Cable,1,14.95,06/09/19 07:39,"25 12th St, Portland, OR 97035" +219065,iPhone,1,700,06/27/19 17:57,"995 Chestnut St, Dallas, TX 75001" +219066,USB-C Charging Cable,1,11.95,06/20/19 14:49,"89 Willow St, San Francisco, CA 94016" +219067,LG Dryer,1,600.0,06/13/19 05:27,"813 Main St, Boston, MA 02215" +219068,Lightning Charging Cable,1,14.95,06/29/19 12:27,"314 12th St, San Francisco, CA 94016" +219069,Lightning Charging Cable,1,14.95,06/22/19 21:18,"799 Lakeview St, Los Angeles, CA 90001" +219070,AA Batteries (4-pack),1,3.84,06/06/19 17:57,"231 8th St, New York City, NY 10001" +219071,Lightning Charging Cable,1,14.95,06/18/19 07:53,"557 Forest St, Los Angeles, CA 90001" +219072,AAA Batteries (4-pack),2,2.99,06/18/19 08:31,"562 Washington St, New York City, NY 10001" +219073,Lightning Charging Cable,2,14.95,06/30/19 14:50,"181 Lake St, Atlanta, GA 30301" +219074,Apple Airpods Headphones,1,150,06/17/19 22:13,"370 Pine St, Boston, MA 02215" +219075,Lightning Charging Cable,1,14.95,06/18/19 09:22,"14 Hickory St, San Francisco, CA 94016" +219076,Vareebadd Phone,1,400,06/16/19 14:31,"329 6th St, Seattle, WA 98101" +219077,USB-C Charging Cable,1,11.95,06/22/19 16:38,"905 2nd St, New York City, NY 10001" +219078,USB-C Charging Cable,1,11.95,06/28/19 23:43,"469 Hill St, Boston, MA 02215" +219079,AA Batteries (4-pack),1,3.84,06/22/19 09:48,"586 Chestnut St, Seattle, WA 98101" +219080,AAA Batteries (4-pack),1,2.99,06/02/19 06:27,"663 Elm St, San Francisco, CA 94016" +219081,Macbook Pro Laptop,1,1700,06/23/19 06:14,"429 Madison St, Portland, OR 97035" +219081,ThinkPad Laptop,1,999.99,06/23/19 06:14,"429 Madison St, Portland, OR 97035" +219082,Lightning Charging Cable,1,14.95,06/08/19 10:10,"809 Hill St, New York City, NY 10001" +219083,Lightning Charging Cable,2,14.95,06/12/19 16:18,"82 11th St, Austin, TX 73301" +219084,Flatscreen TV,1,300,06/21/19 17:16,"689 West St, Dallas, TX 75001" +219085,AAA Batteries (4-pack),1,2.99,06/03/19 22:28,"756 Wilson St, Seattle, WA 98101" +219086,34in Ultrawide Monitor,1,379.99,06/26/19 18:21,"251 Sunset St, San Francisco, CA 94016" +219087,Apple Airpods Headphones,1,150,06/24/19 14:03,"460 Pine St, Dallas, TX 75001" +219088,AAA Batteries (4-pack),2,2.99,06/29/19 11:24,"968 Lake St, San Francisco, CA 94016" +219089,USB-C Charging Cable,1,11.95,06/29/19 17:34,"668 Pine St, New York City, NY 10001" +219090,Wired Headphones,1,11.99,06/20/19 09:37,"304 Cedar St, San Francisco, CA 94016" +219091,Wired Headphones,1,11.99,06/12/19 18:48,"11 5th St, New York City, NY 10001" +219092,USB-C Charging Cable,1,11.95,06/06/19 02:00,"18 4th St, Los Angeles, CA 90001" +219093,AA Batteries (4-pack),1,3.84,06/29/19 22:38,"220 Chestnut St, San Francisco, CA 94016" +219094,Bose SoundSport Headphones,1,99.99,06/29/19 00:57,"242 Washington St, Seattle, WA 98101" +219095,Apple Airpods Headphones,1,150,06/30/19 18:22,"519 4th St, Seattle, WA 98101" +219096,27in FHD Monitor,1,149.99,06/14/19 13:02,"605 West St, San Francisco, CA 94016" +219097,Vareebadd Phone,1,400,06/27/19 09:05,"923 Adams St, New York City, NY 10001" +219098,AAA Batteries (4-pack),1,2.99,06/14/19 17:34,"69 Elm St, New York City, NY 10001" +219099,iPhone,1,700,06/09/19 15:44,"979 Lake St, Dallas, TX 75001" +219100,Vareebadd Phone,1,400,06/02/19 22:31,"666 Cedar St, Portland, ME 04101" +219101,27in FHD Monitor,1,149.99,06/11/19 19:20,"725 Ridge St, Los Angeles, CA 90001" +219102,Bose SoundSport Headphones,1,99.99,06/10/19 08:47,"887 1st St, New York City, NY 10001" +219103,Lightning Charging Cable,1,14.95,06/06/19 08:37,"216 Pine St, Los Angeles, CA 90001" +219104,Wired Headphones,1,11.99,06/23/19 17:32,"573 Willow St, San Francisco, CA 94016" +219105,AA Batteries (4-pack),1,3.84,06/29/19 11:05,"981 Church St, San Francisco, CA 94016" +219106,Google Phone,1,600,06/20/19 02:23,"391 Hill St, New York City, NY 10001" +219106,Wired Headphones,1,11.99,06/20/19 02:23,"391 Hill St, New York City, NY 10001" +219107,AA Batteries (4-pack),1,3.84,06/09/19 15:04,"558 Center St, Los Angeles, CA 90001" +219108,Lightning Charging Cable,1,14.95,06/17/19 09:57,"545 6th St, Dallas, TX 75001" +219109,20in Monitor,1,109.99,06/02/19 02:29,"455 6th St, Austin, TX 73301" +219110,AAA Batteries (4-pack),2,2.99,06/28/19 17:14,"54 Church St, Los Angeles, CA 90001" +219111,AA Batteries (4-pack),1,3.84,06/19/19 09:20,"301 Madison St, Los Angeles, CA 90001" +219112,Apple Airpods Headphones,1,150,06/21/19 19:14,"248 Church St, Dallas, TX 75001" +219113,AAA Batteries (4-pack),1,2.99,06/24/19 23:23,"749 10th St, New York City, NY 10001" +219114,Wired Headphones,1,11.99,06/18/19 07:51,"560 Lakeview St, Boston, MA 02215" +219115,Lightning Charging Cable,1,14.95,06/13/19 22:20,"924 Walnut St, San Francisco, CA 94016" +219116,Lightning Charging Cable,1,14.95,06/22/19 15:11,"860 Washington St, Austin, TX 73301" +219117,Wired Headphones,1,11.99,06/01/19 17:08,"798 Lincoln St, New York City, NY 10001" +219118,USB-C Charging Cable,1,11.95,06/20/19 22:33,"140 1st St, Portland, OR 97035" +219119,Flatscreen TV,1,300,06/02/19 15:54,"195 Madison St, Dallas, TX 75001" +219120,20in Monitor,1,109.99,06/22/19 16:47,"610 Sunset St, Seattle, WA 98101" +219121,Lightning Charging Cable,1,14.95,06/27/19 14:53,"532 Meadow St, New York City, NY 10001" +219122,Apple Airpods Headphones,1,150,06/25/19 11:27,"773 West St, New York City, NY 10001" +219123,Lightning Charging Cable,2,14.95,06/18/19 21:23,"774 Dogwood St, Seattle, WA 98101" +219124,AAA Batteries (4-pack),2,2.99,06/08/19 13:37,"407 Pine St, Los Angeles, CA 90001" +219125,Bose SoundSport Headphones,1,99.99,06/05/19 19:50,"269 Forest St, San Francisco, CA 94016" +219126,Wired Headphones,1,11.99,06/05/19 14:15,"9 Chestnut St, Seattle, WA 98101" +219127,27in 4K Gaming Monitor,1,389.99,06/20/19 11:05,"55 6th St, Austin, TX 73301" +219128,AA Batteries (4-pack),1,3.84,06/16/19 18:25,"92 2nd St, Atlanta, GA 30301" +219128,27in FHD Monitor,1,149.99,06/16/19 18:25,"92 2nd St, Atlanta, GA 30301" +219129,AA Batteries (4-pack),2,3.84,06/01/19 11:28,"370 Willow St, Atlanta, GA 30301" +219130,AA Batteries (4-pack),1,3.84,06/05/19 12:45,"504 Chestnut St, San Francisco, CA 94016" +219131,Lightning Charging Cable,1,14.95,06/04/19 07:49,"326 Spruce St, Seattle, WA 98101" +219132,20in Monitor,1,109.99,06/29/19 18:21,"85 2nd St, Boston, MA 02215" +219133,Google Phone,1,600,06/15/19 06:46,"271 Elm St, Seattle, WA 98101" +219134,20in Monitor,1,109.99,06/24/19 09:32,"738 Walnut St, Los Angeles, CA 90001" +219135,USB-C Charging Cable,1,11.95,06/11/19 22:58,"486 Forest St, Dallas, TX 75001" +219136,Flatscreen TV,1,300,06/09/19 10:06,"29 Cedar St, Atlanta, GA 30301" +219137,Wired Headphones,1,11.99,06/17/19 23:32,"214 Wilson St, Los Angeles, CA 90001" +219138,Bose SoundSport Headphones,1,99.99,06/07/19 08:31,"601 1st St, San Francisco, CA 94016" +219139,Apple Airpods Headphones,1,150,06/10/19 12:44,"695 4th St, Seattle, WA 98101" +219140,27in FHD Monitor,1,149.99,06/12/19 18:31,"340 Willow St, San Francisco, CA 94016" +219141,Wired Headphones,1,11.99,06/27/19 13:53,"153 West St, Atlanta, GA 30301" +219142,Flatscreen TV,1,300,06/22/19 21:09,"650 6th St, New York City, NY 10001" +219143,Google Phone,1,600,06/09/19 08:09,"932 12th St, New York City, NY 10001" +219144,AAA Batteries (4-pack),2,2.99,06/01/19 18:33,"80 5th St, San Francisco, CA 94016" +219145,Google Phone,1,600,06/22/19 19:12,"329 Sunset St, New York City, NY 10001" +219146,Apple Airpods Headphones,1,150,06/25/19 15:17,"59 Park St, Seattle, WA 98101" +219147,AA Batteries (4-pack),1,3.84,06/03/19 09:09,"443 4th St, Portland, OR 97035" +219148,Bose SoundSport Headphones,1,99.99,06/07/19 21:25,"740 Lakeview St, Los Angeles, CA 90001" +219149,Lightning Charging Cable,1,14.95,06/23/19 17:05,"870 4th St, Los Angeles, CA 90001" +219150,Wired Headphones,1,11.99,06/23/19 09:36,"683 Church St, Boston, MA 02215" +219151,Google Phone,1,600,06/27/19 18:18,"70 River St, San Francisco, CA 94016" +219152,34in Ultrawide Monitor,1,379.99,06/03/19 12:03,"383 Cherry St, Dallas, TX 75001" +219153,AA Batteries (4-pack),2,3.84,06/01/19 18:54,"593 Hickory St, San Francisco, CA 94016" +219154,iPhone,1,700,06/29/19 20:29,"382 Elm St, Atlanta, GA 30301" +219155,AA Batteries (4-pack),2,3.84,06/02/19 08:48,"674 Jackson St, New York City, NY 10001" +219156,Flatscreen TV,1,300,06/16/19 17:16,"332 10th St, Austin, TX 73301" +219157,Lightning Charging Cable,1,14.95,06/12/19 23:46,"465 2nd St, Boston, MA 02215" +219158,USB-C Charging Cable,1,11.95,06/12/19 19:45,"337 West St, Los Angeles, CA 90001" +219159,AAA Batteries (4-pack),1,2.99,06/20/19 12:47,"864 5th St, San Francisco, CA 94016" +219159,27in 4K Gaming Monitor,1,389.99,06/20/19 12:47,"864 5th St, San Francisco, CA 94016" +219160,AA Batteries (4-pack),1,3.84,06/24/19 18:08,"326 Washington St, Austin, TX 73301" +219161,Lightning Charging Cable,1,14.95,06/13/19 12:32,"416 14th St, San Francisco, CA 94016" +219162,USB-C Charging Cable,1,11.95,06/26/19 00:31,"778 Pine St, San Francisco, CA 94016" +219163,Lightning Charging Cable,2,14.95,06/25/19 22:56,"457 Sunset St, Boston, MA 02215" +219164,AA Batteries (4-pack),1,3.84,06/05/19 10:34,"404 1st St, Dallas, TX 75001" +219165,Lightning Charging Cable,1,14.95,06/18/19 07:44,"262 Lake St, Austin, TX 73301" +219166,AA Batteries (4-pack),2,3.84,06/13/19 21:52,"381 Dogwood St, San Francisco, CA 94016" +219167,20in Monitor,1,109.99,06/27/19 07:00,"225 2nd St, San Francisco, CA 94016" +219168,Lightning Charging Cable,1,14.95,06/02/19 10:56,"418 4th St, San Francisco, CA 94016" +219169,iPhone,1,700,06/13/19 13:10,"87 13th St, Los Angeles, CA 90001" +219170,ThinkPad Laptop,1,999.99,06/10/19 17:17,"53 Lake St, Austin, TX 73301" +219171,34in Ultrawide Monitor,1,379.99,06/28/19 22:24,"530 Park St, San Francisco, CA 94016" +219172,AAA Batteries (4-pack),1,2.99,06/11/19 05:09,"653 5th St, Boston, MA 02215" +219173,Apple Airpods Headphones,1,150,06/15/19 00:38,"514 7th St, Portland, OR 97035" +219174,AAA Batteries (4-pack),2,2.99,06/21/19 16:49,"764 Hill St, Boston, MA 02215" +219175,Apple Airpods Headphones,1,150,06/09/19 11:07,"649 9th St, San Francisco, CA 94016" +219176,Wired Headphones,1,11.99,06/28/19 18:05,"116 Elm St, Portland, OR 97035" +219177,Lightning Charging Cable,1,14.95,06/13/19 13:44,"89 Madison St, New York City, NY 10001" +219178,AA Batteries (4-pack),1,3.84,06/25/19 22:28,"424 14th St, Los Angeles, CA 90001" +219179,20in Monitor,1,109.99,06/13/19 16:18,"766 Cedar St, San Francisco, CA 94016" +219180,ThinkPad Laptop,1,999.99,06/23/19 07:40,"68 Elm St, Boston, MA 02215" +219181,Lightning Charging Cable,1,14.95,06/09/19 11:55,"310 10th St, Boston, MA 02215" +219182,27in FHD Monitor,1,149.99,06/09/19 11:49,"915 Maple St, New York City, NY 10001" +219183,Apple Airpods Headphones,1,150,06/06/19 19:14,"23 South St, Portland, OR 97035" +219184,Lightning Charging Cable,2,14.95,06/11/19 21:55,"386 11th St, Dallas, TX 75001" +219185,20in Monitor,1,109.99,06/26/19 13:16,"635 2nd St, Boston, MA 02215" +219186,Lightning Charging Cable,1,14.95,06/05/19 20:29,"365 Elm St, Dallas, TX 75001" +219187,AA Batteries (4-pack),1,3.84,06/11/19 02:05,"129 5th St, Dallas, TX 75001" +219188,20in Monitor,1,109.99,06/10/19 10:01,"604 Maple St, Boston, MA 02215" +219189,USB-C Charging Cable,1,11.95,06/10/19 13:52,"323 West St, New York City, NY 10001" +219190,AAA Batteries (4-pack),1,2.99,06/19/19 19:37,"44 Spruce St, New York City, NY 10001" +219191,Apple Airpods Headphones,1,150,06/09/19 16:05,"804 Spruce St, Boston, MA 02215" +219192,USB-C Charging Cable,2,11.95,06/08/19 15:01,"34 Wilson St, San Francisco, CA 94016" +219193,iPhone,1,700,06/01/19 14:27,"32 Spruce St, Portland, OR 97035" +219194,Macbook Pro Laptop,1,1700,06/22/19 00:37,"800 Forest St, Portland, OR 97035" +219195,Lightning Charging Cable,1,14.95,06/17/19 06:10,"553 Lakeview St, San Francisco, CA 94016" +219196,ThinkPad Laptop,1,999.99,06/20/19 13:20,"533 7th St, Dallas, TX 75001" +219197,Vareebadd Phone,1,400,06/30/19 18:27,"851 Adams St, New York City, NY 10001" +219198,Wired Headphones,1,11.99,06/11/19 11:02,"783 8th St, New York City, NY 10001" +219199,Bose SoundSport Headphones,1,99.99,06/07/19 10:41,"789 12th St, New York City, NY 10001" +219200,Macbook Pro Laptop,1,1700,06/21/19 12:41,"516 7th St, Boston, MA 02215" +219201,AA Batteries (4-pack),1,3.84,06/02/19 23:19,"637 Meadow St, Seattle, WA 98101" +219202,27in 4K Gaming Monitor,1,389.99,06/14/19 16:39,"530 West St, San Francisco, CA 94016" +219203,Lightning Charging Cable,1,14.95,06/26/19 14:27,"218 Spruce St, Los Angeles, CA 90001" +219204,Apple Airpods Headphones,1,150,06/17/19 19:00,"730 North St, Boston, MA 02215" +219205,Google Phone,1,600,06/02/19 16:10,"814 8th St, San Francisco, CA 94016" +219206,34in Ultrawide Monitor,1,379.99,06/16/19 19:21,"123 Lincoln St, Boston, MA 02215" +219207,USB-C Charging Cable,1,11.95,06/27/19 12:21,"377 8th St, San Francisco, CA 94016" +219208,USB-C Charging Cable,1,11.95,06/29/19 14:48,"279 Jackson St, Los Angeles, CA 90001" +219209,34in Ultrawide Monitor,1,379.99,06/05/19 20:44,"170 Maple St, San Francisco, CA 94016" +219210,ThinkPad Laptop,1,999.99,06/10/19 13:33,"930 Lakeview St, San Francisco, CA 94016" +219211,AAA Batteries (4-pack),2,2.99,06/14/19 22:17,"131 Jefferson St, Atlanta, GA 30301" +219212,ThinkPad Laptop,1,999.99,06/23/19 16:17,"477 Pine St, San Francisco, CA 94016" +219213,Wired Headphones,1,11.99,06/01/19 12:08,"908 2nd St, Portland, OR 97035" +219214,Apple Airpods Headphones,1,150,06/16/19 14:10,"438 10th St, Boston, MA 02215" +219214,ThinkPad Laptop,1,999.99,06/16/19 14:10,"438 10th St, Boston, MA 02215" +219215,Vareebadd Phone,1,400,06/06/19 18:53,"542 South St, Boston, MA 02215" +219215,USB-C Charging Cable,1,11.95,06/06/19 18:53,"542 South St, Boston, MA 02215" +219216,AA Batteries (4-pack),2,3.84,06/27/19 19:19,"538 Center St, San Francisco, CA 94016" +219217,Flatscreen TV,1,300,06/02/19 20:37,"181 14th St, Boston, MA 02215" +219218,AA Batteries (4-pack),1,3.84,06/09/19 09:01,"257 Adams St, Seattle, WA 98101" +219219,AAA Batteries (4-pack),1,2.99,06/21/19 09:29,"148 Jefferson St, Los Angeles, CA 90001" +219220,iPhone,1,700,06/16/19 11:22,"959 Ridge St, Atlanta, GA 30301" +219220,Lightning Charging Cable,2,14.95,06/16/19 11:22,"959 Ridge St, Atlanta, GA 30301" +219221,AAA Batteries (4-pack),2,2.99,06/03/19 13:06,"164 12th St, Portland, OR 97035" +219222,Apple Airpods Headphones,1,150,06/19/19 06:44,"181 Hickory St, Atlanta, GA 30301" +219223,USB-C Charging Cable,1,11.95,06/02/19 17:06,"919 Wilson St, Austin, TX 73301" +219224,27in FHD Monitor,1,149.99,06/09/19 23:26,"797 Wilson St, New York City, NY 10001" +219225,27in 4K Gaming Monitor,1,389.99,06/18/19 13:02,"750 2nd St, Los Angeles, CA 90001" +219226,Macbook Pro Laptop,1,1700,06/06/19 21:44,"684 8th St, San Francisco, CA 94016" +219227,USB-C Charging Cable,2,11.95,06/22/19 11:06,"480 Wilson St, Los Angeles, CA 90001" +219228,AAA Batteries (4-pack),3,2.99,06/23/19 11:41,"619 Maple St, Atlanta, GA 30301" +219229,Bose SoundSport Headphones,1,99.99,06/10/19 16:01,"907 Lake St, Seattle, WA 98101" +219230,Lightning Charging Cable,1,14.95,06/22/19 09:27,"435 Forest St, Los Angeles, CA 90001" +219231,27in 4K Gaming Monitor,1,389.99,06/23/19 17:24,"591 Church St, Los Angeles, CA 90001" +219232,AAA Batteries (4-pack),2,2.99,06/21/19 14:48,"648 Chestnut St, Dallas, TX 75001" +219233,Lightning Charging Cable,1,14.95,06/30/19 19:30,"883 Jefferson St, Los Angeles, CA 90001" +219234,Google Phone,1,600,06/07/19 01:43,"488 Chestnut St, Los Angeles, CA 90001" +219235,Wired Headphones,1,11.99,06/14/19 09:36,"206 Meadow St, New York City, NY 10001" +219236,Vareebadd Phone,1,400,06/03/19 16:23,"432 Lincoln St, Boston, MA 02215" +219236,USB-C Charging Cable,1,11.95,06/03/19 16:23,"432 Lincoln St, Boston, MA 02215" +219237,AAA Batteries (4-pack),1,2.99,06/24/19 19:10,"242 Cedar St, San Francisco, CA 94016" +219238,Apple Airpods Headphones,1,150,06/27/19 12:05,"787 7th St, Dallas, TX 75001" +219239,27in FHD Monitor,1,149.99,06/02/19 23:06,"674 Adams St, San Francisco, CA 94016" +219240,Apple Airpods Headphones,1,150,06/01/19 06:34,"579 Lincoln St, San Francisco, CA 94016" +219241,AA Batteries (4-pack),1,3.84,06/29/19 18:17,"842 11th St, Atlanta, GA 30301" +219242,34in Ultrawide Monitor,1,379.99,06/06/19 09:49,"919 12th St, Atlanta, GA 30301" +219243,20in Monitor,1,109.99,06/13/19 20:45,"313 Lakeview St, New York City, NY 10001" +219244,ThinkPad Laptop,1,999.99,06/25/19 15:49,"25 Adams St, Boston, MA 02215" +219245,iPhone,1,700,06/23/19 10:45,"198 Lake St, Portland, OR 97035" +219245,Lightning Charging Cable,1,14.95,06/23/19 10:45,"198 Lake St, Portland, OR 97035" +219246,Apple Airpods Headphones,1,150,06/14/19 08:15,"718 Park St, San Francisco, CA 94016" +219247,AAA Batteries (4-pack),1,2.99,06/12/19 14:27,"270 Highland St, Boston, MA 02215" +219248,Bose SoundSport Headphones,1,99.99,06/20/19 02:10,"734 Jefferson St, San Francisco, CA 94016" +219249,27in FHD Monitor,1,149.99,06/04/19 00:15,"425 Hill St, Los Angeles, CA 90001" +219250,Bose SoundSport Headphones,1,99.99,06/06/19 20:45,"160 North St, Portland, OR 97035" +219251,AA Batteries (4-pack),1,3.84,06/22/19 11:30,"308 7th St, San Francisco, CA 94016" +219252,Bose SoundSport Headphones,1,99.99,06/22/19 14:58,"872 West St, Los Angeles, CA 90001" +219253,27in FHD Monitor,1,149.99,06/10/19 18:20,"503 Main St, Boston, MA 02215" +219254,Lightning Charging Cable,1,14.95,06/13/19 19:26,"50 Jefferson St, San Francisco, CA 94016" +219255,Flatscreen TV,1,300,06/08/19 22:26,"902 12th St, Los Angeles, CA 90001" +219256,USB-C Charging Cable,1,11.95,06/17/19 18:37,"418 River St, San Francisco, CA 94016" +219257,Apple Airpods Headphones,1,150,06/04/19 14:03,"558 Church St, Seattle, WA 98101" +219258,AAA Batteries (4-pack),3,2.99,06/13/19 16:42,"229 14th St, San Francisco, CA 94016" +219259,Wired Headphones,2,11.99,06/10/19 07:40,"477 Washington St, Portland, OR 97035" +219260,Lightning Charging Cable,1,14.95,06/22/19 22:47,"895 Washington St, Boston, MA 02215" +219261,AAA Batteries (4-pack),1,2.99,06/15/19 16:30,"970 5th St, Seattle, WA 98101" +219262,AA Batteries (4-pack),1,3.84,06/24/19 08:48,"878 Chestnut St, New York City, NY 10001" +219263,34in Ultrawide Monitor,1,379.99,06/13/19 09:11,"912 Madison St, New York City, NY 10001" +219264,AA Batteries (4-pack),1,3.84,06/19/19 18:32,"810 Jackson St, San Francisco, CA 94016" +219265,Wired Headphones,1,11.99,06/25/19 20:17,"181 Wilson St, New York City, NY 10001" +219266,34in Ultrawide Monitor,1,379.99,06/22/19 21:08,"263 Lakeview St, Atlanta, GA 30301" +219267,iPhone,1,700,06/19/19 17:00,"345 8th St, New York City, NY 10001" +219267,Apple Airpods Headphones,1,150,06/19/19 17:00,"345 8th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +219268,34in Ultrawide Monitor,1,379.99,06/22/19 22:14,"981 North St, Boston, MA 02215" +219269,Apple Airpods Headphones,1,150,06/18/19 11:48,"694 Jackson St, Boston, MA 02215" +219270,iPhone,1,700,06/29/19 09:29,"140 Center St, Portland, OR 97035" +219271,Wired Headphones,1,11.99,06/16/19 08:45,"414 13th St, Boston, MA 02215" +219272,USB-C Charging Cable,1,11.95,06/01/19 13:13,"367 Lincoln St, Portland, OR 97035" +219273,Lightning Charging Cable,1,14.95,06/22/19 08:38,"385 Spruce St, Los Angeles, CA 90001" +219274,USB-C Charging Cable,1,11.95,06/16/19 18:17,"981 Willow St, Atlanta, GA 30301" +219275,AA Batteries (4-pack),1,3.84,06/29/19 14:52,"938 Wilson St, Austin, TX 73301" +219276,Wired Headphones,1,11.99,06/16/19 18:59,"50 South St, Atlanta, GA 30301" +219277,USB-C Charging Cable,1,11.95,06/10/19 23:36,"560 Elm St, New York City, NY 10001" +219278,Wired Headphones,1,11.99,06/21/19 18:43,"50 Willow St, Seattle, WA 98101" +219279,20in Monitor,1,109.99,06/06/19 07:55,"197 Lincoln St, San Francisco, CA 94016" +219280,Lightning Charging Cable,1,14.95,06/07/19 13:59,"156 Jefferson St, San Francisco, CA 94016" +219280,AAA Batteries (4-pack),1,2.99,06/07/19 13:59,"156 Jefferson St, San Francisco, CA 94016" +219281,AA Batteries (4-pack),1,3.84,06/12/19 14:37,"566 West St, Seattle, WA 98101" +219282,Lightning Charging Cable,1,14.95,06/17/19 12:56,"178 Meadow St, Los Angeles, CA 90001" +219283,iPhone,1,700,06/03/19 17:49,"160 Cedar St, Boston, MA 02215" +219284,Bose SoundSport Headphones,1,99.99,06/19/19 08:37,"714 Hill St, New York City, NY 10001" +219285,AA Batteries (4-pack),1,3.84,06/14/19 17:23,"796 12th St, Portland, OR 97035" +219286,LG Washing Machine,1,600.0,06/09/19 20:23,"815 6th St, San Francisco, CA 94016" +219287,AAA Batteries (4-pack),1,2.99,06/16/19 12:55,"494 South St, San Francisco, CA 94016" +219288,Wired Headphones,1,11.99,06/04/19 14:22,"860 Forest St, Boston, MA 02215" +219289,Wired Headphones,1,11.99,06/11/19 19:20,"100 South St, New York City, NY 10001" +219290,Lightning Charging Cable,1,14.95,06/02/19 02:37,"860 Walnut St, Seattle, WA 98101" +219291,Apple Airpods Headphones,1,150,06/09/19 17:10,"704 Sunset St, Dallas, TX 75001" +219292,Lightning Charging Cable,1,14.95,06/01/19 21:16,"634 Hill St, Seattle, WA 98101" +219293,Apple Airpods Headphones,1,150,06/02/19 13:17,"100 Lakeview St, San Francisco, CA 94016" +219294,iPhone,1,700,06/21/19 22:18,"530 8th St, Boston, MA 02215" +219294,Wired Headphones,1,11.99,06/21/19 22:18,"530 8th St, Boston, MA 02215" +219295,AAA Batteries (4-pack),1,2.99,06/28/19 12:25,"616 Lakeview St, New York City, NY 10001" +219296,Lightning Charging Cable,1,14.95,06/30/19 22:34,"447 Elm St, Los Angeles, CA 90001" +219297,27in FHD Monitor,1,149.99,06/09/19 17:50,"502 Park St, Los Angeles, CA 90001" +219298,Apple Airpods Headphones,1,150,06/25/19 20:32,"408 Willow St, San Francisco, CA 94016" +219299,Wired Headphones,1,11.99,06/01/19 12:58,"857 9th St, Los Angeles, CA 90001" +219300,Macbook Pro Laptop,1,1700,06/16/19 20:14,"178 Sunset St, Seattle, WA 98101" +219301,Lightning Charging Cable,1,14.95,06/27/19 19:05,"956 Cedar St, New York City, NY 10001" +219302,USB-C Charging Cable,1,11.95,06/14/19 10:19,"259 1st St, Boston, MA 02215" +219303,Wired Headphones,1,11.99,06/02/19 21:03,"113 Elm St, Los Angeles, CA 90001" +219304,34in Ultrawide Monitor,1,379.99,06/09/19 17:19,"748 Ridge St, Boston, MA 02215" +219305,AAA Batteries (4-pack),2,2.99,06/26/19 22:24,"180 Lakeview St, Boston, MA 02215" +219306,iPhone,1,700,06/22/19 18:23,"284 Maple St, Boston, MA 02215" +219307,USB-C Charging Cable,1,11.95,06/12/19 17:19,"993 Highland St, San Francisco, CA 94016" +219308,AAA Batteries (4-pack),2,2.99,06/11/19 19:56,"20 Johnson St, Portland, ME 04101" +219309,Bose SoundSport Headphones,1,99.99,06/20/19 13:16,"875 Forest St, San Francisco, CA 94016" +219310,20in Monitor,1,109.99,06/14/19 13:45,"938 Madison St, San Francisco, CA 94016" +219311,ThinkPad Laptop,1,999.99,06/30/19 11:15,"257 2nd St, San Francisco, CA 94016" +219312,27in FHD Monitor,1,149.99,06/20/19 18:30,"523 7th St, Portland, OR 97035" +219313,USB-C Charging Cable,1,11.95,06/18/19 12:27,"1 River St, Boston, MA 02215" +219314,27in FHD Monitor,1,149.99,06/09/19 11:01,"960 Adams St, Boston, MA 02215" +219314,Lightning Charging Cable,1,14.95,06/09/19 11:01,"960 Adams St, Boston, MA 02215" +219315,Wired Headphones,1,11.99,06/26/19 13:01,"74 1st St, New York City, NY 10001" +219316,27in FHD Monitor,1,149.99,06/02/19 09:42,"113 Madison St, Portland, OR 97035" +219317,USB-C Charging Cable,1,11.95,06/30/19 13:44,"437 13th St, Austin, TX 73301" +219318,Wired Headphones,1,11.99,06/04/19 08:16,"627 8th St, Boston, MA 02215" +219319,Bose SoundSport Headphones,1,99.99,06/16/19 14:42,"611 Cherry St, Portland, OR 97035" +219320,Wired Headphones,1,11.99,06/19/19 09:18,"294 10th St, San Francisco, CA 94016" +219321,AAA Batteries (4-pack),1,2.99,06/26/19 23:39,"643 Pine St, Los Angeles, CA 90001" +219322,Lightning Charging Cable,1,14.95,06/20/19 19:29,"219 Johnson St, San Francisco, CA 94016" +219323,Bose SoundSport Headphones,1,99.99,06/05/19 02:11,"713 12th St, Atlanta, GA 30301" +219324,Wired Headphones,1,11.99,06/09/19 21:50,"335 9th St, New York City, NY 10001" +219325,AAA Batteries (4-pack),1,2.99,06/22/19 20:10,"536 13th St, San Francisco, CA 94016" +219326,AAA Batteries (4-pack),2,2.99,06/10/19 23:48,"859 12th St, Seattle, WA 98101" +219327,USB-C Charging Cable,1,11.95,06/30/19 14:33,"272 Cedar St, Boston, MA 02215" +219328,Apple Airpods Headphones,1,150,06/27/19 18:29,"838 11th St, Boston, MA 02215" +219329,USB-C Charging Cable,1,11.95,06/06/19 16:02,"986 Walnut St, San Francisco, CA 94016" +219330,USB-C Charging Cable,1,11.95,06/02/19 08:59,"367 Washington St, Seattle, WA 98101" +219331,Macbook Pro Laptop,1,1700,06/17/19 18:02,"656 Church St, Boston, MA 02215" +219332,AAA Batteries (4-pack),1,2.99,06/23/19 12:46,"786 Washington St, San Francisco, CA 94016" +219333,Bose SoundSport Headphones,1,99.99,06/28/19 22:10,"998 Washington St, Seattle, WA 98101" +219334,AA Batteries (4-pack),1,3.84,06/12/19 11:07,"487 9th St, Los Angeles, CA 90001" +219335,27in FHD Monitor,1,149.99,06/25/19 11:24,"874 Lincoln St, San Francisco, CA 94016" +219336,USB-C Charging Cable,1,11.95,06/16/19 22:54,"419 Dogwood St, New York City, NY 10001" +219337,AAA Batteries (4-pack),2,2.99,06/06/19 19:35,"534 Center St, Austin, TX 73301" +219338,AAA Batteries (4-pack),1,2.99,06/13/19 16:51,"174 Cherry St, Los Angeles, CA 90001" +219338,AAA Batteries (4-pack),1,2.99,06/13/19 16:51,"174 Cherry St, Los Angeles, CA 90001" +219339,USB-C Charging Cable,1,11.95,06/22/19 18:19,"631 Wilson St, Los Angeles, CA 90001" +219340,Wired Headphones,1,11.99,06/20/19 18:53,"72 Church St, Seattle, WA 98101" +219341,Lightning Charging Cable,1,14.95,06/27/19 20:52,"463 Jackson St, Dallas, TX 75001" +219342,Flatscreen TV,1,300,06/23/19 12:50,"703 4th St, Seattle, WA 98101" +219343,Lightning Charging Cable,1,14.95,06/27/19 16:11,"789 Cherry St, Dallas, TX 75001" +219344,Wired Headphones,1,11.99,06/30/19 14:04,"958 Sunset St, Atlanta, GA 30301" +219345,Wired Headphones,1,11.99,06/06/19 22:55,"261 Washington St, Austin, TX 73301" +219346,27in FHD Monitor,1,149.99,06/13/19 22:31,"603 Chestnut St, New York City, NY 10001" +219347,AAA Batteries (4-pack),2,2.99,06/28/19 15:36,"860 Spruce St, Atlanta, GA 30301" +219348,USB-C Charging Cable,1,11.95,06/17/19 18:28,"342 Forest St, Atlanta, GA 30301" +219349,Lightning Charging Cable,1,14.95,06/20/19 12:13,"440 Sunset St, Austin, TX 73301" +219350,27in 4K Gaming Monitor,1,389.99,06/14/19 15:43,"888 Cherry St, Boston, MA 02215" +219351,Lightning Charging Cable,1,14.95,06/22/19 17:47,"428 Forest St, San Francisco, CA 94016" +219352,AAA Batteries (4-pack),1,2.99,06/10/19 21:39,"174 14th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +219353,AAA Batteries (4-pack),1,2.99,06/16/19 19:53,"130 Forest St, San Francisco, CA 94016" +219354,Flatscreen TV,1,300,06/30/19 19:19,"26 Washington St, Seattle, WA 98101" +219355,Apple Airpods Headphones,1,150,06/10/19 10:14,"500 Lakeview St, Dallas, TX 75001" +219356,Bose SoundSport Headphones,1,99.99,06/23/19 13:09,"624 Madison St, Portland, OR 97035" +219357,LG Washing Machine,1,600.0,06/22/19 10:42,"35 13th St, San Francisco, CA 94016" +219358,Lightning Charging Cable,1,14.95,06/12/19 20:42,"69 Elm St, New York City, NY 10001" +219359,AAA Batteries (4-pack),1,2.99,06/09/19 21:20,"611 2nd St, San Francisco, CA 94016" +219360,ThinkPad Laptop,1,999.99,06/03/19 19:43,"116 Maple St, Portland, OR 97035" +219361,AA Batteries (4-pack),1,3.84,06/01/19 22:44,"626 5th St, San Francisco, CA 94016" +219362,27in FHD Monitor,1,149.99,06/19/19 10:16,"591 Johnson St, New York City, NY 10001" +219363,Lightning Charging Cable,1,14.95,06/13/19 10:12,"962 Madison St, Austin, TX 73301" +219364,Flatscreen TV,1,300,06/08/19 13:39,"861 Cedar St, New York City, NY 10001" +219365,AAA Batteries (4-pack),2,2.99,06/17/19 19:36,"139 Maple St, Boston, MA 02215" +219366,AA Batteries (4-pack),1,3.84,06/25/19 19:45,"44 10th St, Los Angeles, CA 90001" +219367,Bose SoundSport Headphones,1,99.99,06/06/19 09:39,"714 West St, Seattle, WA 98101" +219368,Lightning Charging Cable,1,14.95,06/19/19 00:13,"154 Main St, Dallas, TX 75001" +219369,USB-C Charging Cable,1,11.95,06/21/19 09:38,"722 Main St, Atlanta, GA 30301" +219370,Macbook Pro Laptop,1,1700,06/21/19 22:44,"583 Willow St, Portland, ME 04101" +219371,27in 4K Gaming Monitor,1,389.99,06/02/19 15:47,"322 Spruce St, New York City, NY 10001" +219372,iPhone,1,700,06/04/19 11:58,"179 West St, San Francisco, CA 94016" +219373,AA Batteries (4-pack),1,3.84,06/21/19 14:08,"337 West St, New York City, NY 10001" +219374,27in 4K Gaming Monitor,1,389.99,06/13/19 15:09,"736 North St, Boston, MA 02215" +219375,Google Phone,1,600,06/11/19 12:59,"243 Walnut St, New York City, NY 10001" +219376,AAA Batteries (4-pack),1,2.99,06/10/19 15:18,"854 Pine St, New York City, NY 10001" +219377,USB-C Charging Cable,1,11.95,06/01/19 13:46,"356 Johnson St, Austin, TX 73301" +219378,AA Batteries (4-pack),1,3.84,06/04/19 06:10,"799 8th St, Dallas, TX 75001" +219379,AA Batteries (4-pack),1,3.84,06/09/19 21:02,"7 4th St, Atlanta, GA 30301" +219380,ThinkPad Laptop,1,999.99,06/08/19 15:22,"189 Elm St, Boston, MA 02215" +219381,USB-C Charging Cable,1,11.95,06/02/19 12:44,"400 Forest St, Dallas, TX 75001" +219382,Lightning Charging Cable,1,14.95,06/19/19 15:00,"204 Elm St, Los Angeles, CA 90001" +219383,34in Ultrawide Monitor,1,379.99,06/17/19 14:17,"476 Sunset St, Dallas, TX 75001" +219384,Lightning Charging Cable,1,14.95,06/15/19 13:26,"151 Madison St, San Francisco, CA 94016" +219385,Flatscreen TV,1,300,06/27/19 14:55,"691 9th St, Atlanta, GA 30301" +219386,USB-C Charging Cable,1,11.95,06/10/19 16:52,"211 Lake St, San Francisco, CA 94016" +219387,34in Ultrawide Monitor,1,379.99,06/27/19 23:50,"617 Pine St, Atlanta, GA 30301" +219388,27in 4K Gaming Monitor,1,389.99,06/20/19 09:48,"295 13th St, New York City, NY 10001" +219389,Flatscreen TV,1,300,06/01/19 11:40,"73 5th St, Los Angeles, CA 90001" +219390,AAA Batteries (4-pack),2,2.99,06/29/19 04:46,"300 Walnut St, New York City, NY 10001" +219391,Apple Airpods Headphones,1,150,06/14/19 12:55,"484 Chestnut St, San Francisco, CA 94016" +219392,Apple Airpods Headphones,1,150,06/12/19 04:00,"429 River St, Portland, OR 97035" +219393,Wired Headphones,1,11.99,06/24/19 10:59,"481 Spruce St, New York City, NY 10001" +219394,iPhone,1,700,06/16/19 12:03,"336 8th St, San Francisco, CA 94016" +219394,Wired Headphones,1,11.99,06/16/19 12:03,"336 8th St, San Francisco, CA 94016" +219395,AAA Batteries (4-pack),1,2.99,06/06/19 13:23,"558 Willow St, San Francisco, CA 94016" +219396,Apple Airpods Headphones,1,150,06/09/19 17:36,"823 Johnson St, Dallas, TX 75001" +219397,Macbook Pro Laptop,1,1700,06/15/19 09:53,"471 11th St, Dallas, TX 75001" +219398,20in Monitor,1,109.99,06/04/19 00:23,"215 11th St, Seattle, WA 98101" +219399,Lightning Charging Cable,2,14.95,06/15/19 02:01,"454 7th St, Boston, MA 02215" +219400,iPhone,1,700,06/18/19 19:56,"452 Hickory St, Boston, MA 02215" +219401,Google Phone,1,600,06/07/19 06:02,"296 North St, Austin, TX 73301" +219401,Bose SoundSport Headphones,1,99.99,06/07/19 06:02,"296 North St, Austin, TX 73301" +219402,Vareebadd Phone,1,400,06/05/19 18:40,"730 Center St, Boston, MA 02215" +219403,Wired Headphones,1,11.99,06/13/19 00:04,"82 7th St, Los Angeles, CA 90001" +219404,Wired Headphones,1,11.99,06/04/19 21:09,"859 Sunset St, Austin, TX 73301" +219404,27in 4K Gaming Monitor,1,389.99,06/04/19 21:09,"859 Sunset St, Austin, TX 73301" +219405,AAA Batteries (4-pack),1,2.99,06/19/19 10:18,"554 South St, Los Angeles, CA 90001" +219406,AA Batteries (4-pack),1,3.84,06/25/19 11:45,"179 8th St, Los Angeles, CA 90001" +219407,Lightning Charging Cable,1,14.95,06/01/19 14:02,"812 Highland St, Seattle, WA 98101" +219408,USB-C Charging Cable,1,11.95,06/21/19 11:40,"375 10th St, Portland, OR 97035" +219409,AA Batteries (4-pack),1,3.84,06/14/19 14:33,"480 Main St, Los Angeles, CA 90001" +219410,Wired Headphones,1,11.99,06/05/19 00:04,"239 6th St, Los Angeles, CA 90001" +219411,Wired Headphones,1,11.99,06/12/19 11:17,"392 Wilson St, Los Angeles, CA 90001" +219412,LG Washing Machine,1,600.0,06/14/19 15:20,"102 13th St, San Francisco, CA 94016" +219413,27in 4K Gaming Monitor,1,389.99,06/30/19 14:07,"99 13th St, Boston, MA 02215" +219414,Wired Headphones,1,11.99,06/07/19 13:07,"941 7th St, Boston, MA 02215" +219415,20in Monitor,1,109.99,06/12/19 10:56,"763 Maple St, San Francisco, CA 94016" +219416,34in Ultrawide Monitor,1,379.99,06/07/19 14:15,"269 Forest St, New York City, NY 10001" +219417,Bose SoundSport Headphones,1,99.99,06/23/19 09:43,"843 Jackson St, Boston, MA 02215" +219418,Flatscreen TV,1,300,06/02/19 17:33,"995 Madison St, Boston, MA 02215" +219419,AA Batteries (4-pack),1,3.84,06/25/19 16:39,"184 13th St, Boston, MA 02215" +219420,Bose SoundSport Headphones,1,99.99,06/30/19 15:18,"57 Chestnut St, Austin, TX 73301" +219421,ThinkPad Laptop,1,999.99,06/15/19 14:06,"710 Sunset St, Dallas, TX 75001" +219422,USB-C Charging Cable,1,11.95,06/26/19 22:29,"278 Park St, Atlanta, GA 30301" +219423,Wired Headphones,1,11.99,06/28/19 21:07,"219 Park St, Atlanta, GA 30301" +219424,Lightning Charging Cable,1,14.95,06/21/19 21:35,"871 Cherry St, San Francisco, CA 94016" +219425,Bose SoundSport Headphones,1,99.99,06/29/19 03:52,"904 11th St, Boston, MA 02215" +219426,AA Batteries (4-pack),2,3.84,06/26/19 18:50,"118 Johnson St, Los Angeles, CA 90001" +219427,27in 4K Gaming Monitor,1,389.99,06/22/19 04:07,"444 6th St, New York City, NY 10001" +219428,USB-C Charging Cable,1,11.95,06/19/19 07:18,"553 2nd St, Atlanta, GA 30301" +219429,Lightning Charging Cable,1,14.95,06/01/19 23:49,"824 Washington St, Boston, MA 02215" +219430,20in Monitor,1,109.99,06/08/19 16:12,"897 Elm St, San Francisco, CA 94016" +219431,USB-C Charging Cable,1,11.95,06/02/19 16:52,"976 Lakeview St, New York City, NY 10001" +219432,Wired Headphones,1,11.99,06/26/19 16:02,"641 North St, San Francisco, CA 94016" +219433,AA Batteries (4-pack),1,3.84,06/15/19 10:28,"621 Chestnut St, Dallas, TX 75001" +219434,Apple Airpods Headphones,1,150,06/10/19 23:24,"856 Lincoln St, Atlanta, GA 30301" +219435,Bose SoundSport Headphones,1,99.99,06/22/19 18:57,"333 Wilson St, Seattle, WA 98101" +219436,AA Batteries (4-pack),1,3.84,06/20/19 11:31,"175 Walnut St, Los Angeles, CA 90001" +219437,27in FHD Monitor,1,149.99,06/24/19 14:51,"264 Hill St, Los Angeles, CA 90001" +219438,Bose SoundSport Headphones,1,99.99,06/16/19 18:45,"282 Jefferson St, Los Angeles, CA 90001" +219439,Wired Headphones,1,11.99,06/23/19 21:33,"593 Ridge St, Los Angeles, CA 90001" +219440,Lightning Charging Cable,1,14.95,06/01/19 13:43,"411 Washington St, New York City, NY 10001" +219441,USB-C Charging Cable,3,11.95,06/20/19 23:11,"535 Jackson St, Atlanta, GA 30301" +219442,Bose SoundSport Headphones,1,99.99,06/26/19 19:48,"111 2nd St, Seattle, WA 98101" +219443,AA Batteries (4-pack),1,3.84,06/12/19 18:55,"245 Main St, San Francisco, CA 94016" +219444,Apple Airpods Headphones,1,150,06/14/19 17:18,"390 Center St, Seattle, WA 98101" +219445,iPhone,1,700,06/11/19 15:26,"246 Maple St, Los Angeles, CA 90001" +219446,Bose SoundSport Headphones,1,99.99,06/15/19 14:07,"308 9th St, Atlanta, GA 30301" +219447,Apple Airpods Headphones,1,150,06/19/19 00:23,"752 Wilson St, Portland, OR 97035" +219448,AA Batteries (4-pack),1,3.84,06/05/19 15:31,"884 13th St, Atlanta, GA 30301" +219449,Lightning Charging Cable,1,14.95,06/11/19 12:02,"498 Walnut St, Atlanta, GA 30301" +219450,Google Phone,1,600,06/04/19 17:12,"839 Cherry St, Portland, OR 97035" +219451,AAA Batteries (4-pack),2,2.99,06/22/19 12:07,"735 West St, Portland, OR 97035" +219452,27in FHD Monitor,1,149.99,06/14/19 21:25,"316 Cherry St, New York City, NY 10001" +219453,Flatscreen TV,2,300,06/16/19 16:57,"819 8th St, New York City, NY 10001" +219454,Lightning Charging Cable,1,14.95,06/09/19 14:48,"243 Chestnut St, Seattle, WA 98101" +219455,27in FHD Monitor,1,149.99,06/12/19 19:59,"312 Dogwood St, Dallas, TX 75001" +219456,Wired Headphones,1,11.99,06/28/19 13:53,"652 Sunset St, Los Angeles, CA 90001" +219457,Google Phone,1,600,06/10/19 19:07,"329 Highland St, Seattle, WA 98101" +219457,Bose SoundSport Headphones,1,99.99,06/10/19 19:07,"329 Highland St, Seattle, WA 98101" +219458,34in Ultrawide Monitor,1,379.99,06/02/19 16:39,"874 Center St, New York City, NY 10001" +219459,AAA Batteries (4-pack),5,2.99,06/11/19 14:03,"797 6th St, San Francisco, CA 94016" +219460,Vareebadd Phone,1,400,06/22/19 15:11,"23 Spruce St, Los Angeles, CA 90001" +219461,Lightning Charging Cable,1,14.95,06/21/19 21:19,"783 Main St, Dallas, TX 75001" +219462,Lightning Charging Cable,1,14.95,06/14/19 23:02,"610 Dogwood St, Boston, MA 02215" +219463,USB-C Charging Cable,1,11.95,06/21/19 16:36,"211 Maple St, Seattle, WA 98101" +219464,USB-C Charging Cable,1,11.95,06/20/19 13:41,"233 2nd St, Seattle, WA 98101" +219465,Apple Airpods Headphones,1,150,06/13/19 10:13,"857 Hickory St, San Francisco, CA 94016" +219466,AA Batteries (4-pack),1,3.84,06/25/19 13:41,"89 Park St, Boston, MA 02215" +219467,Lightning Charging Cable,1,14.95,06/26/19 08:21,"750 11th St, Austin, TX 73301" +219468,27in 4K Gaming Monitor,1,389.99,06/04/19 07:22,"800 Cedar St, Dallas, TX 75001" +219469,Apple Airpods Headphones,1,150,06/08/19 09:44,"144 Highland St, Dallas, TX 75001" +219470,iPhone,1,700,06/26/19 14:21,"823 7th St, San Francisco, CA 94016" +219471,34in Ultrawide Monitor,1,379.99,06/27/19 22:00,"923 Willow St, Portland, OR 97035" +219472,Google Phone,1,600,06/21/19 10:38,"102 Hickory St, Boston, MA 02215" +219473,USB-C Charging Cable,1,11.95,06/04/19 20:33,"289 Meadow St, Los Angeles, CA 90001" +219474,Flatscreen TV,1,300,06/12/19 23:22,"326 Main St, Boston, MA 02215" +219475,iPhone,1,700,06/18/19 21:04,"653 Hill St, Los Angeles, CA 90001" +219476,Lightning Charging Cable,1,14.95,06/25/19 19:16,"693 Sunset St, San Francisco, CA 94016" +219477,Lightning Charging Cable,1,14.95,06/24/19 14:47,"642 12th St, Seattle, WA 98101" +219478,AAA Batteries (4-pack),1,2.99,06/19/19 07:07,"281 7th St, San Francisco, CA 94016" +219479,ThinkPad Laptop,1,999.99,06/23/19 06:20,"438 Willow St, San Francisco, CA 94016" +219480,USB-C Charging Cable,1,11.95,06/27/19 18:02,"22 9th St, New York City, NY 10001" +219481,Wired Headphones,1,11.99,06/30/19 22:54,"164 Jefferson St, Atlanta, GA 30301" +219482,Lightning Charging Cable,1,14.95,06/27/19 22:01,"989 North St, Seattle, WA 98101" +219483,AA Batteries (4-pack),1,3.84,06/07/19 22:21,"741 Hill St, New York City, NY 10001" +219484,Macbook Pro Laptop,1,1700,06/15/19 21:19,"312 9th St, Atlanta, GA 30301" +219485,USB-C Charging Cable,1,11.95,06/25/19 17:47,"505 South St, New York City, NY 10001" +219486,27in FHD Monitor,1,149.99,06/05/19 09:12,"330 Washington St, Dallas, TX 75001" +219487,Lightning Charging Cable,1,14.95,06/15/19 19:06,"163 Ridge St, Boston, MA 02215" +219488,Bose SoundSport Headphones,1,99.99,06/02/19 19:23,"369 Madison St, Seattle, WA 98101" +219489,20in Monitor,1,109.99,06/02/19 17:24,"556 Elm St, New York City, NY 10001" +219490,Wired Headphones,1,11.99,06/07/19 23:16,"563 Jackson St, Seattle, WA 98101" +219491,AA Batteries (4-pack),1,3.84,06/03/19 20:16,"535 6th St, San Francisco, CA 94016" +219492,Wired Headphones,1,11.99,06/03/19 10:11,"558 Highland St, San Francisco, CA 94016" +219493,Bose SoundSport Headphones,1,99.99,06/09/19 21:38,"308 Cherry St, Portland, OR 97035" +219494,Google Phone,1,600,06/11/19 20:25,"379 7th St, Seattle, WA 98101" +219495,USB-C Charging Cable,2,11.95,06/21/19 10:06,"744 Lake St, New York City, NY 10001" +219496,27in 4K Gaming Monitor,1,389.99,06/13/19 20:51,"853 Highland St, San Francisco, CA 94016" +219497,Apple Airpods Headphones,1,150,06/05/19 18:03,"967 11th St, New York City, NY 10001" +219498,Lightning Charging Cable,1,14.95,06/02/19 12:28,"876 Main St, Portland, OR 97035" +219499,AA Batteries (4-pack),2,3.84,06/01/19 20:55,"744 Maple St, Seattle, WA 98101" +219500,Bose SoundSport Headphones,1,99.99,06/24/19 20:57,"373 8th St, Portland, OR 97035" +219501,AAA Batteries (4-pack),1,2.99,06/28/19 19:18,"468 11th St, San Francisco, CA 94016" +219502,Lightning Charging Cable,1,14.95,06/22/19 10:40,"867 1st St, Austin, TX 73301" +219503,AAA Batteries (4-pack),2,2.99,06/01/19 16:46,"647 Main St, New York City, NY 10001" +219504,Wired Headphones,1,11.99,06/06/19 21:27,"65 Maple St, Los Angeles, CA 90001" +219505,27in 4K Gaming Monitor,1,389.99,06/26/19 13:16,"272 1st St, Los Angeles, CA 90001" +219506,AA Batteries (4-pack),1,3.84,06/07/19 20:21,"261 13th St, Los Angeles, CA 90001" +219507,Wired Headphones,1,11.99,06/18/19 12:30,"43 South St, New York City, NY 10001" +219508,AA Batteries (4-pack),2,3.84,06/02/19 22:26,"803 4th St, Atlanta, GA 30301" +219508,Wired Headphones,1,11.99,06/02/19 22:26,"803 4th St, Atlanta, GA 30301" +219509,Apple Airpods Headphones,1,150,06/04/19 10:01,"406 Willow St, Los Angeles, CA 90001" +219510,USB-C Charging Cable,1,11.95,06/10/19 00:20,"682 Dogwood St, San Francisco, CA 94016" +219511,iPhone,1,700,06/22/19 14:56,"807 Johnson St, San Francisco, CA 94016" +219511,Apple Airpods Headphones,1,150,06/22/19 14:56,"807 Johnson St, San Francisco, CA 94016" +219512,LG Washing Machine,1,600.0,06/04/19 18:38,"680 Cherry St, San Francisco, CA 94016" +219513,Wired Headphones,1,11.99,06/10/19 17:25,"350 South St, New York City, NY 10001" +219514,Apple Airpods Headphones,1,150,06/06/19 07:14,"249 2nd St, Atlanta, GA 30301" +219515,Lightning Charging Cable,1,14.95,06/19/19 15:32,"545 Johnson St, Los Angeles, CA 90001" +219516,Wired Headphones,1,11.99,06/15/19 13:39,"352 Ridge St, Boston, MA 02215" +219517,AAA Batteries (4-pack),1,2.99,06/26/19 15:05,"202 Main St, Dallas, TX 75001" +219518,Flatscreen TV,1,300,06/23/19 21:36,"323 Elm St, New York City, NY 10001" +219519,Apple Airpods Headphones,1,150,06/18/19 21:31,"523 Madison St, Los Angeles, CA 90001" +219520,Lightning Charging Cable,1,14.95,06/18/19 21:11,"936 Adams St, San Francisco, CA 94016" +219521,Wired Headphones,1,11.99,06/03/19 11:19,"978 6th St, Boston, MA 02215" +219522,Lightning Charging Cable,1,14.95,06/13/19 22:45,"748 2nd St, San Francisco, CA 94016" +219523,AAA Batteries (4-pack),1,2.99,06/06/19 10:14,"336 Cedar St, Austin, TX 73301" +219524,Wired Headphones,1,11.99,06/27/19 10:51,"429 Cherry St, Austin, TX 73301" +219525,Wired Headphones,1,11.99,06/23/19 20:34,"614 14th St, San Francisco, CA 94016" +219526,AA Batteries (4-pack),2,3.84,06/25/19 13:27,"136 Lincoln St, New York City, NY 10001" +219527,ThinkPad Laptop,1,999.99,06/09/19 07:56,"268 North St, New York City, NY 10001" +219528,20in Monitor,1,109.99,06/22/19 11:08,"995 West St, Los Angeles, CA 90001" +219529,Bose SoundSport Headphones,1,99.99,06/07/19 22:19,"519 Dogwood St, San Francisco, CA 94016" +219530,27in FHD Monitor,1,149.99,06/02/19 09:34,"225 Lakeview St, Los Angeles, CA 90001" +219531,AA Batteries (4-pack),2,3.84,06/13/19 20:48,"593 Elm St, Los Angeles, CA 90001" +219532,Vareebadd Phone,1,400,06/24/19 17:22,"639 Madison St, San Francisco, CA 94016" +219533,AAA Batteries (4-pack),1,2.99,06/25/19 02:36,"80 Meadow St, Los Angeles, CA 90001" +219534,AA Batteries (4-pack),1,3.84,06/11/19 22:53,"405 Church St, San Francisco, CA 94016" +219535,Apple Airpods Headphones,1,150,06/12/19 13:46,"153 Park St, Dallas, TX 75001" +219536,Apple Airpods Headphones,1,150,06/07/19 14:50,"880 Willow St, Portland, OR 97035" +219537,Bose SoundSport Headphones,1,99.99,06/20/19 13:48,"728 12th St, Atlanta, GA 30301" +219538,AAA Batteries (4-pack),2,2.99,06/09/19 18:28,"482 10th St, Atlanta, GA 30301" +219539,Wired Headphones,1,11.99,06/07/19 18:17,"233 Maple St, Seattle, WA 98101" +219540,AAA Batteries (4-pack),1,2.99,06/05/19 21:18,"43 Wilson St, New York City, NY 10001" +219541,iPhone,1,700,06/06/19 11:02,"390 North St, Los Angeles, CA 90001" +219542,34in Ultrawide Monitor,1,379.99,06/22/19 12:51,"348 Cedar St, Los Angeles, CA 90001" +219543,27in 4K Gaming Monitor,1,389.99,06/09/19 23:23,"513 1st St, Boston, MA 02215" +219544,Lightning Charging Cable,1,14.95,06/19/19 17:22,"470 7th St, Seattle, WA 98101" +219545,AAA Batteries (4-pack),1,2.99,06/17/19 15:12,"94 Lake St, Dallas, TX 75001" +219545,iPhone,1,700,06/17/19 15:12,"94 Lake St, Dallas, TX 75001" +219546,Macbook Pro Laptop,1,1700,06/10/19 13:32,"273 Washington St, Portland, OR 97035" +219547,Lightning Charging Cable,1,14.95,06/15/19 20:10,"140 Hill St, Los Angeles, CA 90001" +219548,AA Batteries (4-pack),1,3.84,06/04/19 21:16,"913 12th St, Los Angeles, CA 90001" +219549,AAA Batteries (4-pack),1,2.99,06/19/19 09:01,"134 South St, Los Angeles, CA 90001" +219550,USB-C Charging Cable,1,11.95,06/19/19 13:19,"747 4th St, Boston, MA 02215" +219551,AA Batteries (4-pack),1,3.84,06/02/19 14:52,"585 4th St, Portland, ME 04101" +219552,Lightning Charging Cable,1,14.95,06/18/19 13:08,"585 Madison St, New York City, NY 10001" +219553,Flatscreen TV,1,300,06/22/19 18:35,"911 Lakeview St, Atlanta, GA 30301" +219554,Wired Headphones,2,11.99,06/11/19 17:00,"31 Walnut St, Los Angeles, CA 90001" +219555,Wired Headphones,1,11.99,06/05/19 13:48,"513 Cherry St, Dallas, TX 75001" +219556,Apple Airpods Headphones,1,150,06/13/19 18:51,"193 Jefferson St, San Francisco, CA 94016" +219557,Apple Airpods Headphones,1,150,06/02/19 19:52,"242 Ridge St, Seattle, WA 98101" +219558,27in 4K Gaming Monitor,1,389.99,06/06/19 15:51,"102 Johnson St, Boston, MA 02215" +219559,ThinkPad Laptop,1,999.99,06/16/19 08:53,"182 Cherry St, Dallas, TX 75001" +219560,AA Batteries (4-pack),3,3.84,06/24/19 19:12,"535 7th St, Los Angeles, CA 90001" +219561,ThinkPad Laptop,1,999.99,06/27/19 15:28,"668 5th St, Portland, ME 04101" +219562,USB-C Charging Cable,1,11.95,06/23/19 20:52,"253 Walnut St, Boston, MA 02215" +219563,USB-C Charging Cable,1,11.95,06/07/19 17:34,"627 6th St, San Francisco, CA 94016" +219564,Apple Airpods Headphones,1,150,06/07/19 16:26,"623 Church St, New York City, NY 10001" +219565,Wired Headphones,1,11.99,06/04/19 23:31,"520 12th St, San Francisco, CA 94016" +219566,20in Monitor,1,109.99,06/20/19 19:54,"930 Church St, San Francisco, CA 94016" +219567,AA Batteries (4-pack),1,3.84,06/20/19 07:52,"194 Madison St, San Francisco, CA 94016" +219568,Lightning Charging Cable,2,14.95,06/01/19 13:23,"694 South St, Portland, OR 97035" +219569,Apple Airpods Headphones,1,150,06/02/19 12:45,"265 South St, San Francisco, CA 94016" +219570,Apple Airpods Headphones,1,150,06/06/19 07:37,"991 Jefferson St, San Francisco, CA 94016" +219571,20in Monitor,1,109.99,06/19/19 21:55,"345 Jackson St, New York City, NY 10001" +219572,ThinkPad Laptop,1,999.99,06/22/19 10:58,"503 Meadow St, Los Angeles, CA 90001" +219573,AA Batteries (4-pack),1,3.84,06/11/19 01:09,"444 1st St, New York City, NY 10001" +219574,Apple Airpods Headphones,1,150,06/30/19 19:40,"45 Dogwood St, Portland, OR 97035" +219575,iPhone,1,700,06/06/19 20:34,"144 Cherry St, Atlanta, GA 30301" +219576,34in Ultrawide Monitor,1,379.99,06/12/19 21:40,"168 8th St, San Francisco, CA 94016" +219577,USB-C Charging Cable,1,11.95,06/21/19 10:20,"24 10th St, San Francisco, CA 94016" +219578,AA Batteries (4-pack),1,3.84,06/11/19 08:45,"197 Wilson St, New York City, NY 10001" +219579,27in FHD Monitor,1,149.99,06/16/19 20:43,"168 5th St, San Francisco, CA 94016" +219580,Lightning Charging Cable,1,14.95,06/25/19 09:15,"594 5th St, Los Angeles, CA 90001" +219581,Lightning Charging Cable,1,14.95,06/04/19 05:38,"182 Sunset St, Boston, MA 02215" +219582,Lightning Charging Cable,1,14.95,06/14/19 01:00,"23 Hickory St, New York City, NY 10001" +219583,AA Batteries (4-pack),2,3.84,06/30/19 12:20,"108 Madison St, Dallas, TX 75001" +219584,Bose SoundSport Headphones,1,99.99,06/09/19 16:03,"266 Cherry St, Los Angeles, CA 90001" +219585,27in FHD Monitor,1,149.99,06/30/19 17:32,"926 Spruce St, Los Angeles, CA 90001" +219586,Apple Airpods Headphones,1,150,06/28/19 13:34,"252 Highland St, Atlanta, GA 30301" +219587,AAA Batteries (4-pack),1,2.99,06/11/19 09:39,"696 Hickory St, New York City, NY 10001" +219588,Bose SoundSport Headphones,1,99.99,06/07/19 19:12,"38 Chestnut St, Portland, ME 04101" +219589,Wired Headphones,1,11.99,06/10/19 17:19,"646 5th St, Boston, MA 02215" +219590,27in FHD Monitor,1,149.99,06/29/19 09:45,"863 Walnut St, Los Angeles, CA 90001" +219591,Lightning Charging Cable,1,14.95,06/19/19 23:06,"452 8th St, Seattle, WA 98101" +219592,Wired Headphones,1,11.99,06/11/19 12:17,"681 7th St, San Francisco, CA 94016" +219593,AAA Batteries (4-pack),2,2.99,06/29/19 11:36,"845 River St, Atlanta, GA 30301" +219594,AAA Batteries (4-pack),2,2.99,06/20/19 17:53,"451 Madison St, Los Angeles, CA 90001" +219595,AA Batteries (4-pack),1,3.84,06/01/19 15:37,"243 Walnut St, Boston, MA 02215" +219596,27in 4K Gaming Monitor,1,389.99,06/08/19 12:25,"82 1st St, Los Angeles, CA 90001" +219597,AAA Batteries (4-pack),2,2.99,06/01/19 20:19,"628 Hill St, New York City, NY 10001" +219598,27in FHD Monitor,1,149.99,06/15/19 09:43,"379 Chestnut St, San Francisco, CA 94016" +219599,Bose SoundSport Headphones,1,99.99,06/09/19 21:13,"753 Madison St, Boston, MA 02215" +219600,AAA Batteries (4-pack),1,2.99,06/05/19 11:02,"877 1st St, Dallas, TX 75001" +219601,Lightning Charging Cable,1,14.95,06/19/19 19:14,"909 Spruce St, Boston, MA 02215" +219602,Flatscreen TV,1,300,06/03/19 00:22,"681 Ridge St, San Francisco, CA 94016" +219603,ThinkPad Laptop,1,999.99,06/30/19 01:47,"457 North St, Seattle, WA 98101" +219604,AAA Batteries (4-pack),2,2.99,06/01/19 18:45,"227 14th St, Seattle, WA 98101" +219605,Bose SoundSport Headphones,1,99.99,06/21/19 16:02,"357 6th St, Boston, MA 02215" +219606,AAA Batteries (4-pack),1,2.99,06/02/19 18:54,"478 Lake St, New York City, NY 10001" +219607,iPhone,1,700,06/21/19 23:02,"107 Main St, Los Angeles, CA 90001" +219607,Lightning Charging Cable,2,14.95,06/21/19 23:02,"107 Main St, Los Angeles, CA 90001" +219608,iPhone,1,700,06/28/19 07:29,"997 Johnson St, Atlanta, GA 30301" +219609,Apple Airpods Headphones,1,150,06/26/19 09:27,"671 Lake St, Atlanta, GA 30301" +219610,AA Batteries (4-pack),1,3.84,06/01/19 08:06,"76 Elm St, Portland, OR 97035" +219611,Bose SoundSport Headphones,1,99.99,06/27/19 22:37,"834 Center St, Seattle, WA 98101" +219612,Apple Airpods Headphones,1,150,06/12/19 17:46,"209 Hill St, Austin, TX 73301" +219613,AAA Batteries (4-pack),1,2.99,06/26/19 17:01,"787 5th St, Boston, MA 02215" +219614,Wired Headphones,1,11.99,06/12/19 23:11,"110 South St, Los Angeles, CA 90001" +219615,Google Phone,1,600,06/02/19 17:36,"795 Meadow St, Atlanta, GA 30301" +219616,Wired Headphones,1,11.99,06/16/19 07:47,"76 12th St, Portland, OR 97035" +219617,Bose SoundSport Headphones,1,99.99,06/19/19 19:15,"205 Wilson St, New York City, NY 10001" +,,,,, +219618,AAA Batteries (4-pack),1,2.99,06/04/19 14:51,"730 6th St, Los Angeles, CA 90001" +219619,Google Phone,1,600,06/16/19 21:36,"735 West St, Seattle, WA 98101" +219620,Lightning Charging Cable,1,14.95,06/06/19 11:46,"525 2nd St, San Francisco, CA 94016" +219621,USB-C Charging Cable,1,11.95,07/01/19 00:04,"78 Willow St, Seattle, WA 98101" +219622,27in FHD Monitor,1,149.99,06/04/19 12:49,"884 7th St, San Francisco, CA 94016" +219623,ThinkPad Laptop,1,999.99,06/07/19 08:41,"868 River St, San Francisco, CA 94016" +219624,Wired Headphones,1,11.99,06/30/19 13:06,"84 North St, New York City, NY 10001" +219625,Lightning Charging Cable,1,14.95,06/29/19 15:05,"463 Johnson St, San Francisco, CA 94016" +219626,Bose SoundSport Headphones,1,99.99,06/23/19 03:28,"163 Cherry St, San Francisco, CA 94016" +219627,Google Phone,1,600,06/05/19 13:17,"929 River St, Atlanta, GA 30301" +219628,Wired Headphones,2,11.99,06/23/19 15:43,"954 Forest St, Los Angeles, CA 90001" +219629,AA Batteries (4-pack),1,3.84,06/19/19 22:05,"787 Adams St, Boston, MA 02215" +219630,Wired Headphones,1,11.99,06/11/19 21:24,"268 Jefferson St, Seattle, WA 98101" +219631,Lightning Charging Cable,2,14.95,06/20/19 06:45,"331 Jackson St, Austin, TX 73301" +219632,Google Phone,1,600,06/14/19 11:52,"510 8th St, Boston, MA 02215" +219632,Wired Headphones,1,11.99,06/14/19 11:52,"510 8th St, Boston, MA 02215" +219633,Lightning Charging Cable,1,14.95,06/16/19 12:29,"736 9th St, San Francisco, CA 94016" +219634,AAA Batteries (4-pack),1,2.99,06/27/19 11:44,"518 8th St, San Francisco, CA 94016" +219635,27in 4K Gaming Monitor,1,389.99,06/28/19 14:12,"70 Park St, Boston, MA 02215" +219636,USB-C Charging Cable,1,11.95,06/03/19 06:41,"762 Park St, Seattle, WA 98101" +219637,Wired Headphones,1,11.99,06/14/19 20:27,"804 10th St, Austin, TX 73301" +219638,Flatscreen TV,1,300,06/28/19 09:46,"738 South St, New York City, NY 10001" +219639,AA Batteries (4-pack),1,3.84,06/09/19 05:49,"225 Center St, Los Angeles, CA 90001" +219640,AAA Batteries (4-pack),1,2.99,06/24/19 10:17,"57 Forest St, Austin, TX 73301" +219641,AA Batteries (4-pack),1,3.84,06/21/19 10:53,"246 Hill St, Seattle, WA 98101" +219642,34in Ultrawide Monitor,1,379.99,06/11/19 13:29,"413 9th St, Los Angeles, CA 90001" +219643,AAA Batteries (4-pack),1,2.99,06/17/19 15:07,"699 River St, Los Angeles, CA 90001" +219644,Macbook Pro Laptop,1,1700,06/22/19 00:25,"625 West St, Boston, MA 02215" +219645,USB-C Charging Cable,1,11.95,06/10/19 22:16,"978 Maple St, San Francisco, CA 94016" +219646,AA Batteries (4-pack),1,3.84,06/10/19 21:00,"667 11th St, San Francisco, CA 94016" +219647,ThinkPad Laptop,1,999.99,06/03/19 16:10,"49 10th St, Los Angeles, CA 90001" +219648,Wired Headphones,1,11.99,06/17/19 21:26,"486 Cedar St, New York City, NY 10001" +219649,AAA Batteries (4-pack),1,2.99,06/24/19 08:45,"206 Meadow St, New York City, NY 10001" +219650,34in Ultrawide Monitor,1,379.99,06/27/19 17:50,"79 8th St, Seattle, WA 98101" +219651,AA Batteries (4-pack),1,3.84,06/14/19 20:20,"828 5th St, Atlanta, GA 30301" +219652,Apple Airpods Headphones,1,150,06/25/19 19:19,"775 Hill St, Dallas, TX 75001" +219653,Apple Airpods Headphones,1,150,06/07/19 14:34,"20 West St, Austin, TX 73301" +219654,Bose SoundSport Headphones,1,99.99,06/29/19 16:42,"457 1st St, San Francisco, CA 94016" +219655,AA Batteries (4-pack),1,3.84,06/29/19 09:25,"332 Johnson St, Atlanta, GA 30301" +219656,AAA Batteries (4-pack),1,2.99,06/13/19 14:39,"930 Lincoln St, San Francisco, CA 94016" +219657,Apple Airpods Headphones,1,150,06/04/19 18:35,"817 11th St, Boston, MA 02215" +219658,USB-C Charging Cable,1,11.95,06/02/19 19:51,"481 Forest St, Los Angeles, CA 90001" +219659,Bose SoundSport Headphones,1,99.99,06/17/19 08:34,"783 Forest St, Los Angeles, CA 90001" +219660,AAA Batteries (4-pack),1,2.99,06/01/19 13:14,"420 4th St, Los Angeles, CA 90001" +219661,27in FHD Monitor,1,149.99,06/03/19 13:46,"461 Wilson St, San Francisco, CA 94016" +219662,USB-C Charging Cable,1,11.95,06/07/19 15:40,"155 Center St, San Francisco, CA 94016" +219663,AA Batteries (4-pack),1,3.84,06/23/19 11:15,"585 Walnut St, Boston, MA 02215" +219664,AA Batteries (4-pack),1,3.84,06/04/19 12:24,"906 Main St, San Francisco, CA 94016" +219665,Macbook Pro Laptop,1,1700,06/11/19 13:26,"843 Main St, San Francisco, CA 94016" +219666,AAA Batteries (4-pack),1,2.99,06/18/19 16:25,"996 7th St, Dallas, TX 75001" +219667,USB-C Charging Cable,1,11.95,06/29/19 19:44,"620 Lincoln St, New York City, NY 10001" +219668,AAA Batteries (4-pack),1,2.99,06/12/19 23:50,"309 West St, New York City, NY 10001" +219669,AAA Batteries (4-pack),1,2.99,06/14/19 07:00,"704 Center St, Los Angeles, CA 90001" +219670,27in 4K Gaming Monitor,1,389.99,06/03/19 17:25,"387 River St, Seattle, WA 98101" +219671,20in Monitor,1,109.99,06/27/19 18:06,"143 Hill St, Austin, TX 73301" +219672,USB-C Charging Cable,1,11.95,06/08/19 19:07,"663 Hickory St, San Francisco, CA 94016" +219673,Flatscreen TV,1,300,06/22/19 13:01,"603 Hill St, San Francisco, CA 94016" +219674,iPhone,1,700,06/29/19 17:53,"657 Pine St, Seattle, WA 98101" +219675,Bose SoundSport Headphones,1,99.99,06/17/19 20:13,"533 Jefferson St, New York City, NY 10001" +219676,Lightning Charging Cable,1,14.95,06/19/19 07:05,"902 Adams St, Dallas, TX 75001" +219677,Google Phone,1,600,06/22/19 10:27,"54 Ridge St, Dallas, TX 75001" +219678,Google Phone,1,600,06/11/19 18:32,"915 Sunset St, San Francisco, CA 94016" +219679,AAA Batteries (4-pack),2,2.99,06/14/19 21:05,"824 Maple St, Austin, TX 73301" +219680,Bose SoundSport Headphones,1,99.99,06/25/19 12:51,"383 Maple St, New York City, NY 10001" +219681,Lightning Charging Cable,1,14.95,06/08/19 18:33,"448 13th St, Los Angeles, CA 90001" +219682,AA Batteries (4-pack),1,3.84,06/16/19 00:57,"242 Lake St, New York City, NY 10001" +219683,Lightning Charging Cable,1,14.95,06/05/19 21:20,"638 Walnut St, Boston, MA 02215" +219684,AAA Batteries (4-pack),1,2.99,06/30/19 14:09,"538 Dogwood St, Los Angeles, CA 90001" +219685,AAA Batteries (4-pack),2,2.99,06/29/19 09:28,"135 Cherry St, San Francisco, CA 94016" +219686,iPhone,1,700,06/03/19 13:46,"521 Cedar St, Seattle, WA 98101" +219686,Wired Headphones,1,11.99,06/03/19 13:46,"521 Cedar St, Seattle, WA 98101" +219686,Apple Airpods Headphones,1,150,06/03/19 13:46,"521 Cedar St, Seattle, WA 98101" +219687,20in Monitor,1,109.99,06/04/19 12:51,"63 12th St, Austin, TX 73301" +219688,Bose SoundSport Headphones,1,99.99,06/29/19 15:29,"588 Forest St, Austin, TX 73301" +219689,USB-C Charging Cable,1,11.95,06/15/19 20:01,"910 West St, Boston, MA 02215" +219690,USB-C Charging Cable,1,11.95,06/11/19 17:14,"956 10th St, Seattle, WA 98101" +219691,Lightning Charging Cable,1,14.95,06/15/19 17:56,"111 5th St, San Francisco, CA 94016" +219692,34in Ultrawide Monitor,1,379.99,06/16/19 14:20,"299 2nd St, Austin, TX 73301" +219693,iPhone,1,700,06/02/19 23:36,"707 Lincoln St, Boston, MA 02215" +219693,Wired Headphones,1,11.99,06/02/19 23:36,"707 Lincoln St, Boston, MA 02215" +219694,Wired Headphones,1,11.99,06/04/19 19:46,"312 North St, Portland, ME 04101" +219695,Apple Airpods Headphones,1,150,06/22/19 19:51,"252 Dogwood St, Atlanta, GA 30301" +219696,27in FHD Monitor,1,149.99,06/10/19 11:14,"93 5th St, San Francisco, CA 94016" +219697,Bose SoundSport Headphones,1,99.99,06/04/19 20:39,"345 12th St, Boston, MA 02215" +219698,20in Monitor,1,109.99,06/09/19 11:48,"822 South St, Dallas, TX 75001" +219699,27in 4K Gaming Monitor,1,389.99,06/18/19 08:09,"785 West St, Seattle, WA 98101" +219700,Bose SoundSport Headphones,1,99.99,06/05/19 22:33,"882 Jefferson St, Seattle, WA 98101" +219701,34in Ultrawide Monitor,1,379.99,06/13/19 19:51,"680 7th St, Boston, MA 02215" +219702,AAA Batteries (4-pack),2,2.99,06/06/19 17:21,"754 Elm St, Austin, TX 73301" +219703,Macbook Pro Laptop,1,1700,06/17/19 11:41,"558 Lake St, San Francisco, CA 94016" +219704,AAA Batteries (4-pack),1,2.99,06/17/19 14:30,"264 5th St, Portland, ME 04101" +219705,ThinkPad Laptop,1,999.99,06/10/19 08:05,"874 5th St, Austin, TX 73301" +219706,Lightning Charging Cable,1,14.95,06/02/19 19:37,"148 Hill St, Portland, OR 97035" +219707,Macbook Pro Laptop,1,1700,06/25/19 22:08,"910 North St, San Francisco, CA 94016" +219708,AAA Batteries (4-pack),1,2.99,06/17/19 23:08,"571 Madison St, Los Angeles, CA 90001" +219709,iPhone,1,700,06/28/19 05:31,"200 Madison St, San Francisco, CA 94016" +219710,iPhone,1,700,06/13/19 00:33,"616 Walnut St, Portland, OR 97035" +219711,27in FHD Monitor,1,149.99,06/15/19 15:02,"663 Johnson St, Atlanta, GA 30301" +219712,34in Ultrawide Monitor,1,379.99,06/21/19 20:41,"493 8th St, Dallas, TX 75001" +219713,USB-C Charging Cable,2,11.95,06/14/19 12:02,"20 Jackson St, Boston, MA 02215" +219714,AA Batteries (4-pack),1,3.84,06/22/19 17:17,"419 Center St, Los Angeles, CA 90001" +219715,Wired Headphones,1,11.99,06/29/19 21:46,"373 Lake St, Boston, MA 02215" +219716,AAA Batteries (4-pack),1,2.99,06/16/19 15:45,"318 Willow St, Atlanta, GA 30301" +219717,Vareebadd Phone,1,400,06/27/19 10:11,"482 Johnson St, Boston, MA 02215" +219718,Macbook Pro Laptop,1,1700,06/14/19 07:53,"308 10th St, Los Angeles, CA 90001" +219719,27in 4K Gaming Monitor,1,389.99,06/21/19 19:11,"70 13th St, New York City, NY 10001" +219720,Macbook Pro Laptop,1,1700,06/24/19 09:23,"81 Johnson St, Portland, OR 97035" +219721,Lightning Charging Cable,1,14.95,06/14/19 21:35,"43 Cherry St, Boston, MA 02215" +219722,USB-C Charging Cable,1,11.95,06/27/19 23:02,"293 Highland St, Los Angeles, CA 90001" +219723,27in FHD Monitor,1,149.99,06/07/19 19:05,"194 1st St, New York City, NY 10001" +219724,AA Batteries (4-pack),1,3.84,06/04/19 20:00,"928 13th St, San Francisco, CA 94016" +219725,USB-C Charging Cable,1,11.95,06/06/19 12:33,"740 Johnson St, Los Angeles, CA 90001" +219726,Wired Headphones,1,11.99,06/13/19 12:00,"358 Walnut St, San Francisco, CA 94016" +219727,Wired Headphones,1,11.99,06/25/19 08:59,"845 Hill St, San Francisco, CA 94016" +219728,AA Batteries (4-pack),1,3.84,06/30/19 07:34,"229 4th St, Los Angeles, CA 90001" +219729,AAA Batteries (4-pack),1,2.99,06/13/19 22:31,"508 11th St, San Francisco, CA 94016" +219730,27in FHD Monitor,1,149.99,06/11/19 20:36,"652 Lake St, San Francisco, CA 94016" +219731,20in Monitor,1,109.99,06/11/19 19:29,"467 Hill St, Seattle, WA 98101" +219732,Flatscreen TV,1,300,06/17/19 07:30,"59 Washington St, Los Angeles, CA 90001" +219733,Wired Headphones,1,11.99,06/22/19 13:12,"532 Hickory St, New York City, NY 10001" +219734,Lightning Charging Cable,1,14.95,06/24/19 19:38,"581 Cedar St, Seattle, WA 98101" +219735,AAA Batteries (4-pack),1,2.99,06/02/19 08:43,"529 Main St, Atlanta, GA 30301" +219736,Bose SoundSport Headphones,1,99.99,06/11/19 20:32,"82 Meadow St, Atlanta, GA 30301" +219737,Lightning Charging Cable,1,14.95,06/14/19 22:41,"780 Cherry St, San Francisco, CA 94016" +219738,Apple Airpods Headphones,1,150,06/17/19 23:17,"245 Forest St, Los Angeles, CA 90001" +219738,AAA Batteries (4-pack),1,2.99,06/17/19 23:17,"245 Forest St, Los Angeles, CA 90001" +219739,Lightning Charging Cable,1,14.95,06/21/19 19:33,"917 Pine St, Dallas, TX 75001" +219740,Apple Airpods Headphones,1,150,06/28/19 23:28,"312 Forest St, San Francisco, CA 94016" +219741,ThinkPad Laptop,1,999.99,06/25/19 16:06,"76 Maple St, Los Angeles, CA 90001" +219742,Wired Headphones,1,11.99,06/11/19 18:18,"660 South St, Seattle, WA 98101" +219743,AAA Batteries (4-pack),1,2.99,06/06/19 07:58,"977 9th St, Atlanta, GA 30301" +219744,Lightning Charging Cable,1,14.95,06/29/19 15:00,"365 Johnson St, Los Angeles, CA 90001" +219745,34in Ultrawide Monitor,1,379.99,06/01/19 18:39,"505 Willow St, New York City, NY 10001" +219746,USB-C Charging Cable,1,11.95,06/19/19 13:17,"963 6th St, Portland, OR 97035" +219747,Wired Headphones,1,11.99,06/30/19 13:57,"980 14th St, Portland, OR 97035" +219748,iPhone,1,700,06/13/19 16:50,"224 14th St, Los Angeles, CA 90001" +219749,Macbook Pro Laptop,1,1700,06/06/19 04:45,"795 Jackson St, Portland, OR 97035" +219750,Apple Airpods Headphones,1,150,06/09/19 11:25,"15 Hickory St, San Francisco, CA 94016" +219751,27in FHD Monitor,1,149.99,06/26/19 22:54,"761 13th St, Seattle, WA 98101" +219752,AAA Batteries (4-pack),1,2.99,06/15/19 10:10,"28 11th St, San Francisco, CA 94016" +219753,USB-C Charging Cable,1,11.95,06/11/19 20:18,"522 Johnson St, Dallas, TX 75001" +219754,USB-C Charging Cable,1,11.95,06/10/19 09:45,"673 14th St, San Francisco, CA 94016" +219755,Lightning Charging Cable,1,14.95,06/19/19 21:35,"29 Park St, Seattle, WA 98101" +219756,Bose SoundSport Headphones,1,99.99,06/04/19 04:39,"692 Maple St, Boston, MA 02215" +219757,Lightning Charging Cable,1,14.95,06/01/19 11:02,"938 North St, San Francisco, CA 94016" +219758,34in Ultrawide Monitor,1,379.99,06/27/19 12:49,"894 Adams St, Dallas, TX 75001" +219759,iPhone,1,700,06/09/19 13:17,"35 13th St, Dallas, TX 75001" +219759,Lightning Charging Cable,1,14.95,06/09/19 13:17,"35 13th St, Dallas, TX 75001" +219760,Apple Airpods Headphones,1,150,06/11/19 15:45,"186 Forest St, San Francisco, CA 94016" +219761,Bose SoundSport Headphones,1,99.99,06/07/19 13:49,"917 Ridge St, Portland, ME 04101" +219762,USB-C Charging Cable,1,11.95,06/12/19 20:08,"696 Center St, Atlanta, GA 30301" +219763,Wired Headphones,1,11.99,06/24/19 11:09,"442 8th St, Portland, ME 04101" +219764,Bose SoundSport Headphones,1,99.99,06/28/19 18:45,"349 Willow St, Seattle, WA 98101" +219765,Apple Airpods Headphones,1,150,06/24/19 09:16,"117 Main St, New York City, NY 10001" +219766,AA Batteries (4-pack),1,3.84,06/04/19 14:23,"194 Lincoln St, Austin, TX 73301" +219767,27in 4K Gaming Monitor,1,389.99,06/19/19 09:41,"599 Chestnut St, New York City, NY 10001" +219768,Bose SoundSport Headphones,1,99.99,06/10/19 18:40,"455 Johnson St, Seattle, WA 98101" +219769,USB-C Charging Cable,1,11.95,06/23/19 13:13,"93 Park St, San Francisco, CA 94016" +219770,iPhone,1,700,06/18/19 23:17,"179 11th St, San Francisco, CA 94016" +219771,Apple Airpods Headphones,1,150,06/17/19 18:17,"710 11th St, Portland, OR 97035" +219772,AA Batteries (4-pack),1,3.84,06/18/19 02:17,"859 River St, New York City, NY 10001" +219773,AAA Batteries (4-pack),1,2.99,06/29/19 12:29,"492 6th St, Dallas, TX 75001" +219774,AAA Batteries (4-pack),2,2.99,06/26/19 15:00,"517 Hickory St, Los Angeles, CA 90001" +219775,27in FHD Monitor,1,149.99,06/29/19 19:52,"234 11th St, Boston, MA 02215" +219776,Bose SoundSport Headphones,1,99.99,06/25/19 10:27,"276 13th St, Seattle, WA 98101" +219777,AAA Batteries (4-pack),1,2.99,06/08/19 12:31,"272 Walnut St, San Francisco, CA 94016" +219778,Lightning Charging Cable,2,14.95,06/21/19 08:15,"974 Wilson St, New York City, NY 10001" +219779,AAA Batteries (4-pack),1,2.99,06/03/19 03:16,"840 4th St, San Francisco, CA 94016" +219780,Apple Airpods Headphones,1,150,06/26/19 12:32,"290 Johnson St, Los Angeles, CA 90001" +219780,USB-C Charging Cable,2,11.95,06/26/19 12:32,"290 Johnson St, Los Angeles, CA 90001" +219781,20in Monitor,1,109.99,06/29/19 18:40,"273 Maple St, Boston, MA 02215" +219782,AA Batteries (4-pack),1,3.84,06/04/19 16:43,"272 14th St, Seattle, WA 98101" +219783,AAA Batteries (4-pack),1,2.99,06/16/19 19:32,"359 South St, San Francisco, CA 94016" +219784,Macbook Pro Laptop,1,1700,06/02/19 10:32,"85 Johnson St, San Francisco, CA 94016" +219785,Bose SoundSport Headphones,1,99.99,06/10/19 15:14,"221 Center St, Dallas, TX 75001" +219786,AA Batteries (4-pack),1,3.84,06/03/19 12:39,"642 5th St, San Francisco, CA 94016" +219787,20in Monitor,1,109.99,06/01/19 10:50,"827 13th St, San Francisco, CA 94016" +219788,AA Batteries (4-pack),2,3.84,06/29/19 16:55,"504 13th St, Los Angeles, CA 90001" +219789,Lightning Charging Cable,1,14.95,06/10/19 15:12,"671 Spruce St, Los Angeles, CA 90001" +219790,AAA Batteries (4-pack),1,2.99,06/27/19 18:54,"149 5th St, Dallas, TX 75001" +219791,AA Batteries (4-pack),2,3.84,06/08/19 12:11,"12 Adams St, Los Angeles, CA 90001" +219792,Wired Headphones,1,11.99,06/20/19 15:28,"695 Cherry St, New York City, NY 10001" +219793,20in Monitor,1,109.99,06/25/19 21:40,"809 Hill St, Los Angeles, CA 90001" +219794,Wired Headphones,1,11.99,06/14/19 13:36,"970 9th St, Atlanta, GA 30301" +219795,iPhone,1,700,06/05/19 14:15,"465 Church St, Los Angeles, CA 90001" +219795,Lightning Charging Cable,1,14.95,06/05/19 14:15,"465 Church St, Los Angeles, CA 90001" +219796,Bose SoundSport Headphones,1,99.99,06/12/19 01:33,"563 5th St, Boston, MA 02215" +219797,Bose SoundSport Headphones,1,99.99,06/02/19 16:55,"643 Maple St, San Francisco, CA 94016" +219798,ThinkPad Laptop,1,999.99,06/20/19 21:45,"460 Church St, Boston, MA 02215" +219799,AA Batteries (4-pack),1,3.84,06/27/19 19:18,"356 River St, New York City, NY 10001" +219800,Apple Airpods Headphones,1,150,06/06/19 21:29,"336 11th St, Los Angeles, CA 90001" +219801,Bose SoundSport Headphones,1,99.99,06/17/19 11:56,"957 Dogwood St, San Francisco, CA 94016" +219802,AAA Batteries (4-pack),3,2.99,06/30/19 01:48,"474 Adams St, Portland, ME 04101" +219803,Wired Headphones,1,11.99,06/30/19 19:07,"52 Johnson St, San Francisco, CA 94016" +219804,Lightning Charging Cable,2,14.95,06/11/19 22:02,"868 Center St, San Francisco, CA 94016" +219805,Apple Airpods Headphones,1,150,06/03/19 11:21,"181 Meadow St, San Francisco, CA 94016" +219806,AAA Batteries (4-pack),1,2.99,06/30/19 01:43,"307 Park St, San Francisco, CA 94016" +219807,USB-C Charging Cable,1,11.95,06/17/19 22:11,"966 Jackson St, Atlanta, GA 30301" +219808,USB-C Charging Cable,1,11.95,06/28/19 20:14,"963 Spruce St, New York City, NY 10001" +219809,Wired Headphones,1,11.99,06/29/19 16:10,"136 11th St, Los Angeles, CA 90001" +219810,Bose SoundSport Headphones,1,99.99,06/19/19 13:59,"603 River St, New York City, NY 10001" +219811,27in FHD Monitor,1,149.99,06/16/19 21:05,"885 10th St, New York City, NY 10001" +219812,Wired Headphones,1,11.99,06/15/19 09:50,"434 Jackson St, Boston, MA 02215" +219813,34in Ultrawide Monitor,1,379.99,06/26/19 22:12,"400 Spruce St, Boston, MA 02215" +219814,USB-C Charging Cable,1,11.95,06/22/19 23:29,"538 6th St, New York City, NY 10001" +219815,AAA Batteries (4-pack),1,2.99,06/28/19 01:53,"599 Maple St, New York City, NY 10001" +219816,ThinkPad Laptop,1,999.99,06/24/19 16:47,"852 Park St, Portland, OR 97035" +219817,27in 4K Gaming Monitor,1,389.99,06/06/19 00:27,"979 Johnson St, Atlanta, GA 30301" +219818,USB-C Charging Cable,2,11.95,06/14/19 11:34,"845 7th St, Austin, TX 73301" +219819,Bose SoundSport Headphones,1,99.99,06/15/19 16:38,"928 1st St, Dallas, TX 75001" +219820,Apple Airpods Headphones,1,150,06/02/19 22:36,"350 Meadow St, New York City, NY 10001" +219821,Wired Headphones,1,11.99,06/25/19 08:24,"572 Cherry St, New York City, NY 10001" +219822,Lightning Charging Cable,1,14.95,06/06/19 17:58,"715 2nd St, Dallas, TX 75001" +219823,AAA Batteries (4-pack),2,2.99,06/22/19 16:46,"972 Lincoln St, New York City, NY 10001" +219824,AA Batteries (4-pack),2,3.84,06/04/19 10:28,"403 12th St, Atlanta, GA 30301" +219825,Wired Headphones,1,11.99,06/05/19 20:06,"720 1st St, Atlanta, GA 30301" +219826,Lightning Charging Cable,1,14.95,06/19/19 06:38,"45 Park St, Dallas, TX 75001" +219827,27in FHD Monitor,1,149.99,06/30/19 16:23,"613 Hill St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +219828,Lightning Charging Cable,1,14.95,06/08/19 18:19,"232 6th St, Seattle, WA 98101" +219829,AAA Batteries (4-pack),1,2.99,06/29/19 11:12,"479 6th St, San Francisco, CA 94016" +219830,Google Phone,1,600,06/04/19 18:53,"911 8th St, Seattle, WA 98101" +219831,27in 4K Gaming Monitor,1,389.99,06/01/19 12:30,"858 9th St, San Francisco, CA 94016" +219832,Google Phone,1,600,06/22/19 07:16,"120 Meadow St, San Francisco, CA 94016" +219833,AA Batteries (4-pack),2,3.84,06/27/19 17:47,"835 Center St, San Francisco, CA 94016" +219834,AAA Batteries (4-pack),1,2.99,06/17/19 18:20,"967 Lakeview St, San Francisco, CA 94016" +219835,iPhone,1,700,06/03/19 11:07,"650 Sunset St, Los Angeles, CA 90001" +219836,AAA Batteries (4-pack),1,2.99,06/08/19 22:03,"103 Jefferson St, Los Angeles, CA 90001" +219837,Lightning Charging Cable,1,14.95,06/02/19 15:44,"328 North St, Los Angeles, CA 90001" +219838,AA Batteries (4-pack),1,3.84,06/18/19 12:22,"579 Spruce St, Seattle, WA 98101" +219838,27in FHD Monitor,1,149.99,06/18/19 12:22,"579 Spruce St, Seattle, WA 98101" +219839,AAA Batteries (4-pack),2,2.99,06/05/19 02:35,"158 9th St, Portland, ME 04101" +219840,27in 4K Gaming Monitor,1,389.99,06/26/19 10:09,"289 Center St, Boston, MA 02215" +219841,Google Phone,1,600,06/02/19 18:36,"761 11th St, Seattle, WA 98101" +219842,AA Batteries (4-pack),1,3.84,06/25/19 00:23,"683 12th St, New York City, NY 10001" +219843,Bose SoundSport Headphones,1,99.99,06/11/19 21:22,"111 Cedar St, Boston, MA 02215" +219844,Wired Headphones,1,11.99,06/04/19 17:08,"912 1st St, Boston, MA 02215" +219845,20in Monitor,1,109.99,06/11/19 19:43,"527 Willow St, Seattle, WA 98101" +219846,iPhone,1,700,06/11/19 18:14,"807 14th St, San Francisco, CA 94016" +219846,Apple Airpods Headphones,1,150,06/11/19 18:14,"807 14th St, San Francisco, CA 94016" +219847,AA Batteries (4-pack),1,3.84,06/20/19 14:56,"430 9th St, Atlanta, GA 30301" +219848,USB-C Charging Cable,1,11.95,06/10/19 20:43,"717 Maple St, Portland, OR 97035" +219849,USB-C Charging Cable,1,11.95,06/19/19 22:34,"692 9th St, Portland, OR 97035" +219850,iPhone,1,700,06/12/19 21:07,"946 Lincoln St, Dallas, TX 75001" +219851,Wired Headphones,1,11.99,06/07/19 14:17,"202 10th St, New York City, NY 10001" +219852,USB-C Charging Cable,1,11.95,06/22/19 20:58,"677 8th St, Boston, MA 02215" +219853,AAA Batteries (4-pack),2,2.99,06/13/19 18:21,"779 Cedar St, Boston, MA 02215" +219854,Bose SoundSport Headphones,1,99.99,06/01/19 11:35,"669 Lakeview St, Austin, TX 73301" +219855,34in Ultrawide Monitor,1,379.99,06/06/19 08:40,"459 Wilson St, Dallas, TX 75001" +219856,AAA Batteries (4-pack),4,2.99,06/04/19 09:30,"279 Center St, Atlanta, GA 30301" +219857,Apple Airpods Headphones,1,150,06/26/19 13:07,"133 Main St, Seattle, WA 98101" +219858,Lightning Charging Cable,1,14.95,06/26/19 10:55,"738 Maple St, Los Angeles, CA 90001" +219859,Apple Airpods Headphones,1,150,06/10/19 20:43,"767 Pine St, Austin, TX 73301" +219860,Lightning Charging Cable,1,14.95,06/07/19 11:54,"708 6th St, Dallas, TX 75001" +219861,Lightning Charging Cable,1,14.95,06/12/19 10:52,"330 9th St, Los Angeles, CA 90001" +219862,USB-C Charging Cable,1,11.95,06/23/19 13:24,"131 North St, Los Angeles, CA 90001" +219863,ThinkPad Laptop,1,999.99,06/07/19 21:29,"119 Johnson St, Atlanta, GA 30301" +219864,Wired Headphones,1,11.99,06/12/19 15:35,"734 Willow St, Los Angeles, CA 90001" +219865,Wired Headphones,1,11.99,06/25/19 18:09,"108 Chestnut St, San Francisco, CA 94016" +219866,USB-C Charging Cable,1,11.95,06/10/19 15:22,"513 Church St, New York City, NY 10001" +219867,Lightning Charging Cable,1,14.95,06/12/19 12:58,"46 Park St, San Francisco, CA 94016" +219868,Wired Headphones,1,11.99,06/18/19 17:26,"83 Park St, Portland, OR 97035" +219869,USB-C Charging Cable,1,11.95,06/01/19 19:37,"182 Park St, Boston, MA 02215" +219870,Flatscreen TV,1,300,06/11/19 22:59,"597 Washington St, San Francisco, CA 94016" +219870,iPhone,1,700,06/11/19 22:59,"597 Washington St, San Francisco, CA 94016" +219871,Wired Headphones,1,11.99,06/29/19 18:20,"442 Spruce St, New York City, NY 10001" +219872,iPhone,1,700,06/18/19 13:45,"49 Sunset St, San Francisco, CA 94016" +219873,Lightning Charging Cable,1,14.95,06/01/19 21:01,"613 2nd St, Dallas, TX 75001" +219874,AAA Batteries (4-pack),1,2.99,06/24/19 17:37,"568 North St, Dallas, TX 75001" +219875,Wired Headphones,1,11.99,06/06/19 17:49,"784 Meadow St, Los Angeles, CA 90001" +,,,,, +219876,27in FHD Monitor,1,149.99,06/18/19 02:51,"257 Chestnut St, Dallas, TX 75001" +219877,AA Batteries (4-pack),1,3.84,06/28/19 17:27,"436 7th St, Seattle, WA 98101" +219878,AAA Batteries (4-pack),2,2.99,06/11/19 07:05,"757 Chestnut St, Portland, OR 97035" +219879,20in Monitor,1,109.99,06/24/19 10:50,"798 Hickory St, Seattle, WA 98101" +219880,Bose SoundSport Headphones,1,99.99,06/16/19 16:05,"239 Jackson St, San Francisco, CA 94016" +219881,Lightning Charging Cable,1,14.95,06/20/19 09:29,"371 8th St, Portland, ME 04101" +219881,Wired Headphones,1,11.99,06/20/19 09:29,"371 8th St, Portland, ME 04101" +219882,Bose SoundSport Headphones,1,99.99,06/28/19 21:42,"921 Spruce St, San Francisco, CA 94016" +219883,Wired Headphones,1,11.99,06/04/19 17:20,"181 Chestnut St, Boston, MA 02215" +219884,Bose SoundSport Headphones,1,99.99,06/27/19 09:55,"365 Jackson St, Boston, MA 02215" +219885,Wired Headphones,1,11.99,06/14/19 11:27,"722 Madison St, San Francisco, CA 94016" +219886,Flatscreen TV,1,300,06/24/19 21:02,"123 South St, Boston, MA 02215" +219887,Flatscreen TV,1,300,06/30/19 21:58,"939 Walnut St, San Francisco, CA 94016" +219888,Lightning Charging Cable,1,14.95,06/13/19 19:44,"864 5th St, San Francisco, CA 94016" +219889,AAA Batteries (4-pack),1,2.99,06/02/19 07:25,"257 7th St, New York City, NY 10001" +219890,Lightning Charging Cable,1,14.95,06/04/19 12:26,"533 Ridge St, Los Angeles, CA 90001" +219891,Wired Headphones,1,11.99,06/20/19 23:36,"232 Highland St, Los Angeles, CA 90001" +219892,Bose SoundSport Headphones,1,99.99,06/10/19 21:17,"872 6th St, Boston, MA 02215" +219893,Wired Headphones,1,11.99,06/09/19 16:18,"134 Jackson St, Atlanta, GA 30301" +219894,Apple Airpods Headphones,1,150,06/28/19 13:02,"548 Elm St, Los Angeles, CA 90001" +219895,Apple Airpods Headphones,1,150,06/02/19 15:45,"578 13th St, Los Angeles, CA 90001" +219896,27in FHD Monitor,1,149.99,06/07/19 21:44,"215 Sunset St, Dallas, TX 75001" +219897,20in Monitor,1,109.99,06/02/19 22:04,"59 1st St, Atlanta, GA 30301" +219898,Apple Airpods Headphones,1,150,06/29/19 16:41,"779 Sunset St, San Francisco, CA 94016" +219899,AA Batteries (4-pack),1,3.84,06/21/19 03:55,"95 North St, New York City, NY 10001" +219900,USB-C Charging Cable,1,11.95,06/14/19 18:27,"626 Johnson St, Boston, MA 02215" +219901,Bose SoundSport Headphones,1,99.99,06/28/19 03:07,"546 North St, Seattle, WA 98101" +219902,20in Monitor,1,109.99,06/02/19 14:04,"100 4th St, Los Angeles, CA 90001" +219903,Google Phone,1,600,06/18/19 13:31,"83 Sunset St, Dallas, TX 75001" +219903,USB-C Charging Cable,1,11.95,06/18/19 13:31,"83 Sunset St, Dallas, TX 75001" +219903,Bose SoundSport Headphones,1,99.99,06/18/19 13:31,"83 Sunset St, Dallas, TX 75001" +219904,Wired Headphones,1,11.99,06/12/19 17:46,"626 Ridge St, Seattle, WA 98101" +219905,Lightning Charging Cable,2,14.95,06/07/19 12:49,"2 4th St, New York City, NY 10001" +219906,USB-C Charging Cable,1,11.95,06/04/19 12:20,"31 5th St, San Francisco, CA 94016" +219907,Flatscreen TV,1,300,06/10/19 07:07,"789 2nd St, Los Angeles, CA 90001" +219908,USB-C Charging Cable,1,11.95,06/13/19 18:44,"272 5th St, Dallas, TX 75001" +219909,AAA Batteries (4-pack),4,2.99,06/02/19 13:23,"723 West St, Portland, ME 04101" +219910,Macbook Pro Laptop,1,1700,06/05/19 22:33,"854 Adams St, Boston, MA 02215" +219911,Wired Headphones,1,11.99,06/29/19 10:59,"462 10th St, Seattle, WA 98101" +219912,Apple Airpods Headphones,1,150,06/21/19 06:11,"185 Highland St, Boston, MA 02215" +219913,Apple Airpods Headphones,1,150,06/08/19 21:02,"115 Cedar St, Austin, TX 73301" +219914,AAA Batteries (4-pack),1,2.99,06/15/19 10:38,"761 River St, Dallas, TX 75001" +219915,Wired Headphones,1,11.99,06/20/19 00:53,"455 Highland St, Los Angeles, CA 90001" +219916,Wired Headphones,1,11.99,06/08/19 10:27,"490 Forest St, Dallas, TX 75001" +219917,AA Batteries (4-pack),1,3.84,06/30/19 22:42,"701 Cherry St, San Francisco, CA 94016" +219918,Flatscreen TV,1,300,06/05/19 13:42,"310 Sunset St, San Francisco, CA 94016" +219919,USB-C Charging Cable,1,11.95,06/26/19 23:10,"676 Ridge St, San Francisco, CA 94016" +219920,Apple Airpods Headphones,1,150,06/14/19 23:03,"985 River St, Austin, TX 73301" +219921,34in Ultrawide Monitor,1,379.99,06/27/19 07:10,"457 6th St, Atlanta, GA 30301" +219922,Lightning Charging Cable,1,14.95,06/18/19 12:50,"137 7th St, New York City, NY 10001" +219923,Apple Airpods Headphones,1,150,06/15/19 18:33,"179 Maple St, Boston, MA 02215" +219924,Macbook Pro Laptop,1,1700,06/20/19 13:05,"523 Elm St, Boston, MA 02215" +219925,USB-C Charging Cable,1,11.95,06/21/19 10:57,"363 Ridge St, Boston, MA 02215" +219926,Apple Airpods Headphones,1,150,06/23/19 12:22,"154 11th St, New York City, NY 10001" +219927,Lightning Charging Cable,1,14.95,06/21/19 02:47,"454 2nd St, Los Angeles, CA 90001" +219928,AAA Batteries (4-pack),1,2.99,06/04/19 09:41,"162 Cherry St, Dallas, TX 75001" +219929,Bose SoundSport Headphones,1,99.99,06/05/19 20:29,"65 Forest St, Los Angeles, CA 90001" +219930,27in 4K Gaming Monitor,1,389.99,06/14/19 13:50,"940 Cherry St, New York City, NY 10001" +219931,Flatscreen TV,1,300,06/28/19 13:43,"254 Cedar St, Atlanta, GA 30301" +219932,Apple Airpods Headphones,1,150,06/10/19 11:38,"249 Walnut St, Boston, MA 02215" +219933,USB-C Charging Cable,2,11.95,06/16/19 18:01,"275 Church St, New York City, NY 10001" +219934,27in FHD Monitor,1,149.99,06/25/19 15:57,"672 Jefferson St, Portland, OR 97035" +219935,USB-C Charging Cable,1,11.95,06/21/19 21:20,"777 Highland St, Los Angeles, CA 90001" +219936,Wired Headphones,1,11.99,06/17/19 06:29,"227 9th St, San Francisco, CA 94016" +219937,Wired Headphones,1,11.99,06/06/19 13:28,"246 Forest St, Los Angeles, CA 90001" +219938,Bose SoundSport Headphones,1,99.99,06/25/19 14:18,"197 Lake St, Los Angeles, CA 90001" +219939,AA Batteries (4-pack),1,3.84,06/18/19 15:13,"705 Sunset St, Atlanta, GA 30301" +219940,USB-C Charging Cable,1,11.95,06/22/19 09:48,"85 2nd St, San Francisco, CA 94016" +219941,Apple Airpods Headphones,1,150,06/19/19 18:27,"546 West St, New York City, NY 10001" +219942,Lightning Charging Cable,1,14.95,06/16/19 14:36,"748 Elm St, Dallas, TX 75001" +219943,iPhone,1,700,06/17/19 13:26,"514 2nd St, New York City, NY 10001" +219943,Apple Airpods Headphones,1,150,06/17/19 13:26,"514 2nd St, New York City, NY 10001" +219944,Lightning Charging Cable,1,14.95,06/03/19 10:50,"543 11th St, Atlanta, GA 30301" +219945,Wired Headphones,1,11.99,06/12/19 15:04,"396 Sunset St, New York City, NY 10001" +219946,Lightning Charging Cable,1,14.95,06/29/19 20:15,"33 14th St, San Francisco, CA 94016" +219947,Flatscreen TV,1,300,06/24/19 13:28,"886 Adams St, San Francisco, CA 94016" +219948,AAA Batteries (4-pack),1,2.99,06/20/19 02:17,"177 Madison St, Los Angeles, CA 90001" +219949,AAA Batteries (4-pack),1,2.99,06/10/19 01:37,"752 Hill St, Austin, TX 73301" +219950,iPhone,1,700,06/27/19 13:21,"443 1st St, New York City, NY 10001" +219951,Google Phone,1,600,06/21/19 15:45,"648 Hill St, Los Angeles, CA 90001" +219951,USB-C Charging Cable,1,11.95,06/21/19 15:45,"648 Hill St, Los Angeles, CA 90001" +219952,Bose SoundSport Headphones,1,99.99,06/11/19 10:17,"997 12th St, San Francisco, CA 94016" +219953,Wired Headphones,2,11.99,06/27/19 21:42,"274 12th St, Boston, MA 02215" +219954,27in 4K Gaming Monitor,1,389.99,06/10/19 18:32,"657 Dogwood St, Atlanta, GA 30301" +219955,AAA Batteries (4-pack),1,2.99,06/23/19 09:26,"939 Johnson St, Los Angeles, CA 90001" +219956,Wired Headphones,1,11.99,06/08/19 13:01,"600 6th St, Los Angeles, CA 90001" +219957,ThinkPad Laptop,1,999.99,06/13/19 21:18,"745 Sunset St, Los Angeles, CA 90001" +219958,USB-C Charging Cable,2,11.95,06/26/19 22:01,"752 South St, Atlanta, GA 30301" +219959,AA Batteries (4-pack),2,3.84,06/13/19 08:07,"969 Chestnut St, Dallas, TX 75001" +219960,AA Batteries (4-pack),1,3.84,06/21/19 19:18,"321 Park St, San Francisco, CA 94016" +219961,27in FHD Monitor,1,149.99,06/21/19 17:36,"838 Walnut St, Atlanta, GA 30301" +219962,USB-C Charging Cable,1,11.95,06/13/19 22:23,"903 2nd St, Boston, MA 02215" +219963,27in FHD Monitor,1,149.99,06/16/19 23:16,"453 Madison St, San Francisco, CA 94016" +219964,Wired Headphones,1,11.99,06/21/19 15:25,"144 Spruce St, Los Angeles, CA 90001" +219965,ThinkPad Laptop,1,999.99,06/15/19 15:12,"182 Johnson St, Atlanta, GA 30301" +219966,Apple Airpods Headphones,1,150,06/25/19 03:23,"637 2nd St, New York City, NY 10001" +219967,USB-C Charging Cable,1,11.95,06/09/19 13:24,"952 14th St, Atlanta, GA 30301" +219968,AA Batteries (4-pack),1,3.84,06/18/19 14:27,"411 Willow St, New York City, NY 10001" +219969,Macbook Pro Laptop,1,1700,06/04/19 12:13,"53 12th St, Los Angeles, CA 90001" +219970,iPhone,1,700,06/09/19 22:35,"941 13th St, Los Angeles, CA 90001" +219970,Apple Airpods Headphones,1,150,06/09/19 22:35,"941 13th St, Los Angeles, CA 90001" +219971,Wired Headphones,1,11.99,06/23/19 17:18,"381 Lakeview St, Boston, MA 02215" +219972,Wired Headphones,1,11.99,06/16/19 08:45,"640 Johnson St, Boston, MA 02215" +219973,Lightning Charging Cable,1,14.95,06/09/19 07:48,"276 Meadow St, San Francisco, CA 94016" +219974,Lightning Charging Cable,1,14.95,06/26/19 11:28,"528 Spruce St, New York City, NY 10001" +219975,AAA Batteries (4-pack),1,2.99,06/19/19 15:43,"357 Maple St, New York City, NY 10001" +219976,AA Batteries (4-pack),4,3.84,06/17/19 23:51,"325 Elm St, Los Angeles, CA 90001" +219977,USB-C Charging Cable,1,11.95,06/22/19 18:59,"689 Forest St, Los Angeles, CA 90001" +219978,Bose SoundSport Headphones,1,99.99,06/18/19 14:53,"474 Pine St, Dallas, TX 75001" +219979,AA Batteries (4-pack),2,3.84,06/02/19 13:56,"461 1st St, New York City, NY 10001" +219980,Bose SoundSport Headphones,1,99.99,06/24/19 11:10,"385 9th St, Dallas, TX 75001" +,,,,, +219981,Bose SoundSport Headphones,1,99.99,06/28/19 10:14,"33 West St, San Francisco, CA 94016" +219982,Wired Headphones,1,11.99,06/02/19 17:40,"283 Jackson St, Seattle, WA 98101" +219983,Google Phone,1,600,06/01/19 19:01,"546 Lincoln St, New York City, NY 10001" +219984,Wired Headphones,1,11.99,06/13/19 12:10,"273 Main St, Seattle, WA 98101" +219985,USB-C Charging Cable,2,11.95,06/07/19 10:05,"333 Wilson St, Dallas, TX 75001" +219986,AAA Batteries (4-pack),1,2.99,06/22/19 23:15,"966 Johnson St, Atlanta, GA 30301" +219987,AAA Batteries (4-pack),1,2.99,06/16/19 17:48,"659 Elm St, Los Angeles, CA 90001" +219988,Flatscreen TV,1,300,06/30/19 14:11,"948 Walnut St, Austin, TX 73301" +219989,Lightning Charging Cable,1,14.95,06/10/19 18:57,"318 Hill St, San Francisco, CA 94016" +219990,Wired Headphones,1,11.99,06/01/19 09:18,"13 Pine St, San Francisco, CA 94016" +219991,AAA Batteries (4-pack),1,2.99,06/30/19 12:48,"704 7th St, Portland, OR 97035" +219992,27in 4K Gaming Monitor,1,389.99,06/17/19 21:45,"457 12th St, Austin, TX 73301" +219993,iPhone,1,700,06/02/19 13:36,"58 Pine St, New York City, NY 10001" +219994,Apple Airpods Headphones,1,150,06/10/19 09:54,"454 Washington St, Boston, MA 02215" +219995,Apple Airpods Headphones,1,150,06/26/19 03:52,"440 10th St, San Francisco, CA 94016" +219996,27in 4K Gaming Monitor,1,389.99,06/29/19 12:17,"996 South St, San Francisco, CA 94016" +219997,USB-C Charging Cable,1,11.95,06/22/19 13:04,"181 14th St, Boston, MA 02215" +219998,Wired Headphones,1,11.99,06/04/19 08:21,"975 1st St, San Francisco, CA 94016" +219998,USB-C Charging Cable,1,11.95,06/04/19 08:21,"975 1st St, San Francisco, CA 94016" +219999,27in FHD Monitor,1,149.99,06/21/19 09:13,"381 Wilson St, Boston, MA 02215" +220000,27in 4K Gaming Monitor,1,389.99,06/12/19 12:25,"752 Lincoln St, San Francisco, CA 94016" +220001,20in Monitor,1,109.99,06/29/19 19:04,"909 Lakeview St, Portland, ME 04101" +220002,Wired Headphones,1,11.99,06/29/19 18:27,"523 4th St, Atlanta, GA 30301" +220003,AAA Batteries (4-pack),1,2.99,06/04/19 22:51,"411 Maple St, Los Angeles, CA 90001" +220004,Apple Airpods Headphones,1,150,06/28/19 06:17,"312 West St, Austin, TX 73301" +220005,Wired Headphones,1,11.99,06/30/19 12:28,"461 West St, San Francisco, CA 94016" +220006,Bose SoundSport Headphones,1,99.99,06/04/19 19:01,"763 Wilson St, Boston, MA 02215" +220007,Bose SoundSport Headphones,1,99.99,06/07/19 08:09,"486 Lake St, San Francisco, CA 94016" +220008,AA Batteries (4-pack),1,3.84,06/23/19 08:55,"593 Jackson St, New York City, NY 10001" +220009,USB-C Charging Cable,1,11.95,06/09/19 21:06,"999 Cedar St, Boston, MA 02215" +220010,USB-C Charging Cable,1,11.95,06/22/19 01:48,"100 Lake St, Seattle, WA 98101" +220011,Wired Headphones,1,11.99,06/04/19 21:24,"369 West St, Boston, MA 02215" +220012,AAA Batteries (4-pack),2,2.99,06/25/19 08:54,"214 Sunset St, Austin, TX 73301" +220013,34in Ultrawide Monitor,1,379.99,06/22/19 15:42,"321 1st St, Los Angeles, CA 90001" +220014,34in Ultrawide Monitor,1,379.99,06/06/19 00:49,"454 4th St, Atlanta, GA 30301" +220015,ThinkPad Laptop,1,999.99,06/20/19 13:52,"388 Lake St, San Francisco, CA 94016" +220016,Macbook Pro Laptop,1,1700,06/20/19 15:37,"675 1st St, Los Angeles, CA 90001" +220016,AAA Batteries (4-pack),1,2.99,06/20/19 15:37,"675 1st St, Los Angeles, CA 90001" +220017,Bose SoundSport Headphones,1,99.99,06/26/19 02:29,"73 Center St, New York City, NY 10001" +220018,AA Batteries (4-pack),1,3.84,06/11/19 23:56,"803 Madison St, Los Angeles, CA 90001" +220019,USB-C Charging Cable,1,11.95,06/06/19 15:41,"632 Washington St, Portland, OR 97035" +220020,AAA Batteries (4-pack),6,2.99,06/14/19 11:54,"244 West St, Austin, TX 73301" +220021,Apple Airpods Headphones,1,150,06/11/19 05:04,"188 Chestnut St, Boston, MA 02215" +220022,AAA Batteries (4-pack),1,2.99,06/25/19 06:53,"699 Ridge St, New York City, NY 10001" +220023,iPhone,1,700,06/23/19 10:15,"334 Sunset St, New York City, NY 10001" +220023,Lightning Charging Cable,1,14.95,06/23/19 10:15,"334 Sunset St, New York City, NY 10001" +220023,Wired Headphones,1,11.99,06/23/19 10:15,"334 Sunset St, New York City, NY 10001" +220024,Google Phone,1,600,06/20/19 16:24,"37 Main St, San Francisco, CA 94016" +220024,USB-C Charging Cable,1,11.95,06/20/19 16:24,"37 Main St, San Francisco, CA 94016" +220025,34in Ultrawide Monitor,1,379.99,06/22/19 18:16,"926 Cedar St, Portland, OR 97035" +220026,Vareebadd Phone,1,400,06/04/19 13:32,"834 River St, San Francisco, CA 94016" +220027,Lightning Charging Cable,1,14.95,06/12/19 17:51,"908 1st St, Seattle, WA 98101" +220028,Google Phone,1,600,06/17/19 16:00,"35 Cherry St, New York City, NY 10001" +220029,20in Monitor,1,109.99,06/26/19 12:23,"981 Center St, San Francisco, CA 94016" +220030,USB-C Charging Cable,1,11.95,06/07/19 18:38,"579 Main St, Los Angeles, CA 90001" +220031,Apple Airpods Headphones,1,150,06/16/19 10:42,"952 Meadow St, Los Angeles, CA 90001" +220032,Apple Airpods Headphones,1,150,06/25/19 22:08,"471 Pine St, Portland, ME 04101" +220033,AAA Batteries (4-pack),1,2.99,06/25/19 19:21,"166 Highland St, Austin, TX 73301" +220034,Apple Airpods Headphones,1,150,06/26/19 15:53,"372 Wilson St, San Francisco, CA 94016" +220035,Flatscreen TV,1,300,06/12/19 19:33,"843 Walnut St, Seattle, WA 98101" +220036,Lightning Charging Cable,1,14.95,06/29/19 12:26,"420 6th St, Los Angeles, CA 90001" +220037,27in FHD Monitor,1,149.99,06/02/19 20:56,"411 Hickory St, Austin, TX 73301" +220038,AAA Batteries (4-pack),3,2.99,06/03/19 14:22,"313 Maple St, Boston, MA 02215" +220039,Bose SoundSport Headphones,1,99.99,06/21/19 00:06,"212 14th St, Los Angeles, CA 90001" +220040,34in Ultrawide Monitor,1,379.99,06/28/19 20:44,"308 Lakeview St, San Francisco, CA 94016" +220041,Wired Headphones,1,11.99,06/11/19 18:22,"952 Sunset St, Los Angeles, CA 90001" +220042,AAA Batteries (4-pack),2,2.99,06/18/19 22:16,"261 Dogwood St, Austin, TX 73301" +220043,Lightning Charging Cable,1,14.95,06/03/19 14:59,"860 Adams St, Austin, TX 73301" +220044,34in Ultrawide Monitor,1,379.99,06/16/19 12:57,"726 Park St, Portland, ME 04101" +220045,Wired Headphones,1,11.99,06/07/19 22:27,"884 Sunset St, Los Angeles, CA 90001" +220046,Lightning Charging Cable,1,14.95,06/18/19 21:02,"895 South St, San Francisco, CA 94016" +220047,Apple Airpods Headphones,1,150,06/12/19 20:07,"528 Jackson St, Austin, TX 73301" +220048,Apple Airpods Headphones,1,150,06/11/19 14:19,"26 Forest St, New York City, NY 10001" +220049,AA Batteries (4-pack),1,3.84,06/22/19 18:37,"405 Lakeview St, Seattle, WA 98101" +220050,Wired Headphones,1,11.99,06/15/19 22:20,"824 Lincoln St, Portland, OR 97035" +220051,Wired Headphones,1,11.99,06/08/19 09:30,"677 Forest St, Atlanta, GA 30301" +220052,ThinkPad Laptop,1,999.99,06/13/19 11:47,"832 Willow St, Boston, MA 02215" +220053,USB-C Charging Cable,1,11.95,06/10/19 22:44,"266 Wilson St, New York City, NY 10001" +220054,AA Batteries (4-pack),1,3.84,06/23/19 22:36,"263 Main St, Boston, MA 02215" +220055,AAA Batteries (4-pack),1,2.99,06/30/19 11:14,"739 Lincoln St, San Francisco, CA 94016" +220056,AAA Batteries (4-pack),1,2.99,06/20/19 17:35,"145 2nd St, Austin, TX 73301" +220057,USB-C Charging Cable,1,11.95,06/01/19 11:27,"969 Meadow St, New York City, NY 10001" +220058,AA Batteries (4-pack),1,3.84,06/02/19 15:39,"183 Hickory St, Los Angeles, CA 90001" +220059,ThinkPad Laptop,1,999.99,06/20/19 17:29,"82 Lincoln St, Los Angeles, CA 90001" +220060,Wired Headphones,2,11.99,06/13/19 22:31,"16 4th St, Atlanta, GA 30301" +220061,27in 4K Gaming Monitor,1,389.99,06/27/19 11:00,"344 5th St, New York City, NY 10001" +220062,USB-C Charging Cable,1,11.95,06/23/19 10:17,"835 Ridge St, New York City, NY 10001" +220063,Lightning Charging Cable,1,14.95,06/12/19 21:07,"726 Highland St, Seattle, WA 98101" +220064,Apple Airpods Headphones,1,150,06/26/19 16:32,"666 5th St, Boston, MA 02215" +220065,Google Phone,1,600,06/20/19 20:19,"835 Madison St, San Francisco, CA 94016" +220066,AAA Batteries (4-pack),1,2.99,06/08/19 20:02,"912 Main St, Dallas, TX 75001" +220067,USB-C Charging Cable,1,11.95,06/27/19 08:43,"989 10th St, Austin, TX 73301" +220068,AA Batteries (4-pack),1,3.84,06/30/19 12:58,"958 Lakeview St, Austin, TX 73301" +220069,ThinkPad Laptop,1,999.99,06/24/19 18:32,"588 14th St, San Francisco, CA 94016" +220070,34in Ultrawide Monitor,1,379.99,06/09/19 17:30,"950 Johnson St, Los Angeles, CA 90001" +220071,Bose SoundSport Headphones,1,99.99,06/09/19 11:26,"341 Highland St, Los Angeles, CA 90001" +220072,Bose SoundSport Headphones,1,99.99,06/25/19 19:41,"440 Jackson St, Boston, MA 02215" +220073,USB-C Charging Cable,1,11.95,06/22/19 16:43,"922 13th St, New York City, NY 10001" +220074,34in Ultrawide Monitor,1,379.99,06/04/19 07:50,"147 Main St, Seattle, WA 98101" +220075,Vareebadd Phone,1,400,06/03/19 13:48,"795 9th St, San Francisco, CA 94016" +220075,Bose SoundSport Headphones,1,99.99,06/03/19 13:48,"795 9th St, San Francisco, CA 94016" +220076,AA Batteries (4-pack),1,3.84,06/11/19 20:24,"939 9th St, San Francisco, CA 94016" +220077,Lightning Charging Cable,1,14.95,06/21/19 16:42,"239 Maple St, San Francisco, CA 94016" +220078,Vareebadd Phone,1,400,06/08/19 21:41,"619 Chestnut St, Boston, MA 02215" +220078,Wired Headphones,1,11.99,06/08/19 21:41,"619 Chestnut St, Boston, MA 02215" +220079,Apple Airpods Headphones,1,150,06/08/19 16:20,"850 Meadow St, San Francisco, CA 94016" +220080,Wired Headphones,1,11.99,06/05/19 13:00,"482 12th St, Boston, MA 02215" +220081,iPhone,1,700,06/26/19 22:36,"724 Hickory St, New York City, NY 10001" +220082,Google Phone,1,600,06/25/19 15:46,"546 Lake St, New York City, NY 10001" +220082,USB-C Charging Cable,1,11.95,06/25/19 15:46,"546 Lake St, New York City, NY 10001" +220083,27in FHD Monitor,1,149.99,06/07/19 19:26,"751 12th St, New York City, NY 10001" +220083,Bose SoundSport Headphones,1,99.99,06/07/19 19:26,"751 12th St, New York City, NY 10001" +220084,ThinkPad Laptop,1,999.99,06/14/19 18:58,"519 Cherry St, New York City, NY 10001" +220085,AAA Batteries (4-pack),1,2.99,06/19/19 15:05,"820 Sunset St, Austin, TX 73301" +220086,AA Batteries (4-pack),1,3.84,06/09/19 22:26,"925 Center St, Los Angeles, CA 90001" +220087,Wired Headphones,1,11.99,06/24/19 15:12,"708 10th St, San Francisco, CA 94016" +220088,Wired Headphones,1,11.99,06/04/19 19:48,"276 Meadow St, New York City, NY 10001" +220089,ThinkPad Laptop,1,999.99,06/19/19 07:26,"158 Ridge St, New York City, NY 10001" +220090,AAA Batteries (4-pack),1,2.99,06/22/19 14:05,"566 7th St, New York City, NY 10001" +220091,27in FHD Monitor,1,149.99,06/25/19 18:26,"555 Park St, Los Angeles, CA 90001" +220092,AA Batteries (4-pack),1,3.84,06/01/19 15:18,"251 12th St, Dallas, TX 75001" +220093,34in Ultrawide Monitor,1,379.99,06/02/19 10:29,"563 Maple St, Boston, MA 02215" +220094,Lightning Charging Cable,1,14.95,06/07/19 17:44,"572 12th St, New York City, NY 10001" +220095,USB-C Charging Cable,1,11.95,06/11/19 16:42,"193 2nd St, New York City, NY 10001" +220096,34in Ultrawide Monitor,1,379.99,06/16/19 14:57,"302 8th St, San Francisco, CA 94016" +220097,AAA Batteries (4-pack),2,2.99,06/06/19 08:04,"996 6th St, Portland, OR 97035" +220098,Flatscreen TV,1,300,06/19/19 14:38,"243 Chestnut St, Los Angeles, CA 90001" +220099,USB-C Charging Cable,1,11.95,06/05/19 11:47,"248 Hickory St, Boston, MA 02215" +220100,Bose SoundSport Headphones,1,99.99,06/09/19 10:26,"857 11th St, Boston, MA 02215" +220101,AA Batteries (4-pack),1,3.84,06/15/19 21:43,"23 Main St, Portland, OR 97035" +220102,Apple Airpods Headphones,1,150,06/29/19 16:55,"361 River St, Los Angeles, CA 90001" +220103,USB-C Charging Cable,1,11.95,06/12/19 17:17,"308 Hill St, Seattle, WA 98101" +220104,Bose SoundSport Headphones,1,99.99,06/01/19 19:44,"130 Park St, Los Angeles, CA 90001" +220105,20in Monitor,1,109.99,06/21/19 07:01,"526 Park St, Atlanta, GA 30301" +220106,Vareebadd Phone,1,400,06/19/19 04:01,"85 1st St, Atlanta, GA 30301" +220107,Lightning Charging Cable,1,14.95,06/10/19 12:58,"903 Walnut St, Dallas, TX 75001" +220108,Wired Headphones,1,11.99,06/27/19 08:29,"842 10th St, Portland, OR 97035" +220109,USB-C Charging Cable,1,11.95,06/23/19 11:53,"888 13th St, Los Angeles, CA 90001" +220110,Bose SoundSport Headphones,1,99.99,06/18/19 19:08,"355 North St, Seattle, WA 98101" +220111,Lightning Charging Cable,2,14.95,06/03/19 19:32,"283 Hill St, New York City, NY 10001" +220112,Wired Headphones,1,11.99,06/26/19 15:28,"389 Willow St, Boston, MA 02215" +220113,Vareebadd Phone,1,400,06/01/19 14:59,"133 Meadow St, San Francisco, CA 94016" +220114,Bose SoundSport Headphones,1,99.99,06/11/19 19:58,"362 Meadow St, Seattle, WA 98101" +220115,Apple Airpods Headphones,1,150,06/01/19 13:22,"275 Spruce St, New York City, NY 10001" +220116,Lightning Charging Cable,1,14.95,06/02/19 00:02,"872 Park St, San Francisco, CA 94016" +220117,AAA Batteries (4-pack),4,2.99,06/11/19 11:11,"354 Willow St, Los Angeles, CA 90001" +220118,AAA Batteries (4-pack),1,2.99,06/17/19 10:03,"981 Hill St, Seattle, WA 98101" +220119,USB-C Charging Cable,1,11.95,06/28/19 07:02,"889 1st St, Portland, OR 97035" +220120,AAA Batteries (4-pack),1,2.99,06/19/19 18:06,"616 Forest St, San Francisco, CA 94016" +220121,AAA Batteries (4-pack),1,2.99,06/23/19 20:52,"997 Lakeview St, New York City, NY 10001" +220122,Bose SoundSport Headphones,1,99.99,06/05/19 13:13,"621 Washington St, San Francisco, CA 94016" +220123,34in Ultrawide Monitor,1,379.99,06/02/19 12:30,"511 12th St, Seattle, WA 98101" +220124,AA Batteries (4-pack),1,3.84,06/26/19 09:47,"585 Spruce St, Los Angeles, CA 90001" +220125,AAA Batteries (4-pack),2,2.99,06/19/19 09:18,"419 Wilson St, New York City, NY 10001" +220126,AA Batteries (4-pack),3,3.84,06/29/19 17:25,"895 Spruce St, San Francisco, CA 94016" +220127,Apple Airpods Headphones,1,150,06/15/19 19:46,"984 Meadow St, San Francisco, CA 94016" +220128,Lightning Charging Cable,1,14.95,06/27/19 23:04,"449 Pine St, Seattle, WA 98101" +220129,Wired Headphones,1,11.99,06/09/19 19:12,"961 Jackson St, San Francisco, CA 94016" +220130,27in FHD Monitor,1,149.99,06/28/19 21:55,"216 Dogwood St, New York City, NY 10001" +220131,Wired Headphones,1,11.99,06/12/19 08:29,"928 Meadow St, Los Angeles, CA 90001" +220132,Wired Headphones,1,11.99,06/12/19 10:15,"785 13th St, San Francisco, CA 94016" +220133,Wired Headphones,1,11.99,06/28/19 15:23,"569 Church St, San Francisco, CA 94016" +220134,Apple Airpods Headphones,2,150,06/06/19 12:44,"249 Church St, San Francisco, CA 94016" +220135,AAA Batteries (4-pack),1,2.99,06/18/19 15:40,"835 Lake St, Seattle, WA 98101" +220136,Lightning Charging Cable,1,14.95,06/07/19 18:56,"504 Hill St, San Francisco, CA 94016" +220137,USB-C Charging Cable,1,11.95,06/29/19 20:24,"566 14th St, San Francisco, CA 94016" +220138,AAA Batteries (4-pack),1,2.99,06/15/19 08:46,"179 Ridge St, New York City, NY 10001" +220139,Lightning Charging Cable,1,14.95,06/17/19 21:37,"543 Dogwood St, San Francisco, CA 94016" +220140,AA Batteries (4-pack),1,3.84,06/10/19 15:48,"615 Center St, Boston, MA 02215" +220141,USB-C Charging Cable,1,11.95,06/19/19 20:18,"837 Ridge St, San Francisco, CA 94016" +220142,Wired Headphones,1,11.99,06/20/19 18:37,"970 River St, New York City, NY 10001" +220143,LG Dryer,1,600.0,06/06/19 20:38,"884 South St, San Francisco, CA 94016" +220144,27in FHD Monitor,1,149.99,06/25/19 01:55,"769 Center St, Dallas, TX 75001" +220145,AAA Batteries (4-pack),1,2.99,06/08/19 20:24,"668 Cherry St, New York City, NY 10001" +220146,Lightning Charging Cable,1,14.95,06/28/19 08:41,"900 12th St, Seattle, WA 98101" +220147,Vareebadd Phone,1,400,06/24/19 22:12,"385 West St, Boston, MA 02215" +220148,AAA Batteries (4-pack),2,2.99,06/23/19 15:14,"166 Hickory St, Portland, OR 97035" +220149,Bose SoundSport Headphones,1,99.99,06/12/19 14:01,"950 West St, Los Angeles, CA 90001" +220150,Apple Airpods Headphones,1,150,06/06/19 15:11,"177 Main St, Austin, TX 73301" +220151,Google Phone,1,600,06/28/19 15:57,"232 West St, San Francisco, CA 94016" +220152,USB-C Charging Cable,1,11.95,06/03/19 19:13,"795 9th St, Dallas, TX 75001" +220153,AAA Batteries (4-pack),2,2.99,06/18/19 16:42,"476 Jackson St, Dallas, TX 75001" +220154,AA Batteries (4-pack),1,3.84,06/03/19 18:30,"107 6th St, San Francisco, CA 94016" +220155,ThinkPad Laptop,1,999.99,06/18/19 13:29,"386 Johnson St, New York City, NY 10001" +220155,27in 4K Gaming Monitor,1,389.99,06/18/19 13:29,"386 Johnson St, New York City, NY 10001" +220156,20in Monitor,1,109.99,06/29/19 13:04,"897 Church St, Boston, MA 02215" +220157,27in 4K Gaming Monitor,1,389.99,06/27/19 10:43,"661 Maple St, Portland, OR 97035" +220158,AAA Batteries (4-pack),1,2.99,06/24/19 20:03,"540 Johnson St, Atlanta, GA 30301" +220159,AAA Batteries (4-pack),1,2.99,06/02/19 02:36,"134 Hill St, New York City, NY 10001" +220160,Lightning Charging Cable,1,14.95,06/08/19 11:57,"907 4th St, Atlanta, GA 30301" +220160,20in Monitor,1,109.99,06/08/19 11:57,"907 4th St, Atlanta, GA 30301" +220161,LG Dryer,1,600.0,06/29/19 00:53,"894 2nd St, New York City, NY 10001" +220162,Lightning Charging Cable,1,14.95,06/05/19 08:03,"384 Center St, Portland, OR 97035" +220163,34in Ultrawide Monitor,1,379.99,06/17/19 22:04,"662 7th St, Boston, MA 02215" +220164,AA Batteries (4-pack),1,3.84,06/28/19 10:36,"169 Johnson St, Portland, OR 97035" +220165,AAA Batteries (4-pack),1,2.99,06/02/19 22:33,"931 Cedar St, Boston, MA 02215" +220166,Apple Airpods Headphones,1,150,06/29/19 19:26,"513 Ridge St, Portland, OR 97035" +220167,AA Batteries (4-pack),2,3.84,06/22/19 20:02,"786 Maple St, Los Angeles, CA 90001" +220168,USB-C Charging Cable,1,11.95,06/29/19 11:13,"737 Maple St, Los Angeles, CA 90001" +220169,20in Monitor,1,109.99,06/05/19 18:00,"787 Ridge St, New York City, NY 10001" +220170,27in FHD Monitor,1,149.99,06/19/19 12:05,"841 Hill St, Los Angeles, CA 90001" +220171,Lightning Charging Cable,1,14.95,06/14/19 15:08,"82 4th St, Dallas, TX 75001" +220172,iPhone,1,700,06/22/19 05:31,"265 Hickory St, New York City, NY 10001" +220173,AA Batteries (4-pack),1,3.84,06/19/19 12:17,"671 Dogwood St, Seattle, WA 98101" +220174,AA Batteries (4-pack),1,3.84,06/06/19 01:36,"871 Highland St, Seattle, WA 98101" +220175,AA Batteries (4-pack),1,3.84,06/05/19 17:31,"891 Willow St, New York City, NY 10001" +220176,Apple Airpods Headphones,1,150,06/03/19 12:54,"351 Madison St, Los Angeles, CA 90001" +220177,Apple Airpods Headphones,1,150,06/17/19 20:25,"315 Main St, Los Angeles, CA 90001" +220178,AA Batteries (4-pack),1,3.84,06/13/19 18:05,"956 Forest St, Los Angeles, CA 90001" +220179,Macbook Pro Laptop,1,1700,06/20/19 13:36,"647 Center St, Boston, MA 02215" +220180,USB-C Charging Cable,1,11.95,06/18/19 12:57,"460 5th St, San Francisco, CA 94016" +220181,27in FHD Monitor,1,149.99,06/18/19 03:05,"414 Cherry St, Seattle, WA 98101" +220182,AA Batteries (4-pack),3,3.84,06/24/19 11:00,"257 6th St, San Francisco, CA 94016" +220183,AA Batteries (4-pack),1,3.84,06/08/19 09:06,"740 7th St, San Francisco, CA 94016" +220184,AAA Batteries (4-pack),1,2.99,06/04/19 23:27,"725 8th St, San Francisco, CA 94016" +220185,iPhone,1,700,06/06/19 17:00,"491 4th St, Seattle, WA 98101" +220186,Wired Headphones,1,11.99,06/18/19 11:06,"898 West St, San Francisco, CA 94016" +220187,Wired Headphones,1,11.99,06/15/19 16:09,"798 12th St, New York City, NY 10001" +220188,AAA Batteries (4-pack),1,2.99,06/08/19 15:50,"229 1st St, Portland, OR 97035" +220189,USB-C Charging Cable,1,11.95,06/06/19 12:31,"12 7th St, Atlanta, GA 30301" +220190,Wired Headphones,1,11.99,06/06/19 21:10,"173 Lakeview St, New York City, NY 10001" +220191,Bose SoundSport Headphones,1,99.99,06/22/19 17:17,"439 Washington St, Seattle, WA 98101" +220192,34in Ultrawide Monitor,1,379.99,06/10/19 17:06,"947 Maple St, New York City, NY 10001" +220193,Apple Airpods Headphones,1,150,06/10/19 16:57,"600 Cedar St, New York City, NY 10001" +220194,AA Batteries (4-pack),2,3.84,06/03/19 14:19,"152 Jefferson St, Los Angeles, CA 90001" +220195,AAA Batteries (4-pack),4,2.99,06/03/19 20:31,"264 5th St, Atlanta, GA 30301" +220196,AAA Batteries (4-pack),1,2.99,06/27/19 16:00,"457 10th St, San Francisco, CA 94016" +220197,Apple Airpods Headphones,1,150,06/01/19 10:56,"103 Madison St, San Francisco, CA 94016" +220198,USB-C Charging Cable,1,11.95,06/17/19 12:06,"556 Forest St, Atlanta, GA 30301" +220199,AAA Batteries (4-pack),2,2.99,07/01/19 00:32,"787 Forest St, San Francisco, CA 94016" +220200,USB-C Charging Cable,1,11.95,06/28/19 00:07,"913 Lakeview St, New York City, NY 10001" +220201,USB-C Charging Cable,1,11.95,06/21/19 12:10,"436 Ridge St, Los Angeles, CA 90001" +220202,USB-C Charging Cable,1,11.95,06/14/19 10:44,"759 Lakeview St, Los Angeles, CA 90001" +220203,iPhone,1,700,06/27/19 23:49,"589 Lincoln St, New York City, NY 10001" +220203,Lightning Charging Cable,1,14.95,06/27/19 23:49,"589 Lincoln St, New York City, NY 10001" +220204,AA Batteries (4-pack),3,3.84,06/10/19 13:31,"759 Hickory St, Portland, OR 97035" +220205,Lightning Charging Cable,1,14.95,06/03/19 19:02,"972 West St, New York City, NY 10001" +220206,USB-C Charging Cable,1,11.95,06/07/19 21:03,"43 10th St, Los Angeles, CA 90001" +220206,Flatscreen TV,1,300,06/07/19 21:03,"43 10th St, Los Angeles, CA 90001" +220207,USB-C Charging Cable,1,11.95,06/13/19 19:15,"766 13th St, Portland, OR 97035" +220208,Apple Airpods Headphones,1,150,06/04/19 11:33,"926 Main St, Los Angeles, CA 90001" +220209,ThinkPad Laptop,1,999.99,06/22/19 13:04,"419 Center St, Los Angeles, CA 90001" +220210,Lightning Charging Cable,1,14.95,06/06/19 12:25,"796 River St, New York City, NY 10001" +220211,Google Phone,1,600,06/15/19 22:38,"590 North St, Los Angeles, CA 90001" +220212,27in FHD Monitor,1,149.99,06/19/19 02:12,"638 4th St, Boston, MA 02215" +220213,AA Batteries (4-pack),1,3.84,06/12/19 22:08,"857 Jefferson St, Seattle, WA 98101" +220214,Lightning Charging Cable,1,14.95,06/16/19 20:26,"590 Center St, Los Angeles, CA 90001" +220215,27in FHD Monitor,1,149.99,06/02/19 17:39,"833 7th St, Dallas, TX 75001" +220216,AA Batteries (4-pack),1,3.84,06/09/19 19:07,"159 Forest St, Atlanta, GA 30301" +220217,AAA Batteries (4-pack),1,2.99,06/07/19 20:51,"974 2nd St, Seattle, WA 98101" +220218,USB-C Charging Cable,2,11.95,06/29/19 20:06,"293 Chestnut St, Boston, MA 02215" +220219,Macbook Pro Laptop,1,1700,06/24/19 16:38,"852 Lake St, Los Angeles, CA 90001" +220220,27in FHD Monitor,1,149.99,06/25/19 09:58,"40 12th St, New York City, NY 10001" +220221,Lightning Charging Cable,1,14.95,06/17/19 17:34,"767 Church St, Boston, MA 02215" +220222,Apple Airpods Headphones,1,150,06/18/19 14:05,"22 6th St, San Francisco, CA 94016" +220223,Lightning Charging Cable,1,14.95,06/26/19 22:34,"520 Chestnut St, San Francisco, CA 94016" +220224,Lightning Charging Cable,1,14.95,06/01/19 11:45,"357 Maple St, Los Angeles, CA 90001" +220225,Lightning Charging Cable,1,14.95,06/09/19 17:50,"838 Lincoln St, San Francisco, CA 94016" +220226,AAA Batteries (4-pack),1,2.99,06/15/19 04:09,"670 Adams St, San Francisco, CA 94016" +220227,AA Batteries (4-pack),1,3.84,06/06/19 08:48,"486 Church St, Seattle, WA 98101" +220228,27in FHD Monitor,1,149.99,06/26/19 19:58,"658 Main St, San Francisco, CA 94016" +220229,AA Batteries (4-pack),1,3.84,06/26/19 09:35,"568 Park St, Atlanta, GA 30301" +220230,AA Batteries (4-pack),3,3.84,06/23/19 08:52,"893 13th St, Dallas, TX 75001" +220231,AA Batteries (4-pack),3,3.84,06/24/19 16:03,"749 Willow St, Atlanta, GA 30301" +220232,AA Batteries (4-pack),1,3.84,06/15/19 19:02,"155 Dogwood St, San Francisco, CA 94016" +220233,AA Batteries (4-pack),1,3.84,06/25/19 12:22,"980 Johnson St, Los Angeles, CA 90001" +220234,Wired Headphones,1,11.99,06/29/19 15:56,"150 4th St, New York City, NY 10001" +220235,AA Batteries (4-pack),1,3.84,06/24/19 17:06,"840 Dogwood St, Dallas, TX 75001" +220236,Wired Headphones,1,11.99,06/11/19 00:03,"569 1st St, San Francisco, CA 94016" +220236,AAA Batteries (4-pack),1,2.99,06/11/19 00:03,"569 1st St, San Francisco, CA 94016" +220237,AAA Batteries (4-pack),2,2.99,06/24/19 15:10,"684 Forest St, Portland, OR 97035" +220238,Bose SoundSport Headphones,1,99.99,06/16/19 14:39,"249 Dogwood St, Los Angeles, CA 90001" +220239,AAA Batteries (4-pack),2,2.99,06/23/19 08:50,"301 Johnson St, Austin, TX 73301" +220240,iPhone,1,700,06/14/19 15:53,"295 North St, Boston, MA 02215" +220241,USB-C Charging Cable,1,11.95,06/01/19 17:16,"715 4th St, New York City, NY 10001" +220242,AAA Batteries (4-pack),1,2.99,06/27/19 13:05,"646 Ridge St, San Francisco, CA 94016" +220243,AAA Batteries (4-pack),1,2.99,06/27/19 17:38,"558 Park St, Atlanta, GA 30301" +220244,34in Ultrawide Monitor,2,379.99,06/25/19 11:10,"768 7th St, Dallas, TX 75001" +220245,ThinkPad Laptop,1,999.99,06/11/19 21:02,"113 Jefferson St, Portland, OR 97035" +220246,ThinkPad Laptop,1,999.99,06/10/19 13:50,"156 Adams St, Dallas, TX 75001" +220247,USB-C Charging Cable,1,11.95,06/15/19 20:32,"964 Sunset St, Los Angeles, CA 90001" +220248,AA Batteries (4-pack),1,3.84,06/11/19 13:24,"481 Chestnut St, Boston, MA 02215" +220249,AA Batteries (4-pack),1,3.84,06/09/19 23:20,"819 Walnut St, Seattle, WA 98101" +220250,Lightning Charging Cable,1,14.95,06/26/19 10:14,"924 Sunset St, Seattle, WA 98101" +220251,Wired Headphones,1,11.99,06/03/19 10:04,"149 7th St, Los Angeles, CA 90001" +220252,27in FHD Monitor,1,149.99,06/29/19 07:18,"360 North St, Boston, MA 02215" +220253,AAA Batteries (4-pack),1,2.99,06/24/19 13:49,"756 2nd St, New York City, NY 10001" +220254,Apple Airpods Headphones,1,150,06/21/19 11:07,"253 7th St, San Francisco, CA 94016" +220255,AAA Batteries (4-pack),1,2.99,06/07/19 06:18,"302 10th St, Dallas, TX 75001" +220256,AA Batteries (4-pack),1,3.84,06/10/19 13:34,"658 Lincoln St, Seattle, WA 98101" +220257,Lightning Charging Cable,1,14.95,06/12/19 20:41,"557 10th St, San Francisco, CA 94016" +220258,AA Batteries (4-pack),1,3.84,06/13/19 09:28,"994 8th St, New York City, NY 10001" +220259,AAA Batteries (4-pack),1,2.99,06/26/19 00:41,"374 Hill St, Portland, OR 97035" +220260,AAA Batteries (4-pack),1,2.99,06/15/19 12:29,"917 Wilson St, Seattle, WA 98101" +220261,27in FHD Monitor,1,149.99,06/02/19 03:33,"372 13th St, Portland, OR 97035" +220262,iPhone,1,700,06/14/19 13:19,"171 Madison St, San Francisco, CA 94016" +220263,USB-C Charging Cable,1,11.95,06/09/19 08:17,"417 Jefferson St, Seattle, WA 98101" +220264,20in Monitor,1,109.99,06/22/19 19:01,"734 Church St, San Francisco, CA 94016" +220265,Wired Headphones,1,11.99,06/28/19 19:16,"7 Sunset St, New York City, NY 10001" +220266,27in 4K Gaming Monitor,1,389.99,06/12/19 12:59,"308 Meadow St, Boston, MA 02215" +220267,Wired Headphones,1,11.99,06/24/19 11:03,"722 Walnut St, Portland, OR 97035" +220268,27in FHD Monitor,1,149.99,06/28/19 12:58,"548 Spruce St, San Francisco, CA 94016" +220269,Macbook Pro Laptop,1,1700,06/04/19 22:01,"700 Hickory St, Atlanta, GA 30301" +220270,20in Monitor,1,109.99,06/21/19 19:48,"409 Lincoln St, New York City, NY 10001" +220271,Wired Headphones,1,11.99,06/29/19 21:25,"822 13th St, Boston, MA 02215" +220272,34in Ultrawide Monitor,1,379.99,06/03/19 19:29,"503 Wilson St, Boston, MA 02215" +220273,Apple Airpods Headphones,1,150,06/27/19 20:44,"387 Washington St, Austin, TX 73301" +220274,iPhone,1,700,06/10/19 16:52,"630 1st St, San Francisco, CA 94016" +220275,Flatscreen TV,1,300,06/22/19 16:30,"595 Walnut St, Austin, TX 73301" +220276,USB-C Charging Cable,1,11.95,06/05/19 12:59,"963 West St, Dallas, TX 75001" +220277,Vareebadd Phone,1,400,06/16/19 19:51,"778 Highland St, Dallas, TX 75001" +220277,USB-C Charging Cable,1,11.95,06/16/19 19:51,"778 Highland St, Dallas, TX 75001" +220277,Bose SoundSport Headphones,1,99.99,06/16/19 19:51,"778 Highland St, Dallas, TX 75001" +220278,Apple Airpods Headphones,1,150,06/29/19 18:02,"807 Jefferson St, New York City, NY 10001" +220279,Wired Headphones,1,11.99,06/03/19 20:15,"59 Hill St, New York City, NY 10001" +220279,Apple Airpods Headphones,1,150,06/03/19 20:15,"59 Hill St, New York City, NY 10001" +220280,AAA Batteries (4-pack),1,2.99,06/11/19 09:25,"498 13th St, Atlanta, GA 30301" +220281,USB-C Charging Cable,1,11.95,06/03/19 18:32,"69 Main St, Boston, MA 02215" +220282,USB-C Charging Cable,1,11.95,06/04/19 18:48,"241 Dogwood St, Seattle, WA 98101" +220283,34in Ultrawide Monitor,1,379.99,06/08/19 20:42,"806 6th St, Seattle, WA 98101" +220284,Apple Airpods Headphones,1,150,06/28/19 20:18,"257 Johnson St, Boston, MA 02215" +220285,Bose SoundSport Headphones,1,99.99,06/06/19 16:31,"455 Cherry St, Seattle, WA 98101" +220286,Google Phone,1,600,06/22/19 13:04,"664 Meadow St, San Francisco, CA 94016" +220287,AAA Batteries (4-pack),1,2.99,06/27/19 20:23,"588 Johnson St, Seattle, WA 98101" +220288,USB-C Charging Cable,2,11.95,06/15/19 23:25,"443 8th St, Atlanta, GA 30301" +220289,Google Phone,1,600,06/09/19 13:11,"759 Chestnut St, Boston, MA 02215" +220290,Lightning Charging Cable,1,14.95,06/25/19 22:08,"177 Ridge St, Boston, MA 02215" +220291,Wired Headphones,1,11.99,06/02/19 18:27,"983 Willow St, New York City, NY 10001" +220292,USB-C Charging Cable,1,11.95,06/28/19 00:25,"123 River St, San Francisco, CA 94016" +220293,Wired Headphones,1,11.99,06/21/19 16:38,"479 4th St, Portland, OR 97035" +220294,Apple Airpods Headphones,1,150,06/03/19 07:43,"214 11th St, Los Angeles, CA 90001" +220295,AA Batteries (4-pack),1,3.84,06/08/19 09:32,"967 Pine St, Portland, OR 97035" +220296,Wired Headphones,1,11.99,06/06/19 14:00,"620 12th St, Seattle, WA 98101" +220297,27in 4K Gaming Monitor,1,389.99,06/05/19 17:18,"690 Lakeview St, San Francisco, CA 94016" +220298,AA Batteries (4-pack),1,3.84,06/13/19 17:20,"666 5th St, Portland, OR 97035" +220299,Apple Airpods Headphones,1,150,06/29/19 10:16,"448 Highland St, Atlanta, GA 30301" +220300,AA Batteries (4-pack),1,3.84,06/25/19 11:05,"384 Wilson St, Los Angeles, CA 90001" +220301,Bose SoundSport Headphones,1,99.99,06/01/19 07:51,"20 Walnut St, Dallas, TX 75001" +220302,Lightning Charging Cable,1,14.95,06/16/19 22:50,"67 Lake St, Los Angeles, CA 90001" +220303,Apple Airpods Headphones,1,150,06/27/19 06:23,"979 10th St, Los Angeles, CA 90001" +220304,AA Batteries (4-pack),1,3.84,06/14/19 18:58,"618 Lincoln St, San Francisco, CA 94016" +220305,iPhone,1,700,06/21/19 20:46,"512 West St, San Francisco, CA 94016" +220306,Lightning Charging Cable,1,14.95,06/23/19 06:29,"162 8th St, Los Angeles, CA 90001" +220307,AAA Batteries (4-pack),1,2.99,06/24/19 23:49,"516 10th St, San Francisco, CA 94016" +220308,LG Dryer,1,600.0,06/24/19 18:58,"327 10th St, Austin, TX 73301" +220309,AAA Batteries (4-pack),3,2.99,06/05/19 10:53,"574 Cherry St, New York City, NY 10001" +220310,Lightning Charging Cable,1,14.95,06/11/19 12:37,"768 Walnut St, San Francisco, CA 94016" +220311,Macbook Pro Laptop,1,1700,06/20/19 20:35,"950 9th St, San Francisco, CA 94016" +220312,AA Batteries (4-pack),1,3.84,06/26/19 00:47,"288 Chestnut St, San Francisco, CA 94016" +220313,Apple Airpods Headphones,1,150,06/13/19 13:33,"51 5th St, Austin, TX 73301" +220314,27in 4K Gaming Monitor,1,389.99,06/03/19 12:03,"566 4th St, New York City, NY 10001" +220315,AA Batteries (4-pack),1,3.84,06/13/19 20:57,"291 Dogwood St, Boston, MA 02215" +220316,AA Batteries (4-pack),1,3.84,06/27/19 19:56,"342 Madison St, San Francisco, CA 94016" +220317,Lightning Charging Cable,2,14.95,06/13/19 20:13,"175 Meadow St, San Francisco, CA 94016" +220318,Bose SoundSport Headphones,1,99.99,06/17/19 17:08,"432 Sunset St, Portland, ME 04101" +220319,USB-C Charging Cable,1,11.95,06/19/19 02:49,"938 Lincoln St, Boston, MA 02215" +220320,Wired Headphones,1,11.99,06/20/19 18:58,"977 10th St, Dallas, TX 75001" +220321,AAA Batteries (4-pack),2,2.99,06/25/19 22:00,"962 Church St, New York City, NY 10001" +220322,27in FHD Monitor,1,149.99,06/15/19 12:05,"421 Chestnut St, San Francisco, CA 94016" +220323,Bose SoundSport Headphones,1,99.99,06/01/19 10:17,"588 Ridge St, Los Angeles, CA 90001" +220324,AAA Batteries (4-pack),1,2.99,06/15/19 11:14,"361 West St, New York City, NY 10001" +220325,Wired Headphones,1,11.99,06/29/19 22:27,"263 Meadow St, Seattle, WA 98101" +220326,AA Batteries (4-pack),1,3.84,06/20/19 20:08,"923 Cherry St, Seattle, WA 98101" +220327,34in Ultrawide Monitor,1,379.99,06/17/19 13:46,"32 2nd St, Dallas, TX 75001" +220328,Lightning Charging Cable,1,14.95,06/03/19 02:43,"193 Walnut St, New York City, NY 10001" +220329,AA Batteries (4-pack),1,3.84,06/07/19 22:46,"962 9th St, Boston, MA 02215" +220330,ThinkPad Laptop,1,999.99,06/01/19 10:18,"670 Walnut St, New York City, NY 10001" +220331,Flatscreen TV,1,300,06/08/19 21:47,"95 Maple St, New York City, NY 10001" +220332,USB-C Charging Cable,1,11.95,06/12/19 19:33,"669 Center St, San Francisco, CA 94016" +220333,AAA Batteries (4-pack),1,2.99,06/25/19 15:13,"524 Walnut St, New York City, NY 10001" +220334,USB-C Charging Cable,1,11.95,06/26/19 18:07,"221 4th St, Atlanta, GA 30301" +220335,AAA Batteries (4-pack),1,2.99,06/10/19 22:32,"605 Adams St, Dallas, TX 75001" +220336,Wired Headphones,1,11.99,06/05/19 07:05,"93 Dogwood St, New York City, NY 10001" +220337,AAA Batteries (4-pack),2,2.99,06/15/19 16:15,"764 Johnson St, New York City, NY 10001" +220338,AA Batteries (4-pack),1,3.84,06/17/19 15:57,"963 West St, Boston, MA 02215" +220339,Macbook Pro Laptop,1,1700,06/02/19 09:10,"188 Highland St, San Francisco, CA 94016" +220340,iPhone,1,700,06/13/19 19:18,"708 7th St, Austin, TX 73301" +220341,AA Batteries (4-pack),1,3.84,06/06/19 08:56,"326 13th St, Portland, OR 97035" +220342,Lightning Charging Cable,2,14.95,06/08/19 12:35,"533 5th St, Atlanta, GA 30301" +220343,Bose SoundSport Headphones,1,99.99,06/25/19 20:00,"137 2nd St, Dallas, TX 75001" +220344,Flatscreen TV,1,300,06/16/19 06:35,"377 Spruce St, San Francisco, CA 94016" +220345,USB-C Charging Cable,1,11.95,06/24/19 15:44,"879 Lakeview St, Seattle, WA 98101" +220346,Apple Airpods Headphones,1,150,06/18/19 07:27,"451 6th St, San Francisco, CA 94016" +220347,Bose SoundSport Headphones,1,99.99,06/06/19 17:56,"573 Hickory St, New York City, NY 10001" +220348,34in Ultrawide Monitor,1,379.99,06/13/19 07:29,"174 Willow St, Portland, OR 97035" +220349,AAA Batteries (4-pack),1,2.99,06/24/19 11:39,"581 Park St, New York City, NY 10001" +220350,Apple Airpods Headphones,1,150,06/19/19 18:53,"146 Meadow St, Boston, MA 02215" +220351,Vareebadd Phone,1,400,06/12/19 00:30,"163 6th St, Seattle, WA 98101" +220352,Bose SoundSport Headphones,1,99.99,06/02/19 13:30,"493 Washington St, San Francisco, CA 94016" +220353,Macbook Pro Laptop,1,1700,06/04/19 12:27,"216 5th St, Los Angeles, CA 90001" +220354,iPhone,1,700,06/28/19 13:20,"572 River St, Seattle, WA 98101" +220355,Bose SoundSport Headphones,1,99.99,06/09/19 08:58,"54 Lakeview St, Dallas, TX 75001" +220356,Lightning Charging Cable,2,14.95,06/08/19 12:26,"181 11th St, Portland, ME 04101" +220357,Apple Airpods Headphones,1,150,06/25/19 15:48,"148 Pine St, Atlanta, GA 30301" +220358,AAA Batteries (4-pack),1,2.99,06/29/19 14:41,"88 Hickory St, San Francisco, CA 94016" +220359,USB-C Charging Cable,1,11.95,06/16/19 15:33,"211 Lakeview St, New York City, NY 10001" +220360,ThinkPad Laptop,1,999.99,06/14/19 09:25,"241 Sunset St, New York City, NY 10001" +220361,Wired Headphones,1,11.99,06/07/19 15:26,"282 13th St, Boston, MA 02215" +220362,USB-C Charging Cable,1,11.95,06/21/19 12:10,"234 Forest St, Seattle, WA 98101" +220363,Lightning Charging Cable,1,14.95,06/07/19 22:59,"858 Washington St, Seattle, WA 98101" +220364,Wired Headphones,1,11.99,06/14/19 16:51,"264 Hickory St, Boston, MA 02215" +220365,AAA Batteries (4-pack),1,2.99,06/12/19 14:00,"953 Cherry St, New York City, NY 10001" +220366,Flatscreen TV,1,300,06/25/19 16:41,"347 Adams St, Austin, TX 73301" +220367,Wired Headphones,1,11.99,06/07/19 09:24,"230 4th St, Atlanta, GA 30301" +220368,ThinkPad Laptop,1,999.99,06/05/19 13:14,"377 North St, San Francisco, CA 94016" +220369,AA Batteries (4-pack),1,3.84,06/17/19 14:23,"573 2nd St, San Francisco, CA 94016" +220370,Vareebadd Phone,1,400,06/18/19 00:07,"511 Maple St, Portland, OR 97035" +220370,USB-C Charging Cable,1,11.95,06/18/19 00:07,"511 Maple St, Portland, OR 97035" +220371,AAA Batteries (4-pack),3,2.99,06/12/19 13:53,"756 South St, Boston, MA 02215" +220372,AAA Batteries (4-pack),3,2.99,06/13/19 08:19,"371 Maple St, San Francisco, CA 94016" +220373,34in Ultrawide Monitor,1,379.99,06/24/19 04:43,"319 North St, San Francisco, CA 94016" +220374,34in Ultrawide Monitor,1,379.99,06/18/19 12:51,"1 Maple St, Los Angeles, CA 90001" +220375,AAA Batteries (4-pack),1,2.99,06/08/19 00:36,"570 Wilson St, New York City, NY 10001" +220376,Macbook Pro Laptop,1,1700,06/21/19 09:26,"829 River St, San Francisco, CA 94016" +220377,ThinkPad Laptop,1,999.99,06/24/19 12:58,"778 Lakeview St, Portland, OR 97035" +220378,27in 4K Gaming Monitor,1,389.99,06/28/19 17:10,"114 5th St, Dallas, TX 75001" +220379,Lightning Charging Cable,1,14.95,06/11/19 00:59,"830 Cherry St, San Francisco, CA 94016" +220380,Lightning Charging Cable,1,14.95,06/10/19 00:51,"315 2nd St, Atlanta, GA 30301" +220381,Google Phone,1,600,06/22/19 20:55,"687 Wilson St, Boston, MA 02215" +220382,Wired Headphones,1,11.99,06/30/19 10:33,"725 Sunset St, New York City, NY 10001" +220383,AA Batteries (4-pack),1,3.84,06/26/19 08:56,"395 Jackson St, Dallas, TX 75001" +220384,Bose SoundSport Headphones,1,99.99,06/21/19 18:45,"454 4th St, Seattle, WA 98101" +220385,Lightning Charging Cable,1,14.95,06/20/19 16:45,"965 6th St, Los Angeles, CA 90001" +220386,Bose SoundSport Headphones,1,99.99,06/07/19 21:07,"77 11th St, Austin, TX 73301" +220387,AAA Batteries (4-pack),1,2.99,06/29/19 12:07,"907 Elm St, New York City, NY 10001" +220388,Apple Airpods Headphones,1,150,06/01/19 21:09,"778 Lake St, Los Angeles, CA 90001" +220389,Apple Airpods Headphones,1,150,06/07/19 20:51,"613 Pine St, Los Angeles, CA 90001" +220390,USB-C Charging Cable,1,11.95,06/13/19 08:34,"930 Sunset St, Dallas, TX 75001" +220391,LG Dryer,1,600.0,06/25/19 20:46,"617 9th St, Seattle, WA 98101" +220392,Google Phone,1,600,06/09/19 11:53,"652 11th St, Portland, OR 97035" +220393,ThinkPad Laptop,1,999.99,06/08/19 21:56,"770 11th St, Boston, MA 02215" +220394,27in FHD Monitor,1,149.99,06/20/19 11:18,"332 13th St, Boston, MA 02215" +220395,ThinkPad Laptop,1,999.99,06/08/19 18:47,"128 4th St, Dallas, TX 75001" +220396,Google Phone,1,600,06/10/19 21:49,"433 Park St, Los Angeles, CA 90001" +220397,Apple Airpods Headphones,1,150,06/01/19 17:58,"919 7th St, Atlanta, GA 30301" +220398,AAA Batteries (4-pack),1,2.99,06/11/19 14:15,"187 Cedar St, Austin, TX 73301" +220399,Lightning Charging Cable,1,14.95,06/16/19 20:29,"333 4th St, Portland, OR 97035" +220400,27in FHD Monitor,1,149.99,06/17/19 13:30,"200 Cedar St, New York City, NY 10001" +220401,AA Batteries (4-pack),1,3.84,06/11/19 18:11,"764 4th St, Atlanta, GA 30301" +220402,Bose SoundSport Headphones,1,99.99,06/28/19 08:33,"893 Johnson St, Seattle, WA 98101" +220403,AA Batteries (4-pack),1,3.84,06/04/19 12:31,"839 11th St, San Francisco, CA 94016" +220404,AAA Batteries (4-pack),1,2.99,06/08/19 11:08,"211 2nd St, Boston, MA 02215" +220405,Flatscreen TV,1,300,06/16/19 12:28,"382 Willow St, San Francisco, CA 94016" +220406,27in 4K Gaming Monitor,1,389.99,06/30/19 20:26,"325 River St, Atlanta, GA 30301" +220407,27in FHD Monitor,1,149.99,06/13/19 22:45,"651 Madison St, New York City, NY 10001" +220408,27in 4K Gaming Monitor,1,389.99,06/28/19 07:27,"350 Willow St, Atlanta, GA 30301" +220409,AAA Batteries (4-pack),1,2.99,06/20/19 13:27,"451 South St, Boston, MA 02215" +220410,AAA Batteries (4-pack),1,2.99,06/28/19 12:53,"478 14th St, Dallas, TX 75001" +220411,AA Batteries (4-pack),1,3.84,06/18/19 18:07,"24 2nd St, Los Angeles, CA 90001" +220411,Apple Airpods Headphones,1,150,06/18/19 18:07,"24 2nd St, Los Angeles, CA 90001" +220412,Vareebadd Phone,2,400,06/13/19 09:21,"471 10th St, Boston, MA 02215" +220413,Bose SoundSport Headphones,1,99.99,06/09/19 20:24,"18 8th St, Atlanta, GA 30301" +220414,Wired Headphones,1,11.99,06/30/19 16:55,"834 Center St, San Francisco, CA 94016" +220415,Bose SoundSport Headphones,1,99.99,06/29/19 20:05,"445 Hickory St, New York City, NY 10001" +220416,iPhone,1,700,06/30/19 20:33,"873 12th St, Atlanta, GA 30301" +220416,Lightning Charging Cable,1,14.95,06/30/19 20:33,"873 12th St, Atlanta, GA 30301" +220417,Wired Headphones,2,11.99,06/25/19 15:20,"481 Lake St, San Francisco, CA 94016" +220418,34in Ultrawide Monitor,1,379.99,06/25/19 14:21,"797 6th St, San Francisco, CA 94016" +220419,Apple Airpods Headphones,1,150,06/11/19 15:00,"691 Johnson St, San Francisco, CA 94016" +220420,USB-C Charging Cable,1,11.95,06/09/19 21:04,"709 River St, San Francisco, CA 94016" +220421,Lightning Charging Cable,1,14.95,06/17/19 17:24,"335 10th St, New York City, NY 10001" +220422,34in Ultrawide Monitor,1,379.99,06/05/19 11:29,"668 9th St, Los Angeles, CA 90001" +220423,Google Phone,1,600,06/01/19 18:22,"11 5th St, San Francisco, CA 94016" +220423,USB-C Charging Cable,1,11.95,06/01/19 18:22,"11 5th St, San Francisco, CA 94016" +220424,Apple Airpods Headphones,1,150,06/21/19 18:32,"772 Willow St, Portland, OR 97035" +220425,Wired Headphones,1,11.99,06/08/19 23:03,"672 4th St, New York City, NY 10001" +220425,AA Batteries (4-pack),1,3.84,06/08/19 23:03,"672 4th St, New York City, NY 10001" +220426,AA Batteries (4-pack),3,3.84,06/10/19 18:05,"970 Center St, New York City, NY 10001" +220427,iPhone,1,700,06/06/19 12:51,"101 Willow St, Los Angeles, CA 90001" +220428,AAA Batteries (4-pack),1,2.99,06/01/19 11:05,"437 Lincoln St, Boston, MA 02215" +220429,Wired Headphones,1,11.99,06/20/19 18:12,"574 West St, Los Angeles, CA 90001" +220430,Lightning Charging Cable,1,14.95,06/15/19 19:47,"515 Lincoln St, New York City, NY 10001" +220431,iPhone,1,700,06/10/19 21:25,"931 Dogwood St, San Francisco, CA 94016" +220432,27in FHD Monitor,1,149.99,06/16/19 09:21,"656 Cedar St, Los Angeles, CA 90001" +220432,AA Batteries (4-pack),2,3.84,06/16/19 09:21,"656 Cedar St, Los Angeles, CA 90001" +220433,USB-C Charging Cable,1,11.95,06/17/19 07:49,"614 Jefferson St, Dallas, TX 75001" +220434,iPhone,1,700,06/05/19 17:59,"997 Park St, New York City, NY 10001" +220435,Macbook Pro Laptop,1,1700,06/17/19 17:35,"692 Maple St, Portland, OR 97035" +220436,Apple Airpods Headphones,1,150,06/23/19 14:39,"152 Willow St, New York City, NY 10001" +220437,USB-C Charging Cable,1,11.95,06/19/19 13:57,"225 Maple St, New York City, NY 10001" +220438,Lightning Charging Cable,1,14.95,06/02/19 13:49,"673 Lincoln St, Atlanta, GA 30301" +220438,ThinkPad Laptop,1,999.99,06/02/19 13:49,"673 Lincoln St, Atlanta, GA 30301" +220439,Flatscreen TV,1,300,06/15/19 10:49,"206 Main St, Seattle, WA 98101" +220440,34in Ultrawide Monitor,1,379.99,06/10/19 15:14,"785 Pine St, New York City, NY 10001" +220441,USB-C Charging Cable,1,11.95,06/11/19 17:03,"732 1st St, San Francisco, CA 94016" +220442,Wired Headphones,1,11.99,06/27/19 19:19,"904 Hill St, Dallas, TX 75001" +220443,AA Batteries (4-pack),1,3.84,06/26/19 19:21,"626 Maple St, Seattle, WA 98101" +220444,27in 4K Gaming Monitor,1,389.99,06/21/19 21:00,"38 Park St, Boston, MA 02215" +220445,AA Batteries (4-pack),1,3.84,06/15/19 10:47,"372 Dogwood St, Los Angeles, CA 90001" +220446,Lightning Charging Cable,1,14.95,06/26/19 21:20,"354 2nd St, Seattle, WA 98101" +220447,Macbook Pro Laptop,1,1700,06/07/19 17:27,"759 9th St, Boston, MA 02215" +220447,AA Batteries (4-pack),1,3.84,06/07/19 17:27,"759 9th St, Boston, MA 02215" +220448,Lightning Charging Cable,1,14.95,06/19/19 14:21,"655 9th St, San Francisco, CA 94016" +220449,Lightning Charging Cable,2,14.95,06/21/19 22:14,"680 Jefferson St, New York City, NY 10001" +220450,LG Dryer,1,600.0,06/06/19 17:38,"942 Highland St, Los Angeles, CA 90001" +220451,34in Ultrawide Monitor,1,379.99,06/11/19 21:05,"276 Meadow St, Austin, TX 73301" +220452,Macbook Pro Laptop,1,1700,06/06/19 11:52,"478 Jefferson St, San Francisco, CA 94016" +220453,Lightning Charging Cable,1,14.95,06/08/19 13:32,"25 9th St, San Francisco, CA 94016" +220454,Flatscreen TV,1,300,06/27/19 14:06,"444 Forest St, Austin, TX 73301" +220455,AA Batteries (4-pack),2,3.84,06/10/19 01:15,"331 Adams St, Los Angeles, CA 90001" +220456,USB-C Charging Cable,1,11.95,06/30/19 17:26,"174 10th St, San Francisco, CA 94016" +220457,20in Monitor,1,109.99,06/24/19 09:26,"498 Dogwood St, Atlanta, GA 30301" +220458,Lightning Charging Cable,1,14.95,06/25/19 12:27,"360 Ridge St, Atlanta, GA 30301" +220458,USB-C Charging Cable,1,11.95,06/25/19 12:27,"360 Ridge St, Atlanta, GA 30301" +220459,AA Batteries (4-pack),2,3.84,06/08/19 22:38,"2 Lincoln St, Dallas, TX 75001" +220460,Apple Airpods Headphones,1,150,06/11/19 22:20,"16 Sunset St, Atlanta, GA 30301" +220461,Wired Headphones,1,11.99,06/20/19 14:27,"250 Spruce St, San Francisco, CA 94016" +220462,Wired Headphones,1,11.99,06/14/19 10:39,"523 Maple St, Los Angeles, CA 90001" +220463,Apple Airpods Headphones,1,150,06/13/19 13:14,"188 13th St, San Francisco, CA 94016" +220464,Wired Headphones,1,11.99,06/23/19 10:45,"880 North St, Los Angeles, CA 90001" +220465,27in 4K Gaming Monitor,1,389.99,06/23/19 11:19,"12 Park St, Seattle, WA 98101" +220466,USB-C Charging Cable,1,11.95,06/04/19 13:46,"678 Lakeview St, Boston, MA 02215" +220467,Apple Airpods Headphones,1,150,06/15/19 20:49,"140 Hill St, San Francisco, CA 94016" +220468,Apple Airpods Headphones,1,150,06/28/19 17:59,"534 Lake St, Boston, MA 02215" +220469,Lightning Charging Cable,1,14.95,06/23/19 18:58,"901 West St, Atlanta, GA 30301" +220470,AA Batteries (4-pack),1,3.84,06/16/19 18:56,"947 Ridge St, New York City, NY 10001" +220471,Apple Airpods Headphones,1,150,06/11/19 15:30,"942 River St, San Francisco, CA 94016" +220472,USB-C Charging Cable,1,11.95,06/09/19 15:01,"845 Wilson St, Los Angeles, CA 90001" +220473,AA Batteries (4-pack),1,3.84,06/30/19 15:38,"562 Maple St, Dallas, TX 75001" +220474,USB-C Charging Cable,1,11.95,06/18/19 17:02,"451 West St, Boston, MA 02215" +220475,20in Monitor,1,109.99,06/21/19 11:17,"827 Ridge St, San Francisco, CA 94016" +220476,AAA Batteries (4-pack),2,2.99,06/20/19 07:46,"952 13th St, Boston, MA 02215" +220477,Google Phone,1,600,06/06/19 12:18,"493 North St, San Francisco, CA 94016" +220478,AAA Batteries (4-pack),2,2.99,06/05/19 17:46,"726 Church St, Seattle, WA 98101" +220479,ThinkPad Laptop,1,999.99,06/04/19 17:34,"224 Walnut St, New York City, NY 10001" +220480,iPhone,1,700,06/18/19 18:33,"187 6th St, Austin, TX 73301" +220480,Lightning Charging Cable,1,14.95,06/18/19 18:33,"187 6th St, Austin, TX 73301" +220481,iPhone,1,700,06/03/19 12:40,"584 5th St, Austin, TX 73301" +220482,Macbook Pro Laptop,1,1700,06/03/19 18:23,"659 Lincoln St, Seattle, WA 98101" +220482,AAA Batteries (4-pack),1,2.99,06/03/19 18:23,"659 Lincoln St, Seattle, WA 98101" +220483,Google Phone,1,600,06/22/19 10:50,"43 2nd St, New York City, NY 10001" +220484,Apple Airpods Headphones,1,150,06/29/19 08:36,"205 Cedar St, Austin, TX 73301" +220485,Wired Headphones,1,11.99,06/17/19 08:41,"21 Meadow St, Boston, MA 02215" +220486,Lightning Charging Cable,1,14.95,06/07/19 12:25,"116 Main St, Austin, TX 73301" +220487,Lightning Charging Cable,1,14.95,06/25/19 22:27,"706 Pine St, Los Angeles, CA 90001" +220488,USB-C Charging Cable,1,11.95,06/10/19 11:04,"569 Wilson St, Seattle, WA 98101" +220488,Bose SoundSport Headphones,1,99.99,06/10/19 11:04,"569 Wilson St, Seattle, WA 98101" +220489,Bose SoundSport Headphones,1,99.99,06/23/19 15:26,"9 Lake St, San Francisco, CA 94016" +220490,Google Phone,1,600,06/25/19 19:42,"868 6th St, San Francisco, CA 94016" +220491,27in 4K Gaming Monitor,1,389.99,06/11/19 10:11,"798 Johnson St, Seattle, WA 98101" +220492,AAA Batteries (4-pack),1,2.99,06/21/19 21:17,"908 Park St, San Francisco, CA 94016" +220493,AAA Batteries (4-pack),1,2.99,06/27/19 13:17,"717 Elm St, Atlanta, GA 30301" +220494,AAA Batteries (4-pack),4,2.99,06/17/19 10:15,"726 7th St, Los Angeles, CA 90001" +220495,AA Batteries (4-pack),2,3.84,06/26/19 07:03,"604 Hickory St, Los Angeles, CA 90001" +220496,USB-C Charging Cable,1,11.95,06/28/19 13:50,"812 Willow St, Austin, TX 73301" +220497,AAA Batteries (4-pack),1,2.99,06/19/19 17:28,"841 Cedar St, Atlanta, GA 30301" +220498,34in Ultrawide Monitor,1,379.99,06/24/19 17:25,"82 Pine St, Los Angeles, CA 90001" +220499,AAA Batteries (4-pack),1,2.99,06/12/19 16:52,"392 12th St, Austin, TX 73301" +220500,Wired Headphones,1,11.99,06/13/19 20:03,"957 Cherry St, San Francisco, CA 94016" +220501,AAA Batteries (4-pack),1,2.99,06/21/19 16:07,"324 Highland St, San Francisco, CA 94016" +220502,27in FHD Monitor,1,149.99,06/22/19 18:32,"226 Dogwood St, Los Angeles, CA 90001" +220503,Google Phone,1,600,06/08/19 15:44,"367 Adams St, Los Angeles, CA 90001" +220504,ThinkPad Laptop,1,999.99,06/13/19 18:51,"853 Highland St, Portland, ME 04101" +220505,Apple Airpods Headphones,1,150,06/15/19 18:37,"340 Chestnut St, Dallas, TX 75001" +220506,Bose SoundSport Headphones,1,99.99,06/28/19 21:21,"74 River St, Atlanta, GA 30301" +220507,Macbook Pro Laptop,1,1700,06/29/19 11:24,"533 8th St, Portland, ME 04101" +220508,AAA Batteries (4-pack),2,2.99,06/22/19 11:22,"112 Maple St, San Francisco, CA 94016" +220509,USB-C Charging Cable,1,11.95,06/03/19 15:13,"411 Cherry St, San Francisco, CA 94016" +220510,Wired Headphones,1,11.99,06/30/19 17:40,"521 Adams St, San Francisco, CA 94016" +220511,AA Batteries (4-pack),1,3.84,06/19/19 16:03,"98 9th St, Portland, OR 97035" +220512,Wired Headphones,1,11.99,06/29/19 12:12,"70 Dogwood St, Seattle, WA 98101" +220513,USB-C Charging Cable,2,11.95,06/02/19 15:18,"179 Chestnut St, San Francisco, CA 94016" +220514,Lightning Charging Cable,1,14.95,06/15/19 05:49,"774 9th St, Seattle, WA 98101" +220515,USB-C Charging Cable,1,11.95,06/28/19 11:34,"709 Adams St, New York City, NY 10001" +220516,Bose SoundSport Headphones,1,99.99,06/27/19 20:46,"199 13th St, Boston, MA 02215" +220517,20in Monitor,1,109.99,06/11/19 08:38,"711 12th St, San Francisco, CA 94016" +220518,Bose SoundSport Headphones,1,99.99,06/08/19 19:11,"129 Ridge St, Dallas, TX 75001" +220519,Google Phone,1,600,06/11/19 20:24,"617 Main St, Boston, MA 02215" +220519,USB-C Charging Cable,1,11.95,06/11/19 20:24,"617 Main St, Boston, MA 02215" +220520,20in Monitor,1,109.99,06/11/19 16:12,"840 Main St, San Francisco, CA 94016" +220521,USB-C Charging Cable,1,11.95,06/25/19 15:07,"590 10th St, New York City, NY 10001" +220521,AAA Batteries (4-pack),1,2.99,06/25/19 15:07,"590 10th St, New York City, NY 10001" +220522,27in FHD Monitor,1,149.99,06/01/19 21:21,"539 West St, New York City, NY 10001" +220523,Wired Headphones,1,11.99,06/10/19 21:06,"562 Jefferson St, Boston, MA 02215" +220524,Lightning Charging Cable,1,14.95,06/11/19 00:39,"929 Church St, San Francisco, CA 94016" +220525,AAA Batteries (4-pack),1,2.99,06/30/19 22:56,"250 Lake St, Dallas, TX 75001" +220526,iPhone,1,700,06/22/19 22:16,"262 Park St, Los Angeles, CA 90001" +220527,AAA Batteries (4-pack),1,2.99,06/17/19 16:37,"900 Johnson St, Atlanta, GA 30301" +220528,Apple Airpods Headphones,1,150,06/02/19 14:31,"977 11th St, Los Angeles, CA 90001" +220529,AAA Batteries (4-pack),1,2.99,06/04/19 12:04,"745 Lake St, San Francisco, CA 94016" +220530,AA Batteries (4-pack),1,3.84,06/04/19 21:45,"290 Church St, San Francisco, CA 94016" +220531,Lightning Charging Cable,1,14.95,06/03/19 11:51,"510 Hill St, San Francisco, CA 94016" +220532,AAA Batteries (4-pack),1,2.99,06/08/19 10:43,"407 Jackson St, Portland, ME 04101" +220533,USB-C Charging Cable,1,11.95,06/04/19 12:33,"23 Madison St, New York City, NY 10001" +220534,Wired Headphones,1,11.99,06/21/19 09:24,"611 Center St, Boston, MA 02215" +220535,Apple Airpods Headphones,1,150,06/09/19 17:59,"497 Dogwood St, Boston, MA 02215" +220536,Lightning Charging Cable,2,14.95,06/29/19 02:25,"365 Willow St, Atlanta, GA 30301" +220537,Lightning Charging Cable,1,14.95,06/08/19 07:57,"504 River St, Los Angeles, CA 90001" +220538,AA Batteries (4-pack),1,3.84,06/20/19 20:38,"503 4th St, Boston, MA 02215" +220539,USB-C Charging Cable,1,11.95,06/17/19 22:27,"98 Park St, Boston, MA 02215" +220540,AA Batteries (4-pack),1,3.84,06/22/19 13:41,"198 Elm St, Dallas, TX 75001" +220541,Bose SoundSport Headphones,1,99.99,06/10/19 18:57,"19 10th St, Austin, TX 73301" +220542,AA Batteries (4-pack),2,3.84,06/27/19 15:34,"240 Pine St, Dallas, TX 75001" +220543,Wired Headphones,1,11.99,06/29/19 15:40,"186 Pine St, Los Angeles, CA 90001" +220544,Lightning Charging Cable,1,14.95,06/29/19 07:41,"894 Hickory St, Boston, MA 02215" +220545,AAA Batteries (4-pack),1,2.99,06/08/19 19:15,"124 Forest St, New York City, NY 10001" +220546,34in Ultrawide Monitor,1,379.99,06/21/19 13:46,"407 Madison St, San Francisco, CA 94016" +220547,AA Batteries (4-pack),1,3.84,06/12/19 10:48,"142 6th St, Seattle, WA 98101" +220548,27in FHD Monitor,1,149.99,06/16/19 08:12,"494 8th St, Dallas, TX 75001" +220549,USB-C Charging Cable,1,11.95,06/03/19 17:54,"182 Adams St, Los Angeles, CA 90001" +220550,27in 4K Gaming Monitor,1,389.99,06/01/19 21:07,"289 Chestnut St, Boston, MA 02215" +220551,34in Ultrawide Monitor,1,379.99,06/17/19 07:54,"168 Lincoln St, San Francisco, CA 94016" +220552,AA Batteries (4-pack),1,3.84,06/22/19 09:53,"104 Walnut St, San Francisco, CA 94016" +220553,Macbook Pro Laptop,1,1700,06/25/19 15:06,"325 5th St, New York City, NY 10001" +220554,Bose SoundSport Headphones,1,99.99,06/01/19 06:25,"212 Sunset St, New York City, NY 10001" +220554,USB-C Charging Cable,1,11.95,06/01/19 06:25,"212 Sunset St, New York City, NY 10001" +220555,Lightning Charging Cable,1,14.95,06/03/19 10:47,"3 Church St, Boston, MA 02215" +220556,20in Monitor,1,109.99,06/22/19 01:35,"46 Dogwood St, San Francisco, CA 94016" +220557,Apple Airpods Headphones,1,150,06/25/19 22:40,"829 West St, Seattle, WA 98101" +220558,Wired Headphones,1,11.99,06/27/19 18:52,"272 Ridge St, Austin, TX 73301" +220559,20in Monitor,1,109.99,06/10/19 09:24,"378 Cherry St, Atlanta, GA 30301" +220560,Bose SoundSport Headphones,1,99.99,06/09/19 11:32,"242 Hickory St, San Francisco, CA 94016" +220561,Wired Headphones,2,11.99,06/26/19 17:20,"647 River St, Los Angeles, CA 90001" +220562,AA Batteries (4-pack),4,3.84,06/24/19 19:40,"935 Meadow St, Boston, MA 02215" +220563,27in FHD Monitor,1,149.99,06/22/19 15:46,"194 Park St, New York City, NY 10001" +220564,Apple Airpods Headphones,1,150,06/21/19 09:38,"641 Meadow St, San Francisco, CA 94016" +220565,27in FHD Monitor,1,149.99,06/30/19 11:14,"341 9th St, San Francisco, CA 94016" +220566,AAA Batteries (4-pack),1,2.99,06/22/19 08:47,"536 9th St, Los Angeles, CA 90001" +220567,Apple Airpods Headphones,1,150,06/30/19 23:41,"247 8th St, Los Angeles, CA 90001" +220568,Wired Headphones,1,11.99,06/27/19 00:50,"712 11th St, Los Angeles, CA 90001" +220569,Wired Headphones,1,11.99,06/17/19 18:20,"554 10th St, New York City, NY 10001" +220570,USB-C Charging Cable,1,11.95,06/03/19 12:58,"391 2nd St, Boston, MA 02215" +220571,Wired Headphones,1,11.99,06/26/19 18:03,"293 13th St, Seattle, WA 98101" +220572,Apple Airpods Headphones,1,150,06/18/19 17:25,"782 Wilson St, Dallas, TX 75001" +220573,USB-C Charging Cable,1,11.95,06/25/19 18:48,"734 South St, San Francisco, CA 94016" +220574,USB-C Charging Cable,1,11.95,06/24/19 19:41,"652 River St, Boston, MA 02215" +220575,AAA Batteries (4-pack),5,2.99,06/07/19 08:56,"833 13th St, Boston, MA 02215" +220576,AAA Batteries (4-pack),1,2.99,06/17/19 04:00,"381 Washington St, Boston, MA 02215" +220577,AA Batteries (4-pack),1,3.84,06/25/19 17:27,"354 Adams St, San Francisco, CA 94016" +220578,Bose SoundSport Headphones,1,99.99,06/17/19 09:03,"102 Adams St, Boston, MA 02215" +220579,Wired Headphones,1,11.99,06/01/19 12:44,"993 South St, Dallas, TX 75001" +220580,Wired Headphones,1,11.99,06/08/19 17:29,"362 Center St, Los Angeles, CA 90001" +220581,AAA Batteries (4-pack),4,2.99,06/28/19 07:04,"729 Lakeview St, San Francisco, CA 94016" +220582,27in FHD Monitor,1,149.99,06/24/19 22:31,"936 Maple St, Atlanta, GA 30301" +220583,Lightning Charging Cable,1,14.95,06/05/19 12:11,"819 2nd St, Los Angeles, CA 90001" +220584,AA Batteries (4-pack),1,3.84,06/22/19 18:38,"118 Sunset St, New York City, NY 10001" +220585,Lightning Charging Cable,1,14.95,06/07/19 07:29,"717 4th St, Los Angeles, CA 90001" +220586,Apple Airpods Headphones,1,150,06/17/19 13:15,"230 Willow St, San Francisco, CA 94016" +220587,AAA Batteries (4-pack),2,2.99,06/26/19 17:15,"157 6th St, Los Angeles, CA 90001" +220588,AA Batteries (4-pack),1,3.84,06/01/19 12:28,"654 Walnut St, San Francisco, CA 94016" +220589,AAA Batteries (4-pack),3,2.99,06/01/19 16:40,"364 West St, Dallas, TX 75001" +220590,Wired Headphones,1,11.99,06/27/19 19:30,"818 2nd St, Boston, MA 02215" +220591,Google Phone,1,600,06/02/19 18:17,"966 Church St, Los Angeles, CA 90001" +220592,Apple Airpods Headphones,1,150,06/07/19 17:11,"34 Lake St, San Francisco, CA 94016" +220593,20in Monitor,1,109.99,06/29/19 20:46,"747 5th St, Seattle, WA 98101" +220594,Wired Headphones,1,11.99,06/29/19 20:20,"485 River St, San Francisco, CA 94016" +220595,USB-C Charging Cable,1,11.95,06/07/19 14:00,"308 Hill St, Dallas, TX 75001" +220596,Apple Airpods Headphones,1,150,06/20/19 09:30,"11 River St, San Francisco, CA 94016" +220597,USB-C Charging Cable,1,11.95,06/16/19 23:29,"956 Hickory St, San Francisco, CA 94016" +220598,Wired Headphones,1,11.99,06/15/19 14:14,"993 Center St, Atlanta, GA 30301" +220599,Lightning Charging Cable,1,14.95,06/13/19 15:10,"875 Madison St, New York City, NY 10001" +220600,AAA Batteries (4-pack),1,2.99,06/17/19 09:37,"968 Wilson St, Boston, MA 02215" +220601,Wired Headphones,1,11.99,06/09/19 21:37,"257 Spruce St, San Francisco, CA 94016" +220602,34in Ultrawide Monitor,1,379.99,06/27/19 14:33,"903 10th St, Atlanta, GA 30301" +220603,AAA Batteries (4-pack),1,2.99,06/11/19 13:32,"354 West St, New York City, NY 10001" +220604,iPhone,1,700,06/10/19 15:38,"828 Forest St, San Francisco, CA 94016" +220605,AAA Batteries (4-pack),1,2.99,06/05/19 21:20,"854 6th St, New York City, NY 10001" +220606,AAA Batteries (4-pack),1,2.99,06/10/19 14:49,"603 Highland St, Los Angeles, CA 90001" +220607,AAA Batteries (4-pack),1,2.99,06/15/19 10:39,"686 Adams St, Portland, ME 04101" +220608,USB-C Charging Cable,1,11.95,06/07/19 11:59,"771 Adams St, New York City, NY 10001" +220609,USB-C Charging Cable,1,11.95,06/14/19 01:21,"21 Johnson St, Portland, ME 04101" +220610,Flatscreen TV,1,300,06/30/19 17:44,"661 Lakeview St, San Francisco, CA 94016" +220611,AA Batteries (4-pack),2,3.84,06/13/19 12:22,"435 Sunset St, Seattle, WA 98101" +220612,AA Batteries (4-pack),1,3.84,06/19/19 19:13,"23 10th St, Dallas, TX 75001" +220613,Wired Headphones,1,11.99,06/18/19 07:05,"352 1st St, San Francisco, CA 94016" +220614,Lightning Charging Cable,1,14.95,06/28/19 20:01,"920 Johnson St, Austin, TX 73301" +220615,AAA Batteries (4-pack),1,2.99,06/21/19 12:38,"502 Sunset St, Los Angeles, CA 90001" +220616,Wired Headphones,1,11.99,06/05/19 16:34,"836 Elm St, San Francisco, CA 94016" +220617,AA Batteries (4-pack),3,3.84,06/18/19 11:50,"975 6th St, Los Angeles, CA 90001" +220618,iPhone,1,700,06/09/19 05:25,"604 Main St, Los Angeles, CA 90001" +220619,AAA Batteries (4-pack),2,2.99,06/20/19 18:21,"900 Meadow St, Dallas, TX 75001" +220620,Bose SoundSport Headphones,1,99.99,06/11/19 12:20,"619 Sunset St, San Francisco, CA 94016" +220621,Flatscreen TV,1,300,06/20/19 20:42,"923 Sunset St, Austin, TX 73301" +220622,Apple Airpods Headphones,1,150,06/28/19 14:20,"150 Cedar St, Seattle, WA 98101" +220623,27in FHD Monitor,1,149.99,06/05/19 19:34,"979 South St, New York City, NY 10001" +220624,Lightning Charging Cable,1,14.95,06/09/19 20:16,"35 Sunset St, Los Angeles, CA 90001" +220625,Bose SoundSport Headphones,1,99.99,06/30/19 19:08,"973 Lakeview St, Atlanta, GA 30301" +220626,AA Batteries (4-pack),4,3.84,06/18/19 19:44,"165 1st St, San Francisco, CA 94016" +220627,Bose SoundSport Headphones,1,99.99,06/03/19 23:03,"550 Dogwood St, San Francisco, CA 94016" +220628,Macbook Pro Laptop,1,1700,06/26/19 09:37,"609 River St, Atlanta, GA 30301" +220629,USB-C Charging Cable,1,11.95,06/05/19 17:55,"322 Cherry St, Dallas, TX 75001" +220630,iPhone,1,700,06/18/19 15:52,"49 6th St, San Francisco, CA 94016" +220631,20in Monitor,1,109.99,06/20/19 20:20,"461 6th St, San Francisco, CA 94016" +220632,Google Phone,1,600,06/09/19 14:58,"756 Spruce St, San Francisco, CA 94016" +220633,USB-C Charging Cable,1,11.95,06/30/19 19:41,"506 Lincoln St, San Francisco, CA 94016" +220634,AA Batteries (4-pack),2,3.84,06/20/19 23:42,"391 4th St, Atlanta, GA 30301" +220635,AAA Batteries (4-pack),1,2.99,06/14/19 12:44,"557 Madison St, Boston, MA 02215" +220636,AA Batteries (4-pack),1,3.84,06/29/19 22:18,"729 Maple St, Dallas, TX 75001" +220637,Apple Airpods Headphones,1,150,06/22/19 13:24,"268 Wilson St, Dallas, TX 75001" +220638,34in Ultrawide Monitor,1,379.99,06/14/19 18:49,"156 Dogwood St, San Francisco, CA 94016" +220639,AA Batteries (4-pack),1,3.84,06/25/19 17:20,"919 Dogwood St, San Francisco, CA 94016" +220640,Lightning Charging Cable,1,14.95,06/15/19 17:26,"610 Highland St, Los Angeles, CA 90001" +220641,27in 4K Gaming Monitor,1,389.99,06/01/19 20:17,"124 Chestnut St, Portland, OR 97035" +220642,27in FHD Monitor,1,149.99,06/22/19 08:19,"146 11th St, San Francisco, CA 94016" +220643,Lightning Charging Cable,1,14.95,06/03/19 10:13,"567 14th St, Boston, MA 02215" +220644,20in Monitor,1,109.99,06/17/19 19:56,"343 5th St, San Francisco, CA 94016" +220645,Lightning Charging Cable,1,14.95,06/10/19 11:38,"97 6th St, San Francisco, CA 94016" +220646,AAA Batteries (4-pack),3,2.99,06/30/19 23:24,"148 Willow St, Atlanta, GA 30301" +220647,Bose SoundSport Headphones,1,99.99,06/26/19 18:35,"156 9th St, Boston, MA 02215" +220648,34in Ultrawide Monitor,1,379.99,06/28/19 11:25,"291 Lake St, San Francisco, CA 94016" +220649,Bose SoundSport Headphones,1,99.99,06/02/19 15:50,"613 Ridge St, Austin, TX 73301" +220650,USB-C Charging Cable,1,11.95,06/21/19 23:11,"81 Cedar St, Portland, ME 04101" +220651,ThinkPad Laptop,1,999.99,06/26/19 08:52,"609 Jefferson St, Atlanta, GA 30301" +220652,Lightning Charging Cable,1,14.95,06/17/19 16:30,"161 Park St, San Francisco, CA 94016" +220653,Lightning Charging Cable,1,14.95,06/13/19 02:29,"526 Johnson St, San Francisco, CA 94016" +220654,Apple Airpods Headphones,1,150,06/11/19 13:07,"671 Park St, Los Angeles, CA 90001" +220655,27in 4K Gaming Monitor,1,389.99,06/14/19 21:04,"348 4th St, Los Angeles, CA 90001" +220656,Flatscreen TV,1,300,06/17/19 14:34,"628 Madison St, Los Angeles, CA 90001" +220657,Bose SoundSport Headphones,1,99.99,06/19/19 16:04,"527 4th St, Los Angeles, CA 90001" +220658,27in FHD Monitor,1,149.99,06/20/19 22:36,"299 Maple St, Los Angeles, CA 90001" +220659,Wired Headphones,3,11.99,06/25/19 12:18,"839 4th St, San Francisco, CA 94016" +220660,Wired Headphones,1,11.99,06/05/19 15:51,"482 7th St, New York City, NY 10001" +220661,Macbook Pro Laptop,1,1700,06/14/19 21:20,"815 Johnson St, New York City, NY 10001" +220662,AAA Batteries (4-pack),1,2.99,06/11/19 13:22,"122 Hickory St, New York City, NY 10001" +220663,Apple Airpods Headphones,1,150,06/01/19 18:12,"590 Jefferson St, Portland, OR 97035" +220664,Bose SoundSport Headphones,1,99.99,06/22/19 02:04,"545 Madison St, Dallas, TX 75001" +220665,ThinkPad Laptop,1,999.99,06/11/19 19:59,"636 Highland St, San Francisco, CA 94016" +220666,Lightning Charging Cable,1,14.95,06/01/19 14:09,"698 Spruce St, Seattle, WA 98101" +220667,AA Batteries (4-pack),1,3.84,06/19/19 20:13,"666 Madison St, Austin, TX 73301" +220668,27in FHD Monitor,1,149.99,06/21/19 12:59,"580 South St, Seattle, WA 98101" +220669,Apple Airpods Headphones,1,150,06/07/19 19:26,"174 9th St, Atlanta, GA 30301" +220670,ThinkPad Laptop,1,999.99,06/15/19 20:01,"596 Johnson St, Portland, ME 04101" +220671,AAA Batteries (4-pack),1,2.99,06/21/19 10:19,"276 Johnson St, Dallas, TX 75001" +220672,AAA Batteries (4-pack),1,2.99,06/19/19 18:52,"968 Park St, Portland, OR 97035" +220673,AAA Batteries (4-pack),1,2.99,06/09/19 22:27,"166 8th St, San Francisco, CA 94016" +220674,AA Batteries (4-pack),2,3.84,06/11/19 14:34,"427 Park St, New York City, NY 10001" +220675,iPhone,1,700,06/11/19 09:12,"821 Wilson St, San Francisco, CA 94016" +220676,27in FHD Monitor,1,149.99,06/19/19 11:08,"314 Willow St, Los Angeles, CA 90001" +220677,ThinkPad Laptop,1,999.99,06/11/19 09:41,"886 13th St, Atlanta, GA 30301" +220678,34in Ultrawide Monitor,1,379.99,06/20/19 10:35,"12 12th St, San Francisco, CA 94016" +220679,27in 4K Gaming Monitor,1,389.99,06/10/19 09:28,"270 8th St, Seattle, WA 98101" +220680,Wired Headphones,1,11.99,06/27/19 21:17,"653 Cedar St, Boston, MA 02215" +220681,Bose SoundSport Headphones,1,99.99,06/21/19 13:26,"220 Elm St, Los Angeles, CA 90001" +220682,Wired Headphones,1,11.99,06/21/19 19:22,"11 Jackson St, Atlanta, GA 30301" +220683,Vareebadd Phone,1,400,06/22/19 21:46,"469 Highland St, Seattle, WA 98101" +220684,Vareebadd Phone,1,400,06/16/19 19:48,"875 Park St, San Francisco, CA 94016" +220684,USB-C Charging Cable,4,11.95,06/16/19 19:48,"875 Park St, San Francisco, CA 94016" +220685,USB-C Charging Cable,1,11.95,06/26/19 22:00,"887 8th St, Seattle, WA 98101" +220686,Apple Airpods Headphones,1,150,06/20/19 11:48,"786 Pine St, Dallas, TX 75001" +220687,AA Batteries (4-pack),1,3.84,06/06/19 12:20,"103 South St, San Francisco, CA 94016" +220688,Bose SoundSport Headphones,1,99.99,06/18/19 21:23,"559 Spruce St, Austin, TX 73301" +220689,Lightning Charging Cable,1,14.95,06/21/19 13:50,"999 Elm St, San Francisco, CA 94016" +220690,Google Phone,1,600,06/14/19 20:58,"753 6th St, San Francisco, CA 94016" +220690,USB-C Charging Cable,1,11.95,06/14/19 20:58,"753 6th St, San Francisco, CA 94016" +220691,AAA Batteries (4-pack),1,2.99,06/22/19 03:04,"870 2nd St, Austin, TX 73301" +220692,Wired Headphones,1,11.99,06/11/19 18:18,"445 Lakeview St, San Francisco, CA 94016" +220693,Lightning Charging Cable,1,14.95,06/23/19 20:56,"125 Forest St, Austin, TX 73301" +220694,USB-C Charging Cable,1,11.95,06/02/19 19:32,"209 Lake St, San Francisco, CA 94016" +220695,USB-C Charging Cable,1,11.95,06/04/19 15:08,"960 Hickory St, New York City, NY 10001" +220696,Google Phone,1,600,06/06/19 21:03,"894 Forest St, Seattle, WA 98101" +220696,USB-C Charging Cable,1,11.95,06/06/19 21:03,"894 Forest St, Seattle, WA 98101" +220696,Wired Headphones,2,11.99,06/06/19 21:03,"894 Forest St, Seattle, WA 98101" +220697,27in 4K Gaming Monitor,1,389.99,06/17/19 10:55,"740 Adams St, Boston, MA 02215" +220698,Lightning Charging Cable,1,14.95,06/16/19 18:57,"896 Cedar St, San Francisco, CA 94016" +220699,Apple Airpods Headphones,1,150,06/21/19 17:17,"823 Highland St, Dallas, TX 75001" +220700,Macbook Pro Laptop,1,1700,06/26/19 22:06,"763 Center St, San Francisco, CA 94016" +220701,Bose SoundSport Headphones,1,99.99,06/26/19 12:57,"227 6th St, Boston, MA 02215" +220702,iPhone,1,700,06/02/19 13:12,"838 6th St, Los Angeles, CA 90001" +220703,27in 4K Gaming Monitor,1,389.99,06/20/19 20:00,"682 11th St, Los Angeles, CA 90001" +220704,Lightning Charging Cable,1,14.95,06/12/19 18:41,"213 Spruce St, Boston, MA 02215" +220705,USB-C Charging Cable,1,11.95,06/14/19 11:20,"443 6th St, San Francisco, CA 94016" +220706,34in Ultrawide Monitor,1,379.99,06/04/19 10:05,"513 Hill St, Seattle, WA 98101" +220707,Apple Airpods Headphones,1,150,06/25/19 12:45,"497 1st St, Dallas, TX 75001" +220708,Google Phone,1,600,06/14/19 16:03,"938 Ridge St, Boston, MA 02215" +220709,ThinkPad Laptop,1,999.99,06/25/19 18:49,"828 Elm St, San Francisco, CA 94016" +220710,Wired Headphones,1,11.99,06/28/19 17:07,"57 Cedar St, San Francisco, CA 94016" +220711,27in FHD Monitor,1,149.99,06/25/19 01:16,"388 7th St, San Francisco, CA 94016" +220712,Lightning Charging Cable,1,14.95,06/01/19 13:23,"373 South St, Seattle, WA 98101" +220713,ThinkPad Laptop,1,999.99,06/20/19 10:46,"193 Highland St, Dallas, TX 75001" +220714,Wired Headphones,1,11.99,06/05/19 16:48,"129 2nd St, San Francisco, CA 94016" +220715,Wired Headphones,1,11.99,06/23/19 08:32,"387 Adams St, Boston, MA 02215" +,,,,, +220716,20in Monitor,1,109.99,06/24/19 17:21,"908 10th St, Dallas, TX 75001" +220717,20in Monitor,1,109.99,06/12/19 23:47,"25 Ridge St, New York City, NY 10001" +220718,20in Monitor,1,109.99,06/30/19 17:07,"569 Maple St, Boston, MA 02215" +220719,LG Dryer,1,600.0,06/11/19 19:38,"178 Johnson St, Boston, MA 02215" +220720,AAA Batteries (4-pack),2,2.99,06/26/19 17:26,"30 Wilson St, New York City, NY 10001" +220721,Google Phone,1,600,06/19/19 14:15,"58 Park St, Los Angeles, CA 90001" +220721,USB-C Charging Cable,1,11.95,06/19/19 14:15,"58 Park St, Los Angeles, CA 90001" +220722,Wired Headphones,1,11.99,06/06/19 17:22,"922 Church St, Dallas, TX 75001" +220723,Lightning Charging Cable,1,14.95,06/11/19 12:21,"375 Madison St, San Francisco, CA 94016" +220724,Wired Headphones,1,11.99,06/07/19 13:05,"3 5th St, Los Angeles, CA 90001" +220725,Lightning Charging Cable,1,14.95,06/23/19 13:29,"887 Cedar St, New York City, NY 10001" +220726,USB-C Charging Cable,1,11.95,06/21/19 14:26,"438 5th St, Portland, OR 97035" +220727,34in Ultrawide Monitor,1,379.99,06/17/19 15:53,"699 Cedar St, Los Angeles, CA 90001" +220728,AAA Batteries (4-pack),1,2.99,06/01/19 12:33,"336 14th St, Dallas, TX 75001" +220729,Google Phone,1,600,06/23/19 11:41,"795 Elm St, San Francisco, CA 94016" +220729,USB-C Charging Cable,2,11.95,06/23/19 11:41,"795 Elm St, San Francisco, CA 94016" +220730,Bose SoundSport Headphones,1,99.99,06/30/19 20:56,"752 Johnson St, San Francisco, CA 94016" +220731,Flatscreen TV,1,300,06/07/19 18:05,"814 5th St, Boston, MA 02215" +220732,Flatscreen TV,1,300,06/05/19 10:02,"433 North St, Portland, ME 04101" +220733,20in Monitor,1,109.99,06/12/19 14:51,"398 12th St, Dallas, TX 75001" +220734,USB-C Charging Cable,1,11.95,06/10/19 07:09,"154 14th St, Los Angeles, CA 90001" +220735,27in FHD Monitor,1,149.99,06/02/19 13:32,"833 Spruce St, Portland, OR 97035" +220736,Wired Headphones,2,11.99,06/09/19 10:19,"56 2nd St, San Francisco, CA 94016" +220737,27in 4K Gaming Monitor,1,389.99,06/12/19 13:27,"705 4th St, New York City, NY 10001" +220738,Lightning Charging Cable,1,14.95,06/09/19 08:09,"629 River St, Los Angeles, CA 90001" +220739,USB-C Charging Cable,2,11.95,06/18/19 08:24,"201 Spruce St, New York City, NY 10001" +220740,AAA Batteries (4-pack),1,2.99,06/23/19 19:11,"824 Pine St, Seattle, WA 98101" +220741,34in Ultrawide Monitor,1,379.99,06/02/19 22:59,"571 Forest St, Los Angeles, CA 90001" +220742,Wired Headphones,1,11.99,06/18/19 15:59,"911 Pine St, Los Angeles, CA 90001" +220743,ThinkPad Laptop,1,999.99,06/10/19 04:48,"126 Ridge St, Los Angeles, CA 90001" +220744,AAA Batteries (4-pack),1,2.99,06/22/19 18:17,"267 8th St, San Francisco, CA 94016" +220745,AA Batteries (4-pack),1,3.84,06/11/19 22:16,"413 Washington St, Los Angeles, CA 90001" +220746,AA Batteries (4-pack),1,3.84,06/14/19 08:39,"537 Walnut St, New York City, NY 10001" +220747,Lightning Charging Cable,1,14.95,06/17/19 22:49,"116 Pine St, Portland, OR 97035" +220748,iPhone,1,700,06/14/19 17:41,"362 Sunset St, San Francisco, CA 94016" +220748,Lightning Charging Cable,1,14.95,06/14/19 17:41,"362 Sunset St, San Francisco, CA 94016" +220748,Wired Headphones,1,11.99,06/14/19 17:41,"362 Sunset St, San Francisco, CA 94016" +220749,Lightning Charging Cable,1,14.95,06/16/19 23:50,"711 Center St, Boston, MA 02215" +220750,27in 4K Gaming Monitor,1,389.99,06/10/19 09:46,"54 Lincoln St, San Francisco, CA 94016" +220751,Macbook Pro Laptop,1,1700,06/11/19 14:24,"232 Maple St, Seattle, WA 98101" +220752,USB-C Charging Cable,1,11.95,06/28/19 19:48,"262 4th St, San Francisco, CA 94016" +220753,27in FHD Monitor,1,149.99,06/13/19 14:09,"468 Lincoln St, Los Angeles, CA 90001" +220754,AA Batteries (4-pack),2,3.84,06/06/19 12:43,"103 Adams St, San Francisco, CA 94016" +220755,AAA Batteries (4-pack),1,2.99,06/25/19 16:58,"758 5th St, Portland, OR 97035" +220756,Flatscreen TV,1,300,06/15/19 13:28,"323 Chestnut St, Boston, MA 02215" +220757,Wired Headphones,1,11.99,06/21/19 17:50,"967 5th St, New York City, NY 10001" +220758,Lightning Charging Cable,1,14.95,06/19/19 22:09,"373 Highland St, Boston, MA 02215" +220759,Wired Headphones,1,11.99,06/05/19 12:56,"95 Lincoln St, Atlanta, GA 30301" +220760,Apple Airpods Headphones,1,150,06/26/19 09:31,"51 Washington St, San Francisco, CA 94016" +220761,AA Batteries (4-pack),1,3.84,06/08/19 22:57,"97 Lake St, Los Angeles, CA 90001" +220762,AA Batteries (4-pack),1,3.84,06/22/19 13:07,"7 North St, Dallas, TX 75001" +220763,ThinkPad Laptop,1,999.99,06/23/19 18:40,"202 Jackson St, Los Angeles, CA 90001" +220764,27in FHD Monitor,1,149.99,06/29/19 09:27,"843 6th St, San Francisco, CA 94016" +220765,Bose SoundSport Headphones,1,99.99,06/11/19 11:59,"126 Lincoln St, New York City, NY 10001" +220766,Bose SoundSport Headphones,1,99.99,06/12/19 15:21,"737 4th St, Portland, OR 97035" +220767,Apple Airpods Headphones,1,150,06/01/19 13:13,"249 Cedar St, San Francisco, CA 94016" +220768,Flatscreen TV,1,300,06/14/19 17:59,"583 Chestnut St, Dallas, TX 75001" +220769,Flatscreen TV,1,300,06/24/19 20:18,"724 Main St, San Francisco, CA 94016" +220770,20in Monitor,1,109.99,06/19/19 22:20,"94 Hickory St, New York City, NY 10001" +220771,AAA Batteries (4-pack),2,2.99,06/03/19 08:57,"737 Park St, Atlanta, GA 30301" +220771,Bose SoundSport Headphones,1,99.99,06/03/19 08:57,"737 Park St, Atlanta, GA 30301" +220772,USB-C Charging Cable,1,11.95,06/06/19 17:16,"888 Hill St, Seattle, WA 98101" +220773,Bose SoundSport Headphones,1,99.99,06/03/19 00:21,"108 4th St, San Francisco, CA 94016" +220774,AA Batteries (4-pack),1,3.84,06/26/19 20:28,"617 Cherry St, New York City, NY 10001" +220775,AAA Batteries (4-pack),2,2.99,06/03/19 20:28,"485 North St, Los Angeles, CA 90001" +220776,Apple Airpods Headphones,1,150,06/26/19 11:40,"764 4th St, Los Angeles, CA 90001" +220777,AAA Batteries (4-pack),2,2.99,06/18/19 11:43,"201 2nd St, Atlanta, GA 30301" +220778,Lightning Charging Cable,1,14.95,06/18/19 00:53,"56 Cedar St, San Francisco, CA 94016" +220779,Flatscreen TV,1,300,06/23/19 12:02,"213 Adams St, Los Angeles, CA 90001" +220780,USB-C Charging Cable,1,11.95,06/02/19 11:02,"996 Maple St, Los Angeles, CA 90001" +220781,20in Monitor,1,109.99,06/10/19 13:12,"315 Church St, San Francisco, CA 94016" +220782,USB-C Charging Cable,2,11.95,06/11/19 18:37,"543 Washington St, Austin, TX 73301" +220783,27in FHD Monitor,1,149.99,06/01/19 10:33,"554 Walnut St, Boston, MA 02215" +220784,iPhone,1,700,06/16/19 19:18,"42 Lincoln St, Atlanta, GA 30301" +220785,Apple Airpods Headphones,1,150,06/12/19 08:57,"326 Main St, Dallas, TX 75001" +220786,Apple Airpods Headphones,1,150,06/28/19 20:58,"728 11th St, Seattle, WA 98101" +220787,ThinkPad Laptop,1,999.99,06/23/19 15:32,"747 Washington St, Seattle, WA 98101" +220787,AA Batteries (4-pack),2,3.84,06/23/19 15:32,"747 Washington St, Seattle, WA 98101" +220788,ThinkPad Laptop,1,999.99,06/27/19 11:02,"290 Pine St, Seattle, WA 98101" +220789,AA Batteries (4-pack),1,3.84,06/01/19 12:31,"468 2nd St, San Francisco, CA 94016" +220790,AAA Batteries (4-pack),2,2.99,06/24/19 11:35,"19 Lincoln St, San Francisco, CA 94016" +220791,iPhone,1,700,06/11/19 20:45,"997 1st St, Portland, OR 97035" +220792,Macbook Pro Laptop,1,1700,06/29/19 04:56,"268 14th St, Boston, MA 02215" +220793,USB-C Charging Cable,1,11.95,06/16/19 02:28,"531 Chestnut St, Los Angeles, CA 90001" +220794,27in FHD Monitor,1,149.99,06/20/19 14:28,"133 Sunset St, Los Angeles, CA 90001" +220795,AAA Batteries (4-pack),1,2.99,06/01/19 18:32,"404 Church St, New York City, NY 10001" +220796,Google Phone,1,600,06/25/19 21:15,"250 2nd St, New York City, NY 10001" +220797,Lightning Charging Cable,1,14.95,06/09/19 14:03,"717 Madison St, Los Angeles, CA 90001" +220798,iPhone,1,700,06/03/19 16:41,"390 12th St, New York City, NY 10001" +220799,Apple Airpods Headphones,1,150,06/16/19 18:44,"528 West St, Dallas, TX 75001" +220800,Macbook Pro Laptop,1,1700,06/28/19 14:09,"340 14th St, Boston, MA 02215" +220801,27in 4K Gaming Monitor,1,389.99,06/14/19 12:08,"785 12th St, New York City, NY 10001" +220802,Bose SoundSport Headphones,1,99.99,06/27/19 21:00,"660 10th St, Austin, TX 73301" +220802,34in Ultrawide Monitor,1,379.99,06/27/19 21:00,"660 10th St, Austin, TX 73301" +220803,AA Batteries (4-pack),1,3.84,06/22/19 11:24,"985 6th St, Seattle, WA 98101" +220804,20in Monitor,1,109.99,06/16/19 08:55,"199 Dogwood St, Boston, MA 02215" +220805,iPhone,1,700,06/14/19 22:39,"502 Park St, Boston, MA 02215" +220805,Lightning Charging Cable,1,14.95,06/14/19 22:39,"502 Park St, Boston, MA 02215" +220806,34in Ultrawide Monitor,1,379.99,06/12/19 14:04,"677 River St, San Francisco, CA 94016" +220807,Lightning Charging Cable,2,14.95,06/10/19 12:38,"918 Jackson St, Atlanta, GA 30301" +220808,AAA Batteries (4-pack),1,2.99,06/25/19 22:10,"435 Wilson St, San Francisco, CA 94016" +220809,27in 4K Gaming Monitor,1,389.99,06/17/19 20:15,"508 5th St, Seattle, WA 98101" +220810,Lightning Charging Cable,1,14.95,06/01/19 20:01,"124 Lakeview St, San Francisco, CA 94016" +220811,Lightning Charging Cable,1,14.95,06/09/19 13:08,"542 7th St, New York City, NY 10001" +220812,AA Batteries (4-pack),1,3.84,06/23/19 11:29,"879 8th St, San Francisco, CA 94016" +220813,USB-C Charging Cable,2,11.95,06/25/19 13:23,"771 West St, San Francisco, CA 94016" +220814,AAA Batteries (4-pack),1,2.99,06/23/19 12:59,"951 Park St, Los Angeles, CA 90001" +220815,AA Batteries (4-pack),1,3.84,06/21/19 18:47,"657 Madison St, Portland, OR 97035" +220816,27in 4K Gaming Monitor,1,389.99,06/29/19 15:12,"311 Cherry St, Boston, MA 02215" +220817,AA Batteries (4-pack),1,3.84,06/24/19 11:00,"207 Dogwood St, Dallas, TX 75001" +220818,Vareebadd Phone,1,400,06/12/19 22:22,"672 River St, San Francisco, CA 94016" +220819,Wired Headphones,1,11.99,06/22/19 19:59,"155 River St, Boston, MA 02215" +220820,AA Batteries (4-pack),1,3.84,06/14/19 14:19,"494 Main St, Austin, TX 73301" +220821,AAA Batteries (4-pack),1,2.99,06/28/19 08:06,"905 Johnson St, Atlanta, GA 30301" +220822,Apple Airpods Headphones,1,150,06/06/19 11:13,"925 9th St, Los Angeles, CA 90001" +220823,AA Batteries (4-pack),1,3.84,06/20/19 14:23,"509 Elm St, New York City, NY 10001" +220824,AAA Batteries (4-pack),2,2.99,06/14/19 16:33,"721 Meadow St, New York City, NY 10001" +220825,USB-C Charging Cable,1,11.95,06/08/19 14:23,"718 West St, San Francisco, CA 94016" +220826,Bose SoundSport Headphones,1,99.99,06/03/19 15:10,"288 Forest St, Los Angeles, CA 90001" +220827,20in Monitor,1,109.99,06/15/19 16:18,"207 Chestnut St, Boston, MA 02215" +220828,20in Monitor,1,109.99,06/16/19 16:51,"99 9th St, San Francisco, CA 94016" +220829,Google Phone,1,600,06/30/19 09:02,"537 Spruce St, Los Angeles, CA 90001" +220830,AA Batteries (4-pack),1,3.84,06/08/19 19:30,"545 Spruce St, Los Angeles, CA 90001" +220831,Lightning Charging Cable,3,14.95,06/20/19 10:31,"347 Madison St, Los Angeles, CA 90001" +220832,34in Ultrawide Monitor,1,379.99,06/17/19 00:13,"86 Center St, Los Angeles, CA 90001" +220833,ThinkPad Laptop,1,999.99,06/24/19 07:54,"645 11th St, Boston, MA 02215" +220833,Wired Headphones,1,11.99,06/24/19 07:54,"645 11th St, Boston, MA 02215" +220834,USB-C Charging Cable,1,11.95,06/14/19 18:31,"310 Spruce St, Los Angeles, CA 90001" +220835,Lightning Charging Cable,1,14.95,06/08/19 15:44,"758 Lakeview St, Los Angeles, CA 90001" +220836,Vareebadd Phone,1,400,06/29/19 12:06,"79 Adams St, Los Angeles, CA 90001" +220837,AAA Batteries (4-pack),1,2.99,06/04/19 12:45,"525 Maple St, San Francisco, CA 94016" +220838,AAA Batteries (4-pack),1,2.99,06/04/19 12:43,"906 Cedar St, Los Angeles, CA 90001" +220839,Apple Airpods Headphones,1,150,06/12/19 20:10,"237 9th St, Seattle, WA 98101" +220840,Apple Airpods Headphones,1,150,06/08/19 09:38,"480 6th St, San Francisco, CA 94016" +220841,AAA Batteries (4-pack),1,2.99,06/26/19 09:18,"472 Hill St, New York City, NY 10001" +220842,AA Batteries (4-pack),1,3.84,06/13/19 15:42,"750 6th St, Portland, OR 97035" +220843,USB-C Charging Cable,1,11.95,06/18/19 15:59,"31 10th St, Los Angeles, CA 90001" +220844,AAA Batteries (4-pack),1,2.99,06/21/19 19:43,"88 Adams St, San Francisco, CA 94016" +220845,AA Batteries (4-pack),1,3.84,06/01/19 21:00,"129 13th St, Portland, OR 97035" +220846,27in FHD Monitor,1,149.99,06/19/19 23:54,"715 4th St, Portland, OR 97035" +220847,Apple Airpods Headphones,1,150,06/11/19 13:07,"771 Sunset St, Portland, ME 04101" +220848,AA Batteries (4-pack),2,3.84,06/10/19 14:53,"871 North St, New York City, NY 10001" +220849,Lightning Charging Cable,1,14.95,06/28/19 10:07,"149 Washington St, Dallas, TX 75001" +220850,AA Batteries (4-pack),3,3.84,06/23/19 13:37,"130 2nd St, San Francisco, CA 94016" +220851,Bose SoundSport Headphones,1,99.99,06/18/19 09:24,"998 Center St, Boston, MA 02215" +220852,ThinkPad Laptop,1,999.99,06/19/19 23:29,"234 12th St, Atlanta, GA 30301" +220853,34in Ultrawide Monitor,1,379.99,06/25/19 20:45,"250 West St, Los Angeles, CA 90001" +220854,Apple Airpods Headphones,1,150,06/05/19 18:14,"53 Walnut St, Portland, OR 97035" +220855,USB-C Charging Cable,1,11.95,06/25/19 11:19,"513 4th St, Dallas, TX 75001" +220856,Bose SoundSport Headphones,1,99.99,06/03/19 03:01,"490 Lincoln St, Boston, MA 02215" +220857,AA Batteries (4-pack),1,3.84,06/30/19 13:07,"877 13th St, Boston, MA 02215" +220858,AAA Batteries (4-pack),1,2.99,06/15/19 21:52,"215 Hill St, Atlanta, GA 30301" +220859,AA Batteries (4-pack),1,3.84,06/30/19 19:27,"760 River St, Boston, MA 02215" +220860,USB-C Charging Cable,1,11.95,06/03/19 15:29,"575 6th St, New York City, NY 10001" +220861,USB-C Charging Cable,1,11.95,06/03/19 00:29,"963 Church St, New York City, NY 10001" +220862,iPhone,1,700,06/11/19 13:43,"486 Park St, Seattle, WA 98101" +220863,Apple Airpods Headphones,1,150,06/04/19 20:15,"495 Meadow St, New York City, NY 10001" +220864,ThinkPad Laptop,1,999.99,06/23/19 21:04,"42 Johnson St, Los Angeles, CA 90001" +220865,Google Phone,1,600,06/02/19 18:54,"610 Walnut St, Atlanta, GA 30301" +220866,AA Batteries (4-pack),2,3.84,06/28/19 01:43,"476 12th St, Los Angeles, CA 90001" +220867,Apple Airpods Headphones,1,150,06/26/19 01:15,"888 Chestnut St, Seattle, WA 98101" +220868,Lightning Charging Cable,1,14.95,06/13/19 20:28,"199 7th St, San Francisco, CA 94016" +220869,34in Ultrawide Monitor,1,379.99,06/08/19 23:16,"959 North St, Dallas, TX 75001" +220870,34in Ultrawide Monitor,1,379.99,06/22/19 12:25,"508 Center St, Los Angeles, CA 90001" +220871,Lightning Charging Cable,1,14.95,06/25/19 07:26,"405 Adams St, Los Angeles, CA 90001" +220872,Bose SoundSport Headphones,1,99.99,06/15/19 18:41,"89 Madison St, Boston, MA 02215" +220873,ThinkPad Laptop,1,999.99,06/10/19 08:20,"753 Meadow St, San Francisco, CA 94016" +220874,AAA Batteries (4-pack),1,2.99,06/16/19 18:07,"298 Lincoln St, Los Angeles, CA 90001" +220875,Apple Airpods Headphones,1,150,06/09/19 20:04,"682 Cherry St, Los Angeles, CA 90001" +220876,27in 4K Gaming Monitor,1,389.99,06/22/19 18:24,"378 Wilson St, Dallas, TX 75001" +220877,Apple Airpods Headphones,1,150,06/01/19 11:46,"137 Walnut St, Los Angeles, CA 90001" +220878,USB-C Charging Cable,1,11.95,06/07/19 20:52,"499 Forest St, Portland, OR 97035" +220879,iPhone,1,700,06/06/19 19:02,"691 10th St, Boston, MA 02215" +220879,Lightning Charging Cable,1,14.95,06/06/19 19:02,"691 10th St, Boston, MA 02215" +220880,AAA Batteries (4-pack),2,2.99,06/24/19 22:08,"182 Spruce St, San Francisco, CA 94016" +220881,Apple Airpods Headphones,1,150,06/16/19 11:39,"185 Pine St, San Francisco, CA 94016" +220882,AA Batteries (4-pack),3,3.84,06/18/19 11:02,"515 12th St, Boston, MA 02215" +220883,Bose SoundSport Headphones,1,99.99,06/29/19 18:05,"563 4th St, Atlanta, GA 30301" +220884,USB-C Charging Cable,1,11.95,06/25/19 21:31,"220 8th St, New York City, NY 10001" +220885,Lightning Charging Cable,1,14.95,06/22/19 13:59,"465 Washington St, Boston, MA 02215" +220886,Wired Headphones,2,11.99,06/17/19 23:20,"613 Sunset St, San Francisco, CA 94016" +220887,27in FHD Monitor,1,149.99,06/14/19 10:42,"366 Cedar St, San Francisco, CA 94016" +220888,Lightning Charging Cable,1,14.95,06/11/19 11:55,"810 Walnut St, Portland, ME 04101" +220889,34in Ultrawide Monitor,1,379.99,06/03/19 22:05,"264 12th St, Atlanta, GA 30301" +220890,AA Batteries (4-pack),2,3.84,06/16/19 13:07,"1 River St, Los Angeles, CA 90001" +220891,20in Monitor,1,109.99,06/27/19 12:10,"256 14th St, Boston, MA 02215" +220892,Lightning Charging Cable,1,14.95,06/07/19 14:20,"257 Church St, Boston, MA 02215" +220893,Bose SoundSport Headphones,1,99.99,06/03/19 18:39,"30 Pine St, Los Angeles, CA 90001" +220894,27in 4K Gaming Monitor,1,389.99,06/13/19 11:27,"544 North St, Dallas, TX 75001" +220894,ThinkPad Laptop,1,999.99,06/13/19 11:27,"544 North St, Dallas, TX 75001" +220895,Wired Headphones,1,11.99,06/25/19 12:04,"523 Spruce St, Los Angeles, CA 90001" +220896,USB-C Charging Cable,1,11.95,06/01/19 23:31,"372 Lake St, San Francisco, CA 94016" +220897,Lightning Charging Cable,1,14.95,06/29/19 08:54,"900 Spruce St, San Francisco, CA 94016" +220898,Wired Headphones,1,11.99,06/02/19 17:01,"638 Meadow St, Boston, MA 02215" +220899,USB-C Charging Cable,1,11.95,06/17/19 06:39,"637 14th St, Austin, TX 73301" +220900,AA Batteries (4-pack),2,3.84,06/14/19 19:19,"407 Meadow St, San Francisco, CA 94016" +220901,USB-C Charging Cable,1,11.95,06/12/19 08:04,"490 2nd St, San Francisco, CA 94016" +220902,27in 4K Gaming Monitor,1,389.99,06/24/19 15:20,"83 5th St, Portland, OR 97035" +220903,34in Ultrawide Monitor,1,379.99,06/10/19 23:35,"703 North St, Los Angeles, CA 90001" +220904,27in 4K Gaming Monitor,1,389.99,06/27/19 18:59,"463 12th St, San Francisco, CA 94016" +220905,Bose SoundSport Headphones,1,99.99,06/13/19 17:03,"82 South St, Los Angeles, CA 90001" +220906,ThinkPad Laptop,1,999.99,06/25/19 21:55,"310 Cedar St, Atlanta, GA 30301" +220907,Wired Headphones,1,11.99,06/15/19 10:13,"829 5th St, Los Angeles, CA 90001" +220908,Bose SoundSport Headphones,1,99.99,06/07/19 16:34,"747 Dogwood St, San Francisco, CA 94016" +220909,Lightning Charging Cable,1,14.95,06/28/19 19:53,"596 Maple St, Boston, MA 02215" +220910,Bose SoundSport Headphones,1,99.99,06/30/19 02:16,"22 Cedar St, San Francisco, CA 94016" +220911,Wired Headphones,1,11.99,06/01/19 17:13,"82 Maple St, Los Angeles, CA 90001" +220912,iPhone,1,700,06/19/19 04:18,"998 Church St, Dallas, TX 75001" +220913,Lightning Charging Cable,1,14.95,06/20/19 13:26,"304 14th St, Seattle, WA 98101" +220914,AA Batteries (4-pack),2,3.84,06/02/19 20:39,"381 Highland St, Portland, OR 97035" +220915,Apple Airpods Headphones,1,150,06/29/19 11:12,"59 Wilson St, San Francisco, CA 94016" +220916,Bose SoundSport Headphones,1,99.99,06/09/19 16:25,"181 Elm St, Portland, OR 97035" +220917,Wired Headphones,1,11.99,06/06/19 14:50,"745 9th St, San Francisco, CA 94016" +220918,Apple Airpods Headphones,1,150,06/07/19 20:53,"727 Hickory St, Los Angeles, CA 90001" +220919,Lightning Charging Cable,1,14.95,06/19/19 18:06,"930 Pine St, Portland, OR 97035" +220920,Google Phone,1,600,06/28/19 08:39,"784 5th St, San Francisco, CA 94016" +220921,AAA Batteries (4-pack),5,2.99,06/27/19 15:02,"7 Hickory St, New York City, NY 10001" +220922,AA Batteries (4-pack),1,3.84,06/18/19 02:18,"153 1st St, San Francisco, CA 94016" +220923,AA Batteries (4-pack),1,3.84,06/30/19 22:35,"146 North St, Seattle, WA 98101" +220924,USB-C Charging Cable,1,11.95,06/22/19 23:35,"917 Dogwood St, San Francisco, CA 94016" +220925,Wired Headphones,1,11.99,06/22/19 19:41,"188 Chestnut St, Austin, TX 73301" +220926,Bose SoundSport Headphones,1,99.99,06/16/19 13:33,"415 Sunset St, San Francisco, CA 94016" +220927,Wired Headphones,1,11.99,06/30/19 15:46,"875 Jefferson St, New York City, NY 10001" +220928,34in Ultrawide Monitor,1,379.99,06/26/19 19:53,"621 Lake St, San Francisco, CA 94016" +220929,iPhone,1,700,06/23/19 10:40,"841 Chestnut St, Boston, MA 02215" +220929,AA Batteries (4-pack),1,3.84,06/23/19 10:40,"841 Chestnut St, Boston, MA 02215" +220930,34in Ultrawide Monitor,1,379.99,06/22/19 20:45,"322 Willow St, San Francisco, CA 94016" +220931,AAA Batteries (4-pack),3,2.99,06/05/19 22:45,"720 Forest St, Seattle, WA 98101" +220932,AA Batteries (4-pack),3,3.84,06/15/19 17:49,"159 Forest St, Seattle, WA 98101" +220933,34in Ultrawide Monitor,1,379.99,06/15/19 20:01,"799 Lake St, New York City, NY 10001" +220934,27in 4K Gaming Monitor,1,389.99,06/03/19 21:37,"976 Sunset St, Los Angeles, CA 90001" +220935,USB-C Charging Cable,1,11.95,06/14/19 23:19,"698 2nd St, Dallas, TX 75001" +220936,AAA Batteries (4-pack),1,2.99,06/26/19 15:25,"973 Ridge St, Atlanta, GA 30301" +220937,USB-C Charging Cable,1,11.95,06/25/19 23:41,"880 Lakeview St, San Francisco, CA 94016" +220938,iPhone,1,700,06/08/19 12:57,"653 6th St, New York City, NY 10001" +220938,Lightning Charging Cable,1,14.95,06/08/19 12:57,"653 6th St, New York City, NY 10001" +220939,20in Monitor,1,109.99,06/16/19 00:50,"380 Cherry St, San Francisco, CA 94016" +220940,27in FHD Monitor,1,149.99,06/19/19 15:41,"866 River St, Boston, MA 02215" +220941,34in Ultrawide Monitor,1,379.99,06/14/19 11:16,"630 Chestnut St, Los Angeles, CA 90001" +220942,AAA Batteries (4-pack),1,2.99,06/20/19 12:18,"146 6th St, Los Angeles, CA 90001" +220943,Lightning Charging Cable,1,14.95,06/06/19 13:04,"268 Cherry St, Los Angeles, CA 90001" +220944,AAA Batteries (4-pack),1,2.99,06/11/19 17:35,"625 Hickory St, San Francisco, CA 94016" +220945,AA Batteries (4-pack),1,3.84,06/17/19 23:50,"544 Walnut St, San Francisco, CA 94016" +220946,Lightning Charging Cable,1,14.95,06/24/19 19:35,"123 Chestnut St, San Francisco, CA 94016" +220947,USB-C Charging Cable,1,11.95,06/10/19 18:13,"624 10th St, Seattle, WA 98101" +220948,AA Batteries (4-pack),2,3.84,06/21/19 21:30,"109 Hickory St, Dallas, TX 75001" +220949,AA Batteries (4-pack),1,3.84,06/19/19 18:26,"404 Wilson St, Austin, TX 73301" +220950,34in Ultrawide Monitor,1,379.99,06/12/19 15:31,"680 Ridge St, Seattle, WA 98101" +220951,Bose SoundSport Headphones,1,99.99,06/23/19 10:24,"722 9th St, New York City, NY 10001" +220952,Google Phone,1,600,06/25/19 21:18,"140 10th St, San Francisco, CA 94016" +220953,Macbook Pro Laptop,1,1700,06/19/19 11:26,"841 Walnut St, New York City, NY 10001" +220954,AAA Batteries (4-pack),2,2.99,06/15/19 13:09,"99 Pine St, San Francisco, CA 94016" +220955,AAA Batteries (4-pack),6,2.99,06/17/19 05:06,"224 Lake St, San Francisco, CA 94016" +220956,Bose SoundSport Headphones,1,99.99,06/01/19 22:07,"392 12th St, New York City, NY 10001" +220957,AA Batteries (4-pack),1,3.84,06/03/19 22:58,"806 13th St, Los Angeles, CA 90001" +220958,USB-C Charging Cable,1,11.95,06/06/19 16:45,"535 Church St, Atlanta, GA 30301" +220959,Lightning Charging Cable,1,14.95,06/08/19 12:17,"97 Lake St, Dallas, TX 75001" +220960,Flatscreen TV,1,300,06/08/19 20:33,"61 Church St, Los Angeles, CA 90001" +220961,ThinkPad Laptop,1,999.99,06/06/19 19:49,"341 Chestnut St, Dallas, TX 75001" +220962,27in FHD Monitor,1,149.99,06/27/19 13:18,"678 Forest St, Atlanta, GA 30301" +220963,AAA Batteries (4-pack),1,2.99,06/04/19 11:26,"270 Spruce St, San Francisco, CA 94016" +220964,AA Batteries (4-pack),1,3.84,06/09/19 09:05,"622 Meadow St, Boston, MA 02215" +220965,LG Dryer,1,600.0,06/02/19 20:56,"135 Washington St, Boston, MA 02215" +220966,34in Ultrawide Monitor,1,379.99,06/24/19 14:37,"207 7th St, Austin, TX 73301" +220967,iPhone,1,700,06/06/19 10:09,"743 6th St, San Francisco, CA 94016" +220968,Lightning Charging Cable,1,14.95,06/16/19 22:53,"886 Sunset St, Los Angeles, CA 90001" +220969,27in FHD Monitor,1,149.99,06/08/19 12:45,"418 Forest St, Boston, MA 02215" +220970,27in FHD Monitor,1,149.99,06/18/19 18:44,"689 Madison St, San Francisco, CA 94016" +220971,27in 4K Gaming Monitor,1,389.99,06/05/19 23:36,"974 Forest St, Boston, MA 02215" +220972,USB-C Charging Cable,1,11.95,06/18/19 19:11,"952 Madison St, Seattle, WA 98101" +220973,Macbook Pro Laptop,1,1700,06/13/19 16:05,"775 10th St, Austin, TX 73301" +220974,34in Ultrawide Monitor,1,379.99,06/11/19 23:19,"815 2nd St, Los Angeles, CA 90001" +220975,Wired Headphones,1,11.99,06/13/19 21:16,"386 2nd St, Atlanta, GA 30301" +220976,27in FHD Monitor,1,149.99,06/06/19 08:04,"997 Main St, Austin, TX 73301" +220977,AAA Batteries (4-pack),1,2.99,06/01/19 09:39,"210 Maple St, Seattle, WA 98101" +220978,Flatscreen TV,1,300,06/19/19 09:25,"983 6th St, Seattle, WA 98101" +220979,Apple Airpods Headphones,1,150,06/08/19 22:24,"731 6th St, San Francisco, CA 94016" +220980,Apple Airpods Headphones,1,150,06/19/19 21:34,"205 Hickory St, Austin, TX 73301" +220981,AA Batteries (4-pack),3,3.84,06/25/19 12:35,"152 Highland St, San Francisco, CA 94016" +220982,AAA Batteries (4-pack),1,2.99,06/23/19 13:23,"362 2nd St, Los Angeles, CA 90001" +220983,AA Batteries (4-pack),3,3.84,06/21/19 17:20,"21 River St, New York City, NY 10001" +220984,Lightning Charging Cable,1,14.95,06/19/19 16:42,"731 Wilson St, San Francisco, CA 94016" +220985,Bose SoundSport Headphones,1,99.99,06/13/19 12:47,"188 4th St, Los Angeles, CA 90001" +220986,AA Batteries (4-pack),1,3.84,06/03/19 19:44,"354 Walnut St, San Francisco, CA 94016" +220987,34in Ultrawide Monitor,1,379.99,06/25/19 12:57,"242 11th St, Los Angeles, CA 90001" +220988,Lightning Charging Cable,1,14.95,06/27/19 19:57,"850 Lincoln St, San Francisco, CA 94016" +220989,34in Ultrawide Monitor,1,379.99,06/09/19 21:07,"814 North St, Los Angeles, CA 90001" +220990,USB-C Charging Cable,1,11.95,06/09/19 14:26,"69 Church St, Los Angeles, CA 90001" +220991,USB-C Charging Cable,1,11.95,06/29/19 14:35,"6 River St, Atlanta, GA 30301" +220991,USB-C Charging Cable,1,11.95,06/29/19 14:35,"6 River St, Atlanta, GA 30301" +220992,20in Monitor,1,109.99,06/28/19 19:18,"233 South St, Portland, OR 97035" +220993,Bose SoundSport Headphones,1,99.99,06/02/19 19:29,"973 Hickory St, San Francisco, CA 94016" +220994,AAA Batteries (4-pack),1,2.99,06/20/19 13:17,"386 Hickory St, Seattle, WA 98101" +220995,Bose SoundSport Headphones,1,99.99,06/26/19 22:01,"949 Maple St, Dallas, TX 75001" +220996,20in Monitor,1,109.99,06/10/19 20:03,"23 Chestnut St, Austin, TX 73301" +220997,AA Batteries (4-pack),1,3.84,06/25/19 18:02,"660 Adams St, Boston, MA 02215" +220998,USB-C Charging Cable,1,11.95,06/24/19 07:27,"548 14th St, Los Angeles, CA 90001" +220999,Lightning Charging Cable,1,14.95,06/05/19 17:48,"364 Cherry St, Los Angeles, CA 90001" +221000,iPhone,1,700,06/29/19 23:30,"846 Madison St, Portland, OR 97035" +221001,Lightning Charging Cable,1,14.95,06/15/19 21:23,"297 Main St, Dallas, TX 75001" +221002,Wired Headphones,1,11.99,06/17/19 16:25,"694 Elm St, San Francisco, CA 94016" +221003,USB-C Charging Cable,1,11.95,06/20/19 03:55,"66 Church St, Boston, MA 02215" +221004,Lightning Charging Cable,1,14.95,06/24/19 14:55,"560 Park St, Dallas, TX 75001" +221005,Lightning Charging Cable,1,14.95,06/07/19 16:34,"25 Adams St, New York City, NY 10001" +221006,AAA Batteries (4-pack),1,2.99,06/03/19 18:09,"205 2nd St, New York City, NY 10001" +221007,USB-C Charging Cable,2,11.95,06/07/19 16:18,"788 6th St, Los Angeles, CA 90001" +221008,Lightning Charging Cable,1,14.95,06/19/19 17:37,"865 7th St, Portland, OR 97035" +221009,USB-C Charging Cable,1,11.95,06/12/19 14:03,"492 Main St, New York City, NY 10001" +221010,Bose SoundSport Headphones,1,99.99,06/06/19 17:08,"218 Jackson St, San Francisco, CA 94016" +221011,Apple Airpods Headphones,1,150,06/04/19 22:35,"408 Church St, Los Angeles, CA 90001" +221012,Wired Headphones,1,11.99,06/16/19 17:15,"961 Hill St, Boston, MA 02215" +221013,Google Phone,1,600,06/19/19 21:55,"749 Madison St, New York City, NY 10001" +221013,USB-C Charging Cable,2,11.95,06/19/19 21:55,"749 Madison St, New York City, NY 10001" +221014,AA Batteries (4-pack),1,3.84,06/21/19 11:20,"798 Johnson St, Dallas, TX 75001" +221015,iPhone,1,700,06/24/19 19:09,"531 Jackson St, New York City, NY 10001" +221016,USB-C Charging Cable,1,11.95,06/11/19 00:43,"236 Wilson St, Los Angeles, CA 90001" +221017,USB-C Charging Cable,1,11.95,06/19/19 03:54,"320 11th St, New York City, NY 10001" +221018,Bose SoundSport Headphones,1,99.99,06/03/19 09:52,"471 5th St, Los Angeles, CA 90001" +221019,Wired Headphones,3,11.99,06/26/19 05:05,"124 Church St, Seattle, WA 98101" +221020,AA Batteries (4-pack),2,3.84,06/17/19 22:45,"233 2nd St, Atlanta, GA 30301" +221021,Bose SoundSport Headphones,1,99.99,06/04/19 10:27,"181 Chestnut St, New York City, NY 10001" +221022,AA Batteries (4-pack),1,3.84,06/10/19 09:05,"140 North St, San Francisco, CA 94016" +221023,USB-C Charging Cable,2,11.95,06/25/19 21:14,"544 Dogwood St, San Francisco, CA 94016" +221024,AAA Batteries (4-pack),1,2.99,06/26/19 17:00,"445 Church St, Boston, MA 02215" +221025,27in FHD Monitor,1,149.99,06/11/19 18:38,"733 Madison St, Los Angeles, CA 90001" +221026,27in FHD Monitor,1,149.99,06/08/19 22:09,"970 1st St, Atlanta, GA 30301" +221027,Wired Headphones,1,11.99,06/21/19 13:18,"161 Jefferson St, Los Angeles, CA 90001" +221028,Apple Airpods Headphones,1,150,06/26/19 13:17,"946 Madison St, San Francisco, CA 94016" +221029,27in FHD Monitor,1,149.99,06/08/19 21:42,"349 1st St, San Francisco, CA 94016" +221030,Lightning Charging Cable,2,14.95,06/06/19 15:28,"351 Forest St, Portland, ME 04101" +221031,Bose SoundSport Headphones,1,99.99,06/13/19 18:52,"255 4th St, Seattle, WA 98101" +221032,Wired Headphones,1,11.99,06/21/19 18:00,"299 13th St, Los Angeles, CA 90001" +221033,Wired Headphones,1,11.99,06/02/19 22:42,"953 Johnson St, Los Angeles, CA 90001" +221034,USB-C Charging Cable,1,11.95,06/28/19 16:02,"835 South St, New York City, NY 10001" +221035,AA Batteries (4-pack),1,3.84,06/16/19 13:13,"472 12th St, Los Angeles, CA 90001" +221036,27in FHD Monitor,1,149.99,06/13/19 13:08,"235 Jackson St, Atlanta, GA 30301" +221037,Lightning Charging Cable,1,14.95,06/11/19 13:21,"185 Spruce St, Austin, TX 73301" +221038,Flatscreen TV,1,300,06/09/19 01:12,"704 Lake St, Los Angeles, CA 90001" +221039,Flatscreen TV,1,300,06/20/19 21:39,"509 4th St, Los Angeles, CA 90001" +221040,Flatscreen TV,1,300,06/09/19 11:13,"568 Chestnut St, Atlanta, GA 30301" +221041,AAA Batteries (4-pack),2,2.99,06/06/19 18:02,"659 Ridge St, New York City, NY 10001" +221042,Lightning Charging Cable,1,14.95,06/20/19 00:50,"750 13th St, Los Angeles, CA 90001" +221043,27in 4K Gaming Monitor,1,389.99,06/08/19 17:40,"268 5th St, New York City, NY 10001" +221044,34in Ultrawide Monitor,1,379.99,06/25/19 00:23,"528 6th St, San Francisco, CA 94016" +221045,Wired Headphones,1,11.99,06/19/19 18:22,"996 Sunset St, San Francisco, CA 94016" +221046,AAA Batteries (4-pack),2,2.99,06/27/19 20:31,"18 Hickory St, San Francisco, CA 94016" +221047,Apple Airpods Headphones,1,150,06/04/19 19:09,"819 Madison St, Los Angeles, CA 90001" +221048,Bose SoundSport Headphones,1,99.99,06/08/19 15:00,"110 Pine St, New York City, NY 10001" +221049,AA Batteries (4-pack),1,3.84,06/17/19 11:02,"626 Park St, Portland, OR 97035" +221050,Lightning Charging Cable,2,14.95,06/03/19 01:29,"952 Highland St, Seattle, WA 98101" +221051,Apple Airpods Headphones,1,150,06/10/19 18:03,"407 Cedar St, San Francisco, CA 94016" +221052,Wired Headphones,1,11.99,06/09/19 10:48,"228 4th St, Austin, TX 73301" +221053,Bose SoundSport Headphones,1,99.99,06/12/19 21:15,"873 13th St, San Francisco, CA 94016" +221054,Google Phone,1,600,06/30/19 03:50,"404 Jackson St, San Francisco, CA 94016" +221054,USB-C Charging Cable,1,11.95,06/30/19 03:50,"404 Jackson St, San Francisco, CA 94016" +221055,Google Phone,1,600,06/01/19 16:08,"148 Park St, New York City, NY 10001" +221055,USB-C Charging Cable,1,11.95,06/01/19 16:08,"148 Park St, New York City, NY 10001" +221055,Bose SoundSport Headphones,1,99.99,06/01/19 16:08,"148 Park St, New York City, NY 10001" +221056,Apple Airpods Headphones,1,150,06/20/19 11:39,"272 8th St, New York City, NY 10001" +221057,Lightning Charging Cable,1,14.95,06/14/19 12:40,"17 Highland St, Boston, MA 02215" +221058,AA Batteries (4-pack),1,3.84,06/24/19 20:47,"58 Wilson St, Seattle, WA 98101" +221059,AA Batteries (4-pack),1,3.84,06/16/19 15:39,"815 Lincoln St, Portland, OR 97035" +221060,Wired Headphones,1,11.99,06/09/19 20:42,"806 Church St, Portland, OR 97035" +221061,Bose SoundSport Headphones,1,99.99,06/22/19 09:35,"845 Johnson St, Los Angeles, CA 90001" +221062,USB-C Charging Cable,1,11.95,06/17/19 20:04,"578 14th St, Boston, MA 02215" +221063,AAA Batteries (4-pack),2,2.99,06/30/19 22:02,"549 1st St, Portland, OR 97035" +221064,Flatscreen TV,1,300,06/07/19 09:03,"499 Maple St, San Francisco, CA 94016" +221065,USB-C Charging Cable,1,11.95,06/30/19 02:40,"879 Church St, New York City, NY 10001" +221066,34in Ultrawide Monitor,1,379.99,06/22/19 16:57,"689 Walnut St, New York City, NY 10001" +221067,Bose SoundSport Headphones,1,99.99,06/24/19 08:50,"172 14th St, Dallas, TX 75001" +221068,Lightning Charging Cable,1,14.95,06/16/19 22:02,"381 West St, Los Angeles, CA 90001" +221069,34in Ultrawide Monitor,1,379.99,06/26/19 17:13,"355 12th St, Austin, TX 73301" +221070,Macbook Pro Laptop,1,1700,06/17/19 10:40,"803 West St, Atlanta, GA 30301" +221071,USB-C Charging Cable,1,11.95,06/26/19 09:43,"293 River St, San Francisco, CA 94016" +221072,AAA Batteries (4-pack),2,2.99,06/23/19 23:36,"457 Church St, San Francisco, CA 94016" +221073,AAA Batteries (4-pack),1,2.99,06/14/19 18:18,"176 Adams St, San Francisco, CA 94016" +221074,20in Monitor,1,109.99,06/02/19 20:51,"690 Adams St, Seattle, WA 98101" +221075,AA Batteries (4-pack),1,3.84,06/24/19 20:44,"438 Cherry St, Dallas, TX 75001" +221076,Lightning Charging Cable,1,14.95,06/23/19 10:33,"507 7th St, Boston, MA 02215" +221077,27in 4K Gaming Monitor,1,389.99,06/07/19 10:37,"805 North St, San Francisco, CA 94016" +221077,Wired Headphones,2,11.99,06/07/19 10:37,"805 North St, San Francisco, CA 94016" +221078,AA Batteries (4-pack),1,3.84,06/14/19 13:25,"354 10th St, Atlanta, GA 30301" +221079,Wired Headphones,1,11.99,06/21/19 10:18,"174 11th St, New York City, NY 10001" +221080,27in FHD Monitor,1,149.99,06/13/19 10:08,"103 2nd St, San Francisco, CA 94016" +221081,27in FHD Monitor,1,149.99,06/17/19 07:36,"84 North St, San Francisco, CA 94016" +221082,Lightning Charging Cable,1,14.95,06/15/19 21:05,"800 Cherry St, Atlanta, GA 30301" +221083,AA Batteries (4-pack),1,3.84,06/26/19 10:39,"373 Willow St, San Francisco, CA 94016" +221084,ThinkPad Laptop,1,999.99,06/06/19 12:30,"214 13th St, San Francisco, CA 94016" +221085,USB-C Charging Cable,1,11.95,06/06/19 18:45,"423 Lincoln St, New York City, NY 10001" +221086,Google Phone,1,600,06/21/19 23:20,"858 1st St, San Francisco, CA 94016" +221087,Lightning Charging Cable,1,14.95,06/25/19 16:17,"15 Madison St, New York City, NY 10001" +221088,Apple Airpods Headphones,1,150,06/17/19 00:53,"939 Jefferson St, Atlanta, GA 30301" +221089,Wired Headphones,1,11.99,06/14/19 10:18,"931 Hickory St, New York City, NY 10001" +221090,AA Batteries (4-pack),1,3.84,06/04/19 17:07,"696 Center St, Atlanta, GA 30301" +221091,Wired Headphones,1,11.99,06/13/19 10:49,"21 Walnut St, Austin, TX 73301" +221092,Apple Airpods Headphones,1,150,06/07/19 11:46,"451 Cherry St, Atlanta, GA 30301" +221093,AAA Batteries (4-pack),2,2.99,06/13/19 10:10,"640 Main St, San Francisco, CA 94016" +221094,Wired Headphones,1,11.99,06/19/19 18:27,"729 7th St, Boston, MA 02215" +221095,USB-C Charging Cable,1,11.95,06/05/19 14:39,"496 Wilson St, Portland, OR 97035" +221096,USB-C Charging Cable,1,11.95,06/03/19 15:09,"84 Ridge St, Atlanta, GA 30301" +221097,USB-C Charging Cable,1,11.95,06/04/19 11:43,"300 Forest St, Boston, MA 02215" +221098,AAA Batteries (4-pack),1,2.99,06/20/19 18:42,"253 Church St, Seattle, WA 98101" +221099,iPhone,1,700,06/26/19 09:50,"119 11th St, Austin, TX 73301" +221100,Flatscreen TV,1,300,06/06/19 21:53,"23 Maple St, Seattle, WA 98101" +221101,Wired Headphones,1,11.99,06/19/19 19:31,"908 Meadow St, Seattle, WA 98101" +221102,AAA Batteries (4-pack),1,2.99,06/18/19 15:32,"944 7th St, San Francisco, CA 94016" +221103,AA Batteries (4-pack),2,3.84,06/30/19 09:20,"827 Sunset St, Austin, TX 73301" +221104,Wired Headphones,2,11.99,06/04/19 23:45,"449 Hill St, Portland, OR 97035" +221105,AAA Batteries (4-pack),1,2.99,06/15/19 10:31,"122 Dogwood St, Dallas, TX 75001" +221106,Bose SoundSport Headphones,1,99.99,06/03/19 20:17,"635 11th St, Los Angeles, CA 90001" +221107,34in Ultrawide Monitor,1,379.99,06/24/19 11:51,"167 Church St, Portland, OR 97035" +221108,Bose SoundSport Headphones,1,99.99,06/12/19 12:59,"354 North St, Austin, TX 73301" +221109,AA Batteries (4-pack),1,3.84,06/10/19 22:17,"588 Dogwood St, Los Angeles, CA 90001" +221110,Google Phone,1,600,06/18/19 08:38,"669 12th St, Austin, TX 73301" +221110,USB-C Charging Cable,1,11.95,06/18/19 08:38,"669 12th St, Austin, TX 73301" +221110,Wired Headphones,2,11.99,06/18/19 08:38,"669 12th St, Austin, TX 73301" +221111,Lightning Charging Cable,1,14.95,06/16/19 08:55,"180 13th St, Los Angeles, CA 90001" +221112,Google Phone,1,600,06/09/19 13:35,"664 14th St, Boston, MA 02215" +221113,Apple Airpods Headphones,1,150,06/04/19 22:23,"291 9th St, San Francisco, CA 94016" +221114,Bose SoundSport Headphones,1,99.99,06/19/19 15:55,"598 11th St, Los Angeles, CA 90001" +221115,Lightning Charging Cable,1,14.95,06/14/19 12:56,"621 Johnson St, Atlanta, GA 30301" +221116,27in 4K Gaming Monitor,1,389.99,06/07/19 11:38,"723 Cherry St, Los Angeles, CA 90001" +221117,27in FHD Monitor,1,149.99,06/12/19 20:54,"814 Jefferson St, San Francisco, CA 94016" +221118,27in 4K Gaming Monitor,1,389.99,06/26/19 12:57,"972 Wilson St, San Francisco, CA 94016" +221119,Lightning Charging Cable,1,14.95,06/29/19 11:36,"341 Pine St, Portland, OR 97035" +221120,Wired Headphones,1,11.99,06/23/19 20:27,"125 2nd St, New York City, NY 10001" +221121,iPhone,1,700,06/14/19 09:55,"543 Chestnut St, Los Angeles, CA 90001" +221122,AA Batteries (4-pack),2,3.84,06/11/19 13:09,"241 Adams St, Los Angeles, CA 90001" +221123,Bose SoundSport Headphones,1,99.99,06/15/19 12:14,"1 1st St, San Francisco, CA 94016" +221124,USB-C Charging Cable,1,11.95,06/27/19 10:46,"794 1st St, Atlanta, GA 30301" +221125,Wired Headphones,1,11.99,06/23/19 12:50,"75 Hickory St, New York City, NY 10001" +221126,USB-C Charging Cable,1,11.95,06/11/19 15:01,"540 Hickory St, Los Angeles, CA 90001" +221127,Google Phone,1,600,06/17/19 19:59,"849 Dogwood St, Los Angeles, CA 90001" +221128,Flatscreen TV,1,300,06/25/19 14:08,"383 Park St, Portland, OR 97035" +221129,AA Batteries (4-pack),1,3.84,06/19/19 22:53,"959 Spruce St, Austin, TX 73301" +221130,Google Phone,1,600,06/13/19 20:11,"633 Hill St, Dallas, TX 75001" +221130,USB-C Charging Cable,1,11.95,06/13/19 20:11,"633 Hill St, Dallas, TX 75001" +221131,Apple Airpods Headphones,1,150,06/04/19 12:16,"746 6th St, Seattle, WA 98101" +221132,Lightning Charging Cable,1,14.95,06/21/19 10:13,"722 North St, Boston, MA 02215" +221133,AA Batteries (4-pack),3,3.84,06/12/19 18:20,"308 Sunset St, Dallas, TX 75001" +221134,27in FHD Monitor,2,149.99,06/18/19 08:47,"721 Sunset St, San Francisco, CA 94016" +221135,27in 4K Gaming Monitor,1,389.99,06/12/19 07:53,"78 Johnson St, San Francisco, CA 94016" +221136,Bose SoundSport Headphones,1,99.99,06/21/19 18:34,"24 River St, San Francisco, CA 94016" +221137,Lightning Charging Cable,1,14.95,06/15/19 18:18,"107 13th St, New York City, NY 10001" +221138,27in 4K Gaming Monitor,1,389.99,06/26/19 17:18,"161 7th St, Los Angeles, CA 90001" +221139,Lightning Charging Cable,1,14.95,06/17/19 21:35,"250 Hickory St, Seattle, WA 98101" +221140,Lightning Charging Cable,1,14.95,06/17/19 18:37,"250 13th St, San Francisco, CA 94016" +221141,AA Batteries (4-pack),1,3.84,06/07/19 07:21,"562 Jefferson St, Los Angeles, CA 90001" +221142,iPhone,1,700,06/17/19 17:39,"253 Madison St, Atlanta, GA 30301" +221143,Apple Airpods Headphones,1,150,06/16/19 14:30,"785 Lake St, Boston, MA 02215" +221144,iPhone,1,700,06/10/19 22:41,"643 Spruce St, San Francisco, CA 94016" +221145,Apple Airpods Headphones,1,150,06/17/19 12:42,"668 South St, Boston, MA 02215" +221146,USB-C Charging Cable,1,11.95,06/25/19 18:07,"111 West St, Austin, TX 73301" +221147,Lightning Charging Cable,1,14.95,06/13/19 00:57,"861 Center St, Boston, MA 02215" +221148,AA Batteries (4-pack),1,3.84,06/03/19 13:28,"49 12th St, Dallas, TX 75001" +221149,Apple Airpods Headphones,1,150,06/29/19 18:16,"146 7th St, Los Angeles, CA 90001" +221150,AA Batteries (4-pack),1,3.84,06/04/19 12:55,"460 Highland St, Los Angeles, CA 90001" +221151,Flatscreen TV,1,300,06/04/19 15:45,"953 Church St, Boston, MA 02215" +221152,AA Batteries (4-pack),1,3.84,06/27/19 20:42,"710 Dogwood St, San Francisco, CA 94016" +221153,Wired Headphones,1,11.99,06/24/19 07:40,"488 Pine St, Boston, MA 02215" +221154,Macbook Pro Laptop,1,1700,06/12/19 08:24,"384 Main St, San Francisco, CA 94016" +221155,Google Phone,1,600,06/19/19 19:40,"903 Center St, Austin, TX 73301" +221156,Lightning Charging Cable,1,14.95,06/04/19 22:05,"772 Lincoln St, San Francisco, CA 94016" +221157,AAA Batteries (4-pack),1,2.99,06/10/19 20:12,"776 Ridge St, Los Angeles, CA 90001" +221158,Bose SoundSport Headphones,1,99.99,06/14/19 17:01,"708 8th St, Boston, MA 02215" +221159,27in FHD Monitor,1,149.99,06/28/19 22:14,"822 9th St, Seattle, WA 98101" +221160,Apple Airpods Headphones,1,150,06/18/19 10:44,"2 River St, Portland, ME 04101" +221161,Bose SoundSport Headphones,1,99.99,06/09/19 13:10,"312 West St, New York City, NY 10001" +221162,Lightning Charging Cable,1,14.95,06/24/19 08:50,"555 Forest St, Dallas, TX 75001" +221163,34in Ultrawide Monitor,1,379.99,06/26/19 16:15,"400 Hickory St, New York City, NY 10001" +221164,AAA Batteries (4-pack),1,2.99,06/15/19 17:12,"518 Church St, New York City, NY 10001" +221165,USB-C Charging Cable,1,11.95,06/10/19 10:55,"220 Church St, Atlanta, GA 30301" +221166,Lightning Charging Cable,2,14.95,06/10/19 21:22,"298 5th St, Austin, TX 73301" +221167,27in FHD Monitor,1,149.99,06/18/19 09:26,"141 Jefferson St, Atlanta, GA 30301" +221168,27in FHD Monitor,1,149.99,06/30/19 13:21,"41 Cedar St, San Francisco, CA 94016" +221169,AAA Batteries (4-pack),1,2.99,06/01/19 21:47,"395 River St, San Francisco, CA 94016" +221170,Flatscreen TV,1,300,06/20/19 17:48,"695 2nd St, Austin, TX 73301" +221171,Flatscreen TV,1,300,06/06/19 14:15,"905 Highland St, Boston, MA 02215" +221172,27in 4K Gaming Monitor,1,389.99,06/13/19 15:00,"949 Jackson St, New York City, NY 10001" +221173,Google Phone,1,600,06/23/19 17:47,"119 4th St, New York City, NY 10001" +221174,34in Ultrawide Monitor,1,379.99,06/19/19 22:12,"265 Spruce St, San Francisco, CA 94016" +221175,USB-C Charging Cable,1,11.95,06/01/19 18:56,"92 Center St, San Francisco, CA 94016" +221176,Wired Headphones,1,11.99,06/10/19 17:02,"362 Washington St, San Francisco, CA 94016" +221177,AA Batteries (4-pack),2,3.84,06/17/19 13:00,"416 Jackson St, Seattle, WA 98101" +221178,USB-C Charging Cable,1,11.95,06/14/19 20:50,"60 North St, Atlanta, GA 30301" +221179,iPhone,1,700,06/15/19 12:13,"634 Dogwood St, Los Angeles, CA 90001" +221180,Wired Headphones,1,11.99,06/16/19 06:28,"284 North St, San Francisco, CA 94016" +221181,Wired Headphones,1,11.99,06/11/19 16:22,"575 Hill St, San Francisco, CA 94016" +221182,AAA Batteries (4-pack),1,2.99,06/22/19 14:40,"912 6th St, San Francisco, CA 94016" +221183,iPhone,1,700,06/08/19 09:25,"712 7th St, Boston, MA 02215" +221184,Lightning Charging Cable,1,14.95,06/12/19 10:08,"404 1st St, Boston, MA 02215" +221185,34in Ultrawide Monitor,1,379.99,06/01/19 15:39,"694 Maple St, Dallas, TX 75001" +221186,AAA Batteries (4-pack),2,2.99,06/09/19 08:11,"695 West St, Los Angeles, CA 90001" +221187,AAA Batteries (4-pack),6,2.99,06/04/19 16:41,"630 Elm St, Boston, MA 02215" +221188,Vareebadd Phone,1,400,06/13/19 14:11,"388 13th St, New York City, NY 10001" +221188,Wired Headphones,1,11.99,06/13/19 14:11,"388 13th St, New York City, NY 10001" +221189,Lightning Charging Cable,1,14.95,06/19/19 13:12,"470 1st St, San Francisco, CA 94016" +221190,Apple Airpods Headphones,1,150,06/25/19 09:15,"565 Church St, Seattle, WA 98101" +221191,Apple Airpods Headphones,1,150,06/13/19 00:52,"286 4th St, Los Angeles, CA 90001" +221192,34in Ultrawide Monitor,1,379.99,06/27/19 18:44,"109 Lakeview St, Seattle, WA 98101" +221193,iPhone,1,700,06/17/19 15:37,"937 Lakeview St, Dallas, TX 75001" +221194,iPhone,1,700,06/17/19 08:09,"434 Hickory St, Seattle, WA 98101" +221195,27in 4K Gaming Monitor,1,389.99,06/28/19 12:00,"430 Pine St, Dallas, TX 75001" +221196,Wired Headphones,1,11.99,06/12/19 12:03,"643 Meadow St, Boston, MA 02215" +221197,27in FHD Monitor,1,149.99,06/25/19 10:06,"472 10th St, New York City, NY 10001" +221198,Lightning Charging Cable,1,14.95,07/01/19 02:23,"547 4th St, San Francisco, CA 94016" +221199,AAA Batteries (4-pack),1,2.99,06/06/19 21:29,"934 Highland St, Dallas, TX 75001" +221200,USB-C Charging Cable,1,11.95,06/15/19 14:16,"15 7th St, Seattle, WA 98101" +221201,Google Phone,1,600,06/26/19 02:44,"326 Chestnut St, San Francisco, CA 94016" +221201,USB-C Charging Cable,1,11.95,06/26/19 02:44,"326 Chestnut St, San Francisco, CA 94016" +221201,Wired Headphones,1,11.99,06/26/19 02:44,"326 Chestnut St, San Francisco, CA 94016" +221202,Lightning Charging Cable,1,14.95,06/18/19 12:51,"34 Elm St, San Francisco, CA 94016" +221203,Wired Headphones,1,11.99,06/27/19 11:24,"294 Church St, Dallas, TX 75001" +221204,27in FHD Monitor,1,149.99,06/25/19 15:24,"823 Ridge St, Los Angeles, CA 90001" +221205,Lightning Charging Cable,1,14.95,06/05/19 18:50,"225 Hill St, Atlanta, GA 30301" +221206,Wired Headphones,1,11.99,06/18/19 16:53,"328 14th St, San Francisco, CA 94016" +221207,27in FHD Monitor,1,149.99,06/25/19 17:26,"953 Hickory St, San Francisco, CA 94016" +221208,Apple Airpods Headphones,1,150,06/03/19 09:34,"747 Washington St, Austin, TX 73301" +221209,Bose SoundSport Headphones,1,99.99,06/10/19 14:34,"683 1st St, New York City, NY 10001" +221210,27in FHD Monitor,1,149.99,06/06/19 09:42,"229 Pine St, New York City, NY 10001" +221211,Macbook Pro Laptop,1,1700,06/26/19 15:26,"516 10th St, Boston, MA 02215" +221212,Apple Airpods Headphones,1,150,06/06/19 21:53,"138 Spruce St, San Francisco, CA 94016" +221213,Macbook Pro Laptop,1,1700,06/01/19 08:13,"38 Cedar St, Boston, MA 02215" +221214,Bose SoundSport Headphones,1,99.99,06/11/19 01:49,"627 Pine St, Los Angeles, CA 90001" +221215,AAA Batteries (4-pack),1,2.99,06/27/19 11:28,"214 Lincoln St, Dallas, TX 75001" +221216,AAA Batteries (4-pack),1,2.99,06/19/19 12:51,"998 South St, Austin, TX 73301" +221217,Macbook Pro Laptop,1,1700,06/03/19 18:58,"227 Sunset St, Boston, MA 02215" +221218,LG Dryer,1,600.0,06/20/19 12:11,"287 Maple St, Seattle, WA 98101" +221219,AA Batteries (4-pack),1,3.84,06/18/19 22:01,"702 Highland St, Boston, MA 02215" +221220,Wired Headphones,1,11.99,06/26/19 07:45,"446 Lincoln St, Austin, TX 73301" +221221,USB-C Charging Cable,1,11.95,06/13/19 18:10,"203 South St, Portland, OR 97035" +221222,Lightning Charging Cable,1,14.95,06/10/19 13:11,"825 Chestnut St, Los Angeles, CA 90001" +221223,Apple Airpods Headphones,1,150,06/18/19 08:35,"596 2nd St, Los Angeles, CA 90001" +221224,iPhone,1,700,06/11/19 23:52,"586 Highland St, Atlanta, GA 30301" +221225,Bose SoundSport Headphones,1,99.99,06/27/19 00:36,"46 5th St, San Francisco, CA 94016" +221226,USB-C Charging Cable,1,11.95,06/14/19 15:15,"941 Jackson St, Seattle, WA 98101" +221227,ThinkPad Laptop,1,999.99,06/16/19 09:06,"500 Lake St, New York City, NY 10001" +221228,34in Ultrawide Monitor,1,379.99,06/08/19 19:12,"624 Spruce St, Los Angeles, CA 90001" +221229,Lightning Charging Cable,1,14.95,06/01/19 23:51,"455 Washington St, Austin, TX 73301" +221230,Lightning Charging Cable,1,14.95,06/27/19 10:46,"198 Hickory St, San Francisco, CA 94016" +221231,USB-C Charging Cable,1,11.95,06/19/19 01:07,"275 Walnut St, San Francisco, CA 94016" +221232,Wired Headphones,1,11.99,06/24/19 14:02,"740 Hickory St, Atlanta, GA 30301" +221233,Bose SoundSport Headphones,1,99.99,06/24/19 14:30,"203 Lake St, San Francisco, CA 94016" +221234,27in 4K Gaming Monitor,1,389.99,06/26/19 09:01,"762 North St, Atlanta, GA 30301" +221235,Lightning Charging Cable,1,14.95,06/29/19 20:55,"567 5th St, Los Angeles, CA 90001" +221236,Lightning Charging Cable,1,14.95,06/19/19 09:29,"625 12th St, Seattle, WA 98101" +221237,USB-C Charging Cable,1,11.95,06/22/19 14:49,"849 2nd St, Dallas, TX 75001" +221238,AA Batteries (4-pack),1,3.84,06/13/19 12:27,"444 14th St, Atlanta, GA 30301" +221239,AA Batteries (4-pack),3,3.84,06/01/19 06:50,"337 Main St, Boston, MA 02215" +221240,Lightning Charging Cable,1,14.95,06/20/19 08:28,"231 Walnut St, San Francisco, CA 94016" +221241,AAA Batteries (4-pack),1,2.99,06/10/19 17:03,"931 11th St, Boston, MA 02215" +221242,Bose SoundSport Headphones,1,99.99,06/05/19 06:36,"958 7th St, Seattle, WA 98101" +221243,Wired Headphones,1,11.99,06/10/19 16:42,"693 Sunset St, San Francisco, CA 94016" +221244,iPhone,1,700,06/01/19 16:52,"228 Walnut St, Dallas, TX 75001" +221245,20in Monitor,1,109.99,06/22/19 12:22,"855 Pine St, Seattle, WA 98101" +221246,Lightning Charging Cable,1,14.95,06/08/19 18:21,"189 Forest St, Boston, MA 02215" +221247,USB-C Charging Cable,2,11.95,06/15/19 19:48,"253 Cherry St, Seattle, WA 98101" +221248,Wired Headphones,1,11.99,06/03/19 18:52,"170 Sunset St, New York City, NY 10001" +221249,Lightning Charging Cable,1,14.95,06/29/19 09:23,"446 River St, New York City, NY 10001" +221250,AA Batteries (4-pack),1,3.84,06/12/19 19:04,"446 Lake St, San Francisco, CA 94016" +221251,AAA Batteries (4-pack),1,2.99,06/08/19 06:29,"684 5th St, Portland, OR 97035" +221251,AAA Batteries (4-pack),2,2.99,06/08/19 06:29,"684 5th St, Portland, OR 97035" +221252,Apple Airpods Headphones,1,150,06/22/19 09:46,"210 West St, Los Angeles, CA 90001" +221253,Wired Headphones,1,11.99,06/13/19 06:41,"274 Johnson St, New York City, NY 10001" +221254,Lightning Charging Cable,1,14.95,06/15/19 00:01,"631 Main St, Austin, TX 73301" +221255,Apple Airpods Headphones,1,150,06/02/19 21:32,"635 1st St, Portland, OR 97035" +221256,Apple Airpods Headphones,1,150,06/17/19 22:24,"522 Pine St, Austin, TX 73301" +221257,Lightning Charging Cable,1,14.95,06/03/19 15:31,"387 Park St, Atlanta, GA 30301" +221258,Macbook Pro Laptop,1,1700,06/19/19 08:45,"43 River St, Boston, MA 02215" +221259,Wired Headphones,1,11.99,06/13/19 22:34,"946 Sunset St, San Francisco, CA 94016" +221260,Bose SoundSport Headphones,1,99.99,06/23/19 22:17,"962 9th St, Portland, OR 97035" +221261,Lightning Charging Cable,3,14.95,06/20/19 21:46,"86 North St, Los Angeles, CA 90001" +221262,Lightning Charging Cable,1,14.95,06/12/19 21:31,"955 Jefferson St, Atlanta, GA 30301" +221263,Apple Airpods Headphones,1,150,06/01/19 07:57,"401 Dogwood St, Atlanta, GA 30301" +221263,Lightning Charging Cable,1,14.95,06/01/19 07:57,"401 Dogwood St, Atlanta, GA 30301" +221264,Flatscreen TV,1,300,06/22/19 10:04,"843 Cedar St, New York City, NY 10001" +221265,USB-C Charging Cable,1,11.95,06/13/19 12:09,"911 12th St, Dallas, TX 75001" +221266,AA Batteries (4-pack),1,3.84,06/20/19 12:20,"554 Wilson St, Boston, MA 02215" +221267,Bose SoundSport Headphones,1,99.99,06/13/19 11:23,"512 Meadow St, San Francisco, CA 94016" +221268,USB-C Charging Cable,1,11.95,06/15/19 17:36,"329 7th St, Los Angeles, CA 90001" +221269,27in 4K Gaming Monitor,1,389.99,06/21/19 10:19,"105 Meadow St, San Francisco, CA 94016" +221270,Flatscreen TV,1,300,06/13/19 07:54,"220 2nd St, Austin, TX 73301" +221271,Wired Headphones,1,11.99,06/10/19 10:04,"411 Center St, Seattle, WA 98101" +221272,Google Phone,1,600,06/10/19 22:19,"150 Ridge St, Boston, MA 02215" +221272,USB-C Charging Cable,1,11.95,06/10/19 22:19,"150 Ridge St, Boston, MA 02215" +,,,,, +221273,AA Batteries (4-pack),1,3.84,06/10/19 10:00,"282 Meadow St, New York City, NY 10001" +221274,iPhone,1,700,06/03/19 07:03,"984 River St, New York City, NY 10001" +221275,Google Phone,1,600,06/18/19 18:51,"266 Elm St, New York City, NY 10001" +221276,Apple Airpods Headphones,1,150,06/22/19 14:00,"670 Walnut St, Los Angeles, CA 90001" +221277,iPhone,1,700,06/25/19 13:46,"443 Spruce St, San Francisco, CA 94016" +221278,Apple Airpods Headphones,1,150,06/12/19 14:38,"999 1st St, Seattle, WA 98101" +221279,Wired Headphones,1,11.99,06/06/19 12:02,"654 Jackson St, Austin, TX 73301" +221280,AAA Batteries (4-pack),1,2.99,06/20/19 13:08,"865 Sunset St, Boston, MA 02215" +221281,Wired Headphones,1,11.99,06/25/19 21:13,"360 Washington St, Austin, TX 73301" +221282,Lightning Charging Cable,1,14.95,06/27/19 20:32,"279 Cedar St, Dallas, TX 75001" +221283,Wired Headphones,1,11.99,06/04/19 16:57,"458 Main St, Portland, ME 04101" +221284,Wired Headphones,1,11.99,06/04/19 19:31,"659 11th St, New York City, NY 10001" +221285,Lightning Charging Cable,1,14.95,06/14/19 17:46,"551 7th St, Seattle, WA 98101" +221286,AA Batteries (4-pack),1,3.84,06/21/19 20:55,"238 Main St, Portland, OR 97035" +221287,Bose SoundSport Headphones,1,99.99,06/10/19 07:53,"672 Ridge St, San Francisco, CA 94016" +221288,20in Monitor,1,109.99,06/03/19 07:08,"635 Lakeview St, Dallas, TX 75001" +221289,AA Batteries (4-pack),1,3.84,06/29/19 16:19,"96 12th St, Los Angeles, CA 90001" +221290,Lightning Charging Cable,1,14.95,06/29/19 22:47,"178 Hill St, Seattle, WA 98101" +221290,AA Batteries (4-pack),1,3.84,06/29/19 22:47,"178 Hill St, Seattle, WA 98101" +221291,Apple Airpods Headphones,1,150,06/17/19 12:16,"908 14th St, New York City, NY 10001" +221292,USB-C Charging Cable,1,11.95,06/29/19 05:43,"519 4th St, San Francisco, CA 94016" +221293,20in Monitor,1,109.99,06/17/19 15:22,"657 8th St, Atlanta, GA 30301" +221294,Wired Headphones,2,11.99,06/28/19 10:50,"651 5th St, San Francisco, CA 94016" +221295,AA Batteries (4-pack),1,3.84,06/28/19 08:55,"974 River St, New York City, NY 10001" +221296,Wired Headphones,1,11.99,06/20/19 03:28,"520 Ridge St, Boston, MA 02215" +221297,Google Phone,1,600,06/02/19 09:18,"249 7th St, Los Angeles, CA 90001" +221298,34in Ultrawide Monitor,1,379.99,06/12/19 13:26,"10 Pine St, Seattle, WA 98101" +221298,USB-C Charging Cable,1,11.95,06/12/19 13:26,"10 Pine St, Seattle, WA 98101" +221299,Apple Airpods Headphones,1,150,06/26/19 18:19,"639 6th St, New York City, NY 10001" +221300,AAA Batteries (4-pack),1,2.99,06/15/19 19:18,"346 Jackson St, Dallas, TX 75001" +221301,Bose SoundSport Headphones,1,99.99,06/30/19 17:51,"224 1st St, Portland, OR 97035" +221302,27in FHD Monitor,1,149.99,06/14/19 18:53,"26 River St, Los Angeles, CA 90001" +221303,27in 4K Gaming Monitor,1,389.99,06/16/19 21:36,"616 Walnut St, Los Angeles, CA 90001" +221304,27in 4K Gaming Monitor,1,389.99,06/29/19 13:00,"336 Chestnut St, New York City, NY 10001" +221305,Wired Headphones,1,11.99,06/29/19 18:24,"181 Jefferson St, Seattle, WA 98101" +221306,AA Batteries (4-pack),1,3.84,06/01/19 07:30,"901 Jackson St, Los Angeles, CA 90001" +221307,Macbook Pro Laptop,1,1700,06/15/19 13:50,"313 2nd St, Los Angeles, CA 90001" +221308,Lightning Charging Cable,1,14.95,06/30/19 14:19,"79 Ridge St, Portland, OR 97035" +221309,AA Batteries (4-pack),1,3.84,06/01/19 18:40,"45 Cedar St, San Francisco, CA 94016" +221310,Wired Headphones,1,11.99,06/06/19 08:36,"870 12th St, Atlanta, GA 30301" +221311,Bose SoundSport Headphones,1,99.99,06/25/19 19:41,"219 Church St, Dallas, TX 75001" +221312,Lightning Charging Cable,1,14.95,06/10/19 05:41,"994 Madison St, Seattle, WA 98101" +221313,AAA Batteries (4-pack),2,2.99,06/10/19 17:07,"67 Meadow St, New York City, NY 10001" +221314,Apple Airpods Headphones,1,150,06/18/19 16:12,"320 Willow St, Los Angeles, CA 90001" +221315,Lightning Charging Cable,1,14.95,06/09/19 06:21,"78 Pine St, Los Angeles, CA 90001" +221316,27in 4K Gaming Monitor,1,389.99,06/23/19 00:29,"43 Jackson St, Dallas, TX 75001" +221317,Lightning Charging Cable,1,14.95,06/22/19 18:45,"695 Chestnut St, Boston, MA 02215" +221318,Bose SoundSport Headphones,1,99.99,06/04/19 12:31,"604 13th St, New York City, NY 10001" +221319,AA Batteries (4-pack),1,3.84,06/18/19 16:17,"643 Sunset St, Austin, TX 73301" +221320,27in 4K Gaming Monitor,1,389.99,06/23/19 14:45,"651 Jackson St, New York City, NY 10001" +221321,20in Monitor,1,109.99,06/01/19 10:02,"294 Lake St, New York City, NY 10001" +221322,Wired Headphones,1,11.99,06/05/19 11:13,"472 Maple St, New York City, NY 10001" +221323,Bose SoundSport Headphones,1,99.99,06/07/19 07:32,"703 7th St, New York City, NY 10001" +221324,34in Ultrawide Monitor,1,379.99,06/18/19 13:50,"587 Dogwood St, New York City, NY 10001" +221325,Lightning Charging Cable,1,14.95,06/10/19 16:34,"532 Sunset St, New York City, NY 10001" +221326,AAA Batteries (4-pack),3,2.99,06/29/19 11:35,"382 Main St, New York City, NY 10001" +221327,USB-C Charging Cable,1,11.95,06/28/19 19:26,"643 Spruce St, San Francisco, CA 94016" +221328,Wired Headphones,1,11.99,06/09/19 16:17,"617 Maple St, Atlanta, GA 30301" +221329,Bose SoundSport Headphones,1,99.99,06/14/19 10:32,"757 Ridge St, Boston, MA 02215" +221330,Apple Airpods Headphones,1,150,06/11/19 10:12,"492 Madison St, New York City, NY 10001" +221331,Lightning Charging Cable,1,14.95,06/01/19 11:07,"883 Washington St, New York City, NY 10001" +221332,USB-C Charging Cable,1,11.95,06/19/19 20:23,"808 11th St, Atlanta, GA 30301" +221333,Apple Airpods Headphones,1,150,06/10/19 08:14,"2 Elm St, Portland, OR 97035" +221334,Lightning Charging Cable,1,14.95,06/24/19 15:53,"374 Main St, Seattle, WA 98101" +221335,iPhone,1,700,06/13/19 18:53,"523 1st St, Los Angeles, CA 90001" +221336,27in 4K Gaming Monitor,1,389.99,06/29/19 19:08,"105 Madison St, New York City, NY 10001" +221337,27in 4K Gaming Monitor,1,389.99,06/07/19 19:23,"789 Forest St, San Francisco, CA 94016" +221338,Wired Headphones,1,11.99,06/01/19 10:50,"152 Park St, New York City, NY 10001" +221339,AAA Batteries (4-pack),1,2.99,06/15/19 11:23,"639 Pine St, Los Angeles, CA 90001" +221340,27in FHD Monitor,1,149.99,06/03/19 18:41,"182 Park St, San Francisco, CA 94016" +221341,Google Phone,1,600,06/25/19 18:54,"588 Hill St, Boston, MA 02215" +221342,USB-C Charging Cable,1,11.95,06/12/19 09:24,"903 2nd St, Dallas, TX 75001" +221343,Wired Headphones,1,11.99,06/09/19 08:52,"661 Hickory St, San Francisco, CA 94016" +221344,Lightning Charging Cable,1,14.95,06/30/19 19:24,"483 Ridge St, San Francisco, CA 94016" +221345,AAA Batteries (4-pack),1,2.99,06/29/19 17:39,"586 Cherry St, Boston, MA 02215" +221346,Google Phone,1,600,06/05/19 19:18,"907 Center St, Portland, OR 97035" +221347,USB-C Charging Cable,1,11.95,06/08/19 17:19,"154 1st St, Atlanta, GA 30301" +221348,USB-C Charging Cable,2,11.95,06/24/19 18:52,"827 Pine St, Boston, MA 02215" +221349,Lightning Charging Cable,2,14.95,06/05/19 20:01,"254 Johnson St, Los Angeles, CA 90001" +221350,Apple Airpods Headphones,1,150,06/27/19 11:23,"264 Elm St, San Francisco, CA 94016" +221351,iPhone,1,700,06/23/19 23:22,"768 West St, Atlanta, GA 30301" +221352,Wired Headphones,1,11.99,06/17/19 17:03,"196 Wilson St, Austin, TX 73301" +221353,AAA Batteries (4-pack),3,2.99,06/25/19 00:28,"661 Johnson St, Boston, MA 02215" +221354,Bose SoundSport Headphones,1,99.99,06/06/19 10:31,"504 Adams St, San Francisco, CA 94016" +221355,Macbook Pro Laptop,1,1700,06/30/19 07:52,"657 10th St, Los Angeles, CA 90001" +221356,Lightning Charging Cable,1,14.95,06/28/19 14:14,"303 Main St, Boston, MA 02215" +221357,Lightning Charging Cable,1,14.95,06/16/19 14:37,"136 River St, Dallas, TX 75001" +221358,Macbook Pro Laptop,1,1700,06/02/19 12:50,"804 9th St, Los Angeles, CA 90001" +221359,Lightning Charging Cable,1,14.95,06/05/19 12:30,"515 Maple St, Dallas, TX 75001" +221360,Lightning Charging Cable,1,14.95,06/06/19 20:26,"396 Maple St, Atlanta, GA 30301" +221361,Wired Headphones,1,11.99,06/04/19 20:24,"695 Cherry St, Austin, TX 73301" +221362,34in Ultrawide Monitor,1,379.99,06/23/19 16:52,"645 Main St, San Francisco, CA 94016" +221363,Apple Airpods Headphones,1,150,06/11/19 18:48,"131 Johnson St, San Francisco, CA 94016" +221364,20in Monitor,1,109.99,06/27/19 23:37,"848 Park St, Seattle, WA 98101" +221365,AAA Batteries (4-pack),1,2.99,06/01/19 21:14,"144 2nd St, San Francisco, CA 94016" +221366,Flatscreen TV,1,300,06/11/19 14:24,"640 Jefferson St, Portland, OR 97035" +221367,USB-C Charging Cable,1,11.95,06/20/19 18:08,"905 Chestnut St, New York City, NY 10001" +221367,Wired Headphones,1,11.99,06/20/19 18:08,"905 Chestnut St, New York City, NY 10001" +221368,Lightning Charging Cable,1,14.95,06/26/19 15:33,"125 1st St, Boston, MA 02215" +221369,Lightning Charging Cable,1,14.95,06/09/19 09:58,"327 Pine St, Dallas, TX 75001" +221370,AAA Batteries (4-pack),3,2.99,06/12/19 13:18,"282 Washington St, New York City, NY 10001" +221371,Lightning Charging Cable,1,14.95,06/21/19 23:57,"409 Church St, San Francisco, CA 94016" +221372,Macbook Pro Laptop,1,1700,06/06/19 16:59,"694 North St, Atlanta, GA 30301" +221373,Apple Airpods Headphones,1,150,06/11/19 00:00,"958 Willow St, Boston, MA 02215" +221374,AAA Batteries (4-pack),2,2.99,06/12/19 21:28,"15 Lincoln St, San Francisco, CA 94016" +221375,20in Monitor,1,109.99,06/18/19 12:14,"556 Spruce St, Seattle, WA 98101" +221376,27in 4K Gaming Monitor,1,389.99,06/24/19 21:23,"525 Park St, Boston, MA 02215" +221377,USB-C Charging Cable,1,11.95,06/01/19 20:34,"465 Dogwood St, Portland, OR 97035" +221378,AAA Batteries (4-pack),1,2.99,06/16/19 18:39,"803 Adams St, Dallas, TX 75001" +221379,AA Batteries (4-pack),2,3.84,06/14/19 10:06,"538 Park St, Los Angeles, CA 90001" +221380,Macbook Pro Laptop,1,1700,06/03/19 22:05,"208 Cherry St, Boston, MA 02215" +221381,LG Dryer,1,600.0,06/28/19 15:53,"699 Spruce St, Los Angeles, CA 90001" +221382,34in Ultrawide Monitor,1,379.99,06/27/19 22:34,"87 Cherry St, Seattle, WA 98101" +221383,AA Batteries (4-pack),1,3.84,06/11/19 19:43,"388 Chestnut St, Portland, ME 04101" +221384,Google Phone,1,600,06/19/19 01:20,"28 11th St, New York City, NY 10001" +221384,USB-C Charging Cable,1,11.95,06/19/19 01:20,"28 11th St, New York City, NY 10001" +221385,Apple Airpods Headphones,1,150,06/08/19 13:13,"578 4th St, Boston, MA 02215" +221386,Bose SoundSport Headphones,1,99.99,06/19/19 18:56,"810 Hill St, San Francisco, CA 94016" +221387,Macbook Pro Laptop,1,1700,06/08/19 21:19,"508 1st St, New York City, NY 10001" +221388,USB-C Charging Cable,1,11.95,06/04/19 16:46,"835 6th St, San Francisco, CA 94016" +221389,Bose SoundSport Headphones,1,99.99,06/17/19 09:55,"688 Lake St, San Francisco, CA 94016" +221390,AA Batteries (4-pack),1,3.84,06/18/19 21:38,"550 Highland St, Boston, MA 02215" +221391,Lightning Charging Cable,1,14.95,06/29/19 23:33,"508 Lake St, New York City, NY 10001" +221392,Wired Headphones,1,11.99,06/02/19 18:39,"667 Meadow St, Boston, MA 02215" +221393,ThinkPad Laptop,1,999.99,06/23/19 08:52,"448 5th St, Atlanta, GA 30301" +221394,AA Batteries (4-pack),3,3.84,06/12/19 20:15,"515 Ridge St, Atlanta, GA 30301" +221395,AAA Batteries (4-pack),8,2.99,06/25/19 20:47,"670 River St, New York City, NY 10001" +221396,Lightning Charging Cable,1,14.95,06/21/19 20:25,"285 Spruce St, New York City, NY 10001" +221397,Lightning Charging Cable,1,14.95,06/17/19 17:18,"845 Sunset St, Dallas, TX 75001" +221398,Lightning Charging Cable,1,14.95,06/27/19 21:15,"1 Madison St, Los Angeles, CA 90001" +221399,Lightning Charging Cable,1,14.95,06/04/19 15:30,"11 West St, Dallas, TX 75001" +221400,Lightning Charging Cable,1,14.95,06/15/19 22:53,"643 Madison St, Los Angeles, CA 90001" +221401,AAA Batteries (4-pack),3,2.99,06/06/19 14:14,"569 Lake St, Austin, TX 73301" +221402,Bose SoundSport Headphones,1,99.99,06/09/19 22:31,"509 Main St, Boston, MA 02215" +221403,Wired Headphones,1,11.99,06/24/19 18:18,"252 11th St, Atlanta, GA 30301" +221404,Apple Airpods Headphones,1,150,06/26/19 09:40,"677 Lincoln St, San Francisco, CA 94016" +221405,ThinkPad Laptop,1,999.99,06/18/19 07:28,"740 13th St, Los Angeles, CA 90001" +221406,Wired Headphones,2,11.99,06/26/19 08:36,"934 Elm St, Boston, MA 02215" +221407,AA Batteries (4-pack),1,3.84,06/02/19 11:12,"638 Cedar St, Los Angeles, CA 90001" +221408,Lightning Charging Cable,1,14.95,06/29/19 15:37,"804 Lake St, Atlanta, GA 30301" +221409,Lightning Charging Cable,1,14.95,06/15/19 01:58,"836 1st St, San Francisco, CA 94016" +221410,Apple Airpods Headphones,1,150,06/05/19 22:59,"797 Chestnut St, Dallas, TX 75001" +221411,LG Washing Machine,1,600.0,06/17/19 19:32,"587 Pine St, Portland, ME 04101" +221412,Macbook Pro Laptop,1,1700,06/16/19 16:33,"559 Jackson St, San Francisco, CA 94016" +221413,AA Batteries (4-pack),1,3.84,06/20/19 21:20,"746 Madison St, San Francisco, CA 94016" +221414,Bose SoundSport Headphones,1,99.99,06/12/19 14:48,"843 Madison St, Seattle, WA 98101" +221415,USB-C Charging Cable,1,11.95,06/29/19 15:57,"760 Pine St, Austin, TX 73301" +221416,AA Batteries (4-pack),1,3.84,06/28/19 11:42,"404 Lakeview St, Dallas, TX 75001" +221417,27in FHD Monitor,1,149.99,06/26/19 22:51,"343 Cherry St, Boston, MA 02215" +221418,Wired Headphones,1,11.99,06/10/19 21:19,"241 12th St, San Francisco, CA 94016" +221419,Lightning Charging Cable,2,14.95,06/24/19 13:03,"997 Jefferson St, Dallas, TX 75001" +221420,Google Phone,1,600,06/19/19 18:21,"302 4th St, Dallas, TX 75001" +221421,Flatscreen TV,1,300,06/10/19 21:27,"186 Sunset St, Boston, MA 02215" +221422,LG Washing Machine,1,600.0,06/08/19 22:17,"173 West St, San Francisco, CA 94016" +221423,USB-C Charging Cable,1,11.95,06/05/19 04:34,"9 Forest St, Los Angeles, CA 90001" +221424,LG Dryer,1,600.0,06/23/19 14:04,"372 Jefferson St, Los Angeles, CA 90001" +221425,Lightning Charging Cable,1,14.95,06/24/19 19:28,"486 Chestnut St, Seattle, WA 98101" +221426,AA Batteries (4-pack),2,3.84,06/10/19 15:33,"658 12th St, San Francisco, CA 94016" +221427,AA Batteries (4-pack),2,3.84,06/23/19 09:54,"433 Highland St, New York City, NY 10001" +221428,iPhone,1,700,06/23/19 18:12,"398 9th St, Los Angeles, CA 90001" +221429,20in Monitor,1,109.99,06/20/19 20:26,"860 Park St, Dallas, TX 75001" +221430,AAA Batteries (4-pack),1,2.99,06/09/19 23:35,"557 Dogwood St, New York City, NY 10001" +221431,Apple Airpods Headphones,1,150,06/01/19 18:41,"668 Park St, San Francisco, CA 94016" +221432,Lightning Charging Cable,1,14.95,06/07/19 19:55,"599 Pine St, Seattle, WA 98101" +221433,USB-C Charging Cable,1,11.95,06/20/19 22:46,"66 1st St, San Francisco, CA 94016" +221434,Macbook Pro Laptop,1,1700,06/23/19 01:21,"959 Chestnut St, Boston, MA 02215" +221435,iPhone,1,700,06/15/19 22:20,"3 Hickory St, Seattle, WA 98101" +221436,AAA Batteries (4-pack),1,2.99,06/03/19 12:34,"700 Adams St, Dallas, TX 75001" +221437,AA Batteries (4-pack),2,3.84,06/08/19 14:52,"100 Chestnut St, San Francisco, CA 94016" +221438,USB-C Charging Cable,1,11.95,06/17/19 22:00,"800 Forest St, Seattle, WA 98101" +221439,Wired Headphones,1,11.99,06/13/19 16:06,"665 5th St, Atlanta, GA 30301" +221440,Apple Airpods Headphones,1,150,06/04/19 10:25,"738 Lake St, New York City, NY 10001" +221441,Apple Airpods Headphones,1,150,06/09/19 01:22,"330 North St, New York City, NY 10001" +221442,AA Batteries (4-pack),2,3.84,06/07/19 17:08,"73 Spruce St, Los Angeles, CA 90001" +221443,27in FHD Monitor,1,149.99,06/24/19 12:35,"327 Hill St, San Francisco, CA 94016" +221444,27in FHD Monitor,1,149.99,06/20/19 11:54,"944 Sunset St, Los Angeles, CA 90001" +221445,AA Batteries (4-pack),1,3.84,06/06/19 13:03,"397 7th St, Los Angeles, CA 90001" +221446,Macbook Pro Laptop,1,1700,06/03/19 19:25,"238 Lake St, Seattle, WA 98101" +221447,Lightning Charging Cable,1,14.95,06/12/19 19:16,"355 Madison St, San Francisco, CA 94016" +221448,Bose SoundSport Headphones,1,99.99,06/11/19 07:41,"587 Forest St, San Francisco, CA 94016" +221449,27in 4K Gaming Monitor,1,389.99,06/12/19 22:08,"656 River St, Seattle, WA 98101" +221450,USB-C Charging Cable,1,11.95,06/21/19 00:10,"650 Lake St, San Francisco, CA 94016" +221451,AA Batteries (4-pack),3,3.84,06/27/19 13:41,"530 North St, New York City, NY 10001" +221452,AAA Batteries (4-pack),1,2.99,06/16/19 19:34,"530 Lake St, San Francisco, CA 94016" +221453,USB-C Charging Cable,2,11.95,06/19/19 03:11,"762 1st St, Seattle, WA 98101" +221454,USB-C Charging Cable,1,11.95,06/21/19 11:46,"553 5th St, Los Angeles, CA 90001" +221455,Google Phone,1,600,06/07/19 13:20,"496 Dogwood St, Los Angeles, CA 90001" +221456,USB-C Charging Cable,1,11.95,06/14/19 11:46,"40 Forest St, New York City, NY 10001" +221457,34in Ultrawide Monitor,1,379.99,06/09/19 14:28,"525 Hill St, Atlanta, GA 30301" +221458,AAA Batteries (4-pack),3,2.99,06/30/19 23:33,"191 2nd St, Portland, OR 97035" +221459,Lightning Charging Cable,1,14.95,06/05/19 11:15,"785 Wilson St, Seattle, WA 98101" +221460,USB-C Charging Cable,1,11.95,06/08/19 12:23,"960 River St, New York City, NY 10001" +221461,Bose SoundSport Headphones,1,99.99,06/24/19 09:46,"40 13th St, Boston, MA 02215" +221462,Bose SoundSport Headphones,1,99.99,06/03/19 14:59,"218 North St, Dallas, TX 75001" +221463,Flatscreen TV,1,300,06/24/19 10:20,"45 Cherry St, Los Angeles, CA 90001" +221464,USB-C Charging Cable,1,11.95,06/30/19 23:20,"796 14th St, Portland, OR 97035" +221465,USB-C Charging Cable,1,11.95,06/03/19 23:01,"297 Spruce St, Los Angeles, CA 90001" +221466,Wired Headphones,1,11.99,06/02/19 19:43,"83 Sunset St, Austin, TX 73301" +221467,LG Dryer,1,600.0,06/04/19 17:53,"796 8th St, Portland, OR 97035" +221468,AAA Batteries (4-pack),1,2.99,06/16/19 13:35,"21 Hickory St, San Francisco, CA 94016" +221469,AAA Batteries (4-pack),1,2.99,06/25/19 14:22,"843 4th St, Seattle, WA 98101" +221470,Apple Airpods Headphones,1,150,06/30/19 00:55,"811 Forest St, Los Angeles, CA 90001" +221471,Wired Headphones,1,11.99,06/27/19 07:56,"430 Cedar St, San Francisco, CA 94016" +221472,AA Batteries (4-pack),2,3.84,06/24/19 17:03,"637 Walnut St, San Francisco, CA 94016" +221473,Bose SoundSport Headphones,1,99.99,06/28/19 17:47,"780 6th St, Portland, OR 97035" +221474,Google Phone,1,600,06/20/19 19:48,"206 Dogwood St, San Francisco, CA 94016" +221475,USB-C Charging Cable,1,11.95,06/21/19 18:06,"522 Lakeview St, San Francisco, CA 94016" +221476,Bose SoundSport Headphones,1,99.99,06/24/19 11:42,"957 Lakeview St, New York City, NY 10001" +221477,AA Batteries (4-pack),2,3.84,06/01/19 13:52,"528 Jefferson St, Austin, TX 73301" +221478,Wired Headphones,1,11.99,06/24/19 14:22,"958 Walnut St, Seattle, WA 98101" +221479,Macbook Pro Laptop,1,1700,06/17/19 10:58,"647 Cedar St, Los Angeles, CA 90001" +221480,34in Ultrawide Monitor,1,379.99,06/15/19 12:29,"471 North St, Seattle, WA 98101" +221481,Bose SoundSport Headphones,1,99.99,06/15/19 11:35,"545 Elm St, Boston, MA 02215" +221482,AAA Batteries (4-pack),3,2.99,06/20/19 15:55,"470 North St, Portland, OR 97035" +221483,Lightning Charging Cable,1,14.95,06/07/19 12:43,"224 Hill St, Portland, OR 97035" +221484,Lightning Charging Cable,1,14.95,06/14/19 17:37,"569 12th St, Dallas, TX 75001" +221485,AA Batteries (4-pack),1,3.84,06/06/19 10:47,"991 Forest St, Seattle, WA 98101" +221486,AA Batteries (4-pack),2,3.84,06/22/19 11:40,"615 Ridge St, Boston, MA 02215" +221487,27in FHD Monitor,1,149.99,06/27/19 13:33,"385 Elm St, Boston, MA 02215" +221488,USB-C Charging Cable,1,11.95,06/30/19 20:26,"742 7th St, Seattle, WA 98101" +221489,Google Phone,1,600,06/28/19 20:52,"863 Spruce St, Los Angeles, CA 90001" +221490,USB-C Charging Cable,1,11.95,06/27/19 18:59,"72 4th St, New York City, NY 10001" +221491,AA Batteries (4-pack),2,3.84,06/29/19 06:56,"763 Maple St, Atlanta, GA 30301" +221492,AA Batteries (4-pack),1,3.84,06/24/19 20:36,"888 4th St, New York City, NY 10001" +221493,iPhone,1,700,06/23/19 16:11,"379 Cherry St, Dallas, TX 75001" +221494,Lightning Charging Cable,2,14.95,06/24/19 23:54,"741 5th St, San Francisco, CA 94016" +221495,34in Ultrawide Monitor,1,379.99,06/10/19 19:54,"371 South St, Los Angeles, CA 90001" +221496,AAA Batteries (4-pack),3,2.99,06/24/19 16:33,"728 9th St, Seattle, WA 98101" +221497,AA Batteries (4-pack),1,3.84,06/14/19 08:32,"539 Highland St, Dallas, TX 75001" +221498,iPhone,1,700,06/19/19 19:09,"432 Ridge St, San Francisco, CA 94016" +221499,34in Ultrawide Monitor,1,379.99,06/24/19 10:46,"421 10th St, New York City, NY 10001" +221500,AA Batteries (4-pack),1,3.84,06/29/19 15:17,"218 Adams St, Dallas, TX 75001" +221500,AA Batteries (4-pack),1,3.84,06/29/19 15:17,"218 Adams St, Dallas, TX 75001" +221501,Google Phone,1,600,06/16/19 21:16,"717 Madison St, Seattle, WA 98101" +221502,Apple Airpods Headphones,1,150,06/30/19 14:44,"906 Sunset St, Austin, TX 73301" +221503,AAA Batteries (4-pack),1,2.99,06/01/19 07:59,"151 Highland St, San Francisco, CA 94016" +221504,iPhone,1,700,06/10/19 15:15,"992 Adams St, Los Angeles, CA 90001" +221505,Lightning Charging Cable,1,14.95,06/07/19 21:33,"323 Elm St, Boston, MA 02215" +221506,Apple Airpods Headphones,1,150,06/17/19 19:45,"714 Jackson St, Seattle, WA 98101" +221507,Wired Headphones,1,11.99,06/19/19 11:50,"745 Willow St, Atlanta, GA 30301" +221508,AAA Batteries (4-pack),1,2.99,06/05/19 17:56,"294 Dogwood St, Dallas, TX 75001" +221509,ThinkPad Laptop,1,999.99,06/02/19 11:00,"22 Willow St, San Francisco, CA 94016" +221510,Bose SoundSport Headphones,1,99.99,06/19/19 16:51,"144 Pine St, Seattle, WA 98101" +221511,AAA Batteries (4-pack),2,2.99,06/16/19 12:26,"868 5th St, San Francisco, CA 94016" +221512,Apple Airpods Headphones,1,150,06/06/19 22:57,"395 Maple St, Portland, OR 97035" +221513,AAA Batteries (4-pack),1,2.99,06/27/19 10:04,"83 1st St, San Francisco, CA 94016" +221514,Macbook Pro Laptop,1,1700,06/17/19 01:21,"626 Lake St, New York City, NY 10001" +221515,Vareebadd Phone,1,400,06/25/19 19:13,"615 Sunset St, Boston, MA 02215" +221515,USB-C Charging Cable,1,11.95,06/25/19 19:13,"615 Sunset St, Boston, MA 02215" +221516,Wired Headphones,1,11.99,06/12/19 06:44,"292 Hill St, Los Angeles, CA 90001" +221517,Lightning Charging Cable,1,14.95,06/06/19 22:28,"421 12th St, Atlanta, GA 30301" +221518,Wired Headphones,1,11.99,06/19/19 23:07,"951 Church St, Los Angeles, CA 90001" +221519,ThinkPad Laptop,1,999.99,06/30/19 16:53,"11 Jackson St, Los Angeles, CA 90001" +221520,USB-C Charging Cable,1,11.95,06/21/19 11:53,"311 Highland St, San Francisco, CA 94016" +221521,Apple Airpods Headphones,1,150,06/24/19 13:26,"886 Forest St, Boston, MA 02215" +221522,27in 4K Gaming Monitor,1,389.99,06/09/19 18:51,"568 Lakeview St, New York City, NY 10001" +221523,iPhone,1,700,06/21/19 12:25,"1 Madison St, Dallas, TX 75001" +221523,Lightning Charging Cable,1,14.95,06/21/19 12:25,"1 Madison St, Dallas, TX 75001" +221524,iPhone,1,700,06/28/19 06:59,"468 Jackson St, New York City, NY 10001" +221525,AAA Batteries (4-pack),2,2.99,06/22/19 04:47,"245 Chestnut St, Los Angeles, CA 90001" +221526,AA Batteries (4-pack),1,3.84,06/22/19 18:37,"395 5th St, Seattle, WA 98101" +221527,27in FHD Monitor,1,149.99,06/16/19 10:22,"35 Hill St, San Francisco, CA 94016" +221528,AAA Batteries (4-pack),1,2.99,06/11/19 14:02,"667 5th St, San Francisco, CA 94016" +221529,AA Batteries (4-pack),1,3.84,06/25/19 14:45,"339 Elm St, Dallas, TX 75001" +221530,Lightning Charging Cable,1,14.95,06/02/19 21:36,"243 Wilson St, Dallas, TX 75001" +221531,AA Batteries (4-pack),1,3.84,06/18/19 19:53,"736 Cherry St, Austin, TX 73301" +221532,34in Ultrawide Monitor,1,379.99,06/20/19 08:12,"224 Lincoln St, Boston, MA 02215" +221533,Google Phone,1,600,06/01/19 18:14,"881 10th St, Atlanta, GA 30301" +221534,20in Monitor,1,109.99,06/06/19 20:42,"835 Main St, Atlanta, GA 30301" +221535,Apple Airpods Headphones,1,150,06/18/19 13:34,"274 11th St, Los Angeles, CA 90001" +221536,iPhone,1,700,06/06/19 18:17,"109 Wilson St, Los Angeles, CA 90001" +221537,USB-C Charging Cable,1,11.95,06/01/19 21:49,"716 Jefferson St, San Francisco, CA 94016" +221538,Macbook Pro Laptop,1,1700,06/17/19 22:27,"946 Chestnut St, Seattle, WA 98101" +221539,Google Phone,1,600,06/16/19 12:16,"819 Johnson St, Atlanta, GA 30301" +221540,Bose SoundSport Headphones,1,99.99,06/15/19 10:26,"785 Willow St, Dallas, TX 75001" +221541,AA Batteries (4-pack),1,3.84,06/19/19 08:01,"811 7th St, Los Angeles, CA 90001" +221542,Macbook Pro Laptop,1,1700,06/17/19 20:02,"763 Walnut St, San Francisco, CA 94016" +221543,34in Ultrawide Monitor,1,379.99,06/29/19 22:26,"253 Lakeview St, Seattle, WA 98101" +221544,AAA Batteries (4-pack),3,2.99,06/10/19 12:09,"506 Forest St, Seattle, WA 98101" +221545,Apple Airpods Headphones,1,150,06/02/19 17:18,"636 North St, San Francisco, CA 94016" +221546,Lightning Charging Cable,1,14.95,06/14/19 13:09,"187 Washington St, Los Angeles, CA 90001" +221547,AA Batteries (4-pack),1,3.84,06/04/19 13:00,"906 Pine St, Los Angeles, CA 90001" +221548,AAA Batteries (4-pack),1,2.99,06/19/19 15:56,"944 Cherry St, Portland, OR 97035" +221549,AAA Batteries (4-pack),2,2.99,06/09/19 09:14,"46 7th St, Atlanta, GA 30301" +221550,Lightning Charging Cable,2,14.95,06/23/19 18:38,"192 Meadow St, New York City, NY 10001" +221551,USB-C Charging Cable,1,11.95,06/28/19 00:57,"459 Dogwood St, Seattle, WA 98101" +221552,AA Batteries (4-pack),1,3.84,06/25/19 05:15,"772 Johnson St, San Francisco, CA 94016" +221553,27in 4K Gaming Monitor,1,389.99,06/09/19 15:30,"896 2nd St, Atlanta, GA 30301" +221554,Google Phone,1,600,06/14/19 16:59,"238 North St, San Francisco, CA 94016" +221554,USB-C Charging Cable,1,11.95,06/14/19 16:59,"238 North St, San Francisco, CA 94016" +221555,27in FHD Monitor,1,149.99,06/21/19 11:33,"311 Park St, Portland, OR 97035" +221556,Lightning Charging Cable,1,14.95,06/27/19 13:04,"917 Main St, Portland, ME 04101" +221557,Apple Airpods Headphones,1,150,06/06/19 07:06,"852 Lakeview St, New York City, NY 10001" +221558,Google Phone,1,600,06/13/19 19:05,"865 Hill St, Los Angeles, CA 90001" +221559,AAA Batteries (4-pack),1,2.99,06/04/19 16:56,"229 5th St, Los Angeles, CA 90001" +221560,Macbook Pro Laptop,1,1700,06/25/19 23:42,"797 Spruce St, San Francisco, CA 94016" +221561,USB-C Charging Cable,1,11.95,06/02/19 19:23,"429 Park St, Boston, MA 02215" +221562,AAA Batteries (4-pack),2,2.99,06/21/19 12:55,"816 Maple St, San Francisco, CA 94016" +221563,Wired Headphones,1,11.99,06/13/19 21:28,"141 5th St, Boston, MA 02215" +221564,27in FHD Monitor,1,149.99,06/17/19 14:25,"641 13th St, Los Angeles, CA 90001" +221565,iPhone,1,700,06/08/19 00:04,"808 9th St, Seattle, WA 98101" +221566,iPhone,1,700,06/15/19 21:23,"82 Lincoln St, San Francisco, CA 94016" +221567,iPhone,1,700,06/17/19 17:20,"125 West St, Portland, OR 97035" +221568,Lightning Charging Cable,1,14.95,06/22/19 18:28,"693 River St, New York City, NY 10001" +221569,USB-C Charging Cable,1,11.95,06/25/19 16:38,"793 7th St, Los Angeles, CA 90001" +221570,Flatscreen TV,1,300,06/12/19 19:47,"278 11th St, Boston, MA 02215" +221571,Google Phone,1,600,06/12/19 11:18,"943 Center St, San Francisco, CA 94016" +221572,AA Batteries (4-pack),2,3.84,06/24/19 10:13,"975 9th St, Seattle, WA 98101" +221573,AA Batteries (4-pack),2,3.84,06/06/19 19:12,"17 Willow St, Los Angeles, CA 90001" +221574,AA Batteries (4-pack),1,3.84,06/11/19 22:30,"447 14th St, Boston, MA 02215" +221575,iPhone,1,700,06/10/19 08:49,"836 Jefferson St, Seattle, WA 98101" +221576,Lightning Charging Cable,1,14.95,06/14/19 20:03,"888 Forest St, Atlanta, GA 30301" +221577,Lightning Charging Cable,1,14.95,06/07/19 19:39,"217 1st St, San Francisco, CA 94016" +221578,Macbook Pro Laptop,1,1700,06/20/19 11:42,"197 4th St, New York City, NY 10001" +221579,Lightning Charging Cable,1,14.95,06/11/19 14:59,"432 11th St, San Francisco, CA 94016" +221580,AA Batteries (4-pack),1,3.84,06/15/19 20:08,"712 6th St, Boston, MA 02215" +221581,AAA Batteries (4-pack),1,2.99,06/07/19 10:16,"658 Adams St, Portland, ME 04101" +221582,Macbook Pro Laptop,1,1700,06/28/19 15:27,"346 1st St, Seattle, WA 98101" +221583,Flatscreen TV,1,300,06/04/19 19:42,"608 Main St, Los Angeles, CA 90001" +221584,Google Phone,1,600,06/24/19 18:59,"146 4th St, Dallas, TX 75001" +221584,USB-C Charging Cable,1,11.95,06/24/19 18:59,"146 4th St, Dallas, TX 75001" +221585,AA Batteries (4-pack),1,3.84,06/22/19 13:19,"234 West St, Austin, TX 73301" +221586,Google Phone,1,600,06/22/19 19:44,"28 Lincoln St, Austin, TX 73301" +221586,USB-C Charging Cable,1,11.95,06/22/19 19:44,"28 Lincoln St, Austin, TX 73301" +221587,Bose SoundSport Headphones,1,99.99,06/17/19 16:00,"330 Lakeview St, Atlanta, GA 30301" +221588,iPhone,1,700,06/04/19 17:57,"950 7th St, San Francisco, CA 94016" +221589,Bose SoundSport Headphones,1,99.99,06/23/19 18:07,"698 1st St, Austin, TX 73301" +221590,Wired Headphones,1,11.99,06/20/19 12:42,"644 9th St, Atlanta, GA 30301" +221591,USB-C Charging Cable,1,11.95,06/14/19 11:13,"124 12th St, Dallas, TX 75001" +221592,Wired Headphones,1,11.99,06/30/19 14:05,"940 Lakeview St, Portland, OR 97035" +221593,Wired Headphones,1,11.99,06/01/19 16:51,"47 8th St, Boston, MA 02215" +,,,,, +221594,34in Ultrawide Monitor,1,379.99,06/26/19 13:24,"653 Park St, San Francisco, CA 94016" +221595,Wired Headphones,1,11.99,06/25/19 10:11,"880 Walnut St, Los Angeles, CA 90001" +221596,Flatscreen TV,1,300,06/04/19 11:29,"811 13th St, New York City, NY 10001" +221597,Macbook Pro Laptop,1,1700,06/10/19 17:04,"807 Dogwood St, New York City, NY 10001" +221597,Bose SoundSport Headphones,1,99.99,06/10/19 17:04,"807 Dogwood St, New York City, NY 10001" +221598,Apple Airpods Headphones,1,150,06/07/19 18:26,"621 2nd St, Portland, OR 97035" +221599,AAA Batteries (4-pack),1,2.99,06/14/19 11:41,"518 River St, San Francisco, CA 94016" +221600,iPhone,1,700,06/29/19 10:45,"744 Forest St, New York City, NY 10001" +221600,Apple Airpods Headphones,1,150,06/29/19 10:45,"744 Forest St, New York City, NY 10001" +221601,USB-C Charging Cable,1,11.95,06/22/19 12:59,"851 Hickory St, San Francisco, CA 94016" +221602,27in FHD Monitor,1,149.99,06/27/19 06:17,"235 Madison St, Dallas, TX 75001" +221603,AAA Batteries (4-pack),1,2.99,06/24/19 16:41,"234 Chestnut St, San Francisco, CA 94016" +221604,Vareebadd Phone,1,400,06/28/19 12:22,"337 12th St, New York City, NY 10001" +221605,Apple Airpods Headphones,1,150,06/10/19 10:22,"461 Forest St, Boston, MA 02215" +221606,iPhone,1,700,06/21/19 13:59,"121 Washington St, San Francisco, CA 94016" +221607,Lightning Charging Cable,1,14.95,06/29/19 11:02,"161 Elm St, San Francisco, CA 94016" +221608,Wired Headphones,1,11.99,06/23/19 13:21,"978 Walnut St, Los Angeles, CA 90001" +221609,Bose SoundSport Headphones,1,99.99,06/26/19 10:35,"669 Hickory St, Boston, MA 02215" +221610,27in FHD Monitor,2,149.99,06/21/19 00:34,"322 Washington St, Austin, TX 73301" +221611,Wired Headphones,1,11.99,06/03/19 13:08,"450 Madison St, Dallas, TX 75001" +221612,27in 4K Gaming Monitor,1,389.99,06/17/19 09:11,"143 West St, Los Angeles, CA 90001" +221613,AAA Batteries (4-pack),1,2.99,06/21/19 09:37,"515 Church St, San Francisco, CA 94016" +221614,USB-C Charging Cable,1,11.95,07/14/19 21:59,"997 Jackson St, Dallas, TX 75001" +221615,Lightning Charging Cable,1,14.95,07/13/19 10:24,"772 Church St, Austin, TX 73301" +221616,Wired Headphones,1,11.99,07/13/19 15:22,"368 11th St, Seattle, WA 98101" +221617,Vareebadd Phone,1,400.0,07/29/19 22:25,"280 South St, Dallas, TX 75001" +221618,34in Ultrawide Monitor,1,379.99,07/13/19 09:48,"685 South St, San Francisco, CA 94016" +221619,Google Phone,1,600.0,07/04/19 18:24,"185 Lakeview St, Los Angeles, CA 90001" +221620,Lightning Charging Cable,1,14.95,07/25/19 03:18,"825 5th St, San Francisco, CA 94016" +221621,AA Batteries (4-pack),1,3.84,07/23/19 19:14,"232 Hickory St, San Francisco, CA 94016" +221622,Google Phone,1,600.0,07/23/19 20:26,"626 13th St, Seattle, WA 98101" +221623,iPhone,1,700.0,07/22/19 10:05,"965 11th St, San Francisco, CA 94016" +221624,AA Batteries (4-pack),1,3.84,07/09/19 07:13,"207 Wilson St, New York City, NY 10001" +221625,Bose SoundSport Headphones,1,99.99,07/27/19 10:45,"718 Highland St, Los Angeles, CA 90001" +221626,20in Monitor,1,109.99,07/01/19 15:38,"949 Lincoln St, Los Angeles, CA 90001" +221627,AAA Batteries (4-pack),1,2.99,07/27/19 00:21,"613 Forest St, Boston, MA 02215" +221628,34in Ultrawide Monitor,1,379.99,07/02/19 16:20,"840 Ridge St, Seattle, WA 98101" +221629,34in Ultrawide Monitor,1,379.99,07/12/19 07:14,"651 Highland St, Los Angeles, CA 90001" +221630,20in Monitor,1,109.99,07/04/19 22:06,"737 Park St, New York City, NY 10001" +221631,USB-C Charging Cable,1,11.95,07/31/19 06:30,"987 Spruce St, New York City, NY 10001" +221632,Lightning Charging Cable,1,14.95,07/02/19 20:22,"217 7th St, San Francisco, CA 94016" +221633,Wired Headphones,1,11.99,07/10/19 19:59,"930 7th St, San Francisco, CA 94016" +221633,USB-C Charging Cable,1,11.95,07/10/19 19:59,"930 7th St, San Francisco, CA 94016" +221634,AA Batteries (4-pack),1,3.84,07/01/19 20:11,"10 West St, Seattle, WA 98101" +221635,Bose SoundSport Headphones,1,99.99,07/19/19 12:21,"456 Ridge St, Seattle, WA 98101" +221636,AAA Batteries (4-pack),1,2.99,07/31/19 13:02,"574 Cedar St, New York City, NY 10001" +221637,iPhone,1,700.0,07/28/19 13:00,"255 Main St, Los Angeles, CA 90001" +221638,USB-C Charging Cable,1,11.95,07/28/19 23:37,"263 Pine St, Austin, TX 73301" +221639,AAA Batteries (4-pack),2,2.99,07/13/19 19:28,"262 2nd St, San Francisco, CA 94016" +221640,27in FHD Monitor,1,149.99,07/13/19 10:38,"26 12th St, Los Angeles, CA 90001" +221641,Lightning Charging Cable,1,14.95,07/23/19 17:34,"503 Johnson St, New York City, NY 10001" +221642,Macbook Pro Laptop,1,1700.0,07/23/19 17:06,"517 South St, San Francisco, CA 94016" +221643,Google Phone,1,600.0,07/13/19 12:46,"797 Church St, San Francisco, CA 94016" +221644,AA Batteries (4-pack),1,3.84,07/23/19 12:03,"361 Sunset St, New York City, NY 10001" +221645,USB-C Charging Cable,1,11.95,07/06/19 18:52,"309 14th St, Boston, MA 02215" +221646,AAA Batteries (4-pack),1,2.99,07/18/19 20:00,"414 13th St, New York City, NY 10001" +221647,Google Phone,1,600.0,07/08/19 13:46,"634 Washington St, San Francisco, CA 94016" +221648,AA Batteries (4-pack),1,3.84,07/31/19 15:28,"492 Main St, Los Angeles, CA 90001" +221649,Bose SoundSport Headphones,1,99.99,07/27/19 21:11,"788 Hill St, Atlanta, GA 30301" +221650,Lightning Charging Cable,1,14.95,07/16/19 23:04,"296 12th St, Austin, TX 73301" +221651,Lightning Charging Cable,1,14.95,07/31/19 13:01,"993 Forest St, San Francisco, CA 94016" +221652,USB-C Charging Cable,1,11.95,07/20/19 19:26,"522 9th St, San Francisco, CA 94016" +221653,Lightning Charging Cable,1,14.95,07/25/19 12:26,"66 Cherry St, Seattle, WA 98101" +221654,Apple Airpods Headphones,1,150.0,07/22/19 12:54,"489 Main St, Portland, ME 04101" +221655,27in FHD Monitor,1,149.99,07/05/19 10:24,"239 4th St, Austin, TX 73301" +221656,Bose SoundSport Headphones,1,99.99,07/09/19 21:19,"529 Dogwood St, Austin, TX 73301" +221657,Wired Headphones,1,11.99,07/03/19 19:26,"574 Lincoln St, Boston, MA 02215" +221658,USB-C Charging Cable,2,11.95,07/19/19 17:56,"169 Church St, San Francisco, CA 94016" +221659,Bose SoundSport Headphones,1,99.99,07/27/19 23:04,"419 4th St, San Francisco, CA 94016" +221660,20in Monitor,1,109.99,07/13/19 19:13,"85 6th St, San Francisco, CA 94016" +221661,Lightning Charging Cable,1,14.95,07/18/19 05:26,"897 Ridge St, San Francisco, CA 94016" +221662,AAA Batteries (4-pack),1,2.99,07/30/19 21:19,"737 7th St, Portland, OR 97035" +221663,AAA Batteries (4-pack),1,2.99,07/01/19 12:42,"151 Hickory St, San Francisco, CA 94016" +221664,Wired Headphones,1,11.99,07/21/19 18:25,"75 Walnut St, San Francisco, CA 94016" +221665,Wired Headphones,1,11.99,07/05/19 11:46,"643 Meadow St, Dallas, TX 75001" +221666,AA Batteries (4-pack),2,3.84,07/09/19 15:53,"407 Lincoln St, New York City, NY 10001" +221667,USB-C Charging Cable,1,11.95,07/18/19 19:20,"486 9th St, Los Angeles, CA 90001" +221668,Wired Headphones,1,11.99,07/23/19 15:34,"95 Forest St, San Francisco, CA 94016" +221669,Lightning Charging Cable,1,14.95,07/03/19 12:59,"698 South St, San Francisco, CA 94016" +221670,Vareebadd Phone,1,400.0,07/13/19 19:47,"239 Main St, San Francisco, CA 94016" +221670,USB-C Charging Cable,1,11.95,07/13/19 19:47,"239 Main St, San Francisco, CA 94016" +221671,Google Phone,1,600.0,07/09/19 04:55,"813 9th St, Los Angeles, CA 90001" +221671,USB-C Charging Cable,1,11.95,07/09/19 04:55,"813 9th St, Los Angeles, CA 90001" +221672,USB-C Charging Cable,1,11.95,07/31/19 16:22,"105 Lincoln St, New York City, NY 10001" +221673,Bose SoundSport Headphones,1,99.99,07/24/19 10:44,"889 2nd St, Los Angeles, CA 90001" +221674,Flatscreen TV,1,300.0,07/08/19 16:12,"703 Washington St, New York City, NY 10001" +221675,Lightning Charging Cable,1,14.95,07/29/19 19:53,"394 Walnut St, Los Angeles, CA 90001" +221676,USB-C Charging Cable,1,11.95,07/30/19 11:56,"892 4th St, Dallas, TX 75001" +221677,Wired Headphones,1,11.99,07/26/19 17:37,"252 Meadow St, New York City, NY 10001" +221678,Lightning Charging Cable,1,14.95,07/13/19 06:49,"193 5th St, Seattle, WA 98101" +221679,AAA Batteries (4-pack),2,2.99,07/29/19 08:52,"131 Lake St, Boston, MA 02215" +221680,Wired Headphones,1,11.99,07/06/19 19:46,"270 Sunset St, Atlanta, GA 30301" +221681,USB-C Charging Cable,1,11.95,07/19/19 07:10,"431 10th St, San Francisco, CA 94016" +221682,AAA Batteries (4-pack),1,2.99,07/20/19 13:31,"450 Wilson St, Dallas, TX 75001" +221683,iPhone,1,700.0,07/28/19 15:19,"317 Chestnut St, San Francisco, CA 94016" +221684,Bose SoundSport Headphones,1,99.99,07/04/19 20:10,"435 Jefferson St, Seattle, WA 98101" +221685,27in 4K Gaming Monitor,1,389.99,07/24/19 12:57,"580 Chestnut St, Boston, MA 02215" +221686,Google Phone,1,600.0,07/10/19 16:25,"256 Lakeview St, Los Angeles, CA 90001" +221687,Wired Headphones,1,11.99,07/27/19 15:46,"313 Spruce St, Dallas, TX 75001" +221688,Apple Airpods Headphones,1,150.0,07/24/19 08:38,"648 2nd St, San Francisco, CA 94016" +221689,27in 4K Gaming Monitor,1,389.99,08/01/19 02:15,"173 Wilson St, San Francisco, CA 94016" +221690,iPhone,1,700.0,07/21/19 10:46,"270 Hickory St, San Francisco, CA 94016" +221691,iPhone,1,700.0,07/17/19 15:45,"681 9th St, Los Angeles, CA 90001" +221691,Apple Airpods Headphones,1,150.0,07/17/19 15:45,"681 9th St, Los Angeles, CA 90001" +221692,27in 4K Gaming Monitor,1,389.99,07/23/19 22:11,"734 Dogwood St, Los Angeles, CA 90001" +221693,Bose SoundSport Headphones,1,99.99,07/24/19 12:43,"636 Park St, Boston, MA 02215" +221694,AA Batteries (4-pack),1,3.84,07/06/19 08:32,"625 2nd St, San Francisco, CA 94016" +221695,AA Batteries (4-pack),1,3.84,07/31/19 22:01,"425 Hill St, Seattle, WA 98101" +221696,AAA Batteries (4-pack),1,2.99,07/07/19 13:39,"712 Chestnut St, Seattle, WA 98101" +221697,Bose SoundSport Headphones,1,99.99,07/06/19 12:37,"693 1st St, San Francisco, CA 94016" +221698,AA Batteries (4-pack),2,3.84,07/21/19 20:41,"967 Meadow St, San Francisco, CA 94016" +221699,AA Batteries (4-pack),1,3.84,07/27/19 08:51,"199 8th St, San Francisco, CA 94016" +221700,AA Batteries (4-pack),1,3.84,07/11/19 12:53,"156 6th St, Boston, MA 02215" +221701,USB-C Charging Cable,1,11.95,07/05/19 15:21,"426 Adams St, Los Angeles, CA 90001" +221702,Bose SoundSport Headphones,1,99.99,07/01/19 13:27,"522 2nd St, Seattle, WA 98101" +221703,AAA Batteries (4-pack),1,2.99,07/03/19 10:52,"883 8th St, San Francisco, CA 94016" +221704,AA Batteries (4-pack),1,3.84,07/09/19 07:20,"700 Willow St, San Francisco, CA 94016" +221705,AAA Batteries (4-pack),1,2.99,07/03/19 14:53,"153 Park St, Boston, MA 02215" +221706,AA Batteries (4-pack),1,3.84,07/11/19 09:23,"343 Cherry St, New York City, NY 10001" +221707,iPhone,1,700.0,07/30/19 09:28,"558 Sunset St, New York City, NY 10001" +221707,Lightning Charging Cable,1,14.95,07/30/19 09:28,"558 Sunset St, New York City, NY 10001" +221708,27in 4K Gaming Monitor,1,389.99,07/12/19 09:05,"694 Center St, Seattle, WA 98101" +221709,Wired Headphones,1,11.99,07/20/19 19:10,"590 8th St, Seattle, WA 98101" +221710,Google Phone,1,600.0,07/26/19 16:59,"968 Chestnut St, San Francisco, CA 94016" +221711,Wired Headphones,1,11.99,07/18/19 19:10,"636 Park St, Boston, MA 02215" +221712,iPhone,1,700.0,07/23/19 16:21,"614 Johnson St, San Francisco, CA 94016" +221713,Lightning Charging Cable,1,14.95,07/19/19 17:50,"252 Adams St, Atlanta, GA 30301" +221714,34in Ultrawide Monitor,1,379.99,07/10/19 02:03,"755 Willow St, Austin, TX 73301" +221715,Wired Headphones,1,11.99,07/03/19 06:36,"550 Pine St, New York City, NY 10001" +221716,Google Phone,1,600.0,07/11/19 12:34,"116 13th St, New York City, NY 10001" +221717,Apple Airpods Headphones,1,150.0,07/11/19 20:58,"546 River St, Los Angeles, CA 90001" +221718,Wired Headphones,2,11.99,07/07/19 11:12,"342 Lincoln St, New York City, NY 10001" +221719,AAA Batteries (4-pack),2,2.99,07/15/19 16:56,"238 Highland St, Atlanta, GA 30301" +221720,Flatscreen TV,1,300.0,07/13/19 00:00,"564 Park St, Los Angeles, CA 90001" +221721,USB-C Charging Cable,1,11.95,07/31/19 17:49,"386 Walnut St, Dallas, TX 75001" +221722,27in 4K Gaming Monitor,1,389.99,07/26/19 13:22,"922 West St, Los Angeles, CA 90001" +221723,Lightning Charging Cable,1,14.95,07/11/19 11:14,"478 7th St, San Francisco, CA 94016" +221724,Google Phone,1,600.0,07/31/19 12:57,"828 Sunset St, Boston, MA 02215" +221725,Flatscreen TV,1,300.0,07/07/19 17:40,"536 Lakeview St, Boston, MA 02215" +221726,Lightning Charging Cable,1,14.95,07/02/19 20:10,"215 West St, Austin, TX 73301" +221727,Wired Headphones,1,11.99,07/31/19 21:31,"167 1st St, Boston, MA 02215" +221728,Macbook Pro Laptop,1,1700.0,07/26/19 08:49,"9 Main St, San Francisco, CA 94016" +221729,Wired Headphones,1,11.99,07/02/19 16:08,"421 Jefferson St, New York City, NY 10001" +221730,AA Batteries (4-pack),1,3.84,07/10/19 13:00,"452 5th St, San Francisco, CA 94016" +221731,Apple Airpods Headphones,1,150.0,07/10/19 16:01,"940 South St, Los Angeles, CA 90001" +221732,Lightning Charging Cable,1,14.95,07/22/19 22:10,"159 6th St, San Francisco, CA 94016" +221733,AAA Batteries (4-pack),1,2.99,07/04/19 21:18,"877 Willow St, Austin, TX 73301" +221734,Vareebadd Phone,1,400.0,07/13/19 17:45,"930 Wilson St, New York City, NY 10001" +221735,AAA Batteries (4-pack),2,2.99,07/11/19 21:13,"447 14th St, Atlanta, GA 30301" +221736,iPhone,1,700.0,07/16/19 17:33,"77 Park St, Los Angeles, CA 90001" +221737,Apple Airpods Headphones,1,150.0,07/07/19 21:28,"530 Lake St, San Francisco, CA 94016" +221738,34in Ultrawide Monitor,1,379.99,07/30/19 21:21,"100 Church St, San Francisco, CA 94016" +221739,Wired Headphones,1,11.99,07/11/19 12:43,"635 Wilson St, Boston, MA 02215" +221740,Bose SoundSport Headphones,1,99.99,07/01/19 23:16,"167 13th St, Los Angeles, CA 90001" +221741,USB-C Charging Cable,1,11.95,07/22/19 13:10,"919 Lakeview St, Portland, ME 04101" +221742,Macbook Pro Laptop,1,1700.0,07/13/19 15:13,"328 North St, New York City, NY 10001" +221743,Wired Headphones,1,11.99,07/08/19 12:22,"516 1st St, San Francisco, CA 94016" +221744,AA Batteries (4-pack),1,3.84,07/04/19 10:46,"687 Pine St, San Francisco, CA 94016" +221745,AAA Batteries (4-pack),2,2.99,07/21/19 02:49,"178 Wilson St, Los Angeles, CA 90001" +221746,Wired Headphones,1,11.99,07/18/19 01:45,"350 South St, San Francisco, CA 94016" +221747,Flatscreen TV,1,300.0,07/09/19 19:35,"226 Meadow St, Los Angeles, CA 90001" +221748,Wired Headphones,1,11.99,07/19/19 06:30,"530 River St, Boston, MA 02215" +221749,AA Batteries (4-pack),1,3.84,07/15/19 15:14,"902 Walnut St, Portland, OR 97035" +221750,Flatscreen TV,1,300.0,07/17/19 17:51,"722 Main St, San Francisco, CA 94016" +221751,20in Monitor,1,109.99,07/13/19 12:46,"46 2nd St, Austin, TX 73301" +221752,AA Batteries (4-pack),2,3.84,07/03/19 13:07,"457 Jackson St, Atlanta, GA 30301" +221753,34in Ultrawide Monitor,1,379.99,07/30/19 19:35,"999 Lake St, San Francisco, CA 94016" +221754,LG Washing Machine,1,600.0,07/20/19 11:52,"653 Washington St, New York City, NY 10001" +221755,Bose SoundSport Headphones,1,99.99,07/08/19 10:26,"247 Hill St, New York City, NY 10001" +221756,USB-C Charging Cable,1,11.95,07/29/19 11:57,"301 Hill St, Portland, OR 97035" +221757,AAA Batteries (4-pack),3,2.99,07/22/19 17:02,"444 Cedar St, Boston, MA 02215" +221758,AAA Batteries (4-pack),2,2.99,07/31/19 15:54,"825 Lincoln St, San Francisco, CA 94016" +221759,USB-C Charging Cable,1,11.95,07/09/19 19:26,"754 Chestnut St, Boston, MA 02215" +221760,20in Monitor,1,109.99,07/31/19 11:30,"685 Lincoln St, San Francisco, CA 94016" +221761,Google Phone,1,600.0,07/24/19 18:24,"183 Johnson St, Los Angeles, CA 90001" +221762,AAA Batteries (4-pack),1,2.99,07/06/19 13:15,"302 Main St, Atlanta, GA 30301" +221763,27in FHD Monitor,1,149.99,07/22/19 21:28,"237 Maple St, Boston, MA 02215" +221764,Wired Headphones,1,11.99,07/07/19 15:42,"717 Main St, New York City, NY 10001" +221765,34in Ultrawide Monitor,1,379.99,07/17/19 00:13,"484 10th St, Austin, TX 73301" +221766,Wired Headphones,1,11.99,07/02/19 16:23,"904 6th St, Boston, MA 02215" +221766,USB-C Charging Cable,1,11.95,07/02/19 16:23,"904 6th St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +221767,Macbook Pro Laptop,1,1700,07/29/19 18:56,"492 Lakeview St, Portland, OR 97035" +221768,Bose SoundSport Headphones,1,99.99,07/14/19 20:17,"803 West St, Atlanta, GA 30301" +221769,AAA Batteries (4-pack),1,2.99,07/12/19 18:49,"532 7th St, Boston, MA 02215" +221770,AA Batteries (4-pack),1,3.84,07/02/19 15:18,"913 Ridge St, Los Angeles, CA 90001" +221771,AAA Batteries (4-pack),1,2.99,07/01/19 14:31,"310 River St, Atlanta, GA 30301" +221772,AA Batteries (4-pack),1,3.84,07/14/19 12:01,"775 7th St, Seattle, WA 98101" +221773,Macbook Pro Laptop,1,1700,07/13/19 17:42,"350 Lake St, Atlanta, GA 30301" +221774,USB-C Charging Cable,1,11.95,07/19/19 09:42,"250 Highland St, Los Angeles, CA 90001" +221775,AAA Batteries (4-pack),2,2.99,07/26/19 17:09,"565 Main St, Austin, TX 73301" +221776,iPhone,1,700,07/25/19 09:02,"366 Main St, New York City, NY 10001" +221776,Lightning Charging Cable,1,14.95,07/25/19 09:02,"366 Main St, New York City, NY 10001" +221777,Lightning Charging Cable,1,14.95,07/29/19 14:06,"952 8th St, New York City, NY 10001" +221778,Lightning Charging Cable,2,14.95,07/07/19 07:37,"693 Willow St, San Francisco, CA 94016" +221779,27in FHD Monitor,1,149.99,07/06/19 19:20,"861 13th St, San Francisco, CA 94016" +221780,Wired Headphones,1,11.99,07/04/19 13:33,"404 12th St, Portland, ME 04101" +221781,AA Batteries (4-pack),3,3.84,07/23/19 13:57,"808 Highland St, Boston, MA 02215" +221782,Apple Airpods Headphones,1,150,07/27/19 10:49,"891 Main St, Los Angeles, CA 90001" +221783,Lightning Charging Cable,1,14.95,07/01/19 17:19,"127 Maple St, Atlanta, GA 30301" +221784,AA Batteries (4-pack),1,3.84,07/24/19 17:56,"255 Hill St, New York City, NY 10001" +221785,USB-C Charging Cable,1,11.95,07/26/19 19:41,"554 Main St, Dallas, TX 75001" +221786,Wired Headphones,1,11.99,07/01/19 06:35,"937 1st St, Boston, MA 02215" +221787,27in FHD Monitor,1,149.99,07/20/19 20:15,"134 2nd St, Seattle, WA 98101" +221788,Macbook Pro Laptop,1,1700,07/20/19 13:34,"723 2nd St, San Francisco, CA 94016" +221789,Apple Airpods Headphones,1,150,07/05/19 19:54,"795 Johnson St, Seattle, WA 98101" +221790,USB-C Charging Cable,1,11.95,07/24/19 17:45,"296 Meadow St, San Francisco, CA 94016" +221791,AA Batteries (4-pack),1,3.84,07/12/19 14:58,"874 Lake St, Dallas, TX 75001" +221792,AA Batteries (4-pack),1,3.84,07/03/19 15:05,"442 Jackson St, Portland, OR 97035" +221792,AA Batteries (4-pack),1,3.84,07/03/19 15:05,"442 Jackson St, Portland, OR 97035" +221793,Lightning Charging Cable,1,14.95,07/11/19 09:02,"445 Jefferson St, San Francisco, CA 94016" +221794,Apple Airpods Headphones,1,150,07/30/19 05:30,"591 North St, Los Angeles, CA 90001" +221795,Bose SoundSport Headphones,1,99.99,07/13/19 11:46,"959 Dogwood St, New York City, NY 10001" +221796,Google Phone,1,600,07/25/19 21:54,"1 Maple St, Atlanta, GA 30301" +221796,USB-C Charging Cable,1,11.95,07/25/19 21:54,"1 Maple St, Atlanta, GA 30301" +221797,Lightning Charging Cable,2,14.95,07/08/19 19:46,"70 12th St, New York City, NY 10001" +221798,USB-C Charging Cable,1,11.95,07/11/19 09:20,"272 North St, Austin, TX 73301" +221799,Lightning Charging Cable,1,14.95,07/21/19 21:40,"805 2nd St, New York City, NY 10001" +221800,Google Phone,1,600,07/22/19 20:29,"602 Highland St, Los Angeles, CA 90001" +221801,AA Batteries (4-pack),1,3.84,07/24/19 23:27,"581 Pine St, San Francisco, CA 94016" +221802,Apple Airpods Headphones,1,150,07/28/19 20:42,"281 Pine St, San Francisco, CA 94016" +221803,USB-C Charging Cable,1,11.95,07/24/19 18:11,"317 13th St, Dallas, TX 75001" +221804,Vareebadd Phone,1,400,07/19/19 11:08,"418 Hill St, Dallas, TX 75001" +221804,Wired Headphones,1,11.99,07/19/19 11:08,"418 Hill St, Dallas, TX 75001" +221805,34in Ultrawide Monitor,1,379.99,07/17/19 09:06,"795 Willow St, Seattle, WA 98101" +221806,AAA Batteries (4-pack),1,2.99,07/14/19 11:08,"39 River St, Atlanta, GA 30301" +221807,Wired Headphones,1,11.99,07/10/19 22:19,"7 South St, Los Angeles, CA 90001" +221808,34in Ultrawide Monitor,1,379.99,07/05/19 19:38,"92 7th St, Seattle, WA 98101" +221809,Bose SoundSport Headphones,1,99.99,07/08/19 18:19,"641 2nd St, Los Angeles, CA 90001" +221810,27in FHD Monitor,1,149.99,07/02/19 12:57,"235 Lakeview St, Los Angeles, CA 90001" +221811,Lightning Charging Cable,2,14.95,07/27/19 18:46,"206 Ridge St, Boston, MA 02215" +221812,AAA Batteries (4-pack),1,2.99,07/01/19 16:55,"932 4th St, Dallas, TX 75001" +221813,27in FHD Monitor,1,149.99,07/10/19 15:16,"986 Cedar St, Seattle, WA 98101" +221814,Google Phone,1,600,07/22/19 17:40,"253 10th St, Los Angeles, CA 90001" +221815,AAA Batteries (4-pack),1,2.99,07/23/19 12:23,"344 9th St, San Francisco, CA 94016" +221816,Wired Headphones,1,11.99,07/08/19 13:34,"67 River St, San Francisco, CA 94016" +221817,AA Batteries (4-pack),1,3.84,07/11/19 16:40,"613 Sunset St, Dallas, TX 75001" +221818,AAA Batteries (4-pack),1,2.99,07/03/19 16:57,"230 12th St, New York City, NY 10001" +221819,AAA Batteries (4-pack),1,2.99,07/20/19 11:32,"715 11th St, Atlanta, GA 30301" +221820,USB-C Charging Cable,1,11.95,07/15/19 21:59,"613 Chestnut St, San Francisco, CA 94016" +221821,USB-C Charging Cable,1,11.95,07/27/19 18:40,"42 Wilson St, Atlanta, GA 30301" +221822,USB-C Charging Cable,2,11.95,07/10/19 10:59,"249 Jefferson St, San Francisco, CA 94016" +221823,AA Batteries (4-pack),1,3.84,07/02/19 20:57,"594 Lakeview St, New York City, NY 10001" +221824,AA Batteries (4-pack),3,3.84,07/28/19 21:11,"500 8th St, Portland, OR 97035" +221825,Wired Headphones,1,11.99,07/07/19 23:51,"404 Adams St, New York City, NY 10001" +221826,USB-C Charging Cable,1,11.95,07/14/19 17:52,"542 Lakeview St, San Francisco, CA 94016" +221827,Wired Headphones,2,11.99,07/26/19 20:26,"391 13th St, New York City, NY 10001" +221828,Wired Headphones,1,11.99,07/17/19 11:07,"884 6th St, Boston, MA 02215" +221829,Google Phone,1,600,07/18/19 13:02,"747 Cherry St, Portland, OR 97035" +221830,USB-C Charging Cable,1,11.95,07/13/19 13:33,"196 Cherry St, Seattle, WA 98101" +221831,Bose SoundSport Headphones,1,99.99,07/29/19 21:44,"512 Main St, Boston, MA 02215" +221832,AAA Batteries (4-pack),1,2.99,07/18/19 22:44,"416 Spruce St, Los Angeles, CA 90001" +221833,AA Batteries (4-pack),2,3.84,07/07/19 16:49,"914 Elm St, San Francisco, CA 94016" +221834,Lightning Charging Cable,1,14.95,07/08/19 08:55,"898 River St, Los Angeles, CA 90001" +221835,Lightning Charging Cable,1,14.95,07/14/19 11:42,"414 Adams St, Los Angeles, CA 90001" +221836,AAA Batteries (4-pack),1,2.99,07/26/19 19:43,"317 14th St, New York City, NY 10001" +221837,Lightning Charging Cable,1,14.95,07/21/19 20:49,"485 River St, New York City, NY 10001" +221838,Lightning Charging Cable,1,14.95,07/04/19 17:05,"400 Sunset St, San Francisco, CA 94016" +221839,27in FHD Monitor,1,149.99,07/05/19 10:08,"203 Chestnut St, Los Angeles, CA 90001" +221840,Lightning Charging Cable,1,14.95,07/09/19 11:38,"241 6th St, Seattle, WA 98101" +221841,Lightning Charging Cable,1,14.95,07/05/19 12:16,"630 Ridge St, Atlanta, GA 30301" +221842,AAA Batteries (4-pack),2,2.99,07/03/19 17:01,"86 9th St, San Francisco, CA 94016" +221843,Lightning Charging Cable,1,14.95,07/01/19 19:13,"400 4th St, New York City, NY 10001" +221844,AAA Batteries (4-pack),3,2.99,07/09/19 10:53,"915 Meadow St, San Francisco, CA 94016" +221845,Bose SoundSport Headphones,1,99.99,07/20/19 21:24,"234 12th St, Boston, MA 02215" +221846,USB-C Charging Cable,1,11.95,07/06/19 19:48,"817 7th St, Austin, TX 73301" +221847,Wired Headphones,2,11.99,07/02/19 11:49,"314 Cedar St, San Francisco, CA 94016" +221848,USB-C Charging Cable,1,11.95,07/11/19 17:15,"737 Johnson St, San Francisco, CA 94016" +221849,Lightning Charging Cable,1,14.95,07/22/19 09:34,"66 Highland St, San Francisco, CA 94016" +221850,USB-C Charging Cable,1,11.95,07/26/19 19:51,"620 Hill St, Boston, MA 02215" +221851,AA Batteries (4-pack),2,3.84,07/13/19 20:08,"156 Dogwood St, Austin, TX 73301" +221852,Flatscreen TV,1,300,07/07/19 11:35,"883 Highland St, San Francisco, CA 94016" +221853,iPhone,1,700,07/06/19 19:07,"701 Meadow St, Seattle, WA 98101" +221854,AAA Batteries (4-pack),1,2.99,07/23/19 14:44,"742 Spruce St, Atlanta, GA 30301" +221855,34in Ultrawide Monitor,1,379.99,07/19/19 11:34,"240 North St, San Francisco, CA 94016" +221856,USB-C Charging Cable,2,11.95,07/23/19 23:38,"555 Johnson St, San Francisco, CA 94016" +221857,USB-C Charging Cable,1,11.95,07/24/19 10:12,"5 Spruce St, San Francisco, CA 94016" +221858,USB-C Charging Cable,2,11.95,07/31/19 23:07,"634 9th St, Atlanta, GA 30301" +221859,Google Phone,1,600,07/09/19 18:49,"904 11th St, Los Angeles, CA 90001" +221860,Wired Headphones,1,11.99,07/24/19 18:55,"424 9th St, Boston, MA 02215" +221860,USB-C Charging Cable,1,11.95,07/24/19 18:55,"424 9th St, Boston, MA 02215" +221861,Bose SoundSport Headphones,1,99.99,07/08/19 09:35,"564 Jackson St, Dallas, TX 75001" +221862,AA Batteries (4-pack),1,3.84,07/14/19 13:08,"22 Jackson St, Boston, MA 02215" +221863,34in Ultrawide Monitor,1,379.99,07/19/19 23:08,"368 North St, Dallas, TX 75001" +221864,iPhone,1,700,07/05/19 18:46,"276 Jackson St, Atlanta, GA 30301" +221865,Lightning Charging Cable,1,14.95,07/10/19 20:20,"168 North St, Austin, TX 73301" +221866,USB-C Charging Cable,1,11.95,07/05/19 10:58,"242 Jackson St, Seattle, WA 98101" +221867,Lightning Charging Cable,1,14.95,07/22/19 11:40,"954 Lake St, San Francisco, CA 94016" +221868,Lightning Charging Cable,1,14.95,07/30/19 19:26,"673 7th St, New York City, NY 10001" +221869,USB-C Charging Cable,1,11.95,07/13/19 17:50,"130 Hill St, Portland, ME 04101" +221870,AA Batteries (4-pack),1,3.84,07/06/19 01:10,"571 Madison St, Atlanta, GA 30301" +221871,Lightning Charging Cable,1,14.95,07/03/19 14:18,"134 Park St, Boston, MA 02215" +221872,Lightning Charging Cable,1,14.95,07/22/19 21:31,"155 Jackson St, Boston, MA 02215" +221873,Apple Airpods Headphones,1,150,07/15/19 12:54,"277 Church St, Atlanta, GA 30301" +221874,USB-C Charging Cable,1,11.95,07/13/19 22:08,"108 Cherry St, New York City, NY 10001" +221875,AA Batteries (4-pack),1,3.84,07/15/19 16:01,"270 Jefferson St, San Francisco, CA 94016" +221876,Apple Airpods Headphones,1,150,07/15/19 09:44,"603 River St, San Francisco, CA 94016" +221877,Apple Airpods Headphones,1,150,07/22/19 17:44,"677 7th St, San Francisco, CA 94016" +221878,Google Phone,1,600,07/08/19 18:51,"413 Center St, Boston, MA 02215" +221878,USB-C Charging Cable,1,11.95,07/08/19 18:51,"413 Center St, Boston, MA 02215" +221879,Apple Airpods Headphones,1,150,07/18/19 09:38,"419 Ridge St, Dallas, TX 75001" +221880,AA Batteries (4-pack),1,3.84,07/31/19 23:56,"550 11th St, San Francisco, CA 94016" +221881,Macbook Pro Laptop,1,1700,07/01/19 11:41,"406 Dogwood St, Boston, MA 02215" +221882,Wired Headphones,2,11.99,07/15/19 13:34,"412 Church St, Seattle, WA 98101" +221883,20in Monitor,1,109.99,07/23/19 15:37,"800 South St, Los Angeles, CA 90001" +221884,Flatscreen TV,1,300,07/18/19 08:43,"480 5th St, Seattle, WA 98101" +221885,AA Batteries (4-pack),2,3.84,07/12/19 11:06,"701 Willow St, Los Angeles, CA 90001" +221886,USB-C Charging Cable,1,11.95,07/20/19 18:53,"615 Johnson St, Boston, MA 02215" +221887,AA Batteries (4-pack),1,3.84,07/15/19 14:44,"151 Center St, Austin, TX 73301" +221888,Flatscreen TV,1,300,07/27/19 18:40,"202 Center St, San Francisco, CA 94016" +221889,Lightning Charging Cable,1,14.95,07/17/19 22:40,"207 Hickory St, San Francisco, CA 94016" +221890,AA Batteries (4-pack),1,3.84,07/26/19 08:24,"561 Madison St, San Francisco, CA 94016" +221891,Wired Headphones,2,11.99,07/03/19 00:47,"173 Elm St, San Francisco, CA 94016" +221892,Lightning Charging Cable,1,14.95,07/21/19 15:46,"990 Center St, Atlanta, GA 30301" +221893,Apple Airpods Headphones,1,150,07/29/19 13:47,"13 Maple St, Boston, MA 02215" +221894,AA Batteries (4-pack),2,3.84,07/25/19 12:47,"943 9th St, Boston, MA 02215" +221895,AA Batteries (4-pack),1,3.84,07/07/19 05:09,"431 Lakeview St, Portland, OR 97035" +221896,Google Phone,1,600,07/21/19 20:43,"526 9th St, San Francisco, CA 94016" +221897,USB-C Charging Cable,1,11.95,07/24/19 10:22,"67 Willow St, Portland, OR 97035" +221898,27in 4K Gaming Monitor,1,389.99,07/16/19 16:53,"644 Chestnut St, New York City, NY 10001" +221899,ThinkPad Laptop,1,999.99,07/15/19 10:07,"371 Walnut St, Boston, MA 02215" +221900,Lightning Charging Cable,1,14.95,07/19/19 22:37,"954 River St, Dallas, TX 75001" +221901,Apple Airpods Headphones,1,150,07/28/19 10:43,"619 North St, Boston, MA 02215" +221902,USB-C Charging Cable,1,11.95,07/26/19 10:07,"661 Lake St, San Francisco, CA 94016" +221903,Lightning Charging Cable,1,14.95,07/05/19 16:37,"188 Park St, San Francisco, CA 94016" +221904,Lightning Charging Cable,1,14.95,07/25/19 12:58,"823 Wilson St, Los Angeles, CA 90001" +221905,AAA Batteries (4-pack),1,2.99,07/09/19 15:21,"36 Chestnut St, Boston, MA 02215" +221906,Google Phone,1,600,07/19/19 16:51,"928 Willow St, Boston, MA 02215" +221907,AAA Batteries (4-pack),2,2.99,07/28/19 14:44,"751 Jackson St, Los Angeles, CA 90001" +221908,34in Ultrawide Monitor,1,379.99,07/11/19 10:00,"29 Lakeview St, San Francisco, CA 94016" +221909,Apple Airpods Headphones,1,150,07/23/19 19:25,"980 11th St, San Francisco, CA 94016" +221910,Apple Airpods Headphones,1,150,07/07/19 07:57,"702 12th St, Seattle, WA 98101" +221910,Wired Headphones,1,11.99,07/07/19 07:57,"702 12th St, Seattle, WA 98101" +221911,AA Batteries (4-pack),1,3.84,07/09/19 13:20,"806 4th St, New York City, NY 10001" +221912,Wired Headphones,1,11.99,07/15/19 12:22,"103 4th St, Portland, ME 04101" +221913,Wired Headphones,1,11.99,07/25/19 14:53,"473 Hickory St, San Francisco, CA 94016" +221914,Bose SoundSport Headphones,1,99.99,07/11/19 10:13,"940 9th St, Boston, MA 02215" +221915,20in Monitor,1,109.99,07/16/19 12:54,"433 Jackson St, Austin, TX 73301" +221916,Wired Headphones,1,11.99,07/05/19 17:52,"366 Cedar St, Boston, MA 02215" +221917,Macbook Pro Laptop,1,1700,07/24/19 07:06,"915 Cherry St, San Francisco, CA 94016" +221918,Bose SoundSport Headphones,1,99.99,07/22/19 21:39,"650 Spruce St, Atlanta, GA 30301" +221919,Macbook Pro Laptop,1,1700,07/24/19 09:21,"263 Madison St, Atlanta, GA 30301" +221920,AA Batteries (4-pack),1,3.84,07/03/19 16:19,"152 Forest St, Dallas, TX 75001" +221921,AAA Batteries (4-pack),1,2.99,07/28/19 14:51,"723 10th St, Los Angeles, CA 90001" +221922,27in 4K Gaming Monitor,1,389.99,07/29/19 20:18,"431 Meadow St, San Francisco, CA 94016" +221923,AAA Batteries (4-pack),1,2.99,07/25/19 20:06,"324 Sunset St, Los Angeles, CA 90001" +221924,AA Batteries (4-pack),1,3.84,07/04/19 08:18,"341 Jackson St, Los Angeles, CA 90001" +221925,Bose SoundSport Headphones,1,99.99,07/01/19 09:29,"733 Lake St, San Francisco, CA 94016" +221926,Wired Headphones,1,11.99,07/22/19 20:29,"576 Center St, Seattle, WA 98101" +221927,27in FHD Monitor,1,149.99,07/04/19 14:45,"348 Main St, Dallas, TX 75001" +221928,Wired Headphones,1,11.99,07/04/19 18:25,"381 12th St, Los Angeles, CA 90001" +221929,Macbook Pro Laptop,1,1700,07/23/19 16:31,"162 10th St, Atlanta, GA 30301" +221930,ThinkPad Laptop,1,999.99,07/14/19 07:10,"876 12th St, Los Angeles, CA 90001" +221931,iPhone,1,700,07/30/19 14:07,"593 Wilson St, San Francisco, CA 94016" +221932,27in 4K Gaming Monitor,1,389.99,07/04/19 01:53,"200 Johnson St, San Francisco, CA 94016" +221933,27in FHD Monitor,1,149.99,07/29/19 10:44,"65 Church St, Los Angeles, CA 90001" +221934,27in FHD Monitor,1,149.99,07/26/19 21:57,"675 7th St, Austin, TX 73301" +221935,USB-C Charging Cable,1,11.95,07/01/19 12:01,"211 11th St, Los Angeles, CA 90001" +221936,20in Monitor,1,109.99,07/06/19 19:31,"721 Adams St, Boston, MA 02215" +221937,Apple Airpods Headphones,1,150,07/30/19 18:26,"399 10th St, Dallas, TX 75001" +221938,USB-C Charging Cable,1,11.95,07/24/19 17:27,"878 Dogwood St, Dallas, TX 75001" +221939,Wired Headphones,1,11.99,07/20/19 20:00,"315 Hill St, Boston, MA 02215" +221940,Wired Headphones,1,11.99,07/14/19 21:51,"539 Meadow St, New York City, NY 10001" +221941,Vareebadd Phone,1,400,07/04/19 14:27,"405 8th St, San Francisco, CA 94016" +221942,Wired Headphones,1,11.99,07/11/19 11:04,"384 Ridge St, Portland, OR 97035" +221943,Lightning Charging Cable,1,14.95,07/13/19 23:15,"244 Cedar St, Los Angeles, CA 90001" +221944,AAA Batteries (4-pack),1,2.99,07/29/19 06:27,"849 Spruce St, Boston, MA 02215" +221945,AAA Batteries (4-pack),2,2.99,07/01/19 20:41,"714 Cedar St, San Francisco, CA 94016" +221946,AA Batteries (4-pack),2,3.84,07/14/19 16:18,"429 Hill St, Boston, MA 02215" +221947,Bose SoundSport Headphones,1,99.99,07/05/19 14:40,"775 Adams St, Seattle, WA 98101" +221948,Vareebadd Phone,1,400,07/04/19 08:15,"898 Ridge St, New York City, NY 10001" +221948,Bose SoundSport Headphones,1,99.99,07/04/19 08:15,"898 Ridge St, New York City, NY 10001" +221949,27in 4K Gaming Monitor,1,389.99,07/27/19 19:09,"110 Lincoln St, Austin, TX 73301" +221950,AA Batteries (4-pack),1,3.84,07/22/19 13:51,"276 Church St, Seattle, WA 98101" +221951,USB-C Charging Cable,1,11.95,07/23/19 17:07,"391 5th St, Boston, MA 02215" +221952,Lightning Charging Cable,1,14.95,07/07/19 15:58,"922 Cedar St, Seattle, WA 98101" +221953,iPhone,1,700,07/31/19 22:34,"248 Adams St, San Francisco, CA 94016" +221954,Flatscreen TV,1,300,07/29/19 12:07,"303 11th St, Los Angeles, CA 90001" +221955,USB-C Charging Cable,1,11.95,07/09/19 15:29,"956 Elm St, Seattle, WA 98101" +221956,USB-C Charging Cable,2,11.95,07/07/19 13:44,"755 Hickory St, Los Angeles, CA 90001" +221957,iPhone,1,700,07/13/19 05:39,"484 Johnson St, Dallas, TX 75001" +221958,AA Batteries (4-pack),1,3.84,07/22/19 13:30,"955 9th St, Dallas, TX 75001" +221959,AA Batteries (4-pack),1,3.84,07/15/19 10:06,"14 Highland St, San Francisco, CA 94016" +221960,USB-C Charging Cable,1,11.95,07/09/19 00:03,"667 Spruce St, Seattle, WA 98101" +221961,iPhone,1,700,07/04/19 23:16,"443 4th St, Seattle, WA 98101" +221962,iPhone,1,700,07/12/19 21:19,"566 Jackson St, Seattle, WA 98101" +221963,iPhone,1,700,07/17/19 18:14,"973 River St, San Francisco, CA 94016" +221963,Lightning Charging Cable,1,14.95,07/17/19 18:14,"973 River St, San Francisco, CA 94016" +221964,Wired Headphones,1,11.99,07/10/19 19:15,"771 Chestnut St, Atlanta, GA 30301" +221965,27in FHD Monitor,1,149.99,07/08/19 20:28,"415 11th St, Los Angeles, CA 90001" +221965,Apple Airpods Headphones,1,150,07/08/19 20:28,"415 11th St, Los Angeles, CA 90001" +221966,Apple Airpods Headphones,1,150,07/05/19 17:50,"194 Highland St, Boston, MA 02215" +221967,34in Ultrawide Monitor,1,379.99,07/21/19 09:12,"398 Dogwood St, Dallas, TX 75001" +221968,AAA Batteries (4-pack),1,2.99,07/02/19 08:00,"610 Chestnut St, Seattle, WA 98101" +221969,AAA Batteries (4-pack),1,2.99,07/30/19 09:40,"931 Dogwood St, New York City, NY 10001" +221970,USB-C Charging Cable,1,11.95,07/14/19 15:35,"859 4th St, Austin, TX 73301" +221971,Apple Airpods Headphones,1,150,07/17/19 22:45,"386 1st St, Los Angeles, CA 90001" +221972,AA Batteries (4-pack),3,3.84,07/04/19 23:38,"295 Park St, San Francisco, CA 94016" +221973,Lightning Charging Cable,1,14.95,07/09/19 08:31,"605 Lake St, San Francisco, CA 94016" +221974,USB-C Charging Cable,2,11.95,07/11/19 06:40,"853 Johnson St, San Francisco, CA 94016" +221975,Bose SoundSport Headphones,1,99.99,07/19/19 12:09,"590 Lake St, Los Angeles, CA 90001" +221976,Apple Airpods Headphones,1,150,07/11/19 19:47,"48 13th St, San Francisco, CA 94016" +221977,AAA Batteries (4-pack),1,2.99,07/27/19 01:36,"223 Church St, New York City, NY 10001" +221978,USB-C Charging Cable,1,11.95,07/17/19 19:31,"64 Lincoln St, Seattle, WA 98101" +221979,AAA Batteries (4-pack),3,2.99,07/22/19 16:08,"270 Hill St, Los Angeles, CA 90001" +221980,Lightning Charging Cable,1,14.95,07/04/19 06:58,"984 River St, Boston, MA 02215" +221981,LG Washing Machine,1,600.0,07/18/19 07:53,"370 Sunset St, San Francisco, CA 94016" +221982,Google Phone,1,600,07/25/19 20:23,"262 7th St, Los Angeles, CA 90001" +221983,34in Ultrawide Monitor,1,379.99,07/11/19 23:31,"930 5th St, San Francisco, CA 94016" +221984,Wired Headphones,1,11.99,07/16/19 14:03,"498 Highland St, Dallas, TX 75001" +221984,AAA Batteries (4-pack),1,2.99,07/16/19 14:03,"498 Highland St, Dallas, TX 75001" +221985,Bose SoundSport Headphones,1,99.99,07/02/19 20:35,"819 8th St, Boston, MA 02215" +221986,20in Monitor,1,109.99,07/21/19 12:41,"444 Wilson St, Seattle, WA 98101" +221987,Wired Headphones,1,11.99,07/14/19 16:56,"361 Wilson St, New York City, NY 10001" +221988,Google Phone,1,600,07/15/19 11:43,"904 Cherry St, Dallas, TX 75001" +221989,USB-C Charging Cable,1,11.95,07/27/19 21:33,"990 Pine St, Portland, OR 97035" +221990,USB-C Charging Cable,2,11.95,07/11/19 18:41,"769 South St, San Francisco, CA 94016" +221991,AA Batteries (4-pack),1,3.84,07/04/19 01:30,"15 Hill St, Boston, MA 02215" +221992,27in FHD Monitor,1,149.99,07/07/19 07:22,"103 6th St, Boston, MA 02215" +221993,Google Phone,1,600,07/12/19 19:49,"544 Spruce St, San Francisco, CA 94016" +221993,Bose SoundSport Headphones,1,99.99,07/12/19 19:49,"544 Spruce St, San Francisco, CA 94016" +221994,Wired Headphones,1,11.99,07/21/19 19:57,"39 Center St, Atlanta, GA 30301" +221995,Apple Airpods Headphones,1,150,07/07/19 16:47,"69 8th St, Los Angeles, CA 90001" +221996,AAA Batteries (4-pack),1,2.99,07/26/19 16:58,"565 Cedar St, San Francisco, CA 94016" +221997,AAA Batteries (4-pack),2,2.99,07/27/19 07:56,"998 4th St, Seattle, WA 98101" +221998,Bose SoundSport Headphones,1,99.99,07/28/19 20:41,"255 Willow St, Dallas, TX 75001" +221999,USB-C Charging Cable,2,11.95,07/07/19 16:41,"451 Meadow St, San Francisco, CA 94016" +222000,Wired Headphones,2,11.99,07/17/19 23:16,"71 Hill St, Los Angeles, CA 90001" +222001,LG Washing Machine,1,600.0,07/07/19 14:33,"975 14th St, New York City, NY 10001" +222002,Macbook Pro Laptop,1,1700,07/18/19 21:06,"89 Madison St, Atlanta, GA 30301" +222003,Macbook Pro Laptop,1,1700,07/28/19 11:27,"558 Sunset St, San Francisco, CA 94016" +222004,Wired Headphones,1,11.99,07/19/19 07:03,"85 Adams St, Dallas, TX 75001" +222005,Wired Headphones,1,11.99,07/07/19 03:37,"251 Johnson St, Atlanta, GA 30301" +222006,Bose SoundSport Headphones,1,99.99,07/22/19 15:37,"728 4th St, Seattle, WA 98101" +222007,Wired Headphones,1,11.99,07/02/19 15:31,"810 Sunset St, Portland, OR 97035" +222008,Flatscreen TV,1,300,07/06/19 22:13,"919 Walnut St, Austin, TX 73301" +222009,20in Monitor,1,109.99,07/15/19 18:48,"376 Chestnut St, Los Angeles, CA 90001" +222010,Google Phone,1,600,07/10/19 10:24,"433 Walnut St, New York City, NY 10001" +222011,Bose SoundSport Headphones,1,99.99,07/11/19 18:45,"178 Meadow St, Los Angeles, CA 90001" +222012,Wired Headphones,1,11.99,07/06/19 13:02,"461 12th St, Los Angeles, CA 90001" +222013,USB-C Charging Cable,1,11.95,07/30/19 01:51,"891 14th St, Boston, MA 02215" +222014,Bose SoundSport Headphones,1,99.99,07/04/19 20:02,"923 Center St, San Francisco, CA 94016" +222015,iPhone,1,700,07/08/19 10:48,"412 Meadow St, Los Angeles, CA 90001" +222016,iPhone,1,700,07/08/19 17:14,"792 Cherry St, New York City, NY 10001" +222016,Lightning Charging Cable,1,14.95,07/08/19 17:14,"792 Cherry St, New York City, NY 10001" +222017,USB-C Charging Cable,1,11.95,07/14/19 21:30,"25 8th St, San Francisco, CA 94016" +222018,Apple Airpods Headphones,1,150,07/23/19 14:01,"524 7th St, Los Angeles, CA 90001" +222019,Wired Headphones,1,11.99,07/03/19 20:08,"180 Elm St, New York City, NY 10001" +222020,AA Batteries (4-pack),1,3.84,07/14/19 20:07,"470 12th St, San Francisco, CA 94016" +222021,Apple Airpods Headphones,1,150,07/12/19 20:28,"18 14th St, San Francisco, CA 94016" +222022,Apple Airpods Headphones,1,150,07/30/19 12:37,"359 Center St, Portland, OR 97035" +222023,27in FHD Monitor,1,149.99,07/22/19 18:17,"28 Jefferson St, San Francisco, CA 94016" +222024,USB-C Charging Cable,1,11.95,07/15/19 22:51,"460 Center St, San Francisco, CA 94016" +222025,USB-C Charging Cable,1,11.95,07/21/19 00:40,"748 Adams St, San Francisco, CA 94016" +222026,USB-C Charging Cable,1,11.95,07/26/19 19:54,"40 10th St, San Francisco, CA 94016" +222027,Lightning Charging Cable,1,14.95,07/03/19 19:02,"4 Forest St, New York City, NY 10001" +222028,27in FHD Monitor,1,149.99,07/05/19 22:28,"162 9th St, New York City, NY 10001" +222029,USB-C Charging Cable,1,11.95,07/23/19 23:20,"886 Church St, Seattle, WA 98101" +222030,AAA Batteries (4-pack),1,2.99,07/06/19 05:48,"991 Dogwood St, San Francisco, CA 94016" +222031,ThinkPad Laptop,1,999.99,07/25/19 12:30,"575 8th St, Atlanta, GA 30301" +222031,Lightning Charging Cable,1,14.95,07/25/19 12:30,"575 8th St, Atlanta, GA 30301" +222032,Wired Headphones,1,11.99,07/16/19 21:44,"292 14th St, Boston, MA 02215" +222033,Lightning Charging Cable,1,14.95,07/23/19 19:29,"115 12th St, Los Angeles, CA 90001" +222034,USB-C Charging Cable,1,11.95,07/30/19 09:33,"487 Lakeview St, Los Angeles, CA 90001" +222035,Bose SoundSport Headphones,1,99.99,07/08/19 06:43,"473 Jackson St, San Francisco, CA 94016" +222036,Wired Headphones,1,11.99,07/26/19 17:59,"382 Maple St, Los Angeles, CA 90001" +222037,Lightning Charging Cable,1,14.95,07/11/19 17:15,"330 Lake St, New York City, NY 10001" +222038,Lightning Charging Cable,1,14.95,07/02/19 09:49,"483 4th St, Dallas, TX 75001" +222039,27in FHD Monitor,1,149.99,07/15/19 00:26,"577 1st St, San Francisco, CA 94016" +222040,27in FHD Monitor,1,149.99,07/11/19 20:28,"471 West St, Boston, MA 02215" +222041,Vareebadd Phone,1,400,07/05/19 11:59,"834 Wilson St, Seattle, WA 98101" +222042,AA Batteries (4-pack),1,3.84,07/04/19 22:08,"239 7th St, Seattle, WA 98101" +222043,Wired Headphones,1,11.99,07/29/19 14:56,"976 5th St, Seattle, WA 98101" +222044,Flatscreen TV,1,300,07/21/19 13:00,"603 Center St, Los Angeles, CA 90001" +222045,Apple Airpods Headphones,1,150,07/17/19 21:13,"933 11th St, San Francisco, CA 94016" +222046,Apple Airpods Headphones,1,150,07/01/19 17:27,"915 Main St, San Francisco, CA 94016" +222047,Wired Headphones,1,11.99,07/17/19 12:11,"593 5th St, Los Angeles, CA 90001" +222048,Google Phone,1,600,07/03/19 12:23,"516 Walnut St, New York City, NY 10001" +222049,Lightning Charging Cable,1,14.95,07/22/19 10:45,"401 10th St, Boston, MA 02215" +222050,iPhone,1,700,07/12/19 15:03,"425 West St, New York City, NY 10001" +222051,Bose SoundSport Headphones,1,99.99,07/27/19 21:12,"878 Jefferson St, Seattle, WA 98101" +222052,27in FHD Monitor,1,149.99,07/12/19 22:37,"562 Washington St, Portland, OR 97035" +222053,34in Ultrawide Monitor,1,379.99,07/23/19 21:00,"276 Chestnut St, Los Angeles, CA 90001" +222054,USB-C Charging Cable,1,11.95,07/02/19 19:23,"521 Forest St, Boston, MA 02215" +222055,34in Ultrawide Monitor,1,379.99,07/23/19 09:46,"316 11th St, Seattle, WA 98101" +222056,USB-C Charging Cable,1,11.95,07/26/19 23:40,"969 Park St, Atlanta, GA 30301" +222057,Google Phone,1,600,07/12/19 12:05,"428 13th St, New York City, NY 10001" +222058,Bose SoundSport Headphones,1,99.99,07/21/19 19:04,"425 Hill St, San Francisco, CA 94016" +222059,Lightning Charging Cable,1,14.95,07/22/19 08:50,"643 13th St, New York City, NY 10001" +222060,AAA Batteries (4-pack),1,2.99,07/15/19 17:14,"546 7th St, San Francisco, CA 94016" +222061,Google Phone,1,600,07/19/19 19:58,"840 1st St, Seattle, WA 98101" +222062,AAA Batteries (4-pack),1,2.99,07/08/19 09:40,"676 8th St, Los Angeles, CA 90001" +222063,Google Phone,1,600,07/23/19 19:32,"945 Hickory St, San Francisco, CA 94016" +222063,USB-C Charging Cable,2,11.95,07/23/19 19:32,"945 Hickory St, San Francisco, CA 94016" +222064,Apple Airpods Headphones,1,150,07/08/19 10:37,"323 10th St, San Francisco, CA 94016" +222065,Lightning Charging Cable,1,14.95,07/19/19 14:31,"817 Chestnut St, Los Angeles, CA 90001" +222066,34in Ultrawide Monitor,1,379.99,07/20/19 18:52,"674 Walnut St, Los Angeles, CA 90001" +222067,Flatscreen TV,1,300,07/21/19 14:47,"276 Madison St, San Francisco, CA 94016" +222068,AAA Batteries (4-pack),1,2.99,07/18/19 09:19,"57 2nd St, Portland, OR 97035" +222069,AAA Batteries (4-pack),1,2.99,07/05/19 08:22,"160 Ridge St, San Francisco, CA 94016" +222070,Lightning Charging Cable,1,14.95,07/13/19 00:40,"502 Meadow St, Los Angeles, CA 90001" +222071,USB-C Charging Cable,1,11.95,07/02/19 13:49,"882 West St, San Francisco, CA 94016" +222072,AA Batteries (4-pack),1,3.84,07/31/19 20:00,"186 Park St, San Francisco, CA 94016" +222073,20in Monitor,1,109.99,07/12/19 16:13,"241 Cherry St, San Francisco, CA 94016" +222073,AAA Batteries (4-pack),2,2.99,07/12/19 16:13,"241 Cherry St, San Francisco, CA 94016" +222074,Google Phone,1,600,07/06/19 18:12,"838 Johnson St, Los Angeles, CA 90001" +222075,27in FHD Monitor,1,149.99,07/10/19 00:41,"874 1st St, Austin, TX 73301" +222076,27in 4K Gaming Monitor,1,389.99,07/31/19 06:58,"153 South St, Dallas, TX 75001" +222077,USB-C Charging Cable,1,11.95,07/13/19 13:13,"25 1st St, San Francisco, CA 94016" +222078,Apple Airpods Headphones,1,150,07/19/19 15:51,"543 Wilson St, Portland, OR 97035" +222079,USB-C Charging Cable,1,11.95,07/16/19 12:14,"892 Madison St, Seattle, WA 98101" +222080,20in Monitor,1,109.99,07/10/19 21:38,"987 Maple St, Boston, MA 02215" +222081,Vareebadd Phone,1,400,07/04/19 11:50,"203 West St, San Francisco, CA 94016" +222081,AAA Batteries (4-pack),1,2.99,07/04/19 11:50,"203 West St, San Francisco, CA 94016" +222082,Apple Airpods Headphones,1,150,07/26/19 13:24,"515 Elm St, New York City, NY 10001" +222083,Apple Airpods Headphones,1,150,07/31/19 07:40,"196 Hickory St, San Francisco, CA 94016" +222084,Macbook Pro Laptop,1,1700,07/06/19 10:32,"208 Jackson St, Atlanta, GA 30301" +222085,Vareebadd Phone,1,400,07/26/19 12:12,"459 4th St, San Francisco, CA 94016" +222086,AA Batteries (4-pack),1,3.84,07/03/19 22:22,"115 12th St, San Francisco, CA 94016" +222087,Lightning Charging Cable,1,14.95,07/05/19 15:03,"826 Jefferson St, Los Angeles, CA 90001" +222088,Wired Headphones,1,11.99,07/02/19 17:15,"237 Lakeview St, Los Angeles, CA 90001" +222089,Wired Headphones,1,11.99,07/02/19 20:42,"193 Madison St, New York City, NY 10001" +222090,Lightning Charging Cable,1,14.95,07/12/19 13:28,"499 Sunset St, Los Angeles, CA 90001" +222091,27in FHD Monitor,1,149.99,07/09/19 19:17,"668 8th St, Portland, ME 04101" +222092,Macbook Pro Laptop,1,1700,07/08/19 17:55,"175 Center St, Seattle, WA 98101" +222093,Lightning Charging Cable,1,14.95,07/14/19 22:23,"950 Church St, Seattle, WA 98101" +222094,USB-C Charging Cable,2,11.95,07/03/19 20:19,"752 Madison St, Austin, TX 73301" +222095,AA Batteries (4-pack),1,3.84,07/29/19 16:10,"660 Washington St, San Francisco, CA 94016" +222096,Wired Headphones,1,11.99,07/13/19 09:12,"117 7th St, Dallas, TX 75001" +222097,AAA Batteries (4-pack),3,2.99,07/19/19 16:44,"529 13th St, Los Angeles, CA 90001" +222098,iPhone,1,700,07/02/19 20:18,"953 Jackson St, San Francisco, CA 94016" +222099,34in Ultrawide Monitor,1,379.99,07/23/19 15:13,"379 Hickory St, Boston, MA 02215" +222100,20in Monitor,1,109.99,07/08/19 06:38,"232 10th St, Los Angeles, CA 90001" +222101,USB-C Charging Cable,1,11.95,07/15/19 21:20,"236 Elm St, Boston, MA 02215" +222102,USB-C Charging Cable,1,11.95,07/01/19 23:38,"701 7th St, New York City, NY 10001" +222103,34in Ultrawide Monitor,1,379.99,07/20/19 13:36,"428 Wilson St, Portland, OR 97035" +222104,Apple Airpods Headphones,1,150,07/09/19 17:38,"736 Highland St, San Francisco, CA 94016" +222105,AAA Batteries (4-pack),1,2.99,07/05/19 20:41,"370 Cedar St, Los Angeles, CA 90001" +222106,Lightning Charging Cable,1,14.95,07/14/19 13:19,"641 Adams St, Austin, TX 73301" +222107,27in 4K Gaming Monitor,1,389.99,07/03/19 15:13,"214 Adams St, San Francisco, CA 94016" +222108,AAA Batteries (4-pack),1,2.99,07/23/19 19:29,"400 Adams St, Boston, MA 02215" +222109,Apple Airpods Headphones,1,150,07/19/19 21:07,"138 Church St, San Francisco, CA 94016" +222110,Bose SoundSport Headphones,1,99.99,07/23/19 12:37,"807 Madison St, Seattle, WA 98101" +222111,Wired Headphones,1,11.99,07/07/19 14:32,"487 Wilson St, San Francisco, CA 94016" +222112,Apple Airpods Headphones,1,150,07/21/19 17:33,"876 Lincoln St, Dallas, TX 75001" +222113,Lightning Charging Cable,1,14.95,07/13/19 23:33,"766 11th St, Los Angeles, CA 90001" +222114,Wired Headphones,1,11.99,07/24/19 10:03,"736 9th St, Portland, OR 97035" +222115,USB-C Charging Cable,1,11.95,07/31/19 21:19,"768 Sunset St, Atlanta, GA 30301" +222116,Google Phone,1,600,07/23/19 15:54,"7 Willow St, Atlanta, GA 30301" +222117,27in 4K Gaming Monitor,1,389.99,07/15/19 10:19,"160 Lake St, Seattle, WA 98101" +222118,34in Ultrawide Monitor,1,379.99,07/28/19 10:49,"952 Lincoln St, Atlanta, GA 30301" +222119,20in Monitor,1,109.99,07/15/19 17:11,"913 Cedar St, San Francisco, CA 94016" +222120,Apple Airpods Headphones,1,150,07/24/19 18:06,"464 Jefferson St, San Francisco, CA 94016" +222121,Lightning Charging Cable,1,14.95,08/01/19 00:00,"540 Dogwood St, Los Angeles, CA 90001" +222122,Macbook Pro Laptop,1,1700,07/08/19 21:38,"877 Washington St, Portland, ME 04101" +222123,Flatscreen TV,1,300,07/02/19 23:47,"956 Main St, Los Angeles, CA 90001" +222124,Apple Airpods Headphones,1,150,07/17/19 21:56,"244 Center St, Boston, MA 02215" +222125,27in FHD Monitor,1,149.99,07/27/19 12:11,"60 Walnut St, San Francisco, CA 94016" +222126,Flatscreen TV,1,300,07/23/19 10:38,"359 Wilson St, New York City, NY 10001" +222127,Vareebadd Phone,1,400,07/03/19 12:46,"215 Lake St, New York City, NY 10001" +222127,USB-C Charging Cable,2,11.95,07/03/19 12:46,"215 Lake St, New York City, NY 10001" +222128,USB-C Charging Cable,1,11.95,07/31/19 18:06,"469 7th St, Seattle, WA 98101" +222129,Bose SoundSport Headphones,1,99.99,07/09/19 14:39,"954 Spruce St, Seattle, WA 98101" +222130,AA Batteries (4-pack),2,3.84,07/13/19 14:09,"736 Washington St, Los Angeles, CA 90001" +222131,Lightning Charging Cable,1,14.95,07/22/19 10:14,"980 Park St, Dallas, TX 75001" +222132,Bose SoundSport Headphones,1,99.99,07/01/19 16:00,"478 Church St, Atlanta, GA 30301" +222133,USB-C Charging Cable,1,11.95,07/02/19 20:35,"638 Lake St, Boston, MA 02215" +222134,AAA Batteries (4-pack),2,2.99,07/25/19 14:24,"491 Sunset St, Portland, OR 97035" +222135,AAA Batteries (4-pack),1,2.99,07/05/19 01:47,"926 2nd St, San Francisco, CA 94016" +222136,AAA Batteries (4-pack),3,2.99,07/06/19 18:22,"880 Johnson St, San Francisco, CA 94016" +222137,Bose SoundSport Headphones,1,99.99,07/23/19 17:59,"629 6th St, Los Angeles, CA 90001" +222138,AA Batteries (4-pack),2,3.84,07/19/19 12:46,"422 14th St, Dallas, TX 75001" +222138,AA Batteries (4-pack),1,3.84,07/19/19 12:46,"422 14th St, Dallas, TX 75001" +222139,Google Phone,1,600,07/25/19 14:13,"881 7th St, Los Angeles, CA 90001" +222140,Google Phone,1,600,07/25/19 17:49,"659 Johnson St, San Francisco, CA 94016" +222140,USB-C Charging Cable,1,11.95,07/25/19 17:49,"659 Johnson St, San Francisco, CA 94016" +222141,USB-C Charging Cable,1,11.95,07/14/19 07:01,"449 4th St, Portland, ME 04101" +222142,AAA Batteries (4-pack),1,2.99,07/20/19 17:49,"623 Ridge St, Boston, MA 02215" +222143,Lightning Charging Cable,1,14.95,07/12/19 14:10,"328 West St, San Francisco, CA 94016" +222144,Flatscreen TV,1,300,07/13/19 11:34,"489 14th St, Dallas, TX 75001" +222145,27in 4K Gaming Monitor,1,389.99,07/27/19 16:21,"294 11th St, Dallas, TX 75001" +222146,Apple Airpods Headphones,1,150,07/14/19 15:57,"197 1st St, Atlanta, GA 30301" +222147,Bose SoundSport Headphones,1,99.99,07/25/19 08:53,"320 Walnut St, San Francisco, CA 94016" +222148,AAA Batteries (4-pack),1,2.99,07/02/19 00:40,"952 9th St, Dallas, TX 75001" +222149,Wired Headphones,1,11.99,07/19/19 11:02,"488 Jackson St, Boston, MA 02215" +222150,Lightning Charging Cable,1,14.95,07/26/19 08:06,"959 Spruce St, San Francisco, CA 94016" +222151,AAA Batteries (4-pack),4,2.99,07/12/19 20:14,"159 Church St, Seattle, WA 98101" +222152,27in 4K Gaming Monitor,1,389.99,07/14/19 08:52,"19 Ridge St, San Francisco, CA 94016" +222153,AAA Batteries (4-pack),2,2.99,07/03/19 10:46,"417 Park St, Portland, OR 97035" +222154,LG Washing Machine,1,600.0,07/11/19 17:29,"421 Wilson St, Dallas, TX 75001" +222155,USB-C Charging Cable,1,11.95,07/07/19 17:31,"119 Chestnut St, New York City, NY 10001" +222156,Bose SoundSport Headphones,1,99.99,07/28/19 17:58,"915 Jackson St, Boston, MA 02215" +222157,Apple Airpods Headphones,1,150,07/04/19 06:07,"633 Forest St, Boston, MA 02215" +222158,iPhone,1,700,07/19/19 22:45,"365 2nd St, Atlanta, GA 30301" +222158,Apple Airpods Headphones,1,150,07/19/19 22:45,"365 2nd St, Atlanta, GA 30301" +222159,Vareebadd Phone,1,400,07/01/19 18:18,"194 Dogwood St, New York City, NY 10001" +222159,USB-C Charging Cable,1,11.95,07/01/19 18:18,"194 Dogwood St, New York City, NY 10001" +222160,Bose SoundSport Headphones,1,99.99,07/20/19 07:52,"336 12th St, San Francisco, CA 94016" +222161,27in 4K Gaming Monitor,1,389.99,07/25/19 17:16,"987 12th St, Portland, ME 04101" +222162,Lightning Charging Cable,1,14.95,07/18/19 13:36,"627 Hickory St, San Francisco, CA 94016" +222163,Lightning Charging Cable,1,14.95,07/16/19 14:46,"661 1st St, Portland, OR 97035" +222164,USB-C Charging Cable,1,11.95,07/02/19 09:25,"386 Willow St, San Francisco, CA 94016" +222165,Lightning Charging Cable,1,14.95,07/30/19 21:05,"297 Cedar St, Seattle, WA 98101" +222166,20in Monitor,1,109.99,07/07/19 18:04,"501 Lincoln St, Atlanta, GA 30301" +222167,Bose SoundSport Headphones,1,99.99,07/31/19 19:39,"36 Cedar St, New York City, NY 10001" +222168,Wired Headphones,1,11.99,07/06/19 16:50,"592 8th St, Portland, ME 04101" +222169,Wired Headphones,1,11.99,07/23/19 13:04,"179 Jackson St, New York City, NY 10001" +222170,Lightning Charging Cable,1,14.95,07/10/19 22:15,"485 Elm St, Seattle, WA 98101" +222171,iPhone,1,700,07/12/19 17:56,"78 1st St, New York City, NY 10001" +222172,Bose SoundSport Headphones,1,99.99,07/17/19 20:09,"30 8th St, San Francisco, CA 94016" +222173,Lightning Charging Cable,1,14.95,07/19/19 20:16,"336 Jackson St, New York City, NY 10001" +222174,USB-C Charging Cable,1,11.95,07/15/19 19:26,"543 Park St, Boston, MA 02215" +222175,iPhone,1,700,07/05/19 10:28,"486 River St, San Francisco, CA 94016" +222176,Macbook Pro Laptop,1,1700,07/04/19 10:01,"618 River St, Portland, OR 97035" +222177,Lightning Charging Cable,1,14.95,07/11/19 18:11,"528 Jefferson St, San Francisco, CA 94016" +222178,Apple Airpods Headphones,1,150,07/01/19 23:36,"929 Dogwood St, Boston, MA 02215" +222179,USB-C Charging Cable,2,11.95,07/18/19 12:38,"300 Jefferson St, Austin, TX 73301" +222180,USB-C Charging Cable,1,11.95,07/01/19 11:52,"948 Church St, Dallas, TX 75001" +222181,USB-C Charging Cable,2,11.95,07/22/19 08:08,"638 Highland St, San Francisco, CA 94016" +222182,USB-C Charging Cable,1,11.95,07/16/19 20:47,"713 Sunset St, San Francisco, CA 94016" +222183,Google Phone,1,600,07/08/19 10:32,"64 12th St, Los Angeles, CA 90001" +222184,AA Batteries (4-pack),1,3.84,07/30/19 21:32,"911 4th St, Portland, OR 97035" +222185,AAA Batteries (4-pack),1,2.99,07/12/19 07:32,"929 Center St, New York City, NY 10001" +222186,34in Ultrawide Monitor,1,379.99,07/22/19 17:07,"617 5th St, Seattle, WA 98101" +222187,AA Batteries (4-pack),2,3.84,07/20/19 19:54,"502 2nd St, Boston, MA 02215" +222188,Apple Airpods Headphones,1,150,07/02/19 10:28,"267 13th St, Dallas, TX 75001" +222189,AAA Batteries (4-pack),1,2.99,07/17/19 14:10,"311 Walnut St, Austin, TX 73301" +222190,Lightning Charging Cable,1,14.95,07/12/19 19:45,"835 4th St, Dallas, TX 75001" +222191,AA Batteries (4-pack),3,3.84,07/08/19 20:47,"516 7th St, San Francisco, CA 94016" +222192,Wired Headphones,1,11.99,07/08/19 11:00,"882 Meadow St, Los Angeles, CA 90001" +222193,USB-C Charging Cable,1,11.95,07/09/19 07:33,"480 Jackson St, New York City, NY 10001" +222194,LG Washing Machine,1,600.0,07/06/19 13:16,"686 11th St, Boston, MA 02215" +222195,Flatscreen TV,1,300,07/08/19 23:05,"136 Walnut St, San Francisco, CA 94016" +222196,Apple Airpods Headphones,1,150,07/29/19 10:02,"190 Spruce St, Dallas, TX 75001" +222197,34in Ultrawide Monitor,1,379.99,07/02/19 19:59,"371 Lake St, San Francisco, CA 94016" +222198,Apple Airpods Headphones,1,150,07/05/19 08:58,"805 Cherry St, Los Angeles, CA 90001" +222199,Wired Headphones,1,11.99,07/19/19 15:53,"458 10th St, New York City, NY 10001" +222200,USB-C Charging Cable,1,11.95,07/18/19 13:04,"125 10th St, Dallas, TX 75001" +222201,AA Batteries (4-pack),1,3.84,07/11/19 21:30,"352 Maple St, Boston, MA 02215" +222202,AAA Batteries (4-pack),1,2.99,07/20/19 12:33,"668 9th St, San Francisco, CA 94016" +222203,Lightning Charging Cable,1,14.95,07/18/19 17:29,"7 River St, Austin, TX 73301" +222204,USB-C Charging Cable,1,11.95,07/04/19 17:33,"183 Washington St, Boston, MA 02215" +222205,AA Batteries (4-pack),2,3.84,07/03/19 14:53,"591 Johnson St, Atlanta, GA 30301" +222206,USB-C Charging Cable,2,11.95,07/04/19 00:18,"730 Cedar St, New York City, NY 10001" +222207,Wired Headphones,1,11.99,07/07/19 13:16,"897 12th St, Los Angeles, CA 90001" +222208,AAA Batteries (4-pack),2,2.99,07/18/19 14:06,"802 11th St, Atlanta, GA 30301" +222209,Vareebadd Phone,1,400,07/06/19 19:32,"588 7th St, San Francisco, CA 94016" +222210,34in Ultrawide Monitor,1,379.99,07/24/19 22:16,"593 7th St, San Francisco, CA 94016" +222211,Lightning Charging Cable,1,14.95,07/24/19 18:19,"923 12th St, San Francisco, CA 94016" +222212,Bose SoundSport Headphones,1,99.99,07/23/19 22:03,"139 South St, Atlanta, GA 30301" +222213,27in FHD Monitor,1,149.99,07/15/19 14:56,"401 Center St, Dallas, TX 75001" +222214,Wired Headphones,1,11.99,07/16/19 12:46,"282 Lake St, San Francisco, CA 94016" +222215,Lightning Charging Cable,1,14.95,07/18/19 00:54,"258 Walnut St, Austin, TX 73301" +222215,Google Phone,1,600,07/18/19 00:54,"258 Walnut St, Austin, TX 73301" +222216,AA Batteries (4-pack),1,3.84,07/02/19 21:21,"211 12th St, San Francisco, CA 94016" +222217,Bose SoundSport Headphones,1,99.99,07/03/19 14:18,"587 River St, San Francisco, CA 94016" +222218,34in Ultrawide Monitor,1,379.99,07/12/19 11:52,"139 Wilson St, Los Angeles, CA 90001" +222219,Apple Airpods Headphones,1,150,07/30/19 23:16,"125 Meadow St, Los Angeles, CA 90001" +222220,34in Ultrawide Monitor,1,379.99,07/09/19 15:00,"528 6th St, Seattle, WA 98101" +222221,AA Batteries (4-pack),1,3.84,07/28/19 10:07,"393 Maple St, Atlanta, GA 30301" +222222,AAA Batteries (4-pack),1,2.99,07/16/19 00:06,"644 Chestnut St, Atlanta, GA 30301" +222223,Bose SoundSport Headphones,1,99.99,07/07/19 10:15,"651 Maple St, San Francisco, CA 94016" +222224,Lightning Charging Cable,1,14.95,07/28/19 08:07,"818 Hickory St, Boston, MA 02215" +222225,Wired Headphones,1,11.99,07/30/19 23:15,"356 8th St, Boston, MA 02215" +222226,Apple Airpods Headphones,1,150,07/04/19 10:46,"30 6th St, Dallas, TX 75001" +222227,AA Batteries (4-pack),1,3.84,07/27/19 07:51,"502 Madison St, Boston, MA 02215" +222228,iPhone,1,700,07/15/19 07:35,"346 14th St, New York City, NY 10001" +222229,AAA Batteries (4-pack),1,2.99,07/02/19 10:11,"430 Wilson St, New York City, NY 10001" +222230,LG Dryer,1,600.0,07/29/19 09:32,"260 9th St, Los Angeles, CA 90001" +222231,Apple Airpods Headphones,1,150,07/05/19 19:16,"835 Washington St, Dallas, TX 75001" +222232,AAA Batteries (4-pack),3,2.99,07/12/19 22:18,"904 Spruce St, New York City, NY 10001" +222233,iPhone,1,700,07/18/19 16:48,"693 West St, Portland, OR 97035" +222233,Lightning Charging Cable,1,14.95,07/18/19 16:48,"693 West St, Portland, OR 97035" +222234,USB-C Charging Cable,1,11.95,07/04/19 17:22,"624 Jackson St, Dallas, TX 75001" +222235,Flatscreen TV,1,300,07/15/19 14:09,"966 1st St, Los Angeles, CA 90001" +222236,Lightning Charging Cable,2,14.95,07/01/19 16:28,"665 Dogwood St, Dallas, TX 75001" +222237,AAA Batteries (4-pack),2,2.99,07/03/19 07:34,"53 Sunset St, Los Angeles, CA 90001" +222238,27in FHD Monitor,1,149.99,07/22/19 18:57,"569 Walnut St, Los Angeles, CA 90001" +222239,Wired Headphones,1,11.99,07/12/19 18:47,"360 Wilson St, Los Angeles, CA 90001" +222240,AAA Batteries (4-pack),2,2.99,07/19/19 23:44,"775 Forest St, San Francisco, CA 94016" +222241,Lightning Charging Cable,1,14.95,07/14/19 01:55,"389 Church St, Los Angeles, CA 90001" +222242,iPhone,1,700,07/27/19 12:49,"362 Washington St, San Francisco, CA 94016" +222243,Apple Airpods Headphones,1,150,07/05/19 17:19,"818 Adams St, Boston, MA 02215" +222244,Lightning Charging Cable,1,14.95,07/14/19 15:05,"109 12th St, Los Angeles, CA 90001" +222245,Apple Airpods Headphones,1,150,07/25/19 06:46,"875 Church St, San Francisco, CA 94016" +222246,AAA Batteries (4-pack),1,2.99,07/15/19 15:33,"225 Pine St, Los Angeles, CA 90001" +222247,Apple Airpods Headphones,1,150,07/30/19 16:40,"729 Spruce St, New York City, NY 10001" +222248,Lightning Charging Cable,1,14.95,07/14/19 11:27,"904 2nd St, Dallas, TX 75001" +222249,AA Batteries (4-pack),1,3.84,07/07/19 07:55,"513 Park St, Los Angeles, CA 90001" +222250,AA Batteries (4-pack),1,3.84,07/18/19 20:07,"838 Willow St, New York City, NY 10001" +222251,iPhone,1,700,07/19/19 00:06,"229 Wilson St, San Francisco, CA 94016" +222252,Bose SoundSport Headphones,1,99.99,07/15/19 05:48,"924 8th St, New York City, NY 10001" +222253,Google Phone,1,600,07/27/19 20:41,"772 Center St, Boston, MA 02215" +222254,Wired Headphones,1,11.99,07/11/19 15:19,"864 Hickory St, Boston, MA 02215" +222255,34in Ultrawide Monitor,1,379.99,07/09/19 09:19,"510 12th St, Boston, MA 02215" +222256,Macbook Pro Laptop,1,1700,07/18/19 18:28,"776 River St, San Francisco, CA 94016" +222257,LG Dryer,1,600.0,07/18/19 12:30,"906 Highland St, Los Angeles, CA 90001" +222258,27in FHD Monitor,1,149.99,07/23/19 21:48,"786 Sunset St, Dallas, TX 75001" +222259,Apple Airpods Headphones,1,150,07/05/19 20:06,"555 Church St, Los Angeles, CA 90001" +222260,Bose SoundSport Headphones,2,99.99,07/02/19 05:09,"938 Dogwood St, San Francisco, CA 94016" +222261,20in Monitor,1,109.99,07/17/19 19:36,"305 Hill St, Los Angeles, CA 90001" +222262,Bose SoundSport Headphones,1,99.99,07/03/19 11:53,"272 Church St, New York City, NY 10001" +222263,27in FHD Monitor,1,149.99,07/11/19 21:51,"898 1st St, Boston, MA 02215" +222264,AAA Batteries (4-pack),1,2.99,07/13/19 09:59,"362 North St, Atlanta, GA 30301" +222265,27in FHD Monitor,1,149.99,07/04/19 18:24,"106 Elm St, Portland, OR 97035" +222266,Wired Headphones,1,11.99,07/04/19 16:37,"293 6th St, Los Angeles, CA 90001" +222267,AAA Batteries (4-pack),1,2.99,07/17/19 00:15,"974 Meadow St, Boston, MA 02215" +222268,Macbook Pro Laptop,1,1700,07/09/19 11:18,"334 Maple St, San Francisco, CA 94016" +222269,27in FHD Monitor,1,149.99,07/27/19 15:09,"833 Johnson St, Los Angeles, CA 90001" +222270,Wired Headphones,1,11.99,07/22/19 18:07,"511 Chestnut St, San Francisco, CA 94016" +222271,Wired Headphones,1,11.99,07/20/19 10:54,"76 Meadow St, New York City, NY 10001" +222271,AA Batteries (4-pack),2,3.84,07/20/19 10:54,"76 Meadow St, New York City, NY 10001" +222272,Wired Headphones,1,11.99,07/20/19 19:03,"735 Lincoln St, Boston, MA 02215" +222273,Bose SoundSport Headphones,1,99.99,07/24/19 03:36,"29 Meadow St, Los Angeles, CA 90001" +222274,USB-C Charging Cable,1,11.95,07/21/19 16:20,"341 7th St, Atlanta, GA 30301" +222275,Apple Airpods Headphones,1,150,07/19/19 03:24,"988 6th St, Seattle, WA 98101" +222276,Lightning Charging Cable,1,14.95,07/25/19 10:48,"367 Lake St, Boston, MA 02215" +222277,AAA Batteries (4-pack),2,2.99,07/26/19 16:14,"453 Park St, New York City, NY 10001" +222278,Apple Airpods Headphones,1,150,07/26/19 17:31,"25 Forest St, San Francisco, CA 94016" +222279,Bose SoundSport Headphones,1,99.99,07/09/19 14:48,"280 4th St, Seattle, WA 98101" +222280,AAA Batteries (4-pack),1,2.99,07/28/19 11:35,"767 Hill St, Seattle, WA 98101" +222281,Apple Airpods Headphones,1,150,07/24/19 16:49,"78 River St, New York City, NY 10001" +222282,27in FHD Monitor,1,149.99,07/08/19 17:38,"624 Adams St, Boston, MA 02215" +222283,USB-C Charging Cable,1,11.95,07/29/19 14:40,"429 Spruce St, Los Angeles, CA 90001" +222284,ThinkPad Laptop,1,999.99,07/10/19 12:29,"176 Washington St, San Francisco, CA 94016" +222285,34in Ultrawide Monitor,1,379.99,07/17/19 16:23,"79 West St, Los Angeles, CA 90001" +222286,34in Ultrawide Monitor,1,379.99,07/25/19 14:45,"995 10th St, Los Angeles, CA 90001" +222287,AAA Batteries (4-pack),4,2.99,07/25/19 14:25,"784 Meadow St, Atlanta, GA 30301" +222288,Apple Airpods Headphones,1,150,07/17/19 16:04,"14 Lincoln St, San Francisco, CA 94016" +222289,Wired Headphones,1,11.99,07/22/19 12:00,"614 Madison St, New York City, NY 10001" +222290,Apple Airpods Headphones,1,150,07/01/19 10:40,"266 South St, Los Angeles, CA 90001" +222291,USB-C Charging Cable,2,11.95,07/26/19 14:39,"364 Sunset St, San Francisco, CA 94016" +222292,Lightning Charging Cable,1,14.95,07/30/19 12:57,"5 13th St, Portland, OR 97035" +222293,Wired Headphones,1,11.99,07/27/19 07:46,"846 14th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +222294,USB-C Charging Cable,1,11.95,07/28/19 14:00,"322 Walnut St, New York City, NY 10001" +222295,Macbook Pro Laptop,1,1700,07/24/19 13:33,"602 Dogwood St, San Francisco, CA 94016" +222296,AA Batteries (4-pack),1,3.84,07/31/19 12:15,"289 Johnson St, San Francisco, CA 94016" +222297,AA Batteries (4-pack),2,3.84,07/27/19 13:53,"609 8th St, Los Angeles, CA 90001" +222298,AAA Batteries (4-pack),4,2.99,07/24/19 13:34,"311 12th St, Portland, OR 97035" +222299,AAA Batteries (4-pack),3,2.99,07/05/19 12:25,"554 Elm St, San Francisco, CA 94016" +222300,AA Batteries (4-pack),1,3.84,07/09/19 14:04,"607 Johnson St, Seattle, WA 98101" +222301,Bose SoundSport Headphones,1,99.99,07/18/19 19:20,"373 South St, New York City, NY 10001" +222302,Wired Headphones,1,11.99,07/26/19 20:41,"646 Elm St, Seattle, WA 98101" +222303,Wired Headphones,1,11.99,07/27/19 22:08,"954 South St, Portland, OR 97035" +222304,Vareebadd Phone,1,400,07/15/19 00:30,"169 5th St, Dallas, TX 75001" +222305,Lightning Charging Cable,1,14.95,07/20/19 09:53,"303 Cedar St, New York City, NY 10001" +222306,Apple Airpods Headphones,1,150,07/09/19 17:16,"318 River St, Los Angeles, CA 90001" +222307,AAA Batteries (4-pack),2,2.99,07/25/19 19:04,"300 Hickory St, New York City, NY 10001" +222308,USB-C Charging Cable,1,11.95,07/19/19 06:12,"528 Jackson St, San Francisco, CA 94016" +222309,AAA Batteries (4-pack),1,2.99,07/09/19 12:15,"504 Johnson St, Atlanta, GA 30301" +222310,AAA Batteries (4-pack),1,2.99,07/15/19 20:55,"922 Walnut St, San Francisco, CA 94016" +222311,Apple Airpods Headphones,1,150,07/15/19 12:46,"386 13th St, San Francisco, CA 94016" +222312,Bose SoundSport Headphones,1,99.99,07/16/19 17:21,"299 Washington St, Los Angeles, CA 90001" +222313,27in FHD Monitor,1,149.99,07/15/19 00:07,"731 Highland St, New York City, NY 10001" +222314,iPhone,1,700,07/22/19 10:04,"745 Pine St, San Francisco, CA 94016" +222315,Apple Airpods Headphones,1,150,07/08/19 15:41,"147 Adams St, Portland, OR 97035" +222316,AAA Batteries (4-pack),1,2.99,07/25/19 20:35,"69 Washington St, Austin, TX 73301" +222317,Google Phone,1,600,07/02/19 09:13,"133 Willow St, Los Angeles, CA 90001" +222317,USB-C Charging Cable,1,11.95,07/02/19 09:13,"133 Willow St, Los Angeles, CA 90001" +222317,Wired Headphones,1,11.99,07/02/19 09:13,"133 Willow St, Los Angeles, CA 90001" +222318,AA Batteries (4-pack),3,3.84,07/07/19 22:35,"269 Washington St, Seattle, WA 98101" +222319,27in FHD Monitor,1,149.99,07/22/19 11:50,"707 Madison St, San Francisco, CA 94016" +222320,Apple Airpods Headphones,1,150,07/30/19 00:17,"873 North St, San Francisco, CA 94016" +222321,USB-C Charging Cable,2,11.95,07/24/19 16:22,"890 8th St, San Francisco, CA 94016" +222322,AA Batteries (4-pack),1,3.84,07/18/19 14:30,"396 4th St, Seattle, WA 98101" +222323,Wired Headphones,1,11.99,07/22/19 16:26,"868 Meadow St, San Francisco, CA 94016" +222324,Wired Headphones,1,11.99,07/12/19 11:54,"668 7th St, Austin, TX 73301" +222325,AAA Batteries (4-pack),2,2.99,07/29/19 19:55,"252 7th St, Austin, TX 73301" +222326,USB-C Charging Cable,1,11.95,07/21/19 11:16,"982 Willow St, San Francisco, CA 94016" +222327,Macbook Pro Laptop,1,1700,07/22/19 20:41,"59 Meadow St, New York City, NY 10001" +222328,Wired Headphones,1,11.99,07/30/19 20:45,"419 Meadow St, Los Angeles, CA 90001" +222329,Apple Airpods Headphones,1,150,07/11/19 13:48,"615 5th St, San Francisco, CA 94016" +222330,AAA Batteries (4-pack),1,2.99,07/12/19 20:25,"867 1st St, Seattle, WA 98101" +222331,AAA Batteries (4-pack),1,2.99,07/08/19 12:26,"475 Jefferson St, Los Angeles, CA 90001" +222332,USB-C Charging Cable,1,11.95,07/25/19 13:39,"224 Madison St, Los Angeles, CA 90001" +222333,Flatscreen TV,1,300,07/14/19 10:38,"389 Johnson St, Portland, ME 04101" +222334,USB-C Charging Cable,1,11.95,07/24/19 20:14,"312 Hickory St, Los Angeles, CA 90001" +222335,AA Batteries (4-pack),2,3.84,07/08/19 20:59,"702 13th St, Los Angeles, CA 90001" +222336,AA Batteries (4-pack),1,3.84,07/13/19 12:04,"220 10th St, San Francisco, CA 94016" +222337,Lightning Charging Cable,1,14.95,07/29/19 15:51,"9 14th St, Seattle, WA 98101" +222338,Macbook Pro Laptop,1,1700,07/26/19 23:33,"769 4th St, Portland, OR 97035" +222339,Lightning Charging Cable,1,14.95,07/04/19 19:35,"985 Hickory St, Los Angeles, CA 90001" +222340,AA Batteries (4-pack),1,3.84,07/04/19 14:24,"101 8th St, Austin, TX 73301" +222341,USB-C Charging Cable,1,11.95,07/11/19 11:04,"4 Sunset St, Los Angeles, CA 90001" +222342,Bose SoundSport Headphones,1,99.99,07/02/19 12:31,"772 9th St, New York City, NY 10001" +222343,27in FHD Monitor,1,149.99,07/15/19 19:23,"541 5th St, Los Angeles, CA 90001" +222344,iPhone,1,700,07/05/19 16:46,"472 Lincoln St, Boston, MA 02215" +222345,USB-C Charging Cable,1,11.95,07/15/19 19:33,"76 Highland St, Austin, TX 73301" +222346,20in Monitor,1,109.99,07/20/19 10:27,"986 2nd St, San Francisco, CA 94016" +222347,Wired Headphones,1,11.99,07/21/19 11:22,"398 Elm St, San Francisco, CA 94016" +222348,USB-C Charging Cable,1,11.95,07/05/19 12:51,"459 Pine St, San Francisco, CA 94016" +222349,27in FHD Monitor,1,149.99,07/10/19 13:03,"129 Lakeview St, Dallas, TX 75001" +222350,AAA Batteries (4-pack),2,2.99,07/29/19 18:09,"367 Adams St, Los Angeles, CA 90001" +222351,AA Batteries (4-pack),1,3.84,07/27/19 22:58,"535 River St, Los Angeles, CA 90001" +222352,Apple Airpods Headphones,1,150,07/19/19 12:04,"49 River St, San Francisco, CA 94016" +222353,AAA Batteries (4-pack),1,2.99,07/16/19 21:54,"183 10th St, Dallas, TX 75001" +222354,USB-C Charging Cable,1,11.95,07/15/19 13:03,"338 Sunset St, New York City, NY 10001" +222355,USB-C Charging Cable,1,11.95,07/30/19 22:26,"652 2nd St, New York City, NY 10001" +222356,27in 4K Gaming Monitor,1,389.99,07/03/19 14:43,"217 Sunset St, Seattle, WA 98101" +222357,USB-C Charging Cable,1,11.95,07/21/19 16:12,"534 Sunset St, Austin, TX 73301" +222358,Macbook Pro Laptop,1,1700,07/01/19 17:51,"494 7th St, New York City, NY 10001" +222358,Wired Headphones,1,11.99,07/01/19 17:51,"494 7th St, New York City, NY 10001" +222359,iPhone,1,700,07/05/19 20:17,"998 Elm St, New York City, NY 10001" +222360,AA Batteries (4-pack),2,3.84,07/10/19 18:17,"554 South St, New York City, NY 10001" +222361,AAA Batteries (4-pack),1,2.99,07/23/19 14:03,"45 Cherry St, Dallas, TX 75001" +222362,Apple Airpods Headphones,1,150,07/28/19 12:22,"246 Lincoln St, San Francisco, CA 94016" +222363,Lightning Charging Cable,1,14.95,07/29/19 10:23,"63 South St, New York City, NY 10001" +222364,USB-C Charging Cable,1,11.95,07/16/19 20:32,"584 Jackson St, Boston, MA 02215" +222365,Lightning Charging Cable,1,14.95,07/24/19 15:09,"25 Jackson St, Los Angeles, CA 90001" +222366,Lightning Charging Cable,3,14.95,07/08/19 21:20,"810 Cherry St, San Francisco, CA 94016" +,,,,, +222367,iPhone,1,700,07/12/19 19:17,"486 Highland St, New York City, NY 10001" +222368,AAA Batteries (4-pack),1,2.99,07/04/19 17:52,"911 Jefferson St, San Francisco, CA 94016" +222369,AA Batteries (4-pack),1,3.84,07/18/19 09:47,"407 Ridge St, Dallas, TX 75001" +222370,AA Batteries (4-pack),1,3.84,07/20/19 19:56,"850 Maple St, New York City, NY 10001" +222371,Apple Airpods Headphones,1,150,07/08/19 10:04,"235 Church St, Dallas, TX 75001" +222372,34in Ultrawide Monitor,1,379.99,07/01/19 13:44,"397 Willow St, Atlanta, GA 30301" +222373,27in 4K Gaming Monitor,1,389.99,07/20/19 09:51,"167 Highland St, Portland, OR 97035" +222374,USB-C Charging Cable,1,11.95,07/05/19 14:16,"467 Chestnut St, San Francisco, CA 94016" +222375,USB-C Charging Cable,1,11.95,07/01/19 10:44,"815 Sunset St, San Francisco, CA 94016" +222376,Bose SoundSport Headphones,1,99.99,07/28/19 08:49,"117 Walnut St, San Francisco, CA 94016" +222377,20in Monitor,1,109.99,07/18/19 11:23,"89 Cedar St, Seattle, WA 98101" +222378,AAA Batteries (4-pack),1,2.99,07/10/19 17:21,"718 Johnson St, Dallas, TX 75001" +222379,USB-C Charging Cable,1,11.95,07/19/19 19:13,"20 Maple St, Boston, MA 02215" +222380,AA Batteries (4-pack),1,3.84,07/26/19 19:39,"904 Sunset St, New York City, NY 10001" +222381,AAA Batteries (4-pack),2,2.99,07/18/19 08:56,"835 Chestnut St, Los Angeles, CA 90001" +222382,Flatscreen TV,1,300,07/19/19 21:25,"961 Hickory St, Boston, MA 02215" +222383,USB-C Charging Cable,1,11.95,07/04/19 13:29,"152 Dogwood St, Dallas, TX 75001" +222384,Apple Airpods Headphones,1,150,07/18/19 18:13,"380 Washington St, Portland, OR 97035" +222385,20in Monitor,1,109.99,07/17/19 19:38,"798 Chestnut St, Dallas, TX 75001" +222386,27in 4K Gaming Monitor,1,389.99,07/15/19 10:08,"727 North St, Dallas, TX 75001" +222387,USB-C Charging Cable,1,11.95,07/26/19 15:37,"760 8th St, Los Angeles, CA 90001" +222388,USB-C Charging Cable,1,11.95,07/09/19 22:01,"754 Washington St, San Francisco, CA 94016" +222389,Wired Headphones,1,11.99,07/04/19 10:35,"999 2nd St, Boston, MA 02215" +222390,iPhone,1,700,07/07/19 17:01,"10 Chestnut St, Boston, MA 02215" +222391,Flatscreen TV,1,300,07/17/19 13:17,"888 Dogwood St, New York City, NY 10001" +222392,Wired Headphones,1,11.99,07/23/19 15:11,"177 4th St, Dallas, TX 75001" +222393,AAA Batteries (4-pack),1,2.99,07/30/19 20:00,"370 Maple St, San Francisco, CA 94016" +222394,ThinkPad Laptop,1,999.99,07/22/19 11:50,"299 South St, Los Angeles, CA 90001" +222395,Lightning Charging Cable,1,14.95,07/03/19 17:17,"513 Cedar St, Boston, MA 02215" +222396,Bose SoundSport Headphones,1,99.99,07/28/19 12:11,"174 Adams St, Portland, ME 04101" +222397,AAA Batteries (4-pack),1,2.99,07/01/19 08:47,"931 Jefferson St, San Francisco, CA 94016" +222398,LG Dryer,1,600.0,07/22/19 16:16,"336 Adams St, Atlanta, GA 30301" +222399,27in FHD Monitor,1,149.99,07/16/19 14:38,"336 Lake St, Dallas, TX 75001" +222400,Flatscreen TV,1,300,07/27/19 16:39,"7 Meadow St, San Francisco, CA 94016" +222401,AA Batteries (4-pack),2,3.84,07/04/19 00:21,"956 Johnson St, San Francisco, CA 94016" +222402,Flatscreen TV,1,300,07/25/19 08:21,"42 Cherry St, Boston, MA 02215" +222403,AAA Batteries (4-pack),2,2.99,07/16/19 20:11,"774 Main St, New York City, NY 10001" +222404,Lightning Charging Cable,1,14.95,07/13/19 21:06,"133 Chestnut St, Seattle, WA 98101" +222405,USB-C Charging Cable,1,11.95,07/28/19 14:09,"36 Forest St, San Francisco, CA 94016" +222406,AAA Batteries (4-pack),4,2.99,07/29/19 11:37,"392 7th St, Los Angeles, CA 90001" +222407,Lightning Charging Cable,1,14.95,07/05/19 09:47,"662 Chestnut St, Portland, OR 97035" +222408,AAA Batteries (4-pack),1,2.99,07/29/19 07:42,"707 2nd St, New York City, NY 10001" +222409,27in 4K Gaming Monitor,1,389.99,07/30/19 16:33,"762 Park St, San Francisco, CA 94016" +222410,USB-C Charging Cable,1,11.95,07/03/19 04:42,"563 North St, New York City, NY 10001" +222411,Lightning Charging Cable,1,14.95,07/14/19 21:42,"335 14th St, San Francisco, CA 94016" +222412,Lightning Charging Cable,1,14.95,07/18/19 08:23,"9 Park St, Boston, MA 02215" +222413,Wired Headphones,2,11.99,07/06/19 03:42,"380 6th St, San Francisco, CA 94016" +222414,USB-C Charging Cable,2,11.95,07/22/19 19:42,"809 Main St, Atlanta, GA 30301" +222415,iPhone,1,700,07/09/19 15:27,"61 4th St, San Francisco, CA 94016" +222416,Macbook Pro Laptop,1,1700,07/28/19 08:15,"560 Meadow St, Los Angeles, CA 90001" +222417,Wired Headphones,1,11.99,07/14/19 20:12,"49 Lake St, Boston, MA 02215" +222418,USB-C Charging Cable,1,11.95,07/09/19 11:47,"480 13th St, Atlanta, GA 30301" +222419,27in 4K Gaming Monitor,1,389.99,07/26/19 13:12,"938 Lincoln St, New York City, NY 10001" +222420,Macbook Pro Laptop,1,1700,07/26/19 13:22,"642 Ridge St, San Francisco, CA 94016" +222421,AA Batteries (4-pack),2,3.84,07/21/19 12:53,"678 River St, Portland, OR 97035" +222422,AA Batteries (4-pack),1,3.84,07/17/19 10:26,"111 5th St, New York City, NY 10001" +222423,Bose SoundSport Headphones,1,99.99,07/04/19 15:13,"150 Ridge St, Portland, OR 97035" +222424,USB-C Charging Cable,1,11.95,07/03/19 23:53,"674 7th St, San Francisco, CA 94016" +222425,Apple Airpods Headphones,1,150,07/08/19 11:15,"946 Park St, Los Angeles, CA 90001" +222426,Google Phone,1,600,07/12/19 12:56,"320 Wilson St, Los Angeles, CA 90001" +222427,Bose SoundSport Headphones,1,99.99,07/11/19 15:39,"734 2nd St, San Francisco, CA 94016" +222428,Lightning Charging Cable,1,14.95,07/24/19 08:32,"66 1st St, Dallas, TX 75001" +222429,AA Batteries (4-pack),2,3.84,07/08/19 15:04,"678 13th St, San Francisco, CA 94016" +222430,AAA Batteries (4-pack),4,2.99,07/12/19 11:38,"135 Park St, San Francisco, CA 94016" +222431,USB-C Charging Cable,1,11.95,07/20/19 13:19,"955 4th St, San Francisco, CA 94016" +222432,USB-C Charging Cable,1,11.95,07/13/19 18:16,"2 14th St, New York City, NY 10001" +222433,Lightning Charging Cable,1,14.95,07/18/19 13:57,"530 Hill St, Portland, OR 97035" +222434,iPhone,1,700,07/28/19 09:40,"655 Lakeview St, Dallas, TX 75001" +222435,Bose SoundSport Headphones,1,99.99,07/11/19 07:53,"719 Walnut St, Atlanta, GA 30301" +222436,iPhone,1,700,07/17/19 21:17,"500 10th St, Seattle, WA 98101" +222436,Apple Airpods Headphones,1,150,07/17/19 21:17,"500 10th St, Seattle, WA 98101" +222437,USB-C Charging Cable,2,11.95,07/20/19 11:36,"111 Forest St, Boston, MA 02215" +222438,AAA Batteries (4-pack),1,2.99,07/05/19 20:17,"511 Hickory St, Boston, MA 02215" +222439,Wired Headphones,1,11.99,07/10/19 07:31,"772 7th St, New York City, NY 10001" +222440,Lightning Charging Cable,1,14.95,07/20/19 11:36,"137 Johnson St, San Francisco, CA 94016" +222441,27in FHD Monitor,1,149.99,07/23/19 15:27,"662 9th St, Boston, MA 02215" +222442,AAA Batteries (4-pack),3,2.99,07/10/19 16:10,"306 Willow St, San Francisco, CA 94016" +222443,Lightning Charging Cable,1,14.95,07/20/19 18:04,"403 4th St, Boston, MA 02215" +222444,AAA Batteries (4-pack),1,2.99,07/16/19 21:21,"556 Jackson St, San Francisco, CA 94016" +222445,USB-C Charging Cable,1,11.95,07/11/19 11:16,"983 Church St, Dallas, TX 75001" +222446,ThinkPad Laptop,1,999.99,07/01/19 13:38,"733 Cedar St, New York City, NY 10001" +222447,iPhone,1,700,07/16/19 15:25,"413 Lincoln St, Dallas, TX 75001" +222447,Lightning Charging Cable,1,14.95,07/16/19 15:25,"413 Lincoln St, Dallas, TX 75001" +222448,AA Batteries (4-pack),2,3.84,07/24/19 21:11,"575 4th St, Austin, TX 73301" +222449,Apple Airpods Headphones,1,150,07/30/19 12:18,"173 River St, Seattle, WA 98101" +222450,AAA Batteries (4-pack),1,2.99,07/14/19 17:38,"706 Wilson St, Dallas, TX 75001" +222451,27in FHD Monitor,1,149.99,07/28/19 11:14,"733 Church St, New York City, NY 10001" +222452,Macbook Pro Laptop,1,1700,07/07/19 17:12,"450 Hickory St, Dallas, TX 75001" +222453,AA Batteries (4-pack),1,3.84,07/25/19 09:08,"811 Spruce St, San Francisco, CA 94016" +222454,27in FHD Monitor,1,149.99,07/02/19 22:05,"585 Jefferson St, Austin, TX 73301" +222455,Apple Airpods Headphones,1,150,07/30/19 12:30,"848 South St, Seattle, WA 98101" +222456,Lightning Charging Cable,1,14.95,07/19/19 10:57,"598 5th St, Boston, MA 02215" +222457,27in 4K Gaming Monitor,1,389.99,07/14/19 17:36,"16 Wilson St, New York City, NY 10001" +222458,USB-C Charging Cable,1,11.95,07/20/19 20:14,"42 Center St, San Francisco, CA 94016" +222459,27in FHD Monitor,1,149.99,07/27/19 16:17,"763 Pine St, San Francisco, CA 94016" +222460,Flatscreen TV,1,300,07/19/19 01:30,"704 South St, Boston, MA 02215" +222461,Lightning Charging Cable,1,14.95,07/06/19 11:39,"43 Jackson St, Atlanta, GA 30301" +222462,USB-C Charging Cable,1,11.95,07/29/19 11:25,"769 Washington St, Los Angeles, CA 90001" +222463,AAA Batteries (4-pack),1,2.99,07/28/19 18:00,"738 Park St, New York City, NY 10001" +222464,Wired Headphones,1,11.99,07/20/19 15:36,"767 Willow St, New York City, NY 10001" +222465,Apple Airpods Headphones,2,150,07/22/19 10:18,"459 Pine St, New York City, NY 10001" +222466,Lightning Charging Cable,1,14.95,07/28/19 16:45,"154 Ridge St, Boston, MA 02215" +222467,USB-C Charging Cable,1,11.95,07/28/19 21:02,"930 9th St, Dallas, TX 75001" +222468,Apple Airpods Headphones,1,150,07/21/19 09:33,"386 14th St, San Francisco, CA 94016" +222469,iPhone,1,700,07/25/19 09:09,"961 6th St, Austin, TX 73301" +222469,Apple Airpods Headphones,1,150,07/25/19 09:09,"961 6th St, Austin, TX 73301" +222470,Wired Headphones,1,11.99,07/22/19 14:27,"424 11th St, Dallas, TX 75001" +222471,AA Batteries (4-pack),2,3.84,07/25/19 22:28,"780 Jefferson St, Austin, TX 73301" +222472,27in FHD Monitor,1,149.99,07/09/19 18:30,"650 River St, Los Angeles, CA 90001" +222473,AA Batteries (4-pack),1,3.84,07/13/19 10:15,"721 Lincoln St, Austin, TX 73301" +222474,USB-C Charging Cable,1,11.95,07/13/19 22:04,"669 Walnut St, Boston, MA 02215" +222475,AA Batteries (4-pack),1,3.84,07/15/19 10:49,"762 Lakeview St, Boston, MA 02215" +222476,Wired Headphones,1,11.99,07/01/19 12:42,"277 Chestnut St, Portland, OR 97035" +222477,Lightning Charging Cable,1,14.95,07/31/19 07:07,"757 Lake St, San Francisco, CA 94016" +222478,Bose SoundSport Headphones,1,99.99,07/26/19 18:39,"39 Main St, Seattle, WA 98101" +222479,AAA Batteries (4-pack),1,2.99,07/26/19 22:13,"57 Jackson St, Los Angeles, CA 90001" +222480,ThinkPad Laptop,1,999.99,07/08/19 20:45,"810 Jackson St, San Francisco, CA 94016" +222481,AAA Batteries (4-pack),2,2.99,07/09/19 07:56,"444 Hickory St, Atlanta, GA 30301" +222482,Lightning Charging Cable,1,14.95,07/10/19 12:41,"257 Lake St, Austin, TX 73301" +222483,Bose SoundSport Headphones,1,99.99,07/07/19 12:19,"389 Madison St, Los Angeles, CA 90001" +222484,AA Batteries (4-pack),1,3.84,07/03/19 10:12,"658 Lakeview St, New York City, NY 10001" +222485,Wired Headphones,1,11.99,07/24/19 15:05,"814 Jefferson St, Dallas, TX 75001" +222486,Google Phone,1,600,07/06/19 16:09,"700 11th St, Boston, MA 02215" +222487,Lightning Charging Cable,1,14.95,07/08/19 11:00,"302 South St, San Francisco, CA 94016" +222488,Macbook Pro Laptop,1,1700,07/06/19 14:48,"560 Park St, Atlanta, GA 30301" +222489,Google Phone,1,600,07/21/19 17:34,"123 9th St, Seattle, WA 98101" +222490,Wired Headphones,1,11.99,07/18/19 22:20,"874 North St, New York City, NY 10001" +222491,Apple Airpods Headphones,1,150,07/29/19 00:04,"822 6th St, Portland, OR 97035" +222492,AAA Batteries (4-pack),2,2.99,07/16/19 16:47,"649 Hill St, New York City, NY 10001" +222493,Lightning Charging Cable,1,14.95,07/11/19 22:05,"638 Highland St, San Francisco, CA 94016" +222494,34in Ultrawide Monitor,1,379.99,07/13/19 04:33,"946 9th St, Boston, MA 02215" +222495,Macbook Pro Laptop,1,1700,07/27/19 15:06,"349 Jefferson St, New York City, NY 10001" +222496,ThinkPad Laptop,1,999.99,07/07/19 16:56,"580 Main St, San Francisco, CA 94016" +222497,Vareebadd Phone,1,400,07/26/19 11:03,"80 Meadow St, New York City, NY 10001" +222498,Apple Airpods Headphones,1,150,07/15/19 10:29,"234 Lincoln St, Seattle, WA 98101" +222499,Lightning Charging Cable,1,14.95,07/16/19 23:38,"845 Ridge St, San Francisco, CA 94016" +222500,USB-C Charging Cable,1,11.95,07/11/19 00:59,"893 Dogwood St, Austin, TX 73301" +222501,Flatscreen TV,1,300,07/31/19 21:35,"620 Wilson St, Los Angeles, CA 90001" +222502,Google Phone,1,600,07/08/19 20:52,"93 Madison St, Seattle, WA 98101" +222502,USB-C Charging Cable,2,11.95,07/08/19 20:52,"93 Madison St, Seattle, WA 98101" +222503,34in Ultrawide Monitor,1,379.99,07/27/19 09:34,"946 Park St, New York City, NY 10001" +222504,USB-C Charging Cable,1,11.95,07/20/19 20:50,"963 Church St, Seattle, WA 98101" +222505,AA Batteries (4-pack),1,3.84,07/03/19 20:47,"339 8th St, New York City, NY 10001" +222506,Macbook Pro Laptop,1,1700,07/01/19 22:09,"567 Hill St, New York City, NY 10001" +222507,AA Batteries (4-pack),1,3.84,07/21/19 18:29,"843 Lakeview St, San Francisco, CA 94016" +222508,Flatscreen TV,1,300,07/23/19 15:39,"512 Sunset St, New York City, NY 10001" +222508,Vareebadd Phone,1,400,07/23/19 15:39,"512 Sunset St, New York City, NY 10001" +222509,27in FHD Monitor,1,149.99,07/29/19 11:23,"283 14th St, Los Angeles, CA 90001" +222510,AA Batteries (4-pack),1,3.84,07/28/19 13:45,"156 West St, Los Angeles, CA 90001" +222511,Wired Headphones,1,11.99,07/24/19 14:59,"235 Forest St, Boston, MA 02215" +222512,Lightning Charging Cable,1,14.95,07/06/19 20:39,"339 River St, San Francisco, CA 94016" +222513,AAA Batteries (4-pack),1,2.99,07/11/19 23:13,"395 4th St, New York City, NY 10001" +222514,ThinkPad Laptop,1,999.99,07/07/19 22:17,"462 Chestnut St, Dallas, TX 75001" +222514,27in FHD Monitor,1,149.99,07/07/19 22:17,"462 Chestnut St, Dallas, TX 75001" +222515,Lightning Charging Cable,1,14.95,07/21/19 19:48,"546 Cherry St, Portland, OR 97035" +222516,Bose SoundSport Headphones,1,99.99,07/07/19 13:18,"664 Meadow St, Boston, MA 02215" +222517,AAA Batteries (4-pack),2,2.99,07/29/19 12:49,"490 Highland St, Los Angeles, CA 90001" +222518,Wired Headphones,1,11.99,07/21/19 10:52,"237 Park St, Boston, MA 02215" +222519,27in FHD Monitor,1,149.99,07/06/19 12:09,"373 9th St, Portland, OR 97035" +222520,Bose SoundSport Headphones,1,99.99,07/04/19 17:38,"973 Madison St, Atlanta, GA 30301" +222521,USB-C Charging Cable,1,11.95,07/01/19 11:08,"681 Spruce St, Boston, MA 02215" +222522,Wired Headphones,1,11.99,07/05/19 12:54,"166 Chestnut St, Portland, OR 97035" +222523,Apple Airpods Headphones,1,150,07/28/19 18:43,"201 Maple St, Atlanta, GA 30301" +222524,Wired Headphones,1,11.99,07/08/19 16:29,"17 West St, Seattle, WA 98101" +222525,USB-C Charging Cable,1,11.95,07/03/19 10:34,"916 12th St, Los Angeles, CA 90001" +222526,34in Ultrawide Monitor,1,379.99,07/05/19 17:14,"298 7th St, San Francisco, CA 94016" +222527,Lightning Charging Cable,1,14.95,07/20/19 07:37,"870 Hickory St, San Francisco, CA 94016" +222528,USB-C Charging Cable,1,11.95,07/10/19 16:29,"992 Willow St, San Francisco, CA 94016" +222529,Apple Airpods Headphones,1,150,07/20/19 08:10,"372 Jefferson St, Los Angeles, CA 90001" +222530,Apple Airpods Headphones,1,150,07/16/19 22:10,"798 8th St, Boston, MA 02215" +222531,AA Batteries (4-pack),1,3.84,07/04/19 10:48,"969 Jackson St, Seattle, WA 98101" +222532,Apple Airpods Headphones,1,150,07/14/19 00:32,"570 Adams St, Seattle, WA 98101" +222533,Macbook Pro Laptop,1,1700,07/13/19 12:25,"244 Maple St, Dallas, TX 75001" +222534,Apple Airpods Headphones,1,150,07/10/19 09:13,"307 Lakeview St, New York City, NY 10001" +222535,AA Batteries (4-pack),1,3.84,07/28/19 21:45,"841 South St, Los Angeles, CA 90001" +222536,iPhone,1,700,07/23/19 17:20,"231 Center St, Los Angeles, CA 90001" +222537,Lightning Charging Cable,1,14.95,07/18/19 22:07,"794 Maple St, Atlanta, GA 30301" +222538,AA Batteries (4-pack),1,3.84,07/16/19 18:22,"699 8th St, Los Angeles, CA 90001" +222539,27in FHD Monitor,1,149.99,07/03/19 14:57,"599 Lakeview St, San Francisco, CA 94016" +222540,Lightning Charging Cable,1,14.95,07/04/19 00:48,"139 Adams St, Dallas, TX 75001" +222541,iPhone,1,700,07/25/19 22:47,"288 Hickory St, Portland, OR 97035" +222542,27in FHD Monitor,1,149.99,07/26/19 20:15,"428 11th St, Dallas, TX 75001" +222543,Bose SoundSport Headphones,1,99.99,07/21/19 13:52,"884 Wilson St, Boston, MA 02215" +222544,Flatscreen TV,1,300,07/03/19 07:48,"908 Lake St, San Francisco, CA 94016" +222545,iPhone,1,700,07/28/19 22:30,"999 Sunset St, Seattle, WA 98101" +222546,ThinkPad Laptop,1,999.99,07/11/19 13:49,"134 6th St, Dallas, TX 75001" +222547,Google Phone,1,600,07/27/19 20:36,"469 Church St, Dallas, TX 75001" +222548,27in 4K Gaming Monitor,1,389.99,07/29/19 12:35,"51 Lake St, New York City, NY 10001" +222549,Bose SoundSport Headphones,1,99.99,07/03/19 16:07,"654 Jefferson St, Los Angeles, CA 90001" +222550,Wired Headphones,1,11.99,07/07/19 14:21,"121 Highland St, San Francisco, CA 94016" +222551,USB-C Charging Cable,1,11.95,07/26/19 03:19,"986 5th St, San Francisco, CA 94016" +222552,Apple Airpods Headphones,1,150,07/22/19 18:29,"185 Adams St, New York City, NY 10001" +222552,AAA Batteries (4-pack),1,2.99,07/22/19 18:29,"185 Adams St, New York City, NY 10001" +222553,AAA Batteries (4-pack),1,2.99,07/18/19 23:15,"559 Meadow St, Boston, MA 02215" +222554,iPhone,1,700,07/31/19 11:10,"377 Lakeview St, Boston, MA 02215" +222555,Lightning Charging Cable,1,14.95,07/06/19 21:58,"182 Dogwood St, Boston, MA 02215" +222556,Flatscreen TV,1,300,07/27/19 16:49,"510 5th St, Portland, ME 04101" +222556,34in Ultrawide Monitor,1,379.99,07/27/19 16:49,"510 5th St, Portland, ME 04101" +222557,Lightning Charging Cable,1,14.95,07/11/19 17:46,"590 2nd St, Austin, TX 73301" +222558,34in Ultrawide Monitor,1,379.99,07/27/19 17:34,"307 Pine St, San Francisco, CA 94016" +222559,34in Ultrawide Monitor,1,379.99,07/19/19 00:32,"832 Madison St, Boston, MA 02215" +222560,USB-C Charging Cable,1,11.95,07/06/19 23:21,"546 North St, San Francisco, CA 94016" +222561,AA Batteries (4-pack),1,3.84,07/27/19 15:30,"893 11th St, New York City, NY 10001" +222562,27in FHD Monitor,1,149.99,07/05/19 18:45,"249 Jackson St, Los Angeles, CA 90001" +222563,AA Batteries (4-pack),1,3.84,07/10/19 08:40,"943 9th St, Boston, MA 02215" +222564,AAA Batteries (4-pack),3,2.99,07/07/19 11:17,"213 Church St, Atlanta, GA 30301" +222565,AA Batteries (4-pack),1,3.84,07/04/19 14:02,"443 Jackson St, Seattle, WA 98101" +222566,27in 4K Gaming Monitor,1,389.99,07/25/19 16:42,"992 Forest St, San Francisco, CA 94016" +222567,AAA Batteries (4-pack),1,2.99,07/27/19 22:11,"764 Madison St, Austin, TX 73301" +222568,27in FHD Monitor,1,149.99,07/19/19 09:49,"359 Johnson St, Dallas, TX 75001" +222569,AAA Batteries (4-pack),4,2.99,07/31/19 09:46,"58 Sunset St, Dallas, TX 75001" +222570,AAA Batteries (4-pack),1,2.99,07/08/19 09:45,"417 Lakeview St, Atlanta, GA 30301" +222571,AA Batteries (4-pack),1,3.84,07/27/19 22:25,"399 Jefferson St, Atlanta, GA 30301" +222572,Bose SoundSport Headphones,1,99.99,07/14/19 18:40,"910 Madison St, Boston, MA 02215" +222573,LG Washing Machine,1,600.0,07/05/19 17:11,"585 9th St, San Francisco, CA 94016" +222574,ThinkPad Laptop,1,999.99,07/20/19 16:58,"945 South St, Los Angeles, CA 90001" +222575,ThinkPad Laptop,1,999.99,07/20/19 15:03,"374 4th St, San Francisco, CA 94016" +222575,Bose SoundSport Headphones,1,99.99,07/20/19 15:03,"374 4th St, San Francisco, CA 94016" +222576,iPhone,1,700,07/27/19 14:48,"577 13th St, Portland, OR 97035" +222576,Lightning Charging Cable,1,14.95,07/27/19 14:48,"577 13th St, Portland, OR 97035" +222577,Flatscreen TV,1,300,07/24/19 21:13,"76 6th St, New York City, NY 10001" +222578,34in Ultrawide Monitor,1,379.99,07/29/19 10:00,"601 Willow St, Dallas, TX 75001" +222579,Wired Headphones,1,11.99,07/01/19 22:43,"133 2nd St, New York City, NY 10001" +222580,27in FHD Monitor,1,149.99,07/14/19 14:19,"331 Dogwood St, San Francisco, CA 94016" +222581,Wired Headphones,1,11.99,07/21/19 14:33,"327 Dogwood St, San Francisco, CA 94016" +222582,Wired Headphones,1,11.99,07/22/19 14:07,"325 12th St, San Francisco, CA 94016" +222583,AA Batteries (4-pack),1,3.84,07/17/19 21:10,"155 Main St, San Francisco, CA 94016" +222584,34in Ultrawide Monitor,1,379.99,07/23/19 21:41,"67 Meadow St, San Francisco, CA 94016" +222585,27in 4K Gaming Monitor,1,389.99,07/08/19 16:06,"786 5th St, Seattle, WA 98101" +222586,AAA Batteries (4-pack),1,2.99,07/05/19 16:29,"846 9th St, San Francisco, CA 94016" +222587,USB-C Charging Cable,1,11.95,07/17/19 16:54,"803 14th St, New York City, NY 10001" +222588,Macbook Pro Laptop,1,1700,07/26/19 14:24,"407 Meadow St, Portland, OR 97035" +222589,Wired Headphones,1,11.99,07/26/19 13:59,"857 Center St, San Francisco, CA 94016" +222590,USB-C Charging Cable,1,11.95,07/18/19 17:50,"937 Maple St, San Francisco, CA 94016" +222591,Wired Headphones,1,11.99,07/23/19 19:43,"731 Willow St, Los Angeles, CA 90001" +222592,AAA Batteries (4-pack),2,2.99,07/19/19 17:59,"82 Meadow St, Portland, ME 04101" +222593,iPhone,1,700,07/21/19 09:48,"346 South St, San Francisco, CA 94016" +222594,ThinkPad Laptop,1,999.99,07/03/19 20:42,"348 Highland St, Boston, MA 02215" +222595,Bose SoundSport Headphones,1,99.99,07/02/19 08:08,"431 5th St, Boston, MA 02215" +222596,Bose SoundSport Headphones,1,99.99,07/30/19 23:37,"980 13th St, Austin, TX 73301" +222597,AA Batteries (4-pack),2,3.84,07/17/19 20:13,"766 Lake St, San Francisco, CA 94016" +222598,AA Batteries (4-pack),1,3.84,07/16/19 15:48,"7 Cherry St, Austin, TX 73301" +222599,AA Batteries (4-pack),1,3.84,07/10/19 15:35,"35 Adams St, San Francisco, CA 94016" +222600,AA Batteries (4-pack),1,3.84,07/20/19 12:43,"609 Lake St, Los Angeles, CA 90001" +222601,Wired Headphones,1,11.99,07/16/19 01:21,"972 Washington St, San Francisco, CA 94016" +222602,Apple Airpods Headphones,1,150,07/21/19 11:52,"207 Jackson St, San Francisco, CA 94016" +222603,Apple Airpods Headphones,1,150,07/13/19 22:57,"852 South St, San Francisco, CA 94016" +222604,AAA Batteries (4-pack),1,2.99,07/19/19 13:06,"239 South St, Atlanta, GA 30301" +222605,Lightning Charging Cable,1,14.95,07/01/19 12:05,"254 7th St, New York City, NY 10001" +222606,AAA Batteries (4-pack),1,2.99,07/14/19 14:05,"267 Hickory St, San Francisco, CA 94016" +222607,USB-C Charging Cable,1,11.95,07/01/19 10:15,"934 Hill St, Los Angeles, CA 90001" +222608,Wired Headphones,1,11.99,07/21/19 15:22,"331 Lake St, San Francisco, CA 94016" +222609,ThinkPad Laptop,1,999.99,07/01/19 18:08,"702 Willow St, Los Angeles, CA 90001" +222610,AA Batteries (4-pack),1,3.84,07/09/19 16:56,"300 Center St, Dallas, TX 75001" +222611,Wired Headphones,1,11.99,07/06/19 12:29,"490 Washington St, New York City, NY 10001" +222612,Google Phone,1,600,07/18/19 21:12,"371 1st St, San Francisco, CA 94016" +222613,Macbook Pro Laptop,1,1700,07/06/19 16:00,"926 Wilson St, Dallas, TX 75001" +222614,LG Washing Machine,1,600.0,07/25/19 22:17,"554 5th St, Atlanta, GA 30301" +222615,AA Batteries (4-pack),1,3.84,07/22/19 17:46,"779 Wilson St, Boston, MA 02215" +222616,AAA Batteries (4-pack),2,2.99,07/27/19 17:52,"826 Park St, Los Angeles, CA 90001" +222617,27in 4K Gaming Monitor,1,389.99,07/20/19 11:44,"760 Cherry St, San Francisco, CA 94016" +222618,Wired Headphones,1,11.99,07/04/19 14:39,"797 Sunset St, San Francisco, CA 94016" +222619,AA Batteries (4-pack),3,3.84,07/16/19 13:01,"706 South St, San Francisco, CA 94016" +222620,Wired Headphones,1,11.99,07/27/19 17:06,"70 11th St, San Francisco, CA 94016" +222621,Apple Airpods Headphones,1,150,07/12/19 11:13,"23 Main St, Dallas, TX 75001" +222622,Apple Airpods Headphones,1,150,07/29/19 15:14,"687 4th St, San Francisco, CA 94016" +222623,Bose SoundSport Headphones,1,99.99,07/31/19 08:55,"198 Meadow St, San Francisco, CA 94016" +222624,27in FHD Monitor,1,149.99,07/19/19 18:11,"521 Madison St, Los Angeles, CA 90001" +222625,ThinkPad Laptop,1,999.99,07/18/19 21:12,"747 Washington St, Boston, MA 02215" +222626,AA Batteries (4-pack),1,3.84,07/02/19 18:50,"206 Maple St, Dallas, TX 75001" +222627,AAA Batteries (4-pack),2,2.99,07/22/19 14:21,"619 West St, Los Angeles, CA 90001" +222628,34in Ultrawide Monitor,1,379.99,07/06/19 10:21,"688 North St, Portland, OR 97035" +222629,Apple Airpods Headphones,1,150,07/26/19 12:30,"337 Washington St, Dallas, TX 75001" +222630,27in 4K Gaming Monitor,1,389.99,07/02/19 15:00,"939 7th St, Austin, TX 73301" +222631,USB-C Charging Cable,1,11.95,07/30/19 13:44,"120 Lake St, Dallas, TX 75001" +222632,Google Phone,1,600,07/29/19 12:11,"525 Center St, Portland, OR 97035" +222633,34in Ultrawide Monitor,1,379.99,07/07/19 20:45,"335 Lakeview St, Atlanta, GA 30301" +222634,Apple Airpods Headphones,1,150,07/26/19 15:00,"54 Elm St, New York City, NY 10001" +222635,Wired Headphones,2,11.99,07/23/19 15:13,"11 Park St, Seattle, WA 98101" +222636,Bose SoundSport Headphones,1,99.99,07/08/19 19:00,"85 Pine St, Portland, OR 97035" +222637,Apple Airpods Headphones,1,150,07/30/19 07:42,"602 Wilson St, Dallas, TX 75001" +222638,AA Batteries (4-pack),1,3.84,07/14/19 12:32,"947 Lincoln St, Boston, MA 02215" +222639,Lightning Charging Cable,2,14.95,07/13/19 08:09,"680 7th St, Seattle, WA 98101" +222640,USB-C Charging Cable,1,11.95,07/04/19 21:00,"383 5th St, Atlanta, GA 30301" +222641,27in FHD Monitor,1,149.99,07/25/19 09:18,"335 Pine St, Boston, MA 02215" +222642,LG Dryer,1,600.0,07/04/19 12:09,"93 Forest St, San Francisco, CA 94016" +222643,Flatscreen TV,1,300,07/25/19 10:41,"311 Lakeview St, Portland, ME 04101" +222644,Lightning Charging Cable,1,14.95,07/11/19 21:47,"221 6th St, Seattle, WA 98101" +222644,27in FHD Monitor,1,149.99,07/11/19 21:47,"221 6th St, Seattle, WA 98101" +222645,Bose SoundSport Headphones,1,99.99,07/13/19 09:01,"169 West St, Dallas, TX 75001" +222646,Lightning Charging Cable,1,14.95,07/08/19 23:50,"534 Church St, New York City, NY 10001" +222647,AAA Batteries (4-pack),1,2.99,07/30/19 23:31,"795 Madison St, Los Angeles, CA 90001" +222648,Lightning Charging Cable,1,14.95,07/26/19 18:31,"522 12th St, San Francisco, CA 94016" +222649,AA Batteries (4-pack),1,3.84,07/19/19 16:49,"141 Adams St, New York City, NY 10001" +222650,Flatscreen TV,1,300,07/30/19 15:58,"688 5th St, San Francisco, CA 94016" +222651,Lightning Charging Cable,1,14.95,07/14/19 16:46,"703 13th St, Seattle, WA 98101" +222652,iPhone,1,700,07/05/19 20:17,"69 Wilson St, Dallas, TX 75001" +222652,Lightning Charging Cable,1,14.95,07/05/19 20:17,"69 Wilson St, Dallas, TX 75001" +222653,USB-C Charging Cable,2,11.95,07/10/19 16:39,"587 Highland St, San Francisco, CA 94016" +222654,Bose SoundSport Headphones,1,99.99,07/06/19 06:41,"711 Maple St, Austin, TX 73301" +222655,USB-C Charging Cable,2,11.95,07/22/19 10:35,"834 7th St, New York City, NY 10001" +222656,Google Phone,1,600,07/09/19 14:38,"619 Church St, Los Angeles, CA 90001" +222656,USB-C Charging Cable,1,11.95,07/09/19 14:38,"619 Church St, Los Angeles, CA 90001" +222657,Bose SoundSport Headphones,1,99.99,07/02/19 10:40,"454 14th St, Portland, OR 97035" +222658,Bose SoundSport Headphones,1,99.99,07/16/19 11:24,"320 Chestnut St, San Francisco, CA 94016" +222658,AAA Batteries (4-pack),1,2.99,07/16/19 11:24,"320 Chestnut St, San Francisco, CA 94016" +222659,Lightning Charging Cable,1,14.95,07/18/19 17:38,"473 Johnson St, Atlanta, GA 30301" +222660,AA Batteries (4-pack),1,3.84,07/02/19 16:35,"100 Lincoln St, San Francisco, CA 94016" +222661,Bose SoundSport Headphones,1,99.99,07/08/19 20:57,"10 4th St, San Francisco, CA 94016" +222662,AAA Batteries (4-pack),2,2.99,07/11/19 02:40,"167 Dogwood St, New York City, NY 10001" +222663,27in FHD Monitor,2,149.99,07/01/19 16:19,"346 Cedar St, New York City, NY 10001" +222664,Apple Airpods Headphones,1,150,07/12/19 14:52,"888 Cedar St, San Francisco, CA 94016" +222665,AA Batteries (4-pack),1,3.84,07/06/19 17:30,"626 South St, Los Angeles, CA 90001" +222666,Lightning Charging Cable,1,14.95,07/25/19 12:23,"797 Johnson St, Los Angeles, CA 90001" +222667,Bose SoundSport Headphones,1,99.99,07/11/19 11:41,"860 Ridge St, San Francisco, CA 94016" +222668,Google Phone,1,600,07/15/19 19:49,"729 Adams St, San Francisco, CA 94016" +222669,Apple Airpods Headphones,1,150,07/23/19 17:18,"312 Lake St, Boston, MA 02215" +222670,Lightning Charging Cable,1,14.95,07/04/19 07:08,"646 Maple St, Seattle, WA 98101" +222671,iPhone,1,700,07/27/19 19:18,"143 Dogwood St, Seattle, WA 98101" +222672,Lightning Charging Cable,1,14.95,07/21/19 13:41,"616 11th St, Los Angeles, CA 90001" +222673,AAA Batteries (4-pack),1,2.99,07/28/19 12:46,"149 12th St, San Francisco, CA 94016" +222674,iPhone,1,700,07/09/19 14:28,"700 Lake St, Portland, OR 97035" +222675,AAA Batteries (4-pack),1,2.99,07/11/19 14:09,"469 West St, Los Angeles, CA 90001" +222675,AAA Batteries (4-pack),2,2.99,07/11/19 14:09,"469 West St, Los Angeles, CA 90001" +222676,Wired Headphones,1,11.99,07/10/19 12:57,"705 Hill St, San Francisco, CA 94016" +222677,Bose SoundSport Headphones,1,99.99,07/04/19 08:42,"838 Jackson St, San Francisco, CA 94016" +222678,Wired Headphones,1,11.99,07/27/19 02:32,"5 11th St, Seattle, WA 98101" +222679,USB-C Charging Cable,1,11.95,07/24/19 21:46,"987 Center St, Dallas, TX 75001" +222680,AAA Batteries (4-pack),2,2.99,07/25/19 07:48,"638 Lakeview St, Dallas, TX 75001" +222681,Apple Airpods Headphones,1,150,07/20/19 13:21,"876 Forest St, Atlanta, GA 30301" +222682,AA Batteries (4-pack),1,3.84,07/03/19 22:15,"102 Willow St, Los Angeles, CA 90001" +222683,USB-C Charging Cable,1,11.95,07/09/19 21:57,"353 Church St, Boston, MA 02215" +222684,USB-C Charging Cable,1,11.95,07/29/19 19:40,"89 Spruce St, Dallas, TX 75001" +222685,ThinkPad Laptop,1,999.99,07/11/19 14:06,"379 7th St, Atlanta, GA 30301" +222686,Bose SoundSport Headphones,1,99.99,07/12/19 23:39,"580 2nd St, Atlanta, GA 30301" +222687,USB-C Charging Cable,1,11.95,07/06/19 16:34,"478 Cedar St, Los Angeles, CA 90001" +222688,iPhone,1,700,07/25/19 10:19,"165 West St, Austin, TX 73301" +222689,AA Batteries (4-pack),2,3.84,07/30/19 15:03,"587 Dogwood St, Los Angeles, CA 90001" +222690,27in FHD Monitor,1,149.99,07/30/19 11:19,"493 Forest St, Boston, MA 02215" +222691,Macbook Pro Laptop,1,1700,07/12/19 15:56,"438 5th St, New York City, NY 10001" +222692,AAA Batteries (4-pack),7,2.99,07/28/19 13:45,"53 10th St, Atlanta, GA 30301" +222693,Google Phone,1,600,07/22/19 09:03,"491 Main St, Boston, MA 02215" +222694,34in Ultrawide Monitor,1,379.99,07/10/19 04:53,"140 Lake St, Seattle, WA 98101" +222695,AAA Batteries (4-pack),2,2.99,07/25/19 20:28,"646 Wilson St, Los Angeles, CA 90001" +222696,Bose SoundSport Headphones,1,99.99,07/02/19 09:43,"783 Main St, Portland, OR 97035" +222697,iPhone,1,700,07/27/19 07:52,"850 River St, Los Angeles, CA 90001" +222697,Lightning Charging Cable,1,14.95,07/27/19 07:52,"850 River St, Los Angeles, CA 90001" +222698,Lightning Charging Cable,1,14.95,07/18/19 21:08,"931 12th St, Austin, TX 73301" +222699,USB-C Charging Cable,1,11.95,07/13/19 12:08,"520 Church St, Los Angeles, CA 90001" +222700,Bose SoundSport Headphones,1,99.99,07/19/19 17:32,"584 12th St, San Francisco, CA 94016" +222701,27in FHD Monitor,1,149.99,07/28/19 10:38,"978 9th St, San Francisco, CA 94016" +222702,Lightning Charging Cable,1,14.95,07/04/19 20:36,"330 Main St, Atlanta, GA 30301" +222703,AAA Batteries (4-pack),1,2.99,07/12/19 02:10,"237 Pine St, Los Angeles, CA 90001" +222704,AA Batteries (4-pack),1,3.84,07/02/19 08:51,"400 Dogwood St, San Francisco, CA 94016" +222705,27in 4K Gaming Monitor,1,389.99,07/08/19 06:19,"766 River St, Boston, MA 02215" +222706,Wired Headphones,1,11.99,07/20/19 22:42,"731 Park St, San Francisco, CA 94016" +222707,Wired Headphones,1,11.99,07/06/19 08:57,"368 6th St, Austin, TX 73301" +222708,Google Phone,1,600,07/11/19 19:17,"300 Madison St, Dallas, TX 75001" +222708,USB-C Charging Cable,1,11.95,07/11/19 19:17,"300 Madison St, Dallas, TX 75001" +222709,Flatscreen TV,1,300,07/06/19 12:00,"321 Church St, San Francisco, CA 94016" +222710,Lightning Charging Cable,1,14.95,07/17/19 22:43,"218 6th St, San Francisco, CA 94016" +222711,USB-C Charging Cable,1,11.95,07/28/19 18:10,"526 Hill St, San Francisco, CA 94016" +222712,AAA Batteries (4-pack),2,2.99,07/31/19 17:54,"717 Chestnut St, San Francisco, CA 94016" +222713,34in Ultrawide Monitor,1,379.99,07/31/19 11:28,"642 1st St, Atlanta, GA 30301" +222714,USB-C Charging Cable,1,11.95,07/06/19 20:45,"533 Main St, Atlanta, GA 30301" +222715,Vareebadd Phone,1,400,07/28/19 11:15,"838 4th St, Dallas, TX 75001" +222716,Lightning Charging Cable,1,14.95,07/21/19 14:56,"388 Hickory St, Los Angeles, CA 90001" +222717,Lightning Charging Cable,1,14.95,07/31/19 12:34,"434 Wilson St, Los Angeles, CA 90001" +222717,27in FHD Monitor,1,149.99,07/31/19 12:34,"434 Wilson St, Los Angeles, CA 90001" +222718,AA Batteries (4-pack),1,3.84,07/10/19 19:52,"178 12th St, Austin, TX 73301" +222719,AAA Batteries (4-pack),2,2.99,07/21/19 17:59,"664 Maple St, San Francisco, CA 94016" +222720,34in Ultrawide Monitor,1,379.99,07/08/19 17:22,"329 1st St, Boston, MA 02215" +222721,USB-C Charging Cable,1,11.95,07/20/19 12:09,"295 13th St, San Francisco, CA 94016" +222722,USB-C Charging Cable,1,11.95,07/10/19 22:01,"371 9th St, Dallas, TX 75001" +222723,iPhone,1,700,07/31/19 11:27,"739 Dogwood St, Los Angeles, CA 90001" +222723,Wired Headphones,1,11.99,07/31/19 11:27,"739 Dogwood St, Los Angeles, CA 90001" +222724,iPhone,1,700,07/27/19 16:00,"141 2nd St, Boston, MA 02215" +222725,20in Monitor,1,109.99,07/31/19 19:09,"525 Sunset St, San Francisco, CA 94016" +222726,AA Batteries (4-pack),1,3.84,07/06/19 00:22,"620 Adams St, New York City, NY 10001" +222727,Apple Airpods Headphones,1,150,07/02/19 13:06,"133 Willow St, Austin, TX 73301" +222728,Google Phone,1,600,07/21/19 12:37,"909 2nd St, San Francisco, CA 94016" +222729,USB-C Charging Cable,1,11.95,07/19/19 18:50,"981 Elm St, Portland, OR 97035" +222730,27in FHD Monitor,1,149.99,07/14/19 19:03,"314 Main St, Seattle, WA 98101" +222731,Apple Airpods Headphones,1,150,07/26/19 19:06,"15 River St, Dallas, TX 75001" +222732,AAA Batteries (4-pack),3,2.99,07/06/19 18:28,"813 West St, Los Angeles, CA 90001" +222733,Wired Headphones,2,11.99,07/01/19 14:24,"504 Chestnut St, Austin, TX 73301" +222734,Wired Headphones,1,11.99,07/27/19 21:08,"7 West St, Boston, MA 02215" +222735,USB-C Charging Cable,1,11.95,07/27/19 20:52,"606 14th St, Atlanta, GA 30301" +222736,Wired Headphones,1,11.99,07/26/19 23:17,"100 Jackson St, San Francisco, CA 94016" +222737,ThinkPad Laptop,1,999.99,07/24/19 23:12,"143 Hickory St, New York City, NY 10001" +222738,AA Batteries (4-pack),3,3.84,07/10/19 20:54,"942 Center St, Los Angeles, CA 90001" +222739,AAA Batteries (4-pack),1,2.99,07/30/19 12:03,"238 Chestnut St, Los Angeles, CA 90001" +222739,AA Batteries (4-pack),1,3.84,07/30/19 12:03,"238 Chestnut St, Los Angeles, CA 90001" +222740,Apple Airpods Headphones,1,150,07/17/19 08:23,"795 Chestnut St, Atlanta, GA 30301" +222741,34in Ultrawide Monitor,1,379.99,07/23/19 20:28,"956 Meadow St, San Francisco, CA 94016" +222742,Lightning Charging Cable,1,14.95,07/16/19 23:19,"930 9th St, Atlanta, GA 30301" +222743,Wired Headphones,1,11.99,07/21/19 20:00,"711 Center St, New York City, NY 10001" +222744,27in FHD Monitor,1,149.99,07/11/19 19:00,"537 Lake St, Boston, MA 02215" +222745,USB-C Charging Cable,1,11.95,07/11/19 14:46,"181 Elm St, Boston, MA 02215" +222746,USB-C Charging Cable,1,11.95,07/20/19 22:48,"429 Willow St, Austin, TX 73301" +222747,iPhone,1,700,07/08/19 11:47,"942 Walnut St, Portland, OR 97035" +222748,USB-C Charging Cable,2,11.95,07/05/19 10:54,"43 10th St, New York City, NY 10001" +222749,USB-C Charging Cable,1,11.95,07/19/19 09:53,"413 Pine St, San Francisco, CA 94016" +222750,USB-C Charging Cable,1,11.95,07/22/19 21:29,"75 13th St, San Francisco, CA 94016" +222751,Wired Headphones,1,11.99,07/25/19 10:16,"631 9th St, Atlanta, GA 30301" +222752,USB-C Charging Cable,1,11.95,07/11/19 09:10,"54 Forest St, Seattle, WA 98101" +222753,Wired Headphones,1,11.99,07/06/19 21:19,"62 1st St, Dallas, TX 75001" +222754,ThinkPad Laptop,1,999.99,07/22/19 13:22,"996 Park St, Atlanta, GA 30301" +222755,AAA Batteries (4-pack),2,2.99,07/09/19 13:09,"529 Cherry St, Boston, MA 02215" +222756,ThinkPad Laptop,1,999.99,07/03/19 21:09,"998 Wilson St, Los Angeles, CA 90001" +222757,Bose SoundSport Headphones,1,99.99,07/23/19 15:06,"445 Washington St, New York City, NY 10001" +222758,AA Batteries (4-pack),1,3.84,07/06/19 06:33,"624 Church St, New York City, NY 10001" +222759,AA Batteries (4-pack),1,3.84,07/16/19 22:17,"629 Main St, Portland, OR 97035" +222760,Apple Airpods Headphones,1,150,07/12/19 07:39,"976 13th St, Boston, MA 02215" +222761,AAA Batteries (4-pack),1,2.99,07/20/19 19:16,"44 Washington St, New York City, NY 10001" +222762,AA Batteries (4-pack),1,3.84,07/04/19 22:22,"378 Ridge St, Atlanta, GA 30301" +222763,USB-C Charging Cable,1,11.95,07/25/19 07:32,"602 Hill St, New York City, NY 10001" +222764,AA Batteries (4-pack),1,3.84,07/10/19 12:56,"322 Meadow St, San Francisco, CA 94016" +222765,Apple Airpods Headphones,1,150,07/10/19 20:41,"916 Lakeview St, Boston, MA 02215" +222766,Wired Headphones,1,11.99,07/03/19 15:07,"424 Spruce St, San Francisco, CA 94016" +222767,27in FHD Monitor,1,149.99,07/31/19 14:19,"371 6th St, New York City, NY 10001" +222767,Google Phone,1,600,07/31/19 14:19,"371 6th St, New York City, NY 10001" +222768,Macbook Pro Laptop,1,1700,07/02/19 18:53,"495 Park St, Atlanta, GA 30301" +222769,27in FHD Monitor,2,149.99,07/13/19 18:39,"52 Pine St, Seattle, WA 98101" +222770,Flatscreen TV,1,300,07/20/19 11:30,"617 11th St, San Francisco, CA 94016" +222771,Apple Airpods Headphones,1,150,07/25/19 13:32,"258 Elm St, San Francisco, CA 94016" +222772,Wired Headphones,1,11.99,07/04/19 19:25,"906 West St, New York City, NY 10001" +222773,AA Batteries (4-pack),1,3.84,07/09/19 13:20,"681 Willow St, San Francisco, CA 94016" +222774,Macbook Pro Laptop,1,1700,07/19/19 11:33,"996 Highland St, Seattle, WA 98101" +222775,AA Batteries (4-pack),1,3.84,07/09/19 15:21,"595 Hill St, New York City, NY 10001" +222776,Lightning Charging Cable,1,14.95,07/13/19 14:22,"472 Lake St, Los Angeles, CA 90001" +222777,Wired Headphones,1,11.99,07/25/19 23:59,"499 Walnut St, San Francisco, CA 94016" +222778,20in Monitor,1,109.99,07/31/19 11:30,"95 Wilson St, Portland, OR 97035" +222779,USB-C Charging Cable,1,11.95,07/30/19 18:39,"864 River St, Seattle, WA 98101" +222780,Google Phone,1,600,07/10/19 17:26,"685 South St, Dallas, TX 75001" +222781,34in Ultrawide Monitor,1,379.99,07/26/19 19:19,"917 Maple St, Atlanta, GA 30301" +222781,Google Phone,1,600,07/26/19 19:19,"917 Maple St, Atlanta, GA 30301" +222782,Lightning Charging Cable,1,14.95,07/20/19 11:45,"505 10th St, New York City, NY 10001" +222783,ThinkPad Laptop,1,999.99,07/12/19 22:24,"272 Willow St, San Francisco, CA 94016" +222784,Bose SoundSport Headphones,1,99.99,07/20/19 22:01,"595 Ridge St, Boston, MA 02215" +222785,AA Batteries (4-pack),7,3.84,07/19/19 12:59,"48 North St, Boston, MA 02215" +222786,Lightning Charging Cable,1,14.95,07/02/19 08:47,"256 Johnson St, Dallas, TX 75001" +222787,Wired Headphones,1,11.99,07/27/19 21:47,"730 South St, Boston, MA 02215" +222787,Flatscreen TV,1,300,07/27/19 21:47,"730 South St, Boston, MA 02215" +222788,Apple Airpods Headphones,1,150,07/07/19 18:26,"703 Lake St, Seattle, WA 98101" +222789,AA Batteries (4-pack),1,3.84,07/26/19 12:57,"927 11th St, Portland, OR 97035" +222790,Google Phone,1,600,07/29/19 20:02,"792 Lake St, Seattle, WA 98101" +222791,27in 4K Gaming Monitor,1,389.99,07/30/19 02:21,"184 Willow St, Boston, MA 02215" +222792,USB-C Charging Cable,1,11.95,07/09/19 10:21,"256 Cedar St, San Francisco, CA 94016" +222793,USB-C Charging Cable,1,11.95,07/05/19 10:52,"838 13th St, Los Angeles, CA 90001" +222794,Bose SoundSport Headphones,1,99.99,07/03/19 13:57,"910 Hill St, Boston, MA 02215" +222795,Lightning Charging Cable,2,14.95,07/22/19 15:49,"557 Meadow St, Portland, OR 97035" +222796,Bose SoundSport Headphones,1,99.99,07/20/19 09:56,"392 Cedar St, New York City, NY 10001" +222797,Macbook Pro Laptop,1,1700,07/15/19 15:03,"469 10th St, San Francisco, CA 94016" +222798,27in FHD Monitor,1,149.99,07/31/19 11:53,"10 Cedar St, San Francisco, CA 94016" +222799,34in Ultrawide Monitor,1,379.99,07/04/19 09:54,"909 9th St, Boston, MA 02215" +222800,Bose SoundSport Headphones,1,99.99,07/06/19 22:11,"958 5th St, Austin, TX 73301" +222801,Wired Headphones,2,11.99,07/16/19 16:01,"741 Forest St, Boston, MA 02215" +222802,Lightning Charging Cable,1,14.95,07/09/19 20:46,"94 Spruce St, San Francisco, CA 94016" +222803,Wired Headphones,2,11.99,07/14/19 23:56,"368 13th St, Los Angeles, CA 90001" +222804,Lightning Charging Cable,1,14.95,07/31/19 19:43,"399 Sunset St, Seattle, WA 98101" +222805,Macbook Pro Laptop,1,1700,07/13/19 10:38,"398 Johnson St, Los Angeles, CA 90001" +222806,iPhone,1,700,07/21/19 19:13,"891 8th St, Dallas, TX 75001" +222807,Bose SoundSport Headphones,1,99.99,07/11/19 11:41,"370 1st St, Atlanta, GA 30301" +222808,AA Batteries (4-pack),1,3.84,07/29/19 07:20,"730 10th St, Dallas, TX 75001" +222809,USB-C Charging Cable,1,11.95,07/02/19 11:01,"997 10th St, New York City, NY 10001" +222810,Lightning Charging Cable,1,14.95,07/14/19 21:57,"272 6th St, Boston, MA 02215" +222811,AA Batteries (4-pack),1,3.84,07/25/19 11:39,"658 4th St, Atlanta, GA 30301" +222812,34in Ultrawide Monitor,1,379.99,07/10/19 09:57,"477 West St, Dallas, TX 75001" +222813,Wired Headphones,1,11.99,07/06/19 22:09,"414 Jackson St, Portland, ME 04101" +222814,Apple Airpods Headphones,1,150,07/04/19 17:01,"30 7th St, San Francisco, CA 94016" +222815,USB-C Charging Cable,2,11.95,07/02/19 09:44,"91 Main St, Atlanta, GA 30301" +222816,iPhone,1,700,07/02/19 11:30,"369 4th St, Seattle, WA 98101" +222817,Macbook Pro Laptop,1,1700,07/31/19 21:46,"721 West St, Seattle, WA 98101" +222818,Apple Airpods Headphones,1,150,07/16/19 10:17,"476 Wilson St, Seattle, WA 98101" +222819,AA Batteries (4-pack),1,3.84,07/15/19 16:01,"707 7th St, Los Angeles, CA 90001" +222820,Flatscreen TV,1,300,07/14/19 08:01,"670 11th St, Los Angeles, CA 90001" +222821,Apple Airpods Headphones,1,150,07/18/19 22:08,"345 Madison St, San Francisco, CA 94016" +222822,Apple Airpods Headphones,1,150,07/26/19 18:58,"394 Washington St, Portland, OR 97035" +222823,Lightning Charging Cable,1,14.95,07/29/19 11:23,"517 1st St, Los Angeles, CA 90001" +222824,Wired Headphones,1,11.99,07/15/19 02:03,"491 Adams St, San Francisco, CA 94016" +222825,20in Monitor,1,109.99,07/02/19 17:54,"928 1st St, Seattle, WA 98101" +222825,Google Phone,1,600,07/02/19 17:54,"928 1st St, Seattle, WA 98101" +222826,LG Washing Machine,1,600.0,07/13/19 12:56,"799 Lincoln St, Seattle, WA 98101" +222827,Lightning Charging Cable,1,14.95,07/15/19 12:23,"445 Ridge St, New York City, NY 10001" +222828,Flatscreen TV,1,300,07/20/19 19:44,"555 Church St, Dallas, TX 75001" +222829,Apple Airpods Headphones,1,150,07/13/19 09:16,"340 Chestnut St, New York City, NY 10001" +222830,AA Batteries (4-pack),2,3.84,07/22/19 07:50,"127 Johnson St, San Francisco, CA 94016" +222831,Apple Airpods Headphones,1,150,07/28/19 12:39,"919 Church St, San Francisco, CA 94016" +222832,USB-C Charging Cable,1,11.95,07/10/19 16:48,"460 10th St, Seattle, WA 98101" +222833,AA Batteries (4-pack),2,3.84,07/21/19 01:19,"113 Lakeview St, Los Angeles, CA 90001" +222834,20in Monitor,2,109.99,07/21/19 13:53,"962 Chestnut St, Portland, ME 04101" +222835,Macbook Pro Laptop,1,1700,07/30/19 08:37,"220 Lake St, San Francisco, CA 94016" +222836,Lightning Charging Cable,1,14.95,07/19/19 13:07,"116 14th St, Los Angeles, CA 90001" +222837,27in FHD Monitor,1,149.99,07/05/19 07:42,"18 12th St, Los Angeles, CA 90001" +222838,AA Batteries (4-pack),2,3.84,07/20/19 22:53,"614 8th St, San Francisco, CA 94016" +222839,AAA Batteries (4-pack),1,2.99,07/17/19 10:07,"893 2nd St, Seattle, WA 98101" +222840,AAA Batteries (4-pack),2,2.99,07/02/19 17:38,"186 8th St, Los Angeles, CA 90001" +222841,AA Batteries (4-pack),1,3.84,07/23/19 17:35,"653 Cherry St, San Francisco, CA 94016" +222842,AA Batteries (4-pack),1,3.84,07/19/19 14:03,"735 Hickory St, San Francisco, CA 94016" +222843,Wired Headphones,1,11.99,07/09/19 16:42,"848 Cedar St, Los Angeles, CA 90001" +222844,Lightning Charging Cable,1,14.95,07/02/19 10:31,"19 Pine St, Boston, MA 02215" +222845,Wired Headphones,2,11.99,07/21/19 12:09,"823 Park St, Atlanta, GA 30301" +222846,Wired Headphones,1,11.99,07/29/19 09:23,"96 Johnson St, New York City, NY 10001" +222847,Lightning Charging Cable,1,14.95,07/17/19 11:40,"445 Cedar St, Atlanta, GA 30301" +222848,Lightning Charging Cable,1,14.95,07/08/19 22:28,"567 2nd St, Atlanta, GA 30301" +222849,USB-C Charging Cable,1,11.95,07/16/19 14:11,"460 West St, Boston, MA 02215" +222850,Bose SoundSport Headphones,1,99.99,07/15/19 04:18,"346 Johnson St, San Francisco, CA 94016" +222851,USB-C Charging Cable,2,11.95,07/06/19 20:58,"79 Jackson St, New York City, NY 10001" +222852,iPhone,1,700,07/14/19 19:22,"974 6th St, Austin, TX 73301" +222853,AA Batteries (4-pack),1,3.84,07/20/19 17:53,"498 Cedar St, Dallas, TX 75001" +222854,USB-C Charging Cable,1,11.95,07/16/19 16:26,"882 Dogwood St, Los Angeles, CA 90001" +222855,AA Batteries (4-pack),1,3.84,07/25/19 21:52,"640 Dogwood St, Boston, MA 02215" +222856,Macbook Pro Laptop,1,1700,07/07/19 10:12,"695 6th St, Seattle, WA 98101" +222857,USB-C Charging Cable,1,11.95,07/23/19 10:59,"872 1st St, Portland, OR 97035" +222858,Bose SoundSport Headphones,1,99.99,07/29/19 11:03,"512 South St, Dallas, TX 75001" +222859,Flatscreen TV,1,300,07/09/19 20:44,"731 Pine St, San Francisco, CA 94016" +222860,USB-C Charging Cable,1,11.95,07/07/19 23:50,"186 11th St, Los Angeles, CA 90001" +222861,34in Ultrawide Monitor,1,379.99,07/24/19 08:59,"623 Hill St, New York City, NY 10001" +222862,USB-C Charging Cable,2,11.95,07/19/19 16:55,"363 2nd St, Austin, TX 73301" +222863,Wired Headphones,1,11.99,07/03/19 13:09,"769 10th St, Atlanta, GA 30301" +222864,Lightning Charging Cable,1,14.95,07/08/19 12:43,"597 Center St, San Francisco, CA 94016" +222865,Google Phone,1,600,07/30/19 08:18,"424 Dogwood St, Boston, MA 02215" +222865,USB-C Charging Cable,1,11.95,07/30/19 08:18,"424 Dogwood St, Boston, MA 02215" +222866,AAA Batteries (4-pack),2,2.99,07/15/19 20:59,"441 Elm St, Austin, TX 73301" +222867,Apple Airpods Headphones,1,150,07/24/19 09:55,"756 Chestnut St, Los Angeles, CA 90001" +222868,AA Batteries (4-pack),1,3.84,07/26/19 09:12,"964 Lakeview St, Los Angeles, CA 90001" +222869,iPhone,1,700,07/04/19 18:19,"1 Pine St, San Francisco, CA 94016" +222869,Lightning Charging Cable,1,14.95,07/04/19 18:19,"1 Pine St, San Francisco, CA 94016" +222870,Apple Airpods Headphones,1,150,07/29/19 09:44,"787 5th St, Los Angeles, CA 90001" +222871,Lightning Charging Cable,1,14.95,07/15/19 17:14,"323 Adams St, San Francisco, CA 94016" +222871,AA Batteries (4-pack),1,3.84,07/15/19 17:14,"323 Adams St, San Francisco, CA 94016" +222872,Wired Headphones,1,11.99,07/09/19 12:37,"305 South St, Austin, TX 73301" +,,,,, +222873,Bose SoundSport Headphones,1,99.99,07/15/19 19:56,"16 1st St, Seattle, WA 98101" +222874,Google Phone,1,600,07/01/19 16:47,"964 14th St, Dallas, TX 75001" +222875,AA Batteries (4-pack),2,3.84,07/16/19 20:04,"723 Lakeview St, Los Angeles, CA 90001" +222876,USB-C Charging Cable,1,11.95,07/23/19 15:33,"644 Sunset St, Los Angeles, CA 90001" +222877,Macbook Pro Laptop,1,1700,07/04/19 07:44,"390 Madison St, Seattle, WA 98101" +222878,AA Batteries (4-pack),1,3.84,07/26/19 12:33,"819 Forest St, Dallas, TX 75001" +222879,20in Monitor,1,109.99,07/17/19 22:17,"168 4th St, Atlanta, GA 30301" +222880,Flatscreen TV,1,300,07/18/19 11:37,"133 6th St, Boston, MA 02215" +222880,Bose SoundSport Headphones,1,99.99,07/18/19 11:37,"133 6th St, Boston, MA 02215" +222881,20in Monitor,1,109.99,07/17/19 14:05,"670 Hill St, Atlanta, GA 30301" +222882,AAA Batteries (4-pack),1,2.99,07/05/19 08:36,"165 Hill St, Seattle, WA 98101" +222883,USB-C Charging Cable,1,11.95,07/18/19 02:25,"79 Lake St, San Francisco, CA 94016" +222884,20in Monitor,1,109.99,07/30/19 19:42,"548 Chestnut St, San Francisco, CA 94016" +222885,Macbook Pro Laptop,1,1700,07/16/19 11:57,"378 7th St, Atlanta, GA 30301" +222886,AAA Batteries (4-pack),1,2.99,07/19/19 12:23,"311 Park St, New York City, NY 10001" +222887,27in FHD Monitor,1,149.99,07/02/19 09:32,"430 Adams St, Dallas, TX 75001" +222888,Lightning Charging Cable,1,14.95,07/23/19 20:05,"801 Sunset St, New York City, NY 10001" +222889,Apple Airpods Headphones,1,150,07/27/19 21:08,"752 Willow St, San Francisco, CA 94016" +222890,iPhone,1,700,07/13/19 19:04,"671 13th St, New York City, NY 10001" +222891,Flatscreen TV,1,300,07/29/19 01:34,"93 12th St, New York City, NY 10001" +222892,Wired Headphones,1,11.99,07/21/19 11:47,"737 13th St, Austin, TX 73301" +222893,Apple Airpods Headphones,1,150,07/26/19 08:45,"472 West St, Los Angeles, CA 90001" +222894,USB-C Charging Cable,1,11.95,07/24/19 18:44,"847 Elm St, Portland, ME 04101" +222895,Macbook Pro Laptop,1,1700,07/14/19 19:25,"23 West St, Seattle, WA 98101" +222896,Google Phone,1,600,07/03/19 15:31,"431 8th St, New York City, NY 10001" +222897,Macbook Pro Laptop,1,1700,07/06/19 11:37,"802 Wilson St, San Francisco, CA 94016" +222898,Macbook Pro Laptop,1,1700,07/14/19 21:00,"312 Highland St, Austin, TX 73301" +222899,20in Monitor,1,109.99,07/30/19 07:06,"9 Sunset St, San Francisco, CA 94016" +222899,Flatscreen TV,1,300,07/30/19 07:06,"9 Sunset St, San Francisco, CA 94016" +222900,Lightning Charging Cable,1,14.95,07/23/19 21:39,"575 Jefferson St, Portland, ME 04101" +222901,Apple Airpods Headphones,1,150,07/02/19 17:20,"974 Jackson St, Los Angeles, CA 90001" +222902,Google Phone,1,600,07/25/19 16:57,"590 Jackson St, San Francisco, CA 94016" +222903,Macbook Pro Laptop,1,1700,07/10/19 10:58,"595 Meadow St, Seattle, WA 98101" +222904,Lightning Charging Cable,1,14.95,07/18/19 17:50,"948 West St, Boston, MA 02215" +222905,27in 4K Gaming Monitor,1,389.99,07/12/19 10:00,"960 Lake St, Los Angeles, CA 90001" +222906,USB-C Charging Cable,1,11.95,07/11/19 09:05,"935 12th St, New York City, NY 10001" +222907,20in Monitor,1,109.99,07/19/19 13:39,"349 Ridge St, Dallas, TX 75001" +222908,AAA Batteries (4-pack),2,2.99,07/16/19 17:10,"612 Pine St, San Francisco, CA 94016" +222909,USB-C Charging Cable,1,11.95,07/13/19 17:19,"11 9th St, Seattle, WA 98101" +222910,34in Ultrawide Monitor,1,379.99,07/02/19 16:22,"663 11th St, Dallas, TX 75001" +222911,AA Batteries (4-pack),1,3.84,07/05/19 13:18,"469 11th St, Seattle, WA 98101" +222912,AAA Batteries (4-pack),3,2.99,07/22/19 14:27,"669 11th St, Atlanta, GA 30301" +222913,Flatscreen TV,1,300,07/11/19 17:11,"995 Main St, San Francisco, CA 94016" +222914,Wired Headphones,1,11.99,07/11/19 13:27,"289 River St, San Francisco, CA 94016" +222915,AA Batteries (4-pack),3,3.84,07/02/19 00:54,"210 Maple St, New York City, NY 10001" +222916,AAA Batteries (4-pack),1,2.99,07/11/19 13:44,"958 8th St, Los Angeles, CA 90001" +222917,AAA Batteries (4-pack),1,2.99,07/28/19 17:12,"499 Center St, Los Angeles, CA 90001" +222918,Vareebadd Phone,1,400,07/13/19 11:52,"624 South St, Los Angeles, CA 90001" +222919,27in FHD Monitor,1,149.99,07/13/19 11:24,"781 Jefferson St, New York City, NY 10001" +222920,USB-C Charging Cable,1,11.95,07/12/19 20:30,"238 Main St, Seattle, WA 98101" +222921,AA Batteries (4-pack),1,3.84,07/03/19 04:18,"317 7th St, New York City, NY 10001" +222922,27in FHD Monitor,1,149.99,07/27/19 09:34,"707 Church St, Atlanta, GA 30301" +222923,AAA Batteries (4-pack),1,2.99,07/10/19 08:51,"194 Lake St, Los Angeles, CA 90001" +222924,USB-C Charging Cable,1,11.95,07/15/19 22:30,"651 12th St, Portland, OR 97035" +222925,Bose SoundSport Headphones,1,99.99,07/13/19 12:26,"794 7th St, Austin, TX 73301" +222926,Flatscreen TV,1,300,07/21/19 11:06,"974 Lake St, San Francisco, CA 94016" +222927,AAA Batteries (4-pack),1,2.99,07/17/19 16:52,"528 Lakeview St, Boston, MA 02215" +222928,27in FHD Monitor,1,149.99,07/05/19 18:22,"691 Adams St, Los Angeles, CA 90001" +222929,AAA Batteries (4-pack),2,2.99,07/29/19 13:14,"956 6th St, Boston, MA 02215" +222930,Bose SoundSport Headphones,1,99.99,07/11/19 22:55,"406 Hill St, Los Angeles, CA 90001" +222931,20in Monitor,1,109.99,07/08/19 22:25,"446 Center St, Atlanta, GA 30301" +222932,Vareebadd Phone,1,400,07/03/19 20:33,"674 Pine St, Atlanta, GA 30301" +222932,Wired Headphones,1,11.99,07/03/19 20:33,"674 Pine St, Atlanta, GA 30301" +222933,27in FHD Monitor,1,149.99,07/29/19 10:20,"44 1st St, Seattle, WA 98101" +222934,AAA Batteries (4-pack),1,2.99,07/31/19 17:18,"979 South St, San Francisco, CA 94016" +222935,Wired Headphones,1,11.99,07/13/19 22:09,"369 Dogwood St, Atlanta, GA 30301" +222936,Bose SoundSport Headphones,1,99.99,07/08/19 19:12,"43 Park St, Seattle, WA 98101" +222937,Bose SoundSport Headphones,1,99.99,07/29/19 17:13,"153 Elm St, Los Angeles, CA 90001" +222938,AAA Batteries (4-pack),1,2.99,07/01/19 10:22,"221 7th St, Atlanta, GA 30301" +222939,Wired Headphones,1,11.99,07/10/19 15:16,"409 Adams St, San Francisco, CA 94016" +222940,Lightning Charging Cable,1,14.95,07/31/19 15:16,"365 Walnut St, San Francisco, CA 94016" +222941,Google Phone,1,600,07/24/19 13:09,"171 South St, Seattle, WA 98101" +222942,Google Phone,1,600,07/08/19 11:50,"940 Meadow St, New York City, NY 10001" +222943,LG Dryer,1,600.0,07/04/19 14:39,"140 Spruce St, New York City, NY 10001" +222944,iPhone,1,700,07/31/19 06:14,"661 11th St, Los Angeles, CA 90001" +222944,Lightning Charging Cable,1,14.95,07/31/19 06:14,"661 11th St, Los Angeles, CA 90001" +222945,Apple Airpods Headphones,1,150,07/22/19 10:33,"889 Cherry St, Seattle, WA 98101" +222946,Lightning Charging Cable,1,14.95,07/20/19 14:20,"872 13th St, New York City, NY 10001" +222947,AAA Batteries (4-pack),1,2.99,07/24/19 10:38,"958 Center St, Seattle, WA 98101" +222948,AAA Batteries (4-pack),2,2.99,07/06/19 08:36,"691 14th St, San Francisco, CA 94016" +222949,Bose SoundSport Headphones,1,99.99,07/12/19 20:46,"688 Park St, New York City, NY 10001" +222950,27in FHD Monitor,1,149.99,07/31/19 18:58,"536 Lincoln St, Boston, MA 02215" +222951,Wired Headphones,2,11.99,07/08/19 20:35,"694 South St, Portland, OR 97035" +222952,Wired Headphones,1,11.99,07/23/19 23:00,"852 Cedar St, Dallas, TX 75001" +222953,AA Batteries (4-pack),1,3.84,07/12/19 09:13,"916 Sunset St, New York City, NY 10001" +222954,AA Batteries (4-pack),4,3.84,07/14/19 14:22,"781 Lincoln St, New York City, NY 10001" +222954,Apple Airpods Headphones,1,150,07/14/19 14:22,"781 Lincoln St, New York City, NY 10001" +222955,Wired Headphones,1,11.99,07/05/19 19:38,"23 Hickory St, San Francisco, CA 94016" +222956,Lightning Charging Cable,1,14.95,07/28/19 17:05,"898 Pine St, Los Angeles, CA 90001" +222957,34in Ultrawide Monitor,1,379.99,07/30/19 12:02,"564 Meadow St, Portland, OR 97035" +222958,20in Monitor,1,109.99,07/07/19 07:23,"68 Forest St, Atlanta, GA 30301" +222959,Lightning Charging Cable,1,14.95,07/08/19 13:54,"28 Dogwood St, Boston, MA 02215" +222960,AAA Batteries (4-pack),1,2.99,07/11/19 10:31,"278 Cedar St, Portland, ME 04101" +222961,ThinkPad Laptop,1,999.99,07/29/19 18:19,"522 Walnut St, Dallas, TX 75001" +222962,34in Ultrawide Monitor,1,379.99,07/03/19 09:16,"5 Lincoln St, Dallas, TX 75001" +222963,ThinkPad Laptop,1,999.99,07/16/19 14:00,"616 Hill St, San Francisco, CA 94016" +222964,AAA Batteries (4-pack),1,2.99,07/12/19 19:22,"242 7th St, Boston, MA 02215" +222965,AA Batteries (4-pack),1,3.84,07/02/19 21:24,"887 2nd St, New York City, NY 10001" +222966,Vareebadd Phone,1,400,07/04/19 09:19,"165 Cherry St, Boston, MA 02215" +222967,AAA Batteries (4-pack),2,2.99,07/20/19 06:44,"987 1st St, Los Angeles, CA 90001" +222968,Wired Headphones,1,11.99,07/24/19 13:28,"744 Jackson St, Los Angeles, CA 90001" +222969,AA Batteries (4-pack),3,3.84,07/29/19 08:06,"140 Main St, San Francisco, CA 94016" +222970,Wired Headphones,1,11.99,07/07/19 10:58,"84 Wilson St, Boston, MA 02215" +222971,20in Monitor,1,109.99,07/17/19 13:40,"650 Highland St, Boston, MA 02215" +222972,Apple Airpods Headphones,1,150,07/14/19 06:04,"843 8th St, Boston, MA 02215" +222973,AAA Batteries (4-pack),1,2.99,07/26/19 13:02,"700 10th St, New York City, NY 10001" +222974,Bose SoundSport Headphones,1,99.99,07/29/19 15:43,"693 Chestnut St, San Francisco, CA 94016" +222974,Lightning Charging Cable,1,14.95,07/29/19 15:43,"693 Chestnut St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +222975,USB-C Charging Cable,1,11.95,07/08/19 13:25,"172 Washington St, San Francisco, CA 94016" +222976,20in Monitor,1,109.99,07/23/19 17:35,"837 North St, Dallas, TX 75001" +222977,AA Batteries (4-pack),1,3.84,07/23/19 12:30,"282 8th St, New York City, NY 10001" +222978,AA Batteries (4-pack),1,3.84,07/16/19 13:22,"734 13th St, San Francisco, CA 94016" +222979,34in Ultrawide Monitor,1,379.99,07/07/19 11:41,"701 Willow St, Portland, ME 04101" +222980,Google Phone,1,600,07/12/19 23:22,"560 North St, Seattle, WA 98101" +222981,AA Batteries (4-pack),1,3.84,07/04/19 15:09,"380 11th St, Austin, TX 73301" +222982,Macbook Pro Laptop,1,1700,07/27/19 19:42,"791 8th St, Portland, OR 97035" +222983,Google Phone,1,600,07/25/19 20:07,"792 8th St, Los Angeles, CA 90001" +222983,USB-C Charging Cable,1,11.95,07/25/19 20:07,"792 8th St, Los Angeles, CA 90001" +222984,Flatscreen TV,1,300,07/17/19 16:29,"898 Johnson St, Seattle, WA 98101" +222985,Wired Headphones,2,11.99,07/01/19 11:02,"627 Walnut St, Atlanta, GA 30301" +222986,AAA Batteries (4-pack),1,2.99,07/19/19 01:16,"291 North St, Atlanta, GA 30301" +222987,Wired Headphones,1,11.99,07/07/19 14:43,"426 Chestnut St, Seattle, WA 98101" +222988,Lightning Charging Cable,1,14.95,07/17/19 23:44,"849 Lakeview St, Boston, MA 02215" +222989,iPhone,1,700,07/06/19 22:48,"795 6th St, New York City, NY 10001" +222990,AAA Batteries (4-pack),1,2.99,07/14/19 22:55,"677 2nd St, Seattle, WA 98101" +222991,Bose SoundSport Headphones,1,99.99,07/11/19 19:42,"216 Chestnut St, Portland, ME 04101" +222992,AA Batteries (4-pack),1,3.84,07/21/19 13:22,"3 6th St, Austin, TX 73301" +222993,Lightning Charging Cable,1,14.95,07/09/19 18:56,"616 North St, Los Angeles, CA 90001" +222994,Bose SoundSport Headphones,1,99.99,07/06/19 11:24,"585 Center St, New York City, NY 10001" +222995,Lightning Charging Cable,1,14.95,07/02/19 18:44,"521 Washington St, San Francisco, CA 94016" +222996,ThinkPad Laptop,1,999.99,07/13/19 16:08,"326 4th St, San Francisco, CA 94016" +222997,Apple Airpods Headphones,1,150,07/15/19 15:18,"246 South St, Portland, OR 97035" +222998,Bose SoundSport Headphones,1,99.99,07/28/19 22:11,"48 13th St, Boston, MA 02215" +222999,Wired Headphones,1,11.99,07/03/19 16:40,"82 River St, New York City, NY 10001" +223000,Wired Headphones,1,11.99,07/16/19 16:55,"651 Walnut St, San Francisco, CA 94016" +223001,Wired Headphones,1,11.99,07/02/19 16:24,"368 Chestnut St, Atlanta, GA 30301" +223002,Lightning Charging Cable,1,14.95,07/17/19 12:20,"235 5th St, Portland, OR 97035" +223003,Google Phone,1,600,07/02/19 20:38,"46 Forest St, Seattle, WA 98101" +223004,Google Phone,1,600,07/30/19 09:37,"440 Hickory St, Atlanta, GA 30301" +223005,USB-C Charging Cable,1,11.95,07/17/19 06:57,"237 West St, Atlanta, GA 30301" +223006,Google Phone,1,600,07/19/19 23:27,"236 Pine St, Atlanta, GA 30301" +223007,Lightning Charging Cable,1,14.95,07/06/19 14:56,"341 Johnson St, Los Angeles, CA 90001" +223008,USB-C Charging Cable,1,11.95,07/21/19 17:34,"593 Dogwood St, Dallas, TX 75001" +223009,27in 4K Gaming Monitor,1,389.99,07/21/19 08:03,"847 Jackson St, Boston, MA 02215" +223010,Lightning Charging Cable,1,14.95,07/10/19 02:36,"556 8th St, San Francisco, CA 94016" +223011,USB-C Charging Cable,2,11.95,07/15/19 21:41,"797 Johnson St, San Francisco, CA 94016" +223012,Lightning Charging Cable,1,14.95,07/18/19 15:14,"275 13th St, Boston, MA 02215" +223013,27in FHD Monitor,1,149.99,07/08/19 18:24,"512 Lakeview St, Atlanta, GA 30301" +223014,Bose SoundSport Headphones,1,99.99,07/30/19 08:34,"351 9th St, Seattle, WA 98101" +223015,Lightning Charging Cable,1,14.95,07/06/19 00:25,"421 Main St, New York City, NY 10001" +223016,Lightning Charging Cable,2,14.95,08/01/19 00:27,"500 Adams St, Los Angeles, CA 90001" +223017,Lightning Charging Cable,1,14.95,07/22/19 20:52,"401 1st St, Seattle, WA 98101" +223018,USB-C Charging Cable,1,11.95,07/07/19 10:05,"519 11th St, Atlanta, GA 30301" +223019,Wired Headphones,1,11.99,07/29/19 10:04,"717 6th St, Portland, ME 04101" +223020,Wired Headphones,1,11.99,07/05/19 12:12,"102 Pine St, Boston, MA 02215" +223021,Wired Headphones,1,11.99,07/03/19 12:40,"82 12th St, Seattle, WA 98101" +223022,Macbook Pro Laptop,1,1700,07/15/19 14:15,"709 South St, Seattle, WA 98101" +223023,Bose SoundSport Headphones,1,99.99,07/08/19 15:30,"150 Main St, San Francisco, CA 94016" +223024,AA Batteries (4-pack),1,3.84,07/09/19 20:56,"534 River St, Los Angeles, CA 90001" +223025,Lightning Charging Cable,1,14.95,07/29/19 20:00,"96 Ridge St, San Francisco, CA 94016" +223026,AA Batteries (4-pack),1,3.84,07/14/19 18:27,"345 12th St, Portland, OR 97035" +223027,27in FHD Monitor,1,149.99,07/29/19 03:54,"616 North St, Austin, TX 73301" +223028,20in Monitor,1,109.99,07/14/19 21:57,"713 West St, Atlanta, GA 30301" +223029,AAA Batteries (4-pack),1,2.99,07/30/19 20:13,"440 14th St, Dallas, TX 75001" +223030,34in Ultrawide Monitor,1,379.99,07/18/19 17:14,"954 4th St, Boston, MA 02215" +223031,AAA Batteries (4-pack),1,2.99,07/17/19 17:54,"96 Adams St, San Francisco, CA 94016" +223032,iPhone,1,700,07/22/19 00:35,"7 10th St, Los Angeles, CA 90001" +223033,USB-C Charging Cable,2,11.95,07/29/19 13:29,"974 Johnson St, New York City, NY 10001" +223034,Lightning Charging Cable,1,14.95,07/04/19 21:01,"940 Jackson St, New York City, NY 10001" +223035,Wired Headphones,1,11.99,07/24/19 22:04,"822 6th St, San Francisco, CA 94016" +223036,20in Monitor,1,109.99,07/06/19 11:15,"914 10th St, Los Angeles, CA 90001" +223037,Wired Headphones,1,11.99,07/03/19 15:02,"756 11th St, Austin, TX 73301" +223038,USB-C Charging Cable,1,11.95,07/30/19 17:41,"684 1st St, Dallas, TX 75001" +223039,27in 4K Gaming Monitor,1,389.99,07/04/19 13:44,"85 Sunset St, Seattle, WA 98101" +223040,Google Phone,1,600,07/14/19 21:06,"322 Spruce St, Atlanta, GA 30301" +223041,AAA Batteries (4-pack),2,2.99,07/06/19 18:27,"301 Willow St, Seattle, WA 98101" +223042,USB-C Charging Cable,1,11.95,07/23/19 22:55,"843 Ridge St, Seattle, WA 98101" +223043,AAA Batteries (4-pack),1,2.99,07/01/19 12:02,"42 Lakeview St, Los Angeles, CA 90001" +223044,34in Ultrawide Monitor,1,379.99,07/05/19 22:21,"848 Wilson St, San Francisco, CA 94016" +223045,27in 4K Gaming Monitor,1,389.99,07/26/19 14:29,"312 Johnson St, Boston, MA 02215" +223046,iPhone,1,700,07/12/19 13:14,"464 Hill St, Boston, MA 02215" +223046,Apple Airpods Headphones,1,150,07/12/19 13:14,"464 Hill St, Boston, MA 02215" +223047,Wired Headphones,1,11.99,07/04/19 13:54,"386 Lincoln St, San Francisco, CA 94016" +223048,Macbook Pro Laptop,1,1700,07/22/19 23:41,"12 12th St, Los Angeles, CA 90001" +223049,USB-C Charging Cable,1,11.95,07/18/19 07:53,"955 4th St, San Francisco, CA 94016" +223050,Wired Headphones,1,11.99,07/24/19 12:23,"375 South St, Los Angeles, CA 90001" +223051,27in 4K Gaming Monitor,1,389.99,07/05/19 22:25,"254 Walnut St, Seattle, WA 98101" +223052,Wired Headphones,1,11.99,07/11/19 20:59,"474 River St, New York City, NY 10001" +223053,Bose SoundSport Headphones,2,99.99,07/01/19 13:15,"975 Highland St, Portland, OR 97035" +223054,AA Batteries (4-pack),2,3.84,07/23/19 14:24,"640 Wilson St, Los Angeles, CA 90001" +223055,27in FHD Monitor,1,149.99,07/08/19 14:08,"772 Hickory St, Atlanta, GA 30301" +223056,Wired Headphones,1,11.99,07/28/19 15:56,"873 Walnut St, Atlanta, GA 30301" +223057,AAA Batteries (4-pack),1,2.99,07/07/19 11:31,"339 10th St, New York City, NY 10001" +223058,Lightning Charging Cable,2,14.95,07/24/19 22:48,"893 Cedar St, Portland, OR 97035" +223059,Bose SoundSport Headphones,1,99.99,07/07/19 10:36,"814 South St, Seattle, WA 98101" +223060,Lightning Charging Cable,1,14.95,07/20/19 12:25,"383 5th St, Austin, TX 73301" +223061,34in Ultrawide Monitor,1,379.99,07/13/19 19:02,"741 9th St, Atlanta, GA 30301" +223062,AAA Batteries (4-pack),2,2.99,07/29/19 09:40,"461 Church St, New York City, NY 10001" +223063,USB-C Charging Cable,1,11.95,07/04/19 20:47,"422 North St, New York City, NY 10001" +223064,ThinkPad Laptop,1,999.99,07/20/19 13:49,"278 1st St, San Francisco, CA 94016" +223065,iPhone,1,700,07/02/19 20:03,"307 6th St, Austin, TX 73301" +223065,Apple Airpods Headphones,1,150,07/02/19 20:03,"307 6th St, Austin, TX 73301" +223066,20in Monitor,1,109.99,07/21/19 06:12,"233 Center St, Dallas, TX 75001" +223067,AA Batteries (4-pack),1,3.84,07/17/19 19:58,"162 South St, Atlanta, GA 30301" +223068,27in FHD Monitor,1,149.99,07/03/19 17:32,"741 Sunset St, Atlanta, GA 30301" +223069,Apple Airpods Headphones,1,150,07/26/19 09:01,"270 Cherry St, San Francisco, CA 94016" +223070,Wired Headphones,1,11.99,07/02/19 20:20,"170 Dogwood St, Seattle, WA 98101" +223071,Bose SoundSport Headphones,1,99.99,07/07/19 10:09,"979 Wilson St, San Francisco, CA 94016" +223072,AA Batteries (4-pack),1,3.84,07/19/19 14:51,"364 Park St, New York City, NY 10001" +223073,Apple Airpods Headphones,1,150,07/04/19 21:33,"399 4th St, Austin, TX 73301" +223074,USB-C Charging Cable,1,11.95,07/25/19 20:32,"587 Lake St, New York City, NY 10001" +223075,Lightning Charging Cable,1,14.95,07/08/19 18:38,"872 River St, Atlanta, GA 30301" +223076,USB-C Charging Cable,1,11.95,07/04/19 22:13,"262 South St, Boston, MA 02215" +223077,AA Batteries (4-pack),1,3.84,07/18/19 08:20,"656 Sunset St, Los Angeles, CA 90001" +223078,Flatscreen TV,1,300,07/26/19 00:04,"748 Walnut St, New York City, NY 10001" +223079,AA Batteries (4-pack),2,3.84,07/05/19 03:51,"356 Park St, Los Angeles, CA 90001" +223080,iPhone,1,700,07/18/19 17:27,"736 4th St, San Francisco, CA 94016" +223080,Lightning Charging Cable,1,14.95,07/18/19 17:27,"736 4th St, San Francisco, CA 94016" +223081,AAA Batteries (4-pack),2,2.99,07/28/19 15:11,"943 Jefferson St, Dallas, TX 75001" +223082,iPhone,1,700,07/07/19 10:04,"41 Willow St, Los Angeles, CA 90001" +223083,Google Phone,1,600,07/25/19 10:09,"517 Hill St, Portland, ME 04101" +223084,AAA Batteries (4-pack),2,2.99,07/16/19 16:49,"5 11th St, San Francisco, CA 94016" +223085,ThinkPad Laptop,1,999.99,07/31/19 09:04,"148 1st St, San Francisco, CA 94016" +223086,Wired Headphones,1,11.99,07/06/19 22:57,"759 Wilson St, San Francisco, CA 94016" +223087,USB-C Charging Cable,1,11.95,07/16/19 15:43,"452 Willow St, New York City, NY 10001" +223088,AAA Batteries (4-pack),1,2.99,07/12/19 19:48,"199 Hill St, Portland, ME 04101" +223089,Lightning Charging Cable,1,14.95,07/22/19 18:40,"553 North St, Dallas, TX 75001" +223090,Wired Headphones,1,11.99,07/22/19 05:10,"730 1st St, San Francisco, CA 94016" +223091,Apple Airpods Headphones,1,150,07/04/19 02:32,"601 West St, Dallas, TX 75001" +223092,27in 4K Gaming Monitor,1,389.99,07/09/19 12:54,"420 Lake St, Boston, MA 02215" +223093,Lightning Charging Cable,1,14.95,07/20/19 12:35,"410 Dogwood St, San Francisco, CA 94016" +223094,USB-C Charging Cable,1,11.95,07/20/19 18:05,"501 Jackson St, Portland, ME 04101" +223095,27in FHD Monitor,1,149.99,07/03/19 12:52,"104 Jackson St, New York City, NY 10001" +223096,USB-C Charging Cable,1,11.95,07/09/19 19:24,"904 Cherry St, Boston, MA 02215" +223096,34in Ultrawide Monitor,1,379.99,07/09/19 19:24,"904 Cherry St, Boston, MA 02215" +223097,20in Monitor,1,109.99,07/27/19 19:45,"196 1st St, Dallas, TX 75001" +223098,AAA Batteries (4-pack),1,2.99,07/07/19 18:43,"356 Willow St, Atlanta, GA 30301" +223099,Lightning Charging Cable,1,14.95,07/30/19 14:57,"676 Maple St, Seattle, WA 98101" +223100,20in Monitor,1,109.99,07/26/19 12:26,"647 South St, Los Angeles, CA 90001" +223101,USB-C Charging Cable,2,11.95,07/27/19 19:43,"229 Forest St, Atlanta, GA 30301" +223102,AAA Batteries (4-pack),1,2.99,07/02/19 10:14,"19 North St, San Francisco, CA 94016" +223103,Wired Headphones,1,11.99,07/20/19 20:31,"35 Sunset St, San Francisco, CA 94016" +223104,AA Batteries (4-pack),3,3.84,07/13/19 12:34,"729 Lincoln St, Portland, OR 97035" +223105,USB-C Charging Cable,1,11.95,07/20/19 00:11,"56 Willow St, Boston, MA 02215" +223106,AA Batteries (4-pack),2,3.84,07/04/19 16:46,"375 Lincoln St, San Francisco, CA 94016" +223106,34in Ultrawide Monitor,1,379.99,07/04/19 16:46,"375 Lincoln St, San Francisco, CA 94016" +223107,Flatscreen TV,1,300,07/30/19 12:32,"358 Adams St, San Francisco, CA 94016" +223108,AAA Batteries (4-pack),1,2.99,07/10/19 11:25,"46 9th St, Portland, OR 97035" +223109,27in 4K Gaming Monitor,1,389.99,07/22/19 21:33,"822 Church St, Austin, TX 73301" +223110,Wired Headphones,1,11.99,07/31/19 14:44,"772 Willow St, San Francisco, CA 94016" +223111,Wired Headphones,1,11.99,07/20/19 09:00,"378 Jefferson St, Los Angeles, CA 90001" +223112,Apple Airpods Headphones,1,150,07/21/19 13:47,"87 12th St, Atlanta, GA 30301" +223113,Wired Headphones,2,11.99,07/01/19 16:43,"206 Walnut St, Atlanta, GA 30301" +223114,Apple Airpods Headphones,1,150,07/07/19 11:27,"507 10th St, Boston, MA 02215" +223115,AA Batteries (4-pack),1,3.84,07/13/19 13:08,"453 Church St, Austin, TX 73301" +223116,AA Batteries (4-pack),2,3.84,07/16/19 13:56,"563 South St, Dallas, TX 75001" +223117,AA Batteries (4-pack),1,3.84,07/28/19 14:13,"410 North St, Atlanta, GA 30301" +223118,Wired Headphones,1,11.99,07/14/19 02:42,"203 Washington St, Boston, MA 02215" +223119,Bose SoundSport Headphones,1,99.99,07/29/19 20:02,"800 Jefferson St, Austin, TX 73301" +223120,AA Batteries (4-pack),1,3.84,07/03/19 12:06,"380 River St, Boston, MA 02215" +223121,Google Phone,1,600,07/06/19 14:24,"958 Cedar St, San Francisco, CA 94016" +223122,Wired Headphones,1,11.99,07/29/19 10:55,"354 6th St, San Francisco, CA 94016" +223123,Apple Airpods Headphones,1,150,07/28/19 16:48,"484 4th St, Los Angeles, CA 90001" +223124,iPhone,1,700,07/08/19 19:47,"554 North St, Los Angeles, CA 90001" +223124,Apple Airpods Headphones,1,150,07/08/19 19:47,"554 North St, Los Angeles, CA 90001" +223125,Apple Airpods Headphones,1,150,07/20/19 09:58,"855 Walnut St, Atlanta, GA 30301" +223126,20in Monitor,1,109.99,07/08/19 12:23,"721 Cherry St, San Francisco, CA 94016" +223127,AA Batteries (4-pack),1,3.84,07/01/19 23:04,"83 4th St, Seattle, WA 98101" +223128,ThinkPad Laptop,1,999.99,07/27/19 17:42,"543 Adams St, Dallas, TX 75001" +223129,Wired Headphones,1,11.99,07/15/19 18:14,"244 Madison St, Boston, MA 02215" +223130,AA Batteries (4-pack),1,3.84,07/08/19 18:07,"589 4th St, Los Angeles, CA 90001" +223131,USB-C Charging Cable,1,11.95,07/09/19 13:49,"692 North St, San Francisco, CA 94016" +223132,LG Washing Machine,1,600.0,07/12/19 12:19,"974 14th St, Boston, MA 02215" +223133,Apple Airpods Headphones,1,150,07/16/19 13:26,"116 7th St, Portland, OR 97035" +223134,USB-C Charging Cable,1,11.95,07/25/19 18:14,"122 Lincoln St, San Francisco, CA 94016" +223135,Apple Airpods Headphones,1,150,07/03/19 21:23,"497 7th St, Los Angeles, CA 90001" +223135,Wired Headphones,1,11.99,07/03/19 21:23,"497 7th St, Los Angeles, CA 90001" +223136,AA Batteries (4-pack),2,3.84,07/13/19 00:16,"821 Elm St, Dallas, TX 75001" +223137,34in Ultrawide Monitor,1,379.99,07/25/19 12:04,"579 Jefferson St, San Francisco, CA 94016" +223138,AAA Batteries (4-pack),1,2.99,07/17/19 15:57,"443 South St, Seattle, WA 98101" +223139,AA Batteries (4-pack),1,3.84,07/04/19 17:06,"511 South St, Dallas, TX 75001" +,,,,, +223140,USB-C Charging Cable,1,11.95,07/08/19 20:22,"132 Johnson St, Boston, MA 02215" +223141,USB-C Charging Cable,1,11.95,07/29/19 22:05,"906 6th St, San Francisco, CA 94016" +223142,Lightning Charging Cable,1,14.95,07/01/19 11:56,"680 4th St, New York City, NY 10001" +223143,Flatscreen TV,1,300,07/30/19 14:50,"466 Lakeview St, New York City, NY 10001" +223144,AAA Batteries (4-pack),2,2.99,07/11/19 16:13,"711 Jackson St, Boston, MA 02215" +223145,Wired Headphones,1,11.99,07/27/19 12:53,"858 Sunset St, New York City, NY 10001" +223146,Wired Headphones,2,11.99,07/12/19 12:28,"725 Pine St, Dallas, TX 75001" +223147,Bose SoundSport Headphones,1,99.99,07/01/19 16:52,"562 Maple St, Atlanta, GA 30301" +223148,27in FHD Monitor,1,149.99,07/28/19 14:46,"654 Meadow St, New York City, NY 10001" +223149,Lightning Charging Cable,1,14.95,07/27/19 11:56,"28 Lincoln St, Austin, TX 73301" +223150,AAA Batteries (4-pack),1,2.99,07/15/19 22:04,"693 Maple St, Austin, TX 73301" +223151,Apple Airpods Headphones,1,150,07/21/19 15:16,"440 11th St, San Francisco, CA 94016" +223152,Google Phone,1,600,07/08/19 14:54,"479 Cedar St, New York City, NY 10001" +223153,AAA Batteries (4-pack),2,2.99,07/07/19 14:57,"637 Church St, Dallas, TX 75001" +223154,27in FHD Monitor,1,149.99,07/02/19 16:22,"926 Lincoln St, Boston, MA 02215" +223155,Wired Headphones,1,11.99,07/18/19 21:38,"571 8th St, San Francisco, CA 94016" +223156,Lightning Charging Cable,1,14.95,07/15/19 14:25,"467 Johnson St, Seattle, WA 98101" +223157,Google Phone,1,600,07/20/19 23:53,"141 Park St, Seattle, WA 98101" +223158,Lightning Charging Cable,1,14.95,07/12/19 14:27,"269 14th St, Los Angeles, CA 90001" +223159,Lightning Charging Cable,2,14.95,07/03/19 20:49,"969 14th St, New York City, NY 10001" +223160,AA Batteries (4-pack),1,3.84,07/04/19 14:49,"375 Center St, San Francisco, CA 94016" +223161,27in FHD Monitor,1,149.99,07/18/19 13:37,"519 13th St, Boston, MA 02215" +223161,27in FHD Monitor,1,149.99,07/18/19 13:37,"519 13th St, Boston, MA 02215" +223162,USB-C Charging Cable,1,11.95,07/28/19 14:58,"375 11th St, San Francisco, CA 94016" +223163,AAA Batteries (4-pack),1,2.99,07/08/19 02:51,"208 2nd St, San Francisco, CA 94016" +223164,AAA Batteries (4-pack),1,2.99,07/01/19 16:24,"658 13th St, Dallas, TX 75001" +223165,AAA Batteries (4-pack),1,2.99,07/15/19 11:29,"528 Walnut St, Los Angeles, CA 90001" +223166,AA Batteries (4-pack),1,3.84,07/25/19 09:07,"8 4th St, San Francisco, CA 94016" +223167,Apple Airpods Headphones,1,150,07/12/19 21:17,"667 Park St, Portland, OR 97035" +223167,20in Monitor,1,109.99,07/12/19 21:17,"667 Park St, Portland, OR 97035" +223168,Bose SoundSport Headphones,1,99.99,07/01/19 21:39,"308 Cherry St, Portland, OR 97035" +223169,Wired Headphones,1,11.99,07/29/19 16:18,"65 12th St, Boston, MA 02215" +223170,AA Batteries (4-pack),1,3.84,07/05/19 17:37,"364 12th St, Dallas, TX 75001" +223171,AA Batteries (4-pack),2,3.84,07/20/19 06:40,"749 Main St, New York City, NY 10001" +223172,AA Batteries (4-pack),1,3.84,07/11/19 23:42,"522 1st St, Atlanta, GA 30301" +223173,Lightning Charging Cable,1,14.95,07/24/19 07:04,"745 Adams St, Boston, MA 02215" +223174,Macbook Pro Laptop,1,1700,07/15/19 12:00,"935 Pine St, Dallas, TX 75001" +223175,Wired Headphones,2,11.99,07/15/19 11:42,"209 Hickory St, Portland, OR 97035" +223176,Wired Headphones,1,11.99,07/21/19 11:44,"349 Chestnut St, Boston, MA 02215" +223177,AAA Batteries (4-pack),1,2.99,07/29/19 19:52,"232 Chestnut St, San Francisco, CA 94016" +223178,Lightning Charging Cable,1,14.95,07/23/19 20:55,"502 Spruce St, Portland, OR 97035" +223179,Google Phone,1,600,07/31/19 08:49,"648 Jackson St, Atlanta, GA 30301" +223180,AA Batteries (4-pack),1,3.84,07/16/19 15:13,"672 River St, New York City, NY 10001" +223181,USB-C Charging Cable,1,11.95,07/18/19 19:33,"185 Lake St, Austin, TX 73301" +223182,USB-C Charging Cable,1,11.95,07/29/19 12:46,"468 5th St, Los Angeles, CA 90001" +223183,USB-C Charging Cable,1,11.95,07/24/19 17:40,"316 6th St, San Francisco, CA 94016" +223184,Macbook Pro Laptop,1,1700,07/29/19 19:47,"547 Johnson St, Dallas, TX 75001" +223185,Flatscreen TV,1,300,07/16/19 07:08,"430 Highland St, San Francisco, CA 94016" +223186,USB-C Charging Cable,1,11.95,07/11/19 21:36,"500 Ridge St, Seattle, WA 98101" +223187,27in 4K Gaming Monitor,1,389.99,07/15/19 19:46,"10 Highland St, Portland, OR 97035" +223188,Bose SoundSport Headphones,1,99.99,07/02/19 17:18,"203 9th St, San Francisco, CA 94016" +223189,Bose SoundSport Headphones,1,99.99,07/17/19 15:43,"629 Hill St, Seattle, WA 98101" +223190,Bose SoundSport Headphones,1,99.99,07/26/19 13:00,"1 11th St, Atlanta, GA 30301" +223191,AA Batteries (4-pack),1,3.84,07/06/19 14:07,"685 Hickory St, Atlanta, GA 30301" +223192,Bose SoundSport Headphones,1,99.99,07/04/19 14:06,"134 Hickory St, Portland, OR 97035" +223193,AAA Batteries (4-pack),1,2.99,07/06/19 01:07,"70 Walnut St, Dallas, TX 75001" +223194,Wired Headphones,1,11.99,07/20/19 08:11,"520 Sunset St, Boston, MA 02215" +223195,27in FHD Monitor,1,149.99,07/21/19 17:00,"748 Church St, San Francisco, CA 94016" +223196,Apple Airpods Headphones,1,150,07/08/19 20:35,"806 14th St, Los Angeles, CA 90001" +223197,iPhone,1,700,07/07/19 21:25,"598 Meadow St, San Francisco, CA 94016" +223197,Wired Headphones,1,11.99,07/07/19 21:25,"598 Meadow St, San Francisco, CA 94016" +223198,iPhone,1,700,07/02/19 11:07,"309 Pine St, Seattle, WA 98101" +223199,Bose SoundSport Headphones,1,99.99,07/15/19 18:32,"820 6th St, New York City, NY 10001" +223200,Lightning Charging Cable,1,14.95,07/04/19 00:39,"302 14th St, Austin, TX 73301" +223201,27in 4K Gaming Monitor,1,389.99,07/03/19 19:35,"271 North St, Los Angeles, CA 90001" +223202,USB-C Charging Cable,1,11.95,07/10/19 11:10,"33 11th St, Atlanta, GA 30301" +223203,Flatscreen TV,1,300,07/12/19 20:13,"827 Cherry St, Dallas, TX 75001" +223204,Macbook Pro Laptop,1,1700,07/17/19 19:49,"747 6th St, Boston, MA 02215" +223205,20in Monitor,1,109.99,07/21/19 22:02,"426 9th St, Atlanta, GA 30301" +223206,USB-C Charging Cable,1,11.95,07/15/19 21:40,"542 13th St, Portland, OR 97035" +223207,Apple Airpods Headphones,1,150,07/24/19 17:24,"243 South St, Atlanta, GA 30301" +223208,iPhone,1,700,07/15/19 05:28,"926 Wilson St, Portland, OR 97035" +223208,Lightning Charging Cable,1,14.95,07/15/19 05:28,"926 Wilson St, Portland, OR 97035" +223209,Bose SoundSport Headphones,1,99.99,07/20/19 19:16,"457 12th St, Portland, OR 97035" +223210,iPhone,1,700,07/03/19 18:59,"769 Lakeview St, Portland, OR 97035" +223211,Google Phone,1,600,07/29/19 12:13,"480 Cedar St, Los Angeles, CA 90001" +223212,Apple Airpods Headphones,1,150,07/17/19 10:47,"101 Lake St, San Francisco, CA 94016" +223213,AA Batteries (4-pack),2,3.84,07/06/19 12:24,"133 2nd St, Los Angeles, CA 90001" +223214,Lightning Charging Cable,1,14.95,07/09/19 11:06,"295 6th St, San Francisco, CA 94016" +223215,Google Phone,1,600,07/12/19 19:12,"625 North St, San Francisco, CA 94016" +223216,USB-C Charging Cable,1,11.95,07/28/19 13:47,"533 Wilson St, Atlanta, GA 30301" +223217,AA Batteries (4-pack),2,3.84,07/03/19 11:46,"269 Willow St, Dallas, TX 75001" +223218,AA Batteries (4-pack),1,3.84,07/04/19 11:28,"803 10th St, Boston, MA 02215" +223219,Bose SoundSport Headphones,1,99.99,07/23/19 16:32,"24 14th St, Portland, OR 97035" +223220,Flatscreen TV,1,300,07/23/19 22:39,"259 Cedar St, San Francisco, CA 94016" +223221,Bose SoundSport Headphones,1,99.99,07/22/19 20:45,"402 14th St, Austin, TX 73301" +223222,Google Phone,1,600,07/13/19 11:45,"317 Main St, Austin, TX 73301" +223222,USB-C Charging Cable,1,11.95,07/13/19 11:45,"317 Main St, Austin, TX 73301" +223223,AA Batteries (4-pack),1,3.84,07/21/19 11:21,"209 Meadow St, Atlanta, GA 30301" +223224,27in 4K Gaming Monitor,1,389.99,07/17/19 14:37,"68 10th St, Atlanta, GA 30301" +223225,Lightning Charging Cable,1,14.95,07/02/19 12:40,"933 Park St, Boston, MA 02215" +223226,Flatscreen TV,1,300,07/25/19 11:43,"55 Hill St, San Francisco, CA 94016" +223227,Bose SoundSport Headphones,1,99.99,07/23/19 19:51,"907 13th St, San Francisco, CA 94016" +223228,Wired Headphones,1,11.99,07/28/19 11:57,"667 South St, Los Angeles, CA 90001" +223228,Apple Airpods Headphones,1,150,07/28/19 11:57,"667 South St, Los Angeles, CA 90001" +223229,ThinkPad Laptop,1,999.99,07/02/19 00:12,"972 Ridge St, San Francisco, CA 94016" +223230,ThinkPad Laptop,1,999.99,07/21/19 12:55,"332 Church St, New York City, NY 10001" +223231,Vareebadd Phone,1,400,07/13/19 15:11,"533 11th St, Seattle, WA 98101" +223232,USB-C Charging Cable,1,11.95,07/08/19 17:39,"291 Meadow St, New York City, NY 10001" +223233,Lightning Charging Cable,1,14.95,07/17/19 15:57,"856 Hill St, San Francisco, CA 94016" +223234,Vareebadd Phone,1,400,07/19/19 18:46,"83 10th St, Boston, MA 02215" +223235,AA Batteries (4-pack),1,3.84,07/18/19 19:38,"884 14th St, New York City, NY 10001" +223236,Wired Headphones,1,11.99,07/02/19 19:31,"347 Maple St, San Francisco, CA 94016" +223237,34in Ultrawide Monitor,1,379.99,07/13/19 18:03,"870 Cherry St, San Francisco, CA 94016" +223238,27in FHD Monitor,1,149.99,07/18/19 12:36,"424 Madison St, San Francisco, CA 94016" +223239,Lightning Charging Cable,1,14.95,07/02/19 07:42,"571 South St, Seattle, WA 98101" +223240,Vareebadd Phone,1,400,07/28/19 23:15,"125 Cherry St, Atlanta, GA 30301" +223241,AAA Batteries (4-pack),1,2.99,07/28/19 22:28,"286 Main St, New York City, NY 10001" +223242,Lightning Charging Cable,1,14.95,07/25/19 22:31,"477 Lincoln St, Seattle, WA 98101" +,,,,, +223243,Lightning Charging Cable,1,14.95,07/11/19 13:02,"922 12th St, Seattle, WA 98101" +223244,iPhone,1,700,07/01/19 23:50,"927 Main St, Dallas, TX 75001" +223245,Wired Headphones,1,11.99,07/07/19 16:12,"479 Lakeview St, Boston, MA 02215" +223246,Wired Headphones,1,11.99,07/22/19 07:28,"233 5th St, Dallas, TX 75001" +223246,Vareebadd Phone,1,400,07/22/19 07:28,"233 5th St, Dallas, TX 75001" +223247,Wired Headphones,1,11.99,07/29/19 16:03,"148 Cherry St, Seattle, WA 98101" +223248,Wired Headphones,1,11.99,07/16/19 21:02,"447 Sunset St, Los Angeles, CA 90001" +223249,AA Batteries (4-pack),1,3.84,07/19/19 22:02,"554 6th St, Seattle, WA 98101" +223250,Bose SoundSport Headphones,1,99.99,07/03/19 15:43,"146 Church St, San Francisco, CA 94016" +223251,Apple Airpods Headphones,1,150,07/23/19 19:04,"42 7th St, New York City, NY 10001" +223252,Apple Airpods Headphones,1,150,07/17/19 00:13,"926 Spruce St, San Francisco, CA 94016" +223253,Macbook Pro Laptop,1,1700,07/28/19 18:28,"941 Wilson St, San Francisco, CA 94016" +223254,AAA Batteries (4-pack),2,2.99,07/12/19 18:12,"296 2nd St, Atlanta, GA 30301" +223255,27in 4K Gaming Monitor,1,389.99,07/14/19 13:23,"523 West St, San Francisco, CA 94016" +223256,AA Batteries (4-pack),1,3.84,07/10/19 10:21,"497 10th St, Boston, MA 02215" +223257,Lightning Charging Cable,1,14.95,07/05/19 09:17,"262 Pine St, Atlanta, GA 30301" +223258,AA Batteries (4-pack),1,3.84,07/24/19 08:35,"270 Main St, Los Angeles, CA 90001" +223259,Apple Airpods Headphones,1,150,07/05/19 13:59,"199 8th St, Austin, TX 73301" +223260,USB-C Charging Cable,1,11.95,07/16/19 23:12,"418 Johnson St, Austin, TX 73301" +223261,Lightning Charging Cable,1,14.95,07/06/19 11:21,"547 Johnson St, Boston, MA 02215" +223262,ThinkPad Laptop,1,999.99,07/18/19 19:05,"367 9th St, Los Angeles, CA 90001" +223263,Lightning Charging Cable,1,14.95,07/15/19 20:03,"992 Chestnut St, San Francisco, CA 94016" +223264,Apple Airpods Headphones,1,150,07/09/19 15:07,"537 River St, Portland, OR 97035" +223265,iPhone,1,700,07/28/19 11:08,"984 North St, San Francisco, CA 94016" +223265,Apple Airpods Headphones,1,150,07/28/19 11:08,"984 North St, San Francisco, CA 94016" +223266,AAA Batteries (4-pack),1,2.99,07/18/19 19:01,"184 Ridge St, San Francisco, CA 94016" +223267,Wired Headphones,1,11.99,07/04/19 14:38,"230 4th St, Dallas, TX 75001" +223268,iPhone,1,700,07/16/19 11:19,"742 Johnson St, Austin, TX 73301" +223268,Wired Headphones,1,11.99,07/16/19 11:19,"742 Johnson St, Austin, TX 73301" +223269,20in Monitor,1,109.99,07/23/19 08:43,"710 Lincoln St, San Francisco, CA 94016" +223270,iPhone,1,700,07/25/19 23:03,"112 Dogwood St, Dallas, TX 75001" +223271,Bose SoundSport Headphones,1,99.99,07/08/19 01:23,"193 Cherry St, Boston, MA 02215" +223272,Lightning Charging Cable,1,14.95,07/28/19 20:08,"364 Forest St, Seattle, WA 98101" +223273,LG Dryer,1,600.0,07/19/19 14:58,"823 Lakeview St, New York City, NY 10001" +223274,Bose SoundSport Headphones,1,99.99,07/20/19 12:09,"129 Willow St, New York City, NY 10001" +223275,AA Batteries (4-pack),1,3.84,07/05/19 13:49,"968 Hill St, San Francisco, CA 94016" +223276,USB-C Charging Cable,1,11.95,07/09/19 17:26,"366 6th St, Atlanta, GA 30301" +223277,Lightning Charging Cable,1,14.95,07/20/19 14:11,"465 Highland St, Atlanta, GA 30301" +223278,Vareebadd Phone,1,400,07/04/19 10:58,"323 11th St, Seattle, WA 98101" +223279,Wired Headphones,1,11.99,07/11/19 15:55,"167 4th St, Boston, MA 02215" +223280,AAA Batteries (4-pack),1,2.99,07/10/19 06:34,"787 2nd St, Los Angeles, CA 90001" +223281,Apple Airpods Headphones,1,150,07/16/19 12:37,"256 Washington St, Boston, MA 02215" +223282,27in FHD Monitor,1,149.99,07/27/19 16:48,"183 9th St, New York City, NY 10001" +223283,AAA Batteries (4-pack),2,2.99,07/01/19 13:52,"467 Center St, San Francisco, CA 94016" +223284,Lightning Charging Cable,1,14.95,07/23/19 18:50,"947 Park St, Dallas, TX 75001" +223285,USB-C Charging Cable,2,11.95,07/27/19 12:51,"100 Maple St, Los Angeles, CA 90001" +223286,34in Ultrawide Monitor,1,379.99,07/18/19 13:44,"504 River St, Dallas, TX 75001" +223287,Lightning Charging Cable,1,14.95,07/19/19 21:16,"323 Cherry St, New York City, NY 10001" +223288,34in Ultrawide Monitor,1,379.99,07/05/19 16:35,"330 Lakeview St, New York City, NY 10001" +223289,AAA Batteries (4-pack),1,2.99,07/08/19 02:48,"313 Wilson St, Los Angeles, CA 90001" +223290,Bose SoundSport Headphones,1,99.99,07/15/19 11:55,"425 Ridge St, Seattle, WA 98101" +223291,AA Batteries (4-pack),1,3.84,07/17/19 09:19,"202 1st St, San Francisco, CA 94016" +223292,AA Batteries (4-pack),1,3.84,07/17/19 07:31,"279 6th St, Dallas, TX 75001" +223293,Bose SoundSport Headphones,1,99.99,07/07/19 11:02,"596 Main St, San Francisco, CA 94016" +223294,AA Batteries (4-pack),1,3.84,07/28/19 21:32,"656 Jackson St, San Francisco, CA 94016" +223295,iPhone,1,700,07/16/19 21:53,"820 Walnut St, Portland, OR 97035" +223296,Apple Airpods Headphones,1,150,07/20/19 11:31,"918 Wilson St, Dallas, TX 75001" +223297,USB-C Charging Cable,1,11.95,07/15/19 12:14,"700 9th St, Boston, MA 02215" +223298,AAA Batteries (4-pack),1,2.99,07/26/19 23:46,"785 Madison St, Los Angeles, CA 90001" +223299,Lightning Charging Cable,1,14.95,07/02/19 19:26,"626 10th St, Boston, MA 02215" +223300,iPhone,1,700,07/23/19 15:58,"462 4th St, Dallas, TX 75001" +223301,iPhone,1,700,07/22/19 09:22,"707 9th St, Austin, TX 73301" +223302,AA Batteries (4-pack),1,3.84,07/09/19 13:18,"194 Walnut St, Portland, ME 04101" +223303,27in 4K Gaming Monitor,1,389.99,07/17/19 00:35,"410 Highland St, Portland, ME 04101" +223304,AAA Batteries (4-pack),2,2.99,07/19/19 00:07,"122 Cherry St, Boston, MA 02215" +223305,USB-C Charging Cable,1,11.95,07/14/19 22:45,"922 West St, Boston, MA 02215" +223306,USB-C Charging Cable,1,11.95,07/27/19 18:48,"343 Wilson St, San Francisco, CA 94016" +223307,USB-C Charging Cable,1,11.95,07/04/19 13:02,"765 Walnut St, Boston, MA 02215" +223308,AAA Batteries (4-pack),3,2.99,07/28/19 12:38,"786 13th St, Boston, MA 02215" +223309,Bose SoundSport Headphones,1,99.99,07/29/19 22:38,"471 North St, Dallas, TX 75001" +223310,Bose SoundSport Headphones,1,99.99,07/28/19 07:26,"536 Chestnut St, Seattle, WA 98101" +223311,Macbook Pro Laptop,1,1700,07/22/19 11:30,"987 6th St, New York City, NY 10001" +223312,Lightning Charging Cable,1,14.95,07/28/19 16:19,"55 8th St, Seattle, WA 98101" +223313,34in Ultrawide Monitor,1,379.99,07/05/19 00:30,"550 11th St, Boston, MA 02215" +223313,Apple Airpods Headphones,1,150,07/05/19 00:30,"550 11th St, Boston, MA 02215" +223314,Lightning Charging Cable,1,14.95,07/17/19 20:02,"176 North St, San Francisco, CA 94016" +223315,Lightning Charging Cable,1,14.95,07/08/19 12:53,"665 Wilson St, New York City, NY 10001" +223316,Lightning Charging Cable,1,14.95,07/30/19 12:11,"202 South St, Los Angeles, CA 90001" +223317,Lightning Charging Cable,1,14.95,07/15/19 10:09,"727 14th St, San Francisco, CA 94016" +223318,AAA Batteries (4-pack),1,2.99,07/17/19 15:04,"538 Johnson St, San Francisco, CA 94016" +223319,Google Phone,1,600,07/01/19 20:53,"340 Park St, Los Angeles, CA 90001" +223319,USB-C Charging Cable,1,11.95,07/01/19 20:53,"340 Park St, Los Angeles, CA 90001" +223320,Lightning Charging Cable,2,14.95,07/31/19 23:10,"483 West St, New York City, NY 10001" +223321,USB-C Charging Cable,1,11.95,07/31/19 22:31,"826 Ridge St, New York City, NY 10001" +223322,USB-C Charging Cable,1,11.95,07/02/19 12:42,"777 Main St, Atlanta, GA 30301" +223323,34in Ultrawide Monitor,1,379.99,07/09/19 18:02,"495 12th St, Atlanta, GA 30301" +223324,AA Batteries (4-pack),2,3.84,07/16/19 11:58,"457 11th St, Austin, TX 73301" +223325,USB-C Charging Cable,1,11.95,07/25/19 22:32,"449 Sunset St, Portland, OR 97035" +223326,27in FHD Monitor,1,149.99,07/10/19 18:20,"907 Elm St, Los Angeles, CA 90001" +223327,Lightning Charging Cable,1,14.95,07/15/19 22:04,"152 Washington St, New York City, NY 10001" +223328,Lightning Charging Cable,1,14.95,07/26/19 12:46,"745 Meadow St, Portland, OR 97035" +223329,Apple Airpods Headphones,1,150,07/16/19 19:17,"865 Johnson St, Dallas, TX 75001" +223330,Lightning Charging Cable,1,14.95,07/21/19 12:12,"950 Elm St, Los Angeles, CA 90001" +223331,Lightning Charging Cable,1,14.95,07/24/19 06:10,"536 Main St, San Francisco, CA 94016" +223332,Macbook Pro Laptop,1,1700,07/13/19 20:21,"866 13th St, San Francisco, CA 94016" +223333,27in 4K Gaming Monitor,1,389.99,07/09/19 11:40,"321 Ridge St, New York City, NY 10001" +223334,ThinkPad Laptop,1,999.99,07/02/19 19:28,"321 Dogwood St, New York City, NY 10001" +223335,34in Ultrawide Monitor,1,379.99,07/15/19 20:01,"127 Hill St, San Francisco, CA 94016" +223336,AAA Batteries (4-pack),1,2.99,07/26/19 21:48,"480 Johnson St, Atlanta, GA 30301" +223337,Lightning Charging Cable,1,14.95,07/05/19 05:11,"375 Lakeview St, Portland, OR 97035" +223338,27in 4K Gaming Monitor,1,389.99,07/27/19 23:11,"393 Willow St, Seattle, WA 98101" +223339,Wired Headphones,1,11.99,07/20/19 13:58,"737 Hickory St, Boston, MA 02215" +223340,AA Batteries (4-pack),1,3.84,07/12/19 10:17,"121 Wilson St, Austin, TX 73301" +223341,Lightning Charging Cable,1,14.95,07/10/19 16:26,"421 13th St, Los Angeles, CA 90001" +223342,Wired Headphones,1,11.99,07/24/19 11:36,"487 Walnut St, Los Angeles, CA 90001" +223343,34in Ultrawide Monitor,1,379.99,07/07/19 15:41,"410 River St, Portland, OR 97035" +223344,AA Batteries (4-pack),1,3.84,07/13/19 13:09,"520 Spruce St, New York City, NY 10001" +223345,20in Monitor,1,109.99,07/02/19 21:19,"880 Cherry St, San Francisco, CA 94016" +223346,AAA Batteries (4-pack),1,2.99,07/16/19 20:40,"749 Maple St, Los Angeles, CA 90001" +223347,AAA Batteries (4-pack),5,2.99,07/19/19 16:49,"414 Sunset St, Los Angeles, CA 90001" +223348,AAA Batteries (4-pack),1,2.99,07/07/19 18:24,"181 Lakeview St, Atlanta, GA 30301" +223349,Wired Headphones,1,11.99,07/24/19 16:22,"270 Meadow St, Los Angeles, CA 90001" +223350,AAA Batteries (4-pack),1,2.99,07/01/19 20:57,"865 4th St, Austin, TX 73301" +223351,34in Ultrawide Monitor,1,379.99,07/23/19 22:23,"174 2nd St, Portland, OR 97035" +223352,Lightning Charging Cable,1,14.95,07/19/19 00:46,"933 Main St, Los Angeles, CA 90001" +223353,Apple Airpods Headphones,1,150,07/14/19 16:19,"978 Ridge St, New York City, NY 10001" +223354,Wired Headphones,1,11.99,07/15/19 08:57,"144 5th St, New York City, NY 10001" +223355,27in FHD Monitor,1,149.99,07/31/19 00:35,"542 Walnut St, Austin, TX 73301" +223356,Macbook Pro Laptop,1,1700,07/15/19 14:46,"59 North St, Portland, ME 04101" +223357,Lightning Charging Cable,1,14.95,07/15/19 20:20,"966 North St, San Francisco, CA 94016" +223358,Wired Headphones,1,11.99,07/30/19 16:04,"30 Willow St, Seattle, WA 98101" +223359,Flatscreen TV,1,300,07/15/19 22:14,"835 Walnut St, San Francisco, CA 94016" +223360,Wired Headphones,1,11.99,07/11/19 21:32,"89 Willow St, Seattle, WA 98101" +223360,Macbook Pro Laptop,1,1700,07/11/19 21:32,"89 Willow St, Seattle, WA 98101" +223361,AA Batteries (4-pack),2,3.84,07/05/19 09:27,"248 8th St, Los Angeles, CA 90001" +223362,34in Ultrawide Monitor,1,379.99,07/19/19 23:46,"422 Jackson St, San Francisco, CA 94016" +223363,ThinkPad Laptop,1,999.99,07/18/19 16:09,"136 Hickory St, New York City, NY 10001" +223364,Flatscreen TV,1,300,07/26/19 14:38,"411 Maple St, San Francisco, CA 94016" +223365,Lightning Charging Cable,1,14.95,07/18/19 09:44,"239 Adams St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +223366,AAA Batteries (4-pack),3,2.99,07/14/19 18:18,"13 Meadow St, New York City, NY 10001" +223367,Bose SoundSport Headphones,1,99.99,07/03/19 21:24,"832 Madison St, Boston, MA 02215" +223368,27in 4K Gaming Monitor,1,389.99,07/06/19 11:18,"168 9th St, Austin, TX 73301" +223369,Apple Airpods Headphones,1,150,07/18/19 09:13,"463 North St, Portland, ME 04101" +223370,Lightning Charging Cable,2,14.95,07/05/19 12:15,"401 Adams St, New York City, NY 10001" +223371,USB-C Charging Cable,1,11.95,07/09/19 19:36,"8 Jackson St, Portland, OR 97035" +223372,ThinkPad Laptop,1,999.99,07/23/19 17:31,"158 4th St, Los Angeles, CA 90001" +223373,Bose SoundSport Headphones,1,99.99,07/09/19 08:41,"693 Sunset St, San Francisco, CA 94016" +223374,Lightning Charging Cable,1,14.95,07/19/19 18:10,"597 Ridge St, Los Angeles, CA 90001" +223375,AA Batteries (4-pack),1,3.84,07/03/19 16:19,"440 Lakeview St, New York City, NY 10001" +223376,Wired Headphones,1,11.99,07/25/19 10:09,"762 7th St, New York City, NY 10001" +223377,Apple Airpods Headphones,1,150,07/22/19 19:18,"905 Lake St, Atlanta, GA 30301" +223378,Bose SoundSport Headphones,1,99.99,07/30/19 15:45,"576 Dogwood St, New York City, NY 10001" +223379,Google Phone,1,600,07/17/19 08:47,"529 Park St, Boston, MA 02215" +223379,USB-C Charging Cable,1,11.95,07/17/19 08:47,"529 Park St, Boston, MA 02215" +223380,USB-C Charging Cable,1,11.95,07/03/19 10:55,"741 Cherry St, New York City, NY 10001" +223381,Apple Airpods Headphones,1,150,07/03/19 16:31,"616 North St, Los Angeles, CA 90001" +223382,Apple Airpods Headphones,1,150,07/17/19 08:09,"942 2nd St, Dallas, TX 75001" +223383,iPhone,1,700,07/12/19 20:11,"192 6th St, Los Angeles, CA 90001" +223384,Bose SoundSport Headphones,1,99.99,07/29/19 16:50,"976 Park St, Los Angeles, CA 90001" +223385,Wired Headphones,1,11.99,07/31/19 17:07,"496 Center St, Portland, OR 97035" +223386,27in FHD Monitor,1,149.99,07/05/19 16:56,"19 Main St, Los Angeles, CA 90001" +223387,AA Batteries (4-pack),1,3.84,07/14/19 03:22,"775 Park St, Atlanta, GA 30301" +223388,Lightning Charging Cable,1,14.95,07/28/19 12:55,"458 Madison St, Los Angeles, CA 90001" +223389,Bose SoundSport Headphones,1,99.99,07/26/19 21:41,"379 11th St, Seattle, WA 98101" +223390,AAA Batteries (4-pack),1,2.99,07/28/19 00:07,"905 Lincoln St, San Francisco, CA 94016" +223391,Flatscreen TV,1,300,07/09/19 12:21,"701 Spruce St, San Francisco, CA 94016" +223392,USB-C Charging Cable,1,11.95,07/22/19 10:39,"929 4th St, New York City, NY 10001" +223393,Lightning Charging Cable,1,14.95,07/26/19 18:06,"212 Spruce St, Los Angeles, CA 90001" +223394,Lightning Charging Cable,1,14.95,07/26/19 19:17,"539 Church St, Austin, TX 73301" +223395,AAA Batteries (4-pack),1,2.99,07/19/19 19:59,"183 Ridge St, New York City, NY 10001" +223396,AAA Batteries (4-pack),1,2.99,07/15/19 23:21,"288 8th St, Los Angeles, CA 90001" +223397,LG Dryer,1,600.0,07/01/19 17:44,"971 Maple St, Dallas, TX 75001" +223398,Google Phone,1,600,07/12/19 13:23,"220 4th St, Atlanta, GA 30301" +223399,Lightning Charging Cable,1,14.95,07/12/19 09:31,"709 2nd St, Atlanta, GA 30301" +223400,27in FHD Monitor,1,149.99,07/15/19 12:58,"416 Ridge St, Dallas, TX 75001" +223401,Wired Headphones,1,11.99,07/28/19 17:56,"233 Lake St, San Francisco, CA 94016" +223402,Macbook Pro Laptop,1,1700,07/22/19 11:57,"456 14th St, Atlanta, GA 30301" +223403,USB-C Charging Cable,1,11.95,07/23/19 15:59,"497 13th St, Los Angeles, CA 90001" +223404,27in 4K Gaming Monitor,1,389.99,07/16/19 10:45,"959 Elm St, Austin, TX 73301" +223405,Flatscreen TV,1,300,07/15/19 15:37,"750 Lakeview St, Los Angeles, CA 90001" +223406,AA Batteries (4-pack),1,3.84,07/03/19 09:17,"69 14th St, Portland, OR 97035" +223407,Vareebadd Phone,1,400,07/29/19 11:00,"797 Hill St, Seattle, WA 98101" +223408,USB-C Charging Cable,2,11.95,07/26/19 16:18,"377 Hickory St, Atlanta, GA 30301" +223409,AA Batteries (4-pack),1,3.84,07/19/19 11:34,"84 Spruce St, Boston, MA 02215" +223410,Bose SoundSport Headphones,1,99.99,07/29/19 16:50,"781 Cedar St, Dallas, TX 75001" +223411,USB-C Charging Cable,1,11.95,07/05/19 07:03,"215 12th St, Dallas, TX 75001" +223412,34in Ultrawide Monitor,1,379.99,07/19/19 15:03,"32 Park St, Los Angeles, CA 90001" +223413,iPhone,1,700,07/12/19 20:08,"145 11th St, Los Angeles, CA 90001" +223414,ThinkPad Laptop,1,999.99,07/28/19 15:55,"720 Hickory St, Los Angeles, CA 90001" +223415,Google Phone,1,600,07/09/19 16:10,"850 10th St, San Francisco, CA 94016" +223416,27in 4K Gaming Monitor,1,389.99,07/22/19 23:58,"248 13th St, San Francisco, CA 94016" +223417,Macbook Pro Laptop,1,1700,07/02/19 02:41,"954 Cherry St, New York City, NY 10001" +223418,USB-C Charging Cable,1,11.95,07/03/19 07:01,"236 9th St, San Francisco, CA 94016" +223419,AAA Batteries (4-pack),1,2.99,07/31/19 21:33,"193 11th St, Los Angeles, CA 90001" +223420,USB-C Charging Cable,1,11.95,07/03/19 13:04,"124 Dogwood St, Los Angeles, CA 90001" +223421,27in 4K Gaming Monitor,1,389.99,07/29/19 17:13,"673 Jackson St, San Francisco, CA 94016" +223422,USB-C Charging Cable,1,11.95,07/14/19 21:15,"918 Forest St, San Francisco, CA 94016" +223423,Lightning Charging Cable,1,14.95,07/26/19 20:53,"1 Church St, Los Angeles, CA 90001" +223424,USB-C Charging Cable,1,11.95,07/20/19 07:03,"285 Forest St, San Francisco, CA 94016" +223425,20in Monitor,1,109.99,07/18/19 09:40,"707 Hill St, New York City, NY 10001" +223426,AA Batteries (4-pack),1,3.84,07/07/19 14:16,"238 Highland St, Seattle, WA 98101" +223427,Lightning Charging Cable,1,14.95,07/07/19 12:03,"268 12th St, Los Angeles, CA 90001" +223428,27in FHD Monitor,1,149.99,07/09/19 15:34,"115 1st St, New York City, NY 10001" +223429,AA Batteries (4-pack),1,3.84,07/20/19 11:14,"440 Park St, Seattle, WA 98101" +223430,AAA Batteries (4-pack),1,2.99,07/02/19 21:46,"240 Lakeview St, San Francisco, CA 94016" +223431,Lightning Charging Cable,1,14.95,07/29/19 16:45,"471 Johnson St, Austin, TX 73301" +223431,Lightning Charging Cable,1,14.95,07/29/19 16:45,"471 Johnson St, Austin, TX 73301" +223432,USB-C Charging Cable,1,11.95,07/14/19 10:17,"97 1st St, Boston, MA 02215" +223433,ThinkPad Laptop,1,999.99,07/23/19 07:02,"840 Adams St, Seattle, WA 98101" +223434,34in Ultrawide Monitor,1,379.99,07/24/19 23:59,"724 Walnut St, New York City, NY 10001" +223435,Apple Airpods Headphones,1,150,07/20/19 21:45,"542 River St, Portland, OR 97035" +223436,AA Batteries (4-pack),1,3.84,07/17/19 22:26,"833 Cedar St, New York City, NY 10001" +223437,Wired Headphones,1,11.99,07/10/19 20:23,"171 Lake St, Portland, OR 97035" +223438,Bose SoundSport Headphones,1,99.99,07/07/19 12:13,"424 8th St, Portland, OR 97035" +223439,Lightning Charging Cable,1,14.95,07/22/19 14:25,"873 Main St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +223440,AAA Batteries (4-pack),1,2.99,07/21/19 17:07,"315 Cedar St, Boston, MA 02215" +223441,27in 4K Gaming Monitor,1,389.99,07/24/19 19:31,"116 10th St, San Francisco, CA 94016" +223442,USB-C Charging Cable,1,11.95,07/10/19 11:13,"118 Walnut St, Boston, MA 02215" +223443,AA Batteries (4-pack),1,3.84,07/19/19 13:42,"771 Jackson St, Los Angeles, CA 90001" +223444,USB-C Charging Cable,2,11.95,07/07/19 15:22,"106 9th St, New York City, NY 10001" +223445,27in FHD Monitor,1,149.99,07/01/19 20:10,"265 Jefferson St, Atlanta, GA 30301" +223446,27in 4K Gaming Monitor,1,389.99,07/09/19 05:54,"951 Maple St, Dallas, TX 75001" +223447,AA Batteries (4-pack),1,3.84,07/24/19 12:32,"558 13th St, Boston, MA 02215" +223448,Flatscreen TV,1,300,07/22/19 09:49,"873 Jefferson St, Atlanta, GA 30301" +223449,AAA Batteries (4-pack),1,2.99,07/11/19 16:00,"68 Pine St, Seattle, WA 98101" +223450,Apple Airpods Headphones,1,150,07/14/19 06:05,"169 Jefferson St, San Francisco, CA 94016" +223451,AA Batteries (4-pack),1,3.84,07/04/19 06:45,"577 Church St, Seattle, WA 98101" +223452,Wired Headphones,1,11.99,07/31/19 07:17,"436 Jackson St, Portland, ME 04101" +223453,34in Ultrawide Monitor,1,379.99,07/04/19 19:08,"150 Church St, Dallas, TX 75001" +223454,Google Phone,1,600,07/20/19 20:26,"123 River St, San Francisco, CA 94016" +223455,AAA Batteries (4-pack),2,2.99,07/10/19 16:42,"626 Lincoln St, New York City, NY 10001" +223456,USB-C Charging Cable,1,11.95,07/10/19 11:34,"323 Pine St, Los Angeles, CA 90001" +223457,AAA Batteries (4-pack),3,2.99,07/18/19 10:25,"405 West St, Portland, OR 97035" +223458,27in FHD Monitor,1,149.99,07/28/19 12:50,"422 7th St, Austin, TX 73301" +223459,Bose SoundSport Headphones,1,99.99,07/02/19 07:36,"12 Wilson St, Seattle, WA 98101" +223460,AA Batteries (4-pack),1,3.84,07/19/19 17:16,"363 Highland St, Boston, MA 02215" +223461,Lightning Charging Cable,1,14.95,07/31/19 10:40,"650 South St, Los Angeles, CA 90001" +223462,USB-C Charging Cable,1,11.95,07/16/19 23:32,"582 Adams St, Los Angeles, CA 90001" +223463,USB-C Charging Cable,1,11.95,07/10/19 17:04,"774 8th St, Atlanta, GA 30301" +223464,AAA Batteries (4-pack),1,2.99,07/01/19 10:58,"804 Ridge St, Boston, MA 02215" +223465,Lightning Charging Cable,1,14.95,07/21/19 13:25,"252 8th St, Austin, TX 73301" +223466,Lightning Charging Cable,1,14.95,07/12/19 18:15,"67 Elm St, Los Angeles, CA 90001" +223467,USB-C Charging Cable,1,11.95,07/22/19 08:07,"485 Dogwood St, New York City, NY 10001" +223468,AAA Batteries (4-pack),1,2.99,07/09/19 18:01,"639 Lake St, Dallas, TX 75001" +223469,Lightning Charging Cable,1,14.95,07/01/19 21:40,"609 8th St, New York City, NY 10001" +223470,ThinkPad Laptop,1,999.99,07/17/19 19:37,"732 Madison St, San Francisco, CA 94016" +223471,AA Batteries (4-pack),6,3.84,07/13/19 23:06,"797 Washington St, Boston, MA 02215" +223472,Wired Headphones,1,11.99,07/22/19 11:44,"439 Maple St, San Francisco, CA 94016" +223473,USB-C Charging Cable,1,11.95,07/04/19 19:24,"670 Church St, Los Angeles, CA 90001" +223474,Lightning Charging Cable,2,14.95,07/07/19 11:55,"532 Forest St, Boston, MA 02215" +223475,Lightning Charging Cable,1,14.95,07/19/19 21:57,"215 Chestnut St, Boston, MA 02215" +223476,27in FHD Monitor,1,149.99,07/26/19 20:32,"542 Adams St, Dallas, TX 75001" +223477,AA Batteries (4-pack),1,3.84,07/05/19 15:45,"709 7th St, New York City, NY 10001" +223478,USB-C Charging Cable,1,11.95,07/01/19 10:44,"480 1st St, Dallas, TX 75001" +223479,Wired Headphones,1,11.99,07/11/19 00:26,"355 River St, Portland, OR 97035" +223480,34in Ultrawide Monitor,1,379.99,07/23/19 10:52,"546 2nd St, Dallas, TX 75001" +223481,AA Batteries (4-pack),1,3.84,07/30/19 12:41,"448 Lincoln St, San Francisco, CA 94016" +223482,AA Batteries (4-pack),1,3.84,07/09/19 11:40,"117 4th St, Los Angeles, CA 90001" +223483,Google Phone,1,600,07/16/19 23:04,"153 Madison St, New York City, NY 10001" +223484,Lightning Charging Cable,1,14.95,07/02/19 17:28,"604 Jefferson St, San Francisco, CA 94016" +223485,Wired Headphones,1,11.99,07/29/19 10:59,"982 Center St, Boston, MA 02215" +223486,Flatscreen TV,1,300,07/29/19 14:45,"799 Washington St, San Francisco, CA 94016" +223487,Lightning Charging Cable,1,14.95,07/16/19 18:37,"755 Meadow St, San Francisco, CA 94016" +223488,USB-C Charging Cable,1,11.95,07/13/19 17:12,"109 Ridge St, Los Angeles, CA 90001" +223489,AAA Batteries (4-pack),1,2.99,07/20/19 20:54,"592 Willow St, Los Angeles, CA 90001" +223490,Wired Headphones,1,11.99,07/09/19 23:15,"288 5th St, Boston, MA 02215" +223491,Bose SoundSport Headphones,1,99.99,07/04/19 19:25,"300 River St, Austin, TX 73301" +223492,USB-C Charging Cable,1,11.95,07/13/19 06:35,"480 13th St, Los Angeles, CA 90001" +223493,ThinkPad Laptop,1,999.99,07/07/19 21:02,"75 Cedar St, Los Angeles, CA 90001" +223494,Wired Headphones,1,11.99,07/09/19 15:28,"791 1st St, Los Angeles, CA 90001" +223495,USB-C Charging Cable,1,11.95,07/20/19 16:31,"193 6th St, San Francisco, CA 94016" +223496,27in FHD Monitor,1,149.99,07/16/19 13:50,"754 12th St, Seattle, WA 98101" +223497,AA Batteries (4-pack),1,3.84,07/10/19 07:38,"630 Madison St, San Francisco, CA 94016" +223498,AA Batteries (4-pack),1,3.84,07/16/19 11:01,"217 Jackson St, Los Angeles, CA 90001" +223499,27in 4K Gaming Monitor,1,389.99,07/01/19 12:51,"200 River St, New York City, NY 10001" +223500,Wired Headphones,1,11.99,07/25/19 20:05,"527 Maple St, San Francisco, CA 94016" +223501,27in 4K Gaming Monitor,2,389.99,07/08/19 00:41,"392 7th St, Dallas, TX 75001" +223502,AAA Batteries (4-pack),3,2.99,07/24/19 21:36,"484 North St, Seattle, WA 98101" +223503,Google Phone,1,600,07/06/19 21:25,"739 Sunset St, Los Angeles, CA 90001" +223504,Lightning Charging Cable,1,14.95,07/15/19 19:16,"813 Maple St, Austin, TX 73301" +223505,Google Phone,1,600,07/15/19 11:37,"728 Pine St, Los Angeles, CA 90001" +223505,USB-C Charging Cable,2,11.95,07/15/19 11:37,"728 Pine St, Los Angeles, CA 90001" +223506,Apple Airpods Headphones,1,150,07/13/19 21:30,"157 Main St, Seattle, WA 98101" +223507,USB-C Charging Cable,1,11.95,07/28/19 18:32,"723 Chestnut St, Seattle, WA 98101" +223507,iPhone,1,700,07/28/19 18:32,"723 Chestnut St, Seattle, WA 98101" +223508,USB-C Charging Cable,1,11.95,07/07/19 11:29,"627 Walnut St, Seattle, WA 98101" +223509,Flatscreen TV,1,300,07/29/19 20:45,"670 Dogwood St, Austin, TX 73301" +223510,Wired Headphones,1,11.99,07/28/19 16:35,"222 River St, San Francisco, CA 94016" +223511,USB-C Charging Cable,1,11.95,07/04/19 12:46,"909 8th St, New York City, NY 10001" +223512,20in Monitor,1,109.99,07/01/19 21:02,"905 6th St, Seattle, WA 98101" +223513,USB-C Charging Cable,1,11.95,07/09/19 23:06,"681 Lakeview St, Dallas, TX 75001" +223514,AAA Batteries (4-pack),2,2.99,07/10/19 21:40,"222 Main St, San Francisco, CA 94016" +223515,Wired Headphones,1,11.99,07/03/19 08:52,"513 Washington St, San Francisco, CA 94016" +223516,USB-C Charging Cable,1,11.95,07/13/19 11:02,"612 Maple St, Seattle, WA 98101" +223517,34in Ultrawide Monitor,1,379.99,07/18/19 11:26,"716 10th St, Los Angeles, CA 90001" +223518,Apple Airpods Headphones,1,150,07/22/19 11:27,"958 Sunset St, Boston, MA 02215" +223519,USB-C Charging Cable,1,11.95,07/10/19 19:18,"585 Willow St, Austin, TX 73301" +223520,Lightning Charging Cable,1,14.95,07/18/19 13:50,"480 Center St, Los Angeles, CA 90001" +223521,AA Batteries (4-pack),1,3.84,07/15/19 16:06,"366 West St, Los Angeles, CA 90001" +223522,Lightning Charging Cable,1,14.95,07/02/19 11:21,"770 Dogwood St, Austin, TX 73301" +223523,Lightning Charging Cable,1,14.95,07/23/19 21:23,"381 Wilson St, San Francisco, CA 94016" +223524,Wired Headphones,2,11.99,07/14/19 18:24,"835 Dogwood St, San Francisco, CA 94016" +223525,Wired Headphones,1,11.99,07/11/19 09:18,"613 Washington St, San Francisco, CA 94016" +223526,AA Batteries (4-pack),1,3.84,07/27/19 18:26,"874 2nd St, Los Angeles, CA 90001" +223527,27in FHD Monitor,1,149.99,07/06/19 18:53,"288 9th St, Seattle, WA 98101" +223528,20in Monitor,1,109.99,07/31/19 19:06,"191 Dogwood St, Atlanta, GA 30301" +223529,AAA Batteries (4-pack),1,2.99,07/18/19 19:16,"55 Church St, New York City, NY 10001" +223530,Apple Airpods Headphones,1,150,07/05/19 12:31,"594 Washington St, Atlanta, GA 30301" +223531,AA Batteries (4-pack),1,3.84,07/29/19 20:21,"288 10th St, New York City, NY 10001" +223532,AAA Batteries (4-pack),2,2.99,07/21/19 14:20,"403 Hickory St, Portland, OR 97035" +223533,Flatscreen TV,1,300,07/21/19 08:04,"746 Highland St, San Francisco, CA 94016" +223534,Lightning Charging Cable,1,14.95,07/23/19 15:15,"259 Johnson St, San Francisco, CA 94016" +223535,USB-C Charging Cable,1,11.95,07/24/19 11:27,"735 South St, Boston, MA 02215" +223536,Apple Airpods Headphones,1,150,07/30/19 20:44,"138 Dogwood St, Portland, ME 04101" +223537,USB-C Charging Cable,1,11.95,07/10/19 20:32,"546 Lakeview St, Boston, MA 02215" +223538,Bose SoundSport Headphones,1,99.99,07/21/19 13:27,"554 Johnson St, San Francisco, CA 94016" +223539,USB-C Charging Cable,1,11.95,07/11/19 11:34,"166 8th St, Austin, TX 73301" +223540,USB-C Charging Cable,1,11.95,07/25/19 20:36,"278 12th St, San Francisco, CA 94016" +223541,Lightning Charging Cable,1,14.95,07/02/19 19:01,"531 South St, Boston, MA 02215" +223542,AAA Batteries (4-pack),1,2.99,07/21/19 17:33,"576 Lake St, Dallas, TX 75001" +223543,27in FHD Monitor,1,149.99,07/24/19 12:15,"142 Hill St, San Francisco, CA 94016" +223544,Bose SoundSport Headphones,1,99.99,07/22/19 19:44,"425 Hill St, Dallas, TX 75001" +223545,34in Ultrawide Monitor,1,379.99,07/01/19 21:19,"973 Main St, Portland, OR 97035" +223546,Google Phone,1,600,07/26/19 02:08,"823 Washington St, San Francisco, CA 94016" +223547,AAA Batteries (4-pack),1,2.99,07/11/19 14:39,"422 Park St, New York City, NY 10001" +223548,ThinkPad Laptop,1,999.99,07/10/19 13:02,"572 Lincoln St, Austin, TX 73301" +223549,Flatscreen TV,1,300,07/03/19 14:09,"350 Sunset St, Boston, MA 02215" +223550,Lightning Charging Cable,1,14.95,07/02/19 10:18,"287 13th St, San Francisco, CA 94016" +223551,ThinkPad Laptop,1,999.99,07/25/19 06:31,"511 Sunset St, San Francisco, CA 94016" +223552,Bose SoundSport Headphones,1,99.99,07/16/19 12:29,"263 Main St, New York City, NY 10001" +223553,AA Batteries (4-pack),1,3.84,07/01/19 22:33,"191 9th St, Seattle, WA 98101" +223554,AA Batteries (4-pack),1,3.84,07/19/19 23:03,"296 8th St, New York City, NY 10001" +223555,USB-C Charging Cable,1,11.95,07/16/19 14:17,"577 Cedar St, Seattle, WA 98101" +223556,Wired Headphones,1,11.99,07/28/19 09:22,"817 Maple St, Los Angeles, CA 90001" +223557,Macbook Pro Laptop,1,1700,07/17/19 22:48,"306 8th St, San Francisco, CA 94016" +223558,iPhone,1,700,07/17/19 14:26,"602 Washington St, Seattle, WA 98101" +223558,Lightning Charging Cable,1,14.95,07/17/19 14:26,"602 Washington St, Seattle, WA 98101" +223559,Apple Airpods Headphones,1,150,07/29/19 10:22,"35 Wilson St, Los Angeles, CA 90001" +223560,USB-C Charging Cable,1,11.95,07/16/19 17:16,"255 Walnut St, Atlanta, GA 30301" +223561,Lightning Charging Cable,1,14.95,07/30/19 19:41,"466 Jackson St, Los Angeles, CA 90001" +223562,Lightning Charging Cable,1,14.95,07/02/19 11:09,"802 South St, Los Angeles, CA 90001" +223563,34in Ultrawide Monitor,1,379.99,07/04/19 13:19,"960 Meadow St, San Francisco, CA 94016" +223564,27in 4K Gaming Monitor,1,389.99,07/31/19 12:23,"602 Forest St, New York City, NY 10001" +223565,AA Batteries (4-pack),1,3.84,07/06/19 16:04,"147 Wilson St, Los Angeles, CA 90001" +223566,Bose SoundSport Headphones,1,99.99,07/24/19 08:28,"416 Wilson St, Dallas, TX 75001" +223567,Lightning Charging Cable,1,14.95,07/20/19 22:32,"706 Willow St, Austin, TX 73301" +223568,Wired Headphones,1,11.99,07/01/19 15:56,"139 Forest St, Los Angeles, CA 90001" +223569,Lightning Charging Cable,1,14.95,07/11/19 14:11,"916 Forest St, Los Angeles, CA 90001" +223570,20in Monitor,1,109.99,07/23/19 19:21,"985 Jackson St, Boston, MA 02215" +223571,20in Monitor,1,109.99,07/03/19 17:48,"560 Chestnut St, San Francisco, CA 94016" +223572,Bose SoundSport Headphones,1,99.99,07/26/19 14:22,"756 Church St, San Francisco, CA 94016" +223573,AA Batteries (4-pack),3,3.84,07/09/19 19:54,"213 Hill St, Boston, MA 02215" +223574,Bose SoundSport Headphones,1,99.99,07/30/19 18:37,"451 Wilson St, Seattle, WA 98101" +223575,Wired Headphones,1,11.99,07/12/19 09:41,"559 Cherry St, Los Angeles, CA 90001" +223575,Apple Airpods Headphones,1,150,07/12/19 09:41,"559 Cherry St, Los Angeles, CA 90001" +223576,AA Batteries (4-pack),2,3.84,07/05/19 05:33,"311 Dogwood St, San Francisco, CA 94016" +223577,USB-C Charging Cable,1,11.95,07/20/19 11:48,"753 14th St, New York City, NY 10001" +223578,AAA Batteries (4-pack),1,2.99,07/10/19 17:41,"988 1st St, San Francisco, CA 94016" +223579,20in Monitor,1,109.99,07/10/19 11:00,"176 Lincoln St, Boston, MA 02215" +223580,34in Ultrawide Monitor,1,379.99,07/20/19 13:17,"932 12th St, San Francisco, CA 94016" +223581,AAA Batteries (4-pack),3,2.99,07/12/19 06:24,"23 Jackson St, Boston, MA 02215" +223582,USB-C Charging Cable,1,11.95,07/23/19 13:29,"133 12th St, San Francisco, CA 94016" +223583,Bose SoundSport Headphones,1,99.99,07/27/19 13:12,"124 Lake St, San Francisco, CA 94016" +223584,AAA Batteries (4-pack),2,2.99,07/22/19 21:27,"948 Hill St, Los Angeles, CA 90001" +223585,Wired Headphones,1,11.99,07/18/19 11:01,"627 Church St, New York City, NY 10001" +223586,Apple Airpods Headphones,1,150,07/31/19 12:53,"352 Walnut St, Portland, OR 97035" +223587,USB-C Charging Cable,1,11.95,07/09/19 13:44,"861 Sunset St, Atlanta, GA 30301" +223588,Bose SoundSport Headphones,1,99.99,07/27/19 11:37,"760 Highland St, Atlanta, GA 30301" +223589,USB-C Charging Cable,1,11.95,07/08/19 12:53,"573 13th St, Boston, MA 02215" +223590,ThinkPad Laptop,1,999.99,07/23/19 10:17,"536 Chestnut St, Dallas, TX 75001" +223591,20in Monitor,1,109.99,07/07/19 10:59,"236 Hill St, San Francisco, CA 94016" +223591,Google Phone,1,600,07/07/19 10:59,"236 Hill St, San Francisco, CA 94016" +223592,Wired Headphones,1,11.99,07/29/19 13:00,"518 Cherry St, Los Angeles, CA 90001" +223593,ThinkPad Laptop,1,999.99,07/30/19 23:29,"267 Cherry St, Austin, TX 73301" +223594,Wired Headphones,1,11.99,07/18/19 14:09,"639 Maple St, Austin, TX 73301" +223595,AAA Batteries (4-pack),2,2.99,07/20/19 01:21,"390 Main St, Austin, TX 73301" +223596,AA Batteries (4-pack),1,3.84,07/05/19 16:00,"971 Pine St, San Francisco, CA 94016" +223597,Apple Airpods Headphones,1,150,07/14/19 13:35,"196 Church St, Boston, MA 02215" +223598,USB-C Charging Cable,1,11.95,07/02/19 10:04,"791 Hickory St, San Francisco, CA 94016" +223599,Apple Airpods Headphones,1,150,07/07/19 16:08,"891 Wilson St, Boston, MA 02215" +223600,Apple Airpods Headphones,1,150,07/28/19 12:13,"845 14th St, San Francisco, CA 94016" +223601,iPhone,1,700,07/11/19 21:08,"183 Hickory St, Boston, MA 02215" +223602,Wired Headphones,1,11.99,07/04/19 13:27,"872 Meadow St, Los Angeles, CA 90001" +223603,Lightning Charging Cable,1,14.95,07/05/19 13:18,"317 Chestnut St, Los Angeles, CA 90001" +223604,Wired Headphones,1,11.99,07/26/19 17:57,"826 Hill St, Seattle, WA 98101" +223605,USB-C Charging Cable,1,11.95,07/13/19 11:38,"536 Center St, Dallas, TX 75001" +223606,34in Ultrawide Monitor,1,379.99,07/03/19 17:45,"688 Cherry St, San Francisco, CA 94016" +223607,Apple Airpods Headphones,1,150,07/15/19 21:59,"411 14th St, San Francisco, CA 94016" +223608,Lightning Charging Cable,1,14.95,07/09/19 18:00,"639 11th St, Boston, MA 02215" +223609,USB-C Charging Cable,1,11.95,07/17/19 15:56,"80 6th St, Los Angeles, CA 90001" +223610,USB-C Charging Cable,1,11.95,07/31/19 11:44,"110 Dogwood St, Los Angeles, CA 90001" +223611,AAA Batteries (4-pack),1,2.99,07/23/19 19:14,"438 11th St, Los Angeles, CA 90001" +223612,USB-C Charging Cable,2,11.95,07/10/19 10:01,"374 Lake St, San Francisco, CA 94016" +223613,AA Batteries (4-pack),1,3.84,07/06/19 23:48,"873 Elm St, San Francisco, CA 94016" +223614,Wired Headphones,1,11.99,07/16/19 19:31,"880 River St, Boston, MA 02215" +223615,AAA Batteries (4-pack),1,2.99,07/20/19 14:23,"170 Lakeview St, Seattle, WA 98101" +223616,USB-C Charging Cable,1,11.95,07/15/19 19:37,"779 Lincoln St, Austin, TX 73301" +223617,34in Ultrawide Monitor,1,379.99,07/21/19 11:09,"928 West St, Dallas, TX 75001" +223618,Bose SoundSport Headphones,1,99.99,07/02/19 22:32,"955 Church St, Boston, MA 02215" +223619,AA Batteries (4-pack),2,3.84,07/15/19 19:44,"539 Hickory St, San Francisco, CA 94016" +223620,Vareebadd Phone,1,400,07/06/19 08:24,"827 Wilson St, Austin, TX 73301" +223620,USB-C Charging Cable,2,11.95,07/06/19 08:24,"827 Wilson St, Austin, TX 73301" +223621,27in FHD Monitor,1,149.99,07/02/19 12:29,"894 13th St, New York City, NY 10001" +223622,Wired Headphones,1,11.99,07/02/19 14:20,"631 11th St, San Francisco, CA 94016" +223623,34in Ultrawide Monitor,1,379.99,07/01/19 17:31,"963 Jefferson St, San Francisco, CA 94016" +223624,AAA Batteries (4-pack),1,2.99,07/25/19 15:34,"597 Forest St, Portland, OR 97035" +223625,AAA Batteries (4-pack),1,2.99,07/07/19 08:24,"125 Pine St, San Francisco, CA 94016" +223626,Apple Airpods Headphones,1,150,07/08/19 15:33,"986 13th St, San Francisco, CA 94016" +223627,Apple Airpods Headphones,1,150,07/19/19 16:02,"828 Wilson St, San Francisco, CA 94016" +223627,Lightning Charging Cable,1,14.95,07/19/19 16:02,"828 Wilson St, San Francisco, CA 94016" +223628,34in Ultrawide Monitor,1,379.99,07/07/19 23:02,"127 River St, Los Angeles, CA 90001" +223629,20in Monitor,1,109.99,07/17/19 13:00,"449 1st St, New York City, NY 10001" +223630,Flatscreen TV,1,300,07/21/19 08:19,"144 Forest St, San Francisco, CA 94016" +223631,27in FHD Monitor,1,149.99,07/15/19 01:27,"382 9th St, Atlanta, GA 30301" +223632,USB-C Charging Cable,1,11.95,07/21/19 21:22,"415 5th St, Portland, OR 97035" +223633,AAA Batteries (4-pack),4,2.99,07/20/19 17:38,"843 South St, Boston, MA 02215" +223634,Wired Headphones,1,11.99,07/26/19 08:16,"719 South St, Los Angeles, CA 90001" +223635,AAA Batteries (4-pack),1,2.99,07/07/19 14:27,"959 11th St, Portland, ME 04101" +223636,AAA Batteries (4-pack),4,2.99,07/07/19 12:53,"50 Cherry St, Los Angeles, CA 90001" +223637,USB-C Charging Cable,1,11.95,07/19/19 10:13,"176 Johnson St, Dallas, TX 75001" +223638,Lightning Charging Cable,1,14.95,07/21/19 19:08,"656 Pine St, Portland, ME 04101" +223639,USB-C Charging Cable,1,11.95,07/22/19 20:26,"555 Forest St, Los Angeles, CA 90001" +223640,34in Ultrawide Monitor,1,379.99,07/13/19 10:32,"925 Spruce St, New York City, NY 10001" +223641,AAA Batteries (4-pack),3,2.99,07/22/19 19:46,"903 Pine St, Los Angeles, CA 90001" +223641,AA Batteries (4-pack),3,3.84,07/22/19 19:46,"903 Pine St, Los Angeles, CA 90001" +223642,USB-C Charging Cable,1,11.95,07/26/19 22:22,"404 Hickory St, Atlanta, GA 30301" +223643,Lightning Charging Cable,1,14.95,07/13/19 16:12,"307 Walnut St, New York City, NY 10001" +223644,AA Batteries (4-pack),1,3.84,07/08/19 20:48,"468 4th St, Los Angeles, CA 90001" +223645,Wired Headphones,1,11.99,07/10/19 17:16,"683 Madison St, Atlanta, GA 30301" +223646,Bose SoundSport Headphones,1,99.99,07/01/19 10:31,"21 Lakeview St, Dallas, TX 75001" +223647,27in 4K Gaming Monitor,1,389.99,07/22/19 19:13,"535 Pine St, New York City, NY 10001" +223648,27in 4K Gaming Monitor,1,389.99,07/26/19 12:43,"993 7th St, Austin, TX 73301" +223649,Bose SoundSport Headphones,1,99.99,07/03/19 11:09,"134 1st St, New York City, NY 10001" +223650,Flatscreen TV,1,300,07/17/19 00:02,"615 Jackson St, Boston, MA 02215" +223651,AAA Batteries (4-pack),1,2.99,07/09/19 15:26,"698 12th St, Austin, TX 73301" +223652,iPhone,1,700,07/04/19 13:28,"280 Willow St, Boston, MA 02215" +223652,Lightning Charging Cable,3,14.95,07/04/19 13:28,"280 Willow St, Boston, MA 02215" +223653,AAA Batteries (4-pack),3,2.99,07/18/19 16:12,"43 Main St, Los Angeles, CA 90001" +223654,Apple Airpods Headphones,1,150,07/14/19 15:33,"596 Pine St, Seattle, WA 98101" +223655,AAA Batteries (4-pack),1,2.99,07/04/19 12:13,"437 Main St, Atlanta, GA 30301" +223656,Lightning Charging Cable,1,14.95,07/10/19 11:41,"743 Hickory St, Boston, MA 02215" +223657,AAA Batteries (4-pack),1,2.99,07/10/19 20:43,"560 Jackson St, Austin, TX 73301" +223658,Apple Airpods Headphones,1,150,07/30/19 12:54,"940 South St, Los Angeles, CA 90001" +223659,20in Monitor,1,109.99,07/27/19 17:37,"917 North St, Los Angeles, CA 90001" +223660,Flatscreen TV,1,300,07/15/19 10:22,"163 Church St, Atlanta, GA 30301" +223661,Flatscreen TV,1,300,07/27/19 09:00,"643 Washington St, San Francisco, CA 94016" +223662,AA Batteries (4-pack),3,3.84,07/20/19 10:14,"80 Hickory St, Boston, MA 02215" +223663,USB-C Charging Cable,1,11.95,07/24/19 11:03,"134 Elm St, Boston, MA 02215" +223664,Wired Headphones,1,11.99,07/05/19 20:48,"887 Lincoln St, Dallas, TX 75001" +223665,USB-C Charging Cable,1,11.95,07/22/19 16:44,"276 Hill St, Seattle, WA 98101" +223666,27in FHD Monitor,1,149.99,07/01/19 20:32,"387 1st St, San Francisco, CA 94016" +223667,Apple Airpods Headphones,1,150,07/17/19 13:33,"592 Elm St, New York City, NY 10001" +223668,iPhone,1,700,07/13/19 22:52,"536 11th St, Dallas, TX 75001" +223668,Wired Headphones,1,11.99,07/13/19 22:52,"536 11th St, Dallas, TX 75001" +223669,AAA Batteries (4-pack),1,2.99,07/10/19 19:34,"427 Main St, San Francisco, CA 94016" +223670,Google Phone,1,600,07/09/19 09:34,"816 Wilson St, San Francisco, CA 94016" +223671,AA Batteries (4-pack),1,3.84,07/04/19 05:47,"498 Main St, San Francisco, CA 94016" +223672,27in FHD Monitor,1,149.99,07/28/19 22:21,"369 Walnut St, New York City, NY 10001" +223673,Wired Headphones,1,11.99,07/12/19 22:33,"531 Forest St, Los Angeles, CA 90001" +223674,Bose SoundSport Headphones,1,99.99,07/02/19 13:17,"543 1st St, Portland, OR 97035" +223675,Flatscreen TV,1,300,07/02/19 14:14,"496 Madison St, Los Angeles, CA 90001" +223676,AA Batteries (4-pack),1,3.84,07/09/19 10:16,"215 Highland St, Boston, MA 02215" +223677,AA Batteries (4-pack),1,3.84,07/07/19 20:58,"66 10th St, Seattle, WA 98101" +223678,Wired Headphones,1,11.99,07/29/19 19:34,"988 Ridge St, Los Angeles, CA 90001" +223679,Wired Headphones,2,11.99,07/01/19 12:29,"737 Church St, Atlanta, GA 30301" +223680,Flatscreen TV,1,300,07/06/19 23:35,"73 Jefferson St, Seattle, WA 98101" +223681,USB-C Charging Cable,2,11.95,07/01/19 18:58,"499 Park St, San Francisco, CA 94016" +223682,ThinkPad Laptop,1,999.99,07/13/19 05:57,"567 7th St, Los Angeles, CA 90001" +223683,AAA Batteries (4-pack),1,2.99,07/28/19 10:09,"148 Spruce St, San Francisco, CA 94016" +223684,Google Phone,1,600,07/15/19 12:40,"907 1st St, Seattle, WA 98101" +223685,Flatscreen TV,1,300,07/07/19 16:34,"629 6th St, San Francisco, CA 94016" +223686,27in FHD Monitor,1,149.99,07/01/19 18:07,"821 North St, San Francisco, CA 94016" +223687,Bose SoundSport Headphones,1,99.99,07/16/19 10:06,"465 Meadow St, New York City, NY 10001" +223688,iPhone,1,700,07/01/19 08:06,"255 11th St, San Francisco, CA 94016" +223688,Lightning Charging Cable,1,14.95,07/01/19 08:06,"255 11th St, San Francisco, CA 94016" +223689,AAA Batteries (4-pack),1,2.99,07/23/19 17:03,"764 South St, Dallas, TX 75001" +223690,Apple Airpods Headphones,1,150,07/04/19 16:58,"698 12th St, Seattle, WA 98101" +223691,Lightning Charging Cable,2,14.95,07/09/19 21:00,"618 8th St, New York City, NY 10001" +223692,Vareebadd Phone,1,400,07/08/19 16:10,"675 Walnut St, Boston, MA 02215" +223693,Wired Headphones,1,11.99,07/19/19 17:14,"24 Adams St, Portland, OR 97035" +223694,Bose SoundSport Headphones,1,99.99,07/06/19 17:37,"674 Highland St, Dallas, TX 75001" +223695,USB-C Charging Cable,2,11.95,07/09/19 18:34,"729 Highland St, Seattle, WA 98101" +223696,AA Batteries (4-pack),2,3.84,07/19/19 22:31,"570 Sunset St, San Francisco, CA 94016" +223697,Lightning Charging Cable,1,14.95,07/03/19 21:49,"348 11th St, Los Angeles, CA 90001" +223698,Apple Airpods Headphones,1,150,07/02/19 01:25,"476 Lakeview St, San Francisco, CA 94016" +223699,AA Batteries (4-pack),2,3.84,07/16/19 12:02,"93 Pine St, Dallas, TX 75001" +223700,Apple Airpods Headphones,1,150,07/27/19 08:16,"107 Madison St, New York City, NY 10001" +223701,34in Ultrawide Monitor,1,379.99,07/31/19 11:52,"373 Park St, New York City, NY 10001" +223702,Wired Headphones,2,11.99,07/01/19 13:06,"587 Wilson St, San Francisco, CA 94016" +223703,AA Batteries (4-pack),2,3.84,07/03/19 08:09,"325 Jackson St, Atlanta, GA 30301" +223704,Apple Airpods Headphones,1,150,07/25/19 12:26,"690 Wilson St, Dallas, TX 75001" +223705,Apple Airpods Headphones,1,150,07/05/19 14:02,"767 Adams St, Boston, MA 02215" +223706,USB-C Charging Cable,1,11.95,07/18/19 11:30,"14 Maple St, Seattle, WA 98101" +223707,Lightning Charging Cable,1,14.95,07/24/19 14:08,"96 5th St, San Francisco, CA 94016" +223708,AAA Batteries (4-pack),2,2.99,07/13/19 22:30,"46 11th St, Portland, OR 97035" +223709,AAA Batteries (4-pack),1,2.99,07/24/19 19:51,"191 9th St, Los Angeles, CA 90001" +223710,27in FHD Monitor,1,149.99,07/28/19 20:00,"985 11th St, New York City, NY 10001" +223711,Lightning Charging Cable,1,14.95,07/12/19 20:32,"875 Park St, Boston, MA 02215" +223712,AA Batteries (4-pack),1,3.84,07/24/19 20:17,"437 Adams St, New York City, NY 10001" +223713,Bose SoundSport Headphones,1,99.99,07/20/19 15:44,"323 Lincoln St, San Francisco, CA 94016" +223714,Wired Headphones,1,11.99,07/25/19 20:51,"207 Hill St, Portland, OR 97035" +223715,USB-C Charging Cable,1,11.95,07/24/19 14:28,"381 Spruce St, San Francisco, CA 94016" +223716,20in Monitor,1,109.99,07/09/19 19:52,"401 Hill St, Atlanta, GA 30301" +223717,Wired Headphones,1,11.99,07/09/19 21:16,"613 Adams St, Boston, MA 02215" +223718,iPhone,1,700,07/28/19 13:33,"725 Jackson St, Boston, MA 02215" +223719,Lightning Charging Cable,1,14.95,07/26/19 19:01,"466 Jefferson St, San Francisco, CA 94016" +223720,Lightning Charging Cable,1,14.95,07/26/19 22:30,"648 Hickory St, Seattle, WA 98101" +223721,27in FHD Monitor,1,149.99,07/14/19 22:14,"62 4th St, Seattle, WA 98101" +223722,Apple Airpods Headphones,1,150,07/22/19 22:13,"595 Ridge St, Dallas, TX 75001" +223723,Google Phone,1,600,07/22/19 18:09,"317 Jackson St, New York City, NY 10001" +223724,AA Batteries (4-pack),1,3.84,07/04/19 11:25,"31 Main St, Dallas, TX 75001" +223725,iPhone,1,700,07/27/19 17:22,"520 Adams St, Los Angeles, CA 90001" +223726,AA Batteries (4-pack),1,3.84,07/24/19 13:08,"486 West St, Seattle, WA 98101" +223727,USB-C Charging Cable,1,11.95,07/15/19 11:06,"827 Lake St, San Francisco, CA 94016" +223728,USB-C Charging Cable,1,11.95,07/07/19 18:06,"80 Ridge St, Portland, ME 04101" +223729,Flatscreen TV,1,300,07/14/19 18:46,"104 Jefferson St, San Francisco, CA 94016" +223730,Google Phone,1,600,07/13/19 13:39,"490 Sunset St, Seattle, WA 98101" +223731,Macbook Pro Laptop,1,1700,07/23/19 00:29,"339 10th St, Seattle, WA 98101" +223732,AA Batteries (4-pack),3,3.84,07/18/19 19:18,"578 Pine St, San Francisco, CA 94016" +223733,Google Phone,1,600,07/29/19 14:00,"555 Cedar St, San Francisco, CA 94016" +223734,Macbook Pro Laptop,1,1700,07/24/19 05:51,"152 Wilson St, New York City, NY 10001" +223734,LG Dryer,1,600.0,07/24/19 05:51,"152 Wilson St, New York City, NY 10001" +223735,AAA Batteries (4-pack),5,2.99,07/25/19 20:13,"436 4th St, Dallas, TX 75001" +223736,Lightning Charging Cable,1,14.95,07/29/19 08:01,"450 Highland St, New York City, NY 10001" +223737,Lightning Charging Cable,1,14.95,07/23/19 19:34,"963 2nd St, New York City, NY 10001" +223738,Macbook Pro Laptop,1,1700,07/06/19 17:26,"250 Chestnut St, San Francisco, CA 94016" +223739,Bose SoundSport Headphones,1,99.99,07/30/19 11:27,"525 Cherry St, Boston, MA 02215" +223740,Google Phone,1,600,07/25/19 22:30,"793 8th St, Dallas, TX 75001" +223741,20in Monitor,1,109.99,07/31/19 13:51,"208 Chestnut St, New York City, NY 10001" +223742,iPhone,1,700,07/10/19 16:49,"675 Pine St, San Francisco, CA 94016" +223742,Lightning Charging Cable,2,14.95,07/10/19 16:49,"675 Pine St, San Francisco, CA 94016" +223743,USB-C Charging Cable,2,11.95,07/27/19 22:33,"174 Cedar St, New York City, NY 10001" +223744,Bose SoundSport Headphones,1,99.99,07/09/19 08:20,"994 5th St, Atlanta, GA 30301" +223745,USB-C Charging Cable,1,11.95,07/12/19 17:28,"715 North St, Austin, TX 73301" +223746,AA Batteries (4-pack),1,3.84,07/11/19 11:35,"672 Center St, San Francisco, CA 94016" +223747,Wired Headphones,1,11.99,07/11/19 08:12,"436 Maple St, Atlanta, GA 30301" +223748,USB-C Charging Cable,1,11.95,07/22/19 20:03,"183 Park St, Los Angeles, CA 90001" +223749,Lightning Charging Cable,1,14.95,07/10/19 17:50,"906 Spruce St, Austin, TX 73301" +223750,iPhone,1,700,07/26/19 12:46,"967 Walnut St, Los Angeles, CA 90001" +223751,AA Batteries (4-pack),2,3.84,07/03/19 23:27,"314 Sunset St, Dallas, TX 75001" +223752,Macbook Pro Laptop,1,1700,07/30/19 21:41,"26 Main St, Atlanta, GA 30301" +223753,Lightning Charging Cable,1,14.95,07/03/19 18:55,"984 2nd St, New York City, NY 10001" +223754,Wired Headphones,1,11.99,07/09/19 10:23,"871 Willow St, Portland, OR 97035" +223755,Apple Airpods Headphones,1,150,07/17/19 13:37,"359 9th St, Atlanta, GA 30301" +223756,27in 4K Gaming Monitor,1,389.99,07/22/19 17:25,"917 11th St, Boston, MA 02215" +223757,20in Monitor,1,109.99,07/13/19 13:02,"191 13th St, Atlanta, GA 30301" +223758,USB-C Charging Cable,1,11.95,07/21/19 22:32,"980 South St, San Francisco, CA 94016" +223759,Apple Airpods Headphones,1,150,07/03/19 12:40,"34 Elm St, Austin, TX 73301" +223760,Wired Headphones,1,11.99,07/20/19 14:49,"816 Ridge St, San Francisco, CA 94016" +223761,AAA Batteries (4-pack),1,2.99,07/09/19 01:03,"937 9th St, Portland, OR 97035" +223762,Lightning Charging Cable,1,14.95,07/17/19 23:44,"662 Spruce St, Los Angeles, CA 90001" +223763,Lightning Charging Cable,1,14.95,07/09/19 20:55,"932 Highland St, Seattle, WA 98101" +223764,Apple Airpods Headphones,1,150,07/21/19 17:29,"528 Park St, Portland, ME 04101" +223765,Lightning Charging Cable,1,14.95,07/29/19 17:42,"879 Adams St, Los Angeles, CA 90001" +223766,USB-C Charging Cable,1,11.95,07/04/19 21:13,"883 6th St, New York City, NY 10001" +223767,Wired Headphones,1,11.99,07/24/19 15:46,"908 Spruce St, Portland, OR 97035" +223768,AAA Batteries (4-pack),1,2.99,07/10/19 18:52,"980 Willow St, Los Angeles, CA 90001" +223769,Vareebadd Phone,1,400,07/26/19 12:49,"74 Spruce St, Los Angeles, CA 90001" +223770,34in Ultrawide Monitor,1,379.99,07/16/19 10:31,"329 2nd St, Los Angeles, CA 90001" +223771,34in Ultrawide Monitor,1,379.99,07/13/19 12:21,"686 Cedar St, Dallas, TX 75001" +223772,Flatscreen TV,1,300,07/15/19 07:38,"349 Pine St, Boston, MA 02215" +223773,27in FHD Monitor,1,149.99,07/18/19 06:34,"341 11th St, San Francisco, CA 94016" +223774,AAA Batteries (4-pack),2,2.99,07/04/19 17:41,"43 Adams St, San Francisco, CA 94016" +223775,iPhone,1,700,07/22/19 17:57,"332 4th St, New York City, NY 10001" +223776,USB-C Charging Cable,1,11.95,07/16/19 17:23,"706 Cedar St, New York City, NY 10001" +223777,Bose SoundSport Headphones,1,99.99,07/04/19 12:18,"792 Hickory St, Seattle, WA 98101" +223777,Apple Airpods Headphones,1,150,07/04/19 12:18,"792 Hickory St, Seattle, WA 98101" +223778,34in Ultrawide Monitor,1,379.99,07/11/19 14:02,"861 Meadow St, Austin, TX 73301" +223779,AAA Batteries (4-pack),1,2.99,07/30/19 21:22,"761 West St, Boston, MA 02215" +223780,27in 4K Gaming Monitor,1,389.99,07/24/19 20:18,"779 4th St, Los Angeles, CA 90001" +223781,USB-C Charging Cable,1,11.95,07/28/19 14:07,"625 Elm St, New York City, NY 10001" +223782,Lightning Charging Cable,1,14.95,07/08/19 08:02,"612 Walnut St, San Francisco, CA 94016" +223783,USB-C Charging Cable,1,11.95,07/19/19 10:02,"616 Maple St, Atlanta, GA 30301" +223784,AAA Batteries (4-pack),3,2.99,07/27/19 17:33,"339 Maple St, New York City, NY 10001" +223785,Lightning Charging Cable,1,14.95,07/07/19 15:36,"849 10th St, San Francisco, CA 94016" +223786,Flatscreen TV,1,300,07/14/19 06:21,"492 South St, Atlanta, GA 30301" +223787,27in 4K Gaming Monitor,1,389.99,07/29/19 11:59,"966 Madison St, New York City, NY 10001" +223788,USB-C Charging Cable,1,11.95,07/24/19 11:31,"376 Jefferson St, Atlanta, GA 30301" +223789,Flatscreen TV,1,300,07/14/19 10:31,"899 Ridge St, San Francisco, CA 94016" +223790,Bose SoundSport Headphones,1,99.99,07/21/19 00:32,"133 Lakeview St, Seattle, WA 98101" +223791,Bose SoundSport Headphones,1,99.99,07/23/19 00:09,"481 Chestnut St, Atlanta, GA 30301" +223792,Lightning Charging Cable,1,14.95,07/16/19 08:00,"833 Hickory St, Portland, OR 97035" +223793,USB-C Charging Cable,1,11.95,07/05/19 02:21,"439 Lincoln St, New York City, NY 10001" +223794,Lightning Charging Cable,1,14.95,07/17/19 19:06,"998 11th St, Atlanta, GA 30301" +223795,Bose SoundSport Headphones,1,99.99,07/07/19 05:41,"726 Cedar St, New York City, NY 10001" +223796,20in Monitor,1,109.99,07/12/19 15:11,"208 Highland St, Los Angeles, CA 90001" +223797,AA Batteries (4-pack),2,3.84,07/26/19 23:37,"104 Dogwood St, Los Angeles, CA 90001" +223798,USB-C Charging Cable,1,11.95,07/28/19 10:14,"603 2nd St, Austin, TX 73301" +223799,AA Batteries (4-pack),1,3.84,07/16/19 07:44,"335 6th St, Dallas, TX 75001" +223800,USB-C Charging Cable,1,11.95,07/22/19 15:11,"706 Lincoln St, San Francisco, CA 94016" +223801,Apple Airpods Headphones,1,150,07/01/19 11:26,"318 Lincoln St, Boston, MA 02215" +223802,AA Batteries (4-pack),1,3.84,07/16/19 20:34,"815 8th St, Boston, MA 02215" +223803,Apple Airpods Headphones,1,150,07/26/19 21:38,"842 Park St, San Francisco, CA 94016" +223804,34in Ultrawide Monitor,1,379.99,07/26/19 14:31,"608 Washington St, San Francisco, CA 94016" +223805,Wired Headphones,1,11.99,07/17/19 12:30,"612 Adams St, San Francisco, CA 94016" +223806,Wired Headphones,1,11.99,07/14/19 08:20,"326 Washington St, Portland, OR 97035" +223807,USB-C Charging Cable,1,11.95,07/31/19 19:35,"335 10th St, San Francisco, CA 94016" +223808,ThinkPad Laptop,1,999.99,07/29/19 14:38,"158 Willow St, New York City, NY 10001" +223809,Lightning Charging Cable,1,14.95,07/13/19 13:23,"132 Washington St, Los Angeles, CA 90001" +223810,34in Ultrawide Monitor,1,379.99,07/06/19 18:29,"435 Highland St, Austin, TX 73301" +223811,Macbook Pro Laptop,1,1700,07/01/19 18:38,"978 Jefferson St, New York City, NY 10001" +223812,Apple Airpods Headphones,1,150,07/27/19 11:05,"260 Pine St, New York City, NY 10001" +223813,USB-C Charging Cable,1,11.95,07/30/19 18:49,"520 Dogwood St, Boston, MA 02215" +223814,Bose SoundSport Headphones,1,99.99,07/14/19 14:47,"68 Sunset St, Portland, OR 97035" +223815,20in Monitor,1,109.99,07/09/19 17:32,"463 Wilson St, Atlanta, GA 30301" +223816,AAA Batteries (4-pack),2,2.99,07/08/19 16:27,"579 Center St, San Francisco, CA 94016" +223817,Macbook Pro Laptop,1,1700,07/13/19 16:17,"939 Park St, Boston, MA 02215" +223818,Bose SoundSport Headphones,1,99.99,07/27/19 17:30,"338 Highland St, Los Angeles, CA 90001" +223819,ThinkPad Laptop,1,999.99,07/09/19 23:11,"917 Lake St, Boston, MA 02215" +,,,,, +223820,Bose SoundSport Headphones,1,99.99,07/08/19 05:37,"843 Cherry St, Seattle, WA 98101" +223821,20in Monitor,1,109.99,07/26/19 15:07,"516 Dogwood St, Los Angeles, CA 90001" +223822,27in FHD Monitor,1,149.99,07/27/19 09:51,"72 9th St, Dallas, TX 75001" +223823,USB-C Charging Cable,1,11.95,07/31/19 12:54,"257 9th St, New York City, NY 10001" +223824,AA Batteries (4-pack),1,3.84,07/06/19 08:11,"994 Ridge St, Los Angeles, CA 90001" +223825,Bose SoundSport Headphones,1,99.99,07/27/19 09:01,"913 Park St, Atlanta, GA 30301" +223826,Lightning Charging Cable,1,14.95,07/22/19 13:01,"743 River St, Boston, MA 02215" +223827,AA Batteries (4-pack),1,3.84,07/21/19 16:46,"62 River St, San Francisco, CA 94016" +223828,USB-C Charging Cable,1,11.95,07/11/19 19:04,"392 Walnut St, Dallas, TX 75001" +223829,Apple Airpods Headphones,1,150,07/11/19 10:01,"298 7th St, New York City, NY 10001" +223830,USB-C Charging Cable,1,11.95,07/31/19 17:13,"250 Sunset St, Dallas, TX 75001" +223831,AA Batteries (4-pack),1,3.84,07/13/19 10:39,"371 Elm St, Dallas, TX 75001" +223832,34in Ultrawide Monitor,1,379.99,07/22/19 20:26,"428 South St, Boston, MA 02215" +223833,27in 4K Gaming Monitor,1,389.99,07/28/19 15:23,"384 Elm St, Los Angeles, CA 90001" +223834,Wired Headphones,1,11.99,07/24/19 00:21,"636 Jackson St, Dallas, TX 75001" +223835,USB-C Charging Cable,1,11.95,07/19/19 23:33,"522 Spruce St, Seattle, WA 98101" +223836,ThinkPad Laptop,1,999.99,07/04/19 19:25,"344 Lincoln St, Seattle, WA 98101" +223837,Apple Airpods Headphones,1,150,07/09/19 13:56,"852 10th St, Dallas, TX 75001" +223838,AAA Batteries (4-pack),1,2.99,07/09/19 09:51,"302 Lake St, San Francisco, CA 94016" +223839,Apple Airpods Headphones,1,150,07/22/19 12:16,"582 2nd St, Dallas, TX 75001" +223840,AAA Batteries (4-pack),1,2.99,07/16/19 09:01,"529 4th St, Atlanta, GA 30301" +223841,27in FHD Monitor,1,149.99,07/17/19 11:52,"137 Willow St, Austin, TX 73301" +223842,27in 4K Gaming Monitor,1,389.99,07/11/19 14:36,"426 1st St, Los Angeles, CA 90001" +223842,Lightning Charging Cable,1,14.95,07/11/19 14:36,"426 1st St, Los Angeles, CA 90001" +223843,34in Ultrawide Monitor,1,379.99,07/28/19 19:16,"495 10th St, Boston, MA 02215" +223844,Lightning Charging Cable,2,14.95,07/22/19 21:24,"985 Hill St, Los Angeles, CA 90001" +223845,Bose SoundSport Headphones,1,99.99,07/17/19 12:08,"70 Meadow St, Dallas, TX 75001" +223846,Bose SoundSport Headphones,1,99.99,07/04/19 14:29,"305 Church St, New York City, NY 10001" +223847,ThinkPad Laptop,1,999.99,07/28/19 00:13,"987 Sunset St, San Francisco, CA 94016" +223848,AAA Batteries (4-pack),2,2.99,07/05/19 11:56,"715 Lincoln St, Atlanta, GA 30301" +223849,Bose SoundSport Headphones,2,99.99,07/18/19 17:03,"470 Jefferson St, Boston, MA 02215" +223850,Apple Airpods Headphones,2,150,07/05/19 12:07,"216 Elm St, Boston, MA 02215" +223851,AA Batteries (4-pack),1,3.84,07/09/19 16:45,"876 Johnson St, Portland, OR 97035" +223852,34in Ultrawide Monitor,1,379.99,07/23/19 11:42,"611 Washington St, Atlanta, GA 30301" +223853,AAA Batteries (4-pack),1,2.99,07/29/19 10:33,"844 Jackson St, Seattle, WA 98101" +223854,AA Batteries (4-pack),1,3.84,07/19/19 11:11,"808 Meadow St, New York City, NY 10001" +223855,AA Batteries (4-pack),1,3.84,07/23/19 18:49,"805 Main St, Los Angeles, CA 90001" +223856,iPhone,1,700,08/01/19 01:47,"440 Church St, Atlanta, GA 30301" +223857,Apple Airpods Headphones,1,150,07/29/19 11:56,"126 14th St, San Francisco, CA 94016" +223858,Lightning Charging Cable,1,14.95,07/10/19 11:47,"170 Lincoln St, Atlanta, GA 30301" +223858,27in 4K Gaming Monitor,1,389.99,07/10/19 11:47,"170 Lincoln St, Atlanta, GA 30301" +223859,Wired Headphones,1,11.99,07/15/19 01:51,"773 North St, San Francisco, CA 94016" +223860,ThinkPad Laptop,1,999.99,07/16/19 00:12,"727 10th St, San Francisco, CA 94016" +223861,AA Batteries (4-pack),3,3.84,07/13/19 21:59,"107 Lakeview St, San Francisco, CA 94016" +223862,AAA Batteries (4-pack),3,2.99,07/08/19 11:08,"405 Walnut St, Los Angeles, CA 90001" +223863,iPhone,1,700,07/21/19 16:30,"468 Elm St, New York City, NY 10001" +223863,Lightning Charging Cable,1,14.95,07/21/19 16:30,"468 Elm St, New York City, NY 10001" +223864,AA Batteries (4-pack),1,3.84,07/25/19 18:13,"437 Washington St, Seattle, WA 98101" +223865,Lightning Charging Cable,1,14.95,07/21/19 21:44,"137 Walnut St, San Francisco, CA 94016" +223866,USB-C Charging Cable,2,11.95,07/09/19 15:13,"279 Maple St, San Francisco, CA 94016" +223867,Apple Airpods Headphones,1,150,07/15/19 16:46,"970 Washington St, Atlanta, GA 30301" +223868,Google Phone,1,600,07/18/19 10:07,"423 Maple St, Seattle, WA 98101" +223868,USB-C Charging Cable,1,11.95,07/18/19 10:07,"423 Maple St, Seattle, WA 98101" +223869,Wired Headphones,1,11.99,07/09/19 11:20,"664 Wilson St, San Francisco, CA 94016" +223870,Apple Airpods Headphones,1,150,07/22/19 12:32,"985 Main St, Los Angeles, CA 90001" +223871,Lightning Charging Cable,1,14.95,07/15/19 19:43,"326 14th St, Dallas, TX 75001" +223872,Lightning Charging Cable,1,14.95,07/11/19 13:39,"844 Cherry St, San Francisco, CA 94016" +223873,AAA Batteries (4-pack),1,2.99,07/04/19 14:35,"621 Main St, Seattle, WA 98101" +223874,Apple Airpods Headphones,1,150,07/05/19 17:37,"868 8th St, San Francisco, CA 94016" +223875,AA Batteries (4-pack),1,3.84,07/24/19 18:57,"847 Chestnut St, San Francisco, CA 94016" +223876,Lightning Charging Cable,1,14.95,07/29/19 12:07,"604 Hill St, Boston, MA 02215" +223876,Wired Headphones,1,11.99,07/29/19 12:07,"604 Hill St, Boston, MA 02215" +223877,Apple Airpods Headphones,1,150,07/25/19 01:20,"736 West St, San Francisco, CA 94016" +223878,Apple Airpods Headphones,1,150,07/20/19 00:18,"729 Highland St, Dallas, TX 75001" +223879,Bose SoundSport Headphones,1,99.99,07/23/19 17:09,"791 Lincoln St, Atlanta, GA 30301" +223880,USB-C Charging Cable,1,11.95,07/04/19 21:08,"953 Elm St, Austin, TX 73301" +223881,34in Ultrawide Monitor,1,379.99,07/05/19 20:38,"562 Lincoln St, San Francisco, CA 94016" +223882,Wired Headphones,1,11.99,07/28/19 06:47,"313 Walnut St, San Francisco, CA 94016" +223883,Wired Headphones,1,11.99,07/25/19 18:40,"184 Johnson St, San Francisco, CA 94016" +223884,Lightning Charging Cable,1,14.95,07/16/19 21:15,"862 Park St, Seattle, WA 98101" +223885,Apple Airpods Headphones,1,150,07/26/19 16:47,"587 Highland St, Boston, MA 02215" +223886,Wired Headphones,1,11.99,07/14/19 15:55,"473 Walnut St, Seattle, WA 98101" +223887,Lightning Charging Cable,1,14.95,07/20/19 00:08,"188 Meadow St, San Francisco, CA 94016" +223888,AAA Batteries (4-pack),1,2.99,07/18/19 10:43,"974 14th St, Atlanta, GA 30301" +223889,Wired Headphones,1,11.99,07/19/19 16:10,"136 Walnut St, New York City, NY 10001" +223890,USB-C Charging Cable,1,11.95,07/28/19 12:01,"274 9th St, San Francisco, CA 94016" +223891,USB-C Charging Cable,1,11.95,07/06/19 17:34,"817 Jefferson St, Austin, TX 73301" +223892,20in Monitor,1,109.99,07/10/19 19:11,"456 Wilson St, San Francisco, CA 94016" +223893,Lightning Charging Cable,1,14.95,07/15/19 07:44,"891 13th St, San Francisco, CA 94016" +223894,27in FHD Monitor,1,149.99,07/13/19 19:58,"200 Sunset St, San Francisco, CA 94016" +223895,27in FHD Monitor,1,149.99,07/31/19 20:07,"438 Dogwood St, San Francisco, CA 94016" +223896,Wired Headphones,1,11.99,07/01/19 10:48,"628 Madison St, New York City, NY 10001" +223897,27in FHD Monitor,1,149.99,07/25/19 21:17,"94 Lake St, New York City, NY 10001" +223898,iPhone,1,700,07/08/19 18:56,"309 6th St, San Francisco, CA 94016" +223899,Flatscreen TV,1,300,07/18/19 19:27,"423 13th St, New York City, NY 10001" +223900,34in Ultrawide Monitor,1,379.99,07/10/19 05:41,"85 Ridge St, San Francisco, CA 94016" +223901,Wired Headphones,1,11.99,07/22/19 16:31,"428 12th St, Boston, MA 02215" +223902,AA Batteries (4-pack),1,3.84,07/07/19 11:41,"206 4th St, Seattle, WA 98101" +223903,Wired Headphones,1,11.99,07/11/19 00:49,"427 Hill St, New York City, NY 10001" +223904,34in Ultrawide Monitor,1,379.99,07/08/19 19:36,"832 9th St, San Francisco, CA 94016" +223905,27in 4K Gaming Monitor,1,389.99,07/08/19 15:39,"123 Jackson St, Seattle, WA 98101" +223906,Bose SoundSport Headphones,1,99.99,07/27/19 19:02,"994 North St, Dallas, TX 75001" +223907,USB-C Charging Cable,1,11.95,07/12/19 22:29,"881 13th St, New York City, NY 10001" +223908,Lightning Charging Cable,1,14.95,07/07/19 07:06,"261 Wilson St, Los Angeles, CA 90001" +223909,AAA Batteries (4-pack),1,2.99,07/28/19 12:06,"968 13th St, Austin, TX 73301" +223909,iPhone,1,700,07/28/19 12:06,"968 13th St, Austin, TX 73301" +223910,Lightning Charging Cable,1,14.95,07/07/19 09:00,"767 Jackson St, San Francisco, CA 94016" +223911,ThinkPad Laptop,1,999.99,07/06/19 20:43,"193 6th St, Atlanta, GA 30301" +223912,Bose SoundSport Headphones,1,99.99,07/24/19 20:16,"432 14th St, Los Angeles, CA 90001" +223913,Lightning Charging Cable,1,14.95,07/04/19 21:35,"602 West St, San Francisco, CA 94016" +223914,27in 4K Gaming Monitor,1,389.99,07/18/19 18:22,"673 Elm St, San Francisco, CA 94016" +223915,Wired Headphones,1,11.99,07/27/19 15:21,"119 Pine St, Seattle, WA 98101" +223916,34in Ultrawide Monitor,1,379.99,07/01/19 18:00,"472 8th St, Atlanta, GA 30301" +223917,20in Monitor,2,109.99,07/23/19 09:02,"715 South St, Boston, MA 02215" +223918,Wired Headphones,1,11.99,07/16/19 13:50,"523 South St, San Francisco, CA 94016" +223919,AAA Batteries (4-pack),1,2.99,07/05/19 17:47,"929 6th St, New York City, NY 10001" +223920,Apple Airpods Headphones,1,150,07/02/19 17:15,"87 North St, San Francisco, CA 94016" +223921,27in FHD Monitor,1,149.99,07/07/19 09:56,"261 1st St, San Francisco, CA 94016" +223922,USB-C Charging Cable,1,11.95,07/24/19 18:01,"198 River St, Los Angeles, CA 90001" +223923,AA Batteries (4-pack),1,3.84,07/03/19 18:17,"200 North St, Los Angeles, CA 90001" +223924,Lightning Charging Cable,1,14.95,07/25/19 17:45,"674 9th St, San Francisco, CA 94016" +223925,AA Batteries (4-pack),5,3.84,07/07/19 18:53,"198 Park St, Los Angeles, CA 90001" +223926,34in Ultrawide Monitor,1,379.99,07/18/19 21:31,"691 Main St, San Francisco, CA 94016" +223927,USB-C Charging Cable,1,11.95,07/07/19 15:31,"538 West St, Seattle, WA 98101" +223928,Lightning Charging Cable,1,14.95,07/12/19 10:57,"294 Willow St, Los Angeles, CA 90001" +223929,AAA Batteries (4-pack),1,2.99,07/24/19 09:57,"456 Ridge St, Seattle, WA 98101" +223930,AAA Batteries (4-pack),1,2.99,07/15/19 21:16,"710 Ridge St, New York City, NY 10001" +223931,27in FHD Monitor,1,149.99,07/05/19 10:57,"702 12th St, San Francisco, CA 94016" +223932,ThinkPad Laptop,1,999.99,07/19/19 11:49,"811 Hickory St, Boston, MA 02215" +223933,Bose SoundSport Headphones,1,99.99,07/14/19 14:28,"349 Jackson St, Seattle, WA 98101" +223934,Lightning Charging Cable,1,14.95,07/16/19 13:35,"259 Willow St, Los Angeles, CA 90001" +223935,USB-C Charging Cable,1,11.95,07/08/19 15:00,"871 2nd St, Seattle, WA 98101" +223936,Google Phone,1,600,07/11/19 12:00,"456 Johnson St, Seattle, WA 98101" +223937,AA Batteries (4-pack),1,3.84,07/17/19 13:45,"158 Cedar St, San Francisco, CA 94016" +223938,USB-C Charging Cable,1,11.95,07/19/19 18:00,"461 Spruce St, Seattle, WA 98101" +223939,AA Batteries (4-pack),1,3.84,07/17/19 23:11,"275 9th St, San Francisco, CA 94016" +223940,LG Dryer,1,600.0,07/25/19 14:40,"483 Elm St, Austin, TX 73301" +223941,AAA Batteries (4-pack),1,2.99,07/04/19 22:49,"178 Sunset St, Boston, MA 02215" +223942,34in Ultrawide Monitor,1,379.99,07/30/19 01:04,"362 8th St, Seattle, WA 98101" +223943,AA Batteries (4-pack),2,3.84,07/12/19 13:05,"897 River St, Seattle, WA 98101" +223944,AA Batteries (4-pack),1,3.84,07/03/19 09:14,"82 9th St, Dallas, TX 75001" +223945,Apple Airpods Headphones,1,150,07/28/19 16:56,"139 10th St, Boston, MA 02215" +223946,Lightning Charging Cable,1,14.95,07/25/19 21:48,"889 12th St, Los Angeles, CA 90001" +223947,34in Ultrawide Monitor,1,379.99,07/23/19 22:13,"707 Madison St, Los Angeles, CA 90001" +223948,USB-C Charging Cable,1,11.95,07/23/19 13:14,"529 Jefferson St, New York City, NY 10001" +223949,AAA Batteries (4-pack),1,2.99,07/04/19 11:36,"125 Park St, Dallas, TX 75001" +223950,AA Batteries (4-pack),1,3.84,07/25/19 21:20,"448 1st St, Boston, MA 02215" +223951,AAA Batteries (4-pack),1,2.99,07/27/19 22:05,"440 Pine St, San Francisco, CA 94016" +223952,USB-C Charging Cable,2,11.95,07/25/19 16:10,"858 Walnut St, San Francisco, CA 94016" +223952,AA Batteries (4-pack),1,3.84,07/25/19 16:10,"858 Walnut St, San Francisco, CA 94016" +223953,27in FHD Monitor,1,149.99,07/25/19 17:23,"746 12th St, San Francisco, CA 94016" +223954,Bose SoundSport Headphones,1,99.99,07/16/19 09:07,"480 Lincoln St, San Francisco, CA 94016" +223955,Wired Headphones,1,11.99,07/01/19 19:31,"630 Lakeview St, San Francisco, CA 94016" +223956,Lightning Charging Cable,1,14.95,07/26/19 10:49,"458 12th St, San Francisco, CA 94016" +223957,USB-C Charging Cable,2,11.95,07/21/19 12:51,"966 Sunset St, New York City, NY 10001" +223958,Apple Airpods Headphones,1,150,07/11/19 21:07,"822 Lakeview St, Seattle, WA 98101" +223959,AAA Batteries (4-pack),3,2.99,07/28/19 10:01,"437 Adams St, Los Angeles, CA 90001" +223960,USB-C Charging Cable,1,11.95,07/17/19 13:25,"602 7th St, Atlanta, GA 30301" +223961,Apple Airpods Headphones,1,150,07/06/19 13:47,"12 Maple St, Seattle, WA 98101" +223962,Wired Headphones,1,11.99,07/17/19 19:26,"112 Walnut St, New York City, NY 10001" +223963,Apple Airpods Headphones,1,150,07/31/19 14:37,"719 Lake St, San Francisco, CA 94016" +223964,AA Batteries (4-pack),3,3.84,07/04/19 19:06,"828 6th St, New York City, NY 10001" +223965,AA Batteries (4-pack),1,3.84,07/14/19 18:21,"840 Madison St, Los Angeles, CA 90001" +223966,Lightning Charging Cable,1,14.95,07/29/19 12:05,"812 Lakeview St, San Francisco, CA 94016" +223967,USB-C Charging Cable,1,11.95,07/29/19 11:12,"75 Spruce St, Dallas, TX 75001" +223968,AA Batteries (4-pack),1,3.84,07/22/19 17:32,"596 Church St, Los Angeles, CA 90001" +223969,iPhone,1,700,07/20/19 13:43,"1 Dogwood St, New York City, NY 10001" +223970,Lightning Charging Cable,1,14.95,07/18/19 19:08,"929 Lakeview St, San Francisco, CA 94016" +223971,AA Batteries (4-pack),2,3.84,07/01/19 14:59,"566 West St, Los Angeles, CA 90001" +223972,AA Batteries (4-pack),1,3.84,07/23/19 00:09,"619 Dogwood St, New York City, NY 10001" +223973,27in 4K Gaming Monitor,1,389.99,07/13/19 14:03,"64 Walnut St, Atlanta, GA 30301" +223974,Lightning Charging Cable,1,14.95,07/16/19 09:57,"823 5th St, San Francisco, CA 94016" +223975,iPhone,1,700,07/24/19 13:25,"888 Center St, San Francisco, CA 94016" +223976,USB-C Charging Cable,1,11.95,07/21/19 17:34,"840 4th St, New York City, NY 10001" +223977,ThinkPad Laptop,1,999.99,07/27/19 23:05,"774 Park St, Los Angeles, CA 90001" +223978,Bose SoundSport Headphones,1,99.99,07/17/19 12:10,"340 Madison St, San Francisco, CA 94016" +223979,Bose SoundSport Headphones,1,99.99,07/27/19 11:42,"353 Walnut St, Boston, MA 02215" +223980,Bose SoundSport Headphones,1,99.99,07/31/19 04:22,"953 Cherry St, San Francisco, CA 94016" +223981,Lightning Charging Cable,1,14.95,07/26/19 18:29,"427 8th St, Los Angeles, CA 90001" +223982,iPhone,1,700,07/07/19 19:27,"16 Cedar St, New York City, NY 10001" +223982,Lightning Charging Cable,1,14.95,07/07/19 19:27,"16 Cedar St, New York City, NY 10001" +223983,Google Phone,1,600,07/09/19 18:06,"402 Jackson St, New York City, NY 10001" +223984,AAA Batteries (4-pack),2,2.99,07/21/19 19:12,"270 Spruce St, San Francisco, CA 94016" +223985,27in FHD Monitor,1,149.99,07/27/19 20:32,"687 Dogwood St, Dallas, TX 75001" +223986,AA Batteries (4-pack),1,3.84,07/27/19 23:09,"473 1st St, New York City, NY 10001" +223987,USB-C Charging Cable,1,11.95,07/11/19 18:18,"892 Adams St, Los Angeles, CA 90001" +223988,Flatscreen TV,1,300,07/20/19 08:12,"534 5th St, Boston, MA 02215" +223988,USB-C Charging Cable,1,11.95,07/20/19 08:12,"534 5th St, Boston, MA 02215" +223989,Wired Headphones,1,11.99,07/22/19 15:37,"315 13th St, Los Angeles, CA 90001" +223990,Wired Headphones,1,11.99,07/24/19 18:09,"216 1st St, San Francisco, CA 94016" +223991,Bose SoundSport Headphones,1,99.99,07/21/19 13:46,"520 Cedar St, Boston, MA 02215" +223992,27in 4K Gaming Monitor,1,389.99,07/25/19 21:10,"748 Forest St, Seattle, WA 98101" +223993,AA Batteries (4-pack),5,3.84,07/15/19 09:39,"718 Maple St, Portland, OR 97035" +223994,Bose SoundSport Headphones,1,99.99,07/03/19 19:25,"623 Hill St, Dallas, TX 75001" +223995,AAA Batteries (4-pack),1,2.99,07/26/19 10:28,"871 Chestnut St, New York City, NY 10001" +223996,USB-C Charging Cable,1,11.95,07/04/19 22:21,"705 Park St, Atlanta, GA 30301" +223997,Flatscreen TV,1,300,07/23/19 12:41,"64 Pine St, New York City, NY 10001" +223998,Apple Airpods Headphones,1,150,07/23/19 19:22,"341 Sunset St, Atlanta, GA 30301" +223998,Bose SoundSport Headphones,1,99.99,07/23/19 19:22,"341 Sunset St, Atlanta, GA 30301" +223999,AA Batteries (4-pack),1,3.84,07/12/19 23:41,"716 11th St, San Francisco, CA 94016" +224000,27in FHD Monitor,1,149.99,07/01/19 19:13,"811 River St, Boston, MA 02215" +224001,AAA Batteries (4-pack),1,2.99,07/27/19 14:25,"752 13th St, San Francisco, CA 94016" +224002,AA Batteries (4-pack),1,3.84,07/05/19 17:17,"859 2nd St, Atlanta, GA 30301" +224003,34in Ultrawide Monitor,1,379.99,07/17/19 11:37,"657 South St, San Francisco, CA 94016" +224004,USB-C Charging Cable,1,11.95,07/08/19 22:41,"71 River St, New York City, NY 10001" +224005,AA Batteries (4-pack),1,3.84,07/17/19 17:31,"852 Lincoln St, Los Angeles, CA 90001" +224006,USB-C Charging Cable,1,11.95,07/18/19 13:38,"269 1st St, New York City, NY 10001" +224007,Bose SoundSport Headphones,1,99.99,07/06/19 09:37,"476 Church St, Los Angeles, CA 90001" +224008,Flatscreen TV,1,300,07/14/19 18:23,"624 Elm St, San Francisco, CA 94016" +224009,USB-C Charging Cable,1,11.95,07/23/19 23:52,"340 12th St, Seattle, WA 98101" +224010,Apple Airpods Headphones,1,150,07/23/19 19:17,"192 10th St, Seattle, WA 98101" +224011,Wired Headphones,1,11.99,07/17/19 11:56,"948 Johnson St, Portland, OR 97035" +224012,34in Ultrawide Monitor,1,379.99,07/24/19 18:43,"634 Lakeview St, Los Angeles, CA 90001" +224013,AAA Batteries (4-pack),1,2.99,07/03/19 12:40,"943 Chestnut St, Seattle, WA 98101" +224014,Apple Airpods Headphones,1,150,07/06/19 16:04,"835 Highland St, San Francisco, CA 94016" +224015,Apple Airpods Headphones,1,150,07/13/19 10:39,"119 8th St, Austin, TX 73301" +224016,Flatscreen TV,1,300,07/11/19 12:09,"771 2nd St, Boston, MA 02215" +224017,AA Batteries (4-pack),2,3.84,07/20/19 08:54,"805 Highland St, Atlanta, GA 30301" +224018,AA Batteries (4-pack),1,3.84,07/17/19 15:32,"984 8th St, Seattle, WA 98101" +224019,Apple Airpods Headphones,1,150,07/30/19 19:20,"495 8th St, Boston, MA 02215" +224020,27in 4K Gaming Monitor,1,389.99,07/26/19 16:48,"973 Lake St, San Francisco, CA 94016" +224021,Wired Headphones,1,11.99,07/14/19 16:42,"74 Elm St, Los Angeles, CA 90001" +224022,AA Batteries (4-pack),1,3.84,07/02/19 14:23,"130 Willow St, Boston, MA 02215" +224023,27in FHD Monitor,1,149.99,07/12/19 12:20,"631 Adams St, San Francisco, CA 94016" +224024,Wired Headphones,1,11.99,07/09/19 21:30,"880 Main St, Los Angeles, CA 90001" +224025,Apple Airpods Headphones,1,150,07/10/19 01:15,"794 8th St, Atlanta, GA 30301" +224026,USB-C Charging Cable,1,11.95,07/02/19 17:45,"173 Lake St, Atlanta, GA 30301" +224027,AA Batteries (4-pack),1,3.84,07/09/19 11:10,"152 Cherry St, New York City, NY 10001" +224028,Lightning Charging Cable,1,14.95,07/21/19 11:22,"55 Elm St, Atlanta, GA 30301" +224029,Bose SoundSport Headphones,1,99.99,07/23/19 04:28,"151 River St, Seattle, WA 98101" +224030,AA Batteries (4-pack),1,3.84,07/16/19 21:11,"928 Center St, San Francisco, CA 94016" +224031,AA Batteries (4-pack),1,3.84,07/24/19 18:02,"135 Dogwood St, San Francisco, CA 94016" +224032,AAA Batteries (4-pack),1,2.99,07/18/19 22:14,"716 North St, New York City, NY 10001" +,,,,, +224033,USB-C Charging Cable,1,11.95,07/20/19 09:27,"344 Willow St, Los Angeles, CA 90001" +224033,AA Batteries (4-pack),1,3.84,07/20/19 09:27,"344 Willow St, Los Angeles, CA 90001" +224034,AAA Batteries (4-pack),1,2.99,07/22/19 00:12,"144 Sunset St, Los Angeles, CA 90001" +224035,AAA Batteries (4-pack),1,2.99,07/15/19 21:41,"710 Adams St, Los Angeles, CA 90001" +224036,USB-C Charging Cable,1,11.95,07/22/19 18:19,"737 Cherry St, Seattle, WA 98101" +224037,27in 4K Gaming Monitor,1,389.99,07/11/19 17:40,"405 Sunset St, Austin, TX 73301" +224038,Wired Headphones,1,11.99,07/10/19 14:28,"567 6th St, Los Angeles, CA 90001" +224039,AA Batteries (4-pack),1,3.84,07/31/19 20:02,"492 Lakeview St, San Francisco, CA 94016" +224040,27in 4K Gaming Monitor,1,389.99,07/13/19 12:37,"897 10th St, Austin, TX 73301" +224041,AA Batteries (4-pack),1,3.84,07/08/19 21:14,"87 Cedar St, San Francisco, CA 94016" +224042,Lightning Charging Cable,1,14.95,07/03/19 14:44,"737 11th St, Boston, MA 02215" +224043,Flatscreen TV,1,300,07/19/19 07:50,"393 6th St, Dallas, TX 75001" +224044,AAA Batteries (4-pack),1,2.99,07/12/19 13:50,"626 Highland St, Los Angeles, CA 90001" +224045,LG Dryer,1,600.0,07/22/19 16:25,"500 Church St, New York City, NY 10001" +224045,USB-C Charging Cable,1,11.95,07/22/19 16:25,"500 Church St, New York City, NY 10001" +224046,Bose SoundSport Headphones,1,99.99,07/24/19 03:19,"409 Elm St, New York City, NY 10001" +224047,Wired Headphones,1,11.99,07/30/19 13:16,"341 Lakeview St, Boston, MA 02215" +224048,Lightning Charging Cable,2,14.95,07/31/19 23:32,"517 North St, Dallas, TX 75001" +224049,Bose SoundSport Headphones,1,99.99,07/06/19 21:16,"592 7th St, San Francisco, CA 94016" +224050,USB-C Charging Cable,1,11.95,07/23/19 20:11,"685 12th St, Boston, MA 02215" +224051,USB-C Charging Cable,1,11.95,07/29/19 11:59,"677 Jackson St, Dallas, TX 75001" +224052,Wired Headphones,1,11.99,07/03/19 13:47,"462 Forest St, San Francisco, CA 94016" +224053,USB-C Charging Cable,1,11.95,07/08/19 11:39,"994 Highland St, Los Angeles, CA 90001" +224054,Bose SoundSport Headphones,1,99.99,07/03/19 18:20,"930 Walnut St, San Francisco, CA 94016" +224055,Wired Headphones,1,11.99,07/26/19 18:50,"792 Dogwood St, New York City, NY 10001" +224056,34in Ultrawide Monitor,1,379.99,07/17/19 21:46,"529 Adams St, Atlanta, GA 30301" +224057,Bose SoundSport Headphones,1,99.99,07/03/19 20:25,"972 Forest St, Los Angeles, CA 90001" +224058,USB-C Charging Cable,2,11.95,07/21/19 16:15,"244 Ridge St, Los Angeles, CA 90001" +224059,AAA Batteries (4-pack),1,2.99,07/02/19 17:22,"838 Willow St, New York City, NY 10001" +224060,AAA Batteries (4-pack),2,2.99,07/19/19 20:19,"863 Lakeview St, New York City, NY 10001" +224061,Macbook Pro Laptop,1,1700,07/24/19 22:54,"307 Willow St, Boston, MA 02215" +224062,Wired Headphones,1,11.99,07/17/19 07:25,"330 8th St, Seattle, WA 98101" +224063,USB-C Charging Cable,1,11.95,07/04/19 07:57,"796 6th St, Austin, TX 73301" +224064,AA Batteries (4-pack),1,3.84,07/30/19 15:47,"699 Ridge St, Boston, MA 02215" +224065,27in FHD Monitor,1,149.99,07/10/19 13:45,"156 1st St, New York City, NY 10001" +224066,Apple Airpods Headphones,1,150,07/08/19 18:27,"24 11th St, Seattle, WA 98101" +224067,Google Phone,1,600,07/17/19 14:32,"55 Elm St, Los Angeles, CA 90001" +224068,AAA Batteries (4-pack),3,2.99,07/02/19 20:15,"604 River St, Boston, MA 02215" +224069,AA Batteries (4-pack),1,3.84,07/11/19 22:00,"641 Dogwood St, Atlanta, GA 30301" +224070,20in Monitor,1,109.99,07/31/19 18:39,"500 Ridge St, Portland, OR 97035" +224071,Lightning Charging Cable,1,14.95,07/01/19 19:56,"633 Main St, Austin, TX 73301" +224072,AAA Batteries (4-pack),2,2.99,07/27/19 10:18,"994 Walnut St, Los Angeles, CA 90001" +224073,iPhone,1,700,07/01/19 22:07,"819 Jackson St, San Francisco, CA 94016" +224074,Wired Headphones,1,11.99,07/14/19 15:25,"779 Maple St, San Francisco, CA 94016" +224075,USB-C Charging Cable,1,11.95,07/03/19 22:32,"398 Cedar St, Seattle, WA 98101" +224076,USB-C Charging Cable,1,11.95,07/22/19 10:33,"283 Cedar St, San Francisco, CA 94016" +224077,27in FHD Monitor,1,149.99,07/21/19 14:47,"420 13th St, Portland, OR 97035" +224078,Lightning Charging Cable,1,14.95,07/14/19 16:25,"306 Jackson St, San Francisco, CA 94016" +224079,USB-C Charging Cable,1,11.95,07/01/19 18:17,"969 Hill St, New York City, NY 10001" +224080,Apple Airpods Headphones,1,150,07/09/19 09:43,"490 Main St, Seattle, WA 98101" +224081,Bose SoundSport Headphones,1,99.99,07/14/19 13:54,"467 Center St, New York City, NY 10001" +224082,USB-C Charging Cable,1,11.95,07/10/19 11:52,"894 2nd St, Los Angeles, CA 90001" +224083,AA Batteries (4-pack),1,3.84,07/04/19 20:50,"642 Main St, Boston, MA 02215" +224084,34in Ultrawide Monitor,1,379.99,07/17/19 15:56,"111 Main St, Portland, ME 04101" +224085,AAA Batteries (4-pack),1,2.99,07/18/19 09:27,"701 Lincoln St, Los Angeles, CA 90001" +224086,Bose SoundSport Headphones,1,99.99,07/20/19 10:35,"82 Wilson St, Dallas, TX 75001" +224087,LG Dryer,1,600.0,07/17/19 21:10,"405 12th St, San Francisco, CA 94016" +224088,AA Batteries (4-pack),3,3.84,07/26/19 14:57,"376 Johnson St, Dallas, TX 75001" +224089,AA Batteries (4-pack),1,3.84,07/10/19 15:52,"689 Cherry St, Boston, MA 02215" +224090,AA Batteries (4-pack),1,3.84,07/17/19 14:51,"23 14th St, San Francisco, CA 94016" +224091,AAA Batteries (4-pack),1,2.99,07/31/19 17:56,"468 Madison St, Atlanta, GA 30301" +224092,AAA Batteries (4-pack),1,2.99,07/15/19 11:50,"195 14th St, San Francisco, CA 94016" +224093,AA Batteries (4-pack),1,3.84,07/03/19 13:09,"853 1st St, Boston, MA 02215" +224094,AA Batteries (4-pack),1,3.84,07/23/19 14:13,"764 13th St, Seattle, WA 98101" +224095,Vareebadd Phone,1,400,07/15/19 21:27,"190 Johnson St, San Francisco, CA 94016" +224095,USB-C Charging Cable,1,11.95,07/15/19 21:27,"190 Johnson St, San Francisco, CA 94016" +224096,iPhone,1,700,07/06/19 11:50,"375 North St, Atlanta, GA 30301" +224096,Apple Airpods Headphones,1,150,07/06/19 11:50,"375 North St, Atlanta, GA 30301" +224096,Wired Headphones,1,11.99,07/06/19 11:50,"375 North St, Atlanta, GA 30301" +224097,USB-C Charging Cable,1,11.95,07/16/19 18:42,"62 10th St, Austin, TX 73301" +224098,Lightning Charging Cable,1,14.95,07/04/19 13:16,"820 West St, San Francisco, CA 94016" +224099,Apple Airpods Headphones,1,150,07/25/19 20:14,"720 Lakeview St, Boston, MA 02215" +224100,27in FHD Monitor,1,149.99,07/18/19 11:58,"631 South St, Boston, MA 02215" +224101,Wired Headphones,1,11.99,07/10/19 23:53,"521 Maple St, Los Angeles, CA 90001" +224102,USB-C Charging Cable,1,11.95,07/06/19 17:04,"268 Elm St, Portland, OR 97035" +224103,USB-C Charging Cable,1,11.95,07/18/19 00:03,"143 Lakeview St, New York City, NY 10001" +224104,Lightning Charging Cable,1,14.95,07/12/19 16:29,"52 Sunset St, Austin, TX 73301" +224105,Wired Headphones,1,11.99,07/10/19 12:34,"675 4th St, Boston, MA 02215" +224106,Wired Headphones,1,11.99,07/26/19 15:05,"379 Jefferson St, San Francisco, CA 94016" +224107,27in 4K Gaming Monitor,1,389.99,07/18/19 22:37,"866 Meadow St, New York City, NY 10001" +224108,USB-C Charging Cable,1,11.95,07/08/19 20:31,"87 Maple St, New York City, NY 10001" +224109,AA Batteries (4-pack),1,3.84,07/15/19 08:53,"464 14th St, Boston, MA 02215" +224109,USB-C Charging Cable,1,11.95,07/15/19 08:53,"464 14th St, Boston, MA 02215" +224110,AAA Batteries (4-pack),1,2.99,07/05/19 18:26,"280 River St, San Francisco, CA 94016" +224111,AA Batteries (4-pack),1,3.84,07/13/19 16:08,"872 River St, San Francisco, CA 94016" +224112,AAA Batteries (4-pack),1,2.99,07/09/19 14:44,"671 Lakeview St, San Francisco, CA 94016" +224112,34in Ultrawide Monitor,1,379.99,07/09/19 14:44,"671 Lakeview St, San Francisco, CA 94016" +224113,Wired Headphones,1,11.99,07/10/19 10:22,"592 Hill St, Los Angeles, CA 90001" +224114,Bose SoundSport Headphones,1,99.99,07/22/19 11:00,"341 Meadow St, Los Angeles, CA 90001" +224115,Apple Airpods Headphones,1,150,07/16/19 13:12,"960 10th St, Atlanta, GA 30301" +224116,Lightning Charging Cable,1,14.95,07/28/19 19:58,"873 Pine St, Portland, OR 97035" +224117,AA Batteries (4-pack),1,3.84,07/13/19 14:12,"144 7th St, Dallas, TX 75001" +224118,Google Phone,1,600,07/05/19 08:05,"791 13th St, Los Angeles, CA 90001" +224119,iPhone,1,700,07/09/19 23:06,"984 Sunset St, Seattle, WA 98101" +224120,AA Batteries (4-pack),1,3.84,07/29/19 22:25,"627 Chestnut St, Seattle, WA 98101" +224121,Lightning Charging Cable,1,14.95,07/06/19 08:25,"129 Highland St, San Francisco, CA 94016" +224122,34in Ultrawide Monitor,1,379.99,07/02/19 11:17,"189 Walnut St, San Francisco, CA 94016" +224123,Wired Headphones,1,11.99,07/13/19 13:37,"362 Lakeview St, Austin, TX 73301" +224124,Lightning Charging Cable,1,14.95,07/10/19 16:46,"783 Jackson St, Boston, MA 02215" +224125,Google Phone,1,600,07/25/19 14:30,"628 Sunset St, Austin, TX 73301" +224125,USB-C Charging Cable,1,11.95,07/25/19 14:30,"628 Sunset St, Austin, TX 73301" +224126,Apple Airpods Headphones,1,150,07/03/19 17:45,"403 Jackson St, Atlanta, GA 30301" +224127,34in Ultrawide Monitor,1,379.99,07/30/19 07:57,"526 Church St, Atlanta, GA 30301" +224128,AA Batteries (4-pack),2,3.84,07/14/19 11:18,"570 12th St, San Francisco, CA 94016" +224129,27in FHD Monitor,1,149.99,07/07/19 18:55,"682 Johnson St, Boston, MA 02215" +224130,Apple Airpods Headphones,1,150,07/30/19 12:14,"173 Jefferson St, Atlanta, GA 30301" +224131,Bose SoundSport Headphones,1,99.99,07/02/19 22:52,"14 North St, San Francisco, CA 94016" +224132,20in Monitor,1,109.99,07/22/19 16:18,"901 Main St, Los Angeles, CA 90001" +224133,AAA Batteries (4-pack),3,2.99,07/16/19 11:41,"993 Willow St, Los Angeles, CA 90001" +224134,Apple Airpods Headphones,1,150,07/13/19 09:26,"545 Dogwood St, Seattle, WA 98101" +224135,Wired Headphones,1,11.99,07/23/19 20:20,"862 12th St, San Francisco, CA 94016" +224136,Wired Headphones,1,11.99,07/11/19 20:42,"931 Spruce St, San Francisco, CA 94016" +224137,27in FHD Monitor,1,149.99,07/14/19 16:11,"173 Lakeview St, Portland, OR 97035" +224138,USB-C Charging Cable,1,11.95,07/21/19 16:51,"993 Lakeview St, Austin, TX 73301" +224139,27in FHD Monitor,1,149.99,07/19/19 08:56,"430 Johnson St, Los Angeles, CA 90001" +224140,Bose SoundSport Headphones,1,99.99,07/24/19 18:21,"401 Church St, San Francisco, CA 94016" +224141,27in FHD Monitor,1,149.99,07/07/19 18:20,"90 Meadow St, Seattle, WA 98101" +224142,Lightning Charging Cable,1,14.95,07/15/19 10:51,"403 11th St, Los Angeles, CA 90001" +224142,Macbook Pro Laptop,1,1700,07/15/19 10:51,"403 11th St, Los Angeles, CA 90001" +224143,AA Batteries (4-pack),1,3.84,07/02/19 20:11,"890 2nd St, Los Angeles, CA 90001" +224144,Wired Headphones,1,11.99,07/11/19 18:32,"467 1st St, Boston, MA 02215" +224145,Macbook Pro Laptop,1,1700,07/23/19 19:23,"804 12th St, Portland, OR 97035" +224146,AAA Batteries (4-pack),1,2.99,07/06/19 22:27,"655 Lakeview St, Seattle, WA 98101" +224147,iPhone,1,700,07/12/19 16:22,"403 Hill St, New York City, NY 10001" +224148,AA Batteries (4-pack),2,3.84,07/24/19 20:30,"973 7th St, Seattle, WA 98101" +224149,Apple Airpods Headphones,1,150,07/17/19 12:39,"900 Sunset St, Los Angeles, CA 90001" +224150,Macbook Pro Laptop,1,1700,07/23/19 19:23,"65 Church St, Austin, TX 73301" +224151,USB-C Charging Cable,1,11.95,07/19/19 08:11,"452 Lakeview St, Los Angeles, CA 90001" +224152,AA Batteries (4-pack),2,3.84,07/31/19 04:38,"162 13th St, San Francisco, CA 94016" +224153,Bose SoundSport Headphones,1,99.99,07/30/19 21:13,"859 10th St, Los Angeles, CA 90001" +224154,AA Batteries (4-pack),1,3.84,07/14/19 12:12,"678 Johnson St, Seattle, WA 98101" +224155,Lightning Charging Cable,1,14.95,07/23/19 15:05,"394 Sunset St, Seattle, WA 98101" +224156,USB-C Charging Cable,1,11.95,07/26/19 19:48,"136 Pine St, Seattle, WA 98101" +224157,AAA Batteries (4-pack),1,2.99,07/27/19 08:06,"247 Cedar St, New York City, NY 10001" +224158,USB-C Charging Cable,1,11.95,07/26/19 09:12,"309 2nd St, Portland, OR 97035" +224159,USB-C Charging Cable,1,11.95,07/28/19 13:08,"397 Adams St, New York City, NY 10001" +224160,Wired Headphones,1,11.99,07/12/19 15:48,"464 Hickory St, Seattle, WA 98101" +224161,Apple Airpods Headphones,1,150,07/09/19 22:51,"415 River St, San Francisco, CA 94016" +224162,20in Monitor,1,109.99,07/04/19 05:35,"111 Adams St, San Francisco, CA 94016" +224163,AAA Batteries (4-pack),1,2.99,07/15/19 11:58,"939 4th St, Seattle, WA 98101" +224164,Lightning Charging Cable,1,14.95,07/26/19 11:05,"142 Jefferson St, Los Angeles, CA 90001" +224165,ThinkPad Laptop,1,999.99,07/09/19 10:58,"225 Ridge St, Austin, TX 73301" +224166,USB-C Charging Cable,1,11.95,07/08/19 14:25,"74 12th St, Atlanta, GA 30301" +224167,Bose SoundSport Headphones,1,99.99,07/02/19 14:02,"210 Johnson St, New York City, NY 10001" +224168,USB-C Charging Cable,1,11.95,07/22/19 22:15,"874 Adams St, San Francisco, CA 94016" +224169,AAA Batteries (4-pack),1,2.99,07/22/19 13:15,"440 Chestnut St, Seattle, WA 98101" +224170,iPhone,1,700,07/16/19 17:26,"11 Adams St, San Francisco, CA 94016" +224170,Apple Airpods Headphones,1,150,07/16/19 17:26,"11 Adams St, San Francisco, CA 94016" +224171,34in Ultrawide Monitor,1,379.99,07/13/19 01:50,"292 Elm St, Portland, OR 97035" +224172,AA Batteries (4-pack),1,3.84,07/08/19 05:53,"814 Main St, San Francisco, CA 94016" +224173,AA Batteries (4-pack),1,3.84,07/15/19 17:32,"773 Hickory St, San Francisco, CA 94016" +224174,ThinkPad Laptop,1,999.99,07/16/19 23:37,"450 Maple St, Los Angeles, CA 90001" +224175,AA Batteries (4-pack),2,3.84,07/01/19 11:20,"928 Elm St, Los Angeles, CA 90001" +224176,Google Phone,1,600,07/03/19 04:27,"792 Main St, Boston, MA 02215" +224176,USB-C Charging Cable,1,11.95,07/03/19 04:27,"792 Main St, Boston, MA 02215" +224177,27in FHD Monitor,1,149.99,07/19/19 10:59,"240 Cedar St, Dallas, TX 75001" +224178,34in Ultrawide Monitor,1,379.99,07/15/19 16:37,"563 7th St, Boston, MA 02215" +224179,AAA Batteries (4-pack),3,2.99,07/13/19 17:40,"626 Main St, San Francisco, CA 94016" +224180,USB-C Charging Cable,1,11.95,07/21/19 19:31,"87 8th St, Dallas, TX 75001" +224181,Bose SoundSport Headphones,1,99.99,07/20/19 15:02,"532 Madison St, San Francisco, CA 94016" +224182,AA Batteries (4-pack),1,3.84,07/04/19 21:30,"879 Forest St, Boston, MA 02215" +224183,ThinkPad Laptop,1,999.99,07/24/19 00:09,"860 Hill St, San Francisco, CA 94016" +224184,Apple Airpods Headphones,1,150,07/01/19 05:29,"312 Adams St, Boston, MA 02215" +224185,Vareebadd Phone,1,400,07/25/19 15:56,"207 Meadow St, Boston, MA 02215" +224185,USB-C Charging Cable,1,11.95,07/25/19 15:56,"207 Meadow St, Boston, MA 02215" +224186,Bose SoundSport Headphones,1,99.99,07/04/19 21:42,"74 River St, Dallas, TX 75001" +224187,Bose SoundSport Headphones,1,99.99,07/28/19 13:06,"904 Lake St, Boston, MA 02215" +224188,Lightning Charging Cable,1,14.95,07/20/19 12:35,"520 Cedar St, Los Angeles, CA 90001" +224189,Wired Headphones,1,11.99,07/18/19 23:26,"862 6th St, Atlanta, GA 30301" +224190,AAA Batteries (4-pack),1,2.99,07/25/19 15:41,"756 Willow St, Seattle, WA 98101" +224191,AAA Batteries (4-pack),2,2.99,07/15/19 20:10,"954 North St, San Francisco, CA 94016" +224192,AAA Batteries (4-pack),2,2.99,07/27/19 16:48,"447 Highland St, Seattle, WA 98101" +224193,LG Washing Machine,1,600.0,07/14/19 11:48,"943 4th St, Seattle, WA 98101" +224194,USB-C Charging Cable,1,11.95,07/16/19 13:19,"861 Walnut St, Los Angeles, CA 90001" +224195,AAA Batteries (4-pack),3,2.99,07/29/19 15:39,"482 Chestnut St, Boston, MA 02215" +224196,Lightning Charging Cable,1,14.95,07/15/19 17:58,"744 Walnut St, New York City, NY 10001" +224197,AA Batteries (4-pack),1,3.84,07/05/19 12:57,"474 Washington St, Dallas, TX 75001" +224198,Flatscreen TV,1,300,07/10/19 01:02,"595 Hickory St, Atlanta, GA 30301" +224199,Bose SoundSport Headphones,1,99.99,07/16/19 18:40,"169 Park St, New York City, NY 10001" +224200,AA Batteries (4-pack),1,3.84,07/27/19 22:08,"334 South St, New York City, NY 10001" +224201,AAA Batteries (4-pack),1,2.99,07/06/19 12:02,"102 1st St, San Francisco, CA 94016" +224202,ThinkPad Laptop,1,999.99,07/28/19 12:11,"224 South St, San Francisco, CA 94016" +224203,Wired Headphones,1,11.99,07/27/19 22:24,"797 Park St, Dallas, TX 75001" +224204,Wired Headphones,1,11.99,07/16/19 20:05,"694 Forest St, Boston, MA 02215" +224205,AAA Batteries (4-pack),1,2.99,07/15/19 12:58,"331 Main St, New York City, NY 10001" +224206,Lightning Charging Cable,1,14.95,07/13/19 23:48,"89 14th St, Portland, ME 04101" +224207,USB-C Charging Cable,1,11.95,07/14/19 14:05,"111 Chestnut St, Portland, OR 97035" +224208,AAA Batteries (4-pack),1,2.99,07/17/19 18:50,"185 Willow St, San Francisco, CA 94016" +224209,AA Batteries (4-pack),2,3.84,07/03/19 08:04,"806 Elm St, Dallas, TX 75001" +224210,Vareebadd Phone,1,400,07/19/19 21:58,"761 Park St, Austin, TX 73301" +224211,AA Batteries (4-pack),1,3.84,07/08/19 10:03,"174 Park St, Dallas, TX 75001" +224212,27in FHD Monitor,1,149.99,07/10/19 20:29,"583 Highland St, San Francisco, CA 94016" +224213,LG Dryer,1,600.0,07/17/19 21:54,"852 Jackson St, Boston, MA 02215" +224214,USB-C Charging Cable,1,11.95,08/01/19 01:18,"931 11th St, Los Angeles, CA 90001" +224215,iPhone,1,700,07/25/19 00:50,"203 11th St, Boston, MA 02215" +224216,USB-C Charging Cable,1,11.95,07/04/19 13:38,"473 7th St, San Francisco, CA 94016" +224217,Lightning Charging Cable,1,14.95,07/10/19 17:18,"557 Wilson St, Austin, TX 73301" +224218,USB-C Charging Cable,1,11.95,07/05/19 12:54,"549 Walnut St, Boston, MA 02215" +224219,AAA Batteries (4-pack),1,2.99,07/22/19 11:43,"270 Sunset St, Boston, MA 02215" +224220,AA Batteries (4-pack),1,3.84,07/07/19 14:08,"504 Lincoln St, Portland, ME 04101" +224221,AAA Batteries (4-pack),2,2.99,07/13/19 08:55,"254 Pine St, Atlanta, GA 30301" +224222,27in FHD Monitor,1,149.99,07/12/19 20:04,"514 5th St, Los Angeles, CA 90001" +224223,Macbook Pro Laptop,1,1700,07/18/19 14:11,"173 West St, Los Angeles, CA 90001" +224224,AAA Batteries (4-pack),2,2.99,07/31/19 02:11,"599 12th St, Los Angeles, CA 90001" +224225,Lightning Charging Cable,1,14.95,07/07/19 18:11,"415 Maple St, New York City, NY 10001" +224226,Apple Airpods Headphones,1,150,07/12/19 11:21,"478 Washington St, Dallas, TX 75001" +224227,Apple Airpods Headphones,1,150,07/03/19 23:29,"2 Jackson St, Los Angeles, CA 90001" +224228,27in FHD Monitor,1,149.99,07/31/19 09:28,"544 Wilson St, Portland, OR 97035" +224229,Google Phone,1,600,07/19/19 21:47,"334 8th St, Austin, TX 73301" +224230,34in Ultrawide Monitor,1,379.99,07/21/19 20:10,"230 Chestnut St, New York City, NY 10001" +224231,Wired Headphones,1,11.99,07/13/19 17:15,"121 Lakeview St, San Francisco, CA 94016" +224232,AA Batteries (4-pack),1,3.84,07/03/19 05:39,"109 Wilson St, Dallas, TX 75001" +224233,Flatscreen TV,1,300,07/27/19 23:14,"756 13th St, Austin, TX 73301" +224234,USB-C Charging Cable,1,11.95,07/08/19 15:49,"404 South St, Los Angeles, CA 90001" +224235,27in 4K Gaming Monitor,2,389.99,07/24/19 14:01,"702 8th St, Atlanta, GA 30301" +224236,AAA Batteries (4-pack),1,2.99,07/31/19 12:57,"188 12th St, Austin, TX 73301" +224237,27in 4K Gaming Monitor,1,389.99,07/05/19 19:07,"796 South St, Atlanta, GA 30301" +224238,27in 4K Gaming Monitor,1,389.99,07/10/19 14:46,"532 Willow St, Portland, ME 04101" +224239,Macbook Pro Laptop,1,1700,07/01/19 21:03,"234 Meadow St, San Francisco, CA 94016" +224240,34in Ultrawide Monitor,1,379.99,07/10/19 13:02,"517 Elm St, Boston, MA 02215" +224241,Bose SoundSport Headphones,1,99.99,07/14/19 22:46,"227 Dogwood St, New York City, NY 10001" +224242,AA Batteries (4-pack),1,3.84,07/07/19 13:36,"6 Cherry St, San Francisco, CA 94016" +224243,Flatscreen TV,1,300,07/14/19 17:11,"219 Park St, San Francisco, CA 94016" +224244,Apple Airpods Headphones,1,150,07/20/19 14:14,"813 Wilson St, Seattle, WA 98101" +224245,USB-C Charging Cable,1,11.95,07/24/19 08:41,"110 5th St, Atlanta, GA 30301" +224246,AA Batteries (4-pack),1,3.84,07/16/19 21:47,"765 Main St, Los Angeles, CA 90001" +224247,Macbook Pro Laptop,1,1700,07/13/19 11:57,"280 Sunset St, Seattle, WA 98101" +224248,Google Phone,1,600,07/21/19 17:52,"998 5th St, New York City, NY 10001" +224248,USB-C Charging Cable,2,11.95,07/21/19 17:52,"998 5th St, New York City, NY 10001" +224249,Lightning Charging Cable,1,14.95,07/18/19 06:34,"932 Maple St, Seattle, WA 98101" +224250,Apple Airpods Headphones,1,150,07/12/19 09:51,"119 South St, Boston, MA 02215" +224251,Lightning Charging Cable,1,14.95,07/23/19 09:01,"772 North St, Dallas, TX 75001" +224252,AAA Batteries (4-pack),1,2.99,07/09/19 19:52,"946 8th St, San Francisco, CA 94016" +224253,iPhone,1,700,07/20/19 13:35,"873 Cherry St, New York City, NY 10001" +224254,AA Batteries (4-pack),1,3.84,07/19/19 15:51,"346 Washington St, Austin, TX 73301" +224255,Google Phone,1,600,07/04/19 19:22,"801 Hickory St, Dallas, TX 75001" +224256,Google Phone,1,600,07/03/19 08:42,"249 Lake St, Los Angeles, CA 90001" +224257,USB-C Charging Cable,1,11.95,07/07/19 20:21,"13 Lakeview St, San Francisco, CA 94016" +224258,Bose SoundSport Headphones,1,99.99,07/22/19 06:10,"822 Madison St, Austin, TX 73301" +224259,USB-C Charging Cable,1,11.95,07/14/19 10:32,"22 8th St, San Francisco, CA 94016" +224260,Apple Airpods Headphones,1,150,07/03/19 10:12,"291 Highland St, Los Angeles, CA 90001" +224261,USB-C Charging Cable,1,11.95,07/28/19 13:48,"320 7th St, Los Angeles, CA 90001" +224262,USB-C Charging Cable,1,11.95,07/08/19 13:38,"721 Cherry St, Los Angeles, CA 90001" +224263,AAA Batteries (4-pack),1,2.99,07/05/19 21:11,"57 10th St, San Francisco, CA 94016" +224264,Apple Airpods Headphones,2,150,07/01/19 15:06,"425 River St, Atlanta, GA 30301" +224265,AAA Batteries (4-pack),2,2.99,07/31/19 14:10,"407 Hill St, Portland, OR 97035" +224266,AAA Batteries (4-pack),1,2.99,07/02/19 11:27,"262 Hickory St, Dallas, TX 75001" +224267,27in 4K Gaming Monitor,1,389.99,07/19/19 19:08,"805 2nd St, Austin, TX 73301" +224268,AAA Batteries (4-pack),1,2.99,07/27/19 11:44,"480 13th St, Seattle, WA 98101" +224269,Lightning Charging Cable,1,14.95,07/19/19 17:35,"193 Hill St, Dallas, TX 75001" +224270,Wired Headphones,1,11.99,07/23/19 22:37,"690 River St, San Francisco, CA 94016" +224271,Lightning Charging Cable,1,14.95,07/09/19 20:29,"834 Lake St, New York City, NY 10001" +224272,Lightning Charging Cable,1,14.95,07/28/19 12:15,"904 Sunset St, Seattle, WA 98101" +224273,Apple Airpods Headphones,1,150,07/10/19 21:41,"497 Church St, Boston, MA 02215" +224274,34in Ultrawide Monitor,1,379.99,07/01/19 12:18,"255 Church St, San Francisco, CA 94016" +224275,Bose SoundSport Headphones,1,99.99,07/01/19 13:48,"737 Main St, San Francisco, CA 94016" +224276,34in Ultrawide Monitor,1,379.99,07/07/19 06:31,"881 Jackson St, Atlanta, GA 30301" +224277,Wired Headphones,1,11.99,07/15/19 05:45,"398 Chestnut St, San Francisco, CA 94016" +224278,Wired Headphones,1,11.99,07/11/19 06:54,"692 North St, Boston, MA 02215" +224279,Google Phone,1,600,07/01/19 21:55,"9 Hickory St, Boston, MA 02215" +224280,27in FHD Monitor,1,149.99,07/12/19 11:33,"108 Lakeview St, San Francisco, CA 94016" +224281,Google Phone,1,600,07/29/19 19:19,"884 12th St, Atlanta, GA 30301" +224282,Wired Headphones,2,11.99,07/16/19 08:41,"541 8th St, San Francisco, CA 94016" +224282,34in Ultrawide Monitor,1,379.99,07/16/19 08:41,"541 8th St, San Francisco, CA 94016" +224283,Lightning Charging Cable,1,14.95,07/05/19 14:21,"217 Madison St, Dallas, TX 75001" +224284,AAA Batteries (4-pack),2,2.99,07/29/19 18:21,"808 13th St, Los Angeles, CA 90001" +224285,Google Phone,1,600,07/05/19 13:29,"1 Adams St, Austin, TX 73301" +224286,AAA Batteries (4-pack),2,2.99,07/04/19 17:20,"252 14th St, Atlanta, GA 30301" +224287,iPhone,1,700,07/14/19 10:36,"879 11th St, Austin, TX 73301" +224287,Lightning Charging Cable,1,14.95,07/14/19 10:36,"879 11th St, Austin, TX 73301" +224288,Lightning Charging Cable,2,14.95,07/20/19 10:31,"146 Elm St, Los Angeles, CA 90001" +224288,34in Ultrawide Monitor,1,379.99,07/20/19 10:31,"146 Elm St, Los Angeles, CA 90001" +224289,Bose SoundSport Headphones,1,99.99,07/08/19 18:37,"275 Cedar St, San Francisco, CA 94016" +224290,20in Monitor,1,109.99,07/06/19 19:38,"724 5th St, San Francisco, CA 94016" +224291,Wired Headphones,1,11.99,07/02/19 12:59,"274 Ridge St, Boston, MA 02215" +224292,Wired Headphones,1,11.99,07/18/19 10:43,"778 Adams St, Atlanta, GA 30301" +224293,Wired Headphones,1,11.99,07/24/19 20:41,"106 5th St, Portland, OR 97035" +224294,AAA Batteries (4-pack),1,2.99,07/20/19 19:29,"353 Wilson St, Portland, OR 97035" +224295,iPhone,1,700,07/04/19 21:26,"742 Center St, Seattle, WA 98101" +224296,AA Batteries (4-pack),1,3.84,07/19/19 21:27,"388 13th St, San Francisco, CA 94016" +224297,Lightning Charging Cable,1,14.95,07/21/19 23:05,"469 13th St, Los Angeles, CA 90001" +224298,ThinkPad Laptop,1,999.99,07/17/19 21:58,"990 4th St, Atlanta, GA 30301" +224299,Macbook Pro Laptop,1,1700,07/18/19 23:28,"173 Church St, Portland, OR 97035" +224300,USB-C Charging Cable,1,11.95,07/13/19 20:33,"905 South St, Seattle, WA 98101" +224301,Flatscreen TV,1,300,07/25/19 12:59,"847 Church St, Boston, MA 02215" +224302,AAA Batteries (4-pack),1,2.99,07/26/19 11:33,"856 Ridge St, New York City, NY 10001" +224303,20in Monitor,1,109.99,07/14/19 17:19,"966 Chestnut St, Los Angeles, CA 90001" +224304,27in 4K Gaming Monitor,1,389.99,07/04/19 21:46,"641 Center St, Boston, MA 02215" +224305,Lightning Charging Cable,1,14.95,07/27/19 19:12,"683 14th St, San Francisco, CA 94016" +224306,Apple Airpods Headphones,1,150,07/12/19 18:23,"861 Church St, Portland, OR 97035" +224307,Apple Airpods Headphones,1,150,07/19/19 07:35,"954 Walnut St, Atlanta, GA 30301" +224308,Lightning Charging Cable,1,14.95,07/31/19 21:37,"267 Washington St, Dallas, TX 75001" +224309,AA Batteries (4-pack),2,3.84,07/11/19 14:32,"989 10th St, Seattle, WA 98101" +224310,20in Monitor,1,109.99,07/16/19 17:04,"232 Lakeview St, Austin, TX 73301" +224311,USB-C Charging Cable,1,11.95,07/07/19 10:26,"223 Dogwood St, San Francisco, CA 94016" +224312,AA Batteries (4-pack),1,3.84,07/23/19 14:05,"509 Hickory St, Seattle, WA 98101" +224312,34in Ultrawide Monitor,1,379.99,07/23/19 14:05,"509 Hickory St, Seattle, WA 98101" +224313,USB-C Charging Cable,1,11.95,07/02/19 18:48,"673 Forest St, Dallas, TX 75001" +224314,Apple Airpods Headphones,1,150,07/26/19 22:52,"297 Washington St, Boston, MA 02215" +224315,Google Phone,1,600,07/30/19 07:04,"995 Cherry St, Portland, OR 97035" +224315,USB-C Charging Cable,1,11.95,07/30/19 07:04,"995 Cherry St, Portland, OR 97035" +224316,Apple Airpods Headphones,1,150,07/12/19 21:37,"572 Wilson St, New York City, NY 10001" +224317,Wired Headphones,1,11.99,07/01/19 17:19,"421 Johnson St, Seattle, WA 98101" +224318,Lightning Charging Cable,1,14.95,07/31/19 17:20,"252 West St, New York City, NY 10001" +224319,Flatscreen TV,1,300,07/10/19 13:30,"675 Elm St, Boston, MA 02215" +224320,Flatscreen TV,1,300,07/16/19 15:59,"349 Ridge St, Atlanta, GA 30301" +224321,Wired Headphones,1,11.99,07/26/19 18:23,"13 2nd St, Austin, TX 73301" +224322,Apple Airpods Headphones,1,150,07/12/19 10:28,"806 Lake St, Los Angeles, CA 90001" +224323,AA Batteries (4-pack),1,3.84,07/31/19 14:32,"311 5th St, Dallas, TX 75001" +224324,AAA Batteries (4-pack),1,2.99,07/28/19 09:31,"754 Dogwood St, Dallas, TX 75001" +224325,Lightning Charging Cable,1,14.95,07/19/19 14:11,"145 West St, Boston, MA 02215" +224326,Google Phone,1,600,07/14/19 20:02,"709 Cedar St, Dallas, TX 75001" +224326,USB-C Charging Cable,1,11.95,07/14/19 20:02,"709 Cedar St, Dallas, TX 75001" +224327,Flatscreen TV,1,300,07/13/19 21:44,"636 Lake St, Atlanta, GA 30301" +224328,Wired Headphones,1,11.99,07/22/19 17:50,"111 Hickory St, Los Angeles, CA 90001" +224329,AAA Batteries (4-pack),1,2.99,07/14/19 11:08,"622 9th St, Los Angeles, CA 90001" +224330,AAA Batteries (4-pack),2,2.99,07/09/19 19:26,"74 13th St, New York City, NY 10001" +224331,20in Monitor,1,109.99,07/06/19 03:46,"654 12th St, San Francisco, CA 94016" +224332,AAA Batteries (4-pack),1,2.99,07/20/19 21:32,"816 10th St, San Francisco, CA 94016" +224333,Vareebadd Phone,1,400,07/06/19 15:48,"438 Meadow St, Boston, MA 02215" +224333,Wired Headphones,1,11.99,07/06/19 15:48,"438 Meadow St, Boston, MA 02215" +224334,27in 4K Gaming Monitor,1,389.99,07/25/19 00:39,"845 Meadow St, Los Angeles, CA 90001" +224335,AAA Batteries (4-pack),2,2.99,07/17/19 22:29,"487 8th St, San Francisco, CA 94016" +224336,20in Monitor,1,109.99,07/07/19 14:15,"221 1st St, Los Angeles, CA 90001" +224337,Wired Headphones,1,11.99,07/16/19 02:11,"858 Hickory St, New York City, NY 10001" +224338,Wired Headphones,1,11.99,07/19/19 12:11,"547 North St, San Francisco, CA 94016" +224339,AA Batteries (4-pack),1,3.84,07/26/19 20:36,"105 Willow St, Portland, OR 97035" +224340,Macbook Pro Laptop,1,1700,07/13/19 14:11,"85 Pine St, Los Angeles, CA 90001" +224341,AAA Batteries (4-pack),1,2.99,07/06/19 00:34,"511 9th St, Boston, MA 02215" +224342,Flatscreen TV,1,300,07/24/19 13:44,"42 Meadow St, Portland, OR 97035" +224343,USB-C Charging Cable,1,11.95,07/23/19 17:44,"174 Main St, Los Angeles, CA 90001" +224344,AA Batteries (4-pack),2,3.84,07/04/19 13:15,"632 Center St, Seattle, WA 98101" +224345,AA Batteries (4-pack),1,3.84,07/14/19 21:02,"694 Jackson St, San Francisco, CA 94016" +224346,Bose SoundSport Headphones,1,99.99,07/02/19 10:23,"408 7th St, Boston, MA 02215" +224347,Wired Headphones,1,11.99,07/05/19 18:24,"506 Hickory St, Seattle, WA 98101" +224348,AAA Batteries (4-pack),1,2.99,07/06/19 19:58,"416 Johnson St, San Francisco, CA 94016" +224349,AA Batteries (4-pack),1,3.84,07/02/19 23:54,"669 Center St, San Francisco, CA 94016" +224350,USB-C Charging Cable,1,11.95,07/27/19 12:38,"452 Washington St, Boston, MA 02215" +224351,Lightning Charging Cable,1,14.95,07/10/19 11:40,"859 Wilson St, New York City, NY 10001" +224352,Wired Headphones,1,11.99,07/25/19 13:54,"510 Hickory St, Portland, ME 04101" +224353,27in FHD Monitor,1,149.99,07/19/19 19:49,"61 Hill St, Dallas, TX 75001" +224354,Lightning Charging Cable,1,14.95,07/01/19 18:29,"24 North St, San Francisco, CA 94016" +224355,AA Batteries (4-pack),1,3.84,07/30/19 16:58,"389 Madison St, San Francisco, CA 94016" +224356,USB-C Charging Cable,1,11.95,07/01/19 17:10,"874 River St, San Francisco, CA 94016" +224357,iPhone,1,700,07/09/19 17:28,"359 Meadow St, Los Angeles, CA 90001" +224358,AAA Batteries (4-pack),2,2.99,07/31/19 14:19,"148 Sunset St, Boston, MA 02215" +224359,AA Batteries (4-pack),1,3.84,07/14/19 21:32,"746 Highland St, San Francisco, CA 94016" +224360,USB-C Charging Cable,1,11.95,07/16/19 05:11,"970 Washington St, Los Angeles, CA 90001" +224361,AAA Batteries (4-pack),1,2.99,07/16/19 20:05,"207 North St, Boston, MA 02215" +224362,Flatscreen TV,1,300,07/24/19 16:53,"748 Maple St, Portland, ME 04101" +224363,USB-C Charging Cable,1,11.95,07/26/19 18:42,"97 Park St, Atlanta, GA 30301" +224364,Lightning Charging Cable,1,14.95,07/24/19 22:03,"87 Johnson St, Boston, MA 02215" +224365,ThinkPad Laptop,1,999.99,07/14/19 19:59,"52 Spruce St, Boston, MA 02215" +224366,USB-C Charging Cable,1,11.95,07/03/19 21:48,"234 Maple St, Seattle, WA 98101" +224367,LG Dryer,1,600.0,07/22/19 19:39,"344 13th St, Atlanta, GA 30301" +224368,34in Ultrawide Monitor,1,379.99,07/27/19 16:23,"839 Church St, Los Angeles, CA 90001" +224369,Lightning Charging Cable,2,14.95,07/01/19 19:44,"211 Wilson St, New York City, NY 10001" +224370,Wired Headphones,1,11.99,07/31/19 17:48,"331 Madison St, Seattle, WA 98101" +224371,Lightning Charging Cable,1,14.95,07/09/19 14:32,"64 6th St, New York City, NY 10001" +224372,Vareebadd Phone,1,400,07/09/19 15:39,"551 Wilson St, Atlanta, GA 30301" +224373,AAA Batteries (4-pack),1,2.99,07/07/19 12:19,"64 12th St, Atlanta, GA 30301" +224374,Google Phone,1,600,07/05/19 14:13,"365 West St, Portland, OR 97035" +224375,20in Monitor,1,109.99,07/28/19 21:09,"756 Walnut St, San Francisco, CA 94016" +224376,Lightning Charging Cable,1,14.95,07/22/19 11:58,"327 Dogwood St, Los Angeles, CA 90001" +224377,AA Batteries (4-pack),1,3.84,07/11/19 12:04,"646 Walnut St, Boston, MA 02215" +224378,Lightning Charging Cable,1,14.95,07/07/19 22:30,"230 Chestnut St, Boston, MA 02215" +224379,34in Ultrawide Monitor,1,379.99,07/12/19 03:27,"809 Walnut St, Dallas, TX 75001" +224380,AAA Batteries (4-pack),1,2.99,07/01/19 11:56,"565 West St, San Francisco, CA 94016" +224381,Lightning Charging Cable,1,14.95,07/25/19 11:23,"614 Dogwood St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +224382,AAA Batteries (4-pack),1,2.99,07/18/19 04:05,"249 Hill St, New York City, NY 10001" +224383,Wired Headphones,1,11.99,07/08/19 16:03,"108 7th St, Seattle, WA 98101" +224384,AAA Batteries (4-pack),1,2.99,07/31/19 18:02,"128 South St, San Francisco, CA 94016" +224385,AA Batteries (4-pack),2,3.84,07/21/19 07:22,"621 Adams St, Seattle, WA 98101" +224386,Lightning Charging Cable,1,14.95,07/10/19 18:21,"467 Lakeview St, Los Angeles, CA 90001" +224386,27in 4K Gaming Monitor,1,389.99,07/10/19 18:21,"467 Lakeview St, Los Angeles, CA 90001" +224387,USB-C Charging Cable,1,11.95,07/09/19 21:18,"453 Willow St, San Francisco, CA 94016" +224388,Lightning Charging Cable,1,14.95,07/22/19 16:57,"801 Park St, Los Angeles, CA 90001" +224389,AA Batteries (4-pack),1,3.84,07/07/19 16:35,"698 Park St, New York City, NY 10001" +224390,Macbook Pro Laptop,1,1700,07/16/19 10:28,"14 7th St, Dallas, TX 75001" +224391,27in FHD Monitor,1,149.99,07/12/19 17:39,"618 2nd St, Dallas, TX 75001" +224392,Google Phone,1,600,07/04/19 11:10,"369 Lakeview St, Atlanta, GA 30301" +224393,Lightning Charging Cable,1,14.95,07/12/19 11:26,"261 Main St, Boston, MA 02215" +224394,USB-C Charging Cable,1,11.95,07/15/19 18:23,"220 Jackson St, San Francisco, CA 94016" +224395,Lightning Charging Cable,1,14.95,07/03/19 07:20,"484 Dogwood St, San Francisco, CA 94016" +224396,Wired Headphones,1,11.99,07/21/19 18:12,"173 Lake St, Boston, MA 02215" +224397,Apple Airpods Headphones,1,150,07/19/19 17:15,"51 Willow St, San Francisco, CA 94016" +224398,AA Batteries (4-pack),1,3.84,07/13/19 19:42,"556 7th St, Seattle, WA 98101" +224399,AA Batteries (4-pack),1,3.84,07/14/19 21:36,"617 5th St, New York City, NY 10001" +224400,USB-C Charging Cable,1,11.95,07/10/19 11:13,"809 14th St, Austin, TX 73301" +224401,Apple Airpods Headphones,1,150,07/05/19 16:53,"251 Walnut St, Boston, MA 02215" +224402,USB-C Charging Cable,1,11.95,07/29/19 20:21,"704 Hill St, Los Angeles, CA 90001" +224403,AAA Batteries (4-pack),2,2.99,07/17/19 16:20,"104 Meadow St, San Francisco, CA 94016" +224404,Wired Headphones,1,11.99,07/31/19 14:38,"307 Lincoln St, Dallas, TX 75001" +224405,AAA Batteries (4-pack),1,2.99,07/28/19 17:39,"963 9th St, Atlanta, GA 30301" +224406,Wired Headphones,1,11.99,07/14/19 11:55,"481 Forest St, New York City, NY 10001" +224407,AAA Batteries (4-pack),1,2.99,07/19/19 21:18,"92 Jackson St, Dallas, TX 75001" +224408,AA Batteries (4-pack),1,3.84,07/31/19 02:20,"129 Meadow St, New York City, NY 10001" +224409,34in Ultrawide Monitor,1,379.99,07/12/19 16:53,"742 Lake St, Los Angeles, CA 90001" +224410,Apple Airpods Headphones,1,150,07/23/19 17:55,"186 Spruce St, Dallas, TX 75001" +224411,AAA Batteries (4-pack),1,2.99,07/24/19 09:27,"204 Johnson St, San Francisco, CA 94016" +224412,AA Batteries (4-pack),1,3.84,07/10/19 16:59,"389 South St, Los Angeles, CA 90001" +224413,AA Batteries (4-pack),2,3.84,07/02/19 08:39,"637 Hickory St, Los Angeles, CA 90001" +224414,27in 4K Gaming Monitor,1,389.99,07/21/19 20:27,"723 Hill St, Dallas, TX 75001" +224415,20in Monitor,1,109.99,07/13/19 23:25,"561 10th St, Los Angeles, CA 90001" +224416,Wired Headphones,1,11.99,07/04/19 13:42,"692 Jackson St, Seattle, WA 98101" +224417,AAA Batteries (4-pack),2,2.99,07/09/19 21:43,"776 Adams St, San Francisco, CA 94016" +224418,27in 4K Gaming Monitor,1,389.99,07/17/19 21:26,"84 Willow St, New York City, NY 10001" +224419,27in 4K Gaming Monitor,1,389.99,07/24/19 20:29,"106 13th St, Atlanta, GA 30301" +224420,Apple Airpods Headphones,1,150,07/17/19 20:21,"248 5th St, Boston, MA 02215" +224421,Lightning Charging Cable,1,14.95,07/16/19 12:38,"8 Hickory St, San Francisco, CA 94016" +224422,USB-C Charging Cable,1,11.95,07/10/19 18:55,"144 Johnson St, Dallas, TX 75001" +224423,Macbook Pro Laptop,1,1700,07/08/19 16:45,"396 13th St, Atlanta, GA 30301" +224424,AAA Batteries (4-pack),1,2.99,07/18/19 18:08,"726 North St, Portland, OR 97035" +224425,AAA Batteries (4-pack),1,2.99,07/01/19 22:54,"261 Main St, Los Angeles, CA 90001" +224426,AAA Batteries (4-pack),2,2.99,07/23/19 16:46,"793 Hill St, Dallas, TX 75001" +224427,Apple Airpods Headphones,1,150,07/31/19 12:32,"525 West St, San Francisco, CA 94016" +224428,AAA Batteries (4-pack),1,2.99,07/06/19 11:07,"86 10th St, New York City, NY 10001" +224429,27in FHD Monitor,1,149.99,07/09/19 13:22,"594 1st St, Atlanta, GA 30301" +224430,AAA Batteries (4-pack),1,2.99,07/01/19 21:32,"168 Willow St, Austin, TX 73301" +224431,Bose SoundSport Headphones,1,99.99,07/10/19 22:31,"404 4th St, Boston, MA 02215" +224432,27in 4K Gaming Monitor,1,389.99,07/02/19 13:55,"13 Highland St, Los Angeles, CA 90001" +224433,AAA Batteries (4-pack),2,2.99,07/06/19 20:29,"355 Center St, Los Angeles, CA 90001" +224434,Bose SoundSport Headphones,1,99.99,07/03/19 13:10,"354 West St, Seattle, WA 98101" +224435,AAA Batteries (4-pack),2,2.99,07/14/19 16:24,"946 10th St, Atlanta, GA 30301" +224436,27in FHD Monitor,1,149.99,07/13/19 10:03,"378 Hickory St, New York City, NY 10001" +224437,Lightning Charging Cable,1,14.95,07/21/19 19:43,"206 Park St, Boston, MA 02215" +224437,Apple Airpods Headphones,1,150,07/21/19 19:43,"206 Park St, Boston, MA 02215" +224438,Lightning Charging Cable,1,14.95,07/13/19 22:25,"871 North St, Dallas, TX 75001" +224439,USB-C Charging Cable,1,11.95,07/26/19 08:10,"283 7th St, New York City, NY 10001" +224440,27in FHD Monitor,1,149.99,07/12/19 14:50,"928 14th St, Boston, MA 02215" +224441,Lightning Charging Cable,1,14.95,07/06/19 06:30,"274 Spruce St, Portland, OR 97035" +224442,Wired Headphones,1,11.99,07/20/19 14:14,"366 Chestnut St, Atlanta, GA 30301" +224442,27in FHD Monitor,1,149.99,07/20/19 14:14,"366 Chestnut St, Atlanta, GA 30301" +224443,34in Ultrawide Monitor,1,379.99,07/17/19 13:30,"580 Maple St, San Francisco, CA 94016" +224444,Wired Headphones,1,11.99,07/21/19 10:47,"448 Walnut St, New York City, NY 10001" +224444,USB-C Charging Cable,1,11.95,07/21/19 10:47,"448 Walnut St, New York City, NY 10001" +224445,USB-C Charging Cable,1,11.95,07/30/19 22:08,"798 11th St, Seattle, WA 98101" +224446,AAA Batteries (4-pack),1,2.99,07/04/19 20:18,"226 4th St, San Francisco, CA 94016" +224447,AA Batteries (4-pack),1,3.84,07/12/19 08:09,"886 Ridge St, Portland, ME 04101" +224448,Bose SoundSport Headphones,1,99.99,07/21/19 07:46,"986 Pine St, San Francisco, CA 94016" +224449,Apple Airpods Headphones,1,150,07/12/19 21:30,"851 2nd St, San Francisco, CA 94016" +224450,Apple Airpods Headphones,1,150,07/13/19 21:15,"900 Cherry St, Seattle, WA 98101" +224451,USB-C Charging Cable,1,11.95,07/15/19 17:53,"568 Pine St, Portland, OR 97035" +224452,Bose SoundSport Headphones,1,99.99,07/17/19 13:41,"735 Maple St, San Francisco, CA 94016" +224453,AA Batteries (4-pack),1,3.84,07/27/19 20:54,"414 Hickory St, New York City, NY 10001" +224454,27in FHD Monitor,1,149.99,07/04/19 21:14,"166 Elm St, San Francisco, CA 94016" +224455,27in FHD Monitor,1,149.99,07/19/19 15:03,"693 11th St, Austin, TX 73301" +224456,Bose SoundSport Headphones,1,99.99,07/02/19 22:29,"155 North St, Atlanta, GA 30301" +224457,27in FHD Monitor,1,149.99,07/09/19 13:10,"905 Cherry St, Seattle, WA 98101" +224458,USB-C Charging Cable,1,11.95,07/03/19 15:47,"664 Elm St, Austin, TX 73301" +224459,27in FHD Monitor,1,149.99,07/29/19 11:54,"520 Spruce St, Portland, ME 04101" +224460,AAA Batteries (4-pack),1,2.99,07/29/19 09:26,"715 1st St, San Francisco, CA 94016" +224461,Bose SoundSport Headphones,1,99.99,07/03/19 22:58,"120 North St, New York City, NY 10001" +224462,Apple Airpods Headphones,1,150,07/08/19 09:22,"892 Hickory St, Seattle, WA 98101" +224463,AAA Batteries (4-pack),1,2.99,07/05/19 16:16,"614 Willow St, New York City, NY 10001" +224464,Wired Headphones,1,11.99,07/22/19 19:54,"632 West St, San Francisco, CA 94016" +224465,USB-C Charging Cable,1,11.95,07/15/19 18:46,"710 Madison St, San Francisco, CA 94016" +224466,Wired Headphones,1,11.99,07/06/19 11:01,"791 Dogwood St, San Francisco, CA 94016" +224467,Lightning Charging Cable,2,14.95,07/16/19 06:47,"816 Elm St, San Francisco, CA 94016" +224468,Wired Headphones,1,11.99,07/23/19 22:19,"203 Jackson St, San Francisco, CA 94016" +224469,Flatscreen TV,1,300,07/10/19 01:21,"731 Main St, Atlanta, GA 30301" +224470,Wired Headphones,1,11.99,07/16/19 21:04,"286 Lincoln St, Los Angeles, CA 90001" +224471,AAA Batteries (4-pack),1,2.99,07/07/19 22:17,"165 Sunset St, San Francisco, CA 94016" +224472,AA Batteries (4-pack),1,3.84,07/02/19 13:19,"51 Hickory St, New York City, NY 10001" +224473,Google Phone,1,600,07/09/19 18:08,"180 6th St, San Francisco, CA 94016" +224473,Wired Headphones,1,11.99,07/09/19 18:08,"180 6th St, San Francisco, CA 94016" +224474,AAA Batteries (4-pack),1,2.99,07/09/19 21:34,"19 Washington St, Seattle, WA 98101" +224474,USB-C Charging Cable,1,11.95,07/09/19 21:34,"19 Washington St, Seattle, WA 98101" +224475,AAA Batteries (4-pack),1,2.99,07/06/19 09:37,"387 Dogwood St, Los Angeles, CA 90001" +224476,iPhone,1,700,07/26/19 19:34,"943 9th St, Dallas, TX 75001" +224476,Apple Airpods Headphones,1,150,07/26/19 19:34,"943 9th St, Dallas, TX 75001" +224477,Macbook Pro Laptop,1,1700,07/15/19 22:30,"549 Cherry St, Portland, OR 97035" +224478,AA Batteries (4-pack),1,3.84,07/19/19 12:01,"431 Park St, Boston, MA 02215" +224479,Wired Headphones,1,11.99,07/01/19 12:38,"328 Jackson St, Los Angeles, CA 90001" +224480,27in FHD Monitor,1,149.99,07/09/19 18:59,"777 11th St, Portland, OR 97035" +224481,AA Batteries (4-pack),1,3.84,07/20/19 13:27,"593 Lakeview St, Los Angeles, CA 90001" +224482,iPhone,1,700,07/09/19 13:40,"438 Lake St, Atlanta, GA 30301" +224482,Lightning Charging Cable,1,14.95,07/09/19 13:40,"438 Lake St, Atlanta, GA 30301" +224483,LG Dryer,1,600.0,07/13/19 19:23,"466 Cherry St, Atlanta, GA 30301" +224484,Bose SoundSport Headphones,1,99.99,07/07/19 17:12,"380 10th St, San Francisco, CA 94016" +224485,AA Batteries (4-pack),2,3.84,07/06/19 07:48,"154 Chestnut St, Boston, MA 02215" +224486,Bose SoundSport Headphones,1,99.99,07/21/19 08:37,"592 Chestnut St, Seattle, WA 98101" +224487,AAA Batteries (4-pack),3,2.99,07/08/19 11:11,"191 12th St, Dallas, TX 75001" +224488,Google Phone,1,600,07/12/19 16:36,"863 Park St, Los Angeles, CA 90001" +224489,AA Batteries (4-pack),1,3.84,07/25/19 15:07,"48 Sunset St, New York City, NY 10001" +224490,Bose SoundSport Headphones,1,99.99,07/11/19 14:15,"280 Dogwood St, Seattle, WA 98101" +224491,iPhone,1,700,07/09/19 08:54,"585 Walnut St, San Francisco, CA 94016" +224492,AAA Batteries (4-pack),1,2.99,07/05/19 13:42,"833 West St, Austin, TX 73301" +224493,Apple Airpods Headphones,1,150,07/30/19 12:15,"988 Lincoln St, San Francisco, CA 94016" +224494,Apple Airpods Headphones,1,150,07/09/19 19:54,"861 Hickory St, Los Angeles, CA 90001" +224494,USB-C Charging Cable,1,11.95,07/09/19 19:54,"861 Hickory St, Los Angeles, CA 90001" +224495,27in 4K Gaming Monitor,1,389.99,07/23/19 10:06,"866 1st St, Boston, MA 02215" +224496,Bose SoundSport Headphones,1,99.99,07/03/19 18:13,"75 Lake St, Boston, MA 02215" +224497,Lightning Charging Cable,1,14.95,07/17/19 09:23,"73 11th St, Boston, MA 02215" +224498,34in Ultrawide Monitor,1,379.99,07/19/19 00:07,"144 Pine St, Seattle, WA 98101" +224499,AA Batteries (4-pack),1,3.84,07/01/19 16:15,"37 12th St, Los Angeles, CA 90001" +224500,AAA Batteries (4-pack),1,2.99,08/01/19 00:58,"744 Jackson St, Austin, TX 73301" +224501,AA Batteries (4-pack),1,3.84,07/25/19 18:09,"757 Madison St, Los Angeles, CA 90001" +224502,20in Monitor,1,109.99,07/25/19 11:38,"544 Adams St, Boston, MA 02215" +224503,AAA Batteries (4-pack),2,2.99,07/18/19 14:10,"214 Johnson St, Boston, MA 02215" +224504,USB-C Charging Cable,1,11.95,07/14/19 22:51,"937 8th St, Atlanta, GA 30301" +224505,Wired Headphones,1,11.99,07/14/19 08:10,"245 Cherry St, San Francisco, CA 94016" +224506,Apple Airpods Headphones,1,150,07/02/19 17:31,"247 Hickory St, Boston, MA 02215" +224507,AA Batteries (4-pack),1,3.84,07/10/19 15:32,"716 Washington St, San Francisco, CA 94016" +224508,Google Phone,1,600,07/31/19 19:03,"618 11th St, San Francisco, CA 94016" +224509,Lightning Charging Cable,1,14.95,07/15/19 11:21,"769 11th St, Dallas, TX 75001" +224510,AA Batteries (4-pack),1,3.84,07/23/19 14:35,"918 Hickory St, San Francisco, CA 94016" +224511,Lightning Charging Cable,1,14.95,07/04/19 20:22,"52 Maple St, San Francisco, CA 94016" +224512,AAA Batteries (4-pack),1,2.99,07/15/19 18:10,"54 South St, Austin, TX 73301" +224513,Wired Headphones,1,11.99,07/15/19 11:38,"612 Church St, Atlanta, GA 30301" +224514,Bose SoundSport Headphones,1,99.99,07/23/19 21:09,"81 Maple St, Los Angeles, CA 90001" +224515,27in FHD Monitor,1,149.99,07/10/19 13:22,"984 Lakeview St, Los Angeles, CA 90001" +224516,AA Batteries (4-pack),2,3.84,07/30/19 10:46,"554 8th St, San Francisco, CA 94016" +224517,USB-C Charging Cable,1,11.95,07/23/19 19:48,"242 Spruce St, Austin, TX 73301" +224518,Lightning Charging Cable,1,14.95,07/22/19 22:49,"42 Church St, Atlanta, GA 30301" +224519,Wired Headphones,1,11.99,07/15/19 21:54,"872 Jackson St, Atlanta, GA 30301" +224520,Apple Airpods Headphones,1,150,07/25/19 15:05,"186 West St, Seattle, WA 98101" +224521,20in Monitor,1,109.99,07/14/19 01:47,"110 12th St, Boston, MA 02215" +224522,iPhone,1,700,07/17/19 09:31,"940 Johnson St, Los Angeles, CA 90001" +224522,Lightning Charging Cable,1,14.95,07/17/19 09:31,"940 Johnson St, Los Angeles, CA 90001" +224523,27in 4K Gaming Monitor,1,389.99,07/07/19 20:21,"523 Center St, New York City, NY 10001" +224524,Bose SoundSport Headphones,1,99.99,07/10/19 17:06,"927 Elm St, New York City, NY 10001" +224525,iPhone,1,700,07/29/19 01:19,"754 West St, San Francisco, CA 94016" +224526,USB-C Charging Cable,1,11.95,07/07/19 22:01,"712 Walnut St, Seattle, WA 98101" +224527,USB-C Charging Cable,1,11.95,07/03/19 18:52,"499 Cedar St, New York City, NY 10001" +224528,Apple Airpods Headphones,1,150,07/11/19 15:27,"443 Pine St, San Francisco, CA 94016" +224528,AA Batteries (4-pack),1,3.84,07/11/19 15:27,"443 Pine St, San Francisco, CA 94016" +224529,27in 4K Gaming Monitor,1,389.99,07/31/19 12:47,"933 South St, Dallas, TX 75001" +224530,Flatscreen TV,1,300,07/10/19 06:22,"738 4th St, Boston, MA 02215" +224531,Flatscreen TV,1,300,07/21/19 21:22,"357 5th St, New York City, NY 10001" +224532,USB-C Charging Cable,2,11.95,07/13/19 10:32,"463 Elm St, Portland, OR 97035" +224533,Wired Headphones,2,11.99,07/23/19 18:03,"510 Church St, Boston, MA 02215" +224534,iPhone,1,700,07/20/19 12:25,"927 River St, San Francisco, CA 94016" +224535,Lightning Charging Cable,1,14.95,07/18/19 13:51,"753 Maple St, New York City, NY 10001" +224536,Macbook Pro Laptop,1,1700,07/14/19 13:05,"729 Lincoln St, Seattle, WA 98101" +224537,27in FHD Monitor,1,149.99,07/19/19 16:23,"455 Walnut St, Atlanta, GA 30301" +224538,20in Monitor,1,109.99,07/07/19 08:34,"621 Center St, Atlanta, GA 30301" +224539,Wired Headphones,1,11.99,07/01/19 13:19,"992 Jackson St, Seattle, WA 98101" +224540,Lightning Charging Cable,2,14.95,07/05/19 14:17,"895 4th St, Boston, MA 02215" +224541,34in Ultrawide Monitor,1,379.99,07/20/19 17:16,"477 9th St, San Francisco, CA 94016" +224542,USB-C Charging Cable,1,11.95,07/04/19 22:46,"597 Main St, Atlanta, GA 30301" +224543,34in Ultrawide Monitor,1,379.99,07/11/19 14:44,"979 Meadow St, Boston, MA 02215" +224544,34in Ultrawide Monitor,1,379.99,07/04/19 16:48,"383 Maple St, Atlanta, GA 30301" +224545,USB-C Charging Cable,1,11.95,07/19/19 17:42,"96 13th St, Boston, MA 02215" +224546,AA Batteries (4-pack),1,3.84,07/24/19 12:06,"618 North St, Austin, TX 73301" +224547,Wired Headphones,1,11.99,07/09/19 12:09,"713 Madison St, Dallas, TX 75001" +224548,AA Batteries (4-pack),1,3.84,07/06/19 11:13,"100 5th St, San Francisco, CA 94016" +224549,USB-C Charging Cable,1,11.95,07/20/19 16:03,"858 Sunset St, San Francisco, CA 94016" +224550,iPhone,1,700,07/03/19 11:14,"120 Jackson St, Los Angeles, CA 90001" +224551,USB-C Charging Cable,1,11.95,07/23/19 22:14,"996 14th St, Los Angeles, CA 90001" +224552,Lightning Charging Cable,1,14.95,07/01/19 15:24,"561 Ridge St, Los Angeles, CA 90001" +224553,AA Batteries (4-pack),1,3.84,07/09/19 11:06,"479 Willow St, Los Angeles, CA 90001" +224554,Lightning Charging Cable,1,14.95,07/10/19 01:04,"577 Johnson St, Boston, MA 02215" +224555,Wired Headphones,1,11.99,07/14/19 10:26,"370 Lincoln St, Los Angeles, CA 90001" +224556,Vareebadd Phone,1,400,07/18/19 15:00,"745 6th St, San Francisco, CA 94016" +224556,USB-C Charging Cable,1,11.95,07/18/19 15:00,"745 6th St, San Francisco, CA 94016" +224557,AAA Batteries (4-pack),1,2.99,07/14/19 14:49,"135 Center St, New York City, NY 10001" +224558,Wired Headphones,1,11.99,07/30/19 21:08,"561 North St, Dallas, TX 75001" +224559,Flatscreen TV,1,300,07/19/19 13:29,"213 8th St, Atlanta, GA 30301" +224560,Macbook Pro Laptop,1,1700,07/25/19 13:26,"87 Park St, Boston, MA 02215" +224561,USB-C Charging Cable,2,11.95,07/17/19 18:52,"195 Ridge St, Atlanta, GA 30301" +224562,ThinkPad Laptop,1,999.99,07/05/19 16:57,"496 Elm St, Seattle, WA 98101" +224562,Macbook Pro Laptop,1,1700,07/05/19 16:57,"496 Elm St, Seattle, WA 98101" +224563,AA Batteries (4-pack),1,3.84,07/03/19 13:49,"49 7th St, San Francisco, CA 94016" +224564,USB-C Charging Cable,1,11.95,07/12/19 18:08,"794 12th St, Seattle, WA 98101" +224564,Wired Headphones,1,11.99,07/12/19 18:08,"794 12th St, Seattle, WA 98101" +224565,27in FHD Monitor,1,149.99,07/14/19 12:29,"346 Cherry St, Boston, MA 02215" +224566,iPhone,1,700,07/20/19 14:25,"692 Johnson St, Portland, ME 04101" +224567,Lightning Charging Cable,1,14.95,07/20/19 20:54,"174 8th St, New York City, NY 10001" +224568,AAA Batteries (4-pack),1,2.99,07/15/19 18:32,"251 Chestnut St, New York City, NY 10001" +224569,Apple Airpods Headphones,1,150,07/18/19 11:37,"806 West St, Seattle, WA 98101" +224570,Lightning Charging Cable,1,14.95,07/29/19 11:25,"239 Lincoln St, Boston, MA 02215" +224571,USB-C Charging Cable,1,11.95,07/17/19 09:40,"750 Madison St, Austin, TX 73301" +224572,Wired Headphones,1,11.99,07/03/19 17:28,"632 Lake St, Dallas, TX 75001" +224573,USB-C Charging Cable,1,11.95,07/31/19 15:35,"358 Maple St, Los Angeles, CA 90001" +224574,Lightning Charging Cable,1,14.95,07/27/19 22:03,"278 Walnut St, Los Angeles, CA 90001" +224575,LG Dryer,1,600.0,07/27/19 09:10,"12 Lake St, Portland, OR 97035" +224576,AA Batteries (4-pack),2,3.84,07/11/19 10:43,"925 12th St, Los Angeles, CA 90001" +224577,USB-C Charging Cable,1,11.95,07/03/19 23:37,"283 Spruce St, Boston, MA 02215" +224578,AA Batteries (4-pack),1,3.84,07/02/19 14:31,"464 Sunset St, New York City, NY 10001" +224579,Bose SoundSport Headphones,1,99.99,07/07/19 11:33,"340 Willow St, Los Angeles, CA 90001" +224580,Lightning Charging Cable,1,14.95,07/04/19 12:16,"844 Washington St, New York City, NY 10001" +224581,AA Batteries (4-pack),1,3.84,07/04/19 11:58,"923 Church St, Boston, MA 02215" +224582,Wired Headphones,1,11.99,07/13/19 03:02,"507 12th St, San Francisco, CA 94016" +224583,Lightning Charging Cable,1,14.95,07/23/19 07:22,"829 Lakeview St, San Francisco, CA 94016" +224584,Wired Headphones,1,11.99,07/13/19 19:55,"366 River St, Seattle, WA 98101" +224585,Lightning Charging Cable,1,14.95,07/15/19 11:48,"421 Walnut St, New York City, NY 10001" +224586,USB-C Charging Cable,1,11.95,07/02/19 14:00,"629 11th St, New York City, NY 10001" +224587,USB-C Charging Cable,1,11.95,07/16/19 20:15,"698 Hickory St, Seattle, WA 98101" +224588,LG Dryer,1,600.0,07/13/19 16:55,"986 Ridge St, San Francisco, CA 94016" +224589,Apple Airpods Headphones,1,150,07/30/19 04:26,"471 Ridge St, Seattle, WA 98101" +224590,Apple Airpods Headphones,1,150,07/15/19 10:32,"867 Washington St, San Francisco, CA 94016" +224591,Wired Headphones,1,11.99,07/05/19 20:42,"943 Sunset St, San Francisco, CA 94016" +224592,USB-C Charging Cable,1,11.95,07/22/19 09:45,"236 7th St, Atlanta, GA 30301" +224593,USB-C Charging Cable,1,11.95,07/12/19 15:28,"858 Jackson St, Dallas, TX 75001" +224594,AA Batteries (4-pack),1,3.84,07/29/19 16:58,"482 Cedar St, Austin, TX 73301" +224595,AAA Batteries (4-pack),1,2.99,07/22/19 19:00,"128 Park St, Seattle, WA 98101" +224596,Lightning Charging Cable,1,14.95,07/19/19 11:11,"820 Jefferson St, Seattle, WA 98101" +224597,AA Batteries (4-pack),2,3.84,07/13/19 13:50,"978 Cherry St, Los Angeles, CA 90001" +224598,27in 4K Gaming Monitor,1,389.99,07/17/19 16:20,"292 Jefferson St, San Francisco, CA 94016" +224599,USB-C Charging Cable,1,11.95,07/20/19 21:21,"893 Cherry St, Los Angeles, CA 90001" +224600,Wired Headphones,2,11.99,07/13/19 23:10,"106 2nd St, Los Angeles, CA 90001" +224601,Wired Headphones,1,11.99,07/24/19 13:45,"548 River St, San Francisco, CA 94016" +224602,27in FHD Monitor,1,149.99,07/11/19 20:46,"982 Highland St, San Francisco, CA 94016" +224603,Wired Headphones,1,11.99,07/24/19 20:41,"953 6th St, Los Angeles, CA 90001" +224604,Apple Airpods Headphones,1,150,07/03/19 14:40,"972 Madison St, Atlanta, GA 30301" +224605,AA Batteries (4-pack),2,3.84,07/10/19 15:30,"324 Lincoln St, Boston, MA 02215" +224606,USB-C Charging Cable,1,11.95,07/02/19 13:23,"428 Hickory St, Atlanta, GA 30301" +224607,USB-C Charging Cable,2,11.95,07/03/19 19:16,"35 Chestnut St, San Francisco, CA 94016" +224607,Apple Airpods Headphones,1,150,07/03/19 19:16,"35 Chestnut St, San Francisco, CA 94016" +224608,34in Ultrawide Monitor,1,379.99,07/12/19 17:47,"295 Ridge St, Los Angeles, CA 90001" +224609,Lightning Charging Cable,1,14.95,07/25/19 18:41,"101 7th St, Austin, TX 73301" +224610,Lightning Charging Cable,1,14.95,07/20/19 22:30,"436 Wilson St, Boston, MA 02215" +224611,USB-C Charging Cable,1,11.95,07/05/19 16:44,"8 Hill St, San Francisco, CA 94016" +224612,ThinkPad Laptop,1,999.99,07/28/19 13:40,"876 Hill St, Los Angeles, CA 90001" +224613,Google Phone,1,600,07/11/19 11:50,"390 Maple St, San Francisco, CA 94016" +224613,Google Phone,1,600,07/11/19 11:50,"390 Maple St, San Francisco, CA 94016" +224614,USB-C Charging Cable,1,11.95,07/24/19 11:18,"279 Forest St, Austin, TX 73301" +224615,Wired Headphones,2,11.99,07/15/19 20:59,"623 Washington St, Austin, TX 73301" +224616,Bose SoundSport Headphones,1,99.99,07/18/19 14:35,"515 11th St, San Francisco, CA 94016" +224617,Lightning Charging Cable,1,14.95,07/14/19 22:13,"816 Cedar St, Seattle, WA 98101" +224618,27in FHD Monitor,1,149.99,07/25/19 14:54,"759 Madison St, Boston, MA 02215" +224619,AA Batteries (4-pack),1,3.84,07/12/19 12:56,"344 Jackson St, San Francisco, CA 94016" +224620,LG Dryer,1,600.0,07/11/19 14:11,"724 6th St, San Francisco, CA 94016" +224621,AAA Batteries (4-pack),1,2.99,07/13/19 22:44,"941 Church St, Austin, TX 73301" +224622,AA Batteries (4-pack),1,3.84,07/17/19 21:30,"365 Sunset St, New York City, NY 10001" +224623,Apple Airpods Headphones,1,150,07/03/19 22:10,"582 4th St, Portland, OR 97035" +224624,AAA Batteries (4-pack),1,2.99,07/30/19 12:28,"923 Ridge St, San Francisco, CA 94016" +224625,34in Ultrawide Monitor,1,379.99,07/27/19 22:01,"160 Johnson St, San Francisco, CA 94016" +224626,Wired Headphones,1,11.99,07/25/19 23:29,"837 Wilson St, Austin, TX 73301" +224627,AAA Batteries (4-pack),1,2.99,07/25/19 12:38,"369 12th St, Austin, TX 73301" +224628,Google Phone,1,600,07/01/19 22:47,"76 Church St, San Francisco, CA 94016" +224629,AAA Batteries (4-pack),1,2.99,07/31/19 00:01,"938 9th St, Austin, TX 73301" +224630,Lightning Charging Cable,1,14.95,07/03/19 11:43,"117 Maple St, Portland, OR 97035" +224631,Wired Headphones,1,11.99,07/07/19 10:33,"790 12th St, Los Angeles, CA 90001" +224632,Lightning Charging Cable,1,14.95,07/15/19 14:16,"894 4th St, San Francisco, CA 94016" +224633,Flatscreen TV,1,300,07/28/19 21:04,"9 South St, Los Angeles, CA 90001" +224634,Lightning Charging Cable,1,14.95,07/27/19 15:47,"193 14th St, Dallas, TX 75001" +224635,USB-C Charging Cable,1,11.95,07/11/19 12:19,"971 South St, San Francisco, CA 94016" +224636,Apple Airpods Headphones,1,150,07/30/19 18:03,"14 Willow St, New York City, NY 10001" +224637,Lightning Charging Cable,2,14.95,07/04/19 12:07,"79 Chestnut St, Los Angeles, CA 90001" +224638,AA Batteries (4-pack),1,3.84,07/03/19 20:05,"458 10th St, New York City, NY 10001" +224639,AA Batteries (4-pack),1,3.84,07/23/19 08:12,"751 Lake St, Portland, OR 97035" +224640,Lightning Charging Cable,1,14.95,07/15/19 09:10,"751 Johnson St, Dallas, TX 75001" +224641,Lightning Charging Cable,1,14.95,07/07/19 19:06,"440 Lake St, San Francisco, CA 94016" +224642,AA Batteries (4-pack),1,3.84,07/25/19 19:36,"667 Main St, Los Angeles, CA 90001" +224643,Bose SoundSport Headphones,1,99.99,07/13/19 15:48,"597 5th St, New York City, NY 10001" +224644,AAA Batteries (4-pack),2,2.99,07/11/19 08:20,"551 Maple St, Boston, MA 02215" +224645,34in Ultrawide Monitor,1,379.99,07/08/19 19:49,"765 Cedar St, Boston, MA 02215" +224646,Wired Headphones,1,11.99,07/21/19 08:44,"916 Wilson St, Portland, OR 97035" +224647,USB-C Charging Cable,2,11.95,07/25/19 13:53,"845 Jefferson St, Atlanta, GA 30301" +224648,USB-C Charging Cable,1,11.95,07/11/19 01:01,"4 5th St, San Francisco, CA 94016" +224649,USB-C Charging Cable,1,11.95,07/26/19 19:31,"89 1st St, New York City, NY 10001" +224650,Lightning Charging Cable,1,14.95,07/22/19 09:03,"231 12th St, Los Angeles, CA 90001" +224651,Lightning Charging Cable,1,14.95,07/24/19 20:08,"447 Lakeview St, Portland, ME 04101" +224652,AAA Batteries (4-pack),1,2.99,07/19/19 22:53,"270 7th St, San Francisco, CA 94016" +224653,Apple Airpods Headphones,1,150,07/02/19 23:22,"885 11th St, San Francisco, CA 94016" +224654,Bose SoundSport Headphones,1,99.99,07/10/19 11:33,"498 Forest St, San Francisco, CA 94016" +224655,Macbook Pro Laptop,1,1700,07/03/19 19:05,"912 Johnson St, New York City, NY 10001" +224656,USB-C Charging Cable,1,11.95,07/21/19 12:04,"60 Walnut St, Los Angeles, CA 90001" +224657,20in Monitor,1,109.99,07/18/19 18:03,"231 Ridge St, Dallas, TX 75001" +224658,LG Washing Machine,1,600.0,07/23/19 08:16,"956 Church St, New York City, NY 10001" +224659,AAA Batteries (4-pack),1,2.99,07/16/19 21:10,"673 Hill St, Dallas, TX 75001" +224660,Lightning Charging Cable,1,14.95,07/12/19 13:00,"463 Forest St, San Francisco, CA 94016" +224661,Flatscreen TV,1,300,07/17/19 15:23,"356 6th St, Austin, TX 73301" +224662,27in FHD Monitor,1,149.99,07/13/19 22:42,"223 Sunset St, Austin, TX 73301" +224662,Macbook Pro Laptop,1,1700,07/13/19 22:42,"223 Sunset St, Austin, TX 73301" +224663,AA Batteries (4-pack),2,3.84,07/27/19 17:46,"146 2nd St, Boston, MA 02215" +224664,Wired Headphones,1,11.99,07/02/19 10:51,"29 Jefferson St, Boston, MA 02215" +224665,ThinkPad Laptop,1,999.99,07/27/19 17:37,"230 Johnson St, New York City, NY 10001" +,,,,, +224666,34in Ultrawide Monitor,1,379.99,07/13/19 17:48,"433 Ridge St, San Francisco, CA 94016" +224667,USB-C Charging Cable,1,11.95,07/15/19 05:56,"77 Park St, Los Angeles, CA 90001" +224668,27in FHD Monitor,1,149.99,07/10/19 07:17,"81 8th St, New York City, NY 10001" +224669,Lightning Charging Cable,1,14.95,07/21/19 11:45,"24 Cherry St, Portland, OR 97035" +224670,Flatscreen TV,1,300,07/29/19 11:07,"193 14th St, Portland, OR 97035" +224671,Wired Headphones,1,11.99,07/18/19 20:36,"549 1st St, Dallas, TX 75001" +224672,iPhone,1,700,07/21/19 11:26,"681 Willow St, Atlanta, GA 30301" +224672,Lightning Charging Cable,1,14.95,07/21/19 11:26,"681 Willow St, Atlanta, GA 30301" +224673,AA Batteries (4-pack),3,3.84,07/10/19 09:56,"55 Johnson St, Los Angeles, CA 90001" +224674,Wired Headphones,1,11.99,07/04/19 12:33,"771 Jackson St, Seattle, WA 98101" +224675,Bose SoundSport Headphones,1,99.99,07/21/19 17:41,"332 10th St, Boston, MA 02215" +224676,AAA Batteries (4-pack),1,2.99,07/14/19 19:03,"740 Adams St, Austin, TX 73301" +224677,Lightning Charging Cable,1,14.95,07/13/19 13:13,"398 1st St, New York City, NY 10001" +224678,Wired Headphones,1,11.99,07/14/19 00:26,"393 6th St, Atlanta, GA 30301" +224679,USB-C Charging Cable,1,11.95,07/01/19 22:40,"786 5th St, New York City, NY 10001" +224680,AA Batteries (4-pack),1,3.84,07/16/19 10:24,"581 4th St, San Francisco, CA 94016" +224681,Google Phone,1,600,07/12/19 12:56,"484 4th St, Dallas, TX 75001" +224682,Wired Headphones,1,11.99,07/24/19 12:35,"635 Pine St, San Francisco, CA 94016" +224683,27in 4K Gaming Monitor,1,389.99,07/24/19 04:54,"63 11th St, Boston, MA 02215" +224684,USB-C Charging Cable,1,11.95,07/04/19 19:43,"498 Park St, Los Angeles, CA 90001" +224685,AAA Batteries (4-pack),1,2.99,07/25/19 18:09,"410 4th St, New York City, NY 10001" +224686,20in Monitor,1,109.99,07/12/19 23:36,"982 Jefferson St, Los Angeles, CA 90001" +224687,USB-C Charging Cable,1,11.95,07/03/19 22:34,"615 9th St, Portland, OR 97035" +224688,Apple Airpods Headphones,1,150,07/22/19 10:57,"755 14th St, San Francisco, CA 94016" +224689,Apple Airpods Headphones,1,150,07/07/19 22:30,"923 Lincoln St, Boston, MA 02215" +224690,27in FHD Monitor,1,149.99,07/08/19 21:05,"513 Lake St, San Francisco, CA 94016" +224691,Bose SoundSport Headphones,1,99.99,07/04/19 17:20,"797 Johnson St, Los Angeles, CA 90001" +224692,AAA Batteries (4-pack),1,2.99,07/07/19 18:19,"938 Cherry St, Dallas, TX 75001" +224693,Apple Airpods Headphones,1,150,07/01/19 11:03,"881 4th St, Los Angeles, CA 90001" +224694,Lightning Charging Cable,1,14.95,07/19/19 17:36,"369 Madison St, Los Angeles, CA 90001" +224695,AA Batteries (4-pack),1,3.84,07/17/19 16:32,"207 Jackson St, Austin, TX 73301" +224696,Macbook Pro Laptop,1,1700,07/07/19 10:14,"349 Spruce St, San Francisco, CA 94016" +224697,USB-C Charging Cable,1,11.95,07/30/19 17:46,"890 Washington St, Los Angeles, CA 90001" +224698,AA Batteries (4-pack),1,3.84,07/01/19 15:28,"174 14th St, New York City, NY 10001" +224699,AA Batteries (4-pack),1,3.84,07/11/19 15:58,"162 11th St, Boston, MA 02215" +224700,ThinkPad Laptop,1,999.99,07/11/19 00:44,"227 Cherry St, New York City, NY 10001" +224701,27in 4K Gaming Monitor,1,389.99,07/11/19 19:26,"436 Cherry St, Los Angeles, CA 90001" +224702,Wired Headphones,1,11.99,07/07/19 11:28,"431 Hill St, New York City, NY 10001" +224703,Macbook Pro Laptop,1,1700,07/04/19 01:13,"344 8th St, Los Angeles, CA 90001" +224704,USB-C Charging Cable,1,11.95,07/15/19 16:56,"979 Ridge St, Dallas, TX 75001" +224705,Wired Headphones,1,11.99,07/15/19 07:28,"627 Cherry St, Boston, MA 02215" +224706,USB-C Charging Cable,1,11.95,07/12/19 14:28,"229 Willow St, San Francisco, CA 94016" +224707,AA Batteries (4-pack),1,3.84,07/31/19 20:00,"337 Forest St, San Francisco, CA 94016" +224708,Macbook Pro Laptop,1,1700,07/01/19 13:37,"777 Lincoln St, Austin, TX 73301" +224709,AAA Batteries (4-pack),1,2.99,07/18/19 13:38,"980 5th St, Los Angeles, CA 90001" +224710,Apple Airpods Headphones,1,150,07/28/19 21:33,"52 Park St, San Francisco, CA 94016" +224711,USB-C Charging Cable,1,11.95,07/15/19 18:33,"393 Jefferson St, Los Angeles, CA 90001" +224712,Lightning Charging Cable,1,14.95,07/28/19 11:40,"39 Elm St, Los Angeles, CA 90001" +224713,Lightning Charging Cable,1,14.95,07/09/19 13:45,"59 Spruce St, Los Angeles, CA 90001" +224714,Macbook Pro Laptop,1,1700,07/19/19 09:54,"580 Forest St, Boston, MA 02215" +224715,Google Phone,1,600,07/10/19 19:06,"89 Center St, Los Angeles, CA 90001" +224716,20in Monitor,1,109.99,07/16/19 10:37,"285 Meadow St, Los Angeles, CA 90001" +224717,AAA Batteries (4-pack),1,2.99,07/14/19 20:01,"879 Highland St, San Francisco, CA 94016" +224718,USB-C Charging Cable,1,11.95,07/22/19 19:31,"97 Walnut St, Los Angeles, CA 90001" +224719,Apple Airpods Headphones,1,150,07/11/19 08:04,"562 9th St, Atlanta, GA 30301" +224720,AA Batteries (4-pack),1,3.84,07/31/19 19:36,"944 Madison St, San Francisco, CA 94016" +224721,Wired Headphones,1,11.99,07/01/19 20:01,"162 Madison St, San Francisco, CA 94016" +224722,iPhone,1,700,07/26/19 22:57,"950 11th St, Los Angeles, CA 90001" +224723,Apple Airpods Headphones,1,150,07/08/19 12:06,"86 Wilson St, Dallas, TX 75001" +224724,ThinkPad Laptop,1,999.99,07/05/19 08:57,"395 Church St, San Francisco, CA 94016" +224725,USB-C Charging Cable,1,11.95,07/13/19 10:48,"771 Jackson St, Atlanta, GA 30301" +224726,USB-C Charging Cable,1,11.95,07/28/19 11:02,"509 13th St, San Francisco, CA 94016" +224727,AAA Batteries (4-pack),1,2.99,07/28/19 10:50,"608 5th St, Los Angeles, CA 90001" +224728,AA Batteries (4-pack),1,3.84,07/11/19 09:42,"63 Adams St, Boston, MA 02215" +224729,Wired Headphones,1,11.99,07/15/19 09:02,"18 Jackson St, San Francisco, CA 94016" +224730,Bose SoundSport Headphones,1,99.99,07/16/19 11:56,"907 Pine St, Boston, MA 02215" +224731,iPhone,1,700,07/26/19 12:40,"702 Park St, Los Angeles, CA 90001" +224731,AA Batteries (4-pack),1,3.84,07/26/19 12:40,"702 Park St, Los Angeles, CA 90001" +224732,AA Batteries (4-pack),1,3.84,07/20/19 00:11,"854 South St, San Francisco, CA 94016" +224733,Macbook Pro Laptop,1,1700,07/28/19 11:34,"619 South St, San Francisco, CA 94016" +224734,Apple Airpods Headphones,1,150,07/31/19 14:54,"552 Madison St, Portland, OR 97035" +224735,USB-C Charging Cable,1,11.95,07/21/19 19:32,"385 13th St, Atlanta, GA 30301" +224736,Lightning Charging Cable,1,14.95,07/09/19 11:23,"379 Jefferson St, Los Angeles, CA 90001" +224737,USB-C Charging Cable,1,11.95,07/27/19 16:15,"350 Johnson St, San Francisco, CA 94016" +224738,Wired Headphones,1,11.99,07/05/19 21:17,"710 Elm St, Dallas, TX 75001" +224739,Apple Airpods Headphones,1,150,07/19/19 17:09,"169 4th St, Portland, ME 04101" +224740,Bose SoundSport Headphones,1,99.99,07/08/19 13:28,"481 14th St, Portland, ME 04101" +224741,Apple Airpods Headphones,1,150,07/22/19 03:20,"679 Chestnut St, Seattle, WA 98101" +224742,AA Batteries (4-pack),1,3.84,07/23/19 19:26,"358 11th St, Dallas, TX 75001" +224743,Macbook Pro Laptop,1,1700,07/14/19 18:30,"366 10th St, San Francisco, CA 94016" +224744,AAA Batteries (4-pack),2,2.99,07/19/19 13:07,"857 Ridge St, Los Angeles, CA 90001" +224745,Wired Headphones,1,11.99,07/27/19 16:30,"529 Washington St, Atlanta, GA 30301" +224746,ThinkPad Laptop,1,999.99,07/17/19 10:43,"224 Hickory St, Los Angeles, CA 90001" +224747,Lightning Charging Cable,2,14.95,07/24/19 18:28,"285 Park St, San Francisco, CA 94016" +224748,Lightning Charging Cable,1,14.95,07/25/19 18:05,"141 Adams St, Los Angeles, CA 90001" +224749,AAA Batteries (4-pack),1,2.99,07/05/19 20:50,"849 Wilson St, Atlanta, GA 30301" +224750,Wired Headphones,1,11.99,07/09/19 12:10,"814 9th St, Boston, MA 02215" +224751,Bose SoundSport Headphones,1,99.99,07/20/19 13:26,"918 Ridge St, San Francisco, CA 94016" +224752,Lightning Charging Cable,1,14.95,07/21/19 14:30,"345 Chestnut St, Seattle, WA 98101" +224753,Wired Headphones,1,11.99,07/29/19 17:20,"340 Maple St, Atlanta, GA 30301" +224754,Apple Airpods Headphones,1,150,07/04/19 16:06,"56 Forest St, New York City, NY 10001" +224755,Wired Headphones,1,11.99,07/21/19 17:31,"486 Washington St, Los Angeles, CA 90001" +224756,27in FHD Monitor,1,149.99,07/05/19 18:19,"348 Cedar St, San Francisco, CA 94016" +224757,Lightning Charging Cable,1,14.95,07/29/19 16:29,"902 Johnson St, Dallas, TX 75001" +224758,USB-C Charging Cable,1,11.95,07/19/19 22:33,"247 4th St, New York City, NY 10001" +224759,Lightning Charging Cable,2,14.95,07/28/19 08:23,"932 7th St, Los Angeles, CA 90001" +224760,Lightning Charging Cable,1,14.95,07/08/19 22:27,"739 Maple St, Atlanta, GA 30301" +224761,20in Monitor,1,109.99,07/04/19 18:14,"756 Elm St, New York City, NY 10001" +224762,AA Batteries (4-pack),1,3.84,07/20/19 14:21,"355 Willow St, Los Angeles, CA 90001" +224763,Lightning Charging Cable,1,14.95,07/08/19 14:31,"203 South St, Boston, MA 02215" +224764,27in FHD Monitor,1,149.99,07/28/19 12:52,"442 8th St, Austin, TX 73301" +224765,AA Batteries (4-pack),1,3.84,07/11/19 01:45,"925 1st St, San Francisco, CA 94016" +224766,Wired Headphones,1,11.99,07/17/19 17:24,"375 Hill St, San Francisco, CA 94016" +224767,Apple Airpods Headphones,1,150,07/27/19 19:58,"498 Ridge St, New York City, NY 10001" +224768,Bose SoundSport Headphones,1,99.99,07/30/19 00:02,"686 Dogwood St, Seattle, WA 98101" +224769,AA Batteries (4-pack),2,3.84,07/16/19 16:45,"185 Dogwood St, San Francisco, CA 94016" +224770,Macbook Pro Laptop,1,1700,07/07/19 14:49,"903 12th St, Portland, OR 97035" +224771,AAA Batteries (4-pack),1,2.99,07/10/19 02:01,"627 Main St, Seattle, WA 98101" +224772,34in Ultrawide Monitor,1,379.99,07/24/19 11:25,"984 South St, Austin, TX 73301" +224773,Lightning Charging Cable,2,14.95,07/23/19 08:41,"885 4th St, New York City, NY 10001" +224774,Bose SoundSport Headphones,1,99.99,07/22/19 00:05,"578 North St, Seattle, WA 98101" +224775,Wired Headphones,1,11.99,07/05/19 20:57,"593 Adams St, Seattle, WA 98101" +224776,Apple Airpods Headphones,1,150,07/21/19 21:19,"757 Hickory St, New York City, NY 10001" +224777,AA Batteries (4-pack),2,3.84,07/01/19 12:51,"423 North St, New York City, NY 10001" +224778,20in Monitor,1,109.99,07/10/19 18:35,"617 Park St, San Francisco, CA 94016" +224779,USB-C Charging Cable,1,11.95,07/08/19 20:19,"744 South St, Portland, OR 97035" +224780,USB-C Charging Cable,1,11.95,07/19/19 20:35,"873 Ridge St, Boston, MA 02215" +224781,Lightning Charging Cable,1,14.95,07/07/19 22:05,"383 Meadow St, Los Angeles, CA 90001" +224782,Bose SoundSport Headphones,1,99.99,07/08/19 00:22,"651 Cedar St, Portland, OR 97035" +224783,USB-C Charging Cable,1,11.95,07/07/19 15:38,"97 Willow St, Los Angeles, CA 90001" +224784,USB-C Charging Cable,1,11.95,07/22/19 17:30,"560 Washington St, Portland, OR 97035" +224785,USB-C Charging Cable,1,11.95,07/28/19 20:46,"881 4th St, Los Angeles, CA 90001" +224786,AAA Batteries (4-pack),1,2.99,07/08/19 15:19,"608 Adams St, New York City, NY 10001" +224787,AA Batteries (4-pack),2,3.84,07/13/19 00:12,"33 2nd St, Dallas, TX 75001" +224788,Wired Headphones,1,11.99,07/11/19 22:46,"323 Jefferson St, San Francisco, CA 94016" +224789,Apple Airpods Headphones,1,150,07/31/19 23:23,"643 Hickory St, Dallas, TX 75001" +224790,Lightning Charging Cable,1,14.95,07/04/19 23:00,"986 11th St, San Francisco, CA 94016" +224791,Flatscreen TV,1,300,07/29/19 14:57,"145 2nd St, Dallas, TX 75001" +224792,iPhone,1,700,07/10/19 10:36,"745 Cedar St, Atlanta, GA 30301" +224793,AAA Batteries (4-pack),3,2.99,07/24/19 14:06,"969 5th St, Los Angeles, CA 90001" +224794,AAA Batteries (4-pack),1,2.99,07/01/19 22:50,"397 10th St, Seattle, WA 98101" +224795,27in FHD Monitor,1,149.99,07/08/19 11:03,"848 Willow St, San Francisco, CA 94016" +224796,Google Phone,1,600,07/17/19 21:13,"182 West St, Atlanta, GA 30301" +224796,USB-C Charging Cable,1,11.95,07/17/19 21:13,"182 West St, Atlanta, GA 30301" +224797,Macbook Pro Laptop,1,1700,07/12/19 09:34,"770 7th St, Atlanta, GA 30301" +224798,27in FHD Monitor,1,149.99,07/15/19 07:52,"8 Walnut St, Atlanta, GA 30301" +224799,Macbook Pro Laptop,1,1700,07/20/19 22:28,"642 2nd St, Boston, MA 02215" +224800,Wired Headphones,1,11.99,07/27/19 20:20,"186 Madison St, Austin, TX 73301" +224801,27in 4K Gaming Monitor,1,389.99,07/16/19 14:53,"679 Jackson St, Los Angeles, CA 90001" +224802,Lightning Charging Cable,1,14.95,07/17/19 08:28,"934 Main St, New York City, NY 10001" +,,,,, +224803,AAA Batteries (4-pack),3,2.99,07/24/19 12:51,"732 Ridge St, Los Angeles, CA 90001" +224804,iPhone,1,700,07/23/19 21:50,"955 9th St, Seattle, WA 98101" +224804,Lightning Charging Cable,1,14.95,07/23/19 21:50,"955 9th St, Seattle, WA 98101" +224805,20in Monitor,1,109.99,07/23/19 07:38,"41 Elm St, Seattle, WA 98101" +224806,Wired Headphones,1,11.99,07/22/19 19:27,"860 Elm St, New York City, NY 10001" +224807,Bose SoundSport Headphones,1,99.99,07/24/19 19:10,"640 2nd St, Seattle, WA 98101" +224808,Apple Airpods Headphones,1,150,07/20/19 13:37,"795 Cherry St, Atlanta, GA 30301" +224809,Bose SoundSport Headphones,1,99.99,07/31/19 16:40,"980 Meadow St, Dallas, TX 75001" +224810,Bose SoundSport Headphones,1,99.99,07/13/19 14:34,"158 9th St, Los Angeles, CA 90001" +224811,Wired Headphones,1,11.99,07/30/19 10:02,"843 West St, Portland, OR 97035" +224812,AA Batteries (4-pack),1,3.84,07/27/19 21:27,"223 1st St, Seattle, WA 98101" +224812,Bose SoundSport Headphones,1,99.99,07/27/19 21:27,"223 1st St, Seattle, WA 98101" +,,,,, +224813,iPhone,1,700,07/25/19 12:35,"579 7th St, Austin, TX 73301" +224814,AA Batteries (4-pack),1,3.84,07/20/19 10:53,"403 Elm St, San Francisco, CA 94016" +224815,Wired Headphones,2,11.99,07/08/19 20:27,"50 Cherry St, Boston, MA 02215" +224816,Apple Airpods Headphones,1,150,07/23/19 20:36,"564 Pine St, Los Angeles, CA 90001" +224817,AAA Batteries (4-pack),1,2.99,07/24/19 18:38,"588 Washington St, New York City, NY 10001" +224818,34in Ultrawide Monitor,1,379.99,07/16/19 22:11,"374 6th St, Los Angeles, CA 90001" +224819,Apple Airpods Headphones,1,150,07/06/19 22:53,"808 Main St, Boston, MA 02215" +224820,USB-C Charging Cable,1,11.95,07/20/19 17:24,"415 Maple St, New York City, NY 10001" +224821,USB-C Charging Cable,1,11.95,07/16/19 09:54,"277 Lakeview St, New York City, NY 10001" +224822,Bose SoundSport Headphones,1,99.99,07/13/19 13:59,"748 Lake St, Atlanta, GA 30301" +224823,20in Monitor,1,109.99,07/20/19 18:43,"34 Maple St, Dallas, TX 75001" +224824,20in Monitor,1,109.99,07/31/19 07:13,"814 South St, Atlanta, GA 30301" +224825,Apple Airpods Headphones,1,150,07/06/19 13:59,"939 Main St, Portland, ME 04101" +224826,USB-C Charging Cable,1,11.95,07/28/19 09:30,"854 Dogwood St, Los Angeles, CA 90001" +224827,USB-C Charging Cable,1,11.95,07/17/19 13:24,"691 2nd St, Austin, TX 73301" +224828,Apple Airpods Headphones,1,150,07/11/19 13:41,"846 Adams St, New York City, NY 10001" +224829,ThinkPad Laptop,1,999.99,07/15/19 11:27,"630 Park St, Los Angeles, CA 90001" +224830,Bose SoundSport Headphones,1,99.99,07/04/19 08:27,"455 Hickory St, New York City, NY 10001" +224831,27in FHD Monitor,1,149.99,07/24/19 22:57,"125 2nd St, Los Angeles, CA 90001" +224832,Lightning Charging Cable,1,14.95,07/29/19 11:15,"822 7th St, Seattle, WA 98101" +224833,Macbook Pro Laptop,1,1700,07/09/19 13:29,"334 Cherry St, Boston, MA 02215" +224834,AAA Batteries (4-pack),1,2.99,07/02/19 20:36,"459 Lincoln St, Atlanta, GA 30301" +224835,AAA Batteries (4-pack),4,2.99,07/10/19 16:01,"147 5th St, Los Angeles, CA 90001" +224836,AA Batteries (4-pack),1,3.84,07/17/19 01:02,"773 Dogwood St, Seattle, WA 98101" +224837,27in FHD Monitor,1,149.99,07/21/19 08:09,"226 Hickory St, Boston, MA 02215" +224838,Apple Airpods Headphones,1,150,07/23/19 18:53,"20 Main St, New York City, NY 10001" +224839,Wired Headphones,1,11.99,07/13/19 11:15,"171 2nd St, Austin, TX 73301" +224840,AA Batteries (4-pack),2,3.84,07/09/19 14:19,"825 Cherry St, Atlanta, GA 30301" +224841,USB-C Charging Cable,1,11.95,07/25/19 10:09,"729 Sunset St, Atlanta, GA 30301" +224842,AA Batteries (4-pack),1,3.84,07/23/19 12:32,"844 River St, New York City, NY 10001" +224843,USB-C Charging Cable,1,11.95,07/11/19 17:53,"521 12th St, Boston, MA 02215" +224844,Apple Airpods Headphones,1,150,07/27/19 08:56,"773 Forest St, New York City, NY 10001" +224845,Lightning Charging Cable,1,14.95,07/01/19 09:11,"916 Main St, Atlanta, GA 30301" +224846,ThinkPad Laptop,1,999.99,07/16/19 22:18,"132 7th St, Los Angeles, CA 90001" +224847,AAA Batteries (4-pack),1,2.99,07/28/19 10:36,"576 Adams St, Boston, MA 02215" +224848,27in 4K Gaming Monitor,1,389.99,07/23/19 22:50,"204 Hill St, Los Angeles, CA 90001" +224849,Lightning Charging Cable,1,14.95,07/28/19 14:06,"360 11th St, San Francisco, CA 94016" +224849,Google Phone,1,600,07/28/19 14:06,"360 11th St, San Francisco, CA 94016" +224850,Apple Airpods Headphones,1,150,07/08/19 13:39,"823 Cedar St, Boston, MA 02215" +224851,20in Monitor,1,109.99,07/11/19 15:01,"381 Hickory St, San Francisco, CA 94016" +224852,Lightning Charging Cable,1,14.95,07/29/19 17:18,"722 River St, Portland, OR 97035" +224853,AA Batteries (4-pack),1,3.84,07/12/19 18:18,"29 North St, Seattle, WA 98101" +224854,Bose SoundSport Headphones,1,99.99,07/16/19 12:12,"523 4th St, Boston, MA 02215" +224855,Wired Headphones,1,11.99,07/02/19 18:03,"117 7th St, Boston, MA 02215" +224856,AA Batteries (4-pack),3,3.84,07/31/19 14:45,"933 Ridge St, Boston, MA 02215" +224857,Lightning Charging Cable,1,14.95,07/29/19 14:05,"236 12th St, Portland, OR 97035" +224858,AA Batteries (4-pack),1,3.84,07/22/19 12:49,"5 8th St, Los Angeles, CA 90001" +224859,Apple Airpods Headphones,1,150,07/23/19 07:00,"462 Maple St, Portland, OR 97035" +224860,Lightning Charging Cable,1,14.95,07/15/19 13:17,"756 West St, San Francisco, CA 94016" +224861,USB-C Charging Cable,1,11.95,07/06/19 22:59,"555 Walnut St, Dallas, TX 75001" +224862,Macbook Pro Laptop,1,1700,07/01/19 15:18,"137 10th St, New York City, NY 10001" +224863,Flatscreen TV,1,300,07/22/19 19:59,"757 Ridge St, Seattle, WA 98101" +224864,27in FHD Monitor,1,149.99,07/08/19 23:27,"387 Forest St, Los Angeles, CA 90001" +224865,AA Batteries (4-pack),2,3.84,07/17/19 16:06,"120 Jefferson St, San Francisco, CA 94016" +224866,Wired Headphones,1,11.99,07/07/19 15:01,"985 1st St, Los Angeles, CA 90001" +224867,Flatscreen TV,1,300,07/25/19 21:26,"604 Pine St, Atlanta, GA 30301" +224868,AA Batteries (4-pack),1,3.84,07/12/19 07:11,"984 West St, Dallas, TX 75001" +224869,27in 4K Gaming Monitor,1,389.99,07/18/19 22:27,"210 North St, Los Angeles, CA 90001" +224870,AAA Batteries (4-pack),1,2.99,07/17/19 20:25,"361 13th St, Dallas, TX 75001" +224871,Apple Airpods Headphones,1,150,07/06/19 17:24,"72 West St, Los Angeles, CA 90001" +224872,Google Phone,1,600,07/08/19 23:09,"761 Elm St, Portland, OR 97035" +224873,Apple Airpods Headphones,1,150,07/19/19 12:00,"153 1st St, San Francisco, CA 94016" +224874,AAA Batteries (4-pack),1,2.99,07/22/19 18:39,"34 Main St, Portland, ME 04101" +224875,USB-C Charging Cable,1,11.95,07/11/19 12:20,"45 Chestnut St, Los Angeles, CA 90001" +224876,AAA Batteries (4-pack),2,2.99,07/17/19 12:56,"991 12th St, Los Angeles, CA 90001" +224877,AA Batteries (4-pack),1,3.84,07/07/19 01:03,"634 9th St, Los Angeles, CA 90001" +224878,Wired Headphones,1,11.99,07/17/19 10:27,"151 Madison St, Seattle, WA 98101" +224879,20in Monitor,1,109.99,07/27/19 20:58,"289 Forest St, Dallas, TX 75001" +224880,AAA Batteries (4-pack),1,2.99,07/04/19 08:34,"983 8th St, San Francisco, CA 94016" +224881,Wired Headphones,1,11.99,07/05/19 11:02,"959 Washington St, Boston, MA 02215" +224882,AA Batteries (4-pack),1,3.84,07/11/19 11:53,"76 Jackson St, New York City, NY 10001" +224883,iPhone,1,700,07/25/19 08:03,"365 Sunset St, San Francisco, CA 94016" +224883,Apple Airpods Headphones,1,150,07/25/19 08:03,"365 Sunset St, San Francisco, CA 94016" +224884,Apple Airpods Headphones,1,150,07/26/19 23:57,"250 Center St, New York City, NY 10001" +224885,27in 4K Gaming Monitor,1,389.99,07/07/19 12:10,"592 9th St, Seattle, WA 98101" +224886,Lightning Charging Cable,1,14.95,07/17/19 16:29,"629 Lincoln St, Los Angeles, CA 90001" +224887,AA Batteries (4-pack),1,3.84,07/27/19 13:42,"813 Hickory St, Dallas, TX 75001" +224888,Lightning Charging Cable,1,14.95,07/12/19 18:05,"729 10th St, Boston, MA 02215" +224889,iPhone,1,700,07/11/19 22:00,"668 Madison St, San Francisco, CA 94016" +224889,Lightning Charging Cable,1,14.95,07/11/19 22:00,"668 Madison St, San Francisco, CA 94016" +224889,Apple Airpods Headphones,1,150,07/11/19 22:00,"668 Madison St, San Francisco, CA 94016" +224890,ThinkPad Laptop,1,999.99,07/22/19 06:46,"807 11th St, San Francisco, CA 94016" +224891,Bose SoundSport Headphones,1,99.99,07/22/19 17:25,"806 West St, Atlanta, GA 30301" +224892,Wired Headphones,1,11.99,07/21/19 07:50,"28 Walnut St, Dallas, TX 75001" +224893,27in 4K Gaming Monitor,1,389.99,07/13/19 17:15,"315 11th St, Dallas, TX 75001" +224894,Macbook Pro Laptop,1,1700,07/27/19 21:02,"54 Lincoln St, Boston, MA 02215" +224895,Lightning Charging Cable,1,14.95,07/11/19 19:43,"461 Jackson St, Austin, TX 73301" +224896,USB-C Charging Cable,1,11.95,07/05/19 01:06,"935 Ridge St, Boston, MA 02215" +224897,Lightning Charging Cable,1,14.95,07/29/19 20:08,"580 Maple St, Los Angeles, CA 90001" +224898,AAA Batteries (4-pack),2,2.99,07/30/19 18:23,"411 North St, San Francisco, CA 94016" +224899,AA Batteries (4-pack),1,3.84,07/29/19 18:44,"387 Jefferson St, San Francisco, CA 94016" +224900,Bose SoundSport Headphones,1,99.99,07/25/19 20:16,"119 14th St, New York City, NY 10001" +224901,USB-C Charging Cable,2,11.95,07/16/19 22:11,"6 Highland St, Atlanta, GA 30301" +224902,AA Batteries (4-pack),1,3.84,07/30/19 14:56,"531 West St, Portland, ME 04101" +224903,Flatscreen TV,1,300,07/25/19 19:55,"958 Forest St, Atlanta, GA 30301" +224904,ThinkPad Laptop,1,999.99,07/28/19 23:10,"694 Johnson St, Los Angeles, CA 90001" +224905,AA Batteries (4-pack),1,3.84,07/21/19 15:46,"181 Chestnut St, Atlanta, GA 30301" +224906,AAA Batteries (4-pack),1,2.99,07/22/19 20:41,"751 Johnson St, Portland, OR 97035" +224907,Lightning Charging Cable,1,14.95,07/07/19 17:37,"823 Willow St, San Francisco, CA 94016" +224908,Vareebadd Phone,1,400,07/13/19 23:10,"5 Main St, Dallas, TX 75001" +224909,Apple Airpods Headphones,1,150,07/16/19 12:35,"698 South St, Los Angeles, CA 90001" +224910,Flatscreen TV,1,300,07/27/19 22:45,"262 River St, New York City, NY 10001" +224911,Wired Headphones,1,11.99,07/26/19 21:55,"905 14th St, Seattle, WA 98101" +224912,Google Phone,1,600,07/11/19 12:08,"218 North St, San Francisco, CA 94016" +224912,USB-C Charging Cable,1,11.95,07/11/19 12:08,"218 North St, San Francisco, CA 94016" +224913,USB-C Charging Cable,1,11.95,07/21/19 15:11,"758 5th St, Los Angeles, CA 90001" +224914,34in Ultrawide Monitor,1,379.99,07/08/19 13:31,"387 Cherry St, Los Angeles, CA 90001" +224915,USB-C Charging Cable,1,11.95,07/05/19 18:26,"517 Main St, Boston, MA 02215" +224916,27in 4K Gaming Monitor,1,389.99,07/27/19 03:01,"329 2nd St, New York City, NY 10001" +224917,Google Phone,1,600,07/13/19 11:00,"677 Madison St, Los Angeles, CA 90001" +224918,USB-C Charging Cable,1,11.95,07/14/19 23:33,"139 Jackson St, Seattle, WA 98101" +224919,Macbook Pro Laptop,1,1700,07/18/19 08:28,"369 1st St, New York City, NY 10001" +224920,34in Ultrawide Monitor,1,379.99,07/17/19 18:30,"427 Lakeview St, Seattle, WA 98101" +224921,20in Monitor,1,109.99,07/06/19 19:32,"257 Ridge St, San Francisco, CA 94016" +224922,Vareebadd Phone,1,400,07/02/19 15:57,"480 8th St, New York City, NY 10001" +224923,Lightning Charging Cable,1,14.95,07/09/19 13:56,"200 Meadow St, New York City, NY 10001" +224924,Lightning Charging Cable,1,14.95,07/04/19 10:29,"89 Sunset St, Los Angeles, CA 90001" +224925,USB-C Charging Cable,1,11.95,07/25/19 16:54,"937 Elm St, Los Angeles, CA 90001" +224926,Bose SoundSport Headphones,1,99.99,07/25/19 22:00,"974 10th St, Los Angeles, CA 90001" +224927,27in FHD Monitor,1,149.99,07/01/19 15:50,"948 Lincoln St, Los Angeles, CA 90001" +224928,Bose SoundSport Headphones,1,99.99,07/03/19 12:40,"728 1st St, Seattle, WA 98101" +224929,Flatscreen TV,1,300,07/25/19 14:07,"820 Lincoln St, Seattle, WA 98101" +224930,34in Ultrawide Monitor,1,379.99,07/12/19 12:20,"245 Washington St, Dallas, TX 75001" +224931,AAA Batteries (4-pack),1,2.99,07/27/19 21:43,"51 Johnson St, New York City, NY 10001" +224932,27in FHD Monitor,1,149.99,07/08/19 18:32,"127 Elm St, Atlanta, GA 30301" +224933,AA Batteries (4-pack),1,3.84,07/07/19 18:17,"250 Elm St, Boston, MA 02215" +224934,AAA Batteries (4-pack),2,2.99,07/06/19 17:28,"299 Lincoln St, Dallas, TX 75001" +224935,AA Batteries (4-pack),1,3.84,07/22/19 09:57,"325 Spruce St, Portland, ME 04101" +224936,Wired Headphones,1,11.99,07/14/19 08:55,"219 Forest St, Atlanta, GA 30301" +224937,USB-C Charging Cable,1,11.95,07/08/19 18:57,"335 Hickory St, San Francisco, CA 94016" +224938,34in Ultrawide Monitor,1,379.99,07/23/19 23:29,"453 Dogwood St, Atlanta, GA 30301" +224939,AAA Batteries (4-pack),1,2.99,07/23/19 19:57,"108 12th St, Los Angeles, CA 90001" +224940,Lightning Charging Cable,1,14.95,07/06/19 11:05,"960 North St, San Francisco, CA 94016" +224941,Apple Airpods Headphones,1,150,07/09/19 11:51,"118 South St, New York City, NY 10001" +224942,Bose SoundSport Headphones,1,99.99,07/22/19 12:30,"790 Johnson St, San Francisco, CA 94016" +224943,Wired Headphones,1,11.99,07/03/19 18:59,"744 Maple St, Los Angeles, CA 90001" +224944,AAA Batteries (4-pack),3,2.99,07/28/19 17:26,"793 Highland St, New York City, NY 10001" +224945,Wired Headphones,1,11.99,07/13/19 20:17,"844 Dogwood St, Seattle, WA 98101" +224946,AA Batteries (4-pack),1,3.84,07/01/19 15:59,"312 Lincoln St, San Francisco, CA 94016" +224947,Macbook Pro Laptop,1,1700,07/22/19 22:43,"194 Adams St, Seattle, WA 98101" +224948,34in Ultrawide Monitor,1,379.99,07/11/19 20:06,"816 Washington St, San Francisco, CA 94016" +224949,Google Phone,1,600,07/25/19 12:01,"550 Dogwood St, San Francisco, CA 94016" +224949,USB-C Charging Cable,1,11.95,07/25/19 12:01,"550 Dogwood St, San Francisco, CA 94016" +224950,iPhone,1,700,07/14/19 21:28,"916 9th St, New York City, NY 10001" +224951,Google Phone,1,600,07/14/19 17:43,"580 Park St, Los Angeles, CA 90001" +224952,Macbook Pro Laptop,1,1700,07/24/19 11:12,"203 Adams St, Austin, TX 73301" +224953,AA Batteries (4-pack),1,3.84,07/20/19 22:22,"352 Washington St, Austin, TX 73301" +224954,Wired Headphones,1,11.99,07/18/19 16:29,"193 Dogwood St, Portland, OR 97035" +224955,USB-C Charging Cable,1,11.95,07/28/19 01:48,"617 Meadow St, Portland, OR 97035" +224956,iPhone,1,700,07/11/19 07:48,"132 Willow St, Portland, OR 97035" +224957,AA Batteries (4-pack),1,3.84,07/21/19 12:30,"660 Cherry St, San Francisco, CA 94016" +224958,Bose SoundSport Headphones,1,99.99,07/21/19 18:40,"574 14th St, San Francisco, CA 94016" +224959,AAA Batteries (4-pack),1,2.99,07/02/19 18:27,"811 North St, Los Angeles, CA 90001" +224960,Wired Headphones,2,11.99,07/16/19 12:14,"959 8th St, Los Angeles, CA 90001" +224961,USB-C Charging Cable,1,11.95,07/01/19 10:18,"935 Forest St, New York City, NY 10001" +224962,Flatscreen TV,1,300,07/27/19 01:15,"598 River St, Portland, ME 04101" +224963,AA Batteries (4-pack),1,3.84,07/13/19 17:10,"247 Meadow St, San Francisco, CA 94016" +224964,Bose SoundSport Headphones,1,99.99,07/26/19 00:12,"147 Center St, Atlanta, GA 30301" +224965,Google Phone,1,600,07/01/19 19:28,"177 Maple St, San Francisco, CA 94016" +224965,USB-C Charging Cable,2,11.95,07/01/19 19:28,"177 Maple St, San Francisco, CA 94016" +224966,Wired Headphones,1,11.99,07/03/19 21:03,"52 4th St, Dallas, TX 75001" +224967,AA Batteries (4-pack),1,3.84,07/24/19 14:07,"957 11th St, Los Angeles, CA 90001" +224968,27in FHD Monitor,1,149.99,07/13/19 17:54,"345 Center St, San Francisco, CA 94016" +224969,27in FHD Monitor,1,149.99,07/01/19 16:56,"697 Lake St, Atlanta, GA 30301" +224970,LG Dryer,1,600.0,07/29/19 13:10,"883 9th St, Boston, MA 02215" +224971,USB-C Charging Cable,1,11.95,07/18/19 02:38,"736 Johnson St, San Francisco, CA 94016" +224972,USB-C Charging Cable,1,11.95,07/04/19 13:43,"213 Church St, New York City, NY 10001" +224973,Vareebadd Phone,1,400,07/30/19 10:01,"383 Lakeview St, New York City, NY 10001" +224974,AAA Batteries (4-pack),1,2.99,07/27/19 05:09,"837 Maple St, New York City, NY 10001" +224975,Macbook Pro Laptop,1,1700,07/04/19 23:09,"983 River St, Boston, MA 02215" +224976,34in Ultrawide Monitor,1,379.99,07/01/19 19:02,"857 5th St, Dallas, TX 75001" +224977,AA Batteries (4-pack),1,3.84,07/06/19 05:49,"313 Main St, New York City, NY 10001" +224978,Apple Airpods Headphones,1,150,07/06/19 14:26,"795 Lake St, Los Angeles, CA 90001" +224979,AAA Batteries (4-pack),2,2.99,07/07/19 19:56,"446 Lake St, Seattle, WA 98101" +224980,Apple Airpods Headphones,1,150,07/01/19 15:36,"296 Walnut St, New York City, NY 10001" +224981,34in Ultrawide Monitor,1,379.99,07/15/19 20:20,"703 Center St, Seattle, WA 98101" +224982,USB-C Charging Cable,1,11.95,07/13/19 11:55,"797 1st St, Boston, MA 02215" +224983,Apple Airpods Headphones,1,150,07/23/19 17:29,"659 Elm St, Seattle, WA 98101" +224984,AA Batteries (4-pack),1,3.84,07/01/19 16:29,"803 9th St, Seattle, WA 98101" +224985,Macbook Pro Laptop,1,1700,07/13/19 09:50,"227 11th St, Seattle, WA 98101" +224986,27in 4K Gaming Monitor,1,389.99,07/26/19 09:19,"152 Meadow St, Austin, TX 73301" +224987,AA Batteries (4-pack),3,3.84,07/10/19 12:06,"933 1st St, New York City, NY 10001" +224988,34in Ultrawide Monitor,1,379.99,07/21/19 10:31,"518 Center St, Dallas, TX 75001" +224989,Lightning Charging Cable,1,14.95,07/08/19 07:32,"172 7th St, Boston, MA 02215" +224990,AA Batteries (4-pack),1,3.84,07/11/19 22:46,"966 Willow St, New York City, NY 10001" +224991,27in FHD Monitor,1,149.99,07/29/19 13:10,"15 Lake St, Los Angeles, CA 90001" +224992,USB-C Charging Cable,2,11.95,07/20/19 17:29,"644 Walnut St, New York City, NY 10001" +224993,Bose SoundSport Headphones,1,99.99,07/21/19 10:28,"863 Highland St, New York City, NY 10001" +224994,27in 4K Gaming Monitor,1,389.99,07/15/19 15:36,"506 Pine St, Dallas, TX 75001" +224995,Wired Headphones,1,11.99,07/18/19 14:57,"569 1st St, Austin, TX 73301" +224996,Apple Airpods Headphones,1,150,07/11/19 21:12,"77 Hickory St, San Francisco, CA 94016" +224997,USB-C Charging Cable,1,11.95,07/02/19 18:49,"441 Forest St, Los Angeles, CA 90001" +224998,Apple Airpods Headphones,1,150,07/31/19 21:01,"77 Hickory St, Dallas, TX 75001" +224999,AA Batteries (4-pack),1,3.84,07/15/19 13:11,"948 Washington St, Austin, TX 73301" +225000,AA Batteries (4-pack),2,3.84,07/10/19 11:53,"716 2nd St, San Francisco, CA 94016" +225001,Apple Airpods Headphones,1,150,07/02/19 13:40,"931 11th St, Dallas, TX 75001" +225002,AAA Batteries (4-pack),2,2.99,07/17/19 17:00,"735 6th St, San Francisco, CA 94016" +225003,AA Batteries (4-pack),1,3.84,07/22/19 13:35,"456 Maple St, Los Angeles, CA 90001" +225003,Google Phone,1,600,07/22/19 13:35,"456 Maple St, Los Angeles, CA 90001" +225004,AAA Batteries (4-pack),1,2.99,07/29/19 15:42,"988 Cedar St, San Francisco, CA 94016" +225004,AAA Batteries (4-pack),1,2.99,07/29/19 15:42,"988 Cedar St, San Francisco, CA 94016" +225005,AA Batteries (4-pack),1,3.84,07/26/19 21:11,"23 2nd St, San Francisco, CA 94016" +225006,AA Batteries (4-pack),3,3.84,08/01/19 00:11,"61 Highland St, Dallas, TX 75001" +225007,Bose SoundSport Headphones,1,99.99,07/09/19 10:17,"415 Walnut St, Boston, MA 02215" +225008,AAA Batteries (4-pack),1,2.99,07/25/19 20:53,"534 Willow St, Seattle, WA 98101" +225009,USB-C Charging Cable,1,11.95,07/29/19 15:05,"356 12th St, New York City, NY 10001" +225010,AA Batteries (4-pack),1,3.84,07/26/19 14:17,"330 Walnut St, Dallas, TX 75001" +225011,iPhone,1,700,07/08/19 17:42,"172 1st St, San Francisco, CA 94016" +225012,Apple Airpods Headphones,1,150,07/23/19 13:20,"501 1st St, San Francisco, CA 94016" +225013,Lightning Charging Cable,1,14.95,07/21/19 15:52,"498 Sunset St, Portland, OR 97035" +225014,27in 4K Gaming Monitor,1,389.99,07/22/19 20:12,"20 Washington St, New York City, NY 10001" +225015,Lightning Charging Cable,1,14.95,07/10/19 08:08,"198 1st St, Seattle, WA 98101" +225016,AAA Batteries (4-pack),2,2.99,07/24/19 21:34,"601 Jackson St, San Francisco, CA 94016" +225017,27in 4K Gaming Monitor,1,389.99,07/14/19 16:26,"565 11th St, Los Angeles, CA 90001" +225018,USB-C Charging Cable,1,11.95,07/19/19 13:59,"936 Lakeview St, San Francisco, CA 94016" +225019,34in Ultrawide Monitor,1,379.99,07/11/19 20:46,"521 12th St, Atlanta, GA 30301" +225020,27in 4K Gaming Monitor,1,389.99,07/14/19 18:39,"449 Cherry St, New York City, NY 10001" +225021,Lightning Charging Cable,1,14.95,07/13/19 08:49,"695 11th St, New York City, NY 10001" +225022,AA Batteries (4-pack),2,3.84,07/23/19 18:06,"990 Church St, Atlanta, GA 30301" +225023,Flatscreen TV,1,300,07/17/19 13:08,"573 Main St, New York City, NY 10001" +225024,AAA Batteries (4-pack),2,2.99,07/30/19 19:05,"8 11th St, San Francisco, CA 94016" +225025,AA Batteries (4-pack),1,3.84,07/23/19 22:20,"203 Hickory St, Los Angeles, CA 90001" +225026,AAA Batteries (4-pack),1,2.99,07/18/19 11:37,"572 Forest St, Portland, OR 97035" +225027,Flatscreen TV,1,300,07/01/19 23:28,"688 Pine St, Boston, MA 02215" +225028,Macbook Pro Laptop,1,1700,07/17/19 22:28,"137 12th St, New York City, NY 10001" +225029,Bose SoundSport Headphones,1,99.99,07/27/19 06:08,"941 Highland St, Los Angeles, CA 90001" +225030,AAA Batteries (4-pack),2,2.99,07/27/19 18:53,"107 Spruce St, San Francisco, CA 94016" +225031,Bose SoundSport Headphones,1,99.99,07/07/19 12:37,"680 Lakeview St, Los Angeles, CA 90001" +225032,AA Batteries (4-pack),1,3.84,07/28/19 11:44,"36 10th St, Atlanta, GA 30301" +225033,AAA Batteries (4-pack),2,2.99,07/08/19 21:25,"165 South St, Los Angeles, CA 90001" +225034,AAA Batteries (4-pack),1,2.99,07/27/19 10:24,"881 8th St, New York City, NY 10001" +225035,AA Batteries (4-pack),3,3.84,07/08/19 12:59,"902 14th St, Portland, OR 97035" +225036,Bose SoundSport Headphones,1,99.99,07/23/19 12:44,"672 Jefferson St, Dallas, TX 75001" +225037,Bose SoundSport Headphones,1,99.99,07/30/19 22:28,"165 Johnson St, Dallas, TX 75001" +225038,iPhone,1,700,07/30/19 09:12,"615 Park St, Boston, MA 02215" +225039,USB-C Charging Cable,1,11.95,07/26/19 20:41,"802 Meadow St, Boston, MA 02215" +225040,USB-C Charging Cable,1,11.95,07/14/19 17:48,"948 Cherry St, Atlanta, GA 30301" +225041,Wired Headphones,1,11.99,07/05/19 20:35,"730 Adams St, San Francisco, CA 94016" +225042,27in 4K Gaming Monitor,1,389.99,07/11/19 09:02,"494 Spruce St, Los Angeles, CA 90001" +225043,27in FHD Monitor,1,149.99,07/31/19 19:20,"262 13th St, Los Angeles, CA 90001" +225044,Wired Headphones,1,11.99,07/25/19 11:49,"268 South St, San Francisco, CA 94016" +225045,Google Phone,1,600,07/19/19 18:54,"124 Wilson St, Austin, TX 73301" +225045,Wired Headphones,1,11.99,07/19/19 18:54,"124 Wilson St, Austin, TX 73301" +225046,iPhone,1,700,07/01/19 18:03,"178 5th St, Los Angeles, CA 90001" +225047,Wired Headphones,1,11.99,07/29/19 16:04,"899 Cedar St, Portland, OR 97035" +225048,AA Batteries (4-pack),1,3.84,07/09/19 19:51,"811 Lake St, Portland, OR 97035" +225049,Lightning Charging Cable,1,14.95,07/27/19 23:15,"348 12th St, San Francisco, CA 94016" +225050,Apple Airpods Headphones,1,150,07/19/19 07:48,"308 River St, Austin, TX 73301" +225051,Lightning Charging Cable,1,14.95,07/12/19 12:59,"360 14th St, San Francisco, CA 94016" +225052,Wired Headphones,1,11.99,07/26/19 10:25,"87 13th St, Dallas, TX 75001" +225053,Apple Airpods Headphones,1,150,07/20/19 20:00,"91 Cedar St, Atlanta, GA 30301" +225054,AAA Batteries (4-pack),1,2.99,07/22/19 14:32,"625 4th St, San Francisco, CA 94016" +225055,LG Washing Machine,1,600.0,07/17/19 19:48,"628 Jefferson St, San Francisco, CA 94016" +225056,USB-C Charging Cable,1,11.95,07/25/19 17:53,"913 Highland St, San Francisco, CA 94016" +225057,Wired Headphones,1,11.99,07/16/19 11:53,"794 Dogwood St, Portland, OR 97035" +225058,iPhone,1,700,07/18/19 18:42,"203 Jefferson St, San Francisco, CA 94016" +225058,Apple Airpods Headphones,1,150,07/18/19 18:42,"203 Jefferson St, San Francisco, CA 94016" +225059,Google Phone,1,600,07/08/19 00:22,"153 Center St, Boston, MA 02215" +225060,Lightning Charging Cable,2,14.95,07/18/19 11:47,"173 Lake St, New York City, NY 10001" +225061,Wired Headphones,1,11.99,07/17/19 18:44,"392 Jefferson St, Dallas, TX 75001" +225062,Apple Airpods Headphones,1,150,07/22/19 21:54,"739 Hickory St, San Francisco, CA 94016" +225063,AAA Batteries (4-pack),1,2.99,07/28/19 16:42,"186 River St, San Francisco, CA 94016" +225064,Apple Airpods Headphones,1,150,07/20/19 21:11,"914 Meadow St, Austin, TX 73301" +225065,AAA Batteries (4-pack),1,2.99,07/06/19 17:23,"482 Madison St, Seattle, WA 98101" +225066,AA Batteries (4-pack),1,3.84,07/08/19 23:58,"660 Spruce St, Los Angeles, CA 90001" +225067,34in Ultrawide Monitor,1,379.99,07/25/19 10:33,"138 2nd St, Atlanta, GA 30301" +225068,Lightning Charging Cable,1,14.95,07/04/19 09:53,"783 Highland St, Los Angeles, CA 90001" +225069,27in FHD Monitor,1,149.99,07/26/19 15:52,"796 Cedar St, Los Angeles, CA 90001" +225070,Lightning Charging Cable,1,14.95,07/18/19 02:24,"175 Hickory St, New York City, NY 10001" +225071,Lightning Charging Cable,1,14.95,07/29/19 16:31,"573 Willow St, Austin, TX 73301" +225072,AAA Batteries (4-pack),1,2.99,07/20/19 20:50,"984 14th St, Portland, OR 97035" +225073,USB-C Charging Cable,1,11.95,07/28/19 22:44,"346 Chestnut St, Los Angeles, CA 90001" +225074,Apple Airpods Headphones,1,150,07/16/19 20:44,"384 11th St, Dallas, TX 75001" +225075,LG Dryer,1,600.0,07/14/19 08:00,"879 Main St, San Francisco, CA 94016" +225076,AA Batteries (4-pack),1,3.84,07/30/19 16:28,"418 Wilson St, San Francisco, CA 94016" +225077,Bose SoundSport Headphones,1,99.99,07/01/19 14:16,"919 Wilson St, San Francisco, CA 94016" +225078,Apple Airpods Headphones,1,150,07/31/19 10:38,"511 Ridge St, Boston, MA 02215" +225079,Flatscreen TV,1,300,07/30/19 19:52,"327 Walnut St, New York City, NY 10001" +225079,20in Monitor,1,109.99,07/30/19 19:52,"327 Walnut St, New York City, NY 10001" +225080,Wired Headphones,1,11.99,07/13/19 20:21,"844 Wilson St, Seattle, WA 98101" +225081,AA Batteries (4-pack),2,3.84,07/22/19 09:32,"210 Cherry St, Dallas, TX 75001" +225082,USB-C Charging Cable,1,11.95,07/30/19 12:01,"353 Lincoln St, New York City, NY 10001" +225083,Lightning Charging Cable,1,14.95,07/12/19 22:08,"364 West St, Los Angeles, CA 90001" +225084,Macbook Pro Laptop,1,1700,07/15/19 18:00,"317 Lake St, San Francisco, CA 94016" +225085,Bose SoundSport Headphones,1,99.99,07/25/19 19:36,"858 Forest St, Austin, TX 73301" +225086,27in 4K Gaming Monitor,1,389.99,07/03/19 19:30,"631 11th St, Atlanta, GA 30301" +225087,AAA Batteries (4-pack),1,2.99,07/17/19 18:16,"978 Washington St, Los Angeles, CA 90001" +225088,Apple Airpods Headphones,1,150,07/13/19 12:13,"923 North St, Atlanta, GA 30301" +225089,Wired Headphones,1,11.99,07/17/19 18:05,"138 North St, Portland, OR 97035" +225090,LG Dryer,1,600.0,07/07/19 21:28,"642 Cherry St, San Francisco, CA 94016" +225091,AAA Batteries (4-pack),1,2.99,07/05/19 22:03,"674 Willow St, Boston, MA 02215" +225092,USB-C Charging Cable,1,11.95,07/04/19 15:08,"378 Center St, New York City, NY 10001" +225093,Apple Airpods Headphones,1,150,07/11/19 15:29,"373 Spruce St, Austin, TX 73301" +225094,20in Monitor,1,109.99,07/01/19 22:02,"902 Center St, Los Angeles, CA 90001" +225095,Lightning Charging Cable,1,14.95,07/15/19 23:14,"939 Hickory St, Los Angeles, CA 90001" +225096,AAA Batteries (4-pack),1,2.99,07/08/19 00:41,"372 Hickory St, New York City, NY 10001" +225097,34in Ultrawide Monitor,1,379.99,07/16/19 00:57,"299 Lakeview St, San Francisco, CA 94016" +225098,Google Phone,1,600,07/15/19 16:33,"230 Sunset St, Los Angeles, CA 90001" +225099,Lightning Charging Cable,1,14.95,07/30/19 00:38,"993 Elm St, Boston, MA 02215" +225100,AAA Batteries (4-pack),1,2.99,07/27/19 20:49,"613 Main St, Los Angeles, CA 90001" +225101,20in Monitor,1,109.99,07/26/19 17:00,"992 Lake St, Boston, MA 02215" +225102,Lightning Charging Cable,1,14.95,07/10/19 11:08,"202 8th St, Atlanta, GA 30301" +225103,AA Batteries (4-pack),1,3.84,07/31/19 19:53,"677 Hill St, San Francisco, CA 94016" +225104,Lightning Charging Cable,1,14.95,07/22/19 20:57,"993 12th St, San Francisco, CA 94016" +225105,Lightning Charging Cable,1,14.95,07/27/19 11:12,"141 Pine St, Portland, OR 97035" +225106,Macbook Pro Laptop,1,1700,07/15/19 15:51,"858 Hill St, San Francisco, CA 94016" +225107,Wired Headphones,1,11.99,07/29/19 14:12,"987 River St, New York City, NY 10001" +225108,Bose SoundSport Headphones,1,99.99,07/21/19 11:28,"66 Forest St, Atlanta, GA 30301" +225109,AA Batteries (4-pack),1,3.84,07/21/19 16:04,"696 Willow St, Austin, TX 73301" +225110,USB-C Charging Cable,1,11.95,07/05/19 11:49,"553 Hill St, Boston, MA 02215" +225111,AA Batteries (4-pack),1,3.84,07/27/19 06:28,"12 Highland St, San Francisco, CA 94016" +225112,27in FHD Monitor,1,149.99,07/31/19 21:14,"624 Hill St, Dallas, TX 75001" +225113,Flatscreen TV,1,300,07/27/19 22:55,"215 Elm St, San Francisco, CA 94016" +225114,27in 4K Gaming Monitor,1,389.99,07/02/19 18:15,"285 Willow St, Los Angeles, CA 90001" +225115,27in 4K Gaming Monitor,1,389.99,07/11/19 20:26,"414 8th St, Atlanta, GA 30301" +225116,Bose SoundSport Headphones,1,99.99,07/02/19 19:53,"992 Meadow St, Austin, TX 73301" +225117,34in Ultrawide Monitor,1,379.99,07/06/19 13:18,"476 West St, Seattle, WA 98101" +225118,AA Batteries (4-pack),1,3.84,07/22/19 22:05,"855 Washington St, Dallas, TX 75001" +225119,Bose SoundSport Headphones,1,99.99,07/15/19 12:30,"268 West St, Seattle, WA 98101" +225120,LG Dryer,1,600.0,07/22/19 14:49,"385 Wilson St, San Francisco, CA 94016" +225121,Bose SoundSport Headphones,1,99.99,07/08/19 08:57,"189 Elm St, New York City, NY 10001" +225122,20in Monitor,1,109.99,07/31/19 23:14,"805 Walnut St, San Francisco, CA 94016" +225123,Lightning Charging Cable,1,14.95,07/11/19 21:30,"619 Chestnut St, Los Angeles, CA 90001" +225124,AA Batteries (4-pack),1,3.84,07/07/19 18:51,"42 Hill St, San Francisco, CA 94016" +225125,Apple Airpods Headphones,1,150,07/08/19 11:45,"293 Lincoln St, San Francisco, CA 94016" +225126,Lightning Charging Cable,1,14.95,07/18/19 18:45,"435 Ridge St, Boston, MA 02215" +225127,Lightning Charging Cable,1,14.95,07/04/19 17:14,"988 Lincoln St, Atlanta, GA 30301" +225128,USB-C Charging Cable,1,11.95,07/17/19 18:27,"777 5th St, Los Angeles, CA 90001" +225128,AA Batteries (4-pack),2,3.84,07/17/19 18:27,"777 5th St, Los Angeles, CA 90001" +225129,USB-C Charging Cable,1,11.95,07/26/19 11:11,"952 Church St, San Francisco, CA 94016" +225130,Lightning Charging Cable,1,14.95,07/25/19 12:23,"59 9th St, Atlanta, GA 30301" +225131,ThinkPad Laptop,1,999.99,07/07/19 21:19,"320 7th St, New York City, NY 10001" +225132,Apple Airpods Headphones,1,150,07/06/19 18:36,"395 Dogwood St, Dallas, TX 75001" +225133,27in FHD Monitor,1,149.99,07/05/19 11:45,"134 Walnut St, New York City, NY 10001" +225134,Bose SoundSport Headphones,1,99.99,07/08/19 10:40,"112 Madison St, Dallas, TX 75001" +225135,Apple Airpods Headphones,1,150,07/29/19 18:50,"724 West St, San Francisco, CA 94016" +225136,iPhone,1,700,07/14/19 20:54,"188 Walnut St, San Francisco, CA 94016" +225136,Wired Headphones,1,11.99,07/14/19 20:54,"188 Walnut St, San Francisco, CA 94016" +225137,Apple Airpods Headphones,1,150,07/02/19 19:11,"737 Adams St, Los Angeles, CA 90001" +225138,Wired Headphones,1,11.99,07/06/19 12:59,"228 Forest St, San Francisco, CA 94016" +225139,Wired Headphones,1,11.99,07/04/19 14:38,"915 Jackson St, Dallas, TX 75001" +225140,Lightning Charging Cable,1,14.95,07/28/19 22:00,"508 Wilson St, Portland, OR 97035" +225141,AAA Batteries (4-pack),1,2.99,07/15/19 08:56,"228 9th St, Dallas, TX 75001" +225142,AAA Batteries (4-pack),1,2.99,07/11/19 14:56,"248 Lincoln St, Seattle, WA 98101" +225143,34in Ultrawide Monitor,1,379.99,07/30/19 12:59,"158 Jefferson St, Dallas, TX 75001" +225144,34in Ultrawide Monitor,1,379.99,07/05/19 18:35,"323 9th St, San Francisco, CA 94016" +225145,USB-C Charging Cable,1,11.95,07/27/19 08:47,"263 Pine St, San Francisco, CA 94016" +225146,AA Batteries (4-pack),1,3.84,07/28/19 21:48,"277 Sunset St, Atlanta, GA 30301" +225147,Lightning Charging Cable,1,14.95,07/09/19 15:54,"790 Lake St, Boston, MA 02215" +225148,USB-C Charging Cable,1,11.95,07/16/19 21:32,"224 1st St, San Francisco, CA 94016" +225149,AA Batteries (4-pack),1,3.84,07/31/19 14:07,"406 Lincoln St, Austin, TX 73301" +225150,AA Batteries (4-pack),1,3.84,07/01/19 12:12,"736 Johnson St, Dallas, TX 75001" +225150,Apple Airpods Headphones,1,150,07/01/19 12:12,"736 Johnson St, Dallas, TX 75001" +225151,27in 4K Gaming Monitor,1,389.99,07/28/19 22:58,"173 Jackson St, Seattle, WA 98101" +225152,Bose SoundSport Headphones,1,99.99,07/29/19 11:26,"256 13th St, Austin, TX 73301" +225153,Lightning Charging Cable,1,14.95,07/10/19 19:56,"540 Highland St, Los Angeles, CA 90001" +225154,Bose SoundSport Headphones,1,99.99,07/20/19 09:31,"794 Hill St, New York City, NY 10001" +225155,Bose SoundSport Headphones,1,99.99,07/19/19 19:56,"371 Chestnut St, Los Angeles, CA 90001" +225156,iPhone,1,700,07/20/19 08:44,"571 6th St, Austin, TX 73301" +225157,USB-C Charging Cable,1,11.95,07/07/19 16:12,"98 6th St, Los Angeles, CA 90001" +225158,Macbook Pro Laptop,1,1700,07/16/19 14:59,"523 Madison St, San Francisco, CA 94016" +225159,Lightning Charging Cable,1,14.95,07/04/19 12:34,"275 Ridge St, Los Angeles, CA 90001" +225160,AA Batteries (4-pack),1,3.84,07/12/19 15:36,"321 4th St, Boston, MA 02215" +225161,USB-C Charging Cable,1,11.95,07/28/19 17:58,"390 13th St, San Francisco, CA 94016" +225162,USB-C Charging Cable,1,11.95,07/28/19 21:24,"413 Chestnut St, Atlanta, GA 30301" +225163,Apple Airpods Headphones,1,150,07/03/19 23:46,"462 Johnson St, Atlanta, GA 30301" +225164,Apple Airpods Headphones,1,150,07/18/19 02:45,"132 Maple St, Boston, MA 02215" +225165,Lightning Charging Cable,1,14.95,07/09/19 18:04,"249 Spruce St, New York City, NY 10001" +225166,Bose SoundSport Headphones,1,99.99,07/22/19 17:49,"803 Walnut St, New York City, NY 10001" +225167,AA Batteries (4-pack),1,3.84,07/04/19 21:05,"144 Cedar St, Atlanta, GA 30301" +225168,Lightning Charging Cable,1,14.95,07/05/19 19:40,"211 Jackson St, New York City, NY 10001" +225169,Lightning Charging Cable,1,14.95,07/25/19 17:35,"661 Hill St, San Francisco, CA 94016" +225170,Macbook Pro Laptop,1,1700,07/09/19 19:40,"365 Forest St, Seattle, WA 98101" +225171,20in Monitor,1,109.99,07/26/19 19:47,"960 2nd St, Portland, OR 97035" +225172,AA Batteries (4-pack),2,3.84,07/08/19 12:40,"301 Main St, Portland, OR 97035" +225173,Bose SoundSport Headphones,1,99.99,07/05/19 08:20,"622 5th St, Dallas, TX 75001" +225174,Lightning Charging Cable,1,14.95,07/28/19 13:47,"670 13th St, Seattle, WA 98101" +225175,Wired Headphones,1,11.99,07/09/19 19:14,"389 Lakeview St, San Francisco, CA 94016" +225176,Apple Airpods Headphones,1,150,07/14/19 18:10,"530 14th St, San Francisco, CA 94016" +225177,Apple Airpods Headphones,1,150,07/29/19 13:15,"226 Meadow St, San Francisco, CA 94016" +225178,Wired Headphones,1,11.99,07/24/19 16:29,"154 2nd St, New York City, NY 10001" +225179,Vareebadd Phone,1,400,07/10/19 18:35,"871 Meadow St, Austin, TX 73301" +225179,USB-C Charging Cable,1,11.95,07/10/19 18:35,"871 Meadow St, Austin, TX 73301" +225180,USB-C Charging Cable,1,11.95,07/01/19 16:14,"46 14th St, Dallas, TX 75001" +225181,Lightning Charging Cable,1,14.95,07/25/19 22:55,"788 9th St, Los Angeles, CA 90001" +225182,USB-C Charging Cable,1,11.95,07/17/19 18:54,"36 North St, New York City, NY 10001" +225183,USB-C Charging Cable,1,11.95,07/18/19 08:54,"675 14th St, Seattle, WA 98101" +225184,Lightning Charging Cable,1,14.95,07/11/19 04:21,"784 Park St, New York City, NY 10001" +225185,34in Ultrawide Monitor,1,379.99,07/15/19 10:58,"584 Hickory St, Austin, TX 73301" +225186,Apple Airpods Headphones,1,150,07/04/19 12:59,"584 Park St, New York City, NY 10001" +225187,Lightning Charging Cable,1,14.95,07/21/19 20:13,"357 Jackson St, Los Angeles, CA 90001" +225188,34in Ultrawide Monitor,1,379.99,07/19/19 09:45,"311 1st St, San Francisco, CA 94016" +225189,Wired Headphones,1,11.99,07/06/19 10:03,"612 2nd St, New York City, NY 10001" +225190,USB-C Charging Cable,1,11.95,07/20/19 12:41,"390 2nd St, San Francisco, CA 94016" +225191,Wired Headphones,1,11.99,07/30/19 16:28,"464 Jefferson St, Austin, TX 73301" +225192,Lightning Charging Cable,1,14.95,07/14/19 18:30,"40 Highland St, Boston, MA 02215" +225193,Lightning Charging Cable,1,14.95,07/02/19 14:25,"943 Washington St, Portland, OR 97035" +225194,Google Phone,1,600,07/01/19 11:13,"978 13th St, Los Angeles, CA 90001" +225195,27in FHD Monitor,1,149.99,07/05/19 17:34,"390 12th St, Dallas, TX 75001" +225196,Bose SoundSport Headphones,1,99.99,07/01/19 08:47,"567 Lincoln St, San Francisco, CA 94016" +225197,Bose SoundSport Headphones,1,99.99,07/20/19 15:42,"302 2nd St, Boston, MA 02215" +225198,AA Batteries (4-pack),1,3.84,07/02/19 16:00,"535 Cherry St, San Francisco, CA 94016" +225199,27in FHD Monitor,1,149.99,07/26/19 13:54,"804 Johnson St, San Francisco, CA 94016" +225200,Flatscreen TV,1,300,07/22/19 14:20,"147 Forest St, Dallas, TX 75001" +225201,Wired Headphones,1,11.99,07/09/19 17:06,"536 8th St, Boston, MA 02215" +225202,AAA Batteries (4-pack),1,2.99,07/10/19 23:09,"850 Highland St, Austin, TX 73301" +225203,AA Batteries (4-pack),4,3.84,07/13/19 09:42,"132 5th St, Dallas, TX 75001" +225204,Bose SoundSport Headphones,1,99.99,07/04/19 01:36,"29 5th St, Seattle, WA 98101" +225205,Lightning Charging Cable,1,14.95,07/21/19 11:37,"557 1st St, San Francisco, CA 94016" +225206,AA Batteries (4-pack),1,3.84,07/29/19 22:52,"962 10th St, Dallas, TX 75001" +225207,Lightning Charging Cable,1,14.95,07/06/19 21:00,"667 14th St, Boston, MA 02215" +225208,Lightning Charging Cable,1,14.95,07/11/19 22:38,"31 5th St, Portland, OR 97035" +225209,Wired Headphones,1,11.99,07/03/19 19:27,"855 Pine St, San Francisco, CA 94016" +225210,AAA Batteries (4-pack),3,2.99,07/03/19 23:37,"73 Jackson St, Dallas, TX 75001" +225211,iPhone,1,700,07/08/19 22:41,"255 Ridge St, New York City, NY 10001" +225212,34in Ultrawide Monitor,1,379.99,07/09/19 21:08,"409 South St, Los Angeles, CA 90001" +225213,AAA Batteries (4-pack),2,2.99,07/22/19 12:48,"302 West St, San Francisco, CA 94016" +225214,USB-C Charging Cable,2,11.95,07/17/19 20:19,"375 Cedar St, Portland, OR 97035" +225215,Bose SoundSport Headphones,1,99.99,07/03/19 17:19,"622 Wilson St, Boston, MA 02215" +225216,Apple Airpods Headphones,1,150,07/11/19 18:08,"369 Jefferson St, San Francisco, CA 94016" +225217,iPhone,1,700,07/23/19 00:40,"79 Meadow St, Atlanta, GA 30301" +225218,Wired Headphones,1,11.99,07/29/19 11:01,"122 2nd St, Seattle, WA 98101" +225219,Lightning Charging Cable,1,14.95,07/11/19 18:02,"304 9th St, San Francisco, CA 94016" +225220,Lightning Charging Cable,1,14.95,07/29/19 23:21,"788 Church St, San Francisco, CA 94016" +225221,Wired Headphones,1,11.99,07/25/19 17:39,"836 Jefferson St, Austin, TX 73301" +225222,AAA Batteries (4-pack),1,2.99,07/20/19 19:31,"622 Cedar St, Dallas, TX 75001" +225223,USB-C Charging Cable,1,11.95,07/06/19 11:10,"122 Lincoln St, Austin, TX 73301" +225224,AAA Batteries (4-pack),4,2.99,07/08/19 12:03,"9 5th St, New York City, NY 10001" +225225,Flatscreen TV,1,300,07/18/19 22:44,"882 Cherry St, San Francisco, CA 94016" +225226,Flatscreen TV,1,300,07/23/19 12:49,"397 12th St, Los Angeles, CA 90001" +225227,27in FHD Monitor,1,149.99,07/24/19 15:55,"839 Pine St, Austin, TX 73301" +225228,Flatscreen TV,1,300,07/30/19 08:52,"570 9th St, Atlanta, GA 30301" +225229,USB-C Charging Cable,1,11.95,07/03/19 09:17,"388 2nd St, Dallas, TX 75001" +225230,27in FHD Monitor,1,149.99,07/11/19 02:47,"656 13th St, Los Angeles, CA 90001" +225231,AA Batteries (4-pack),1,3.84,07/21/19 12:08,"191 Johnson St, San Francisco, CA 94016" +225232,USB-C Charging Cable,1,11.95,07/07/19 14:01,"113 River St, Atlanta, GA 30301" +225233,20in Monitor,1,109.99,07/16/19 17:14,"881 8th St, New York City, NY 10001" +225234,27in 4K Gaming Monitor,1,389.99,07/19/19 04:38,"517 Maple St, New York City, NY 10001" +225235,Lightning Charging Cable,1,14.95,07/26/19 10:24,"721 Wilson St, San Francisco, CA 94016" +225236,Lightning Charging Cable,1,14.95,07/28/19 17:54,"400 Wilson St, San Francisco, CA 94016" +225237,AAA Batteries (4-pack),1,2.99,07/25/19 19:20,"316 Center St, Boston, MA 02215" +225238,Lightning Charging Cable,2,14.95,07/08/19 00:52,"907 12th St, San Francisco, CA 94016" +225239,Wired Headphones,1,11.99,07/25/19 16:32,"774 West St, Dallas, TX 75001" +225240,Apple Airpods Headphones,1,150,07/29/19 13:26,"371 Main St, Dallas, TX 75001" +225241,34in Ultrawide Monitor,1,379.99,07/04/19 23:19,"101 Maple St, Los Angeles, CA 90001" +225242,Wired Headphones,1,11.99,07/24/19 23:32,"120 11th St, San Francisco, CA 94016" +225243,Wired Headphones,1,11.99,07/04/19 13:43,"499 Johnson St, San Francisco, CA 94016" +225244,AA Batteries (4-pack),1,3.84,07/08/19 16:09,"238 Hill St, Los Angeles, CA 90001" +225245,Bose SoundSport Headphones,1,99.99,07/11/19 22:38,"82 Chestnut St, New York City, NY 10001" +225246,ThinkPad Laptop,1,999.99,07/23/19 16:51,"335 Forest St, San Francisco, CA 94016" +225247,Lightning Charging Cable,1,14.95,07/28/19 17:54,"821 Highland St, Atlanta, GA 30301" +225248,AA Batteries (4-pack),1,3.84,07/10/19 09:31,"807 6th St, Atlanta, GA 30301" +225249,Wired Headphones,1,11.99,07/06/19 23:15,"309 Maple St, Atlanta, GA 30301" +225250,AAA Batteries (4-pack),1,2.99,07/08/19 11:10,"41 Chestnut St, Boston, MA 02215" +225251,Lightning Charging Cable,1,14.95,07/15/19 11:01,"66 Main St, Los Angeles, CA 90001" +225252,USB-C Charging Cable,1,11.95,07/03/19 10:34,"819 Main St, San Francisco, CA 94016" +225253,AAA Batteries (4-pack),1,2.99,07/30/19 20:48,"950 River St, New York City, NY 10001" +225254,AA Batteries (4-pack),2,3.84,07/19/19 08:06,"705 Main St, Portland, OR 97035" +225255,27in 4K Gaming Monitor,1,389.99,07/23/19 20:32,"64 1st St, San Francisco, CA 94016" +225256,27in FHD Monitor,1,149.99,07/03/19 09:12,"823 Lakeview St, Portland, ME 04101" +225257,34in Ultrawide Monitor,1,379.99,07/29/19 13:13,"455 10th St, Los Angeles, CA 90001" +225258,USB-C Charging Cable,1,11.95,07/31/19 13:51,"96 Forest St, New York City, NY 10001" +225259,Apple Airpods Headphones,1,150,07/26/19 15:29,"765 Center St, Portland, OR 97035" +225260,Bose SoundSport Headphones,1,99.99,07/26/19 09:59,"490 1st St, Los Angeles, CA 90001" +225261,USB-C Charging Cable,1,11.95,07/11/19 15:57,"52 Jefferson St, Boston, MA 02215" +225262,USB-C Charging Cable,1,11.95,07/06/19 09:27,"330 Pine St, San Francisco, CA 94016" +225263,34in Ultrawide Monitor,1,379.99,07/20/19 12:46,"418 11th St, Los Angeles, CA 90001" +225264,Lightning Charging Cable,1,14.95,07/30/19 11:52,"486 Chestnut St, Los Angeles, CA 90001" +225265,Apple Airpods Headphones,1,150,07/13/19 11:29,"382 Lakeview St, New York City, NY 10001" +225266,AAA Batteries (4-pack),1,2.99,07/07/19 19:34,"651 Wilson St, Los Angeles, CA 90001" +225267,USB-C Charging Cable,2,11.95,07/20/19 21:25,"145 Meadow St, Boston, MA 02215" +225268,Bose SoundSport Headphones,1,99.99,07/13/19 17:45,"917 Spruce St, Dallas, TX 75001" +225269,Lightning Charging Cable,1,14.95,07/11/19 12:22,"577 Walnut St, San Francisco, CA 94016" +225270,Macbook Pro Laptop,1,1700,07/13/19 16:14,"477 Lakeview St, San Francisco, CA 94016" +225271,Apple Airpods Headphones,1,150,07/29/19 01:21,"191 Washington St, New York City, NY 10001" +225271,iPhone,1,700,07/29/19 01:21,"191 Washington St, New York City, NY 10001" +225272,Wired Headphones,1,11.99,07/12/19 12:21,"276 5th St, San Francisco, CA 94016" +225273,Lightning Charging Cable,1,14.95,07/23/19 16:21,"630 14th St, Los Angeles, CA 90001" +225274,Apple Airpods Headphones,1,150,07/12/19 07:16,"127 Church St, Los Angeles, CA 90001" +225275,Bose SoundSport Headphones,1,99.99,07/14/19 16:49,"802 North St, Austin, TX 73301" +225276,Apple Airpods Headphones,1,150,07/09/19 10:26,"576 4th St, Portland, OR 97035" +225277,Wired Headphones,1,11.99,07/16/19 20:07,"735 Center St, Boston, MA 02215" +225278,Wired Headphones,1,11.99,07/11/19 20:41,"829 Forest St, San Francisco, CA 94016" +225279,Apple Airpods Headphones,1,150,07/11/19 11:49,"846 5th St, San Francisco, CA 94016" +225280,Lightning Charging Cable,1,14.95,07/07/19 07:44,"530 Park St, Los Angeles, CA 90001" +225281,20in Monitor,1,109.99,07/26/19 15:49,"659 9th St, San Francisco, CA 94016" +225282,Bose SoundSport Headphones,1,99.99,07/14/19 16:01,"462 River St, Portland, OR 97035" +225283,AAA Batteries (4-pack),1,2.99,07/21/19 21:32,"847 South St, Seattle, WA 98101" +225284,Apple Airpods Headphones,1,150,07/11/19 17:31,"237 Jefferson St, San Francisco, CA 94016" +225285,AA Batteries (4-pack),2,3.84,07/13/19 17:30,"306 South St, Los Angeles, CA 90001" +225286,27in FHD Monitor,1,149.99,07/04/19 12:55,"748 Johnson St, Boston, MA 02215" +225287,34in Ultrawide Monitor,1,379.99,07/02/19 07:29,"428 Church St, Portland, ME 04101" +225288,Apple Airpods Headphones,1,150,07/29/19 17:47,"459 Pine St, San Francisco, CA 94016" +225289,AAA Batteries (4-pack),2,2.99,07/28/19 10:21,"649 Hill St, Los Angeles, CA 90001" +225290,Wired Headphones,1,11.99,07/08/19 21:11,"226 Park St, New York City, NY 10001" +225291,iPhone,1,700,07/31/19 10:25,"90 12th St, Austin, TX 73301" +225291,Wired Headphones,1,11.99,07/31/19 10:25,"90 12th St, Austin, TX 73301" +225292,AAA Batteries (4-pack),1,2.99,07/16/19 16:02,"275 8th St, New York City, NY 10001" +225293,Bose SoundSport Headphones,1,99.99,07/19/19 13:57,"441 5th St, San Francisco, CA 94016" +225294,AAA Batteries (4-pack),1,2.99,07/24/19 18:32,"811 Park St, Los Angeles, CA 90001" +225295,Lightning Charging Cable,2,14.95,07/31/19 13:46,"146 13th St, New York City, NY 10001" +225296,34in Ultrawide Monitor,1,379.99,07/17/19 01:00,"364 14th St, Portland, ME 04101" +225297,34in Ultrawide Monitor,1,379.99,07/17/19 22:30,"538 Ridge St, San Francisco, CA 94016" +225298,Bose SoundSport Headphones,1,99.99,07/12/19 18:31,"244 Spruce St, Los Angeles, CA 90001" +225299,Wired Headphones,1,11.99,07/13/19 22:51,"136 Spruce St, New York City, NY 10001" +225300,ThinkPad Laptop,1,999.99,07/15/19 20:03,"987 Chestnut St, New York City, NY 10001" +225301,34in Ultrawide Monitor,1,379.99,07/10/19 16:51,"602 Lakeview St, Los Angeles, CA 90001" +225302,Wired Headphones,1,11.99,07/03/19 11:29,"775 Johnson St, San Francisco, CA 94016" +225303,USB-C Charging Cable,1,11.95,07/17/19 12:56,"576 1st St, Los Angeles, CA 90001" +225304,27in FHD Monitor,1,149.99,07/23/19 12:45,"202 Lakeview St, Dallas, TX 75001" +225305,27in FHD Monitor,1,149.99,07/05/19 17:05,"982 Park St, New York City, NY 10001" +225306,AAA Batteries (4-pack),1,2.99,07/29/19 18:51,"280 14th St, Los Angeles, CA 90001" +225307,USB-C Charging Cable,1,11.95,07/10/19 11:43,"885 2nd St, Los Angeles, CA 90001" +225308,27in FHD Monitor,1,149.99,07/14/19 18:24,"763 12th St, Austin, TX 73301" +225309,Apple Airpods Headphones,1,150,07/05/19 01:13,"577 Meadow St, New York City, NY 10001" +225310,AAA Batteries (4-pack),1,2.99,07/21/19 06:03,"678 Ridge St, Boston, MA 02215" +225311,USB-C Charging Cable,1,11.95,07/06/19 12:11,"324 Chestnut St, Austin, TX 73301" +225312,Lightning Charging Cable,1,14.95,07/14/19 18:14,"203 River St, Dallas, TX 75001" +225313,USB-C Charging Cable,1,11.95,07/14/19 21:45,"370 Maple St, Austin, TX 73301" +225313,Wired Headphones,2,11.99,07/14/19 21:45,"370 Maple St, Austin, TX 73301" +225314,Lightning Charging Cable,1,14.95,07/20/19 19:31,"477 Cedar St, Boston, MA 02215" +225315,Apple Airpods Headphones,1,150,07/28/19 11:45,"89 Adams St, Los Angeles, CA 90001" +225316,AA Batteries (4-pack),2,3.84,07/03/19 18:16,"762 1st St, San Francisco, CA 94016" +225317,AA Batteries (4-pack),1,3.84,07/29/19 06:43,"388 4th St, Dallas, TX 75001" +225318,Apple Airpods Headphones,1,150,07/05/19 17:31,"4 Madison St, New York City, NY 10001" +225319,27in 4K Gaming Monitor,1,389.99,07/31/19 22:07,"64 Cedar St, Dallas, TX 75001" +225320,AA Batteries (4-pack),2,3.84,07/07/19 15:40,"571 Pine St, New York City, NY 10001" +225321,Lightning Charging Cable,1,14.95,07/08/19 14:09,"14 Hill St, San Francisco, CA 94016" +225322,USB-C Charging Cable,1,11.95,07/02/19 09:11,"512 Lakeview St, New York City, NY 10001" +225323,Lightning Charging Cable,1,14.95,07/06/19 21:17,"556 Hickory St, Dallas, TX 75001" +225324,Wired Headphones,3,11.99,07/08/19 20:10,"257 Jefferson St, San Francisco, CA 94016" +225325,Apple Airpods Headphones,1,150,07/24/19 14:50,"468 West St, Los Angeles, CA 90001" +225326,ThinkPad Laptop,1,999.99,07/23/19 19:14,"165 4th St, San Francisco, CA 94016" +225327,Lightning Charging Cable,1,14.95,07/15/19 10:50,"450 Lakeview St, Portland, ME 04101" +225328,iPhone,1,700,07/09/19 18:53,"603 Highland St, Boston, MA 02215" +225329,Bose SoundSport Headphones,1,99.99,07/16/19 17:49,"808 8th St, Los Angeles, CA 90001" +225330,USB-C Charging Cable,1,11.95,07/25/19 12:23,"547 11th St, San Francisco, CA 94016" +225331,27in 4K Gaming Monitor,1,389.99,07/28/19 21:46,"679 Meadow St, Austin, TX 73301" +225332,AA Batteries (4-pack),2,3.84,07/29/19 00:39,"495 Jackson St, Dallas, TX 75001" +225333,Flatscreen TV,1,300,07/14/19 00:32,"604 West St, Los Angeles, CA 90001" +225334,Lightning Charging Cable,1,14.95,07/01/19 19:54,"673 Hickory St, Atlanta, GA 30301" +225335,27in 4K Gaming Monitor,1,389.99,07/07/19 12:11,"836 2nd St, Boston, MA 02215" +225336,AA Batteries (4-pack),3,3.84,07/30/19 22:16,"304 2nd St, Los Angeles, CA 90001" +225337,Flatscreen TV,1,300,07/04/19 12:07,"825 14th St, Atlanta, GA 30301" +225338,Wired Headphones,1,11.99,07/24/19 18:06,"88 9th St, San Francisco, CA 94016" +225339,USB-C Charging Cable,1,11.95,07/05/19 10:15,"205 Wilson St, San Francisco, CA 94016" +225340,AAA Batteries (4-pack),2,2.99,07/24/19 15:18,"221 Chestnut St, San Francisco, CA 94016" +225341,34in Ultrawide Monitor,1,379.99,07/01/19 14:40,"440 14th St, Seattle, WA 98101" +225342,USB-C Charging Cable,1,11.95,07/18/19 20:33,"136 Cedar St, New York City, NY 10001" +225342,20in Monitor,1,109.99,07/18/19 20:33,"136 Cedar St, New York City, NY 10001" +225343,USB-C Charging Cable,1,11.95,07/01/19 10:04,"540 Walnut St, Los Angeles, CA 90001" +225344,27in FHD Monitor,1,149.99,07/17/19 13:18,"472 Walnut St, Portland, ME 04101" +225345,Bose SoundSport Headphones,1,99.99,07/16/19 21:25,"641 11th St, Los Angeles, CA 90001" +225346,AA Batteries (4-pack),2,3.84,07/10/19 15:21,"962 Center St, New York City, NY 10001" +225347,AA Batteries (4-pack),1,3.84,07/06/19 15:06,"103 Lincoln St, Los Angeles, CA 90001" +225348,Apple Airpods Headphones,1,150,07/01/19 06:17,"317 Dogwood St, Boston, MA 02215" +225349,AA Batteries (4-pack),1,3.84,07/10/19 09:25,"555 10th St, Boston, MA 02215" +225350,USB-C Charging Cable,2,11.95,07/17/19 16:49,"576 Hill St, San Francisco, CA 94016" +225351,Lightning Charging Cable,1,14.95,07/27/19 02:26,"320 River St, Portland, OR 97035" +225352,Flatscreen TV,1,300,07/28/19 14:52,"722 Highland St, Atlanta, GA 30301" +225353,USB-C Charging Cable,1,11.95,07/15/19 12:52,"832 Park St, New York City, NY 10001" +225354,20in Monitor,1,109.99,07/07/19 14:05,"117 Highland St, San Francisco, CA 94016" +225355,Google Phone,1,600,07/02/19 14:45,"186 1st St, New York City, NY 10001" +225355,Bose SoundSport Headphones,1,99.99,07/02/19 14:45,"186 1st St, New York City, NY 10001" +225355,Wired Headphones,1,11.99,07/02/19 14:45,"186 1st St, New York City, NY 10001" +225356,AAA Batteries (4-pack),1,2.99,07/18/19 22:57,"604 Lincoln St, Seattle, WA 98101" +225357,Apple Airpods Headphones,1,150,07/21/19 14:11,"947 7th St, San Francisco, CA 94016" +225358,Vareebadd Phone,1,400,07/24/19 16:24,"553 5th St, Los Angeles, CA 90001" +225359,iPhone,1,700,07/25/19 18:00,"286 2nd St, Boston, MA 02215" +225360,Macbook Pro Laptop,1,1700,07/15/19 15:33,"568 Ridge St, Portland, OR 97035" +225361,Lightning Charging Cable,1,14.95,07/24/19 13:02,"361 7th St, San Francisco, CA 94016" +225362,AA Batteries (4-pack),2,3.84,07/12/19 09:30,"511 Sunset St, San Francisco, CA 94016" +225363,AAA Batteries (4-pack),2,2.99,07/14/19 11:00,"361 Johnson St, Atlanta, GA 30301" +225364,34in Ultrawide Monitor,1,379.99,07/30/19 20:56,"301 North St, New York City, NY 10001" +225365,Wired Headphones,1,11.99,07/05/19 09:25,"732 Johnson St, Boston, MA 02215" +225366,Google Phone,1,600,07/23/19 08:49,"527 Cedar St, San Francisco, CA 94016" +225366,Bose SoundSport Headphones,1,99.99,07/23/19 08:49,"527 Cedar St, San Francisco, CA 94016" +225367,AAA Batteries (4-pack),1,2.99,07/29/19 19:24,"7 Walnut St, Los Angeles, CA 90001" +225368,27in FHD Monitor,1,149.99,07/24/19 22:49,"380 12th St, Los Angeles, CA 90001" +225369,Lightning Charging Cable,1,14.95,07/26/19 13:20,"512 Highland St, Dallas, TX 75001" +225370,USB-C Charging Cable,1,11.95,07/18/19 00:29,"454 Adams St, New York City, NY 10001" +225371,Bose SoundSport Headphones,1,99.99,07/28/19 11:12,"422 7th St, New York City, NY 10001" +225372,ThinkPad Laptop,1,999.99,07/22/19 23:04,"818 Center St, Portland, OR 97035" +225373,AA Batteries (4-pack),2,3.84,07/11/19 20:00,"979 13th St, Atlanta, GA 30301" +225374,USB-C Charging Cable,2,11.95,07/30/19 12:31,"541 9th St, Seattle, WA 98101" +225375,Vareebadd Phone,1,400,07/06/19 11:20,"452 Wilson St, Los Angeles, CA 90001" +225376,Lightning Charging Cable,1,14.95,07/12/19 19:08,"863 Pine St, Los Angeles, CA 90001" +225377,Wired Headphones,1,11.99,07/22/19 11:22,"731 Park St, Boston, MA 02215" +225378,Apple Airpods Headphones,1,150,07/27/19 20:30,"178 Hickory St, Dallas, TX 75001" +225379,AA Batteries (4-pack),1,3.84,07/05/19 20:02,"205 1st St, Los Angeles, CA 90001" +225380,Bose SoundSport Headphones,1,99.99,07/22/19 20:06,"941 Park St, Dallas, TX 75001" +225381,Apple Airpods Headphones,1,150,07/05/19 23:40,"445 Cherry St, Portland, ME 04101" +225382,Wired Headphones,1,11.99,07/22/19 18:39,"237 Cedar St, San Francisco, CA 94016" +225383,27in FHD Monitor,1,149.99,07/07/19 17:29,"140 Maple St, Portland, ME 04101" +225384,AAA Batteries (4-pack),2,2.99,07/03/19 18:15,"469 Wilson St, Austin, TX 73301" +225385,AA Batteries (4-pack),1,3.84,07/06/19 22:34,"240 Church St, Boston, MA 02215" +225386,AAA Batteries (4-pack),2,2.99,07/04/19 11:05,"765 2nd St, San Francisco, CA 94016" +225387,20in Monitor,1,109.99,07/09/19 14:57,"208 Walnut St, New York City, NY 10001" +225388,Flatscreen TV,1,300,07/13/19 21:07,"201 8th St, New York City, NY 10001" +225389,Lightning Charging Cable,1,14.95,07/30/19 20:55,"76 Pine St, San Francisco, CA 94016" +225390,Bose SoundSport Headphones,1,99.99,07/14/19 09:07,"225 1st St, New York City, NY 10001" +225391,ThinkPad Laptop,1,999.99,07/24/19 09:39,"536 2nd St, San Francisco, CA 94016" +225392,ThinkPad Laptop,1,999.99,07/19/19 19:30,"587 South St, Dallas, TX 75001" +225393,Wired Headphones,1,11.99,07/15/19 16:10,"684 Cherry St, San Francisco, CA 94016" +225394,AAA Batteries (4-pack),1,2.99,07/02/19 10:21,"320 11th St, Los Angeles, CA 90001" +225395,AAA Batteries (4-pack),1,2.99,07/17/19 10:07,"765 8th St, Los Angeles, CA 90001" +225396,Flatscreen TV,1,300,07/21/19 17:34,"20 Hickory St, Portland, OR 97035" +225397,Apple Airpods Headphones,1,150,07/28/19 17:17,"928 River St, Seattle, WA 98101" +225398,Wired Headphones,1,11.99,07/21/19 19:32,"724 4th St, Los Angeles, CA 90001" +225399,AA Batteries (4-pack),1,3.84,07/15/19 19:09,"817 Madison St, Atlanta, GA 30301" +225400,20in Monitor,1,109.99,07/07/19 22:41,"243 8th St, Boston, MA 02215" +225401,iPhone,1,700,07/17/19 08:21,"421 Sunset St, Seattle, WA 98101" +225402,Wired Headphones,1,11.99,07/25/19 10:16,"220 7th St, Austin, TX 73301" +225403,Vareebadd Phone,1,400,07/30/19 14:23,"852 North St, Seattle, WA 98101" +225404,AA Batteries (4-pack),1,3.84,07/27/19 19:15,"525 Lakeview St, Dallas, TX 75001" +225405,Lightning Charging Cable,1,14.95,07/13/19 16:35,"458 Johnson St, New York City, NY 10001" +225406,LG Dryer,1,600.0,07/21/19 21:17,"341 7th St, Dallas, TX 75001" +225407,Apple Airpods Headphones,1,150,07/05/19 22:13,"268 Pine St, San Francisco, CA 94016" +225408,Lightning Charging Cable,3,14.95,07/03/19 11:54,"142 Church St, New York City, NY 10001" +225409,USB-C Charging Cable,1,11.95,07/25/19 12:07,"598 Meadow St, Boston, MA 02215" +225410,Google Phone,1,600,07/06/19 22:25,"496 14th St, Los Angeles, CA 90001" +225410,Wired Headphones,1,11.99,07/06/19 22:25,"496 14th St, Los Angeles, CA 90001" +225411,AAA Batteries (4-pack),1,2.99,07/26/19 12:59,"273 Walnut St, Los Angeles, CA 90001" +225412,27in 4K Gaming Monitor,1,389.99,07/08/19 15:54,"661 Cedar St, Seattle, WA 98101" +225413,Macbook Pro Laptop,1,1700,07/08/19 10:30,"989 Wilson St, Dallas, TX 75001" +225414,27in FHD Monitor,1,149.99,07/05/19 20:39,"985 Cedar St, New York City, NY 10001" +225415,Lightning Charging Cable,1,14.95,07/29/19 17:55,"72 Lakeview St, Boston, MA 02215" +225416,Apple Airpods Headphones,1,150,07/31/19 16:06,"153 Madison St, Los Angeles, CA 90001" +225417,34in Ultrawide Monitor,1,379.99,07/28/19 17:01,"126 7th St, Los Angeles, CA 90001" +225418,Lightning Charging Cable,1,14.95,07/26/19 04:01,"761 10th St, Atlanta, GA 30301" +225419,ThinkPad Laptop,1,999.99,07/27/19 13:56,"495 North St, Boston, MA 02215" +,,,,, +225420,Wired Headphones,1,11.99,07/02/19 12:33,"385 6th St, San Francisco, CA 94016" +225421,Apple Airpods Headphones,1,150,07/30/19 09:02,"254 Willow St, New York City, NY 10001" +225422,AAA Batteries (4-pack),1,2.99,07/05/19 15:01,"767 Jackson St, Los Angeles, CA 90001" +225423,Apple Airpods Headphones,1,150,07/25/19 13:08,"385 13th St, Dallas, TX 75001" +225424,AA Batteries (4-pack),1,3.84,07/14/19 18:36,"448 Adams St, Atlanta, GA 30301" +225425,Wired Headphones,1,11.99,07/31/19 17:49,"757 Park St, Seattle, WA 98101" +225426,Google Phone,1,600,07/13/19 02:04,"593 Willow St, Atlanta, GA 30301" +225427,AAA Batteries (4-pack),1,2.99,07/23/19 13:27,"361 9th St, San Francisco, CA 94016" +225428,USB-C Charging Cable,1,11.95,07/09/19 23:00,"388 Willow St, Boston, MA 02215" +225429,USB-C Charging Cable,1,11.95,07/21/19 07:18,"623 5th St, Portland, OR 97035" +225430,Lightning Charging Cable,1,14.95,07/25/19 20:17,"324 Lincoln St, San Francisco, CA 94016" +225431,AA Batteries (4-pack),1,3.84,07/20/19 12:02,"576 Main St, Boston, MA 02215" +225432,Lightning Charging Cable,2,14.95,07/16/19 08:37,"381 Meadow St, Seattle, WA 98101" +225433,27in 4K Gaming Monitor,1,389.99,07/30/19 01:42,"329 2nd St, Boston, MA 02215" +225434,27in FHD Monitor,1,149.99,07/01/19 22:30,"452 Meadow St, New York City, NY 10001" +225435,Lightning Charging Cable,2,14.95,07/22/19 14:24,"549 Forest St, New York City, NY 10001" +225436,AA Batteries (4-pack),2,3.84,07/05/19 13:08,"424 7th St, New York City, NY 10001" +225437,Wired Headphones,1,11.99,07/21/19 08:35,"857 Maple St, Dallas, TX 75001" +225438,Wired Headphones,1,11.99,07/28/19 23:16,"608 Center St, Portland, OR 97035" +225439,Lightning Charging Cable,1,14.95,07/24/19 20:14,"361 Center St, Austin, TX 73301" +225440,Wired Headphones,3,11.99,07/13/19 16:05,"460 West St, San Francisco, CA 94016" +225441,Wired Headphones,1,11.99,07/31/19 06:52,"81 Johnson St, Boston, MA 02215" +225442,iPhone,1,700,07/28/19 22:06,"869 Jefferson St, Los Angeles, CA 90001" +225443,AA Batteries (4-pack),2,3.84,07/25/19 20:44,"161 10th St, Seattle, WA 98101" +225444,USB-C Charging Cable,1,11.95,07/20/19 13:06,"273 Cedar St, Seattle, WA 98101" +225445,USB-C Charging Cable,1,11.95,07/11/19 15:03,"853 Hickory St, Los Angeles, CA 90001" +225446,USB-C Charging Cable,1,11.95,07/13/19 17:32,"232 Jefferson St, New York City, NY 10001" +,,,,, +225447,Lightning Charging Cable,1,14.95,07/25/19 11:41,"163 14th St, Boston, MA 02215" +225448,AA Batteries (4-pack),1,3.84,07/27/19 12:14,"971 14th St, Portland, OR 97035" +225449,Flatscreen TV,1,300,07/12/19 14:00,"112 Church St, Boston, MA 02215" +225450,AAA Batteries (4-pack),1,2.99,07/09/19 02:43,"13 Main St, Los Angeles, CA 90001" +225451,Apple Airpods Headphones,1,150,07/08/19 19:15,"833 Sunset St, Dallas, TX 75001" +225452,34in Ultrawide Monitor,1,379.99,07/10/19 09:31,"210 Johnson St, Portland, OR 97035" +225453,Wired Headphones,1,11.99,07/02/19 16:21,"709 8th St, Los Angeles, CA 90001" +225454,AA Batteries (4-pack),1,3.84,07/20/19 20:40,"816 Maple St, New York City, NY 10001" +225454,iPhone,1,700,07/20/19 20:40,"816 Maple St, New York City, NY 10001" +225455,Lightning Charging Cable,2,14.95,07/04/19 15:27,"421 Willow St, New York City, NY 10001" +225456,34in Ultrawide Monitor,1,379.99,07/02/19 12:28,"320 6th St, San Francisco, CA 94016" +225457,27in FHD Monitor,1,149.99,07/06/19 13:16,"245 Jefferson St, New York City, NY 10001" +225458,USB-C Charging Cable,1,11.95,07/26/19 18:58,"611 Lake St, Atlanta, GA 30301" +225459,Lightning Charging Cable,1,14.95,07/18/19 10:49,"525 Sunset St, San Francisco, CA 94016" +225460,20in Monitor,1,109.99,07/12/19 13:22,"966 12th St, Seattle, WA 98101" +225461,Lightning Charging Cable,1,14.95,07/20/19 06:46,"597 Hill St, Los Angeles, CA 90001" +225462,Bose SoundSport Headphones,1,99.99,07/13/19 11:08,"217 11th St, Boston, MA 02215" +225463,Flatscreen TV,1,300,07/02/19 13:14,"474 11th St, Atlanta, GA 30301" +225464,Lightning Charging Cable,1,14.95,07/08/19 23:37,"253 13th St, Atlanta, GA 30301" +225465,AA Batteries (4-pack),1,3.84,07/29/19 21:13,"121 10th St, Portland, OR 97035" +225466,AAA Batteries (4-pack),1,2.99,07/01/19 20:03,"575 Chestnut St, Atlanta, GA 30301" +225467,Wired Headphones,1,11.99,07/03/19 14:41,"3 Lincoln St, New York City, NY 10001" +225468,Lightning Charging Cable,1,14.95,07/23/19 12:24,"617 Adams St, Dallas, TX 75001" +225469,Apple Airpods Headphones,1,150,07/07/19 18:14,"761 5th St, San Francisco, CA 94016" +225470,Lightning Charging Cable,1,14.95,07/16/19 17:47,"43 Willow St, New York City, NY 10001" +225471,AA Batteries (4-pack),1,3.84,07/16/19 10:30,"76 Jackson St, Portland, ME 04101" +225472,AA Batteries (4-pack),2,3.84,07/24/19 11:20,"735 12th St, San Francisco, CA 94016" +225473,Lightning Charging Cable,1,14.95,07/15/19 23:21,"50 1st St, Portland, OR 97035" +225474,ThinkPad Laptop,1,999.99,07/30/19 21:24,"83 Sunset St, Seattle, WA 98101" +225475,Bose SoundSport Headphones,1,99.99,07/01/19 13:54,"742 Main St, Portland, OR 97035" +225476,Lightning Charging Cable,1,14.95,07/10/19 19:11,"631 Center St, San Francisco, CA 94016" +225477,USB-C Charging Cable,1,11.95,07/31/19 12:56,"152 Dogwood St, Dallas, TX 75001" +225478,AA Batteries (4-pack),1,3.84,07/28/19 17:38,"440 Hickory St, San Francisco, CA 94016" +225479,20in Monitor,2,109.99,07/23/19 16:04,"377 Ridge St, New York City, NY 10001" +225480,AA Batteries (4-pack),2,3.84,07/26/19 12:35,"684 Johnson St, Dallas, TX 75001" +225481,Google Phone,1,600,07/07/19 22:42,"335 12th St, Portland, OR 97035" +225481,USB-C Charging Cable,1,11.95,07/07/19 22:42,"335 12th St, Portland, OR 97035" +225481,Wired Headphones,1,11.99,07/07/19 22:42,"335 12th St, Portland, OR 97035" +225482,AA Batteries (4-pack),2,3.84,07/13/19 18:12,"26 Center St, San Francisco, CA 94016" +225483,USB-C Charging Cable,1,11.95,07/28/19 11:15,"220 10th St, Boston, MA 02215" +225484,Wired Headphones,2,11.99,07/29/19 17:38,"269 1st St, Los Angeles, CA 90001" +225485,USB-C Charging Cable,1,11.95,07/22/19 16:23,"813 1st St, Atlanta, GA 30301" +225486,Bose SoundSport Headphones,1,99.99,07/22/19 20:15,"13 2nd St, San Francisco, CA 94016" +225487,Wired Headphones,1,11.99,07/09/19 03:26,"68 Church St, Boston, MA 02215" +225488,20in Monitor,1,109.99,07/19/19 15:16,"969 Dogwood St, Los Angeles, CA 90001" +225489,Wired Headphones,1,11.99,07/14/19 17:14,"546 River St, Boston, MA 02215" +225490,Apple Airpods Headphones,1,150,07/16/19 09:04,"253 10th St, Boston, MA 02215" +225491,USB-C Charging Cable,1,11.95,07/25/19 22:23,"831 11th St, San Francisco, CA 94016" +225492,AA Batteries (4-pack),1,3.84,07/05/19 02:51,"773 Maple St, New York City, NY 10001" +225493,Lightning Charging Cable,1,14.95,07/10/19 21:01,"344 Ridge St, Portland, OR 97035" +225494,Apple Airpods Headphones,1,150,07/03/19 12:53,"533 Forest St, Los Angeles, CA 90001" +225495,Apple Airpods Headphones,1,150,07/07/19 13:52,"672 Wilson St, Seattle, WA 98101" +225496,Wired Headphones,1,11.99,07/18/19 21:55,"532 North St, San Francisco, CA 94016" +225497,20in Monitor,1,109.99,07/21/19 15:06,"876 Center St, Los Angeles, CA 90001" +225498,AA Batteries (4-pack),2,3.84,07/03/19 18:24,"154 Pine St, San Francisco, CA 94016" +225499,USB-C Charging Cable,1,11.95,07/31/19 11:03,"461 14th St, New York City, NY 10001" +225500,Flatscreen TV,1,300,07/05/19 13:35,"25 North St, San Francisco, CA 94016" +225501,34in Ultrawide Monitor,1,379.99,07/11/19 16:50,"880 Jackson St, Portland, OR 97035" +225502,AA Batteries (4-pack),1,3.84,07/03/19 16:32,"321 Cherry St, San Francisco, CA 94016" +225503,34in Ultrawide Monitor,1,379.99,07/31/19 07:10,"609 7th St, Atlanta, GA 30301" +225504,AA Batteries (4-pack),1,3.84,07/28/19 17:34,"108 6th St, San Francisco, CA 94016" +225505,Wired Headphones,1,11.99,07/13/19 13:58,"291 13th St, San Francisco, CA 94016" +225506,Flatscreen TV,2,300,07/25/19 18:48,"867 8th St, Seattle, WA 98101" +225507,iPhone,1,700,07/05/19 00:15,"535 Center St, Atlanta, GA 30301" +225508,USB-C Charging Cable,1,11.95,07/04/19 12:31,"101 River St, Austin, TX 73301" +225509,AAA Batteries (4-pack),1,2.99,07/12/19 08:40,"103 Highland St, Los Angeles, CA 90001" +225510,Wired Headphones,1,11.99,07/11/19 22:42,"907 Adams St, Austin, TX 73301" +225511,34in Ultrawide Monitor,1,379.99,07/11/19 07:09,"751 Adams St, New York City, NY 10001" +225512,AAA Batteries (4-pack),1,2.99,07/02/19 20:09,"472 Johnson St, Atlanta, GA 30301" +225513,Bose SoundSport Headphones,1,99.99,07/12/19 14:45,"38 Highland St, Seattle, WA 98101" +225514,Wired Headphones,1,11.99,07/08/19 17:45,"516 Pine St, Los Angeles, CA 90001" +225515,AA Batteries (4-pack),2,3.84,07/20/19 19:12,"551 13th St, Los Angeles, CA 90001" +225516,Bose SoundSport Headphones,1,99.99,07/27/19 11:30,"16 North St, Boston, MA 02215" +225517,AAA Batteries (4-pack),2,2.99,07/17/19 20:12,"107 Forest St, New York City, NY 10001" +225518,27in FHD Monitor,1,149.99,07/15/19 18:54,"701 Pine St, Seattle, WA 98101" +225519,Bose SoundSport Headphones,1,99.99,07/03/19 08:59,"90 Wilson St, San Francisco, CA 94016" +225520,27in 4K Gaming Monitor,1,389.99,07/15/19 14:27,"882 Park St, Seattle, WA 98101" +225521,20in Monitor,1,109.99,07/23/19 17:43,"558 Adams St, Atlanta, GA 30301" +225522,Bose SoundSport Headphones,1,99.99,07/11/19 12:30,"444 12th St, Dallas, TX 75001" +225523,20in Monitor,1,109.99,07/26/19 02:31,"768 Jackson St, New York City, NY 10001" +225524,AAA Batteries (4-pack),1,2.99,07/02/19 21:53,"4 11th St, Atlanta, GA 30301" +225525,AA Batteries (4-pack),1,3.84,07/25/19 10:28,"708 Lakeview St, San Francisco, CA 94016" +225526,AAA Batteries (4-pack),1,2.99,07/20/19 00:07,"75 West St, New York City, NY 10001" +225527,AA Batteries (4-pack),4,3.84,07/02/19 11:00,"880 Chestnut St, Boston, MA 02215" +225528,iPhone,1,700,07/10/19 10:28,"292 Jefferson St, San Francisco, CA 94016" +225529,Lightning Charging Cable,1,14.95,07/30/19 11:42,"950 Wilson St, Dallas, TX 75001" +225530,USB-C Charging Cable,1,11.95,07/01/19 08:52,"238 Maple St, Austin, TX 73301" +225531,AAA Batteries (4-pack),1,2.99,07/07/19 14:52,"502 Walnut St, Seattle, WA 98101" +225532,Lightning Charging Cable,1,14.95,07/17/19 13:22,"559 6th St, New York City, NY 10001" +225533,Google Phone,1,600,07/24/19 10:56,"616 Hill St, San Francisco, CA 94016" +225534,Flatscreen TV,1,300,07/18/19 12:14,"802 Jackson St, San Francisco, CA 94016" +225535,27in 4K Gaming Monitor,1,389.99,07/21/19 19:11,"204 Meadow St, New York City, NY 10001" +225536,Bose SoundSport Headphones,1,99.99,07/19/19 14:10,"65 12th St, New York City, NY 10001" +225537,ThinkPad Laptop,1,999.99,07/10/19 18:09,"561 5th St, Los Angeles, CA 90001" +225538,Bose SoundSport Headphones,1,99.99,07/06/19 20:28,"833 Jackson St, San Francisco, CA 94016" +225539,AA Batteries (4-pack),2,3.84,07/27/19 14:03,"333 Forest St, Portland, OR 97035" +225540,USB-C Charging Cable,1,11.95,07/02/19 17:23,"810 8th St, Los Angeles, CA 90001" +225541,Bose SoundSport Headphones,1,99.99,07/01/19 12:10,"761 Pine St, Boston, MA 02215" +225542,AA Batteries (4-pack),1,3.84,07/29/19 06:45,"100 Hill St, Dallas, TX 75001" +225543,USB-C Charging Cable,1,11.95,07/04/19 23:03,"746 Jefferson St, New York City, NY 10001" +225544,27in 4K Gaming Monitor,1,389.99,07/02/19 17:52,"798 Dogwood St, San Francisco, CA 94016" +225545,USB-C Charging Cable,1,11.95,07/02/19 20:15,"641 11th St, Los Angeles, CA 90001" +225546,AAA Batteries (4-pack),1,2.99,07/21/19 10:36,"828 Main St, San Francisco, CA 94016" +225547,27in FHD Monitor,1,149.99,07/06/19 15:32,"987 Johnson St, Los Angeles, CA 90001" +225548,Apple Airpods Headphones,1,150,07/31/19 15:58,"991 Jackson St, Boston, MA 02215" +225549,Wired Headphones,1,11.99,07/17/19 16:32,"481 2nd St, New York City, NY 10001" +225550,Wired Headphones,1,11.99,07/15/19 11:41,"383 West St, New York City, NY 10001" +225551,USB-C Charging Cable,1,11.95,07/16/19 08:50,"667 Main St, Atlanta, GA 30301" +225552,Lightning Charging Cable,1,14.95,07/09/19 14:10,"797 Walnut St, Portland, OR 97035" +225553,AAA Batteries (4-pack),1,2.99,07/20/19 15:29,"24 Madison St, San Francisco, CA 94016" +225554,AAA Batteries (4-pack),1,2.99,07/13/19 11:30,"114 Lake St, San Francisco, CA 94016" +225555,34in Ultrawide Monitor,1,379.99,07/26/19 23:54,"673 Park St, Atlanta, GA 30301" +225556,AAA Batteries (4-pack),2,2.99,07/15/19 11:11,"966 13th St, San Francisco, CA 94016" +225557,USB-C Charging Cable,2,11.95,07/16/19 10:49,"764 Lake St, San Francisco, CA 94016" +225558,AA Batteries (4-pack),1,3.84,07/04/19 12:58,"207 12th St, New York City, NY 10001" +225559,Wired Headphones,1,11.99,07/28/19 18:38,"977 North St, Seattle, WA 98101" +225560,Lightning Charging Cable,1,14.95,07/30/19 15:42,"716 Center St, Los Angeles, CA 90001" +225561,Apple Airpods Headphones,1,150,07/28/19 15:53,"725 River St, Los Angeles, CA 90001" +225562,ThinkPad Laptop,1,999.99,07/31/19 11:31,"514 Willow St, San Francisco, CA 94016" +225563,Lightning Charging Cable,1,14.95,07/29/19 21:29,"778 12th St, Atlanta, GA 30301" +225564,USB-C Charging Cable,1,11.95,07/15/19 18:27,"266 Lake St, Portland, OR 97035" +225565,USB-C Charging Cable,2,11.95,07/15/19 07:32,"724 North St, New York City, NY 10001" +225566,27in 4K Gaming Monitor,1,389.99,07/29/19 08:52,"789 Lake St, Los Angeles, CA 90001" +225566,27in 4K Gaming Monitor,1,389.99,07/29/19 08:52,"789 Lake St, Los Angeles, CA 90001" +225567,Lightning Charging Cable,1,14.95,07/31/19 16:47,"112 Dogwood St, Portland, OR 97035" +225568,27in 4K Gaming Monitor,1,389.99,07/24/19 21:23,"121 Johnson St, Austin, TX 73301" +225569,ThinkPad Laptop,1,999.99,07/21/19 18:55,"686 Center St, Austin, TX 73301" +225570,AAA Batteries (4-pack),1,2.99,07/26/19 09:26,"190 Hill St, Dallas, TX 75001" +225571,AAA Batteries (4-pack),1,2.99,07/20/19 09:47,"253 Walnut St, Los Angeles, CA 90001" +225572,USB-C Charging Cable,2,11.95,07/17/19 08:39,"586 Hill St, San Francisco, CA 94016" +225573,20in Monitor,1,109.99,07/23/19 12:34,"406 Walnut St, Los Angeles, CA 90001" +225574,Lightning Charging Cable,1,14.95,07/25/19 10:03,"561 Pine St, Atlanta, GA 30301" +225575,Lightning Charging Cable,1,14.95,07/09/19 18:56,"69 8th St, Seattle, WA 98101" +225576,34in Ultrawide Monitor,1,379.99,07/15/19 06:59,"900 Walnut St, San Francisco, CA 94016" +225577,Apple Airpods Headphones,1,150,07/11/19 16:46,"149 13th St, San Francisco, CA 94016" +225578,USB-C Charging Cable,1,11.95,07/15/19 18:21,"575 Cherry St, Portland, OR 97035" +225579,Wired Headphones,1,11.99,07/27/19 12:33,"346 1st St, New York City, NY 10001" +225580,Bose SoundSport Headphones,1,99.99,07/15/19 12:42,"320 8th St, Dallas, TX 75001" +225581,Lightning Charging Cable,1,14.95,07/22/19 18:10,"656 Lakeview St, San Francisco, CA 94016" +225582,USB-C Charging Cable,1,11.95,07/14/19 09:13,"210 Chestnut St, New York City, NY 10001" +225583,AAA Batteries (4-pack),1,2.99,07/14/19 21:53,"948 Wilson St, Los Angeles, CA 90001" +225584,Lightning Charging Cable,1,14.95,07/21/19 20:45,"212 5th St, Atlanta, GA 30301" +225585,Apple Airpods Headphones,1,150,07/19/19 12:57,"532 Forest St, Los Angeles, CA 90001" +225586,Lightning Charging Cable,1,14.95,07/23/19 13:50,"107 Park St, Los Angeles, CA 90001" +225587,Wired Headphones,1,11.99,07/09/19 00:57,"704 Ridge St, Portland, ME 04101" +225588,iPhone,1,700,07/17/19 14:32,"857 Main St, San Francisco, CA 94016" +225589,Flatscreen TV,1,300,07/19/19 16:56,"950 Pine St, San Francisco, CA 94016" +225590,Bose SoundSport Headphones,1,99.99,07/23/19 08:34,"617 South St, Dallas, TX 75001" +225591,Lightning Charging Cable,1,14.95,07/14/19 20:56,"636 Johnson St, Boston, MA 02215" +225592,Bose SoundSport Headphones,1,99.99,07/14/19 23:33,"291 Hill St, San Francisco, CA 94016" +225592,Bose SoundSport Headphones,1,99.99,07/14/19 23:33,"291 Hill St, San Francisco, CA 94016" +225593,AA Batteries (4-pack),1,3.84,07/02/19 23:54,"432 13th St, San Francisco, CA 94016" +225594,Apple Airpods Headphones,1,150,07/16/19 20:59,"824 Willow St, Austin, TX 73301" +225595,27in FHD Monitor,1,149.99,07/15/19 12:26,"752 Main St, Los Angeles, CA 90001" +225596,iPhone,1,700,07/08/19 13:34,"500 13th St, Boston, MA 02215" +225596,Lightning Charging Cable,1,14.95,07/08/19 13:34,"500 13th St, Boston, MA 02215" +225597,AA Batteries (4-pack),1,3.84,07/24/19 03:50,"726 Chestnut St, Los Angeles, CA 90001" +225598,Lightning Charging Cable,1,14.95,07/03/19 22:13,"575 Lakeview St, San Francisco, CA 94016" +225599,ThinkPad Laptop,1,999.99,07/02/19 18:28,"105 Meadow St, Seattle, WA 98101" +225600,Wired Headphones,1,11.99,07/03/19 13:08,"698 Park St, San Francisco, CA 94016" +225601,AA Batteries (4-pack),1,3.84,07/08/19 11:34,"201 West St, Los Angeles, CA 90001" +225602,27in FHD Monitor,1,149.99,07/31/19 19:09,"810 Chestnut St, Los Angeles, CA 90001" +225603,AA Batteries (4-pack),1,3.84,07/10/19 12:07,"574 1st St, San Francisco, CA 94016" +225604,Vareebadd Phone,1,400,07/05/19 19:59,"448 14th St, Dallas, TX 75001" +225605,AA Batteries (4-pack),1,3.84,07/20/19 14:40,"359 Highland St, Boston, MA 02215" +225606,Apple Airpods Headphones,1,150,07/12/19 04:37,"158 12th St, San Francisco, CA 94016" +225607,Wired Headphones,1,11.99,07/11/19 08:46,"353 Maple St, Dallas, TX 75001" +225608,Apple Airpods Headphones,1,150,07/05/19 20:36,"358 Lake St, San Francisco, CA 94016" +225609,Bose SoundSport Headphones,1,99.99,07/06/19 10:07,"472 Sunset St, San Francisco, CA 94016" +225610,Wired Headphones,1,11.99,07/13/19 22:25,"416 Lakeview St, New York City, NY 10001" +225611,AAA Batteries (4-pack),1,2.99,07/06/19 12:06,"829 Wilson St, Austin, TX 73301" +225612,AAA Batteries (4-pack),1,2.99,07/10/19 19:21,"477 Lake St, San Francisco, CA 94016" +225613,AAA Batteries (4-pack),1,2.99,07/03/19 13:44,"437 River St, Dallas, TX 75001" +225614,iPhone,1,700,07/15/19 18:18,"871 South St, Dallas, TX 75001" +225615,USB-C Charging Cable,2,11.95,07/05/19 12:06,"175 6th St, Los Angeles, CA 90001" +225616,Macbook Pro Laptop,1,1700,07/01/19 15:47,"685 Center St, Seattle, WA 98101" +225617,34in Ultrawide Monitor,1,379.99,07/25/19 12:44,"67 Spruce St, Seattle, WA 98101" +225618,AA Batteries (4-pack),1,3.84,07/20/19 09:54,"136 10th St, San Francisco, CA 94016" +225619,AAA Batteries (4-pack),1,2.99,07/26/19 10:59,"631 Willow St, Los Angeles, CA 90001" +225620,AAA Batteries (4-pack),1,2.99,07/04/19 00:41,"304 Hill St, San Francisco, CA 94016" +225621,USB-C Charging Cable,1,11.95,07/25/19 10:45,"480 Wilson St, Austin, TX 73301" +225622,AA Batteries (4-pack),1,3.84,07/23/19 14:09,"255 Church St, San Francisco, CA 94016" +225622,Wired Headphones,2,11.99,07/23/19 14:09,"255 Church St, San Francisco, CA 94016" +225623,27in 4K Gaming Monitor,1,389.99,07/25/19 19:06,"414 Lake St, San Francisco, CA 94016" +225624,Flatscreen TV,1,300,07/19/19 13:34,"118 Washington St, San Francisco, CA 94016" +225625,Lightning Charging Cable,1,14.95,07/02/19 20:21,"602 South St, New York City, NY 10001" +225626,AAA Batteries (4-pack),1,2.99,07/05/19 19:30,"571 Ridge St, Seattle, WA 98101" +225627,AAA Batteries (4-pack),1,2.99,07/06/19 07:44,"659 Madison St, Los Angeles, CA 90001" +225628,Wired Headphones,1,11.99,07/04/19 21:43,"13 12th St, New York City, NY 10001" +225629,Lightning Charging Cable,2,14.95,07/27/19 11:40,"588 Ridge St, New York City, NY 10001" +225630,AA Batteries (4-pack),1,3.84,07/22/19 18:26,"65 Cedar St, New York City, NY 10001" +225631,Bose SoundSport Headphones,1,99.99,07/09/19 20:02,"766 Park St, Boston, MA 02215" +225632,AAA Batteries (4-pack),2,2.99,07/29/19 00:28,"695 Johnson St, San Francisco, CA 94016" +225633,Apple Airpods Headphones,1,150,07/09/19 00:19,"850 Lake St, Seattle, WA 98101" +225634,AA Batteries (4-pack),1,3.84,07/31/19 16:06,"712 Park St, New York City, NY 10001" +225635,Wired Headphones,1,11.99,07/11/19 12:15,"474 Lakeview St, Los Angeles, CA 90001" +225636,Bose SoundSport Headphones,1,99.99,07/25/19 19:09,"222 Walnut St, San Francisco, CA 94016" +225637,Lightning Charging Cable,1,14.95,07/12/19 12:39,"962 River St, Los Angeles, CA 90001" +225638,Apple Airpods Headphones,1,150,07/16/19 17:37,"962 Adams St, Dallas, TX 75001" +225639,Apple Airpods Headphones,1,150,07/13/19 00:51,"460 South St, Los Angeles, CA 90001" +225640,AAA Batteries (4-pack),2,2.99,07/19/19 17:40,"332 Johnson St, San Francisco, CA 94016" +225641,USB-C Charging Cable,1,11.95,07/26/19 20:17,"610 Jefferson St, Los Angeles, CA 90001" +225642,34in Ultrawide Monitor,1,379.99,07/30/19 19:32,"834 Cedar St, Portland, OR 97035" +225643,USB-C Charging Cable,1,11.95,07/10/19 11:15,"586 Lakeview St, Boston, MA 02215" +225644,Bose SoundSport Headphones,1,99.99,07/10/19 13:38,"656 Washington St, Los Angeles, CA 90001" +225645,27in 4K Gaming Monitor,1,389.99,07/21/19 19:24,"18 Jefferson St, Atlanta, GA 30301" +225646,20in Monitor,1,109.99,07/04/19 10:04,"141 10th St, Boston, MA 02215" +225647,AA Batteries (4-pack),1,3.84,07/12/19 17:28,"185 4th St, Boston, MA 02215" +225648,Flatscreen TV,1,300,07/01/19 22:08,"565 Maple St, Atlanta, GA 30301" +225648,AA Batteries (4-pack),1,3.84,07/01/19 22:08,"565 Maple St, Atlanta, GA 30301" +225649,34in Ultrawide Monitor,1,379.99,07/16/19 23:10,"163 Pine St, San Francisco, CA 94016" +225650,Apple Airpods Headphones,1,150,07/24/19 17:11,"899 Spruce St, San Francisco, CA 94016" +225651,Apple Airpods Headphones,1,150,07/15/19 14:46,"47 Center St, Boston, MA 02215" +225651,Lightning Charging Cable,1,14.95,07/15/19 14:46,"47 Center St, Boston, MA 02215" +225652,AA Batteries (4-pack),1,3.84,07/26/19 12:26,"155 Willow St, New York City, NY 10001" +225653,Apple Airpods Headphones,1,150,07/10/19 12:03,"78 5th St, Dallas, TX 75001" +225654,USB-C Charging Cable,1,11.95,07/16/19 10:20,"880 Jackson St, Boston, MA 02215" +225655,AAA Batteries (4-pack),1,2.99,07/31/19 13:44,"806 13th St, Boston, MA 02215" +225656,AAA Batteries (4-pack),1,2.99,07/28/19 18:28,"408 Chestnut St, Dallas, TX 75001" +225657,Lightning Charging Cable,1,14.95,07/09/19 14:06,"119 Lake St, Boston, MA 02215" +225658,Wired Headphones,1,11.99,07/10/19 09:27,"850 2nd St, San Francisco, CA 94016" +225659,Bose SoundSport Headphones,1,99.99,07/29/19 12:45,"445 North St, Seattle, WA 98101" +225660,Lightning Charging Cable,1,14.95,07/11/19 16:40,"231 South St, New York City, NY 10001" +225661,AA Batteries (4-pack),2,3.84,07/26/19 06:48,"258 Pine St, Los Angeles, CA 90001" +225662,Apple Airpods Headphones,1,150,07/22/19 21:57,"550 10th St, New York City, NY 10001" +225663,Apple Airpods Headphones,1,150,07/22/19 14:27,"93 Adams St, New York City, NY 10001" +225664,Bose SoundSport Headphones,1,99.99,07/08/19 10:16,"585 Elm St, Boston, MA 02215" +225665,Apple Airpods Headphones,1,150,07/30/19 21:55,"894 1st St, Boston, MA 02215" +225666,Macbook Pro Laptop,1,1700,07/21/19 17:25,"649 7th St, Atlanta, GA 30301" +225667,Google Phone,1,600,07/13/19 21:31,"356 Cherry St, Los Angeles, CA 90001" +225667,USB-C Charging Cable,1,11.95,07/13/19 21:31,"356 Cherry St, Los Angeles, CA 90001" +225668,Lightning Charging Cable,1,14.95,07/10/19 09:42,"632 10th St, Atlanta, GA 30301" +225669,USB-C Charging Cable,1,11.95,07/03/19 10:28,"98 West St, New York City, NY 10001" +225670,Bose SoundSport Headphones,1,99.99,07/23/19 09:16,"63 Meadow St, Los Angeles, CA 90001" +225671,AAA Batteries (4-pack),2,2.99,07/25/19 22:16,"567 Washington St, Atlanta, GA 30301" +225672,AAA Batteries (4-pack),1,2.99,07/20/19 20:25,"808 River St, Seattle, WA 98101" +225673,Apple Airpods Headphones,1,150,07/13/19 14:09,"722 12th St, Seattle, WA 98101" +225674,Macbook Pro Laptop,1,1700,07/22/19 13:52,"222 Spruce St, San Francisco, CA 94016" +225675,Wired Headphones,2,11.99,07/27/19 01:31,"300 Washington St, Portland, OR 97035" +225676,34in Ultrawide Monitor,1,379.99,07/29/19 11:54,"436 5th St, Dallas, TX 75001" +225677,Google Phone,1,600,07/13/19 23:10,"543 4th St, Portland, OR 97035" +225678,Lightning Charging Cable,1,14.95,07/11/19 16:09,"352 River St, New York City, NY 10001" +225679,Apple Airpods Headphones,1,150,07/26/19 19:20,"483 Cedar St, Austin, TX 73301" +225680,iPhone,1,700,07/05/19 14:33,"387 12th St, New York City, NY 10001" +225681,AAA Batteries (4-pack),1,2.99,07/06/19 21:04,"634 14th St, New York City, NY 10001" +225682,Bose SoundSport Headphones,1,99.99,07/25/19 11:32,"82 Lakeview St, Dallas, TX 75001" +225683,ThinkPad Laptop,1,999.99,07/18/19 15:34,"693 Pine St, San Francisco, CA 94016" +225684,AA Batteries (4-pack),1,3.84,07/12/19 21:32,"346 Dogwood St, Austin, TX 73301" +225685,Flatscreen TV,1,300,07/21/19 18:26,"401 Highland St, Seattle, WA 98101" +225686,Wired Headphones,1,11.99,07/27/19 08:38,"530 Maple St, Boston, MA 02215" +225687,AA Batteries (4-pack),1,3.84,07/26/19 01:27,"713 2nd St, Seattle, WA 98101" +225688,Apple Airpods Headphones,1,150,07/09/19 15:44,"555 Maple St, Portland, OR 97035" +225689,Apple Airpods Headphones,1,150,07/30/19 14:41,"12 Main St, Portland, ME 04101" +225690,Wired Headphones,1,11.99,07/21/19 20:02,"847 Pine St, San Francisco, CA 94016" +225691,Wired Headphones,1,11.99,07/19/19 12:25,"162 Spruce St, New York City, NY 10001" +225692,iPhone,1,700,07/27/19 10:14,"116 Walnut St, Dallas, TX 75001" +225693,Wired Headphones,1,11.99,07/24/19 09:17,"84 Chestnut St, Boston, MA 02215" +225694,Bose SoundSport Headphones,1,99.99,07/17/19 23:13,"255 Elm St, Portland, OR 97035" +225695,Macbook Pro Laptop,1,1700,07/27/19 22:57,"878 Madison St, New York City, NY 10001" +225696,Apple Airpods Headphones,1,150,07/31/19 15:08,"324 Willow St, Boston, MA 02215" +225697,AAA Batteries (4-pack),1,2.99,07/03/19 10:48,"378 Pine St, Seattle, WA 98101" +225698,AAA Batteries (4-pack),1,2.99,07/30/19 04:10,"452 1st St, San Francisco, CA 94016" +225699,Bose SoundSport Headphones,1,99.99,07/09/19 12:45,"82 Sunset St, New York City, NY 10001" +225700,LG Washing Machine,1,600.0,07/04/19 00:16,"380 Hickory St, San Francisco, CA 94016" +225701,Apple Airpods Headphones,1,150,07/11/19 22:12,"254 Maple St, San Francisco, CA 94016" +225702,Bose SoundSport Headphones,1,99.99,07/27/19 13:27,"688 4th St, San Francisco, CA 94016" +225703,Apple Airpods Headphones,1,150,07/09/19 23:13,"685 13th St, Boston, MA 02215" +225704,Macbook Pro Laptop,1,1700,07/23/19 21:08,"299 Meadow St, San Francisco, CA 94016" +225705,AA Batteries (4-pack),1,3.84,07/03/19 18:10,"48 Lakeview St, Los Angeles, CA 90001" +225706,Google Phone,1,600,07/26/19 17:08,"329 Adams St, Boston, MA 02215" +225707,USB-C Charging Cable,1,11.95,07/13/19 17:41,"860 Madison St, San Francisco, CA 94016" +225708,Wired Headphones,1,11.99,07/26/19 08:13,"890 Jefferson St, Boston, MA 02215" +225709,Lightning Charging Cable,1,14.95,07/04/19 00:37,"340 Madison St, Portland, OR 97035" +225710,Lightning Charging Cable,1,14.95,07/02/19 23:09,"241 14th St, Seattle, WA 98101" +225711,ThinkPad Laptop,1,999.99,07/10/19 23:10,"553 Highland St, Austin, TX 73301" +225712,27in FHD Monitor,1,149.99,07/26/19 17:21,"57 Pine St, Los Angeles, CA 90001" +225713,USB-C Charging Cable,1,11.95,07/17/19 01:04,"858 Elm St, New York City, NY 10001" +225714,Macbook Pro Laptop,1,1700,07/18/19 15:45,"326 8th St, Seattle, WA 98101" +225715,Wired Headphones,1,11.99,07/19/19 19:06,"498 Elm St, Seattle, WA 98101" +225716,Bose SoundSport Headphones,1,99.99,07/19/19 16:48,"745 Center St, New York City, NY 10001" +225717,AAA Batteries (4-pack),1,2.99,07/29/19 21:00,"751 South St, Boston, MA 02215" +225718,AAA Batteries (4-pack),2,2.99,07/12/19 09:16,"469 Chestnut St, Los Angeles, CA 90001" +225719,Bose SoundSport Headphones,1,99.99,07/26/19 16:15,"696 North St, Seattle, WA 98101" +225720,Wired Headphones,1,11.99,07/21/19 17:51,"546 Elm St, Boston, MA 02215" +225721,AA Batteries (4-pack),1,3.84,07/02/19 13:55,"753 Washington St, San Francisco, CA 94016" +225722,USB-C Charging Cable,1,11.95,07/30/19 17:23,"899 Ridge St, San Francisco, CA 94016" +225723,20in Monitor,1,109.99,07/07/19 11:53,"303 Lincoln St, San Francisco, CA 94016" +225724,Bose SoundSport Headphones,1,99.99,07/05/19 21:02,"604 Spruce St, San Francisco, CA 94016" +225725,USB-C Charging Cable,1,11.95,07/26/19 11:53,"330 Cedar St, Boston, MA 02215" +225726,AA Batteries (4-pack),2,3.84,07/01/19 19:37,"256 Lincoln St, Boston, MA 02215" +225727,AA Batteries (4-pack),1,3.84,07/09/19 13:07,"205 11th St, Atlanta, GA 30301" +225728,AA Batteries (4-pack),1,3.84,07/27/19 12:25,"839 Johnson St, Dallas, TX 75001" +225729,USB-C Charging Cable,1,11.95,07/25/19 20:37,"286 14th St, Atlanta, GA 30301" +225730,Flatscreen TV,1,300,07/14/19 12:46,"622 4th St, New York City, NY 10001" +225731,AA Batteries (4-pack),1,3.84,07/06/19 12:46,"536 2nd St, San Francisco, CA 94016" +225732,Flatscreen TV,1,300,07/23/19 18:22,"347 Pine St, San Francisco, CA 94016" +225733,Wired Headphones,1,11.99,07/17/19 11:58,"113 Dogwood St, Atlanta, GA 30301" +225734,Bose SoundSport Headphones,1,99.99,07/06/19 00:55,"516 6th St, San Francisco, CA 94016" +225735,Bose SoundSport Headphones,1,99.99,07/21/19 18:44,"790 Elm St, Los Angeles, CA 90001" +225736,iPhone,1,700,07/08/19 11:02,"557 Ridge St, New York City, NY 10001" +225736,Lightning Charging Cable,1,14.95,07/08/19 11:02,"557 Ridge St, New York City, NY 10001" +225737,AAA Batteries (4-pack),2,2.99,07/08/19 21:46,"133 Wilson St, San Francisco, CA 94016" +225738,34in Ultrawide Monitor,1,379.99,07/24/19 07:37,"253 12th St, San Francisco, CA 94016" +225739,27in 4K Gaming Monitor,1,389.99,07/22/19 17:56,"164 Forest St, Seattle, WA 98101" +225740,ThinkPad Laptop,1,999.99,07/18/19 13:52,"504 Hill St, Dallas, TX 75001" +225741,Apple Airpods Headphones,1,150,07/21/19 20:59,"52 Lincoln St, Dallas, TX 75001" +225742,Apple Airpods Headphones,1,150,07/18/19 08:57,"105 14th St, Los Angeles, CA 90001" +225743,Flatscreen TV,1,300,07/12/19 13:03,"369 Park St, Portland, OR 97035" +225744,34in Ultrawide Monitor,1,379.99,07/19/19 19:04,"295 1st St, San Francisco, CA 94016" +225745,Apple Airpods Headphones,1,150,07/04/19 18:22,"709 Main St, San Francisco, CA 94016" +225746,Google Phone,1,600,07/24/19 13:30,"592 Hill St, San Francisco, CA 94016" +225747,20in Monitor,1,109.99,07/04/19 23:04,"742 14th St, Los Angeles, CA 90001" +225748,Lightning Charging Cable,1,14.95,07/12/19 21:53,"151 River St, Dallas, TX 75001" +225749,Google Phone,1,600,07/05/19 15:17,"532 Meadow St, New York City, NY 10001" +225749,USB-C Charging Cable,1,11.95,07/05/19 15:17,"532 Meadow St, New York City, NY 10001" +225750,AAA Batteries (4-pack),1,2.99,07/04/19 23:01,"429 Willow St, Seattle, WA 98101" +225751,Wired Headphones,1,11.99,07/13/19 09:54,"351 7th St, San Francisco, CA 94016" +225752,Lightning Charging Cable,1,14.95,07/08/19 19:52,"747 Church St, San Francisco, CA 94016" +225753,AA Batteries (4-pack),1,3.84,07/26/19 13:09,"149 North St, San Francisco, CA 94016" +225754,AA Batteries (4-pack),1,3.84,07/12/19 17:44,"627 Sunset St, Atlanta, GA 30301" +225755,Wired Headphones,1,11.99,07/24/19 14:42,"578 Meadow St, New York City, NY 10001" +225756,Wired Headphones,1,11.99,07/07/19 22:09,"872 Madison St, New York City, NY 10001" +225757,Apple Airpods Headphones,1,150,07/27/19 15:41,"331 6th St, Austin, TX 73301" +225758,USB-C Charging Cable,1,11.95,07/03/19 12:52,"19 Hickory St, San Francisco, CA 94016" +225759,USB-C Charging Cable,1,11.95,07/15/19 14:10,"938 11th St, Atlanta, GA 30301" +225760,Apple Airpods Headphones,1,150,07/21/19 23:31,"76 Cherry St, San Francisco, CA 94016" +225761,27in FHD Monitor,1,149.99,07/30/19 20:09,"242 10th St, San Francisco, CA 94016" +225762,Lightning Charging Cable,1,14.95,07/30/19 18:32,"240 Pine St, New York City, NY 10001" +225763,Bose SoundSport Headphones,2,99.99,07/13/19 20:02,"13 1st St, Atlanta, GA 30301" +225764,Bose SoundSport Headphones,1,99.99,07/28/19 19:03,"575 12th St, Portland, OR 97035" +225765,Apple Airpods Headphones,1,150,07/06/19 19:16,"545 Lakeview St, Los Angeles, CA 90001" +225766,AA Batteries (4-pack),1,3.84,07/08/19 12:04,"481 West St, Austin, TX 73301" +225767,iPhone,1,700,07/14/19 19:17,"5 7th St, New York City, NY 10001" +225767,Lightning Charging Cable,1,14.95,07/14/19 19:17,"5 7th St, New York City, NY 10001" +225768,27in 4K Gaming Monitor,1,389.99,07/04/19 18:45,"570 7th St, Atlanta, GA 30301" +225769,Wired Headphones,1,11.99,07/01/19 10:28,"8 North St, San Francisco, CA 94016" +225770,27in FHD Monitor,1,149.99,07/25/19 06:46,"528 South St, Dallas, TX 75001" +225771,34in Ultrawide Monitor,1,379.99,07/19/19 20:46,"520 Washington St, Los Angeles, CA 90001" +225772,Lightning Charging Cable,1,14.95,07/14/19 08:13,"841 Center St, San Francisco, CA 94016" +225773,Lightning Charging Cable,1,14.95,07/18/19 14:42,"244 6th St, San Francisco, CA 94016" +225774,iPhone,1,700,07/04/19 16:32,"957 Pine St, New York City, NY 10001" +225775,27in FHD Monitor,1,149.99,07/18/19 20:03,"661 Pine St, Atlanta, GA 30301" +225776,USB-C Charging Cable,1,11.95,07/15/19 19:08,"890 5th St, San Francisco, CA 94016" +225777,Macbook Pro Laptop,1,1700,07/07/19 15:48,"673 Park St, New York City, NY 10001" +225778,Bose SoundSport Headphones,1,99.99,07/07/19 14:49,"580 Chestnut St, Los Angeles, CA 90001" +225779,AAA Batteries (4-pack),1,2.99,07/15/19 09:39,"373 6th St, Los Angeles, CA 90001" +225780,AA Batteries (4-pack),1,3.84,07/02/19 08:11,"447 Church St, Boston, MA 02215" +225781,AAA Batteries (4-pack),1,2.99,07/16/19 10:27,"313 10th St, New York City, NY 10001" +225782,27in 4K Gaming Monitor,1,389.99,07/30/19 19:54,"742 Highland St, New York City, NY 10001" +225783,34in Ultrawide Monitor,1,379.99,07/09/19 10:19,"77 Hickory St, Boston, MA 02215" +225784,Wired Headphones,1,11.99,07/19/19 19:16,"475 Meadow St, Los Angeles, CA 90001" +225785,20in Monitor,1,109.99,07/29/19 11:59,"416 Spruce St, San Francisco, CA 94016" +225786,20in Monitor,1,109.99,07/08/19 00:27,"88 South St, Austin, TX 73301" +225787,Google Phone,1,600,07/09/19 21:25,"177 Hill St, Seattle, WA 98101" +225787,34in Ultrawide Monitor,1,379.99,07/09/19 21:25,"177 Hill St, Seattle, WA 98101" +225788,LG Washing Machine,1,600.0,07/15/19 15:54,"498 14th St, Seattle, WA 98101" +225789,Wired Headphones,1,11.99,07/28/19 14:57,"191 10th St, Los Angeles, CA 90001" +225790,27in FHD Monitor,1,149.99,07/14/19 22:53,"776 Washington St, New York City, NY 10001" +225791,AAA Batteries (4-pack),2,2.99,07/05/19 11:33,"156 5th St, San Francisco, CA 94016" +225792,iPhone,1,700,07/11/19 17:58,"656 River St, Los Angeles, CA 90001" +225792,Lightning Charging Cable,1,14.95,07/11/19 17:58,"656 River St, Los Angeles, CA 90001" +225793,ThinkPad Laptop,1,999.99,07/31/19 19:38,"892 5th St, San Francisco, CA 94016" +225794,AAA Batteries (4-pack),5,2.99,07/24/19 14:58,"609 Dogwood St, Boston, MA 02215" +225795,34in Ultrawide Monitor,1,379.99,07/19/19 09:29,"750 Washington St, Dallas, TX 75001" +225796,Macbook Pro Laptop,1,1700,07/05/19 14:23,"965 6th St, Dallas, TX 75001" +225797,Bose SoundSport Headphones,1,99.99,07/31/19 18:28,"26 North St, Seattle, WA 98101" +225798,Wired Headphones,1,11.99,07/07/19 10:11,"846 Elm St, San Francisco, CA 94016" +225799,Lightning Charging Cable,1,14.95,07/09/19 20:47,"730 Jefferson St, Boston, MA 02215" +225800,Macbook Pro Laptop,1,1700,07/05/19 14:44,"179 Walnut St, Los Angeles, CA 90001" +225801,Bose SoundSport Headphones,1,99.99,07/30/19 13:27,"915 11th St, San Francisco, CA 94016" +225802,Bose SoundSport Headphones,1,99.99,07/01/19 20:49,"857 North St, Los Angeles, CA 90001" +225803,Google Phone,1,600,07/08/19 18:40,"116 4th St, Atlanta, GA 30301" +225804,AA Batteries (4-pack),1,3.84,07/12/19 10:33,"806 Cedar St, New York City, NY 10001" +225805,AA Batteries (4-pack),1,3.84,07/21/19 06:11,"29 4th St, San Francisco, CA 94016" +225806,AA Batteries (4-pack),1,3.84,07/12/19 19:01,"116 Lake St, San Francisco, CA 94016" +225807,27in 4K Gaming Monitor,1,389.99,07/06/19 00:02,"851 Johnson St, Los Angeles, CA 90001" +225808,AA Batteries (4-pack),1,3.84,07/03/19 14:25,"7 Wilson St, New York City, NY 10001" +225809,34in Ultrawide Monitor,1,379.99,07/23/19 01:55,"8 13th St, San Francisco, CA 94016" +225810,Macbook Pro Laptop,1,1700,07/05/19 20:12,"331 Elm St, San Francisco, CA 94016" +225811,AA Batteries (4-pack),1,3.84,07/26/19 19:06,"481 Madison St, Los Angeles, CA 90001" +225812,AA Batteries (4-pack),1,3.84,07/17/19 12:41,"292 Chestnut St, Portland, OR 97035" +225813,AAA Batteries (4-pack),2,2.99,07/10/19 18:27,"667 Dogwood St, Atlanta, GA 30301" +225814,AA Batteries (4-pack),2,3.84,07/13/19 09:37,"838 Cherry St, Atlanta, GA 30301" +225815,Wired Headphones,1,11.99,07/22/19 23:15,"351 South St, Los Angeles, CA 90001" +225816,Wired Headphones,1,11.99,07/26/19 00:07,"833 8th St, Boston, MA 02215" +225816,AA Batteries (4-pack),1,3.84,07/26/19 00:07,"833 8th St, Boston, MA 02215" +225817,ThinkPad Laptop,1,999.99,07/03/19 18:18,"332 Hill St, Los Angeles, CA 90001" +225818,ThinkPad Laptop,1,999.99,07/29/19 12:31,"700 Hickory St, San Francisco, CA 94016" +225819,USB-C Charging Cable,1,11.95,07/30/19 11:32,"328 Lincoln St, Atlanta, GA 30301" +225820,USB-C Charging Cable,1,11.95,07/24/19 07:50,"838 Jackson St, San Francisco, CA 94016" +225821,Flatscreen TV,1,300,07/21/19 18:58,"769 Dogwood St, San Francisco, CA 94016" +225822,AAA Batteries (4-pack),1,2.99,07/02/19 16:50,"569 Hill St, New York City, NY 10001" +225823,20in Monitor,1,109.99,07/29/19 09:18,"766 Chestnut St, Atlanta, GA 30301" +225824,AA Batteries (4-pack),1,3.84,07/02/19 20:48,"232 Main St, San Francisco, CA 94016" +225825,Apple Airpods Headphones,1,150,07/07/19 14:54,"264 Center St, Portland, ME 04101" +225826,20in Monitor,1,109.99,07/08/19 20:05,"496 1st St, San Francisco, CA 94016" +225827,Lightning Charging Cable,1,14.95,07/29/19 21:08,"876 Cedar St, Austin, TX 73301" +225828,Lightning Charging Cable,1,14.95,07/27/19 16:22,"731 Sunset St, San Francisco, CA 94016" +225829,Bose SoundSport Headphones,1,99.99,07/28/19 01:06,"76 Highland St, San Francisco, CA 94016" +225830,Wired Headphones,1,11.99,07/22/19 01:57,"842 Adams St, San Francisco, CA 94016" +225831,Bose SoundSport Headphones,1,99.99,07/03/19 16:32,"751 Pine St, Dallas, TX 75001" +225832,27in FHD Monitor,1,149.99,07/11/19 09:50,"867 Park St, Austin, TX 73301" +225833,Wired Headphones,1,11.99,07/10/19 00:21,"499 Pine St, New York City, NY 10001" +225834,Lightning Charging Cable,1,14.95,07/08/19 10:29,"169 Lake St, Portland, OR 97035" +225835,Bose SoundSport Headphones,1,99.99,07/17/19 16:02,"537 10th St, San Francisco, CA 94016" +225836,iPhone,1,700,07/15/19 09:54,"660 Park St, Dallas, TX 75001" +225837,AAA Batteries (4-pack),1,2.99,07/15/19 11:30,"610 10th St, San Francisco, CA 94016" +225838,27in FHD Monitor,1,149.99,07/18/19 20:42,"900 Wilson St, Los Angeles, CA 90001" +225839,Macbook Pro Laptop,1,1700,07/31/19 13:33,"494 Hickory St, Los Angeles, CA 90001" +225840,Lightning Charging Cable,1,14.95,07/14/19 14:40,"906 Lake St, Los Angeles, CA 90001" +225841,Bose SoundSport Headphones,1,99.99,07/28/19 11:12,"193 Jackson St, Los Angeles, CA 90001" +225842,Google Phone,1,600,07/31/19 11:47,"505 Sunset St, New York City, NY 10001" +225843,AAA Batteries (4-pack),1,2.99,07/23/19 11:37,"275 Main St, New York City, NY 10001" +225844,Flatscreen TV,1,300,07/04/19 14:07,"220 Meadow St, Boston, MA 02215" +225845,Wired Headphones,1,11.99,07/18/19 05:23,"487 Adams St, San Francisco, CA 94016" +225846,Lightning Charging Cable,2,14.95,07/07/19 13:47,"572 Maple St, Atlanta, GA 30301" +225847,Lightning Charging Cable,1,14.95,07/10/19 12:37,"289 Main St, Dallas, TX 75001" +225848,Bose SoundSport Headphones,1,99.99,07/26/19 12:05,"927 Lincoln St, New York City, NY 10001" +225849,Lightning Charging Cable,1,14.95,07/26/19 17:04,"259 Jefferson St, San Francisco, CA 94016" +225850,AA Batteries (4-pack),1,3.84,07/18/19 17:04,"705 Church St, Dallas, TX 75001" +225851,Lightning Charging Cable,1,14.95,07/12/19 12:13,"67 14th St, Los Angeles, CA 90001" +225852,Lightning Charging Cable,1,14.95,07/09/19 09:01,"529 5th St, Dallas, TX 75001" +225852,Wired Headphones,1,11.99,07/09/19 09:01,"529 5th St, Dallas, TX 75001" +225853,USB-C Charging Cable,1,11.95,07/19/19 00:10,"807 13th St, San Francisco, CA 94016" +225854,Apple Airpods Headphones,1,150,07/18/19 13:12,"800 Meadow St, Portland, OR 97035" +225855,USB-C Charging Cable,1,11.95,07/08/19 01:01,"114 Chestnut St, Portland, OR 97035" +225856,Lightning Charging Cable,1,14.95,07/21/19 21:08,"482 Highland St, Seattle, WA 98101" +225857,Wired Headphones,1,11.99,07/12/19 10:38,"641 11th St, Dallas, TX 75001" +225858,34in Ultrawide Monitor,1,379.99,07/19/19 14:41,"10 Meadow St, Portland, OR 97035" +225859,AA Batteries (4-pack),2,3.84,07/12/19 21:30,"174 Willow St, Austin, TX 73301" +225860,AA Batteries (4-pack),1,3.84,07/02/19 12:18,"817 Hill St, Los Angeles, CA 90001" +225861,AAA Batteries (4-pack),2,2.99,07/05/19 19:01,"140 Park St, Boston, MA 02215" +225862,Apple Airpods Headphones,1,150,07/02/19 22:02,"719 Wilson St, Los Angeles, CA 90001" +225863,AAA Batteries (4-pack),1,2.99,07/11/19 07:02,"956 South St, New York City, NY 10001" +225864,AAA Batteries (4-pack),1,2.99,07/02/19 13:16,"811 10th St, Los Angeles, CA 90001" +225865,20in Monitor,1,109.99,07/04/19 08:52,"942 6th St, Los Angeles, CA 90001" +225866,Apple Airpods Headphones,1,150,07/21/19 21:39,"14 Elm St, Seattle, WA 98101" +225867,20in Monitor,1,109.99,07/22/19 16:32,"97 5th St, New York City, NY 10001" +225868,USB-C Charging Cable,1,11.95,07/11/19 12:09,"965 Jefferson St, Los Angeles, CA 90001" +225869,Lightning Charging Cable,2,14.95,07/24/19 16:16,"972 Washington St, Los Angeles, CA 90001" +225870,Macbook Pro Laptop,1,1700,07/08/19 10:39,"510 9th St, New York City, NY 10001" +225871,ThinkPad Laptop,1,999.99,07/28/19 18:27,"910 11th St, San Francisco, CA 94016" +225872,AAA Batteries (4-pack),2,2.99,07/16/19 20:19,"917 Hickory St, Portland, OR 97035" +225873,ThinkPad Laptop,1,999.99,07/15/19 11:15,"87 7th St, San Francisco, CA 94016" +225874,Wired Headphones,1,11.99,07/27/19 19:08,"952 Washington St, Seattle, WA 98101" +225875,20in Monitor,1,109.99,07/16/19 12:26,"308 Highland St, Los Angeles, CA 90001" +225876,AAA Batteries (4-pack),1,2.99,07/05/19 09:44,"316 Ridge St, Seattle, WA 98101" +225877,Wired Headphones,1,11.99,07/04/19 22:42,"4 Walnut St, San Francisco, CA 94016" +225878,Bose SoundSport Headphones,1,99.99,07/14/19 10:33,"455 Jackson St, Portland, OR 97035" +225879,AA Batteries (4-pack),2,3.84,07/29/19 20:43,"222 Dogwood St, Los Angeles, CA 90001" +225880,Apple Airpods Headphones,1,150,07/19/19 20:25,"574 North St, Los Angeles, CA 90001" +225881,Lightning Charging Cable,1,14.95,07/22/19 13:15,"301 Cherry St, Dallas, TX 75001" +225882,USB-C Charging Cable,1,11.95,07/11/19 09:26,"427 North St, Boston, MA 02215" +225883,Apple Airpods Headphones,1,150,07/08/19 08:27,"473 River St, New York City, NY 10001" +225884,AAA Batteries (4-pack),4,2.99,07/20/19 19:08,"8 Jefferson St, Dallas, TX 75001" +225885,iPhone,1,700,07/30/19 00:31,"198 Forest St, Boston, MA 02215" +225886,Wired Headphones,2,11.99,07/08/19 16:59,"509 Center St, Seattle, WA 98101" +225887,Flatscreen TV,1,300,07/19/19 15:23,"699 Lincoln St, Los Angeles, CA 90001" +225888,AAA Batteries (4-pack),1,2.99,07/22/19 17:42,"153 Lakeview St, Seattle, WA 98101" +225889,AA Batteries (4-pack),1,3.84,07/14/19 17:02,"564 West St, Boston, MA 02215" +225890,20in Monitor,1,109.99,07/06/19 15:08,"208 Forest St, Los Angeles, CA 90001" +225891,LG Dryer,1,600.0,07/13/19 12:39,"683 Hickory St, Boston, MA 02215" +225892,Apple Airpods Headphones,1,150,07/18/19 20:32,"734 South St, Boston, MA 02215" +225893,AA Batteries (4-pack),1,3.84,07/25/19 21:10,"28 Lakeview St, San Francisco, CA 94016" +225894,Google Phone,1,600,07/18/19 18:21,"384 Dogwood St, San Francisco, CA 94016" +225894,USB-C Charging Cable,1,11.95,07/18/19 18:21,"384 Dogwood St, San Francisco, CA 94016" +225895,AAA Batteries (4-pack),2,2.99,07/18/19 01:55,"281 Cherry St, Austin, TX 73301" +225896,Lightning Charging Cable,1,14.95,07/12/19 12:04,"782 12th St, Atlanta, GA 30301" +225897,Lightning Charging Cable,1,14.95,07/16/19 13:18,"198 Meadow St, San Francisco, CA 94016" +225898,34in Ultrawide Monitor,1,379.99,07/13/19 09:32,"799 Willow St, San Francisco, CA 94016" +225899,AA Batteries (4-pack),1,3.84,07/22/19 09:21,"861 Washington St, Seattle, WA 98101" +225900,AAA Batteries (4-pack),2,2.99,07/22/19 12:52,"508 Ridge St, San Francisco, CA 94016" +225901,Lightning Charging Cable,1,14.95,07/05/19 09:50,"604 Lakeview St, Boston, MA 02215" +225902,AA Batteries (4-pack),1,3.84,07/07/19 11:16,"400 Main St, New York City, NY 10001" +225903,iPhone,1,700,07/30/19 20:51,"808 Highland St, Atlanta, GA 30301" +225904,Google Phone,1,600,07/01/19 13:05,"722 Cedar St, Los Angeles, CA 90001" +225905,USB-C Charging Cable,1,11.95,07/10/19 19:52,"486 Ridge St, Boston, MA 02215" +225906,Flatscreen TV,1,300,07/15/19 00:31,"755 6th St, Seattle, WA 98101" +225907,Wired Headphones,1,11.99,07/31/19 16:25,"6 11th St, San Francisco, CA 94016" +225908,Bose SoundSport Headphones,1,99.99,07/29/19 11:57,"451 Wilson St, Seattle, WA 98101" +225909,Bose SoundSport Headphones,1,99.99,07/21/19 23:57,"236 Park St, Boston, MA 02215" +225910,Lightning Charging Cable,1,14.95,07/26/19 21:54,"769 Main St, New York City, NY 10001" +225911,USB-C Charging Cable,1,11.95,07/21/19 11:13,"80 1st St, Seattle, WA 98101" +225912,AAA Batteries (4-pack),1,2.99,07/05/19 19:35,"218 North St, Austin, TX 73301" +225913,Lightning Charging Cable,1,14.95,07/25/19 17:47,"438 Wilson St, San Francisco, CA 94016" +225914,27in 4K Gaming Monitor,1,389.99,07/03/19 14:40,"520 Madison St, New York City, NY 10001" +225915,Bose SoundSport Headphones,1,99.99,07/22/19 10:45,"659 12th St, Dallas, TX 75001" +225916,Bose SoundSport Headphones,1,99.99,07/30/19 22:48,"204 6th St, New York City, NY 10001" +225917,AA Batteries (4-pack),1,3.84,07/13/19 14:50,"192 River St, San Francisco, CA 94016" +225918,USB-C Charging Cable,1,11.95,07/27/19 00:28,"104 Meadow St, San Francisco, CA 94016" +225919,AAA Batteries (4-pack),1,2.99,07/08/19 21:46,"895 Hickory St, San Francisco, CA 94016" +225920,USB-C Charging Cable,1,11.95,07/12/19 12:58,"805 Jefferson St, Atlanta, GA 30301" +225921,Apple Airpods Headphones,1,150,07/24/19 22:12,"555 10th St, San Francisco, CA 94016" +225922,Bose SoundSport Headphones,1,99.99,07/16/19 13:16,"393 Hickory St, Seattle, WA 98101" +225923,34in Ultrawide Monitor,1,379.99,07/13/19 22:10,"883 North St, Austin, TX 73301" +225924,Wired Headphones,1,11.99,07/25/19 12:22,"655 North St, Portland, OR 97035" +225925,27in FHD Monitor,1,149.99,07/21/19 09:00,"519 Hickory St, New York City, NY 10001" +225926,Lightning Charging Cable,1,14.95,07/22/19 04:13,"49 7th St, New York City, NY 10001" +225927,Bose SoundSport Headphones,1,99.99,07/29/19 13:16,"632 North St, New York City, NY 10001" +225928,20in Monitor,1,109.99,07/02/19 16:11,"724 Park St, San Francisco, CA 94016" +225929,Lightning Charging Cable,1,14.95,07/23/19 12:09,"278 Johnson St, New York City, NY 10001" +225930,AAA Batteries (4-pack),1,2.99,07/15/19 15:35,"939 Lincoln St, Boston, MA 02215" +225931,AA Batteries (4-pack),1,3.84,07/25/19 12:02,"750 Lakeview St, Boston, MA 02215" +225932,Wired Headphones,1,11.99,07/01/19 14:33,"972 Jackson St, San Francisco, CA 94016" +225933,AAA Batteries (4-pack),2,2.99,07/02/19 17:48,"339 Sunset St, New York City, NY 10001" +225934,27in FHD Monitor,1,149.99,07/11/19 11:06,"132 6th St, Seattle, WA 98101" +225935,Bose SoundSport Headphones,1,99.99,07/13/19 16:33,"202 6th St, San Francisco, CA 94016" +225936,Lightning Charging Cable,1,14.95,07/14/19 21:05,"17 Johnson St, Portland, OR 97035" +225937,Apple Airpods Headphones,1,150,07/04/19 08:53,"298 Hickory St, Seattle, WA 98101" +225938,iPhone,1,700,07/07/19 20:40,"885 11th St, Seattle, WA 98101" +225939,27in 4K Gaming Monitor,1,389.99,07/08/19 10:44,"647 Center St, Atlanta, GA 30301" +225940,AA Batteries (4-pack),1,3.84,07/10/19 10:09,"646 Forest St, Portland, ME 04101" +225941,Apple Airpods Headphones,1,150,07/05/19 01:22,"939 Elm St, San Francisco, CA 94016" +225942,AAA Batteries (4-pack),3,2.99,07/02/19 21:31,"528 Lake St, New York City, NY 10001" +225943,AA Batteries (4-pack),1,3.84,07/22/19 11:58,"4 Sunset St, San Francisco, CA 94016" +225944,Macbook Pro Laptop,1,1700,07/13/19 16:32,"110 Lakeview St, San Francisco, CA 94016" +225945,Macbook Pro Laptop,1,1700,07/26/19 10:47,"83 Maple St, San Francisco, CA 94016" +225946,Wired Headphones,1,11.99,07/18/19 22:15,"992 West St, Los Angeles, CA 90001" +225947,Lightning Charging Cable,1,14.95,07/04/19 09:54,"595 Center St, San Francisco, CA 94016" +225948,Apple Airpods Headphones,1,150,07/29/19 18:35,"497 Washington St, San Francisco, CA 94016" +225949,27in 4K Gaming Monitor,1,389.99,07/17/19 10:23,"639 Johnson St, New York City, NY 10001" +225950,Flatscreen TV,1,300,07/08/19 22:03,"10 1st St, Atlanta, GA 30301" +225951,Lightning Charging Cable,2,14.95,07/16/19 16:32,"649 Cedar St, San Francisco, CA 94016" +225952,Macbook Pro Laptop,1,1700,07/23/19 11:06,"304 Jefferson St, Los Angeles, CA 90001" +225953,Lightning Charging Cable,1,14.95,07/15/19 09:35,"793 Lake St, Boston, MA 02215" +225954,Wired Headphones,1,11.99,07/15/19 11:25,"542 9th St, Atlanta, GA 30301" +225955,USB-C Charging Cable,1,11.95,07/30/19 18:52,"821 Center St, Portland, OR 97035" +225956,iPhone,1,700,07/13/19 08:45,"158 Johnson St, San Francisco, CA 94016" +225957,Apple Airpods Headphones,1,150,07/15/19 17:47,"135 Washington St, Los Angeles, CA 90001" +225958,Bose SoundSport Headphones,1,99.99,07/25/19 13:38,"667 13th St, New York City, NY 10001" +225959,Lightning Charging Cable,1,14.95,07/12/19 11:21,"777 Washington St, Seattle, WA 98101" +225960,Bose SoundSport Headphones,1,99.99,07/30/19 14:35,"872 Johnson St, Atlanta, GA 30301" +225961,iPhone,1,700,07/29/19 15:30,"154 11th St, New York City, NY 10001" +225962,Flatscreen TV,1,300,07/30/19 15:50,"182 5th St, Seattle, WA 98101" +225962,Lightning Charging Cable,1,14.95,07/30/19 15:50,"182 5th St, Seattle, WA 98101" +225963,Apple Airpods Headphones,1,150,07/21/19 15:10,"873 Adams St, New York City, NY 10001" +225964,Wired Headphones,1,11.99,07/17/19 09:08,"584 Cherry St, Boston, MA 02215" +225964,34in Ultrawide Monitor,1,379.99,07/17/19 09:08,"584 Cherry St, Boston, MA 02215" +225965,AAA Batteries (4-pack),1,2.99,07/27/19 13:03,"616 Johnson St, Austin, TX 73301" +225966,USB-C Charging Cable,1,11.95,07/27/19 14:34,"366 Forest St, Boston, MA 02215" +225967,Bose SoundSport Headphones,1,99.99,07/06/19 08:16,"143 Lakeview St, Boston, MA 02215" +225968,Apple Airpods Headphones,1,150,07/31/19 07:11,"593 5th St, New York City, NY 10001" +225969,27in 4K Gaming Monitor,1,389.99,07/25/19 17:30,"174 Spruce St, Atlanta, GA 30301" +225970,27in FHD Monitor,1,149.99,07/11/19 13:13,"805 Pine St, Los Angeles, CA 90001" +225971,AA Batteries (4-pack),2,3.84,07/30/19 14:14,"145 Church St, Atlanta, GA 30301" +225972,USB-C Charging Cable,1,11.95,07/21/19 14:17,"144 Hickory St, Seattle, WA 98101" +225973,Wired Headphones,1,11.99,07/02/19 11:21,"665 North St, Austin, TX 73301" +225974,Wired Headphones,1,11.99,07/21/19 13:35,"817 Johnson St, Dallas, TX 75001" +225975,Wired Headphones,1,11.99,07/03/19 14:48,"224 Jefferson St, New York City, NY 10001" +225976,Lightning Charging Cable,1,14.95,07/18/19 17:59,"249 Hill St, Dallas, TX 75001" +225977,Macbook Pro Laptop,1,1700,07/23/19 22:00,"193 Jefferson St, Seattle, WA 98101" +225978,iPhone,1,700,07/22/19 14:51,"515 8th St, Atlanta, GA 30301" +225978,Wired Headphones,2,11.99,07/22/19 14:51,"515 8th St, Atlanta, GA 30301" +225979,Apple Airpods Headphones,1,150,07/29/19 16:07,"670 Hill St, Boston, MA 02215" +225980,Wired Headphones,1,11.99,07/12/19 21:48,"203 4th St, New York City, NY 10001" +225981,AAA Batteries (4-pack),2,2.99,07/21/19 19:30,"629 Walnut St, New York City, NY 10001" +225982,27in 4K Gaming Monitor,1,389.99,07/06/19 07:07,"189 Adams St, Boston, MA 02215" +225983,AA Batteries (4-pack),1,3.84,07/24/19 10:25,"632 Sunset St, Boston, MA 02215" +225984,27in FHD Monitor,1,149.99,07/12/19 11:48,"129 Main St, Dallas, TX 75001" +225985,Bose SoundSport Headphones,1,99.99,07/17/19 20:37,"318 Walnut St, Atlanta, GA 30301" +225986,AA Batteries (4-pack),4,3.84,07/29/19 14:38,"369 2nd St, San Francisco, CA 94016" +225987,Google Phone,1,600,07/13/19 03:09,"353 Ridge St, Seattle, WA 98101" +225988,Wired Headphones,1,11.99,07/06/19 18:06,"938 Park St, San Francisco, CA 94016" +225989,USB-C Charging Cable,1,11.95,07/27/19 07:53,"109 Johnson St, San Francisco, CA 94016" +225990,Bose SoundSport Headphones,1,99.99,07/07/19 22:08,"964 Hill St, Portland, OR 97035" +225991,Lightning Charging Cable,1,14.95,07/27/19 20:05,"654 River St, Boston, MA 02215" +225992,AAA Batteries (4-pack),1,2.99,07/07/19 17:29,"438 Jefferson St, New York City, NY 10001" +225993,AAA Batteries (4-pack),2,2.99,07/04/19 21:07,"594 Lincoln St, San Francisco, CA 94016" +225994,Lightning Charging Cable,1,14.95,07/20/19 22:17,"434 Center St, New York City, NY 10001" +225995,iPhone,1,700,07/30/19 11:51,"61 River St, Austin, TX 73301" +225996,Wired Headphones,1,11.99,07/28/19 12:37,"205 Jackson St, San Francisco, CA 94016" +225997,iPhone,1,700,07/24/19 17:14,"959 Lakeview St, Seattle, WA 98101" +225998,AA Batteries (4-pack),3,3.84,07/14/19 15:13,"164 Lakeview St, Atlanta, GA 30301" +225999,Apple Airpods Headphones,1,150,07/09/19 23:28,"590 Dogwood St, Dallas, TX 75001" +226000,USB-C Charging Cable,1,11.95,07/22/19 20:01,"650 Meadow St, Atlanta, GA 30301" +226001,AAA Batteries (4-pack),1,2.99,07/01/19 20:13,"961 11th St, Portland, OR 97035" +226002,Bose SoundSport Headphones,1,99.99,07/14/19 09:33,"574 Main St, Austin, TX 73301" +226003,iPhone,1,700,07/22/19 21:43,"856 12th St, Los Angeles, CA 90001" +226004,Bose SoundSport Headphones,1,99.99,07/07/19 14:59,"916 Jackson St, San Francisco, CA 94016" +226005,iPhone,1,700,07/23/19 22:35,"509 West St, San Francisco, CA 94016" +226006,LG Washing Machine,1,600.0,07/31/19 17:40,"833 6th St, Dallas, TX 75001" +226007,27in FHD Monitor,1,149.99,07/13/19 16:23,"225 Ridge St, San Francisco, CA 94016" +226008,Lightning Charging Cable,1,14.95,07/19/19 17:49,"104 Hill St, Austin, TX 73301" +226009,Apple Airpods Headphones,1,150,07/18/19 20:28,"611 River St, Los Angeles, CA 90001" +226010,Google Phone,1,600,07/10/19 12:03,"865 Jackson St, Los Angeles, CA 90001" +226011,Lightning Charging Cable,1,14.95,07/22/19 14:49,"663 Elm St, Boston, MA 02215" +226012,AA Batteries (4-pack),2,3.84,07/12/19 16:24,"66 Cherry St, Seattle, WA 98101" +226013,USB-C Charging Cable,1,11.95,07/23/19 18:46,"729 Adams St, New York City, NY 10001" +226014,27in 4K Gaming Monitor,1,389.99,07/01/19 22:52,"770 Sunset St, Boston, MA 02215" +226015,Lightning Charging Cable,1,14.95,07/13/19 09:27,"477 Ridge St, Atlanta, GA 30301" +226016,Apple Airpods Headphones,1,150,07/03/19 19:59,"228 Spruce St, Los Angeles, CA 90001" +226017,AAA Batteries (4-pack),3,2.99,07/17/19 09:53,"499 Dogwood St, New York City, NY 10001" +226018,Apple Airpods Headphones,1,150,07/19/19 19:56,"505 Church St, Austin, TX 73301" +226019,USB-C Charging Cable,1,11.95,07/05/19 19:11,"946 Adams St, Los Angeles, CA 90001" +226020,Lightning Charging Cable,1,14.95,07/25/19 21:32,"48 Dogwood St, Dallas, TX 75001" +226021,USB-C Charging Cable,2,11.95,07/18/19 20:17,"778 4th St, San Francisco, CA 94016" +226022,34in Ultrawide Monitor,1,379.99,07/26/19 12:48,"579 Church St, San Francisco, CA 94016" +226023,Apple Airpods Headphones,1,150,07/21/19 19:30,"279 Meadow St, Boston, MA 02215" +226024,AAA Batteries (4-pack),2,2.99,07/23/19 14:57,"217 Park St, Boston, MA 02215" +226025,AAA Batteries (4-pack),2,2.99,07/31/19 15:25,"555 5th St, Dallas, TX 75001" +226026,AAA Batteries (4-pack),2,2.99,07/14/19 13:31,"591 14th St, Los Angeles, CA 90001" +226027,20in Monitor,1,109.99,07/30/19 11:50,"24 South St, Seattle, WA 98101" +226028,iPhone,1,700,07/20/19 10:01,"335 Jefferson St, Atlanta, GA 30301" +226028,Apple Airpods Headphones,1,150,07/20/19 10:01,"335 Jefferson St, Atlanta, GA 30301" +226029,AAA Batteries (4-pack),1,2.99,07/23/19 19:13,"756 Lincoln St, San Francisco, CA 94016" +226030,Bose SoundSport Headphones,1,99.99,07/07/19 11:16,"878 Walnut St, Atlanta, GA 30301" +226031,27in FHD Monitor,1,149.99,07/09/19 12:44,"797 Walnut St, San Francisco, CA 94016" +226032,iPhone,1,700,07/25/19 13:41,"112 Dogwood St, Dallas, TX 75001" +226033,Lightning Charging Cable,1,14.95,07/21/19 17:49,"456 Sunset St, New York City, NY 10001" +226034,Wired Headphones,1,11.99,07/12/19 11:41,"573 1st St, Los Angeles, CA 90001" +226035,Bose SoundSport Headphones,1,99.99,07/27/19 18:53,"418 Forest St, Boston, MA 02215" +226036,Lightning Charging Cable,1,14.95,07/07/19 17:36,"497 7th St, New York City, NY 10001" +226037,AA Batteries (4-pack),2,3.84,07/12/19 16:45,"607 Ridge St, San Francisco, CA 94016" +226038,AA Batteries (4-pack),1,3.84,07/08/19 21:40,"816 Willow St, San Francisco, CA 94016" +226039,Lightning Charging Cable,1,14.95,07/30/19 13:20,"778 Sunset St, New York City, NY 10001" +226040,Wired Headphones,1,11.99,07/03/19 21:17,"408 Chestnut St, Portland, OR 97035" +226040,Wired Headphones,1,11.99,07/03/19 21:17,"408 Chestnut St, Portland, OR 97035" +226041,USB-C Charging Cable,1,11.95,07/04/19 08:54,"816 Forest St, New York City, NY 10001" +226042,iPhone,1,700,07/20/19 22:23,"863 South St, Los Angeles, CA 90001" +226043,Bose SoundSport Headphones,1,99.99,07/02/19 11:58,"952 Cherry St, Atlanta, GA 30301" +226044,34in Ultrawide Monitor,1,379.99,07/02/19 12:18,"761 5th St, Boston, MA 02215" +226045,34in Ultrawide Monitor,1,379.99,07/16/19 02:11,"57 5th St, Dallas, TX 75001" +226046,AA Batteries (4-pack),1,3.84,07/12/19 17:05,"800 Hickory St, San Francisco, CA 94016" +226047,34in Ultrawide Monitor,1,379.99,07/26/19 10:28,"992 5th St, Los Angeles, CA 90001" +226048,Apple Airpods Headphones,1,150,07/13/19 10:31,"945 South St, Seattle, WA 98101" +226049,ThinkPad Laptop,1,999.99,07/12/19 22:02,"709 Park St, Atlanta, GA 30301" +226050,AA Batteries (4-pack),1,3.84,07/10/19 21:45,"837 9th St, San Francisco, CA 94016" +226051,Lightning Charging Cable,1,14.95,07/27/19 18:02,"16 Wilson St, New York City, NY 10001" +226052,Lightning Charging Cable,1,14.95,07/21/19 16:05,"77 Dogwood St, Los Angeles, CA 90001" +226053,Macbook Pro Laptop,1,1700,07/16/19 23:36,"891 Lincoln St, Seattle, WA 98101" +226054,AAA Batteries (4-pack),1,2.99,07/02/19 21:10,"552 Spruce St, Seattle, WA 98101" +226055,Wired Headphones,1,11.99,07/31/19 13:21,"565 Main St, San Francisco, CA 94016" +226056,iPhone,1,700,07/27/19 11:22,"609 Hickory St, Los Angeles, CA 90001" +226056,Wired Headphones,1,11.99,07/27/19 11:22,"609 Hickory St, Los Angeles, CA 90001" +226057,Apple Airpods Headphones,1,150,07/13/19 23:51,"911 Elm St, San Francisco, CA 94016" +226058,USB-C Charging Cable,1,11.95,07/27/19 22:07,"229 Center St, Boston, MA 02215" +226059,Wired Headphones,1,11.99,07/24/19 16:39,"309 Park St, Portland, OR 97035" +226060,LG Dryer,1,600.0,07/28/19 02:58,"594 7th St, New York City, NY 10001" +226061,AAA Batteries (4-pack),1,2.99,07/15/19 21:47,"894 8th St, San Francisco, CA 94016" +226062,Apple Airpods Headphones,1,150,07/29/19 14:34,"85 11th St, Seattle, WA 98101" +226063,Bose SoundSport Headphones,1,99.99,07/08/19 18:59,"426 Walnut St, Los Angeles, CA 90001" +226063,AAA Batteries (4-pack),1,2.99,07/08/19 18:59,"426 Walnut St, Los Angeles, CA 90001" +226064,AAA Batteries (4-pack),2,2.99,07/28/19 06:36,"785 11th St, Austin, TX 73301" +226065,Wired Headphones,1,11.99,07/30/19 23:19,"538 Walnut St, Los Angeles, CA 90001" +226066,Apple Airpods Headphones,1,150,07/06/19 22:30,"220 Spruce St, Los Angeles, CA 90001" +226067,AAA Batteries (4-pack),2,2.99,07/28/19 18:55,"975 Hill St, Los Angeles, CA 90001" +226068,AAA Batteries (4-pack),1,2.99,07/03/19 20:16,"572 Spruce St, Boston, MA 02215" +226069,34in Ultrawide Monitor,1,379.99,07/07/19 18:11,"990 Johnson St, Dallas, TX 75001" +226070,Wired Headphones,1,11.99,07/07/19 14:45,"331 Elm St, Atlanta, GA 30301" +226071,27in 4K Gaming Monitor,1,389.99,07/13/19 11:22,"230 Forest St, Los Angeles, CA 90001" +226072,USB-C Charging Cable,1,11.95,07/13/19 18:10,"660 Jackson St, San Francisco, CA 94016" +226073,AA Batteries (4-pack),1,3.84,07/16/19 12:01,"956 8th St, New York City, NY 10001" +226074,Bose SoundSport Headphones,1,99.99,07/08/19 18:41,"233 Main St, Seattle, WA 98101" +226075,iPhone,1,700,07/09/19 12:06,"958 Chestnut St, San Francisco, CA 94016" +226076,AAA Batteries (4-pack),1,2.99,07/08/19 08:50,"808 Elm St, Los Angeles, CA 90001" +226077,Lightning Charging Cable,1,14.95,07/18/19 19:59,"292 Hill St, Portland, OR 97035" +226078,Lightning Charging Cable,1,14.95,07/18/19 13:47,"209 Maple St, Los Angeles, CA 90001" +226079,Wired Headphones,1,11.99,07/02/19 17:56,"1 5th St, Seattle, WA 98101" +226080,27in 4K Gaming Monitor,1,389.99,07/21/19 06:06,"924 River St, Boston, MA 02215" +226081,Apple Airpods Headphones,1,150,07/31/19 10:40,"620 Spruce St, Los Angeles, CA 90001" +226082,AAA Batteries (4-pack),2,2.99,07/27/19 22:49,"348 Walnut St, Los Angeles, CA 90001" +226083,Lightning Charging Cable,1,14.95,07/30/19 09:04,"553 West St, Los Angeles, CA 90001" +226084,AA Batteries (4-pack),2,3.84,07/26/19 16:08,"903 Wilson St, Austin, TX 73301" +226085,Wired Headphones,1,11.99,07/29/19 16:50,"710 Elm St, Los Angeles, CA 90001" +226086,USB-C Charging Cable,2,11.95,07/23/19 12:40,"271 Johnson St, New York City, NY 10001" +226087,Apple Airpods Headphones,1,150,07/04/19 10:26,"22 West St, San Francisco, CA 94016" +226088,Apple Airpods Headphones,1,150,07/12/19 08:14,"961 Maple St, Dallas, TX 75001" +226089,Bose SoundSport Headphones,1,99.99,07/03/19 09:26,"972 Forest St, Austin, TX 73301" +226090,AAA Batteries (4-pack),2,2.99,07/13/19 22:12,"137 Cedar St, San Francisco, CA 94016" +226091,34in Ultrawide Monitor,1,379.99,07/11/19 13:37,"329 Cherry St, Dallas, TX 75001" +226092,Macbook Pro Laptop,1,1700,07/16/19 14:57,"795 Park St, San Francisco, CA 94016" +226093,20in Monitor,1,109.99,07/30/19 06:30,"642 Lakeview St, New York City, NY 10001" +226094,Lightning Charging Cable,1,14.95,07/20/19 12:22,"47 Willow St, Portland, OR 97035" +226095,AAA Batteries (4-pack),1,2.99,07/23/19 13:23,"146 12th St, Los Angeles, CA 90001" +226096,Bose SoundSport Headphones,1,99.99,07/06/19 10:02,"852 West St, San Francisco, CA 94016" +226097,Flatscreen TV,1,300,07/16/19 12:40,"817 Lake St, Los Angeles, CA 90001" +226098,AA Batteries (4-pack),1,3.84,07/01/19 20:06,"853 Center St, San Francisco, CA 94016" +226099,iPhone,1,700,07/31/19 10:07,"441 North St, Boston, MA 02215" +226100,Lightning Charging Cable,1,14.95,07/22/19 19:08,"454 Dogwood St, San Francisco, CA 94016" +226101,USB-C Charging Cable,1,11.95,07/15/19 17:00,"517 Wilson St, Portland, OR 97035" +226102,AAA Batteries (4-pack),3,2.99,07/09/19 12:49,"943 Washington St, San Francisco, CA 94016" +226103,Apple Airpods Headphones,1,150,07/14/19 13:29,"449 12th St, San Francisco, CA 94016" +226104,Wired Headphones,1,11.99,07/14/19 13:56,"166 Walnut St, San Francisco, CA 94016" +226105,USB-C Charging Cable,1,11.95,07/27/19 15:41,"516 Lake St, Atlanta, GA 30301" +226106,Apple Airpods Headphones,1,150,07/06/19 13:40,"627 Walnut St, New York City, NY 10001" +226107,Apple Airpods Headphones,1,150,07/27/19 14:56,"158 Ridge St, Boston, MA 02215" +226108,AA Batteries (4-pack),2,3.84,07/29/19 19:00,"667 12th St, San Francisco, CA 94016" +226109,Lightning Charging Cable,1,14.95,07/20/19 15:52,"225 Dogwood St, San Francisco, CA 94016" +226110,Wired Headphones,1,11.99,07/07/19 13:19,"300 8th St, San Francisco, CA 94016" +226111,Vareebadd Phone,1,400,07/03/19 18:13,"770 12th St, Atlanta, GA 30301" +226112,Wired Headphones,1,11.99,07/27/19 10:30,"243 Maple St, Dallas, TX 75001" +226113,Wired Headphones,1,11.99,07/07/19 22:07,"146 Hill St, Los Angeles, CA 90001" +226114,20in Monitor,1,109.99,07/12/19 00:43,"248 Lakeview St, San Francisco, CA 94016" +226115,Wired Headphones,1,11.99,07/23/19 11:13,"210 13th St, San Francisco, CA 94016" +226116,AAA Batteries (4-pack),2,2.99,07/21/19 16:24,"923 10th St, San Francisco, CA 94016" +226117,AAA Batteries (4-pack),1,2.99,07/06/19 13:37,"214 Washington St, Boston, MA 02215" +226118,AAA Batteries (4-pack),1,2.99,07/21/19 11:39,"651 Park St, Boston, MA 02215" +226119,Wired Headphones,2,11.99,07/30/19 09:48,"811 Center St, San Francisco, CA 94016" +226120,Bose SoundSport Headphones,1,99.99,07/26/19 23:01,"452 Hickory St, Los Angeles, CA 90001" +226121,iPhone,1,700,07/28/19 17:26,"582 Johnson St, Los Angeles, CA 90001" +226122,Wired Headphones,1,11.99,07/25/19 21:10,"809 Dogwood St, San Francisco, CA 94016" +226123,AA Batteries (4-pack),1,3.84,07/23/19 12:14,"396 Adams St, Los Angeles, CA 90001" +226124,Lightning Charging Cable,1,14.95,07/08/19 19:28,"850 Chestnut St, San Francisco, CA 94016" +226125,Lightning Charging Cable,1,14.95,07/14/19 06:57,"434 North St, New York City, NY 10001" +226126,Google Phone,1,600,07/25/19 12:50,"955 West St, Seattle, WA 98101" +226127,AA Batteries (4-pack),1,3.84,07/30/19 16:22,"807 6th St, Portland, OR 97035" +226128,iPhone,1,700,07/12/19 09:46,"862 7th St, San Francisco, CA 94016" +226129,27in FHD Monitor,1,149.99,07/15/19 14:50,"247 Jefferson St, San Francisco, CA 94016" +226130,Lightning Charging Cable,1,14.95,08/01/19 01:15,"599 West St, Seattle, WA 98101" +226131,USB-C Charging Cable,1,11.95,07/02/19 14:20,"725 Johnson St, New York City, NY 10001" +226132,Apple Airpods Headphones,1,150,07/18/19 20:59,"145 Hickory St, Dallas, TX 75001" +226133,AAA Batteries (4-pack),4,2.99,07/02/19 11:03,"384 Ridge St, New York City, NY 10001" +226134,USB-C Charging Cable,1,11.95,07/18/19 14:10,"989 Madison St, Boston, MA 02215" +226135,Wired Headphones,1,11.99,07/20/19 20:43,"369 8th St, Portland, OR 97035" +226136,AA Batteries (4-pack),2,3.84,07/07/19 02:36,"793 Sunset St, Los Angeles, CA 90001" +226137,Flatscreen TV,1,300,07/22/19 12:58,"303 Maple St, San Francisco, CA 94016" +226138,AA Batteries (4-pack),3,3.84,07/20/19 10:32,"953 10th St, Atlanta, GA 30301" +226139,Lightning Charging Cable,1,14.95,07/20/19 20:52,"786 Spruce St, Seattle, WA 98101" +226140,Apple Airpods Headphones,1,150,07/05/19 08:10,"719 Willow St, Boston, MA 02215" +226141,USB-C Charging Cable,1,11.95,07/19/19 09:01,"478 Dogwood St, Dallas, TX 75001" +226142,Lightning Charging Cable,1,14.95,07/02/19 09:02,"712 Center St, Los Angeles, CA 90001" +226143,AAA Batteries (4-pack),1,2.99,07/18/19 14:06,"664 12th St, Seattle, WA 98101" +226144,AAA Batteries (4-pack),3,2.99,07/16/19 10:58,"940 Church St, Dallas, TX 75001" +226145,AA Batteries (4-pack),1,3.84,07/21/19 17:24,"192 Jefferson St, Portland, OR 97035" +226146,Macbook Pro Laptop,1,1700,07/02/19 19:36,"421 Willow St, Boston, MA 02215" +226147,AAA Batteries (4-pack),2,2.99,07/11/19 14:16,"179 North St, Atlanta, GA 30301" +226148,27in FHD Monitor,1,149.99,07/21/19 00:01,"675 Adams St, Portland, OR 97035" +226149,USB-C Charging Cable,1,11.95,07/20/19 14:07,"57 Main St, San Francisco, CA 94016" +226150,Macbook Pro Laptop,1,1700,07/24/19 20:35,"713 Lakeview St, Atlanta, GA 30301" +226151,Wired Headphones,1,11.99,07/05/19 20:43,"968 Sunset St, Seattle, WA 98101" +226152,AAA Batteries (4-pack),1,2.99,07/10/19 07:15,"176 South St, New York City, NY 10001" +226153,Wired Headphones,1,11.99,07/27/19 17:21,"596 14th St, New York City, NY 10001" +226154,Wired Headphones,1,11.99,07/19/19 10:18,"597 7th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +226155,AA Batteries (4-pack),1,3.84,07/13/19 11:27,"415 Park St, New York City, NY 10001" +226156,Apple Airpods Headphones,1,150,07/19/19 20:31,"713 Sunset St, Los Angeles, CA 90001" +226157,Lightning Charging Cable,1,14.95,07/24/19 16:05,"541 Highland St, New York City, NY 10001" +226158,Lightning Charging Cable,1,14.95,07/30/19 07:13,"19 Wilson St, San Francisco, CA 94016" +226159,Lightning Charging Cable,1,14.95,07/25/19 15:17,"993 4th St, Seattle, WA 98101" +226160,Bose SoundSport Headphones,1,99.99,07/09/19 07:56,"758 Lake St, Portland, OR 97035" +226161,Google Phone,1,600,07/14/19 12:36,"665 Meadow St, New York City, NY 10001" +226162,Apple Airpods Headphones,1,150,07/08/19 11:03,"357 Walnut St, Atlanta, GA 30301" +226163,Wired Headphones,1,11.99,07/10/19 18:48,"662 8th St, Seattle, WA 98101" +226164,34in Ultrawide Monitor,1,379.99,07/03/19 08:28,"537 Meadow St, Seattle, WA 98101" +226165,Wired Headphones,1,11.99,07/29/19 08:25,"178 2nd St, San Francisco, CA 94016" +226166,AA Batteries (4-pack),1,3.84,07/27/19 13:29,"418 Elm St, Los Angeles, CA 90001" +226167,Bose SoundSport Headphones,1,99.99,07/04/19 17:26,"433 7th St, Atlanta, GA 30301" +226168,27in 4K Gaming Monitor,1,389.99,07/25/19 19:20,"336 Meadow St, Dallas, TX 75001" +226169,Lightning Charging Cable,1,14.95,07/25/19 00:32,"949 14th St, Dallas, TX 75001" +226170,34in Ultrawide Monitor,1,379.99,07/14/19 21:20,"922 Meadow St, Los Angeles, CA 90001" +226171,USB-C Charging Cable,1,11.95,07/13/19 11:56,"741 Dogwood St, San Francisco, CA 94016" +226172,Bose SoundSport Headphones,1,99.99,07/20/19 15:10,"372 Wilson St, San Francisco, CA 94016" +226173,Lightning Charging Cable,1,14.95,07/22/19 23:27,"772 Jefferson St, Dallas, TX 75001" +226174,Apple Airpods Headphones,1,150,07/22/19 10:51,"535 Lakeview St, New York City, NY 10001" +226175,AA Batteries (4-pack),2,3.84,07/04/19 13:14,"956 Cherry St, Los Angeles, CA 90001" +226176,AA Batteries (4-pack),1,3.84,07/08/19 12:22,"983 Sunset St, San Francisco, CA 94016" +226177,Google Phone,1,600,07/03/19 15:07,"894 Cedar St, Portland, OR 97035" +226178,Lightning Charging Cable,1,14.95,07/28/19 22:46,"754 River St, Los Angeles, CA 90001" +226178,Wired Headphones,1,11.99,07/28/19 22:46,"754 River St, Los Angeles, CA 90001" +226179,AA Batteries (4-pack),1,3.84,07/09/19 11:18,"815 4th St, San Francisco, CA 94016" +226180,27in 4K Gaming Monitor,1,389.99,07/28/19 20:17,"666 Jefferson St, San Francisco, CA 94016" +226181,Wired Headphones,1,11.99,07/31/19 13:40,"143 Jefferson St, San Francisco, CA 94016" +226182,USB-C Charging Cable,1,11.95,07/24/19 07:21,"719 South St, New York City, NY 10001" +226183,27in FHD Monitor,1,149.99,07/28/19 11:14,"954 13th St, Atlanta, GA 30301" +226184,Wired Headphones,1,11.99,07/23/19 04:38,"675 Meadow St, San Francisco, CA 94016" +226185,USB-C Charging Cable,1,11.95,07/29/19 10:37,"101 Jefferson St, Los Angeles, CA 90001" +226186,34in Ultrawide Monitor,1,379.99,07/29/19 07:41,"543 9th St, Austin, TX 73301" +226187,AA Batteries (4-pack),2,3.84,07/05/19 09:24,"103 Adams St, Los Angeles, CA 90001" +226188,Google Phone,1,600,07/13/19 17:58,"569 Forest St, Portland, OR 97035" +226189,20in Monitor,1,109.99,07/27/19 10:39,"375 Washington St, San Francisco, CA 94016" +226190,Lightning Charging Cable,1,14.95,07/22/19 17:05,"811 Maple St, New York City, NY 10001" +226191,Flatscreen TV,1,300,07/19/19 17:23,"347 Hill St, Dallas, TX 75001" +226192,Wired Headphones,2,11.99,07/15/19 20:03,"163 Washington St, Seattle, WA 98101" +226193,Lightning Charging Cable,1,14.95,07/08/19 09:09,"222 6th St, New York City, NY 10001" +226194,Lightning Charging Cable,1,14.95,07/12/19 12:10,"650 Elm St, Dallas, TX 75001" +226195,Google Phone,1,600,07/19/19 01:19,"816 Main St, San Francisco, CA 94016" +226196,Wired Headphones,1,11.99,07/14/19 11:53,"46 Elm St, Los Angeles, CA 90001" +226197,Apple Airpods Headphones,1,150,07/11/19 21:17,"135 2nd St, New York City, NY 10001" +226198,Flatscreen TV,1,300,07/31/19 13:49,"925 6th St, Atlanta, GA 30301" +226199,Wired Headphones,2,11.99,07/13/19 12:15,"775 Dogwood St, Dallas, TX 75001" +226200,AA Batteries (4-pack),1,3.84,07/18/19 14:20,"202 9th St, Los Angeles, CA 90001" +226201,Wired Headphones,1,11.99,07/02/19 10:30,"941 Elm St, Austin, TX 73301" +226202,Bose SoundSport Headphones,1,99.99,07/26/19 13:21,"775 Lincoln St, Los Angeles, CA 90001" +226203,27in 4K Gaming Monitor,1,389.99,07/08/19 03:32,"725 12th St, Seattle, WA 98101" +226204,USB-C Charging Cable,1,11.95,07/21/19 10:12,"476 Dogwood St, Boston, MA 02215" +226205,Apple Airpods Headphones,1,150,07/01/19 22:02,"841 Cherry St, Los Angeles, CA 90001" +226206,Bose SoundSport Headphones,1,99.99,07/29/19 12:46,"453 4th St, Boston, MA 02215" +226207,27in 4K Gaming Monitor,1,389.99,07/14/19 21:28,"545 Walnut St, Dallas, TX 75001" +226208,AAA Batteries (4-pack),1,2.99,07/13/19 17:13,"872 South St, Boston, MA 02215" +226209,USB-C Charging Cable,1,11.95,07/17/19 08:47,"494 12th St, Seattle, WA 98101" +226210,USB-C Charging Cable,1,11.95,07/17/19 09:17,"933 12th St, Boston, MA 02215" +226211,Wired Headphones,1,11.99,07/17/19 19:38,"89 1st St, San Francisco, CA 94016" +226212,AA Batteries (4-pack),1,3.84,07/26/19 08:23,"800 Johnson St, New York City, NY 10001" +226213,Wired Headphones,1,11.99,07/31/19 01:18,"197 1st St, Boston, MA 02215" +226214,Wired Headphones,1,11.99,07/05/19 09:32,"310 Lincoln St, Austin, TX 73301" +226215,Bose SoundSport Headphones,1,99.99,07/08/19 18:43,"779 Willow St, San Francisco, CA 94016" +226216,iPhone,1,700,07/06/19 21:06,"854 8th St, Dallas, TX 75001" +226216,Lightning Charging Cable,1,14.95,07/06/19 21:06,"854 8th St, Dallas, TX 75001" +226217,Lightning Charging Cable,1,14.95,07/09/19 18:06,"606 Lakeview St, Los Angeles, CA 90001" +226218,AA Batteries (4-pack),2,3.84,07/01/19 16:14,"180 Wilson St, Los Angeles, CA 90001" +226219,20in Monitor,1,109.99,07/06/19 10:10,"127 Lakeview St, Portland, OR 97035" +226220,Lightning Charging Cable,1,14.95,07/05/19 06:35,"685 12th St, Boston, MA 02215" +226221,Wired Headphones,1,11.99,07/26/19 21:07,"543 Madison St, San Francisco, CA 94016" +226222,20in Monitor,1,109.99,07/19/19 08:56,"487 Hickory St, New York City, NY 10001" +226223,27in 4K Gaming Monitor,1,389.99,07/23/19 19:27,"646 5th St, Los Angeles, CA 90001" +226224,USB-C Charging Cable,1,11.95,07/25/19 19:46,"392 Cherry St, Portland, OR 97035" +226225,Bose SoundSport Headphones,1,99.99,07/27/19 11:39,"715 Church St, New York City, NY 10001" +226226,Apple Airpods Headphones,1,150,07/23/19 12:17,"925 Center St, San Francisco, CA 94016" +226227,iPhone,1,700,07/21/19 22:13,"733 4th St, Atlanta, GA 30301" +226228,Lightning Charging Cable,1,14.95,07/29/19 16:05,"323 West St, Seattle, WA 98101" +226229,ThinkPad Laptop,1,999.99,07/07/19 21:46,"249 7th St, Atlanta, GA 30301" +226230,Bose SoundSport Headphones,1,99.99,07/11/19 10:46,"948 Walnut St, San Francisco, CA 94016" +226231,AAA Batteries (4-pack),2,2.99,07/13/19 14:31,"505 Lincoln St, San Francisco, CA 94016" +226232,AAA Batteries (4-pack),1,2.99,07/05/19 13:29,"37 Wilson St, San Francisco, CA 94016" +226233,Apple Airpods Headphones,1,150,07/24/19 10:25,"853 West St, Boston, MA 02215" +226234,Flatscreen TV,1,300,07/09/19 17:03,"991 Park St, Austin, TX 73301" +226235,AAA Batteries (4-pack),1,2.99,07/20/19 23:59,"48 Willow St, Los Angeles, CA 90001" +226236,AAA Batteries (4-pack),1,2.99,07/27/19 18:08,"83 Highland St, Atlanta, GA 30301" +226237,AA Batteries (4-pack),3,3.84,07/14/19 12:48,"631 Willow St, Boston, MA 02215" +226238,AAA Batteries (4-pack),2,2.99,07/06/19 22:26,"76 Spruce St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +226239,Macbook Pro Laptop,1,1700,07/24/19 21:29,"277 Lincoln St, New York City, NY 10001" +226240,Apple Airpods Headphones,1,150,07/30/19 17:47,"18 West St, Seattle, WA 98101" +226241,AAA Batteries (4-pack),2,2.99,07/12/19 16:28,"811 13th St, Austin, TX 73301" +226242,Wired Headphones,1,11.99,07/15/19 13:47,"947 Walnut St, Boston, MA 02215" +226243,34in Ultrawide Monitor,1,379.99,07/07/19 23:30,"185 Washington St, Dallas, TX 75001" +226244,Wired Headphones,1,11.99,07/02/19 04:05,"786 12th St, New York City, NY 10001" +226244,AA Batteries (4-pack),1,3.84,07/02/19 04:05,"786 12th St, New York City, NY 10001" +226245,34in Ultrawide Monitor,1,379.99,07/15/19 19:20,"192 8th St, Austin, TX 73301" +226246,27in FHD Monitor,1,149.99,07/17/19 22:15,"647 Meadow St, Boston, MA 02215" +226247,27in FHD Monitor,2,149.99,07/01/19 15:51,"775 Jefferson St, Austin, TX 73301" +226248,20in Monitor,1,109.99,07/09/19 10:20,"643 Hickory St, San Francisco, CA 94016" +226249,Wired Headphones,1,11.99,07/21/19 02:23,"877 14th St, Dallas, TX 75001" +226250,Lightning Charging Cable,1,14.95,07/08/19 10:59,"946 2nd St, New York City, NY 10001" +226251,AAA Batteries (4-pack),1,2.99,07/25/19 16:48,"297 Park St, Portland, OR 97035" +226252,Wired Headphones,1,11.99,07/01/19 22:12,"784 11th St, Boston, MA 02215" +226253,Apple Airpods Headphones,1,150,07/16/19 16:08,"836 Forest St, Dallas, TX 75001" +226254,Lightning Charging Cable,1,14.95,07/08/19 14:53,"820 9th St, Seattle, WA 98101" +226255,Google Phone,1,600,07/11/19 11:17,"840 Lake St, San Francisco, CA 94016" +226256,USB-C Charging Cable,1,11.95,07/06/19 17:07,"50 Center St, Seattle, WA 98101" +226257,USB-C Charging Cable,1,11.95,07/27/19 12:33,"23 Elm St, San Francisco, CA 94016" +226258,AAA Batteries (4-pack),1,2.99,07/19/19 22:06,"11 Park St, San Francisco, CA 94016" +226259,Google Phone,1,600,07/29/19 22:53,"136 North St, New York City, NY 10001" +226259,USB-C Charging Cable,1,11.95,07/29/19 22:53,"136 North St, New York City, NY 10001" +226260,AA Batteries (4-pack),1,3.84,07/16/19 00:04,"125 Forest St, San Francisco, CA 94016" +226261,USB-C Charging Cable,1,11.95,07/27/19 11:47,"229 7th St, San Francisco, CA 94016" +226262,AA Batteries (4-pack),2,3.84,07/24/19 14:15,"263 Church St, Seattle, WA 98101" +226263,USB-C Charging Cable,1,11.95,07/04/19 20:43,"804 Lincoln St, Boston, MA 02215" +226264,27in 4K Gaming Monitor,1,389.99,07/16/19 17:39,"280 River St, Dallas, TX 75001" +226265,27in FHD Monitor,1,149.99,07/29/19 08:10,"210 North St, Los Angeles, CA 90001" +226266,AA Batteries (4-pack),1,3.84,07/06/19 15:12,"456 North St, Dallas, TX 75001" +226267,USB-C Charging Cable,1,11.95,07/24/19 20:56,"660 Cherry St, New York City, NY 10001" +226268,Lightning Charging Cable,1,14.95,07/20/19 20:52,"86 Hickory St, San Francisco, CA 94016" +226269,Apple Airpods Headphones,1,150,07/17/19 18:31,"345 Lakeview St, Seattle, WA 98101" +226270,27in FHD Monitor,1,149.99,07/23/19 12:08,"870 Spruce St, Dallas, TX 75001" +226271,USB-C Charging Cable,1,11.95,07/08/19 11:09,"949 Ridge St, Boston, MA 02215" +226272,20in Monitor,1,109.99,07/09/19 19:08,"686 Pine St, Seattle, WA 98101" +226273,Lightning Charging Cable,1,14.95,07/11/19 22:55,"430 Sunset St, New York City, NY 10001" +226274,AAA Batteries (4-pack),1,2.99,07/26/19 15:40,"379 Walnut St, Los Angeles, CA 90001" +226275,Bose SoundSport Headphones,1,99.99,07/15/19 18:39,"491 River St, New York City, NY 10001" +226276,Lightning Charging Cable,1,14.95,07/31/19 13:36,"458 Jefferson St, Boston, MA 02215" +226277,USB-C Charging Cable,1,11.95,07/25/19 21:26,"524 Sunset St, San Francisco, CA 94016" +226278,Bose SoundSport Headphones,1,99.99,07/01/19 16:36,"85 Park St, San Francisco, CA 94016" +226279,27in 4K Gaming Monitor,1,389.99,07/31/19 12:11,"470 Ridge St, Los Angeles, CA 90001" +226280,Apple Airpods Headphones,1,150,07/18/19 07:04,"334 Forest St, Atlanta, GA 30301" +226281,ThinkPad Laptop,1,999.99,07/31/19 16:46,"46 4th St, Atlanta, GA 30301" +226282,iPhone,1,700,07/27/19 22:26,"844 North St, San Francisco, CA 94016" +226283,Wired Headphones,1,11.99,07/11/19 04:34,"888 Highland St, Austin, TX 73301" +226284,Lightning Charging Cable,1,14.95,07/06/19 02:49,"896 Main St, San Francisco, CA 94016" +226285,USB-C Charging Cable,1,11.95,07/24/19 17:54,"356 Jefferson St, Portland, ME 04101" +226286,Macbook Pro Laptop,1,1700,07/16/19 13:48,"456 Hill St, San Francisco, CA 94016" +226287,iPhone,1,700,07/27/19 15:50,"569 Hickory St, San Francisco, CA 94016" +226288,Google Phone,1,600,07/27/19 14:52,"440 Cherry St, Atlanta, GA 30301" +226289,iPhone,1,700,07/08/19 14:14,"302 Wilson St, New York City, NY 10001" +226289,Lightning Charging Cable,1,14.95,07/08/19 14:14,"302 Wilson St, New York City, NY 10001" +226290,AAA Batteries (4-pack),3,2.99,07/26/19 10:06,"759 Center St, Los Angeles, CA 90001" +226291,AA Batteries (4-pack),1,3.84,07/15/19 14:40,"534 Chestnut St, Portland, ME 04101" +226292,AAA Batteries (4-pack),1,2.99,07/03/19 13:06,"202 7th St, San Francisco, CA 94016" +226293,USB-C Charging Cable,1,11.95,07/30/19 17:57,"2 Park St, Los Angeles, CA 90001" +226294,USB-C Charging Cable,1,11.95,07/19/19 12:44,"777 Center St, Los Angeles, CA 90001" +226295,ThinkPad Laptop,1,999.99,07/19/19 22:05,"80 Meadow St, Boston, MA 02215" +226296,Google Phone,1,600,07/06/19 00:18,"159 11th St, Portland, ME 04101" +226297,Vareebadd Phone,1,400,07/08/19 19:59,"965 Cedar St, New York City, NY 10001" +226298,iPhone,1,700,07/30/19 15:10,"741 Washington St, Los Angeles, CA 90001" +226299,Lightning Charging Cable,1,14.95,07/13/19 14:17,"852 Ridge St, Los Angeles, CA 90001" +226300,LG Washing Machine,1,600.0,07/27/19 18:32,"138 Jefferson St, Seattle, WA 98101" +226301,27in FHD Monitor,1,149.99,07/11/19 09:01,"354 10th St, Seattle, WA 98101" +226302,USB-C Charging Cable,1,11.95,07/06/19 19:30,"546 Elm St, Atlanta, GA 30301" +226303,USB-C Charging Cable,1,11.95,07/15/19 05:52,"449 Main St, Boston, MA 02215" +226304,Bose SoundSport Headphones,1,99.99,07/19/19 15:54,"940 8th St, San Francisco, CA 94016" +226305,Lightning Charging Cable,1,14.95,07/04/19 15:57,"215 Ridge St, Seattle, WA 98101" +226306,AA Batteries (4-pack),1,3.84,07/24/19 22:21,"499 Jefferson St, Boston, MA 02215" +226307,Wired Headphones,1,11.99,07/16/19 10:36,"391 1st St, Atlanta, GA 30301" +226308,AA Batteries (4-pack),1,3.84,07/31/19 11:12,"328 1st St, New York City, NY 10001" +226309,USB-C Charging Cable,1,11.95,07/03/19 14:03,"452 2nd St, Portland, OR 97035" +226310,AA Batteries (4-pack),2,3.84,07/31/19 19:38,"619 13th St, Boston, MA 02215" +226311,Wired Headphones,1,11.99,07/19/19 02:24,"275 2nd St, Los Angeles, CA 90001" +226312,USB-C Charging Cable,1,11.95,07/09/19 19:04,"92 Elm St, New York City, NY 10001" +226313,27in 4K Gaming Monitor,1,389.99,07/29/19 20:29,"103 North St, Boston, MA 02215" +226314,AA Batteries (4-pack),1,3.84,07/25/19 08:03,"756 Park St, San Francisco, CA 94016" +226315,Google Phone,1,600,07/25/19 22:42,"203 Main St, Los Angeles, CA 90001" +226316,Wired Headphones,1,11.99,07/26/19 08:44,"15 North St, Seattle, WA 98101" +226317,Bose SoundSport Headphones,1,99.99,07/23/19 12:34,"802 2nd St, San Francisco, CA 94016" +226317,Lightning Charging Cable,1,14.95,07/23/19 12:34,"802 2nd St, San Francisco, CA 94016" +226318,USB-C Charging Cable,2,11.95,07/07/19 12:19,"2 Lakeview St, Dallas, TX 75001" +226319,Apple Airpods Headphones,1,150,07/15/19 15:27,"225 Church St, New York City, NY 10001" +226320,Lightning Charging Cable,1,14.95,07/04/19 19:17,"29 Maple St, Portland, OR 97035" +226321,27in 4K Gaming Monitor,1,389.99,07/29/19 18:44,"126 8th St, Los Angeles, CA 90001" +226322,Lightning Charging Cable,1,14.95,07/24/19 10:11,"932 West St, Los Angeles, CA 90001" +226323,Wired Headphones,2,11.99,07/22/19 12:05,"835 1st St, San Francisco, CA 94016" +226324,USB-C Charging Cable,1,11.95,07/17/19 22:08,"24 West St, Seattle, WA 98101" +226325,Bose SoundSport Headphones,1,99.99,07/20/19 10:10,"214 Washington St, Los Angeles, CA 90001" +226326,27in FHD Monitor,1,149.99,07/30/19 00:33,"925 Church St, Portland, OR 97035" +226327,Wired Headphones,1,11.99,07/07/19 17:55,"60 Elm St, Boston, MA 02215" +226328,AAA Batteries (4-pack),1,2.99,07/25/19 12:09,"651 Maple St, Atlanta, GA 30301" +226329,USB-C Charging Cable,1,11.95,07/29/19 12:02,"486 Hickory St, Los Angeles, CA 90001" +226330,27in FHD Monitor,1,149.99,07/01/19 08:41,"61 9th St, Atlanta, GA 30301" +226331,Lightning Charging Cable,1,14.95,07/04/19 11:27,"453 Hickory St, Los Angeles, CA 90001" +226332,AAA Batteries (4-pack),3,2.99,07/03/19 11:20,"730 South St, New York City, NY 10001" +226333,27in 4K Gaming Monitor,1,389.99,07/29/19 22:28,"978 Maple St, Atlanta, GA 30301" +226334,USB-C Charging Cable,1,11.95,07/12/19 08:17,"837 Hill St, San Francisco, CA 94016" +226335,AA Batteries (4-pack),1,3.84,07/05/19 11:55,"884 10th St, Atlanta, GA 30301" +226336,Lightning Charging Cable,1,14.95,07/09/19 21:35,"154 13th St, New York City, NY 10001" +226337,Lightning Charging Cable,1,14.95,07/31/19 22:04,"57 Park St, New York City, NY 10001" +226338,Wired Headphones,1,11.99,07/18/19 20:15,"420 11th St, San Francisco, CA 94016" +226339,Vareebadd Phone,1,400,07/16/19 11:57,"313 Pine St, Boston, MA 02215" +226340,Flatscreen TV,1,300,07/26/19 07:17,"295 Chestnut St, San Francisco, CA 94016" +226341,34in Ultrawide Monitor,1,379.99,07/22/19 13:22,"271 Pine St, Seattle, WA 98101" +226342,Google Phone,1,600,07/30/19 12:25,"235 Cedar St, San Francisco, CA 94016" +226343,AAA Batteries (4-pack),1,2.99,07/21/19 12:15,"770 Jefferson St, Dallas, TX 75001" +226344,Vareebadd Phone,1,400,07/26/19 17:39,"711 Maple St, Seattle, WA 98101" +226344,USB-C Charging Cable,1,11.95,07/26/19 17:39,"711 Maple St, Seattle, WA 98101" +226345,ThinkPad Laptop,1,999.99,07/11/19 23:11,"435 1st St, New York City, NY 10001" +226346,Wired Headphones,1,11.99,07/16/19 11:59,"918 Elm St, New York City, NY 10001" +226347,Apple Airpods Headphones,1,150,07/28/19 12:02,"475 North St, New York City, NY 10001" +226348,Wired Headphones,1,11.99,07/25/19 11:02,"393 Jefferson St, Boston, MA 02215" +226349,Wired Headphones,1,11.99,07/30/19 13:15,"394 4th St, Dallas, TX 75001" +226350,Apple Airpods Headphones,1,150,07/08/19 15:15,"454 12th St, Portland, ME 04101" +226351,AAA Batteries (4-pack),1,2.99,07/26/19 18:41,"742 Washington St, Austin, TX 73301" +226352,AA Batteries (4-pack),2,3.84,07/22/19 10:09,"306 Walnut St, San Francisco, CA 94016" +226353,20in Monitor,1,109.99,07/09/19 15:12,"769 Johnson St, San Francisco, CA 94016" +226354,USB-C Charging Cable,1,11.95,07/11/19 11:04,"533 Hickory St, San Francisco, CA 94016" +226355,AAA Batteries (4-pack),4,2.99,07/25/19 15:55,"852 Johnson St, New York City, NY 10001" +226356,Bose SoundSport Headphones,1,99.99,07/21/19 10:03,"784 9th St, Los Angeles, CA 90001" +226357,Google Phone,1,600,07/03/19 13:21,"625 7th St, San Francisco, CA 94016" +226358,27in 4K Gaming Monitor,1,389.99,07/06/19 20:44,"967 13th St, Los Angeles, CA 90001" +226359,AAA Batteries (4-pack),1,2.99,07/04/19 16:47,"298 Highland St, Portland, OR 97035" +226360,Google Phone,1,600,07/16/19 22:38,"334 8th St, Dallas, TX 75001" +226361,USB-C Charging Cable,1,11.95,07/09/19 18:11,"698 Ridge St, Atlanta, GA 30301" +226362,iPhone,1,700,07/13/19 00:32,"274 Johnson St, Los Angeles, CA 90001" +226363,Bose SoundSport Headphones,1,99.99,07/09/19 17:10,"512 North St, New York City, NY 10001" +226364,Lightning Charging Cable,1,14.95,07/24/19 23:02,"980 Wilson St, New York City, NY 10001" +226365,Flatscreen TV,1,300,07/04/19 07:08,"540 Lakeview St, New York City, NY 10001" +226366,ThinkPad Laptop,1,999.99,07/28/19 15:11,"26 Jackson St, San Francisco, CA 94016" +226367,34in Ultrawide Monitor,1,379.99,07/21/19 12:14,"82 Hickory St, Boston, MA 02215" +226368,Apple Airpods Headphones,1,150,07/27/19 20:46,"575 River St, San Francisco, CA 94016" +226369,AAA Batteries (4-pack),1,2.99,07/29/19 20:17,"46 10th St, San Francisco, CA 94016" +226370,USB-C Charging Cable,1,11.95,07/10/19 16:37,"227 Lincoln St, Los Angeles, CA 90001" +226371,Wired Headphones,1,11.99,07/23/19 01:55,"301 Sunset St, San Francisco, CA 94016" +226372,34in Ultrawide Monitor,1,379.99,07/25/19 19:54,"964 11th St, Boston, MA 02215" +226373,Wired Headphones,2,11.99,07/13/19 18:32,"971 Wilson St, Austin, TX 73301" +226374,Wired Headphones,1,11.99,07/28/19 14:17,"322 Willow St, New York City, NY 10001" +226375,Bose SoundSport Headphones,1,99.99,07/17/19 07:26,"239 Hickory St, Los Angeles, CA 90001" +226376,Lightning Charging Cable,1,14.95,07/27/19 00:51,"551 Forest St, New York City, NY 10001" +226377,Lightning Charging Cable,2,14.95,07/05/19 12:54,"307 Hill St, Dallas, TX 75001" +226378,iPhone,1,700,07/26/19 13:19,"708 8th St, Portland, OR 97035" +226379,Google Phone,1,600,07/23/19 13:39,"70 Cherry St, San Francisco, CA 94016" +226380,Wired Headphones,1,11.99,07/12/19 17:52,"636 Washington St, Austin, TX 73301" +226381,Macbook Pro Laptop,1,1700,07/22/19 12:48,"121 Pine St, New York City, NY 10001" +226382,Bose SoundSport Headphones,1,99.99,07/11/19 13:51,"621 Lincoln St, New York City, NY 10001" +226383,AA Batteries (4-pack),2,3.84,07/03/19 12:48,"533 5th St, San Francisco, CA 94016" +226384,iPhone,1,700,07/05/19 04:53,"98 2nd St, Boston, MA 02215" +226385,Lightning Charging Cable,1,14.95,07/15/19 11:19,"982 Sunset St, Portland, OR 97035" +226386,AA Batteries (4-pack),1,3.84,07/27/19 20:44,"932 Spruce St, Portland, OR 97035" +226387,AA Batteries (4-pack),1,3.84,07/21/19 19:25,"344 Church St, Boston, MA 02215" +226388,AA Batteries (4-pack),1,3.84,07/24/19 22:37,"943 14th St, Austin, TX 73301" +226389,iPhone,1,700,07/14/19 17:27,"547 Washington St, San Francisco, CA 94016" +226390,AA Batteries (4-pack),1,3.84,07/21/19 14:49,"800 Elm St, Los Angeles, CA 90001" +226391,AAA Batteries (4-pack),1,2.99,07/19/19 09:59,"793 Hill St, Seattle, WA 98101" +226392,Macbook Pro Laptop,1,1700,07/20/19 12:36,"458 Highland St, San Francisco, CA 94016" +226393,Lightning Charging Cable,1,14.95,07/12/19 15:15,"271 Lakeview St, Los Angeles, CA 90001" +226394,Lightning Charging Cable,1,14.95,07/18/19 08:39,"621 Cedar St, Los Angeles, CA 90001" +226395,Bose SoundSport Headphones,1,99.99,07/04/19 11:42,"595 Church St, Portland, OR 97035" +226396,Google Phone,1,600,07/05/19 13:13,"79 Ridge St, Portland, OR 97035" +226396,Lightning Charging Cable,1,14.95,07/05/19 13:13,"79 Ridge St, Portland, OR 97035" +226397,27in FHD Monitor,1,149.99,07/31/19 15:28,"802 Church St, Los Angeles, CA 90001" +226398,Lightning Charging Cable,1,14.95,07/30/19 21:23,"341 Cedar St, Boston, MA 02215" +226399,Bose SoundSport Headphones,1,99.99,07/08/19 16:07,"373 Jackson St, Atlanta, GA 30301" +226400,AA Batteries (4-pack),2,3.84,07/06/19 12:09,"943 River St, New York City, NY 10001" +226401,iPhone,1,700,07/14/19 09:38,"468 12th St, Dallas, TX 75001" +226402,27in FHD Monitor,1,149.99,07/16/19 12:49,"42 Maple St, San Francisco, CA 94016" +226403,AA Batteries (4-pack),1,3.84,07/14/19 12:11,"131 North St, New York City, NY 10001" +226404,20in Monitor,1,109.99,07/17/19 08:13,"216 5th St, San Francisco, CA 94016" +226405,AA Batteries (4-pack),1,3.84,07/30/19 23:19,"494 Chestnut St, New York City, NY 10001" +226406,USB-C Charging Cable,1,11.95,07/11/19 21:34,"556 5th St, Boston, MA 02215" +226407,Bose SoundSport Headphones,1,99.99,07/07/19 14:38,"528 2nd St, Los Angeles, CA 90001" +226408,Wired Headphones,1,11.99,07/20/19 15:38,"804 12th St, Atlanta, GA 30301" +226409,Apple Airpods Headphones,1,150,07/17/19 17:27,"177 Dogwood St, Portland, ME 04101" +226410,Bose SoundSport Headphones,1,99.99,07/06/19 20:15,"933 Maple St, New York City, NY 10001" +226411,Lightning Charging Cable,1,14.95,07/02/19 19:32,"867 Maple St, New York City, NY 10001" +226412,Apple Airpods Headphones,1,150,07/21/19 15:42,"329 5th St, San Francisco, CA 94016" +226413,27in 4K Gaming Monitor,1,389.99,07/09/19 01:31,"449 Lake St, New York City, NY 10001" +226414,34in Ultrawide Monitor,1,379.99,07/06/19 08:06,"354 Lake St, Los Angeles, CA 90001" +226415,Apple Airpods Headphones,1,150,07/21/19 19:21,"156 8th St, Los Angeles, CA 90001" +226416,AAA Batteries (4-pack),2,2.99,07/21/19 00:27,"379 11th St, Los Angeles, CA 90001" +226417,27in 4K Gaming Monitor,1,389.99,07/18/19 23:24,"57 4th St, Dallas, TX 75001" +226418,Apple Airpods Headphones,1,150,07/22/19 13:38,"112 Cedar St, Atlanta, GA 30301" +226419,AA Batteries (4-pack),1,3.84,07/10/19 17:56,"3 Elm St, Los Angeles, CA 90001" +226420,Google Phone,1,600,07/16/19 18:07,"493 Walnut St, San Francisco, CA 94016" +226421,AAA Batteries (4-pack),1,2.99,07/02/19 15:53,"946 Chestnut St, New York City, NY 10001" +226422,Apple Airpods Headphones,1,150,07/18/19 15:08,"610 Church St, San Francisco, CA 94016" +226423,Apple Airpods Headphones,1,150,07/23/19 18:30,"806 Adams St, Boston, MA 02215" +226424,Macbook Pro Laptop,1,1700,07/29/19 13:23,"295 Pine St, San Francisco, CA 94016" +226425,USB-C Charging Cable,1,11.95,07/18/19 22:10,"632 Lakeview St, Austin, TX 73301" +226426,Bose SoundSport Headphones,1,99.99,07/17/19 11:36,"994 6th St, Atlanta, GA 30301" +226427,27in 4K Gaming Monitor,1,389.99,07/24/19 23:49,"66 Hill St, Boston, MA 02215" +,,,,, +226428,Wired Headphones,1,11.99,07/05/19 12:40,"344 12th St, San Francisco, CA 94016" +226429,AA Batteries (4-pack),1,3.84,07/03/19 08:56,"657 Park St, Boston, MA 02215" +226430,20in Monitor,1,109.99,07/22/19 15:02,"454 1st St, Dallas, TX 75001" +226431,Google Phone,1,600,07/05/19 14:30,"961 River St, Los Angeles, CA 90001" +226431,Wired Headphones,1,11.99,07/05/19 14:30,"961 River St, Los Angeles, CA 90001" +226432,USB-C Charging Cable,1,11.95,07/03/19 19:24,"267 Lincoln St, San Francisco, CA 94016" +226433,AAA Batteries (4-pack),1,2.99,07/02/19 09:47,"733 9th St, Austin, TX 73301" +226434,USB-C Charging Cable,1,11.95,07/01/19 09:41,"802 Meadow St, New York City, NY 10001" +226435,Wired Headphones,1,11.99,07/04/19 17:20,"896 Center St, San Francisco, CA 94016" +226436,27in FHD Monitor,1,149.99,07/26/19 19:08,"184 7th St, Los Angeles, CA 90001" +226437,Bose SoundSport Headphones,1,99.99,07/24/19 17:21,"636 Chestnut St, Los Angeles, CA 90001" +226438,Wired Headphones,1,11.99,07/22/19 11:27,"773 Highland St, Atlanta, GA 30301" +226439,AA Batteries (4-pack),1,3.84,07/24/19 17:41,"915 Meadow St, San Francisco, CA 94016" +226440,USB-C Charging Cable,1,11.95,07/11/19 16:54,"611 Walnut St, Los Angeles, CA 90001" +226441,AA Batteries (4-pack),1,3.84,07/31/19 11:26,"194 12th St, San Francisco, CA 94016" +226442,USB-C Charging Cable,1,11.95,07/25/19 19:24,"208 Chestnut St, New York City, NY 10001" +226443,AA Batteries (4-pack),2,3.84,07/17/19 14:08,"735 Ridge St, Dallas, TX 75001" +226444,Macbook Pro Laptop,1,1700,07/23/19 20:47,"571 South St, San Francisco, CA 94016" +226445,USB-C Charging Cable,1,11.95,07/05/19 20:36,"661 14th St, Portland, ME 04101" +226446,ThinkPad Laptop,1,999.99,07/30/19 09:09,"163 Hill St, Portland, OR 97035" +226447,USB-C Charging Cable,1,11.95,07/24/19 20:03,"917 13th St, San Francisco, CA 94016" +226448,Wired Headphones,1,11.99,07/06/19 12:04,"590 14th St, San Francisco, CA 94016" +226449,AA Batteries (4-pack),5,3.84,07/17/19 18:24,"245 Meadow St, Los Angeles, CA 90001" +226450,AAA Batteries (4-pack),1,2.99,07/29/19 11:27,"608 Lincoln St, Dallas, TX 75001" +226451,Bose SoundSport Headphones,1,99.99,07/12/19 01:56,"219 13th St, Los Angeles, CA 90001" +226452,Lightning Charging Cable,1,14.95,07/21/19 21:39,"249 4th St, Los Angeles, CA 90001" +226453,AA Batteries (4-pack),1,3.84,07/02/19 09:46,"102 4th St, San Francisco, CA 94016" +226454,Wired Headphones,1,11.99,07/22/19 06:53,"723 Church St, Los Angeles, CA 90001" +226455,Apple Airpods Headphones,1,150,07/03/19 11:57,"663 Lakeview St, New York City, NY 10001" +226456,USB-C Charging Cable,1,11.95,07/07/19 17:12,"697 West St, San Francisco, CA 94016" +226457,Lightning Charging Cable,1,14.95,07/11/19 10:15,"465 Maple St, Los Angeles, CA 90001" +226458,Lightning Charging Cable,1,14.95,07/27/19 23:34,"669 7th St, San Francisco, CA 94016" +226459,AA Batteries (4-pack),3,3.84,07/18/19 00:58,"35 Maple St, Dallas, TX 75001" +226460,Lightning Charging Cable,1,14.95,07/26/19 17:46,"987 North St, San Francisco, CA 94016" +226461,USB-C Charging Cable,1,11.95,07/14/19 22:21,"875 Wilson St, Portland, OR 97035" +226462,AA Batteries (4-pack),1,3.84,07/18/19 18:13,"922 Cherry St, Dallas, TX 75001" +226463,AAA Batteries (4-pack),1,2.99,07/15/19 13:47,"502 Spruce St, Portland, OR 97035" +226464,Vareebadd Phone,1,400,07/01/19 09:04,"73 7th St, Austin, TX 73301" +226465,Wired Headphones,1,11.99,07/20/19 10:39,"431 Church St, Dallas, TX 75001" +226466,Apple Airpods Headphones,1,150,07/18/19 18:28,"518 13th St, New York City, NY 10001" +226467,34in Ultrawide Monitor,1,379.99,07/06/19 20:26,"697 12th St, New York City, NY 10001" +226468,Wired Headphones,1,11.99,07/02/19 15:51,"152 2nd St, Boston, MA 02215" +226469,AAA Batteries (4-pack),1,2.99,07/28/19 16:05,"822 Main St, Boston, MA 02215" +226470,AA Batteries (4-pack),2,3.84,07/15/19 19:19,"410 6th St, Boston, MA 02215" +226470,Apple Airpods Headphones,1,150,07/15/19 19:19,"410 6th St, Boston, MA 02215" +226471,AAA Batteries (4-pack),2,2.99,07/04/19 18:27,"246 11th St, San Francisco, CA 94016" +226472,Bose SoundSport Headphones,1,99.99,07/04/19 13:44,"219 7th St, New York City, NY 10001" +226473,Lightning Charging Cable,1,14.95,07/01/19 08:07,"386 Jackson St, San Francisco, CA 94016" +226474,AA Batteries (4-pack),2,3.84,07/17/19 21:45,"253 Cherry St, Boston, MA 02215" +226475,AA Batteries (4-pack),1,3.84,07/20/19 14:42,"593 Madison St, Seattle, WA 98101" +226476,AA Batteries (4-pack),1,3.84,07/18/19 15:20,"127 Sunset St, Los Angeles, CA 90001" +226477,Wired Headphones,1,11.99,07/05/19 14:31,"922 North St, Atlanta, GA 30301" +226478,Lightning Charging Cable,1,14.95,07/03/19 05:41,"207 Dogwood St, New York City, NY 10001" +226479,iPhone,1,700,07/11/19 21:03,"89 Wilson St, San Francisco, CA 94016" +226480,AAA Batteries (4-pack),2,2.99,07/16/19 05:19,"412 Jackson St, San Francisco, CA 94016" +226481,Lightning Charging Cable,1,14.95,07/16/19 08:48,"242 West St, New York City, NY 10001" +226481,34in Ultrawide Monitor,1,379.99,07/16/19 08:48,"242 West St, New York City, NY 10001" +226482,USB-C Charging Cable,2,11.95,07/05/19 04:49,"114 South St, Portland, OR 97035" +226483,27in FHD Monitor,1,149.99,07/24/19 10:28,"682 West St, Dallas, TX 75001" +226484,Macbook Pro Laptop,1,1700,07/05/19 19:08,"300 Dogwood St, San Francisco, CA 94016" +226485,AAA Batteries (4-pack),1,2.99,07/21/19 15:39,"581 4th St, Dallas, TX 75001" +226486,27in 4K Gaming Monitor,1,389.99,07/15/19 12:03,"59 Lakeview St, Portland, OR 97035" +226487,iPhone,1,700,07/29/19 13:49,"517 Hickory St, Los Angeles, CA 90001" +226488,AA Batteries (4-pack),1,3.84,07/22/19 11:27,"384 Hill St, Los Angeles, CA 90001" +226489,34in Ultrawide Monitor,1,379.99,07/18/19 12:28,"305 Church St, Seattle, WA 98101" +226490,AAA Batteries (4-pack),1,2.99,07/14/19 07:04,"906 South St, New York City, NY 10001" +226491,Bose SoundSport Headphones,1,99.99,07/31/19 12:47,"585 River St, Atlanta, GA 30301" +226492,Google Phone,1,600,07/23/19 22:58,"924 River St, Austin, TX 73301" +226493,27in 4K Gaming Monitor,1,389.99,07/29/19 11:40,"791 Forest St, Austin, TX 73301" +226494,AAA Batteries (4-pack),1,2.99,07/06/19 22:20,"312 Cedar St, Los Angeles, CA 90001" +226495,Apple Airpods Headphones,1,150,07/03/19 08:36,"324 Chestnut St, Portland, OR 97035" +226496,AAA Batteries (4-pack),1,2.99,07/14/19 20:35,"330 Lake St, Dallas, TX 75001" +226497,34in Ultrawide Monitor,1,379.99,07/14/19 15:44,"354 2nd St, Boston, MA 02215" +226498,Lightning Charging Cable,4,14.95,07/27/19 20:37,"606 Ridge St, Portland, OR 97035" +226499,27in FHD Monitor,1,149.99,07/07/19 19:51,"359 Ridge St, Los Angeles, CA 90001" +226500,Bose SoundSport Headphones,1,99.99,07/13/19 20:34,"584 11th St, Atlanta, GA 30301" +226501,AA Batteries (4-pack),3,3.84,07/02/19 20:14,"676 Madison St, San Francisco, CA 94016" +226502,Wired Headphones,1,11.99,07/12/19 22:43,"323 4th St, San Francisco, CA 94016" +226503,Apple Airpods Headphones,1,150,07/08/19 20:54,"605 Cedar St, Atlanta, GA 30301" +226504,USB-C Charging Cable,1,11.95,07/29/19 10:38,"619 8th St, Los Angeles, CA 90001" +226504,AA Batteries (4-pack),1,3.84,07/29/19 10:38,"619 8th St, Los Angeles, CA 90001" +226505,Macbook Pro Laptop,1,1700,07/05/19 01:02,"678 North St, Los Angeles, CA 90001" +226506,ThinkPad Laptop,1,999.99,07/07/19 21:27,"654 2nd St, Portland, ME 04101" +226507,Google Phone,1,600,07/02/19 15:20,"892 Main St, Portland, OR 97035" +226508,20in Monitor,1,109.99,07/06/19 01:36,"590 Center St, San Francisco, CA 94016" +226509,20in Monitor,1,109.99,07/10/19 13:51,"923 Hill St, Portland, OR 97035" +226510,Bose SoundSport Headphones,1,99.99,07/11/19 15:09,"182 14th St, Seattle, WA 98101" +226511,Bose SoundSport Headphones,1,99.99,07/07/19 21:32,"561 Dogwood St, Portland, OR 97035" +226512,27in 4K Gaming Monitor,1,389.99,07/03/19 14:28,"769 Lincoln St, Austin, TX 73301" +226513,iPhone,1,700,07/05/19 15:19,"682 14th St, New York City, NY 10001" +226514,27in 4K Gaming Monitor,1,389.99,07/30/19 12:15,"991 Johnson St, Austin, TX 73301" +226515,27in 4K Gaming Monitor,1,389.99,07/31/19 15:34,"408 Johnson St, Atlanta, GA 30301" +226516,AA Batteries (4-pack),1,3.84,07/19/19 22:09,"127 11th St, Dallas, TX 75001" +226517,Lightning Charging Cable,1,14.95,07/15/19 13:51,"731 10th St, San Francisco, CA 94016" +226518,20in Monitor,1,109.99,07/28/19 14:32,"331 Hickory St, Atlanta, GA 30301" +226519,iPhone,1,700,07/01/19 07:08,"288 Highland St, San Francisco, CA 94016" +226520,AAA Batteries (4-pack),1,2.99,07/13/19 16:20,"432 Meadow St, Dallas, TX 75001" +226521,27in FHD Monitor,1,149.99,07/22/19 16:47,"611 10th St, San Francisco, CA 94016" +226522,Wired Headphones,1,11.99,07/09/19 09:51,"898 Wilson St, Los Angeles, CA 90001" +226523,Lightning Charging Cable,2,14.95,07/15/19 09:35,"669 West St, Boston, MA 02215" +226524,27in FHD Monitor,1,149.99,07/06/19 10:29,"969 Washington St, Atlanta, GA 30301" +226525,USB-C Charging Cable,1,11.95,07/02/19 16:14,"596 Hickory St, Boston, MA 02215" +226526,Lightning Charging Cable,1,14.95,07/27/19 10:51,"972 14th St, San Francisco, CA 94016" +226527,AAA Batteries (4-pack),2,2.99,07/29/19 23:20,"541 6th St, San Francisco, CA 94016" +226528,Lightning Charging Cable,1,14.95,07/22/19 18:25,"474 13th St, San Francisco, CA 94016" +226529,AA Batteries (4-pack),2,3.84,07/29/19 20:47,"497 Pine St, Atlanta, GA 30301" +226530,AAA Batteries (4-pack),1,2.99,07/18/19 19:55,"793 Hickory St, San Francisco, CA 94016" +226531,USB-C Charging Cable,1,11.95,07/26/19 20:56,"801 Johnson St, Seattle, WA 98101" +226532,Lightning Charging Cable,1,14.95,07/17/19 21:56,"289 South St, Dallas, TX 75001" +226533,Apple Airpods Headphones,1,150,07/25/19 12:19,"617 14th St, San Francisco, CA 94016" +226534,USB-C Charging Cable,1,11.95,07/19/19 18:44,"673 8th St, San Francisco, CA 94016" +226535,Lightning Charging Cable,2,14.95,07/08/19 17:58,"93 Washington St, New York City, NY 10001" +226536,AA Batteries (4-pack),2,3.84,07/04/19 10:31,"536 6th St, Los Angeles, CA 90001" +226537,Bose SoundSport Headphones,1,99.99,07/09/19 14:01,"809 Adams St, New York City, NY 10001" +226538,Macbook Pro Laptop,1,1700,07/15/19 14:01,"171 5th St, San Francisco, CA 94016" +226539,Bose SoundSport Headphones,1,99.99,07/03/19 11:39,"630 Hill St, Los Angeles, CA 90001" +226540,27in FHD Monitor,1,149.99,07/12/19 23:37,"798 Cherry St, Los Angeles, CA 90001" +226541,USB-C Charging Cable,1,11.95,07/12/19 09:16,"814 Elm St, Los Angeles, CA 90001" +226542,Lightning Charging Cable,1,14.95,07/21/19 15:47,"507 5th St, Boston, MA 02215" +226543,Wired Headphones,1,11.99,07/27/19 12:57,"257 Madison St, Austin, TX 73301" +226544,Wired Headphones,1,11.99,07/29/19 20:18,"430 Lakeview St, Seattle, WA 98101" +226545,AA Batteries (4-pack),1,3.84,07/11/19 09:20,"181 Ridge St, Atlanta, GA 30301" +226546,20in Monitor,2,109.99,07/20/19 16:40,"442 Pine St, Austin, TX 73301" +226547,ThinkPad Laptop,1,999.99,07/23/19 01:28,"584 Spruce St, New York City, NY 10001" +226548,USB-C Charging Cable,1,11.95,07/01/19 10:39,"521 Highland St, New York City, NY 10001" +226549,Wired Headphones,1,11.99,07/11/19 10:05,"177 Ridge St, Seattle, WA 98101" +226550,Lightning Charging Cable,1,14.95,07/25/19 08:40,"726 12th St, New York City, NY 10001" +226551,27in 4K Gaming Monitor,1,389.99,07/12/19 07:37,"448 Washington St, Los Angeles, CA 90001" +226552,27in FHD Monitor,1,149.99,07/21/19 07:41,"515 Johnson St, San Francisco, CA 94016" +226553,AA Batteries (4-pack),1,3.84,07/09/19 15:52,"53 Willow St, Boston, MA 02215" +226554,Wired Headphones,2,11.99,07/06/19 19:01,"933 Park St, Portland, OR 97035" +226555,iPhone,1,700,07/17/19 22:49,"353 South St, San Francisco, CA 94016" +226556,Bose SoundSport Headphones,1,99.99,07/03/19 00:48,"892 1st St, San Francisco, CA 94016" +226557,Bose SoundSport Headphones,1,99.99,07/27/19 19:15,"572 Highland St, Portland, ME 04101" +226558,ThinkPad Laptop,1,999.99,07/28/19 13:18,"423 Main St, Los Angeles, CA 90001" +226559,AA Batteries (4-pack),1,3.84,07/25/19 19:18,"564 Meadow St, Los Angeles, CA 90001" +226560,Wired Headphones,1,11.99,07/14/19 09:06,"431 14th St, San Francisco, CA 94016" +226561,20in Monitor,1,109.99,07/25/19 11:33,"522 Elm St, Atlanta, GA 30301" +226562,USB-C Charging Cable,1,11.95,07/30/19 23:05,"749 Forest St, Portland, OR 97035" +226563,Lightning Charging Cable,1,14.95,07/24/19 21:07,"362 Ridge St, Portland, OR 97035" +226564,iPhone,1,700,07/01/19 08:46,"514 Washington St, Dallas, TX 75001" +226564,Lightning Charging Cable,2,14.95,07/01/19 08:46,"514 Washington St, Dallas, TX 75001" +226565,AA Batteries (4-pack),2,3.84,07/17/19 12:52,"100 Chestnut St, Dallas, TX 75001" +226566,Lightning Charging Cable,1,14.95,07/03/19 00:06,"325 South St, San Francisco, CA 94016" +226567,AAA Batteries (4-pack),1,2.99,07/08/19 19:56,"587 Maple St, Boston, MA 02215" +226568,27in 4K Gaming Monitor,1,389.99,07/03/19 09:57,"947 Maple St, New York City, NY 10001" +226569,Apple Airpods Headphones,1,150,07/19/19 20:45,"126 9th St, Boston, MA 02215" +226570,AAA Batteries (4-pack),2,2.99,07/02/19 12:43,"758 7th St, San Francisco, CA 94016" +226571,AAA Batteries (4-pack),1,2.99,07/01/19 10:25,"867 14th St, Boston, MA 02215" +226572,27in FHD Monitor,1,149.99,07/26/19 20:12,"602 Walnut St, Atlanta, GA 30301" +226573,Wired Headphones,1,11.99,07/10/19 12:09,"785 Dogwood St, New York City, NY 10001" +226574,ThinkPad Laptop,1,999.99,07/01/19 20:12,"275 Willow St, New York City, NY 10001" +226575,Apple Airpods Headphones,1,150,07/24/19 14:53,"126 5th St, San Francisco, CA 94016" +226576,Bose SoundSport Headphones,1,99.99,07/08/19 21:07,"267 River St, Atlanta, GA 30301" +226577,Wired Headphones,1,11.99,07/25/19 20:27,"628 Cherry St, Portland, OR 97035" +226578,ThinkPad Laptop,1,999.99,07/14/19 11:25,"978 Madison St, Los Angeles, CA 90001" +226579,Vareebadd Phone,1,400,07/16/19 14:33,"986 6th St, Dallas, TX 75001" +226579,Wired Headphones,1,11.99,07/16/19 14:33,"986 6th St, Dallas, TX 75001" +226580,Wired Headphones,1,11.99,07/17/19 16:47,"983 Highland St, Portland, ME 04101" +226581,20in Monitor,1,109.99,07/04/19 21:54,"319 Highland St, Boston, MA 02215" +226582,AA Batteries (4-pack),1,3.84,07/03/19 01:48,"24 Cedar St, San Francisco, CA 94016" +226583,27in FHD Monitor,1,149.99,07/21/19 01:08,"77 Chestnut St, Boston, MA 02215" +226584,27in 4K Gaming Monitor,1,389.99,07/31/19 21:26,"28 Johnson St, Portland, OR 97035" +226585,Wired Headphones,1,11.99,07/03/19 15:10,"958 9th St, Seattle, WA 98101" +226586,Apple Airpods Headphones,1,150,07/24/19 23:34,"968 Cedar St, San Francisco, CA 94016" +226587,27in FHD Monitor,1,149.99,07/25/19 23:21,"941 Hickory St, Boston, MA 02215" +226588,iPhone,1,700,07/30/19 12:07,"209 Wilson St, Atlanta, GA 30301" +226589,AAA Batteries (4-pack),2,2.99,07/31/19 16:53,"237 Maple St, Los Angeles, CA 90001" +226590,34in Ultrawide Monitor,1,379.99,07/24/19 12:00,"753 North St, Portland, OR 97035" +226591,34in Ultrawide Monitor,1,379.99,07/14/19 19:25,"866 7th St, San Francisco, CA 94016" +226592,34in Ultrawide Monitor,1,379.99,07/23/19 18:56,"592 Main St, San Francisco, CA 94016" +226592,ThinkPad Laptop,1,999.99,07/23/19 18:56,"592 Main St, San Francisco, CA 94016" +226593,ThinkPad Laptop,1,999.99,07/05/19 09:15,"118 Pine St, San Francisco, CA 94016" +226594,USB-C Charging Cable,1,11.95,07/23/19 21:43,"750 Wilson St, Los Angeles, CA 90001" +226594,Apple Airpods Headphones,1,150,07/23/19 21:43,"750 Wilson St, Los Angeles, CA 90001" +226595,Flatscreen TV,1,300,07/06/19 16:09,"281 10th St, San Francisco, CA 94016" +226596,Lightning Charging Cable,1,14.95,07/19/19 15:07,"689 Jackson St, San Francisco, CA 94016" +226597,USB-C Charging Cable,1,11.95,07/23/19 07:25,"505 13th St, Boston, MA 02215" +226598,iPhone,1,700,07/24/19 19:59,"16 Center St, San Francisco, CA 94016" +226598,Lightning Charging Cable,1,14.95,07/24/19 19:59,"16 Center St, San Francisco, CA 94016" +226599,USB-C Charging Cable,1,11.95,07/21/19 15:56,"876 Dogwood St, New York City, NY 10001" +226600,Apple Airpods Headphones,1,150,07/20/19 08:43,"433 Meadow St, New York City, NY 10001" +226601,AAA Batteries (4-pack),1,2.99,07/28/19 18:41,"201 8th St, Atlanta, GA 30301" +226602,AAA Batteries (4-pack),1,2.99,07/12/19 10:31,"400 12th St, Seattle, WA 98101" +226603,Macbook Pro Laptop,1,1700,07/01/19 20:42,"564 Jackson St, Los Angeles, CA 90001" +226603,AAA Batteries (4-pack),3,2.99,07/01/19 20:42,"564 Jackson St, Los Angeles, CA 90001" +226604,iPhone,1,700,07/29/19 20:07,"914 Meadow St, New York City, NY 10001" +226605,Apple Airpods Headphones,1,150,07/04/19 01:59,"429 Jackson St, Boston, MA 02215" +226606,USB-C Charging Cable,1,11.95,07/03/19 20:30,"617 8th St, New York City, NY 10001" +226607,Flatscreen TV,1,300,07/20/19 21:11,"213 Highland St, Los Angeles, CA 90001" +226608,Apple Airpods Headphones,1,150,07/24/19 10:43,"799 River St, San Francisco, CA 94016" +226609,Apple Airpods Headphones,1,150,07/02/19 12:02,"787 Cedar St, Dallas, TX 75001" +226610,20in Monitor,1,109.99,07/28/19 18:56,"770 11th St, San Francisco, CA 94016" +226611,USB-C Charging Cable,2,11.95,07/31/19 12:25,"580 9th St, San Francisco, CA 94016" +226612,iPhone,1,700,07/26/19 18:51,"675 Lincoln St, San Francisco, CA 94016" +226613,Wired Headphones,1,11.99,07/31/19 09:34,"328 Wilson St, San Francisco, CA 94016" +226614,Lightning Charging Cable,1,14.95,07/19/19 11:31,"458 Adams St, Los Angeles, CA 90001" +226615,Wired Headphones,1,11.99,07/14/19 21:58,"394 Main St, San Francisco, CA 94016" +226616,Bose SoundSport Headphones,1,99.99,07/07/19 10:32,"549 Main St, Los Angeles, CA 90001" +226617,Wired Headphones,1,11.99,07/10/19 21:05,"464 Johnson St, Portland, OR 97035" +226618,27in 4K Gaming Monitor,1,389.99,07/28/19 20:59,"447 Maple St, Austin, TX 73301" +226619,Wired Headphones,1,11.99,07/29/19 16:25,"719 6th St, New York City, NY 10001" +226620,Lightning Charging Cable,1,14.95,07/14/19 12:53,"480 South St, San Francisco, CA 94016" +226621,Macbook Pro Laptop,1,1700,07/28/19 07:27,"215 6th St, San Francisco, CA 94016" +226622,AA Batteries (4-pack),2,3.84,07/19/19 19:19,"776 West St, Seattle, WA 98101" +226623,27in FHD Monitor,1,149.99,07/03/19 09:59,"743 Johnson St, Seattle, WA 98101" +226624,Macbook Pro Laptop,1,1700,07/13/19 11:23,"279 Highland St, Seattle, WA 98101" +226625,AAA Batteries (4-pack),1,2.99,07/15/19 20:20,"40 Willow St, Atlanta, GA 30301" +226626,Wired Headphones,1,11.99,07/01/19 17:49,"921 13th St, San Francisco, CA 94016" +226627,Google Phone,1,600,07/03/19 18:57,"418 2nd St, Seattle, WA 98101" +226628,Lightning Charging Cable,1,14.95,07/20/19 18:20,"643 11th St, Austin, TX 73301" +226629,AAA Batteries (4-pack),2,2.99,07/10/19 07:37,"555 North St, Portland, OR 97035" +226630,Macbook Pro Laptop,1,1700,07/30/19 04:31,"683 Wilson St, New York City, NY 10001" +226631,Lightning Charging Cable,1,14.95,07/07/19 15:20,"240 Wilson St, Los Angeles, CA 90001" +226632,AAA Batteries (4-pack),1,2.99,07/03/19 15:07,"130 West St, Boston, MA 02215" +226633,iPhone,1,700,07/21/19 19:33,"811 1st St, San Francisco, CA 94016" +226634,Wired Headphones,1,11.99,07/21/19 19:43,"119 Johnson St, Portland, OR 97035" +226635,34in Ultrawide Monitor,1,379.99,07/28/19 07:50,"328 Sunset St, San Francisco, CA 94016" +226636,USB-C Charging Cable,1,11.95,07/09/19 13:03,"866 Chestnut St, Austin, TX 73301" +226637,27in FHD Monitor,1,149.99,07/13/19 21:19,"847 13th St, Boston, MA 02215" +226638,Lightning Charging Cable,1,14.95,07/14/19 13:37,"359 Cedar St, San Francisco, CA 94016" +226639,20in Monitor,1,109.99,07/03/19 16:58,"439 Cedar St, San Francisco, CA 94016" +226640,AA Batteries (4-pack),1,3.84,07/20/19 18:33,"100 1st St, San Francisco, CA 94016" +226641,AAA Batteries (4-pack),1,2.99,07/05/19 14:07,"767 4th St, San Francisco, CA 94016" +226642,ThinkPad Laptop,1,999.99,07/12/19 13:12,"119 4th St, San Francisco, CA 94016" +226643,Lightning Charging Cable,1,14.95,07/21/19 07:36,"488 North St, Austin, TX 73301" +226644,AA Batteries (4-pack),1,3.84,07/24/19 14:14,"905 11th St, Atlanta, GA 30301" +226645,Wired Headphones,1,11.99,07/22/19 10:31,"838 Chestnut St, Atlanta, GA 30301" +226646,Bose SoundSport Headphones,1,99.99,07/07/19 17:51,"637 Main St, New York City, NY 10001" +226647,AAA Batteries (4-pack),2,2.99,07/23/19 17:14,"149 Pine St, Los Angeles, CA 90001" +226648,ThinkPad Laptop,1,999.99,07/06/19 08:09,"892 Forest St, Boston, MA 02215" +226649,Apple Airpods Headphones,1,150,07/17/19 17:59,"411 River St, Boston, MA 02215" +226650,34in Ultrawide Monitor,1,379.99,07/05/19 18:23,"63 Meadow St, San Francisco, CA 94016" +226651,USB-C Charging Cable,1,11.95,07/02/19 14:23,"708 Pine St, Portland, OR 97035" +226652,USB-C Charging Cable,1,11.95,07/11/19 22:45,"344 Jackson St, Los Angeles, CA 90001" +226653,27in FHD Monitor,1,149.99,07/28/19 21:17,"806 Chestnut St, Seattle, WA 98101" +226654,USB-C Charging Cable,1,11.95,07/28/19 19:06,"62 River St, San Francisco, CA 94016" +226655,Bose SoundSport Headphones,1,99.99,07/19/19 09:48,"971 Willow St, New York City, NY 10001" +226656,Flatscreen TV,1,300,07/04/19 17:28,"866 South St, Boston, MA 02215" +226657,Bose SoundSport Headphones,1,99.99,07/02/19 22:29,"824 4th St, Austin, TX 73301" +226658,AAA Batteries (4-pack),1,2.99,07/18/19 11:22,"945 Wilson St, New York City, NY 10001" +226659,AAA Batteries (4-pack),2,2.99,07/04/19 11:35,"969 12th St, Atlanta, GA 30301" +226660,iPhone,1,700,07/18/19 00:15,"265 Church St, San Francisco, CA 94016" +226660,Lightning Charging Cable,1,14.95,07/18/19 00:15,"265 Church St, San Francisco, CA 94016" +226660,Wired Headphones,1,11.99,07/18/19 00:15,"265 Church St, San Francisco, CA 94016" +226661,iPhone,1,700,07/04/19 19:09,"634 Madison St, San Francisco, CA 94016" +226662,Wired Headphones,1,11.99,07/05/19 23:07,"13 Park St, San Francisco, CA 94016" +226663,AA Batteries (4-pack),1,3.84,07/14/19 16:48,"284 Elm St, Portland, OR 97035" +226664,Bose SoundSport Headphones,1,99.99,07/30/19 06:49,"596 Hickory St, New York City, NY 10001" +226665,Flatscreen TV,1,300,07/20/19 05:31,"732 Main St, New York City, NY 10001" +226666,Wired Headphones,1,11.99,07/14/19 20:38,"50 Dogwood St, Los Angeles, CA 90001" +226667,Macbook Pro Laptop,1,1700,07/29/19 18:39,"666 Cherry St, Los Angeles, CA 90001" +226668,AA Batteries (4-pack),1,3.84,07/07/19 16:49,"69 Jefferson St, San Francisco, CA 94016" +226669,USB-C Charging Cable,1,11.95,07/23/19 13:10,"72 Hill St, Dallas, TX 75001" +226670,Wired Headphones,1,11.99,07/23/19 06:56,"346 Hickory St, Seattle, WA 98101" +226671,AA Batteries (4-pack),1,3.84,07/15/19 11:11,"465 Dogwood St, Los Angeles, CA 90001" +226672,AAA Batteries (4-pack),2,2.99,07/24/19 20:20,"85 5th St, Dallas, TX 75001" +226673,AAA Batteries (4-pack),3,2.99,07/16/19 17:28,"360 4th St, New York City, NY 10001" +226674,LG Dryer,1,600.0,07/05/19 11:22,"418 West St, Boston, MA 02215" +226675,34in Ultrawide Monitor,1,379.99,07/09/19 13:09,"739 8th St, Dallas, TX 75001" +226676,Bose SoundSport Headphones,1,99.99,07/25/19 22:24,"736 Forest St, Los Angeles, CA 90001" +226677,Apple Airpods Headphones,1,150,07/13/19 12:38,"737 7th St, New York City, NY 10001" +226678,Apple Airpods Headphones,1,150,07/09/19 23:35,"175 Main St, San Francisco, CA 94016" +226679,USB-C Charging Cable,1,11.95,07/29/19 08:43,"959 14th St, Los Angeles, CA 90001" +226680,27in 4K Gaming Monitor,1,389.99,07/21/19 21:44,"571 West St, New York City, NY 10001" +226681,AAA Batteries (4-pack),1,2.99,07/21/19 17:16,"882 Meadow St, San Francisco, CA 94016" +226682,AAA Batteries (4-pack),1,2.99,07/19/19 17:47,"452 Main St, Los Angeles, CA 90001" +226683,Lightning Charging Cable,1,14.95,07/09/19 08:04,"983 Cherry St, Boston, MA 02215" +226684,AA Batteries (4-pack),1,3.84,07/09/19 08:31,"240 14th St, San Francisco, CA 94016" +226685,Lightning Charging Cable,1,14.95,07/16/19 21:54,"836 Cherry St, Austin, TX 73301" +226686,Apple Airpods Headphones,1,150,07/30/19 20:58,"434 Maple St, New York City, NY 10001" +226687,USB-C Charging Cable,1,11.95,07/28/19 13:13,"906 Jefferson St, Atlanta, GA 30301" +226688,AA Batteries (4-pack),1,3.84,07/20/19 16:23,"216 11th St, Los Angeles, CA 90001" +226689,USB-C Charging Cable,1,11.95,07/10/19 20:37,"480 Sunset St, Atlanta, GA 30301" +226690,USB-C Charging Cable,1,11.95,07/01/19 21:11,"274 Willow St, Atlanta, GA 30301" +226691,Wired Headphones,2,11.99,07/15/19 19:22,"227 Maple St, San Francisco, CA 94016" +226692,Wired Headphones,2,11.99,07/30/19 13:28,"71 13th St, Atlanta, GA 30301" +226693,Apple Airpods Headphones,1,150,07/20/19 11:19,"122 Lakeview St, Boston, MA 02215" +226694,Apple Airpods Headphones,1,150,07/14/19 18:44,"314 Hill St, San Francisco, CA 94016" +226695,Macbook Pro Laptop,1,1700,07/05/19 13:45,"880 Walnut St, San Francisco, CA 94016" +226696,AA Batteries (4-pack),1,3.84,07/05/19 17:34,"408 9th St, Los Angeles, CA 90001" +226697,Wired Headphones,1,11.99,07/10/19 10:04,"485 6th St, New York City, NY 10001" +226698,ThinkPad Laptop,1,999.99,07/25/19 14:09,"313 Chestnut St, Los Angeles, CA 90001" +226699,Wired Headphones,4,11.99,07/22/19 20:22,"311 13th St, San Francisco, CA 94016" +226700,Lightning Charging Cable,1,14.95,07/23/19 13:32,"533 10th St, Los Angeles, CA 90001" +226701,Wired Headphones,1,11.99,07/02/19 12:23,"716 12th St, Austin, TX 73301" +226702,AAA Batteries (4-pack),2,2.99,07/18/19 19:43,"472 Spruce St, New York City, NY 10001" +226703,AA Batteries (4-pack),1,3.84,07/29/19 13:42,"386 Forest St, Atlanta, GA 30301" +226704,USB-C Charging Cable,1,11.95,07/20/19 09:19,"956 12th St, San Francisco, CA 94016" +226705,Wired Headphones,1,11.99,07/31/19 20:21,"935 Wilson St, San Francisco, CA 94016" +226706,iPhone,1,700,07/27/19 09:47,"355 Wilson St, Atlanta, GA 30301" +226707,Apple Airpods Headphones,1,150,07/06/19 10:26,"145 11th St, New York City, NY 10001" +226708,iPhone,1,700,07/22/19 19:20,"964 Lakeview St, Dallas, TX 75001" +226709,AA Batteries (4-pack),1,3.84,07/04/19 13:39,"443 Ridge St, Seattle, WA 98101" +226710,Wired Headphones,1,11.99,07/19/19 13:29,"153 Forest St, Atlanta, GA 30301" +226711,27in 4K Gaming Monitor,1,389.99,07/14/19 01:57,"973 Highland St, San Francisco, CA 94016" +226712,Apple Airpods Headphones,1,150,07/02/19 12:37,"275 Spruce St, Dallas, TX 75001" +226713,Wired Headphones,1,11.99,07/25/19 06:06,"852 Washington St, Dallas, TX 75001" +226714,iPhone,1,700,07/07/19 22:22,"482 13th St, San Francisco, CA 94016" +226714,Lightning Charging Cable,1,14.95,07/07/19 22:22,"482 13th St, San Francisco, CA 94016" +226715,Vareebadd Phone,1,400,07/30/19 14:32,"396 13th St, Dallas, TX 75001" +226716,iPhone,1,700,07/29/19 18:53,"293 Highland St, Austin, TX 73301" +226717,Lightning Charging Cable,1,14.95,07/22/19 09:42,"767 12th St, Portland, OR 97035" +226718,Wired Headphones,1,11.99,07/26/19 19:43,"928 Cherry St, Atlanta, GA 30301" +226719,AA Batteries (4-pack),1,3.84,07/19/19 19:57,"900 Willow St, Austin, TX 73301" +226720,AA Batteries (4-pack),1,3.84,07/04/19 19:23,"555 Cedar St, Seattle, WA 98101" +226721,AAA Batteries (4-pack),1,2.99,07/01/19 15:20,"758 Lakeview St, Los Angeles, CA 90001" +226722,Bose SoundSport Headphones,1,99.99,07/17/19 17:28,"882 Chestnut St, Austin, TX 73301" +226723,USB-C Charging Cable,1,11.95,07/15/19 13:54,"280 Elm St, Los Angeles, CA 90001" +226724,AA Batteries (4-pack),1,3.84,07/26/19 16:23,"764 Chestnut St, Dallas, TX 75001" +226725,AA Batteries (4-pack),2,3.84,07/03/19 06:14,"700 Ridge St, New York City, NY 10001" +226726,Lightning Charging Cable,1,14.95,07/10/19 13:25,"224 Chestnut St, Dallas, TX 75001" +226727,Wired Headphones,1,11.99,07/14/19 17:34,"109 1st St, San Francisco, CA 94016" +226728,27in FHD Monitor,1,149.99,07/20/19 14:55,"769 Cedar St, Portland, OR 97035" +226729,AA Batteries (4-pack),2,3.84,07/02/19 13:20,"606 West St, Seattle, WA 98101" +226730,AA Batteries (4-pack),4,3.84,07/26/19 12:33,"620 Hickory St, San Francisco, CA 94016" +226731,AAA Batteries (4-pack),2,2.99,07/27/19 20:19,"705 Park St, Dallas, TX 75001" +226732,AAA Batteries (4-pack),1,2.99,07/05/19 22:29,"412 Washington St, San Francisco, CA 94016" +226733,USB-C Charging Cable,1,11.95,07/18/19 19:38,"810 Sunset St, San Francisco, CA 94016" +226734,Lightning Charging Cable,1,14.95,07/28/19 13:56,"456 Washington St, Boston, MA 02215" +226735,27in FHD Monitor,1,149.99,07/15/19 12:38,"937 Cedar St, Dallas, TX 75001" +226736,AAA Batteries (4-pack),1,2.99,07/16/19 19:16,"949 11th St, Seattle, WA 98101" +226737,Wired Headphones,1,11.99,07/16/19 22:49,"40 Willow St, Seattle, WA 98101" +226738,Lightning Charging Cable,1,14.95,07/10/19 14:00,"49 Sunset St, New York City, NY 10001" +226739,USB-C Charging Cable,1,11.95,07/17/19 20:25,"514 Dogwood St, Los Angeles, CA 90001" +226740,USB-C Charging Cable,1,11.95,07/03/19 17:30,"18 9th St, Portland, OR 97035" +226741,AA Batteries (4-pack),1,3.84,07/09/19 17:37,"359 Hickory St, Los Angeles, CA 90001" +226742,Wired Headphones,1,11.99,07/01/19 07:52,"627 Cherry St, San Francisco, CA 94016" +226743,Macbook Pro Laptop,1,1700,07/13/19 11:04,"452 Center St, Los Angeles, CA 90001" +226744,USB-C Charging Cable,1,11.95,07/01/19 11:47,"989 7th St, Portland, OR 97035" +226745,AA Batteries (4-pack),1,3.84,07/13/19 09:26,"209 River St, Los Angeles, CA 90001" +226746,USB-C Charging Cable,1,11.95,07/16/19 13:25,"177 Church St, Los Angeles, CA 90001" +226747,AAA Batteries (4-pack),1,2.99,07/17/19 15:32,"407 Forest St, Dallas, TX 75001" +226748,USB-C Charging Cable,1,11.95,07/16/19 11:57,"340 Lake St, Portland, OR 97035" +226749,Bose SoundSport Headphones,1,99.99,07/29/19 14:55,"899 12th St, Los Angeles, CA 90001" +226750,34in Ultrawide Monitor,1,379.99,07/28/19 10:03,"416 Spruce St, San Francisco, CA 94016" +226751,iPhone,1,700,07/20/19 15:55,"986 Center St, Los Angeles, CA 90001" +226752,Lightning Charging Cable,2,14.95,07/09/19 15:31,"985 Church St, Portland, OR 97035" +226753,Bose SoundSport Headphones,1,99.99,07/26/19 21:57,"303 9th St, New York City, NY 10001" +226754,Wired Headphones,1,11.99,07/05/19 10:37,"948 Lincoln St, Dallas, TX 75001" +226755,Flatscreen TV,1,300,07/10/19 20:38,"863 Meadow St, Portland, ME 04101" +226756,AA Batteries (4-pack),1,3.84,07/21/19 08:33,"885 8th St, New York City, NY 10001" +226757,USB-C Charging Cable,1,11.95,07/18/19 22:07,"906 Hill St, Boston, MA 02215" +226758,Flatscreen TV,1,300,07/28/19 05:27,"480 8th St, Los Angeles, CA 90001" +226758,Lightning Charging Cable,1,14.95,07/28/19 05:27,"480 8th St, Los Angeles, CA 90001" +226759,USB-C Charging Cable,1,11.95,07/12/19 12:24,"341 West St, Portland, OR 97035" +226760,Wired Headphones,1,11.99,07/05/19 21:47,"631 6th St, New York City, NY 10001" +226761,34in Ultrawide Monitor,1,379.99,07/02/19 21:48,"894 Main St, New York City, NY 10001" +226762,USB-C Charging Cable,1,11.95,07/07/19 11:08,"230 Jackson St, San Francisco, CA 94016" +226763,USB-C Charging Cable,1,11.95,07/18/19 21:47,"14 Wilson St, Los Angeles, CA 90001" +226764,Lightning Charging Cable,1,14.95,07/24/19 13:44,"991 Dogwood St, Los Angeles, CA 90001" +226765,AA Batteries (4-pack),1,3.84,07/16/19 09:44,"973 Madison St, Austin, TX 73301" +226766,Google Phone,1,600,07/05/19 12:33,"173 Ridge St, Atlanta, GA 30301" +226767,USB-C Charging Cable,1,11.95,07/08/19 20:25,"30 River St, Boston, MA 02215" +226768,Wired Headphones,1,11.99,07/22/19 23:27,"84 Madison St, San Francisco, CA 94016" +226769,AA Batteries (4-pack),2,3.84,07/06/19 20:31,"874 Spruce St, Atlanta, GA 30301" +226769,USB-C Charging Cable,2,11.95,07/06/19 20:31,"874 Spruce St, Atlanta, GA 30301" +226770,AAA Batteries (4-pack),1,2.99,07/08/19 08:03,"686 Cherry St, San Francisco, CA 94016" +226771,Apple Airpods Headphones,1,150,07/18/19 15:37,"992 Adams St, Seattle, WA 98101" +226772,AA Batteries (4-pack),3,3.84,07/15/19 12:32,"130 Sunset St, Los Angeles, CA 90001" +226773,Macbook Pro Laptop,1,1700,07/19/19 10:43,"93 Willow St, Boston, MA 02215" +226774,USB-C Charging Cable,1,11.95,07/26/19 03:45,"565 Hickory St, San Francisco, CA 94016" +226775,USB-C Charging Cable,1,11.95,07/06/19 10:40,"367 Forest St, San Francisco, CA 94016" +226776,Bose SoundSport Headphones,1,99.99,07/24/19 10:30,"38 8th St, Boston, MA 02215" +226777,Flatscreen TV,1,300,07/17/19 22:53,"853 Cedar St, Seattle, WA 98101" +226778,34in Ultrawide Monitor,1,379.99,07/10/19 17:20,"504 Walnut St, Portland, OR 97035" +226779,iPhone,1,700,07/06/19 15:23,"11 Meadow St, Boston, MA 02215" +226780,Lightning Charging Cable,1,14.95,07/15/19 12:43,"731 Johnson St, San Francisco, CA 94016" +226781,Wired Headphones,1,11.99,07/29/19 18:50,"562 North St, New York City, NY 10001" +,,,,, +226782,AAA Batteries (4-pack),2,2.99,07/10/19 09:05,"281 2nd St, Seattle, WA 98101" +226782,USB-C Charging Cable,1,11.95,07/10/19 09:05,"281 2nd St, Seattle, WA 98101" +226783,Lightning Charging Cable,1,14.95,07/15/19 18:12,"72 Lincoln St, San Francisco, CA 94016" +226784,iPhone,1,700,07/17/19 13:23,"847 Meadow St, Atlanta, GA 30301" +226784,Lightning Charging Cable,1,14.95,07/17/19 13:23,"847 Meadow St, Atlanta, GA 30301" +226785,ThinkPad Laptop,1,999.99,07/16/19 19:47,"463 Church St, New York City, NY 10001" +226786,Vareebadd Phone,1,400,07/29/19 09:59,"369 4th St, San Francisco, CA 94016" +226787,USB-C Charging Cable,1,11.95,07/17/19 23:39,"789 Hill St, Atlanta, GA 30301" +226788,Lightning Charging Cable,1,14.95,07/02/19 18:34,"662 West St, Dallas, TX 75001" +226789,USB-C Charging Cable,1,11.95,07/10/19 19:24,"615 Lake St, San Francisco, CA 94016" +226790,Lightning Charging Cable,1,14.95,07/23/19 10:12,"258 Chestnut St, San Francisco, CA 94016" +226791,27in FHD Monitor,1,149.99,07/28/19 13:28,"932 Cherry St, New York City, NY 10001" +226792,AAA Batteries (4-pack),1,2.99,07/31/19 12:54,"120 11th St, New York City, NY 10001" +226793,AAA Batteries (4-pack),1,2.99,07/21/19 16:59,"416 12th St, San Francisco, CA 94016" +226794,Lightning Charging Cable,1,14.95,07/19/19 14:43,"109 10th St, Portland, ME 04101" +226795,USB-C Charging Cable,1,11.95,07/01/19 18:48,"330 Center St, Atlanta, GA 30301" +226796,Apple Airpods Headphones,1,150,07/12/19 00:12,"993 6th St, Seattle, WA 98101" +226797,USB-C Charging Cable,1,11.95,07/06/19 19:39,"294 4th St, San Francisco, CA 94016" +226798,AA Batteries (4-pack),2,3.84,07/15/19 05:32,"787 Church St, Los Angeles, CA 90001" +226799,AAA Batteries (4-pack),1,2.99,07/22/19 15:22,"367 2nd St, Boston, MA 02215" +226800,Flatscreen TV,1,300,07/06/19 23:11,"16 11th St, New York City, NY 10001" +226801,Bose SoundSport Headphones,1,99.99,07/13/19 22:23,"755 River St, Austin, TX 73301" +226802,Apple Airpods Headphones,1,150,07/31/19 18:35,"943 10th St, Atlanta, GA 30301" +226803,AA Batteries (4-pack),1,3.84,07/06/19 16:44,"540 Dogwood St, Austin, TX 73301" +226804,AA Batteries (4-pack),1,3.84,07/22/19 15:08,"788 Maple St, San Francisco, CA 94016" +226805,AAA Batteries (4-pack),1,2.99,07/02/19 14:02,"921 North St, New York City, NY 10001" +226806,Flatscreen TV,1,300,07/03/19 21:55,"902 Hickory St, Dallas, TX 75001" +226807,ThinkPad Laptop,1,999.99,07/27/19 19:32,"839 Chestnut St, Dallas, TX 75001" +226808,Lightning Charging Cable,1,14.95,07/25/19 09:42,"193 Madison St, Boston, MA 02215" +226809,AA Batteries (4-pack),1,3.84,07/04/19 21:48,"637 1st St, San Francisco, CA 94016" +226810,Apple Airpods Headphones,1,150,07/02/19 14:42,"709 West St, Seattle, WA 98101" +226811,Lightning Charging Cable,1,14.95,07/13/19 13:30,"450 Pine St, San Francisco, CA 94016" +226812,34in Ultrawide Monitor,1,379.99,07/25/19 08:40,"294 5th St, Los Angeles, CA 90001" +226813,27in FHD Monitor,1,149.99,07/26/19 13:52,"991 8th St, Dallas, TX 75001" +226814,LG Washing Machine,1,600.0,07/11/19 09:13,"969 Park St, San Francisco, CA 94016" +226815,AAA Batteries (4-pack),1,2.99,07/28/19 07:59,"444 Main St, Los Angeles, CA 90001" +226816,Lightning Charging Cable,1,14.95,07/16/19 12:11,"612 Ridge St, New York City, NY 10001" +226817,Wired Headphones,1,11.99,07/06/19 20:15,"537 Madison St, Los Angeles, CA 90001" +226818,Apple Airpods Headphones,1,150,07/26/19 00:19,"936 Main St, Los Angeles, CA 90001" +226819,AAA Batteries (4-pack),1,2.99,07/26/19 08:50,"271 River St, New York City, NY 10001" +226820,Wired Headphones,1,11.99,07/21/19 17:38,"599 Elm St, Atlanta, GA 30301" +226821,Apple Airpods Headphones,1,150,07/03/19 15:06,"694 4th St, Atlanta, GA 30301" +226822,Wired Headphones,1,11.99,07/14/19 20:25,"2 Jackson St, Austin, TX 73301" +226823,Flatscreen TV,1,300,07/06/19 16:35,"5 5th St, Dallas, TX 75001" +226824,27in FHD Monitor,1,149.99,07/16/19 14:25,"413 Hickory St, Los Angeles, CA 90001" +226825,Apple Airpods Headphones,1,150,07/16/19 11:15,"867 Highland St, Dallas, TX 75001" +226826,AA Batteries (4-pack),2,3.84,07/01/19 20:55,"583 Church St, Boston, MA 02215" +226827,27in 4K Gaming Monitor,1,389.99,07/30/19 17:16,"949 Lakeview St, San Francisco, CA 94016" +226828,Wired Headphones,1,11.99,07/09/19 10:41,"912 South St, Atlanta, GA 30301" +226829,Bose SoundSport Headphones,1,99.99,07/17/19 21:58,"382 Lincoln St, New York City, NY 10001" +226830,USB-C Charging Cable,1,11.95,07/29/19 14:24,"810 2nd St, Portland, OR 97035" +226831,AAA Batteries (4-pack),4,2.99,07/23/19 20:51,"331 River St, Dallas, TX 75001" +226832,AA Batteries (4-pack),2,3.84,07/14/19 14:25,"92 Cherry St, Atlanta, GA 30301" +226833,USB-C Charging Cable,1,11.95,07/11/19 13:17,"48 Hill St, Dallas, TX 75001" +226834,USB-C Charging Cable,2,11.95,07/02/19 17:44,"303 Church St, Portland, OR 97035" +226835,Lightning Charging Cable,1,14.95,07/24/19 14:19,"417 1st St, San Francisco, CA 94016" +226836,USB-C Charging Cable,1,11.95,07/18/19 09:58,"146 1st St, New York City, NY 10001" +226837,ThinkPad Laptop,1,999.99,07/02/19 21:14,"664 Lincoln St, Portland, OR 97035" +226838,Lightning Charging Cable,1,14.95,07/28/19 10:41,"362 5th St, New York City, NY 10001" +226839,AAA Batteries (4-pack),2,2.99,07/21/19 15:57,"125 Cherry St, Dallas, TX 75001" +226840,Macbook Pro Laptop,1,1700,07/18/19 20:02,"7 Hickory St, Boston, MA 02215" +226841,34in Ultrawide Monitor,1,379.99,07/29/19 13:24,"933 10th St, Boston, MA 02215" +226842,AAA Batteries (4-pack),2,2.99,07/08/19 12:35,"701 Center St, San Francisco, CA 94016" +226843,USB-C Charging Cable,1,11.95,07/17/19 16:52,"27 8th St, New York City, NY 10001" +226844,27in FHD Monitor,1,149.99,07/02/19 08:45,"809 Elm St, Seattle, WA 98101" +226845,USB-C Charging Cable,1,11.95,07/08/19 19:27,"138 Hill St, Atlanta, GA 30301" +226846,USB-C Charging Cable,1,11.95,07/22/19 23:02,"650 West St, Seattle, WA 98101" +226847,Wired Headphones,1,11.99,07/11/19 21:05,"397 Lincoln St, San Francisco, CA 94016" +226848,27in 4K Gaming Monitor,1,389.99,07/22/19 13:52,"749 Main St, San Francisco, CA 94016" +226849,Lightning Charging Cable,1,14.95,07/05/19 10:36,"437 Park St, Atlanta, GA 30301" +226850,AAA Batteries (4-pack),1,2.99,07/02/19 13:12,"190 Johnson St, Portland, OR 97035" +226851,27in FHD Monitor,1,149.99,07/01/19 19:31,"742 Adams St, San Francisco, CA 94016" +226852,Google Phone,1,600,07/01/19 14:57,"7 Center St, Los Angeles, CA 90001" +226853,USB-C Charging Cable,1,11.95,07/10/19 23:47,"600 Adams St, San Francisco, CA 94016" +226854,ThinkPad Laptop,1,999.99,07/07/19 01:19,"21 Forest St, New York City, NY 10001" +226855,27in 4K Gaming Monitor,1,389.99,07/15/19 22:13,"157 6th St, Portland, ME 04101" +226856,Wired Headphones,1,11.99,07/29/19 07:40,"631 7th St, Los Angeles, CA 90001" +226857,AA Batteries (4-pack),1,3.84,07/07/19 11:41,"488 Forest St, Dallas, TX 75001" +226858,AAA Batteries (4-pack),1,2.99,07/10/19 11:32,"45 7th St, San Francisco, CA 94016" +226859,27in 4K Gaming Monitor,1,389.99,07/10/19 12:25,"559 Highland St, San Francisco, CA 94016" +226860,Wired Headphones,1,11.99,07/26/19 15:31,"337 South St, Dallas, TX 75001" +226861,USB-C Charging Cable,1,11.95,07/01/19 07:50,"515 Park St, Portland, OR 97035" +226862,USB-C Charging Cable,1,11.95,07/20/19 10:03,"724 Walnut St, New York City, NY 10001" +226863,AAA Batteries (4-pack),1,2.99,07/23/19 15:49,"379 West St, New York City, NY 10001" +226864,USB-C Charging Cable,1,11.95,07/19/19 14:14,"73 Lakeview St, Dallas, TX 75001" +226865,AAA Batteries (4-pack),1,2.99,07/17/19 12:12,"137 Johnson St, Dallas, TX 75001" +226866,Lightning Charging Cable,1,14.95,07/16/19 23:02,"719 Meadow St, San Francisco, CA 94016" +226867,Vareebadd Phone,1,400,07/30/19 13:33,"568 12th St, New York City, NY 10001" +226868,Lightning Charging Cable,1,14.95,07/12/19 08:15,"319 5th St, Boston, MA 02215" +226869,34in Ultrawide Monitor,1,379.99,07/28/19 17:32,"313 Madison St, Seattle, WA 98101" +226870,Lightning Charging Cable,1,14.95,07/04/19 14:09,"239 14th St, San Francisco, CA 94016" +226870,AA Batteries (4-pack),1,3.84,07/04/19 14:09,"239 14th St, San Francisco, CA 94016" +226871,Flatscreen TV,1,300,07/07/19 19:52,"419 River St, Atlanta, GA 30301" +226872,Flatscreen TV,1,300,07/10/19 20:16,"187 2nd St, Los Angeles, CA 90001" +226873,AAA Batteries (4-pack),1,2.99,07/28/19 22:11,"808 Hickory St, Boston, MA 02215" +226874,Lightning Charging Cable,1,14.95,07/03/19 19:59,"733 Lake St, Los Angeles, CA 90001" +226875,Bose SoundSport Headphones,1,99.99,07/09/19 16:48,"51 North St, New York City, NY 10001" +226876,USB-C Charging Cable,1,11.95,07/29/19 00:51,"56 5th St, San Francisco, CA 94016" +226877,AA Batteries (4-pack),2,3.84,07/24/19 11:25,"545 5th St, San Francisco, CA 94016" +226878,USB-C Charging Cable,2,11.95,07/21/19 20:29,"373 Hickory St, Dallas, TX 75001" +226879,AAA Batteries (4-pack),1,2.99,07/25/19 10:38,"66 Johnson St, New York City, NY 10001" +226880,Wired Headphones,1,11.99,07/13/19 15:52,"289 10th St, Los Angeles, CA 90001" +226881,AA Batteries (4-pack),1,3.84,07/24/19 16:18,"841 River St, Austin, TX 73301" +226882,Apple Airpods Headphones,1,150,07/23/19 10:35,"769 Dogwood St, San Francisco, CA 94016" +226883,AA Batteries (4-pack),1,3.84,07/20/19 13:39,"290 Ridge St, Seattle, WA 98101" +226884,USB-C Charging Cable,1,11.95,07/05/19 08:47,"116 Meadow St, Los Angeles, CA 90001" +226885,27in 4K Gaming Monitor,1,389.99,07/28/19 18:20,"100 Meadow St, New York City, NY 10001" +226886,USB-C Charging Cable,1,11.95,07/18/19 11:39,"268 Cherry St, Seattle, WA 98101" +226887,AA Batteries (4-pack),1,3.84,07/19/19 19:22,"769 Wilson St, San Francisco, CA 94016" +226888,Flatscreen TV,1,300,07/23/19 14:50,"868 Forest St, Atlanta, GA 30301" +226889,USB-C Charging Cable,1,11.95,07/27/19 12:25,"142 Main St, Los Angeles, CA 90001" +226890,AAA Batteries (4-pack),1,2.99,07/12/19 20:57,"750 Walnut St, San Francisco, CA 94016" +226891,AAA Batteries (4-pack),3,2.99,07/18/19 13:48,"528 Cherry St, Dallas, TX 75001" +226892,Wired Headphones,1,11.99,07/30/19 11:24,"668 Cedar St, San Francisco, CA 94016" +226893,iPhone,1,700,07/17/19 03:28,"587 Jackson St, Atlanta, GA 30301" +226893,Vareebadd Phone,1,400,07/17/19 03:28,"587 Jackson St, Atlanta, GA 30301" +226894,USB-C Charging Cable,1,11.95,07/23/19 16:15,"270 12th St, Seattle, WA 98101" +226895,AA Batteries (4-pack),2,3.84,07/29/19 07:57,"455 7th St, San Francisco, CA 94016" +226896,USB-C Charging Cable,1,11.95,07/19/19 09:44,"803 13th St, San Francisco, CA 94016" +226897,Bose SoundSport Headphones,1,99.99,07/23/19 19:16,"317 10th St, Boston, MA 02215" +226898,AAA Batteries (4-pack),1,2.99,07/06/19 18:48,"622 Church St, Los Angeles, CA 90001" +226899,Apple Airpods Headphones,1,150,07/13/19 21:28,"552 Walnut St, San Francisco, CA 94016" +226900,Wired Headphones,1,11.99,07/15/19 14:10,"170 Pine St, New York City, NY 10001" +226901,Lightning Charging Cable,1,14.95,07/11/19 12:50,"636 4th St, San Francisco, CA 94016" +226902,USB-C Charging Cable,1,11.95,07/22/19 22:21,"716 Hill St, New York City, NY 10001" +226903,Bose SoundSport Headphones,1,99.99,07/31/19 11:37,"419 4th St, San Francisco, CA 94016" +226904,iPhone,1,700,07/18/19 11:27,"988 Pine St, San Francisco, CA 94016" +226905,Lightning Charging Cable,1,14.95,07/30/19 18:35,"62 Spruce St, Los Angeles, CA 90001" +226905,USB-C Charging Cable,1,11.95,07/30/19 18:35,"62 Spruce St, Los Angeles, CA 90001" +226906,Wired Headphones,1,11.99,07/05/19 23:40,"897 Washington St, Boston, MA 02215" +226907,Apple Airpods Headphones,1,150,07/10/19 21:16,"867 Sunset St, Los Angeles, CA 90001" +226908,34in Ultrawide Monitor,1,379.99,07/19/19 21:38,"191 Church St, New York City, NY 10001" +226909,Wired Headphones,1,11.99,07/14/19 21:11,"458 Pine St, New York City, NY 10001" +226910,USB-C Charging Cable,2,11.95,07/19/19 14:53,"910 Johnson St, Seattle, WA 98101" +226911,Wired Headphones,1,11.99,07/10/19 12:03,"60 10th St, Los Angeles, CA 90001" +226912,USB-C Charging Cable,1,11.95,07/27/19 17:54,"412 Hickory St, Portland, OR 97035" +226913,USB-C Charging Cable,2,11.95,07/15/19 09:06,"448 Chestnut St, San Francisco, CA 94016" +226914,27in FHD Monitor,1,149.99,07/15/19 16:29,"350 Jefferson St, San Francisco, CA 94016" +226915,Wired Headphones,1,11.99,07/11/19 19:52,"104 Wilson St, Dallas, TX 75001" +226916,Wired Headphones,1,11.99,07/24/19 17:13,"208 Wilson St, San Francisco, CA 94016" +226917,Apple Airpods Headphones,1,150,07/28/19 11:27,"428 Pine St, San Francisco, CA 94016" +226918,AA Batteries (4-pack),2,3.84,07/14/19 14:04,"730 8th St, Los Angeles, CA 90001" +226919,USB-C Charging Cable,2,11.95,07/30/19 16:24,"397 Center St, New York City, NY 10001" +226920,Apple Airpods Headphones,1,150,07/11/19 09:46,"24 2nd St, Los Angeles, CA 90001" +226921,Vareebadd Phone,1,400,07/06/19 12:14,"291 1st St, Los Angeles, CA 90001" +226922,AA Batteries (4-pack),1,3.84,07/04/19 12:00,"904 Pine St, Seattle, WA 98101" +226923,Bose SoundSport Headphones,1,99.99,07/07/19 19:09,"396 South St, New York City, NY 10001" +226924,Lightning Charging Cable,1,14.95,07/05/19 08:50,"418 Hill St, Seattle, WA 98101" +226925,Wired Headphones,1,11.99,07/04/19 08:02,"211 North St, Los Angeles, CA 90001" +226926,iPhone,1,700,07/25/19 15:47,"912 Maple St, New York City, NY 10001" +226926,Wired Headphones,1,11.99,07/25/19 15:47,"912 Maple St, New York City, NY 10001" +226927,USB-C Charging Cable,3,11.95,07/16/19 23:43,"343 Main St, San Francisco, CA 94016" +226928,AAA Batteries (4-pack),2,2.99,07/17/19 13:09,"775 South St, Los Angeles, CA 90001" +226929,USB-C Charging Cable,2,11.95,07/25/19 15:38,"536 14th St, San Francisco, CA 94016" +226930,Bose SoundSport Headphones,1,99.99,07/21/19 16:51,"56 Center St, Portland, OR 97035" +226931,Lightning Charging Cable,1,14.95,07/14/19 23:03,"6 River St, San Francisco, CA 94016" +226932,USB-C Charging Cable,1,11.95,07/06/19 18:54,"660 Cherry St, Atlanta, GA 30301" +226933,Lightning Charging Cable,1,14.95,07/02/19 07:04,"91 River St, Boston, MA 02215" +226934,Google Phone,1,600,07/24/19 10:51,"425 7th St, Dallas, TX 75001" +226935,Wired Headphones,2,11.99,07/27/19 13:16,"57 Meadow St, Los Angeles, CA 90001" +226936,USB-C Charging Cable,1,11.95,07/18/19 19:25,"409 Lake St, Dallas, TX 75001" +226937,USB-C Charging Cable,1,11.95,07/27/19 19:07,"927 Hickory St, San Francisco, CA 94016" +226938,27in FHD Monitor,1,149.99,07/27/19 19:27,"688 Johnson St, Atlanta, GA 30301" +226939,27in 4K Gaming Monitor,1,389.99,07/09/19 07:47,"866 Hill St, Boston, MA 02215" +226940,Lightning Charging Cable,1,14.95,07/19/19 07:54,"718 Wilson St, Boston, MA 02215" +226941,Google Phone,1,600,07/29/19 11:55,"377 9th St, San Francisco, CA 94016" +226942,27in FHD Monitor,1,149.99,07/19/19 20:21,"227 Lake St, Los Angeles, CA 90001" +226943,AAA Batteries (4-pack),1,2.99,07/27/19 17:14,"606 7th St, Austin, TX 73301" +226944,Macbook Pro Laptop,1,1700,07/09/19 11:29,"551 Hickory St, Seattle, WA 98101" +226945,USB-C Charging Cable,1,11.95,07/02/19 11:17,"396 2nd St, Austin, TX 73301" +226946,Google Phone,1,600,07/04/19 18:49,"774 11th St, Atlanta, GA 30301" +226947,Lightning Charging Cable,1,14.95,07/23/19 22:35,"76 Meadow St, Atlanta, GA 30301" +226948,AAA Batteries (4-pack),1,2.99,07/06/19 20:38,"621 Church St, New York City, NY 10001" +226949,Google Phone,1,600,07/03/19 16:32,"258 11th St, Los Angeles, CA 90001" +226950,iPhone,1,700,07/20/19 15:47,"90 Maple St, Boston, MA 02215" +226950,Wired Headphones,2,11.99,07/20/19 15:47,"90 Maple St, Boston, MA 02215" +226951,Lightning Charging Cable,1,14.95,07/09/19 17:05,"542 River St, Seattle, WA 98101" +226952,USB-C Charging Cable,2,11.95,07/18/19 10:57,"248 Lakeview St, San Francisco, CA 94016" +226953,34in Ultrawide Monitor,1,379.99,07/08/19 12:13,"819 River St, Atlanta, GA 30301" +226954,20in Monitor,1,109.99,07/29/19 22:07,"545 Cherry St, New York City, NY 10001" +226955,Lightning Charging Cable,1,14.95,07/18/19 18:18,"235 Cedar St, New York City, NY 10001" +226956,Google Phone,1,600,07/20/19 14:27,"166 North St, San Francisco, CA 94016" +226957,USB-C Charging Cable,1,11.95,07/15/19 11:36,"133 Park St, Boston, MA 02215" +226958,Wired Headphones,1,11.99,07/05/19 16:50,"554 1st St, Dallas, TX 75001" +226959,USB-C Charging Cable,1,11.95,07/30/19 09:45,"164 Dogwood St, Portland, OR 97035" +226960,Macbook Pro Laptop,1,1700,07/01/19 18:22,"142 Walnut St, San Francisco, CA 94016" +226961,Apple Airpods Headphones,1,150,07/27/19 22:10,"938 4th St, Los Angeles, CA 90001" +226962,Wired Headphones,1,11.99,07/16/19 13:41,"773 Meadow St, San Francisco, CA 94016" +226963,Lightning Charging Cable,1,14.95,07/13/19 14:39,"542 13th St, San Francisco, CA 94016" +226964,Lightning Charging Cable,1,14.95,07/07/19 11:43,"140 12th St, San Francisco, CA 94016" +226965,AAA Batteries (4-pack),1,2.99,07/29/19 09:03,"913 13th St, Los Angeles, CA 90001" +226966,Apple Airpods Headphones,1,150,07/08/19 07:43,"30 Jefferson St, Los Angeles, CA 90001" +226967,ThinkPad Laptop,1,999.99,07/30/19 19:50,"489 River St, San Francisco, CA 94016" +226968,USB-C Charging Cable,1,11.95,07/19/19 22:30,"517 Sunset St, Boston, MA 02215" +226969,AA Batteries (4-pack),1,3.84,07/05/19 19:39,"208 Park St, New York City, NY 10001" +226970,Flatscreen TV,1,300,07/20/19 09:33,"802 Ridge St, Portland, OR 97035" +226971,Lightning Charging Cable,1,14.95,07/29/19 16:39,"188 Meadow St, San Francisco, CA 94016" +226972,AA Batteries (4-pack),2,3.84,07/23/19 21:03,"708 13th St, San Francisco, CA 94016" +226973,Google Phone,1,600,07/06/19 21:33,"407 North St, Atlanta, GA 30301" +226974,AA Batteries (4-pack),1,3.84,07/28/19 17:18,"841 2nd St, New York City, NY 10001" +226975,27in 4K Gaming Monitor,1,389.99,07/25/19 17:42,"655 11th St, San Francisco, CA 94016" +226976,Lightning Charging Cable,2,14.95,07/23/19 19:59,"229 7th St, Seattle, WA 98101" +226977,34in Ultrawide Monitor,1,379.99,07/10/19 11:43,"198 Lakeview St, Portland, ME 04101" +226978,AA Batteries (4-pack),1,3.84,07/22/19 15:28,"550 South St, San Francisco, CA 94016" +226979,AAA Batteries (4-pack),1,2.99,07/11/19 02:48,"942 4th St, Dallas, TX 75001" +226980,AAA Batteries (4-pack),1,2.99,07/12/19 07:54,"977 Johnson St, Dallas, TX 75001" +226981,27in 4K Gaming Monitor,1,389.99,07/19/19 16:28,"523 Sunset St, Boston, MA 02215" +226982,27in FHD Monitor,1,149.99,07/12/19 13:30,"383 Hill St, New York City, NY 10001" +226983,Google Phone,1,600,07/20/19 10:33,"352 Cedar St, New York City, NY 10001" +226984,USB-C Charging Cable,1,11.95,07/22/19 01:41,"613 Willow St, Atlanta, GA 30301" +226985,USB-C Charging Cable,1,11.95,07/30/19 17:37,"812 10th St, Los Angeles, CA 90001" +226986,iPhone,1,700,07/23/19 00:09,"628 Lakeview St, Seattle, WA 98101" +226986,Lightning Charging Cable,1,14.95,07/23/19 00:09,"628 Lakeview St, Seattle, WA 98101" +226987,Bose SoundSport Headphones,1,99.99,07/17/19 13:28,"662 West St, San Francisco, CA 94016" +226988,USB-C Charging Cable,1,11.95,07/26/19 12:17,"939 6th St, Austin, TX 73301" +226989,AAA Batteries (4-pack),1,2.99,07/16/19 00:33,"184 Spruce St, Atlanta, GA 30301" +226990,AAA Batteries (4-pack),3,2.99,07/23/19 19:07,"510 Lincoln St, San Francisco, CA 94016" +226991,Lightning Charging Cable,1,14.95,07/23/19 07:57,"723 7th St, Dallas, TX 75001" +226992,Google Phone,1,600,07/03/19 01:09,"550 Spruce St, New York City, NY 10001" +226993,20in Monitor,1,109.99,07/31/19 16:43,"645 Lincoln St, New York City, NY 10001" +226994,AA Batteries (4-pack),2,3.84,07/18/19 22:27,"628 Willow St, Seattle, WA 98101" +226995,USB-C Charging Cable,1,11.95,07/06/19 19:42,"637 Meadow St, New York City, NY 10001" +226996,Lightning Charging Cable,1,14.95,07/29/19 06:28,"58 7th St, Dallas, TX 75001" +226997,Wired Headphones,1,11.99,07/18/19 16:32,"135 Lakeview St, San Francisco, CA 94016" +226998,Bose SoundSport Headphones,1,99.99,07/20/19 08:22,"605 Elm St, Los Angeles, CA 90001" +226999,Wired Headphones,1,11.99,07/05/19 09:54,"385 River St, San Francisco, CA 94016" +227000,AA Batteries (4-pack),3,3.84,07/12/19 22:28,"829 12th St, Los Angeles, CA 90001" +227001,Google Phone,1,600,07/09/19 16:12,"190 7th St, Austin, TX 73301" +227002,AAA Batteries (4-pack),3,2.99,07/01/19 10:29,"116 2nd St, Dallas, TX 75001" +227003,Wired Headphones,1,11.99,07/22/19 06:13,"300 Maple St, Los Angeles, CA 90001" +,,,,, +227004,ThinkPad Laptop,1,999.99,07/09/19 22:43,"146 Sunset St, Atlanta, GA 30301" +227005,AAA Batteries (4-pack),1,2.99,07/03/19 12:52,"565 Walnut St, New York City, NY 10001" +227006,Bose SoundSport Headphones,1,99.99,07/06/19 02:14,"656 Spruce St, Los Angeles, CA 90001" +227007,AAA Batteries (4-pack),1,2.99,07/16/19 13:56,"817 River St, San Francisco, CA 94016" +227008,AA Batteries (4-pack),1,3.84,07/21/19 08:00,"599 Lincoln St, San Francisco, CA 94016" +227009,AAA Batteries (4-pack),1,2.99,07/08/19 11:36,"572 Cherry St, San Francisco, CA 94016" +227010,Apple Airpods Headphones,1,150,07/11/19 15:34,"618 Chestnut St, San Francisco, CA 94016" +227011,AA Batteries (4-pack),2,3.84,07/12/19 15:13,"546 Church St, Dallas, TX 75001" +227012,AA Batteries (4-pack),1,3.84,07/02/19 16:28,"258 6th St, Los Angeles, CA 90001" +227013,iPhone,1,700,07/25/19 14:34,"841 Hill St, San Francisco, CA 94016" +227014,Macbook Pro Laptop,1,1700,07/26/19 07:49,"758 2nd St, Dallas, TX 75001" +227015,AA Batteries (4-pack),1,3.84,07/19/19 19:30,"54 Center St, New York City, NY 10001" +227016,USB-C Charging Cable,1,11.95,07/02/19 17:26,"366 Spruce St, Portland, OR 97035" +227017,USB-C Charging Cable,1,11.95,07/22/19 12:29,"159 Meadow St, New York City, NY 10001" +227018,Lightning Charging Cable,1,14.95,07/08/19 11:16,"521 River St, San Francisco, CA 94016" +227019,Wired Headphones,1,11.99,07/06/19 23:27,"322 Main St, San Francisco, CA 94016" +227020,Wired Headphones,1,11.99,07/08/19 01:18,"909 Meadow St, Los Angeles, CA 90001" +227021,Lightning Charging Cable,1,14.95,07/14/19 21:09,"967 Cherry St, Austin, TX 73301" +227022,Lightning Charging Cable,1,14.95,07/29/19 12:30,"764 Willow St, New York City, NY 10001" +227023,Wired Headphones,1,11.99,07/16/19 01:32,"707 10th St, Boston, MA 02215" +227024,Macbook Pro Laptop,1,1700,07/11/19 10:59,"393 Highland St, Boston, MA 02215" +227025,34in Ultrawide Monitor,1,379.99,07/25/19 23:07,"530 Lake St, Los Angeles, CA 90001" +227026,Bose SoundSport Headphones,1,99.99,07/01/19 12:24,"851 Lakeview St, Boston, MA 02215" +227027,AAA Batteries (4-pack),1,2.99,07/09/19 09:30,"100 Dogwood St, Dallas, TX 75001" +227028,ThinkPad Laptop,1,999.99,07/28/19 17:49,"809 9th St, Los Angeles, CA 90001" +227029,34in Ultrawide Monitor,1,379.99,07/09/19 11:24,"795 2nd St, Atlanta, GA 30301" +227030,Lightning Charging Cable,1,14.95,07/13/19 15:10,"261 Lakeview St, Atlanta, GA 30301" +227031,Vareebadd Phone,1,400,07/15/19 14:16,"835 Elm St, Boston, MA 02215" +227031,Bose SoundSport Headphones,1,99.99,07/15/19 14:16,"835 Elm St, Boston, MA 02215" +227031,Wired Headphones,1,11.99,07/15/19 14:16,"835 Elm St, Boston, MA 02215" +227032,Macbook Pro Laptop,1,1700,07/03/19 07:22,"68 Sunset St, Los Angeles, CA 90001" +227033,Lightning Charging Cable,1,14.95,07/11/19 16:44,"257 Johnson St, Dallas, TX 75001" +227034,AA Batteries (4-pack),1,3.84,07/03/19 14:37,"44 Main St, Austin, TX 73301" +227035,Flatscreen TV,1,300,07/27/19 19:39,"790 7th St, San Francisco, CA 94016" +227036,Lightning Charging Cable,1,14.95,07/22/19 16:59,"227 Pine St, San Francisco, CA 94016" +227037,Flatscreen TV,1,300,07/28/19 19:56,"900 Dogwood St, Los Angeles, CA 90001" +227038,Bose SoundSport Headphones,1,99.99,07/11/19 10:56,"635 North St, Boston, MA 02215" +227039,Bose SoundSport Headphones,1,99.99,07/22/19 22:09,"184 Lakeview St, Seattle, WA 98101" +227040,Apple Airpods Headphones,1,150,07/14/19 17:07,"756 Highland St, Dallas, TX 75001" +227041,Wired Headphones,1,11.99,07/29/19 22:56,"18 2nd St, Dallas, TX 75001" +227042,AA Batteries (4-pack),2,3.84,07/07/19 05:59,"304 River St, Los Angeles, CA 90001" +227043,27in 4K Gaming Monitor,1,389.99,07/24/19 15:34,"93 Dogwood St, San Francisco, CA 94016" +227044,Flatscreen TV,1,300,07/04/19 23:28,"226 Spruce St, New York City, NY 10001" +227045,AAA Batteries (4-pack),1,2.99,07/15/19 12:19,"661 5th St, Seattle, WA 98101" +227046,Wired Headphones,1,11.99,07/26/19 14:23,"3 Adams St, Dallas, TX 75001" +227047,AA Batteries (4-pack),1,3.84,07/22/19 17:25,"534 Lake St, Dallas, TX 75001" +227048,USB-C Charging Cable,1,11.95,07/01/19 19:34,"327 North St, Los Angeles, CA 90001" +227049,Wired Headphones,1,11.99,07/25/19 16:00,"244 Walnut St, Seattle, WA 98101" +227050,Lightning Charging Cable,1,14.95,07/03/19 16:29,"282 Elm St, New York City, NY 10001" +227051,Lightning Charging Cable,1,14.95,07/23/19 16:06,"166 Park St, Boston, MA 02215" +227052,Macbook Pro Laptop,1,1700,07/31/19 17:56,"88 Hickory St, San Francisco, CA 94016" +227053,Wired Headphones,1,11.99,07/22/19 23:33,"52 8th St, Dallas, TX 75001" +227054,Bose SoundSport Headphones,1,99.99,07/08/19 20:17,"688 12th St, Dallas, TX 75001" +227055,20in Monitor,1,109.99,07/18/19 12:39,"2 Johnson St, Boston, MA 02215" +227056,20in Monitor,1,109.99,07/10/19 11:25,"942 10th St, Dallas, TX 75001" +227057,USB-C Charging Cable,1,11.95,07/25/19 11:42,"31 Chestnut St, New York City, NY 10001" +227058,20in Monitor,1,109.99,07/02/19 21:35,"753 Johnson St, New York City, NY 10001" +227059,Flatscreen TV,1,300,07/30/19 16:58,"739 North St, Atlanta, GA 30301" +227060,Bose SoundSport Headphones,1,99.99,07/15/19 19:50,"693 Center St, San Francisco, CA 94016" +227061,Lightning Charging Cable,1,14.95,07/28/19 09:40,"393 Hill St, Atlanta, GA 30301" +227062,Wired Headphones,1,11.99,07/26/19 19:43,"143 Willow St, San Francisco, CA 94016" +227063,AAA Batteries (4-pack),1,2.99,07/30/19 18:06,"618 Sunset St, Dallas, TX 75001" +227064,Lightning Charging Cable,1,14.95,07/15/19 03:23,"88 11th St, Austin, TX 73301" +227065,AA Batteries (4-pack),3,3.84,07/12/19 01:47,"494 Cherry St, Dallas, TX 75001" +227066,27in FHD Monitor,1,149.99,07/18/19 17:17,"348 Adams St, San Francisco, CA 94016" +227067,AA Batteries (4-pack),1,3.84,07/21/19 21:10,"538 South St, San Francisco, CA 94016" +227068,27in FHD Monitor,1,149.99,07/15/19 21:18,"932 Main St, San Francisco, CA 94016" +227069,Apple Airpods Headphones,1,150,07/08/19 05:56,"248 2nd St, San Francisco, CA 94016" +227070,Macbook Pro Laptop,1,1700,07/03/19 22:27,"771 Highland St, Boston, MA 02215" +227071,AAA Batteries (4-pack),1,2.99,07/12/19 18:37,"213 Lake St, New York City, NY 10001" +227072,Macbook Pro Laptop,1,1700,07/13/19 18:57,"212 Hickory St, San Francisco, CA 94016" +227073,Bose SoundSport Headphones,1,99.99,07/14/19 23:21,"680 Wilson St, New York City, NY 10001" +227074,Apple Airpods Headphones,1,150,07/08/19 12:13,"363 Johnson St, Seattle, WA 98101" +227075,Bose SoundSport Headphones,1,99.99,07/28/19 12:16,"937 Pine St, Seattle, WA 98101" +227076,Vareebadd Phone,1,400,07/31/19 13:54,"209 Maple St, Seattle, WA 98101" +227077,Apple Airpods Headphones,1,150,07/03/19 17:00,"831 River St, San Francisco, CA 94016" +227078,USB-C Charging Cable,1,11.95,07/23/19 05:36,"236 Jefferson St, Los Angeles, CA 90001" +227079,USB-C Charging Cable,1,11.95,07/18/19 12:33,"317 North St, Seattle, WA 98101" +227080,34in Ultrawide Monitor,1,379.99,07/15/19 14:46,"765 11th St, Boston, MA 02215" +227081,27in 4K Gaming Monitor,1,389.99,07/21/19 17:01,"867 13th St, Los Angeles, CA 90001" +227082,AA Batteries (4-pack),1,3.84,07/29/19 18:14,"518 Main St, Austin, TX 73301" +227083,Bose SoundSport Headphones,1,99.99,07/27/19 22:37,"13 South St, Portland, OR 97035" +227084,iPhone,1,700,07/22/19 19:04,"511 Ridge St, San Francisco, CA 94016" +227085,Vareebadd Phone,1,400,07/11/19 09:43,"169 10th St, Seattle, WA 98101" +227085,Bose SoundSport Headphones,1,99.99,07/11/19 09:43,"169 10th St, Seattle, WA 98101" +227086,Apple Airpods Headphones,1,150,07/06/19 17:27,"149 7th St, New York City, NY 10001" +227087,AAA Batteries (4-pack),1,2.99,07/17/19 11:25,"57 Park St, New York City, NY 10001" +227088,Apple Airpods Headphones,1,150,07/19/19 11:00,"750 Chestnut St, New York City, NY 10001" +227089,Apple Airpods Headphones,1,150,07/23/19 20:26,"26 Highland St, New York City, NY 10001" +227090,Apple Airpods Headphones,1,150,07/17/19 11:13,"524 Forest St, Seattle, WA 98101" +227091,34in Ultrawide Monitor,1,379.99,07/09/19 14:24,"589 South St, New York City, NY 10001" +227092,Lightning Charging Cable,1,14.95,07/25/19 10:03,"402 10th St, San Francisco, CA 94016" +227093,Flatscreen TV,1,300,07/30/19 20:41,"186 Lakeview St, Atlanta, GA 30301" +227094,USB-C Charging Cable,1,11.95,07/16/19 20:11,"477 Main St, Los Angeles, CA 90001" +227095,Lightning Charging Cable,1,14.95,07/18/19 10:04,"630 Main St, San Francisco, CA 94016" +227096,27in 4K Gaming Monitor,1,389.99,07/31/19 17:15,"854 Park St, Seattle, WA 98101" +227097,Bose SoundSport Headphones,1,99.99,07/29/19 10:47,"644 Church St, Los Angeles, CA 90001" +227098,Wired Headphones,1,11.99,07/23/19 13:42,"594 13th St, Seattle, WA 98101" +227099,USB-C Charging Cable,2,11.95,07/28/19 09:40,"752 Lakeview St, Los Angeles, CA 90001" +227099,Apple Airpods Headphones,1,150,07/28/19 09:40,"752 Lakeview St, Los Angeles, CA 90001" +227100,AA Batteries (4-pack),1,3.84,07/16/19 10:22,"306 Highland St, San Francisco, CA 94016" +227101,Lightning Charging Cable,1,14.95,07/07/19 08:09,"357 Center St, San Francisco, CA 94016" +227102,27in 4K Gaming Monitor,1,389.99,07/07/19 11:27,"806 Hill St, New York City, NY 10001" +227103,AA Batteries (4-pack),1,3.84,07/08/19 14:42,"267 Jackson St, New York City, NY 10001" +227104,Wired Headphones,1,11.99,07/29/19 23:34,"202 Madison St, Boston, MA 02215" +227105,AAA Batteries (4-pack),3,2.99,07/18/19 22:22,"183 2nd St, Portland, ME 04101" +227106,Bose SoundSport Headphones,1,99.99,07/05/19 09:02,"863 9th St, San Francisco, CA 94016" +227107,AA Batteries (4-pack),1,3.84,07/02/19 12:19,"445 Adams St, Austin, TX 73301" +227108,AA Batteries (4-pack),2,3.84,07/02/19 15:28,"509 7th St, New York City, NY 10001" +227109,Apple Airpods Headphones,1,150,07/23/19 16:02,"70 Ridge St, Dallas, TX 75001" +227110,AAA Batteries (4-pack),1,2.99,07/08/19 14:20,"853 Jefferson St, Portland, OR 97035" +227111,Wired Headphones,1,11.99,07/24/19 20:40,"105 Pine St, Los Angeles, CA 90001" +227112,Lightning Charging Cable,1,14.95,07/23/19 17:21,"298 10th St, Boston, MA 02215" +227113,Bose SoundSport Headphones,1,99.99,07/23/19 11:04,"869 10th St, Atlanta, GA 30301" +227114,Flatscreen TV,1,300,07/18/19 16:17,"660 North St, Atlanta, GA 30301" +227115,Google Phone,1,600,07/24/19 15:45,"907 10th St, Los Angeles, CA 90001" +227116,AAA Batteries (4-pack),1,2.99,07/02/19 17:18,"987 Lake St, Boston, MA 02215" +227117,Apple Airpods Headphones,1,150,07/31/19 19:50,"797 Center St, New York City, NY 10001" +227118,Google Phone,1,600,07/21/19 06:08,"239 Jackson St, Atlanta, GA 30301" +227119,AAA Batteries (4-pack),1,2.99,07/25/19 15:15,"496 11th St, Atlanta, GA 30301" +227120,LG Washing Machine,1,600.0,07/13/19 05:26,"161 Sunset St, Los Angeles, CA 90001" +227121,AA Batteries (4-pack),1,3.84,07/10/19 15:24,"372 Willow St, Dallas, TX 75001" +227122,Lightning Charging Cable,1,14.95,07/24/19 10:57,"833 4th St, San Francisco, CA 94016" +227123,Wired Headphones,1,11.99,07/23/19 20:20,"385 Meadow St, Boston, MA 02215" +227124,Wired Headphones,1,11.99,07/16/19 05:55,"102 6th St, Dallas, TX 75001" +227125,AAA Batteries (4-pack),2,2.99,07/24/19 16:10,"421 13th St, Los Angeles, CA 90001" +227126,AAA Batteries (4-pack),2,2.99,07/08/19 22:44,"511 Elm St, Los Angeles, CA 90001" +227127,Apple Airpods Headphones,1,150,07/27/19 05:44,"910 Madison St, Los Angeles, CA 90001" +227128,Wired Headphones,1,11.99,07/11/19 13:10,"980 Sunset St, Seattle, WA 98101" +227129,Apple Airpods Headphones,1,150,07/06/19 12:56,"927 Jefferson St, New York City, NY 10001" +227130,27in 4K Gaming Monitor,1,389.99,07/17/19 13:07,"608 11th St, New York City, NY 10001" +227131,Flatscreen TV,1,300,07/27/19 14:26,"881 Johnson St, Seattle, WA 98101" +227132,USB-C Charging Cable,1,11.95,07/03/19 10:38,"312 Hill St, New York City, NY 10001" +227133,Apple Airpods Headphones,1,150,07/03/19 12:57,"500 Johnson St, Los Angeles, CA 90001" +227134,Apple Airpods Headphones,1,150,07/24/19 10:09,"759 Lakeview St, San Francisco, CA 94016" +227135,Apple Airpods Headphones,1,150,07/04/19 17:22,"310 Park St, Los Angeles, CA 90001" +227135,LG Washing Machine,1,600.0,07/04/19 17:22,"310 Park St, Los Angeles, CA 90001" +227136,iPhone,1,700,07/30/19 08:10,"124 Chestnut St, Los Angeles, CA 90001" +227137,LG Dryer,1,600.0,07/13/19 11:04,"680 Jackson St, Austin, TX 73301" +227138,Macbook Pro Laptop,1,1700,07/10/19 10:35,"281 Adams St, San Francisco, CA 94016" +227139,Lightning Charging Cable,1,14.95,07/23/19 11:56,"765 Chestnut St, Dallas, TX 75001" +227140,iPhone,1,700,07/26/19 12:32,"464 Cedar St, San Francisco, CA 94016" +227141,Lightning Charging Cable,1,14.95,07/01/19 17:06,"243 10th St, Seattle, WA 98101" +227142,Wired Headphones,1,11.99,07/26/19 18:31,"590 Sunset St, Austin, TX 73301" +227143,Wired Headphones,1,11.99,07/02/19 13:58,"173 Hill St, Dallas, TX 75001" +227144,AAA Batteries (4-pack),2,2.99,07/12/19 20:09,"609 Lincoln St, Dallas, TX 75001" +227145,34in Ultrawide Monitor,1,379.99,07/24/19 04:42,"348 6th St, San Francisco, CA 94016" +227146,Google Phone,1,600,07/31/19 14:33,"407 Adams St, San Francisco, CA 94016" +227146,Bose SoundSport Headphones,1,99.99,07/31/19 14:33,"407 Adams St, San Francisco, CA 94016" +227147,27in FHD Monitor,1,149.99,07/04/19 20:28,"142 Cedar St, New York City, NY 10001" +227148,AAA Batteries (4-pack),1,2.99,07/29/19 17:26,"9 Jackson St, San Francisco, CA 94016" +227149,Macbook Pro Laptop,1,1700,07/19/19 17:07,"348 Lincoln St, San Francisco, CA 94016" +227150,Lightning Charging Cable,1,14.95,07/12/19 16:10,"462 Hill St, Dallas, TX 75001" +227151,Apple Airpods Headphones,1,150,07/17/19 16:16,"240 Center St, San Francisco, CA 94016" +227152,Bose SoundSport Headphones,1,99.99,07/31/19 09:06,"660 Hickory St, San Francisco, CA 94016" +227153,AA Batteries (4-pack),1,3.84,07/12/19 20:26,"570 Chestnut St, Portland, OR 97035" +227154,USB-C Charging Cable,1,11.95,07/01/19 14:38,"821 Park St, San Francisco, CA 94016" +227155,27in FHD Monitor,1,149.99,07/27/19 13:56,"875 10th St, Atlanta, GA 30301" +227156,Wired Headphones,1,11.99,07/22/19 08:23,"928 South St, Los Angeles, CA 90001" +227157,Google Phone,1,600,07/18/19 22:00,"433 Pine St, Austin, TX 73301" +227158,Lightning Charging Cable,1,14.95,07/25/19 15:55,"111 7th St, Boston, MA 02215" +227159,Bose SoundSport Headphones,1,99.99,07/06/19 01:39,"324 14th St, Atlanta, GA 30301" +227160,27in 4K Gaming Monitor,1,389.99,07/23/19 16:48,"52 11th St, New York City, NY 10001" +227161,AA Batteries (4-pack),1,3.84,07/26/19 10:31,"807 Walnut St, San Francisco, CA 94016" +227162,Lightning Charging Cable,1,14.95,07/13/19 19:58,"335 Ridge St, New York City, NY 10001" +227163,AA Batteries (4-pack),1,3.84,07/10/19 01:17,"442 Cedar St, New York City, NY 10001" +227164,27in 4K Gaming Monitor,1,389.99,07/28/19 15:32,"599 1st St, Atlanta, GA 30301" +227165,USB-C Charging Cable,1,11.95,07/01/19 21:00,"873 River St, San Francisco, CA 94016" +227166,AAA Batteries (4-pack),1,2.99,07/06/19 22:32,"726 Main St, San Francisco, CA 94016" +227167,USB-C Charging Cable,1,11.95,07/31/19 18:51,"422 Wilson St, Los Angeles, CA 90001" +227168,AA Batteries (4-pack),1,3.84,07/14/19 21:35,"60 Wilson St, Atlanta, GA 30301" +227169,Lightning Charging Cable,1,14.95,07/28/19 21:03,"703 Adams St, New York City, NY 10001" +227170,Lightning Charging Cable,1,14.95,07/17/19 07:38,"919 Elm St, San Francisco, CA 94016" +227171,Google Phone,1,600,07/31/19 19:10,"982 Forest St, Portland, OR 97035" +227171,USB-C Charging Cable,1,11.95,07/31/19 19:10,"982 Forest St, Portland, OR 97035" +227171,Wired Headphones,2,11.99,07/31/19 19:10,"982 Forest St, Portland, OR 97035" +227172,AA Batteries (4-pack),2,3.84,07/02/19 17:43,"931 Lincoln St, New York City, NY 10001" +227173,USB-C Charging Cable,1,11.95,07/02/19 16:35,"530 Jefferson St, Seattle, WA 98101" +227174,Lightning Charging Cable,1,14.95,07/05/19 14:33,"932 River St, San Francisco, CA 94016" +227175,Google Phone,1,600,07/22/19 19:10,"812 11th St, Austin, TX 73301" +227175,USB-C Charging Cable,1,11.95,07/22/19 19:10,"812 11th St, Austin, TX 73301" +227176,Wired Headphones,1,11.99,07/05/19 23:14,"348 Highland St, Dallas, TX 75001" +227177,USB-C Charging Cable,1,11.95,07/19/19 16:42,"534 Lincoln St, New York City, NY 10001" +227178,Lightning Charging Cable,1,14.95,07/19/19 12:21,"821 Washington St, Boston, MA 02215" +227179,27in 4K Gaming Monitor,1,389.99,07/21/19 17:29,"831 North St, Dallas, TX 75001" +227180,Lightning Charging Cable,1,14.95,07/26/19 11:21,"317 9th St, Boston, MA 02215" +227181,20in Monitor,1,109.99,07/06/19 00:45,"123 Center St, Austin, TX 73301" +227182,Lightning Charging Cable,1,14.95,07/09/19 14:20,"936 Hickory St, San Francisco, CA 94016" +227183,AA Batteries (4-pack),1,3.84,07/10/19 17:11,"809 7th St, Los Angeles, CA 90001" +227184,Apple Airpods Headphones,1,150,07/15/19 13:27,"963 Washington St, San Francisco, CA 94016" +227185,20in Monitor,1,109.99,07/27/19 13:46,"369 5th St, San Francisco, CA 94016" +227186,USB-C Charging Cable,1,11.95,07/18/19 18:32,"459 Ridge St, Boston, MA 02215" +227187,AA Batteries (4-pack),1,3.84,07/30/19 12:31,"669 Highland St, San Francisco, CA 94016" +227188,Bose SoundSport Headphones,1,99.99,07/07/19 10:35,"663 Wilson St, New York City, NY 10001" +227189,20in Monitor,1,109.99,07/07/19 21:04,"137 Church St, New York City, NY 10001" +227190,20in Monitor,1,109.99,07/23/19 16:26,"357 7th St, San Francisco, CA 94016" +227191,Wired Headphones,1,11.99,07/19/19 12:12,"690 Jackson St, New York City, NY 10001" +227192,USB-C Charging Cable,1,11.95,07/24/19 12:21,"488 Park St, Atlanta, GA 30301" +227193,iPhone,1,700,07/26/19 18:41,"121 14th St, Austin, TX 73301" +227194,AAA Batteries (4-pack),2,2.99,07/24/19 18:27,"876 Park St, San Francisco, CA 94016" +227195,27in FHD Monitor,1,149.99,07/27/19 11:41,"491 Cherry St, San Francisco, CA 94016" +227196,34in Ultrawide Monitor,1,379.99,07/09/19 20:31,"12 Lakeview St, Los Angeles, CA 90001" +227197,Lightning Charging Cable,1,14.95,07/07/19 16:48,"326 Washington St, Los Angeles, CA 90001" +227198,AAA Batteries (4-pack),1,2.99,07/06/19 08:37,"363 Cedar St, Atlanta, GA 30301" +227199,Apple Airpods Headphones,1,150,07/10/19 16:41,"746 Walnut St, San Francisco, CA 94016" +227200,Wired Headphones,1,11.99,07/14/19 22:33,"579 Jefferson St, Austin, TX 73301" +227201,Apple Airpods Headphones,1,150,07/09/19 19:12,"97 Willow St, Seattle, WA 98101" +227202,Apple Airpods Headphones,1,150,07/03/19 11:11,"945 7th St, New York City, NY 10001" +227203,Lightning Charging Cable,2,14.95,07/08/19 14:46,"126 Hill St, San Francisco, CA 94016" +227204,USB-C Charging Cable,2,11.95,07/17/19 17:14,"477 7th St, Boston, MA 02215" +227205,AAA Batteries (4-pack),1,2.99,07/21/19 18:26,"593 Cedar St, Boston, MA 02215" +227206,AAA Batteries (4-pack),1,2.99,07/21/19 23:03,"947 Washington St, Austin, TX 73301" +227207,Flatscreen TV,1,300,07/24/19 20:49,"423 Maple St, Boston, MA 02215" +227208,27in FHD Monitor,1,149.99,07/15/19 21:41,"445 11th St, Portland, OR 97035" +227209,Wired Headphones,1,11.99,07/31/19 09:56,"106 Lincoln St, San Francisco, CA 94016" +227209,Lightning Charging Cable,1,14.95,07/31/19 09:56,"106 Lincoln St, San Francisco, CA 94016" +227210,USB-C Charging Cable,1,11.95,07/13/19 12:48,"736 13th St, New York City, NY 10001" +227211,ThinkPad Laptop,1,999.99,07/19/19 18:59,"326 Main St, San Francisco, CA 94016" +227212,Bose SoundSport Headphones,1,99.99,07/08/19 06:31,"595 Washington St, Boston, MA 02215" +227213,34in Ultrawide Monitor,1,379.99,07/04/19 14:59,"146 Lakeview St, Austin, TX 73301" +227214,Lightning Charging Cable,2,14.95,07/22/19 08:53,"571 8th St, Portland, ME 04101" +227215,Google Phone,1,600,07/03/19 23:57,"611 Jackson St, Boston, MA 02215" +227216,USB-C Charging Cable,1,11.95,07/04/19 00:48,"337 Park St, New York City, NY 10001" +227217,Apple Airpods Headphones,1,150,07/26/19 08:45,"27 Maple St, New York City, NY 10001" +227218,27in FHD Monitor,1,149.99,07/03/19 14:13,"850 Adams St, Portland, OR 97035" +227219,Apple Airpods Headphones,1,150,07/09/19 08:52,"714 Center St, Boston, MA 02215" +227220,Vareebadd Phone,1,400,07/05/19 14:28,"256 Walnut St, Los Angeles, CA 90001" +227221,Apple Airpods Headphones,1,150,07/10/19 13:22,"949 Forest St, Boston, MA 02215" +227222,Apple Airpods Headphones,1,150,07/24/19 13:31,"18 Pine St, Los Angeles, CA 90001" +227223,AA Batteries (4-pack),1,3.84,07/25/19 13:54,"932 7th St, New York City, NY 10001" +227224,Wired Headphones,1,11.99,07/26/19 07:39,"219 13th St, Boston, MA 02215" +227225,27in FHD Monitor,1,149.99,07/18/19 18:08,"616 2nd St, Los Angeles, CA 90001" +227226,Apple Airpods Headphones,1,150,07/04/19 17:25,"74 Wilson St, Austin, TX 73301" +227227,Lightning Charging Cable,1,14.95,07/31/19 14:24,"778 Park St, San Francisco, CA 94016" +227228,Lightning Charging Cable,1,14.95,07/19/19 08:53,"59 7th St, Los Angeles, CA 90001" +227229,Wired Headphones,1,11.99,07/13/19 11:36,"887 Wilson St, San Francisco, CA 94016" +227230,Lightning Charging Cable,1,14.95,07/18/19 17:01,"152 Church St, New York City, NY 10001" +227231,AA Batteries (4-pack),1,3.84,07/26/19 18:41,"457 2nd St, Los Angeles, CA 90001" +227232,34in Ultrawide Monitor,1,379.99,07/27/19 10:32,"640 Center St, Dallas, TX 75001" +227233,AAA Batteries (4-pack),1,2.99,07/05/19 21:38,"464 Highland St, Los Angeles, CA 90001" +227234,AAA Batteries (4-pack),1,2.99,07/25/19 18:27,"110 Jackson St, Seattle, WA 98101" +227235,AAA Batteries (4-pack),1,2.99,07/25/19 18:31,"236 Elm St, San Francisco, CA 94016" +227236,AAA Batteries (4-pack),2,2.99,07/06/19 13:01,"531 Meadow St, Seattle, WA 98101" +227237,Apple Airpods Headphones,1,150,07/24/19 16:57,"177 8th St, San Francisco, CA 94016" +227238,Bose SoundSport Headphones,1,99.99,07/20/19 19:15,"810 Cherry St, Los Angeles, CA 90001" +227239,Bose SoundSport Headphones,1,99.99,07/19/19 14:54,"763 Pine St, Atlanta, GA 30301" +227240,iPhone,1,700,07/30/19 12:10,"656 Church St, Los Angeles, CA 90001" +227240,Wired Headphones,1,11.99,07/30/19 12:10,"656 Church St, Los Angeles, CA 90001" +227241,Wired Headphones,1,11.99,07/21/19 08:48,"474 Lincoln St, San Francisco, CA 94016" +227242,Wired Headphones,1,11.99,07/21/19 10:49,"26 Sunset St, Atlanta, GA 30301" +227243,USB-C Charging Cable,1,11.95,07/30/19 16:28,"275 Walnut St, Austin, TX 73301" +227244,27in FHD Monitor,1,149.99,07/21/19 16:38,"495 Willow St, San Francisco, CA 94016" +227245,Lightning Charging Cable,1,14.95,07/08/19 16:50,"457 4th St, Atlanta, GA 30301" +227245,Wired Headphones,1,11.99,07/08/19 16:50,"457 4th St, Atlanta, GA 30301" +227246,34in Ultrawide Monitor,1,379.99,07/22/19 10:10,"809 Cedar St, New York City, NY 10001" +227247,AA Batteries (4-pack),1,3.84,07/26/19 20:45,"750 Madison St, San Francisco, CA 94016" +227248,AA Batteries (4-pack),2,3.84,07/14/19 10:56,"679 Willow St, Atlanta, GA 30301" +227249,Lightning Charging Cable,1,14.95,07/12/19 07:57,"887 Walnut St, Seattle, WA 98101" +227250,Macbook Pro Laptop,1,1700,07/19/19 20:09,"123 8th St, New York City, NY 10001" +227251,Lightning Charging Cable,1,14.95,07/07/19 16:26,"126 13th St, San Francisco, CA 94016" +227252,AA Batteries (4-pack),1,3.84,07/18/19 14:12,"75 Spruce St, Austin, TX 73301" +227253,Wired Headphones,1,11.99,07/27/19 14:17,"348 Forest St, Los Angeles, CA 90001" +227254,USB-C Charging Cable,1,11.95,07/20/19 15:24,"450 Hickory St, Los Angeles, CA 90001" +227255,AAA Batteries (4-pack),1,2.99,07/07/19 14:51,"77 Lake St, Seattle, WA 98101" +227256,Apple Airpods Headphones,1,150,07/26/19 20:11,"762 Wilson St, Dallas, TX 75001" +227257,AAA Batteries (4-pack),1,2.99,07/14/19 12:15,"138 Hickory St, San Francisco, CA 94016" +227258,Bose SoundSport Headphones,1,99.99,07/01/19 21:52,"660 Maple St, Boston, MA 02215" +227259,Wired Headphones,1,11.99,07/06/19 09:23,"971 Park St, San Francisco, CA 94016" +227260,Bose SoundSport Headphones,1,99.99,07/16/19 10:53,"766 13th St, San Francisco, CA 94016" +227261,AAA Batteries (4-pack),1,2.99,07/05/19 12:52,"484 Dogwood St, Portland, OR 97035" +227262,Bose SoundSport Headphones,1,99.99,07/14/19 16:39,"927 Maple St, San Francisco, CA 94016" +227263,AAA Batteries (4-pack),1,2.99,07/18/19 16:58,"401 8th St, Los Angeles, CA 90001" +227264,Macbook Pro Laptop,1,1700,07/11/19 18:38,"741 River St, Seattle, WA 98101" +227264,AA Batteries (4-pack),2,3.84,07/11/19 18:38,"741 River St, Seattle, WA 98101" +227265,AAA Batteries (4-pack),1,2.99,07/14/19 11:20,"762 Washington St, Los Angeles, CA 90001" +227266,AA Batteries (4-pack),2,3.84,07/05/19 19:10,"369 Hickory St, Los Angeles, CA 90001" +227267,USB-C Charging Cable,1,11.95,07/01/19 20:43,"969 11th St, Seattle, WA 98101" +227268,Lightning Charging Cable,1,14.95,08/01/19 00:00,"366 River St, Seattle, WA 98101" +227269,AA Batteries (4-pack),2,3.84,07/12/19 00:15,"616 5th St, San Francisco, CA 94016" +227270,Macbook Pro Laptop,1,1700,07/26/19 11:33,"669 1st St, Portland, OR 97035" +227271,Lightning Charging Cable,1,14.95,07/26/19 10:13,"404 8th St, New York City, NY 10001" +227272,Flatscreen TV,1,300,07/15/19 11:16,"766 Park St, Los Angeles, CA 90001" +227273,AAA Batteries (4-pack),3,2.99,07/02/19 14:51,"297 5th St, Los Angeles, CA 90001" +227274,AA Batteries (4-pack),1,3.84,07/03/19 06:27,"432 Meadow St, Los Angeles, CA 90001" +227275,Apple Airpods Headphones,1,150,07/17/19 08:39,"49 Park St, San Francisco, CA 94016" +227276,Bose SoundSport Headphones,1,99.99,07/05/19 09:26,"854 Lakeview St, San Francisco, CA 94016" +227277,Wired Headphones,1,11.99,07/07/19 05:59,"567 6th St, Atlanta, GA 30301" +227277,Lightning Charging Cable,1,14.95,07/07/19 05:59,"567 6th St, Atlanta, GA 30301" +227278,AAA Batteries (4-pack),2,2.99,07/09/19 21:36,"949 6th St, Dallas, TX 75001" +227279,AAA Batteries (4-pack),1,2.99,07/15/19 02:13,"256 Jefferson St, Boston, MA 02215" +227280,34in Ultrawide Monitor,1,379.99,07/05/19 15:40,"566 Cherry St, Atlanta, GA 30301" +227281,AA Batteries (4-pack),1,3.84,07/25/19 20:00,"188 Chestnut St, San Francisco, CA 94016" +227282,Lightning Charging Cable,1,14.95,07/15/19 13:29,"824 Madison St, Austin, TX 73301" +227283,USB-C Charging Cable,1,11.95,07/10/19 17:06,"216 Hickory St, Portland, OR 97035" +227284,Google Phone,1,600,07/26/19 11:13,"516 South St, Los Angeles, CA 90001" +227285,27in 4K Gaming Monitor,1,389.99,07/01/19 13:01,"225 Lakeview St, San Francisco, CA 94016" +227286,20in Monitor,1,109.99,07/11/19 18:31,"287 Chestnut St, San Francisco, CA 94016" +227287,Wired Headphones,1,11.99,07/22/19 10:30,"725 Highland St, Seattle, WA 98101" +227288,Apple Airpods Headphones,1,150,07/07/19 14:37,"90 Willow St, Los Angeles, CA 90001" +227289,Lightning Charging Cable,1,14.95,07/16/19 21:48,"816 Willow St, San Francisco, CA 94016" +227290,iPhone,1,700,07/02/19 11:06,"301 Willow St, Boston, MA 02215" +227290,Lightning Charging Cable,1,14.95,07/02/19 11:06,"301 Willow St, Boston, MA 02215" +227291,Apple Airpods Headphones,1,150,07/15/19 22:26,"331 Highland St, San Francisco, CA 94016" +227292,Apple Airpods Headphones,1,150,07/27/19 14:19,"377 8th St, Portland, OR 97035" +227293,27in 4K Gaming Monitor,1,389.99,07/19/19 12:24,"517 7th St, San Francisco, CA 94016" +227294,Wired Headphones,1,11.99,07/13/19 21:15,"132 Lake St, Los Angeles, CA 90001" +227295,20in Monitor,1,109.99,07/21/19 10:34,"727 Hill St, Boston, MA 02215" +227296,Apple Airpods Headphones,1,150,07/27/19 17:38,"514 River St, San Francisco, CA 94016" +227297,USB-C Charging Cable,1,11.95,07/02/19 21:15,"544 Hill St, Austin, TX 73301" +227298,iPhone,1,700,07/07/19 21:23,"493 Johnson St, Dallas, TX 75001" +227299,AAA Batteries (4-pack),2,2.99,07/28/19 18:39,"794 12th St, Los Angeles, CA 90001" +227300,iPhone,1,700,07/26/19 12:46,"360 River St, San Francisco, CA 94016" +227301,Lightning Charging Cable,1,14.95,07/05/19 21:49,"869 Center St, San Francisco, CA 94016" +227302,AA Batteries (4-pack),1,3.84,07/14/19 16:40,"155 8th St, Boston, MA 02215" +227303,Apple Airpods Headphones,1,150,07/27/19 19:43,"951 13th St, Atlanta, GA 30301" +227304,Vareebadd Phone,1,400,07/02/19 13:55,"240 Johnson St, Los Angeles, CA 90001" +227305,AAA Batteries (4-pack),1,2.99,07/17/19 19:32,"144 Highland St, San Francisco, CA 94016" +227306,Wired Headphones,1,11.99,07/28/19 21:25,"648 Cedar St, San Francisco, CA 94016" +227307,Apple Airpods Headphones,1,150,07/09/19 20:00,"847 Chestnut St, Atlanta, GA 30301" +227308,Bose SoundSport Headphones,1,99.99,07/18/19 14:50,"41 Spruce St, New York City, NY 10001" +227309,Google Phone,1,600,07/29/19 10:55,"483 5th St, Boston, MA 02215" +227310,Wired Headphones,1,11.99,07/28/19 18:16,"206 11th St, Seattle, WA 98101" +227311,AA Batteries (4-pack),1,3.84,07/08/19 18:32,"868 2nd St, San Francisco, CA 94016" +227312,Vareebadd Phone,1,400,07/30/19 19:19,"15 2nd St, Boston, MA 02215" +227312,USB-C Charging Cable,1,11.95,07/30/19 19:19,"15 2nd St, Boston, MA 02215" +227313,Bose SoundSport Headphones,1,99.99,07/06/19 20:54,"369 River St, Portland, ME 04101" +227314,AAA Batteries (4-pack),1,2.99,07/06/19 15:01,"29 5th St, Boston, MA 02215" +227315,Apple Airpods Headphones,1,150,07/05/19 11:21,"487 Wilson St, New York City, NY 10001" +227316,Apple Airpods Headphones,1,150,07/15/19 15:18,"141 Adams St, New York City, NY 10001" +227317,Macbook Pro Laptop,1,1700,07/24/19 08:50,"109 Forest St, Dallas, TX 75001" +227318,Lightning Charging Cable,1,14.95,07/16/19 10:07,"476 Ridge St, Portland, OR 97035" +227319,iPhone,1,700,07/12/19 18:19,"491 6th St, San Francisco, CA 94016" +227319,Wired Headphones,1,11.99,07/12/19 18:19,"491 6th St, San Francisco, CA 94016" +227320,USB-C Charging Cable,1,11.95,07/15/19 13:12,"373 Johnson St, New York City, NY 10001" +227321,AA Batteries (4-pack),1,3.84,07/15/19 22:57,"211 Dogwood St, Boston, MA 02215" +227322,iPhone,1,700,07/21/19 18:33,"77 12th St, San Francisco, CA 94016" +227323,Apple Airpods Headphones,1,150,07/20/19 15:35,"492 4th St, Dallas, TX 75001" +227324,AAA Batteries (4-pack),1,2.99,07/28/19 08:59,"634 Spruce St, Boston, MA 02215" +227325,Wired Headphones,1,11.99,07/01/19 21:45,"843 2nd St, San Francisco, CA 94016" +227326,USB-C Charging Cable,2,11.95,07/09/19 09:45,"573 9th St, Los Angeles, CA 90001" +227327,Apple Airpods Headphones,1,150,07/13/19 22:33,"898 Hill St, Los Angeles, CA 90001" +227328,27in FHD Monitor,2,149.99,07/01/19 12:16,"959 Main St, Dallas, TX 75001" +227329,Lightning Charging Cable,1,14.95,07/03/19 17:29,"592 Park St, Seattle, WA 98101" +227330,Bose SoundSport Headphones,1,99.99,07/25/19 08:39,"482 Hickory St, New York City, NY 10001" +227331,Wired Headphones,1,11.99,07/07/19 04:12,"434 5th St, San Francisco, CA 94016" +227332,USB-C Charging Cable,1,11.95,07/31/19 23:00,"690 Spruce St, San Francisco, CA 94016" +227333,AAA Batteries (4-pack),1,2.99,07/14/19 15:26,"843 11th St, Atlanta, GA 30301" +227334,Lightning Charging Cable,1,14.95,07/07/19 10:05,"31 Dogwood St, San Francisco, CA 94016" +227335,Wired Headphones,1,11.99,07/28/19 20:51,"378 Walnut St, Atlanta, GA 30301" +227336,Bose SoundSport Headphones,1,99.99,07/22/19 21:59,"509 Meadow St, Seattle, WA 98101" +227337,27in 4K Gaming Monitor,1,389.99,07/11/19 22:46,"155 Jackson St, Boston, MA 02215" +227338,USB-C Charging Cable,1,11.95,07/17/19 16:08,"114 Lincoln St, Boston, MA 02215" +227339,27in 4K Gaming Monitor,1,389.99,07/20/19 19:19,"707 Jefferson St, Boston, MA 02215" +227340,Lightning Charging Cable,1,14.95,07/24/19 19:02,"896 Jackson St, Seattle, WA 98101" +227341,AAA Batteries (4-pack),1,2.99,07/02/19 20:06,"233 Highland St, Portland, ME 04101" +227342,27in FHD Monitor,1,149.99,07/13/19 00:24,"530 9th St, Austin, TX 73301" +227343,27in 4K Gaming Monitor,1,389.99,07/15/19 19:30,"573 Maple St, Los Angeles, CA 90001" +227344,USB-C Charging Cable,1,11.95,07/05/19 12:25,"294 Spruce St, New York City, NY 10001" +227345,Bose SoundSport Headphones,1,99.99,07/12/19 10:02,"350 Lakeview St, Austin, TX 73301" +227346,Lightning Charging Cable,2,14.95,07/11/19 14:06,"68 8th St, Dallas, TX 75001" +227347,Apple Airpods Headphones,1,150,07/18/19 21:13,"886 Main St, Seattle, WA 98101" +227348,AAA Batteries (4-pack),1,2.99,07/05/19 00:53,"429 2nd St, San Francisco, CA 94016" +227349,Apple Airpods Headphones,1,150,07/31/19 11:57,"316 13th St, Boston, MA 02215" +227350,AA Batteries (4-pack),1,3.84,07/22/19 12:32,"387 7th St, Atlanta, GA 30301" +227351,AA Batteries (4-pack),1,3.84,07/03/19 07:06,"212 Adams St, San Francisco, CA 94016" +227352,Wired Headphones,1,11.99,07/25/19 21:15,"961 Sunset St, New York City, NY 10001" +227353,LG Washing Machine,1,600.0,07/14/19 18:37,"529 Cherry St, New York City, NY 10001" +227354,iPhone,1,700,07/25/19 14:12,"779 4th St, San Francisco, CA 94016" +227355,Bose SoundSport Headphones,1,99.99,07/31/19 10:34,"55 Hill St, Austin, TX 73301" +227356,Lightning Charging Cable,2,14.95,07/30/19 09:14,"420 Highland St, New York City, NY 10001" +227357,iPhone,1,700,07/24/19 11:48,"938 Lincoln St, San Francisco, CA 94016" +227357,Wired Headphones,1,11.99,07/24/19 11:48,"938 Lincoln St, San Francisco, CA 94016" +227358,Macbook Pro Laptop,1,1700,07/05/19 17:13,"909 Washington St, Portland, OR 97035" +227359,27in 4K Gaming Monitor,1,389.99,07/26/19 12:03,"659 Church St, Los Angeles, CA 90001" +227360,20in Monitor,1,109.99,07/15/19 02:37,"740 Ridge St, Portland, ME 04101" +227361,AA Batteries (4-pack),2,3.84,07/19/19 13:24,"104 Hill St, Atlanta, GA 30301" +227362,Lightning Charging Cable,1,14.95,07/16/19 14:10,"746 Park St, Seattle, WA 98101" +227363,Macbook Pro Laptop,1,1700,07/02/19 13:26,"482 6th St, New York City, NY 10001" +227364,Wired Headphones,1,11.99,07/31/19 07:04,"682 Forest St, Los Angeles, CA 90001" +227365,Macbook Pro Laptop,1,1700,07/12/19 14:47,"775 Maple St, San Francisco, CA 94016" +227366,AAA Batteries (4-pack),1,2.99,07/09/19 10:55,"338 South St, San Francisco, CA 94016" +227367,LG Washing Machine,1,600.0,07/31/19 07:44,"891 7th St, Dallas, TX 75001" +227368,Lightning Charging Cable,1,14.95,07/20/19 14:12,"685 River St, Austin, TX 73301" +227369,Google Phone,1,600,07/04/19 20:23,"573 Washington St, Los Angeles, CA 90001" +227369,Wired Headphones,1,11.99,07/04/19 20:23,"573 Washington St, Los Angeles, CA 90001" +227370,Bose SoundSport Headphones,1,99.99,07/23/19 11:06,"173 Lakeview St, Seattle, WA 98101" +227371,Wired Headphones,1,11.99,07/31/19 12:11,"401 Wilson St, Los Angeles, CA 90001" +227372,AA Batteries (4-pack),1,3.84,07/19/19 10:37,"291 Lakeview St, San Francisco, CA 94016" +227373,Flatscreen TV,1,300,07/01/19 20:20,"345 Main St, San Francisco, CA 94016" +227374,Apple Airpods Headphones,1,150,07/08/19 15:40,"157 10th St, San Francisco, CA 94016" +227375,Google Phone,1,600,07/11/19 21:11,"451 West St, San Francisco, CA 94016" +227376,Wired Headphones,1,11.99,07/01/19 10:39,"286 Willow St, Los Angeles, CA 90001" +227377,Wired Headphones,1,11.99,07/12/19 12:28,"668 West St, San Francisco, CA 94016" +227378,Wired Headphones,1,11.99,07/13/19 00:25,"133 Spruce St, Portland, OR 97035" +227379,Bose SoundSport Headphones,1,99.99,07/06/19 13:15,"516 Hickory St, San Francisco, CA 94016" +227380,iPhone,1,700,07/18/19 02:04,"666 Forest St, Los Angeles, CA 90001" +227381,Macbook Pro Laptop,1,1700,07/20/19 20:51,"17 Forest St, San Francisco, CA 94016" +227382,AA Batteries (4-pack),1,3.84,07/07/19 09:21,"626 Main St, New York City, NY 10001" +227383,AA Batteries (4-pack),1,3.84,07/09/19 07:50,"188 South St, Seattle, WA 98101" +227384,AAA Batteries (4-pack),1,2.99,07/21/19 19:46,"840 Pine St, Seattle, WA 98101" +227385,34in Ultrawide Monitor,1,379.99,07/10/19 16:50,"461 Madison St, San Francisco, CA 94016" +227386,27in 4K Gaming Monitor,1,389.99,07/29/19 13:12,"427 Lakeview St, Dallas, TX 75001" +227386,Bose SoundSport Headphones,1,99.99,07/29/19 13:12,"427 Lakeview St, Dallas, TX 75001" +227387,Wired Headphones,1,11.99,07/20/19 18:20,"931 Wilson St, Dallas, TX 75001" +227388,AA Batteries (4-pack),1,3.84,07/24/19 23:51,"785 4th St, Los Angeles, CA 90001" +227389,USB-C Charging Cable,2,11.95,07/02/19 19:43,"272 Madison St, New York City, NY 10001" +227390,Lightning Charging Cable,1,14.95,07/05/19 02:21,"19 1st St, Boston, MA 02215" +227391,Bose SoundSport Headphones,1,99.99,07/24/19 11:20,"216 Spruce St, San Francisco, CA 94016" +227392,27in 4K Gaming Monitor,1,389.99,07/26/19 07:19,"77 Pine St, Boston, MA 02215" +227393,Google Phone,1,600,07/06/19 08:39,"284 13th St, Seattle, WA 98101" +227393,USB-C Charging Cable,1,11.95,07/06/19 08:39,"284 13th St, Seattle, WA 98101" +227394,USB-C Charging Cable,1,11.95,07/27/19 21:18,"764 Hill St, Portland, OR 97035" +227395,Apple Airpods Headphones,1,150,07/31/19 18:11,"258 Cedar St, Los Angeles, CA 90001" +227396,USB-C Charging Cable,1,11.95,07/06/19 18:34,"836 11th St, New York City, NY 10001" +227397,27in 4K Gaming Monitor,1,389.99,07/02/19 09:20,"473 Jackson St, Los Angeles, CA 90001" +227398,Bose SoundSport Headphones,1,99.99,07/04/19 11:16,"965 Center St, Seattle, WA 98101" +227399,27in 4K Gaming Monitor,1,389.99,07/23/19 01:16,"453 6th St, New York City, NY 10001" +227400,34in Ultrawide Monitor,1,379.99,07/07/19 15:45,"292 12th St, Los Angeles, CA 90001" +227401,27in 4K Gaming Monitor,1,389.99,07/28/19 15:52,"137 Ridge St, San Francisco, CA 94016" +227402,Apple Airpods Headphones,1,150,07/21/19 17:17,"9 8th St, San Francisco, CA 94016" +227403,20in Monitor,1,109.99,07/06/19 10:16,"974 10th St, New York City, NY 10001" +227404,USB-C Charging Cable,1,11.95,07/26/19 10:34,"980 Dogwood St, Dallas, TX 75001" +227405,Apple Airpods Headphones,1,150,07/07/19 10:22,"391 Forest St, New York City, NY 10001" +227406,Vareebadd Phone,1,400,07/19/19 10:27,"949 Washington St, Dallas, TX 75001" +227406,USB-C Charging Cable,1,11.95,07/19/19 10:27,"949 Washington St, Dallas, TX 75001" +227407,AAA Batteries (4-pack),1,2.99,07/12/19 22:59,"139 10th St, Dallas, TX 75001" +227408,AAA Batteries (4-pack),1,2.99,07/01/19 19:08,"744 Cedar St, Los Angeles, CA 90001" +227409,Google Phone,1,600,07/12/19 14:48,"909 River St, Atlanta, GA 30301" +227410,Apple Airpods Headphones,1,150,07/18/19 10:53,"231 Willow St, Portland, OR 97035" +227411,Bose SoundSport Headphones,1,99.99,07/09/19 21:43,"905 Sunset St, Seattle, WA 98101" +227412,34in Ultrawide Monitor,1,379.99,07/27/19 14:34,"721 Washington St, Los Angeles, CA 90001" +227413,AAA Batteries (4-pack),2,2.99,07/03/19 15:39,"680 Dogwood St, New York City, NY 10001" +227414,Wired Headphones,1,11.99,07/24/19 20:28,"666 Cedar St, Seattle, WA 98101" +227415,USB-C Charging Cable,1,11.95,07/07/19 14:35,"368 1st St, Los Angeles, CA 90001" +227416,27in 4K Gaming Monitor,1,389.99,07/25/19 03:24,"527 Jackson St, Boston, MA 02215" +227417,Apple Airpods Headphones,1,150,07/30/19 16:48,"379 4th St, New York City, NY 10001" +227418,AA Batteries (4-pack),1,3.84,07/04/19 16:05,"874 West St, San Francisco, CA 94016" +227419,Flatscreen TV,1,300,07/23/19 21:49,"378 2nd St, San Francisco, CA 94016" +227420,Wired Headphones,1,11.99,07/28/19 11:46,"838 7th St, San Francisco, CA 94016" +227421,Wired Headphones,1,11.99,07/02/19 17:12,"741 Lincoln St, Boston, MA 02215" +227422,27in 4K Gaming Monitor,1,389.99,07/27/19 22:32,"539 Walnut St, Portland, ME 04101" +227423,27in FHD Monitor,1,149.99,07/09/19 19:22,"738 River St, Portland, OR 97035" +227424,Wired Headphones,1,11.99,07/21/19 13:52,"385 Highland St, Boston, MA 02215" +227425,AA Batteries (4-pack),1,3.84,07/21/19 15:54,"332 10th St, New York City, NY 10001" +227426,USB-C Charging Cable,1,11.95,07/03/19 12:50,"966 Highland St, Dallas, TX 75001" +227427,Lightning Charging Cable,1,14.95,07/15/19 14:27,"560 Washington St, Boston, MA 02215" +227428,34in Ultrawide Monitor,1,379.99,07/21/19 17:04,"690 Cherry St, Atlanta, GA 30301" +227429,USB-C Charging Cable,1,11.95,07/20/19 11:29,"782 Hill St, San Francisco, CA 94016" +227430,USB-C Charging Cable,1,11.95,07/04/19 14:07,"95 Willow St, Portland, OR 97035" +227431,iPhone,1,700,07/18/19 19:01,"612 Lake St, San Francisco, CA 94016" +227432,Lightning Charging Cable,1,14.95,07/23/19 11:21,"590 12th St, Boston, MA 02215" +227433,Flatscreen TV,1,300,07/26/19 10:04,"44 Jackson St, Los Angeles, CA 90001" +227434,Lightning Charging Cable,1,14.95,07/15/19 10:56,"295 Chestnut St, Boston, MA 02215" +227435,ThinkPad Laptop,1,999.99,07/16/19 20:33,"579 Chestnut St, Los Angeles, CA 90001" +227436,Macbook Pro Laptop,1,1700,07/18/19 18:10,"672 Maple St, Atlanta, GA 30301" +227437,AA Batteries (4-pack),1,3.84,07/29/19 09:29,"816 Willow St, New York City, NY 10001" +227438,Lightning Charging Cable,1,14.95,07/12/19 10:16,"403 Willow St, New York City, NY 10001" +227439,Lightning Charging Cable,1,14.95,07/22/19 08:24,"301 Lakeview St, Atlanta, GA 30301" +227440,Google Phone,1,600,07/19/19 13:20,"556 South St, San Francisco, CA 94016" +227441,Vareebadd Phone,1,400,07/14/19 07:01,"976 Main St, Boston, MA 02215" +227442,AAA Batteries (4-pack),2,2.99,07/05/19 01:02,"847 Washington St, San Francisco, CA 94016" +227443,Wired Headphones,1,11.99,07/30/19 21:24,"262 Maple St, Austin, TX 73301" +227444,Lightning Charging Cable,1,14.95,07/22/19 12:34,"860 Lakeview St, Dallas, TX 75001" +227445,AA Batteries (4-pack),2,3.84,07/28/19 19:17,"175 Dogwood St, Dallas, TX 75001" +227446,Lightning Charging Cable,1,14.95,07/06/19 13:59,"486 Meadow St, New York City, NY 10001" +227447,Lightning Charging Cable,1,14.95,07/06/19 08:56,"365 Lincoln St, Boston, MA 02215" +227448,USB-C Charging Cable,1,11.95,07/22/19 19:23,"212 Dogwood St, Boston, MA 02215" +227449,Lightning Charging Cable,1,14.95,07/29/19 10:27,"92 Forest St, New York City, NY 10001" +227450,Wired Headphones,1,11.99,07/13/19 21:26,"424 1st St, Portland, OR 97035" +227451,USB-C Charging Cable,1,11.95,07/04/19 20:46,"461 10th St, Seattle, WA 98101" +227452,AA Batteries (4-pack),1,3.84,07/21/19 09:05,"635 Wilson St, Boston, MA 02215" +227453,27in 4K Gaming Monitor,1,389.99,07/29/19 10:46,"958 Highland St, New York City, NY 10001" +227454,27in FHD Monitor,1,149.99,07/24/19 22:59,"879 North St, Los Angeles, CA 90001" +227455,USB-C Charging Cable,1,11.95,07/22/19 14:23,"748 10th St, Los Angeles, CA 90001" +227456,AAA Batteries (4-pack),2,2.99,07/22/19 17:51,"426 West St, Portland, OR 97035" +227457,34in Ultrawide Monitor,1,379.99,07/27/19 22:00,"15 Forest St, San Francisco, CA 94016" +227458,USB-C Charging Cable,1,11.95,07/29/19 10:43,"114 Willow St, New York City, NY 10001" +227459,iPhone,1,700,07/04/19 21:41,"698 1st St, Los Angeles, CA 90001" +227460,AA Batteries (4-pack),1,3.84,07/03/19 15:47,"306 Church St, Los Angeles, CA 90001" +227461,iPhone,1,700,07/31/19 20:13,"958 Spruce St, New York City, NY 10001" +227462,34in Ultrawide Monitor,1,379.99,07/29/19 07:26,"104 South St, Portland, OR 97035" +227463,AA Batteries (4-pack),2,3.84,07/09/19 14:36,"223 Elm St, Seattle, WA 98101" +227464,Wired Headphones,1,11.99,07/17/19 19:57,"863 Madison St, Atlanta, GA 30301" +227465,Apple Airpods Headphones,1,150,07/20/19 19:37,"114 Sunset St, Dallas, TX 75001" +227466,Flatscreen TV,1,300,07/24/19 22:57,"245 14th St, Los Angeles, CA 90001" +227467,Apple Airpods Headphones,1,150,07/01/19 21:16,"411 Hickory St, New York City, NY 10001" +227468,Lightning Charging Cable,1,14.95,07/22/19 00:36,"55 River St, Portland, OR 97035" +227469,AA Batteries (4-pack),1,3.84,07/03/19 19:59,"242 Jefferson St, Boston, MA 02215" +227470,Lightning Charging Cable,1,14.95,07/24/19 00:42,"814 North St, Boston, MA 02215" +227471,USB-C Charging Cable,2,11.95,07/10/19 19:16,"24 2nd St, Atlanta, GA 30301" +227472,Lightning Charging Cable,1,14.95,07/17/19 17:39,"398 Lakeview St, New York City, NY 10001" +227473,27in FHD Monitor,1,149.99,07/04/19 18:43,"732 Jackson St, Seattle, WA 98101" +227474,AAA Batteries (4-pack),2,2.99,07/29/19 08:29,"658 14th St, Los Angeles, CA 90001" +227475,Apple Airpods Headphones,1,150,07/27/19 23:09,"91 5th St, San Francisco, CA 94016" +227476,Apple Airpods Headphones,1,150,07/19/19 16:54,"266 1st St, San Francisco, CA 94016" +227477,AAA Batteries (4-pack),1,2.99,07/11/19 12:00,"993 Johnson St, Los Angeles, CA 90001" +227478,Bose SoundSport Headphones,1,99.99,07/22/19 08:47,"510 Main St, New York City, NY 10001" +227479,34in Ultrawide Monitor,1,379.99,07/31/19 14:44,"73 Park St, Atlanta, GA 30301" +227480,Lightning Charging Cable,1,14.95,07/02/19 08:15,"695 North St, New York City, NY 10001" +227481,AA Batteries (4-pack),1,3.84,07/24/19 18:52,"656 Main St, San Francisco, CA 94016" +227482,Wired Headphones,1,11.99,07/28/19 22:08,"924 Maple St, New York City, NY 10001" +227483,AA Batteries (4-pack),1,3.84,07/27/19 17:37,"196 1st St, San Francisco, CA 94016" +227484,AAA Batteries (4-pack),4,2.99,07/30/19 09:23,"32 Lakeview St, New York City, NY 10001" +227485,iPhone,1,700,07/06/19 08:12,"548 Cherry St, Atlanta, GA 30301" +227486,AAA Batteries (4-pack),1,2.99,07/23/19 19:58,"871 Park St, Dallas, TX 75001" +227487,27in 4K Gaming Monitor,1,389.99,07/01/19 13:24,"539 5th St, San Francisco, CA 94016" +227488,27in 4K Gaming Monitor,1,389.99,07/30/19 18:05,"586 8th St, Portland, ME 04101" +227489,Wired Headphones,1,11.99,07/12/19 09:42,"635 Maple St, New York City, NY 10001" +227490,AAA Batteries (4-pack),1,2.99,07/13/19 15:02,"290 Main St, San Francisco, CA 94016" +227491,Wired Headphones,1,11.99,07/05/19 23:01,"478 Sunset St, Boston, MA 02215" +227492,AAA Batteries (4-pack),1,2.99,07/17/19 08:34,"883 Park St, Boston, MA 02215" +227493,Apple Airpods Headphones,1,150,07/13/19 21:21,"380 Park St, Los Angeles, CA 90001" +227494,20in Monitor,1,109.99,07/04/19 13:18,"376 Center St, San Francisco, CA 94016" +227495,Lightning Charging Cable,1,14.95,07/04/19 00:03,"527 Lincoln St, San Francisco, CA 94016" +227496,AAA Batteries (4-pack),2,2.99,07/21/19 07:38,"519 2nd St, San Francisco, CA 94016" +227497,Apple Airpods Headphones,1,150,07/30/19 19:25,"892 River St, Austin, TX 73301" +227498,Google Phone,1,600,07/04/19 14:39,"199 6th St, Dallas, TX 75001" +227499,AAA Batteries (4-pack),1,2.99,07/21/19 12:46,"123 2nd St, Atlanta, GA 30301" +227500,AAA Batteries (4-pack),1,2.99,07/26/19 11:32,"696 Jackson St, Boston, MA 02215" +227501,AAA Batteries (4-pack),1,2.99,07/25/19 08:47,"676 13th St, Austin, TX 73301" +227502,Vareebadd Phone,1,400,07/17/19 14:21,"812 Wilson St, Atlanta, GA 30301" +227502,USB-C Charging Cable,2,11.95,07/17/19 14:21,"812 Wilson St, Atlanta, GA 30301" +227503,Vareebadd Phone,1,400,07/05/19 09:09,"524 10th St, Los Angeles, CA 90001" +227504,AAA Batteries (4-pack),1,2.99,07/07/19 12:25,"428 Spruce St, New York City, NY 10001" +227505,AA Batteries (4-pack),1,3.84,07/01/19 10:56,"31 Jefferson St, New York City, NY 10001" +227505,ThinkPad Laptop,1,999.99,07/01/19 10:56,"31 Jefferson St, New York City, NY 10001" +227506,Bose SoundSport Headphones,1,99.99,07/15/19 23:37,"484 Lincoln St, Austin, TX 73301" +227507,Apple Airpods Headphones,1,150,07/25/19 16:42,"489 Chestnut St, San Francisco, CA 94016" +227508,ThinkPad Laptop,1,999.99,07/08/19 13:35,"771 Cherry St, Seattle, WA 98101" +227509,Lightning Charging Cable,1,14.95,07/25/19 16:34,"463 Sunset St, Austin, TX 73301" +227510,27in FHD Monitor,1,149.99,07/10/19 13:57,"286 Park St, Los Angeles, CA 90001" +227511,27in 4K Gaming Monitor,1,389.99,07/24/19 08:16,"926 Hickory St, Austin, TX 73301" +227512,AA Batteries (4-pack),2,3.84,07/30/19 18:39,"685 2nd St, Boston, MA 02215" +227513,USB-C Charging Cable,1,11.95,07/23/19 02:04,"293 Lakeview St, San Francisco, CA 94016" +227514,Lightning Charging Cable,1,14.95,07/30/19 17:10,"206 Lincoln St, Los Angeles, CA 90001" +227515,Lightning Charging Cable,1,14.95,07/31/19 12:09,"872 Church St, San Francisco, CA 94016" +227516,Apple Airpods Headphones,1,150,07/05/19 17:07,"236 1st St, Portland, OR 97035" +227517,AAA Batteries (4-pack),4,2.99,07/01/19 20:06,"178 Jefferson St, San Francisco, CA 94016" +227518,Lightning Charging Cable,1,14.95,07/08/19 13:30,"781 Church St, New York City, NY 10001" +227519,Wired Headphones,1,11.99,07/09/19 21:52,"90 Cedar St, San Francisco, CA 94016" +227520,USB-C Charging Cable,1,11.95,07/04/19 04:58,"324 Spruce St, New York City, NY 10001" +227521,Flatscreen TV,1,300,07/12/19 09:54,"627 Park St, Boston, MA 02215" +227522,Lightning Charging Cable,1,14.95,07/14/19 06:01,"661 Meadow St, Seattle, WA 98101" +227523,AA Batteries (4-pack),1,3.84,07/30/19 19:15,"345 Sunset St, Dallas, TX 75001" +227524,20in Monitor,1,109.99,07/09/19 22:39,"487 Willow St, Austin, TX 73301" +227525,AA Batteries (4-pack),3,3.84,07/20/19 12:06,"866 Elm St, New York City, NY 10001" +227526,Bose SoundSport Headphones,1,99.99,07/20/19 16:23,"596 Cedar St, Seattle, WA 98101" +227527,Bose SoundSport Headphones,1,99.99,07/04/19 19:58,"870 Adams St, Boston, MA 02215" +227528,AAA Batteries (4-pack),1,2.99,07/20/19 02:09,"581 Lake St, New York City, NY 10001" +227529,AA Batteries (4-pack),1,3.84,07/11/19 15:34,"83 8th St, Portland, OR 97035" +227530,27in FHD Monitor,1,149.99,07/06/19 20:30,"749 North St, San Francisco, CA 94016" +227531,Apple Airpods Headphones,1,150,07/24/19 19:57,"5 Elm St, Seattle, WA 98101" +227532,Lightning Charging Cable,1,14.95,07/31/19 16:44,"232 Chestnut St, New York City, NY 10001" +227533,Bose SoundSport Headphones,1,99.99,07/28/19 13:07,"786 Lakeview St, New York City, NY 10001" +227534,AA Batteries (4-pack),2,3.84,07/14/19 20:31,"481 Dogwood St, Dallas, TX 75001" +227535,AAA Batteries (4-pack),3,2.99,07/29/19 22:56,"902 Park St, Atlanta, GA 30301" +227536,Lightning Charging Cable,1,14.95,07/15/19 09:57,"439 Willow St, Boston, MA 02215" +227537,Lightning Charging Cable,1,14.95,07/21/19 08:57,"628 11th St, Boston, MA 02215" +227538,Wired Headphones,1,11.99,07/25/19 06:12,"830 13th St, Los Angeles, CA 90001" +227539,Apple Airpods Headphones,1,150,07/04/19 14:45,"438 6th St, San Francisco, CA 94016" +227540,AAA Batteries (4-pack),1,2.99,07/31/19 17:25,"893 Hill St, San Francisco, CA 94016" +227541,27in FHD Monitor,1,149.99,07/04/19 17:52,"819 Adams St, Atlanta, GA 30301" +227542,AAA Batteries (4-pack),1,2.99,07/08/19 12:30,"676 Willow St, San Francisco, CA 94016" +227543,Lightning Charging Cable,1,14.95,07/13/19 21:55,"977 Walnut St, Portland, OR 97035" +227544,27in 4K Gaming Monitor,1,389.99,07/31/19 23:09,"938 9th St, Boston, MA 02215" +227545,AAA Batteries (4-pack),1,2.99,07/02/19 16:10,"465 West St, Seattle, WA 98101" +227546,iPhone,1,700,07/10/19 16:44,"786 11th St, Los Angeles, CA 90001" +227547,AAA Batteries (4-pack),1,2.99,07/22/19 13:38,"724 North St, Austin, TX 73301" +227548,USB-C Charging Cable,1,11.95,07/25/19 20:47,"817 Adams St, New York City, NY 10001" +227549,USB-C Charging Cable,1,11.95,07/29/19 08:29,"970 10th St, Boston, MA 02215" +227550,AAA Batteries (4-pack),3,2.99,07/18/19 15:10,"389 West St, San Francisco, CA 94016" +227551,Wired Headphones,1,11.99,07/06/19 12:55,"935 Lakeview St, Atlanta, GA 30301" +227552,Google Phone,1,600,07/11/19 08:12,"623 Dogwood St, Los Angeles, CA 90001" +227553,AA Batteries (4-pack),1,3.84,07/24/19 14:12,"360 Forest St, Portland, OR 97035" +227554,Lightning Charging Cable,1,14.95,07/27/19 21:15,"602 River St, San Francisco, CA 94016" +227555,AA Batteries (4-pack),1,3.84,07/15/19 18:23,"93 Forest St, San Francisco, CA 94016" +227556,Lightning Charging Cable,1,14.95,07/08/19 10:09,"783 Forest St, New York City, NY 10001" +227557,AAA Batteries (4-pack),1,2.99,07/01/19 20:37,"318 Church St, San Francisco, CA 94016" +227558,34in Ultrawide Monitor,1,379.99,07/31/19 19:20,"393 Meadow St, Dallas, TX 75001" +227559,ThinkPad Laptop,1,999.99,07/01/19 21:53,"403 Lakeview St, Dallas, TX 75001" +227560,Lightning Charging Cable,2,14.95,07/30/19 22:08,"243 5th St, Seattle, WA 98101" +227561,AA Batteries (4-pack),1,3.84,07/29/19 16:50,"951 Madison St, Boston, MA 02215" +227562,AAA Batteries (4-pack),1,2.99,07/06/19 12:41,"764 Highland St, Boston, MA 02215" +227563,Bose SoundSport Headphones,1,99.99,07/09/19 22:01,"741 Jefferson St, Los Angeles, CA 90001" +227564,27in 4K Gaming Monitor,1,389.99,07/04/19 09:59,"620 Walnut St, San Francisco, CA 94016" +227565,AA Batteries (4-pack),1,3.84,07/12/19 20:11,"866 Walnut St, Seattle, WA 98101" +227566,20in Monitor,1,109.99,07/27/19 14:57,"889 10th St, Portland, OR 97035" +227567,AA Batteries (4-pack),1,3.84,07/02/19 17:26,"339 Lake St, Seattle, WA 98101" +227568,Wired Headphones,1,11.99,07/03/19 17:04,"954 River St, Los Angeles, CA 90001" +227569,iPhone,1,700,07/26/19 02:14,"766 2nd St, Los Angeles, CA 90001" +227570,Wired Headphones,1,11.99,07/09/19 11:09,"870 Park St, San Francisco, CA 94016" +227571,AA Batteries (4-pack),1,3.84,07/24/19 14:26,"635 2nd St, New York City, NY 10001" +227572,AAA Batteries (4-pack),3,2.99,07/25/19 19:17,"297 Chestnut St, Seattle, WA 98101" +227573,Apple Airpods Headphones,1,150,07/23/19 12:43,"162 Adams St, Seattle, WA 98101" +227574,iPhone,1,700,07/13/19 07:33,"549 1st St, Los Angeles, CA 90001" +227575,USB-C Charging Cable,2,11.95,07/11/19 11:41,"801 Highland St, San Francisco, CA 94016" +227576,AAA Batteries (4-pack),1,2.99,07/02/19 21:02,"390 Cherry St, Atlanta, GA 30301" +227577,USB-C Charging Cable,1,11.95,07/25/19 14:47,"552 1st St, Los Angeles, CA 90001" +227578,Bose SoundSport Headphones,1,99.99,07/20/19 01:12,"106 Pine St, San Francisco, CA 94016" +227579,Bose SoundSport Headphones,1,99.99,07/27/19 19:20,"279 Adams St, Seattle, WA 98101" +227580,Wired Headphones,1,11.99,07/03/19 20:36,"350 4th St, Dallas, TX 75001" +227581,Apple Airpods Headphones,1,150,07/05/19 16:06,"789 7th St, Boston, MA 02215" +227582,AAA Batteries (4-pack),1,2.99,07/02/19 14:31,"730 Spruce St, San Francisco, CA 94016" +227583,Wired Headphones,1,11.99,07/19/19 16:52,"782 Church St, Dallas, TX 75001" +227584,27in FHD Monitor,1,149.99,07/16/19 15:20,"592 Maple St, Seattle, WA 98101" +227585,Lightning Charging Cable,1,14.95,07/26/19 20:37,"525 North St, Portland, OR 97035" +227586,USB-C Charging Cable,1,11.95,07/18/19 13:08,"23 12th St, San Francisco, CA 94016" +227587,ThinkPad Laptop,1,999.99,07/02/19 20:25,"748 Jefferson St, Austin, TX 73301" +227588,Apple Airpods Headphones,1,150,07/26/19 12:43,"638 Elm St, Dallas, TX 75001" +227589,USB-C Charging Cable,1,11.95,07/05/19 17:37,"145 South St, Atlanta, GA 30301" +227590,Bose SoundSport Headphones,1,99.99,07/24/19 16:04,"281 1st St, Dallas, TX 75001" +227591,20in Monitor,1,109.99,07/02/19 21:57,"542 West St, Los Angeles, CA 90001" +227592,AAA Batteries (4-pack),1,2.99,07/25/19 18:24,"954 14th St, San Francisco, CA 94016" +227593,USB-C Charging Cable,1,11.95,07/03/19 20:25,"520 Johnson St, Atlanta, GA 30301" +227594,USB-C Charging Cable,1,11.95,07/07/19 12:21,"976 Hickory St, San Francisco, CA 94016" +227595,27in 4K Gaming Monitor,1,389.99,07/31/19 09:58,"172 13th St, Dallas, TX 75001" +227596,Lightning Charging Cable,1,14.95,07/25/19 10:01,"562 6th St, Los Angeles, CA 90001" +227597,Lightning Charging Cable,2,14.95,07/01/19 10:26,"59 Walnut St, San Francisco, CA 94016" +227598,27in FHD Monitor,1,149.99,07/13/19 18:06,"93 10th St, San Francisco, CA 94016" +227599,iPhone,1,700,07/04/19 20:49,"342 13th St, Atlanta, GA 30301" +227600,USB-C Charging Cable,1,11.95,07/10/19 13:01,"858 9th St, New York City, NY 10001" +227601,USB-C Charging Cable,1,11.95,07/11/19 06:48,"134 Wilson St, Los Angeles, CA 90001" +227602,Macbook Pro Laptop,1,1700,07/29/19 14:19,"742 Lakeview St, Seattle, WA 98101" +227603,Bose SoundSport Headphones,1,99.99,07/09/19 17:55,"709 12th St, New York City, NY 10001" +227604,Lightning Charging Cable,1,14.95,07/18/19 23:15,"255 Forest St, Los Angeles, CA 90001" +227605,iPhone,1,700,07/27/19 09:07,"478 13th St, Boston, MA 02215" +227606,Wired Headphones,1,11.99,07/16/19 12:31,"993 Spruce St, Portland, OR 97035" +227607,AA Batteries (4-pack),1,3.84,07/17/19 08:14,"589 Madison St, Los Angeles, CA 90001" +227608,Bose SoundSport Headphones,1,99.99,07/19/19 15:33,"987 Spruce St, Dallas, TX 75001" +227609,27in 4K Gaming Monitor,1,389.99,07/08/19 20:44,"690 Maple St, San Francisco, CA 94016" +227610,Macbook Pro Laptop,1,1700,07/24/19 06:46,"807 Pine St, Portland, OR 97035" +227611,Macbook Pro Laptop,1,1700,07/02/19 15:50,"788 4th St, Boston, MA 02215" +227612,Apple Airpods Headphones,1,150,07/30/19 18:13,"266 4th St, Austin, TX 73301" +227613,AA Batteries (4-pack),1,3.84,07/02/19 13:17,"810 Willow St, Los Angeles, CA 90001" +227614,Flatscreen TV,1,300,07/09/19 14:35,"167 13th St, San Francisco, CA 94016" +227615,27in FHD Monitor,1,149.99,07/26/19 15:13,"960 Jackson St, Los Angeles, CA 90001" +227616,Lightning Charging Cable,2,14.95,07/03/19 18:03,"841 Cherry St, San Francisco, CA 94016" +227617,Wired Headphones,1,11.99,07/23/19 21:07,"360 South St, Dallas, TX 75001" +227618,AAA Batteries (4-pack),1,2.99,07/16/19 19:13,"852 Adams St, Los Angeles, CA 90001" +227619,USB-C Charging Cable,1,11.95,07/24/19 09:23,"715 8th St, Los Angeles, CA 90001" +227620,iPhone,1,700,07/30/19 22:57,"254 Cedar St, Los Angeles, CA 90001" +227621,27in 4K Gaming Monitor,1,389.99,07/02/19 11:17,"294 Jefferson St, Austin, TX 73301" +227622,Lightning Charging Cable,1,14.95,07/16/19 08:55,"359 11th St, New York City, NY 10001" +227623,Bose SoundSport Headphones,1,99.99,07/20/19 07:18,"951 Dogwood St, Boston, MA 02215" +227624,AA Batteries (4-pack),1,3.84,07/16/19 17:46,"825 Walnut St, Los Angeles, CA 90001" +227625,Bose SoundSport Headphones,1,99.99,07/04/19 20:56,"92 North St, New York City, NY 10001" +227626,USB-C Charging Cable,2,11.95,07/01/19 19:28,"863 South St, Portland, OR 97035" +227627,Lightning Charging Cable,1,14.95,07/09/19 23:33,"52 Ridge St, New York City, NY 10001" +227628,Lightning Charging Cable,1,14.95,07/04/19 17:41,"955 Walnut St, Dallas, TX 75001" +227629,Flatscreen TV,1,300,07/24/19 16:45,"423 Elm St, San Francisco, CA 94016" +227630,AA Batteries (4-pack),1,3.84,07/24/19 12:57,"102 Cherry St, Boston, MA 02215" +227631,Apple Airpods Headphones,1,150,07/16/19 02:28,"126 12th St, Dallas, TX 75001" +227632,AA Batteries (4-pack),1,3.84,07/24/19 13:26,"267 8th St, San Francisco, CA 94016" +227633,Lightning Charging Cable,1,14.95,07/31/19 19:53,"144 Willow St, New York City, NY 10001" +227634,Lightning Charging Cable,1,14.95,07/13/19 21:17,"637 Elm St, San Francisco, CA 94016" +227635,Wired Headphones,1,11.99,07/15/19 21:37,"455 Meadow St, San Francisco, CA 94016" +227636,Apple Airpods Headphones,1,150,07/07/19 19:01,"537 North St, Boston, MA 02215" +227637,AA Batteries (4-pack),2,3.84,07/28/19 13:43,"48 Center St, Dallas, TX 75001" +227638,Lightning Charging Cable,1,14.95,07/01/19 12:39,"435 12th St, Austin, TX 73301" +227639,Bose SoundSport Headphones,1,99.99,07/11/19 08:55,"485 5th St, New York City, NY 10001" +227640,AAA Batteries (4-pack),1,2.99,07/29/19 23:17,"359 Park St, Dallas, TX 75001" +227641,AAA Batteries (4-pack),1,2.99,07/02/19 18:00,"522 1st St, San Francisco, CA 94016" +227642,34in Ultrawide Monitor,1,379.99,07/07/19 01:16,"630 Dogwood St, San Francisco, CA 94016" +227643,27in FHD Monitor,1,149.99,07/13/19 09:11,"18 14th St, New York City, NY 10001" +227644,Lightning Charging Cable,1,14.95,07/09/19 19:59,"507 8th St, Dallas, TX 75001" +227645,27in 4K Gaming Monitor,1,389.99,07/25/19 15:40,"76 14th St, New York City, NY 10001" +227646,Flatscreen TV,1,300,07/21/19 16:59,"289 Pine St, San Francisco, CA 94016" +227647,AAA Batteries (4-pack),1,2.99,07/16/19 10:16,"356 Lake St, Dallas, TX 75001" +227648,Wired Headphones,1,11.99,07/06/19 16:36,"18 Park St, Portland, OR 97035" +227649,Macbook Pro Laptop,1,1700,07/11/19 22:26,"67 Hickory St, San Francisco, CA 94016" +227650,AAA Batteries (4-pack),3,2.99,07/18/19 14:59,"589 Madison St, New York City, NY 10001" +227651,27in FHD Monitor,1,149.99,07/05/19 10:14,"403 1st St, Boston, MA 02215" +227652,20in Monitor,1,109.99,07/08/19 07:11,"7 Cherry St, Austin, TX 73301" +227652,Apple Airpods Headphones,1,150,07/08/19 07:11,"7 Cherry St, Austin, TX 73301" +227653,20in Monitor,1,109.99,07/02/19 23:31,"879 Dogwood St, New York City, NY 10001" +227654,Bose SoundSport Headphones,1,99.99,07/26/19 10:57,"449 Hill St, Seattle, WA 98101" +227655,Wired Headphones,1,11.99,07/31/19 19:28,"168 Park St, Los Angeles, CA 90001" +227656,Wired Headphones,1,11.99,07/01/19 08:08,"50 Jefferson St, Atlanta, GA 30301" +227657,Wired Headphones,1,11.99,07/25/19 12:36,"821 Hickory St, Los Angeles, CA 90001" +227658,AA Batteries (4-pack),1,3.84,07/07/19 14:03,"567 Sunset St, Dallas, TX 75001" +227659,Bose SoundSport Headphones,1,99.99,07/16/19 16:31,"872 Elm St, Los Angeles, CA 90001" +227660,Wired Headphones,1,11.99,07/13/19 14:36,"318 Center St, San Francisco, CA 94016" +227661,USB-C Charging Cable,1,11.95,07/21/19 18:57,"308 Walnut St, Dallas, TX 75001" +227662,34in Ultrawide Monitor,1,379.99,07/01/19 13:42,"183 Lake St, Atlanta, GA 30301" +227663,Apple Airpods Headphones,1,150,07/15/19 04:27,"610 8th St, San Francisco, CA 94016" +227664,AA Batteries (4-pack),2,3.84,07/06/19 14:38,"454 9th St, Los Angeles, CA 90001" +227665,Wired Headphones,1,11.99,07/08/19 10:40,"297 Main St, Boston, MA 02215" +227666,iPhone,1,700,07/20/19 13:16,"949 North St, New York City, NY 10001" +227666,Lightning Charging Cable,1,14.95,07/20/19 13:16,"949 North St, New York City, NY 10001" +227666,Wired Headphones,1,11.99,07/20/19 13:16,"949 North St, New York City, NY 10001" +227667,27in 4K Gaming Monitor,1,389.99,07/08/19 20:13,"970 10th St, Seattle, WA 98101" +227668,Bose SoundSport Headphones,1,99.99,07/08/19 19:42,"80 Jackson St, Los Angeles, CA 90001" +227669,Wired Headphones,1,11.99,07/11/19 17:20,"517 Elm St, New York City, NY 10001" +227670,AAA Batteries (4-pack),1,2.99,07/25/19 19:00,"746 Forest St, San Francisco, CA 94016" +227671,AA Batteries (4-pack),1,3.84,07/21/19 00:28,"274 Park St, San Francisco, CA 94016" +227672,Apple Airpods Headphones,1,150,07/31/19 13:43,"333 River St, Boston, MA 02215" +227673,LG Washing Machine,1,600.0,07/11/19 12:17,"462 Wilson St, New York City, NY 10001" +227674,Macbook Pro Laptop,1,1700,07/20/19 05:47,"428 Forest St, Dallas, TX 75001" +227675,27in 4K Gaming Monitor,1,389.99,07/17/19 13:21,"87 Elm St, San Francisco, CA 94016" +227676,Wired Headphones,1,11.99,07/30/19 21:50,"948 Park St, Boston, MA 02215" +227677,USB-C Charging Cable,1,11.95,07/26/19 21:01,"969 Center St, New York City, NY 10001" +227678,AA Batteries (4-pack),1,3.84,07/06/19 18:53,"851 Center St, Austin, TX 73301" +227679,AA Batteries (4-pack),2,3.84,07/24/19 19:53,"938 Dogwood St, Los Angeles, CA 90001" +227680,Bose SoundSport Headphones,1,99.99,07/23/19 19:04,"213 Jackson St, San Francisco, CA 94016" +227681,Macbook Pro Laptop,1,1700,07/04/19 22:30,"512 Elm St, San Francisco, CA 94016" +227682,ThinkPad Laptop,1,999.99,07/23/19 08:53,"310 Church St, Los Angeles, CA 90001" +227682,Apple Airpods Headphones,1,150,07/23/19 08:53,"310 Church St, Los Angeles, CA 90001" +227683,AA Batteries (4-pack),1,3.84,07/10/19 03:40,"632 Lincoln St, San Francisco, CA 94016" +227684,Lightning Charging Cable,1,14.95,07/12/19 10:33,"841 South St, Atlanta, GA 30301" +227685,AA Batteries (4-pack),1,3.84,07/10/19 18:32,"168 South St, Dallas, TX 75001" +227686,20in Monitor,1,109.99,07/19/19 17:35,"299 Highland St, Seattle, WA 98101" +227687,Lightning Charging Cable,1,14.95,07/25/19 22:30,"592 Cherry St, Boston, MA 02215" +227688,AA Batteries (4-pack),4,3.84,07/23/19 17:48,"804 4th St, New York City, NY 10001" +227689,AA Batteries (4-pack),1,3.84,07/23/19 16:22,"813 6th St, Seattle, WA 98101" +227690,Bose SoundSport Headphones,1,99.99,07/25/19 19:01,"395 10th St, Dallas, TX 75001" +227691,AA Batteries (4-pack),1,3.84,07/17/19 22:06,"609 North St, San Francisco, CA 94016" +227692,AAA Batteries (4-pack),1,2.99,07/11/19 17:18,"253 Park St, Seattle, WA 98101" +227693,AA Batteries (4-pack),1,3.84,07/16/19 08:46,"106 Main St, San Francisco, CA 94016" +227694,AA Batteries (4-pack),2,3.84,07/02/19 10:45,"683 Cherry St, Atlanta, GA 30301" +227695,USB-C Charging Cable,1,11.95,07/25/19 14:20,"244 1st St, Los Angeles, CA 90001" +,,,,, +227696,27in 4K Gaming Monitor,1,389.99,07/25/19 16:29,"517 Dogwood St, Portland, OR 97035" +227697,AAA Batteries (4-pack),2,2.99,07/01/19 13:11,"612 Cedar St, San Francisco, CA 94016" +227698,USB-C Charging Cable,1,11.95,07/24/19 18:14,"727 Elm St, Atlanta, GA 30301" +227699,27in FHD Monitor,1,149.99,07/05/19 21:39,"46 West St, Austin, TX 73301" +227700,AAA Batteries (4-pack),1,2.99,07/25/19 11:39,"771 8th St, Boston, MA 02215" +227701,USB-C Charging Cable,1,11.95,07/21/19 21:21,"863 Cedar St, Atlanta, GA 30301" +227702,Flatscreen TV,1,300,07/22/19 09:22,"67 Dogwood St, San Francisco, CA 94016" +227703,Bose SoundSport Headphones,1,99.99,07/13/19 21:01,"428 6th St, Portland, OR 97035" +227704,AAA Batteries (4-pack),1,2.99,07/10/19 13:37,"86 Spruce St, San Francisco, CA 94016" +227705,Bose SoundSport Headphones,1,99.99,07/03/19 20:50,"38 Lake St, San Francisco, CA 94016" +227706,Lightning Charging Cable,1,14.95,07/14/19 09:44,"312 8th St, New York City, NY 10001" +227707,AAA Batteries (4-pack),1,2.99,07/26/19 09:07,"483 2nd St, Seattle, WA 98101" +227708,iPhone,1,700,07/21/19 18:43,"966 6th St, Boston, MA 02215" +227709,Google Phone,1,600,07/21/19 15:02,"601 Walnut St, Atlanta, GA 30301" +227710,Lightning Charging Cable,1,14.95,07/25/19 21:09,"875 Sunset St, Austin, TX 73301" +227711,Lightning Charging Cable,1,14.95,07/29/19 16:57,"888 Walnut St, San Francisco, CA 94016" +,,,,, +227712,Wired Headphones,1,11.99,07/13/19 12:15,"64 Madison St, Dallas, TX 75001" +227712,Lightning Charging Cable,2,14.95,07/13/19 12:15,"64 Madison St, Dallas, TX 75001" +227713,Lightning Charging Cable,1,14.95,07/17/19 14:29,"490 4th St, Dallas, TX 75001" +227714,Apple Airpods Headphones,1,150,07/16/19 14:52,"553 13th St, Los Angeles, CA 90001" +227715,Google Phone,1,600,07/08/19 07:33,"54 Washington St, Portland, ME 04101" +227715,USB-C Charging Cable,1,11.95,07/08/19 07:33,"54 Washington St, Portland, ME 04101" +227716,USB-C Charging Cable,1,11.95,07/16/19 20:49,"809 Center St, New York City, NY 10001" +227717,Wired Headphones,1,11.99,07/13/19 22:23,"24 2nd St, Portland, OR 97035" +227718,Wired Headphones,1,11.99,07/24/19 20:55,"51 Forest St, Atlanta, GA 30301" +227719,USB-C Charging Cable,1,11.95,07/29/19 12:52,"203 Cedar St, Los Angeles, CA 90001" +227720,AAA Batteries (4-pack),1,2.99,07/20/19 15:52,"143 1st St, New York City, NY 10001" +227721,USB-C Charging Cable,2,11.95,07/05/19 13:37,"246 8th St, Seattle, WA 98101" +227722,Lightning Charging Cable,1,14.95,07/05/19 09:06,"845 Chestnut St, Atlanta, GA 30301" +227723,AAA Batteries (4-pack),1,2.99,07/27/19 20:43,"23 4th St, Atlanta, GA 30301" +227724,iPhone,1,700,07/06/19 11:26,"108 Chestnut St, Atlanta, GA 30301" +227724,Lightning Charging Cable,1,14.95,07/06/19 11:26,"108 Chestnut St, Atlanta, GA 30301" +227724,Apple Airpods Headphones,1,150,07/06/19 11:26,"108 Chestnut St, Atlanta, GA 30301" +227725,Bose SoundSport Headphones,1,99.99,07/30/19 13:28,"434 13th St, San Francisco, CA 94016" +227726,AA Batteries (4-pack),1,3.84,07/14/19 12:50,"747 6th St, New York City, NY 10001" +227727,27in 4K Gaming Monitor,1,389.99,07/31/19 19:09,"379 Meadow St, Seattle, WA 98101" +227728,AAA Batteries (4-pack),3,2.99,07/25/19 08:55,"722 Adams St, Dallas, TX 75001" +227729,Wired Headphones,1,11.99,07/04/19 20:30,"236 11th St, Dallas, TX 75001" +227730,AA Batteries (4-pack),1,3.84,07/12/19 11:41,"551 1st St, San Francisco, CA 94016" +227730,AAA Batteries (4-pack),1,2.99,07/12/19 11:41,"551 1st St, San Francisco, CA 94016" +227731,USB-C Charging Cable,1,11.95,07/01/19 14:40,"940 Pine St, New York City, NY 10001" +227732,Apple Airpods Headphones,1,150,07/06/19 21:55,"811 6th St, Los Angeles, CA 90001" +227733,AA Batteries (4-pack),1,3.84,07/20/19 14:13,"872 2nd St, Los Angeles, CA 90001" +227734,ThinkPad Laptop,1,999.99,07/14/19 15:44,"420 7th St, New York City, NY 10001" +227735,Flatscreen TV,1,300,07/22/19 14:52,"395 10th St, New York City, NY 10001" +227736,USB-C Charging Cable,1,11.95,07/31/19 12:58,"658 13th St, Boston, MA 02215" +227737,AAA Batteries (4-pack),2,2.99,07/09/19 13:19,"120 West St, Boston, MA 02215" +227738,AA Batteries (4-pack),1,3.84,07/30/19 21:48,"399 Jackson St, Los Angeles, CA 90001" +227739,Lightning Charging Cable,1,14.95,07/04/19 23:04,"502 Forest St, Boston, MA 02215" +227740,27in FHD Monitor,1,149.99,07/11/19 19:23,"585 Jackson St, Atlanta, GA 30301" +227741,USB-C Charging Cable,1,11.95,07/31/19 20:05,"683 9th St, San Francisco, CA 94016" +227742,AA Batteries (4-pack),1,3.84,07/30/19 10:58,"964 5th St, Los Angeles, CA 90001" +227743,34in Ultrawide Monitor,1,379.99,07/12/19 17:14,"913 Lincoln St, Austin, TX 73301" +227744,AA Batteries (4-pack),1,3.84,07/08/19 20:29,"395 Park St, Dallas, TX 75001" +227745,AAA Batteries (4-pack),2,2.99,07/13/19 17:32,"62 Center St, Boston, MA 02215" +227746,Flatscreen TV,1,300,07/29/19 19:29,"492 Hill St, Los Angeles, CA 90001" +227747,Apple Airpods Headphones,1,150,07/04/19 11:07,"687 Forest St, San Francisco, CA 94016" +227748,AAA Batteries (4-pack),1,2.99,07/09/19 13:48,"439 Church St, Austin, TX 73301" +227749,Wired Headphones,1,11.99,07/22/19 19:53,"370 14th St, Seattle, WA 98101" +227750,Bose SoundSport Headphones,1,99.99,07/10/19 15:09,"721 Main St, San Francisco, CA 94016" +227751,Wired Headphones,1,11.99,07/19/19 14:18,"454 Jefferson St, New York City, NY 10001" +227752,27in 4K Gaming Monitor,1,389.99,07/18/19 10:37,"654 Pine St, Portland, OR 97035" +227753,Lightning Charging Cable,1,14.95,07/15/19 09:04,"225 Washington St, San Francisco, CA 94016" +227754,Bose SoundSport Headphones,1,99.99,07/24/19 16:06,"162 Jefferson St, Los Angeles, CA 90001" +227755,Flatscreen TV,1,300,07/26/19 11:57,"297 5th St, New York City, NY 10001" +227756,27in FHD Monitor,1,149.99,07/02/19 22:47,"390 2nd St, San Francisco, CA 94016" +227757,AAA Batteries (4-pack),1,2.99,07/12/19 14:37,"143 6th St, Los Angeles, CA 90001" +227758,USB-C Charging Cable,1,11.95,07/15/19 12:44,"57 Washington St, Boston, MA 02215" +227759,Google Phone,1,600,07/03/19 10:46,"260 Main St, Portland, ME 04101" +227760,Apple Airpods Headphones,1,150,07/01/19 19:08,"757 Chestnut St, San Francisco, CA 94016" +227761,Apple Airpods Headphones,1,150,07/05/19 13:58,"756 2nd St, San Francisco, CA 94016" +227762,Macbook Pro Laptop,1,1700,07/09/19 14:37,"221 Spruce St, Seattle, WA 98101" +227763,Lightning Charging Cable,2,14.95,07/22/19 20:15,"389 West St, San Francisco, CA 94016" +227764,Flatscreen TV,1,300,07/03/19 19:09,"877 Cedar St, Los Angeles, CA 90001" +227765,iPhone,1,700,07/18/19 23:44,"190 4th St, Boston, MA 02215" +227766,Wired Headphones,1,11.99,07/23/19 12:35,"396 Lake St, Dallas, TX 75001" +227767,AAA Batteries (4-pack),1,2.99,07/12/19 22:00,"478 Washington St, Austin, TX 73301" +227768,Lightning Charging Cable,1,14.95,07/05/19 19:27,"90 Johnson St, Portland, ME 04101" +227769,20in Monitor,1,109.99,07/21/19 22:11,"643 Willow St, San Francisco, CA 94016" +227770,Lightning Charging Cable,1,14.95,07/24/19 11:25,"618 Highland St, Los Angeles, CA 90001" +227771,AA Batteries (4-pack),1,3.84,07/26/19 14:26,"126 Church St, New York City, NY 10001" +227772,USB-C Charging Cable,1,11.95,07/06/19 20:01,"455 Cherry St, Los Angeles, CA 90001" +227773,USB-C Charging Cable,1,11.95,07/03/19 21:28,"701 Hickory St, Seattle, WA 98101" +227774,Apple Airpods Headphones,1,150,07/16/19 21:58,"566 13th St, Atlanta, GA 30301" +227775,Bose SoundSport Headphones,1,99.99,07/22/19 09:39,"517 Dogwood St, Atlanta, GA 30301" +227776,Wired Headphones,1,11.99,07/20/19 15:34,"478 2nd St, New York City, NY 10001" +227777,Apple Airpods Headphones,1,150,07/10/19 12:07,"293 2nd St, Portland, OR 97035" +227778,Wired Headphones,1,11.99,07/11/19 19:51,"433 Johnson St, Atlanta, GA 30301" +227779,Wired Headphones,1,11.99,07/24/19 19:50,"530 Church St, New York City, NY 10001" +227780,AA Batteries (4-pack),1,3.84,07/20/19 19:34,"752 13th St, New York City, NY 10001" +227781,Macbook Pro Laptop,1,1700,07/08/19 12:46,"533 14th St, Atlanta, GA 30301" +227782,Lightning Charging Cable,1,14.95,07/07/19 12:27,"759 6th St, San Francisco, CA 94016" +227783,Lightning Charging Cable,1,14.95,07/30/19 19:15,"962 8th St, Boston, MA 02215" +227784,Wired Headphones,1,11.99,07/27/19 01:29,"596 Cedar St, New York City, NY 10001" +227785,Wired Headphones,1,11.99,07/24/19 21:36,"757 Elm St, Atlanta, GA 30301" +227786,Apple Airpods Headphones,1,150,07/09/19 12:19,"653 Ridge St, Atlanta, GA 30301" +227787,20in Monitor,1,109.99,07/20/19 10:31,"310 1st St, Boston, MA 02215" +227788,Apple Airpods Headphones,1,150,07/16/19 12:07,"307 Highland St, Seattle, WA 98101" +227789,27in FHD Monitor,1,149.99,07/30/19 11:20,"586 West St, Atlanta, GA 30301" +227790,27in FHD Monitor,1,149.99,07/23/19 02:12,"768 Walnut St, San Francisco, CA 94016" +227791,LG Washing Machine,1,600.0,07/02/19 10:15,"403 Center St, San Francisco, CA 94016" +227792,Bose SoundSport Headphones,1,99.99,07/30/19 14:11,"324 Park St, Seattle, WA 98101" +227793,27in 4K Gaming Monitor,1,389.99,07/20/19 13:07,"5 Lakeview St, San Francisco, CA 94016" +227794,iPhone,1,700,07/07/19 14:35,"893 Lincoln St, Boston, MA 02215" +227795,LG Dryer,1,600.0,07/12/19 21:06,"610 14th St, Seattle, WA 98101" +227796,Bose SoundSport Headphones,1,99.99,07/23/19 10:19,"718 Hill St, San Francisco, CA 94016" +227797,Bose SoundSport Headphones,1,99.99,07/27/19 22:16,"984 Johnson St, Austin, TX 73301" +227798,34in Ultrawide Monitor,1,379.99,07/11/19 12:23,"355 Cedar St, Atlanta, GA 30301" +227799,Wired Headphones,1,11.99,07/17/19 22:20,"873 Cedar St, Atlanta, GA 30301" +227800,Flatscreen TV,1,300,07/29/19 22:34,"645 Wilson St, Boston, MA 02215" +227801,AAA Batteries (4-pack),1,2.99,07/09/19 22:08,"716 Hickory St, Portland, ME 04101" +227802,USB-C Charging Cable,1,11.95,07/15/19 19:49,"173 Hickory St, San Francisco, CA 94016" +227803,Wired Headphones,1,11.99,07/10/19 19:03,"214 Cherry St, Portland, ME 04101" +227804,USB-C Charging Cable,1,11.95,07/02/19 10:01,"646 Lakeview St, New York City, NY 10001" +227805,AAA Batteries (4-pack),1,2.99,07/13/19 13:00,"942 5th St, San Francisco, CA 94016" +227806,Apple Airpods Headphones,1,150,07/19/19 15:22,"968 7th St, Atlanta, GA 30301" +227807,Lightning Charging Cable,1,14.95,07/31/19 13:21,"323 13th St, Portland, OR 97035" +227808,Macbook Pro Laptop,1,1700,07/20/19 12:10,"548 7th St, San Francisco, CA 94016" +227809,Wired Headphones,1,11.99,07/08/19 12:29,"781 Madison St, Los Angeles, CA 90001" +227810,USB-C Charging Cable,1,11.95,07/22/19 11:55,"238 2nd St, Dallas, TX 75001" +227811,USB-C Charging Cable,1,11.95,07/27/19 11:11,"4 Hill St, San Francisco, CA 94016" +227812,Bose SoundSport Headphones,1,99.99,07/02/19 21:17,"673 West St, Dallas, TX 75001" +227813,Flatscreen TV,1,300,07/11/19 09:09,"68 Jackson St, Dallas, TX 75001" +227814,iPhone,1,700,07/01/19 11:59,"764 Hickory St, Dallas, TX 75001" +227815,AA Batteries (4-pack),1,3.84,07/05/19 16:39,"395 Park St, Atlanta, GA 30301" +227816,iPhone,1,700,07/11/19 14:21,"597 Lakeview St, Atlanta, GA 30301" +227817,AA Batteries (4-pack),1,3.84,07/08/19 13:53,"192 Meadow St, Austin, TX 73301" +227818,34in Ultrawide Monitor,1,379.99,07/22/19 10:12,"258 River St, San Francisco, CA 94016" +227819,Macbook Pro Laptop,1,1700,07/29/19 09:13,"910 Highland St, Seattle, WA 98101" +227820,ThinkPad Laptop,1,999.99,07/05/19 22:30,"823 14th St, Dallas, TX 75001" +227821,AA Batteries (4-pack),2,3.84,07/27/19 12:55,"837 Sunset St, Boston, MA 02215" +227822,Vareebadd Phone,1,400,07/24/19 09:07,"2 1st St, New York City, NY 10001" +227822,Bose SoundSport Headphones,1,99.99,07/24/19 09:07,"2 1st St, New York City, NY 10001" +227823,27in 4K Gaming Monitor,1,389.99,07/18/19 10:40,"425 Ridge St, Los Angeles, CA 90001" +227824,Wired Headphones,1,11.99,07/31/19 00:41,"682 Hill St, Dallas, TX 75001" +227825,iPhone,1,700,07/24/19 11:11,"304 Main St, San Francisco, CA 94016" +227826,Flatscreen TV,1,300,07/02/19 17:37,"27 Madison St, Portland, OR 97035" +227827,Wired Headphones,1,11.99,07/06/19 11:04,"192 Main St, San Francisco, CA 94016" +227827,Bose SoundSport Headphones,1,99.99,07/06/19 11:04,"192 Main St, San Francisco, CA 94016" +227828,Apple Airpods Headphones,1,150,07/06/19 00:17,"673 8th St, Boston, MA 02215" +227829,34in Ultrawide Monitor,1,379.99,07/24/19 08:06,"194 Ridge St, Boston, MA 02215" +227830,AAA Batteries (4-pack),2,2.99,07/06/19 17:47,"447 12th St, Los Angeles, CA 90001" +227831,Wired Headphones,1,11.99,07/19/19 10:43,"394 1st St, Atlanta, GA 30301" +227832,USB-C Charging Cable,1,11.95,07/02/19 18:49,"853 14th St, Boston, MA 02215" +227833,Google Phone,1,600,07/15/19 08:54,"418 8th St, New York City, NY 10001" +227834,27in 4K Gaming Monitor,1,389.99,07/21/19 18:39,"145 Center St, Los Angeles, CA 90001" +227835,AAA Batteries (4-pack),1,2.99,07/09/19 19:31,"105 Willow St, New York City, NY 10001" +227836,27in 4K Gaming Monitor,1,389.99,07/20/19 22:21,"535 13th St, Atlanta, GA 30301" +227837,Bose SoundSport Headphones,1,99.99,07/25/19 14:38,"418 Lincoln St, San Francisco, CA 94016" +227838,Wired Headphones,1,11.99,07/02/19 13:20,"4 South St, Boston, MA 02215" +227839,AAA Batteries (4-pack),1,2.99,07/15/19 12:51,"436 6th St, San Francisco, CA 94016" +227840,AAA Batteries (4-pack),1,2.99,07/15/19 10:53,"127 Lake St, Portland, OR 97035" +227841,USB-C Charging Cable,1,11.95,07/27/19 12:31,"833 12th St, San Francisco, CA 94016" +227842,Apple Airpods Headphones,1,150,07/16/19 19:44,"618 Jackson St, New York City, NY 10001" +227842,USB-C Charging Cable,2,11.95,07/16/19 19:44,"618 Jackson St, New York City, NY 10001" +227843,Apple Airpods Headphones,1,150,07/27/19 20:13,"921 Cherry St, Portland, OR 97035" +227844,USB-C Charging Cable,1,11.95,07/26/19 17:41,"998 7th St, San Francisco, CA 94016" +227845,Wired Headphones,1,11.99,07/22/19 22:59,"526 Spruce St, Dallas, TX 75001" +227846,AAA Batteries (4-pack),2,2.99,07/15/19 12:33,"393 Lakeview St, Los Angeles, CA 90001" +227847,34in Ultrawide Monitor,1,379.99,07/06/19 16:56,"644 10th St, Atlanta, GA 30301" +227848,USB-C Charging Cable,1,11.95,07/12/19 01:07,"775 Sunset St, Dallas, TX 75001" +227849,AA Batteries (4-pack),1,3.84,07/29/19 21:46,"707 Hickory St, San Francisco, CA 94016" +227850,Lightning Charging Cable,1,14.95,07/08/19 20:42,"955 5th St, San Francisco, CA 94016" +227851,Flatscreen TV,1,300,07/25/19 21:00,"68 Madison St, San Francisco, CA 94016" +227852,Lightning Charging Cable,1,14.95,07/23/19 17:20,"66 Lake St, Los Angeles, CA 90001" +227853,Bose SoundSport Headphones,1,99.99,07/24/19 20:51,"224 Lake St, Los Angeles, CA 90001" +227854,AA Batteries (4-pack),2,3.84,07/01/19 19:00,"247 Sunset St, Los Angeles, CA 90001" +227855,Wired Headphones,1,11.99,07/24/19 13:22,"647 Cherry St, Atlanta, GA 30301" +227856,Apple Airpods Headphones,1,150,07/07/19 13:50,"90 River St, Austin, TX 73301" +227857,27in 4K Gaming Monitor,1,389.99,07/22/19 15:07,"569 5th St, Dallas, TX 75001" +227858,AAA Batteries (4-pack),3,2.99,07/07/19 14:43,"437 Chestnut St, New York City, NY 10001" +227859,Wired Headphones,1,11.99,07/07/19 09:59,"773 Hickory St, Atlanta, GA 30301" +227860,20in Monitor,1,109.99,07/07/19 22:37,"825 Lake St, Atlanta, GA 30301" +227861,Bose SoundSport Headphones,1,99.99,07/08/19 11:04,"226 4th St, New York City, NY 10001" +227862,34in Ultrawide Monitor,1,379.99,07/16/19 18:53,"432 Cherry St, Los Angeles, CA 90001" +227863,USB-C Charging Cable,1,11.95,07/28/19 20:56,"529 Sunset St, San Francisco, CA 94016" +227864,Wired Headphones,1,11.99,07/15/19 19:47,"458 Meadow St, Austin, TX 73301" +227865,Lightning Charging Cable,1,14.95,07/20/19 22:49,"296 Washington St, Boston, MA 02215" +227866,27in 4K Gaming Monitor,1,389.99,07/13/19 06:19,"455 8th St, San Francisco, CA 94016" +227867,AAA Batteries (4-pack),1,2.99,07/15/19 13:43,"215 Dogwood St, New York City, NY 10001" +227868,34in Ultrawide Monitor,1,379.99,07/31/19 12:41,"950 13th St, Atlanta, GA 30301" +227869,Lightning Charging Cable,1,14.95,07/16/19 22:52,"635 Forest St, Dallas, TX 75001" +227870,Wired Headphones,1,11.99,07/25/19 22:49,"410 Hickory St, New York City, NY 10001" +227871,Lightning Charging Cable,1,14.95,07/31/19 11:44,"627 4th St, Austin, TX 73301" +227872,Wired Headphones,1,11.99,07/16/19 20:33,"599 Park St, New York City, NY 10001" +227873,34in Ultrawide Monitor,1,379.99,07/28/19 16:31,"372 Walnut St, Los Angeles, CA 90001" +227874,Google Phone,1,600,07/19/19 12:24,"67 Dogwood St, Atlanta, GA 30301" +227875,Lightning Charging Cable,2,14.95,07/12/19 21:05,"118 North St, San Francisco, CA 94016" +227876,USB-C Charging Cable,1,11.95,07/14/19 19:10,"168 Lincoln St, Dallas, TX 75001" +227877,AAA Batteries (4-pack),1,2.99,07/26/19 11:40,"144 Wilson St, Los Angeles, CA 90001" +227878,Wired Headphones,1,11.99,07/15/19 20:50,"349 Chestnut St, Austin, TX 73301" +227879,Bose SoundSport Headphones,1,99.99,07/27/19 19:20,"188 Maple St, Atlanta, GA 30301" +227880,ThinkPad Laptop,1,999.99,07/27/19 10:01,"440 Highland St, Portland, OR 97035" +227881,AA Batteries (4-pack),1,3.84,07/14/19 13:08,"360 Madison St, Dallas, TX 75001" +227882,AAA Batteries (4-pack),2,2.99,07/19/19 09:25,"298 Walnut St, Los Angeles, CA 90001" +227883,Lightning Charging Cable,1,14.95,07/03/19 18:40,"923 2nd St, New York City, NY 10001" +227884,20in Monitor,1,109.99,07/27/19 12:32,"95 Church St, San Francisco, CA 94016" +227885,AA Batteries (4-pack),1,3.84,07/18/19 10:55,"251 Johnson St, San Francisco, CA 94016" +227886,ThinkPad Laptop,1,999.99,07/23/19 12:33,"129 1st St, San Francisco, CA 94016" +227887,Apple Airpods Headphones,1,150,07/24/19 15:49,"133 Walnut St, Portland, OR 97035" +227888,Lightning Charging Cable,1,14.95,07/07/19 09:04,"300 11th St, New York City, NY 10001" +227889,Lightning Charging Cable,1,14.95,07/10/19 10:05,"711 Washington St, Los Angeles, CA 90001" +227890,USB-C Charging Cable,1,11.95,07/16/19 17:04,"214 12th St, New York City, NY 10001" +227891,USB-C Charging Cable,1,11.95,07/18/19 20:02,"803 10th St, San Francisco, CA 94016" +227892,Flatscreen TV,1,300,07/09/19 09:35,"915 Sunset St, Los Angeles, CA 90001" +227893,Lightning Charging Cable,1,14.95,07/19/19 13:50,"358 Lincoln St, Austin, TX 73301" +227894,Bose SoundSport Headphones,1,99.99,07/12/19 16:39,"905 River St, San Francisco, CA 94016" +227895,Lightning Charging Cable,1,14.95,07/29/19 17:08,"7 11th St, Seattle, WA 98101" +227896,Lightning Charging Cable,1,14.95,07/20/19 14:09,"826 14th St, Los Angeles, CA 90001" +227897,Apple Airpods Headphones,1,150,07/17/19 09:50,"187 South St, Boston, MA 02215" +227898,Apple Airpods Headphones,1,150,07/20/19 14:34,"397 10th St, Atlanta, GA 30301" +227899,AAA Batteries (4-pack),1,2.99,07/07/19 07:05,"975 Highland St, Seattle, WA 98101" +227900,Bose SoundSport Headphones,1,99.99,07/21/19 08:03,"639 5th St, Los Angeles, CA 90001" +227901,Wired Headphones,1,11.99,07/21/19 10:36,"762 Jackson St, Portland, OR 97035" +227902,27in FHD Monitor,1,149.99,07/06/19 20:57,"342 Chestnut St, Atlanta, GA 30301" +227903,AA Batteries (4-pack),1,3.84,07/30/19 12:22,"796 1st St, Austin, TX 73301" +227904,Lightning Charging Cable,1,14.95,07/17/19 15:16,"155 Lincoln St, Seattle, WA 98101" +227905,AAA Batteries (4-pack),1,2.99,07/03/19 11:58,"965 Cedar St, San Francisco, CA 94016" +227906,Wired Headphones,1,11.99,07/15/19 12:32,"883 4th St, Portland, OR 97035" +227907,Lightning Charging Cable,1,14.95,07/23/19 19:09,"799 Cherry St, Boston, MA 02215" +227908,AA Batteries (4-pack),1,3.84,07/06/19 13:45,"102 11th St, San Francisco, CA 94016" +227909,Vareebadd Phone,1,400,07/04/19 15:35,"912 13th St, New York City, NY 10001" +227910,iPhone,1,700,07/18/19 12:02,"498 Ridge St, Seattle, WA 98101" +227910,Lightning Charging Cable,1,14.95,07/18/19 12:02,"498 Ridge St, Seattle, WA 98101" +227911,Lightning Charging Cable,1,14.95,07/18/19 18:09,"786 13th St, Portland, OR 97035" +227912,20in Monitor,1,109.99,07/26/19 20:11,"78 6th St, Boston, MA 02215" +227913,Lightning Charging Cable,1,14.95,07/13/19 14:00,"216 River St, New York City, NY 10001" +227913,27in 4K Gaming Monitor,1,389.99,07/13/19 14:00,"216 River St, New York City, NY 10001" +227914,27in 4K Gaming Monitor,1,389.99,07/19/19 13:13,"105 Jackson St, Austin, TX 73301" +227915,USB-C Charging Cable,1,11.95,07/10/19 20:24,"737 1st St, Atlanta, GA 30301" +227916,AA Batteries (4-pack),1,3.84,07/24/19 20:51,"10 North St, Los Angeles, CA 90001" +227917,AAA Batteries (4-pack),1,2.99,07/26/19 19:09,"437 Chestnut St, San Francisco, CA 94016" +227918,Flatscreen TV,1,300,07/31/19 18:10,"63 Center St, Portland, OR 97035" +227919,Apple Airpods Headphones,1,150,07/03/19 17:48,"70 Chestnut St, Los Angeles, CA 90001" +227920,20in Monitor,1,109.99,07/15/19 04:15,"653 6th St, Austin, TX 73301" +227921,Bose SoundSport Headphones,1,99.99,07/31/19 18:36,"563 Dogwood St, New York City, NY 10001" +227922,Lightning Charging Cable,2,14.95,07/03/19 23:09,"773 Adams St, San Francisco, CA 94016" +227923,Wired Headphones,1,11.99,07/26/19 11:04,"838 North St, Los Angeles, CA 90001" +227924,27in FHD Monitor,1,149.99,07/18/19 15:33,"917 9th St, Dallas, TX 75001" +227925,USB-C Charging Cable,1,11.95,07/28/19 16:54,"648 Maple St, Atlanta, GA 30301" +227926,AA Batteries (4-pack),2,3.84,07/15/19 20:35,"983 Pine St, New York City, NY 10001" +227927,AAA Batteries (4-pack),1,2.99,07/09/19 16:06,"617 Madison St, New York City, NY 10001" +227928,USB-C Charging Cable,1,11.95,07/13/19 15:28,"307 Wilson St, Boston, MA 02215" +227929,AAA Batteries (4-pack),1,2.99,07/22/19 10:02,"532 Chestnut St, Portland, OR 97035" +227930,Lightning Charging Cable,1,14.95,07/21/19 12:44,"953 5th St, New York City, NY 10001" +227931,USB-C Charging Cable,1,11.95,07/22/19 11:29,"3 Johnson St, Dallas, TX 75001" +227932,27in 4K Gaming Monitor,1,389.99,07/06/19 07:47,"229 Wilson St, Los Angeles, CA 90001" +227933,Lightning Charging Cable,1,14.95,07/13/19 13:07,"274 10th St, Dallas, TX 75001" +227934,Flatscreen TV,1,300,07/09/19 19:42,"833 14th St, Dallas, TX 75001" +227935,Wired Headphones,2,11.99,07/03/19 17:07,"757 12th St, San Francisco, CA 94016" +227936,34in Ultrawide Monitor,1,379.99,07/05/19 10:07,"592 12th St, Seattle, WA 98101" +227937,Bose SoundSport Headphones,1,99.99,07/31/19 12:13,"841 Maple St, New York City, NY 10001" +227938,AA Batteries (4-pack),1,3.84,07/25/19 18:26,"376 1st St, Seattle, WA 98101" +227939,Apple Airpods Headphones,1,150,07/20/19 21:04,"534 West St, New York City, NY 10001" +227940,AAA Batteries (4-pack),2,2.99,07/14/19 19:42,"981 Ridge St, New York City, NY 10001" +227941,Bose SoundSport Headphones,1,99.99,07/27/19 14:11,"139 Hill St, San Francisco, CA 94016" +227942,Macbook Pro Laptop,1,1700,07/10/19 10:22,"886 Spruce St, Boston, MA 02215" +227943,27in FHD Monitor,1,149.99,07/07/19 12:40,"370 Wilson St, New York City, NY 10001" +227944,AAA Batteries (4-pack),1,2.99,07/25/19 00:00,"831 Hill St, Austin, TX 73301" +227945,Google Phone,1,600,07/01/19 21:29,"699 6th St, San Francisco, CA 94016" +227946,iPhone,1,700,07/02/19 22:46,"693 1st St, Boston, MA 02215" +227946,Lightning Charging Cable,1,14.95,07/02/19 22:46,"693 1st St, Boston, MA 02215" +227946,Apple Airpods Headphones,1,150,07/02/19 22:46,"693 1st St, Boston, MA 02215" +227947,AA Batteries (4-pack),1,3.84,07/07/19 10:43,"306 4th St, San Francisco, CA 94016" +227948,27in FHD Monitor,1,149.99,07/07/19 18:20,"469 13th St, Atlanta, GA 30301" +227949,USB-C Charging Cable,1,11.95,07/03/19 09:10,"921 South St, Dallas, TX 75001" +227950,Bose SoundSport Headphones,1,99.99,07/31/19 16:40,"134 Maple St, New York City, NY 10001" +227951,27in FHD Monitor,1,149.99,07/19/19 18:55,"61 West St, Boston, MA 02215" +227952,27in 4K Gaming Monitor,1,389.99,07/22/19 18:51,"591 Main St, Seattle, WA 98101" +227953,AAA Batteries (4-pack),2,2.99,07/20/19 20:30,"257 Madison St, Los Angeles, CA 90001" +227954,Apple Airpods Headphones,1,150,07/07/19 18:56,"422 Chestnut St, San Francisco, CA 94016" +227955,ThinkPad Laptop,1,999.99,07/02/19 08:55,"400 9th St, San Francisco, CA 94016" +227956,27in 4K Gaming Monitor,1,389.99,07/04/19 14:41,"778 Pine St, San Francisco, CA 94016" +227957,AA Batteries (4-pack),1,3.84,07/08/19 15:07,"603 Park St, Boston, MA 02215" +227958,AAA Batteries (4-pack),2,2.99,07/31/19 22:02,"365 Chestnut St, Dallas, TX 75001" +227959,Lightning Charging Cable,1,14.95,07/17/19 10:30,"947 Center St, San Francisco, CA 94016" +227960,AAA Batteries (4-pack),1,2.99,07/12/19 08:05,"922 5th St, Los Angeles, CA 90001" +227961,Lightning Charging Cable,1,14.95,07/09/19 07:36,"734 12th St, San Francisco, CA 94016" +227962,USB-C Charging Cable,1,11.95,07/31/19 16:56,"993 Lakeview St, Los Angeles, CA 90001" +227963,Lightning Charging Cable,1,14.95,07/03/19 19:24,"926 7th St, San Francisco, CA 94016" +227964,Bose SoundSport Headphones,1,99.99,07/16/19 12:22,"12 Hill St, Los Angeles, CA 90001" +227965,Lightning Charging Cable,1,14.95,07/06/19 19:25,"993 South St, San Francisco, CA 94016" +227966,20in Monitor,1,109.99,07/24/19 15:03,"503 6th St, San Francisco, CA 94016" +227967,Apple Airpods Headphones,1,150,07/24/19 16:46,"915 Washington St, Atlanta, GA 30301" +227968,AAA Batteries (4-pack),1,2.99,07/26/19 09:55,"55 West St, Austin, TX 73301" +227969,34in Ultrawide Monitor,1,379.99,07/30/19 17:05,"978 Hickory St, San Francisco, CA 94016" +227970,AAA Batteries (4-pack),1,2.99,07/09/19 11:42,"370 Jackson St, Los Angeles, CA 90001" +227971,Lightning Charging Cable,1,14.95,07/30/19 17:32,"711 Jefferson St, New York City, NY 10001" +227972,Wired Headphones,1,11.99,07/22/19 09:18,"494 1st St, Dallas, TX 75001" +227973,Lightning Charging Cable,1,14.95,07/22/19 14:30,"322 7th St, New York City, NY 10001" +227974,Wired Headphones,1,11.99,07/06/19 22:37,"102 Center St, Dallas, TX 75001" +227975,Wired Headphones,1,11.99,07/13/19 21:27,"514 Maple St, Dallas, TX 75001" +227976,AAA Batteries (4-pack),2,2.99,07/10/19 17:22,"236 1st St, Dallas, TX 75001" +227977,Wired Headphones,1,11.99,07/18/19 11:55,"569 9th St, Atlanta, GA 30301" +227978,20in Monitor,1,109.99,07/31/19 15:24,"110 Elm St, San Francisco, CA 94016" +227979,Lightning Charging Cable,1,14.95,07/22/19 15:35,"554 Chestnut St, New York City, NY 10001" +227980,Lightning Charging Cable,1,14.95,07/02/19 22:18,"116 Cedar St, Seattle, WA 98101" +227981,Google Phone,1,600,07/29/19 11:06,"301 10th St, Los Angeles, CA 90001" +227981,Wired Headphones,1,11.99,07/29/19 11:06,"301 10th St, Los Angeles, CA 90001" +227982,Lightning Charging Cable,2,14.95,07/06/19 14:31,"657 5th St, Dallas, TX 75001" +227983,27in FHD Monitor,1,149.99,07/29/19 03:51,"933 Lakeview St, San Francisco, CA 94016" +227984,AA Batteries (4-pack),1,3.84,07/29/19 18:47,"793 2nd St, Portland, OR 97035" +227985,27in 4K Gaming Monitor,1,389.99,07/01/19 21:18,"636 Chestnut St, New York City, NY 10001" +227986,USB-C Charging Cable,1,11.95,07/04/19 17:14,"141 River St, Portland, OR 97035" +227987,20in Monitor,1,109.99,07/01/19 13:51,"480 Chestnut St, Boston, MA 02215" +227988,USB-C Charging Cable,1,11.95,07/15/19 12:16,"77 Dogwood St, New York City, NY 10001" +227989,AAA Batteries (4-pack),2,2.99,07/19/19 23:07,"159 Pine St, San Francisco, CA 94016" +227990,AA Batteries (4-pack),1,3.84,07/10/19 15:56,"573 Forest St, Los Angeles, CA 90001" +227991,Apple Airpods Headphones,1,150,07/01/19 05:09,"731 Adams St, Boston, MA 02215" +227992,Bose SoundSport Headphones,1,99.99,07/31/19 19:22,"633 4th St, Los Angeles, CA 90001" +227993,AAA Batteries (4-pack),1,2.99,07/31/19 00:02,"330 Park St, Seattle, WA 98101" +227994,USB-C Charging Cable,1,11.95,07/27/19 11:33,"138 Willow St, Austin, TX 73301" +227995,27in FHD Monitor,1,149.99,07/29/19 23:03,"764 Elm St, Dallas, TX 75001" +227996,Lightning Charging Cable,2,14.95,07/08/19 01:44,"105 Madison St, Boston, MA 02215" +227997,Google Phone,1,600,07/06/19 14:30,"925 1st St, New York City, NY 10001" +227998,Lightning Charging Cable,1,14.95,07/16/19 13:41,"494 Hickory St, Seattle, WA 98101" +227999,34in Ultrawide Monitor,1,379.99,07/05/19 13:23,"213 Adams St, Portland, OR 97035" +228000,AAA Batteries (4-pack),2,2.99,07/26/19 20:21,"910 6th St, Los Angeles, CA 90001" +228001,27in 4K Gaming Monitor,1,389.99,07/16/19 09:48,"166 6th St, New York City, NY 10001" +228002,USB-C Charging Cable,2,11.95,07/25/19 12:43,"499 Elm St, Los Angeles, CA 90001" +228003,Bose SoundSport Headphones,1,99.99,07/01/19 23:53,"849 Cedar St, Los Angeles, CA 90001" +228004,USB-C Charging Cable,1,11.95,07/02/19 11:04,"557 Adams St, Dallas, TX 75001" +228005,Wired Headphones,1,11.99,07/06/19 18:54,"975 9th St, Dallas, TX 75001" +228006,AA Batteries (4-pack),1,3.84,07/14/19 02:35,"265 Jackson St, Los Angeles, CA 90001" +228007,Macbook Pro Laptop,1,1700,07/14/19 09:28,"56 Main St, Austin, TX 73301" +228008,Apple Airpods Headphones,1,150,07/10/19 21:04,"799 1st St, New York City, NY 10001" +228009,Apple Airpods Headphones,1,150,07/13/19 11:57,"619 Jefferson St, Dallas, TX 75001" +228010,AA Batteries (4-pack),2,3.84,07/28/19 23:20,"140 Church St, Atlanta, GA 30301" +228011,USB-C Charging Cable,1,11.95,07/02/19 08:55,"929 13th St, Boston, MA 02215" +228012,27in FHD Monitor,1,149.99,07/28/19 09:49,"586 Jackson St, San Francisco, CA 94016" +228013,USB-C Charging Cable,1,11.95,07/06/19 15:36,"917 River St, New York City, NY 10001" +228014,AA Batteries (4-pack),1,3.84,07/06/19 16:30,"798 Hill St, New York City, NY 10001" +228015,Google Phone,1,600,07/20/19 14:28,"991 Cedar St, Austin, TX 73301" +228016,ThinkPad Laptop,1,999.99,07/23/19 15:43,"549 South St, Seattle, WA 98101" +228017,Lightning Charging Cable,1,14.95,07/18/19 19:15,"268 Park St, New York City, NY 10001" +228018,USB-C Charging Cable,1,11.95,07/04/19 14:17,"497 Elm St, Seattle, WA 98101" +228019,ThinkPad Laptop,1,999.99,07/15/19 10:16,"294 2nd St, Austin, TX 73301" +228020,Google Phone,1,600,07/22/19 14:42,"442 Adams St, San Francisco, CA 94016" +228021,34in Ultrawide Monitor,1,379.99,07/28/19 14:19,"651 Madison St, Atlanta, GA 30301" +228022,27in 4K Gaming Monitor,1,389.99,07/31/19 13:05,"140 7th St, New York City, NY 10001" +228023,iPhone,1,700,07/29/19 09:49,"584 Forest St, Seattle, WA 98101" +228023,Wired Headphones,1,11.99,07/29/19 09:49,"584 Forest St, Seattle, WA 98101" +228024,Bose SoundSport Headphones,1,99.99,07/19/19 15:14,"568 Lake St, San Francisco, CA 94016" +228025,27in FHD Monitor,1,149.99,07/30/19 09:17,"18 13th St, Boston, MA 02215" +228026,AA Batteries (4-pack),1,3.84,07/03/19 03:35,"322 Walnut St, San Francisco, CA 94016" +228027,20in Monitor,1,109.99,07/02/19 08:37,"194 8th St, San Francisco, CA 94016" +228028,Apple Airpods Headphones,1,150,07/27/19 20:40,"499 Adams St, San Francisco, CA 94016" +228029,AA Batteries (4-pack),2,3.84,07/03/19 21:42,"801 14th St, Dallas, TX 75001" +228030,AA Batteries (4-pack),1,3.84,07/22/19 18:40,"430 Elm St, San Francisco, CA 94016" +228031,27in 4K Gaming Monitor,1,389.99,07/09/19 20:50,"616 5th St, Portland, OR 97035" +228032,Wired Headphones,1,11.99,07/05/19 18:22,"549 10th St, New York City, NY 10001" +228033,Bose SoundSport Headphones,1,99.99,07/05/19 10:30,"35 11th St, Los Angeles, CA 90001" +228034,Bose SoundSport Headphones,1,99.99,07/16/19 14:13,"717 Elm St, San Francisco, CA 94016" +228035,AAA Batteries (4-pack),1,2.99,07/02/19 10:16,"432 Spruce St, San Francisco, CA 94016" +228035,Bose SoundSport Headphones,1,99.99,07/02/19 10:16,"432 Spruce St, San Francisco, CA 94016" +228036,AAA Batteries (4-pack),2,2.99,07/20/19 20:35,"54 Meadow St, Seattle, WA 98101" +228037,Wired Headphones,1,11.99,07/02/19 20:38,"510 8th St, Los Angeles, CA 90001" +228038,USB-C Charging Cable,1,11.95,07/14/19 19:04,"132 12th St, Boston, MA 02215" +228039,AA Batteries (4-pack),1,3.84,07/22/19 17:28,"926 11th St, Atlanta, GA 30301" +228040,Apple Airpods Headphones,1,150,07/20/19 14:46,"830 Chestnut St, San Francisco, CA 94016" +228041,iPhone,1,700,07/16/19 14:46,"37 Washington St, Los Angeles, CA 90001" +228041,Wired Headphones,1,11.99,07/16/19 14:46,"37 Washington St, Los Angeles, CA 90001" +228042,Bose SoundSport Headphones,1,99.99,07/07/19 20:13,"193 9th St, Dallas, TX 75001" +228043,AA Batteries (4-pack),3,3.84,07/03/19 15:12,"121 Walnut St, Atlanta, GA 30301" +228044,Bose SoundSport Headphones,1,99.99,07/01/19 14:13,"797 Forest St, Austin, TX 73301" +228045,34in Ultrawide Monitor,1,379.99,07/06/19 06:26,"84 Spruce St, Atlanta, GA 30301" +228046,Wired Headphones,1,11.99,07/28/19 14:13,"932 Jefferson St, Seattle, WA 98101" +228047,Lightning Charging Cable,1,14.95,07/14/19 19:46,"171 Washington St, Dallas, TX 75001" +228048,ThinkPad Laptop,1,999.99,07/15/19 14:29,"379 Hill St, San Francisco, CA 94016" +228049,AAA Batteries (4-pack),1,2.99,07/06/19 18:16,"846 Jefferson St, New York City, NY 10001" +228050,20in Monitor,1,109.99,07/16/19 20:47,"272 Willow St, Portland, OR 97035" +228051,USB-C Charging Cable,1,11.95,07/14/19 21:04,"214 Sunset St, New York City, NY 10001" +228052,AAA Batteries (4-pack),1,2.99,07/26/19 12:35,"488 5th St, Seattle, WA 98101" +228053,AA Batteries (4-pack),1,3.84,07/10/19 19:07,"829 Willow St, Portland, OR 97035" +228054,AAA Batteries (4-pack),1,2.99,07/14/19 13:57,"464 Pine St, Boston, MA 02215" +228055,Lightning Charging Cable,1,14.95,07/21/19 11:08,"236 1st St, San Francisco, CA 94016" +228056,AA Batteries (4-pack),1,3.84,07/05/19 16:13,"418 Park St, Boston, MA 02215" +228057,Wired Headphones,1,11.99,07/04/19 21:53,"46 Church St, San Francisco, CA 94016" +228058,Apple Airpods Headphones,1,150,07/19/19 20:18,"568 Center St, San Francisco, CA 94016" +228059,Macbook Pro Laptop,1,1700,07/18/19 15:41,"826 6th St, Atlanta, GA 30301" +228060,Wired Headphones,1,11.99,07/18/19 15:07,"828 Lincoln St, San Francisco, CA 94016" +228061,iPhone,1,700,07/18/19 18:30,"357 North St, Los Angeles, CA 90001" +228062,20in Monitor,1,109.99,07/20/19 16:45,"285 8th St, Atlanta, GA 30301" +228063,AA Batteries (4-pack),1,3.84,07/03/19 02:26,"975 Jefferson St, Boston, MA 02215" +228064,Bose SoundSport Headphones,1,99.99,07/18/19 05:19,"762 Park St, Austin, TX 73301" +228065,Lightning Charging Cable,1,14.95,07/20/19 11:57,"506 1st St, Dallas, TX 75001" +228066,Bose SoundSport Headphones,1,99.99,07/26/19 19:26,"209 Jackson St, San Francisco, CA 94016" +228067,Lightning Charging Cable,2,14.95,07/09/19 19:21,"232 Elm St, San Francisco, CA 94016" +228068,27in 4K Gaming Monitor,1,389.99,07/17/19 19:08,"891 Church St, San Francisco, CA 94016" +228069,USB-C Charging Cable,2,11.95,07/10/19 13:50,"172 7th St, Atlanta, GA 30301" +228070,Bose SoundSport Headphones,1,99.99,07/07/19 05:04,"853 8th St, Dallas, TX 75001" +228071,AA Batteries (4-pack),1,3.84,07/11/19 19:03,"830 Madison St, Dallas, TX 75001" +228072,LG Washing Machine,1,600.0,07/05/19 19:36,"648 Highland St, Dallas, TX 75001" +228073,27in FHD Monitor,1,149.99,07/10/19 23:17,"713 Center St, New York City, NY 10001" +228074,Lightning Charging Cable,1,14.95,07/23/19 16:03,"455 Cherry St, New York City, NY 10001" +228075,Google Phone,1,600,07/27/19 22:16,"609 Washington St, Seattle, WA 98101" +228076,iPhone,1,700,07/02/19 07:20,"337 North St, Atlanta, GA 30301" +228076,Lightning Charging Cable,1,14.95,07/02/19 07:20,"337 North St, Atlanta, GA 30301" +228077,AAA Batteries (4-pack),2,2.99,07/02/19 23:13,"837 River St, Dallas, TX 75001" +228078,AAA Batteries (4-pack),1,2.99,07/13/19 18:25,"957 Hickory St, New York City, NY 10001" +228079,Vareebadd Phone,1,400,07/17/19 15:47,"174 North St, Boston, MA 02215" +228080,AAA Batteries (4-pack),1,2.99,07/07/19 14:19,"31 Ridge St, San Francisco, CA 94016" +228081,Apple Airpods Headphones,1,150,07/09/19 23:38,"532 Adams St, San Francisco, CA 94016" +228082,USB-C Charging Cable,1,11.95,07/07/19 15:44,"531 Washington St, Boston, MA 02215" +228083,Apple Airpods Headphones,1,150,07/20/19 06:52,"497 Highland St, Dallas, TX 75001" +228084,Bose SoundSport Headphones,1,99.99,07/29/19 22:06,"847 Dogwood St, San Francisco, CA 94016" +228085,Bose SoundSport Headphones,1,99.99,07/09/19 12:30,"112 1st St, New York City, NY 10001" +228086,AA Batteries (4-pack),1,3.84,07/14/19 11:17,"432 7th St, New York City, NY 10001" +228087,27in 4K Gaming Monitor,1,389.99,07/03/19 21:24,"509 Park St, Seattle, WA 98101" +228088,iPhone,1,700,07/14/19 13:11,"418 Spruce St, Austin, TX 73301" +228089,34in Ultrawide Monitor,1,379.99,07/21/19 14:34,"882 Meadow St, Boston, MA 02215" +228090,Lightning Charging Cable,1,14.95,07/17/19 08:44,"795 Johnson St, Portland, OR 97035" +228091,USB-C Charging Cable,1,11.95,07/18/19 13:19,"510 9th St, San Francisco, CA 94016" +228092,20in Monitor,1,109.99,07/08/19 20:00,"653 Wilson St, Portland, ME 04101" +228093,AA Batteries (4-pack),1,3.84,07/03/19 14:42,"471 Elm St, Los Angeles, CA 90001" +228094,Wired Headphones,2,11.99,07/10/19 14:33,"73 13th St, Austin, TX 73301" +228095,Bose SoundSport Headphones,1,99.99,07/12/19 12:07,"652 Main St, Seattle, WA 98101" +228096,34in Ultrawide Monitor,1,379.99,07/18/19 22:07,"96 Hickory St, Seattle, WA 98101" +228097,Lightning Charging Cable,1,14.95,07/06/19 09:24,"563 Hill St, Los Angeles, CA 90001" +228098,Bose SoundSport Headphones,1,99.99,07/04/19 23:09,"666 Hickory St, Dallas, TX 75001" +228099,USB-C Charging Cable,1,11.95,07/15/19 23:17,"961 Maple St, New York City, NY 10001" +228100,Google Phone,1,600,07/17/19 15:27,"215 Lake St, New York City, NY 10001" +228101,USB-C Charging Cable,1,11.95,07/14/19 10:29,"138 1st St, Los Angeles, CA 90001" +228102,AA Batteries (4-pack),1,3.84,07/29/19 18:43,"257 10th St, Atlanta, GA 30301" +228103,AAA Batteries (4-pack),1,2.99,07/22/19 20:09,"308 Forest St, San Francisco, CA 94016" +228104,USB-C Charging Cable,1,11.95,07/26/19 12:43,"226 Washington St, Los Angeles, CA 90001" +228105,Wired Headphones,1,11.99,07/03/19 10:35,"569 Elm St, San Francisco, CA 94016" +228106,Google Phone,1,600,07/21/19 15:55,"529 Cedar St, Austin, TX 73301" +228106,USB-C Charging Cable,1,11.95,07/21/19 15:55,"529 Cedar St, Austin, TX 73301" +228107,AA Batteries (4-pack),1,3.84,07/03/19 18:20,"723 13th St, Boston, MA 02215" +228108,Vareebadd Phone,1,400,07/16/19 16:51,"197 Pine St, New York City, NY 10001" +228108,Bose SoundSport Headphones,1,99.99,07/16/19 16:51,"197 Pine St, New York City, NY 10001" +228109,AAA Batteries (4-pack),1,2.99,07/04/19 18:56,"293 Jackson St, Atlanta, GA 30301" +228110,Flatscreen TV,1,300,07/18/19 10:12,"128 Lincoln St, Austin, TX 73301" +228111,Vareebadd Phone,1,400,07/30/19 16:02,"705 Willow St, Boston, MA 02215" +228111,USB-C Charging Cable,1,11.95,07/30/19 16:02,"705 Willow St, Boston, MA 02215" +228112,Lightning Charging Cable,1,14.95,07/29/19 18:36,"309 13th St, Boston, MA 02215" +228113,USB-C Charging Cable,1,11.95,07/05/19 19:52,"220 10th St, New York City, NY 10001" +228114,AA Batteries (4-pack),2,3.84,07/04/19 10:23,"823 13th St, Boston, MA 02215" +228115,AAA Batteries (4-pack),4,2.99,07/23/19 22:21,"648 1st St, New York City, NY 10001" +228116,AAA Batteries (4-pack),1,2.99,07/27/19 14:44,"735 Dogwood St, Boston, MA 02215" +228117,Wired Headphones,1,11.99,07/14/19 12:20,"904 9th St, San Francisco, CA 94016" +228118,Google Phone,1,600,07/07/19 17:42,"161 Highland St, Seattle, WA 98101" +228119,Google Phone,1,600,07/05/19 17:15,"508 9th St, New York City, NY 10001" +228120,AAA Batteries (4-pack),3,2.99,07/22/19 08:33,"383 Pine St, San Francisco, CA 94016" +228121,AA Batteries (4-pack),1,3.84,07/14/19 14:18,"950 South St, Atlanta, GA 30301" +228122,USB-C Charging Cable,1,11.95,07/12/19 22:30,"901 Elm St, Los Angeles, CA 90001" +228123,Flatscreen TV,1,300,07/26/19 09:28,"885 Lake St, San Francisco, CA 94016" +228124,Apple Airpods Headphones,1,150,07/12/19 21:11,"376 Meadow St, Los Angeles, CA 90001" +228125,34in Ultrawide Monitor,1,379.99,07/24/19 10:26,"570 13th St, Boston, MA 02215" +228126,AA Batteries (4-pack),3,3.84,07/20/19 09:06,"807 7th St, New York City, NY 10001" +228127,Lightning Charging Cable,2,14.95,07/20/19 16:55,"543 Willow St, Portland, ME 04101" +228128,Apple Airpods Headphones,1,150,07/05/19 11:49,"770 11th St, Dallas, TX 75001" +228129,USB-C Charging Cable,1,11.95,07/03/19 18:36,"678 Wilson St, Dallas, TX 75001" +228130,Lightning Charging Cable,1,14.95,07/10/19 01:11,"448 Meadow St, San Francisco, CA 94016" +228131,Lightning Charging Cable,1,14.95,07/28/19 21:07,"980 13th St, Portland, OR 97035" +228132,Google Phone,1,600,07/09/19 10:28,"613 Willow St, Portland, OR 97035" +228133,AAA Batteries (4-pack),2,2.99,07/08/19 06:24,"578 Spruce St, Boston, MA 02215" +228134,Macbook Pro Laptop,1,1700,07/24/19 20:42,"108 Dogwood St, Atlanta, GA 30301" +228135,Lightning Charging Cable,1,14.95,07/11/19 16:45,"99 Pine St, San Francisco, CA 94016" +228136,AAA Batteries (4-pack),3,2.99,07/04/19 12:45,"565 1st St, Austin, TX 73301" +228137,AAA Batteries (4-pack),1,2.99,07/25/19 23:18,"406 Spruce St, Boston, MA 02215" +228138,Lightning Charging Cable,2,14.95,07/13/19 15:15,"482 Elm St, Los Angeles, CA 90001" +228139,27in FHD Monitor,1,149.99,07/01/19 21:15,"948 Meadow St, Atlanta, GA 30301" +228140,Flatscreen TV,1,300,07/21/19 13:52,"67 Cedar St, Dallas, TX 75001" +228141,USB-C Charging Cable,1,11.95,07/20/19 09:59,"240 Lakeview St, New York City, NY 10001" +228142,USB-C Charging Cable,1,11.95,07/03/19 22:44,"500 2nd St, Los Angeles, CA 90001" +228143,Apple Airpods Headphones,1,150,07/17/19 12:05,"913 Jackson St, New York City, NY 10001" +228144,AAA Batteries (4-pack),1,2.99,07/23/19 18:22,"659 Hickory St, San Francisco, CA 94016" +228145,AAA Batteries (4-pack),2,2.99,07/23/19 11:26,"550 Park St, Boston, MA 02215" +228146,27in FHD Monitor,1,149.99,07/09/19 13:37,"319 Forest St, Los Angeles, CA 90001" +228147,20in Monitor,1,109.99,07/29/19 13:18,"682 Adams St, Los Angeles, CA 90001" +228148,Lightning Charging Cable,1,14.95,07/23/19 13:38,"797 4th St, Los Angeles, CA 90001" +228149,AAA Batteries (4-pack),2,2.99,07/25/19 21:07,"621 2nd St, Dallas, TX 75001" +228150,AA Batteries (4-pack),2,3.84,07/28/19 09:23,"281 Willow St, New York City, NY 10001" +228151,Wired Headphones,1,11.99,07/18/19 20:36,"788 Main St, Boston, MA 02215" +228152,Apple Airpods Headphones,1,150,07/05/19 11:45,"945 Lincoln St, Portland, ME 04101" +228153,Wired Headphones,2,11.99,07/05/19 16:24,"331 Spruce St, Boston, MA 02215" +228154,Bose SoundSport Headphones,1,99.99,07/30/19 13:02,"271 West St, Portland, ME 04101" +228155,27in FHD Monitor,1,149.99,07/16/19 13:17,"911 9th St, Boston, MA 02215" +228156,Wired Headphones,1,11.99,07/11/19 08:39,"650 Hickory St, Los Angeles, CA 90001" +228157,AAA Batteries (4-pack),1,2.99,07/23/19 14:00,"888 6th St, Atlanta, GA 30301" +228158,27in 4K Gaming Monitor,1,389.99,07/04/19 00:08,"451 Sunset St, Dallas, TX 75001" +228159,Apple Airpods Headphones,1,150,07/22/19 20:37,"148 Dogwood St, New York City, NY 10001" +228160,27in FHD Monitor,1,149.99,07/25/19 14:48,"100 12th St, New York City, NY 10001" +228161,iPhone,1,700,07/10/19 20:25,"727 Willow St, Austin, TX 73301" +228162,USB-C Charging Cable,1,11.95,07/29/19 20:16,"777 South St, Seattle, WA 98101" +228163,AA Batteries (4-pack),1,3.84,07/02/19 20:19,"14 4th St, Boston, MA 02215" +228164,USB-C Charging Cable,1,11.95,07/02/19 09:54,"972 Lakeview St, New York City, NY 10001" +228165,AAA Batteries (4-pack),2,2.99,07/15/19 13:16,"506 5th St, Portland, OR 97035" +228166,Apple Airpods Headphones,1,150,07/07/19 19:05,"387 Jackson St, Seattle, WA 98101" +228167,AAA Batteries (4-pack),1,2.99,07/21/19 19:57,"534 West St, San Francisco, CA 94016" +228168,Apple Airpods Headphones,1,150,07/08/19 22:05,"242 Ridge St, Los Angeles, CA 90001" +,,,,, +228169,Apple Airpods Headphones,1,150,07/05/19 19:14,"485 Sunset St, Seattle, WA 98101" +228170,Google Phone,1,600,07/31/19 10:09,"496 River St, Boston, MA 02215" +228171,AA Batteries (4-pack),1,3.84,07/02/19 13:08,"532 Chestnut St, Los Angeles, CA 90001" +228172,AAA Batteries (4-pack),2,2.99,07/07/19 11:21,"241 2nd St, San Francisco, CA 94016" +228173,Apple Airpods Headphones,1,150,07/02/19 19:19,"108 Chestnut St, Portland, OR 97035" +228174,USB-C Charging Cable,1,11.95,07/03/19 21:10,"831 Highland St, New York City, NY 10001" +228175,Lightning Charging Cable,1,14.95,07/11/19 18:29,"324 North St, Los Angeles, CA 90001" +228176,Wired Headphones,1,11.99,07/23/19 11:51,"539 4th St, Los Angeles, CA 90001" +228177,Bose SoundSport Headphones,1,99.99,07/22/19 19:57,"944 Elm St, Austin, TX 73301" +228178,Wired Headphones,1,11.99,07/10/19 15:25,"100 Madison St, New York City, NY 10001" +228179,Bose SoundSport Headphones,1,99.99,07/12/19 14:00,"325 10th St, San Francisco, CA 94016" +228180,Wired Headphones,1,11.99,07/20/19 14:52,"391 14th St, San Francisco, CA 94016" +228181,iPhone,1,700,07/17/19 21:06,"351 Forest St, Dallas, TX 75001" +228182,AA Batteries (4-pack),2,3.84,07/02/19 15:11,"409 Center St, Los Angeles, CA 90001" +228183,ThinkPad Laptop,1,999.99,07/27/19 16:31,"104 Sunset St, Portland, OR 97035" +228184,Apple Airpods Headphones,1,150,07/12/19 20:13,"809 2nd St, New York City, NY 10001" +228185,USB-C Charging Cable,1,11.95,07/09/19 09:11,"896 Main St, Boston, MA 02215" +228186,AA Batteries (4-pack),1,3.84,07/23/19 10:59,"924 Highland St, Los Angeles, CA 90001" +228187,AA Batteries (4-pack),3,3.84,07/16/19 15:28,"786 4th St, San Francisco, CA 94016" +228188,Google Phone,1,600,07/03/19 14:18,"64 Pine St, New York City, NY 10001" +228188,Wired Headphones,1,11.99,07/03/19 14:18,"64 Pine St, New York City, NY 10001" +228189,27in 4K Gaming Monitor,1,389.99,07/22/19 22:14,"394 Park St, Portland, OR 97035" +228190,USB-C Charging Cable,1,11.95,07/21/19 01:56,"84 Dogwood St, Portland, OR 97035" +228191,Apple Airpods Headphones,1,150,07/14/19 11:01,"841 Lake St, San Francisco, CA 94016" +228192,AAA Batteries (4-pack),1,2.99,07/01/19 19:11,"371 Adams St, Boston, MA 02215" +228193,iPhone,1,700,07/16/19 16:46,"200 Park St, Portland, OR 97035" +228194,Apple Airpods Headphones,1,150,07/19/19 23:48,"255 Jefferson St, Los Angeles, CA 90001" +228195,AAA Batteries (4-pack),1,2.99,07/31/19 11:08,"199 Madison St, Los Angeles, CA 90001" +228196,Macbook Pro Laptop,1,1700,07/25/19 17:23,"545 2nd St, Boston, MA 02215" +228197,AA Batteries (4-pack),1,3.84,07/14/19 19:29,"80 Adams St, Seattle, WA 98101" +228198,Lightning Charging Cable,1,14.95,07/27/19 09:49,"354 Chestnut St, Los Angeles, CA 90001" +228199,Lightning Charging Cable,1,14.95,07/16/19 13:03,"723 Highland St, Boston, MA 02215" +228200,USB-C Charging Cable,1,11.95,07/02/19 21:54,"650 6th St, San Francisco, CA 94016" +228201,AAA Batteries (4-pack),1,2.99,07/31/19 20:17,"457 11th St, Los Angeles, CA 90001" +228202,Bose SoundSport Headphones,1,99.99,07/22/19 19:23,"231 Main St, Los Angeles, CA 90001" +228203,Wired Headphones,1,11.99,07/31/19 19:17,"960 4th St, Los Angeles, CA 90001" +228204,iPhone,1,700,07/26/19 19:09,"70 Forest St, Boston, MA 02215" +228204,Wired Headphones,1,11.99,07/26/19 19:09,"70 Forest St, Boston, MA 02215" +228205,USB-C Charging Cable,1,11.95,07/17/19 02:27,"437 2nd St, San Francisco, CA 94016" +228206,Wired Headphones,1,11.99,07/10/19 19:51,"54 Elm St, Portland, OR 97035" +228207,Apple Airpods Headphones,1,150,07/24/19 21:04,"500 North St, New York City, NY 10001" +228208,ThinkPad Laptop,1,999.99,07/23/19 15:37,"97 12th St, San Francisco, CA 94016" +228209,USB-C Charging Cable,1,11.95,07/16/19 03:06,"648 Jackson St, Atlanta, GA 30301" +228210,Bose SoundSport Headphones,1,99.99,07/24/19 12:38,"478 5th St, San Francisco, CA 94016" +228211,AAA Batteries (4-pack),1,2.99,07/02/19 22:53,"777 Meadow St, Los Angeles, CA 90001" +228212,Macbook Pro Laptop,1,1700,07/10/19 07:12,"298 Adams St, Seattle, WA 98101" +228213,iPhone,1,700,07/25/19 21:09,"926 8th St, Seattle, WA 98101" +228214,AA Batteries (4-pack),1,3.84,07/14/19 15:12,"637 Hill St, Los Angeles, CA 90001" +228215,AA Batteries (4-pack),1,3.84,07/28/19 13:46,"495 Chestnut St, New York City, NY 10001" +228216,20in Monitor,1,109.99,07/04/19 00:19,"419 Cedar St, San Francisco, CA 94016" +228217,AA Batteries (4-pack),1,3.84,07/15/19 10:49,"913 7th St, Dallas, TX 75001" +228218,Lightning Charging Cable,1,14.95,07/25/19 18:51,"380 Hill St, Seattle, WA 98101" +228219,Apple Airpods Headphones,1,150,07/27/19 16:52,"210 Dogwood St, San Francisco, CA 94016" +228220,AAA Batteries (4-pack),1,2.99,07/22/19 15:05,"118 10th St, New York City, NY 10001" +228221,Bose SoundSport Headphones,1,99.99,07/28/19 12:52,"192 Lincoln St, New York City, NY 10001" +228222,27in 4K Gaming Monitor,1,389.99,07/24/19 17:37,"669 14th St, San Francisco, CA 94016" +228223,USB-C Charging Cable,1,11.95,07/23/19 10:12,"924 Washington St, San Francisco, CA 94016" +228224,34in Ultrawide Monitor,1,379.99,07/06/19 19:39,"183 Adams St, New York City, NY 10001" +228225,AAA Batteries (4-pack),2,2.99,07/21/19 01:46,"889 Johnson St, Atlanta, GA 30301" +228226,AAA Batteries (4-pack),1,2.99,07/27/19 08:33,"233 Willow St, San Francisco, CA 94016" +228227,20in Monitor,1,109.99,07/15/19 19:55,"737 Hickory St, San Francisco, CA 94016" +228228,Apple Airpods Headphones,1,150,07/07/19 12:57,"301 Highland St, Los Angeles, CA 90001" +228229,Apple Airpods Headphones,1,150,07/07/19 17:29,"183 Center St, Dallas, TX 75001" +228230,USB-C Charging Cable,1,11.95,07/05/19 08:50,"514 7th St, Portland, OR 97035" +228230,34in Ultrawide Monitor,1,379.99,07/05/19 08:50,"514 7th St, Portland, OR 97035" +228231,Lightning Charging Cable,1,14.95,07/21/19 13:48,"248 Hickory St, Dallas, TX 75001" +228232,AAA Batteries (4-pack),3,2.99,07/20/19 21:14,"2 Church St, Austin, TX 73301" +228233,Wired Headphones,1,11.99,07/17/19 20:44,"67 2nd St, New York City, NY 10001" +228234,Vareebadd Phone,1,400,07/16/19 14:45,"21 Jackson St, San Francisco, CA 94016" +228234,Wired Headphones,1,11.99,07/16/19 14:45,"21 Jackson St, San Francisco, CA 94016" +228235,Wired Headphones,1,11.99,07/01/19 18:22,"736 11th St, Boston, MA 02215" +228236,AAA Batteries (4-pack),2,2.99,07/10/19 16:15,"845 Jefferson St, San Francisco, CA 94016" +228237,27in FHD Monitor,1,149.99,07/20/19 19:53,"142 Ridge St, San Francisco, CA 94016" +228238,Flatscreen TV,1,300,07/05/19 16:51,"621 Main St, Boston, MA 02215" +228239,27in FHD Monitor,1,149.99,07/29/19 22:21,"772 Highland St, San Francisco, CA 94016" +228240,Flatscreen TV,1,300,07/30/19 15:42,"124 5th St, San Francisco, CA 94016" +228241,27in 4K Gaming Monitor,1,389.99,07/02/19 11:48,"628 Ridge St, Austin, TX 73301" +228242,iPhone,1,700,07/17/19 15:33,"215 Dogwood St, Dallas, TX 75001" +228243,USB-C Charging Cable,1,11.95,07/04/19 01:13,"507 Center St, San Francisco, CA 94016" +228244,USB-C Charging Cable,1,11.95,07/12/19 15:32,"338 2nd St, Portland, OR 97035" +228245,AA Batteries (4-pack),2,3.84,07/12/19 13:16,"767 Lakeview St, Austin, TX 73301" +228246,34in Ultrawide Monitor,1,379.99,07/26/19 14:03,"133 11th St, San Francisco, CA 94016" +228247,Lightning Charging Cable,1,14.95,07/06/19 21:30,"430 Cedar St, San Francisco, CA 94016" +228248,Apple Airpods Headphones,1,150,07/08/19 14:05,"730 Hickory St, San Francisco, CA 94016" +228249,AA Batteries (4-pack),1,3.84,07/12/19 18:06,"979 Dogwood St, New York City, NY 10001" +228250,27in FHD Monitor,1,149.99,07/11/19 11:38,"122 1st St, Los Angeles, CA 90001" +228251,Bose SoundSport Headphones,1,99.99,07/31/19 07:28,"825 13th St, Atlanta, GA 30301" +228252,AA Batteries (4-pack),2,3.84,07/27/19 17:43,"616 Park St, San Francisco, CA 94016" +228253,Flatscreen TV,1,300,07/23/19 23:43,"196 Adams St, Boston, MA 02215" +228254,AAA Batteries (4-pack),2,2.99,07/11/19 11:26,"361 Madison St, San Francisco, CA 94016" +228255,USB-C Charging Cable,1,11.95,07/24/19 03:21,"855 Cedar St, San Francisco, CA 94016" +228256,Flatscreen TV,1,300,07/18/19 17:02,"977 Jefferson St, Los Angeles, CA 90001" +228257,20in Monitor,1,109.99,07/31/19 17:06,"59 Cedar St, New York City, NY 10001" +228258,34in Ultrawide Monitor,1,379.99,07/13/19 07:29,"427 Highland St, Dallas, TX 75001" +228259,Bose SoundSport Headphones,1,99.99,07/26/19 22:45,"317 Pine St, New York City, NY 10001" +228260,Wired Headphones,1,11.99,07/23/19 21:58,"551 Madison St, Dallas, TX 75001" +228261,ThinkPad Laptop,1,999.99,07/13/19 05:01,"284 Elm St, Austin, TX 73301" +228262,Google Phone,1,600,07/13/19 17:27,"557 South St, Dallas, TX 75001" +228263,AA Batteries (4-pack),1,3.84,07/08/19 02:46,"845 Ridge St, Austin, TX 73301" +228264,Wired Headphones,2,11.99,07/23/19 18:10,"932 Madison St, Atlanta, GA 30301" +228265,AA Batteries (4-pack),1,3.84,07/01/19 21:11,"582 River St, San Francisco, CA 94016" +228266,27in FHD Monitor,1,149.99,07/22/19 10:33,"708 1st St, Boston, MA 02215" +228267,Wired Headphones,1,11.99,07/19/19 09:23,"316 Johnson St, Dallas, TX 75001" +228268,Bose SoundSport Headphones,1,99.99,07/10/19 14:10,"795 River St, San Francisco, CA 94016" +228269,iPhone,1,700,07/05/19 18:15,"511 Willow St, Los Angeles, CA 90001" +228269,Lightning Charging Cable,1,14.95,07/05/19 18:15,"511 Willow St, Los Angeles, CA 90001" +228270,USB-C Charging Cable,1,11.95,07/29/19 09:25,"554 Church St, Seattle, WA 98101" +228271,AAA Batteries (4-pack),1,2.99,07/25/19 14:17,"922 Wilson St, Boston, MA 02215" +228272,Wired Headphones,1,11.99,07/13/19 15:17,"353 Adams St, Dallas, TX 75001" +228273,27in 4K Gaming Monitor,1,389.99,07/24/19 17:52,"698 2nd St, San Francisco, CA 94016" +228274,AA Batteries (4-pack),2,3.84,07/04/19 14:57,"494 Cherry St, Dallas, TX 75001" +228275,Macbook Pro Laptop,1,1700,07/09/19 20:57,"630 Lincoln St, San Francisco, CA 94016" +228276,AA Batteries (4-pack),2,3.84,07/10/19 09:28,"627 Chestnut St, New York City, NY 10001" +228277,AA Batteries (4-pack),1,3.84,07/19/19 22:05,"415 Johnson St, San Francisco, CA 94016" +228278,AAA Batteries (4-pack),1,2.99,07/05/19 09:22,"378 Lincoln St, New York City, NY 10001" +228279,USB-C Charging Cable,1,11.95,07/13/19 15:46,"399 Hill St, Los Angeles, CA 90001" +228280,USB-C Charging Cable,1,11.95,07/10/19 09:48,"260 North St, San Francisco, CA 94016" +,,,,, +228281,ThinkPad Laptop,1,999.99,07/25/19 20:14,"345 Cherry St, San Francisco, CA 94016" +,,,,, +228282,Bose SoundSport Headphones,1,99.99,07/15/19 18:33,"121 Forest St, Boston, MA 02215" +228283,34in Ultrawide Monitor,1,379.99,07/21/19 17:34,"82 4th St, Atlanta, GA 30301" +228284,Wired Headphones,1,11.99,07/08/19 05:21,"16 Sunset St, San Francisco, CA 94016" +228285,iPhone,1,700,07/02/19 18:47,"700 Adams St, San Francisco, CA 94016" +228285,Wired Headphones,1,11.99,07/02/19 18:47,"700 Adams St, San Francisco, CA 94016" +228286,27in 4K Gaming Monitor,1,389.99,07/06/19 16:00,"470 7th St, Boston, MA 02215" +228286,34in Ultrawide Monitor,1,379.99,07/06/19 16:00,"470 7th St, Boston, MA 02215" +228287,AAA Batteries (4-pack),1,2.99,07/03/19 13:38,"463 10th St, New York City, NY 10001" +228288,Apple Airpods Headphones,1,150,07/02/19 16:12,"201 7th St, New York City, NY 10001" +228289,Bose SoundSport Headphones,1,99.99,07/29/19 13:25,"886 Walnut St, Portland, OR 97035" +228290,AAA Batteries (4-pack),1,2.99,07/17/19 10:37,"438 Forest St, Boston, MA 02215" +228291,USB-C Charging Cable,1,11.95,07/31/19 14:55,"922 Washington St, Los Angeles, CA 90001" +228292,Wired Headphones,1,11.99,07/01/19 14:29,"309 Sunset St, Los Angeles, CA 90001" +228293,AAA Batteries (4-pack),1,2.99,07/21/19 06:40,"821 Maple St, Portland, OR 97035" +228294,AAA Batteries (4-pack),1,2.99,07/01/19 19:40,"863 Spruce St, Portland, OR 97035" +228295,Macbook Pro Laptop,1,1700,07/26/19 18:48,"282 West St, San Francisco, CA 94016" +228296,Flatscreen TV,1,300,07/22/19 09:10,"358 5th St, Boston, MA 02215" +228297,LG Dryer,1,600.0,07/17/19 10:22,"938 4th St, San Francisco, CA 94016" +228298,Flatscreen TV,1,300,07/20/19 17:20,"697 Chestnut St, San Francisco, CA 94016" +228299,27in 4K Gaming Monitor,1,389.99,07/26/19 11:43,"336 14th St, Austin, TX 73301" +228300,27in 4K Gaming Monitor,1,389.99,07/19/19 08:21,"685 Lake St, Los Angeles, CA 90001" +228301,USB-C Charging Cable,1,11.95,07/03/19 21:32,"903 7th St, San Francisco, CA 94016" +228302,Flatscreen TV,1,300,07/15/19 22:54,"253 Hill St, Dallas, TX 75001" +228303,Bose SoundSport Headphones,1,99.99,07/21/19 20:00,"133 Forest St, Los Angeles, CA 90001" +228304,USB-C Charging Cable,1,11.95,07/21/19 14:16,"5 14th St, Dallas, TX 75001" +228305,LG Dryer,1,600.0,07/15/19 09:19,"809 6th St, San Francisco, CA 94016" +228306,USB-C Charging Cable,1,11.95,07/13/19 09:11,"56 Meadow St, San Francisco, CA 94016" +228307,Apple Airpods Headphones,1,150,07/11/19 21:42,"402 8th St, New York City, NY 10001" +228308,Lightning Charging Cable,1,14.95,07/28/19 12:14,"333 Meadow St, San Francisco, CA 94016" +228309,Macbook Pro Laptop,1,1700,07/11/19 20:55,"366 Cedar St, San Francisco, CA 94016" +228310,ThinkPad Laptop,1,999.99,07/29/19 22:44,"50 Maple St, Los Angeles, CA 90001" +228311,Apple Airpods Headphones,1,150,07/18/19 15:19,"261 Lincoln St, Boston, MA 02215" +228312,Bose SoundSport Headphones,1,99.99,07/03/19 12:32,"279 North St, New York City, NY 10001" +228313,Bose SoundSport Headphones,1,99.99,07/31/19 21:09,"25 Chestnut St, Dallas, TX 75001" +228314,Wired Headphones,1,11.99,07/04/19 19:42,"213 Elm St, Los Angeles, CA 90001" +228315,Apple Airpods Headphones,1,150,07/27/19 20:06,"406 West St, Portland, OR 97035" +228316,Macbook Pro Laptop,1,1700,07/14/19 22:21,"734 Cherry St, San Francisco, CA 94016" +228317,Vareebadd Phone,1,400,07/21/19 23:02,"213 2nd St, Boston, MA 02215" +228318,Wired Headphones,1,11.99,07/30/19 18:33,"426 Park St, Dallas, TX 75001" +228319,USB-C Charging Cable,1,11.95,07/21/19 13:12,"693 Jefferson St, Los Angeles, CA 90001" +228320,Lightning Charging Cable,1,14.95,07/22/19 19:01,"44 Lakeview St, San Francisco, CA 94016" +228321,Bose SoundSport Headphones,1,99.99,07/01/19 19:45,"820 6th St, Los Angeles, CA 90001" +228322,USB-C Charging Cable,2,11.95,07/15/19 16:27,"459 Willow St, Dallas, TX 75001" +228323,AA Batteries (4-pack),1,3.84,07/05/19 12:19,"864 13th St, Atlanta, GA 30301" +228324,Lightning Charging Cable,1,14.95,07/04/19 10:38,"49 Hickory St, Portland, OR 97035" +228325,27in 4K Gaming Monitor,1,389.99,07/21/19 21:40,"665 Lincoln St, Atlanta, GA 30301" +228326,Bose SoundSport Headphones,1,99.99,07/16/19 13:06,"926 9th St, San Francisco, CA 94016" +228327,AA Batteries (4-pack),2,3.84,07/10/19 16:02,"567 2nd St, New York City, NY 10001" +,,,,, +228328,Lightning Charging Cable,1,14.95,07/22/19 20:44,"459 Hickory St, Atlanta, GA 30301" +228329,Bose SoundSport Headphones,1,99.99,07/29/19 07:18,"530 Adams St, Los Angeles, CA 90001" +228330,34in Ultrawide Monitor,1,379.99,07/03/19 13:22,"66 River St, Atlanta, GA 30301" +228331,27in FHD Monitor,1,149.99,07/27/19 11:53,"323 West St, Atlanta, GA 30301" +228332,27in 4K Gaming Monitor,1,389.99,07/25/19 17:17,"794 River St, Seattle, WA 98101" +228333,USB-C Charging Cable,1,11.95,07/05/19 22:11,"881 Highland St, Dallas, TX 75001" +228334,AA Batteries (4-pack),2,3.84,07/13/19 04:45,"253 Lake St, Boston, MA 02215" +228335,34in Ultrawide Monitor,1,379.99,07/20/19 03:26,"639 10th St, San Francisco, CA 94016" +228336,27in 4K Gaming Monitor,1,389.99,07/16/19 18:44,"161 Madison St, Austin, TX 73301" +228337,AA Batteries (4-pack),1,3.84,07/13/19 20:02,"622 Madison St, San Francisco, CA 94016" +228338,AA Batteries (4-pack),1,3.84,07/07/19 21:59,"86 Maple St, San Francisco, CA 94016" +228339,27in 4K Gaming Monitor,1,389.99,07/28/19 17:55,"704 Madison St, Dallas, TX 75001" +228340,Macbook Pro Laptop,1,1700,07/28/19 14:44,"264 Center St, Austin, TX 73301" +228341,AA Batteries (4-pack),1,3.84,07/18/19 22:59,"60 Johnson St, New York City, NY 10001" +228342,USB-C Charging Cable,1,11.95,07/11/19 07:08,"828 River St, Los Angeles, CA 90001" +228343,Lightning Charging Cable,1,14.95,07/04/19 12:44,"340 Adams St, Dallas, TX 75001" +228344,Lightning Charging Cable,1,14.95,07/22/19 22:03,"335 5th St, Los Angeles, CA 90001" +228345,27in 4K Gaming Monitor,1,389.99,07/02/19 12:10,"620 Walnut St, Atlanta, GA 30301" +228346,27in FHD Monitor,1,149.99,07/05/19 11:29,"899 Hill St, Atlanta, GA 30301" +228347,Lightning Charging Cable,1,14.95,07/21/19 05:26,"164 Cherry St, Atlanta, GA 30301" +228348,20in Monitor,1,109.99,07/19/19 11:26,"90 7th St, Portland, ME 04101" +228349,Lightning Charging Cable,1,14.95,07/29/19 10:53,"13 Washington St, Dallas, TX 75001" +228350,ThinkPad Laptop,1,999.99,07/24/19 21:54,"599 Center St, San Francisco, CA 94016" +228351,34in Ultrawide Monitor,1,379.99,07/18/19 22:21,"587 Elm St, Dallas, TX 75001" +228352,27in 4K Gaming Monitor,1,389.99,07/05/19 14:29,"398 Highland St, Seattle, WA 98101" +228353,AAA Batteries (4-pack),1,2.99,07/09/19 10:06,"328 Lakeview St, Dallas, TX 75001" +228354,34in Ultrawide Monitor,1,379.99,07/12/19 11:26,"785 North St, Los Angeles, CA 90001" +228355,27in 4K Gaming Monitor,1,389.99,07/17/19 18:12,"827 Madison St, Atlanta, GA 30301" +228356,AA Batteries (4-pack),1,3.84,07/16/19 20:00,"813 Dogwood St, Portland, OR 97035" +228357,Wired Headphones,1,11.99,07/23/19 18:22,"952 8th St, Dallas, TX 75001" +228358,Bose SoundSport Headphones,1,99.99,07/12/19 10:17,"616 Cedar St, Atlanta, GA 30301" +228359,Apple Airpods Headphones,1,150,07/04/19 14:50,"954 12th St, Dallas, TX 75001" +228360,USB-C Charging Cable,1,11.95,07/11/19 12:52,"684 2nd St, Los Angeles, CA 90001" +228361,Apple Airpods Headphones,1,150,07/02/19 17:18,"565 Chestnut St, New York City, NY 10001" +228362,USB-C Charging Cable,1,11.95,07/18/19 20:33,"743 Hickory St, Portland, OR 97035" +228363,27in FHD Monitor,1,149.99,07/24/19 19:50,"491 West St, San Francisco, CA 94016" +228364,Lightning Charging Cable,1,14.95,07/11/19 21:17,"999 4th St, Los Angeles, CA 90001" +228365,Apple Airpods Headphones,1,150,07/21/19 06:57,"661 Sunset St, New York City, NY 10001" +228366,AA Batteries (4-pack),1,3.84,07/08/19 21:22,"870 Cherry St, New York City, NY 10001" +228367,Wired Headphones,1,11.99,07/01/19 16:32,"995 10th St, San Francisco, CA 94016" +228368,AA Batteries (4-pack),1,3.84,07/26/19 11:40,"538 West St, San Francisco, CA 94016" +228369,Bose SoundSport Headphones,1,99.99,07/25/19 15:01,"562 Cedar St, San Francisco, CA 94016" +228370,iPhone,1,700,07/04/19 16:43,"370 Meadow St, Atlanta, GA 30301" +228371,AA Batteries (4-pack),1,3.84,07/24/19 11:12,"929 Spruce St, New York City, NY 10001" +228372,Lightning Charging Cable,1,14.95,07/31/19 09:55,"711 14th St, Boston, MA 02215" +228373,Bose SoundSport Headphones,1,99.99,07/09/19 12:07,"488 Willow St, Seattle, WA 98101" +228374,AA Batteries (4-pack),1,3.84,07/11/19 22:14,"729 8th St, San Francisco, CA 94016" +228375,AA Batteries (4-pack),1,3.84,07/24/19 20:53,"205 Hill St, Los Angeles, CA 90001" +228376,Macbook Pro Laptop,1,1700,07/06/19 07:43,"904 Cedar St, Seattle, WA 98101" +228377,AA Batteries (4-pack),1,3.84,07/15/19 14:12,"831 Park St, Los Angeles, CA 90001" +228378,Lightning Charging Cable,2,14.95,07/04/19 11:33,"979 Park St, San Francisco, CA 94016" +228379,USB-C Charging Cable,1,11.95,07/05/19 20:39,"48 1st St, Austin, TX 73301" +228380,AA Batteries (4-pack),1,3.84,07/21/19 10:44,"829 Park St, Dallas, TX 75001" +228381,Wired Headphones,1,11.99,07/01/19 19:04,"879 Park St, San Francisco, CA 94016" +228382,USB-C Charging Cable,3,11.95,07/26/19 10:53,"287 Park St, Los Angeles, CA 90001" +228383,Lightning Charging Cable,1,14.95,07/29/19 21:49,"191 Dogwood St, Boston, MA 02215" +228384,AA Batteries (4-pack),1,3.84,07/28/19 11:03,"363 West St, New York City, NY 10001" +228385,Lightning Charging Cable,1,14.95,07/18/19 12:28,"726 Lincoln St, Portland, OR 97035" +228386,AAA Batteries (4-pack),1,2.99,07/29/19 06:24,"559 4th St, Seattle, WA 98101" +228387,USB-C Charging Cable,1,11.95,07/18/19 00:06,"328 Cedar St, San Francisco, CA 94016" +228388,AAA Batteries (4-pack),2,2.99,07/05/19 13:27,"602 Forest St, Atlanta, GA 30301" +228389,Lightning Charging Cable,1,14.95,07/12/19 07:15,"520 13th St, Seattle, WA 98101" +228390,27in 4K Gaming Monitor,1,389.99,07/09/19 23:35,"993 Adams St, Boston, MA 02215" +228391,AAA Batteries (4-pack),1,2.99,07/04/19 19:24,"564 1st St, New York City, NY 10001" +228392,Lightning Charging Cable,2,14.95,07/08/19 14:28,"485 Hill St, Boston, MA 02215" +228393,20in Monitor,1,109.99,07/27/19 16:04,"65 Lakeview St, New York City, NY 10001" +228394,Wired Headphones,1,11.99,07/27/19 13:18,"92 Forest St, Los Angeles, CA 90001" +228395,AA Batteries (4-pack),1,3.84,07/15/19 21:49,"801 Spruce St, Portland, ME 04101" +228396,Lightning Charging Cable,1,14.95,07/30/19 18:50,"749 2nd St, Atlanta, GA 30301" +228396,AAA Batteries (4-pack),1,2.99,07/30/19 18:50,"749 2nd St, Atlanta, GA 30301" +228397,Lightning Charging Cable,1,14.95,07/12/19 16:33,"586 Elm St, San Francisco, CA 94016" +228398,AAA Batteries (4-pack),2,2.99,07/19/19 05:28,"724 11th St, San Francisco, CA 94016" +228399,AAA Batteries (4-pack),1,2.99,07/17/19 18:57,"905 12th St, Atlanta, GA 30301" +228400,Lightning Charging Cable,1,14.95,07/31/19 21:47,"171 Washington St, New York City, NY 10001" +228401,AA Batteries (4-pack),1,3.84,07/14/19 13:10,"406 8th St, Seattle, WA 98101" +228402,AA Batteries (4-pack),2,3.84,07/30/19 01:13,"144 Jackson St, Atlanta, GA 30301" +228403,ThinkPad Laptop,1,999.99,07/20/19 19:11,"239 8th St, New York City, NY 10001" +228404,Apple Airpods Headphones,1,150,07/12/19 06:29,"985 Cherry St, Los Angeles, CA 90001" +228405,AAA Batteries (4-pack),1,2.99,07/23/19 12:40,"305 Ridge St, Boston, MA 02215" +228406,AAA Batteries (4-pack),2,2.99,07/16/19 04:05,"110 Spruce St, Seattle, WA 98101" +228407,34in Ultrawide Monitor,1,379.99,07/27/19 15:55,"318 8th St, San Francisco, CA 94016" +228408,Lightning Charging Cable,1,14.95,07/03/19 02:19,"118 Cherry St, San Francisco, CA 94016" +228409,27in FHD Monitor,1,149.99,07/13/19 21:42,"793 Pine St, Los Angeles, CA 90001" +228410,20in Monitor,1,109.99,07/27/19 19:34,"8 South St, Los Angeles, CA 90001" +228411,34in Ultrawide Monitor,1,379.99,07/09/19 20:11,"950 Hill St, Los Angeles, CA 90001" +228412,USB-C Charging Cable,1,11.95,07/30/19 12:54,"800 Washington St, San Francisco, CA 94016" +228413,USB-C Charging Cable,1,11.95,07/14/19 09:12,"637 10th St, Boston, MA 02215" +228414,AAA Batteries (4-pack),1,2.99,07/16/19 15:08,"235 6th St, Boston, MA 02215" +228415,AAA Batteries (4-pack),1,2.99,07/03/19 21:31,"830 Hickory St, New York City, NY 10001" +228416,20in Monitor,1,109.99,07/01/19 11:51,"263 2nd St, Portland, ME 04101" +228417,Google Phone,1,600,07/05/19 20:37,"835 5th St, San Francisco, CA 94016" +228417,USB-C Charging Cable,2,11.95,07/05/19 20:37,"835 5th St, San Francisco, CA 94016" +228417,Bose SoundSport Headphones,1,99.99,07/05/19 20:37,"835 5th St, San Francisco, CA 94016" +228418,AAA Batteries (4-pack),1,2.99,07/22/19 21:53,"306 Johnson St, Seattle, WA 98101" +228419,Lightning Charging Cable,1,14.95,07/05/19 12:06,"866 6th St, Austin, TX 73301" +228420,Bose SoundSport Headphones,1,99.99,07/27/19 16:25,"301 Hickory St, Austin, TX 73301" +228421,USB-C Charging Cable,1,11.95,07/10/19 19:24,"658 Madison St, Seattle, WA 98101" +228422,Wired Headphones,1,11.99,07/07/19 14:49,"294 13th St, Los Angeles, CA 90001" +228423,Lightning Charging Cable,1,14.95,07/22/19 11:56,"821 8th St, Austin, TX 73301" +228424,Apple Airpods Headphones,1,150,07/11/19 10:55,"49 Lincoln St, Los Angeles, CA 90001" +228425,Lightning Charging Cable,1,14.95,07/30/19 22:11,"376 Lakeview St, Atlanta, GA 30301" +228426,Lightning Charging Cable,1,14.95,07/20/19 00:44,"790 5th St, New York City, NY 10001" +228427,AAA Batteries (4-pack),1,2.99,07/05/19 10:41,"902 Park St, Portland, OR 97035" +228428,USB-C Charging Cable,1,11.95,07/10/19 19:03,"513 Dogwood St, Los Angeles, CA 90001" +228429,USB-C Charging Cable,1,11.95,07/20/19 13:39,"951 Washington St, Boston, MA 02215" +228430,34in Ultrawide Monitor,1,379.99,07/10/19 21:18,"115 Maple St, Atlanta, GA 30301" +228431,Flatscreen TV,1,300,07/04/19 04:57,"804 10th St, San Francisco, CA 94016" +228432,AA Batteries (4-pack),1,3.84,07/19/19 10:29,"31 Madison St, San Francisco, CA 94016" +228433,iPhone,1,700,07/29/19 19:39,"682 Maple St, San Francisco, CA 94016" +228434,Lightning Charging Cable,1,14.95,07/01/19 14:36,"188 Center St, San Francisco, CA 94016" +228435,Lightning Charging Cable,1,14.95,07/17/19 08:13,"786 Main St, New York City, NY 10001" +228436,AA Batteries (4-pack),1,3.84,07/04/19 15:52,"100 Cherry St, San Francisco, CA 94016" +228437,iPhone,1,700,07/06/19 09:28,"657 South St, San Francisco, CA 94016" +228438,Lightning Charging Cable,1,14.95,07/15/19 19:31,"540 Pine St, Boston, MA 02215" +228439,AAA Batteries (4-pack),1,2.99,07/25/19 12:13,"226 Center St, San Francisco, CA 94016" +228440,Bose SoundSport Headphones,1,99.99,07/08/19 17:42,"116 Highland St, Los Angeles, CA 90001" +228441,Bose SoundSport Headphones,1,99.99,07/28/19 19:28,"822 Sunset St, Seattle, WA 98101" +228442,AA Batteries (4-pack),2,3.84,07/30/19 11:26,"453 Wilson St, Dallas, TX 75001" +228443,Bose SoundSport Headphones,1,99.99,07/21/19 14:50,"601 Willow St, New York City, NY 10001" +228444,Lightning Charging Cable,1,14.95,07/21/19 21:17,"357 14th St, Austin, TX 73301" +228445,USB-C Charging Cable,1,11.95,07/09/19 18:49,"428 Hill St, Los Angeles, CA 90001" +228446,27in FHD Monitor,1,149.99,07/04/19 11:52,"298 1st St, San Francisco, CA 94016" +228447,Lightning Charging Cable,1,14.95,07/27/19 07:09,"602 Forest St, Portland, OR 97035" +228448,34in Ultrawide Monitor,1,379.99,07/07/19 15:49,"551 Johnson St, San Francisco, CA 94016" +228449,Wired Headphones,1,11.99,07/08/19 09:53,"460 11th St, San Francisco, CA 94016" +228450,USB-C Charging Cable,1,11.95,07/30/19 15:48,"302 Meadow St, Seattle, WA 98101" +228451,Google Phone,1,600,07/02/19 12:02,"425 Maple St, San Francisco, CA 94016" +228452,USB-C Charging Cable,1,11.95,07/22/19 20:45,"609 Maple St, San Francisco, CA 94016" +228453,27in FHD Monitor,1,149.99,07/10/19 17:45,"351 Lakeview St, New York City, NY 10001" +228454,Apple Airpods Headphones,1,150,07/31/19 16:45,"249 Main St, Los Angeles, CA 90001" +228455,Wired Headphones,1,11.99,07/09/19 17:44,"569 Spruce St, Portland, OR 97035" +228456,Macbook Pro Laptop,1,1700,07/06/19 09:36,"751 11th St, Seattle, WA 98101" +228457,iPhone,1,700,07/20/19 22:01,"333 Park St, New York City, NY 10001" +228457,Wired Headphones,1,11.99,07/20/19 22:01,"333 Park St, New York City, NY 10001" +228458,AA Batteries (4-pack),1,3.84,07/16/19 23:20,"16 Jackson St, New York City, NY 10001" +228459,Wired Headphones,1,11.99,07/15/19 14:08,"783 Lakeview St, Austin, TX 73301" +228460,Bose SoundSport Headphones,1,99.99,07/05/19 11:16,"161 Park St, Austin, TX 73301" +228461,Lightning Charging Cable,1,14.95,07/20/19 13:13,"646 Cherry St, San Francisco, CA 94016" +228462,27in FHD Monitor,1,149.99,07/10/19 21:44,"78 Park St, San Francisco, CA 94016" +228463,iPhone,1,700,07/29/19 13:46,"89 Wilson St, New York City, NY 10001" +228464,iPhone,1,700,07/02/19 16:06,"533 Meadow St, Atlanta, GA 30301" +228465,AAA Batteries (4-pack),1,2.99,07/25/19 20:46,"888 Highland St, New York City, NY 10001" +228466,AAA Batteries (4-pack),1,2.99,07/19/19 11:53,"580 Meadow St, New York City, NY 10001" +228467,Wired Headphones,1,11.99,07/14/19 18:39,"656 Forest St, Los Angeles, CA 90001" +228468,Macbook Pro Laptop,1,1700,07/19/19 08:08,"631 Lake St, New York City, NY 10001" +228469,AA Batteries (4-pack),1,3.84,07/09/19 09:48,"381 13th St, Dallas, TX 75001" +228470,AA Batteries (4-pack),1,3.84,07/07/19 17:36,"800 9th St, San Francisco, CA 94016" +228471,AAA Batteries (4-pack),2,2.99,07/28/19 17:07,"383 Adams St, New York City, NY 10001" +228472,Wired Headphones,1,11.99,07/20/19 22:48,"537 1st St, Los Angeles, CA 90001" +228473,AA Batteries (4-pack),1,3.84,07/26/19 18:05,"252 10th St, San Francisco, CA 94016" +228474,USB-C Charging Cable,1,11.95,07/15/19 23:10,"896 Walnut St, Portland, OR 97035" +228475,Lightning Charging Cable,1,14.95,07/02/19 21:22,"769 Cedar St, San Francisco, CA 94016" +228476,USB-C Charging Cable,1,11.95,07/23/19 22:27,"156 Hickory St, San Francisco, CA 94016" +228477,Wired Headphones,1,11.99,07/08/19 11:31,"788 Spruce St, Los Angeles, CA 90001" +228478,Wired Headphones,1,11.99,07/09/19 11:56,"622 4th St, San Francisco, CA 94016" +228479,Wired Headphones,1,11.99,07/29/19 18:57,"461 13th St, Boston, MA 02215" +228480,AA Batteries (4-pack),2,3.84,07/09/19 09:52,"169 South St, Dallas, TX 75001" +228481,Google Phone,1,600,07/31/19 15:58,"103 10th St, Los Angeles, CA 90001" +228481,USB-C Charging Cable,1,11.95,07/31/19 15:58,"103 10th St, Los Angeles, CA 90001" +228482,Lightning Charging Cable,1,14.95,07/14/19 13:59,"727 North St, San Francisco, CA 94016" +228483,27in FHD Monitor,1,149.99,07/17/19 21:31,"438 Church St, Austin, TX 73301" +228484,Lightning Charging Cable,1,14.95,07/29/19 19:21,"248 Chestnut St, Boston, MA 02215" +228485,27in FHD Monitor,1,149.99,07/01/19 18:22,"705 Maple St, San Francisco, CA 94016" +228486,AA Batteries (4-pack),1,3.84,07/04/19 12:41,"328 West St, Portland, OR 97035" +228487,Wired Headphones,1,11.99,07/12/19 10:22,"447 Jefferson St, San Francisco, CA 94016" +228488,20in Monitor,1,109.99,07/19/19 15:45,"506 Highland St, Dallas, TX 75001" +228489,Wired Headphones,1,11.99,07/18/19 18:13,"906 6th St, Los Angeles, CA 90001" +228490,USB-C Charging Cable,1,11.95,07/20/19 13:37,"745 Highland St, San Francisco, CA 94016" +228491,Lightning Charging Cable,1,14.95,07/17/19 14:07,"564 Hickory St, New York City, NY 10001" +228492,Wired Headphones,1,11.99,07/25/19 13:44,"223 Willow St, Austin, TX 73301" +228493,iPhone,1,700,07/25/19 19:16,"399 Highland St, Portland, OR 97035" +228494,AAA Batteries (4-pack),1,2.99,07/03/19 20:26,"636 Hill St, Dallas, TX 75001" +228495,27in FHD Monitor,1,149.99,07/25/19 07:13,"867 Park St, New York City, NY 10001" +228496,Lightning Charging Cable,1,14.95,07/17/19 12:47,"176 River St, Austin, TX 73301" +228497,Lightning Charging Cable,1,14.95,07/17/19 16:55,"612 2nd St, San Francisco, CA 94016" +228498,AA Batteries (4-pack),1,3.84,07/23/19 16:25,"615 10th St, Dallas, TX 75001" +228499,27in 4K Gaming Monitor,1,389.99,07/21/19 09:59,"881 River St, San Francisco, CA 94016" +228500,Apple Airpods Headphones,1,150,07/26/19 21:41,"11 Jackson St, Austin, TX 73301" +228501,AAA Batteries (4-pack),1,2.99,07/28/19 10:59,"703 River St, Dallas, TX 75001" +228502,AAA Batteries (4-pack),1,2.99,07/23/19 23:31,"584 Wilson St, San Francisco, CA 94016" +228503,27in FHD Monitor,1,149.99,07/09/19 19:27,"154 Walnut St, Dallas, TX 75001" +228504,Apple Airpods Headphones,1,150,07/09/19 20:58,"730 Center St, Portland, ME 04101" +228505,Google Phone,1,600,07/27/19 05:38,"700 Park St, Austin, TX 73301" +228506,Bose SoundSport Headphones,1,99.99,07/18/19 20:56,"545 11th St, Los Angeles, CA 90001" +228507,Lightning Charging Cable,1,14.95,07/27/19 10:37,"229 Dogwood St, Los Angeles, CA 90001" +228508,Google Phone,1,600,07/11/19 20:29,"907 12th St, New York City, NY 10001" +228509,Wired Headphones,1,11.99,07/19/19 01:39,"623 Hickory St, Los Angeles, CA 90001" +228510,27in 4K Gaming Monitor,1,389.99,07/28/19 13:41,"526 11th St, San Francisco, CA 94016" +228511,Apple Airpods Headphones,1,150,07/27/19 21:33,"576 4th St, Boston, MA 02215" +228512,AAA Batteries (4-pack),1,2.99,07/27/19 19:37,"70 14th St, Los Angeles, CA 90001" +228513,AAA Batteries (4-pack),2,2.99,07/30/19 07:11,"748 Jackson St, Los Angeles, CA 90001" +228514,Lightning Charging Cable,1,14.95,07/25/19 07:14,"422 5th St, Los Angeles, CA 90001" +228515,USB-C Charging Cable,1,11.95,07/02/19 10:56,"792 Dogwood St, Boston, MA 02215" +228516,AA Batteries (4-pack),1,3.84,07/17/19 11:59,"200 2nd St, Portland, OR 97035" +228517,AAA Batteries (4-pack),1,2.99,07/16/19 10:05,"47 12th St, Dallas, TX 75001" +228518,Lightning Charging Cable,1,14.95,07/30/19 21:09,"138 Cherry St, Atlanta, GA 30301" +228519,Google Phone,1,600,07/17/19 13:47,"972 Hickory St, Portland, ME 04101" +228519,Wired Headphones,1,11.99,07/17/19 13:47,"972 Hickory St, Portland, ME 04101" +228520,USB-C Charging Cable,2,11.95,07/12/19 09:07,"30 West St, Boston, MA 02215" +228521,Macbook Pro Laptop,1,1700,07/24/19 14:57,"41 Main St, Atlanta, GA 30301" +228522,iPhone,1,700,07/01/19 07:40,"607 10th St, Boston, MA 02215" +228522,Lightning Charging Cable,1,14.95,07/01/19 07:40,"607 10th St, Boston, MA 02215" +228522,Wired Headphones,1,11.99,07/01/19 07:40,"607 10th St, Boston, MA 02215" +228522,Bose SoundSport Headphones,1,99.99,07/01/19 07:40,"607 10th St, Boston, MA 02215" +228523,AAA Batteries (4-pack),2,2.99,07/30/19 19:17,"449 Hill St, Boston, MA 02215" +228524,Wired Headphones,1,11.99,07/08/19 18:58,"986 Jackson St, Dallas, TX 75001" +228525,20in Monitor,1,109.99,07/26/19 17:02,"493 5th St, San Francisco, CA 94016" +228526,USB-C Charging Cable,1,11.95,07/10/19 12:12,"362 Lake St, Austin, TX 73301" +228527,AA Batteries (4-pack),1,3.84,07/13/19 11:44,"477 Lincoln St, Atlanta, GA 30301" +228528,USB-C Charging Cable,2,11.95,07/15/19 22:06,"657 Jefferson St, Portland, OR 97035" +228529,ThinkPad Laptop,1,999.99,07/25/19 00:09,"234 Forest St, San Francisco, CA 94016" +228530,34in Ultrawide Monitor,1,379.99,07/18/19 09:18,"897 Washington St, San Francisco, CA 94016" +228531,Vareebadd Phone,1,400,07/16/19 09:12,"164 Cherry St, New York City, NY 10001" +228532,34in Ultrawide Monitor,1,379.99,07/27/19 19:10,"812 Wilson St, Seattle, WA 98101" +228533,Wired Headphones,1,11.99,07/20/19 00:11,"408 Hill St, San Francisco, CA 94016" +228534,Lightning Charging Cable,1,14.95,07/23/19 18:54,"960 Willow St, Los Angeles, CA 90001" +228535,20in Monitor,1,109.99,07/23/19 19:46,"334 4th St, Los Angeles, CA 90001" +228536,USB-C Charging Cable,1,11.95,07/28/19 21:13,"718 Jefferson St, New York City, NY 10001" +228537,Google Phone,1,600,07/30/19 19:41,"373 4th St, New York City, NY 10001" +228538,Lightning Charging Cable,1,14.95,07/18/19 07:21,"967 Elm St, San Francisco, CA 94016" +228539,Flatscreen TV,1,300,07/22/19 19:33,"191 West St, Boston, MA 02215" +228540,Lightning Charging Cable,1,14.95,07/10/19 19:57,"815 Wilson St, Boston, MA 02215" +228541,AA Batteries (4-pack),1,3.84,07/26/19 21:14,"629 Adams St, Austin, TX 73301" +228542,Apple Airpods Headphones,1,150,07/10/19 18:15,"495 Jefferson St, San Francisco, CA 94016" +228543,34in Ultrawide Monitor,1,379.99,07/16/19 18:26,"750 River St, Los Angeles, CA 90001" +228544,Google Phone,1,600,07/27/19 11:22,"511 Forest St, San Francisco, CA 94016" +228545,27in FHD Monitor,1,149.99,07/05/19 02:49,"186 Wilson St, Atlanta, GA 30301" +228546,AA Batteries (4-pack),1,3.84,07/15/19 11:08,"689 13th St, Boston, MA 02215" +228547,USB-C Charging Cable,1,11.95,07/24/19 17:53,"867 Adams St, New York City, NY 10001" +228548,20in Monitor,1,109.99,07/18/19 20:39,"769 Washington St, San Francisco, CA 94016" +228549,Macbook Pro Laptop,1,1700,07/31/19 12:23,"282 14th St, Los Angeles, CA 90001" +228550,Wired Headphones,1,11.99,07/02/19 11:18,"921 8th St, Seattle, WA 98101" +228550,Wired Headphones,1,11.99,07/02/19 11:18,"921 8th St, Seattle, WA 98101" +228551,AAA Batteries (4-pack),4,2.99,07/16/19 16:42,"679 Maple St, New York City, NY 10001" +228552,AA Batteries (4-pack),1,3.84,07/13/19 21:08,"946 Elm St, Los Angeles, CA 90001" +228553,Bose SoundSport Headphones,1,99.99,07/31/19 22:45,"884 7th St, Seattle, WA 98101" +228554,Bose SoundSport Headphones,1,99.99,07/30/19 15:53,"928 West St, Los Angeles, CA 90001" +228555,Apple Airpods Headphones,1,150,07/11/19 06:45,"361 5th St, Los Angeles, CA 90001" +228556,USB-C Charging Cable,1,11.95,07/15/19 20:25,"494 Walnut St, Boston, MA 02215" +228557,Wired Headphones,1,11.99,07/03/19 17:51,"997 5th St, Dallas, TX 75001" +228558,Apple Airpods Headphones,1,150,07/25/19 19:28,"556 Park St, Los Angeles, CA 90001" +228559,AA Batteries (4-pack),1,3.84,07/07/19 22:46,"392 11th St, Atlanta, GA 30301" +228560,AAA Batteries (4-pack),2,2.99,07/12/19 15:12,"158 Wilson St, Seattle, WA 98101" +228561,LG Washing Machine,1,600.0,07/17/19 21:33,"479 Dogwood St, Los Angeles, CA 90001" +228562,AAA Batteries (4-pack),1,2.99,07/06/19 14:45,"109 Forest St, San Francisco, CA 94016" +228563,Apple Airpods Headphones,1,150,07/22/19 18:58,"810 Church St, New York City, NY 10001" +228564,Apple Airpods Headphones,1,150,07/02/19 21:11,"918 Johnson St, Boston, MA 02215" +228565,27in 4K Gaming Monitor,1,389.99,07/12/19 16:25,"619 Center St, San Francisco, CA 94016" +228566,Lightning Charging Cable,1,14.95,07/25/19 19:03,"567 4th St, San Francisco, CA 94016" +228567,iPhone,1,700,07/16/19 09:45,"34 13th St, Atlanta, GA 30301" +228568,Google Phone,1,600,07/29/19 18:09,"575 Lake St, Portland, OR 97035" +228569,Bose SoundSport Headphones,1,99.99,07/02/19 22:10,"823 12th St, San Francisco, CA 94016" +228570,Wired Headphones,1,11.99,07/13/19 06:12,"627 Elm St, Los Angeles, CA 90001" +228571,USB-C Charging Cable,1,11.95,07/14/19 19:43,"274 8th St, San Francisco, CA 94016" +228572,Apple Airpods Headphones,1,150,07/20/19 10:07,"270 11th St, Boston, MA 02215" +228573,Wired Headphones,1,11.99,07/10/19 21:21,"29 Jackson St, New York City, NY 10001" +228574,Wired Headphones,1,11.99,07/03/19 14:58,"777 Elm St, Austin, TX 73301" +228575,AAA Batteries (4-pack),1,2.99,07/30/19 21:18,"930 West St, San Francisco, CA 94016" +228576,USB-C Charging Cable,1,11.95,07/16/19 20:59,"50 14th St, New York City, NY 10001" +228577,Wired Headphones,1,11.99,07/07/19 15:39,"439 Washington St, Boston, MA 02215" +228578,AAA Batteries (4-pack),2,2.99,07/10/19 20:06,"700 Madison St, San Francisco, CA 94016" +228579,USB-C Charging Cable,1,11.95,07/21/19 15:38,"800 Maple St, Seattle, WA 98101" +228580,Lightning Charging Cable,1,14.95,07/24/19 00:42,"160 Maple St, San Francisco, CA 94016" +228581,27in 4K Gaming Monitor,1,389.99,07/11/19 18:09,"716 Lakeview St, New York City, NY 10001" +228582,AA Batteries (4-pack),1,3.84,07/11/19 08:11,"509 4th St, Austin, TX 73301" +228583,Bose SoundSport Headphones,1,99.99,07/30/19 22:55,"235 9th St, Atlanta, GA 30301" +228584,Wired Headphones,1,11.99,07/15/19 12:31,"893 Dogwood St, San Francisco, CA 94016" +228584,Lightning Charging Cable,2,14.95,07/15/19 12:31,"893 Dogwood St, San Francisco, CA 94016" +228585,34in Ultrawide Monitor,1,379.99,07/28/19 19:16,"843 Cedar St, Atlanta, GA 30301" +228586,Apple Airpods Headphones,1,150,07/01/19 13:27,"566 Lincoln St, San Francisco, CA 94016" +228587,Lightning Charging Cable,1,14.95,07/21/19 12:44,"285 14th St, San Francisco, CA 94016" +228588,Bose SoundSport Headphones,1,99.99,07/11/19 14:10,"103 Lincoln St, New York City, NY 10001" +228589,Lightning Charging Cable,1,14.95,07/02/19 03:23,"601 10th St, Dallas, TX 75001" +228590,AAA Batteries (4-pack),1,2.99,07/17/19 21:55,"500 13th St, Los Angeles, CA 90001" +228591,Google Phone,1,600,07/08/19 12:26,"788 Dogwood St, San Francisco, CA 94016" +228592,Wired Headphones,1,11.99,07/29/19 18:18,"118 1st St, Atlanta, GA 30301" +228593,AA Batteries (4-pack),1,3.84,07/15/19 09:41,"385 Sunset St, San Francisco, CA 94016" +228594,AA Batteries (4-pack),1,3.84,07/01/19 23:34,"807 Hill St, Boston, MA 02215" +228595,Lightning Charging Cable,1,14.95,07/26/19 14:24,"102 South St, Portland, OR 97035" +228596,Lightning Charging Cable,1,14.95,07/28/19 09:10,"494 Hickory St, Boston, MA 02215" +228597,Bose SoundSport Headphones,1,99.99,07/03/19 08:09,"43 Sunset St, Los Angeles, CA 90001" +228598,34in Ultrawide Monitor,1,379.99,07/12/19 09:06,"214 Willow St, Los Angeles, CA 90001" +228599,Apple Airpods Headphones,1,150,07/28/19 00:25,"537 11th St, San Francisco, CA 94016" +228600,AA Batteries (4-pack),1,3.84,07/26/19 08:45,"783 Washington St, New York City, NY 10001" +228601,Google Phone,1,600,07/01/19 19:10,"244 Cherry St, Austin, TX 73301" +228602,ThinkPad Laptop,1,999.99,07/04/19 16:36,"8 5th St, Los Angeles, CA 90001" +228603,iPhone,1,700,07/26/19 17:44,"810 Lakeview St, San Francisco, CA 94016" +228604,AAA Batteries (4-pack),1,2.99,07/26/19 15:23,"851 Cherry St, Dallas, TX 75001" +228605,Wired Headphones,1,11.99,07/04/19 18:09,"543 Highland St, San Francisco, CA 94016" +228606,Lightning Charging Cable,1,14.95,07/09/19 08:14,"919 5th St, Dallas, TX 75001" +228607,AAA Batteries (4-pack),3,2.99,07/29/19 17:29,"782 Dogwood St, Dallas, TX 75001" +228608,USB-C Charging Cable,1,11.95,07/29/19 18:46,"700 1st St, New York City, NY 10001" +228609,Vareebadd Phone,1,400,07/27/19 11:12,"771 River St, Los Angeles, CA 90001" +228610,AA Batteries (4-pack),3,3.84,07/10/19 17:55,"770 Spruce St, New York City, NY 10001" +228611,LG Washing Machine,1,600.0,07/26/19 22:56,"612 1st St, Dallas, TX 75001" +228612,USB-C Charging Cable,1,11.95,07/05/19 11:15,"818 Adams St, San Francisco, CA 94016" +228613,27in FHD Monitor,1,149.99,07/16/19 10:17,"38 12th St, New York City, NY 10001" +228614,iPhone,1,700,07/26/19 19:21,"810 Main St, San Francisco, CA 94016" +228615,Flatscreen TV,1,300,07/24/19 09:43,"477 9th St, Los Angeles, CA 90001" +228616,27in 4K Gaming Monitor,1,389.99,07/09/19 19:19,"316 12th St, Los Angeles, CA 90001" +228616,AAA Batteries (4-pack),1,2.99,07/09/19 19:19,"316 12th St, Los Angeles, CA 90001" +228617,USB-C Charging Cable,1,11.95,07/18/19 11:09,"87 Adams St, Portland, OR 97035" +228618,Vareebadd Phone,1,400,07/07/19 06:32,"153 Dogwood St, San Francisco, CA 94016" +228619,27in FHD Monitor,1,149.99,07/25/19 17:50,"893 5th St, San Francisco, CA 94016" +228620,Wired Headphones,1,11.99,07/10/19 16:20,"611 4th St, Portland, OR 97035" +228621,Wired Headphones,1,11.99,07/16/19 16:46,"942 14th St, New York City, NY 10001" +228622,Lightning Charging Cable,1,14.95,07/28/19 16:32,"659 North St, Seattle, WA 98101" +228623,AA Batteries (4-pack),2,3.84,07/05/19 19:08,"594 9th St, Los Angeles, CA 90001" +228624,Lightning Charging Cable,1,14.95,07/08/19 19:18,"956 River St, Seattle, WA 98101" +228625,Wired Headphones,1,11.99,07/24/19 04:53,"272 1st St, San Francisco, CA 94016" +228626,USB-C Charging Cable,2,11.95,07/31/19 10:11,"710 Park St, Dallas, TX 75001" +228627,AAA Batteries (4-pack),1,2.99,07/29/19 14:43,"190 North St, Los Angeles, CA 90001" +228628,AAA Batteries (4-pack),1,2.99,07/05/19 08:34,"64 Center St, Boston, MA 02215" +228629,Wired Headphones,1,11.99,07/06/19 19:56,"679 Hickory St, San Francisco, CA 94016" +228630,AA Batteries (4-pack),1,3.84,07/10/19 19:39,"460 5th St, Portland, OR 97035" +228631,Wired Headphones,1,11.99,07/24/19 13:31,"499 Washington St, San Francisco, CA 94016" +228632,AAA Batteries (4-pack),1,2.99,07/11/19 17:32,"968 Walnut St, Dallas, TX 75001" +228633,AAA Batteries (4-pack),1,2.99,07/02/19 17:56,"347 Lake St, Los Angeles, CA 90001" +228634,Vareebadd Phone,1,400,07/06/19 21:39,"610 Park St, New York City, NY 10001" +228635,AA Batteries (4-pack),2,3.84,07/12/19 11:22,"899 Main St, Atlanta, GA 30301" +228636,iPhone,1,700,07/28/19 19:31,"708 Johnson St, Dallas, TX 75001" +228637,USB-C Charging Cable,1,11.95,07/01/19 23:07,"823 Pine St, New York City, NY 10001" +228638,AA Batteries (4-pack),3,3.84,07/02/19 12:04,"282 10th St, San Francisco, CA 94016" +228639,AAA Batteries (4-pack),1,2.99,07/31/19 19:59,"827 Cedar St, Boston, MA 02215" +228640,Lightning Charging Cable,1,14.95,07/23/19 09:57,"536 Lincoln St, Seattle, WA 98101" +228641,Apple Airpods Headphones,1,150,07/22/19 17:35,"490 1st St, Seattle, WA 98101" +228642,Wired Headphones,1,11.99,07/07/19 10:30,"718 Park St, San Francisco, CA 94016" +228643,Lightning Charging Cable,1,14.95,07/08/19 17:46,"793 Wilson St, Boston, MA 02215" +228644,AAA Batteries (4-pack),1,2.99,07/19/19 18:09,"946 8th St, Seattle, WA 98101" +228645,USB-C Charging Cable,2,11.95,07/04/19 11:55,"841 Meadow St, New York City, NY 10001" +228646,Bose SoundSport Headphones,1,99.99,07/15/19 11:58,"111 Jackson St, Los Angeles, CA 90001" +228647,Apple Airpods Headphones,1,150,07/11/19 18:28,"358 7th St, Los Angeles, CA 90001" +228648,Vareebadd Phone,1,400,07/01/19 17:34,"100 Willow St, Los Angeles, CA 90001" +228648,USB-C Charging Cable,1,11.95,07/01/19 17:34,"100 Willow St, Los Angeles, CA 90001" +228649,Macbook Pro Laptop,1,1700,07/26/19 12:22,"167 Lincoln St, Portland, OR 97035" +228650,27in FHD Monitor,1,149.99,07/28/19 12:44,"870 Elm St, Los Angeles, CA 90001" +228651,USB-C Charging Cable,1,11.95,07/12/19 21:38,"315 10th St, San Francisco, CA 94016" +228652,Wired Headphones,1,11.99,07/02/19 20:14,"965 Adams St, Seattle, WA 98101" +228653,27in 4K Gaming Monitor,1,389.99,07/06/19 18:27,"479 2nd St, Boston, MA 02215" +228654,Apple Airpods Headphones,1,150,07/26/19 11:05,"776 Church St, Boston, MA 02215" +228655,Flatscreen TV,1,300,07/08/19 11:50,"901 Hickory St, San Francisco, CA 94016" +228656,Wired Headphones,1,11.99,07/22/19 17:18,"10 North St, Seattle, WA 98101" +228657,AAA Batteries (4-pack),1,2.99,07/23/19 14:01,"11 Madison St, New York City, NY 10001" +228658,Bose SoundSport Headphones,1,99.99,07/09/19 19:31,"600 Wilson St, New York City, NY 10001" +228659,AAA Batteries (4-pack),2,2.99,07/27/19 23:07,"700 West St, San Francisco, CA 94016" +228660,34in Ultrawide Monitor,1,379.99,07/05/19 16:08,"127 North St, Seattle, WA 98101" +228661,USB-C Charging Cable,1,11.95,07/11/19 13:33,"289 Lakeview St, New York City, NY 10001" +228662,AAA Batteries (4-pack),1,2.99,07/13/19 15:17,"129 Jackson St, San Francisco, CA 94016" +228663,USB-C Charging Cable,1,11.95,07/18/19 08:53,"801 Jefferson St, Boston, MA 02215" +228664,ThinkPad Laptop,1,999.99,07/03/19 08:16,"684 Jefferson St, Portland, OR 97035" +228665,AA Batteries (4-pack),1,3.84,07/18/19 11:55,"821 1st St, Dallas, TX 75001" +228666,34in Ultrawide Monitor,1,379.99,07/17/19 20:06,"616 13th St, Seattle, WA 98101" +228667,AAA Batteries (4-pack),2,2.99,07/02/19 13:37,"481 West St, Dallas, TX 75001" +228668,Apple Airpods Headphones,1,150,07/29/19 22:59,"285 Ridge St, San Francisco, CA 94016" +228669,20in Monitor,1,109.99,07/05/19 16:27,"624 Wilson St, Seattle, WA 98101" +228670,Wired Headphones,1,11.99,07/23/19 16:24,"728 Hill St, Boston, MA 02215" +228671,AAA Batteries (4-pack),1,2.99,07/06/19 17:08,"844 Washington St, Seattle, WA 98101" +228672,AAA Batteries (4-pack),1,2.99,07/26/19 16:00,"741 Elm St, San Francisco, CA 94016" +228673,iPhone,1,700,07/02/19 08:40,"368 Dogwood St, Boston, MA 02215" +228674,Wired Headphones,1,11.99,07/11/19 12:33,"345 Johnson St, Seattle, WA 98101" +228675,34in Ultrawide Monitor,1,379.99,07/20/19 20:14,"634 Hill St, Los Angeles, CA 90001" +228676,Vareebadd Phone,1,400,07/16/19 11:32,"198 Spruce St, San Francisco, CA 94016" +228677,AA Batteries (4-pack),1,3.84,07/28/19 07:42,"925 Adams St, Boston, MA 02215" +228678,27in 4K Gaming Monitor,1,389.99,07/12/19 22:18,"976 Madison St, San Francisco, CA 94016" +228679,AA Batteries (4-pack),1,3.84,07/20/19 20:23,"355 Lincoln St, New York City, NY 10001" +228680,AA Batteries (4-pack),1,3.84,07/26/19 13:45,"864 14th St, San Francisco, CA 94016" +228681,34in Ultrawide Monitor,1,379.99,07/07/19 12:29,"389 Hickory St, San Francisco, CA 94016" +228682,34in Ultrawide Monitor,1,379.99,07/30/19 09:35,"947 Cedar St, New York City, NY 10001" +228683,Bose SoundSport Headphones,1,99.99,07/29/19 11:38,"813 Park St, New York City, NY 10001" +228684,USB-C Charging Cable,1,11.95,07/14/19 15:04,"704 9th St, Los Angeles, CA 90001" +228685,USB-C Charging Cable,1,11.95,07/14/19 17:26,"430 Park St, Seattle, WA 98101" +228686,Wired Headphones,1,11.99,07/29/19 19:22,"124 Cedar St, Los Angeles, CA 90001" +228687,Lightning Charging Cable,1,14.95,07/18/19 09:31,"2 South St, San Francisco, CA 94016" +228688,USB-C Charging Cable,1,11.95,07/17/19 16:43,"459 River St, Portland, ME 04101" +228689,Wired Headphones,1,11.99,07/31/19 15:52,"860 Cedar St, San Francisco, CA 94016" +228690,AAA Batteries (4-pack),3,2.99,07/15/19 09:54,"810 Sunset St, Dallas, TX 75001" +228691,Bose SoundSport Headphones,1,99.99,07/29/19 08:07,"95 10th St, Portland, OR 97035" +228692,Wired Headphones,1,11.99,07/02/19 17:16,"715 Maple St, Dallas, TX 75001" +228693,34in Ultrawide Monitor,1,379.99,07/31/19 18:22,"752 Madison St, Austin, TX 73301" +228694,LG Dryer,1,600.0,07/02/19 13:16,"577 Madison St, Atlanta, GA 30301" +228695,iPhone,1,700,07/11/19 00:31,"936 Cedar St, Portland, OR 97035" +228696,Bose SoundSport Headphones,1,99.99,07/11/19 18:58,"909 Walnut St, Los Angeles, CA 90001" +228697,Flatscreen TV,1,300,07/31/19 22:32,"696 Dogwood St, New York City, NY 10001" +228698,ThinkPad Laptop,1,999.99,07/26/19 07:06,"274 7th St, San Francisco, CA 94016" +228699,34in Ultrawide Monitor,1,379.99,07/18/19 16:55,"184 7th St, Los Angeles, CA 90001" +228700,Apple Airpods Headphones,1,150,07/26/19 09:26,"994 Elm St, New York City, NY 10001" +228701,Wired Headphones,1,11.99,07/23/19 12:25,"332 Dogwood St, Boston, MA 02215" +228702,Apple Airpods Headphones,1,150,07/04/19 10:59,"45 Meadow St, Dallas, TX 75001" +228703,Apple Airpods Headphones,1,150,07/03/19 17:33,"96 Sunset St, Dallas, TX 75001" +228704,USB-C Charging Cable,1,11.95,07/11/19 19:02,"848 13th St, Dallas, TX 75001" +228705,iPhone,1,700,07/11/19 22:16,"746 Forest St, New York City, NY 10001" +228706,AA Batteries (4-pack),1,3.84,07/28/19 11:08,"876 River St, Boston, MA 02215" +228707,ThinkPad Laptop,1,999.99,07/06/19 10:40,"448 Lake St, Los Angeles, CA 90001" +228708,Wired Headphones,1,11.99,07/06/19 18:17,"328 13th St, San Francisco, CA 94016" +228708,AAA Batteries (4-pack),1,2.99,07/06/19 18:17,"328 13th St, San Francisco, CA 94016" +228709,USB-C Charging Cable,1,11.95,07/18/19 22:13,"141 Walnut St, New York City, NY 10001" +228710,27in FHD Monitor,1,149.99,07/27/19 21:38,"726 Willow St, Seattle, WA 98101" +228711,AAA Batteries (4-pack),2,2.99,07/12/19 08:21,"385 Jefferson St, Boston, MA 02215" +228712,USB-C Charging Cable,1,11.95,07/12/19 14:13,"715 Madison St, Portland, OR 97035" +228713,Flatscreen TV,1,300,07/13/19 07:54,"439 Jefferson St, New York City, NY 10001" +228714,Apple Airpods Headphones,1,150,07/21/19 11:11,"128 14th St, San Francisco, CA 94016" +228715,AAA Batteries (4-pack),1,2.99,07/25/19 21:55,"275 13th St, Atlanta, GA 30301" +228716,Wired Headphones,2,11.99,07/27/19 22:22,"281 Lakeview St, New York City, NY 10001" +228717,Bose SoundSport Headphones,1,99.99,07/22/19 10:26,"732 Adams St, Los Angeles, CA 90001" +228717,Lightning Charging Cable,1,14.95,07/22/19 10:26,"732 Adams St, Los Angeles, CA 90001" +228718,AAA Batteries (4-pack),1,2.99,07/10/19 10:42,"502 Jefferson St, Austin, TX 73301" +228719,Apple Airpods Headphones,1,150,07/09/19 19:53,"724 Hickory St, Seattle, WA 98101" +228720,Wired Headphones,1,11.99,07/29/19 19:38,"735 Jefferson St, Boston, MA 02215" +228721,27in FHD Monitor,1,149.99,07/11/19 00:37,"536 13th St, Boston, MA 02215" +228722,34in Ultrawide Monitor,1,379.99,07/26/19 22:03,"207 1st St, Dallas, TX 75001" +228722,20in Monitor,1,109.99,07/26/19 22:03,"207 1st St, Dallas, TX 75001" +228723,AA Batteries (4-pack),2,3.84,07/06/19 15:16,"306 9th St, Seattle, WA 98101" +228724,Wired Headphones,1,11.99,07/18/19 13:24,"334 Washington St, Austin, TX 73301" +228725,Lightning Charging Cable,1,14.95,07/14/19 21:20,"738 Pine St, San Francisco, CA 94016" +228726,Wired Headphones,1,11.99,07/19/19 16:48,"870 Hickory St, New York City, NY 10001" +228727,Apple Airpods Headphones,1,150,07/02/19 11:26,"239 1st St, Portland, ME 04101" +228728,Lightning Charging Cable,1,14.95,07/13/19 19:43,"364 Wilson St, Boston, MA 02215" +228729,Wired Headphones,1,11.99,07/29/19 18:08,"124 Willow St, New York City, NY 10001" +228730,27in 4K Gaming Monitor,1,389.99,07/12/19 11:09,"881 River St, San Francisco, CA 94016" +228731,AAA Batteries (4-pack),1,2.99,07/05/19 17:47,"305 5th St, Portland, OR 97035" +228732,Bose SoundSport Headphones,1,99.99,07/22/19 09:22,"745 Ridge St, San Francisco, CA 94016" +228733,Wired Headphones,1,11.99,07/25/19 08:57,"939 11th St, San Francisco, CA 94016" +228734,Apple Airpods Headphones,1,150,07/25/19 16:49,"597 4th St, Los Angeles, CA 90001" +228735,AAA Batteries (4-pack),1,2.99,07/01/19 11:02,"538 Lakeview St, Seattle, WA 98101" +228736,USB-C Charging Cable,1,11.95,07/29/19 19:05,"703 6th St, Dallas, TX 75001" +228737,Wired Headphones,1,11.99,07/11/19 16:24,"12 Spruce St, Portland, ME 04101" +228738,USB-C Charging Cable,1,11.95,07/27/19 18:38,"227 Pine St, Boston, MA 02215" +228739,AA Batteries (4-pack),1,3.84,07/26/19 20:49,"128 Walnut St, New York City, NY 10001" +228740,Apple Airpods Headphones,1,150,07/12/19 17:09,"380 Willow St, San Francisco, CA 94016" +228741,AAA Batteries (4-pack),1,2.99,07/21/19 15:12,"603 5th St, Los Angeles, CA 90001" +228742,AAA Batteries (4-pack),2,2.99,07/14/19 10:58,"96 Center St, Dallas, TX 75001" +228743,Apple Airpods Headphones,1,150,07/25/19 03:16,"275 Forest St, San Francisco, CA 94016" +228744,Bose SoundSport Headphones,1,99.99,07/15/19 18:16,"505 Hill St, New York City, NY 10001" +228745,iPhone,1,700,07/08/19 11:50,"998 Hill St, New York City, NY 10001" +228746,Bose SoundSport Headphones,1,99.99,07/25/19 23:45,"875 Maple St, Los Angeles, CA 90001" +228747,27in FHD Monitor,1,149.99,07/31/19 08:13,"268 Church St, Los Angeles, CA 90001" +228748,AAA Batteries (4-pack),1,2.99,07/26/19 13:17,"772 Lincoln St, San Francisco, CA 94016" +228749,Apple Airpods Headphones,1,150,07/08/19 15:05,"551 10th St, Los Angeles, CA 90001" +228750,USB-C Charging Cable,1,11.95,07/31/19 09:56,"731 Jackson St, Boston, MA 02215" +228751,Lightning Charging Cable,1,14.95,07/02/19 13:01,"246 Maple St, San Francisco, CA 94016" +228752,27in 4K Gaming Monitor,1,389.99,07/09/19 18:58,"735 Jackson St, San Francisco, CA 94016" +228753,Lightning Charging Cable,1,14.95,07/27/19 13:34,"547 River St, Seattle, WA 98101" +228754,USB-C Charging Cable,1,11.95,08/01/19 00:21,"977 North St, San Francisco, CA 94016" +228755,20in Monitor,1,109.99,07/01/19 08:30,"383 14th St, San Francisco, CA 94016" +228756,34in Ultrawide Monitor,1,379.99,07/29/19 13:23,"891 North St, Seattle, WA 98101" +228757,AAA Batteries (4-pack),1,2.99,07/04/19 20:48,"451 Main St, Seattle, WA 98101" +228758,Flatscreen TV,1,300,07/14/19 19:55,"817 9th St, Austin, TX 73301" +228759,AAA Batteries (4-pack),2,2.99,07/07/19 10:28,"218 Park St, Atlanta, GA 30301" +228760,20in Monitor,1,109.99,07/24/19 09:43,"260 Maple St, Austin, TX 73301" +228761,Bose SoundSport Headphones,1,99.99,07/19/19 14:52,"931 9th St, Atlanta, GA 30301" +228762,ThinkPad Laptop,1,999.99,07/09/19 09:15,"405 Madison St, Portland, OR 97035" +228763,AAA Batteries (4-pack),1,2.99,07/19/19 22:28,"327 Hickory St, Atlanta, GA 30301" +228764,AA Batteries (4-pack),1,3.84,07/07/19 20:14,"469 9th St, Dallas, TX 75001" +228765,AA Batteries (4-pack),1,3.84,07/08/19 21:32,"409 Spruce St, Los Angeles, CA 90001" +228766,Lightning Charging Cable,1,14.95,07/03/19 18:29,"626 10th St, Seattle, WA 98101" +228766,Google Phone,1,600,07/03/19 18:29,"626 10th St, Seattle, WA 98101" +228767,Flatscreen TV,1,300,07/10/19 16:28,"153 8th St, San Francisco, CA 94016" +228768,Wired Headphones,1,11.99,07/27/19 18:53,"140 1st St, Los Angeles, CA 90001" +228769,Wired Headphones,2,11.99,07/31/19 08:38,"950 North St, New York City, NY 10001" +228770,AAA Batteries (4-pack),1,2.99,07/17/19 16:13,"217 Cedar St, Dallas, TX 75001" +228771,Macbook Pro Laptop,1,1700,07/17/19 17:40,"117 Dogwood St, Boston, MA 02215" +228772,Lightning Charging Cable,1,14.95,07/11/19 16:53,"370 Jackson St, San Francisco, CA 94016" +228773,Flatscreen TV,1,300,07/13/19 13:16,"289 4th St, Seattle, WA 98101" +228774,27in 4K Gaming Monitor,1,389.99,07/23/19 19:56,"116 West St, Boston, MA 02215" +228775,Apple Airpods Headphones,1,150,07/01/19 11:21,"923 River St, Boston, MA 02215" +228776,ThinkPad Laptop,1,999.99,07/15/19 10:06,"251 5th St, Atlanta, GA 30301" +228777,USB-C Charging Cable,1,11.95,07/04/19 18:18,"674 Willow St, Dallas, TX 75001" +228778,Wired Headphones,2,11.99,07/06/19 10:10,"180 Church St, New York City, NY 10001" +228779,Wired Headphones,1,11.99,07/08/19 23:05,"883 Church St, Los Angeles, CA 90001" +228780,Bose SoundSport Headphones,1,99.99,07/14/19 15:44,"552 9th St, Los Angeles, CA 90001" +228781,27in 4K Gaming Monitor,1,389.99,07/07/19 17:44,"83 Highland St, New York City, NY 10001" +228782,USB-C Charging Cable,1,11.95,07/03/19 22:17,"986 Walnut St, Dallas, TX 75001" +228782,Bose SoundSport Headphones,1,99.99,07/03/19 22:17,"986 Walnut St, Dallas, TX 75001" +228783,Macbook Pro Laptop,1,1700,07/15/19 14:28,"703 Cedar St, San Francisco, CA 94016" +228784,27in FHD Monitor,1,149.99,07/09/19 16:06,"345 Lincoln St, San Francisco, CA 94016" +228785,iPhone,1,700,07/22/19 09:07,"734 Wilson St, Boston, MA 02215" +228786,AAA Batteries (4-pack),1,2.99,07/08/19 15:14,"577 Park St, Los Angeles, CA 90001" +228787,Lightning Charging Cable,1,14.95,07/27/19 18:31,"554 2nd St, Los Angeles, CA 90001" +228788,Apple Airpods Headphones,1,150,07/05/19 16:08,"738 Hickory St, Los Angeles, CA 90001" +228789,USB-C Charging Cable,1,11.95,07/13/19 16:16,"791 Cherry St, Los Angeles, CA 90001" +228790,20in Monitor,1,109.99,07/06/19 21:19,"691 Cedar St, New York City, NY 10001" +228791,AAA Batteries (4-pack),2,2.99,07/16/19 00:15,"460 8th St, Seattle, WA 98101" +228792,iPhone,1,700,07/22/19 15:53,"336 Jackson St, Austin, TX 73301" +228793,USB-C Charging Cable,1,11.95,07/02/19 18:32,"75 4th St, Los Angeles, CA 90001" +228794,Wired Headphones,1,11.99,07/30/19 08:43,"81 Madison St, Atlanta, GA 30301" +228795,Lightning Charging Cable,1,14.95,07/27/19 16:06,"113 12th St, Portland, OR 97035" +228796,Google Phone,1,600,07/12/19 10:54,"487 Johnson St, Los Angeles, CA 90001" +228797,USB-C Charging Cable,1,11.95,07/21/19 10:38,"136 6th St, Boston, MA 02215" +228798,Lightning Charging Cable,1,14.95,07/11/19 08:51,"248 Park St, Atlanta, GA 30301" +228799,Wired Headphones,1,11.99,07/02/19 22:12,"912 Jackson St, San Francisco, CA 94016" +228800,Apple Airpods Headphones,1,150,07/27/19 22:38,"26 Wilson St, New York City, NY 10001" +228801,USB-C Charging Cable,2,11.95,07/25/19 10:21,"653 2nd St, Dallas, TX 75001" +228802,AAA Batteries (4-pack),1,2.99,07/17/19 09:46,"791 Highland St, New York City, NY 10001" +228803,Macbook Pro Laptop,1,1700,07/05/19 13:16,"333 Walnut St, Dallas, TX 75001" +228804,USB-C Charging Cable,1,11.95,07/22/19 20:56,"402 Lakeview St, New York City, NY 10001" +228805,Apple Airpods Headphones,1,150,07/03/19 18:11,"475 Willow St, Seattle, WA 98101" +228806,Vareebadd Phone,1,400,07/21/19 17:46,"622 Park St, San Francisco, CA 94016" +228807,ThinkPad Laptop,1,999.99,07/31/19 16:29,"768 8th St, San Francisco, CA 94016" +228808,AA Batteries (4-pack),1,3.84,07/03/19 22:17,"887 Ridge St, San Francisco, CA 94016" +228809,AAA Batteries (4-pack),1,2.99,07/14/19 17:40,"740 4th St, San Francisco, CA 94016" +228810,AAA Batteries (4-pack),2,2.99,07/13/19 11:12,"657 Park St, Seattle, WA 98101" +228811,ThinkPad Laptop,1,999.99,07/02/19 18:09,"582 Maple St, Boston, MA 02215" +228812,USB-C Charging Cable,1,11.95,07/28/19 07:09,"573 Center St, Portland, ME 04101" +228813,USB-C Charging Cable,1,11.95,07/05/19 06:20,"924 Lincoln St, Boston, MA 02215" +228814,USB-C Charging Cable,1,11.95,07/25/19 14:29,"224 4th St, Austin, TX 73301" +228815,Lightning Charging Cable,1,14.95,07/18/19 13:41,"368 8th St, San Francisco, CA 94016" +228816,27in 4K Gaming Monitor,1,389.99,07/16/19 09:56,"802 West St, Boston, MA 02215" +228817,iPhone,1,700,07/26/19 14:49,"502 6th St, New York City, NY 10001" +228818,Macbook Pro Laptop,1,1700,07/01/19 07:42,"110 Dogwood St, San Francisco, CA 94016" +228819,Lightning Charging Cable,1,14.95,07/23/19 15:08,"94 Hickory St, San Francisco, CA 94016" +228820,Apple Airpods Headphones,1,150,07/15/19 19:05,"311 Lake St, Atlanta, GA 30301" +228821,USB-C Charging Cable,1,11.95,07/30/19 18:47,"906 8th St, New York City, NY 10001" +228822,AAA Batteries (4-pack),1,2.99,07/10/19 08:57,"727 4th St, Boston, MA 02215" +228823,Apple Airpods Headphones,1,150,07/31/19 20:17,"557 Washington St, Dallas, TX 75001" +228824,AA Batteries (4-pack),1,3.84,07/10/19 09:05,"429 Jackson St, San Francisco, CA 94016" +228825,AAA Batteries (4-pack),1,2.99,07/07/19 08:49,"320 Cherry St, Los Angeles, CA 90001" +228826,Bose SoundSport Headphones,1,99.99,07/26/19 21:27,"665 Lake St, Seattle, WA 98101" +228827,Lightning Charging Cable,1,14.95,07/10/19 17:46,"766 6th St, Boston, MA 02215" +228828,Apple Airpods Headphones,1,150,07/07/19 23:34,"290 Ridge St, Austin, TX 73301" +228829,Lightning Charging Cable,1,14.95,07/03/19 19:14,"300 Highland St, New York City, NY 10001" +228830,Lightning Charging Cable,1,14.95,07/23/19 23:48,"236 Church St, Seattle, WA 98101" +228831,27in 4K Gaming Monitor,1,389.99,07/16/19 18:40,"964 Forest St, San Francisco, CA 94016" +228832,Macbook Pro Laptop,1,1700,07/08/19 20:08,"876 Highland St, San Francisco, CA 94016" +228833,USB-C Charging Cable,1,11.95,07/07/19 10:11,"278 Cherry St, Portland, ME 04101" +228833,AAA Batteries (4-pack),1,2.99,07/07/19 10:11,"278 Cherry St, Portland, ME 04101" +228834,AA Batteries (4-pack),1,3.84,07/25/19 13:41,"530 Hill St, New York City, NY 10001" +228835,Wired Headphones,1,11.99,07/20/19 06:53,"917 13th St, San Francisco, CA 94016" +228836,Wired Headphones,1,11.99,07/03/19 12:01,"221 6th St, Portland, OR 97035" +228837,Apple Airpods Headphones,1,150,07/08/19 18:07,"828 Lakeview St, Seattle, WA 98101" +228838,Google Phone,1,600,07/31/19 13:00,"766 Jefferson St, San Francisco, CA 94016" +228839,Lightning Charging Cable,1,14.95,07/07/19 08:28,"688 8th St, Seattle, WA 98101" +228840,27in 4K Gaming Monitor,1,389.99,07/21/19 19:18,"330 Highland St, Atlanta, GA 30301" +228841,Apple Airpods Headphones,1,150,07/14/19 14:27,"231 Center St, Los Angeles, CA 90001" +228842,Wired Headphones,1,11.99,07/02/19 16:26,"669 Ridge St, Los Angeles, CA 90001" +228843,AA Batteries (4-pack),1,3.84,07/08/19 13:50,"791 14th St, San Francisco, CA 94016" +228844,Bose SoundSport Headphones,1,99.99,07/29/19 10:51,"502 Park St, San Francisco, CA 94016" +228845,Lightning Charging Cable,1,14.95,07/16/19 20:22,"439 1st St, San Francisco, CA 94016" +228846,34in Ultrawide Monitor,1,379.99,07/01/19 17:00,"325 Adams St, Dallas, TX 75001" +228847,USB-C Charging Cable,1,11.95,07/16/19 17:26,"794 Cherry St, Boston, MA 02215" +228848,Flatscreen TV,1,300,07/17/19 12:14,"902 Lakeview St, San Francisco, CA 94016" +228849,Apple Airpods Headphones,1,150,07/06/19 20:32,"541 Main St, Los Angeles, CA 90001" +228850,Wired Headphones,1,11.99,07/23/19 21:00,"498 13th St, New York City, NY 10001" +228851,27in FHD Monitor,1,149.99,07/18/19 12:48,"260 1st St, Seattle, WA 98101" +228852,27in FHD Monitor,1,149.99,07/14/19 19:10,"445 4th St, San Francisco, CA 94016" +228853,ThinkPad Laptop,1,999.99,07/01/19 02:45,"774 Jefferson St, Seattle, WA 98101" +228854,Apple Airpods Headphones,1,150,07/14/19 19:31,"323 Forest St, Seattle, WA 98101" +228855,Lightning Charging Cable,1,14.95,07/03/19 13:01,"372 Park St, Dallas, TX 75001" +228856,Lightning Charging Cable,1,14.95,07/15/19 22:54,"20 Pine St, Los Angeles, CA 90001" +228857,20in Monitor,1,109.99,07/22/19 10:46,"906 River St, San Francisco, CA 94016" +228858,Bose SoundSport Headphones,1,99.99,07/19/19 07:00,"492 10th St, New York City, NY 10001" +228859,Bose SoundSport Headphones,1,99.99,07/03/19 19:58,"289 9th St, Los Angeles, CA 90001" +228860,Lightning Charging Cable,1,14.95,07/29/19 22:37,"236 Wilson St, San Francisco, CA 94016" +228861,Apple Airpods Headphones,1,150,07/12/19 10:51,"802 10th St, Los Angeles, CA 90001" +228862,AAA Batteries (4-pack),1,2.99,07/30/19 21:44,"849 9th St, Los Angeles, CA 90001" +228863,AAA Batteries (4-pack),2,2.99,07/23/19 10:32,"22 1st St, Austin, TX 73301" +228864,Wired Headphones,1,11.99,07/22/19 19:03,"688 2nd St, Dallas, TX 75001" +228864,AA Batteries (4-pack),2,3.84,07/22/19 19:03,"688 2nd St, Dallas, TX 75001" +228865,AAA Batteries (4-pack),2,2.99,07/27/19 02:22,"661 Highland St, Boston, MA 02215" +228866,AA Batteries (4-pack),2,3.84,07/26/19 19:07,"322 Chestnut St, Portland, ME 04101" +228867,Lightning Charging Cable,1,14.95,07/10/19 08:29,"91 Wilson St, Seattle, WA 98101" +228868,Lightning Charging Cable,1,14.95,07/31/19 23:37,"711 8th St, Portland, OR 97035" +228869,ThinkPad Laptop,1,999.99,07/02/19 13:36,"861 Church St, Boston, MA 02215" +228870,Lightning Charging Cable,1,14.95,07/28/19 08:45,"783 West St, Dallas, TX 75001" +228871,20in Monitor,1,109.99,07/28/19 18:29,"267 North St, New York City, NY 10001" +228872,Flatscreen TV,1,300,07/04/19 13:24,"322 12th St, Dallas, TX 75001" +228873,Bose SoundSport Headphones,1,99.99,07/11/19 06:28,"262 6th St, San Francisco, CA 94016" +228874,Macbook Pro Laptop,1,1700,07/28/19 23:35,"32 14th St, Atlanta, GA 30301" +228875,iPhone,1,700,07/26/19 15:10,"771 14th St, San Francisco, CA 94016" +228875,Wired Headphones,1,11.99,07/26/19 15:10,"771 14th St, San Francisco, CA 94016" +228876,27in FHD Monitor,1,149.99,07/08/19 10:05,"604 11th St, New York City, NY 10001" +228877,Flatscreen TV,1,300,07/30/19 09:46,"576 Chestnut St, Portland, OR 97035" +228878,AA Batteries (4-pack),1,3.84,07/30/19 18:17,"207 Ridge St, Boston, MA 02215" +228879,USB-C Charging Cable,2,11.95,07/05/19 01:14,"812 Wilson St, Los Angeles, CA 90001" +228880,Apple Airpods Headphones,1,150,07/26/19 03:41,"876 Maple St, San Francisco, CA 94016" +228881,Flatscreen TV,1,300,07/26/19 19:37,"85 Center St, Boston, MA 02215" +228882,USB-C Charging Cable,1,11.95,07/12/19 17:46,"295 12th St, Seattle, WA 98101" +228883,Wired Headphones,1,11.99,07/29/19 12:31,"161 2nd St, San Francisco, CA 94016" +228884,Apple Airpods Headphones,1,150,07/19/19 17:25,"799 8th St, Los Angeles, CA 90001" +228885,AA Batteries (4-pack),1,3.84,07/05/19 01:35,"101 2nd St, Boston, MA 02215" +228886,ThinkPad Laptop,1,999.99,07/22/19 13:20,"651 Maple St, Dallas, TX 75001" +228887,Apple Airpods Headphones,1,150,07/21/19 12:38,"459 Park St, Los Angeles, CA 90001" +228888,Wired Headphones,1,11.99,07/15/19 15:26,"178 12th St, New York City, NY 10001" +228889,USB-C Charging Cable,1,11.95,07/18/19 17:31,"602 Johnson St, San Francisco, CA 94016" +228890,AA Batteries (4-pack),1,3.84,07/11/19 10:54,"181 Maple St, San Francisco, CA 94016" +228891,iPhone,1,700,07/09/19 12:05,"789 North St, San Francisco, CA 94016" +228892,AAA Batteries (4-pack),2,2.99,07/02/19 13:23,"412 Lincoln St, Los Angeles, CA 90001" +228893,AA Batteries (4-pack),1,3.84,07/14/19 23:28,"849 South St, Atlanta, GA 30301" +228894,Google Phone,1,600,07/07/19 00:01,"61 9th St, San Francisco, CA 94016" +228894,USB-C Charging Cable,1,11.95,07/07/19 00:01,"61 9th St, San Francisco, CA 94016" +228895,USB-C Charging Cable,1,11.95,07/27/19 14:02,"885 8th St, Boston, MA 02215" +228896,Wired Headphones,1,11.99,07/12/19 08:21,"115 Sunset St, Dallas, TX 75001" +228897,Bose SoundSport Headphones,1,99.99,07/18/19 06:46,"863 Cherry St, Seattle, WA 98101" +228898,34in Ultrawide Monitor,1,379.99,07/15/19 18:51,"939 Park St, Portland, OR 97035" +228898,Apple Airpods Headphones,1,150,07/15/19 18:51,"939 Park St, Portland, OR 97035" +228899,USB-C Charging Cable,1,11.95,07/06/19 19:25,"456 Forest St, Portland, OR 97035" +228900,Wired Headphones,1,11.99,07/31/19 10:18,"32 6th St, Portland, ME 04101" +228901,Lightning Charging Cable,1,14.95,07/06/19 09:42,"433 Spruce St, Austin, TX 73301" +228902,20in Monitor,1,109.99,07/27/19 10:06,"375 River St, Dallas, TX 75001" +228903,Lightning Charging Cable,1,14.95,07/01/19 17:35,"163 9th St, San Francisco, CA 94016" +228904,Wired Headphones,1,11.99,07/01/19 12:27,"11 2nd St, New York City, NY 10001" +228905,USB-C Charging Cable,1,11.95,07/16/19 21:40,"866 Jackson St, New York City, NY 10001" +228906,Wired Headphones,1,11.99,07/30/19 23:15,"878 14th St, New York City, NY 10001" +228907,AAA Batteries (4-pack),1,2.99,07/28/19 10:36,"344 1st St, San Francisco, CA 94016" +228908,Apple Airpods Headphones,1,150,07/01/19 17:02,"810 Washington St, Portland, OR 97035" +228909,Wired Headphones,1,11.99,07/12/19 19:19,"721 Center St, Los Angeles, CA 90001" +228910,Lightning Charging Cable,1,14.95,07/20/19 08:53,"713 12th St, San Francisco, CA 94016" +228911,Google Phone,1,600,07/24/19 16:23,"407 Lake St, San Francisco, CA 94016" +228912,27in 4K Gaming Monitor,1,389.99,07/09/19 06:45,"969 13th St, Austin, TX 73301" +228913,AAA Batteries (4-pack),1,2.99,07/04/19 14:29,"9 1st St, Dallas, TX 75001" +228914,20in Monitor,1,109.99,07/28/19 20:28,"862 Park St, San Francisco, CA 94016" +228915,27in FHD Monitor,1,149.99,07/05/19 23:45,"201 Walnut St, New York City, NY 10001" +228916,Bose SoundSport Headphones,1,99.99,07/06/19 22:55,"759 9th St, Boston, MA 02215" +228917,Vareebadd Phone,1,400,07/29/19 14:15,"25 Maple St, Portland, OR 97035" +228918,AA Batteries (4-pack),1,3.84,07/26/19 15:19,"549 4th St, Los Angeles, CA 90001" +228919,AA Batteries (4-pack),1,3.84,07/25/19 20:36,"695 Adams St, San Francisco, CA 94016" +228920,AA Batteries (4-pack),1,3.84,07/29/19 21:34,"537 Ridge St, Portland, ME 04101" +228921,LG Washing Machine,1,600.0,07/05/19 08:15,"674 Willow St, Portland, ME 04101" +228922,Google Phone,1,600,07/21/19 14:17,"402 Meadow St, Los Angeles, CA 90001" +228922,Wired Headphones,1,11.99,07/21/19 14:17,"402 Meadow St, Los Angeles, CA 90001" +228923,Lightning Charging Cable,1,14.95,07/14/19 11:46,"408 2nd St, Los Angeles, CA 90001" +228924,AA Batteries (4-pack),1,3.84,07/03/19 13:46,"624 13th St, Dallas, TX 75001" +228925,iPhone,1,700,07/04/19 15:57,"806 North St, Dallas, TX 75001" +228926,AAA Batteries (4-pack),1,2.99,07/08/19 19:10,"666 Cedar St, Seattle, WA 98101" +228927,Bose SoundSport Headphones,1,99.99,07/26/19 12:45,"126 Hickory St, Boston, MA 02215" +228928,20in Monitor,1,109.99,07/09/19 22:02,"528 Madison St, Seattle, WA 98101" +228929,Bose SoundSport Headphones,1,99.99,07/14/19 20:25,"367 Jefferson St, Dallas, TX 75001" +228930,20in Monitor,1,109.99,07/22/19 23:23,"86 Pine St, Dallas, TX 75001" +228931,Flatscreen TV,1,300,07/15/19 10:12,"167 8th St, San Francisco, CA 94016" +228932,Apple Airpods Headphones,1,150,07/31/19 21:54,"365 Cherry St, San Francisco, CA 94016" +228933,27in 4K Gaming Monitor,1,389.99,07/18/19 20:13,"358 12th St, Portland, OR 97035" +228934,27in FHD Monitor,1,149.99,07/15/19 14:38,"604 13th St, San Francisco, CA 94016" +228935,27in 4K Gaming Monitor,1,389.99,07/26/19 22:10,"140 West St, San Francisco, CA 94016" +228936,27in FHD Monitor,1,149.99,07/21/19 17:17,"86 6th St, San Francisco, CA 94016" +228937,Apple Airpods Headphones,1,150,07/24/19 11:20,"32 Walnut St, Los Angeles, CA 90001" +228938,Wired Headphones,1,11.99,07/26/19 22:33,"580 Jackson St, New York City, NY 10001" +228939,ThinkPad Laptop,1,999.99,07/06/19 16:02,"145 Sunset St, New York City, NY 10001" +228940,Lightning Charging Cable,1,14.95,07/11/19 15:10,"480 Jackson St, Austin, TX 73301" +228941,AAA Batteries (4-pack),2,2.99,07/03/19 16:52,"557 Adams St, Dallas, TX 75001" +228942,Lightning Charging Cable,1,14.95,07/20/19 16:05,"594 14th St, Seattle, WA 98101" +228943,AAA Batteries (4-pack),1,2.99,07/04/19 21:14,"618 Forest St, Seattle, WA 98101" +228944,AA Batteries (4-pack),1,3.84,07/14/19 23:19,"932 Maple St, Los Angeles, CA 90001" +228945,Wired Headphones,1,11.99,07/09/19 21:05,"518 Hill St, Portland, OR 97035" +228946,Apple Airpods Headphones,1,150,07/08/19 17:39,"427 5th St, Austin, TX 73301" +228947,AA Batteries (4-pack),3,3.84,07/01/19 14:22,"566 Pine St, Seattle, WA 98101" +228948,USB-C Charging Cable,1,11.95,07/09/19 08:26,"308 Main St, Austin, TX 73301" +228949,USB-C Charging Cable,1,11.95,07/30/19 14:56,"651 Wilson St, Atlanta, GA 30301" +228950,Flatscreen TV,1,300,07/17/19 12:09,"145 Cherry St, New York City, NY 10001" +228951,Apple Airpods Headphones,1,150,07/25/19 09:58,"346 West St, Los Angeles, CA 90001" +228952,AA Batteries (4-pack),2,3.84,07/06/19 00:16,"897 5th St, Los Angeles, CA 90001" +228953,Bose SoundSport Headphones,1,99.99,07/03/19 19:57,"357 West St, Boston, MA 02215" +228954,Apple Airpods Headphones,1,150,07/24/19 10:07,"843 Walnut St, Seattle, WA 98101" +228955,Lightning Charging Cable,1,14.95,07/12/19 21:05,"261 North St, San Francisco, CA 94016" +228956,ThinkPad Laptop,1,999.99,07/04/19 14:30,"167 River St, Seattle, WA 98101" +228957,AA Batteries (4-pack),2,3.84,07/25/19 13:04,"182 Washington St, Seattle, WA 98101" +228958,Lightning Charging Cable,1,14.95,07/08/19 13:54,"724 Adams St, Dallas, TX 75001" +228959,AAA Batteries (4-pack),2,2.99,07/23/19 17:36,"309 9th St, Los Angeles, CA 90001" +228960,USB-C Charging Cable,2,11.95,07/20/19 21:39,"846 7th St, Boston, MA 02215" +228961,AAA Batteries (4-pack),1,2.99,07/19/19 21:44,"682 West St, Atlanta, GA 30301" +228962,Bose SoundSport Headphones,1,99.99,07/12/19 16:01,"52 13th St, Seattle, WA 98101" +228963,USB-C Charging Cable,1,11.95,07/05/19 12:09,"838 Jackson St, Los Angeles, CA 90001" +228964,ThinkPad Laptop,1,999.99,07/14/19 15:42,"696 11th St, Seattle, WA 98101" +228965,LG Washing Machine,1,600.0,07/04/19 11:17,"941 Main St, Los Angeles, CA 90001" +228966,Lightning Charging Cable,1,14.95,07/28/19 15:04,"844 Johnson St, New York City, NY 10001" +228967,AA Batteries (4-pack),1,3.84,07/16/19 13:57,"437 9th St, San Francisco, CA 94016" +228968,27in FHD Monitor,1,149.99,07/12/19 17:59,"521 Sunset St, Austin, TX 73301" +228968,Bose SoundSport Headphones,1,99.99,07/12/19 17:59,"521 Sunset St, Austin, TX 73301" +228969,AAA Batteries (4-pack),1,2.99,07/10/19 13:29,"727 Cedar St, Atlanta, GA 30301" +228970,Apple Airpods Headphones,1,150,07/05/19 16:01,"668 Johnson St, Los Angeles, CA 90001" +228971,AAA Batteries (4-pack),1,2.99,07/31/19 17:01,"44 4th St, Atlanta, GA 30301" +228972,27in 4K Gaming Monitor,1,389.99,07/20/19 09:13,"586 Forest St, Boston, MA 02215" +228973,USB-C Charging Cable,1,11.95,07/20/19 15:15,"966 9th St, San Francisco, CA 94016" +228973,Lightning Charging Cable,1,14.95,07/20/19 15:15,"966 9th St, San Francisco, CA 94016" +228974,iPhone,1,700,07/07/19 21:15,"17 Hickory St, Portland, OR 97035" +228975,Lightning Charging Cable,1,14.95,07/07/19 22:09,"750 Cherry St, Austin, TX 73301" +228976,Macbook Pro Laptop,1,1700,07/21/19 20:37,"321 11th St, Los Angeles, CA 90001" +228976,Wired Headphones,1,11.99,07/21/19 20:37,"321 11th St, Los Angeles, CA 90001" +228977,Wired Headphones,1,11.99,07/02/19 15:59,"421 4th St, Boston, MA 02215" +228978,AAA Batteries (4-pack),2,2.99,07/24/19 08:50,"116 Johnson St, San Francisco, CA 94016" +228979,Lightning Charging Cable,1,14.95,07/12/19 11:07,"742 Cedar St, Atlanta, GA 30301" +228980,Bose SoundSport Headphones,1,99.99,07/11/19 18:53,"730 River St, Seattle, WA 98101" +228981,Bose SoundSport Headphones,1,99.99,07/09/19 10:05,"653 Park St, Boston, MA 02215" +228982,Google Phone,1,600,07/01/19 16:32,"496 Hill St, Seattle, WA 98101" +228982,USB-C Charging Cable,1,11.95,07/01/19 16:32,"496 Hill St, Seattle, WA 98101" +228983,20in Monitor,1,109.99,07/26/19 08:55,"990 Washington St, Boston, MA 02215" +228984,AAA Batteries (4-pack),1,2.99,07/08/19 10:16,"15 Park St, Seattle, WA 98101" +228985,20in Monitor,1,109.99,07/29/19 18:07,"399 Meadow St, San Francisco, CA 94016" +228986,Wired Headphones,1,11.99,07/09/19 22:11,"763 Jefferson St, Boston, MA 02215" +228987,Flatscreen TV,1,300,07/12/19 04:50,"305 Main St, San Francisco, CA 94016" +228988,Lightning Charging Cable,1,14.95,07/17/19 20:43,"901 5th St, San Francisco, CA 94016" +228989,AAA Batteries (4-pack),2,2.99,07/16/19 22:18,"465 5th St, Los Angeles, CA 90001" +228990,Apple Airpods Headphones,1,150,08/01/19 00:04,"23 Lakeview St, Austin, TX 73301" +228991,USB-C Charging Cable,1,11.95,07/17/19 08:01,"249 Willow St, New York City, NY 10001" +228992,Lightning Charging Cable,1,14.95,07/21/19 14:17,"578 Cedar St, Atlanta, GA 30301" +228993,AA Batteries (4-pack),1,3.84,07/18/19 17:52,"663 7th St, New York City, NY 10001" +228994,Apple Airpods Headphones,1,150,07/06/19 20:50,"77 Lincoln St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +228995,AA Batteries (4-pack),1,3.84,07/26/19 08:31,"129 Lincoln St, Seattle, WA 98101" +228996,Apple Airpods Headphones,1,150,07/02/19 14:14,"193 Elm St, Los Angeles, CA 90001" +228997,USB-C Charging Cable,1,11.95,07/18/19 13:24,"702 4th St, Boston, MA 02215" +228998,Wired Headphones,1,11.99,07/13/19 18:44,"166 Center St, New York City, NY 10001" +228999,34in Ultrawide Monitor,1,379.99,07/27/19 22:03,"845 Maple St, Atlanta, GA 30301" +229000,Bose SoundSport Headphones,1,99.99,07/31/19 13:09,"668 Maple St, Los Angeles, CA 90001" +229001,AAA Batteries (4-pack),1,2.99,07/16/19 11:01,"532 14th St, San Francisco, CA 94016" +229002,Lightning Charging Cable,1,14.95,07/31/19 13:45,"941 10th St, Los Angeles, CA 90001" +229003,34in Ultrawide Monitor,1,379.99,07/15/19 12:40,"239 Hickory St, San Francisco, CA 94016" +229004,Vareebadd Phone,1,400,07/25/19 18:29,"909 Jefferson St, Atlanta, GA 30301" +229004,USB-C Charging Cable,1,11.95,07/25/19 18:29,"909 Jefferson St, Atlanta, GA 30301" +229005,AA Batteries (4-pack),1,3.84,07/19/19 13:45,"350 13th St, Boston, MA 02215" +229006,Bose SoundSport Headphones,1,99.99,07/20/19 22:14,"175 North St, San Francisco, CA 94016" +229007,Apple Airpods Headphones,1,150,07/28/19 09:54,"760 Center St, San Francisco, CA 94016" +229008,Wired Headphones,1,11.99,07/04/19 18:22,"492 5th St, Portland, OR 97035" +229009,34in Ultrawide Monitor,1,379.99,07/20/19 10:53,"341 Park St, Los Angeles, CA 90001" +229010,Bose SoundSport Headphones,1,99.99,07/06/19 17:20,"309 5th St, Atlanta, GA 30301" +229011,Lightning Charging Cable,1,14.95,07/10/19 21:37,"614 10th St, Los Angeles, CA 90001" +229012,ThinkPad Laptop,1,999.99,07/29/19 21:19,"874 Johnson St, Austin, TX 73301" +229013,Wired Headphones,1,11.99,07/26/19 20:24,"270 Lakeview St, Seattle, WA 98101" +229014,27in FHD Monitor,1,149.99,07/27/19 19:39,"512 South St, New York City, NY 10001" +229015,USB-C Charging Cable,1,11.95,07/26/19 12:00,"608 12th St, Atlanta, GA 30301" +229016,AAA Batteries (4-pack),1,2.99,07/06/19 08:17,"388 Willow St, Seattle, WA 98101" +229017,ThinkPad Laptop,1,999.99,07/07/19 20:20,"490 12th St, Dallas, TX 75001" +229018,USB-C Charging Cable,2,11.95,07/30/19 23:50,"625 Wilson St, New York City, NY 10001" +,,,,, +229019,AAA Batteries (4-pack),1,2.99,07/10/19 22:21,"481 Lincoln St, Seattle, WA 98101" +229020,Lightning Charging Cable,1,14.95,07/08/19 17:08,"918 Main St, Austin, TX 73301" +229021,iPhone,1,700,07/10/19 07:15,"414 Sunset St, New York City, NY 10001" +229022,Wired Headphones,1,11.99,07/22/19 16:17,"9 2nd St, Seattle, WA 98101" +229023,AAA Batteries (4-pack),2,2.99,07/02/19 12:33,"775 Elm St, San Francisco, CA 94016" +229024,Bose SoundSport Headphones,1,99.99,07/01/19 23:47,"761 Jefferson St, New York City, NY 10001" +229025,AA Batteries (4-pack),1,3.84,07/29/19 11:15,"811 12th St, Los Angeles, CA 90001" +229026,34in Ultrawide Monitor,1,379.99,07/11/19 03:09,"67 West St, Los Angeles, CA 90001" +229027,AA Batteries (4-pack),1,3.84,07/16/19 13:29,"682 Madison St, Boston, MA 02215" +229028,Lightning Charging Cable,1,14.95,07/16/19 21:59,"26 Dogwood St, Boston, MA 02215" +229029,iPhone,1,700,07/27/19 07:42,"81 Sunset St, Los Angeles, CA 90001" +229030,27in FHD Monitor,1,149.99,07/11/19 14:43,"249 Meadow St, Los Angeles, CA 90001" +229031,27in FHD Monitor,1,149.99,07/25/19 10:50,"302 Cherry St, Seattle, WA 98101" +229032,Macbook Pro Laptop,1,1700,07/07/19 22:07,"194 14th St, Atlanta, GA 30301" +229033,USB-C Charging Cable,1,11.95,07/27/19 18:10,"860 7th St, San Francisco, CA 94016" +229034,Bose SoundSport Headphones,1,99.99,07/29/19 17:24,"539 Pine St, San Francisco, CA 94016" +229035,27in FHD Monitor,1,149.99,07/17/19 19:40,"433 Cherry St, San Francisco, CA 94016" +229036,Bose SoundSport Headphones,1,99.99,07/02/19 17:46,"853 Park St, Los Angeles, CA 90001" +229037,Macbook Pro Laptop,1,1700,07/04/19 17:13,"952 8th St, Los Angeles, CA 90001" +229038,AA Batteries (4-pack),1,3.84,07/04/19 19:22,"652 Washington St, Los Angeles, CA 90001" +229039,AAA Batteries (4-pack),1,2.99,07/20/19 14:26,"887 Pine St, Boston, MA 02215" +229040,AAA Batteries (4-pack),1,2.99,07/10/19 13:06,"790 Lakeview St, New York City, NY 10001" +229041,Bose SoundSport Headphones,1,99.99,07/21/19 17:47,"965 2nd St, New York City, NY 10001" +229042,USB-C Charging Cable,2,11.95,07/15/19 15:42,"401 13th St, New York City, NY 10001" +229043,LG Dryer,1,600.0,07/14/19 14:50,"645 Church St, Portland, OR 97035" +229044,27in FHD Monitor,1,149.99,07/18/19 00:02,"895 10th St, San Francisco, CA 94016" +229045,Lightning Charging Cable,1,14.95,07/26/19 14:38,"424 5th St, Seattle, WA 98101" +229046,Wired Headphones,1,11.99,07/04/19 19:18,"807 Elm St, Atlanta, GA 30301" +229047,iPhone,1,700,07/09/19 22:30,"640 Jefferson St, Dallas, TX 75001" +229047,Wired Headphones,1,11.99,07/09/19 22:30,"640 Jefferson St, Dallas, TX 75001" +229048,Wired Headphones,1,11.99,07/28/19 15:31,"398 14th St, Austin, TX 73301" +229049,Lightning Charging Cable,1,14.95,07/18/19 11:04,"152 Pine St, San Francisco, CA 94016" +229050,Bose SoundSport Headphones,1,99.99,07/22/19 23:11,"990 Lake St, Los Angeles, CA 90001" +229051,AAA Batteries (4-pack),1,2.99,07/05/19 19:42,"173 Pine St, New York City, NY 10001" +229052,Google Phone,1,600,07/24/19 12:51,"200 14th St, San Francisco, CA 94016" +229052,Bose SoundSport Headphones,1,99.99,07/24/19 12:51,"200 14th St, San Francisco, CA 94016" +229053,34in Ultrawide Monitor,1,379.99,07/25/19 18:12,"715 10th St, San Francisco, CA 94016" +229054,Bose SoundSport Headphones,1,99.99,07/03/19 08:34,"124 West St, San Francisco, CA 94016" +229055,USB-C Charging Cable,2,11.95,07/28/19 22:49,"745 4th St, Los Angeles, CA 90001" +229056,Lightning Charging Cable,1,14.95,07/21/19 21:43,"197 Chestnut St, Los Angeles, CA 90001" +229057,Apple Airpods Headphones,1,150,07/25/19 00:05,"971 Lake St, Seattle, WA 98101" +229058,Wired Headphones,1,11.99,07/27/19 12:42,"564 2nd St, San Francisco, CA 94016" +229059,AA Batteries (4-pack),1,3.84,07/25/19 07:59,"851 Sunset St, Boston, MA 02215" +229060,Google Phone,1,600,07/10/19 23:39,"49 Church St, Dallas, TX 75001" +229060,USB-C Charging Cable,1,11.95,07/10/19 23:39,"49 Church St, Dallas, TX 75001" +229061,34in Ultrawide Monitor,1,379.99,07/03/19 20:11,"643 South St, San Francisco, CA 94016" +229062,Lightning Charging Cable,1,14.95,07/16/19 14:53,"226 4th St, San Francisco, CA 94016" +229063,USB-C Charging Cable,1,11.95,07/02/19 12:28,"818 River St, San Francisco, CA 94016" +229064,USB-C Charging Cable,1,11.95,07/30/19 16:35,"918 Madison St, Austin, TX 73301" +229065,AAA Batteries (4-pack),1,2.99,07/17/19 23:55,"198 Main St, Seattle, WA 98101" +229066,AAA Batteries (4-pack),1,2.99,07/11/19 05:35,"337 West St, Boston, MA 02215" +229067,AA Batteries (4-pack),1,3.84,07/24/19 18:07,"149 Cherry St, San Francisco, CA 94016" +229068,27in 4K Gaming Monitor,1,389.99,07/28/19 20:14,"153 Spruce St, San Francisco, CA 94016" +229069,USB-C Charging Cable,1,11.95,07/25/19 16:10,"130 Madison St, San Francisco, CA 94016" +229070,20in Monitor,1,109.99,07/25/19 07:08,"685 Madison St, Los Angeles, CA 90001" +229071,Wired Headphones,1,11.99,07/14/19 19:16,"941 Church St, Dallas, TX 75001" +229072,Wired Headphones,1,11.99,07/08/19 21:21,"739 8th St, Los Angeles, CA 90001" +229073,USB-C Charging Cable,1,11.95,07/19/19 20:56,"324 Johnson St, Austin, TX 73301" +229074,AAA Batteries (4-pack),1,2.99,07/29/19 18:17,"376 Lake St, Boston, MA 02215" +229075,34in Ultrawide Monitor,1,379.99,07/19/19 20:32,"505 Wilson St, San Francisco, CA 94016" +229076,Apple Airpods Headphones,1,150,07/18/19 17:45,"809 Meadow St, Dallas, TX 75001" +229077,Wired Headphones,1,11.99,07/19/19 19:52,"112 Hill St, Austin, TX 73301" +229078,27in FHD Monitor,1,149.99,07/22/19 16:59,"598 12th St, San Francisco, CA 94016" +229079,AAA Batteries (4-pack),1,2.99,07/31/19 10:37,"708 14th St, Atlanta, GA 30301" +229080,AA Batteries (4-pack),1,3.84,07/23/19 21:30,"419 Cherry St, Boston, MA 02215" +229081,AA Batteries (4-pack),1,3.84,07/07/19 13:25,"220 Adams St, Los Angeles, CA 90001" +229082,AA Batteries (4-pack),1,3.84,07/27/19 17:25,"581 Dogwood St, Atlanta, GA 30301" +229083,USB-C Charging Cable,1,11.95,07/14/19 13:02,"293 Elm St, San Francisco, CA 94016" +229084,Bose SoundSport Headphones,1,99.99,07/17/19 16:21,"94 Johnson St, Atlanta, GA 30301" +229085,Wired Headphones,2,11.99,07/07/19 09:44,"487 Park St, Los Angeles, CA 90001" +229086,27in FHD Monitor,1,149.99,07/07/19 15:09,"995 Walnut St, San Francisco, CA 94016" +229087,Wired Headphones,1,11.99,07/15/19 09:46,"848 Sunset St, Portland, OR 97035" +229088,Apple Airpods Headphones,1,150,07/14/19 11:36,"185 13th St, Boston, MA 02215" +229089,AAA Batteries (4-pack),1,2.99,07/10/19 11:45,"936 Adams St, Atlanta, GA 30301" +229090,Wired Headphones,1,11.99,07/29/19 19:34,"79 Jefferson St, San Francisco, CA 94016" +229091,Lightning Charging Cable,1,14.95,07/13/19 20:06,"19 13th St, Portland, OR 97035" +229092,Apple Airpods Headphones,1,150,07/08/19 12:20,"702 Washington St, New York City, NY 10001" +229093,iPhone,1,700,07/19/19 19:48,"573 Adams St, New York City, NY 10001" +229094,Apple Airpods Headphones,1,150,07/09/19 22:36,"953 Forest St, San Francisco, CA 94016" +229095,Lightning Charging Cable,1,14.95,07/27/19 23:32,"581 Cedar St, Portland, ME 04101" +229096,AAA Batteries (4-pack),3,2.99,07/26/19 10:20,"158 Hickory St, San Francisco, CA 94016" +229097,34in Ultrawide Monitor,1,379.99,07/03/19 14:24,"391 Elm St, San Francisco, CA 94016" +229098,20in Monitor,1,109.99,07/22/19 14:19,"16 4th St, Austin, TX 73301" +229099,Wired Headphones,1,11.99,07/25/19 20:54,"727 11th St, San Francisco, CA 94016" +229100,Lightning Charging Cable,1,14.95,07/07/19 20:56,"201 Center St, San Francisco, CA 94016" +229101,AA Batteries (4-pack),1,3.84,07/13/19 13:57,"635 Park St, San Francisco, CA 94016" +229102,Apple Airpods Headphones,1,150,07/08/19 11:42,"150 1st St, Los Angeles, CA 90001" +229103,Wired Headphones,1,11.99,07/17/19 18:58,"62 12th St, New York City, NY 10001" +229104,AA Batteries (4-pack),1,3.84,07/05/19 15:03,"110 Elm St, San Francisco, CA 94016" +229105,Macbook Pro Laptop,1,1700,07/20/19 12:30,"150 8th St, Dallas, TX 75001" +229106,Apple Airpods Headphones,1,150,07/20/19 16:10,"848 Jackson St, Portland, OR 97035" +229107,iPhone,1,700,07/05/19 15:13,"86 Dogwood St, Portland, OR 97035" +229107,Lightning Charging Cable,1,14.95,07/05/19 15:13,"86 Dogwood St, Portland, OR 97035" +229107,Wired Headphones,1,11.99,07/05/19 15:13,"86 Dogwood St, Portland, OR 97035" +229108,AA Batteries (4-pack),2,3.84,07/05/19 21:21,"733 Sunset St, Boston, MA 02215" +229109,Lightning Charging Cable,1,14.95,07/16/19 11:29,"146 9th St, Los Angeles, CA 90001" +229110,USB-C Charging Cable,1,11.95,07/24/19 18:41,"352 Elm St, New York City, NY 10001" +229111,27in FHD Monitor,1,149.99,07/12/19 20:34,"648 Cherry St, Seattle, WA 98101" +229112,AAA Batteries (4-pack),1,2.99,07/10/19 10:45,"627 7th St, Los Angeles, CA 90001" +229113,AAA Batteries (4-pack),5,2.99,07/19/19 11:07,"851 14th St, New York City, NY 10001" +229114,AAA Batteries (4-pack),1,2.99,07/30/19 18:05,"545 2nd St, Seattle, WA 98101" +229115,iPhone,1,700,07/23/19 10:03,"916 6th St, Los Angeles, CA 90001" +229115,Lightning Charging Cable,1,14.95,07/23/19 10:03,"916 6th St, Los Angeles, CA 90001" +229115,Apple Airpods Headphones,1,150,07/23/19 10:03,"916 6th St, Los Angeles, CA 90001" +229116,Bose SoundSport Headphones,1,99.99,07/09/19 09:03,"6 10th St, New York City, NY 10001" +229117,Apple Airpods Headphones,1,150,07/12/19 21:54,"491 Wilson St, Atlanta, GA 30301" +229118,Lightning Charging Cable,1,14.95,07/30/19 09:46,"279 Adams St, Atlanta, GA 30301" +229119,27in 4K Gaming Monitor,1,389.99,07/29/19 15:00,"560 Adams St, Los Angeles, CA 90001" +229120,Lightning Charging Cable,1,14.95,07/29/19 17:12,"67 North St, New York City, NY 10001" +229121,Wired Headphones,1,11.99,07/12/19 06:45,"539 Meadow St, New York City, NY 10001" +229122,USB-C Charging Cable,1,11.95,07/20/19 09:30,"179 Lake St, Los Angeles, CA 90001" +229123,27in FHD Monitor,1,149.99,07/26/19 23:23,"242 Highland St, Dallas, TX 75001" +229124,AA Batteries (4-pack),2,3.84,07/20/19 18:23,"461 Main St, Boston, MA 02215" +229125,Bose SoundSport Headphones,1,99.99,07/02/19 21:01,"549 Walnut St, Los Angeles, CA 90001" +229126,AA Batteries (4-pack),2,3.84,07/22/19 13:08,"158 Forest St, San Francisco, CA 94016" +229127,27in 4K Gaming Monitor,1,389.99,07/11/19 23:15,"394 Sunset St, Austin, TX 73301" +229128,AAA Batteries (4-pack),1,2.99,07/14/19 10:11,"442 Jefferson St, New York City, NY 10001" +229129,Wired Headphones,2,11.99,07/08/19 21:12,"280 Maple St, Seattle, WA 98101" +229130,ThinkPad Laptop,1,999.99,07/14/19 09:47,"502 11th St, Seattle, WA 98101" +229131,27in FHD Monitor,1,149.99,07/22/19 21:00,"42 Pine St, Portland, OR 97035" +229132,iPhone,1,700,07/05/19 11:40,"887 Ridge St, Seattle, WA 98101" +229132,Wired Headphones,2,11.99,07/05/19 11:40,"887 Ridge St, Seattle, WA 98101" +229133,AAA Batteries (4-pack),2,2.99,07/28/19 10:46,"146 Spruce St, Atlanta, GA 30301" +229134,USB-C Charging Cable,1,11.95,07/25/19 17:29,"300 4th St, New York City, NY 10001" +229135,ThinkPad Laptop,1,999.99,07/16/19 23:30,"905 6th St, Dallas, TX 75001" +229136,USB-C Charging Cable,1,11.95,07/22/19 20:41,"412 Jackson St, Austin, TX 73301" +229137,27in 4K Gaming Monitor,1,389.99,07/20/19 10:53,"290 Pine St, San Francisco, CA 94016" +229138,USB-C Charging Cable,1,11.95,07/23/19 20:11,"226 Lakeview St, Austin, TX 73301" +229139,AA Batteries (4-pack),2,3.84,07/18/19 19:53,"257 Center St, Los Angeles, CA 90001" +229140,ThinkPad Laptop,1,999.99,07/17/19 15:47,"649 Center St, Seattle, WA 98101" +229141,Bose SoundSport Headphones,1,99.99,07/02/19 21:33,"618 Center St, Austin, TX 73301" +229142,27in FHD Monitor,1,149.99,07/21/19 13:46,"213 Lake St, Los Angeles, CA 90001" +229143,USB-C Charging Cable,1,11.95,07/17/19 15:53,"35 10th St, San Francisco, CA 94016" +229144,AAA Batteries (4-pack),1,2.99,07/12/19 21:30,"818 West St, San Francisco, CA 94016" +229145,AA Batteries (4-pack),2,3.84,07/30/19 19:11,"384 Washington St, San Francisco, CA 94016" +229146,iPhone,1,700,07/01/19 13:19,"919 Spruce St, Los Angeles, CA 90001" +229147,AA Batteries (4-pack),1,3.84,07/11/19 21:53,"801 6th St, Los Angeles, CA 90001" +229148,USB-C Charging Cable,1,11.95,07/31/19 13:57,"530 12th St, Seattle, WA 98101" +229149,Apple Airpods Headphones,1,150,07/27/19 13:44,"364 Adams St, San Francisco, CA 94016" +229150,27in 4K Gaming Monitor,1,389.99,07/17/19 23:26,"409 Main St, Boston, MA 02215" +229151,Wired Headphones,1,11.99,07/18/19 21:43,"809 Cherry St, New York City, NY 10001" +229152,USB-C Charging Cable,1,11.95,07/08/19 18:31,"506 Wilson St, Los Angeles, CA 90001" +229153,AAA Batteries (4-pack),1,2.99,07/02/19 21:32,"226 Hickory St, San Francisco, CA 94016" +229154,AA Batteries (4-pack),1,3.84,07/05/19 13:58,"627 Hill St, San Francisco, CA 94016" +229155,Lightning Charging Cable,1,14.95,07/26/19 18:58,"537 Elm St, Dallas, TX 75001" +229156,USB-C Charging Cable,1,11.95,07/11/19 12:14,"290 Park St, San Francisco, CA 94016" +229157,20in Monitor,1,109.99,07/02/19 12:41,"741 Lake St, Dallas, TX 75001" +229158,Wired Headphones,1,11.99,07/28/19 17:31,"439 13th St, Seattle, WA 98101" +229159,AA Batteries (4-pack),1,3.84,07/22/19 21:57,"886 Lake St, Austin, TX 73301" +229160,27in 4K Gaming Monitor,1,389.99,07/04/19 12:22,"864 Sunset St, Los Angeles, CA 90001" +229161,27in FHD Monitor,1,149.99,07/09/19 19:24,"544 Cedar St, San Francisco, CA 94016" +229162,Flatscreen TV,1,300,07/19/19 11:15,"966 12th St, Los Angeles, CA 90001" +229163,Apple Airpods Headphones,1,150,07/16/19 11:35,"213 Jefferson St, Portland, ME 04101" +229164,Apple Airpods Headphones,1,150,07/23/19 11:13,"473 Cedar St, Los Angeles, CA 90001" +229165,Wired Headphones,1,11.99,07/26/19 05:22,"538 1st St, New York City, NY 10001" +229166,USB-C Charging Cable,1,11.95,07/21/19 13:16,"376 Hill St, San Francisco, CA 94016" +229167,Apple Airpods Headphones,1,150,07/17/19 19:42,"395 1st St, Boston, MA 02215" +229168,Bose SoundSport Headphones,1,99.99,07/22/19 16:14,"620 Lincoln St, Atlanta, GA 30301" +229169,AA Batteries (4-pack),1,3.84,07/02/19 15:33,"897 5th St, Atlanta, GA 30301" +229170,Wired Headphones,1,11.99,07/14/19 20:27,"48 11th St, Los Angeles, CA 90001" +229171,Apple Airpods Headphones,1,150,07/03/19 14:18,"800 13th St, Portland, OR 97035" +229172,AA Batteries (4-pack),1,3.84,07/29/19 02:01,"244 South St, San Francisco, CA 94016" +229173,AA Batteries (4-pack),1,3.84,07/03/19 00:48,"413 Washington St, Atlanta, GA 30301" +229174,Apple Airpods Headphones,1,150,07/29/19 18:39,"705 Center St, Boston, MA 02215" +229175,AAA Batteries (4-pack),1,2.99,07/28/19 17:11,"651 Adams St, New York City, NY 10001" +229176,USB-C Charging Cable,2,11.95,07/07/19 12:41,"669 River St, Boston, MA 02215" +229177,AAA Batteries (4-pack),1,2.99,07/22/19 16:59,"546 Hickory St, Austin, TX 73301" +229178,USB-C Charging Cable,1,11.95,07/21/19 14:19,"255 Johnson St, Los Angeles, CA 90001" +229179,20in Monitor,1,109.99,07/28/19 10:24,"919 Maple St, Austin, TX 73301" +229180,Bose SoundSport Headphones,1,99.99,07/06/19 00:03,"930 12th St, Seattle, WA 98101" +229181,LG Washing Machine,1,600.0,07/29/19 21:36,"11 Johnson St, Los Angeles, CA 90001" +229182,AAA Batteries (4-pack),2,2.99,07/18/19 21:41,"802 West St, Atlanta, GA 30301" +229183,Lightning Charging Cable,1,14.95,07/07/19 22:02,"978 Cedar St, Los Angeles, CA 90001" +229184,USB-C Charging Cable,1,11.95,07/05/19 09:04,"144 13th St, Seattle, WA 98101" +229185,iPhone,1,700,07/27/19 12:34,"758 Park St, Portland, ME 04101" +229185,Lightning Charging Cable,1,14.95,07/27/19 12:34,"758 Park St, Portland, ME 04101" +229186,Wired Headphones,1,11.99,07/14/19 20:26,"740 6th St, Seattle, WA 98101" +229187,Lightning Charging Cable,1,14.95,07/24/19 18:40,"738 Lake St, New York City, NY 10001" +229188,USB-C Charging Cable,1,11.95,07/25/19 19:11,"958 Spruce St, San Francisco, CA 94016" +229189,AAA Batteries (4-pack),1,2.99,07/07/19 14:03,"496 Dogwood St, San Francisco, CA 94016" +229190,Wired Headphones,1,11.99,07/08/19 13:37,"185 8th St, Boston, MA 02215" +229191,USB-C Charging Cable,1,11.95,07/27/19 14:29,"723 Ridge St, Boston, MA 02215" +229192,Wired Headphones,1,11.99,07/13/19 17:08,"331 Sunset St, San Francisco, CA 94016" +229193,34in Ultrawide Monitor,1,379.99,07/13/19 17:29,"168 9th St, San Francisco, CA 94016" +229193,USB-C Charging Cable,1,11.95,07/13/19 17:29,"168 9th St, San Francisco, CA 94016" +229194,27in FHD Monitor,1,149.99,07/15/19 12:33,"495 11th St, Los Angeles, CA 90001" +229195,Bose SoundSport Headphones,1,99.99,07/08/19 13:26,"572 2nd St, San Francisco, CA 94016" +229196,AAA Batteries (4-pack),1,2.99,07/06/19 00:24,"764 Park St, Boston, MA 02215" +229197,AAA Batteries (4-pack),1,2.99,07/14/19 20:14,"35 Cedar St, New York City, NY 10001" +229198,Vareebadd Phone,1,400,07/11/19 01:02,"77 Hickory St, San Francisco, CA 94016" +229198,Wired Headphones,1,11.99,07/11/19 01:02,"77 Hickory St, San Francisco, CA 94016" +229199,Lightning Charging Cable,1,14.95,07/07/19 18:29,"102 Main St, Los Angeles, CA 90001" +229200,Flatscreen TV,1,300,07/02/19 00:20,"831 Cherry St, Los Angeles, CA 90001" +229201,AAA Batteries (4-pack),3,2.99,07/31/19 23:18,"776 Cherry St, Portland, OR 97035" +229202,AA Batteries (4-pack),1,3.84,07/30/19 12:49,"747 Lake St, Boston, MA 02215" +229203,34in Ultrawide Monitor,1,379.99,07/22/19 13:41,"310 Adams St, Boston, MA 02215" +229204,AAA Batteries (4-pack),1,2.99,07/14/19 01:00,"836 10th St, New York City, NY 10001" +229205,27in FHD Monitor,1,149.99,07/25/19 18:00,"336 Ridge St, Los Angeles, CA 90001" +229206,Wired Headphones,1,11.99,07/08/19 18:55,"409 Cedar St, New York City, NY 10001" +229207,AA Batteries (4-pack),1,3.84,07/08/19 15:55,"552 Ridge St, Los Angeles, CA 90001" +229208,Apple Airpods Headphones,1,150,07/29/19 14:17,"411 Willow St, Atlanta, GA 30301" +229209,27in FHD Monitor,1,149.99,07/24/19 13:55,"99 River St, Boston, MA 02215" +229210,Vareebadd Phone,1,400,07/31/19 18:17,"302 Hickory St, San Francisco, CA 94016" +229211,Lightning Charging Cable,1,14.95,07/30/19 13:24,"734 Forest St, Los Angeles, CA 90001" +229212,Bose SoundSport Headphones,1,99.99,07/31/19 21:43,"327 Lincoln St, Seattle, WA 98101" +229213,27in FHD Monitor,1,149.99,07/13/19 15:03,"909 Pine St, Portland, OR 97035" +229214,Apple Airpods Headphones,1,150,07/08/19 22:26,"433 Hickory St, Boston, MA 02215" +229215,Wired Headphones,1,11.99,07/07/19 14:52,"534 2nd St, Los Angeles, CA 90001" +229216,USB-C Charging Cable,1,11.95,07/05/19 16:07,"954 Jefferson St, San Francisco, CA 94016" +229217,AAA Batteries (4-pack),1,2.99,07/06/19 10:07,"109 Hill St, Seattle, WA 98101" +229218,AA Batteries (4-pack),1,3.84,07/27/19 18:02,"367 Spruce St, San Francisco, CA 94016" +229219,LG Dryer,1,600.0,07/31/19 19:12,"39 Walnut St, Seattle, WA 98101" +229220,27in FHD Monitor,1,149.99,07/13/19 17:00,"558 Johnson St, Seattle, WA 98101" +229221,Bose SoundSport Headphones,1,99.99,07/10/19 12:10,"861 Maple St, Austin, TX 73301" +229222,Bose SoundSport Headphones,1,99.99,07/22/19 11:41,"86 Jefferson St, Boston, MA 02215" +229223,AAA Batteries (4-pack),1,2.99,07/20/19 16:09,"300 12th St, Boston, MA 02215" +229224,Google Phone,1,600,07/24/19 16:53,"13 6th St, Boston, MA 02215" +229224,Wired Headphones,1,11.99,07/24/19 16:53,"13 6th St, Boston, MA 02215" +229225,Flatscreen TV,1,300,07/08/19 12:35,"286 Washington St, Dallas, TX 75001" +229226,AA Batteries (4-pack),1,3.84,07/25/19 16:38,"692 Washington St, San Francisco, CA 94016" +229227,Bose SoundSport Headphones,1,99.99,07/27/19 00:58,"277 Lincoln St, Boston, MA 02215" +229228,USB-C Charging Cable,1,11.95,07/23/19 22:37,"204 Hill St, New York City, NY 10001" +229229,Bose SoundSport Headphones,1,99.99,07/05/19 06:05,"460 8th St, San Francisco, CA 94016" +229230,Bose SoundSport Headphones,1,99.99,07/14/19 11:55,"475 Elm St, San Francisco, CA 94016" +229231,AAA Batteries (4-pack),1,2.99,07/11/19 20:31,"229 Washington St, Seattle, WA 98101" +229232,Bose SoundSport Headphones,1,99.99,07/24/19 14:25,"932 9th St, Dallas, TX 75001" +229232,AAA Batteries (4-pack),1,2.99,07/24/19 14:25,"932 9th St, Dallas, TX 75001" +229233,Apple Airpods Headphones,1,150,07/27/19 22:14,"174 14th St, Los Angeles, CA 90001" +229234,Bose SoundSport Headphones,1,99.99,07/10/19 21:58,"539 2nd St, San Francisco, CA 94016" +229235,27in FHD Monitor,1,149.99,07/31/19 16:05,"879 8th St, Portland, OR 97035" +229236,Apple Airpods Headphones,1,150,07/28/19 15:54,"762 Church St, Seattle, WA 98101" +229237,Lightning Charging Cable,1,14.95,07/16/19 11:48,"127 Spruce St, Atlanta, GA 30301" +229238,27in FHD Monitor,1,149.99,07/08/19 20:04,"423 7th St, Los Angeles, CA 90001" +229238,Wired Headphones,1,11.99,07/08/19 20:04,"423 7th St, Los Angeles, CA 90001" +229239,Lightning Charging Cable,1,14.95,07/31/19 10:14,"589 2nd St, Atlanta, GA 30301" +229240,Lightning Charging Cable,1,14.95,07/09/19 18:17,"557 Sunset St, Boston, MA 02215" +229241,Lightning Charging Cable,1,14.95,07/06/19 09:24,"123 South St, Boston, MA 02215" +229242,34in Ultrawide Monitor,1,379.99,07/05/19 17:25,"983 Meadow St, Seattle, WA 98101" +229243,34in Ultrawide Monitor,1,379.99,07/20/19 09:32,"543 6th St, New York City, NY 10001" +229243,Bose SoundSport Headphones,1,99.99,07/20/19 09:32,"543 6th St, New York City, NY 10001" +229244,Lightning Charging Cable,2,14.95,07/29/19 14:43,"711 Center St, Boston, MA 02215" +229245,AA Batteries (4-pack),1,3.84,07/08/19 20:27,"8 9th St, New York City, NY 10001" +229246,Wired Headphones,1,11.99,07/01/19 14:29,"353 Walnut St, Austin, TX 73301" +229247,34in Ultrawide Monitor,1,379.99,07/18/19 12:58,"44 Johnson St, Los Angeles, CA 90001" +229248,Wired Headphones,1,11.99,07/26/19 18:15,"460 Chestnut St, Atlanta, GA 30301" +229249,27in FHD Monitor,1,149.99,07/24/19 13:22,"842 Walnut St, Austin, TX 73301" +229250,LG Washing Machine,1,600.0,07/28/19 23:22,"595 Highland St, New York City, NY 10001" +229251,AAA Batteries (4-pack),2,2.99,07/19/19 10:33,"924 Church St, San Francisco, CA 94016" +229252,Flatscreen TV,1,300,07/29/19 18:42,"614 Maple St, Los Angeles, CA 90001" +229253,Google Phone,1,600,07/22/19 18:26,"668 Cherry St, Atlanta, GA 30301" +229254,iPhone,1,700,07/02/19 13:26,"397 Main St, Seattle, WA 98101" +229254,Wired Headphones,1,11.99,07/02/19 13:26,"397 Main St, Seattle, WA 98101" +229255,AAA Batteries (4-pack),3,2.99,07/27/19 18:55,"427 North St, Austin, TX 73301" +229256,iPhone,1,700,07/11/19 21:23,"735 Adams St, Dallas, TX 75001" +229256,Apple Airpods Headphones,1,150,07/11/19 21:23,"735 Adams St, Dallas, TX 75001" +229257,Lightning Charging Cable,1,14.95,07/29/19 20:17,"210 6th St, Seattle, WA 98101" +229258,Flatscreen TV,1,300,07/08/19 17:48,"102 Walnut St, New York City, NY 10001" +229259,Google Phone,1,600,07/20/19 10:51,"311 Jackson St, Los Angeles, CA 90001" +229260,20in Monitor,1,109.99,07/20/19 22:26,"372 5th St, Los Angeles, CA 90001" +229261,Flatscreen TV,1,300,07/17/19 17:51,"883 North St, Dallas, TX 75001" +229262,AA Batteries (4-pack),1,3.84,07/17/19 11:20,"890 Willow St, Atlanta, GA 30301" +229263,AA Batteries (4-pack),1,3.84,07/13/19 05:47,"939 South St, Dallas, TX 75001" +229264,AAA Batteries (4-pack),1,2.99,07/31/19 10:23,"28 2nd St, Austin, TX 73301" +229265,Macbook Pro Laptop,1,1700,07/21/19 17:19,"289 Pine St, Los Angeles, CA 90001" +229266,iPhone,1,700,07/19/19 16:06,"5 Maple St, Los Angeles, CA 90001" +229267,Wired Headphones,1,11.99,07/10/19 22:30,"503 Center St, New York City, NY 10001" +229268,Wired Headphones,1,11.99,07/17/19 08:23,"471 Lakeview St, Dallas, TX 75001" +229269,Bose SoundSport Headphones,1,99.99,07/08/19 11:57,"156 Meadow St, Boston, MA 02215" +229270,AA Batteries (4-pack),1,3.84,07/25/19 14:55,"683 Lakeview St, Seattle, WA 98101" +229271,Apple Airpods Headphones,1,150,07/08/19 16:57,"853 7th St, Atlanta, GA 30301" +229272,Lightning Charging Cable,2,14.95,07/31/19 17:30,"262 4th St, New York City, NY 10001" +229273,AAA Batteries (4-pack),1,2.99,07/19/19 11:49,"619 7th St, San Francisco, CA 94016" +229274,27in 4K Gaming Monitor,1,389.99,07/24/19 12:30,"778 Chestnut St, Boston, MA 02215" +229275,27in FHD Monitor,1,149.99,07/12/19 23:54,"17 Lincoln St, San Francisco, CA 94016" +229276,20in Monitor,1,109.99,07/09/19 00:35,"867 Center St, Austin, TX 73301" +229277,27in 4K Gaming Monitor,1,389.99,07/10/19 11:09,"889 Lakeview St, Dallas, TX 75001" +229278,AA Batteries (4-pack),1,3.84,07/11/19 16:47,"695 North St, Seattle, WA 98101" +229279,AA Batteries (4-pack),1,3.84,07/17/19 18:46,"629 Main St, Atlanta, GA 30301" +229280,Apple Airpods Headphones,1,150,07/01/19 14:34,"83 Jefferson St, Austin, TX 73301" +229281,USB-C Charging Cable,1,11.95,07/29/19 14:42,"939 River St, Dallas, TX 75001" +229282,27in FHD Monitor,1,149.99,07/03/19 15:18,"128 River St, Seattle, WA 98101" +229283,20in Monitor,1,109.99,07/14/19 19:45,"514 Willow St, Portland, OR 97035" +229284,Macbook Pro Laptop,1,1700,07/31/19 11:30,"794 North St, New York City, NY 10001" +229285,USB-C Charging Cable,1,11.95,07/01/19 14:00,"797 West St, Seattle, WA 98101" +229286,Wired Headphones,3,11.99,07/24/19 11:08,"945 Lakeview St, San Francisco, CA 94016" +229287,USB-C Charging Cable,1,11.95,07/11/19 23:35,"863 Center St, San Francisco, CA 94016" +229288,20in Monitor,1,109.99,07/11/19 09:00,"522 Willow St, Los Angeles, CA 90001" +229289,USB-C Charging Cable,1,11.95,07/03/19 22:51,"954 Madison St, San Francisco, CA 94016" +229290,Flatscreen TV,1,300,07/02/19 18:15,"92 Lake St, New York City, NY 10001" +229291,Apple Airpods Headphones,1,150,07/09/19 17:55,"657 12th St, New York City, NY 10001" +229292,20in Monitor,1,109.99,07/01/19 12:24,"831 Madison St, San Francisco, CA 94016" +229293,USB-C Charging Cable,1,11.95,07/22/19 19:17,"209 Lincoln St, Dallas, TX 75001" +229294,Bose SoundSport Headphones,1,99.99,07/10/19 08:48,"991 Hill St, San Francisco, CA 94016" +229295,AAA Batteries (4-pack),1,2.99,07/11/19 15:03,"407 Washington St, New York City, NY 10001" +229296,Bose SoundSport Headphones,1,99.99,07/04/19 20:12,"877 Chestnut St, New York City, NY 10001" +229297,USB-C Charging Cable,1,11.95,07/24/19 22:25,"85 12th St, Los Angeles, CA 90001" +229298,iPhone,1,700,07/07/19 18:33,"50 Madison St, Atlanta, GA 30301" +229299,Flatscreen TV,1,300,07/22/19 07:48,"818 Walnut St, San Francisco, CA 94016" +229300,USB-C Charging Cable,1,11.95,07/02/19 13:11,"123 Jefferson St, Boston, MA 02215" +229301,Wired Headphones,1,11.99,07/24/19 08:48,"83 13th St, Los Angeles, CA 90001" +229302,AA Batteries (4-pack),2,3.84,07/23/19 18:03,"500 Highland St, New York City, NY 10001" +229303,iPhone,1,700,07/19/19 11:24,"732 Walnut St, Seattle, WA 98101" +229303,Apple Airpods Headphones,1,150,07/19/19 11:24,"732 Walnut St, Seattle, WA 98101" +229304,Flatscreen TV,1,300,07/14/19 09:58,"385 Church St, Seattle, WA 98101" +229305,Flatscreen TV,1,300,07/28/19 14:38,"194 Washington St, Boston, MA 02215" +229306,Vareebadd Phone,1,400,07/03/19 19:07,"14 Dogwood St, Boston, MA 02215" +229307,Bose SoundSport Headphones,1,99.99,07/17/19 18:20,"740 1st St, Boston, MA 02215" +229308,USB-C Charging Cable,1,11.95,07/11/19 19:30,"416 Johnson St, New York City, NY 10001" +229309,Bose SoundSport Headphones,1,99.99,07/10/19 17:47,"267 13th St, Seattle, WA 98101" +229310,Bose SoundSport Headphones,1,99.99,07/24/19 15:22,"234 5th St, Los Angeles, CA 90001" +229311,27in FHD Monitor,1,149.99,07/24/19 11:28,"730 Chestnut St, Boston, MA 02215" +229311,Bose SoundSport Headphones,1,99.99,07/24/19 11:28,"730 Chestnut St, Boston, MA 02215" +229312,ThinkPad Laptop,1,999.99,07/24/19 15:02,"166 1st St, Austin, TX 73301" +229313,LG Washing Machine,1,600.0,07/20/19 13:47,"215 Madison St, San Francisco, CA 94016" +229314,Apple Airpods Headphones,1,150,07/04/19 21:27,"176 11th St, San Francisco, CA 94016" +229315,AAA Batteries (4-pack),2,2.99,07/26/19 12:35,"53 Walnut St, Atlanta, GA 30301" +229316,Apple Airpods Headphones,1,150,07/18/19 11:39,"41 9th St, Boston, MA 02215" +229317,AA Batteries (4-pack),1,3.84,07/30/19 11:16,"910 10th St, Boston, MA 02215" +229318,27in FHD Monitor,1,149.99,07/17/19 17:36,"943 8th St, New York City, NY 10001" +229319,iPhone,1,700,07/03/19 10:03,"744 Walnut St, Austin, TX 73301" +229320,Flatscreen TV,1,300,07/30/19 14:15,"735 Walnut St, San Francisco, CA 94016" +229321,Wired Headphones,1,11.99,07/26/19 20:59,"414 Dogwood St, San Francisco, CA 94016" +229322,Bose SoundSport Headphones,1,99.99,07/26/19 21:44,"715 Cedar St, Atlanta, GA 30301" +229323,27in 4K Gaming Monitor,1,389.99,07/30/19 21:57,"455 Lake St, Boston, MA 02215" +229324,AAA Batteries (4-pack),1,2.99,07/22/19 22:07,"398 Maple St, Seattle, WA 98101" +229325,LG Dryer,1,600.0,07/01/19 08:31,"23 10th St, Dallas, TX 75001" +229326,Wired Headphones,1,11.99,07/07/19 12:48,"357 North St, San Francisco, CA 94016" +229327,27in FHD Monitor,1,149.99,07/12/19 09:34,"49 Johnson St, Austin, TX 73301" +229328,AAA Batteries (4-pack),1,2.99,07/28/19 13:12,"347 7th St, Boston, MA 02215" +229329,USB-C Charging Cable,1,11.95,07/24/19 11:13,"566 Adams St, Seattle, WA 98101" +229330,Lightning Charging Cable,1,14.95,07/17/19 21:50,"836 Dogwood St, Los Angeles, CA 90001" +229331,Lightning Charging Cable,1,14.95,07/02/19 20:34,"32 Hill St, New York City, NY 10001" +229332,AAA Batteries (4-pack),1,2.99,07/20/19 07:33,"587 South St, San Francisco, CA 94016" +229333,USB-C Charging Cable,2,11.95,07/13/19 21:23,"258 6th St, Atlanta, GA 30301" +229334,Flatscreen TV,1,300,07/15/19 12:07,"429 5th St, San Francisco, CA 94016" +229334,Lightning Charging Cable,1,14.95,07/15/19 12:07,"429 5th St, San Francisco, CA 94016" +229335,Wired Headphones,1,11.99,07/14/19 13:50,"685 Willow St, San Francisco, CA 94016" +229336,AA Batteries (4-pack),1,3.84,07/15/19 12:44,"993 Ridge St, San Francisco, CA 94016" +229337,20in Monitor,1,109.99,07/03/19 10:37,"599 7th St, San Francisco, CA 94016" +229338,Lightning Charging Cable,1,14.95,07/06/19 12:58,"353 Cherry St, San Francisco, CA 94016" +229339,Google Phone,1,600,07/18/19 07:45,"313 Madison St, New York City, NY 10001" +229339,USB-C Charging Cable,1,11.95,07/18/19 07:45,"313 Madison St, New York City, NY 10001" +229340,34in Ultrawide Monitor,1,379.99,07/12/19 14:10,"461 Cherry St, New York City, NY 10001" +229341,27in FHD Monitor,1,149.99,07/12/19 20:55,"900 6th St, San Francisco, CA 94016" +229342,AA Batteries (4-pack),2,3.84,07/02/19 11:01,"226 5th St, Boston, MA 02215" +229343,27in 4K Gaming Monitor,1,389.99,07/04/19 22:57,"179 11th St, Dallas, TX 75001" +229344,AA Batteries (4-pack),1,3.84,08/01/19 00:28,"759 Forest St, Los Angeles, CA 90001" +229345,Wired Headphones,2,11.99,07/18/19 12:28,"264 1st St, Seattle, WA 98101" +229346,USB-C Charging Cable,2,11.95,07/17/19 21:49,"724 Forest St, Dallas, TX 75001" +229347,Bose SoundSport Headphones,1,99.99,07/17/19 19:55,"206 12th St, Boston, MA 02215" +229348,USB-C Charging Cable,1,11.95,07/25/19 19:43,"377 Hickory St, New York City, NY 10001" +229349,ThinkPad Laptop,1,999.99,07/14/19 15:23,"255 4th St, Austin, TX 73301" +229350,Lightning Charging Cable,1,14.95,07/03/19 12:00,"941 Elm St, San Francisco, CA 94016" +229351,Wired Headphones,1,11.99,07/10/19 17:45,"230 Meadow St, San Francisco, CA 94016" +229352,Macbook Pro Laptop,1,1700,07/03/19 22:06,"203 Center St, Los Angeles, CA 90001" +229353,USB-C Charging Cable,2,11.95,07/12/19 20:56,"535 Elm St, Boston, MA 02215" +229354,iPhone,1,700,07/13/19 13:44,"222 Pine St, Dallas, TX 75001" +229355,Apple Airpods Headphones,1,150,07/11/19 18:27,"205 6th St, New York City, NY 10001" +229355,AA Batteries (4-pack),3,3.84,07/11/19 18:27,"205 6th St, New York City, NY 10001" +229356,USB-C Charging Cable,1,11.95,07/26/19 09:11,"871 Lake St, Los Angeles, CA 90001" +229357,AAA Batteries (4-pack),3,2.99,07/27/19 10:19,"284 Wilson St, Atlanta, GA 30301" +229358,Apple Airpods Headphones,1,150,07/03/19 11:05,"494 Walnut St, Los Angeles, CA 90001" +229359,20in Monitor,1,109.99,07/02/19 21:13,"729 Hickory St, New York City, NY 10001" +229360,Bose SoundSport Headphones,1,99.99,07/03/19 20:22,"959 13th St, Boston, MA 02215" +229361,Google Phone,1,600,07/14/19 09:35,"113 Washington St, San Francisco, CA 94016" +229362,Google Phone,1,600,07/03/19 09:09,"306 Hill St, New York City, NY 10001" +229363,Bose SoundSport Headphones,1,99.99,07/25/19 10:59,"625 10th St, Austin, TX 73301" +229364,Flatscreen TV,1,300,07/23/19 11:40,"850 Cherry St, New York City, NY 10001" +229365,AA Batteries (4-pack),1,3.84,07/03/19 18:21,"941 Madison St, New York City, NY 10001" +229366,Lightning Charging Cable,1,14.95,07/11/19 18:47,"326 Main St, Dallas, TX 75001" +229367,iPhone,1,700,07/30/19 20:29,"500 Willow St, Dallas, TX 75001" +229367,Apple Airpods Headphones,1,150,07/30/19 20:29,"500 Willow St, Dallas, TX 75001" +229368,AAA Batteries (4-pack),1,2.99,07/12/19 23:01,"962 5th St, New York City, NY 10001" +229369,27in FHD Monitor,1,149.99,07/17/19 21:30,"875 Johnson St, New York City, NY 10001" +229370,USB-C Charging Cable,1,11.95,07/05/19 11:38,"984 Madison St, New York City, NY 10001" +229371,34in Ultrawide Monitor,1,379.99,07/24/19 06:39,"65 Washington St, Seattle, WA 98101" +229372,USB-C Charging Cable,1,11.95,07/30/19 20:55,"717 Adams St, Portland, OR 97035" +229373,AA Batteries (4-pack),1,3.84,07/25/19 01:15,"420 Ridge St, New York City, NY 10001" +229374,34in Ultrawide Monitor,1,379.99,07/23/19 20:28,"525 Lincoln St, Austin, TX 73301" +229375,USB-C Charging Cable,1,11.95,07/07/19 00:25,"992 Ridge St, Boston, MA 02215" +229376,Macbook Pro Laptop,1,1700,07/06/19 18:36,"80 West St, Atlanta, GA 30301" +229377,USB-C Charging Cable,1,11.95,07/29/19 21:53,"527 8th St, Austin, TX 73301" +229378,Lightning Charging Cable,1,14.95,07/19/19 15:33,"5 Cedar St, Seattle, WA 98101" +229379,Apple Airpods Headphones,1,150,07/16/19 12:21,"319 14th St, Los Angeles, CA 90001" +229380,Bose SoundSport Headphones,1,99.99,07/11/19 04:45,"125 Lake St, Los Angeles, CA 90001" +229381,Apple Airpods Headphones,1,150,07/11/19 12:25,"932 5th St, Dallas, TX 75001" +229382,Apple Airpods Headphones,1,150,07/29/19 11:19,"830 Center St, Boston, MA 02215" +229383,20in Monitor,1,109.99,07/21/19 18:33,"236 Madison St, San Francisco, CA 94016" +229384,Bose SoundSport Headphones,1,99.99,07/03/19 21:59,"430 West St, San Francisco, CA 94016" +229385,AAA Batteries (4-pack),2,2.99,07/15/19 20:13,"151 Madison St, Atlanta, GA 30301" +229386,27in FHD Monitor,2,149.99,07/24/19 10:09,"225 Hill St, Los Angeles, CA 90001" +229386,Lightning Charging Cable,1,14.95,07/24/19 10:09,"225 Hill St, Los Angeles, CA 90001" +229387,Apple Airpods Headphones,1,150,07/06/19 20:35,"939 South St, San Francisco, CA 94016" +229388,AA Batteries (4-pack),2,3.84,07/25/19 08:45,"750 Main St, Boston, MA 02215" +229389,LG Washing Machine,1,600.0,07/07/19 23:00,"712 Hill St, San Francisco, CA 94016" +229390,USB-C Charging Cable,1,11.95,07/11/19 06:48,"548 Walnut St, San Francisco, CA 94016" +229391,AA Batteries (4-pack),1,3.84,07/14/19 19:33,"726 10th St, Dallas, TX 75001" +229392,Lightning Charging Cable,2,14.95,07/11/19 18:07,"982 Lakeview St, New York City, NY 10001" +229393,Wired Headphones,1,11.99,07/17/19 11:08,"868 Lake St, Atlanta, GA 30301" +229394,AA Batteries (4-pack),2,3.84,07/25/19 22:40,"457 Pine St, Seattle, WA 98101" +229395,Bose SoundSport Headphones,1,99.99,07/19/19 20:00,"24 South St, Atlanta, GA 30301" +229396,AAA Batteries (4-pack),2,2.99,07/25/19 10:12,"383 Lincoln St, Atlanta, GA 30301" +229397,Bose SoundSport Headphones,1,99.99,07/17/19 16:33,"675 Chestnut St, Portland, OR 97035" +229398,AA Batteries (4-pack),1,3.84,07/29/19 09:46,"210 14th St, New York City, NY 10001" +229399,Macbook Pro Laptop,1,1700,07/10/19 20:07,"185 Lakeview St, Atlanta, GA 30301" +229400,Apple Airpods Headphones,1,150,07/12/19 23:46,"957 5th St, Portland, OR 97035" +229401,Wired Headphones,1,11.99,07/08/19 21:38,"517 Spruce St, Austin, TX 73301" +229402,AA Batteries (4-pack),1,3.84,07/28/19 20:55,"107 Ridge St, San Francisco, CA 94016" +229403,Lightning Charging Cable,1,14.95,07/30/19 13:38,"122 2nd St, Dallas, TX 75001" +229404,Lightning Charging Cable,1,14.95,07/08/19 18:11,"619 7th St, Austin, TX 73301" +229405,Apple Airpods Headphones,1,150,07/15/19 08:01,"452 2nd St, Atlanta, GA 30301" +229406,34in Ultrawide Monitor,1,379.99,07/23/19 14:16,"500 Cherry St, Dallas, TX 75001" +229407,USB-C Charging Cable,1,11.95,07/10/19 01:57,"705 Meadow St, Los Angeles, CA 90001" +229408,Google Phone,1,600,07/12/19 15:07,"800 Dogwood St, Boston, MA 02215" +229409,USB-C Charging Cable,1,11.95,07/09/19 09:21,"111 Madison St, New York City, NY 10001" +229410,Bose SoundSport Headphones,1,99.99,07/07/19 20:16,"434 Highland St, Seattle, WA 98101" +229411,27in FHD Monitor,1,149.99,07/24/19 16:58,"770 Pine St, New York City, NY 10001" +229412,Bose SoundSport Headphones,1,99.99,07/11/19 13:07,"901 Maple St, Dallas, TX 75001" +229413,Bose SoundSport Headphones,1,99.99,07/22/19 23:08,"464 Spruce St, Dallas, TX 75001" +229414,ThinkPad Laptop,1,999.99,07/03/19 12:25,"144 South St, New York City, NY 10001" +229415,AAA Batteries (4-pack),2,2.99,07/31/19 09:20,"127 Forest St, Boston, MA 02215" +229416,AA Batteries (4-pack),1,3.84,07/29/19 10:58,"241 Meadow St, Boston, MA 02215" +229417,AA Batteries (4-pack),2,3.84,07/09/19 18:15,"784 7th St, Seattle, WA 98101" +229418,Bose SoundSport Headphones,1,99.99,07/03/19 07:20,"350 Cedar St, Portland, OR 97035" +229419,AAA Batteries (4-pack),1,2.99,07/23/19 08:54,"278 Ridge St, Atlanta, GA 30301" +229420,Wired Headphones,1,11.99,07/09/19 13:49,"813 River St, Dallas, TX 75001" +229421,Lightning Charging Cable,1,14.95,07/09/19 19:48,"712 River St, Boston, MA 02215" +229422,USB-C Charging Cable,1,11.95,07/08/19 20:20,"62 Sunset St, New York City, NY 10001" +229423,USB-C Charging Cable,1,11.95,07/07/19 16:10,"197 10th St, Dallas, TX 75001" +229424,USB-C Charging Cable,1,11.95,07/25/19 15:46,"179 Lincoln St, Los Angeles, CA 90001" +229425,Apple Airpods Headphones,1,150,07/01/19 20:52,"895 Lake St, New York City, NY 10001" +229426,ThinkPad Laptop,1,999.99,07/31/19 06:09,"874 Madison St, Boston, MA 02215" +229427,Bose SoundSport Headphones,1,99.99,07/05/19 10:24,"100 Dogwood St, San Francisco, CA 94016" +229428,AAA Batteries (4-pack),1,2.99,07/07/19 16:36,"637 1st St, New York City, NY 10001" +229429,Bose SoundSport Headphones,1,99.99,07/20/19 16:02,"569 Meadow St, Austin, TX 73301" +229430,27in 4K Gaming Monitor,1,389.99,07/13/19 09:51,"990 Maple St, San Francisco, CA 94016" +229431,Wired Headphones,1,11.99,07/21/19 12:06,"123 12th St, Austin, TX 73301" +229432,AA Batteries (4-pack),2,3.84,07/29/19 17:28,"360 Cherry St, Boston, MA 02215" +229433,34in Ultrawide Monitor,1,379.99,07/06/19 20:44,"61 Jefferson St, Atlanta, GA 30301" +229434,USB-C Charging Cable,1,11.95,07/13/19 20:16,"39 River St, Boston, MA 02215" +229435,USB-C Charging Cable,1,11.95,07/14/19 11:28,"997 Dogwood St, Dallas, TX 75001" +229436,USB-C Charging Cable,1,11.95,07/08/19 10:46,"476 River St, San Francisco, CA 94016" +229437,Apple Airpods Headphones,1,150,07/22/19 10:07,"411 5th St, San Francisco, CA 94016" +229438,AA Batteries (4-pack),2,3.84,07/15/19 16:25,"52 13th St, San Francisco, CA 94016" +229439,27in 4K Gaming Monitor,1,389.99,07/20/19 18:33,"409 1st St, Boston, MA 02215" +229440,Wired Headphones,1,11.99,07/29/19 17:41,"494 Hill St, Boston, MA 02215" +229441,iPhone,1,700,07/10/19 08:06,"692 Pine St, Seattle, WA 98101" +229442,Apple Airpods Headphones,1,150,07/02/19 02:18,"311 Adams St, Los Angeles, CA 90001" +229443,Lightning Charging Cable,1,14.95,07/20/19 06:16,"998 6th St, Austin, TX 73301" +229444,Wired Headphones,1,11.99,07/30/19 00:03,"221 Spruce St, San Francisco, CA 94016" +229445,AAA Batteries (4-pack),2,2.99,07/20/19 13:57,"322 14th St, New York City, NY 10001" +229446,AA Batteries (4-pack),1,3.84,07/31/19 16:31,"703 Hill St, Boston, MA 02215" +229447,USB-C Charging Cable,2,11.95,07/18/19 16:06,"906 8th St, Atlanta, GA 30301" +229448,AAA Batteries (4-pack),1,2.99,07/13/19 23:40,"81 Lake St, Austin, TX 73301" +229449,Lightning Charging Cable,1,14.95,07/26/19 10:28,"892 5th St, Dallas, TX 75001" +229450,AAA Batteries (4-pack),2,2.99,07/08/19 09:55,"281 South St, New York City, NY 10001" +229451,AA Batteries (4-pack),1,3.84,07/10/19 11:56,"141 Chestnut St, Boston, MA 02215" +229452,Apple Airpods Headphones,1,150,07/28/19 10:45,"903 Johnson St, Boston, MA 02215" +229453,Wired Headphones,1,11.99,07/27/19 17:51,"552 7th St, New York City, NY 10001" +229454,USB-C Charging Cable,1,11.95,07/26/19 17:16,"506 Spruce St, Boston, MA 02215" +229455,34in Ultrawide Monitor,1,379.99,07/27/19 17:25,"473 Cedar St, Portland, OR 97035" +229456,USB-C Charging Cable,1,11.95,07/04/19 10:29,"299 Maple St, San Francisco, CA 94016" +229457,AAA Batteries (4-pack),1,2.99,07/12/19 21:02,"528 Main St, Dallas, TX 75001" +229458,27in FHD Monitor,1,149.99,07/28/19 06:48,"550 1st St, Portland, OR 97035" +229459,27in FHD Monitor,1,149.99,07/08/19 19:30,"422 Spruce St, Los Angeles, CA 90001" +229460,AAA Batteries (4-pack),1,2.99,07/26/19 19:11,"821 Spruce St, Los Angeles, CA 90001" +229461,AA Batteries (4-pack),1,3.84,07/18/19 08:52,"760 Washington St, Boston, MA 02215" +229462,27in 4K Gaming Monitor,1,389.99,07/31/19 18:07,"903 Forest St, San Francisco, CA 94016" +229463,27in 4K Gaming Monitor,1,389.99,07/21/19 12:43,"694 Madison St, Los Angeles, CA 90001" +229464,34in Ultrawide Monitor,1,379.99,07/12/19 22:05,"787 Chestnut St, Los Angeles, CA 90001" +229465,27in 4K Gaming Monitor,1,389.99,07/24/19 08:48,"274 Washington St, Atlanta, GA 30301" +229466,Lightning Charging Cable,1,14.95,07/28/19 13:55,"28 Dogwood St, San Francisco, CA 94016" +229467,Vareebadd Phone,1,400,07/04/19 18:45,"405 Dogwood St, San Francisco, CA 94016" +229467,AA Batteries (4-pack),1,3.84,07/04/19 18:45,"405 Dogwood St, San Francisco, CA 94016" +229468,AA Batteries (4-pack),2,3.84,07/05/19 08:49,"681 Jefferson St, Los Angeles, CA 90001" +229469,Apple Airpods Headphones,1,150,07/05/19 15:39,"494 5th St, Boston, MA 02215" +229470,AA Batteries (4-pack),2,3.84,07/23/19 20:01,"572 4th St, Los Angeles, CA 90001" +229471,Lightning Charging Cable,1,14.95,07/13/19 10:02,"188 Cherry St, New York City, NY 10001" +229472,USB-C Charging Cable,1,11.95,07/22/19 13:57,"938 Jefferson St, Atlanta, GA 30301" +229473,AAA Batteries (4-pack),2,2.99,07/22/19 14:25,"551 Elm St, San Francisco, CA 94016" +229474,USB-C Charging Cable,1,11.95,07/13/19 11:37,"427 Hickory St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +229475,Google Phone,1,600,07/17/19 21:21,"774 10th St, Austin, TX 73301" +229475,Bose SoundSport Headphones,1,99.99,07/17/19 21:21,"774 10th St, Austin, TX 73301" +229476,Lightning Charging Cable,1,14.95,07/16/19 17:52,"994 6th St, Portland, ME 04101" +229477,USB-C Charging Cable,1,11.95,07/27/19 14:01,"235 Elm St, Atlanta, GA 30301" +229478,Wired Headphones,1,11.99,07/27/19 21:06,"939 Pine St, Portland, OR 97035" +229479,AAA Batteries (4-pack),3,2.99,07/06/19 12:11,"622 Wilson St, Portland, OR 97035" +229480,USB-C Charging Cable,1,11.95,07/12/19 19:55,"432 12th St, San Francisco, CA 94016" +229481,AAA Batteries (4-pack),1,2.99,07/14/19 14:55,"9 Sunset St, Boston, MA 02215" +229482,AAA Batteries (4-pack),1,2.99,07/02/19 09:34,"225 Park St, New York City, NY 10001" +229483,AA Batteries (4-pack),1,3.84,07/15/19 07:57,"398 Park St, Los Angeles, CA 90001" +229484,34in Ultrawide Monitor,1,379.99,07/27/19 10:49,"815 Church St, San Francisco, CA 94016" +229485,Bose SoundSport Headphones,1,99.99,07/29/19 12:05,"322 9th St, Seattle, WA 98101" +229486,Flatscreen TV,1,300,07/25/19 20:54,"67 14th St, San Francisco, CA 94016" +229487,34in Ultrawide Monitor,1,379.99,07/23/19 06:41,"638 Cedar St, Dallas, TX 75001" +229488,Lightning Charging Cable,1,14.95,07/16/19 14:51,"927 South St, Atlanta, GA 30301" +229489,Bose SoundSport Headphones,1,99.99,07/05/19 18:43,"684 Elm St, Dallas, TX 75001" +229490,AAA Batteries (4-pack),1,2.99,07/19/19 15:14,"367 Sunset St, Los Angeles, CA 90001" +229491,20in Monitor,1,109.99,07/15/19 14:04,"777 7th St, Atlanta, GA 30301" +229492,Apple Airpods Headphones,1,150,07/27/19 16:33,"307 Church St, San Francisco, CA 94016" +229493,AAA Batteries (4-pack),1,2.99,07/26/19 15:34,"600 North St, San Francisco, CA 94016" +229494,Macbook Pro Laptop,1,1700,07/10/19 20:12,"283 13th St, Atlanta, GA 30301" +229495,USB-C Charging Cable,1,11.95,07/06/19 11:46,"91 6th St, San Francisco, CA 94016" +229496,Wired Headphones,1,11.99,07/02/19 19:18,"272 9th St, Atlanta, GA 30301" +229497,Bose SoundSport Headphones,1,99.99,07/14/19 13:05,"575 8th St, Seattle, WA 98101" +229498,AAA Batteries (4-pack),1,2.99,07/26/19 14:00,"790 Cedar St, Dallas, TX 75001" +229499,AAA Batteries (4-pack),1,2.99,07/01/19 14:56,"840 Forest St, Boston, MA 02215" +229500,Bose SoundSport Headphones,1,99.99,07/14/19 16:07,"5 River St, New York City, NY 10001" +229501,34in Ultrawide Monitor,1,379.99,07/06/19 16:09,"958 Hill St, New York City, NY 10001" +229502,AAA Batteries (4-pack),1,2.99,07/06/19 15:20,"265 13th St, Los Angeles, CA 90001" +229503,34in Ultrawide Monitor,1,379.99,07/28/19 15:26,"358 Chestnut St, Boston, MA 02215" +229504,iPhone,1,700,07/09/19 13:47,"708 Maple St, Dallas, TX 75001" +229505,Apple Airpods Headphones,1,150,07/20/19 01:19,"312 River St, Boston, MA 02215" +229506,Macbook Pro Laptop,1,1700,07/27/19 07:47,"24 6th St, Atlanta, GA 30301" +229507,Apple Airpods Headphones,1,150,07/13/19 13:30,"909 Hickory St, New York City, NY 10001" +229508,Wired Headphones,1,11.99,07/21/19 17:06,"715 10th St, Seattle, WA 98101" +229509,AAA Batteries (4-pack),1,2.99,07/25/19 15:18,"120 Dogwood St, New York City, NY 10001" +229510,AA Batteries (4-pack),3,3.84,07/25/19 09:58,"15 North St, Dallas, TX 75001" +229511,AAA Batteries (4-pack),2,2.99,07/27/19 18:29,"356 Chestnut St, Atlanta, GA 30301" +229512,20in Monitor,1,109.99,07/21/19 21:12,"603 Wilson St, San Francisco, CA 94016" +229512,Wired Headphones,1,11.99,07/21/19 21:12,"603 Wilson St, San Francisco, CA 94016" +229513,Apple Airpods Headphones,2,150,07/13/19 22:33,"23 7th St, Atlanta, GA 30301" +229514,Wired Headphones,2,11.99,07/23/19 09:48,"245 Madison St, Boston, MA 02215" +229515,USB-C Charging Cable,1,11.95,07/05/19 21:35,"117 Forest St, Seattle, WA 98101" +229516,Flatscreen TV,1,300,07/20/19 11:53,"205 Willow St, San Francisco, CA 94016" +229517,AA Batteries (4-pack),2,3.84,07/15/19 12:41,"908 Washington St, Portland, OR 97035" +229518,Apple Airpods Headphones,1,150,07/09/19 16:48,"147 Cherry St, Los Angeles, CA 90001" +229519,34in Ultrawide Monitor,1,379.99,07/09/19 08:34,"5 Forest St, San Francisco, CA 94016" +229520,Apple Airpods Headphones,1,150,07/13/19 00:21,"471 West St, Boston, MA 02215" +229521,27in 4K Gaming Monitor,1,389.99,07/18/19 07:09,"345 6th St, Dallas, TX 75001" +229522,Bose SoundSport Headphones,1,99.99,07/09/19 06:49,"913 Lincoln St, New York City, NY 10001" +229523,Bose SoundSport Headphones,1,99.99,07/05/19 10:43,"223 Cherry St, San Francisco, CA 94016" +229524,27in 4K Gaming Monitor,1,389.99,07/07/19 00:35,"519 Willow St, Los Angeles, CA 90001" +229525,Google Phone,1,600,07/12/19 08:47,"523 North St, Dallas, TX 75001" +229525,USB-C Charging Cable,1,11.95,07/12/19 08:47,"523 North St, Dallas, TX 75001" +229526,Lightning Charging Cable,1,14.95,07/21/19 16:49,"751 8th St, Seattle, WA 98101" +229527,Wired Headphones,1,11.99,07/30/19 12:55,"414 West St, San Francisco, CA 94016" +229528,Apple Airpods Headphones,1,150,07/18/19 10:28,"272 13th St, Los Angeles, CA 90001" +229529,Apple Airpods Headphones,1,150,07/28/19 21:17,"926 Hickory St, Boston, MA 02215" +229530,Flatscreen TV,1,300,07/15/19 17:55,"887 Maple St, Atlanta, GA 30301" +229531,AAA Batteries (4-pack),1,2.99,07/16/19 09:22,"416 Main St, Portland, OR 97035" +229532,Lightning Charging Cable,1,14.95,07/08/19 14:30,"274 Sunset St, Dallas, TX 75001" +229533,Lightning Charging Cable,1,14.95,07/20/19 11:18,"321 Walnut St, Seattle, WA 98101" +229534,Apple Airpods Headphones,1,150,07/05/19 10:49,"989 Hickory St, New York City, NY 10001" +229535,Lightning Charging Cable,1,14.95,07/24/19 13:12,"950 Lakeview St, San Francisco, CA 94016" +229536,Lightning Charging Cable,1,14.95,07/02/19 12:36,"512 6th St, New York City, NY 10001" +229537,Bose SoundSport Headphones,1,99.99,07/10/19 13:06,"966 Walnut St, Boston, MA 02215" +229538,AA Batteries (4-pack),2,3.84,07/21/19 08:36,"15 9th St, Austin, TX 73301" +229539,Bose SoundSport Headphones,1,99.99,07/03/19 21:06,"80 Lake St, Atlanta, GA 30301" +229540,Bose SoundSport Headphones,1,99.99,07/22/19 19:37,"848 Sunset St, Atlanta, GA 30301" +229541,USB-C Charging Cable,1,11.95,07/22/19 16:13,"289 5th St, Austin, TX 73301" +229542,20in Monitor,1,109.99,07/28/19 00:01,"954 Willow St, San Francisco, CA 94016" +229543,AAA Batteries (4-pack),1,2.99,07/17/19 14:17,"794 7th St, San Francisco, CA 94016" +229544,AA Batteries (4-pack),1,3.84,07/16/19 15:10,"298 Meadow St, San Francisco, CA 94016" +229545,AAA Batteries (4-pack),3,2.99,07/24/19 09:55,"591 Chestnut St, Los Angeles, CA 90001" +229546,AA Batteries (4-pack),1,3.84,07/12/19 17:14,"854 Elm St, Los Angeles, CA 90001" +229547,34in Ultrawide Monitor,1,379.99,07/22/19 20:29,"795 Cedar St, San Francisco, CA 94016" +229548,Google Phone,1,600,07/08/19 14:00,"409 Dogwood St, Los Angeles, CA 90001" +229549,27in 4K Gaming Monitor,1,389.99,07/08/19 09:49,"743 Chestnut St, Seattle, WA 98101" +229550,USB-C Charging Cable,1,11.95,07/26/19 11:33,"537 Jefferson St, New York City, NY 10001" +229551,USB-C Charging Cable,1,11.95,07/19/19 11:16,"330 Lake St, Los Angeles, CA 90001" +229552,AAA Batteries (4-pack),1,2.99,07/14/19 11:33,"978 Spruce St, Dallas, TX 75001" +229553,AAA Batteries (4-pack),1,2.99,07/12/19 17:51,"890 Cedar St, Seattle, WA 98101" +229554,AAA Batteries (4-pack),2,2.99,07/13/19 10:14,"844 Meadow St, New York City, NY 10001" +229555,27in FHD Monitor,1,149.99,07/01/19 19:04,"705 Elm St, San Francisco, CA 94016" +229556,AAA Batteries (4-pack),2,2.99,07/19/19 01:40,"249 River St, San Francisco, CA 94016" +229557,Wired Headphones,1,11.99,07/25/19 13:20,"335 10th St, Dallas, TX 75001" +229558,Wired Headphones,1,11.99,07/20/19 17:14,"285 Meadow St, Los Angeles, CA 90001" +229559,Apple Airpods Headphones,1,150,07/02/19 06:44,"578 Adams St, Boston, MA 02215" +229560,Lightning Charging Cable,1,14.95,07/24/19 21:57,"60 North St, Portland, ME 04101" +229561,USB-C Charging Cable,1,11.95,07/29/19 11:00,"868 Chestnut St, Los Angeles, CA 90001" +229562,USB-C Charging Cable,1,11.95,07/01/19 21:28,"796 Pine St, Seattle, WA 98101" +229563,USB-C Charging Cable,1,11.95,07/23/19 21:10,"35 7th St, San Francisco, CA 94016" +229564,AAA Batteries (4-pack),1,2.99,07/09/19 21:14,"237 9th St, Atlanta, GA 30301" +229565,AAA Batteries (4-pack),1,2.99,07/10/19 09:20,"452 6th St, Los Angeles, CA 90001" +229566,Wired Headphones,1,11.99,07/02/19 19:55,"482 North St, Boston, MA 02215" +229567,27in 4K Gaming Monitor,1,389.99,07/24/19 09:29,"652 Spruce St, Los Angeles, CA 90001" +229568,Apple Airpods Headphones,1,150,07/14/19 16:15,"865 Willow St, San Francisco, CA 94016" +229569,Apple Airpods Headphones,1,150,07/10/19 18:18,"837 Center St, San Francisco, CA 94016" +229570,Apple Airpods Headphones,1,150,07/21/19 19:35,"315 Washington St, New York City, NY 10001" +229571,27in FHD Monitor,1,149.99,07/15/19 21:50,"230 Cedar St, Boston, MA 02215" +229572,AA Batteries (4-pack),2,3.84,07/07/19 17:25,"530 Main St, Austin, TX 73301" +229573,Apple Airpods Headphones,1,150,07/04/19 14:16,"691 Washington St, San Francisco, CA 94016" +229574,Flatscreen TV,1,300,07/05/19 22:39,"333 Pine St, New York City, NY 10001" +229575,Flatscreen TV,1,300,07/08/19 15:31,"450 14th St, San Francisco, CA 94016" +229576,AA Batteries (4-pack),1,3.84,07/31/19 13:18,"974 Jefferson St, Boston, MA 02215" +229577,27in 4K Gaming Monitor,1,389.99,07/07/19 08:10,"641 Walnut St, Atlanta, GA 30301" +229578,iPhone,1,700,07/29/19 15:07,"15 Forest St, Dallas, TX 75001" +229579,Lightning Charging Cable,1,14.95,07/03/19 23:03,"159 Cedar St, New York City, NY 10001" +229580,Google Phone,1,600,07/23/19 19:15,"840 Dogwood St, San Francisco, CA 94016" +229581,Google Phone,1,600,07/13/19 01:26,"337 Johnson St, San Francisco, CA 94016" +229582,Bose SoundSport Headphones,1,99.99,07/27/19 08:52,"759 Maple St, Austin, TX 73301" +229583,Flatscreen TV,1,300,07/26/19 09:22,"561 Walnut St, Los Angeles, CA 90001" +229584,Lightning Charging Cable,1,14.95,07/28/19 22:12,"132 6th St, San Francisco, CA 94016" +229585,Lightning Charging Cable,1,14.95,07/09/19 16:31,"950 Church St, Atlanta, GA 30301" +229586,AAA Batteries (4-pack),1,2.99,07/20/19 02:01,"250 5th St, San Francisco, CA 94016" +229587,Wired Headphones,1,11.99,07/09/19 22:56,"932 Washington St, Austin, TX 73301" +229588,Apple Airpods Headphones,1,150,07/06/19 18:41,"742 North St, Los Angeles, CA 90001" +229589,Google Phone,1,600,07/22/19 11:50,"242 Church St, San Francisco, CA 94016" +229590,Flatscreen TV,1,300,07/23/19 22:38,"854 Lincoln St, Boston, MA 02215" +229591,Lightning Charging Cable,1,14.95,07/16/19 19:53,"206 Ridge St, Seattle, WA 98101" +229592,20in Monitor,1,109.99,07/26/19 10:38,"25 Cherry St, San Francisco, CA 94016" +229593,Lightning Charging Cable,1,14.95,07/17/19 04:57,"647 10th St, San Francisco, CA 94016" +229594,Lightning Charging Cable,1,14.95,07/16/19 12:38,"816 River St, Austin, TX 73301" +229595,USB-C Charging Cable,1,11.95,07/21/19 22:50,"355 Main St, Portland, OR 97035" +229596,AAA Batteries (4-pack),2,2.99,07/27/19 04:45,"356 5th St, Los Angeles, CA 90001" +229597,Macbook Pro Laptop,1,1700,07/31/19 09:32,"407 Jefferson St, Austin, TX 73301" +229598,AA Batteries (4-pack),1,3.84,07/19/19 10:26,"266 13th St, Atlanta, GA 30301" +229599,Flatscreen TV,1,300,07/17/19 16:33,"987 14th St, New York City, NY 10001" +229600,AA Batteries (4-pack),1,3.84,07/01/19 14:17,"917 Pine St, Los Angeles, CA 90001" +229601,27in FHD Monitor,1,149.99,07/16/19 11:29,"209 Hill St, San Francisco, CA 94016" +229602,AA Batteries (4-pack),1,3.84,07/12/19 15:47,"351 West St, San Francisco, CA 94016" +229603,Flatscreen TV,1,300,07/28/19 14:07,"554 Highland St, New York City, NY 10001" +229604,Bose SoundSport Headphones,1,99.99,07/03/19 12:38,"6 Madison St, San Francisco, CA 94016" +229605,Wired Headphones,1,11.99,07/26/19 20:58,"575 Meadow St, New York City, NY 10001" +229606,AAA Batteries (4-pack),1,2.99,07/27/19 21:04,"658 Walnut St, Portland, OR 97035" +229607,Bose SoundSport Headphones,1,99.99,07/05/19 16:53,"995 Cedar St, San Francisco, CA 94016" +229608,iPhone,1,700,07/16/19 00:16,"507 13th St, New York City, NY 10001" +229609,Lightning Charging Cable,1,14.95,07/13/19 09:50,"495 7th St, Los Angeles, CA 90001" +229610,USB-C Charging Cable,1,11.95,07/11/19 10:04,"263 Ridge St, Dallas, TX 75001" +229611,LG Dryer,1,600.0,07/04/19 10:02,"385 Elm St, San Francisco, CA 94016" +229612,Lightning Charging Cable,1,14.95,07/25/19 14:43,"878 Cedar St, San Francisco, CA 94016" +229613,Apple Airpods Headphones,1,150,07/16/19 10:10,"412 13th St, New York City, NY 10001" +229614,34in Ultrawide Monitor,1,379.99,07/24/19 12:53,"606 2nd St, San Francisco, CA 94016" +229615,ThinkPad Laptop,1,999.99,07/31/19 18:23,"217 Main St, Austin, TX 73301" +229616,Bose SoundSport Headphones,1,99.99,07/01/19 15:26,"988 North St, Los Angeles, CA 90001" +229617,27in 4K Gaming Monitor,1,389.99,07/18/19 14:55,"116 Madison St, New York City, NY 10001" +229618,ThinkPad Laptop,1,999.99,07/08/19 17:17,"927 Church St, New York City, NY 10001" +229619,AAA Batteries (4-pack),1,2.99,07/02/19 12:58,"316 14th St, New York City, NY 10001" +229620,AAA Batteries (4-pack),1,2.99,07/02/19 23:04,"44 4th St, Austin, TX 73301" +229621,AAA Batteries (4-pack),1,2.99,07/17/19 06:37,"738 Washington St, New York City, NY 10001" +229622,AAA Batteries (4-pack),1,2.99,07/25/19 23:28,"404 Chestnut St, Portland, OR 97035" +229623,AAA Batteries (4-pack),4,2.99,07/19/19 21:16,"907 13th St, Los Angeles, CA 90001" +229624,27in 4K Gaming Monitor,1,389.99,07/17/19 13:21,"609 Jackson St, Los Angeles, CA 90001" +229625,AA Batteries (4-pack),1,3.84,07/24/19 16:56,"406 7th St, San Francisco, CA 94016" +229626,USB-C Charging Cable,1,11.95,07/26/19 14:01,"107 Jackson St, Dallas, TX 75001" +229627,27in 4K Gaming Monitor,1,389.99,07/08/19 19:53,"654 Church St, Boston, MA 02215" +229628,AAA Batteries (4-pack),1,2.99,07/25/19 16:25,"115 Madison St, Atlanta, GA 30301" +229629,27in FHD Monitor,1,149.99,07/11/19 20:11,"801 1st St, San Francisco, CA 94016" +229630,34in Ultrawide Monitor,1,379.99,07/17/19 15:15,"954 Sunset St, New York City, NY 10001" +229631,AA Batteries (4-pack),1,3.84,07/20/19 14:49,"600 Hickory St, Los Angeles, CA 90001" +229632,34in Ultrawide Monitor,1,379.99,07/03/19 11:23,"502 2nd St, Dallas, TX 75001" +229633,USB-C Charging Cable,1,11.95,07/05/19 13:18,"961 Lake St, San Francisco, CA 94016" +229634,27in FHD Monitor,1,149.99,07/04/19 09:18,"404 Hill St, Atlanta, GA 30301" +229635,AA Batteries (4-pack),1,3.84,07/10/19 12:23,"622 Ridge St, Boston, MA 02215" +229636,34in Ultrawide Monitor,1,379.99,07/07/19 15:26,"399 1st St, Boston, MA 02215" +229637,Lightning Charging Cable,1,14.95,07/28/19 17:44,"832 Forest St, San Francisco, CA 94016" +229638,Lightning Charging Cable,1,14.95,07/03/19 16:06,"270 11th St, Atlanta, GA 30301" +229639,Wired Headphones,1,11.99,07/17/19 11:24,"539 Elm St, San Francisco, CA 94016" +229640,Wired Headphones,1,11.99,07/16/19 04:58,"558 Main St, San Francisco, CA 94016" +229641,Wired Headphones,1,11.99,07/10/19 18:07,"11 10th St, Boston, MA 02215" +229642,Macbook Pro Laptop,1,1700,07/11/19 19:17,"447 Elm St, Atlanta, GA 30301" +229643,Bose SoundSport Headphones,1,99.99,07/18/19 17:54,"166 Hill St, Portland, OR 97035" +229644,34in Ultrawide Monitor,1,379.99,07/15/19 11:03,"142 6th St, Boston, MA 02215" +229645,AAA Batteries (4-pack),3,2.99,07/24/19 08:17,"203 Highland St, Boston, MA 02215" +229646,Lightning Charging Cable,1,14.95,07/20/19 14:48,"921 Spruce St, Boston, MA 02215" +229647,Lightning Charging Cable,1,14.95,07/29/19 18:20,"836 13th St, New York City, NY 10001" +229648,Bose SoundSport Headphones,1,99.99,07/14/19 07:56,"586 Hill St, San Francisco, CA 94016" +229649,USB-C Charging Cable,1,11.95,07/12/19 21:57,"773 Washington St, San Francisco, CA 94016" +229650,USB-C Charging Cable,1,11.95,07/07/19 17:43,"725 Meadow St, Boston, MA 02215" +229651,Wired Headphones,1,11.99,07/25/19 11:05,"334 14th St, Los Angeles, CA 90001" +229652,Wired Headphones,1,11.99,07/23/19 17:05,"675 12th St, Dallas, TX 75001" +229653,Macbook Pro Laptop,1,1700,07/03/19 08:39,"826 Main St, San Francisco, CA 94016" +229654,AAA Batteries (4-pack),1,2.99,07/22/19 10:46,"441 Lincoln St, Boston, MA 02215" +229655,Apple Airpods Headphones,1,150,07/04/19 11:03,"757 2nd St, San Francisco, CA 94016" +229656,Lightning Charging Cable,2,14.95,07/16/19 08:47,"541 Lake St, Los Angeles, CA 90001" +229657,ThinkPad Laptop,1,999.99,07/13/19 15:14,"568 Main St, Los Angeles, CA 90001" +229658,Lightning Charging Cable,1,14.95,07/20/19 14:42,"462 11th St, San Francisco, CA 94016" +229659,Lightning Charging Cable,1,14.95,07/11/19 14:45,"316 Spruce St, Los Angeles, CA 90001" +229660,Apple Airpods Headphones,1,150,07/09/19 12:12,"873 Washington St, Portland, OR 97035" +229661,Apple Airpods Headphones,1,150,07/01/19 22:39,"537 13th St, San Francisco, CA 94016" +229662,USB-C Charging Cable,1,11.95,07/08/19 14:16,"815 1st St, San Francisco, CA 94016" +229663,AAA Batteries (4-pack),1,2.99,07/07/19 12:50,"463 Wilson St, San Francisco, CA 94016" +229664,Vareebadd Phone,1,400,07/12/19 20:28,"156 Dogwood St, San Francisco, CA 94016" +229665,AA Batteries (4-pack),1,3.84,07/24/19 10:14,"277 12th St, Los Angeles, CA 90001" +229666,AAA Batteries (4-pack),1,2.99,07/27/19 12:28,"837 Park St, Boston, MA 02215" +229667,Wired Headphones,1,11.99,07/31/19 18:52,"709 4th St, San Francisco, CA 94016" +229668,27in 4K Gaming Monitor,1,389.99,07/28/19 08:52,"81 4th St, Los Angeles, CA 90001" +229669,Apple Airpods Headphones,1,150,07/05/19 14:08,"737 Walnut St, Los Angeles, CA 90001" +229670,AAA Batteries (4-pack),1,2.99,07/19/19 10:55,"441 11th St, Atlanta, GA 30301" +229671,Macbook Pro Laptop,1,1700,07/18/19 17:43,"997 1st St, San Francisco, CA 94016" +229672,ThinkPad Laptop,1,999.99,07/25/19 15:54,"572 Hill St, Atlanta, GA 30301" +229673,Lightning Charging Cable,1,14.95,07/10/19 13:18,"318 Highland St, Portland, OR 97035" +229674,ThinkPad Laptop,1,999.99,07/22/19 10:09,"739 Pine St, New York City, NY 10001" +229675,Apple Airpods Headphones,1,150,07/13/19 16:45,"131 Cherry St, Seattle, WA 98101" +229676,AAA Batteries (4-pack),1,2.99,07/01/19 14:11,"751 Lincoln St, Austin, TX 73301" +229677,AAA Batteries (4-pack),1,2.99,07/19/19 14:30,"504 Cherry St, Austin, TX 73301" +229678,Lightning Charging Cable,1,14.95,07/04/19 18:57,"439 Church St, Dallas, TX 75001" +229679,Google Phone,1,600,07/07/19 20:49,"635 Center St, Atlanta, GA 30301" +229679,Wired Headphones,1,11.99,07/07/19 20:49,"635 Center St, Atlanta, GA 30301" +229680,AAA Batteries (4-pack),1,2.99,07/05/19 16:04,"895 Jefferson St, Los Angeles, CA 90001" +229681,USB-C Charging Cable,1,11.95,07/04/19 11:31,"103 Ridge St, Boston, MA 02215" +229682,Google Phone,1,600,07/09/19 19:19,"65 6th St, Los Angeles, CA 90001" +229683,AA Batteries (4-pack),1,3.84,07/24/19 15:38,"416 Pine St, Boston, MA 02215" +229684,Apple Airpods Headphones,1,150,07/22/19 15:45,"50 Maple St, Atlanta, GA 30301" +229684,iPhone,1,700,07/22/19 15:45,"50 Maple St, Atlanta, GA 30301" +229685,iPhone,1,700,07/09/19 15:10,"456 Center St, San Francisco, CA 94016" +229686,Flatscreen TV,1,300,07/03/19 11:16,"808 Madison St, Boston, MA 02215" +229687,Vareebadd Phone,1,400,07/21/19 14:30,"293 Washington St, Portland, OR 97035" +229688,Lightning Charging Cable,1,14.95,07/06/19 18:58,"706 Hill St, Seattle, WA 98101" +229689,27in FHD Monitor,1,149.99,07/16/19 18:57,"31 Jefferson St, San Francisco, CA 94016" +229690,AAA Batteries (4-pack),1,2.99,07/28/19 00:48,"228 4th St, Los Angeles, CA 90001" +229691,Apple Airpods Headphones,1,150,07/09/19 19:52,"195 South St, New York City, NY 10001" +229692,USB-C Charging Cable,1,11.95,07/11/19 12:47,"732 14th St, Dallas, TX 75001" +229693,ThinkPad Laptop,1,999.99,07/16/19 13:07,"721 6th St, New York City, NY 10001" +229694,iPhone,1,700,07/29/19 13:44,"365 Sunset St, Seattle, WA 98101" +229695,Bose SoundSport Headphones,1,99.99,07/30/19 12:55,"130 Walnut St, Los Angeles, CA 90001" +229696,Wired Headphones,1,11.99,07/28/19 16:33,"98 Sunset St, Dallas, TX 75001" +229697,20in Monitor,1,109.99,07/11/19 14:16,"142 Johnson St, Dallas, TX 75001" +229698,Lightning Charging Cable,1,14.95,07/13/19 12:39,"860 Lakeview St, Los Angeles, CA 90001" +229699,USB-C Charging Cable,1,11.95,07/27/19 14:31,"233 Maple St, Dallas, TX 75001" +229700,USB-C Charging Cable,1,11.95,07/13/19 19:11,"729 Elm St, Dallas, TX 75001" +229701,USB-C Charging Cable,1,11.95,07/16/19 17:45,"673 12th St, Dallas, TX 75001" +229702,Lightning Charging Cable,1,14.95,07/20/19 07:39,"960 7th St, Los Angeles, CA 90001" +229703,iPhone,1,700,07/24/19 11:54,"201 1st St, New York City, NY 10001" +229704,Apple Airpods Headphones,1,150,07/24/19 19:44,"262 Forest St, San Francisco, CA 94016" +229705,27in 4K Gaming Monitor,1,389.99,07/12/19 22:05,"544 2nd St, New York City, NY 10001" +229706,Lightning Charging Cable,1,14.95,07/30/19 11:15,"445 Cherry St, Los Angeles, CA 90001" +229707,AAA Batteries (4-pack),1,2.99,07/10/19 07:41,"980 Washington St, Boston, MA 02215" +229708,Flatscreen TV,1,300,07/22/19 22:35,"672 8th St, Los Angeles, CA 90001" +229709,Lightning Charging Cable,1,14.95,07/15/19 09:32,"348 Main St, San Francisco, CA 94016" +229710,27in 4K Gaming Monitor,1,389.99,07/29/19 01:16,"646 South St, Boston, MA 02215" +229711,Vareebadd Phone,1,400,07/08/19 22:24,"367 Wilson St, Los Angeles, CA 90001" +229712,Bose SoundSport Headphones,1,99.99,07/14/19 21:42,"956 Jackson St, San Francisco, CA 94016" +229713,USB-C Charging Cable,1,11.95,07/01/19 21:26,"116 4th St, New York City, NY 10001" +229714,Macbook Pro Laptop,1,1700,07/21/19 16:32,"486 Adams St, Los Angeles, CA 90001" +229715,Lightning Charging Cable,1,14.95,07/03/19 19:44,"976 Maple St, Los Angeles, CA 90001" +229716,34in Ultrawide Monitor,1,379.99,07/10/19 13:44,"454 Wilson St, Portland, OR 97035" +229717,Macbook Pro Laptop,1,1700,07/28/19 23:40,"939 Hickory St, Austin, TX 73301" +229718,AAA Batteries (4-pack),1,2.99,07/20/19 19:23,"416 Willow St, San Francisco, CA 94016" +229719,Vareebadd Phone,1,400,07/31/19 20:38,"36 Jackson St, Dallas, TX 75001" +229720,AAA Batteries (4-pack),1,2.99,07/21/19 23:36,"736 4th St, Boston, MA 02215" +229721,27in FHD Monitor,1,149.99,07/24/19 01:07,"95 Ridge St, Los Angeles, CA 90001" +229722,Wired Headphones,1,11.99,07/02/19 21:38,"823 Ridge St, Dallas, TX 75001" +229722,AAA Batteries (4-pack),2,2.99,07/02/19 21:38,"823 Ridge St, Dallas, TX 75001" +229723,AA Batteries (4-pack),1,3.84,07/05/19 13:14,"757 7th St, Portland, OR 97035" +229724,Bose SoundSport Headphones,1,99.99,07/22/19 18:28,"268 1st St, San Francisco, CA 94016" +229725,Apple Airpods Headphones,1,150,07/03/19 22:23,"538 Madison St, Portland, OR 97035" +229726,27in 4K Gaming Monitor,1,389.99,07/30/19 18:06,"89 Meadow St, San Francisco, CA 94016" +229727,USB-C Charging Cable,1,11.95,07/05/19 17:15,"588 Sunset St, Los Angeles, CA 90001" +229728,AA Batteries (4-pack),1,3.84,07/10/19 14:24,"99 Cedar St, San Francisco, CA 94016" +229729,Google Phone,1,600,07/24/19 21:32,"878 Chestnut St, Seattle, WA 98101" +229730,AAA Batteries (4-pack),1,2.99,07/09/19 07:17,"443 Forest St, New York City, NY 10001" +229731,Wired Headphones,1,11.99,07/29/19 03:53,"443 Washington St, Atlanta, GA 30301" +229732,Google Phone,1,600,07/30/19 12:14,"262 South St, Los Angeles, CA 90001" +229733,AA Batteries (4-pack),1,3.84,07/16/19 10:58,"80 Washington St, Boston, MA 02215" +229734,USB-C Charging Cable,1,11.95,07/08/19 08:21,"360 Cherry St, San Francisco, CA 94016" +229735,USB-C Charging Cable,1,11.95,07/02/19 19:57,"782 7th St, Portland, OR 97035" +229736,iPhone,1,700,07/24/19 06:18,"157 Lakeview St, Portland, OR 97035" +229737,iPhone,1,700,07/27/19 15:28,"915 Park St, Los Angeles, CA 90001" +229737,Lightning Charging Cable,1,14.95,07/27/19 15:28,"915 Park St, Los Angeles, CA 90001" +229738,Vareebadd Phone,1,400,07/22/19 08:55,"975 Hickory St, Atlanta, GA 30301" +229738,USB-C Charging Cable,1,11.95,07/22/19 08:55,"975 Hickory St, Atlanta, GA 30301" +229739,AAA Batteries (4-pack),1,2.99,07/18/19 10:30,"816 North St, New York City, NY 10001" +229740,AA Batteries (4-pack),1,3.84,07/25/19 19:48,"207 Lake St, Dallas, TX 75001" +229741,Wired Headphones,1,11.99,07/07/19 04:56,"745 Maple St, Portland, OR 97035" +229741,AA Batteries (4-pack),2,3.84,07/07/19 04:56,"745 Maple St, Portland, OR 97035" +229742,34in Ultrawide Monitor,1,379.99,07/20/19 07:12,"620 5th St, New York City, NY 10001" +229743,USB-C Charging Cable,1,11.95,07/07/19 10:12,"967 7th St, Seattle, WA 98101" +229744,Google Phone,1,600,07/20/19 19:39,"741 4th St, Portland, OR 97035" +229745,USB-C Charging Cable,1,11.95,07/25/19 15:00,"330 Pine St, New York City, NY 10001" +229746,iPhone,1,700,07/19/19 19:58,"509 West St, Austin, TX 73301" +229747,AAA Batteries (4-pack),2,2.99,07/06/19 16:06,"528 Cedar St, New York City, NY 10001" +229748,AAA Batteries (4-pack),2,2.99,07/20/19 01:24,"17 12th St, New York City, NY 10001" +229749,Apple Airpods Headphones,1,150,07/23/19 14:47,"344 Main St, New York City, NY 10001" +229750,Wired Headphones,1,11.99,07/07/19 07:29,"870 Lake St, New York City, NY 10001" +229751,Lightning Charging Cable,1,14.95,07/24/19 23:28,"776 Park St, San Francisco, CA 94016" +229752,Lightning Charging Cable,1,14.95,07/03/19 20:39,"912 Ridge St, Portland, OR 97035" +229753,ThinkPad Laptop,1,999.99,07/16/19 11:05,"198 Lakeview St, Los Angeles, CA 90001" +229754,AA Batteries (4-pack),1,3.84,07/19/19 18:21,"985 Washington St, Boston, MA 02215" +229755,34in Ultrawide Monitor,1,379.99,07/19/19 10:19,"612 Washington St, Dallas, TX 75001" +229756,Wired Headphones,1,11.99,07/27/19 17:30,"390 Washington St, San Francisco, CA 94016" +229757,27in FHD Monitor,1,149.99,07/04/19 22:42,"604 Adams St, Boston, MA 02215" +229758,AAA Batteries (4-pack),2,2.99,07/31/19 21:37,"50 6th St, Portland, OR 97035" +229759,LG Washing Machine,1,600.0,07/06/19 11:46,"924 14th St, Atlanta, GA 30301" +229760,AAA Batteries (4-pack),1,2.99,07/15/19 12:57,"73 Ridge St, New York City, NY 10001" +229761,AA Batteries (4-pack),1,3.84,07/18/19 20:32,"906 11th St, San Francisco, CA 94016" +229762,USB-C Charging Cable,1,11.95,07/16/19 13:11,"892 Madison St, New York City, NY 10001" +229763,Flatscreen TV,1,300,07/20/19 12:08,"135 Lakeview St, Dallas, TX 75001" +229764,Lightning Charging Cable,1,14.95,07/20/19 12:07,"40 6th St, Austin, TX 73301" +229765,20in Monitor,1,109.99,07/28/19 20:16,"802 North St, New York City, NY 10001" +229766,USB-C Charging Cable,1,11.95,07/15/19 11:23,"72 West St, Los Angeles, CA 90001" +229766,Lightning Charging Cable,1,14.95,07/15/19 11:23,"72 West St, Los Angeles, CA 90001" +229767,20in Monitor,1,109.99,07/08/19 06:27,"701 Sunset St, Los Angeles, CA 90001" +229768,USB-C Charging Cable,1,11.95,07/16/19 19:39,"829 Jefferson St, New York City, NY 10001" +229769,Bose SoundSport Headphones,1,99.99,07/27/19 12:23,"672 Willow St, New York City, NY 10001" +229770,USB-C Charging Cable,1,11.95,07/29/19 12:11,"136 Maple St, Los Angeles, CA 90001" +229771,USB-C Charging Cable,2,11.95,07/14/19 06:50,"744 Walnut St, San Francisco, CA 94016" +229772,27in FHD Monitor,1,149.99,07/14/19 19:44,"191 Elm St, New York City, NY 10001" +229773,AAA Batteries (4-pack),1,2.99,07/18/19 07:50,"296 14th St, New York City, NY 10001" +229774,Google Phone,1,600,07/04/19 17:41,"549 Madison St, Los Angeles, CA 90001" +229774,Wired Headphones,1,11.99,07/04/19 17:41,"549 Madison St, Los Angeles, CA 90001" +229775,Lightning Charging Cable,1,14.95,07/28/19 11:50,"912 Forest St, Portland, OR 97035" +229776,Wired Headphones,1,11.99,07/30/19 12:55,"75 Madison St, Los Angeles, CA 90001" +229777,27in FHD Monitor,1,149.99,07/05/19 11:59,"818 Lincoln St, Portland, OR 97035" +229778,Bose SoundSport Headphones,1,99.99,07/26/19 13:43,"934 River St, Austin, TX 73301" +229779,Wired Headphones,1,11.99,07/18/19 20:23,"503 Walnut St, Seattle, WA 98101" +229780,Apple Airpods Headphones,1,150,07/30/19 20:41,"610 Meadow St, Dallas, TX 75001" +229781,Flatscreen TV,1,300,07/09/19 14:56,"364 Meadow St, New York City, NY 10001" +229782,AAA Batteries (4-pack),2,2.99,07/09/19 22:11,"512 Wilson St, Atlanta, GA 30301" +229783,USB-C Charging Cable,1,11.95,07/22/19 16:02,"472 Ridge St, Atlanta, GA 30301" +229784,Wired Headphones,1,11.99,07/20/19 20:49,"995 Maple St, New York City, NY 10001" +229785,USB-C Charging Cable,1,11.95,07/30/19 12:37,"290 12th St, Seattle, WA 98101" +229786,Google Phone,1,600,07/19/19 00:15,"559 Walnut St, Dallas, TX 75001" +229786,USB-C Charging Cable,1,11.95,07/19/19 00:15,"559 Walnut St, Dallas, TX 75001" +229786,Bose SoundSport Headphones,1,99.99,07/19/19 00:15,"559 Walnut St, Dallas, TX 75001" +229787,Apple Airpods Headphones,1,150,07/09/19 18:22,"481 Jackson St, Atlanta, GA 30301" +229788,Flatscreen TV,1,300,07/30/19 08:12,"292 West St, Atlanta, GA 30301" +229789,Bose SoundSport Headphones,1,99.99,07/01/19 07:40,"478 Cedar St, Austin, TX 73301" +229790,USB-C Charging Cable,2,11.95,07/03/19 22:00,"776 West St, Atlanta, GA 30301" +229791,USB-C Charging Cable,1,11.95,07/08/19 06:23,"597 Pine St, Portland, OR 97035" +,,,,, +229792,Lightning Charging Cable,1,14.95,07/23/19 19:41,"947 7th St, San Francisco, CA 94016" +229793,Wired Headphones,2,11.99,07/16/19 16:29,"706 4th St, Boston, MA 02215" +229794,Wired Headphones,1,11.99,07/26/19 06:23,"148 Center St, San Francisco, CA 94016" +229795,27in FHD Monitor,1,149.99,07/12/19 10:43,"345 4th St, San Francisco, CA 94016" +229796,Lightning Charging Cable,1,14.95,07/01/19 18:10,"216 Lincoln St, San Francisco, CA 94016" +229797,ThinkPad Laptop,1,999.99,07/04/19 21:54,"813 Willow St, Los Angeles, CA 90001" +229798,USB-C Charging Cable,1,11.95,07/07/19 11:59,"235 Highland St, San Francisco, CA 94016" +229799,USB-C Charging Cable,1,11.95,07/30/19 00:17,"66 Lincoln St, Los Angeles, CA 90001" +229800,Apple Airpods Headphones,1,150,07/13/19 09:49,"172 2nd St, Atlanta, GA 30301" +229801,USB-C Charging Cable,1,11.95,07/22/19 18:27,"207 Dogwood St, Atlanta, GA 30301" +229802,USB-C Charging Cable,2,11.95,07/23/19 21:52,"510 Willow St, San Francisco, CA 94016" +229803,Bose SoundSport Headphones,1,99.99,07/31/19 09:29,"446 Walnut St, Atlanta, GA 30301" +229804,Wired Headphones,1,11.99,07/24/19 11:40,"184 13th St, Dallas, TX 75001" +229805,Flatscreen TV,1,300,07/26/19 16:42,"493 5th St, New York City, NY 10001" +229806,AA Batteries (4-pack),2,3.84,07/11/19 03:43,"429 Adams St, San Francisco, CA 94016" +229807,Wired Headphones,1,11.99,07/31/19 13:07,"821 9th St, Atlanta, GA 30301" +229808,AAA Batteries (4-pack),2,2.99,07/30/19 15:07,"150 11th St, Dallas, TX 75001" +229809,20in Monitor,1,109.99,07/16/19 21:07,"451 River St, Portland, OR 97035" +229810,Bose SoundSport Headphones,1,99.99,07/24/19 14:55,"330 Cherry St, Seattle, WA 98101" +229810,Lightning Charging Cable,1,14.95,07/24/19 14:55,"330 Cherry St, Seattle, WA 98101" +229811,AAA Batteries (4-pack),1,2.99,07/08/19 14:06,"865 Cherry St, Los Angeles, CA 90001" +229812,USB-C Charging Cable,1,11.95,07/16/19 18:27,"587 Willow St, San Francisco, CA 94016" +229813,Wired Headphones,1,11.99,07/23/19 10:20,"970 Adams St, Dallas, TX 75001" +229814,LG Dryer,1,600.0,07/19/19 12:47,"426 Church St, San Francisco, CA 94016" +229815,Bose SoundSport Headphones,1,99.99,07/17/19 16:25,"379 Ridge St, San Francisco, CA 94016" +,,,,, +229816,Google Phone,1,600,07/16/19 20:09,"812 Walnut St, Portland, OR 97035" +229817,34in Ultrawide Monitor,1,379.99,07/08/19 12:39,"545 7th St, Seattle, WA 98101" +229818,AAA Batteries (4-pack),1,2.99,07/26/19 22:02,"647 Forest St, Seattle, WA 98101" +229819,Bose SoundSport Headphones,1,99.99,07/04/19 20:18,"538 North St, Atlanta, GA 30301" +229820,ThinkPad Laptop,1,999.99,07/01/19 17:47,"316 Elm St, Seattle, WA 98101" +229821,Wired Headphones,1,11.99,07/20/19 10:42,"302 Lake St, Atlanta, GA 30301" +229822,Lightning Charging Cable,1,14.95,07/04/19 14:03,"678 Church St, New York City, NY 10001" +229823,Flatscreen TV,1,300,07/06/19 00:14,"377 Maple St, San Francisco, CA 94016" +229824,Lightning Charging Cable,1,14.95,07/09/19 14:42,"927 Pine St, Los Angeles, CA 90001" +229825,AA Batteries (4-pack),1,3.84,07/15/19 12:23,"583 Spruce St, San Francisco, CA 94016" +229826,27in FHD Monitor,1,149.99,07/30/19 12:37,"646 5th St, Los Angeles, CA 90001" +229827,Lightning Charging Cable,1,14.95,07/17/19 05:01,"970 Madison St, San Francisco, CA 94016" +229828,AA Batteries (4-pack),1,3.84,07/04/19 08:36,"121 2nd St, Los Angeles, CA 90001" +229829,iPhone,1,700,07/23/19 21:39,"925 5th St, San Francisco, CA 94016" +229829,Apple Airpods Headphones,1,150,07/23/19 21:39,"925 5th St, San Francisco, CA 94016" +229830,Bose SoundSport Headphones,1,99.99,07/08/19 21:34,"985 Adams St, San Francisco, CA 94016" +229831,Apple Airpods Headphones,1,150,07/08/19 12:27,"97 Elm St, New York City, NY 10001" +229832,Google Phone,1,600,07/28/19 13:54,"320 Main St, Portland, ME 04101" +229833,AAA Batteries (4-pack),1,2.99,07/14/19 19:58,"631 Hill St, Los Angeles, CA 90001" +229834,Bose SoundSport Headphones,1,99.99,07/25/19 15:29,"282 Lake St, Dallas, TX 75001" +229835,Google Phone,1,600,07/22/19 13:17,"137 Cedar St, Boston, MA 02215" +229836,Macbook Pro Laptop,1,1700,07/18/19 11:32,"165 West St, Dallas, TX 75001" +229837,iPhone,1,700,07/21/19 06:05,"514 11th St, San Francisco, CA 94016" +229838,34in Ultrawide Monitor,1,379.99,07/10/19 09:27,"999 Walnut St, San Francisco, CA 94016" +229839,Wired Headphones,1,11.99,07/12/19 18:57,"330 Ridge St, Los Angeles, CA 90001" +229840,AA Batteries (4-pack),1,3.84,07/10/19 22:55,"945 Willow St, Atlanta, GA 30301" +229841,27in FHD Monitor,1,149.99,08/01/19 02:39,"686 Hill St, Dallas, TX 75001" +229842,AAA Batteries (4-pack),2,2.99,07/17/19 08:36,"148 West St, Austin, TX 73301" +229843,AAA Batteries (4-pack),1,2.99,07/27/19 20:58,"520 River St, San Francisco, CA 94016" +229844,Bose SoundSport Headphones,1,99.99,07/12/19 09:00,"414 11th St, Boston, MA 02215" +229845,USB-C Charging Cable,1,11.95,07/24/19 12:00,"879 13th St, San Francisco, CA 94016" +229846,Bose SoundSport Headphones,1,99.99,07/09/19 10:13,"310 14th St, Atlanta, GA 30301" +229847,Apple Airpods Headphones,1,150,07/22/19 18:30,"254 Willow St, Portland, OR 97035" +229848,AAA Batteries (4-pack),1,2.99,07/24/19 16:54,"528 Wilson St, Portland, OR 97035" +229849,Wired Headphones,1,11.99,07/05/19 14:39,"916 13th St, New York City, NY 10001" +229850,Lightning Charging Cable,1,14.95,07/21/19 16:20,"629 Lincoln St, Portland, OR 97035" +229851,Wired Headphones,1,11.99,07/12/19 11:15,"691 Lakeview St, Dallas, TX 75001" +229852,Lightning Charging Cable,1,14.95,07/15/19 21:47,"478 Wilson St, New York City, NY 10001" +229853,Lightning Charging Cable,1,14.95,07/05/19 00:02,"398 Center St, Austin, TX 73301" +229854,AA Batteries (4-pack),1,3.84,07/02/19 05:10,"250 Chestnut St, Atlanta, GA 30301" +229855,Bose SoundSport Headphones,1,99.99,07/02/19 22:23,"676 10th St, Dallas, TX 75001" +229856,Apple Airpods Headphones,1,150,07/24/19 16:30,"952 Jackson St, Dallas, TX 75001" +229857,34in Ultrawide Monitor,1,379.99,07/08/19 11:56,"647 Maple St, Boston, MA 02215" +229858,AA Batteries (4-pack),1,3.84,07/25/19 16:56,"913 Center St, San Francisco, CA 94016" +229859,Bose SoundSport Headphones,1,99.99,07/01/19 21:16,"365 West St, Boston, MA 02215" +,,,,, +229860,Google Phone,1,600,07/26/19 21:17,"414 Spruce St, San Francisco, CA 94016" +229861,AAA Batteries (4-pack),3,2.99,07/29/19 04:36,"390 Washington St, Atlanta, GA 30301" +229862,Google Phone,1,600,07/05/19 05:46,"427 Forest St, Los Angeles, CA 90001" +229862,USB-C Charging Cable,1,11.95,07/05/19 05:46,"427 Forest St, Los Angeles, CA 90001" +229863,AA Batteries (4-pack),1,3.84,07/04/19 19:43,"115 Forest St, Los Angeles, CA 90001" +229864,iPhone,1,700,07/08/19 07:59,"31 Hickory St, San Francisco, CA 94016" +229865,AAA Batteries (4-pack),1,2.99,07/30/19 19:19,"816 Cherry St, San Francisco, CA 94016" +229866,Flatscreen TV,1,300,07/27/19 12:10,"435 8th St, Atlanta, GA 30301" +229867,Wired Headphones,1,11.99,07/16/19 07:36,"195 Church St, Austin, TX 73301" +229868,ThinkPad Laptop,1,999.99,07/02/19 11:01,"109 Meadow St, Atlanta, GA 30301" +229869,Flatscreen TV,1,300,07/08/19 22:44,"792 Johnson St, Atlanta, GA 30301" +229870,AA Batteries (4-pack),1,3.84,07/05/19 00:03,"668 11th St, San Francisco, CA 94016" +229871,Vareebadd Phone,1,400,07/28/19 20:34,"902 Forest St, Atlanta, GA 30301" +229871,Bose SoundSport Headphones,1,99.99,07/28/19 20:34,"902 Forest St, Atlanta, GA 30301" +229872,USB-C Charging Cable,1,11.95,07/18/19 02:02,"544 10th St, Dallas, TX 75001" +229873,Lightning Charging Cable,1,14.95,07/29/19 00:34,"632 Jefferson St, San Francisco, CA 94016" +229874,Macbook Pro Laptop,1,1700,07/06/19 16:54,"336 Johnson St, Los Angeles, CA 90001" +229875,USB-C Charging Cable,1,11.95,07/07/19 21:20,"541 Elm St, New York City, NY 10001" +229876,Wired Headphones,1,11.99,07/28/19 11:35,"229 Main St, New York City, NY 10001" +229877,USB-C Charging Cable,1,11.95,07/03/19 09:33,"553 Lincoln St, Atlanta, GA 30301" +229878,Bose SoundSport Headphones,1,99.99,08/01/19 01:38,"996 Main St, Los Angeles, CA 90001" +229879,AAA Batteries (4-pack),2,2.99,07/04/19 13:47,"750 6th St, San Francisco, CA 94016" +229880,ThinkPad Laptop,1,999.99,07/20/19 20:09,"538 Washington St, Seattle, WA 98101" +229881,Bose SoundSport Headphones,1,99.99,07/07/19 12:07,"232 Meadow St, San Francisco, CA 94016" +229882,USB-C Charging Cable,2,11.95,07/11/19 21:35,"664 Walnut St, San Francisco, CA 94016" +229883,Wired Headphones,1,11.99,07/28/19 13:13,"815 5th St, Los Angeles, CA 90001" +229884,Macbook Pro Laptop,1,1700,07/21/19 18:59,"501 Sunset St, Portland, OR 97035" +229885,Vareebadd Phone,1,400,07/04/19 20:42,"156 Forest St, Dallas, TX 75001" +229886,Bose SoundSport Headphones,1,99.99,07/10/19 18:15,"699 Hickory St, Seattle, WA 98101" +229887,Lightning Charging Cable,1,14.95,07/02/19 22:38,"769 9th St, San Francisco, CA 94016" +229888,USB-C Charging Cable,1,11.95,07/19/19 11:47,"591 Elm St, San Francisco, CA 94016" +229889,Apple Airpods Headphones,1,150,07/03/19 00:28,"747 West St, Atlanta, GA 30301" +229890,Wired Headphones,1,11.99,07/15/19 12:40,"940 Dogwood St, San Francisco, CA 94016" +229891,Google Phone,1,600,07/28/19 00:54,"553 Center St, San Francisco, CA 94016" +229892,USB-C Charging Cable,1,11.95,07/21/19 00:42,"786 Cherry St, Portland, OR 97035" +229893,27in FHD Monitor,1,149.99,07/25/19 22:22,"584 1st St, Atlanta, GA 30301" +229894,AAA Batteries (4-pack),3,2.99,07/14/19 08:21,"987 South St, Atlanta, GA 30301" +229895,USB-C Charging Cable,1,11.95,07/24/19 20:27,"761 Forest St, San Francisco, CA 94016" +229895,Wired Headphones,1,11.99,07/24/19 20:27,"761 Forest St, San Francisco, CA 94016" +229896,Google Phone,1,600,07/16/19 14:42,"602 8th St, Dallas, TX 75001" +,,,,, +229897,AAA Batteries (4-pack),1,2.99,07/10/19 16:55,"246 Jackson St, Dallas, TX 75001" +229898,USB-C Charging Cable,1,11.95,07/19/19 17:07,"117 Madison St, Boston, MA 02215" +229899,ThinkPad Laptop,1,999.99,07/12/19 17:23,"734 Spruce St, New York City, NY 10001" +229900,AA Batteries (4-pack),2,3.84,07/28/19 11:03,"597 12th St, Los Angeles, CA 90001" +229901,34in Ultrawide Monitor,1,379.99,07/13/19 11:23,"658 Church St, Dallas, TX 75001" +229902,AA Batteries (4-pack),1,3.84,07/21/19 18:36,"455 6th St, Atlanta, GA 30301" +229903,USB-C Charging Cable,1,11.95,07/27/19 19:51,"296 Forest St, Seattle, WA 98101" +229904,ThinkPad Laptop,1,999.99,07/06/19 22:17,"410 Center St, New York City, NY 10001" +229905,Wired Headphones,1,11.99,07/28/19 13:30,"879 1st St, New York City, NY 10001" +229906,Bose SoundSport Headphones,1,99.99,07/11/19 15:29,"59 Lakeview St, Austin, TX 73301" +229907,USB-C Charging Cable,1,11.95,07/31/19 13:09,"357 Cedar St, Los Angeles, CA 90001" +229908,Flatscreen TV,1,300,07/15/19 19:52,"319 Spruce St, Boston, MA 02215" +229909,Apple Airpods Headphones,1,150,07/15/19 18:03,"956 4th St, Atlanta, GA 30301" +229910,Google Phone,1,600,07/05/19 08:15,"606 1st St, Seattle, WA 98101" +229911,AAA Batteries (4-pack),2,2.99,07/16/19 18:27,"866 4th St, Seattle, WA 98101" +229912,Wired Headphones,1,11.99,07/29/19 11:50,"83 14th St, San Francisco, CA 94016" +229913,iPhone,1,700,07/13/19 23:03,"770 7th St, San Francisco, CA 94016" +229914,AAA Batteries (4-pack),3,2.99,07/13/19 12:14,"466 Willow St, Atlanta, GA 30301" +229915,AA Batteries (4-pack),1,3.84,07/02/19 13:26,"514 Johnson St, New York City, NY 10001" +229916,20in Monitor,1,109.99,07/03/19 07:08,"425 Lakeview St, Boston, MA 02215" +229917,Lightning Charging Cable,1,14.95,07/01/19 09:59,"249 West St, San Francisco, CA 94016" +229918,20in Monitor,1,109.99,07/03/19 14:09,"892 Park St, San Francisco, CA 94016" +229919,20in Monitor,1,109.99,07/14/19 12:17,"749 Lakeview St, Seattle, WA 98101" +229920,Flatscreen TV,1,300,07/20/19 22:32,"658 Chestnut St, San Francisco, CA 94016" +229921,Macbook Pro Laptop,1,1700,07/28/19 20:14,"645 Madison St, Boston, MA 02215" +229922,USB-C Charging Cable,1,11.95,07/29/19 14:49,"534 Main St, San Francisco, CA 94016" +229923,AAA Batteries (4-pack),1,2.99,07/14/19 16:04,"551 Elm St, Boston, MA 02215" +229924,27in 4K Gaming Monitor,1,389.99,07/10/19 02:12,"446 12th St, San Francisco, CA 94016" +229925,AAA Batteries (4-pack),2,2.99,07/07/19 13:58,"24 West St, Seattle, WA 98101" +229926,AA Batteries (4-pack),1,3.84,07/12/19 17:11,"766 Ridge St, New York City, NY 10001" +229927,Macbook Pro Laptop,1,1700,07/17/19 20:39,"664 6th St, Los Angeles, CA 90001" +229928,AA Batteries (4-pack),1,3.84,07/25/19 13:30,"794 Main St, San Francisco, CA 94016" +229929,iPhone,1,700,07/31/19 14:39,"696 Adams St, Boston, MA 02215" +229930,Apple Airpods Headphones,1,150,07/16/19 08:37,"569 Lincoln St, San Francisco, CA 94016" +229931,Wired Headphones,1,11.99,07/15/19 21:33,"386 10th St, Los Angeles, CA 90001" +229932,27in FHD Monitor,1,149.99,07/29/19 21:18,"933 Spruce St, San Francisco, CA 94016" +229933,Macbook Pro Laptop,1,1700,07/16/19 22:21,"613 2nd St, Boston, MA 02215" +229934,Lightning Charging Cable,1,14.95,07/26/19 12:27,"893 Elm St, Atlanta, GA 30301" +229935,Lightning Charging Cable,1,14.95,07/22/19 10:11,"477 Adams St, Portland, OR 97035" +229936,Wired Headphones,1,11.99,07/24/19 21:18,"244 Elm St, Los Angeles, CA 90001" +229937,Wired Headphones,1,11.99,07/20/19 22:24,"996 Park St, San Francisco, CA 94016" +229938,27in 4K Gaming Monitor,1,389.99,07/08/19 12:56,"199 Lakeview St, San Francisco, CA 94016" +229939,27in 4K Gaming Monitor,1,389.99,07/15/19 20:12,"195 Main St, Boston, MA 02215" +229940,Bose SoundSport Headphones,1,99.99,07/24/19 10:45,"659 Main St, Seattle, WA 98101" +229941,Bose SoundSport Headphones,1,99.99,07/01/19 17:45,"171 9th St, Los Angeles, CA 90001" +229942,USB-C Charging Cable,1,11.95,07/18/19 11:14,"7 Washington St, Seattle, WA 98101" +229943,Apple Airpods Headphones,1,150,07/07/19 18:42,"920 7th St, San Francisco, CA 94016" +229944,iPhone,1,700,07/13/19 16:52,"926 South St, San Francisco, CA 94016" +229944,Lightning Charging Cable,1,14.95,07/13/19 16:52,"926 South St, San Francisco, CA 94016" +229945,Bose SoundSport Headphones,1,99.99,07/09/19 09:55,"607 Adams St, Atlanta, GA 30301" +229946,USB-C Charging Cable,1,11.95,07/07/19 12:36,"939 Ridge St, San Francisco, CA 94016" +229947,34in Ultrawide Monitor,1,379.99,07/08/19 13:46,"482 10th St, Atlanta, GA 30301" +229948,27in 4K Gaming Monitor,1,389.99,07/09/19 23:34,"500 Spruce St, Seattle, WA 98101" +229949,Wired Headphones,1,11.99,07/18/19 17:52,"58 Highland St, San Francisco, CA 94016" +229950,Lightning Charging Cable,1,14.95,07/14/19 10:45,"604 10th St, San Francisco, CA 94016" +229951,USB-C Charging Cable,1,11.95,07/06/19 11:45,"441 Jefferson St, Seattle, WA 98101" +229952,iPhone,1,700,07/07/19 15:05,"901 Meadow St, Austin, TX 73301" +229952,Lightning Charging Cable,1,14.95,07/07/19 15:05,"901 Meadow St, Austin, TX 73301" +229953,AAA Batteries (4-pack),1,2.99,07/13/19 11:35,"822 Hickory St, San Francisco, CA 94016" +229954,AA Batteries (4-pack),3,3.84,07/27/19 11:11,"402 Park St, Boston, MA 02215" +229955,20in Monitor,1,109.99,07/14/19 22:05,"565 Ridge St, Atlanta, GA 30301" +229956,LG Dryer,1,600.0,07/11/19 20:15,"756 Hickory St, Seattle, WA 98101" +229957,iPhone,1,700,07/21/19 18:59,"21 Hickory St, Dallas, TX 75001" +229958,Apple Airpods Headphones,1,150,07/04/19 09:15,"658 Elm St, Dallas, TX 75001" +229959,iPhone,1,700,07/25/19 15:59,"116 River St, San Francisco, CA 94016" +229959,Lightning Charging Cable,1,14.95,07/25/19 15:59,"116 River St, San Francisco, CA 94016" +229960,AA Batteries (4-pack),1,3.84,07/11/19 07:42,"642 13th St, New York City, NY 10001" +229961,AA Batteries (4-pack),1,3.84,07/17/19 22:38,"874 Sunset St, Dallas, TX 75001" +229962,USB-C Charging Cable,1,11.95,07/21/19 14:06,"840 Maple St, New York City, NY 10001" +229963,Apple Airpods Headphones,1,150,07/22/19 22:36,"969 River St, Atlanta, GA 30301" +229964,20in Monitor,1,109.99,07/26/19 00:22,"436 West St, Austin, TX 73301" +229965,Apple Airpods Headphones,1,150,07/27/19 14:19,"972 Ridge St, New York City, NY 10001" +229966,Wired Headphones,1,11.99,07/07/19 16:42,"890 9th St, San Francisco, CA 94016" +229967,AAA Batteries (4-pack),1,2.99,07/18/19 12:28,"998 Highland St, Los Angeles, CA 90001" +229968,27in FHD Monitor,1,149.99,07/14/19 21:12,"27 Sunset St, Los Angeles, CA 90001" +,,,,, +229969,Lightning Charging Cable,1,14.95,07/15/19 13:50,"51 Maple St, Austin, TX 73301" +229970,Lightning Charging Cable,1,14.95,07/12/19 19:55,"337 5th St, Los Angeles, CA 90001" +229971,iPhone,1,700,07/16/19 19:00,"824 10th St, Boston, MA 02215" +229971,Apple Airpods Headphones,1,150,07/16/19 19:00,"824 10th St, Boston, MA 02215" +229972,USB-C Charging Cable,1,11.95,07/25/19 14:15,"935 Hill St, Atlanta, GA 30301" +229973,AAA Batteries (4-pack),1,2.99,07/20/19 14:16,"490 Center St, Atlanta, GA 30301" +229974,AAA Batteries (4-pack),1,2.99,07/13/19 00:48,"179 Maple St, Atlanta, GA 30301" +229975,USB-C Charging Cable,1,11.95,07/15/19 12:15,"864 Church St, Seattle, WA 98101" +229976,AA Batteries (4-pack),1,3.84,07/13/19 13:01,"758 Maple St, Los Angeles, CA 90001" +229977,USB-C Charging Cable,1,11.95,07/20/19 20:43,"801 Walnut St, Austin, TX 73301" +229978,Bose SoundSport Headphones,1,99.99,07/02/19 18:10,"677 Center St, Los Angeles, CA 90001" +229979,AAA Batteries (4-pack),2,2.99,07/20/19 18:49,"866 5th St, Dallas, TX 75001" +229980,27in FHD Monitor,1,149.99,07/31/19 16:28,"600 5th St, Los Angeles, CA 90001" +229981,Apple Airpods Headphones,1,150,07/14/19 17:44,"577 Jackson St, Dallas, TX 75001" +229982,ThinkPad Laptop,1,999.99,07/28/19 16:31,"611 Lincoln St, Dallas, TX 75001" +229983,Apple Airpods Headphones,1,150,07/20/19 19:36,"16 6th St, Seattle, WA 98101" +229984,20in Monitor,1,109.99,07/25/19 14:27,"452 6th St, San Francisco, CA 94016" +229985,Lightning Charging Cable,1,14.95,07/09/19 22:17,"363 Forest St, Seattle, WA 98101" +229986,20in Monitor,1,109.99,07/14/19 14:01,"565 Highland St, San Francisco, CA 94016" +229987,AA Batteries (4-pack),1,3.84,07/07/19 01:12,"585 Pine St, Austin, TX 73301" +229988,27in 4K Gaming Monitor,1,389.99,07/01/19 23:13,"709 Spruce St, Seattle, WA 98101" +229989,34in Ultrawide Monitor,1,379.99,07/10/19 00:36,"863 Ridge St, Boston, MA 02215" +229990,AAA Batteries (4-pack),1,2.99,07/01/19 09:29,"47 Church St, New York City, NY 10001" +229991,Lightning Charging Cable,1,14.95,07/30/19 19:31,"679 River St, San Francisco, CA 94016" +229992,USB-C Charging Cable,1,11.95,07/17/19 13:03,"132 Cedar St, Seattle, WA 98101" +229993,Wired Headphones,1,11.99,07/12/19 23:30,"360 Center St, Dallas, TX 75001" +229994,Lightning Charging Cable,1,14.95,07/12/19 21:55,"402 Sunset St, Dallas, TX 75001" +229995,Apple Airpods Headphones,1,150,07/29/19 09:47,"99 North St, Seattle, WA 98101" +229996,AAA Batteries (4-pack),1,2.99,07/12/19 13:07,"818 8th St, Atlanta, GA 30301" +229997,Wired Headphones,1,11.99,07/08/19 09:45,"420 Spruce St, San Francisco, CA 94016" +229998,Wired Headphones,1,11.99,07/22/19 16:37,"171 Madison St, San Francisco, CA 94016" +229999,Flatscreen TV,1,300,07/29/19 21:36,"854 Highland St, Portland, ME 04101" +230000,Lightning Charging Cable,1,14.95,07/02/19 16:17,"534 South St, Boston, MA 02215" +230001,iPhone,1,700,07/05/19 12:47,"749 Hickory St, Boston, MA 02215" +230002,Apple Airpods Headphones,1,150,07/22/19 18:19,"644 Spruce St, San Francisco, CA 94016" +230003,AA Batteries (4-pack),3,3.84,07/15/19 18:23,"262 Chestnut St, San Francisco, CA 94016" +230004,27in 4K Gaming Monitor,1,389.99,07/30/19 08:34,"769 Lincoln St, San Francisco, CA 94016" +230005,Wired Headphones,1,11.99,07/03/19 16:57,"757 Park St, San Francisco, CA 94016" +230006,iPhone,1,700,07/06/19 18:33,"251 Johnson St, San Francisco, CA 94016" +230007,Wired Headphones,3,11.99,07/22/19 08:32,"350 Walnut St, Los Angeles, CA 90001" +230008,Bose SoundSport Headphones,1,99.99,07/25/19 09:45,"360 Lakeview St, Portland, OR 97035" +230009,iPhone,1,700,07/13/19 00:44,"74 Church St, San Francisco, CA 94016" +230009,Lightning Charging Cable,1,14.95,07/13/19 00:44,"74 Church St, San Francisco, CA 94016" +230010,AAA Batteries (4-pack),2,2.99,07/03/19 20:50,"667 Walnut St, Dallas, TX 75001" +,,,,, +230011,ThinkPad Laptop,1,999.99,07/20/19 23:09,"569 10th St, Portland, ME 04101" +230012,AAA Batteries (4-pack),1,2.99,07/31/19 19:08,"705 8th St, Los Angeles, CA 90001" +230013,Macbook Pro Laptop,1,1700,07/26/19 04:26,"331 Chestnut St, San Francisco, CA 94016" +230014,AA Batteries (4-pack),1,3.84,07/11/19 01:52,"997 Sunset St, San Francisco, CA 94016" +230015,AAA Batteries (4-pack),1,2.99,07/03/19 21:27,"485 11th St, San Francisco, CA 94016" +230016,AA Batteries (4-pack),1,3.84,07/19/19 10:25,"204 Ridge St, Los Angeles, CA 90001" +230017,USB-C Charging Cable,1,11.95,07/07/19 10:50,"571 Center St, Los Angeles, CA 90001" +230018,Lightning Charging Cable,1,14.95,07/11/19 16:37,"518 River St, Dallas, TX 75001" +230019,Bose SoundSport Headphones,2,99.99,07/31/19 13:26,"343 Pine St, Los Angeles, CA 90001" +230020,Bose SoundSport Headphones,1,99.99,07/08/19 13:59,"718 2nd St, Boston, MA 02215" +230021,Bose SoundSport Headphones,1,99.99,07/19/19 17:10,"691 Hickory St, Portland, ME 04101" +230021,Macbook Pro Laptop,1,1700,07/19/19 17:10,"691 Hickory St, Portland, ME 04101" +230022,AAA Batteries (4-pack),1,2.99,07/13/19 18:55,"901 7th St, Los Angeles, CA 90001" +230023,Lightning Charging Cable,1,14.95,07/01/19 13:16,"295 Highland St, Dallas, TX 75001" +230024,Google Phone,1,600,07/12/19 12:00,"755 Washington St, Austin, TX 73301" +230025,AAA Batteries (4-pack),1,2.99,07/02/19 21:00,"866 7th St, Los Angeles, CA 90001" +230026,Apple Airpods Headphones,1,150,07/18/19 22:48,"472 Meadow St, Los Angeles, CA 90001" +230027,AAA Batteries (4-pack),3,2.99,07/07/19 09:18,"539 2nd St, San Francisco, CA 94016" +230027,Macbook Pro Laptop,1,1700,07/07/19 09:18,"539 2nd St, San Francisco, CA 94016" +230028,AA Batteries (4-pack),1,3.84,07/28/19 17:05,"784 Park St, Dallas, TX 75001" +230029,AA Batteries (4-pack),1,3.84,07/27/19 12:52,"262 Lincoln St, Los Angeles, CA 90001" +230030,Flatscreen TV,1,300,07/23/19 09:37,"627 14th St, Atlanta, GA 30301" +230031,Wired Headphones,1,11.99,07/14/19 17:57,"421 Lincoln St, New York City, NY 10001" +230031,Apple Airpods Headphones,1,150,07/14/19 17:57,"421 Lincoln St, New York City, NY 10001" +230032,Apple Airpods Headphones,1,150,07/29/19 01:01,"126 Ridge St, Boston, MA 02215" +230033,Apple Airpods Headphones,1,150,07/08/19 13:47,"732 Wilson St, Los Angeles, CA 90001" +230034,Apple Airpods Headphones,1,150,07/24/19 22:11,"306 2nd St, Portland, OR 97035" +230035,USB-C Charging Cable,1,11.95,07/18/19 07:49,"566 12th St, Portland, OR 97035" +230036,AA Batteries (4-pack),1,3.84,07/05/19 17:51,"594 Hill St, Boston, MA 02215" +230037,Wired Headphones,1,11.99,07/04/19 12:54,"750 Jefferson St, Dallas, TX 75001" +230038,34in Ultrawide Monitor,1,379.99,07/20/19 14:48,"545 14th St, Dallas, TX 75001" +230039,USB-C Charging Cable,1,11.95,07/06/19 23:22,"910 12th St, Boston, MA 02215" +230040,USB-C Charging Cable,1,11.95,07/14/19 16:42,"717 4th St, Seattle, WA 98101" +230041,AAA Batteries (4-pack),1,2.99,07/23/19 19:12,"733 Lake St, Austin, TX 73301" +230042,Wired Headphones,1,11.99,07/17/19 09:34,"334 Adams St, Los Angeles, CA 90001" +230043,Flatscreen TV,1,300,07/30/19 18:05,"617 Maple St, Los Angeles, CA 90001" +230044,Bose SoundSport Headphones,1,99.99,07/08/19 12:15,"999 10th St, Austin, TX 73301" +230045,AAA Batteries (4-pack),1,2.99,07/11/19 20:55,"158 Adams St, San Francisco, CA 94016" +230046,Flatscreen TV,1,300,07/21/19 10:47,"805 Pine St, San Francisco, CA 94016" +230047,Wired Headphones,1,11.99,07/31/19 17:32,"262 Cherry St, Boston, MA 02215" +230048,Google Phone,1,600,07/01/19 13:40,"142 Jackson St, Boston, MA 02215" +230049,Bose SoundSport Headphones,1,99.99,07/29/19 16:25,"689 Lake St, Austin, TX 73301" +230050,Apple Airpods Headphones,1,150,07/05/19 15:53,"292 Elm St, Los Angeles, CA 90001" +230051,Bose SoundSport Headphones,1,99.99,07/16/19 02:59,"177 Main St, Boston, MA 02215" +230052,AAA Batteries (4-pack),1,2.99,07/25/19 12:15,"507 Willow St, New York City, NY 10001" +230053,Wired Headphones,1,11.99,07/10/19 15:04,"549 Jackson St, Boston, MA 02215" +230054,USB-C Charging Cable,1,11.95,07/21/19 22:04,"961 Lakeview St, New York City, NY 10001" +230055,AAA Batteries (4-pack),3,2.99,07/17/19 10:48,"38 Ridge St, Los Angeles, CA 90001" +230056,Lightning Charging Cable,1,14.95,07/22/19 12:55,"146 Pine St, San Francisco, CA 94016" +230057,Wired Headphones,1,11.99,07/09/19 12:46,"404 Pine St, Seattle, WA 98101" +230058,34in Ultrawide Monitor,1,379.99,07/21/19 09:09,"81 5th St, Los Angeles, CA 90001" +230059,AAA Batteries (4-pack),2,2.99,07/21/19 13:46,"698 Lake St, San Francisco, CA 94016" +230060,AAA Batteries (4-pack),1,2.99,07/23/19 04:10,"228 Cedar St, San Francisco, CA 94016" +230061,Lightning Charging Cable,1,14.95,07/19/19 18:47,"678 Pine St, Seattle, WA 98101" +230062,Wired Headphones,1,11.99,07/12/19 14:41,"458 Highland St, Los Angeles, CA 90001" +230063,Google Phone,1,600,07/04/19 18:41,"49 4th St, San Francisco, CA 94016" +230064,Apple Airpods Headphones,1,150,07/19/19 15:47,"695 Ridge St, New York City, NY 10001" +230065,Apple Airpods Headphones,1,150,07/13/19 02:14,"435 Lake St, Atlanta, GA 30301" +230066,Bose SoundSport Headphones,1,99.99,07/20/19 11:29,"311 8th St, Atlanta, GA 30301" +230067,Apple Airpods Headphones,1,150,07/11/19 14:39,"285 Sunset St, Seattle, WA 98101" +230068,27in 4K Gaming Monitor,1,389.99,07/05/19 09:57,"693 Johnson St, New York City, NY 10001" +230069,Lightning Charging Cable,1,14.95,07/21/19 20:18,"784 Ridge St, Dallas, TX 75001" +230070,AA Batteries (4-pack),1,3.84,07/11/19 07:20,"788 Church St, Atlanta, GA 30301" +230071,Wired Headphones,1,11.99,07/21/19 09:41,"727 10th St, Seattle, WA 98101" +230072,Wired Headphones,1,11.99,07/25/19 19:38,"675 Jefferson St, San Francisco, CA 94016" +230073,AA Batteries (4-pack),1,3.84,07/29/19 22:15,"811 Dogwood St, Los Angeles, CA 90001" +230074,Wired Headphones,2,11.99,07/01/19 18:31,"977 West St, Boston, MA 02215" +230075,Lightning Charging Cable,1,14.95,07/25/19 10:08,"615 Lake St, Los Angeles, CA 90001" +230076,Bose SoundSport Headphones,1,99.99,07/06/19 00:35,"793 Lake St, Atlanta, GA 30301" +230077,AAA Batteries (4-pack),2,2.99,07/04/19 13:46,"319 Pine St, New York City, NY 10001" +230078,Google Phone,1,600,07/26/19 14:46,"494 6th St, Atlanta, GA 30301" +230079,Lightning Charging Cable,1,14.95,07/31/19 14:57,"324 12th St, San Francisco, CA 94016" +230080,AAA Batteries (4-pack),1,2.99,07/22/19 00:35,"61 Washington St, San Francisco, CA 94016" +230081,27in FHD Monitor,1,149.99,07/16/19 07:36,"160 Highland St, San Francisco, CA 94016" +230082,Macbook Pro Laptop,1,1700,07/12/19 23:25,"335 1st St, San Francisco, CA 94016" +230083,27in 4K Gaming Monitor,1,389.99,07/21/19 15:31,"774 Hickory St, Boston, MA 02215" +230084,Flatscreen TV,1,300,07/25/19 21:53,"208 Maple St, Los Angeles, CA 90001" +230085,ThinkPad Laptop,1,999.99,07/04/19 08:59,"81 11th St, Seattle, WA 98101" +230086,Apple Airpods Headphones,1,150,07/25/19 07:02,"287 Meadow St, Austin, TX 73301" +230087,27in 4K Gaming Monitor,1,389.99,07/31/19 21:04,"145 Lincoln St, Los Angeles, CA 90001" +230088,USB-C Charging Cable,1,11.95,07/14/19 19:15,"528 Ridge St, Boston, MA 02215" +230089,USB-C Charging Cable,1,11.95,07/20/19 23:17,"919 Highland St, Dallas, TX 75001" +230090,Google Phone,1,600,07/22/19 20:53,"382 6th St, Atlanta, GA 30301" +230091,Apple Airpods Headphones,1,150,07/20/19 14:31,"732 Cedar St, Boston, MA 02215" +230092,Bose SoundSport Headphones,1,99.99,07/14/19 09:01,"180 Sunset St, Los Angeles, CA 90001" +230093,Wired Headphones,1,11.99,07/13/19 16:19,"414 8th St, New York City, NY 10001" +230094,Google Phone,1,600,07/19/19 15:35,"352 Park St, Seattle, WA 98101" +230095,Bose SoundSport Headphones,1,99.99,07/17/19 18:16,"439 Park St, Portland, OR 97035" +230096,Wired Headphones,1,11.99,07/11/19 14:56,"655 South St, Seattle, WA 98101" +230097,Wired Headphones,1,11.99,07/13/19 17:07,"272 Main St, Boston, MA 02215" +230098,AA Batteries (4-pack),1,3.84,07/29/19 23:07,"779 Lake St, Los Angeles, CA 90001" +230099,20in Monitor,1,109.99,07/27/19 19:55,"611 11th St, Los Angeles, CA 90001" +230100,Bose SoundSport Headphones,1,99.99,07/14/19 09:33,"728 8th St, Seattle, WA 98101" +230101,Lightning Charging Cable,1,14.95,07/07/19 19:42,"211 Lakeview St, Boston, MA 02215" +230102,Bose SoundSport Headphones,1,99.99,07/23/19 10:29,"912 Highland St, Boston, MA 02215" +230103,27in FHD Monitor,1,149.99,07/16/19 12:19,"24 1st St, Seattle, WA 98101" +230104,Bose SoundSport Headphones,1,99.99,07/14/19 19:50,"316 Walnut St, San Francisco, CA 94016" +230105,Bose SoundSport Headphones,1,99.99,07/10/19 16:57,"862 11th St, Los Angeles, CA 90001" +230106,Flatscreen TV,1,300,07/04/19 21:43,"357 Dogwood St, Boston, MA 02215" +230107,USB-C Charging Cable,1,11.95,07/04/19 17:17,"112 West St, Boston, MA 02215" +230108,iPhone,1,700,07/17/19 20:10,"307 Cedar St, Portland, ME 04101" +230109,AAA Batteries (4-pack),1,2.99,07/25/19 02:12,"391 Forest St, San Francisco, CA 94016" +230110,AA Batteries (4-pack),1,3.84,07/27/19 22:46,"824 West St, Boston, MA 02215" +230111,USB-C Charging Cable,1,11.95,07/28/19 22:00,"338 Jefferson St, Atlanta, GA 30301" +230112,AA Batteries (4-pack),2,3.84,07/29/19 18:28,"113 Johnson St, Seattle, WA 98101" +230113,Bose SoundSport Headphones,1,99.99,07/12/19 10:19,"332 Chestnut St, Dallas, TX 75001" +230114,Lightning Charging Cable,1,14.95,07/30/19 10:16,"738 11th St, Los Angeles, CA 90001" +230115,AAA Batteries (4-pack),1,2.99,07/30/19 19:54,"646 Lake St, Los Angeles, CA 90001" +230116,AAA Batteries (4-pack),1,2.99,07/14/19 18:36,"68 Elm St, Atlanta, GA 30301" +230117,Macbook Pro Laptop,1,1700,07/29/19 14:37,"863 Jefferson St, San Francisco, CA 94016" +230118,Lightning Charging Cable,1,14.95,07/17/19 15:31,"904 Lakeview St, San Francisco, CA 94016" +230119,Lightning Charging Cable,1,14.95,07/13/19 17:25,"870 South St, San Francisco, CA 94016" +230120,AAA Batteries (4-pack),1,2.99,07/19/19 19:00,"991 Johnson St, New York City, NY 10001" +230121,Bose SoundSport Headphones,1,99.99,07/22/19 16:32,"314 14th St, San Francisco, CA 94016" +230122,Wired Headphones,1,11.99,07/11/19 16:30,"839 Lake St, Boston, MA 02215" +230123,AAA Batteries (4-pack),1,2.99,07/15/19 14:38,"373 Church St, Dallas, TX 75001" +230124,Lightning Charging Cable,1,14.95,07/17/19 11:59,"380 Park St, Portland, OR 97035" +230125,Apple Airpods Headphones,1,150,07/31/19 10:49,"624 North St, San Francisco, CA 94016" +230126,USB-C Charging Cable,2,11.95,07/21/19 19:22,"439 7th St, Atlanta, GA 30301" +230127,AAA Batteries (4-pack),1,2.99,07/02/19 10:43,"136 12th St, San Francisco, CA 94016" +230128,Lightning Charging Cable,1,14.95,07/03/19 17:18,"522 Meadow St, Atlanta, GA 30301" +230129,Wired Headphones,1,11.99,07/19/19 11:21,"45 13th St, Los Angeles, CA 90001" +230130,Apple Airpods Headphones,1,150,07/26/19 16:51,"830 1st St, Boston, MA 02215" +230131,27in FHD Monitor,1,149.99,07/05/19 00:05,"698 Chestnut St, Los Angeles, CA 90001" +230132,27in FHD Monitor,1,149.99,07/12/19 22:29,"773 River St, San Francisco, CA 94016" +230133,27in 4K Gaming Monitor,1,389.99,07/23/19 16:37,"939 Adams St, San Francisco, CA 94016" +230134,AA Batteries (4-pack),1,3.84,07/17/19 11:24,"399 West St, Los Angeles, CA 90001" +230135,Vareebadd Phone,1,400,07/02/19 14:50,"48 6th St, Los Angeles, CA 90001" +230135,Bose SoundSport Headphones,1,99.99,07/02/19 14:50,"48 6th St, Los Angeles, CA 90001" +230136,AA Batteries (4-pack),1,3.84,07/26/19 15:49,"856 Cedar St, San Francisco, CA 94016" +230137,iPhone,1,700,07/29/19 17:01,"668 10th St, San Francisco, CA 94016" +230138,34in Ultrawide Monitor,1,379.99,07/16/19 16:14,"19 Center St, Los Angeles, CA 90001" +230139,Wired Headphones,1,11.99,07/30/19 22:03,"727 Highland St, Los Angeles, CA 90001" +230140,ThinkPad Laptop,1,999.99,07/22/19 11:50,"660 Park St, Portland, OR 97035" +230141,USB-C Charging Cable,1,11.95,07/06/19 10:57,"75 West St, Dallas, TX 75001" +230142,AA Batteries (4-pack),2,3.84,07/26/19 16:31,"158 Madison St, San Francisco, CA 94016" +230143,Bose SoundSport Headphones,1,99.99,07/23/19 18:11,"111 Sunset St, San Francisco, CA 94016" +230144,20in Monitor,1,109.99,07/14/19 09:35,"4 Sunset St, Boston, MA 02215" +230145,Apple Airpods Headphones,1,150,07/14/19 22:11,"685 Adams St, New York City, NY 10001" +230146,Wired Headphones,1,11.99,07/30/19 20:56,"845 10th St, San Francisco, CA 94016" +230147,Bose SoundSport Headphones,1,99.99,07/14/19 12:09,"453 13th St, San Francisco, CA 94016" +230148,Bose SoundSport Headphones,1,99.99,07/04/19 12:47,"160 Adams St, Seattle, WA 98101" +230149,ThinkPad Laptop,1,999.99,07/22/19 11:02,"641 12th St, San Francisco, CA 94016" +230150,Lightning Charging Cable,1,14.95,07/24/19 17:23,"567 Hickory St, New York City, NY 10001" +230151,34in Ultrawide Monitor,1,379.99,07/14/19 21:22,"451 Main St, San Francisco, CA 94016" +230151,AAA Batteries (4-pack),1,2.99,07/14/19 21:22,"451 Main St, San Francisco, CA 94016" +230152,34in Ultrawide Monitor,1,379.99,07/05/19 15:14,"944 12th St, San Francisco, CA 94016" +230153,27in 4K Gaming Monitor,1,389.99,07/02/19 16:39,"691 Lincoln St, Portland, ME 04101" +230154,Bose SoundSport Headphones,1,99.99,07/10/19 14:21,"992 North St, San Francisco, CA 94016" +230155,34in Ultrawide Monitor,1,379.99,07/06/19 20:54,"605 Sunset St, Seattle, WA 98101" +230156,iPhone,1,700,07/17/19 09:37,"898 Lake St, New York City, NY 10001" +230157,USB-C Charging Cable,1,11.95,07/27/19 13:26,"144 Madison St, Portland, OR 97035" +230158,USB-C Charging Cable,1,11.95,07/28/19 18:54,"480 South St, San Francisco, CA 94016" +230159,Lightning Charging Cable,1,14.95,07/06/19 11:42,"421 1st St, Seattle, WA 98101" +230160,Apple Airpods Headphones,1,150,07/01/19 23:18,"954 Elm St, San Francisco, CA 94016" +230161,Wired Headphones,1,11.99,07/24/19 13:33,"992 8th St, Atlanta, GA 30301" +230162,Lightning Charging Cable,1,14.95,07/10/19 19:17,"309 13th St, Atlanta, GA 30301" +230163,27in FHD Monitor,1,149.99,07/24/19 20:23,"33 Lincoln St, San Francisco, CA 94016" +230164,Bose SoundSport Headphones,1,99.99,07/18/19 21:42,"653 2nd St, San Francisco, CA 94016" +230165,USB-C Charging Cable,1,11.95,07/09/19 22:58,"268 7th St, Boston, MA 02215" +230166,AAA Batteries (4-pack),2,2.99,07/21/19 13:06,"472 Church St, New York City, NY 10001" +230167,iPhone,1,700,07/01/19 10:58,"294 Church St, New York City, NY 10001" +230168,Apple Airpods Headphones,1,150,07/23/19 14:57,"470 4th St, Portland, OR 97035" +230169,Wired Headphones,2,11.99,07/18/19 18:16,"213 Lakeview St, San Francisco, CA 94016" +230170,Bose SoundSport Headphones,2,99.99,07/10/19 11:57,"775 Hickory St, Atlanta, GA 30301" +230171,27in 4K Gaming Monitor,1,389.99,07/13/19 15:51,"550 4th St, New York City, NY 10001" +230172,AAA Batteries (4-pack),1,2.99,07/29/19 19:10,"668 River St, Dallas, TX 75001" +230173,Lightning Charging Cable,1,14.95,07/25/19 13:55,"595 Jefferson St, Atlanta, GA 30301" +230174,Lightning Charging Cable,1,14.95,07/23/19 23:52,"783 Cherry St, New York City, NY 10001" +230175,LG Washing Machine,1,600.0,07/30/19 13:32,"456 Chestnut St, New York City, NY 10001" +230176,Google Phone,1,600,07/04/19 15:59,"398 Lincoln St, Dallas, TX 75001" +230177,Google Phone,1,600,07/21/19 08:38,"572 Sunset St, Atlanta, GA 30301" +230177,34in Ultrawide Monitor,1,379.99,07/21/19 08:38,"572 Sunset St, Atlanta, GA 30301" +230178,USB-C Charging Cable,1,11.95,07/16/19 16:40,"81 Madison St, Atlanta, GA 30301" +230179,Wired Headphones,1,11.99,07/04/19 22:40,"875 Willow St, San Francisco, CA 94016" +230180,USB-C Charging Cable,1,11.95,07/19/19 22:31,"603 10th St, Seattle, WA 98101" +230181,Wired Headphones,1,11.99,07/25/19 01:06,"867 Johnson St, Austin, TX 73301" +230182,AAA Batteries (4-pack),2,2.99,07/23/19 19:52,"792 Washington St, San Francisco, CA 94016" +230183,iPhone,1,700,07/20/19 12:43,"856 Hickory St, San Francisco, CA 94016" +230183,Apple Airpods Headphones,1,150,07/20/19 12:43,"856 Hickory St, San Francisco, CA 94016" +230184,Apple Airpods Headphones,1,150,07/08/19 10:49,"637 5th St, Portland, OR 97035" +230185,Apple Airpods Headphones,1,150,07/07/19 12:08,"762 Lakeview St, Seattle, WA 98101" +230186,ThinkPad Laptop,1,999.99,07/03/19 08:43,"296 10th St, Austin, TX 73301" +230187,AAA Batteries (4-pack),3,2.99,07/07/19 22:07,"361 Chestnut St, New York City, NY 10001" +230188,USB-C Charging Cable,1,11.95,07/25/19 21:01,"775 Lake St, Boston, MA 02215" +230189,Lightning Charging Cable,1,14.95,07/10/19 23:48,"420 River St, Los Angeles, CA 90001" +230190,AAA Batteries (4-pack),1,2.99,07/26/19 17:17,"130 10th St, New York City, NY 10001" +230191,USB-C Charging Cable,1,11.95,07/29/19 22:57,"287 Madison St, Boston, MA 02215" +230192,34in Ultrawide Monitor,1,379.99,07/01/19 19:10,"977 Park St, Boston, MA 02215" +230193,AAA Batteries (4-pack),1,2.99,07/31/19 01:49,"165 9th St, New York City, NY 10001" +230194,Macbook Pro Laptop,1,1700,07/27/19 14:58,"473 8th St, Atlanta, GA 30301" +230195,Apple Airpods Headphones,1,150,07/25/19 11:17,"168 Pine St, Atlanta, GA 30301" +230196,ThinkPad Laptop,1,999.99,07/18/19 19:32,"252 7th St, San Francisco, CA 94016" +230197,AAA Batteries (4-pack),1,2.99,07/02/19 09:07,"266 6th St, Los Angeles, CA 90001" +230198,Lightning Charging Cable,1,14.95,07/27/19 14:38,"165 Cherry St, Dallas, TX 75001" +230199,AAA Batteries (4-pack),1,2.99,07/11/19 16:13,"85 Hill St, San Francisco, CA 94016" +230200,27in FHD Monitor,1,149.99,07/22/19 16:40,"45 8th St, Boston, MA 02215" +230201,Apple Airpods Headphones,1,150,07/12/19 22:35,"822 Pine St, Atlanta, GA 30301" +230202,27in FHD Monitor,1,149.99,07/30/19 21:54,"534 Johnson St, Los Angeles, CA 90001" +230203,Apple Airpods Headphones,1,150,07/25/19 19:25,"120 11th St, Los Angeles, CA 90001" +230204,27in FHD Monitor,1,149.99,07/28/19 07:18,"233 Pine St, Portland, OR 97035" +230205,Macbook Pro Laptop,1,1700,07/27/19 21:55,"114 Willow St, Austin, TX 73301" +230206,27in FHD Monitor,1,149.99,07/04/19 17:27,"933 Cedar St, Boston, MA 02215" +230207,Google Phone,1,600,07/15/19 05:01,"709 Hill St, Portland, ME 04101" +230208,USB-C Charging Cable,1,11.95,07/01/19 14:11,"90 11th St, San Francisco, CA 94016" +230209,USB-C Charging Cable,2,11.95,07/10/19 18:51,"481 West St, San Francisco, CA 94016" +230210,27in FHD Monitor,1,149.99,07/09/19 19:16,"124 Walnut St, San Francisco, CA 94016" +230211,27in FHD Monitor,1,149.99,07/17/19 17:46,"950 Cedar St, San Francisco, CA 94016" +230212,Google Phone,1,600,07/05/19 11:13,"642 River St, New York City, NY 10001" +230213,AA Batteries (4-pack),1,3.84,07/07/19 12:08,"987 6th St, New York City, NY 10001" +230214,Lightning Charging Cable,1,14.95,07/07/19 09:36,"674 Cherry St, Atlanta, GA 30301" +230215,USB-C Charging Cable,2,11.95,07/20/19 20:05,"477 Sunset St, New York City, NY 10001" +230216,AAA Batteries (4-pack),1,2.99,07/30/19 22:40,"548 Main St, Portland, OR 97035" +230217,ThinkPad Laptop,1,999.99,07/21/19 16:35,"628 Main St, New York City, NY 10001" +230218,iPhone,1,700,07/26/19 12:23,"382 Washington St, San Francisco, CA 94016" +230219,Macbook Pro Laptop,1,1700,07/30/19 19:53,"689 Elm St, New York City, NY 10001" +230220,Macbook Pro Laptop,1,1700,07/31/19 17:03,"401 8th St, San Francisco, CA 94016" +230221,Lightning Charging Cable,1,14.95,07/17/19 09:13,"909 Sunset St, New York City, NY 10001" +230222,Flatscreen TV,1,300,07/17/19 16:40,"419 Walnut St, New York City, NY 10001" +230223,Wired Headphones,1,11.99,07/02/19 19:00,"110 6th St, San Francisco, CA 94016" +230224,Macbook Pro Laptop,1,1700,07/10/19 23:19,"409 Madison St, San Francisco, CA 94016" +230225,AAA Batteries (4-pack),1,2.99,07/07/19 17:25,"800 8th St, Boston, MA 02215" +230226,Apple Airpods Headphones,1,150,07/10/19 22:44,"431 5th St, Seattle, WA 98101" +230227,Apple Airpods Headphones,1,150,07/15/19 17:57,"138 4th St, New York City, NY 10001" +230228,Wired Headphones,1,11.99,07/13/19 21:40,"674 River St, Boston, MA 02215" +230229,ThinkPad Laptop,1,999.99,07/12/19 22:28,"306 Chestnut St, Los Angeles, CA 90001" +230230,Lightning Charging Cable,1,14.95,07/25/19 14:10,"373 Church St, San Francisco, CA 94016" +230231,AA Batteries (4-pack),1,3.84,07/10/19 18:36,"23 North St, Atlanta, GA 30301" +230232,Google Phone,1,600,07/09/19 19:56,"528 Church St, Dallas, TX 75001" +230233,Bose SoundSport Headphones,1,99.99,07/01/19 23:02,"76 Hill St, Portland, OR 97035" +230234,27in FHD Monitor,1,149.99,07/10/19 11:24,"817 Pine St, Boston, MA 02215" +230235,Lightning Charging Cable,1,14.95,07/27/19 11:56,"948 Jefferson St, San Francisco, CA 94016" +230236,Wired Headphones,1,11.99,07/01/19 12:01,"784 Pine St, Atlanta, GA 30301" +230237,USB-C Charging Cable,1,11.95,07/06/19 06:04,"684 Adams St, San Francisco, CA 94016" +230238,Bose SoundSport Headphones,1,99.99,07/23/19 11:26,"83 Ridge St, Los Angeles, CA 90001" +230239,AA Batteries (4-pack),1,3.84,07/05/19 07:54,"664 4th St, Boston, MA 02215" +230240,Wired Headphones,1,11.99,07/05/19 19:24,"913 Lincoln St, Dallas, TX 75001" +230241,AAA Batteries (4-pack),1,2.99,07/30/19 18:41,"253 Cherry St, Boston, MA 02215" +230242,27in 4K Gaming Monitor,1,389.99,07/19/19 21:19,"802 Cedar St, Los Angeles, CA 90001" +230243,Apple Airpods Headphones,1,150,07/12/19 17:19,"609 5th St, Los Angeles, CA 90001" +230244,LG Washing Machine,1,600.0,07/03/19 20:22,"467 North St, Seattle, WA 98101" +230245,AA Batteries (4-pack),2,3.84,07/24/19 21:04,"546 12th St, Los Angeles, CA 90001" +230246,AAA Batteries (4-pack),1,2.99,07/05/19 17:20,"620 North St, Dallas, TX 75001" +230247,AA Batteries (4-pack),1,3.84,07/26/19 21:22,"651 Church St, San Francisco, CA 94016" +230248,AAA Batteries (4-pack),2,2.99,07/25/19 16:12,"751 Hill St, Austin, TX 73301" +230249,AA Batteries (4-pack),1,3.84,07/23/19 08:46,"729 Hill St, Dallas, TX 75001" +230250,Wired Headphones,1,11.99,07/21/19 05:45,"254 Elm St, San Francisco, CA 94016" +230251,Apple Airpods Headphones,1,150,07/28/19 18:53,"949 Main St, San Francisco, CA 94016" +230252,AAA Batteries (4-pack),1,2.99,07/14/19 20:20,"224 Wilson St, Austin, TX 73301" +230253,Apple Airpods Headphones,1,150,07/05/19 22:29,"282 Johnson St, Boston, MA 02215" +230254,USB-C Charging Cable,1,11.95,07/28/19 17:53,"286 Dogwood St, Atlanta, GA 30301" +230255,Wired Headphones,1,11.99,07/23/19 16:23,"17 Elm St, San Francisco, CA 94016" +230256,AAA Batteries (4-pack),1,2.99,07/14/19 05:02,"479 Hickory St, Boston, MA 02215" +230257,27in FHD Monitor,1,149.99,07/09/19 12:01,"274 Center St, Austin, TX 73301" +230258,Wired Headphones,1,11.99,07/28/19 22:19,"464 1st St, Dallas, TX 75001" +230259,27in 4K Gaming Monitor,1,389.99,07/02/19 15:40,"883 Madison St, Boston, MA 02215" +230260,USB-C Charging Cable,1,11.95,07/25/19 14:56,"69 North St, San Francisco, CA 94016" +230261,USB-C Charging Cable,1,11.95,07/30/19 18:29,"20 Maple St, Atlanta, GA 30301" +230262,Lightning Charging Cable,1,14.95,07/12/19 22:45,"354 10th St, Seattle, WA 98101" +230263,AA Batteries (4-pack),3,3.84,07/13/19 22:22,"125 Lincoln St, Los Angeles, CA 90001" +230264,34in Ultrawide Monitor,1,379.99,07/30/19 17:08,"679 7th St, Boston, MA 02215" +230265,Bose SoundSport Headphones,1,99.99,07/31/19 16:02,"844 Lake St, Portland, ME 04101" +230266,27in FHD Monitor,1,149.99,07/04/19 20:37,"433 Maple St, San Francisco, CA 94016" +230267,AA Batteries (4-pack),2,3.84,07/06/19 10:44,"320 South St, New York City, NY 10001" +230268,AAA Batteries (4-pack),4,2.99,07/10/19 13:33,"768 River St, San Francisco, CA 94016" +230269,Lightning Charging Cable,1,14.95,07/28/19 13:46,"613 12th St, San Francisco, CA 94016" +230270,27in FHD Monitor,1,149.99,07/23/19 15:40,"960 West St, New York City, NY 10001" +230271,USB-C Charging Cable,1,11.95,07/16/19 20:36,"342 Sunset St, San Francisco, CA 94016" +230272,34in Ultrawide Monitor,1,379.99,07/05/19 00:06,"282 9th St, Seattle, WA 98101" +230273,USB-C Charging Cable,1,11.95,07/14/19 15:17,"196 Lake St, San Francisco, CA 94016" +230274,USB-C Charging Cable,1,11.95,07/27/19 19:01,"834 Johnson St, Portland, ME 04101" +230275,AAA Batteries (4-pack),1,2.99,07/07/19 14:31,"988 Dogwood St, New York City, NY 10001" +230276,27in FHD Monitor,1,149.99,07/07/19 19:20,"592 Spruce St, San Francisco, CA 94016" +230277,AAA Batteries (4-pack),3,2.99,07/17/19 14:26,"14 Jackson St, Atlanta, GA 30301" +230278,Bose SoundSport Headphones,1,99.99,07/18/19 08:54,"339 Forest St, Boston, MA 02215" +230279,Google Phone,1,600,07/11/19 19:25,"519 8th St, Boston, MA 02215" +230280,AAA Batteries (4-pack),1,2.99,07/05/19 12:27,"118 Lake St, Los Angeles, CA 90001" +230281,Lightning Charging Cable,1,14.95,07/24/19 18:56,"113 Wilson St, Dallas, TX 75001" +230282,Macbook Pro Laptop,1,1700,07/13/19 18:42,"805 Park St, San Francisco, CA 94016" +230283,AA Batteries (4-pack),1,3.84,07/08/19 17:26,"568 Willow St, New York City, NY 10001" +230284,34in Ultrawide Monitor,1,379.99,07/21/19 07:44,"748 Park St, Los Angeles, CA 90001" +230285,AA Batteries (4-pack),3,3.84,07/15/19 21:20,"81 14th St, Los Angeles, CA 90001" +230286,Bose SoundSport Headphones,1,99.99,07/20/19 18:29,"811 Lakeview St, San Francisco, CA 94016" +230287,AA Batteries (4-pack),1,3.84,07/22/19 11:17,"614 12th St, New York City, NY 10001" +230288,Bose SoundSport Headphones,1,99.99,07/05/19 22:00,"401 Washington St, San Francisco, CA 94016" +230289,Bose SoundSport Headphones,1,99.99,07/20/19 01:25,"752 Willow St, Austin, TX 73301" +230290,Apple Airpods Headphones,1,150,07/21/19 10:22,"287 Elm St, Los Angeles, CA 90001" +230291,USB-C Charging Cable,1,11.95,07/19/19 02:24,"534 Jackson St, Dallas, TX 75001" +230292,AA Batteries (4-pack),2,3.84,07/14/19 21:02,"928 11th St, San Francisco, CA 94016" +230293,Wired Headphones,2,11.99,07/16/19 22:16,"609 Park St, Los Angeles, CA 90001" +230294,AAA Batteries (4-pack),2,2.99,07/28/19 14:20,"253 Walnut St, San Francisco, CA 94016" +230295,USB-C Charging Cable,1,11.95,07/23/19 19:43,"516 Highland St, Boston, MA 02215" +230296,Wired Headphones,1,11.99,07/07/19 19:59,"785 Ridge St, San Francisco, CA 94016" +230297,20in Monitor,1,109.99,07/06/19 09:43,"168 Park St, San Francisco, CA 94016" +230298,Wired Headphones,1,11.99,07/03/19 09:30,"419 11th St, Boston, MA 02215" +230299,AAA Batteries (4-pack),2,2.99,07/09/19 18:59,"242 Chestnut St, Boston, MA 02215" +230300,USB-C Charging Cable,1,11.95,07/26/19 16:48,"553 Ridge St, New York City, NY 10001" +230301,AAA Batteries (4-pack),2,2.99,07/29/19 09:33,"526 Main St, San Francisco, CA 94016" +230302,Wired Headphones,1,11.99,07/31/19 18:06,"957 Washington St, New York City, NY 10001" +230303,AAA Batteries (4-pack),1,2.99,07/19/19 20:37,"687 Hill St, New York City, NY 10001" +230304,Wired Headphones,1,11.99,07/07/19 07:46,"141 Maple St, Austin, TX 73301" +230305,Apple Airpods Headphones,1,150,07/18/19 09:35,"203 6th St, Dallas, TX 75001" +230306,Google Phone,1,600,07/23/19 12:11,"218 Dogwood St, Seattle, WA 98101" +230307,AA Batteries (4-pack),2,3.84,07/03/19 08:33,"9 Willow St, Los Angeles, CA 90001" +230308,USB-C Charging Cable,1,11.95,07/26/19 10:01,"445 West St, Los Angeles, CA 90001" +230309,Wired Headphones,1,11.99,07/31/19 10:17,"47 Meadow St, Los Angeles, CA 90001" +230310,Bose SoundSport Headphones,1,99.99,07/31/19 18:58,"386 Jackson St, Seattle, WA 98101" +230311,iPhone,1,700,07/22/19 19:36,"520 Highland St, San Francisco, CA 94016" +230312,27in FHD Monitor,1,149.99,07/07/19 21:20,"496 2nd St, Boston, MA 02215" +230313,Wired Headphones,1,11.99,07/16/19 12:21,"132 Park St, San Francisco, CA 94016" +230314,LG Washing Machine,1,600.0,07/05/19 19:37,"828 Center St, New York City, NY 10001" +230315,USB-C Charging Cable,1,11.95,07/12/19 19:45,"39 North St, San Francisco, CA 94016" +230316,Bose SoundSport Headphones,1,99.99,07/16/19 13:21,"697 Chestnut St, San Francisco, CA 94016" +230317,iPhone,1,700,07/13/19 19:08,"472 Church St, Dallas, TX 75001" +230318,Wired Headphones,1,11.99,07/07/19 18:50,"7 Cherry St, Boston, MA 02215" +230319,iPhone,1,700,07/19/19 09:24,"428 Elm St, Portland, OR 97035" +230320,Apple Airpods Headphones,1,150,07/10/19 11:17,"60 8th St, New York City, NY 10001" +230321,Bose SoundSport Headphones,1,99.99,07/27/19 13:59,"828 9th St, Portland, OR 97035" +230322,Lightning Charging Cable,1,14.95,07/16/19 18:15,"884 Center St, New York City, NY 10001" +230323,27in FHD Monitor,1,149.99,07/31/19 13:37,"870 Madison St, San Francisco, CA 94016" +230324,AA Batteries (4-pack),3,3.84,07/27/19 16:24,"491 Spruce St, Dallas, TX 75001" +230325,USB-C Charging Cable,1,11.95,07/20/19 18:35,"171 Johnson St, New York City, NY 10001" +230326,iPhone,1,700,07/07/19 08:15,"537 10th St, Portland, OR 97035" +230327,Lightning Charging Cable,1,14.95,07/01/19 14:09,"416 Madison St, San Francisco, CA 94016" +230328,Lightning Charging Cable,2,14.95,07/17/19 15:02,"582 Center St, New York City, NY 10001" +230328,AAA Batteries (4-pack),2,2.99,07/17/19 15:02,"582 Center St, New York City, NY 10001" +230329,Lightning Charging Cable,1,14.95,07/15/19 19:51,"161 2nd St, San Francisco, CA 94016" +230330,AAA Batteries (4-pack),3,2.99,07/15/19 00:57,"408 2nd St, Seattle, WA 98101" +230331,Wired Headphones,1,11.99,07/06/19 20:09,"334 Adams St, Seattle, WA 98101" +230332,Macbook Pro Laptop,1,1700,07/18/19 19:35,"962 Sunset St, San Francisco, CA 94016" +230333,Bose SoundSport Headphones,1,99.99,07/28/19 16:40,"599 Main St, Atlanta, GA 30301" +230334,AA Batteries (4-pack),2,3.84,07/21/19 15:30,"436 13th St, Los Angeles, CA 90001" +230335,34in Ultrawide Monitor,1,379.99,07/29/19 13:15,"288 Elm St, New York City, NY 10001" +230336,AAA Batteries (4-pack),1,2.99,07/15/19 06:54,"622 Johnson St, Atlanta, GA 30301" +230337,Wired Headphones,1,11.99,07/24/19 09:00,"439 Park St, Atlanta, GA 30301" +230338,Macbook Pro Laptop,1,1700,07/16/19 17:44,"465 Maple St, Austin, TX 73301" +230339,Wired Headphones,1,11.99,07/29/19 19:23,"877 Chestnut St, Dallas, TX 75001" +230340,27in FHD Monitor,1,149.99,07/30/19 13:31,"476 Maple St, Boston, MA 02215" +230341,AA Batteries (4-pack),2,3.84,07/08/19 08:30,"185 Chestnut St, Boston, MA 02215" +230342,USB-C Charging Cable,1,11.95,07/08/19 13:32,"775 Washington St, San Francisco, CA 94016" +230343,AAA Batteries (4-pack),1,2.99,07/30/19 21:18,"162 Dogwood St, Los Angeles, CA 90001" +230344,AA Batteries (4-pack),1,3.84,07/21/19 12:58,"69 Willow St, Los Angeles, CA 90001" +230345,AAA Batteries (4-pack),3,2.99,07/15/19 01:49,"203 Church St, Seattle, WA 98101" +230346,27in FHD Monitor,1,149.99,07/31/19 08:56,"29 11th St, Los Angeles, CA 90001" +230347,AAA Batteries (4-pack),1,2.99,07/06/19 14:01,"53 Madison St, San Francisco, CA 94016" +230348,Lightning Charging Cable,1,14.95,07/10/19 14:56,"779 Jefferson St, Atlanta, GA 30301" +230349,ThinkPad Laptop,1,999.99,07/16/19 22:06,"737 10th St, Boston, MA 02215" +230350,AA Batteries (4-pack),1,3.84,07/04/19 14:58,"129 Sunset St, Los Angeles, CA 90001" +230351,ThinkPad Laptop,1,999.99,07/30/19 12:56,"254 6th St, New York City, NY 10001" +230352,ThinkPad Laptop,1,999.99,07/02/19 09:58,"485 River St, Los Angeles, CA 90001" +230353,Apple Airpods Headphones,1,150,07/10/19 15:48,"564 10th St, San Francisco, CA 94016" +230354,AAA Batteries (4-pack),1,2.99,07/06/19 13:52,"777 Jefferson St, Boston, MA 02215" +230355,AAA Batteries (4-pack),1,2.99,07/05/19 14:21,"94 10th St, Portland, OR 97035" +230356,Wired Headphones,1,11.99,07/28/19 20:00,"886 Cherry St, San Francisco, CA 94016" +230357,USB-C Charging Cable,2,11.95,07/11/19 12:35,"918 Cedar St, Atlanta, GA 30301" +230358,Apple Airpods Headphones,1,150,07/07/19 00:10,"532 Johnson St, New York City, NY 10001" +230359,Apple Airpods Headphones,1,150,07/09/19 13:15,"459 Sunset St, Portland, OR 97035" +230360,Wired Headphones,1,11.99,07/11/19 17:21,"901 8th St, Boston, MA 02215" +230361,20in Monitor,1,109.99,07/20/19 17:11,"139 Ridge St, Dallas, TX 75001" +230362,AAA Batteries (4-pack),2,2.99,07/13/19 09:39,"355 Lakeview St, Los Angeles, CA 90001" +230363,20in Monitor,1,109.99,07/11/19 14:14,"957 Center St, Dallas, TX 75001" +230364,AAA Batteries (4-pack),2,2.99,07/15/19 09:36,"400 1st St, Austin, TX 73301" +230365,Google Phone,1,600,07/03/19 06:08,"969 Lake St, New York City, NY 10001" +230366,USB-C Charging Cable,1,11.95,07/10/19 12:11,"34 5th St, Boston, MA 02215" +230367,Google Phone,1,600,07/02/19 20:39,"491 Park St, Boston, MA 02215" +230367,USB-C Charging Cable,2,11.95,07/02/19 20:39,"491 Park St, Boston, MA 02215" +230368,AAA Batteries (4-pack),1,2.99,07/28/19 17:12,"254 Chestnut St, San Francisco, CA 94016" +230369,Lightning Charging Cable,1,14.95,07/25/19 16:57,"670 Cedar St, Dallas, TX 75001" +230370,AAA Batteries (4-pack),1,2.99,07/02/19 12:48,"955 Spruce St, San Francisco, CA 94016" +230371,Google Phone,1,600,07/10/19 14:37,"332 Johnson St, Boston, MA 02215" +230371,USB-C Charging Cable,1,11.95,07/10/19 14:37,"332 Johnson St, Boston, MA 02215" +230372,27in FHD Monitor,1,149.99,07/10/19 09:42,"617 Ridge St, Los Angeles, CA 90001" +230373,Bose SoundSport Headphones,1,99.99,07/27/19 17:45,"305 Johnson St, Los Angeles, CA 90001" +230374,27in 4K Gaming Monitor,1,389.99,07/30/19 18:33,"459 River St, Los Angeles, CA 90001" +230375,USB-C Charging Cable,1,11.95,07/09/19 17:00,"182 Elm St, Portland, OR 97035" +230376,AA Batteries (4-pack),1,3.84,07/10/19 22:25,"555 South St, Atlanta, GA 30301" +230377,27in FHD Monitor,1,149.99,07/13/19 14:26,"128 Spruce St, Los Angeles, CA 90001" +230378,Wired Headphones,1,11.99,07/31/19 12:54,"765 Maple St, Portland, OR 97035" +230379,AA Batteries (4-pack),4,3.84,07/22/19 09:11,"397 Hill St, Boston, MA 02215" +230380,Apple Airpods Headphones,1,150,07/03/19 19:08,"999 Lake St, Dallas, TX 75001" +230381,AAA Batteries (4-pack),3,2.99,07/14/19 00:10,"191 River St, Dallas, TX 75001" +230382,ThinkPad Laptop,1,999.99,07/22/19 22:24,"708 4th St, Atlanta, GA 30301" +230383,Bose SoundSport Headphones,1,99.99,07/30/19 19:12,"768 Pine St, Boston, MA 02215" +230384,Bose SoundSport Headphones,1,99.99,07/20/19 12:09,"760 Pine St, Seattle, WA 98101" +230385,USB-C Charging Cable,1,11.95,07/03/19 07:44,"440 2nd St, Seattle, WA 98101" +230386,iPhone,1,700,07/08/19 08:44,"282 Chestnut St, San Francisco, CA 94016" +230387,Bose SoundSport Headphones,1,99.99,07/10/19 10:18,"107 2nd St, Boston, MA 02215" +230388,Apple Airpods Headphones,1,150,07/21/19 13:49,"306 Pine St, Portland, OR 97035" +230389,Lightning Charging Cable,1,14.95,07/26/19 01:05,"592 Park St, Boston, MA 02215" +230390,Macbook Pro Laptop,1,1700,07/05/19 11:03,"345 12th St, Boston, MA 02215" +230391,USB-C Charging Cable,1,11.95,07/22/19 15:35,"953 Adams St, San Francisco, CA 94016" +230392,USB-C Charging Cable,1,11.95,07/30/19 23:50,"918 Pine St, New York City, NY 10001" +230393,USB-C Charging Cable,1,11.95,07/09/19 11:30,"193 13th St, Portland, OR 97035" +230394,Wired Headphones,1,11.99,07/27/19 15:00,"961 8th St, Los Angeles, CA 90001" +230395,Lightning Charging Cable,1,14.95,07/02/19 02:25,"653 Lakeview St, Portland, OR 97035" +230396,34in Ultrawide Monitor,1,379.99,07/12/19 19:55,"856 Cedar St, Seattle, WA 98101" +230397,Bose SoundSport Headphones,1,99.99,07/24/19 22:31,"557 Highland St, Atlanta, GA 30301" +230398,USB-C Charging Cable,1,11.95,07/13/19 14:36,"841 9th St, San Francisco, CA 94016" +230399,Lightning Charging Cable,1,14.95,07/29/19 21:35,"201 Pine St, San Francisco, CA 94016" +230400,Apple Airpods Headphones,1,150,07/13/19 19:55,"45 Lakeview St, Austin, TX 73301" +230401,AA Batteries (4-pack),1,3.84,07/20/19 16:34,"111 7th St, San Francisco, CA 94016" +230402,20in Monitor,1,109.99,07/03/19 14:07,"864 North St, San Francisco, CA 94016" +230403,34in Ultrawide Monitor,1,379.99,07/23/19 14:51,"200 14th St, New York City, NY 10001" +230404,Macbook Pro Laptop,1,1700,07/01/19 20:21,"415 West St, Portland, ME 04101" +230405,Wired Headphones,1,11.99,07/27/19 22:05,"237 Hickory St, Austin, TX 73301" +230406,Flatscreen TV,1,300,07/01/19 22:53,"322 Maple St, San Francisco, CA 94016" +230407,27in 4K Gaming Monitor,1,389.99,07/29/19 19:09,"438 5th St, San Francisco, CA 94016" +230408,Bose SoundSport Headphones,1,99.99,07/18/19 11:29,"557 Elm St, San Francisco, CA 94016" +230409,27in FHD Monitor,1,149.99,07/15/19 13:51,"528 Walnut St, Seattle, WA 98101" +230410,USB-C Charging Cable,1,11.95,07/26/19 12:36,"524 Park St, Boston, MA 02215" +230411,Lightning Charging Cable,1,14.95,07/28/19 17:06,"916 Madison St, San Francisco, CA 94016" +230412,Bose SoundSport Headphones,1,99.99,07/27/19 10:17,"28 Main St, Seattle, WA 98101" +230413,Lightning Charging Cable,2,14.95,07/24/19 08:54,"762 9th St, New York City, NY 10001" +230414,Apple Airpods Headphones,1,150,07/09/19 08:52,"716 Hickory St, Atlanta, GA 30301" +230415,Lightning Charging Cable,1,14.95,07/22/19 21:18,"635 Willow St, Boston, MA 02215" +230416,AAA Batteries (4-pack),1,2.99,07/16/19 20:39,"434 Lakeview St, Los Angeles, CA 90001" +230417,27in 4K Gaming Monitor,1,389.99,07/10/19 21:20,"323 Pine St, San Francisco, CA 94016" +230418,27in FHD Monitor,1,149.99,07/20/19 15:06,"609 Park St, Boston, MA 02215" +230419,Lightning Charging Cable,1,14.95,07/04/19 10:49,"899 Jefferson St, Boston, MA 02215" +230420,Lightning Charging Cable,1,14.95,07/21/19 19:09,"647 Jackson St, New York City, NY 10001" +230421,Apple Airpods Headphones,1,150,07/17/19 17:14,"606 12th St, Dallas, TX 75001" +230422,Bose SoundSport Headphones,1,99.99,07/25/19 09:36,"321 7th St, Los Angeles, CA 90001" +230423,AAA Batteries (4-pack),1,2.99,07/05/19 10:59,"812 Lake St, Dallas, TX 75001" +230424,LG Washing Machine,1,600.0,07/29/19 12:05,"668 8th St, San Francisco, CA 94016" +230425,Wired Headphones,1,11.99,07/30/19 11:58,"898 9th St, Austin, TX 73301" +230426,AAA Batteries (4-pack),1,2.99,07/28/19 20:35,"485 1st St, Los Angeles, CA 90001" +230427,AA Batteries (4-pack),4,3.84,07/04/19 20:27,"674 Willow St, Los Angeles, CA 90001" +230428,USB-C Charging Cable,1,11.95,07/19/19 20:08,"993 5th St, Seattle, WA 98101" +230429,USB-C Charging Cable,1,11.95,07/25/19 10:45,"583 Madison St, New York City, NY 10001" +230430,Apple Airpods Headphones,1,150,07/07/19 09:41,"163 Madison St, Boston, MA 02215" +230431,Google Phone,1,600,07/11/19 11:21,"259 Church St, New York City, NY 10001" +230432,Google Phone,1,600,07/25/19 18:12,"372 North St, Atlanta, GA 30301" +230433,Wired Headphones,1,11.99,07/17/19 11:24,"555 Dogwood St, Atlanta, GA 30301" +230434,Lightning Charging Cable,1,14.95,07/09/19 11:55,"332 Center St, San Francisco, CA 94016" +230435,Bose SoundSport Headphones,1,99.99,07/08/19 05:43,"152 North St, New York City, NY 10001" +230436,Wired Headphones,1,11.99,07/18/19 17:10,"723 Hickory St, Portland, OR 97035" +230437,AA Batteries (4-pack),1,3.84,07/13/19 11:20,"789 Highland St, New York City, NY 10001" +230438,USB-C Charging Cable,1,11.95,07/08/19 00:04,"56 Willow St, Seattle, WA 98101" +230439,27in FHD Monitor,1,149.99,07/23/19 00:14,"359 Ridge St, Los Angeles, CA 90001" +230440,Wired Headphones,1,11.99,07/31/19 18:18,"956 11th St, San Francisco, CA 94016" +230441,27in FHD Monitor,1,149.99,07/16/19 14:13,"179 13th St, Seattle, WA 98101" +230442,Flatscreen TV,1,300,07/26/19 11:46,"883 River St, Austin, TX 73301" +230443,USB-C Charging Cable,1,11.95,07/01/19 17:47,"726 River St, Portland, OR 97035" +230444,USB-C Charging Cable,1,11.95,07/29/19 17:57,"909 11th St, San Francisco, CA 94016" +230445,Lightning Charging Cable,1,14.95,07/22/19 17:28,"883 River St, Boston, MA 02215" +230446,Macbook Pro Laptop,1,1700,07/21/19 22:22,"155 9th St, New York City, NY 10001" +230447,AAA Batteries (4-pack),1,2.99,07/22/19 06:07,"872 2nd St, Atlanta, GA 30301" +230448,Google Phone,1,600,07/02/19 19:11,"242 Church St, San Francisco, CA 94016" +230448,USB-C Charging Cable,1,11.95,07/02/19 19:11,"242 Church St, San Francisco, CA 94016" +230449,AAA Batteries (4-pack),1,2.99,07/10/19 12:01,"918 Dogwood St, Dallas, TX 75001" +230450,Bose SoundSport Headphones,1,99.99,07/14/19 10:36,"399 Adams St, New York City, NY 10001" +230451,ThinkPad Laptop,1,999.99,07/20/19 01:21,"940 Ridge St, New York City, NY 10001" +230451,Google Phone,1,600,07/20/19 01:21,"940 Ridge St, New York City, NY 10001" +230452,AAA Batteries (4-pack),1,2.99,07/29/19 21:21,"405 Washington St, Austin, TX 73301" +230453,27in 4K Gaming Monitor,1,389.99,07/05/19 18:34,"900 Pine St, San Francisco, CA 94016" +230454,USB-C Charging Cable,1,11.95,07/09/19 11:13,"427 Pine St, San Francisco, CA 94016" +230455,Bose SoundSport Headphones,1,99.99,08/01/19 01:06,"109 Pine St, Portland, OR 97035" +230456,34in Ultrawide Monitor,1,379.99,07/21/19 08:43,"594 14th St, New York City, NY 10001" +230457,AAA Batteries (4-pack),1,2.99,07/19/19 02:36,"698 Wilson St, Dallas, TX 75001" +230458,Lightning Charging Cable,1,14.95,07/06/19 19:25,"918 Elm St, Atlanta, GA 30301" +230459,Wired Headphones,1,11.99,07/03/19 11:29,"765 14th St, New York City, NY 10001" +230460,Apple Airpods Headphones,1,150,07/15/19 08:35,"242 Sunset St, San Francisco, CA 94016" +230461,Bose SoundSport Headphones,1,99.99,07/27/19 09:19,"653 Highland St, Portland, OR 97035" +230461,USB-C Charging Cable,1,11.95,07/27/19 09:19,"653 Highland St, Portland, OR 97035" +230462,Wired Headphones,1,11.99,07/29/19 13:50,"917 Hill St, Los Angeles, CA 90001" +230463,Lightning Charging Cable,1,14.95,07/06/19 12:06,"434 9th St, Boston, MA 02215" +230464,AA Batteries (4-pack),2,3.84,07/14/19 22:13,"965 Adams St, San Francisco, CA 94016" +230465,Apple Airpods Headphones,1,150,07/16/19 15:12,"278 Spruce St, Atlanta, GA 30301" +230466,Vareebadd Phone,1,400,07/31/19 19:03,"34 Center St, Los Angeles, CA 90001" +230466,Wired Headphones,1,11.99,07/31/19 19:03,"34 Center St, Los Angeles, CA 90001" +230467,Apple Airpods Headphones,1,150,07/07/19 18:33,"552 Park St, Atlanta, GA 30301" +230468,Lightning Charging Cable,1,14.95,07/05/19 11:13,"378 Wilson St, New York City, NY 10001" +230469,USB-C Charging Cable,1,11.95,07/18/19 08:38,"83 Maple St, New York City, NY 10001" +230470,USB-C Charging Cable,1,11.95,07/15/19 19:06,"973 Jefferson St, New York City, NY 10001" +230471,Flatscreen TV,1,300,07/06/19 01:26,"4 1st St, Austin, TX 73301" +230472,Wired Headphones,2,11.99,07/23/19 21:14,"652 12th St, San Francisco, CA 94016" +230473,Google Phone,1,600,07/18/19 16:05,"858 Highland St, Dallas, TX 75001" +230473,Wired Headphones,1,11.99,07/18/19 16:05,"858 Highland St, Dallas, TX 75001" +230474,USB-C Charging Cable,1,11.95,07/02/19 18:30,"106 Maple St, New York City, NY 10001" +230475,Bose SoundSport Headphones,1,99.99,07/29/19 11:37,"5 10th St, Los Angeles, CA 90001" +230476,USB-C Charging Cable,1,11.95,07/24/19 12:13,"667 14th St, Dallas, TX 75001" +230477,AA Batteries (4-pack),1,3.84,07/14/19 18:09,"246 4th St, Dallas, TX 75001" +230478,27in FHD Monitor,1,149.99,07/12/19 14:42,"559 5th St, Boston, MA 02215" +230479,Apple Airpods Headphones,1,150,07/25/19 16:25,"293 6th St, San Francisco, CA 94016" +230480,AA Batteries (4-pack),1,3.84,07/29/19 16:18,"449 Center St, New York City, NY 10001" +230481,Wired Headphones,1,11.99,07/28/19 14:28,"288 Lake St, New York City, NY 10001" +230482,AAA Batteries (4-pack),1,2.99,07/28/19 19:09,"293 Adams St, New York City, NY 10001" +230483,27in 4K Gaming Monitor,1,389.99,07/04/19 11:23,"906 Lake St, Los Angeles, CA 90001" +230484,AA Batteries (4-pack),1,3.84,07/29/19 20:06,"118 Madison St, New York City, NY 10001" +230485,Apple Airpods Headphones,1,150,07/31/19 18:08,"920 4th St, Atlanta, GA 30301" +230486,Apple Airpods Headphones,1,150,07/28/19 03:53,"517 Lakeview St, San Francisco, CA 94016" +230487,Bose SoundSport Headphones,1,99.99,07/05/19 08:30,"617 Park St, Los Angeles, CA 90001" +230488,AA Batteries (4-pack),2,3.84,07/04/19 13:17,"862 7th St, Los Angeles, CA 90001" +230489,20in Monitor,1,109.99,07/24/19 08:43,"441 Sunset St, Austin, TX 73301" +230490,AA Batteries (4-pack),1,3.84,07/17/19 21:18,"875 Forest St, Atlanta, GA 30301" +230491,USB-C Charging Cable,1,11.95,07/18/19 06:21,"827 6th St, San Francisco, CA 94016" +230492,Apple Airpods Headphones,1,150,07/29/19 13:15,"639 Meadow St, New York City, NY 10001" +230493,Lightning Charging Cable,1,14.95,07/21/19 16:41,"351 Dogwood St, Los Angeles, CA 90001" +230494,Macbook Pro Laptop,1,1700,07/03/19 18:27,"758 5th St, San Francisco, CA 94016" +230495,Lightning Charging Cable,1,14.95,07/04/19 00:30,"207 5th St, Los Angeles, CA 90001" +230496,34in Ultrawide Monitor,1,379.99,07/15/19 20:16,"355 West St, Dallas, TX 75001" +230497,Lightning Charging Cable,1,14.95,07/13/19 11:56,"305 River St, Austin, TX 73301" +230498,USB-C Charging Cable,1,11.95,07/04/19 00:41,"348 Adams St, Atlanta, GA 30301" +230499,Apple Airpods Headphones,1,150,07/12/19 12:37,"492 14th St, Boston, MA 02215" +230500,Lightning Charging Cable,1,14.95,07/27/19 21:29,"303 14th St, New York City, NY 10001" +230501,Google Phone,1,600,07/11/19 23:41,"296 Pine St, Dallas, TX 75001" +230502,27in 4K Gaming Monitor,1,389.99,07/05/19 15:48,"406 10th St, San Francisco, CA 94016" +230503,27in FHD Monitor,1,149.99,07/25/19 21:34,"60 11th St, San Francisco, CA 94016" +230503,34in Ultrawide Monitor,1,379.99,07/25/19 21:34,"60 11th St, San Francisco, CA 94016" +230504,Lightning Charging Cable,1,14.95,07/05/19 19:01,"529 Jefferson St, Atlanta, GA 30301" +230505,Bose SoundSport Headphones,1,99.99,07/23/19 15:14,"370 13th St, New York City, NY 10001" +230506,Macbook Pro Laptop,1,1700,07/21/19 11:58,"952 12th St, Dallas, TX 75001" +230507,Google Phone,1,600,07/15/19 04:40,"502 West St, Los Angeles, CA 90001" +230507,Bose SoundSport Headphones,1,99.99,07/15/19 04:40,"502 West St, Los Angeles, CA 90001" +230507,Wired Headphones,1,11.99,07/15/19 04:40,"502 West St, Los Angeles, CA 90001" +230508,AAA Batteries (4-pack),1,2.99,07/25/19 20:59,"958 Lake St, Los Angeles, CA 90001" +230509,20in Monitor,1,109.99,07/23/19 09:03,"580 Center St, Boston, MA 02215" +230509,Lightning Charging Cable,1,14.95,07/23/19 09:03,"580 Center St, Boston, MA 02215" +230510,Lightning Charging Cable,1,14.95,07/16/19 13:25,"332 Chestnut St, Portland, OR 97035" +230511,Flatscreen TV,1,300,07/03/19 14:42,"952 Pine St, San Francisco, CA 94016" +230512,Wired Headphones,1,11.99,07/18/19 07:54,"861 4th St, Boston, MA 02215" +230513,USB-C Charging Cable,1,11.95,07/27/19 12:20,"998 5th St, Portland, OR 97035" +230514,AA Batteries (4-pack),2,3.84,07/26/19 11:29,"466 Lincoln St, New York City, NY 10001" +230515,USB-C Charging Cable,1,11.95,07/18/19 17:33,"726 Sunset St, New York City, NY 10001" +230516,Bose SoundSport Headphones,1,99.99,07/14/19 13:39,"42 Meadow St, New York City, NY 10001" +230517,Bose SoundSport Headphones,1,99.99,07/19/19 11:49,"957 14th St, New York City, NY 10001" +230518,AAA Batteries (4-pack),1,2.99,07/29/19 17:15,"722 8th St, Los Angeles, CA 90001" +230519,Apple Airpods Headphones,1,150,07/12/19 00:35,"7 Sunset St, Dallas, TX 75001" +230520,AAA Batteries (4-pack),1,2.99,07/19/19 18:45,"577 14th St, San Francisco, CA 94016" +230521,AAA Batteries (4-pack),1,2.99,07/13/19 23:39,"92 9th St, San Francisco, CA 94016" +230522,iPhone,1,700,07/03/19 15:09,"740 Meadow St, New York City, NY 10001" +230523,AA Batteries (4-pack),2,3.84,07/07/19 13:58,"443 Forest St, San Francisco, CA 94016" +230524,Wired Headphones,1,11.99,07/24/19 17:03,"512 Maple St, Dallas, TX 75001" +230525,AAA Batteries (4-pack),1,2.99,07/26/19 09:14,"732 River St, Boston, MA 02215" +230526,USB-C Charging Cable,1,11.95,07/10/19 18:59,"29 Dogwood St, Boston, MA 02215" +230527,USB-C Charging Cable,1,11.95,07/06/19 16:06,"62 Center St, Seattle, WA 98101" +230528,AAA Batteries (4-pack),3,2.99,07/31/19 23:26,"403 Main St, San Francisco, CA 94016" +230529,Wired Headphones,1,11.99,07/29/19 13:07,"37 Washington St, New York City, NY 10001" +230530,Apple Airpods Headphones,1,150,07/08/19 15:36,"678 Spruce St, Los Angeles, CA 90001" +230531,27in 4K Gaming Monitor,1,389.99,07/05/19 19:49,"700 Wilson St, New York City, NY 10001" +230532,Wired Headphones,1,11.99,07/10/19 17:29,"147 Dogwood St, San Francisco, CA 94016" +230533,27in FHD Monitor,1,149.99,07/14/19 10:38,"624 12th St, San Francisco, CA 94016" +230534,Wired Headphones,1,11.99,07/20/19 11:24,"48 Chestnut St, San Francisco, CA 94016" +230535,ThinkPad Laptop,1,999.99,07/14/19 10:00,"441 1st St, Atlanta, GA 30301" +230536,ThinkPad Laptop,1,999.99,07/09/19 10:56,"700 Forest St, New York City, NY 10001" +230537,USB-C Charging Cable,1,11.95,07/26/19 07:37,"578 2nd St, Austin, TX 73301" +230538,USB-C Charging Cable,1,11.95,07/16/19 00:02,"547 12th St, Atlanta, GA 30301" +230539,Wired Headphones,1,11.99,07/25/19 11:33,"337 Meadow St, Dallas, TX 75001" +230540,Bose SoundSport Headphones,1,99.99,07/31/19 14:51,"388 13th St, Seattle, WA 98101" +230541,34in Ultrawide Monitor,1,379.99,07/15/19 21:09,"159 Lake St, Portland, OR 97035" +230542,iPhone,1,700,07/03/19 21:20,"354 Spruce St, Boston, MA 02215" +230543,Wired Headphones,1,11.99,07/14/19 12:54,"153 Pine St, Boston, MA 02215" +230544,Apple Airpods Headphones,1,150,07/25/19 19:46,"930 8th St, Austin, TX 73301" +230545,USB-C Charging Cable,1,11.95,07/24/19 16:32,"629 Madison St, San Francisco, CA 94016" +230546,Lightning Charging Cable,1,14.95,07/10/19 16:44,"802 8th St, Atlanta, GA 30301" +230547,AA Batteries (4-pack),2,3.84,07/12/19 11:57,"986 Cedar St, Portland, OR 97035" +230548,Lightning Charging Cable,1,14.95,07/08/19 13:35,"801 Lake St, Boston, MA 02215" +230549,AAA Batteries (4-pack),2,2.99,07/30/19 11:12,"148 Jefferson St, Los Angeles, CA 90001" +230550,AAA Batteries (4-pack),1,2.99,07/11/19 08:18,"536 Lake St, New York City, NY 10001" +230551,Wired Headphones,2,11.99,07/28/19 15:19,"696 Highland St, Los Angeles, CA 90001" +230552,AAA Batteries (4-pack),2,2.99,07/03/19 17:35,"368 Lakeview St, Los Angeles, CA 90001" +230553,Google Phone,1,600,07/24/19 17:02,"926 Cedar St, Boston, MA 02215" +230554,Apple Airpods Headphones,1,150,07/06/19 20:29,"842 Cedar St, Atlanta, GA 30301" +230555,20in Monitor,1,109.99,07/21/19 00:27,"343 Lincoln St, Boston, MA 02215" +230556,Wired Headphones,1,11.99,07/01/19 12:35,"732 Pine St, Seattle, WA 98101" +230557,27in FHD Monitor,1,149.99,07/26/19 00:36,"71 North St, Austin, TX 73301" +230558,Lightning Charging Cable,1,14.95,07/26/19 10:36,"858 South St, Dallas, TX 75001" +230559,Flatscreen TV,1,300,07/21/19 17:42,"881 Wilson St, San Francisco, CA 94016" +230560,AA Batteries (4-pack),1,3.84,07/09/19 22:52,"671 Elm St, Los Angeles, CA 90001" +230561,20in Monitor,1,109.99,07/23/19 10:06,"536 6th St, Boston, MA 02215" +230562,Flatscreen TV,1,300,07/21/19 16:48,"537 9th St, New York City, NY 10001" +230563,USB-C Charging Cable,1,11.95,07/23/19 20:14,"153 Forest St, Boston, MA 02215" +230564,AAA Batteries (4-pack),1,2.99,07/25/19 08:59,"574 Elm St, Atlanta, GA 30301" +230565,AA Batteries (4-pack),1,3.84,07/06/19 21:09,"922 Chestnut St, Boston, MA 02215" +230566,AAA Batteries (4-pack),1,2.99,07/30/19 19:22,"636 Ridge St, New York City, NY 10001" +230567,Bose SoundSport Headphones,1,99.99,07/28/19 20:37,"189 Hill St, Seattle, WA 98101" +230568,AA Batteries (4-pack),2,3.84,07/18/19 11:23,"562 Lincoln St, San Francisco, CA 94016" +230569,Wired Headphones,1,11.99,07/07/19 15:00,"919 Adams St, Boston, MA 02215" +230570,AAA Batteries (4-pack),1,2.99,07/23/19 17:28,"180 Sunset St, Los Angeles, CA 90001" +230571,Macbook Pro Laptop,1,1700,07/23/19 16:00,"54 Chestnut St, Atlanta, GA 30301" +230572,Wired Headphones,1,11.99,07/21/19 22:40,"5 Lake St, Los Angeles, CA 90001" +230573,USB-C Charging Cable,1,11.95,07/10/19 23:34,"98 Jackson St, San Francisco, CA 94016" +230574,27in FHD Monitor,1,149.99,07/31/19 19:26,"189 West St, Austin, TX 73301" +230575,USB-C Charging Cable,1,11.95,07/20/19 12:54,"400 12th St, New York City, NY 10001" +230576,Google Phone,1,600,07/27/19 23:31,"880 River St, Los Angeles, CA 90001" +230577,iPhone,1,700,07/19/19 08:04,"603 14th St, Los Angeles, CA 90001" +230578,Bose SoundSport Headphones,1,99.99,07/31/19 01:58,"36 8th St, Austin, TX 73301" +230579,AA Batteries (4-pack),1,3.84,07/02/19 17:52,"818 Cedar St, New York City, NY 10001" +230580,AA Batteries (4-pack),1,3.84,07/27/19 14:08,"114 Cherry St, New York City, NY 10001" +230581,AAA Batteries (4-pack),2,2.99,07/10/19 20:48,"631 Washington St, Boston, MA 02215" +230582,AA Batteries (4-pack),1,3.84,07/08/19 20:15,"464 Johnson St, Los Angeles, CA 90001" +230583,34in Ultrawide Monitor,1,379.99,07/03/19 14:03,"240 Willow St, San Francisco, CA 94016" +230584,USB-C Charging Cable,1,11.95,07/21/19 11:18,"486 Walnut St, Los Angeles, CA 90001" +230585,AAA Batteries (4-pack),1,2.99,07/29/19 14:56,"990 7th St, San Francisco, CA 94016" +230586,Bose SoundSport Headphones,1,99.99,07/10/19 18:32,"90 Elm St, San Francisco, CA 94016" +230587,AAA Batteries (4-pack),1,2.99,07/08/19 11:38,"174 South St, New York City, NY 10001" +230588,Bose SoundSport Headphones,1,99.99,07/10/19 21:14,"833 Wilson St, Boston, MA 02215" +230589,USB-C Charging Cable,1,11.95,07/18/19 16:12,"658 5th St, San Francisco, CA 94016" +230590,Bose SoundSport Headphones,1,99.99,07/09/19 11:19,"891 Sunset St, San Francisco, CA 94016" +230591,Wired Headphones,1,11.99,07/27/19 16:19,"256 Cedar St, Portland, OR 97035" +230592,27in 4K Gaming Monitor,1,389.99,07/08/19 11:23,"744 Dogwood St, Austin, TX 73301" +230593,AAA Batteries (4-pack),1,2.99,07/11/19 14:14,"38 4th St, Seattle, WA 98101" +230594,AA Batteries (4-pack),1,3.84,07/25/19 14:26,"495 Cedar St, San Francisco, CA 94016" +230595,Lightning Charging Cable,1,14.95,07/15/19 20:32,"195 13th St, Dallas, TX 75001" +230596,Lightning Charging Cable,1,14.95,07/13/19 12:57,"25 Ridge St, Los Angeles, CA 90001" +230597,USB-C Charging Cable,1,11.95,07/15/19 12:50,"399 Jackson St, New York City, NY 10001" +230598,27in FHD Monitor,1,149.99,07/08/19 01:24,"462 Hickory St, Boston, MA 02215" +230599,USB-C Charging Cable,1,11.95,07/30/19 19:17,"630 Elm St, Austin, TX 73301" +230600,Lightning Charging Cable,1,14.95,07/12/19 17:01,"349 Wilson St, Atlanta, GA 30301" +230601,27in FHD Monitor,1,149.99,07/25/19 14:15,"735 2nd St, Los Angeles, CA 90001" +230602,Google Phone,1,600,07/11/19 23:13,"404 Wilson St, Los Angeles, CA 90001" +230603,Lightning Charging Cable,1,14.95,07/25/19 17:37,"476 Forest St, Seattle, WA 98101" +230604,Lightning Charging Cable,1,14.95,07/07/19 08:15,"184 5th St, Atlanta, GA 30301" +230605,Bose SoundSport Headphones,1,99.99,07/22/19 00:08,"567 Lakeview St, Boston, MA 02215" +230606,USB-C Charging Cable,1,11.95,07/30/19 21:33,"247 Highland St, Seattle, WA 98101" +230607,Wired Headphones,1,11.99,07/08/19 12:48,"150 Sunset St, Portland, OR 97035" +230608,USB-C Charging Cable,1,11.95,07/25/19 20:38,"352 Forest St, Dallas, TX 75001" +230608,AAA Batteries (4-pack),1,2.99,07/25/19 20:38,"352 Forest St, Dallas, TX 75001" +230609,Lightning Charging Cable,1,14.95,07/22/19 23:51,"975 Willow St, Seattle, WA 98101" +230610,Apple Airpods Headphones,1,150,07/29/19 20:00,"864 Elm St, Portland, OR 97035" +230611,Apple Airpods Headphones,1,150,07/26/19 20:15,"398 Pine St, Boston, MA 02215" +230612,Lightning Charging Cable,1,14.95,07/15/19 07:19,"113 Walnut St, Atlanta, GA 30301" +230613,Apple Airpods Headphones,1,150,07/14/19 13:54,"375 Dogwood St, New York City, NY 10001" +230614,USB-C Charging Cable,1,11.95,07/12/19 12:37,"460 2nd St, San Francisco, CA 94016" +230615,USB-C Charging Cable,1,11.95,07/21/19 06:14,"275 Walnut St, Seattle, WA 98101" +230616,Lightning Charging Cable,1,14.95,07/27/19 09:00,"467 Maple St, San Francisco, CA 94016" +230617,Apple Airpods Headphones,1,150,07/19/19 10:47,"950 Jackson St, Austin, TX 73301" +230618,USB-C Charging Cable,1,11.95,07/11/19 15:34,"175 North St, Los Angeles, CA 90001" +230619,AAA Batteries (4-pack),1,2.99,07/16/19 14:02,"124 Hickory St, Atlanta, GA 30301" +230620,USB-C Charging Cable,1,11.95,07/29/19 13:56,"545 Elm St, Portland, ME 04101" +230621,Vareebadd Phone,1,400,07/31/19 08:30,"362 Walnut St, San Francisco, CA 94016" +230622,Apple Airpods Headphones,1,150,07/06/19 08:28,"447 2nd St, New York City, NY 10001" +230623,20in Monitor,1,109.99,07/30/19 20:19,"186 Sunset St, Los Angeles, CA 90001" +230624,AAA Batteries (4-pack),2,2.99,07/25/19 19:59,"267 Madison St, Boston, MA 02215" +230625,Wired Headphones,1,11.99,07/13/19 08:25,"876 Jackson St, New York City, NY 10001" +230626,AA Batteries (4-pack),1,3.84,07/24/19 05:52,"571 West St, Dallas, TX 75001" +230627,AA Batteries (4-pack),1,3.84,07/21/19 21:40,"249 Spruce St, Boston, MA 02215" +230628,Flatscreen TV,1,300,07/01/19 23:35,"883 North St, Atlanta, GA 30301" +230629,27in FHD Monitor,1,149.99,07/17/19 08:28,"402 Elm St, Boston, MA 02215" +230630,AA Batteries (4-pack),1,3.84,07/15/19 19:56,"921 Spruce St, Los Angeles, CA 90001" +230631,Apple Airpods Headphones,1,150,07/16/19 14:20,"479 Willow St, San Francisco, CA 94016" +230632,AAA Batteries (4-pack),1,2.99,07/02/19 09:55,"840 Chestnut St, Dallas, TX 75001" +230633,USB-C Charging Cable,1,11.95,07/29/19 08:33,"971 Willow St, San Francisco, CA 94016" +230634,USB-C Charging Cable,1,11.95,07/04/19 02:19,"147 Maple St, Atlanta, GA 30301" +230635,AAA Batteries (4-pack),1,2.99,07/11/19 20:02,"850 1st St, Portland, OR 97035" +230636,USB-C Charging Cable,1,11.95,07/27/19 21:58,"123 Wilson St, San Francisco, CA 94016" +230637,USB-C Charging Cable,1,11.95,07/30/19 16:25,"499 Lake St, San Francisco, CA 94016" +230638,34in Ultrawide Monitor,1,379.99,07/11/19 16:13,"984 Washington St, Boston, MA 02215" +230639,AA Batteries (4-pack),1,3.84,07/23/19 11:58,"983 8th St, Dallas, TX 75001" +230640,AA Batteries (4-pack),1,3.84,07/01/19 08:27,"915 Park St, Seattle, WA 98101" +230641,AA Batteries (4-pack),1,3.84,07/01/19 19:04,"355 Ridge St, Boston, MA 02215" +230642,27in FHD Monitor,1,149.99,07/21/19 18:19,"810 14th St, Los Angeles, CA 90001" +230643,AAA Batteries (4-pack),4,2.99,07/13/19 14:49,"175 Walnut St, Portland, OR 97035" +230644,USB-C Charging Cable,1,11.95,07/10/19 18:57,"125 14th St, San Francisco, CA 94016" +230645,AA Batteries (4-pack),1,3.84,07/29/19 10:26,"166 River St, Atlanta, GA 30301" +230646,Bose SoundSport Headphones,1,99.99,07/08/19 13:18,"204 Highland St, Seattle, WA 98101" +230647,AAA Batteries (4-pack),2,2.99,07/13/19 17:36,"217 Walnut St, Boston, MA 02215" +230648,Google Phone,1,600,07/31/19 10:53,"954 Dogwood St, San Francisco, CA 94016" +230648,USB-C Charging Cable,1,11.95,07/31/19 10:53,"954 Dogwood St, San Francisco, CA 94016" +230649,Lightning Charging Cable,1,14.95,07/29/19 20:04,"602 Lincoln St, Seattle, WA 98101" +230650,Google Phone,1,600,07/23/19 10:47,"638 Adams St, Dallas, TX 75001" +230651,USB-C Charging Cable,1,11.95,07/18/19 13:14,"967 Main St, Boston, MA 02215" +230652,Wired Headphones,1,11.99,07/09/19 09:58,"506 Jackson St, Boston, MA 02215" +230653,LG Dryer,1,600.0,07/15/19 09:57,"48 Lincoln St, New York City, NY 10001" +230654,USB-C Charging Cable,1,11.95,07/30/19 16:29,"296 Highland St, New York City, NY 10001" +230655,27in FHD Monitor,1,149.99,07/07/19 20:24,"344 Main St, New York City, NY 10001" +230656,AAA Batteries (4-pack),1,2.99,07/15/19 12:37,"690 Center St, San Francisco, CA 94016" +230657,USB-C Charging Cable,1,11.95,07/16/19 21:46,"920 Lincoln St, Boston, MA 02215" +230658,Google Phone,1,600,07/02/19 00:42,"592 Main St, Austin, TX 73301" +230659,Wired Headphones,1,11.99,07/27/19 21:00,"616 Cherry St, Boston, MA 02215" +230660,Lightning Charging Cable,1,14.95,07/29/19 11:31,"319 Sunset St, San Francisco, CA 94016" +230661,Wired Headphones,1,11.99,07/22/19 12:35,"212 Washington St, Los Angeles, CA 90001" +230662,Google Phone,1,600,07/27/19 16:00,"90 Meadow St, Portland, OR 97035" +230662,USB-C Charging Cable,1,11.95,07/27/19 16:00,"90 Meadow St, Portland, OR 97035" +230663,Bose SoundSport Headphones,1,99.99,07/24/19 19:09,"953 Hill St, Los Angeles, CA 90001" +230664,34in Ultrawide Monitor,1,379.99,07/13/19 11:53,"180 5th St, Dallas, TX 75001" +230665,Bose SoundSport Headphones,1,99.99,07/29/19 20:08,"110 9th St, San Francisco, CA 94016" +230666,AAA Batteries (4-pack),3,2.99,07/08/19 13:49,"685 Adams St, Atlanta, GA 30301" +230667,Macbook Pro Laptop,1,1700,07/07/19 16:03,"577 12th St, San Francisco, CA 94016" +230668,Lightning Charging Cable,1,14.95,07/20/19 07:05,"83 Ridge St, San Francisco, CA 94016" +230669,ThinkPad Laptop,1,999.99,07/30/19 14:09,"52 Chestnut St, Seattle, WA 98101" +230670,Bose SoundSport Headphones,1,99.99,07/30/19 21:24,"153 7th St, New York City, NY 10001" +230670,USB-C Charging Cable,1,11.95,07/30/19 21:24,"153 7th St, New York City, NY 10001" +230671,Lightning Charging Cable,1,14.95,07/09/19 11:36,"681 Cedar St, Los Angeles, CA 90001" +230672,AAA Batteries (4-pack),2,2.99,07/23/19 16:40,"530 12th St, San Francisco, CA 94016" +230673,LG Washing Machine,1,600.0,07/02/19 01:12,"71 8th St, San Francisco, CA 94016" +230674,USB-C Charging Cable,1,11.95,07/30/19 14:39,"800 River St, New York City, NY 10001" +230674,AAA Batteries (4-pack),1,2.99,07/30/19 14:39,"800 River St, New York City, NY 10001" +230675,Bose SoundSport Headphones,1,99.99,07/25/19 09:45,"185 Lake St, San Francisco, CA 94016" +230676,Wired Headphones,1,11.99,07/04/19 12:00,"144 Johnson St, San Francisco, CA 94016" +230677,AA Batteries (4-pack),1,3.84,07/04/19 10:38,"970 Pine St, Seattle, WA 98101" +230678,Wired Headphones,1,11.99,07/17/19 17:02,"268 Park St, Dallas, TX 75001" +230679,Bose SoundSport Headphones,1,99.99,07/07/19 11:31,"782 Adams St, San Francisco, CA 94016" +230680,Google Phone,1,600,07/11/19 10:34,"99 Walnut St, Los Angeles, CA 90001" +230681,Wired Headphones,2,11.99,07/16/19 01:14,"987 Lakeview St, Los Angeles, CA 90001" +230682,Wired Headphones,3,11.99,07/25/19 09:18,"583 Sunset St, San Francisco, CA 94016" +230683,Wired Headphones,2,11.99,07/25/19 21:01,"566 7th St, San Francisco, CA 94016" +230684,Wired Headphones,2,11.99,07/08/19 20:01,"896 Elm St, San Francisco, CA 94016" +230685,AAA Batteries (4-pack),1,2.99,07/28/19 10:00,"365 Willow St, Portland, OR 97035" +230686,AA Batteries (4-pack),2,3.84,07/01/19 11:49,"764 North St, Los Angeles, CA 90001" +230687,AAA Batteries (4-pack),3,2.99,07/31/19 10:39,"991 Hickory St, New York City, NY 10001" +230688,Vareebadd Phone,1,400,07/06/19 13:16,"960 9th St, Austin, TX 73301" +230689,iPhone,1,700,07/02/19 18:36,"829 Sunset St, Boston, MA 02215" +230690,27in 4K Gaming Monitor,1,389.99,07/03/19 22:47,"210 River St, San Francisco, CA 94016" +230691,Lightning Charging Cable,1,14.95,07/17/19 09:12,"200 Park St, Dallas, TX 75001" +230692,Apple Airpods Headphones,1,150,07/19/19 03:51,"357 Lincoln St, New York City, NY 10001" +230693,Lightning Charging Cable,1,14.95,07/02/19 21:01,"348 North St, New York City, NY 10001" +230694,Lightning Charging Cable,1,14.95,07/11/19 21:12,"911 Maple St, Los Angeles, CA 90001" +230695,AA Batteries (4-pack),1,3.84,07/05/19 11:35,"433 Johnson St, San Francisco, CA 94016" +230696,USB-C Charging Cable,1,11.95,07/15/19 15:21,"8 River St, Atlanta, GA 30301" +230697,AAA Batteries (4-pack),1,2.99,07/09/19 11:39,"762 Forest St, San Francisco, CA 94016" +230698,Lightning Charging Cable,1,14.95,07/03/19 06:31,"889 Washington St, Portland, OR 97035" +230698,AA Batteries (4-pack),1,3.84,07/03/19 06:31,"889 Washington St, Portland, OR 97035" +230699,20in Monitor,1,109.99,07/10/19 08:53,"40 Pine St, New York City, NY 10001" +230700,Apple Airpods Headphones,1,150,07/22/19 12:23,"28 River St, Boston, MA 02215" +230701,Bose SoundSport Headphones,1,99.99,07/06/19 17:24,"926 Chestnut St, Seattle, WA 98101" +230702,Apple Airpods Headphones,1,150,07/22/19 10:14,"991 Lincoln St, Atlanta, GA 30301" +230703,AAA Batteries (4-pack),3,2.99,07/31/19 17:57,"72 River St, Los Angeles, CA 90001" +230704,Bose SoundSport Headphones,1,99.99,07/27/19 12:13,"555 13th St, Los Angeles, CA 90001" +230705,AA Batteries (4-pack),1,3.84,07/29/19 18:49,"625 7th St, San Francisco, CA 94016" +230706,AA Batteries (4-pack),1,3.84,07/15/19 14:54,"366 9th St, Los Angeles, CA 90001" +230707,Wired Headphones,1,11.99,07/23/19 18:52,"941 Main St, San Francisco, CA 94016" +230708,Apple Airpods Headphones,1,150,07/22/19 11:25,"75 River St, New York City, NY 10001" +230709,27in FHD Monitor,1,149.99,07/31/19 19:17,"684 Wilson St, San Francisco, CA 94016" +230709,Apple Airpods Headphones,1,150,07/31/19 19:17,"684 Wilson St, San Francisco, CA 94016" +230710,iPhone,1,700,07/24/19 22:52,"374 Lincoln St, Austin, TX 73301" +230711,Lightning Charging Cable,1,14.95,07/28/19 18:05,"275 Center St, San Francisco, CA 94016" +230712,ThinkPad Laptop,1,999.99,07/20/19 12:50,"846 13th St, Dallas, TX 75001" +230713,Vareebadd Phone,1,400,07/27/19 17:49,"400 Lake St, San Francisco, CA 94016" +230714,USB-C Charging Cable,1,11.95,07/25/19 09:04,"43 Adams St, Dallas, TX 75001" +230715,Bose SoundSport Headphones,1,99.99,07/27/19 11:46,"417 4th St, Los Angeles, CA 90001" +230716,Wired Headphones,1,11.99,07/08/19 11:58,"709 14th St, Boston, MA 02215" +230717,Wired Headphones,1,11.99,07/14/19 20:54,"664 4th St, Boston, MA 02215" +230718,34in Ultrawide Monitor,1,379.99,07/03/19 16:37,"12 Willow St, Los Angeles, CA 90001" +230719,Macbook Pro Laptop,1,1700,07/20/19 17:27,"243 8th St, Dallas, TX 75001" +230720,34in Ultrawide Monitor,1,379.99,07/09/19 18:49,"766 9th St, San Francisco, CA 94016" +230721,27in 4K Gaming Monitor,1,389.99,07/25/19 11:42,"488 7th St, Los Angeles, CA 90001" +230722,Lightning Charging Cable,2,14.95,07/07/19 09:35,"620 Hickory St, Dallas, TX 75001" +230723,Lightning Charging Cable,1,14.95,07/12/19 10:50,"236 Spruce St, Boston, MA 02215" +230724,Lightning Charging Cable,1,14.95,07/26/19 19:49,"698 14th St, New York City, NY 10001" +230725,USB-C Charging Cable,1,11.95,07/04/19 18:07,"79 8th St, San Francisco, CA 94016" +230726,Lightning Charging Cable,1,14.95,07/06/19 22:37,"197 Jefferson St, San Francisco, CA 94016" +230726,ThinkPad Laptop,1,999.99,07/06/19 22:37,"197 Jefferson St, San Francisco, CA 94016" +230727,27in FHD Monitor,1,149.99,07/13/19 12:12,"497 Washington St, Portland, OR 97035" +230728,Flatscreen TV,1,300,07/20/19 21:42,"105 Lincoln St, Los Angeles, CA 90001" +230729,27in FHD Monitor,2,149.99,07/17/19 18:41,"151 Johnson St, San Francisco, CA 94016" +230730,USB-C Charging Cable,1,11.95,07/22/19 13:25,"750 North St, Los Angeles, CA 90001" +230731,AAA Batteries (4-pack),2,2.99,07/22/19 19:47,"726 South St, Atlanta, GA 30301" +230732,Wired Headphones,1,11.99,07/15/19 22:35,"181 Meadow St, Los Angeles, CA 90001" +230732,USB-C Charging Cable,1,11.95,07/15/19 22:35,"181 Meadow St, Los Angeles, CA 90001" +230733,AAA Batteries (4-pack),1,2.99,07/18/19 08:03,"22 Ridge St, New York City, NY 10001" +230734,Wired Headphones,1,11.99,07/13/19 17:54,"954 Lincoln St, Austin, TX 73301" +230735,AA Batteries (4-pack),1,3.84,07/12/19 20:37,"103 Adams St, Boston, MA 02215" +230736,Bose SoundSport Headphones,1,99.99,07/11/19 13:04,"864 13th St, Seattle, WA 98101" +230737,Wired Headphones,1,11.99,07/23/19 17:45,"302 Washington St, Los Angeles, CA 90001" +230738,Flatscreen TV,1,300,07/12/19 23:46,"899 Willow St, Portland, ME 04101" +230739,Lightning Charging Cable,1,14.95,07/28/19 22:56,"13 South St, Dallas, TX 75001" +230740,AA Batteries (4-pack),1,3.84,07/05/19 20:40,"645 8th St, Portland, ME 04101" +230741,USB-C Charging Cable,1,11.95,07/07/19 17:09,"85 West St, Seattle, WA 98101" +230742,Apple Airpods Headphones,1,150,07/31/19 23:36,"233 Elm St, New York City, NY 10001" +230743,USB-C Charging Cable,1,11.95,07/06/19 18:54,"482 11th St, San Francisco, CA 94016" +230744,iPhone,1,700,07/11/19 12:37,"742 South St, Dallas, TX 75001" +230744,Wired Headphones,1,11.99,07/11/19 12:37,"742 South St, Dallas, TX 75001" +230745,Wired Headphones,1,11.99,07/23/19 20:49,"523 Cherry St, Dallas, TX 75001" +230746,AAA Batteries (4-pack),1,2.99,07/16/19 13:36,"654 Lakeview St, Los Angeles, CA 90001" +230747,Lightning Charging Cable,1,14.95,07/18/19 14:09,"702 West St, Seattle, WA 98101" +230748,Lightning Charging Cable,1,14.95,07/05/19 23:53,"620 Hickory St, San Francisco, CA 94016" +230749,Macbook Pro Laptop,1,1700,07/09/19 08:14,"65 Maple St, Portland, OR 97035" +230750,USB-C Charging Cable,1,11.95,07/28/19 08:01,"64 8th St, Portland, OR 97035" +230751,AAA Batteries (4-pack),3,2.99,07/28/19 21:38,"645 Cherry St, Boston, MA 02215" +230752,USB-C Charging Cable,1,11.95,07/18/19 21:43,"414 1st St, San Francisco, CA 94016" +230753,iPhone,1,700,07/17/19 10:18,"498 Lincoln St, San Francisco, CA 94016" +230754,Lightning Charging Cable,1,14.95,07/31/19 14:30,"833 Forest St, San Francisco, CA 94016" +230755,AA Batteries (4-pack),1,3.84,07/01/19 20:51,"80 Main St, San Francisco, CA 94016" +230756,Flatscreen TV,1,300,07/29/19 12:37,"390 Center St, Los Angeles, CA 90001" +230757,27in FHD Monitor,1,149.99,07/09/19 08:43,"964 Sunset St, Boston, MA 02215" +230758,Google Phone,1,600,07/16/19 17:01,"365 Forest St, Atlanta, GA 30301" +230758,USB-C Charging Cable,1,11.95,07/16/19 17:01,"365 Forest St, Atlanta, GA 30301" +230759,AA Batteries (4-pack),3,3.84,07/26/19 12:44,"222 9th St, Atlanta, GA 30301" +230760,AA Batteries (4-pack),1,3.84,07/04/19 23:20,"642 Madison St, Dallas, TX 75001" +230761,Apple Airpods Headphones,1,150,07/02/19 19:14,"832 North St, Boston, MA 02215" +230762,USB-C Charging Cable,1,11.95,07/16/19 18:40,"312 4th St, Los Angeles, CA 90001" +230763,Apple Airpods Headphones,1,150,07/20/19 19:55,"731 14th St, Los Angeles, CA 90001" +230764,LG Dryer,1,600.0,07/03/19 17:50,"649 Jackson St, New York City, NY 10001" +230765,Lightning Charging Cable,1,14.95,07/29/19 18:03,"429 13th St, San Francisco, CA 94016" +230766,USB-C Charging Cable,1,11.95,07/18/19 14:27,"811 Lake St, Portland, OR 97035" +230766,Apple Airpods Headphones,1,150,07/18/19 14:27,"811 Lake St, Portland, OR 97035" +230767,USB-C Charging Cable,1,11.95,07/16/19 20:42,"713 Elm St, New York City, NY 10001" +230768,Bose SoundSport Headphones,1,99.99,07/31/19 19:15,"588 8th St, New York City, NY 10001" +230769,USB-C Charging Cable,1,11.95,07/18/19 11:35,"498 Walnut St, San Francisco, CA 94016" +230770,USB-C Charging Cable,1,11.95,07/15/19 10:03,"413 Jefferson St, San Francisco, CA 94016" +230771,USB-C Charging Cable,1,11.95,07/05/19 13:44,"877 Lakeview St, Dallas, TX 75001" +230772,Lightning Charging Cable,1,14.95,07/08/19 15:35,"484 Jefferson St, Dallas, TX 75001" +230773,Lightning Charging Cable,1,14.95,07/23/19 17:26,"893 14th St, Los Angeles, CA 90001" +230774,AAA Batteries (4-pack),1,2.99,07/09/19 21:52,"581 Washington St, Boston, MA 02215" +230775,Bose SoundSport Headphones,1,99.99,07/01/19 20:33,"284 Main St, New York City, NY 10001" +230776,AA Batteries (4-pack),1,3.84,07/19/19 20:19,"57 13th St, San Francisco, CA 94016" +230777,Flatscreen TV,1,300,07/12/19 12:42,"180 Johnson St, San Francisco, CA 94016" +230778,Bose SoundSport Headphones,1,99.99,07/21/19 09:02,"371 9th St, Atlanta, GA 30301" +230779,AAA Batteries (4-pack),1,2.99,07/14/19 00:31,"651 West St, New York City, NY 10001" +230780,USB-C Charging Cable,3,11.95,07/19/19 16:51,"147 5th St, Portland, OR 97035" +230781,USB-C Charging Cable,1,11.95,07/16/19 11:36,"779 Lincoln St, San Francisco, CA 94016" +230782,Lightning Charging Cable,1,14.95,07/20/19 14:47,"163 Ridge St, Portland, OR 97035" +230783,AA Batteries (4-pack),1,3.84,07/01/19 14:18,"892 Wilson St, Boston, MA 02215" +230784,Lightning Charging Cable,1,14.95,07/29/19 20:21,"298 Lake St, Dallas, TX 75001" +230785,Wired Headphones,1,11.99,07/24/19 14:14,"636 11th St, Los Angeles, CA 90001" +230786,27in 4K Gaming Monitor,1,389.99,07/08/19 15:15,"150 Forest St, Seattle, WA 98101" +230787,Wired Headphones,1,11.99,07/16/19 18:11,"973 Madison St, San Francisco, CA 94016" +230788,Apple Airpods Headphones,1,150,07/08/19 12:19,"853 Dogwood St, Austin, TX 73301" +230789,Wired Headphones,1,11.99,07/12/19 10:35,"377 9th St, Dallas, TX 75001" +230790,AA Batteries (4-pack),1,3.84,07/24/19 12:29,"897 5th St, Portland, OR 97035" +230791,AAA Batteries (4-pack),3,2.99,07/25/19 23:06,"973 Willow St, San Francisco, CA 94016" +230792,34in Ultrawide Monitor,1,379.99,07/17/19 18:29,"574 Dogwood St, Los Angeles, CA 90001" +230793,Apple Airpods Headphones,1,150,07/21/19 20:01,"756 Ridge St, Dallas, TX 75001" +230794,Wired Headphones,1,11.99,07/30/19 11:18,"831 Chestnut St, Austin, TX 73301" +230795,27in 4K Gaming Monitor,1,389.99,07/17/19 13:16,"854 Adams St, San Francisco, CA 94016" +230796,Bose SoundSport Headphones,1,99.99,07/07/19 11:56,"761 1st St, Seattle, WA 98101" +230797,Wired Headphones,1,11.99,07/31/19 16:29,"430 North St, San Francisco, CA 94016" +230798,AAA Batteries (4-pack),1,2.99,07/26/19 23:46,"467 Forest St, Atlanta, GA 30301" +230799,iPhone,1,700,07/24/19 14:28,"852 Sunset St, Boston, MA 02215" +230800,ThinkPad Laptop,1,999.99,07/20/19 09:02,"127 14th St, San Francisco, CA 94016" +230801,ThinkPad Laptop,1,999.99,07/26/19 23:33,"548 8th St, Boston, MA 02215" +230802,Apple Airpods Headphones,1,150,07/20/19 17:12,"654 4th St, Portland, OR 97035" +230803,USB-C Charging Cable,2,11.95,07/20/19 09:21,"78 Hickory St, Los Angeles, CA 90001" +230804,Apple Airpods Headphones,1,150,07/08/19 04:55,"515 West St, San Francisco, CA 94016" +230805,27in FHD Monitor,1,149.99,07/08/19 21:38,"354 Forest St, Seattle, WA 98101" +230806,Lightning Charging Cable,1,14.95,07/20/19 09:40,"667 12th St, New York City, NY 10001" +230807,Lightning Charging Cable,1,14.95,07/13/19 20:44,"757 Wilson St, Dallas, TX 75001" +230808,20in Monitor,1,109.99,07/17/19 22:35,"104 Lake St, San Francisco, CA 94016" +230809,AAA Batteries (4-pack),1,2.99,07/17/19 17:44,"498 Dogwood St, Los Angeles, CA 90001" +230810,AA Batteries (4-pack),1,3.84,07/17/19 22:18,"302 Johnson St, Boston, MA 02215" +230811,AAA Batteries (4-pack),1,2.99,07/12/19 11:39,"433 Johnson St, Los Angeles, CA 90001" +230812,Wired Headphones,1,11.99,07/26/19 14:51,"786 Lincoln St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +230813,AA Batteries (4-pack),3,3.84,07/10/19 20:03,"89 Church St, San Francisco, CA 94016" +230814,Apple Airpods Headphones,1,150,07/04/19 03:31,"898 14th St, Dallas, TX 75001" +230815,USB-C Charging Cable,1,11.95,07/02/19 15:05,"412 Chestnut St, Atlanta, GA 30301" +230816,Bose SoundSport Headphones,1,99.99,07/23/19 10:32,"135 Johnson St, Los Angeles, CA 90001" +230817,Bose SoundSport Headphones,1,99.99,07/16/19 11:35,"208 Elm St, Portland, OR 97035" +230818,Flatscreen TV,1,300,07/19/19 12:25,"869 Adams St, Los Angeles, CA 90001" +230819,USB-C Charging Cable,1,11.95,07/09/19 20:37,"587 4th St, Los Angeles, CA 90001" +230820,AA Batteries (4-pack),1,3.84,07/07/19 13:21,"96 Walnut St, San Francisco, CA 94016" +230821,27in 4K Gaming Monitor,1,389.99,07/27/19 12:38,"82 Forest St, Atlanta, GA 30301" +230822,27in FHD Monitor,1,149.99,07/28/19 00:08,"172 Willow St, San Francisco, CA 94016" +230823,AA Batteries (4-pack),1,3.84,07/26/19 17:24,"554 13th St, New York City, NY 10001" +230824,27in FHD Monitor,1,149.99,07/03/19 12:49,"661 Hickory St, Los Angeles, CA 90001" +230825,Macbook Pro Laptop,1,1700,07/16/19 15:29,"812 Ridge St, Seattle, WA 98101" +230826,USB-C Charging Cable,1,11.95,07/10/19 23:25,"554 9th St, New York City, NY 10001" +230826,iPhone,1,700,07/10/19 23:25,"554 9th St, New York City, NY 10001" +230827,27in FHD Monitor,1,149.99,07/02/19 18:06,"240 Main St, Portland, OR 97035" +230828,AAA Batteries (4-pack),1,2.99,07/15/19 19:30,"962 Meadow St, Los Angeles, CA 90001" +230829,Bose SoundSport Headphones,1,99.99,07/16/19 07:33,"3 4th St, Seattle, WA 98101" +230830,Lightning Charging Cable,1,14.95,07/18/19 22:15,"788 7th St, San Francisco, CA 94016" +230831,USB-C Charging Cable,1,11.95,07/28/19 18:05,"466 Lake St, San Francisco, CA 94016" +230832,20in Monitor,1,109.99,07/03/19 21:58,"810 Ridge St, San Francisco, CA 94016" +230833,Google Phone,1,600,07/20/19 15:53,"368 13th St, Atlanta, GA 30301" +230834,AAA Batteries (4-pack),1,2.99,07/28/19 15:55,"369 Cherry St, Dallas, TX 75001" +230835,iPhone,1,700,07/13/19 08:18,"20 Johnson St, Portland, OR 97035" +230836,Lightning Charging Cable,1,14.95,07/26/19 12:24,"484 Ridge St, Boston, MA 02215" +230837,27in FHD Monitor,1,149.99,07/30/19 00:16,"124 4th St, Atlanta, GA 30301" +230838,27in FHD Monitor,1,149.99,07/15/19 17:12,"108 Chestnut St, Dallas, TX 75001" +230839,AAA Batteries (4-pack),2,2.99,07/01/19 18:28,"668 Church St, Boston, MA 02215" +230840,AA Batteries (4-pack),1,3.84,07/21/19 20:54,"229 7th St, Dallas, TX 75001" +230841,USB-C Charging Cable,1,11.95,07/07/19 23:11,"121 North St, San Francisco, CA 94016" +230842,AA Batteries (4-pack),1,3.84,07/12/19 14:38,"670 Johnson St, Portland, OR 97035" +230843,AA Batteries (4-pack),2,3.84,07/12/19 13:36,"235 Church St, New York City, NY 10001" +230844,AA Batteries (4-pack),1,3.84,07/13/19 08:52,"681 9th St, San Francisco, CA 94016" +230845,USB-C Charging Cable,1,11.95,07/31/19 20:39,"46 6th St, New York City, NY 10001" +230846,Bose SoundSport Headphones,1,99.99,07/11/19 11:11,"715 Dogwood St, New York City, NY 10001" +230847,Google Phone,1,600,07/12/19 23:21,"227 River St, Los Angeles, CA 90001" +230847,USB-C Charging Cable,1,11.95,07/12/19 23:21,"227 River St, Los Angeles, CA 90001" +230848,USB-C Charging Cable,1,11.95,07/12/19 00:08,"882 Hickory St, San Francisco, CA 94016" +230849,AA Batteries (4-pack),1,3.84,07/19/19 21:38,"705 7th St, San Francisco, CA 94016" +230850,AA Batteries (4-pack),1,3.84,07/31/19 22:07,"924 Hill St, Los Angeles, CA 90001" +230851,Wired Headphones,1,11.99,07/28/19 10:43,"507 Chestnut St, Portland, OR 97035" +230852,Lightning Charging Cable,1,14.95,07/28/19 11:02,"370 7th St, Boston, MA 02215" +230853,Google Phone,1,600,07/17/19 19:24,"95 Pine St, San Francisco, CA 94016" +230854,Wired Headphones,1,11.99,07/31/19 11:42,"295 Jackson St, Los Angeles, CA 90001" +230855,AAA Batteries (4-pack),2,2.99,07/24/19 14:21,"71 Johnson St, New York City, NY 10001" +230856,USB-C Charging Cable,1,11.95,07/05/19 08:21,"70 Madison St, San Francisco, CA 94016" +230857,AAA Batteries (4-pack),3,2.99,07/21/19 14:05,"193 Spruce St, New York City, NY 10001" +230858,20in Monitor,1,109.99,07/10/19 17:28,"52 Washington St, Portland, OR 97035" +230859,Bose SoundSport Headphones,1,99.99,07/02/19 23:29,"968 Meadow St, Atlanta, GA 30301" +230860,Google Phone,1,600,07/01/19 16:45,"496 4th St, Los Angeles, CA 90001" +230861,AA Batteries (4-pack),2,3.84,07/19/19 03:32,"20 13th St, San Francisco, CA 94016" +230862,34in Ultrawide Monitor,1,379.99,07/30/19 22:12,"628 Jefferson St, Atlanta, GA 30301" +230863,Bose SoundSport Headphones,1,99.99,07/11/19 21:06,"90 11th St, Dallas, TX 75001" +230864,Bose SoundSport Headphones,1,99.99,07/09/19 10:17,"29 Maple St, Seattle, WA 98101" +230865,AAA Batteries (4-pack),1,2.99,07/07/19 02:38,"125 5th St, Dallas, TX 75001" +230866,AAA Batteries (4-pack),2,2.99,07/29/19 14:08,"858 Main St, Boston, MA 02215" +230867,Apple Airpods Headphones,1,150,07/17/19 18:36,"943 Ridge St, San Francisco, CA 94016" +230868,27in FHD Monitor,1,149.99,07/13/19 19:15,"847 Main St, Dallas, TX 75001" +230869,USB-C Charging Cable,1,11.95,07/25/19 12:16,"266 7th St, Dallas, TX 75001" +230870,Lightning Charging Cable,1,14.95,07/08/19 19:01,"185 Walnut St, Atlanta, GA 30301" +230871,USB-C Charging Cable,3,11.95,07/30/19 15:51,"199 Ridge St, San Francisco, CA 94016" +230872,AAA Batteries (4-pack),2,2.99,07/25/19 19:35,"593 6th St, Los Angeles, CA 90001" +230873,AA Batteries (4-pack),1,3.84,07/16/19 16:25,"840 14th St, Dallas, TX 75001" +230874,Macbook Pro Laptop,1,1700,07/02/19 20:28,"272 14th St, San Francisco, CA 94016" +230875,iPhone,1,700,07/29/19 13:24,"489 7th St, New York City, NY 10001" +230876,Bose SoundSport Headphones,1,99.99,07/05/19 11:15,"326 Jefferson St, Portland, OR 97035" +230877,AA Batteries (4-pack),1,3.84,07/17/19 12:32,"474 7th St, Dallas, TX 75001" +230878,Lightning Charging Cable,1,14.95,07/17/19 00:35,"474 Park St, Seattle, WA 98101" +230879,Wired Headphones,1,11.99,07/19/19 09:58,"982 7th St, Los Angeles, CA 90001" +230880,USB-C Charging Cable,1,11.95,07/18/19 12:05,"377 West St, New York City, NY 10001" +230881,Bose SoundSport Headphones,1,99.99,07/03/19 22:12,"132 Spruce St, New York City, NY 10001" +230882,Lightning Charging Cable,1,14.95,07/14/19 14:39,"762 Lincoln St, San Francisco, CA 94016" +230883,Lightning Charging Cable,2,14.95,07/14/19 21:16,"501 10th St, San Francisco, CA 94016" +230884,27in 4K Gaming Monitor,1,389.99,07/28/19 13:07,"333 Wilson St, San Francisco, CA 94016" +230885,Wired Headphones,1,11.99,07/12/19 13:36,"727 Cedar St, Los Angeles, CA 90001" +230886,27in 4K Gaming Monitor,1,389.99,07/26/19 11:09,"231 Dogwood St, Atlanta, GA 30301" +230887,AAA Batteries (4-pack),2,2.99,07/05/19 13:42,"288 Main St, San Francisco, CA 94016" +230888,Wired Headphones,1,11.99,07/17/19 15:32,"417 Maple St, San Francisco, CA 94016" +230889,AA Batteries (4-pack),3,3.84,07/05/19 20:35,"676 Pine St, Los Angeles, CA 90001" +230890,USB-C Charging Cable,1,11.95,07/22/19 22:06,"794 Willow St, Boston, MA 02215" +230891,AA Batteries (4-pack),2,3.84,07/18/19 10:50,"194 Meadow St, Portland, OR 97035" +230892,Wired Headphones,1,11.99,07/22/19 11:24,"331 Lakeview St, New York City, NY 10001" +230893,27in FHD Monitor,1,149.99,07/08/19 09:03,"768 Chestnut St, Boston, MA 02215" +230894,Wired Headphones,1,11.99,07/21/19 12:38,"80 Hickory St, San Francisco, CA 94016" +230895,AA Batteries (4-pack),1,3.84,07/29/19 15:45,"654 Madison St, Boston, MA 02215" +230896,Bose SoundSport Headphones,1,99.99,07/29/19 13:50,"774 4th St, San Francisco, CA 94016" +230897,Bose SoundSport Headphones,1,99.99,07/04/19 17:16,"909 Center St, San Francisco, CA 94016" +230898,Bose SoundSport Headphones,1,99.99,07/08/19 22:20,"400 11th St, San Francisco, CA 94016" +230899,Apple Airpods Headphones,1,150,07/29/19 19:19,"982 Wilson St, San Francisco, CA 94016" +230900,Bose SoundSport Headphones,1,99.99,07/20/19 12:41,"732 West St, New York City, NY 10001" +230901,AA Batteries (4-pack),1,3.84,07/27/19 10:40,"764 2nd St, Atlanta, GA 30301" +230902,USB-C Charging Cable,1,11.95,07/02/19 11:19,"543 10th St, Austin, TX 73301" +230903,USB-C Charging Cable,1,11.95,07/16/19 00:53,"534 Ridge St, Los Angeles, CA 90001" +230904,Google Phone,1,600,07/16/19 19:20,"801 Lake St, Boston, MA 02215" +230905,27in 4K Gaming Monitor,1,389.99,07/07/19 17:45,"863 11th St, Portland, OR 97035" +230906,ThinkPad Laptop,1,999.99,07/15/19 08:12,"952 Church St, Boston, MA 02215" +230907,Bose SoundSport Headphones,1,99.99,07/08/19 14:34,"404 12th St, Los Angeles, CA 90001" +230908,Lightning Charging Cable,1,14.95,07/24/19 17:51,"904 Cedar St, Portland, ME 04101" +230909,Lightning Charging Cable,1,14.95,07/31/19 17:50,"853 Spruce St, Atlanta, GA 30301" +230910,USB-C Charging Cable,1,11.95,07/29/19 11:54,"298 14th St, Los Angeles, CA 90001" +230911,AA Batteries (4-pack),4,3.84,07/17/19 23:29,"190 West St, Los Angeles, CA 90001" +230912,Flatscreen TV,1,300,07/14/19 10:25,"288 Cherry St, Boston, MA 02215" +230913,Wired Headphones,1,11.99,07/11/19 11:15,"728 Cedar St, San Francisco, CA 94016" +230914,Lightning Charging Cable,1,14.95,07/09/19 20:43,"89 10th St, San Francisco, CA 94016" +230915,USB-C Charging Cable,1,11.95,07/07/19 22:11,"500 Maple St, Boston, MA 02215" +230916,Google Phone,1,600,07/30/19 20:03,"192 West St, San Francisco, CA 94016" +230917,AA Batteries (4-pack),1,3.84,07/06/19 07:23,"238 Elm St, Portland, ME 04101" +230918,27in FHD Monitor,1,149.99,07/18/19 12:54,"212 Elm St, San Francisco, CA 94016" +230919,34in Ultrawide Monitor,1,379.99,07/25/19 16:47,"998 Meadow St, New York City, NY 10001" +230920,AA Batteries (4-pack),1,3.84,07/13/19 14:17,"105 1st St, Seattle, WA 98101" +230921,USB-C Charging Cable,1,11.95,07/14/19 11:19,"719 Forest St, Atlanta, GA 30301" +230922,Lightning Charging Cable,1,14.95,07/05/19 12:21,"105 Willow St, San Francisco, CA 94016" +230923,27in FHD Monitor,1,149.99,07/02/19 09:35,"115 Cherry St, Boston, MA 02215" +230924,Apple Airpods Headphones,1,150,07/07/19 15:06,"190 10th St, Atlanta, GA 30301" +230925,Bose SoundSport Headphones,1,99.99,07/22/19 11:55,"205 4th St, Atlanta, GA 30301" +230926,Bose SoundSport Headphones,1,99.99,07/01/19 13:46,"868 Jefferson St, Seattle, WA 98101" +230927,Wired Headphones,1,11.99,07/14/19 11:18,"805 Main St, New York City, NY 10001" +230928,iPhone,1,700,07/23/19 17:53,"468 10th St, Dallas, TX 75001" +230929,Wired Headphones,1,11.99,07/20/19 11:06,"510 Hickory St, New York City, NY 10001" +230930,Apple Airpods Headphones,1,150,07/30/19 20:38,"49 Church St, San Francisco, CA 94016" +230931,27in FHD Monitor,1,149.99,07/31/19 23:24,"20 Pine St, Atlanta, GA 30301" +,,,,, +230932,Wired Headphones,2,11.99,07/18/19 13:24,"993 Sunset St, Portland, OR 97035" +230933,Lightning Charging Cable,1,14.95,07/29/19 21:50,"849 Park St, Seattle, WA 98101" +230934,Lightning Charging Cable,1,14.95,07/30/19 21:04,"714 Pine St, New York City, NY 10001" +230935,USB-C Charging Cable,2,11.95,07/12/19 09:06,"372 6th St, San Francisco, CA 94016" +230936,Lightning Charging Cable,2,14.95,07/25/19 07:28,"701 Cedar St, Atlanta, GA 30301" +230937,Lightning Charging Cable,1,14.95,07/06/19 07:49,"807 Ridge St, San Francisco, CA 94016" +230938,Bose SoundSport Headphones,1,99.99,07/22/19 15:11,"501 Park St, San Francisco, CA 94016" +230939,Bose SoundSport Headphones,1,99.99,07/10/19 14:54,"435 4th St, San Francisco, CA 94016" +230940,Flatscreen TV,1,300,07/20/19 09:56,"163 Maple St, Boston, MA 02215" +230941,Lightning Charging Cable,1,14.95,07/14/19 14:49,"388 Lakeview St, Atlanta, GA 30301" +230942,Google Phone,1,600,07/21/19 19:06,"456 11th St, Seattle, WA 98101" +230943,Lightning Charging Cable,2,14.95,07/31/19 09:16,"546 Jefferson St, Los Angeles, CA 90001" +230944,AAA Batteries (4-pack),1,2.99,07/04/19 14:32,"214 South St, Atlanta, GA 30301" +230945,Wired Headphones,1,11.99,07/10/19 17:44,"988 6th St, San Francisco, CA 94016" +230946,Lightning Charging Cable,1,14.95,07/30/19 08:49,"437 Highland St, Los Angeles, CA 90001" +230947,Bose SoundSport Headphones,1,99.99,07/01/19 21:10,"7 13th St, Los Angeles, CA 90001" +230948,AA Batteries (4-pack),3,3.84,07/03/19 09:18,"142 1st St, San Francisco, CA 94016" +230949,AAA Batteries (4-pack),1,2.99,07/23/19 16:25,"894 North St, San Francisco, CA 94016" +230950,27in FHD Monitor,1,149.99,07/23/19 01:37,"35 5th St, Portland, OR 97035" +230951,USB-C Charging Cable,1,11.95,07/28/19 22:10,"648 Sunset St, San Francisco, CA 94016" +230952,Wired Headphones,1,11.99,07/25/19 15:42,"232 1st St, Boston, MA 02215" +230953,Wired Headphones,1,11.99,07/13/19 15:06,"489 Main St, Atlanta, GA 30301" +230954,Macbook Pro Laptop,1,1700,07/13/19 11:54,"841 Pine St, San Francisco, CA 94016" +230955,27in FHD Monitor,1,149.99,07/15/19 21:58,"729 8th St, Boston, MA 02215" +230956,Bose SoundSport Headphones,1,99.99,07/31/19 14:31,"50 5th St, Austin, TX 73301" +,,,,, +230957,AAA Batteries (4-pack),1,2.99,07/15/19 10:27,"249 Lakeview St, Austin, TX 73301" +230958,AAA Batteries (4-pack),3,2.99,07/19/19 14:19,"752 Sunset St, Portland, OR 97035" +230959,Macbook Pro Laptop,1,1700,07/15/19 16:51,"39 Forest St, Portland, OR 97035" +230960,Bose SoundSport Headphones,1,99.99,07/03/19 14:28,"887 Sunset St, Boston, MA 02215" +230961,Apple Airpods Headphones,1,150,07/02/19 15:56,"531 North St, San Francisco, CA 94016" +230962,AA Batteries (4-pack),2,3.84,07/06/19 08:11,"707 Chestnut St, San Francisco, CA 94016" +230963,Wired Headphones,3,11.99,07/24/19 10:01,"720 Dogwood St, San Francisco, CA 94016" +230964,20in Monitor,1,109.99,07/21/19 17:06,"182 Cherry St, Los Angeles, CA 90001" +230965,USB-C Charging Cable,1,11.95,07/28/19 16:55,"992 Wilson St, Portland, OR 97035" +230966,AA Batteries (4-pack),1,3.84,07/06/19 16:18,"639 Meadow St, Seattle, WA 98101" +230967,Lightning Charging Cable,1,14.95,07/18/19 19:46,"806 Forest St, Seattle, WA 98101" +230968,Lightning Charging Cable,1,14.95,07/31/19 01:02,"408 Forest St, Los Angeles, CA 90001" +230969,USB-C Charging Cable,1,11.95,07/12/19 14:10,"299 Meadow St, Portland, ME 04101" +230970,USB-C Charging Cable,1,11.95,07/08/19 11:58,"261 Maple St, Portland, OR 97035" +230971,AAA Batteries (4-pack),1,2.99,07/03/19 11:11,"327 Lakeview St, Atlanta, GA 30301" +230972,Apple Airpods Headphones,1,150,07/08/19 08:07,"324 Chestnut St, San Francisco, CA 94016" +230973,AA Batteries (4-pack),1,3.84,07/23/19 17:11,"889 7th St, San Francisco, CA 94016" +230974,Apple Airpods Headphones,1,150,07/09/19 21:46,"810 Elm St, San Francisco, CA 94016" +230975,USB-C Charging Cable,1,11.95,07/28/19 22:48,"219 4th St, Boston, MA 02215" +230976,Wired Headphones,1,11.99,07/30/19 19:21,"276 Cherry St, New York City, NY 10001" +230977,USB-C Charging Cable,2,11.95,07/24/19 23:25,"764 14th St, Los Angeles, CA 90001" +230978,Lightning Charging Cable,1,14.95,07/07/19 23:45,"614 Jackson St, Los Angeles, CA 90001" +230979,Apple Airpods Headphones,1,150,07/28/19 21:53,"699 Chestnut St, Boston, MA 02215" +230980,Lightning Charging Cable,1,14.95,07/23/19 23:13,"714 Willow St, Dallas, TX 75001" +230981,AA Batteries (4-pack),1,3.84,07/16/19 14:08,"307 Pine St, San Francisco, CA 94016" +230982,Google Phone,1,600,07/23/19 10:46,"317 Lakeview St, Portland, OR 97035" +230983,27in 4K Gaming Monitor,1,389.99,07/23/19 07:42,"152 Church St, Seattle, WA 98101" +230984,Wired Headphones,1,11.99,07/21/19 23:50,"406 1st St, Austin, TX 73301" +230985,AA Batteries (4-pack),2,3.84,07/23/19 10:01,"119 Forest St, New York City, NY 10001" +230986,Google Phone,1,600,07/07/19 12:32,"759 Chestnut St, Los Angeles, CA 90001" +230987,USB-C Charging Cable,1,11.95,07/28/19 21:50,"350 13th St, Portland, OR 97035" +230988,20in Monitor,1,109.99,07/03/19 14:01,"214 10th St, San Francisco, CA 94016" +230989,Lightning Charging Cable,1,14.95,07/16/19 16:07,"380 Elm St, New York City, NY 10001" +230990,AA Batteries (4-pack),2,3.84,07/01/19 06:41,"976 Main St, San Francisco, CA 94016" +230991,Vareebadd Phone,1,400,07/27/19 17:36,"409 Cherry St, Atlanta, GA 30301" +230992,USB-C Charging Cable,1,11.95,07/07/19 18:15,"505 West St, New York City, NY 10001" +230993,Vareebadd Phone,1,400,07/26/19 12:33,"462 Wilson St, Austin, TX 73301" +230994,USB-C Charging Cable,1,11.95,07/26/19 09:28,"46 8th St, Boston, MA 02215" +230995,AAA Batteries (4-pack),1,2.99,07/17/19 21:13,"299 Park St, New York City, NY 10001" +230996,Google Phone,1,600,07/09/19 18:49,"976 11th St, Atlanta, GA 30301" +230997,Lightning Charging Cable,1,14.95,07/17/19 20:59,"515 6th St, Portland, OR 97035" +230998,Flatscreen TV,1,300,07/14/19 09:35,"13 5th St, New York City, NY 10001" +230999,Lightning Charging Cable,1,14.95,07/30/19 09:38,"399 4th St, San Francisco, CA 94016" +231000,AAA Batteries (4-pack),1,2.99,07/06/19 07:33,"29 Church St, Los Angeles, CA 90001" +231001,Apple Airpods Headphones,1,150,07/24/19 23:04,"270 Meadow St, New York City, NY 10001" +231002,Apple Airpods Headphones,1,150,07/08/19 00:46,"295 Maple St, San Francisco, CA 94016" +231003,Apple Airpods Headphones,1,150,07/02/19 19:41,"110 Pine St, Boston, MA 02215" +231004,27in FHD Monitor,1,149.99,07/10/19 07:31,"218 13th St, Austin, TX 73301" +231005,USB-C Charging Cable,2,11.95,07/21/19 20:42,"731 13th St, Los Angeles, CA 90001" +231006,Lightning Charging Cable,1,14.95,07/01/19 07:08,"784 Lakeview St, San Francisco, CA 94016" +231007,AA Batteries (4-pack),2,3.84,07/21/19 11:16,"35 South St, Seattle, WA 98101" +231008,Lightning Charging Cable,1,14.95,07/30/19 16:02,"182 Madison St, Boston, MA 02215" +231009,27in 4K Gaming Monitor,1,389.99,07/21/19 21:19,"519 South St, Austin, TX 73301" +231010,Wired Headphones,1,11.99,07/11/19 18:03,"211 Walnut St, Austin, TX 73301" +231011,AAA Batteries (4-pack),1,2.99,07/16/19 12:04,"617 Adams St, New York City, NY 10001" +231012,Lightning Charging Cable,1,14.95,07/11/19 19:18,"562 Forest St, Seattle, WA 98101" +231013,AAA Batteries (4-pack),3,2.99,07/04/19 21:18,"236 Elm St, New York City, NY 10001" +231014,34in Ultrawide Monitor,1,379.99,07/27/19 12:33,"438 13th St, San Francisco, CA 94016" +231015,Lightning Charging Cable,1,14.95,07/09/19 12:07,"65 Spruce St, Los Angeles, CA 90001" +231016,Bose SoundSport Headphones,1,99.99,07/25/19 00:22,"793 Sunset St, San Francisco, CA 94016" +231017,AA Batteries (4-pack),2,3.84,07/29/19 09:52,"25 8th St, San Francisco, CA 94016" +231018,27in FHD Monitor,1,149.99,07/26/19 23:00,"376 Lakeview St, Los Angeles, CA 90001" +231019,Wired Headphones,1,11.99,07/31/19 12:55,"753 Jackson St, San Francisco, CA 94016" +231020,Apple Airpods Headphones,1,150,07/02/19 23:28,"491 Madison St, San Francisco, CA 94016" +231021,Lightning Charging Cable,1,14.95,07/29/19 22:19,"975 4th St, San Francisco, CA 94016" +231022,Lightning Charging Cable,1,14.95,07/02/19 12:39,"46 North St, Los Angeles, CA 90001" +231023,Flatscreen TV,1,300,07/31/19 18:12,"75 Adams St, Los Angeles, CA 90001" +231024,Lightning Charging Cable,1,14.95,07/11/19 16:44,"318 Sunset St, Los Angeles, CA 90001" +231025,Apple Airpods Headphones,1,150,07/04/19 15:42,"858 Maple St, San Francisco, CA 94016" +231026,Apple Airpods Headphones,1,150,07/27/19 15:49,"571 Chestnut St, Seattle, WA 98101" +231027,AA Batteries (4-pack),2,3.84,07/05/19 12:01,"641 Wilson St, Boston, MA 02215" +231028,USB-C Charging Cable,1,11.95,07/01/19 21:30,"720 South St, Los Angeles, CA 90001" +231029,AAA Batteries (4-pack),1,2.99,07/21/19 20:30,"441 Pine St, New York City, NY 10001" +231030,iPhone,1,700,07/25/19 09:11,"382 Madison St, Los Angeles, CA 90001" +231031,Bose SoundSport Headphones,1,99.99,07/07/19 18:46,"118 Spruce St, Dallas, TX 75001" +231032,Lightning Charging Cable,1,14.95,07/22/19 20:21,"948 6th St, Dallas, TX 75001" +231033,Macbook Pro Laptop,1,1700,07/11/19 10:39,"299 River St, Atlanta, GA 30301" +231034,Google Phone,1,600,07/07/19 00:24,"92 Adams St, San Francisco, CA 94016" +231035,Flatscreen TV,1,300,07/09/19 09:17,"813 Willow St, New York City, NY 10001" +231036,34in Ultrawide Monitor,1,379.99,07/13/19 10:53,"873 Park St, Atlanta, GA 30301" +231037,iPhone,1,700,07/08/19 10:45,"159 Park St, San Francisco, CA 94016" +231038,AAA Batteries (4-pack),1,2.99,07/18/19 19:51,"138 Cherry St, San Francisco, CA 94016" +231039,Apple Airpods Headphones,1,150,07/05/19 22:24,"34 Center St, San Francisco, CA 94016" +231040,iPhone,1,700,07/03/19 06:49,"383 11th St, Los Angeles, CA 90001" +231040,Wired Headphones,2,11.99,07/03/19 06:49,"383 11th St, Los Angeles, CA 90001" +231041,Bose SoundSport Headphones,1,99.99,07/22/19 06:31,"246 Elm St, San Francisco, CA 94016" +231042,USB-C Charging Cable,2,11.95,07/10/19 09:32,"228 Chestnut St, Boston, MA 02215" +231043,20in Monitor,1,109.99,07/27/19 12:28,"275 9th St, Boston, MA 02215" +231044,27in 4K Gaming Monitor,1,389.99,07/18/19 13:33,"532 Hickory St, Boston, MA 02215" +231045,Apple Airpods Headphones,1,150,07/20/19 22:56,"396 Lake St, New York City, NY 10001" +231046,Bose SoundSport Headphones,1,99.99,07/08/19 18:15,"971 5th St, Boston, MA 02215" +231047,Bose SoundSport Headphones,1,99.99,07/26/19 14:43,"437 1st St, Dallas, TX 75001" +231048,USB-C Charging Cable,1,11.95,07/31/19 14:47,"456 5th St, San Francisco, CA 94016" +231049,AA Batteries (4-pack),1,3.84,07/27/19 15:05,"337 7th St, New York City, NY 10001" +231050,AA Batteries (4-pack),1,3.84,07/05/19 13:00,"488 Hickory St, Los Angeles, CA 90001" +231051,USB-C Charging Cable,1,11.95,07/29/19 20:42,"413 2nd St, Dallas, TX 75001" +231052,Wired Headphones,1,11.99,07/31/19 12:46,"675 Highland St, Portland, OR 97035" +231053,USB-C Charging Cable,1,11.95,07/16/19 09:36,"697 Adams St, New York City, NY 10001" +231054,AA Batteries (4-pack),1,3.84,07/02/19 22:14,"876 Washington St, Austin, TX 73301" +231055,Lightning Charging Cable,1,14.95,07/22/19 15:28,"72 Washington St, Dallas, TX 75001" +231056,iPhone,1,700,07/22/19 11:33,"578 Ridge St, San Francisco, CA 94016" +231057,Lightning Charging Cable,1,14.95,07/22/19 00:21,"944 Highland St, New York City, NY 10001" +231058,Wired Headphones,1,11.99,07/01/19 15:56,"553 Sunset St, New York City, NY 10001" +231059,27in FHD Monitor,1,149.99,07/11/19 18:18,"416 Walnut St, Dallas, TX 75001" +231060,AAA Batteries (4-pack),1,2.99,07/16/19 07:25,"266 Cherry St, San Francisco, CA 94016" +231061,Bose SoundSport Headphones,1,99.99,07/05/19 18:40,"726 2nd St, San Francisco, CA 94016" +231062,iPhone,1,700,07/22/19 08:40,"56 Lakeview St, Atlanta, GA 30301" +231063,Wired Headphones,1,11.99,07/04/19 15:51,"595 11th St, Portland, OR 97035" +231064,Apple Airpods Headphones,1,150,07/08/19 18:31,"648 12th St, New York City, NY 10001" +231065,AAA Batteries (4-pack),1,2.99,07/01/19 09:25,"574 12th St, Dallas, TX 75001" +231066,27in 4K Gaming Monitor,1,389.99,07/11/19 21:41,"436 Cedar St, Los Angeles, CA 90001" +231067,Bose SoundSport Headphones,1,99.99,07/04/19 19:51,"770 Lake St, Boston, MA 02215" +231068,27in FHD Monitor,1,149.99,07/27/19 02:05,"577 Willow St, Portland, OR 97035" +231068,Lightning Charging Cable,1,14.95,07/27/19 02:05,"577 Willow St, Portland, OR 97035" +231069,Wired Headphones,1,11.99,07/24/19 10:20,"229 Lakeview St, Portland, OR 97035" +231070,34in Ultrawide Monitor,1,379.99,07/16/19 21:25,"382 8th St, San Francisco, CA 94016" +231071,AA Batteries (4-pack),1,3.84,07/29/19 15:50,"763 2nd St, Los Angeles, CA 90001" +231072,USB-C Charging Cable,1,11.95,07/21/19 13:20,"410 Lincoln St, San Francisco, CA 94016" +231073,AAA Batteries (4-pack),2,2.99,07/16/19 10:58,"824 Lakeview St, San Francisco, CA 94016" +231074,Bose SoundSport Headphones,1,99.99,07/26/19 16:30,"880 Cherry St, Portland, OR 97035" +231075,Vareebadd Phone,1,400,07/11/19 18:54,"975 Chestnut St, Los Angeles, CA 90001" +231076,AA Batteries (4-pack),1,3.84,07/19/19 12:03,"352 Meadow St, Austin, TX 73301" +231077,Bose SoundSport Headphones,1,99.99,07/02/19 18:07,"916 6th St, Los Angeles, CA 90001" +231078,LG Dryer,1,600.0,07/21/19 11:22,"550 11th St, Seattle, WA 98101" +231079,Bose SoundSport Headphones,1,99.99,07/16/19 16:37,"16 Sunset St, New York City, NY 10001" +231080,Lightning Charging Cable,1,14.95,07/08/19 20:59,"67 Park St, Los Angeles, CA 90001" +231081,ThinkPad Laptop,1,999.99,07/09/19 19:38,"668 Chestnut St, Los Angeles, CA 90001" +231082,34in Ultrawide Monitor,1,379.99,07/27/19 16:01,"688 5th St, Atlanta, GA 30301" +231083,Macbook Pro Laptop,1,1700,07/07/19 13:55,"696 Hickory St, Atlanta, GA 30301" +231084,AA Batteries (4-pack),2,3.84,07/17/19 22:38,"625 Main St, Los Angeles, CA 90001" +231085,USB-C Charging Cable,1,11.95,07/10/19 16:11,"178 North St, Los Angeles, CA 90001" +231086,AA Batteries (4-pack),1,3.84,07/22/19 07:56,"277 Willow St, Los Angeles, CA 90001" +231087,Wired Headphones,1,11.99,07/03/19 19:53,"350 12th St, San Francisco, CA 94016" +231088,USB-C Charging Cable,1,11.95,07/29/19 14:06,"775 Madison St, Los Angeles, CA 90001" +231089,Vareebadd Phone,1,400,07/25/19 19:22,"360 11th St, Dallas, TX 75001" +231089,USB-C Charging Cable,1,11.95,07/25/19 19:22,"360 11th St, Dallas, TX 75001" +231089,Wired Headphones,1,11.99,07/25/19 19:22,"360 11th St, Dallas, TX 75001" +231090,AA Batteries (4-pack),1,3.84,07/05/19 14:27,"743 7th St, Portland, OR 97035" +231091,Macbook Pro Laptop,1,1700,07/15/19 19:59,"46 South St, San Francisco, CA 94016" +231092,Lightning Charging Cable,1,14.95,07/05/19 00:25,"789 7th St, Atlanta, GA 30301" +231093,Bose SoundSport Headphones,1,99.99,07/23/19 11:58,"516 7th St, New York City, NY 10001" +231094,USB-C Charging Cable,1,11.95,07/03/19 17:50,"557 River St, Los Angeles, CA 90001" +231095,ThinkPad Laptop,1,999.99,07/16/19 21:05,"396 Lake St, San Francisco, CA 94016" +231096,Wired Headphones,1,11.99,07/13/19 15:01,"587 14th St, New York City, NY 10001" +231097,Google Phone,1,600,07/01/19 17:26,"758 8th St, Los Angeles, CA 90001" +231097,USB-C Charging Cable,1,11.95,07/01/19 17:26,"758 8th St, Los Angeles, CA 90001" +231098,Vareebadd Phone,1,400,07/25/19 19:06,"698 Park St, Boston, MA 02215" +231099,Lightning Charging Cable,1,14.95,07/27/19 17:25,"967 14th St, Austin, TX 73301" +231100,USB-C Charging Cable,1,11.95,07/13/19 19:00,"754 6th St, Austin, TX 73301" +231101,Apple Airpods Headphones,1,150,07/04/19 10:12,"167 8th St, Portland, OR 97035" +231102,34in Ultrawide Monitor,1,379.99,07/06/19 18:42,"42 Willow St, San Francisco, CA 94016" +231103,Google Phone,1,600,07/18/19 16:41,"272 Hill St, San Francisco, CA 94016" +231104,27in 4K Gaming Monitor,1,389.99,07/06/19 08:33,"413 Hill St, Austin, TX 73301" +231105,Wired Headphones,1,11.99,07/11/19 18:26,"727 Park St, Seattle, WA 98101" +231106,34in Ultrawide Monitor,1,379.99,07/11/19 17:21,"165 11th St, San Francisco, CA 94016" +231107,Lightning Charging Cable,1,14.95,07/10/19 22:34,"997 14th St, Seattle, WA 98101" +231108,USB-C Charging Cable,2,11.95,07/06/19 18:52,"229 Sunset St, Portland, OR 97035" +231109,USB-C Charging Cable,1,11.95,07/18/19 11:19,"591 9th St, Los Angeles, CA 90001" +231110,AAA Batteries (4-pack),3,2.99,07/11/19 18:41,"668 Cherry St, San Francisco, CA 94016" +231111,Lightning Charging Cable,1,14.95,07/23/19 02:06,"451 North St, Los Angeles, CA 90001" +231112,AA Batteries (4-pack),1,3.84,07/03/19 18:07,"827 Washington St, Seattle, WA 98101" +231113,34in Ultrawide Monitor,1,379.99,07/17/19 11:25,"740 5th St, New York City, NY 10001" +231114,Wired Headphones,1,11.99,07/14/19 17:28,"81 8th St, San Francisco, CA 94016" +231115,Wired Headphones,1,11.99,07/27/19 22:05,"770 Meadow St, Boston, MA 02215" +231116,Bose SoundSport Headphones,1,99.99,07/04/19 18:37,"252 Ridge St, Portland, OR 97035" +231117,AAA Batteries (4-pack),1,2.99,07/17/19 22:42,"460 River St, Los Angeles, CA 90001" +231118,iPhone,1,700,07/28/19 13:15,"801 1st St, Boston, MA 02215" +231119,USB-C Charging Cable,1,11.95,07/19/19 10:42,"816 4th St, Los Angeles, CA 90001" +231120,Vareebadd Phone,1,400,07/02/19 20:28,"640 13th St, Boston, MA 02215" +231120,USB-C Charging Cable,1,11.95,07/02/19 20:28,"640 13th St, Boston, MA 02215" +231121,AAA Batteries (4-pack),1,2.99,07/06/19 16:00,"374 Lakeview St, Atlanta, GA 30301" +231122,Apple Airpods Headphones,1,150,07/15/19 08:04,"500 1st St, New York City, NY 10001" +231123,USB-C Charging Cable,1,11.95,07/25/19 23:09,"151 Madison St, Dallas, TX 75001" +231124,AAA Batteries (4-pack),1,2.99,07/02/19 09:17,"671 5th St, San Francisco, CA 94016" +231125,ThinkPad Laptop,1,999.99,07/06/19 15:51,"229 6th St, Seattle, WA 98101" +231126,27in FHD Monitor,1,149.99,07/29/19 13:29,"960 8th St, Atlanta, GA 30301" +231127,Wired Headphones,1,11.99,07/04/19 10:22,"280 Chestnut St, New York City, NY 10001" +231128,Lightning Charging Cable,1,14.95,07/29/19 23:41,"462 Lincoln St, Dallas, TX 75001" +231129,LG Dryer,1,600.0,07/01/19 15:30,"601 Ridge St, Austin, TX 73301" +231130,20in Monitor,1,109.99,07/23/19 12:55,"841 9th St, New York City, NY 10001" +231131,USB-C Charging Cable,1,11.95,07/02/19 01:14,"428 Maple St, Boston, MA 02215" +231132,AA Batteries (4-pack),1,3.84,07/30/19 12:52,"479 5th St, San Francisco, CA 94016" +231133,Flatscreen TV,1,300,07/25/19 03:18,"812 7th St, New York City, NY 10001" +231134,Apple Airpods Headphones,1,150,07/02/19 10:24,"11 Washington St, Los Angeles, CA 90001" +231135,AAA Batteries (4-pack),1,2.99,07/14/19 11:56,"640 10th St, Dallas, TX 75001" +231136,USB-C Charging Cable,1,11.95,07/02/19 16:28,"206 Wilson St, Los Angeles, CA 90001" +231137,Macbook Pro Laptop,1,1700,07/26/19 17:39,"431 South St, Los Angeles, CA 90001" +231138,AA Batteries (4-pack),1,3.84,07/02/19 21:10,"73 10th St, San Francisco, CA 94016" +231139,Lightning Charging Cable,1,14.95,07/13/19 18:59,"326 4th St, Portland, ME 04101" +231140,Google Phone,1,600,07/04/19 23:17,"898 Cherry St, Atlanta, GA 30301" +231141,AAA Batteries (4-pack),1,2.99,07/03/19 09:31,"544 Pine St, San Francisco, CA 94016" +231142,Apple Airpods Headphones,1,150,07/30/19 19:33,"738 Meadow St, San Francisco, CA 94016" +231143,AA Batteries (4-pack),2,3.84,07/21/19 01:02,"197 Forest St, Boston, MA 02215" +231144,AAA Batteries (4-pack),2,2.99,07/03/19 16:18,"367 Cherry St, Boston, MA 02215" +231145,AA Batteries (4-pack),1,3.84,07/01/19 23:52,"206 Willow St, Dallas, TX 75001" +231146,USB-C Charging Cable,2,11.95,07/03/19 05:20,"903 Highland St, San Francisco, CA 94016" +231147,Bose SoundSport Headphones,1,99.99,07/21/19 14:12,"382 2nd St, Los Angeles, CA 90001" +231148,USB-C Charging Cable,1,11.95,07/31/19 20:26,"664 6th St, San Francisco, CA 94016" +231149,Bose SoundSport Headphones,1,99.99,07/07/19 17:11,"530 Hickory St, New York City, NY 10001" +231150,Lightning Charging Cable,1,14.95,07/03/19 21:33,"887 River St, Atlanta, GA 30301" +231151,Wired Headphones,1,11.99,07/10/19 17:39,"392 11th St, Los Angeles, CA 90001" +231152,USB-C Charging Cable,1,11.95,07/18/19 11:12,"21 Walnut St, New York City, NY 10001" +231153,AA Batteries (4-pack),1,3.84,07/20/19 18:58,"854 Sunset St, Seattle, WA 98101" +231154,Wired Headphones,1,11.99,07/12/19 13:11,"751 Sunset St, Dallas, TX 75001" +231155,iPhone,1,700,07/29/19 19:06,"880 12th St, Seattle, WA 98101" +231155,Lightning Charging Cable,2,14.95,07/29/19 19:06,"880 12th St, Seattle, WA 98101" +231156,34in Ultrawide Monitor,1,379.99,07/14/19 22:33,"442 Jackson St, Los Angeles, CA 90001" +231157,AAA Batteries (4-pack),1,2.99,07/08/19 09:03,"312 12th St, Los Angeles, CA 90001" +231158,27in FHD Monitor,1,149.99,07/31/19 20:56,"317 Park St, Atlanta, GA 30301" +231159,AAA Batteries (4-pack),2,2.99,07/28/19 21:07,"409 Madison St, Atlanta, GA 30301" +231160,Lightning Charging Cable,1,14.95,07/18/19 09:06,"245 North St, San Francisco, CA 94016" +231161,AAA Batteries (4-pack),1,2.99,07/04/19 11:14,"709 8th St, Seattle, WA 98101" +231162,AAA Batteries (4-pack),1,2.99,07/20/19 14:19,"134 Dogwood St, San Francisco, CA 94016" +231163,USB-C Charging Cable,1,11.95,07/19/19 16:34,"184 2nd St, Dallas, TX 75001" +231164,LG Washing Machine,1,600.0,07/30/19 14:05,"317 Walnut St, Seattle, WA 98101" +231165,27in 4K Gaming Monitor,1,389.99,07/28/19 14:00,"836 4th St, Austin, TX 73301" +231166,AA Batteries (4-pack),1,3.84,07/25/19 19:35,"67 Sunset St, Boston, MA 02215" +231167,AAA Batteries (4-pack),1,2.99,07/08/19 15:04,"67 5th St, New York City, NY 10001" +231168,Lightning Charging Cable,1,14.95,07/08/19 12:47,"71 Meadow St, Atlanta, GA 30301" +231169,Google Phone,1,600,07/16/19 09:30,"483 Cedar St, Los Angeles, CA 90001" +231169,Bose SoundSport Headphones,1,99.99,07/16/19 09:30,"483 Cedar St, Los Angeles, CA 90001" +231170,AAA Batteries (4-pack),1,2.99,07/26/19 19:28,"461 Cherry St, Los Angeles, CA 90001" +231171,27in 4K Gaming Monitor,1,389.99,07/11/19 18:00,"196 North St, Seattle, WA 98101" +231172,Lightning Charging Cable,1,14.95,07/14/19 11:14,"553 Lincoln St, Portland, ME 04101" +231173,USB-C Charging Cable,1,11.95,07/27/19 20:25,"341 Church St, Atlanta, GA 30301" +231174,USB-C Charging Cable,1,11.95,07/27/19 21:00,"918 Forest St, Portland, OR 97035" +231175,27in 4K Gaming Monitor,1,389.99,07/23/19 19:25,"544 Jackson St, Dallas, TX 75001" +231176,Wired Headphones,1,11.99,07/28/19 18:40,"104 Center St, Los Angeles, CA 90001" +231177,Wired Headphones,1,11.99,07/11/19 16:44,"923 Johnson St, Dallas, TX 75001" +231178,Bose SoundSport Headphones,1,99.99,07/05/19 11:52,"252 Dogwood St, New York City, NY 10001" +231179,Lightning Charging Cable,1,14.95,07/18/19 17:21,"639 1st St, San Francisco, CA 94016" +231180,Bose SoundSport Headphones,1,99.99,07/19/19 13:31,"198 6th St, New York City, NY 10001" +231181,Wired Headphones,1,11.99,07/25/19 10:13,"490 Park St, San Francisco, CA 94016" +231182,Google Phone,1,600,07/07/19 15:02,"43 Lakeview St, Portland, OR 97035" +231183,AA Batteries (4-pack),1,3.84,07/03/19 22:37,"236 Adams St, Austin, TX 73301" +231184,Lightning Charging Cable,1,14.95,07/20/19 23:05,"708 Lake St, San Francisco, CA 94016" +231185,Apple Airpods Headphones,1,150,07/15/19 12:48,"998 Spruce St, Seattle, WA 98101" +231186,Bose SoundSport Headphones,1,99.99,07/31/19 17:26,"340 Washington St, Los Angeles, CA 90001" +231187,Macbook Pro Laptop,1,1700,07/26/19 04:38,"41 Lake St, San Francisco, CA 94016" +231188,34in Ultrawide Monitor,1,379.99,07/19/19 13:36,"731 Cedar St, New York City, NY 10001" +231189,Lightning Charging Cable,2,14.95,07/27/19 14:19,"210 Park St, San Francisco, CA 94016" +231190,Wired Headphones,2,11.99,07/25/19 12:13,"148 West St, Dallas, TX 75001" +231191,Wired Headphones,1,11.99,07/28/19 07:06,"890 Maple St, Atlanta, GA 30301" +231192,USB-C Charging Cable,1,11.95,07/24/19 18:39,"125 1st St, New York City, NY 10001" +231193,USB-C Charging Cable,1,11.95,07/15/19 13:24,"959 Highland St, New York City, NY 10001" +231194,Apple Airpods Headphones,1,150,07/29/19 22:54,"693 Hill St, New York City, NY 10001" +231195,AA Batteries (4-pack),1,3.84,07/30/19 15:16,"596 13th St, Los Angeles, CA 90001" +231196,AAA Batteries (4-pack),2,2.99,07/27/19 14:13,"300 12th St, San Francisco, CA 94016" +231197,USB-C Charging Cable,1,11.95,07/22/19 16:26,"251 11th St, New York City, NY 10001" +231198,Google Phone,1,600,07/11/19 23:12,"153 Maple St, Atlanta, GA 30301" +231199,AAA Batteries (4-pack),1,2.99,07/07/19 11:35,"680 Spruce St, New York City, NY 10001" +231200,AAA Batteries (4-pack),1,2.99,07/25/19 19:29,"558 Park St, Dallas, TX 75001" +231201,USB-C Charging Cable,1,11.95,07/30/19 20:53,"559 North St, Los Angeles, CA 90001" +231202,AAA Batteries (4-pack),1,2.99,07/29/19 10:24,"700 Cedar St, Seattle, WA 98101" +231203,Macbook Pro Laptop,1,1700,07/24/19 11:59,"530 Pine St, Los Angeles, CA 90001" +231204,27in 4K Gaming Monitor,1,389.99,07/06/19 12:14,"576 Church St, Boston, MA 02215" +231205,20in Monitor,1,109.99,07/12/19 21:42,"64 Wilson St, New York City, NY 10001" +231206,AA Batteries (4-pack),1,3.84,07/12/19 17:48,"683 Hickory St, San Francisco, CA 94016" +231207,AAA Batteries (4-pack),1,2.99,07/01/19 12:21,"492 Pine St, Atlanta, GA 30301" +231208,Lightning Charging Cable,1,14.95,07/21/19 19:34,"143 Dogwood St, San Francisco, CA 94016" +231209,Wired Headphones,1,11.99,07/09/19 02:45,"82 Church St, Boston, MA 02215" +231210,iPhone,1,700,07/03/19 12:49,"202 Jackson St, Dallas, TX 75001" +231211,AA Batteries (4-pack),1,3.84,07/24/19 10:32,"857 1st St, Austin, TX 73301" +231212,USB-C Charging Cable,1,11.95,07/03/19 21:33,"830 West St, New York City, NY 10001" +231213,USB-C Charging Cable,1,11.95,07/26/19 19:28,"127 Sunset St, New York City, NY 10001" +231214,Lightning Charging Cable,1,14.95,07/28/19 22:30,"504 Maple St, Dallas, TX 75001" +231214,USB-C Charging Cable,1,11.95,07/28/19 22:30,"504 Maple St, Dallas, TX 75001" +231215,USB-C Charging Cable,2,11.95,07/12/19 12:44,"165 Cherry St, Seattle, WA 98101" +231216,Macbook Pro Laptop,1,1700,07/13/19 19:50,"251 Sunset St, San Francisco, CA 94016" +231217,Lightning Charging Cable,1,14.95,07/18/19 11:27,"142 Jackson St, San Francisco, CA 94016" +231218,Apple Airpods Headphones,1,150,07/22/19 13:26,"720 1st St, San Francisco, CA 94016" +231219,Apple Airpods Headphones,1,150,07/15/19 20:07,"683 Washington St, New York City, NY 10001" +231220,Bose SoundSport Headphones,1,99.99,07/04/19 17:32,"533 8th St, Atlanta, GA 30301" +231221,AAA Batteries (4-pack),1,2.99,07/17/19 20:12,"31 West St, Los Angeles, CA 90001" +231222,34in Ultrawide Monitor,1,379.99,07/29/19 14:01,"640 7th St, Seattle, WA 98101" +231223,Bose SoundSport Headphones,1,99.99,07/13/19 04:45,"424 Elm St, Boston, MA 02215" +231224,ThinkPad Laptop,1,999.99,07/22/19 21:07,"949 Park St, Boston, MA 02215" +231225,USB-C Charging Cable,1,11.95,07/15/19 19:41,"450 Jefferson St, Los Angeles, CA 90001" +231226,Apple Airpods Headphones,1,150,07/16/19 15:20,"817 Hill St, San Francisco, CA 94016" +231227,Apple Airpods Headphones,1,150,07/23/19 16:36,"397 Madison St, New York City, NY 10001" +231228,AAA Batteries (4-pack),3,2.99,07/12/19 21:45,"193 Walnut St, San Francisco, CA 94016" +231229,27in FHD Monitor,1,149.99,07/26/19 21:10,"639 Pine St, San Francisco, CA 94016" +231230,Wired Headphones,1,11.99,07/22/19 17:49,"110 4th St, San Francisco, CA 94016" +231231,AA Batteries (4-pack),1,3.84,07/11/19 17:41,"203 Jackson St, Atlanta, GA 30301" +231232,iPhone,1,700,07/01/19 13:44,"298 Main St, Boston, MA 02215" +231233,AAA Batteries (4-pack),1,2.99,07/18/19 14:44,"100 4th St, San Francisco, CA 94016" +231234,iPhone,1,700,07/16/19 14:45,"909 Meadow St, Seattle, WA 98101" +231235,Google Phone,1,600,07/29/19 21:17,"660 Hill St, New York City, NY 10001" +231235,Bose SoundSport Headphones,1,99.99,07/29/19 21:17,"660 Hill St, New York City, NY 10001" +231236,Apple Airpods Headphones,1,150,07/16/19 13:31,"792 Jefferson St, San Francisco, CA 94016" +231237,Lightning Charging Cable,1,14.95,07/24/19 11:55,"325 14th St, San Francisco, CA 94016" +231238,iPhone,1,700,07/19/19 12:04,"262 Park St, Los Angeles, CA 90001" +231239,Google Phone,1,600,07/23/19 09:55,"80 10th St, Boston, MA 02215" +231240,AA Batteries (4-pack),1,3.84,07/24/19 00:04,"964 Adams St, New York City, NY 10001" +231241,Apple Airpods Headphones,1,150,07/24/19 14:11,"526 10th St, Los Angeles, CA 90001" +231242,USB-C Charging Cable,1,11.95,07/15/19 21:04,"682 Main St, Boston, MA 02215" +231243,Google Phone,1,600,07/09/19 15:01,"22 Willow St, Seattle, WA 98101" +231243,USB-C Charging Cable,1,11.95,07/09/19 15:01,"22 Willow St, Seattle, WA 98101" +231244,Lightning Charging Cable,1,14.95,07/05/19 11:02,"569 Willow St, San Francisco, CA 94016" +231245,AA Batteries (4-pack),1,3.84,07/08/19 21:17,"839 Meadow St, San Francisco, CA 94016" +231246,Bose SoundSport Headphones,1,99.99,07/14/19 16:58,"596 10th St, Atlanta, GA 30301" +231247,Google Phone,1,600,07/25/19 22:09,"448 Highland St, Los Angeles, CA 90001" +231248,27in FHD Monitor,1,149.99,07/15/19 19:43,"461 Madison St, Los Angeles, CA 90001" +231249,Vareebadd Phone,1,400,07/14/19 18:22,"876 13th St, Boston, MA 02215" +231250,27in 4K Gaming Monitor,1,389.99,07/22/19 03:47,"937 14th St, San Francisco, CA 94016" +231251,AAA Batteries (4-pack),3,2.99,07/17/19 06:03,"978 Cherry St, Los Angeles, CA 90001" +231252,USB-C Charging Cable,1,11.95,07/26/19 22:28,"498 Lincoln St, Austin, TX 73301" +231253,Flatscreen TV,1,300,07/01/19 18:41,"676 Washington St, Boston, MA 02215" +231254,Wired Headphones,1,11.99,07/26/19 20:42,"374 Washington St, New York City, NY 10001" +231255,AAA Batteries (4-pack),3,2.99,07/18/19 20:26,"708 11th St, New York City, NY 10001" +231256,AA Batteries (4-pack),1,3.84,07/03/19 00:21,"618 Cherry St, Portland, ME 04101" +231257,Bose SoundSport Headphones,1,99.99,07/31/19 09:27,"933 Cherry St, San Francisco, CA 94016" +231258,AAA Batteries (4-pack),2,2.99,07/14/19 20:10,"599 Madison St, Los Angeles, CA 90001" +231259,Wired Headphones,1,11.99,07/18/19 11:09,"62 North St, San Francisco, CA 94016" +231260,USB-C Charging Cable,1,11.95,07/13/19 19:40,"951 Elm St, Dallas, TX 75001" +231261,Vareebadd Phone,1,400,07/04/19 18:45,"622 Lakeview St, San Francisco, CA 94016" +231262,AA Batteries (4-pack),2,3.84,07/01/19 17:17,"800 North St, Dallas, TX 75001" +231263,20in Monitor,1,109.99,07/14/19 17:05,"40 Wilson St, Seattle, WA 98101" +231264,Apple Airpods Headphones,1,150,07/22/19 18:00,"840 Chestnut St, Seattle, WA 98101" +231265,27in FHD Monitor,1,149.99,07/20/19 10:59,"917 Pine St, San Francisco, CA 94016" +231265,USB-C Charging Cable,1,11.95,07/20/19 10:59,"917 Pine St, San Francisco, CA 94016" +231266,Lightning Charging Cable,1,14.95,07/10/19 05:09,"568 West St, New York City, NY 10001" +231267,20in Monitor,1,109.99,07/03/19 22:46,"306 Dogwood St, Dallas, TX 75001" +231268,AAA Batteries (4-pack),1,2.99,07/11/19 07:21,"528 Park St, San Francisco, CA 94016" +231269,AAA Batteries (4-pack),1,2.99,07/13/19 21:05,"825 Hill St, New York City, NY 10001" +231270,USB-C Charging Cable,1,11.95,07/27/19 10:52,"517 Pine St, Atlanta, GA 30301" +231271,AA Batteries (4-pack),2,3.84,07/31/19 13:17,"481 Jefferson St, Atlanta, GA 30301" +231272,Lightning Charging Cable,1,14.95,07/21/19 18:48,"448 Lincoln St, Los Angeles, CA 90001" +231273,Apple Airpods Headphones,1,150,07/24/19 20:37,"225 13th St, Los Angeles, CA 90001" +231274,Bose SoundSport Headphones,1,99.99,07/31/19 08:12,"748 Church St, New York City, NY 10001" +231275,Apple Airpods Headphones,1,150,07/01/19 16:40,"716 Park St, San Francisco, CA 94016" +231276,AAA Batteries (4-pack),1,2.99,07/16/19 04:56,"10 7th St, Los Angeles, CA 90001" +231277,USB-C Charging Cable,1,11.95,07/11/19 11:04,"889 Jefferson St, New York City, NY 10001" +231278,Lightning Charging Cable,1,14.95,07/28/19 15:38,"130 Jefferson St, New York City, NY 10001" +231279,AAA Batteries (4-pack),1,2.99,07/08/19 15:26,"14 Lincoln St, Seattle, WA 98101" +231280,AA Batteries (4-pack),2,3.84,07/20/19 20:53,"297 Adams St, Seattle, WA 98101" +231281,Wired Headphones,1,11.99,07/15/19 11:42,"744 11th St, Portland, OR 97035" +231282,Lightning Charging Cable,1,14.95,07/22/19 21:36,"221 Meadow St, Boston, MA 02215" +231283,Wired Headphones,1,11.99,07/18/19 13:26,"138 Sunset St, Boston, MA 02215" +231284,Wired Headphones,1,11.99,07/18/19 14:17,"143 Center St, Austin, TX 73301" +231285,USB-C Charging Cable,1,11.95,07/19/19 18:44,"103 Chestnut St, Boston, MA 02215" +231286,Macbook Pro Laptop,1,1700,07/26/19 16:45,"189 9th St, Seattle, WA 98101" +231287,USB-C Charging Cable,1,11.95,07/18/19 11:01,"513 Walnut St, San Francisco, CA 94016" +231288,AAA Batteries (4-pack),1,2.99,07/21/19 15:19,"88 Center St, San Francisco, CA 94016" +231289,Bose SoundSport Headphones,1,99.99,07/26/19 17:57,"976 Hickory St, San Francisco, CA 94016" +231290,Google Phone,1,600,07/30/19 13:57,"803 Spruce St, Austin, TX 73301" +231291,AAA Batteries (4-pack),2,2.99,07/10/19 00:42,"642 12th St, Los Angeles, CA 90001" +231292,Lightning Charging Cable,1,14.95,07/12/19 02:34,"605 West St, Los Angeles, CA 90001" +231293,Lightning Charging Cable,1,14.95,07/14/19 20:22,"715 Jefferson St, Austin, TX 73301" +231294,Wired Headphones,1,11.99,07/02/19 20:26,"602 11th St, San Francisco, CA 94016" +231295,Bose SoundSport Headphones,1,99.99,07/04/19 22:04,"347 Lakeview St, New York City, NY 10001" +231296,Lightning Charging Cable,1,14.95,07/13/19 23:14,"437 4th St, Austin, TX 73301" +231297,27in 4K Gaming Monitor,1,389.99,07/11/19 09:11,"928 Meadow St, Los Angeles, CA 90001" +231298,AA Batteries (4-pack),1,3.84,07/10/19 20:18,"3 Elm St, San Francisco, CA 94016" +231299,27in 4K Gaming Monitor,1,389.99,07/04/19 15:34,"851 Pine St, Austin, TX 73301" +231300,Google Phone,1,600,07/15/19 14:46,"108 Forest St, Austin, TX 73301" +231301,27in FHD Monitor,1,149.99,07/24/19 23:24,"853 12th St, Seattle, WA 98101" +231302,AA Batteries (4-pack),1,3.84,07/08/19 15:05,"736 Maple St, Boston, MA 02215" +231303,Wired Headphones,1,11.99,07/06/19 13:13,"307 14th St, Dallas, TX 75001" +231304,Wired Headphones,1,11.99,07/17/19 09:13,"471 Sunset St, San Francisco, CA 94016" +231305,Apple Airpods Headphones,1,150,07/13/19 15:08,"930 Walnut St, Boston, MA 02215" +231306,AA Batteries (4-pack),1,3.84,07/11/19 21:07,"783 South St, Los Angeles, CA 90001" +231307,Apple Airpods Headphones,1,150,07/15/19 17:10,"393 5th St, New York City, NY 10001" +231308,AA Batteries (4-pack),2,3.84,07/17/19 01:30,"285 Willow St, Los Angeles, CA 90001" +231309,20in Monitor,1,109.99,07/17/19 20:19,"733 Dogwood St, Dallas, TX 75001" +231310,Apple Airpods Headphones,1,150,07/30/19 23:33,"203 Willow St, San Francisco, CA 94016" +231311,AA Batteries (4-pack),2,3.84,07/16/19 23:00,"24 Meadow St, Portland, OR 97035" +231312,AA Batteries (4-pack),1,3.84,07/18/19 17:19,"35 Lincoln St, Boston, MA 02215" +231313,Apple Airpods Headphones,1,150,07/06/19 22:31,"956 Lake St, Austin, TX 73301" +231314,Bose SoundSport Headphones,1,99.99,07/25/19 18:11,"472 Johnson St, Los Angeles, CA 90001" +231315,20in Monitor,1,109.99,07/02/19 14:48,"941 Pine St, Boston, MA 02215" +231316,20in Monitor,1,109.99,07/13/19 20:05,"295 2nd St, New York City, NY 10001" +231317,Apple Airpods Headphones,1,150,07/07/19 10:55,"749 Elm St, New York City, NY 10001" +231318,AAA Batteries (4-pack),1,2.99,07/13/19 18:22,"414 Center St, San Francisco, CA 94016" +231319,27in FHD Monitor,1,149.99,07/16/19 15:02,"556 11th St, Los Angeles, CA 90001" +231320,Wired Headphones,1,11.99,07/01/19 17:12,"191 13th St, Boston, MA 02215" +231321,AA Batteries (4-pack),2,3.84,07/03/19 20:00,"539 4th St, Boston, MA 02215" +231322,AA Batteries (4-pack),1,3.84,07/14/19 18:00,"160 Walnut St, Atlanta, GA 30301" +231323,USB-C Charging Cable,1,11.95,07/03/19 16:05,"958 Meadow St, Dallas, TX 75001" +231324,Flatscreen TV,1,300,07/06/19 08:45,"866 Highland St, San Francisco, CA 94016" +231325,AAA Batteries (4-pack),1,2.99,07/17/19 21:22,"897 7th St, Dallas, TX 75001" +231326,AAA Batteries (4-pack),1,2.99,07/25/19 15:11,"491 River St, Atlanta, GA 30301" +231327,Bose SoundSport Headphones,1,99.99,07/22/19 08:19,"453 14th St, New York City, NY 10001" +231328,Wired Headphones,1,11.99,07/05/19 15:42,"43 4th St, Seattle, WA 98101" +231329,AA Batteries (4-pack),1,3.84,07/03/19 08:33,"388 Madison St, San Francisco, CA 94016" +231330,Lightning Charging Cable,1,14.95,07/29/19 05:20,"741 Park St, San Francisco, CA 94016" +231331,AA Batteries (4-pack),1,3.84,07/23/19 11:46,"862 North St, Atlanta, GA 30301" +231332,AA Batteries (4-pack),1,3.84,07/06/19 16:21,"522 Washington St, Boston, MA 02215" +231333,AA Batteries (4-pack),1,3.84,07/07/19 00:44,"774 6th St, New York City, NY 10001" +231334,AA Batteries (4-pack),1,3.84,07/30/19 16:46,"792 Pine St, Boston, MA 02215" +231335,Bose SoundSport Headphones,1,99.99,07/30/19 20:47,"533 Johnson St, Los Angeles, CA 90001" +231336,USB-C Charging Cable,1,11.95,07/12/19 10:54,"127 Maple St, New York City, NY 10001" +231337,Google Phone,1,600,07/20/19 18:32,"325 Lincoln St, Los Angeles, CA 90001" +231337,USB-C Charging Cable,2,11.95,07/20/19 18:32,"325 Lincoln St, Los Angeles, CA 90001" +231338,USB-C Charging Cable,1,11.95,07/14/19 19:28,"147 Ridge St, New York City, NY 10001" +231339,AA Batteries (4-pack),1,3.84,07/07/19 12:16,"490 River St, Los Angeles, CA 90001" +231340,Wired Headphones,1,11.99,07/27/19 08:18,"763 Johnson St, New York City, NY 10001" +231341,Lightning Charging Cable,1,14.95,07/20/19 22:08,"255 Cherry St, Austin, TX 73301" +231342,USB-C Charging Cable,1,11.95,07/09/19 21:03,"432 Washington St, San Francisco, CA 94016" +231343,iPhone,1,700,07/21/19 11:03,"912 7th St, Dallas, TX 75001" +231344,Apple Airpods Headphones,1,150,07/09/19 20:47,"344 Wilson St, San Francisco, CA 94016" +231345,27in 4K Gaming Monitor,1,389.99,07/13/19 16:19,"345 7th St, San Francisco, CA 94016" +231346,iPhone,1,700,07/20/19 13:12,"97 Church St, San Francisco, CA 94016" +231346,Lightning Charging Cable,1,14.95,07/20/19 13:12,"97 Church St, San Francisco, CA 94016" +231347,Flatscreen TV,1,300,07/09/19 09:30,"156 Spruce St, Seattle, WA 98101" +231348,Bose SoundSport Headphones,1,99.99,07/19/19 19:04,"507 Walnut St, San Francisco, CA 94016" +231349,AA Batteries (4-pack),1,3.84,07/21/19 17:20,"871 Washington St, San Francisco, CA 94016" +231350,27in FHD Monitor,1,149.99,07/04/19 07:50,"716 Jefferson St, New York City, NY 10001" +231351,ThinkPad Laptop,1,999.99,07/09/19 20:17,"162 South St, San Francisco, CA 94016" +231352,27in FHD Monitor,1,149.99,07/29/19 19:59,"423 8th St, Portland, ME 04101" +231353,AAA Batteries (4-pack),1,2.99,07/21/19 13:06,"943 4th St, Atlanta, GA 30301" +231354,Wired Headphones,1,11.99,07/24/19 11:04,"535 10th St, New York City, NY 10001" +231355,Apple Airpods Headphones,1,150,07/11/19 06:11,"382 Cherry St, Los Angeles, CA 90001" +231356,Wired Headphones,1,11.99,07/29/19 12:03,"595 10th St, Los Angeles, CA 90001" +231357,AAA Batteries (4-pack),2,2.99,07/12/19 15:55,"100 Sunset St, Seattle, WA 98101" +231358,Bose SoundSport Headphones,1,99.99,07/11/19 09:51,"752 Cedar St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +231359,Flatscreen TV,1,300,07/26/19 18:49,"812 Jefferson St, Atlanta, GA 30301" +231360,ThinkPad Laptop,1,999.99,07/08/19 13:46,"447 6th St, Portland, OR 97035" +231361,USB-C Charging Cable,1,11.95,07/27/19 18:58,"175 Lincoln St, Portland, OR 97035" +231362,34in Ultrawide Monitor,1,379.99,07/27/19 10:40,"815 11th St, Dallas, TX 75001" +231363,USB-C Charging Cable,1,11.95,07/03/19 19:09,"491 Jackson St, Boston, MA 02215" +231364,Apple Airpods Headphones,1,150,07/16/19 23:31,"730 North St, San Francisco, CA 94016" +231365,Bose SoundSport Headphones,1,99.99,07/03/19 17:56,"216 Walnut St, Boston, MA 02215" +231366,27in FHD Monitor,1,149.99,07/13/19 03:38,"532 River St, Portland, OR 97035" +231367,AA Batteries (4-pack),1,3.84,07/20/19 18:42,"19 2nd St, Portland, OR 97035" +,,,,, +231368,AA Batteries (4-pack),1,3.84,07/06/19 07:52,"609 9th St, San Francisco, CA 94016" +231369,Lightning Charging Cable,1,14.95,07/26/19 17:45,"947 Pine St, Boston, MA 02215" +231370,AA Batteries (4-pack),1,3.84,07/15/19 11:43,"195 River St, New York City, NY 10001" +231371,34in Ultrawide Monitor,1,379.99,07/19/19 15:51,"571 Walnut St, San Francisco, CA 94016" +231372,Apple Airpods Headphones,1,150,07/26/19 14:25,"483 South St, Boston, MA 02215" +231373,Apple Airpods Headphones,1,150,07/10/19 17:06,"492 Elm St, Seattle, WA 98101" +231374,AAA Batteries (4-pack),1,2.99,07/08/19 11:04,"684 11th St, Seattle, WA 98101" +231375,Lightning Charging Cable,1,14.95,07/28/19 20:23,"655 Cherry St, San Francisco, CA 94016" +231376,Macbook Pro Laptop,1,1700,07/27/19 18:28,"702 14th St, San Francisco, CA 94016" +231377,AA Batteries (4-pack),1,3.84,07/04/19 21:43,"18 West St, Boston, MA 02215" +231378,Bose SoundSport Headphones,1,99.99,07/08/19 01:31,"421 River St, Boston, MA 02215" +231379,USB-C Charging Cable,2,11.95,07/30/19 09:13,"430 Cedar St, San Francisco, CA 94016" +231380,Apple Airpods Headphones,1,150,07/08/19 08:03,"956 5th St, Atlanta, GA 30301" +231381,USB-C Charging Cable,2,11.95,07/20/19 15:12,"84 10th St, San Francisco, CA 94016" +231382,Wired Headphones,1,11.99,07/01/19 06:36,"910 Park St, Austin, TX 73301" +231383,Lightning Charging Cable,2,14.95,07/19/19 21:01,"487 Lake St, Dallas, TX 75001" +231384,AAA Batteries (4-pack),1,2.99,07/20/19 17:23,"367 Johnson St, San Francisco, CA 94016" +231385,Google Phone,1,600,07/17/19 16:56,"925 Washington St, Dallas, TX 75001" +231385,USB-C Charging Cable,1,11.95,07/17/19 16:56,"925 Washington St, Dallas, TX 75001" +231386,AA Batteries (4-pack),1,3.84,07/29/19 21:37,"145 8th St, Atlanta, GA 30301" +231387,Lightning Charging Cable,1,14.95,07/21/19 11:21,"930 14th St, Seattle, WA 98101" +231388,Bose SoundSport Headphones,1,99.99,07/15/19 10:12,"622 Hill St, Austin, TX 73301" +231389,AAA Batteries (4-pack),1,2.99,07/17/19 21:00,"870 9th St, Austin, TX 73301" +231390,27in 4K Gaming Monitor,1,389.99,07/27/19 20:58,"880 14th St, Los Angeles, CA 90001" +231391,USB-C Charging Cable,1,11.95,07/04/19 17:18,"365 Johnson St, Atlanta, GA 30301" +231392,USB-C Charging Cable,1,11.95,07/11/19 00:49,"69 Jackson St, San Francisco, CA 94016" +231393,AA Batteries (4-pack),1,3.84,07/09/19 13:14,"544 Madison St, New York City, NY 10001" +231394,AAA Batteries (4-pack),1,2.99,07/27/19 13:58,"309 Wilson St, Los Angeles, CA 90001" +231395,Macbook Pro Laptop,1,1700,07/06/19 10:39,"356 Dogwood St, Austin, TX 73301" +231396,ThinkPad Laptop,1,999.99,07/05/19 11:08,"487 West St, Boston, MA 02215" +231396,Google Phone,1,600,07/05/19 11:08,"487 West St, Boston, MA 02215" +231397,USB-C Charging Cable,1,11.95,07/12/19 18:46,"126 Madison St, Dallas, TX 75001" +231398,AA Batteries (4-pack),1,3.84,07/03/19 22:23,"485 Wilson St, Austin, TX 73301" +231399,AA Batteries (4-pack),1,3.84,07/25/19 06:09,"839 Park St, Seattle, WA 98101" +231400,Bose SoundSport Headphones,1,99.99,07/27/19 02:07,"51 6th St, San Francisco, CA 94016" +231401,Bose SoundSport Headphones,1,99.99,07/05/19 19:07,"959 8th St, Atlanta, GA 30301" +231402,Lightning Charging Cable,1,14.95,07/28/19 17:13,"365 Lincoln St, Boston, MA 02215" +231403,USB-C Charging Cable,1,11.95,07/06/19 17:15,"861 Hill St, Los Angeles, CA 90001" +231404,Wired Headphones,1,11.99,07/30/19 19:54,"979 Dogwood St, Boston, MA 02215" +231405,Bose SoundSport Headphones,1,99.99,07/10/19 15:05,"506 Adams St, Seattle, WA 98101" +231406,Bose SoundSport Headphones,1,99.99,07/19/19 18:44,"875 Maple St, San Francisco, CA 94016" +231407,Apple Airpods Headphones,1,150,07/12/19 20:39,"528 Lake St, Seattle, WA 98101" +231408,Vareebadd Phone,1,400,07/02/19 12:35,"217 2nd St, Austin, TX 73301" +231409,Macbook Pro Laptop,1,1700,07/12/19 09:18,"503 Park St, New York City, NY 10001" +231410,20in Monitor,1,109.99,07/23/19 16:14,"222 Main St, Seattle, WA 98101" +231411,Macbook Pro Laptop,1,1700,07/25/19 17:27,"772 10th St, Los Angeles, CA 90001" +231412,Lightning Charging Cable,1,14.95,07/03/19 08:59,"37 10th St, New York City, NY 10001" +231413,Bose SoundSport Headphones,1,99.99,07/09/19 09:45,"729 Pine St, Boston, MA 02215" +231414,Apple Airpods Headphones,1,150,07/04/19 08:47,"500 11th St, New York City, NY 10001" +231415,AAA Batteries (4-pack),3,2.99,07/18/19 14:55,"313 14th St, Atlanta, GA 30301" +231416,Bose SoundSport Headphones,1,99.99,07/27/19 12:11,"95 Maple St, Portland, OR 97035" +231417,AAA Batteries (4-pack),1,2.99,07/05/19 20:10,"399 Washington St, San Francisco, CA 94016" +231418,AA Batteries (4-pack),4,3.84,07/13/19 18:53,"61 Lake St, Seattle, WA 98101" +231419,27in 4K Gaming Monitor,1,389.99,07/04/19 22:03,"983 River St, Portland, OR 97035" +231420,iPhone,1,700,07/22/19 07:46,"264 4th St, Portland, OR 97035" +231421,USB-C Charging Cable,1,11.95,07/03/19 16:33,"291 8th St, Atlanta, GA 30301" +231422,USB-C Charging Cable,1,11.95,07/12/19 16:17,"871 Church St, Portland, ME 04101" +231423,iPhone,1,700,07/28/19 18:39,"433 Elm St, Portland, OR 97035" +231424,iPhone,1,700,07/20/19 15:26,"544 Meadow St, San Francisco, CA 94016" +231425,Wired Headphones,1,11.99,07/21/19 20:43,"859 Cedar St, Dallas, TX 75001" +231426,USB-C Charging Cable,1,11.95,07/08/19 02:34,"106 Spruce St, San Francisco, CA 94016" +231427,AAA Batteries (4-pack),1,2.99,07/19/19 01:00,"890 Lincoln St, Dallas, TX 75001" +231428,Vareebadd Phone,1,400,07/15/19 06:51,"25 Cedar St, New York City, NY 10001" +231428,USB-C Charging Cable,1,11.95,07/15/19 06:51,"25 Cedar St, New York City, NY 10001" +231429,AAA Batteries (4-pack),1,2.99,07/05/19 12:25,"873 Forest St, Seattle, WA 98101" +231430,USB-C Charging Cable,1,11.95,07/11/19 17:38,"158 8th St, San Francisco, CA 94016" +231431,Bose SoundSport Headphones,1,99.99,07/18/19 08:00,"302 10th St, Portland, OR 97035" +231432,AA Batteries (4-pack),1,3.84,07/24/19 09:06,"28 Cedar St, San Francisco, CA 94016" +231433,20in Monitor,1,109.99,08/01/19 02:46,"927 Main St, San Francisco, CA 94016" +231434,Macbook Pro Laptop,1,1700,07/22/19 15:00,"26 Washington St, New York City, NY 10001" +231435,AA Batteries (4-pack),1,3.84,07/14/19 16:49,"23 Wilson St, Dallas, TX 75001" +231436,20in Monitor,1,109.99,07/13/19 10:25,"52 Adams St, New York City, NY 10001" +231437,LG Washing Machine,1,600.0,07/04/19 20:41,"595 Highland St, Los Angeles, CA 90001" +231438,USB-C Charging Cable,1,11.95,07/06/19 16:18,"444 Cedar St, Portland, OR 97035" +231439,20in Monitor,1,109.99,07/07/19 19:31,"783 Lincoln St, Atlanta, GA 30301" +231440,Lightning Charging Cable,1,14.95,07/27/19 20:35,"768 Highland St, Dallas, TX 75001" +231441,Macbook Pro Laptop,1,1700,07/24/19 15:52,"565 Hill St, New York City, NY 10001" +231442,20in Monitor,1,109.99,07/30/19 07:53,"584 Church St, Boston, MA 02215" +231443,Flatscreen TV,1,300,07/06/19 13:52,"122 Washington St, Dallas, TX 75001" +231444,27in 4K Gaming Monitor,1,389.99,07/09/19 09:43,"280 Jackson St, Boston, MA 02215" +231445,Macbook Pro Laptop,1,1700,07/24/19 08:10,"340 Highland St, New York City, NY 10001" +231446,Vareebadd Phone,1,400,07/04/19 17:16,"622 Elm St, Atlanta, GA 30301" +231447,AA Batteries (4-pack),2,3.84,07/25/19 11:00,"355 Johnson St, San Francisco, CA 94016" +231448,AAA Batteries (4-pack),1,2.99,07/14/19 06:56,"416 4th St, New York City, NY 10001" +231449,Lightning Charging Cable,1,14.95,07/13/19 17:29,"220 Main St, Los Angeles, CA 90001" +231450,Apple Airpods Headphones,1,150,07/14/19 11:40,"312 South St, Los Angeles, CA 90001" +231451,AA Batteries (4-pack),1,3.84,07/24/19 14:37,"611 North St, San Francisco, CA 94016" +231452,Wired Headphones,2,11.99,07/03/19 10:15,"157 Johnson St, San Francisco, CA 94016" +231453,27in FHD Monitor,1,149.99,07/24/19 16:34,"680 7th St, San Francisco, CA 94016" +231454,USB-C Charging Cable,1,11.95,07/11/19 18:29,"749 Washington St, San Francisco, CA 94016" +231455,Wired Headphones,1,11.99,07/29/19 20:06,"252 Jackson St, San Francisco, CA 94016" +231456,USB-C Charging Cable,1,11.95,07/10/19 16:36,"108 Lincoln St, San Francisco, CA 94016" +231456,Wired Headphones,1,11.99,07/10/19 16:36,"108 Lincoln St, San Francisco, CA 94016" +231457,Wired Headphones,1,11.99,07/23/19 08:17,"240 Willow St, San Francisco, CA 94016" +231458,USB-C Charging Cable,1,11.95,07/25/19 02:29,"290 4th St, Los Angeles, CA 90001" +231459,AAA Batteries (4-pack),1,2.99,07/07/19 20:16,"255 Dogwood St, Los Angeles, CA 90001" +231460,27in 4K Gaming Monitor,1,389.99,07/23/19 06:00,"482 Highland St, Los Angeles, CA 90001" +231461,Wired Headphones,1,11.99,07/20/19 12:26,"205 Willow St, Dallas, TX 75001" +231461,Google Phone,1,600,07/20/19 12:26,"205 Willow St, Dallas, TX 75001" +231462,27in 4K Gaming Monitor,1,389.99,07/24/19 00:38,"389 Meadow St, Los Angeles, CA 90001" +231463,Lightning Charging Cable,1,14.95,07/29/19 02:02,"591 Pine St, New York City, NY 10001" +231464,20in Monitor,1,109.99,07/02/19 10:38,"691 North St, New York City, NY 10001" +231465,20in Monitor,1,109.99,07/03/19 07:36,"859 Pine St, New York City, NY 10001" +231466,27in 4K Gaming Monitor,1,389.99,07/07/19 11:13,"729 River St, San Francisco, CA 94016" +231467,USB-C Charging Cable,1,11.95,07/27/19 13:24,"738 Adams St, San Francisco, CA 94016" +231468,27in 4K Gaming Monitor,1,389.99,07/29/19 20:38,"22 Spruce St, San Francisco, CA 94016" +231469,27in 4K Gaming Monitor,1,389.99,07/29/19 05:51,"333 7th St, New York City, NY 10001" +231470,Bose SoundSport Headphones,1,99.99,07/21/19 13:45,"739 10th St, San Francisco, CA 94016" +231471,AAA Batteries (4-pack),3,2.99,07/14/19 08:53,"553 8th St, San Francisco, CA 94016" +231472,Google Phone,1,600,07/21/19 22:23,"280 Adams St, Boston, MA 02215" +231473,Apple Airpods Headphones,1,150,07/05/19 18:03,"212 7th St, Los Angeles, CA 90001" +231474,Wired Headphones,1,11.99,07/05/19 14:04,"773 Maple St, Boston, MA 02215" +231475,Bose SoundSport Headphones,1,99.99,07/06/19 09:48,"663 Sunset St, New York City, NY 10001" +231476,AAA Batteries (4-pack),1,2.99,07/13/19 18:30,"572 Highland St, San Francisco, CA 94016" +231477,AAA Batteries (4-pack),2,2.99,07/11/19 17:16,"906 Willow St, San Francisco, CA 94016" +231478,Flatscreen TV,1,300,07/17/19 21:43,"998 8th St, Dallas, TX 75001" +231479,USB-C Charging Cable,1,11.95,07/07/19 14:03,"585 Spruce St, Portland, OR 97035" +231480,Flatscreen TV,1,300,07/09/19 13:05,"668 11th St, Dallas, TX 75001" +231481,USB-C Charging Cable,2,11.95,07/09/19 22:48,"948 Lakeview St, Portland, OR 97035" +231482,34in Ultrawide Monitor,1,379.99,07/31/19 12:33,"893 West St, Portland, OR 97035" +231483,Apple Airpods Headphones,1,150,07/12/19 21:47,"761 9th St, Portland, OR 97035" +231484,AA Batteries (4-pack),1,3.84,07/03/19 07:42,"599 South St, Los Angeles, CA 90001" +231485,Lightning Charging Cable,1,14.95,07/10/19 09:19,"551 North St, Austin, TX 73301" +231486,Apple Airpods Headphones,1,150,07/20/19 17:22,"839 Church St, Dallas, TX 75001" +231487,AAA Batteries (4-pack),1,2.99,07/04/19 17:22,"245 Madison St, Seattle, WA 98101" +231488,34in Ultrawide Monitor,1,379.99,07/08/19 13:22,"347 West St, Portland, OR 97035" +231489,Wired Headphones,1,11.99,07/05/19 14:09,"240 North St, Seattle, WA 98101" +231490,Lightning Charging Cable,1,14.95,07/17/19 23:36,"520 Main St, Boston, MA 02215" +231491,ThinkPad Laptop,1,999.99,07/01/19 20:22,"988 Spruce St, Atlanta, GA 30301" +231492,Wired Headphones,1,11.99,07/20/19 06:23,"750 Chestnut St, San Francisco, CA 94016" +231493,LG Dryer,1,600.0,07/18/19 06:48,"468 Madison St, Portland, OR 97035" +231494,Bose SoundSport Headphones,1,99.99,07/02/19 18:57,"919 River St, Los Angeles, CA 90001" +231495,Macbook Pro Laptop,1,1700,07/30/19 06:39,"446 Lakeview St, Los Angeles, CA 90001" +231496,Wired Headphones,1,11.99,07/15/19 20:36,"230 14th St, Atlanta, GA 30301" +231497,Lightning Charging Cable,1,14.95,07/18/19 12:42,"972 Jefferson St, Dallas, TX 75001" +231498,27in 4K Gaming Monitor,1,389.99,07/25/19 01:11,"229 2nd St, Los Angeles, CA 90001" +231499,AA Batteries (4-pack),1,3.84,07/04/19 08:32,"40 Jefferson St, Portland, OR 97035" +231500,ThinkPad Laptop,1,999.99,07/31/19 08:57,"909 Jackson St, Atlanta, GA 30301" +231501,USB-C Charging Cable,1,11.95,07/21/19 23:09,"333 Meadow St, New York City, NY 10001" +231502,Google Phone,1,600,07/25/19 09:43,"463 Hill St, Dallas, TX 75001" +231503,Bose SoundSport Headphones,1,99.99,07/17/19 05:11,"598 Main St, Los Angeles, CA 90001" +231504,USB-C Charging Cable,1,11.95,07/13/19 10:49,"593 10th St, San Francisco, CA 94016" +231505,AAA Batteries (4-pack),1,2.99,07/30/19 00:00,"916 Forest St, San Francisco, CA 94016" +231506,27in FHD Monitor,1,149.99,07/14/19 17:58,"6 Church St, San Francisco, CA 94016" +231507,Flatscreen TV,1,300,07/16/19 08:39,"406 Spruce St, Los Angeles, CA 90001" +231508,20in Monitor,1,109.99,07/11/19 21:21,"261 Johnson St, Dallas, TX 75001" +231509,34in Ultrawide Monitor,1,379.99,07/17/19 12:38,"285 9th St, New York City, NY 10001" +231510,AAA Batteries (4-pack),1,2.99,07/10/19 17:38,"618 Jefferson St, Austin, TX 73301" +231511,AAA Batteries (4-pack),1,2.99,07/14/19 14:52,"624 Spruce St, Los Angeles, CA 90001" +231512,Wired Headphones,1,11.99,07/17/19 16:44,"125 Park St, San Francisco, CA 94016" +231513,Wired Headphones,1,11.99,07/12/19 16:10,"670 Highland St, Los Angeles, CA 90001" +231514,Bose SoundSport Headphones,1,99.99,07/25/19 21:45,"687 9th St, Los Angeles, CA 90001" +231515,AA Batteries (4-pack),1,3.84,07/02/19 22:22,"762 Jefferson St, Los Angeles, CA 90001" +231516,Wired Headphones,1,11.99,07/01/19 14:28,"445 Maple St, San Francisco, CA 94016" +231517,Lightning Charging Cable,1,14.95,07/28/19 16:56,"988 North St, Seattle, WA 98101" +231518,AAA Batteries (4-pack),1,2.99,07/14/19 11:55,"312 Jackson St, New York City, NY 10001" +231519,AA Batteries (4-pack),1,3.84,07/03/19 14:06,"228 9th St, Austin, TX 73301" +231520,Apple Airpods Headphones,1,150,07/28/19 00:38,"758 2nd St, Los Angeles, CA 90001" +231521,Vareebadd Phone,1,400,07/13/19 11:09,"738 Willow St, San Francisco, CA 94016" +231522,Wired Headphones,1,11.99,07/19/19 11:15,"361 Willow St, San Francisco, CA 94016" +231523,AA Batteries (4-pack),1,3.84,07/03/19 12:28,"487 Center St, Los Angeles, CA 90001" +231524,Lightning Charging Cable,1,14.95,07/12/19 18:20,"508 Lake St, New York City, NY 10001" +231525,Flatscreen TV,1,300,07/21/19 11:13,"741 River St, Dallas, TX 75001" +231526,AAA Batteries (4-pack),1,2.99,07/18/19 21:02,"664 1st St, Boston, MA 02215" +231527,34in Ultrawide Monitor,1,379.99,07/23/19 14:38,"267 Sunset St, Los Angeles, CA 90001" +231528,AA Batteries (4-pack),1,3.84,07/10/19 21:08,"613 Hill St, Los Angeles, CA 90001" +231529,AA Batteries (4-pack),1,3.84,07/21/19 07:57,"624 Center St, New York City, NY 10001" +231530,AA Batteries (4-pack),1,3.84,07/08/19 13:43,"275 2nd St, San Francisco, CA 94016" +231531,Wired Headphones,1,11.99,07/01/19 18:24,"731 Pine St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +231532,Bose SoundSport Headphones,1,99.99,07/18/19 11:25,"910 Jefferson St, San Francisco, CA 94016" +231533,Macbook Pro Laptop,1,1700,07/15/19 17:13,"902 Cherry St, Los Angeles, CA 90001" +231533,Lightning Charging Cable,1,14.95,07/15/19 17:13,"902 Cherry St, Los Angeles, CA 90001" +231534,Apple Airpods Headphones,1,150,07/30/19 01:29,"711 Highland St, Portland, OR 97035" +231535,iPhone,1,700,07/24/19 19:58,"961 6th St, Portland, OR 97035" +231535,Wired Headphones,1,11.99,07/24/19 19:58,"961 6th St, Portland, OR 97035" +231536,AA Batteries (4-pack),1,3.84,07/29/19 16:48,"3 Madison St, San Francisco, CA 94016" +231537,27in FHD Monitor,1,149.99,07/11/19 23:08,"958 Meadow St, Boston, MA 02215" +231538,AA Batteries (4-pack),1,3.84,07/07/19 00:01,"507 6th St, Seattle, WA 98101" +231539,Macbook Pro Laptop,1,1700,07/25/19 19:21,"125 Wilson St, San Francisco, CA 94016" +231540,Wired Headphones,1,11.99,07/27/19 12:22,"418 Jefferson St, Dallas, TX 75001" +231541,USB-C Charging Cable,1,11.95,07/16/19 10:36,"986 Lakeview St, Portland, OR 97035" +231542,Flatscreen TV,1,300,07/24/19 18:48,"264 North St, Dallas, TX 75001" +231543,20in Monitor,1,109.99,07/02/19 16:50,"191 Dogwood St, New York City, NY 10001" +231544,AA Batteries (4-pack),1,3.84,07/01/19 11:55,"701 6th St, Portland, OR 97035" +231545,27in 4K Gaming Monitor,1,389.99,07/23/19 18:07,"820 Maple St, Dallas, TX 75001" +231546,Apple Airpods Headphones,1,150,07/12/19 20:56,"478 Elm St, Los Angeles, CA 90001" +231547,27in FHD Monitor,1,149.99,07/12/19 21:13,"478 South St, Los Angeles, CA 90001" +231548,34in Ultrawide Monitor,1,379.99,07/02/19 17:19,"951 13th St, San Francisco, CA 94016" +231549,USB-C Charging Cable,1,11.95,07/29/19 16:40,"300 Adams St, Atlanta, GA 30301" +231550,Lightning Charging Cable,1,14.95,07/09/19 23:17,"624 Spruce St, Atlanta, GA 30301" +231551,Flatscreen TV,1,300,07/08/19 17:30,"917 9th St, New York City, NY 10001" +231552,34in Ultrawide Monitor,1,379.99,07/11/19 19:32,"287 Dogwood St, Los Angeles, CA 90001" +231553,Macbook Pro Laptop,1,1700,07/28/19 16:55,"62 Walnut St, New York City, NY 10001" +231554,AA Batteries (4-pack),1,3.84,07/18/19 10:47,"320 Jefferson St, San Francisco, CA 94016" +231555,Google Phone,1,600,07/11/19 20:51,"707 Hickory St, Austin, TX 73301" +231556,USB-C Charging Cable,1,11.95,07/15/19 21:15,"306 Elm St, Los Angeles, CA 90001" +231557,Apple Airpods Headphones,1,150,07/13/19 12:59,"377 Willow St, Los Angeles, CA 90001" +231558,27in 4K Gaming Monitor,1,389.99,07/29/19 17:22,"187 North St, Boston, MA 02215" +231559,Bose SoundSport Headphones,1,99.99,07/06/19 21:14,"366 1st St, Boston, MA 02215" +231560,AAA Batteries (4-pack),1,2.99,07/05/19 17:10,"675 Lakeview St, New York City, NY 10001" +231561,AA Batteries (4-pack),1,3.84,07/26/19 11:45,"572 South St, Atlanta, GA 30301" +231562,AA Batteries (4-pack),1,3.84,07/29/19 16:43,"318 Pine St, Atlanta, GA 30301" +231563,Macbook Pro Laptop,1,1700,07/02/19 08:00,"617 Walnut St, Seattle, WA 98101" +231564,AA Batteries (4-pack),2,3.84,07/08/19 09:20,"908 Jefferson St, New York City, NY 10001" +231565,Wired Headphones,1,11.99,07/20/19 20:38,"708 Walnut St, San Francisco, CA 94016" +231566,Wired Headphones,1,11.99,07/27/19 10:05,"550 Hickory St, Los Angeles, CA 90001" +231567,Apple Airpods Headphones,1,150,07/14/19 17:54,"138 Walnut St, Atlanta, GA 30301" +231568,Lightning Charging Cable,1,14.95,07/14/19 00:55,"384 1st St, Los Angeles, CA 90001" +231569,27in FHD Monitor,1,149.99,07/01/19 16:23,"929 10th St, San Francisco, CA 94016" +231570,AA Batteries (4-pack),1,3.84,07/23/19 12:14,"546 Walnut St, Dallas, TX 75001" +231571,34in Ultrawide Monitor,1,379.99,07/07/19 10:19,"288 Church St, Los Angeles, CA 90001" +231572,Apple Airpods Headphones,1,150,07/08/19 13:24,"102 River St, Seattle, WA 98101" +231573,AAA Batteries (4-pack),1,2.99,07/06/19 11:47,"661 Maple St, San Francisco, CA 94016" +231574,27in FHD Monitor,1,149.99,07/19/19 02:47,"983 Elm St, San Francisco, CA 94016" +231575,iPhone,1,700,07/25/19 12:12,"20 4th St, Austin, TX 73301" +231576,USB-C Charging Cable,1,11.95,07/03/19 17:06,"131 Main St, Seattle, WA 98101" +231577,Apple Airpods Headphones,1,150,07/31/19 09:53,"636 Madison St, Los Angeles, CA 90001" +231578,USB-C Charging Cable,1,11.95,07/02/19 23:02,"769 Dogwood St, Los Angeles, CA 90001" +231579,20in Monitor,1,109.99,07/15/19 15:24,"598 Lincoln St, Austin, TX 73301" +231580,Lightning Charging Cable,1,14.95,07/25/19 20:21,"175 Chestnut St, New York City, NY 10001" +231581,27in FHD Monitor,1,149.99,07/08/19 23:13,"823 Spruce St, Atlanta, GA 30301" +231582,Lightning Charging Cable,1,14.95,07/15/19 13:58,"777 Willow St, Seattle, WA 98101" +231583,ThinkPad Laptop,1,999.99,07/09/19 13:32,"878 Lincoln St, Los Angeles, CA 90001" +231584,20in Monitor,1,109.99,07/04/19 19:01,"999 Hill St, Los Angeles, CA 90001" +231585,Wired Headphones,1,11.99,07/14/19 22:04,"216 Dogwood St, Boston, MA 02215" +231586,AAA Batteries (4-pack),2,2.99,07/19/19 18:43,"973 6th St, San Francisco, CA 94016" +231587,Lightning Charging Cable,1,14.95,07/19/19 13:27,"747 Jefferson St, Boston, MA 02215" +231588,Google Phone,1,600,07/28/19 20:13,"647 South St, San Francisco, CA 94016" +231589,USB-C Charging Cable,1,11.95,07/07/19 14:17,"167 Wilson St, San Francisco, CA 94016" +231590,AAA Batteries (4-pack),2,2.99,07/30/19 18:48,"459 Church St, San Francisco, CA 94016" +231591,27in FHD Monitor,1,149.99,07/26/19 06:03,"122 Center St, New York City, NY 10001" +231592,27in FHD Monitor,1,149.99,07/25/19 12:37,"978 Cherry St, San Francisco, CA 94016" +231593,USB-C Charging Cable,1,11.95,07/04/19 23:58,"879 Elm St, Dallas, TX 75001" +231594,AA Batteries (4-pack),1,3.84,07/29/19 10:43,"157 2nd St, Atlanta, GA 30301" +231595,USB-C Charging Cable,1,11.95,07/17/19 18:37,"972 10th St, Boston, MA 02215" +231596,Wired Headphones,1,11.99,07/21/19 13:23,"890 Madison St, Atlanta, GA 30301" +231597,AA Batteries (4-pack),1,3.84,07/27/19 17:08,"248 Willow St, San Francisco, CA 94016" +231598,AA Batteries (4-pack),2,3.84,07/23/19 14:36,"606 Dogwood St, Los Angeles, CA 90001" +231599,Lightning Charging Cable,1,14.95,07/09/19 11:06,"100 Center St, Dallas, TX 75001" +231600,AAA Batteries (4-pack),1,2.99,07/13/19 08:48,"809 Meadow St, Portland, OR 97035" +231601,Wired Headphones,1,11.99,07/25/19 00:02,"591 Meadow St, Los Angeles, CA 90001" +231602,Apple Airpods Headphones,1,150,07/24/19 19:42,"986 Elm St, Portland, OR 97035" +231603,USB-C Charging Cable,1,11.95,07/31/19 21:56,"694 Hill St, San Francisco, CA 94016" +231604,AA Batteries (4-pack),1,3.84,07/30/19 00:29,"211 Park St, Dallas, TX 75001" +231605,27in FHD Monitor,1,149.99,07/03/19 17:09,"246 Dogwood St, Portland, OR 97035" +231606,Flatscreen TV,1,300,07/20/19 22:15,"676 4th St, Dallas, TX 75001" +231607,Apple Airpods Headphones,1,150,07/31/19 12:11,"25 Church St, Atlanta, GA 30301" +231608,AAA Batteries (4-pack),1,2.99,07/08/19 14:22,"542 Lincoln St, San Francisco, CA 94016" +231608,AAA Batteries (4-pack),2,2.99,07/08/19 14:22,"542 Lincoln St, San Francisco, CA 94016" +231609,27in FHD Monitor,1,149.99,07/30/19 20:49,"95 Johnson St, San Francisco, CA 94016" +231610,AA Batteries (4-pack),1,3.84,07/09/19 15:40,"172 Adams St, Los Angeles, CA 90001" +231611,LG Dryer,1,600.0,07/12/19 09:40,"849 Meadow St, San Francisco, CA 94016" +231612,AAA Batteries (4-pack),1,2.99,07/21/19 14:00,"480 4th St, Seattle, WA 98101" +231613,Lightning Charging Cable,2,14.95,07/09/19 17:09,"304 Chestnut St, Boston, MA 02215" +231614,Google Phone,1,600,07/09/19 09:07,"100 4th St, Atlanta, GA 30301" +231615,Apple Airpods Headphones,1,150,07/04/19 02:01,"958 Elm St, New York City, NY 10001" +231616,AA Batteries (4-pack),1,3.84,07/09/19 21:45,"189 4th St, Boston, MA 02215" +231617,27in 4K Gaming Monitor,1,389.99,07/06/19 19:22,"886 Cedar St, Seattle, WA 98101" +231618,Apple Airpods Headphones,1,150,07/23/19 17:22,"429 Church St, San Francisco, CA 94016" +231619,Lightning Charging Cable,1,14.95,07/27/19 08:50,"739 14th St, New York City, NY 10001" +231620,AAA Batteries (4-pack),1,2.99,07/02/19 23:36,"122 Lincoln St, San Francisco, CA 94016" +231621,Bose SoundSport Headphones,1,99.99,07/18/19 19:53,"338 Forest St, Austin, TX 73301" +231622,Flatscreen TV,1,300,07/23/19 10:26,"992 Lincoln St, Portland, ME 04101" +231623,Wired Headphones,1,11.99,07/01/19 08:58,"742 Cherry St, New York City, NY 10001" +231624,Apple Airpods Headphones,1,150,07/30/19 08:17,"750 Sunset St, Portland, ME 04101" +231625,USB-C Charging Cable,1,11.95,07/15/19 12:07,"114 Elm St, San Francisco, CA 94016" +231626,Wired Headphones,1,11.99,07/26/19 10:59,"109 Cherry St, San Francisco, CA 94016" +231627,USB-C Charging Cable,1,11.95,07/28/19 15:15,"917 West St, Atlanta, GA 30301" +231628,AA Batteries (4-pack),1,3.84,07/31/19 22:34,"654 Highland St, Dallas, TX 75001" +231629,AA Batteries (4-pack),1,3.84,07/11/19 06:23,"284 Dogwood St, San Francisco, CA 94016" +231630,Lightning Charging Cable,2,14.95,07/21/19 16:00,"106 Dogwood St, Austin, TX 73301" +231631,Wired Headphones,1,11.99,07/30/19 19:38,"37 11th St, San Francisco, CA 94016" +231632,34in Ultrawide Monitor,1,379.99,07/14/19 10:23,"914 North St, Los Angeles, CA 90001" +231633,AA Batteries (4-pack),1,3.84,07/04/19 14:56,"636 Maple St, San Francisco, CA 94016" +231634,Macbook Pro Laptop,1,1700,07/21/19 10:04,"130 2nd St, New York City, NY 10001" +231634,AA Batteries (4-pack),1,3.84,07/21/19 10:04,"130 2nd St, New York City, NY 10001" +231635,Apple Airpods Headphones,1,150,07/28/19 16:10,"798 Washington St, New York City, NY 10001" +231636,27in 4K Gaming Monitor,1,389.99,07/13/19 11:00,"79 8th St, Boston, MA 02215" +231637,Wired Headphones,1,11.99,07/02/19 16:13,"44 Dogwood St, San Francisco, CA 94016" +231638,Bose SoundSport Headphones,1,99.99,07/01/19 21:36,"27 Sunset St, Boston, MA 02215" +231639,34in Ultrawide Monitor,1,379.99,07/28/19 21:16,"819 11th St, Portland, OR 97035" +231640,AAA Batteries (4-pack),1,2.99,07/18/19 09:39,"403 Pine St, Seattle, WA 98101" +231641,Lightning Charging Cable,1,14.95,07/26/19 15:26,"105 River St, Los Angeles, CA 90001" +231642,Apple Airpods Headphones,1,150,07/17/19 11:40,"438 6th St, Seattle, WA 98101" +231643,USB-C Charging Cable,1,11.95,07/21/19 09:27,"612 Lake St, Austin, TX 73301" +231644,AAA Batteries (4-pack),1,2.99,07/20/19 23:13,"343 Hill St, Portland, ME 04101" +231645,Wired Headphones,3,11.99,07/30/19 22:14,"838 Lincoln St, Dallas, TX 75001" +231646,USB-C Charging Cable,1,11.95,07/25/19 16:34,"24 Hickory St, New York City, NY 10001" +231647,AAA Batteries (4-pack),1,2.99,07/01/19 21:10,"882 Main St, Los Angeles, CA 90001" +231648,Apple Airpods Headphones,1,150,07/05/19 19:39,"757 Johnson St, San Francisco, CA 94016" +231649,34in Ultrawide Monitor,1,379.99,07/07/19 19:36,"833 Sunset St, New York City, NY 10001" +231650,iPhone,1,700,07/29/19 22:31,"187 4th St, Los Angeles, CA 90001" +231651,Wired Headphones,1,11.99,07/06/19 15:59,"56 13th St, New York City, NY 10001" +231652,Lightning Charging Cable,1,14.95,07/01/19 23:37,"407 Park St, San Francisco, CA 94016" +231653,Lightning Charging Cable,1,14.95,07/20/19 18:57,"824 14th St, Dallas, TX 75001" +231654,Lightning Charging Cable,1,14.95,07/05/19 21:19,"176 12th St, San Francisco, CA 94016" +231655,Wired Headphones,1,11.99,07/09/19 11:15,"915 Highland St, Los Angeles, CA 90001" +231656,AA Batteries (4-pack),1,3.84,07/04/19 16:28,"335 13th St, San Francisco, CA 94016" +231657,Lightning Charging Cable,2,14.95,07/03/19 08:18,"405 10th St, Atlanta, GA 30301" +231658,AA Batteries (4-pack),1,3.84,07/08/19 20:14,"775 Willow St, New York City, NY 10001" +231659,Wired Headphones,1,11.99,07/05/19 20:17,"542 Jefferson St, Los Angeles, CA 90001" +231660,AAA Batteries (4-pack),1,2.99,07/10/19 15:13,"135 Walnut St, Los Angeles, CA 90001" +231661,AA Batteries (4-pack),1,3.84,07/13/19 07:59,"258 River St, Atlanta, GA 30301" +231662,27in 4K Gaming Monitor,1,389.99,07/08/19 12:36,"943 Washington St, Boston, MA 02215" +231663,Apple Airpods Headphones,1,150,07/08/19 21:33,"72 Ridge St, Portland, OR 97035" +231664,AAA Batteries (4-pack),2,2.99,07/08/19 20:07,"759 1st St, San Francisco, CA 94016" +231665,Apple Airpods Headphones,1,150,07/03/19 18:19,"515 Church St, New York City, NY 10001" +231666,27in FHD Monitor,1,149.99,07/30/19 18:27,"65 Forest St, New York City, NY 10001" +231667,Lightning Charging Cable,1,14.95,07/19/19 15:10,"861 Park St, Dallas, TX 75001" +231668,USB-C Charging Cable,1,11.95,07/03/19 15:30,"21 Lake St, Los Angeles, CA 90001" +231669,USB-C Charging Cable,1,11.95,07/08/19 23:21,"949 Hickory St, Seattle, WA 98101" +231670,Macbook Pro Laptop,1,1700,07/26/19 12:53,"934 Meadow St, Portland, ME 04101" +231671,USB-C Charging Cable,1,11.95,07/28/19 08:30,"689 Church St, Boston, MA 02215" +231672,27in FHD Monitor,1,149.99,07/26/19 21:34,"66 Johnson St, San Francisco, CA 94016" +231672,Wired Headphones,1,11.99,07/26/19 21:34,"66 Johnson St, San Francisco, CA 94016" +231673,Flatscreen TV,1,300,07/22/19 14:37,"682 Pine St, Austin, TX 73301" +231674,Bose SoundSport Headphones,1,99.99,07/10/19 11:09,"412 Meadow St, Boston, MA 02215" +231675,USB-C Charging Cable,1,11.95,07/15/19 12:06,"417 10th St, Dallas, TX 75001" +231676,Apple Airpods Headphones,1,150,07/20/19 20:09,"334 Walnut St, Portland, OR 97035" +231677,AAA Batteries (4-pack),4,2.99,07/06/19 15:08,"191 South St, San Francisco, CA 94016" +231678,27in 4K Gaming Monitor,1,389.99,07/05/19 20:09,"199 Elm St, Dallas, TX 75001" +231679,Macbook Pro Laptop,1,1700,07/16/19 21:12,"918 Spruce St, New York City, NY 10001" +231680,34in Ultrawide Monitor,1,379.99,07/09/19 15:24,"653 Church St, San Francisco, CA 94016" +231681,Wired Headphones,1,11.99,07/09/19 23:58,"709 Hickory St, Los Angeles, CA 90001" +231682,Lightning Charging Cable,1,14.95,07/03/19 20:39,"553 14th St, Seattle, WA 98101" +231683,AAA Batteries (4-pack),1,2.99,07/22/19 00:53,"786 Walnut St, Atlanta, GA 30301" +231684,AA Batteries (4-pack),1,3.84,07/30/19 15:00,"477 Willow St, Los Angeles, CA 90001" +231685,34in Ultrawide Monitor,1,379.99,07/03/19 12:02,"462 11th St, San Francisco, CA 94016" +231686,Apple Airpods Headphones,1,150,07/21/19 11:32,"449 Ridge St, Atlanta, GA 30301" +231687,Wired Headphones,1,11.99,07/21/19 08:25,"674 Spruce St, Los Angeles, CA 90001" +231688,Apple Airpods Headphones,1,150,07/12/19 21:19,"532 Wilson St, New York City, NY 10001" +231689,Bose SoundSport Headphones,1,99.99,07/07/19 19:33,"195 8th St, Portland, ME 04101" +231690,34in Ultrawide Monitor,1,379.99,07/05/19 14:55,"397 Chestnut St, New York City, NY 10001" +231691,Wired Headphones,1,11.99,07/04/19 17:40,"10 4th St, New York City, NY 10001" +231692,Apple Airpods Headphones,1,150,07/30/19 11:02,"227 14th St, Seattle, WA 98101" +231693,Bose SoundSport Headphones,1,99.99,07/03/19 08:22,"662 Madison St, Austin, TX 73301" +231694,27in 4K Gaming Monitor,1,389.99,07/22/19 11:59,"848 Adams St, New York City, NY 10001" +231695,Wired Headphones,1,11.99,07/10/19 13:49,"913 7th St, Dallas, TX 75001" +231696,USB-C Charging Cable,1,11.95,07/15/19 16:13,"856 2nd St, New York City, NY 10001" +231697,Flatscreen TV,1,300,07/11/19 18:58,"890 Adams St, Atlanta, GA 30301" +231697,Lightning Charging Cable,1,14.95,07/11/19 18:58,"890 Adams St, Atlanta, GA 30301" +231698,27in 4K Gaming Monitor,1,389.99,07/07/19 22:11,"197 Chestnut St, Los Angeles, CA 90001" +231699,Wired Headphones,1,11.99,07/11/19 19:09,"323 Elm St, Los Angeles, CA 90001" +231700,Lightning Charging Cable,1,14.95,07/12/19 23:11,"642 Ridge St, San Francisco, CA 94016" +231701,Lightning Charging Cable,1,14.95,07/19/19 22:58,"328 Lakeview St, Atlanta, GA 30301" +231702,Flatscreen TV,1,300,07/26/19 14:22,"57 Dogwood St, San Francisco, CA 94016" +231703,Wired Headphones,1,11.99,07/26/19 18:32,"636 9th St, Dallas, TX 75001" +231704,27in 4K Gaming Monitor,1,389.99,07/16/19 23:56,"815 Wilson St, Atlanta, GA 30301" +231705,AAA Batteries (4-pack),1,2.99,07/30/19 22:35,"699 Forest St, Dallas, TX 75001" +231706,Google Phone,1,600,07/28/19 19:56,"791 Sunset St, San Francisco, CA 94016" +231707,Lightning Charging Cable,1,14.95,07/14/19 20:07,"954 Wilson St, New York City, NY 10001" +231708,27in 4K Gaming Monitor,1,389.99,07/04/19 11:34,"571 Ridge St, Los Angeles, CA 90001" +231709,iPhone,1,700,07/11/19 22:02,"243 West St, San Francisco, CA 94016" +231710,Google Phone,1,600,07/07/19 22:35,"123 Cedar St, Dallas, TX 75001" +231711,34in Ultrawide Monitor,1,379.99,07/28/19 09:21,"528 Lincoln St, Los Angeles, CA 90001" +231712,AA Batteries (4-pack),2,3.84,07/02/19 10:15,"681 Madison St, Los Angeles, CA 90001" +231713,AAA Batteries (4-pack),1,2.99,07/07/19 19:58,"756 7th St, Boston, MA 02215" +231714,Wired Headphones,1,11.99,07/19/19 17:50,"806 Jefferson St, Los Angeles, CA 90001" +231715,Apple Airpods Headphones,1,150,07/31/19 20:29,"512 4th St, Los Angeles, CA 90001" +231716,AA Batteries (4-pack),1,3.84,07/13/19 13:04,"572 Jackson St, New York City, NY 10001" +231717,Bose SoundSport Headphones,1,99.99,07/20/19 10:22,"998 Dogwood St, San Francisco, CA 94016" +231718,AA Batteries (4-pack),1,3.84,07/27/19 11:43,"435 4th St, Seattle, WA 98101" +231719,AA Batteries (4-pack),1,3.84,07/02/19 20:33,"917 Forest St, Boston, MA 02215" +231720,Lightning Charging Cable,1,14.95,07/08/19 18:57,"100 7th St, San Francisco, CA 94016" +231721,Lightning Charging Cable,1,14.95,07/05/19 22:16,"405 Jackson St, Los Angeles, CA 90001" +231722,Apple Airpods Headphones,1,150,07/26/19 08:47,"778 Pine St, Seattle, WA 98101" +231723,Bose SoundSport Headphones,1,99.99,07/17/19 11:50,"683 Jefferson St, San Francisco, CA 94016" +231724,iPhone,1,700,07/08/19 15:21,"853 West St, Los Angeles, CA 90001" +231725,Wired Headphones,4,11.99,07/31/19 16:59,"142 Cedar St, Los Angeles, CA 90001" +231726,Lightning Charging Cable,1,14.95,07/03/19 10:37,"108 Maple St, San Francisco, CA 94016" +231727,AA Batteries (4-pack),1,3.84,07/28/19 20:36,"554 Lakeview St, San Francisco, CA 94016" +231728,Vareebadd Phone,1,400,07/15/19 11:21,"716 Forest St, San Francisco, CA 94016" +231728,USB-C Charging Cable,1,11.95,07/15/19 11:21,"716 Forest St, San Francisco, CA 94016" +231729,Apple Airpods Headphones,1,150,07/24/19 11:34,"339 Forest St, Portland, OR 97035" +231730,AA Batteries (4-pack),1,3.84,07/06/19 18:25,"401 Wilson St, San Francisco, CA 94016" +231731,Lightning Charging Cable,1,14.95,07/05/19 22:26,"314 14th St, Seattle, WA 98101" +231732,34in Ultrawide Monitor,1,379.99,07/25/19 11:05,"355 Chestnut St, Boston, MA 02215" +231733,Lightning Charging Cable,1,14.95,07/31/19 10:38,"652 Hill St, Atlanta, GA 30301" +231734,Lightning Charging Cable,1,14.95,07/12/19 23:00,"987 Wilson St, San Francisco, CA 94016" +231735,AAA Batteries (4-pack),2,2.99,07/05/19 16:15,"286 Elm St, Seattle, WA 98101" +231736,AA Batteries (4-pack),2,3.84,07/28/19 19:44,"598 Wilson St, San Francisco, CA 94016" +231737,Wired Headphones,1,11.99,07/14/19 15:44,"54 Elm St, Portland, OR 97035" +231738,Bose SoundSport Headphones,1,99.99,07/19/19 13:41,"24 2nd St, Seattle, WA 98101" +231739,34in Ultrawide Monitor,1,379.99,07/04/19 01:50,"547 Wilson St, Portland, ME 04101" +231740,AA Batteries (4-pack),1,3.84,07/27/19 07:27,"457 Dogwood St, Dallas, TX 75001" +231741,Lightning Charging Cable,1,14.95,07/30/19 10:25,"85 14th St, Austin, TX 73301" +231742,iPhone,1,700,07/16/19 19:16,"244 Main St, Dallas, TX 75001" +231743,27in 4K Gaming Monitor,1,389.99,07/19/19 22:43,"735 Park St, Los Angeles, CA 90001" +231744,AAA Batteries (4-pack),3,2.99,07/09/19 17:11,"741 Meadow St, New York City, NY 10001" +231745,ThinkPad Laptop,1,999.99,07/07/19 12:56,"582 Cedar St, San Francisco, CA 94016" +231746,Lightning Charging Cable,1,14.95,07/30/19 19:00,"487 Park St, New York City, NY 10001" +231747,Google Phone,1,600,07/07/19 10:40,"812 Dogwood St, San Francisco, CA 94016" +231748,Wired Headphones,1,11.99,07/14/19 14:50,"38 11th St, New York City, NY 10001" +231749,Lightning Charging Cable,1,14.95,07/13/19 14:50,"343 12th St, Los Angeles, CA 90001" +231750,Bose SoundSport Headphones,1,99.99,07/31/19 15:24,"807 13th St, Boston, MA 02215" +231751,USB-C Charging Cable,1,11.95,07/31/19 23:52,"29 2nd St, Los Angeles, CA 90001" +231752,USB-C Charging Cable,1,11.95,07/19/19 13:36,"945 Lake St, Los Angeles, CA 90001" +231753,Wired Headphones,1,11.99,07/25/19 22:05,"564 Jefferson St, Seattle, WA 98101" +231754,AAA Batteries (4-pack),2,2.99,07/09/19 19:34,"940 Meadow St, Los Angeles, CA 90001" +231755,Lightning Charging Cable,1,14.95,07/21/19 13:21,"139 Cedar St, Los Angeles, CA 90001" +231756,ThinkPad Laptop,1,999.99,07/05/19 20:01,"205 Jefferson St, Atlanta, GA 30301" +231757,Apple Airpods Headphones,1,150,07/03/19 16:30,"797 10th St, New York City, NY 10001" +231758,USB-C Charging Cable,1,11.95,07/30/19 22:02,"903 14th St, Portland, OR 97035" +231759,Vareebadd Phone,1,400,07/14/19 15:48,"842 Madison St, Portland, OR 97035" +231760,Lightning Charging Cable,1,14.95,07/29/19 16:22,"664 Park St, New York City, NY 10001" +231761,Apple Airpods Headphones,1,150,07/03/19 17:08,"788 Lakeview St, Seattle, WA 98101" +231762,20in Monitor,1,109.99,07/19/19 11:39,"847 13th St, Dallas, TX 75001" +231763,Lightning Charging Cable,1,14.95,07/23/19 09:16,"78 10th St, San Francisco, CA 94016" +231764,iPhone,1,700,07/01/19 20:04,"696 Church St, San Francisco, CA 94016" +231765,AA Batteries (4-pack),1,3.84,07/10/19 22:29,"442 South St, Los Angeles, CA 90001" +231766,27in FHD Monitor,1,149.99,07/29/19 21:24,"695 Dogwood St, Austin, TX 73301" +231767,AAA Batteries (4-pack),1,2.99,07/04/19 14:29,"711 Hill St, Portland, OR 97035" +231768,AAA Batteries (4-pack),1,2.99,07/21/19 16:36,"969 Ridge St, San Francisco, CA 94016" +231769,Wired Headphones,1,11.99,07/31/19 08:10,"626 5th St, Atlanta, GA 30301" +231770,Wired Headphones,1,11.99,07/14/19 19:31,"6 13th St, Dallas, TX 75001" +231771,AAA Batteries (4-pack),1,2.99,07/06/19 10:23,"742 4th St, Los Angeles, CA 90001" +231772,Bose SoundSport Headphones,1,99.99,07/14/19 18:01,"848 Park St, Atlanta, GA 30301" +231773,AA Batteries (4-pack),1,3.84,07/20/19 19:14,"616 West St, New York City, NY 10001" +231774,Apple Airpods Headphones,1,150,07/03/19 17:02,"72 Pine St, Dallas, TX 75001" +231775,Bose SoundSport Headphones,1,99.99,07/22/19 20:30,"66 Lake St, San Francisco, CA 94016" +231776,USB-C Charging Cable,1,11.95,07/18/19 15:16,"624 Highland St, Los Angeles, CA 90001" +231777,34in Ultrawide Monitor,1,379.99,07/03/19 13:55,"951 Madison St, Portland, OR 97035" +231778,Wired Headphones,1,11.99,07/16/19 10:49,"114 14th St, Dallas, TX 75001" +231779,AAA Batteries (4-pack),1,2.99,07/17/19 14:22,"5 South St, Atlanta, GA 30301" +231780,Lightning Charging Cable,1,14.95,07/11/19 21:31,"788 West St, New York City, NY 10001" +231781,Bose SoundSport Headphones,1,99.99,07/06/19 19:23,"432 North St, Austin, TX 73301" +231782,27in 4K Gaming Monitor,1,389.99,07/19/19 09:45,"2 Lake St, Seattle, WA 98101" +231783,AA Batteries (4-pack),3,3.84,07/22/19 19:49,"84 Adams St, Atlanta, GA 30301" +231784,34in Ultrawide Monitor,1,379.99,07/14/19 12:35,"7 Elm St, Boston, MA 02215" +231785,Apple Airpods Headphones,1,150,07/08/19 15:49,"184 2nd St, Dallas, TX 75001" +231786,27in 4K Gaming Monitor,1,389.99,07/19/19 14:00,"360 Chestnut St, Austin, TX 73301" +231787,Wired Headphones,1,11.99,07/01/19 18:26,"300 Adams St, Atlanta, GA 30301" +231788,Vareebadd Phone,1,400,07/08/19 22:09,"646 Madison St, Seattle, WA 98101" +231789,AA Batteries (4-pack),2,3.84,07/16/19 14:11,"411 South St, Seattle, WA 98101" +231790,USB-C Charging Cable,1,11.95,07/25/19 20:51,"483 Lakeview St, San Francisco, CA 94016" +231791,USB-C Charging Cable,1,11.95,07/27/19 20:09,"459 5th St, New York City, NY 10001" +231792,Macbook Pro Laptop,1,1700,07/06/19 18:05,"718 Johnson St, San Francisco, CA 94016" +231793,Google Phone,1,600,07/08/19 10:43,"901 Washington St, San Francisco, CA 94016" +231793,USB-C Charging Cable,1,11.95,07/08/19 10:43,"901 Washington St, San Francisco, CA 94016" +231794,AA Batteries (4-pack),2,3.84,07/29/19 18:33,"371 River St, Los Angeles, CA 90001" +231795,27in 4K Gaming Monitor,1,389.99,07/24/19 20:48,"531 Maple St, Los Angeles, CA 90001" +231796,Lightning Charging Cable,1,14.95,07/01/19 07:35,"719 4th St, Boston, MA 02215" +231797,Google Phone,1,600,07/18/19 21:35,"14 Dogwood St, San Francisco, CA 94016" +231797,Bose SoundSport Headphones,1,99.99,07/18/19 21:35,"14 Dogwood St, San Francisco, CA 94016" +231798,AA Batteries (4-pack),1,3.84,07/30/19 10:25,"804 5th St, Los Angeles, CA 90001" +231799,AAA Batteries (4-pack),2,2.99,07/04/19 20:18,"875 Cedar St, Boston, MA 02215" +231800,Flatscreen TV,1,300,07/08/19 22:08,"905 Lake St, San Francisco, CA 94016" +231801,Google Phone,1,600,07/15/19 15:41,"740 Meadow St, San Francisco, CA 94016" +231801,USB-C Charging Cable,1,11.95,07/15/19 15:41,"740 Meadow St, San Francisco, CA 94016" +231802,USB-C Charging Cable,1,11.95,07/19/19 20:08,"983 Lake St, Dallas, TX 75001" +231803,Macbook Pro Laptop,1,1700,07/10/19 19:17,"225 Highland St, Boston, MA 02215" +231804,Apple Airpods Headphones,1,150,07/25/19 22:01,"103 14th St, Los Angeles, CA 90001" +231805,Vareebadd Phone,1,400,07/06/19 20:23,"586 6th St, San Francisco, CA 94016" +231805,USB-C Charging Cable,1,11.95,07/06/19 20:23,"586 6th St, San Francisco, CA 94016" +231806,AAA Batteries (4-pack),1,2.99,07/09/19 16:00,"795 Forest St, Los Angeles, CA 90001" +231807,AAA Batteries (4-pack),2,2.99,07/28/19 23:48,"720 12th St, Boston, MA 02215" +231808,Apple Airpods Headphones,1,150,07/13/19 09:45,"209 5th St, Boston, MA 02215" +231809,AAA Batteries (4-pack),1,2.99,07/02/19 17:55,"168 Maple St, Los Angeles, CA 90001" +231810,27in FHD Monitor,1,149.99,07/23/19 11:18,"711 Elm St, Los Angeles, CA 90001" +231811,Lightning Charging Cable,1,14.95,07/24/19 16:02,"352 Main St, Los Angeles, CA 90001" +231812,AA Batteries (4-pack),1,3.84,08/01/19 02:29,"245 Washington St, New York City, NY 10001" +231813,Lightning Charging Cable,1,14.95,07/15/19 16:04,"262 Park St, Seattle, WA 98101" +231814,Wired Headphones,2,11.99,07/01/19 11:42,"319 12th St, Dallas, TX 75001" +231814,Apple Airpods Headphones,1,150,07/01/19 11:42,"319 12th St, Dallas, TX 75001" +231815,Bose SoundSport Headphones,1,99.99,07/30/19 21:00,"773 12th St, Los Angeles, CA 90001" +231816,Bose SoundSport Headphones,1,99.99,07/18/19 07:45,"263 Sunset St, Atlanta, GA 30301" +231817,AAA Batteries (4-pack),1,2.99,07/05/19 19:13,"592 Hill St, Atlanta, GA 30301" +231818,Wired Headphones,1,11.99,07/31/19 14:47,"91 Chestnut St, Atlanta, GA 30301" +231819,iPhone,1,700,07/11/19 11:45,"782 14th St, Portland, OR 97035" +231820,Google Phone,1,600,07/13/19 09:44,"831 River St, New York City, NY 10001" +231821,Wired Headphones,1,11.99,07/26/19 18:53,"314 River St, Los Angeles, CA 90001" +231822,Wired Headphones,1,11.99,07/30/19 21:50,"52 Church St, Los Angeles, CA 90001" +231823,AA Batteries (4-pack),1,3.84,07/25/19 06:55,"685 4th St, Los Angeles, CA 90001" +231824,Wired Headphones,1,11.99,07/19/19 13:50,"451 1st St, Atlanta, GA 30301" +231825,Apple Airpods Headphones,1,150,07/07/19 22:08,"480 Elm St, San Francisco, CA 94016" +231826,AA Batteries (4-pack),1,3.84,07/19/19 13:11,"569 Chestnut St, New York City, NY 10001" +231827,USB-C Charging Cable,1,11.95,07/03/19 22:30,"69 Chestnut St, Atlanta, GA 30301" +231828,AAA Batteries (4-pack),2,2.99,07/02/19 16:18,"416 14th St, San Francisco, CA 94016" +231829,Flatscreen TV,1,300,07/27/19 12:46,"312 Hickory St, Boston, MA 02215" +231830,34in Ultrawide Monitor,1,379.99,07/16/19 22:28,"803 Johnson St, Dallas, TX 75001" +231831,ThinkPad Laptop,1,999.99,07/21/19 18:57,"124 12th St, Los Angeles, CA 90001" +231832,USB-C Charging Cable,2,11.95,07/07/19 22:17,"154 Forest St, Los Angeles, CA 90001" +231833,Bose SoundSport Headphones,1,99.99,07/13/19 14:52,"628 9th St, New York City, NY 10001" +231834,Apple Airpods Headphones,1,150,07/02/19 22:27,"807 Willow St, Dallas, TX 75001" +231835,AA Batteries (4-pack),1,3.84,07/26/19 17:22,"585 Lake St, San Francisco, CA 94016" +231836,Wired Headphones,1,11.99,07/27/19 00:31,"968 14th St, New York City, NY 10001" +231837,AA Batteries (4-pack),1,3.84,07/17/19 17:45,"710 Hickory St, Seattle, WA 98101" +231838,Lightning Charging Cable,1,14.95,07/07/19 04:18,"3 Lake St, New York City, NY 10001" +231839,Apple Airpods Headphones,1,150,07/26/19 20:12,"221 2nd St, Portland, ME 04101" +231840,USB-C Charging Cable,1,11.95,07/30/19 17:00,"188 9th St, New York City, NY 10001" +231841,Apple Airpods Headphones,1,150,07/02/19 14:29,"585 North St, Dallas, TX 75001" +231842,Google Phone,1,600,07/01/19 08:08,"866 Lincoln St, Seattle, WA 98101" +231842,USB-C Charging Cable,1,11.95,07/01/19 08:08,"866 Lincoln St, Seattle, WA 98101" +231843,Bose SoundSport Headphones,1,99.99,07/19/19 22:01,"248 Wilson St, Austin, TX 73301" +231844,Lightning Charging Cable,1,14.95,07/12/19 16:39,"994 Sunset St, Seattle, WA 98101" +231845,AAA Batteries (4-pack),1,2.99,07/26/19 12:29,"874 5th St, San Francisco, CA 94016" +231846,USB-C Charging Cable,1,11.95,07/09/19 19:11,"519 Willow St, Boston, MA 02215" +231847,iPhone,1,700,07/26/19 17:34,"46 10th St, Seattle, WA 98101" +231848,Apple Airpods Headphones,1,150,07/30/19 09:53,"70 River St, Los Angeles, CA 90001" +231849,Flatscreen TV,1,300,07/14/19 13:34,"52 Adams St, New York City, NY 10001" +231850,Lightning Charging Cable,1,14.95,07/06/19 16:20,"221 Maple St, Seattle, WA 98101" +231851,Lightning Charging Cable,1,14.95,07/22/19 09:31,"336 1st St, Portland, ME 04101" +231852,AAA Batteries (4-pack),3,2.99,07/29/19 19:55,"297 Hickory St, New York City, NY 10001" +231852,AAA Batteries (4-pack),1,2.99,07/29/19 19:55,"297 Hickory St, New York City, NY 10001" +231853,AA Batteries (4-pack),1,3.84,07/28/19 11:38,"984 Pine St, San Francisco, CA 94016" +231854,Wired Headphones,1,11.99,07/19/19 16:33,"2 Pine St, Los Angeles, CA 90001" +231855,Lightning Charging Cable,2,14.95,07/20/19 07:41,"528 Park St, San Francisco, CA 94016" +231856,USB-C Charging Cable,1,11.95,07/27/19 22:57,"897 Willow St, Portland, OR 97035" +231857,USB-C Charging Cable,1,11.95,07/10/19 17:25,"875 7th St, Los Angeles, CA 90001" +231858,27in 4K Gaming Monitor,1,389.99,07/26/19 18:51,"797 14th St, Portland, ME 04101" +231859,AAA Batteries (4-pack),2,2.99,07/12/19 18:13,"363 Main St, Boston, MA 02215" +231860,34in Ultrawide Monitor,1,379.99,07/08/19 15:21,"140 Meadow St, Los Angeles, CA 90001" +231861,USB-C Charging Cable,1,11.95,07/26/19 14:35,"612 Lakeview St, Dallas, TX 75001" +231862,Apple Airpods Headphones,1,150,07/24/19 23:36,"396 Cherry St, San Francisco, CA 94016" +231863,AA Batteries (4-pack),2,3.84,07/20/19 15:26,"297 Washington St, San Francisco, CA 94016" +231864,USB-C Charging Cable,1,11.95,07/26/19 22:26,"102 7th St, Dallas, TX 75001" +231865,AAA Batteries (4-pack),1,2.99,07/09/19 16:22,"794 Cherry St, New York City, NY 10001" +231866,27in FHD Monitor,1,149.99,07/18/19 10:27,"639 Johnson St, San Francisco, CA 94016" +231867,Bose SoundSport Headphones,1,99.99,07/22/19 22:56,"290 Highland St, Los Angeles, CA 90001" +231868,Apple Airpods Headphones,1,150,07/16/19 16:43,"384 10th St, Atlanta, GA 30301" +231869,Lightning Charging Cable,1,14.95,07/11/19 20:41,"628 Cedar St, Atlanta, GA 30301" +231870,USB-C Charging Cable,1,11.95,07/28/19 17:12,"887 2nd St, Atlanta, GA 30301" +231871,AA Batteries (4-pack),1,3.84,07/21/19 11:29,"58 Ridge St, Austin, TX 73301" +231872,27in 4K Gaming Monitor,1,389.99,07/07/19 18:06,"313 South St, New York City, NY 10001" +231873,27in 4K Gaming Monitor,1,389.99,07/20/19 10:21,"121 Willow St, Los Angeles, CA 90001" +231874,Bose SoundSport Headphones,1,99.99,07/02/19 20:46,"123 West St, Dallas, TX 75001" +231875,AAA Batteries (4-pack),1,2.99,07/22/19 18:43,"55 North St, San Francisco, CA 94016" +231876,USB-C Charging Cable,1,11.95,07/30/19 16:47,"775 Spruce St, San Francisco, CA 94016" +231877,AAA Batteries (4-pack),1,2.99,07/14/19 10:38,"809 Maple St, Atlanta, GA 30301" +231878,AAA Batteries (4-pack),1,2.99,07/30/19 09:55,"335 12th St, Seattle, WA 98101" +,,,,, +231879,USB-C Charging Cable,1,11.95,07/12/19 21:59,"753 Willow St, Los Angeles, CA 90001" +231880,Macbook Pro Laptop,1,1700,07/17/19 10:52,"909 Johnson St, New York City, NY 10001" +231881,Lightning Charging Cable,1,14.95,07/30/19 19:00,"365 Church St, New York City, NY 10001" +231882,AA Batteries (4-pack),1,3.84,07/22/19 14:25,"406 Washington St, Boston, MA 02215" +231883,Apple Airpods Headphones,1,150,07/10/19 18:28,"343 9th St, Dallas, TX 75001" +231884,Bose SoundSport Headphones,1,99.99,07/25/19 13:00,"591 Ridge St, Portland, OR 97035" +231885,USB-C Charging Cable,2,11.95,07/12/19 01:17,"471 Wilson St, Boston, MA 02215" +231886,Wired Headphones,2,11.99,07/12/19 07:02,"98 11th St, San Francisco, CA 94016" +231887,LG Washing Machine,1,600.0,07/17/19 17:53,"68 11th St, Los Angeles, CA 90001" +231888,27in FHD Monitor,1,149.99,07/26/19 17:39,"989 Jefferson St, Portland, OR 97035" +231889,Wired Headphones,1,11.99,07/31/19 12:18,"689 Madison St, Dallas, TX 75001" +231890,34in Ultrawide Monitor,1,379.99,07/22/19 23:33,"394 12th St, San Francisco, CA 94016" +231891,AA Batteries (4-pack),1,3.84,07/29/19 18:18,"597 Lakeview St, Atlanta, GA 30301" +231892,27in 4K Gaming Monitor,1,389.99,07/25/19 16:16,"994 9th St, Austin, TX 73301" +231893,AA Batteries (4-pack),1,3.84,07/25/19 09:12,"563 Lincoln St, Seattle, WA 98101" +231894,AA Batteries (4-pack),1,3.84,07/08/19 10:22,"985 Park St, San Francisco, CA 94016" +231895,Apple Airpods Headphones,1,150,07/12/19 18:26,"476 Church St, Portland, OR 97035" +231896,iPhone,1,700,07/14/19 22:08,"874 Jackson St, Seattle, WA 98101" +231897,Wired Headphones,1,11.99,07/13/19 12:18,"820 Elm St, Los Angeles, CA 90001" +231898,AAA Batteries (4-pack),2,2.99,07/07/19 21:22,"110 Sunset St, San Francisco, CA 94016" +231899,AAA Batteries (4-pack),1,2.99,07/22/19 16:17,"522 Madison St, Boston, MA 02215" +231900,USB-C Charging Cable,2,11.95,07/04/19 20:50,"574 Cedar St, Portland, OR 97035" +231901,Lightning Charging Cable,1,14.95,07/19/19 09:27,"254 Hickory St, Portland, OR 97035" +231902,AAA Batteries (4-pack),1,2.99,07/27/19 23:24,"619 Maple St, Austin, TX 73301" +231903,AA Batteries (4-pack),1,3.84,07/22/19 12:51,"830 Johnson St, San Francisco, CA 94016" +231904,USB-C Charging Cable,2,11.95,07/04/19 20:40,"419 South St, Atlanta, GA 30301" +231905,Apple Airpods Headphones,1,150,07/26/19 07:42,"33 7th St, Los Angeles, CA 90001" +231906,AA Batteries (4-pack),1,3.84,07/09/19 19:39,"172 13th St, San Francisco, CA 94016" +231907,Wired Headphones,1,11.99,07/09/19 10:40,"230 Wilson St, Los Angeles, CA 90001" +231908,Lightning Charging Cable,1,14.95,07/17/19 22:11,"489 Lakeview St, Austin, TX 73301" +231909,Macbook Pro Laptop,1,1700,07/15/19 20:01,"270 Jefferson St, San Francisco, CA 94016" +231910,Apple Airpods Headphones,1,150,07/04/19 22:00,"786 Spruce St, San Francisco, CA 94016" +231911,Wired Headphones,1,11.99,07/30/19 09:44,"923 Dogwood St, Dallas, TX 75001" +231912,Apple Airpods Headphones,1,150,07/03/19 21:42,"640 Cedar St, Los Angeles, CA 90001" +231913,27in 4K Gaming Monitor,1,389.99,07/16/19 09:02,"353 Highland St, San Francisco, CA 94016" +231914,27in 4K Gaming Monitor,1,389.99,07/16/19 12:45,"927 Wilson St, Austin, TX 73301" +231915,USB-C Charging Cable,1,11.95,07/01/19 13:05,"64 Lincoln St, Los Angeles, CA 90001" +231916,USB-C Charging Cable,1,11.95,07/11/19 19:32,"705 10th St, Boston, MA 02215" +231917,AA Batteries (4-pack),1,3.84,07/30/19 06:49,"556 River St, San Francisco, CA 94016" +231918,Wired Headphones,1,11.99,07/04/19 07:05,"430 Wilson St, Portland, OR 97035" +231919,iPhone,1,700,07/17/19 22:15,"65 Main St, Boston, MA 02215" +231919,Lightning Charging Cable,1,14.95,07/17/19 22:15,"65 Main St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +231920,Apple Airpods Headphones,1,150,07/16/19 19:36,"785 Spruce St, San Francisco, CA 94016" +231921,27in FHD Monitor,1,149.99,07/28/19 18:23,"429 Maple St, Boston, MA 02215" +231922,AAA Batteries (4-pack),1,2.99,07/21/19 14:19,"211 Hickory St, San Francisco, CA 94016" +231923,Google Phone,1,600,07/19/19 19:06,"207 Maple St, San Francisco, CA 94016" +231923,USB-C Charging Cable,1,11.95,07/19/19 19:06,"207 Maple St, San Francisco, CA 94016" +231924,USB-C Charging Cable,1,11.95,07/29/19 22:17,"879 10th St, Boston, MA 02215" +231925,34in Ultrawide Monitor,1,379.99,07/28/19 11:57,"915 Willow St, Portland, ME 04101" +231926,Bose SoundSport Headphones,1,99.99,07/16/19 19:32,"716 8th St, Boston, MA 02215" +231927,USB-C Charging Cable,1,11.95,07/14/19 16:22,"501 Lakeview St, New York City, NY 10001" +231928,USB-C Charging Cable,1,11.95,07/31/19 01:15,"395 10th St, New York City, NY 10001" +231929,USB-C Charging Cable,1,11.95,07/27/19 10:05,"370 Madison St, Austin, TX 73301" +231930,Wired Headphones,1,11.99,07/06/19 15:11,"46 Cherry St, Atlanta, GA 30301" +231931,AA Batteries (4-pack),1,3.84,07/29/19 23:31,"979 14th St, New York City, NY 10001" +231932,Macbook Pro Laptop,1,1700,07/22/19 19:13,"598 10th St, Atlanta, GA 30301" +231933,AA Batteries (4-pack),1,3.84,07/11/19 12:53,"279 Spruce St, San Francisco, CA 94016" +231934,Vareebadd Phone,1,400,07/19/19 11:12,"759 Main St, Dallas, TX 75001" +231935,Wired Headphones,1,11.99,07/13/19 17:08,"691 Forest St, Portland, OR 97035" +231936,Lightning Charging Cable,1,14.95,07/15/19 01:12,"501 Meadow St, Portland, OR 97035" +231937,Lightning Charging Cable,1,14.95,07/07/19 09:14,"859 Madison St, Atlanta, GA 30301" +231938,AA Batteries (4-pack),1,3.84,07/17/19 18:01,"79 Church St, San Francisco, CA 94016" +231939,AAA Batteries (4-pack),1,2.99,07/01/19 19:59,"374 Washington St, Dallas, TX 75001" +231940,27in FHD Monitor,1,149.99,07/09/19 20:47,"880 Park St, San Francisco, CA 94016" +231941,AAA Batteries (4-pack),3,2.99,07/29/19 22:41,"876 7th St, New York City, NY 10001" +231942,AAA Batteries (4-pack),1,2.99,07/01/19 10:55,"523 Madison St, Los Angeles, CA 90001" +231943,Lightning Charging Cable,2,14.95,07/14/19 20:52,"647 Adams St, New York City, NY 10001" +231944,USB-C Charging Cable,1,11.95,07/22/19 18:54,"946 Lake St, San Francisco, CA 94016" +231945,Wired Headphones,1,11.99,07/02/19 13:53,"847 Meadow St, Seattle, WA 98101" +231946,AA Batteries (4-pack),1,3.84,07/12/19 15:16,"285 Hill St, New York City, NY 10001" +231947,AA Batteries (4-pack),1,3.84,07/28/19 14:56,"970 South St, San Francisco, CA 94016" +231947,Apple Airpods Headphones,1,150,07/28/19 14:56,"970 South St, San Francisco, CA 94016" +231948,Bose SoundSport Headphones,1,99.99,07/24/19 17:14,"317 Chestnut St, Los Angeles, CA 90001" +231949,AA Batteries (4-pack),1,3.84,07/27/19 13:18,"711 West St, Los Angeles, CA 90001" +231950,Lightning Charging Cable,1,14.95,07/28/19 11:24,"525 Lakeview St, Portland, OR 97035" +231951,ThinkPad Laptop,1,999.99,07/19/19 11:13,"829 Elm St, New York City, NY 10001" +231952,27in FHD Monitor,1,149.99,07/13/19 16:21,"189 Wilson St, New York City, NY 10001" +231953,Wired Headphones,1,11.99,07/24/19 04:39,"54 Church St, Austin, TX 73301" +231954,AA Batteries (4-pack),1,3.84,07/01/19 23:09,"778 Pine St, Atlanta, GA 30301" +231955,USB-C Charging Cable,1,11.95,07/06/19 18:49,"124 Main St, Atlanta, GA 30301" +231956,AA Batteries (4-pack),1,3.84,07/29/19 21:29,"892 7th St, San Francisco, CA 94016" +231957,USB-C Charging Cable,1,11.95,07/19/19 13:02,"418 Cherry St, San Francisco, CA 94016" +231958,Flatscreen TV,1,300,07/17/19 15:12,"916 7th St, Los Angeles, CA 90001" +231959,Apple Airpods Headphones,1,150,07/15/19 19:06,"64 Jefferson St, New York City, NY 10001" +231960,USB-C Charging Cable,1,11.95,07/24/19 09:23,"123 7th St, Seattle, WA 98101" +231961,Vareebadd Phone,1,400,07/07/19 11:43,"612 Lake St, San Francisco, CA 94016" +231962,27in 4K Gaming Monitor,1,389.99,07/25/19 10:48,"289 5th St, San Francisco, CA 94016" +231962,USB-C Charging Cable,1,11.95,07/25/19 10:48,"289 5th St, San Francisco, CA 94016" +231963,Bose SoundSport Headphones,1,99.99,07/17/19 13:13,"44 1st St, Dallas, TX 75001" +231964,34in Ultrawide Monitor,1,379.99,07/18/19 23:44,"93 Pine St, Los Angeles, CA 90001" +231965,27in FHD Monitor,1,149.99,07/09/19 15:00,"435 Lake St, Austin, TX 73301" +231966,Wired Headphones,1,11.99,07/27/19 21:46,"304 Main St, Austin, TX 73301" +231967,Lightning Charging Cable,1,14.95,07/11/19 18:04,"489 7th St, Boston, MA 02215" +231968,Wired Headphones,1,11.99,07/06/19 10:32,"437 West St, Los Angeles, CA 90001" +231969,27in FHD Monitor,1,149.99,07/17/19 15:30,"273 River St, San Francisco, CA 94016" +231970,Wired Headphones,1,11.99,07/15/19 07:53,"400 Madison St, New York City, NY 10001" +231971,Bose SoundSport Headphones,1,99.99,07/07/19 08:41,"509 River St, Austin, TX 73301" +231972,AAA Batteries (4-pack),1,2.99,07/19/19 10:37,"451 Jefferson St, San Francisco, CA 94016" +231973,USB-C Charging Cable,1,11.95,07/11/19 07:58,"968 Hickory St, Boston, MA 02215" +231974,AA Batteries (4-pack),1,3.84,07/15/19 17:19,"596 Wilson St, San Francisco, CA 94016" +231975,Lightning Charging Cable,1,14.95,07/03/19 20:46,"552 13th St, Portland, OR 97035" +231976,Macbook Pro Laptop,1,1700,07/03/19 09:13,"597 Elm St, San Francisco, CA 94016" +231977,iPhone,1,700,07/14/19 13:02,"899 Lake St, San Francisco, CA 94016" +231978,USB-C Charging Cable,1,11.95,07/01/19 17:34,"635 12th St, San Francisco, CA 94016" +231979,Bose SoundSport Headphones,1,99.99,07/05/19 08:34,"966 Cedar St, San Francisco, CA 94016" +231980,AAA Batteries (4-pack),1,2.99,07/15/19 23:08,"390 Spruce St, Seattle, WA 98101" +231981,Bose SoundSport Headphones,1,99.99,07/08/19 23:47,"727 Church St, Seattle, WA 98101" +231982,iPhone,1,700,07/05/19 15:18,"723 6th St, New York City, NY 10001" +231983,iPhone,1,700,07/29/19 12:56,"287 Washington St, Portland, OR 97035" +231984,Apple Airpods Headphones,1,150,07/29/19 17:45,"170 Johnson St, San Francisco, CA 94016" +231985,USB-C Charging Cable,2,11.95,07/10/19 15:59,"745 Adams St, San Francisco, CA 94016" +231986,AA Batteries (4-pack),1,3.84,07/26/19 11:14,"552 Walnut St, Portland, OR 97035" +231987,AAA Batteries (4-pack),1,2.99,07/04/19 20:19,"11 1st St, Los Angeles, CA 90001" +231988,Flatscreen TV,1,300,07/21/19 19:40,"410 Lincoln St, San Francisco, CA 94016" +231989,Bose SoundSport Headphones,1,99.99,07/03/19 20:57,"168 Sunset St, Portland, OR 97035" +231990,iPhone,1,700,07/26/19 12:20,"596 Madison St, Seattle, WA 98101" +231991,Lightning Charging Cable,1,14.95,07/12/19 23:06,"995 5th St, Atlanta, GA 30301" +231992,Lightning Charging Cable,1,14.95,07/14/19 17:19,"651 Dogwood St, Los Angeles, CA 90001" +231993,AA Batteries (4-pack),2,3.84,07/30/19 18:37,"77 Main St, Seattle, WA 98101" +231994,USB-C Charging Cable,1,11.95,08/01/19 01:30,"564 Hill St, Los Angeles, CA 90001" +231995,27in FHD Monitor,1,149.99,07/13/19 18:54,"969 Park St, Los Angeles, CA 90001" +231996,Apple Airpods Headphones,1,150,07/19/19 11:23,"749 Highland St, San Francisco, CA 94016" +231997,AA Batteries (4-pack),1,3.84,07/30/19 14:44,"385 Sunset St, Atlanta, GA 30301" +231998,AAA Batteries (4-pack),2,2.99,07/06/19 23:13,"739 Ridge St, Seattle, WA 98101" +231999,Vareebadd Phone,1,400,07/08/19 16:11,"16 Meadow St, Dallas, TX 75001" +232000,27in FHD Monitor,1,149.99,07/04/19 01:18,"749 Spruce St, New York City, NY 10001" +232001,27in FHD Monitor,1,149.99,07/12/19 23:24,"607 River St, Seattle, WA 98101" +232002,ThinkPad Laptop,1,999.99,07/26/19 12:35,"655 Cherry St, Dallas, TX 75001" +232003,27in 4K Gaming Monitor,1,389.99,07/21/19 06:37,"801 5th St, Boston, MA 02215" +232004,Apple Airpods Headphones,1,150,07/29/19 21:40,"70 Park St, Portland, ME 04101" +232005,AA Batteries (4-pack),3,3.84,07/26/19 20:54,"539 1st St, Atlanta, GA 30301" +232005,iPhone,1,700,07/26/19 20:54,"539 1st St, Atlanta, GA 30301" +232006,USB-C Charging Cable,2,11.95,07/22/19 21:02,"377 Elm St, Los Angeles, CA 90001" +232007,27in FHD Monitor,1,149.99,07/12/19 19:02,"796 Center St, Los Angeles, CA 90001" +232008,Bose SoundSport Headphones,1,99.99,07/30/19 08:59,"193 Jefferson St, San Francisco, CA 94016" +232009,Apple Airpods Headphones,1,150,07/24/19 21:14,"317 10th St, San Francisco, CA 94016" +232010,Wired Headphones,1,11.99,07/06/19 14:47,"695 West St, San Francisco, CA 94016" +232011,AA Batteries (4-pack),1,3.84,07/07/19 16:49,"484 Maple St, San Francisco, CA 94016" +232012,AAA Batteries (4-pack),1,2.99,07/31/19 17:08,"507 Willow St, New York City, NY 10001" +232013,USB-C Charging Cable,1,11.95,07/16/19 19:07,"759 Park St, Portland, OR 97035" +232014,iPhone,1,700,07/21/19 11:10,"385 9th St, Seattle, WA 98101" +232015,Wired Headphones,2,11.99,07/22/19 17:18,"504 Maple St, San Francisco, CA 94016" +232016,AA Batteries (4-pack),1,3.84,07/31/19 13:36,"210 Spruce St, New York City, NY 10001" +232017,Wired Headphones,1,11.99,07/16/19 23:43,"236 Cedar St, Dallas, TX 75001" +232018,Lightning Charging Cable,1,14.95,07/29/19 17:46,"259 Sunset St, Portland, ME 04101" +232019,Lightning Charging Cable,1,14.95,07/10/19 22:17,"723 Cedar St, San Francisco, CA 94016" +232020,AA Batteries (4-pack),1,3.84,07/05/19 20:15,"694 Pine St, New York City, NY 10001" +232021,AA Batteries (4-pack),1,3.84,07/17/19 15:11,"603 Spruce St, Portland, OR 97035" +232022,Wired Headphones,1,11.99,07/03/19 06:25,"104 4th St, Los Angeles, CA 90001" +232023,USB-C Charging Cable,1,11.95,07/16/19 08:58,"261 Jackson St, Boston, MA 02215" +232024,USB-C Charging Cable,1,11.95,07/28/19 16:04,"946 River St, San Francisco, CA 94016" +232025,AA Batteries (4-pack),1,3.84,07/25/19 19:45,"683 Spruce St, Los Angeles, CA 90001" +232026,Lightning Charging Cable,1,14.95,07/11/19 13:30,"800 13th St, New York City, NY 10001" +232027,Macbook Pro Laptop,1,1700,07/27/19 17:54,"374 Dogwood St, Los Angeles, CA 90001" +232028,USB-C Charging Cable,1,11.95,07/22/19 15:23,"554 Lakeview St, New York City, NY 10001" +232029,34in Ultrawide Monitor,1,379.99,07/18/19 09:07,"376 14th St, San Francisco, CA 94016" +232030,Lightning Charging Cable,1,14.95,07/20/19 22:10,"639 Center St, Atlanta, GA 30301" +232031,AA Batteries (4-pack),1,3.84,07/04/19 11:48,"349 Hill St, New York City, NY 10001" +232032,Macbook Pro Laptop,1,1700,07/22/19 21:06,"662 Meadow St, Los Angeles, CA 90001" +232033,27in FHD Monitor,1,149.99,07/08/19 10:12,"335 Elm St, Los Angeles, CA 90001" +232034,Lightning Charging Cable,1,14.95,07/11/19 21:12,"214 Hickory St, Austin, TX 73301" +232035,Apple Airpods Headphones,1,150,07/29/19 13:28,"600 11th St, Boston, MA 02215" +232036,AA Batteries (4-pack),1,3.84,07/02/19 09:03,"922 Spruce St, New York City, NY 10001" +232037,USB-C Charging Cable,1,11.95,07/05/19 22:33,"907 6th St, San Francisco, CA 94016" +232038,Wired Headphones,1,11.99,07/25/19 02:30,"731 River St, Portland, OR 97035" +232039,Lightning Charging Cable,1,14.95,07/15/19 10:58,"5 Johnson St, Portland, OR 97035" +232040,AA Batteries (4-pack),1,3.84,07/22/19 20:18,"849 Lakeview St, New York City, NY 10001" +232041,Wired Headphones,1,11.99,07/06/19 14:11,"589 1st St, San Francisco, CA 94016" +232042,27in FHD Monitor,1,149.99,07/20/19 15:11,"414 Dogwood St, San Francisco, CA 94016" +232043,Bose SoundSport Headphones,1,99.99,07/27/19 09:02,"521 Center St, Portland, OR 97035" +232044,Wired Headphones,1,11.99,07/14/19 15:28,"598 Madison St, Austin, TX 73301" +232045,27in 4K Gaming Monitor,1,389.99,07/08/19 09:10,"916 Cherry St, San Francisco, CA 94016" +232046,Apple Airpods Headphones,1,150,07/27/19 13:33,"469 Elm St, Portland, OR 97035" +232047,USB-C Charging Cable,2,11.95,07/17/19 10:29,"569 Main St, Los Angeles, CA 90001" +232048,iPhone,1,700,07/17/19 21:55,"503 Johnson St, New York City, NY 10001" +232049,Lightning Charging Cable,1,14.95,07/06/19 19:20,"838 South St, New York City, NY 10001" +232050,Apple Airpods Headphones,1,150,07/04/19 11:42,"175 Cedar St, Seattle, WA 98101" +232050,iPhone,1,700,07/04/19 11:42,"175 Cedar St, Seattle, WA 98101" +232051,Wired Headphones,1,11.99,07/05/19 11:15,"155 Jackson St, New York City, NY 10001" +232052,34in Ultrawide Monitor,1,379.99,07/02/19 20:17,"537 14th St, Los Angeles, CA 90001" +232053,Apple Airpods Headphones,1,150,07/26/19 10:28,"968 Jefferson St, New York City, NY 10001" +232054,Wired Headphones,1,11.99,07/02/19 16:59,"918 Lakeview St, Seattle, WA 98101" +232055,AAA Batteries (4-pack),2,2.99,07/26/19 20:13,"52 2nd St, Los Angeles, CA 90001" +232056,Apple Airpods Headphones,1,150,07/09/19 21:25,"426 Washington St, Austin, TX 73301" +232057,ThinkPad Laptop,1,999.99,07/27/19 11:32,"290 Cedar St, San Francisco, CA 94016" +232058,Wired Headphones,1,11.99,07/30/19 14:04,"401 Forest St, Boston, MA 02215" +232059,Wired Headphones,1,11.99,07/19/19 22:46,"876 Pine St, Atlanta, GA 30301" +232060,34in Ultrawide Monitor,1,379.99,07/02/19 15:29,"58 10th St, San Francisco, CA 94016" +232061,USB-C Charging Cable,1,11.95,07/08/19 13:55,"427 Jefferson St, San Francisco, CA 94016" +232062,USB-C Charging Cable,1,11.95,07/01/19 14:39,"899 10th St, San Francisco, CA 94016" +232063,iPhone,1,700,07/09/19 10:38,"676 Lincoln St, San Francisco, CA 94016" +232064,Lightning Charging Cable,1,14.95,07/11/19 08:46,"525 5th St, Austin, TX 73301" +232065,34in Ultrawide Monitor,1,379.99,07/03/19 12:40,"646 Jefferson St, New York City, NY 10001" +232066,Wired Headphones,1,11.99,07/05/19 11:08,"584 12th St, Boston, MA 02215" +232067,Vareebadd Phone,1,400,07/31/19 12:06,"897 9th St, Portland, OR 97035" +232068,iPhone,1,700,07/01/19 13:26,"358 Adams St, Los Angeles, CA 90001" +232068,Lightning Charging Cable,1,14.95,07/01/19 13:26,"358 Adams St, Los Angeles, CA 90001" +232069,27in FHD Monitor,1,149.99,07/20/19 19:44,"446 Elm St, Los Angeles, CA 90001" +232070,Bose SoundSport Headphones,1,99.99,07/25/19 07:40,"864 2nd St, Los Angeles, CA 90001" +232071,USB-C Charging Cable,2,11.95,07/25/19 16:50,"416 Willow St, New York City, NY 10001" +232072,Vareebadd Phone,1,400,07/04/19 11:55,"743 10th St, San Francisco, CA 94016" +232073,ThinkPad Laptop,1,999.99,07/01/19 19:14,"391 13th St, Boston, MA 02215" +232074,Lightning Charging Cable,1,14.95,07/17/19 06:54,"270 Willow St, Portland, ME 04101" +232075,AAA Batteries (4-pack),1,2.99,07/03/19 01:59,"105 10th St, New York City, NY 10001" +232076,Wired Headphones,1,11.99,07/07/19 11:40,"544 Lincoln St, Seattle, WA 98101" +232077,Lightning Charging Cable,1,14.95,07/02/19 21:27,"523 Johnson St, New York City, NY 10001" +232078,ThinkPad Laptop,1,999.99,07/29/19 13:29,"59 2nd St, Austin, TX 73301" +232079,Macbook Pro Laptop,1,1700,07/28/19 20:58,"366 Wilson St, Atlanta, GA 30301" +232080,27in FHD Monitor,1,149.99,07/25/19 12:47,"98 12th St, Portland, OR 97035" +232081,Lightning Charging Cable,1,14.95,07/21/19 17:43,"505 4th St, New York City, NY 10001" +232081,Wired Headphones,1,11.99,07/21/19 17:43,"505 4th St, New York City, NY 10001" +232082,Lightning Charging Cable,1,14.95,07/19/19 07:12,"612 8th St, San Francisco, CA 94016" +232083,iPhone,1,700,07/14/19 17:24,"981 Willow St, San Francisco, CA 94016" +232084,Google Phone,1,600,07/07/19 09:28,"265 4th St, Los Angeles, CA 90001" +232085,USB-C Charging Cable,1,11.95,07/13/19 11:19,"259 Lakeview St, New York City, NY 10001" +232086,Bose SoundSport Headphones,1,99.99,07/05/19 13:30,"896 Highland St, San Francisco, CA 94016" +232087,Wired Headphones,2,11.99,07/18/19 22:12,"317 6th St, San Francisco, CA 94016" +232088,AA Batteries (4-pack),1,3.84,07/22/19 19:43,"877 9th St, New York City, NY 10001" +232089,AAA Batteries (4-pack),1,2.99,07/13/19 12:39,"257 4th St, Atlanta, GA 30301" +232090,USB-C Charging Cable,1,11.95,07/12/19 05:58,"902 Spruce St, New York City, NY 10001" +232091,USB-C Charging Cable,1,11.95,07/30/19 21:53,"825 Washington St, San Francisco, CA 94016" +232092,Wired Headphones,1,11.99,07/31/19 13:37,"156 Wilson St, Austin, TX 73301" +232093,USB-C Charging Cable,1,11.95,07/01/19 11:14,"687 Meadow St, San Francisco, CA 94016" +232094,Apple Airpods Headphones,1,150,07/23/19 20:00,"725 Washington St, San Francisco, CA 94016" +232095,Macbook Pro Laptop,1,1700,07/12/19 16:46,"368 10th St, San Francisco, CA 94016" +232096,iPhone,1,700,07/03/19 22:08,"930 2nd St, New York City, NY 10001" +232096,Lightning Charging Cable,1,14.95,07/03/19 22:08,"930 2nd St, New York City, NY 10001" +232097,Wired Headphones,1,11.99,07/03/19 07:14,"851 Highland St, San Francisco, CA 94016" +232098,Apple Airpods Headphones,1,150,07/27/19 13:24,"662 10th St, Portland, OR 97035" +232099,USB-C Charging Cable,1,11.95,07/31/19 21:43,"319 Madison St, Austin, TX 73301" +232100,Apple Airpods Headphones,1,150,07/31/19 15:00,"432 Forest St, Boston, MA 02215" +232101,Bose SoundSport Headphones,1,99.99,07/13/19 19:13,"586 13th St, Seattle, WA 98101" +232102,AAA Batteries (4-pack),1,2.99,07/15/19 12:59,"854 5th St, Atlanta, GA 30301" +232103,Wired Headphones,1,11.99,07/05/19 23:00,"415 Spruce St, New York City, NY 10001" +232104,AA Batteries (4-pack),1,3.84,07/15/19 20:29,"501 11th St, Boston, MA 02215" +232105,AA Batteries (4-pack),2,3.84,07/13/19 16:03,"712 Park St, New York City, NY 10001" +232106,Wired Headphones,1,11.99,07/06/19 13:02,"912 Maple St, Seattle, WA 98101" +232107,AA Batteries (4-pack),1,3.84,07/28/19 11:37,"402 Forest St, Seattle, WA 98101" +232108,Bose SoundSport Headphones,1,99.99,07/26/19 14:58,"163 Cedar St, Atlanta, GA 30301" +232109,Bose SoundSport Headphones,1,99.99,07/06/19 20:43,"984 Ridge St, Boston, MA 02215" +232110,Wired Headphones,1,11.99,07/20/19 19:49,"847 Elm St, Los Angeles, CA 90001" +232111,Lightning Charging Cable,1,14.95,07/04/19 10:23,"58 Pine St, Los Angeles, CA 90001" +232112,Lightning Charging Cable,1,14.95,07/15/19 16:21,"486 Dogwood St, San Francisco, CA 94016" +232113,Lightning Charging Cable,1,14.95,07/10/19 17:24,"579 North St, Boston, MA 02215" +232114,27in FHD Monitor,1,149.99,07/09/19 13:38,"726 Dogwood St, Portland, OR 97035" +232115,Wired Headphones,1,11.99,07/02/19 10:40,"639 Wilson St, Dallas, TX 75001" +232116,Lightning Charging Cable,1,14.95,07/21/19 08:20,"790 Cedar St, San Francisco, CA 94016" +232117,Flatscreen TV,1,300,07/19/19 13:40,"178 12th St, Dallas, TX 75001" +232118,USB-C Charging Cable,1,11.95,07/23/19 10:04,"123 12th St, Atlanta, GA 30301" +232119,27in FHD Monitor,1,149.99,07/09/19 22:28,"698 1st St, Seattle, WA 98101" +232120,Lightning Charging Cable,1,14.95,07/03/19 14:30,"517 Adams St, San Francisco, CA 94016" +232121,Bose SoundSport Headphones,1,99.99,07/20/19 13:45,"347 Hickory St, New York City, NY 10001" +232122,Flatscreen TV,1,300,07/07/19 11:54,"626 7th St, San Francisco, CA 94016" +232123,Apple Airpods Headphones,1,150,07/19/19 21:41,"693 Cherry St, New York City, NY 10001" +232124,27in FHD Monitor,1,149.99,07/31/19 16:41,"277 Johnson St, Los Angeles, CA 90001" +232125,Lightning Charging Cable,1,14.95,07/18/19 22:15,"660 10th St, Atlanta, GA 30301" +232126,Bose SoundSport Headphones,1,99.99,07/17/19 16:35,"565 9th St, Atlanta, GA 30301" +232127,27in 4K Gaming Monitor,1,389.99,07/08/19 10:22,"921 Wilson St, Portland, OR 97035" +232128,Lightning Charging Cable,1,14.95,07/11/19 15:15,"490 Park St, San Francisco, CA 94016" +232129,Wired Headphones,1,11.99,07/29/19 22:34,"997 7th St, San Francisco, CA 94016" +232130,Lightning Charging Cable,1,14.95,07/27/19 15:14,"624 West St, San Francisco, CA 94016" +232131,USB-C Charging Cable,1,11.95,07/01/19 13:48,"382 7th St, Dallas, TX 75001" +232132,Lightning Charging Cable,1,14.95,07/06/19 14:30,"150 6th St, Seattle, WA 98101" +232133,Bose SoundSport Headphones,1,99.99,07/29/19 17:36,"322 Washington St, Dallas, TX 75001" +232134,27in 4K Gaming Monitor,1,389.99,07/25/19 02:14,"690 Highland St, Dallas, TX 75001" +232135,Lightning Charging Cable,1,14.95,07/14/19 10:42,"240 Ridge St, Austin, TX 73301" +232136,AA Batteries (4-pack),1,3.84,07/17/19 18:08,"569 Jackson St, Los Angeles, CA 90001" +232137,Wired Headphones,1,11.99,07/06/19 09:34,"93 2nd St, San Francisco, CA 94016" +232138,27in FHD Monitor,1,149.99,07/03/19 05:15,"783 Spruce St, San Francisco, CA 94016" +232139,Lightning Charging Cable,1,14.95,07/20/19 21:51,"445 1st St, Portland, OR 97035" +232140,27in 4K Gaming Monitor,1,389.99,07/30/19 18:21,"626 Forest St, Austin, TX 73301" +232141,20in Monitor,1,109.99,07/15/19 19:40,"936 Willow St, Dallas, TX 75001" +232142,Bose SoundSport Headphones,1,99.99,07/21/19 09:02,"931 Forest St, Los Angeles, CA 90001" +232143,Lightning Charging Cable,1,14.95,07/23/19 18:36,"979 Jefferson St, Austin, TX 73301" +232144,Wired Headphones,1,11.99,07/31/19 21:55,"737 9th St, New York City, NY 10001" +232145,AAA Batteries (4-pack),1,2.99,07/13/19 20:43,"929 North St, Boston, MA 02215" +232146,Lightning Charging Cable,1,14.95,07/12/19 05:27,"643 Lincoln St, Los Angeles, CA 90001" +232147,Flatscreen TV,1,300,07/17/19 19:23,"161 Maple St, Boston, MA 02215" +232148,AAA Batteries (4-pack),3,2.99,07/04/19 00:26,"394 14th St, New York City, NY 10001" +232149,Macbook Pro Laptop,1,1700,07/16/19 18:46,"742 Forest St, New York City, NY 10001" +232150,AA Batteries (4-pack),1,3.84,07/10/19 23:55,"388 9th St, Dallas, TX 75001" +232151,27in 4K Gaming Monitor,1,389.99,07/05/19 20:11,"523 Highland St, New York City, NY 10001" +232151,AA Batteries (4-pack),2,3.84,07/05/19 20:11,"523 Highland St, New York City, NY 10001" +232152,iPhone,1,700,07/20/19 10:09,"91 14th St, San Francisco, CA 94016" +232153,Wired Headphones,1,11.99,07/27/19 12:07,"327 Lincoln St, Los Angeles, CA 90001" +232154,Apple Airpods Headphones,1,150,07/15/19 17:42,"860 9th St, Dallas, TX 75001" +232155,Bose SoundSport Headphones,1,99.99,07/11/19 06:08,"438 12th St, Los Angeles, CA 90001" +232156,27in 4K Gaming Monitor,1,389.99,07/27/19 01:34,"269 Lincoln St, Los Angeles, CA 90001" +232157,Lightning Charging Cable,1,14.95,07/23/19 20:42,"641 5th St, Los Angeles, CA 90001" +232158,ThinkPad Laptop,1,999.99,07/21/19 01:20,"241 Jackson St, New York City, NY 10001" +232159,Apple Airpods Headphones,1,150,07/01/19 08:23,"548 Wilson St, San Francisco, CA 94016" +232160,ThinkPad Laptop,1,999.99,07/02/19 19:50,"987 14th St, Los Angeles, CA 90001" +232161,Flatscreen TV,1,300,07/13/19 14:14,"814 12th St, Boston, MA 02215" +232162,Apple Airpods Headphones,1,150,07/10/19 17:43,"775 Highland St, New York City, NY 10001" +232163,AA Batteries (4-pack),1,3.84,07/29/19 20:13,"209 Chestnut St, Portland, OR 97035" +232164,ThinkPad Laptop,1,999.99,07/06/19 07:38,"593 Madison St, Boston, MA 02215" +232165,AAA Batteries (4-pack),2,2.99,07/01/19 20:17,"637 12th St, Austin, TX 73301" +232166,20in Monitor,1,109.99,07/31/19 11:56,"470 1st St, Austin, TX 73301" +232167,AA Batteries (4-pack),1,3.84,07/15/19 10:51,"446 Highland St, Seattle, WA 98101" +232168,AA Batteries (4-pack),1,3.84,07/19/19 13:58,"624 Wilson St, New York City, NY 10001" +232169,USB-C Charging Cable,1,11.95,07/31/19 14:07,"735 Lincoln St, San Francisco, CA 94016" +232170,AAA Batteries (4-pack),1,2.99,07/31/19 15:56,"90 6th St, Boston, MA 02215" +232171,AA Batteries (4-pack),2,3.84,07/02/19 12:41,"273 Pine St, San Francisco, CA 94016" +232172,27in FHD Monitor,1,149.99,07/14/19 19:02,"835 7th St, San Francisco, CA 94016" +232173,USB-C Charging Cable,1,11.95,07/12/19 11:40,"572 Washington St, San Francisco, CA 94016" +232174,USB-C Charging Cable,1,11.95,07/26/19 13:46,"321 Adams St, Seattle, WA 98101" +232175,USB-C Charging Cable,1,11.95,07/16/19 18:10,"278 8th St, Portland, OR 97035" +232176,Bose SoundSport Headphones,1,99.99,07/19/19 21:53,"583 8th St, Atlanta, GA 30301" +232177,Bose SoundSport Headphones,1,99.99,07/05/19 21:20,"489 Cherry St, New York City, NY 10001" +232178,USB-C Charging Cable,1,11.95,07/15/19 06:41,"761 North St, Austin, TX 73301" +232179,AAA Batteries (4-pack),1,2.99,07/14/19 15:01,"423 Sunset St, New York City, NY 10001" +232180,AAA Batteries (4-pack),1,2.99,07/13/19 08:02,"664 Jackson St, San Francisco, CA 94016" +232181,Wired Headphones,2,11.99,07/25/19 20:25,"666 Lake St, Dallas, TX 75001" +232182,AA Batteries (4-pack),1,3.84,07/15/19 09:26,"799 Chestnut St, New York City, NY 10001" +232183,20in Monitor,1,109.99,07/20/19 15:13,"286 Hill St, Los Angeles, CA 90001" +232184,Macbook Pro Laptop,1,1700,07/04/19 22:59,"287 2nd St, Los Angeles, CA 90001" +232185,USB-C Charging Cable,3,11.95,07/10/19 21:56,"59 Elm St, Los Angeles, CA 90001" +232186,Lightning Charging Cable,1,14.95,07/20/19 13:11,"640 Ridge St, San Francisco, CA 94016" +232187,Lightning Charging Cable,1,14.95,07/31/19 19:21,"498 12th St, Los Angeles, CA 90001" +232188,AAA Batteries (4-pack),2,2.99,07/26/19 15:49,"144 Park St, Los Angeles, CA 90001" +232189,USB-C Charging Cable,1,11.95,07/09/19 09:58,"466 Highland St, Boston, MA 02215" +232190,Lightning Charging Cable,1,14.95,07/24/19 12:56,"382 Park St, San Francisco, CA 94016" +232191,Lightning Charging Cable,1,14.95,07/21/19 20:49,"431 Hill St, San Francisco, CA 94016" +232192,Lightning Charging Cable,1,14.95,07/15/19 16:21,"199 10th St, San Francisco, CA 94016" +232193,Lightning Charging Cable,1,14.95,07/11/19 22:54,"201 Elm St, Boston, MA 02215" +232194,USB-C Charging Cable,1,11.95,07/12/19 17:22,"752 Park St, Los Angeles, CA 90001" +232195,USB-C Charging Cable,1,11.95,07/26/19 20:41,"392 Hickory St, San Francisco, CA 94016" +232196,ThinkPad Laptop,1,999.99,07/02/19 15:47,"850 Lakeview St, Boston, MA 02215" +232197,Flatscreen TV,1,300,07/28/19 07:49,"199 6th St, Dallas, TX 75001" +232198,Macbook Pro Laptop,1,1700,07/06/19 22:28,"958 Lake St, Seattle, WA 98101" +232199,Google Phone,1,600,07/19/19 23:53,"263 Chestnut St, San Francisco, CA 94016" +232200,Bose SoundSport Headphones,1,99.99,07/25/19 14:44,"380 Dogwood St, Portland, OR 97035" +232201,Bose SoundSport Headphones,1,99.99,07/11/19 10:20,"578 Madison St, Atlanta, GA 30301" +232202,AAA Batteries (4-pack),1,2.99,07/21/19 21:21,"789 Hill St, San Francisco, CA 94016" +232203,Lightning Charging Cable,1,14.95,07/15/19 23:27,"227 Lakeview St, New York City, NY 10001" +232204,27in FHD Monitor,1,149.99,07/11/19 14:14,"83 Chestnut St, Seattle, WA 98101" +232205,USB-C Charging Cable,1,11.95,07/27/19 18:32,"610 Jefferson St, Portland, OR 97035" +232206,Wired Headphones,1,11.99,07/30/19 21:45,"952 6th St, Boston, MA 02215" +232207,USB-C Charging Cable,1,11.95,07/15/19 08:42,"257 North St, Portland, OR 97035" +232208,Apple Airpods Headphones,1,150,07/10/19 11:01,"499 Ridge St, Los Angeles, CA 90001" +232209,USB-C Charging Cable,1,11.95,07/02/19 17:06,"829 4th St, San Francisco, CA 94016" +232210,USB-C Charging Cable,2,11.95,07/29/19 15:43,"257 12th St, San Francisco, CA 94016" +232211,Lightning Charging Cable,1,14.95,07/06/19 15:16,"136 Sunset St, Los Angeles, CA 90001" +232212,Bose SoundSport Headphones,1,99.99,07/28/19 19:34,"802 Dogwood St, Seattle, WA 98101" +232213,Flatscreen TV,2,300,07/17/19 17:32,"781 Washington St, Dallas, TX 75001" +232214,iPhone,1,700,07/09/19 12:23,"631 Chestnut St, Dallas, TX 75001" +232215,AAA Batteries (4-pack),1,2.99,07/15/19 20:28,"453 Meadow St, Dallas, TX 75001" +232216,Apple Airpods Headphones,1,150,07/25/19 14:33,"888 Highland St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +232217,Lightning Charging Cable,1,14.95,07/14/19 11:41,"89 8th St, Austin, TX 73301" +232218,USB-C Charging Cable,1,11.95,07/08/19 11:08,"538 Jefferson St, Dallas, TX 75001" +232219,ThinkPad Laptop,1,999.99,07/10/19 00:38,"374 9th St, Boston, MA 02215" +232220,Apple Airpods Headphones,1,150,07/31/19 18:20,"437 4th St, Boston, MA 02215" +232221,AAA Batteries (4-pack),2,2.99,07/13/19 14:25,"826 1st St, Seattle, WA 98101" +232222,USB-C Charging Cable,1,11.95,07/11/19 13:20,"772 Sunset St, Los Angeles, CA 90001" +232223,Lightning Charging Cable,1,14.95,07/13/19 16:12,"190 Park St, Dallas, TX 75001" +232224,Google Phone,1,600,07/15/19 17:55,"646 Walnut St, Los Angeles, CA 90001" +232225,Apple Airpods Headphones,1,150,07/07/19 18:36,"967 11th St, Dallas, TX 75001" +232226,27in FHD Monitor,1,149.99,07/11/19 12:45,"570 Elm St, San Francisco, CA 94016" +232227,34in Ultrawide Monitor,1,379.99,07/18/19 15:40,"992 5th St, Los Angeles, CA 90001" +232228,20in Monitor,1,109.99,07/03/19 16:05,"846 9th St, New York City, NY 10001" +232229,27in 4K Gaming Monitor,1,389.99,07/20/19 13:01,"126 Washington St, Los Angeles, CA 90001" +232230,Lightning Charging Cable,1,14.95,07/16/19 08:44,"261 Dogwood St, Los Angeles, CA 90001" +232231,iPhone,1,700,07/29/19 13:29,"362 12th St, New York City, NY 10001" +232232,Lightning Charging Cable,1,14.95,07/22/19 19:47,"342 Cherry St, New York City, NY 10001" +232233,Lightning Charging Cable,1,14.95,07/12/19 18:05,"81 Chestnut St, San Francisco, CA 94016" +232234,Apple Airpods Headphones,1,150,07/06/19 13:27,"654 Walnut St, Los Angeles, CA 90001" +232235,USB-C Charging Cable,1,11.95,07/10/19 17:08,"362 Hickory St, Los Angeles, CA 90001" +232236,AAA Batteries (4-pack),1,2.99,07/30/19 20:01,"777 Washington St, Boston, MA 02215" +232237,AA Batteries (4-pack),1,3.84,07/18/19 07:47,"907 4th St, Dallas, TX 75001" +232238,Bose SoundSport Headphones,1,99.99,07/28/19 15:18,"954 West St, Dallas, TX 75001" +232239,AAA Batteries (4-pack),1,2.99,07/19/19 20:12,"575 9th St, San Francisco, CA 94016" +232240,34in Ultrawide Monitor,1,379.99,07/09/19 09:33,"55 6th St, Austin, TX 73301" +232241,Lightning Charging Cable,1,14.95,07/14/19 19:51,"887 Hickory St, Los Angeles, CA 90001" +232242,ThinkPad Laptop,1,999.99,07/12/19 05:19,"368 Forest St, San Francisco, CA 94016" +232243,20in Monitor,1,109.99,07/30/19 11:55,"115 Jefferson St, San Francisco, CA 94016" +232244,Bose SoundSport Headphones,1,99.99,07/11/19 11:06,"505 Highland St, Atlanta, GA 30301" +232245,Lightning Charging Cable,1,14.95,07/11/19 11:55,"494 10th St, Atlanta, GA 30301" +232246,USB-C Charging Cable,1,11.95,07/25/19 20:54,"437 Wilson St, Atlanta, GA 30301" +232247,Bose SoundSport Headphones,1,99.99,07/25/19 13:10,"33 Jackson St, San Francisco, CA 94016" +232248,Bose SoundSport Headphones,1,99.99,07/15/19 18:58,"607 Wilson St, Seattle, WA 98101" +232249,Apple Airpods Headphones,1,150,07/26/19 13:56,"141 Adams St, Dallas, TX 75001" +232250,Macbook Pro Laptop,1,1700,07/10/19 17:09,"991 Pine St, Portland, OR 97035" +232251,AA Batteries (4-pack),1,3.84,07/30/19 13:37,"418 Center St, Portland, OR 97035" +232252,AAA Batteries (4-pack),1,2.99,07/18/19 12:45,"697 Wilson St, Dallas, TX 75001" +232253,AAA Batteries (4-pack),1,2.99,07/15/19 17:29,"406 South St, Austin, TX 73301" +232254,AAA Batteries (4-pack),1,2.99,07/04/19 13:48,"187 Church St, San Francisco, CA 94016" +232255,AAA Batteries (4-pack),4,2.99,07/21/19 21:08,"384 Forest St, Dallas, TX 75001" +232256,Lightning Charging Cable,1,14.95,07/08/19 14:27,"228 Chestnut St, San Francisco, CA 94016" +232257,iPhone,1,700,07/16/19 18:50,"55 Cedar St, Los Angeles, CA 90001" +232258,Lightning Charging Cable,1,14.95,07/19/19 15:22,"62 Pine St, New York City, NY 10001" +232259,iPhone,1,700,07/22/19 16:59,"750 Elm St, Boston, MA 02215" +232260,Apple Airpods Headphones,1,150,07/08/19 12:29,"8 Church St, San Francisco, CA 94016" +232261,iPhone,1,700,07/15/19 14:29,"819 Lake St, Atlanta, GA 30301" +232262,Wired Headphones,1,11.99,07/04/19 15:49,"493 5th St, Los Angeles, CA 90001" +232263,Macbook Pro Laptop,1,1700,07/17/19 00:00,"865 Forest St, Los Angeles, CA 90001" +232264,Apple Airpods Headphones,1,150,07/20/19 11:41,"632 8th St, Dallas, TX 75001" +232265,Flatscreen TV,1,300,07/01/19 19:59,"663 Center St, Boston, MA 02215" +232266,AA Batteries (4-pack),1,3.84,07/18/19 12:09,"703 Adams St, Boston, MA 02215" +232267,USB-C Charging Cable,1,11.95,07/31/19 13:14,"635 9th St, New York City, NY 10001" +232268,Lightning Charging Cable,1,14.95,07/20/19 10:44,"649 Main St, Los Angeles, CA 90001" +232269,Apple Airpods Headphones,1,150,07/31/19 20:06,"963 2nd St, Portland, OR 97035" +232270,Wired Headphones,1,11.99,07/02/19 11:46,"129 West St, New York City, NY 10001" +232271,AAA Batteries (4-pack),3,2.99,07/31/19 04:06,"563 Spruce St, Los Angeles, CA 90001" +232272,27in FHD Monitor,1,149.99,07/25/19 04:17,"406 4th St, Atlanta, GA 30301" +232273,34in Ultrawide Monitor,1,379.99,07/09/19 13:24,"496 7th St, San Francisco, CA 94016" +232274,Lightning Charging Cable,1,14.95,07/15/19 14:10,"504 South St, Portland, OR 97035" +232275,AAA Batteries (4-pack),3,2.99,07/10/19 17:46,"85 Pine St, San Francisco, CA 94016" +232276,iPhone,1,700,07/30/19 09:39,"162 4th St, Los Angeles, CA 90001" +232277,Bose SoundSport Headphones,1,99.99,07/24/19 12:21,"952 Lake St, San Francisco, CA 94016" +232278,Bose SoundSport Headphones,1,99.99,07/25/19 08:56,"1 Washington St, Dallas, TX 75001" +232279,AAA Batteries (4-pack),1,2.99,07/29/19 10:21,"882 Lake St, San Francisco, CA 94016" +232280,Flatscreen TV,1,300,07/04/19 08:41,"273 9th St, Los Angeles, CA 90001" +232281,Wired Headphones,1,11.99,07/22/19 18:58,"403 Forest St, San Francisco, CA 94016" +232281,AAA Batteries (4-pack),1,2.99,07/22/19 18:58,"403 Forest St, San Francisco, CA 94016" +232282,Wired Headphones,1,11.99,07/18/19 17:20,"336 Washington St, San Francisco, CA 94016" +232283,Apple Airpods Headphones,1,150,07/20/19 17:39,"839 Park St, San Francisco, CA 94016" +232284,AA Batteries (4-pack),1,3.84,07/29/19 16:11,"513 Sunset St, Seattle, WA 98101" +232285,ThinkPad Laptop,1,999.99,07/21/19 20:43,"368 Highland St, San Francisco, CA 94016" +232286,iPhone,1,700,07/30/19 13:46,"911 Wilson St, San Francisco, CA 94016" +232287,USB-C Charging Cable,1,11.95,07/11/19 16:40,"145 Willow St, New York City, NY 10001" +232288,Wired Headphones,1,11.99,07/23/19 00:23,"329 Center St, Portland, OR 97035" +232289,Apple Airpods Headphones,1,150,07/30/19 11:40,"442 West St, Los Angeles, CA 90001" +232290,AA Batteries (4-pack),1,3.84,07/21/19 16:07,"94 Pine St, New York City, NY 10001" +232291,iPhone,1,700,07/09/19 16:42,"763 9th St, Seattle, WA 98101" +232292,Lightning Charging Cable,1,14.95,07/29/19 22:32,"103 Hickory St, San Francisco, CA 94016" +232293,AA Batteries (4-pack),2,3.84,07/14/19 12:04,"888 Park St, New York City, NY 10001" +232294,Lightning Charging Cable,1,14.95,07/08/19 18:39,"715 8th St, Atlanta, GA 30301" +232295,AAA Batteries (4-pack),2,2.99,07/06/19 14:35,"654 Cedar St, Los Angeles, CA 90001" +232296,27in 4K Gaming Monitor,1,389.99,07/06/19 13:43,"427 5th St, New York City, NY 10001" +232297,Lightning Charging Cable,1,14.95,07/08/19 17:22,"646 Cherry St, Los Angeles, CA 90001" +232298,AA Batteries (4-pack),1,3.84,07/12/19 17:02,"56 6th St, Atlanta, GA 30301" +232299,Apple Airpods Headphones,1,150,07/12/19 11:30,"446 Main St, Dallas, TX 75001" +232300,Apple Airpods Headphones,1,150,07/12/19 20:24,"461 Willow St, Dallas, TX 75001" +232301,Apple Airpods Headphones,1,150,07/03/19 17:18,"757 1st St, Seattle, WA 98101" +232302,Bose SoundSport Headphones,1,99.99,07/01/19 23:16,"481 Maple St, Boston, MA 02215" +232303,Apple Airpods Headphones,1,150,07/16/19 18:59,"778 South St, Boston, MA 02215" +232304,Bose SoundSport Headphones,2,99.99,07/20/19 13:28,"444 2nd St, Austin, TX 73301" +232305,Lightning Charging Cable,1,14.95,07/14/19 14:20,"851 Wilson St, Austin, TX 73301" +232306,Google Phone,1,600,07/26/19 14:44,"183 Jackson St, San Francisco, CA 94016" +232306,Bose SoundSport Headphones,1,99.99,07/26/19 14:44,"183 Jackson St, San Francisco, CA 94016" +232307,27in FHD Monitor,1,149.99,07/10/19 05:58,"758 4th St, New York City, NY 10001" +232308,27in FHD Monitor,1,149.99,07/29/19 21:43,"760 Walnut St, San Francisco, CA 94016" +232309,AAA Batteries (4-pack),1,2.99,07/06/19 21:37,"868 1st St, New York City, NY 10001" +232310,USB-C Charging Cable,1,11.95,07/17/19 23:09,"999 2nd St, San Francisco, CA 94016" +232311,Wired Headphones,1,11.99,07/04/19 10:54,"698 North St, San Francisco, CA 94016" +232312,Apple Airpods Headphones,1,150,07/23/19 21:07,"656 Washington St, Dallas, TX 75001" +232313,27in FHD Monitor,1,149.99,07/11/19 08:07,"119 Dogwood St, Atlanta, GA 30301" +232314,AAA Batteries (4-pack),2,2.99,07/07/19 02:12,"847 Washington St, Dallas, TX 75001" +232315,USB-C Charging Cable,1,11.95,07/23/19 10:49,"419 Lincoln St, New York City, NY 10001" +232316,Apple Airpods Headphones,1,150,07/05/19 10:19,"787 Lakeview St, Atlanta, GA 30301" +232317,Wired Headphones,2,11.99,07/21/19 18:36,"178 Pine St, Atlanta, GA 30301" +232318,Wired Headphones,1,11.99,07/05/19 21:11,"806 Forest St, New York City, NY 10001" +232319,AA Batteries (4-pack),1,3.84,07/31/19 21:55,"962 Elm St, Los Angeles, CA 90001" +232320,Lightning Charging Cable,1,14.95,07/17/19 11:59,"649 11th St, Seattle, WA 98101" +232321,iPhone,1,700,07/30/19 19:45,"917 Hickory St, Dallas, TX 75001" +232322,Vareebadd Phone,1,400,07/21/19 12:03,"835 8th St, New York City, NY 10001" +232323,AAA Batteries (4-pack),1,2.99,07/25/19 12:21,"524 7th St, New York City, NY 10001" +232324,Bose SoundSport Headphones,1,99.99,07/30/19 19:47,"523 Lakeview St, New York City, NY 10001" +232325,USB-C Charging Cable,1,11.95,07/29/19 20:47,"386 Johnson St, San Francisco, CA 94016" +232326,AAA Batteries (4-pack),1,2.99,07/01/19 12:43,"335 Sunset St, San Francisco, CA 94016" +232327,AA Batteries (4-pack),1,3.84,07/23/19 10:44,"779 6th St, New York City, NY 10001" +232328,Lightning Charging Cable,1,14.95,07/07/19 14:28,"303 4th St, Austin, TX 73301" +232329,AA Batteries (4-pack),1,3.84,07/30/19 11:44,"285 14th St, Austin, TX 73301" +232330,Bose SoundSport Headphones,1,99.99,07/19/19 10:32,"859 7th St, San Francisco, CA 94016" +232331,AAA Batteries (4-pack),1,2.99,07/16/19 13:00,"589 Spruce St, Austin, TX 73301" +232332,Lightning Charging Cable,1,14.95,07/13/19 17:39,"535 Elm St, San Francisco, CA 94016" +232333,Bose SoundSport Headphones,1,99.99,07/25/19 00:10,"158 Hickory St, Portland, OR 97035" +232334,Lightning Charging Cable,2,14.95,07/07/19 13:31,"749 Cherry St, Dallas, TX 75001" +232335,Bose SoundSport Headphones,1,99.99,07/26/19 15:07,"354 Lakeview St, Atlanta, GA 30301" +232336,AA Batteries (4-pack),1,3.84,07/10/19 14:12,"772 8th St, Atlanta, GA 30301" +232337,AAA Batteries (4-pack),2,2.99,07/24/19 23:29,"88 South St, Dallas, TX 75001" +232338,Wired Headphones,1,11.99,07/24/19 00:44,"696 Center St, San Francisco, CA 94016" +232339,Lightning Charging Cable,1,14.95,07/06/19 13:23,"673 Jefferson St, Portland, OR 97035" +232340,27in 4K Gaming Monitor,1,389.99,07/08/19 13:07,"322 Maple St, Atlanta, GA 30301" +232341,USB-C Charging Cable,1,11.95,07/18/19 20:26,"814 Lake St, New York City, NY 10001" +232342,27in 4K Gaming Monitor,1,389.99,07/02/19 13:17,"201 13th St, New York City, NY 10001" +232343,Apple Airpods Headphones,1,150,07/07/19 20:19,"406 Elm St, Boston, MA 02215" +232344,Wired Headphones,1,11.99,07/03/19 23:18,"878 Maple St, San Francisco, CA 94016" +232345,USB-C Charging Cable,1,11.95,07/12/19 19:05,"99 Johnson St, Boston, MA 02215" +232346,Lightning Charging Cable,1,14.95,07/22/19 19:23,"679 Hill St, Los Angeles, CA 90001" +232347,AAA Batteries (4-pack),1,2.99,07/27/19 14:25,"292 Walnut St, Portland, OR 97035" +232348,27in 4K Gaming Monitor,1,389.99,07/20/19 21:13,"314 Forest St, Dallas, TX 75001" +232349,AA Batteries (4-pack),1,3.84,07/08/19 21:32,"325 Cherry St, San Francisco, CA 94016" +232350,Flatscreen TV,1,300,07/09/19 22:36,"303 6th St, Portland, OR 97035" +232351,USB-C Charging Cable,1,11.95,07/22/19 19:23,"960 Walnut St, New York City, NY 10001" +232352,20in Monitor,1,109.99,07/15/19 18:00,"283 Park St, Los Angeles, CA 90001" +232353,34in Ultrawide Monitor,1,379.99,07/25/19 17:32,"757 Cherry St, Seattle, WA 98101" +232354,AA Batteries (4-pack),1,3.84,07/21/19 19:45,"805 Chestnut St, Atlanta, GA 30301" +232355,Apple Airpods Headphones,1,150,07/08/19 16:25,"892 9th St, San Francisco, CA 94016" +232356,AA Batteries (4-pack),1,3.84,07/18/19 20:28,"842 Dogwood St, New York City, NY 10001" +232357,Vareebadd Phone,1,400,07/19/19 21:28,"776 North St, Atlanta, GA 30301" +232358,AAA Batteries (4-pack),1,2.99,07/30/19 19:50,"598 2nd St, New York City, NY 10001" +232359,AAA Batteries (4-pack),4,2.99,07/02/19 00:55,"597 13th St, Los Angeles, CA 90001" +232360,Flatscreen TV,1,300,07/28/19 23:05,"382 10th St, Portland, OR 97035" +232361,iPhone,1,700,07/09/19 21:14,"478 Johnson St, San Francisco, CA 94016" +232362,Lightning Charging Cable,1,14.95,07/13/19 11:52,"955 8th St, Austin, TX 73301" +232363,USB-C Charging Cable,1,11.95,07/29/19 03:27,"854 Highland St, Seattle, WA 98101" +232364,Apple Airpods Headphones,1,150,07/28/19 20:06,"657 Cherry St, San Francisco, CA 94016" +232365,27in 4K Gaming Monitor,1,389.99,07/12/19 20:32,"529 Adams St, Seattle, WA 98101" +232366,Apple Airpods Headphones,1,150,07/07/19 21:44,"627 9th St, San Francisco, CA 94016" +232367,Wired Headphones,1,11.99,07/27/19 17:44,"665 Adams St, San Francisco, CA 94016" +232368,Lightning Charging Cable,1,14.95,07/22/19 13:05,"454 2nd St, Portland, OR 97035" +232369,Wired Headphones,2,11.99,07/07/19 01:24,"737 South St, New York City, NY 10001" +232370,Lightning Charging Cable,1,14.95,07/06/19 20:39,"438 12th St, New York City, NY 10001" +232371,Apple Airpods Headphones,1,150,07/11/19 19:42,"777 Wilson St, San Francisco, CA 94016" +232372,27in FHD Monitor,1,149.99,07/29/19 19:08,"774 Main St, San Francisco, CA 94016" +232373,iPhone,1,700,07/05/19 17:38,"692 Hickory St, Atlanta, GA 30301" +232374,Wired Headphones,1,11.99,07/16/19 15:22,"554 8th St, Boston, MA 02215" +232374,ThinkPad Laptop,1,999.99,07/16/19 15:22,"554 8th St, Boston, MA 02215" +232375,27in FHD Monitor,1,149.99,07/27/19 12:34,"749 North St, New York City, NY 10001" +232376,34in Ultrawide Monitor,1,379.99,07/23/19 15:07,"919 Ridge St, San Francisco, CA 94016" +232377,Lightning Charging Cable,1,14.95,07/05/19 17:39,"110 Willow St, Los Angeles, CA 90001" +232378,Apple Airpods Headphones,1,150,07/20/19 00:41,"114 Center St, Los Angeles, CA 90001" +232379,Bose SoundSport Headphones,1,99.99,07/29/19 08:22,"487 Spruce St, Atlanta, GA 30301" +,,,,, +232380,AAA Batteries (4-pack),1,2.99,07/12/19 21:25,"502 6th St, New York City, NY 10001" +232381,Lightning Charging Cable,1,14.95,07/16/19 20:23,"578 Center St, Dallas, TX 75001" +232382,Apple Airpods Headphones,1,150,07/13/19 17:05,"625 Church St, Seattle, WA 98101" +232383,USB-C Charging Cable,1,11.95,07/04/19 13:17,"46 Church St, Boston, MA 02215" +232384,27in 4K Gaming Monitor,1,389.99,07/30/19 14:53,"33 Forest St, New York City, NY 10001" +232385,27in FHD Monitor,1,149.99,07/24/19 20:53,"376 Cherry St, San Francisco, CA 94016" +232386,Apple Airpods Headphones,1,150,07/30/19 10:05,"203 4th St, Seattle, WA 98101" +232387,Wired Headphones,1,11.99,07/18/19 16:39,"505 9th St, San Francisco, CA 94016" +232388,AA Batteries (4-pack),4,3.84,07/18/19 09:10,"797 Meadow St, Los Angeles, CA 90001" +232389,34in Ultrawide Monitor,1,379.99,07/12/19 02:06,"753 Willow St, San Francisco, CA 94016" +232390,Macbook Pro Laptop,1,1700,07/05/19 13:45,"401 Lake St, New York City, NY 10001" +232391,Bose SoundSport Headphones,1,99.99,07/08/19 11:07,"468 13th St, San Francisco, CA 94016" +232392,27in FHD Monitor,1,149.99,07/23/19 22:04,"919 Forest St, Portland, OR 97035" +232393,Wired Headphones,1,11.99,07/10/19 13:19,"324 Johnson St, Seattle, WA 98101" +232394,USB-C Charging Cable,2,11.95,07/16/19 01:21,"709 Park St, San Francisco, CA 94016" +232395,27in FHD Monitor,1,149.99,07/07/19 08:38,"460 Wilson St, Austin, TX 73301" +232396,AAA Batteries (4-pack),3,2.99,07/31/19 12:02,"916 Johnson St, New York City, NY 10001" +232397,27in FHD Monitor,1,149.99,07/04/19 16:43,"406 Cedar St, Dallas, TX 75001" +232398,USB-C Charging Cable,1,11.95,07/23/19 10:33,"668 9th St, Seattle, WA 98101" +232399,AA Batteries (4-pack),1,3.84,07/26/19 12:00,"823 Sunset St, New York City, NY 10001" +232400,iPhone,1,700,07/02/19 22:10,"478 8th St, Seattle, WA 98101" +232400,Wired Headphones,1,11.99,07/02/19 22:10,"478 8th St, Seattle, WA 98101" +232401,USB-C Charging Cable,2,11.95,07/17/19 11:55,"862 10th St, San Francisco, CA 94016" +232402,27in FHD Monitor,1,149.99,07/21/19 08:53,"885 Lincoln St, Boston, MA 02215" +232403,USB-C Charging Cable,1,11.95,07/25/19 20:15,"715 1st St, New York City, NY 10001" +232404,USB-C Charging Cable,1,11.95,07/09/19 06:59,"852 Lincoln St, Dallas, TX 75001" +232405,Macbook Pro Laptop,1,1700,07/31/19 14:34,"29 Sunset St, Dallas, TX 75001" +232406,27in FHD Monitor,1,149.99,07/05/19 12:42,"979 Park St, San Francisco, CA 94016" +232407,USB-C Charging Cable,1,11.95,07/31/19 16:20,"152 Cherry St, Los Angeles, CA 90001" +232408,Flatscreen TV,1,300,07/09/19 02:46,"557 Chestnut St, Seattle, WA 98101" +232409,Lightning Charging Cable,1,14.95,07/16/19 06:41,"907 Johnson St, San Francisco, CA 94016" +232410,AAA Batteries (4-pack),1,2.99,07/29/19 16:23,"532 Maple St, San Francisco, CA 94016" +232411,Bose SoundSport Headphones,1,99.99,07/20/19 13:05,"433 Hill St, Atlanta, GA 30301" +232412,20in Monitor,1,109.99,07/08/19 06:14,"169 South St, San Francisco, CA 94016" +232413,27in 4K Gaming Monitor,1,389.99,07/29/19 17:03,"981 2nd St, San Francisco, CA 94016" +232414,USB-C Charging Cable,1,11.95,07/12/19 21:30,"744 Hickory St, Boston, MA 02215" +232415,USB-C Charging Cable,1,11.95,07/16/19 23:57,"742 Johnson St, Atlanta, GA 30301" +232416,Lightning Charging Cable,1,14.95,07/06/19 19:49,"779 Wilson St, New York City, NY 10001" +232417,AAA Batteries (4-pack),2,2.99,07/26/19 01:28,"45 Lincoln St, Boston, MA 02215" +232418,USB-C Charging Cable,1,11.95,07/23/19 11:06,"290 Lakeview St, Los Angeles, CA 90001" +232419,USB-C Charging Cable,1,11.95,07/27/19 13:14,"162 Madison St, Austin, TX 73301" +232420,USB-C Charging Cable,1,11.95,07/19/19 12:48,"700 Lakeview St, San Francisco, CA 94016" +232421,Apple Airpods Headphones,1,150,07/10/19 15:59,"495 Ridge St, San Francisco, CA 94016" +232422,Lightning Charging Cable,1,14.95,07/09/19 18:01,"819 8th St, San Francisco, CA 94016" +232423,AA Batteries (4-pack),1,3.84,07/07/19 15:45,"279 14th St, Boston, MA 02215" +232424,Lightning Charging Cable,1,14.95,07/06/19 14:21,"365 14th St, San Francisco, CA 94016" +232425,AAA Batteries (4-pack),1,2.99,07/20/19 07:55,"478 12th St, San Francisco, CA 94016" +,,,,, +232426,Macbook Pro Laptop,1,1700,07/17/19 14:00,"47 Highland St, Austin, TX 73301" +232427,ThinkPad Laptop,1,999.99,07/21/19 22:13,"721 Jackson St, Portland, OR 97035" +232428,Macbook Pro Laptop,1,1700,07/18/19 10:36,"236 10th St, Austin, TX 73301" +232429,Apple Airpods Headphones,1,150,07/24/19 15:49,"415 Lincoln St, New York City, NY 10001" +232430,USB-C Charging Cable,1,11.95,07/10/19 16:04,"294 Forest St, Seattle, WA 98101" +232431,USB-C Charging Cable,1,11.95,07/08/19 22:06,"877 2nd St, Los Angeles, CA 90001" +232432,Apple Airpods Headphones,1,150,07/21/19 20:11,"596 Forest St, Atlanta, GA 30301" +232433,Wired Headphones,1,11.99,07/12/19 15:36,"149 13th St, Boston, MA 02215" +232434,AA Batteries (4-pack),1,3.84,07/21/19 23:06,"325 Church St, Boston, MA 02215" +232435,Apple Airpods Headphones,1,150,07/29/19 11:15,"606 5th St, Seattle, WA 98101" +232436,AA Batteries (4-pack),1,3.84,07/27/19 18:20,"148 Willow St, Dallas, TX 75001" +232437,Lightning Charging Cable,1,14.95,07/12/19 20:26,"327 Sunset St, Portland, OR 97035" +232438,USB-C Charging Cable,1,11.95,07/05/19 00:45,"896 Church St, New York City, NY 10001" +232439,20in Monitor,1,109.99,07/26/19 12:50,"801 13th St, San Francisco, CA 94016" +232440,Flatscreen TV,1,300,07/23/19 20:54,"2 Ridge St, Seattle, WA 98101" +232441,USB-C Charging Cable,1,11.95,07/10/19 22:08,"426 Wilson St, New York City, NY 10001" +232442,Lightning Charging Cable,1,14.95,07/04/19 15:47,"349 Hill St, Atlanta, GA 30301" +232443,34in Ultrawide Monitor,1,379.99,07/05/19 19:43,"541 Sunset St, Austin, TX 73301" +232444,Wired Headphones,1,11.99,07/08/19 10:14,"590 4th St, Atlanta, GA 30301" +232445,Wired Headphones,1,11.99,07/20/19 17:25,"3 Wilson St, Austin, TX 73301" +232446,ThinkPad Laptop,1,999.99,07/13/19 13:42,"557 Forest St, San Francisco, CA 94016" +232447,Wired Headphones,1,11.99,07/29/19 21:25,"445 Lake St, Austin, TX 73301" +232448,AAA Batteries (4-pack),1,2.99,07/31/19 11:39,"138 Madison St, San Francisco, CA 94016" +232449,20in Monitor,1,109.99,07/05/19 19:22,"242 Lakeview St, San Francisco, CA 94016" +232450,27in FHD Monitor,1,149.99,07/06/19 17:51,"262 Walnut St, Boston, MA 02215" +232451,Apple Airpods Headphones,1,150,07/13/19 17:32,"993 Jefferson St, Los Angeles, CA 90001" +232452,Lightning Charging Cable,1,14.95,07/02/19 19:26,"351 Lincoln St, Portland, OR 97035" +232453,Lightning Charging Cable,1,14.95,07/05/19 14:42,"922 Dogwood St, San Francisco, CA 94016" +232454,AA Batteries (4-pack),2,3.84,07/30/19 15:12,"9 Elm St, Seattle, WA 98101" +232455,AA Batteries (4-pack),1,3.84,07/28/19 16:09,"167 6th St, New York City, NY 10001" +232455,iPhone,1,700,07/28/19 16:09,"167 6th St, New York City, NY 10001" +232456,AAA Batteries (4-pack),1,2.99,07/24/19 17:04,"498 Cedar St, Atlanta, GA 30301" +232456,Wired Headphones,1,11.99,07/24/19 17:04,"498 Cedar St, Atlanta, GA 30301" +232457,Lightning Charging Cable,1,14.95,07/19/19 08:50,"941 Washington St, Los Angeles, CA 90001" +232458,AA Batteries (4-pack),1,3.84,07/01/19 13:05,"369 Jefferson St, Dallas, TX 75001" +232459,AA Batteries (4-pack),1,3.84,07/15/19 18:19,"360 Elm St, Los Angeles, CA 90001" +232459,USB-C Charging Cable,1,11.95,07/15/19 18:19,"360 Elm St, Los Angeles, CA 90001" +232460,Wired Headphones,1,11.99,07/12/19 07:00,"418 Elm St, Los Angeles, CA 90001" +232461,Apple Airpods Headphones,1,150,07/11/19 14:37,"862 Hill St, Dallas, TX 75001" +232462,Google Phone,1,600,07/21/19 12:41,"636 Hill St, Atlanta, GA 30301" +232463,AAA Batteries (4-pack),2,2.99,07/13/19 10:52,"327 8th St, San Francisco, CA 94016" +232464,27in FHD Monitor,1,149.99,07/05/19 21:37,"96 Elm St, San Francisco, CA 94016" +232465,AA Batteries (4-pack),2,3.84,07/06/19 14:18,"375 Lakeview St, Los Angeles, CA 90001" +232466,USB-C Charging Cable,1,11.95,07/13/19 18:29,"942 11th St, Austin, TX 73301" +232467,Apple Airpods Headphones,1,150,07/22/19 11:50,"414 Lincoln St, Boston, MA 02215" +232468,AA Batteries (4-pack),2,3.84,07/19/19 20:58,"924 Walnut St, Seattle, WA 98101" +232469,34in Ultrawide Monitor,1,379.99,07/06/19 19:40,"231 Chestnut St, Austin, TX 73301" +232470,Flatscreen TV,1,300,07/08/19 19:56,"767 Elm St, New York City, NY 10001" +232471,AA Batteries (4-pack),1,3.84,07/29/19 17:50,"567 Chestnut St, Portland, OR 97035" +232472,Flatscreen TV,1,300,07/19/19 23:52,"185 Jefferson St, Seattle, WA 98101" +232473,AA Batteries (4-pack),1,3.84,07/29/19 17:13,"727 Jefferson St, Los Angeles, CA 90001" +232474,Apple Airpods Headphones,1,150,07/09/19 07:31,"294 Johnson St, New York City, NY 10001" +232475,AA Batteries (4-pack),1,3.84,07/22/19 19:53,"232 Chestnut St, Boston, MA 02215" +232476,27in 4K Gaming Monitor,1,389.99,07/30/19 21:12,"573 7th St, San Francisco, CA 94016" +232477,Bose SoundSport Headphones,1,99.99,07/27/19 00:39,"930 Wilson St, San Francisco, CA 94016" +232478,Apple Airpods Headphones,1,150,07/05/19 12:23,"2 River St, San Francisco, CA 94016" +232478,Google Phone,1,600,07/05/19 12:23,"2 River St, San Francisco, CA 94016" +232479,Lightning Charging Cable,1,14.95,07/12/19 15:20,"218 Jefferson St, New York City, NY 10001" +232480,Bose SoundSport Headphones,1,99.99,07/07/19 23:19,"825 9th St, Los Angeles, CA 90001" +232481,USB-C Charging Cable,1,11.95,07/05/19 12:42,"162 12th St, San Francisco, CA 94016" +232482,Lightning Charging Cable,1,14.95,07/09/19 21:49,"996 Madison St, Los Angeles, CA 90001" +232483,Bose SoundSport Headphones,1,99.99,07/16/19 20:11,"10 Dogwood St, New York City, NY 10001" +232484,USB-C Charging Cable,3,11.95,07/17/19 11:45,"659 Chestnut St, San Francisco, CA 94016" +232485,AA Batteries (4-pack),1,3.84,07/27/19 11:16,"399 Johnson St, Boston, MA 02215" +232486,27in FHD Monitor,1,149.99,07/24/19 18:45,"431 Willow St, Boston, MA 02215" +232487,AAA Batteries (4-pack),1,2.99,07/23/19 00:34,"906 12th St, Dallas, TX 75001" +232488,Flatscreen TV,1,300,07/14/19 21:40,"193 Highland St, Austin, TX 73301" +232489,AAA Batteries (4-pack),1,2.99,07/17/19 19:42,"689 North St, New York City, NY 10001" +232490,Flatscreen TV,1,300,07/04/19 17:01,"800 Chestnut St, San Francisco, CA 94016" +232491,AAA Batteries (4-pack),2,2.99,07/22/19 00:53,"924 10th St, Seattle, WA 98101" +232492,27in 4K Gaming Monitor,1,389.99,07/05/19 15:59,"155 Hickory St, Dallas, TX 75001" +232493,27in FHD Monitor,1,149.99,07/13/19 13:59,"957 12th St, Boston, MA 02215" +232494,20in Monitor,1,109.99,07/27/19 23:19,"795 Cherry St, Austin, TX 73301" +232495,Wired Headphones,1,11.99,07/24/19 11:11,"737 5th St, Seattle, WA 98101" +232496,Lightning Charging Cable,1,14.95,07/12/19 12:54,"372 Park St, Portland, ME 04101" +232497,27in 4K Gaming Monitor,1,389.99,07/29/19 12:31,"373 Jefferson St, San Francisco, CA 94016" +232498,Bose SoundSport Headphones,1,99.99,07/23/19 13:03,"149 Main St, Atlanta, GA 30301" +232499,AA Batteries (4-pack),1,3.84,07/09/19 14:16,"66 Main St, Los Angeles, CA 90001" +232500,Lightning Charging Cable,1,14.95,07/21/19 10:00,"967 Center St, Seattle, WA 98101" +232501,AA Batteries (4-pack),3,3.84,07/21/19 19:16,"216 Park St, Dallas, TX 75001" +232502,ThinkPad Laptop,1,999.99,07/15/19 14:31,"520 North St, San Francisco, CA 94016" +232503,20in Monitor,1,109.99,07/24/19 21:04,"66 9th St, Dallas, TX 75001" +232504,Apple Airpods Headphones,1,150,07/02/19 12:26,"650 4th St, New York City, NY 10001" +232505,Wired Headphones,1,11.99,07/27/19 22:13,"129 13th St, San Francisco, CA 94016" +232506,20in Monitor,1,109.99,07/24/19 17:36,"571 Cherry St, Seattle, WA 98101" +232507,Wired Headphones,1,11.99,07/15/19 13:56,"202 Spruce St, New York City, NY 10001" +232508,Lightning Charging Cable,1,14.95,07/06/19 11:32,"264 Elm St, San Francisco, CA 94016" +232509,USB-C Charging Cable,1,11.95,07/13/19 07:48,"721 Highland St, Dallas, TX 75001" +232510,Bose SoundSport Headphones,1,99.99,07/24/19 00:06,"816 5th St, San Francisco, CA 94016" +232511,Macbook Pro Laptop,1,1700,07/25/19 19:04,"20 Washington St, New York City, NY 10001" +232512,AAA Batteries (4-pack),1,2.99,07/19/19 17:05,"463 Spruce St, San Francisco, CA 94016" +232513,Lightning Charging Cable,1,14.95,07/11/19 14:54,"31 River St, New York City, NY 10001" +232514,AAA Batteries (4-pack),1,2.99,07/09/19 11:28,"342 Maple St, Boston, MA 02215" +232515,AAA Batteries (4-pack),2,2.99,07/20/19 06:49,"732 Park St, Los Angeles, CA 90001" +232516,Wired Headphones,1,11.99,07/31/19 22:05,"887 North St, Austin, TX 73301" +232517,Wired Headphones,1,11.99,07/28/19 15:41,"159 Ridge St, San Francisco, CA 94016" +232518,ThinkPad Laptop,1,999.99,07/14/19 12:56,"314 North St, Seattle, WA 98101" +232519,Wired Headphones,1,11.99,07/20/19 10:26,"365 Washington St, Boston, MA 02215" +232520,AAA Batteries (4-pack),1,2.99,07/30/19 18:17,"153 11th St, Atlanta, GA 30301" +232521,Bose SoundSport Headphones,1,99.99,07/19/19 19:18,"991 Madison St, Boston, MA 02215" +232522,Apple Airpods Headphones,1,150,07/27/19 21:35,"216 Ridge St, Atlanta, GA 30301" +232523,Bose SoundSport Headphones,1,99.99,07/15/19 17:28,"396 Adams St, Austin, TX 73301" +232524,AA Batteries (4-pack),2,3.84,07/04/19 19:08,"200 Center St, Los Angeles, CA 90001" +232525,ThinkPad Laptop,1,999.99,07/21/19 07:37,"691 5th St, San Francisco, CA 94016" +232526,iPhone,1,700,07/05/19 18:49,"239 14th St, Boston, MA 02215" +232527,Bose SoundSport Headphones,1,99.99,07/18/19 21:06,"394 1st St, Boston, MA 02215" +232528,Apple Airpods Headphones,1,150,07/21/19 21:52,"695 Lincoln St, Seattle, WA 98101" +232529,Google Phone,1,600,07/24/19 23:02,"386 6th St, Dallas, TX 75001" +232530,27in FHD Monitor,1,149.99,07/05/19 12:36,"67 River St, New York City, NY 10001" +232531,27in FHD Monitor,1,149.99,07/04/19 19:03,"508 9th St, Portland, OR 97035" +232532,iPhone,1,700,07/14/19 21:50,"997 Hill St, Austin, TX 73301" +232533,AA Batteries (4-pack),1,3.84,07/12/19 09:02,"647 Church St, San Francisco, CA 94016" +232534,iPhone,1,700,07/16/19 09:24,"127 Dogwood St, Boston, MA 02215" +232535,AA Batteries (4-pack),1,3.84,07/06/19 20:53,"812 Highland St, New York City, NY 10001" +232536,27in FHD Monitor,1,149.99,07/01/19 08:57,"723 Chestnut St, Dallas, TX 75001" +232537,Lightning Charging Cable,1,14.95,07/21/19 07:50,"656 Johnson St, Seattle, WA 98101" +232538,Apple Airpods Headphones,1,150,07/31/19 15:38,"465 Elm St, Boston, MA 02215" +232539,AA Batteries (4-pack),2,3.84,07/01/19 11:29,"830 2nd St, Portland, OR 97035" +232540,Macbook Pro Laptop,1,1700,07/22/19 16:57,"134 West St, New York City, NY 10001" +232541,Bose SoundSport Headphones,1,99.99,07/20/19 19:24,"857 Spruce St, New York City, NY 10001" +232542,27in 4K Gaming Monitor,1,389.99,07/26/19 06:46,"717 14th St, Portland, OR 97035" +232543,iPhone,1,700,07/25/19 07:48,"714 9th St, Atlanta, GA 30301" +232544,AAA Batteries (4-pack),1,2.99,07/11/19 13:56,"820 North St, Atlanta, GA 30301" +232545,AAA Batteries (4-pack),1,2.99,07/21/19 00:24,"962 13th St, San Francisco, CA 94016" +232546,AAA Batteries (4-pack),4,2.99,07/06/19 19:55,"769 Ridge St, San Francisco, CA 94016" +232547,USB-C Charging Cable,1,11.95,07/21/19 18:36,"353 Elm St, San Francisco, CA 94016" +232548,AA Batteries (4-pack),2,3.84,07/30/19 11:04,"911 1st St, San Francisco, CA 94016" +232549,USB-C Charging Cable,1,11.95,07/28/19 15:44,"247 10th St, Dallas, TX 75001" +232550,AA Batteries (4-pack),3,3.84,07/14/19 19:13,"889 Church St, San Francisco, CA 94016" +232551,AAA Batteries (4-pack),2,2.99,07/29/19 10:06,"475 Walnut St, San Francisco, CA 94016" +232552,USB-C Charging Cable,1,11.95,07/17/19 17:38,"405 6th St, Boston, MA 02215" +232553,20in Monitor,1,109.99,07/23/19 18:20,"32 Madison St, Atlanta, GA 30301" +232554,AAA Batteries (4-pack),1,2.99,07/10/19 18:49,"668 Park St, Los Angeles, CA 90001" +232555,Apple Airpods Headphones,1,150,07/25/19 00:06,"55 6th St, Portland, OR 97035" +232556,Apple Airpods Headphones,1,150,07/04/19 01:01,"969 Madison St, San Francisco, CA 94016" +232557,Google Phone,1,600,07/06/19 14:01,"586 Church St, Los Angeles, CA 90001" +232558,USB-C Charging Cable,1,11.95,07/03/19 10:50,"104 10th St, San Francisco, CA 94016" +232558,AAA Batteries (4-pack),1,2.99,07/03/19 10:50,"104 10th St, San Francisco, CA 94016" +232559,Apple Airpods Headphones,1,150,07/04/19 11:23,"151 Madison St, New York City, NY 10001" +232560,Vareebadd Phone,1,400,07/18/19 14:49,"464 Spruce St, Boston, MA 02215" +232561,Google Phone,1,600,07/04/19 18:57,"100 6th St, Los Angeles, CA 90001" +232562,AAA Batteries (4-pack),7,2.99,07/06/19 16:53,"973 1st St, Austin, TX 73301" +232563,AA Batteries (4-pack),1,3.84,07/10/19 12:18,"447 14th St, San Francisco, CA 94016" +232564,AAA Batteries (4-pack),2,2.99,07/09/19 17:52,"749 2nd St, New York City, NY 10001" +232565,AAA Batteries (4-pack),2,2.99,07/08/19 12:36,"636 Lincoln St, San Francisco, CA 94016" +232566,iPhone,1,700,07/28/19 14:54,"324 Jackson St, Portland, OR 97035" +232567,Lightning Charging Cable,1,14.95,07/12/19 17:54,"2 Meadow St, Austin, TX 73301" +232568,AAA Batteries (4-pack),2,2.99,07/20/19 22:47,"522 Jackson St, Los Angeles, CA 90001" +232569,AA Batteries (4-pack),1,3.84,07/10/19 21:51,"514 West St, Portland, OR 97035" +232570,Lightning Charging Cable,1,14.95,07/20/19 21:24,"34 Walnut St, Seattle, WA 98101" +232571,Google Phone,1,600,07/11/19 07:45,"936 Hickory St, Atlanta, GA 30301" +232572,Wired Headphones,1,11.99,07/04/19 23:38,"283 Hickory St, Seattle, WA 98101" +232573,USB-C Charging Cable,1,11.95,07/09/19 09:37,"740 Maple St, San Francisco, CA 94016" +232574,iPhone,1,700,07/29/19 20:18,"86 Forest St, Seattle, WA 98101" +232574,Apple Airpods Headphones,1,150,07/29/19 20:18,"86 Forest St, Seattle, WA 98101" +232575,AA Batteries (4-pack),1,3.84,08/01/19 02:29,"955 Willow St, Atlanta, GA 30301" +232576,Vareebadd Phone,1,400,07/03/19 05:46,"725 4th St, New York City, NY 10001" +232577,27in 4K Gaming Monitor,1,389.99,07/31/19 20:47,"309 Lakeview St, Dallas, TX 75001" +232578,Lightning Charging Cable,1,14.95,07/13/19 12:30,"944 8th St, San Francisco, CA 94016" +232579,USB-C Charging Cable,1,11.95,07/03/19 14:25,"332 North St, Boston, MA 02215" +232580,Macbook Pro Laptop,1,1700,07/11/19 11:38,"160 Washington St, Seattle, WA 98101" +232581,AA Batteries (4-pack),1,3.84,07/02/19 22:45,"463 Hill St, Los Angeles, CA 90001" +232582,AA Batteries (4-pack),1,3.84,07/11/19 14:39,"72 Forest St, Seattle, WA 98101" +232583,Wired Headphones,2,11.99,07/21/19 20:59,"188 12th St, Portland, OR 97035" +232584,AAA Batteries (4-pack),2,2.99,07/25/19 14:58,"600 Chestnut St, Dallas, TX 75001" +232585,Wired Headphones,2,11.99,07/18/19 02:44,"580 13th St, Boston, MA 02215" +232586,USB-C Charging Cable,1,11.95,07/03/19 13:24,"989 Johnson St, Austin, TX 73301" +232587,Lightning Charging Cable,1,14.95,07/15/19 09:46,"674 Meadow St, Los Angeles, CA 90001" +232588,Lightning Charging Cable,1,14.95,07/06/19 18:57,"358 River St, New York City, NY 10001" +232589,USB-C Charging Cable,1,11.95,07/17/19 07:41,"943 Pine St, Austin, TX 73301" +232590,AAA Batteries (4-pack),3,2.99,07/15/19 11:09,"760 Spruce St, Boston, MA 02215" +232591,Apple Airpods Headphones,1,150,07/28/19 20:54,"37 4th St, Dallas, TX 75001" +232592,Wired Headphones,2,11.99,07/21/19 05:41,"900 Hill St, Seattle, WA 98101" +232593,Lightning Charging Cable,1,14.95,07/15/19 15:08,"741 13th St, Boston, MA 02215" +232594,Wired Headphones,1,11.99,07/10/19 10:48,"381 Highland St, San Francisco, CA 94016" +232595,Bose SoundSport Headphones,1,99.99,07/21/19 01:12,"379 Hill St, New York City, NY 10001" +232596,USB-C Charging Cable,1,11.95,07/01/19 06:53,"84 Sunset St, San Francisco, CA 94016" +232597,Apple Airpods Headphones,1,150,07/22/19 22:49,"244 Jefferson St, San Francisco, CA 94016" +232598,Macbook Pro Laptop,1,1700,07/30/19 16:45,"70 Walnut St, Los Angeles, CA 90001" +232599,Bose SoundSport Headphones,1,99.99,07/27/19 00:06,"75 Jefferson St, Seattle, WA 98101" +232600,iPhone,1,700,07/07/19 12:29,"291 Hickory St, San Francisco, CA 94016" +232601,Apple Airpods Headphones,1,150,07/30/19 18:02,"662 West St, San Francisco, CA 94016" +232602,Macbook Pro Laptop,1,1700,07/09/19 01:43,"860 Washington St, Seattle, WA 98101" +232603,USB-C Charging Cable,1,11.95,07/31/19 16:01,"794 Cherry St, Atlanta, GA 30301" +232604,Bose SoundSport Headphones,1,99.99,07/30/19 18:17,"533 River St, New York City, NY 10001" +232605,USB-C Charging Cable,1,11.95,07/05/19 16:28,"181 Highland St, Portland, ME 04101" +232606,AAA Batteries (4-pack),1,2.99,07/15/19 18:10,"722 Lakeview St, San Francisco, CA 94016" +232607,Lightning Charging Cable,1,14.95,07/06/19 22:01,"590 Johnson St, New York City, NY 10001" +232608,ThinkPad Laptop,1,999.99,07/13/19 20:13,"36 North St, San Francisco, CA 94016" +232609,AAA Batteries (4-pack),1,2.99,07/11/19 21:21,"59 8th St, New York City, NY 10001" +232610,AAA Batteries (4-pack),1,2.99,07/06/19 17:20,"877 Spruce St, Atlanta, GA 30301" +232611,iPhone,1,700,07/20/19 16:21,"649 12th St, Los Angeles, CA 90001" +232611,Apple Airpods Headphones,1,150,07/20/19 16:21,"649 12th St, Los Angeles, CA 90001" +232612,Lightning Charging Cable,1,14.95,07/15/19 11:37,"305 Sunset St, Austin, TX 73301" +232613,AA Batteries (4-pack),2,3.84,07/29/19 12:20,"94 Pine St, Dallas, TX 75001" +232614,Apple Airpods Headphones,1,150,07/01/19 11:44,"421 Lakeview St, New York City, NY 10001" +232615,Macbook Pro Laptop,1,1700,07/01/19 17:46,"777 Dogwood St, New York City, NY 10001" +232616,AA Batteries (4-pack),1,3.84,07/30/19 15:28,"316 Jackson St, Portland, OR 97035" +232617,Vareebadd Phone,1,400,07/15/19 11:55,"397 Hickory St, San Francisco, CA 94016" +232618,AA Batteries (4-pack),2,3.84,07/14/19 14:55,"952 11th St, Los Angeles, CA 90001" +232619,Wired Headphones,1,11.99,07/03/19 21:46,"699 Church St, Austin, TX 73301" +232620,27in FHD Monitor,1,149.99,07/02/19 22:51,"345 Pine St, Seattle, WA 98101" +232621,Apple Airpods Headphones,1,150,07/11/19 19:47,"730 South St, San Francisco, CA 94016" +232622,USB-C Charging Cable,1,11.95,07/03/19 17:32,"342 Spruce St, Los Angeles, CA 90001" +232623,Wired Headphones,1,11.99,07/22/19 14:31,"405 Maple St, San Francisco, CA 94016" +232624,ThinkPad Laptop,1,999.99,07/12/19 12:19,"927 2nd St, Atlanta, GA 30301" +232625,USB-C Charging Cable,1,11.95,07/03/19 15:17,"770 13th St, Boston, MA 02215" +232626,Google Phone,1,600,07/09/19 23:52,"39 Wilson St, San Francisco, CA 94016" +232626,USB-C Charging Cable,1,11.95,07/09/19 23:52,"39 Wilson St, San Francisco, CA 94016" +232627,Vareebadd Phone,1,400,07/25/19 16:56,"478 Pine St, Dallas, TX 75001" +232627,USB-C Charging Cable,1,11.95,07/25/19 16:56,"478 Pine St, Dallas, TX 75001" +232628,iPhone,1,700,07/17/19 12:38,"659 1st St, Dallas, TX 75001" +232629,Apple Airpods Headphones,1,150,07/22/19 16:42,"604 4th St, San Francisco, CA 94016" +232630,AA Batteries (4-pack),1,3.84,07/23/19 17:50,"447 Walnut St, Portland, OR 97035" +232631,Bose SoundSport Headphones,1,99.99,07/03/19 20:00,"170 Ridge St, New York City, NY 10001" +232632,AA Batteries (4-pack),1,3.84,07/20/19 21:39,"81 Jackson St, Atlanta, GA 30301" +232633,Google Phone,1,600,07/31/19 20:24,"5 Meadow St, Los Angeles, CA 90001" +232634,Lightning Charging Cable,1,14.95,07/08/19 13:31,"199 North St, San Francisco, CA 94016" +232635,Flatscreen TV,1,300,07/08/19 15:18,"112 Pine St, San Francisco, CA 94016" +232636,Google Phone,1,600,07/25/19 22:31,"101 8th St, Atlanta, GA 30301" +232636,USB-C Charging Cable,1,11.95,07/25/19 22:31,"101 8th St, Atlanta, GA 30301" +232637,USB-C Charging Cable,1,11.95,07/10/19 13:13,"378 Dogwood St, Boston, MA 02215" +232638,Flatscreen TV,1,300,07/01/19 16:00,"385 Madison St, Austin, TX 73301" +232639,34in Ultrawide Monitor,1,379.99,07/11/19 20:40,"449 Chestnut St, San Francisco, CA 94016" +232640,Bose SoundSport Headphones,1,99.99,07/13/19 10:24,"321 10th St, Los Angeles, CA 90001" +232641,AA Batteries (4-pack),1,3.84,07/10/19 18:06,"376 Hill St, Boston, MA 02215" +232641,Google Phone,1,600,07/10/19 18:06,"376 Hill St, Boston, MA 02215" +232642,20in Monitor,1,109.99,07/05/19 12:57,"730 Ridge St, Los Angeles, CA 90001" +232643,Apple Airpods Headphones,1,150,07/22/19 16:36,"63 Lakeview St, Portland, ME 04101" +232644,Macbook Pro Laptop,1,1700,07/21/19 14:48,"210 Ridge St, Seattle, WA 98101" +232645,ThinkPad Laptop,1,999.99,07/13/19 14:04,"811 10th St, San Francisco, CA 94016" +232646,AAA Batteries (4-pack),1,2.99,07/19/19 17:21,"126 South St, Dallas, TX 75001" +232647,Apple Airpods Headphones,1,150,07/19/19 09:10,"827 Cedar St, Boston, MA 02215" +232648,Lightning Charging Cable,1,14.95,07/10/19 09:49,"344 Willow St, Los Angeles, CA 90001" +232649,AAA Batteries (4-pack),1,2.99,07/27/19 09:39,"367 6th St, Atlanta, GA 30301" +232650,Lightning Charging Cable,1,14.95,07/11/19 21:03,"84 Willow St, Portland, OR 97035" +232651,27in 4K Gaming Monitor,1,389.99,07/31/19 10:50,"214 Johnson St, New York City, NY 10001" +232652,Lightning Charging Cable,1,14.95,07/25/19 11:53,"54 South St, Atlanta, GA 30301" +232653,Lightning Charging Cable,1,14.95,07/22/19 19:23,"22 2nd St, San Francisco, CA 94016" +232654,Bose SoundSport Headphones,1,99.99,07/20/19 22:24,"601 6th St, New York City, NY 10001" +232655,AA Batteries (4-pack),1,3.84,07/09/19 22:05,"481 Lincoln St, Los Angeles, CA 90001" +232656,AAA Batteries (4-pack),1,2.99,07/12/19 09:07,"488 6th St, San Francisco, CA 94016" +232657,Apple Airpods Headphones,1,150,07/05/19 14:48,"180 Spruce St, San Francisco, CA 94016" +232658,AA Batteries (4-pack),1,3.84,07/07/19 19:13,"116 Ridge St, San Francisco, CA 94016" +232659,Wired Headphones,1,11.99,07/19/19 23:11,"831 Maple St, Austin, TX 73301" +232660,Apple Airpods Headphones,1,150,07/06/19 09:38,"768 Center St, Los Angeles, CA 90001" +232661,USB-C Charging Cable,1,11.95,07/12/19 17:36,"114 Park St, Atlanta, GA 30301" +232662,Wired Headphones,1,11.99,07/15/19 14:47,"242 South St, San Francisco, CA 94016" +232663,Bose SoundSport Headphones,1,99.99,07/03/19 19:20,"43 4th St, Seattle, WA 98101" +232664,USB-C Charging Cable,1,11.95,07/29/19 18:26,"431 11th St, Portland, ME 04101" +232665,Wired Headphones,1,11.99,07/07/19 13:09,"415 Sunset St, Boston, MA 02215" +232666,Lightning Charging Cable,1,14.95,07/23/19 22:09,"886 North St, Los Angeles, CA 90001" +232667,USB-C Charging Cable,2,11.95,07/19/19 21:31,"129 Wilson St, San Francisco, CA 94016" +232668,ThinkPad Laptop,1,999.99,07/04/19 23:27,"251 Elm St, Portland, OR 97035" +232669,Apple Airpods Headphones,1,150,07/17/19 20:24,"18 12th St, San Francisco, CA 94016" +232670,AA Batteries (4-pack),1,3.84,07/06/19 21:57,"922 Park St, New York City, NY 10001" +232671,AA Batteries (4-pack),1,3.84,07/19/19 18:16,"527 Jefferson St, San Francisco, CA 94016" +232672,AAA Batteries (4-pack),2,2.99,07/27/19 16:56,"487 13th St, Boston, MA 02215" +232673,AA Batteries (4-pack),1,3.84,07/22/19 22:52,"128 Pine St, Austin, TX 73301" +232674,Lightning Charging Cable,1,14.95,07/09/19 21:42,"442 Madison St, Los Angeles, CA 90001" +232675,Bose SoundSport Headphones,1,99.99,07/28/19 10:36,"814 Madison St, Los Angeles, CA 90001" +232676,Wired Headphones,1,11.99,07/09/19 18:25,"934 Church St, Austin, TX 73301" +232677,27in 4K Gaming Monitor,1,389.99,07/15/19 12:48,"307 Cherry St, Austin, TX 73301" +232678,Lightning Charging Cable,1,14.95,07/06/19 12:02,"767 West St, Portland, OR 97035" +232679,Macbook Pro Laptop,1,1700,07/22/19 11:40,"757 Jefferson St, Los Angeles, CA 90001" +232680,AAA Batteries (4-pack),2,2.99,07/14/19 22:46,"18 Dogwood St, Seattle, WA 98101" +232681,AA Batteries (4-pack),1,3.84,07/19/19 14:14,"20 Willow St, San Francisco, CA 94016" +232682,ThinkPad Laptop,1,999.99,07/28/19 22:38,"702 Highland St, Boston, MA 02215" +232683,Lightning Charging Cable,1,14.95,07/29/19 08:37,"152 Chestnut St, San Francisco, CA 94016" +232684,AA Batteries (4-pack),1,3.84,07/09/19 10:49,"518 South St, Los Angeles, CA 90001" +232685,AAA Batteries (4-pack),1,2.99,07/26/19 16:57,"652 Highland St, Dallas, TX 75001" +232686,USB-C Charging Cable,1,11.95,07/29/19 22:37,"11 Lincoln St, San Francisco, CA 94016" +232687,Wired Headphones,2,11.99,07/05/19 19:29,"923 Church St, New York City, NY 10001" +232688,Google Phone,1,600,07/08/19 17:38,"387 Spruce St, Portland, OR 97035" +232689,Lightning Charging Cable,1,14.95,07/10/19 11:03,"150 Dogwood St, San Francisco, CA 94016" +232690,Wired Headphones,1,11.99,07/13/19 11:20,"797 Sunset St, Los Angeles, CA 90001" +232691,AAA Batteries (4-pack),1,2.99,07/18/19 05:50,"367 Meadow St, San Francisco, CA 94016" +232692,Flatscreen TV,1,300,07/18/19 13:12,"697 1st St, Dallas, TX 75001" +232693,Apple Airpods Headphones,1,150,07/22/19 23:52,"912 Meadow St, San Francisco, CA 94016" +232693,Wired Headphones,1,11.99,07/22/19 23:52,"912 Meadow St, San Francisco, CA 94016" +232694,AA Batteries (4-pack),1,3.84,07/28/19 21:23,"497 Wilson St, New York City, NY 10001" +232695,Vareebadd Phone,1,400,07/28/19 11:10,"207 North St, Dallas, TX 75001" +232696,Wired Headphones,3,11.99,07/02/19 15:20,"402 Lake St, Los Angeles, CA 90001" +232697,Lightning Charging Cable,1,14.95,07/09/19 18:02,"204 Wilson St, Los Angeles, CA 90001" +232698,Wired Headphones,2,11.99,07/05/19 10:48,"133 1st St, San Francisco, CA 94016" +232699,Google Phone,1,600,07/27/19 13:52,"374 Sunset St, Dallas, TX 75001" +232699,USB-C Charging Cable,1,11.95,07/27/19 13:52,"374 Sunset St, Dallas, TX 75001" +232700,27in 4K Gaming Monitor,1,389.99,07/07/19 17:46,"290 5th St, San Francisco, CA 94016" +232701,AAA Batteries (4-pack),1,2.99,07/18/19 15:42,"457 Washington St, Seattle, WA 98101" +232701,USB-C Charging Cable,1,11.95,07/18/19 15:42,"457 Washington St, Seattle, WA 98101" +232702,Apple Airpods Headphones,1,150,07/17/19 18:21,"969 Main St, New York City, NY 10001" +232703,ThinkPad Laptop,1,999.99,07/04/19 18:25,"770 Jackson St, Boston, MA 02215" +232704,27in FHD Monitor,1,149.99,07/03/19 16:55,"537 Church St, San Francisco, CA 94016" +232705,Lightning Charging Cable,1,14.95,07/21/19 09:48,"107 Ridge St, New York City, NY 10001" +232706,Lightning Charging Cable,1,14.95,07/11/19 09:39,"860 North St, Seattle, WA 98101" +232707,Wired Headphones,1,11.99,07/12/19 08:06,"70 Johnson St, Atlanta, GA 30301" +232708,AAA Batteries (4-pack),1,2.99,07/13/19 11:13,"427 Cedar St, Atlanta, GA 30301" +232709,AA Batteries (4-pack),1,3.84,07/31/19 22:46,"778 Johnson St, Atlanta, GA 30301" +232710,Lightning Charging Cable,1,14.95,07/05/19 13:15,"436 13th St, Los Angeles, CA 90001" +232711,27in 4K Gaming Monitor,1,389.99,07/31/19 18:32,"797 10th St, Los Angeles, CA 90001" +232712,ThinkPad Laptop,1,999.99,07/10/19 17:38,"764 Forest St, Dallas, TX 75001" +232713,USB-C Charging Cable,1,11.95,07/31/19 10:13,"198 14th St, San Francisco, CA 94016" +232714,iPhone,1,700,07/08/19 17:27,"886 Meadow St, New York City, NY 10001" +232715,iPhone,1,700,07/11/19 10:35,"923 5th St, Portland, OR 97035" +232716,AA Batteries (4-pack),1,3.84,07/14/19 20:07,"732 Sunset St, Atlanta, GA 30301" +232716,Google Phone,1,600,07/14/19 20:07,"732 Sunset St, Atlanta, GA 30301" +232717,Lightning Charging Cable,1,14.95,07/18/19 18:42,"60 6th St, Portland, OR 97035" +232718,AAA Batteries (4-pack),1,2.99,07/26/19 12:53,"84 14th St, Seattle, WA 98101" +232719,Bose SoundSport Headphones,1,99.99,07/16/19 20:24,"352 Elm St, Dallas, TX 75001" +232720,34in Ultrawide Monitor,1,379.99,07/11/19 18:10,"486 13th St, San Francisco, CA 94016" +232721,Wired Headphones,1,11.99,07/22/19 11:43,"151 Spruce St, New York City, NY 10001" +232722,Wired Headphones,1,11.99,07/18/19 18:34,"256 Ridge St, Los Angeles, CA 90001" +232723,AAA Batteries (4-pack),1,2.99,07/20/19 12:28,"683 Jackson St, San Francisco, CA 94016" +232724,Bose SoundSport Headphones,1,99.99,07/15/19 10:02,"257 Walnut St, Los Angeles, CA 90001" +232725,Bose SoundSport Headphones,1,99.99,07/13/19 17:28,"130 Lakeview St, Boston, MA 02215" +232726,AA Batteries (4-pack),1,3.84,07/26/19 12:33,"310 4th St, New York City, NY 10001" +232727,AAA Batteries (4-pack),1,2.99,07/12/19 20:57,"264 1st St, Atlanta, GA 30301" +232728,34in Ultrawide Monitor,1,379.99,07/07/19 19:32,"350 Adams St, Boston, MA 02215" +232729,Bose SoundSport Headphones,1,99.99,07/20/19 16:07,"178 6th St, San Francisco, CA 94016" +232730,Lightning Charging Cable,1,14.95,07/18/19 06:23,"785 Spruce St, Los Angeles, CA 90001" +232731,USB-C Charging Cable,1,11.95,07/16/19 20:07,"76 1st St, Seattle, WA 98101" +232732,Wired Headphones,1,11.99,07/20/19 15:24,"65 2nd St, San Francisco, CA 94016" +232733,ThinkPad Laptop,1,999.99,07/22/19 22:29,"860 River St, New York City, NY 10001" +232734,ThinkPad Laptop,1,999.99,07/28/19 13:17,"781 Madison St, San Francisco, CA 94016" +232735,AAA Batteries (4-pack),4,2.99,07/15/19 17:02,"534 Maple St, Seattle, WA 98101" +232736,27in 4K Gaming Monitor,1,389.99,07/14/19 10:00,"156 Madison St, Boston, MA 02215" +232737,Vareebadd Phone,1,400,07/23/19 17:20,"532 4th St, San Francisco, CA 94016" +232738,27in 4K Gaming Monitor,1,389.99,07/09/19 15:16,"487 10th St, Atlanta, GA 30301" +232739,Apple Airpods Headphones,1,150,07/26/19 15:09,"454 Hickory St, Atlanta, GA 30301" +232740,AA Batteries (4-pack),1,3.84,07/23/19 00:16,"600 1st St, Los Angeles, CA 90001" +232741,Lightning Charging Cable,1,14.95,07/04/19 13:31,"875 11th St, Los Angeles, CA 90001" +232741,AA Batteries (4-pack),1,3.84,07/04/19 13:31,"875 11th St, Los Angeles, CA 90001" +232742,Bose SoundSport Headphones,1,99.99,07/26/19 11:29,"47 6th St, Los Angeles, CA 90001" +232743,Bose SoundSport Headphones,1,99.99,07/03/19 18:35,"643 Meadow St, Boston, MA 02215" +232744,Lightning Charging Cable,1,14.95,07/06/19 15:12,"781 Park St, Los Angeles, CA 90001" +232745,USB-C Charging Cable,1,11.95,07/29/19 10:43,"340 7th St, Dallas, TX 75001" +232746,USB-C Charging Cable,2,11.95,07/26/19 11:49,"118 Park St, Boston, MA 02215" +232747,Wired Headphones,1,11.99,07/19/19 13:14,"854 Meadow St, New York City, NY 10001" +232748,Macbook Pro Laptop,1,1700,07/24/19 15:18,"329 9th St, Los Angeles, CA 90001" +232749,Macbook Pro Laptop,1,1700,07/05/19 14:33,"72 8th St, Atlanta, GA 30301" +232750,Lightning Charging Cable,1,14.95,07/23/19 17:20,"774 2nd St, Los Angeles, CA 90001" +232751,Wired Headphones,1,11.99,07/16/19 10:52,"266 Lake St, New York City, NY 10001" +232752,USB-C Charging Cable,1,11.95,07/12/19 23:39,"479 Jackson St, Atlanta, GA 30301" +232753,AAA Batteries (4-pack),1,2.99,07/08/19 18:54,"328 Lincoln St, San Francisco, CA 94016" +232754,AAA Batteries (4-pack),1,2.99,07/10/19 12:06,"507 Madison St, Atlanta, GA 30301" +232755,Apple Airpods Headphones,1,150,07/14/19 18:14,"162 Jackson St, Portland, OR 97035" +232756,Bose SoundSport Headphones,1,99.99,07/18/19 12:02,"336 Elm St, Los Angeles, CA 90001" +232757,Wired Headphones,1,11.99,07/26/19 21:17,"892 Madison St, New York City, NY 10001" +232758,Wired Headphones,1,11.99,07/01/19 11:25,"224 Church St, Los Angeles, CA 90001" +232759,iPhone,1,700,07/29/19 16:01,"551 North St, Atlanta, GA 30301" +232760,27in FHD Monitor,1,149.99,07/01/19 12:11,"892 Cedar St, Austin, TX 73301" +232761,Lightning Charging Cable,1,14.95,07/04/19 07:59,"436 Sunset St, Los Angeles, CA 90001" +232762,27in 4K Gaming Monitor,1,389.99,07/20/19 09:24,"425 Johnson St, San Francisco, CA 94016" +232763,34in Ultrawide Monitor,1,379.99,07/31/19 14:24,"222 6th St, Boston, MA 02215" +232764,AAA Batteries (4-pack),1,2.99,07/18/19 12:49,"143 8th St, San Francisco, CA 94016" +232765,Apple Airpods Headphones,1,150,07/20/19 19:50,"841 Walnut St, Seattle, WA 98101" +232766,AAA Batteries (4-pack),1,2.99,07/27/19 20:03,"806 Church St, San Francisco, CA 94016" +232767,USB-C Charging Cable,2,11.95,07/26/19 13:03,"202 Sunset St, New York City, NY 10001" +232768,AAA Batteries (4-pack),1,2.99,07/07/19 11:32,"709 10th St, Boston, MA 02215" +232768,iPhone,1,700,07/07/19 11:32,"709 10th St, Boston, MA 02215" +232769,USB-C Charging Cable,1,11.95,07/09/19 14:25,"900 Walnut St, Atlanta, GA 30301" +232770,Bose SoundSport Headphones,1,99.99,07/30/19 22:15,"188 12th St, San Francisco, CA 94016" +232771,Apple Airpods Headphones,1,150,07/14/19 16:37,"238 4th St, Boston, MA 02215" +232772,27in 4K Gaming Monitor,1,389.99,07/06/19 17:38,"154 River St, Austin, TX 73301" +232773,34in Ultrawide Monitor,1,379.99,07/25/19 15:27,"768 5th St, Los Angeles, CA 90001" +232774,USB-C Charging Cable,1,11.95,07/11/19 19:50,"520 South St, New York City, NY 10001" +232775,AAA Batteries (4-pack),1,2.99,07/26/19 22:10,"388 Johnson St, Los Angeles, CA 90001" +232776,27in FHD Monitor,1,149.99,07/13/19 22:41,"689 12th St, Los Angeles, CA 90001" +232777,Bose SoundSport Headphones,1,99.99,07/22/19 16:25,"972 Highland St, Austin, TX 73301" +232778,27in FHD Monitor,1,149.99,07/01/19 12:37,"287 Willow St, San Francisco, CA 94016" +232779,ThinkPad Laptop,1,999.99,07/26/19 14:40,"909 River St, Portland, OR 97035" +232780,Wired Headphones,1,11.99,07/13/19 17:43,"575 2nd St, Los Angeles, CA 90001" +232781,AA Batteries (4-pack),1,3.84,07/11/19 16:54,"621 Pine St, New York City, NY 10001" +232782,Lightning Charging Cable,1,14.95,07/31/19 18:55,"487 14th St, Portland, OR 97035" +232783,Lightning Charging Cable,1,14.95,07/29/19 15:01,"336 Maple St, Atlanta, GA 30301" +232784,Macbook Pro Laptop,1,1700,07/02/19 18:25,"983 River St, San Francisco, CA 94016" +232785,Lightning Charging Cable,2,14.95,07/09/19 14:07,"486 River St, Austin, TX 73301" +232786,AAA Batteries (4-pack),2,2.99,07/07/19 23:43,"772 14th St, Portland, OR 97035" +232787,USB-C Charging Cable,1,11.95,07/20/19 11:27,"388 Adams St, Atlanta, GA 30301" +232788,Lightning Charging Cable,1,14.95,07/23/19 09:26,"423 Forest St, New York City, NY 10001" +232789,Apple Airpods Headphones,1,150,07/08/19 12:08,"327 4th St, New York City, NY 10001" +232790,USB-C Charging Cable,1,11.95,07/27/19 12:47,"512 Cherry St, Atlanta, GA 30301" +232791,AA Batteries (4-pack),1,3.84,07/20/19 14:26,"540 Ridge St, Dallas, TX 75001" +232792,Apple Airpods Headphones,1,150,07/16/19 10:57,"925 Hill St, New York City, NY 10001" +232793,USB-C Charging Cable,1,11.95,07/18/19 14:47,"264 Jefferson St, San Francisco, CA 94016" +232794,27in FHD Monitor,1,149.99,07/22/19 12:28,"26 Johnson St, Los Angeles, CA 90001" +,,,,, +232795,AA Batteries (4-pack),1,3.84,07/28/19 14:33,"116 Pine St, Portland, ME 04101" +232796,Apple Airpods Headphones,1,150,07/30/19 03:43,"442 Willow St, Seattle, WA 98101" +232797,27in FHD Monitor,1,149.99,07/05/19 17:44,"253 9th St, Boston, MA 02215" +232798,AAA Batteries (4-pack),3,2.99,07/29/19 01:38,"438 14th St, Boston, MA 02215" +232799,AA Batteries (4-pack),2,3.84,07/25/19 22:54,"752 2nd St, Dallas, TX 75001" +232800,AAA Batteries (4-pack),2,2.99,07/07/19 15:45,"339 Lakeview St, Atlanta, GA 30301" +232801,Apple Airpods Headphones,1,150,07/07/19 16:49,"979 2nd St, Portland, OR 97035" +232802,iPhone,1,700,07/08/19 16:06,"838 Lakeview St, Dallas, TX 75001" +232803,20in Monitor,1,109.99,07/10/19 17:12,"830 Hickory St, San Francisco, CA 94016" +232804,Wired Headphones,1,11.99,07/01/19 19:50,"367 Hickory St, San Francisco, CA 94016" +232805,USB-C Charging Cable,1,11.95,07/14/19 12:40,"777 Walnut St, Seattle, WA 98101" +232806,USB-C Charging Cable,1,11.95,07/02/19 09:48,"463 13th St, Austin, TX 73301" +232807,AA Batteries (4-pack),3,3.84,07/21/19 13:29,"329 9th St, New York City, NY 10001" +232807,Bose SoundSport Headphones,1,99.99,07/21/19 13:29,"329 9th St, New York City, NY 10001" +232808,USB-C Charging Cable,1,11.95,07/25/19 22:42,"78 8th St, San Francisco, CA 94016" +232809,AA Batteries (4-pack),1,3.84,07/13/19 18:52,"280 12th St, Boston, MA 02215" +232810,AA Batteries (4-pack),1,3.84,07/10/19 20:41,"322 Hill St, Dallas, TX 75001" +232810,AAA Batteries (4-pack),1,2.99,07/10/19 20:41,"322 Hill St, Dallas, TX 75001" +232811,34in Ultrawide Monitor,1,379.99,07/12/19 16:21,"824 Willow St, New York City, NY 10001" +232812,ThinkPad Laptop,1,999.99,07/15/19 09:44,"559 12th St, Austin, TX 73301" +232813,34in Ultrawide Monitor,1,379.99,07/15/19 13:13,"442 West St, San Francisco, CA 94016" +232814,27in FHD Monitor,1,149.99,07/19/19 18:35,"778 11th St, Portland, OR 97035" +232815,AA Batteries (4-pack),2,3.84,07/23/19 11:06,"881 8th St, Seattle, WA 98101" +232816,27in 4K Gaming Monitor,1,389.99,07/28/19 13:59,"705 13th St, New York City, NY 10001" +232817,Lightning Charging Cable,2,14.95,07/03/19 05:14,"913 Ridge St, Austin, TX 73301" +232817,Vareebadd Phone,1,400,07/03/19 05:14,"913 Ridge St, Austin, TX 73301" +232818,AA Batteries (4-pack),2,3.84,07/30/19 00:56,"959 South St, Seattle, WA 98101" +232819,AAA Batteries (4-pack),2,2.99,07/29/19 12:06,"709 12th St, San Francisco, CA 94016" +232820,AA Batteries (4-pack),3,3.84,07/08/19 09:58,"931 River St, Los Angeles, CA 90001" +232821,AAA Batteries (4-pack),1,2.99,07/19/19 15:23,"304 1st St, Austin, TX 73301" +232822,Wired Headphones,1,11.99,07/12/19 10:16,"67 Highland St, Boston, MA 02215" +232823,USB-C Charging Cable,1,11.95,07/16/19 10:30,"252 Main St, Boston, MA 02215" +232824,Flatscreen TV,1,300,07/18/19 17:15,"167 Church St, San Francisco, CA 94016" +232825,USB-C Charging Cable,1,11.95,07/13/19 10:17,"968 Dogwood St, Seattle, WA 98101" +232826,AA Batteries (4-pack),1,3.84,07/11/19 08:29,"778 1st St, Atlanta, GA 30301" +232827,Wired Headphones,2,11.99,07/09/19 14:08,"289 Cherry St, Atlanta, GA 30301" +232828,Bose SoundSport Headphones,1,99.99,07/06/19 09:13,"360 Hickory St, Boston, MA 02215" +232829,Bose SoundSport Headphones,1,99.99,07/26/19 15:02,"901 Washington St, Dallas, TX 75001" +232830,Lightning Charging Cable,1,14.95,07/02/19 10:57,"255 12th St, New York City, NY 10001" +232831,34in Ultrawide Monitor,1,379.99,07/26/19 11:18,"116 Lincoln St, Portland, OR 97035" +232832,Wired Headphones,1,11.99,07/04/19 16:58,"824 Pine St, San Francisco, CA 94016" +232833,Apple Airpods Headphones,1,150,07/07/19 20:08,"828 Jackson St, Portland, OR 97035" +232834,AA Batteries (4-pack),1,3.84,07/20/19 11:43,"133 Ridge St, Atlanta, GA 30301" +232835,Flatscreen TV,1,300,07/22/19 21:33,"788 14th St, San Francisco, CA 94016" +232836,AAA Batteries (4-pack),2,2.99,07/20/19 08:39,"181 Spruce St, Portland, ME 04101" +232837,Wired Headphones,1,11.99,07/28/19 20:45,"273 6th St, Los Angeles, CA 90001" +232838,Apple Airpods Headphones,1,150,07/29/19 18:02,"559 Willow St, New York City, NY 10001" +232839,Apple Airpods Headphones,1,150,07/01/19 22:02,"697 Cherry St, New York City, NY 10001" +232840,20in Monitor,2,109.99,07/04/19 20:08,"511 8th St, Portland, OR 97035" +232841,USB-C Charging Cable,1,11.95,07/30/19 22:59,"726 5th St, Austin, TX 73301" +232842,USB-C Charging Cable,1,11.95,07/16/19 12:22,"68 Park St, Seattle, WA 98101" +232843,AA Batteries (4-pack),1,3.84,07/13/19 16:49,"214 14th St, New York City, NY 10001" +232844,AA Batteries (4-pack),3,3.84,07/02/19 08:33,"689 Cedar St, San Francisco, CA 94016" +232845,AAA Batteries (4-pack),1,2.99,07/02/19 08:18,"836 Johnson St, San Francisco, CA 94016" +232846,ThinkPad Laptop,1,999.99,07/28/19 09:38,"223 Main St, Atlanta, GA 30301" +232847,27in FHD Monitor,1,149.99,07/18/19 16:10,"312 Madison St, Dallas, TX 75001" +232848,Bose SoundSport Headphones,1,99.99,07/09/19 12:31,"805 Center St, Atlanta, GA 30301" +232849,Bose SoundSport Headphones,1,99.99,07/03/19 08:50,"535 Washington St, San Francisco, CA 94016" +232850,Wired Headphones,1,11.99,07/28/19 12:15,"681 Cedar St, San Francisco, CA 94016" +232851,iPhone,1,700,07/21/19 19:21,"636 Cherry St, Dallas, TX 75001" +232852,iPhone,1,700,07/11/19 22:31,"314 Dogwood St, Portland, ME 04101" +232853,27in 4K Gaming Monitor,1,389.99,07/14/19 18:58,"139 5th St, New York City, NY 10001" +232854,Apple Airpods Headphones,1,150,07/27/19 09:07,"167 Adams St, New York City, NY 10001" +232855,Vareebadd Phone,1,400,07/11/19 06:57,"945 Adams St, Seattle, WA 98101" +232855,USB-C Charging Cable,1,11.95,07/11/19 06:57,"945 Adams St, Seattle, WA 98101" +232856,Google Phone,1,600,07/08/19 19:17,"673 Madison St, San Francisco, CA 94016" +232857,AAA Batteries (4-pack),2,2.99,07/15/19 16:05,"924 12th St, San Francisco, CA 94016" +232858,27in FHD Monitor,1,149.99,07/14/19 14:42,"969 Hickory St, Boston, MA 02215" +232859,USB-C Charging Cable,1,11.95,07/31/19 07:37,"403 Hickory St, San Francisco, CA 94016" +232860,Lightning Charging Cable,1,14.95,07/04/19 11:28,"566 West St, Portland, ME 04101" +232861,Apple Airpods Headphones,1,150,07/05/19 20:49,"271 8th St, Los Angeles, CA 90001" +232862,AA Batteries (4-pack),1,3.84,07/23/19 21:44,"446 Chestnut St, Atlanta, GA 30301" +232863,iPhone,1,700,07/14/19 17:49,"434 Cherry St, Boston, MA 02215" +232864,Google Phone,1,600,07/11/19 16:21,"415 Pine St, San Francisco, CA 94016" +232865,27in 4K Gaming Monitor,1,389.99,07/16/19 23:34,"486 Lakeview St, Boston, MA 02215" +232866,AA Batteries (4-pack),1,3.84,07/21/19 07:27,"124 Spruce St, San Francisco, CA 94016" +232867,Lightning Charging Cable,1,14.95,07/04/19 15:52,"251 West St, New York City, NY 10001" +232868,Lightning Charging Cable,1,14.95,07/22/19 09:19,"170 North St, Seattle, WA 98101" +232869,20in Monitor,1,109.99,07/17/19 17:35,"725 Chestnut St, San Francisco, CA 94016" +232870,Bose SoundSport Headphones,1,99.99,07/01/19 12:12,"255 Forest St, San Francisco, CA 94016" +232871,AA Batteries (4-pack),1,3.84,07/03/19 09:14,"513 4th St, Austin, TX 73301" +232872,Flatscreen TV,1,300,07/15/19 07:05,"600 North St, Dallas, TX 75001" +232873,27in 4K Gaming Monitor,1,389.99,07/21/19 13:18,"515 Elm St, San Francisco, CA 94016" +232874,USB-C Charging Cable,1,11.95,07/13/19 15:17,"137 2nd St, Boston, MA 02215" +232875,Bose SoundSport Headphones,1,99.99,07/21/19 08:27,"598 North St, San Francisco, CA 94016" +232876,AAA Batteries (4-pack),1,2.99,07/05/19 15:48,"438 Cedar St, New York City, NY 10001" +232877,27in FHD Monitor,1,149.99,07/31/19 09:02,"783 Meadow St, Portland, OR 97035" +232878,27in 4K Gaming Monitor,1,389.99,07/08/19 08:46,"964 5th St, New York City, NY 10001" +232879,Google Phone,1,600,07/06/19 12:11,"252 Meadow St, Atlanta, GA 30301" +232880,Wired Headphones,2,11.99,07/19/19 21:57,"994 Hickory St, Dallas, TX 75001" +232881,AA Batteries (4-pack),1,3.84,07/20/19 21:46,"887 2nd St, New York City, NY 10001" +232882,AA Batteries (4-pack),2,3.84,07/19/19 09:26,"982 Meadow St, San Francisco, CA 94016" +232883,Wired Headphones,1,11.99,07/27/19 13:39,"784 Wilson St, New York City, NY 10001" +232884,AAA Batteries (4-pack),2,2.99,07/07/19 19:37,"614 Lakeview St, San Francisco, CA 94016" +232885,27in FHD Monitor,1,149.99,07/29/19 12:58,"14 Elm St, Dallas, TX 75001" +232886,Google Phone,1,600,07/14/19 08:49,"946 Ridge St, Boston, MA 02215" +232886,Wired Headphones,1,11.99,07/14/19 08:49,"946 Ridge St, Boston, MA 02215" +232887,Wired Headphones,1,11.99,07/22/19 16:16,"484 10th St, San Francisco, CA 94016" +232888,AAA Batteries (4-pack),1,2.99,07/12/19 14:24,"430 North St, San Francisco, CA 94016" +232889,USB-C Charging Cable,2,11.95,07/16/19 18:34,"389 Willow St, Los Angeles, CA 90001" +232890,AAA Batteries (4-pack),3,2.99,07/17/19 09:23,"451 Dogwood St, Austin, TX 73301" +232891,Apple Airpods Headphones,1,150,07/01/19 19:00,"425 Highland St, New York City, NY 10001" +232892,USB-C Charging Cable,1,11.95,07/09/19 13:24,"334 10th St, San Francisco, CA 94016" +232893,27in FHD Monitor,1,149.99,07/27/19 20:20,"578 Madison St, Atlanta, GA 30301" +232894,AA Batteries (4-pack),1,3.84,07/25/19 19:54,"496 7th St, Dallas, TX 75001" +232895,iPhone,1,700,07/01/19 06:00,"689 West St, Atlanta, GA 30301" +232896,Wired Headphones,1,11.99,07/06/19 15:24,"882 14th St, San Francisco, CA 94016" +232897,USB-C Charging Cable,1,11.95,07/20/19 11:21,"392 Jefferson St, Seattle, WA 98101" +232898,AAA Batteries (4-pack),2,2.99,07/31/19 18:25,"519 Madison St, New York City, NY 10001" +232899,AAA Batteries (4-pack),1,2.99,07/26/19 21:10,"591 Adams St, Boston, MA 02215" +232900,Lightning Charging Cable,1,14.95,07/24/19 18:34,"867 Ridge St, Boston, MA 02215" +232901,20in Monitor,1,109.99,07/29/19 23:42,"111 Main St, Atlanta, GA 30301" +232902,27in 4K Gaming Monitor,1,389.99,07/07/19 22:52,"444 Church St, San Francisco, CA 94016" +232903,AA Batteries (4-pack),1,3.84,07/19/19 00:07,"338 Sunset St, Seattle, WA 98101" +232904,Wired Headphones,1,11.99,07/31/19 23:58,"717 12th St, San Francisco, CA 94016" +232905,27in FHD Monitor,1,149.99,07/27/19 12:03,"585 Highland St, New York City, NY 10001" +232906,AAA Batteries (4-pack),1,2.99,07/16/19 11:51,"100 Walnut St, Dallas, TX 75001" +232907,34in Ultrawide Monitor,1,379.99,07/09/19 10:34,"922 Park St, New York City, NY 10001" +232908,Lightning Charging Cable,1,14.95,07/06/19 17:24,"531 4th St, New York City, NY 10001" +232909,Wired Headphones,1,11.99,07/30/19 17:34,"310 Hill St, Boston, MA 02215" +232910,AAA Batteries (4-pack),1,2.99,07/09/19 09:12,"139 Jefferson St, Boston, MA 02215" +232911,Wired Headphones,1,11.99,07/13/19 19:00,"980 Main St, San Francisco, CA 94016" +232912,AA Batteries (4-pack),1,3.84,07/16/19 18:52,"355 Pine St, Austin, TX 73301" +232913,27in FHD Monitor,1,149.99,07/19/19 20:29,"220 Highland St, Los Angeles, CA 90001" +232914,AA Batteries (4-pack),1,3.84,07/16/19 09:24,"277 Wilson St, San Francisco, CA 94016" +232915,34in Ultrawide Monitor,1,379.99,07/28/19 12:43,"682 Willow St, Los Angeles, CA 90001" +232916,Wired Headphones,1,11.99,07/18/19 00:59,"625 4th St, Los Angeles, CA 90001" +232917,Lightning Charging Cable,1,14.95,07/06/19 12:42,"20 4th St, San Francisco, CA 94016" +232917,Vareebadd Phone,1,400,07/06/19 12:42,"20 4th St, San Francisco, CA 94016" +232918,Lightning Charging Cable,1,14.95,07/16/19 04:33,"558 1st St, San Francisco, CA 94016" +232919,Apple Airpods Headphones,1,150,07/09/19 16:04,"228 Chestnut St, Austin, TX 73301" +232920,Bose SoundSport Headphones,1,99.99,07/22/19 14:54,"871 2nd St, Los Angeles, CA 90001" +232921,Apple Airpods Headphones,1,150,07/20/19 23:21,"620 Dogwood St, Austin, TX 73301" +232922,Lightning Charging Cable,1,14.95,07/25/19 07:20,"855 11th St, New York City, NY 10001" +232923,Google Phone,1,600,07/17/19 18:39,"486 13th St, San Francisco, CA 94016" +232923,USB-C Charging Cable,1,11.95,07/17/19 18:39,"486 13th St, San Francisco, CA 94016" +232924,Google Phone,1,600,07/05/19 17:32,"263 Hickory St, Portland, ME 04101" +232925,Bose SoundSport Headphones,1,99.99,07/10/19 04:51,"145 Forest St, Boston, MA 02215" +232926,Lightning Charging Cable,1,14.95,07/03/19 20:23,"808 Chestnut St, San Francisco, CA 94016" +232927,AAA Batteries (4-pack),1,2.99,07/01/19 12:03,"701 10th St, Boston, MA 02215" +232928,27in 4K Gaming Monitor,1,389.99,07/25/19 06:58,"801 Ridge St, San Francisco, CA 94016" +232929,Apple Airpods Headphones,1,150,07/20/19 23:36,"109 Jefferson St, Portland, OR 97035" +232930,AA Batteries (4-pack),2,3.84,07/27/19 18:49,"421 Church St, Seattle, WA 98101" +232931,AA Batteries (4-pack),2,3.84,07/26/19 13:20,"628 Hill St, Portland, OR 97035" +232932,AAA Batteries (4-pack),1,2.99,07/11/19 00:47,"566 8th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +232933,AA Batteries (4-pack),2,3.84,07/02/19 14:17,"883 Elm St, Dallas, TX 75001" +232934,Bose SoundSport Headphones,1,99.99,07/14/19 10:29,"627 Cedar St, Boston, MA 02215" +232935,USB-C Charging Cable,1,11.95,07/12/19 14:29,"566 14th St, Los Angeles, CA 90001" +,,,,, +232936,AA Batteries (4-pack),1,3.84,07/15/19 01:08,"342 Madison St, Atlanta, GA 30301" +232937,AA Batteries (4-pack),1,3.84,07/23/19 21:15,"921 River St, Dallas, TX 75001" +232938,Wired Headphones,1,11.99,07/28/19 13:45,"6 Maple St, Dallas, TX 75001" +232939,Apple Airpods Headphones,1,150,07/09/19 12:59,"107 5th St, San Francisco, CA 94016" +232940,USB-C Charging Cable,1,11.95,07/22/19 13:35,"540 6th St, San Francisco, CA 94016" +232941,27in FHD Monitor,1,149.99,07/14/19 18:10,"305 Hill St, Los Angeles, CA 90001" +232942,AA Batteries (4-pack),1,3.84,07/18/19 01:10,"235 Adams St, Dallas, TX 75001" +232943,AAA Batteries (4-pack),1,2.99,07/28/19 07:14,"468 Lakeview St, New York City, NY 10001" +232944,AAA Batteries (4-pack),1,2.99,07/25/19 19:28,"561 11th St, Portland, OR 97035" +232945,Apple Airpods Headphones,1,150,07/10/19 17:33,"339 Hickory St, Dallas, TX 75001" +232946,27in 4K Gaming Monitor,1,389.99,07/09/19 12:49,"379 North St, Boston, MA 02215" +232947,AAA Batteries (4-pack),1,2.99,07/02/19 09:23,"243 14th St, New York City, NY 10001" +232948,Lightning Charging Cable,2,14.95,07/08/19 15:17,"567 1st St, San Francisco, CA 94016" +232949,Apple Airpods Headphones,1,150,07/10/19 14:54,"882 11th St, New York City, NY 10001" +232950,AA Batteries (4-pack),1,3.84,07/07/19 18:05,"883 Spruce St, New York City, NY 10001" +232951,Apple Airpods Headphones,1,150,07/24/19 07:54,"114 Elm St, Los Angeles, CA 90001" +232952,USB-C Charging Cable,1,11.95,07/08/19 17:01,"50 Willow St, New York City, NY 10001" +232953,Bose SoundSport Headphones,1,99.99,07/03/19 22:04,"702 Cherry St, Atlanta, GA 30301" +232954,AAA Batteries (4-pack),1,2.99,07/17/19 11:14,"908 13th St, Los Angeles, CA 90001" +232955,Vareebadd Phone,1,400,07/08/19 16:55,"547 12th St, Los Angeles, CA 90001" +232956,20in Monitor,1,109.99,07/11/19 19:19,"145 14th St, Austin, TX 73301" +232957,USB-C Charging Cable,1,11.95,07/24/19 21:21,"286 Highland St, Boston, MA 02215" +232958,Apple Airpods Headphones,1,150,07/14/19 16:35,"802 4th St, Portland, OR 97035" +232959,20in Monitor,1,109.99,07/05/19 12:16,"202 Dogwood St, New York City, NY 10001" +232960,34in Ultrawide Monitor,1,379.99,07/02/19 20:38,"611 Ridge St, San Francisco, CA 94016" +232961,AA Batteries (4-pack),1,3.84,07/03/19 12:04,"675 Pine St, Los Angeles, CA 90001" +232962,AAA Batteries (4-pack),1,2.99,07/23/19 12:58,"587 Hill St, Austin, TX 73301" +232962,Wired Headphones,1,11.99,07/23/19 12:58,"587 Hill St, Austin, TX 73301" +232963,Lightning Charging Cable,1,14.95,07/30/19 19:58,"235 14th St, Seattle, WA 98101" +232964,AA Batteries (4-pack),2,3.84,07/12/19 09:35,"877 Chestnut St, New York City, NY 10001" +232965,Apple Airpods Headphones,1,150,07/15/19 00:16,"108 Church St, San Francisco, CA 94016" +232966,USB-C Charging Cable,1,11.95,07/06/19 17:14,"374 Forest St, Atlanta, GA 30301" +232967,Macbook Pro Laptop,1,1700,07/22/19 12:14,"124 14th St, San Francisco, CA 94016" +232968,27in 4K Gaming Monitor,1,389.99,07/28/19 10:19,"984 North St, New York City, NY 10001" +232969,Bose SoundSport Headphones,1,99.99,07/27/19 06:37,"422 Cedar St, Los Angeles, CA 90001" +232970,Apple Airpods Headphones,1,150,07/24/19 11:52,"460 Center St, San Francisco, CA 94016" +232971,20in Monitor,1,109.99,07/03/19 10:47,"617 South St, Dallas, TX 75001" +232972,Macbook Pro Laptop,1,1700,07/03/19 14:31,"348 Johnson St, New York City, NY 10001" +232973,AAA Batteries (4-pack),1,2.99,07/18/19 13:46,"537 6th St, San Francisco, CA 94016" +232974,AAA Batteries (4-pack),2,2.99,07/22/19 07:12,"741 Johnson St, Los Angeles, CA 90001" +232975,Wired Headphones,1,11.99,07/29/19 14:41,"814 South St, San Francisco, CA 94016" +232976,Wired Headphones,1,11.99,07/08/19 22:45,"117 North St, Seattle, WA 98101" +232977,Wired Headphones,1,11.99,07/18/19 14:30,"381 Lakeview St, San Francisco, CA 94016" +232978,Wired Headphones,1,11.99,07/01/19 23:04,"693 Spruce St, Boston, MA 02215" +232979,Google Phone,1,600,07/02/19 13:46,"713 4th St, Boston, MA 02215" +232980,Lightning Charging Cable,1,14.95,07/09/19 17:45,"376 South St, Dallas, TX 75001" +232981,Lightning Charging Cable,1,14.95,07/09/19 00:39,"296 South St, Dallas, TX 75001" +232982,USB-C Charging Cable,1,11.95,07/20/19 18:17,"882 2nd St, Boston, MA 02215" +232983,AAA Batteries (4-pack),1,2.99,07/27/19 11:19,"28 Church St, Boston, MA 02215" +232984,Bose SoundSport Headphones,1,99.99,07/29/19 09:02,"370 Hickory St, San Francisco, CA 94016" +232985,AAA Batteries (4-pack),1,2.99,07/15/19 16:56,"353 Jackson St, San Francisco, CA 94016" +232986,Bose SoundSport Headphones,1,99.99,07/08/19 12:01,"238 8th St, Los Angeles, CA 90001" +232987,Bose SoundSport Headphones,1,99.99,07/21/19 02:11,"748 Main St, Dallas, TX 75001" +232988,AAA Batteries (4-pack),1,2.99,07/28/19 10:26,"307 Ridge St, Boston, MA 02215" +232989,Macbook Pro Laptop,1,1700,07/31/19 16:21,"31 14th St, Boston, MA 02215" +232990,Macbook Pro Laptop,1,1700,07/20/19 11:39,"250 Adams St, Los Angeles, CA 90001" +232991,ThinkPad Laptop,1,999.99,07/04/19 19:58,"32 Forest St, Portland, OR 97035" +232992,Macbook Pro Laptop,1,1700,07/15/19 10:49,"354 4th St, Dallas, TX 75001" +232993,AAA Batteries (4-pack),1,2.99,07/09/19 09:08,"707 9th St, San Francisco, CA 94016" +232994,Lightning Charging Cable,1,14.95,07/20/19 11:04,"663 5th St, Los Angeles, CA 90001" +232995,AAA Batteries (4-pack),2,2.99,07/20/19 18:55,"455 Jackson St, New York City, NY 10001" +232996,ThinkPad Laptop,1,999.99,07/26/19 19:33,"982 14th St, San Francisco, CA 94016" +232997,USB-C Charging Cable,1,11.95,07/13/19 18:21,"74 Lakeview St, New York City, NY 10001" +232998,iPhone,1,700,07/16/19 11:54,"702 Madison St, Austin, TX 73301" +232999,27in 4K Gaming Monitor,1,389.99,07/12/19 19:22,"703 Lincoln St, Seattle, WA 98101" +233000,AAA Batteries (4-pack),1,2.99,07/08/19 17:50,"7 14th St, San Francisco, CA 94016" +233001,AAA Batteries (4-pack),2,2.99,07/03/19 21:21,"358 Cherry St, Dallas, TX 75001" +233002,AAA Batteries (4-pack),2,2.99,07/15/19 10:47,"877 Chestnut St, San Francisco, CA 94016" +233003,USB-C Charging Cable,1,11.95,07/07/19 11:50,"825 2nd St, San Francisco, CA 94016" +233004,iPhone,1,700,07/20/19 20:33,"166 Meadow St, Atlanta, GA 30301" +233005,Flatscreen TV,1,300,07/04/19 15:06,"431 Church St, Seattle, WA 98101" +233006,Lightning Charging Cable,1,14.95,07/04/19 13:55,"49 Cherry St, Atlanta, GA 30301" +233007,Lightning Charging Cable,1,14.95,07/04/19 07:37,"379 Johnson St, Boston, MA 02215" +233008,USB-C Charging Cable,1,11.95,07/12/19 22:08,"331 6th St, San Francisco, CA 94016" +233009,AAA Batteries (4-pack),4,2.99,07/31/19 11:29,"59 Hickory St, San Francisco, CA 94016" +233010,USB-C Charging Cable,1,11.95,07/10/19 14:45,"52 Cedar St, Dallas, TX 75001" +233011,iPhone,1,700,07/08/19 09:55,"728 7th St, New York City, NY 10001" +233012,Apple Airpods Headphones,1,150,07/12/19 14:48,"934 9th St, Boston, MA 02215" +233013,AAA Batteries (4-pack),3,2.99,07/18/19 20:10,"250 Jackson St, Portland, OR 97035" +233014,27in FHD Monitor,1,149.99,07/16/19 16:19,"123 Dogwood St, Boston, MA 02215" +233015,Lightning Charging Cable,1,14.95,07/30/19 19:47,"110 Maple St, Dallas, TX 75001" +233016,Bose SoundSport Headphones,1,99.99,07/16/19 16:22,"769 Adams St, San Francisco, CA 94016" +233017,AAA Batteries (4-pack),1,2.99,07/24/19 20:37,"244 12th St, Los Angeles, CA 90001" +233018,Apple Airpods Headphones,1,150,07/04/19 19:26,"607 Madison St, Atlanta, GA 30301" +233019,Wired Headphones,1,11.99,07/10/19 12:07,"169 1st St, Seattle, WA 98101" +233020,AAA Batteries (4-pack),6,2.99,07/28/19 17:44,"751 Hill St, San Francisco, CA 94016" +233021,USB-C Charging Cable,1,11.95,07/18/19 00:39,"285 Maple St, Boston, MA 02215" +233022,AA Batteries (4-pack),1,3.84,07/24/19 18:42,"102 10th St, San Francisco, CA 94016" +233022,Apple Airpods Headphones,1,150,07/24/19 18:42,"102 10th St, San Francisco, CA 94016" +233023,AAA Batteries (4-pack),2,2.99,07/19/19 23:47,"749 Highland St, Austin, TX 73301" +233024,Lightning Charging Cable,1,14.95,07/15/19 12:58,"659 Hill St, Los Angeles, CA 90001" +233025,Wired Headphones,1,11.99,08/01/19 02:54,"476 Lake St, New York City, NY 10001" +233026,Wired Headphones,1,11.99,07/28/19 12:58,"468 Meadow St, San Francisco, CA 94016" +233027,ThinkPad Laptop,1,999.99,07/29/19 11:58,"15 Sunset St, Atlanta, GA 30301" +233028,USB-C Charging Cable,1,11.95,07/17/19 16:55,"576 6th St, New York City, NY 10001" +233029,Wired Headphones,1,11.99,07/21/19 00:41,"745 4th St, Austin, TX 73301" +233030,Apple Airpods Headphones,1,150,07/01/19 15:12,"370 Hill St, San Francisco, CA 94016" +233031,Macbook Pro Laptop,1,1700,07/16/19 09:48,"278 9th St, Boston, MA 02215" +233032,AAA Batteries (4-pack),1,2.99,07/04/19 14:14,"8 Elm St, Atlanta, GA 30301" +233033,AA Batteries (4-pack),1,3.84,07/05/19 08:16,"336 Lincoln St, Los Angeles, CA 90001" +233034,Lightning Charging Cable,1,14.95,07/10/19 09:16,"955 Washington St, Atlanta, GA 30301" +233035,Apple Airpods Headphones,1,150,07/12/19 14:27,"788 South St, Boston, MA 02215" +233036,Bose SoundSport Headphones,1,99.99,07/26/19 20:59,"900 9th St, Portland, OR 97035" +233037,Lightning Charging Cable,1,14.95,07/24/19 23:14,"403 7th St, Los Angeles, CA 90001" +233038,USB-C Charging Cable,1,11.95,07/02/19 19:30,"126 6th St, Seattle, WA 98101" +233039,AA Batteries (4-pack),1,3.84,07/15/19 16:01,"758 Jefferson St, Atlanta, GA 30301" +233040,Apple Airpods Headphones,1,150,07/25/19 23:55,"929 Main St, Los Angeles, CA 90001" +233041,Flatscreen TV,1,300,07/13/19 17:21,"613 Walnut St, New York City, NY 10001" +233042,Lightning Charging Cable,1,14.95,07/07/19 16:44,"799 Meadow St, New York City, NY 10001" +233043,Wired Headphones,1,11.99,07/03/19 14:25,"632 Elm St, Los Angeles, CA 90001" +233044,Flatscreen TV,1,300,07/01/19 17:37,"481 Forest St, Los Angeles, CA 90001" +233045,27in FHD Monitor,1,149.99,07/06/19 23:33,"926 Ridge St, New York City, NY 10001" +233046,Wired Headphones,1,11.99,07/15/19 10:40,"490 5th St, Los Angeles, CA 90001" +233046,Wired Headphones,1,11.99,07/15/19 10:40,"490 5th St, Los Angeles, CA 90001" +233047,Wired Headphones,1,11.99,07/14/19 13:26,"617 13th St, Atlanta, GA 30301" +233048,LG Dryer,1,600.0,07/17/19 20:35,"384 Lakeview St, New York City, NY 10001" +233049,Lightning Charging Cable,1,14.95,07/26/19 09:40,"973 Elm St, New York City, NY 10001" +233050,Wired Headphones,1,11.99,07/26/19 13:43,"184 Main St, Boston, MA 02215" +233051,AA Batteries (4-pack),1,3.84,07/28/19 18:07,"892 Chestnut St, San Francisco, CA 94016" +233052,AA Batteries (4-pack),1,3.84,07/30/19 10:47,"522 Lake St, San Francisco, CA 94016" +,,,,, +233053,ThinkPad Laptop,1,999.99,07/25/19 19:22,"882 Spruce St, Atlanta, GA 30301" +233054,AA Batteries (4-pack),1,3.84,07/26/19 00:47,"903 10th St, Seattle, WA 98101" +233055,AAA Batteries (4-pack),2,2.99,07/03/19 12:15,"995 Lakeview St, Seattle, WA 98101" +233056,USB-C Charging Cable,1,11.95,07/30/19 08:06,"731 7th St, Los Angeles, CA 90001" +233057,Apple Airpods Headphones,1,150,07/03/19 10:54,"870 Jefferson St, New York City, NY 10001" +233058,27in FHD Monitor,1,149.99,07/10/19 06:26,"623 Walnut St, San Francisco, CA 94016" +233059,34in Ultrawide Monitor,1,379.99,07/06/19 13:14,"469 Walnut St, San Francisco, CA 94016" +233060,Google Phone,1,600,07/29/19 14:06,"306 Lake St, Dallas, TX 75001" +233061,Lightning Charging Cable,2,14.95,07/02/19 21:26,"140 Meadow St, Austin, TX 73301" +233062,AA Batteries (4-pack),1,3.84,07/26/19 19:45,"60 Cherry St, San Francisco, CA 94016" +233063,Wired Headphones,1,11.99,07/16/19 19:38,"258 Pine St, San Francisco, CA 94016" +233064,AAA Batteries (4-pack),2,2.99,07/05/19 12:08,"933 1st St, Dallas, TX 75001" +233065,34in Ultrawide Monitor,1,379.99,07/06/19 13:57,"121 Forest St, Dallas, TX 75001" +233066,Bose SoundSport Headphones,1,99.99,07/23/19 18:21,"463 7th St, Portland, ME 04101" +233067,Wired Headphones,1,11.99,07/11/19 14:31,"476 North St, Boston, MA 02215" +233068,27in FHD Monitor,1,149.99,07/13/19 20:40,"563 Washington St, New York City, NY 10001" +233069,Wired Headphones,1,11.99,07/14/19 11:34,"246 2nd St, New York City, NY 10001" +233070,AAA Batteries (4-pack),1,2.99,07/05/19 20:10,"762 River St, San Francisco, CA 94016" +233071,Vareebadd Phone,1,400,07/21/19 09:54,"171 West St, Portland, OR 97035" +233072,Vareebadd Phone,1,400,07/29/19 15:29,"289 Lakeview St, New York City, NY 10001" +233073,Lightning Charging Cable,1,14.95,07/18/19 11:04,"33 4th St, Los Angeles, CA 90001" +233074,AA Batteries (4-pack),1,3.84,07/05/19 22:55,"147 5th St, Austin, TX 73301" +233075,Apple Airpods Headphones,1,150,07/02/19 09:41,"13 Johnson St, Seattle, WA 98101" +233076,Bose SoundSport Headphones,1,99.99,07/26/19 15:47,"257 Madison St, Seattle, WA 98101" +233077,Wired Headphones,1,11.99,07/07/19 12:26,"478 Ridge St, San Francisco, CA 94016" +233078,USB-C Charging Cable,1,11.95,07/02/19 22:04,"911 Hickory St, San Francisco, CA 94016" +233079,Bose SoundSport Headphones,1,99.99,07/27/19 14:32,"360 West St, Austin, TX 73301" +233080,Apple Airpods Headphones,1,150,07/07/19 18:38,"741 Park St, Boston, MA 02215" +233081,Bose SoundSport Headphones,1,99.99,07/20/19 20:17,"747 Hickory St, New York City, NY 10001" +233082,Vareebadd Phone,1,400,07/02/19 07:07,"781 9th St, San Francisco, CA 94016" +233083,USB-C Charging Cable,1,11.95,07/13/19 22:39,"195 7th St, Dallas, TX 75001" +233084,USB-C Charging Cable,2,11.95,07/15/19 11:29,"365 Willow St, New York City, NY 10001" +233085,Apple Airpods Headphones,1,150,07/24/19 10:09,"540 10th St, Atlanta, GA 30301" +233086,ThinkPad Laptop,1,999.99,07/15/19 10:59,"731 12th St, Dallas, TX 75001" +233087,AAA Batteries (4-pack),1,2.99,07/13/19 07:22,"206 11th St, Seattle, WA 98101" +233088,AAA Batteries (4-pack),2,2.99,07/16/19 12:03,"13 14th St, New York City, NY 10001" +233089,AA Batteries (4-pack),1,3.84,07/01/19 19:26,"11 South St, Atlanta, GA 30301" +233090,Lightning Charging Cable,1,14.95,07/06/19 20:35,"985 Hill St, San Francisco, CA 94016" +233091,Lightning Charging Cable,1,14.95,07/23/19 22:11,"861 Lake St, New York City, NY 10001" +233092,Apple Airpods Headphones,1,150,07/19/19 16:55,"76 12th St, San Francisco, CA 94016" +233093,AAA Batteries (4-pack),1,2.99,07/11/19 11:33,"434 West St, Boston, MA 02215" +233094,Flatscreen TV,1,300,07/13/19 15:59,"955 Madison St, San Francisco, CA 94016" +233095,Apple Airpods Headphones,1,150,07/13/19 10:36,"164 Adams St, Portland, OR 97035" +233096,AAA Batteries (4-pack),1,2.99,07/29/19 15:10,"836 1st St, New York City, NY 10001" +233097,Google Phone,1,600,07/01/19 06:31,"887 Lake St, Boston, MA 02215" +233098,AA Batteries (4-pack),1,3.84,07/07/19 21:29,"175 South St, San Francisco, CA 94016" +233099,USB-C Charging Cable,1,11.95,07/08/19 22:37,"416 Forest St, Los Angeles, CA 90001" +233099,Lightning Charging Cable,1,14.95,07/08/19 22:37,"416 Forest St, Los Angeles, CA 90001" +233100,iPhone,1,700,07/11/19 09:06,"539 Spruce St, Atlanta, GA 30301" +233101,27in FHD Monitor,1,149.99,07/07/19 22:45,"473 Lincoln St, San Francisco, CA 94016" +233101,USB-C Charging Cable,1,11.95,07/07/19 22:45,"473 Lincoln St, San Francisco, CA 94016" +233102,AAA Batteries (4-pack),1,2.99,07/14/19 10:50,"518 Willow St, Atlanta, GA 30301" +233103,AA Batteries (4-pack),1,3.84,07/09/19 01:21,"532 Wilson St, New York City, NY 10001" +233104,AAA Batteries (4-pack),2,2.99,07/16/19 20:48,"150 8th St, Dallas, TX 75001" +233105,AAA Batteries (4-pack),1,2.99,07/16/19 23:10,"856 Jefferson St, Boston, MA 02215" +233106,Apple Airpods Headphones,1,150,07/17/19 12:22,"798 Jefferson St, Dallas, TX 75001" +233107,34in Ultrawide Monitor,1,379.99,07/10/19 17:33,"639 12th St, New York City, NY 10001" +233108,Wired Headphones,1,11.99,07/15/19 09:28,"178 Hickory St, New York City, NY 10001" +233109,AAA Batteries (4-pack),1,2.99,07/12/19 11:33,"325 2nd St, San Francisco, CA 94016" +233110,Wired Headphones,1,11.99,07/29/19 18:28,"443 Lakeview St, San Francisco, CA 94016" +233111,LG Dryer,1,600.0,07/24/19 19:18,"43 Johnson St, Seattle, WA 98101" +233112,AA Batteries (4-pack),1,3.84,07/15/19 19:59,"37 West St, Boston, MA 02215" +233113,27in 4K Gaming Monitor,1,389.99,07/06/19 11:30,"834 Spruce St, Atlanta, GA 30301" +233114,Macbook Pro Laptop,1,1700,07/07/19 18:25,"276 Church St, San Francisco, CA 94016" +233115,iPhone,1,700,07/01/19 12:09,"713 Lincoln St, Boston, MA 02215" +233116,Vareebadd Phone,1,400,07/01/19 15:12,"704 Washington St, Seattle, WA 98101" +233117,Apple Airpods Headphones,1,150,07/20/19 21:30,"768 Park St, Boston, MA 02215" +233118,Macbook Pro Laptop,1,1700,07/30/19 14:42,"196 Jackson St, Boston, MA 02215" +233119,USB-C Charging Cable,1,11.95,07/12/19 19:00,"101 Cedar St, New York City, NY 10001" +233120,Lightning Charging Cable,1,14.95,07/01/19 17:42,"946 9th St, Atlanta, GA 30301" +233121,AAA Batteries (4-pack),2,2.99,07/02/19 23:35,"247 12th St, New York City, NY 10001" +233122,Bose SoundSport Headphones,1,99.99,07/03/19 07:39,"531 1st St, Los Angeles, CA 90001" +233123,USB-C Charging Cable,1,11.95,07/31/19 16:35,"294 Sunset St, San Francisco, CA 94016" +233124,Bose SoundSport Headphones,1,99.99,07/23/19 21:46,"647 Meadow St, Los Angeles, CA 90001" +233125,USB-C Charging Cable,1,11.95,07/05/19 12:22,"514 Pine St, Portland, OR 97035" +233126,Macbook Pro Laptop,1,1700,07/03/19 12:03,"162 Lincoln St, New York City, NY 10001" +233127,AAA Batteries (4-pack),1,2.99,07/04/19 17:38,"243 Cherry St, Dallas, TX 75001" +233128,AAA Batteries (4-pack),6,2.99,07/05/19 19:08,"778 Jefferson St, San Francisco, CA 94016" +233129,AAA Batteries (4-pack),1,2.99,07/12/19 13:07,"994 Jefferson St, Portland, OR 97035" +233130,AAA Batteries (4-pack),1,2.99,07/16/19 17:25,"785 Lakeview St, Seattle, WA 98101" +233131,Lightning Charging Cable,1,14.95,07/22/19 13:41,"470 12th St, Seattle, WA 98101" +233132,Lightning Charging Cable,1,14.95,07/29/19 18:12,"586 Lincoln St, San Francisco, CA 94016" +233133,Flatscreen TV,1,300,07/21/19 18:25,"569 Pine St, Portland, OR 97035" +233134,Apple Airpods Headphones,1,150,07/17/19 14:05,"949 8th St, Los Angeles, CA 90001" +233134,AAA Batteries (4-pack),1,2.99,07/17/19 14:05,"949 8th St, Los Angeles, CA 90001" +233135,Lightning Charging Cable,1,14.95,07/24/19 09:20,"912 Wilson St, Los Angeles, CA 90001" +233136,Wired Headphones,1,11.99,07/31/19 18:10,"343 11th St, New York City, NY 10001" +233137,Lightning Charging Cable,1,14.95,07/02/19 05:39,"970 13th St, Dallas, TX 75001" +233138,USB-C Charging Cable,1,11.95,07/17/19 19:21,"91 9th St, Seattle, WA 98101" +233139,Google Phone,1,600,07/05/19 08:25,"192 13th St, San Francisco, CA 94016" +233140,LG Washing Machine,1,600.0,07/17/19 14:16,"989 Ridge St, Los Angeles, CA 90001" +233141,Lightning Charging Cable,1,14.95,07/29/19 14:24,"318 Jackson St, Los Angeles, CA 90001" +233142,Google Phone,1,600,07/20/19 19:03,"515 1st St, San Francisco, CA 94016" +233143,AAA Batteries (4-pack),1,2.99,07/15/19 13:58,"198 Forest St, San Francisco, CA 94016" +233144,Lightning Charging Cable,1,14.95,07/22/19 14:31,"988 Willow St, Seattle, WA 98101" +233145,AA Batteries (4-pack),1,3.84,07/18/19 20:29,"910 9th St, Boston, MA 02215" +233146,Lightning Charging Cable,1,14.95,07/13/19 10:13,"899 South St, New York City, NY 10001" +233147,Wired Headphones,2,11.99,07/21/19 19:21,"947 6th St, New York City, NY 10001" +233148,AA Batteries (4-pack),1,3.84,07/05/19 14:03,"856 Madison St, Los Angeles, CA 90001" +233149,Bose SoundSport Headphones,1,99.99,07/01/19 16:40,"169 South St, Austin, TX 73301" +233150,AA Batteries (4-pack),1,3.84,07/28/19 20:32,"954 13th St, Atlanta, GA 30301" +233151,27in FHD Monitor,1,149.99,07/06/19 20:26,"102 West St, New York City, NY 10001" +233152,USB-C Charging Cable,2,11.95,07/10/19 21:48,"217 13th St, Los Angeles, CA 90001" +233153,AA Batteries (4-pack),3,3.84,07/25/19 06:52,"427 Elm St, Atlanta, GA 30301" +233154,Lightning Charging Cable,1,14.95,07/19/19 10:13,"842 Lake St, San Francisco, CA 94016" +233155,Wired Headphones,1,11.99,07/28/19 14:28,"706 Sunset St, Austin, TX 73301" +233156,USB-C Charging Cable,1,11.95,07/29/19 19:15,"654 Hill St, San Francisco, CA 94016" +233157,27in FHD Monitor,1,149.99,07/06/19 00:32,"460 South St, Boston, MA 02215" +233158,Lightning Charging Cable,1,14.95,07/18/19 20:23,"897 6th St, San Francisco, CA 94016" +233158,USB-C Charging Cable,1,11.95,07/18/19 20:23,"897 6th St, San Francisco, CA 94016" +233159,Wired Headphones,1,11.99,07/22/19 22:09,"477 Lakeview St, Atlanta, GA 30301" +233160,Lightning Charging Cable,1,14.95,07/06/19 11:53,"374 Ridge St, Atlanta, GA 30301" +233161,27in FHD Monitor,1,149.99,07/23/19 14:11,"610 Center St, Los Angeles, CA 90001" +233162,Apple Airpods Headphones,1,150,07/05/19 13:36,"410 5th St, San Francisco, CA 94016" +233163,27in FHD Monitor,1,149.99,07/02/19 16:16,"481 Elm St, Los Angeles, CA 90001" +233164,USB-C Charging Cable,1,11.95,07/01/19 17:06,"809 Lake St, Dallas, TX 75001" +233165,AAA Batteries (4-pack),1,2.99,07/18/19 13:22,"956 13th St, San Francisco, CA 94016" +233166,Wired Headphones,1,11.99,07/21/19 09:06,"468 1st St, New York City, NY 10001" +233167,27in FHD Monitor,1,149.99,07/02/19 15:14,"713 Johnson St, San Francisco, CA 94016" +233168,Bose SoundSport Headphones,1,99.99,07/30/19 14:30,"236 Chestnut St, San Francisco, CA 94016" +233169,Wired Headphones,1,11.99,07/19/19 22:05,"774 11th St, San Francisco, CA 94016" +233170,AAA Batteries (4-pack),2,2.99,07/14/19 09:08,"169 Jackson St, New York City, NY 10001" +233171,27in FHD Monitor,1,149.99,07/21/19 17:09,"268 Sunset St, Los Angeles, CA 90001" +233172,USB-C Charging Cable,2,11.95,07/05/19 14:19,"14 11th St, Seattle, WA 98101" +233173,Wired Headphones,1,11.99,07/29/19 16:25,"182 Spruce St, San Francisco, CA 94016" +233174,27in FHD Monitor,1,149.99,07/29/19 12:15,"245 River St, New York City, NY 10001" +233175,AA Batteries (4-pack),3,3.84,07/30/19 08:04,"599 11th St, Atlanta, GA 30301" +233176,AA Batteries (4-pack),2,3.84,07/04/19 10:18,"598 Spruce St, San Francisco, CA 94016" +233177,27in 4K Gaming Monitor,1,389.99,07/22/19 09:02,"410 13th St, Portland, OR 97035" +233178,Bose SoundSport Headphones,1,99.99,07/26/19 06:10,"232 Johnson St, Los Angeles, CA 90001" +233179,USB-C Charging Cable,1,11.95,07/31/19 13:37,"401 Jackson St, Los Angeles, CA 90001" +233180,27in FHD Monitor,1,149.99,07/05/19 20:06,"78 North St, New York City, NY 10001" +233181,AAA Batteries (4-pack),1,2.99,07/15/19 11:37,"649 Willow St, Seattle, WA 98101" +233182,AA Batteries (4-pack),1,3.84,07/11/19 09:53,"132 Lincoln St, San Francisco, CA 94016" +233183,Macbook Pro Laptop,1,1700,07/15/19 09:31,"902 Sunset St, Atlanta, GA 30301" +233184,AAA Batteries (4-pack),2,2.99,07/22/19 08:16,"69 Hill St, San Francisco, CA 94016" +233185,ThinkPad Laptop,1,999.99,07/22/19 12:30,"145 Dogwood St, Dallas, TX 75001" +233186,AA Batteries (4-pack),1,3.84,07/24/19 17:42,"835 13th St, New York City, NY 10001" +233187,USB-C Charging Cable,1,11.95,07/04/19 10:42,"264 West St, Atlanta, GA 30301" +233188,AAA Batteries (4-pack),1,2.99,07/21/19 18:33,"776 8th St, New York City, NY 10001" +233189,USB-C Charging Cable,1,11.95,07/09/19 11:15,"226 Lakeview St, San Francisco, CA 94016" +233190,iPhone,1,700,07/26/19 16:37,"996 Main St, San Francisco, CA 94016" +233191,20in Monitor,1,109.99,07/24/19 11:47,"115 Center St, Austin, TX 73301" +233192,AAA Batteries (4-pack),2,2.99,07/25/19 20:53,"556 13th St, Portland, OR 97035" +233193,Wired Headphones,1,11.99,07/04/19 10:22,"799 Cherry St, Dallas, TX 75001" +233194,USB-C Charging Cable,1,11.95,07/14/19 17:26,"162 11th St, San Francisco, CA 94016" +233195,USB-C Charging Cable,1,11.95,07/01/19 10:53,"472 Highland St, Boston, MA 02215" +233196,27in FHD Monitor,1,149.99,07/11/19 20:06,"381 Elm St, Atlanta, GA 30301" +233197,34in Ultrawide Monitor,1,379.99,07/19/19 07:18,"513 Willow St, Atlanta, GA 30301" +233198,Apple Airpods Headphones,1,150,07/15/19 11:02,"885 7th St, Austin, TX 73301" +233199,iPhone,1,700,07/05/19 11:19,"989 Walnut St, New York City, NY 10001" +233199,Lightning Charging Cable,1,14.95,07/05/19 11:19,"989 Walnut St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +233200,USB-C Charging Cable,1,11.95,07/16/19 21:42,"690 7th St, San Francisco, CA 94016" +233201,AA Batteries (4-pack),1,3.84,07/20/19 22:11,"428 Dogwood St, Los Angeles, CA 90001" +233202,27in 4K Gaming Monitor,1,389.99,07/19/19 21:14,"183 Main St, Los Angeles, CA 90001" +233203,Lightning Charging Cable,1,14.95,07/12/19 16:23,"446 South St, Los Angeles, CA 90001" +233204,Wired Headphones,1,11.99,07/05/19 14:45,"375 Highland St, Dallas, TX 75001" +233205,Bose SoundSport Headphones,1,99.99,07/21/19 09:26,"872 Lincoln St, San Francisco, CA 94016" +233206,Lightning Charging Cable,1,14.95,07/18/19 11:02,"752 Highland St, New York City, NY 10001" +233207,AA Batteries (4-pack),2,3.84,07/24/19 08:28,"357 12th St, New York City, NY 10001" +233208,AAA Batteries (4-pack),1,2.99,07/13/19 15:06,"182 Cherry St, Los Angeles, CA 90001" +233209,AAA Batteries (4-pack),3,2.99,07/25/19 10:07,"918 Park St, Austin, TX 73301" +233210,20in Monitor,1,109.99,07/30/19 09:38,"795 Adams St, San Francisco, CA 94016" +233211,20in Monitor,1,109.99,07/18/19 10:42,"328 5th St, Austin, TX 73301" +233212,Macbook Pro Laptop,1,1700,07/22/19 20:46,"494 5th St, Portland, OR 97035" +233213,27in 4K Gaming Monitor,1,389.99,07/21/19 22:05,"534 Sunset St, New York City, NY 10001" +233214,Wired Headphones,1,11.99,07/26/19 20:15,"212 Spruce St, Seattle, WA 98101" +233215,Wired Headphones,2,11.99,07/24/19 21:05,"111 Sunset St, San Francisco, CA 94016" +233216,Vareebadd Phone,1,400,07/07/19 23:21,"285 14th St, New York City, NY 10001" +233217,27in 4K Gaming Monitor,1,389.99,07/17/19 10:20,"498 North St, New York City, NY 10001" +233218,Macbook Pro Laptop,1,1700,07/12/19 10:04,"360 West St, San Francisco, CA 94016" +233219,Lightning Charging Cable,1,14.95,07/28/19 07:24,"568 11th St, San Francisco, CA 94016" +233220,AAA Batteries (4-pack),1,2.99,07/01/19 13:56,"300 Lakeview St, Los Angeles, CA 90001" +233221,USB-C Charging Cable,1,11.95,07/27/19 08:17,"209 9th St, Dallas, TX 75001" +233222,Lightning Charging Cable,1,14.95,07/15/19 16:59,"345 Park St, Dallas, TX 75001" +233222,USB-C Charging Cable,1,11.95,07/15/19 16:59,"345 Park St, Dallas, TX 75001" +233223,AAA Batteries (4-pack),1,2.99,07/14/19 09:16,"570 7th St, Boston, MA 02215" +233224,Wired Headphones,1,11.99,07/13/19 12:29,"959 5th St, Boston, MA 02215" +233225,Apple Airpods Headphones,1,150,07/24/19 01:32,"198 Elm St, San Francisco, CA 94016" +233226,USB-C Charging Cable,1,11.95,07/08/19 13:06,"833 Lakeview St, New York City, NY 10001" +233227,27in 4K Gaming Monitor,1,389.99,07/16/19 19:25,"488 Adams St, Atlanta, GA 30301" +233228,Apple Airpods Headphones,1,150,07/26/19 12:40,"942 Forest St, New York City, NY 10001" +233229,34in Ultrawide Monitor,1,379.99,07/12/19 22:42,"803 Jackson St, New York City, NY 10001" +233230,AA Batteries (4-pack),1,3.84,07/31/19 08:20,"545 Cedar St, San Francisco, CA 94016" +233231,AAA Batteries (4-pack),1,2.99,07/23/19 14:11,"736 Dogwood St, Los Angeles, CA 90001" +233232,Apple Airpods Headphones,1,150,07/18/19 11:11,"433 Pine St, San Francisco, CA 94016" +233233,USB-C Charging Cable,1,11.95,07/22/19 21:14,"996 Hill St, Portland, OR 97035" +233234,Bose SoundSport Headphones,1,99.99,07/02/19 08:09,"882 River St, Atlanta, GA 30301" +233235,iPhone,1,700,07/05/19 20:59,"889 West St, San Francisco, CA 94016" +233236,Wired Headphones,2,11.99,07/11/19 04:58,"692 Center St, Seattle, WA 98101" +233237,USB-C Charging Cable,1,11.95,07/23/19 09:58,"279 West St, Austin, TX 73301" +233238,AAA Batteries (4-pack),1,2.99,07/08/19 16:01,"866 Ridge St, New York City, NY 10001" +233239,Macbook Pro Laptop,1,1700,07/19/19 11:19,"108 Washington St, New York City, NY 10001" +233240,Apple Airpods Headphones,1,150,07/02/19 17:58,"236 9th St, Los Angeles, CA 90001" +233241,Wired Headphones,1,11.99,07/12/19 23:19,"937 Park St, Boston, MA 02215" +233242,AA Batteries (4-pack),1,3.84,07/27/19 22:16,"474 Elm St, Los Angeles, CA 90001" +233243,27in 4K Gaming Monitor,1,389.99,07/01/19 21:03,"977 Jefferson St, San Francisco, CA 94016" +233244,Apple Airpods Headphones,1,150,07/04/19 15:33,"879 Lake St, San Francisco, CA 94016" +233245,AA Batteries (4-pack),1,3.84,07/21/19 18:49,"521 Main St, Portland, ME 04101" +233246,iPhone,1,700,07/17/19 10:20,"372 Meadow St, New York City, NY 10001" +233247,USB-C Charging Cable,1,11.95,07/05/19 19:16,"520 13th St, Seattle, WA 98101" +233248,Flatscreen TV,1,300,07/10/19 15:04,"701 13th St, Los Angeles, CA 90001" +233249,AAA Batteries (4-pack),2,2.99,07/21/19 05:14,"519 Adams St, Dallas, TX 75001" +233250,Wired Headphones,1,11.99,07/23/19 13:34,"401 5th St, San Francisco, CA 94016" +233251,AA Batteries (4-pack),1,3.84,07/19/19 13:10,"860 West St, Los Angeles, CA 90001" +233252,27in 4K Gaming Monitor,1,389.99,07/18/19 22:18,"582 11th St, New York City, NY 10001" +233253,27in 4K Gaming Monitor,1,389.99,07/29/19 10:47,"309 Spruce St, Los Angeles, CA 90001" +233254,34in Ultrawide Monitor,1,379.99,07/26/19 18:39,"31 Cedar St, Austin, TX 73301" +233255,AA Batteries (4-pack),1,3.84,07/12/19 13:50,"334 Lake St, New York City, NY 10001" +233256,USB-C Charging Cable,1,11.95,07/01/19 03:40,"516 Hickory St, New York City, NY 10001" +233257,AA Batteries (4-pack),1,3.84,07/22/19 22:54,"934 Maple St, Dallas, TX 75001" +233258,iPhone,1,700,07/17/19 21:57,"335 6th St, Boston, MA 02215" +233259,Lightning Charging Cable,1,14.95,07/01/19 14:12,"662 9th St, Seattle, WA 98101" +233259,Macbook Pro Laptop,1,1700,07/01/19 14:12,"662 9th St, Seattle, WA 98101" +233260,AA Batteries (4-pack),2,3.84,07/09/19 03:22,"861 Sunset St, New York City, NY 10001" +233261,iPhone,1,700,07/16/19 14:59,"671 1st St, Boston, MA 02215" +233262,Apple Airpods Headphones,1,150,07/20/19 19:10,"3 Lake St, Boston, MA 02215" +233263,Bose SoundSport Headphones,1,99.99,07/02/19 00:16,"167 Park St, Portland, OR 97035" +233264,27in FHD Monitor,1,149.99,07/19/19 12:00,"874 South St, Portland, OR 97035" +233265,AAA Batteries (4-pack),1,2.99,07/08/19 13:43,"659 Cedar St, Atlanta, GA 30301" +233266,27in FHD Monitor,1,149.99,07/26/19 12:52,"126 Highland St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +233267,AAA Batteries (4-pack),2,2.99,07/24/19 16:08,"718 Center St, New York City, NY 10001" +233268,Wired Headphones,1,11.99,07/23/19 22:17,"543 13th St, Seattle, WA 98101" +233269,USB-C Charging Cable,1,11.95,07/13/19 11:58,"73 Lake St, Austin, TX 73301" +233270,AAA Batteries (4-pack),2,2.99,07/18/19 10:49,"319 7th St, Los Angeles, CA 90001" +233271,AA Batteries (4-pack),2,3.84,07/08/19 12:16,"855 9th St, New York City, NY 10001" +233272,AAA Batteries (4-pack),1,2.99,07/16/19 10:37,"958 4th St, Austin, TX 73301" +233273,Bose SoundSport Headphones,1,99.99,07/03/19 05:51,"797 Sunset St, Los Angeles, CA 90001" +233274,Wired Headphones,1,11.99,07/25/19 18:28,"115 Ridge St, Los Angeles, CA 90001" +233275,AAA Batteries (4-pack),1,2.99,07/25/19 16:37,"113 10th St, San Francisco, CA 94016" +233276,AA Batteries (4-pack),1,3.84,07/08/19 12:47,"262 6th St, Los Angeles, CA 90001" +233277,AA Batteries (4-pack),2,3.84,07/28/19 15:54,"160 2nd St, Austin, TX 73301" +233278,Wired Headphones,1,11.99,07/02/19 08:35,"985 Hill St, Seattle, WA 98101" +233279,Lightning Charging Cable,2,14.95,07/27/19 13:13,"753 Sunset St, Boston, MA 02215" +233280,20in Monitor,1,109.99,07/28/19 01:21,"124 Lakeview St, Seattle, WA 98101" +233281,AA Batteries (4-pack),1,3.84,07/11/19 10:44,"883 Chestnut St, New York City, NY 10001" +233282,Lightning Charging Cable,1,14.95,07/13/19 14:28,"595 Jackson St, San Francisco, CA 94016" +233283,Apple Airpods Headphones,1,150,07/06/19 21:18,"648 Lake St, San Francisco, CA 94016" +233284,AA Batteries (4-pack),1,3.84,07/05/19 14:49,"111 Wilson St, Boston, MA 02215" +,,,,, +233285,27in FHD Monitor,1,149.99,07/24/19 17:33,"138 River St, Dallas, TX 75001" +233286,AAA Batteries (4-pack),3,2.99,07/28/19 09:54,"440 Sunset St, Dallas, TX 75001" +233287,LG Washing Machine,1,600.0,07/19/19 09:25,"592 Highland St, San Francisco, CA 94016" +233288,20in Monitor,1,109.99,07/29/19 21:58,"128 1st St, Seattle, WA 98101" +233289,AA Batteries (4-pack),1,3.84,07/01/19 16:26,"531 Hickory St, Seattle, WA 98101" +233290,USB-C Charging Cable,1,11.95,07/31/19 00:14,"142 4th St, Dallas, TX 75001" +233291,34in Ultrawide Monitor,1,379.99,07/09/19 08:37,"989 Cedar St, New York City, NY 10001" +233292,Lightning Charging Cable,1,14.95,07/12/19 15:58,"39 Hickory St, Boston, MA 02215" +233293,27in FHD Monitor,1,149.99,07/29/19 17:42,"102 West St, Austin, TX 73301" +233294,34in Ultrawide Monitor,1,379.99,07/05/19 23:52,"620 Chestnut St, San Francisco, CA 94016" +233295,Apple Airpods Headphones,1,150,07/24/19 20:25,"102 Walnut St, Atlanta, GA 30301" +233296,Bose SoundSport Headphones,1,99.99,07/29/19 12:15,"907 Walnut St, Los Angeles, CA 90001" +233297,27in 4K Gaming Monitor,1,389.99,07/02/19 17:27,"469 11th St, San Francisco, CA 94016" +233298,Apple Airpods Headphones,1,150,07/28/19 14:21,"843 Main St, San Francisco, CA 94016" +233299,AAA Batteries (4-pack),1,2.99,07/03/19 15:12,"83 Sunset St, Los Angeles, CA 90001" +233300,Bose SoundSport Headphones,1,99.99,07/02/19 16:42,"205 North St, San Francisco, CA 94016" +233301,Apple Airpods Headphones,1,150,07/02/19 11:17,"148 Forest St, Dallas, TX 75001" +233302,Bose SoundSport Headphones,1,99.99,07/19/19 20:25,"606 14th St, Los Angeles, CA 90001" +233303,Apple Airpods Headphones,1,150,07/07/19 23:06,"2 Pine St, San Francisco, CA 94016" +233304,AA Batteries (4-pack),1,3.84,07/29/19 01:24,"543 Park St, New York City, NY 10001" +233305,20in Monitor,1,109.99,07/07/19 18:12,"573 Chestnut St, Dallas, TX 75001" +233306,AAA Batteries (4-pack),3,2.99,07/19/19 12:41,"759 14th St, San Francisco, CA 94016" +233307,ThinkPad Laptop,1,999.99,07/29/19 08:57,"277 7th St, Boston, MA 02215" +233308,USB-C Charging Cable,1,11.95,07/06/19 10:24,"788 Forest St, Atlanta, GA 30301" +233309,Apple Airpods Headphones,1,150,07/06/19 09:44,"688 Cherry St, Los Angeles, CA 90001" +233310,AAA Batteries (4-pack),1,2.99,07/09/19 19:28,"621 7th St, Boston, MA 02215" +233311,Bose SoundSport Headphones,1,99.99,07/04/19 17:23,"642 Maple St, Boston, MA 02215" +233312,USB-C Charging Cable,1,11.95,07/29/19 19:06,"204 Meadow St, Portland, OR 97035" +233313,Bose SoundSport Headphones,1,99.99,07/10/19 14:15,"928 Center St, San Francisco, CA 94016" +233314,LG Dryer,1,600.0,07/22/19 01:25,"311 River St, San Francisco, CA 94016" +233315,AAA Batteries (4-pack),2,2.99,07/19/19 11:22,"512 Dogwood St, New York City, NY 10001" +233316,Bose SoundSport Headphones,1,99.99,07/29/19 20:18,"207 Washington St, San Francisco, CA 94016" +233317,AA Batteries (4-pack),2,3.84,07/30/19 14:06,"225 Maple St, Boston, MA 02215" +233318,Lightning Charging Cable,1,14.95,07/10/19 13:13,"571 14th St, Portland, OR 97035" +233319,USB-C Charging Cable,1,11.95,07/12/19 20:25,"255 4th St, Los Angeles, CA 90001" +233320,Wired Headphones,1,11.99,07/01/19 21:38,"342 Jefferson St, New York City, NY 10001" +233321,USB-C Charging Cable,1,11.95,07/19/19 05:47,"806 Lake St, Portland, OR 97035" +233322,27in FHD Monitor,1,149.99,07/08/19 22:09,"352 4th St, Atlanta, GA 30301" +233323,AAA Batteries (4-pack),1,2.99,07/18/19 20:17,"640 Main St, Boston, MA 02215" +233324,AAA Batteries (4-pack),1,2.99,07/02/19 12:42,"234 10th St, Los Angeles, CA 90001" +233325,AAA Batteries (4-pack),2,2.99,07/21/19 21:47,"636 Pine St, Seattle, WA 98101" +233326,Lightning Charging Cable,1,14.95,07/07/19 09:17,"818 North St, Boston, MA 02215" +233327,AA Batteries (4-pack),1,3.84,07/28/19 20:38,"522 Center St, San Francisco, CA 94016" +233328,AAA Batteries (4-pack),1,2.99,07/06/19 20:17,"214 10th St, Austin, TX 73301" +233329,Apple Airpods Headphones,1,150,07/13/19 20:22,"584 Highland St, New York City, NY 10001" +233330,Bose SoundSport Headphones,1,99.99,07/16/19 11:31,"278 Pine St, Los Angeles, CA 90001" +233331,Bose SoundSport Headphones,1,99.99,07/06/19 14:26,"239 Johnson St, New York City, NY 10001" +233332,Apple Airpods Headphones,1,150,07/08/19 13:20,"558 Main St, Seattle, WA 98101" +233333,USB-C Charging Cable,1,11.95,07/10/19 17:04,"316 Center St, Austin, TX 73301" +233334,AA Batteries (4-pack),2,3.84,07/27/19 15:38,"339 6th St, New York City, NY 10001" +233335,Lightning Charging Cable,1,14.95,07/02/19 09:05,"716 Spruce St, Los Angeles, CA 90001" +233336,27in FHD Monitor,1,149.99,07/12/19 00:31,"310 Chestnut St, San Francisco, CA 94016" +233337,AAA Batteries (4-pack),1,2.99,07/02/19 11:22,"662 Hickory St, Dallas, TX 75001" +233338,AAA Batteries (4-pack),1,2.99,07/18/19 04:56,"89 Cedar St, San Francisco, CA 94016" +233339,AAA Batteries (4-pack),2,2.99,07/11/19 20:30,"533 10th St, Los Angeles, CA 90001" +233340,iPhone,1,700,07/03/19 09:23,"981 Willow St, San Francisco, CA 94016" +233341,USB-C Charging Cable,1,11.95,07/02/19 23:13,"160 Elm St, Portland, ME 04101" +233342,USB-C Charging Cable,1,11.95,07/08/19 00:34,"569 Lake St, Portland, OR 97035" +233343,LG Washing Machine,1,600.0,07/26/19 01:12,"326 River St, San Francisco, CA 94016" +233344,Lightning Charging Cable,1,14.95,07/12/19 09:54,"635 Maple St, Boston, MA 02215" +233345,Apple Airpods Headphones,1,150,08/01/19 01:10,"520 Johnson St, Austin, TX 73301" +233346,Flatscreen TV,1,300,07/06/19 19:47,"854 Lake St, Dallas, TX 75001" +233347,USB-C Charging Cable,1,11.95,07/08/19 20:54,"530 West St, Portland, OR 97035" +233348,27in FHD Monitor,1,149.99,07/18/19 22:45,"811 Adams St, Los Angeles, CA 90001" +233349,Lightning Charging Cable,1,14.95,07/10/19 22:57,"303 Cherry St, San Francisco, CA 94016" +233350,AAA Batteries (4-pack),1,2.99,07/12/19 20:54,"219 9th St, San Francisco, CA 94016" +233351,Macbook Pro Laptop,1,1700,07/08/19 00:03,"640 Lake St, New York City, NY 10001" +233352,AAA Batteries (4-pack),3,2.99,07/17/19 22:05,"320 Jefferson St, Seattle, WA 98101" +233353,AA Batteries (4-pack),1,3.84,07/25/19 11:11,"625 9th St, Los Angeles, CA 90001" +233354,ThinkPad Laptop,1,999.99,07/02/19 12:48,"277 12th St, Los Angeles, CA 90001" +233355,Macbook Pro Laptop,1,1700,07/25/19 13:23,"940 7th St, San Francisco, CA 94016" +233356,ThinkPad Laptop,1,999.99,07/29/19 18:36,"51 13th St, Boston, MA 02215" +233357,Flatscreen TV,1,300,07/22/19 12:18,"373 North St, San Francisco, CA 94016" +233358,AA Batteries (4-pack),2,3.84,07/27/19 23:44,"767 4th St, Los Angeles, CA 90001" +233359,USB-C Charging Cable,1,11.95,07/30/19 14:29,"5 Jackson St, Portland, OR 97035" +233360,Wired Headphones,1,11.99,07/06/19 16:18,"232 Church St, San Francisco, CA 94016" +233361,Bose SoundSport Headphones,1,99.99,07/30/19 14:11,"272 Maple St, Boston, MA 02215" +233362,Macbook Pro Laptop,1,1700,07/26/19 13:42,"51 10th St, Atlanta, GA 30301" +233363,iPhone,1,700,07/27/19 06:10,"792 12th St, Boston, MA 02215" +233364,34in Ultrawide Monitor,1,379.99,07/24/19 16:09,"321 Washington St, Los Angeles, CA 90001" +233365,Macbook Pro Laptop,1,1700,07/01/19 06:53,"430 Adams St, Portland, OR 97035" +233366,USB-C Charging Cable,1,11.95,07/03/19 20:06,"13 Willow St, Los Angeles, CA 90001" +233367,AA Batteries (4-pack),1,3.84,07/29/19 15:17,"93 2nd St, Austin, TX 73301" +233368,34in Ultrawide Monitor,1,379.99,07/16/19 14:27,"667 Jackson St, San Francisco, CA 94016" +233369,27in FHD Monitor,1,149.99,07/28/19 18:22,"968 Elm St, San Francisco, CA 94016" +233370,Lightning Charging Cable,1,14.95,07/21/19 17:17,"67 North St, New York City, NY 10001" +233371,Macbook Pro Laptop,1,1700,07/27/19 08:26,"34 1st St, Boston, MA 02215" +233372,AA Batteries (4-pack),1,3.84,07/08/19 14:00,"760 10th St, Atlanta, GA 30301" +233373,AAA Batteries (4-pack),1,2.99,07/19/19 17:26,"883 4th St, Seattle, WA 98101" +233374,Wired Headphones,1,11.99,07/24/19 09:02,"66 Washington St, Portland, OR 97035" +233375,27in FHD Monitor,1,149.99,07/05/19 19:26,"440 1st St, San Francisco, CA 94016" +233376,USB-C Charging Cable,1,11.95,07/17/19 12:38,"262 Hill St, Los Angeles, CA 90001" +233377,Lightning Charging Cable,1,14.95,07/16/19 10:57,"519 Meadow St, Los Angeles, CA 90001" +233378,Apple Airpods Headphones,1,150,07/07/19 10:36,"916 North St, Austin, TX 73301" +233379,LG Dryer,1,600.0,07/04/19 11:10,"616 Hickory St, San Francisco, CA 94016" +233380,Wired Headphones,1,11.99,07/10/19 09:59,"855 Cherry St, Portland, OR 97035" +233381,AA Batteries (4-pack),3,3.84,07/26/19 13:38,"52 Church St, Boston, MA 02215" +233382,AAA Batteries (4-pack),2,2.99,07/03/19 12:36,"484 14th St, Seattle, WA 98101" +233383,27in FHD Monitor,1,149.99,07/11/19 11:54,"784 Willow St, Portland, OR 97035" +233384,Lightning Charging Cable,1,14.95,07/16/19 22:24,"771 River St, Dallas, TX 75001" +233385,Bose SoundSport Headphones,1,99.99,07/01/19 16:01,"441 Forest St, San Francisco, CA 94016" +233386,ThinkPad Laptop,1,999.99,07/14/19 19:55,"520 Elm St, Boston, MA 02215" +233387,27in 4K Gaming Monitor,1,389.99,07/14/19 23:15,"422 Johnson St, Los Angeles, CA 90001" +233388,USB-C Charging Cable,1,11.95,07/27/19 20:27,"642 Hickory St, San Francisco, CA 94016" +233389,Apple Airpods Headphones,1,150,07/24/19 10:31,"145 Washington St, New York City, NY 10001" +233390,AAA Batteries (4-pack),1,2.99,07/11/19 21:52,"334 4th St, San Francisco, CA 94016" +233391,USB-C Charging Cable,1,11.95,07/29/19 10:22,"525 9th St, New York City, NY 10001" +233392,USB-C Charging Cable,1,11.95,07/01/19 21:52,"424 Lake St, Los Angeles, CA 90001" +233393,Apple Airpods Headphones,1,150,07/20/19 23:29,"733 Elm St, Los Angeles, CA 90001" +233394,Lightning Charging Cable,1,14.95,07/01/19 18:27,"781 South St, New York City, NY 10001" +233395,USB-C Charging Cable,1,11.95,07/07/19 12:05,"544 10th St, Seattle, WA 98101" +233396,Wired Headphones,1,11.99,07/08/19 17:59,"417 North St, Dallas, TX 75001" +233397,AA Batteries (4-pack),1,3.84,07/22/19 19:27,"219 Johnson St, New York City, NY 10001" +233398,Bose SoundSport Headphones,1,99.99,07/15/19 01:35,"751 Washington St, Atlanta, GA 30301" +233399,iPhone,1,700,07/29/19 23:26,"234 Ridge St, Boston, MA 02215" +233400,AA Batteries (4-pack),1,3.84,07/23/19 16:46,"292 South St, San Francisco, CA 94016" +233401,AAA Batteries (4-pack),2,2.99,07/15/19 21:09,"7 Willow St, Seattle, WA 98101" +233402,Wired Headphones,1,11.99,07/09/19 12:29,"804 10th St, Portland, OR 97035" +233403,27in FHD Monitor,1,149.99,07/09/19 09:02,"641 Lakeview St, Los Angeles, CA 90001" +233404,Apple Airpods Headphones,1,150,07/14/19 20:44,"343 1st St, Seattle, WA 98101" +233405,Apple Airpods Headphones,1,150,07/31/19 19:17,"294 Main St, Dallas, TX 75001" +233406,Apple Airpods Headphones,1,150,07/12/19 13:29,"798 Highland St, San Francisco, CA 94016" +233407,Lightning Charging Cable,1,14.95,07/23/19 11:12,"220 8th St, San Francisco, CA 94016" +233408,Wired Headphones,1,11.99,07/27/19 15:05,"940 4th St, San Francisco, CA 94016" +233409,USB-C Charging Cable,1,11.95,07/24/19 22:52,"385 Pine St, Atlanta, GA 30301" +233410,AAA Batteries (4-pack),1,2.99,07/13/19 20:54,"262 4th St, Los Angeles, CA 90001" +233411,Bose SoundSport Headphones,1,99.99,07/10/19 18:57,"70 South St, Seattle, WA 98101" +233412,iPhone,1,700,07/16/19 19:23,"437 11th St, Los Angeles, CA 90001" +233413,AAA Batteries (4-pack),1,2.99,07/13/19 18:47,"53 Wilson St, Seattle, WA 98101" +233414,Lightning Charging Cable,1,14.95,07/27/19 18:38,"544 Jackson St, New York City, NY 10001" +233415,Wired Headphones,1,11.99,07/22/19 11:58,"800 6th St, Los Angeles, CA 90001" +233416,34in Ultrawide Monitor,1,379.99,07/17/19 13:11,"916 11th St, Atlanta, GA 30301" +233417,Wired Headphones,2,11.99,07/23/19 12:08,"531 Pine St, New York City, NY 10001" +233418,Lightning Charging Cable,1,14.95,07/04/19 18:11,"77 Church St, New York City, NY 10001" +233419,AAA Batteries (4-pack),1,2.99,07/13/19 10:28,"223 Cedar St, San Francisco, CA 94016" +233420,Lightning Charging Cable,1,14.95,07/25/19 15:36,"909 Hill St, Boston, MA 02215" +233421,Wired Headphones,1,11.99,07/31/19 12:41,"575 Main St, San Francisco, CA 94016" +233422,Wired Headphones,2,11.99,07/18/19 17:18,"689 5th St, New York City, NY 10001" +233423,Wired Headphones,1,11.99,07/10/19 16:45,"695 10th St, Boston, MA 02215" +233424,27in FHD Monitor,1,149.99,07/10/19 16:31,"957 North St, Los Angeles, CA 90001" +233425,AA Batteries (4-pack),1,3.84,07/17/19 23:37,"319 11th St, Austin, TX 73301" +233426,Apple Airpods Headphones,1,150,07/02/19 10:38,"485 9th St, Austin, TX 73301" +233427,USB-C Charging Cable,1,11.95,07/14/19 11:30,"77 Washington St, New York City, NY 10001" +233428,27in 4K Gaming Monitor,1,389.99,07/27/19 10:42,"591 5th St, Dallas, TX 75001" +233429,Macbook Pro Laptop,1,1700,07/23/19 20:16,"988 Elm St, San Francisco, CA 94016" +233430,iPhone,1,700,07/16/19 10:07,"719 7th St, Boston, MA 02215" +233431,Google Phone,1,600,07/30/19 15:27,"426 Johnson St, Los Angeles, CA 90001" +233432,Flatscreen TV,1,300,07/17/19 22:46,"42 8th St, Los Angeles, CA 90001" +233433,AAA Batteries (4-pack),3,2.99,07/22/19 10:43,"471 Cedar St, New York City, NY 10001" +233434,Google Phone,1,600,07/24/19 19:58,"337 Park St, Los Angeles, CA 90001" +233434,USB-C Charging Cable,1,11.95,07/24/19 19:58,"337 Park St, Los Angeles, CA 90001" +233435,Bose SoundSport Headphones,1,99.99,07/26/19 22:46,"518 Maple St, Los Angeles, CA 90001" +233436,Apple Airpods Headphones,1,150,07/07/19 15:12,"977 West St, Atlanta, GA 30301" +233437,AA Batteries (4-pack),1,3.84,07/11/19 18:01,"983 13th St, San Francisco, CA 94016" +233438,Apple Airpods Headphones,1,150,07/05/19 20:06,"57 11th St, Dallas, TX 75001" +233439,ThinkPad Laptop,1,999.99,07/23/19 16:54,"328 West St, Austin, TX 73301" +233440,AA Batteries (4-pack),1,3.84,07/21/19 21:55,"509 Highland St, Atlanta, GA 30301" +233441,AAA Batteries (4-pack),5,2.99,07/03/19 10:41,"187 Madison St, Portland, OR 97035" +233442,Wired Headphones,1,11.99,07/03/19 10:03,"34 14th St, San Francisco, CA 94016" +233443,AA Batteries (4-pack),1,3.84,07/12/19 11:00,"281 Cherry St, Austin, TX 73301" +233444,Apple Airpods Headphones,1,150,07/17/19 04:02,"432 Park St, New York City, NY 10001" +233445,USB-C Charging Cable,2,11.95,07/11/19 14:00,"392 Adams St, Boston, MA 02215" +233446,Bose SoundSport Headphones,1,99.99,07/20/19 17:59,"719 Lakeview St, Austin, TX 73301" +233447,AAA Batteries (4-pack),1,2.99,07/11/19 16:42,"63 Ridge St, Boston, MA 02215" +233448,AA Batteries (4-pack),1,3.84,07/14/19 12:16,"775 Lakeview St, Atlanta, GA 30301" +233449,Vareebadd Phone,1,400,07/18/19 17:11,"601 Main St, Los Angeles, CA 90001" +233449,Bose SoundSport Headphones,1,99.99,07/18/19 17:11,"601 Main St, Los Angeles, CA 90001" +233450,AAA Batteries (4-pack),1,2.99,07/11/19 14:39,"198 Wilson St, Dallas, TX 75001" +233451,AA Batteries (4-pack),1,3.84,07/21/19 13:16,"57 Hill St, San Francisco, CA 94016" +233452,AA Batteries (4-pack),4,3.84,07/20/19 13:35,"493 Meadow St, Atlanta, GA 30301" +233453,Bose SoundSport Headphones,1,99.99,07/19/19 12:40,"421 Forest St, New York City, NY 10001" +233454,Vareebadd Phone,1,400,07/26/19 21:55,"617 Forest St, San Francisco, CA 94016" +233455,Flatscreen TV,1,300,07/30/19 22:31,"936 Adams St, San Francisco, CA 94016" +233456,Flatscreen TV,1,300,07/04/19 15:08,"834 Lakeview St, New York City, NY 10001" +233457,USB-C Charging Cable,2,11.95,07/24/19 22:08,"853 7th St, San Francisco, CA 94016" +233458,Apple Airpods Headphones,1,150,07/27/19 00:53,"324 8th St, Atlanta, GA 30301" +233459,AA Batteries (4-pack),2,3.84,07/29/19 21:10,"69 Lincoln St, New York City, NY 10001" +233460,AAA Batteries (4-pack),1,2.99,07/25/19 16:02,"659 Jefferson St, Boston, MA 02215" +233461,AA Batteries (4-pack),1,3.84,07/07/19 17:07,"637 Dogwood St, Atlanta, GA 30301" +233462,AA Batteries (4-pack),1,3.84,07/18/19 13:04,"124 Ridge St, San Francisco, CA 94016" +233463,AAA Batteries (4-pack),1,2.99,07/30/19 14:58,"447 8th St, Dallas, TX 75001" +233464,Google Phone,1,600,07/08/19 16:48,"16 Madison St, Los Angeles, CA 90001" +233464,Bose SoundSport Headphones,1,99.99,07/08/19 16:48,"16 Madison St, Los Angeles, CA 90001" +233465,Wired Headphones,1,11.99,07/17/19 20:51,"974 Jackson St, New York City, NY 10001" +233466,Flatscreen TV,1,300,07/08/19 18:15,"919 Willow St, San Francisco, CA 94016" +233467,Lightning Charging Cable,1,14.95,07/25/19 12:51,"222 Cherry St, San Francisco, CA 94016" +233468,Google Phone,1,600,07/20/19 13:36,"388 Sunset St, Portland, OR 97035" +233469,USB-C Charging Cable,1,11.95,07/01/19 20:18,"559 Highland St, New York City, NY 10001" +233470,Apple Airpods Headphones,1,150,07/03/19 10:28,"279 Dogwood St, Portland, OR 97035" +233471,Lightning Charging Cable,1,14.95,07/01/19 19:04,"427 West St, Atlanta, GA 30301" +233472,USB-C Charging Cable,1,11.95,07/09/19 11:55,"82 Hill St, Atlanta, GA 30301" +233473,Apple Airpods Headphones,1,150,07/02/19 01:29,"397 Jefferson St, Dallas, TX 75001" +233474,AAA Batteries (4-pack),1,2.99,07/30/19 14:41,"947 Lake St, Portland, OR 97035" +233475,iPhone,1,700,07/24/19 09:51,"946 7th St, San Francisco, CA 94016" +233475,Lightning Charging Cable,1,14.95,07/24/19 09:51,"946 7th St, San Francisco, CA 94016" +233476,AAA Batteries (4-pack),1,2.99,07/31/19 13:52,"53 Adams St, San Francisco, CA 94016" +233477,USB-C Charging Cable,1,11.95,07/31/19 12:23,"913 North St, San Francisco, CA 94016" +233478,iPhone,1,700,07/27/19 13:40,"341 8th St, Boston, MA 02215" +233479,USB-C Charging Cable,1,11.95,07/20/19 10:14,"745 7th St, Los Angeles, CA 90001" +233480,Macbook Pro Laptop,1,1700,07/22/19 11:33,"239 Jefferson St, Portland, OR 97035" +233481,Lightning Charging Cable,1,14.95,07/14/19 19:02,"71 Washington St, Dallas, TX 75001" +233482,27in 4K Gaming Monitor,1,389.99,07/24/19 21:26,"584 Chestnut St, Dallas, TX 75001" +233483,27in FHD Monitor,1,149.99,07/22/19 10:23,"723 10th St, New York City, NY 10001" +233484,Lightning Charging Cable,1,14.95,07/28/19 10:40,"698 4th St, Boston, MA 02215" +233485,Macbook Pro Laptop,1,1700,07/16/19 10:08,"572 Pine St, San Francisco, CA 94016" +233486,USB-C Charging Cable,1,11.95,07/03/19 10:28,"13 Cedar St, San Francisco, CA 94016" +233487,ThinkPad Laptop,1,999.99,07/10/19 18:21,"905 Pine St, Portland, OR 97035" +233488,Lightning Charging Cable,1,14.95,07/11/19 18:20,"419 Cedar St, Dallas, TX 75001" +233489,AA Batteries (4-pack),1,3.84,07/05/19 11:23,"378 Church St, San Francisco, CA 94016" +233490,Flatscreen TV,1,300,07/09/19 10:36,"257 9th St, Atlanta, GA 30301" +233491,Bose SoundSport Headphones,1,99.99,07/10/19 15:45,"578 Church St, San Francisco, CA 94016" +233492,27in FHD Monitor,1,149.99,07/02/19 19:33,"849 Maple St, San Francisco, CA 94016" +233493,AAA Batteries (4-pack),1,2.99,07/24/19 17:48,"360 Willow St, San Francisco, CA 94016" +233494,Bose SoundSport Headphones,1,99.99,07/31/19 14:37,"280 Hickory St, Dallas, TX 75001" +233495,Vareebadd Phone,1,400,07/10/19 12:33,"565 Church St, Dallas, TX 75001" +233496,AAA Batteries (4-pack),2,2.99,07/20/19 09:42,"282 Jefferson St, Atlanta, GA 30301" +233497,Wired Headphones,1,11.99,07/02/19 15:42,"937 Adams St, San Francisco, CA 94016" +233498,USB-C Charging Cable,1,11.95,07/09/19 23:17,"717 13th St, Boston, MA 02215" +233499,Macbook Pro Laptop,1,1700,07/29/19 14:47,"746 Pine St, Los Angeles, CA 90001" +233500,Lightning Charging Cable,1,14.95,07/13/19 20:00,"503 Jefferson St, San Francisco, CA 94016" +233501,Lightning Charging Cable,1,14.95,07/21/19 08:32,"748 Main St, Dallas, TX 75001" +233502,AAA Batteries (4-pack),2,2.99,07/10/19 21:19,"812 Church St, Austin, TX 73301" +233503,Bose SoundSport Headphones,1,99.99,07/06/19 11:01,"637 Adams St, Portland, OR 97035" +233504,27in FHD Monitor,1,149.99,07/04/19 11:18,"672 4th St, Boston, MA 02215" +233505,AA Batteries (4-pack),1,3.84,07/16/19 20:39,"437 Chestnut St, Portland, ME 04101" +233506,Bose SoundSport Headphones,1,99.99,07/03/19 18:18,"156 Lincoln St, New York City, NY 10001" +233507,AA Batteries (4-pack),2,3.84,07/14/19 17:05,"862 Spruce St, Boston, MA 02215" +233508,Apple Airpods Headphones,1,150,07/24/19 03:45,"796 Hickory St, San Francisco, CA 94016" +233509,AA Batteries (4-pack),2,3.84,07/04/19 08:46,"206 Hickory St, Los Angeles, CA 90001" +233510,USB-C Charging Cable,1,11.95,07/07/19 15:35,"207 Adams St, New York City, NY 10001" +233511,Apple Airpods Headphones,1,150,07/21/19 17:57,"760 Johnson St, Los Angeles, CA 90001" +233512,AA Batteries (4-pack),1,3.84,07/29/19 15:49,"347 Jackson St, Los Angeles, CA 90001" +233513,Wired Headphones,1,11.99,07/21/19 18:38,"294 Forest St, Los Angeles, CA 90001" +233514,Wired Headphones,1,11.99,07/28/19 18:45,"858 Dogwood St, San Francisco, CA 94016" +233515,iPhone,1,700,07/08/19 16:26,"379 7th St, Los Angeles, CA 90001" +233516,27in 4K Gaming Monitor,1,389.99,07/24/19 19:17,"111 Adams St, Los Angeles, CA 90001" +233517,27in 4K Gaming Monitor,1,389.99,07/18/19 17:01,"165 Spruce St, Atlanta, GA 30301" +233518,AA Batteries (4-pack),2,3.84,07/25/19 03:57,"611 7th St, San Francisco, CA 94016" +233519,Bose SoundSport Headphones,1,99.99,07/04/19 11:10,"146 1st St, San Francisco, CA 94016" +233520,AAA Batteries (4-pack),2,2.99,07/06/19 18:20,"39 4th St, Seattle, WA 98101" +233521,Bose SoundSport Headphones,1,99.99,07/05/19 11:46,"816 Jackson St, Portland, OR 97035" +233522,Lightning Charging Cable,1,14.95,08/01/19 01:14,"667 Pine St, New York City, NY 10001" +233523,ThinkPad Laptop,1,999.99,07/25/19 13:46,"990 11th St, New York City, NY 10001" +233524,AA Batteries (4-pack),1,3.84,07/29/19 17:35,"174 West St, Los Angeles, CA 90001" +233525,Wired Headphones,1,11.99,07/06/19 21:02,"367 Hickory St, Los Angeles, CA 90001" +233526,Bose SoundSport Headphones,1,99.99,07/07/19 22:15,"190 North St, Los Angeles, CA 90001" +233527,iPhone,1,700,07/16/19 08:21,"318 Pine St, Los Angeles, CA 90001" +233528,USB-C Charging Cable,1,11.95,07/18/19 23:51,"973 River St, Los Angeles, CA 90001" +233529,Macbook Pro Laptop,1,1700,07/31/19 10:48,"550 Walnut St, Seattle, WA 98101" +233530,Wired Headphones,1,11.99,07/13/19 07:30,"250 Park St, San Francisco, CA 94016" +233531,Lightning Charging Cable,1,14.95,07/24/19 19:21,"960 Ridge St, Boston, MA 02215" +233532,Apple Airpods Headphones,1,150,07/31/19 11:32,"519 Madison St, San Francisco, CA 94016" +233533,Wired Headphones,1,11.99,07/01/19 15:25,"129 North St, Portland, ME 04101" +233534,Google Phone,1,600,07/28/19 16:09,"367 Meadow St, Los Angeles, CA 90001" +233535,USB-C Charging Cable,2,11.95,07/29/19 08:13,"522 6th St, New York City, NY 10001" +233536,Lightning Charging Cable,2,14.95,07/22/19 15:44,"524 Lincoln St, Los Angeles, CA 90001" +233537,Lightning Charging Cable,1,14.95,07/12/19 12:12,"31 Sunset St, Seattle, WA 98101" +233538,Macbook Pro Laptop,1,1700,07/21/19 19:59,"480 Wilson St, San Francisco, CA 94016" +233539,Apple Airpods Headphones,1,150,07/03/19 10:02,"670 Jefferson St, Los Angeles, CA 90001" +233540,Bose SoundSport Headphones,1,99.99,07/14/19 13:24,"133 5th St, Los Angeles, CA 90001" +233541,Lightning Charging Cable,1,14.95,07/01/19 11:43,"478 1st St, Los Angeles, CA 90001" +233542,ThinkPad Laptop,1,999.99,07/18/19 21:55,"122 Lake St, Los Angeles, CA 90001" +233543,Apple Airpods Headphones,1,150,07/10/19 15:22,"342 Washington St, San Francisco, CA 94016" +233544,27in 4K Gaming Monitor,1,389.99,07/18/19 10:22,"419 9th St, Dallas, TX 75001" +233545,Macbook Pro Laptop,1,1700,08/01/19 00:19,"504 5th St, San Francisco, CA 94016" +233546,AAA Batteries (4-pack),1,2.99,07/01/19 22:07,"858 13th St, Austin, TX 73301" +233547,Bose SoundSport Headphones,1,99.99,07/17/19 13:49,"919 4th St, Austin, TX 73301" +233548,USB-C Charging Cable,1,11.95,07/10/19 11:37,"704 Walnut St, Boston, MA 02215" +233549,Bose SoundSport Headphones,1,99.99,07/03/19 09:05,"645 Hill St, Seattle, WA 98101" +233550,Google Phone,1,600,07/26/19 12:05,"532 Lincoln St, Seattle, WA 98101" +233550,USB-C Charging Cable,1,11.95,07/26/19 12:05,"532 Lincoln St, Seattle, WA 98101" +233551,Apple Airpods Headphones,1,150,07/02/19 22:48,"583 Wilson St, Dallas, TX 75001" +233552,AA Batteries (4-pack),1,3.84,07/25/19 22:05,"660 Jackson St, San Francisco, CA 94016" +233553,Lightning Charging Cable,1,14.95,07/22/19 20:12,"117 West St, Los Angeles, CA 90001" +233554,AA Batteries (4-pack),2,3.84,07/14/19 20:52,"819 Park St, Los Angeles, CA 90001" +233555,Wired Headphones,1,11.99,07/10/19 17:11,"519 Adams St, Atlanta, GA 30301" +233556,AA Batteries (4-pack),2,3.84,07/09/19 22:24,"209 Church St, New York City, NY 10001" +233557,Lightning Charging Cable,1,14.95,07/22/19 21:03,"695 Cedar St, New York City, NY 10001" +233558,AAA Batteries (4-pack),3,2.99,07/25/19 11:00,"801 Ridge St, Portland, ME 04101" +233559,Google Phone,1,600,07/14/19 21:59,"19 12th St, San Francisco, CA 94016" +233560,iPhone,1,700,07/28/19 15:14,"211 Cherry St, New York City, NY 10001" +233561,AA Batteries (4-pack),1,3.84,07/12/19 20:34,"760 Church St, San Francisco, CA 94016" +233562,Lightning Charging Cable,1,14.95,07/31/19 12:07,"570 Park St, San Francisco, CA 94016" +233563,Apple Airpods Headphones,1,150,07/13/19 13:12,"421 West St, San Francisco, CA 94016" +233564,Wired Headphones,1,11.99,07/01/19 21:59,"684 Cherry St, San Francisco, CA 94016" +233565,Apple Airpods Headphones,1,150,07/04/19 16:03,"697 Dogwood St, San Francisco, CA 94016" +233566,Apple Airpods Headphones,1,150,07/07/19 21:47,"896 South St, Los Angeles, CA 90001" +233567,Lightning Charging Cable,1,14.95,07/03/19 07:19,"575 2nd St, San Francisco, CA 94016" +233568,27in 4K Gaming Monitor,1,389.99,07/01/19 17:45,"360 Sunset St, Portland, OR 97035" +233569,AAA Batteries (4-pack),1,2.99,07/23/19 19:26,"421 Madison St, San Francisco, CA 94016" +233570,27in FHD Monitor,1,149.99,07/16/19 08:27,"228 Church St, Portland, OR 97035" +233571,Wired Headphones,1,11.99,07/28/19 20:19,"936 Adams St, San Francisco, CA 94016" +233572,34in Ultrawide Monitor,1,379.99,07/13/19 19:43,"633 13th St, San Francisco, CA 94016" +233573,Wired Headphones,1,11.99,07/26/19 13:40,"482 Walnut St, Austin, TX 73301" +233574,iPhone,1,700,07/16/19 13:00,"735 West St, Boston, MA 02215" +233574,LG Dryer,1,600.0,07/16/19 13:00,"735 West St, Boston, MA 02215" +233575,Flatscreen TV,1,300,07/26/19 15:11,"861 Maple St, Boston, MA 02215" +233576,Lightning Charging Cable,1,14.95,07/31/19 11:45,"946 Jefferson St, New York City, NY 10001" +233577,AAA Batteries (4-pack),1,2.99,07/28/19 17:17,"463 Walnut St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +233578,AA Batteries (4-pack),1,3.84,07/20/19 14:36,"498 Spruce St, San Francisco, CA 94016" +233579,27in FHD Monitor,1,149.99,07/25/19 22:00,"83 West St, Seattle, WA 98101" +233580,AAA Batteries (4-pack),2,2.99,07/26/19 12:23,"396 Elm St, Dallas, TX 75001" +233581,Wired Headphones,1,11.99,07/20/19 13:33,"417 South St, Los Angeles, CA 90001" +233582,Apple Airpods Headphones,1,150,07/07/19 00:26,"804 Chestnut St, Boston, MA 02215" +233583,Macbook Pro Laptop,1,1700,07/28/19 14:54,"532 12th St, Boston, MA 02215" +233584,Apple Airpods Headphones,1,150,07/23/19 12:38,"988 Spruce St, Boston, MA 02215" +233585,Bose SoundSport Headphones,1,99.99,07/20/19 14:24,"546 Lincoln St, San Francisco, CA 94016" +233586,LG Washing Machine,1,600.0,07/02/19 13:23,"593 Sunset St, Los Angeles, CA 90001" +233587,iPhone,1,700,07/11/19 21:50,"147 8th St, Los Angeles, CA 90001" +233587,Lightning Charging Cable,3,14.95,07/11/19 21:50,"147 8th St, Los Angeles, CA 90001" +233588,Wired Headphones,1,11.99,07/21/19 17:41,"817 Jefferson St, New York City, NY 10001" +233589,Flatscreen TV,1,300,07/25/19 15:11,"735 Lincoln St, Portland, OR 97035" +233590,Lightning Charging Cable,1,14.95,07/29/19 21:12,"944 West St, Boston, MA 02215" +233591,Apple Airpods Headphones,1,150,07/18/19 18:52,"903 Chestnut St, Boston, MA 02215" +233592,AAA Batteries (4-pack),1,2.99,07/03/19 22:29,"874 Jefferson St, Boston, MA 02215" +233593,Flatscreen TV,1,300,07/31/19 19:21,"573 Ridge St, San Francisco, CA 94016" +233594,AAA Batteries (4-pack),1,2.99,07/29/19 13:41,"29 Main St, San Francisco, CA 94016" +233595,AAA Batteries (4-pack),3,2.99,07/19/19 09:58,"368 Dogwood St, New York City, NY 10001" +233596,Apple Airpods Headphones,1,150,07/05/19 11:05,"644 Cedar St, San Francisco, CA 94016" +233597,20in Monitor,1,109.99,07/09/19 16:37,"262 Chestnut St, Dallas, TX 75001" +233598,Apple Airpods Headphones,1,150,07/03/19 16:40,"643 5th St, Boston, MA 02215" +233599,Wired Headphones,1,11.99,07/17/19 16:51,"519 River St, Los Angeles, CA 90001" +233600,27in 4K Gaming Monitor,1,389.99,07/10/19 06:27,"452 Forest St, Austin, TX 73301" +233601,AAA Batteries (4-pack),2,2.99,07/28/19 10:41,"76 Sunset St, San Francisco, CA 94016" +233602,AAA Batteries (4-pack),2,2.99,07/29/19 23:13,"40 Willow St, Los Angeles, CA 90001" +233603,AAA Batteries (4-pack),2,2.99,07/21/19 09:58,"379 10th St, New York City, NY 10001" +233604,AAA Batteries (4-pack),1,2.99,07/21/19 20:13,"636 Main St, New York City, NY 10001" +233605,Lightning Charging Cable,1,14.95,07/30/19 22:05,"683 Elm St, Los Angeles, CA 90001" +233606,Wired Headphones,1,11.99,07/03/19 21:16,"406 Maple St, Seattle, WA 98101" +233607,AA Batteries (4-pack),1,3.84,07/30/19 07:00,"296 Elm St, San Francisco, CA 94016" +233608,AAA Batteries (4-pack),3,2.99,07/11/19 18:20,"437 West St, Los Angeles, CA 90001" +233609,34in Ultrawide Monitor,1,379.99,07/05/19 14:13,"365 Park St, Dallas, TX 75001" +233610,AAA Batteries (4-pack),4,2.99,07/29/19 18:40,"971 9th St, San Francisco, CA 94016" +233611,Apple Airpods Headphones,1,150,07/02/19 12:09,"15 Highland St, San Francisco, CA 94016" +233612,Bose SoundSport Headphones,1,99.99,07/14/19 11:10,"537 Washington St, Portland, OR 97035" +233613,20in Monitor,1,109.99,07/04/19 00:51,"72 4th St, New York City, NY 10001" +233614,Wired Headphones,1,11.99,07/20/19 13:14,"760 14th St, New York City, NY 10001" +233615,Apple Airpods Headphones,1,150,07/28/19 21:21,"263 Madison St, San Francisco, CA 94016" +233616,USB-C Charging Cable,1,11.95,07/13/19 19:36,"16 5th St, Portland, OR 97035" +233617,Apple Airpods Headphones,1,150,07/12/19 13:42,"632 9th St, Boston, MA 02215" +233618,Wired Headphones,1,11.99,07/10/19 14:11,"669 Church St, New York City, NY 10001" +233619,Wired Headphones,1,11.99,07/04/19 21:09,"664 Elm St, Los Angeles, CA 90001" +233620,Lightning Charging Cable,1,14.95,07/07/19 12:16,"911 Meadow St, Boston, MA 02215" +233621,AAA Batteries (4-pack),1,2.99,07/02/19 13:07,"725 Lakeview St, Austin, TX 73301" +233622,AA Batteries (4-pack),1,3.84,07/09/19 17:13,"342 North St, Portland, OR 97035" +233623,27in FHD Monitor,1,149.99,07/05/19 12:07,"367 8th St, Los Angeles, CA 90001" +233624,20in Monitor,1,109.99,07/05/19 14:00,"224 Highland St, Los Angeles, CA 90001" +233625,Lightning Charging Cable,1,14.95,07/26/19 14:47,"972 Lakeview St, San Francisco, CA 94016" +233626,AA Batteries (4-pack),1,3.84,07/28/19 18:58,"882 Main St, New York City, NY 10001" +233627,Flatscreen TV,1,300,07/29/19 14:29,"669 5th St, Atlanta, GA 30301" +233628,USB-C Charging Cable,1,11.95,07/01/19 10:25,"842 Hill St, Atlanta, GA 30301" +233629,AAA Batteries (4-pack),1,2.99,07/21/19 14:48,"554 Maple St, New York City, NY 10001" +233630,Lightning Charging Cable,1,14.95,07/05/19 08:37,"272 South St, San Francisco, CA 94016" +233631,Flatscreen TV,1,300,07/04/19 14:22,"450 6th St, San Francisco, CA 94016" +233632,20in Monitor,1,109.99,07/10/19 13:16,"82 7th St, Dallas, TX 75001" +233633,Lightning Charging Cable,2,14.95,07/25/19 07:49,"568 Jackson St, San Francisco, CA 94016" +233634,Apple Airpods Headphones,1,150,07/31/19 18:51,"262 Chestnut St, San Francisco, CA 94016" +233635,Bose SoundSport Headphones,1,99.99,07/16/19 12:35,"291 Johnson St, Boston, MA 02215" +233636,Wired Headphones,2,11.99,07/18/19 17:18,"790 Cedar St, New York City, NY 10001" +233637,Lightning Charging Cable,1,14.95,07/10/19 22:25,"919 Jackson St, San Francisco, CA 94016" +233638,AA Batteries (4-pack),2,3.84,07/14/19 11:20,"926 6th St, San Francisco, CA 94016" +233639,AA Batteries (4-pack),1,3.84,07/29/19 12:54,"745 2nd St, Atlanta, GA 30301" +233640,Wired Headphones,1,11.99,07/09/19 09:29,"32 Chestnut St, Dallas, TX 75001" +233641,AA Batteries (4-pack),1,3.84,07/18/19 12:30,"152 13th St, Los Angeles, CA 90001" +233642,Wired Headphones,1,11.99,07/04/19 11:42,"585 Wilson St, San Francisco, CA 94016" +233643,AA Batteries (4-pack),1,3.84,07/23/19 17:29,"694 Johnson St, Los Angeles, CA 90001" +233644,Lightning Charging Cable,1,14.95,07/06/19 14:15,"406 Chestnut St, Dallas, TX 75001" +233645,Apple Airpods Headphones,1,150,07/17/19 14:52,"145 Dogwood St, Los Angeles, CA 90001" +233646,USB-C Charging Cable,1,11.95,07/15/19 14:50,"315 Lakeview St, Atlanta, GA 30301" +233647,34in Ultrawide Monitor,1,379.99,07/10/19 22:07,"313 13th St, Dallas, TX 75001" +233648,AAA Batteries (4-pack),1,2.99,07/24/19 11:24,"189 1st St, Seattle, WA 98101" +233649,34in Ultrawide Monitor,1,379.99,07/29/19 17:31,"907 Wilson St, New York City, NY 10001" +233650,iPhone,1,700,07/19/19 22:11,"681 4th St, Seattle, WA 98101" +233650,Lightning Charging Cable,1,14.95,07/19/19 22:11,"681 4th St, Seattle, WA 98101" +233651,AAA Batteries (4-pack),1,2.99,07/29/19 18:42,"193 9th St, Boston, MA 02215" +233652,Wired Headphones,1,11.99,07/30/19 13:04,"425 9th St, Boston, MA 02215" +233653,AA Batteries (4-pack),2,3.84,07/07/19 07:18,"876 Adams St, New York City, NY 10001" +233654,Lightning Charging Cable,1,14.95,07/18/19 22:35,"639 Walnut St, Boston, MA 02215" +233655,Flatscreen TV,1,300,07/17/19 13:32,"571 11th St, Dallas, TX 75001" +233656,Wired Headphones,1,11.99,07/07/19 08:36,"581 Park St, Seattle, WA 98101" +233657,Flatscreen TV,1,300,07/07/19 21:14,"375 12th St, Boston, MA 02215" +233658,Vareebadd Phone,1,400,07/03/19 17:37,"943 7th St, Boston, MA 02215" +233659,AAA Batteries (4-pack),1,2.99,07/02/19 17:14,"378 5th St, San Francisco, CA 94016" +233659,Wired Headphones,2,11.99,07/02/19 17:14,"378 5th St, San Francisco, CA 94016" +233660,Lightning Charging Cable,1,14.95,07/18/19 16:17,"240 14th St, Los Angeles, CA 90001" +233661,Wired Headphones,1,11.99,07/04/19 16:40,"260 8th St, Portland, ME 04101" +233662,Wired Headphones,1,11.99,07/24/19 23:25,"520 North St, Los Angeles, CA 90001" +233663,Wired Headphones,1,11.99,07/08/19 08:10,"24 8th St, San Francisco, CA 94016" +233664,USB-C Charging Cable,1,11.95,07/12/19 13:49,"69 Spruce St, Atlanta, GA 30301" +233665,USB-C Charging Cable,1,11.95,07/03/19 16:24,"618 Park St, Los Angeles, CA 90001" +233666,LG Dryer,1,600.0,07/10/19 11:49,"551 Pine St, San Francisco, CA 94016" +233667,Lightning Charging Cable,1,14.95,07/28/19 16:08,"103 Lincoln St, San Francisco, CA 94016" +233668,Lightning Charging Cable,1,14.95,07/24/19 12:54,"689 Jefferson St, New York City, NY 10001" +233669,Lightning Charging Cable,1,14.95,07/14/19 22:07,"897 8th St, San Francisco, CA 94016" +233670,AA Batteries (4-pack),1,3.84,07/11/19 19:07,"141 1st St, Dallas, TX 75001" +233671,Bose SoundSport Headphones,1,99.99,07/07/19 23:40,"652 Cedar St, New York City, NY 10001" +233672,Wired Headphones,1,11.99,07/12/19 22:38,"876 Chestnut St, Boston, MA 02215" +233673,Apple Airpods Headphones,1,150,07/02/19 12:12,"203 Lincoln St, San Francisco, CA 94016" +233674,Wired Headphones,1,11.99,07/09/19 13:23,"666 Pine St, New York City, NY 10001" +233675,34in Ultrawide Monitor,1,379.99,07/05/19 19:04,"688 8th St, Atlanta, GA 30301" +233676,Lightning Charging Cable,1,14.95,07/21/19 05:55,"177 Center St, Boston, MA 02215" +233677,AA Batteries (4-pack),1,3.84,07/03/19 22:01,"168 West St, Austin, TX 73301" +233678,AA Batteries (4-pack),2,3.84,07/17/19 15:00,"762 Sunset St, Boston, MA 02215" +233679,Apple Airpods Headphones,1,150,07/20/19 11:48,"320 Pine St, Portland, OR 97035" +233680,Apple Airpods Headphones,1,150,07/03/19 12:47,"306 11th St, New York City, NY 10001" +233681,USB-C Charging Cable,2,11.95,07/21/19 15:37,"558 Highland St, New York City, NY 10001" +233681,20in Monitor,1,109.99,07/21/19 15:37,"558 Highland St, New York City, NY 10001" +233682,AA Batteries (4-pack),1,3.84,07/27/19 12:12,"560 Main St, Boston, MA 02215" +233683,Bose SoundSport Headphones,1,99.99,07/08/19 15:26,"421 North St, Dallas, TX 75001" +233684,Lightning Charging Cable,1,14.95,07/23/19 14:29,"590 Park St, New York City, NY 10001" +233685,Apple Airpods Headphones,1,150,07/07/19 22:24,"878 Sunset St, Los Angeles, CA 90001" +233686,Wired Headphones,1,11.99,07/13/19 10:04,"602 6th St, Austin, TX 73301" +233687,27in FHD Monitor,1,149.99,07/01/19 20:27,"461 2nd St, New York City, NY 10001" +233688,Lightning Charging Cable,1,14.95,07/01/19 08:32,"103 1st St, San Francisco, CA 94016" +233689,AA Batteries (4-pack),1,3.84,07/16/19 11:31,"93 Cherry St, San Francisco, CA 94016" +233690,Wired Headphones,1,11.99,07/18/19 13:49,"145 Maple St, San Francisco, CA 94016" +233691,Lightning Charging Cable,1,14.95,07/20/19 06:46,"424 Dogwood St, Los Angeles, CA 90001" +233692,iPhone,1,700,07/31/19 08:26,"252 Adams St, Atlanta, GA 30301" +233693,AAA Batteries (4-pack),1,2.99,07/02/19 09:20,"969 12th St, San Francisco, CA 94016" +233694,AAA Batteries (4-pack),1,2.99,07/02/19 17:27,"716 Ridge St, Boston, MA 02215" +233695,AAA Batteries (4-pack),2,2.99,07/23/19 22:17,"443 Elm St, San Francisco, CA 94016" +233696,Apple Airpods Headphones,1,150,07/27/19 21:13,"609 River St, Atlanta, GA 30301" +233697,34in Ultrawide Monitor,1,379.99,07/20/19 13:28,"723 Center St, Seattle, WA 98101" +233698,Bose SoundSport Headphones,1,99.99,07/22/19 17:19,"75 4th St, San Francisco, CA 94016" +233699,Lightning Charging Cable,1,14.95,07/13/19 13:42,"752 Cedar St, Los Angeles, CA 90001" +233700,Bose SoundSport Headphones,1,99.99,07/31/19 16:00,"777 Maple St, San Francisco, CA 94016" +233701,Wired Headphones,1,11.99,07/23/19 12:27,"847 Sunset St, New York City, NY 10001" +233702,AA Batteries (4-pack),1,3.84,07/05/19 10:55,"382 Spruce St, San Francisco, CA 94016" +233703,AAA Batteries (4-pack),3,2.99,07/14/19 02:59,"159 Maple St, San Francisco, CA 94016" +233704,Vareebadd Phone,1,400,07/28/19 17:25,"469 Main St, Atlanta, GA 30301" +233705,Wired Headphones,1,11.99,07/20/19 19:22,"153 Forest St, Los Angeles, CA 90001" +233706,iPhone,1,700,07/09/19 17:54,"272 River St, Los Angeles, CA 90001" +233707,AA Batteries (4-pack),1,3.84,07/05/19 16:14,"617 North St, Los Angeles, CA 90001" +233708,USB-C Charging Cable,1,11.95,07/21/19 14:30,"470 Hill St, Los Angeles, CA 90001" +233709,Wired Headphones,1,11.99,07/08/19 04:52,"132 11th St, Boston, MA 02215" +233710,Bose SoundSport Headphones,1,99.99,07/10/19 03:07,"562 Cedar St, San Francisco, CA 94016" +233711,Lightning Charging Cable,1,14.95,07/02/19 15:32,"568 Hill St, Boston, MA 02215" +233712,AAA Batteries (4-pack),1,2.99,07/24/19 17:53,"657 Willow St, San Francisco, CA 94016" +233713,USB-C Charging Cable,1,11.95,07/06/19 11:43,"6 Ridge St, New York City, NY 10001" +233714,AAA Batteries (4-pack),2,2.99,07/29/19 10:57,"686 Walnut St, Boston, MA 02215" +233715,Vareebadd Phone,1,400,07/26/19 11:49,"479 9th St, Los Angeles, CA 90001" +233716,USB-C Charging Cable,1,11.95,07/27/19 17:13,"343 Maple St, San Francisco, CA 94016" +233717,Lightning Charging Cable,2,14.95,07/03/19 17:12,"867 11th St, New York City, NY 10001" +233718,Apple Airpods Headphones,1,150,07/20/19 20:15,"192 Hickory St, San Francisco, CA 94016" +233719,AAA Batteries (4-pack),1,2.99,07/28/19 18:31,"433 Forest St, Portland, OR 97035" +233720,Apple Airpods Headphones,1,150,07/01/19 10:23,"874 Highland St, Seattle, WA 98101" +233721,USB-C Charging Cable,1,11.95,07/30/19 15:02,"823 Lincoln St, New York City, NY 10001" +233722,AAA Batteries (4-pack),2,2.99,07/23/19 20:51,"441 Lincoln St, San Francisco, CA 94016" +233723,Bose SoundSport Headphones,1,99.99,07/07/19 20:36,"169 11th St, Dallas, TX 75001" +233724,Bose SoundSport Headphones,1,99.99,07/11/19 09:28,"534 Forest St, Atlanta, GA 30301" +233725,27in 4K Gaming Monitor,1,389.99,07/16/19 16:50,"944 1st St, Dallas, TX 75001" +233726,Macbook Pro Laptop,1,1700,07/31/19 16:08,"165 9th St, Los Angeles, CA 90001" +233727,AA Batteries (4-pack),2,3.84,07/17/19 12:30,"461 Washington St, Seattle, WA 98101" +233728,Wired Headphones,1,11.99,07/26/19 12:45,"204 Church St, Dallas, TX 75001" +233729,27in FHD Monitor,1,149.99,07/23/19 07:11,"265 10th St, Portland, ME 04101" +233730,AA Batteries (4-pack),1,3.84,07/03/19 23:33,"714 Ridge St, Los Angeles, CA 90001" +233731,USB-C Charging Cable,1,11.95,07/09/19 08:23,"680 South St, Los Angeles, CA 90001" +233732,Apple Airpods Headphones,1,150,07/17/19 12:12,"520 Lake St, San Francisco, CA 94016" +233733,34in Ultrawide Monitor,1,379.99,07/16/19 06:49,"137 11th St, New York City, NY 10001" +233734,AA Batteries (4-pack),1,3.84,07/20/19 09:13,"45 Dogwood St, San Francisco, CA 94016" +233735,Apple Airpods Headphones,1,150,07/10/19 11:50,"432 Willow St, Portland, OR 97035" +233736,27in 4K Gaming Monitor,1,389.99,07/12/19 18:58,"844 Dogwood St, New York City, NY 10001" +233737,Google Phone,1,600,07/11/19 23:56,"366 Church St, Austin, TX 73301" +233738,20in Monitor,1,109.99,07/12/19 19:17,"947 Chestnut St, Los Angeles, CA 90001" +233739,Vareebadd Phone,1,400,07/14/19 15:37,"731 Dogwood St, Portland, OR 97035" +233740,Bose SoundSport Headphones,1,99.99,07/24/19 00:27,"699 Adams St, New York City, NY 10001" +233741,Lightning Charging Cable,1,14.95,07/07/19 14:04,"579 West St, San Francisco, CA 94016" +233742,Bose SoundSport Headphones,1,99.99,07/24/19 19:15,"328 Jackson St, Dallas, TX 75001" +233743,USB-C Charging Cable,1,11.95,07/18/19 10:52,"506 4th St, San Francisco, CA 94016" +233744,20in Monitor,1,109.99,07/12/19 08:35,"364 Chestnut St, Portland, OR 97035" +233745,USB-C Charging Cable,1,11.95,07/21/19 20:01,"415 Madison St, Dallas, TX 75001" +233746,Bose SoundSport Headphones,1,99.99,07/30/19 17:41,"62 9th St, Portland, ME 04101" +233747,Apple Airpods Headphones,1,150,07/03/19 10:44,"590 Walnut St, San Francisco, CA 94016" +233748,Macbook Pro Laptop,1,1700,07/03/19 09:52,"596 Walnut St, Los Angeles, CA 90001" +233749,AAA Batteries (4-pack),2,2.99,07/12/19 18:00,"995 Meadow St, Dallas, TX 75001" +233750,AA Batteries (4-pack),1,3.84,07/15/19 15:03,"241 Ridge St, San Francisco, CA 94016" +233751,Lightning Charging Cable,1,14.95,07/15/19 16:55,"79 Dogwood St, San Francisco, CA 94016" +233752,AAA Batteries (4-pack),1,2.99,07/26/19 21:53,"721 Church St, Dallas, TX 75001" +233753,Wired Headphones,1,11.99,07/30/19 10:03,"528 Dogwood St, San Francisco, CA 94016" +233754,27in 4K Gaming Monitor,1,389.99,07/11/19 20:04,"747 9th St, Austin, TX 73301" +233755,USB-C Charging Cable,1,11.95,07/25/19 18:12,"224 Hickory St, Los Angeles, CA 90001" +233756,USB-C Charging Cable,1,11.95,07/29/19 21:38,"602 Johnson St, Boston, MA 02215" +233757,Wired Headphones,1,11.99,07/22/19 13:52,"456 Cedar St, Los Angeles, CA 90001" +233758,Bose SoundSport Headphones,1,99.99,07/27/19 18:20,"232 12th St, Dallas, TX 75001" +233759,Lightning Charging Cable,1,14.95,07/01/19 10:15,"335 North St, Portland, OR 97035" +233760,Flatscreen TV,1,300,07/23/19 09:22,"600 4th St, Dallas, TX 75001" +233761,Bose SoundSport Headphones,1,99.99,07/27/19 11:46,"215 14th St, Boston, MA 02215" +233762,LG Dryer,1,600.0,07/01/19 23:02,"512 Lakeview St, Portland, OR 97035" +233763,Macbook Pro Laptop,1,1700,07/29/19 16:56,"893 Church St, Boston, MA 02215" +233764,34in Ultrawide Monitor,1,379.99,07/26/19 07:52,"846 7th St, San Francisco, CA 94016" +233765,AAA Batteries (4-pack),1,2.99,07/05/19 11:20,"675 Willow St, Los Angeles, CA 90001" +233766,AA Batteries (4-pack),1,3.84,07/15/19 21:03,"910 Maple St, New York City, NY 10001" +233767,Bose SoundSport Headphones,1,99.99,07/26/19 23:27,"1 5th St, Boston, MA 02215" +233768,Wired Headphones,1,11.99,07/27/19 15:38,"444 13th St, Los Angeles, CA 90001" +233769,20in Monitor,1,109.99,07/15/19 10:29,"784 2nd St, Portland, OR 97035" +233770,Google Phone,1,600,07/25/19 22:21,"467 Pine St, Los Angeles, CA 90001" +233771,AAA Batteries (4-pack),1,2.99,07/02/19 18:46,"481 Johnson St, Los Angeles, CA 90001" +233772,Bose SoundSport Headphones,1,99.99,07/25/19 19:34,"699 Johnson St, San Francisco, CA 94016" +233773,34in Ultrawide Monitor,1,379.99,07/21/19 13:33,"144 Ridge St, Atlanta, GA 30301" +233774,Wired Headphones,1,11.99,07/28/19 14:15,"603 7th St, New York City, NY 10001" +233775,20in Monitor,1,109.99,07/17/19 18:30,"670 Willow St, New York City, NY 10001" +233776,20in Monitor,1,109.99,07/01/19 08:02,"795 Chestnut St, New York City, NY 10001" +233777,Lightning Charging Cable,1,14.95,07/12/19 22:29,"827 4th St, Portland, ME 04101" +233778,AAA Batteries (4-pack),1,2.99,07/21/19 11:28,"950 Walnut St, Dallas, TX 75001" +233779,Wired Headphones,1,11.99,07/16/19 21:18,"338 Cedar St, New York City, NY 10001" +233780,Apple Airpods Headphones,1,150,07/26/19 01:44,"718 Hill St, Boston, MA 02215" +233781,Wired Headphones,1,11.99,07/12/19 16:01,"921 1st St, Los Angeles, CA 90001" +233782,USB-C Charging Cable,1,11.95,07/02/19 11:45,"130 1st St, San Francisco, CA 94016" +233783,AA Batteries (4-pack),1,3.84,07/11/19 13:04,"876 7th St, San Francisco, CA 94016" +233784,iPhone,1,700,07/26/19 12:13,"519 6th St, Seattle, WA 98101" +233785,20in Monitor,1,109.99,07/30/19 19:06,"88 14th St, New York City, NY 10001" +233786,iPhone,1,700,07/14/19 19:50,"45 Chestnut St, New York City, NY 10001" +233787,AA Batteries (4-pack),1,3.84,07/13/19 21:10,"983 South St, San Francisco, CA 94016" +233788,Apple Airpods Headphones,1,150,07/19/19 15:45,"595 Washington St, San Francisco, CA 94016" +233789,AA Batteries (4-pack),1,3.84,07/18/19 19:18,"492 Johnson St, Atlanta, GA 30301" +233790,Apple Airpods Headphones,1,150,07/14/19 17:06,"101 6th St, San Francisco, CA 94016" +233791,Lightning Charging Cable,1,14.95,07/29/19 23:00,"726 Main St, Los Angeles, CA 90001" +233792,AA Batteries (4-pack),1,3.84,07/12/19 13:47,"917 Jackson St, Dallas, TX 75001" +233793,34in Ultrawide Monitor,1,379.99,07/03/19 08:15,"592 Willow St, San Francisco, CA 94016" +233794,Macbook Pro Laptop,1,1700,07/20/19 08:35,"183 9th St, San Francisco, CA 94016" +233795,Lightning Charging Cable,1,14.95,07/22/19 16:38,"509 8th St, Seattle, WA 98101" +233796,AA Batteries (4-pack),1,3.84,07/07/19 19:09,"54 Washington St, Seattle, WA 98101" +233797,20in Monitor,1,109.99,07/16/19 22:29,"698 Park St, New York City, NY 10001" +233798,Lightning Charging Cable,1,14.95,07/15/19 10:42,"657 Cherry St, Dallas, TX 75001" +233799,AAA Batteries (4-pack),1,2.99,07/26/19 05:36,"730 5th St, Seattle, WA 98101" +233800,Apple Airpods Headphones,1,150,07/08/19 20:35,"445 Cedar St, New York City, NY 10001" +233801,AA Batteries (4-pack),1,3.84,07/04/19 15:41,"260 Johnson St, Portland, OR 97035" +233802,Wired Headphones,1,11.99,07/26/19 17:02,"10 Church St, Austin, TX 73301" +233803,Bose SoundSport Headphones,1,99.99,07/06/19 13:40,"525 West St, San Francisco, CA 94016" +233804,AA Batteries (4-pack),1,3.84,07/14/19 06:41,"903 Lake St, New York City, NY 10001" +233805,USB-C Charging Cable,1,11.95,07/09/19 20:17,"848 6th St, New York City, NY 10001" +233806,Lightning Charging Cable,1,14.95,07/27/19 22:19,"126 Hickory St, Seattle, WA 98101" +233807,AA Batteries (4-pack),4,3.84,07/08/19 00:05,"73 5th St, Seattle, WA 98101" +233808,AAA Batteries (4-pack),3,2.99,07/06/19 18:55,"817 Walnut St, Boston, MA 02215" +233809,20in Monitor,1,109.99,07/26/19 21:31,"552 10th St, San Francisco, CA 94016" +233810,Wired Headphones,1,11.99,07/30/19 17:43,"343 South St, Los Angeles, CA 90001" +233811,ThinkPad Laptop,1,999.99,07/17/19 22:15,"150 7th St, Seattle, WA 98101" +233812,iPhone,1,700,07/12/19 22:10,"579 Hill St, Seattle, WA 98101" +233813,Apple Airpods Headphones,1,150,07/05/19 19:10,"229 9th St, Dallas, TX 75001" +233814,Wired Headphones,1,11.99,07/19/19 12:18,"957 Lake St, Boston, MA 02215" +233815,34in Ultrawide Monitor,1,379.99,07/10/19 21:34,"830 South St, San Francisco, CA 94016" +233816,AAA Batteries (4-pack),3,2.99,07/02/19 03:08,"360 Lakeview St, San Francisco, CA 94016" +233817,AAA Batteries (4-pack),1,2.99,07/02/19 11:26,"615 Meadow St, San Francisco, CA 94016" +233818,USB-C Charging Cable,1,11.95,07/21/19 20:15,"930 Sunset St, San Francisco, CA 94016" +233819,AAA Batteries (4-pack),1,2.99,07/23/19 10:45,"151 Willow St, San Francisco, CA 94016" +233820,27in FHD Monitor,1,149.99,07/18/19 00:34,"353 10th St, Portland, OR 97035" +233821,Google Phone,1,600,07/18/19 20:31,"750 Meadow St, Atlanta, GA 30301" +233822,Flatscreen TV,1,300,07/05/19 23:41,"760 Wilson St, Atlanta, GA 30301" +233823,AAA Batteries (4-pack),1,2.99,07/22/19 20:08,"438 Lake St, Atlanta, GA 30301" +233824,Lightning Charging Cable,1,14.95,07/10/19 19:06,"782 1st St, New York City, NY 10001" +233825,ThinkPad Laptop,1,999.99,07/05/19 14:26,"348 Madison St, Seattle, WA 98101" +233826,AAA Batteries (4-pack),1,2.99,07/25/19 18:46,"981 Wilson St, Los Angeles, CA 90001" +233827,AA Batteries (4-pack),2,3.84,07/29/19 22:02,"360 2nd St, Dallas, TX 75001" +233828,Apple Airpods Headphones,1,150,07/15/19 14:17,"984 Elm St, San Francisco, CA 94016" +233829,AAA Batteries (4-pack),1,2.99,07/23/19 13:35,"16 1st St, New York City, NY 10001" +233830,AAA Batteries (4-pack),1,2.99,07/28/19 22:41,"811 14th St, Dallas, TX 75001" +233831,Lightning Charging Cable,1,14.95,07/13/19 21:59,"107 Pine St, Los Angeles, CA 90001" +233832,Wired Headphones,1,11.99,07/22/19 23:08,"135 Church St, Austin, TX 73301" +233833,USB-C Charging Cable,1,11.95,07/04/19 11:05,"187 5th St, San Francisco, CA 94016" +233834,Lightning Charging Cable,1,14.95,07/09/19 12:03,"750 Center St, San Francisco, CA 94016" +233835,27in 4K Gaming Monitor,1,389.99,07/17/19 09:32,"570 Lakeview St, Los Angeles, CA 90001" +233836,27in FHD Monitor,1,149.99,07/21/19 19:24,"244 Hickory St, Portland, OR 97035" +233837,USB-C Charging Cable,1,11.95,07/26/19 06:51,"74 Johnson St, San Francisco, CA 94016" +233838,AA Batteries (4-pack),1,3.84,07/22/19 20:07,"934 Forest St, San Francisco, CA 94016" +233839,27in FHD Monitor,1,149.99,07/14/19 17:53,"216 Hickory St, Seattle, WA 98101" +233840,27in FHD Monitor,1,149.99,07/20/19 19:38,"520 8th St, Seattle, WA 98101" +233841,AA Batteries (4-pack),1,3.84,07/10/19 12:47,"691 Forest St, San Francisco, CA 94016" +233841,Apple Airpods Headphones,1,150,07/10/19 12:47,"691 Forest St, San Francisco, CA 94016" +233842,USB-C Charging Cable,1,11.95,07/25/19 10:41,"561 North St, Portland, OR 97035" +233843,Wired Headphones,1,11.99,07/09/19 19:45,"968 6th St, Boston, MA 02215" +233844,Apple Airpods Headphones,1,150,07/01/19 13:15,"779 Cedar St, Seattle, WA 98101" +233844,Lightning Charging Cable,1,14.95,07/01/19 13:15,"779 Cedar St, Seattle, WA 98101" +233845,Bose SoundSport Headphones,1,99.99,07/20/19 11:46,"914 Ridge St, Austin, TX 73301" +233846,Wired Headphones,1,11.99,07/27/19 09:49,"62 Maple St, Boston, MA 02215" +233847,LG Dryer,1,600.0,07/15/19 04:51,"627 1st St, Los Angeles, CA 90001" +233848,Macbook Pro Laptop,1,1700,07/25/19 13:45,"473 Cherry St, New York City, NY 10001" +233849,AA Batteries (4-pack),1,3.84,07/02/19 17:00,"106 Johnson St, Los Angeles, CA 90001" +233849,USB-C Charging Cable,1,11.95,07/02/19 17:00,"106 Johnson St, Los Angeles, CA 90001" +233850,Vareebadd Phone,1,400,07/30/19 16:21,"903 North St, Portland, OR 97035" +233851,Apple Airpods Headphones,1,150,07/20/19 10:11,"354 River St, San Francisco, CA 94016" +233852,iPhone,1,700,07/17/19 15:53,"689 Walnut St, San Francisco, CA 94016" +233853,AAA Batteries (4-pack),1,2.99,07/14/19 12:39,"781 Dogwood St, Los Angeles, CA 90001" +233854,USB-C Charging Cable,1,11.95,07/18/19 16:48,"931 Main St, Dallas, TX 75001" +233855,AAA Batteries (4-pack),1,2.99,07/10/19 21:49,"91 Spruce St, San Francisco, CA 94016" +233856,27in FHD Monitor,1,149.99,07/19/19 11:09,"331 5th St, Los Angeles, CA 90001" +233857,Lightning Charging Cable,1,14.95,07/12/19 12:09,"321 Cherry St, Los Angeles, CA 90001" +233858,Lightning Charging Cable,1,14.95,07/15/19 11:49,"195 South St, Boston, MA 02215" +233859,iPhone,1,700,07/24/19 21:12,"910 Pine St, Austin, TX 73301" +233860,27in FHD Monitor,1,149.99,07/31/19 12:18,"796 Ridge St, Austin, TX 73301" +233861,Lightning Charging Cable,1,14.95,07/26/19 16:57,"238 Jefferson St, Atlanta, GA 30301" +233862,Lightning Charging Cable,1,14.95,07/13/19 14:17,"518 Lakeview St, Seattle, WA 98101" +233863,Macbook Pro Laptop,1,1700,07/17/19 19:55,"701 14th St, San Francisco, CA 94016" +233864,Wired Headphones,1,11.99,07/20/19 11:05,"236 13th St, Los Angeles, CA 90001" +233865,iPhone,1,700,07/06/19 14:20,"757 2nd St, Atlanta, GA 30301" +233866,ThinkPad Laptop,1,999.99,07/04/19 10:08,"221 Ridge St, New York City, NY 10001" +233867,Vareebadd Phone,1,400,07/04/19 19:17,"116 Walnut St, San Francisco, CA 94016" +233867,27in 4K Gaming Monitor,1,389.99,07/04/19 19:17,"116 Walnut St, San Francisco, CA 94016" +233868,iPhone,1,700,07/05/19 11:42,"223 Adams St, New York City, NY 10001" +233869,Lightning Charging Cable,1,14.95,07/20/19 11:38,"981 2nd St, New York City, NY 10001" +233870,Lightning Charging Cable,1,14.95,07/18/19 11:20,"289 9th St, Los Angeles, CA 90001" +233871,Wired Headphones,1,11.99,07/09/19 11:15,"493 Madison St, San Francisco, CA 94016" +233872,Lightning Charging Cable,2,14.95,07/15/19 12:44,"155 Hickory St, Los Angeles, CA 90001" +233873,AAA Batteries (4-pack),4,2.99,07/29/19 11:42,"960 River St, San Francisco, CA 94016" +233874,27in FHD Monitor,1,149.99,07/21/19 23:02,"18 Church St, San Francisco, CA 94016" +233875,USB-C Charging Cable,1,11.95,07/29/19 07:30,"492 Lincoln St, New York City, NY 10001" +233876,Wired Headphones,1,11.99,07/13/19 06:01,"2 1st St, San Francisco, CA 94016" +233877,USB-C Charging Cable,1,11.95,07/13/19 17:49,"498 Johnson St, Dallas, TX 75001" +233878,Bose SoundSport Headphones,1,99.99,07/10/19 09:41,"808 Wilson St, New York City, NY 10001" +233879,Wired Headphones,2,11.99,07/28/19 10:38,"39 Cedar St, Boston, MA 02215" +233880,34in Ultrawide Monitor,1,379.99,07/24/19 18:47,"548 Ridge St, Los Angeles, CA 90001" +233881,AAA Batteries (4-pack),2,2.99,07/09/19 13:48,"645 10th St, San Francisco, CA 94016" +233882,AAA Batteries (4-pack),1,2.99,07/05/19 13:28,"931 Wilson St, Los Angeles, CA 90001" +233883,Wired Headphones,1,11.99,07/17/19 16:34,"588 Jackson St, Los Angeles, CA 90001" +233884,Vareebadd Phone,1,400,07/24/19 10:41,"231 Hickory St, New York City, NY 10001" +233885,AAA Batteries (4-pack),1,2.99,07/01/19 13:21,"254 Church St, San Francisco, CA 94016" +233886,USB-C Charging Cable,1,11.95,07/20/19 00:38,"939 12th St, New York City, NY 10001" +233887,USB-C Charging Cable,1,11.95,07/08/19 12:09,"493 Main St, Dallas, TX 75001" +233888,34in Ultrawide Monitor,1,379.99,07/03/19 05:01,"811 Cedar St, Atlanta, GA 30301" +233889,AA Batteries (4-pack),1,3.84,07/18/19 19:28,"398 2nd St, Boston, MA 02215" +233890,iPhone,1,700,07/11/19 13:36,"736 14th St, Seattle, WA 98101" +233891,AAA Batteries (4-pack),2,2.99,07/16/19 20:55,"634 Hickory St, Atlanta, GA 30301" +233892,27in FHD Monitor,1,149.99,07/26/19 18:48,"560 Spruce St, Los Angeles, CA 90001" +233893,Flatscreen TV,1,300,07/25/19 22:55,"350 Lincoln St, Los Angeles, CA 90001" +233894,Apple Airpods Headphones,1,150,07/25/19 21:05,"981 6th St, Dallas, TX 75001" +233895,27in 4K Gaming Monitor,1,389.99,07/02/19 16:25,"458 Highland St, Atlanta, GA 30301" +233896,AA Batteries (4-pack),1,3.84,07/17/19 16:30,"13 12th St, Austin, TX 73301" +233897,34in Ultrawide Monitor,1,379.99,07/01/19 07:07,"762 Forest St, Austin, TX 73301" +233898,Macbook Pro Laptop,1,1700,07/12/19 20:12,"593 North St, San Francisco, CA 94016" +233899,Wired Headphones,2,11.99,07/13/19 13:30,"401 Forest St, Dallas, TX 75001" +233900,Wired Headphones,1,11.99,07/21/19 12:13,"858 Madison St, San Francisco, CA 94016" +233901,AAA Batteries (4-pack),2,2.99,07/10/19 16:21,"698 Cherry St, Dallas, TX 75001" +233902,Wired Headphones,1,11.99,07/30/19 17:38,"544 14th St, Portland, OR 97035" +233903,AAA Batteries (4-pack),1,2.99,07/04/19 09:02,"914 Spruce St, San Francisco, CA 94016" +233904,AA Batteries (4-pack),1,3.84,07/16/19 17:03,"375 Church St, San Francisco, CA 94016" +233905,AA Batteries (4-pack),1,3.84,07/09/19 11:14,"385 Chestnut St, San Francisco, CA 94016" +233906,Wired Headphones,1,11.99,07/20/19 14:38,"617 Hill St, Portland, OR 97035" +233907,Wired Headphones,1,11.99,07/22/19 21:10,"920 Hickory St, San Francisco, CA 94016" +233908,ThinkPad Laptop,1,999.99,07/01/19 22:40,"823 Pine St, San Francisco, CA 94016" +233909,AA Batteries (4-pack),1,3.84,07/20/19 14:31,"176 13th St, San Francisco, CA 94016" +233910,Lightning Charging Cable,1,14.95,07/23/19 05:49,"14 South St, Los Angeles, CA 90001" +233911,USB-C Charging Cable,1,11.95,07/26/19 20:16,"671 Center St, San Francisco, CA 94016" +233912,Bose SoundSport Headphones,1,99.99,07/05/19 17:26,"593 Walnut St, Seattle, WA 98101" +233913,Flatscreen TV,1,300,07/10/19 21:32,"45 North St, San Francisco, CA 94016" +233914,Lightning Charging Cable,1,14.95,07/05/19 23:31,"845 14th St, Portland, OR 97035" +233915,AAA Batteries (4-pack),2,2.99,07/06/19 22:55,"843 2nd St, San Francisco, CA 94016" +233916,20in Monitor,1,109.99,07/09/19 14:00,"181 Lincoln St, Dallas, TX 75001" +233917,USB-C Charging Cable,1,11.95,07/31/19 00:16,"448 5th St, New York City, NY 10001" +233918,USB-C Charging Cable,1,11.95,07/13/19 19:39,"454 Meadow St, Portland, OR 97035" +233918,Google Phone,1,600,07/13/19 19:39,"454 Meadow St, Portland, OR 97035" +233919,27in FHD Monitor,1,149.99,07/22/19 14:17,"184 12th St, San Francisco, CA 94016" +233920,Bose SoundSport Headphones,1,99.99,07/18/19 11:58,"857 Lakeview St, Boston, MA 02215" +233921,Bose SoundSport Headphones,1,99.99,07/18/19 06:08,"126 10th St, Portland, OR 97035" +233922,Apple Airpods Headphones,1,150,07/30/19 11:51,"446 Washington St, Boston, MA 02215" +233923,Lightning Charging Cable,1,14.95,07/01/19 22:08,"33 Sunset St, Atlanta, GA 30301" +233924,20in Monitor,1,109.99,07/12/19 09:40,"842 Willow St, Los Angeles, CA 90001" +233925,27in FHD Monitor,1,149.99,07/23/19 19:43,"92 Pine St, Portland, ME 04101" +233926,34in Ultrawide Monitor,1,379.99,07/31/19 17:08,"116 4th St, San Francisco, CA 94016" +233927,USB-C Charging Cable,1,11.95,07/04/19 17:10,"688 1st St, San Francisco, CA 94016" +233928,USB-C Charging Cable,1,11.95,07/15/19 18:19,"977 Cherry St, Los Angeles, CA 90001" +233929,Google Phone,1,600,07/26/19 13:00,"830 Chestnut St, Austin, TX 73301" +233930,Wired Headphones,1,11.99,07/06/19 22:12,"460 2nd St, Portland, ME 04101" +233931,Flatscreen TV,1,300,07/12/19 13:16,"686 Wilson St, Boston, MA 02215" +233932,27in FHD Monitor,1,149.99,07/07/19 18:52,"97 Meadow St, New York City, NY 10001" +233933,Apple Airpods Headphones,1,150,07/31/19 13:35,"427 8th St, San Francisco, CA 94016" +233934,Wired Headphones,1,11.99,07/10/19 11:34,"202 Madison St, New York City, NY 10001" +233935,Lightning Charging Cable,1,14.95,07/22/19 08:56,"746 Hill St, Los Angeles, CA 90001" +233936,Lightning Charging Cable,1,14.95,07/25/19 01:27,"229 Pine St, San Francisco, CA 94016" +233937,Bose SoundSport Headphones,1,99.99,07/24/19 14:02,"163 9th St, Los Angeles, CA 90001" +233938,Bose SoundSport Headphones,1,99.99,07/18/19 10:30,"756 Adams St, San Francisco, CA 94016" +233939,34in Ultrawide Monitor,1,379.99,07/29/19 17:13,"770 Washington St, San Francisco, CA 94016" +233940,AA Batteries (4-pack),1,3.84,07/05/19 10:49,"875 Elm St, San Francisco, CA 94016" +233941,Macbook Pro Laptop,1,1700,07/03/19 19:11,"833 12th St, Atlanta, GA 30301" +233942,34in Ultrawide Monitor,1,379.99,07/30/19 19:10,"576 Johnson St, San Francisco, CA 94016" +233943,Lightning Charging Cable,1,14.95,07/12/19 08:48,"471 13th St, New York City, NY 10001" +233944,Flatscreen TV,1,300,07/08/19 10:24,"491 Cedar St, San Francisco, CA 94016" +233945,34in Ultrawide Monitor,1,379.99,07/06/19 10:52,"889 Adams St, Seattle, WA 98101" +233946,AA Batteries (4-pack),2,3.84,07/13/19 08:59,"516 12th St, Los Angeles, CA 90001" +233947,Macbook Pro Laptop,1,1700,07/15/19 12:43,"341 West St, Austin, TX 73301" +233948,Lightning Charging Cable,1,14.95,07/11/19 12:54,"443 2nd St, Austin, TX 73301" +233949,iPhone,1,700,07/07/19 18:38,"498 Washington St, San Francisco, CA 94016" +233949,Lightning Charging Cable,1,14.95,07/07/19 18:38,"498 Washington St, San Francisco, CA 94016" +233950,Google Phone,1,600,07/02/19 15:50,"529 Highland St, Dallas, TX 75001" +233951,Lightning Charging Cable,1,14.95,07/28/19 11:03,"289 North St, New York City, NY 10001" +233952,AAA Batteries (4-pack),1,2.99,07/26/19 11:36,"55 Wilson St, San Francisco, CA 94016" +233953,Wired Headphones,1,11.99,07/13/19 07:37,"702 River St, San Francisco, CA 94016" +233954,Apple Airpods Headphones,1,150,07/14/19 18:07,"16 Forest St, San Francisco, CA 94016" +233955,20in Monitor,1,109.99,07/15/19 10:36,"463 5th St, San Francisco, CA 94016" +233956,Wired Headphones,1,11.99,07/12/19 10:53,"408 8th St, Austin, TX 73301" +233957,Bose SoundSport Headphones,1,99.99,07/22/19 14:37,"988 Forest St, Boston, MA 02215" +233958,27in FHD Monitor,1,149.99,07/20/19 21:48,"497 Dogwood St, Dallas, TX 75001" +233958,Wired Headphones,2,11.99,07/20/19 21:48,"497 Dogwood St, Dallas, TX 75001" +233959,27in 4K Gaming Monitor,1,389.99,07/17/19 10:59,"146 West St, Austin, TX 73301" +233960,USB-C Charging Cable,1,11.95,07/24/19 20:04,"550 Lincoln St, Dallas, TX 75001" +233961,AAA Batteries (4-pack),2,2.99,07/03/19 16:04,"723 Madison St, San Francisco, CA 94016" +233962,USB-C Charging Cable,2,11.95,07/27/19 12:39,"448 Willow St, Atlanta, GA 30301" +233963,Lightning Charging Cable,1,14.95,07/01/19 21:32,"57 6th St, New York City, NY 10001" +233964,34in Ultrawide Monitor,1,379.99,07/06/19 11:14,"834 11th St, New York City, NY 10001" +233965,Apple Airpods Headphones,1,150,07/20/19 20:02,"118 Lakeview St, San Francisco, CA 94016" +233966,USB-C Charging Cable,1,11.95,07/11/19 20:30,"308 1st St, San Francisco, CA 94016" +233967,USB-C Charging Cable,1,11.95,07/21/19 12:39,"626 Ridge St, Dallas, TX 75001" +233968,Lightning Charging Cable,1,14.95,07/31/19 23:28,"986 9th St, Portland, OR 97035" +233969,iPhone,1,700,07/11/19 14:23,"851 West St, San Francisco, CA 94016" +233970,Wired Headphones,1,11.99,07/19/19 16:17,"816 Elm St, Los Angeles, CA 90001" +233971,AAA Batteries (4-pack),2,2.99,07/15/19 17:55,"370 Ridge St, Boston, MA 02215" +233972,Lightning Charging Cable,1,14.95,07/19/19 07:26,"913 Lakeview St, Seattle, WA 98101" +233973,Wired Headphones,1,11.99,07/01/19 14:30,"574 Cedar St, Boston, MA 02215" +233974,27in FHD Monitor,1,149.99,07/22/19 18:03,"34 Dogwood St, Portland, OR 97035" +233975,AAA Batteries (4-pack),1,2.99,07/08/19 20:56,"957 Jefferson St, Atlanta, GA 30301" +233976,Bose SoundSport Headphones,1,99.99,07/29/19 19:58,"714 Willow St, Los Angeles, CA 90001" +233977,Apple Airpods Headphones,1,150,07/16/19 07:47,"235 12th St, Boston, MA 02215" +233978,27in FHD Monitor,1,149.99,07/29/19 11:28,"84 Johnson St, Seattle, WA 98101" +233979,USB-C Charging Cable,1,11.95,07/01/19 08:53,"944 Walnut St, Boston, MA 02215" +233980,Vareebadd Phone,1,400,07/29/19 21:18,"496 Maple St, Portland, OR 97035" +233981,Flatscreen TV,1,300,07/14/19 17:08,"541 Madison St, Los Angeles, CA 90001" +233982,Lightning Charging Cable,1,14.95,07/18/19 00:34,"828 8th St, San Francisco, CA 94016" +233983,AAA Batteries (4-pack),1,2.99,07/26/19 15:22,"385 Jefferson St, Atlanta, GA 30301" +233984,AAA Batteries (4-pack),1,2.99,07/21/19 19:01,"851 Church St, Seattle, WA 98101" +233985,Wired Headphones,1,11.99,07/31/19 12:00,"36 West St, Portland, OR 97035" +233986,ThinkPad Laptop,1,999.99,07/02/19 00:04,"619 5th St, Boston, MA 02215" +233987,Wired Headphones,1,11.99,07/18/19 12:12,"423 Ridge St, Dallas, TX 75001" +233988,34in Ultrawide Monitor,1,379.99,07/31/19 10:44,"820 6th St, Boston, MA 02215" +233989,iPhone,1,700,07/22/19 23:01,"435 5th St, Austin, TX 73301" +233989,Lightning Charging Cable,1,14.95,07/22/19 23:01,"435 5th St, Austin, TX 73301" +233990,Lightning Charging Cable,1,14.95,07/26/19 16:05,"419 2nd St, Seattle, WA 98101" +233991,Apple Airpods Headphones,1,150,07/18/19 08:32,"107 Walnut St, Los Angeles, CA 90001" +233991,AA Batteries (4-pack),2,3.84,07/18/19 08:32,"107 Walnut St, Los Angeles, CA 90001" +233992,AAA Batteries (4-pack),1,2.99,07/25/19 12:57,"460 South St, Boston, MA 02215" +233993,20in Monitor,1,109.99,07/06/19 18:26,"619 2nd St, Los Angeles, CA 90001" +233994,27in FHD Monitor,1,149.99,07/11/19 15:51,"786 Washington St, San Francisco, CA 94016" +233995,AA Batteries (4-pack),1,3.84,07/15/19 12:27,"762 Madison St, New York City, NY 10001" +233996,AAA Batteries (4-pack),1,2.99,07/16/19 21:27,"473 2nd St, San Francisco, CA 94016" +233997,Wired Headphones,1,11.99,07/04/19 12:27,"428 Spruce St, New York City, NY 10001" +233998,Apple Airpods Headphones,1,150,07/24/19 10:01,"244 1st St, San Francisco, CA 94016" +233999,Lightning Charging Cable,1,14.95,07/06/19 09:25,"76 5th St, Seattle, WA 98101" +234000,Google Phone,1,600,07/05/19 11:25,"788 Forest St, Atlanta, GA 30301" +234001,AAA Batteries (4-pack),1,2.99,07/23/19 16:28,"943 4th St, Atlanta, GA 30301" +234001,Lightning Charging Cable,1,14.95,07/23/19 16:28,"943 4th St, Atlanta, GA 30301" +234002,34in Ultrawide Monitor,1,379.99,07/21/19 00:47,"911 9th St, Dallas, TX 75001" +234003,AAA Batteries (4-pack),1,2.99,07/07/19 07:21,"436 Jefferson St, Seattle, WA 98101" +234004,Flatscreen TV,1,300,07/21/19 09:20,"931 Hill St, Atlanta, GA 30301" +234005,34in Ultrawide Monitor,1,379.99,07/03/19 16:37,"521 Willow St, Atlanta, GA 30301" +234006,Macbook Pro Laptop,1,1700,07/26/19 19:41,"206 Sunset St, Portland, OR 97035" +234007,AAA Batteries (4-pack),1,2.99,07/07/19 12:19,"873 Jackson St, Los Angeles, CA 90001" +234008,Lightning Charging Cable,1,14.95,07/31/19 12:11,"464 Forest St, Boston, MA 02215" +234009,34in Ultrawide Monitor,1,379.99,07/28/19 19:50,"730 1st St, Portland, OR 97035" +234010,Lightning Charging Cable,1,14.95,07/04/19 09:40,"563 Madison St, San Francisco, CA 94016" +234011,34in Ultrawide Monitor,1,379.99,07/21/19 19:51,"118 Main St, Los Angeles, CA 90001" +234012,USB-C Charging Cable,1,11.95,07/07/19 17:50,"329 Meadow St, Atlanta, GA 30301" +234013,AA Batteries (4-pack),1,3.84,07/15/19 19:15,"274 Wilson St, Atlanta, GA 30301" +234014,Apple Airpods Headphones,1,150,07/01/19 14:18,"629 Jefferson St, Boston, MA 02215" +234015,Lightning Charging Cable,1,14.95,07/06/19 18:12,"701 Willow St, Boston, MA 02215" +234016,Bose SoundSport Headphones,1,99.99,07/24/19 16:52,"5 Cedar St, San Francisco, CA 94016" +234017,Bose SoundSport Headphones,1,99.99,07/16/19 19:17,"47 10th St, Los Angeles, CA 90001" +234018,27in FHD Monitor,1,149.99,07/19/19 14:11,"838 Chestnut St, Boston, MA 02215" +234019,27in FHD Monitor,1,149.99,07/13/19 22:07,"562 Hickory St, San Francisco, CA 94016" +234020,AA Batteries (4-pack),3,3.84,07/23/19 18:47,"270 North St, San Francisco, CA 94016" +234021,USB-C Charging Cable,3,11.95,07/17/19 10:23,"871 South St, Austin, TX 73301" +234022,AAA Batteries (4-pack),2,2.99,07/10/19 17:02,"704 2nd St, San Francisco, CA 94016" +234023,AA Batteries (4-pack),1,3.84,07/23/19 12:24,"434 Wilson St, Seattle, WA 98101" +234024,USB-C Charging Cable,1,11.95,07/16/19 19:57,"58 11th St, San Francisco, CA 94016" +234025,27in FHD Monitor,1,149.99,07/11/19 14:39,"632 Lincoln St, Portland, ME 04101" +234026,AAA Batteries (4-pack),1,2.99,07/25/19 23:01,"907 Chestnut St, New York City, NY 10001" +234027,AAA Batteries (4-pack),2,2.99,07/28/19 11:19,"137 Dogwood St, Atlanta, GA 30301" +234028,Bose SoundSport Headphones,1,99.99,07/02/19 07:54,"258 5th St, Austin, TX 73301" +234029,Apple Airpods Headphones,1,150,07/15/19 10:45,"500 Main St, San Francisco, CA 94016" +234030,Lightning Charging Cable,1,14.95,07/21/19 22:26,"359 4th St, Portland, OR 97035" +234031,USB-C Charging Cable,1,11.95,07/04/19 17:09,"657 Lake St, New York City, NY 10001" +234032,USB-C Charging Cable,2,11.95,07/30/19 21:50,"286 9th St, San Francisco, CA 94016" +234033,27in FHD Monitor,1,149.99,07/25/19 13:16,"16 Madison St, San Francisco, CA 94016" +234034,Apple Airpods Headphones,1,150,07/14/19 21:10,"34 Hickory St, Los Angeles, CA 90001" +234035,AA Batteries (4-pack),1,3.84,07/10/19 21:44,"82 Willow St, Los Angeles, CA 90001" +234036,Lightning Charging Cable,1,14.95,07/18/19 07:48,"524 River St, New York City, NY 10001" +234037,AA Batteries (4-pack),3,3.84,07/24/19 18:12,"318 12th St, Portland, OR 97035" +234038,AAA Batteries (4-pack),1,2.99,07/21/19 12:17,"52 13th St, San Francisco, CA 94016" +234039,AA Batteries (4-pack),1,3.84,07/02/19 03:12,"135 Willow St, Dallas, TX 75001" +234040,Apple Airpods Headphones,1,150,07/18/19 18:39,"92 Pine St, New York City, NY 10001" +234041,27in 4K Gaming Monitor,1,389.99,07/05/19 13:57,"469 Center St, Dallas, TX 75001" +234042,AA Batteries (4-pack),1,3.84,07/18/19 20:31,"607 Chestnut St, San Francisco, CA 94016" +234043,Apple Airpods Headphones,1,150,07/28/19 20:57,"442 10th St, New York City, NY 10001" +234044,Google Phone,1,600,07/21/19 13:25,"745 Cedar St, San Francisco, CA 94016" +234045,Lightning Charging Cable,1,14.95,07/19/19 11:19,"933 Pine St, Atlanta, GA 30301" +234046,AA Batteries (4-pack),2,3.84,07/29/19 10:45,"777 Adams St, New York City, NY 10001" +234047,AAA Batteries (4-pack),2,2.99,07/22/19 07:35,"488 Hickory St, Boston, MA 02215" +234048,ThinkPad Laptop,1,999.99,07/17/19 22:53,"214 13th St, Los Angeles, CA 90001" +234049,Apple Airpods Headphones,1,150,07/25/19 18:59,"865 Lakeview St, San Francisco, CA 94016" +234050,Apple Airpods Headphones,1,150,07/04/19 11:47,"405 Meadow St, Seattle, WA 98101" +234051,Wired Headphones,1,11.99,07/06/19 10:42,"912 Spruce St, Boston, MA 02215" +234052,AAA Batteries (4-pack),1,2.99,07/31/19 15:36,"623 Hill St, Atlanta, GA 30301" +234053,USB-C Charging Cable,1,11.95,07/08/19 11:51,"626 Hickory St, Boston, MA 02215" +234054,USB-C Charging Cable,1,11.95,07/26/19 16:21,"147 River St, Austin, TX 73301" +234055,Macbook Pro Laptop,1,1700,07/17/19 09:19,"605 Forest St, Los Angeles, CA 90001" +234056,20in Monitor,1,109.99,07/31/19 14:20,"108 South St, Portland, OR 97035" +234057,AA Batteries (4-pack),2,3.84,07/05/19 19:04,"291 Lakeview St, New York City, NY 10001" +234058,AA Batteries (4-pack),1,3.84,07/30/19 22:06,"854 1st St, San Francisco, CA 94016" +234059,Wired Headphones,1,11.99,07/06/19 18:32,"782 Church St, Los Angeles, CA 90001" +234060,Bose SoundSport Headphones,1,99.99,07/03/19 00:04,"925 6th St, San Francisco, CA 94016" +234061,Apple Airpods Headphones,1,150,07/02/19 12:48,"285 Main St, San Francisco, CA 94016" +234062,Lightning Charging Cable,1,14.95,07/23/19 19:24,"825 Lincoln St, Atlanta, GA 30301" +234063,Wired Headphones,1,11.99,07/25/19 22:05,"593 Forest St, San Francisco, CA 94016" +234064,AA Batteries (4-pack),1,3.84,07/24/19 21:20,"207 10th St, San Francisco, CA 94016" +234065,Wired Headphones,1,11.99,07/03/19 10:36,"76 Ridge St, Atlanta, GA 30301" +234066,Wired Headphones,1,11.99,07/07/19 08:30,"46 10th St, New York City, NY 10001" +234067,USB-C Charging Cable,1,11.95,07/13/19 21:42,"504 12th St, San Francisco, CA 94016" +234068,27in 4K Gaming Monitor,1,389.99,07/05/19 20:27,"761 Highland St, San Francisco, CA 94016" +234069,ThinkPad Laptop,1,999.99,07/10/19 22:20,"298 4th St, New York City, NY 10001" +234070,Flatscreen TV,1,300,07/08/19 12:07,"240 Lincoln St, Seattle, WA 98101" +234071,AAA Batteries (4-pack),1,2.99,07/02/19 18:05,"973 Hill St, New York City, NY 10001" +234072,Wired Headphones,1,11.99,07/21/19 17:28,"343 2nd St, New York City, NY 10001" +234073,Macbook Pro Laptop,1,1700,07/19/19 21:25,"433 Sunset St, San Francisco, CA 94016" +234074,AAA Batteries (4-pack),1,2.99,07/15/19 14:10,"957 Sunset St, Seattle, WA 98101" +234075,27in 4K Gaming Monitor,1,389.99,07/03/19 19:37,"540 11th St, Los Angeles, CA 90001" +234076,Bose SoundSport Headphones,1,99.99,07/26/19 10:49,"150 Main St, New York City, NY 10001" +234077,Flatscreen TV,1,300,07/16/19 12:22,"861 6th St, Seattle, WA 98101" +234078,27in 4K Gaming Monitor,1,389.99,07/05/19 17:09,"802 Willow St, San Francisco, CA 94016" +234079,Apple Airpods Headphones,1,150,07/16/19 15:58,"834 Hickory St, Dallas, TX 75001" +234080,27in FHD Monitor,1,149.99,07/20/19 16:31,"825 13th St, Boston, MA 02215" +234081,ThinkPad Laptop,1,999.99,07/15/19 21:45,"39 11th St, San Francisco, CA 94016" +234082,Apple Airpods Headphones,1,150,07/25/19 19:40,"451 Center St, San Francisco, CA 94016" +234083,Bose SoundSport Headphones,1,99.99,07/10/19 11:48,"495 Highland St, Boston, MA 02215" +234084,Lightning Charging Cable,1,14.95,07/29/19 12:40,"27 9th St, New York City, NY 10001" +234085,AAA Batteries (4-pack),1,2.99,07/07/19 16:15,"368 River St, New York City, NY 10001" +234086,AA Batteries (4-pack),1,3.84,07/02/19 14:28,"834 7th St, San Francisco, CA 94016" +234087,Google Phone,1,600,07/08/19 11:07,"748 Madison St, San Francisco, CA 94016" +234088,AAA Batteries (4-pack),3,2.99,07/05/19 02:32,"216 Park St, Boston, MA 02215" +234089,Apple Airpods Headphones,1,150,07/03/19 06:02,"44 Wilson St, San Francisco, CA 94016" +234090,iPhone,1,700,07/10/19 08:58,"802 Washington St, New York City, NY 10001" +234091,AAA Batteries (4-pack),1,2.99,07/21/19 22:32,"396 South St, Los Angeles, CA 90001" +234092,AAA Batteries (4-pack),1,2.99,07/03/19 08:35,"370 Lake St, Seattle, WA 98101" +234093,Bose SoundSport Headphones,1,99.99,07/12/19 12:27,"641 Pine St, Seattle, WA 98101" +234094,27in FHD Monitor,1,149.99,07/31/19 06:31,"89 Jackson St, Dallas, TX 75001" +234094,USB-C Charging Cable,1,11.95,07/31/19 06:31,"89 Jackson St, Dallas, TX 75001" +234095,USB-C Charging Cable,1,11.95,07/08/19 14:28,"654 1st St, Atlanta, GA 30301" +234095,Wired Headphones,1,11.99,07/08/19 14:28,"654 1st St, Atlanta, GA 30301" +234096,Lightning Charging Cable,2,14.95,07/31/19 16:22,"606 13th St, Seattle, WA 98101" +234097,Bose SoundSport Headphones,1,99.99,07/09/19 14:36,"891 Pine St, New York City, NY 10001" +234098,AAA Batteries (4-pack),3,2.99,07/19/19 08:15,"151 Main St, Los Angeles, CA 90001" +234099,Wired Headphones,1,11.99,07/28/19 13:09,"104 Church St, Atlanta, GA 30301" +234100,Lightning Charging Cable,1,14.95,07/03/19 23:25,"135 River St, San Francisco, CA 94016" +234101,AA Batteries (4-pack),1,3.84,07/25/19 15:08,"505 Dogwood St, Los Angeles, CA 90001" +234102,Apple Airpods Headphones,1,150,07/15/19 10:22,"69 Center St, Seattle, WA 98101" +234103,Google Phone,1,600,07/17/19 13:38,"88 9th St, New York City, NY 10001" +234104,Wired Headphones,2,11.99,07/27/19 12:10,"910 Center St, Dallas, TX 75001" +234105,iPhone,1,700,07/13/19 05:17,"457 1st St, Portland, OR 97035" +234106,AA Batteries (4-pack),1,3.84,07/18/19 09:04,"94 Dogwood St, Dallas, TX 75001" +234107,Google Phone,1,600,07/25/19 22:32,"146 Spruce St, San Francisco, CA 94016" +234108,27in 4K Gaming Monitor,1,389.99,07/09/19 20:53,"594 Cedar St, San Francisco, CA 94016" +234109,Wired Headphones,1,11.99,07/03/19 15:33,"590 9th St, San Francisco, CA 94016" +234110,AAA Batteries (4-pack),1,2.99,07/31/19 15:08,"957 Hickory St, New York City, NY 10001" +234111,Wired Headphones,1,11.99,07/19/19 18:33,"991 Forest St, Atlanta, GA 30301" +234112,USB-C Charging Cable,1,11.95,07/25/19 00:08,"640 Madison St, San Francisco, CA 94016" +234113,Apple Airpods Headphones,1,150,07/14/19 21:05,"746 Spruce St, Dallas, TX 75001" +234114,Bose SoundSport Headphones,1,99.99,07/02/19 15:13,"96 14th St, Los Angeles, CA 90001" +234115,Wired Headphones,1,11.99,07/19/19 10:39,"101 Washington St, New York City, NY 10001" +234116,AA Batteries (4-pack),1,3.84,07/14/19 07:48,"129 Ridge St, San Francisco, CA 94016" +234117,USB-C Charging Cable,1,11.95,07/29/19 12:46,"183 Cherry St, Boston, MA 02215" +234118,27in FHD Monitor,1,149.99,07/15/19 21:27,"578 Park St, San Francisco, CA 94016" +234119,Lightning Charging Cable,1,14.95,07/12/19 17:33,"522 Walnut St, Atlanta, GA 30301" +234120,Google Phone,1,600,07/05/19 14:26,"97 Lake St, San Francisco, CA 94016" +234121,AA Batteries (4-pack),2,3.84,07/01/19 21:25,"141 Cedar St, San Francisco, CA 94016" +234122,AAA Batteries (4-pack),2,2.99,07/28/19 13:23,"766 Spruce St, New York City, NY 10001" +234123,Macbook Pro Laptop,1,1700,07/30/19 11:19,"294 1st St, Seattle, WA 98101" +234124,Wired Headphones,1,11.99,07/15/19 18:04,"993 Highland St, Dallas, TX 75001" +234125,AA Batteries (4-pack),1,3.84,07/18/19 15:20,"916 Park St, Los Angeles, CA 90001" +234126,Lightning Charging Cable,2,14.95,07/04/19 07:53,"215 Lakeview St, San Francisco, CA 94016" +234127,LG Washing Machine,1,600.0,07/24/19 12:41,"734 4th St, Los Angeles, CA 90001" +234128,27in 4K Gaming Monitor,1,389.99,07/03/19 02:03,"398 Hill St, San Francisco, CA 94016" +234129,Macbook Pro Laptop,1,1700,07/30/19 09:11,"525 West St, San Francisco, CA 94016" +234130,AA Batteries (4-pack),1,3.84,07/01/19 07:30,"110 Park St, Los Angeles, CA 90001" +234131,USB-C Charging Cable,1,11.95,07/14/19 11:03,"781 Hickory St, Atlanta, GA 30301" +234132,Bose SoundSport Headphones,1,99.99,07/18/19 01:04,"102 Washington St, New York City, NY 10001" +234132,AA Batteries (4-pack),1,3.84,07/18/19 01:04,"102 Washington St, New York City, NY 10001" +234133,27in 4K Gaming Monitor,1,389.99,07/10/19 10:04,"249 Ridge St, Portland, ME 04101" +234134,AAA Batteries (4-pack),1,2.99,07/01/19 09:41,"651 7th St, Seattle, WA 98101" +234135,Lightning Charging Cable,1,14.95,07/06/19 09:47,"136 South St, Atlanta, GA 30301" +234136,Lightning Charging Cable,1,14.95,07/18/19 18:31,"705 Pine St, Los Angeles, CA 90001" +234137,Lightning Charging Cable,1,14.95,07/14/19 21:43,"502 4th St, Boston, MA 02215" +234138,Apple Airpods Headphones,1,150,07/25/19 12:06,"887 Sunset St, Atlanta, GA 30301" +234139,Wired Headphones,1,11.99,07/15/19 05:26,"335 Lincoln St, Los Angeles, CA 90001" +234140,USB-C Charging Cable,1,11.95,07/14/19 11:27,"352 8th St, New York City, NY 10001" +234141,Bose SoundSport Headphones,1,99.99,07/18/19 22:13,"6 Main St, Los Angeles, CA 90001" +234142,USB-C Charging Cable,1,11.95,07/14/19 09:31,"685 10th St, Los Angeles, CA 90001" +234143,iPhone,1,700,07/28/19 11:25,"795 4th St, Austin, TX 73301" +234144,AA Batteries (4-pack),1,3.84,07/24/19 21:12,"943 Walnut St, Atlanta, GA 30301" +234145,AAA Batteries (4-pack),3,2.99,07/31/19 20:51,"588 Adams St, New York City, NY 10001" +234146,27in 4K Gaming Monitor,1,389.99,07/06/19 19:06,"467 12th St, San Francisco, CA 94016" +234147,Google Phone,1,600,07/19/19 08:52,"329 9th St, San Francisco, CA 94016" +234148,USB-C Charging Cable,1,11.95,07/18/19 20:14,"437 Sunset St, San Francisco, CA 94016" +234149,Lightning Charging Cable,1,14.95,07/17/19 20:21,"127 7th St, San Francisco, CA 94016" +234150,27in FHD Monitor,1,149.99,07/29/19 17:25,"761 Center St, Los Angeles, CA 90001" +234151,USB-C Charging Cable,1,11.95,07/14/19 21:44,"900 Meadow St, Austin, TX 73301" +234152,AAA Batteries (4-pack),3,2.99,07/08/19 16:48,"207 Pine St, Los Angeles, CA 90001" +234153,USB-C Charging Cable,1,11.95,07/17/19 17:07,"766 Chestnut St, San Francisco, CA 94016" +234154,Apple Airpods Headphones,1,150,07/18/19 19:17,"877 Highland St, Portland, OR 97035" +234155,AA Batteries (4-pack),3,3.84,07/03/19 04:29,"459 Sunset St, San Francisco, CA 94016" +234156,27in FHD Monitor,1,149.99,07/26/19 17:02,"80 13th St, Dallas, TX 75001" +234157,Bose SoundSport Headphones,1,99.99,07/14/19 20:14,"496 Walnut St, Dallas, TX 75001" +234158,Macbook Pro Laptop,1,1700,07/22/19 18:11,"8 Lake St, Seattle, WA 98101" +234159,AAA Batteries (4-pack),1,2.99,07/16/19 15:52,"227 Spruce St, Seattle, WA 98101" +234160,Bose SoundSport Headphones,1,99.99,07/29/19 10:59,"341 13th St, San Francisco, CA 94016" +234161,Apple Airpods Headphones,1,150,07/02/19 17:02,"838 13th St, San Francisco, CA 94016" +234162,USB-C Charging Cable,1,11.95,07/18/19 08:43,"873 South St, San Francisco, CA 94016" +234163,20in Monitor,1,109.99,07/30/19 12:21,"858 Maple St, Los Angeles, CA 90001" +234164,AAA Batteries (4-pack),1,2.99,07/20/19 17:07,"880 Jefferson St, New York City, NY 10001" +234165,Apple Airpods Headphones,1,150,07/29/19 12:45,"363 Jackson St, Boston, MA 02215" +234166,Lightning Charging Cable,1,14.95,07/25/19 20:50,"740 Hickory St, Boston, MA 02215" +234167,Flatscreen TV,1,300,07/07/19 16:18,"203 Adams St, Los Angeles, CA 90001" +234167,Bose SoundSport Headphones,1,99.99,07/07/19 16:18,"203 Adams St, Los Angeles, CA 90001" +234168,AA Batteries (4-pack),1,3.84,07/21/19 12:54,"795 Forest St, Seattle, WA 98101" +234169,iPhone,1,700,07/28/19 19:44,"258 Hickory St, Los Angeles, CA 90001" +234170,AAA Batteries (4-pack),2,2.99,07/20/19 17:36,"3 8th St, Boston, MA 02215" +234171,AA Batteries (4-pack),1,3.84,07/18/19 16:23,"630 11th St, Atlanta, GA 30301" +234172,Bose SoundSport Headphones,1,99.99,07/27/19 10:48,"367 Elm St, San Francisco, CA 94016" +234173,AA Batteries (4-pack),1,3.84,07/25/19 07:52,"164 Dogwood St, San Francisco, CA 94016" +234174,Lightning Charging Cable,1,14.95,07/05/19 12:44,"72 9th St, San Francisco, CA 94016" +234175,Flatscreen TV,1,300,07/02/19 21:48,"137 Cherry St, Dallas, TX 75001" +234176,Flatscreen TV,1,300,07/28/19 14:50,"452 Wilson St, San Francisco, CA 94016" +234177,27in FHD Monitor,1,149.99,07/07/19 14:15,"819 Lake St, Portland, OR 97035" +234178,Lightning Charging Cable,1,14.95,07/02/19 09:14,"369 Spruce St, Portland, OR 97035" +234179,Bose SoundSport Headphones,1,99.99,07/28/19 10:33,"330 2nd St, Los Angeles, CA 90001" +234180,Lightning Charging Cable,1,14.95,07/21/19 20:18,"566 Meadow St, New York City, NY 10001" +234181,Lightning Charging Cable,2,14.95,07/20/19 18:22,"577 Jackson St, San Francisco, CA 94016" +234182,iPhone,1,700,07/29/19 17:13,"168 Meadow St, Boston, MA 02215" +234183,Wired Headphones,1,11.99,07/31/19 12:05,"476 Church St, Atlanta, GA 30301" +234184,AA Batteries (4-pack),1,3.84,07/14/19 18:51,"22 Forest St, Austin, TX 73301" +234185,Lightning Charging Cable,1,14.95,07/06/19 11:18,"821 Dogwood St, Los Angeles, CA 90001" +234186,ThinkPad Laptop,1,999.99,07/23/19 01:28,"742 13th St, San Francisco, CA 94016" +234187,LG Washing Machine,1,600.0,07/02/19 08:59,"851 Lakeview St, San Francisco, CA 94016" +234188,iPhone,1,700,07/25/19 16:10,"425 Cedar St, Los Angeles, CA 90001" +234189,Lightning Charging Cable,1,14.95,07/30/19 10:42,"805 4th St, Seattle, WA 98101" +234190,27in FHD Monitor,1,149.99,07/18/19 07:52,"272 Jefferson St, San Francisco, CA 94016" +234191,AA Batteries (4-pack),1,3.84,07/03/19 17:38,"391 Willow St, San Francisco, CA 94016" +234192,Wired Headphones,1,11.99,07/08/19 18:10,"130 12th St, San Francisco, CA 94016" +234193,AAA Batteries (4-pack),1,2.99,07/10/19 18:27,"466 Park St, San Francisco, CA 94016" +234194,Bose SoundSport Headphones,1,99.99,07/29/19 01:34,"367 Center St, San Francisco, CA 94016" +234195,AA Batteries (4-pack),1,3.84,07/21/19 07:17,"241 Adams St, San Francisco, CA 94016" +234196,Bose SoundSport Headphones,1,99.99,07/04/19 14:26,"885 Hickory St, New York City, NY 10001" +234197,27in 4K Gaming Monitor,1,389.99,07/29/19 15:56,"842 West St, Seattle, WA 98101" +234198,Lightning Charging Cable,1,14.95,07/06/19 11:29,"52 Cherry St, Portland, OR 97035" +234199,Apple Airpods Headphones,1,150,07/19/19 08:28,"561 Johnson St, New York City, NY 10001" +234200,34in Ultrawide Monitor,1,379.99,07/16/19 10:19,"120 10th St, Atlanta, GA 30301" +234201,Apple Airpods Headphones,1,150,07/07/19 13:07,"346 9th St, San Francisco, CA 94016" +234202,20in Monitor,1,109.99,07/25/19 12:13,"727 Madison St, New York City, NY 10001" +234203,AA Batteries (4-pack),1,3.84,07/12/19 14:10,"319 River St, Portland, OR 97035" +234204,Google Phone,1,600,07/25/19 14:05,"93 Madison St, New York City, NY 10001" +234205,Flatscreen TV,1,300,07/15/19 01:47,"152 Lake St, Los Angeles, CA 90001" +234206,27in 4K Gaming Monitor,1,389.99,07/26/19 19:36,"103 Sunset St, Los Angeles, CA 90001" +234207,Apple Airpods Headphones,1,150,07/09/19 14:15,"194 Dogwood St, Dallas, TX 75001" +234208,27in 4K Gaming Monitor,1,389.99,07/18/19 11:59,"90 Lake St, San Francisco, CA 94016" +234209,Macbook Pro Laptop,1,1700,07/15/19 10:42,"538 Meadow St, Austin, TX 73301" +234210,USB-C Charging Cable,1,11.95,07/12/19 18:48,"278 Ridge St, Los Angeles, CA 90001" +234211,Apple Airpods Headphones,1,150,07/10/19 13:51,"466 Hickory St, San Francisco, CA 94016" +234212,Google Phone,1,600,07/19/19 13:58,"766 Johnson St, Portland, OR 97035" +234213,AA Batteries (4-pack),1,3.84,07/21/19 21:51,"253 Jefferson St, Dallas, TX 75001" +234214,Google Phone,1,600,07/03/19 12:54,"621 5th St, Dallas, TX 75001" +234215,iPhone,1,700,07/13/19 14:36,"711 Lake St, San Francisco, CA 94016" +234216,AA Batteries (4-pack),1,3.84,07/13/19 14:36,"151 Willow St, Boston, MA 02215" +234217,USB-C Charging Cable,1,11.95,07/31/19 19:29,"304 Willow St, San Francisco, CA 94016" +234218,Wired Headphones,1,11.99,07/25/19 18:15,"953 Cherry St, Dallas, TX 75001" +234219,iPhone,1,700,07/23/19 19:04,"379 Lakeview St, Boston, MA 02215" +234220,AA Batteries (4-pack),1,3.84,07/28/19 19:10,"419 Willow St, Los Angeles, CA 90001" +234221,Apple Airpods Headphones,1,150,07/15/19 00:37,"203 14th St, New York City, NY 10001" +234222,AA Batteries (4-pack),1,3.84,07/07/19 09:03,"105 10th St, Los Angeles, CA 90001" +234223,AA Batteries (4-pack),1,3.84,07/16/19 18:13,"599 Washington St, Seattle, WA 98101" +234224,AA Batteries (4-pack),1,3.84,07/28/19 19:50,"237 Jefferson St, San Francisco, CA 94016" +234225,Lightning Charging Cable,1,14.95,07/04/19 17:57,"622 Dogwood St, Dallas, TX 75001" +234226,ThinkPad Laptop,1,999.99,07/18/19 16:49,"436 2nd St, Boston, MA 02215" +234227,Google Phone,1,600,07/11/19 11:59,"765 Forest St, Dallas, TX 75001" +234228,AAA Batteries (4-pack),1,2.99,07/16/19 05:51,"896 Ridge St, San Francisco, CA 94016" +234229,AAA Batteries (4-pack),2,2.99,07/28/19 20:56,"858 Center St, San Francisco, CA 94016" +234230,Wired Headphones,1,11.99,07/14/19 11:49,"555 Hill St, Seattle, WA 98101" +234231,20in Monitor,1,109.99,07/13/19 16:34,"137 13th St, New York City, NY 10001" +234232,Lightning Charging Cable,1,14.95,07/08/19 09:30,"273 Chestnut St, Portland, OR 97035" +234233,AAA Batteries (4-pack),1,2.99,07/26/19 17:04,"346 Meadow St, Los Angeles, CA 90001" +234234,Lightning Charging Cable,1,14.95,07/29/19 11:50,"868 Adams St, Los Angeles, CA 90001" +234235,AAA Batteries (4-pack),2,2.99,07/18/19 16:17,"120 South St, Boston, MA 02215" +234236,Macbook Pro Laptop,1,1700,07/25/19 18:34,"323 Church St, Boston, MA 02215" +234237,USB-C Charging Cable,1,11.95,07/15/19 18:43,"476 Hickory St, Los Angeles, CA 90001" +234238,USB-C Charging Cable,1,11.95,07/28/19 11:09,"479 Chestnut St, Boston, MA 02215" +234239,Wired Headphones,1,11.99,07/28/19 06:38,"874 10th St, New York City, NY 10001" +234240,iPhone,1,700,07/17/19 21:26,"57 West St, San Francisco, CA 94016" +234241,Bose SoundSport Headphones,1,99.99,07/18/19 09:48,"934 Jefferson St, San Francisco, CA 94016" +234242,AAA Batteries (4-pack),1,2.99,07/17/19 06:28,"428 Wilson St, Atlanta, GA 30301" +234243,AAA Batteries (4-pack),2,2.99,07/10/19 20:13,"880 Center St, San Francisco, CA 94016" +234244,Wired Headphones,1,11.99,07/31/19 17:22,"522 11th St, Atlanta, GA 30301" +234245,USB-C Charging Cable,2,11.95,07/20/19 00:44,"308 Chestnut St, Portland, OR 97035" +234246,27in FHD Monitor,1,149.99,07/04/19 16:08,"994 Lakeview St, Boston, MA 02215" +234247,AAA Batteries (4-pack),2,2.99,07/15/19 17:13,"960 Cherry St, Seattle, WA 98101" +234248,USB-C Charging Cable,1,11.95,07/05/19 11:32,"344 Cherry St, Atlanta, GA 30301" +234249,Google Phone,1,600,07/04/19 21:52,"959 South St, San Francisco, CA 94016" +234250,AAA Batteries (4-pack),1,2.99,07/26/19 12:59,"868 Main St, New York City, NY 10001" +234251,AA Batteries (4-pack),1,3.84,07/12/19 15:05,"379 Wilson St, Portland, OR 97035" +234252,Apple Airpods Headphones,1,150,07/01/19 18:29,"895 Dogwood St, San Francisco, CA 94016" +234253,27in 4K Gaming Monitor,1,389.99,07/28/19 08:51,"82 4th St, San Francisco, CA 94016" +234254,Macbook Pro Laptop,1,1700,07/26/19 13:26,"921 Park St, Seattle, WA 98101" +234255,USB-C Charging Cable,1,11.95,07/17/19 07:38,"326 Park St, Portland, OR 97035" +234256,USB-C Charging Cable,1,11.95,07/31/19 23:10,"253 Park St, San Francisco, CA 94016" +234257,Bose SoundSport Headphones,1,99.99,07/23/19 20:15,"303 Sunset St, Boston, MA 02215" +234258,Bose SoundSport Headphones,1,99.99,07/03/19 16:36,"518 Adams St, Dallas, TX 75001" +234259,AAA Batteries (4-pack),2,2.99,07/27/19 12:12,"610 13th St, Atlanta, GA 30301" +234260,USB-C Charging Cable,1,11.95,07/13/19 01:09,"185 10th St, Los Angeles, CA 90001" +234261,Apple Airpods Headphones,1,150,07/16/19 12:40,"522 Cedar St, Los Angeles, CA 90001" +234262,USB-C Charging Cable,1,11.95,07/20/19 17:36,"174 Lake St, San Francisco, CA 94016" +234263,27in 4K Gaming Monitor,1,389.99,07/01/19 15:32,"519 Walnut St, Los Angeles, CA 90001" +234264,AA Batteries (4-pack),2,3.84,07/27/19 09:44,"46 South St, Seattle, WA 98101" +234265,Flatscreen TV,1,300,07/26/19 22:36,"748 Hickory St, San Francisco, CA 94016" +234266,USB-C Charging Cable,2,11.95,07/21/19 12:31,"488 Ridge St, Atlanta, GA 30301" +234267,iPhone,1,700,07/23/19 19:37,"748 Main St, Boston, MA 02215" +234268,Flatscreen TV,1,300,07/27/19 22:02,"282 Park St, San Francisco, CA 94016" +234269,USB-C Charging Cable,1,11.95,07/26/19 18:50,"775 Lincoln St, Seattle, WA 98101" +234270,AA Batteries (4-pack),1,3.84,07/27/19 14:28,"542 Forest St, Los Angeles, CA 90001" +234271,Apple Airpods Headphones,1,150,07/30/19 18:30,"699 Hill St, San Francisco, CA 94016" +234272,AAA Batteries (4-pack),2,2.99,07/19/19 10:03,"804 West St, Atlanta, GA 30301" +234273,34in Ultrawide Monitor,1,379.99,07/31/19 10:43,"851 Chestnut St, Boston, MA 02215" +234274,Lightning Charging Cable,2,14.95,07/18/19 22:10,"114 Lakeview St, Los Angeles, CA 90001" +234275,Flatscreen TV,1,300,07/16/19 17:22,"103 Church St, Portland, OR 97035" +234276,USB-C Charging Cable,1,11.95,07/02/19 18:28,"789 Lincoln St, Dallas, TX 75001" +234277,Apple Airpods Headphones,1,150,07/14/19 22:51,"731 Lincoln St, Los Angeles, CA 90001" +234278,USB-C Charging Cable,1,11.95,07/07/19 19:03,"387 Lakeview St, San Francisco, CA 94016" +234279,Lightning Charging Cable,1,14.95,07/05/19 17:50,"735 Spruce St, Los Angeles, CA 90001" +234280,34in Ultrawide Monitor,1,379.99,07/13/19 06:30,"771 Highland St, Austin, TX 73301" +234280,USB-C Charging Cable,1,11.95,07/13/19 06:30,"771 Highland St, Austin, TX 73301" +234281,USB-C Charging Cable,1,11.95,07/24/19 17:34,"722 8th St, San Francisco, CA 94016" +234282,Bose SoundSport Headphones,1,99.99,07/25/19 21:08,"737 Maple St, Atlanta, GA 30301" +234283,AA Batteries (4-pack),1,3.84,07/13/19 11:38,"824 Forest St, Los Angeles, CA 90001" +234284,AAA Batteries (4-pack),1,2.99,07/12/19 17:39,"250 Willow St, Atlanta, GA 30301" +234285,USB-C Charging Cable,1,11.95,07/18/19 14:55,"847 Madison St, Los Angeles, CA 90001" +234286,AAA Batteries (4-pack),2,2.99,07/30/19 09:29,"915 Jefferson St, San Francisco, CA 94016" +234287,AA Batteries (4-pack),3,3.84,07/16/19 08:40,"342 9th St, Portland, OR 97035" +234288,USB-C Charging Cable,1,11.95,07/20/19 19:33,"698 Ridge St, San Francisco, CA 94016" +234289,AA Batteries (4-pack),1,3.84,07/06/19 13:35,"571 Forest St, Boston, MA 02215" +234290,USB-C Charging Cable,1,11.95,07/28/19 11:26,"153 6th St, San Francisco, CA 94016" +234291,AAA Batteries (4-pack),2,2.99,07/23/19 08:22,"671 Pine St, Dallas, TX 75001" +234292,Bose SoundSport Headphones,1,99.99,07/17/19 13:24,"861 Elm St, Boston, MA 02215" +234293,Lightning Charging Cable,1,14.95,07/06/19 06:25,"20 12th St, San Francisco, CA 94016" +234294,Google Phone,1,600,07/10/19 09:36,"966 Jackson St, Dallas, TX 75001" +234294,USB-C Charging Cable,1,11.95,07/10/19 09:36,"966 Jackson St, Dallas, TX 75001" +234294,Bose SoundSport Headphones,1,99.99,07/10/19 09:36,"966 Jackson St, Dallas, TX 75001" +234295,27in FHD Monitor,1,149.99,07/16/19 12:37,"703 Church St, San Francisco, CA 94016" +234296,Wired Headphones,1,11.99,07/08/19 01:08,"86 12th St, Seattle, WA 98101" +234297,Apple Airpods Headphones,1,150,07/20/19 13:40,"256 4th St, New York City, NY 10001" +234297,Apple Airpods Headphones,1,150,07/20/19 13:40,"256 4th St, New York City, NY 10001" +234298,AA Batteries (4-pack),2,3.84,07/17/19 12:53,"228 Lake St, Los Angeles, CA 90001" +234299,27in FHD Monitor,1,149.99,07/12/19 06:28,"594 South St, Boston, MA 02215" +234300,27in FHD Monitor,1,149.99,07/18/19 19:26,"558 Jefferson St, Atlanta, GA 30301" +234301,USB-C Charging Cable,1,11.95,07/15/19 06:47,"666 Lakeview St, Seattle, WA 98101" +234302,Bose SoundSport Headphones,1,99.99,07/07/19 13:31,"595 Sunset St, Seattle, WA 98101" +234303,USB-C Charging Cable,1,11.95,07/05/19 16:20,"56 6th St, Boston, MA 02215" +234304,34in Ultrawide Monitor,1,379.99,07/19/19 19:06,"132 Forest St, New York City, NY 10001" +234305,Bose SoundSport Headphones,1,99.99,07/05/19 19:02,"871 Adams St, Los Angeles, CA 90001" +234305,Apple Airpods Headphones,1,150,07/05/19 19:02,"871 Adams St, Los Angeles, CA 90001" +234306,AA Batteries (4-pack),2,3.84,07/29/19 10:07,"747 Park St, Dallas, TX 75001" +234307,AA Batteries (4-pack),1,3.84,07/25/19 11:27,"325 13th St, New York City, NY 10001" +234308,AA Batteries (4-pack),1,3.84,07/01/19 17:23,"719 Wilson St, Atlanta, GA 30301" +234309,Lightning Charging Cable,1,14.95,07/28/19 20:16,"164 Ridge St, New York City, NY 10001" +234310,iPhone,1,700,07/10/19 18:21,"107 Center St, San Francisco, CA 94016" +234310,Lightning Charging Cable,1,14.95,07/10/19 18:21,"107 Center St, San Francisco, CA 94016" +234311,27in FHD Monitor,1,149.99,07/13/19 13:15,"623 4th St, Los Angeles, CA 90001" +234312,AAA Batteries (4-pack),1,2.99,07/22/19 21:26,"309 Johnson St, Los Angeles, CA 90001" +234313,USB-C Charging Cable,1,11.95,07/29/19 20:47,"241 Ridge St, Los Angeles, CA 90001" +234314,Flatscreen TV,1,300,07/17/19 18:00,"612 Sunset St, Los Angeles, CA 90001" +234315,Bose SoundSport Headphones,1,99.99,07/04/19 21:18,"918 Adams St, Dallas, TX 75001" +234316,Wired Headphones,1,11.99,07/03/19 18:20,"210 Meadow St, San Francisco, CA 94016" +234317,Bose SoundSport Headphones,1,99.99,07/18/19 21:39,"372 Wilson St, Atlanta, GA 30301" +234318,USB-C Charging Cable,1,11.95,07/17/19 19:21,"317 Maple St, Los Angeles, CA 90001" +234319,Apple Airpods Headphones,1,150,07/18/19 10:51,"263 Jackson St, San Francisco, CA 94016" +234320,USB-C Charging Cable,1,11.95,07/26/19 15:16,"861 8th St, Los Angeles, CA 90001" +234321,USB-C Charging Cable,1,11.95,07/11/19 15:53,"920 Lake St, San Francisco, CA 94016" +234322,AA Batteries (4-pack),2,3.84,07/11/19 21:53,"543 1st St, Los Angeles, CA 90001" +234323,AA Batteries (4-pack),1,3.84,07/17/19 20:20,"846 Hill St, Boston, MA 02215" +234324,Lightning Charging Cable,1,14.95,07/01/19 16:09,"296 Spruce St, Los Angeles, CA 90001" +234325,34in Ultrawide Monitor,1,379.99,07/01/19 11:13,"611 10th St, San Francisco, CA 94016" +234326,34in Ultrawide Monitor,1,379.99,07/16/19 22:58,"240 Pine St, Los Angeles, CA 90001" +234327,iPhone,1,700,07/01/19 14:34,"841 Lake St, Boston, MA 02215" +234327,Wired Headphones,1,11.99,07/01/19 14:34,"841 Lake St, Boston, MA 02215" +234328,27in 4K Gaming Monitor,1,389.99,07/12/19 14:11,"911 Jackson St, San Francisco, CA 94016" +234329,Wired Headphones,1,11.99,07/17/19 16:27,"709 7th St, Dallas, TX 75001" +234330,USB-C Charging Cable,1,11.95,07/31/19 21:55,"427 Lincoln St, San Francisco, CA 94016" +234331,Google Phone,1,600,07/25/19 14:27,"403 Wilson St, New York City, NY 10001" +234332,Lightning Charging Cable,1,14.95,07/06/19 19:28,"967 Forest St, Boston, MA 02215" +234333,27in 4K Gaming Monitor,1,389.99,07/31/19 08:43,"653 Ridge St, San Francisco, CA 94016" +234334,AAA Batteries (4-pack),1,2.99,07/30/19 17:59,"240 Lakeview St, Portland, OR 97035" +234335,Lightning Charging Cable,1,14.95,07/06/19 18:38,"132 8th St, Seattle, WA 98101" +234336,Flatscreen TV,1,300,07/08/19 08:21,"485 Lincoln St, Los Angeles, CA 90001" +234337,Lightning Charging Cable,1,14.95,07/13/19 13:21,"290 Madison St, Los Angeles, CA 90001" +234338,27in 4K Gaming Monitor,1,389.99,07/24/19 09:40,"522 Forest St, Dallas, TX 75001" +234339,Apple Airpods Headphones,1,150,07/01/19 16:13,"903 Ridge St, Boston, MA 02215" +234340,Apple Airpods Headphones,1,150,07/30/19 18:28,"345 Hill St, San Francisco, CA 94016" +234341,20in Monitor,1,109.99,07/13/19 21:35,"685 Madison St, Los Angeles, CA 90001" +234342,USB-C Charging Cable,1,11.95,07/28/19 17:26,"121 Main St, San Francisco, CA 94016" +234343,USB-C Charging Cable,1,11.95,07/10/19 18:26,"122 Johnson St, Atlanta, GA 30301" +234344,iPhone,1,700,07/12/19 17:45,"413 Jackson St, San Francisco, CA 94016" +234345,Lightning Charging Cable,1,14.95,07/26/19 21:48,"885 6th St, Dallas, TX 75001" +234346,Wired Headphones,1,11.99,07/29/19 21:34,"174 Adams St, San Francisco, CA 94016" +234347,ThinkPad Laptop,1,999.99,07/08/19 15:09,"459 5th St, Los Angeles, CA 90001" +234348,Apple Airpods Headphones,1,150,07/07/19 07:05,"453 Highland St, Portland, OR 97035" +234349,iPhone,1,700,07/13/19 17:22,"183 North St, San Francisco, CA 94016" +234349,Apple Airpods Headphones,1,150,07/13/19 17:22,"183 North St, San Francisco, CA 94016" +234350,20in Monitor,1,109.99,07/04/19 07:32,"23 Pine St, Los Angeles, CA 90001" +234351,Bose SoundSport Headphones,1,99.99,07/02/19 12:42,"843 Elm St, Boston, MA 02215" +234352,AAA Batteries (4-pack),1,2.99,07/18/19 16:59,"428 Lincoln St, San Francisco, CA 94016" +234353,Lightning Charging Cable,1,14.95,07/25/19 18:41,"479 5th St, Seattle, WA 98101" +234354,AAA Batteries (4-pack),1,2.99,07/29/19 11:15,"949 Main St, Los Angeles, CA 90001" +234355,AAA Batteries (4-pack),1,2.99,07/24/19 23:09,"226 13th St, Los Angeles, CA 90001" +234356,Bose SoundSport Headphones,1,99.99,07/10/19 18:22,"667 6th St, New York City, NY 10001" +234357,USB-C Charging Cable,2,11.95,07/04/19 11:24,"833 Chestnut St, Boston, MA 02215" +234358,27in FHD Monitor,1,149.99,07/30/19 14:11,"658 North St, New York City, NY 10001" +234359,Macbook Pro Laptop,1,1700,07/21/19 18:31,"356 Main St, Los Angeles, CA 90001" +234360,AAA Batteries (4-pack),1,2.99,07/26/19 23:45,"772 Sunset St, Portland, OR 97035" +234361,Apple Airpods Headphones,1,150,07/13/19 16:59,"545 6th St, San Francisco, CA 94016" +234362,Lightning Charging Cable,1,14.95,07/06/19 20:33,"368 West St, New York City, NY 10001" +234363,Lightning Charging Cable,1,14.95,07/05/19 12:55,"863 River St, New York City, NY 10001" +234364,ThinkPad Laptop,1,999.99,07/10/19 13:59,"43 Highland St, Los Angeles, CA 90001" +234365,Bose SoundSport Headphones,1,99.99,07/17/19 13:10,"404 Pine St, New York City, NY 10001" +234366,27in FHD Monitor,1,149.99,07/20/19 00:44,"239 Chestnut St, San Francisco, CA 94016" +234367,Apple Airpods Headphones,1,150,07/17/19 09:15,"555 Jackson St, San Francisco, CA 94016" +234368,Google Phone,1,600,07/29/19 13:22,"690 Lake St, Dallas, TX 75001" +234369,Wired Headphones,1,11.99,07/09/19 10:27,"357 Sunset St, Atlanta, GA 30301" +234370,USB-C Charging Cable,1,11.95,07/27/19 07:57,"990 Hill St, Seattle, WA 98101" +234371,AA Batteries (4-pack),1,3.84,07/19/19 15:02,"493 Dogwood St, Los Angeles, CA 90001" +234372,Bose SoundSport Headphones,1,99.99,07/14/19 21:39,"359 8th St, San Francisco, CA 94016" +234373,Lightning Charging Cable,2,14.95,07/10/19 16:24,"798 8th St, Los Angeles, CA 90001" +234374,Wired Headphones,1,11.99,07/04/19 17:50,"473 Main St, San Francisco, CA 94016" +234375,Bose SoundSport Headphones,1,99.99,07/12/19 21:09,"423 Park St, Los Angeles, CA 90001" +234376,Apple Airpods Headphones,1,150,07/03/19 00:26,"875 1st St, San Francisco, CA 94016" +234377,Apple Airpods Headphones,1,150,07/28/19 22:30,"639 10th St, San Francisco, CA 94016" +234378,USB-C Charging Cable,1,11.95,07/10/19 11:04,"623 Lakeview St, Austin, TX 73301" +234379,USB-C Charging Cable,1,11.95,07/16/19 13:20,"784 14th St, Portland, OR 97035" +234380,Lightning Charging Cable,1,14.95,07/08/19 14:22,"522 8th St, San Francisco, CA 94016" +234381,AA Batteries (4-pack),2,3.84,07/22/19 13:27,"84 Pine St, Dallas, TX 75001" +234382,AA Batteries (4-pack),1,3.84,07/22/19 13:15,"871 Wilson St, Portland, OR 97035" +234383,USB-C Charging Cable,1,11.95,07/28/19 17:52,"84 Jefferson St, Seattle, WA 98101" +234384,27in 4K Gaming Monitor,1,389.99,07/12/19 20:28,"782 Main St, Austin, TX 73301" +234385,AAA Batteries (4-pack),5,2.99,07/05/19 11:11,"760 Lakeview St, Los Angeles, CA 90001" +234386,AA Batteries (4-pack),1,3.84,07/09/19 12:59,"286 Lake St, New York City, NY 10001" +234387,27in FHD Monitor,1,149.99,07/07/19 12:12,"380 Highland St, Los Angeles, CA 90001" +234388,Apple Airpods Headphones,1,150,07/07/19 08:54,"575 Maple St, New York City, NY 10001" +234389,USB-C Charging Cable,2,11.95,07/23/19 18:46,"210 River St, Dallas, TX 75001" +234390,Wired Headphones,3,11.99,07/19/19 21:08,"23 Meadow St, Portland, ME 04101" +234390,ThinkPad Laptop,1,999.99,07/19/19 21:08,"23 Meadow St, Portland, ME 04101" +234391,Google Phone,1,600,07/01/19 19:49,"606 Forest St, Dallas, TX 75001" +234392,ThinkPad Laptop,1,999.99,07/28/19 21:50,"855 Jefferson St, Austin, TX 73301" +234393,Flatscreen TV,1,300,07/18/19 14:37,"768 Ridge St, San Francisco, CA 94016" +234394,AA Batteries (4-pack),2,3.84,07/16/19 14:11,"674 9th St, New York City, NY 10001" +234395,Lightning Charging Cable,1,14.95,07/03/19 01:57,"161 Madison St, San Francisco, CA 94016" +234396,Apple Airpods Headphones,1,150,07/15/19 08:22,"362 Adams St, Dallas, TX 75001" +234397,Lightning Charging Cable,2,14.95,07/28/19 10:19,"269 13th St, Los Angeles, CA 90001" +234398,27in 4K Gaming Monitor,1,389.99,07/16/19 14:09,"867 Willow St, Los Angeles, CA 90001" +234399,iPhone,1,700,07/15/19 13:47,"40 Lincoln St, Seattle, WA 98101" +234400,20in Monitor,1,109.99,07/18/19 11:16,"532 Pine St, Atlanta, GA 30301" +234401,Bose SoundSport Headphones,1,99.99,07/27/19 06:47,"498 River St, Seattle, WA 98101" +234402,27in FHD Monitor,1,149.99,07/18/19 17:56,"34 Cedar St, Atlanta, GA 30301" +234403,Lightning Charging Cable,1,14.95,07/17/19 17:46,"217 14th St, Los Angeles, CA 90001" +234404,Wired Headphones,1,11.99,07/18/19 18:43,"297 South St, Atlanta, GA 30301" +234405,AA Batteries (4-pack),1,3.84,07/27/19 18:46,"856 Sunset St, Dallas, TX 75001" +234406,USB-C Charging Cable,1,11.95,07/19/19 12:49,"809 Lincoln St, New York City, NY 10001" +234407,AAA Batteries (4-pack),1,2.99,07/21/19 11:54,"393 Sunset St, New York City, NY 10001" +234408,Bose SoundSport Headphones,1,99.99,07/01/19 14:58,"595 Highland St, Portland, OR 97035" +234409,AAA Batteries (4-pack),1,2.99,07/15/19 15:07,"434 1st St, Seattle, WA 98101" +234410,ThinkPad Laptop,1,999.99,07/03/19 23:38,"305 1st St, Austin, TX 73301" +234411,Wired Headphones,1,11.99,07/14/19 19:10,"912 Johnson St, San Francisco, CA 94016" +234412,27in 4K Gaming Monitor,1,389.99,07/19/19 15:10,"813 10th St, San Francisco, CA 94016" +234413,Wired Headphones,2,11.99,07/12/19 07:51,"477 2nd St, Austin, TX 73301" +234414,Macbook Pro Laptop,1,1700,07/05/19 20:31,"404 Dogwood St, Dallas, TX 75001" +234415,AAA Batteries (4-pack),1,2.99,07/24/19 18:13,"191 Willow St, Los Angeles, CA 90001" +234416,Google Phone,1,600,07/03/19 07:53,"19 Main St, San Francisco, CA 94016" +234417,Wired Headphones,1,11.99,07/23/19 18:40,"476 Washington St, Atlanta, GA 30301" +234418,USB-C Charging Cable,1,11.95,07/17/19 14:00,"997 Maple St, Atlanta, GA 30301" +234419,Apple Airpods Headphones,1,150,07/08/19 21:45,"51 Maple St, Portland, OR 97035" +234420,Lightning Charging Cable,1,14.95,07/21/19 11:00,"850 Meadow St, San Francisco, CA 94016" +234421,Flatscreen TV,1,300,07/10/19 23:04,"130 Highland St, Portland, ME 04101" +234422,Bose SoundSport Headphones,1,99.99,07/07/19 10:23,"922 Hill St, San Francisco, CA 94016" +234423,iPhone,1,700,07/02/19 13:48,"242 Elm St, Atlanta, GA 30301" +234424,Google Phone,1,600,07/21/19 11:25,"847 Forest St, Los Angeles, CA 90001" +234425,LG Washing Machine,1,600.0,07/17/19 21:43,"426 Dogwood St, Boston, MA 02215" +234426,Google Phone,1,600,07/10/19 14:33,"296 6th St, Los Angeles, CA 90001" +234427,Apple Airpods Headphones,1,150,07/08/19 17:30,"794 Dogwood St, Boston, MA 02215" +234428,USB-C Charging Cable,2,11.95,07/18/19 09:00,"121 Pine St, Seattle, WA 98101" +234429,AA Batteries (4-pack),1,3.84,07/01/19 14:52,"859 12th St, San Francisco, CA 94016" +234430,Google Phone,1,600,07/03/19 22:38,"226 Meadow St, Boston, MA 02215" +234431,20in Monitor,1,109.99,07/15/19 22:40,"918 Park St, San Francisco, CA 94016" +234432,34in Ultrawide Monitor,1,379.99,07/23/19 12:37,"811 Lincoln St, Portland, OR 97035" +234433,AAA Batteries (4-pack),1,2.99,07/04/19 07:50,"713 Cherry St, Austin, TX 73301" +234434,AA Batteries (4-pack),1,3.84,07/08/19 19:32,"296 Maple St, Los Angeles, CA 90001" +234435,Lightning Charging Cable,1,14.95,07/22/19 15:02,"381 Elm St, San Francisco, CA 94016" +234436,Lightning Charging Cable,1,14.95,08/01/19 01:31,"952 North St, Los Angeles, CA 90001" +234437,Bose SoundSport Headphones,1,99.99,07/02/19 19:09,"514 Chestnut St, Los Angeles, CA 90001" +234438,Wired Headphones,2,11.99,07/12/19 00:18,"572 Cedar St, San Francisco, CA 94016" +234438,Lightning Charging Cable,1,14.95,07/12/19 00:18,"572 Cedar St, San Francisco, CA 94016" +234439,ThinkPad Laptop,1,999.99,07/12/19 13:10,"425 13th St, San Francisco, CA 94016" +234440,Lightning Charging Cable,1,14.95,07/10/19 19:22,"54 Sunset St, Los Angeles, CA 90001" +234441,AAA Batteries (4-pack),4,2.99,07/05/19 20:04,"85 Johnson St, Atlanta, GA 30301" +234442,USB-C Charging Cable,1,11.95,07/19/19 22:05,"146 Jefferson St, Los Angeles, CA 90001" +234443,Lightning Charging Cable,1,14.95,07/27/19 16:05,"774 Hickory St, Dallas, TX 75001" +234444,USB-C Charging Cable,1,11.95,07/25/19 15:47,"912 Lake St, San Francisco, CA 94016" +234445,Lightning Charging Cable,1,14.95,07/31/19 19:06,"859 Madison St, New York City, NY 10001" +234446,USB-C Charging Cable,1,11.95,07/12/19 18:11,"859 11th St, Boston, MA 02215" +234447,AAA Batteries (4-pack),1,2.99,07/18/19 19:41,"689 13th St, San Francisco, CA 94016" +234448,AAA Batteries (4-pack),1,2.99,07/28/19 11:19,"283 Hill St, San Francisco, CA 94016" +234449,AAA Batteries (4-pack),2,2.99,07/10/19 00:52,"853 Maple St, Los Angeles, CA 90001" +234450,Wired Headphones,3,11.99,07/03/19 03:53,"423 Hickory St, Los Angeles, CA 90001" +234451,Wired Headphones,1,11.99,07/16/19 15:48,"421 Johnson St, Austin, TX 73301" +234452,20in Monitor,1,109.99,07/28/19 07:45,"577 6th St, New York City, NY 10001" +234453,iPhone,1,700,07/21/19 18:50,"21 Lakeview St, Austin, TX 73301" +234454,Lightning Charging Cable,1,14.95,07/17/19 20:04,"967 9th St, San Francisco, CA 94016" +234455,Macbook Pro Laptop,1,1700,07/15/19 09:19,"435 Chestnut St, New York City, NY 10001" +234456,LG Washing Machine,1,600.0,07/29/19 22:42,"782 Spruce St, Austin, TX 73301" +234457,Bose SoundSport Headphones,1,99.99,07/25/19 11:04,"613 Jefferson St, Boston, MA 02215" +234458,AAA Batteries (4-pack),1,2.99,07/07/19 20:09,"745 Willow St, Atlanta, GA 30301" +234459,LG Washing Machine,1,600.0,07/21/19 21:02,"267 1st St, Atlanta, GA 30301" +234460,Wired Headphones,1,11.99,07/23/19 17:54,"440 5th St, Portland, OR 97035" +234461,Lightning Charging Cable,1,14.95,07/17/19 13:33,"601 Madison St, Boston, MA 02215" +234462,iPhone,1,700,07/10/19 22:09,"943 1st St, New York City, NY 10001" +234462,Wired Headphones,1,11.99,07/10/19 22:09,"943 1st St, New York City, NY 10001" +234463,Lightning Charging Cable,1,14.95,07/17/19 22:44,"126 2nd St, Atlanta, GA 30301" +234464,27in 4K Gaming Monitor,1,389.99,07/30/19 14:34,"116 South St, Portland, ME 04101" +,,,,, +234465,AA Batteries (4-pack),2,3.84,07/08/19 17:27,"87 Meadow St, New York City, NY 10001" +234466,USB-C Charging Cable,1,11.95,07/08/19 11:48,"87 Cedar St, San Francisco, CA 94016" +234467,Google Phone,1,600,07/06/19 07:25,"770 1st St, San Francisco, CA 94016" +234468,AAA Batteries (4-pack),1,2.99,07/29/19 16:09,"743 5th St, Atlanta, GA 30301" +234469,Google Phone,1,600,07/05/19 09:07,"968 14th St, Los Angeles, CA 90001" +234470,Lightning Charging Cable,1,14.95,07/17/19 13:30,"370 Lincoln St, Austin, TX 73301" +234471,Apple Airpods Headphones,1,150,07/12/19 12:06,"43 Lincoln St, New York City, NY 10001" +234472,Macbook Pro Laptop,1,1700,07/17/19 21:40,"246 Jefferson St, Dallas, TX 75001" +234473,Vareebadd Phone,1,400,07/02/19 17:32,"35 Lakeview St, Boston, MA 02215" +234473,USB-C Charging Cable,1,11.95,07/02/19 17:32,"35 Lakeview St, Boston, MA 02215" +234474,ThinkPad Laptop,1,999.99,07/27/19 14:51,"602 Dogwood St, Dallas, TX 75001" +234475,Macbook Pro Laptop,1,1700,07/26/19 23:06,"924 North St, Los Angeles, CA 90001" +234476,LG Washing Machine,1,600.0,07/18/19 14:43,"34 14th St, Austin, TX 73301" +234477,Lightning Charging Cable,1,14.95,07/02/19 16:19,"816 Ridge St, New York City, NY 10001" +234478,Apple Airpods Headphones,1,150,07/14/19 02:03,"280 Jackson St, San Francisco, CA 94016" +234479,Apple Airpods Headphones,1,150,07/07/19 14:15,"89 South St, Boston, MA 02215" +234480,AA Batteries (4-pack),1,3.84,07/06/19 14:31,"253 Chestnut St, Los Angeles, CA 90001" +234481,AA Batteries (4-pack),1,3.84,07/20/19 15:32,"489 Ridge St, New York City, NY 10001" +234482,USB-C Charging Cable,1,11.95,07/03/19 23:31,"517 Park St, San Francisco, CA 94016" +234483,AAA Batteries (4-pack),2,2.99,07/18/19 12:10,"984 14th St, San Francisco, CA 94016" +234484,Apple Airpods Headphones,1,150,07/25/19 15:56,"187 West St, San Francisco, CA 94016" +234485,USB-C Charging Cable,1,11.95,07/27/19 17:21,"628 5th St, Seattle, WA 98101" +234486,AA Batteries (4-pack),1,3.84,07/16/19 09:34,"884 Johnson St, Portland, OR 97035" +234487,AAA Batteries (4-pack),1,2.99,07/14/19 16:27,"361 4th St, Portland, OR 97035" +234488,27in FHD Monitor,1,149.99,07/06/19 17:17,"207 Center St, Dallas, TX 75001" +234489,AA Batteries (4-pack),1,3.84,07/23/19 19:46,"591 Willow St, Boston, MA 02215" +234490,Macbook Pro Laptop,1,1700,07/30/19 18:06,"30 Highland St, Dallas, TX 75001" +234491,AA Batteries (4-pack),1,3.84,07/15/19 12:40,"476 Spruce St, Los Angeles, CA 90001" +234492,Apple Airpods Headphones,1,150,07/16/19 22:24,"963 Sunset St, Boston, MA 02215" +234493,USB-C Charging Cable,1,11.95,07/21/19 12:59,"32 4th St, San Francisco, CA 94016" +234494,Lightning Charging Cable,1,14.95,07/12/19 20:02,"24 Wilson St, New York City, NY 10001" +234495,USB-C Charging Cable,1,11.95,07/04/19 18:58,"832 Walnut St, San Francisco, CA 94016" +234496,Wired Headphones,1,11.99,07/14/19 10:27,"490 Main St, San Francisco, CA 94016" +234497,Vareebadd Phone,1,400,07/20/19 12:16,"14 6th St, New York City, NY 10001" +234498,Apple Airpods Headphones,1,150,07/23/19 11:20,"277 Madison St, New York City, NY 10001" +234499,AA Batteries (4-pack),2,3.84,07/31/19 19:09,"394 12th St, Los Angeles, CA 90001" +234500,Flatscreen TV,1,300,07/15/19 14:45,"460 1st St, Seattle, WA 98101" +234501,27in 4K Gaming Monitor,1,389.99,07/14/19 13:49,"751 Forest St, Portland, OR 97035" +234502,AA Batteries (4-pack),1,3.84,07/23/19 19:10,"373 Center St, New York City, NY 10001" +234503,USB-C Charging Cable,1,11.95,07/03/19 17:10,"101 Highland St, Dallas, TX 75001" +234504,AAA Batteries (4-pack),2,2.99,07/02/19 00:19,"430 1st St, Seattle, WA 98101" +234505,USB-C Charging Cable,2,11.95,07/09/19 21:19,"525 8th St, Portland, OR 97035" +234506,AAA Batteries (4-pack),2,2.99,07/31/19 13:51,"299 7th St, Boston, MA 02215" +234507,27in FHD Monitor,1,149.99,07/10/19 22:17,"347 12th St, San Francisco, CA 94016" +234508,AA Batteries (4-pack),1,3.84,07/09/19 09:45,"974 Lakeview St, Atlanta, GA 30301" +234509,Lightning Charging Cable,1,14.95,07/23/19 10:56,"164 Lake St, New York City, NY 10001" +234510,Wired Headphones,1,11.99,07/24/19 13:28,"646 River St, Austin, TX 73301" +234511,Lightning Charging Cable,1,14.95,07/15/19 16:53,"436 10th St, Boston, MA 02215" +234512,iPhone,1,700,07/12/19 12:59,"579 9th St, Los Angeles, CA 90001" +234513,AAA Batteries (4-pack),1,2.99,07/23/19 13:06,"329 Wilson St, Los Angeles, CA 90001" +234514,27in FHD Monitor,1,149.99,07/03/19 10:53,"681 10th St, Seattle, WA 98101" +234515,AAA Batteries (4-pack),1,2.99,07/10/19 12:56,"738 6th St, San Francisco, CA 94016" +234516,Lightning Charging Cable,1,14.95,07/03/19 07:53,"985 Ridge St, San Francisco, CA 94016" +234517,USB-C Charging Cable,1,11.95,07/23/19 13:17,"48 Pine St, Boston, MA 02215" +234518,AAA Batteries (4-pack),1,2.99,07/13/19 10:52,"362 9th St, Atlanta, GA 30301" +234519,27in 4K Gaming Monitor,1,389.99,07/15/19 05:16,"631 Meadow St, Dallas, TX 75001" +234520,34in Ultrawide Monitor,1,379.99,07/06/19 14:28,"997 13th St, Los Angeles, CA 90001" +234521,AA Batteries (4-pack),1,3.84,07/12/19 15:42,"974 Chestnut St, Seattle, WA 98101" +234522,USB-C Charging Cable,1,11.95,07/28/19 12:08,"984 10th St, Dallas, TX 75001" +234523,Lightning Charging Cable,1,14.95,07/22/19 19:23,"969 Lakeview St, Los Angeles, CA 90001" +234524,USB-C Charging Cable,1,11.95,07/15/19 06:27,"595 Spruce St, New York City, NY 10001" +234525,AAA Batteries (4-pack),1,2.99,07/14/19 13:41,"335 Cedar St, New York City, NY 10001" +234526,AA Batteries (4-pack),1,3.84,07/04/19 19:39,"366 Main St, San Francisco, CA 94016" +234526,Google Phone,1,600,07/04/19 19:39,"366 Main St, San Francisco, CA 94016" +234527,Vareebadd Phone,1,400,07/03/19 12:14,"56 Cherry St, New York City, NY 10001" +234528,AAA Batteries (4-pack),1,2.99,07/19/19 17:29,"446 14th St, Seattle, WA 98101" +234529,27in FHD Monitor,1,149.99,07/02/19 17:25,"120 Ridge St, Atlanta, GA 30301" +234530,Wired Headphones,1,11.99,07/05/19 21:30,"640 Willow St, Los Angeles, CA 90001" +234531,iPhone,1,700,07/17/19 17:53,"352 Walnut St, New York City, NY 10001" +234532,Wired Headphones,1,11.99,07/10/19 15:21,"687 North St, San Francisco, CA 94016" +234533,Flatscreen TV,1,300,07/09/19 16:23,"581 4th St, Los Angeles, CA 90001" +234533,34in Ultrawide Monitor,1,379.99,07/09/19 16:23,"581 4th St, Los Angeles, CA 90001" +234534,AA Batteries (4-pack),2,3.84,07/15/19 08:20,"506 13th St, Seattle, WA 98101" +234535,ThinkPad Laptop,1,999.99,07/13/19 14:24,"978 4th St, Portland, ME 04101" +234536,Bose SoundSport Headphones,1,99.99,07/27/19 10:51,"680 14th St, Dallas, TX 75001" +234537,AA Batteries (4-pack),1,3.84,07/17/19 15:13,"826 Main St, San Francisco, CA 94016" +234538,AA Batteries (4-pack),1,3.84,07/24/19 01:54,"778 8th St, Boston, MA 02215" +234539,Apple Airpods Headphones,1,150,07/01/19 14:25,"907 Forest St, Atlanta, GA 30301" +234540,AAA Batteries (4-pack),1,2.99,07/28/19 22:47,"15 Walnut St, New York City, NY 10001" +234541,Apple Airpods Headphones,1,150,07/12/19 17:31,"105 Washington St, Los Angeles, CA 90001" +234542,Bose SoundSport Headphones,1,99.99,07/07/19 11:30,"947 Lake St, Austin, TX 73301" +234543,AAA Batteries (4-pack),1,2.99,07/13/19 11:40,"915 North St, Los Angeles, CA 90001" +234544,Bose SoundSport Headphones,1,99.99,07/11/19 16:47,"116 Dogwood St, San Francisco, CA 94016" +234545,Wired Headphones,1,11.99,07/13/19 12:01,"766 Meadow St, Los Angeles, CA 90001" +234546,Lightning Charging Cable,1,14.95,07/22/19 14:40,"86 Chestnut St, Los Angeles, CA 90001" +234546,Apple Airpods Headphones,1,150,07/22/19 14:40,"86 Chestnut St, Los Angeles, CA 90001" +234547,27in 4K Gaming Monitor,1,389.99,07/17/19 11:09,"612 Park St, New York City, NY 10001" +234548,AA Batteries (4-pack),1,3.84,07/18/19 11:06,"754 Maple St, Dallas, TX 75001" +234549,AAA Batteries (4-pack),3,2.99,07/01/19 21:17,"639 12th St, Austin, TX 73301" +234550,Lightning Charging Cable,2,14.95,07/08/19 22:16,"557 Jefferson St, Boston, MA 02215" +234551,AA Batteries (4-pack),3,3.84,07/18/19 11:27,"358 Elm St, New York City, NY 10001" +234552,AAA Batteries (4-pack),2,2.99,07/24/19 09:10,"734 Main St, Boston, MA 02215" +234553,Bose SoundSport Headphones,1,99.99,07/10/19 17:27,"105 Adams St, Dallas, TX 75001" +234554,Macbook Pro Laptop,1,1700,07/05/19 18:46,"800 10th St, Los Angeles, CA 90001" +234555,AAA Batteries (4-pack),1,2.99,07/18/19 13:32,"666 Jefferson St, Los Angeles, CA 90001" +234556,AAA Batteries (4-pack),2,2.99,07/30/19 19:21,"251 Spruce St, San Francisco, CA 94016" +234557,AA Batteries (4-pack),1,3.84,07/13/19 17:30,"448 Church St, Dallas, TX 75001" +234558,Wired Headphones,1,11.99,07/27/19 22:07,"692 West St, Dallas, TX 75001" +234559,ThinkPad Laptop,1,999.99,07/27/19 19:55,"595 Johnson St, Los Angeles, CA 90001" +234560,AAA Batteries (4-pack),2,2.99,07/09/19 21:18,"734 13th St, Boston, MA 02215" +234561,Wired Headphones,1,11.99,07/04/19 21:29,"456 Dogwood St, Seattle, WA 98101" +234562,USB-C Charging Cable,1,11.95,07/30/19 12:46,"20 Lincoln St, Boston, MA 02215" +234563,27in FHD Monitor,1,149.99,07/12/19 22:02,"982 Elm St, San Francisco, CA 94016" +234564,USB-C Charging Cable,1,11.95,07/30/19 01:58,"799 Johnson St, Portland, OR 97035" +234565,USB-C Charging Cable,1,11.95,07/07/19 05:46,"982 West St, San Francisco, CA 94016" +234566,Apple Airpods Headphones,1,150,07/01/19 19:10,"471 Chestnut St, New York City, NY 10001" +234567,Lightning Charging Cable,1,14.95,07/25/19 21:18,"23 Lincoln St, New York City, NY 10001" +234568,USB-C Charging Cable,1,11.95,07/19/19 15:38,"632 Highland St, Dallas, TX 75001" +234569,27in FHD Monitor,1,149.99,07/07/19 13:05,"642 2nd St, Portland, OR 97035" +234570,AAA Batteries (4-pack),1,2.99,07/31/19 21:30,"508 Jefferson St, Dallas, TX 75001" +234571,Apple Airpods Headphones,1,150,07/30/19 13:52,"239 8th St, Los Angeles, CA 90001" +234572,Macbook Pro Laptop,1,1700,07/20/19 14:45,"674 Adams St, Seattle, WA 98101" +234573,AA Batteries (4-pack),1,3.84,07/01/19 13:04,"161 Lakeview St, Los Angeles, CA 90001" +234574,Lightning Charging Cable,1,14.95,07/01/19 18:47,"569 Wilson St, Los Angeles, CA 90001" +234575,iPhone,1,700,07/13/19 09:42,"853 Johnson St, San Francisco, CA 94016" +234576,Lightning Charging Cable,1,14.95,07/31/19 15:24,"65 Sunset St, San Francisco, CA 94016" +234577,Lightning Charging Cable,1,14.95,07/19/19 11:33,"976 Adams St, San Francisco, CA 94016" +234578,ThinkPad Laptop,1,999.99,07/21/19 19:34,"156 2nd St, Boston, MA 02215" +234579,34in Ultrawide Monitor,1,379.99,07/28/19 19:24,"657 Madison St, Boston, MA 02215" +234580,27in FHD Monitor,1,149.99,07/25/19 13:05,"830 Chestnut St, Dallas, TX 75001" +234581,20in Monitor,1,109.99,07/23/19 09:44,"730 14th St, Dallas, TX 75001" +234582,USB-C Charging Cable,1,11.95,07/16/19 20:40,"633 Park St, San Francisco, CA 94016" +234583,Apple Airpods Headphones,1,150,07/09/19 13:52,"39 9th St, Boston, MA 02215" +234584,iPhone,1,700,07/18/19 14:00,"207 Main St, Boston, MA 02215" +234585,Apple Airpods Headphones,1,150,07/17/19 14:57,"873 Willow St, Seattle, WA 98101" +234586,Macbook Pro Laptop,1,1700,07/21/19 20:24,"57 Park St, New York City, NY 10001" +234587,Lightning Charging Cable,1,14.95,07/17/19 00:37,"60 Johnson St, Seattle, WA 98101" +234588,USB-C Charging Cable,1,11.95,07/14/19 05:19,"59 Maple St, Portland, OR 97035" +234589,AAA Batteries (4-pack),2,2.99,07/26/19 17:41,"526 Washington St, Atlanta, GA 30301" +234590,Lightning Charging Cable,1,14.95,07/09/19 11:51,"220 1st St, Los Angeles, CA 90001" +234591,AAA Batteries (4-pack),1,2.99,07/29/19 13:25,"269 6th St, Los Angeles, CA 90001" +234592,27in 4K Gaming Monitor,1,389.99,07/10/19 19:22,"261 Church St, San Francisco, CA 94016" +234593,Lightning Charging Cable,1,14.95,07/22/19 14:03,"970 11th St, San Francisco, CA 94016" +234594,Flatscreen TV,1,300,07/26/19 00:40,"651 Washington St, Dallas, TX 75001" +234595,34in Ultrawide Monitor,1,379.99,07/29/19 18:59,"756 Wilson St, Dallas, TX 75001" +234596,Apple Airpods Headphones,1,150,07/19/19 12:45,"145 Highland St, Seattle, WA 98101" +234597,AAA Batteries (4-pack),1,2.99,07/30/19 11:31,"498 7th St, San Francisco, CA 94016" +234598,USB-C Charging Cable,1,11.95,07/14/19 12:26,"890 Dogwood St, Los Angeles, CA 90001" +234599,AAA Batteries (4-pack),1,2.99,07/08/19 21:38,"138 Church St, Austin, TX 73301" +234600,Wired Headphones,1,11.99,07/30/19 17:20,"565 Johnson St, New York City, NY 10001" +234601,Google Phone,1,600,07/13/19 16:51,"913 Walnut St, Los Angeles, CA 90001" +234602,AAA Batteries (4-pack),2,2.99,07/29/19 14:29,"606 Lakeview St, Boston, MA 02215" +234603,AA Batteries (4-pack),1,3.84,07/27/19 18:55,"460 Meadow St, Los Angeles, CA 90001" +234604,AAA Batteries (4-pack),2,2.99,07/04/19 15:44,"384 Center St, Dallas, TX 75001" +234605,Apple Airpods Headphones,1,150,07/02/19 20:03,"960 Chestnut St, New York City, NY 10001" +234606,Flatscreen TV,1,300,07/15/19 18:16,"799 Lincoln St, Dallas, TX 75001" +234607,iPhone,1,700,07/02/19 12:02,"808 Maple St, Los Angeles, CA 90001" +234608,Bose SoundSport Headphones,1,99.99,07/15/19 15:11,"617 Walnut St, New York City, NY 10001" +234609,USB-C Charging Cable,1,11.95,07/10/19 10:01,"209 Ridge St, Atlanta, GA 30301" +234610,AAA Batteries (4-pack),1,2.99,07/26/19 22:03,"953 North St, Austin, TX 73301" +234611,Wired Headphones,1,11.99,07/11/19 12:15,"278 9th St, Boston, MA 02215" +234612,Google Phone,1,600,07/04/19 08:20,"620 8th St, Los Angeles, CA 90001" +234613,Wired Headphones,1,11.99,07/02/19 09:13,"632 12th St, Los Angeles, CA 90001" +234614,AAA Batteries (4-pack),1,2.99,07/09/19 17:40,"383 Walnut St, New York City, NY 10001" +234615,Macbook Pro Laptop,1,1700,07/29/19 20:04,"879 Main St, San Francisco, CA 94016" +234616,iPhone,1,700,07/20/19 10:16,"629 8th St, San Francisco, CA 94016" +234617,Bose SoundSport Headphones,1,99.99,07/20/19 13:44,"746 Jefferson St, San Francisco, CA 94016" +234618,AAA Batteries (4-pack),1,2.99,07/14/19 12:22,"3 Maple St, Austin, TX 73301" +234619,AAA Batteries (4-pack),2,2.99,07/10/19 11:53,"611 Ridge St, Portland, OR 97035" +234620,Lightning Charging Cable,1,14.95,07/26/19 09:03,"454 Jefferson St, Boston, MA 02215" +234621,Apple Airpods Headphones,1,150,07/16/19 09:10,"902 Spruce St, Austin, TX 73301" +234622,AA Batteries (4-pack),1,3.84,07/14/19 19:01,"818 Maple St, Boston, MA 02215" +234623,USB-C Charging Cable,1,11.95,07/05/19 18:58,"687 Spruce St, Los Angeles, CA 90001" +234624,Flatscreen TV,1,300,07/09/19 21:50,"830 8th St, Boston, MA 02215" +234625,Wired Headphones,1,11.99,08/01/19 05:38,"60 Pine St, Atlanta, GA 30301" +234626,Lightning Charging Cable,1,14.95,07/19/19 19:38,"712 Dogwood St, San Francisco, CA 94016" +234627,AAA Batteries (4-pack),1,2.99,07/11/19 07:53,"235 Adams St, San Francisco, CA 94016" +234628,Bose SoundSport Headphones,1,99.99,07/25/19 09:14,"940 Ridge St, San Francisco, CA 94016" +234629,AAA Batteries (4-pack),2,2.99,07/25/19 00:51,"986 Cedar St, Dallas, TX 75001" +234630,Google Phone,1,600,07/31/19 17:28,"851 North St, New York City, NY 10001" +234631,AA Batteries (4-pack),1,3.84,07/05/19 19:40,"299 14th St, Los Angeles, CA 90001" +234632,Lightning Charging Cable,1,14.95,07/05/19 16:17,"619 Lincoln St, Portland, OR 97035" +234633,AAA Batteries (4-pack),1,2.99,07/28/19 01:30,"374 7th St, Dallas, TX 75001" +234634,Bose SoundSport Headphones,1,99.99,07/29/19 14:36,"282 Spruce St, New York City, NY 10001" +234635,Lightning Charging Cable,1,14.95,07/15/19 19:07,"310 1st St, San Francisco, CA 94016" +234636,AAA Batteries (4-pack),1,2.99,07/21/19 10:41,"756 Park St, San Francisco, CA 94016" +234637,Lightning Charging Cable,1,14.95,07/23/19 18:23,"391 Meadow St, San Francisco, CA 94016" +234638,AAA Batteries (4-pack),2,2.99,07/05/19 10:44,"978 Highland St, Atlanta, GA 30301" +234639,Wired Headphones,1,11.99,07/31/19 14:18,"927 Adams St, Austin, TX 73301" +234640,AAA Batteries (4-pack),1,2.99,07/02/19 21:54,"988 Madison St, Seattle, WA 98101" +234641,Apple Airpods Headphones,1,150,07/05/19 16:27,"98 13th St, New York City, NY 10001" +234642,Bose SoundSport Headphones,1,99.99,07/28/19 13:06,"489 12th St, Seattle, WA 98101" +234643,Lightning Charging Cable,2,14.95,07/01/19 18:21,"238 8th St, Dallas, TX 75001" +234644,AA Batteries (4-pack),1,3.84,07/20/19 17:02,"684 Dogwood St, Los Angeles, CA 90001" +234645,Wired Headphones,1,11.99,07/28/19 12:12,"600 Highland St, Dallas, TX 75001" +234646,USB-C Charging Cable,1,11.95,07/06/19 12:20,"549 Cherry St, San Francisco, CA 94016" +234647,Apple Airpods Headphones,1,150,07/21/19 09:55,"96 Hickory St, San Francisco, CA 94016" +234648,Flatscreen TV,1,300,07/12/19 17:29,"98 Forest St, San Francisco, CA 94016" +234649,Bose SoundSport Headphones,1,99.99,07/29/19 13:32,"720 West St, Seattle, WA 98101" +234650,AA Batteries (4-pack),1,3.84,07/22/19 12:26,"25 Park St, Los Angeles, CA 90001" +234651,Lightning Charging Cable,1,14.95,07/23/19 07:34,"159 Johnson St, Dallas, TX 75001" +234652,27in FHD Monitor,1,149.99,07/19/19 10:36,"321 Ridge St, Los Angeles, CA 90001" +234653,27in FHD Monitor,1,149.99,07/01/19 20:37,"110 Maple St, Los Angeles, CA 90001" +234654,USB-C Charging Cable,1,11.95,07/31/19 14:14,"663 Pine St, Austin, TX 73301" +234655,20in Monitor,1,109.99,07/02/19 20:40,"83 2nd St, New York City, NY 10001" +234656,Bose SoundSport Headphones,1,99.99,07/31/19 19:30,"328 Main St, New York City, NY 10001" +234657,AAA Batteries (4-pack),1,2.99,07/19/19 09:49,"634 10th St, San Francisco, CA 94016" +234658,USB-C Charging Cable,1,11.95,07/13/19 10:42,"128 Johnson St, San Francisco, CA 94016" +234659,AAA Batteries (4-pack),2,2.99,07/19/19 16:04,"23 Pine St, Boston, MA 02215" +234660,Lightning Charging Cable,1,14.95,07/25/19 17:11,"556 River St, Boston, MA 02215" +234661,Bose SoundSport Headphones,1,99.99,07/25/19 21:19,"317 Wilson St, Los Angeles, CA 90001" +234662,iPhone,1,700,07/03/19 20:22,"146 10th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +234663,Wired Headphones,1,11.99,07/01/19 15:35,"834 13th St, Austin, TX 73301" +234664,Lightning Charging Cable,1,14.95,07/07/19 20:12,"159 Park St, San Francisco, CA 94016" +234665,27in 4K Gaming Monitor,1,389.99,07/03/19 19:02,"957 7th St, San Francisco, CA 94016" +234666,Lightning Charging Cable,1,14.95,07/30/19 16:55,"733 Hill St, San Francisco, CA 94016" +234667,27in FHD Monitor,1,149.99,07/10/19 09:19,"871 Lincoln St, Los Angeles, CA 90001" +234668,Apple Airpods Headphones,1,150,07/24/19 21:12,"309 Adams St, Atlanta, GA 30301" +234669,iPhone,1,700,07/03/19 07:26,"833 Meadow St, Portland, OR 97035" +234669,Lightning Charging Cable,1,14.95,07/03/19 07:26,"833 Meadow St, Portland, OR 97035" +234669,Wired Headphones,1,11.99,07/03/19 07:26,"833 Meadow St, Portland, OR 97035" +234670,AAA Batteries (4-pack),1,2.99,07/11/19 12:24,"551 Hickory St, San Francisco, CA 94016" +234671,Lightning Charging Cable,1,14.95,07/10/19 16:18,"173 4th St, Atlanta, GA 30301" +234672,Apple Airpods Headphones,1,150,07/31/19 15:40,"355 8th St, Portland, OR 97035" +234673,Bose SoundSport Headphones,1,99.99,07/07/19 19:59,"768 10th St, New York City, NY 10001" +234674,AAA Batteries (4-pack),2,2.99,07/19/19 15:25,"245 Wilson St, Seattle, WA 98101" +234675,20in Monitor,1,109.99,07/22/19 14:38,"883 Church St, Seattle, WA 98101" +234676,Macbook Pro Laptop,1,1700,07/28/19 00:00,"952 Park St, Los Angeles, CA 90001" +234677,USB-C Charging Cable,1,11.95,07/28/19 21:08,"374 8th St, Boston, MA 02215" +234678,27in 4K Gaming Monitor,1,389.99,07/17/19 18:32,"445 Wilson St, San Francisco, CA 94016" +234679,AAA Batteries (4-pack),1,2.99,07/22/19 18:32,"345 Hickory St, San Francisco, CA 94016" +234680,Bose SoundSport Headphones,1,99.99,07/27/19 13:47,"732 6th St, San Francisco, CA 94016" +234681,AAA Batteries (4-pack),1,2.99,07/16/19 08:38,"316 Highland St, New York City, NY 10001" +234682,Wired Headphones,1,11.99,07/21/19 18:53,"95 Jefferson St, Los Angeles, CA 90001" +234683,Lightning Charging Cable,1,14.95,07/27/19 18:42,"946 2nd St, San Francisco, CA 94016" +234684,Wired Headphones,1,11.99,07/07/19 16:46,"640 Sunset St, Dallas, TX 75001" +234685,27in 4K Gaming Monitor,1,389.99,07/27/19 22:00,"44 Chestnut St, San Francisco, CA 94016" +234686,Macbook Pro Laptop,1,1700,07/20/19 18:48,"80 River St, San Francisco, CA 94016" +234687,AAA Batteries (4-pack),2,2.99,07/05/19 09:00,"834 River St, Portland, OR 97035" +234688,34in Ultrawide Monitor,1,379.99,07/05/19 11:03,"688 River St, Seattle, WA 98101" +234689,27in 4K Gaming Monitor,1,389.99,07/12/19 05:03,"689 12th St, San Francisco, CA 94016" +234690,Lightning Charging Cable,1,14.95,07/05/19 11:46,"761 14th St, Los Angeles, CA 90001" +234691,Wired Headphones,1,11.99,07/19/19 13:44,"968 Wilson St, Los Angeles, CA 90001" +234692,Lightning Charging Cable,1,14.95,07/11/19 13:15,"971 9th St, New York City, NY 10001" +234693,USB-C Charging Cable,1,11.95,07/01/19 14:39,"905 West St, New York City, NY 10001" +234694,USB-C Charging Cable,1,11.95,07/13/19 07:28,"917 Center St, Atlanta, GA 30301" +234695,34in Ultrawide Monitor,1,379.99,07/28/19 12:32,"186 Chestnut St, Atlanta, GA 30301" +234696,Wired Headphones,2,11.99,07/09/19 18:47,"552 4th St, Atlanta, GA 30301" +234697,USB-C Charging Cable,1,11.95,07/04/19 14:06,"517 1st St, Dallas, TX 75001" +234698,Vareebadd Phone,1,400,07/23/19 18:15,"669 Willow St, San Francisco, CA 94016" +234699,iPhone,1,700,07/11/19 08:42,"898 12th St, San Francisco, CA 94016" +234700,Lightning Charging Cable,1,14.95,07/21/19 17:25,"227 Lincoln St, Los Angeles, CA 90001" +234701,Google Phone,1,600,07/01/19 08:07,"416 Walnut St, Portland, ME 04101" +234702,Apple Airpods Headphones,1,150,07/24/19 15:23,"287 6th St, New York City, NY 10001" +234703,AA Batteries (4-pack),1,3.84,07/31/19 21:03,"887 8th St, San Francisco, CA 94016" +234704,Lightning Charging Cable,1,14.95,07/08/19 09:17,"498 Dogwood St, Los Angeles, CA 90001" +234705,AA Batteries (4-pack),1,3.84,07/02/19 16:42,"919 Lakeview St, Seattle, WA 98101" +234706,USB-C Charging Cable,1,11.95,07/26/19 16:23,"349 Maple St, Los Angeles, CA 90001" +234707,27in 4K Gaming Monitor,1,389.99,07/26/19 10:14,"271 Forest St, San Francisco, CA 94016" +234708,AA Batteries (4-pack),1,3.84,07/07/19 10:41,"279 Elm St, Dallas, TX 75001" +234709,Apple Airpods Headphones,1,150,07/03/19 08:21,"667 Madison St, Boston, MA 02215" +234710,Bose SoundSport Headphones,1,99.99,07/28/19 14:18,"607 Madison St, Seattle, WA 98101" +234711,Google Phone,1,600,07/12/19 21:55,"543 Johnson St, Los Angeles, CA 90001" +234712,Wired Headphones,1,11.99,07/15/19 11:03,"203 River St, Seattle, WA 98101" +234713,AA Batteries (4-pack),1,3.84,07/28/19 16:18,"57 Spruce St, Los Angeles, CA 90001" +234714,27in FHD Monitor,1,149.99,07/21/19 13:43,"218 1st St, San Francisco, CA 94016" +234715,Macbook Pro Laptop,1,1700,07/17/19 08:04,"434 Park St, Atlanta, GA 30301" +234716,Bose SoundSport Headphones,1,99.99,07/20/19 03:41,"205 Lincoln St, San Francisco, CA 94016" +234717,USB-C Charging Cable,1,11.95,07/18/19 20:56,"224 Main St, San Francisco, CA 94016" +234718,Wired Headphones,1,11.99,07/16/19 09:50,"26 North St, Portland, ME 04101" +234719,Lightning Charging Cable,1,14.95,07/24/19 09:04,"412 8th St, New York City, NY 10001" +234720,iPhone,1,700,07/23/19 10:35,"164 Church St, San Francisco, CA 94016" +234721,Wired Headphones,1,11.99,07/05/19 12:50,"262 10th St, Atlanta, GA 30301" +234722,AAA Batteries (4-pack),1,2.99,07/26/19 13:16,"826 Sunset St, San Francisco, CA 94016" +234723,34in Ultrawide Monitor,1,379.99,07/08/19 21:20,"167 Main St, Los Angeles, CA 90001" +234724,Wired Headphones,1,11.99,07/24/19 22:49,"307 Main St, Atlanta, GA 30301" +234725,34in Ultrawide Monitor,1,379.99,07/24/19 22:04,"75 Center St, Dallas, TX 75001" +234726,Lightning Charging Cable,1,14.95,07/13/19 17:57,"869 River St, New York City, NY 10001" +234727,AAA Batteries (4-pack),1,2.99,07/20/19 13:29,"502 Madison St, Dallas, TX 75001" +234728,AAA Batteries (4-pack),5,2.99,07/24/19 04:27,"645 Pine St, Austin, TX 73301" +234729,USB-C Charging Cable,1,11.95,07/12/19 10:17,"802 Adams St, New York City, NY 10001" +234730,AA Batteries (4-pack),1,3.84,07/23/19 14:34,"877 6th St, San Francisco, CA 94016" +234731,Bose SoundSport Headphones,1,99.99,07/21/19 18:35,"395 Willow St, Boston, MA 02215" +234732,Lightning Charging Cable,1,14.95,07/21/19 11:54,"824 Maple St, Seattle, WA 98101" +234733,iPhone,1,700,07/11/19 13:52,"73 Hill St, San Francisco, CA 94016" +234734,USB-C Charging Cable,2,11.95,07/06/19 07:04,"953 Madison St, Los Angeles, CA 90001" +234735,Apple Airpods Headphones,1,150,07/04/19 12:50,"213 14th St, Los Angeles, CA 90001" +234736,34in Ultrawide Monitor,1,379.99,07/22/19 09:37,"997 Elm St, San Francisco, CA 94016" +234737,Google Phone,1,600,07/31/19 22:27,"333 13th St, New York City, NY 10001" +234738,AA Batteries (4-pack),1,3.84,07/30/19 22:42,"289 9th St, Portland, OR 97035" +234739,Lightning Charging Cable,1,14.95,07/17/19 13:44,"623 Cedar St, Los Angeles, CA 90001" +234740,27in FHD Monitor,1,149.99,07/10/19 11:23,"357 Lake St, Atlanta, GA 30301" +234741,AAA Batteries (4-pack),1,2.99,07/16/19 23:52,"504 9th St, San Francisco, CA 94016" +234742,27in 4K Gaming Monitor,1,389.99,07/07/19 08:17,"873 Highland St, Boston, MA 02215" +234743,34in Ultrawide Monitor,1,379.99,07/30/19 09:45,"410 Park St, Los Angeles, CA 90001" +234744,Apple Airpods Headphones,1,150,07/18/19 09:38,"816 Cherry St, New York City, NY 10001" +234745,AAA Batteries (4-pack),1,2.99,07/19/19 17:57,"130 8th St, Portland, OR 97035" +234746,Wired Headphones,1,11.99,07/15/19 19:32,"48 Walnut St, San Francisco, CA 94016" +234747,Wired Headphones,1,11.99,07/03/19 10:47,"353 North St, Los Angeles, CA 90001" +234748,USB-C Charging Cable,1,11.95,07/10/19 09:25,"929 River St, San Francisco, CA 94016" +234749,27in FHD Monitor,1,149.99,07/07/19 14:36,"633 Elm St, Boston, MA 02215" +234750,AA Batteries (4-pack),2,3.84,07/29/19 22:43,"242 4th St, San Francisco, CA 94016" +234751,Wired Headphones,1,11.99,07/16/19 17:23,"949 Meadow St, Boston, MA 02215" +234751,USB-C Charging Cable,1,11.95,07/16/19 17:23,"949 Meadow St, Boston, MA 02215" +234752,Wired Headphones,1,11.99,07/08/19 18:56,"830 Lake St, San Francisco, CA 94016" +234753,Bose SoundSport Headphones,1,99.99,07/17/19 09:30,"744 1st St, San Francisco, CA 94016" +234754,Macbook Pro Laptop,1,1700,07/24/19 17:50,"142 Johnson St, Dallas, TX 75001" +234755,Lightning Charging Cable,1,14.95,07/20/19 20:36,"319 13th St, New York City, NY 10001" +234756,Bose SoundSport Headphones,1,99.99,07/11/19 19:30,"573 Chestnut St, San Francisco, CA 94016" +234757,AA Batteries (4-pack),2,3.84,07/11/19 18:18,"899 Hickory St, Boston, MA 02215" +234758,Apple Airpods Headphones,1,150,07/25/19 14:04,"528 Ridge St, San Francisco, CA 94016" +234759,Lightning Charging Cable,1,14.95,07/24/19 12:59,"530 Sunset St, Dallas, TX 75001" +234760,Bose SoundSport Headphones,1,99.99,07/12/19 11:03,"609 1st St, New York City, NY 10001" +234761,AAA Batteries (4-pack),2,2.99,07/08/19 17:20,"506 Cedar St, San Francisco, CA 94016" +234762,USB-C Charging Cable,1,11.95,07/13/19 13:11,"518 Jackson St, Los Angeles, CA 90001" +234763,Apple Airpods Headphones,1,150,07/09/19 20:24,"464 Adams St, Los Angeles, CA 90001" +234764,AA Batteries (4-pack),1,3.84,07/04/19 12:33,"916 Cherry St, Dallas, TX 75001" +234765,Lightning Charging Cable,1,14.95,07/08/19 00:46,"687 Jefferson St, Atlanta, GA 30301" +234766,Lightning Charging Cable,1,14.95,07/15/19 13:37,"930 Lake St, Los Angeles, CA 90001" +234767,iPhone,1,700,07/20/19 20:06,"884 8th St, Austin, TX 73301" +234768,Wired Headphones,1,11.99,07/09/19 18:40,"272 South St, Los Angeles, CA 90001" +234768,Lightning Charging Cable,1,14.95,07/09/19 18:40,"272 South St, Los Angeles, CA 90001" +234769,Wired Headphones,1,11.99,07/19/19 02:27,"488 West St, Boston, MA 02215" +234770,AAA Batteries (4-pack),2,2.99,07/21/19 15:27,"556 West St, San Francisco, CA 94016" +234771,ThinkPad Laptop,1,999.99,07/31/19 17:01,"457 Walnut St, San Francisco, CA 94016" +234772,Apple Airpods Headphones,1,150,07/22/19 13:02,"846 Lakeview St, Dallas, TX 75001" +234773,Lightning Charging Cable,1,14.95,07/20/19 11:48,"324 Hill St, New York City, NY 10001" +234774,AA Batteries (4-pack),1,3.84,07/18/19 20:06,"908 Washington St, Los Angeles, CA 90001" +234775,AA Batteries (4-pack),1,3.84,07/06/19 08:02,"953 Cherry St, Dallas, TX 75001" +234776,Wired Headphones,1,11.99,07/30/19 13:21,"842 Elm St, Seattle, WA 98101" +234777,AAA Batteries (4-pack),1,2.99,07/23/19 10:41,"370 6th St, San Francisco, CA 94016" +234778,AAA Batteries (4-pack),3,2.99,07/15/19 21:16,"297 Hickory St, San Francisco, CA 94016" +234779,AA Batteries (4-pack),3,3.84,07/30/19 15:22,"5 Wilson St, Dallas, TX 75001" +234780,USB-C Charging Cable,1,11.95,07/13/19 22:00,"526 Park St, Boston, MA 02215" +234781,AA Batteries (4-pack),1,3.84,07/16/19 01:21,"2 5th St, Seattle, WA 98101" +234782,Lightning Charging Cable,2,14.95,07/22/19 11:36,"864 1st St, Atlanta, GA 30301" +234783,Lightning Charging Cable,1,14.95,07/13/19 13:02,"197 North St, San Francisco, CA 94016" +234784,Apple Airpods Headphones,1,150,07/05/19 13:08,"334 Highland St, Atlanta, GA 30301" +234785,Wired Headphones,1,11.99,07/24/19 18:16,"680 11th St, San Francisco, CA 94016" +234786,iPhone,1,700,07/09/19 12:10,"623 Highland St, New York City, NY 10001" +,,,,, +234787,AA Batteries (4-pack),1,3.84,07/21/19 15:33,"813 4th St, Portland, OR 97035" +234788,34in Ultrawide Monitor,1,379.99,07/07/19 15:18,"161 Church St, Austin, TX 73301" +234789,Google Phone,1,600,07/06/19 10:19,"75 1st St, Austin, TX 73301" +234790,Bose SoundSport Headphones,1,99.99,07/19/19 20:46,"347 Cedar St, San Francisco, CA 94016" +234791,Bose SoundSport Headphones,1,99.99,07/10/19 11:08,"215 Sunset St, San Francisco, CA 94016" +234792,AA Batteries (4-pack),2,3.84,07/29/19 12:47,"53 Lake St, Dallas, TX 75001" +234793,Wired Headphones,1,11.99,07/09/19 12:36,"524 Madison St, Los Angeles, CA 90001" +234794,Apple Airpods Headphones,1,150,07/09/19 10:37,"667 Pine St, Austin, TX 73301" +234795,Lightning Charging Cable,1,14.95,07/01/19 11:41,"184 12th St, New York City, NY 10001" +234796,Lightning Charging Cable,3,14.95,07/18/19 09:15,"417 11th St, Los Angeles, CA 90001" +234797,USB-C Charging Cable,1,11.95,07/20/19 01:16,"478 Madison St, Seattle, WA 98101" +234798,Lightning Charging Cable,1,14.95,07/04/19 15:13,"375 Hickory St, San Francisco, CA 94016" +234799,ThinkPad Laptop,1,999.99,07/28/19 15:30,"965 Dogwood St, Dallas, TX 75001" +234800,27in 4K Gaming Monitor,1,389.99,07/19/19 13:02,"262 Hill St, Los Angeles, CA 90001" +234801,Bose SoundSport Headphones,1,99.99,07/08/19 02:26,"951 Chestnut St, Los Angeles, CA 90001" +234802,USB-C Charging Cable,1,11.95,07/04/19 20:56,"269 Cedar St, Dallas, TX 75001" +234803,Lightning Charging Cable,1,14.95,07/05/19 19:17,"693 North St, Dallas, TX 75001" +234804,ThinkPad Laptop,1,999.99,07/02/19 19:30,"498 10th St, Los Angeles, CA 90001" +234805,USB-C Charging Cable,1,11.95,07/19/19 17:21,"489 Park St, Portland, OR 97035" +234806,Lightning Charging Cable,1,14.95,07/02/19 18:36,"879 Walnut St, Atlanta, GA 30301" +234807,AA Batteries (4-pack),1,3.84,08/01/19 01:25,"403 Washington St, San Francisco, CA 94016" +234808,Lightning Charging Cable,1,14.95,07/18/19 09:08,"115 Jackson St, San Francisco, CA 94016" +234809,Wired Headphones,1,11.99,07/28/19 11:29,"606 Johnson St, Portland, OR 97035" +234810,Bose SoundSport Headphones,1,99.99,07/04/19 13:39,"223 Johnson St, Portland, ME 04101" +234811,AA Batteries (4-pack),1,3.84,07/18/19 21:03,"695 8th St, Seattle, WA 98101" +234812,Lightning Charging Cable,1,14.95,07/07/19 19:02,"47 8th St, San Francisco, CA 94016" +234813,Lightning Charging Cable,2,14.95,07/16/19 16:31,"408 Jefferson St, Boston, MA 02215" +234814,Lightning Charging Cable,2,14.95,07/29/19 06:17,"108 12th St, Seattle, WA 98101" +234814,Lightning Charging Cable,1,14.95,07/29/19 06:17,"108 12th St, Seattle, WA 98101" +234815,Wired Headphones,1,11.99,07/02/19 16:59,"50 1st St, San Francisco, CA 94016" +234816,USB-C Charging Cable,1,11.95,07/24/19 21:12,"253 Sunset St, Boston, MA 02215" +234817,Wired Headphones,2,11.99,07/07/19 14:58,"898 5th St, Seattle, WA 98101" +234818,Lightning Charging Cable,1,14.95,07/31/19 18:47,"350 11th St, New York City, NY 10001" +234819,Lightning Charging Cable,2,14.95,07/28/19 18:59,"5 Cherry St, San Francisco, CA 94016" +234820,Apple Airpods Headphones,1,150,07/27/19 12:44,"313 14th St, San Francisco, CA 94016" +234821,Bose SoundSport Headphones,1,99.99,07/12/19 14:34,"96 West St, Portland, OR 97035" +234822,Bose SoundSport Headphones,1,99.99,07/31/19 18:17,"973 Maple St, Seattle, WA 98101" +234823,Lightning Charging Cable,1,14.95,07/05/19 19:18,"926 14th St, San Francisco, CA 94016" +234824,USB-C Charging Cable,1,11.95,07/18/19 15:55,"717 1st St, Dallas, TX 75001" +234825,27in FHD Monitor,1,149.99,07/31/19 22:54,"967 Main St, New York City, NY 10001" +234826,Vareebadd Phone,1,400,07/27/19 15:09,"541 2nd St, Atlanta, GA 30301" +234827,Apple Airpods Headphones,1,150,07/21/19 22:31,"108 South St, Portland, ME 04101" +234828,Bose SoundSport Headphones,1,99.99,07/16/19 17:07,"138 Walnut St, San Francisco, CA 94016" +234829,Wired Headphones,1,11.99,07/07/19 02:13,"371 4th St, Seattle, WA 98101" +234830,iPhone,1,700,07/09/19 20:58,"116 Park St, Los Angeles, CA 90001" +234830,Apple Airpods Headphones,1,150,07/09/19 20:58,"116 Park St, Los Angeles, CA 90001" +234831,27in 4K Gaming Monitor,1,389.99,07/26/19 11:46,"678 Park St, Dallas, TX 75001" +234832,AAA Batteries (4-pack),2,2.99,07/14/19 19:57,"157 Wilson St, San Francisco, CA 94016" +234833,AAA Batteries (4-pack),2,2.99,07/16/19 20:05,"32 13th St, San Francisco, CA 94016" +234834,27in FHD Monitor,1,149.99,07/10/19 12:37,"339 13th St, New York City, NY 10001" +234835,Bose SoundSport Headphones,1,99.99,07/13/19 15:57,"311 Center St, Boston, MA 02215" +234836,Apple Airpods Headphones,1,150,07/30/19 09:40,"583 11th St, Austin, TX 73301" +234837,AAA Batteries (4-pack),1,2.99,07/09/19 18:51,"363 Elm St, Portland, OR 97035" +234838,20in Monitor,1,109.99,07/24/19 13:24,"736 Adams St, New York City, NY 10001" +234839,AAA Batteries (4-pack),1,2.99,07/21/19 20:19,"198 Park St, Austin, TX 73301" +234840,27in FHD Monitor,1,149.99,07/06/19 20:06,"431 West St, New York City, NY 10001" +234841,Bose SoundSport Headphones,1,99.99,07/27/19 12:41,"468 Jackson St, Boston, MA 02215" +234842,AAA Batteries (4-pack),2,2.99,07/14/19 19:09,"940 Main St, Atlanta, GA 30301" +234843,Apple Airpods Headphones,1,150,07/15/19 22:04,"346 5th St, Boston, MA 02215" +234844,Bose SoundSport Headphones,1,99.99,07/22/19 21:22,"901 Dogwood St, Boston, MA 02215" +234845,27in 4K Gaming Monitor,1,389.99,07/23/19 15:58,"773 Church St, Portland, OR 97035" +234846,Lightning Charging Cable,1,14.95,07/31/19 17:14,"314 Hickory St, Dallas, TX 75001" +234847,LG Washing Machine,1,600.0,07/06/19 15:09,"346 13th St, San Francisco, CA 94016" +234848,Flatscreen TV,1,300,07/07/19 13:00,"992 Walnut St, San Francisco, CA 94016" +234849,AA Batteries (4-pack),1,3.84,07/02/19 08:42,"616 Spruce St, Boston, MA 02215" +234850,Lightning Charging Cable,1,14.95,07/20/19 11:06,"366 14th St, San Francisco, CA 94016" +234851,USB-C Charging Cable,1,11.95,07/21/19 17:39,"898 Elm St, New York City, NY 10001" +234852,USB-C Charging Cable,1,11.95,07/13/19 22:18,"436 Lakeview St, San Francisco, CA 94016" +234853,USB-C Charging Cable,1,11.95,07/19/19 08:11,"139 2nd St, Los Angeles, CA 90001" +234854,AA Batteries (4-pack),1,3.84,07/13/19 20:56,"113 2nd St, Boston, MA 02215" +234855,Lightning Charging Cable,2,14.95,07/21/19 08:36,"175 Chestnut St, Atlanta, GA 30301" +234856,ThinkPad Laptop,1,999.99,07/17/19 19:18,"567 Wilson St, San Francisco, CA 94016" +234857,27in 4K Gaming Monitor,1,389.99,07/23/19 07:25,"382 7th St, Atlanta, GA 30301" +234858,Apple Airpods Headphones,1,150,07/27/19 21:32,"912 Pine St, Atlanta, GA 30301" +234859,Lightning Charging Cable,1,14.95,07/18/19 19:02,"916 North St, Los Angeles, CA 90001" +234860,USB-C Charging Cable,1,11.95,07/07/19 18:22,"699 9th St, Los Angeles, CA 90001" +234861,Wired Headphones,1,11.99,07/28/19 22:06,"171 Hickory St, New York City, NY 10001" +234862,AA Batteries (4-pack),2,3.84,07/19/19 20:52,"532 Cherry St, San Francisco, CA 94016" +234863,USB-C Charging Cable,1,11.95,07/09/19 13:22,"807 Willow St, New York City, NY 10001" +234864,AAA Batteries (4-pack),1,2.99,07/22/19 08:21,"849 14th St, Los Angeles, CA 90001" +234865,Lightning Charging Cable,1,14.95,07/23/19 17:24,"527 River St, San Francisco, CA 94016" +234866,AAA Batteries (4-pack),1,2.99,07/29/19 13:20,"293 Forest St, San Francisco, CA 94016" +234867,Wired Headphones,1,11.99,07/31/19 10:55,"853 Meadow St, Dallas, TX 75001" +234868,Apple Airpods Headphones,1,150,07/11/19 22:09,"38 North St, Seattle, WA 98101" +234868,Bose SoundSport Headphones,1,99.99,07/11/19 22:09,"38 North St, Seattle, WA 98101" +234869,Bose SoundSport Headphones,1,99.99,07/28/19 11:15,"478 Madison St, Los Angeles, CA 90001" +234870,Bose SoundSport Headphones,1,99.99,07/06/19 07:46,"607 Adams St, Portland, ME 04101" +234871,Apple Airpods Headphones,1,150,07/28/19 17:35,"446 Washington St, Los Angeles, CA 90001" +234872,AAA Batteries (4-pack),1,2.99,07/23/19 08:34,"92 4th St, Boston, MA 02215" +234873,USB-C Charging Cable,1,11.95,07/16/19 15:42,"516 4th St, Boston, MA 02215" +234874,AA Batteries (4-pack),1,3.84,07/27/19 16:11,"824 5th St, Dallas, TX 75001" +234875,USB-C Charging Cable,1,11.95,07/20/19 17:47,"271 Walnut St, Los Angeles, CA 90001" +234876,Wired Headphones,1,11.99,07/02/19 20:57,"521 Elm St, New York City, NY 10001" +234877,34in Ultrawide Monitor,1,379.99,07/29/19 08:17,"545 Meadow St, Austin, TX 73301" +234878,AA Batteries (4-pack),1,3.84,07/09/19 13:11,"443 Lakeview St, New York City, NY 10001" +234879,Macbook Pro Laptop,1,1700,07/23/19 02:53,"675 5th St, New York City, NY 10001" +234880,Wired Headphones,1,11.99,07/02/19 10:09,"928 Willow St, New York City, NY 10001" +234881,34in Ultrawide Monitor,1,379.99,07/27/19 15:00,"984 Madison St, Atlanta, GA 30301" +234882,USB-C Charging Cable,1,11.95,07/15/19 13:56,"427 Lincoln St, Seattle, WA 98101" +234883,USB-C Charging Cable,1,11.95,07/11/19 06:49,"701 7th St, San Francisco, CA 94016" +234884,AAA Batteries (4-pack),1,2.99,07/13/19 16:57,"510 Pine St, New York City, NY 10001" +234885,AAA Batteries (4-pack),1,2.99,07/29/19 19:49,"536 Meadow St, Los Angeles, CA 90001" +234886,Wired Headphones,1,11.99,07/25/19 15:38,"740 Highland St, Austin, TX 73301" +234887,USB-C Charging Cable,1,11.95,07/05/19 16:17,"703 Hickory St, Los Angeles, CA 90001" +234888,Apple Airpods Headphones,1,150,07/17/19 19:04,"265 13th St, Boston, MA 02215" +234889,AA Batteries (4-pack),1,3.84,07/23/19 11:46,"226 South St, New York City, NY 10001" +234890,Wired Headphones,1,11.99,07/20/19 19:34,"715 Spruce St, San Francisco, CA 94016" +234891,34in Ultrawide Monitor,1,379.99,07/27/19 23:47,"902 Park St, San Francisco, CA 94016" +234892,Lightning Charging Cable,1,14.95,07/23/19 10:44,"313 Elm St, Boston, MA 02215" +234893,iPhone,1,700,07/29/19 19:04,"333 Highland St, New York City, NY 10001" +234894,Bose SoundSport Headphones,1,99.99,07/12/19 13:51,"800 Sunset St, Los Angeles, CA 90001" +234895,AA Batteries (4-pack),1,3.84,07/30/19 17:42,"461 7th St, San Francisco, CA 94016" +234896,Bose SoundSport Headphones,1,99.99,07/08/19 21:54,"902 Main St, Austin, TX 73301" +234897,USB-C Charging Cable,1,11.95,07/03/19 02:52,"280 Sunset St, Seattle, WA 98101" +234898,Google Phone,1,600,07/23/19 06:21,"575 Walnut St, New York City, NY 10001" +234898,AA Batteries (4-pack),1,3.84,07/23/19 06:21,"575 Walnut St, New York City, NY 10001" +234899,Bose SoundSport Headphones,1,99.99,07/17/19 08:04,"327 4th St, San Francisco, CA 94016" +234900,Macbook Pro Laptop,1,1700,07/03/19 08:12,"385 Elm St, Atlanta, GA 30301" +234901,AAA Batteries (4-pack),1,2.99,07/16/19 10:08,"750 Center St, Boston, MA 02215" +234902,Wired Headphones,1,11.99,07/10/19 14:41,"986 Park St, San Francisco, CA 94016" +234903,Flatscreen TV,1,300,07/22/19 12:21,"837 Ridge St, San Francisco, CA 94016" +234904,Wired Headphones,1,11.99,07/02/19 21:58,"251 6th St, New York City, NY 10001" +234905,USB-C Charging Cable,1,11.95,07/10/19 08:47,"19 Park St, Portland, OR 97035" +234906,Apple Airpods Headphones,1,150,07/10/19 12:34,"700 Hill St, Dallas, TX 75001" +234906,Lightning Charging Cable,1,14.95,07/10/19 12:34,"700 Hill St, Dallas, TX 75001" +234907,Apple Airpods Headphones,1,150,07/29/19 15:50,"980 11th St, San Francisco, CA 94016" +234908,27in 4K Gaming Monitor,1,389.99,07/30/19 19:48,"230 Jackson St, New York City, NY 10001" +234909,AA Batteries (4-pack),4,3.84,07/06/19 15:57,"463 2nd St, Los Angeles, CA 90001" +234910,Lightning Charging Cable,1,14.95,07/06/19 10:51,"305 1st St, Los Angeles, CA 90001" +234911,Lightning Charging Cable,1,14.95,07/04/19 07:04,"232 8th St, Dallas, TX 75001" +234912,Lightning Charging Cable,1,14.95,07/01/19 20:13,"854 Lakeview St, Los Angeles, CA 90001" +234913,iPhone,1,700,07/07/19 18:37,"396 Jefferson St, Boston, MA 02215" +234914,Lightning Charging Cable,1,14.95,07/31/19 14:17,"842 5th St, New York City, NY 10001" +234915,AA Batteries (4-pack),3,3.84,07/09/19 19:38,"463 6th St, New York City, NY 10001" +234916,AAA Batteries (4-pack),1,2.99,07/04/19 20:16,"256 Lincoln St, Atlanta, GA 30301" +234917,Apple Airpods Headphones,1,150,07/04/19 10:24,"854 Johnson St, Boston, MA 02215" +234918,Apple Airpods Headphones,1,150,07/18/19 21:14,"257 Pine St, New York City, NY 10001" +234919,USB-C Charging Cable,1,11.95,07/01/19 23:05,"435 Church St, San Francisco, CA 94016" +234920,Wired Headphones,1,11.99,07/08/19 11:05,"661 13th St, San Francisco, CA 94016" +234921,AA Batteries (4-pack),1,3.84,07/20/19 10:05,"789 Meadow St, Austin, TX 73301" +234922,LG Dryer,1,600.0,07/22/19 15:04,"641 Center St, San Francisco, CA 94016" +234923,Lightning Charging Cable,1,14.95,07/17/19 00:00,"886 12th St, Boston, MA 02215" +234924,AA Batteries (4-pack),1,3.84,07/09/19 13:47,"611 River St, San Francisco, CA 94016" +234925,27in FHD Monitor,1,149.99,07/06/19 09:57,"213 Main St, Seattle, WA 98101" +234926,AAA Batteries (4-pack),1,2.99,07/27/19 13:24,"296 South St, San Francisco, CA 94016" +234927,USB-C Charging Cable,1,11.95,07/25/19 10:55,"659 12th St, Dallas, TX 75001" +234927,AA Batteries (4-pack),1,3.84,07/25/19 10:55,"659 12th St, Dallas, TX 75001" +234928,Apple Airpods Headphones,1,150,07/27/19 20:15,"201 14th St, San Francisco, CA 94016" +234929,Macbook Pro Laptop,1,1700,07/03/19 10:31,"610 Meadow St, Los Angeles, CA 90001" +234930,Lightning Charging Cable,1,14.95,07/12/19 13:37,"202 Wilson St, Boston, MA 02215" +234931,USB-C Charging Cable,1,11.95,07/12/19 07:49,"194 Hickory St, San Francisco, CA 94016" +234932,Lightning Charging Cable,1,14.95,07/26/19 18:23,"577 7th St, San Francisco, CA 94016" +234933,Wired Headphones,1,11.99,07/12/19 21:46,"347 Elm St, Los Angeles, CA 90001" +234934,USB-C Charging Cable,1,11.95,07/08/19 12:27,"238 Pine St, New York City, NY 10001" +234935,AA Batteries (4-pack),1,3.84,07/19/19 15:53,"219 4th St, Austin, TX 73301" +234936,27in FHD Monitor,1,149.99,07/14/19 15:44,"131 Center St, Portland, OR 97035" +234937,27in 4K Gaming Monitor,1,389.99,07/12/19 05:57,"726 5th St, Portland, OR 97035" +234938,Bose SoundSport Headphones,1,99.99,07/24/19 14:55,"745 Meadow St, Los Angeles, CA 90001" +234939,AA Batteries (4-pack),1,3.84,07/28/19 22:27,"511 Church St, New York City, NY 10001" +234940,Wired Headphones,1,11.99,07/06/19 12:50,"917 Hill St, New York City, NY 10001" +234941,Bose SoundSport Headphones,1,99.99,07/31/19 23:48,"64 Meadow St, New York City, NY 10001" +234942,Macbook Pro Laptop,1,1700,07/10/19 16:44,"489 Forest St, Los Angeles, CA 90001" +234943,Lightning Charging Cable,1,14.95,07/17/19 19:45,"588 Maple St, Portland, OR 97035" +234944,Lightning Charging Cable,1,14.95,07/21/19 17:39,"565 Church St, Seattle, WA 98101" +234945,USB-C Charging Cable,1,11.95,07/19/19 15:20,"228 Washington St, Austin, TX 73301" +234946,Macbook Pro Laptop,1,1700,07/01/19 10:16,"341 13th St, San Francisco, CA 94016" +234947,27in FHD Monitor,1,149.99,07/08/19 14:49,"495 11th St, San Francisco, CA 94016" +234948,Bose SoundSport Headphones,1,99.99,07/09/19 18:20,"163 Elm St, New York City, NY 10001" +234949,34in Ultrawide Monitor,1,379.99,07/11/19 17:22,"134 Hill St, Dallas, TX 75001" +234950,Apple Airpods Headphones,1,150,07/07/19 12:52,"855 Ridge St, Los Angeles, CA 90001" +234951,34in Ultrawide Monitor,1,379.99,07/15/19 13:50,"185 10th St, New York City, NY 10001" +234952,USB-C Charging Cable,1,11.95,07/10/19 04:52,"885 Washington St, Los Angeles, CA 90001" +234953,AAA Batteries (4-pack),1,2.99,07/21/19 12:59,"397 Hill St, New York City, NY 10001" +234954,Lightning Charging Cable,1,14.95,07/20/19 08:47,"502 Johnson St, Atlanta, GA 30301" +234955,Macbook Pro Laptop,1,1700,07/08/19 21:09,"540 River St, Boston, MA 02215" +234956,27in FHD Monitor,1,149.99,07/30/19 11:06,"351 11th St, Seattle, WA 98101" +234957,Wired Headphones,1,11.99,07/14/19 18:21,"275 Walnut St, Seattle, WA 98101" +234958,iPhone,1,700,07/06/19 20:36,"630 Dogwood St, Portland, OR 97035" +234959,Flatscreen TV,1,300,07/13/19 20:40,"511 1st St, Portland, OR 97035" +234960,Bose SoundSport Headphones,1,99.99,07/13/19 04:34,"466 9th St, Dallas, TX 75001" +234961,AAA Batteries (4-pack),1,2.99,07/31/19 08:29,"319 1st St, Boston, MA 02215" +234962,27in FHD Monitor,1,149.99,07/03/19 07:05,"737 West St, Los Angeles, CA 90001" +234963,27in 4K Gaming Monitor,1,389.99,07/14/19 02:08,"567 Pine St, San Francisco, CA 94016" +234964,AAA Batteries (4-pack),1,2.99,07/25/19 14:58,"173 Willow St, Atlanta, GA 30301" +234965,Wired Headphones,1,11.99,07/06/19 06:32,"654 Sunset St, Atlanta, GA 30301" +234966,iPhone,1,700,07/07/19 13:04,"763 2nd St, Seattle, WA 98101" +234966,Wired Headphones,1,11.99,07/07/19 13:04,"763 2nd St, Seattle, WA 98101" +234967,AA Batteries (4-pack),1,3.84,07/28/19 21:44,"316 North St, Los Angeles, CA 90001" +234968,Bose SoundSport Headphones,1,99.99,07/15/19 10:13,"825 Park St, Seattle, WA 98101" +234969,Apple Airpods Headphones,1,150,07/17/19 10:36,"715 Jackson St, Seattle, WA 98101" +234970,20in Monitor,1,109.99,07/13/19 18:11,"289 Dogwood St, Seattle, WA 98101" +234971,AAA Batteries (4-pack),2,2.99,07/11/19 13:13,"41 Washington St, San Francisco, CA 94016" +234972,27in FHD Monitor,1,149.99,07/15/19 06:48,"846 10th St, New York City, NY 10001" +234973,27in FHD Monitor,1,149.99,07/15/19 09:10,"889 North St, Los Angeles, CA 90001" +234974,AAA Batteries (4-pack),1,2.99,07/21/19 21:30,"814 Johnson St, Los Angeles, CA 90001" +234975,Apple Airpods Headphones,1,150,07/26/19 08:44,"641 Elm St, Boston, MA 02215" +234976,Vareebadd Phone,1,400,07/09/19 00:02,"513 Washington St, Los Angeles, CA 90001" +234977,20in Monitor,1,109.99,07/17/19 14:36,"809 Willow St, Los Angeles, CA 90001" +234978,AAA Batteries (4-pack),2,2.99,07/26/19 15:12,"718 Walnut St, Dallas, TX 75001" +234979,AA Batteries (4-pack),2,3.84,07/07/19 20:48,"230 13th St, Dallas, TX 75001" +234980,AAA Batteries (4-pack),2,2.99,07/15/19 17:36,"675 Lincoln St, Boston, MA 02215" +234981,Google Phone,1,600,07/11/19 11:55,"536 12th St, Boston, MA 02215" +234981,Bose SoundSport Headphones,1,99.99,07/11/19 11:55,"536 12th St, Boston, MA 02215" +234982,ThinkPad Laptop,1,999.99,07/01/19 19:36,"892 Lake St, New York City, NY 10001" +234983,Apple Airpods Headphones,1,150,07/16/19 15:33,"347 Wilson St, Austin, TX 73301" +234984,USB-C Charging Cable,1,11.95,07/31/19 16:38,"163 Park St, Los Angeles, CA 90001" +234985,ThinkPad Laptop,1,999.99,07/09/19 12:30,"489 Forest St, New York City, NY 10001" +234986,Wired Headphones,1,11.99,07/14/19 08:10,"547 Adams St, Portland, OR 97035" +234987,Macbook Pro Laptop,1,1700,07/08/19 15:48,"400 West St, Atlanta, GA 30301" +234988,USB-C Charging Cable,1,11.95,07/09/19 18:23,"498 Jefferson St, Dallas, TX 75001" +234989,USB-C Charging Cable,1,11.95,07/10/19 12:32,"329 Walnut St, Los Angeles, CA 90001" +234990,AAA Batteries (4-pack),1,2.99,07/01/19 22:19,"11 Dogwood St, Dallas, TX 75001" +234990,AAA Batteries (4-pack),4,2.99,07/01/19 22:19,"11 Dogwood St, Dallas, TX 75001" +234991,Lightning Charging Cable,1,14.95,07/23/19 08:29,"489 Adams St, Seattle, WA 98101" +234992,Flatscreen TV,1,300,07/30/19 07:13,"616 Spruce St, Boston, MA 02215" +234993,AA Batteries (4-pack),1,3.84,07/13/19 10:04,"831 Walnut St, Los Angeles, CA 90001" +234994,AA Batteries (4-pack),1,3.84,07/22/19 00:56,"299 Church St, Seattle, WA 98101" +234995,Lightning Charging Cable,1,14.95,07/10/19 15:24,"737 14th St, Austin, TX 73301" +234996,27in FHD Monitor,1,149.99,07/18/19 05:04,"421 Johnson St, Dallas, TX 75001" +234997,Apple Airpods Headphones,1,150,07/02/19 19:44,"300 Adams St, Los Angeles, CA 90001" +234998,20in Monitor,1,109.99,07/21/19 16:13,"240 Madison St, San Francisco, CA 94016" +234999,AAA Batteries (4-pack),1,2.99,07/20/19 23:19,"252 River St, Portland, OR 97035" +235000,Lightning Charging Cable,1,14.95,07/05/19 17:12,"802 Jefferson St, Los Angeles, CA 90001" +235001,Bose SoundSport Headphones,1,99.99,07/13/19 12:31,"828 Chestnut St, New York City, NY 10001" +235002,Wired Headphones,1,11.99,07/06/19 10:35,"182 Main St, Los Angeles, CA 90001" +235003,Bose SoundSport Headphones,1,99.99,07/31/19 08:52,"991 Church St, San Francisco, CA 94016" +235004,Apple Airpods Headphones,1,150,07/04/19 18:53,"465 Cedar St, San Francisco, CA 94016" +235005,Bose SoundSport Headphones,1,99.99,07/11/19 11:57,"189 11th St, New York City, NY 10001" +235006,AAA Batteries (4-pack),1,2.99,07/20/19 23:16,"343 Madison St, Los Angeles, CA 90001" +235007,Lightning Charging Cable,1,14.95,07/21/19 06:45,"687 Hill St, Atlanta, GA 30301" +235008,AA Batteries (4-pack),1,3.84,07/03/19 13:16,"397 Sunset St, Atlanta, GA 30301" +235009,AA Batteries (4-pack),2,3.84,07/25/19 21:49,"236 8th St, San Francisco, CA 94016" +235010,AA Batteries (4-pack),2,3.84,07/23/19 08:26,"842 South St, Atlanta, GA 30301" +235011,AA Batteries (4-pack),1,3.84,07/16/19 07:55,"373 6th St, San Francisco, CA 94016" +235012,Wired Headphones,1,11.99,07/26/19 18:31,"552 7th St, Los Angeles, CA 90001" +235013,AAA Batteries (4-pack),1,2.99,07/04/19 14:53,"76 Chestnut St, Atlanta, GA 30301" +235014,Bose SoundSport Headphones,1,99.99,07/18/19 12:02,"291 Maple St, Los Angeles, CA 90001" +235015,Macbook Pro Laptop,1,1700,07/26/19 20:10,"799 Lincoln St, Boston, MA 02215" +235016,Wired Headphones,1,11.99,07/11/19 22:56,"411 1st St, Los Angeles, CA 90001" +235017,AA Batteries (4-pack),1,3.84,07/30/19 22:25,"353 9th St, New York City, NY 10001" +235018,AA Batteries (4-pack),2,3.84,07/02/19 11:35,"338 Jefferson St, San Francisco, CA 94016" +235019,27in FHD Monitor,1,149.99,07/15/19 13:50,"275 4th St, New York City, NY 10001" +235020,27in FHD Monitor,1,149.99,07/18/19 07:05,"836 Wilson St, Austin, TX 73301" +235021,Bose SoundSport Headphones,1,99.99,07/04/19 03:44,"636 Maple St, Los Angeles, CA 90001" +235022,ThinkPad Laptop,1,999.99,07/09/19 14:45,"50 12th St, Los Angeles, CA 90001" +235023,AAA Batteries (4-pack),1,2.99,07/10/19 09:46,"576 Jefferson St, San Francisco, CA 94016" +235024,USB-C Charging Cable,4,11.95,07/24/19 15:43,"27 River St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +235025,Wired Headphones,1,11.99,07/02/19 01:59,"448 Chestnut St, San Francisco, CA 94016" +235026,LG Dryer,1,600.0,07/20/19 19:48,"416 4th St, Austin, TX 73301" +235027,Apple Airpods Headphones,1,150,07/31/19 20:05,"788 Adams St, Atlanta, GA 30301" +235028,Google Phone,1,600,07/18/19 16:19,"709 Elm St, San Francisco, CA 94016" +235029,Apple Airpods Headphones,1,150,07/23/19 22:33,"330 Forest St, Los Angeles, CA 90001" +235030,iPhone,1,700,07/08/19 15:14,"556 Dogwood St, Boston, MA 02215" +235031,34in Ultrawide Monitor,1,379.99,07/12/19 19:13,"12 Adams St, San Francisco, CA 94016" +235032,Lightning Charging Cable,1,14.95,07/26/19 09:26,"929 14th St, New York City, NY 10001" +235033,AA Batteries (4-pack),1,3.84,07/07/19 14:00,"744 Washington St, Atlanta, GA 30301" +235034,AA Batteries (4-pack),1,3.84,07/19/19 14:44,"811 Washington St, San Francisco, CA 94016" +235035,AA Batteries (4-pack),1,3.84,07/31/19 14:21,"6 Adams St, New York City, NY 10001" +235036,AA Batteries (4-pack),1,3.84,07/27/19 18:01,"863 Jackson St, New York City, NY 10001" +235037,LG Dryer,1,600.0,07/06/19 09:30,"815 Cedar St, San Francisco, CA 94016" +235038,Lightning Charging Cable,1,14.95,07/19/19 19:57,"614 Lakeview St, Atlanta, GA 30301" +235039,20in Monitor,1,109.99,07/23/19 09:18,"876 2nd St, New York City, NY 10001" +235040,Wired Headphones,1,11.99,07/13/19 21:41,"827 8th St, San Francisco, CA 94016" +235041,LG Washing Machine,1,600.0,07/03/19 17:51,"421 Center St, San Francisco, CA 94016" +235042,Wired Headphones,1,11.99,07/20/19 14:09,"897 Walnut St, San Francisco, CA 94016" +235043,ThinkPad Laptop,1,999.99,07/02/19 17:00,"163 Cherry St, Boston, MA 02215" +235044,34in Ultrawide Monitor,1,379.99,07/27/19 09:22,"908 Adams St, San Francisco, CA 94016" +235045,27in FHD Monitor,1,149.99,07/03/19 10:49,"552 Willow St, Boston, MA 02215" +235046,AAA Batteries (4-pack),1,2.99,07/08/19 14:17,"521 North St, San Francisco, CA 94016" +235047,AAA Batteries (4-pack),1,2.99,07/25/19 17:45,"605 Walnut St, Portland, OR 97035" +235048,Wired Headphones,1,11.99,07/17/19 19:41,"240 Elm St, San Francisco, CA 94016" +235049,Apple Airpods Headphones,1,150,07/03/19 16:02,"779 Lake St, Boston, MA 02215" +235050,AA Batteries (4-pack),1,3.84,07/28/19 11:39,"857 Johnson St, Los Angeles, CA 90001" +235051,Apple Airpods Headphones,1,150,07/03/19 20:15,"650 Meadow St, New York City, NY 10001" +235052,Lightning Charging Cable,1,14.95,07/21/19 10:47,"153 9th St, Boston, MA 02215" +235053,34in Ultrawide Monitor,1,379.99,07/19/19 11:52,"792 14th St, Seattle, WA 98101" +235054,AAA Batteries (4-pack),1,2.99,07/01/19 13:22,"590 River St, San Francisco, CA 94016" +235055,Macbook Pro Laptop,1,1700,07/29/19 17:31,"677 Madison St, Boston, MA 02215" +235056,Wired Headphones,2,11.99,07/09/19 21:11,"653 Pine St, New York City, NY 10001" +235057,AAA Batteries (4-pack),1,2.99,07/13/19 10:07,"263 Lincoln St, San Francisco, CA 94016" +235058,Bose SoundSport Headphones,1,99.99,07/17/19 22:24,"585 4th St, San Francisco, CA 94016" +235059,27in FHD Monitor,1,149.99,07/29/19 10:12,"756 Ridge St, Atlanta, GA 30301" +235060,USB-C Charging Cable,1,11.95,07/15/19 08:23,"152 Lincoln St, Austin, TX 73301" +235061,Apple Airpods Headphones,1,150,07/24/19 00:55,"63 River St, Los Angeles, CA 90001" +235062,Lightning Charging Cable,1,14.95,07/28/19 00:01,"819 12th St, San Francisco, CA 94016" +235063,AA Batteries (4-pack),1,3.84,07/07/19 11:40,"542 Lakeview St, New York City, NY 10001" +235064,USB-C Charging Cable,1,11.95,07/15/19 12:27,"970 Elm St, New York City, NY 10001" +235065,USB-C Charging Cable,1,11.95,07/18/19 13:32,"760 Sunset St, San Francisco, CA 94016" +235066,iPhone,1,700,07/22/19 22:24,"339 Park St, New York City, NY 10001" +235066,Wired Headphones,1,11.99,07/22/19 22:24,"339 Park St, New York City, NY 10001" +235067,Google Phone,1,600,07/13/19 17:35,"747 Meadow St, Austin, TX 73301" +235068,AAA Batteries (4-pack),3,2.99,07/02/19 00:38,"396 Johnson St, Dallas, TX 75001" +235069,20in Monitor,1,109.99,07/25/19 16:16,"506 Forest St, San Francisco, CA 94016" +235070,Apple Airpods Headphones,1,150,07/05/19 15:37,"786 Maple St, San Francisco, CA 94016" +235071,Flatscreen TV,1,300,07/18/19 23:38,"921 2nd St, New York City, NY 10001" +235072,AA Batteries (4-pack),1,3.84,07/29/19 15:00,"360 Washington St, Los Angeles, CA 90001" +235073,Bose SoundSport Headphones,1,99.99,07/02/19 20:43,"81 2nd St, Seattle, WA 98101" +235074,AAA Batteries (4-pack),1,2.99,07/19/19 16:02,"955 Dogwood St, San Francisco, CA 94016" +235075,USB-C Charging Cable,1,11.95,07/26/19 11:32,"866 12th St, Atlanta, GA 30301" +235076,Wired Headphones,1,11.99,07/15/19 13:04,"552 7th St, Atlanta, GA 30301" +235077,20in Monitor,1,109.99,07/21/19 12:07,"168 Jefferson St, San Francisco, CA 94016" +235078,Bose SoundSport Headphones,1,99.99,07/04/19 03:52,"456 7th St, San Francisco, CA 94016" +235079,Bose SoundSport Headphones,1,99.99,07/20/19 17:18,"176 12th St, Los Angeles, CA 90001" +235080,Apple Airpods Headphones,1,150,07/30/19 19:00,"956 North St, Boston, MA 02215" +235081,ThinkPad Laptop,1,999.99,07/17/19 13:45,"761 Park St, Atlanta, GA 30301" +235082,AAA Batteries (4-pack),1,2.99,07/09/19 20:55,"741 11th St, San Francisco, CA 94016" +235083,Apple Airpods Headphones,1,150,07/11/19 15:56,"479 River St, San Francisco, CA 94016" +235084,Lightning Charging Cable,1,14.95,07/08/19 16:28,"830 Elm St, New York City, NY 10001" +235085,Lightning Charging Cable,1,14.95,07/08/19 22:25,"749 1st St, Seattle, WA 98101" +235086,Wired Headphones,1,11.99,07/20/19 17:01,"412 12th St, Los Angeles, CA 90001" +235087,ThinkPad Laptop,1,999.99,07/07/19 07:58,"39 1st St, New York City, NY 10001" +235088,ThinkPad Laptop,1,999.99,07/20/19 11:32,"915 Lincoln St, San Francisco, CA 94016" +235089,USB-C Charging Cable,1,11.95,07/31/19 18:04,"337 4th St, San Francisco, CA 94016" +235090,AAA Batteries (4-pack),1,2.99,07/09/19 21:46,"990 5th St, New York City, NY 10001" +235091,iPhone,1,700,07/08/19 14:07,"452 Wilson St, Dallas, TX 75001" +235092,Lightning Charging Cable,1,14.95,07/21/19 14:25,"679 13th St, Austin, TX 73301" +235093,AA Batteries (4-pack),2,3.84,07/29/19 09:50,"707 Park St, Dallas, TX 75001" +235094,Lightning Charging Cable,1,14.95,07/22/19 19:45,"340 Forest St, San Francisco, CA 94016" +235095,USB-C Charging Cable,1,11.95,07/02/19 13:44,"468 West St, Los Angeles, CA 90001" +235096,Apple Airpods Headphones,1,150,07/24/19 18:53,"49 Adams St, Portland, OR 97035" +235097,Apple Airpods Headphones,1,150,07/07/19 17:21,"766 Maple St, Austin, TX 73301" +235098,USB-C Charging Cable,1,11.95,07/09/19 17:33,"614 9th St, Portland, OR 97035" +235099,27in 4K Gaming Monitor,1,389.99,07/18/19 06:57,"79 Johnson St, Portland, ME 04101" +235100,Apple Airpods Headphones,1,150,07/20/19 17:31,"246 Hill St, New York City, NY 10001" +235101,20in Monitor,1,109.99,07/27/19 16:02,"415 Meadow St, Dallas, TX 75001" +235102,Apple Airpods Headphones,1,150,07/26/19 21:17,"756 Church St, Portland, ME 04101" +235103,USB-C Charging Cable,1,11.95,07/13/19 09:38,"178 5th St, New York City, NY 10001" +235104,iPhone,1,700,07/04/19 22:25,"879 Spruce St, New York City, NY 10001" +235104,Apple Airpods Headphones,1,150,07/04/19 22:25,"879 Spruce St, New York City, NY 10001" +235105,Lightning Charging Cable,1,14.95,07/26/19 14:08,"863 7th St, Los Angeles, CA 90001" +235106,Wired Headphones,1,11.99,07/01/19 21:15,"812 Church St, Seattle, WA 98101" +235107,Wired Headphones,1,11.99,07/23/19 16:34,"499 Park St, San Francisco, CA 94016" +235108,ThinkPad Laptop,1,999.99,07/05/19 12:06,"239 Meadow St, Boston, MA 02215" +235109,AAA Batteries (4-pack),2,2.99,07/30/19 13:13,"587 Cedar St, Portland, OR 97035" +235110,20in Monitor,1,109.99,07/15/19 11:57,"972 11th St, Austin, TX 73301" +235111,AA Batteries (4-pack),1,3.84,07/19/19 06:42,"80 9th St, Portland, OR 97035" +235112,USB-C Charging Cable,1,11.95,07/02/19 22:57,"605 Meadow St, Boston, MA 02215" +235113,AAA Batteries (4-pack),1,2.99,07/10/19 20:07,"676 Johnson St, San Francisco, CA 94016" +235114,20in Monitor,1,109.99,07/08/19 11:20,"280 Hickory St, San Francisco, CA 94016" +235115,Lightning Charging Cable,1,14.95,07/17/19 15:33,"440 Meadow St, Los Angeles, CA 90001" +235116,Apple Airpods Headphones,1,150,07/17/19 13:54,"185 Willow St, Seattle, WA 98101" +235117,Lightning Charging Cable,1,14.95,07/05/19 16:24,"985 Forest St, Austin, TX 73301" +235118,Wired Headphones,1,11.99,07/05/19 19:06,"662 11th St, San Francisco, CA 94016" +235119,AA Batteries (4-pack),2,3.84,07/26/19 12:17,"687 Sunset St, Los Angeles, CA 90001" +235120,Wired Headphones,1,11.99,07/16/19 18:58,"65 Jackson St, Los Angeles, CA 90001" +235121,27in FHD Monitor,1,149.99,07/24/19 17:00,"332 8th St, New York City, NY 10001" +235122,Flatscreen TV,1,300,07/29/19 12:01,"919 7th St, San Francisco, CA 94016" +235123,Lightning Charging Cable,1,14.95,07/09/19 11:10,"923 North St, Portland, OR 97035" +235124,Bose SoundSport Headphones,1,99.99,07/08/19 09:16,"920 Jefferson St, Dallas, TX 75001" +235125,AA Batteries (4-pack),2,3.84,07/23/19 16:17,"10 Hickory St, Boston, MA 02215" +235126,USB-C Charging Cable,1,11.95,07/03/19 12:46,"690 14th St, New York City, NY 10001" +235127,AAA Batteries (4-pack),2,2.99,07/21/19 13:37,"741 9th St, New York City, NY 10001" +235128,Apple Airpods Headphones,1,150,07/22/19 22:48,"461 Center St, Portland, OR 97035" +235129,USB-C Charging Cable,1,11.95,07/15/19 12:39,"746 River St, Dallas, TX 75001" +235129,AAA Batteries (4-pack),3,2.99,07/15/19 12:39,"746 River St, Dallas, TX 75001" +235130,Google Phone,1,600,07/05/19 17:01,"487 Maple St, Los Angeles, CA 90001" +235130,USB-C Charging Cable,1,11.95,07/05/19 17:01,"487 Maple St, Los Angeles, CA 90001" +235131,Vareebadd Phone,1,400,07/02/19 00:39,"541 Walnut St, San Francisco, CA 94016" +235131,USB-C Charging Cable,1,11.95,07/02/19 00:39,"541 Walnut St, San Francisco, CA 94016" +235132,34in Ultrawide Monitor,1,379.99,07/15/19 12:20,"611 Center St, San Francisco, CA 94016" +235133,AA Batteries (4-pack),2,3.84,07/27/19 23:12,"954 Cedar St, Boston, MA 02215" +235134,Google Phone,1,600,07/29/19 12:18,"490 Cherry St, Dallas, TX 75001" +235135,ThinkPad Laptop,1,999.99,07/16/19 11:53,"882 South St, San Francisco, CA 94016" +235135,Wired Headphones,1,11.99,07/16/19 11:53,"882 South St, San Francisco, CA 94016" +235136,AA Batteries (4-pack),2,3.84,07/31/19 08:40,"553 Hill St, New York City, NY 10001" +235137,Flatscreen TV,1,300,07/20/19 15:13,"46 Madison St, Portland, OR 97035" +235138,AAA Batteries (4-pack),1,2.99,07/31/19 23:01,"229 Church St, Austin, TX 73301" +235139,iPhone,1,700,07/27/19 18:19,"934 Highland St, Los Angeles, CA 90001" +235139,Apple Airpods Headphones,1,150,07/27/19 18:19,"934 Highland St, Los Angeles, CA 90001" +235140,27in FHD Monitor,1,149.99,07/08/19 16:27,"106 Elm St, Dallas, TX 75001" +235141,Wired Headphones,1,11.99,07/22/19 07:47,"901 Highland St, Portland, OR 97035" +235142,ThinkPad Laptop,1,999.99,07/15/19 20:28,"790 12th St, New York City, NY 10001" +235143,Macbook Pro Laptop,1,1700,07/02/19 14:00,"819 12th St, San Francisco, CA 94016" +235144,Wired Headphones,1,11.99,07/18/19 22:00,"438 North St, New York City, NY 10001" +235145,AAA Batteries (4-pack),1,2.99,07/18/19 18:57,"893 Pine St, New York City, NY 10001" +235146,Apple Airpods Headphones,1,150,07/19/19 11:00,"329 Pine St, New York City, NY 10001" +235147,Google Phone,1,600,07/28/19 13:49,"145 11th St, Atlanta, GA 30301" +235148,Bose SoundSport Headphones,1,99.99,07/26/19 18:46,"138 10th St, Dallas, TX 75001" +235149,Apple Airpods Headphones,1,150,07/18/19 03:32,"938 Madison St, Atlanta, GA 30301" +235150,Apple Airpods Headphones,1,150,07/20/19 20:57,"721 Madison St, San Francisco, CA 94016" +235151,AA Batteries (4-pack),1,3.84,07/10/19 12:01,"283 River St, Los Angeles, CA 90001" +235152,27in FHD Monitor,1,149.99,07/17/19 16:56,"77 Park St, Los Angeles, CA 90001" +235153,Lightning Charging Cable,1,14.95,07/09/19 23:23,"744 Johnson St, San Francisco, CA 94016" +235154,Wired Headphones,1,11.99,07/06/19 18:02,"754 South St, Portland, ME 04101" +235155,AAA Batteries (4-pack),1,2.99,07/13/19 13:36,"177 Johnson St, Atlanta, GA 30301" +235156,Bose SoundSport Headphones,1,99.99,07/28/19 22:12,"125 Johnson St, Austin, TX 73301" +235157,Bose SoundSport Headphones,1,99.99,07/08/19 09:23,"411 Cedar St, San Francisco, CA 94016" +235158,Lightning Charging Cable,1,14.95,07/07/19 08:17,"207 Adams St, New York City, NY 10001" +235159,USB-C Charging Cable,1,11.95,07/04/19 19:16,"210 Elm St, San Francisco, CA 94016" +235159,Apple Airpods Headphones,1,150,07/04/19 19:16,"210 Elm St, San Francisco, CA 94016" +235160,AA Batteries (4-pack),1,3.84,07/31/19 21:16,"463 Lake St, San Francisco, CA 94016" +235161,Apple Airpods Headphones,1,150,07/18/19 06:14,"684 Forest St, Boston, MA 02215" +235162,AA Batteries (4-pack),1,3.84,07/06/19 01:06,"751 Dogwood St, Los Angeles, CA 90001" +235163,AAA Batteries (4-pack),4,2.99,07/21/19 14:26,"223 Walnut St, San Francisco, CA 94016" +235164,AA Batteries (4-pack),3,3.84,07/15/19 10:49,"970 Main St, San Francisco, CA 94016" +235165,Flatscreen TV,1,300,07/31/19 16:44,"789 Spruce St, Los Angeles, CA 90001" +235166,Apple Airpods Headphones,1,150,07/29/19 21:06,"823 8th St, San Francisco, CA 94016" +235167,Flatscreen TV,1,300,07/27/19 05:38,"169 Lakeview St, New York City, NY 10001" +235168,ThinkPad Laptop,1,999.99,07/31/19 21:11,"720 Dogwood St, Atlanta, GA 30301" +235169,27in FHD Monitor,1,149.99,07/04/19 13:07,"592 Madison St, New York City, NY 10001" +235170,AAA Batteries (4-pack),2,2.99,07/08/19 13:17,"642 Lincoln St, Atlanta, GA 30301" +235171,Apple Airpods Headphones,1,150,07/20/19 13:33,"910 Dogwood St, Dallas, TX 75001" +235172,AA Batteries (4-pack),1,3.84,07/26/19 13:56,"515 1st St, New York City, NY 10001" +235173,AA Batteries (4-pack),1,3.84,07/04/19 18:51,"288 Park St, Dallas, TX 75001" +235174,AAA Batteries (4-pack),1,2.99,07/02/19 13:00,"255 11th St, San Francisco, CA 94016" +235175,Macbook Pro Laptop,1,1700,07/17/19 23:02,"380 Highland St, San Francisco, CA 94016" +235176,iPhone,1,700,07/02/19 11:23,"22 West St, San Francisco, CA 94016" +235177,Bose SoundSport Headphones,1,99.99,07/09/19 14:57,"45 10th St, San Francisco, CA 94016" +235178,Lightning Charging Cable,1,14.95,07/24/19 18:50,"710 Ridge St, New York City, NY 10001" +235179,34in Ultrawide Monitor,1,379.99,07/02/19 14:20,"750 Cherry St, Los Angeles, CA 90001" +235180,Bose SoundSport Headphones,1,99.99,07/21/19 07:10,"650 South St, Dallas, TX 75001" +235181,USB-C Charging Cable,1,11.95,07/11/19 20:00,"943 Sunset St, Dallas, TX 75001" +235182,Bose SoundSport Headphones,1,99.99,07/10/19 02:46,"500 1st St, New York City, NY 10001" +235183,Lightning Charging Cable,1,14.95,07/05/19 15:44,"118 Cherry St, Seattle, WA 98101" +235184,AA Batteries (4-pack),1,3.84,07/06/19 13:12,"671 Church St, Austin, TX 73301" +235185,Google Phone,1,600,07/14/19 23:58,"325 5th St, Atlanta, GA 30301" +235186,27in FHD Monitor,1,149.99,07/07/19 07:19,"80 12th St, Dallas, TX 75001" +235187,Bose SoundSport Headphones,1,99.99,07/08/19 20:57,"310 Cherry St, Portland, OR 97035" +235188,20in Monitor,1,109.99,07/06/19 21:54,"487 Main St, San Francisco, CA 94016" +235189,USB-C Charging Cable,1,11.95,07/10/19 09:40,"941 South St, Seattle, WA 98101" +235190,Macbook Pro Laptop,1,1700,07/04/19 14:53,"727 5th St, Los Angeles, CA 90001" +235191,AA Batteries (4-pack),1,3.84,07/20/19 06:27,"391 North St, Los Angeles, CA 90001" +235192,34in Ultrawide Monitor,1,379.99,07/24/19 19:46,"5 Sunset St, Dallas, TX 75001" +235193,AAA Batteries (4-pack),2,2.99,07/19/19 18:42,"540 North St, Los Angeles, CA 90001" +235194,AA Batteries (4-pack),1,3.84,07/29/19 10:25,"517 1st St, San Francisco, CA 94016" +235195,Vareebadd Phone,1,400,07/11/19 12:53,"461 9th St, Austin, TX 73301" +235196,34in Ultrawide Monitor,1,379.99,07/29/19 14:20,"725 Lake St, San Francisco, CA 94016" +235197,34in Ultrawide Monitor,1,379.99,07/04/19 18:25,"9 8th St, Boston, MA 02215" +235198,Wired Headphones,1,11.99,07/31/19 13:54,"542 11th St, Boston, MA 02215" +235199,Wired Headphones,1,11.99,07/13/19 10:04,"473 Lake St, Portland, OR 97035" +235200,AAA Batteries (4-pack),2,2.99,07/01/19 11:47,"4 9th St, San Francisco, CA 94016" +235201,Bose SoundSport Headphones,1,99.99,07/14/19 04:56,"762 10th St, Seattle, WA 98101" +235202,Wired Headphones,1,11.99,07/17/19 14:58,"129 Hill St, San Francisco, CA 94016" +235203,34in Ultrawide Monitor,1,379.99,07/13/19 12:47,"102 River St, Portland, OR 97035" +235204,USB-C Charging Cable,1,11.95,07/16/19 11:34,"406 11th St, San Francisco, CA 94016" +235205,AAA Batteries (4-pack),2,2.99,07/01/19 21:56,"71 Elm St, Los Angeles, CA 90001" +235206,Wired Headphones,1,11.99,07/24/19 19:00,"514 Jefferson St, Los Angeles, CA 90001" +235207,Lightning Charging Cable,1,14.95,07/12/19 15:41,"674 Chestnut St, Dallas, TX 75001" +235208,Macbook Pro Laptop,1,1700,07/20/19 09:42,"49 North St, New York City, NY 10001" +235209,20in Monitor,1,109.99,07/17/19 22:19,"483 Cedar St, Los Angeles, CA 90001" +235210,Lightning Charging Cable,2,14.95,07/06/19 17:01,"52 Dogwood St, Boston, MA 02215" +235211,Wired Headphones,1,11.99,07/23/19 02:30,"393 Maple St, Boston, MA 02215" +235212,AAA Batteries (4-pack),1,2.99,07/27/19 13:14,"545 Ridge St, Boston, MA 02215" +235213,iPhone,1,700,07/22/19 19:18,"655 Meadow St, Los Angeles, CA 90001" +235214,AA Batteries (4-pack),1,3.84,07/16/19 11:37,"415 River St, San Francisco, CA 94016" +235215,27in FHD Monitor,1,149.99,07/16/19 16:19,"810 Adams St, Portland, OR 97035" +235216,Wired Headphones,1,11.99,07/18/19 00:00,"861 6th St, Seattle, WA 98101" +235217,USB-C Charging Cable,1,11.95,07/13/19 10:34,"995 River St, Atlanta, GA 30301" +235218,Lightning Charging Cable,2,14.95,07/29/19 17:43,"301 Jefferson St, Atlanta, GA 30301" +235219,AA Batteries (4-pack),1,3.84,07/06/19 15:45,"559 Willow St, San Francisco, CA 94016" +235220,Bose SoundSport Headphones,1,99.99,07/31/19 13:56,"740 Willow St, New York City, NY 10001" +235221,34in Ultrawide Monitor,1,379.99,07/14/19 14:28,"569 Cherry St, Boston, MA 02215" +235222,20in Monitor,1,109.99,07/17/19 23:42,"79 Jackson St, Dallas, TX 75001" +235222,AA Batteries (4-pack),3,3.84,07/17/19 23:42,"79 Jackson St, Dallas, TX 75001" +235223,USB-C Charging Cable,1,11.95,07/06/19 19:54,"185 6th St, Seattle, WA 98101" +235224,Lightning Charging Cable,1,14.95,07/07/19 14:03,"316 8th St, Los Angeles, CA 90001" +235225,AAA Batteries (4-pack),2,2.99,07/12/19 12:18,"939 Washington St, San Francisco, CA 94016" +235226,27in 4K Gaming Monitor,1,389.99,07/19/19 17:21,"960 Highland St, New York City, NY 10001" +235227,Wired Headphones,1,11.99,07/13/19 10:21,"967 Cedar St, Seattle, WA 98101" +235228,AA Batteries (4-pack),1,3.84,07/18/19 22:46,"247 7th St, Los Angeles, CA 90001" +235229,Apple Airpods Headphones,1,150,07/26/19 20:29,"415 Cedar St, Atlanta, GA 30301" +235230,AAA Batteries (4-pack),1,2.99,07/04/19 13:00,"658 Cedar St, San Francisco, CA 94016" +235231,USB-C Charging Cable,1,11.95,07/07/19 08:52,"734 8th St, Dallas, TX 75001" +235232,Lightning Charging Cable,1,14.95,07/24/19 11:19,"191 Adams St, Portland, OR 97035" +235233,AA Batteries (4-pack),1,3.84,07/10/19 17:06,"656 Sunset St, San Francisco, CA 94016" +235234,Flatscreen TV,1,300,07/14/19 09:20,"745 12th St, New York City, NY 10001" +235235,27in FHD Monitor,1,149.99,07/31/19 13:37,"269 Ridge St, Atlanta, GA 30301" +235236,Apple Airpods Headphones,1,150,07/01/19 12:26,"530 Wilson St, Los Angeles, CA 90001" +235237,Wired Headphones,1,11.99,07/01/19 19:18,"214 4th St, Los Angeles, CA 90001" +235238,Lightning Charging Cable,1,14.95,07/04/19 22:37,"825 Spruce St, Atlanta, GA 30301" +235239,Apple Airpods Headphones,1,150,07/17/19 09:15,"543 13th St, Los Angeles, CA 90001" +235240,AAA Batteries (4-pack),2,2.99,07/04/19 14:35,"372 River St, Boston, MA 02215" +235241,27in FHD Monitor,1,149.99,07/05/19 19:37,"673 Main St, San Francisco, CA 94016" +235242,iPhone,1,700,07/24/19 07:49,"975 Lakeview St, Los Angeles, CA 90001" +235243,Bose SoundSport Headphones,1,99.99,07/11/19 18:27,"896 Johnson St, Los Angeles, CA 90001" +235244,34in Ultrawide Monitor,1,379.99,07/27/19 18:25,"549 River St, Los Angeles, CA 90001" +235245,Wired Headphones,1,11.99,07/14/19 08:46,"852 6th St, New York City, NY 10001" +235246,iPhone,1,700,07/20/19 10:30,"753 River St, New York City, NY 10001" +235247,Lightning Charging Cable,1,14.95,07/30/19 22:57,"449 Washington St, Boston, MA 02215" +235248,AA Batteries (4-pack),1,3.84,07/20/19 00:53,"948 Church St, San Francisco, CA 94016" +235249,Vareebadd Phone,1,400,07/19/19 17:30,"753 Meadow St, San Francisco, CA 94016" +235249,USB-C Charging Cable,1,11.95,07/19/19 17:30,"753 Meadow St, San Francisco, CA 94016" +235250,Vareebadd Phone,1,400,07/30/19 19:49,"513 Lincoln St, San Francisco, CA 94016" +235251,USB-C Charging Cable,1,11.95,07/05/19 17:21,"993 Forest St, Seattle, WA 98101" +235252,Apple Airpods Headphones,1,150,07/30/19 18:35,"666 Willow St, Seattle, WA 98101" +235253,Lightning Charging Cable,1,14.95,07/14/19 14:00,"843 Adams St, Portland, OR 97035" +235254,Macbook Pro Laptop,1,1700,07/21/19 12:01,"410 13th St, New York City, NY 10001" +235255,AA Batteries (4-pack),1,3.84,07/30/19 12:30,"768 Madison St, San Francisco, CA 94016" +235256,27in FHD Monitor,1,149.99,07/09/19 17:43,"589 10th St, Dallas, TX 75001" +235257,Wired Headphones,1,11.99,07/14/19 13:56,"67 Washington St, San Francisco, CA 94016" +235258,Wired Headphones,1,11.99,07/13/19 20:10,"255 South St, San Francisco, CA 94016" +235259,USB-C Charging Cable,1,11.95,07/29/19 19:56,"741 4th St, San Francisco, CA 94016" +235260,Bose SoundSport Headphones,1,99.99,07/26/19 21:38,"443 10th St, Boston, MA 02215" +235261,iPhone,1,700,07/08/19 14:14,"914 13th St, Los Angeles, CA 90001" +235262,USB-C Charging Cable,1,11.95,07/14/19 15:22,"66 Madison St, Portland, OR 97035" +235263,Wired Headphones,2,11.99,07/11/19 06:28,"507 Walnut St, San Francisco, CA 94016" +235264,USB-C Charging Cable,2,11.95,07/03/19 05:02,"889 Washington St, Boston, MA 02215" +235265,AAA Batteries (4-pack),1,2.99,07/19/19 16:10,"250 8th St, Seattle, WA 98101" +235266,AA Batteries (4-pack),1,3.84,07/17/19 00:52,"65 Wilson St, Boston, MA 02215" +235267,Flatscreen TV,1,300,07/20/19 10:29,"127 11th St, New York City, NY 10001" +235268,USB-C Charging Cable,1,11.95,07/17/19 15:38,"187 9th St, Los Angeles, CA 90001" +235269,AAA Batteries (4-pack),3,2.99,07/03/19 16:59,"844 North St, San Francisco, CA 94016" +235270,AAA Batteries (4-pack),1,2.99,07/29/19 16:11,"901 Maple St, San Francisco, CA 94016" +235271,iPhone,1,700,07/19/19 18:10,"816 Lakeview St, New York City, NY 10001" +235271,Lightning Charging Cable,1,14.95,07/19/19 18:10,"816 Lakeview St, New York City, NY 10001" +235272,USB-C Charging Cable,1,11.95,07/20/19 10:41,"508 Chestnut St, Los Angeles, CA 90001" +235273,Bose SoundSport Headphones,1,99.99,07/11/19 01:00,"411 8th St, San Francisco, CA 94016" +235274,AA Batteries (4-pack),2,3.84,07/05/19 16:54,"520 Dogwood St, Atlanta, GA 30301" +235275,Apple Airpods Headphones,1,150,07/15/19 00:45,"915 12th St, Seattle, WA 98101" +235276,Bose SoundSport Headphones,1,99.99,07/23/19 18:13,"844 2nd St, San Francisco, CA 94016" +235277,LG Washing Machine,1,600.0,07/05/19 19:10,"469 South St, Austin, TX 73301" +235278,Bose SoundSport Headphones,1,99.99,07/30/19 22:35,"654 River St, Portland, ME 04101" +235279,AA Batteries (4-pack),1,3.84,07/18/19 13:50,"696 Pine St, Seattle, WA 98101" +235280,Wired Headphones,2,11.99,07/21/19 21:44,"486 Highland St, Atlanta, GA 30301" +235281,AAA Batteries (4-pack),3,2.99,07/09/19 22:42,"549 Cedar St, Dallas, TX 75001" +235282,USB-C Charging Cable,1,11.95,07/24/19 17:32,"498 Pine St, Los Angeles, CA 90001" +235283,AAA Batteries (4-pack),2,2.99,07/24/19 22:53,"376 Ridge St, San Francisco, CA 94016" +235284,ThinkPad Laptop,1,999.99,07/26/19 18:41,"306 Cherry St, Atlanta, GA 30301" +235285,Apple Airpods Headphones,1,150,07/17/19 21:24,"171 11th St, Los Angeles, CA 90001" +235286,27in FHD Monitor,1,149.99,07/07/19 17:36,"548 Cedar St, Boston, MA 02215" +235287,ThinkPad Laptop,1,999.99,07/22/19 15:18,"710 7th St, Boston, MA 02215" +235288,USB-C Charging Cable,1,11.95,07/30/19 13:58,"541 Chestnut St, New York City, NY 10001" +235289,AA Batteries (4-pack),1,3.84,07/18/19 14:08,"625 Johnson St, Atlanta, GA 30301" +235290,27in 4K Gaming Monitor,1,389.99,07/17/19 13:48,"559 Maple St, Los Angeles, CA 90001" +235291,AAA Batteries (4-pack),1,2.99,07/08/19 08:56,"434 Main St, Dallas, TX 75001" +235292,Lightning Charging Cable,1,14.95,07/01/19 14:59,"507 River St, New York City, NY 10001" +235293,Flatscreen TV,1,300,07/30/19 12:02,"490 Lake St, Seattle, WA 98101" +235294,USB-C Charging Cable,1,11.95,07/28/19 14:33,"596 Lincoln St, San Francisco, CA 94016" +235295,Apple Airpods Headphones,1,150,07/03/19 15:33,"694 Dogwood St, Dallas, TX 75001" +235296,AA Batteries (4-pack),5,3.84,07/10/19 12:15,"516 4th St, Los Angeles, CA 90001" +235297,Flatscreen TV,1,300,07/03/19 14:23,"642 North St, New York City, NY 10001" +235298,20in Monitor,1,109.99,07/11/19 22:42,"799 Center St, New York City, NY 10001" +235298,AA Batteries (4-pack),2,3.84,07/11/19 22:42,"799 Center St, New York City, NY 10001" +235299,AA Batteries (4-pack),1,3.84,07/27/19 18:04,"745 Maple St, Dallas, TX 75001" +235300,Wired Headphones,1,11.99,07/26/19 22:03,"938 South St, Austin, TX 73301" +235301,Bose SoundSport Headphones,1,99.99,07/30/19 12:54,"557 4th St, Portland, OR 97035" +235302,USB-C Charging Cable,1,11.95,07/12/19 19:04,"783 12th St, Dallas, TX 75001" +235303,USB-C Charging Cable,1,11.95,07/18/19 14:43,"864 Highland St, Boston, MA 02215" +235304,27in FHD Monitor,1,149.99,07/23/19 22:09,"449 7th St, Atlanta, GA 30301" +235305,27in 4K Gaming Monitor,1,389.99,07/11/19 08:44,"15 South St, Los Angeles, CA 90001" +235306,AA Batteries (4-pack),1,3.84,07/17/19 12:21,"288 9th St, Austin, TX 73301" +235307,Wired Headphones,1,11.99,07/17/19 20:48,"432 Lakeview St, Los Angeles, CA 90001" +235308,AA Batteries (4-pack),1,3.84,07/29/19 10:48,"606 Forest St, San Francisco, CA 94016" +235309,AA Batteries (4-pack),2,3.84,07/13/19 14:48,"52 12th St, Dallas, TX 75001" +235310,Macbook Pro Laptop,1,1700,07/22/19 23:11,"606 Walnut St, San Francisco, CA 94016" +235311,AA Batteries (4-pack),1,3.84,07/01/19 10:45,"259 Johnson St, Los Angeles, CA 90001" +235312,27in 4K Gaming Monitor,1,389.99,07/28/19 23:56,"324 Spruce St, Portland, OR 97035" +235313,Macbook Pro Laptop,1,1700,07/30/19 04:19,"246 Cedar St, Seattle, WA 98101" +235314,AAA Batteries (4-pack),1,2.99,07/10/19 18:48,"323 Jackson St, San Francisco, CA 94016" +235315,Flatscreen TV,1,300,07/08/19 14:27,"956 Chestnut St, San Francisco, CA 94016" +235316,Apple Airpods Headphones,1,150,07/22/19 20:52,"934 Center St, Boston, MA 02215" +235317,AAA Batteries (4-pack),5,2.99,07/12/19 19:58,"869 11th St, Austin, TX 73301" +235318,Wired Headphones,1,11.99,07/08/19 07:32,"63 Chestnut St, San Francisco, CA 94016" +235319,USB-C Charging Cable,1,11.95,07/01/19 18:10,"215 Elm St, Los Angeles, CA 90001" +235320,Apple Airpods Headphones,1,150,07/12/19 15:05,"305 Main St, Dallas, TX 75001" +235321,Flatscreen TV,1,300,07/30/19 02:27,"535 12th St, Seattle, WA 98101" +235322,Apple Airpods Headphones,1,150,07/07/19 14:55,"839 Elm St, Austin, TX 73301" +235323,AAA Batteries (4-pack),1,2.99,07/12/19 18:50,"921 River St, San Francisco, CA 94016" +235324,iPhone,1,700,07/11/19 22:21,"379 Madison St, San Francisco, CA 94016" +235325,USB-C Charging Cable,1,11.95,07/22/19 19:00,"182 Jackson St, New York City, NY 10001" +235326,Wired Headphones,1,11.99,07/21/19 12:07,"657 Johnson St, New York City, NY 10001" +235327,AA Batteries (4-pack),1,3.84,07/22/19 01:31,"442 Highland St, New York City, NY 10001" +235328,34in Ultrawide Monitor,1,379.99,07/30/19 13:48,"305 10th St, Seattle, WA 98101" +235329,USB-C Charging Cable,1,11.95,07/13/19 13:54,"615 Spruce St, New York City, NY 10001" +235330,USB-C Charging Cable,1,11.95,07/17/19 06:16,"589 Meadow St, Boston, MA 02215" +235331,LG Dryer,1,600.0,07/07/19 16:45,"641 Lincoln St, Dallas, TX 75001" +235332,Apple Airpods Headphones,1,150,07/16/19 11:15,"285 8th St, San Francisco, CA 94016" +235333,Bose SoundSport Headphones,1,99.99,07/11/19 23:36,"212 Hill St, Boston, MA 02215" +235334,Apple Airpods Headphones,1,150,07/22/19 20:26,"230 Chestnut St, San Francisco, CA 94016" +,,,,, +235335,Wired Headphones,1,11.99,07/23/19 08:58,"811 Pine St, San Francisco, CA 94016" +235336,Lightning Charging Cable,1,14.95,07/26/19 18:56,"745 Johnson St, Los Angeles, CA 90001" +235337,iPhone,1,700,07/26/19 11:49,"488 Willow St, New York City, NY 10001" +235337,Lightning Charging Cable,1,14.95,07/26/19 11:49,"488 Willow St, New York City, NY 10001" +235338,Lightning Charging Cable,1,14.95,07/24/19 15:32,"94 Jefferson St, Atlanta, GA 30301" +235339,AAA Batteries (4-pack),1,2.99,07/13/19 10:01,"908 Lincoln St, Atlanta, GA 30301" +235340,Apple Airpods Headphones,1,150,07/30/19 08:36,"803 Park St, San Francisco, CA 94016" +235341,USB-C Charging Cable,1,11.95,07/17/19 09:29,"356 14th St, Los Angeles, CA 90001" +235342,AA Batteries (4-pack),2,3.84,07/19/19 09:31,"883 11th St, Dallas, TX 75001" +235343,USB-C Charging Cable,1,11.95,07/01/19 14:44,"712 Cherry St, Seattle, WA 98101" +235344,Macbook Pro Laptop,1,1700,07/10/19 22:38,"655 Jackson St, San Francisco, CA 94016" +235345,Wired Headphones,1,11.99,07/19/19 15:43,"390 Elm St, Dallas, TX 75001" +235346,27in 4K Gaming Monitor,1,389.99,07/15/19 10:36,"237 Adams St, San Francisco, CA 94016" +235347,AAA Batteries (4-pack),2,2.99,07/06/19 23:41,"662 Sunset St, Boston, MA 02215" +235348,Wired Headphones,1,11.99,07/17/19 16:22,"926 8th St, Los Angeles, CA 90001" +235349,Google Phone,1,600,07/21/19 22:07,"193 Meadow St, San Francisco, CA 94016" +235350,Lightning Charging Cable,1,14.95,07/28/19 19:53,"809 Adams St, Boston, MA 02215" +235351,AAA Batteries (4-pack),1,2.99,07/06/19 12:18,"264 Johnson St, New York City, NY 10001" +235352,Apple Airpods Headphones,1,150,07/04/19 19:08,"681 Hill St, New York City, NY 10001" +,,,,, +235353,iPhone,1,700,07/01/19 14:38,"726 Meadow St, San Francisco, CA 94016" +235354,USB-C Charging Cable,1,11.95,07/22/19 22:56,"929 Jefferson St, Seattle, WA 98101" +235355,Bose SoundSport Headphones,1,99.99,07/13/19 08:48,"706 Center St, New York City, NY 10001" +235356,20in Monitor,1,109.99,07/04/19 03:03,"949 Jackson St, San Francisco, CA 94016" +235357,Macbook Pro Laptop,1,1700,07/14/19 08:01,"513 11th St, Portland, OR 97035" +235358,Apple Airpods Headphones,1,150,07/07/19 21:44,"706 River St, Atlanta, GA 30301" +235359,AA Batteries (4-pack),1,3.84,07/17/19 14:43,"858 West St, Seattle, WA 98101" +235360,Google Phone,1,600,07/15/19 12:33,"602 Church St, San Francisco, CA 94016" +235361,Bose SoundSport Headphones,1,99.99,07/25/19 16:09,"23 Spruce St, San Francisco, CA 94016" +235361,Lightning Charging Cable,1,14.95,07/25/19 16:09,"23 Spruce St, San Francisco, CA 94016" +235362,Macbook Pro Laptop,1,1700,07/12/19 20:15,"473 Cedar St, San Francisco, CA 94016" +235363,Google Phone,1,600,07/12/19 12:31,"115 14th St, Boston, MA 02215" +235364,AA Batteries (4-pack),1,3.84,07/27/19 15:10,"702 Hill St, Los Angeles, CA 90001" +235365,AAA Batteries (4-pack),1,2.99,07/23/19 02:41,"937 Sunset St, Boston, MA 02215" +235366,Flatscreen TV,1,300,07/30/19 12:11,"343 Hill St, San Francisco, CA 94016" +235367,USB-C Charging Cable,1,11.95,07/16/19 12:37,"990 Elm St, Boston, MA 02215" +235368,iPhone,1,700,07/11/19 09:23,"597 Sunset St, Atlanta, GA 30301" +235369,USB-C Charging Cable,1,11.95,07/19/19 17:54,"793 Main St, New York City, NY 10001" +235370,USB-C Charging Cable,2,11.95,07/18/19 23:18,"538 Willow St, Dallas, TX 75001" +235371,Apple Airpods Headphones,1,150,07/29/19 22:04,"583 14th St, San Francisco, CA 94016" +235372,Lightning Charging Cable,1,14.95,07/02/19 12:09,"793 8th St, Austin, TX 73301" +235373,AAA Batteries (4-pack),1,2.99,07/20/19 17:39,"147 Park St, San Francisco, CA 94016" +235374,USB-C Charging Cable,1,11.95,07/26/19 22:44,"214 Lakeview St, San Francisco, CA 94016" +235375,ThinkPad Laptop,1,999.99,07/19/19 16:11,"119 Spruce St, San Francisco, CA 94016" +235376,AA Batteries (4-pack),2,3.84,07/29/19 12:26,"602 Center St, New York City, NY 10001" +235377,Bose SoundSport Headphones,1,99.99,07/07/19 20:32,"360 1st St, Boston, MA 02215" +235378,iPhone,1,700,07/26/19 16:38,"318 Cedar St, Seattle, WA 98101" +235379,Flatscreen TV,1,300,07/14/19 14:17,"171 Church St, Seattle, WA 98101" +235380,Wired Headphones,1,11.99,07/22/19 07:50,"728 12th St, New York City, NY 10001" +235381,Wired Headphones,1,11.99,07/16/19 11:04,"346 South St, Dallas, TX 75001" +235381,Lightning Charging Cable,1,14.95,07/16/19 11:04,"346 South St, Dallas, TX 75001" +235382,Lightning Charging Cable,1,14.95,07/20/19 15:31,"873 Walnut St, Los Angeles, CA 90001" +235383,iPhone,1,700,07/18/19 11:22,"488 Chestnut St, Boston, MA 02215" +235384,AAA Batteries (4-pack),1,2.99,07/26/19 17:02,"916 6th St, San Francisco, CA 94016" +235385,Lightning Charging Cable,2,14.95,07/10/19 13:59,"680 Church St, Boston, MA 02215" +235386,Wired Headphones,1,11.99,07/30/19 20:21,"245 Elm St, San Francisco, CA 94016" +235387,AA Batteries (4-pack),1,3.84,07/31/19 14:41,"629 River St, Atlanta, GA 30301" +235388,USB-C Charging Cable,1,11.95,07/09/19 06:31,"521 Walnut St, Boston, MA 02215" +235389,AA Batteries (4-pack),1,3.84,07/01/19 22:36,"949 Highland St, Dallas, TX 75001" +235390,27in 4K Gaming Monitor,1,389.99,07/27/19 18:40,"822 Adams St, Portland, OR 97035" +235391,iPhone,1,700,07/02/19 21:27,"386 Hickory St, Portland, ME 04101" +235392,20in Monitor,1,109.99,07/06/19 15:21,"536 10th St, Portland, OR 97035" +235393,Bose SoundSport Headphones,1,99.99,07/30/19 17:14,"493 South St, Portland, OR 97035" +235394,AA Batteries (4-pack),1,3.84,07/06/19 21:29,"546 Madison St, San Francisco, CA 94016" +235395,Wired Headphones,2,11.99,07/05/19 22:59,"687 Walnut St, Dallas, TX 75001" +235396,Wired Headphones,1,11.99,07/22/19 07:37,"20 Pine St, Atlanta, GA 30301" +235397,Lightning Charging Cable,1,14.95,07/13/19 12:57,"584 1st St, San Francisco, CA 94016" +235398,USB-C Charging Cable,1,11.95,07/04/19 16:11,"591 Main St, San Francisco, CA 94016" +235399,AA Batteries (4-pack),3,3.84,07/03/19 13:04,"785 Madison St, Los Angeles, CA 90001" +235400,Lightning Charging Cable,1,14.95,07/15/19 23:17,"211 Jackson St, Dallas, TX 75001" +235401,Wired Headphones,1,11.99,07/03/19 12:19,"365 Church St, Los Angeles, CA 90001" +235402,Apple Airpods Headphones,1,150,07/08/19 15:08,"455 Hill St, San Francisco, CA 94016" +235403,Apple Airpods Headphones,1,150,07/07/19 15:08,"462 Meadow St, San Francisco, CA 94016" +235404,AA Batteries (4-pack),1,3.84,07/18/19 19:52,"62 Chestnut St, New York City, NY 10001" +235405,USB-C Charging Cable,1,11.95,07/20/19 22:20,"378 Madison St, San Francisco, CA 94016" +235406,AA Batteries (4-pack),1,3.84,07/21/19 12:50,"159 2nd St, San Francisco, CA 94016" +235407,27in 4K Gaming Monitor,1,389.99,07/02/19 18:14,"491 Spruce St, New York City, NY 10001" +235408,Lightning Charging Cable,1,14.95,07/27/19 11:32,"445 Hill St, Austin, TX 73301" +235409,AAA Batteries (4-pack),1,2.99,07/14/19 22:56,"795 Chestnut St, San Francisco, CA 94016" +235409,Macbook Pro Laptop,1,1700,07/14/19 22:56,"795 Chestnut St, San Francisco, CA 94016" +235410,AAA Batteries (4-pack),1,2.99,07/05/19 16:05,"922 10th St, San Francisco, CA 94016" +235411,Wired Headphones,1,11.99,07/22/19 13:56,"13 Pine St, San Francisco, CA 94016" +235412,Apple Airpods Headphones,1,150,07/03/19 20:10,"562 Sunset St, San Francisco, CA 94016" +235413,27in FHD Monitor,1,149.99,07/15/19 09:57,"715 13th St, Dallas, TX 75001" +235414,Wired Headphones,1,11.99,07/12/19 14:48,"772 Center St, Boston, MA 02215" +235415,Lightning Charging Cable,1,14.95,07/23/19 12:08,"70 Maple St, New York City, NY 10001" +235416,USB-C Charging Cable,1,11.95,07/06/19 13:33,"330 Ridge St, Portland, OR 97035" +235417,Bose SoundSport Headphones,1,99.99,07/02/19 21:39,"962 10th St, Seattle, WA 98101" +235418,USB-C Charging Cable,1,11.95,07/10/19 23:29,"813 Spruce St, Portland, OR 97035" +235419,ThinkPad Laptop,1,999.99,07/15/19 12:32,"808 Chestnut St, Boston, MA 02215" +235420,Lightning Charging Cable,2,14.95,07/02/19 21:39,"240 Chestnut St, San Francisco, CA 94016" +235421,Bose SoundSport Headphones,1,99.99,07/05/19 17:24,"325 South St, San Francisco, CA 94016" +235422,Wired Headphones,3,11.99,07/11/19 21:43,"258 Hickory St, Boston, MA 02215" +235423,Apple Airpods Headphones,1,150,07/08/19 10:52,"81 5th St, San Francisco, CA 94016" +235424,USB-C Charging Cable,1,11.95,07/03/19 11:31,"422 12th St, Los Angeles, CA 90001" +235425,Wired Headphones,1,11.99,07/20/19 14:14,"40 Sunset St, Atlanta, GA 30301" +235426,Wired Headphones,1,11.99,07/08/19 22:56,"752 Sunset St, Austin, TX 73301" +235427,AA Batteries (4-pack),1,3.84,07/07/19 11:39,"933 Chestnut St, Los Angeles, CA 90001" +235428,20in Monitor,1,109.99,07/12/19 11:53,"382 Ridge St, New York City, NY 10001" +235429,AA Batteries (4-pack),6,3.84,07/27/19 11:25,"236 Church St, Los Angeles, CA 90001" +235430,Macbook Pro Laptop,1,1700,07/04/19 18:25,"635 Center St, Boston, MA 02215" +235431,AAA Batteries (4-pack),1,2.99,07/16/19 10:27,"459 Church St, Atlanta, GA 30301" +235432,USB-C Charging Cable,1,11.95,07/29/19 10:07,"825 Maple St, New York City, NY 10001" +235433,USB-C Charging Cable,1,11.95,07/14/19 23:57,"665 Cedar St, New York City, NY 10001" +235434,Google Phone,1,600,07/12/19 14:20,"960 Madison St, San Francisco, CA 94016" +235435,27in 4K Gaming Monitor,1,389.99,07/13/19 21:55,"139 4th St, Seattle, WA 98101" +235436,AA Batteries (4-pack),1,3.84,07/17/19 12:06,"621 13th St, Dallas, TX 75001" +235437,AAA Batteries (4-pack),1,2.99,07/29/19 17:17,"707 Church St, Seattle, WA 98101" +235438,Lightning Charging Cable,1,14.95,07/26/19 19:35,"283 Madison St, Los Angeles, CA 90001" +235439,Wired Headphones,2,11.99,07/30/19 22:55,"156 Madison St, San Francisco, CA 94016" +235440,27in FHD Monitor,1,149.99,07/07/19 10:22,"586 Park St, San Francisco, CA 94016" +235441,Google Phone,1,600,07/10/19 11:17,"868 Wilson St, Dallas, TX 75001" +235441,Wired Headphones,1,11.99,07/10/19 11:17,"868 Wilson St, Dallas, TX 75001" +235442,USB-C Charging Cable,1,11.95,07/31/19 18:29,"995 8th St, Boston, MA 02215" +235442,AAA Batteries (4-pack),1,2.99,07/31/19 18:29,"995 8th St, Boston, MA 02215" +235443,34in Ultrawide Monitor,1,379.99,07/10/19 18:05,"400 Chestnut St, Portland, OR 97035" +235444,Wired Headphones,1,11.99,07/19/19 15:11,"884 Cedar St, San Francisco, CA 94016" +235445,LG Washing Machine,1,600.0,07/24/19 09:50,"322 Lake St, New York City, NY 10001" +235446,USB-C Charging Cable,1,11.95,07/31/19 11:40,"459 Meadow St, Boston, MA 02215" +235447,AA Batteries (4-pack),3,3.84,07/20/19 18:03,"513 Jefferson St, Seattle, WA 98101" +235448,Apple Airpods Headphones,1,150,07/30/19 11:41,"368 Ridge St, Atlanta, GA 30301" +235449,USB-C Charging Cable,1,11.95,07/11/19 05:21,"447 North St, San Francisco, CA 94016" +235450,USB-C Charging Cable,1,11.95,07/02/19 18:40,"136 1st St, San Francisco, CA 94016" +235451,Bose SoundSport Headphones,1,99.99,07/14/19 15:20,"206 Meadow St, Seattle, WA 98101" +235452,Apple Airpods Headphones,1,150,07/15/19 16:03,"902 6th St, New York City, NY 10001" +235453,AA Batteries (4-pack),3,3.84,07/07/19 18:56,"904 12th St, Atlanta, GA 30301" +235454,Lightning Charging Cable,1,14.95,07/25/19 16:46,"81 South St, New York City, NY 10001" +235455,AAA Batteries (4-pack),1,2.99,07/07/19 12:52,"460 Jackson St, New York City, NY 10001" +235456,27in FHD Monitor,1,149.99,07/31/19 10:01,"827 West St, Boston, MA 02215" +235457,USB-C Charging Cable,1,11.95,07/20/19 01:02,"895 Cherry St, Boston, MA 02215" +235458,USB-C Charging Cable,1,11.95,07/11/19 14:26,"523 14th St, Los Angeles, CA 90001" +235459,USB-C Charging Cable,1,11.95,07/02/19 21:33,"157 Cherry St, Austin, TX 73301" +235460,USB-C Charging Cable,1,11.95,07/04/19 18:42,"119 Wilson St, Dallas, TX 75001" +235460,USB-C Charging Cable,1,11.95,07/04/19 18:42,"119 Wilson St, Dallas, TX 75001" +235461,20in Monitor,1,109.99,07/04/19 08:17,"764 Park St, San Francisco, CA 94016" +235462,27in FHD Monitor,1,149.99,07/06/19 23:01,"356 Madison St, Atlanta, GA 30301" +235463,Wired Headphones,1,11.99,07/05/19 09:06,"233 Elm St, Austin, TX 73301" +235464,ThinkPad Laptop,1,999.99,07/20/19 22:30,"495 Cherry St, Los Angeles, CA 90001" +235465,USB-C Charging Cable,1,11.95,07/12/19 11:28,"298 Jefferson St, Atlanta, GA 30301" +235466,Wired Headphones,1,11.99,07/23/19 21:21,"294 8th St, Boston, MA 02215" +235467,Bose SoundSport Headphones,1,99.99,07/12/19 15:21,"610 Willow St, San Francisco, CA 94016" +235468,Apple Airpods Headphones,1,150,07/17/19 20:49,"475 Jefferson St, San Francisco, CA 94016" +235469,20in Monitor,1,109.99,07/17/19 13:38,"865 Lake St, San Francisco, CA 94016" +235470,27in FHD Monitor,1,149.99,07/03/19 13:43,"76 10th St, New York City, NY 10001" +235471,Lightning Charging Cable,1,14.95,07/13/19 13:11,"452 Chestnut St, Seattle, WA 98101" +235472,AA Batteries (4-pack),1,3.84,07/21/19 19:50,"671 Pine St, New York City, NY 10001" +235473,Bose SoundSport Headphones,1,99.99,07/14/19 15:55,"965 Hickory St, San Francisco, CA 94016" +235474,Lightning Charging Cable,1,14.95,07/16/19 17:34,"959 Center St, Portland, ME 04101" +235475,AAA Batteries (4-pack),1,2.99,07/18/19 10:28,"589 6th St, San Francisco, CA 94016" +235476,Wired Headphones,1,11.99,07/11/19 23:44,"719 Cedar St, San Francisco, CA 94016" +235477,20in Monitor,1,109.99,07/09/19 15:24,"102 1st St, San Francisco, CA 94016" +235478,Apple Airpods Headphones,1,150,07/26/19 22:16,"415 12th St, Boston, MA 02215" +235479,Apple Airpods Headphones,1,150,07/29/19 10:48,"622 7th St, San Francisco, CA 94016" +235480,Apple Airpods Headphones,1,150,07/06/19 09:34,"694 1st St, Atlanta, GA 30301" +235481,Apple Airpods Headphones,1,150,07/17/19 20:29,"42 Chestnut St, San Francisco, CA 94016" +235482,USB-C Charging Cable,1,11.95,07/19/19 12:54,"144 Hickory St, San Francisco, CA 94016" +235483,Apple Airpods Headphones,1,150,07/12/19 12:40,"735 West St, San Francisco, CA 94016" +235484,USB-C Charging Cable,1,11.95,07/03/19 17:03,"905 Jackson St, San Francisco, CA 94016" +235485,27in FHD Monitor,1,149.99,07/09/19 17:47,"688 7th St, New York City, NY 10001" +235486,AAA Batteries (4-pack),1,2.99,07/22/19 10:05,"855 Wilson St, Los Angeles, CA 90001" +235487,Apple Airpods Headphones,1,150,07/15/19 19:28,"861 River St, Boston, MA 02215" +235488,Lightning Charging Cable,1,14.95,07/06/19 20:57,"616 Cedar St, San Francisco, CA 94016" +235489,Google Phone,1,600,07/13/19 16:34,"615 6th St, San Francisco, CA 94016" +235489,USB-C Charging Cable,1,11.95,07/13/19 16:34,"615 6th St, San Francisco, CA 94016" +235490,Lightning Charging Cable,1,14.95,07/16/19 14:49,"150 West St, Los Angeles, CA 90001" +235491,USB-C Charging Cable,1,11.95,07/23/19 09:31,"933 Church St, Los Angeles, CA 90001" +235492,Apple Airpods Headphones,1,150,07/11/19 12:11,"412 Willow St, Boston, MA 02215" +235493,27in FHD Monitor,1,149.99,07/08/19 13:57,"300 North St, Los Angeles, CA 90001" +235494,Apple Airpods Headphones,1,150,07/03/19 17:32,"803 Elm St, San Francisco, CA 94016" +235495,USB-C Charging Cable,1,11.95,07/03/19 16:55,"937 Forest St, San Francisco, CA 94016" +235496,Macbook Pro Laptop,1,1700,07/14/19 18:48,"499 13th St, San Francisco, CA 94016" +235497,Wired Headphones,1,11.99,07/18/19 20:46,"690 Cherry St, Dallas, TX 75001" +235498,USB-C Charging Cable,1,11.95,07/19/19 18:36,"227 Center St, Los Angeles, CA 90001" +235499,USB-C Charging Cable,1,11.95,07/10/19 12:24,"441 14th St, San Francisco, CA 94016" +235500,27in FHD Monitor,1,149.99,07/03/19 11:33,"636 10th St, San Francisco, CA 94016" +235501,ThinkPad Laptop,1,999.99,07/02/19 15:56,"501 8th St, Portland, OR 97035" +235502,Flatscreen TV,1,300,07/16/19 17:38,"152 Adams St, San Francisco, CA 94016" +235503,Wired Headphones,1,11.99,07/16/19 23:03,"549 Elm St, San Francisco, CA 94016" +235504,Lightning Charging Cable,1,14.95,07/28/19 14:50,"480 12th St, Los Angeles, CA 90001" +235505,USB-C Charging Cable,2,11.95,07/07/19 12:09,"854 8th St, Austin, TX 73301" +235506,USB-C Charging Cable,1,11.95,07/02/19 16:49,"224 Chestnut St, Boston, MA 02215" +235507,Apple Airpods Headphones,1,150,07/15/19 04:05,"719 Lincoln St, Atlanta, GA 30301" +235508,Bose SoundSport Headphones,1,99.99,07/06/19 13:34,"102 Wilson St, Seattle, WA 98101" +235509,Apple Airpods Headphones,1,150,07/13/19 23:35,"298 12th St, Boston, MA 02215" +235510,AAA Batteries (4-pack),1,2.99,07/18/19 17:36,"360 Spruce St, Boston, MA 02215" +235511,Lightning Charging Cable,1,14.95,07/11/19 09:04,"716 Center St, Atlanta, GA 30301" +235512,Bose SoundSport Headphones,1,99.99,07/02/19 11:18,"947 11th St, New York City, NY 10001" +235513,Lightning Charging Cable,1,14.95,07/27/19 12:35,"621 5th St, New York City, NY 10001" +235514,iPhone,1,700,07/22/19 00:02,"717 12th St, San Francisco, CA 94016" +235515,USB-C Charging Cable,1,11.95,07/04/19 18:11,"210 River St, Portland, ME 04101" +235516,USB-C Charging Cable,1,11.95,07/01/19 17:03,"342 Walnut St, New York City, NY 10001" +235517,27in 4K Gaming Monitor,1,389.99,07/18/19 17:37,"36 River St, New York City, NY 10001" +235518,Apple Airpods Headphones,1,150,07/06/19 22:12,"739 8th St, Los Angeles, CA 90001" +235519,20in Monitor,1,109.99,07/23/19 17:49,"322 West St, New York City, NY 10001" +235520,Macbook Pro Laptop,1,1700,07/18/19 13:47,"975 River St, Los Angeles, CA 90001" +235521,Wired Headphones,1,11.99,07/31/19 07:48,"914 Dogwood St, New York City, NY 10001" +235522,AA Batteries (4-pack),2,3.84,07/05/19 18:58,"576 12th St, San Francisco, CA 94016" +235523,Apple Airpods Headphones,1,150,07/29/19 14:25,"470 1st St, San Francisco, CA 94016" +235524,AAA Batteries (4-pack),1,2.99,07/11/19 21:30,"678 Jefferson St, New York City, NY 10001" +235525,27in 4K Gaming Monitor,1,389.99,07/18/19 16:27,"185 Washington St, San Francisco, CA 94016" +235526,Wired Headphones,1,11.99,07/27/19 21:20,"780 2nd St, San Francisco, CA 94016" +235527,27in FHD Monitor,1,149.99,07/01/19 15:07,"915 7th St, Los Angeles, CA 90001" +235528,USB-C Charging Cable,1,11.95,07/18/19 12:33,"236 Center St, New York City, NY 10001" +235529,Bose SoundSport Headphones,1,99.99,07/11/19 08:11,"901 Washington St, San Francisco, CA 94016" +235530,AA Batteries (4-pack),1,3.84,07/03/19 08:43,"473 Elm St, New York City, NY 10001" +235531,AAA Batteries (4-pack),2,2.99,07/27/19 02:15,"841 5th St, San Francisco, CA 94016" +235532,Wired Headphones,1,11.99,07/25/19 12:40,"96 1st St, Atlanta, GA 30301" +235533,iPhone,1,700,07/12/19 09:59,"239 2nd St, Los Angeles, CA 90001" +235534,USB-C Charging Cable,1,11.95,07/31/19 22:06,"762 2nd St, Atlanta, GA 30301" +235535,Bose SoundSport Headphones,1,99.99,07/01/19 12:08,"599 12th St, Los Angeles, CA 90001" +235536,Wired Headphones,1,11.99,07/08/19 20:39,"168 Hill St, San Francisco, CA 94016" +235537,iPhone,1,700,07/09/19 15:33,"834 Washington St, Austin, TX 73301" +235538,USB-C Charging Cable,1,11.95,07/31/19 20:31,"474 Lakeview St, San Francisco, CA 94016" +235539,USB-C Charging Cable,1,11.95,07/06/19 14:07,"798 Lakeview St, Seattle, WA 98101" +235540,AAA Batteries (4-pack),1,2.99,07/05/19 12:13,"772 Washington St, New York City, NY 10001" +235540,USB-C Charging Cable,1,11.95,07/05/19 12:13,"772 Washington St, New York City, NY 10001" +235541,AAA Batteries (4-pack),1,2.99,07/13/19 00:48,"73 Madison St, New York City, NY 10001" +235542,USB-C Charging Cable,1,11.95,07/18/19 09:31,"550 1st St, Portland, OR 97035" +235543,20in Monitor,1,109.99,07/08/19 03:50,"205 Sunset St, San Francisco, CA 94016" +235544,Bose SoundSport Headphones,1,99.99,07/18/19 11:40,"238 6th St, Los Angeles, CA 90001" +235545,USB-C Charging Cable,1,11.95,07/30/19 21:53,"63 9th St, Boston, MA 02215" +235546,AAA Batteries (4-pack),1,2.99,07/12/19 15:29,"428 Chestnut St, Portland, OR 97035" +235547,USB-C Charging Cable,1,11.95,07/18/19 16:54,"583 Chestnut St, Austin, TX 73301" +235548,iPhone,1,700,07/27/19 18:45,"685 North St, San Francisco, CA 94016" +235549,Apple Airpods Headphones,1,150,07/08/19 15:44,"134 Church St, Dallas, TX 75001" +235550,Lightning Charging Cable,1,14.95,07/26/19 06:56,"496 North St, Boston, MA 02215" +235551,AA Batteries (4-pack),2,3.84,07/06/19 02:32,"829 10th St, Los Angeles, CA 90001" +235552,34in Ultrawide Monitor,1,379.99,07/08/19 19:27,"738 Johnson St, Los Angeles, CA 90001" +235553,USB-C Charging Cable,2,11.95,07/31/19 08:56,"964 River St, Portland, OR 97035" +235554,Wired Headphones,1,11.99,07/31/19 14:22,"231 13th St, Dallas, TX 75001" +235555,AAA Batteries (4-pack),1,2.99,07/24/19 06:31,"696 Church St, New York City, NY 10001" +235556,Lightning Charging Cable,1,14.95,07/30/19 12:44,"413 1st St, Austin, TX 73301" +235557,AA Batteries (4-pack),2,3.84,07/19/19 16:59,"778 Chestnut St, San Francisco, CA 94016" +235558,ThinkPad Laptop,1,999.99,07/09/19 19:23,"424 14th St, Los Angeles, CA 90001" +235559,34in Ultrawide Monitor,1,379.99,07/20/19 21:52,"890 Washington St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +235560,Lightning Charging Cable,1,14.95,07/03/19 20:46,"158 Washington St, Dallas, TX 75001" +235561,USB-C Charging Cable,1,11.95,07/06/19 19:38,"756 1st St, Boston, MA 02215" +235562,USB-C Charging Cable,1,11.95,07/22/19 14:08,"173 Johnson St, San Francisco, CA 94016" +235563,Lightning Charging Cable,1,14.95,07/26/19 14:47,"974 River St, Austin, TX 73301" +235564,Macbook Pro Laptop,1,1700,07/10/19 17:41,"841 Sunset St, Boston, MA 02215" +235565,Bose SoundSport Headphones,1,99.99,07/31/19 21:13,"43 Dogwood St, Austin, TX 73301" +235566,27in 4K Gaming Monitor,1,389.99,07/20/19 23:21,"107 Madison St, Los Angeles, CA 90001" +235567,Bose SoundSport Headphones,1,99.99,07/01/19 22:49,"274 West St, Boston, MA 02215" +235568,Apple Airpods Headphones,1,150,07/24/19 21:41,"868 Johnson St, Boston, MA 02215" +235569,Wired Headphones,1,11.99,07/20/19 14:16,"638 12th St, Los Angeles, CA 90001" +235570,Lightning Charging Cable,1,14.95,07/04/19 12:46,"641 Maple St, New York City, NY 10001" +235571,AA Batteries (4-pack),1,3.84,07/21/19 08:52,"835 Park St, San Francisco, CA 94016" +235572,Wired Headphones,1,11.99,07/03/19 15:03,"796 Jefferson St, New York City, NY 10001" +235573,AAA Batteries (4-pack),1,2.99,07/17/19 21:02,"180 Johnson St, New York City, NY 10001" +235574,Google Phone,1,600,07/14/19 21:44,"296 Wilson St, Boston, MA 02215" +235575,AAA Batteries (4-pack),1,2.99,07/11/19 20:45,"139 Center St, San Francisco, CA 94016" +235576,27in FHD Monitor,1,149.99,07/06/19 15:22,"795 West St, Austin, TX 73301" +235577,USB-C Charging Cable,1,11.95,07/30/19 20:50,"530 Forest St, San Francisco, CA 94016" +235578,Google Phone,1,600,07/12/19 18:10,"314 Madison St, Los Angeles, CA 90001" +235579,Apple Airpods Headphones,1,150,07/26/19 13:44,"708 Sunset St, San Francisco, CA 94016" +235580,Google Phone,1,600,07/22/19 11:44,"616 Forest St, San Francisco, CA 94016" +235581,AA Batteries (4-pack),1,3.84,07/19/19 01:32,"810 River St, San Francisco, CA 94016" +235582,Bose SoundSport Headphones,1,99.99,07/23/19 10:28,"308 2nd St, San Francisco, CA 94016" +235583,USB-C Charging Cable,1,11.95,07/20/19 15:12,"590 Hill St, San Francisco, CA 94016" +235584,Flatscreen TV,1,300,07/04/19 03:36,"959 Spruce St, Los Angeles, CA 90001" +235585,27in 4K Gaming Monitor,1,389.99,07/23/19 18:58,"414 Jackson St, Atlanta, GA 30301" +235586,Wired Headphones,1,11.99,07/31/19 15:34,"989 Washington St, Atlanta, GA 30301" +235587,Bose SoundSport Headphones,1,99.99,07/12/19 14:38,"196 North St, Los Angeles, CA 90001" +235588,Vareebadd Phone,1,400,07/29/19 20:17,"553 Cedar St, Boston, MA 02215" +235589,27in FHD Monitor,1,149.99,07/23/19 19:14,"727 13th St, Dallas, TX 75001" +235590,Apple Airpods Headphones,1,150,07/01/19 10:50,"528 11th St, San Francisco, CA 94016" +235591,AA Batteries (4-pack),2,3.84,07/02/19 16:04,"673 11th St, New York City, NY 10001" +235592,Lightning Charging Cable,1,14.95,07/28/19 15:06,"912 Johnson St, Seattle, WA 98101" +235593,AAA Batteries (4-pack),1,2.99,07/12/19 19:57,"856 4th St, Boston, MA 02215" +235594,Wired Headphones,1,11.99,07/30/19 17:53,"551 Wilson St, Boston, MA 02215" +235595,AA Batteries (4-pack),1,3.84,07/20/19 12:20,"407 Sunset St, Seattle, WA 98101" +235596,Apple Airpods Headphones,1,150,07/07/19 20:22,"649 5th St, New York City, NY 10001" +235597,Lightning Charging Cable,1,14.95,07/17/19 12:01,"7 Cedar St, New York City, NY 10001" +235598,USB-C Charging Cable,1,11.95,07/31/19 20:56,"602 Hickory St, Portland, OR 97035" +235599,USB-C Charging Cable,1,11.95,07/08/19 12:40,"630 Forest St, San Francisco, CA 94016" +235600,AA Batteries (4-pack),1,3.84,07/02/19 08:47,"776 Elm St, Portland, OR 97035" +235601,USB-C Charging Cable,1,11.95,07/06/19 23:30,"628 Ridge St, New York City, NY 10001" +235602,USB-C Charging Cable,1,11.95,07/09/19 12:09,"586 Lakeview St, New York City, NY 10001" +235603,ThinkPad Laptop,1,999.99,07/08/19 22:56,"344 7th St, Los Angeles, CA 90001" +235604,iPhone,1,700,07/27/19 12:20,"711 Jefferson St, Dallas, TX 75001" +235604,Apple Airpods Headphones,1,150,07/27/19 12:20,"711 Jefferson St, Dallas, TX 75001" +235605,AAA Batteries (4-pack),2,2.99,07/17/19 05:51,"815 River St, Boston, MA 02215" +235606,USB-C Charging Cable,1,11.95,07/20/19 12:54,"251 6th St, New York City, NY 10001" +235607,AA Batteries (4-pack),2,3.84,07/08/19 13:32,"994 8th St, Boston, MA 02215" +235608,USB-C Charging Cable,1,11.95,07/19/19 19:48,"198 Church St, San Francisco, CA 94016" +235609,USB-C Charging Cable,1,11.95,07/06/19 16:18,"701 Cherry St, Austin, TX 73301" +235610,Wired Headphones,1,11.99,07/14/19 13:44,"180 Johnson St, San Francisco, CA 94016" +235611,AA Batteries (4-pack),1,3.84,07/27/19 19:57,"727 Cherry St, Dallas, TX 75001" +235611,27in FHD Monitor,1,149.99,07/27/19 19:57,"727 Cherry St, Dallas, TX 75001" +235612,Wired Headphones,1,11.99,07/18/19 12:29,"403 8th St, Boston, MA 02215" +235613,AA Batteries (4-pack),1,3.84,07/31/19 06:04,"862 Willow St, Los Angeles, CA 90001" +235614,AA Batteries (4-pack),1,3.84,07/07/19 20:22,"692 Park St, New York City, NY 10001" +235615,Lightning Charging Cable,1,14.95,07/27/19 20:25,"994 Cedar St, San Francisco, CA 94016" +235615,AAA Batteries (4-pack),1,2.99,07/27/19 20:25,"994 Cedar St, San Francisco, CA 94016" +235616,Macbook Pro Laptop,1,1700,07/07/19 18:43,"716 Willow St, San Francisco, CA 94016" +235617,Flatscreen TV,1,300,07/20/19 12:01,"322 Highland St, New York City, NY 10001" +235618,34in Ultrawide Monitor,1,379.99,07/10/19 21:54,"461 Adams St, Los Angeles, CA 90001" +235619,AA Batteries (4-pack),1,3.84,07/15/19 14:25,"197 Hickory St, New York City, NY 10001" +235620,AAA Batteries (4-pack),2,2.99,07/16/19 18:28,"81 7th St, Atlanta, GA 30301" +235621,Bose SoundSport Headphones,1,99.99,07/03/19 22:47,"411 South St, Los Angeles, CA 90001" +235622,Wired Headphones,1,11.99,07/30/19 19:38,"460 Spruce St, San Francisco, CA 94016" +235623,Wired Headphones,1,11.99,07/05/19 11:52,"724 5th St, Boston, MA 02215" +235624,Google Phone,1,600,07/09/19 11:03,"861 Meadow St, Boston, MA 02215" +235625,AA Batteries (4-pack),1,3.84,07/16/19 16:34,"331 2nd St, San Francisco, CA 94016" +235626,AAA Batteries (4-pack),1,2.99,07/23/19 10:18,"336 Cedar St, San Francisco, CA 94016" +235627,AA Batteries (4-pack),1,3.84,07/21/19 21:14,"510 Park St, San Francisco, CA 94016" +235628,Bose SoundSport Headphones,1,99.99,07/29/19 10:22,"708 Pine St, San Francisco, CA 94016" +235629,27in FHD Monitor,1,149.99,07/07/19 13:15,"562 11th St, Los Angeles, CA 90001" +235630,Google Phone,1,600,07/25/19 16:22,"356 Lincoln St, Seattle, WA 98101" +235631,ThinkPad Laptop,1,999.99,07/15/19 20:42,"675 12th St, Seattle, WA 98101" +235632,AA Batteries (4-pack),1,3.84,07/27/19 13:39,"309 11th St, Seattle, WA 98101" +235633,USB-C Charging Cable,1,11.95,07/27/19 19:25,"784 Meadow St, Los Angeles, CA 90001" +235634,34in Ultrawide Monitor,1,379.99,07/24/19 10:50,"29 Lincoln St, New York City, NY 10001" +235635,Lightning Charging Cable,1,14.95,07/15/19 15:20,"338 Washington St, San Francisco, CA 94016" +235636,Lightning Charging Cable,1,14.95,07/20/19 17:02,"256 Sunset St, Boston, MA 02215" +235637,Apple Airpods Headphones,1,150,07/15/19 20:28,"976 13th St, San Francisco, CA 94016" +235638,Wired Headphones,1,11.99,07/10/19 08:44,"72 5th St, Austin, TX 73301" +235639,27in FHD Monitor,1,149.99,07/09/19 21:01,"479 8th St, San Francisco, CA 94016" +235640,27in FHD Monitor,1,149.99,07/21/19 11:39,"873 Madison St, Los Angeles, CA 90001" +235641,USB-C Charging Cable,1,11.95,07/02/19 17:46,"643 Pine St, Austin, TX 73301" +235642,Lightning Charging Cable,1,14.95,07/02/19 23:05,"929 Lincoln St, Austin, TX 73301" +235643,Flatscreen TV,1,300,07/08/19 06:57,"235 Lake St, Seattle, WA 98101" +235644,Macbook Pro Laptop,1,1700,07/20/19 20:56,"169 Washington St, Dallas, TX 75001" +235645,Google Phone,1,600,07/31/19 12:22,"44 14th St, San Francisco, CA 94016" +235645,USB-C Charging Cable,1,11.95,07/31/19 12:22,"44 14th St, San Francisco, CA 94016" +235646,34in Ultrawide Monitor,1,379.99,07/14/19 15:12,"913 8th St, San Francisco, CA 94016" +235647,Wired Headphones,1,11.99,07/26/19 13:14,"632 14th St, Los Angeles, CA 90001" +235648,AA Batteries (4-pack),1,3.84,07/24/19 18:36,"959 2nd St, New York City, NY 10001" +235649,Apple Airpods Headphones,1,150,07/31/19 15:48,"869 8th St, San Francisco, CA 94016" +235650,ThinkPad Laptop,1,999.99,07/05/19 01:33,"563 8th St, Los Angeles, CA 90001" +235651,ThinkPad Laptop,1,999.99,07/27/19 20:07,"636 5th St, Dallas, TX 75001" +235652,iPhone,1,700,07/01/19 12:21,"211 5th St, Atlanta, GA 30301" +235653,Wired Headphones,1,11.99,07/23/19 23:38,"495 Lincoln St, Boston, MA 02215" +235654,Apple Airpods Headphones,1,150,07/08/19 16:06,"294 Jackson St, Austin, TX 73301" +235655,AAA Batteries (4-pack),1,2.99,07/29/19 06:59,"175 Church St, New York City, NY 10001" +235656,Apple Airpods Headphones,1,150,07/04/19 20:27,"57 10th St, New York City, NY 10001" +235657,USB-C Charging Cable,1,11.95,07/09/19 11:19,"886 Meadow St, San Francisco, CA 94016" +235658,AAA Batteries (4-pack),2,2.99,07/27/19 12:43,"976 Church St, Los Angeles, CA 90001" +235659,Wired Headphones,1,11.99,07/27/19 20:44,"824 Highland St, New York City, NY 10001" +235660,27in 4K Gaming Monitor,1,389.99,07/24/19 09:37,"937 Adams St, San Francisco, CA 94016" +235661,Wired Headphones,1,11.99,07/09/19 17:19,"347 Johnson St, Austin, TX 73301" +235662,Google Phone,1,600,07/27/19 11:17,"522 Jackson St, Portland, OR 97035" +235663,Macbook Pro Laptop,1,1700,07/21/19 09:14,"196 5th St, San Francisco, CA 94016" +235664,Lightning Charging Cable,1,14.95,07/26/19 12:29,"479 5th St, Seattle, WA 98101" +235665,Flatscreen TV,1,300,07/07/19 14:13,"64 Dogwood St, Austin, TX 73301" +235666,Lightning Charging Cable,2,14.95,07/13/19 23:38,"393 Lincoln St, San Francisco, CA 94016" +235667,iPhone,1,700,07/16/19 19:28,"109 Meadow St, San Francisco, CA 94016" +235668,Lightning Charging Cable,1,14.95,07/27/19 20:09,"234 6th St, San Francisco, CA 94016" +235669,Vareebadd Phone,1,400,07/17/19 15:02,"641 14th St, San Francisco, CA 94016" +235669,Bose SoundSport Headphones,1,99.99,07/17/19 15:02,"641 14th St, San Francisco, CA 94016" +235670,USB-C Charging Cable,1,11.95,07/09/19 09:44,"373 Ridge St, San Francisco, CA 94016" +235671,AAA Batteries (4-pack),1,2.99,07/06/19 07:35,"483 Lake St, Dallas, TX 75001" +235672,iPhone,1,700,07/02/19 11:17,"397 Jackson St, Los Angeles, CA 90001" +235673,Flatscreen TV,1,300,07/24/19 10:24,"267 Spruce St, Boston, MA 02215" +235674,AAA Batteries (4-pack),2,2.99,07/21/19 21:10,"465 Jackson St, Los Angeles, CA 90001" +235675,USB-C Charging Cable,2,11.95,07/19/19 13:52,"708 12th St, Dallas, TX 75001" +235676,USB-C Charging Cable,1,11.95,07/07/19 23:17,"1 9th St, Boston, MA 02215" +235677,27in 4K Gaming Monitor,1,389.99,07/30/19 16:34,"418 Main St, Seattle, WA 98101" +235678,AA Batteries (4-pack),1,3.84,07/27/19 17:03,"563 1st St, Boston, MA 02215" +235679,Bose SoundSport Headphones,1,99.99,07/25/19 16:42,"247 4th St, San Francisco, CA 94016" +235680,27in 4K Gaming Monitor,1,389.99,07/30/19 08:25,"937 8th St, Atlanta, GA 30301" +235681,Wired Headphones,1,11.99,07/15/19 16:23,"840 4th St, Portland, ME 04101" +235682,AAA Batteries (4-pack),1,2.99,07/12/19 08:05,"521 Spruce St, San Francisco, CA 94016" +235683,Apple Airpods Headphones,1,150,07/26/19 23:06,"659 Chestnut St, Los Angeles, CA 90001" +235684,AAA Batteries (4-pack),2,2.99,07/16/19 12:45,"344 Wilson St, San Francisco, CA 94016" +235685,20in Monitor,1,109.99,07/01/19 19:26,"888 8th St, Boston, MA 02215" +235686,AAA Batteries (4-pack),1,2.99,07/26/19 20:19,"430 6th St, Atlanta, GA 30301" +235687,LG Washing Machine,1,600.0,07/03/19 20:12,"787 14th St, Seattle, WA 98101" +235688,Lightning Charging Cable,1,14.95,07/02/19 16:43,"460 Pine St, Seattle, WA 98101" +235689,AA Batteries (4-pack),1,3.84,07/12/19 14:11,"723 South St, Atlanta, GA 30301" +235690,27in 4K Gaming Monitor,1,389.99,07/14/19 15:50,"550 7th St, Los Angeles, CA 90001" +235691,USB-C Charging Cable,1,11.95,07/20/19 17:41,"923 Willow St, San Francisco, CA 94016" +235692,Google Phone,1,600,07/12/19 11:20,"235 Willow St, Portland, OR 97035" +235693,AAA Batteries (4-pack),1,2.99,07/31/19 22:38,"402 Lakeview St, Dallas, TX 75001" +235694,USB-C Charging Cable,1,11.95,07/29/19 15:23,"511 Spruce St, Boston, MA 02215" +235695,27in 4K Gaming Monitor,1,389.99,07/17/19 11:23,"594 Hill St, Los Angeles, CA 90001" +235696,Bose SoundSport Headphones,1,99.99,07/25/19 08:53,"599 Hill St, New York City, NY 10001" +235697,Lightning Charging Cable,1,14.95,07/10/19 17:03,"380 13th St, Los Angeles, CA 90001" +235698,27in 4K Gaming Monitor,1,389.99,07/18/19 12:49,"607 11th St, San Francisco, CA 94016" +235699,AA Batteries (4-pack),1,3.84,07/04/19 17:26,"680 Hickory St, Seattle, WA 98101" +235700,27in 4K Gaming Monitor,1,389.99,07/03/19 11:32,"528 Cherry St, Seattle, WA 98101" +235701,Lightning Charging Cable,1,14.95,07/19/19 19:36,"810 10th St, Boston, MA 02215" +235702,20in Monitor,1,109.99,07/02/19 21:46,"702 Main St, Austin, TX 73301" +235703,Wired Headphones,1,11.99,07/02/19 04:41,"671 Lake St, Atlanta, GA 30301" +235704,Wired Headphones,1,11.99,07/08/19 06:28,"862 West St, Austin, TX 73301" +235705,27in 4K Gaming Monitor,1,389.99,07/13/19 21:50,"365 9th St, Seattle, WA 98101" +235706,Lightning Charging Cable,1,14.95,07/18/19 12:40,"757 Chestnut St, Los Angeles, CA 90001" +235707,AA Batteries (4-pack),1,3.84,07/23/19 15:48,"574 11th St, Atlanta, GA 30301" +235708,Wired Headphones,1,11.99,07/20/19 15:04,"254 Elm St, Los Angeles, CA 90001" +235709,AA Batteries (4-pack),1,3.84,07/16/19 17:41,"28 Cherry St, Portland, OR 97035" +235710,Lightning Charging Cable,1,14.95,07/23/19 15:02,"223 Jefferson St, Portland, OR 97035" +235711,Wired Headphones,1,11.99,07/29/19 20:40,"67 Jackson St, San Francisco, CA 94016" +235712,Wired Headphones,1,11.99,07/05/19 17:32,"695 Walnut St, Dallas, TX 75001" +235713,Bose SoundSport Headphones,1,99.99,07/03/19 21:49,"1 1st St, Atlanta, GA 30301" +235714,27in FHD Monitor,1,149.99,07/15/19 20:58,"245 Pine St, Boston, MA 02215" +235715,Wired Headphones,1,11.99,07/02/19 19:13,"923 Highland St, Seattle, WA 98101" +235716,USB-C Charging Cable,1,11.95,07/03/19 21:12,"836 Cherry St, San Francisco, CA 94016" +235717,USB-C Charging Cable,1,11.95,07/25/19 00:39,"921 Ridge St, Atlanta, GA 30301" +235718,AA Batteries (4-pack),1,3.84,07/19/19 16:16,"525 9th St, Boston, MA 02215" +235719,iPhone,1,700,07/09/19 20:42,"615 Dogwood St, Atlanta, GA 30301" +235719,Wired Headphones,1,11.99,07/09/19 20:42,"615 Dogwood St, Atlanta, GA 30301" +235720,iPhone,1,700,07/21/19 12:17,"350 Sunset St, Atlanta, GA 30301" +235721,27in 4K Gaming Monitor,1,389.99,07/25/19 16:15,"50 Washington St, Boston, MA 02215" +235722,27in FHD Monitor,1,149.99,07/26/19 08:18,"716 Wilson St, Seattle, WA 98101" +235723,iPhone,1,700,07/27/19 12:01,"657 10th St, Seattle, WA 98101" +235724,iPhone,1,700,07/03/19 08:33,"939 Spruce St, San Francisco, CA 94016" +235725,AA Batteries (4-pack),1,3.84,07/07/19 17:34,"847 Johnson St, Austin, TX 73301" +235726,AA Batteries (4-pack),1,3.84,07/17/19 14:18,"731 5th St, Dallas, TX 75001" +235727,ThinkPad Laptop,1,999.99,07/21/19 21:57,"397 4th St, San Francisco, CA 94016" +235728,20in Monitor,1,109.99,07/28/19 18:37,"872 River St, San Francisco, CA 94016" +235729,AAA Batteries (4-pack),2,2.99,07/17/19 07:24,"715 4th St, San Francisco, CA 94016" +235730,USB-C Charging Cable,1,11.95,07/01/19 12:25,"679 Lincoln St, New York City, NY 10001" +235731,Flatscreen TV,1,300,07/13/19 01:34,"268 Church St, San Francisco, CA 94016" +235732,USB-C Charging Cable,1,11.95,07/20/19 19:02,"804 2nd St, Boston, MA 02215" +235733,LG Dryer,1,600.0,07/01/19 09:01,"751 11th St, San Francisco, CA 94016" +235734,Apple Airpods Headphones,1,150,07/20/19 14:48,"984 Washington St, San Francisco, CA 94016" +235735,AAA Batteries (4-pack),1,2.99,07/25/19 08:48,"207 5th St, New York City, NY 10001" +235736,Lightning Charging Cable,1,14.95,07/19/19 09:24,"21 Elm St, Seattle, WA 98101" +235737,Lightning Charging Cable,1,14.95,07/24/19 11:23,"896 Walnut St, Seattle, WA 98101" +235738,AAA Batteries (4-pack),1,2.99,07/15/19 15:08,"465 Highland St, San Francisco, CA 94016" +235739,Google Phone,1,600,07/19/19 10:43,"820 2nd St, New York City, NY 10001" +235740,Bose SoundSport Headphones,1,99.99,07/02/19 16:42,"208 14th St, San Francisco, CA 94016" +235741,AA Batteries (4-pack),1,3.84,07/22/19 11:48,"599 Lakeview St, Portland, OR 97035" +235742,Lightning Charging Cable,1,14.95,07/17/19 13:46,"734 Lincoln St, Seattle, WA 98101" +235743,ThinkPad Laptop,1,999.99,07/13/19 12:33,"136 14th St, Austin, TX 73301" +235744,27in 4K Gaming Monitor,1,389.99,07/23/19 14:12,"669 1st St, Los Angeles, CA 90001" +235745,27in 4K Gaming Monitor,1,389.99,07/03/19 07:15,"173 2nd St, New York City, NY 10001" +235746,Apple Airpods Headphones,1,150,07/05/19 12:21,"904 10th St, San Francisco, CA 94016" +235747,AAA Batteries (4-pack),2,2.99,07/23/19 18:22,"260 Lake St, Los Angeles, CA 90001" +235748,27in 4K Gaming Monitor,1,389.99,07/28/19 19:48,"161 Willow St, Austin, TX 73301" +235749,AA Batteries (4-pack),1,3.84,07/04/19 22:17,"706 Lakeview St, San Francisco, CA 94016" +235750,AA Batteries (4-pack),1,3.84,07/30/19 09:25,"508 14th St, Boston, MA 02215" +235751,Wired Headphones,1,11.99,07/29/19 11:58,"735 2nd St, San Francisco, CA 94016" +235752,27in 4K Gaming Monitor,1,389.99,07/02/19 13:18,"362 Pine St, Portland, OR 97035" +235753,AAA Batteries (4-pack),2,2.99,07/21/19 22:30,"229 Willow St, Seattle, WA 98101" +235753,20in Monitor,1,109.99,07/21/19 22:30,"229 Willow St, Seattle, WA 98101" +235754,iPhone,1,700,07/04/19 14:44,"39 Cedar St, Atlanta, GA 30301" +235754,Lightning Charging Cable,1,14.95,07/04/19 14:44,"39 Cedar St, Atlanta, GA 30301" +235755,Wired Headphones,1,11.99,07/19/19 17:56,"962 4th St, San Francisco, CA 94016" +235756,Bose SoundSport Headphones,1,99.99,07/30/19 20:20,"249 Meadow St, New York City, NY 10001" +235757,Bose SoundSport Headphones,1,99.99,07/13/19 10:29,"258 Cedar St, Seattle, WA 98101" +235758,AA Batteries (4-pack),1,3.84,07/27/19 15:42,"409 Highland St, New York City, NY 10001" +235759,Bose SoundSport Headphones,1,99.99,07/10/19 22:54,"827 Hill St, Boston, MA 02215" +235760,AAA Batteries (4-pack),1,2.99,07/10/19 22:50,"940 Forest St, Seattle, WA 98101" +235761,AAA Batteries (4-pack),1,2.99,07/02/19 15:56,"902 Johnson St, New York City, NY 10001" +235762,AA Batteries (4-pack),1,3.84,07/31/19 15:33,"81 Forest St, Boston, MA 02215" +235763,27in FHD Monitor,1,149.99,07/29/19 18:15,"558 Hickory St, Dallas, TX 75001" +235764,Google Phone,1,600,07/08/19 12:56,"69 Walnut St, New York City, NY 10001" +235765,AAA Batteries (4-pack),1,2.99,07/04/19 21:07,"782 Madison St, Los Angeles, CA 90001" +235766,Vareebadd Phone,1,400,07/18/19 13:57,"255 Jackson St, Seattle, WA 98101" +235767,AAA Batteries (4-pack),1,2.99,07/31/19 17:40,"541 14th St, New York City, NY 10001" +235768,Flatscreen TV,1,300,07/21/19 09:01,"431 Lakeview St, New York City, NY 10001" +235769,AA Batteries (4-pack),2,3.84,07/05/19 23:29,"591 8th St, Portland, OR 97035" +235770,USB-C Charging Cable,1,11.95,07/02/19 16:17,"476 Meadow St, San Francisco, CA 94016" +235771,Vareebadd Phone,1,400,07/14/19 13:18,"621 9th St, Austin, TX 73301" +235771,Bose SoundSport Headphones,1,99.99,07/14/19 13:18,"621 9th St, Austin, TX 73301" +235772,27in FHD Monitor,1,149.99,07/11/19 23:52,"715 North St, San Francisco, CA 94016" +235773,USB-C Charging Cable,1,11.95,07/31/19 16:01,"333 Sunset St, Seattle, WA 98101" +235774,Google Phone,1,600,07/25/19 10:10,"925 Jefferson St, San Francisco, CA 94016" +235775,AAA Batteries (4-pack),1,2.99,07/03/19 11:46,"393 9th St, New York City, NY 10001" +235776,20in Monitor,1,109.99,07/14/19 16:46,"760 Adams St, Dallas, TX 75001" +235777,Bose SoundSport Headphones,1,99.99,07/29/19 20:22,"704 5th St, San Francisco, CA 94016" +235778,Apple Airpods Headphones,1,150,07/08/19 15:37,"912 2nd St, San Francisco, CA 94016" +235779,AA Batteries (4-pack),3,3.84,07/30/19 14:52,"982 Park St, Los Angeles, CA 90001" +235780,Lightning Charging Cable,1,14.95,07/28/19 10:17,"986 North St, New York City, NY 10001" +235781,Wired Headphones,1,11.99,07/29/19 07:37,"124 Maple St, Seattle, WA 98101" +235782,Lightning Charging Cable,1,14.95,07/26/19 13:56,"756 Washington St, Los Angeles, CA 90001" +235783,Lightning Charging Cable,1,14.95,07/04/19 18:22,"865 Hill St, Dallas, TX 75001" +235784,Lightning Charging Cable,1,14.95,07/04/19 02:02,"343 Maple St, San Francisco, CA 94016" +235785,USB-C Charging Cable,2,11.95,07/08/19 23:33,"598 5th St, Los Angeles, CA 90001" +235786,34in Ultrawide Monitor,1,379.99,07/15/19 14:23,"504 Hickory St, San Francisco, CA 94016" +235787,AAA Batteries (4-pack),1,2.99,07/11/19 22:37,"729 9th St, San Francisco, CA 94016" +235788,AAA Batteries (4-pack),1,2.99,07/03/19 07:58,"192 Meadow St, Portland, OR 97035" +235789,Flatscreen TV,1,300,07/22/19 16:11,"670 Adams St, San Francisco, CA 94016" +235790,Lightning Charging Cable,1,14.95,07/12/19 17:28,"634 Hickory St, Seattle, WA 98101" +235791,20in Monitor,1,109.99,07/08/19 10:03,"720 Hickory St, San Francisco, CA 94016" +235792,AA Batteries (4-pack),2,3.84,07/19/19 10:02,"937 Park St, Los Angeles, CA 90001" +235793,Bose SoundSport Headphones,1,99.99,07/13/19 17:49,"622 Park St, Atlanta, GA 30301" +235794,AAA Batteries (4-pack),3,2.99,07/08/19 17:58,"232 Meadow St, Seattle, WA 98101" +235795,Wired Headphones,1,11.99,07/24/19 08:43,"821 South St, Atlanta, GA 30301" +235796,27in 4K Gaming Monitor,1,389.99,07/22/19 19:30,"182 Lake St, San Francisco, CA 94016" +235797,AA Batteries (4-pack),1,3.84,07/07/19 11:51,"980 Johnson St, Los Angeles, CA 90001" +235798,USB-C Charging Cable,1,11.95,07/12/19 23:21,"211 12th St, Seattle, WA 98101" +235799,AA Batteries (4-pack),1,3.84,07/22/19 18:23,"235 10th St, New York City, NY 10001" +235800,AA Batteries (4-pack),1,3.84,07/27/19 23:24,"895 Sunset St, Los Angeles, CA 90001" +235801,iPhone,1,700,07/29/19 23:53,"107 4th St, Portland, OR 97035" +235802,USB-C Charging Cable,1,11.95,07/31/19 05:35,"300 Wilson St, Atlanta, GA 30301" +235803,34in Ultrawide Monitor,1,379.99,07/31/19 22:50,"760 Cedar St, San Francisco, CA 94016" +235804,Macbook Pro Laptop,1,1700,07/30/19 11:12,"353 North St, San Francisco, CA 94016" +235804,Vareebadd Phone,1,400,07/30/19 11:12,"353 North St, San Francisco, CA 94016" +235805,iPhone,1,700,07/27/19 19:36,"931 14th St, Los Angeles, CA 90001" +235805,Lightning Charging Cable,1,14.95,07/27/19 19:36,"931 14th St, Los Angeles, CA 90001" +235806,Wired Headphones,1,11.99,07/19/19 19:51,"56 4th St, New York City, NY 10001" +235807,Google Phone,1,600,07/27/19 13:37,"548 Adams St, Boston, MA 02215" +235808,Google Phone,1,600,07/29/19 13:14,"213 Cherry St, San Francisco, CA 94016" +235808,USB-C Charging Cable,1,11.95,07/29/19 13:14,"213 Cherry St, San Francisco, CA 94016" +235809,20in Monitor,1,109.99,07/05/19 19:44,"809 Park St, San Francisco, CA 94016" +235810,AAA Batteries (4-pack),1,2.99,07/12/19 19:00,"315 7th St, Boston, MA 02215" +235811,Wired Headphones,1,11.99,07/13/19 10:53,"721 13th St, New York City, NY 10001" +235812,27in 4K Gaming Monitor,1,389.99,07/01/19 13:13,"49 West St, Portland, OR 97035" +235813,Flatscreen TV,1,300,07/20/19 11:38,"512 1st St, New York City, NY 10001" +235814,Flatscreen TV,1,300,07/17/19 19:29,"443 Spruce St, Atlanta, GA 30301" +235815,AA Batteries (4-pack),2,3.84,07/21/19 14:21,"285 Chestnut St, San Francisco, CA 94016" +235816,Bose SoundSport Headphones,1,99.99,07/29/19 17:01,"216 Walnut St, Portland, OR 97035" +235817,Apple Airpods Headphones,1,150,07/25/19 13:01,"169 Main St, Seattle, WA 98101" +235818,AA Batteries (4-pack),1,3.84,07/20/19 09:15,"807 Washington St, Portland, OR 97035" +235819,34in Ultrawide Monitor,1,379.99,07/11/19 11:42,"245 Walnut St, Boston, MA 02215" +235820,Lightning Charging Cable,1,14.95,07/10/19 18:48,"787 River St, San Francisco, CA 94016" +235821,Wired Headphones,1,11.99,07/18/19 18:52,"233 Maple St, Los Angeles, CA 90001" +235822,Wired Headphones,1,11.99,07/06/19 18:55,"288 Hickory St, Seattle, WA 98101" +235823,Lightning Charging Cable,1,14.95,07/01/19 21:36,"736 Cedar St, Los Angeles, CA 90001" +235824,Lightning Charging Cable,1,14.95,07/01/19 20:45,"37 Johnson St, Austin, TX 73301" +235825,Lightning Charging Cable,1,14.95,07/28/19 12:14,"578 14th St, San Francisco, CA 94016" +235826,AAA Batteries (4-pack),2,2.99,07/18/19 07:37,"515 1st St, San Francisco, CA 94016" +235827,Bose SoundSport Headphones,1,99.99,07/17/19 16:37,"573 North St, San Francisco, CA 94016" +235828,Wired Headphones,2,11.99,07/06/19 21:13,"938 5th St, Seattle, WA 98101" +235829,USB-C Charging Cable,1,11.95,07/20/19 19:58,"766 Walnut St, Los Angeles, CA 90001" +235830,AA Batteries (4-pack),1,3.84,07/29/19 13:37,"189 10th St, Los Angeles, CA 90001" +235831,Apple Airpods Headphones,1,150,07/08/19 20:32,"709 Lakeview St, San Francisco, CA 94016" +235832,AAA Batteries (4-pack),1,2.99,07/03/19 17:53,"130 West St, Boston, MA 02215" +235833,Wired Headphones,1,11.99,07/17/19 21:11,"780 6th St, New York City, NY 10001" +235834,Wired Headphones,1,11.99,07/04/19 17:39,"782 South St, Los Angeles, CA 90001" +235835,AA Batteries (4-pack),1,3.84,07/14/19 21:37,"147 Jackson St, San Francisco, CA 94016" +235836,Lightning Charging Cable,1,14.95,07/05/19 15:03,"102 Highland St, Dallas, TX 75001" +235837,Wired Headphones,1,11.99,07/06/19 15:16,"378 Wilson St, San Francisco, CA 94016" +235838,Wired Headphones,1,11.99,07/06/19 16:45,"344 South St, Atlanta, GA 30301" +235839,Apple Airpods Headphones,1,150,07/31/19 15:11,"157 North St, New York City, NY 10001" +235840,Bose SoundSport Headphones,1,99.99,07/18/19 13:03,"770 Lake St, Boston, MA 02215" +235841,Wired Headphones,1,11.99,07/21/19 23:16,"202 8th St, Dallas, TX 75001" +235842,Wired Headphones,1,11.99,07/07/19 22:46,"395 Lincoln St, New York City, NY 10001" +235843,Wired Headphones,1,11.99,07/31/19 15:23,"255 Center St, New York City, NY 10001" +235844,Lightning Charging Cable,1,14.95,07/01/19 16:43,"934 10th St, Boston, MA 02215" +235845,27in FHD Monitor,1,149.99,07/19/19 11:31,"483 Center St, San Francisco, CA 94016" +235846,ThinkPad Laptop,1,999.99,07/27/19 01:43,"625 4th St, New York City, NY 10001" +235847,Apple Airpods Headphones,1,150,07/19/19 13:19,"537 Jackson St, San Francisco, CA 94016" +235848,Google Phone,1,600,07/21/19 15:57,"513 Cherry St, Atlanta, GA 30301" +235848,USB-C Charging Cable,1,11.95,07/21/19 15:57,"513 Cherry St, Atlanta, GA 30301" +235849,AA Batteries (4-pack),1,3.84,07/29/19 13:06,"302 West St, Boston, MA 02215" +235850,USB-C Charging Cable,1,11.95,07/26/19 14:26,"601 8th St, San Francisco, CA 94016" +235851,Apple Airpods Headphones,1,150,07/29/19 20:29,"377 Forest St, Portland, OR 97035" +235852,USB-C Charging Cable,1,11.95,07/08/19 08:40,"734 Madison St, San Francisco, CA 94016" +235853,34in Ultrawide Monitor,1,379.99,07/08/19 13:34,"849 Maple St, San Francisco, CA 94016" +235854,Lightning Charging Cable,1,14.95,07/16/19 16:34,"160 North St, New York City, NY 10001" +235855,USB-C Charging Cable,1,11.95,07/02/19 18:06,"385 West St, San Francisco, CA 94016" +235856,Google Phone,1,600,07/03/19 18:09,"263 6th St, Boston, MA 02215" +235856,Bose SoundSport Headphones,1,99.99,07/03/19 18:09,"263 6th St, Boston, MA 02215" +235857,Bose SoundSport Headphones,1,99.99,07/13/19 11:51,"433 Hill St, Austin, TX 73301" +235858,AA Batteries (4-pack),1,3.84,07/24/19 18:32,"657 Spruce St, Dallas, TX 75001" +235859,AA Batteries (4-pack),1,3.84,07/17/19 20:13,"225 Jackson St, Austin, TX 73301" +235860,USB-C Charging Cable,1,11.95,07/26/19 20:23,"599 Meadow St, New York City, NY 10001" +235861,27in FHD Monitor,1,149.99,07/29/19 10:59,"756 Dogwood St, Boston, MA 02215" +235862,Apple Airpods Headphones,1,150,07/01/19 19:08,"225 Lake St, San Francisco, CA 94016" +235863,AA Batteries (4-pack),1,3.84,07/20/19 16:04,"406 6th St, San Francisco, CA 94016" +235864,AA Batteries (4-pack),1,3.84,07/05/19 22:27,"614 Dogwood St, Los Angeles, CA 90001" +235865,AA Batteries (4-pack),1,3.84,07/20/19 18:18,"573 10th St, New York City, NY 10001" +235866,27in FHD Monitor,1,149.99,07/21/19 14:36,"635 Madison St, Los Angeles, CA 90001" +235867,Bose SoundSport Headphones,1,99.99,07/23/19 07:26,"286 Hickory St, Dallas, TX 75001" +235868,34in Ultrawide Monitor,1,379.99,07/24/19 12:04,"471 Highland St, San Francisco, CA 94016" +235869,27in FHD Monitor,1,149.99,07/18/19 20:05,"864 Hill St, San Francisco, CA 94016" +235870,Bose SoundSport Headphones,1,99.99,07/27/19 18:17,"405 River St, San Francisco, CA 94016" +235871,AAA Batteries (4-pack),1,2.99,07/18/19 22:18,"664 Pine St, Boston, MA 02215" +235872,34in Ultrawide Monitor,1,379.99,07/30/19 09:33,"846 4th St, San Francisco, CA 94016" +235873,USB-C Charging Cable,1,11.95,07/28/19 20:38,"136 Cherry St, Portland, OR 97035" +235874,Vareebadd Phone,1,400,07/14/19 22:54,"708 Willow St, Boston, MA 02215" +235875,Lightning Charging Cable,2,14.95,07/25/19 17:56,"329 Dogwood St, Los Angeles, CA 90001" +235876,AA Batteries (4-pack),2,3.84,07/16/19 14:32,"567 Park St, San Francisco, CA 94016" +235877,Apple Airpods Headphones,1,150,07/23/19 21:09,"812 7th St, Atlanta, GA 30301" +235878,AAA Batteries (4-pack),2,2.99,07/04/19 09:15,"745 River St, San Francisco, CA 94016" +235879,Bose SoundSport Headphones,1,99.99,07/25/19 19:56,"492 13th St, Seattle, WA 98101" +235880,Wired Headphones,1,11.99,07/12/19 21:16,"348 Pine St, Austin, TX 73301" +235881,ThinkPad Laptop,1,999.99,07/03/19 18:39,"87 Lincoln St, San Francisco, CA 94016" +235882,27in 4K Gaming Monitor,1,389.99,07/02/19 13:18,"199 Church St, Los Angeles, CA 90001" +235883,Wired Headphones,1,11.99,07/29/19 10:58,"178 Johnson St, San Francisco, CA 94016" +235884,Lightning Charging Cable,1,14.95,07/20/19 19:11,"398 Church St, Boston, MA 02215" +235885,AAA Batteries (4-pack),1,2.99,07/13/19 11:15,"714 5th St, Atlanta, GA 30301" +235886,27in 4K Gaming Monitor,1,389.99,07/14/19 06:15,"875 Jefferson St, San Francisco, CA 94016" +235887,USB-C Charging Cable,2,11.95,07/08/19 23:51,"117 Cherry St, San Francisco, CA 94016" +235888,USB-C Charging Cable,1,11.95,07/08/19 14:34,"927 Cedar St, Austin, TX 73301" +235888,Apple Airpods Headphones,1,150,07/08/19 14:34,"927 Cedar St, Austin, TX 73301" +235889,AAA Batteries (4-pack),1,2.99,07/18/19 18:05,"151 Pine St, Seattle, WA 98101" +235890,Lightning Charging Cable,1,14.95,07/04/19 02:13,"757 Highland St, Seattle, WA 98101" +235891,Apple Airpods Headphones,1,150,07/03/19 02:24,"140 11th St, San Francisco, CA 94016" +235892,AA Batteries (4-pack),1,3.84,07/15/19 16:40,"374 Ridge St, Boston, MA 02215" +235893,Lightning Charging Cable,1,14.95,07/19/19 20:51,"668 River St, San Francisco, CA 94016" +235894,Lightning Charging Cable,1,14.95,07/19/19 12:35,"297 Sunset St, Dallas, TX 75001" +235895,Apple Airpods Headphones,1,150,07/29/19 10:53,"328 1st St, San Francisco, CA 94016" +235896,AAA Batteries (4-pack),1,2.99,07/24/19 10:58,"831 Main St, Boston, MA 02215" +235897,Bose SoundSport Headphones,1,99.99,07/16/19 17:11,"802 12th St, Austin, TX 73301" +235898,Bose SoundSport Headphones,1,99.99,07/10/19 16:17,"48 Adams St, Seattle, WA 98101" +235899,Lightning Charging Cable,1,14.95,07/13/19 06:41,"309 Ridge St, Seattle, WA 98101" +235900,AAA Batteries (4-pack),2,2.99,07/01/19 13:47,"542 Elm St, Los Angeles, CA 90001" +235901,Wired Headphones,1,11.99,07/02/19 17:42,"995 13th St, New York City, NY 10001" +235902,AA Batteries (4-pack),1,3.84,07/16/19 11:51,"392 Sunset St, Los Angeles, CA 90001" +235903,27in FHD Monitor,1,149.99,07/28/19 19:44,"432 Willow St, Portland, OR 97035" +235904,34in Ultrawide Monitor,1,379.99,07/24/19 16:35,"910 Hickory St, San Francisco, CA 94016" +235905,Lightning Charging Cable,1,14.95,07/18/19 06:12,"575 Main St, Seattle, WA 98101" +235906,AA Batteries (4-pack),1,3.84,07/11/19 09:01,"945 Hill St, San Francisco, CA 94016" +235907,AAA Batteries (4-pack),1,2.99,07/26/19 21:27,"889 5th St, Los Angeles, CA 90001" +235908,Google Phone,1,600,07/28/19 21:02,"830 Wilson St, Seattle, WA 98101" +235908,Bose SoundSport Headphones,1,99.99,07/28/19 21:02,"830 Wilson St, Seattle, WA 98101" +235909,Wired Headphones,1,11.99,07/13/19 20:30,"283 North St, Dallas, TX 75001" +235910,Lightning Charging Cable,1,14.95,07/18/19 11:48,"240 Cedar St, New York City, NY 10001" +235911,Apple Airpods Headphones,1,150,07/16/19 14:40,"526 Chestnut St, San Francisco, CA 94016" +235912,27in 4K Gaming Monitor,1,389.99,07/20/19 17:31,"117 Meadow St, Atlanta, GA 30301" +235913,USB-C Charging Cable,1,11.95,07/22/19 04:08,"886 14th St, Atlanta, GA 30301" +235914,AA Batteries (4-pack),1,3.84,07/15/19 20:57,"996 Lake St, Atlanta, GA 30301" +235915,27in FHD Monitor,1,149.99,07/10/19 20:49,"443 Walnut St, Atlanta, GA 30301" +235916,Bose SoundSport Headphones,1,99.99,07/21/19 21:39,"155 South St, Boston, MA 02215" +235917,AAA Batteries (4-pack),3,2.99,07/04/19 18:06,"126 Pine St, Dallas, TX 75001" +235918,AAA Batteries (4-pack),2,2.99,07/16/19 12:02,"777 10th St, Los Angeles, CA 90001" +235919,AA Batteries (4-pack),1,3.84,07/29/19 10:05,"401 Ridge St, Boston, MA 02215" +235920,USB-C Charging Cable,1,11.95,07/24/19 23:31,"256 Hill St, San Francisco, CA 94016" +235921,Macbook Pro Laptop,1,1700,07/12/19 13:46,"307 South St, Los Angeles, CA 90001" +235922,Bose SoundSport Headphones,1,99.99,07/08/19 23:12,"442 Johnson St, San Francisco, CA 94016" +235923,Vareebadd Phone,1,400,07/13/19 02:40,"891 1st St, Boston, MA 02215" +235924,Lightning Charging Cable,1,14.95,07/04/19 22:20,"282 Center St, Seattle, WA 98101" +235925,Bose SoundSport Headphones,1,99.99,07/01/19 09:08,"314 Highland St, San Francisco, CA 94016" +235926,Macbook Pro Laptop,1,1700,07/19/19 16:28,"647 Pine St, Los Angeles, CA 90001" +235927,AAA Batteries (4-pack),1,2.99,07/27/19 20:55,"494 Madison St, San Francisco, CA 94016" +235928,Google Phone,1,600,07/27/19 06:11,"157 Forest St, Boston, MA 02215" +235929,27in FHD Monitor,1,149.99,07/19/19 11:18,"382 Sunset St, Portland, OR 97035" +235930,Wired Headphones,1,11.99,07/29/19 10:46,"728 Pine St, Boston, MA 02215" +235931,Apple Airpods Headphones,1,150,07/15/19 15:24,"748 Johnson St, Los Angeles, CA 90001" +235932,Lightning Charging Cable,1,14.95,07/22/19 15:25,"169 11th St, Atlanta, GA 30301" +235933,Wired Headphones,1,11.99,07/21/19 01:49,"431 Jackson St, Boston, MA 02215" +235934,ThinkPad Laptop,1,999.99,07/17/19 09:52,"413 Center St, Los Angeles, CA 90001" +235935,AA Batteries (4-pack),5,3.84,07/08/19 08:57,"30 Highland St, Los Angeles, CA 90001" +235936,Bose SoundSport Headphones,1,99.99,07/29/19 22:17,"683 Elm St, Los Angeles, CA 90001" +235937,Apple Airpods Headphones,1,150,07/31/19 01:09,"526 14th St, San Francisco, CA 94016" +235938,AA Batteries (4-pack),1,3.84,07/31/19 12:59,"737 West St, Austin, TX 73301" +235939,Flatscreen TV,1,300,07/04/19 14:24,"856 Ridge St, New York City, NY 10001" +,,,,, +235940,27in FHD Monitor,1,149.99,07/01/19 12:06,"742 Sunset St, Dallas, TX 75001" +235941,AA Batteries (4-pack),2,3.84,07/26/19 20:50,"299 Ridge St, Los Angeles, CA 90001" +235942,Vareebadd Phone,1,400,07/30/19 15:38,"201 Cherry St, New York City, NY 10001" +235943,Apple Airpods Headphones,1,150,07/01/19 18:53,"130 Washington St, San Francisco, CA 94016" +235944,20in Monitor,1,109.99,07/08/19 12:35,"349 Johnson St, Portland, OR 97035" +235945,AA Batteries (4-pack),1,3.84,07/30/19 14:27,"454 Cedar St, Los Angeles, CA 90001" +235946,Lightning Charging Cable,1,14.95,07/06/19 18:21,"832 Adams St, Los Angeles, CA 90001" +235947,Vareebadd Phone,1,400,07/17/19 00:14,"442 4th St, Seattle, WA 98101" +235947,Bose SoundSport Headphones,1,99.99,07/17/19 00:14,"442 4th St, Seattle, WA 98101" +235948,Macbook Pro Laptop,1,1700,07/26/19 20:56,"308 1st St, Los Angeles, CA 90001" +235949,Lightning Charging Cable,1,14.95,07/23/19 11:28,"37 4th St, New York City, NY 10001" +235950,iPhone,1,700,07/30/19 14:46,"562 Walnut St, San Francisco, CA 94016" +235951,Wired Headphones,1,11.99,07/03/19 19:30,"221 Center St, Boston, MA 02215" +235952,Lightning Charging Cable,1,14.95,07/20/19 22:14,"439 Sunset St, Los Angeles, CA 90001" +235953,AAA Batteries (4-pack),1,2.99,07/31/19 18:08,"120 Chestnut St, Portland, OR 97035" +235954,USB-C Charging Cable,1,11.95,07/08/19 12:24,"750 Maple St, San Francisco, CA 94016" +235955,Apple Airpods Headphones,1,150,07/09/19 17:35,"194 7th St, Portland, OR 97035" +235956,Wired Headphones,1,11.99,07/13/19 11:34,"130 14th St, Atlanta, GA 30301" +235957,20in Monitor,1,109.99,07/23/19 20:11,"382 5th St, San Francisco, CA 94016" +235958,AA Batteries (4-pack),1,3.84,07/23/19 21:43,"721 Chestnut St, Dallas, TX 75001" +235959,Google Phone,1,600,07/27/19 13:13,"739 5th St, New York City, NY 10001" +235960,Flatscreen TV,1,300,07/29/19 11:52,"463 Forest St, New York City, NY 10001" +235961,34in Ultrawide Monitor,1,379.99,07/01/19 18:21,"437 Hill St, Portland, OR 97035" +235962,Flatscreen TV,1,300,07/23/19 14:55,"657 Lincoln St, Portland, OR 97035" +235963,Wired Headphones,1,11.99,07/21/19 14:56,"847 1st St, San Francisco, CA 94016" +235964,Wired Headphones,1,11.99,07/21/19 20:03,"424 Jackson St, New York City, NY 10001" +235965,20in Monitor,1,109.99,07/07/19 20:49,"334 12th St, San Francisco, CA 94016" +235966,USB-C Charging Cable,1,11.95,07/14/19 18:20,"670 North St, San Francisco, CA 94016" +235967,27in 4K Gaming Monitor,1,389.99,07/10/19 23:28,"731 Cedar St, Atlanta, GA 30301" +235968,AA Batteries (4-pack),1,3.84,07/15/19 09:08,"658 South St, Los Angeles, CA 90001" +235969,Flatscreen TV,1,300,07/11/19 07:21,"757 9th St, Portland, OR 97035" +235970,Wired Headphones,1,11.99,07/09/19 21:16,"257 Wilson St, San Francisco, CA 94016" +235971,Bose SoundSport Headphones,1,99.99,07/20/19 13:04,"728 2nd St, Boston, MA 02215" +235972,Apple Airpods Headphones,1,150,07/29/19 11:21,"239 Sunset St, San Francisco, CA 94016" +235973,Apple Airpods Headphones,1,150,07/07/19 14:48,"734 Hickory St, Los Angeles, CA 90001" +235974,AAA Batteries (4-pack),1,2.99,07/03/19 17:28,"948 Hill St, San Francisco, CA 94016" +235975,ThinkPad Laptop,1,999.99,07/14/19 09:31,"254 Madison St, New York City, NY 10001" +235976,Lightning Charging Cable,1,14.95,07/20/19 11:32,"654 Sunset St, San Francisco, CA 94016" +235977,Macbook Pro Laptop,1,1700,07/05/19 09:17,"674 Center St, Seattle, WA 98101" +235978,AA Batteries (4-pack),1,3.84,07/21/19 10:57,"6 Jefferson St, Atlanta, GA 30301" +235979,AA Batteries (4-pack),1,3.84,07/18/19 00:57,"674 Willow St, San Francisco, CA 94016" +235980,Lightning Charging Cable,2,14.95,07/01/19 10:01,"308 Pine St, Portland, OR 97035" +235981,Google Phone,1,600,07/22/19 21:13,"947 14th St, New York City, NY 10001" +235982,20in Monitor,1,109.99,07/02/19 20:59,"562 5th St, San Francisco, CA 94016" +235983,27in 4K Gaming Monitor,1,389.99,07/03/19 18:21,"767 North St, Los Angeles, CA 90001" +235984,Lightning Charging Cable,1,14.95,07/12/19 08:46,"683 12th St, Dallas, TX 75001" +235985,ThinkPad Laptop,1,999.99,07/30/19 10:33,"890 5th St, Boston, MA 02215" +235986,27in FHD Monitor,1,149.99,07/30/19 19:46,"19 Highland St, San Francisco, CA 94016" +235987,AA Batteries (4-pack),1,3.84,07/02/19 23:13,"958 11th St, San Francisco, CA 94016" +235988,AA Batteries (4-pack),2,3.84,07/17/19 15:24,"51 Main St, Austin, TX 73301" +235989,ThinkPad Laptop,1,999.99,07/01/19 13:37,"125 Cedar St, Dallas, TX 75001" +235990,AAA Batteries (4-pack),1,2.99,07/06/19 20:52,"442 Elm St, Portland, ME 04101" +235991,Google Phone,1,600,07/11/19 10:52,"373 Sunset St, Atlanta, GA 30301" +235992,Lightning Charging Cable,1,14.95,07/12/19 07:56,"704 12th St, Dallas, TX 75001" +235993,Wired Headphones,1,11.99,07/15/19 19:31,"299 Cherry St, Dallas, TX 75001" +235994,ThinkPad Laptop,1,999.99,07/07/19 10:40,"559 1st St, Seattle, WA 98101" +235995,USB-C Charging Cable,1,11.95,07/02/19 12:06,"175 Hill St, Boston, MA 02215" +235996,Wired Headphones,2,11.99,07/17/19 22:08,"312 Meadow St, Austin, TX 73301" +235997,Vareebadd Phone,1,400,07/05/19 09:05,"33 Madison St, Seattle, WA 98101" +235998,Vareebadd Phone,1,400,07/30/19 01:05,"227 Hill St, San Francisco, CA 94016" +235999,AA Batteries (4-pack),1,3.84,07/09/19 14:08,"354 Lake St, Portland, OR 97035" +236000,AA Batteries (4-pack),2,3.84,07/19/19 13:29,"900 Maple St, Los Angeles, CA 90001" +236001,Bose SoundSport Headphones,1,99.99,07/29/19 14:53,"456 5th St, Seattle, WA 98101" +236002,USB-C Charging Cable,1,11.95,07/24/19 21:02,"632 14th St, Boston, MA 02215" +236003,20in Monitor,1,109.99,07/07/19 17:23,"61 Johnson St, Los Angeles, CA 90001" +236004,Lightning Charging Cable,1,14.95,07/28/19 11:30,"784 9th St, New York City, NY 10001" +236005,Bose SoundSport Headphones,1,99.99,07/04/19 23:21,"934 Main St, Austin, TX 73301" +236006,AA Batteries (4-pack),1,3.84,07/05/19 22:14,"996 North St, New York City, NY 10001" +236007,Bose SoundSport Headphones,1,99.99,07/31/19 20:26,"712 Lakeview St, San Francisco, CA 94016" +236008,27in FHD Monitor,1,149.99,07/02/19 09:24,"880 2nd St, New York City, NY 10001" +236009,Flatscreen TV,1,300,07/09/19 21:17,"776 12th St, Los Angeles, CA 90001" +236010,Lightning Charging Cable,1,14.95,07/07/19 14:18,"407 Lakeview St, Seattle, WA 98101" +236011,AA Batteries (4-pack),1,3.84,07/31/19 12:06,"468 5th St, Los Angeles, CA 90001" +236012,AAA Batteries (4-pack),1,2.99,07/31/19 16:51,"698 Center St, Los Angeles, CA 90001" +236013,AA Batteries (4-pack),3,3.84,07/13/19 22:30,"293 Johnson St, Atlanta, GA 30301" +236014,AA Batteries (4-pack),1,3.84,07/13/19 11:33,"627 Jackson St, Dallas, TX 75001" +236015,Wired Headphones,1,11.99,07/29/19 08:49,"830 Adams St, Seattle, WA 98101" +236016,Flatscreen TV,1,300,07/13/19 08:06,"264 Lincoln St, New York City, NY 10001" +236016,AA Batteries (4-pack),1,3.84,07/13/19 08:06,"264 Lincoln St, New York City, NY 10001" +236017,34in Ultrawide Monitor,1,379.99,07/10/19 07:08,"418 Cherry St, Los Angeles, CA 90001" +264780,Vareebadd Phone,1,400.0,10/22/19 20:51,"109 Pine St, San Francisco, CA 94016" +264781,Apple Airpods Headphones,1,150.0,10/10/19 18:25,"72 Main St, Los Angeles, CA 90001" +264782,Bose SoundSport Headphones,1,99.99,10/06/19 20:51,"957 Lake St, Seattle, WA 98101" +264783,AA Batteries (4-pack),1,3.84,10/12/19 23:16,"520 12th St, Seattle, WA 98101" +264784,AAA Batteries (4-pack),1,2.99,10/06/19 13:24,"367 6th St, Dallas, TX 75001" +264785,AAA Batteries (4-pack),1,2.99,10/21/19 12:10,"339 Meadow St, Seattle, WA 98101" +264786,27in FHD Monitor,1,149.99,10/11/19 21:29,"917 6th St, San Francisco, CA 94016" +264787,AAA Batteries (4-pack),2,2.99,10/23/19 21:44,"875 North St, Austin, TX 73301" +264788,Bose SoundSport Headphones,1,99.99,10/10/19 10:57,"447 Washington St, San Francisco, CA 94016" +264789,ThinkPad Laptop,1,999.99,10/10/19 13:46,"551 10th St, San Francisco, CA 94016" +264790,USB-C Charging Cable,2,11.95,10/08/19 10:39,"244 South St, Boston, MA 02215" +264791,AA Batteries (4-pack),1,3.84,10/28/19 23:02,"533 8th St, New York City, NY 10001" +264792,Macbook Pro Laptop,1,1700.0,11/01/19 00:21,"239 Forest St, New York City, NY 10001" +264793,Lightning Charging Cable,1,14.95,10/14/19 00:04,"939 5th St, Portland, OR 97035" +264794,Wired Headphones,1,11.99,10/04/19 20:02,"221 Cedar St, Austin, TX 73301" +264794,Lightning Charging Cable,1,14.95,10/04/19 20:02,"221 Cedar St, Austin, TX 73301" +264795,Bose SoundSport Headphones,1,99.99,10/08/19 17:54,"543 Wilson St, Dallas, TX 75001" +264796,AAA Batteries (4-pack),1,2.99,10/03/19 09:30,"213 Lakeview St, San Francisco, CA 94016" +264797,Wired Headphones,1,11.99,10/08/19 14:59,"857 Church St, Los Angeles, CA 90001" +264798,Macbook Pro Laptop,1,1700.0,10/28/19 14:24,"845 Cherry St, San Francisco, CA 94016" +264799,Macbook Pro Laptop,1,1700.0,10/08/19 09:17,"268 Main St, Boston, MA 02215" +264800,Wired Headphones,1,11.99,10/20/19 19:37,"75 Ridge St, New York City, NY 10001" +264801,AAA Batteries (4-pack),1,2.99,10/02/19 18:53,"258 13th St, Los Angeles, CA 90001" +264802,Wired Headphones,1,11.99,10/27/19 15:24,"405 Dogwood St, New York City, NY 10001" +264803,AAA Batteries (4-pack),2,2.99,10/20/19 19:56,"431 13th St, Boston, MA 02215" +264804,ThinkPad Laptop,1,999.99,10/22/19 18:17,"833 Elm St, San Francisco, CA 94016" +264805,AAA Batteries (4-pack),1,2.99,10/17/19 13:03,"815 13th St, Austin, TX 73301" +264806,Google Phone,1,600.0,10/06/19 08:36,"829 Lakeview St, Los Angeles, CA 90001" +264807,USB-C Charging Cable,1,11.95,10/31/19 01:03,"189 Jefferson St, San Francisco, CA 94016" +264808,Lightning Charging Cable,1,14.95,10/20/19 20:34,"406 Johnson St, San Francisco, CA 94016" +264809,USB-C Charging Cable,1,11.95,10/13/19 16:19,"690 River St, Portland, OR 97035" +264810,27in FHD Monitor,1,149.99,10/31/19 00:40,"637 West St, Seattle, WA 98101" +264811,Lightning Charging Cable,1,14.95,10/26/19 20:36,"457 Hill St, Portland, OR 97035" +264812,Wired Headphones,1,11.99,10/25/19 13:28,"224 Highland St, New York City, NY 10001" +264813,AAA Batteries (4-pack),1,2.99,10/17/19 16:04,"869 Spruce St, Los Angeles, CA 90001" +264814,Lightning Charging Cable,2,14.95,10/02/19 21:26,"542 7th St, Austin, TX 73301" +264815,LG Dryer,1,600.0,10/08/19 09:17,"444 Center St, New York City, NY 10001" +264816,Bose SoundSport Headphones,1,99.99,10/08/19 14:45,"535 Elm St, New York City, NY 10001" +264817,Bose SoundSport Headphones,1,99.99,10/23/19 20:17,"148 Chestnut St, New York City, NY 10001" +264818,ThinkPad Laptop,1,999.99,10/04/19 16:29,"552 10th St, Boston, MA 02215" +264819,Wired Headphones,1,11.99,10/28/19 23:34,"636 Jackson St, Seattle, WA 98101" +264820,AAA Batteries (4-pack),2,2.99,10/01/19 21:45,"533 North St, Los Angeles, CA 90001" +264821,Wired Headphones,2,11.99,10/12/19 17:44,"915 Forest St, San Francisco, CA 94016" +264822,Wired Headphones,1,11.99,10/18/19 20:08,"178 Center St, San Francisco, CA 94016" +264823,Google Phone,1,600.0,10/12/19 18:32,"571 Cedar St, Austin, TX 73301" +264824,Wired Headphones,1,11.99,10/06/19 08:41,"816 Highland St, New York City, NY 10001" +264825,AA Batteries (4-pack),1,3.84,10/20/19 03:26,"136 Chestnut St, San Francisco, CA 94016" +264826,Flatscreen TV,1,300.0,10/05/19 21:30,"766 Cherry St, Boston, MA 02215" +264827,Lightning Charging Cable,1,14.95,10/24/19 08:26,"221 11th St, Los Angeles, CA 90001" +264828,Wired Headphones,1,11.99,10/18/19 11:24,"943 Park St, Seattle, WA 98101" +264829,AA Batteries (4-pack),1,3.84,10/28/19 18:48,"220 Maple St, New York City, NY 10001" +264830,AAA Batteries (4-pack),1,2.99,10/02/19 21:15,"835 Church St, Boston, MA 02215" +264831,27in FHD Monitor,1,149.99,10/11/19 14:59,"354 Church St, Boston, MA 02215" +264832,Wired Headphones,1,11.99,10/09/19 19:56,"133 2nd St, Austin, TX 73301" +264833,USB-C Charging Cable,1,11.95,10/16/19 00:56,"248 North St, Los Angeles, CA 90001" +264834,Wired Headphones,1,11.99,10/11/19 12:11,"677 Hickory St, Seattle, WA 98101" +264835,Bose SoundSport Headphones,1,99.99,10/23/19 15:48,"606 11th St, New York City, NY 10001" +264836,Lightning Charging Cable,1,14.95,10/07/19 20:06,"178 Wilson St, Los Angeles, CA 90001" +264837,20in Monitor,1,109.99,10/23/19 21:14,"881 Center St, Dallas, TX 75001" +264838,USB-C Charging Cable,1,11.95,10/30/19 20:56,"826 Hill St, San Francisco, CA 94016" +264839,Flatscreen TV,1,300.0,10/05/19 22:00,"178 Church St, New York City, NY 10001" +264840,Flatscreen TV,1,300.0,10/18/19 09:56,"854 Sunset St, Austin, TX 73301" +264841,Bose SoundSport Headphones,1,99.99,10/04/19 21:51,"312 7th St, Portland, OR 97035" +264842,27in FHD Monitor,1,149.99,10/08/19 18:38,"848 Jefferson St, Los Angeles, CA 90001" +264843,Apple Airpods Headphones,1,150.0,10/09/19 12:12,"804 Walnut St, New York City, NY 10001" +264844,AA Batteries (4-pack),1,3.84,10/02/19 14:53,"572 West St, Boston, MA 02215" +264845,USB-C Charging Cable,1,11.95,10/12/19 17:44,"759 Washington St, Dallas, TX 75001" +264846,AA Batteries (4-pack),1,3.84,10/01/19 14:04,"98 Dogwood St, New York City, NY 10001" +264847,Apple Airpods Headphones,1,150.0,10/22/19 23:51,"790 1st St, Boston, MA 02215" +264848,Lightning Charging Cable,2,14.95,10/08/19 16:44,"981 Cherry St, Austin, TX 73301" +264849,27in 4K Gaming Monitor,1,389.99,10/12/19 05:42,"504 South St, New York City, NY 10001" +264850,27in FHD Monitor,1,149.99,10/23/19 17:53,"712 River St, Seattle, WA 98101" +264851,AA Batteries (4-pack),1,3.84,10/06/19 01:20,"608 Lakeview St, Portland, OR 97035" +264852,Lightning Charging Cable,1,14.95,10/29/19 01:00,"550 River St, Seattle, WA 98101" +264853,Wired Headphones,1,11.99,10/02/19 17:33,"892 Sunset St, Seattle, WA 98101" +264854,AA Batteries (4-pack),1,3.84,10/17/19 17:43,"544 Johnson St, Los Angeles, CA 90001" +264855,Macbook Pro Laptop,1,1700.0,10/13/19 20:20,"278 Ridge St, Atlanta, GA 30301" +264856,34in Ultrawide Monitor,1,379.99,10/09/19 20:08,"642 Madison St, Los Angeles, CA 90001" +264857,AA Batteries (4-pack),1,3.84,10/09/19 06:13,"470 Main St, Portland, OR 97035" +264858,USB-C Charging Cable,1,11.95,10/08/19 18:48,"230 Forest St, San Francisco, CA 94016" +264859,USB-C Charging Cable,2,11.95,10/14/19 01:40,"979 12th St, Atlanta, GA 30301" +264860,Apple Airpods Headphones,1,150.0,10/11/19 23:33,"371 Washington St, Seattle, WA 98101" +264861,Wired Headphones,1,11.99,10/25/19 23:08,"778 Jefferson St, Boston, MA 02215" +264862,Lightning Charging Cable,1,14.95,11/01/19 00:40,"19 1st St, Boston, MA 02215" +264863,Bose SoundSport Headphones,1,99.99,10/22/19 15:15,"815 Spruce St, Austin, TX 73301" +264864,AAA Batteries (4-pack),1,2.99,10/07/19 13:16,"256 5th St, New York City, NY 10001" +264865,Google Phone,1,600.0,10/30/19 17:43,"406 Ridge St, San Francisco, CA 94016" +264866,Lightning Charging Cable,1,14.95,10/31/19 04:38,"859 Jackson St, Boston, MA 02215" +264867,ThinkPad Laptop,1,999.99,10/30/19 11:52,"818 9th St, Atlanta, GA 30301" +264868,Apple Airpods Headphones,1,150.0,10/09/19 08:33,"650 10th St, San Francisco, CA 94016" +264869,USB-C Charging Cable,1,11.95,10/02/19 21:42,"6 Highland St, San Francisco, CA 94016" +264870,Lightning Charging Cable,3,14.95,10/13/19 21:44,"159 Lincoln St, Los Angeles, CA 90001" +264871,ThinkPad Laptop,1,999.99,10/10/19 20:26,"358 Lake St, Los Angeles, CA 90001" +264872,iPhone,1,700.0,10/02/19 18:45,"676 13th St, Seattle, WA 98101" +264872,Wired Headphones,1,11.99,10/02/19 18:45,"676 13th St, Seattle, WA 98101" +264873,USB-C Charging Cable,1,11.95,10/05/19 21:41,"158 5th St, New York City, NY 10001" +264874,Flatscreen TV,1,300.0,10/02/19 19:21,"178 7th St, San Francisco, CA 94016" +264875,AAA Batteries (4-pack),1,2.99,10/24/19 15:44,"215 2nd St, Austin, TX 73301" +264876,Wired Headphones,1,11.99,10/01/19 21:30,"2 West St, Seattle, WA 98101" +264877,AA Batteries (4-pack),1,3.84,10/17/19 21:18,"876 14th St, Atlanta, GA 30301" +264878,Apple Airpods Headphones,1,150.0,10/06/19 13:36,"285 Lake St, Boston, MA 02215" +264879,Apple Airpods Headphones,1,150.0,10/28/19 19:05,"618 Sunset St, Los Angeles, CA 90001" +264880,Lightning Charging Cable,1,14.95,10/19/19 00:16,"561 Church St, Boston, MA 02215" +264881,USB-C Charging Cable,1,11.95,10/04/19 14:21,"376 Cherry St, San Francisco, CA 94016" +264882,Apple Airpods Headphones,1,150.0,10/01/19 10:55,"244 Highland St, San Francisco, CA 94016" +264883,Bose SoundSport Headphones,1,99.99,10/02/19 14:19,"664 2nd St, San Francisco, CA 94016" +264884,27in 4K Gaming Monitor,1,389.99,10/16/19 13:02,"205 Cherry St, Los Angeles, CA 90001" +264885,Wired Headphones,1,11.99,10/05/19 22:52,"51 Willow St, Seattle, WA 98101" +264886,Lightning Charging Cable,1,14.95,10/18/19 07:25,"573 Forest St, Los Angeles, CA 90001" +264887,Macbook Pro Laptop,1,1700.0,10/18/19 00:08,"22 13th St, Boston, MA 02215" +264888,iPhone,1,700.0,10/15/19 17:36,"440 1st St, Boston, MA 02215" +264889,Lightning Charging Cable,1,14.95,10/10/19 00:50,"163 Jefferson St, Atlanta, GA 30301" +264890,Lightning Charging Cable,1,14.95,10/25/19 20:15,"998 11th St, Seattle, WA 98101" +264891,AA Batteries (4-pack),2,3.84,10/12/19 18:10,"798 5th St, Austin, TX 73301" +264892,Google Phone,1,600.0,10/24/19 20:32,"12 Chestnut St, New York City, NY 10001" +264892,USB-C Charging Cable,1,11.95,10/24/19 20:32,"12 Chestnut St, New York City, NY 10001" +264893,34in Ultrawide Monitor,1,379.99,10/20/19 22:07,"880 Elm St, Portland, OR 97035" +264894,Wired Headphones,1,11.99,10/17/19 05:59,"43 12th St, Boston, MA 02215" +264895,Lightning Charging Cable,1,14.95,10/10/19 17:40,"228 1st St, Seattle, WA 98101" +264896,Bose SoundSport Headphones,1,99.99,10/19/19 11:04,"842 Maple St, Seattle, WA 98101" +264897,AA Batteries (4-pack),3,3.84,10/06/19 18:32,"601 6th St, Portland, OR 97035" +264898,Wired Headphones,1,11.99,10/23/19 18:57,"763 13th St, Austin, TX 73301" +264899,Lightning Charging Cable,1,14.95,10/31/19 20:35,"578 6th St, Seattle, WA 98101" +264900,USB-C Charging Cable,1,11.95,10/13/19 12:43,"954 Lincoln St, Dallas, TX 75001" +264901,AAA Batteries (4-pack),1,2.99,10/18/19 20:21,"289 Madison St, Austin, TX 73301" +264902,Macbook Pro Laptop,1,1700.0,10/26/19 19:59,"147 Walnut St, San Francisco, CA 94016" +264903,Lightning Charging Cable,1,14.95,10/23/19 10:10,"650 Lake St, San Francisco, CA 94016" +264904,AAA Batteries (4-pack),2,2.99,10/18/19 14:31,"986 West St, Boston, MA 02215" +264905,Wired Headphones,1,11.99,10/26/19 13:46,"372 Maple St, Atlanta, GA 30301" +264906,AAA Batteries (4-pack),1,2.99,10/09/19 12:01,"128 2nd St, Portland, OR 97035" +264907,AA Batteries (4-pack),1,3.84,10/15/19 18:16,"649 6th St, Seattle, WA 98101" +264908,USB-C Charging Cable,1,11.95,10/27/19 16:38,"995 Ridge St, Dallas, TX 75001" +264909,Wired Headphones,1,11.99,10/08/19 18:09,"31 West St, San Francisco, CA 94016" +264910,27in FHD Monitor,1,149.99,10/08/19 07:44,"377 Madison St, San Francisco, CA 94016" +264911,AA Batteries (4-pack),1,3.84,10/05/19 17:23,"575 11th St, Seattle, WA 98101" +264912,USB-C Charging Cable,1,11.95,10/17/19 22:18,"961 Spruce St, Boston, MA 02215" +264913,Lightning Charging Cable,1,14.95,10/05/19 20:01,"226 Wilson St, Boston, MA 02215" +264914,Apple Airpods Headphones,1,150.0,10/08/19 09:55,"662 Hill St, Los Angeles, CA 90001" +264915,Bose SoundSport Headphones,1,99.99,10/30/19 22:57,"364 River St, Seattle, WA 98101" +264916,Macbook Pro Laptop,1,1700.0,10/02/19 19:57,"440 Cedar St, San Francisco, CA 94016" +264917,34in Ultrawide Monitor,1,379.99,10/13/19 17:54,"672 Willow St, San Francisco, CA 94016" +264918,27in 4K Gaming Monitor,1,389.99,10/15/19 22:31,"459 Ridge St, Seattle, WA 98101" +264919,ThinkPad Laptop,1,999.99,10/18/19 15:23,"756 7th St, Los Angeles, CA 90001" +264920,Flatscreen TV,1,300.0,10/24/19 19:22,"174 Center St, San Francisco, CA 94016" +264921,34in Ultrawide Monitor,1,379.99,10/08/19 09:56,"219 Hickory St, Seattle, WA 98101" +264922,AA Batteries (4-pack),1,3.84,10/15/19 16:04,"190 5th St, Dallas, TX 75001" +264923,USB-C Charging Cable,1,11.95,10/09/19 14:09,"340 Forest St, San Francisco, CA 94016" +264924,iPhone,1,700.0,10/04/19 09:38,"550 Lincoln St, Atlanta, GA 30301" +264925,27in FHD Monitor,1,149.99,10/02/19 11:15,"278 5th St, San Francisco, CA 94016" +264926,Apple Airpods Headphones,1,150.0,10/31/19 18:24,"576 Elm St, Austin, TX 73301" +264926,USB-C Charging Cable,1,11.95,10/31/19 18:24,"576 Elm St, Austin, TX 73301" +264927,AAA Batteries (4-pack),1,2.99,10/12/19 12:02,"89 Willow St, Austin, TX 73301" +264928,AAA Batteries (4-pack),1,2.99,10/22/19 15:52,"291 Elm St, San Francisco, CA 94016" +264929,AAA Batteries (4-pack),1,2.99,10/09/19 21:15,"941 North St, Austin, TX 73301" +264930,34in Ultrawide Monitor,1,379.99,10/04/19 19:16,"137 Washington St, New York City, NY 10001" +264931,ThinkPad Laptop,1,999.99,10/25/19 19:14,"350 Lakeview St, Boston, MA 02215" +264932,Flatscreen TV,1,300.0,10/09/19 23:42,"378 Jackson St, Los Angeles, CA 90001" +264933,Macbook Pro Laptop,1,1700.0,10/26/19 09:37,"675 South St, Atlanta, GA 30301" +264934,iPhone,1,700.0,10/03/19 19:22,"138 Willow St, Atlanta, GA 30301" +264935,34in Ultrawide Monitor,1,379.99,10/27/19 01:11,"938 Adams St, San Francisco, CA 94016" +264936,34in Ultrawide Monitor,1,379.99,10/13/19 18:14,"19 North St, San Francisco, CA 94016" +264937,Flatscreen TV,1,300.0,10/03/19 21:58,"501 River St, New York City, NY 10001" +264938,iPhone,1,700.0,10/06/19 20:29,"2 8th St, Los Angeles, CA 90001" +264939,Wired Headphones,1,11.99,10/14/19 00:04,"260 Wilson St, Dallas, TX 75001" +264940,AA Batteries (4-pack),1,3.84,10/05/19 10:35,"42 Dogwood St, San Francisco, CA 94016" +264941,USB-C Charging Cable,1,11.95,10/14/19 18:00,"842 Main St, Atlanta, GA 30301" +264942,Apple Airpods Headphones,1,150.0,10/28/19 17:17,"718 Meadow St, Seattle, WA 98101" +264943,Bose SoundSport Headphones,1,99.99,10/05/19 18:25,"60 Willow St, San Francisco, CA 94016" +264944,AAA Batteries (4-pack),1,2.99,10/19/19 12:32,"93 Lincoln St, Seattle, WA 98101" +264945,Bose SoundSport Headphones,1,99.99,10/01/19 10:29,"511 Adams St, Boston, MA 02215" +264946,27in FHD Monitor,1,149.99,10/31/19 21:57,"777 12th St, Los Angeles, CA 90001" +264947,AAA Batteries (4-pack),1,2.99,10/30/19 20:00,"7 13th St, San Francisco, CA 94016" +264948,Apple Airpods Headphones,1,150.0,10/28/19 16:14,"12 Washington St, Atlanta, GA 30301" +264949,27in 4K Gaming Monitor,1,389.99,10/22/19 15:09,"916 Ridge St, Dallas, TX 75001" +264950,Bose SoundSport Headphones,1,99.99,10/04/19 16:45,"394 13th St, San Francisco, CA 94016" +264951,ThinkPad Laptop,1,999.99,10/24/19 21:20,"732 Forest St, Austin, TX 73301" +264952,ThinkPad Laptop,1,999.99,10/10/19 19:21,"536 North St, Portland, OR 97035" +264953,Macbook Pro Laptop,1,1700.0,10/11/19 19:51,"691 Cherry St, Boston, MA 02215" +264954,Google Phone,1,600.0,10/03/19 23:52,"821 Elm St, Boston, MA 02215" +264955,AA Batteries (4-pack),1,3.84,10/07/19 10:29,"599 West St, Los Angeles, CA 90001" +264956,AA Batteries (4-pack),1,3.84,10/06/19 17:00,"661 14th St, Atlanta, GA 30301" +264957,Macbook Pro Laptop,1,1700.0,10/01/19 13:23,"863 12th St, Los Angeles, CA 90001" +264958,AA Batteries (4-pack),1,3.84,10/05/19 19:10,"609 Walnut St, San Francisco, CA 94016" +264959,AA Batteries (4-pack),1,3.84,10/30/19 22:34,"147 River St, Portland, OR 97035" +264960,Lightning Charging Cable,1,14.95,10/27/19 13:50,"697 6th St, Austin, TX 73301" +264961,34in Ultrawide Monitor,1,379.99,10/18/19 11:02,"618 5th St, Portland, OR 97035" +264962,AA Batteries (4-pack),1,3.84,10/16/19 09:54,"346 8th St, Boston, MA 02215" +264963,Apple Airpods Headphones,1,150.0,10/30/19 00:29,"209 Cedar St, New York City, NY 10001" +264964,Wired Headphones,1,11.99,10/18/19 20:31,"256 Maple St, Los Angeles, CA 90001" +264965,AA Batteries (4-pack),1,3.84,10/25/19 15:17,"449 Hill St, Boston, MA 02215" +264966,AA Batteries (4-pack),1,3.84,10/30/19 05:42,"192 South St, Seattle, WA 98101" +264967,27in 4K Gaming Monitor,1,389.99,10/01/19 23:08,"511 4th St, San Francisco, CA 94016" +264968,Wired Headphones,1,11.99,10/19/19 13:42,"976 Wilson St, Seattle, WA 98101" +264969,AAA Batteries (4-pack),2,2.99,10/09/19 09:46,"984 Lake St, Atlanta, GA 30301" +264970,Wired Headphones,1,11.99,10/03/19 22:09,"941 Elm St, Austin, TX 73301" +264971,AAA Batteries (4-pack),1,2.99,10/19/19 08:57,"589 9th St, Boston, MA 02215" +264972,Google Phone,1,600.0,10/03/19 16:42,"679 Johnson St, Seattle, WA 98101" +264973,AA Batteries (4-pack),1,3.84,10/05/19 12:42,"234 Chestnut St, San Francisco, CA 94016" +264974,Lightning Charging Cable,1,14.95,10/08/19 20:08,"127 Johnson St, Atlanta, GA 30301" +264975,ThinkPad Laptop,1,999.99,10/27/19 17:03,"878 North St, Boston, MA 02215" +264976,Lightning Charging Cable,1,14.95,10/17/19 14:22,"725 1st St, Dallas, TX 75001" +264977,Wired Headphones,1,11.99,10/28/19 13:36,"709 South St, San Francisco, CA 94016" +264978,USB-C Charging Cable,1,11.95,10/04/19 11:50,"630 4th St, Atlanta, GA 30301" +264979,Wired Headphones,1,11.99,10/20/19 10:47,"839 8th St, San Francisco, CA 94016" +264980,Apple Airpods Headphones,1,150.0,10/28/19 22:27,"227 Center St, Boston, MA 02215" +264981,Flatscreen TV,1,300.0,10/18/19 10:05,"831 Highland St, San Francisco, CA 94016" +264982,USB-C Charging Cable,1,11.95,10/11/19 20:21,"443 1st St, Atlanta, GA 30301" +264983,AAA Batteries (4-pack),3,2.99,10/28/19 23:54,"849 Lakeview St, Atlanta, GA 30301" +264984,Bose SoundSport Headphones,1,99.99,10/22/19 19:03,"512 7th St, San Francisco, CA 94016" +264985,Lightning Charging Cable,2,14.95,10/23/19 09:00,"853 12th St, Dallas, TX 75001" +264986,27in FHD Monitor,1,149.99,10/15/19 19:02,"474 6th St, New York City, NY 10001" +264987,Wired Headphones,1,11.99,10/04/19 21:06,"200 Elm St, Seattle, WA 98101" +264988,USB-C Charging Cable,1,11.95,10/29/19 18:44,"520 Highland St, Portland, OR 97035" +264989,ThinkPad Laptop,1,999.99,10/18/19 10:03,"53 Pine St, Atlanta, GA 30301" +264990,Lightning Charging Cable,1,14.95,10/11/19 11:46,"13 12th St, Seattle, WA 98101" +264991,Wired Headphones,1,11.99,10/19/19 12:05,"831 Jackson St, Austin, TX 73301" +264992,Wired Headphones,1,11.99,10/02/19 10:30,"796 North St, Dallas, TX 75001" +264993,Wired Headphones,1,11.99,10/04/19 10:37,"363 Elm St, New York City, NY 10001" +264994,Google Phone,1,600.0,10/09/19 20:28,"881 12th St, San Francisco, CA 94016" +264995,USB-C Charging Cable,1,11.95,10/29/19 15:18,"12 Cedar St, Los Angeles, CA 90001" +264996,Vareebadd Phone,1,400.0,10/01/19 08:33,"812 2nd St, San Francisco, CA 94016" +264997,Lightning Charging Cable,1,14.95,10/23/19 13:09,"121 Madison St, Boston, MA 02215" +264998,Wired Headphones,1,11.99,10/31/19 10:14,"522 Elm St, Los Angeles, CA 90001" +264999,Wired Headphones,1,11.99,10/08/19 12:06,"777 4th St, San Francisco, CA 94016" +265000,AA Batteries (4-pack),1,3.84,10/25/19 12:29,"62 Highland St, New York City, NY 10001" +265001,27in 4K Gaming Monitor,1,389.99,10/24/19 16:56,"194 Adams St, San Francisco, CA 94016" +265002,Macbook Pro Laptop,1,1700.0,10/10/19 10:15,"376 Park St, San Francisco, CA 94016" +265003,34in Ultrawide Monitor,1,379.99,10/22/19 19:41,"88 Willow St, New York City, NY 10001" +265004,Lightning Charging Cable,1,14.95,10/27/19 15:02,"938 4th St, Austin, TX 73301" +265005,Wired Headphones,1,11.99,10/21/19 17:22,"691 8th St, Dallas, TX 75001" +265006,Wired Headphones,1,11.99,10/18/19 18:33,"45 Meadow St, San Francisco, CA 94016" +265007,Apple Airpods Headphones,2,150.0,10/11/19 19:22,"535 Hickory St, Los Angeles, CA 90001" +265008,Bose SoundSport Headphones,1,99.99,10/30/19 14:51,"901 5th St, Los Angeles, CA 90001" +265009,Wired Headphones,1,11.99,10/22/19 13:38,"530 Willow St, San Francisco, CA 94016" +265010,AA Batteries (4-pack),1,3.84,10/14/19 18:50,"143 Cedar St, New York City, NY 10001" +265011,AA Batteries (4-pack),1,3.84,10/06/19 15:26,"686 Walnut St, San Francisco, CA 94016" +265012,AAA Batteries (4-pack),1,2.99,10/13/19 00:49,"366 Walnut St, Seattle, WA 98101" +265013,AA Batteries (4-pack),1,3.84,10/08/19 20:18,"831 4th St, Portland, ME 04101" +265014,27in FHD Monitor,1,149.99,10/15/19 11:36,"675 Cedar St, San Francisco, CA 94016" +265015,AAA Batteries (4-pack),1,2.99,10/26/19 12:13,"794 Center St, Austin, TX 73301" +265016,USB-C Charging Cable,1,11.95,10/10/19 15:15,"783 4th St, Boston, MA 02215" +265017,AAA Batteries (4-pack),2,2.99,10/12/19 21:08,"6 6th St, New York City, NY 10001" +265018,USB-C Charging Cable,1,11.95,10/11/19 12:11,"458 11th St, Dallas, TX 75001" +265019,AAA Batteries (4-pack),1,2.99,10/27/19 21:11,"273 10th St, Austin, TX 73301" +265020,AA Batteries (4-pack),2,3.84,10/24/19 19:10,"999 14th St, Boston, MA 02215" +265021,AAA Batteries (4-pack),1,2.99,10/17/19 20:47,"513 6th St, New York City, NY 10001" +265022,AA Batteries (4-pack),1,3.84,10/02/19 14:41,"476 Cherry St, Boston, MA 02215" +265023,AA Batteries (4-pack),1,3.84,10/26/19 01:50,"401 Adams St, San Francisco, CA 94016" +265024,AAA Batteries (4-pack),3,2.99,10/17/19 03:27,"535 Willow St, Seattle, WA 98101" +265025,Lightning Charging Cable,1,14.95,10/31/19 17:14,"377 Jefferson St, Los Angeles, CA 90001" +265026,27in FHD Monitor,1,149.99,10/19/19 15:48,"893 Park St, Dallas, TX 75001" +265027,Wired Headphones,2,11.99,10/06/19 09:34,"242 10th St, San Francisco, CA 94016" +265028,27in FHD Monitor,1,149.99,10/20/19 18:53,"665 10th St, Atlanta, GA 30301" +265029,Wired Headphones,1,11.99,10/26/19 07:31,"735 Washington St, Portland, OR 97035" +265030,Bose SoundSport Headphones,1,99.99,10/16/19 05:51,"52 Pine St, San Francisco, CA 94016" +265031,27in FHD Monitor,1,149.99,10/20/19 13:43,"845 Church St, Los Angeles, CA 90001" +265032,Apple Airpods Headphones,1,150.0,10/08/19 21:10,"1 13th St, Portland, OR 97035" +265033,Flatscreen TV,1,300.0,10/21/19 10:55,"989 1st St, San Francisco, CA 94016" +265034,Google Phone,1,600.0,10/08/19 09:43,"253 Dogwood St, Los Angeles, CA 90001" +265035,27in 4K Gaming Monitor,1,389.99,10/24/19 00:24,"7 Hill St, Boston, MA 02215" +265036,27in FHD Monitor,1,149.99,10/09/19 11:16,"179 Spruce St, San Francisco, CA 94016" +265037,AA Batteries (4-pack),1,3.84,10/06/19 11:47,"5 Hill St, Los Angeles, CA 90001" +265038,AAA Batteries (4-pack),1,2.99,10/27/19 19:08,"519 8th St, Boston, MA 02215" +265039,27in 4K Gaming Monitor,1,389.99,10/02/19 08:48,"837 Sunset St, San Francisco, CA 94016" +265040,AAA Batteries (4-pack),1,2.99,10/22/19 12:30,"242 Wilson St, New York City, NY 10001" +265041,34in Ultrawide Monitor,1,379.99,10/30/19 15:04,"342 Lakeview St, Seattle, WA 98101" +265042,27in FHD Monitor,1,149.99,10/04/19 08:29,"879 Pine St, Portland, OR 97035" +265043,Google Phone,1,600.0,10/15/19 11:43,"272 West St, San Francisco, CA 94016" +265044,Apple Airpods Headphones,1,150.0,10/25/19 14:20,"145 Pine St, Seattle, WA 98101" +265045,Wired Headphones,1,11.99,10/18/19 22:29,"586 Wilson St, Boston, MA 02215" +265046,Wired Headphones,1,11.99,10/26/19 08:08,"865 2nd St, Seattle, WA 98101" +265047,Apple Airpods Headphones,1,150.0,10/21/19 13:48,"600 13th St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +265048,27in FHD Monitor,1,149.99,10/21/19 17:53,"643 Jefferson St, Boston, MA 02215" +265048,AAA Batteries (4-pack),1,2.99,10/21/19 17:53,"643 Jefferson St, Boston, MA 02215" +265049,Flatscreen TV,1,300,10/09/19 12:15,"880 Hill St, Dallas, TX 75001" +265050,Lightning Charging Cable,1,14.95,10/25/19 11:22,"999 Cedar St, Los Angeles, CA 90001" +265051,AAA Batteries (4-pack),2,2.99,10/22/19 19:56,"264 Cherry St, Atlanta, GA 30301" +265052,Apple Airpods Headphones,1,150,10/23/19 13:07,"4 Lakeview St, Los Angeles, CA 90001" +265053,Wired Headphones,1,11.99,10/25/19 10:10,"714 Ridge St, Los Angeles, CA 90001" +265054,AAA Batteries (4-pack),1,2.99,10/21/19 18:14,"645 Wilson St, Austin, TX 73301" +265054,iPhone,1,700,10/21/19 18:14,"645 Wilson St, Austin, TX 73301" +265055,AA Batteries (4-pack),2,3.84,10/16/19 23:54,"348 Elm St, New York City, NY 10001" +265055,Macbook Pro Laptop,1,1700,10/16/19 23:54,"348 Elm St, New York City, NY 10001" +265056,Wired Headphones,1,11.99,10/02/19 13:07,"357 Cherry St, Austin, TX 73301" +265057,USB-C Charging Cable,1,11.95,10/20/19 12:35,"203 Willow St, New York City, NY 10001" +265058,Google Phone,1,600,10/03/19 18:45,"447 7th St, Los Angeles, CA 90001" +265059,34in Ultrawide Monitor,1,379.99,10/26/19 21:01,"308 South St, Atlanta, GA 30301" +265060,Wired Headphones,1,11.99,10/28/19 18:40,"912 West St, New York City, NY 10001" +265061,AA Batteries (4-pack),2,3.84,10/09/19 11:52,"745 1st St, New York City, NY 10001" +265062,iPhone,1,700,10/20/19 22:52,"91 1st St, San Francisco, CA 94016" +265062,Lightning Charging Cable,2,14.95,10/20/19 22:52,"91 1st St, San Francisco, CA 94016" +265063,Lightning Charging Cable,1,14.95,10/22/19 13:11,"997 1st St, Boston, MA 02215" +265064,USB-C Charging Cable,1,11.95,10/27/19 11:04,"194 4th St, Seattle, WA 98101" +265065,AAA Batteries (4-pack),1,2.99,10/06/19 10:24,"189 Elm St, San Francisco, CA 94016" +265066,AA Batteries (4-pack),1,3.84,10/07/19 19:27,"52 Willow St, New York City, NY 10001" +265067,USB-C Charging Cable,1,11.95,10/13/19 20:19,"74 Dogwood St, Dallas, TX 75001" +265068,AAA Batteries (4-pack),1,2.99,10/08/19 22:48,"74 Sunset St, Portland, OR 97035" +265069,Vareebadd Phone,1,400,10/27/19 21:09,"6 6th St, Boston, MA 02215" +265070,AA Batteries (4-pack),1,3.84,10/30/19 22:42,"111 Dogwood St, San Francisco, CA 94016" +265071,Bose SoundSport Headphones,1,99.99,10/20/19 12:43,"905 South St, Portland, OR 97035" +265072,Wired Headphones,1,11.99,10/30/19 19:50,"975 Lakeview St, Atlanta, GA 30301" +265073,AA Batteries (4-pack),1,3.84,10/24/19 20:15,"785 North St, Austin, TX 73301" +265074,iPhone,1,700,10/21/19 06:20,"283 2nd St, Seattle, WA 98101" +265075,LG Washing Machine,1,600.0,10/29/19 22:49,"645 Johnson St, Seattle, WA 98101" +265076,AA Batteries (4-pack),1,3.84,10/15/19 00:28,"219 14th St, Boston, MA 02215" +265077,Wired Headphones,1,11.99,10/11/19 22:56,"265 14th St, Boston, MA 02215" +265078,AA Batteries (4-pack),5,3.84,10/08/19 19:24,"477 5th St, San Francisco, CA 94016" +265079,Lightning Charging Cable,1,14.95,10/30/19 03:35,"133 Ridge St, Los Angeles, CA 90001" +265080,AA Batteries (4-pack),1,3.84,10/04/19 18:16,"770 Forest St, Boston, MA 02215" +265081,AA Batteries (4-pack),2,3.84,10/17/19 15:51,"394 River St, San Francisco, CA 94016" +265082,LG Washing Machine,1,600.0,10/08/19 19:52,"584 Johnson St, Los Angeles, CA 90001" +265083,Wired Headphones,1,11.99,10/10/19 18:23,"272 7th St, Los Angeles, CA 90001" +265084,Wired Headphones,1,11.99,10/13/19 09:17,"199 South St, Portland, OR 97035" +265085,Lightning Charging Cable,2,14.95,10/08/19 08:13,"867 Walnut St, Atlanta, GA 30301" +265086,Lightning Charging Cable,1,14.95,10/28/19 13:06,"213 Walnut St, Portland, OR 97035" +265087,20in Monitor,1,109.99,10/14/19 11:47,"761 5th St, Los Angeles, CA 90001" +265088,20in Monitor,1,109.99,10/30/19 07:45,"390 11th St, Los Angeles, CA 90001" +265089,Bose SoundSport Headphones,1,99.99,10/03/19 18:41,"584 Walnut St, Seattle, WA 98101" +265090,Apple Airpods Headphones,1,150,10/29/19 12:30,"392 10th St, San Francisco, CA 94016" +265091,Apple Airpods Headphones,1,150,10/06/19 18:15,"356 Dogwood St, San Francisco, CA 94016" +265092,27in 4K Gaming Monitor,1,389.99,10/04/19 18:11,"661 Meadow St, New York City, NY 10001" +265093,AAA Batteries (4-pack),3,2.99,10/25/19 11:44,"271 Meadow St, Seattle, WA 98101" +265094,Bose SoundSport Headphones,1,99.99,10/08/19 17:48,"836 Sunset St, Portland, OR 97035" +265095,AAA Batteries (4-pack),1,2.99,10/27/19 15:58,"876 Maple St, Boston, MA 02215" +265096,AA Batteries (4-pack),1,3.84,10/29/19 18:42,"82 Hickory St, Boston, MA 02215" +265097,Lightning Charging Cable,1,14.95,10/27/19 12:37,"736 Pine St, San Francisco, CA 94016" +265098,Wired Headphones,1,11.99,10/25/19 12:59,"107 Sunset St, Boston, MA 02215" +265099,Bose SoundSport Headphones,1,99.99,10/28/19 15:19,"822 Spruce St, New York City, NY 10001" +265100,Macbook Pro Laptop,1,1700,10/26/19 10:52,"382 Cherry St, San Francisco, CA 94016" +265101,Apple Airpods Headphones,1,150,10/13/19 10:04,"228 2nd St, New York City, NY 10001" +265102,AA Batteries (4-pack),1,3.84,10/27/19 15:52,"687 5th St, San Francisco, CA 94016" +265103,Bose SoundSport Headphones,1,99.99,10/06/19 19:16,"544 Chestnut St, Austin, TX 73301" +265104,AAA Batteries (4-pack),1,2.99,10/02/19 18:22,"961 4th St, San Francisco, CA 94016" +265105,Wired Headphones,1,11.99,10/02/19 17:48,"98 Walnut St, Portland, ME 04101" +265106,Bose SoundSport Headphones,1,99.99,10/07/19 13:26,"660 Adams St, San Francisco, CA 94016" +265107,AAA Batteries (4-pack),1,2.99,10/08/19 10:42,"659 Elm St, Portland, OR 97035" +265108,Lightning Charging Cable,1,14.95,10/25/19 13:08,"848 Highland St, Atlanta, GA 30301" +265109,AAA Batteries (4-pack),2,2.99,10/03/19 15:12,"154 Dogwood St, San Francisco, CA 94016" +265110,Flatscreen TV,1,300,10/01/19 13:07,"150 13th St, Los Angeles, CA 90001" +265111,USB-C Charging Cable,1,11.95,10/13/19 09:49,"9 Jackson St, San Francisco, CA 94016" +265112,USB-C Charging Cable,1,11.95,10/20/19 21:10,"972 Cherry St, Dallas, TX 75001" +265113,Google Phone,1,600,10/13/19 21:28,"100 8th St, Seattle, WA 98101" +265114,USB-C Charging Cable,1,11.95,10/07/19 21:29,"949 Wilson St, Los Angeles, CA 90001" +265115,ThinkPad Laptop,1,999.99,10/31/19 21:54,"77 Sunset St, San Francisco, CA 94016" +265116,Wired Headphones,1,11.99,10/12/19 12:52,"891 Wilson St, Boston, MA 02215" +265117,iPhone,1,700,10/04/19 17:28,"748 4th St, Los Angeles, CA 90001" +265117,Apple Airpods Headphones,1,150,10/04/19 17:28,"748 4th St, Los Angeles, CA 90001" +265118,Bose SoundSport Headphones,1,99.99,10/28/19 20:48,"577 Dogwood St, Dallas, TX 75001" +265119,AA Batteries (4-pack),1,3.84,10/01/19 11:24,"221 13th St, Atlanta, GA 30301" +265120,AA Batteries (4-pack),1,3.84,10/23/19 09:50,"984 Madison St, Seattle, WA 98101" +265121,Bose SoundSport Headphones,1,99.99,10/18/19 12:51,"566 Pine St, Los Angeles, CA 90001" +265122,27in FHD Monitor,1,149.99,10/03/19 15:43,"194 Spruce St, Los Angeles, CA 90001" +265123,AA Batteries (4-pack),1,3.84,10/28/19 00:19,"685 7th St, Atlanta, GA 30301" +265124,AAA Batteries (4-pack),4,2.99,10/12/19 22:25,"443 14th St, Seattle, WA 98101" +265125,Lightning Charging Cable,1,14.95,10/13/19 20:45,"911 Lakeview St, San Francisco, CA 94016" +265126,Flatscreen TV,1,300,10/03/19 19:22,"655 Jefferson St, Los Angeles, CA 90001" +265127,20in Monitor,1,109.99,10/27/19 13:06,"992 Cherry St, Atlanta, GA 30301" +265128,AA Batteries (4-pack),1,3.84,10/03/19 22:28,"157 Hill St, Austin, TX 73301" +265129,AA Batteries (4-pack),1,3.84,10/19/19 17:53,"40 Elm St, New York City, NY 10001" +265130,Vareebadd Phone,1,400,10/23/19 10:08,"310 Forest St, Portland, OR 97035" +265130,Wired Headphones,1,11.99,10/23/19 10:08,"310 Forest St, Portland, OR 97035" +265131,AAA Batteries (4-pack),2,2.99,10/12/19 19:34,"49 6th St, Los Angeles, CA 90001" +265132,AAA Batteries (4-pack),2,2.99,10/24/19 09:34,"802 8th St, San Francisco, CA 94016" +265133,USB-C Charging Cable,1,11.95,10/20/19 19:53,"723 Pine St, San Francisco, CA 94016" +265133,Wired Headphones,1,11.99,10/20/19 19:53,"723 Pine St, San Francisco, CA 94016" +265134,Macbook Pro Laptop,1,1700,10/11/19 16:48,"595 River St, Boston, MA 02215" +265135,Wired Headphones,1,11.99,10/31/19 22:35,"224 Dogwood St, Los Angeles, CA 90001" +265136,USB-C Charging Cable,1,11.95,10/22/19 14:22,"478 7th St, Los Angeles, CA 90001" +265137,AA Batteries (4-pack),1,3.84,10/27/19 16:30,"38 7th St, Dallas, TX 75001" +265138,20in Monitor,1,109.99,10/31/19 18:03,"594 Spruce St, San Francisco, CA 94016" +265139,27in 4K Gaming Monitor,1,389.99,10/25/19 09:43,"318 7th St, Los Angeles, CA 90001" +265140,Lightning Charging Cable,1,14.95,10/22/19 15:38,"764 5th St, Atlanta, GA 30301" +265141,ThinkPad Laptop,1,999.99,10/20/19 19:17,"56 South St, Boston, MA 02215" +265142,Apple Airpods Headphones,1,150,10/22/19 15:09,"587 Cedar St, Los Angeles, CA 90001" +265143,Bose SoundSport Headphones,1,99.99,10/02/19 15:21,"572 10th St, New York City, NY 10001" +265144,USB-C Charging Cable,1,11.95,10/07/19 15:12,"724 2nd St, New York City, NY 10001" +265145,AAA Batteries (4-pack),1,2.99,10/09/19 22:04,"281 South St, Los Angeles, CA 90001" +265145,Apple Airpods Headphones,1,150,10/09/19 22:04,"281 South St, Los Angeles, CA 90001" +265146,ThinkPad Laptop,1,999.99,10/05/19 23:21,"786 Maple St, Boston, MA 02215" +265147,USB-C Charging Cable,1,11.95,10/12/19 15:33,"851 6th St, Atlanta, GA 30301" +265147,34in Ultrawide Monitor,1,379.99,10/12/19 15:33,"851 6th St, Atlanta, GA 30301" +265148,Bose SoundSport Headphones,1,99.99,10/02/19 09:44,"451 Hickory St, San Francisco, CA 94016" +265149,AAA Batteries (4-pack),1,2.99,10/18/19 12:48,"994 Main St, San Francisco, CA 94016" +265150,27in FHD Monitor,1,149.99,10/18/19 18:52,"652 Pine St, Boston, MA 02215" +265151,AAA Batteries (4-pack),2,2.99,10/21/19 10:41,"175 Maple St, New York City, NY 10001" +265152,Apple Airpods Headphones,1,150,10/26/19 10:43,"970 Jackson St, Boston, MA 02215" +265153,Apple Airpods Headphones,1,150,10/09/19 16:31,"991 Main St, New York City, NY 10001" +265154,Lightning Charging Cable,1,14.95,10/21/19 21:55,"438 Johnson St, San Francisco, CA 94016" +265155,AAA Batteries (4-pack),1,2.99,10/13/19 14:01,"494 Wilson St, San Francisco, CA 94016" +265156,Apple Airpods Headphones,1,150,10/05/19 21:09,"833 Madison St, Boston, MA 02215" +265157,Google Phone,1,600,10/03/19 20:37,"60 2nd St, Boston, MA 02215" +265158,Apple Airpods Headphones,1,150,10/13/19 13:32,"716 Jackson St, San Francisco, CA 94016" +265159,Wired Headphones,1,11.99,10/05/19 19:48,"794 Meadow St, New York City, NY 10001" +265160,USB-C Charging Cable,1,11.95,10/17/19 19:40,"312 9th St, Portland, OR 97035" +265161,Wired Headphones,1,11.99,10/13/19 13:30,"740 Center St, San Francisco, CA 94016" +265162,20in Monitor,1,109.99,10/19/19 18:32,"291 Ridge St, New York City, NY 10001" +265163,34in Ultrawide Monitor,1,379.99,10/14/19 11:21,"595 Jefferson St, Seattle, WA 98101" +265164,Bose SoundSport Headphones,1,99.99,10/16/19 23:19,"148 4th St, San Francisco, CA 94016" +265165,iPhone,1,700,10/31/19 07:49,"187 5th St, Portland, OR 97035" +265166,AAA Batteries (4-pack),1,2.99,10/02/19 11:22,"756 Hickory St, San Francisco, CA 94016" +265167,AAA Batteries (4-pack),1,2.99,10/14/19 23:21,"803 8th St, Portland, OR 97035" +265168,AAA Batteries (4-pack),1,2.99,10/08/19 19:09,"971 Hickory St, Atlanta, GA 30301" +265168,Wired Headphones,1,11.99,10/08/19 19:09,"971 Hickory St, Atlanta, GA 30301" +265169,Bose SoundSport Headphones,1,99.99,10/28/19 20:36,"490 1st St, New York City, NY 10001" +265170,AAA Batteries (4-pack),2,2.99,10/08/19 10:21,"425 Spruce St, Seattle, WA 98101" +265171,Wired Headphones,1,11.99,10/31/19 12:57,"154 14th St, San Francisco, CA 94016" +265172,Wired Headphones,1,11.99,10/24/19 17:03,"942 Washington St, Seattle, WA 98101" +265173,AAA Batteries (4-pack),1,2.99,10/24/19 12:28,"613 Pine St, New York City, NY 10001" +265174,34in Ultrawide Monitor,1,379.99,10/15/19 15:29,"258 9th St, Atlanta, GA 30301" +265175,iPhone,1,700,10/06/19 09:08,"724 Madison St, Portland, OR 97035" +265176,AAA Batteries (4-pack),2,2.99,10/12/19 07:31,"41 4th St, Dallas, TX 75001" +265177,USB-C Charging Cable,1,11.95,10/13/19 14:09,"59 Walnut St, Los Angeles, CA 90001" +265178,USB-C Charging Cable,1,11.95,10/10/19 04:38,"686 Spruce St, San Francisco, CA 94016" +265179,Lightning Charging Cable,1,14.95,10/30/19 09:13,"348 Willow St, San Francisco, CA 94016" +265180,USB-C Charging Cable,1,11.95,10/29/19 00:32,"547 Spruce St, Boston, MA 02215" +265181,Bose SoundSport Headphones,1,99.99,10/01/19 18:39,"160 Church St, Atlanta, GA 30301" +265182,27in 4K Gaming Monitor,1,389.99,10/05/19 21:39,"883 Forest St, Los Angeles, CA 90001" +265183,Bose SoundSport Headphones,1,99.99,10/24/19 18:58,"819 Highland St, Dallas, TX 75001" +265184,Bose SoundSport Headphones,1,99.99,10/20/19 12:15,"709 Park St, San Francisco, CA 94016" +265185,Bose SoundSport Headphones,1,99.99,10/22/19 15:16,"820 River St, San Francisco, CA 94016" +265186,Lightning Charging Cable,1,14.95,10/08/19 18:38,"409 11th St, Boston, MA 02215" +265187,Lightning Charging Cable,2,14.95,10/06/19 06:44,"521 Willow St, San Francisco, CA 94016" +265188,AAA Batteries (4-pack),1,2.99,10/28/19 21:58,"34 Willow St, Austin, TX 73301" +265189,34in Ultrawide Monitor,1,379.99,10/20/19 00:42,"738 Hickory St, San Francisco, CA 94016" +265190,Apple Airpods Headphones,1,150,10/15/19 13:29,"945 Washington St, Austin, TX 73301" +265191,Wired Headphones,1,11.99,10/24/19 22:55,"493 Washington St, Boston, MA 02215" +265192,27in FHD Monitor,1,149.99,10/24/19 20:20,"883 8th St, New York City, NY 10001" +265193,LG Dryer,1,600.0,10/02/19 17:42,"441 Adams St, New York City, NY 10001" +265194,ThinkPad Laptop,1,999.99,10/07/19 15:40,"903 Chestnut St, Boston, MA 02215" +265195,27in 4K Gaming Monitor,1,389.99,10/03/19 12:10,"284 Lake St, San Francisco, CA 94016" +265196,AA Batteries (4-pack),1,3.84,10/10/19 11:19,"164 1st St, Los Angeles, CA 90001" +265197,Flatscreen TV,1,300,10/03/19 18:20,"724 Cherry St, Los Angeles, CA 90001" +265198,Apple Airpods Headphones,1,150,10/16/19 14:51,"629 9th St, Dallas, TX 75001" +265199,AA Batteries (4-pack),1,3.84,10/04/19 20:14,"708 13th St, Boston, MA 02215" +265200,AA Batteries (4-pack),1,3.84,10/01/19 20:58,"334 Meadow St, New York City, NY 10001" +265201,Apple Airpods Headphones,1,150,10/11/19 22:13,"37 Church St, Atlanta, GA 30301" +265202,Apple Airpods Headphones,1,150,10/11/19 15:37,"830 Hill St, Boston, MA 02215" +265203,Wired Headphones,2,11.99,10/09/19 21:12,"873 Lake St, Boston, MA 02215" +265204,iPhone,1,700,10/01/19 22:58,"420 4th St, San Francisco, CA 94016" +265205,USB-C Charging Cable,1,11.95,10/04/19 19:08,"727 Wilson St, San Francisco, CA 94016" +265206,AA Batteries (4-pack),1,3.84,10/06/19 18:28,"940 Cedar St, Portland, OR 97035" +265207,Google Phone,1,600,10/19/19 17:30,"206 Lakeview St, Dallas, TX 75001" +265208,AAA Batteries (4-pack),3,2.99,10/08/19 21:52,"285 Washington St, Austin, TX 73301" +265209,LG Dryer,1,600.0,10/04/19 09:50,"290 West St, Austin, TX 73301" +265210,Lightning Charging Cable,1,14.95,10/21/19 17:22,"308 Lakeview St, Seattle, WA 98101" +265211,27in FHD Monitor,1,149.99,10/03/19 21:57,"187 Pine St, Boston, MA 02215" +265212,27in FHD Monitor,1,149.99,10/09/19 13:34,"506 Hickory St, San Francisco, CA 94016" +265213,27in 4K Gaming Monitor,1,389.99,10/29/19 17:11,"534 13th St, New York City, NY 10001" +265214,Google Phone,1,600,10/04/19 06:53,"672 1st St, New York City, NY 10001" +265214,Wired Headphones,1,11.99,10/04/19 06:53,"672 1st St, New York City, NY 10001" +265215,ThinkPad Laptop,1,999.99,10/02/19 19:30,"705 Cedar St, Portland, ME 04101" +265216,Lightning Charging Cable,1,14.95,10/24/19 16:33,"539 Spruce St, Los Angeles, CA 90001" +265217,USB-C Charging Cable,1,11.95,10/18/19 13:41,"500 Main St, Portland, OR 97035" +265218,AA Batteries (4-pack),3,3.84,10/10/19 22:39,"336 North St, Boston, MA 02215" +265219,Lightning Charging Cable,1,14.95,10/01/19 10:48,"746 Walnut St, Boston, MA 02215" +265220,34in Ultrawide Monitor,1,379.99,10/24/19 11:47,"481 6th St, San Francisco, CA 94016" +265221,USB-C Charging Cable,1,11.95,10/21/19 22:26,"20 Ridge St, Boston, MA 02215" +265222,AAA Batteries (4-pack),1,2.99,10/14/19 13:42,"714 Ridge St, San Francisco, CA 94016" +265222,Apple Airpods Headphones,1,150,10/14/19 13:42,"714 Ridge St, San Francisco, CA 94016" +265223,Lightning Charging Cable,1,14.95,10/17/19 15:54,"392 12th St, San Francisco, CA 94016" +265224,Wired Headphones,1,11.99,10/23/19 13:04,"313 Spruce St, New York City, NY 10001" +265225,iPhone,1,700,10/02/19 14:53,"853 Main St, Austin, TX 73301" +265226,Bose SoundSport Headphones,1,99.99,10/26/19 12:28,"964 10th St, Boston, MA 02215" +265227,USB-C Charging Cable,1,11.95,10/09/19 12:21,"805 Wilson St, Dallas, TX 75001" +265228,27in FHD Monitor,1,149.99,10/23/19 12:05,"329 12th St, Atlanta, GA 30301" +265229,ThinkPad Laptop,1,999.99,10/18/19 20:47,"459 13th St, San Francisco, CA 94016" +265230,27in FHD Monitor,1,149.99,10/13/19 15:07,"388 Elm St, San Francisco, CA 94016" +265230,Lightning Charging Cable,1,14.95,10/13/19 15:07,"388 Elm St, San Francisco, CA 94016" +265231,ThinkPad Laptop,1,999.99,10/11/19 08:37,"671 Lakeview St, Seattle, WA 98101" +265232,Macbook Pro Laptop,1,1700,10/06/19 19:08,"679 11th St, New York City, NY 10001" +265233,Apple Airpods Headphones,1,150,10/18/19 10:09,"641 Cherry St, San Francisco, CA 94016" +265234,Lightning Charging Cable,1,14.95,10/15/19 14:18,"606 7th St, New York City, NY 10001" +265235,USB-C Charging Cable,1,11.95,10/26/19 22:39,"116 Adams St, San Francisco, CA 94016" +265236,AAA Batteries (4-pack),3,2.99,10/21/19 08:32,"250 Lake St, Boston, MA 02215" +265237,AAA Batteries (4-pack),1,2.99,10/07/19 10:57,"468 Jefferson St, New York City, NY 10001" +265238,Apple Airpods Headphones,1,150,10/21/19 20:56,"321 Willow St, Los Angeles, CA 90001" +265239,Bose SoundSport Headphones,1,99.99,10/03/19 09:02,"894 Madison St, Los Angeles, CA 90001" +265240,Wired Headphones,1,11.99,10/28/19 13:33,"225 West St, Seattle, WA 98101" +265241,Apple Airpods Headphones,1,150,10/07/19 10:50,"22 Adams St, New York City, NY 10001" +265242,AAA Batteries (4-pack),1,2.99,10/07/19 11:39,"860 12th St, Los Angeles, CA 90001" +265243,ThinkPad Laptop,1,999.99,10/31/19 22:16,"753 1st St, San Francisco, CA 94016" +265244,Bose SoundSport Headphones,1,99.99,10/23/19 12:34,"610 West St, Austin, TX 73301" +265245,Lightning Charging Cable,1,14.95,10/12/19 15:09,"159 Church St, Boston, MA 02215" +265246,Flatscreen TV,1,300,10/06/19 16:29,"946 Madison St, New York City, NY 10001" +265247,27in 4K Gaming Monitor,1,389.99,10/07/19 14:23,"863 Chestnut St, San Francisco, CA 94016" +265248,AA Batteries (4-pack),1,3.84,10/31/19 01:10,"389 Maple St, Los Angeles, CA 90001" +265249,27in FHD Monitor,1,149.99,10/25/19 23:45,"220 Jackson St, Boston, MA 02215" +265250,Wired Headphones,1,11.99,10/09/19 19:50,"688 14th St, Boston, MA 02215" +265251,Bose SoundSport Headphones,1,99.99,10/01/19 18:00,"167 11th St, New York City, NY 10001" +265252,Bose SoundSport Headphones,1,99.99,10/19/19 15:11,"543 12th St, San Francisco, CA 94016" +265253,iPhone,1,700,10/12/19 10:19,"660 2nd St, Los Angeles, CA 90001" +265254,Wired Headphones,1,11.99,10/22/19 17:23,"558 Church St, Seattle, WA 98101" +265255,Apple Airpods Headphones,1,150,10/02/19 11:32,"515 Center St, New York City, NY 10001" +265256,Lightning Charging Cable,1,14.95,10/03/19 00:21,"185 Forest St, Portland, OR 97035" +265257,Lightning Charging Cable,1,14.95,10/05/19 04:52,"525 7th St, Los Angeles, CA 90001" +265258,USB-C Charging Cable,1,11.95,10/24/19 18:59,"862 Spruce St, Los Angeles, CA 90001" +265259,Wired Headphones,1,11.99,10/09/19 16:21,"574 Lake St, Atlanta, GA 30301" +265260,Lightning Charging Cable,1,14.95,10/16/19 12:41,"467 West St, Atlanta, GA 30301" +265261,AA Batteries (4-pack),1,3.84,10/29/19 17:02,"827 Madison St, San Francisco, CA 94016" +265262,Bose SoundSport Headphones,1,99.99,10/12/19 09:18,"437 6th St, Los Angeles, CA 90001" +265263,Lightning Charging Cable,1,14.95,10/09/19 11:30,"987 Willow St, Boston, MA 02215" +265264,AAA Batteries (4-pack),2,2.99,10/15/19 04:55,"942 Willow St, Portland, OR 97035" +265265,AA Batteries (4-pack),1,3.84,10/09/19 20:03,"289 Highland St, Seattle, WA 98101" +265266,Wired Headphones,1,11.99,10/20/19 23:02,"167 Hill St, San Francisco, CA 94016" +265267,27in 4K Gaming Monitor,1,389.99,10/06/19 02:56,"115 West St, Los Angeles, CA 90001" +265268,iPhone,1,700,10/05/19 15:47,"983 12th St, Atlanta, GA 30301" +265269,Apple Airpods Headphones,1,150,10/21/19 19:45,"126 Adams St, San Francisco, CA 94016" +265270,USB-C Charging Cable,1,11.95,10/02/19 21:37,"574 Elm St, Portland, OR 97035" +265271,AAA Batteries (4-pack),2,2.99,10/02/19 12:52,"574 Hickory St, San Francisco, CA 94016" +265272,Lightning Charging Cable,1,14.95,10/06/19 18:21,"985 11th St, San Francisco, CA 94016" +265273,AA Batteries (4-pack),2,3.84,10/31/19 10:52,"108 7th St, New York City, NY 10001" +265273,iPhone,1,700,10/31/19 10:52,"108 7th St, New York City, NY 10001" +265274,USB-C Charging Cable,1,11.95,10/16/19 12:11,"986 Lincoln St, New York City, NY 10001" +265275,Bose SoundSport Headphones,1,99.99,10/01/19 10:39,"821 8th St, San Francisco, CA 94016" +265276,Wired Headphones,1,11.99,10/12/19 09:03,"419 Church St, Dallas, TX 75001" +265277,AAA Batteries (4-pack),1,2.99,10/22/19 08:50,"161 Church St, New York City, NY 10001" +265277,Google Phone,1,600,10/22/19 08:50,"161 Church St, New York City, NY 10001" +265278,Lightning Charging Cable,1,14.95,10/13/19 21:41,"130 4th St, Seattle, WA 98101" +265279,Flatscreen TV,1,300,10/08/19 06:51,"830 Pine St, New York City, NY 10001" +265280,27in 4K Gaming Monitor,1,389.99,10/09/19 11:36,"535 Forest St, Los Angeles, CA 90001" +265281,AA Batteries (4-pack),2,3.84,10/31/19 07:24,"312 North St, San Francisco, CA 94016" +265282,27in FHD Monitor,1,149.99,10/03/19 17:32,"865 8th St, Boston, MA 02215" +265283,Flatscreen TV,1,300,10/27/19 13:49,"842 13th St, San Francisco, CA 94016" +265284,Lightning Charging Cable,2,14.95,10/11/19 12:36,"584 1st St, Los Angeles, CA 90001" +265285,AA Batteries (4-pack),1,3.84,10/02/19 14:49,"913 Elm St, Boston, MA 02215" +265286,Apple Airpods Headphones,1,150,10/08/19 18:15,"919 Forest St, New York City, NY 10001" +265287,AAA Batteries (4-pack),1,2.99,10/17/19 20:11,"580 Jefferson St, San Francisco, CA 94016" +265288,34in Ultrawide Monitor,1,379.99,10/12/19 07:22,"930 Adams St, Boston, MA 02215" +265289,USB-C Charging Cable,1,11.95,10/08/19 17:33,"694 6th St, San Francisco, CA 94016" +265290,Wired Headphones,1,11.99,10/23/19 18:57,"811 6th St, Seattle, WA 98101" +265291,Lightning Charging Cable,1,14.95,10/03/19 00:11,"591 Cherry St, Los Angeles, CA 90001" +265292,Wired Headphones,1,11.99,10/16/19 21:11,"351 Jackson St, New York City, NY 10001" +265293,Google Phone,1,600,10/17/19 17:39,"393 South St, Los Angeles, CA 90001" +265293,USB-C Charging Cable,1,11.95,10/17/19 17:39,"393 South St, Los Angeles, CA 90001" +265294,Wired Headphones,1,11.99,10/15/19 17:48,"672 Lincoln St, San Francisco, CA 94016" +265295,20in Monitor,1,109.99,10/06/19 17:11,"388 Hill St, Atlanta, GA 30301" +265296,AAA Batteries (4-pack),1,2.99,10/15/19 14:33,"307 Spruce St, Portland, OR 97035" +265297,AA Batteries (4-pack),1,3.84,10/19/19 18:30,"844 12th St, Austin, TX 73301" +265298,USB-C Charging Cable,1,11.95,10/17/19 02:20,"655 14th St, Seattle, WA 98101" +265299,AAA Batteries (4-pack),2,2.99,10/07/19 00:18,"627 Ridge St, Los Angeles, CA 90001" +265300,Bose SoundSport Headphones,1,99.99,10/19/19 15:42,"827 1st St, New York City, NY 10001" +265301,USB-C Charging Cable,1,11.95,10/06/19 17:28,"100 11th St, Los Angeles, CA 90001" +265302,Bose SoundSport Headphones,1,99.99,10/29/19 17:30,"548 Johnson St, New York City, NY 10001" +265303,Bose SoundSport Headphones,1,99.99,10/06/19 07:55,"130 Park St, San Francisco, CA 94016" +265304,Apple Airpods Headphones,1,150,10/30/19 08:23,"892 Walnut St, Los Angeles, CA 90001" +265305,AAA Batteries (4-pack),2,2.99,10/29/19 11:37,"316 Willow St, New York City, NY 10001" +265306,34in Ultrawide Monitor,1,379.99,10/11/19 21:59,"430 Jackson St, Austin, TX 73301" +265307,USB-C Charging Cable,1,11.95,10/21/19 20:54,"268 Ridge St, Dallas, TX 75001" +265308,AAA Batteries (4-pack),1,2.99,10/11/19 19:29,"224 7th St, Boston, MA 02215" +265309,AA Batteries (4-pack),2,3.84,10/19/19 14:50,"185 Chestnut St, Los Angeles, CA 90001" +265310,Wired Headphones,1,11.99,10/18/19 20:27,"763 Madison St, San Francisco, CA 94016" +265311,Wired Headphones,1,11.99,10/01/19 19:41,"872 12th St, New York City, NY 10001" +265312,Apple Airpods Headphones,1,150,10/05/19 16:44,"86 Elm St, Los Angeles, CA 90001" +265313,Lightning Charging Cable,1,14.95,10/15/19 14:48,"834 Walnut St, Boston, MA 02215" +265314,27in 4K Gaming Monitor,1,389.99,10/02/19 18:23,"179 Johnson St, Seattle, WA 98101" +265315,LG Washing Machine,1,600.0,10/20/19 08:47,"310 Washington St, New York City, NY 10001" +265316,ThinkPad Laptop,1,999.99,10/16/19 07:19,"203 Highland St, Dallas, TX 75001" +265317,Lightning Charging Cable,1,14.95,10/30/19 07:55,"859 Lakeview St, Seattle, WA 98101" +265318,Lightning Charging Cable,1,14.95,10/01/19 13:45,"110 14th St, San Francisco, CA 94016" +265319,27in FHD Monitor,2,149.99,10/10/19 10:31,"749 Meadow St, Los Angeles, CA 90001" +265320,34in Ultrawide Monitor,1,379.99,10/31/19 21:34,"334 Johnson St, Seattle, WA 98101" +265321,iPhone,1,700,10/17/19 08:05,"328 Elm St, Los Angeles, CA 90001" +265322,iPhone,1,700,10/04/19 20:22,"17 10th St, San Francisco, CA 94016" +265323,Google Phone,1,600,10/05/19 14:08,"914 Jackson St, San Francisco, CA 94016" +265324,AA Batteries (4-pack),1,3.84,10/04/19 07:27,"36 Chestnut St, Seattle, WA 98101" +265325,Wired Headphones,1,11.99,10/29/19 10:35,"665 11th St, Los Angeles, CA 90001" +265326,Lightning Charging Cable,1,14.95,10/12/19 13:18,"655 Jefferson St, Austin, TX 73301" +265326,Google Phone,1,600,10/12/19 13:18,"655 Jefferson St, Austin, TX 73301" +265327,iPhone,1,700,10/13/19 21:08,"560 Spruce St, Los Angeles, CA 90001" +265328,AA Batteries (4-pack),1,3.84,10/07/19 16:17,"880 Center St, Boston, MA 02215" +265329,Apple Airpods Headphones,1,150,10/09/19 11:24,"433 Adams St, Austin, TX 73301" +265330,USB-C Charging Cable,1,11.95,10/18/19 11:20,"474 Wilson St, New York City, NY 10001" +265331,Lightning Charging Cable,1,14.95,10/31/19 21:40,"641 Cedar St, Dallas, TX 75001" +265332,Lightning Charging Cable,1,14.95,10/24/19 11:39,"802 Johnson St, San Francisco, CA 94016" +265333,Lightning Charging Cable,1,14.95,10/02/19 10:51,"366 Hill St, San Francisco, CA 94016" +265334,ThinkPad Laptop,1,999.99,10/23/19 19:41,"51 9th St, Portland, ME 04101" +265335,Lightning Charging Cable,1,14.95,10/01/19 18:35,"251 Lincoln St, Austin, TX 73301" +265336,27in FHD Monitor,1,149.99,10/11/19 09:53,"281 Hill St, San Francisco, CA 94016" +265337,Lightning Charging Cable,1,14.95,10/01/19 10:22,"767 River St, New York City, NY 10001" +265338,Lightning Charging Cable,1,14.95,10/02/19 10:56,"752 8th St, Atlanta, GA 30301" +265339,Apple Airpods Headphones,1,150,10/31/19 17:28,"94 Dogwood St, San Francisco, CA 94016" +265340,20in Monitor,1,109.99,10/01/19 22:40,"199 Elm St, San Francisco, CA 94016" +265341,Lightning Charging Cable,1,14.95,10/30/19 10:32,"175 5th St, Dallas, TX 75001" +265342,Lightning Charging Cable,1,14.95,10/11/19 14:33,"23 Hill St, San Francisco, CA 94016" +265343,Lightning Charging Cable,1,14.95,10/23/19 21:11,"415 Sunset St, New York City, NY 10001" +265344,Bose SoundSport Headphones,1,99.99,10/21/19 13:00,"938 Ridge St, Los Angeles, CA 90001" +265345,USB-C Charging Cable,1,11.95,10/29/19 16:33,"137 Chestnut St, Los Angeles, CA 90001" +265346,Lightning Charging Cable,1,14.95,10/11/19 23:22,"369 Lakeview St, San Francisco, CA 94016" +265347,Lightning Charging Cable,1,14.95,10/11/19 15:10,"672 5th St, Seattle, WA 98101" +265348,Wired Headphones,1,11.99,10/19/19 21:12,"264 Ridge St, San Francisco, CA 94016" +265349,Apple Airpods Headphones,1,150,10/25/19 18:22,"462 Johnson St, San Francisco, CA 94016" +265350,USB-C Charging Cable,2,11.95,10/04/19 01:54,"144 Pine St, Atlanta, GA 30301" +265351,USB-C Charging Cable,1,11.95,10/14/19 00:15,"448 9th St, Austin, TX 73301" +265352,Bose SoundSport Headphones,1,99.99,10/23/19 12:11,"392 Pine St, Dallas, TX 75001" +265353,Apple Airpods Headphones,1,150,10/15/19 12:26,"151 6th St, New York City, NY 10001" +265354,Bose SoundSport Headphones,1,99.99,10/16/19 17:45,"906 Lakeview St, Los Angeles, CA 90001" +265355,Lightning Charging Cable,1,14.95,10/24/19 20:05,"329 West St, San Francisco, CA 94016" +265355,AAA Batteries (4-pack),1,2.99,10/24/19 20:05,"329 West St, San Francisco, CA 94016" +265356,Vareebadd Phone,1,400,10/19/19 15:49,"933 9th St, Austin, TX 73301" +265357,USB-C Charging Cable,1,11.95,10/05/19 18:29,"888 Jackson St, Austin, TX 73301" +265358,AA Batteries (4-pack),2,3.84,10/09/19 08:50,"164 West St, New York City, NY 10001" +265359,USB-C Charging Cable,1,11.95,10/20/19 12:43,"745 6th St, San Francisco, CA 94016" +265360,AAA Batteries (4-pack),1,2.99,10/24/19 07:20,"651 8th St, Boston, MA 02215" +265361,USB-C Charging Cable,1,11.95,10/05/19 21:14,"437 Wilson St, San Francisco, CA 94016" +265362,Wired Headphones,1,11.99,10/08/19 15:22,"537 Lincoln St, Seattle, WA 98101" +265363,27in FHD Monitor,1,149.99,10/21/19 22:51,"456 10th St, Austin, TX 73301" +265364,USB-C Charging Cable,1,11.95,10/16/19 12:34,"401 Center St, Dallas, TX 75001" +265365,USB-C Charging Cable,1,11.95,10/12/19 18:52,"2 Spruce St, New York City, NY 10001" +265366,Apple Airpods Headphones,1,150,10/29/19 14:39,"275 6th St, Boston, MA 02215" +265367,Bose SoundSport Headphones,1,99.99,10/31/19 12:50,"831 Dogwood St, San Francisco, CA 94016" +265368,AAA Batteries (4-pack),2,2.99,10/28/19 09:29,"358 Madison St, New York City, NY 10001" +265369,Google Phone,1,600,10/31/19 22:56,"432 13th St, Seattle, WA 98101" +265369,USB-C Charging Cable,2,11.95,10/31/19 22:56,"432 13th St, Seattle, WA 98101" +265370,USB-C Charging Cable,1,11.95,10/19/19 18:44,"194 Adams St, San Francisco, CA 94016" +265371,Lightning Charging Cable,1,14.95,10/30/19 13:27,"276 Meadow St, San Francisco, CA 94016" +265372,AAA Batteries (4-pack),5,2.99,10/25/19 10:10,"286 West St, Seattle, WA 98101" +265373,20in Monitor,1,109.99,10/15/19 10:13,"502 Jefferson St, San Francisco, CA 94016" +265374,AAA Batteries (4-pack),2,2.99,10/24/19 09:16,"701 13th St, San Francisco, CA 94016" +265375,34in Ultrawide Monitor,1,379.99,10/30/19 13:52,"260 Adams St, San Francisco, CA 94016" +265376,Flatscreen TV,1,300,10/01/19 22:20,"863 Spruce St, Seattle, WA 98101" +265377,Lightning Charging Cable,1,14.95,10/19/19 12:45,"606 7th St, Austin, TX 73301" +265378,AA Batteries (4-pack),1,3.84,10/20/19 22:57,"613 Highland St, San Francisco, CA 94016" +265379,AA Batteries (4-pack),1,3.84,10/09/19 18:49,"796 1st St, Los Angeles, CA 90001" +265380,iPhone,1,700,10/24/19 11:51,"641 1st St, Atlanta, GA 30301" +265381,USB-C Charging Cable,1,11.95,10/24/19 16:58,"394 Lincoln St, New York City, NY 10001" +265382,AAA Batteries (4-pack),1,2.99,10/25/19 16:11,"214 1st St, Seattle, WA 98101" +265383,Lightning Charging Cable,1,14.95,10/05/19 09:00,"813 6th St, New York City, NY 10001" +265384,Bose SoundSport Headphones,1,99.99,10/20/19 22:55,"803 Highland St, San Francisco, CA 94016" +265385,27in FHD Monitor,1,149.99,10/20/19 16:08,"216 Maple St, San Francisco, CA 94016" +265386,AA Batteries (4-pack),1,3.84,10/11/19 11:44,"117 Washington St, Boston, MA 02215" +265387,Lightning Charging Cable,1,14.95,10/31/19 00:29,"341 4th St, Los Angeles, CA 90001" +265388,Lightning Charging Cable,1,14.95,10/19/19 09:02,"996 Forest St, New York City, NY 10001" +265389,34in Ultrawide Monitor,1,379.99,10/24/19 09:37,"777 Jefferson St, San Francisco, CA 94016" +265390,Lightning Charging Cable,1,14.95,10/23/19 08:43,"27 Adams St, Boston, MA 02215" +265391,Wired Headphones,1,11.99,10/09/19 21:26,"152 South St, New York City, NY 10001" +265392,Wired Headphones,1,11.99,10/24/19 01:36,"560 Jefferson St, Los Angeles, CA 90001" +265393,Wired Headphones,2,11.99,10/19/19 15:49,"165 13th St, San Francisco, CA 94016" +265394,Wired Headphones,1,11.99,10/09/19 13:38,"473 Forest St, Atlanta, GA 30301" +265395,Wired Headphones,1,11.99,10/14/19 21:18,"281 Jackson St, San Francisco, CA 94016" +265396,USB-C Charging Cable,1,11.95,10/22/19 19:30,"321 Cherry St, New York City, NY 10001" +265397,27in 4K Gaming Monitor,1,389.99,10/28/19 14:13,"669 7th St, San Francisco, CA 94016" +265398,USB-C Charging Cable,1,11.95,10/18/19 17:55,"830 Jefferson St, San Francisco, CA 94016" +265399,USB-C Charging Cable,1,11.95,10/17/19 16:14,"392 Lake St, New York City, NY 10001" +265400,AA Batteries (4-pack),1,3.84,10/03/19 10:41,"332 Hill St, Seattle, WA 98101" +265401,Bose SoundSport Headphones,1,99.99,10/25/19 23:18,"884 Lakeview St, New York City, NY 10001" +265402,Macbook Pro Laptop,1,1700,10/29/19 22:15,"755 Walnut St, San Francisco, CA 94016" +265403,Wired Headphones,1,11.99,10/31/19 23:41,"649 Elm St, New York City, NY 10001" +265404,Bose SoundSport Headphones,1,99.99,10/27/19 10:58,"294 5th St, Portland, OR 97035" +265405,Wired Headphones,1,11.99,10/31/19 19:44,"870 Main St, San Francisco, CA 94016" +265406,AAA Batteries (4-pack),1,2.99,10/01/19 11:29,"468 Chestnut St, San Francisco, CA 94016" +265407,Bose SoundSport Headphones,1,99.99,10/21/19 22:18,"467 Walnut St, Atlanta, GA 30301" +265408,AA Batteries (4-pack),1,3.84,10/05/19 13:32,"885 West St, San Francisco, CA 94016" +265409,Wired Headphones,1,11.99,10/27/19 15:08,"557 Washington St, Dallas, TX 75001" +265410,Flatscreen TV,1,300,10/05/19 10:53,"39 Dogwood St, Austin, TX 73301" +265411,Google Phone,1,600,10/02/19 08:48,"303 Meadow St, Boston, MA 02215" +265412,AA Batteries (4-pack),1,3.84,10/30/19 13:56,"347 Ridge St, New York City, NY 10001" +265413,ThinkPad Laptop,1,999.99,10/19/19 19:31,"408 11th St, Portland, ME 04101" +265414,AAA Batteries (4-pack),1,2.99,10/08/19 23:07,"530 Cedar St, San Francisco, CA 94016" +265415,Apple Airpods Headphones,1,150,10/31/19 20:18,"487 North St, Boston, MA 02215" +265416,AAA Batteries (4-pack),2,2.99,10/30/19 19:15,"929 14th St, Dallas, TX 75001" +265417,Apple Airpods Headphones,1,150,10/09/19 16:52,"241 1st St, Boston, MA 02215" +265418,AA Batteries (4-pack),1,3.84,10/20/19 13:20,"346 Hill St, San Francisco, CA 94016" +265419,iPhone,1,700,10/18/19 08:06,"861 Cherry St, Los Angeles, CA 90001" +265419,Wired Headphones,1,11.99,10/18/19 08:06,"861 Cherry St, Los Angeles, CA 90001" +265420,Lightning Charging Cable,1,14.95,10/16/19 20:40,"320 Lakeview St, Atlanta, GA 30301" +265421,Bose SoundSport Headphones,1,99.99,10/01/19 09:04,"503 Madison St, New York City, NY 10001" +265422,Wired Headphones,1,11.99,10/18/19 09:23,"985 9th St, Dallas, TX 75001" +265423,27in 4K Gaming Monitor,1,389.99,10/10/19 16:07,"841 1st St, Los Angeles, CA 90001" +265424,Wired Headphones,2,11.99,10/30/19 00:05,"376 Chestnut St, New York City, NY 10001" +265425,Bose SoundSport Headphones,1,99.99,10/04/19 23:07,"590 Center St, Dallas, TX 75001" +265426,Lightning Charging Cable,1,14.95,10/28/19 10:48,"895 Jefferson St, San Francisco, CA 94016" +265427,Macbook Pro Laptop,1,1700,10/23/19 10:32,"464 Sunset St, San Francisco, CA 94016" +265428,Wired Headphones,1,11.99,10/01/19 09:34,"686 5th St, Portland, OR 97035" +265429,AA Batteries (4-pack),1,3.84,10/14/19 07:54,"67 North St, Dallas, TX 75001" +265430,Apple Airpods Headphones,1,150,10/05/19 07:38,"276 Johnson St, Seattle, WA 98101" +265431,27in 4K Gaming Monitor,1,389.99,10/01/19 18:03,"851 Center St, Austin, TX 73301" +265432,Lightning Charging Cable,1,14.95,10/31/19 07:29,"539 8th St, New York City, NY 10001" +265433,Lightning Charging Cable,2,14.95,10/27/19 15:12,"492 14th St, Atlanta, GA 30301" +265434,Apple Airpods Headphones,1,150,10/27/19 11:35,"203 Cedar St, San Francisco, CA 94016" +265435,AA Batteries (4-pack),1,3.84,10/22/19 08:41,"974 West St, Portland, ME 04101" +265436,Wired Headphones,1,11.99,10/10/19 06:16,"549 11th St, Los Angeles, CA 90001" +265437,Macbook Pro Laptop,1,1700,10/26/19 13:39,"79 6th St, San Francisco, CA 94016" +265438,Bose SoundSport Headphones,1,99.99,10/04/19 14:17,"168 Pine St, San Francisco, CA 94016" +265439,27in FHD Monitor,1,149.99,10/03/19 20:46,"200 Wilson St, Los Angeles, CA 90001" +265440,Wired Headphones,1,11.99,10/21/19 11:25,"288 Dogwood St, Seattle, WA 98101" +265441,Google Phone,1,600,10/25/19 12:04,"79 8th St, Seattle, WA 98101" +265442,Bose SoundSport Headphones,1,99.99,10/25/19 10:09,"980 6th St, New York City, NY 10001" +265443,20in Monitor,1,109.99,10/30/19 18:05,"954 Church St, Seattle, WA 98101" +265444,Wired Headphones,1,11.99,10/12/19 11:20,"196 Lake St, Seattle, WA 98101" +265445,Bose SoundSport Headphones,1,99.99,10/16/19 11:51,"915 Hill St, Austin, TX 73301" +265446,27in 4K Gaming Monitor,1,389.99,10/07/19 14:06,"536 Church St, San Francisco, CA 94016" +265447,ThinkPad Laptop,1,999.99,10/22/19 11:51,"563 13th St, New York City, NY 10001" +265448,USB-C Charging Cable,1,11.95,10/06/19 15:59,"33 Main St, New York City, NY 10001" +265449,USB-C Charging Cable,1,11.95,10/21/19 22:42,"81 Forest St, San Francisco, CA 94016" +265450,Lightning Charging Cable,1,14.95,10/07/19 14:27,"161 Hickory St, Dallas, TX 75001" +265451,Apple Airpods Headphones,1,150,10/26/19 12:10,"232 Lakeview St, Los Angeles, CA 90001" +265452,Apple Airpods Headphones,1,150,10/30/19 11:31,"398 Highland St, Austin, TX 73301" +265453,AAA Batteries (4-pack),1,2.99,10/28/19 12:36,"105 Hill St, San Francisco, CA 94016" +265454,AA Batteries (4-pack),1,3.84,10/14/19 11:39,"635 Dogwood St, New York City, NY 10001" +265455,Wired Headphones,1,11.99,10/12/19 04:52,"9 Church St, Atlanta, GA 30301" +265456,27in FHD Monitor,1,149.99,10/04/19 17:06,"974 Highland St, Atlanta, GA 30301" +265457,Wired Headphones,1,11.99,10/27/19 16:07,"508 Adams St, Boston, MA 02215" +265458,Bose SoundSport Headphones,1,99.99,10/20/19 13:59,"662 River St, San Francisco, CA 94016" +265459,AAA Batteries (4-pack),1,2.99,10/13/19 19:09,"418 Cedar St, New York City, NY 10001" +265460,Wired Headphones,1,11.99,10/24/19 08:58,"568 Spruce St, San Francisco, CA 94016" +265461,ThinkPad Laptop,1,999.99,10/14/19 12:16,"903 Lake St, Los Angeles, CA 90001" +265462,Lightning Charging Cable,1,14.95,10/18/19 23:17,"330 Madison St, Los Angeles, CA 90001" +265463,AA Batteries (4-pack),1,3.84,10/03/19 01:37,"486 Chestnut St, Portland, OR 97035" +265464,Apple Airpods Headphones,1,150,10/16/19 14:11,"926 Walnut St, San Francisco, CA 94016" +265465,Wired Headphones,1,11.99,10/29/19 23:35,"397 Willow St, San Francisco, CA 94016" +265466,Google Phone,1,600,10/13/19 11:27,"247 13th St, New York City, NY 10001" +265467,Apple Airpods Headphones,1,150,10/07/19 12:48,"237 14th St, Atlanta, GA 30301" +265468,Vareebadd Phone,1,400,10/31/19 14:15,"271 Ridge St, New York City, NY 10001" +265469,iPhone,1,700,10/24/19 07:39,"57 Church St, Los Angeles, CA 90001" +265470,Apple Airpods Headphones,1,150,10/09/19 09:09,"80 Elm St, Seattle, WA 98101" +265471,Bose SoundSport Headphones,1,99.99,10/10/19 16:49,"754 Jackson St, Atlanta, GA 30301" +265472,Apple Airpods Headphones,1,150,10/16/19 05:20,"867 Church St, Los Angeles, CA 90001" +265473,ThinkPad Laptop,1,999.99,10/23/19 12:45,"765 South St, Dallas, TX 75001" +265474,27in FHD Monitor,1,149.99,10/30/19 18:50,"765 4th St, Portland, ME 04101" +265475,Lightning Charging Cable,2,14.95,10/19/19 22:08,"476 Jefferson St, Dallas, TX 75001" +265476,27in FHD Monitor,1,149.99,10/06/19 23:21,"580 Church St, Los Angeles, CA 90001" +265477,Apple Airpods Headphones,1,150,10/25/19 17:34,"651 Ridge St, New York City, NY 10001" +265478,Wired Headphones,1,11.99,10/21/19 00:13,"570 6th St, Dallas, TX 75001" +265479,USB-C Charging Cable,1,11.95,11/01/19 01:33,"166 West St, San Francisco, CA 94016" +265480,AA Batteries (4-pack),1,3.84,10/15/19 19:37,"257 7th St, New York City, NY 10001" +265481,Macbook Pro Laptop,1,1700,10/07/19 15:19,"788 Hill St, Los Angeles, CA 90001" +265482,Google Phone,1,600,10/06/19 13:25,"990 Madison St, Seattle, WA 98101" +265482,USB-C Charging Cable,1,11.95,10/06/19 13:25,"990 Madison St, Seattle, WA 98101" +265483,Apple Airpods Headphones,1,150,10/21/19 13:31,"221 Hill St, Boston, MA 02215" +265484,34in Ultrawide Monitor,1,379.99,10/19/19 21:51,"568 8th St, Boston, MA 02215" +265485,27in FHD Monitor,1,149.99,10/18/19 13:12,"306 Spruce St, New York City, NY 10001" +265486,AA Batteries (4-pack),1,3.84,10/10/19 18:46,"162 12th St, New York City, NY 10001" +265487,USB-C Charging Cable,1,11.95,10/08/19 03:09,"791 6th St, Los Angeles, CA 90001" +265488,USB-C Charging Cable,1,11.95,10/14/19 13:43,"284 4th St, Los Angeles, CA 90001" +265489,AA Batteries (4-pack),1,3.84,10/11/19 01:38,"241 Maple St, Los Angeles, CA 90001" +265490,Lightning Charging Cable,1,14.95,10/26/19 10:12,"824 Elm St, Los Angeles, CA 90001" +265491,Bose SoundSport Headphones,1,99.99,10/10/19 08:00,"712 Spruce St, San Francisco, CA 94016" +265492,AAA Batteries (4-pack),1,2.99,10/18/19 18:13,"460 Dogwood St, Portland, OR 97035" +265493,Lightning Charging Cable,1,14.95,10/31/19 22:55,"276 Center St, Los Angeles, CA 90001" +265494,AA Batteries (4-pack),1,3.84,10/30/19 12:28,"388 7th St, Boston, MA 02215" +265495,Google Phone,1,600,10/13/19 10:46,"104 Walnut St, Boston, MA 02215" +265496,Apple Airpods Headphones,1,150,10/10/19 20:18,"614 Wilson St, Boston, MA 02215" +265497,USB-C Charging Cable,2,11.95,10/08/19 20:12,"348 Main St, Portland, OR 97035" +265498,Wired Headphones,1,11.99,10/14/19 08:05,"912 Washington St, Austin, TX 73301" +265499,34in Ultrawide Monitor,1,379.99,10/17/19 12:57,"2 Walnut St, Los Angeles, CA 90001" +265500,Lightning Charging Cable,1,14.95,10/05/19 16:58,"277 10th St, Boston, MA 02215" +265501,USB-C Charging Cable,1,11.95,10/25/19 16:53,"140 Church St, Atlanta, GA 30301" +265502,AAA Batteries (4-pack),1,2.99,10/12/19 13:59,"125 Main St, San Francisco, CA 94016" +265503,AA Batteries (4-pack),2,3.84,10/28/19 17:37,"81 Ridge St, Boston, MA 02215" +265504,ThinkPad Laptop,1,999.99,10/18/19 16:15,"800 Lincoln St, San Francisco, CA 94016" +265505,ThinkPad Laptop,1,999.99,10/09/19 21:34,"949 9th St, Austin, TX 73301" +265506,USB-C Charging Cable,1,11.95,10/07/19 16:12,"993 Cherry St, Atlanta, GA 30301" +265507,AAA Batteries (4-pack),1,2.99,10/24/19 07:18,"231 4th St, Los Angeles, CA 90001" +265508,34in Ultrawide Monitor,1,379.99,10/13/19 19:10,"984 10th St, Atlanta, GA 30301" +265509,USB-C Charging Cable,1,11.95,10/22/19 16:47,"812 2nd St, New York City, NY 10001" +265510,USB-C Charging Cable,1,11.95,10/22/19 12:42,"633 Wilson St, San Francisco, CA 94016" +265511,USB-C Charging Cable,1,11.95,10/11/19 16:13,"563 Highland St, New York City, NY 10001" +265512,AA Batteries (4-pack),2,3.84,10/13/19 17:24,"208 Lincoln St, Austin, TX 73301" +265513,Google Phone,1,600,10/15/19 12:54,"281 4th St, San Francisco, CA 94016" +265513,USB-C Charging Cable,1,11.95,10/15/19 12:54,"281 4th St, San Francisco, CA 94016" +265513,27in 4K Gaming Monitor,1,389.99,10/15/19 12:54,"281 4th St, San Francisco, CA 94016" +265514,Wired Headphones,1,11.99,10/14/19 16:53,"784 Center St, San Francisco, CA 94016" +265515,Lightning Charging Cable,1,14.95,10/29/19 17:19,"755 11th St, Portland, OR 97035" +265516,Wired Headphones,1,11.99,10/14/19 22:26,"11 Wilson St, Portland, ME 04101" +265517,AA Batteries (4-pack),1,3.84,10/17/19 05:15,"774 Lincoln St, Dallas, TX 75001" +265518,AAA Batteries (4-pack),1,2.99,10/24/19 23:55,"806 9th St, Boston, MA 02215" +265519,27in FHD Monitor,1,149.99,10/19/19 13:57,"312 7th St, New York City, NY 10001" +265520,AAA Batteries (4-pack),1,2.99,10/18/19 02:57,"239 Main St, Portland, OR 97035" +265521,Wired Headphones,1,11.99,10/14/19 13:11,"386 North St, Boston, MA 02215" +265522,Vareebadd Phone,1,400,10/26/19 10:23,"84 Park St, Portland, OR 97035" +265523,iPhone,1,700,10/29/19 10:35,"518 Meadow St, New York City, NY 10001" +265524,Macbook Pro Laptop,1,1700,10/01/19 19:24,"97 Center St, San Francisco, CA 94016" +265525,Bose SoundSport Headphones,1,99.99,10/02/19 23:58,"973 Center St, Dallas, TX 75001" +265526,Wired Headphones,1,11.99,10/01/19 07:40,"92 West St, Dallas, TX 75001" +265527,Wired Headphones,1,11.99,10/03/19 20:29,"811 North St, Boston, MA 02215" +265528,USB-C Charging Cable,1,11.95,10/17/19 20:55,"676 Willow St, Boston, MA 02215" +265529,Apple Airpods Headphones,1,150,10/07/19 18:55,"492 Adams St, Portland, OR 97035" +265530,Apple Airpods Headphones,1,150,10/03/19 20:35,"743 Johnson St, Dallas, TX 75001" +265531,iPhone,1,700,10/16/19 20:41,"545 Pine St, Portland, OR 97035" +265532,27in FHD Monitor,1,149.99,10/10/19 13:05,"744 Park St, New York City, NY 10001" +265533,34in Ultrawide Monitor,1,379.99,10/08/19 12:25,"967 7th St, San Francisco, CA 94016" +265534,Bose SoundSport Headphones,1,99.99,10/03/19 20:23,"306 Chestnut St, San Francisco, CA 94016" +265535,iPhone,1,700,10/13/19 16:49,"168 Highland St, New York City, NY 10001" +265536,34in Ultrawide Monitor,1,379.99,10/03/19 13:09,"312 Lincoln St, Los Angeles, CA 90001" +265537,Apple Airpods Headphones,1,150,10/14/19 13:23,"387 Lincoln St, Atlanta, GA 30301" +265538,Wired Headphones,1,11.99,10/08/19 10:57,"197 Sunset St, Los Angeles, CA 90001" +265539,20in Monitor,1,109.99,10/24/19 21:07,"681 Cedar St, Atlanta, GA 30301" +265540,AAA Batteries (4-pack),3,2.99,10/19/19 20:34,"157 Center St, Seattle, WA 98101" +265541,34in Ultrawide Monitor,1,379.99,10/04/19 04:14,"515 Hill St, San Francisco, CA 94016" +265542,27in FHD Monitor,1,149.99,10/25/19 14:00,"176 Jefferson St, Seattle, WA 98101" +265543,Wired Headphones,1,11.99,10/05/19 19:24,"978 Meadow St, Portland, OR 97035" +265544,Bose SoundSport Headphones,1,99.99,10/06/19 12:10,"696 Willow St, New York City, NY 10001" +265545,Wired Headphones,1,11.99,10/24/19 01:32,"827 Jefferson St, San Francisco, CA 94016" +265546,Lightning Charging Cable,1,14.95,10/23/19 17:26,"796 2nd St, Boston, MA 02215" +265547,Apple Airpods Headphones,1,150,10/25/19 15:24,"960 Main St, New York City, NY 10001" +265548,27in 4K Gaming Monitor,1,389.99,10/30/19 17:27,"572 11th St, Atlanta, GA 30301" +265549,Lightning Charging Cable,1,14.95,10/25/19 14:46,"451 South St, Portland, ME 04101" +265550,Wired Headphones,1,11.99,10/22/19 14:51,"872 Cherry St, Portland, ME 04101" +265551,Bose SoundSport Headphones,1,99.99,10/11/19 17:41,"293 Spruce St, Boston, MA 02215" +265552,AAA Batteries (4-pack),1,2.99,10/04/19 13:22,"183 Lakeview St, San Francisco, CA 94016" +265553,Lightning Charging Cable,1,14.95,10/24/19 10:08,"847 5th St, New York City, NY 10001" +265554,USB-C Charging Cable,1,11.95,10/04/19 15:45,"177 Lincoln St, New York City, NY 10001" +265555,Wired Headphones,1,11.99,10/20/19 19:52,"191 Elm St, Los Angeles, CA 90001" +265556,Lightning Charging Cable,1,14.95,10/21/19 09:49,"462 Johnson St, Boston, MA 02215" +265557,Macbook Pro Laptop,1,1700,10/04/19 13:49,"574 Meadow St, San Francisco, CA 94016" +265558,27in FHD Monitor,1,149.99,10/18/19 00:34,"909 Hill St, Boston, MA 02215" +265559,Wired Headphones,2,11.99,10/25/19 11:12,"437 Hickory St, Los Angeles, CA 90001" +265560,USB-C Charging Cable,1,11.95,10/28/19 00:36,"711 5th St, Dallas, TX 75001" +265561,Bose SoundSport Headphones,1,99.99,10/19/19 14:37,"674 Wilson St, New York City, NY 10001" +265562,Apple Airpods Headphones,1,150,10/06/19 13:33,"118 Park St, San Francisco, CA 94016" +265563,AA Batteries (4-pack),1,3.84,10/29/19 11:36,"563 Jackson St, San Francisco, CA 94016" +265564,Flatscreen TV,1,300,10/06/19 21:03,"131 Madison St, Los Angeles, CA 90001" +265565,27in 4K Gaming Monitor,1,389.99,10/07/19 18:54,"535 River St, Boston, MA 02215" +265566,Lightning Charging Cable,1,14.95,10/03/19 08:41,"376 Jefferson St, Seattle, WA 98101" +265567,iPhone,1,700,10/17/19 23:50,"346 6th St, San Francisco, CA 94016" +265568,USB-C Charging Cable,2,11.95,10/11/19 21:20,"831 Lake St, San Francisco, CA 94016" +265569,USB-C Charging Cable,1,11.95,10/19/19 21:06,"699 6th St, San Francisco, CA 94016" +265570,Bose SoundSport Headphones,1,99.99,10/08/19 07:33,"94 Jefferson St, San Francisco, CA 94016" +265571,AAA Batteries (4-pack),1,2.99,10/17/19 10:45,"461 4th St, New York City, NY 10001" +265572,USB-C Charging Cable,1,11.95,10/05/19 06:10,"602 4th St, San Francisco, CA 94016" +265573,USB-C Charging Cable,1,11.95,10/21/19 15:43,"523 Church St, Seattle, WA 98101" +265574,AA Batteries (4-pack),2,3.84,10/07/19 17:26,"437 Elm St, San Francisco, CA 94016" +265575,AAA Batteries (4-pack),1,2.99,10/04/19 16:49,"51 Chestnut St, Atlanta, GA 30301" +265576,Lightning Charging Cable,1,14.95,10/26/19 17:25,"18 Willow St, Los Angeles, CA 90001" +265577,Lightning Charging Cable,1,14.95,10/11/19 21:54,"344 5th St, Portland, OR 97035" +265578,Flatscreen TV,1,300,10/22/19 19:50,"377 Madison St, Los Angeles, CA 90001" +265579,Apple Airpods Headphones,1,150,10/23/19 18:59,"514 Sunset St, Los Angeles, CA 90001" +265580,Macbook Pro Laptop,1,1700,10/02/19 08:43,"458 5th St, Los Angeles, CA 90001" +265581,Wired Headphones,1,11.99,10/27/19 20:55,"838 Highland St, Dallas, TX 75001" +265582,Wired Headphones,1,11.99,10/26/19 13:22,"608 Willow St, Boston, MA 02215" +265583,Apple Airpods Headphones,1,150,10/24/19 11:11,"349 Jackson St, San Francisco, CA 94016" +265584,Flatscreen TV,1,300,10/24/19 15:29,"990 Jackson St, New York City, NY 10001" +265585,Lightning Charging Cable,1,14.95,10/01/19 11:09,"977 Madison St, Seattle, WA 98101" +265586,ThinkPad Laptop,1,999.99,10/26/19 16:46,"796 Willow St, Los Angeles, CA 90001" +265587,Bose SoundSport Headphones,1,99.99,10/17/19 13:02,"136 Sunset St, Austin, TX 73301" +265588,Bose SoundSport Headphones,1,99.99,10/05/19 19:57,"638 4th St, Atlanta, GA 30301" +265589,Bose SoundSport Headphones,1,99.99,10/27/19 09:45,"864 Forest St, Los Angeles, CA 90001" +265590,AAA Batteries (4-pack),1,2.99,10/23/19 20:46,"869 Johnson St, New York City, NY 10001" +265591,Lightning Charging Cable,1,14.95,10/27/19 09:30,"559 Spruce St, San Francisco, CA 94016" +265592,AAA Batteries (4-pack),1,2.99,10/01/19 13:37,"135 Center St, San Francisco, CA 94016" +265593,AAA Batteries (4-pack),1,2.99,10/29/19 20:30,"422 Willow St, New York City, NY 10001" +265594,Lightning Charging Cable,1,14.95,10/13/19 08:12,"875 Highland St, Atlanta, GA 30301" +265595,Google Phone,1,600,10/20/19 18:29,"848 12th St, Seattle, WA 98101" +265596,Apple Airpods Headphones,1,150,10/23/19 22:05,"70 11th St, New York City, NY 10001" +265597,Wired Headphones,1,11.99,10/23/19 19:28,"517 Lake St, Austin, TX 73301" +265598,Lightning Charging Cable,1,14.95,10/16/19 18:55,"818 Willow St, San Francisco, CA 94016" +265599,USB-C Charging Cable,1,11.95,10/08/19 20:00,"283 Pine St, New York City, NY 10001" +265600,AA Batteries (4-pack),1,3.84,10/11/19 10:31,"679 7th St, New York City, NY 10001" +265601,27in FHD Monitor,1,149.99,10/29/19 22:46,"50 Jefferson St, Boston, MA 02215" +265602,AAA Batteries (4-pack),1,2.99,10/10/19 17:13,"960 Cherry St, Austin, TX 73301" +265603,iPhone,1,700,10/18/19 11:50,"822 Park St, Los Angeles, CA 90001" +265603,Apple Airpods Headphones,1,150,10/18/19 11:50,"822 Park St, Los Angeles, CA 90001" +265604,27in FHD Monitor,1,149.99,10/02/19 18:32,"839 Wilson St, Los Angeles, CA 90001" +265605,Vareebadd Phone,1,400,10/24/19 20:26,"523 Elm St, New York City, NY 10001" +265606,AAA Batteries (4-pack),5,2.99,10/02/19 12:35,"704 West St, San Francisco, CA 94016" +265607,Bose SoundSport Headphones,1,99.99,10/01/19 10:16,"491 Washington St, Los Angeles, CA 90001" +265608,Bose SoundSport Headphones,1,99.99,10/25/19 16:15,"431 West St, Boston, MA 02215" +265608,27in FHD Monitor,1,149.99,10/25/19 16:15,"431 West St, Boston, MA 02215" +265609,Apple Airpods Headphones,1,150,10/29/19 23:28,"774 Lakeview St, San Francisco, CA 94016" +265610,AAA Batteries (4-pack),1,2.99,10/04/19 11:32,"165 Maple St, Los Angeles, CA 90001" +265611,AA Batteries (4-pack),2,3.84,10/11/19 20:07,"877 2nd St, Dallas, TX 75001" +265612,Macbook Pro Laptop,1,1700,10/09/19 22:56,"776 Cherry St, Boston, MA 02215" +265613,iPhone,1,700,10/19/19 18:59,"92 Church St, San Francisco, CA 94016" +265614,AA Batteries (4-pack),2,3.84,10/16/19 09:51,"987 Jackson St, San Francisco, CA 94016" +265615,AAA Batteries (4-pack),3,2.99,10/12/19 20:36,"19 South St, Atlanta, GA 30301" +265616,AAA Batteries (4-pack),1,2.99,10/06/19 18:24,"240 Madison St, New York City, NY 10001" +265617,USB-C Charging Cable,1,11.95,10/24/19 12:16,"423 North St, Dallas, TX 75001" +265617,Apple Airpods Headphones,1,150,10/24/19 12:16,"423 North St, Dallas, TX 75001" +265618,ThinkPad Laptop,1,999.99,10/19/19 12:48,"744 Sunset St, Dallas, TX 75001" +265619,AAA Batteries (4-pack),1,2.99,10/06/19 19:37,"714 River St, Boston, MA 02215" +265620,27in 4K Gaming Monitor,1,389.99,10/06/19 20:32,"845 Willow St, Seattle, WA 98101" +265621,AA Batteries (4-pack),1,3.84,10/18/19 09:15,"536 Forest St, New York City, NY 10001" +265622,Bose SoundSport Headphones,1,99.99,10/24/19 07:12,"596 Meadow St, Austin, TX 73301" +265623,Wired Headphones,1,11.99,10/06/19 19:31,"998 Lake St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +265624,Bose SoundSport Headphones,1,99.99,10/26/19 15:23,"980 11th St, Dallas, TX 75001" +265625,Wired Headphones,1,11.99,10/08/19 20:36,"336 11th St, Los Angeles, CA 90001" +265626,Lightning Charging Cable,1,14.95,10/26/19 20:23,"830 7th St, Portland, OR 97035" +265627,AAA Batteries (4-pack),3,2.99,10/04/19 19:57,"836 7th St, Austin, TX 73301" +265628,20in Monitor,1,109.99,10/01/19 14:37,"919 Hill St, Los Angeles, CA 90001" +265629,Lightning Charging Cable,1,14.95,10/06/19 18:53,"436 Pine St, San Francisco, CA 94016" +265630,Flatscreen TV,1,300,10/25/19 08:32,"517 4th St, Los Angeles, CA 90001" +265631,34in Ultrawide Monitor,1,379.99,10/19/19 21:40,"725 12th St, San Francisco, CA 94016" +265632,iPhone,1,700,10/29/19 10:16,"154 West St, Dallas, TX 75001" +265633,Wired Headphones,1,11.99,10/24/19 23:50,"253 4th St, San Francisco, CA 94016" +265634,AAA Batteries (4-pack),1,2.99,10/25/19 09:22,"714 9th St, Austin, TX 73301" +265635,AA Batteries (4-pack),1,3.84,10/20/19 15:47,"313 Meadow St, New York City, NY 10001" +265636,27in FHD Monitor,1,149.99,10/07/19 23:07,"741 4th St, Boston, MA 02215" +265637,Lightning Charging Cable,1,14.95,10/06/19 10:00,"204 South St, Atlanta, GA 30301" +265638,Apple Airpods Headphones,1,150,10/31/19 20:24,"486 Dogwood St, Atlanta, GA 30301" +265639,Wired Headphones,1,11.99,10/01/19 19:56,"55 11th St, San Francisco, CA 94016" +265640,AA Batteries (4-pack),1,3.84,10/23/19 12:48,"410 Lakeview St, New York City, NY 10001" +265641,Apple Airpods Headphones,1,150,10/27/19 13:03,"74 7th St, Dallas, TX 75001" +265642,Bose SoundSport Headphones,1,99.99,10/15/19 10:01,"366 South St, New York City, NY 10001" +265643,AA Batteries (4-pack),1,3.84,10/06/19 18:23,"53 Spruce St, Boston, MA 02215" +265644,34in Ultrawide Monitor,1,379.99,10/02/19 17:26,"533 South St, San Francisco, CA 94016" +265645,Google Phone,1,600,10/01/19 12:47,"744 Ridge St, New York City, NY 10001" +265646,AAA Batteries (4-pack),2,2.99,10/08/19 04:13,"345 Sunset St, Boston, MA 02215" +265647,Lightning Charging Cable,1,14.95,10/12/19 22:22,"24 Chestnut St, Dallas, TX 75001" +265648,27in FHD Monitor,2,149.99,10/20/19 18:29,"172 12th St, Seattle, WA 98101" +265649,Wired Headphones,1,11.99,10/29/19 21:53,"925 Hickory St, Boston, MA 02215" +265650,AAA Batteries (4-pack),1,2.99,10/09/19 13:48,"104 Meadow St, Los Angeles, CA 90001" +265651,Lightning Charging Cable,1,14.95,10/01/19 11:27,"749 Sunset St, Austin, TX 73301" +265652,27in FHD Monitor,1,149.99,10/29/19 12:54,"122 Park St, Atlanta, GA 30301" +265653,27in FHD Monitor,1,149.99,10/27/19 14:22,"51 Maple St, San Francisco, CA 94016" +265654,AA Batteries (4-pack),1,3.84,10/27/19 10:37,"551 Highland St, Los Angeles, CA 90001" +265655,Lightning Charging Cable,1,14.95,10/27/19 20:18,"384 6th St, Dallas, TX 75001" +265656,USB-C Charging Cable,1,11.95,10/24/19 23:45,"843 11th St, Dallas, TX 75001" +265657,Apple Airpods Headphones,1,150,10/13/19 10:21,"212 Ridge St, San Francisco, CA 94016" +265658,USB-C Charging Cable,1,11.95,10/17/19 12:10,"970 Madison St, Los Angeles, CA 90001" +265659,34in Ultrawide Monitor,1,379.99,10/10/19 10:30,"584 7th St, New York City, NY 10001" +265660,34in Ultrawide Monitor,1,379.99,10/23/19 18:40,"74 Maple St, Los Angeles, CA 90001" +265661,Lightning Charging Cable,1,14.95,10/14/19 15:00,"689 Lincoln St, San Francisco, CA 94016" +265661,Lightning Charging Cable,1,14.95,10/14/19 15:00,"689 Lincoln St, San Francisco, CA 94016" +265662,AA Batteries (4-pack),2,3.84,10/02/19 12:14,"26 2nd St, Dallas, TX 75001" +265663,Google Phone,1,600,10/23/19 22:54,"107 14th St, San Francisco, CA 94016" +265664,AA Batteries (4-pack),1,3.84,10/06/19 19:18,"674 Meadow St, Seattle, WA 98101" +265665,USB-C Charging Cable,1,11.95,10/26/19 21:30,"181 8th St, New York City, NY 10001" +265666,AAA Batteries (4-pack),2,2.99,10/24/19 12:48,"604 Pine St, New York City, NY 10001" +265667,Lightning Charging Cable,1,14.95,10/09/19 17:58,"256 Spruce St, Atlanta, GA 30301" +265668,27in 4K Gaming Monitor,1,389.99,10/01/19 20:29,"727 14th St, Los Angeles, CA 90001" +265668,AA Batteries (4-pack),1,3.84,10/01/19 20:29,"727 14th St, Los Angeles, CA 90001" +265669,iPhone,1,700,10/01/19 11:13,"793 4th St, Atlanta, GA 30301" +265670,ThinkPad Laptop,1,999.99,10/10/19 13:01,"184 Dogwood St, Boston, MA 02215" +265671,34in Ultrawide Monitor,1,379.99,10/22/19 20:10,"503 Elm St, Los Angeles, CA 90001" +265672,27in FHD Monitor,1,149.99,10/16/19 14:24,"805 1st St, Boston, MA 02215" +265673,Lightning Charging Cable,1,14.95,10/19/19 22:10,"99 Willow St, San Francisco, CA 94016" +265674,Lightning Charging Cable,1,14.95,10/24/19 13:50,"830 Pine St, Los Angeles, CA 90001" +265674,Bose SoundSport Headphones,1,99.99,10/24/19 13:50,"830 Pine St, Los Angeles, CA 90001" +265675,Wired Headphones,1,11.99,10/19/19 19:06,"586 Chestnut St, New York City, NY 10001" +265676,USB-C Charging Cable,1,11.95,10/02/19 18:09,"173 Madison St, San Francisco, CA 94016" +265677,USB-C Charging Cable,2,11.95,10/27/19 21:06,"267 7th St, Boston, MA 02215" +265678,Apple Airpods Headphones,1,150,10/25/19 11:14,"921 6th St, Dallas, TX 75001" +265679,Google Phone,1,600,10/27/19 22:36,"117 Forest St, San Francisco, CA 94016" +265680,Macbook Pro Laptop,1,1700,10/15/19 21:21,"74 4th St, Los Angeles, CA 90001" +265681,AAA Batteries (4-pack),1,2.99,10/23/19 14:17,"82 South St, San Francisco, CA 94016" +265682,27in 4K Gaming Monitor,1,389.99,10/26/19 13:17,"321 9th St, New York City, NY 10001" +265683,Lightning Charging Cable,1,14.95,10/23/19 06:10,"252 River St, Austin, TX 73301" +265684,Apple Airpods Headphones,1,150,10/22/19 16:39,"539 Park St, Atlanta, GA 30301" +265685,AA Batteries (4-pack),1,3.84,10/13/19 04:48,"65 2nd St, New York City, NY 10001" +265686,AAA Batteries (4-pack),2,2.99,10/31/19 15:15,"24 Wilson St, San Francisco, CA 94016" +265687,AAA Batteries (4-pack),1,2.99,10/15/19 21:47,"356 Hill St, San Francisco, CA 94016" +265688,27in FHD Monitor,1,149.99,10/10/19 12:58,"38 Dogwood St, Portland, ME 04101" +265689,Bose SoundSport Headphones,1,99.99,10/05/19 19:03,"623 Adams St, San Francisco, CA 94016" +265690,AAA Batteries (4-pack),1,2.99,10/19/19 15:02,"446 Cedar St, San Francisco, CA 94016" +265691,Apple Airpods Headphones,1,150,10/31/19 17:39,"428 Spruce St, San Francisco, CA 94016" +265692,AAA Batteries (4-pack),1,2.99,10/08/19 20:07,"867 Dogwood St, Portland, OR 97035" +265693,Wired Headphones,1,11.99,10/28/19 21:13,"492 11th St, Seattle, WA 98101" +265694,Bose SoundSport Headphones,1,99.99,10/09/19 22:02,"575 North St, Austin, TX 73301" +265695,AA Batteries (4-pack),1,3.84,10/14/19 20:27,"44 7th St, Dallas, TX 75001" +265696,iPhone,1,700,10/15/19 13:22,"608 4th St, New York City, NY 10001" +265697,Vareebadd Phone,1,400,10/15/19 00:19,"719 North St, Los Angeles, CA 90001" +265698,AA Batteries (4-pack),1,3.84,10/12/19 18:48,"66 Sunset St, Seattle, WA 98101" +265699,iPhone,1,700,10/18/19 18:31,"616 Jackson St, San Francisco, CA 94016" +265699,Apple Airpods Headphones,1,150,10/18/19 18:31,"616 Jackson St, San Francisco, CA 94016" +265700,USB-C Charging Cable,2,11.95,10/13/19 12:54,"466 Highland St, Los Angeles, CA 90001" +265701,AA Batteries (4-pack),1,3.84,10/10/19 22:24,"555 Walnut St, Atlanta, GA 30301" +265702,27in 4K Gaming Monitor,1,389.99,10/18/19 23:11,"540 Pine St, San Francisco, CA 94016" +265703,Lightning Charging Cable,1,14.95,10/31/19 10:31,"572 Walnut St, Los Angeles, CA 90001" +265704,27in 4K Gaming Monitor,1,389.99,10/05/19 14:26,"821 10th St, Portland, OR 97035" +265705,Bose SoundSport Headphones,1,99.99,10/15/19 15:36,"910 Dogwood St, San Francisco, CA 94016" +265706,AA Batteries (4-pack),1,3.84,10/21/19 21:29,"247 Park St, New York City, NY 10001" +265707,Wired Headphones,1,11.99,10/05/19 11:52,"811 Spruce St, Dallas, TX 75001" +265708,Google Phone,1,600,10/24/19 20:30,"669 Lake St, Portland, OR 97035" +265709,AAA Batteries (4-pack),2,2.99,10/19/19 12:20,"161 4th St, New York City, NY 10001" +265709,Lightning Charging Cable,1,14.95,10/19/19 12:20,"161 4th St, New York City, NY 10001" +265710,Lightning Charging Cable,1,14.95,10/25/19 20:23,"176 Meadow St, New York City, NY 10001" +265711,Bose SoundSport Headphones,1,99.99,10/03/19 12:57,"10 Jefferson St, San Francisco, CA 94016" +265712,Apple Airpods Headphones,1,150,10/04/19 18:35,"446 6th St, San Francisco, CA 94016" +265713,Lightning Charging Cable,2,14.95,10/31/19 11:26,"639 Willow St, Portland, OR 97035" +265714,AA Batteries (4-pack),1,3.84,10/03/19 13:20,"210 Cherry St, Boston, MA 02215" +265715,Bose SoundSport Headphones,1,99.99,10/13/19 22:46,"658 Hickory St, New York City, NY 10001" +265716,AA Batteries (4-pack),2,3.84,10/07/19 14:30,"679 2nd St, Los Angeles, CA 90001" +265717,27in FHD Monitor,1,149.99,10/04/19 20:21,"607 6th St, Seattle, WA 98101" +265718,27in 4K Gaming Monitor,1,389.99,10/09/19 19:11,"985 9th St, San Francisco, CA 94016" +265719,ThinkPad Laptop,1,999.99,10/07/19 11:10,"221 Dogwood St, San Francisco, CA 94016" +265720,Bose SoundSport Headphones,1,99.99,10/23/19 09:06,"233 Cherry St, Seattle, WA 98101" +265721,USB-C Charging Cable,1,11.95,10/02/19 16:28,"640 Adams St, San Francisco, CA 94016" +265722,Bose SoundSport Headphones,1,99.99,10/28/19 19:06,"48 Lincoln St, Los Angeles, CA 90001" +265723,Bose SoundSport Headphones,1,99.99,10/24/19 19:44,"239 Adams St, San Francisco, CA 94016" +265724,Flatscreen TV,1,300,10/12/19 12:54,"544 Madison St, Boston, MA 02215" +265725,iPhone,1,700,10/03/19 21:23,"75 Cherry St, Los Angeles, CA 90001" +265725,Wired Headphones,1,11.99,10/03/19 21:23,"75 Cherry St, Los Angeles, CA 90001" +265726,Lightning Charging Cable,1,14.95,10/14/19 20:49,"351 River St, San Francisco, CA 94016" +265727,Lightning Charging Cable,1,14.95,10/29/19 00:00,"305 Hickory St, Los Angeles, CA 90001" +265728,Apple Airpods Headphones,1,150,10/20/19 18:14,"640 Center St, Los Angeles, CA 90001" +265729,AA Batteries (4-pack),1,3.84,10/06/19 17:29,"580 Wilson St, Atlanta, GA 30301" +265730,Wired Headphones,1,11.99,10/13/19 18:58,"788 2nd St, Los Angeles, CA 90001" +265731,iPhone,1,700,10/30/19 09:50,"973 Meadow St, Los Angeles, CA 90001" +265731,Wired Headphones,1,11.99,10/30/19 09:50,"973 Meadow St, Los Angeles, CA 90001" +265732,USB-C Charging Cable,1,11.95,10/04/19 09:21,"862 Cherry St, Atlanta, GA 30301" +265733,USB-C Charging Cable,1,11.95,10/16/19 18:15,"727 Spruce St, New York City, NY 10001" +265734,Wired Headphones,1,11.99,10/31/19 19:43,"122 5th St, San Francisco, CA 94016" +265735,34in Ultrawide Monitor,1,379.99,10/31/19 11:43,"859 Forest St, Boston, MA 02215" +265736,AAA Batteries (4-pack),1,2.99,10/23/19 20:11,"868 14th St, Atlanta, GA 30301" +265737,Wired Headphones,1,11.99,10/16/19 06:57,"577 Madison St, Los Angeles, CA 90001" +265738,USB-C Charging Cable,1,11.95,10/13/19 13:56,"932 Elm St, San Francisco, CA 94016" +265739,LG Dryer,1,600.0,10/09/19 09:21,"553 Sunset St, Los Angeles, CA 90001" +265740,34in Ultrawide Monitor,1,379.99,10/22/19 19:59,"804 Park St, Los Angeles, CA 90001" +265741,Lightning Charging Cable,1,14.95,10/17/19 07:15,"480 14th St, San Francisco, CA 94016" +265742,Apple Airpods Headphones,1,150,10/27/19 20:30,"757 Johnson St, New York City, NY 10001" +265743,AA Batteries (4-pack),2,3.84,10/01/19 17:42,"115 Center St, Los Angeles, CA 90001" +265744,Bose SoundSport Headphones,1,99.99,10/26/19 15:26,"476 Dogwood St, Portland, OR 97035" +265745,Macbook Pro Laptop,1,1700,10/07/19 19:05,"313 Lakeview St, New York City, NY 10001" +265746,Bose SoundSport Headphones,1,99.99,10/23/19 14:16,"633 Jefferson St, Atlanta, GA 30301" +265747,Bose SoundSport Headphones,1,99.99,10/29/19 19:27,"205 9th St, San Francisco, CA 94016" +265748,USB-C Charging Cable,1,11.95,10/30/19 08:34,"464 Madison St, San Francisco, CA 94016" +265749,AA Batteries (4-pack),2,3.84,10/02/19 14:47,"333 Sunset St, Boston, MA 02215" +265750,AA Batteries (4-pack),1,3.84,10/25/19 19:41,"955 North St, Atlanta, GA 30301" +265751,Wired Headphones,1,11.99,10/01/19 20:42,"511 Madison St, Los Angeles, CA 90001" +265752,Wired Headphones,1,11.99,10/10/19 17:57,"910 Pine St, Portland, OR 97035" +265753,Wired Headphones,2,11.99,10/02/19 23:09,"986 14th St, New York City, NY 10001" +265754,AA Batteries (4-pack),1,3.84,10/30/19 13:46,"911 13th St, Los Angeles, CA 90001" +265755,LG Washing Machine,1,600.0,10/23/19 21:50,"886 4th St, Atlanta, GA 30301" +265756,Apple Airpods Headphones,1,150,10/30/19 21:35,"123 2nd St, Boston, MA 02215" +265757,Apple Airpods Headphones,1,150,10/02/19 19:18,"447 Park St, New York City, NY 10001" +265758,27in 4K Gaming Monitor,1,389.99,10/28/19 20:15,"447 Lakeview St, San Francisco, CA 94016" +265759,USB-C Charging Cable,1,11.95,10/10/19 14:52,"623 Madison St, Seattle, WA 98101" +265760,27in FHD Monitor,1,149.99,10/18/19 18:48,"524 Johnson St, Austin, TX 73301" +265761,AAA Batteries (4-pack),2,2.99,10/11/19 12:17,"23 Walnut St, New York City, NY 10001" +265762,AAA Batteries (4-pack),1,2.99,10/25/19 21:32,"887 Chestnut St, Portland, ME 04101" +265763,Google Phone,1,600,10/29/19 13:53,"869 Park St, Seattle, WA 98101" +265764,AAA Batteries (4-pack),1,2.99,10/26/19 19:42,"360 Hickory St, Atlanta, GA 30301" +265765,Wired Headphones,2,11.99,10/16/19 13:37,"315 Spruce St, Seattle, WA 98101" +265766,27in 4K Gaming Monitor,1,389.99,10/07/19 21:39,"408 Cedar St, Dallas, TX 75001" +265767,AAA Batteries (4-pack),1,2.99,10/19/19 11:02,"575 Highland St, Los Angeles, CA 90001" +265768,Flatscreen TV,1,300,10/01/19 10:27,"731 Johnson St, Portland, ME 04101" +265769,AAA Batteries (4-pack),1,2.99,10/31/19 16:24,"777 Maple St, Boston, MA 02215" +265770,20in Monitor,1,109.99,10/07/19 08:24,"648 South St, Boston, MA 02215" +265771,Apple Airpods Headphones,1,150,10/28/19 07:59,"250 Pine St, San Francisco, CA 94016" +265772,USB-C Charging Cable,1,11.95,10/14/19 23:18,"930 Park St, Los Angeles, CA 90001" +265773,USB-C Charging Cable,1,11.95,10/17/19 13:49,"538 Hickory St, New York City, NY 10001" +265774,iPhone,1,700,10/08/19 18:50,"980 Washington St, San Francisco, CA 94016" +265775,AAA Batteries (4-pack),1,2.99,10/29/19 14:02,"282 Lincoln St, New York City, NY 10001" +265776,Apple Airpods Headphones,1,150,10/04/19 16:44,"550 Washington St, Boston, MA 02215" +265777,AA Batteries (4-pack),3,3.84,10/12/19 18:18,"470 5th St, San Francisco, CA 94016" +265778,USB-C Charging Cable,1,11.95,10/01/19 16:08,"990 Elm St, San Francisco, CA 94016" +265779,USB-C Charging Cable,1,11.95,10/12/19 12:51,"208 Jackson St, Seattle, WA 98101" +265780,Apple Airpods Headphones,1,150,10/25/19 12:37,"492 West St, San Francisco, CA 94016" +265781,Bose SoundSport Headphones,1,99.99,10/17/19 17:59,"466 2nd St, Portland, OR 97035" +265782,AAA Batteries (4-pack),1,2.99,10/05/19 12:09,"557 6th St, Boston, MA 02215" +265783,AAA Batteries (4-pack),1,2.99,10/17/19 14:57,"928 Center St, Los Angeles, CA 90001" +265784,iPhone,1,700,10/12/19 13:56,"703 12th St, Austin, TX 73301" +265785,Lightning Charging Cable,1,14.95,10/18/19 11:26,"731 Dogwood St, Portland, OR 97035" +265786,Google Phone,1,600,10/13/19 22:00,"195 Main St, New York City, NY 10001" +265787,Wired Headphones,1,11.99,10/19/19 16:23,"628 Hill St, Dallas, TX 75001" +265788,AA Batteries (4-pack),2,3.84,10/13/19 11:38,"705 Cherry St, Seattle, WA 98101" +265789,AAA Batteries (4-pack),1,2.99,10/08/19 14:19,"211 Hickory St, Atlanta, GA 30301" +265790,Lightning Charging Cable,1,14.95,10/25/19 07:37,"720 10th St, Los Angeles, CA 90001" +265791,Flatscreen TV,1,300,10/13/19 21:58,"856 Chestnut St, Portland, OR 97035" +265792,AA Batteries (4-pack),1,3.84,10/23/19 00:47,"280 10th St, New York City, NY 10001" +265793,Wired Headphones,1,11.99,10/10/19 22:47,"360 Chestnut St, Seattle, WA 98101" +265794,AA Batteries (4-pack),2,3.84,10/08/19 18:53,"641 10th St, San Francisco, CA 94016" +265795,Lightning Charging Cable,1,14.95,10/23/19 22:25,"616 Hickory St, San Francisco, CA 94016" +265796,Google Phone,1,600,10/06/19 16:23,"424 North St, Portland, OR 97035" +265797,AAA Batteries (4-pack),2,2.99,10/03/19 08:45,"898 6th St, New York City, NY 10001" +265798,AAA Batteries (4-pack),1,2.99,10/27/19 16:08,"569 Johnson St, San Francisco, CA 94016" +265799,USB-C Charging Cable,2,11.95,10/30/19 20:30,"237 Jackson St, Los Angeles, CA 90001" +265800,Apple Airpods Headphones,1,150,10/12/19 09:51,"822 Adams St, Boston, MA 02215" +265801,Wired Headphones,1,11.99,10/05/19 22:52,"918 Hill St, Dallas, TX 75001" +265802,Wired Headphones,1,11.99,10/20/19 16:31,"571 10th St, Austin, TX 73301" +265803,27in 4K Gaming Monitor,1,389.99,10/30/19 18:01,"615 Park St, San Francisco, CA 94016" +265804,Wired Headphones,1,11.99,10/11/19 02:12,"727 Ridge St, Los Angeles, CA 90001" +265805,Wired Headphones,1,11.99,10/05/19 16:13,"167 South St, San Francisco, CA 94016" +265806,Wired Headphones,1,11.99,10/27/19 21:10,"255 Adams St, Los Angeles, CA 90001" +265807,27in 4K Gaming Monitor,1,389.99,10/17/19 21:33,"355 7th St, San Francisco, CA 94016" +265808,USB-C Charging Cable,1,11.95,10/25/19 15:39,"585 Cedar St, San Francisco, CA 94016" +265809,Wired Headphones,1,11.99,10/08/19 18:05,"583 Chestnut St, Los Angeles, CA 90001" +265810,Lightning Charging Cable,1,14.95,10/27/19 15:47,"323 13th St, New York City, NY 10001" +265811,AA Batteries (4-pack),1,3.84,10/28/19 09:04,"346 Jackson St, San Francisco, CA 94016" +265812,AAA Batteries (4-pack),1,2.99,10/08/19 23:31,"538 Forest St, San Francisco, CA 94016" +265813,AA Batteries (4-pack),1,3.84,10/11/19 20:21,"706 Maple St, Dallas, TX 75001" +265814,USB-C Charging Cable,1,11.95,10/13/19 23:02,"414 10th St, Austin, TX 73301" +265815,Lightning Charging Cable,1,14.95,10/19/19 20:14,"394 14th St, San Francisco, CA 94016" +265816,AA Batteries (4-pack),1,3.84,10/31/19 10:05,"673 5th St, New York City, NY 10001" +265817,AAA Batteries (4-pack),1,2.99,10/22/19 16:09,"828 Spruce St, Atlanta, GA 30301" +265818,AA Batteries (4-pack),1,3.84,10/15/19 16:38,"258 9th St, Dallas, TX 75001" +265819,AA Batteries (4-pack),1,3.84,10/30/19 13:02,"488 Lincoln St, Los Angeles, CA 90001" +265820,AAA Batteries (4-pack),1,2.99,10/21/19 20:50,"668 Lincoln St, Boston, MA 02215" +265821,USB-C Charging Cable,1,11.95,10/25/19 12:26,"332 10th St, Seattle, WA 98101" +265822,USB-C Charging Cable,1,11.95,10/20/19 14:15,"47 Elm St, San Francisco, CA 94016" +265823,Flatscreen TV,1,300,10/07/19 17:06,"775 Forest St, Portland, ME 04101" +265824,Apple Airpods Headphones,1,150,10/17/19 20:25,"170 Walnut St, Portland, OR 97035" +265825,ThinkPad Laptop,1,999.99,10/28/19 16:08,"345 9th St, Atlanta, GA 30301" +265826,Wired Headphones,1,11.99,10/03/19 22:11,"674 Highland St, New York City, NY 10001" +265827,34in Ultrawide Monitor,1,379.99,10/03/19 06:38,"207 Adams St, Los Angeles, CA 90001" +265828,Lightning Charging Cable,1,14.95,10/20/19 13:55,"972 Highland St, San Francisco, CA 94016" +265829,Lightning Charging Cable,1,14.95,10/20/19 10:15,"614 Lincoln St, Atlanta, GA 30301" +265830,Apple Airpods Headphones,1,150,10/12/19 16:59,"906 1st St, Los Angeles, CA 90001" +265831,AAA Batteries (4-pack),1,2.99,10/28/19 13:22,"621 Lakeview St, New York City, NY 10001" +265832,34in Ultrawide Monitor,1,379.99,10/07/19 21:45,"319 Dogwood St, San Francisco, CA 94016" +265833,Apple Airpods Headphones,1,150,10/01/19 09:38,"823 14th St, Los Angeles, CA 90001" +265834,Macbook Pro Laptop,1,1700,10/26/19 13:31,"288 5th St, Boston, MA 02215" +265835,Flatscreen TV,1,300,10/10/19 19:32,"853 Lakeview St, Los Angeles, CA 90001" +265836,USB-C Charging Cable,1,11.95,10/18/19 22:10,"703 Church St, Los Angeles, CA 90001" +265837,AAA Batteries (4-pack),1,2.99,10/16/19 02:05,"678 Wilson St, New York City, NY 10001" +265838,Lightning Charging Cable,1,14.95,10/04/19 13:13,"885 13th St, San Francisco, CA 94016" +265839,iPhone,1,700,10/07/19 21:03,"123 9th St, Los Angeles, CA 90001" +265840,Google Phone,1,600,10/23/19 05:40,"813 North St, New York City, NY 10001" +265840,USB-C Charging Cable,1,11.95,10/23/19 05:40,"813 North St, New York City, NY 10001" +265841,AA Batteries (4-pack),2,3.84,10/14/19 10:35,"401 Cherry St, New York City, NY 10001" +265842,ThinkPad Laptop,1,999.99,10/03/19 13:23,"100 Cedar St, San Francisco, CA 94016" +265843,AAA Batteries (4-pack),1,2.99,10/09/19 19:57,"106 Meadow St, Seattle, WA 98101" +265844,34in Ultrawide Monitor,1,379.99,10/24/19 21:27,"132 Church St, New York City, NY 10001" +265845,34in Ultrawide Monitor,1,379.99,10/18/19 16:38,"360 Johnson St, Austin, TX 73301" +265846,Bose SoundSport Headphones,1,99.99,10/28/19 11:27,"437 Main St, Boston, MA 02215" +265847,AAA Batteries (4-pack),1,2.99,10/14/19 19:38,"597 Sunset St, San Francisco, CA 94016" +265848,Flatscreen TV,1,300,10/07/19 18:41,"343 10th St, San Francisco, CA 94016" +265849,Apple Airpods Headphones,1,150,10/04/19 14:35,"661 Ridge St, Seattle, WA 98101" +265850,AAA Batteries (4-pack),5,2.99,10/27/19 12:30,"762 Lakeview St, Los Angeles, CA 90001" +265851,USB-C Charging Cable,2,11.95,10/10/19 17:58,"385 Hill St, Los Angeles, CA 90001" +265852,AA Batteries (4-pack),4,3.84,10/19/19 10:56,"830 Walnut St, Los Angeles, CA 90001" +265853,ThinkPad Laptop,1,999.99,10/15/19 19:16,"440 Cedar St, New York City, NY 10001" +265854,34in Ultrawide Monitor,1,379.99,10/28/19 13:46,"665 Lincoln St, Atlanta, GA 30301" +265855,AAA Batteries (4-pack),2,2.99,10/02/19 06:39,"621 Madison St, Los Angeles, CA 90001" +265856,USB-C Charging Cable,1,11.95,10/08/19 10:27,"13 Walnut St, New York City, NY 10001" +265857,USB-C Charging Cable,1,11.95,10/27/19 13:25,"915 Ridge St, Dallas, TX 75001" +265858,AAA Batteries (4-pack),1,2.99,10/02/19 14:32,"201 5th St, San Francisco, CA 94016" +265859,AAA Batteries (4-pack),1,2.99,10/29/19 08:50,"384 7th St, New York City, NY 10001" +265860,Apple Airpods Headphones,1,150,10/27/19 11:21,"467 Highland St, Boston, MA 02215" +265861,Apple Airpods Headphones,1,150,10/29/19 15:54,"636 Pine St, Los Angeles, CA 90001" +265862,27in FHD Monitor,1,149.99,10/02/19 23:05,"667 Church St, San Francisco, CA 94016" +265863,AAA Batteries (4-pack),1,2.99,10/17/19 11:33,"983 5th St, San Francisco, CA 94016" +265864,Apple Airpods Headphones,1,150,10/20/19 14:19,"997 Lake St, Portland, OR 97035" +265865,20in Monitor,1,109.99,10/08/19 13:37,"352 Lakeview St, Los Angeles, CA 90001" +265866,Wired Headphones,1,11.99,10/22/19 15:47,"529 Elm St, Boston, MA 02215" +265867,AAA Batteries (4-pack),2,2.99,10/27/19 19:16,"603 River St, San Francisco, CA 94016" +265868,AAA Batteries (4-pack),2,2.99,10/28/19 21:30,"466 Sunset St, Los Angeles, CA 90001" +265869,AAA Batteries (4-pack),1,2.99,10/26/19 18:34,"826 Church St, Atlanta, GA 30301" +265870,27in FHD Monitor,1,149.99,10/30/19 20:28,"532 2nd St, Portland, OR 97035" +265871,iPhone,1,700,10/16/19 22:55,"976 Church St, Seattle, WA 98101" +265872,Apple Airpods Headphones,1,150,10/30/19 08:50,"562 4th St, Dallas, TX 75001" +265873,AA Batteries (4-pack),2,3.84,10/27/19 09:56,"416 14th St, Dallas, TX 75001" +265874,USB-C Charging Cable,1,11.95,10/25/19 19:56,"460 Cherry St, Boston, MA 02215" +265875,AAA Batteries (4-pack),1,2.99,10/27/19 21:02,"222 Adams St, Austin, TX 73301" +265876,Google Phone,1,600,10/31/19 16:09,"551 Willow St, Austin, TX 73301" +265877,USB-C Charging Cable,1,11.95,10/20/19 13:05,"979 6th St, Dallas, TX 75001" +265878,USB-C Charging Cable,1,11.95,10/21/19 08:41,"146 12th St, Los Angeles, CA 90001" +265879,AA Batteries (4-pack),1,3.84,10/24/19 15:30,"438 Wilson St, Portland, OR 97035" +265880,Bose SoundSport Headphones,1,99.99,10/23/19 13:12,"176 Hill St, Dallas, TX 75001" +265881,Wired Headphones,1,11.99,10/22/19 12:04,"889 13th St, San Francisco, CA 94016" +265882,Wired Headphones,1,11.99,10/17/19 13:54,"665 Hill St, Dallas, TX 75001" +265883,Macbook Pro Laptop,1,1700,10/11/19 21:49,"350 Park St, Los Angeles, CA 90001" +265884,Wired Headphones,1,11.99,10/16/19 04:55,"34 8th St, San Francisco, CA 94016" +265885,20in Monitor,1,109.99,10/22/19 21:11,"759 South St, Los Angeles, CA 90001" +265886,iPhone,1,700,10/01/19 12:24,"378 Lakeview St, San Francisco, CA 94016" +265887,27in FHD Monitor,1,149.99,10/28/19 12:12,"364 Lincoln St, Los Angeles, CA 90001" +265888,AAA Batteries (4-pack),1,2.99,10/22/19 20:52,"327 13th St, Portland, OR 97035" +265889,Apple Airpods Headphones,1,150,10/12/19 15:14,"16 Maple St, Seattle, WA 98101" +265890,Apple Airpods Headphones,1,150,10/18/19 11:25,"140 Meadow St, New York City, NY 10001" +265891,27in FHD Monitor,1,149.99,10/11/19 12:51,"335 Wilson St, Austin, TX 73301" +265892,34in Ultrawide Monitor,1,379.99,10/01/19 15:31,"337 Madison St, New York City, NY 10001" +265893,Wired Headphones,1,11.99,10/10/19 16:37,"27 Lake St, Seattle, WA 98101" +265894,Macbook Pro Laptop,1,1700,10/17/19 10:28,"124 4th St, Portland, OR 97035" +,,,,, +265895,Wired Headphones,2,11.99,10/27/19 19:39,"59 Jefferson St, San Francisco, CA 94016" +265896,AAA Batteries (4-pack),1,2.99,10/23/19 08:34,"717 Park St, Boston, MA 02215" +265897,Lightning Charging Cable,1,14.95,10/31/19 12:51,"515 Sunset St, Portland, OR 97035" +265898,Bose SoundSport Headphones,1,99.99,10/30/19 12:16,"471 Adams St, Portland, ME 04101" +265899,Lightning Charging Cable,1,14.95,10/30/19 22:34,"810 Highland St, New York City, NY 10001" +265900,Bose SoundSport Headphones,1,99.99,10/16/19 14:11,"202 Adams St, San Francisco, CA 94016" +265901,AA Batteries (4-pack),2,3.84,10/14/19 21:46,"565 Madison St, Los Angeles, CA 90001" +265902,27in FHD Monitor,1,149.99,10/02/19 17:49,"614 Jefferson St, Atlanta, GA 30301" +265903,Bose SoundSport Headphones,1,99.99,10/31/19 13:10,"967 North St, Portland, OR 97035" +265904,Bose SoundSport Headphones,1,99.99,10/06/19 10:44,"847 Adams St, San Francisco, CA 94016" +265905,27in FHD Monitor,1,149.99,10/25/19 06:18,"648 Jackson St, San Francisco, CA 94016" +265906,USB-C Charging Cable,1,11.95,10/01/19 18:58,"651 4th St, Atlanta, GA 30301" +265907,Google Phone,1,600,10/13/19 01:17,"204 Hill St, Atlanta, GA 30301" +265907,USB-C Charging Cable,2,11.95,10/13/19 01:17,"204 Hill St, Atlanta, GA 30301" +265908,Apple Airpods Headphones,1,150,10/11/19 19:14,"87 Chestnut St, Los Angeles, CA 90001" +265909,Apple Airpods Headphones,1,150,10/28/19 16:33,"473 Lakeview St, Seattle, WA 98101" +265910,AA Batteries (4-pack),1,3.84,10/18/19 14:17,"244 6th St, Dallas, TX 75001" +265911,20in Monitor,1,109.99,10/20/19 08:28,"358 9th St, San Francisco, CA 94016" +265912,USB-C Charging Cable,1,11.95,10/21/19 09:51,"807 6th St, Boston, MA 02215" +265913,Wired Headphones,2,11.99,10/07/19 13:28,"631 Highland St, Atlanta, GA 30301" +265914,27in 4K Gaming Monitor,1,389.99,10/23/19 11:11,"119 Lakeview St, Atlanta, GA 30301" +265915,USB-C Charging Cable,1,11.95,10/25/19 13:50,"812 Park St, San Francisco, CA 94016" +265916,Apple Airpods Headphones,1,150,10/12/19 18:52,"957 10th St, Seattle, WA 98101" +265917,AA Batteries (4-pack),1,3.84,10/04/19 12:42,"380 Highland St, San Francisco, CA 94016" +265918,AAA Batteries (4-pack),1,2.99,10/13/19 14:47,"372 2nd St, San Francisco, CA 94016" +265919,ThinkPad Laptop,1,999.99,10/16/19 16:11,"95 Johnson St, Los Angeles, CA 90001" +265920,Lightning Charging Cable,1,14.95,10/02/19 09:33,"854 Jefferson St, Dallas, TX 75001" +265921,AA Batteries (4-pack),1,3.84,10/14/19 19:38,"245 Church St, Los Angeles, CA 90001" +265922,AA Batteries (4-pack),2,3.84,10/07/19 09:26,"915 North St, Los Angeles, CA 90001" +265923,Lightning Charging Cable,3,14.95,10/27/19 18:14,"965 Dogwood St, Atlanta, GA 30301" +265924,Apple Airpods Headphones,1,150,10/17/19 21:00,"377 5th St, Boston, MA 02215" +265925,Google Phone,1,600,10/31/19 22:46,"993 Chestnut St, Boston, MA 02215" +265925,AAA Batteries (4-pack),1,2.99,10/31/19 22:46,"993 Chestnut St, Boston, MA 02215" +265926,USB-C Charging Cable,1,11.95,10/04/19 06:40,"525 Hickory St, San Francisco, CA 94016" +265927,AA Batteries (4-pack),1,3.84,10/01/19 21:26,"545 Jackson St, Boston, MA 02215" +265928,Flatscreen TV,1,300,10/15/19 21:48,"640 Center St, Austin, TX 73301" +265929,Wired Headphones,1,11.99,10/06/19 20:30,"213 North St, Portland, OR 97035" +265930,27in 4K Gaming Monitor,1,389.99,10/10/19 14:26,"593 Willow St, Dallas, TX 75001" +265931,34in Ultrawide Monitor,1,379.99,10/05/19 10:24,"20 11th St, New York City, NY 10001" +265932,AAA Batteries (4-pack),4,2.99,10/21/19 21:46,"598 8th St, San Francisco, CA 94016" +265933,Apple Airpods Headphones,1,150,10/06/19 21:45,"161 Meadow St, Los Angeles, CA 90001" +265934,AA Batteries (4-pack),1,3.84,10/30/19 13:16,"368 2nd St, Los Angeles, CA 90001" +265935,Flatscreen TV,1,300,10/15/19 21:14,"977 Ridge St, Los Angeles, CA 90001" +265936,ThinkPad Laptop,1,999.99,10/13/19 10:17,"257 Main St, Austin, TX 73301" +265937,Bose SoundSport Headphones,1,99.99,10/19/19 20:12,"921 Hickory St, Los Angeles, CA 90001" +265938,Lightning Charging Cable,1,14.95,10/19/19 13:28,"760 Jackson St, Dallas, TX 75001" +265939,27in FHD Monitor,1,149.99,10/06/19 12:39,"701 Ridge St, San Francisco, CA 94016" +265940,AAA Batteries (4-pack),3,2.99,10/21/19 11:06,"191 Lake St, New York City, NY 10001" +265941,USB-C Charging Cable,1,11.95,10/11/19 18:07,"495 Cherry St, San Francisco, CA 94016" +265942,Wired Headphones,1,11.99,10/28/19 21:32,"308 4th St, Seattle, WA 98101" +265943,Bose SoundSport Headphones,1,99.99,10/20/19 20:20,"312 Jefferson St, Los Angeles, CA 90001" +265944,Lightning Charging Cable,1,14.95,10/05/19 23:09,"67 6th St, Seattle, WA 98101" +265945,USB-C Charging Cable,1,11.95,10/09/19 18:45,"110 1st St, San Francisco, CA 94016" +265945,USB-C Charging Cable,2,11.95,10/09/19 18:45,"110 1st St, San Francisco, CA 94016" +265946,USB-C Charging Cable,1,11.95,10/25/19 20:28,"401 South St, San Francisco, CA 94016" +265947,AA Batteries (4-pack),1,3.84,10/17/19 12:38,"177 Pine St, Seattle, WA 98101" +265948,34in Ultrawide Monitor,1,379.99,10/27/19 00:26,"472 Adams St, Austin, TX 73301" +265949,Flatscreen TV,1,300,10/22/19 16:49,"124 Dogwood St, Atlanta, GA 30301" +265950,AAA Batteries (4-pack),1,2.99,10/31/19 09:34,"16 11th St, New York City, NY 10001" +265951,Lightning Charging Cable,1,14.95,10/22/19 19:44,"697 14th St, Los Angeles, CA 90001" +265952,Lightning Charging Cable,1,14.95,10/04/19 18:31,"870 10th St, New York City, NY 10001" +265953,AA Batteries (4-pack),1,3.84,10/31/19 05:25,"836 Jackson St, Boston, MA 02215" +265954,AA Batteries (4-pack),2,3.84,10/01/19 22:45,"132 Center St, New York City, NY 10001" +265955,iPhone,1,700,10/19/19 11:29,"111 Maple St, San Francisco, CA 94016" +265955,Wired Headphones,1,11.99,10/19/19 11:29,"111 Maple St, San Francisco, CA 94016" +265956,27in 4K Gaming Monitor,1,389.99,10/18/19 19:36,"365 Jackson St, San Francisco, CA 94016" +265957,USB-C Charging Cable,1,11.95,10/17/19 23:41,"928 1st St, Los Angeles, CA 90001" +265958,AA Batteries (4-pack),1,3.84,10/11/19 17:47,"341 Jefferson St, New York City, NY 10001" +265959,Bose SoundSport Headphones,1,99.99,10/20/19 11:03,"267 Jackson St, Seattle, WA 98101" +265960,Google Phone,1,600,10/07/19 12:49,"64 8th St, San Francisco, CA 94016" +265961,Wired Headphones,2,11.99,10/30/19 13:22,"30 10th St, Austin, TX 73301" +265962,Bose SoundSport Headphones,1,99.99,10/23/19 21:18,"427 Forest St, San Francisco, CA 94016" +265963,ThinkPad Laptop,1,999.99,10/16/19 11:07,"511 Lincoln St, Boston, MA 02215" +265964,AAA Batteries (4-pack),2,2.99,10/10/19 12:48,"358 Center St, New York City, NY 10001" +265965,AAA Batteries (4-pack),2,2.99,10/12/19 23:53,"252 Park St, Austin, TX 73301" +265966,Wired Headphones,1,11.99,10/05/19 17:04,"522 11th St, San Francisco, CA 94016" +265967,Lightning Charging Cable,1,14.95,10/02/19 00:38,"424 Jackson St, Boston, MA 02215" +265968,Lightning Charging Cable,1,14.95,10/20/19 23:19,"415 Forest St, San Francisco, CA 94016" +265969,USB-C Charging Cable,1,11.95,10/23/19 20:22,"554 Center St, Los Angeles, CA 90001" +265970,AA Batteries (4-pack),1,3.84,10/18/19 09:20,"315 Elm St, San Francisco, CA 94016" +265971,Bose SoundSport Headphones,1,99.99,10/03/19 14:58,"644 13th St, San Francisco, CA 94016" +265972,34in Ultrawide Monitor,1,379.99,10/21/19 23:31,"828 Lincoln St, New York City, NY 10001" +265973,34in Ultrawide Monitor,1,379.99,10/20/19 12:21,"903 Center St, Portland, OR 97035" +265974,Google Phone,1,600,10/16/19 10:05,"777 Jackson St, Los Angeles, CA 90001" +265975,Lightning Charging Cable,1,14.95,10/01/19 18:02,"268 13th St, Portland, OR 97035" +265976,Bose SoundSport Headphones,1,99.99,10/18/19 14:18,"132 Chestnut St, Boston, MA 02215" +265977,AA Batteries (4-pack),1,3.84,10/30/19 14:39,"763 Ridge St, Boston, MA 02215" +265978,AAA Batteries (4-pack),2,2.99,10/19/19 22:50,"447 Washington St, Portland, OR 97035" +265979,34in Ultrawide Monitor,1,379.99,10/01/19 21:22,"493 Adams St, San Francisco, CA 94016" +265980,Bose SoundSport Headphones,1,99.99,10/24/19 18:05,"53 11th St, San Francisco, CA 94016" +265981,Macbook Pro Laptop,1,1700,10/23/19 19:24,"692 Sunset St, Los Angeles, CA 90001" +265982,Google Phone,1,600,10/15/19 19:51,"986 12th St, Austin, TX 73301" +265982,Wired Headphones,1,11.99,10/15/19 19:51,"986 12th St, Austin, TX 73301" +265983,27in 4K Gaming Monitor,1,389.99,10/08/19 15:12,"202 Walnut St, San Francisco, CA 94016" +265984,27in 4K Gaming Monitor,1,389.99,10/17/19 13:45,"498 Lincoln St, Atlanta, GA 30301" +265985,Wired Headphones,1,11.99,10/18/19 22:30,"773 Maple St, San Francisco, CA 94016" +265986,Apple Airpods Headphones,1,150,10/05/19 16:02,"753 Spruce St, Austin, TX 73301" +265987,Lightning Charging Cable,1,14.95,10/27/19 10:49,"648 Washington St, Dallas, TX 75001" +265988,Apple Airpods Headphones,1,150,10/12/19 13:50,"986 Center St, San Francisco, CA 94016" +265989,Wired Headphones,1,11.99,10/03/19 18:57,"447 1st St, San Francisco, CA 94016" +265990,AA Batteries (4-pack),1,3.84,10/03/19 20:45,"804 Center St, Atlanta, GA 30301" +265991,AAA Batteries (4-pack),1,2.99,10/21/19 06:15,"813 13th St, San Francisco, CA 94016" +265992,USB-C Charging Cable,1,11.95,10/30/19 16:18,"527 13th St, San Francisco, CA 94016" +265993,USB-C Charging Cable,2,11.95,10/20/19 19:46,"584 Lakeview St, San Francisco, CA 94016" +265994,AA Batteries (4-pack),1,3.84,10/09/19 10:53,"173 10th St, San Francisco, CA 94016" +265995,Google Phone,1,600,10/10/19 18:42,"703 1st St, Atlanta, GA 30301" +265996,Wired Headphones,1,11.99,10/27/19 07:40,"915 Johnson St, San Francisco, CA 94016" +265997,Lightning Charging Cable,1,14.95,10/26/19 20:34,"171 2nd St, Boston, MA 02215" +265998,Apple Airpods Headphones,1,150,10/20/19 04:06,"177 Washington St, Boston, MA 02215" +265999,Wired Headphones,1,11.99,10/30/19 20:36,"364 10th St, Seattle, WA 98101" +266000,20in Monitor,1,109.99,10/18/19 17:59,"843 Adams St, Los Angeles, CA 90001" +266001,Wired Headphones,1,11.99,10/27/19 13:48,"518 Lincoln St, San Francisco, CA 94016" +266002,Google Phone,1,600,10/23/19 21:27,"776 Wilson St, Los Angeles, CA 90001" +266003,USB-C Charging Cable,1,11.95,10/01/19 20:37,"275 7th St, San Francisco, CA 94016" +266004,AAA Batteries (4-pack),1,2.99,10/03/19 21:41,"543 Main St, Austin, TX 73301" +266005,Macbook Pro Laptop,1,1700,10/18/19 13:08,"297 13th St, Dallas, TX 75001" +266006,Flatscreen TV,1,300,10/31/19 16:11,"67 Dogwood St, San Francisco, CA 94016" +266007,USB-C Charging Cable,1,11.95,10/11/19 06:53,"717 Lake St, Los Angeles, CA 90001" +266008,USB-C Charging Cable,1,11.95,10/12/19 23:37,"871 Maple St, Dallas, TX 75001" +266009,34in Ultrawide Monitor,1,379.99,10/27/19 18:47,"920 Johnson St, Dallas, TX 75001" +266010,Apple Airpods Headphones,1,150,10/23/19 08:50,"684 1st St, Dallas, TX 75001" +266011,USB-C Charging Cable,1,11.95,10/21/19 16:27,"29 Jefferson St, Los Angeles, CA 90001" +266012,Apple Airpods Headphones,1,150,10/08/19 12:44,"847 Highland St, Los Angeles, CA 90001" +266013,20in Monitor,1,109.99,10/01/19 20:04,"234 River St, New York City, NY 10001" +266014,20in Monitor,1,109.99,10/25/19 09:53,"490 Jackson St, San Francisco, CA 94016" +266015,Flatscreen TV,1,300,10/09/19 21:30,"795 Cedar St, New York City, NY 10001" +266016,Lightning Charging Cable,1,14.95,10/19/19 22:29,"692 Church St, Los Angeles, CA 90001" +266017,Apple Airpods Headphones,1,150,10/28/19 13:56,"86 5th St, San Francisco, CA 94016" +266018,Apple Airpods Headphones,1,150,10/11/19 23:01,"913 Lake St, San Francisco, CA 94016" +266019,USB-C Charging Cable,1,11.95,10/16/19 23:50,"427 Madison St, Seattle, WA 98101" +266020,Lightning Charging Cable,1,14.95,10/11/19 20:12,"849 Center St, San Francisco, CA 94016" +266021,Bose SoundSport Headphones,1,99.99,10/05/19 01:35,"883 11th St, San Francisco, CA 94016" +266022,27in FHD Monitor,1,149.99,10/16/19 17:29,"578 Hickory St, San Francisco, CA 94016" +266023,34in Ultrawide Monitor,1,379.99,10/02/19 20:32,"737 Sunset St, New York City, NY 10001" +266024,AAA Batteries (4-pack),2,2.99,10/12/19 19:55,"481 Cedar St, San Francisco, CA 94016" +266025,Wired Headphones,1,11.99,10/17/19 05:40,"930 12th St, Boston, MA 02215" +266026,Wired Headphones,1,11.99,10/23/19 17:00,"760 River St, Los Angeles, CA 90001" +266027,27in 4K Gaming Monitor,1,389.99,10/22/19 19:19,"329 2nd St, Boston, MA 02215" +266028,Lightning Charging Cable,1,14.95,10/30/19 12:23,"561 Jefferson St, Dallas, TX 75001" +266029,Wired Headphones,1,11.99,10/08/19 17:36,"384 Sunset St, Boston, MA 02215" +266030,27in FHD Monitor,1,149.99,10/15/19 09:11,"800 Walnut St, Dallas, TX 75001" +266031,AAA Batteries (4-pack),1,2.99,10/03/19 14:54,"848 Forest St, Portland, OR 97035" +266032,Apple Airpods Headphones,1,150,10/30/19 18:58,"927 Center St, San Francisco, CA 94016" +266033,Wired Headphones,1,11.99,10/24/19 12:39,"598 10th St, San Francisco, CA 94016" +266034,AA Batteries (4-pack),1,3.84,10/10/19 02:05,"673 Dogwood St, Portland, OR 97035" +266035,AAA Batteries (4-pack),2,2.99,10/22/19 20:29,"183 North St, San Francisco, CA 94016" +266036,USB-C Charging Cable,1,11.95,10/19/19 08:42,"739 Walnut St, Los Angeles, CA 90001" +266037,Wired Headphones,1,11.99,10/06/19 09:16,"47 Main St, Seattle, WA 98101" +266038,27in FHD Monitor,1,149.99,10/19/19 17:16,"737 13th St, Boston, MA 02215" +266039,Bose SoundSport Headphones,1,99.99,10/07/19 17:58,"599 South St, Los Angeles, CA 90001" +266040,27in 4K Gaming Monitor,1,389.99,10/10/19 14:17,"696 Ridge St, Boston, MA 02215" +266041,iPhone,1,700,10/07/19 19:39,"831 River St, Seattle, WA 98101" +266041,Lightning Charging Cable,1,14.95,10/07/19 19:39,"831 River St, Seattle, WA 98101" +266042,27in FHD Monitor,1,149.99,10/01/19 19:16,"176 14th St, Seattle, WA 98101" +266043,AA Batteries (4-pack),2,3.84,10/04/19 01:27,"331 Church St, San Francisco, CA 94016" +266044,AA Batteries (4-pack),1,3.84,10/24/19 20:05,"653 11th St, San Francisco, CA 94016" +266045,Apple Airpods Headphones,1,150,10/10/19 13:38,"62 Forest St, Portland, OR 97035" +266046,Bose SoundSport Headphones,1,99.99,10/24/19 11:33,"326 Center St, Los Angeles, CA 90001" +266047,AAA Batteries (4-pack),2,2.99,10/18/19 12:58,"347 Cedar St, Los Angeles, CA 90001" +266048,Apple Airpods Headphones,1,150,10/24/19 22:05,"764 Chestnut St, San Francisco, CA 94016" +266049,Bose SoundSport Headphones,1,99.99,10/11/19 14:20,"105 Lincoln St, Boston, MA 02215" +266050,iPhone,1,700,10/12/19 08:33,"634 Forest St, Dallas, TX 75001" +266051,Wired Headphones,1,11.99,10/08/19 09:49,"478 Adams St, San Francisco, CA 94016" +266052,Lightning Charging Cable,1,14.95,10/05/19 14:07,"354 South St, Boston, MA 02215" +266053,Macbook Pro Laptop,1,1700,10/03/19 09:32,"825 Johnson St, Seattle, WA 98101" +266054,ThinkPad Laptop,1,999.99,10/05/19 12:55,"451 Center St, San Francisco, CA 94016" +266055,Bose SoundSport Headphones,1,99.99,10/28/19 18:59,"841 Johnson St, Boston, MA 02215" +266056,USB-C Charging Cable,1,11.95,10/31/19 21:20,"708 Lincoln St, Los Angeles, CA 90001" +266057,AAA Batteries (4-pack),1,2.99,10/22/19 11:54,"120 Hill St, San Francisco, CA 94016" +266058,USB-C Charging Cable,1,11.95,10/18/19 18:06,"363 Wilson St, San Francisco, CA 94016" +266059,AAA Batteries (4-pack),1,2.99,10/05/19 01:20,"845 6th St, New York City, NY 10001" +266060,Apple Airpods Headphones,1,150,10/21/19 21:14,"861 Jackson St, Los Angeles, CA 90001" +266061,AA Batteries (4-pack),1,3.84,10/13/19 22:47,"120 Meadow St, San Francisco, CA 94016" +266062,AAA Batteries (4-pack),1,2.99,10/20/19 12:31,"688 Walnut St, Seattle, WA 98101" +266063,Flatscreen TV,1,300,10/30/19 00:55,"939 Johnson St, San Francisco, CA 94016" +266064,ThinkPad Laptop,1,999.99,10/25/19 21:52,"202 9th St, Seattle, WA 98101" +266065,34in Ultrawide Monitor,1,379.99,10/05/19 12:44,"465 13th St, Austin, TX 73301" +266066,Wired Headphones,1,11.99,10/20/19 20:54,"97 Washington St, Los Angeles, CA 90001" +266067,Google Phone,1,600,10/02/19 12:21,"521 13th St, San Francisco, CA 94016" +266068,27in FHD Monitor,1,149.99,10/29/19 14:20,"942 Lakeview St, Atlanta, GA 30301" +266069,34in Ultrawide Monitor,1,379.99,10/12/19 17:41,"134 12th St, Atlanta, GA 30301" +266070,Lightning Charging Cable,1,14.95,10/25/19 09:34,"39 Hickory St, Seattle, WA 98101" +266070,Wired Headphones,1,11.99,10/25/19 09:34,"39 Hickory St, Seattle, WA 98101" +266071,Wired Headphones,1,11.99,10/16/19 03:51,"755 Adams St, Portland, OR 97035" +266072,AA Batteries (4-pack),1,3.84,10/12/19 23:20,"81 Elm St, Portland, OR 97035" +266073,AAA Batteries (4-pack),1,2.99,10/29/19 14:03,"288 6th St, New York City, NY 10001" +266074,AA Batteries (4-pack),1,3.84,10/18/19 14:04,"581 13th St, Boston, MA 02215" +266075,AAA Batteries (4-pack),1,2.99,10/19/19 22:51,"484 South St, Seattle, WA 98101" +266076,27in FHD Monitor,1,149.99,10/18/19 09:13,"989 Johnson St, Atlanta, GA 30301" +266077,iPhone,1,700,10/02/19 12:10,"154 Elm St, New York City, NY 10001" +266078,AAA Batteries (4-pack),2,2.99,10/30/19 13:25,"332 Ridge St, Austin, TX 73301" +266079,AA Batteries (4-pack),1,3.84,10/21/19 21:08,"788 West St, Dallas, TX 75001" +266080,Bose SoundSport Headphones,1,99.99,10/28/19 17:45,"471 Jackson St, Austin, TX 73301" +266081,27in 4K Gaming Monitor,1,389.99,10/25/19 13:13,"209 8th St, Los Angeles, CA 90001" +266082,Wired Headphones,1,11.99,10/04/19 10:04,"914 Elm St, New York City, NY 10001" +266083,27in FHD Monitor,1,149.99,10/04/19 19:33,"506 10th St, San Francisco, CA 94016" +266084,AAA Batteries (4-pack),2,2.99,10/13/19 21:21,"845 Willow St, New York City, NY 10001" +266085,34in Ultrawide Monitor,1,379.99,10/26/19 21:37,"453 South St, Atlanta, GA 30301" +266086,Apple Airpods Headphones,1,150,10/17/19 10:54,"63 Main St, New York City, NY 10001" +266087,Apple Airpods Headphones,1,150,10/20/19 13:48,"679 Lincoln St, Los Angeles, CA 90001" +266088,Wired Headphones,1,11.99,10/26/19 18:06,"326 13th St, San Francisco, CA 94016" +266089,USB-C Charging Cable,1,11.95,10/26/19 11:24,"573 Washington St, San Francisco, CA 94016" +266090,Bose SoundSport Headphones,1,99.99,10/07/19 19:09,"995 Adams St, Dallas, TX 75001" +266091,AAA Batteries (4-pack),2,2.99,10/05/19 17:29,"991 Lakeview St, San Francisco, CA 94016" +266092,Bose SoundSport Headphones,1,99.99,10/24/19 22:11,"40 Madison St, Boston, MA 02215" +266093,ThinkPad Laptop,1,999.99,10/15/19 13:27,"681 Hickory St, New York City, NY 10001" +266094,Apple Airpods Headphones,1,150,10/15/19 14:17,"751 Maple St, Los Angeles, CA 90001" +266095,iPhone,1,700,10/06/19 12:35,"276 Spruce St, Seattle, WA 98101" +266096,AAA Batteries (4-pack),1,2.99,10/17/19 17:49,"270 Hill St, Seattle, WA 98101" +266097,Wired Headphones,1,11.99,10/25/19 01:25,"947 Lincoln St, San Francisco, CA 94016" +266098,Vareebadd Phone,1,400,10/16/19 01:31,"632 Center St, Los Angeles, CA 90001" +266099,Lightning Charging Cable,1,14.95,10/30/19 12:04,"10 7th St, San Francisco, CA 94016" +266100,USB-C Charging Cable,1,11.95,10/25/19 10:39,"939 Cedar St, Seattle, WA 98101" +266101,Flatscreen TV,1,300,10/05/19 14:31,"520 Adams St, Portland, OR 97035" +266102,27in FHD Monitor,1,149.99,10/24/19 12:01,"856 2nd St, Dallas, TX 75001" +266103,USB-C Charging Cable,1,11.95,10/07/19 08:30,"210 4th St, New York City, NY 10001" +266104,Bose SoundSport Headphones,1,99.99,10/29/19 21:41,"753 Willow St, Atlanta, GA 30301" +266105,AAA Batteries (4-pack),1,2.99,10/12/19 17:52,"603 5th St, Dallas, TX 75001" +266106,ThinkPad Laptop,1,999.99,10/19/19 09:46,"722 Cedar St, Boston, MA 02215" +266107,Lightning Charging Cable,1,14.95,10/07/19 13:25,"316 Lakeview St, Dallas, TX 75001" +266108,Vareebadd Phone,1,400,10/23/19 23:35,"165 Lincoln St, Seattle, WA 98101" +266108,USB-C Charging Cable,1,11.95,10/23/19 23:35,"165 Lincoln St, Seattle, WA 98101" +266109,AAA Batteries (4-pack),1,2.99,10/02/19 10:54,"771 10th St, Boston, MA 02215" +266110,27in FHD Monitor,1,149.99,10/31/19 08:24,"356 Lake St, Atlanta, GA 30301" +266111,USB-C Charging Cable,1,11.95,10/09/19 22:29,"9 Lincoln St, Portland, OR 97035" +266112,AAA Batteries (4-pack),1,2.99,10/13/19 16:21,"950 Wilson St, Los Angeles, CA 90001" +266113,Flatscreen TV,1,300,10/04/19 19:20,"48 Dogwood St, Dallas, TX 75001" +266114,iPhone,1,700,10/08/19 11:42,"407 6th St, Los Angeles, CA 90001" +266115,27in 4K Gaming Monitor,1,389.99,10/17/19 20:06,"745 12th St, Dallas, TX 75001" +266116,Wired Headphones,1,11.99,10/12/19 20:47,"101 5th St, Austin, TX 73301" +266117,USB-C Charging Cable,1,11.95,10/04/19 17:20,"391 5th St, Boston, MA 02215" +266118,AA Batteries (4-pack),1,3.84,10/26/19 14:41,"282 12th St, Boston, MA 02215" +266119,AA Batteries (4-pack),1,3.84,10/07/19 12:55,"340 7th St, San Francisco, CA 94016" +266120,USB-C Charging Cable,1,11.95,10/14/19 23:47,"834 13th St, San Francisco, CA 94016" +266121,Lightning Charging Cable,1,14.95,10/26/19 12:29,"262 Adams St, San Francisco, CA 94016" +266122,Apple Airpods Headphones,1,150,10/05/19 07:09,"306 8th St, Boston, MA 02215" +266123,Flatscreen TV,1,300,10/31/19 23:31,"634 Hickory St, Austin, TX 73301" +266124,USB-C Charging Cable,1,11.95,10/22/19 15:35,"671 Madison St, San Francisco, CA 94016" +266125,LG Dryer,1,600.0,10/11/19 12:09,"980 Dogwood St, Dallas, TX 75001" +266126,AA Batteries (4-pack),3,3.84,10/16/19 12:46,"686 8th St, San Francisco, CA 94016" +266127,Lightning Charging Cable,1,14.95,10/23/19 15:12,"68 6th St, Portland, OR 97035" +266128,34in Ultrawide Monitor,1,379.99,10/25/19 23:56,"799 Pine St, San Francisco, CA 94016" +266129,Lightning Charging Cable,1,14.95,10/26/19 14:17,"681 Lincoln St, San Francisco, CA 94016" +266130,Flatscreen TV,1,300,10/31/19 01:19,"637 Wilson St, San Francisco, CA 94016" +266131,Wired Headphones,1,11.99,10/12/19 19:33,"995 Walnut St, Austin, TX 73301" +266132,Apple Airpods Headphones,1,150,10/07/19 21:18,"275 Washington St, New York City, NY 10001" +266133,Macbook Pro Laptop,1,1700,10/11/19 07:04,"928 14th St, Los Angeles, CA 90001" +266134,Apple Airpods Headphones,1,150,10/03/19 19:21,"601 6th St, Boston, MA 02215" +266135,Bose SoundSport Headphones,1,99.99,10/20/19 13:32,"686 Pine St, New York City, NY 10001" +266136,USB-C Charging Cable,1,11.95,10/31/19 10:04,"161 13th St, San Francisco, CA 94016" +266137,Lightning Charging Cable,1,14.95,10/03/19 10:33,"38 6th St, Boston, MA 02215" +266138,Wired Headphones,1,11.99,10/14/19 11:09,"588 Cherry St, Atlanta, GA 30301" +266139,Flatscreen TV,1,300,10/17/19 07:44,"898 Adams St, Los Angeles, CA 90001" +266140,Apple Airpods Headphones,1,150,10/01/19 08:35,"638 14th St, Portland, OR 97035" +266141,USB-C Charging Cable,1,11.95,10/23/19 09:38,"541 Ridge St, San Francisco, CA 94016" +266142,AAA Batteries (4-pack),1,2.99,10/18/19 22:52,"345 Wilson St, San Francisco, CA 94016" +266143,AAA Batteries (4-pack),1,2.99,10/23/19 17:07,"708 7th St, Los Angeles, CA 90001" +266144,Wired Headphones,1,11.99,10/13/19 13:33,"720 Willow St, San Francisco, CA 94016" +266145,AAA Batteries (4-pack),3,2.99,10/02/19 19:35,"426 Madison St, Los Angeles, CA 90001" +266146,AAA Batteries (4-pack),1,2.99,10/17/19 17:53,"813 Main St, San Francisco, CA 94016" +266147,AA Batteries (4-pack),1,3.84,10/27/19 17:59,"272 Maple St, San Francisco, CA 94016" +266148,USB-C Charging Cable,1,11.95,10/02/19 14:54,"975 South St, San Francisco, CA 94016" +266149,AA Batteries (4-pack),1,3.84,10/18/19 17:16,"15 6th St, Los Angeles, CA 90001" +266150,AA Batteries (4-pack),1,3.84,11/01/19 00:09,"789 Willow St, New York City, NY 10001" +266151,20in Monitor,1,109.99,10/12/19 17:49,"937 Main St, Los Angeles, CA 90001" +266152,AA Batteries (4-pack),3,3.84,10/03/19 18:46,"853 12th St, Boston, MA 02215" +266153,AAA Batteries (4-pack),2,2.99,10/13/19 22:36,"646 Sunset St, San Francisco, CA 94016" +266154,AAA Batteries (4-pack),2,2.99,10/22/19 08:50,"832 9th St, Dallas, TX 75001" +266155,Apple Airpods Headphones,1,150,10/18/19 11:38,"279 9th St, San Francisco, CA 94016" +266156,USB-C Charging Cable,1,11.95,10/16/19 15:22,"641 Highland St, San Francisco, CA 94016" +266157,AA Batteries (4-pack),2,3.84,10/12/19 12:55,"995 12th St, Los Angeles, CA 90001" +266158,27in 4K Gaming Monitor,1,389.99,10/14/19 12:39,"764 Spruce St, Boston, MA 02215" +266159,Wired Headphones,1,11.99,10/11/19 00:40,"829 10th St, San Francisco, CA 94016" +266160,Lightning Charging Cable,1,14.95,10/18/19 12:13,"545 Walnut St, Seattle, WA 98101" +266161,Bose SoundSport Headphones,1,99.99,10/30/19 20:34,"993 Adams St, Dallas, TX 75001" +266162,USB-C Charging Cable,1,11.95,10/28/19 10:37,"450 Walnut St, Los Angeles, CA 90001" +266163,AAA Batteries (4-pack),1,2.99,10/07/19 08:38,"579 2nd St, Portland, ME 04101" +266164,Apple Airpods Headphones,1,150,10/16/19 21:28,"866 9th St, Boston, MA 02215" +266165,Wired Headphones,1,11.99,10/03/19 01:36,"260 4th St, New York City, NY 10001" +266166,Bose SoundSport Headphones,1,99.99,10/07/19 13:46,"545 North St, Los Angeles, CA 90001" +266167,iPhone,1,700,10/02/19 11:22,"36 11th St, Los Angeles, CA 90001" +266168,AA Batteries (4-pack),2,3.84,10/11/19 13:25,"74 6th St, Portland, OR 97035" +266169,Wired Headphones,1,11.99,10/14/19 22:14,"470 Lake St, Boston, MA 02215" +266170,USB-C Charging Cable,2,11.95,10/06/19 16:27,"645 7th St, Dallas, TX 75001" +266171,AAA Batteries (4-pack),1,2.99,10/11/19 09:24,"677 Pine St, Austin, TX 73301" +266172,Apple Airpods Headphones,1,150,10/09/19 22:02,"282 5th St, San Francisco, CA 94016" +266173,Apple Airpods Headphones,1,150,10/15/19 07:05,"685 Center St, Los Angeles, CA 90001" +266174,Wired Headphones,1,11.99,10/30/19 19:24,"595 Lincoln St, Atlanta, GA 30301" +266175,34in Ultrawide Monitor,1,379.99,10/24/19 06:36,"877 Johnson St, Seattle, WA 98101" +266176,Bose SoundSport Headphones,1,99.99,10/11/19 11:16,"896 6th St, San Francisco, CA 94016" +266177,Wired Headphones,1,11.99,10/20/19 19:22,"609 6th St, Los Angeles, CA 90001" +266178,USB-C Charging Cable,1,11.95,10/15/19 13:05,"294 10th St, Seattle, WA 98101" +266179,ThinkPad Laptop,1,999.99,10/09/19 07:49,"137 14th St, Boston, MA 02215" +266180,iPhone,1,700,10/29/19 14:19,"40 Hickory St, Los Angeles, CA 90001" +266180,Apple Airpods Headphones,1,150,10/29/19 14:19,"40 Hickory St, Los Angeles, CA 90001" +266181,USB-C Charging Cable,1,11.95,10/09/19 16:18,"597 4th St, Los Angeles, CA 90001" +266182,27in 4K Gaming Monitor,1,389.99,10/28/19 06:35,"37 Chestnut St, Dallas, TX 75001" +266183,USB-C Charging Cable,1,11.95,10/08/19 22:33,"995 South St, Dallas, TX 75001" +266184,Bose SoundSport Headphones,1,99.99,10/26/19 12:51,"121 Pine St, San Francisco, CA 94016" +266185,20in Monitor,1,109.99,10/09/19 10:21,"467 Main St, San Francisco, CA 94016" +266186,Apple Airpods Headphones,1,150,10/04/19 08:10,"854 River St, Los Angeles, CA 90001" +266187,iPhone,1,700,10/25/19 16:52,"660 Dogwood St, Austin, TX 73301" +266187,Wired Headphones,1,11.99,10/25/19 16:52,"660 Dogwood St, Austin, TX 73301" +266188,AAA Batteries (4-pack),3,2.99,10/11/19 11:34,"281 4th St, Boston, MA 02215" +266189,USB-C Charging Cable,1,11.95,10/03/19 15:27,"37 Maple St, Boston, MA 02215" +266190,Macbook Pro Laptop,1,1700,10/11/19 10:55,"343 Spruce St, Austin, TX 73301" +266191,AAA Batteries (4-pack),1,2.99,10/17/19 23:17,"938 6th St, Austin, TX 73301" +266192,Wired Headphones,1,11.99,10/23/19 17:58,"792 Washington St, Boston, MA 02215" +266193,Flatscreen TV,1,300,10/25/19 10:28,"185 7th St, Austin, TX 73301" +266194,Macbook Pro Laptop,1,1700,10/08/19 09:59,"633 Meadow St, Portland, OR 97035" +266195,27in 4K Gaming Monitor,1,389.99,10/08/19 18:19,"455 Church St, Dallas, TX 75001" +266196,27in 4K Gaming Monitor,1,389.99,10/01/19 22:34,"920 1st St, Los Angeles, CA 90001" +266197,Bose SoundSport Headphones,1,99.99,10/11/19 14:38,"857 1st St, New York City, NY 10001" +266198,Apple Airpods Headphones,1,150,10/19/19 20:13,"614 Lake St, Austin, TX 73301" +266199,AAA Batteries (4-pack),2,2.99,10/18/19 11:25,"731 North St, Portland, ME 04101" +266200,34in Ultrawide Monitor,1,379.99,10/02/19 11:23,"594 River St, San Francisco, CA 94016" +266201,Apple Airpods Headphones,1,150,10/17/19 11:23,"364 Church St, Boston, MA 02215" +266202,AA Batteries (4-pack),3,3.84,10/11/19 13:40,"859 Dogwood St, San Francisco, CA 94016" +266203,27in 4K Gaming Monitor,1,389.99,10/23/19 11:56,"481 Highland St, Boston, MA 02215" +266204,USB-C Charging Cable,1,11.95,10/06/19 21:43,"938 8th St, Portland, ME 04101" +266205,USB-C Charging Cable,1,11.95,10/18/19 10:29,"623 12th St, Atlanta, GA 30301" +266206,Flatscreen TV,1,300,10/28/19 21:25,"535 Walnut St, San Francisco, CA 94016" +266207,Wired Headphones,1,11.99,10/29/19 20:40,"392 River St, Dallas, TX 75001" +266208,USB-C Charging Cable,1,11.95,10/27/19 23:14,"592 Pine St, New York City, NY 10001" +266209,Apple Airpods Headphones,1,150,10/11/19 11:19,"690 Lakeview St, San Francisco, CA 94016" +266210,Lightning Charging Cable,2,14.95,10/16/19 13:16,"797 Jackson St, Dallas, TX 75001" +266211,Lightning Charging Cable,1,14.95,10/20/19 21:52,"240 Elm St, New York City, NY 10001" +266212,34in Ultrawide Monitor,1,379.99,10/22/19 07:07,"403 11th St, Austin, TX 73301" +266213,27in 4K Gaming Monitor,1,389.99,10/30/19 17:56,"314 1st St, Los Angeles, CA 90001" +266214,AAA Batteries (4-pack),1,2.99,10/17/19 16:52,"546 North St, Seattle, WA 98101" +266215,Lightning Charging Cable,1,14.95,10/16/19 17:18,"437 Pine St, San Francisco, CA 94016" +266216,Lightning Charging Cable,1,14.95,10/19/19 15:06,"884 Elm St, Atlanta, GA 30301" +266216,Wired Headphones,1,11.99,10/19/19 15:06,"884 Elm St, Atlanta, GA 30301" +266217,Lightning Charging Cable,1,14.95,10/10/19 16:16,"388 Cherry St, Portland, OR 97035" +266218,Macbook Pro Laptop,1,1700,10/03/19 01:28,"548 Willow St, San Francisco, CA 94016" +266219,Lightning Charging Cable,1,14.95,10/16/19 20:15,"186 North St, San Francisco, CA 94016" +266220,20in Monitor,1,109.99,10/10/19 13:18,"358 Hill St, New York City, NY 10001" +266221,iPhone,1,700,10/26/19 13:49,"341 Madison St, San Francisco, CA 94016" +266222,Bose SoundSport Headphones,1,99.99,10/10/19 13:07,"410 Lake St, San Francisco, CA 94016" +266223,AA Batteries (4-pack),2,3.84,10/19/19 13:20,"799 Highland St, San Francisco, CA 94016" +266224,AA Batteries (4-pack),1,3.84,10/07/19 21:12,"826 6th St, Boston, MA 02215" +266225,AA Batteries (4-pack),1,3.84,10/29/19 13:33,"780 River St, San Francisco, CA 94016" +266226,ThinkPad Laptop,1,999.99,10/10/19 14:40,"357 Meadow St, New York City, NY 10001" +266227,27in 4K Gaming Monitor,1,389.99,10/15/19 08:27,"843 Chestnut St, New York City, NY 10001" +266228,34in Ultrawide Monitor,1,379.99,10/05/19 12:31,"765 Walnut St, New York City, NY 10001" +266229,Bose SoundSport Headphones,1,99.99,10/06/19 05:35,"561 Cherry St, Atlanta, GA 30301" +266230,Flatscreen TV,1,300,10/07/19 21:39,"205 Lake St, San Francisco, CA 94016" +266231,iPhone,1,700,10/30/19 17:12,"58 Madison St, San Francisco, CA 94016" +266231,Apple Airpods Headphones,1,150,10/30/19 17:12,"58 Madison St, San Francisco, CA 94016" +266232,AA Batteries (4-pack),2,3.84,10/09/19 20:35,"527 10th St, Dallas, TX 75001" +266233,USB-C Charging Cable,1,11.95,10/08/19 23:23,"425 Jackson St, New York City, NY 10001" +266234,Lightning Charging Cable,1,14.95,10/10/19 05:45,"8 Lakeview St, New York City, NY 10001" +266235,USB-C Charging Cable,1,11.95,10/15/19 11:13,"358 Forest St, Los Angeles, CA 90001" +266236,Bose SoundSport Headphones,1,99.99,10/23/19 13:44,"374 10th St, New York City, NY 10001" +266237,iPhone,1,700,10/28/19 16:05,"574 Dogwood St, Los Angeles, CA 90001" +266238,Macbook Pro Laptop,1,1700,10/01/19 10:19,"500 13th St, Dallas, TX 75001" +266239,USB-C Charging Cable,1,11.95,10/10/19 10:20,"504 Hickory St, Los Angeles, CA 90001" +266240,34in Ultrawide Monitor,1,379.99,10/15/19 23:15,"314 Church St, Los Angeles, CA 90001" +266241,Bose SoundSport Headphones,1,99.99,10/06/19 18:25,"868 Center St, Atlanta, GA 30301" +266242,iPhone,1,700,10/18/19 21:42,"195 Walnut St, Atlanta, GA 30301" +266242,Lightning Charging Cable,1,14.95,10/18/19 21:42,"195 Walnut St, Atlanta, GA 30301" +266243,Lightning Charging Cable,2,14.95,10/06/19 02:43,"125 Willow St, Los Angeles, CA 90001" +266244,AAA Batteries (4-pack),1,2.99,10/01/19 22:34,"308 Willow St, Atlanta, GA 30301" +266245,iPhone,1,700,10/12/19 19:24,"701 Church St, San Francisco, CA 94016" +266245,Lightning Charging Cable,1,14.95,10/12/19 19:24,"701 Church St, San Francisco, CA 94016" +266246,AA Batteries (4-pack),3,3.84,10/18/19 00:35,"478 Willow St, Austin, TX 73301" +266247,34in Ultrawide Monitor,1,379.99,10/01/19 20:01,"268 Jackson St, New York City, NY 10001" +266248,Bose SoundSport Headphones,1,99.99,10/04/19 21:39,"645 9th St, Boston, MA 02215" +266249,Flatscreen TV,1,300,10/19/19 07:19,"963 Main St, San Francisco, CA 94016" +266250,27in 4K Gaming Monitor,1,389.99,10/06/19 18:26,"834 Washington St, San Francisco, CA 94016" +266251,Bose SoundSport Headphones,1,99.99,10/26/19 09:48,"145 Lakeview St, Dallas, TX 75001" +266252,USB-C Charging Cable,1,11.95,10/18/19 09:59,"674 Chestnut St, Portland, OR 97035" +266253,27in FHD Monitor,1,149.99,10/24/19 22:33,"726 5th St, Los Angeles, CA 90001" +266254,Lightning Charging Cable,1,14.95,10/13/19 18:18,"969 Washington St, San Francisco, CA 94016" +266255,AA Batteries (4-pack),1,3.84,10/10/19 19:11,"815 Dogwood St, New York City, NY 10001" +266256,Lightning Charging Cable,1,14.95,10/09/19 18:33,"336 Washington St, San Francisco, CA 94016" +266257,AA Batteries (4-pack),1,3.84,10/09/19 18:04,"944 Johnson St, San Francisco, CA 94016" +266258,Apple Airpods Headphones,1,150,10/06/19 20:12,"990 Madison St, San Francisco, CA 94016" +266259,USB-C Charging Cable,1,11.95,10/14/19 21:38,"61 11th St, Boston, MA 02215" +266260,27in FHD Monitor,1,149.99,10/07/19 20:57,"94 Forest St, Portland, OR 97035" +266261,Wired Headphones,1,11.99,10/06/19 13:55,"926 Madison St, San Francisco, CA 94016" +266262,Wired Headphones,1,11.99,10/16/19 10:52,"927 South St, Los Angeles, CA 90001" +266263,20in Monitor,1,109.99,10/17/19 03:25,"150 Elm St, Dallas, TX 75001" +266264,Wired Headphones,1,11.99,10/01/19 19:56,"700 Cherry St, Boston, MA 02215" +266265,iPhone,1,700,10/24/19 13:01,"775 Elm St, Austin, TX 73301" +266265,Lightning Charging Cable,1,14.95,10/24/19 13:01,"775 Elm St, Austin, TX 73301" +266266,Google Phone,1,600,10/13/19 19:17,"333 13th St, San Francisco, CA 94016" +266267,USB-C Charging Cable,1,11.95,10/18/19 11:37,"876 8th St, Austin, TX 73301" +266268,Lightning Charging Cable,1,14.95,10/28/19 10:30,"374 Lincoln St, Atlanta, GA 30301" +266269,20in Monitor,1,109.99,10/24/19 17:08,"714 River St, San Francisco, CA 94016" +266270,iPhone,1,700,10/31/19 12:21,"770 9th St, Los Angeles, CA 90001" +266271,Apple Airpods Headphones,1,150,10/05/19 17:41,"306 Lincoln St, New York City, NY 10001" +266272,Lightning Charging Cable,1,14.95,10/27/19 02:48,"356 Maple St, Boston, MA 02215" +266273,Lightning Charging Cable,1,14.95,10/27/19 17:37,"187 7th St, Dallas, TX 75001" +266274,Bose SoundSport Headphones,1,99.99,10/03/19 15:24,"111 Park St, New York City, NY 10001" +266275,AAA Batteries (4-pack),1,2.99,10/28/19 15:56,"268 1st St, San Francisco, CA 94016" +266276,AA Batteries (4-pack),3,3.84,10/28/19 17:26,"825 Spruce St, Seattle, WA 98101" +266276,Wired Headphones,1,11.99,10/28/19 17:26,"825 Spruce St, Seattle, WA 98101" +266277,AA Batteries (4-pack),2,3.84,10/31/19 17:48,"688 Maple St, San Francisco, CA 94016" +266278,AA Batteries (4-pack),1,3.84,10/29/19 17:32,"416 Hickory St, Portland, OR 97035" +266279,USB-C Charging Cable,1,11.95,10/02/19 19:04,"861 13th St, New York City, NY 10001" +266280,AA Batteries (4-pack),1,3.84,10/31/19 10:57,"807 Willow St, Austin, TX 73301" +266281,AAA Batteries (4-pack),1,2.99,10/31/19 19:45,"660 Lincoln St, New York City, NY 10001" +266282,Lightning Charging Cable,1,14.95,10/06/19 18:03,"891 9th St, Atlanta, GA 30301" +266283,USB-C Charging Cable,1,11.95,10/21/19 11:42,"778 Center St, Los Angeles, CA 90001" +266284,Google Phone,1,600,10/23/19 22:33,"616 South St, Austin, TX 73301" +266285,AA Batteries (4-pack),1,3.84,10/12/19 10:11,"142 7th St, Atlanta, GA 30301" +266286,20in Monitor,1,109.99,10/13/19 18:51,"688 Main St, San Francisco, CA 94016" +266287,ThinkPad Laptop,1,999.99,10/21/19 14:11,"54 12th St, Seattle, WA 98101" +266288,Lightning Charging Cable,1,14.95,10/22/19 08:40,"78 Forest St, Portland, OR 97035" +266289,AA Batteries (4-pack),1,3.84,10/11/19 10:22,"600 Adams St, New York City, NY 10001" +266290,AA Batteries (4-pack),3,3.84,10/13/19 22:20,"851 Center St, New York City, NY 10001" +266291,USB-C Charging Cable,1,11.95,10/29/19 11:42,"512 Madison St, San Francisco, CA 94016" +266292,USB-C Charging Cable,1,11.95,10/26/19 12:29,"18 Lake St, Los Angeles, CA 90001" +266293,Wired Headphones,1,11.99,10/27/19 12:14,"243 4th St, Atlanta, GA 30301" +266294,AAA Batteries (4-pack),2,2.99,10/26/19 08:23,"959 Washington St, Seattle, WA 98101" +266295,Apple Airpods Headphones,1,150,10/14/19 08:17,"178 Lakeview St, San Francisco, CA 94016" +266296,USB-C Charging Cable,1,11.95,10/09/19 20:50,"995 Hill St, Austin, TX 73301" +266297,27in FHD Monitor,1,149.99,10/21/19 21:49,"585 West St, Los Angeles, CA 90001" +266298,Apple Airpods Headphones,1,150,10/10/19 15:35,"29 Park St, Los Angeles, CA 90001" +266299,USB-C Charging Cable,1,11.95,10/09/19 17:18,"381 Lakeview St, San Francisco, CA 94016" +266300,27in FHD Monitor,1,149.99,10/05/19 12:43,"648 5th St, San Francisco, CA 94016" +266301,LG Dryer,1,600.0,10/18/19 11:44,"964 Ridge St, Atlanta, GA 30301" +266302,ThinkPad Laptop,1,999.99,10/14/19 22:33,"60 2nd St, Los Angeles, CA 90001" +266302,USB-C Charging Cable,1,11.95,10/14/19 22:33,"60 2nd St, Los Angeles, CA 90001" +266303,USB-C Charging Cable,1,11.95,10/12/19 11:35,"47 Willow St, Boston, MA 02215" +266304,Apple Airpods Headphones,1,150,10/12/19 16:54,"483 Center St, Austin, TX 73301" +266305,USB-C Charging Cable,1,11.95,10/22/19 12:23,"58 Johnson St, New York City, NY 10001" +266306,AAA Batteries (4-pack),2,2.99,10/26/19 20:45,"344 Elm St, Dallas, TX 75001" +266307,Lightning Charging Cable,1,14.95,10/19/19 17:33,"561 Lincoln St, Austin, TX 73301" +266308,USB-C Charging Cable,1,11.95,10/06/19 20:16,"841 13th St, Dallas, TX 75001" +266309,Flatscreen TV,1,300,10/01/19 16:50,"935 Church St, San Francisco, CA 94016" +266310,Wired Headphones,1,11.99,10/29/19 13:41,"495 Spruce St, San Francisco, CA 94016" +266311,Wired Headphones,1,11.99,10/23/19 22:13,"596 6th St, New York City, NY 10001" +266312,LG Dryer,1,600.0,10/20/19 20:18,"296 Madison St, Los Angeles, CA 90001" +266313,Wired Headphones,1,11.99,10/21/19 12:08,"254 9th St, Los Angeles, CA 90001" +266314,AA Batteries (4-pack),2,3.84,10/22/19 15:46,"944 6th St, Seattle, WA 98101" +266315,AA Batteries (4-pack),1,3.84,10/27/19 18:42,"919 9th St, San Francisco, CA 94016" +266316,Google Phone,1,600,10/19/19 08:22,"531 Forest St, Austin, TX 73301" +266317,AA Batteries (4-pack),2,3.84,10/26/19 18:35,"396 Wilson St, New York City, NY 10001" +266318,Flatscreen TV,1,300,10/18/19 13:40,"308 5th St, New York City, NY 10001" +266319,Wired Headphones,1,11.99,10/13/19 12:22,"963 South St, San Francisco, CA 94016" +266320,AA Batteries (4-pack),1,3.84,10/30/19 18:38,"158 Washington St, San Francisco, CA 94016" +266321,34in Ultrawide Monitor,1,379.99,10/12/19 00:33,"245 Chestnut St, Los Angeles, CA 90001" +266322,AA Batteries (4-pack),1,3.84,10/24/19 10:44,"786 North St, New York City, NY 10001" +266323,27in FHD Monitor,1,149.99,10/30/19 17:45,"338 Church St, Boston, MA 02215" +266324,27in FHD Monitor,1,149.99,10/23/19 22:03,"763 11th St, Dallas, TX 75001" +266325,Vareebadd Phone,1,400,10/26/19 13:08,"384 Forest St, Los Angeles, CA 90001" +266326,27in FHD Monitor,1,149.99,10/02/19 19:25,"834 Church St, Austin, TX 73301" +266327,AAA Batteries (4-pack),2,2.99,10/17/19 22:04,"669 2nd St, Atlanta, GA 30301" +266328,Apple Airpods Headphones,1,150,10/18/19 22:40,"459 Cedar St, San Francisco, CA 94016" +266329,AA Batteries (4-pack),2,3.84,10/12/19 20:25,"256 Cedar St, Seattle, WA 98101" +266330,AAA Batteries (4-pack),1,2.99,10/26/19 22:27,"48 7th St, Dallas, TX 75001" +266331,Lightning Charging Cable,2,14.95,10/13/19 15:28,"482 Dogwood St, San Francisco, CA 94016" +266332,Apple Airpods Headphones,1,150,10/02/19 08:55,"960 Meadow St, Boston, MA 02215" +266333,Bose SoundSport Headphones,1,99.99,10/09/19 16:07,"336 Madison St, San Francisco, CA 94016" +266334,AA Batteries (4-pack),1,3.84,10/04/19 20:33,"249 Main St, San Francisco, CA 94016" +266335,Macbook Pro Laptop,1,1700,10/15/19 10:24,"317 South St, New York City, NY 10001" +266336,AA Batteries (4-pack),1,3.84,10/08/19 06:04,"754 2nd St, Portland, OR 97035" +266337,Lightning Charging Cable,1,14.95,10/22/19 11:45,"732 11th St, San Francisco, CA 94016" +266337,Wired Headphones,1,11.99,10/22/19 11:45,"732 11th St, San Francisco, CA 94016" +266338,Bose SoundSport Headphones,1,99.99,10/21/19 17:41,"370 14th St, New York City, NY 10001" +266339,AAA Batteries (4-pack),1,2.99,10/03/19 16:19,"23 Ridge St, Los Angeles, CA 90001" +266340,AA Batteries (4-pack),2,3.84,10/07/19 17:33,"674 Madison St, New York City, NY 10001" +266341,Apple Airpods Headphones,1,150,10/19/19 05:22,"393 Adams St, Boston, MA 02215" +266342,27in FHD Monitor,1,149.99,10/21/19 14:54,"775 14th St, Atlanta, GA 30301" +266343,Macbook Pro Laptop,1,1700,10/24/19 22:50,"315 Ridge St, Seattle, WA 98101" +266344,Apple Airpods Headphones,1,150,10/06/19 01:39,"423 North St, Los Angeles, CA 90001" +266345,AAA Batteries (4-pack),1,2.99,10/26/19 15:54,"670 13th St, Los Angeles, CA 90001" +266346,Flatscreen TV,1,300,10/30/19 19:39,"836 14th St, San Francisco, CA 94016" +266347,Lightning Charging Cable,1,14.95,10/15/19 15:11,"820 Lake St, Los Angeles, CA 90001" +266348,27in 4K Gaming Monitor,1,389.99,10/01/19 20:12,"230 Ridge St, Los Angeles, CA 90001" +266349,Flatscreen TV,1,300,10/25/19 19:25,"329 Madison St, Portland, OR 97035" +266350,iPhone,1,700,10/05/19 19:11,"518 Cedar St, Los Angeles, CA 90001" +266350,Wired Headphones,1,11.99,10/05/19 19:11,"518 Cedar St, Los Angeles, CA 90001" +266351,Lightning Charging Cable,1,14.95,10/16/19 17:24,"828 Lincoln St, San Francisco, CA 94016" +266352,Lightning Charging Cable,1,14.95,10/31/19 18:16,"302 Lakeview St, Los Angeles, CA 90001" +266353,Wired Headphones,1,11.99,10/04/19 08:03,"906 Jefferson St, Dallas, TX 75001" +266354,AAA Batteries (4-pack),1,2.99,10/19/19 11:13,"258 Walnut St, Atlanta, GA 30301" +266355,Bose SoundSport Headphones,1,99.99,10/31/19 12:02,"270 14th St, Boston, MA 02215" +266356,AA Batteries (4-pack),1,3.84,10/20/19 14:31,"604 Ridge St, Seattle, WA 98101" +266357,AA Batteries (4-pack),2,3.84,10/24/19 21:49,"885 Jackson St, Los Angeles, CA 90001" +266358,Wired Headphones,1,11.99,10/11/19 13:13,"594 6th St, Boston, MA 02215" +266359,Wired Headphones,1,11.99,10/05/19 09:05,"378 Washington St, San Francisco, CA 94016" +266360,iPhone,1,700,10/21/19 14:45,"410 Cherry St, Boston, MA 02215" +266361,AAA Batteries (4-pack),1,2.99,10/01/19 22:33,"279 Wilson St, San Francisco, CA 94016" +266362,Apple Airpods Headphones,1,150,10/06/19 21:44,"329 North St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +266363,Wired Headphones,1,11.99,10/14/19 17:18,"385 Adams St, Portland, OR 97035" +266364,Wired Headphones,1,11.99,10/06/19 14:30,"579 Walnut St, San Francisco, CA 94016" +266365,Bose SoundSport Headphones,1,99.99,10/11/19 21:01,"294 Pine St, Los Angeles, CA 90001" +266366,AA Batteries (4-pack),2,3.84,10/16/19 13:59,"320 5th St, Seattle, WA 98101" +266367,Lightning Charging Cable,1,14.95,10/08/19 18:18,"723 Ridge St, Boston, MA 02215" +266368,Google Phone,1,600,10/23/19 14:55,"698 8th St, Boston, MA 02215" +266369,Apple Airpods Headphones,1,150,10/22/19 22:14,"815 Jefferson St, San Francisco, CA 94016" +266370,Wired Headphones,1,11.99,10/18/19 07:58,"486 9th St, Dallas, TX 75001" +266371,27in FHD Monitor,1,149.99,10/29/19 19:06,"305 Adams St, San Francisco, CA 94016" +266372,Flatscreen TV,1,300,10/19/19 01:45,"637 Maple St, Portland, ME 04101" +266373,iPhone,1,700,10/01/19 12:02,"874 Walnut St, Dallas, TX 75001" +266374,Google Phone,1,600,11/01/19 01:32,"117 2nd St, San Francisco, CA 94016" +266374,Wired Headphones,2,11.99,11/01/19 01:32,"117 2nd St, San Francisco, CA 94016" +266375,AA Batteries (4-pack),1,3.84,10/07/19 16:14,"919 Center St, Boston, MA 02215" +266376,AA Batteries (4-pack),1,3.84,10/26/19 05:53,"344 Highland St, Portland, OR 97035" +266377,AAA Batteries (4-pack),1,2.99,10/26/19 14:23,"975 Wilson St, Seattle, WA 98101" +266378,AAA Batteries (4-pack),2,2.99,10/31/19 18:17,"643 6th St, New York City, NY 10001" +266379,AA Batteries (4-pack),1,3.84,10/28/19 18:40,"742 Sunset St, Seattle, WA 98101" +266380,20in Monitor,1,109.99,10/29/19 20:25,"635 Wilson St, Portland, OR 97035" +266381,AAA Batteries (4-pack),1,2.99,10/11/19 14:22,"771 South St, San Francisco, CA 94016" +266382,USB-C Charging Cable,1,11.95,10/19/19 22:45,"365 Spruce St, Portland, OR 97035" +266383,ThinkPad Laptop,1,999.99,10/02/19 18:36,"753 West St, San Francisco, CA 94016" +266384,Bose SoundSport Headphones,1,99.99,10/25/19 19:49,"472 Meadow St, New York City, NY 10001" +266385,AA Batteries (4-pack),2,3.84,10/15/19 15:32,"268 West St, New York City, NY 10001" +266386,Wired Headphones,1,11.99,10/31/19 12:57,"626 North St, Atlanta, GA 30301" +266387,Wired Headphones,1,11.99,10/10/19 21:59,"986 Walnut St, Austin, TX 73301" +266388,Lightning Charging Cable,1,14.95,10/12/19 23:42,"356 1st St, San Francisco, CA 94016" +266389,Lightning Charging Cable,1,14.95,10/18/19 18:51,"286 13th St, New York City, NY 10001" +266390,27in FHD Monitor,1,149.99,10/04/19 10:41,"661 Johnson St, Dallas, TX 75001" +266391,Flatscreen TV,1,300,10/22/19 05:19,"33 Johnson St, Los Angeles, CA 90001" +266392,20in Monitor,1,109.99,10/16/19 16:50,"40 Wilson St, Atlanta, GA 30301" +266392,27in FHD Monitor,1,149.99,10/16/19 16:50,"40 Wilson St, Atlanta, GA 30301" +266393,Flatscreen TV,1,300,10/12/19 01:57,"184 Forest St, Austin, TX 73301" +266394,Lightning Charging Cable,1,14.95,10/31/19 14:35,"618 Cherry St, Atlanta, GA 30301" +266395,AA Batteries (4-pack),1,3.84,10/19/19 21:56,"30 Wilson St, Boston, MA 02215" +266396,Wired Headphones,1,11.99,10/05/19 17:40,"868 Pine St, Los Angeles, CA 90001" +266397,iPhone,1,700,10/04/19 16:59,"591 Lakeview St, San Francisco, CA 94016" +266398,Wired Headphones,1,11.99,10/29/19 06:31,"539 11th St, San Francisco, CA 94016" +266399,iPhone,1,700,10/13/19 16:33,"512 Elm St, Atlanta, GA 30301" +266399,Lightning Charging Cable,1,14.95,10/13/19 16:33,"512 Elm St, Atlanta, GA 30301" +266399,Apple Airpods Headphones,1,150,10/13/19 16:33,"512 Elm St, Atlanta, GA 30301" +266399,Wired Headphones,1,11.99,10/13/19 16:33,"512 Elm St, Atlanta, GA 30301" +266400,Bose SoundSport Headphones,1,99.99,10/18/19 14:44,"34 Cherry St, Los Angeles, CA 90001" +266401,Apple Airpods Headphones,1,150,10/05/19 08:43,"388 Park St, New York City, NY 10001" +266402,Apple Airpods Headphones,1,150,10/24/19 23:22,"954 11th St, San Francisco, CA 94016" +266403,Apple Airpods Headphones,1,150,10/09/19 13:44,"406 10th St, Dallas, TX 75001" +266404,Lightning Charging Cable,1,14.95,10/29/19 07:15,"742 Lakeview St, New York City, NY 10001" +266405,Wired Headphones,1,11.99,10/06/19 04:42,"678 Washington St, Los Angeles, CA 90001" +266406,Bose SoundSport Headphones,1,99.99,10/04/19 16:16,"242 North St, Los Angeles, CA 90001" +266407,USB-C Charging Cable,1,11.95,10/03/19 07:39,"12 Cedar St, Seattle, WA 98101" +266408,AA Batteries (4-pack),1,3.84,10/02/19 12:41,"244 Elm St, New York City, NY 10001" +266409,Lightning Charging Cable,1,14.95,10/12/19 14:39,"849 West St, Los Angeles, CA 90001" +266410,AAA Batteries (4-pack),1,2.99,10/30/19 19:56,"623 10th St, Atlanta, GA 30301" +266411,27in FHD Monitor,1,149.99,10/16/19 20:53,"837 Walnut St, Portland, OR 97035" +266412,Vareebadd Phone,1,400,10/17/19 12:08,"686 Adams St, San Francisco, CA 94016" +266412,USB-C Charging Cable,1,11.95,10/17/19 12:08,"686 Adams St, San Francisco, CA 94016" +266413,Apple Airpods Headphones,1,150,10/30/19 18:24,"252 River St, San Francisco, CA 94016" +266414,Apple Airpods Headphones,1,150,10/12/19 19:24,"853 Main St, Austin, TX 73301" +266415,AAA Batteries (4-pack),3,2.99,10/01/19 18:25,"856 Lincoln St, Atlanta, GA 30301" +266416,34in Ultrawide Monitor,1,379.99,10/12/19 18:47,"816 Lincoln St, Seattle, WA 98101" +266417,Wired Headphones,1,11.99,10/19/19 17:09,"739 Wilson St, Dallas, TX 75001" +266418,iPhone,1,700,10/12/19 20:46,"605 4th St, Atlanta, GA 30301" +266419,Flatscreen TV,1,300,10/01/19 08:23,"200 2nd St, New York City, NY 10001" +266420,Lightning Charging Cable,1,14.95,10/18/19 07:17,"325 Wilson St, Austin, TX 73301" +266421,Wired Headphones,1,11.99,10/30/19 18:11,"316 Chestnut St, San Francisco, CA 94016" +266422,AA Batteries (4-pack),1,3.84,10/23/19 17:14,"648 Elm St, Los Angeles, CA 90001" +266423,Wired Headphones,1,11.99,11/01/19 02:18,"953 North St, Seattle, WA 98101" +266424,Apple Airpods Headphones,1,150,10/16/19 06:58,"264 5th St, Atlanta, GA 30301" +266425,Wired Headphones,2,11.99,10/28/19 18:06,"895 7th St, Portland, OR 97035" +266426,Lightning Charging Cable,1,14.95,10/06/19 20:17,"456 Lakeview St, Portland, OR 97035" +266427,20in Monitor,1,109.99,10/04/19 22:29,"880 Center St, Los Angeles, CA 90001" +266428,20in Monitor,1,109.99,10/07/19 11:27,"942 5th St, Portland, OR 97035" +266429,AA Batteries (4-pack),1,3.84,10/30/19 12:34,"601 5th St, San Francisco, CA 94016" +266430,Bose SoundSport Headphones,1,99.99,10/30/19 10:23,"902 6th St, New York City, NY 10001" +266431,USB-C Charging Cable,1,11.95,10/25/19 16:16,"594 Church St, Los Angeles, CA 90001" +266432,AA Batteries (4-pack),1,3.84,10/16/19 16:57,"763 Park St, Seattle, WA 98101" +266433,Apple Airpods Headphones,1,150,10/28/19 23:12,"542 Lakeview St, Seattle, WA 98101" +266434,Flatscreen TV,1,300,10/02/19 09:17,"402 11th St, Atlanta, GA 30301" +266435,20in Monitor,1,109.99,10/29/19 14:53,"384 11th St, Los Angeles, CA 90001" +266436,Wired Headphones,1,11.99,10/23/19 21:12,"767 Forest St, Atlanta, GA 30301" +266437,AAA Batteries (4-pack),4,2.99,10/02/19 20:18,"17 Forest St, San Francisco, CA 94016" +266438,Wired Headphones,1,11.99,10/10/19 14:00,"188 Jefferson St, Los Angeles, CA 90001" +266439,AAA Batteries (4-pack),1,2.99,10/18/19 11:38,"107 Lincoln St, Los Angeles, CA 90001" +266440,Wired Headphones,1,11.99,10/04/19 20:08,"267 6th St, Boston, MA 02215" +266441,AAA Batteries (4-pack),2,2.99,10/17/19 14:13,"249 Willow St, Seattle, WA 98101" +266442,Flatscreen TV,1,300,10/19/19 09:48,"674 Ridge St, Dallas, TX 75001" +266443,Wired Headphones,1,11.99,10/01/19 12:37,"260 Church St, Portland, OR 97035" +266444,Flatscreen TV,1,300,10/15/19 22:28,"40 Sunset St, Boston, MA 02215" +266445,27in 4K Gaming Monitor,1,389.99,10/22/19 20:52,"151 South St, New York City, NY 10001" +266446,Wired Headphones,1,11.99,10/20/19 01:19,"635 Maple St, Seattle, WA 98101" +266447,Lightning Charging Cable,1,14.95,10/13/19 18:06,"384 Hickory St, Seattle, WA 98101" +266448,USB-C Charging Cable,1,11.95,10/18/19 19:24,"854 2nd St, Boston, MA 02215" +266449,Apple Airpods Headphones,1,150,10/19/19 19:55,"791 Dogwood St, San Francisco, CA 94016" +266450,Wired Headphones,1,11.99,10/14/19 21:39,"717 Adams St, Los Angeles, CA 90001" +266451,Apple Airpods Headphones,1,150,10/14/19 11:01,"547 8th St, Atlanta, GA 30301" +266452,Lightning Charging Cable,1,14.95,10/02/19 20:38,"482 Church St, Los Angeles, CA 90001" +266453,27in FHD Monitor,1,149.99,10/22/19 18:36,"31 11th St, Atlanta, GA 30301" +266454,Lightning Charging Cable,1,14.95,10/29/19 09:58,"755 Elm St, New York City, NY 10001" +266455,Apple Airpods Headphones,1,150,10/21/19 11:48,"2 Walnut St, San Francisco, CA 94016" +266456,Apple Airpods Headphones,1,150,10/12/19 17:02,"367 7th St, Atlanta, GA 30301" +266457,Vareebadd Phone,1,400,10/08/19 00:54,"236 Lake St, Seattle, WA 98101" +266457,Bose SoundSport Headphones,1,99.99,10/08/19 00:54,"236 Lake St, Seattle, WA 98101" +266458,20in Monitor,1,109.99,10/10/19 08:50,"178 10th St, San Francisco, CA 94016" +266459,LG Dryer,1,600.0,10/20/19 02:01,"88 Hickory St, Seattle, WA 98101" +266460,AA Batteries (4-pack),1,3.84,10/31/19 19:01,"86 6th St, Portland, OR 97035" +266461,Flatscreen TV,1,300,10/07/19 08:16,"693 Center St, Los Angeles, CA 90001" +266462,27in FHD Monitor,1,149.99,10/28/19 09:01,"333 Hill St, Portland, OR 97035" +266463,Lightning Charging Cable,1,14.95,10/17/19 15:35,"730 Ridge St, New York City, NY 10001" +266464,Google Phone,1,600,10/28/19 11:25,"490 1st St, San Francisco, CA 94016" +266465,USB-C Charging Cable,1,11.95,10/30/19 14:45,"522 Elm St, New York City, NY 10001" +266466,Wired Headphones,1,11.99,10/17/19 19:48,"767 8th St, Portland, OR 97035" +266467,iPhone,1,700,10/11/19 23:17,"214 Forest St, New York City, NY 10001" +266467,Apple Airpods Headphones,1,150,10/11/19 23:17,"214 Forest St, New York City, NY 10001" +266468,Lightning Charging Cable,1,14.95,10/02/19 00:19,"873 River St, San Francisco, CA 94016" +266469,USB-C Charging Cable,1,11.95,10/21/19 09:20,"762 Hill St, San Francisco, CA 94016" +266470,27in FHD Monitor,1,149.99,10/11/19 11:19,"862 10th St, San Francisco, CA 94016" +266471,Wired Headphones,1,11.99,10/13/19 21:40,"685 Chestnut St, New York City, NY 10001" +266472,Flatscreen TV,1,300,10/29/19 13:31,"673 1st St, Los Angeles, CA 90001" +266473,Apple Airpods Headphones,1,150,10/14/19 19:05,"289 5th St, Boston, MA 02215" +266474,27in 4K Gaming Monitor,1,389.99,10/03/19 11:32,"709 Elm St, New York City, NY 10001" +266475,USB-C Charging Cable,1,11.95,10/13/19 12:20,"349 Hickory St, New York City, NY 10001" +266476,AAA Batteries (4-pack),2,2.99,10/04/19 13:38,"700 Church St, San Francisco, CA 94016" +266477,USB-C Charging Cable,1,11.95,10/16/19 19:20,"52 Forest St, Atlanta, GA 30301" +266478,Apple Airpods Headphones,1,150,10/01/19 16:09,"176 Jackson St, Dallas, TX 75001" +266479,AAA Batteries (4-pack),1,2.99,10/01/19 09:03,"117 5th St, San Francisco, CA 94016" +266480,Vareebadd Phone,1,400,10/13/19 13:12,"338 8th St, Los Angeles, CA 90001" +266480,USB-C Charging Cable,1,11.95,10/13/19 13:12,"338 8th St, Los Angeles, CA 90001" +266481,AA Batteries (4-pack),1,3.84,10/03/19 07:49,"185 Lakeview St, Seattle, WA 98101" +266482,20in Monitor,1,109.99,10/23/19 22:45,"476 Hill St, San Francisco, CA 94016" +266483,34in Ultrawide Monitor,1,379.99,10/22/19 22:20,"840 10th St, San Francisco, CA 94016" +266484,AA Batteries (4-pack),3,3.84,10/02/19 16:26,"555 Adams St, Boston, MA 02215" +266485,USB-C Charging Cable,1,11.95,10/30/19 17:59,"703 Wilson St, Portland, OR 97035" +266486,AA Batteries (4-pack),1,3.84,10/11/19 14:39,"558 Ridge St, San Francisco, CA 94016" +266487,USB-C Charging Cable,1,11.95,10/08/19 08:39,"648 Madison St, San Francisco, CA 94016" +266488,Lightning Charging Cable,2,14.95,10/31/19 13:58,"174 North St, San Francisco, CA 94016" +266489,Lightning Charging Cable,1,14.95,10/11/19 22:23,"370 Pine St, Atlanta, GA 30301" +266490,Vareebadd Phone,1,400,10/03/19 14:42,"223 Pine St, Seattle, WA 98101" +266490,USB-C Charging Cable,1,11.95,10/03/19 14:42,"223 Pine St, Seattle, WA 98101" +266491,Lightning Charging Cable,1,14.95,10/27/19 12:17,"937 Cedar St, New York City, NY 10001" +266492,Apple Airpods Headphones,1,150,10/20/19 09:35,"108 4th St, Portland, OR 97035" +266493,AA Batteries (4-pack),1,3.84,10/23/19 10:38,"565 8th St, Dallas, TX 75001" +266494,AAA Batteries (4-pack),1,2.99,10/21/19 13:05,"670 Jackson St, Dallas, TX 75001" +266495,ThinkPad Laptop,1,999.99,10/29/19 20:47,"494 Lincoln St, Austin, TX 73301" +266496,AA Batteries (4-pack),1,3.84,10/27/19 17:42,"776 Church St, New York City, NY 10001" +266497,Apple Airpods Headphones,1,150,10/28/19 19:50,"743 8th St, Dallas, TX 75001" +266498,Apple Airpods Headphones,1,150,10/05/19 13:36,"395 Madison St, New York City, NY 10001" +266499,Apple Airpods Headphones,1,150,10/13/19 17:49,"479 Elm St, Austin, TX 73301" +266500,Apple Airpods Headphones,1,150,10/29/19 13:30,"164 Wilson St, Dallas, TX 75001" +266501,27in FHD Monitor,1,149.99,10/11/19 17:56,"365 Washington St, Portland, OR 97035" +266502,USB-C Charging Cable,1,11.95,10/12/19 16:30,"565 Cedar St, Dallas, TX 75001" +266503,AAA Batteries (4-pack),2,2.99,10/23/19 19:54,"290 Ridge St, Boston, MA 02215" +266504,Wired Headphones,1,11.99,10/12/19 20:44,"863 North St, Seattle, WA 98101" +266505,AAA Batteries (4-pack),1,2.99,10/29/19 20:44,"901 4th St, San Francisco, CA 94016" +266506,Bose SoundSport Headphones,1,99.99,10/19/19 09:00,"957 Cherry St, Dallas, TX 75001" +266507,Lightning Charging Cable,1,14.95,10/08/19 17:30,"445 Madison St, Dallas, TX 75001" +266508,USB-C Charging Cable,1,11.95,10/27/19 17:05,"393 Meadow St, Los Angeles, CA 90001" +266509,AAA Batteries (4-pack),1,2.99,10/12/19 16:25,"140 West St, Seattle, WA 98101" +266510,LG Washing Machine,1,600.0,10/18/19 18:53,"404 8th St, Los Angeles, CA 90001" +266511,Wired Headphones,1,11.99,10/22/19 11:20,"169 Elm St, San Francisco, CA 94016" +266512,AA Batteries (4-pack),1,3.84,10/09/19 15:43,"100 Meadow St, Seattle, WA 98101" +266513,Wired Headphones,1,11.99,10/18/19 14:08,"132 Center St, Los Angeles, CA 90001" +266514,27in 4K Gaming Monitor,1,389.99,10/20/19 18:09,"421 6th St, San Francisco, CA 94016" +266515,27in FHD Monitor,1,149.99,10/24/19 15:03,"668 12th St, New York City, NY 10001" +266516,Wired Headphones,1,11.99,10/21/19 11:52,"940 Willow St, Los Angeles, CA 90001" +266517,USB-C Charging Cable,1,11.95,10/10/19 19:45,"629 Lincoln St, Los Angeles, CA 90001" +266518,Lightning Charging Cable,1,14.95,10/29/19 15:20,"780 Main St, San Francisco, CA 94016" +266519,AAA Batteries (4-pack),1,2.99,10/05/19 21:22,"740 Center St, Atlanta, GA 30301" +266520,Wired Headphones,1,11.99,10/29/19 11:50,"645 8th St, Seattle, WA 98101" +266521,USB-C Charging Cable,1,11.95,10/20/19 15:48,"620 4th St, San Francisco, CA 94016" +266522,Macbook Pro Laptop,1,1700,10/18/19 20:18,"775 Johnson St, Boston, MA 02215" +266523,Lightning Charging Cable,1,14.95,10/13/19 23:21,"883 Johnson St, San Francisco, CA 94016" +266524,Wired Headphones,1,11.99,10/16/19 12:12,"892 Lakeview St, Boston, MA 02215" +266525,AA Batteries (4-pack),1,3.84,10/30/19 10:21,"419 Hill St, Austin, TX 73301" +266526,AAA Batteries (4-pack),1,2.99,10/12/19 15:16,"759 Madison St, New York City, NY 10001" +266527,Google Phone,1,600,10/01/19 13:01,"700 6th St, San Francisco, CA 94016" +266527,Wired Headphones,2,11.99,10/01/19 13:01,"700 6th St, San Francisco, CA 94016" +266528,AA Batteries (4-pack),1,3.84,10/03/19 06:16,"984 Chestnut St, Boston, MA 02215" +266529,AAA Batteries (4-pack),1,2.99,10/21/19 20:58,"823 Lakeview St, New York City, NY 10001" +266530,Bose SoundSport Headphones,1,99.99,10/29/19 22:26,"83 Elm St, Dallas, TX 75001" +266531,AAA Batteries (4-pack),1,2.99,10/14/19 17:54,"27 8th St, San Francisco, CA 94016" +266532,Bose SoundSport Headphones,1,99.99,10/24/19 08:23,"700 South St, New York City, NY 10001" +266533,Lightning Charging Cable,1,14.95,10/08/19 14:59,"666 Elm St, Seattle, WA 98101" +266534,Google Phone,1,600,10/16/19 15:40,"710 Forest St, Los Angeles, CA 90001" +266534,USB-C Charging Cable,1,11.95,10/16/19 15:40,"710 Forest St, Los Angeles, CA 90001" +266535,Bose SoundSport Headphones,1,99.99,10/24/19 11:39,"55 Elm St, Los Angeles, CA 90001" +266535,Wired Headphones,1,11.99,10/24/19 11:39,"55 Elm St, Los Angeles, CA 90001" +266536,Lightning Charging Cable,1,14.95,10/05/19 16:24,"661 Dogwood St, San Francisco, CA 94016" +266537,AA Batteries (4-pack),2,3.84,10/04/19 11:17,"762 7th St, San Francisco, CA 94016" +266538,AA Batteries (4-pack),2,3.84,10/16/19 16:28,"638 Ridge St, Portland, OR 97035" +266539,Wired Headphones,1,11.99,10/09/19 14:02,"603 Hickory St, Los Angeles, CA 90001" +266540,27in 4K Gaming Monitor,1,389.99,10/06/19 08:01,"469 Forest St, Portland, OR 97035" +266541,USB-C Charging Cable,1,11.95,10/03/19 05:27,"275 Chestnut St, Atlanta, GA 30301" +266542,27in 4K Gaming Monitor,1,389.99,10/28/19 18:46,"75 Cherry St, San Francisco, CA 94016" +266543,Google Phone,1,600,10/10/19 18:35,"178 10th St, Atlanta, GA 30301" +266544,AAA Batteries (4-pack),1,2.99,10/11/19 17:03,"409 Lakeview St, New York City, NY 10001" +266545,Wired Headphones,2,11.99,10/29/19 16:12,"525 Jefferson St, Seattle, WA 98101" +266546,Lightning Charging Cable,1,14.95,10/03/19 08:35,"74 Jefferson St, Seattle, WA 98101" +266547,Wired Headphones,1,11.99,10/29/19 12:08,"273 Chestnut St, San Francisco, CA 94016" +266548,Macbook Pro Laptop,1,1700,10/31/19 19:52,"608 Walnut St, Los Angeles, CA 90001" +266549,AAA Batteries (4-pack),3,2.99,10/05/19 22:05,"981 West St, Los Angeles, CA 90001" +266550,27in 4K Gaming Monitor,1,389.99,10/05/19 14:08,"983 11th St, Dallas, TX 75001" +266551,27in 4K Gaming Monitor,1,389.99,10/10/19 09:33,"930 Adams St, Dallas, TX 75001" +266552,AAA Batteries (4-pack),1,2.99,10/13/19 18:27,"243 Wilson St, Dallas, TX 75001" +266553,Bose SoundSport Headphones,1,99.99,10/02/19 10:04,"925 13th St, New York City, NY 10001" +266554,Bose SoundSport Headphones,1,99.99,10/20/19 01:54,"1 Johnson St, Dallas, TX 75001" +266555,27in 4K Gaming Monitor,1,389.99,10/02/19 18:07,"153 Sunset St, San Francisco, CA 94016" +266556,iPhone,1,700,10/22/19 20:42,"2 Highland St, New York City, NY 10001" +266557,USB-C Charging Cable,1,11.95,10/06/19 13:50,"359 9th St, Seattle, WA 98101" +266558,iPhone,1,700,10/24/19 20:50,"795 2nd St, Los Angeles, CA 90001" +266559,USB-C Charging Cable,1,11.95,10/15/19 08:38,"18 10th St, Los Angeles, CA 90001" +266560,27in 4K Gaming Monitor,1,389.99,10/16/19 12:38,"69 Lincoln St, San Francisco, CA 94016" +266561,USB-C Charging Cable,2,11.95,10/16/19 11:04,"402 Chestnut St, San Francisco, CA 94016" +266561,Apple Airpods Headphones,1,150,10/16/19 11:04,"402 Chestnut St, San Francisco, CA 94016" +266562,Bose SoundSport Headphones,1,99.99,10/25/19 17:58,"792 Cedar St, Austin, TX 73301" +266563,Flatscreen TV,1,300,10/07/19 21:26,"134 Dogwood St, New York City, NY 10001" +266564,USB-C Charging Cable,2,11.95,10/23/19 16:36,"458 Sunset St, Atlanta, GA 30301" +266565,AAA Batteries (4-pack),1,2.99,10/05/19 18:48,"512 Lake St, Los Angeles, CA 90001" +266566,iPhone,1,700,10/31/19 19:16,"456 4th St, Los Angeles, CA 90001" +266566,Lightning Charging Cable,1,14.95,10/31/19 19:16,"456 4th St, Los Angeles, CA 90001" +266566,Wired Headphones,1,11.99,10/31/19 19:16,"456 4th St, Los Angeles, CA 90001" +266567,Macbook Pro Laptop,1,1700,10/20/19 17:23,"878 Jackson St, Boston, MA 02215" +266568,USB-C Charging Cable,1,11.95,10/01/19 18:41,"635 Dogwood St, Portland, OR 97035" +266569,AA Batteries (4-pack),1,3.84,10/01/19 20:56,"99 Hickory St, Austin, TX 73301" +266570,AAA Batteries (4-pack),2,2.99,10/08/19 21:21,"940 West St, San Francisco, CA 94016" +266571,iPhone,1,700,10/02/19 20:11,"448 Pine St, Dallas, TX 75001" +266571,Wired Headphones,1,11.99,10/02/19 20:11,"448 Pine St, Dallas, TX 75001" +266572,Macbook Pro Laptop,1,1700,10/22/19 23:03,"815 Park St, Portland, OR 97035" +266573,Lightning Charging Cable,1,14.95,10/04/19 10:23,"882 2nd St, Portland, OR 97035" +266574,Apple Airpods Headphones,1,150,10/25/19 09:18,"836 Johnson St, San Francisco, CA 94016" +266575,27in 4K Gaming Monitor,1,389.99,10/14/19 11:10,"738 Cedar St, Dallas, TX 75001" +266576,Bose SoundSport Headphones,1,99.99,10/05/19 17:39,"187 2nd St, New York City, NY 10001" +266577,USB-C Charging Cable,2,11.95,10/27/19 18:57,"568 Hill St, New York City, NY 10001" +266578,AAA Batteries (4-pack),1,2.99,10/12/19 10:17,"704 Jackson St, San Francisco, CA 94016" +266579,27in FHD Monitor,1,149.99,10/30/19 07:03,"876 14th St, Portland, OR 97035" +266580,27in FHD Monitor,1,149.99,10/28/19 17:38,"119 4th St, New York City, NY 10001" +266581,Wired Headphones,1,11.99,10/05/19 17:48,"392 Sunset St, Los Angeles, CA 90001" +266582,Wired Headphones,2,11.99,10/29/19 06:23,"12 Spruce St, Los Angeles, CA 90001" +266583,USB-C Charging Cable,1,11.95,10/31/19 01:12,"292 Elm St, New York City, NY 10001" +266584,Lightning Charging Cable,1,14.95,10/07/19 08:02,"294 9th St, Los Angeles, CA 90001" +266585,Google Phone,1,600,10/14/19 09:17,"399 5th St, Boston, MA 02215" +266586,Lightning Charging Cable,1,14.95,10/17/19 10:16,"940 12th St, San Francisco, CA 94016" +266587,AAA Batteries (4-pack),4,2.99,10/29/19 12:27,"750 Jackson St, Boston, MA 02215" +266588,Wired Headphones,1,11.99,10/21/19 14:14,"651 6th St, Los Angeles, CA 90001" +266589,AA Batteries (4-pack),1,3.84,10/08/19 20:40,"562 Madison St, Dallas, TX 75001" +266590,AA Batteries (4-pack),1,3.84,10/10/19 04:51,"186 8th St, San Francisco, CA 94016" +266591,AA Batteries (4-pack),1,3.84,10/23/19 11:57,"323 5th St, Los Angeles, CA 90001" +266592,27in FHD Monitor,1,149.99,10/05/19 12:32,"586 West St, Los Angeles, CA 90001" +266593,AA Batteries (4-pack),2,3.84,10/30/19 13:16,"497 Lakeview St, Seattle, WA 98101" +266594,Lightning Charging Cable,1,14.95,10/02/19 03:23,"474 Spruce St, Boston, MA 02215" +266595,AAA Batteries (4-pack),2,2.99,10/06/19 00:22,"620 13th St, New York City, NY 10001" +266596,AAA Batteries (4-pack),1,2.99,10/05/19 17:45,"87 Hickory St, Los Angeles, CA 90001" +266597,AAA Batteries (4-pack),1,2.99,10/07/19 18:23,"400 Willow St, San Francisco, CA 94016" +266598,AAA Batteries (4-pack),2,2.99,10/06/19 08:55,"976 Cedar St, Los Angeles, CA 90001" +266599,Bose SoundSport Headphones,1,99.99,10/29/19 15:32,"853 9th St, San Francisco, CA 94016" +266600,Flatscreen TV,1,300,10/23/19 01:19,"551 6th St, New York City, NY 10001" +266601,20in Monitor,1,109.99,10/05/19 09:23,"538 Chestnut St, Boston, MA 02215" +266602,Wired Headphones,1,11.99,10/10/19 17:08,"991 Hill St, Dallas, TX 75001" +266603,Lightning Charging Cable,1,14.95,10/14/19 10:37,"204 Adams St, Austin, TX 73301" +266604,Apple Airpods Headphones,1,150,10/24/19 14:37,"109 1st St, Atlanta, GA 30301" +266605,Bose SoundSport Headphones,1,99.99,10/16/19 23:21,"525 Lakeview St, Portland, OR 97035" +266606,AA Batteries (4-pack),2,3.84,10/25/19 07:53,"625 River St, San Francisco, CA 94016" +266607,Wired Headphones,1,11.99,10/31/19 15:29,"260 Sunset St, Boston, MA 02215" +266608,Lightning Charging Cable,1,14.95,10/14/19 20:15,"942 Madison St, Los Angeles, CA 90001" +266609,ThinkPad Laptop,1,999.99,10/27/19 14:04,"318 Cherry St, Atlanta, GA 30301" +266610,27in FHD Monitor,1,149.99,10/23/19 00:19,"649 2nd St, San Francisco, CA 94016" +266611,USB-C Charging Cable,1,11.95,10/10/19 13:23,"813 5th St, San Francisco, CA 94016" +266612,Lightning Charging Cable,1,14.95,10/20/19 19:39,"204 7th St, San Francisco, CA 94016" +266613,AA Batteries (4-pack),1,3.84,10/14/19 12:16,"659 10th St, Los Angeles, CA 90001" +266614,Bose SoundSport Headphones,1,99.99,10/10/19 09:18,"857 Ridge St, Seattle, WA 98101" +266615,USB-C Charging Cable,1,11.95,10/13/19 10:20,"668 South St, Los Angeles, CA 90001" +266616,Bose SoundSport Headphones,1,99.99,10/17/19 20:10,"120 Johnson St, San Francisco, CA 94016" +266617,Bose SoundSport Headphones,1,99.99,10/27/19 18:32,"20 Willow St, Atlanta, GA 30301" +266618,Lightning Charging Cable,1,14.95,10/22/19 10:29,"63 Ridge St, Portland, OR 97035" +266619,Wired Headphones,1,11.99,10/25/19 10:03,"738 Jackson St, Los Angeles, CA 90001" +266620,34in Ultrawide Monitor,1,379.99,10/02/19 16:10,"148 Church St, Portland, OR 97035" +266621,27in 4K Gaming Monitor,1,389.99,10/02/19 09:58,"109 Pine St, Los Angeles, CA 90001" +266622,Apple Airpods Headphones,1,150,10/27/19 13:32,"205 Jackson St, Portland, ME 04101" +266623,Wired Headphones,1,11.99,10/02/19 21:03,"982 Sunset St, San Francisco, CA 94016" +266624,USB-C Charging Cable,1,11.95,10/23/19 11:47,"653 Chestnut St, Portland, ME 04101" +266625,AA Batteries (4-pack),1,3.84,10/01/19 09:28,"144 Pine St, San Francisco, CA 94016" +266626,AA Batteries (4-pack),1,3.84,10/15/19 23:48,"489 Spruce St, Los Angeles, CA 90001" +266627,Flatscreen TV,1,300,10/24/19 20:21,"419 North St, Portland, OR 97035" +266628,Apple Airpods Headphones,1,150,10/01/19 12:08,"629 Church St, San Francisco, CA 94016" +266629,USB-C Charging Cable,1,11.95,10/29/19 18:47,"786 Ridge St, San Francisco, CA 94016" +266630,34in Ultrawide Monitor,1,379.99,10/30/19 15:14,"426 5th St, San Francisco, CA 94016" +266631,Wired Headphones,1,11.99,10/26/19 21:27,"792 5th St, New York City, NY 10001" +266632,Lightning Charging Cable,1,14.95,10/24/19 21:08,"987 Pine St, Portland, OR 97035" +266633,Apple Airpods Headphones,1,150,10/19/19 16:34,"202 Lincoln St, San Francisco, CA 94016" +266634,Macbook Pro Laptop,1,1700,10/27/19 04:53,"597 Willow St, San Francisco, CA 94016" +266635,USB-C Charging Cable,1,11.95,10/21/19 11:33,"283 4th St, Dallas, TX 75001" +266636,Wired Headphones,2,11.99,10/03/19 16:14,"144 Washington St, Portland, ME 04101" +266637,USB-C Charging Cable,1,11.95,10/20/19 11:09,"953 Chestnut St, New York City, NY 10001" +266638,AAA Batteries (4-pack),1,2.99,10/12/19 16:05,"769 North St, New York City, NY 10001" +266639,Lightning Charging Cable,2,14.95,10/23/19 16:16,"522 11th St, San Francisco, CA 94016" +266640,Bose SoundSport Headphones,1,99.99,10/29/19 01:56,"355 Ridge St, Boston, MA 02215" +266641,Lightning Charging Cable,1,14.95,10/19/19 00:01,"333 Walnut St, San Francisco, CA 94016" +266642,iPhone,1,700,10/02/19 18:06,"917 Dogwood St, Atlanta, GA 30301" +266643,Bose SoundSport Headphones,1,99.99,10/16/19 17:19,"735 North St, Boston, MA 02215" +266644,AAA Batteries (4-pack),1,2.99,10/30/19 20:23,"387 Church St, Boston, MA 02215" +266645,USB-C Charging Cable,1,11.95,10/18/19 19:03,"58 Spruce St, Los Angeles, CA 90001" +266646,27in 4K Gaming Monitor,1,389.99,10/17/19 21:20,"326 Cedar St, Atlanta, GA 30301" +266647,34in Ultrawide Monitor,1,379.99,10/27/19 13:22,"709 7th St, Austin, TX 73301" +266648,Flatscreen TV,1,300,10/03/19 15:07,"163 1st St, San Francisco, CA 94016" +266649,34in Ultrawide Monitor,1,379.99,10/19/19 22:31,"230 Ridge St, San Francisco, CA 94016" +266650,Wired Headphones,1,11.99,10/17/19 14:40,"65 11th St, Atlanta, GA 30301" +266651,Bose SoundSport Headphones,1,99.99,10/14/19 14:38,"536 13th St, San Francisco, CA 94016" +266652,Bose SoundSport Headphones,1,99.99,10/28/19 18:36,"970 Lakeview St, Los Angeles, CA 90001" +266653,AAA Batteries (4-pack),1,2.99,10/05/19 13:54,"863 Hickory St, Austin, TX 73301" +266654,LG Dryer,1,600.0,10/16/19 06:27,"259 Spruce St, Dallas, TX 75001" +266655,AAA Batteries (4-pack),3,2.99,10/13/19 05:14,"519 Hill St, Boston, MA 02215" +266656,USB-C Charging Cable,1,11.95,10/01/19 17:05,"284 Lakeview St, New York City, NY 10001" +266657,AAA Batteries (4-pack),1,2.99,10/11/19 03:16,"628 1st St, Portland, OR 97035" +266658,AA Batteries (4-pack),2,3.84,10/17/19 16:53,"360 Pine St, San Francisco, CA 94016" +266659,AA Batteries (4-pack),1,3.84,10/29/19 16:32,"505 Lincoln St, Dallas, TX 75001" +266660,AAA Batteries (4-pack),1,2.99,10/31/19 06:30,"861 14th St, Boston, MA 02215" +266661,Macbook Pro Laptop,1,1700,10/09/19 17:06,"876 Walnut St, San Francisco, CA 94016" +266662,AA Batteries (4-pack),2,3.84,10/29/19 12:03,"208 Maple St, Los Angeles, CA 90001" +266663,USB-C Charging Cable,1,11.95,10/29/19 15:16,"376 Adams St, Los Angeles, CA 90001" +266664,Lightning Charging Cable,1,14.95,10/14/19 18:26,"812 Washington St, New York City, NY 10001" +266665,Apple Airpods Headphones,1,150,10/24/19 14:09,"827 Wilson St, Portland, OR 97035" +266666,iPhone,1,700,10/10/19 10:36,"783 Willow St, Portland, OR 97035" +266667,Lightning Charging Cable,1,14.95,10/08/19 20:06,"773 Willow St, New York City, NY 10001" +266668,AA Batteries (4-pack),2,3.84,10/06/19 15:59,"912 Willow St, San Francisco, CA 94016" +266669,27in FHD Monitor,1,149.99,11/01/19 01:17,"29 Pine St, San Francisco, CA 94016" +266670,Google Phone,1,600,10/15/19 16:52,"16 North St, Boston, MA 02215" +266671,AA Batteries (4-pack),1,3.84,10/02/19 20:49,"160 Cedar St, San Francisco, CA 94016" +266672,Bose SoundSport Headphones,1,99.99,10/15/19 22:13,"520 Sunset St, Boston, MA 02215" +266673,Apple Airpods Headphones,1,150,10/25/19 06:50,"418 River St, Los Angeles, CA 90001" +266674,AAA Batteries (4-pack),1,2.99,10/13/19 19:00,"967 14th St, San Francisco, CA 94016" +266675,Lightning Charging Cable,1,14.95,10/03/19 01:49,"637 River St, San Francisco, CA 94016" +266676,Apple Airpods Headphones,1,150,10/18/19 10:57,"61 Walnut St, Los Angeles, CA 90001" +266677,AAA Batteries (4-pack),2,2.99,10/16/19 10:37,"171 13th St, Seattle, WA 98101" +266678,Bose SoundSport Headphones,1,99.99,10/24/19 11:05,"620 Lake St, New York City, NY 10001" +266679,Bose SoundSport Headphones,1,99.99,10/20/19 22:16,"188 Madison St, Los Angeles, CA 90001" +266680,USB-C Charging Cable,1,11.95,10/12/19 14:06,"314 Hickory St, New York City, NY 10001" +266681,AAA Batteries (4-pack),2,2.99,10/10/19 18:22,"760 4th St, Portland, OR 97035" +266682,Lightning Charging Cable,1,14.95,10/16/19 13:57,"185 Walnut St, San Francisco, CA 94016" +266683,20in Monitor,1,109.99,10/15/19 11:14,"913 Dogwood St, Boston, MA 02215" +266684,Bose SoundSport Headphones,1,99.99,10/14/19 10:06,"767 14th St, Dallas, TX 75001" +266685,Apple Airpods Headphones,1,150,10/04/19 21:16,"232 Jackson St, Los Angeles, CA 90001" +266686,AA Batteries (4-pack),2,3.84,10/09/19 07:57,"491 Church St, Los Angeles, CA 90001" +266687,AA Batteries (4-pack),2,3.84,10/29/19 12:36,"810 8th St, Dallas, TX 75001" +266688,20in Monitor,1,109.99,10/14/19 11:50,"612 Ridge St, Dallas, TX 75001" +266689,AA Batteries (4-pack),1,3.84,10/24/19 20:06,"140 South St, Los Angeles, CA 90001" +266690,AA Batteries (4-pack),1,3.84,10/27/19 20:32,"524 14th St, San Francisco, CA 94016" +266691,iPhone,1,700,10/31/19 13:42,"40 5th St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +266692,Flatscreen TV,1,300,10/08/19 20:44,"444 Spruce St, San Francisco, CA 94016" +266693,USB-C Charging Cable,1,11.95,10/08/19 17:35,"695 Lincoln St, New York City, NY 10001" +266694,Apple Airpods Headphones,1,150,10/20/19 14:52,"613 Main St, San Francisco, CA 94016" +266695,iPhone,1,700,10/08/19 20:48,"853 Elm St, San Francisco, CA 94016" +266695,Wired Headphones,1,11.99,10/08/19 20:48,"853 Elm St, San Francisco, CA 94016" +266696,Wired Headphones,2,11.99,10/05/19 16:10,"563 North St, Dallas, TX 75001" +266697,Lightning Charging Cable,1,14.95,10/23/19 17:43,"471 Elm St, New York City, NY 10001" +266698,Wired Headphones,1,11.99,10/17/19 23:04,"545 Spruce St, Los Angeles, CA 90001" +266699,27in FHD Monitor,1,149.99,10/24/19 18:01,"211 Lake St, Los Angeles, CA 90001" +266700,AA Batteries (4-pack),2,3.84,10/24/19 07:46,"327 8th St, Los Angeles, CA 90001" +266701,Apple Airpods Headphones,1,150,10/23/19 18:06,"944 Wilson St, Boston, MA 02215" +266702,AAA Batteries (4-pack),1,2.99,10/20/19 13:52,"233 11th St, Los Angeles, CA 90001" +266703,AA Batteries (4-pack),2,3.84,10/04/19 21:50,"4 Ridge St, San Francisco, CA 94016" +266703,Google Phone,1,600,10/04/19 21:50,"4 Ridge St, San Francisco, CA 94016" +266704,AAA Batteries (4-pack),1,2.99,10/10/19 20:28,"567 4th St, Seattle, WA 98101" +266705,Apple Airpods Headphones,1,150,10/25/19 14:21,"977 North St, Dallas, TX 75001" +266706,iPhone,1,700,10/03/19 13:19,"425 Center St, New York City, NY 10001" +266707,Lightning Charging Cable,1,14.95,10/31/19 15:09,"828 River St, New York City, NY 10001" +266708,Apple Airpods Headphones,1,150,10/30/19 23:05,"55 12th St, New York City, NY 10001" +266709,AA Batteries (4-pack),1,3.84,10/19/19 09:28,"78 Hickory St, San Francisco, CA 94016" +266710,AAA Batteries (4-pack),1,2.99,10/22/19 11:33,"688 Adams St, Dallas, TX 75001" +266711,Macbook Pro Laptop,1,1700,10/18/19 10:28,"621 6th St, Seattle, WA 98101" +266712,AAA Batteries (4-pack),3,2.99,10/23/19 14:14,"707 Walnut St, Boston, MA 02215" +266713,Google Phone,1,600,10/17/19 22:27,"610 Hickory St, Atlanta, GA 30301" +266714,Wired Headphones,2,11.99,10/12/19 10:26,"520 Spruce St, San Francisco, CA 94016" +266715,Bose SoundSport Headphones,1,99.99,10/01/19 19:25,"828 2nd St, Austin, TX 73301" +266716,Flatscreen TV,1,300,10/06/19 09:38,"985 Church St, Boston, MA 02215" +266717,Apple Airpods Headphones,1,150,10/18/19 14:21,"728 10th St, New York City, NY 10001" +266718,Wired Headphones,1,11.99,10/08/19 15:33,"906 4th St, Seattle, WA 98101" +266719,20in Monitor,1,109.99,10/20/19 22:13,"704 14th St, Boston, MA 02215" +266720,AA Batteries (4-pack),1,3.84,10/18/19 16:56,"95 Main St, Atlanta, GA 30301" +266721,Lightning Charging Cable,1,14.95,10/01/19 14:10,"676 Pine St, Los Angeles, CA 90001" +266722,Bose SoundSport Headphones,1,99.99,10/22/19 05:16,"146 8th St, Austin, TX 73301" +266723,27in 4K Gaming Monitor,1,389.99,10/09/19 16:35,"754 4th St, Austin, TX 73301" +266724,Wired Headphones,1,11.99,10/09/19 20:12,"167 Ridge St, Los Angeles, CA 90001" +266725,Wired Headphones,1,11.99,10/28/19 16:44,"311 5th St, Atlanta, GA 30301" +266726,Wired Headphones,1,11.99,10/16/19 18:22,"987 Lake St, Los Angeles, CA 90001" +266727,USB-C Charging Cable,1,11.95,10/29/19 18:25,"485 13th St, Los Angeles, CA 90001" +266728,Apple Airpods Headphones,1,150,10/29/19 15:15,"615 6th St, San Francisco, CA 94016" +266729,Wired Headphones,1,11.99,10/22/19 20:15,"367 Lincoln St, Los Angeles, CA 90001" +266730,USB-C Charging Cable,1,11.95,10/17/19 13:19,"912 Washington St, Portland, OR 97035" +266731,ThinkPad Laptop,1,999.99,10/10/19 15:26,"569 Madison St, Seattle, WA 98101" +266732,USB-C Charging Cable,1,11.95,10/18/19 20:36,"174 Cherry St, New York City, NY 10001" +266733,Lightning Charging Cable,1,14.95,10/25/19 10:58,"247 Forest St, Austin, TX 73301" +266734,Google Phone,1,600,10/24/19 12:49,"701 10th St, Los Angeles, CA 90001" +266735,AAA Batteries (4-pack),1,2.99,10/24/19 19:56,"322 Pine St, Dallas, TX 75001" +266736,27in 4K Gaming Monitor,1,389.99,10/15/19 15:53,"794 Madison St, Portland, OR 97035" +266737,Apple Airpods Headphones,1,150,10/09/19 11:43,"178 7th St, Los Angeles, CA 90001" +266738,AA Batteries (4-pack),1,3.84,10/17/19 18:06,"63 10th St, San Francisco, CA 94016" +266739,34in Ultrawide Monitor,1,379.99,10/18/19 18:58,"590 2nd St, San Francisco, CA 94016" +266740,AA Batteries (4-pack),1,3.84,10/28/19 10:50,"504 Pine St, San Francisco, CA 94016" +266741,AA Batteries (4-pack),3,3.84,10/24/19 18:23,"898 10th St, Boston, MA 02215" +266742,Lightning Charging Cable,1,14.95,10/25/19 17:33,"815 Center St, Dallas, TX 75001" +266743,27in FHD Monitor,1,149.99,10/23/19 08:39,"980 Washington St, San Francisco, CA 94016" +266744,Wired Headphones,2,11.99,10/31/19 11:05,"506 Hill St, San Francisco, CA 94016" +266745,27in 4K Gaming Monitor,1,389.99,10/16/19 10:31,"638 6th St, New York City, NY 10001" +266746,Apple Airpods Headphones,2,150,10/22/19 00:01,"511 Madison St, Seattle, WA 98101" +266747,AA Batteries (4-pack),1,3.84,10/12/19 20:31,"809 Maple St, New York City, NY 10001" +266748,AAA Batteries (4-pack),1,2.99,10/15/19 10:48,"976 Johnson St, Dallas, TX 75001" +266749,Lightning Charging Cable,1,14.95,10/06/19 13:05,"315 9th St, New York City, NY 10001" +266750,Wired Headphones,1,11.99,10/19/19 16:50,"608 Center St, Boston, MA 02215" +266751,USB-C Charging Cable,1,11.95,10/13/19 19:07,"730 Lakeview St, Boston, MA 02215" +266752,ThinkPad Laptop,1,999.99,10/17/19 14:54,"886 Lake St, San Francisco, CA 94016" +266753,AAA Batteries (4-pack),1,2.99,10/24/19 09:25,"241 Center St, San Francisco, CA 94016" +266754,Lightning Charging Cable,1,14.95,10/04/19 19:26,"713 Ridge St, New York City, NY 10001" +266755,Lightning Charging Cable,1,14.95,10/24/19 16:31,"590 12th St, Los Angeles, CA 90001" +266756,Lightning Charging Cable,1,14.95,10/18/19 18:20,"965 6th St, Boston, MA 02215" +266757,34in Ultrawide Monitor,1,379.99,10/11/19 15:17,"164 Ridge St, San Francisco, CA 94016" +266758,Apple Airpods Headphones,1,150,10/06/19 12:27,"595 5th St, San Francisco, CA 94016" +266759,Bose SoundSport Headphones,1,99.99,10/13/19 15:37,"290 11th St, Atlanta, GA 30301" +266760,AAA Batteries (4-pack),2,2.99,10/13/19 12:57,"840 2nd St, Seattle, WA 98101" +266761,34in Ultrawide Monitor,1,379.99,10/19/19 11:56,"559 Willow St, San Francisco, CA 94016" +266762,Lightning Charging Cable,1,14.95,10/14/19 17:09,"682 Center St, Seattle, WA 98101" +266763,AAA Batteries (4-pack),2,2.99,10/28/19 09:30,"938 Church St, Los Angeles, CA 90001" +266763,Wired Headphones,1,11.99,10/28/19 09:30,"938 Church St, Los Angeles, CA 90001" +266764,USB-C Charging Cable,1,11.95,10/04/19 07:26,"496 Jackson St, Seattle, WA 98101" +266765,27in FHD Monitor,1,149.99,10/19/19 16:10,"171 West St, Boston, MA 02215" +266766,AAA Batteries (4-pack),1,2.99,10/01/19 10:52,"675 Pine St, Boston, MA 02215" +266767,34in Ultrawide Monitor,1,379.99,10/30/19 09:37,"649 7th St, San Francisco, CA 94016" +266768,USB-C Charging Cable,1,11.95,10/25/19 16:33,"800 Jackson St, Seattle, WA 98101" +266769,34in Ultrawide Monitor,1,379.99,10/12/19 13:32,"509 Washington St, Los Angeles, CA 90001" +266770,USB-C Charging Cable,1,11.95,10/18/19 17:30,"241 Madison St, Atlanta, GA 30301" +266771,27in 4K Gaming Monitor,1,389.99,10/15/19 11:14,"85 Highland St, Los Angeles, CA 90001" +266772,Google Phone,1,600,10/01/19 19:42,"368 Ridge St, New York City, NY 10001" +266773,AA Batteries (4-pack),1,3.84,10/13/19 12:22,"325 Walnut St, Los Angeles, CA 90001" +266774,Vareebadd Phone,1,400,10/01/19 17:42,"684 Walnut St, Portland, OR 97035" +266775,Wired Headphones,1,11.99,10/08/19 09:44,"527 Spruce St, New York City, NY 10001" +266776,34in Ultrawide Monitor,1,379.99,10/16/19 19:41,"383 9th St, New York City, NY 10001" +266777,27in 4K Gaming Monitor,1,389.99,10/24/19 14:05,"853 2nd St, Austin, TX 73301" +266778,AA Batteries (4-pack),1,3.84,10/18/19 14:47,"924 Willow St, San Francisco, CA 94016" +266779,USB-C Charging Cable,1,11.95,10/31/19 09:07,"737 13th St, San Francisco, CA 94016" +266780,Google Phone,1,600,10/07/19 21:31,"351 13th St, Austin, TX 73301" +266781,USB-C Charging Cable,1,11.95,10/21/19 22:22,"822 6th St, New York City, NY 10001" +266782,USB-C Charging Cable,1,11.95,10/19/19 14:07,"798 Center St, Seattle, WA 98101" +266783,Apple Airpods Headphones,1,150,10/21/19 09:25,"268 Walnut St, Atlanta, GA 30301" +266784,AAA Batteries (4-pack),1,2.99,10/03/19 15:09,"662 Hickory St, San Francisco, CA 94016" +266785,Bose SoundSport Headphones,1,99.99,10/24/19 21:03,"148 Maple St, Dallas, TX 75001" +266786,USB-C Charging Cable,1,11.95,10/28/19 10:20,"429 Church St, San Francisco, CA 94016" +266787,LG Washing Machine,1,600.0,10/25/19 14:55,"459 Washington St, Atlanta, GA 30301" +266788,AAA Batteries (4-pack),2,2.99,10/10/19 11:54,"895 11th St, Atlanta, GA 30301" +266789,Lightning Charging Cable,1,14.95,10/25/19 10:58,"364 12th St, San Francisco, CA 94016" +266790,Apple Airpods Headphones,1,150,10/16/19 07:58,"254 Park St, Portland, OR 97035" +266791,AAA Batteries (4-pack),1,2.99,10/16/19 15:47,"20 Chestnut St, Los Angeles, CA 90001" +266792,iPhone,1,700,10/29/19 11:27,"636 Main St, Los Angeles, CA 90001" +266793,ThinkPad Laptop,1,999.99,10/18/19 23:23,"462 Lake St, Dallas, TX 75001" +266794,Bose SoundSport Headphones,1,99.99,10/07/19 20:25,"394 South St, San Francisco, CA 94016" +266795,AA Batteries (4-pack),2,3.84,10/20/19 00:17,"378 Jefferson St, Austin, TX 73301" +266796,Apple Airpods Headphones,1,150,10/15/19 12:52,"835 13th St, San Francisco, CA 94016" +266797,Lightning Charging Cable,1,14.95,10/09/19 17:56,"829 13th St, San Francisco, CA 94016" +266797,Wired Headphones,1,11.99,10/09/19 17:56,"829 13th St, San Francisco, CA 94016" +266798,AA Batteries (4-pack),1,3.84,10/19/19 20:37,"98 2nd St, Boston, MA 02215" +266799,Apple Airpods Headphones,1,150,10/12/19 20:13,"26 Center St, Los Angeles, CA 90001" +266800,Apple Airpods Headphones,1,150,10/26/19 18:56,"652 12th St, Portland, OR 97035" +266801,Lightning Charging Cable,1,14.95,10/31/19 18:03,"361 Washington St, New York City, NY 10001" +266802,Google Phone,1,600,10/16/19 11:06,"351 Hickory St, New York City, NY 10001" +266803,Bose SoundSport Headphones,1,99.99,10/22/19 11:37,"941 Lincoln St, San Francisco, CA 94016" +266804,20in Monitor,1,109.99,10/08/19 17:58,"834 South St, Portland, OR 97035" +266805,Bose SoundSport Headphones,1,99.99,10/23/19 12:57,"237 12th St, Portland, OR 97035" +266806,27in 4K Gaming Monitor,1,389.99,10/18/19 10:18,"132 Church St, San Francisco, CA 94016" +266807,Wired Headphones,1,11.99,10/05/19 17:17,"619 5th St, Los Angeles, CA 90001" +266808,Bose SoundSport Headphones,1,99.99,10/18/19 02:48,"314 Jackson St, Atlanta, GA 30301" +266809,iPhone,1,700,10/05/19 09:40,"911 9th St, Los Angeles, CA 90001" +266810,AA Batteries (4-pack),1,3.84,10/11/19 20:03,"39 West St, Portland, OR 97035" +266811,Macbook Pro Laptop,1,1700,10/26/19 11:01,"282 4th St, San Francisco, CA 94016" +266812,20in Monitor,1,109.99,10/02/19 13:42,"576 Elm St, Dallas, TX 75001" +266813,Lightning Charging Cable,1,14.95,10/03/19 12:41,"740 Washington St, Los Angeles, CA 90001" +266814,Apple Airpods Headphones,1,150,10/18/19 21:55,"454 4th St, Boston, MA 02215" +266815,AAA Batteries (4-pack),1,2.99,10/30/19 13:27,"137 Highland St, New York City, NY 10001" +266816,Vareebadd Phone,1,400,10/30/19 19:57,"745 6th St, New York City, NY 10001" +266817,Apple Airpods Headphones,1,150,10/22/19 13:48,"752 Hill St, New York City, NY 10001" +266818,Lightning Charging Cable,1,14.95,10/14/19 11:23,"299 Forest St, Los Angeles, CA 90001" +266819,AA Batteries (4-pack),1,3.84,10/19/19 20:41,"275 North St, Boston, MA 02215" +266820,AA Batteries (4-pack),1,3.84,10/09/19 17:05,"130 Cherry St, San Francisco, CA 94016" +266821,27in 4K Gaming Monitor,1,389.99,10/09/19 07:03,"617 12th St, Atlanta, GA 30301" +266822,USB-C Charging Cable,1,11.95,10/04/19 10:23,"545 13th St, San Francisco, CA 94016" +266823,USB-C Charging Cable,1,11.95,10/18/19 18:40,"564 Hickory St, Dallas, TX 75001" +266824,Bose SoundSport Headphones,1,99.99,10/26/19 20:04,"361 Cherry St, San Francisco, CA 94016" +266825,iPhone,1,700,10/30/19 12:05,"858 Lincoln St, Seattle, WA 98101" +266825,Lightning Charging Cable,1,14.95,10/30/19 12:05,"858 Lincoln St, Seattle, WA 98101" +266826,Apple Airpods Headphones,1,150,10/28/19 12:18,"46 Spruce St, Los Angeles, CA 90001" +266827,AA Batteries (4-pack),1,3.84,10/19/19 07:55,"830 Johnson St, Seattle, WA 98101" +266828,Bose SoundSport Headphones,2,99.99,10/24/19 18:25,"453 11th St, Boston, MA 02215" +266829,27in FHD Monitor,1,149.99,10/07/19 19:28,"116 Center St, San Francisco, CA 94016" +266830,27in 4K Gaming Monitor,1,389.99,10/02/19 16:30,"245 Center St, New York City, NY 10001" +266831,AAA Batteries (4-pack),1,2.99,10/13/19 20:42,"893 Jackson St, Portland, OR 97035" +266832,Apple Airpods Headphones,1,150,10/20/19 15:00,"167 Adams St, Los Angeles, CA 90001" +266833,iPhone,1,700,10/25/19 23:06,"821 12th St, Seattle, WA 98101" +266833,Lightning Charging Cable,1,14.95,10/25/19 23:06,"821 12th St, Seattle, WA 98101" +266834,AAA Batteries (4-pack),4,2.99,10/16/19 09:41,"752 Highland St, San Francisco, CA 94016" +266835,Lightning Charging Cable,1,14.95,10/14/19 14:17,"327 Meadow St, Boston, MA 02215" +266836,Bose SoundSport Headphones,1,99.99,10/20/19 09:51,"308 Cherry St, San Francisco, CA 94016" +266837,Lightning Charging Cable,1,14.95,10/19/19 00:41,"660 6th St, Dallas, TX 75001" +266838,ThinkPad Laptop,1,999.99,10/08/19 21:26,"1 Lake St, Dallas, TX 75001" +266839,Google Phone,1,600,10/18/19 15:52,"214 Dogwood St, Boston, MA 02215" +266840,AAA Batteries (4-pack),1,2.99,10/22/19 19:36,"789 Maple St, San Francisco, CA 94016" +266841,AAA Batteries (4-pack),1,2.99,10/28/19 14:52,"305 Sunset St, San Francisco, CA 94016" +266842,AA Batteries (4-pack),1,3.84,10/03/19 09:20,"822 5th St, San Francisco, CA 94016" +266843,Lightning Charging Cable,1,14.95,10/15/19 14:17,"336 Center St, San Francisco, CA 94016" +266844,Wired Headphones,1,11.99,10/21/19 12:24,"643 14th St, Austin, TX 73301" +266845,AA Batteries (4-pack),1,3.84,10/27/19 18:23,"789 9th St, San Francisco, CA 94016" +266846,AAA Batteries (4-pack),1,2.99,10/23/19 11:42,"457 5th St, New York City, NY 10001" +266847,20in Monitor,1,109.99,10/03/19 10:36,"52 1st St, Los Angeles, CA 90001" +266848,AAA Batteries (4-pack),1,2.99,10/22/19 16:54,"564 Main St, Boston, MA 02215" +266849,Apple Airpods Headphones,1,150,10/29/19 13:38,"137 Lake St, Boston, MA 02215" +266850,USB-C Charging Cable,1,11.95,10/07/19 00:32,"179 Adams St, San Francisco, CA 94016" +266851,Bose SoundSport Headphones,1,99.99,10/12/19 14:26,"599 Adams St, Dallas, TX 75001" +266852,AAA Batteries (4-pack),1,2.99,10/03/19 12:39,"284 Hill St, Dallas, TX 75001" +266853,Apple Airpods Headphones,1,150,10/14/19 12:54,"961 Walnut St, Atlanta, GA 30301" +266854,AAA Batteries (4-pack),5,2.99,10/30/19 21:15,"748 Ridge St, Boston, MA 02215" +266855,Wired Headphones,1,11.99,10/03/19 01:10,"530 14th St, Atlanta, GA 30301" +266856,20in Monitor,1,109.99,10/06/19 20:25,"742 Spruce St, Dallas, TX 75001" +266857,AA Batteries (4-pack),1,3.84,10/01/19 14:33,"790 Park St, New York City, NY 10001" +266858,Wired Headphones,1,11.99,10/30/19 10:28,"891 River St, San Francisco, CA 94016" +266859,Apple Airpods Headphones,1,150,10/13/19 16:46,"651 2nd St, Portland, OR 97035" +266860,Wired Headphones,1,11.99,10/24/19 20:13,"894 7th St, Portland, OR 97035" +266861,Apple Airpods Headphones,1,150,10/20/19 16:20,"561 1st St, San Francisco, CA 94016" +266862,Flatscreen TV,1,300,10/30/19 08:04,"274 8th St, Portland, OR 97035" +266863,Bose SoundSport Headphones,1,99.99,10/21/19 11:55,"152 1st St, Dallas, TX 75001" +266864,Macbook Pro Laptop,1,1700,10/29/19 01:16,"278 7th St, Atlanta, GA 30301" +266865,AAA Batteries (4-pack),1,2.99,10/01/19 10:46,"278 Cedar St, Seattle, WA 98101" +266866,Wired Headphones,1,11.99,10/01/19 19:41,"788 Lincoln St, Portland, OR 97035" +266867,20in Monitor,1,109.99,10/16/19 14:21,"355 Chestnut St, Austin, TX 73301" +266868,Wired Headphones,1,11.99,10/21/19 08:24,"307 Adams St, Los Angeles, CA 90001" +266869,Bose SoundSport Headphones,1,99.99,10/08/19 16:56,"963 13th St, Portland, ME 04101" +266870,27in FHD Monitor,1,149.99,10/13/19 01:32,"326 Park St, San Francisco, CA 94016" +266871,27in 4K Gaming Monitor,1,389.99,10/02/19 17:32,"90 6th St, San Francisco, CA 94016" +266872,34in Ultrawide Monitor,1,379.99,10/30/19 07:19,"137 6th St, New York City, NY 10001" +266873,Lightning Charging Cable,1,14.95,10/21/19 09:09,"219 Lincoln St, Dallas, TX 75001" +266874,Apple Airpods Headphones,1,150,10/03/19 11:52,"95 7th St, San Francisco, CA 94016" +266875,Wired Headphones,1,11.99,10/22/19 16:00,"581 Sunset St, Austin, TX 73301" +266876,USB-C Charging Cable,1,11.95,10/21/19 10:56,"824 West St, San Francisco, CA 94016" +266877,Bose SoundSport Headphones,1,99.99,10/22/19 15:38,"250 Washington St, Dallas, TX 75001" +266878,Lightning Charging Cable,1,14.95,10/26/19 16:04,"136 Johnson St, New York City, NY 10001" +266879,Lightning Charging Cable,1,14.95,10/19/19 11:20,"619 8th St, Portland, OR 97035" +266880,Flatscreen TV,1,300,10/13/19 21:31,"461 13th St, San Francisco, CA 94016" +266881,Lightning Charging Cable,1,14.95,10/31/19 08:37,"323 13th St, Atlanta, GA 30301" +266882,AA Batteries (4-pack),1,3.84,10/21/19 12:29,"977 South St, New York City, NY 10001" +266883,27in FHD Monitor,1,149.99,10/03/19 17:00,"404 2nd St, San Francisco, CA 94016" +266884,AA Batteries (4-pack),1,3.84,10/09/19 23:58,"227 10th St, Dallas, TX 75001" +266885,Lightning Charging Cable,1,14.95,10/20/19 10:50,"296 6th St, New York City, NY 10001" +266886,USB-C Charging Cable,1,11.95,10/14/19 11:47,"517 Madison St, Los Angeles, CA 90001" +266886,USB-C Charging Cable,1,11.95,10/14/19 11:47,"517 Madison St, Los Angeles, CA 90001" +266887,Bose SoundSport Headphones,1,99.99,10/31/19 21:40,"103 Cedar St, New York City, NY 10001" +266888,Apple Airpods Headphones,1,150,10/09/19 08:31,"867 Lincoln St, New York City, NY 10001" +266889,Lightning Charging Cable,1,14.95,10/24/19 11:01,"883 Pine St, Los Angeles, CA 90001" +266890,Google Phone,1,600,10/30/19 13:24,"442 Church St, San Francisco, CA 94016" +266890,Wired Headphones,1,11.99,10/30/19 13:24,"442 Church St, San Francisco, CA 94016" +266891,27in 4K Gaming Monitor,1,389.99,10/11/19 15:44,"151 River St, Portland, OR 97035" +266892,Wired Headphones,1,11.99,10/17/19 10:44,"850 4th St, Seattle, WA 98101" +266893,Bose SoundSport Headphones,1,99.99,10/28/19 11:15,"548 Hickory St, Dallas, TX 75001" +266894,Lightning Charging Cable,1,14.95,10/01/19 22:32,"31 Spruce St, Boston, MA 02215" +266895,27in FHD Monitor,1,149.99,10/18/19 07:16,"171 8th St, San Francisco, CA 94016" +266896,USB-C Charging Cable,1,11.95,10/29/19 19:19,"979 North St, San Francisco, CA 94016" +266897,AAA Batteries (4-pack),1,2.99,10/20/19 20:50,"32 14th St, New York City, NY 10001" +266898,AA Batteries (4-pack),1,3.84,10/16/19 10:06,"895 2nd St, Seattle, WA 98101" +266899,AA Batteries (4-pack),2,3.84,10/01/19 07:43,"545 Main St, San Francisco, CA 94016" +266900,Flatscreen TV,1,300,10/12/19 11:14,"981 Lakeview St, Los Angeles, CA 90001" +266901,Lightning Charging Cable,1,14.95,10/24/19 17:38,"665 North St, Atlanta, GA 30301" +266902,27in 4K Gaming Monitor,1,389.99,10/24/19 00:01,"168 Lakeview St, Atlanta, GA 30301" +266903,Wired Headphones,1,11.99,10/31/19 13:03,"270 Jefferson St, Los Angeles, CA 90001" +266904,Lightning Charging Cable,1,14.95,10/02/19 01:21,"108 Church St, San Francisco, CA 94016" +266905,AAA Batteries (4-pack),1,2.99,10/17/19 08:11,"929 Dogwood St, San Francisco, CA 94016" +266906,AAA Batteries (4-pack),2,2.99,10/20/19 12:13,"896 4th St, New York City, NY 10001" +266907,Lightning Charging Cable,1,14.95,10/30/19 20:56,"469 Elm St, Boston, MA 02215" +266908,AA Batteries (4-pack),2,3.84,10/10/19 09:40,"208 Madison St, Los Angeles, CA 90001" +266909,Wired Headphones,1,11.99,10/12/19 07:15,"181 14th St, Seattle, WA 98101" +266910,Flatscreen TV,1,300,10/07/19 20:31,"648 South St, Los Angeles, CA 90001" +266911,AA Batteries (4-pack),3,3.84,10/19/19 09:14,"349 Highland St, Seattle, WA 98101" +266912,AA Batteries (4-pack),2,3.84,10/14/19 00:04,"316 Maple St, Los Angeles, CA 90001" +266913,AAA Batteries (4-pack),4,2.99,10/25/19 11:38,"659 14th St, Portland, OR 97035" +266914,Wired Headphones,1,11.99,10/26/19 10:37,"258 Lakeview St, San Francisco, CA 94016" +266915,Wired Headphones,2,11.99,10/13/19 14:29,"717 Adams St, New York City, NY 10001" +266916,Apple Airpods Headphones,1,150,10/14/19 13:41,"916 Washington St, Boston, MA 02215" +266917,Lightning Charging Cable,1,14.95,10/31/19 16:28,"675 Pine St, Los Angeles, CA 90001" +266918,Apple Airpods Headphones,1,150,10/01/19 22:37,"735 Madison St, Austin, TX 73301" +266919,Lightning Charging Cable,1,14.95,10/07/19 12:15,"592 Main St, Seattle, WA 98101" +266920,USB-C Charging Cable,1,11.95,10/16/19 08:36,"414 River St, Portland, OR 97035" +266921,Lightning Charging Cable,1,14.95,10/21/19 13:52,"985 South St, San Francisco, CA 94016" +266922,20in Monitor,1,109.99,10/07/19 13:31,"369 Dogwood St, Austin, TX 73301" +266923,Lightning Charging Cable,1,14.95,10/23/19 01:03,"85 Main St, Atlanta, GA 30301" +266923,Lightning Charging Cable,1,14.95,10/23/19 01:03,"85 Main St, Atlanta, GA 30301" +266924,AAA Batteries (4-pack),1,2.99,10/19/19 17:33,"668 Lake St, Austin, TX 73301" +266925,27in FHD Monitor,1,149.99,10/12/19 19:06,"534 Center St, New York City, NY 10001" +266926,Bose SoundSport Headphones,1,99.99,10/30/19 03:48,"120 10th St, Austin, TX 73301" +266927,AAA Batteries (4-pack),2,2.99,10/23/19 09:08,"763 Elm St, Atlanta, GA 30301" +266928,USB-C Charging Cable,1,11.95,10/15/19 13:05,"842 12th St, San Francisco, CA 94016" +266929,USB-C Charging Cable,1,11.95,10/30/19 14:12,"608 Ridge St, San Francisco, CA 94016" +266930,Macbook Pro Laptop,1,1700,10/23/19 18:15,"529 14th St, Austin, TX 73301" +266931,27in 4K Gaming Monitor,1,389.99,10/01/19 14:22,"636 5th St, New York City, NY 10001" +266932,Flatscreen TV,1,300,10/14/19 23:29,"901 9th St, San Francisco, CA 94016" +266933,USB-C Charging Cable,1,11.95,10/29/19 22:39,"637 Maple St, Seattle, WA 98101" +266934,Lightning Charging Cable,1,14.95,10/16/19 00:58,"412 Lincoln St, Boston, MA 02215" +266935,Bose SoundSport Headphones,1,99.99,10/14/19 13:55,"804 11th St, New York City, NY 10001" +266936,Wired Headphones,1,11.99,10/13/19 14:26,"561 Jackson St, Los Angeles, CA 90001" +266937,Macbook Pro Laptop,1,1700,10/26/19 17:48,"74 Lake St, Dallas, TX 75001" +266938,AA Batteries (4-pack),1,3.84,10/02/19 15:58,"124 North St, Los Angeles, CA 90001" +266939,USB-C Charging Cable,1,11.95,10/14/19 02:11,"864 Forest St, New York City, NY 10001" +266940,USB-C Charging Cable,1,11.95,10/29/19 21:05,"931 11th St, San Francisco, CA 94016" +266941,Apple Airpods Headphones,1,150,10/22/19 14:05,"503 1st St, Seattle, WA 98101" +266942,27in FHD Monitor,1,149.99,10/04/19 15:42,"388 Hickory St, San Francisco, CA 94016" +266943,AAA Batteries (4-pack),2,2.99,10/31/19 14:06,"902 South St, New York City, NY 10001" +266943,Lightning Charging Cable,1,14.95,10/31/19 14:06,"902 South St, New York City, NY 10001" +266944,AA Batteries (4-pack),1,3.84,10/26/19 14:36,"542 Hill St, Los Angeles, CA 90001" +266945,AA Batteries (4-pack),1,3.84,10/31/19 09:54,"386 4th St, Dallas, TX 75001" +266946,Apple Airpods Headphones,1,150,10/24/19 10:13,"343 Highland St, Portland, OR 97035" +266947,AA Batteries (4-pack),2,3.84,10/27/19 23:52,"977 7th St, Portland, OR 97035" +266948,AA Batteries (4-pack),1,3.84,10/17/19 09:46,"475 Sunset St, Dallas, TX 75001" +266949,AAA Batteries (4-pack),1,2.99,10/28/19 11:21,"695 South St, Los Angeles, CA 90001" +266949,Wired Headphones,1,11.99,10/28/19 11:21,"695 South St, Los Angeles, CA 90001" +266950,Flatscreen TV,1,300,10/09/19 11:30,"783 Center St, Seattle, WA 98101" +266951,Bose SoundSport Headphones,1,99.99,10/26/19 12:28,"315 Maple St, Los Angeles, CA 90001" +266952,Flatscreen TV,1,300,10/08/19 19:20,"17 11th St, Boston, MA 02215" +266953,34in Ultrawide Monitor,1,379.99,10/15/19 19:40,"624 Forest St, Los Angeles, CA 90001" +266954,Wired Headphones,1,11.99,10/18/19 13:47,"266 12th St, San Francisco, CA 94016" +266955,Bose SoundSport Headphones,1,99.99,10/09/19 20:59,"442 Walnut St, San Francisco, CA 94016" +266956,AAA Batteries (4-pack),1,2.99,10/29/19 07:24,"223 Meadow St, Boston, MA 02215" +266957,AAA Batteries (4-pack),1,2.99,10/13/19 19:40,"77 Elm St, Portland, ME 04101" +266958,USB-C Charging Cable,1,11.95,10/08/19 09:32,"594 Cherry St, Boston, MA 02215" +266959,Bose SoundSport Headphones,1,99.99,10/18/19 10:21,"416 Ridge St, San Francisco, CA 94016" +266960,27in 4K Gaming Monitor,1,389.99,10/03/19 20:15,"840 Cherry St, Dallas, TX 75001" +266961,Wired Headphones,2,11.99,10/13/19 13:22,"322 Hickory St, Austin, TX 73301" +266962,Bose SoundSport Headphones,1,99.99,10/06/19 20:09,"729 Chestnut St, San Francisco, CA 94016" +266963,Macbook Pro Laptop,1,1700,10/21/19 19:45,"36 9th St, Seattle, WA 98101" +266964,ThinkPad Laptop,1,999.99,10/27/19 07:56,"690 Forest St, Austin, TX 73301" +266965,27in 4K Gaming Monitor,1,389.99,10/08/19 17:59,"406 Hickory St, San Francisco, CA 94016" +266966,Apple Airpods Headphones,1,150,10/30/19 21:40,"8 Spruce St, New York City, NY 10001" +266967,Wired Headphones,1,11.99,10/17/19 22:28,"588 Jackson St, New York City, NY 10001" +266968,Bose SoundSport Headphones,1,99.99,11/01/19 00:57,"125 Hickory St, Los Angeles, CA 90001" +266969,34in Ultrawide Monitor,1,379.99,10/04/19 12:55,"699 6th St, Portland, OR 97035" +266970,Apple Airpods Headphones,1,150,10/08/19 18:32,"632 Johnson St, Atlanta, GA 30301" +266971,USB-C Charging Cable,1,11.95,10/19/19 19:44,"923 Adams St, Los Angeles, CA 90001" +266972,Wired Headphones,1,11.99,10/24/19 00:01,"204 Adams St, Boston, MA 02215" +266973,AA Batteries (4-pack),1,3.84,10/23/19 12:59,"352 Chestnut St, Seattle, WA 98101" +266974,Lightning Charging Cable,1,14.95,10/31/19 09:26,"813 1st St, San Francisco, CA 94016" +266975,Apple Airpods Headphones,1,150,10/22/19 00:17,"191 North St, Austin, TX 73301" +266976,Apple Airpods Headphones,1,150,10/22/19 19:49,"589 1st St, New York City, NY 10001" +266977,iPhone,1,700,10/05/19 00:26,"590 Forest St, Seattle, WA 98101" +266977,Apple Airpods Headphones,1,150,10/05/19 00:26,"590 Forest St, Seattle, WA 98101" +266978,AAA Batteries (4-pack),7,2.99,10/14/19 20:58,"437 6th St, Atlanta, GA 30301" +266979,Lightning Charging Cable,1,14.95,10/04/19 16:24,"856 Jefferson St, San Francisco, CA 94016" +266980,AA Batteries (4-pack),1,3.84,10/29/19 15:50,"756 Main St, Los Angeles, CA 90001" +266981,Apple Airpods Headphones,1,150,10/03/19 22:00,"914 Willow St, Los Angeles, CA 90001" +266982,Bose SoundSport Headphones,1,99.99,10/16/19 18:11,"74 7th St, San Francisco, CA 94016" +266983,Lightning Charging Cable,1,14.95,10/17/19 21:22,"823 Cedar St, Portland, OR 97035" +266984,ThinkPad Laptop,1,999.99,10/30/19 14:46,"788 14th St, New York City, NY 10001" +266985,Lightning Charging Cable,1,14.95,10/22/19 12:56,"60 Madison St, San Francisco, CA 94016" +266986,ThinkPad Laptop,1,999.99,10/17/19 07:40,"632 Center St, New York City, NY 10001" +266987,Macbook Pro Laptop,1,1700,10/17/19 20:12,"783 South St, Atlanta, GA 30301" +266988,Wired Headphones,1,11.99,10/27/19 16:25,"446 Cedar St, Boston, MA 02215" +266989,Wired Headphones,1,11.99,10/08/19 04:48,"62 Church St, Seattle, WA 98101" +266990,Apple Airpods Headphones,1,150,10/09/19 14:03,"403 8th St, San Francisco, CA 94016" +266991,AAA Batteries (4-pack),1,2.99,10/20/19 21:49,"726 Cherry St, Los Angeles, CA 90001" +266992,AAA Batteries (4-pack),1,2.99,10/17/19 13:44,"755 12th St, New York City, NY 10001" +266993,Wired Headphones,1,11.99,10/16/19 11:18,"151 10th St, San Francisco, CA 94016" +266994,AAA Batteries (4-pack),2,2.99,10/03/19 12:04,"948 Pine St, San Francisco, CA 94016" +266994,Google Phone,1,600,10/03/19 12:04,"948 Pine St, San Francisco, CA 94016" +266995,Bose SoundSport Headphones,1,99.99,10/01/19 09:57,"759 5th St, Boston, MA 02215" +266996,iPhone,1,700,10/13/19 21:14,"572 10th St, Boston, MA 02215" +266997,Wired Headphones,1,11.99,10/04/19 16:53,"995 Hill St, Portland, OR 97035" +266998,34in Ultrawide Monitor,1,379.99,10/17/19 20:13,"750 Highland St, Boston, MA 02215" +266999,AA Batteries (4-pack),1,3.84,10/24/19 15:09,"447 Church St, Boston, MA 02215" +267000,USB-C Charging Cable,1,11.95,10/02/19 12:40,"929 Pine St, Boston, MA 02215" +267001,USB-C Charging Cable,1,11.95,10/16/19 11:09,"632 Lincoln St, Los Angeles, CA 90001" +,,,,, +267002,USB-C Charging Cable,2,11.95,10/26/19 13:59,"113 Chestnut St, Portland, ME 04101" +267003,USB-C Charging Cable,1,11.95,10/09/19 17:07,"584 Cherry St, New York City, NY 10001" +267004,Apple Airpods Headphones,1,150,10/05/19 15:39,"514 Washington St, Atlanta, GA 30301" +267005,AA Batteries (4-pack),1,3.84,10/27/19 12:41,"936 Church St, Dallas, TX 75001" +267006,34in Ultrawide Monitor,1,379.99,10/11/19 13:16,"427 5th St, San Francisco, CA 94016" +267007,USB-C Charging Cable,1,11.95,10/14/19 15:17,"195 Lincoln St, Los Angeles, CA 90001" +267008,AA Batteries (4-pack),1,3.84,10/04/19 12:47,"174 Highland St, Seattle, WA 98101" +267009,USB-C Charging Cable,1,11.95,10/09/19 10:13,"372 Sunset St, Los Angeles, CA 90001" +267010,Google Phone,1,600,10/20/19 10:49,"303 14th St, New York City, NY 10001" +267011,Apple Airpods Headphones,1,150,10/24/19 18:38,"560 Highland St, Austin, TX 73301" +267012,Macbook Pro Laptop,1,1700,10/28/19 03:26,"33 Center St, Atlanta, GA 30301" +267013,AA Batteries (4-pack),1,3.84,10/05/19 13:06,"707 Maple St, San Francisco, CA 94016" +267014,AA Batteries (4-pack),1,3.84,10/02/19 12:12,"572 Main St, Boston, MA 02215" +267015,27in FHD Monitor,1,149.99,10/08/19 23:14,"76 Forest St, Boston, MA 02215" +267016,Bose SoundSport Headphones,1,99.99,10/21/19 15:29,"435 Wilson St, Seattle, WA 98101" +267017,Bose SoundSport Headphones,1,99.99,10/18/19 13:15,"330 Cedar St, Dallas, TX 75001" +267018,Apple Airpods Headphones,1,150,10/08/19 17:07,"236 Dogwood St, Dallas, TX 75001" +267019,Apple Airpods Headphones,1,150,10/25/19 01:01,"46 5th St, Seattle, WA 98101" +267020,Flatscreen TV,1,300,10/26/19 10:16,"328 River St, Seattle, WA 98101" +267021,AA Batteries (4-pack),2,3.84,10/06/19 06:06,"125 Washington St, New York City, NY 10001" +267022,AAA Batteries (4-pack),1,2.99,10/06/19 22:59,"573 Elm St, Austin, TX 73301" +267023,Lightning Charging Cable,1,14.95,10/19/19 09:08,"379 Cherry St, Atlanta, GA 30301" +267024,Lightning Charging Cable,1,14.95,10/12/19 16:57,"534 Lincoln St, Dallas, TX 75001" +267025,Lightning Charging Cable,1,14.95,10/14/19 16:37,"963 Ridge St, Boston, MA 02215" +267026,Flatscreen TV,1,300,11/01/19 01:41,"241 Spruce St, San Francisco, CA 94016" +267027,AA Batteries (4-pack),1,3.84,10/19/19 19:24,"592 Jackson St, New York City, NY 10001" +267028,AA Batteries (4-pack),1,3.84,10/11/19 08:28,"763 1st St, Boston, MA 02215" +267029,Apple Airpods Headphones,1,150,10/15/19 05:08,"189 Jackson St, Los Angeles, CA 90001" +267029,Apple Airpods Headphones,1,150,10/15/19 05:08,"189 Jackson St, Los Angeles, CA 90001" +267030,Bose SoundSport Headphones,1,99.99,10/29/19 09:28,"775 Lake St, San Francisco, CA 94016" +267031,Wired Headphones,1,11.99,10/07/19 11:27,"448 Adams St, Boston, MA 02215" +267032,AA Batteries (4-pack),1,3.84,10/21/19 01:24,"594 Madison St, Portland, OR 97035" +267033,AAA Batteries (4-pack),2,2.99,10/23/19 07:50,"490 Center St, New York City, NY 10001" +267034,Wired Headphones,1,11.99,10/25/19 09:32,"711 Lakeview St, Los Angeles, CA 90001" +267035,Apple Airpods Headphones,1,150,10/17/19 13:28,"144 West St, Atlanta, GA 30301" +267036,AAA Batteries (4-pack),3,2.99,10/31/19 10:56,"911 8th St, New York City, NY 10001" +267037,Lightning Charging Cable,1,14.95,10/11/19 18:05,"767 Park St, Dallas, TX 75001" +267038,Lightning Charging Cable,1,14.95,10/28/19 19:10,"654 Hickory St, Los Angeles, CA 90001" +267039,Vareebadd Phone,1,400,10/27/19 14:23,"312 13th St, San Francisco, CA 94016" +267040,Wired Headphones,1,11.99,10/14/19 07:09,"932 13th St, Atlanta, GA 30301" +267041,USB-C Charging Cable,1,11.95,10/03/19 11:51,"757 13th St, Austin, TX 73301" +267042,Wired Headphones,1,11.99,10/09/19 20:55,"191 North St, San Francisco, CA 94016" +267043,Google Phone,1,600,10/25/19 21:54,"486 Park St, Atlanta, GA 30301" +267044,34in Ultrawide Monitor,1,379.99,10/10/19 23:03,"494 Jefferson St, Dallas, TX 75001" +267045,AA Batteries (4-pack),4,3.84,10/29/19 15:48,"978 Church St, Los Angeles, CA 90001" +267046,USB-C Charging Cable,1,11.95,10/22/19 13:39,"505 Main St, Los Angeles, CA 90001" +267047,USB-C Charging Cable,1,11.95,10/17/19 21:02,"524 Lake St, Seattle, WA 98101" +267048,Bose SoundSport Headphones,1,99.99,10/19/19 13:02,"672 11th St, San Francisco, CA 94016" +267049,Wired Headphones,1,11.99,10/25/19 12:21,"369 Jackson St, San Francisco, CA 94016" +267050,Google Phone,1,600,10/19/19 14:11,"924 5th St, Dallas, TX 75001" +267050,USB-C Charging Cable,2,11.95,10/19/19 14:11,"924 5th St, Dallas, TX 75001" +267051,Apple Airpods Headphones,1,150,10/06/19 13:01,"939 Willow St, Seattle, WA 98101" +267052,27in 4K Gaming Monitor,1,389.99,10/29/19 14:03,"207 Lake St, New York City, NY 10001" +267053,AAA Batteries (4-pack),2,2.99,10/16/19 20:13,"379 Meadow St, New York City, NY 10001" +267054,Bose SoundSport Headphones,1,99.99,10/28/19 23:41,"578 Forest St, Austin, TX 73301" +267055,AAA Batteries (4-pack),2,2.99,10/22/19 10:38,"3 Elm St, Dallas, TX 75001" +267056,Wired Headphones,1,11.99,10/28/19 11:49,"971 Walnut St, San Francisco, CA 94016" +267057,27in FHD Monitor,1,149.99,10/25/19 15:05,"382 Hickory St, New York City, NY 10001" +267058,Wired Headphones,1,11.99,10/01/19 17:00,"36 6th St, Atlanta, GA 30301" +267059,AA Batteries (4-pack),1,3.84,10/20/19 11:50,"475 Chestnut St, Atlanta, GA 30301" +267060,Apple Airpods Headphones,1,150,10/15/19 11:00,"852 Forest St, Seattle, WA 98101" +267061,Lightning Charging Cable,1,14.95,10/12/19 18:44,"770 West St, Boston, MA 02215" +267062,Wired Headphones,1,11.99,10/10/19 15:16,"871 Dogwood St, Seattle, WA 98101" +267063,Apple Airpods Headphones,1,150,10/20/19 22:06,"20 Lakeview St, Los Angeles, CA 90001" +267064,Lightning Charging Cable,1,14.95,10/15/19 15:16,"750 Cherry St, Seattle, WA 98101" +267065,Flatscreen TV,1,300,10/14/19 21:50,"775 4th St, San Francisco, CA 94016" +267066,Apple Airpods Headphones,1,150,10/26/19 23:09,"730 8th St, Dallas, TX 75001" +267067,AA Batteries (4-pack),2,3.84,10/19/19 06:14,"549 Spruce St, Boston, MA 02215" +267068,AAA Batteries (4-pack),1,2.99,10/17/19 12:02,"364 Madison St, Atlanta, GA 30301" +267069,27in 4K Gaming Monitor,1,389.99,10/18/19 19:08,"168 8th St, Los Angeles, CA 90001" +267070,Wired Headphones,1,11.99,10/18/19 21:17,"148 Chestnut St, San Francisco, CA 94016" +267071,AA Batteries (4-pack),1,3.84,10/13/19 19:36,"654 Maple St, San Francisco, CA 94016" +267072,Macbook Pro Laptop,1,1700,10/12/19 20:39,"415 Washington St, Los Angeles, CA 90001" +267073,Wired Headphones,1,11.99,10/18/19 18:38,"406 Meadow St, Seattle, WA 98101" +267074,USB-C Charging Cable,2,11.95,10/12/19 19:11,"267 Church St, Seattle, WA 98101" +267075,Wired Headphones,1,11.99,10/05/19 03:54,"359 5th St, San Francisco, CA 94016" +267076,27in FHD Monitor,1,149.99,10/03/19 13:55,"134 River St, Boston, MA 02215" +267077,Bose SoundSport Headphones,1,99.99,10/17/19 15:03,"850 Lincoln St, Los Angeles, CA 90001" +267078,Bose SoundSport Headphones,1,99.99,10/26/19 19:02,"884 11th St, Los Angeles, CA 90001" +267079,34in Ultrawide Monitor,1,379.99,10/25/19 12:21,"209 13th St, Dallas, TX 75001" +267080,USB-C Charging Cable,1,11.95,10/11/19 22:49,"392 Hickory St, Atlanta, GA 30301" +267081,ThinkPad Laptop,1,999.99,10/11/19 20:55,"499 North St, San Francisco, CA 94016" +267082,Flatscreen TV,1,300,10/16/19 17:37,"594 Main St, San Francisco, CA 94016" +267083,Apple Airpods Headphones,1,150,10/11/19 17:39,"981 South St, Portland, OR 97035" +267084,Flatscreen TV,1,300,10/11/19 12:56,"551 South St, Dallas, TX 75001" +267085,Google Phone,1,600,10/12/19 17:05,"596 9th St, Austin, TX 73301" +267086,Lightning Charging Cable,1,14.95,10/01/19 11:27,"64 1st St, Los Angeles, CA 90001" +267087,Google Phone,1,600,10/31/19 07:40,"574 9th St, Portland, OR 97035" +267088,USB-C Charging Cable,1,11.95,10/19/19 14:48,"441 Adams St, San Francisco, CA 94016" +267089,Bose SoundSport Headphones,1,99.99,10/18/19 11:59,"952 Elm St, New York City, NY 10001" +267090,34in Ultrawide Monitor,1,379.99,10/28/19 00:44,"673 Forest St, San Francisco, CA 94016" +267091,Lightning Charging Cable,1,14.95,10/01/19 10:47,"1 Willow St, Austin, TX 73301" +267092,ThinkPad Laptop,1,999.99,10/18/19 16:15,"443 Walnut St, Portland, OR 97035" +267093,AAA Batteries (4-pack),2,2.99,10/09/19 19:01,"676 Sunset St, Portland, OR 97035" +267094,Lightning Charging Cable,2,14.95,10/18/19 18:52,"456 Cedar St, Portland, ME 04101" +267095,ThinkPad Laptop,1,999.99,10/10/19 02:01,"382 Johnson St, Seattle, WA 98101" +267096,Wired Headphones,1,11.99,10/22/19 12:47,"876 7th St, San Francisco, CA 94016" +267097,AA Batteries (4-pack),3,3.84,10/11/19 10:08,"550 Ridge St, Austin, TX 73301" +267098,AAA Batteries (4-pack),1,2.99,10/14/19 05:30,"412 Dogwood St, Austin, TX 73301" +267099,Wired Headphones,1,11.99,10/03/19 17:20,"165 6th St, Austin, TX 73301" +267100,Apple Airpods Headphones,1,150,10/31/19 14:21,"7 Washington St, Los Angeles, CA 90001" +267101,USB-C Charging Cable,1,11.95,10/08/19 11:06,"699 Forest St, San Francisco, CA 94016" +267102,Lightning Charging Cable,1,14.95,10/13/19 13:03,"551 Adams St, Los Angeles, CA 90001" +267103,Wired Headphones,1,11.99,10/11/19 12:16,"473 Walnut St, Boston, MA 02215" +267104,USB-C Charging Cable,1,11.95,10/14/19 12:14,"917 7th St, Los Angeles, CA 90001" +267105,Bose SoundSport Headphones,1,99.99,10/22/19 10:06,"440 Cherry St, Dallas, TX 75001" +267106,AAA Batteries (4-pack),1,2.99,10/30/19 20:10,"188 North St, Los Angeles, CA 90001" +267107,Bose SoundSport Headphones,1,99.99,10/22/19 19:32,"223 13th St, New York City, NY 10001" +267108,Lightning Charging Cable,1,14.95,10/09/19 00:08,"860 12th St, Atlanta, GA 30301" +267109,27in 4K Gaming Monitor,1,389.99,10/24/19 16:44,"994 Johnson St, San Francisco, CA 94016" +267110,Apple Airpods Headphones,1,150,10/02/19 11:09,"196 Chestnut St, Dallas, TX 75001" +267111,20in Monitor,1,109.99,10/17/19 07:19,"820 West St, New York City, NY 10001" +267112,Lightning Charging Cable,1,14.95,10/25/19 12:35,"317 14th St, San Francisco, CA 94016" +267113,Flatscreen TV,1,300,10/16/19 13:43,"995 Lakeview St, Boston, MA 02215" +267114,Apple Airpods Headphones,1,150,10/19/19 18:38,"72 9th St, San Francisco, CA 94016" +267115,Lightning Charging Cable,1,14.95,10/23/19 10:03,"363 Highland St, Boston, MA 02215" +267116,27in FHD Monitor,1,149.99,10/06/19 23:16,"662 Meadow St, San Francisco, CA 94016" +267117,34in Ultrawide Monitor,1,379.99,10/02/19 18:32,"511 Spruce St, New York City, NY 10001" +267118,Apple Airpods Headphones,1,150,10/28/19 20:54,"593 Main St, Austin, TX 73301" +267119,AAA Batteries (4-pack),1,2.99,10/22/19 17:32,"441 9th St, Dallas, TX 75001" +267120,Apple Airpods Headphones,1,150,10/23/19 11:47,"855 14th St, Atlanta, GA 30301" +267121,27in 4K Gaming Monitor,1,389.99,10/02/19 11:43,"867 North St, Dallas, TX 75001" +267122,USB-C Charging Cable,1,11.95,10/05/19 16:09,"930 Wilson St, Seattle, WA 98101" +267123,AA Batteries (4-pack),1,3.84,10/10/19 18:53,"4 12th St, Los Angeles, CA 90001" +267124,AA Batteries (4-pack),2,3.84,10/09/19 00:28,"378 Walnut St, New York City, NY 10001" +267125,AAA Batteries (4-pack),3,2.99,10/26/19 09:20,"629 1st St, San Francisco, CA 94016" +267126,AAA Batteries (4-pack),1,2.99,10/22/19 19:40,"893 Park St, Los Angeles, CA 90001" +267127,USB-C Charging Cable,1,11.95,10/05/19 23:52,"649 1st St, Los Angeles, CA 90001" +267128,Bose SoundSport Headphones,1,99.99,10/11/19 18:01,"250 Pine St, Dallas, TX 75001" +267129,USB-C Charging Cable,1,11.95,10/26/19 14:07,"580 West St, San Francisco, CA 94016" +267130,iPhone,1,700,10/20/19 11:50,"828 10th St, San Francisco, CA 94016" +267131,Wired Headphones,1,11.99,10/13/19 14:34,"673 Jefferson St, Los Angeles, CA 90001" +267132,Wired Headphones,1,11.99,10/02/19 19:39,"321 Cedar St, Portland, OR 97035" +267133,AA Batteries (4-pack),1,3.84,10/03/19 14:32,"995 Jefferson St, Seattle, WA 98101" +267134,Wired Headphones,1,11.99,10/19/19 10:43,"196 Chestnut St, Los Angeles, CA 90001" +267135,Flatscreen TV,1,300,10/31/19 11:38,"332 8th St, Dallas, TX 75001" +267136,Google Phone,1,600,10/21/19 10:09,"204 Highland St, Atlanta, GA 30301" +267137,USB-C Charging Cable,1,11.95,10/10/19 19:19,"600 10th St, Dallas, TX 75001" +267138,Bose SoundSport Headphones,1,99.99,10/05/19 16:15,"117 River St, Portland, OR 97035" +267139,27in 4K Gaming Monitor,1,389.99,10/13/19 16:18,"726 6th St, Austin, TX 73301" +267140,Bose SoundSport Headphones,1,99.99,10/10/19 18:18,"128 Lakeview St, Boston, MA 02215" +267141,Google Phone,1,600,10/08/19 08:27,"993 13th St, Los Angeles, CA 90001" +267141,USB-C Charging Cable,1,11.95,10/08/19 08:27,"993 13th St, Los Angeles, CA 90001" +267142,iPhone,1,700,10/14/19 17:46,"191 Walnut St, San Francisco, CA 94016" +267143,AA Batteries (4-pack),1,3.84,10/15/19 19:21,"783 Pine St, Los Angeles, CA 90001" +267144,Apple Airpods Headphones,1,150,10/09/19 08:39,"458 Madison St, Dallas, TX 75001" +267145,Wired Headphones,1,11.99,10/30/19 10:37,"448 6th St, San Francisco, CA 94016" +267146,Vareebadd Phone,1,400,10/02/19 12:16,"398 North St, San Francisco, CA 94016" +267147,AAA Batteries (4-pack),1,2.99,10/01/19 12:52,"572 Sunset St, Seattle, WA 98101" +267148,AA Batteries (4-pack),1,3.84,10/05/19 11:03,"302 Sunset St, Los Angeles, CA 90001" +267149,iPhone,1,700,10/05/19 22:21,"705 Chestnut St, Seattle, WA 98101" +267150,ThinkPad Laptop,1,999.99,10/09/19 13:00,"592 Willow St, Boston, MA 02215" +267151,Wired Headphones,2,11.99,10/20/19 12:39,"743 Lincoln St, New York City, NY 10001" +267152,AA Batteries (4-pack),1,3.84,10/07/19 01:19,"857 Ridge St, Los Angeles, CA 90001" +267153,Lightning Charging Cable,1,14.95,10/21/19 14:10,"740 Adams St, New York City, NY 10001" +267154,Wired Headphones,1,11.99,10/09/19 16:39,"268 7th St, Los Angeles, CA 90001" +267155,iPhone,1,700,10/04/19 12:24,"691 Forest St, Portland, OR 97035" +267156,Bose SoundSport Headphones,1,99.99,10/03/19 12:06,"418 2nd St, Boston, MA 02215" +267157,Wired Headphones,1,11.99,10/04/19 01:21,"379 South St, Boston, MA 02215" +267158,AAA Batteries (4-pack),1,2.99,10/07/19 14:55,"436 River St, Los Angeles, CA 90001" +267159,27in 4K Gaming Monitor,1,389.99,10/15/19 19:34,"350 Spruce St, San Francisco, CA 94016" +267160,iPhone,1,700,10/23/19 09:29,"605 Park St, New York City, NY 10001" +267161,Lightning Charging Cable,1,14.95,10/09/19 18:39,"648 6th St, Portland, ME 04101" +267162,AAA Batteries (4-pack),1,2.99,10/16/19 08:26,"812 Willow St, Portland, OR 97035" +267163,27in 4K Gaming Monitor,1,389.99,10/12/19 14:27,"516 5th St, San Francisco, CA 94016" +267164,Wired Headphones,1,11.99,10/14/19 11:00,"608 Washington St, San Francisco, CA 94016" +267165,Flatscreen TV,1,300,10/15/19 07:50,"681 Willow St, Los Angeles, CA 90001" +267166,Lightning Charging Cable,1,14.95,10/19/19 15:38,"146 Elm St, San Francisco, CA 94016" +267167,Lightning Charging Cable,1,14.95,10/30/19 16:03,"828 Cedar St, New York City, NY 10001" +267168,Apple Airpods Headphones,1,150,10/13/19 20:16,"290 North St, Dallas, TX 75001" +267169,Lightning Charging Cable,1,14.95,10/03/19 09:37,"674 Cedar St, Los Angeles, CA 90001" +267170,AA Batteries (4-pack),1,3.84,10/14/19 21:26,"100 Spruce St, San Francisco, CA 94016" +267171,Google Phone,1,600,10/14/19 11:38,"418 Adams St, San Francisco, CA 94016" +267172,Google Phone,1,600,10/01/19 16:04,"78 4th St, Austin, TX 73301" +267173,Wired Headphones,1,11.99,10/16/19 17:13,"201 14th St, Boston, MA 02215" +267174,20in Monitor,1,109.99,10/30/19 07:39,"66 South St, Atlanta, GA 30301" +267175,Bose SoundSport Headphones,1,99.99,10/04/19 14:56,"666 Madison St, Boston, MA 02215" +267176,AAA Batteries (4-pack),1,2.99,10/31/19 18:35,"728 Dogwood St, San Francisco, CA 94016" +267177,AA Batteries (4-pack),1,3.84,10/26/19 07:59,"470 North St, Portland, OR 97035" +267178,Wired Headphones,1,11.99,10/22/19 17:02,"723 14th St, Los Angeles, CA 90001" +267179,Lightning Charging Cable,1,14.95,10/10/19 22:19,"651 7th St, Boston, MA 02215" +267180,Flatscreen TV,1,300,10/18/19 09:49,"282 Church St, Austin, TX 73301" +267181,Apple Airpods Headphones,1,150,10/13/19 11:47,"629 West St, New York City, NY 10001" +267182,AAA Batteries (4-pack),3,2.99,10/31/19 14:09,"312 South St, Dallas, TX 75001" +267183,34in Ultrawide Monitor,1,379.99,10/31/19 22:24,"420 Adams St, Los Angeles, CA 90001" +267184,Lightning Charging Cable,2,14.95,10/27/19 01:02,"656 Madison St, Seattle, WA 98101" +267185,USB-C Charging Cable,1,11.95,10/14/19 12:18,"49 Spruce St, Boston, MA 02215" +267186,Vareebadd Phone,1,400,10/29/19 13:00,"651 13th St, Seattle, WA 98101" +267187,USB-C Charging Cable,1,11.95,10/22/19 09:03,"889 5th St, Dallas, TX 75001" +267188,34in Ultrawide Monitor,1,379.99,10/12/19 19:54,"971 Maple St, New York City, NY 10001" +267189,USB-C Charging Cable,1,11.95,10/14/19 19:48,"428 5th St, Los Angeles, CA 90001" +267190,Flatscreen TV,1,300,10/20/19 15:10,"297 12th St, Dallas, TX 75001" +267191,Macbook Pro Laptop,1,1700,10/07/19 13:51,"775 Park St, Dallas, TX 75001" +267192,34in Ultrawide Monitor,1,379.99,10/22/19 03:12,"437 2nd St, Dallas, TX 75001" +267193,AAA Batteries (4-pack),2,2.99,10/18/19 12:35,"150 Ridge St, Dallas, TX 75001" +267194,ThinkPad Laptop,1,999.99,10/23/19 20:19,"884 2nd St, Los Angeles, CA 90001" +267195,iPhone,1,700,10/14/19 13:07,"80 Ridge St, New York City, NY 10001" +267196,20in Monitor,1,109.99,10/05/19 22:19,"971 River St, Los Angeles, CA 90001" +267197,Lightning Charging Cable,1,14.95,10/13/19 00:41,"904 River St, San Francisco, CA 94016" +267198,27in FHD Monitor,1,149.99,10/13/19 08:57,"960 Lakeview St, Boston, MA 02215" +267199,USB-C Charging Cable,1,11.95,10/11/19 10:03,"382 Madison St, Dallas, TX 75001" +267200,AA Batteries (4-pack),1,3.84,10/03/19 12:48,"606 Jefferson St, Los Angeles, CA 90001" +267201,Lightning Charging Cable,1,14.95,10/07/19 15:47,"77 Main St, Portland, ME 04101" +267202,AA Batteries (4-pack),1,3.84,10/09/19 16:07,"908 Washington St, Los Angeles, CA 90001" +267203,34in Ultrawide Monitor,1,379.99,10/21/19 10:09,"359 Church St, Portland, ME 04101" +267204,AAA Batteries (4-pack),1,2.99,10/02/19 23:39,"36 Center St, Seattle, WA 98101" +267205,USB-C Charging Cable,1,11.95,10/24/19 18:19,"885 Hickory St, Los Angeles, CA 90001" +267206,Apple Airpods Headphones,1,150,10/24/19 10:27,"602 Dogwood St, San Francisco, CA 94016" +267207,Wired Headphones,1,11.99,10/27/19 14:37,"703 Forest St, Boston, MA 02215" +267208,Apple Airpods Headphones,1,150,10/12/19 17:06,"427 Church St, San Francisco, CA 94016" +267209,Bose SoundSport Headphones,1,99.99,10/01/19 17:15,"213 Lake St, Portland, OR 97035" +267210,LG Dryer,1,600.0,10/12/19 10:11,"273 Willow St, New York City, NY 10001" +267211,Wired Headphones,1,11.99,10/14/19 14:32,"49 Highland St, Seattle, WA 98101" +267212,AA Batteries (4-pack),1,3.84,10/16/19 01:33,"687 Wilson St, Seattle, WA 98101" +267213,27in 4K Gaming Monitor,1,389.99,10/31/19 19:26,"292 Highland St, San Francisco, CA 94016" +267214,Lightning Charging Cable,1,14.95,10/10/19 12:14,"543 Jackson St, San Francisco, CA 94016" +267215,AAA Batteries (4-pack),1,2.99,10/31/19 11:06,"880 Maple St, Portland, OR 97035" +267216,Wired Headphones,1,11.99,10/30/19 20:24,"543 Main St, Seattle, WA 98101" +267217,20in Monitor,1,109.99,10/30/19 19:45,"677 Meadow St, New York City, NY 10001" +267218,34in Ultrawide Monitor,1,379.99,10/01/19 17:27,"17 West St, New York City, NY 10001" +267219,Lightning Charging Cable,1,14.95,10/23/19 19:29,"270 Pine St, Seattle, WA 98101" +267220,iPhone,1,700,10/30/19 20:08,"872 Sunset St, New York City, NY 10001" +267221,Apple Airpods Headphones,1,150,10/05/19 13:34,"61 Main St, Los Angeles, CA 90001" +267222,USB-C Charging Cable,1,11.95,10/06/19 00:28,"659 10th St, Dallas, TX 75001" +267223,iPhone,1,700,10/15/19 09:28,"127 8th St, San Francisco, CA 94016" +267224,34in Ultrawide Monitor,1,379.99,10/29/19 10:08,"55 Madison St, Dallas, TX 75001" +267225,AAA Batteries (4-pack),2,2.99,10/26/19 13:46,"832 Willow St, Dallas, TX 75001" +267226,27in FHD Monitor,1,149.99,10/25/19 12:02,"336 7th St, San Francisco, CA 94016" +267227,AA Batteries (4-pack),1,3.84,10/04/19 10:11,"831 Chestnut St, San Francisco, CA 94016" +267228,Flatscreen TV,1,300,10/16/19 15:03,"768 Lincoln St, Dallas, TX 75001" +267229,Wired Headphones,1,11.99,10/24/19 20:46,"952 Washington St, Los Angeles, CA 90001" +267230,27in 4K Gaming Monitor,1,389.99,10/26/19 12:08,"894 4th St, Seattle, WA 98101" +267231,ThinkPad Laptop,1,999.99,10/29/19 06:32,"957 10th St, New York City, NY 10001" +267232,AAA Batteries (4-pack),1,2.99,10/03/19 12:01,"399 13th St, San Francisco, CA 94016" +267233,AAA Batteries (4-pack),1,2.99,10/23/19 14:57,"626 Dogwood St, New York City, NY 10001" +267234,USB-C Charging Cable,1,11.95,10/29/19 17:21,"189 West St, Boston, MA 02215" +267235,AA Batteries (4-pack),1,3.84,10/18/19 08:04,"121 River St, Boston, MA 02215" +267236,USB-C Charging Cable,1,11.95,10/17/19 11:55,"380 North St, New York City, NY 10001" +267237,USB-C Charging Cable,1,11.95,10/24/19 07:43,"750 Main St, San Francisco, CA 94016" +267238,Google Phone,1,600,10/28/19 10:56,"944 9th St, Boston, MA 02215" +267239,34in Ultrawide Monitor,1,379.99,10/30/19 19:33,"413 Dogwood St, Austin, TX 73301" +267240,Flatscreen TV,1,300,10/23/19 12:58,"114 Madison St, San Francisco, CA 94016" +267241,AAA Batteries (4-pack),1,2.99,10/15/19 16:16,"627 Hickory St, San Francisco, CA 94016" +267241,iPhone,1,700,10/15/19 16:16,"627 Hickory St, San Francisco, CA 94016" +267242,AAA Batteries (4-pack),2,2.99,10/28/19 20:05,"18 9th St, San Francisco, CA 94016" +267243,27in 4K Gaming Monitor,1,389.99,10/13/19 10:18,"733 12th St, Austin, TX 73301" +267244,AAA Batteries (4-pack),5,2.99,10/24/19 22:02,"550 9th St, San Francisco, CA 94016" +267245,Apple Airpods Headphones,1,150,10/04/19 21:15,"369 Forest St, Los Angeles, CA 90001" +267246,USB-C Charging Cable,1,11.95,10/27/19 19:51,"331 Park St, New York City, NY 10001" +267247,AAA Batteries (4-pack),4,2.99,10/14/19 14:35,"53 Highland St, Austin, TX 73301" +267248,Apple Airpods Headphones,1,150,10/06/19 15:26,"222 Park St, San Francisco, CA 94016" +267249,USB-C Charging Cable,1,11.95,10/30/19 02:30,"689 Chestnut St, Portland, OR 97035" +267250,USB-C Charging Cable,1,11.95,10/11/19 22:10,"543 Elm St, San Francisco, CA 94016" +267251,Lightning Charging Cable,1,14.95,10/30/19 17:47,"558 Cherry St, Los Angeles, CA 90001" +267252,ThinkPad Laptop,1,999.99,10/06/19 22:55,"552 South St, San Francisco, CA 94016" +267253,Flatscreen TV,1,300,10/26/19 13:42,"529 South St, New York City, NY 10001" +267254,Wired Headphones,1,11.99,10/05/19 12:03,"859 Dogwood St, Los Angeles, CA 90001" +267255,USB-C Charging Cable,2,11.95,10/01/19 17:13,"556 12th St, Dallas, TX 75001" +267256,Google Phone,1,600,10/05/19 19:52,"195 Highland St, Boston, MA 02215" +267257,Wired Headphones,1,11.99,10/27/19 00:03,"808 Maple St, New York City, NY 10001" +267258,34in Ultrawide Monitor,1,379.99,10/27/19 01:03,"95 Jackson St, Portland, OR 97035" +267259,Lightning Charging Cable,2,14.95,10/24/19 19:42,"293 1st St, Portland, OR 97035" +267260,AAA Batteries (4-pack),1,2.99,10/26/19 18:07,"69 River St, San Francisco, CA 94016" +267261,USB-C Charging Cable,1,11.95,10/19/19 00:03,"829 Lakeview St, Seattle, WA 98101" +267262,27in 4K Gaming Monitor,1,389.99,10/12/19 00:44,"567 13th St, Los Angeles, CA 90001" +267263,Lightning Charging Cable,1,14.95,10/28/19 16:36,"553 River St, Austin, TX 73301" +267264,AAA Batteries (4-pack),1,2.99,10/27/19 15:00,"87 Church St, San Francisco, CA 94016" +267265,Wired Headphones,2,11.99,10/13/19 10:37,"884 Willow St, San Francisco, CA 94016" +267266,27in 4K Gaming Monitor,1,389.99,10/10/19 21:25,"330 Johnson St, Los Angeles, CA 90001" +267267,Flatscreen TV,1,300,10/31/19 12:58,"873 Pine St, Los Angeles, CA 90001" +267268,AAA Batteries (4-pack),1,2.99,10/14/19 18:40,"261 4th St, Seattle, WA 98101" +267269,ThinkPad Laptop,1,999.99,10/26/19 08:06,"877 Highland St, Atlanta, GA 30301" +267270,USB-C Charging Cable,1,11.95,10/27/19 08:41,"774 Forest St, New York City, NY 10001" +267271,USB-C Charging Cable,1,11.95,10/04/19 07:54,"919 Hill St, Boston, MA 02215" +267272,USB-C Charging Cable,1,11.95,10/16/19 09:00,"60 Jefferson St, Los Angeles, CA 90001" +267273,Lightning Charging Cable,1,14.95,10/16/19 00:02,"105 Pine St, Atlanta, GA 30301" +267274,USB-C Charging Cable,1,11.95,10/14/19 19:37,"345 South St, Atlanta, GA 30301" +267275,Bose SoundSport Headphones,1,99.99,10/29/19 19:49,"944 Dogwood St, San Francisco, CA 94016" +267276,Vareebadd Phone,1,400,10/23/19 08:42,"530 Washington St, Austin, TX 73301" +267277,LG Washing Machine,1,600.0,10/18/19 19:12,"546 Washington St, New York City, NY 10001" +267278,AAA Batteries (4-pack),1,2.99,10/01/19 07:50,"58 Church St, San Francisco, CA 94016" +267279,USB-C Charging Cable,1,11.95,10/08/19 11:03,"679 Sunset St, Seattle, WA 98101" +267280,Lightning Charging Cable,1,14.95,10/10/19 13:01,"691 Wilson St, San Francisco, CA 94016" +267281,LG Dryer,1,600.0,10/30/19 19:36,"989 4th St, Dallas, TX 75001" +267282,AAA Batteries (4-pack),1,2.99,10/03/19 18:19,"75 West St, Portland, OR 97035" +267283,Lightning Charging Cable,1,14.95,10/16/19 10:52,"675 13th St, San Francisco, CA 94016" +267284,27in 4K Gaming Monitor,1,389.99,10/29/19 17:21,"838 Dogwood St, Atlanta, GA 30301" +267285,34in Ultrawide Monitor,1,379.99,10/22/19 11:06,"949 Willow St, Dallas, TX 75001" +267286,AA Batteries (4-pack),1,3.84,10/13/19 09:02,"503 1st St, San Francisco, CA 94016" +267287,27in 4K Gaming Monitor,1,389.99,10/17/19 13:24,"885 Jefferson St, Boston, MA 02215" +267288,Google Phone,1,600,10/26/19 16:59,"153 Sunset St, New York City, NY 10001" +267289,Bose SoundSport Headphones,1,99.99,10/15/19 12:46,"616 North St, Boston, MA 02215" +267290,Google Phone,1,600,10/01/19 15:06,"911 9th St, Portland, ME 04101" +267290,USB-C Charging Cable,1,11.95,10/01/19 15:06,"911 9th St, Portland, ME 04101" +267291,Google Phone,1,600,10/05/19 10:34,"678 Dogwood St, San Francisco, CA 94016" +267292,20in Monitor,1,109.99,10/22/19 12:53,"824 Lake St, Austin, TX 73301" +267293,Lightning Charging Cable,1,14.95,10/04/19 12:58,"615 Jefferson St, Los Angeles, CA 90001" +267294,USB-C Charging Cable,1,11.95,10/26/19 18:55,"535 Lakeview St, Seattle, WA 98101" +267295,Lightning Charging Cable,1,14.95,10/29/19 09:24,"6 Lakeview St, Boston, MA 02215" +267296,AAA Batteries (4-pack),1,2.99,10/27/19 18:52,"283 Hill St, Seattle, WA 98101" +267297,ThinkPad Laptop,1,999.99,10/05/19 20:19,"223 2nd St, Atlanta, GA 30301" +267298,Lightning Charging Cable,1,14.95,10/17/19 19:15,"918 Spruce St, Boston, MA 02215" +267299,USB-C Charging Cable,2,11.95,10/11/19 20:52,"363 Lake St, Los Angeles, CA 90001" +267300,Bose SoundSport Headphones,1,99.99,10/03/19 21:48,"38 4th St, San Francisco, CA 94016" +267301,AAA Batteries (4-pack),1,2.99,10/17/19 14:21,"21 Hickory St, Seattle, WA 98101" +267302,Vareebadd Phone,1,400,10/06/19 09:07,"200 Jefferson St, Portland, OR 97035" +267303,Google Phone,1,600,10/15/19 11:19,"774 Highland St, New York City, NY 10001" +267303,USB-C Charging Cable,1,11.95,10/15/19 11:19,"774 Highland St, New York City, NY 10001" +267304,AA Batteries (4-pack),1,3.84,10/03/19 15:02,"175 5th St, San Francisco, CA 94016" +267305,Bose SoundSport Headphones,1,99.99,10/04/19 22:10,"734 Ridge St, Austin, TX 73301" +267306,Lightning Charging Cable,1,14.95,10/19/19 12:54,"316 10th St, San Francisco, CA 94016" +267307,AA Batteries (4-pack),1,3.84,10/08/19 21:55,"819 North St, Los Angeles, CA 90001" +267308,Bose SoundSport Headphones,1,99.99,10/16/19 21:05,"642 Sunset St, Boston, MA 02215" +267309,Apple Airpods Headphones,1,150,10/17/19 01:12,"793 6th St, San Francisco, CA 94016" +267310,USB-C Charging Cable,2,11.95,10/30/19 19:30,"186 Meadow St, Los Angeles, CA 90001" +267310,Wired Headphones,1,11.99,10/30/19 19:30,"186 Meadow St, Los Angeles, CA 90001" +267311,20in Monitor,1,109.99,10/13/19 12:23,"41 14th St, San Francisco, CA 94016" +267312,Bose SoundSport Headphones,1,99.99,10/21/19 13:52,"236 Adams St, New York City, NY 10001" +267313,27in FHD Monitor,1,149.99,10/13/19 08:49,"786 Lincoln St, San Francisco, CA 94016" +267314,AA Batteries (4-pack),1,3.84,10/18/19 12:37,"291 13th St, Seattle, WA 98101" +267315,Lightning Charging Cable,1,14.95,10/28/19 19:48,"327 12th St, Atlanta, GA 30301" +267316,iPhone,1,700,10/07/19 22:25,"753 7th St, New York City, NY 10001" +267317,AAA Batteries (4-pack),2,2.99,10/07/19 11:54,"882 Adams St, New York City, NY 10001" +267318,27in FHD Monitor,1,149.99,10/08/19 12:28,"712 Jackson St, San Francisco, CA 94016" +267319,Flatscreen TV,1,300,10/11/19 21:39,"486 Lincoln St, Los Angeles, CA 90001" +267320,Bose SoundSport Headphones,1,99.99,10/11/19 16:25,"61 9th St, Portland, OR 97035" +267321,27in FHD Monitor,1,149.99,10/08/19 07:05,"628 Dogwood St, Seattle, WA 98101" +267322,27in 4K Gaming Monitor,1,389.99,10/01/19 18:54,"976 South St, San Francisco, CA 94016" +267323,Apple Airpods Headphones,1,150,10/09/19 12:02,"417 10th St, Los Angeles, CA 90001" +267323,AA Batteries (4-pack),1,3.84,10/09/19 12:02,"417 10th St, Los Angeles, CA 90001" +267324,ThinkPad Laptop,1,999.99,10/12/19 15:17,"408 Walnut St, Boston, MA 02215" +267325,Lightning Charging Cable,1,14.95,10/31/19 19:12,"379 9th St, Portland, ME 04101" +267326,ThinkPad Laptop,1,999.99,10/04/19 09:15,"488 12th St, Boston, MA 02215" +267327,Wired Headphones,1,11.99,10/18/19 14:56,"582 6th St, Seattle, WA 98101" +267328,Lightning Charging Cable,1,14.95,10/19/19 09:23,"992 2nd St, Atlanta, GA 30301" +267329,USB-C Charging Cable,1,11.95,10/09/19 21:33,"639 6th St, San Francisco, CA 94016" +267330,AA Batteries (4-pack),2,3.84,10/26/19 13:23,"642 Johnson St, Portland, OR 97035" +267331,USB-C Charging Cable,1,11.95,10/03/19 11:19,"303 Jefferson St, Atlanta, GA 30301" +267332,Macbook Pro Laptop,1,1700,10/02/19 21:42,"995 Wilson St, Los Angeles, CA 90001" +267333,Lightning Charging Cable,1,14.95,10/08/19 16:26,"319 Sunset St, Portland, ME 04101" +267334,ThinkPad Laptop,1,999.99,10/30/19 12:58,"75 8th St, New York City, NY 10001" +267335,20in Monitor,2,109.99,10/04/19 16:41,"964 14th St, New York City, NY 10001" +267336,Wired Headphones,1,11.99,10/06/19 02:24,"211 13th St, Austin, TX 73301" +267337,AAA Batteries (4-pack),1,2.99,10/31/19 20:35,"271 Wilson St, Atlanta, GA 30301" +267338,27in 4K Gaming Monitor,1,389.99,10/15/19 18:18,"381 Hickory St, San Francisco, CA 94016" +267339,27in 4K Gaming Monitor,1,389.99,10/21/19 15:33,"227 6th St, Portland, OR 97035" +267340,Macbook Pro Laptop,1,1700,10/01/19 20:51,"47 Lakeview St, Austin, TX 73301" +267341,USB-C Charging Cable,1,11.95,10/07/19 20:23,"357 West St, New York City, NY 10001" +267342,27in FHD Monitor,1,149.99,10/29/19 15:01,"949 5th St, Los Angeles, CA 90001" +267343,27in 4K Gaming Monitor,1,389.99,10/23/19 23:22,"935 Elm St, Atlanta, GA 30301" +267344,Apple Airpods Headphones,1,150,10/28/19 23:10,"563 8th St, Atlanta, GA 30301" +267345,Bose SoundSport Headphones,1,99.99,10/09/19 21:04,"878 Dogwood St, Los Angeles, CA 90001" +267346,USB-C Charging Cable,1,11.95,10/21/19 21:43,"826 10th St, Boston, MA 02215" +267347,Bose SoundSport Headphones,1,99.99,10/05/19 12:51,"78 Meadow St, Austin, TX 73301" +267348,AA Batteries (4-pack),1,3.84,10/10/19 21:10,"665 Center St, San Francisco, CA 94016" +267349,Wired Headphones,1,11.99,10/30/19 21:40,"963 14th St, Los Angeles, CA 90001" +267350,27in 4K Gaming Monitor,1,389.99,10/31/19 14:56,"104 14th St, Seattle, WA 98101" +267351,Lightning Charging Cable,1,14.95,10/25/19 00:28,"135 West St, San Francisco, CA 94016" +267352,Lightning Charging Cable,1,14.95,10/01/19 21:11,"426 Park St, Austin, TX 73301" +267353,Lightning Charging Cable,1,14.95,10/03/19 03:07,"141 Walnut St, New York City, NY 10001" +267354,LG Washing Machine,1,600.0,10/23/19 11:20,"35 12th St, Dallas, TX 75001" +267355,Lightning Charging Cable,2,14.95,10/30/19 14:14,"647 Cherry St, New York City, NY 10001" +267356,27in FHD Monitor,1,149.99,10/01/19 20:10,"889 Johnson St, Dallas, TX 75001" +267357,USB-C Charging Cable,1,11.95,10/29/19 08:29,"844 13th St, San Francisco, CA 94016" +267358,Flatscreen TV,1,300,10/07/19 07:17,"321 Wilson St, Boston, MA 02215" +267359,AAA Batteries (4-pack),1,2.99,10/09/19 10:01,"790 Willow St, Seattle, WA 98101" +267360,Lightning Charging Cable,1,14.95,10/20/19 13:50,"517 North St, San Francisco, CA 94016" +267361,AA Batteries (4-pack),1,3.84,10/08/19 17:28,"828 4th St, San Francisco, CA 94016" +267362,27in FHD Monitor,1,149.99,10/17/19 13:44,"299 Church St, Los Angeles, CA 90001" +267363,Bose SoundSport Headphones,1,99.99,10/01/19 21:48,"562 Walnut St, Portland, OR 97035" +267364,AAA Batteries (4-pack),1,2.99,10/18/19 19:21,"391 Main St, New York City, NY 10001" +267365,27in FHD Monitor,1,149.99,10/27/19 17:35,"523 Madison St, Atlanta, GA 30301" +267366,Bose SoundSport Headphones,1,99.99,10/15/19 09:11,"47 Meadow St, San Francisco, CA 94016" +267367,Flatscreen TV,1,300,10/04/19 02:17,"867 13th St, Los Angeles, CA 90001" +267368,AAA Batteries (4-pack),2,2.99,10/10/19 19:40,"295 River St, Los Angeles, CA 90001" +267369,34in Ultrawide Monitor,1,379.99,10/04/19 11:01,"97 8th St, New York City, NY 10001" +267370,Bose SoundSport Headphones,2,99.99,10/25/19 21:22,"832 Hill St, San Francisco, CA 94016" +267371,Bose SoundSport Headphones,1,99.99,10/28/19 17:23,"462 Main St, Los Angeles, CA 90001" +267372,Lightning Charging Cable,1,14.95,10/27/19 08:22,"205 Cherry St, San Francisco, CA 94016" +267373,Wired Headphones,1,11.99,10/14/19 23:04,"314 Washington St, New York City, NY 10001" +267374,Lightning Charging Cable,1,14.95,10/09/19 04:36,"656 Chestnut St, Portland, OR 97035" +267375,Google Phone,1,600,10/10/19 08:42,"421 Pine St, New York City, NY 10001" +267376,iPhone,1,700,10/30/19 19:32,"561 Lincoln St, San Francisco, CA 94016" +267377,Wired Headphones,1,11.99,10/25/19 10:48,"551 Johnson St, San Francisco, CA 94016" +267378,Wired Headphones,1,11.99,10/02/19 13:21,"704 14th St, Portland, OR 97035" +267379,Lightning Charging Cable,1,14.95,10/14/19 08:14,"511 Lake St, Dallas, TX 75001" +267380,Wired Headphones,1,11.99,10/29/19 19:34,"898 Church St, Dallas, TX 75001" +267381,USB-C Charging Cable,1,11.95,10/28/19 08:51,"565 Pine St, San Francisco, CA 94016" +267382,Lightning Charging Cable,1,14.95,10/07/19 08:06,"819 Ridge St, Los Angeles, CA 90001" +267383,AA Batteries (4-pack),1,3.84,10/02/19 13:01,"11 Hill St, Boston, MA 02215" +267384,iPhone,1,700,10/07/19 12:44,"948 Ridge St, Boston, MA 02215" +267384,Lightning Charging Cable,1,14.95,10/07/19 12:44,"948 Ridge St, Boston, MA 02215" +267385,Lightning Charging Cable,1,14.95,10/21/19 08:40,"741 Johnson St, Atlanta, GA 30301" +267386,AA Batteries (4-pack),2,3.84,10/06/19 13:11,"488 Lincoln St, Los Angeles, CA 90001" +267387,27in FHD Monitor,1,149.99,10/31/19 18:12,"198 11th St, Seattle, WA 98101" +267388,Bose SoundSport Headphones,1,99.99,10/30/19 10:51,"456 Lakeview St, Dallas, TX 75001" +267389,Apple Airpods Headphones,1,150,10/24/19 18:38,"674 8th St, Los Angeles, CA 90001" +267390,27in FHD Monitor,1,149.99,10/11/19 21:10,"434 10th St, New York City, NY 10001" +267391,Google Phone,1,600,10/06/19 09:00,"202 Wilson St, Boston, MA 02215" +267391,Bose SoundSport Headphones,1,99.99,10/06/19 09:00,"202 Wilson St, Boston, MA 02215" +267391,Wired Headphones,1,11.99,10/06/19 09:00,"202 Wilson St, Boston, MA 02215" +267392,AAA Batteries (4-pack),1,2.99,11/01/19 02:07,"291 Highland St, San Francisco, CA 94016" +267393,AA Batteries (4-pack),1,3.84,10/19/19 19:34,"498 Walnut St, Boston, MA 02215" +267394,AA Batteries (4-pack),1,3.84,10/28/19 22:39,"234 14th St, Boston, MA 02215" +267395,Bose SoundSport Headphones,1,99.99,10/30/19 11:23,"877 Sunset St, Boston, MA 02215" +267396,Wired Headphones,1,11.99,10/09/19 13:09,"854 Lake St, Seattle, WA 98101" +267397,AA Batteries (4-pack),1,3.84,10/30/19 09:55,"845 6th St, Boston, MA 02215" +267398,27in FHD Monitor,1,149.99,10/13/19 13:46,"486 14th St, New York City, NY 10001" +267399,Vareebadd Phone,1,400,10/16/19 19:23,"257 Willow St, Seattle, WA 98101" +267399,USB-C Charging Cable,2,11.95,10/16/19 19:23,"257 Willow St, Seattle, WA 98101" +267399,Bose SoundSport Headphones,1,99.99,10/16/19 19:23,"257 Willow St, Seattle, WA 98101" +267400,Bose SoundSport Headphones,1,99.99,10/20/19 13:14,"135 Pine St, Austin, TX 73301" +267401,AAA Batteries (4-pack),2,2.99,10/18/19 09:37,"937 Walnut St, San Francisco, CA 94016" +267402,AA Batteries (4-pack),1,3.84,11/01/19 00:51,"726 9th St, New York City, NY 10001" +267403,34in Ultrawide Monitor,1,379.99,10/08/19 20:09,"792 Elm St, Los Angeles, CA 90001" +267404,AAA Batteries (4-pack),2,2.99,10/14/19 20:30,"468 Adams St, San Francisco, CA 94016" +267405,27in FHD Monitor,1,149.99,10/25/19 12:50,"659 Park St, San Francisco, CA 94016" +267406,Wired Headphones,1,11.99,10/11/19 20:39,"21 Chestnut St, San Francisco, CA 94016" +267407,Google Phone,1,600,10/24/19 20:34,"925 Hill St, Portland, OR 97035" +267407,Wired Headphones,1,11.99,10/24/19 20:34,"925 Hill St, Portland, OR 97035" +267408,Flatscreen TV,1,300,10/29/19 22:45,"730 Adams St, Portland, ME 04101" +267409,AA Batteries (4-pack),1,3.84,10/13/19 19:37,"438 Church St, Portland, ME 04101" +267410,Google Phone,1,600,10/24/19 12:09,"422 11th St, Los Angeles, CA 90001" +267411,AAA Batteries (4-pack),1,2.99,10/21/19 14:43,"672 Meadow St, San Francisco, CA 94016" +267412,ThinkPad Laptop,1,999.99,10/26/19 20:30,"120 13th St, Los Angeles, CA 90001" +267413,USB-C Charging Cable,1,11.95,10/05/19 20:28,"355 8th St, Los Angeles, CA 90001" +267414,Lightning Charging Cable,1,14.95,10/01/19 15:22,"180 10th St, Atlanta, GA 30301" +267415,Wired Headphones,1,11.99,10/31/19 23:15,"724 River St, San Francisco, CA 94016" +267416,20in Monitor,1,109.99,10/31/19 17:21,"606 Main St, Seattle, WA 98101" +267417,Apple Airpods Headphones,1,150,10/29/19 20:53,"751 Cedar St, New York City, NY 10001" +267418,27in 4K Gaming Monitor,1,389.99,10/26/19 17:55,"783 8th St, San Francisco, CA 94016" +267419,Flatscreen TV,1,300,10/15/19 18:07,"669 Cedar St, Seattle, WA 98101" +267420,Wired Headphones,1,11.99,10/07/19 23:23,"136 Center St, Seattle, WA 98101" +267421,AAA Batteries (4-pack),2,2.99,10/02/19 23:52,"814 4th St, Los Angeles, CA 90001" +267422,Lightning Charging Cable,1,14.95,10/21/19 09:41,"541 Lakeview St, San Francisco, CA 94016" +267423,Wired Headphones,1,11.99,10/18/19 20:48,"64 12th St, San Francisco, CA 94016" +267424,Apple Airpods Headphones,1,150,10/09/19 11:54,"878 Meadow St, Portland, OR 97035" +267425,Lightning Charging Cable,2,14.95,10/31/19 22:00,"260 Adams St, Austin, TX 73301" +267426,AA Batteries (4-pack),1,3.84,10/18/19 08:42,"129 11th St, New York City, NY 10001" +267427,USB-C Charging Cable,1,11.95,10/09/19 15:37,"544 Sunset St, Seattle, WA 98101" +267428,Wired Headphones,1,11.99,10/22/19 21:41,"63 West St, Los Angeles, CA 90001" +267429,AAA Batteries (4-pack),1,2.99,10/21/19 12:40,"831 Elm St, San Francisco, CA 94016" +267430,ThinkPad Laptop,1,999.99,10/31/19 22:07,"896 Chestnut St, Portland, OR 97035" +267431,27in 4K Gaming Monitor,1,389.99,10/18/19 18:02,"827 Lakeview St, Dallas, TX 75001" +267432,Apple Airpods Headphones,1,150,10/21/19 09:40,"457 Highland St, San Francisco, CA 94016" +267433,Bose SoundSport Headphones,1,99.99,10/31/19 14:31,"30 Forest St, Boston, MA 02215" +267434,Apple Airpods Headphones,1,150,10/30/19 09:02,"476 Lakeview St, San Francisco, CA 94016" +267435,34in Ultrawide Monitor,1,379.99,10/28/19 23:31,"87 Church St, Los Angeles, CA 90001" +267436,Google Phone,1,600,10/18/19 16:02,"196 Lake St, San Francisco, CA 94016" +267437,AA Batteries (4-pack),1,3.84,10/18/19 00:29,"100 Hickory St, Boston, MA 02215" +267438,USB-C Charging Cable,1,11.95,10/29/19 21:47,"463 Hickory St, Los Angeles, CA 90001" +267439,Lightning Charging Cable,1,14.95,10/19/19 15:15,"994 Maple St, Seattle, WA 98101" +267440,USB-C Charging Cable,1,11.95,10/15/19 00:22,"541 Park St, Atlanta, GA 30301" +267441,Wired Headphones,2,11.99,10/26/19 10:28,"827 Meadow St, Atlanta, GA 30301" +267442,Lightning Charging Cable,1,14.95,10/17/19 14:43,"640 Sunset St, Portland, OR 97035" +267443,USB-C Charging Cable,1,11.95,10/22/19 17:23,"819 Madison St, Portland, OR 97035" +267444,iPhone,1,700,10/30/19 17:22,"313 Meadow St, Seattle, WA 98101" +267445,20in Monitor,1,109.99,10/30/19 21:25,"603 14th St, Atlanta, GA 30301" +267446,20in Monitor,1,109.99,10/16/19 13:32,"440 Adams St, Dallas, TX 75001" +267447,Wired Headphones,1,11.99,10/26/19 22:08,"533 Ridge St, Boston, MA 02215" +267448,AA Batteries (4-pack),1,3.84,10/17/19 12:49,"861 Sunset St, San Francisco, CA 94016" +267449,Apple Airpods Headphones,2,150,10/14/19 13:35,"369 Center St, San Francisco, CA 94016" +267450,Bose SoundSport Headphones,1,99.99,10/04/19 10:27,"974 Johnson St, Los Angeles, CA 90001" +267451,Wired Headphones,1,11.99,10/22/19 06:29,"788 Ridge St, Dallas, TX 75001" +267452,Apple Airpods Headphones,1,150,10/29/19 18:56,"336 Hill St, Los Angeles, CA 90001" +267453,USB-C Charging Cable,1,11.95,10/24/19 10:59,"878 14th St, Dallas, TX 75001" +267454,AAA Batteries (4-pack),1,2.99,10/04/19 11:37,"510 Center St, San Francisco, CA 94016" +267455,USB-C Charging Cable,1,11.95,10/03/19 19:02,"785 Washington St, Los Angeles, CA 90001" +267456,AA Batteries (4-pack),1,3.84,10/25/19 09:28,"991 7th St, Los Angeles, CA 90001" +267457,Wired Headphones,3,11.99,10/14/19 18:04,"852 Meadow St, Atlanta, GA 30301" +267458,Vareebadd Phone,1,400,10/27/19 22:25,"550 4th St, New York City, NY 10001" +267459,Bose SoundSport Headphones,1,99.99,10/04/19 13:36,"628 Jefferson St, Seattle, WA 98101" +267460,Wired Headphones,1,11.99,10/31/19 17:56,"571 Washington St, New York City, NY 10001" +267461,34in Ultrawide Monitor,1,379.99,10/24/19 16:46,"148 Lincoln St, Dallas, TX 75001" +267462,Vareebadd Phone,1,400,10/21/19 18:49,"968 River St, Boston, MA 02215" +267463,AAA Batteries (4-pack),1,2.99,10/15/19 14:22,"174 Park St, San Francisco, CA 94016" +267463,AA Batteries (4-pack),1,3.84,10/15/19 14:22,"174 Park St, San Francisco, CA 94016" +267464,AAA Batteries (4-pack),4,2.99,10/03/19 20:43,"783 Elm St, Atlanta, GA 30301" +267465,USB-C Charging Cable,1,11.95,10/01/19 11:26,"91 Pine St, New York City, NY 10001" +267466,AAA Batteries (4-pack),3,2.99,10/10/19 08:58,"661 Wilson St, San Francisco, CA 94016" +267467,AAA Batteries (4-pack),1,2.99,10/05/19 20:55,"497 Cherry St, Austin, TX 73301" +267468,Vareebadd Phone,1,400,10/13/19 19:46,"523 12th St, Seattle, WA 98101" +267469,Lightning Charging Cable,1,14.95,10/18/19 17:17,"894 Cherry St, Boston, MA 02215" +267470,USB-C Charging Cable,1,11.95,10/23/19 09:51,"499 Lincoln St, Boston, MA 02215" +267471,iPhone,1,700,10/19/19 18:51,"387 Johnson St, New York City, NY 10001" +267471,Wired Headphones,1,11.99,10/19/19 18:51,"387 Johnson St, New York City, NY 10001" +267472,Lightning Charging Cable,1,14.95,10/09/19 15:58,"94 4th St, Atlanta, GA 30301" +267473,AA Batteries (4-pack),1,3.84,10/31/19 18:40,"308 9th St, Seattle, WA 98101" +267474,34in Ultrawide Monitor,1,379.99,10/30/19 14:21,"976 Chestnut St, New York City, NY 10001" +267475,Lightning Charging Cable,1,14.95,10/03/19 12:44,"779 Cedar St, Atlanta, GA 30301" +267476,Wired Headphones,1,11.99,10/05/19 09:14,"318 Jackson St, Los Angeles, CA 90001" +267477,AAA Batteries (4-pack),1,2.99,10/23/19 11:39,"387 Forest St, Seattle, WA 98101" +267478,AAA Batteries (4-pack),1,2.99,10/22/19 14:27,"992 Park St, San Francisco, CA 94016" +267479,Wired Headphones,1,11.99,10/01/19 19:46,"836 Lake St, San Francisco, CA 94016" +267480,Google Phone,1,600,10/18/19 14:16,"785 8th St, San Francisco, CA 94016" +267481,AAA Batteries (4-pack),2,2.99,10/14/19 20:23,"356 9th St, Boston, MA 02215" +267482,Apple Airpods Headphones,1,150,10/13/19 16:06,"701 Lincoln St, Los Angeles, CA 90001" +267483,AAA Batteries (4-pack),1,2.99,10/16/19 19:47,"533 Jefferson St, San Francisco, CA 94016" +267484,Lightning Charging Cable,1,14.95,10/29/19 19:20,"133 River St, Seattle, WA 98101" +267485,USB-C Charging Cable,1,11.95,10/16/19 22:07,"169 Hill St, New York City, NY 10001" +267486,27in 4K Gaming Monitor,1,389.99,10/18/19 20:08,"28 Jefferson St, New York City, NY 10001" +267487,Apple Airpods Headphones,1,150,10/31/19 20:56,"533 Sunset St, Los Angeles, CA 90001" +267488,Wired Headphones,1,11.99,10/26/19 12:18,"139 Hill St, Atlanta, GA 30301" +267489,27in 4K Gaming Monitor,1,389.99,10/22/19 23:26,"612 Johnson St, San Francisco, CA 94016" +267490,Lightning Charging Cable,1,14.95,10/02/19 20:54,"323 7th St, Seattle, WA 98101" +267491,AA Batteries (4-pack),1,3.84,10/20/19 13:13,"404 Cherry St, San Francisco, CA 94016" +267492,34in Ultrawide Monitor,1,379.99,10/01/19 07:19,"531 Main St, Los Angeles, CA 90001" +267493,AA Batteries (4-pack),1,3.84,10/14/19 23:29,"161 Dogwood St, San Francisco, CA 94016" +267494,AA Batteries (4-pack),1,3.84,10/28/19 17:50,"846 5th St, Atlanta, GA 30301" +267495,Lightning Charging Cable,1,14.95,10/27/19 00:03,"971 Park St, San Francisco, CA 94016" +267496,Lightning Charging Cable,1,14.95,10/19/19 07:33,"24 Dogwood St, Austin, TX 73301" +267497,20in Monitor,1,109.99,10/23/19 15:02,"437 Cedar St, Los Angeles, CA 90001" +267498,USB-C Charging Cable,1,11.95,10/07/19 15:48,"90 River St, Dallas, TX 75001" +267499,USB-C Charging Cable,1,11.95,10/16/19 12:16,"244 Jefferson St, Austin, TX 73301" +267500,Apple Airpods Headphones,1,150,10/12/19 16:07,"907 Washington St, Los Angeles, CA 90001" +267501,27in 4K Gaming Monitor,1,389.99,10/04/19 22:02,"142 Wilson St, San Francisco, CA 94016" +267502,Apple Airpods Headphones,1,150,10/07/19 17:20,"72 4th St, Seattle, WA 98101" +267503,AAA Batteries (4-pack),4,2.99,10/28/19 18:50,"84 Main St, New York City, NY 10001" +267503,AAA Batteries (4-pack),2,2.99,10/28/19 18:50,"84 Main St, New York City, NY 10001" +267504,AA Batteries (4-pack),1,3.84,10/17/19 20:22,"142 River St, San Francisco, CA 94016" +267505,34in Ultrawide Monitor,1,379.99,10/14/19 11:31,"20 Maple St, San Francisco, CA 94016" +267506,Bose SoundSport Headphones,1,99.99,10/29/19 14:11,"141 Ridge St, Dallas, TX 75001" +267507,USB-C Charging Cable,1,11.95,10/26/19 12:57,"12 11th St, Seattle, WA 98101" +267508,AA Batteries (4-pack),1,3.84,10/19/19 21:13,"180 Maple St, Boston, MA 02215" +267509,27in FHD Monitor,1,149.99,10/21/19 09:20,"689 Spruce St, Boston, MA 02215" +267510,Wired Headphones,1,11.99,10/14/19 08:34,"392 Lake St, Portland, OR 97035" +267511,Wired Headphones,1,11.99,10/02/19 19:17,"756 Dogwood St, Los Angeles, CA 90001" +267512,Wired Headphones,1,11.99,10/09/19 15:05,"363 Forest St, Los Angeles, CA 90001" +267513,Flatscreen TV,1,300,10/02/19 19:34,"860 7th St, New York City, NY 10001" +267514,Bose SoundSport Headphones,1,99.99,10/20/19 03:03,"181 7th St, Boston, MA 02215" +267515,Wired Headphones,1,11.99,10/30/19 19:24,"227 Sunset St, Austin, TX 73301" +267516,27in FHD Monitor,1,149.99,10/20/19 12:13,"250 Ridge St, San Francisco, CA 94016" +267517,Wired Headphones,1,11.99,10/31/19 12:58,"564 Cedar St, San Francisco, CA 94016" +267518,27in FHD Monitor,1,149.99,10/22/19 10:39,"841 Madison St, Los Angeles, CA 90001" +267519,USB-C Charging Cable,1,11.95,10/24/19 18:57,"25 Ridge St, San Francisco, CA 94016" +267520,Google Phone,1,600,10/07/19 19:43,"876 Highland St, San Francisco, CA 94016" +267521,AA Batteries (4-pack),1,3.84,10/07/19 13:56,"616 Dogwood St, Boston, MA 02215" +267522,27in FHD Monitor,1,149.99,10/15/19 22:43,"869 Hill St, Boston, MA 02215" +267523,Apple Airpods Headphones,1,150,10/11/19 14:30,"440 Sunset St, New York City, NY 10001" +267524,Macbook Pro Laptop,1,1700,10/08/19 21:06,"119 11th St, Austin, TX 73301" +267524,AAA Batteries (4-pack),2,2.99,10/08/19 21:06,"119 11th St, Austin, TX 73301" +267525,Wired Headphones,1,11.99,10/23/19 16:58,"691 Jefferson St, New York City, NY 10001" +267526,Apple Airpods Headphones,1,150,10/05/19 09:04,"543 Highland St, Portland, OR 97035" +267527,Apple Airpods Headphones,1,150,10/13/19 11:09,"293 Cedar St, Atlanta, GA 30301" +267528,Lightning Charging Cable,1,14.95,10/21/19 15:42,"470 14th St, Portland, OR 97035" +267529,Google Phone,1,600,10/10/19 11:50,"316 6th St, Austin, TX 73301" +267529,USB-C Charging Cable,1,11.95,10/10/19 11:50,"316 6th St, Austin, TX 73301" +267530,Lightning Charging Cable,1,14.95,10/14/19 13:38,"436 Highland St, Atlanta, GA 30301" +267531,ThinkPad Laptop,1,999.99,10/15/19 13:24,"774 Johnson St, Boston, MA 02215" +267532,iPhone,1,700,10/18/19 21:00,"765 10th St, Dallas, TX 75001" +267532,Lightning Charging Cable,1,14.95,10/18/19 21:00,"765 10th St, Dallas, TX 75001" +267533,Apple Airpods Headphones,1,150,10/28/19 12:31,"586 Cedar St, Los Angeles, CA 90001" +267534,LG Washing Machine,1,600.0,10/19/19 11:16,"16 Lake St, New York City, NY 10001" +267535,34in Ultrawide Monitor,1,379.99,10/04/19 08:32,"729 Hickory St, San Francisco, CA 94016" +267536,ThinkPad Laptop,1,999.99,10/12/19 12:32,"166 West St, San Francisco, CA 94016" +267537,USB-C Charging Cable,1,11.95,10/07/19 12:30,"646 2nd St, San Francisco, CA 94016" +267538,Wired Headphones,1,11.99,10/01/19 16:15,"55 4th St, Dallas, TX 75001" +267539,USB-C Charging Cable,2,11.95,10/19/19 18:31,"767 North St, New York City, NY 10001" +267540,USB-C Charging Cable,1,11.95,10/17/19 12:18,"722 Adams St, Seattle, WA 98101" +267541,USB-C Charging Cable,1,11.95,10/19/19 19:01,"353 Maple St, Dallas, TX 75001" +267542,AA Batteries (4-pack),1,3.84,10/25/19 18:06,"680 Adams St, Los Angeles, CA 90001" +267543,USB-C Charging Cable,1,11.95,10/04/19 21:32,"921 Ridge St, Los Angeles, CA 90001" +267544,20in Monitor,1,109.99,10/18/19 15:10,"835 Lake St, Austin, TX 73301" +267545,34in Ultrawide Monitor,1,379.99,10/31/19 22:42,"378 Ridge St, Dallas, TX 75001" +267546,Bose SoundSport Headphones,1,99.99,10/28/19 19:13,"149 North St, Los Angeles, CA 90001" +267547,AAA Batteries (4-pack),1,2.99,10/08/19 11:10,"91 Maple St, Austin, TX 73301" +267548,AA Batteries (4-pack),1,3.84,10/17/19 08:55,"827 Hill St, Seattle, WA 98101" +267549,Wired Headphones,1,11.99,10/14/19 16:52,"564 Hickory St, Portland, OR 97035" +267550,AA Batteries (4-pack),1,3.84,10/19/19 13:09,"848 5th St, Boston, MA 02215" +267551,Apple Airpods Headphones,1,150,10/29/19 23:08,"932 13th St, Los Angeles, CA 90001" +267552,ThinkPad Laptop,1,999.99,10/22/19 21:42,"20 Highland St, New York City, NY 10001" +267553,AAA Batteries (4-pack),2,2.99,10/12/19 20:12,"133 Highland St, Boston, MA 02215" +267554,27in 4K Gaming Monitor,1,389.99,10/11/19 18:16,"764 Adams St, Seattle, WA 98101" +267555,27in FHD Monitor,1,149.99,10/10/19 12:10,"212 2nd St, Boston, MA 02215" +267556,34in Ultrawide Monitor,1,379.99,10/30/19 20:21,"595 Sunset St, Boston, MA 02215" +267557,Google Phone,1,600,10/18/19 10:04,"503 Maple St, San Francisco, CA 94016" +267558,Flatscreen TV,1,300,10/01/19 13:20,"753 Cherry St, Portland, OR 97035" +267559,Wired Headphones,1,11.99,10/10/19 20:13,"743 Johnson St, Seattle, WA 98101" +267560,20in Monitor,1,109.99,10/12/19 11:28,"341 Jackson St, New York City, NY 10001" +267561,Wired Headphones,1,11.99,10/05/19 12:09,"330 Pine St, San Francisco, CA 94016" +267562,USB-C Charging Cable,1,11.95,10/10/19 08:13,"563 Wilson St, Dallas, TX 75001" +267563,Lightning Charging Cable,1,14.95,10/23/19 19:59,"152 West St, New York City, NY 10001" +267564,Bose SoundSport Headphones,1,99.99,10/26/19 11:37,"682 Madison St, San Francisco, CA 94016" +267565,Wired Headphones,1,11.99,10/25/19 23:20,"777 Lakeview St, San Francisco, CA 94016" +267566,27in 4K Gaming Monitor,1,389.99,10/09/19 07:24,"606 7th St, Los Angeles, CA 90001" +267567,Vareebadd Phone,1,400,10/21/19 11:22,"87 13th St, San Francisco, CA 94016" +267567,USB-C Charging Cable,1,11.95,10/21/19 11:22,"87 13th St, San Francisco, CA 94016" +267568,Lightning Charging Cable,1,14.95,10/12/19 13:41,"286 Maple St, Los Angeles, CA 90001" +267569,Lightning Charging Cable,1,14.95,10/11/19 19:44,"684 North St, New York City, NY 10001" +267570,AAA Batteries (4-pack),2,2.99,10/23/19 17:11,"12 Chestnut St, New York City, NY 10001" +267571,USB-C Charging Cable,1,11.95,10/07/19 20:10,"216 Madison St, Austin, TX 73301" +267572,Lightning Charging Cable,1,14.95,10/02/19 13:05,"550 7th St, Los Angeles, CA 90001" +267573,27in FHD Monitor,1,149.99,10/17/19 09:10,"818 Lake St, San Francisco, CA 94016" +267574,27in 4K Gaming Monitor,1,389.99,10/05/19 11:46,"570 Park St, Boston, MA 02215" +267575,27in FHD Monitor,1,149.99,10/12/19 14:24,"343 Park St, San Francisco, CA 94016" +267576,Lightning Charging Cable,1,14.95,10/16/19 15:38,"196 Spruce St, Atlanta, GA 30301" +267577,Bose SoundSport Headphones,1,99.99,10/06/19 11:52,"563 Park St, Dallas, TX 75001" +267578,AAA Batteries (4-pack),1,2.99,10/04/19 19:04,"743 2nd St, Atlanta, GA 30301" +267579,Wired Headphones,1,11.99,10/08/19 12:07,"222 Dogwood St, San Francisco, CA 94016" +267580,Apple Airpods Headphones,1,150,10/25/19 23:38,"805 12th St, Seattle, WA 98101" +267581,AAA Batteries (4-pack),1,2.99,10/03/19 20:53,"680 Dogwood St, San Francisco, CA 94016" +267582,USB-C Charging Cable,1,11.95,10/31/19 09:32,"645 Lincoln St, Los Angeles, CA 90001" +267583,Macbook Pro Laptop,1,1700,10/19/19 22:15,"940 Cedar St, Dallas, TX 75001" +267584,USB-C Charging Cable,1,11.95,10/27/19 18:09,"212 Church St, Los Angeles, CA 90001" +267585,AA Batteries (4-pack),2,3.84,10/22/19 10:09,"928 West St, Los Angeles, CA 90001" +267586,27in 4K Gaming Monitor,1,389.99,10/28/19 16:54,"915 River St, Austin, TX 73301" +267587,USB-C Charging Cable,1,11.95,10/05/19 09:23,"42 North St, Boston, MA 02215" +267588,Flatscreen TV,1,300,10/21/19 08:59,"307 Lakeview St, New York City, NY 10001" +267589,Bose SoundSport Headphones,1,99.99,10/13/19 20:22,"443 11th St, Boston, MA 02215" +267590,34in Ultrawide Monitor,1,379.99,10/02/19 20:13,"341 Church St, San Francisco, CA 94016" +267591,34in Ultrawide Monitor,1,379.99,10/29/19 22:19,"678 Lake St, New York City, NY 10001" +267592,Wired Headphones,1,11.99,10/16/19 15:11,"25 Forest St, San Francisco, CA 94016" +267593,USB-C Charging Cable,1,11.95,10/06/19 19:27,"789 1st St, San Francisco, CA 94016" +267594,LG Washing Machine,1,600.0,10/02/19 09:18,"408 5th St, Los Angeles, CA 90001" +267595,AAA Batteries (4-pack),1,2.99,10/27/19 19:40,"490 5th St, New York City, NY 10001" +267596,20in Monitor,1,109.99,10/15/19 20:13,"169 Adams St, Los Angeles, CA 90001" +267597,Apple Airpods Headphones,1,150,10/14/19 12:14,"452 Washington St, Los Angeles, CA 90001" +267598,AAA Batteries (4-pack),1,2.99,10/16/19 17:54,"840 Pine St, Austin, TX 73301" +267599,20in Monitor,1,109.99,10/28/19 07:11,"970 Hill St, San Francisco, CA 94016" +267600,Google Phone,1,600,10/19/19 13:04,"493 Cedar St, San Francisco, CA 94016" +267601,Lightning Charging Cable,1,14.95,10/09/19 16:38,"623 Wilson St, Boston, MA 02215" +267602,Google Phone,1,600,10/25/19 23:32,"189 Park St, Seattle, WA 98101" +267603,Lightning Charging Cable,1,14.95,10/05/19 21:31,"262 Center St, New York City, NY 10001" +267604,AAA Batteries (4-pack),1,2.99,10/03/19 07:19,"18 10th St, New York City, NY 10001" +267605,Lightning Charging Cable,1,14.95,10/14/19 08:20,"646 Elm St, Dallas, TX 75001" +267606,AA Batteries (4-pack),1,3.84,10/26/19 00:49,"628 7th St, Austin, TX 73301" +267607,Wired Headphones,2,11.99,10/31/19 23:27,"279 River St, San Francisco, CA 94016" +267608,34in Ultrawide Monitor,1,379.99,10/28/19 21:10,"906 Pine St, San Francisco, CA 94016" +267609,34in Ultrawide Monitor,1,379.99,10/19/19 16:11,"630 Center St, Seattle, WA 98101" +267610,Wired Headphones,2,11.99,10/01/19 15:44,"295 Sunset St, New York City, NY 10001" +267611,AA Batteries (4-pack),1,3.84,10/10/19 15:10,"766 Pine St, Seattle, WA 98101" +267612,Macbook Pro Laptop,1,1700,10/29/19 16:10,"957 Ridge St, Seattle, WA 98101" +267613,Wired Headphones,1,11.99,10/12/19 00:27,"500 Cherry St, Dallas, TX 75001" +267614,USB-C Charging Cable,1,11.95,10/05/19 20:33,"776 12th St, Atlanta, GA 30301" +267615,Wired Headphones,2,11.99,10/14/19 14:53,"406 Chestnut St, Boston, MA 02215" +267616,USB-C Charging Cable,1,11.95,10/03/19 13:45,"641 Park St, San Francisco, CA 94016" +267617,Lightning Charging Cable,1,14.95,10/02/19 21:25,"141 Maple St, San Francisco, CA 94016" +267618,Lightning Charging Cable,1,14.95,10/26/19 11:27,"37 1st St, Boston, MA 02215" +267619,20in Monitor,1,109.99,10/07/19 14:10,"852 6th St, Atlanta, GA 30301" +267620,AAA Batteries (4-pack),1,2.99,10/23/19 17:32,"143 Hill St, Portland, OR 97035" +267621,Lightning Charging Cable,1,14.95,10/26/19 16:17,"235 11th St, Los Angeles, CA 90001" +267622,Macbook Pro Laptop,1,1700,10/27/19 18:26,"547 14th St, San Francisco, CA 94016" +267623,Apple Airpods Headphones,1,150,10/21/19 21:06,"589 West St, Atlanta, GA 30301" +267624,AAA Batteries (4-pack),1,2.99,10/29/19 14:18,"24 Park St, New York City, NY 10001" +267625,Bose SoundSport Headphones,1,99.99,10/15/19 21:04,"469 Ridge St, Atlanta, GA 30301" +267626,USB-C Charging Cable,1,11.95,10/07/19 17:05,"685 River St, Los Angeles, CA 90001" +267627,34in Ultrawide Monitor,1,379.99,10/03/19 14:08,"604 West St, San Francisco, CA 94016" +267628,AAA Batteries (4-pack),2,2.99,10/05/19 12:11,"526 4th St, New York City, NY 10001" +267629,AAA Batteries (4-pack),2,2.99,10/30/19 10:14,"485 Madison St, Portland, OR 97035" +267630,iPhone,1,700,10/07/19 21:08,"213 1st St, San Francisco, CA 94016" +267631,Google Phone,1,600,10/19/19 12:40,"368 Main St, Dallas, TX 75001" +267632,Bose SoundSport Headphones,1,99.99,10/03/19 11:16,"940 4th St, Dallas, TX 75001" +267633,AAA Batteries (4-pack),4,2.99,10/09/19 12:41,"842 Spruce St, Los Angeles, CA 90001" +267634,USB-C Charging Cable,2,11.95,10/23/19 13:17,"735 Main St, Atlanta, GA 30301" +267635,Apple Airpods Headphones,1,150,10/10/19 11:54,"539 Ridge St, Dallas, TX 75001" +267636,27in 4K Gaming Monitor,1,389.99,10/08/19 13:38,"676 Maple St, Los Angeles, CA 90001" +267637,Bose SoundSport Headphones,1,99.99,10/23/19 16:01,"796 Park St, Atlanta, GA 30301" +267638,AAA Batteries (4-pack),2,2.99,10/10/19 07:53,"941 West St, Atlanta, GA 30301" +267639,27in FHD Monitor,1,149.99,10/21/19 08:29,"178 South St, Los Angeles, CA 90001" +267640,AA Batteries (4-pack),1,3.84,10/05/19 10:25,"672 10th St, Portland, OR 97035" +267641,27in FHD Monitor,1,149.99,10/06/19 08:14,"978 Lakeview St, New York City, NY 10001" +267642,34in Ultrawide Monitor,1,379.99,10/14/19 20:52,"568 River St, Seattle, WA 98101" +267643,AAA Batteries (4-pack),1,2.99,10/02/19 12:50,"690 Washington St, Boston, MA 02215" +267644,Lightning Charging Cable,1,14.95,10/22/19 18:36,"365 Hickory St, Los Angeles, CA 90001" +267645,34in Ultrawide Monitor,1,379.99,10/17/19 11:44,"262 Chestnut St, San Francisco, CA 94016" +267646,AAA Batteries (4-pack),1,2.99,10/13/19 10:09,"963 5th St, Dallas, TX 75001" +267647,Flatscreen TV,1,300,10/19/19 00:16,"456 Lincoln St, Los Angeles, CA 90001" +267648,20in Monitor,1,109.99,10/17/19 23:11,"341 Spruce St, Austin, TX 73301" +267649,Wired Headphones,1,11.99,10/19/19 19:49,"168 Forest St, San Francisco, CA 94016" +267650,USB-C Charging Cable,1,11.95,10/24/19 11:52,"263 6th St, Dallas, TX 75001" +267651,USB-C Charging Cable,1,11.95,10/02/19 12:18,"541 Adams St, Boston, MA 02215" +267652,AA Batteries (4-pack),1,3.84,10/04/19 13:36,"165 Jackson St, Seattle, WA 98101" +267653,Apple Airpods Headphones,1,150,10/27/19 15:36,"492 Elm St, San Francisco, CA 94016" +267654,AA Batteries (4-pack),1,3.84,10/30/19 11:49,"775 North St, Seattle, WA 98101" +267655,AAA Batteries (4-pack),1,2.99,10/16/19 10:32,"879 Center St, Boston, MA 02215" +267656,AAA Batteries (4-pack),1,2.99,10/16/19 10:48,"375 Pine St, Los Angeles, CA 90001" +267657,ThinkPad Laptop,1,999.99,10/17/19 14:59,"226 Pine St, Atlanta, GA 30301" +267658,USB-C Charging Cable,1,11.95,10/04/19 23:20,"355 Meadow St, Boston, MA 02215" +267659,Bose SoundSport Headphones,1,99.99,10/20/19 17:13,"227 6th St, San Francisco, CA 94016" +267660,Apple Airpods Headphones,1,150,10/03/19 15:52,"910 11th St, New York City, NY 10001" +267661,AAA Batteries (4-pack),1,2.99,10/06/19 14:31,"604 Ridge St, Portland, ME 04101" +267662,Macbook Pro Laptop,1,1700,10/22/19 11:26,"705 Jackson St, Seattle, WA 98101" +267663,AA Batteries (4-pack),2,3.84,10/02/19 16:52,"769 Madison St, San Francisco, CA 94016" +267664,Lightning Charging Cable,1,14.95,10/26/19 20:56,"538 8th St, New York City, NY 10001" +267665,Lightning Charging Cable,1,14.95,10/20/19 05:40,"541 8th St, San Francisco, CA 94016" +267666,AA Batteries (4-pack),1,3.84,10/02/19 22:13,"251 Spruce St, Portland, OR 97035" +267667,Flatscreen TV,1,300,10/22/19 20:23,"527 Jackson St, San Francisco, CA 94016" +267668,Wired Headphones,1,11.99,10/28/19 16:12,"420 11th St, Atlanta, GA 30301" +267669,Bose SoundSport Headphones,1,99.99,10/15/19 19:35,"294 Maple St, New York City, NY 10001" +267670,Lightning Charging Cable,1,14.95,10/06/19 19:43,"387 Cherry St, Boston, MA 02215" +267671,27in 4K Gaming Monitor,1,389.99,10/20/19 22:36,"494 River St, Austin, TX 73301" +267672,Bose SoundSport Headphones,1,99.99,10/18/19 14:46,"28 Cherry St, Seattle, WA 98101" +267673,Lightning Charging Cable,1,14.95,10/12/19 20:49,"756 9th St, Atlanta, GA 30301" +267674,Flatscreen TV,1,300,10/03/19 14:23,"591 Lakeview St, Portland, OR 97035" +267675,Bose SoundSport Headphones,1,99.99,10/31/19 17:45,"959 West St, New York City, NY 10001" +267676,USB-C Charging Cable,1,11.95,10/12/19 20:27,"521 12th St, New York City, NY 10001" +267677,AAA Batteries (4-pack),1,2.99,10/05/19 15:02,"457 8th St, Atlanta, GA 30301" +267678,Bose SoundSport Headphones,1,99.99,10/01/19 10:37,"910 9th St, Seattle, WA 98101" +267678,Bose SoundSport Headphones,1,99.99,10/01/19 10:37,"910 9th St, Seattle, WA 98101" +267679,Apple Airpods Headphones,1,150,10/19/19 18:20,"505 Pine St, San Francisco, CA 94016" +267679,Apple Airpods Headphones,1,150,10/19/19 18:20,"505 Pine St, San Francisco, CA 94016" +267680,USB-C Charging Cable,1,11.95,10/05/19 04:13,"230 Maple St, Atlanta, GA 30301" +267681,20in Monitor,1,109.99,10/09/19 20:09,"407 1st St, San Francisco, CA 94016" +267682,Apple Airpods Headphones,1,150,10/29/19 19:07,"190 Forest St, Boston, MA 02215" +267683,Macbook Pro Laptop,1,1700,10/15/19 19:38,"463 Maple St, Los Angeles, CA 90001" +267684,iPhone,1,700,10/16/19 13:33,"952 North St, New York City, NY 10001" +267685,iPhone,1,700,10/07/19 22:16,"432 Cedar St, Austin, TX 73301" +267686,Lightning Charging Cable,1,14.95,10/29/19 19:19,"805 Hickory St, Boston, MA 02215" +267687,Apple Airpods Headphones,1,150,10/03/19 21:00,"315 Madison St, New York City, NY 10001" +267688,AA Batteries (4-pack),2,3.84,10/12/19 12:33,"490 6th St, San Francisco, CA 94016" +267689,34in Ultrawide Monitor,1,379.99,10/08/19 06:07,"621 Park St, Austin, TX 73301" +267690,AA Batteries (4-pack),1,3.84,10/26/19 17:32,"352 Walnut St, Atlanta, GA 30301" +267691,Lightning Charging Cable,1,14.95,10/29/19 10:23,"147 6th St, Austin, TX 73301" +267692,Bose SoundSport Headphones,1,99.99,10/20/19 19:52,"256 Wilson St, Atlanta, GA 30301" +267693,34in Ultrawide Monitor,1,379.99,10/03/19 10:17,"50 4th St, Austin, TX 73301" +267694,Bose SoundSport Headphones,1,99.99,10/19/19 11:19,"594 1st St, San Francisco, CA 94016" +267695,USB-C Charging Cable,1,11.95,10/06/19 05:08,"197 North St, Los Angeles, CA 90001" +267696,AA Batteries (4-pack),1,3.84,10/12/19 19:35,"436 14th St, Portland, OR 97035" +267697,Wired Headphones,1,11.99,10/02/19 18:12,"647 Church St, Seattle, WA 98101" +267698,AAA Batteries (4-pack),4,2.99,10/31/19 19:08,"319 Lincoln St, Atlanta, GA 30301" +267699,Apple Airpods Headphones,1,150,10/19/19 00:45,"41 1st St, Portland, OR 97035" +267700,ThinkPad Laptop,1,999.99,10/24/19 15:14,"594 River St, San Francisco, CA 94016" +267701,USB-C Charging Cable,1,11.95,10/17/19 15:50,"680 Washington St, Boston, MA 02215" +267702,AA Batteries (4-pack),3,3.84,10/21/19 12:32,"701 Forest St, Austin, TX 73301" +267703,USB-C Charging Cable,1,11.95,10/23/19 15:30,"554 Wilson St, Los Angeles, CA 90001" +267704,Lightning Charging Cable,1,14.95,10/24/19 10:44,"449 Lincoln St, Los Angeles, CA 90001" +267705,34in Ultrawide Monitor,1,379.99,10/30/19 17:16,"195 Church St, New York City, NY 10001" +267706,Apple Airpods Headphones,1,150,10/22/19 10:05,"868 Maple St, Boston, MA 02215" +267707,Macbook Pro Laptop,1,1700,10/21/19 20:37,"528 North St, New York City, NY 10001" +267708,Apple Airpods Headphones,1,150,10/09/19 11:20,"193 4th St, Dallas, TX 75001" +267709,ThinkPad Laptop,1,999.99,10/12/19 16:54,"908 Center St, Portland, ME 04101" +267710,AAA Batteries (4-pack),1,2.99,10/19/19 20:30,"782 Park St, Portland, ME 04101" +267711,Lightning Charging Cable,1,14.95,10/08/19 20:19,"427 2nd St, Austin, TX 73301" +267712,AA Batteries (4-pack),1,3.84,10/28/19 22:15,"884 8th St, Los Angeles, CA 90001" +267713,Apple Airpods Headphones,1,150,10/19/19 20:27,"115 Willow St, Boston, MA 02215" +267714,34in Ultrawide Monitor,1,379.99,10/16/19 08:15,"554 North St, New York City, NY 10001" +267715,Bose SoundSport Headphones,1,99.99,10/16/19 15:45,"878 Madison St, Los Angeles, CA 90001" +267716,Wired Headphones,1,11.99,11/01/19 00:06,"966 Pine St, Seattle, WA 98101" +267717,Bose SoundSport Headphones,1,99.99,10/03/19 14:11,"771 2nd St, San Francisco, CA 94016" +267718,20in Monitor,1,109.99,10/09/19 18:50,"684 Main St, Los Angeles, CA 90001" +267719,Vareebadd Phone,1,400,10/26/19 01:03,"504 North St, Seattle, WA 98101" +267720,27in FHD Monitor,1,149.99,10/12/19 17:52,"902 Chestnut St, Dallas, TX 75001" +267721,iPhone,1,700,10/26/19 21:22,"919 River St, Los Angeles, CA 90001" +267722,27in FHD Monitor,1,149.99,10/20/19 23:26,"686 Main St, Dallas, TX 75001" +267723,Apple Airpods Headphones,1,150,10/31/19 22:24,"215 1st St, New York City, NY 10001" +267724,Wired Headphones,1,11.99,10/13/19 19:37,"91 8th St, New York City, NY 10001" +267725,USB-C Charging Cable,1,11.95,10/01/19 21:59,"591 Lakeview St, Los Angeles, CA 90001" +267726,Lightning Charging Cable,1,14.95,10/07/19 11:41,"667 Hickory St, San Francisco, CA 94016" +267727,ThinkPad Laptop,1,999.99,10/05/19 10:10,"659 Elm St, San Francisco, CA 94016" +267728,Lightning Charging Cable,1,14.95,10/12/19 18:16,"692 Hickory St, San Francisco, CA 94016" +267729,Macbook Pro Laptop,1,1700,10/13/19 20:25,"323 Lake St, New York City, NY 10001" +267730,Wired Headphones,1,11.99,10/11/19 12:44,"82 Chestnut St, Los Angeles, CA 90001" +267731,Apple Airpods Headphones,1,150,10/30/19 00:59,"651 Madison St, Seattle, WA 98101" +267732,Apple Airpods Headphones,1,150,10/20/19 16:20,"654 9th St, Los Angeles, CA 90001" +267733,AAA Batteries (4-pack),1,2.99,10/08/19 10:28,"819 Cedar St, New York City, NY 10001" +267734,AA Batteries (4-pack),1,3.84,10/08/19 18:26,"23 Park St, San Francisco, CA 94016" +267735,Bose SoundSport Headphones,1,99.99,10/10/19 10:34,"377 Walnut St, San Francisco, CA 94016" +267736,27in FHD Monitor,1,149.99,10/14/19 08:27,"934 8th St, Dallas, TX 75001" +267737,Apple Airpods Headphones,1,150,10/31/19 18:39,"782 Ridge St, San Francisco, CA 94016" +267738,Wired Headphones,1,11.99,10/28/19 23:33,"108 5th St, New York City, NY 10001" +267739,20in Monitor,1,109.99,10/18/19 12:26,"517 South St, Austin, TX 73301" +267740,Wired Headphones,2,11.99,10/02/19 16:49,"45 Dogwood St, San Francisco, CA 94016" +267741,34in Ultrawide Monitor,1,379.99,10/27/19 17:11,"892 Willow St, San Francisco, CA 94016" +267742,ThinkPad Laptop,1,999.99,10/04/19 18:27,"85 11th St, New York City, NY 10001" +267743,AA Batteries (4-pack),1,3.84,10/18/19 13:53,"831 Cherry St, New York City, NY 10001" +267744,USB-C Charging Cable,1,11.95,10/17/19 12:28,"117 10th St, Los Angeles, CA 90001" +267745,AAA Batteries (4-pack),2,2.99,10/05/19 20:45,"224 Walnut St, Boston, MA 02215" +267746,27in 4K Gaming Monitor,1,389.99,10/31/19 13:07,"30 Hickory St, San Francisco, CA 94016" +267747,AAA Batteries (4-pack),3,2.99,10/17/19 23:57,"957 12th St, Atlanta, GA 30301" +267748,Wired Headphones,1,11.99,10/13/19 22:46,"92 Jefferson St, Los Angeles, CA 90001" +267749,Lightning Charging Cable,1,14.95,10/12/19 14:16,"397 Meadow St, Portland, OR 97035" +267750,Bose SoundSport Headphones,1,99.99,10/10/19 10:05,"509 Hickory St, San Francisco, CA 94016" +267751,AAA Batteries (4-pack),1,2.99,10/06/19 12:35,"356 Lakeview St, New York City, NY 10001" +267752,USB-C Charging Cable,1,11.95,10/28/19 20:06,"958 12th St, Austin, TX 73301" +267753,Wired Headphones,1,11.99,10/01/19 12:02,"384 Dogwood St, Los Angeles, CA 90001" +267754,AAA Batteries (4-pack),1,2.99,10/11/19 19:53,"683 12th St, Portland, OR 97035" +267755,27in FHD Monitor,1,149.99,10/21/19 12:33,"410 Chestnut St, San Francisco, CA 94016" +267756,34in Ultrawide Monitor,1,379.99,10/21/19 18:23,"361 Forest St, New York City, NY 10001" +267757,Vareebadd Phone,1,400,10/24/19 14:32,"435 4th St, New York City, NY 10001" +267758,Apple Airpods Headphones,1,150,10/10/19 12:24,"560 9th St, Portland, OR 97035" +267759,Vareebadd Phone,1,400,10/29/19 17:32,"731 Sunset St, New York City, NY 10001" +267760,AA Batteries (4-pack),2,3.84,10/28/19 19:17,"231 11th St, New York City, NY 10001" +267761,Lightning Charging Cable,1,14.95,10/28/19 20:58,"379 11th St, Los Angeles, CA 90001" +267762,Google Phone,1,600,10/07/19 14:04,"713 Johnson St, Austin, TX 73301" +267763,Macbook Pro Laptop,1,1700,10/04/19 14:09,"80 Walnut St, New York City, NY 10001" +267764,Lightning Charging Cable,1,14.95,10/14/19 08:51,"173 7th St, Dallas, TX 75001" +267765,AAA Batteries (4-pack),2,2.99,10/03/19 19:26,"700 14th St, Los Angeles, CA 90001" +267766,Apple Airpods Headphones,1,150,10/22/19 16:57,"827 Park St, Boston, MA 02215" +267767,Google Phone,1,600,10/22/19 12:08,"772 14th St, Austin, TX 73301" +267768,27in FHD Monitor,1,149.99,10/16/19 13:34,"684 1st St, Portland, OR 97035" +267769,34in Ultrawide Monitor,1,379.99,10/31/19 16:42,"409 12th St, Los Angeles, CA 90001" +267770,Wired Headphones,1,11.99,10/10/19 13:27,"680 Willow St, Los Angeles, CA 90001" +267770,Bose SoundSport Headphones,1,99.99,10/10/19 13:27,"680 Willow St, Los Angeles, CA 90001" +267771,Lightning Charging Cable,1,14.95,10/03/19 18:02,"974 Highland St, San Francisco, CA 94016" +267772,34in Ultrawide Monitor,1,379.99,10/08/19 22:44,"321 Jackson St, Seattle, WA 98101" +267773,USB-C Charging Cable,2,11.95,10/29/19 16:57,"982 Dogwood St, San Francisco, CA 94016" +267774,LG Dryer,1,600.0,10/05/19 12:06,"849 Center St, Atlanta, GA 30301" +267775,AAA Batteries (4-pack),1,2.99,10/24/19 07:05,"442 Church St, Dallas, TX 75001" +267776,LG Dryer,1,600.0,10/07/19 13:03,"623 Washington St, San Francisco, CA 94016" +267777,Wired Headphones,1,11.99,10/19/19 11:10,"857 5th St, Atlanta, GA 30301" +267778,Google Phone,1,600,10/17/19 13:28,"958 Jefferson St, Los Angeles, CA 90001" +267779,Lightning Charging Cable,1,14.95,10/27/19 10:57,"286 12th St, New York City, NY 10001" +267780,Google Phone,1,600,10/25/19 08:42,"469 Church St, Austin, TX 73301" +267781,Lightning Charging Cable,1,14.95,10/06/19 02:17,"95 Sunset St, New York City, NY 10001" +267782,iPhone,1,700,10/04/19 17:48,"257 7th St, Atlanta, GA 30301" +267782,Lightning Charging Cable,1,14.95,10/04/19 17:48,"257 7th St, Atlanta, GA 30301" +267782,Wired Headphones,1,11.99,10/04/19 17:48,"257 7th St, Atlanta, GA 30301" +267783,Wired Headphones,1,11.99,10/30/19 17:46,"603 Elm St, San Francisco, CA 94016" +267784,Wired Headphones,1,11.99,10/20/19 18:14,"356 North St, San Francisco, CA 94016" +267785,Bose SoundSport Headphones,1,99.99,10/24/19 12:06,"679 1st St, San Francisco, CA 94016" +267786,Google Phone,1,600,10/01/19 07:30,"359 14th St, Los Angeles, CA 90001" +267787,AA Batteries (4-pack),1,3.84,10/26/19 08:02,"720 11th St, Los Angeles, CA 90001" +267788,AAA Batteries (4-pack),1,2.99,10/14/19 09:52,"267 Lakeview St, New York City, NY 10001" +267789,Google Phone,1,600,10/09/19 00:35,"411 Jefferson St, Atlanta, GA 30301" +267789,USB-C Charging Cable,1,11.95,10/09/19 00:35,"411 Jefferson St, Atlanta, GA 30301" +267790,AA Batteries (4-pack),1,3.84,10/06/19 14:54,"511 River St, Boston, MA 02215" +267791,Apple Airpods Headphones,1,150,10/29/19 12:58,"178 11th St, Atlanta, GA 30301" +267792,Google Phone,1,600,10/27/19 12:53,"800 Park St, Boston, MA 02215" +267792,USB-C Charging Cable,1,11.95,10/27/19 12:53,"800 Park St, Boston, MA 02215" +267793,USB-C Charging Cable,2,11.95,10/31/19 21:03,"374 Cedar St, Austin, TX 73301" +267794,Wired Headphones,1,11.99,10/10/19 20:11,"880 Hickory St, New York City, NY 10001" +267795,ThinkPad Laptop,1,999.99,10/02/19 13:30,"918 Lakeview St, Portland, OR 97035" +267796,Wired Headphones,2,11.99,10/31/19 23:33,"436 Ridge St, Atlanta, GA 30301" +267797,Bose SoundSport Headphones,1,99.99,10/13/19 09:24,"279 12th St, Boston, MA 02215" +267798,Wired Headphones,1,11.99,10/08/19 14:16,"113 Hickory St, Los Angeles, CA 90001" +267799,Lightning Charging Cable,1,14.95,10/30/19 00:05,"274 Hickory St, Seattle, WA 98101" +267800,Lightning Charging Cable,1,14.95,10/25/19 14:49,"612 Lake St, New York City, NY 10001" +267801,Bose SoundSport Headphones,1,99.99,10/05/19 22:38,"75 9th St, San Francisco, CA 94016" +267802,AAA Batteries (4-pack),1,2.99,10/15/19 11:55,"715 14th St, Boston, MA 02215" +267803,Lightning Charging Cable,2,14.95,10/15/19 22:39,"879 9th St, Los Angeles, CA 90001" +267804,Google Phone,1,600,10/10/19 18:02,"840 Maple St, Los Angeles, CA 90001" +267804,USB-C Charging Cable,1,11.95,10/10/19 18:02,"840 Maple St, Los Angeles, CA 90001" +267805,Lightning Charging Cable,1,14.95,10/02/19 09:25,"70 Main St, New York City, NY 10001" +267806,AA Batteries (4-pack),1,3.84,10/15/19 18:32,"555 4th St, Dallas, TX 75001" +267807,AAA Batteries (4-pack),3,2.99,10/21/19 17:09,"208 1st St, San Francisco, CA 94016" +267808,27in FHD Monitor,1,149.99,10/06/19 00:18,"974 Lincoln St, Atlanta, GA 30301" +267809,USB-C Charging Cable,1,11.95,10/05/19 15:16,"33 West St, San Francisco, CA 94016" +267810,27in FHD Monitor,1,149.99,10/12/19 18:57,"902 Forest St, Dallas, TX 75001" +267811,Bose SoundSport Headphones,1,99.99,10/21/19 17:46,"838 Highland St, Dallas, TX 75001" +267812,Apple Airpods Headphones,1,150,10/03/19 20:34,"901 Lake St, Seattle, WA 98101" +267813,27in 4K Gaming Monitor,1,389.99,10/31/19 17:35,"800 12th St, Boston, MA 02215" +267814,Apple Airpods Headphones,1,150,10/20/19 15:32,"151 Pine St, Dallas, TX 75001" +267815,AAA Batteries (4-pack),2,2.99,10/16/19 12:30,"846 North St, Dallas, TX 75001" +267816,AAA Batteries (4-pack),3,2.99,10/17/19 07:16,"421 Willow St, Los Angeles, CA 90001" +267817,AA Batteries (4-pack),1,3.84,10/12/19 12:45,"477 Sunset St, Boston, MA 02215" +267818,Wired Headphones,1,11.99,10/17/19 16:42,"44 Cherry St, Dallas, TX 75001" +267819,27in FHD Monitor,1,149.99,10/22/19 11:26,"321 River St, Los Angeles, CA 90001" +267820,AAA Batteries (4-pack),2,2.99,10/02/19 13:21,"949 Madison St, New York City, NY 10001" +267821,Lightning Charging Cable,1,14.95,10/03/19 01:04,"143 Center St, Boston, MA 02215" +267822,Apple Airpods Headphones,1,150,10/04/19 12:43,"765 Meadow St, Los Angeles, CA 90001" +267823,USB-C Charging Cable,2,11.95,10/05/19 15:21,"776 8th St, Boston, MA 02215" +267824,Bose SoundSport Headphones,1,99.99,10/14/19 20:59,"889 Adams St, Los Angeles, CA 90001" +267825,Wired Headphones,1,11.99,10/08/19 08:53,"63 Cedar St, Atlanta, GA 30301" +267826,AAA Batteries (4-pack),2,2.99,10/04/19 13:01,"625 6th St, Los Angeles, CA 90001" +267827,Lightning Charging Cable,1,14.95,10/10/19 02:50,"375 Lakeview St, Dallas, TX 75001" +267828,Macbook Pro Laptop,1,1700,10/27/19 18:34,"545 North St, San Francisco, CA 94016" +267829,Lightning Charging Cable,1,14.95,10/05/19 09:02,"687 Center St, New York City, NY 10001" +267830,Google Phone,1,600,10/08/19 15:32,"505 Park St, Boston, MA 02215" +267831,Google Phone,1,600,10/05/19 11:45,"292 Walnut St, Los Angeles, CA 90001" +267831,USB-C Charging Cable,1,11.95,10/05/19 11:45,"292 Walnut St, Los Angeles, CA 90001" +267831,Wired Headphones,1,11.99,10/05/19 11:45,"292 Walnut St, Los Angeles, CA 90001" +267832,Wired Headphones,1,11.99,10/11/19 17:36,"735 Madison St, Los Angeles, CA 90001" +267833,Bose SoundSport Headphones,1,99.99,10/07/19 00:46,"303 13th St, Austin, TX 73301" +267834,AAA Batteries (4-pack),2,2.99,10/13/19 07:17,"459 10th St, Atlanta, GA 30301" +267835,Apple Airpods Headphones,1,150,10/21/19 09:05,"901 Park St, Los Angeles, CA 90001" +267836,AAA Batteries (4-pack),2,2.99,10/25/19 19:27,"21 River St, New York City, NY 10001" +267837,Lightning Charging Cable,1,14.95,10/13/19 20:29,"983 Johnson St, Portland, OR 97035" +267838,34in Ultrawide Monitor,1,379.99,10/17/19 15:35,"567 Maple St, San Francisco, CA 94016" +267839,Apple Airpods Headphones,1,150,10/17/19 02:20,"984 11th St, Seattle, WA 98101" +267840,Lightning Charging Cable,1,14.95,10/26/19 23:48,"522 4th St, Atlanta, GA 30301" +267841,AA Batteries (4-pack),1,3.84,10/02/19 11:49,"316 Cherry St, San Francisco, CA 94016" +267842,34in Ultrawide Monitor,1,379.99,10/12/19 08:49,"501 Chestnut St, San Francisco, CA 94016" +267843,Wired Headphones,1,11.99,10/22/19 15:18,"348 Highland St, San Francisco, CA 94016" +267844,Apple Airpods Headphones,1,150,10/10/19 20:04,"346 Sunset St, San Francisco, CA 94016" +267845,iPhone,1,700,10/03/19 17:04,"30 13th St, New York City, NY 10001" +267846,Wired Headphones,1,11.99,10/18/19 11:52,"654 Hill St, San Francisco, CA 94016" +267847,Macbook Pro Laptop,1,1700,10/27/19 23:36,"990 2nd St, Atlanta, GA 30301" +267848,AA Batteries (4-pack),3,3.84,10/01/19 19:38,"537 8th St, Atlanta, GA 30301" +267849,AAA Batteries (4-pack),1,2.99,10/03/19 15:34,"842 Adams St, Los Angeles, CA 90001" +267850,USB-C Charging Cable,1,11.95,10/18/19 09:02,"434 11th St, Boston, MA 02215" +267851,USB-C Charging Cable,1,11.95,10/24/19 18:53,"185 1st St, San Francisco, CA 94016" +267852,27in 4K Gaming Monitor,1,389.99,10/05/19 18:19,"99 Johnson St, New York City, NY 10001" +267853,USB-C Charging Cable,1,11.95,10/23/19 22:32,"802 Park St, San Francisco, CA 94016" +267854,20in Monitor,1,109.99,10/08/19 11:17,"232 10th St, Boston, MA 02215" +267855,USB-C Charging Cable,1,11.95,10/21/19 17:22,"398 14th St, San Francisco, CA 94016" +267856,Lightning Charging Cable,1,14.95,10/03/19 10:00,"32 Forest St, Dallas, TX 75001" +267857,27in FHD Monitor,1,149.99,10/08/19 15:15,"520 8th St, Dallas, TX 75001" +267858,AAA Batteries (4-pack),1,2.99,10/06/19 14:24,"761 Willow St, Los Angeles, CA 90001" +267859,AAA Batteries (4-pack),1,2.99,10/31/19 09:23,"427 Hickory St, New York City, NY 10001" +267860,USB-C Charging Cable,1,11.95,10/05/19 22:51,"790 Hickory St, San Francisco, CA 94016" +267861,AAA Batteries (4-pack),1,2.99,10/25/19 21:10,"734 6th St, Seattle, WA 98101" +267862,AA Batteries (4-pack),1,3.84,10/17/19 10:41,"857 Hickory St, Boston, MA 02215" +267863,Google Phone,1,600,10/10/19 06:03,"773 Chestnut St, Los Angeles, CA 90001" +267864,Flatscreen TV,1,300,10/28/19 17:32,"127 Johnson St, Seattle, WA 98101" +267865,AAA Batteries (4-pack),1,2.99,10/22/19 15:22,"362 North St, New York City, NY 10001" +267866,iPhone,1,700,10/05/19 11:05,"837 Johnson St, San Francisco, CA 94016" +267867,ThinkPad Laptop,1,999.99,10/20/19 05:42,"324 Hickory St, Seattle, WA 98101" +267868,Lightning Charging Cable,1,14.95,10/03/19 00:09,"908 Washington St, Seattle, WA 98101" +267869,AAA Batteries (4-pack),1,2.99,10/13/19 18:16,"522 Hickory St, San Francisco, CA 94016" +267870,USB-C Charging Cable,1,11.95,10/02/19 22:29,"528 Main St, Portland, OR 97035" +267871,AA Batteries (4-pack),1,3.84,10/07/19 06:31,"615 Madison St, San Francisco, CA 94016" +267872,AAA Batteries (4-pack),1,2.99,10/18/19 00:30,"83 Forest St, Boston, MA 02215" +267873,Lightning Charging Cable,1,14.95,10/19/19 21:22,"21 Lakeview St, New York City, NY 10001" +267874,Macbook Pro Laptop,1,1700,10/01/19 16:51,"622 4th St, Dallas, TX 75001" +267875,AAA Batteries (4-pack),1,2.99,10/20/19 16:57,"290 Willow St, New York City, NY 10001" +267876,LG Dryer,1,600.0,10/25/19 11:21,"977 Main St, Los Angeles, CA 90001" +267877,Lightning Charging Cable,1,14.95,10/24/19 14:07,"213 Madison St, San Francisco, CA 94016" +267878,27in 4K Gaming Monitor,1,389.99,10/12/19 18:44,"215 River St, Boston, MA 02215" +267879,AAA Batteries (4-pack),2,2.99,10/23/19 14:57,"719 Lake St, Los Angeles, CA 90001" +267880,Google Phone,1,600,10/12/19 14:42,"166 Center St, Seattle, WA 98101" +267881,AA Batteries (4-pack),1,3.84,10/13/19 13:36,"169 8th St, Los Angeles, CA 90001" +267882,Bose SoundSport Headphones,1,99.99,10/06/19 09:59,"263 Cedar St, Los Angeles, CA 90001" +267883,Bose SoundSport Headphones,1,99.99,10/02/19 00:17,"903 Cherry St, Los Angeles, CA 90001" +267884,AAA Batteries (4-pack),1,2.99,10/23/19 08:47,"3 14th St, Los Angeles, CA 90001" +267885,Lightning Charging Cable,1,14.95,10/02/19 14:46,"671 Spruce St, Los Angeles, CA 90001" +267886,USB-C Charging Cable,1,11.95,10/07/19 20:09,"196 Elm St, Dallas, TX 75001" +267887,Apple Airpods Headphones,1,150,10/26/19 17:01,"479 Chestnut St, San Francisco, CA 94016" +267888,27in FHD Monitor,1,149.99,10/12/19 06:51,"898 Lakeview St, Boston, MA 02215" +267889,Macbook Pro Laptop,1,1700,10/07/19 23:51,"834 8th St, Austin, TX 73301" +267890,Wired Headphones,1,11.99,10/12/19 20:03,"450 Hill St, Los Angeles, CA 90001" +267891,iPhone,1,700,10/31/19 13:14,"376 Washington St, Boston, MA 02215" +267892,27in FHD Monitor,1,149.99,10/14/19 16:11,"41 Spruce St, Atlanta, GA 30301" +267892,AAA Batteries (4-pack),1,2.99,10/14/19 16:11,"41 Spruce St, Atlanta, GA 30301" +267893,USB-C Charging Cable,1,11.95,10/22/19 14:49,"615 6th St, Atlanta, GA 30301" +267894,iPhone,1,700,10/30/19 09:09,"84 11th St, San Francisco, CA 94016" +267894,Wired Headphones,1,11.99,10/30/19 09:09,"84 11th St, San Francisco, CA 94016" +267895,Lightning Charging Cable,1,14.95,10/18/19 09:14,"353 6th St, Dallas, TX 75001" +267896,Lightning Charging Cable,1,14.95,10/20/19 12:22,"263 Johnson St, New York City, NY 10001" +267897,AA Batteries (4-pack),1,3.84,10/08/19 15:06,"576 4th St, San Francisco, CA 94016" +,,,,, +267898,Flatscreen TV,1,300,10/28/19 07:49,"234 Washington St, Dallas, TX 75001" +267899,USB-C Charging Cable,1,11.95,10/15/19 19:09,"774 13th St, Boston, MA 02215" +267900,AAA Batteries (4-pack),2,2.99,10/23/19 17:03,"593 Johnson St, Los Angeles, CA 90001" +267901,AAA Batteries (4-pack),1,2.99,10/18/19 22:50,"648 2nd St, Dallas, TX 75001" +267902,27in FHD Monitor,1,149.99,10/29/19 11:51,"482 South St, Los Angeles, CA 90001" +267903,LG Washing Machine,1,600.0,10/15/19 12:10,"15 7th St, Boston, MA 02215" +267904,20in Monitor,1,109.99,10/01/19 08:31,"45 5th St, San Francisco, CA 94016" +267905,Lightning Charging Cable,1,14.95,10/31/19 22:29,"249 Chestnut St, San Francisco, CA 94016" +267906,AA Batteries (4-pack),1,3.84,10/27/19 19:40,"540 Jefferson St, Los Angeles, CA 90001" +267907,Apple Airpods Headphones,1,150,10/08/19 10:28,"553 Church St, Boston, MA 02215" +267908,Wired Headphones,1,11.99,10/21/19 05:34,"786 Walnut St, Boston, MA 02215" +267909,Google Phone,1,600,10/27/19 21:32,"326 Willow St, New York City, NY 10001" +267910,Apple Airpods Headphones,1,150,10/01/19 09:00,"130 Dogwood St, Los Angeles, CA 90001" +267911,LG Dryer,1,600.0,10/20/19 18:57,"566 Ridge St, Dallas, TX 75001" +267912,20in Monitor,1,109.99,10/14/19 21:34,"240 Highland St, Los Angeles, CA 90001" +267913,Apple Airpods Headphones,1,150,10/11/19 18:03,"890 12th St, Atlanta, GA 30301" +267914,Macbook Pro Laptop,1,1700,10/08/19 06:46,"345 Dogwood St, Portland, OR 97035" +267915,Flatscreen TV,1,300,10/05/19 19:36,"312 Hickory St, Los Angeles, CA 90001" +267916,Wired Headphones,1,11.99,10/06/19 13:11,"970 Park St, Los Angeles, CA 90001" +267917,Lightning Charging Cable,1,14.95,10/13/19 18:45,"783 Chestnut St, Dallas, TX 75001" +267918,Bose SoundSport Headphones,1,99.99,10/07/19 08:32,"627 Highland St, Atlanta, GA 30301" +267919,Vareebadd Phone,1,400,10/25/19 19:55,"645 Wilson St, San Francisco, CA 94016" +267920,20in Monitor,1,109.99,10/19/19 13:18,"555 Wilson St, New York City, NY 10001" +267921,AAA Batteries (4-pack),2,2.99,10/24/19 15:02,"737 Pine St, Portland, OR 97035" +267922,Apple Airpods Headphones,1,150,10/18/19 20:03,"79 9th St, New York City, NY 10001" +267923,27in FHD Monitor,1,149.99,10/12/19 18:50,"801 2nd St, Portland, OR 97035" +267924,34in Ultrawide Monitor,1,379.99,10/07/19 11:56,"797 South St, Los Angeles, CA 90001" +267925,AAA Batteries (4-pack),1,2.99,10/14/19 13:22,"13 Willow St, Boston, MA 02215" +267926,Wired Headphones,2,11.99,10/07/19 12:53,"841 Maple St, San Francisco, CA 94016" +267927,34in Ultrawide Monitor,1,379.99,10/13/19 16:39,"444 Jackson St, Los Angeles, CA 90001" +267928,AA Batteries (4-pack),1,3.84,10/09/19 19:19,"809 Main St, Atlanta, GA 30301" +267929,Bose SoundSport Headphones,1,99.99,10/16/19 07:46,"792 Jackson St, Atlanta, GA 30301" +267930,AA Batteries (4-pack),1,3.84,10/15/19 00:19,"987 Lake St, San Francisco, CA 94016" +267931,Flatscreen TV,1,300,10/06/19 15:25,"549 Hickory St, San Francisco, CA 94016" +267932,USB-C Charging Cable,1,11.95,10/27/19 07:40,"604 Lincoln St, San Francisco, CA 94016" +267933,iPhone,1,700,10/05/19 18:47,"999 West St, Los Angeles, CA 90001" +267934,USB-C Charging Cable,1,11.95,10/21/19 12:15,"103 8th St, San Francisco, CA 94016" +267935,LG Dryer,1,600.0,10/14/19 10:57,"890 Hill St, New York City, NY 10001" +267936,AAA Batteries (4-pack),3,2.99,10/09/19 18:28,"101 Washington St, San Francisco, CA 94016" +267937,Bose SoundSport Headphones,1,99.99,10/17/19 10:03,"65 Church St, San Francisco, CA 94016" +267938,Apple Airpods Headphones,1,150,10/22/19 22:55,"286 8th St, San Francisco, CA 94016" +267939,27in 4K Gaming Monitor,1,389.99,10/06/19 16:15,"366 Cedar St, Atlanta, GA 30301" +267940,27in FHD Monitor,1,149.99,10/31/19 11:44,"221 Wilson St, San Francisco, CA 94016" +267941,Lightning Charging Cable,2,14.95,10/19/19 16:02,"206 Chestnut St, Dallas, TX 75001" +267942,Wired Headphones,1,11.99,10/31/19 11:27,"845 Walnut St, Boston, MA 02215" +267943,USB-C Charging Cable,1,11.95,10/29/19 23:05,"196 Johnson St, San Francisco, CA 94016" +267944,Apple Airpods Headphones,1,150,10/13/19 13:17,"182 Ridge St, Dallas, TX 75001" +267945,27in FHD Monitor,1,149.99,10/15/19 11:39,"758 10th St, New York City, NY 10001" +267946,Lightning Charging Cable,1,14.95,10/02/19 10:56,"557 Spruce St, Atlanta, GA 30301" +267947,AAA Batteries (4-pack),1,2.99,10/10/19 18:21,"563 South St, Los Angeles, CA 90001" +267948,USB-C Charging Cable,1,11.95,10/05/19 16:50,"687 6th St, San Francisco, CA 94016" +267949,USB-C Charging Cable,2,11.95,10/11/19 19:40,"43 Cherry St, Atlanta, GA 30301" +267950,AAA Batteries (4-pack),2,2.99,10/25/19 16:23,"241 Highland St, New York City, NY 10001" +267951,27in 4K Gaming Monitor,1,389.99,10/04/19 19:52,"459 West St, Dallas, TX 75001" +267952,Apple Airpods Headphones,1,150,10/14/19 12:53,"597 4th St, Dallas, TX 75001" +267953,AA Batteries (4-pack),2,3.84,10/07/19 21:27,"633 5th St, New York City, NY 10001" +267954,USB-C Charging Cable,1,11.95,10/07/19 17:07,"607 Main St, Dallas, TX 75001" +267955,27in FHD Monitor,1,149.99,10/16/19 20:27,"847 Highland St, New York City, NY 10001" +267956,Wired Headphones,1,11.99,10/19/19 21:01,"701 Chestnut St, San Francisco, CA 94016" +267957,27in 4K Gaming Monitor,1,389.99,10/27/19 16:17,"309 14th St, San Francisco, CA 94016" +267957,Wired Headphones,1,11.99,10/27/19 16:17,"309 14th St, San Francisco, CA 94016" +267958,Bose SoundSport Headphones,1,99.99,10/29/19 17:17,"862 13th St, Los Angeles, CA 90001" +267959,AAA Batteries (4-pack),1,2.99,10/19/19 21:54,"229 14th St, Los Angeles, CA 90001" +267960,LG Dryer,1,600.0,10/26/19 12:43,"860 Highland St, San Francisco, CA 94016" +267961,Google Phone,1,600,10/17/19 10:57,"423 Highland St, Boston, MA 02215" +267961,Wired Headphones,1,11.99,10/17/19 10:57,"423 Highland St, Boston, MA 02215" +267962,LG Dryer,1,600.0,10/26/19 20:40,"398 Church St, Seattle, WA 98101" +267963,Flatscreen TV,1,300,10/27/19 10:21,"454 7th St, Seattle, WA 98101" +267963,Lightning Charging Cable,1,14.95,10/27/19 10:21,"454 7th St, Seattle, WA 98101" +267964,Bose SoundSport Headphones,1,99.99,10/07/19 18:49,"103 River St, Seattle, WA 98101" +267965,Lightning Charging Cable,1,14.95,10/25/19 08:53,"474 Madison St, San Francisco, CA 94016" +267966,AAA Batteries (4-pack),3,2.99,10/15/19 19:05,"565 5th St, Seattle, WA 98101" +267966,AA Batteries (4-pack),1,3.84,10/15/19 19:05,"565 5th St, Seattle, WA 98101" +267967,27in FHD Monitor,1,149.99,10/27/19 22:31,"191 Main St, Dallas, TX 75001" +267968,Apple Airpods Headphones,1,150,10/19/19 16:48,"160 13th St, Los Angeles, CA 90001" +267969,AAA Batteries (4-pack),1,2.99,10/21/19 11:14,"404 Madison St, Atlanta, GA 30301" +267970,AA Batteries (4-pack),1,3.84,10/22/19 14:50,"973 Willow St, Boston, MA 02215" +267971,AAA Batteries (4-pack),1,2.99,10/06/19 21:13,"364 Highland St, New York City, NY 10001" +267972,Apple Airpods Headphones,1,150,10/19/19 16:21,"603 1st St, San Francisco, CA 94016" +267973,Flatscreen TV,1,300,10/01/19 16:32,"861 Adams St, San Francisco, CA 94016" +267974,Wired Headphones,1,11.99,10/30/19 19:16,"322 Church St, Seattle, WA 98101" +267975,Flatscreen TV,1,300,10/28/19 18:10,"838 Johnson St, Austin, TX 73301" +267976,ThinkPad Laptop,1,999.99,10/12/19 12:04,"755 Elm St, San Francisco, CA 94016" +267977,Lightning Charging Cable,1,14.95,10/28/19 18:43,"844 Ridge St, San Francisco, CA 94016" +267978,USB-C Charging Cable,1,11.95,10/23/19 21:00,"247 Johnson St, New York City, NY 10001" +267979,34in Ultrawide Monitor,1,379.99,10/10/19 19:38,"919 River St, New York City, NY 10001" +267980,Apple Airpods Headphones,1,150,10/19/19 10:54,"494 Cedar St, Atlanta, GA 30301" +267981,Google Phone,1,600,10/10/19 13:46,"356 8th St, New York City, NY 10001" +267982,27in 4K Gaming Monitor,1,389.99,10/16/19 09:55,"332 Johnson St, New York City, NY 10001" +267983,USB-C Charging Cable,1,11.95,10/11/19 18:56,"793 North St, Boston, MA 02215" +267984,iPhone,1,700,10/17/19 19:09,"819 Meadow St, Los Angeles, CA 90001" +267985,Lightning Charging Cable,1,14.95,10/05/19 07:02,"626 Pine St, San Francisco, CA 94016" +267986,27in FHD Monitor,1,149.99,10/27/19 08:41,"805 Adams St, Austin, TX 73301" +267987,Macbook Pro Laptop,1,1700,10/03/19 08:46,"204 Elm St, Dallas, TX 75001" +267988,USB-C Charging Cable,1,11.95,10/16/19 18:37,"346 Elm St, Boston, MA 02215" +267989,AA Batteries (4-pack),1,3.84,10/05/19 21:15,"379 Meadow St, Dallas, TX 75001" +267990,Apple Airpods Headphones,1,150,10/08/19 17:05,"577 Forest St, Portland, ME 04101" +267991,AAA Batteries (4-pack),1,2.99,10/05/19 19:03,"389 8th St, San Francisco, CA 94016" +267992,AA Batteries (4-pack),1,3.84,10/18/19 16:26,"558 Lincoln St, San Francisco, CA 94016" +267993,AA Batteries (4-pack),1,3.84,10/11/19 00:27,"645 Cherry St, San Francisco, CA 94016" +267994,AA Batteries (4-pack),1,3.84,10/29/19 22:21,"781 4th St, Los Angeles, CA 90001" +267995,Wired Headphones,1,11.99,10/21/19 20:33,"583 Adams St, Dallas, TX 75001" +267996,Google Phone,1,600,10/22/19 10:55,"779 13th St, San Francisco, CA 94016" +267997,27in FHD Monitor,1,149.99,10/24/19 21:19,"664 12th St, Seattle, WA 98101" +267998,iPhone,1,700,10/02/19 09:27,"220 Jackson St, Atlanta, GA 30301" +267999,AAA Batteries (4-pack),1,2.99,10/16/19 10:32,"849 Hill St, San Francisco, CA 94016" +268000,27in FHD Monitor,1,149.99,10/24/19 19:26,"25 Chestnut St, Atlanta, GA 30301" +268001,Google Phone,1,600,10/04/19 23:21,"782 Pine St, Dallas, TX 75001" +268002,Apple Airpods Headphones,1,150,10/25/19 11:25,"852 Cherry St, San Francisco, CA 94016" +268003,AA Batteries (4-pack),2,3.84,10/14/19 11:27,"577 8th St, San Francisco, CA 94016" +268004,Bose SoundSport Headphones,1,99.99,10/28/19 14:57,"694 Highland St, Seattle, WA 98101" +268005,AAA Batteries (4-pack),3,2.99,10/09/19 09:26,"555 Jackson St, Atlanta, GA 30301" +268006,USB-C Charging Cable,1,11.95,10/31/19 23:13,"906 10th St, San Francisco, CA 94016" +268007,Wired Headphones,1,11.99,10/02/19 13:12,"535 Highland St, Portland, ME 04101" +268008,USB-C Charging Cable,1,11.95,10/11/19 00:59,"106 4th St, Boston, MA 02215" +268009,Apple Airpods Headphones,1,150,10/15/19 10:37,"8 Madison St, San Francisco, CA 94016" +268010,Macbook Pro Laptop,1,1700,10/17/19 06:11,"864 14th St, New York City, NY 10001" +268011,AAA Batteries (4-pack),1,2.99,10/31/19 09:45,"215 Elm St, Atlanta, GA 30301" +268012,Wired Headphones,1,11.99,10/16/19 20:08,"843 Forest St, Atlanta, GA 30301" +268013,ThinkPad Laptop,1,999.99,10/01/19 12:07,"562 Wilson St, Los Angeles, CA 90001" +268014,ThinkPad Laptop,1,999.99,10/28/19 23:14,"568 Jackson St, San Francisco, CA 94016" +268015,AA Batteries (4-pack),2,3.84,10/29/19 14:23,"445 Church St, Portland, OR 97035" +268016,AAA Batteries (4-pack),1,2.99,10/25/19 16:41,"296 North St, Austin, TX 73301" +268017,AA Batteries (4-pack),1,3.84,10/15/19 12:58,"470 Elm St, San Francisco, CA 94016" +268018,Wired Headphones,1,11.99,10/20/19 11:46,"800 Lake St, Los Angeles, CA 90001" +268019,AA Batteries (4-pack),3,3.84,10/11/19 17:30,"204 4th St, New York City, NY 10001" +268020,Google Phone,1,600,10/11/19 06:44,"801 Lakeview St, Los Angeles, CA 90001" +268021,AA Batteries (4-pack),1,3.84,10/18/19 23:55,"76 Lakeview St, San Francisco, CA 94016" +268022,AA Batteries (4-pack),1,3.84,10/24/19 09:09,"343 Cherry St, Boston, MA 02215" +268023,Flatscreen TV,1,300,10/17/19 10:22,"111 13th St, San Francisco, CA 94016" +268024,Apple Airpods Headphones,1,150,10/08/19 10:43,"436 1st St, Dallas, TX 75001" +268025,Lightning Charging Cable,1,14.95,10/18/19 18:55,"385 Church St, Atlanta, GA 30301" +268026,Bose SoundSport Headphones,2,99.99,10/10/19 11:46,"559 Adams St, Seattle, WA 98101" +268027,Apple Airpods Headphones,1,150,10/31/19 13:17,"594 12th St, San Francisco, CA 94016" +268028,AA Batteries (4-pack),1,3.84,10/10/19 00:06,"667 Elm St, San Francisco, CA 94016" +268029,Lightning Charging Cable,1,14.95,10/28/19 06:19,"722 Hill St, San Francisco, CA 94016" +268030,USB-C Charging Cable,1,11.95,10/17/19 12:58,"946 Spruce St, Dallas, TX 75001" +268031,Wired Headphones,2,11.99,10/19/19 22:18,"829 Highland St, San Francisco, CA 94016" +268032,27in 4K Gaming Monitor,1,389.99,10/07/19 22:07,"861 9th St, Dallas, TX 75001" +268033,AAA Batteries (4-pack),1,2.99,10/11/19 21:32,"587 Jackson St, Boston, MA 02215" +268034,Wired Headphones,1,11.99,10/25/19 18:56,"784 Washington St, San Francisco, CA 94016" +268035,AA Batteries (4-pack),1,3.84,10/06/19 20:55,"844 Willow St, Dallas, TX 75001" +268035,USB-C Charging Cable,1,11.95,10/06/19 20:55,"844 Willow St, Dallas, TX 75001" +268036,Bose SoundSport Headphones,1,99.99,10/31/19 10:22,"588 Lincoln St, Seattle, WA 98101" +268037,USB-C Charging Cable,1,11.95,10/19/19 19:31,"336 13th St, Atlanta, GA 30301" +268038,Flatscreen TV,1,300,10/13/19 09:50,"889 Lake St, Los Angeles, CA 90001" +268039,34in Ultrawide Monitor,1,379.99,10/27/19 00:37,"936 5th St, Los Angeles, CA 90001" +268040,iPhone,1,700,10/06/19 11:44,"156 Hickory St, New York City, NY 10001" +268041,Lightning Charging Cable,1,14.95,10/02/19 17:35,"429 Ridge St, Atlanta, GA 30301" +268042,Wired Headphones,1,11.99,10/11/19 00:23,"595 Ridge St, Boston, MA 02215" +268043,27in FHD Monitor,1,149.99,10/26/19 12:34,"925 Center St, Los Angeles, CA 90001" +268044,Lightning Charging Cable,1,14.95,10/16/19 20:39,"524 Cedar St, New York City, NY 10001" +268045,Bose SoundSport Headphones,1,99.99,10/05/19 14:47,"470 Jackson St, Dallas, TX 75001" +268046,ThinkPad Laptop,1,999.99,10/03/19 15:33,"679 Cedar St, Austin, TX 73301" +268047,USB-C Charging Cable,1,11.95,10/24/19 21:16,"835 1st St, Los Angeles, CA 90001" +268048,Wired Headphones,2,11.99,10/14/19 14:00,"346 Adams St, Boston, MA 02215" +268049,AA Batteries (4-pack),1,3.84,10/09/19 16:56,"836 Hickory St, San Francisco, CA 94016" +268050,Bose SoundSport Headphones,1,99.99,10/28/19 20:35,"434 6th St, New York City, NY 10001" +268051,USB-C Charging Cable,2,11.95,10/30/19 19:42,"734 Forest St, San Francisco, CA 94016" +268052,USB-C Charging Cable,1,11.95,10/30/19 12:26,"913 Hickory St, New York City, NY 10001" +268053,Vareebadd Phone,1,400,10/28/19 20:00,"258 5th St, San Francisco, CA 94016" +268054,Google Phone,1,600,10/21/19 21:47,"878 Wilson St, Dallas, TX 75001" +268055,AAA Batteries (4-pack),1,2.99,10/02/19 16:50,"113 Sunset St, New York City, NY 10001" +268056,Bose SoundSport Headphones,1,99.99,10/05/19 17:54,"99 14th St, Los Angeles, CA 90001" +268057,USB-C Charging Cable,2,11.95,10/18/19 13:43,"712 Chestnut St, San Francisco, CA 94016" +268058,AA Batteries (4-pack),1,3.84,10/25/19 15:12,"829 Chestnut St, Seattle, WA 98101" +268059,AA Batteries (4-pack),1,3.84,10/26/19 16:51,"879 10th St, San Francisco, CA 94016" +268060,Apple Airpods Headphones,1,150,10/21/19 13:45,"344 Dogwood St, Boston, MA 02215" +268061,Wired Headphones,1,11.99,10/13/19 08:31,"373 Pine St, Austin, TX 73301" +268062,USB-C Charging Cable,1,11.95,10/13/19 18:23,"155 Center St, San Francisco, CA 94016" +268063,AAA Batteries (4-pack),2,2.99,10/21/19 15:29,"343 Sunset St, San Francisco, CA 94016" +268064,Lightning Charging Cable,2,14.95,10/07/19 19:16,"839 Adams St, Atlanta, GA 30301" +268065,Bose SoundSport Headphones,1,99.99,10/06/19 23:06,"113 Jefferson St, Los Angeles, CA 90001" +268066,Apple Airpods Headphones,1,150,10/03/19 05:13,"2 11th St, Boston, MA 02215" +268067,Wired Headphones,2,11.99,10/24/19 20:18,"117 13th St, Seattle, WA 98101" +268068,Apple Airpods Headphones,1,150,10/30/19 18:29,"362 14th St, San Francisco, CA 94016" +268069,AAA Batteries (4-pack),3,2.99,10/06/19 09:35,"527 Jefferson St, Portland, OR 97035" +268070,USB-C Charging Cable,2,11.95,10/25/19 13:01,"551 10th St, San Francisco, CA 94016" +268071,Macbook Pro Laptop,1,1700,10/08/19 19:12,"613 Main St, Los Angeles, CA 90001" +268072,USB-C Charging Cable,1,11.95,10/23/19 00:37,"100 Church St, New York City, NY 10001" +268073,27in FHD Monitor,1,149.99,10/05/19 00:09,"407 Wilson St, New York City, NY 10001" +268074,Lightning Charging Cable,1,14.95,10/28/19 08:51,"508 Ridge St, Los Angeles, CA 90001" +268075,Lightning Charging Cable,1,14.95,10/29/19 20:58,"541 Pine St, Austin, TX 73301" +268076,AAA Batteries (4-pack),3,2.99,10/08/19 20:12,"15 8th St, Portland, ME 04101" +268077,AA Batteries (4-pack),3,3.84,10/03/19 08:25,"649 Hill St, New York City, NY 10001" +268078,Wired Headphones,1,11.99,10/16/19 11:17,"962 Highland St, San Francisco, CA 94016" +268079,AA Batteries (4-pack),1,3.84,10/31/19 16:20,"942 Washington St, Boston, MA 02215" +268080,AAA Batteries (4-pack),2,2.99,10/31/19 12:53,"222 Dogwood St, San Francisco, CA 94016" +268081,AAA Batteries (4-pack),2,2.99,10/13/19 18:23,"884 2nd St, Dallas, TX 75001" +268082,Wired Headphones,1,11.99,10/05/19 15:30,"706 Spruce St, Dallas, TX 75001" +268083,Flatscreen TV,1,300,10/30/19 16:48,"327 West St, Boston, MA 02215" +268084,Wired Headphones,1,11.99,10/27/19 17:47,"409 Lakeview St, New York City, NY 10001" +268085,27in FHD Monitor,1,149.99,10/26/19 08:40,"315 Church St, Boston, MA 02215" +268086,AAA Batteries (4-pack),1,2.99,10/02/19 11:08,"935 Forest St, Atlanta, GA 30301" +268087,USB-C Charging Cable,2,11.95,10/03/19 20:21,"421 Dogwood St, Boston, MA 02215" +268088,USB-C Charging Cable,1,11.95,10/04/19 10:28,"487 7th St, Boston, MA 02215" +268089,27in FHD Monitor,1,149.99,10/24/19 21:31,"583 Chestnut St, Los Angeles, CA 90001" +268090,USB-C Charging Cable,1,11.95,10/17/19 09:08,"489 Highland St, New York City, NY 10001" +268091,iPhone,1,700,10/02/19 06:36,"540 12th St, San Francisco, CA 94016" +268092,Wired Headphones,1,11.99,10/02/19 16:42,"862 10th St, Austin, TX 73301" +268093,USB-C Charging Cable,1,11.95,10/17/19 18:28,"839 Main St, Los Angeles, CA 90001" +268094,Bose SoundSport Headphones,1,99.99,10/22/19 19:58,"555 North St, Los Angeles, CA 90001" +268095,USB-C Charging Cable,1,11.95,10/27/19 13:00,"999 Chestnut St, Boston, MA 02215" +268096,Lightning Charging Cable,1,14.95,10/05/19 01:46,"168 Park St, Dallas, TX 75001" +268097,27in FHD Monitor,1,149.99,10/26/19 17:48,"854 West St, New York City, NY 10001" +268098,USB-C Charging Cable,1,11.95,10/14/19 15:21,"722 Wilson St, Dallas, TX 75001" +268099,27in FHD Monitor,1,149.99,10/31/19 21:37,"309 Maple St, Atlanta, GA 30301" +268100,20in Monitor,1,109.99,10/14/19 15:31,"326 12th St, Boston, MA 02215" +268101,Macbook Pro Laptop,1,1700,10/23/19 12:01,"475 West St, Seattle, WA 98101" +268102,ThinkPad Laptop,1,999.99,10/29/19 02:34,"763 2nd St, Seattle, WA 98101" +268103,Apple Airpods Headphones,1,150,10/11/19 22:46,"348 Church St, San Francisco, CA 94016" +268104,AA Batteries (4-pack),1,3.84,10/03/19 17:25,"174 Jefferson St, Austin, TX 73301" +268105,Lightning Charging Cable,1,14.95,10/19/19 20:03,"5 14th St, San Francisco, CA 94016" +268106,Wired Headphones,1,11.99,10/22/19 17:57,"855 4th St, Portland, OR 97035" +268107,AAA Batteries (4-pack),2,2.99,10/21/19 16:09,"654 Cedar St, Los Angeles, CA 90001" +268108,AAA Batteries (4-pack),1,2.99,10/04/19 12:37,"19 8th St, Boston, MA 02215" +268109,27in 4K Gaming Monitor,1,389.99,10/04/19 20:40,"445 River St, San Francisco, CA 94016" +268110,27in 4K Gaming Monitor,1,389.99,10/21/19 10:00,"374 Hill St, New York City, NY 10001" +268111,27in FHD Monitor,1,149.99,10/24/19 22:51,"187 6th St, San Francisco, CA 94016" +268112,27in 4K Gaming Monitor,1,389.99,10/03/19 11:51,"738 Madison St, San Francisco, CA 94016" +268113,Apple Airpods Headphones,1,150,10/23/19 09:33,"857 Ridge St, Portland, OR 97035" +268114,Wired Headphones,1,11.99,10/10/19 14:00,"401 1st St, New York City, NY 10001" +268115,Lightning Charging Cable,1,14.95,10/18/19 17:23,"69 Elm St, San Francisco, CA 94016" +268116,USB-C Charging Cable,1,11.95,10/25/19 16:06,"726 1st St, Boston, MA 02215" +268117,27in 4K Gaming Monitor,1,389.99,10/18/19 09:19,"506 Lincoln St, Boston, MA 02215" +268118,27in 4K Gaming Monitor,1,389.99,10/19/19 23:45,"123 Jackson St, Dallas, TX 75001" +268119,iPhone,1,700,10/07/19 21:23,"809 13th St, Seattle, WA 98101" +268120,Lightning Charging Cable,1,14.95,10/19/19 11:05,"44 West St, Los Angeles, CA 90001" +268121,27in FHD Monitor,1,149.99,10/11/19 22:45,"295 7th St, Seattle, WA 98101" +268122,Bose SoundSport Headphones,1,99.99,10/26/19 15:36,"300 8th St, San Francisco, CA 94016" +268123,Lightning Charging Cable,1,14.95,10/28/19 12:01,"165 10th St, New York City, NY 10001" +268124,34in Ultrawide Monitor,1,379.99,10/28/19 05:24,"612 4th St, New York City, NY 10001" +268125,Apple Airpods Headphones,1,150,10/01/19 10:34,"4 Church St, San Francisco, CA 94016" +268126,Lightning Charging Cable,1,14.95,10/19/19 20:12,"39 8th St, Los Angeles, CA 90001" +268127,27in FHD Monitor,1,149.99,10/14/19 15:00,"808 Hill St, Los Angeles, CA 90001" +268128,USB-C Charging Cable,2,11.95,10/20/19 21:55,"241 Hickory St, Los Angeles, CA 90001" +268129,AA Batteries (4-pack),1,3.84,10/27/19 20:47,"283 Hill St, Portland, OR 97035" +268130,Google Phone,1,600,10/12/19 12:59,"13 7th St, San Francisco, CA 94016" +268130,Wired Headphones,1,11.99,10/12/19 12:59,"13 7th St, San Francisco, CA 94016" +268131,27in FHD Monitor,1,149.99,10/18/19 23:45,"156 Meadow St, Austin, TX 73301" +268131,Flatscreen TV,1,300,10/18/19 23:45,"156 Meadow St, Austin, TX 73301" +268132,Lightning Charging Cable,1,14.95,10/28/19 19:56,"263 Meadow St, San Francisco, CA 94016" +268133,34in Ultrawide Monitor,1,379.99,10/12/19 09:53,"211 South St, Los Angeles, CA 90001" +268134,AAA Batteries (4-pack),1,2.99,10/24/19 14:49,"577 Hickory St, Seattle, WA 98101" +268135,AA Batteries (4-pack),1,3.84,10/24/19 16:56,"395 Ridge St, New York City, NY 10001" +268136,AA Batteries (4-pack),2,3.84,10/30/19 12:22,"181 Chestnut St, New York City, NY 10001" +268137,USB-C Charging Cable,1,11.95,10/24/19 12:29,"264 Park St, Boston, MA 02215" +268138,Wired Headphones,1,11.99,10/15/19 12:48,"416 Walnut St, New York City, NY 10001" +268139,Apple Airpods Headphones,1,150,10/08/19 21:03,"120 7th St, Los Angeles, CA 90001" +268140,Apple Airpods Headphones,1,150,10/27/19 19:47,"623 7th St, Los Angeles, CA 90001" +268141,ThinkPad Laptop,1,999.99,10/29/19 17:40,"118 Pine St, San Francisco, CA 94016" +268142,iPhone,1,700,10/17/19 17:41,"121 Washington St, Boston, MA 02215" +268143,USB-C Charging Cable,1,11.95,10/26/19 10:44,"965 Cedar St, Portland, ME 04101" +268144,AAA Batteries (4-pack),1,2.99,10/22/19 03:19,"37 13th St, Seattle, WA 98101" +268145,USB-C Charging Cable,1,11.95,10/03/19 17:01,"16 Church St, Los Angeles, CA 90001" +268146,34in Ultrawide Monitor,1,379.99,10/23/19 10:28,"887 South St, Atlanta, GA 30301" +268147,Apple Airpods Headphones,1,150,10/11/19 16:22,"309 Hickory St, Los Angeles, CA 90001" +268147,Google Phone,1,600,10/11/19 16:22,"309 Hickory St, Los Angeles, CA 90001" +268148,Lightning Charging Cable,1,14.95,10/17/19 20:48,"661 Meadow St, Boston, MA 02215" +268149,27in 4K Gaming Monitor,1,389.99,10/11/19 15:10,"889 Hill St, Los Angeles, CA 90001" +268149,Wired Headphones,1,11.99,10/11/19 15:10,"889 Hill St, Los Angeles, CA 90001" +268150,Bose SoundSport Headphones,1,99.99,10/16/19 12:13,"786 2nd St, San Francisco, CA 94016" +268151,Apple Airpods Headphones,1,150,10/17/19 01:45,"183 7th St, Portland, OR 97035" +268152,Apple Airpods Headphones,1,150,10/09/19 17:47,"288 9th St, Los Angeles, CA 90001" +268153,Apple Airpods Headphones,1,150,10/13/19 21:00,"383 7th St, Austin, TX 73301" +268154,Apple Airpods Headphones,1,150,10/04/19 10:17,"894 14th St, San Francisco, CA 94016" +268155,AAA Batteries (4-pack),1,2.99,10/10/19 15:38,"548 Meadow St, New York City, NY 10001" +268156,20in Monitor,1,109.99,10/24/19 18:18,"584 11th St, Los Angeles, CA 90001" +268157,Lightning Charging Cable,1,14.95,10/18/19 07:55,"749 Chestnut St, New York City, NY 10001" +268158,Wired Headphones,2,11.99,10/14/19 00:07,"515 Lakeview St, Atlanta, GA 30301" +268159,USB-C Charging Cable,1,11.95,10/23/19 10:19,"610 Lincoln St, New York City, NY 10001" +268160,AA Batteries (4-pack),1,3.84,10/23/19 13:49,"663 Forest St, Dallas, TX 75001" +268161,iPhone,1,700,10/20/19 11:39,"765 Lakeview St, Seattle, WA 98101" +268162,AA Batteries (4-pack),1,3.84,10/14/19 12:55,"881 Dogwood St, San Francisco, CA 94016" +268163,Apple Airpods Headphones,1,150,10/11/19 06:18,"75 Willow St, Boston, MA 02215" +268164,AA Batteries (4-pack),2,3.84,10/16/19 20:43,"89 13th St, New York City, NY 10001" +268165,Bose SoundSport Headphones,1,99.99,10/19/19 10:46,"880 Washington St, New York City, NY 10001" +268166,AAA Batteries (4-pack),3,2.99,10/09/19 12:25,"385 Chestnut St, Portland, OR 97035" +268167,Wired Headphones,1,11.99,10/24/19 08:35,"150 Walnut St, Los Angeles, CA 90001" +268168,USB-C Charging Cable,1,11.95,10/17/19 15:07,"417 Sunset St, Boston, MA 02215" +268169,iPhone,1,700,10/02/19 19:13,"692 7th St, Los Angeles, CA 90001" +268170,Lightning Charging Cable,1,14.95,10/06/19 13:57,"176 Forest St, Atlanta, GA 30301" +268171,Wired Headphones,2,11.99,10/14/19 21:39,"742 Forest St, Dallas, TX 75001" +268172,Wired Headphones,1,11.99,10/25/19 21:36,"176 Church St, Boston, MA 02215" +268173,ThinkPad Laptop,1,999.99,10/11/19 14:07,"474 River St, Seattle, WA 98101" +268174,27in 4K Gaming Monitor,1,389.99,10/27/19 19:47,"447 Hill St, San Francisco, CA 94016" +268175,Lightning Charging Cable,1,14.95,10/25/19 07:21,"873 Dogwood St, Austin, TX 73301" +268176,AA Batteries (4-pack),2,3.84,10/15/19 18:10,"641 6th St, Dallas, TX 75001" +268177,AA Batteries (4-pack),1,3.84,10/08/19 09:24,"766 Cedar St, Dallas, TX 75001" +268178,Wired Headphones,1,11.99,10/11/19 06:19,"544 6th St, San Francisco, CA 94016" +268179,AAA Batteries (4-pack),1,2.99,10/02/19 21:05,"931 Johnson St, Seattle, WA 98101" +268180,Wired Headphones,1,11.99,10/22/19 14:09,"994 Johnson St, Boston, MA 02215" +268181,Bose SoundSport Headphones,1,99.99,10/18/19 05:12,"303 Hill St, Los Angeles, CA 90001" +268182,27in FHD Monitor,1,149.99,10/03/19 15:22,"186 7th St, San Francisco, CA 94016" +268183,iPhone,1,700,10/09/19 12:20,"180 Cherry St, Seattle, WA 98101" +268184,Wired Headphones,1,11.99,10/11/19 13:31,"296 Lincoln St, Atlanta, GA 30301" +268185,iPhone,1,700,10/06/19 19:49,"528 5th St, San Francisco, CA 94016" +268186,Google Phone,1,600,10/25/19 12:26,"237 14th St, Los Angeles, CA 90001" +268186,USB-C Charging Cable,1,11.95,10/25/19 12:26,"237 14th St, Los Angeles, CA 90001" +,,,,, +268187,USB-C Charging Cable,1,11.95,10/29/19 06:01,"286 Meadow St, San Francisco, CA 94016" +268188,27in FHD Monitor,1,149.99,10/24/19 00:37,"538 Washington St, San Francisco, CA 94016" +268189,Wired Headphones,1,11.99,10/03/19 20:04,"942 Johnson St, Los Angeles, CA 90001" +268190,20in Monitor,1,109.99,10/02/19 15:15,"659 12th St, Los Angeles, CA 90001" +268191,20in Monitor,1,109.99,10/03/19 12:22,"598 North St, Boston, MA 02215" +268192,iPhone,1,700,10/27/19 21:37,"181 Lincoln St, Austin, TX 73301" +268193,Lightning Charging Cable,1,14.95,10/23/19 21:18,"298 Spruce St, Boston, MA 02215" +268194,Bose SoundSport Headphones,1,99.99,10/24/19 09:35,"53 2nd St, San Francisco, CA 94016" +268195,34in Ultrawide Monitor,1,379.99,10/01/19 22:35,"808 Cedar St, New York City, NY 10001" +268196,AA Batteries (4-pack),3,3.84,10/15/19 22:40,"744 Maple St, Boston, MA 02215" +268197,USB-C Charging Cable,1,11.95,10/30/19 01:59,"243 Willow St, San Francisco, CA 94016" +268198,27in 4K Gaming Monitor,1,389.99,10/31/19 20:49,"442 14th St, Austin, TX 73301" +268199,USB-C Charging Cable,1,11.95,10/05/19 07:31,"869 West St, Los Angeles, CA 90001" +268200,USB-C Charging Cable,1,11.95,10/25/19 22:23,"323 8th St, New York City, NY 10001" +268201,Bose SoundSport Headphones,1,99.99,10/07/19 22:48,"941 Lincoln St, Los Angeles, CA 90001" +268202,Flatscreen TV,1,300,10/10/19 12:10,"650 Sunset St, Boston, MA 02215" +268203,27in 4K Gaming Monitor,1,389.99,10/12/19 18:55,"800 Lakeview St, Atlanta, GA 30301" +268204,Google Phone,1,600,10/30/19 14:20,"953 6th St, Los Angeles, CA 90001" +268204,USB-C Charging Cable,1,11.95,10/30/19 14:20,"953 6th St, Los Angeles, CA 90001" +268205,Macbook Pro Laptop,1,1700,10/13/19 12:29,"314 Meadow St, Dallas, TX 75001" +268206,Wired Headphones,1,11.99,10/13/19 22:24,"485 Elm St, Los Angeles, CA 90001" +268207,Lightning Charging Cable,1,14.95,10/31/19 11:45,"156 Madison St, Atlanta, GA 30301" +268208,Google Phone,1,600,10/02/19 21:43,"335 Forest St, New York City, NY 10001" +268209,27in FHD Monitor,1,149.99,10/26/19 13:45,"479 9th St, New York City, NY 10001" +268210,Macbook Pro Laptop,1,1700,10/03/19 09:15,"721 Cherry St, Boston, MA 02215" +268211,Bose SoundSport Headphones,1,99.99,10/23/19 16:31,"243 5th St, San Francisco, CA 94016" +268212,20in Monitor,1,109.99,10/28/19 19:20,"148 8th St, Dallas, TX 75001" +268213,AA Batteries (4-pack),2,3.84,10/23/19 20:15,"814 Spruce St, New York City, NY 10001" +268214,Wired Headphones,1,11.99,10/18/19 07:36,"503 Hill St, New York City, NY 10001" +268215,AA Batteries (4-pack),2,3.84,10/18/19 21:06,"636 Highland St, San Francisco, CA 94016" +268216,Bose SoundSport Headphones,1,99.99,10/17/19 09:33,"11 8th St, Los Angeles, CA 90001" +268217,Apple Airpods Headphones,1,150,10/13/19 21:28,"171 10th St, Austin, TX 73301" +268218,USB-C Charging Cable,1,11.95,10/27/19 22:50,"352 6th St, Los Angeles, CA 90001" +268219,Macbook Pro Laptop,1,1700,10/06/19 20:44,"824 Jackson St, San Francisco, CA 94016" +268220,ThinkPad Laptop,1,999.99,10/25/19 19:23,"125 Meadow St, New York City, NY 10001" +268221,Macbook Pro Laptop,1,1700,10/05/19 22:53,"299 Walnut St, Boston, MA 02215" +268222,27in FHD Monitor,1,149.99,10/17/19 16:32,"550 Lakeview St, Dallas, TX 75001" +268223,27in FHD Monitor,1,149.99,10/19/19 17:01,"651 Willow St, San Francisco, CA 94016" +268224,Apple Airpods Headphones,1,150,10/08/19 16:51,"944 Willow St, San Francisco, CA 94016" +268225,Wired Headphones,1,11.99,10/09/19 21:29,"785 13th St, Los Angeles, CA 90001" +268226,USB-C Charging Cable,1,11.95,10/24/19 19:32,"201 Church St, Portland, OR 97035" +268227,AA Batteries (4-pack),2,3.84,10/03/19 10:35,"779 Main St, Dallas, TX 75001" +268228,Lightning Charging Cable,1,14.95,10/22/19 19:21,"698 7th St, San Francisco, CA 94016" +268229,Lightning Charging Cable,1,14.95,10/16/19 17:29,"32 13th St, Los Angeles, CA 90001" +268230,Lightning Charging Cable,1,14.95,10/22/19 00:24,"833 7th St, New York City, NY 10001" +268231,Apple Airpods Headphones,1,150,10/05/19 16:26,"307 Lincoln St, New York City, NY 10001" +268232,Lightning Charging Cable,1,14.95,10/29/19 16:57,"837 Dogwood St, Boston, MA 02215" +268233,USB-C Charging Cable,1,11.95,10/04/19 07:53,"900 4th St, New York City, NY 10001" +268234,AAA Batteries (4-pack),2,2.99,10/31/19 21:54,"850 Hill St, Boston, MA 02215" +268235,AAA Batteries (4-pack),2,2.99,10/13/19 19:01,"446 Madison St, San Francisco, CA 94016" +268236,AA Batteries (4-pack),1,3.84,10/04/19 18:24,"75 Jefferson St, Boston, MA 02215" +268237,Lightning Charging Cable,1,14.95,10/12/19 23:56,"584 Adams St, Los Angeles, CA 90001" +268238,USB-C Charging Cable,1,11.95,10/23/19 15:44,"479 9th St, San Francisco, CA 94016" +268239,ThinkPad Laptop,1,999.99,10/31/19 13:50,"336 Pine St, Los Angeles, CA 90001" +268240,Vareebadd Phone,1,400,10/24/19 21:31,"26 Adams St, Boston, MA 02215" +268241,USB-C Charging Cable,1,11.95,10/30/19 18:19,"126 Forest St, Boston, MA 02215" +268242,Google Phone,1,600,10/06/19 13:38,"332 Sunset St, Seattle, WA 98101" +268243,AA Batteries (4-pack),1,3.84,10/10/19 11:59,"982 West St, Seattle, WA 98101" +268244,USB-C Charging Cable,2,11.95,10/23/19 10:02,"111 Cedar St, Los Angeles, CA 90001" +268245,ThinkPad Laptop,1,999.99,10/09/19 11:36,"65 Park St, San Francisco, CA 94016" +268246,Wired Headphones,1,11.99,10/30/19 21:06,"395 Lincoln St, Atlanta, GA 30301" +268247,27in FHD Monitor,1,149.99,10/27/19 03:56,"493 Meadow St, San Francisco, CA 94016" +268248,Lightning Charging Cable,1,14.95,10/08/19 14:39,"998 13th St, Austin, TX 73301" +268249,27in FHD Monitor,1,149.99,10/20/19 10:52,"236 Lake St, Seattle, WA 98101" +268250,AAA Batteries (4-pack),1,2.99,10/12/19 10:41,"246 North St, Los Angeles, CA 90001" +268251,Lightning Charging Cable,1,14.95,10/23/19 11:17,"597 Pine St, Boston, MA 02215" +268252,AAA Batteries (4-pack),1,2.99,10/17/19 10:57,"347 6th St, Boston, MA 02215" +268253,Wired Headphones,1,11.99,10/01/19 15:11,"297 Lake St, New York City, NY 10001" +268254,ThinkPad Laptop,1,999.99,10/01/19 19:18,"816 Jackson St, Boston, MA 02215" +268255,USB-C Charging Cable,1,11.95,10/26/19 07:17,"648 West St, Seattle, WA 98101" +268256,Bose SoundSport Headphones,1,99.99,10/31/19 19:26,"882 Chestnut St, Los Angeles, CA 90001" +268257,27in FHD Monitor,1,149.99,10/18/19 20:25,"434 9th St, San Francisco, CA 94016" +268258,AAA Batteries (4-pack),2,2.99,10/13/19 21:36,"816 Church St, San Francisco, CA 94016" +268259,AA Batteries (4-pack),2,3.84,10/25/19 15:23,"810 2nd St, San Francisco, CA 94016" +268260,USB-C Charging Cable,1,11.95,10/02/19 18:47,"896 9th St, Boston, MA 02215" +268261,AAA Batteries (4-pack),2,2.99,10/18/19 17:48,"205 Spruce St, San Francisco, CA 94016" +268262,iPhone,1,700,10/26/19 19:56,"206 South St, Boston, MA 02215" +268263,Lightning Charging Cable,1,14.95,10/04/19 02:58,"884 South St, Dallas, TX 75001" +268264,AA Batteries (4-pack),1,3.84,10/08/19 14:49,"387 7th St, Atlanta, GA 30301" +268265,AA Batteries (4-pack),2,3.84,10/11/19 14:55,"24 South St, Austin, TX 73301" +268266,USB-C Charging Cable,1,11.95,10/21/19 22:20,"387 Center St, Boston, MA 02215" +268267,Macbook Pro Laptop,1,1700,10/16/19 00:56,"68 Willow St, New York City, NY 10001" +268268,AAA Batteries (4-pack),1,2.99,10/19/19 21:09,"984 Wilson St, San Francisco, CA 94016" +268269,Lightning Charging Cable,1,14.95,10/26/19 22:35,"790 Walnut St, San Francisco, CA 94016" +268270,AA Batteries (4-pack),1,3.84,10/10/19 01:51,"242 Adams St, New York City, NY 10001" +268271,Wired Headphones,1,11.99,10/23/19 05:39,"980 2nd St, San Francisco, CA 94016" +268272,Apple Airpods Headphones,1,150,10/10/19 19:11,"536 7th St, Portland, ME 04101" +268273,USB-C Charging Cable,1,11.95,10/06/19 14:34,"825 10th St, Boston, MA 02215" +268274,AA Batteries (4-pack),1,3.84,10/02/19 21:10,"227 Lake St, Boston, MA 02215" +268275,AAA Batteries (4-pack),1,2.99,10/18/19 14:23,"99 Maple St, Atlanta, GA 30301" +268276,Apple Airpods Headphones,1,150,10/31/19 21:50,"272 7th St, New York City, NY 10001" +268277,Lightning Charging Cable,1,14.95,10/01/19 10:21,"107 River St, San Francisco, CA 94016" +268278,AA Batteries (4-pack),1,3.84,10/08/19 17:24,"251 Johnson St, Austin, TX 73301" +268279,Google Phone,1,600,10/28/19 17:28,"348 8th St, Portland, ME 04101" +268280,Google Phone,1,600,10/10/19 13:39,"877 Lakeview St, Los Angeles, CA 90001" +268280,USB-C Charging Cable,1,11.95,10/10/19 13:39,"877 Lakeview St, Los Angeles, CA 90001" +268281,iPhone,1,700,10/11/19 10:22,"483 Lincoln St, Boston, MA 02215" +268282,Lightning Charging Cable,1,14.95,10/16/19 12:34,"39 Maple St, Seattle, WA 98101" +268283,AA Batteries (4-pack),1,3.84,10/05/19 16:39,"235 Jackson St, Boston, MA 02215" +268284,27in FHD Monitor,1,149.99,10/31/19 17:41,"988 Lake St, Seattle, WA 98101" +268285,Wired Headphones,1,11.99,10/18/19 09:45,"89 Center St, Atlanta, GA 30301" +268286,Lightning Charging Cable,1,14.95,10/04/19 20:42,"59 Maple St, San Francisco, CA 94016" +268287,AAA Batteries (4-pack),2,2.99,10/07/19 12:20,"147 Ridge St, Los Angeles, CA 90001" +268288,AA Batteries (4-pack),1,3.84,10/08/19 15:45,"859 Madison St, Seattle, WA 98101" +268289,AA Batteries (4-pack),1,3.84,10/09/19 15:14,"947 Lincoln St, New York City, NY 10001" +268290,Apple Airpods Headphones,1,150,10/11/19 20:28,"235 Washington St, San Francisco, CA 94016" +268291,iPhone,1,700,10/28/19 17:27,"185 10th St, San Francisco, CA 94016" +268292,34in Ultrawide Monitor,1,379.99,10/07/19 21:56,"292 2nd St, New York City, NY 10001" +268293,AAA Batteries (4-pack),1,2.99,10/04/19 15:20,"101 West St, San Francisco, CA 94016" +268294,Bose SoundSport Headphones,1,99.99,10/25/19 20:02,"125 Chestnut St, Boston, MA 02215" +268295,34in Ultrawide Monitor,1,379.99,10/06/19 21:17,"464 Spruce St, San Francisco, CA 94016" +268296,Apple Airpods Headphones,1,150,10/19/19 14:07,"117 River St, Portland, OR 97035" +268297,34in Ultrawide Monitor,1,379.99,10/04/19 16:24,"933 Ridge St, Dallas, TX 75001" +268298,Vareebadd Phone,1,400,10/22/19 20:39,"294 Ridge St, Los Angeles, CA 90001" +268299,Wired Headphones,1,11.99,10/19/19 12:41,"635 Walnut St, San Francisco, CA 94016" +268300,20in Monitor,1,109.99,10/27/19 16:10,"938 River St, San Francisco, CA 94016" +268301,AAA Batteries (4-pack),1,2.99,10/23/19 15:03,"228 5th St, Boston, MA 02215" +268302,Apple Airpods Headphones,1,150,10/10/19 10:56,"835 Washington St, San Francisco, CA 94016" +268303,27in 4K Gaming Monitor,1,389.99,10/02/19 17:57,"384 West St, Los Angeles, CA 90001" +268304,Lightning Charging Cable,1,14.95,10/07/19 17:02,"596 West St, Portland, OR 97035" +268305,Google Phone,1,600,10/02/19 19:18,"209 Lake St, Los Angeles, CA 90001" +268306,USB-C Charging Cable,1,11.95,10/01/19 07:45,"661 Jefferson St, Seattle, WA 98101" +268307,27in FHD Monitor,1,149.99,10/20/19 16:20,"717 Highland St, San Francisco, CA 94016" +268308,AA Batteries (4-pack),3,3.84,10/06/19 10:04,"741 1st St, Los Angeles, CA 90001" +268309,AA Batteries (4-pack),1,3.84,10/16/19 14:28,"383 Park St, Los Angeles, CA 90001" +268310,iPhone,1,700,10/22/19 19:10,"343 Jackson St, New York City, NY 10001" +268311,Wired Headphones,1,11.99,10/26/19 19:59,"48 Spruce St, San Francisco, CA 94016" +268312,AAA Batteries (4-pack),1,2.99,10/20/19 21:36,"458 River St, Atlanta, GA 30301" +268313,AA Batteries (4-pack),1,3.84,10/30/19 13:10,"996 Willow St, Boston, MA 02215" +268314,Vareebadd Phone,1,400,10/03/19 18:48,"477 14th St, New York City, NY 10001" +268315,Apple Airpods Headphones,1,150,10/23/19 12:59,"729 4th St, San Francisco, CA 94016" +268316,AAA Batteries (4-pack),3,2.99,10/10/19 13:21,"423 Wilson St, Atlanta, GA 30301" +268317,AAA Batteries (4-pack),3,2.99,10/09/19 06:54,"517 Highland St, New York City, NY 10001" +268318,27in 4K Gaming Monitor,1,389.99,10/09/19 11:23,"427 Cherry St, San Francisco, CA 94016" +268319,Apple Airpods Headphones,1,150,10/28/19 22:50,"399 Walnut St, Portland, OR 97035" +268320,34in Ultrawide Monitor,1,379.99,10/15/19 19:17,"405 Dogwood St, Austin, TX 73301" +268321,Lightning Charging Cable,1,14.95,10/31/19 21:30,"749 Sunset St, San Francisco, CA 94016" +268322,Bose SoundSport Headphones,1,99.99,10/31/19 17:39,"597 Ridge St, San Francisco, CA 94016" +268323,Wired Headphones,2,11.99,10/24/19 12:56,"863 Willow St, Dallas, TX 75001" +268324,AA Batteries (4-pack),1,3.84,10/01/19 18:09,"88 Spruce St, San Francisco, CA 94016" +268325,AAA Batteries (4-pack),1,2.99,10/05/19 14:40,"279 Forest St, San Francisco, CA 94016" +268326,AA Batteries (4-pack),1,3.84,10/27/19 21:18,"664 7th St, Portland, OR 97035" +268327,USB-C Charging Cable,1,11.95,10/14/19 19:20,"157 7th St, New York City, NY 10001" +268328,Bose SoundSport Headphones,1,99.99,10/11/19 17:37,"453 9th St, Boston, MA 02215" +268329,USB-C Charging Cable,2,11.95,10/22/19 21:36,"689 Willow St, Seattle, WA 98101" +268330,20in Monitor,1,109.99,10/19/19 19:40,"267 Hickory St, New York City, NY 10001" +268331,Wired Headphones,2,11.99,10/30/19 10:24,"418 12th St, San Francisco, CA 94016" +268332,Bose SoundSport Headphones,1,99.99,10/08/19 15:48,"611 Park St, San Francisco, CA 94016" +268333,20in Monitor,1,109.99,10/31/19 15:33,"530 12th St, Los Angeles, CA 90001" +268334,34in Ultrawide Monitor,1,379.99,10/28/19 16:43,"325 6th St, Los Angeles, CA 90001" +268334,Lightning Charging Cable,1,14.95,10/28/19 16:43,"325 6th St, Los Angeles, CA 90001" +268335,ThinkPad Laptop,1,999.99,10/30/19 00:34,"518 Cherry St, Los Angeles, CA 90001" +268336,27in 4K Gaming Monitor,1,389.99,10/03/19 22:53,"161 6th St, Atlanta, GA 30301" +268337,AA Batteries (4-pack),1,3.84,10/28/19 11:48,"940 Madison St, San Francisco, CA 94016" +268338,Vareebadd Phone,1,400,10/06/19 12:18,"767 Madison St, Portland, OR 97035" +268339,Apple Airpods Headphones,1,150,10/31/19 08:47,"773 River St, Atlanta, GA 30301" +268340,Apple Airpods Headphones,1,150,10/03/19 15:26,"528 Elm St, Dallas, TX 75001" +268341,Lightning Charging Cable,1,14.95,10/07/19 17:46,"674 Jackson St, San Francisco, CA 94016" +268342,Bose SoundSport Headphones,1,99.99,10/21/19 06:01,"998 Johnson St, Boston, MA 02215" +268343,27in 4K Gaming Monitor,1,389.99,10/19/19 17:28,"579 Lincoln St, Los Angeles, CA 90001" +268344,USB-C Charging Cable,1,11.95,10/01/19 14:02,"25 2nd St, San Francisco, CA 94016" +268345,USB-C Charging Cable,1,11.95,10/07/19 09:17,"120 Park St, San Francisco, CA 94016" +268346,USB-C Charging Cable,1,11.95,10/09/19 19:58,"443 Washington St, Portland, ME 04101" +268347,AA Batteries (4-pack),2,3.84,10/29/19 20:16,"845 Washington St, New York City, NY 10001" +268348,AAA Batteries (4-pack),3,2.99,10/02/19 12:43,"937 Dogwood St, Los Angeles, CA 90001" +268349,Lightning Charging Cable,1,14.95,10/05/19 13:03,"339 Wilson St, San Francisco, CA 94016" +268350,AA Batteries (4-pack),1,3.84,10/01/19 20:36,"501 Washington St, San Francisco, CA 94016" +268351,Lightning Charging Cable,1,14.95,10/28/19 21:14,"304 Sunset St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +268352,USB-C Charging Cable,1,11.95,10/28/19 15:38,"572 Maple St, San Francisco, CA 94016" +268353,Lightning Charging Cable,1,14.95,10/26/19 14:26,"715 South St, Atlanta, GA 30301" +268354,iPhone,1,700,10/21/19 12:02,"683 Willow St, Portland, OR 97035" +268355,27in FHD Monitor,1,149.99,10/13/19 19:18,"471 Highland St, San Francisco, CA 94016" +268356,Wired Headphones,1,11.99,10/08/19 19:25,"726 12th St, Seattle, WA 98101" +268357,Apple Airpods Headphones,1,150,10/01/19 23:39,"108 Main St, San Francisco, CA 94016" +268358,Apple Airpods Headphones,1,150,10/04/19 14:36,"765 Cherry St, Los Angeles, CA 90001" +268359,Apple Airpods Headphones,1,150,10/12/19 10:56,"487 Church St, Los Angeles, CA 90001" +268360,AAA Batteries (4-pack),1,2.99,10/30/19 15:05,"419 Hickory St, San Francisco, CA 94016" +268361,AA Batteries (4-pack),2,3.84,10/04/19 19:09,"946 Park St, Seattle, WA 98101" +268362,AAA Batteries (4-pack),3,2.99,10/14/19 18:37,"280 10th St, Portland, OR 97035" +268363,Bose SoundSport Headphones,1,99.99,10/06/19 00:16,"465 Spruce St, Austin, TX 73301" +268363,Bose SoundSport Headphones,1,99.99,10/06/19 00:16,"465 Spruce St, Austin, TX 73301" +268364,Wired Headphones,1,11.99,10/28/19 08:29,"26 Cedar St, New York City, NY 10001" +268365,Wired Headphones,1,11.99,10/02/19 07:11,"308 10th St, Portland, OR 97035" +268366,AA Batteries (4-pack),3,3.84,10/18/19 18:28,"16 Elm St, Dallas, TX 75001" +268367,Apple Airpods Headphones,1,150,10/05/19 19:45,"696 Washington St, Boston, MA 02215" +268368,USB-C Charging Cable,1,11.95,10/28/19 21:32,"314 Forest St, Dallas, TX 75001" +268369,Apple Airpods Headphones,1,150,10/12/19 17:30,"82 Dogwood St, New York City, NY 10001" +268370,Bose SoundSport Headphones,1,99.99,10/12/19 10:45,"230 Meadow St, Los Angeles, CA 90001" +,,,,, +268371,Bose SoundSport Headphones,1,99.99,10/11/19 10:42,"463 Lakeview St, Boston, MA 02215" +268372,Bose SoundSport Headphones,1,99.99,10/03/19 00:41,"570 Cherry St, Atlanta, GA 30301" +268373,Wired Headphones,1,11.99,10/30/19 16:39,"64 8th St, San Francisco, CA 94016" +268374,AA Batteries (4-pack),3,3.84,10/15/19 23:56,"491 2nd St, San Francisco, CA 94016" +268375,iPhone,1,700,10/03/19 14:27,"837 5th St, San Francisco, CA 94016" +268375,Wired Headphones,1,11.99,10/03/19 14:27,"837 5th St, San Francisco, CA 94016" +268376,USB-C Charging Cable,1,11.95,10/24/19 16:50,"931 Lakeview St, San Francisco, CA 94016" +268377,ThinkPad Laptop,1,999.99,10/28/19 11:40,"808 6th St, Los Angeles, CA 90001" +268378,27in FHD Monitor,1,149.99,10/19/19 17:23,"971 Lincoln St, Dallas, TX 75001" +268379,AA Batteries (4-pack),2,3.84,10/11/19 15:59,"191 Chestnut St, New York City, NY 10001" +268380,iPhone,1,700,10/24/19 13:16,"330 Main St, San Francisco, CA 94016" +268381,AAA Batteries (4-pack),1,2.99,10/24/19 21:26,"372 4th St, Austin, TX 73301" +268382,AA Batteries (4-pack),1,3.84,10/07/19 13:34,"702 Cedar St, San Francisco, CA 94016" +268383,USB-C Charging Cable,2,11.95,10/09/19 20:05,"33 Lake St, Los Angeles, CA 90001" +268384,Apple Airpods Headphones,1,150,10/20/19 13:05,"804 10th St, Dallas, TX 75001" +268385,27in FHD Monitor,1,149.99,10/31/19 11:56,"667 11th St, Dallas, TX 75001" +268386,Bose SoundSport Headphones,1,99.99,10/10/19 14:33,"881 Main St, Boston, MA 02215" +268387,34in Ultrawide Monitor,1,379.99,10/20/19 00:31,"187 Maple St, Los Angeles, CA 90001" +268388,Apple Airpods Headphones,1,150,10/26/19 23:04,"154 Madison St, San Francisco, CA 94016" +268389,20in Monitor,1,109.99,10/10/19 10:29,"430 Elm St, Atlanta, GA 30301" +268390,Lightning Charging Cable,1,14.95,10/12/19 04:17,"967 Jackson St, Seattle, WA 98101" +268391,27in FHD Monitor,1,149.99,10/29/19 10:53,"483 5th St, Los Angeles, CA 90001" +268392,AAA Batteries (4-pack),2,2.99,10/21/19 22:46,"446 Lakeview St, San Francisco, CA 94016" +268393,AA Batteries (4-pack),1,3.84,10/01/19 21:07,"819 Wilson St, Boston, MA 02215" +268394,iPhone,1,700,10/30/19 21:00,"732 Jackson St, Los Angeles, CA 90001" +268394,Lightning Charging Cable,3,14.95,10/30/19 21:00,"732 Jackson St, Los Angeles, CA 90001" +268395,Google Phone,1,600,10/03/19 13:41,"948 Pine St, Los Angeles, CA 90001" +268396,Macbook Pro Laptop,1,1700,10/30/19 18:49,"360 Jackson St, New York City, NY 10001" +268397,iPhone,1,700,10/11/19 01:05,"572 6th St, Los Angeles, CA 90001" +268398,AA Batteries (4-pack),1,3.84,10/17/19 15:29,"152 Highland St, Los Angeles, CA 90001" +268399,Bose SoundSport Headphones,1,99.99,10/09/19 10:31,"517 Spruce St, Boston, MA 02215" +268400,27in 4K Gaming Monitor,1,389.99,10/03/19 21:36,"203 Park St, San Francisco, CA 94016" +268401,Apple Airpods Headphones,1,150,10/29/19 18:40,"900 South St, Boston, MA 02215" +268402,Lightning Charging Cable,1,14.95,10/06/19 21:16,"758 4th St, Boston, MA 02215" +268403,Bose SoundSport Headphones,1,99.99,10/06/19 21:41,"127 Cedar St, Seattle, WA 98101" +268404,AAA Batteries (4-pack),2,2.99,10/11/19 00:35,"679 10th St, Portland, ME 04101" +268405,ThinkPad Laptop,1,999.99,10/03/19 19:56,"549 Cherry St, Boston, MA 02215" +268406,Flatscreen TV,1,300,10/22/19 09:15,"965 10th St, Boston, MA 02215" +268407,AA Batteries (4-pack),2,3.84,10/17/19 11:50,"674 Hill St, San Francisco, CA 94016" +268407,Google Phone,1,600,10/17/19 11:50,"674 Hill St, San Francisco, CA 94016" +268408,27in FHD Monitor,1,149.99,10/31/19 20:39,"564 Church St, Los Angeles, CA 90001" +268409,AA Batteries (4-pack),1,3.84,10/09/19 11:25,"14 Center St, Los Angeles, CA 90001" +268410,USB-C Charging Cable,2,11.95,10/26/19 23:10,"257 Hickory St, Los Angeles, CA 90001" +268411,Lightning Charging Cable,1,14.95,10/18/19 16:13,"894 Chestnut St, Dallas, TX 75001" +268412,AA Batteries (4-pack),2,3.84,10/11/19 15:52,"20 Center St, San Francisco, CA 94016" +268413,Wired Headphones,1,11.99,10/13/19 22:21,"693 West St, San Francisco, CA 94016" +268414,AAA Batteries (4-pack),1,2.99,10/25/19 16:56,"235 10th St, San Francisco, CA 94016" +268415,20in Monitor,1,109.99,10/22/19 22:48,"254 9th St, Boston, MA 02215" +268416,Google Phone,1,600,10/23/19 12:44,"283 Pine St, Dallas, TX 75001" +268417,34in Ultrawide Monitor,1,379.99,10/11/19 20:22,"745 River St, San Francisco, CA 94016" +268418,Flatscreen TV,1,300,10/10/19 23:52,"323 Main St, San Francisco, CA 94016" +268419,AAA Batteries (4-pack),1,2.99,10/23/19 17:20,"45 11th St, Los Angeles, CA 90001" +268420,27in 4K Gaming Monitor,1,389.99,10/13/19 15:57,"548 5th St, Seattle, WA 98101" +268421,AA Batteries (4-pack),1,3.84,10/30/19 20:09,"153 Spruce St, Atlanta, GA 30301" +268422,20in Monitor,1,109.99,10/06/19 16:00,"98 Jefferson St, San Francisco, CA 94016" +268423,AA Batteries (4-pack),1,3.84,10/22/19 19:46,"566 4th St, Portland, ME 04101" +268424,AA Batteries (4-pack),1,3.84,10/16/19 15:05,"722 Cherry St, Seattle, WA 98101" +268425,Apple Airpods Headphones,1,150,10/30/19 21:48,"612 2nd St, Austin, TX 73301" +268426,AAA Batteries (4-pack),1,2.99,10/19/19 19:14,"461 Highland St, Seattle, WA 98101" +268427,AA Batteries (4-pack),2,3.84,10/17/19 20:12,"119 Walnut St, Los Angeles, CA 90001" +268428,AAA Batteries (4-pack),1,2.99,10/03/19 16:38,"228 7th St, Austin, TX 73301" +268429,Wired Headphones,1,11.99,10/02/19 18:37,"779 Sunset St, Seattle, WA 98101" +268430,iPhone,1,700,10/04/19 11:36,"401 Madison St, New York City, NY 10001" +268431,USB-C Charging Cable,1,11.95,10/01/19 11:01,"377 12th St, San Francisco, CA 94016" +268432,Apple Airpods Headphones,1,150,10/13/19 16:48,"471 7th St, New York City, NY 10001" +268433,Lightning Charging Cable,1,14.95,10/15/19 12:41,"919 North St, Austin, TX 73301" +268434,AA Batteries (4-pack),1,3.84,10/30/19 09:32,"897 Jefferson St, Seattle, WA 98101" +268435,Wired Headphones,1,11.99,10/09/19 11:22,"266 13th St, New York City, NY 10001" +268436,Wired Headphones,1,11.99,10/31/19 20:17,"830 Church St, Seattle, WA 98101" +268437,AA Batteries (4-pack),1,3.84,10/27/19 13:25,"104 Meadow St, San Francisco, CA 94016" +268438,Bose SoundSport Headphones,2,99.99,10/20/19 13:54,"801 Jackson St, San Francisco, CA 94016" +268439,27in 4K Gaming Monitor,1,389.99,10/12/19 12:39,"990 South St, Austin, TX 73301" +268440,34in Ultrawide Monitor,1,379.99,10/27/19 14:07,"119 Jefferson St, San Francisco, CA 94016" +268441,34in Ultrawide Monitor,1,379.99,10/22/19 23:32,"973 Dogwood St, Austin, TX 73301" +268442,Wired Headphones,1,11.99,10/02/19 13:41,"635 6th St, Los Angeles, CA 90001" +268443,AA Batteries (4-pack),1,3.84,10/02/19 21:24,"627 13th St, New York City, NY 10001" +268444,Bose SoundSport Headphones,1,99.99,10/19/19 19:28,"271 Church St, San Francisco, CA 94016" +268445,Flatscreen TV,1,300,10/21/19 12:27,"786 Forest St, San Francisco, CA 94016" +268446,Vareebadd Phone,1,400,10/05/19 13:42,"328 2nd St, San Francisco, CA 94016" +268447,AAA Batteries (4-pack),1,2.99,10/02/19 12:18,"748 9th St, Los Angeles, CA 90001" +268448,Google Phone,1,600,10/11/19 07:31,"863 Washington St, Seattle, WA 98101" +268449,27in FHD Monitor,1,149.99,10/23/19 14:50,"69 Dogwood St, Los Angeles, CA 90001" +268450,Bose SoundSport Headphones,1,99.99,10/12/19 18:36,"616 South St, New York City, NY 10001" +268451,Google Phone,1,600,10/10/19 21:03,"956 North St, San Francisco, CA 94016" +268452,AAA Batteries (4-pack),1,2.99,10/26/19 22:08,"500 South St, Los Angeles, CA 90001" +268453,34in Ultrawide Monitor,1,379.99,10/26/19 12:40,"522 10th St, Atlanta, GA 30301" +268454,Lightning Charging Cable,1,14.95,10/08/19 07:33,"440 Sunset St, Portland, OR 97035" +268455,ThinkPad Laptop,1,999.99,10/29/19 19:48,"351 6th St, New York City, NY 10001" +268456,27in FHD Monitor,1,149.99,10/20/19 00:49,"376 Highland St, San Francisco, CA 94016" +268457,Lightning Charging Cable,1,14.95,10/06/19 09:15,"579 9th St, San Francisco, CA 94016" +268458,AA Batteries (4-pack),1,3.84,10/15/19 21:52,"30 Maple St, Los Angeles, CA 90001" +268459,iPhone,1,700,10/25/19 14:24,"50 Pine St, Boston, MA 02215" +268460,AA Batteries (4-pack),1,3.84,10/12/19 08:39,"613 Elm St, San Francisco, CA 94016" +268461,Bose SoundSport Headphones,1,99.99,10/14/19 12:49,"330 Lake St, San Francisco, CA 94016" +268462,ThinkPad Laptop,1,999.99,10/05/19 19:47,"435 7th St, Dallas, TX 75001" +268463,Wired Headphones,2,11.99,10/17/19 23:45,"844 Willow St, Dallas, TX 75001" +268464,USB-C Charging Cable,1,11.95,10/15/19 20:02,"433 Wilson St, Atlanta, GA 30301" +268465,Lightning Charging Cable,1,14.95,10/29/19 23:45,"711 Jefferson St, Los Angeles, CA 90001" +268466,AA Batteries (4-pack),1,3.84,10/26/19 14:49,"556 Ridge St, Los Angeles, CA 90001" +268467,USB-C Charging Cable,1,11.95,10/01/19 16:33,"642 13th St, San Francisco, CA 94016" +268468,Lightning Charging Cable,1,14.95,10/31/19 22:01,"818 Forest St, Austin, TX 73301" +268469,Lightning Charging Cable,4,14.95,10/30/19 14:01,"898 Lincoln St, San Francisco, CA 94016" +268470,LG Dryer,1,600.0,10/23/19 17:52,"836 Chestnut St, San Francisco, CA 94016" +268471,Bose SoundSport Headphones,1,99.99,10/11/19 21:24,"481 Wilson St, Boston, MA 02215" +268472,34in Ultrawide Monitor,1,379.99,10/15/19 20:46,"577 Chestnut St, Los Angeles, CA 90001" +268473,Wired Headphones,1,11.99,10/14/19 09:13,"725 Jackson St, Boston, MA 02215" +268474,27in 4K Gaming Monitor,1,389.99,10/05/19 18:42,"644 Highland St, San Francisco, CA 94016" +268475,Macbook Pro Laptop,1,1700,10/11/19 00:07,"361 Forest St, New York City, NY 10001" +268476,USB-C Charging Cable,2,11.95,10/31/19 18:16,"234 Lake St, San Francisco, CA 94016" +268477,34in Ultrawide Monitor,1,379.99,10/25/19 11:53,"170 14th St, New York City, NY 10001" +268478,iPhone,1,700,10/06/19 11:50,"818 Johnson St, New York City, NY 10001" +268479,ThinkPad Laptop,1,999.99,10/11/19 11:23,"854 11th St, Los Angeles, CA 90001" +268480,Lightning Charging Cable,1,14.95,10/13/19 13:19,"390 11th St, Los Angeles, CA 90001" +268481,LG Washing Machine,1,600.0,10/23/19 14:48,"896 14th St, Dallas, TX 75001" +268482,ThinkPad Laptop,1,999.99,10/09/19 10:55,"835 12th St, Seattle, WA 98101" +268483,Wired Headphones,1,11.99,10/16/19 10:20,"972 9th St, San Francisco, CA 94016" +268484,Bose SoundSport Headphones,1,99.99,10/19/19 17:45,"694 7th St, Dallas, TX 75001" +268485,27in FHD Monitor,1,149.99,10/25/19 22:33,"470 Meadow St, Atlanta, GA 30301" +268485,Flatscreen TV,1,300,10/25/19 22:33,"470 Meadow St, Atlanta, GA 30301" +268486,Lightning Charging Cable,1,14.95,10/15/19 14:48,"251 North St, New York City, NY 10001" +268487,iPhone,1,700,10/05/19 09:35,"444 9th St, San Francisco, CA 94016" +268488,AAA Batteries (4-pack),1,2.99,10/10/19 14:15,"911 North St, Los Angeles, CA 90001" +268489,Lightning Charging Cable,1,14.95,10/03/19 17:36,"678 Church St, New York City, NY 10001" +268490,Lightning Charging Cable,1,14.95,10/20/19 09:01,"790 Hickory St, Atlanta, GA 30301" +268491,AAA Batteries (4-pack),1,2.99,10/18/19 23:02,"701 Madison St, Atlanta, GA 30301" +268492,AAA Batteries (4-pack),8,2.99,10/27/19 16:12,"270 5th St, San Francisco, CA 94016" +268493,AA Batteries (4-pack),1,3.84,10/31/19 17:34,"940 West St, Portland, OR 97035" +268494,20in Monitor,1,109.99,10/06/19 15:49,"148 Lakeview St, Dallas, TX 75001" +268495,Apple Airpods Headphones,1,150,10/01/19 12:22,"700 Maple St, Dallas, TX 75001" +268496,Vareebadd Phone,1,400,10/06/19 18:35,"804 West St, Austin, TX 73301" +268497,USB-C Charging Cable,1,11.95,10/09/19 08:50,"583 Center St, Los Angeles, CA 90001" +,,,,, +268498,Bose SoundSport Headphones,1,99.99,10/31/19 18:47,"483 Jefferson St, Boston, MA 02215" +268499,Apple Airpods Headphones,1,150,10/23/19 19:00,"75 Wilson St, Los Angeles, CA 90001" +268500,Apple Airpods Headphones,1,150,10/11/19 10:49,"875 13th St, New York City, NY 10001" +268501,Wired Headphones,1,11.99,10/09/19 09:44,"514 River St, Los Angeles, CA 90001" +268502,iPhone,1,700,10/07/19 16:42,"527 Highland St, San Francisco, CA 94016" +268502,Apple Airpods Headphones,1,150,10/07/19 16:42,"527 Highland St, San Francisco, CA 94016" +268503,AAA Batteries (4-pack),2,2.99,10/15/19 17:52,"185 1st St, Los Angeles, CA 90001" +268504,Lightning Charging Cable,1,14.95,10/25/19 18:38,"47 South St, Seattle, WA 98101" +268505,Wired Headphones,1,11.99,10/07/19 20:48,"833 5th St, New York City, NY 10001" +268506,USB-C Charging Cable,1,11.95,10/02/19 22:15,"993 4th St, San Francisco, CA 94016" +268507,AAA Batteries (4-pack),1,2.99,10/31/19 18:34,"780 Lakeview St, Los Angeles, CA 90001" +268508,Apple Airpods Headphones,1,150,10/11/19 19:46,"102 Johnson St, Los Angeles, CA 90001" +268509,Wired Headphones,1,11.99,10/07/19 18:03,"38 8th St, Los Angeles, CA 90001" +268510,Wired Headphones,1,11.99,10/02/19 12:10,"327 Cedar St, Seattle, WA 98101" +268511,Wired Headphones,1,11.99,10/16/19 12:48,"789 Jefferson St, New York City, NY 10001" +268512,Lightning Charging Cable,1,14.95,10/03/19 18:19,"842 Hill St, New York City, NY 10001" +268513,Flatscreen TV,1,300,10/21/19 17:33,"962 Cherry St, Boston, MA 02215" +268514,AA Batteries (4-pack),2,3.84,10/21/19 13:56,"461 7th St, Los Angeles, CA 90001" +268515,Lightning Charging Cable,1,14.95,10/28/19 22:13,"17 Hickory St, San Francisco, CA 94016" +268516,ThinkPad Laptop,1,999.99,10/26/19 15:07,"731 Lake St, Boston, MA 02215" +268517,AAA Batteries (4-pack),2,2.99,10/12/19 19:08,"994 Elm St, Atlanta, GA 30301" +268518,USB-C Charging Cable,1,11.95,10/21/19 22:35,"544 Wilson St, Dallas, TX 75001" +268519,Lightning Charging Cable,1,14.95,10/03/19 12:16,"978 Walnut St, Los Angeles, CA 90001" +268520,Bose SoundSport Headphones,1,99.99,10/07/19 10:49,"384 Jefferson St, Dallas, TX 75001" +268521,Macbook Pro Laptop,1,1700,10/13/19 22:47,"141 Meadow St, Dallas, TX 75001" +268522,USB-C Charging Cable,2,11.95,10/05/19 11:55,"887 Madison St, San Francisco, CA 94016" +268523,Google Phone,1,600,10/22/19 15:53,"865 Lake St, San Francisco, CA 94016" +268524,USB-C Charging Cable,2,11.95,10/31/19 05:46,"525 Chestnut St, San Francisco, CA 94016" +268525,Wired Headphones,1,11.99,10/15/19 15:50,"269 Ridge St, Portland, OR 97035" +268526,AA Batteries (4-pack),1,3.84,10/15/19 12:01,"4 River St, Los Angeles, CA 90001" +268527,34in Ultrawide Monitor,1,379.99,10/11/19 19:12,"807 Ridge St, San Francisco, CA 94016" +268528,AA Batteries (4-pack),2,3.84,10/07/19 11:53,"843 8th St, Los Angeles, CA 90001" +268529,20in Monitor,1,109.99,10/02/19 19:15,"404 Madison St, Atlanta, GA 30301" +268530,AAA Batteries (4-pack),1,2.99,10/26/19 11:43,"611 13th St, Portland, OR 97035" +268531,Lightning Charging Cable,1,14.95,10/18/19 16:40,"156 4th St, Austin, TX 73301" +268532,iPhone,1,700,10/25/19 19:31,"764 8th St, Los Angeles, CA 90001" +268532,Apple Airpods Headphones,1,150,10/25/19 19:31,"764 8th St, Los Angeles, CA 90001" +268533,iPhone,1,700,10/15/19 19:55,"509 Hill St, Los Angeles, CA 90001" +268533,Lightning Charging Cable,1,14.95,10/15/19 19:55,"509 Hill St, Los Angeles, CA 90001" +268534,AA Batteries (4-pack),2,3.84,10/26/19 10:12,"625 8th St, New York City, NY 10001" +268535,ThinkPad Laptop,1,999.99,10/19/19 15:06,"994 Lakeview St, Atlanta, GA 30301" +268536,AA Batteries (4-pack),1,3.84,10/22/19 17:14,"449 Lincoln St, New York City, NY 10001" +268537,USB-C Charging Cable,1,11.95,10/15/19 15:51,"894 Highland St, Dallas, TX 75001" +268538,Google Phone,1,600,10/05/19 15:27,"290 7th St, Austin, TX 73301" +268539,Wired Headphones,1,11.99,10/17/19 09:20,"202 Forest St, Austin, TX 73301" +268540,Wired Headphones,1,11.99,10/06/19 08:59,"589 14th St, San Francisco, CA 94016" +268541,AAA Batteries (4-pack),2,2.99,10/23/19 06:03,"875 Hickory St, Austin, TX 73301" +268542,Apple Airpods Headphones,1,150,10/18/19 01:07,"52 Elm St, Los Angeles, CA 90001" +268543,Wired Headphones,1,11.99,10/09/19 18:49,"204 5th St, Los Angeles, CA 90001" +268544,AA Batteries (4-pack),1,3.84,10/12/19 21:32,"294 Center St, San Francisco, CA 94016" +268545,Lightning Charging Cable,1,14.95,10/04/19 11:22,"159 River St, Seattle, WA 98101" +268546,Flatscreen TV,1,300,10/13/19 09:26,"664 Park St, Los Angeles, CA 90001" +268547,ThinkPad Laptop,1,999.99,10/31/19 11:43,"589 Lake St, Boston, MA 02215" +268548,Lightning Charging Cable,1,14.95,10/27/19 18:47,"611 7th St, Portland, ME 04101" +268549,Lightning Charging Cable,1,14.95,10/26/19 11:12,"586 Church St, San Francisco, CA 94016" +268550,Wired Headphones,2,11.99,10/23/19 06:24,"135 Hill St, Boston, MA 02215" +268551,AA Batteries (4-pack),1,3.84,10/13/19 19:19,"128 8th St, San Francisco, CA 94016" +268552,Bose SoundSport Headphones,1,99.99,10/16/19 17:21,"930 5th St, Los Angeles, CA 90001" +268553,Lightning Charging Cable,1,14.95,10/15/19 18:17,"113 Chestnut St, San Francisco, CA 94016" +268554,Google Phone,1,600,10/30/19 16:21,"372 Highland St, Seattle, WA 98101" +268554,USB-C Charging Cable,1,11.95,10/30/19 16:21,"372 Highland St, Seattle, WA 98101" +268555,USB-C Charging Cable,1,11.95,10/08/19 19:48,"156 Jackson St, Seattle, WA 98101" +268556,USB-C Charging Cable,1,11.95,10/16/19 16:08,"438 Highland St, Portland, OR 97035" +268557,27in FHD Monitor,1,149.99,10/12/19 19:31,"337 Johnson St, New York City, NY 10001" +268558,USB-C Charging Cable,1,11.95,10/17/19 19:53,"491 Main St, Seattle, WA 98101" +268559,USB-C Charging Cable,1,11.95,10/08/19 11:11,"330 11th St, Dallas, TX 75001" +268560,Google Phone,1,600,10/30/19 21:17,"302 Sunset St, San Francisco, CA 94016" +268560,Wired Headphones,1,11.99,10/30/19 21:17,"302 Sunset St, San Francisco, CA 94016" +268561,27in 4K Gaming Monitor,1,389.99,10/17/19 15:05,"806 Sunset St, Dallas, TX 75001" +268562,34in Ultrawide Monitor,1,379.99,10/12/19 13:57,"143 Highland St, Los Angeles, CA 90001" +268563,Vareebadd Phone,1,400,10/27/19 20:04,"183 6th St, San Francisco, CA 94016" +268564,Lightning Charging Cable,1,14.95,10/10/19 12:21,"130 2nd St, New York City, NY 10001" +268565,Bose SoundSport Headphones,1,99.99,10/22/19 20:07,"696 5th St, Seattle, WA 98101" +268566,Lightning Charging Cable,1,14.95,10/02/19 20:26,"7 Forest St, Boston, MA 02215" +268567,AA Batteries (4-pack),2,3.84,10/09/19 19:16,"703 Washington St, San Francisco, CA 94016" +268568,AAA Batteries (4-pack),3,2.99,10/10/19 22:12,"921 11th St, San Francisco, CA 94016" +268569,AAA Batteries (4-pack),1,2.99,10/01/19 11:37,"324 Center St, San Francisco, CA 94016" +268570,AA Batteries (4-pack),1,3.84,10/27/19 09:45,"614 North St, Los Angeles, CA 90001" +268571,Bose SoundSport Headphones,1,99.99,10/12/19 17:09,"219 6th St, Dallas, TX 75001" +268572,Wired Headphones,1,11.99,10/27/19 11:51,"713 Forest St, San Francisco, CA 94016" +268573,Bose SoundSport Headphones,1,99.99,10/27/19 20:54,"582 6th St, Seattle, WA 98101" +268574,Lightning Charging Cable,1,14.95,10/12/19 12:40,"201 Pine St, Los Angeles, CA 90001" +268575,Macbook Pro Laptop,1,1700,10/05/19 11:57,"687 1st St, Los Angeles, CA 90001" +268576,iPhone,1,700,10/14/19 19:05,"953 Lincoln St, Atlanta, GA 30301" +268576,Lightning Charging Cable,1,14.95,10/14/19 19:05,"953 Lincoln St, Atlanta, GA 30301" +268577,Lightning Charging Cable,1,14.95,10/31/19 22:16,"642 South St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +268578,Macbook Pro Laptop,1,1700,10/20/19 10:00,"604 Meadow St, Dallas, TX 75001" +268579,USB-C Charging Cable,1,11.95,10/19/19 10:32,"420 4th St, Seattle, WA 98101" +268580,Bose SoundSport Headphones,1,99.99,10/17/19 19:17,"713 Lake St, New York City, NY 10001" +268581,USB-C Charging Cable,4,11.95,10/24/19 18:15,"979 Cherry St, New York City, NY 10001" +268582,Apple Airpods Headphones,1,150,10/18/19 08:46,"206 Lincoln St, Los Angeles, CA 90001" +268583,Bose SoundSport Headphones,1,99.99,10/05/19 12:08,"861 4th St, Boston, MA 02215" +268584,Macbook Pro Laptop,1,1700,10/25/19 20:56,"471 Lincoln St, Boston, MA 02215" +268585,USB-C Charging Cable,1,11.95,10/16/19 09:44,"46 Lake St, Seattle, WA 98101" +268586,Apple Airpods Headphones,1,150,10/24/19 09:20,"136 Ridge St, San Francisco, CA 94016" +268587,27in FHD Monitor,1,149.99,10/07/19 22:06,"335 7th St, San Francisco, CA 94016" +268588,USB-C Charging Cable,1,11.95,10/31/19 13:32,"797 Jefferson St, Portland, OR 97035" +268589,AA Batteries (4-pack),1,3.84,10/02/19 12:08,"384 Elm St, Los Angeles, CA 90001" +268590,USB-C Charging Cable,1,11.95,10/06/19 21:49,"761 Jackson St, New York City, NY 10001" +268591,27in FHD Monitor,1,149.99,10/02/19 16:06,"529 Ridge St, New York City, NY 10001" +268592,Flatscreen TV,1,300,10/13/19 02:48,"45 South St, Los Angeles, CA 90001" +268592,ThinkPad Laptop,1,999.99,10/13/19 02:48,"45 South St, Los Angeles, CA 90001" +268593,27in 4K Gaming Monitor,1,389.99,10/29/19 11:31,"771 Lincoln St, Austin, TX 73301" +268594,20in Monitor,1,109.99,10/26/19 17:58,"174 Jackson St, Atlanta, GA 30301" +268595,Flatscreen TV,1,300,10/28/19 18:25,"830 2nd St, San Francisco, CA 94016" +268595,AA Batteries (4-pack),1,3.84,10/28/19 18:25,"830 2nd St, San Francisco, CA 94016" +268596,AAA Batteries (4-pack),3,2.99,10/17/19 22:25,"301 Willow St, Portland, ME 04101" +268597,Wired Headphones,1,11.99,10/10/19 23:04,"670 Park St, Seattle, WA 98101" +268598,USB-C Charging Cable,1,11.95,10/27/19 02:41,"365 Lakeview St, Austin, TX 73301" +268599,Wired Headphones,1,11.99,10/20/19 11:45,"415 Pine St, Seattle, WA 98101" +268600,AA Batteries (4-pack),1,3.84,10/23/19 15:22,"973 12th St, Dallas, TX 75001" +268600,Wired Headphones,2,11.99,10/23/19 15:22,"973 12th St, Dallas, TX 75001" +268601,AA Batteries (4-pack),1,3.84,10/08/19 21:38,"14 Chestnut St, Boston, MA 02215" +268602,iPhone,1,700,10/10/19 09:39,"932 1st St, San Francisco, CA 94016" +268602,Wired Headphones,1,11.99,10/10/19 09:39,"932 1st St, San Francisco, CA 94016" +268603,Lightning Charging Cable,1,14.95,10/01/19 11:31,"79 Wilson St, Austin, TX 73301" +268604,Apple Airpods Headphones,1,150,10/25/19 18:00,"762 2nd St, Boston, MA 02215" +268605,USB-C Charging Cable,1,11.95,10/25/19 19:03,"523 9th St, Boston, MA 02215" +268606,USB-C Charging Cable,1,11.95,10/19/19 20:25,"164 Johnson St, Dallas, TX 75001" +268607,20in Monitor,1,109.99,10/31/19 18:26,"389 South St, Dallas, TX 75001" +268608,iPhone,1,700,10/20/19 16:03,"988 2nd St, Boston, MA 02215" +268608,Wired Headphones,1,11.99,10/20/19 16:03,"988 2nd St, Boston, MA 02215" +268609,34in Ultrawide Monitor,1,379.99,10/02/19 20:33,"331 West St, New York City, NY 10001" +268610,Lightning Charging Cable,1,14.95,10/02/19 20:42,"82 Park St, Seattle, WA 98101" +268611,USB-C Charging Cable,1,11.95,10/11/19 18:07,"259 West St, Atlanta, GA 30301" +268612,34in Ultrawide Monitor,1,379.99,10/12/19 00:22,"540 Meadow St, New York City, NY 10001" +268613,Vareebadd Phone,1,400,10/22/19 13:25,"645 Park St, Atlanta, GA 30301" +268614,Lightning Charging Cable,2,14.95,10/26/19 14:45,"419 Wilson St, Atlanta, GA 30301" +268615,20in Monitor,1,109.99,10/06/19 10:40,"542 Lincoln St, Austin, TX 73301" +268616,USB-C Charging Cable,1,11.95,10/18/19 20:17,"437 Willow St, Austin, TX 73301" +268617,20in Monitor,1,109.99,10/03/19 18:58,"754 Madison St, Los Angeles, CA 90001" +268618,Lightning Charging Cable,1,14.95,10/18/19 18:27,"208 River St, San Francisco, CA 94016" +268619,Apple Airpods Headphones,1,150,10/04/19 16:11,"63 Elm St, New York City, NY 10001" +268620,AA Batteries (4-pack),1,3.84,10/02/19 19:28,"362 Walnut St, Boston, MA 02215" +268621,AAA Batteries (4-pack),2,2.99,10/03/19 13:05,"47 Jefferson St, Seattle, WA 98101" +268622,USB-C Charging Cable,1,11.95,10/25/19 21:47,"475 Dogwood St, San Francisco, CA 94016" +268623,AAA Batteries (4-pack),1,2.99,10/25/19 22:43,"837 Cherry St, New York City, NY 10001" +268624,Macbook Pro Laptop,1,1700,10/18/19 18:32,"887 Hickory St, New York City, NY 10001" +268625,Wired Headphones,1,11.99,10/22/19 20:03,"884 Park St, Atlanta, GA 30301" +268626,Macbook Pro Laptop,1,1700,10/18/19 07:24,"639 Jefferson St, Dallas, TX 75001" +268627,USB-C Charging Cable,1,11.95,10/10/19 15:24,"741 Willow St, San Francisco, CA 94016" +268628,Flatscreen TV,1,300,10/12/19 09:16,"125 Walnut St, Los Angeles, CA 90001" +268629,USB-C Charging Cable,1,11.95,10/27/19 12:24,"750 Jefferson St, San Francisco, CA 94016" +268630,Lightning Charging Cable,1,14.95,10/15/19 08:49,"517 Chestnut St, San Francisco, CA 94016" +268631,Wired Headphones,1,11.99,10/06/19 11:58,"156 14th St, Austin, TX 73301" +268632,Lightning Charging Cable,1,14.95,10/22/19 11:00,"587 Meadow St, Austin, TX 73301" +268633,ThinkPad Laptop,1,999.99,10/24/19 10:38,"703 7th St, Dallas, TX 75001" +268634,Bose SoundSport Headphones,1,99.99,10/14/19 21:54,"703 Ridge St, Los Angeles, CA 90001" +268635,Apple Airpods Headphones,1,150,10/04/19 02:28,"976 Dogwood St, Los Angeles, CA 90001" +268636,Wired Headphones,2,11.99,10/21/19 15:50,"150 Ridge St, Dallas, TX 75001" +268637,AA Batteries (4-pack),1,3.84,10/25/19 04:38,"764 Hill St, Seattle, WA 98101" +268637,iPhone,1,700,10/25/19 04:38,"764 Hill St, Seattle, WA 98101" +268638,Flatscreen TV,1,300,10/03/19 20:01,"806 Forest St, Portland, OR 97035" +268639,Lightning Charging Cable,2,14.95,10/13/19 17:41,"801 Madison St, San Francisco, CA 94016" +268640,Wired Headphones,1,11.99,10/20/19 10:34,"336 10th St, Los Angeles, CA 90001" +268641,Flatscreen TV,1,300,10/07/19 12:30,"726 Lincoln St, San Francisco, CA 94016" +268642,USB-C Charging Cable,1,11.95,10/17/19 22:37,"168 Hill St, San Francisco, CA 94016" +268643,AA Batteries (4-pack),1,3.84,10/12/19 19:48,"943 Madison St, San Francisco, CA 94016" +268644,AA Batteries (4-pack),1,3.84,10/18/19 22:50,"780 13th St, New York City, NY 10001" +268645,20in Monitor,1,109.99,10/20/19 15:26,"88 Ridge St, Dallas, TX 75001" +268646,AA Batteries (4-pack),1,3.84,10/18/19 19:04,"750 Center St, Los Angeles, CA 90001" +268647,USB-C Charging Cable,1,11.95,10/15/19 19:27,"670 4th St, San Francisco, CA 94016" +268648,27in 4K Gaming Monitor,1,389.99,10/05/19 18:13,"850 7th St, Atlanta, GA 30301" +268649,Apple Airpods Headphones,1,150,10/06/19 14:29,"372 River St, Atlanta, GA 30301" +268650,Google Phone,1,600,10/08/19 08:28,"612 Pine St, Austin, TX 73301" +268651,USB-C Charging Cable,1,11.95,10/17/19 19:48,"653 Jackson St, New York City, NY 10001" +268652,AAA Batteries (4-pack),3,2.99,10/17/19 18:21,"837 Lincoln St, Austin, TX 73301" +268653,AAA Batteries (4-pack),1,2.99,10/16/19 23:04,"77 2nd St, Los Angeles, CA 90001" +268654,Apple Airpods Headphones,1,150,10/26/19 15:07,"842 Ridge St, Portland, OR 97035" +268655,Apple Airpods Headphones,1,150,10/06/19 19:44,"16 4th St, New York City, NY 10001" +268656,Apple Airpods Headphones,1,150,10/05/19 12:35,"249 Dogwood St, New York City, NY 10001" +268657,34in Ultrawide Monitor,1,379.99,10/19/19 18:41,"349 Highland St, Los Angeles, CA 90001" +268658,AAA Batteries (4-pack),2,2.99,10/24/19 13:19,"881 8th St, New York City, NY 10001" +268659,Apple Airpods Headphones,1,150,10/24/19 13:07,"711 Highland St, San Francisco, CA 94016" +268660,Bose SoundSport Headphones,1,99.99,10/28/19 00:16,"513 4th St, San Francisco, CA 94016" +268661,USB-C Charging Cable,1,11.95,10/09/19 22:31,"140 Washington St, Seattle, WA 98101" +268661,LG Dryer,1,600.0,10/09/19 22:31,"140 Washington St, Seattle, WA 98101" +268662,USB-C Charging Cable,1,11.95,10/12/19 21:06,"764 Forest St, Dallas, TX 75001" +268663,34in Ultrawide Monitor,1,379.99,10/20/19 15:51,"649 Sunset St, Dallas, TX 75001" +268664,AAA Batteries (4-pack),1,2.99,10/27/19 12:07,"26 Wilson St, New York City, NY 10001" +268665,AAA Batteries (4-pack),2,2.99,10/22/19 22:02,"955 Madison St, San Francisco, CA 94016" +268666,AA Batteries (4-pack),2,3.84,10/02/19 20:50,"295 Spruce St, Boston, MA 02215" +268667,ThinkPad Laptop,1,999.99,10/24/19 11:14,"136 Main St, San Francisco, CA 94016" +268668,27in 4K Gaming Monitor,1,389.99,10/19/19 22:13,"868 13th St, Los Angeles, CA 90001" +268669,USB-C Charging Cable,1,11.95,10/18/19 14:24,"287 12th St, San Francisco, CA 94016" +268670,USB-C Charging Cable,1,11.95,10/27/19 08:07,"811 Lincoln St, Austin, TX 73301" +268671,AA Batteries (4-pack),1,3.84,10/25/19 11:25,"688 Lakeview St, New York City, NY 10001" +268672,iPhone,1,700,10/16/19 22:19,"786 Sunset St, Boston, MA 02215" +268673,Google Phone,1,600,10/16/19 11:12,"612 Johnson St, New York City, NY 10001" +268674,AAA Batteries (4-pack),4,2.99,10/21/19 16:59,"230 North St, Los Angeles, CA 90001" +268675,Lightning Charging Cable,1,14.95,10/21/19 14:23,"870 Pine St, San Francisco, CA 94016" +268676,Lightning Charging Cable,1,14.95,10/16/19 15:59,"573 South St, Boston, MA 02215" +268677,Vareebadd Phone,1,400,10/29/19 15:53,"685 Highland St, Dallas, TX 75001" +268677,Wired Headphones,1,11.99,10/29/19 15:53,"685 Highland St, Dallas, TX 75001" +268678,Wired Headphones,1,11.99,10/10/19 23:13,"674 Dogwood St, San Francisco, CA 94016" +268679,Bose SoundSport Headphones,1,99.99,10/30/19 19:20,"350 Church St, San Francisco, CA 94016" +268680,Wired Headphones,1,11.99,10/12/19 10:13,"205 Walnut St, Los Angeles, CA 90001" +268681,AA Batteries (4-pack),1,3.84,10/12/19 11:38,"659 Park St, San Francisco, CA 94016" +268682,Macbook Pro Laptop,1,1700,10/06/19 15:51,"582 Hill St, San Francisco, CA 94016" +268683,AA Batteries (4-pack),1,3.84,10/26/19 19:00,"415 South St, Seattle, WA 98101" +268684,Wired Headphones,1,11.99,10/19/19 10:16,"313 11th St, New York City, NY 10001" +268685,20in Monitor,1,109.99,10/04/19 20:10,"152 Lakeview St, Los Angeles, CA 90001" +268686,iPhone,1,700,10/31/19 11:42,"940 Forest St, San Francisco, CA 94016" +268686,Lightning Charging Cable,1,14.95,10/31/19 11:42,"940 Forest St, San Francisco, CA 94016" +268687,Apple Airpods Headphones,1,150,10/17/19 18:28,"836 Highland St, Portland, ME 04101" +268688,AAA Batteries (4-pack),1,2.99,10/13/19 08:14,"759 North St, Seattle, WA 98101" +268689,Apple Airpods Headphones,1,150,10/14/19 07:46,"777 Spruce St, San Francisco, CA 94016" +268690,AA Batteries (4-pack),2,3.84,10/17/19 11:13,"138 Jefferson St, Dallas, TX 75001" +268691,34in Ultrawide Monitor,1,379.99,10/17/19 16:13,"482 Washington St, San Francisco, CA 94016" +268692,USB-C Charging Cable,1,11.95,10/09/19 00:06,"441 Pine St, San Francisco, CA 94016" +268693,27in FHD Monitor,1,149.99,10/18/19 18:43,"121 Johnson St, Los Angeles, CA 90001" +268694,Wired Headphones,1,11.99,10/06/19 11:03,"774 Forest St, Atlanta, GA 30301" +268695,Lightning Charging Cable,1,14.95,10/12/19 14:51,"570 Walnut St, Dallas, TX 75001" +268696,27in 4K Gaming Monitor,1,389.99,10/01/19 11:39,"236 Ridge St, New York City, NY 10001" +268697,Wired Headphones,1,11.99,10/16/19 20:19,"85 9th St, Atlanta, GA 30301" +268698,27in FHD Monitor,1,149.99,10/28/19 05:29,"173 Highland St, San Francisco, CA 94016" +268699,ThinkPad Laptop,1,999.99,10/31/19 16:49,"575 13th St, New York City, NY 10001" +268700,AA Batteries (4-pack),1,3.84,10/17/19 17:58,"302 9th St, Atlanta, GA 30301" +268701,Apple Airpods Headphones,1,150,10/07/19 21:58,"329 Pine St, New York City, NY 10001" +268702,27in 4K Gaming Monitor,1,389.99,10/09/19 15:52,"795 Washington St, San Francisco, CA 94016" +268703,27in FHD Monitor,1,149.99,10/20/19 14:06,"442 Maple St, Boston, MA 02215" +268704,Lightning Charging Cable,1,14.95,10/17/19 09:44,"940 North St, Atlanta, GA 30301" +268705,USB-C Charging Cable,1,11.95,10/09/19 09:51,"263 Sunset St, Dallas, TX 75001" +268706,27in 4K Gaming Monitor,1,389.99,10/14/19 11:32,"482 Park St, Dallas, TX 75001" +268707,Wired Headphones,1,11.99,10/22/19 19:11,"50 10th St, Boston, MA 02215" +268708,27in 4K Gaming Monitor,1,389.99,10/13/19 17:07,"730 Cedar St, Los Angeles, CA 90001" +268709,Bose SoundSport Headphones,1,99.99,10/18/19 12:46,"249 Chestnut St, San Francisco, CA 94016" +268710,Apple Airpods Headphones,1,150,10/19/19 18:23,"996 Park St, Portland, OR 97035" +268711,Flatscreen TV,1,300,10/28/19 06:09,"206 Elm St, Dallas, TX 75001" +268712,Macbook Pro Laptop,1,1700,10/25/19 10:08,"107 Hill St, Boston, MA 02215" +268713,Apple Airpods Headphones,1,150,10/11/19 07:44,"590 Jackson St, San Francisco, CA 94016" +268714,USB-C Charging Cable,1,11.95,10/28/19 21:45,"6 Meadow St, San Francisco, CA 94016" +268715,Apple Airpods Headphones,1,150,10/16/19 15:00,"389 8th St, San Francisco, CA 94016" +268716,AA Batteries (4-pack),1,3.84,10/22/19 12:30,"795 Hill St, Boston, MA 02215" +268717,AA Batteries (4-pack),2,3.84,10/27/19 18:17,"881 Walnut St, Dallas, TX 75001" +268718,AA Batteries (4-pack),1,3.84,10/16/19 17:39,"815 10th St, Austin, TX 73301" +268719,AAA Batteries (4-pack),2,2.99,10/30/19 16:16,"176 Dogwood St, San Francisco, CA 94016" +268720,Wired Headphones,1,11.99,10/09/19 13:59,"378 Cedar St, Boston, MA 02215" +268721,USB-C Charging Cable,1,11.95,10/27/19 18:57,"663 Elm St, San Francisco, CA 94016" +268722,Bose SoundSport Headphones,1,99.99,10/11/19 20:48,"354 Forest St, New York City, NY 10001" +268723,Bose SoundSport Headphones,1,99.99,10/07/19 14:00,"79 Highland St, Seattle, WA 98101" +268724,27in FHD Monitor,1,149.99,10/06/19 18:14,"632 13th St, Dallas, TX 75001" +268725,20in Monitor,1,109.99,10/05/19 18:09,"946 Jackson St, Austin, TX 73301" +268725,Google Phone,1,600,10/05/19 18:09,"946 Jackson St, Austin, TX 73301" +268726,Wired Headphones,1,11.99,10/06/19 13:06,"556 Jackson St, New York City, NY 10001" +268727,AA Batteries (4-pack),3,3.84,10/12/19 18:01,"908 Meadow St, San Francisco, CA 94016" +268728,AA Batteries (4-pack),1,3.84,10/25/19 16:47,"701 5th St, Los Angeles, CA 90001" +268729,Lightning Charging Cable,1,14.95,10/08/19 11:41,"73 Lake St, Austin, TX 73301" +268730,AAA Batteries (4-pack),1,2.99,10/07/19 22:17,"760 Johnson St, San Francisco, CA 94016" +268731,USB-C Charging Cable,1,11.95,10/16/19 19:25,"934 West St, Boston, MA 02215" +268732,AAA Batteries (4-pack),1,2.99,10/19/19 12:44,"146 North St, Seattle, WA 98101" +268733,Lightning Charging Cable,1,14.95,10/23/19 20:58,"196 West St, New York City, NY 10001" +268734,USB-C Charging Cable,1,11.95,10/20/19 18:07,"980 River St, Los Angeles, CA 90001" +268735,Apple Airpods Headphones,1,150,10/11/19 20:49,"445 Willow St, Seattle, WA 98101" +268736,iPhone,1,700,10/08/19 19:45,"165 4th St, New York City, NY 10001" +268737,27in 4K Gaming Monitor,1,389.99,10/17/19 21:05,"925 14th St, Boston, MA 02215" +268738,AA Batteries (4-pack),1,3.84,10/15/19 19:54,"895 2nd St, Austin, TX 73301" +268739,Apple Airpods Headphones,1,150,10/12/19 13:27,"452 7th St, Los Angeles, CA 90001" +268740,iPhone,1,700,10/27/19 18:33,"378 Madison St, Dallas, TX 75001" +268741,AA Batteries (4-pack),2,3.84,10/27/19 11:07,"497 Ridge St, Los Angeles, CA 90001" +268742,Flatscreen TV,1,300,10/04/19 18:31,"445 Cedar St, Boston, MA 02215" +268743,Apple Airpods Headphones,1,150,10/03/19 00:48,"7 Lake St, Boston, MA 02215" +268744,AA Batteries (4-pack),1,3.84,10/12/19 20:31,"593 Willow St, Los Angeles, CA 90001" +268745,27in 4K Gaming Monitor,1,389.99,10/29/19 02:05,"269 Wilson St, New York City, NY 10001" +268746,Lightning Charging Cable,1,14.95,10/09/19 12:16,"61 Lincoln St, Dallas, TX 75001" +268747,Apple Airpods Headphones,1,150,10/29/19 21:24,"708 9th St, New York City, NY 10001" +268748,AAA Batteries (4-pack),2,2.99,10/01/19 12:36,"884 10th St, San Francisco, CA 94016" +268749,USB-C Charging Cable,1,11.95,10/14/19 17:43,"984 South St, Los Angeles, CA 90001" +268750,ThinkPad Laptop,1,999.99,10/11/19 19:58,"977 Lake St, Seattle, WA 98101" +268751,Flatscreen TV,1,300,10/26/19 09:20,"570 12th St, Portland, OR 97035" +268752,20in Monitor,1,109.99,10/04/19 14:02,"813 5th St, San Francisco, CA 94016" +268753,Bose SoundSport Headphones,1,99.99,10/24/19 22:02,"66 Dogwood St, Boston, MA 02215" +268754,Macbook Pro Laptop,1,1700,10/28/19 10:13,"657 Chestnut St, Austin, TX 73301" +268755,iPhone,1,700,10/24/19 12:04,"377 6th St, Atlanta, GA 30301" +268756,Apple Airpods Headphones,1,150,10/10/19 14:39,"674 Lakeview St, Atlanta, GA 30301" +268757,AA Batteries (4-pack),1,3.84,10/04/19 11:21,"121 Madison St, Dallas, TX 75001" +268758,Apple Airpods Headphones,1,150,10/27/19 08:27,"412 1st St, Austin, TX 73301" +268759,Vareebadd Phone,1,400,10/10/19 18:55,"865 Jefferson St, New York City, NY 10001" +268760,AAA Batteries (4-pack),1,2.99,10/19/19 20:42,"415 7th St, San Francisco, CA 94016" +268761,Lightning Charging Cable,1,14.95,10/01/19 18:47,"338 Jackson St, San Francisco, CA 94016" +268762,Flatscreen TV,1,300,10/03/19 19:08,"406 11th St, Dallas, TX 75001" +268763,Lightning Charging Cable,1,14.95,10/25/19 11:47,"173 Center St, San Francisco, CA 94016" +268764,Wired Headphones,2,11.99,10/11/19 18:14,"904 South St, Dallas, TX 75001" +268765,27in FHD Monitor,1,149.99,10/14/19 12:02,"808 Forest St, Los Angeles, CA 90001" +268766,34in Ultrawide Monitor,1,379.99,10/04/19 22:17,"416 10th St, Boston, MA 02215" +268767,AAA Batteries (4-pack),1,2.99,10/15/19 08:06,"226 Main St, Atlanta, GA 30301" +268768,iPhone,1,700,10/24/19 12:44,"587 Madison St, Los Angeles, CA 90001" +268769,AAA Batteries (4-pack),1,2.99,10/30/19 06:40,"830 1st St, Boston, MA 02215" +268770,Lightning Charging Cable,1,14.95,10/24/19 14:27,"954 Lincoln St, Dallas, TX 75001" +268771,AA Batteries (4-pack),1,3.84,10/27/19 05:57,"727 Lake St, Los Angeles, CA 90001" +268772,AA Batteries (4-pack),1,3.84,10/01/19 19:02,"974 Johnson St, Boston, MA 02215" +268773,USB-C Charging Cable,1,11.95,10/19/19 17:34,"508 River St, New York City, NY 10001" +268774,Wired Headphones,1,11.99,10/24/19 18:56,"587 Spruce St, Los Angeles, CA 90001" +268775,USB-C Charging Cable,1,11.95,10/30/19 08:18,"269 Adams St, Dallas, TX 75001" +268776,AAA Batteries (4-pack),1,2.99,10/01/19 12:47,"587 Park St, Dallas, TX 75001" +268777,Bose SoundSport Headphones,1,99.99,10/20/19 21:01,"675 13th St, San Francisco, CA 94016" +268778,Lightning Charging Cable,1,14.95,10/07/19 20:46,"772 West St, San Francisco, CA 94016" +268779,Google Phone,1,600,10/23/19 02:09,"174 14th St, Los Angeles, CA 90001" +268779,USB-C Charging Cable,2,11.95,10/23/19 02:09,"174 14th St, Los Angeles, CA 90001" +268780,20in Monitor,1,109.99,10/07/19 17:59,"401 Willow St, New York City, NY 10001" +268781,AA Batteries (4-pack),1,3.84,10/17/19 10:03,"472 Madison St, San Francisco, CA 94016" +268782,Wired Headphones,2,11.99,10/18/19 07:51,"358 Ridge St, Portland, OR 97035" +268783,AAA Batteries (4-pack),1,2.99,10/31/19 10:17,"586 Maple St, Seattle, WA 98101" +268784,USB-C Charging Cable,1,11.95,10/19/19 13:00,"327 Johnson St, San Francisco, CA 94016" +268785,AA Batteries (4-pack),1,3.84,10/07/19 11:28,"142 Lake St, Atlanta, GA 30301" +268786,Lightning Charging Cable,1,14.95,10/22/19 15:22,"581 Dogwood St, Los Angeles, CA 90001" +268787,USB-C Charging Cable,1,11.95,10/25/19 12:23,"368 Lincoln St, Los Angeles, CA 90001" +268788,iPhone,1,700,10/27/19 03:09,"129 Johnson St, San Francisco, CA 94016" +268788,Apple Airpods Headphones,1,150,10/27/19 03:09,"129 Johnson St, San Francisco, CA 94016" +268789,AAA Batteries (4-pack),1,2.99,10/04/19 20:38,"174 Park St, Dallas, TX 75001" +268790,Wired Headphones,1,11.99,10/22/19 18:50,"197 Cherry St, Los Angeles, CA 90001" +268791,AAA Batteries (4-pack),1,2.99,10/14/19 15:41,"616 Highland St, Atlanta, GA 30301" +268792,ThinkPad Laptop,1,999.99,10/11/19 11:07,"365 Walnut St, Dallas, TX 75001" +268793,ThinkPad Laptop,1,999.99,10/31/19 15:55,"962 Washington St, Austin, TX 73301" +268794,27in 4K Gaming Monitor,1,389.99,10/23/19 19:52,"966 10th St, Dallas, TX 75001" +268795,AAA Batteries (4-pack),3,2.99,10/27/19 20:35,"975 Lincoln St, Boston, MA 02215" +268796,Wired Headphones,1,11.99,10/06/19 18:34,"398 10th St, Dallas, TX 75001" +268797,Google Phone,1,600,10/02/19 09:56,"90 Johnson St, San Francisco, CA 94016" +268797,AA Batteries (4-pack),2,3.84,10/02/19 09:56,"90 Johnson St, San Francisco, CA 94016" +268798,Macbook Pro Laptop,1,1700,10/14/19 18:16,"243 River St, Austin, TX 73301" +268799,Bose SoundSport Headphones,1,99.99,10/09/19 22:31,"998 West St, New York City, NY 10001" +268800,AA Batteries (4-pack),2,3.84,10/17/19 15:49,"18 9th St, San Francisco, CA 94016" +268801,AAA Batteries (4-pack),1,2.99,10/24/19 18:35,"427 Adams St, Dallas, TX 75001" +268802,USB-C Charging Cable,1,11.95,10/04/19 13:58,"993 11th St, Seattle, WA 98101" +268803,AA Batteries (4-pack),2,3.84,10/08/19 21:15,"244 Spruce St, Boston, MA 02215" +268804,Macbook Pro Laptop,1,1700,10/09/19 01:35,"731 Church St, San Francisco, CA 94016" +268805,Apple Airpods Headphones,1,150,10/15/19 11:00,"966 6th St, New York City, NY 10001" +268806,USB-C Charging Cable,1,11.95,10/16/19 10:58,"12 8th St, Dallas, TX 75001" +268807,20in Monitor,1,109.99,10/07/19 17:54,"490 4th St, Dallas, TX 75001" +268808,Wired Headphones,1,11.99,10/19/19 23:48,"81 14th St, New York City, NY 10001" +268809,AAA Batteries (4-pack),2,2.99,10/11/19 20:23,"906 Highland St, San Francisco, CA 94016" +268810,Lightning Charging Cable,1,14.95,10/10/19 23:13,"490 Pine St, Boston, MA 02215" +268811,USB-C Charging Cable,1,11.95,10/09/19 17:45,"762 13th St, New York City, NY 10001" +268812,USB-C Charging Cable,2,11.95,10/28/19 19:38,"671 Hickory St, San Francisco, CA 94016" +268813,AAA Batteries (4-pack),1,2.99,10/27/19 19:17,"794 Forest St, Seattle, WA 98101" +268814,27in 4K Gaming Monitor,1,389.99,10/13/19 15:16,"186 7th St, Los Angeles, CA 90001" +268815,USB-C Charging Cable,2,11.95,10/04/19 18:34,"580 13th St, Los Angeles, CA 90001" +268816,Lightning Charging Cable,1,14.95,10/23/19 16:03,"284 9th St, New York City, NY 10001" +268817,ThinkPad Laptop,1,999.99,10/13/19 12:57,"453 Main St, Portland, OR 97035" +268817,Wired Headphones,1,11.99,10/13/19 12:57,"453 Main St, Portland, OR 97035" +268818,27in FHD Monitor,1,149.99,10/22/19 15:43,"897 West St, Boston, MA 02215" +268819,27in FHD Monitor,1,149.99,10/01/19 20:25,"175 Lincoln St, New York City, NY 10001" +268820,AAA Batteries (4-pack),1,2.99,10/27/19 12:06,"851 Lake St, San Francisco, CA 94016" +268821,Bose SoundSport Headphones,1,99.99,10/09/19 16:55,"202 6th St, Los Angeles, CA 90001" +268822,USB-C Charging Cable,1,11.95,10/26/19 10:28,"959 Willow St, San Francisco, CA 94016" +268823,Macbook Pro Laptop,1,1700,10/05/19 19:43,"501 North St, San Francisco, CA 94016" +268824,Apple Airpods Headphones,1,150,10/29/19 16:21,"475 12th St, Boston, MA 02215" +268825,27in 4K Gaming Monitor,1,389.99,10/23/19 14:35,"779 Jackson St, Seattle, WA 98101" +268826,Apple Airpods Headphones,1,150,10/27/19 14:33,"116 Washington St, San Francisco, CA 94016" +268827,AAA Batteries (4-pack),1,2.99,10/04/19 14:19,"418 Willow St, San Francisco, CA 94016" +268828,AA Batteries (4-pack),1,3.84,10/01/19 07:26,"936 Highland St, Los Angeles, CA 90001" +268829,27in 4K Gaming Monitor,1,389.99,10/12/19 14:12,"880 Spruce St, Portland, OR 97035" +268830,AAA Batteries (4-pack),1,2.99,10/08/19 20:54,"539 Sunset St, New York City, NY 10001" +268831,AA Batteries (4-pack),1,3.84,10/24/19 15:04,"59 Jackson St, Portland, OR 97035" +268832,27in 4K Gaming Monitor,1,389.99,10/07/19 15:42,"73 Lincoln St, Atlanta, GA 30301" +268833,USB-C Charging Cable,1,11.95,10/02/19 22:47,"206 Highland St, New York City, NY 10001" +268833,Bose SoundSport Headphones,1,99.99,10/02/19 22:47,"206 Highland St, New York City, NY 10001" +268834,USB-C Charging Cable,1,11.95,10/15/19 21:00,"223 6th St, Boston, MA 02215" +268835,Wired Headphones,1,11.99,10/19/19 16:20,"2 Hickory St, San Francisco, CA 94016" +268836,AAA Batteries (4-pack),2,2.99,10/03/19 12:04,"988 Walnut St, Los Angeles, CA 90001" +268836,Wired Headphones,1,11.99,10/03/19 12:04,"988 Walnut St, Los Angeles, CA 90001" +268837,Lightning Charging Cable,1,14.95,10/10/19 20:50,"776 7th St, San Francisco, CA 94016" +268838,Flatscreen TV,1,300,10/31/19 17:23,"839 4th St, Los Angeles, CA 90001" +268839,Bose SoundSport Headphones,1,99.99,10/08/19 04:43,"812 7th St, Austin, TX 73301" +268840,Flatscreen TV,1,300,10/22/19 11:32,"143 Forest St, Boston, MA 02215" +268841,Lightning Charging Cable,1,14.95,10/09/19 12:51,"434 South St, New York City, NY 10001" +268842,27in FHD Monitor,1,149.99,10/05/19 19:29,"462 8th St, San Francisco, CA 94016" +268843,Apple Airpods Headphones,1,150,10/12/19 18:44,"579 Jefferson St, Portland, OR 97035" +268844,AAA Batteries (4-pack),1,2.99,10/11/19 10:19,"211 Pine St, Los Angeles, CA 90001" +268845,Apple Airpods Headphones,1,150,10/25/19 06:29,"747 Cherry St, Atlanta, GA 30301" +268846,AA Batteries (4-pack),1,3.84,10/13/19 11:03,"333 11th St, Boston, MA 02215" +268847,27in FHD Monitor,1,149.99,10/26/19 14:19,"723 River St, San Francisco, CA 94016" +268848,Lightning Charging Cable,1,14.95,10/13/19 13:45,"541 Washington St, Atlanta, GA 30301" +268849,Lightning Charging Cable,2,14.95,10/26/19 01:34,"690 South St, New York City, NY 10001" +268850,AAA Batteries (4-pack),2,2.99,10/19/19 23:51,"488 Church St, Austin, TX 73301" +268851,Apple Airpods Headphones,1,150,10/05/19 19:01,"823 Washington St, San Francisco, CA 94016" +268852,27in FHD Monitor,1,149.99,10/24/19 22:04,"125 Cedar St, Dallas, TX 75001" +268853,Wired Headphones,1,11.99,10/12/19 12:47,"419 Lake St, Portland, OR 97035" +268854,Wired Headphones,1,11.99,10/11/19 15:57,"521 7th St, Los Angeles, CA 90001" +268855,iPhone,1,700,10/16/19 21:04,"58 Willow St, San Francisco, CA 94016" +268856,ThinkPad Laptop,1,999.99,10/31/19 14:05,"708 Church St, New York City, NY 10001" +268857,Lightning Charging Cable,1,14.95,10/18/19 00:47,"259 8th St, San Francisco, CA 94016" +268858,Lightning Charging Cable,1,14.95,10/06/19 09:07,"223 Church St, Austin, TX 73301" +268859,Apple Airpods Headphones,1,150,10/04/19 16:34,"829 7th St, San Francisco, CA 94016" +268860,Lightning Charging Cable,1,14.95,10/30/19 14:22,"209 14th St, San Francisco, CA 94016" +268861,27in FHD Monitor,1,149.99,10/27/19 17:38,"641 South St, New York City, NY 10001" +268862,Lightning Charging Cable,1,14.95,10/02/19 12:21,"498 Cherry St, Atlanta, GA 30301" +268863,20in Monitor,1,109.99,10/20/19 17:25,"457 10th St, San Francisco, CA 94016" +268864,Bose SoundSport Headphones,1,99.99,10/28/19 14:40,"178 Maple St, Austin, TX 73301" +268865,AA Batteries (4-pack),3,3.84,10/11/19 22:27,"226 6th St, Los Angeles, CA 90001" +268866,27in FHD Monitor,1,149.99,10/19/19 15:46,"959 Cedar St, New York City, NY 10001" +268867,LG Washing Machine,1,600.0,10/08/19 15:06,"376 Dogwood St, San Francisco, CA 94016" +268868,USB-C Charging Cable,1,11.95,10/22/19 10:14,"253 Ridge St, Los Angeles, CA 90001" +268869,Lightning Charging Cable,1,14.95,10/06/19 23:06,"519 6th St, Austin, TX 73301" +268870,Lightning Charging Cable,1,14.95,10/25/19 10:24,"592 Elm St, New York City, NY 10001" +268871,USB-C Charging Cable,1,11.95,10/07/19 22:44,"978 Willow St, New York City, NY 10001" +268872,Apple Airpods Headphones,1,150,10/30/19 16:52,"224 Lincoln St, Austin, TX 73301" +268873,27in 4K Gaming Monitor,1,389.99,10/04/19 10:21,"42 14th St, Dallas, TX 75001" +268874,Apple Airpods Headphones,1,150,10/11/19 13:53,"195 River St, Boston, MA 02215" +268875,USB-C Charging Cable,1,11.95,10/22/19 10:06,"855 Adams St, San Francisco, CA 94016" +268876,AA Batteries (4-pack),2,3.84,10/13/19 18:51,"771 Walnut St, Los Angeles, CA 90001" +268877,Macbook Pro Laptop,1,1700,10/05/19 09:32,"555 Meadow St, San Francisco, CA 94016" +268878,iPhone,1,700,10/11/19 18:43,"31 Cedar St, Seattle, WA 98101" +268878,Apple Airpods Headphones,1,150,10/11/19 18:43,"31 Cedar St, Seattle, WA 98101" +268879,27in 4K Gaming Monitor,1,389.99,10/03/19 22:54,"921 Maple St, Boston, MA 02215" +268880,USB-C Charging Cable,1,11.95,10/30/19 01:16,"522 2nd St, Los Angeles, CA 90001" +268881,AAA Batteries (4-pack),1,2.99,10/28/19 16:03,"944 Willow St, Los Angeles, CA 90001" +268882,Bose SoundSport Headphones,1,99.99,10/16/19 10:16,"914 South St, San Francisco, CA 94016" +268883,USB-C Charging Cable,2,11.95,10/02/19 11:28,"895 Dogwood St, Dallas, TX 75001" +268884,AA Batteries (4-pack),1,3.84,10/24/19 09:49,"329 7th St, Seattle, WA 98101" +268885,USB-C Charging Cable,1,11.95,10/03/19 04:42,"761 14th St, Austin, TX 73301" +268886,Lightning Charging Cable,1,14.95,10/12/19 11:21,"999 Maple St, San Francisco, CA 94016" +268887,27in FHD Monitor,1,149.99,10/21/19 14:33,"810 14th St, Portland, OR 97035" +268888,Apple Airpods Headphones,1,150,10/07/19 10:13,"917 Forest St, Los Angeles, CA 90001" +268889,AAA Batteries (4-pack),1,2.99,10/29/19 07:03,"936 Elm St, San Francisco, CA 94016" +268890,Flatscreen TV,1,300,10/23/19 19:00,"533 Jefferson St, Los Angeles, CA 90001" +268891,Macbook Pro Laptop,1,1700,10/18/19 20:41,"769 9th St, Portland, ME 04101" +268892,AA Batteries (4-pack),1,3.84,10/27/19 12:40,"965 Hill St, Austin, TX 73301" +268893,AA Batteries (4-pack),1,3.84,10/07/19 01:45,"433 Willow St, Seattle, WA 98101" +268894,AA Batteries (4-pack),1,3.84,10/26/19 23:45,"45 Lakeview St, Boston, MA 02215" +268895,Lightning Charging Cable,1,14.95,10/27/19 20:16,"862 Highland St, Los Angeles, CA 90001" +268896,Apple Airpods Headphones,1,150,10/04/19 17:26,"757 North St, San Francisco, CA 94016" +268897,AAA Batteries (4-pack),3,2.99,10/17/19 16:21,"933 Lincoln St, San Francisco, CA 94016" +268898,Apple Airpods Headphones,1,150,10/17/19 16:48,"110 Lakeview St, Seattle, WA 98101" +268899,20in Monitor,1,109.99,10/02/19 13:28,"223 4th St, Dallas, TX 75001" +268900,Wired Headphones,1,11.99,10/10/19 14:24,"260 Chestnut St, San Francisco, CA 94016" +268901,27in 4K Gaming Monitor,1,389.99,10/29/19 14:45,"244 River St, San Francisco, CA 94016" +268902,USB-C Charging Cable,1,11.95,10/06/19 13:19,"286 Hill St, Portland, OR 97035" +268903,Bose SoundSport Headphones,1,99.99,10/30/19 18:49,"133 6th St, Seattle, WA 98101" +268903,27in FHD Monitor,1,149.99,10/30/19 18:49,"133 6th St, Seattle, WA 98101" +268904,Lightning Charging Cable,1,14.95,10/02/19 22:40,"421 12th St, Boston, MA 02215" +268905,AAA Batteries (4-pack),2,2.99,10/18/19 20:15,"521 4th St, Seattle, WA 98101" +268906,Flatscreen TV,1,300,10/12/19 08:57,"321 Wilson St, Boston, MA 02215" +268907,Wired Headphones,1,11.99,10/01/19 13:00,"475 West St, San Francisco, CA 94016" +268908,Wired Headphones,1,11.99,10/29/19 14:29,"165 11th St, Boston, MA 02215" +268909,Bose SoundSport Headphones,1,99.99,10/29/19 16:25,"203 Washington St, San Francisco, CA 94016" +268910,Lightning Charging Cable,1,14.95,10/02/19 17:36,"833 7th St, Dallas, TX 75001" +268911,ThinkPad Laptop,1,999.99,10/27/19 16:27,"849 River St, Atlanta, GA 30301" +268912,USB-C Charging Cable,1,11.95,10/06/19 20:59,"872 North St, Boston, MA 02215" +268913,iPhone,1,700,10/27/19 23:06,"146 Church St, Seattle, WA 98101" +268914,AA Batteries (4-pack),1,3.84,10/14/19 13:51,"616 Ridge St, San Francisco, CA 94016" +268915,AAA Batteries (4-pack),4,2.99,10/07/19 21:31,"237 6th St, Portland, OR 97035" +268916,Lightning Charging Cable,1,14.95,10/14/19 09:51,"454 14th St, San Francisco, CA 94016" +268917,Macbook Pro Laptop,1,1700,10/31/19 09:47,"89 13th St, Atlanta, GA 30301" +268918,AAA Batteries (4-pack),1,2.99,10/24/19 19:32,"765 Church St, Atlanta, GA 30301" +268919,Apple Airpods Headphones,1,150,10/12/19 21:52,"586 10th St, New York City, NY 10001" +268920,AA Batteries (4-pack),1,3.84,10/26/19 12:24,"983 Wilson St, Los Angeles, CA 90001" +268921,AAA Batteries (4-pack),1,2.99,10/25/19 10:48,"561 Cedar St, Boston, MA 02215" +268922,USB-C Charging Cable,1,11.95,10/23/19 18:19,"327 Sunset St, Seattle, WA 98101" +268923,Flatscreen TV,1,300,10/07/19 21:53,"970 Dogwood St, Dallas, TX 75001" +268924,Lightning Charging Cable,1,14.95,10/07/19 12:28,"615 Hickory St, San Francisco, CA 94016" +268925,27in 4K Gaming Monitor,1,389.99,10/23/19 13:30,"251 Church St, Boston, MA 02215" +268926,Google Phone,1,600,10/17/19 02:11,"216 8th St, Boston, MA 02215" +268926,USB-C Charging Cable,1,11.95,10/17/19 02:11,"216 8th St, Boston, MA 02215" +268927,Google Phone,1,600,10/15/19 15:38,"301 Dogwood St, Boston, MA 02215" +268928,Bose SoundSport Headphones,1,99.99,10/26/19 12:37,"980 12th St, San Francisco, CA 94016" +268929,USB-C Charging Cable,1,11.95,10/24/19 21:32,"874 Wilson St, San Francisco, CA 94016" +268930,Wired Headphones,1,11.99,10/13/19 12:39,"613 West St, San Francisco, CA 94016" +268931,Bose SoundSport Headphones,1,99.99,10/24/19 15:37,"931 Chestnut St, Boston, MA 02215" +268932,AA Batteries (4-pack),1,3.84,10/31/19 01:19,"69 5th St, Los Angeles, CA 90001" +268933,AA Batteries (4-pack),2,3.84,10/30/19 06:33,"598 Dogwood St, Austin, TX 73301" +268934,27in 4K Gaming Monitor,1,389.99,10/31/19 22:34,"909 Spruce St, San Francisco, CA 94016" +268935,AA Batteries (4-pack),1,3.84,10/25/19 23:32,"976 11th St, New York City, NY 10001" +268936,USB-C Charging Cable,1,11.95,10/15/19 12:18,"178 5th St, San Francisco, CA 94016" +268937,AAA Batteries (4-pack),1,2.99,10/12/19 12:37,"543 Forest St, Seattle, WA 98101" +268938,Apple Airpods Headphones,1,150,10/19/19 18:36,"288 8th St, San Francisco, CA 94016" +268939,20in Monitor,1,109.99,10/21/19 19:20,"806 5th St, Seattle, WA 98101" +268940,AA Batteries (4-pack),1,3.84,10/10/19 14:52,"284 Madison St, Los Angeles, CA 90001" +268941,Apple Airpods Headphones,1,150,10/23/19 22:27,"708 Madison St, New York City, NY 10001" +268942,AA Batteries (4-pack),3,3.84,10/18/19 18:01,"26 Washington St, Portland, ME 04101" +268943,Lightning Charging Cable,1,14.95,10/19/19 00:53,"771 Jackson St, New York City, NY 10001" +268944,iPhone,1,700,10/13/19 09:27,"363 2nd St, Los Angeles, CA 90001" +268945,27in FHD Monitor,1,149.99,10/08/19 17:02,"86 West St, San Francisco, CA 94016" +268946,AAA Batteries (4-pack),1,2.99,10/10/19 20:35,"289 6th St, San Francisco, CA 94016" +268947,Bose SoundSport Headphones,1,99.99,10/01/19 18:43,"807 Center St, Dallas, TX 75001" +268948,AAA Batteries (4-pack),1,2.99,10/09/19 18:56,"41 Church St, Los Angeles, CA 90001" +268949,27in FHD Monitor,1,149.99,10/25/19 17:59,"798 Johnson St, Atlanta, GA 30301" +268950,20in Monitor,1,109.99,10/09/19 15:11,"78 14th St, Los Angeles, CA 90001" +268951,Lightning Charging Cable,1,14.95,10/25/19 11:38,"966 4th St, San Francisco, CA 94016" +268952,Wired Headphones,1,11.99,10/08/19 17:40,"574 North St, Boston, MA 02215" +268953,Wired Headphones,2,11.99,10/13/19 13:32,"456 Jefferson St, San Francisco, CA 94016" +268954,27in FHD Monitor,1,149.99,10/24/19 17:56,"695 Forest St, Austin, TX 73301" +268954,Lightning Charging Cable,1,14.95,10/24/19 17:56,"695 Forest St, Austin, TX 73301" +268955,AAA Batteries (4-pack),4,2.99,10/06/19 13:27,"472 Walnut St, Dallas, TX 75001" +268956,Lightning Charging Cable,1,14.95,10/21/19 15:49,"454 North St, San Francisco, CA 94016" +268957,Apple Airpods Headphones,1,150,10/21/19 15:55,"141 River St, San Francisco, CA 94016" +268958,AAA Batteries (4-pack),1,2.99,10/18/19 11:47,"260 8th St, Los Angeles, CA 90001" +268959,AAA Batteries (4-pack),1,2.99,10/30/19 22:15,"259 14th St, San Francisco, CA 94016" +268960,AAA Batteries (4-pack),1,2.99,10/08/19 09:44,"23 North St, Los Angeles, CA 90001" +268961,Lightning Charging Cable,1,14.95,10/04/19 16:15,"434 9th St, Dallas, TX 75001" +268962,Google Phone,1,600,10/04/19 12:14,"302 13th St, New York City, NY 10001" +268963,Apple Airpods Headphones,1,150,10/18/19 11:47,"331 8th St, Boston, MA 02215" +268964,AAA Batteries (4-pack),1,2.99,10/12/19 18:12,"536 Jackson St, San Francisco, CA 94016" +268965,USB-C Charging Cable,1,11.95,10/29/19 08:53,"471 Lakeview St, San Francisco, CA 94016" +268966,AA Batteries (4-pack),1,3.84,10/27/19 04:24,"158 Hill St, Boston, MA 02215" +268967,AA Batteries (4-pack),1,3.84,10/22/19 20:57,"350 Elm St, Dallas, TX 75001" +268968,Bose SoundSport Headphones,1,99.99,10/03/19 15:41,"298 12th St, New York City, NY 10001" +268969,AA Batteries (4-pack),1,3.84,10/07/19 13:04,"785 Willow St, Boston, MA 02215" +268970,Wired Headphones,1,11.99,10/24/19 09:53,"874 Meadow St, Dallas, TX 75001" +268971,AA Batteries (4-pack),2,3.84,10/19/19 12:48,"617 River St, New York City, NY 10001" +268972,Bose SoundSport Headphones,1,99.99,10/12/19 12:43,"657 5th St, Los Angeles, CA 90001" +268973,Lightning Charging Cable,1,14.95,10/29/19 09:32,"441 Meadow St, Seattle, WA 98101" +268974,iPhone,1,700,10/30/19 16:59,"164 Park St, Boston, MA 02215" +268975,34in Ultrawide Monitor,1,379.99,10/01/19 22:45,"131 Jackson St, San Francisco, CA 94016" +268976,AAA Batteries (4-pack),1,2.99,10/03/19 04:59,"928 Lincoln St, Los Angeles, CA 90001" +268977,27in 4K Gaming Monitor,1,389.99,10/29/19 12:45,"257 Adams St, Boston, MA 02215" +268978,Bose SoundSport Headphones,1,99.99,10/06/19 18:34,"623 9th St, Los Angeles, CA 90001" +268978,Wired Headphones,1,11.99,10/06/19 18:34,"623 9th St, Los Angeles, CA 90001" +268979,Wired Headphones,1,11.99,10/16/19 16:18,"198 10th St, Austin, TX 73301" +268980,Wired Headphones,1,11.99,10/21/19 14:42,"775 Jefferson St, New York City, NY 10001" +268981,Google Phone,1,600,10/27/19 07:21,"662 10th St, Dallas, TX 75001" +268982,34in Ultrawide Monitor,1,379.99,10/18/19 20:25,"614 Maple St, Los Angeles, CA 90001" +268983,AA Batteries (4-pack),1,3.84,10/31/19 20:15,"703 Chestnut St, Los Angeles, CA 90001" +268984,Apple Airpods Headphones,1,150,10/25/19 11:23,"207 Lakeview St, New York City, NY 10001" +268985,AAA Batteries (4-pack),1,2.99,10/26/19 16:41,"745 Hill St, Portland, ME 04101" +268986,Apple Airpods Headphones,1,150,10/10/19 00:11,"90 West St, Dallas, TX 75001" +268987,Lightning Charging Cable,1,14.95,10/12/19 10:40,"32 Center St, San Francisco, CA 94016" +268988,AA Batteries (4-pack),1,3.84,10/13/19 10:19,"912 11th St, Los Angeles, CA 90001" +268989,iPhone,1,700,10/14/19 18:32,"620 Church St, San Francisco, CA 94016" +268990,AAA Batteries (4-pack),1,2.99,10/25/19 19:48,"779 9th St, Seattle, WA 98101" +268991,Bose SoundSport Headphones,1,99.99,10/09/19 09:39,"905 11th St, Dallas, TX 75001" +268992,iPhone,1,700,10/18/19 12:55,"889 Church St, Austin, TX 73301" +268992,Lightning Charging Cable,1,14.95,10/18/19 12:55,"889 Church St, Austin, TX 73301" +268993,USB-C Charging Cable,1,11.95,10/11/19 16:07,"861 Johnson St, Seattle, WA 98101" +268994,Apple Airpods Headphones,1,150,10/10/19 09:59,"405 4th St, Atlanta, GA 30301" +268995,Wired Headphones,1,11.99,10/04/19 20:09,"879 1st St, Dallas, TX 75001" +268996,Lightning Charging Cable,1,14.95,10/27/19 16:34,"469 Pine St, New York City, NY 10001" +268997,AA Batteries (4-pack),1,3.84,10/22/19 08:36,"268 Adams St, Dallas, TX 75001" +268998,AAA Batteries (4-pack),1,2.99,10/09/19 22:45,"369 Lake St, San Francisco, CA 94016" +268999,Wired Headphones,1,11.99,10/14/19 10:56,"811 Madison St, Boston, MA 02215" +269000,AAA Batteries (4-pack),1,2.99,10/02/19 08:12,"266 North St, Los Angeles, CA 90001" +269001,27in FHD Monitor,1,149.99,10/08/19 17:32,"362 10th St, New York City, NY 10001" +269002,AAA Batteries (4-pack),1,2.99,10/02/19 16:41,"108 Walnut St, San Francisco, CA 94016" +269003,Bose SoundSport Headphones,1,99.99,10/02/19 20:40,"27 Chestnut St, Dallas, TX 75001" +269004,Lightning Charging Cable,1,14.95,10/29/19 22:42,"138 Cedar St, San Francisco, CA 94016" +269005,34in Ultrawide Monitor,1,379.99,10/05/19 18:25,"186 Adams St, San Francisco, CA 94016" +269006,USB-C Charging Cable,1,11.95,10/03/19 22:55,"986 Jackson St, Seattle, WA 98101" +269007,27in 4K Gaming Monitor,1,389.99,10/09/19 23:14,"194 Hickory St, Atlanta, GA 30301" +269008,Bose SoundSport Headphones,1,99.99,10/29/19 18:43,"201 Johnson St, Seattle, WA 98101" +269009,AAA Batteries (4-pack),1,2.99,10/20/19 08:57,"373 12th St, Seattle, WA 98101" +269010,Lightning Charging Cable,1,14.95,10/28/19 11:58,"411 12th St, Los Angeles, CA 90001" +269011,Bose SoundSport Headphones,1,99.99,10/06/19 15:42,"450 River St, Seattle, WA 98101" +269012,Apple Airpods Headphones,1,150,10/30/19 14:45,"779 4th St, San Francisco, CA 94016" +269013,Bose SoundSport Headphones,1,99.99,10/27/19 10:11,"871 River St, New York City, NY 10001" +269014,AA Batteries (4-pack),1,3.84,10/07/19 21:53,"506 8th St, San Francisco, CA 94016" +269015,Google Phone,1,600,10/16/19 18:05,"762 8th St, San Francisco, CA 94016" +269015,USB-C Charging Cable,1,11.95,10/16/19 18:05,"762 8th St, San Francisco, CA 94016" +269016,Apple Airpods Headphones,1,150,10/16/19 15:08,"642 Spruce St, Atlanta, GA 30301" +269017,ThinkPad Laptop,1,999.99,10/29/19 10:31,"464 Park St, Atlanta, GA 30301" +269017,USB-C Charging Cable,1,11.95,10/29/19 10:31,"464 Park St, Atlanta, GA 30301" +269018,27in FHD Monitor,1,149.99,10/04/19 12:48,"57 Maple St, Los Angeles, CA 90001" +269019,Flatscreen TV,1,300,10/29/19 21:35,"768 River St, Atlanta, GA 30301" +269020,Lightning Charging Cable,1,14.95,10/10/19 12:18,"465 Pine St, Los Angeles, CA 90001" +269021,Lightning Charging Cable,1,14.95,10/28/19 23:02,"410 Meadow St, Los Angeles, CA 90001" +269021,AA Batteries (4-pack),1,3.84,10/28/19 23:02,"410 Meadow St, Los Angeles, CA 90001" +269022,USB-C Charging Cable,1,11.95,10/09/19 09:05,"592 South St, San Francisco, CA 94016" +269023,ThinkPad Laptop,1,999.99,10/16/19 20:08,"954 6th St, New York City, NY 10001" +269024,USB-C Charging Cable,1,11.95,10/19/19 11:12,"763 Church St, Portland, OR 97035" +269025,Wired Headphones,1,11.99,10/06/19 15:34,"425 Hickory St, San Francisco, CA 94016" +269026,AA Batteries (4-pack),1,3.84,10/03/19 13:32,"217 West St, Los Angeles, CA 90001" +269027,AA Batteries (4-pack),1,3.84,10/13/19 14:27,"603 Sunset St, New York City, NY 10001" +269028,AA Batteries (4-pack),1,3.84,10/21/19 08:14,"667 Chestnut St, San Francisco, CA 94016" +269029,AA Batteries (4-pack),1,3.84,10/24/19 09:34,"807 Chestnut St, Seattle, WA 98101" +269030,Apple Airpods Headphones,1,150,10/07/19 21:36,"865 Church St, Los Angeles, CA 90001" +269031,27in FHD Monitor,1,149.99,10/06/19 20:05,"848 Wilson St, New York City, NY 10001" +269032,USB-C Charging Cable,1,11.95,10/11/19 16:57,"508 Elm St, Dallas, TX 75001" +269033,AAA Batteries (4-pack),1,2.99,10/08/19 21:21,"692 Willow St, San Francisco, CA 94016" +269034,iPhone,1,700,10/11/19 18:10,"382 6th St, Portland, ME 04101" +269034,Lightning Charging Cable,1,14.95,10/11/19 18:10,"382 6th St, Portland, ME 04101" +269034,Apple Airpods Headphones,1,150,10/11/19 18:10,"382 6th St, Portland, ME 04101" +269035,AAA Batteries (4-pack),1,2.99,10/15/19 04:30,"620 Center St, Atlanta, GA 30301" +269036,Wired Headphones,1,11.99,10/25/19 20:17,"535 13th St, Atlanta, GA 30301" +269037,AA Batteries (4-pack),4,3.84,10/14/19 09:07,"675 Jackson St, New York City, NY 10001" +269038,Lightning Charging Cable,1,14.95,10/10/19 21:22,"471 12th St, San Francisco, CA 94016" +269039,Apple Airpods Headphones,1,150,10/08/19 17:22,"751 Ridge St, Atlanta, GA 30301" +269040,34in Ultrawide Monitor,1,379.99,10/02/19 12:39,"977 River St, Los Angeles, CA 90001" +269041,Bose SoundSport Headphones,1,99.99,10/19/19 11:21,"805 Elm St, Seattle, WA 98101" +269042,Wired Headphones,1,11.99,10/14/19 23:36,"507 13th St, San Francisco, CA 94016" +269043,Wired Headphones,1,11.99,10/13/19 10:56,"320 Willow St, San Francisco, CA 94016" +269044,AA Batteries (4-pack),2,3.84,10/09/19 09:42,"217 Lakeview St, San Francisco, CA 94016" +269045,ThinkPad Laptop,1,999.99,10/27/19 17:56,"368 7th St, Atlanta, GA 30301" +269046,Lightning Charging Cable,1,14.95,10/28/19 02:22,"488 Lake St, San Francisco, CA 94016" +269047,Apple Airpods Headphones,1,150,10/01/19 16:30,"602 Cherry St, Los Angeles, CA 90001" +269048,Wired Headphones,1,11.99,10/19/19 15:36,"636 Sunset St, New York City, NY 10001" +269049,Flatscreen TV,1,300,10/22/19 08:30,"405 Church St, Seattle, WA 98101" +269050,Wired Headphones,2,11.99,10/21/19 15:12,"819 Sunset St, Los Angeles, CA 90001" +269051,AAA Batteries (4-pack),1,2.99,10/07/19 20:56,"584 Church St, Portland, ME 04101" +269052,Lightning Charging Cable,1,14.95,10/27/19 12:19,"611 7th St, Los Angeles, CA 90001" +269053,AAA Batteries (4-pack),1,2.99,10/28/19 01:07,"372 Highland St, San Francisco, CA 94016" +269054,Bose SoundSport Headphones,1,99.99,10/21/19 21:45,"928 Chestnut St, Boston, MA 02215" +269054,iPhone,1,700,10/21/19 21:45,"928 Chestnut St, Boston, MA 02215" +269055,AAA Batteries (4-pack),2,2.99,10/20/19 13:12,"683 Pine St, Boston, MA 02215" +269056,AA Batteries (4-pack),2,3.84,10/10/19 18:31,"646 South St, Los Angeles, CA 90001" +269057,Google Phone,1,600,10/26/19 07:11,"125 11th St, Atlanta, GA 30301" +269058,USB-C Charging Cable,1,11.95,10/15/19 17:54,"895 Park St, Seattle, WA 98101" +269059,27in FHD Monitor,1,149.99,10/22/19 19:03,"693 West St, Dallas, TX 75001" +269060,Google Phone,1,600,10/21/19 14:25,"969 Forest St, Dallas, TX 75001" +269061,27in 4K Gaming Monitor,1,389.99,10/27/19 14:24,"549 Adams St, New York City, NY 10001" +269062,ThinkPad Laptop,1,999.99,10/11/19 21:51,"639 Lincoln St, San Francisco, CA 94016" +269063,Apple Airpods Headphones,1,150,10/01/19 17:02,"206 Walnut St, Los Angeles, CA 90001" +269064,USB-C Charging Cable,1,11.95,10/16/19 17:51,"479 Elm St, New York City, NY 10001" +269065,AA Batteries (4-pack),1,3.84,10/19/19 12:30,"421 11th St, New York City, NY 10001" +269066,AAA Batteries (4-pack),2,2.99,10/24/19 08:30,"940 13th St, Boston, MA 02215" +269067,AA Batteries (4-pack),1,3.84,10/20/19 21:42,"507 Center St, San Francisco, CA 94016" +269068,USB-C Charging Cable,1,11.95,10/21/19 16:25,"275 Cherry St, Seattle, WA 98101" +269069,Macbook Pro Laptop,1,1700,10/02/19 22:15,"444 Hickory St, Austin, TX 73301" +269070,Wired Headphones,1,11.99,10/04/19 08:54,"884 Pine St, New York City, NY 10001" +269071,20in Monitor,1,109.99,10/13/19 13:33,"419 Washington St, Boston, MA 02215" +269072,Vareebadd Phone,1,400,10/11/19 19:04,"976 2nd St, Boston, MA 02215" +269073,27in FHD Monitor,1,149.99,10/20/19 23:50,"735 North St, Portland, OR 97035" +269074,Lightning Charging Cable,1,14.95,10/23/19 11:58,"452 Cedar St, Los Angeles, CA 90001" +269075,AA Batteries (4-pack),1,3.84,10/10/19 07:58,"374 6th St, Portland, OR 97035" +269076,27in 4K Gaming Monitor,1,389.99,10/02/19 21:53,"227 Jefferson St, San Francisco, CA 94016" +269076,AAA Batteries (4-pack),1,2.99,10/02/19 21:53,"227 Jefferson St, San Francisco, CA 94016" +269077,Lightning Charging Cable,1,14.95,10/17/19 16:53,"383 Cedar St, New York City, NY 10001" +269078,Lightning Charging Cable,1,14.95,10/18/19 10:08,"931 Lake St, San Francisco, CA 94016" +269079,Apple Airpods Headphones,1,150,10/11/19 18:40,"469 Washington St, Atlanta, GA 30301" +269080,AAA Batteries (4-pack),2,2.99,10/27/19 14:54,"803 West St, Los Angeles, CA 90001" +269081,20in Monitor,1,109.99,10/18/19 19:44,"471 7th St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +269082,AAA Batteries (4-pack),1,2.99,10/29/19 15:06,"527 10th St, Portland, ME 04101" +269083,AAA Batteries (4-pack),1,2.99,10/31/19 00:47,"244 Johnson St, San Francisco, CA 94016" +269084,AA Batteries (4-pack),1,3.84,10/25/19 21:43,"377 4th St, San Francisco, CA 94016" +269085,Macbook Pro Laptop,1,1700,10/23/19 19:26,"89 Spruce St, Los Angeles, CA 90001" +269086,Lightning Charging Cable,1,14.95,10/10/19 17:41,"928 Washington St, Portland, OR 97035" +269087,AA Batteries (4-pack),1,3.84,10/23/19 15:33,"549 Chestnut St, San Francisco, CA 94016" +269088,Wired Headphones,1,11.99,10/29/19 03:07,"322 Cedar St, Boston, MA 02215" +269089,USB-C Charging Cable,1,11.95,10/27/19 17:10,"199 Adams St, Los Angeles, CA 90001" +269090,Lightning Charging Cable,1,14.95,10/22/19 14:01,"295 Highland St, San Francisco, CA 94016" +269091,Lightning Charging Cable,1,14.95,10/28/19 18:13,"972 2nd St, New York City, NY 10001" +269092,Lightning Charging Cable,1,14.95,10/16/19 12:43,"837 Hickory St, San Francisco, CA 94016" +269093,Google Phone,1,600,10/11/19 22:25,"222 Spruce St, San Francisco, CA 94016" +269094,iPhone,1,700,10/28/19 11:57,"381 Spruce St, San Francisco, CA 94016" +269095,27in 4K Gaming Monitor,1,389.99,10/20/19 22:10,"142 8th St, Boston, MA 02215" +269096,Flatscreen TV,1,300,10/25/19 04:30,"171 7th St, San Francisco, CA 94016" +269097,Wired Headphones,1,11.99,10/18/19 18:39,"201 Willow St, Boston, MA 02215" +269098,Bose SoundSport Headphones,1,99.99,10/18/19 07:44,"722 Adams St, Austin, TX 73301" +269099,Bose SoundSport Headphones,1,99.99,10/14/19 11:29,"931 Elm St, San Francisco, CA 94016" +269100,LG Dryer,1,600.0,10/14/19 10:12,"264 Adams St, San Francisco, CA 94016" +269101,AA Batteries (4-pack),1,3.84,10/01/19 20:03,"781 Adams St, Seattle, WA 98101" +269102,AAA Batteries (4-pack),2,2.99,10/09/19 23:16,"165 Church St, New York City, NY 10001" +269103,Wired Headphones,1,11.99,10/03/19 20:32,"523 Johnson St, New York City, NY 10001" +269104,AAA Batteries (4-pack),2,2.99,10/27/19 12:11,"405 South St, Boston, MA 02215" +269105,Bose SoundSport Headphones,1,99.99,10/23/19 13:11,"349 Washington St, Dallas, TX 75001" +269106,Bose SoundSport Headphones,1,99.99,10/06/19 10:49,"938 Johnson St, Austin, TX 73301" +269107,USB-C Charging Cable,1,11.95,10/08/19 19:16,"624 11th St, Los Angeles, CA 90001" +269108,ThinkPad Laptop,1,999.99,10/20/19 22:28,"93 South St, Atlanta, GA 30301" +269109,Apple Airpods Headphones,1,150,10/25/19 20:07,"549 Elm St, Portland, OR 97035" +269110,34in Ultrawide Monitor,1,379.99,10/11/19 12:37,"796 Pine St, Los Angeles, CA 90001" +269111,iPhone,1,700,10/27/19 10:48,"536 Willow St, Dallas, TX 75001" +269112,27in 4K Gaming Monitor,1,389.99,10/10/19 17:27,"980 Willow St, Portland, ME 04101" +269113,Apple Airpods Headphones,1,150,10/18/19 06:14,"214 Jackson St, San Francisco, CA 94016" +269114,iPhone,1,700,10/29/19 10:12,"921 8th St, Seattle, WA 98101" +269115,USB-C Charging Cable,1,11.95,10/24/19 10:06,"116 Lincoln St, San Francisco, CA 94016" +269116,34in Ultrawide Monitor,1,379.99,10/30/19 09:04,"636 Sunset St, Portland, OR 97035" +269117,Apple Airpods Headphones,1,150,10/15/19 08:39,"126 Walnut St, Dallas, TX 75001" +269118,Apple Airpods Headphones,1,150,10/09/19 10:44,"853 Wilson St, San Francisco, CA 94016" +269119,AA Batteries (4-pack),1,3.84,10/31/19 19:09,"487 9th St, Atlanta, GA 30301" +269120,AA Batteries (4-pack),1,3.84,10/02/19 20:34,"450 Church St, San Francisco, CA 94016" +269120,34in Ultrawide Monitor,1,379.99,10/02/19 20:34,"450 Church St, San Francisco, CA 94016" +269121,Apple Airpods Headphones,1,150,10/31/19 10:21,"996 Jackson St, Boston, MA 02215" +269122,Lightning Charging Cable,1,14.95,10/03/19 04:08,"831 Chestnut St, New York City, NY 10001" +269123,Vareebadd Phone,1,400,10/16/19 08:37,"168 Sunset St, Dallas, TX 75001" +269124,Lightning Charging Cable,1,14.95,10/14/19 20:10,"43 Adams St, New York City, NY 10001" +269125,AAA Batteries (4-pack),1,2.99,10/13/19 11:23,"884 11th St, San Francisco, CA 94016" +269126,AAA Batteries (4-pack),1,2.99,10/17/19 06:17,"79 Church St, New York City, NY 10001" +269127,Vareebadd Phone,1,400,10/10/19 18:22,"263 Ridge St, Los Angeles, CA 90001" +269127,Wired Headphones,1,11.99,10/10/19 18:22,"263 Ridge St, Los Angeles, CA 90001" +269128,Apple Airpods Headphones,1,150,10/24/19 14:03,"524 9th St, San Francisco, CA 94016" +269129,20in Monitor,1,109.99,10/01/19 08:32,"272 Lincoln St, San Francisco, CA 94016" +269130,Macbook Pro Laptop,1,1700,10/04/19 12:48,"469 Hill St, New York City, NY 10001" +269131,Bose SoundSport Headphones,1,99.99,10/09/19 14:53,"924 Jefferson St, Boston, MA 02215" +269132,USB-C Charging Cable,1,11.95,10/02/19 19:17,"928 Spruce St, Seattle, WA 98101" +269133,AAA Batteries (4-pack),5,2.99,10/06/19 21:10,"351 Park St, Los Angeles, CA 90001" +269134,ThinkPad Laptop,1,999.99,10/12/19 16:37,"347 10th St, Seattle, WA 98101" +269135,Wired Headphones,1,11.99,10/20/19 11:01,"746 Wilson St, New York City, NY 10001" +269136,Flatscreen TV,1,300,10/09/19 19:38,"287 River St, Los Angeles, CA 90001" +269137,USB-C Charging Cable,1,11.95,10/14/19 14:31,"823 Cedar St, San Francisco, CA 94016" +269138,USB-C Charging Cable,1,11.95,10/21/19 06:27,"616 Chestnut St, Seattle, WA 98101" +269139,Bose SoundSport Headphones,1,99.99,10/19/19 13:08,"781 River St, New York City, NY 10001" +269140,USB-C Charging Cable,1,11.95,10/18/19 14:00,"666 Pine St, Los Angeles, CA 90001" +269141,Lightning Charging Cable,1,14.95,10/11/19 12:46,"141 6th St, Boston, MA 02215" +269142,Wired Headphones,1,11.99,10/11/19 21:30,"575 5th St, Dallas, TX 75001" +269143,Google Phone,1,600,10/26/19 17:58,"685 River St, Austin, TX 73301" +269143,USB-C Charging Cable,1,11.95,10/26/19 17:58,"685 River St, Austin, TX 73301" +269144,Wired Headphones,1,11.99,10/26/19 17:18,"275 5th St, New York City, NY 10001" +269145,Vareebadd Phone,1,400,10/11/19 16:31,"249 4th St, Los Angeles, CA 90001" +269145,USB-C Charging Cable,1,11.95,10/11/19 16:31,"249 4th St, Los Angeles, CA 90001" +269146,Bose SoundSport Headphones,1,99.99,10/28/19 20:59,"826 5th St, San Francisco, CA 94016" +269147,ThinkPad Laptop,1,999.99,10/21/19 12:11,"104 Jefferson St, New York City, NY 10001" +269148,USB-C Charging Cable,1,11.95,10/21/19 13:56,"989 7th St, Atlanta, GA 30301" +269149,ThinkPad Laptop,1,999.99,10/26/19 12:26,"83 Lincoln St, Dallas, TX 75001" +269149,Lightning Charging Cable,1,14.95,10/26/19 12:26,"83 Lincoln St, Dallas, TX 75001" +269150,27in 4K Gaming Monitor,1,389.99,10/27/19 17:46,"657 Willow St, New York City, NY 10001" +269151,Flatscreen TV,1,300,10/21/19 22:03,"282 Jackson St, San Francisco, CA 94016" +269152,Lightning Charging Cable,1,14.95,10/26/19 12:16,"532 Church St, Portland, ME 04101" +269153,AAA Batteries (4-pack),1,2.99,10/28/19 17:29,"473 Forest St, Portland, OR 97035" +269154,AA Batteries (4-pack),1,3.84,10/17/19 09:49,"685 11th St, Boston, MA 02215" +269155,AA Batteries (4-pack),1,3.84,10/02/19 13:54,"432 Jefferson St, San Francisco, CA 94016" +269156,Bose SoundSport Headphones,1,99.99,10/20/19 18:59,"706 Meadow St, Seattle, WA 98101" +269157,27in 4K Gaming Monitor,1,389.99,10/14/19 20:04,"345 Cedar St, Portland, OR 97035" +269158,USB-C Charging Cable,1,11.95,10/19/19 19:57,"139 Jefferson St, Boston, MA 02215" +269159,Wired Headphones,1,11.99,10/29/19 22:45,"123 10th St, Los Angeles, CA 90001" +269160,Lightning Charging Cable,3,14.95,10/02/19 13:40,"360 Willow St, Seattle, WA 98101" +269161,Flatscreen TV,1,300,10/08/19 09:09,"155 Elm St, San Francisco, CA 94016" +269162,20in Monitor,1,109.99,10/13/19 14:38,"562 Lakeview St, Atlanta, GA 30301" +269163,Lightning Charging Cable,1,14.95,10/17/19 10:56,"705 River St, Los Angeles, CA 90001" +269164,Bose SoundSport Headphones,1,99.99,10/29/19 23:37,"323 Center St, Atlanta, GA 30301" +269165,27in FHD Monitor,1,149.99,10/28/19 17:47,"354 Dogwood St, Boston, MA 02215" +269166,Lightning Charging Cable,1,14.95,10/06/19 16:47,"621 13th St, San Francisco, CA 94016" +269167,LG Dryer,1,600.0,10/21/19 18:38,"689 9th St, Los Angeles, CA 90001" +269168,27in 4K Gaming Monitor,1,389.99,10/14/19 05:52,"165 Spruce St, Boston, MA 02215" +269169,Bose SoundSport Headphones,1,99.99,10/22/19 11:12,"96 Lake St, San Francisco, CA 94016" +269170,iPhone,1,700,10/27/19 20:09,"233 South St, San Francisco, CA 94016" +269171,Apple Airpods Headphones,1,150,10/12/19 13:34,"103 Forest St, San Francisco, CA 94016" +269172,Lightning Charging Cable,1,14.95,10/01/19 20:25,"660 Chestnut St, Los Angeles, CA 90001" +269173,Apple Airpods Headphones,1,150,10/05/19 10:58,"8 Park St, Portland, OR 97035" +269174,AAA Batteries (4-pack),4,2.99,10/30/19 14:08,"538 Elm St, Boston, MA 02215" +269175,Apple Airpods Headphones,1,150,10/02/19 11:58,"677 Forest St, San Francisco, CA 94016" +269176,AA Batteries (4-pack),1,3.84,10/01/19 13:16,"520 Willow St, Portland, OR 97035" +269177,Lightning Charging Cable,1,14.95,10/31/19 08:00,"91 Willow St, New York City, NY 10001" +269178,Flatscreen TV,1,300,10/10/19 12:12,"153 2nd St, Los Angeles, CA 90001" +269179,Wired Headphones,1,11.99,10/07/19 15:12,"124 Adams St, Dallas, TX 75001" +269180,USB-C Charging Cable,1,11.95,10/27/19 15:07,"601 Church St, Atlanta, GA 30301" +269181,Google Phone,1,600,10/24/19 13:48,"674 13th St, Austin, TX 73301" +269181,USB-C Charging Cable,1,11.95,10/24/19 13:48,"674 13th St, Austin, TX 73301" +269182,USB-C Charging Cable,1,11.95,10/21/19 07:23,"240 14th St, Los Angeles, CA 90001" +269183,Wired Headphones,1,11.99,10/21/19 21:16,"531 11th St, Seattle, WA 98101" +269184,Lightning Charging Cable,1,14.95,10/28/19 03:32,"532 11th St, Boston, MA 02215" +269185,AA Batteries (4-pack),1,3.84,10/17/19 10:26,"529 Lake St, San Francisco, CA 94016" +269186,AA Batteries (4-pack),1,3.84,10/17/19 11:09,"699 South St, Los Angeles, CA 90001" +269187,Lightning Charging Cable,1,14.95,10/07/19 12:18,"941 10th St, New York City, NY 10001" +269188,AA Batteries (4-pack),2,3.84,10/18/19 05:18,"108 Lake St, San Francisco, CA 94016" +269189,ThinkPad Laptop,1,999.99,10/16/19 14:04,"208 Elm St, Los Angeles, CA 90001" +269190,Wired Headphones,1,11.99,10/05/19 16:13,"337 North St, Boston, MA 02215" +269191,Lightning Charging Cable,1,14.95,10/12/19 10:50,"231 Jefferson St, San Francisco, CA 94016" +269192,Google Phone,1,600,10/24/19 10:16,"683 Ridge St, Los Angeles, CA 90001" +269192,USB-C Charging Cable,1,11.95,10/24/19 10:16,"683 Ridge St, Los Angeles, CA 90001" +269193,AA Batteries (4-pack),1,3.84,10/28/19 13:52,"425 Maple St, San Francisco, CA 94016" +269194,USB-C Charging Cable,1,11.95,10/25/19 19:55,"110 Dogwood St, Dallas, TX 75001" +269195,Lightning Charging Cable,1,14.95,10/23/19 12:23,"255 8th St, San Francisco, CA 94016" +269196,Lightning Charging Cable,1,14.95,10/31/19 07:06,"939 Cedar St, Los Angeles, CA 90001" +269197,AA Batteries (4-pack),1,3.84,10/29/19 15:36,"87 Park St, Dallas, TX 75001" +269198,Apple Airpods Headphones,1,150,10/24/19 12:08,"193 11th St, San Francisco, CA 94016" +269199,Lightning Charging Cable,1,14.95,10/14/19 20:48,"476 Jackson St, Austin, TX 73301" +269200,Lightning Charging Cable,1,14.95,10/10/19 12:00,"121 Dogwood St, Atlanta, GA 30301" +269201,27in FHD Monitor,1,149.99,10/11/19 20:49,"587 Elm St, Austin, TX 73301" +269202,Wired Headphones,1,11.99,10/18/19 17:00,"758 Park St, San Francisco, CA 94016" +269203,ThinkPad Laptop,1,999.99,10/16/19 13:32,"849 Hickory St, Dallas, TX 75001" +269203,34in Ultrawide Monitor,1,379.99,10/16/19 13:32,"849 Hickory St, Dallas, TX 75001" +269204,27in 4K Gaming Monitor,1,389.99,10/14/19 12:25,"324 11th St, Dallas, TX 75001" +269205,USB-C Charging Cable,1,11.95,10/26/19 20:09,"175 Lake St, San Francisco, CA 94016" +269206,USB-C Charging Cable,3,11.95,10/08/19 11:17,"975 Pine St, Dallas, TX 75001" +269207,Bose SoundSport Headphones,1,99.99,10/22/19 12:56,"735 Willow St, Los Angeles, CA 90001" +269208,AA Batteries (4-pack),1,3.84,10/11/19 13:06,"801 Wilson St, San Francisco, CA 94016" +269209,AA Batteries (4-pack),1,3.84,10/31/19 12:01,"37 West St, San Francisco, CA 94016" +269210,27in FHD Monitor,1,149.99,10/08/19 10:37,"694 Pine St, Los Angeles, CA 90001" +269211,Bose SoundSport Headphones,1,99.99,10/01/19 18:27,"891 North St, New York City, NY 10001" +269212,AA Batteries (4-pack),1,3.84,10/05/19 09:48,"50 South St, Atlanta, GA 30301" +269213,20in Monitor,1,109.99,10/28/19 21:37,"585 13th St, Portland, OR 97035" +269214,Lightning Charging Cable,1,14.95,10/01/19 09:09,"215 Cedar St, Boston, MA 02215" +269215,Lightning Charging Cable,1,14.95,10/13/19 19:36,"281 Madison St, Dallas, TX 75001" +269216,Apple Airpods Headphones,1,150,10/08/19 19:44,"372 Ridge St, Seattle, WA 98101" +269217,Apple Airpods Headphones,1,150,10/09/19 14:11,"756 Johnson St, Portland, OR 97035" +269218,Lightning Charging Cable,2,14.95,10/11/19 23:27,"262 Washington St, Seattle, WA 98101" +269219,Wired Headphones,1,11.99,10/13/19 21:06,"915 9th St, San Francisco, CA 94016" +269220,Lightning Charging Cable,1,14.95,10/01/19 13:49,"458 Washington St, New York City, NY 10001" +269221,27in FHD Monitor,1,149.99,10/14/19 10:42,"787 7th St, Los Angeles, CA 90001" +269222,USB-C Charging Cable,1,11.95,10/27/19 17:20,"785 Cherry St, San Francisco, CA 94016" +269223,Apple Airpods Headphones,1,150,10/25/19 18:48,"38 Washington St, San Francisco, CA 94016" +269224,USB-C Charging Cable,2,11.95,10/08/19 20:08,"844 10th St, Portland, OR 97035" +269225,Wired Headphones,1,11.99,10/25/19 11:08,"453 Maple St, Los Angeles, CA 90001" +269226,AA Batteries (4-pack),1,3.84,10/12/19 14:42,"504 Church St, Boston, MA 02215" +269227,27in FHD Monitor,1,149.99,10/26/19 17:38,"618 Dogwood St, Seattle, WA 98101" +269228,iPhone,1,700,10/28/19 13:22,"362 10th St, New York City, NY 10001" +269229,USB-C Charging Cable,1,11.95,10/12/19 10:13,"66 Main St, San Francisco, CA 94016" +269230,AA Batteries (4-pack),1,3.84,10/06/19 02:57,"189 Sunset St, Dallas, TX 75001" +269231,Lightning Charging Cable,1,14.95,10/25/19 17:28,"724 Cedar St, San Francisco, CA 94016" +269232,AA Batteries (4-pack),4,3.84,10/09/19 09:33,"993 1st St, Portland, OR 97035" +269233,Lightning Charging Cable,1,14.95,10/14/19 21:51,"820 Forest St, Boston, MA 02215" +269234,USB-C Charging Cable,1,11.95,10/27/19 20:12,"430 North St, San Francisco, CA 94016" +269235,AA Batteries (4-pack),1,3.84,10/18/19 18:24,"964 Madison St, Boston, MA 02215" +269236,USB-C Charging Cable,1,11.95,10/30/19 11:35,"43 Washington St, Boston, MA 02215" +269236,AA Batteries (4-pack),2,3.84,10/30/19 11:35,"43 Washington St, Boston, MA 02215" +269237,Google Phone,1,600,10/26/19 16:15,"995 Main St, Portland, OR 97035" +269238,Apple Airpods Headphones,1,150,10/12/19 13:58,"620 Cedar St, Atlanta, GA 30301" +269239,Lightning Charging Cable,1,14.95,10/11/19 15:50,"879 River St, Portland, OR 97035" +269240,AA Batteries (4-pack),2,3.84,10/03/19 12:22,"131 Hickory St, San Francisco, CA 94016" +269241,Wired Headphones,1,11.99,10/17/19 16:25,"52 Johnson St, Dallas, TX 75001" +269242,USB-C Charging Cable,1,11.95,10/30/19 09:06,"431 Center St, New York City, NY 10001" +269243,34in Ultrawide Monitor,1,379.99,10/12/19 15:33,"229 Hill St, Dallas, TX 75001" +269244,AAA Batteries (4-pack),1,2.99,10/06/19 09:24,"308 Willow St, Austin, TX 73301" +269245,AAA Batteries (4-pack),1,2.99,10/31/19 08:18,"927 11th St, Portland, OR 97035" +269246,Bose SoundSport Headphones,1,99.99,10/13/19 10:01,"833 5th St, Portland, OR 97035" +269247,Wired Headphones,1,11.99,10/25/19 17:47,"248 Hill St, San Francisco, CA 94016" +269248,AAA Batteries (4-pack),1,2.99,10/02/19 08:46,"920 6th St, New York City, NY 10001" +269249,USB-C Charging Cable,2,11.95,10/18/19 08:48,"416 5th St, San Francisco, CA 94016" +269250,USB-C Charging Cable,1,11.95,10/02/19 13:53,"333 Chestnut St, Boston, MA 02215" +269251,USB-C Charging Cable,2,11.95,10/18/19 07:33,"546 Church St, Portland, OR 97035" +269252,Apple Airpods Headphones,1,150,10/10/19 17:37,"855 Highland St, New York City, NY 10001" +269253,Vareebadd Phone,1,400,10/08/19 05:13,"649 1st St, San Francisco, CA 94016" +269253,USB-C Charging Cable,2,11.95,10/08/19 05:13,"649 1st St, San Francisco, CA 94016" +269254,27in 4K Gaming Monitor,1,389.99,10/26/19 21:25,"42 Willow St, Dallas, TX 75001" +269255,AA Batteries (4-pack),1,3.84,10/10/19 18:36,"78 Johnson St, Seattle, WA 98101" +269256,Apple Airpods Headphones,1,150,10/07/19 13:20,"180 Elm St, Dallas, TX 75001" +269257,Macbook Pro Laptop,1,1700,10/16/19 18:18,"114 Adams St, Portland, OR 97035" +269258,Lightning Charging Cable,1,14.95,10/20/19 12:06,"209 Washington St, Atlanta, GA 30301" +269259,Bose SoundSport Headphones,1,99.99,10/22/19 18:29,"293 11th St, Los Angeles, CA 90001" +269260,Bose SoundSport Headphones,1,99.99,10/21/19 19:26,"242 Willow St, San Francisco, CA 94016" +269261,Lightning Charging Cable,1,14.95,10/16/19 10:38,"442 7th St, New York City, NY 10001" +269262,Apple Airpods Headphones,1,150,10/26/19 08:15,"320 South St, San Francisco, CA 94016" +269263,20in Monitor,1,109.99,10/08/19 09:14,"602 Sunset St, Portland, OR 97035" +269264,USB-C Charging Cable,1,11.95,10/09/19 09:42,"752 12th St, Boston, MA 02215" +269265,27in FHD Monitor,1,149.99,10/13/19 18:56,"529 Adams St, Seattle, WA 98101" +269266,Apple Airpods Headphones,1,150,10/04/19 08:48,"470 5th St, San Francisco, CA 94016" +269267,Macbook Pro Laptop,1,1700,10/28/19 18:21,"57 Park St, Seattle, WA 98101" +269268,USB-C Charging Cable,1,11.95,10/19/19 15:01,"710 Ridge St, Boston, MA 02215" +269269,Apple Airpods Headphones,1,150,10/22/19 20:11,"73 Walnut St, Atlanta, GA 30301" +269270,27in 4K Gaming Monitor,1,389.99,10/21/19 13:03,"185 Johnson St, Boston, MA 02215" +269271,AAA Batteries (4-pack),3,2.99,10/24/19 03:46,"358 West St, New York City, NY 10001" +269272,Google Phone,1,600,10/08/19 13:29,"765 Hill St, Austin, TX 73301" +269272,USB-C Charging Cable,1,11.95,10/08/19 13:29,"765 Hill St, Austin, TX 73301" +269273,Lightning Charging Cable,1,14.95,10/09/19 10:39,"193 Cedar St, Austin, TX 73301" +269274,20in Monitor,1,109.99,10/04/19 16:29,"414 North St, Atlanta, GA 30301" +269275,Lightning Charging Cable,1,14.95,10/29/19 10:31,"992 6th St, Los Angeles, CA 90001" +269276,Macbook Pro Laptop,1,1700,10/06/19 22:36,"397 Cherry St, San Francisco, CA 94016" +269277,27in 4K Gaming Monitor,1,389.99,10/15/19 13:28,"553 8th St, Dallas, TX 75001" +269278,Google Phone,1,600,10/11/19 21:06,"836 Main St, Dallas, TX 75001" +269278,USB-C Charging Cable,1,11.95,10/11/19 21:06,"836 Main St, Dallas, TX 75001" +269279,ThinkPad Laptop,1,999.99,10/03/19 19:59,"359 8th St, Atlanta, GA 30301" +269280,USB-C Charging Cable,1,11.95,10/03/19 10:47,"155 Main St, San Francisco, CA 94016" +269281,AA Batteries (4-pack),2,3.84,10/21/19 11:38,"702 Sunset St, Portland, OR 97035" +269282,Flatscreen TV,1,300,10/19/19 00:31,"836 4th St, Dallas, TX 75001" +269283,Apple Airpods Headphones,1,150,10/29/19 11:53,"286 8th St, San Francisco, CA 94016" +269284,Lightning Charging Cable,1,14.95,10/24/19 10:41,"159 Meadow St, Los Angeles, CA 90001" +269285,27in 4K Gaming Monitor,1,389.99,10/20/19 20:49,"945 Hill St, Los Angeles, CA 90001" +269286,AAA Batteries (4-pack),1,2.99,10/13/19 10:36,"404 Willow St, New York City, NY 10001" +269287,27in 4K Gaming Monitor,1,389.99,10/27/19 20:47,"988 South St, New York City, NY 10001" +269288,Google Phone,1,600,10/31/19 21:17,"404 Lake St, Los Angeles, CA 90001" +269289,AA Batteries (4-pack),1,3.84,10/15/19 17:00,"557 12th St, Los Angeles, CA 90001" +269290,USB-C Charging Cable,1,11.95,10/29/19 22:39,"938 Sunset St, New York City, NY 10001" +269291,USB-C Charging Cable,1,11.95,10/13/19 19:16,"585 7th St, San Francisco, CA 94016" +269292,USB-C Charging Cable,1,11.95,10/14/19 11:35,"388 7th St, Atlanta, GA 30301" +269293,AAA Batteries (4-pack),1,2.99,10/30/19 13:29,"890 Dogwood St, New York City, NY 10001" +269294,Apple Airpods Headphones,1,150,10/29/19 18:08,"721 Hill St, Portland, OR 97035" +269295,Lightning Charging Cable,1,14.95,10/10/19 19:20,"886 11th St, New York City, NY 10001" +269296,LG Washing Machine,1,600.0,10/11/19 09:01,"803 Meadow St, Los Angeles, CA 90001" +269297,Flatscreen TV,1,300,10/17/19 07:29,"77 5th St, Dallas, TX 75001" +269298,Apple Airpods Headphones,1,150,10/29/19 14:55,"198 Washington St, Los Angeles, CA 90001" +269299,Lightning Charging Cable,1,14.95,10/27/19 14:45,"515 6th St, Boston, MA 02215" +269299,iPhone,1,700,10/27/19 14:45,"515 6th St, Boston, MA 02215" +269300,USB-C Charging Cable,1,11.95,10/16/19 20:03,"263 Jefferson St, San Francisco, CA 94016" +269301,ThinkPad Laptop,1,999.99,10/29/19 10:47,"629 13th St, Los Angeles, CA 90001" +269302,Lightning Charging Cable,1,14.95,10/22/19 08:12,"40 Washington St, Austin, TX 73301" +269303,ThinkPad Laptop,1,999.99,10/13/19 19:34,"943 9th St, Boston, MA 02215" +269304,ThinkPad Laptop,1,999.99,10/03/19 14:18,"238 River St, Los Angeles, CA 90001" +269305,Macbook Pro Laptop,1,1700,10/11/19 11:10,"585 7th St, Los Angeles, CA 90001" +269306,20in Monitor,1,109.99,10/01/19 14:08,"955 14th St, San Francisco, CA 94016" +269307,27in FHD Monitor,1,149.99,10/08/19 09:05,"972 Adams St, Boston, MA 02215" +269308,AA Batteries (4-pack),1,3.84,10/19/19 08:05,"237 7th St, Dallas, TX 75001" +269309,AAA Batteries (4-pack),3,2.99,10/28/19 19:52,"618 1st St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +269310,20in Monitor,1,109.99,10/25/19 20:14,"805 Church St, Portland, OR 97035" +269311,Bose SoundSport Headphones,1,99.99,10/15/19 12:06,"940 Cherry St, Dallas, TX 75001" +269312,AA Batteries (4-pack),1,3.84,10/17/19 19:06,"855 7th St, Atlanta, GA 30301" +269313,34in Ultrawide Monitor,1,379.99,10/08/19 17:23,"518 West St, Portland, OR 97035" +269314,AA Batteries (4-pack),1,3.84,10/28/19 22:52,"140 Lake St, Austin, TX 73301" +269315,20in Monitor,1,109.99,10/20/19 20:04,"864 Meadow St, Seattle, WA 98101" +269316,AAA Batteries (4-pack),1,2.99,10/31/19 19:34,"648 Pine St, New York City, NY 10001" +269317,20in Monitor,1,109.99,10/03/19 18:33,"381 Hickory St, San Francisco, CA 94016" +269318,Wired Headphones,1,11.99,10/01/19 13:03,"575 Highland St, Atlanta, GA 30301" +269319,AA Batteries (4-pack),2,3.84,10/05/19 06:55,"22 Lake St, Austin, TX 73301" +269320,ThinkPad Laptop,1,999.99,10/06/19 15:29,"587 6th St, New York City, NY 10001" +269321,Lightning Charging Cable,1,14.95,10/04/19 13:25,"150 Johnson St, New York City, NY 10001" +269322,Wired Headphones,1,11.99,10/28/19 21:32,"394 South St, Atlanta, GA 30301" +269323,Wired Headphones,1,11.99,10/21/19 15:24,"552 Meadow St, Boston, MA 02215" +269324,34in Ultrawide Monitor,1,379.99,10/02/19 09:34,"323 Jackson St, New York City, NY 10001" +269325,Apple Airpods Headphones,1,150,10/10/19 11:31,"854 Johnson St, Portland, ME 04101" +269326,USB-C Charging Cable,1,11.95,10/13/19 22:57,"710 Park St, New York City, NY 10001" +269327,iPhone,1,700,10/06/19 15:39,"123 Highland St, New York City, NY 10001" +269327,Lightning Charging Cable,1,14.95,10/06/19 15:39,"123 Highland St, New York City, NY 10001" +269328,LG Dryer,1,600.0,10/28/19 22:51,"712 8th St, Boston, MA 02215" +269329,Lightning Charging Cable,1,14.95,10/25/19 19:28,"165 River St, Portland, OR 97035" +269330,Wired Headphones,1,11.99,10/25/19 14:21,"477 North St, New York City, NY 10001" +269331,USB-C Charging Cable,1,11.95,10/02/19 10:15,"688 Meadow St, Boston, MA 02215" +269332,Bose SoundSport Headphones,1,99.99,10/04/19 16:18,"544 7th St, San Francisco, CA 94016" +269333,27in 4K Gaming Monitor,1,389.99,10/10/19 22:36,"483 9th St, San Francisco, CA 94016" +269334,AA Batteries (4-pack),1,3.84,10/13/19 11:44,"775 10th St, Portland, OR 97035" +269335,Wired Headphones,1,11.99,10/28/19 23:31,"701 10th St, Boston, MA 02215" +269336,Apple Airpods Headphones,1,150,10/29/19 12:01,"129 Lincoln St, New York City, NY 10001" +269337,27in FHD Monitor,1,149.99,10/31/19 12:11,"104 Spruce St, San Francisco, CA 94016" +269338,AA Batteries (4-pack),1,3.84,10/24/19 22:02,"167 Walnut St, Seattle, WA 98101" +269339,Wired Headphones,1,11.99,10/14/19 18:27,"973 10th St, San Francisco, CA 94016" +269340,Flatscreen TV,1,300,10/27/19 18:43,"720 South St, Dallas, TX 75001" +269341,Wired Headphones,1,11.99,10/03/19 18:48,"318 7th St, Atlanta, GA 30301" +269342,Apple Airpods Headphones,1,150,10/24/19 13:55,"712 Spruce St, San Francisco, CA 94016" +269343,USB-C Charging Cable,1,11.95,10/19/19 23:20,"351 7th St, New York City, NY 10001" +269344,Apple Airpods Headphones,1,150,10/23/19 17:58,"518 Park St, New York City, NY 10001" +269345,USB-C Charging Cable,2,11.95,10/26/19 01:21,"163 Elm St, Portland, OR 97035" +269346,Wired Headphones,1,11.99,10/19/19 18:37,"118 Walnut St, San Francisco, CA 94016" +269347,Bose SoundSport Headphones,1,99.99,10/31/19 11:30,"230 Washington St, New York City, NY 10001" +269348,Lightning Charging Cable,1,14.95,10/21/19 12:31,"502 11th St, Los Angeles, CA 90001" +269349,Lightning Charging Cable,1,14.95,10/02/19 03:19,"784 Hill St, Dallas, TX 75001" +269350,Wired Headphones,1,11.99,10/13/19 08:20,"69 8th St, San Francisco, CA 94016" +269351,USB-C Charging Cable,1,11.95,10/11/19 15:23,"27 Lake St, Atlanta, GA 30301" +269352,Lightning Charging Cable,1,14.95,10/02/19 12:45,"61 West St, San Francisco, CA 94016" +269353,AA Batteries (4-pack),1,3.84,10/28/19 11:31,"26 Elm St, San Francisco, CA 94016" +269354,AAA Batteries (4-pack),2,2.99,10/05/19 07:46,"161 Church St, Atlanta, GA 30301" +269355,AA Batteries (4-pack),1,3.84,10/25/19 17:26,"365 1st St, New York City, NY 10001" +269356,Lightning Charging Cable,1,14.95,10/02/19 08:50,"943 Park St, New York City, NY 10001" +269357,LG Dryer,1,600.0,10/14/19 11:24,"789 West St, New York City, NY 10001" +269358,Macbook Pro Laptop,1,1700,10/27/19 22:44,"196 Sunset St, Portland, OR 97035" +269359,AAA Batteries (4-pack),1,2.99,10/11/19 16:13,"262 1st St, Dallas, TX 75001" +269360,Wired Headphones,1,11.99,10/25/19 23:37,"133 Church St, San Francisco, CA 94016" +269361,AAA Batteries (4-pack),1,2.99,10/28/19 08:29,"438 5th St, Atlanta, GA 30301" +269362,Wired Headphones,1,11.99,10/21/19 16:18,"475 7th St, New York City, NY 10001" +269363,AA Batteries (4-pack),3,3.84,10/16/19 23:33,"314 Spruce St, Boston, MA 02215" +269364,Bose SoundSport Headphones,1,99.99,10/07/19 10:40,"561 9th St, San Francisco, CA 94016" +269365,Bose SoundSport Headphones,1,99.99,10/11/19 20:13,"689 Maple St, Los Angeles, CA 90001" +269366,Macbook Pro Laptop,1,1700,10/09/19 12:14,"377 10th St, Seattle, WA 98101" +269367,Lightning Charging Cable,1,14.95,10/09/19 10:36,"799 West St, San Francisco, CA 94016" +269368,Flatscreen TV,1,300,10/06/19 18:33,"741 Cherry St, Atlanta, GA 30301" +269369,27in FHD Monitor,1,149.99,10/15/19 23:44,"501 Forest St, Seattle, WA 98101" +269370,Flatscreen TV,1,300,10/01/19 11:24,"374 Adams St, San Francisco, CA 94016" +269371,Bose SoundSport Headphones,1,99.99,10/06/19 11:43,"78 1st St, Los Angeles, CA 90001" +269372,27in FHD Monitor,1,149.99,10/20/19 11:16,"65 West St, San Francisco, CA 94016" +269373,34in Ultrawide Monitor,1,379.99,10/05/19 20:23,"101 Dogwood St, San Francisco, CA 94016" +269374,USB-C Charging Cable,1,11.95,10/30/19 15:34,"781 Washington St, Dallas, TX 75001" +269375,Flatscreen TV,1,300,10/30/19 09:48,"534 Willow St, New York City, NY 10001" +269376,iPhone,1,700,10/16/19 12:53,"234 Cedar St, Portland, OR 97035" +269377,Wired Headphones,1,11.99,10/08/19 00:36,"246 12th St, Seattle, WA 98101" +269378,Lightning Charging Cable,1,14.95,10/23/19 10:49,"634 Church St, New York City, NY 10001" +269379,27in FHD Monitor,1,149.99,10/04/19 13:04,"983 10th St, Boston, MA 02215" +269380,AA Batteries (4-pack),2,3.84,10/25/19 10:18,"554 Dogwood St, Atlanta, GA 30301" +269381,Apple Airpods Headphones,1,150,10/28/19 18:53,"245 1st St, Portland, OR 97035" +269382,Flatscreen TV,1,300,10/31/19 17:52,"68 13th St, San Francisco, CA 94016" +269383,AA Batteries (4-pack),1,3.84,10/23/19 18:29,"982 2nd St, San Francisco, CA 94016" +269384,USB-C Charging Cable,1,11.95,10/09/19 13:44,"230 Wilson St, Atlanta, GA 30301" +269384,Macbook Pro Laptop,1,1700,10/09/19 13:44,"230 Wilson St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +269385,Flatscreen TV,1,300,10/22/19 19:27,"143 South St, San Francisco, CA 94016" +269386,Bose SoundSport Headphones,1,99.99,10/24/19 12:05,"695 13th St, Los Angeles, CA 90001" +269387,Bose SoundSport Headphones,1,99.99,10/05/19 15:12,"994 Jackson St, Portland, OR 97035" +269388,Bose SoundSport Headphones,1,99.99,10/07/19 21:45,"502 Dogwood St, New York City, NY 10001" +269389,USB-C Charging Cable,1,11.95,10/31/19 11:28,"254 11th St, Seattle, WA 98101" +269390,Macbook Pro Laptop,1,1700,10/04/19 10:21,"228 5th St, Boston, MA 02215" +269391,27in 4K Gaming Monitor,1,389.99,10/18/19 09:18,"345 Walnut St, Austin, TX 73301" +269392,27in FHD Monitor,1,149.99,10/21/19 01:02,"409 Main St, New York City, NY 10001" +269393,USB-C Charging Cable,1,11.95,10/15/19 09:07,"430 14th St, Atlanta, GA 30301" +269394,Lightning Charging Cable,1,14.95,10/21/19 22:06,"838 Center St, Los Angeles, CA 90001" +269395,ThinkPad Laptop,1,999.99,10/30/19 11:06,"459 Main St, San Francisco, CA 94016" +269396,AAA Batteries (4-pack),1,2.99,10/14/19 13:46,"262 Spruce St, San Francisco, CA 94016" +269397,Lightning Charging Cable,1,14.95,10/26/19 12:51,"833 Johnson St, Portland, OR 97035" +269398,USB-C Charging Cable,1,11.95,10/19/19 12:52,"482 Adams St, Boston, MA 02215" +269399,AA Batteries (4-pack),1,3.84,10/28/19 20:21,"222 Center St, Atlanta, GA 30301" +269400,AAA Batteries (4-pack),1,2.99,10/05/19 09:47,"40 4th St, San Francisco, CA 94016" +269401,AA Batteries (4-pack),1,3.84,10/09/19 22:55,"178 Jackson St, Los Angeles, CA 90001" +269402,Lightning Charging Cable,1,14.95,10/31/19 08:14,"1 Walnut St, San Francisco, CA 94016" +269403,27in 4K Gaming Monitor,1,389.99,10/26/19 14:34,"511 Ridge St, Los Angeles, CA 90001" +269404,Lightning Charging Cable,1,14.95,10/11/19 21:21,"798 Jefferson St, Los Angeles, CA 90001" +269405,Wired Headphones,1,11.99,10/08/19 09:13,"576 12th St, New York City, NY 10001" +269406,USB-C Charging Cable,1,11.95,10/29/19 20:08,"611 Washington St, Boston, MA 02215" +269407,Apple Airpods Headphones,1,150,10/20/19 16:38,"524 South St, Dallas, TX 75001" +269408,Lightning Charging Cable,1,14.95,10/13/19 19:55,"649 9th St, Los Angeles, CA 90001" +269409,Wired Headphones,1,11.99,10/06/19 09:46,"43 Johnson St, Boston, MA 02215" +269410,AAA Batteries (4-pack),1,2.99,10/05/19 18:38,"572 Church St, Atlanta, GA 30301" +269411,Vareebadd Phone,1,400,10/15/19 08:48,"539 Walnut St, Los Angeles, CA 90001" +269412,Lightning Charging Cable,1,14.95,10/13/19 12:56,"93 Highland St, Los Angeles, CA 90001" +269413,Lightning Charging Cable,1,14.95,10/02/19 16:59,"137 Main St, San Francisco, CA 94016" +269414,Wired Headphones,1,11.99,10/19/19 14:04,"523 Park St, New York City, NY 10001" +269415,34in Ultrawide Monitor,1,379.99,10/22/19 11:35,"93 5th St, San Francisco, CA 94016" +269416,27in 4K Gaming Monitor,1,389.99,10/02/19 11:12,"475 6th St, San Francisco, CA 94016" +269417,34in Ultrawide Monitor,1,379.99,10/30/19 17:29,"913 6th St, San Francisco, CA 94016" +269418,34in Ultrawide Monitor,1,379.99,10/27/19 14:13,"606 9th St, Atlanta, GA 30301" +269419,Bose SoundSport Headphones,1,99.99,10/13/19 20:41,"171 North St, Los Angeles, CA 90001" +269420,20in Monitor,1,109.99,10/17/19 11:59,"742 Forest St, Atlanta, GA 30301" +269421,Vareebadd Phone,1,400,10/18/19 21:04,"310 7th St, New York City, NY 10001" +269422,Wired Headphones,1,11.99,10/03/19 11:15,"417 11th St, Los Angeles, CA 90001" +269423,34in Ultrawide Monitor,1,379.99,10/13/19 15:45,"937 Madison St, Boston, MA 02215" +269424,27in 4K Gaming Monitor,1,389.99,10/18/19 18:44,"345 Dogwood St, Seattle, WA 98101" +269425,Apple Airpods Headphones,1,150,10/31/19 19:18,"36 Church St, Portland, ME 04101" +269426,AAA Batteries (4-pack),4,2.99,10/21/19 15:36,"801 Maple St, Atlanta, GA 30301" +269427,Apple Airpods Headphones,1,150,10/18/19 21:24,"976 Church St, San Francisco, CA 94016" +269428,Lightning Charging Cable,1,14.95,10/11/19 09:27,"214 Spruce St, San Francisco, CA 94016" +269429,34in Ultrawide Monitor,1,379.99,10/07/19 10:18,"319 9th St, New York City, NY 10001" +269430,AAA Batteries (4-pack),2,2.99,10/18/19 16:45,"689 Pine St, San Francisco, CA 94016" +269431,Bose SoundSport Headphones,1,99.99,10/30/19 20:56,"54 Lake St, San Francisco, CA 94016" +269432,ThinkPad Laptop,1,999.99,10/08/19 10:04,"150 River St, Atlanta, GA 30301" +269433,AA Batteries (4-pack),2,3.84,10/18/19 21:25,"213 Church St, Austin, TX 73301" +269434,AA Batteries (4-pack),1,3.84,10/26/19 23:43,"363 Walnut St, San Francisco, CA 94016" +269435,USB-C Charging Cable,1,11.95,10/13/19 17:35,"561 Hickory St, San Francisco, CA 94016" +269436,27in FHD Monitor,1,149.99,10/03/19 22:20,"676 Walnut St, Austin, TX 73301" +269437,USB-C Charging Cable,1,11.95,10/22/19 12:30,"351 Sunset St, Seattle, WA 98101" +269438,Apple Airpods Headphones,1,150,10/07/19 14:49,"466 Elm St, Seattle, WA 98101" +269439,AAA Batteries (4-pack),3,2.99,10/19/19 10:10,"464 Park St, Los Angeles, CA 90001" +269440,iPhone,1,700,10/29/19 14:16,"912 Highland St, Dallas, TX 75001" +269441,AAA Batteries (4-pack),1,2.99,10/16/19 13:18,"586 West St, San Francisco, CA 94016" +269442,Google Phone,1,600,10/10/19 19:17,"707 Ridge St, Boston, MA 02215" +269443,Bose SoundSport Headphones,1,99.99,10/21/19 14:21,"885 Wilson St, San Francisco, CA 94016" +269444,AAA Batteries (4-pack),1,2.99,10/27/19 15:05,"457 Pine St, Boston, MA 02215" +269445,Wired Headphones,1,11.99,10/24/19 10:48,"199 5th St, Los Angeles, CA 90001" +269446,Lightning Charging Cable,1,14.95,10/22/19 19:01,"390 Forest St, San Francisco, CA 94016" +269447,USB-C Charging Cable,1,11.95,10/17/19 00:44,"812 Johnson St, Los Angeles, CA 90001" +269448,AA Batteries (4-pack),2,3.84,10/03/19 15:27,"211 Madison St, Atlanta, GA 30301" +269449,AA Batteries (4-pack),2,3.84,10/15/19 22:20,"328 Adams St, San Francisco, CA 94016" +269449,AA Batteries (4-pack),1,3.84,10/15/19 22:20,"328 Adams St, San Francisco, CA 94016" +269450,AAA Batteries (4-pack),1,2.99,10/07/19 14:37,"262 West St, Los Angeles, CA 90001" +269451,AAA Batteries (4-pack),1,2.99,10/23/19 12:25,"270 2nd St, New York City, NY 10001" +269452,Apple Airpods Headphones,1,150,10/22/19 13:05,"784 2nd St, San Francisco, CA 94016" +269453,27in 4K Gaming Monitor,1,389.99,10/02/19 10:02,"110 Chestnut St, Atlanta, GA 30301" +269454,Apple Airpods Headphones,1,150,10/01/19 16:10,"998 7th St, New York City, NY 10001" +269455,Apple Airpods Headphones,1,150,10/20/19 18:07,"401 12th St, San Francisco, CA 94016" +269456,Bose SoundSport Headphones,1,99.99,10/05/19 19:46,"579 Madison St, Portland, OR 97035" +269457,Lightning Charging Cable,1,14.95,10/01/19 18:08,"232 Sunset St, San Francisco, CA 94016" +269458,iPhone,1,700,10/12/19 20:12,"461 Hill St, Atlanta, GA 30301" +269459,Lightning Charging Cable,1,14.95,10/09/19 11:18,"358 4th St, Dallas, TX 75001" +269460,Apple Airpods Headphones,1,150,10/16/19 09:18,"722 Lake St, Los Angeles, CA 90001" +269460,AA Batteries (4-pack),1,3.84,10/16/19 09:18,"722 Lake St, Los Angeles, CA 90001" +269461,Wired Headphones,1,11.99,10/22/19 09:21,"493 Elm St, Portland, OR 97035" +269462,Lightning Charging Cable,1,14.95,10/14/19 19:41,"200 14th St, Los Angeles, CA 90001" +269463,Google Phone,1,600,10/17/19 07:56,"681 14th St, San Francisco, CA 94016" +269464,Bose SoundSport Headphones,1,99.99,10/27/19 13:00,"823 Meadow St, San Francisco, CA 94016" +269465,Bose SoundSport Headphones,1,99.99,10/22/19 12:34,"450 Cherry St, New York City, NY 10001" +269466,Bose SoundSport Headphones,1,99.99,10/31/19 10:56,"351 River St, Dallas, TX 75001" +269467,AA Batteries (4-pack),1,3.84,10/03/19 10:00,"773 Hill St, San Francisco, CA 94016" +269468,27in FHD Monitor,1,149.99,10/03/19 16:11,"746 River St, New York City, NY 10001" +269469,Bose SoundSport Headphones,1,99.99,10/24/19 10:16,"77 Sunset St, Los Angeles, CA 90001" +269470,27in FHD Monitor,1,149.99,10/04/19 16:10,"80 Park St, San Francisco, CA 94016" +269471,AAA Batteries (4-pack),1,2.99,10/01/19 18:03,"907 7th St, Dallas, TX 75001" +269472,USB-C Charging Cable,2,11.95,11/01/19 00:22,"405 Adams St, San Francisco, CA 94016" +269473,USB-C Charging Cable,1,11.95,10/23/19 12:42,"829 South St, Seattle, WA 98101" +,,,,, +269474,27in FHD Monitor,1,149.99,10/03/19 22:11,"648 West St, New York City, NY 10001" +269475,Apple Airpods Headphones,1,150,10/06/19 11:47,"301 West St, San Francisco, CA 94016" +269476,AA Batteries (4-pack),1,3.84,10/28/19 14:26,"874 7th St, Los Angeles, CA 90001" +269477,27in 4K Gaming Monitor,1,389.99,10/23/19 09:11,"804 1st St, New York City, NY 10001" +269478,Vareebadd Phone,1,400,10/17/19 17:26,"882 Adams St, San Francisco, CA 94016" +269479,Lightning Charging Cable,1,14.95,10/31/19 20:32,"82 Hickory St, Seattle, WA 98101" +269480,Bose SoundSport Headphones,1,99.99,10/04/19 19:21,"844 North St, Boston, MA 02215" +269481,Lightning Charging Cable,1,14.95,10/15/19 21:51,"571 Hill St, Los Angeles, CA 90001" +269482,AA Batteries (4-pack),1,3.84,10/03/19 18:24,"243 Washington St, Atlanta, GA 30301" +269483,USB-C Charging Cable,1,11.95,10/18/19 15:38,"207 Adams St, Boston, MA 02215" +269484,AA Batteries (4-pack),3,3.84,10/29/19 19:54,"445 Dogwood St, Seattle, WA 98101" +269485,iPhone,1,700,10/07/19 16:33,"340 Wilson St, Austin, TX 73301" +269486,34in Ultrawide Monitor,1,379.99,10/04/19 21:40,"458 Dogwood St, Los Angeles, CA 90001" +269487,AA Batteries (4-pack),1,3.84,10/20/19 10:21,"407 Walnut St, San Francisco, CA 94016" +269488,Bose SoundSport Headphones,1,99.99,10/28/19 14:02,"209 Park St, New York City, NY 10001" +269489,Lightning Charging Cable,1,14.95,10/20/19 14:26,"80 1st St, Seattle, WA 98101" +269490,AA Batteries (4-pack),1,3.84,10/07/19 16:00,"286 11th St, Los Angeles, CA 90001" +269491,Lightning Charging Cable,1,14.95,10/29/19 14:09,"864 Center St, San Francisco, CA 94016" +269492,AAA Batteries (4-pack),1,2.99,10/25/19 03:12,"870 Maple St, Dallas, TX 75001" +269493,27in FHD Monitor,1,149.99,10/08/19 21:27,"178 Cedar St, Los Angeles, CA 90001" +269494,Bose SoundSport Headphones,1,99.99,10/23/19 13:26,"126 Lakeview St, New York City, NY 10001" +269495,iPhone,1,700,10/19/19 16:57,"293 10th St, San Francisco, CA 94016" +269496,USB-C Charging Cable,1,11.95,10/30/19 12:04,"746 Park St, New York City, NY 10001" +269497,Flatscreen TV,1,300,10/20/19 22:42,"581 7th St, Seattle, WA 98101" +269497,USB-C Charging Cable,1,11.95,10/20/19 22:42,"581 7th St, Seattle, WA 98101" +269498,iPhone,1,700,10/11/19 15:16,"498 5th St, Dallas, TX 75001" +269499,AA Batteries (4-pack),1,3.84,10/03/19 18:28,"181 Walnut St, New York City, NY 10001" +269500,USB-C Charging Cable,1,11.95,10/05/19 20:14,"97 Willow St, New York City, NY 10001" +269501,34in Ultrawide Monitor,1,379.99,10/17/19 16:51,"940 13th St, New York City, NY 10001" +269502,34in Ultrawide Monitor,1,379.99,10/30/19 22:32,"222 7th St, Los Angeles, CA 90001" +269503,AA Batteries (4-pack),1,3.84,10/30/19 22:21,"810 14th St, San Francisco, CA 94016" +269504,Lightning Charging Cable,1,14.95,10/18/19 16:47,"200 North St, San Francisco, CA 94016" +269505,USB-C Charging Cable,1,11.95,10/24/19 08:38,"831 West St, Los Angeles, CA 90001" +269505,AA Batteries (4-pack),2,3.84,10/24/19 08:38,"831 West St, Los Angeles, CA 90001" +269506,Wired Headphones,1,11.99,10/01/19 21:58,"463 9th St, Los Angeles, CA 90001" +269507,AA Batteries (4-pack),3,3.84,10/17/19 10:41,"999 Willow St, San Francisco, CA 94016" +269508,AAA Batteries (4-pack),2,2.99,10/19/19 11:50,"153 4th St, San Francisco, CA 94016" +269509,USB-C Charging Cable,1,11.95,10/09/19 21:55,"919 Forest St, Dallas, TX 75001" +269510,Macbook Pro Laptop,1,1700,10/27/19 09:46,"911 Ridge St, Seattle, WA 98101" +269511,AAA Batteries (4-pack),1,2.99,10/01/19 18:30,"123 Ridge St, Los Angeles, CA 90001" +269512,AA Batteries (4-pack),1,3.84,10/27/19 14:38,"849 Hickory St, Dallas, TX 75001" +269513,Apple Airpods Headphones,1,150,10/24/19 14:51,"54 Church St, San Francisco, CA 94016" +269514,34in Ultrawide Monitor,1,379.99,10/23/19 19:12,"875 Pine St, New York City, NY 10001" +269515,Lightning Charging Cable,1,14.95,10/25/19 10:42,"347 Jefferson St, Austin, TX 73301" +269516,AA Batteries (4-pack),2,3.84,10/05/19 01:38,"386 Dogwood St, Los Angeles, CA 90001" +269517,Apple Airpods Headphones,1,150,10/20/19 12:15,"733 10th St, San Francisco, CA 94016" +269518,AA Batteries (4-pack),1,3.84,10/17/19 22:38,"916 1st St, New York City, NY 10001" +269519,Apple Airpods Headphones,1,150,10/05/19 20:17,"610 1st St, Atlanta, GA 30301" +269520,Apple Airpods Headphones,1,150,10/27/19 12:38,"792 Lincoln St, Atlanta, GA 30301" +269521,Google Phone,1,600,10/24/19 07:14,"243 Forest St, Boston, MA 02215" +269522,Bose SoundSport Headphones,1,99.99,10/17/19 16:36,"206 7th St, Atlanta, GA 30301" +269523,iPhone,1,700,10/30/19 12:37,"28 Highland St, Portland, OR 97035" +269524,Macbook Pro Laptop,1,1700,10/15/19 16:34,"657 Adams St, New York City, NY 10001" +269525,Wired Headphones,1,11.99,10/19/19 19:35,"411 Lakeview St, San Francisco, CA 94016" +269526,Wired Headphones,1,11.99,10/05/19 20:39,"456 Elm St, Seattle, WA 98101" +269527,Lightning Charging Cable,1,14.95,10/17/19 19:06,"188 West St, Dallas, TX 75001" +269528,USB-C Charging Cable,1,11.95,10/12/19 14:45,"784 Meadow St, Boston, MA 02215" +269529,20in Monitor,1,109.99,10/20/19 00:36,"105 Hickory St, San Francisco, CA 94016" +269530,AA Batteries (4-pack),1,3.84,10/06/19 12:06,"229 7th St, Los Angeles, CA 90001" +269531,AA Batteries (4-pack),1,3.84,10/01/19 15:59,"184 Jackson St, Los Angeles, CA 90001" +269532,AAA Batteries (4-pack),3,2.99,10/04/19 21:22,"402 Madison St, Los Angeles, CA 90001" +269533,AA Batteries (4-pack),1,3.84,10/18/19 13:05,"456 Center St, San Francisco, CA 94016" +269534,Bose SoundSport Headphones,1,99.99,10/02/19 19:20,"902 Forest St, Dallas, TX 75001" +269535,Wired Headphones,2,11.99,10/19/19 13:03,"987 Dogwood St, Seattle, WA 98101" +269536,USB-C Charging Cable,1,11.95,10/16/19 16:30,"245 7th St, Los Angeles, CA 90001" +269537,Apple Airpods Headphones,1,150,10/18/19 14:30,"817 8th St, San Francisco, CA 94016" +269538,Wired Headphones,1,11.99,10/22/19 10:57,"956 Wilson St, Atlanta, GA 30301" +269539,Lightning Charging Cable,1,14.95,10/16/19 12:41,"319 Main St, Seattle, WA 98101" +269540,Lightning Charging Cable,1,14.95,10/08/19 20:14,"220 Elm St, San Francisco, CA 94016" +269541,Macbook Pro Laptop,1,1700,10/30/19 21:45,"349 Lincoln St, Austin, TX 73301" +269542,27in FHD Monitor,1,149.99,10/29/19 10:55,"702 11th St, San Francisco, CA 94016" +269543,USB-C Charging Cable,1,11.95,10/29/19 21:50,"172 Johnson St, Atlanta, GA 30301" +269544,Lightning Charging Cable,1,14.95,10/23/19 16:44,"153 12th St, Dallas, TX 75001" +269545,Wired Headphones,1,11.99,10/30/19 21:22,"71 Lake St, Dallas, TX 75001" +269546,Apple Airpods Headphones,1,150,10/12/19 10:37,"5 Lake St, New York City, NY 10001" +269547,AAA Batteries (4-pack),1,2.99,10/29/19 14:09,"950 7th St, Los Angeles, CA 90001" +269548,27in FHD Monitor,1,149.99,10/14/19 06:46,"148 8th St, New York City, NY 10001" +269549,Lightning Charging Cable,1,14.95,10/28/19 10:53,"406 Cedar St, San Francisco, CA 94016" +269550,AA Batteries (4-pack),1,3.84,10/25/19 23:07,"545 Cherry St, Austin, TX 73301" +269551,AA Batteries (4-pack),2,3.84,10/06/19 14:40,"347 9th St, Los Angeles, CA 90001" +269552,34in Ultrawide Monitor,1,379.99,10/14/19 22:35,"489 Jackson St, San Francisco, CA 94016" +269553,USB-C Charging Cable,1,11.95,10/18/19 22:09,"264 Forest St, New York City, NY 10001" +269554,USB-C Charging Cable,1,11.95,10/15/19 20:50,"21 10th St, Dallas, TX 75001" +269555,iPhone,1,700,10/30/19 09:27,"687 Meadow St, Los Angeles, CA 90001" +269556,Wired Headphones,2,11.99,10/01/19 07:48,"458 13th St, San Francisco, CA 94016" +269557,USB-C Charging Cable,1,11.95,10/31/19 09:36,"650 Sunset St, Los Angeles, CA 90001" +269558,Apple Airpods Headphones,1,150,10/25/19 20:04,"780 Lakeview St, Los Angeles, CA 90001" +269559,AAA Batteries (4-pack),2,2.99,10/15/19 12:39,"937 4th St, San Francisco, CA 94016" +269560,Bose SoundSport Headphones,1,99.99,10/04/19 12:09,"101 Adams St, Portland, OR 97035" +269561,Apple Airpods Headphones,1,150,10/10/19 17:49,"669 Main St, New York City, NY 10001" +269562,Bose SoundSport Headphones,1,99.99,10/05/19 00:13,"581 Hickory St, Portland, OR 97035" +269563,AA Batteries (4-pack),1,3.84,10/02/19 11:40,"972 6th St, San Francisco, CA 94016" +269564,Macbook Pro Laptop,1,1700,10/18/19 10:49,"89 Adams St, San Francisco, CA 94016" +269565,LG Washing Machine,1,600.0,10/18/19 13:09,"272 Adams St, New York City, NY 10001" +269566,Lightning Charging Cable,1,14.95,10/12/19 12:11,"368 Willow St, Seattle, WA 98101" +269567,Wired Headphones,2,11.99,10/13/19 04:35,"176 Hill St, Atlanta, GA 30301" +269568,iPhone,1,700,10/19/19 13:05,"340 9th St, Austin, TX 73301" +269569,Flatscreen TV,1,300,10/18/19 11:28,"434 Johnson St, Los Angeles, CA 90001" +269570,Google Phone,1,600,10/08/19 22:15,"250 Cedar St, San Francisco, CA 94016" +269571,Macbook Pro Laptop,1,1700,10/20/19 16:26,"857 Walnut St, Atlanta, GA 30301" +269572,27in 4K Gaming Monitor,1,389.99,10/26/19 11:38,"924 West St, New York City, NY 10001" +269573,USB-C Charging Cable,1,11.95,10/21/19 20:24,"94 Hill St, Seattle, WA 98101" +269574,Lightning Charging Cable,1,14.95,10/01/19 13:25,"956 10th St, San Francisco, CA 94016" +269575,Google Phone,1,600,10/05/19 23:26,"518 Dogwood St, Atlanta, GA 30301" +269575,USB-C Charging Cable,1,11.95,10/05/19 23:26,"518 Dogwood St, Atlanta, GA 30301" +269576,Lightning Charging Cable,1,14.95,10/07/19 21:13,"654 Elm St, Austin, TX 73301" +269577,27in 4K Gaming Monitor,1,389.99,10/30/19 17:13,"232 Jackson St, Atlanta, GA 30301" +269578,27in 4K Gaming Monitor,1,389.99,10/12/19 21:03,"135 7th St, Los Angeles, CA 90001" +269579,iPhone,1,700,10/30/19 12:15,"297 11th St, Seattle, WA 98101" +269580,Bose SoundSport Headphones,1,99.99,10/10/19 17:49,"939 Hickory St, San Francisco, CA 94016" +269581,AAA Batteries (4-pack),1,2.99,10/11/19 00:20,"223 Wilson St, New York City, NY 10001" +269582,AAA Batteries (4-pack),1,2.99,10/24/19 17:06,"896 Church St, San Francisco, CA 94016" +269583,Bose SoundSport Headphones,1,99.99,10/07/19 18:09,"281 Walnut St, Seattle, WA 98101" +269584,Lightning Charging Cable,1,14.95,10/07/19 18:05,"670 12th St, Portland, OR 97035" +269585,27in 4K Gaming Monitor,1,389.99,10/03/19 11:17,"650 Ridge St, Los Angeles, CA 90001" +269586,iPhone,1,700,10/02/19 20:35,"317 Park St, San Francisco, CA 94016" +269587,USB-C Charging Cable,1,11.95,10/09/19 21:49,"500 Chestnut St, Dallas, TX 75001" +269588,AA Batteries (4-pack),2,3.84,10/26/19 07:12,"27 Wilson St, Los Angeles, CA 90001" +269589,AAA Batteries (4-pack),1,2.99,10/06/19 09:28,"388 5th St, Los Angeles, CA 90001" +269590,Apple Airpods Headphones,1,150,10/14/19 19:39,"256 4th St, New York City, NY 10001" +269591,Google Phone,1,600,10/29/19 10:05,"329 Madison St, Dallas, TX 75001" +269592,Google Phone,1,600,10/22/19 17:28,"95 Meadow St, Atlanta, GA 30301" +269592,USB-C Charging Cable,1,11.95,10/22/19 17:28,"95 Meadow St, Atlanta, GA 30301" +269593,AA Batteries (4-pack),1,3.84,10/07/19 17:59,"560 Ridge St, Los Angeles, CA 90001" +269594,34in Ultrawide Monitor,1,379.99,10/30/19 23:45,"520 Washington St, San Francisco, CA 94016" +269595,Flatscreen TV,1,300,10/15/19 10:52,"798 Pine St, Atlanta, GA 30301" +269596,AAA Batteries (4-pack),1,2.99,10/31/19 22:32,"218 Lakeview St, New York City, NY 10001" +269597,ThinkPad Laptop,1,999.99,10/22/19 17:43,"932 Jefferson St, Portland, ME 04101" +269598,Bose SoundSport Headphones,1,99.99,10/17/19 17:13,"170 Wilson St, Austin, TX 73301" +269598,ThinkPad Laptop,1,999.99,10/17/19 17:13,"170 Wilson St, Austin, TX 73301" +269599,Lightning Charging Cable,1,14.95,10/03/19 16:42,"492 10th St, Seattle, WA 98101" +269600,27in 4K Gaming Monitor,1,389.99,11/01/19 00:26,"121 5th St, Seattle, WA 98101" +269601,Apple Airpods Headphones,1,150,10/02/19 21:38,"796 Cherry St, Seattle, WA 98101" +269602,USB-C Charging Cable,1,11.95,10/20/19 23:41,"671 11th St, Austin, TX 73301" +269603,27in FHD Monitor,1,149.99,10/18/19 22:26,"83 14th St, San Francisco, CA 94016" +269604,Google Phone,1,600,10/13/19 17:39,"902 12th St, San Francisco, CA 94016" +269605,Apple Airpods Headphones,1,150,10/26/19 19:12,"491 Cedar St, Portland, OR 97035" +269606,Google Phone,1,600,10/17/19 16:00,"855 Dogwood St, San Francisco, CA 94016" +269607,iPhone,1,700,10/08/19 19:06,"769 Lake St, Los Angeles, CA 90001" +269608,AAA Batteries (4-pack),2,2.99,10/29/19 12:35,"754 Cherry St, San Francisco, CA 94016" +269609,USB-C Charging Cable,2,11.95,10/26/19 14:42,"959 Adams St, New York City, NY 10001" +269610,Wired Headphones,1,11.99,10/10/19 23:37,"469 7th St, Boston, MA 02215" +269611,iPhone,1,700,10/19/19 09:41,"520 12th St, San Francisco, CA 94016" +269612,USB-C Charging Cable,1,11.95,10/09/19 14:50,"891 2nd St, Los Angeles, CA 90001" +269613,Lightning Charging Cable,2,14.95,10/18/19 13:03,"210 Cherry St, New York City, NY 10001" +269614,Vareebadd Phone,1,400,10/10/19 12:42,"554 Jackson St, Boston, MA 02215" +269615,27in FHD Monitor,1,149.99,10/28/19 16:00,"781 Sunset St, Austin, TX 73301" +269616,27in FHD Monitor,1,149.99,10/24/19 01:12,"202 Jefferson St, New York City, NY 10001" +269617,iPhone,1,700,10/29/19 12:11,"565 Hickory St, Portland, ME 04101" +269618,Bose SoundSport Headphones,1,99.99,10/28/19 13:37,"446 11th St, Boston, MA 02215" +269619,Lightning Charging Cable,1,14.95,10/22/19 21:07,"895 North St, Boston, MA 02215" +269620,Lightning Charging Cable,1,14.95,10/12/19 18:54,"526 Park St, Los Angeles, CA 90001" +269621,Bose SoundSport Headphones,1,99.99,10/27/19 17:15,"179 Willow St, Seattle, WA 98101" +269622,Lightning Charging Cable,1,14.95,10/04/19 11:57,"656 Dogwood St, Los Angeles, CA 90001" +269623,AA Batteries (4-pack),2,3.84,10/09/19 10:16,"443 Washington St, San Francisco, CA 94016" +269624,USB-C Charging Cable,1,11.95,10/15/19 08:57,"196 Madison St, San Francisco, CA 94016" +269625,Vareebadd Phone,1,400,10/06/19 13:08,"884 Spruce St, San Francisco, CA 94016" +269625,USB-C Charging Cable,1,11.95,10/06/19 13:08,"884 Spruce St, San Francisco, CA 94016" +269626,iPhone,1,700,10/27/19 14:14,"778 Madison St, San Francisco, CA 94016" +269627,Lightning Charging Cable,1,14.95,10/19/19 19:30,"990 Maple St, Los Angeles, CA 90001" +269628,Wired Headphones,1,11.99,10/27/19 16:23,"408 Jackson St, Boston, MA 02215" +269629,AAA Batteries (4-pack),1,2.99,10/27/19 14:22,"29 1st St, Seattle, WA 98101" +269630,USB-C Charging Cable,1,11.95,10/29/19 06:41,"713 10th St, Boston, MA 02215" +269631,AA Batteries (4-pack),1,3.84,10/21/19 19:05,"506 Spruce St, Portland, OR 97035" +269632,Bose SoundSport Headphones,1,99.99,10/07/19 02:14,"65 1st St, Dallas, TX 75001" +269633,USB-C Charging Cable,1,11.95,10/26/19 12:04,"991 Maple St, San Francisco, CA 94016" +269634,iPhone,1,700,10/31/19 11:53,"268 10th St, New York City, NY 10001" +269634,Lightning Charging Cable,1,14.95,10/31/19 11:53,"268 10th St, New York City, NY 10001" +269635,Bose SoundSport Headphones,1,99.99,10/30/19 12:23,"797 Willow St, Dallas, TX 75001" +269636,AA Batteries (4-pack),1,3.84,10/31/19 20:27,"672 Park St, San Francisco, CA 94016" +269637,Wired Headphones,1,11.99,10/21/19 19:21,"425 Washington St, Portland, OR 97035" +269638,27in 4K Gaming Monitor,1,389.99,10/04/19 18:20,"374 Spruce St, Los Angeles, CA 90001" +269639,Flatscreen TV,1,300,10/26/19 20:46,"378 Johnson St, Los Angeles, CA 90001" +269640,Apple Airpods Headphones,1,150,10/03/19 09:11,"76 Lakeview St, San Francisco, CA 94016" +269641,USB-C Charging Cable,1,11.95,10/21/19 11:53,"235 13th St, Los Angeles, CA 90001" +269642,AA Batteries (4-pack),1,3.84,10/21/19 09:25,"621 Johnson St, San Francisco, CA 94016" +269643,27in FHD Monitor,1,149.99,10/14/19 20:15,"674 River St, Los Angeles, CA 90001" +269644,AAA Batteries (4-pack),1,2.99,10/24/19 13:43,"706 11th St, Atlanta, GA 30301" +269645,Bose SoundSport Headphones,1,99.99,10/30/19 20:21,"39 Lincoln St, Austin, TX 73301" +269646,20in Monitor,1,109.99,10/17/19 09:35,"531 Lake St, Los Angeles, CA 90001" +269647,USB-C Charging Cable,1,11.95,10/29/19 08:53,"526 West St, Boston, MA 02215" +269648,AAA Batteries (4-pack),1,2.99,10/05/19 15:43,"31 4th St, San Francisco, CA 94016" +269649,Wired Headphones,1,11.99,10/11/19 21:38,"506 Cedar St, Austin, TX 73301" +269650,34in Ultrawide Monitor,1,379.99,10/20/19 21:37,"824 6th St, Los Angeles, CA 90001" +269651,Bose SoundSport Headphones,1,99.99,10/05/19 18:38,"419 10th St, Austin, TX 73301" +269652,AAA Batteries (4-pack),1,2.99,10/07/19 09:51,"439 West St, New York City, NY 10001" +269653,AA Batteries (4-pack),1,3.84,10/03/19 10:06,"481 Dogwood St, Dallas, TX 75001" +269654,AAA Batteries (4-pack),1,2.99,10/13/19 12:26,"562 West St, Boston, MA 02215" +269655,USB-C Charging Cable,2,11.95,10/05/19 11:46,"173 Lincoln St, San Francisco, CA 94016" +269656,USB-C Charging Cable,1,11.95,10/22/19 18:04,"29 Forest St, San Francisco, CA 94016" +269657,Bose SoundSport Headphones,1,99.99,10/23/19 19:32,"793 Jackson St, Dallas, TX 75001" +269658,Apple Airpods Headphones,1,150,10/01/19 13:35,"580 Pine St, Atlanta, GA 30301" +269659,Bose SoundSport Headphones,1,99.99,10/23/19 20:50,"748 4th St, Boston, MA 02215" +269660,USB-C Charging Cable,1,11.95,10/18/19 08:55,"122 South St, Los Angeles, CA 90001" +269661,Macbook Pro Laptop,1,1700,10/19/19 12:13,"859 8th St, Los Angeles, CA 90001" +269662,ThinkPad Laptop,1,999.99,10/03/19 21:26,"876 Spruce St, Seattle, WA 98101" +269663,Bose SoundSport Headphones,1,99.99,10/04/19 16:54,"407 Sunset St, New York City, NY 10001" +269664,Lightning Charging Cable,1,14.95,10/06/19 16:19,"323 Adams St, Los Angeles, CA 90001" +269665,iPhone,1,700,10/07/19 16:03,"967 South St, Boston, MA 02215" +269665,Lightning Charging Cable,1,14.95,10/07/19 16:03,"967 South St, Boston, MA 02215" +269666,27in FHD Monitor,1,149.99,10/22/19 18:45,"899 Adams St, New York City, NY 10001" +269667,Apple Airpods Headphones,1,150,10/29/19 19:49,"694 Church St, Los Angeles, CA 90001" +269668,ThinkPad Laptop,1,999.99,10/14/19 10:01,"126 12th St, New York City, NY 10001" +269669,AA Batteries (4-pack),1,3.84,10/31/19 19:43,"231 Wilson St, Dallas, TX 75001" +269670,Macbook Pro Laptop,1,1700,10/11/19 19:17,"700 Forest St, San Francisco, CA 94016" +269671,AAA Batteries (4-pack),1,2.99,10/26/19 15:02,"110 Forest St, San Francisco, CA 94016" +269672,Lightning Charging Cable,1,14.95,10/14/19 12:43,"934 Adams St, New York City, NY 10001" +269673,AAA Batteries (4-pack),1,2.99,10/07/19 01:05,"269 Lake St, New York City, NY 10001" +269674,AA Batteries (4-pack),2,3.84,10/27/19 14:51,"179 10th St, San Francisco, CA 94016" +269675,AAA Batteries (4-pack),1,2.99,10/31/19 21:22,"835 8th St, Dallas, TX 75001" +269676,Wired Headphones,1,11.99,10/24/19 17:33,"629 4th St, Dallas, TX 75001" +269677,AA Batteries (4-pack),1,3.84,10/16/19 10:28,"475 Highland St, Los Angeles, CA 90001" +269678,AAA Batteries (4-pack),1,2.99,10/22/19 15:33,"748 Jackson St, San Francisco, CA 94016" +269679,27in FHD Monitor,1,149.99,10/10/19 15:12,"791 Main St, San Francisco, CA 94016" +269680,Google Phone,1,600,10/25/19 14:59,"557 West St, Dallas, TX 75001" +269681,AAA Batteries (4-pack),1,2.99,10/27/19 13:19,"484 9th St, Seattle, WA 98101" +269682,Lightning Charging Cable,1,14.95,10/23/19 19:56,"442 Adams St, Atlanta, GA 30301" +269683,Bose SoundSport Headphones,1,99.99,10/22/19 22:04,"75 Meadow St, Dallas, TX 75001" +269684,34in Ultrawide Monitor,1,379.99,10/25/19 18:19,"76 14th St, San Francisco, CA 94016" +269685,Flatscreen TV,1,300,10/16/19 11:29,"826 2nd St, Dallas, TX 75001" +269686,Apple Airpods Headphones,1,150,10/12/19 18:47,"2 12th St, Boston, MA 02215" +269687,Google Phone,1,600,10/07/19 07:25,"547 Lake St, Atlanta, GA 30301" +269687,Wired Headphones,1,11.99,10/07/19 07:25,"547 Lake St, Atlanta, GA 30301" +269688,Google Phone,1,600,10/31/19 11:46,"782 Johnson St, Atlanta, GA 30301" +269688,Bose SoundSport Headphones,1,99.99,10/31/19 11:46,"782 Johnson St, Atlanta, GA 30301" +269689,27in FHD Monitor,1,149.99,10/07/19 12:04,"179 Washington St, San Francisco, CA 94016" +269690,AA Batteries (4-pack),2,3.84,10/11/19 21:50,"504 North St, Seattle, WA 98101" +269691,Lightning Charging Cable,1,14.95,10/26/19 14:05,"913 12th St, Atlanta, GA 30301" +269692,27in FHD Monitor,1,149.99,10/03/19 17:49,"30 14th St, San Francisco, CA 94016" +269693,AAA Batteries (4-pack),1,2.99,10/31/19 15:02,"918 Park St, Los Angeles, CA 90001" +269694,Macbook Pro Laptop,1,1700,10/15/19 09:55,"796 Meadow St, Los Angeles, CA 90001" +,,,,, +269695,Wired Headphones,1,11.99,10/27/19 23:49,"397 7th St, Boston, MA 02215" +269696,Lightning Charging Cable,2,14.95,10/08/19 22:44,"277 Adams St, Dallas, TX 75001" +269697,Apple Airpods Headphones,1,150,10/15/19 13:43,"997 Washington St, Los Angeles, CA 90001" +269698,iPhone,1,700,10/14/19 15:02,"233 Lakeview St, New York City, NY 10001" +269698,Lightning Charging Cable,1,14.95,10/14/19 15:02,"233 Lakeview St, New York City, NY 10001" +269698,Apple Airpods Headphones,1,150,10/14/19 15:02,"233 Lakeview St, New York City, NY 10001" +269699,Macbook Pro Laptop,1,1700,10/13/19 07:57,"651 Sunset St, Los Angeles, CA 90001" +269700,27in 4K Gaming Monitor,1,389.99,10/23/19 17:47,"448 Chestnut St, New York City, NY 10001" +269700,Lightning Charging Cable,1,14.95,10/23/19 17:47,"448 Chestnut St, New York City, NY 10001" +269701,AAA Batteries (4-pack),1,2.99,10/14/19 17:02,"757 Forest St, Los Angeles, CA 90001" +269702,27in FHD Monitor,1,149.99,10/22/19 19:58,"499 Spruce St, Portland, OR 97035" +269703,AAA Batteries (4-pack),2,2.99,10/18/19 15:42,"696 12th St, San Francisco, CA 94016" +269704,Flatscreen TV,1,300,10/30/19 10:45,"387 West St, Austin, TX 73301" +269705,Wired Headphones,1,11.99,10/18/19 11:30,"109 Walnut St, San Francisco, CA 94016" +269706,Flatscreen TV,1,300,10/30/19 16:19,"999 Maple St, Austin, TX 73301" +269707,Apple Airpods Headphones,1,150,10/28/19 14:28,"776 River St, Austin, TX 73301" +269708,AAA Batteries (4-pack),1,2.99,10/08/19 11:52,"637 10th St, San Francisco, CA 94016" +269709,USB-C Charging Cable,1,11.95,10/12/19 18:41,"783 Hill St, San Francisco, CA 94016" +269710,Google Phone,1,600,10/31/19 23:06,"660 Elm St, Boston, MA 02215" +269710,USB-C Charging Cable,1,11.95,10/31/19 23:06,"660 Elm St, Boston, MA 02215" +269711,Google Phone,1,600,10/17/19 14:42,"992 14th St, Seattle, WA 98101" +269712,Wired Headphones,1,11.99,10/20/19 20:40,"456 5th St, Seattle, WA 98101" +269713,34in Ultrawide Monitor,1,379.99,10/18/19 15:21,"338 Hill St, New York City, NY 10001" +269714,Wired Headphones,1,11.99,10/12/19 19:24,"601 2nd St, New York City, NY 10001" +269715,Flatscreen TV,1,300,10/20/19 10:05,"942 West St, New York City, NY 10001" +269716,USB-C Charging Cable,1,11.95,10/10/19 20:23,"413 10th St, Los Angeles, CA 90001" +269717,Apple Airpods Headphones,1,150,10/01/19 10:01,"740 9th St, Dallas, TX 75001" +269718,AAA Batteries (4-pack),1,2.99,10/17/19 20:45,"683 Spruce St, Portland, OR 97035" +269719,27in FHD Monitor,1,149.99,10/27/19 00:23,"820 8th St, Los Angeles, CA 90001" +269720,Wired Headphones,1,11.99,10/05/19 21:42,"266 11th St, Portland, OR 97035" +269721,Apple Airpods Headphones,1,150,10/07/19 21:19,"501 6th St, Seattle, WA 98101" +269722,Bose SoundSport Headphones,1,99.99,10/13/19 19:56,"88 Park St, San Francisco, CA 94016" +269723,AA Batteries (4-pack),2,3.84,10/13/19 10:19,"445 Sunset St, Boston, MA 02215" +269724,AA Batteries (4-pack),1,3.84,10/22/19 17:07,"55 Elm St, New York City, NY 10001" +269725,Apple Airpods Headphones,1,150,10/04/19 19:23,"817 Forest St, Los Angeles, CA 90001" +269726,AA Batteries (4-pack),1,3.84,10/30/19 12:05,"87 Pine St, San Francisco, CA 94016" +269727,AAA Batteries (4-pack),3,2.99,10/16/19 17:40,"710 Hill St, Seattle, WA 98101" +269728,iPhone,1,700,10/16/19 19:59,"112 9th St, New York City, NY 10001" +269728,Apple Airpods Headphones,1,150,10/16/19 19:59,"112 9th St, New York City, NY 10001" +269729,Apple Airpods Headphones,1,150,10/13/19 16:26,"169 Wilson St, Boston, MA 02215" +269730,Bose SoundSport Headphones,1,99.99,10/06/19 20:03,"937 West St, Boston, MA 02215" +269731,USB-C Charging Cable,1,11.95,10/22/19 10:55,"767 4th St, San Francisco, CA 94016" +269732,Lightning Charging Cable,1,14.95,10/16/19 18:34,"425 Chestnut St, New York City, NY 10001" +269733,27in FHD Monitor,1,149.99,10/24/19 13:49,"80 Walnut St, San Francisco, CA 94016" +269734,Apple Airpods Headphones,1,150,10/05/19 16:32,"846 9th St, Austin, TX 73301" +269735,AA Batteries (4-pack),1,3.84,10/11/19 19:30,"709 12th St, San Francisco, CA 94016" +269736,Macbook Pro Laptop,1,1700,10/16/19 16:26,"821 Madison St, Seattle, WA 98101" +269737,34in Ultrawide Monitor,1,379.99,10/16/19 18:03,"238 14th St, Los Angeles, CA 90001" +269738,USB-C Charging Cable,1,11.95,10/18/19 11:22,"84 Lake St, Boston, MA 02215" +269739,LG Washing Machine,1,600.0,10/26/19 14:12,"663 Lakeview St, San Francisco, CA 94016" +269740,Bose SoundSport Headphones,1,99.99,10/03/19 16:38,"387 1st St, Boston, MA 02215" +269741,USB-C Charging Cable,1,11.95,10/21/19 22:11,"257 5th St, San Francisco, CA 94016" +269742,Lightning Charging Cable,1,14.95,10/27/19 13:58,"836 12th St, New York City, NY 10001" +269743,Lightning Charging Cable,1,14.95,10/13/19 23:28,"392 Elm St, Boston, MA 02215" +269744,Lightning Charging Cable,1,14.95,10/29/19 15:48,"59 North St, Los Angeles, CA 90001" +269745,Apple Airpods Headphones,1,150,10/17/19 12:07,"703 11th St, Austin, TX 73301" +269746,AAA Batteries (4-pack),2,2.99,10/06/19 13:06,"706 Lakeview St, Los Angeles, CA 90001" +269747,AAA Batteries (4-pack),1,2.99,10/28/19 22:07,"820 1st St, Dallas, TX 75001" +269748,27in FHD Monitor,1,149.99,10/15/19 02:42,"314 Wilson St, Boston, MA 02215" +269749,Wired Headphones,1,11.99,10/31/19 14:41,"954 Lake St, New York City, NY 10001" +269749,34in Ultrawide Monitor,1,379.99,10/31/19 14:41,"954 Lake St, New York City, NY 10001" +269750,Lightning Charging Cable,1,14.95,10/28/19 18:58,"894 Hill St, Los Angeles, CA 90001" +269751,AAA Batteries (4-pack),2,2.99,10/19/19 18:56,"755 6th St, Seattle, WA 98101" +269752,27in 4K Gaming Monitor,1,389.99,10/07/19 09:22,"476 Cedar St, San Francisco, CA 94016" +269753,Flatscreen TV,1,300,10/21/19 20:26,"541 Jackson St, Austin, TX 73301" +269754,27in 4K Gaming Monitor,1,389.99,10/28/19 22:31,"263 Jackson St, New York City, NY 10001" +269755,USB-C Charging Cable,1,11.95,10/25/19 22:11,"402 Hickory St, Austin, TX 73301" +269756,USB-C Charging Cable,1,11.95,10/22/19 10:17,"590 Washington St, San Francisco, CA 94016" +269757,Bose SoundSport Headphones,1,99.99,10/21/19 13:01,"650 Elm St, New York City, NY 10001" +269758,iPhone,1,700,10/14/19 11:22,"273 River St, Austin, TX 73301" +269759,Vareebadd Phone,1,400,10/19/19 08:41,"11 Madison St, San Francisco, CA 94016" +269760,AAA Batteries (4-pack),1,2.99,10/07/19 19:44,"831 South St, San Francisco, CA 94016" +269761,Flatscreen TV,1,300,10/27/19 14:09,"481 Highland St, Los Angeles, CA 90001" +269762,20in Monitor,1,109.99,10/24/19 18:15,"231 Elm St, San Francisco, CA 94016" +269763,AAA Batteries (4-pack),2,2.99,10/14/19 10:53,"934 5th St, Los Angeles, CA 90001" +269764,Lightning Charging Cable,1,14.95,10/25/19 05:52,"703 North St, Portland, OR 97035" +269765,LG Dryer,1,600.0,10/29/19 21:24,"813 Maple St, Dallas, TX 75001" +269766,Lightning Charging Cable,1,14.95,10/01/19 23:50,"279 Lake St, Dallas, TX 75001" +269767,Apple Airpods Headphones,1,150,10/25/19 18:55,"763 Ridge St, San Francisco, CA 94016" +269768,AA Batteries (4-pack),1,3.84,10/21/19 00:52,"365 Hickory St, Dallas, TX 75001" +269769,USB-C Charging Cable,1,11.95,10/10/19 13:25,"945 Hill St, San Francisco, CA 94016" +269770,AAA Batteries (4-pack),1,2.99,10/20/19 18:40,"173 Spruce St, New York City, NY 10001" +269771,27in FHD Monitor,1,149.99,10/06/19 01:19,"526 12th St, San Francisco, CA 94016" +269772,Lightning Charging Cable,1,14.95,10/09/19 08:58,"575 5th St, New York City, NY 10001" +269773,USB-C Charging Cable,2,11.95,10/02/19 19:06,"184 Cedar St, Austin, TX 73301" +269774,AAA Batteries (4-pack),1,2.99,10/11/19 13:10,"581 Lincoln St, San Francisco, CA 94016" +269775,AA Batteries (4-pack),4,3.84,10/25/19 19:20,"177 Johnson St, Atlanta, GA 30301" +269776,Bose SoundSport Headphones,1,99.99,10/25/19 14:54,"272 Spruce St, San Francisco, CA 94016" +269777,ThinkPad Laptop,1,999.99,10/24/19 19:44,"824 Meadow St, Boston, MA 02215" +269778,Apple Airpods Headphones,1,150,10/12/19 18:53,"680 Lake St, Atlanta, GA 30301" +269779,Macbook Pro Laptop,1,1700,10/10/19 14:57,"281 West St, Atlanta, GA 30301" +269780,Google Phone,1,600,10/16/19 18:15,"288 6th St, New York City, NY 10001" +269781,AAA Batteries (4-pack),2,2.99,10/27/19 13:20,"374 Dogwood St, Boston, MA 02215" +269782,27in 4K Gaming Monitor,1,389.99,10/04/19 14:27,"526 Meadow St, San Francisco, CA 94016" +269783,USB-C Charging Cable,1,11.95,10/21/19 13:01,"190 West St, New York City, NY 10001" +269784,AA Batteries (4-pack),1,3.84,10/06/19 07:02,"690 13th St, Austin, TX 73301" +269785,USB-C Charging Cable,1,11.95,10/30/19 12:32,"356 Cherry St, Dallas, TX 75001" +269786,Apple Airpods Headphones,1,150,10/20/19 06:28,"25 Wilson St, Seattle, WA 98101" +269787,Flatscreen TV,1,300,10/27/19 20:39,"581 River St, Atlanta, GA 30301" +269788,Bose SoundSport Headphones,1,99.99,10/29/19 06:38,"203 Park St, San Francisco, CA 94016" +269789,Google Phone,1,600,10/09/19 10:48,"419 Lake St, Atlanta, GA 30301" +269790,iPhone,1,700,10/28/19 17:19,"774 Cedar St, Portland, OR 97035" +269791,Wired Headphones,1,11.99,10/09/19 20:37,"541 Dogwood St, San Francisco, CA 94016" +269792,iPhone,1,700,10/03/19 12:04,"326 Highland St, San Francisco, CA 94016" +269793,USB-C Charging Cable,1,11.95,10/14/19 21:18,"861 Adams St, Seattle, WA 98101" +269794,Macbook Pro Laptop,1,1700,10/04/19 12:36,"325 Chestnut St, Boston, MA 02215" +269795,USB-C Charging Cable,1,11.95,10/14/19 19:40,"820 Dogwood St, Atlanta, GA 30301" +269796,Apple Airpods Headphones,1,150,10/01/19 10:19,"572 South St, Los Angeles, CA 90001" +269797,20in Monitor,1,109.99,10/29/19 13:44,"199 13th St, Atlanta, GA 30301" +269798,Wired Headphones,1,11.99,10/20/19 13:38,"725 Willow St, Boston, MA 02215" +269799,Flatscreen TV,1,300,10/01/19 13:09,"83 Meadow St, San Francisco, CA 94016" +269800,USB-C Charging Cable,1,11.95,10/03/19 16:19,"961 Ridge St, Los Angeles, CA 90001" +269801,AA Batteries (4-pack),2,3.84,10/22/19 12:19,"334 13th St, Atlanta, GA 30301" +269802,Macbook Pro Laptop,1,1700,10/09/19 12:20,"816 Lincoln St, San Francisco, CA 94016" +269803,20in Monitor,1,109.99,10/12/19 07:46,"279 Madison St, Dallas, TX 75001" +269804,Wired Headphones,1,11.99,10/22/19 13:37,"466 8th St, Austin, TX 73301" +269805,AAA Batteries (4-pack),1,2.99,10/02/19 13:04,"52 Adams St, Seattle, WA 98101" +269806,iPhone,1,700,10/30/19 15:53,"3 North St, Dallas, TX 75001" +269807,27in 4K Gaming Monitor,1,389.99,10/22/19 15:29,"165 Maple St, New York City, NY 10001" +269808,Apple Airpods Headphones,1,150,10/17/19 16:39,"818 Washington St, San Francisco, CA 94016" +269809,Flatscreen TV,1,300,10/26/19 16:28,"791 Sunset St, New York City, NY 10001" +269810,Macbook Pro Laptop,1,1700,10/16/19 20:20,"967 10th St, San Francisco, CA 94016" +269811,AAA Batteries (4-pack),1,2.99,10/27/19 11:07,"664 Center St, San Francisco, CA 94016" +269812,27in FHD Monitor,1,149.99,10/20/19 21:44,"353 9th St, Seattle, WA 98101" +269813,AA Batteries (4-pack),1,3.84,10/12/19 17:03,"455 10th St, Boston, MA 02215" +269814,Macbook Pro Laptop,1,1700,10/08/19 23:17,"781 12th St, Los Angeles, CA 90001" +269815,AA Batteries (4-pack),1,3.84,10/08/19 07:40,"305 6th St, Boston, MA 02215" +269816,Macbook Pro Laptop,1,1700,10/15/19 21:42,"171 Hill St, Atlanta, GA 30301" +269817,Macbook Pro Laptop,1,1700,10/25/19 13:52,"666 Ridge St, Boston, MA 02215" +269818,Lightning Charging Cable,1,14.95,10/03/19 19:18,"565 7th St, Los Angeles, CA 90001" +269819,Lightning Charging Cable,1,14.95,10/25/19 09:21,"25 Highland St, Seattle, WA 98101" +269820,USB-C Charging Cable,2,11.95,10/16/19 12:59,"496 7th St, San Francisco, CA 94016" +269821,AAA Batteries (4-pack),1,2.99,10/28/19 22:10,"145 Cherry St, Dallas, TX 75001" +269822,Bose SoundSport Headphones,1,99.99,10/27/19 07:41,"688 Chestnut St, Boston, MA 02215" +269823,AA Batteries (4-pack),2,3.84,10/11/19 14:28,"999 Main St, San Francisco, CA 94016" +269824,Wired Headphones,1,11.99,10/20/19 16:00,"993 5th St, Los Angeles, CA 90001" +269825,Flatscreen TV,1,300,10/13/19 17:05,"769 12th St, San Francisco, CA 94016" +269826,34in Ultrawide Monitor,1,379.99,10/15/19 10:22,"141 Wilson St, Austin, TX 73301" +269827,Vareebadd Phone,1,400,10/13/19 17:31,"811 4th St, Boston, MA 02215" +269828,Wired Headphones,1,11.99,10/09/19 19:45,"984 5th St, Portland, ME 04101" +269829,27in FHD Monitor,1,149.99,10/29/19 14:02,"263 5th St, Los Angeles, CA 90001" +269830,20in Monitor,1,109.99,10/24/19 22:55,"637 Forest St, New York City, NY 10001" +269831,Macbook Pro Laptop,1,1700,10/17/19 02:22,"215 Madison St, San Francisco, CA 94016" +269832,USB-C Charging Cable,1,11.95,10/10/19 16:39,"686 River St, Seattle, WA 98101" +269833,Wired Headphones,1,11.99,10/26/19 11:53,"973 8th St, Portland, ME 04101" +269833,Vareebadd Phone,1,400,10/26/19 11:53,"973 8th St, Portland, ME 04101" +269834,Bose SoundSport Headphones,1,99.99,10/25/19 14:22,"557 Pine St, New York City, NY 10001" +269835,USB-C Charging Cable,2,11.95,10/06/19 20:43,"377 Dogwood St, Los Angeles, CA 90001" +269836,Lightning Charging Cable,1,14.95,10/25/19 08:06,"158 Church St, Austin, TX 73301" +269837,27in FHD Monitor,1,149.99,10/24/19 16:18,"550 2nd St, Los Angeles, CA 90001" +269838,Macbook Pro Laptop,1,1700,10/05/19 12:32,"885 10th St, Los Angeles, CA 90001" +269839,Apple Airpods Headphones,1,150,10/07/19 13:08,"234 Elm St, New York City, NY 10001" +269840,AAA Batteries (4-pack),4,2.99,10/26/19 09:56,"41 Walnut St, New York City, NY 10001" +269841,Google Phone,1,600,10/24/19 23:21,"720 Park St, San Francisco, CA 94016" +269842,27in 4K Gaming Monitor,1,389.99,10/28/19 13:39,"607 Walnut St, New York City, NY 10001" +269843,Apple Airpods Headphones,1,150,10/01/19 23:09,"26 North St, Atlanta, GA 30301" +269844,AAA Batteries (4-pack),3,2.99,10/25/19 18:56,"608 Madison St, Dallas, TX 75001" +269845,Lightning Charging Cable,1,14.95,10/02/19 17:43,"288 10th St, Boston, MA 02215" +269846,Google Phone,1,600,10/30/19 15:53,"194 Ridge St, Atlanta, GA 30301" +269847,USB-C Charging Cable,1,11.95,10/20/19 18:26,"378 Wilson St, San Francisco, CA 94016" +269848,iPhone,1,700,10/02/19 00:26,"980 Jackson St, Boston, MA 02215" +269849,AAA Batteries (4-pack),2,2.99,10/29/19 08:37,"135 Dogwood St, Portland, OR 97035" +269850,Wired Headphones,1,11.99,10/04/19 21:44,"704 Adams St, San Francisco, CA 94016" +269851,27in FHD Monitor,1,149.99,10/09/19 22:06,"249 Sunset St, Los Angeles, CA 90001" +269852,Lightning Charging Cable,1,14.95,10/08/19 17:09,"442 Wilson St, Portland, OR 97035" +269853,USB-C Charging Cable,1,11.95,10/19/19 12:17,"903 Spruce St, Atlanta, GA 30301" +269854,Wired Headphones,1,11.99,10/22/19 12:38,"847 6th St, San Francisco, CA 94016" +269855,34in Ultrawide Monitor,1,379.99,10/21/19 21:14,"127 Willow St, San Francisco, CA 94016" +269856,34in Ultrawide Monitor,1,379.99,10/03/19 11:45,"160 Elm St, New York City, NY 10001" +269857,USB-C Charging Cable,1,11.95,10/06/19 00:38,"813 Adams St, Austin, TX 73301" +269858,Apple Airpods Headphones,1,150,10/08/19 11:29,"627 14th St, Los Angeles, CA 90001" +269859,Wired Headphones,1,11.99,10/29/19 00:16,"489 Johnson St, Boston, MA 02215" +269860,34in Ultrawide Monitor,1,379.99,10/10/19 17:17,"452 Sunset St, Seattle, WA 98101" +269861,AAA Batteries (4-pack),1,2.99,10/10/19 20:15,"366 Lake St, San Francisco, CA 94016" +269862,USB-C Charging Cable,1,11.95,10/19/19 11:17,"879 Lincoln St, Boston, MA 02215" +269863,AAA Batteries (4-pack),1,2.99,10/03/19 18:42,"159 Lake St, San Francisco, CA 94016" +269864,AA Batteries (4-pack),2,3.84,10/18/19 17:55,"396 Lincoln St, Los Angeles, CA 90001" +269865,USB-C Charging Cable,1,11.95,10/10/19 19:54,"187 Lakeview St, San Francisco, CA 94016" +269866,AAA Batteries (4-pack),1,2.99,10/20/19 22:54,"984 1st St, Dallas, TX 75001" +269867,Google Phone,1,600,10/20/19 22:47,"503 Willow St, San Francisco, CA 94016" +269868,AAA Batteries (4-pack),1,2.99,10/26/19 19:15,"881 2nd St, Boston, MA 02215" +269869,iPhone,1,700,10/05/19 22:45,"451 9th St, San Francisco, CA 94016" +269870,AA Batteries (4-pack),1,3.84,10/06/19 19:41,"912 Dogwood St, Portland, OR 97035" +269871,AAA Batteries (4-pack),2,2.99,10/09/19 21:17,"306 Forest St, Los Angeles, CA 90001" +269872,AA Batteries (4-pack),1,3.84,10/25/19 19:36,"863 Maple St, Atlanta, GA 30301" +269873,iPhone,1,700,10/22/19 16:03,"971 1st St, New York City, NY 10001" +269874,Lightning Charging Cable,1,14.95,10/17/19 09:23,"425 Elm St, Boston, MA 02215" +269875,20in Monitor,1,109.99,10/30/19 09:44,"192 Madison St, San Francisco, CA 94016" +269876,Bose SoundSport Headphones,1,99.99,10/09/19 13:11,"980 Park St, Los Angeles, CA 90001" +269877,27in FHD Monitor,1,149.99,10/22/19 15:51,"87 Park St, New York City, NY 10001" +269878,27in FHD Monitor,1,149.99,10/18/19 06:53,"219 10th St, San Francisco, CA 94016" +269879,AA Batteries (4-pack),1,3.84,10/27/19 14:38,"957 Ridge St, Portland, OR 97035" +269880,Flatscreen TV,1,300,10/27/19 12:53,"467 Highland St, Seattle, WA 98101" +269881,Wired Headphones,2,11.99,10/19/19 08:08,"995 Church St, New York City, NY 10001" +269882,iPhone,1,700,10/18/19 08:50,"780 Park St, Dallas, TX 75001" +269883,Apple Airpods Headphones,1,150,10/05/19 16:25,"205 Main St, Dallas, TX 75001" +269884,Apple Airpods Headphones,1,150,10/21/19 18:16,"865 Jefferson St, Boston, MA 02215" +269885,Bose SoundSport Headphones,1,99.99,10/23/19 10:37,"307 Maple St, Atlanta, GA 30301" +269886,Apple Airpods Headphones,1,150,10/29/19 13:16,"110 Park St, Austin, TX 73301" +269887,34in Ultrawide Monitor,1,379.99,10/07/19 11:18,"623 Hickory St, San Francisco, CA 94016" +269888,USB-C Charging Cable,1,11.95,10/16/19 13:12,"360 7th St, Dallas, TX 75001" +269889,34in Ultrawide Monitor,1,379.99,10/20/19 13:10,"532 Cherry St, San Francisco, CA 94016" +269890,Macbook Pro Laptop,1,1700,10/04/19 09:15,"882 Ridge St, Portland, OR 97035" +269891,Google Phone,1,600,10/24/19 12:55,"259 Lake St, San Francisco, CA 94016" +269892,AAA Batteries (4-pack),2,2.99,10/25/19 15:03,"62 9th St, Seattle, WA 98101" +269893,AA Batteries (4-pack),1,3.84,10/24/19 11:22,"215 9th St, San Francisco, CA 94016" +269894,iPhone,1,700,10/16/19 14:34,"828 7th St, San Francisco, CA 94016" +269894,Lightning Charging Cable,1,14.95,10/16/19 14:34,"828 7th St, San Francisco, CA 94016" +269895,USB-C Charging Cable,1,11.95,10/29/19 13:25,"25 Madison St, Boston, MA 02215" +269896,Wired Headphones,1,11.99,10/22/19 17:48,"209 Hickory St, Austin, TX 73301" +269897,AA Batteries (4-pack),2,3.84,10/07/19 12:19,"268 South St, Los Angeles, CA 90001" +269898,Lightning Charging Cable,1,14.95,10/16/19 08:08,"907 11th St, Los Angeles, CA 90001" +269899,Wired Headphones,1,11.99,10/07/19 13:50,"724 Spruce St, San Francisco, CA 94016" +269900,Wired Headphones,1,11.99,10/30/19 21:09,"191 Willow St, Atlanta, GA 30301" +269901,Bose SoundSport Headphones,1,99.99,10/29/19 11:36,"818 Washington St, Boston, MA 02215" +269902,Wired Headphones,3,11.99,10/27/19 07:42,"444 River St, San Francisco, CA 94016" +269903,AAA Batteries (4-pack),1,2.99,10/14/19 20:02,"613 7th St, New York City, NY 10001" +269904,27in FHD Monitor,1,149.99,10/20/19 17:49,"575 Park St, San Francisco, CA 94016" +269905,Wired Headphones,1,11.99,10/12/19 07:42,"407 Lincoln St, Atlanta, GA 30301" +269906,Lightning Charging Cable,1,14.95,10/12/19 19:37,"582 Madison St, Seattle, WA 98101" +269907,27in FHD Monitor,1,149.99,10/21/19 10:38,"605 Maple St, Los Angeles, CA 90001" +269908,Wired Headphones,1,11.99,10/31/19 15:16,"254 Spruce St, New York City, NY 10001" +269909,AA Batteries (4-pack),3,3.84,10/23/19 21:03,"983 South St, San Francisco, CA 94016" +269910,Bose SoundSport Headphones,1,99.99,10/18/19 20:51,"649 Center St, Atlanta, GA 30301" +269911,27in 4K Gaming Monitor,1,389.99,10/12/19 12:40,"86 Ridge St, Austin, TX 73301" +269912,Wired Headphones,1,11.99,10/25/19 15:45,"301 Washington St, Dallas, TX 75001" +269913,27in FHD Monitor,1,149.99,10/04/19 10:05,"226 Madison St, San Francisco, CA 94016" +269914,Macbook Pro Laptop,1,1700,10/24/19 17:44,"278 North St, San Francisco, CA 94016" +269915,Flatscreen TV,1,300,10/25/19 00:03,"512 Wilson St, Los Angeles, CA 90001" +269916,Google Phone,1,600,10/09/19 13:48,"355 8th St, Los Angeles, CA 90001" +269917,Wired Headphones,1,11.99,10/17/19 00:45,"955 10th St, San Francisco, CA 94016" +269918,ThinkPad Laptop,1,999.99,10/31/19 07:25,"999 7th St, Austin, TX 73301" +269919,34in Ultrawide Monitor,1,379.99,10/14/19 14:54,"959 Willow St, Portland, OR 97035" +269920,iPhone,1,700,10/13/19 13:30,"385 11th St, San Francisco, CA 94016" +269920,Lightning Charging Cable,1,14.95,10/13/19 13:30,"385 11th St, San Francisco, CA 94016" +269921,AAA Batteries (4-pack),3,2.99,10/04/19 11:06,"294 Lakeview St, Dallas, TX 75001" +269922,AA Batteries (4-pack),1,3.84,10/21/19 09:18,"177 10th St, San Francisco, CA 94016" +269923,AA Batteries (4-pack),2,3.84,10/20/19 22:01,"909 9th St, Austin, TX 73301" +269924,Wired Headphones,1,11.99,10/09/19 13:19,"413 Dogwood St, Boston, MA 02215" +269925,Apple Airpods Headphones,1,150,10/26/19 10:33,"999 West St, Los Angeles, CA 90001" +269926,Wired Headphones,1,11.99,10/17/19 15:37,"280 11th St, Austin, TX 73301" +269927,Vareebadd Phone,1,400,10/11/19 23:39,"166 Washington St, Boston, MA 02215" +269928,Lightning Charging Cable,1,14.95,10/05/19 13:37,"599 Forest St, San Francisco, CA 94016" +269929,Macbook Pro Laptop,1,1700,10/18/19 20:49,"713 Spruce St, San Francisco, CA 94016" +269930,Bose SoundSport Headphones,1,99.99,10/14/19 11:18,"440 1st St, San Francisco, CA 94016" +269930,Wired Headphones,1,11.99,10/14/19 11:18,"440 1st St, San Francisco, CA 94016" +269931,Bose SoundSport Headphones,1,99.99,10/30/19 12:34,"397 Hickory St, Atlanta, GA 30301" +269932,USB-C Charging Cable,1,11.95,10/05/19 11:19,"942 Lake St, Boston, MA 02215" +269933,34in Ultrawide Monitor,1,379.99,10/26/19 20:44,"408 4th St, New York City, NY 10001" +269934,USB-C Charging Cable,2,11.95,10/05/19 00:48,"393 5th St, Dallas, TX 75001" +269935,Apple Airpods Headphones,1,150,10/24/19 21:11,"950 Jackson St, Atlanta, GA 30301" +269936,ThinkPad Laptop,1,999.99,10/27/19 12:50,"493 Pine St, New York City, NY 10001" +269937,Wired Headphones,1,11.99,10/23/19 18:42,"972 10th St, San Francisco, CA 94016" +269938,AA Batteries (4-pack),1,3.84,10/28/19 09:22,"49 Spruce St, San Francisco, CA 94016" +269939,27in FHD Monitor,1,149.99,10/07/19 12:25,"383 4th St, San Francisco, CA 94016" +269940,USB-C Charging Cable,1,11.95,10/23/19 07:45,"630 Walnut St, San Francisco, CA 94016" +269941,27in 4K Gaming Monitor,1,389.99,10/30/19 14:51,"594 Cedar St, New York City, NY 10001" +269942,AAA Batteries (4-pack),2,2.99,10/15/19 12:39,"193 Willow St, San Francisco, CA 94016" +269943,Bose SoundSport Headphones,1,99.99,10/15/19 13:26,"954 Jackson St, Los Angeles, CA 90001" +269944,Apple Airpods Headphones,1,150,10/06/19 20:34,"845 Main St, San Francisco, CA 94016" +269945,USB-C Charging Cable,1,11.95,10/27/19 18:06,"847 Willow St, Los Angeles, CA 90001" +269946,27in 4K Gaming Monitor,1,389.99,10/03/19 17:03,"21 Pine St, Seattle, WA 98101" +269947,Wired Headphones,1,11.99,10/17/19 19:18,"629 5th St, San Francisco, CA 94016" +269948,34in Ultrawide Monitor,1,379.99,10/04/19 18:04,"556 Walnut St, Boston, MA 02215" +269949,Flatscreen TV,1,300,10/26/19 03:14,"127 Cherry St, Austin, TX 73301" +269950,AAA Batteries (4-pack),1,2.99,10/26/19 20:53,"235 Center St, Dallas, TX 75001" +269951,AAA Batteries (4-pack),2,2.99,10/12/19 11:50,"58 Forest St, San Francisco, CA 94016" +269952,Apple Airpods Headphones,1,150,10/18/19 21:17,"216 Lincoln St, San Francisco, CA 94016" +269953,iPhone,1,700,10/05/19 17:38,"188 West St, Los Angeles, CA 90001" +269954,AA Batteries (4-pack),1,3.84,10/27/19 09:43,"43 River St, Dallas, TX 75001" +269955,Lightning Charging Cable,2,14.95,11/01/19 01:05,"906 6th St, Los Angeles, CA 90001" +269956,AAA Batteries (4-pack),2,2.99,10/01/19 02:59,"538 Wilson St, New York City, NY 10001" +269957,Wired Headphones,1,11.99,10/07/19 12:14,"199 River St, Portland, OR 97035" +269958,Bose SoundSport Headphones,1,99.99,10/22/19 16:39,"1 14th St, Seattle, WA 98101" +269959,LG Washing Machine,1,600.0,10/18/19 00:14,"923 14th St, Portland, OR 97035" +269960,Bose SoundSport Headphones,1,99.99,10/19/19 11:40,"310 Pine St, Atlanta, GA 30301" +269961,Bose SoundSport Headphones,1,99.99,10/20/19 07:33,"79 Highland St, San Francisco, CA 94016" +269962,Macbook Pro Laptop,1,1700,10/11/19 21:09,"684 Spruce St, San Francisco, CA 94016" +269963,Apple Airpods Headphones,1,150,10/16/19 11:11,"875 Walnut St, New York City, NY 10001" +269963,Lightning Charging Cable,1,14.95,10/16/19 11:11,"875 Walnut St, New York City, NY 10001" +269964,Vareebadd Phone,1,400,10/01/19 15:17,"634 Dogwood St, Portland, OR 97035" +269965,AAA Batteries (4-pack),1,2.99,10/13/19 07:02,"196 Hickory St, Dallas, TX 75001" +269966,Lightning Charging Cable,1,14.95,10/04/19 12:47,"686 7th St, Atlanta, GA 30301" +269967,Wired Headphones,1,11.99,10/05/19 21:19,"170 14th St, Los Angeles, CA 90001" +269968,AAA Batteries (4-pack),1,2.99,10/12/19 10:53,"341 West St, Seattle, WA 98101" +269969,Google Phone,1,600,10/14/19 18:18,"174 Sunset St, San Francisco, CA 94016" +269969,USB-C Charging Cable,1,11.95,10/14/19 18:18,"174 Sunset St, San Francisco, CA 94016" +269970,Apple Airpods Headphones,1,150,10/11/19 10:22,"78 Jefferson St, Portland, OR 97035" +269971,Bose SoundSport Headphones,1,99.99,10/18/19 22:22,"110 Church St, San Francisco, CA 94016" +269972,Lightning Charging Cable,1,14.95,10/13/19 12:52,"977 Elm St, Boston, MA 02215" +269973,USB-C Charging Cable,1,11.95,10/29/19 15:49,"193 Elm St, Dallas, TX 75001" +269974,Lightning Charging Cable,1,14.95,10/30/19 23:15,"919 6th St, Austin, TX 73301" +269975,27in 4K Gaming Monitor,1,389.99,10/25/19 14:39,"227 Washington St, Los Angeles, CA 90001" +269976,Google Phone,1,600,10/22/19 08:34,"753 West St, Los Angeles, CA 90001" +269977,Wired Headphones,1,11.99,10/29/19 20:40,"821 Park St, Los Angeles, CA 90001" +269978,USB-C Charging Cable,2,11.95,10/30/19 21:37,"194 Lakeview St, Los Angeles, CA 90001" +269979,Lightning Charging Cable,1,14.95,10/30/19 18:24,"134 Madison St, Seattle, WA 98101" +269980,Vareebadd Phone,1,400,10/03/19 14:38,"252 1st St, Austin, TX 73301" +269980,Wired Headphones,1,11.99,10/03/19 14:38,"252 1st St, Austin, TX 73301" +269981,USB-C Charging Cable,1,11.95,10/10/19 20:28,"765 Main St, New York City, NY 10001" +269982,Apple Airpods Headphones,1,150,10/19/19 16:26,"548 Madison St, New York City, NY 10001" +269983,Apple Airpods Headphones,1,150,10/30/19 22:11,"618 Main St, Portland, OR 97035" +269984,iPhone,1,700,10/04/19 13:59,"837 Forest St, Los Angeles, CA 90001" +269985,Wired Headphones,1,11.99,10/11/19 10:23,"268 Center St, Dallas, TX 75001" +269986,Lightning Charging Cable,1,14.95,10/21/19 10:11,"523 Maple St, Seattle, WA 98101" +269987,27in FHD Monitor,1,149.99,10/06/19 10:05,"58 Wilson St, New York City, NY 10001" +269988,Bose SoundSport Headphones,1,99.99,10/14/19 22:04,"634 Lakeview St, Los Angeles, CA 90001" +269989,Google Phone,1,600,10/12/19 09:27,"793 9th St, Seattle, WA 98101" +269989,USB-C Charging Cable,1,11.95,10/12/19 09:27,"793 9th St, Seattle, WA 98101" +269990,34in Ultrawide Monitor,1,379.99,10/26/19 10:33,"200 Church St, New York City, NY 10001" +269991,Apple Airpods Headphones,1,150,10/18/19 10:09,"869 Center St, New York City, NY 10001" +269992,AAA Batteries (4-pack),1,2.99,10/29/19 18:38,"71 Jackson St, Atlanta, GA 30301" +269993,Apple Airpods Headphones,1,150,10/09/19 08:19,"446 North St, San Francisco, CA 94016" +269994,USB-C Charging Cable,1,11.95,10/27/19 12:00,"419 Ridge St, Dallas, TX 75001" +269995,AA Batteries (4-pack),1,3.84,10/21/19 15:54,"259 7th St, San Francisco, CA 94016" +269996,AAA Batteries (4-pack),1,2.99,10/09/19 21:01,"308 River St, Los Angeles, CA 90001" +269997,USB-C Charging Cable,1,11.95,10/15/19 11:48,"361 10th St, San Francisco, CA 94016" +269998,Apple Airpods Headphones,1,150,10/08/19 12:17,"484 Highland St, San Francisco, CA 94016" +269999,iPhone,1,700,10/11/19 13:59,"607 Lincoln St, Boston, MA 02215" +270000,Bose SoundSport Headphones,1,99.99,10/22/19 23:37,"761 Jackson St, Portland, OR 97035" +270001,Google Phone,1,600,10/03/19 08:52,"623 9th St, San Francisco, CA 94016" +270002,Lightning Charging Cable,1,14.95,10/07/19 11:32,"106 Lakeview St, Boston, MA 02215" +270003,iPhone,1,700,10/11/19 19:01,"202 Jackson St, Dallas, TX 75001" +270004,34in Ultrawide Monitor,1,379.99,10/12/19 15:31,"916 Ridge St, Los Angeles, CA 90001" +270005,Apple Airpods Headphones,1,150,10/15/19 01:25,"698 Lake St, Los Angeles, CA 90001" +270006,Wired Headphones,1,11.99,10/18/19 14:39,"947 6th St, Los Angeles, CA 90001" +270007,Wired Headphones,2,11.99,10/22/19 14:30,"764 8th St, San Francisco, CA 94016" +270008,ThinkPad Laptop,1,999.99,10/23/19 08:02,"341 Hill St, Los Angeles, CA 90001" +270009,USB-C Charging Cable,1,11.95,10/15/19 23:33,"618 Forest St, Los Angeles, CA 90001" +270010,AA Batteries (4-pack),1,3.84,10/29/19 10:15,"129 Hickory St, San Francisco, CA 94016" +270011,Google Phone,1,600,10/17/19 18:22,"767 Washington St, New York City, NY 10001" +270011,USB-C Charging Cable,1,11.95,10/17/19 18:22,"767 Washington St, New York City, NY 10001" +270012,27in 4K Gaming Monitor,1,389.99,10/23/19 15:28,"615 Hill St, New York City, NY 10001" +270012,USB-C Charging Cable,2,11.95,10/23/19 15:28,"615 Hill St, New York City, NY 10001" +270013,Flatscreen TV,1,300,10/29/19 22:39,"687 10th St, New York City, NY 10001" +270014,Lightning Charging Cable,1,14.95,10/20/19 17:02,"592 West St, Atlanta, GA 30301" +270015,Bose SoundSport Headphones,1,99.99,10/18/19 14:27,"311 Lake St, San Francisco, CA 94016" +270016,Lightning Charging Cable,1,14.95,10/31/19 22:52,"516 Meadow St, San Francisco, CA 94016" +270017,Apple Airpods Headphones,1,150,10/19/19 20:56,"575 South St, Austin, TX 73301" +270018,Lightning Charging Cable,1,14.95,10/10/19 06:28,"95 11th St, Seattle, WA 98101" +270019,USB-C Charging Cable,1,11.95,10/06/19 07:04,"489 Hill St, Boston, MA 02215" +270020,AA Batteries (4-pack),1,3.84,10/14/19 07:41,"283 Lake St, San Francisco, CA 94016" +270021,AA Batteries (4-pack),1,3.84,10/04/19 13:00,"141 Lake St, San Francisco, CA 94016" +270022,Google Phone,1,600,10/11/19 20:41,"88 Wilson St, San Francisco, CA 94016" +270023,USB-C Charging Cable,1,11.95,10/12/19 11:03,"604 7th St, Los Angeles, CA 90001" +270024,AA Batteries (4-pack),1,3.84,10/11/19 16:46,"12 Center St, Los Angeles, CA 90001" +270025,Wired Headphones,1,11.99,10/31/19 00:34,"365 Park St, Portland, OR 97035" +270026,Lightning Charging Cable,1,14.95,10/29/19 01:18,"288 Elm St, San Francisco, CA 94016" +270027,AA Batteries (4-pack),1,3.84,10/29/19 21:31,"222 6th St, Los Angeles, CA 90001" +270028,AA Batteries (4-pack),3,3.84,10/12/19 16:16,"159 10th St, New York City, NY 10001" +270029,AAA Batteries (4-pack),1,2.99,10/11/19 20:29,"101 Adams St, San Francisco, CA 94016" +270030,AAA Batteries (4-pack),3,2.99,10/15/19 15:53,"952 Hickory St, San Francisco, CA 94016" +270031,USB-C Charging Cable,1,11.95,10/30/19 21:01,"688 South St, Boston, MA 02215" +270032,Wired Headphones,1,11.99,10/05/19 16:29,"171 Lakeview St, Boston, MA 02215" +270033,iPhone,1,700,10/27/19 17:05,"293 5th St, San Francisco, CA 94016" +270033,Wired Headphones,1,11.99,10/27/19 17:05,"293 5th St, San Francisco, CA 94016" +270034,Wired Headphones,1,11.99,10/20/19 04:25,"383 Forest St, San Francisco, CA 94016" +270035,Macbook Pro Laptop,1,1700,10/11/19 22:49,"540 Meadow St, Dallas, TX 75001" +270036,Macbook Pro Laptop,1,1700,10/02/19 16:02,"736 Hickory St, Dallas, TX 75001" +270037,Macbook Pro Laptop,1,1700,10/18/19 13:24,"13 Pine St, New York City, NY 10001" +270038,34in Ultrawide Monitor,1,379.99,10/09/19 20:49,"88 Maple St, Dallas, TX 75001" +270039,USB-C Charging Cable,1,11.95,10/19/19 11:02,"399 Meadow St, Los Angeles, CA 90001" +270040,USB-C Charging Cable,1,11.95,10/15/19 13:53,"376 4th St, Portland, OR 97035" +270041,Lightning Charging Cable,1,14.95,10/12/19 11:03,"970 Sunset St, Dallas, TX 75001" +270042,USB-C Charging Cable,1,11.95,10/28/19 18:46,"761 14th St, Los Angeles, CA 90001" +270043,Apple Airpods Headphones,1,150,10/18/19 16:38,"613 Main St, Seattle, WA 98101" +270044,Flatscreen TV,1,300,10/08/19 22:09,"801 Pine St, Los Angeles, CA 90001" +270045,Wired Headphones,2,11.99,10/01/19 13:44,"940 Ridge St, Austin, TX 73301" +270046,ThinkPad Laptop,1,999.99,10/28/19 11:07,"809 Chestnut St, New York City, NY 10001" +270047,Wired Headphones,1,11.99,10/28/19 19:34,"203 8th St, San Francisco, CA 94016" +270048,LG Dryer,1,600.0,10/16/19 22:56,"76 Willow St, Dallas, TX 75001" +270049,AAA Batteries (4-pack),4,2.99,10/11/19 18:06,"40 1st St, New York City, NY 10001" +270050,Wired Headphones,1,11.99,10/03/19 13:14,"493 Hickory St, San Francisco, CA 94016" +270051,27in 4K Gaming Monitor,1,389.99,10/28/19 19:40,"765 Meadow St, Atlanta, GA 30301" +270052,iPhone,1,700,10/08/19 19:46,"841 Hill St, Seattle, WA 98101" +270052,Lightning Charging Cable,1,14.95,10/08/19 19:46,"841 Hill St, Seattle, WA 98101" +270053,27in FHD Monitor,1,149.99,10/13/19 10:59,"541 Chestnut St, Atlanta, GA 30301" +270054,AAA Batteries (4-pack),1,2.99,10/21/19 20:00,"317 Johnson St, Los Angeles, CA 90001" +270055,Wired Headphones,1,11.99,10/01/19 16:17,"634 Hill St, Atlanta, GA 30301" +270056,27in FHD Monitor,1,149.99,10/07/19 10:16,"854 Washington St, Seattle, WA 98101" +270057,20in Monitor,1,109.99,10/06/19 19:14,"586 11th St, New York City, NY 10001" +270058,Lightning Charging Cable,1,14.95,10/28/19 22:25,"141 Center St, Los Angeles, CA 90001" +270059,AAA Batteries (4-pack),2,2.99,10/24/19 15:04,"705 Johnson St, Atlanta, GA 30301" +270060,27in FHD Monitor,1,149.99,10/08/19 19:58,"885 Cedar St, Austin, TX 73301" +270061,27in 4K Gaming Monitor,1,389.99,10/01/19 20:17,"512 Church St, New York City, NY 10001" +270062,Wired Headphones,1,11.99,10/13/19 11:53,"980 Washington St, Seattle, WA 98101" +270063,AA Batteries (4-pack),1,3.84,10/03/19 14:24,"820 Hill St, New York City, NY 10001" +270064,iPhone,1,700,10/11/19 16:27,"685 Ridge St, San Francisco, CA 94016" +270065,27in FHD Monitor,1,149.99,10/30/19 22:20,"967 Spruce St, New York City, NY 10001" +270066,27in FHD Monitor,1,149.99,10/21/19 11:05,"964 12th St, Boston, MA 02215" +270067,20in Monitor,1,109.99,10/15/19 16:55,"826 Hickory St, San Francisco, CA 94016" +270067,Lightning Charging Cable,1,14.95,10/15/19 16:55,"826 Hickory St, San Francisco, CA 94016" +270068,USB-C Charging Cable,1,11.95,10/06/19 10:10,"737 12th St, San Francisco, CA 94016" +270069,AA Batteries (4-pack),1,3.84,10/07/19 16:59,"313 Adams St, San Francisco, CA 94016" +270070,AAA Batteries (4-pack),1,2.99,10/20/19 12:35,"196 Dogwood St, Los Angeles, CA 90001" +270071,ThinkPad Laptop,1,999.99,10/18/19 13:41,"714 South St, Portland, OR 97035" +270072,Wired Headphones,1,11.99,10/02/19 19:48,"673 6th St, Los Angeles, CA 90001" +270073,AA Batteries (4-pack),1,3.84,10/07/19 19:51,"49 Madison St, Atlanta, GA 30301" +270074,Wired Headphones,1,11.99,10/30/19 19:04,"356 Church St, Los Angeles, CA 90001" +270075,27in 4K Gaming Monitor,1,389.99,10/21/19 22:07,"448 Church St, San Francisco, CA 94016" +270076,Macbook Pro Laptop,1,1700,10/05/19 11:15,"385 Elm St, Los Angeles, CA 90001" +270077,Wired Headphones,1,11.99,10/31/19 00:45,"307 Chestnut St, Seattle, WA 98101" +270078,AAA Batteries (4-pack),4,2.99,10/08/19 06:47,"927 6th St, San Francisco, CA 94016" +270078,AAA Batteries (4-pack),1,2.99,10/08/19 06:47,"927 6th St, San Francisco, CA 94016" +270079,Lightning Charging Cable,1,14.95,10/24/19 00:47,"481 Main St, San Francisco, CA 94016" +270080,ThinkPad Laptop,1,999.99,10/18/19 18:28,"806 Meadow St, Austin, TX 73301" +270081,AAA Batteries (4-pack),1,2.99,10/17/19 06:46,"587 9th St, Seattle, WA 98101" +270082,Bose SoundSport Headphones,1,99.99,10/02/19 12:10,"815 Sunset St, Los Angeles, CA 90001" +270083,ThinkPad Laptop,1,999.99,10/17/19 14:17,"234 6th St, Austin, TX 73301" +270084,Apple Airpods Headphones,1,150,10/01/19 06:08,"339 Lakeview St, Portland, OR 97035" +270085,20in Monitor,1,109.99,10/25/19 02:25,"696 14th St, San Francisco, CA 94016" +270086,iPhone,1,700,10/12/19 14:41,"789 Pine St, Boston, MA 02215" +270087,Wired Headphones,1,11.99,10/23/19 15:33,"68 Lincoln St, San Francisco, CA 94016" +270088,20in Monitor,1,109.99,10/29/19 19:12,"240 Highland St, Los Angeles, CA 90001" +270089,27in FHD Monitor,1,149.99,10/20/19 17:44,"593 8th St, New York City, NY 10001" +270090,20in Monitor,1,109.99,10/17/19 15:10,"45 West St, New York City, NY 10001" +270090,Lightning Charging Cable,1,14.95,10/17/19 15:10,"45 West St, New York City, NY 10001" +270091,20in Monitor,1,109.99,10/06/19 18:21,"61 Highland St, San Francisco, CA 94016" +270092,Bose SoundSport Headphones,1,99.99,10/27/19 03:54,"959 Jefferson St, San Francisco, CA 94016" +270093,Lightning Charging Cable,1,14.95,10/28/19 21:34,"171 8th St, New York City, NY 10001" +270094,Lightning Charging Cable,1,14.95,10/15/19 11:28,"711 1st St, Atlanta, GA 30301" +270095,Macbook Pro Laptop,1,1700,10/10/19 14:07,"715 Chestnut St, San Francisco, CA 94016" +270096,iPhone,1,700,10/07/19 11:31,"794 Wilson St, New York City, NY 10001" +270097,AA Batteries (4-pack),4,3.84,10/05/19 00:35,"437 Center St, San Francisco, CA 94016" +270098,27in FHD Monitor,1,149.99,10/28/19 10:43,"81 5th St, Portland, OR 97035" +270099,Lightning Charging Cable,1,14.95,10/31/19 11:39,"710 Adams St, San Francisco, CA 94016" +270100,Lightning Charging Cable,1,14.95,10/08/19 09:04,"877 14th St, Austin, TX 73301" +270101,iPhone,1,700,10/12/19 08:36,"767 Johnson St, New York City, NY 10001" +270101,Lightning Charging Cable,1,14.95,10/12/19 08:36,"767 Johnson St, New York City, NY 10001" +270102,Wired Headphones,1,11.99,10/17/19 11:31,"354 11th St, San Francisco, CA 94016" +270103,Macbook Pro Laptop,1,1700,10/05/19 15:55,"898 Wilson St, Portland, OR 97035" +270104,AA Batteries (4-pack),1,3.84,10/05/19 13:36,"938 Center St, Los Angeles, CA 90001" +270105,AA Batteries (4-pack),1,3.84,10/05/19 12:23,"604 Wilson St, Austin, TX 73301" +270106,Flatscreen TV,1,300,10/20/19 21:35,"409 14th St, Seattle, WA 98101" +270107,Macbook Pro Laptop,1,1700,10/02/19 15:58,"327 Cherry St, New York City, NY 10001" +270108,Macbook Pro Laptop,1,1700,10/10/19 14:37,"95 Main St, Los Angeles, CA 90001" +270109,Google Phone,1,600,10/01/19 14:48,"353 Madison St, Atlanta, GA 30301" +270110,27in 4K Gaming Monitor,1,389.99,10/26/19 00:44,"867 Jackson St, Los Angeles, CA 90001" +270111,Lightning Charging Cable,1,14.95,10/10/19 09:48,"511 Elm St, Portland, ME 04101" +270112,Bose SoundSport Headphones,1,99.99,10/02/19 19:37,"390 Jackson St, Boston, MA 02215" +270113,AAA Batteries (4-pack),2,2.99,10/28/19 09:10,"275 12th St, San Francisco, CA 94016" +270114,AA Batteries (4-pack),1,3.84,10/15/19 21:08,"324 Ridge St, Portland, OR 97035" +270115,Bose SoundSport Headphones,1,99.99,10/19/19 21:37,"994 Madison St, New York City, NY 10001" +270116,AAA Batteries (4-pack),3,2.99,10/26/19 13:29,"789 River St, Boston, MA 02215" +270117,USB-C Charging Cable,1,11.95,10/18/19 13:30,"178 Lincoln St, San Francisco, CA 94016" +270118,27in 4K Gaming Monitor,1,389.99,10/17/19 12:24,"125 Lincoln St, Atlanta, GA 30301" +270119,Apple Airpods Headphones,1,150,10/03/19 12:15,"18 Dogwood St, New York City, NY 10001" +270120,Lightning Charging Cable,1,14.95,10/21/19 09:44,"707 9th St, Los Angeles, CA 90001" +270121,AAA Batteries (4-pack),2,2.99,10/31/19 18:56,"938 Jackson St, Austin, TX 73301" +270122,AAA Batteries (4-pack),1,2.99,10/17/19 21:11,"576 Lake St, Portland, OR 97035" +270123,AAA Batteries (4-pack),1,2.99,10/02/19 17:26,"764 14th St, Austin, TX 73301" +270124,USB-C Charging Cable,1,11.95,10/01/19 20:20,"600 Highland St, Los Angeles, CA 90001" +270125,USB-C Charging Cable,1,11.95,10/25/19 09:32,"886 Forest St, New York City, NY 10001" +270126,Lightning Charging Cable,1,14.95,10/04/19 11:20,"693 6th St, Seattle, WA 98101" +270127,AA Batteries (4-pack),1,3.84,10/19/19 14:16,"376 4th St, New York City, NY 10001" +270128,Bose SoundSport Headphones,1,99.99,10/27/19 18:33,"619 Sunset St, Boston, MA 02215" +270129,Macbook Pro Laptop,1,1700,10/11/19 21:00,"866 6th St, New York City, NY 10001" +270130,USB-C Charging Cable,1,11.95,10/17/19 19:26,"453 Cherry St, New York City, NY 10001" +270131,27in 4K Gaming Monitor,1,389.99,10/15/19 15:46,"369 Washington St, Seattle, WA 98101" +270132,Wired Headphones,2,11.99,10/04/19 10:46,"666 Dogwood St, Austin, TX 73301" +270133,AAA Batteries (4-pack),1,2.99,10/27/19 22:21,"323 Johnson St, Los Angeles, CA 90001" +270134,27in FHD Monitor,1,149.99,10/18/19 18:46,"299 2nd St, San Francisco, CA 94016" +270135,USB-C Charging Cable,1,11.95,10/25/19 22:55,"959 Adams St, New York City, NY 10001" +270136,Apple Airpods Headphones,1,150,10/05/19 13:56,"428 Washington St, Boston, MA 02215" +270137,Bose SoundSport Headphones,1,99.99,10/21/19 03:47,"576 Cedar St, Seattle, WA 98101" +270138,Bose SoundSport Headphones,1,99.99,10/12/19 11:13,"428 13th St, Dallas, TX 75001" +270139,ThinkPad Laptop,1,999.99,10/15/19 10:43,"161 Meadow St, New York City, NY 10001" +270140,AAA Batteries (4-pack),1,2.99,10/24/19 07:35,"366 Sunset St, Seattle, WA 98101" +270141,Lightning Charging Cable,1,14.95,10/05/19 08:42,"643 Meadow St, San Francisco, CA 94016" +270142,Flatscreen TV,1,300,10/29/19 21:37,"193 Washington St, New York City, NY 10001" +270143,20in Monitor,1,109.99,10/19/19 16:42,"605 Center St, Dallas, TX 75001" +270144,Wired Headphones,1,11.99,10/25/19 17:49,"199 Pine St, San Francisco, CA 94016" +270145,AAA Batteries (4-pack),2,2.99,10/04/19 10:11,"541 Spruce St, Austin, TX 73301" +270146,AA Batteries (4-pack),1,3.84,10/12/19 23:50,"894 River St, San Francisco, CA 94016" +270147,AAA Batteries (4-pack),2,2.99,10/20/19 01:57,"733 7th St, Seattle, WA 98101" +270148,USB-C Charging Cable,1,11.95,10/15/19 13:13,"257 Highland St, San Francisco, CA 94016" +270149,Lightning Charging Cable,1,14.95,10/07/19 13:25,"974 1st St, Boston, MA 02215" +270150,AA Batteries (4-pack),2,3.84,10/26/19 14:05,"459 Hickory St, Portland, OR 97035" +270151,27in 4K Gaming Monitor,1,389.99,10/21/19 13:48,"826 6th St, Los Angeles, CA 90001" +270152,Flatscreen TV,1,300,10/27/19 12:14,"903 Dogwood St, New York City, NY 10001" +270153,USB-C Charging Cable,1,11.95,10/07/19 14:04,"368 Meadow St, Portland, OR 97035" +270154,AAA Batteries (4-pack),1,2.99,10/15/19 20:39,"612 6th St, San Francisco, CA 94016" +270155,Lightning Charging Cable,1,14.95,10/21/19 11:14,"659 North St, Atlanta, GA 30301" +270156,27in FHD Monitor,1,149.99,10/09/19 13:06,"774 Main St, New York City, NY 10001" +270157,AA Batteries (4-pack),1,3.84,10/23/19 12:52,"154 14th St, New York City, NY 10001" +270158,Apple Airpods Headphones,1,150,10/22/19 16:13,"148 North St, San Francisco, CA 94016" +270159,Google Phone,1,600,10/20/19 21:12,"347 Washington St, Seattle, WA 98101" +270160,27in 4K Gaming Monitor,1,389.99,10/05/19 15:34,"709 Spruce St, Los Angeles, CA 90001" +270161,Wired Headphones,1,11.99,10/27/19 12:11,"675 Hill St, Portland, OR 97035" +270162,Wired Headphones,1,11.99,10/04/19 11:57,"863 Lakeview St, New York City, NY 10001" +270163,Wired Headphones,1,11.99,10/22/19 12:50,"622 Sunset St, San Francisco, CA 94016" +270164,AAA Batteries (4-pack),1,2.99,10/02/19 13:37,"31 2nd St, Austin, TX 73301" +270165,USB-C Charging Cable,1,11.95,10/23/19 13:24,"852 9th St, New York City, NY 10001" +270166,USB-C Charging Cable,1,11.95,10/07/19 12:09,"856 9th St, Los Angeles, CA 90001" +270167,AA Batteries (4-pack),1,3.84,10/14/19 21:15,"141 4th St, Los Angeles, CA 90001" +270168,iPhone,1,700,10/24/19 17:49,"542 Center St, New York City, NY 10001" +270169,27in FHD Monitor,1,149.99,10/04/19 13:16,"425 8th St, Los Angeles, CA 90001" +270170,ThinkPad Laptop,1,999.99,10/12/19 18:21,"305 Center St, Los Angeles, CA 90001" +270171,Apple Airpods Headphones,1,150,10/05/19 00:28,"9 Forest St, Atlanta, GA 30301" +270172,Wired Headphones,1,11.99,10/05/19 11:36,"372 Lakeview St, Boston, MA 02215" +270173,LG Dryer,1,600.0,10/29/19 11:11,"969 2nd St, Austin, TX 73301" +270174,Lightning Charging Cable,1,14.95,10/30/19 16:34,"159 Wilson St, New York City, NY 10001" +270175,Wired Headphones,1,11.99,10/09/19 17:31,"105 13th St, Seattle, WA 98101" +270176,USB-C Charging Cable,1,11.95,10/14/19 22:42,"627 Hill St, Portland, OR 97035" +270177,Apple Airpods Headphones,1,150,10/21/19 10:37,"114 Johnson St, Seattle, WA 98101" +270178,USB-C Charging Cable,1,11.95,10/08/19 16:26,"846 Jackson St, Dallas, TX 75001" +270179,USB-C Charging Cable,1,11.95,10/03/19 09:24,"843 12th St, Dallas, TX 75001" +270180,27in 4K Gaming Monitor,1,389.99,10/13/19 17:30,"20 Ridge St, Atlanta, GA 30301" +270181,USB-C Charging Cable,1,11.95,10/10/19 17:07,"871 Lakeview St, San Francisco, CA 94016" +270182,Wired Headphones,1,11.99,10/13/19 00:22,"160 13th St, Atlanta, GA 30301" +270183,Apple Airpods Headphones,1,150,10/13/19 10:34,"897 Walnut St, Seattle, WA 98101" +270184,USB-C Charging Cable,1,11.95,10/04/19 22:12,"281 Cedar St, San Francisco, CA 94016" +270185,Apple Airpods Headphones,1,150,10/06/19 08:31,"921 6th St, New York City, NY 10001" +270185,27in FHD Monitor,1,149.99,10/06/19 08:31,"921 6th St, New York City, NY 10001" +270186,Flatscreen TV,1,300,10/03/19 21:42,"556 1st St, San Francisco, CA 94016" +270187,AA Batteries (4-pack),1,3.84,10/05/19 11:30,"750 Sunset St, San Francisco, CA 94016" +270188,iPhone,1,700,10/12/19 10:56,"874 River St, Dallas, TX 75001" +270189,Lightning Charging Cable,1,14.95,10/10/19 16:41,"586 South St, Portland, OR 97035" +270190,Lightning Charging Cable,1,14.95,10/10/19 19:51,"223 Park St, Los Angeles, CA 90001" +270191,Apple Airpods Headphones,1,150,10/16/19 19:54,"564 River St, San Francisco, CA 94016" +270192,20in Monitor,1,109.99,10/21/19 05:48,"308 Jackson St, Austin, TX 73301" +270193,AAA Batteries (4-pack),1,2.99,10/25/19 18:31,"204 6th St, Austin, TX 73301" +270194,Apple Airpods Headphones,1,150,10/11/19 20:33,"71 Pine St, Boston, MA 02215" +270195,Bose SoundSport Headphones,1,99.99,10/31/19 17:38,"170 Dogwood St, Portland, OR 97035" +270196,iPhone,1,700,10/13/19 13:40,"143 West St, Portland, ME 04101" +270197,AAA Batteries (4-pack),1,2.99,10/11/19 07:53,"885 Adams St, San Francisco, CA 94016" +270198,Lightning Charging Cable,1,14.95,10/05/19 18:38,"543 Lakeview St, San Francisco, CA 94016" +270199,27in FHD Monitor,1,149.99,10/22/19 13:13,"469 Pine St, Los Angeles, CA 90001" +270200,Lightning Charging Cable,1,14.95,10/09/19 17:27,"750 10th St, New York City, NY 10001" +270201,Google Phone,1,600,10/26/19 11:08,"266 6th St, Los Angeles, CA 90001" +270202,Lightning Charging Cable,2,14.95,10/10/19 10:41,"958 Hill St, Boston, MA 02215" +270203,USB-C Charging Cable,1,11.95,10/04/19 10:21,"593 11th St, Atlanta, GA 30301" +270204,iPhone,1,700,10/11/19 13:15,"765 9th St, Atlanta, GA 30301" +270204,Lightning Charging Cable,1,14.95,10/11/19 13:15,"765 9th St, Atlanta, GA 30301" +270205,ThinkPad Laptop,1,999.99,10/07/19 11:54,"284 Cherry St, Boston, MA 02215" +270206,AAA Batteries (4-pack),1,2.99,10/03/19 21:18,"974 Church St, Portland, ME 04101" +270207,AAA Batteries (4-pack),1,2.99,10/06/19 18:13,"516 Main St, New York City, NY 10001" +270208,20in Monitor,1,109.99,10/25/19 01:20,"949 Spruce St, San Francisco, CA 94016" +270209,ThinkPad Laptop,1,999.99,10/24/19 12:01,"508 Dogwood St, San Francisco, CA 94016" +270210,27in FHD Monitor,1,149.99,10/09/19 07:47,"528 Cherry St, Austin, TX 73301" +270211,AAA Batteries (4-pack),2,2.99,10/21/19 09:14,"712 Cherry St, Atlanta, GA 30301" +270212,USB-C Charging Cable,1,11.95,10/05/19 19:54,"446 Church St, Los Angeles, CA 90001" +270213,Apple Airpods Headphones,1,150,10/09/19 18:02,"83 Sunset St, Portland, OR 97035" +270214,27in FHD Monitor,1,149.99,10/27/19 10:41,"968 Jefferson St, Seattle, WA 98101" +270215,Apple Airpods Headphones,1,150,10/20/19 15:38,"345 River St, Los Angeles, CA 90001" +270216,Google Phone,1,600,10/17/19 06:05,"918 Cedar St, Dallas, TX 75001" +270217,Lightning Charging Cable,1,14.95,10/28/19 21:25,"554 Park St, New York City, NY 10001" +270218,34in Ultrawide Monitor,1,379.99,10/09/19 19:16,"199 Johnson St, San Francisco, CA 94016" +270219,Macbook Pro Laptop,1,1700,10/04/19 20:07,"915 Highland St, Boston, MA 02215" +270220,AAA Batteries (4-pack),2,2.99,10/04/19 00:02,"937 Highland St, Los Angeles, CA 90001" +270221,Wired Headphones,1,11.99,10/15/19 11:54,"220 Hickory St, San Francisco, CA 94016" +270222,34in Ultrawide Monitor,1,379.99,10/14/19 18:48,"739 Adams St, San Francisco, CA 94016" +270223,Lightning Charging Cable,1,14.95,10/27/19 19:57,"614 Cherry St, New York City, NY 10001" +270224,Lightning Charging Cable,1,14.95,10/18/19 12:22,"519 Pine St, Austin, TX 73301" +270224,Flatscreen TV,1,300,10/18/19 12:22,"519 Pine St, Austin, TX 73301" +270225,Lightning Charging Cable,1,14.95,10/06/19 18:18,"322 Chestnut St, Boston, MA 02215" +270226,iPhone,1,700,10/23/19 16:48,"194 11th St, New York City, NY 10001" +270226,Lightning Charging Cable,1,14.95,10/23/19 16:48,"194 11th St, New York City, NY 10001" +270227,USB-C Charging Cable,1,11.95,10/16/19 10:09,"401 Cherry St, San Francisco, CA 94016" +270228,Lightning Charging Cable,1,14.95,10/06/19 15:18,"304 Forest St, Boston, MA 02215" +270229,27in FHD Monitor,1,149.99,10/07/19 14:09,"416 Spruce St, Dallas, TX 75001" +270230,AA Batteries (4-pack),1,3.84,10/26/19 16:54,"825 Lake St, Boston, MA 02215" +270231,USB-C Charging Cable,1,11.95,10/19/19 22:09,"667 8th St, San Francisco, CA 94016" +270232,Bose SoundSport Headphones,1,99.99,10/13/19 13:31,"72 Jackson St, Portland, OR 97035" +270233,Apple Airpods Headphones,1,150,10/27/19 20:00,"237 14th St, New York City, NY 10001" +270234,ThinkPad Laptop,1,999.99,10/17/19 01:01,"874 Willow St, Los Angeles, CA 90001" +270235,27in 4K Gaming Monitor,1,389.99,10/01/19 07:03,"117 Maple St, Boston, MA 02215" +270236,USB-C Charging Cable,1,11.95,10/20/19 20:39,"66 Wilson St, New York City, NY 10001" +270237,AAA Batteries (4-pack),1,2.99,10/26/19 17:11,"293 1st St, Los Angeles, CA 90001" +270238,AAA Batteries (4-pack),1,2.99,10/30/19 19:11,"538 8th St, Dallas, TX 75001" +270239,Wired Headphones,1,11.99,10/18/19 21:09,"799 4th St, New York City, NY 10001" +270240,Bose SoundSport Headphones,1,99.99,10/26/19 12:24,"736 Forest St, Los Angeles, CA 90001" +270241,Wired Headphones,1,11.99,10/19/19 18:17,"245 Walnut St, Los Angeles, CA 90001" +270242,Lightning Charging Cable,1,14.95,10/07/19 20:48,"339 Ridge St, Los Angeles, CA 90001" +270243,34in Ultrawide Monitor,1,379.99,10/10/19 17:59,"893 Meadow St, Atlanta, GA 30301" +270244,34in Ultrawide Monitor,1,379.99,10/21/19 15:03,"722 Forest St, Atlanta, GA 30301" +270245,USB-C Charging Cable,1,11.95,10/22/19 17:55,"301 Main St, New York City, NY 10001" +270246,AAA Batteries (4-pack),1,2.99,10/09/19 14:37,"657 Church St, New York City, NY 10001" +270247,Flatscreen TV,1,300,10/31/19 12:47,"196 Chestnut St, Boston, MA 02215" +270248,34in Ultrawide Monitor,1,379.99,10/14/19 00:06,"9 13th St, Atlanta, GA 30301" +270249,USB-C Charging Cable,1,11.95,10/05/19 09:23,"384 Washington St, Boston, MA 02215" +270250,Apple Airpods Headphones,1,150,10/22/19 07:18,"132 9th St, New York City, NY 10001" +270251,27in FHD Monitor,1,149.99,10/30/19 20:35,"526 11th St, Los Angeles, CA 90001" +270252,Lightning Charging Cable,1,14.95,10/12/19 19:51,"63 Church St, Boston, MA 02215" +270253,Macbook Pro Laptop,1,1700,10/03/19 20:35,"20 Church St, Boston, MA 02215" +270254,Apple Airpods Headphones,1,150,10/29/19 08:55,"914 North St, New York City, NY 10001" +270255,27in FHD Monitor,1,149.99,10/12/19 10:45,"70 Pine St, San Francisco, CA 94016" +270256,Wired Headphones,1,11.99,10/11/19 19:07,"475 Cherry St, San Francisco, CA 94016" +270257,AAA Batteries (4-pack),2,2.99,10/14/19 15:31,"909 Willow St, Los Angeles, CA 90001" +270258,Lightning Charging Cable,1,14.95,10/04/19 12:39,"647 Adams St, New York City, NY 10001" +270259,Bose SoundSport Headphones,1,99.99,10/04/19 00:13,"202 Lakeview St, San Francisco, CA 94016" +270260,USB-C Charging Cable,2,11.95,10/18/19 15:36,"488 6th St, Dallas, TX 75001" +270261,AAA Batteries (4-pack),1,2.99,10/27/19 14:26,"960 Pine St, San Francisco, CA 94016" +270262,Vareebadd Phone,1,400,10/18/19 14:12,"766 Jackson St, Seattle, WA 98101" +270262,USB-C Charging Cable,1,11.95,10/18/19 14:12,"766 Jackson St, Seattle, WA 98101" +270263,Wired Headphones,1,11.99,10/09/19 18:06,"675 Hickory St, Los Angeles, CA 90001" +270264,Google Phone,1,600,10/27/19 20:07,"808 Highland St, Dallas, TX 75001" +270265,Apple Airpods Headphones,1,150,10/08/19 19:21,"902 Lincoln St, Boston, MA 02215" +270266,AA Batteries (4-pack),1,3.84,10/15/19 01:17,"38 1st St, Seattle, WA 98101" +270267,Apple Airpods Headphones,1,150,10/17/19 18:28,"886 South St, Portland, OR 97035" +270268,AA Batteries (4-pack),1,3.84,10/01/19 20:58,"80 River St, Los Angeles, CA 90001" +270269,AA Batteries (4-pack),2,3.84,10/13/19 13:43,"503 Maple St, New York City, NY 10001" +270270,USB-C Charging Cable,1,11.95,10/28/19 11:51,"857 Cedar St, Boston, MA 02215" +270271,27in 4K Gaming Monitor,1,389.99,10/16/19 21:17,"324 River St, Austin, TX 73301" +270272,iPhone,1,700,10/10/19 19:43,"714 Center St, Boston, MA 02215" +270273,AAA Batteries (4-pack),2,2.99,10/16/19 20:51,"598 Forest St, San Francisco, CA 94016" +270274,iPhone,1,700,10/18/19 18:22,"333 Wilson St, Seattle, WA 98101" +270274,Lightning Charging Cable,1,14.95,10/18/19 18:22,"333 Wilson St, Seattle, WA 98101" +270274,Apple Airpods Headphones,1,150,10/18/19 18:22,"333 Wilson St, Seattle, WA 98101" +270275,AA Batteries (4-pack),1,3.84,10/17/19 14:38,"549 Park St, Boston, MA 02215" +270276,AAA Batteries (4-pack),1,2.99,10/25/19 20:10,"161 Willow St, Los Angeles, CA 90001" +270277,AA Batteries (4-pack),2,3.84,10/19/19 02:05,"975 Wilson St, Boston, MA 02215" +270278,AA Batteries (4-pack),1,3.84,10/09/19 06:20,"855 Park St, New York City, NY 10001" +270279,Apple Airpods Headphones,1,150,10/09/19 16:12,"474 11th St, Los Angeles, CA 90001" +270280,AAA Batteries (4-pack),1,2.99,10/04/19 21:06,"840 1st St, San Francisco, CA 94016" +270281,Lightning Charging Cable,1,14.95,10/30/19 19:29,"161 Jackson St, San Francisco, CA 94016" +270282,Bose SoundSport Headphones,1,99.99,10/31/19 19:12,"640 Madison St, San Francisco, CA 94016" +270283,iPhone,1,700,10/23/19 18:54,"632 Lincoln St, Los Angeles, CA 90001" +270284,USB-C Charging Cable,1,11.95,10/24/19 15:29,"267 1st St, Boston, MA 02215" +270285,Apple Airpods Headphones,1,150,10/27/19 12:12,"277 Lincoln St, Seattle, WA 98101" +270286,USB-C Charging Cable,1,11.95,10/23/19 18:53,"337 Lakeview St, Los Angeles, CA 90001" +270287,Vareebadd Phone,1,400,10/12/19 21:02,"287 2nd St, Portland, ME 04101" +270287,USB-C Charging Cable,1,11.95,10/12/19 21:02,"287 2nd St, Portland, ME 04101" +270287,AAA Batteries (4-pack),1,2.99,10/12/19 21:02,"287 2nd St, Portland, ME 04101" +270288,Lightning Charging Cable,1,14.95,10/09/19 20:50,"497 Cedar St, New York City, NY 10001" +270289,AA Batteries (4-pack),1,3.84,10/20/19 22:56,"305 9th St, Seattle, WA 98101" +270290,20in Monitor,1,109.99,10/31/19 15:26,"235 Elm St, Dallas, TX 75001" +270291,iPhone,1,700,10/14/19 12:48,"389 9th St, Atlanta, GA 30301" +270292,27in 4K Gaming Monitor,1,389.99,10/16/19 15:14,"345 Hill St, Boston, MA 02215" +270293,AAA Batteries (4-pack),1,2.99,10/21/19 13:42,"237 Park St, Atlanta, GA 30301" +270294,Wired Headphones,1,11.99,10/15/19 12:04,"346 1st St, Los Angeles, CA 90001" +270295,AAA Batteries (4-pack),1,2.99,10/15/19 15:32,"489 River St, New York City, NY 10001" +270296,AAA Batteries (4-pack),1,2.99,10/01/19 14:57,"866 2nd St, Dallas, TX 75001" +270297,Lightning Charging Cable,1,14.95,10/13/19 16:54,"942 11th St, San Francisco, CA 94016" +270298,AA Batteries (4-pack),2,3.84,10/24/19 09:13,"276 Elm St, Seattle, WA 98101" +270299,27in 4K Gaming Monitor,1,389.99,10/15/19 21:20,"239 7th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +270300,Lightning Charging Cable,2,14.95,10/27/19 13:47,"596 Walnut St, San Francisco, CA 94016" +270301,iPhone,1,700,10/02/19 11:22,"823 Willow St, New York City, NY 10001" +270302,Wired Headphones,1,11.99,10/02/19 20:31,"534 14th St, Dallas, TX 75001" +270303,AA Batteries (4-pack),1,3.84,10/10/19 15:18,"641 6th St, Austin, TX 73301" +270304,Apple Airpods Headphones,1,150,10/25/19 12:33,"521 Elm St, Dallas, TX 75001" +270305,AA Batteries (4-pack),1,3.84,10/31/19 01:06,"212 10th St, Seattle, WA 98101" +270306,Macbook Pro Laptop,1,1700,10/10/19 07:01,"878 Jefferson St, New York City, NY 10001" +270307,AAA Batteries (4-pack),1,2.99,10/25/19 19:03,"961 Church St, Los Angeles, CA 90001" +270308,USB-C Charging Cable,1,11.95,10/10/19 19:36,"63 Dogwood St, San Francisco, CA 94016" +270309,iPhone,1,700,10/07/19 16:51,"46 11th St, Dallas, TX 75001" +270310,AA Batteries (4-pack),1,3.84,10/03/19 21:51,"705 Cherry St, Dallas, TX 75001" +270311,27in 4K Gaming Monitor,1,389.99,10/07/19 12:34,"492 North St, Seattle, WA 98101" +270312,Wired Headphones,1,11.99,10/07/19 13:03,"553 Wilson St, Seattle, WA 98101" +270313,USB-C Charging Cable,1,11.95,10/05/19 14:19,"615 Maple St, Portland, OR 97035" +270314,iPhone,1,700,10/03/19 22:18,"318 South St, San Francisco, CA 94016" +270315,USB-C Charging Cable,1,11.95,10/27/19 08:05,"443 South St, Los Angeles, CA 90001" +270316,AA Batteries (4-pack),1,3.84,10/08/19 06:05,"134 Chestnut St, Los Angeles, CA 90001" +270317,Macbook Pro Laptop,1,1700,10/31/19 22:13,"375 Washington St, New York City, NY 10001" +270318,Wired Headphones,1,11.99,10/08/19 20:00,"300 Madison St, Los Angeles, CA 90001" +270319,Apple Airpods Headphones,1,150,10/02/19 22:17,"200 Willow St, New York City, NY 10001" +270320,iPhone,1,700,10/17/19 21:33,"138 1st St, Atlanta, GA 30301" +270320,Lightning Charging Cable,2,14.95,10/17/19 21:33,"138 1st St, Atlanta, GA 30301" +270321,AAA Batteries (4-pack),1,2.99,10/20/19 10:23,"630 14th St, Portland, ME 04101" +270322,Wired Headphones,1,11.99,10/12/19 21:38,"965 Center St, San Francisco, CA 94016" +270323,Apple Airpods Headphones,1,150,10/19/19 07:48,"196 1st St, New York City, NY 10001" +270324,27in 4K Gaming Monitor,1,389.99,10/10/19 19:03,"207 Johnson St, Los Angeles, CA 90001" +270325,AAA Batteries (4-pack),1,2.99,10/27/19 16:16,"324 Maple St, Dallas, TX 75001" +270326,Wired Headphones,1,11.99,10/05/19 15:15,"246 Washington St, San Francisco, CA 94016" +,,,,, +270327,Apple Airpods Headphones,1,150,10/09/19 13:18,"234 5th St, Los Angeles, CA 90001" +270328,Apple Airpods Headphones,1,150,10/02/19 16:02,"778 2nd St, Austin, TX 73301" +270329,27in FHD Monitor,1,149.99,10/24/19 15:07,"453 Elm St, Los Angeles, CA 90001" +270330,AA Batteries (4-pack),1,3.84,10/02/19 20:32,"706 Ridge St, Atlanta, GA 30301" +270331,AA Batteries (4-pack),2,3.84,10/09/19 14:18,"111 Meadow St, Los Angeles, CA 90001" +270332,Lightning Charging Cable,1,14.95,10/27/19 21:33,"73 Meadow St, Portland, OR 97035" +270333,Wired Headphones,1,11.99,10/31/19 10:35,"95 7th St, Austin, TX 73301" +270334,Flatscreen TV,1,300,10/21/19 22:14,"675 Chestnut St, Seattle, WA 98101" +270335,27in FHD Monitor,1,149.99,10/29/19 20:47,"161 Sunset St, Los Angeles, CA 90001" +270336,Apple Airpods Headphones,1,150,10/07/19 14:41,"144 1st St, Dallas, TX 75001" +270337,Wired Headphones,1,11.99,10/15/19 11:38,"787 Washington St, Dallas, TX 75001" +270338,USB-C Charging Cable,1,11.95,10/03/19 09:13,"800 Washington St, Seattle, WA 98101" +270339,Wired Headphones,1,11.99,10/31/19 18:06,"301 Lakeview St, San Francisco, CA 94016" +270340,ThinkPad Laptop,1,999.99,10/19/19 13:15,"950 Hill St, Boston, MA 02215" +270341,Macbook Pro Laptop,1,1700,10/09/19 13:13,"771 6th St, New York City, NY 10001" +270342,Lightning Charging Cable,1,14.95,10/04/19 07:19,"251 Maple St, Los Angeles, CA 90001" +270343,Vareebadd Phone,1,400,10/07/19 19:28,"364 Meadow St, San Francisco, CA 94016" +270344,Flatscreen TV,1,300,10/14/19 18:13,"199 4th St, Atlanta, GA 30301" +270345,USB-C Charging Cable,1,11.95,10/09/19 19:49,"582 Meadow St, Boston, MA 02215" +270346,iPhone,1,700,10/12/19 20:46,"797 Jackson St, Los Angeles, CA 90001" +270347,27in 4K Gaming Monitor,1,389.99,10/08/19 14:43,"451 Jackson St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +270348,USB-C Charging Cable,1,11.95,10/27/19 09:04,"582 Lake St, Portland, OR 97035" +270349,AAA Batteries (4-pack),1,2.99,10/17/19 19:43,"604 Church St, Los Angeles, CA 90001" +270350,Lightning Charging Cable,1,14.95,10/05/19 11:59,"109 Johnson St, Los Angeles, CA 90001" +270350,Flatscreen TV,1,300,10/05/19 11:59,"109 Johnson St, Los Angeles, CA 90001" +270351,27in 4K Gaming Monitor,1,389.99,10/29/19 18:07,"519 Walnut St, New York City, NY 10001" +270352,AAA Batteries (4-pack),2,2.99,10/13/19 17:26,"977 Meadow St, Boston, MA 02215" +270353,USB-C Charging Cable,1,11.95,10/28/19 09:24,"142 Jefferson St, Los Angeles, CA 90001" +270354,Lightning Charging Cable,1,14.95,10/01/19 18:33,"365 5th St, Seattle, WA 98101" +270355,AA Batteries (4-pack),2,3.84,10/10/19 15:01,"135 Highland St, New York City, NY 10001" +270355,AA Batteries (4-pack),2,3.84,10/10/19 15:01,"135 Highland St, New York City, NY 10001" +270356,Wired Headphones,1,11.99,10/05/19 21:18,"576 Main St, Dallas, TX 75001" +270357,34in Ultrawide Monitor,1,379.99,10/24/19 22:09,"236 Lakeview St, Los Angeles, CA 90001" +270358,USB-C Charging Cable,1,11.95,10/31/19 23:33,"405 Cedar St, Portland, OR 97035" +270359,Vareebadd Phone,1,400,10/22/19 15:06,"626 Willow St, San Francisco, CA 94016" +270360,Google Phone,1,600,10/06/19 09:29,"129 Johnson St, San Francisco, CA 94016" +270360,AAA Batteries (4-pack),1,2.99,10/06/19 09:29,"129 Johnson St, San Francisco, CA 94016" +270361,27in 4K Gaming Monitor,1,389.99,10/21/19 21:16,"580 Highland St, New York City, NY 10001" +270362,USB-C Charging Cable,1,11.95,10/31/19 13:03,"634 Johnson St, San Francisco, CA 94016" +270363,AAA Batteries (4-pack),1,2.99,10/26/19 11:52,"526 Dogwood St, San Francisco, CA 94016" +270364,AAA Batteries (4-pack),1,2.99,10/13/19 11:46,"937 Jefferson St, Portland, OR 97035" +270365,AAA Batteries (4-pack),1,2.99,10/13/19 18:39,"483 Highland St, San Francisco, CA 94016" +270366,Lightning Charging Cable,1,14.95,10/23/19 14:41,"387 River St, Los Angeles, CA 90001" +270367,Lightning Charging Cable,1,14.95,10/09/19 14:14,"21 Center St, Atlanta, GA 30301" +270368,20in Monitor,1,109.99,10/18/19 10:13,"382 Lake St, Austin, TX 73301" +270369,Lightning Charging Cable,2,14.95,10/18/19 11:01,"870 Hickory St, San Francisco, CA 94016" +270370,27in 4K Gaming Monitor,1,389.99,10/12/19 09:46,"29 Pine St, Los Angeles, CA 90001" +270371,USB-C Charging Cable,1,11.95,10/16/19 21:58,"36 Maple St, San Francisco, CA 94016" +270372,ThinkPad Laptop,1,999.99,10/04/19 17:59,"931 8th St, Atlanta, GA 30301" +270373,Bose SoundSport Headphones,1,99.99,10/05/19 11:58,"308 Cherry St, Boston, MA 02215" +270374,Lightning Charging Cable,1,14.95,10/23/19 09:44,"7 Lincoln St, Boston, MA 02215" +270375,Wired Headphones,1,11.99,10/08/19 20:55,"554 4th St, Los Angeles, CA 90001" +270376,AA Batteries (4-pack),1,3.84,10/20/19 20:44,"493 5th St, San Francisco, CA 94016" +270377,AA Batteries (4-pack),5,3.84,10/26/19 17:00,"91 Sunset St, San Francisco, CA 94016" +270378,27in 4K Gaming Monitor,1,389.99,10/11/19 18:56,"359 Main St, Austin, TX 73301" +270379,Lightning Charging Cable,1,14.95,10/22/19 13:58,"601 10th St, San Francisco, CA 94016" +270380,Wired Headphones,1,11.99,10/13/19 14:08,"38 14th St, Austin, TX 73301" +270381,Flatscreen TV,1,300,10/21/19 14:41,"581 Main St, Atlanta, GA 30301" +270382,Bose SoundSport Headphones,1,99.99,10/13/19 09:13,"120 Walnut St, Boston, MA 02215" +270383,Wired Headphones,1,11.99,10/30/19 09:13,"962 Spruce St, Atlanta, GA 30301" +270384,Wired Headphones,1,11.99,10/20/19 18:57,"815 Sunset St, San Francisco, CA 94016" +270385,AAA Batteries (4-pack),2,2.99,10/08/19 22:34,"719 Wilson St, Los Angeles, CA 90001" +270386,27in FHD Monitor,1,149.99,10/01/19 11:18,"917 Wilson St, Seattle, WA 98101" +270387,Bose SoundSport Headphones,1,99.99,10/01/19 19:08,"707 Johnson St, Los Angeles, CA 90001" +270388,Lightning Charging Cable,1,14.95,10/18/19 15:17,"611 Pine St, Boston, MA 02215" +270389,Lightning Charging Cable,1,14.95,10/25/19 12:47,"163 North St, Los Angeles, CA 90001" +270390,Wired Headphones,1,11.99,10/12/19 11:46,"728 13th St, Dallas, TX 75001" +270391,AA Batteries (4-pack),1,3.84,10/30/19 12:32,"701 5th St, Dallas, TX 75001" +270392,AAA Batteries (4-pack),1,2.99,10/31/19 09:45,"88 Forest St, Boston, MA 02215" +270393,Bose SoundSport Headphones,1,99.99,10/13/19 18:06,"622 Lakeview St, Atlanta, GA 30301" +270394,Apple Airpods Headphones,1,150,10/16/19 20:03,"879 10th St, Boston, MA 02215" +270395,USB-C Charging Cable,1,11.95,10/01/19 22:40,"453 Washington St, San Francisco, CA 94016" +270396,AA Batteries (4-pack),1,3.84,10/22/19 10:42,"102 Elm St, Dallas, TX 75001" +270397,Bose SoundSport Headphones,1,99.99,10/13/19 17:21,"916 Lake St, New York City, NY 10001" +270398,27in 4K Gaming Monitor,1,389.99,10/26/19 21:48,"390 11th St, Seattle, WA 98101" +270399,34in Ultrawide Monitor,1,379.99,10/19/19 14:44,"89 Church St, Los Angeles, CA 90001" +270400,AAA Batteries (4-pack),1,2.99,10/22/19 23:46,"334 9th St, Atlanta, GA 30301" +270401,AAA Batteries (4-pack),1,2.99,10/25/19 17:57,"162 Center St, Los Angeles, CA 90001" +270402,AAA Batteries (4-pack),2,2.99,10/13/19 07:50,"1 Willow St, Dallas, TX 75001" +270403,AAA Batteries (4-pack),1,2.99,10/07/19 13:50,"793 7th St, San Francisco, CA 94016" +270404,20in Monitor,1,109.99,10/04/19 16:00,"600 Walnut St, San Francisco, CA 94016" +270405,Lightning Charging Cable,1,14.95,10/19/19 19:37,"911 Lake St, Los Angeles, CA 90001" +270406,AAA Batteries (4-pack),3,2.99,10/16/19 02:04,"963 8th St, Austin, TX 73301" +270407,AAA Batteries (4-pack),3,2.99,10/04/19 12:20,"848 Church St, Portland, OR 97035" +270408,Bose SoundSport Headphones,1,99.99,10/12/19 13:07,"74 Church St, Atlanta, GA 30301" +270409,AA Batteries (4-pack),1,3.84,10/03/19 14:52,"301 2nd St, San Francisco, CA 94016" +270410,Lightning Charging Cable,1,14.95,10/29/19 09:57,"212 Wilson St, San Francisco, CA 94016" +270411,Apple Airpods Headphones,1,150,10/02/19 08:53,"546 West St, Seattle, WA 98101" +270412,AA Batteries (4-pack),2,3.84,10/20/19 18:14,"400 5th St, San Francisco, CA 94016" +270413,Bose SoundSport Headphones,1,99.99,10/22/19 11:53,"818 Hill St, San Francisco, CA 94016" +270414,Wired Headphones,1,11.99,10/04/19 12:17,"443 4th St, Los Angeles, CA 90001" +270415,Lightning Charging Cable,1,14.95,10/16/19 21:24,"148 1st St, Seattle, WA 98101" +270416,Wired Headphones,1,11.99,10/24/19 20:04,"324 Chestnut St, San Francisco, CA 94016" +270417,Flatscreen TV,1,300,10/26/19 13:09,"623 Sunset St, Los Angeles, CA 90001" +270418,ThinkPad Laptop,1,999.99,10/03/19 11:59,"808 West St, Seattle, WA 98101" +270419,34in Ultrawide Monitor,1,379.99,10/27/19 13:31,"565 West St, Boston, MA 02215" +270420,Wired Headphones,1,11.99,10/30/19 17:27,"175 River St, New York City, NY 10001" +270421,Apple Airpods Headphones,1,150,10/10/19 11:49,"622 Maple St, New York City, NY 10001" +270422,Wired Headphones,1,11.99,10/23/19 22:08,"41 14th St, Los Angeles, CA 90001" +270423,AA Batteries (4-pack),1,3.84,10/26/19 13:43,"492 1st St, Portland, OR 97035" +270424,27in FHD Monitor,1,149.99,10/27/19 11:21,"137 Washington St, Boston, MA 02215" +270425,Google Phone,1,600,10/26/19 20:20,"951 Pine St, Boston, MA 02215" +270425,USB-C Charging Cable,1,11.95,10/26/19 20:20,"951 Pine St, Boston, MA 02215" +270426,34in Ultrawide Monitor,1,379.99,10/15/19 21:45,"939 1st St, San Francisco, CA 94016" +270427,AA Batteries (4-pack),1,3.84,10/02/19 14:01,"11 10th St, New York City, NY 10001" +270428,Wired Headphones,1,11.99,10/18/19 23:10,"359 Jefferson St, San Francisco, CA 94016" +270429,AA Batteries (4-pack),1,3.84,10/13/19 23:00,"566 Lake St, San Francisco, CA 94016" +270430,Wired Headphones,1,11.99,10/28/19 22:29,"712 9th St, Dallas, TX 75001" +270431,27in FHD Monitor,1,149.99,10/29/19 13:22,"671 1st St, San Francisco, CA 94016" +270432,USB-C Charging Cable,1,11.95,10/24/19 02:49,"738 Ridge St, Atlanta, GA 30301" +270433,Apple Airpods Headphones,1,150,10/21/19 12:41,"164 South St, San Francisco, CA 94016" +270434,USB-C Charging Cable,1,11.95,10/21/19 15:44,"130 Jackson St, Atlanta, GA 30301" +270435,27in FHD Monitor,1,149.99,10/15/19 10:42,"619 Hill St, Austin, TX 73301" +270436,20in Monitor,1,109.99,10/27/19 08:01,"937 Adams St, Boston, MA 02215" +270437,Apple Airpods Headphones,1,150,10/04/19 13:39,"343 14th St, Dallas, TX 75001" +270438,Lightning Charging Cable,1,14.95,10/12/19 14:53,"793 Washington St, Boston, MA 02215" +270439,Apple Airpods Headphones,1,150,10/27/19 16:44,"403 12th St, New York City, NY 10001" +270440,20in Monitor,1,109.99,10/08/19 14:57,"305 Park St, Seattle, WA 98101" +270441,Bose SoundSport Headphones,1,99.99,10/15/19 08:17,"61 Main St, Seattle, WA 98101" +270442,Wired Headphones,1,11.99,10/12/19 11:17,"835 13th St, Boston, MA 02215" +270443,ThinkPad Laptop,1,999.99,10/14/19 13:00,"533 Lakeview St, Seattle, WA 98101" +270444,Lightning Charging Cable,1,14.95,10/14/19 14:46,"763 Sunset St, Los Angeles, CA 90001" +270445,Vareebadd Phone,1,400,10/31/19 12:41,"537 2nd St, San Francisco, CA 94016" +270446,Bose SoundSport Headphones,1,99.99,10/27/19 21:34,"669 11th St, Portland, OR 97035" +270447,Wired Headphones,1,11.99,10/15/19 19:09,"345 2nd St, Dallas, TX 75001" +270448,AAA Batteries (4-pack),1,2.99,10/07/19 18:43,"325 River St, Dallas, TX 75001" +270449,Wired Headphones,1,11.99,10/08/19 12:26,"251 Wilson St, New York City, NY 10001" +270450,Wired Headphones,1,11.99,10/01/19 11:41,"108 Adams St, Los Angeles, CA 90001" +270451,USB-C Charging Cable,1,11.95,10/06/19 11:00,"865 Sunset St, San Francisco, CA 94016" +270452,20in Monitor,1,109.99,10/11/19 20:28,"423 Willow St, San Francisco, CA 94016" +270453,Wired Headphones,1,11.99,10/02/19 13:36,"90 South St, San Francisco, CA 94016" +270454,27in 4K Gaming Monitor,1,389.99,10/22/19 15:31,"965 Willow St, Dallas, TX 75001" +270455,Flatscreen TV,1,300,10/14/19 21:12,"342 Chestnut St, Los Angeles, CA 90001" +270456,AAA Batteries (4-pack),3,2.99,10/25/19 16:57,"522 14th St, Portland, ME 04101" +270457,AAA Batteries (4-pack),1,2.99,10/24/19 14:02,"77 North St, Portland, OR 97035" +270458,AAA Batteries (4-pack),3,2.99,10/09/19 09:11,"667 Highland St, Dallas, TX 75001" +270459,AAA Batteries (4-pack),1,2.99,10/21/19 21:35,"877 5th St, Portland, OR 97035" +270460,Lightning Charging Cable,1,14.95,10/22/19 09:44,"197 Center St, Dallas, TX 75001" +270461,Apple Airpods Headphones,1,150,10/07/19 21:20,"417 Elm St, Seattle, WA 98101" +270462,AA Batteries (4-pack),1,3.84,10/18/19 18:23,"275 Meadow St, Boston, MA 02215" +270463,Apple Airpods Headphones,1,150,10/03/19 08:54,"36 Hickory St, Boston, MA 02215" +270464,AAA Batteries (4-pack),2,2.99,10/05/19 14:00,"447 8th St, Boston, MA 02215" +270465,USB-C Charging Cable,1,11.95,10/31/19 14:07,"170 Sunset St, San Francisco, CA 94016" +270466,Wired Headphones,1,11.99,10/29/19 15:04,"33 Lincoln St, Atlanta, GA 30301" +270467,Apple Airpods Headphones,1,150,10/06/19 05:53,"659 12th St, San Francisco, CA 94016" +270468,Lightning Charging Cable,1,14.95,10/16/19 04:57,"539 10th St, San Francisco, CA 94016" +270469,AAA Batteries (4-pack),1,2.99,10/20/19 15:29,"140 14th St, Los Angeles, CA 90001" +270470,27in 4K Gaming Monitor,1,389.99,10/02/19 16:34,"422 South St, Austin, TX 73301" +270471,USB-C Charging Cable,1,11.95,10/12/19 08:11,"544 Dogwood St, Dallas, TX 75001" +270472,34in Ultrawide Monitor,1,379.99,10/30/19 18:54,"148 Madison St, Portland, OR 97035" +270473,AA Batteries (4-pack),1,3.84,10/19/19 11:08,"595 Hickory St, Austin, TX 73301" +270474,USB-C Charging Cable,2,11.95,10/26/19 11:12,"205 North St, Austin, TX 73301" +270475,Lightning Charging Cable,1,14.95,10/05/19 16:38,"119 Jackson St, San Francisco, CA 94016" +270476,Wired Headphones,1,11.99,10/29/19 19:25,"898 Main St, San Francisco, CA 94016" +270477,Apple Airpods Headphones,1,150,10/05/19 16:39,"870 Spruce St, New York City, NY 10001" +270478,AA Batteries (4-pack),1,3.84,10/27/19 14:39,"304 Highland St, Boston, MA 02215" +270479,AAA Batteries (4-pack),1,2.99,10/02/19 13:37,"959 Jackson St, Atlanta, GA 30301" +270480,AAA Batteries (4-pack),1,2.99,10/04/19 12:02,"781 Spruce St, Austin, TX 73301" +270481,Vareebadd Phone,1,400,10/01/19 10:04,"662 Cedar St, Atlanta, GA 30301" +270482,AAA Batteries (4-pack),1,2.99,10/08/19 20:20,"654 Forest St, Los Angeles, CA 90001" +270483,Lightning Charging Cable,1,14.95,10/25/19 10:25,"863 South St, Austin, TX 73301" +270484,27in FHD Monitor,1,149.99,10/06/19 10:38,"958 Lakeview St, New York City, NY 10001" +270485,AAA Batteries (4-pack),2,2.99,10/28/19 16:28,"271 Hickory St, New York City, NY 10001" +270486,USB-C Charging Cable,1,11.95,10/08/19 13:56,"394 Madison St, Dallas, TX 75001" +270487,Lightning Charging Cable,1,14.95,10/30/19 13:10,"282 1st St, Boston, MA 02215" +270488,Flatscreen TV,1,300,10/31/19 23:42,"926 Cherry St, Dallas, TX 75001" +270489,Lightning Charging Cable,1,14.95,10/27/19 09:39,"136 River St, Seattle, WA 98101" +270490,AA Batteries (4-pack),1,3.84,10/09/19 13:24,"853 8th St, Los Angeles, CA 90001" +270491,Bose SoundSport Headphones,1,99.99,10/15/19 09:10,"110 Church St, Seattle, WA 98101" +270491,Vareebadd Phone,1,400,10/15/19 09:10,"110 Church St, Seattle, WA 98101" +270492,USB-C Charging Cable,1,11.95,10/24/19 13:21,"202 Johnson St, Los Angeles, CA 90001" +270493,AAA Batteries (4-pack),2,2.99,10/07/19 07:17,"304 14th St, San Francisco, CA 94016" +270494,Wired Headphones,1,11.99,10/02/19 19:18,"884 Main St, Los Angeles, CA 90001" +270495,ThinkPad Laptop,1,999.99,10/02/19 23:37,"236 Cedar St, Los Angeles, CA 90001" +270496,Flatscreen TV,1,300,10/08/19 19:34,"194 Adams St, San Francisco, CA 94016" +270497,Wired Headphones,1,11.99,10/15/19 14:19,"390 7th St, San Francisco, CA 94016" +270498,Lightning Charging Cable,1,14.95,10/22/19 10:16,"450 Washington St, New York City, NY 10001" +270499,Bose SoundSport Headphones,1,99.99,10/01/19 11:39,"633 Johnson St, Dallas, TX 75001" +270500,27in FHD Monitor,1,149.99,10/31/19 11:35,"214 Park St, Los Angeles, CA 90001" +270500,Lightning Charging Cable,1,14.95,10/31/19 11:35,"214 Park St, Los Angeles, CA 90001" +270501,Macbook Pro Laptop,1,1700,10/09/19 16:53,"650 Cherry St, Boston, MA 02215" +270502,ThinkPad Laptop,1,999.99,10/08/19 13:52,"468 6th St, Boston, MA 02215" +270503,AAA Batteries (4-pack),2,2.99,10/18/19 22:27,"963 Jackson St, New York City, NY 10001" +270504,Apple Airpods Headphones,1,150,10/31/19 06:48,"51 Highland St, New York City, NY 10001" +270505,AAA Batteries (4-pack),3,2.99,10/30/19 19:39,"799 Wilson St, Atlanta, GA 30301" +270506,Apple Airpods Headphones,1,150,10/17/19 23:49,"587 14th St, Seattle, WA 98101" +270507,Lightning Charging Cable,1,14.95,10/04/19 19:29,"926 Jefferson St, Los Angeles, CA 90001" +270508,AA Batteries (4-pack),2,3.84,10/10/19 20:19,"203 Lake St, Los Angeles, CA 90001" +270509,Apple Airpods Headphones,1,150,10/16/19 21:51,"884 Elm St, Los Angeles, CA 90001" +270510,Macbook Pro Laptop,1,1700,10/26/19 20:05,"183 Maple St, San Francisco, CA 94016" +270511,USB-C Charging Cable,1,11.95,10/16/19 14:44,"817 2nd St, Seattle, WA 98101" +270512,AA Batteries (4-pack),1,3.84,10/21/19 01:20,"825 9th St, Austin, TX 73301" +270513,USB-C Charging Cable,1,11.95,10/20/19 23:09,"814 Cedar St, Seattle, WA 98101" +270514,Wired Headphones,1,11.99,10/02/19 16:09,"408 Willow St, New York City, NY 10001" +270515,AA Batteries (4-pack),1,3.84,10/26/19 19:59,"436 Park St, Seattle, WA 98101" +270516,Flatscreen TV,1,300,10/19/19 20:37,"598 Willow St, San Francisco, CA 94016" +270517,AAA Batteries (4-pack),1,2.99,10/21/19 22:10,"557 South St, Boston, MA 02215" +270518,Bose SoundSport Headphones,1,99.99,10/07/19 15:05,"553 Cedar St, Boston, MA 02215" +270519,AAA Batteries (4-pack),1,2.99,10/03/19 15:44,"818 Willow St, New York City, NY 10001" +270520,Bose SoundSport Headphones,1,99.99,10/05/19 18:28,"584 River St, Seattle, WA 98101" +270521,AA Batteries (4-pack),1,3.84,10/03/19 22:06,"488 Cherry St, Portland, OR 97035" +270522,Vareebadd Phone,1,400,10/07/19 00:43,"199 7th St, San Francisco, CA 94016" +270523,AA Batteries (4-pack),1,3.84,10/29/19 11:21,"128 Lincoln St, San Francisco, CA 94016" +270524,AAA Batteries (4-pack),1,2.99,10/07/19 20:57,"10 Lake St, Portland, OR 97035" +270525,Wired Headphones,1,11.99,10/24/19 14:11,"684 Church St, Los Angeles, CA 90001" +270526,Wired Headphones,1,11.99,10/05/19 12:11,"528 North St, New York City, NY 10001" +270527,Apple Airpods Headphones,1,150,10/25/19 12:24,"159 4th St, San Francisco, CA 94016" +270528,Macbook Pro Laptop,1,1700,10/17/19 14:06,"832 Maple St, Los Angeles, CA 90001" +270529,AAA Batteries (4-pack),1,2.99,10/03/19 13:16,"466 West St, Los Angeles, CA 90001" +270530,USB-C Charging Cable,1,11.95,10/24/19 17:35,"691 West St, Seattle, WA 98101" +270531,LG Dryer,1,600.0,10/08/19 20:15,"880 West St, Boston, MA 02215" +270532,Flatscreen TV,1,300,10/05/19 11:13,"26 Maple St, New York City, NY 10001" +270533,AA Batteries (4-pack),2,3.84,10/13/19 10:38,"126 Walnut St, Seattle, WA 98101" +270534,Bose SoundSport Headphones,1,99.99,10/02/19 15:11,"448 Church St, Atlanta, GA 30301" +270535,Apple Airpods Headphones,1,150,10/14/19 20:38,"820 11th St, New York City, NY 10001" +270536,USB-C Charging Cable,1,11.95,10/31/19 12:00,"394 Willow St, San Francisco, CA 94016" +270537,AAA Batteries (4-pack),1,2.99,10/06/19 19:36,"833 Meadow St, New York City, NY 10001" +270538,Bose SoundSport Headphones,1,99.99,10/09/19 11:32,"401 Ridge St, San Francisco, CA 94016" +270539,Lightning Charging Cable,1,14.95,10/31/19 22:08,"466 2nd St, San Francisco, CA 94016" +270540,USB-C Charging Cable,1,11.95,10/11/19 20:54,"636 Dogwood St, San Francisco, CA 94016" +270541,34in Ultrawide Monitor,1,379.99,10/17/19 19:29,"2 Walnut St, San Francisco, CA 94016" +270542,Apple Airpods Headphones,1,150,10/22/19 10:49,"110 7th St, San Francisco, CA 94016" +270543,Apple Airpods Headphones,1,150,10/21/19 13:33,"629 Sunset St, Seattle, WA 98101" +270544,AA Batteries (4-pack),1,3.84,10/29/19 16:21,"115 14th St, New York City, NY 10001" +270545,Lightning Charging Cable,2,14.95,10/30/19 19:08,"544 Elm St, Boston, MA 02215" +270546,AAA Batteries (4-pack),1,2.99,10/17/19 10:19,"36 South St, San Francisco, CA 94016" +270547,AAA Batteries (4-pack),1,2.99,10/31/19 22:10,"940 South St, Seattle, WA 98101" +270547,Lightning Charging Cable,1,14.95,10/31/19 22:10,"940 South St, Seattle, WA 98101" +270548,AAA Batteries (4-pack),1,2.99,10/07/19 17:24,"407 Walnut St, Seattle, WA 98101" +270549,AA Batteries (4-pack),1,3.84,10/29/19 19:53,"599 7th St, Portland, OR 97035" +270550,Bose SoundSport Headphones,1,99.99,10/10/19 14:39,"780 Cedar St, San Francisco, CA 94016" +270551,34in Ultrawide Monitor,1,379.99,10/21/19 22:18,"687 Cherry St, San Francisco, CA 94016" +270552,AAA Batteries (4-pack),1,2.99,10/25/19 14:09,"921 Lake St, New York City, NY 10001" +270553,34in Ultrawide Monitor,1,379.99,10/20/19 14:26,"751 4th St, Dallas, TX 75001" +270554,Macbook Pro Laptop,1,1700,10/12/19 07:56,"126 12th St, Los Angeles, CA 90001" +270555,USB-C Charging Cable,2,11.95,10/14/19 00:32,"791 11th St, Seattle, WA 98101" +270556,Wired Headphones,1,11.99,10/08/19 14:50,"106 Lake St, Los Angeles, CA 90001" +270557,AA Batteries (4-pack),1,3.84,10/30/19 11:07,"705 Forest St, Seattle, WA 98101" +270558,AA Batteries (4-pack),1,3.84,10/27/19 22:34,"183 Jefferson St, Portland, OR 97035" +270559,Apple Airpods Headphones,1,150,10/09/19 20:12,"230 West St, Dallas, TX 75001" +270560,27in 4K Gaming Monitor,1,389.99,10/02/19 17:45,"338 Washington St, Seattle, WA 98101" +270561,Macbook Pro Laptop,1,1700,10/03/19 21:52,"665 Highland St, Seattle, WA 98101" +270562,AAA Batteries (4-pack),1,2.99,10/30/19 16:12,"713 1st St, Seattle, WA 98101" +270563,Lightning Charging Cable,1,14.95,10/01/19 08:56,"360 Cedar St, Portland, OR 97035" +270564,AAA Batteries (4-pack),1,2.99,10/11/19 11:06,"282 1st St, Austin, TX 73301" +270565,AAA Batteries (4-pack),1,2.99,10/12/19 13:07,"382 Johnson St, Seattle, WA 98101" +270566,Wired Headphones,1,11.99,10/18/19 15:43,"584 Washington St, Los Angeles, CA 90001" +270567,27in FHD Monitor,1,149.99,10/29/19 15:48,"842 Cedar St, Portland, OR 97035" +270568,20in Monitor,1,109.99,10/22/19 11:55,"943 Lakeview St, Atlanta, GA 30301" +270569,Google Phone,1,600,10/12/19 21:46,"497 14th St, Los Angeles, CA 90001" +270570,ThinkPad Laptop,1,999.99,10/18/19 12:45,"713 Main St, San Francisco, CA 94016" +270571,Lightning Charging Cable,1,14.95,10/09/19 14:39,"72 Park St, Boston, MA 02215" +270572,27in 4K Gaming Monitor,1,389.99,10/07/19 10:52,"549 11th St, Dallas, TX 75001" +270573,Apple Airpods Headphones,1,150,10/15/19 12:39,"203 Walnut St, New York City, NY 10001" +270574,27in FHD Monitor,1,149.99,10/26/19 11:21,"844 West St, Austin, TX 73301" +270575,USB-C Charging Cable,1,11.95,10/26/19 21:59,"705 Sunset St, Los Angeles, CA 90001" +270576,Bose SoundSport Headphones,1,99.99,10/25/19 13:22,"596 7th St, San Francisco, CA 94016" +270577,AAA Batteries (4-pack),1,2.99,10/18/19 15:50,"9 4th St, San Francisco, CA 94016" +270578,Macbook Pro Laptop,1,1700,10/14/19 11:30,"108 Forest St, Boston, MA 02215" +270579,USB-C Charging Cable,2,11.95,10/15/19 20:52,"926 Pine St, Austin, TX 73301" +270580,AAA Batteries (4-pack),1,2.99,10/31/19 12:00,"842 1st St, San Francisco, CA 94016" +270581,USB-C Charging Cable,1,11.95,10/28/19 14:44,"434 12th St, Portland, OR 97035" +270582,USB-C Charging Cable,1,11.95,10/19/19 08:39,"593 13th St, New York City, NY 10001" +270583,34in Ultrawide Monitor,1,379.99,10/21/19 05:36,"464 Wilson St, San Francisco, CA 94016" +270584,LG Dryer,1,600.0,10/09/19 11:37,"938 7th St, San Francisco, CA 94016" +270585,AA Batteries (4-pack),1,3.84,10/06/19 14:37,"102 Johnson St, Boston, MA 02215" +270586,Apple Airpods Headphones,1,150,10/30/19 22:35,"948 Elm St, Boston, MA 02215" +270587,Apple Airpods Headphones,1,150,10/08/19 09:19,"839 Center St, Dallas, TX 75001" +270588,USB-C Charging Cable,1,11.95,10/11/19 23:36,"807 13th St, Seattle, WA 98101" +270589,Bose SoundSport Headphones,1,99.99,10/25/19 10:02,"162 7th St, Los Angeles, CA 90001" +270590,AA Batteries (4-pack),1,3.84,10/29/19 10:30,"701 West St, Seattle, WA 98101" +270591,Wired Headphones,1,11.99,10/04/19 16:37,"664 South St, Portland, OR 97035" +270592,Apple Airpods Headphones,1,150,10/21/19 16:07,"252 Walnut St, Dallas, TX 75001" +270593,Bose SoundSport Headphones,1,99.99,10/09/19 23:00,"764 Cedar St, Los Angeles, CA 90001" +270594,Bose SoundSport Headphones,1,99.99,10/28/19 19:21,"284 Jefferson St, Seattle, WA 98101" +270595,Bose SoundSport Headphones,1,99.99,10/05/19 22:17,"281 Maple St, New York City, NY 10001" +270596,AA Batteries (4-pack),1,3.84,10/26/19 17:55,"356 10th St, San Francisco, CA 94016" +270596,USB-C Charging Cable,1,11.95,10/26/19 17:55,"356 10th St, San Francisco, CA 94016" +270597,Macbook Pro Laptop,1,1700,10/20/19 22:41,"644 River St, Atlanta, GA 30301" +270598,USB-C Charging Cable,1,11.95,10/09/19 07:01,"114 Church St, San Francisco, CA 94016" +270599,Apple Airpods Headphones,1,150,10/03/19 22:51,"932 9th St, Boston, MA 02215" +270600,AA Batteries (4-pack),1,3.84,10/10/19 19:38,"731 Jefferson St, Boston, MA 02215" +270601,Lightning Charging Cable,1,14.95,10/09/19 20:11,"546 Center St, Portland, OR 97035" +270602,AAA Batteries (4-pack),2,2.99,10/19/19 20:04,"491 Chestnut St, Austin, TX 73301" +270603,ThinkPad Laptop,1,999.99,10/19/19 22:44,"966 Johnson St, Portland, OR 97035" +270604,USB-C Charging Cable,1,11.95,10/29/19 18:04,"893 Forest St, Portland, OR 97035" +270605,Wired Headphones,1,11.99,10/29/19 17:06,"976 8th St, Dallas, TX 75001" +270606,ThinkPad Laptop,1,999.99,10/07/19 11:52,"599 Maple St, Portland, OR 97035" +270607,AAA Batteries (4-pack),1,2.99,10/31/19 17:27,"212 North St, San Francisco, CA 94016" +270608,iPhone,1,700,10/20/19 10:44,"128 Main St, San Francisco, CA 94016" +270609,USB-C Charging Cable,1,11.95,10/31/19 12:01,"727 Park St, Portland, OR 97035" +270610,Apple Airpods Headphones,1,150,10/31/19 14:52,"251 Hill St, Boston, MA 02215" +270611,Wired Headphones,2,11.99,10/08/19 14:01,"164 Dogwood St, Los Angeles, CA 90001" +270612,ThinkPad Laptop,1,999.99,10/06/19 00:24,"670 Forest St, Dallas, TX 75001" +270613,27in FHD Monitor,1,149.99,10/29/19 16:04,"893 Lakeview St, Boston, MA 02215" +270614,Lightning Charging Cable,1,14.95,10/03/19 22:38,"780 13th St, San Francisco, CA 94016" +270615,USB-C Charging Cable,2,11.95,10/28/19 16:23,"659 Main St, San Francisco, CA 94016" +270616,AAA Batteries (4-pack),2,2.99,10/07/19 20:04,"467 Hill St, Los Angeles, CA 90001" +270617,27in FHD Monitor,1,149.99,10/30/19 14:59,"556 Walnut St, Portland, ME 04101" +270618,Lightning Charging Cable,1,14.95,10/31/19 13:58,"392 Elm St, Los Angeles, CA 90001" +270619,AA Batteries (4-pack),2,3.84,10/13/19 20:44,"380 River St, Seattle, WA 98101" +270620,Lightning Charging Cable,1,14.95,10/14/19 08:50,"113 Maple St, Boston, MA 02215" +270621,AA Batteries (4-pack),2,3.84,10/15/19 09:58,"983 River St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +270622,Bose SoundSport Headphones,1,99.99,10/31/19 07:54,"45 Hickory St, New York City, NY 10001" +270623,Lightning Charging Cable,1,14.95,10/15/19 13:27,"227 Sunset St, San Francisco, CA 94016" +270624,ThinkPad Laptop,1,999.99,10/09/19 08:19,"159 10th St, Atlanta, GA 30301" +270625,Google Phone,1,600,10/11/19 16:55,"803 Ridge St, Dallas, TX 75001" +270626,Apple Airpods Headphones,1,150,10/01/19 17:41,"872 Washington St, Portland, OR 97035" +270627,Wired Headphones,2,11.99,10/09/19 00:22,"947 8th St, Boston, MA 02215" +270628,USB-C Charging Cable,1,11.95,10/21/19 12:59,"719 12th St, New York City, NY 10001" +270629,27in 4K Gaming Monitor,1,389.99,10/06/19 09:01,"774 4th St, Boston, MA 02215" +270630,Bose SoundSport Headphones,1,99.99,10/09/19 15:09,"270 Meadow St, Austin, TX 73301" +270631,34in Ultrawide Monitor,1,379.99,10/26/19 12:19,"317 14th St, Los Angeles, CA 90001" +270632,Apple Airpods Headphones,1,150,10/29/19 21:29,"976 Washington St, Austin, TX 73301" +270633,Bose SoundSport Headphones,1,99.99,10/17/19 21:19,"977 4th St, Atlanta, GA 30301" +270634,Bose SoundSport Headphones,1,99.99,10/23/19 19:13,"260 Spruce St, San Francisco, CA 94016" +270635,Lightning Charging Cable,1,14.95,10/23/19 11:33,"155 Forest St, Atlanta, GA 30301" +270636,Google Phone,1,600,10/09/19 06:39,"795 7th St, Los Angeles, CA 90001" +270637,AA Batteries (4-pack),2,3.84,10/18/19 23:47,"256 West St, Portland, OR 97035" +270638,Google Phone,1,600,10/24/19 12:38,"142 12th St, Dallas, TX 75001" +270639,AAA Batteries (4-pack),1,2.99,10/25/19 14:17,"890 Center St, San Francisco, CA 94016" +270640,27in 4K Gaming Monitor,1,389.99,10/13/19 17:24,"855 5th St, San Francisco, CA 94016" +270641,Wired Headphones,1,11.99,10/14/19 09:56,"911 Pine St, Seattle, WA 98101" +270642,Lightning Charging Cable,1,14.95,10/11/19 20:11,"263 Willow St, New York City, NY 10001" +270643,AA Batteries (4-pack),1,3.84,10/04/19 20:27,"603 Adams St, Atlanta, GA 30301" +270644,USB-C Charging Cable,1,11.95,10/08/19 18:47,"472 Wilson St, San Francisco, CA 94016" +270644,LG Washing Machine,1,600.0,10/08/19 18:47,"472 Wilson St, San Francisco, CA 94016" +270645,AAA Batteries (4-pack),1,2.99,10/01/19 13:42,"839 Jefferson St, New York City, NY 10001" +270646,AAA Batteries (4-pack),1,2.99,10/11/19 12:01,"601 Elm St, Los Angeles, CA 90001" +270647,Apple Airpods Headphones,1,150,10/20/19 20:33,"540 Highland St, San Francisco, CA 94016" +270648,ThinkPad Laptop,1,999.99,10/09/19 15:59,"328 River St, San Francisco, CA 94016" +270649,27in 4K Gaming Monitor,1,389.99,10/29/19 10:20,"334 Maple St, Los Angeles, CA 90001" +270650,AA Batteries (4-pack),1,3.84,10/22/19 17:28,"691 Johnson St, Atlanta, GA 30301" +270651,Wired Headphones,1,11.99,10/28/19 21:48,"636 Lake St, Boston, MA 02215" +270652,USB-C Charging Cable,1,11.95,10/05/19 17:08,"16 Hickory St, San Francisco, CA 94016" +270653,Flatscreen TV,1,300,10/29/19 16:07,"817 1st St, San Francisco, CA 94016" +270654,LG Washing Machine,1,600.0,10/30/19 15:48,"572 Hill St, Portland, OR 97035" +270655,Wired Headphones,1,11.99,10/08/19 21:37,"794 2nd St, Los Angeles, CA 90001" +270656,Apple Airpods Headphones,1,150,10/10/19 20:19,"205 Johnson St, New York City, NY 10001" +270657,iPhone,1,700,10/18/19 12:21,"261 12th St, San Francisco, CA 94016" +270657,Lightning Charging Cable,1,14.95,10/18/19 12:21,"261 12th St, San Francisco, CA 94016" +270658,ThinkPad Laptop,1,999.99,10/29/19 18:04,"499 6th St, Los Angeles, CA 90001" +270659,AA Batteries (4-pack),1,3.84,10/19/19 12:12,"299 Meadow St, Dallas, TX 75001" +270660,LG Dryer,1,600.0,10/03/19 00:13,"688 Madison St, Los Angeles, CA 90001" +270661,Apple Airpods Headphones,1,150,10/09/19 16:11,"584 8th St, Austin, TX 73301" +270662,Lightning Charging Cable,2,14.95,10/01/19 20:16,"944 Maple St, Boston, MA 02215" +270663,27in FHD Monitor,1,149.99,10/19/19 07:52,"697 6th St, San Francisco, CA 94016" +270664,Lightning Charging Cable,1,14.95,10/22/19 18:54,"183 River St, Atlanta, GA 30301" +270665,Wired Headphones,1,11.99,10/03/19 19:28,"731 Ridge St, New York City, NY 10001" +270666,AAA Batteries (4-pack),1,2.99,10/26/19 20:42,"158 Dogwood St, New York City, NY 10001" +270667,27in FHD Monitor,1,149.99,10/27/19 09:18,"441 Sunset St, San Francisco, CA 94016" +270668,34in Ultrawide Monitor,1,379.99,10/11/19 14:40,"595 Walnut St, Dallas, TX 75001" +270669,iPhone,1,700,10/24/19 14:21,"337 Pine St, San Francisco, CA 94016" +270669,iPhone,1,700,10/24/19 14:21,"337 Pine St, San Francisco, CA 94016" +270670,20in Monitor,1,109.99,10/14/19 09:26,"413 South St, Dallas, TX 75001" +270671,Apple Airpods Headphones,1,150,10/06/19 15:53,"690 Hickory St, Portland, OR 97035" +270672,ThinkPad Laptop,1,999.99,10/06/19 12:28,"713 South St, Atlanta, GA 30301" +270673,USB-C Charging Cable,1,11.95,10/13/19 12:44,"565 Elm St, Dallas, TX 75001" +270673,USB-C Charging Cable,2,11.95,10/13/19 12:44,"565 Elm St, Dallas, TX 75001" +270674,Bose SoundSport Headphones,1,99.99,10/27/19 19:46,"512 8th St, Dallas, TX 75001" +270675,27in FHD Monitor,1,149.99,10/16/19 20:24,"600 Madison St, Los Angeles, CA 90001" +270676,AAA Batteries (4-pack),1,2.99,10/15/19 17:24,"110 Johnson St, Dallas, TX 75001" +270677,AA Batteries (4-pack),1,3.84,10/13/19 20:57,"792 River St, New York City, NY 10001" +270678,USB-C Charging Cable,1,11.95,10/27/19 20:03,"727 Pine St, Dallas, TX 75001" +270679,USB-C Charging Cable,1,11.95,10/17/19 08:06,"433 River St, Boston, MA 02215" +270680,Wired Headphones,1,11.99,10/25/19 21:57,"750 South St, Boston, MA 02215" +270681,34in Ultrawide Monitor,1,379.99,10/30/19 08:20,"289 Elm St, San Francisco, CA 94016" +270682,Wired Headphones,1,11.99,10/11/19 15:43,"748 13th St, Seattle, WA 98101" +270683,34in Ultrawide Monitor,1,379.99,10/18/19 12:12,"126 13th St, Los Angeles, CA 90001" +270684,AA Batteries (4-pack),1,3.84,10/27/19 09:49,"959 Hill St, Seattle, WA 98101" +270685,Apple Airpods Headphones,1,150,10/08/19 12:31,"733 2nd St, Dallas, TX 75001" +270686,Bose SoundSport Headphones,1,99.99,10/28/19 16:51,"51 11th St, Seattle, WA 98101" +270687,USB-C Charging Cable,1,11.95,10/22/19 21:35,"966 Spruce St, Portland, OR 97035" +270688,AAA Batteries (4-pack),1,2.99,10/02/19 18:35,"958 Pine St, Seattle, WA 98101" +270689,AAA Batteries (4-pack),2,2.99,10/31/19 12:42,"275 Maple St, San Francisco, CA 94016" +270690,34in Ultrawide Monitor,1,379.99,10/26/19 21:12,"40 North St, New York City, NY 10001" +270691,Wired Headphones,1,11.99,10/21/19 02:24,"660 Elm St, San Francisco, CA 94016" +270692,AA Batteries (4-pack),1,3.84,10/28/19 15:18,"610 Pine St, Los Angeles, CA 90001" +270693,Macbook Pro Laptop,1,1700,10/27/19 08:41,"495 Lake St, San Francisco, CA 94016" +270694,Flatscreen TV,1,300,10/27/19 09:35,"186 Adams St, New York City, NY 10001" +270695,AAA Batteries (4-pack),1,2.99,10/23/19 05:20,"899 9th St, Seattle, WA 98101" +270696,AAA Batteries (4-pack),1,2.99,10/20/19 09:17,"784 Johnson St, San Francisco, CA 94016" +270697,Bose SoundSport Headphones,1,99.99,10/05/19 22:10,"850 Sunset St, Portland, OR 97035" +270698,Bose SoundSport Headphones,1,99.99,10/02/19 17:04,"809 13th St, Portland, OR 97035" +270699,Apple Airpods Headphones,1,150,10/23/19 12:24,"520 4th St, San Francisco, CA 94016" +270700,iPhone,1,700,10/03/19 19:58,"260 Dogwood St, San Francisco, CA 94016" +270700,Apple Airpods Headphones,1,150,10/03/19 19:58,"260 Dogwood St, San Francisco, CA 94016" +270701,USB-C Charging Cable,1,11.95,10/18/19 12:05,"259 4th St, San Francisco, CA 94016" +270702,USB-C Charging Cable,1,11.95,10/06/19 16:05,"75 Spruce St, New York City, NY 10001" +270703,Bose SoundSport Headphones,1,99.99,10/24/19 21:17,"198 Hill St, Los Angeles, CA 90001" +270704,27in FHD Monitor,1,149.99,10/28/19 16:17,"809 Center St, San Francisco, CA 94016" +270705,Lightning Charging Cable,1,14.95,10/27/19 23:23,"778 Johnson St, New York City, NY 10001" +270706,27in FHD Monitor,1,149.99,10/10/19 13:11,"43 Willow St, Atlanta, GA 30301" +270707,34in Ultrawide Monitor,1,379.99,10/16/19 21:41,"712 Forest St, Atlanta, GA 30301" +270708,AA Batteries (4-pack),1,3.84,10/21/19 21:38,"73 Hill St, San Francisco, CA 94016" +270709,Apple Airpods Headphones,1,150,10/07/19 22:51,"457 Main St, Seattle, WA 98101" +270710,Wired Headphones,1,11.99,10/24/19 13:28,"190 7th St, Seattle, WA 98101" +270711,Lightning Charging Cable,1,14.95,10/04/19 17:05,"344 Walnut St, San Francisco, CA 94016" +270712,Vareebadd Phone,1,400,10/12/19 07:24,"583 Washington St, Dallas, TX 75001" +270712,USB-C Charging Cable,1,11.95,10/12/19 07:24,"583 Washington St, Dallas, TX 75001" +270713,Apple Airpods Headphones,1,150,10/09/19 08:34,"490 River St, Portland, ME 04101" +270714,AA Batteries (4-pack),1,3.84,10/29/19 15:33,"978 Jefferson St, Atlanta, GA 30301" +270715,AAA Batteries (4-pack),1,2.99,10/13/19 20:37,"388 Sunset St, Los Angeles, CA 90001" +270716,Bose SoundSport Headphones,1,99.99,10/09/19 08:14,"868 Pine St, Los Angeles, CA 90001" +270717,AA Batteries (4-pack),1,3.84,10/28/19 18:00,"517 River St, Los Angeles, CA 90001" +270718,Lightning Charging Cable,1,14.95,10/29/19 18:14,"935 6th St, New York City, NY 10001" +270719,AA Batteries (4-pack),1,3.84,10/07/19 16:04,"319 Spruce St, Boston, MA 02215" +270720,Lightning Charging Cable,1,14.95,10/20/19 18:40,"154 Lake St, New York City, NY 10001" +270721,Macbook Pro Laptop,1,1700,10/09/19 19:31,"827 9th St, Dallas, TX 75001" +270722,27in 4K Gaming Monitor,1,389.99,10/13/19 23:50,"375 Church St, New York City, NY 10001" +270723,Bose SoundSport Headphones,1,99.99,10/22/19 07:43,"187 Madison St, Dallas, TX 75001" +270724,Lightning Charging Cable,1,14.95,10/04/19 16:31,"8 Jackson St, San Francisco, CA 94016" +270725,AA Batteries (4-pack),1,3.84,10/04/19 14:41,"242 2nd St, San Francisco, CA 94016" +270726,Bose SoundSport Headphones,1,99.99,10/31/19 12:45,"203 Main St, Portland, OR 97035" +270727,Bose SoundSport Headphones,1,99.99,10/31/19 06:43,"701 Center St, San Francisco, CA 94016" +270728,Lightning Charging Cable,1,14.95,10/21/19 15:56,"516 Hickory St, Portland, OR 97035" +270729,Lightning Charging Cable,1,14.95,10/17/19 17:14,"589 14th St, Boston, MA 02215" +270730,AA Batteries (4-pack),1,3.84,10/16/19 05:26,"125 11th St, San Francisco, CA 94016" +270731,Lightning Charging Cable,1,14.95,10/02/19 21:11,"430 North St, San Francisco, CA 94016" +270732,Wired Headphones,1,11.99,10/24/19 00:34,"890 North St, New York City, NY 10001" +270733,AAA Batteries (4-pack),1,2.99,10/16/19 22:18,"465 Ridge St, New York City, NY 10001" +270734,Lightning Charging Cable,1,14.95,10/12/19 09:59,"299 Pine St, San Francisco, CA 94016" +270735,USB-C Charging Cable,2,11.95,10/19/19 17:02,"770 Meadow St, New York City, NY 10001" +270736,Bose SoundSport Headphones,1,99.99,10/12/19 11:19,"219 Ridge St, New York City, NY 10001" +270737,ThinkPad Laptop,1,999.99,10/13/19 12:52,"80 Main St, San Francisco, CA 94016" +270738,Lightning Charging Cable,1,14.95,10/31/19 18:48,"61 Johnson St, Los Angeles, CA 90001" +270739,AAA Batteries (4-pack),1,2.99,10/07/19 15:10,"704 Washington St, San Francisco, CA 94016" +270740,Apple Airpods Headphones,1,150,10/26/19 19:54,"640 Dogwood St, San Francisco, CA 94016" +270741,Google Phone,1,600,10/29/19 23:32,"64 Forest St, Los Angeles, CA 90001" +270742,USB-C Charging Cable,1,11.95,10/13/19 09:09,"747 10th St, Dallas, TX 75001" +270743,LG Washing Machine,1,600.0,10/18/19 09:09,"699 Highland St, New York City, NY 10001" +270744,ThinkPad Laptop,1,999.99,10/14/19 09:48,"787 Cedar St, San Francisco, CA 94016" +270745,AA Batteries (4-pack),1,3.84,10/06/19 12:03,"757 Madison St, Portland, OR 97035" +270746,Apple Airpods Headphones,1,150,10/14/19 06:32,"860 West St, New York City, NY 10001" +270747,27in 4K Gaming Monitor,1,389.99,10/31/19 13:05,"981 Main St, Atlanta, GA 30301" +270748,Lightning Charging Cable,1,14.95,10/09/19 14:10,"838 Johnson St, Boston, MA 02215" +270749,Bose SoundSport Headphones,1,99.99,10/19/19 22:22,"380 Madison St, Austin, TX 73301" +270750,Apple Airpods Headphones,1,150,10/22/19 08:46,"951 Maple St, Boston, MA 02215" +270751,27in 4K Gaming Monitor,1,389.99,10/24/19 18:08,"125 7th St, San Francisco, CA 94016" +270752,Bose SoundSport Headphones,1,99.99,10/24/19 19:46,"640 10th St, Los Angeles, CA 90001" +270753,Flatscreen TV,1,300,10/16/19 13:54,"302 Adams St, Dallas, TX 75001" +270753,USB-C Charging Cable,1,11.95,10/16/19 13:54,"302 Adams St, Dallas, TX 75001" +270754,Wired Headphones,1,11.99,10/12/19 14:54,"705 4th St, Boston, MA 02215" +270755,AA Batteries (4-pack),3,3.84,10/03/19 22:40,"707 River St, San Francisco, CA 94016" +270756,Bose SoundSport Headphones,1,99.99,10/11/19 21:25,"756 Lincoln St, Boston, MA 02215" +270757,Wired Headphones,1,11.99,10/18/19 09:12,"350 7th St, San Francisco, CA 94016" +270758,LG Washing Machine,1,600.0,10/08/19 11:27,"398 Hill St, San Francisco, CA 94016" +270759,Google Phone,1,600,10/28/19 13:02,"450 Cherry St, Portland, OR 97035" +270760,Wired Headphones,1,11.99,10/23/19 21:50,"817 Meadow St, New York City, NY 10001" +270761,AA Batteries (4-pack),1,3.84,10/03/19 12:06,"18 4th St, Los Angeles, CA 90001" +270762,USB-C Charging Cable,1,11.95,10/17/19 21:41,"398 Lake St, Los Angeles, CA 90001" +270763,AAA Batteries (4-pack),1,2.99,10/08/19 13:25,"644 Jefferson St, San Francisco, CA 94016" +270764,AA Batteries (4-pack),2,3.84,10/23/19 20:43,"433 1st St, Atlanta, GA 30301" +270765,27in FHD Monitor,1,149.99,10/11/19 21:54,"970 Lake St, San Francisco, CA 94016" +270766,AAA Batteries (4-pack),2,2.99,10/10/19 08:14,"281 Jefferson St, Boston, MA 02215" +270767,Lightning Charging Cable,1,14.95,10/20/19 11:35,"413 Hickory St, Dallas, TX 75001" +270768,Apple Airpods Headphones,1,150,10/16/19 17:06,"987 Maple St, San Francisco, CA 94016" +270769,Wired Headphones,1,11.99,10/12/19 14:11,"349 River St, Dallas, TX 75001" +270770,Flatscreen TV,1,300,10/04/19 04:18,"464 Maple St, Los Angeles, CA 90001" +270771,Lightning Charging Cable,1,14.95,10/27/19 16:56,"362 Wilson St, Boston, MA 02215" +270772,27in 4K Gaming Monitor,1,389.99,10/28/19 10:20,"376 12th St, Boston, MA 02215" +270773,AA Batteries (4-pack),1,3.84,10/14/19 16:08,"208 Wilson St, Los Angeles, CA 90001" +270774,iPhone,1,700,10/01/19 18:46,"711 Maple St, Boston, MA 02215" +270774,Lightning Charging Cable,1,14.95,10/01/19 18:46,"711 Maple St, Boston, MA 02215" +270775,34in Ultrawide Monitor,1,379.99,10/27/19 00:33,"571 Madison St, Atlanta, GA 30301" +270776,34in Ultrawide Monitor,1,379.99,10/30/19 11:57,"390 Spruce St, San Francisco, CA 94016" +270777,Apple Airpods Headphones,1,150,10/21/19 12:30,"706 Center St, Dallas, TX 75001" +270778,AAA Batteries (4-pack),1,2.99,10/31/19 16:43,"143 7th St, Boston, MA 02215" +270779,27in 4K Gaming Monitor,1,389.99,10/22/19 10:38,"474 Lincoln St, Austin, TX 73301" +270780,20in Monitor,1,109.99,10/06/19 14:25,"251 Wilson St, Los Angeles, CA 90001" +270781,27in 4K Gaming Monitor,1,389.99,10/16/19 17:55,"327 Cedar St, New York City, NY 10001" +270782,AAA Batteries (4-pack),1,2.99,10/28/19 23:37,"124 Johnson St, Austin, TX 73301" +270783,20in Monitor,1,109.99,10/15/19 18:41,"383 River St, Los Angeles, CA 90001" +270784,Macbook Pro Laptop,1,1700,10/08/19 16:35,"631 Park St, Austin, TX 73301" +270785,AAA Batteries (4-pack),1,2.99,10/08/19 00:15,"414 13th St, New York City, NY 10001" +270786,27in FHD Monitor,1,149.99,10/23/19 08:30,"184 Jefferson St, San Francisco, CA 94016" +270787,Lightning Charging Cable,1,14.95,10/09/19 22:17,"134 West St, Los Angeles, CA 90001" +270788,20in Monitor,1,109.99,10/13/19 18:10,"974 Wilson St, Los Angeles, CA 90001" +270789,Apple Airpods Headphones,1,150,10/11/19 08:53,"288 Spruce St, Dallas, TX 75001" +270790,AAA Batteries (4-pack),1,2.99,10/28/19 18:12,"104 6th St, Boston, MA 02215" +270791,AA Batteries (4-pack),2,3.84,10/13/19 13:15,"558 10th St, Dallas, TX 75001" +270792,27in FHD Monitor,1,149.99,10/24/19 11:07,"38 West St, Dallas, TX 75001" +270793,Bose SoundSport Headphones,1,99.99,10/08/19 14:47,"941 Meadow St, New York City, NY 10001" +270794,Wired Headphones,1,11.99,10/04/19 21:56,"409 Meadow St, Boston, MA 02215" +270795,iPhone,1,700,10/11/19 23:01,"17 1st St, Atlanta, GA 30301" +270796,USB-C Charging Cable,1,11.95,10/05/19 23:33,"688 Forest St, Austin, TX 73301" +270797,AA Batteries (4-pack),1,3.84,10/12/19 12:44,"503 River St, San Francisco, CA 94016" +270798,AAA Batteries (4-pack),1,2.99,10/14/19 06:10,"15 Forest St, Los Angeles, CA 90001" +270799,27in FHD Monitor,1,149.99,10/29/19 21:37,"217 8th St, New York City, NY 10001" +270800,Bose SoundSport Headphones,1,99.99,10/27/19 23:13,"97 Forest St, San Francisco, CA 94016" +270801,USB-C Charging Cable,1,11.95,10/18/19 03:48,"273 14th St, Seattle, WA 98101" +270802,Vareebadd Phone,1,400,10/18/19 11:25,"507 Wilson St, Los Angeles, CA 90001" +270803,20in Monitor,1,109.99,10/26/19 23:10,"848 West St, New York City, NY 10001" +270804,AA Batteries (4-pack),4,3.84,10/05/19 16:10,"259 Lake St, New York City, NY 10001" +270805,Apple Airpods Headphones,1,150,10/28/19 12:36,"953 Sunset St, San Francisco, CA 94016" +270806,USB-C Charging Cable,1,11.95,10/21/19 16:37,"893 Cedar St, Austin, TX 73301" +270807,20in Monitor,1,109.99,10/16/19 12:46,"588 2nd St, Los Angeles, CA 90001" +270808,27in 4K Gaming Monitor,1,389.99,10/04/19 19:23,"768 Center St, Seattle, WA 98101" +270809,Bose SoundSport Headphones,1,99.99,10/22/19 19:26,"121 9th St, Los Angeles, CA 90001" +270810,USB-C Charging Cable,1,11.95,10/16/19 17:47,"194 Jackson St, Atlanta, GA 30301" +270811,USB-C Charging Cable,1,11.95,10/02/19 12:49,"608 Washington St, Seattle, WA 98101" +270812,iPhone,1,700,10/23/19 17:19,"301 Lake St, Los Angeles, CA 90001" +270813,Wired Headphones,1,11.99,10/05/19 12:35,"176 9th St, Dallas, TX 75001" +270814,AA Batteries (4-pack),1,3.84,10/29/19 17:21,"375 South St, Boston, MA 02215" +270815,Google Phone,1,600,10/25/19 23:25,"643 West St, Austin, TX 73301" +270816,AA Batteries (4-pack),1,3.84,10/15/19 10:47,"682 7th St, San Francisco, CA 94016" +270817,Wired Headphones,1,11.99,10/23/19 19:48,"981 8th St, Portland, ME 04101" +270818,Google Phone,1,600,10/06/19 19:57,"644 River St, Boston, MA 02215" +270818,Apple Airpods Headphones,1,150,10/06/19 19:57,"644 River St, Boston, MA 02215" +270819,Apple Airpods Headphones,1,150,10/04/19 18:58,"411 Cherry St, San Francisco, CA 94016" +270820,USB-C Charging Cable,1,11.95,10/18/19 15:16,"86 Hill St, New York City, NY 10001" +270821,Wired Headphones,2,11.99,10/05/19 08:00,"887 Park St, Dallas, TX 75001" +270822,USB-C Charging Cable,1,11.95,10/27/19 21:27,"48 Willow St, Los Angeles, CA 90001" +270823,iPhone,1,700,10/28/19 18:26,"929 5th St, San Francisco, CA 94016" +270824,USB-C Charging Cable,1,11.95,10/10/19 11:44,"306 Maple St, New York City, NY 10001" +270825,Flatscreen TV,1,300,10/11/19 16:54,"752 Spruce St, Los Angeles, CA 90001" +270826,Wired Headphones,1,11.99,10/09/19 07:40,"297 Hill St, Dallas, TX 75001" +270827,Wired Headphones,1,11.99,10/01/19 21:26,"833 Elm St, New York City, NY 10001" +270828,AA Batteries (4-pack),1,3.84,10/13/19 23:19,"412 Walnut St, San Francisco, CA 94016" +270829,Google Phone,1,600,10/24/19 23:25,"888 South St, Austin, TX 73301" +270830,Bose SoundSport Headphones,1,99.99,10/20/19 19:02,"532 Center St, Portland, OR 97035" +270831,Macbook Pro Laptop,1,1700,10/30/19 21:54,"474 Washington St, Atlanta, GA 30301" +270832,USB-C Charging Cable,1,11.95,10/14/19 09:46,"961 Wilson St, Los Angeles, CA 90001" +270833,AA Batteries (4-pack),2,3.84,10/09/19 02:18,"947 Center St, Los Angeles, CA 90001" +270834,27in 4K Gaming Monitor,1,389.99,10/10/19 13:50,"40 Walnut St, Atlanta, GA 30301" +270835,USB-C Charging Cable,1,11.95,10/20/19 01:09,"325 13th St, San Francisco, CA 94016" +270836,AAA Batteries (4-pack),1,2.99,10/29/19 09:19,"52 12th St, San Francisco, CA 94016" +270837,USB-C Charging Cable,1,11.95,10/06/19 00:45,"804 Hickory St, Los Angeles, CA 90001" +270838,Wired Headphones,1,11.99,10/26/19 16:48,"767 Maple St, Seattle, WA 98101" +270839,ThinkPad Laptop,1,999.99,10/10/19 12:56,"245 8th St, Austin, TX 73301" +270840,USB-C Charging Cable,1,11.95,10/15/19 20:32,"155 Elm St, Dallas, TX 75001" +270841,Lightning Charging Cable,1,14.95,10/23/19 16:36,"678 Wilson St, Austin, TX 73301" +270841,AA Batteries (4-pack),1,3.84,10/23/19 16:36,"678 Wilson St, Austin, TX 73301" +270842,iPhone,1,700,10/06/19 18:46,"680 Dogwood St, Boston, MA 02215" +270842,Lightning Charging Cable,1,14.95,10/06/19 18:46,"680 Dogwood St, Boston, MA 02215" +270842,Apple Airpods Headphones,1,150,10/06/19 18:46,"680 Dogwood St, Boston, MA 02215" +270843,Apple Airpods Headphones,1,150,10/22/19 11:18,"65 11th St, Portland, OR 97035" +270844,Apple Airpods Headphones,1,150,10/31/19 20:42,"61 Johnson St, San Francisco, CA 94016" +270845,AAA Batteries (4-pack),1,2.99,10/11/19 17:58,"737 Hickory St, San Francisco, CA 94016" +270846,27in FHD Monitor,1,149.99,10/02/19 09:36,"947 2nd St, San Francisco, CA 94016" +270847,Flatscreen TV,1,300,10/16/19 22:40,"831 Walnut St, Los Angeles, CA 90001" +270848,Flatscreen TV,1,300,10/27/19 09:21,"721 North St, Los Angeles, CA 90001" +270849,Bose SoundSport Headphones,1,99.99,10/12/19 12:04,"993 2nd St, Los Angeles, CA 90001" +270850,Apple Airpods Headphones,1,150,10/18/19 23:49,"393 4th St, San Francisco, CA 94016" +270851,AAA Batteries (4-pack),1,2.99,10/11/19 10:41,"877 Dogwood St, Seattle, WA 98101" +270852,Wired Headphones,1,11.99,10/20/19 22:21,"141 Church St, New York City, NY 10001" +270853,Bose SoundSport Headphones,1,99.99,10/19/19 11:30,"713 14th St, Seattle, WA 98101" +270854,iPhone,1,700,10/22/19 18:55,"637 Chestnut St, San Francisco, CA 94016" +270855,Lightning Charging Cable,1,14.95,10/12/19 17:55,"959 Chestnut St, Los Angeles, CA 90001" +270856,Apple Airpods Headphones,1,150,10/02/19 16:08,"85 Madison St, Dallas, TX 75001" +270857,USB-C Charging Cable,1,11.95,10/09/19 14:10,"966 13th St, Portland, OR 97035" +270858,Apple Airpods Headphones,1,150,10/22/19 20:50,"76 Maple St, Atlanta, GA 30301" +270859,AAA Batteries (4-pack),1,2.99,10/09/19 19:28,"974 Lakeview St, San Francisco, CA 94016" +270860,Apple Airpods Headphones,1,150,10/24/19 18:17,"269 13th St, Austin, TX 73301" +270861,Bose SoundSport Headphones,1,99.99,10/02/19 09:32,"986 Spruce St, San Francisco, CA 94016" +270862,USB-C Charging Cable,1,11.95,10/08/19 21:25,"338 5th St, Boston, MA 02215" +270863,Wired Headphones,1,11.99,10/11/19 17:54,"168 Ridge St, Atlanta, GA 30301" +270864,AAA Batteries (4-pack),1,2.99,10/08/19 09:57,"404 11th St, Los Angeles, CA 90001" +270865,34in Ultrawide Monitor,1,379.99,10/14/19 18:02,"127 Chestnut St, Austin, TX 73301" +270866,Flatscreen TV,1,300,10/11/19 16:53,"606 Hill St, Seattle, WA 98101" +270867,AA Batteries (4-pack),1,3.84,10/12/19 12:41,"139 North St, Portland, ME 04101" +270868,iPhone,1,700,10/18/19 10:03,"469 Main St, San Francisco, CA 94016" +270869,AAA Batteries (4-pack),1,2.99,10/03/19 10:16,"739 13th St, Seattle, WA 98101" +270870,USB-C Charging Cable,1,11.95,10/31/19 19:24,"406 Hill St, San Francisco, CA 94016" +270871,USB-C Charging Cable,1,11.95,10/10/19 07:01,"701 Hickory St, Portland, OR 97035" +270872,Bose SoundSport Headphones,1,99.99,10/27/19 13:56,"437 Elm St, Los Angeles, CA 90001" +270873,27in 4K Gaming Monitor,1,389.99,10/03/19 08:29,"611 Highland St, New York City, NY 10001" +270874,Lightning Charging Cable,1,14.95,10/14/19 13:14,"2 2nd St, San Francisco, CA 94016" +270875,Lightning Charging Cable,1,14.95,10/13/19 21:30,"716 Spruce St, San Francisco, CA 94016" +270876,AA Batteries (4-pack),1,3.84,10/01/19 09:47,"66 Madison St, Los Angeles, CA 90001" +270877,AAA Batteries (4-pack),1,2.99,10/19/19 13:30,"133 Willow St, Atlanta, GA 30301" +270878,AAA Batteries (4-pack),1,2.99,10/16/19 15:56,"124 5th St, Boston, MA 02215" +270879,AA Batteries (4-pack),1,3.84,10/14/19 13:47,"619 Cedar St, San Francisco, CA 94016" +270880,USB-C Charging Cable,1,11.95,10/20/19 01:39,"25 13th St, New York City, NY 10001" +270881,Lightning Charging Cable,1,14.95,10/04/19 19:53,"415 Elm St, Portland, OR 97035" +270882,Bose SoundSport Headphones,1,99.99,10/18/19 15:01,"218 14th St, Boston, MA 02215" +270883,Apple Airpods Headphones,1,150,10/23/19 12:44,"108 Dogwood St, Los Angeles, CA 90001" +270884,Bose SoundSport Headphones,1,99.99,10/06/19 18:18,"318 Meadow St, San Francisco, CA 94016" +270885,iPhone,1,700,10/31/19 08:50,"592 Forest St, San Francisco, CA 94016" +270885,Lightning Charging Cable,1,14.95,10/31/19 08:50,"592 Forest St, San Francisco, CA 94016" +270886,Vareebadd Phone,1,400,10/24/19 17:47,"486 Maple St, San Francisco, CA 94016" +270887,Wired Headphones,1,11.99,10/26/19 10:22,"275 West St, Dallas, TX 75001" +270888,Flatscreen TV,1,300,10/24/19 12:50,"147 Spruce St, Austin, TX 73301" +270889,iPhone,1,700,10/02/19 18:50,"798 Jackson St, Portland, OR 97035" +270890,Vareebadd Phone,1,400,10/15/19 22:22,"503 Johnson St, San Francisco, CA 94016" +270891,34in Ultrawide Monitor,1,379.99,10/17/19 21:38,"93 7th St, San Francisco, CA 94016" +270892,AAA Batteries (4-pack),2,2.99,10/27/19 08:07,"929 Willow St, San Francisco, CA 94016" +270893,Macbook Pro Laptop,1,1700,10/12/19 11:18,"271 2nd St, Atlanta, GA 30301" +270894,27in 4K Gaming Monitor,1,389.99,10/13/19 22:41,"380 1st St, Los Angeles, CA 90001" +270895,ThinkPad Laptop,1,999.99,10/09/19 18:48,"524 Spruce St, Boston, MA 02215" +270896,Lightning Charging Cable,1,14.95,10/16/19 23:07,"246 River St, San Francisco, CA 94016" +270897,Lightning Charging Cable,1,14.95,10/29/19 22:24,"840 8th St, Los Angeles, CA 90001" +270898,Macbook Pro Laptop,1,1700,10/17/19 11:43,"988 Pine St, New York City, NY 10001" +270899,AAA Batteries (4-pack),1,2.99,10/05/19 07:02,"498 6th St, Boston, MA 02215" +270900,Apple Airpods Headphones,1,150,10/29/19 22:18,"386 Center St, Atlanta, GA 30301" +270901,Flatscreen TV,1,300,10/23/19 13:21,"37 5th St, Portland, OR 97035" +270902,Google Phone,1,600,10/25/19 05:08,"91 Hill St, Dallas, TX 75001" +270903,AA Batteries (4-pack),1,3.84,10/07/19 18:03,"149 Ridge St, San Francisco, CA 94016" +270904,Apple Airpods Headphones,1,150,10/30/19 10:50,"78 Chestnut St, San Francisco, CA 94016" +270905,Lightning Charging Cable,2,14.95,10/07/19 22:12,"741 14th St, Portland, OR 97035" +270906,AAA Batteries (4-pack),3,2.99,10/17/19 12:47,"632 Johnson St, New York City, NY 10001" +270907,Lightning Charging Cable,1,14.95,10/06/19 05:39,"56 Cherry St, Los Angeles, CA 90001" +270908,AAA Batteries (4-pack),1,2.99,10/23/19 18:23,"32 Lincoln St, San Francisco, CA 94016" +270909,Lightning Charging Cable,1,14.95,10/29/19 22:57,"321 Cedar St, San Francisco, CA 94016" +270910,Lightning Charging Cable,1,14.95,10/10/19 17:26,"78 Main St, Seattle, WA 98101" +270911,AA Batteries (4-pack),1,3.84,10/12/19 12:51,"870 Jefferson St, Seattle, WA 98101" +270912,Vareebadd Phone,1,400,10/22/19 16:22,"26 7th St, Seattle, WA 98101" +270913,AA Batteries (4-pack),1,3.84,10/15/19 22:11,"604 Madison St, Atlanta, GA 30301" +270914,Lightning Charging Cable,1,14.95,10/17/19 12:16,"852 Cedar St, Portland, OR 97035" +270915,27in 4K Gaming Monitor,1,389.99,10/11/19 17:18,"288 7th St, Los Angeles, CA 90001" +270916,Wired Headphones,1,11.99,10/09/19 13:37,"114 Dogwood St, New York City, NY 10001" +270917,AAA Batteries (4-pack),2,2.99,10/02/19 12:42,"778 6th St, Seattle, WA 98101" +270918,Apple Airpods Headphones,1,150,10/07/19 12:53,"615 Adams St, Portland, OR 97035" +270919,USB-C Charging Cable,1,11.95,10/18/19 16:18,"437 River St, Portland, OR 97035" +270920,Flatscreen TV,1,300,10/26/19 12:22,"865 11th St, New York City, NY 10001" +270921,Apple Airpods Headphones,1,150,10/07/19 17:50,"795 South St, Seattle, WA 98101" +270922,Lightning Charging Cable,1,14.95,10/12/19 16:30,"728 Wilson St, Boston, MA 02215" +270923,27in FHD Monitor,1,149.99,10/09/19 19:27,"700 12th St, New York City, NY 10001" +270924,Wired Headphones,1,11.99,10/15/19 18:49,"759 4th St, Seattle, WA 98101" +270925,Google Phone,1,600,10/31/19 19:19,"569 6th St, Boston, MA 02215" +270926,AA Batteries (4-pack),1,3.84,10/06/19 15:27,"264 Jefferson St, Dallas, TX 75001" +270927,USB-C Charging Cable,1,11.95,10/29/19 07:40,"153 8th St, New York City, NY 10001" +270928,Macbook Pro Laptop,1,1700,10/03/19 16:37,"387 River St, New York City, NY 10001" +270929,USB-C Charging Cable,2,11.95,10/01/19 13:43,"803 South St, San Francisco, CA 94016" +270930,USB-C Charging Cable,1,11.95,10/30/19 19:17,"716 Main St, Austin, TX 73301" +270931,Lightning Charging Cable,1,14.95,10/07/19 21:37,"934 5th St, Seattle, WA 98101" +270932,USB-C Charging Cable,1,11.95,10/12/19 14:54,"701 Maple St, New York City, NY 10001" +270933,Apple Airpods Headphones,1,150,10/27/19 10:51,"995 Sunset St, New York City, NY 10001" +270934,Vareebadd Phone,1,400,10/01/19 06:26,"343 Maple St, Los Angeles, CA 90001" +270935,AAA Batteries (4-pack),1,2.99,10/28/19 19:23,"507 8th St, New York City, NY 10001" +270936,27in 4K Gaming Monitor,1,389.99,10/19/19 13:16,"451 Lincoln St, Portland, OR 97035" +270937,Bose SoundSport Headphones,1,99.99,10/19/19 07:42,"587 West St, Los Angeles, CA 90001" +270938,USB-C Charging Cable,1,11.95,10/15/19 17:02,"88 2nd St, Austin, TX 73301" +270939,Wired Headphones,1,11.99,10/14/19 09:18,"910 Hill St, Los Angeles, CA 90001" +270940,Apple Airpods Headphones,1,150,10/23/19 08:46,"82 Madison St, Dallas, TX 75001" +270941,AAA Batteries (4-pack),4,2.99,10/19/19 20:33,"616 South St, Boston, MA 02215" +270942,iPhone,1,700,10/27/19 11:52,"739 Hill St, Atlanta, GA 30301" +270943,AA Batteries (4-pack),2,3.84,10/15/19 14:20,"140 Church St, Los Angeles, CA 90001" +270944,Apple Airpods Headphones,1,150,10/01/19 21:11,"468 Wilson St, San Francisco, CA 94016" +270945,ThinkPad Laptop,1,999.99,10/20/19 15:05,"941 Chestnut St, Dallas, TX 75001" +270946,Lightning Charging Cable,1,14.95,10/27/19 23:50,"132 Johnson St, New York City, NY 10001" +270947,iPhone,1,700,10/08/19 20:44,"874 South St, New York City, NY 10001" +270948,AA Batteries (4-pack),2,3.84,10/26/19 16:20,"13 Washington St, Atlanta, GA 30301" +270949,AA Batteries (4-pack),2,3.84,10/08/19 21:17,"765 Washington St, San Francisco, CA 94016" +270950,Wired Headphones,1,11.99,10/14/19 08:08,"959 Center St, Los Angeles, CA 90001" +,,,,, +270951,USB-C Charging Cable,1,11.95,10/04/19 10:47,"913 Hill St, Portland, OR 97035" +270952,AA Batteries (4-pack),1,3.84,10/07/19 17:25,"223 Hill St, Portland, OR 97035" +270953,USB-C Charging Cable,1,11.95,10/04/19 09:08,"281 10th St, San Francisco, CA 94016" +270954,AAA Batteries (4-pack),1,2.99,10/10/19 18:53,"467 Cedar St, Los Angeles, CA 90001" +270955,AAA Batteries (4-pack),1,2.99,10/23/19 11:43,"161 River St, Portland, OR 97035" +270956,AAA Batteries (4-pack),1,2.99,10/24/19 22:12,"492 Church St, San Francisco, CA 94016" +270957,Lightning Charging Cable,2,14.95,10/13/19 11:03,"920 Church St, Boston, MA 02215" +270958,Wired Headphones,1,11.99,10/31/19 13:52,"705 Dogwood St, Atlanta, GA 30301" +270959,27in FHD Monitor,1,149.99,10/06/19 14:59,"620 6th St, Atlanta, GA 30301" +270960,Apple Airpods Headphones,1,150,10/16/19 19:03,"680 Center St, Austin, TX 73301" +270961,ThinkPad Laptop,1,999.99,10/26/19 01:45,"834 Cedar St, Los Angeles, CA 90001" +270962,AAA Batteries (4-pack),1,2.99,10/20/19 16:57,"545 Adams St, New York City, NY 10001" +270963,27in 4K Gaming Monitor,1,389.99,10/19/19 22:04,"153 2nd St, San Francisco, CA 94016" +270964,USB-C Charging Cable,1,11.95,10/06/19 14:40,"686 12th St, Los Angeles, CA 90001" +270965,Apple Airpods Headphones,1,150,10/17/19 01:05,"502 Cherry St, Seattle, WA 98101" +270966,20in Monitor,1,109.99,10/26/19 11:27,"935 Jackson St, Boston, MA 02215" +270967,Flatscreen TV,1,300,10/03/19 17:09,"381 Hill St, Portland, OR 97035" +270968,Wired Headphones,1,11.99,10/16/19 10:47,"637 8th St, Portland, OR 97035" +270969,Wired Headphones,1,11.99,10/09/19 00:22,"617 Wilson St, Los Angeles, CA 90001" +270970,Lightning Charging Cable,1,14.95,10/10/19 11:11,"694 Sunset St, San Francisco, CA 94016" +270971,AAA Batteries (4-pack),3,2.99,10/05/19 20:29,"339 West St, Los Angeles, CA 90001" +270972,AAA Batteries (4-pack),1,2.99,10/10/19 14:08,"129 Spruce St, San Francisco, CA 94016" +270973,Lightning Charging Cable,1,14.95,10/12/19 04:46,"466 North St, Los Angeles, CA 90001" +270974,Flatscreen TV,1,300,10/27/19 13:45,"419 Center St, Dallas, TX 75001" +270975,ThinkPad Laptop,1,999.99,10/12/19 14:23,"179 11th St, Boston, MA 02215" +270976,USB-C Charging Cable,1,11.95,10/06/19 07:20,"345 South St, Dallas, TX 75001" +270977,USB-C Charging Cable,1,11.95,10/04/19 18:45,"998 Pine St, New York City, NY 10001" +270978,AA Batteries (4-pack),1,3.84,10/28/19 12:09,"495 South St, Austin, TX 73301" +270979,27in 4K Gaming Monitor,1,389.99,10/11/19 17:58,"107 1st St, Los Angeles, CA 90001" +270980,USB-C Charging Cable,2,11.95,10/01/19 10:03,"711 Johnson St, Seattle, WA 98101" +270980,AA Batteries (4-pack),1,3.84,10/01/19 10:03,"711 Johnson St, Seattle, WA 98101" +270981,USB-C Charging Cable,1,11.95,10/31/19 12:55,"505 Lincoln St, Portland, OR 97035" +270982,AA Batteries (4-pack),2,3.84,10/19/19 11:44,"186 Johnson St, Portland, OR 97035" +270983,Google Phone,1,600,10/26/19 20:41,"784 Jackson St, Atlanta, GA 30301" +270983,USB-C Charging Cable,1,11.95,10/26/19 20:41,"784 Jackson St, Atlanta, GA 30301" +270984,Lightning Charging Cable,1,14.95,10/23/19 19:34,"476 Sunset St, San Francisco, CA 94016" +270985,ThinkPad Laptop,1,999.99,10/24/19 20:49,"592 Maple St, New York City, NY 10001" +270986,AA Batteries (4-pack),3,3.84,10/20/19 15:52,"611 Cherry St, Seattle, WA 98101" +270987,AA Batteries (4-pack),2,3.84,10/22/19 21:05,"673 Walnut St, Seattle, WA 98101" +270988,USB-C Charging Cable,1,11.95,10/05/19 12:58,"890 Elm St, Dallas, TX 75001" +270989,Lightning Charging Cable,1,14.95,10/05/19 11:20,"805 Walnut St, San Francisco, CA 94016" +270990,27in 4K Gaming Monitor,1,389.99,10/20/19 18:51,"841 5th St, Los Angeles, CA 90001" +270991,Lightning Charging Cable,1,14.95,10/27/19 22:38,"283 Ridge St, San Francisco, CA 94016" +270992,AA Batteries (4-pack),2,3.84,10/29/19 16:26,"306 Jackson St, Seattle, WA 98101" +270993,AAA Batteries (4-pack),1,2.99,10/07/19 12:01,"30 Jefferson St, Dallas, TX 75001" +270994,Wired Headphones,1,11.99,10/24/19 21:03,"33 Adams St, New York City, NY 10001" +270995,Lightning Charging Cable,1,14.95,10/08/19 12:18,"340 Chestnut St, Seattle, WA 98101" +270996,Bose SoundSport Headphones,1,99.99,10/12/19 11:46,"799 South St, Los Angeles, CA 90001" +270997,ThinkPad Laptop,1,999.99,10/19/19 21:21,"869 Dogwood St, Boston, MA 02215" +270998,Apple Airpods Headphones,1,150,10/09/19 21:48,"481 11th St, Atlanta, GA 30301" +270999,AA Batteries (4-pack),1,3.84,10/28/19 23:23,"997 Lakeview St, Seattle, WA 98101" +271000,USB-C Charging Cable,3,11.95,10/20/19 07:29,"211 Center St, New York City, NY 10001" +271001,Macbook Pro Laptop,1,1700,10/30/19 09:22,"812 Lincoln St, Boston, MA 02215" +271002,USB-C Charging Cable,1,11.95,10/16/19 20:52,"338 Forest St, Austin, TX 73301" +271003,Bose SoundSport Headphones,1,99.99,10/07/19 20:42,"980 Willow St, Los Angeles, CA 90001" +271003,34in Ultrawide Monitor,1,379.99,10/07/19 20:42,"980 Willow St, Los Angeles, CA 90001" +271004,AA Batteries (4-pack),1,3.84,10/15/19 20:26,"169 Spruce St, Los Angeles, CA 90001" +271005,AAA Batteries (4-pack),1,2.99,10/28/19 20:23,"553 9th St, San Francisco, CA 94016" +271006,AA Batteries (4-pack),1,3.84,10/23/19 10:17,"174 Cherry St, San Francisco, CA 94016" +271007,Macbook Pro Laptop,1,1700,10/21/19 09:09,"972 5th St, Los Angeles, CA 90001" +271008,AA Batteries (4-pack),4,3.84,10/18/19 07:17,"49 Adams St, San Francisco, CA 94016" +271009,ThinkPad Laptop,1,999.99,10/19/19 11:05,"318 Cedar St, Austin, TX 73301" +271010,Macbook Pro Laptop,1,1700,10/09/19 17:53,"424 Cedar St, New York City, NY 10001" +271011,AA Batteries (4-pack),1,3.84,10/25/19 18:00,"317 5th St, Atlanta, GA 30301" +271012,Wired Headphones,1,11.99,10/13/19 17:09,"787 9th St, Boston, MA 02215" +271013,Lightning Charging Cable,1,14.95,10/13/19 20:50,"601 Madison St, Atlanta, GA 30301" +271014,AAA Batteries (4-pack),1,2.99,10/04/19 16:27,"128 Sunset St, San Francisco, CA 94016" +271015,AA Batteries (4-pack),1,3.84,10/01/19 22:05,"357 Madison St, Los Angeles, CA 90001" +271016,27in FHD Monitor,1,149.99,10/13/19 18:55,"401 Main St, Austin, TX 73301" +271017,USB-C Charging Cable,1,11.95,10/26/19 11:48,"617 Park St, Portland, ME 04101" +271018,USB-C Charging Cable,2,11.95,10/15/19 18:15,"969 9th St, Los Angeles, CA 90001" +271018,Macbook Pro Laptop,1,1700,10/15/19 18:15,"969 9th St, Los Angeles, CA 90001" +271019,USB-C Charging Cable,1,11.95,10/21/19 11:56,"203 Jackson St, New York City, NY 10001" +271020,ThinkPad Laptop,1,999.99,10/13/19 18:11,"109 2nd St, Portland, OR 97035" +271021,LG Dryer,1,600.0,10/26/19 20:14,"586 Ridge St, Austin, TX 73301" +271022,Lightning Charging Cable,1,14.95,10/16/19 11:56,"544 11th St, Portland, ME 04101" +271023,Flatscreen TV,1,300,10/07/19 20:21,"74 2nd St, San Francisco, CA 94016" +271024,27in FHD Monitor,1,149.99,10/14/19 09:48,"907 Dogwood St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +271025,USB-C Charging Cable,1,11.95,10/03/19 16:11,"745 Cedar St, Seattle, WA 98101" +271026,AA Batteries (4-pack),1,3.84,10/11/19 21:55,"522 Willow St, Portland, OR 97035" +271027,Lightning Charging Cable,1,14.95,10/26/19 22:08,"3 Hickory St, Dallas, TX 75001" +271028,Lightning Charging Cable,1,14.95,10/28/19 15:35,"517 6th St, Los Angeles, CA 90001" +271029,Bose SoundSport Headphones,1,99.99,10/15/19 14:09,"684 Elm St, New York City, NY 10001" +271030,AA Batteries (4-pack),2,3.84,10/05/19 13:34,"817 Chestnut St, Boston, MA 02215" +271031,Wired Headphones,1,11.99,10/22/19 12:14,"187 Hickory St, Dallas, TX 75001" +271032,AAA Batteries (4-pack),1,2.99,10/14/19 18:43,"629 Lincoln St, Los Angeles, CA 90001" +271033,Lightning Charging Cable,1,14.95,10/07/19 09:52,"521 Washington St, Los Angeles, CA 90001" +271034,AA Batteries (4-pack),1,3.84,10/25/19 20:30,"395 11th St, San Francisco, CA 94016" +271035,AA Batteries (4-pack),1,3.84,10/10/19 07:55,"266 13th St, San Francisco, CA 94016" +271036,34in Ultrawide Monitor,1,379.99,10/01/19 21:33,"915 Madison St, Los Angeles, CA 90001" +271037,Google Phone,1,600,10/20/19 11:31,"769 1st St, San Francisco, CA 94016" +271037,USB-C Charging Cable,1,11.95,10/20/19 11:31,"769 1st St, San Francisco, CA 94016" +271038,Apple Airpods Headphones,1,150,10/10/19 06:52,"917 Park St, Los Angeles, CA 90001" +271039,34in Ultrawide Monitor,1,379.99,10/27/19 12:59,"333 Washington St, San Francisco, CA 94016" +271040,AAA Batteries (4-pack),1,2.99,10/15/19 10:37,"528 Elm St, Atlanta, GA 30301" +271041,AAA Batteries (4-pack),2,2.99,10/16/19 12:53,"136 Forest St, San Francisco, CA 94016" +271042,Wired Headphones,1,11.99,10/10/19 11:43,"244 14th St, San Francisco, CA 94016" +271043,ThinkPad Laptop,1,999.99,10/18/19 01:16,"765 Ridge St, Portland, OR 97035" +271044,Lightning Charging Cable,1,14.95,10/11/19 13:08,"180 Washington St, Atlanta, GA 30301" +271045,Google Phone,1,600,10/19/19 16:13,"425 Park St, New York City, NY 10001" +271045,USB-C Charging Cable,1,11.95,10/19/19 16:13,"425 Park St, New York City, NY 10001" +271046,Bose SoundSport Headphones,1,99.99,10/12/19 21:33,"787 Adams St, Los Angeles, CA 90001" +271047,AA Batteries (4-pack),1,3.84,10/08/19 09:39,"751 Lakeview St, San Francisco, CA 94016" +271048,34in Ultrawide Monitor,1,379.99,10/05/19 18:45,"764 Hickory St, Portland, OR 97035" +271049,Lightning Charging Cable,1,14.95,10/01/19 12:09,"65 West St, New York City, NY 10001" +271050,Apple Airpods Headphones,1,150,10/13/19 12:11,"880 11th St, Portland, ME 04101" +271051,Lightning Charging Cable,1,14.95,10/20/19 15:22,"512 Highland St, Austin, TX 73301" +271052,Lightning Charging Cable,1,14.95,10/04/19 23:47,"111 Washington St, Dallas, TX 75001" +271053,AAA Batteries (4-pack),2,2.99,10/22/19 17:03,"627 Cedar St, New York City, NY 10001" +271054,Google Phone,1,600,10/12/19 11:44,"394 Lincoln St, Portland, OR 97035" +271054,USB-C Charging Cable,1,11.95,10/12/19 11:44,"394 Lincoln St, Portland, OR 97035" +271055,Bose SoundSport Headphones,1,99.99,10/14/19 22:24,"569 Cedar St, San Francisco, CA 94016" +271056,AAA Batteries (4-pack),1,2.99,10/04/19 14:51,"75 6th St, Austin, TX 73301" +271057,AA Batteries (4-pack),2,3.84,10/21/19 12:26,"899 4th St, Los Angeles, CA 90001" +271058,AAA Batteries (4-pack),1,2.99,10/08/19 09:26,"607 Willow St, Boston, MA 02215" +271059,Lightning Charging Cable,1,14.95,10/17/19 13:46,"80 Jackson St, San Francisco, CA 94016" +271060,Apple Airpods Headphones,1,150,10/14/19 15:25,"741 9th St, Los Angeles, CA 90001" +271061,Apple Airpods Headphones,1,150,10/08/19 23:53,"151 Main St, San Francisco, CA 94016" +271062,Lightning Charging Cable,1,14.95,10/22/19 16:33,"621 South St, Boston, MA 02215" +271063,Bose SoundSport Headphones,1,99.99,10/08/19 05:04,"604 West St, Los Angeles, CA 90001" +271064,Lightning Charging Cable,2,14.95,10/21/19 16:42,"334 7th St, Los Angeles, CA 90001" +271065,27in FHD Monitor,1,149.99,10/05/19 20:41,"718 Pine St, Boston, MA 02215" +271066,Apple Airpods Headphones,1,150,10/24/19 16:01,"66 Cherry St, Los Angeles, CA 90001" +271067,AA Batteries (4-pack),1,3.84,10/30/19 06:43,"191 Church St, San Francisco, CA 94016" +271068,27in FHD Monitor,1,149.99,10/03/19 12:31,"808 Sunset St, Atlanta, GA 30301" +271069,AA Batteries (4-pack),1,3.84,10/09/19 06:29,"81 4th St, San Francisco, CA 94016" +271070,Wired Headphones,1,11.99,10/03/19 08:40,"628 Maple St, San Francisco, CA 94016" +271071,AAA Batteries (4-pack),2,2.99,10/31/19 05:01,"145 Maple St, Boston, MA 02215" +271072,Wired Headphones,1,11.99,10/28/19 21:31,"103 Maple St, New York City, NY 10001" +271073,Apple Airpods Headphones,1,150,10/19/19 11:07,"373 Jefferson St, New York City, NY 10001" +271074,Lightning Charging Cable,1,14.95,10/22/19 11:47,"563 Willow St, Los Angeles, CA 90001" +271075,Bose SoundSport Headphones,1,99.99,10/15/19 19:32,"56 Meadow St, San Francisco, CA 94016" +271076,AA Batteries (4-pack),1,3.84,10/26/19 11:43,"788 9th St, Dallas, TX 75001" +271077,USB-C Charging Cable,1,11.95,10/16/19 17:14,"750 Jefferson St, Los Angeles, CA 90001" +271078,Lightning Charging Cable,1,14.95,10/22/19 10:11,"407 10th St, Los Angeles, CA 90001" +271079,20in Monitor,1,109.99,10/21/19 05:46,"882 Center St, Boston, MA 02215" +271080,Bose SoundSport Headphones,1,99.99,10/27/19 13:32,"416 West St, Atlanta, GA 30301" +271080,Wired Headphones,1,11.99,10/27/19 13:32,"416 West St, Atlanta, GA 30301" +271081,AA Batteries (4-pack),1,3.84,10/16/19 14:01,"700 11th St, Dallas, TX 75001" +271082,AA Batteries (4-pack),1,3.84,10/28/19 17:36,"164 Jefferson St, Los Angeles, CA 90001" +271083,Wired Headphones,1,11.99,10/15/19 00:24,"627 5th St, San Francisco, CA 94016" +271084,AAA Batteries (4-pack),1,2.99,10/25/19 21:07,"161 Forest St, Seattle, WA 98101" +271085,27in 4K Gaming Monitor,1,389.99,10/27/19 18:22,"504 Main St, Los Angeles, CA 90001" +271086,USB-C Charging Cable,2,11.95,10/03/19 13:16,"548 Cedar St, New York City, NY 10001" +271087,USB-C Charging Cable,1,11.95,10/16/19 18:58,"70 Highland St, Austin, TX 73301" +271088,Wired Headphones,1,11.99,10/26/19 15:02,"315 Pine St, Portland, OR 97035" +271088,Wired Headphones,1,11.99,10/26/19 15:02,"315 Pine St, Portland, OR 97035" +271089,Lightning Charging Cable,1,14.95,10/05/19 18:46,"677 Wilson St, San Francisco, CA 94016" +271090,Lightning Charging Cable,1,14.95,10/21/19 14:29,"950 13th St, New York City, NY 10001" +271091,Wired Headphones,1,11.99,10/02/19 18:50,"348 Elm St, Boston, MA 02215" +271092,Lightning Charging Cable,1,14.95,10/11/19 16:43,"184 Jefferson St, Atlanta, GA 30301" +271093,Apple Airpods Headphones,1,150,10/13/19 14:24,"385 Washington St, Dallas, TX 75001" +271094,AA Batteries (4-pack),1,3.84,10/08/19 09:09,"102 Spruce St, New York City, NY 10001" +271095,27in FHD Monitor,1,149.99,10/10/19 05:38,"176 Washington St, San Francisco, CA 94016" +271096,20in Monitor,1,109.99,10/11/19 19:39,"478 9th St, Los Angeles, CA 90001" +271097,34in Ultrawide Monitor,1,379.99,10/16/19 10:19,"27 12th St, Seattle, WA 98101" +271098,Bose SoundSport Headphones,1,99.99,10/17/19 11:07,"791 Sunset St, San Francisco, CA 94016" +271099,Vareebadd Phone,1,400,10/09/19 12:54,"610 13th St, Seattle, WA 98101" +271099,Bose SoundSport Headphones,1,99.99,10/09/19 12:54,"610 13th St, Seattle, WA 98101" +271100,Macbook Pro Laptop,1,1700,10/24/19 22:04,"405 Johnson St, San Francisco, CA 94016" +271101,AA Batteries (4-pack),1,3.84,10/12/19 17:18,"462 6th St, Dallas, TX 75001" +271102,Lightning Charging Cable,1,14.95,10/12/19 21:56,"717 Hill St, San Francisco, CA 94016" +271103,Flatscreen TV,1,300,10/07/19 19:22,"696 West St, San Francisco, CA 94016" +271104,AA Batteries (4-pack),1,3.84,10/10/19 17:01,"158 Lake St, San Francisco, CA 94016" +271105,AAA Batteries (4-pack),1,2.99,10/18/19 12:40,"306 Chestnut St, Atlanta, GA 30301" +271106,USB-C Charging Cable,1,11.95,10/29/19 09:09,"597 Meadow St, Dallas, TX 75001" +271107,LG Dryer,1,600.0,10/17/19 20:59,"55 Forest St, San Francisco, CA 94016" +271108,Bose SoundSport Headphones,1,99.99,10/04/19 13:16,"696 Highland St, San Francisco, CA 94016" +271109,Wired Headphones,1,11.99,10/27/19 10:39,"711 Cherry St, San Francisco, CA 94016" +271110,Wired Headphones,1,11.99,10/02/19 18:28,"764 Adams St, San Francisco, CA 94016" +271111,AA Batteries (4-pack),1,3.84,10/07/19 09:13,"143 Elm St, Portland, OR 97035" +271112,Lightning Charging Cable,1,14.95,10/23/19 14:58,"667 10th St, Los Angeles, CA 90001" +271113,20in Monitor,1,109.99,10/10/19 19:07,"281 Dogwood St, Los Angeles, CA 90001" +271114,USB-C Charging Cable,1,11.95,10/22/19 10:34,"215 8th St, Austin, TX 73301" +271115,Wired Headphones,1,11.99,10/15/19 14:50,"960 West St, New York City, NY 10001" +271116,AAA Batteries (4-pack),5,2.99,10/07/19 17:06,"461 Hill St, Dallas, TX 75001" +271117,Wired Headphones,1,11.99,10/05/19 20:32,"16 10th St, Seattle, WA 98101" +271118,Wired Headphones,1,11.99,10/01/19 20:43,"386 8th St, New York City, NY 10001" +271119,AAA Batteries (4-pack),1,2.99,10/12/19 15:11,"33 Sunset St, New York City, NY 10001" +271120,Lightning Charging Cable,1,14.95,10/17/19 14:31,"712 Spruce St, San Francisco, CA 94016" +271121,USB-C Charging Cable,1,11.95,10/13/19 10:06,"408 River St, Atlanta, GA 30301" +271122,Apple Airpods Headphones,1,150,10/19/19 14:03,"534 Jefferson St, Dallas, TX 75001" +271123,USB-C Charging Cable,1,11.95,10/04/19 14:14,"573 10th St, Seattle, WA 98101" +271124,Bose SoundSport Headphones,1,99.99,10/27/19 13:31,"999 Adams St, New York City, NY 10001" +271125,AAA Batteries (4-pack),1,2.99,10/20/19 17:18,"150 Johnson St, Los Angeles, CA 90001" +271126,USB-C Charging Cable,1,11.95,10/07/19 13:00,"866 Jackson St, Boston, MA 02215" +271127,AA Batteries (4-pack),1,3.84,10/31/19 17:01,"660 Johnson St, Los Angeles, CA 90001" +271128,27in 4K Gaming Monitor,1,389.99,10/15/19 17:54,"519 2nd St, Boston, MA 02215" +271129,AAA Batteries (4-pack),2,2.99,10/10/19 15:37,"532 2nd St, San Francisco, CA 94016" +271130,AAA Batteries (4-pack),1,2.99,10/06/19 22:31,"198 North St, Los Angeles, CA 90001" +271131,Lightning Charging Cable,1,14.95,10/05/19 09:10,"545 7th St, Dallas, TX 75001" +271132,Flatscreen TV,1,300,10/25/19 21:37,"648 8th St, Atlanta, GA 30301" +271133,AA Batteries (4-pack),1,3.84,10/12/19 12:44,"278 9th St, Portland, OR 97035" +271134,Macbook Pro Laptop,1,1700,10/31/19 04:04,"759 Center St, New York City, NY 10001" +271135,Bose SoundSport Headphones,1,99.99,10/23/19 09:58,"123 Jackson St, Seattle, WA 98101" +271136,AA Batteries (4-pack),1,3.84,10/27/19 07:22,"97 13th St, San Francisco, CA 94016" +271137,Lightning Charging Cable,1,14.95,10/20/19 00:47,"328 South St, Seattle, WA 98101" +271138,27in 4K Gaming Monitor,1,389.99,10/13/19 23:48,"299 1st St, San Francisco, CA 94016" +271139,Apple Airpods Headphones,1,150,10/13/19 10:28,"780 6th St, Austin, TX 73301" +271140,Apple Airpods Headphones,1,150,10/05/19 15:22,"294 North St, New York City, NY 10001" +271141,Google Phone,1,600,10/04/19 19:14,"769 Hickory St, San Francisco, CA 94016" +271141,USB-C Charging Cable,1,11.95,10/04/19 19:14,"769 Hickory St, San Francisco, CA 94016" +271142,Wired Headphones,1,11.99,10/19/19 08:31,"114 14th St, San Francisco, CA 94016" +271143,AAA Batteries (4-pack),1,2.99,10/15/19 19:34,"185 2nd St, New York City, NY 10001" +271144,ThinkPad Laptop,1,999.99,10/15/19 15:20,"457 Adams St, Atlanta, GA 30301" +271145,AAA Batteries (4-pack),1,2.99,10/14/19 09:39,"235 Lake St, Dallas, TX 75001" +271146,Google Phone,1,600,10/23/19 11:52,"12 Adams St, Boston, MA 02215" +271147,Vareebadd Phone,1,400,10/11/19 20:34,"699 6th St, New York City, NY 10001" +271148,AA Batteries (4-pack),2,3.84,10/14/19 10:22,"217 10th St, Atlanta, GA 30301" +271149,Macbook Pro Laptop,1,1700,10/05/19 13:27,"394 Dogwood St, Portland, ME 04101" +271150,AA Batteries (4-pack),1,3.84,10/23/19 00:54,"960 Wilson St, San Francisco, CA 94016" +271151,AAA Batteries (4-pack),1,2.99,10/26/19 11:06,"563 13th St, Los Angeles, CA 90001" +271152,Apple Airpods Headphones,1,150,10/31/19 21:27,"557 Johnson St, Los Angeles, CA 90001" +271153,AAA Batteries (4-pack),1,2.99,10/28/19 18:58,"523 Lincoln St, San Francisco, CA 94016" +271154,Apple Airpods Headphones,1,150,10/12/19 11:55,"579 11th St, New York City, NY 10001" +271155,USB-C Charging Cable,1,11.95,10/04/19 22:17,"456 Spruce St, New York City, NY 10001" +271156,Macbook Pro Laptop,1,1700,10/24/19 04:37,"92 Park St, New York City, NY 10001" +271157,USB-C Charging Cable,1,11.95,10/22/19 16:40,"342 6th St, Austin, TX 73301" +271158,AAA Batteries (4-pack),1,2.99,10/03/19 11:17,"189 Dogwood St, Atlanta, GA 30301" +271159,USB-C Charging Cable,1,11.95,10/22/19 20:52,"410 Elm St, San Francisco, CA 94016" +271160,AAA Batteries (4-pack),1,2.99,10/11/19 17:21,"940 Wilson St, San Francisco, CA 94016" +271161,Lightning Charging Cable,1,14.95,10/04/19 16:55,"751 North St, New York City, NY 10001" +271162,AA Batteries (4-pack),6,3.84,10/07/19 19:43,"507 Lincoln St, Atlanta, GA 30301" +271163,Apple Airpods Headphones,1,150,10/28/19 08:16,"204 Church St, San Francisco, CA 94016" +271164,AAA Batteries (4-pack),3,2.99,10/02/19 10:30,"358 Hickory St, Seattle, WA 98101" +271165,USB-C Charging Cable,1,11.95,10/16/19 22:37,"482 Jefferson St, Boston, MA 02215" +271166,20in Monitor,1,109.99,10/15/19 19:54,"674 Meadow St, Atlanta, GA 30301" +271167,20in Monitor,1,109.99,10/13/19 20:29,"742 10th St, Dallas, TX 75001" +271168,Wired Headphones,1,11.99,10/13/19 19:31,"834 Park St, Portland, OR 97035" +271169,USB-C Charging Cable,1,11.95,10/19/19 20:38,"893 4th St, San Francisco, CA 94016" +271170,AAA Batteries (4-pack),1,2.99,10/11/19 16:33,"198 Cedar St, Seattle, WA 98101" +271171,27in 4K Gaming Monitor,1,389.99,10/25/19 06:21,"683 South St, Los Angeles, CA 90001" +271172,AAA Batteries (4-pack),2,2.99,10/31/19 23:14,"23 Washington St, Atlanta, GA 30301" +271173,Lightning Charging Cable,1,14.95,10/10/19 13:04,"18 1st St, San Francisco, CA 94016" +271174,AA Batteries (4-pack),2,3.84,10/16/19 07:27,"509 Highland St, Boston, MA 02215" +271175,Lightning Charging Cable,1,14.95,10/02/19 20:21,"745 8th St, Portland, OR 97035" +271176,Wired Headphones,1,11.99,10/20/19 12:53,"87 13th St, New York City, NY 10001" +271177,34in Ultrawide Monitor,1,379.99,10/24/19 09:54,"999 Dogwood St, Atlanta, GA 30301" +271178,USB-C Charging Cable,1,11.95,10/27/19 09:26,"567 River St, Atlanta, GA 30301" +271179,AAA Batteries (4-pack),1,2.99,10/30/19 11:41,"274 Church St, Los Angeles, CA 90001" +271180,Bose SoundSport Headphones,1,99.99,10/31/19 11:25,"943 Hill St, New York City, NY 10001" +271181,LG Washing Machine,1,600.0,10/22/19 11:48,"203 Wilson St, Los Angeles, CA 90001" +271182,USB-C Charging Cable,1,11.95,10/17/19 08:53,"204 Lake St, Atlanta, GA 30301" +271183,Lightning Charging Cable,1,14.95,10/21/19 23:19,"307 West St, Portland, OR 97035" +271184,AAA Batteries (4-pack),3,2.99,10/09/19 11:14,"806 River St, San Francisco, CA 94016" +271185,27in 4K Gaming Monitor,1,389.99,10/24/19 17:24,"923 Chestnut St, San Francisco, CA 94016" +271186,Bose SoundSport Headphones,1,99.99,10/27/19 11:32,"99 Forest St, Los Angeles, CA 90001" +271187,Apple Airpods Headphones,1,150,10/08/19 12:36,"832 Lake St, San Francisco, CA 94016" +271188,Lightning Charging Cable,1,14.95,10/25/19 12:29,"605 Center St, Los Angeles, CA 90001" +271189,USB-C Charging Cable,1,11.95,10/03/19 14:02,"831 13th St, San Francisco, CA 94016" +271190,Lightning Charging Cable,1,14.95,10/15/19 12:08,"984 Lakeview St, Atlanta, GA 30301" +271191,AA Batteries (4-pack),1,3.84,10/15/19 18:22,"720 Adams St, Boston, MA 02215" +271192,AA Batteries (4-pack),3,3.84,10/08/19 23:02,"185 Park St, San Francisco, CA 94016" +271193,27in FHD Monitor,1,149.99,10/01/19 12:02,"714 Lake St, Seattle, WA 98101" +271194,AA Batteries (4-pack),2,3.84,10/31/19 12:05,"618 6th St, Seattle, WA 98101" +271195,iPhone,1,700,10/08/19 21:50,"973 5th St, Seattle, WA 98101" +271196,Apple Airpods Headphones,1,150,10/27/19 19:32,"903 Pine St, Austin, TX 73301" +271197,Wired Headphones,1,11.99,10/24/19 11:30,"406 West St, Portland, OR 97035" +271198,Apple Airpods Headphones,1,150,10/21/19 22:14,"815 Hill St, Atlanta, GA 30301" +271199,Macbook Pro Laptop,1,1700,10/10/19 11:12,"224 14th St, Portland, OR 97035" +271200,AAA Batteries (4-pack),1,2.99,10/22/19 19:29,"67 Pine St, Los Angeles, CA 90001" +271201,AA Batteries (4-pack),1,3.84,10/20/19 09:35,"249 Park St, San Francisco, CA 94016" +271202,AAA Batteries (4-pack),1,2.99,10/19/19 12:36,"866 Dogwood St, San Francisco, CA 94016" +271203,Lightning Charging Cable,1,14.95,10/15/19 13:56,"690 Madison St, Los Angeles, CA 90001" +271204,USB-C Charging Cable,1,11.95,10/08/19 17:38,"910 6th St, Seattle, WA 98101" +271205,Google Phone,1,600,10/14/19 13:50,"779 4th St, Dallas, TX 75001" +271206,AA Batteries (4-pack),1,3.84,10/21/19 22:38,"837 Hill St, Los Angeles, CA 90001" +271207,USB-C Charging Cable,1,11.95,10/15/19 00:09,"948 8th St, San Francisco, CA 94016" +271208,AA Batteries (4-pack),1,3.84,10/31/19 12:18,"381 Center St, New York City, NY 10001" +271209,AA Batteries (4-pack),2,3.84,10/14/19 19:41,"650 Cedar St, San Francisco, CA 94016" +271210,AAA Batteries (4-pack),2,2.99,10/27/19 17:56,"618 5th St, New York City, NY 10001" +271211,Wired Headphones,1,11.99,10/18/19 21:17,"309 7th St, Los Angeles, CA 90001" +271212,AAA Batteries (4-pack),1,2.99,10/09/19 20:09,"531 Adams St, Seattle, WA 98101" +271213,Flatscreen TV,1,300,10/11/19 12:39,"578 Main St, San Francisco, CA 94016" +271213,Google Phone,1,600,10/11/19 12:39,"578 Main St, San Francisco, CA 94016" +271214,Google Phone,1,600,10/18/19 12:39,"298 Johnson St, New York City, NY 10001" +271215,AA Batteries (4-pack),1,3.84,10/21/19 12:12,"339 Walnut St, San Francisco, CA 94016" +271215,USB-C Charging Cable,1,11.95,10/21/19 12:12,"339 Walnut St, San Francisco, CA 94016" +271216,USB-C Charging Cable,1,11.95,10/05/19 00:06,"752 Madison St, Atlanta, GA 30301" +271217,Lightning Charging Cable,1,14.95,10/27/19 08:36,"726 Hickory St, New York City, NY 10001" +271218,AAA Batteries (4-pack),1,2.99,10/14/19 14:41,"212 8th St, Austin, TX 73301" +271219,Wired Headphones,1,11.99,10/04/19 23:14,"987 West St, San Francisco, CA 94016" +271220,AA Batteries (4-pack),2,3.84,10/11/19 18:40,"106 Hickory St, San Francisco, CA 94016" +271221,Lightning Charging Cable,1,14.95,10/29/19 20:40,"59 Park St, San Francisco, CA 94016" +271222,Flatscreen TV,1,300,10/20/19 21:43,"65 8th St, Atlanta, GA 30301" +271223,Flatscreen TV,1,300,10/29/19 16:14,"955 13th St, Boston, MA 02215" +271224,USB-C Charging Cable,1,11.95,10/11/19 13:02,"532 Meadow St, Seattle, WA 98101" +271225,AA Batteries (4-pack),1,3.84,10/01/19 12:18,"755 Maple St, Portland, OR 97035" +271226,iPhone,1,700,10/21/19 04:52,"349 1st St, Los Angeles, CA 90001" +271227,20in Monitor,1,109.99,10/22/19 18:52,"29 Spruce St, San Francisco, CA 94016" +271228,AAA Batteries (4-pack),1,2.99,10/28/19 12:59,"30 Forest St, Boston, MA 02215" +271229,Wired Headphones,1,11.99,10/24/19 18:19,"720 10th St, San Francisco, CA 94016" +271230,USB-C Charging Cable,1,11.95,10/09/19 07:51,"301 5th St, Dallas, TX 75001" +271231,34in Ultrawide Monitor,1,379.99,10/03/19 21:52,"445 Lakeview St, New York City, NY 10001" +271232,AAA Batteries (4-pack),3,2.99,10/28/19 22:58,"149 4th St, Seattle, WA 98101" +271233,27in FHD Monitor,1,149.99,10/27/19 12:46,"1 Meadow St, San Francisco, CA 94016" +271234,Apple Airpods Headphones,1,150,10/03/19 18:05,"903 11th St, Los Angeles, CA 90001" +271235,34in Ultrawide Monitor,1,379.99,10/07/19 21:50,"121 Cherry St, San Francisco, CA 94016" +271236,AAA Batteries (4-pack),1,2.99,10/22/19 17:58,"495 7th St, San Francisco, CA 94016" +271237,Vareebadd Phone,1,400,10/07/19 23:23,"94 Meadow St, Seattle, WA 98101" +271238,34in Ultrawide Monitor,1,379.99,10/25/19 19:58,"721 Washington St, Dallas, TX 75001" +271239,Apple Airpods Headphones,1,150,10/31/19 20:09,"875 12th St, San Francisco, CA 94016" +271240,34in Ultrawide Monitor,1,379.99,10/05/19 14:35,"228 Chestnut St, Dallas, TX 75001" +271241,AA Batteries (4-pack),1,3.84,10/24/19 20:33,"693 Lakeview St, New York City, NY 10001" +271242,iPhone,1,700,10/07/19 21:00,"127 Church St, Dallas, TX 75001" +271243,iPhone,1,700,10/19/19 14:01,"729 8th St, Boston, MA 02215" +271244,AAA Batteries (4-pack),1,2.99,10/03/19 09:29,"659 Main St, Dallas, TX 75001" +271245,Lightning Charging Cable,1,14.95,10/26/19 18:46,"975 Meadow St, Seattle, WA 98101" +271246,AAA Batteries (4-pack),1,2.99,10/22/19 23:14,"941 Madison St, Portland, OR 97035" +271247,Bose SoundSport Headphones,1,99.99,10/12/19 20:26,"880 Elm St, San Francisco, CA 94016" +271248,AA Batteries (4-pack),1,3.84,10/13/19 10:05,"588 Maple St, San Francisco, CA 94016" +271249,Apple Airpods Headphones,1,150,10/28/19 20:53,"621 13th St, Austin, TX 73301" +271250,Wired Headphones,1,11.99,10/03/19 22:39,"310 Meadow St, San Francisco, CA 94016" +271251,34in Ultrawide Monitor,1,379.99,10/02/19 13:26,"367 5th St, New York City, NY 10001" +271252,Lightning Charging Cable,1,14.95,10/19/19 09:37,"53 River St, Dallas, TX 75001" +271253,Wired Headphones,3,11.99,10/16/19 18:08,"584 Cherry St, Seattle, WA 98101" +271254,Wired Headphones,1,11.99,10/31/19 14:04,"2 Johnson St, Dallas, TX 75001" +271255,Wired Headphones,1,11.99,10/03/19 22:44,"405 Adams St, Portland, ME 04101" +271256,USB-C Charging Cable,2,11.95,10/26/19 22:42,"262 Spruce St, Los Angeles, CA 90001" +271257,USB-C Charging Cable,1,11.95,10/28/19 23:03,"417 2nd St, Seattle, WA 98101" +271258,ThinkPad Laptop,1,999.99,10/23/19 13:00,"410 Church St, New York City, NY 10001" +271259,ThinkPad Laptop,1,999.99,10/08/19 13:37,"348 Dogwood St, Dallas, TX 75001" +271260,Lightning Charging Cable,1,14.95,10/06/19 11:13,"817 Madison St, New York City, NY 10001" +271261,Lightning Charging Cable,1,14.95,10/03/19 14:27,"223 Elm St, New York City, NY 10001" +271262,AAA Batteries (4-pack),1,2.99,10/17/19 14:57,"804 Wilson St, San Francisco, CA 94016" +271263,AA Batteries (4-pack),1,3.84,10/22/19 20:35,"966 Lake St, Austin, TX 73301" +271264,Apple Airpods Headphones,1,150,10/13/19 17:28,"258 River St, Los Angeles, CA 90001" +271265,Apple Airpods Headphones,1,150,10/25/19 20:15,"952 11th St, Seattle, WA 98101" +271266,27in FHD Monitor,1,149.99,10/23/19 21:47,"94 12th St, Boston, MA 02215" +271267,Lightning Charging Cable,1,14.95,10/05/19 16:50,"219 4th St, Portland, OR 97035" +271268,AA Batteries (4-pack),1,3.84,10/02/19 17:47,"626 Church St, Austin, TX 73301" +271269,Macbook Pro Laptop,1,1700,10/02/19 19:38,"900 Church St, Austin, TX 73301" +271270,27in FHD Monitor,1,149.99,10/12/19 00:13,"80 Dogwood St, Austin, TX 73301" +271271,Apple Airpods Headphones,1,150,10/17/19 18:48,"803 11th St, Los Angeles, CA 90001" +271272,Lightning Charging Cable,1,14.95,10/21/19 11:48,"725 9th St, Boston, MA 02215" +271273,Apple Airpods Headphones,1,150,10/24/19 21:09,"167 1st St, San Francisco, CA 94016" +271274,USB-C Charging Cable,1,11.95,10/04/19 16:15,"752 Forest St, Dallas, TX 75001" +271275,Wired Headphones,1,11.99,10/01/19 10:05,"298 Highland St, San Francisco, CA 94016" +271276,USB-C Charging Cable,1,11.95,10/08/19 20:06,"446 Jefferson St, Austin, TX 73301" +271277,AAA Batteries (4-pack),1,2.99,10/31/19 14:10,"468 Church St, Seattle, WA 98101" +271278,AA Batteries (4-pack),1,3.84,10/26/19 13:48,"92 Lake St, San Francisco, CA 94016" +271279,AAA Batteries (4-pack),2,2.99,10/28/19 12:45,"209 Washington St, San Francisco, CA 94016" +271280,AA Batteries (4-pack),1,3.84,10/15/19 20:05,"785 Elm St, Los Angeles, CA 90001" +271281,Vareebadd Phone,1,400,10/14/19 15:04,"853 7th St, New York City, NY 10001" +271282,AA Batteries (4-pack),2,3.84,10/26/19 18:02,"615 Lincoln St, Boston, MA 02215" +271283,34in Ultrawide Monitor,1,379.99,10/12/19 18:15,"469 Lake St, Los Angeles, CA 90001" +271284,Google Phone,1,600,10/14/19 13:03,"471 13th St, San Francisco, CA 94016" +271285,Apple Airpods Headphones,1,150,10/04/19 10:48,"788 Jackson St, Dallas, TX 75001" +271286,iPhone,1,700,10/03/19 14:32,"106 Maple St, San Francisco, CA 94016" +271287,Lightning Charging Cable,1,14.95,10/09/19 15:29,"951 Hill St, Austin, TX 73301" +271288,20in Monitor,1,109.99,10/28/19 11:13,"554 Maple St, Austin, TX 73301" +271289,USB-C Charging Cable,1,11.95,10/18/19 15:07,"138 Cherry St, Boston, MA 02215" +271290,AAA Batteries (4-pack),2,2.99,10/29/19 06:44,"160 Johnson St, San Francisco, CA 94016" +271291,AA Batteries (4-pack),1,3.84,10/08/19 14:07,"321 Wilson St, Seattle, WA 98101" +271292,AAA Batteries (4-pack),1,2.99,10/12/19 20:59,"435 Hill St, San Francisco, CA 94016" +271293,Apple Airpods Headphones,1,150,10/13/19 21:50,"787 Main St, New York City, NY 10001" +271294,27in 4K Gaming Monitor,1,389.99,10/21/19 12:36,"196 Washington St, Boston, MA 02215" +271295,AA Batteries (4-pack),1,3.84,10/29/19 09:25,"3 1st St, Boston, MA 02215" +271296,Apple Airpods Headphones,1,150,10/07/19 16:55,"115 Wilson St, San Francisco, CA 94016" +271297,ThinkPad Laptop,1,999.99,10/21/19 10:01,"668 11th St, Seattle, WA 98101" +271298,Lightning Charging Cable,1,14.95,10/11/19 17:44,"918 Cedar St, Boston, MA 02215" +271299,AAA Batteries (4-pack),1,2.99,10/08/19 09:50,"540 10th St, Atlanta, GA 30301" +271300,AAA Batteries (4-pack),1,2.99,10/06/19 12:37,"514 Chestnut St, New York City, NY 10001" +271301,AAA Batteries (4-pack),2,2.99,10/19/19 15:05,"529 Jackson St, Los Angeles, CA 90001" +271302,USB-C Charging Cable,1,11.95,10/22/19 17:03,"279 13th St, Los Angeles, CA 90001" +271303,USB-C Charging Cable,1,11.95,10/20/19 20:46,"510 South St, Los Angeles, CA 90001" +271304,AAA Batteries (4-pack),1,2.99,10/30/19 10:44,"298 Jackson St, Portland, OR 97035" +271305,AAA Batteries (4-pack),1,2.99,10/28/19 12:28,"566 Adams St, San Francisco, CA 94016" +271306,Google Phone,1,600,10/31/19 21:57,"893 Cedar St, New York City, NY 10001" +271307,Bose SoundSport Headphones,1,99.99,10/12/19 12:57,"336 4th St, New York City, NY 10001" +271308,AA Batteries (4-pack),1,3.84,10/29/19 09:21,"347 Dogwood St, San Francisco, CA 94016" +271309,27in 4K Gaming Monitor,1,389.99,10/09/19 14:51,"719 West St, Atlanta, GA 30301" +271310,Wired Headphones,1,11.99,10/30/19 20:13,"12 Main St, Atlanta, GA 30301" +271311,AA Batteries (4-pack),1,3.84,10/03/19 17:22,"585 Hill St, Portland, OR 97035" +271312,USB-C Charging Cable,1,11.95,10/23/19 19:44,"442 Madison St, Los Angeles, CA 90001" +271313,Bose SoundSport Headphones,1,99.99,10/25/19 19:19,"966 Jackson St, New York City, NY 10001" +271314,AA Batteries (4-pack),1,3.84,10/23/19 15:43,"830 Wilson St, Seattle, WA 98101" +271315,Vareebadd Phone,1,400,10/19/19 16:11,"254 6th St, New York City, NY 10001" +271316,USB-C Charging Cable,1,11.95,10/19/19 10:35,"193 Forest St, Los Angeles, CA 90001" +271317,AA Batteries (4-pack),1,3.84,10/18/19 02:51,"919 12th St, Boston, MA 02215" +271318,Lightning Charging Cable,1,14.95,10/24/19 12:41,"879 South St, Seattle, WA 98101" +271319,USB-C Charging Cable,1,11.95,10/05/19 19:07,"3 Center St, Portland, OR 97035" +271320,Wired Headphones,1,11.99,10/14/19 20:14,"404 Lincoln St, New York City, NY 10001" +271321,iPhone,1,700,10/15/19 12:04,"423 Park St, Portland, ME 04101" +271321,Lightning Charging Cable,1,14.95,10/15/19 12:04,"423 Park St, Portland, ME 04101" +271322,Bose SoundSport Headphones,1,99.99,10/18/19 21:19,"274 Dogwood St, Seattle, WA 98101" +271323,AA Batteries (4-pack),2,3.84,10/07/19 15:53,"442 North St, Atlanta, GA 30301" +271324,USB-C Charging Cable,1,11.95,10/08/19 12:02,"98 Church St, New York City, NY 10001" +271325,Bose SoundSport Headphones,1,99.99,10/21/19 21:03,"21 13th St, Boston, MA 02215" +271326,Lightning Charging Cable,1,14.95,10/01/19 10:57,"187 Meadow St, New York City, NY 10001" +271327,Lightning Charging Cable,1,14.95,10/13/19 20:51,"757 2nd St, Boston, MA 02215" +271328,20in Monitor,1,109.99,10/03/19 22:17,"619 Park St, Portland, OR 97035" +271329,USB-C Charging Cable,1,11.95,10/18/19 19:12,"166 West St, New York City, NY 10001" +271330,Wired Headphones,1,11.99,10/22/19 16:22,"437 5th St, Los Angeles, CA 90001" +271331,AA Batteries (4-pack),2,3.84,10/24/19 13:12,"880 4th St, Dallas, TX 75001" +271332,AAA Batteries (4-pack),2,2.99,10/03/19 20:11,"966 10th St, Austin, TX 73301" +271333,20in Monitor,1,109.99,10/24/19 00:14,"372 Dogwood St, Portland, OR 97035" +271334,AA Batteries (4-pack),1,3.84,10/18/19 15:39,"233 Cherry St, Austin, TX 73301" +271335,Apple Airpods Headphones,1,150,10/26/19 17:06,"465 Maple St, Seattle, WA 98101" +271335,AA Batteries (4-pack),3,3.84,10/26/19 17:06,"465 Maple St, Seattle, WA 98101" +271336,Apple Airpods Headphones,1,150,10/11/19 14:20,"906 Church St, San Francisco, CA 94016" +271337,USB-C Charging Cable,1,11.95,10/20/19 00:55,"384 Sunset St, Los Angeles, CA 90001" +271338,27in FHD Monitor,1,149.99,10/16/19 20:10,"102 River St, Los Angeles, CA 90001" +271339,USB-C Charging Cable,1,11.95,10/12/19 18:31,"697 6th St, Los Angeles, CA 90001" +271340,Lightning Charging Cable,1,14.95,10/05/19 16:14,"949 West St, San Francisco, CA 94016" +271341,AA Batteries (4-pack),2,3.84,10/31/19 21:47,"785 Elm St, Dallas, TX 75001" +271342,Bose SoundSport Headphones,1,99.99,10/09/19 12:33,"210 Park St, Seattle, WA 98101" +271343,Apple Airpods Headphones,1,150,10/11/19 15:47,"463 Washington St, Los Angeles, CA 90001" +271344,Macbook Pro Laptop,1,1700,10/05/19 09:30,"951 2nd St, Seattle, WA 98101" +271345,27in 4K Gaming Monitor,1,389.99,10/13/19 14:54,"608 1st St, Dallas, TX 75001" +271346,ThinkPad Laptop,1,999.99,10/07/19 09:20,"334 River St, San Francisco, CA 94016" +271347,AA Batteries (4-pack),1,3.84,10/06/19 19:50,"267 Hill St, San Francisco, CA 94016" +271348,Apple Airpods Headphones,1,150,10/29/19 12:35,"841 West St, Dallas, TX 75001" +271349,AAA Batteries (4-pack),4,2.99,10/29/19 16:50,"667 Johnson St, Los Angeles, CA 90001" +271350,Wired Headphones,1,11.99,10/02/19 22:15,"511 Center St, New York City, NY 10001" +271351,27in FHD Monitor,1,149.99,10/19/19 20:28,"679 Jefferson St, San Francisco, CA 94016" +271352,Lightning Charging Cable,1,14.95,10/04/19 15:45,"616 Center St, Boston, MA 02215" +271353,34in Ultrawide Monitor,1,379.99,10/01/19 21:03,"327 Jefferson St, San Francisco, CA 94016" +271354,Bose SoundSport Headphones,1,99.99,10/29/19 21:31,"421 Hickory St, New York City, NY 10001" +271355,Lightning Charging Cable,1,14.95,10/15/19 14:11,"598 10th St, San Francisco, CA 94016" +271356,Wired Headphones,1,11.99,10/01/19 13:42,"69 13th St, San Francisco, CA 94016" +271357,Bose SoundSport Headphones,1,99.99,10/23/19 22:58,"314 Jackson St, Los Angeles, CA 90001" +271358,USB-C Charging Cable,1,11.95,10/04/19 17:32,"476 Lincoln St, Boston, MA 02215" +271359,iPhone,1,700,10/10/19 18:44,"618 Pine St, Seattle, WA 98101" +271360,Apple Airpods Headphones,1,150,10/15/19 19:09,"675 Hickory St, San Francisco, CA 94016" +271361,Google Phone,1,600,10/20/19 18:50,"592 Willow St, New York City, NY 10001" +271362,Google Phone,1,600,10/16/19 15:20,"127 Jackson St, Los Angeles, CA 90001" +271362,USB-C Charging Cable,1,11.95,10/16/19 15:20,"127 Jackson St, Los Angeles, CA 90001" +271363,LG Washing Machine,1,600.0,10/26/19 21:50,"695 Meadow St, Austin, TX 73301" +271364,Apple Airpods Headphones,1,150,10/17/19 15:58,"492 Maple St, New York City, NY 10001" +271365,Apple Airpods Headphones,1,150,10/02/19 09:44,"196 Willow St, New York City, NY 10001" +271366,Flatscreen TV,1,300,10/12/19 16:53,"801 8th St, San Francisco, CA 94016" +271367,Wired Headphones,2,11.99,10/13/19 17:33,"455 12th St, San Francisco, CA 94016" +271368,27in FHD Monitor,1,149.99,10/13/19 18:12,"927 13th St, Boston, MA 02215" +271369,27in FHD Monitor,1,149.99,10/08/19 18:29,"312 West St, Dallas, TX 75001" +271370,Wired Headphones,1,11.99,10/31/19 19:36,"160 Johnson St, Boston, MA 02215" +271371,27in 4K Gaming Monitor,1,389.99,10/02/19 13:52,"403 Jackson St, Austin, TX 73301" +271372,AAA Batteries (4-pack),1,2.99,10/09/19 17:59,"691 Lakeview St, Portland, OR 97035" +271373,USB-C Charging Cable,1,11.95,10/22/19 01:34,"67 5th St, Dallas, TX 75001" +271373,Google Phone,1,600,10/22/19 01:34,"67 5th St, Dallas, TX 75001" +271374,Flatscreen TV,1,300,10/15/19 16:15,"550 Willow St, San Francisco, CA 94016" +271375,34in Ultrawide Monitor,1,379.99,10/22/19 19:06,"519 Madison St, San Francisco, CA 94016" +271376,AAA Batteries (4-pack),1,2.99,10/15/19 11:06,"963 6th St, Dallas, TX 75001" +271377,Google Phone,1,600,10/26/19 15:56,"449 Washington St, Los Angeles, CA 90001" +271378,USB-C Charging Cable,1,11.95,10/03/19 10:41,"321 Willow St, Dallas, TX 75001" +271379,AA Batteries (4-pack),1,3.84,10/16/19 21:25,"693 8th St, Seattle, WA 98101" +271380,Google Phone,1,600,10/12/19 09:43,"692 2nd St, San Francisco, CA 94016" +271381,27in FHD Monitor,1,149.99,10/22/19 20:44,"89 7th St, New York City, NY 10001" +271382,27in 4K Gaming Monitor,1,389.99,10/24/19 23:15,"789 Elm St, Seattle, WA 98101" +271383,ThinkPad Laptop,1,999.99,10/17/19 17:15,"228 Chestnut St, Boston, MA 02215" +271384,Apple Airpods Headphones,1,150,10/20/19 19:10,"419 Sunset St, Boston, MA 02215" +271385,Lightning Charging Cable,1,14.95,10/29/19 11:37,"949 11th St, San Francisco, CA 94016" +271386,USB-C Charging Cable,1,11.95,10/08/19 15:31,"346 1st St, Los Angeles, CA 90001" +271387,Macbook Pro Laptop,1,1700,10/06/19 18:23,"281 North St, Los Angeles, CA 90001" +271388,Lightning Charging Cable,1,14.95,10/16/19 15:26,"198 Willow St, San Francisco, CA 94016" +271389,AA Batteries (4-pack),1,3.84,10/25/19 15:26,"481 Pine St, San Francisco, CA 94016" +271390,AAA Batteries (4-pack),1,2.99,10/25/19 16:44,"136 Elm St, San Francisco, CA 94016" +271391,AAA Batteries (4-pack),1,2.99,10/25/19 21:12,"610 Hickory St, New York City, NY 10001" +271392,Apple Airpods Headphones,1,150,10/14/19 23:58,"173 Adams St, Atlanta, GA 30301" +271393,Apple Airpods Headphones,1,150,10/30/19 07:43,"944 1st St, Los Angeles, CA 90001" +271394,Google Phone,1,600,10/24/19 22:05,"312 Maple St, Los Angeles, CA 90001" +271394,Wired Headphones,1,11.99,10/24/19 22:05,"312 Maple St, Los Angeles, CA 90001" +271395,Apple Airpods Headphones,1,150,10/10/19 22:55,"70 Maple St, Portland, OR 97035" +271396,AAA Batteries (4-pack),1,2.99,10/20/19 13:28,"646 6th St, Boston, MA 02215" +271397,AA Batteries (4-pack),1,3.84,10/29/19 02:10,"850 Park St, Austin, TX 73301" +271398,USB-C Charging Cable,1,11.95,10/07/19 17:42,"921 Spruce St, San Francisco, CA 94016" +271399,AAA Batteries (4-pack),2,2.99,10/19/19 13:24,"558 Chestnut St, San Francisco, CA 94016" +271400,27in FHD Monitor,1,149.99,10/02/19 14:28,"57 Walnut St, San Francisco, CA 94016" +271401,Apple Airpods Headphones,1,150,10/03/19 17:52,"941 Elm St, Seattle, WA 98101" +271402,USB-C Charging Cable,1,11.95,10/04/19 19:58,"322 11th St, New York City, NY 10001" +271403,Macbook Pro Laptop,1,1700,10/02/19 15:59,"42 Spruce St, San Francisco, CA 94016" +271404,Apple Airpods Headphones,1,150,10/25/19 16:02,"946 Meadow St, San Francisco, CA 94016" +271405,27in FHD Monitor,1,149.99,10/07/19 14:55,"740 Adams St, Dallas, TX 75001" +271406,Apple Airpods Headphones,1,150,10/08/19 18:54,"321 Adams St, San Francisco, CA 94016" +271407,iPhone,1,700,10/01/19 09:53,"400 Cherry St, Los Angeles, CA 90001" +271408,AAA Batteries (4-pack),1,2.99,10/06/19 12:16,"808 Church St, New York City, NY 10001" +271409,Vareebadd Phone,1,400,10/31/19 09:49,"411 Hickory St, Dallas, TX 75001" +271409,27in FHD Monitor,1,149.99,10/31/19 09:49,"411 Hickory St, Dallas, TX 75001" +271410,Lightning Charging Cable,1,14.95,10/08/19 20:07,"200 Maple St, San Francisco, CA 94016" +271411,Lightning Charging Cable,1,14.95,10/20/19 08:38,"412 Lincoln St, Seattle, WA 98101" +271412,Wired Headphones,1,11.99,10/27/19 18:27,"883 Hill St, San Francisco, CA 94016" +271413,Wired Headphones,1,11.99,10/28/19 18:08,"119 10th St, New York City, NY 10001" +271414,Lightning Charging Cable,1,14.95,10/28/19 14:13,"413 10th St, San Francisco, CA 94016" +271415,AAA Batteries (4-pack),1,2.99,10/08/19 15:42,"606 Cedar St, San Francisco, CA 94016" +271416,Wired Headphones,1,11.99,10/04/19 12:09,"343 West St, Seattle, WA 98101" +271417,Apple Airpods Headphones,1,150,10/04/19 18:11,"523 West St, New York City, NY 10001" +271418,USB-C Charging Cable,1,11.95,10/31/19 20:26,"885 9th St, New York City, NY 10001" +271419,34in Ultrawide Monitor,1,379.99,10/09/19 07:41,"448 Hickory St, Seattle, WA 98101" +271420,USB-C Charging Cable,1,11.95,10/29/19 19:53,"60 Jackson St, Atlanta, GA 30301" +271421,USB-C Charging Cable,1,11.95,10/18/19 18:24,"259 Cedar St, Boston, MA 02215" +271422,Apple Airpods Headphones,1,150,10/27/19 16:25,"311 Maple St, New York City, NY 10001" +271423,27in 4K Gaming Monitor,1,389.99,10/21/19 05:11,"595 Jackson St, Los Angeles, CA 90001" +271424,AA Batteries (4-pack),1,3.84,10/08/19 19:47,"966 South St, New York City, NY 10001" +271425,Lightning Charging Cable,1,14.95,10/14/19 08:56,"445 Wilson St, Los Angeles, CA 90001" +271426,Lightning Charging Cable,1,14.95,10/06/19 19:51,"371 Center St, San Francisco, CA 94016" +271427,USB-C Charging Cable,1,11.95,10/07/19 13:59,"488 12th St, Atlanta, GA 30301" +271428,AAA Batteries (4-pack),1,2.99,10/16/19 20:59,"410 10th St, Atlanta, GA 30301" +271429,Vareebadd Phone,1,400,10/25/19 18:50,"755 Ridge St, Boston, MA 02215" +271430,Wired Headphones,1,11.99,10/22/19 23:53,"659 Lakeview St, Portland, OR 97035" +271431,AA Batteries (4-pack),1,3.84,10/03/19 17:07,"880 Cherry St, San Francisco, CA 94016" +271432,Lightning Charging Cable,1,14.95,10/05/19 10:15,"878 Lake St, Boston, MA 02215" +271433,Bose SoundSport Headphones,1,99.99,10/27/19 13:16,"388 Walnut St, San Francisco, CA 94016" +271434,USB-C Charging Cable,2,11.95,10/12/19 12:04,"859 Jefferson St, Dallas, TX 75001" +271435,Wired Headphones,1,11.99,10/23/19 09:15,"241 Sunset St, Los Angeles, CA 90001" +271436,AAA Batteries (4-pack),2,2.99,10/25/19 12:33,"999 Meadow St, New York City, NY 10001" +271437,AA Batteries (4-pack),1,3.84,10/09/19 19:19,"699 Lincoln St, Boston, MA 02215" +271438,Wired Headphones,1,11.99,10/14/19 19:24,"888 Cedar St, San Francisco, CA 94016" +271439,Lightning Charging Cable,1,14.95,10/21/19 18:17,"595 Jefferson St, San Francisco, CA 94016" +271440,Apple Airpods Headphones,1,150,10/25/19 18:56,"532 River St, San Francisco, CA 94016" +271441,AA Batteries (4-pack),1,3.84,10/13/19 12:26,"316 Chestnut St, Portland, OR 97035" +271442,USB-C Charging Cable,1,11.95,10/15/19 11:21,"771 14th St, New York City, NY 10001" +271443,Lightning Charging Cable,1,14.95,10/06/19 12:05,"959 Sunset St, Boston, MA 02215" +271444,USB-C Charging Cable,1,11.95,10/03/19 12:30,"332 Pine St, Boston, MA 02215" +271445,Lightning Charging Cable,1,14.95,10/24/19 15:59,"396 5th St, Austin, TX 73301" +271446,Lightning Charging Cable,1,14.95,10/04/19 12:59,"953 Jefferson St, San Francisco, CA 94016" +271447,ThinkPad Laptop,1,999.99,10/02/19 16:07,"471 Chestnut St, San Francisco, CA 94016" +,,,,, +271448,27in 4K Gaming Monitor,1,389.99,10/28/19 22:32,"500 Maple St, Seattle, WA 98101" +271449,34in Ultrawide Monitor,1,379.99,10/31/19 19:06,"842 Walnut St, San Francisco, CA 94016" +271450,34in Ultrawide Monitor,1,379.99,10/11/19 05:18,"831 Walnut St, Boston, MA 02215" +271451,34in Ultrawide Monitor,1,379.99,10/09/19 22:30,"842 Spruce St, Los Angeles, CA 90001" +271452,Lightning Charging Cable,1,14.95,10/03/19 09:05,"97 Dogwood St, Atlanta, GA 30301" +271453,Wired Headphones,1,11.99,10/11/19 18:30,"703 Spruce St, Portland, OR 97035" +271454,Bose SoundSport Headphones,1,99.99,10/05/19 21:42,"290 Lincoln St, New York City, NY 10001" +271455,iPhone,1,700,10/25/19 16:36,"504 Ridge St, Boston, MA 02215" +271456,AAA Batteries (4-pack),1,2.99,10/12/19 12:57,"229 Spruce St, San Francisco, CA 94016" +271457,Wired Headphones,1,11.99,10/24/19 12:28,"551 Cedar St, Boston, MA 02215" +271458,AAA Batteries (4-pack),3,2.99,10/03/19 19:58,"702 Spruce St, Los Angeles, CA 90001" +271459,34in Ultrawide Monitor,1,379.99,10/27/19 16:59,"811 12th St, Boston, MA 02215" +271460,Wired Headphones,1,11.99,10/18/19 12:26,"887 Jefferson St, New York City, NY 10001" +271461,Apple Airpods Headphones,1,150,10/13/19 11:56,"23 Meadow St, New York City, NY 10001" +271462,Bose SoundSport Headphones,1,99.99,10/27/19 12:59,"605 6th St, New York City, NY 10001" +271463,27in FHD Monitor,1,149.99,10/17/19 18:19,"249 Cherry St, Austin, TX 73301" +271464,ThinkPad Laptop,1,999.99,10/30/19 23:58,"626 West St, San Francisco, CA 94016" +271465,Lightning Charging Cable,1,14.95,10/12/19 11:12,"41 Ridge St, Seattle, WA 98101" +271466,AA Batteries (4-pack),2,3.84,10/21/19 13:22,"757 Chestnut St, Seattle, WA 98101" +271467,Lightning Charging Cable,1,14.95,10/01/19 14:38,"144 Park St, Dallas, TX 75001" +271468,Apple Airpods Headphones,1,150,10/12/19 10:25,"161 5th St, Dallas, TX 75001" +271469,Apple Airpods Headphones,1,150,10/05/19 13:49,"776 Willow St, Seattle, WA 98101" +271470,Wired Headphones,1,11.99,10/18/19 15:11,"498 11th St, Seattle, WA 98101" +271471,USB-C Charging Cable,1,11.95,10/31/19 21:14,"966 Center St, Dallas, TX 75001" +271472,Lightning Charging Cable,2,14.95,10/07/19 19:24,"270 11th St, Dallas, TX 75001" +271473,Lightning Charging Cable,1,14.95,10/01/19 14:08,"927 13th St, Atlanta, GA 30301" +271474,27in FHD Monitor,1,149.99,10/22/19 15:53,"963 Ridge St, San Francisco, CA 94016" +271475,34in Ultrawide Monitor,1,379.99,10/09/19 18:11,"157 1st St, Los Angeles, CA 90001" +271476,Vareebadd Phone,1,400,10/30/19 19:16,"982 Dogwood St, Boston, MA 02215" +271477,Apple Airpods Headphones,1,150,10/25/19 23:12,"320 Forest St, New York City, NY 10001" +271478,Wired Headphones,1,11.99,10/24/19 21:57,"516 Center St, San Francisco, CA 94016" +271479,20in Monitor,1,109.99,10/18/19 16:30,"62 North St, Boston, MA 02215" +271480,27in 4K Gaming Monitor,1,389.99,10/13/19 15:41,"910 Maple St, New York City, NY 10001" +271481,20in Monitor,1,109.99,10/02/19 04:24,"923 West St, Boston, MA 02215" +271482,AA Batteries (4-pack),1,3.84,10/22/19 13:46,"959 Lincoln St, New York City, NY 10001" +271483,Apple Airpods Headphones,1,150,10/25/19 10:48,"866 Jefferson St, San Francisco, CA 94016" +271484,LG Washing Machine,1,600.0,10/03/19 19:17,"615 11th St, Los Angeles, CA 90001" +271485,Lightning Charging Cable,1,14.95,10/23/19 10:31,"656 Walnut St, Atlanta, GA 30301" +271486,USB-C Charging Cable,1,11.95,10/02/19 03:12,"626 4th St, Austin, TX 73301" +271487,Wired Headphones,1,11.99,10/20/19 16:30,"285 9th St, San Francisco, CA 94016" +271488,Bose SoundSport Headphones,1,99.99,10/05/19 23:05,"84 Park St, San Francisco, CA 94016" +271489,27in FHD Monitor,1,149.99,10/30/19 20:51,"289 11th St, Austin, TX 73301" +271490,AAA Batteries (4-pack),1,2.99,10/29/19 21:07,"879 Main St, San Francisco, CA 94016" +271491,AA Batteries (4-pack),3,3.84,10/03/19 14:25,"448 Adams St, San Francisco, CA 94016" +271492,Wired Headphones,1,11.99,10/28/19 11:38,"313 Highland St, Boston, MA 02215" +271493,Bose SoundSport Headphones,1,99.99,10/14/19 12:22,"582 River St, New York City, NY 10001" +271494,iPhone,1,700,10/27/19 01:57,"286 Washington St, Dallas, TX 75001" +271495,USB-C Charging Cable,1,11.95,10/05/19 07:29,"969 Lakeview St, San Francisco, CA 94016" +271496,Google Phone,1,600,10/06/19 09:22,"463 South St, Dallas, TX 75001" +271497,AA Batteries (4-pack),2,3.84,10/28/19 23:10,"486 7th St, San Francisco, CA 94016" +271498,Apple Airpods Headphones,1,150,10/03/19 12:08,"8 Adams St, Boston, MA 02215" +271499,Flatscreen TV,1,300,10/07/19 17:27,"342 Madison St, New York City, NY 10001" +271500,Vareebadd Phone,1,400,10/19/19 16:12,"953 Sunset St, Boston, MA 02215" +271501,34in Ultrawide Monitor,1,379.99,10/11/19 20:03,"864 Johnson St, Austin, TX 73301" +271502,Wired Headphones,1,11.99,10/03/19 17:20,"703 10th St, San Francisco, CA 94016" +271503,Apple Airpods Headphones,1,150,10/24/19 23:06,"187 Washington St, Seattle, WA 98101" +271504,Apple Airpods Headphones,1,150,10/04/19 14:20,"251 Cherry St, Dallas, TX 75001" +271505,AA Batteries (4-pack),1,3.84,10/02/19 10:31,"315 Wilson St, Boston, MA 02215" +271506,LG Washing Machine,1,600.0,10/05/19 09:38,"532 Willow St, Boston, MA 02215" +271507,Lightning Charging Cable,1,14.95,10/11/19 01:29,"232 Ridge St, Atlanta, GA 30301" +271508,Bose SoundSport Headphones,1,99.99,10/14/19 19:33,"685 Pine St, Dallas, TX 75001" +271508,ThinkPad Laptop,1,999.99,10/14/19 19:33,"685 Pine St, Dallas, TX 75001" +271509,Google Phone,1,600,10/28/19 14:29,"214 Cedar St, Los Angeles, CA 90001" +271510,AA Batteries (4-pack),1,3.84,10/19/19 10:38,"210 2nd St, San Francisco, CA 94016" +271511,Lightning Charging Cable,1,14.95,10/25/19 23:32,"897 Lincoln St, Los Angeles, CA 90001" +271512,Bose SoundSport Headphones,1,99.99,10/20/19 15:22,"993 Sunset St, Los Angeles, CA 90001" +271513,Bose SoundSport Headphones,1,99.99,10/09/19 21:56,"853 Center St, Portland, OR 97035" +271514,Lightning Charging Cable,1,14.95,10/22/19 22:12,"325 Adams St, Los Angeles, CA 90001" +271515,AAA Batteries (4-pack),1,2.99,10/24/19 12:36,"672 4th St, Los Angeles, CA 90001" +271516,USB-C Charging Cable,1,11.95,10/31/19 09:18,"204 Ridge St, San Francisco, CA 94016" +271517,Flatscreen TV,1,300,10/07/19 17:07,"964 Church St, San Francisco, CA 94016" +271518,AAA Batteries (4-pack),1,2.99,10/09/19 21:37,"702 Walnut St, Boston, MA 02215" +271519,34in Ultrawide Monitor,1,379.99,10/22/19 10:48,"656 Park St, Atlanta, GA 30301" +271520,USB-C Charging Cable,1,11.95,10/06/19 07:19,"705 11th St, San Francisco, CA 94016" +271521,AAA Batteries (4-pack),1,2.99,10/06/19 17:45,"630 Washington St, Dallas, TX 75001" +271522,AA Batteries (4-pack),1,3.84,10/02/19 08:51,"789 11th St, Seattle, WA 98101" +271523,Apple Airpods Headphones,1,150,10/06/19 19:19,"487 Adams St, Seattle, WA 98101" +271524,AA Batteries (4-pack),1,3.84,10/04/19 19:09,"22 10th St, Los Angeles, CA 90001" +271525,27in FHD Monitor,1,149.99,10/14/19 21:19,"181 Cedar St, Atlanta, GA 30301" +271526,USB-C Charging Cable,1,11.95,10/20/19 10:08,"713 2nd St, Dallas, TX 75001" +271527,Apple Airpods Headphones,1,150,10/20/19 15:36,"603 Cherry St, San Francisco, CA 94016" +271528,USB-C Charging Cable,2,11.95,10/18/19 18:33,"851 Jefferson St, Los Angeles, CA 90001" +271529,Lightning Charging Cable,1,14.95,10/04/19 13:46,"827 Hickory St, Boston, MA 02215" +271530,AAA Batteries (4-pack),1,2.99,10/14/19 20:48,"546 11th St, Boston, MA 02215" +271531,27in 4K Gaming Monitor,1,389.99,10/19/19 11:27,"574 4th St, New York City, NY 10001" +271532,Google Phone,1,600,10/09/19 12:31,"239 1st St, Atlanta, GA 30301" +271532,Bose SoundSport Headphones,1,99.99,10/09/19 12:31,"239 1st St, Atlanta, GA 30301" +271533,AA Batteries (4-pack),1,3.84,10/23/19 11:31,"190 Madison St, San Francisco, CA 94016" +271534,Lightning Charging Cable,1,14.95,10/07/19 17:54,"882 Maple St, San Francisco, CA 94016" +271535,27in FHD Monitor,1,149.99,10/20/19 22:58,"96 9th St, Portland, OR 97035" +271536,USB-C Charging Cable,1,11.95,10/11/19 16:59,"804 Forest St, New York City, NY 10001" +271537,AAA Batteries (4-pack),1,2.99,10/14/19 17:10,"541 Spruce St, Seattle, WA 98101" +271538,Apple Airpods Headphones,1,150,10/28/19 06:03,"605 5th St, Austin, TX 73301" +271539,Lightning Charging Cable,1,14.95,10/17/19 12:20,"191 Maple St, Los Angeles, CA 90001" +271540,Macbook Pro Laptop,1,1700,10/20/19 13:37,"340 Park St, Atlanta, GA 30301" +271541,AA Batteries (4-pack),1,3.84,10/10/19 18:48,"177 1st St, Boston, MA 02215" +271542,27in 4K Gaming Monitor,1,389.99,10/16/19 12:39,"62 Walnut St, Atlanta, GA 30301" +271543,AA Batteries (4-pack),2,3.84,10/03/19 08:00,"402 Walnut St, Boston, MA 02215" +271544,USB-C Charging Cable,1,11.95,10/21/19 21:25,"912 South St, Boston, MA 02215" +271545,Lightning Charging Cable,1,14.95,10/23/19 21:26,"55 4th St, Austin, TX 73301" +271546,Bose SoundSport Headphones,1,99.99,10/23/19 21:37,"986 Park St, New York City, NY 10001" +271547,USB-C Charging Cable,1,11.95,10/09/19 21:09,"218 South St, New York City, NY 10001" +271548,Apple Airpods Headphones,1,150,10/27/19 08:09,"654 Elm St, Seattle, WA 98101" +271549,Google Phone,1,600,10/18/19 15:39,"714 10th St, San Francisco, CA 94016" +271550,Lightning Charging Cable,1,14.95,10/27/19 10:53,"896 Cedar St, New York City, NY 10001" +271551,Apple Airpods Headphones,1,150,10/11/19 11:24,"134 Meadow St, Los Angeles, CA 90001" +271552,Lightning Charging Cable,1,14.95,10/29/19 18:19,"30 10th St, Los Angeles, CA 90001" +271553,Lightning Charging Cable,1,14.95,10/17/19 20:47,"623 4th St, Portland, OR 97035" +271554,Wired Headphones,2,11.99,10/02/19 20:24,"268 6th St, Seattle, WA 98101" +271554,Wired Headphones,1,11.99,10/02/19 20:24,"268 6th St, Seattle, WA 98101" +271555,AAA Batteries (4-pack),1,2.99,10/23/19 08:31,"205 Church St, Dallas, TX 75001" +271556,AA Batteries (4-pack),2,3.84,10/30/19 16:30,"554 7th St, Boston, MA 02215" +271557,Lightning Charging Cable,2,14.95,10/16/19 19:51,"659 2nd St, Atlanta, GA 30301" +271558,Apple Airpods Headphones,1,150,10/29/19 20:20,"854 8th St, San Francisco, CA 94016" +271559,27in 4K Gaming Monitor,1,389.99,10/05/19 12:20,"154 Sunset St, San Francisco, CA 94016" +271560,AAA Batteries (4-pack),1,2.99,10/22/19 17:27,"775 Johnson St, Boston, MA 02215" +271561,Wired Headphones,2,11.99,10/03/19 21:11,"2 Lake St, New York City, NY 10001" +271562,AA Batteries (4-pack),1,3.84,10/20/19 08:56,"117 Cedar St, San Francisco, CA 94016" +271563,AA Batteries (4-pack),2,3.84,10/30/19 12:36,"3 Lakeview St, San Francisco, CA 94016" +271564,iPhone,2,700,10/27/19 08:57,"736 Hill St, San Francisco, CA 94016" +271565,USB-C Charging Cable,2,11.95,10/19/19 19:36,"999 7th St, New York City, NY 10001" +271566,Lightning Charging Cable,1,14.95,10/19/19 21:40,"377 6th St, Austin, TX 73301" +271567,AAA Batteries (4-pack),2,2.99,10/18/19 21:42,"528 Forest St, Dallas, TX 75001" +271568,Wired Headphones,1,11.99,10/02/19 10:09,"298 Chestnut St, Seattle, WA 98101" +271569,iPhone,1,700,10/09/19 10:21,"841 Adams St, Austin, TX 73301" +271570,Lightning Charging Cable,1,14.95,10/22/19 16:27,"816 Willow St, Seattle, WA 98101" +271571,iPhone,1,700,10/27/19 22:02,"539 Cedar St, New York City, NY 10001" +271571,Wired Headphones,1,11.99,10/27/19 22:02,"539 Cedar St, New York City, NY 10001" +271572,USB-C Charging Cable,1,11.95,10/07/19 12:09,"304 Hill St, New York City, NY 10001" +271573,USB-C Charging Cable,1,11.95,10/05/19 08:38,"847 Sunset St, Boston, MA 02215" +271574,Bose SoundSport Headphones,1,99.99,10/12/19 18:24,"269 Sunset St, Seattle, WA 98101" +271575,Bose SoundSport Headphones,1,99.99,10/15/19 23:27,"487 5th St, Atlanta, GA 30301" +271576,27in FHD Monitor,1,149.99,10/04/19 08:02,"276 Chestnut St, Dallas, TX 75001" +271577,AA Batteries (4-pack),1,3.84,10/30/19 20:47,"173 8th St, Seattle, WA 98101" +271578,USB-C Charging Cable,1,11.95,10/24/19 17:27,"171 Maple St, San Francisco, CA 94016" +271579,AA Batteries (4-pack),2,3.84,10/08/19 21:16,"747 Pine St, San Francisco, CA 94016" +271580,USB-C Charging Cable,1,11.95,10/30/19 21:34,"748 Main St, Seattle, WA 98101" +271581,27in FHD Monitor,1,149.99,10/16/19 14:32,"319 Main St, Seattle, WA 98101" +271582,27in 4K Gaming Monitor,1,389.99,10/05/19 20:14,"852 Lincoln St, New York City, NY 10001" +271583,Bose SoundSport Headphones,1,99.99,10/12/19 21:25,"245 Park St, Los Angeles, CA 90001" +271584,USB-C Charging Cable,1,11.95,10/24/19 23:17,"778 12th St, Seattle, WA 98101" +271585,Wired Headphones,1,11.99,10/12/19 17:03,"572 Jefferson St, Atlanta, GA 30301" +271586,AA Batteries (4-pack),1,3.84,10/18/19 08:14,"976 Ridge St, Austin, TX 73301" +271587,AA Batteries (4-pack),2,3.84,10/15/19 12:33,"372 North St, San Francisco, CA 94016" +271588,Wired Headphones,1,11.99,10/23/19 16:36,"614 River St, Boston, MA 02215" +271589,Vareebadd Phone,1,400,10/04/19 15:27,"517 Pine St, San Francisco, CA 94016" +271590,Apple Airpods Headphones,1,150,10/21/19 22:49,"53 Jackson St, New York City, NY 10001" +271591,20in Monitor,1,109.99,10/05/19 20:03,"292 5th St, Seattle, WA 98101" +271592,iPhone,1,700,10/20/19 15:02,"59 Willow St, Los Angeles, CA 90001" +271592,Apple Airpods Headphones,1,150,10/20/19 15:02,"59 Willow St, Los Angeles, CA 90001" +271593,AAA Batteries (4-pack),1,2.99,10/24/19 18:30,"825 Adams St, Seattle, WA 98101" +271594,USB-C Charging Cable,1,11.95,10/15/19 12:01,"321 5th St, Boston, MA 02215" +271595,AAA Batteries (4-pack),2,2.99,10/29/19 00:39,"825 Hill St, New York City, NY 10001" +271596,Apple Airpods Headphones,1,150,10/15/19 15:19,"910 Park St, Portland, OR 97035" +271597,AA Batteries (4-pack),1,3.84,10/12/19 12:35,"554 River St, Austin, TX 73301" +271598,iPhone,1,700,10/21/19 19:15,"755 Dogwood St, San Francisco, CA 94016" +271599,Lightning Charging Cable,1,14.95,10/13/19 12:26,"687 8th St, San Francisco, CA 94016" +271600,27in 4K Gaming Monitor,1,389.99,10/03/19 23:06,"915 Chestnut St, San Francisco, CA 94016" +,,,,, +271601,iPhone,1,700,10/28/19 22:18,"482 Meadow St, Los Angeles, CA 90001" +271601,Lightning Charging Cable,1,14.95,10/28/19 22:18,"482 Meadow St, Los Angeles, CA 90001" +271601,Wired Headphones,1,11.99,10/28/19 22:18,"482 Meadow St, Los Angeles, CA 90001" +271602,Wired Headphones,1,11.99,10/29/19 12:46,"282 Jackson St, Portland, OR 97035" +271603,iPhone,1,700,10/23/19 12:57,"176 9th St, San Francisco, CA 94016" +271603,Lightning Charging Cable,2,14.95,10/23/19 12:57,"176 9th St, San Francisco, CA 94016" +271604,USB-C Charging Cable,1,11.95,10/25/19 18:15,"915 10th St, Los Angeles, CA 90001" +271605,Bose SoundSport Headphones,1,99.99,10/11/19 15:04,"616 Forest St, Dallas, TX 75001" +271606,27in 4K Gaming Monitor,1,389.99,10/27/19 18:33,"759 12th St, Los Angeles, CA 90001" +271607,USB-C Charging Cable,1,11.95,10/15/19 15:01,"257 9th St, Dallas, TX 75001" +271608,USB-C Charging Cable,1,11.95,10/31/19 21:25,"804 West St, San Francisco, CA 94016" +271609,iPhone,1,700,10/06/19 08:49,"912 7th St, San Francisco, CA 94016" +271610,USB-C Charging Cable,1,11.95,10/02/19 11:13,"866 Hickory St, Boston, MA 02215" +271611,Lightning Charging Cable,1,14.95,10/14/19 10:46,"399 7th St, New York City, NY 10001" +271612,27in FHD Monitor,1,149.99,10/14/19 12:35,"879 Elm St, Dallas, TX 75001" +271613,AAA Batteries (4-pack),3,2.99,10/01/19 19:19,"717 Walnut St, Portland, OR 97035" +271614,Wired Headphones,1,11.99,10/28/19 16:35,"363 Lakeview St, Dallas, TX 75001" +,,,,, +271615,AA Batteries (4-pack),1,3.84,10/23/19 13:10,"293 9th St, Los Angeles, CA 90001" +271616,AAA Batteries (4-pack),1,2.99,10/18/19 13:50,"412 Johnson St, San Francisco, CA 94016" +271617,AAA Batteries (4-pack),1,2.99,10/08/19 13:27,"252 River St, Boston, MA 02215" +271618,USB-C Charging Cable,1,11.95,10/08/19 09:24,"808 Highland St, Austin, TX 73301" +271619,Bose SoundSport Headphones,1,99.99,10/14/19 19:15,"963 West St, Dallas, TX 75001" +271620,34in Ultrawide Monitor,1,379.99,10/24/19 19:31,"750 11th St, Austin, TX 73301" +271621,AAA Batteries (4-pack),1,2.99,10/14/19 19:49,"357 Dogwood St, New York City, NY 10001" +271622,Macbook Pro Laptop,1,1700,10/02/19 18:26,"576 Cherry St, San Francisco, CA 94016" +271623,AA Batteries (4-pack),2,3.84,10/13/19 19:27,"727 Highland St, Austin, TX 73301" +271624,Apple Airpods Headphones,1,150,10/22/19 16:46,"287 Lakeview St, Dallas, TX 75001" +271625,Wired Headphones,1,11.99,10/12/19 11:18,"124 River St, San Francisco, CA 94016" +271626,Google Phone,1,600,10/16/19 21:13,"184 Johnson St, Boston, MA 02215" +271626,USB-C Charging Cable,1,11.95,10/16/19 21:13,"184 Johnson St, Boston, MA 02215" +271626,Wired Headphones,1,11.99,10/16/19 21:13,"184 Johnson St, Boston, MA 02215" +271627,27in FHD Monitor,1,149.99,10/21/19 13:25,"351 Park St, Boston, MA 02215" +271628,Apple Airpods Headphones,1,150,10/23/19 13:29,"516 Madison St, Los Angeles, CA 90001" +271629,20in Monitor,1,109.99,10/29/19 12:09,"950 Sunset St, San Francisco, CA 94016" +271630,AA Batteries (4-pack),1,3.84,10/22/19 17:13,"831 8th St, Dallas, TX 75001" +271631,Lightning Charging Cable,1,14.95,10/13/19 00:07,"111 Walnut St, San Francisco, CA 94016" +271632,Macbook Pro Laptop,1,1700,10/29/19 10:54,"376 5th St, San Francisco, CA 94016" +271633,USB-C Charging Cable,1,11.95,10/14/19 17:16,"598 Washington St, New York City, NY 10001" +271634,Lightning Charging Cable,1,14.95,10/03/19 22:58,"623 Cherry St, San Francisco, CA 94016" +271635,AAA Batteries (4-pack),1,2.99,10/13/19 17:01,"226 Walnut St, Dallas, TX 75001" +271636,Apple Airpods Headphones,1,150,10/26/19 20:55,"244 Johnson St, Boston, MA 02215" +271637,27in 4K Gaming Monitor,1,389.99,10/15/19 15:14,"200 Elm St, Portland, OR 97035" +271637,Apple Airpods Headphones,1,150,10/15/19 15:14,"200 Elm St, Portland, OR 97035" +271638,AAA Batteries (4-pack),1,2.99,10/25/19 10:50,"375 Main St, Los Angeles, CA 90001" +271639,Lightning Charging Cable,1,14.95,10/11/19 23:46,"763 Highland St, Seattle, WA 98101" +271640,Apple Airpods Headphones,1,150,10/11/19 13:18,"216 Jackson St, Dallas, TX 75001" +271641,Wired Headphones,1,11.99,10/07/19 17:01,"295 9th St, Portland, OR 97035" +271642,AA Batteries (4-pack),1,3.84,10/30/19 13:51,"361 Sunset St, San Francisco, CA 94016" +271643,Flatscreen TV,1,300,10/05/19 18:43,"745 6th St, San Francisco, CA 94016" +271644,Bose SoundSport Headphones,1,99.99,10/10/19 17:36,"985 2nd St, Portland, OR 97035" +271645,AA Batteries (4-pack),4,3.84,10/07/19 12:42,"949 Jackson St, Boston, MA 02215" +271646,USB-C Charging Cable,1,11.95,10/21/19 10:30,"231 Jefferson St, San Francisco, CA 94016" +271647,USB-C Charging Cable,1,11.95,10/15/19 23:48,"543 Adams St, Seattle, WA 98101" +271648,Wired Headphones,1,11.99,10/25/19 07:50,"437 Jefferson St, New York City, NY 10001" +271649,27in FHD Monitor,1,149.99,10/05/19 20:37,"315 Hill St, Atlanta, GA 30301" +271650,Lightning Charging Cable,1,14.95,10/09/19 00:36,"265 Adams St, Dallas, TX 75001" +271651,Lightning Charging Cable,4,14.95,11/01/19 00:23,"697 Elm St, San Francisco, CA 94016" +271652,AAA Batteries (4-pack),1,2.99,10/16/19 19:44,"493 Hill St, Atlanta, GA 30301" +271653,iPhone,1,700,10/18/19 20:05,"81 Jefferson St, Seattle, WA 98101" +271653,Wired Headphones,1,11.99,10/18/19 20:05,"81 Jefferson St, Seattle, WA 98101" +271654,Wired Headphones,1,11.99,10/01/19 09:24,"710 Madison St, San Francisco, CA 94016" +271655,Bose SoundSport Headphones,1,99.99,10/08/19 16:29,"489 Sunset St, San Francisco, CA 94016" +271656,Macbook Pro Laptop,1,1700,10/03/19 18:52,"815 Washington St, Boston, MA 02215" +271657,20in Monitor,1,109.99,10/30/19 02:22,"525 Wilson St, Atlanta, GA 30301" +271658,Lightning Charging Cable,1,14.95,10/18/19 20:47,"305 Jackson St, Seattle, WA 98101" +271659,Apple Airpods Headphones,1,150,10/20/19 19:18,"678 North St, Seattle, WA 98101" +271660,Lightning Charging Cable,1,14.95,10/17/19 08:41,"878 Cherry St, Dallas, TX 75001" +271661,AA Batteries (4-pack),1,3.84,10/31/19 09:35,"569 8th St, Seattle, WA 98101" +271662,iPhone,1,700,10/29/19 11:13,"247 Center St, Portland, OR 97035" +271663,Wired Headphones,1,11.99,10/02/19 09:46,"790 Park St, Dallas, TX 75001" +271664,AAA Batteries (4-pack),1,2.99,10/24/19 18:35,"170 Washington St, Portland, OR 97035" +271665,Macbook Pro Laptop,1,1700,10/16/19 17:10,"799 Lake St, San Francisco, CA 94016" +271666,Bose SoundSport Headphones,1,99.99,10/29/19 07:33,"279 Hill St, Seattle, WA 98101" +271667,iPhone,1,700,10/29/19 13:17,"617 Main St, Seattle, WA 98101" +271668,Macbook Pro Laptop,1,1700,10/09/19 11:56,"320 5th St, Dallas, TX 75001" +271669,Lightning Charging Cable,1,14.95,10/28/19 08:54,"364 14th St, San Francisco, CA 94016" +271670,USB-C Charging Cable,1,11.95,10/26/19 21:08,"987 7th St, San Francisco, CA 94016" +271671,Bose SoundSport Headphones,2,99.99,10/26/19 23:09,"348 1st St, New York City, NY 10001" +271672,USB-C Charging Cable,1,11.95,10/08/19 18:41,"209 Hickory St, Los Angeles, CA 90001" +271673,ThinkPad Laptop,1,999.99,10/07/19 05:16,"596 Ridge St, New York City, NY 10001" +271674,AAA Batteries (4-pack),1,2.99,10/10/19 18:06,"689 Madison St, New York City, NY 10001" +271675,Apple Airpods Headphones,1,150,10/22/19 15:16,"498 5th St, Austin, TX 73301" +271676,27in FHD Monitor,1,149.99,10/18/19 23:19,"501 Hickory St, San Francisco, CA 94016" +271677,Lightning Charging Cable,1,14.95,10/14/19 11:21,"278 Wilson St, Los Angeles, CA 90001" +271678,Apple Airpods Headphones,1,150,10/05/19 10:07,"943 Wilson St, New York City, NY 10001" +271679,iPhone,1,700,10/30/19 16:08,"241 Ridge St, Dallas, TX 75001" +271680,Lightning Charging Cable,1,14.95,10/20/19 22:22,"152 Lake St, San Francisco, CA 94016" +271681,27in FHD Monitor,2,149.99,10/16/19 12:10,"587 Meadow St, Dallas, TX 75001" +271682,AAA Batteries (4-pack),1,2.99,10/20/19 18:16,"302 5th St, Austin, TX 73301" +271683,Bose SoundSport Headphones,1,99.99,10/27/19 19:13,"788 Wilson St, San Francisco, CA 94016" +271684,Macbook Pro Laptop,1,1700,10/16/19 16:16,"303 8th St, Los Angeles, CA 90001" +271685,27in 4K Gaming Monitor,1,389.99,10/27/19 12:33,"32 Maple St, Los Angeles, CA 90001" +271686,Lightning Charging Cable,1,14.95,10/02/19 10:20,"231 Adams St, San Francisco, CA 94016" +271687,Bose SoundSport Headphones,1,99.99,10/29/19 18:16,"260 Wilson St, Boston, MA 02215" +271688,Apple Airpods Headphones,1,150,10/12/19 17:38,"627 Sunset St, San Francisco, CA 94016" +271689,AA Batteries (4-pack),1,3.84,10/04/19 12:28,"477 Johnson St, San Francisco, CA 94016" +271690,27in 4K Gaming Monitor,1,389.99,10/27/19 07:30,"705 Church St, Los Angeles, CA 90001" +271691,27in FHD Monitor,1,149.99,10/30/19 15:25,"748 Jefferson St, Dallas, TX 75001" +271692,27in 4K Gaming Monitor,1,389.99,10/04/19 10:43,"484 12th St, New York City, NY 10001" +271693,20in Monitor,1,109.99,10/15/19 20:21,"406 Washington St, Seattle, WA 98101" +271694,USB-C Charging Cable,1,11.95,10/30/19 19:19,"666 Highland St, Seattle, WA 98101" +271695,USB-C Charging Cable,1,11.95,10/04/19 12:47,"581 Hickory St, Portland, OR 97035" +271696,USB-C Charging Cable,1,11.95,10/22/19 14:33,"521 10th St, Dallas, TX 75001" +271697,AAA Batteries (4-pack),1,2.99,10/20/19 17:27,"325 Park St, San Francisco, CA 94016" +271698,iPhone,1,700,10/24/19 18:01,"557 North St, San Francisco, CA 94016" +271699,AA Batteries (4-pack),1,3.84,10/27/19 15:00,"410 11th St, San Francisco, CA 94016" +271700,AA Batteries (4-pack),1,3.84,10/17/19 17:49,"219 Center St, Dallas, TX 75001" +271701,Lightning Charging Cable,1,14.95,10/07/19 17:30,"702 10th St, Seattle, WA 98101" +271702,AA Batteries (4-pack),1,3.84,10/23/19 15:31,"677 Spruce St, Los Angeles, CA 90001" +271703,Wired Headphones,1,11.99,10/18/19 15:16,"839 9th St, New York City, NY 10001" +271704,LG Dryer,1,600.0,10/12/19 15:45,"23 Jackson St, San Francisco, CA 94016" +271705,27in 4K Gaming Monitor,1,389.99,10/20/19 14:53,"945 Lakeview St, Los Angeles, CA 90001" +271706,Bose SoundSport Headphones,1,99.99,10/30/19 22:24,"607 Walnut St, Los Angeles, CA 90001" +271707,20in Monitor,1,109.99,10/26/19 21:52,"936 Meadow St, Dallas, TX 75001" +271708,AAA Batteries (4-pack),4,2.99,10/22/19 19:55,"509 Hickory St, Atlanta, GA 30301" +271709,27in FHD Monitor,1,149.99,10/28/19 14:28,"647 Johnson St, Boston, MA 02215" +271710,Wired Headphones,1,11.99,10/26/19 10:15,"505 Lincoln St, San Francisco, CA 94016" +271711,Bose SoundSport Headphones,1,99.99,10/09/19 12:20,"70 2nd St, Dallas, TX 75001" +271712,USB-C Charging Cable,1,11.95,10/17/19 10:54,"124 Washington St, Boston, MA 02215" +271713,Google Phone,1,600,10/22/19 17:55,"888 10th St, Portland, OR 97035" +271714,Lightning Charging Cable,1,14.95,10/16/19 16:29,"82 South St, Seattle, WA 98101" +271715,USB-C Charging Cable,1,11.95,10/02/19 08:26,"593 Spruce St, New York City, NY 10001" +271716,USB-C Charging Cable,1,11.95,10/31/19 21:32,"232 Johnson St, San Francisco, CA 94016" +271717,Lightning Charging Cable,1,14.95,10/19/19 14:13,"398 6th St, San Francisco, CA 94016" +271718,Apple Airpods Headphones,1,150,10/20/19 14:47,"587 Church St, Los Angeles, CA 90001" +271719,AA Batteries (4-pack),1,3.84,10/07/19 21:43,"786 10th St, New York City, NY 10001" +271720,Macbook Pro Laptop,1,1700,10/08/19 19:54,"403 Jefferson St, San Francisco, CA 94016" +271721,iPhone,1,700,10/05/19 11:14,"375 13th St, Seattle, WA 98101" +271722,Lightning Charging Cable,1,14.95,10/21/19 11:52,"181 Cedar St, Dallas, TX 75001" +271723,USB-C Charging Cable,1,11.95,10/09/19 21:15,"194 Ridge St, San Francisco, CA 94016" +271724,Bose SoundSport Headphones,1,99.99,10/26/19 17:28,"527 2nd St, Austin, TX 73301" +271725,Lightning Charging Cable,1,14.95,10/13/19 15:13,"769 12th St, New York City, NY 10001" +271726,USB-C Charging Cable,1,11.95,10/21/19 15:14,"419 North St, Dallas, TX 75001" +271727,USB-C Charging Cable,1,11.95,10/20/19 07:26,"539 2nd St, Dallas, TX 75001" +271728,Bose SoundSport Headphones,1,99.99,10/22/19 21:33,"29 Dogwood St, Seattle, WA 98101" +271729,27in 4K Gaming Monitor,1,389.99,10/03/19 19:39,"250 Lake St, San Francisco, CA 94016" +271730,27in 4K Gaming Monitor,1,389.99,10/11/19 22:13,"40 Dogwood St, New York City, NY 10001" +271731,Macbook Pro Laptop,1,1700,10/06/19 20:07,"94 West St, Atlanta, GA 30301" +271732,USB-C Charging Cable,1,11.95,10/18/19 16:48,"55 Jackson St, Los Angeles, CA 90001" +271733,iPhone,1,700,10/20/19 17:55,"791 Cherry St, San Francisco, CA 94016" +271733,Lightning Charging Cable,1,14.95,10/20/19 17:55,"791 Cherry St, San Francisco, CA 94016" +271734,27in 4K Gaming Monitor,1,389.99,10/05/19 08:01,"626 South St, Los Angeles, CA 90001" +271735,Apple Airpods Headphones,1,150,10/23/19 08:49,"862 South St, Boston, MA 02215" +271736,34in Ultrawide Monitor,1,379.99,10/07/19 06:34,"788 Cedar St, Los Angeles, CA 90001" +271737,AAA Batteries (4-pack),1,2.99,10/04/19 21:12,"802 North St, Atlanta, GA 30301" +271738,AAA Batteries (4-pack),2,2.99,10/11/19 21:31,"952 6th St, Portland, ME 04101" +271739,Wired Headphones,1,11.99,10/18/19 11:32,"972 Hickory St, Los Angeles, CA 90001" +271739,Bose SoundSport Headphones,1,99.99,10/18/19 11:32,"972 Hickory St, Los Angeles, CA 90001" +271740,Wired Headphones,1,11.99,10/10/19 22:25,"528 12th St, Portland, ME 04101" +271741,AAA Batteries (4-pack),3,2.99,10/24/19 14:03,"375 Main St, Boston, MA 02215" +271742,AAA Batteries (4-pack),4,2.99,10/16/19 17:24,"113 Spruce St, Los Angeles, CA 90001" +271743,Wired Headphones,1,11.99,10/15/19 19:59,"100 Chestnut St, Los Angeles, CA 90001" +271744,AA Batteries (4-pack),1,3.84,10/19/19 08:05,"635 Adams St, Dallas, TX 75001" +271744,USB-C Charging Cable,1,11.95,10/19/19 08:05,"635 Adams St, Dallas, TX 75001" +271745,AAA Batteries (4-pack),2,2.99,10/15/19 12:53,"718 8th St, New York City, NY 10001" +271746,AA Batteries (4-pack),1,3.84,10/18/19 15:02,"232 11th St, San Francisco, CA 94016" +271747,Flatscreen TV,1,300,10/30/19 13:06,"580 Cherry St, San Francisco, CA 94016" +271747,Apple Airpods Headphones,1,150,10/30/19 13:06,"580 Cherry St, San Francisco, CA 94016" +271748,Apple Airpods Headphones,1,150,10/05/19 10:21,"571 Forest St, San Francisco, CA 94016" +271749,Apple Airpods Headphones,1,150,10/18/19 16:11,"573 Forest St, Portland, OR 97035" +271750,Macbook Pro Laptop,1,1700,10/11/19 11:08,"347 West St, San Francisco, CA 94016" +271751,AAA Batteries (4-pack),1,2.99,10/06/19 11:57,"582 12th St, San Francisco, CA 94016" +271752,27in FHD Monitor,1,149.99,10/20/19 18:00,"322 Lake St, Dallas, TX 75001" +271753,20in Monitor,1,109.99,10/24/19 17:51,"69 Jefferson St, Seattle, WA 98101" +271754,USB-C Charging Cable,1,11.95,10/08/19 16:58,"72 Hickory St, Dallas, TX 75001" +271755,USB-C Charging Cable,1,11.95,10/17/19 05:19,"918 6th St, San Francisco, CA 94016" +271756,Lightning Charging Cable,1,14.95,10/06/19 11:49,"820 Pine St, San Francisco, CA 94016" +271757,Wired Headphones,1,11.99,10/27/19 12:02,"223 Pine St, Portland, OR 97035" +271758,USB-C Charging Cable,2,11.95,10/05/19 12:00,"579 10th St, San Francisco, CA 94016" +271759,AAA Batteries (4-pack),1,2.99,10/09/19 14:47,"707 Main St, New York City, NY 10001" +271760,Apple Airpods Headphones,1,150,10/08/19 21:38,"569 Hill St, Seattle, WA 98101" +271761,AA Batteries (4-pack),1,3.84,10/28/19 13:55,"292 Highland St, Los Angeles, CA 90001" +271762,Macbook Pro Laptop,1,1700,10/18/19 22:16,"689 West St, San Francisco, CA 94016" +271763,AA Batteries (4-pack),2,3.84,10/28/19 10:55,"199 Cherry St, Los Angeles, CA 90001" +271764,Apple Airpods Headphones,1,150,10/10/19 21:38,"581 Pine St, San Francisco, CA 94016" +271765,AAA Batteries (4-pack),2,2.99,10/14/19 20:15,"830 Park St, Atlanta, GA 30301" +271766,Google Phone,1,600,10/20/19 19:01,"649 9th St, Atlanta, GA 30301" +271767,Lightning Charging Cable,1,14.95,10/09/19 02:43,"362 Lakeview St, Los Angeles, CA 90001" +271768,Wired Headphones,1,11.99,10/11/19 19:48,"714 6th St, San Francisco, CA 94016" +271769,iPhone,1,700,10/05/19 01:16,"269 Jackson St, Seattle, WA 98101" +271770,AAA Batteries (4-pack),1,2.99,10/05/19 12:06,"203 North St, Los Angeles, CA 90001" +271771,Macbook Pro Laptop,1,1700,10/24/19 20:03,"682 Church St, San Francisco, CA 94016" +271772,Google Phone,1,600,10/28/19 18:48,"259 River St, Seattle, WA 98101" +271773,Bose SoundSport Headphones,1,99.99,10/07/19 21:48,"651 14th St, Seattle, WA 98101" +271774,Google Phone,1,600,10/05/19 22:33,"253 Center St, Seattle, WA 98101" +271775,Bose SoundSport Headphones,1,99.99,10/04/19 21:02,"625 7th St, Portland, ME 04101" +271776,Google Phone,1,600,10/12/19 20:30,"730 Lake St, New York City, NY 10001" +271777,Lightning Charging Cable,1,14.95,10/28/19 23:31,"506 10th St, Portland, OR 97035" +271778,27in FHD Monitor,1,149.99,10/28/19 11:00,"911 West St, San Francisco, CA 94016" +271779,Apple Airpods Headphones,1,150,10/10/19 16:39,"366 1st St, San Francisco, CA 94016" +271780,USB-C Charging Cable,1,11.95,10/02/19 23:12,"452 Cedar St, Dallas, TX 75001" +271781,Wired Headphones,1,11.99,10/24/19 07:19,"983 Dogwood St, San Francisco, CA 94016" +271782,USB-C Charging Cable,1,11.95,10/23/19 10:32,"308 Elm St, New York City, NY 10001" +271783,27in 4K Gaming Monitor,1,389.99,10/26/19 14:19,"819 Wilson St, Portland, OR 97035" +271784,Lightning Charging Cable,1,14.95,10/21/19 12:22,"145 8th St, Austin, TX 73301" +271785,AA Batteries (4-pack),1,3.84,10/02/19 15:46,"730 8th St, Seattle, WA 98101" +271786,LG Dryer,1,600.0,10/08/19 10:51,"907 South St, Portland, OR 97035" +271787,Bose SoundSport Headphones,1,99.99,10/16/19 16:22,"137 Lake St, Seattle, WA 98101" +271788,Apple Airpods Headphones,1,150,10/13/19 14:44,"824 Walnut St, Boston, MA 02215" +271789,AAA Batteries (4-pack),1,2.99,10/01/19 23:06,"305 4th St, San Francisco, CA 94016" +271790,Apple Airpods Headphones,1,150,10/12/19 13:19,"389 South St, New York City, NY 10001" +271791,Apple Airpods Headphones,1,150,10/29/19 20:49,"43 Main St, Atlanta, GA 30301" +271792,Bose SoundSport Headphones,1,99.99,10/20/19 12:43,"792 Ridge St, San Francisco, CA 94016" +271793,USB-C Charging Cable,1,11.95,10/17/19 16:41,"231 Cherry St, San Francisco, CA 94016" +271794,Wired Headphones,1,11.99,10/07/19 17:50,"658 Wilson St, San Francisco, CA 94016" +271795,27in 4K Gaming Monitor,1,389.99,10/11/19 14:56,"159 Lake St, Boston, MA 02215" +271796,AAA Batteries (4-pack),1,2.99,10/03/19 13:13,"521 Johnson St, Atlanta, GA 30301" +271797,AA Batteries (4-pack),1,3.84,10/05/19 12:56,"8 Church St, Seattle, WA 98101" +271798,27in 4K Gaming Monitor,1,389.99,10/10/19 17:59,"597 8th St, Atlanta, GA 30301" +271799,AAA Batteries (4-pack),1,2.99,10/19/19 13:52,"855 Hickory St, Dallas, TX 75001" +271800,AAA Batteries (4-pack),1,2.99,10/17/19 19:16,"134 Elm St, Los Angeles, CA 90001" +271801,Apple Airpods Headphones,1,150,10/22/19 15:02,"840 West St, Dallas, TX 75001" +271802,Lightning Charging Cable,1,14.95,10/17/19 21:53,"943 Washington St, Dallas, TX 75001" +271803,AAA Batteries (4-pack),4,2.99,10/22/19 20:37,"340 Sunset St, Atlanta, GA 30301" +271804,Wired Headphones,1,11.99,10/08/19 21:33,"278 4th St, Los Angeles, CA 90001" +271805,Wired Headphones,1,11.99,10/09/19 12:33,"760 12th St, San Francisco, CA 94016" +271806,27in FHD Monitor,1,149.99,10/09/19 22:42,"668 Madison St, Atlanta, GA 30301" +271807,AAA Batteries (4-pack),1,2.99,10/13/19 19:11,"628 Chestnut St, Seattle, WA 98101" +271808,Wired Headphones,1,11.99,10/27/19 16:08,"682 Lake St, Seattle, WA 98101" +271809,Google Phone,1,600,10/13/19 11:49,"178 South St, Los Angeles, CA 90001" +271810,USB-C Charging Cable,1,11.95,10/19/19 00:26,"764 10th St, San Francisco, CA 94016" +271811,AA Batteries (4-pack),1,3.84,10/19/19 17:53,"359 Adams St, Los Angeles, CA 90001" +271812,USB-C Charging Cable,1,11.95,10/22/19 21:23,"948 Main St, New York City, NY 10001" +271813,USB-C Charging Cable,1,11.95,10/27/19 22:12,"865 Willow St, Los Angeles, CA 90001" +271814,Bose SoundSport Headphones,1,99.99,10/27/19 08:28,"518 Cedar St, San Francisco, CA 94016" +271815,iPhone,1,700,10/29/19 11:49,"690 Center St, New York City, NY 10001" +271816,AA Batteries (4-pack),1,3.84,10/19/19 14:11,"39 Meadow St, Atlanta, GA 30301" +271816,Lightning Charging Cable,1,14.95,10/19/19 14:11,"39 Meadow St, Atlanta, GA 30301" +271817,Apple Airpods Headphones,1,150,10/26/19 23:42,"692 Lincoln St, Portland, OR 97035" +271818,AAA Batteries (4-pack),1,2.99,10/16/19 08:42,"117 Hill St, Portland, OR 97035" +271819,Wired Headphones,1,11.99,10/26/19 13:10,"478 Dogwood St, Boston, MA 02215" +271820,Lightning Charging Cable,1,14.95,10/27/19 21:31,"770 Maple St, Atlanta, GA 30301" +271821,27in 4K Gaming Monitor,1,389.99,10/02/19 15:32,"566 South St, Portland, OR 97035" +271822,Wired Headphones,1,11.99,10/02/19 23:32,"701 Dogwood St, San Francisco, CA 94016" +271823,Wired Headphones,1,11.99,10/08/19 21:18,"927 South St, San Francisco, CA 94016" +271824,AAA Batteries (4-pack),1,2.99,10/19/19 01:09,"220 Chestnut St, San Francisco, CA 94016" +271825,ThinkPad Laptop,1,999.99,10/28/19 11:27,"993 Johnson St, Austin, TX 73301" +271826,Apple Airpods Headphones,1,150,10/09/19 05:46,"422 4th St, New York City, NY 10001" +271827,Wired Headphones,1,11.99,10/31/19 14:06,"706 Spruce St, New York City, NY 10001" +271828,27in FHD Monitor,1,149.99,10/25/19 18:15,"367 River St, Boston, MA 02215" +271829,Bose SoundSport Headphones,1,99.99,10/23/19 21:41,"92 Walnut St, Portland, OR 97035" +271830,Bose SoundSport Headphones,1,99.99,10/28/19 09:46,"871 Lakeview St, Seattle, WA 98101" +271831,Lightning Charging Cable,1,14.95,10/03/19 19:22,"618 Madison St, Seattle, WA 98101" +271832,USB-C Charging Cable,1,11.95,10/01/19 12:54,"20 9th St, San Francisco, CA 94016" +271833,USB-C Charging Cable,1,11.95,10/29/19 20:31,"603 10th St, San Francisco, CA 94016" +271834,Apple Airpods Headphones,1,150,10/08/19 21:55,"193 Johnson St, Portland, OR 97035" +271835,iPhone,1,700,10/19/19 22:30,"97 Johnson St, Austin, TX 73301" +271835,Wired Headphones,1,11.99,10/19/19 22:30,"97 Johnson St, Austin, TX 73301" +271836,USB-C Charging Cable,1,11.95,10/29/19 12:52,"213 Hickory St, Portland, ME 04101" +271837,Wired Headphones,1,11.99,10/23/19 19:30,"457 14th St, San Francisco, CA 94016" +271837,Wired Headphones,1,11.99,10/23/19 19:30,"457 14th St, San Francisco, CA 94016" +271838,USB-C Charging Cable,1,11.95,10/31/19 19:13,"232 Church St, Atlanta, GA 30301" +271839,AAA Batteries (4-pack),3,2.99,10/23/19 09:36,"571 Johnson St, Boston, MA 02215" +271840,Lightning Charging Cable,1,14.95,10/23/19 16:58,"235 Maple St, San Francisco, CA 94016" +271841,Wired Headphones,1,11.99,10/12/19 15:45,"391 Willow St, New York City, NY 10001" +271842,Lightning Charging Cable,1,14.95,10/07/19 15:45,"465 River St, Portland, OR 97035" +271843,Flatscreen TV,1,300,10/04/19 08:07,"882 Jefferson St, San Francisco, CA 94016" +271844,Lightning Charging Cable,1,14.95,10/25/19 02:19,"874 Jackson St, New York City, NY 10001" +271845,AAA Batteries (4-pack),3,2.99,10/06/19 11:29,"519 10th St, San Francisco, CA 94016" +271846,Wired Headphones,1,11.99,10/31/19 20:48,"633 Washington St, San Francisco, CA 94016" +271847,Apple Airpods Headphones,1,150,10/27/19 23:39,"609 6th St, Seattle, WA 98101" +271848,Wired Headphones,1,11.99,10/18/19 00:41,"644 Center St, Dallas, TX 75001" +271849,Wired Headphones,1,11.99,10/11/19 21:43,"322 Main St, Portland, OR 97035" +271850,iPhone,1,700,10/28/19 16:13,"98 Forest St, Los Angeles, CA 90001" +271850,Lightning Charging Cable,1,14.95,10/28/19 16:13,"98 Forest St, Los Angeles, CA 90001" +271850,Apple Airpods Headphones,1,150,10/28/19 16:13,"98 Forest St, Los Angeles, CA 90001" +271851,iPhone,1,700,10/18/19 13:22,"609 Jefferson St, San Francisco, CA 94016" +271851,Lightning Charging Cable,1,14.95,10/18/19 13:22,"609 Jefferson St, San Francisco, CA 94016" +271852,27in 4K Gaming Monitor,1,389.99,10/31/19 23:41,"837 Lake St, Los Angeles, CA 90001" +271853,USB-C Charging Cable,1,11.95,10/04/19 12:10,"49 Hill St, Austin, TX 73301" +271854,Flatscreen TV,1,300,10/03/19 13:06,"446 Main St, Seattle, WA 98101" +271855,Wired Headphones,1,11.99,10/09/19 17:41,"885 14th St, New York City, NY 10001" +271856,ThinkPad Laptop,1,999.99,10/23/19 21:50,"242 Spruce St, Portland, OR 97035" +271857,iPhone,1,700,10/04/19 06:10,"379 Ridge St, Atlanta, GA 30301" +271857,Wired Headphones,1,11.99,10/04/19 06:10,"379 Ridge St, Atlanta, GA 30301" +271858,AA Batteries (4-pack),1,3.84,10/05/19 19:15,"328 Lakeview St, New York City, NY 10001" +271859,AAA Batteries (4-pack),1,2.99,10/09/19 16:10,"365 Ridge St, Portland, OR 97035" +271860,ThinkPad Laptop,1,999.99,10/31/19 19:53,"526 West St, San Francisco, CA 94016" +271861,AA Batteries (4-pack),2,3.84,10/22/19 21:40,"576 Spruce St, Boston, MA 02215" +271862,Bose SoundSport Headphones,1,99.99,10/31/19 18:13,"95 Park St, Portland, OR 97035" +271863,Wired Headphones,1,11.99,10/23/19 22:31,"774 11th St, Los Angeles, CA 90001" +271864,27in FHD Monitor,1,149.99,10/14/19 10:01,"224 Lake St, Portland, OR 97035" +271865,Vareebadd Phone,1,400,10/24/19 20:29,"483 Cedar St, Atlanta, GA 30301" +271865,Wired Headphones,1,11.99,10/24/19 20:29,"483 Cedar St, Atlanta, GA 30301" +271866,Lightning Charging Cable,1,14.95,10/19/19 09:34,"223 Chestnut St, New York City, NY 10001" +271867,USB-C Charging Cable,1,11.95,10/12/19 09:54,"703 North St, New York City, NY 10001" +271868,AA Batteries (4-pack),2,3.84,10/18/19 16:19,"705 Chestnut St, New York City, NY 10001" +271869,ThinkPad Laptop,1,999.99,10/16/19 11:46,"741 13th St, Boston, MA 02215" +271870,Bose SoundSport Headphones,1,99.99,10/10/19 18:19,"443 1st St, New York City, NY 10001" +271871,Flatscreen TV,1,300,10/04/19 23:40,"204 Walnut St, Atlanta, GA 30301" +271872,Apple Airpods Headphones,1,150,10/14/19 07:53,"955 Chestnut St, San Francisco, CA 94016" +271873,AA Batteries (4-pack),1,3.84,10/25/19 20:20,"350 Lake St, New York City, NY 10001" +271874,Google Phone,1,600,10/28/19 17:12,"338 14th St, Seattle, WA 98101" +271875,AA Batteries (4-pack),1,3.84,10/26/19 09:45,"28 South St, Los Angeles, CA 90001" +271876,Lightning Charging Cable,1,14.95,10/07/19 11:31,"435 River St, Los Angeles, CA 90001" +271877,iPhone,1,700,10/14/19 20:10,"977 Hickory St, San Francisco, CA 94016" +271878,Lightning Charging Cable,1,14.95,10/19/19 10:56,"461 West St, Seattle, WA 98101" +271879,34in Ultrawide Monitor,1,379.99,10/12/19 11:15,"959 Hickory St, Seattle, WA 98101" +271880,Wired Headphones,2,11.99,10/04/19 21:27,"209 Wilson St, Portland, OR 97035" +271881,USB-C Charging Cable,1,11.95,10/25/19 14:06,"35 Ridge St, San Francisco, CA 94016" +271882,Apple Airpods Headphones,1,150,10/12/19 09:03,"667 Lakeview St, San Francisco, CA 94016" +271883,Bose SoundSport Headphones,1,99.99,10/07/19 10:36,"614 Cherry St, Boston, MA 02215" +271884,Apple Airpods Headphones,1,150,10/01/19 20:07,"478 1st St, Austin, TX 73301" +271885,Lightning Charging Cable,1,14.95,10/26/19 16:28,"299 13th St, Dallas, TX 75001" +271886,Lightning Charging Cable,2,14.95,10/24/19 09:59,"772 Highland St, Los Angeles, CA 90001" +271887,Bose SoundSport Headphones,1,99.99,10/19/19 14:39,"995 2nd St, New York City, NY 10001" +271888,34in Ultrawide Monitor,1,379.99,10/26/19 18:30,"439 5th St, Austin, TX 73301" +271889,Apple Airpods Headphones,1,150,10/21/19 19:55,"466 6th St, Los Angeles, CA 90001" +271890,USB-C Charging Cable,1,11.95,10/31/19 15:43,"657 10th St, San Francisco, CA 94016" +271891,AA Batteries (4-pack),1,3.84,10/13/19 16:33,"21 Pine St, San Francisco, CA 94016" +271892,Flatscreen TV,1,300,10/10/19 19:12,"798 Jefferson St, New York City, NY 10001" +271893,ThinkPad Laptop,1,999.99,10/06/19 21:15,"824 Sunset St, San Francisco, CA 94016" +271894,Wired Headphones,1,11.99,10/18/19 19:13,"720 6th St, Boston, MA 02215" +271895,Wired Headphones,1,11.99,10/30/19 13:00,"337 Dogwood St, Dallas, TX 75001" +271896,Apple Airpods Headphones,1,150,10/28/19 09:45,"113 Lakeview St, San Francisco, CA 94016" +271897,AAA Batteries (4-pack),2,2.99,10/16/19 15:29,"89 Main St, Austin, TX 73301" +271898,Wired Headphones,1,11.99,10/24/19 20:13,"749 Willow St, New York City, NY 10001" +271899,Wired Headphones,1,11.99,10/02/19 09:01,"513 Spruce St, San Francisco, CA 94016" +271900,iPhone,1,700,10/28/19 20:42,"361 10th St, Seattle, WA 98101" +271901,AA Batteries (4-pack),1,3.84,10/10/19 17:17,"72 River St, New York City, NY 10001" +271902,Apple Airpods Headphones,1,150,10/20/19 11:09,"593 River St, Dallas, TX 75001" +271903,AAA Batteries (4-pack),1,2.99,10/12/19 21:40,"775 South St, San Francisco, CA 94016" +271904,AAA Batteries (4-pack),2,2.99,10/03/19 06:06,"601 Elm St, San Francisco, CA 94016" +271905,Macbook Pro Laptop,1,1700,10/25/19 07:44,"295 Cherry St, Los Angeles, CA 90001" +271906,Apple Airpods Headphones,1,150,10/06/19 13:01,"691 Hickory St, Los Angeles, CA 90001" +271907,AA Batteries (4-pack),3,3.84,10/23/19 16:49,"1 Lakeview St, San Francisco, CA 94016" +271908,Wired Headphones,1,11.99,10/05/19 12:19,"578 Cedar St, Dallas, TX 75001" +271909,AAA Batteries (4-pack),1,2.99,10/28/19 10:10,"228 Highland St, New York City, NY 10001" +271910,Apple Airpods Headphones,2,150,10/11/19 10:15,"695 4th St, Los Angeles, CA 90001" +271911,AA Batteries (4-pack),1,3.84,10/27/19 10:04,"442 Hill St, San Francisco, CA 94016" +271912,AAA Batteries (4-pack),1,2.99,10/30/19 11:52,"366 Hickory St, San Francisco, CA 94016" +271913,Lightning Charging Cable,1,14.95,10/03/19 10:50,"828 Maple St, Boston, MA 02215" +271914,AAA Batteries (4-pack),1,2.99,10/25/19 17:34,"867 Sunset St, San Francisco, CA 94016" +271915,Apple Airpods Headphones,1,150,10/26/19 13:11,"302 Park St, San Francisco, CA 94016" +271916,Lightning Charging Cable,1,14.95,10/08/19 11:37,"382 West St, San Francisco, CA 94016" +271917,Bose SoundSport Headphones,1,99.99,10/04/19 10:34,"420 13th St, New York City, NY 10001" +271918,AAA Batteries (4-pack),1,2.99,10/16/19 16:35,"526 12th St, Los Angeles, CA 90001" +271919,AA Batteries (4-pack),1,3.84,10/29/19 11:14,"449 Meadow St, Dallas, TX 75001" +271920,34in Ultrawide Monitor,1,379.99,10/05/19 03:46,"392 Maple St, Austin, TX 73301" +271921,Apple Airpods Headphones,1,150,10/24/19 08:17,"578 Maple St, San Francisco, CA 94016" +,,,,, +271922,LG Dryer,1,600.0,10/08/19 23:33,"802 Lincoln St, New York City, NY 10001" +271923,27in 4K Gaming Monitor,1,389.99,10/09/19 12:31,"869 Center St, Seattle, WA 98101" +271924,Wired Headphones,1,11.99,10/03/19 09:43,"309 Walnut St, Atlanta, GA 30301" +271925,Bose SoundSport Headphones,1,99.99,10/09/19 12:33,"692 Hill St, Portland, OR 97035" +271926,USB-C Charging Cable,1,11.95,10/04/19 21:26,"493 Elm St, Los Angeles, CA 90001" +271927,USB-C Charging Cable,2,11.95,10/04/19 08:56,"287 Park St, San Francisco, CA 94016" +271928,Macbook Pro Laptop,1,1700,10/07/19 20:35,"5 Maple St, Los Angeles, CA 90001" +271929,Flatscreen TV,1,300,10/02/19 12:34,"131 Lincoln St, Portland, OR 97035" +271930,USB-C Charging Cable,1,11.95,10/08/19 13:41,"577 Hill St, New York City, NY 10001" +271931,Lightning Charging Cable,1,14.95,10/07/19 20:09,"471 Cedar St, San Francisco, CA 94016" +271932,USB-C Charging Cable,1,11.95,10/29/19 23:17,"199 2nd St, San Francisco, CA 94016" +271933,27in 4K Gaming Monitor,1,389.99,10/22/19 01:37,"525 14th St, Atlanta, GA 30301" +271934,34in Ultrawide Monitor,1,379.99,10/29/19 14:26,"57 Adams St, San Francisco, CA 94016" +271935,AAA Batteries (4-pack),1,2.99,10/10/19 01:19,"173 Sunset St, Boston, MA 02215" +271936,Bose SoundSport Headphones,1,99.99,10/08/19 08:18,"867 Highland St, Boston, MA 02215" +271937,Wired Headphones,1,11.99,10/10/19 12:45,"984 4th St, San Francisco, CA 94016" +271938,AAA Batteries (4-pack),1,2.99,10/17/19 11:21,"828 Cherry St, Los Angeles, CA 90001" +271939,Apple Airpods Headphones,1,150,10/08/19 23:23,"480 Park St, San Francisco, CA 94016" +271940,AAA Batteries (4-pack),1,2.99,10/14/19 14:17,"667 2nd St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +271941,iPhone,1,700,10/25/19 19:43,"126 Spruce St, Boston, MA 02215" +271941,Lightning Charging Cable,1,14.95,10/25/19 19:43,"126 Spruce St, Boston, MA 02215" +271942,USB-C Charging Cable,1,11.95,10/27/19 17:40,"953 Meadow St, Portland, OR 97035" +271943,AAA Batteries (4-pack),1,2.99,10/01/19 19:58,"155 Cedar St, Seattle, WA 98101" +271944,Wired Headphones,1,11.99,10/31/19 08:57,"891 11th St, New York City, NY 10001" +271945,Wired Headphones,1,11.99,10/24/19 22:25,"124 12th St, New York City, NY 10001" +271946,Flatscreen TV,1,300,10/03/19 12:34,"594 Forest St, Seattle, WA 98101" +271947,AAA Batteries (4-pack),4,2.99,10/06/19 12:39,"641 Pine St, Boston, MA 02215" +271948,Lightning Charging Cable,1,14.95,10/17/19 10:37,"470 Center St, Portland, OR 97035" +271949,USB-C Charging Cable,2,11.95,10/04/19 22:18,"571 Lincoln St, Los Angeles, CA 90001" +271950,AAA Batteries (4-pack),2,2.99,10/13/19 18:30,"467 Dogwood St, Seattle, WA 98101" +271951,Bose SoundSport Headphones,1,99.99,10/24/19 05:52,"789 2nd St, Seattle, WA 98101" +271952,Lightning Charging Cable,1,14.95,10/23/19 12:18,"329 Washington St, Boston, MA 02215" +271953,USB-C Charging Cable,1,11.95,10/24/19 14:23,"451 Park St, San Francisco, CA 94016" +271954,Wired Headphones,1,11.99,10/01/19 13:57,"461 5th St, New York City, NY 10001" +271955,Google Phone,1,600,10/05/19 18:20,"730 10th St, Los Angeles, CA 90001" +271955,USB-C Charging Cable,1,11.95,10/05/19 18:20,"730 10th St, Los Angeles, CA 90001" +271956,AAA Batteries (4-pack),1,2.99,10/28/19 10:27,"835 1st St, Los Angeles, CA 90001" +271957,Apple Airpods Headphones,1,150,10/09/19 11:31,"472 Jackson St, Los Angeles, CA 90001" +271958,27in FHD Monitor,1,149.99,10/19/19 14:08,"356 11th St, Atlanta, GA 30301" +271959,LG Dryer,1,600.0,10/20/19 17:23,"273 Wilson St, Atlanta, GA 30301" +271960,USB-C Charging Cable,1,11.95,10/28/19 10:47,"667 Ridge St, Los Angeles, CA 90001" +271961,Apple Airpods Headphones,1,150,10/12/19 08:37,"260 Pine St, San Francisco, CA 94016" +271962,Lightning Charging Cable,1,14.95,10/06/19 08:36,"293 Elm St, Austin, TX 73301" +271963,Apple Airpods Headphones,1,150,10/22/19 15:17,"726 Hickory St, San Francisco, CA 94016" +271964,Lightning Charging Cable,1,14.95,10/26/19 06:58,"242 2nd St, Austin, TX 73301" +271965,AAA Batteries (4-pack),1,2.99,10/11/19 10:11,"454 Spruce St, New York City, NY 10001" +271966,AAA Batteries (4-pack),1,2.99,10/09/19 15:54,"704 Spruce St, New York City, NY 10001" +271967,Bose SoundSport Headphones,1,99.99,10/14/19 09:00,"254 Jackson St, Austin, TX 73301" +271968,Lightning Charging Cable,1,14.95,10/22/19 14:07,"742 Hickory St, Dallas, TX 75001" +271969,AAA Batteries (4-pack),1,2.99,10/13/19 21:27,"480 North St, Los Angeles, CA 90001" +271970,Bose SoundSport Headphones,1,99.99,10/09/19 22:00,"340 Jackson St, New York City, NY 10001" +271971,Apple Airpods Headphones,1,150,10/12/19 11:55,"840 Jackson St, San Francisco, CA 94016" +271972,20in Monitor,1,109.99,10/06/19 10:52,"885 7th St, Los Angeles, CA 90001" +271973,AAA Batteries (4-pack),1,2.99,10/20/19 10:51,"686 Hill St, San Francisco, CA 94016" +271974,USB-C Charging Cable,1,11.95,10/29/19 16:35,"413 Pine St, Los Angeles, CA 90001" +271975,AA Batteries (4-pack),1,3.84,10/28/19 12:52,"767 Madison St, Dallas, TX 75001" +271976,Lightning Charging Cable,1,14.95,10/22/19 16:52,"592 Center St, San Francisco, CA 94016" +271977,20in Monitor,1,109.99,10/20/19 01:09,"804 Elm St, Seattle, WA 98101" +271978,AA Batteries (4-pack),1,3.84,10/22/19 23:24,"322 Sunset St, San Francisco, CA 94016" +271979,Apple Airpods Headphones,1,150,10/15/19 15:44,"390 Lakeview St, Los Angeles, CA 90001" +271980,27in 4K Gaming Monitor,1,389.99,10/24/19 11:02,"567 Wilson St, San Francisco, CA 94016" +271981,ThinkPad Laptop,1,999.99,10/09/19 13:28,"809 River St, San Francisco, CA 94016" +271982,USB-C Charging Cable,1,11.95,10/09/19 13:14,"624 10th St, Boston, MA 02215" +271983,Bose SoundSport Headphones,1,99.99,10/06/19 19:29,"750 Wilson St, Dallas, TX 75001" +271984,Google Phone,1,600,10/14/19 12:12,"840 Main St, San Francisco, CA 94016" +271985,Flatscreen TV,1,300,10/05/19 06:32,"428 Meadow St, Seattle, WA 98101" +271986,AAA Batteries (4-pack),3,2.99,10/16/19 13:33,"215 2nd St, New York City, NY 10001" +271987,Apple Airpods Headphones,1,150,10/24/19 12:59,"790 2nd St, San Francisco, CA 94016" +271988,27in FHD Monitor,1,149.99,10/11/19 17:04,"227 Park St, New York City, NY 10001" +271989,AAA Batteries (4-pack),1,2.99,10/09/19 16:08,"755 Chestnut St, Seattle, WA 98101" +271990,AAA Batteries (4-pack),1,2.99,10/05/19 11:57,"619 6th St, Los Angeles, CA 90001" +271991,Apple Airpods Headphones,1,150,10/08/19 00:42,"587 Highland St, Portland, ME 04101" +271992,Macbook Pro Laptop,1,1700,10/12/19 12:33,"260 4th St, San Francisco, CA 94016" +271993,Lightning Charging Cable,1,14.95,10/12/19 13:28,"917 Lake St, Los Angeles, CA 90001" +271994,27in FHD Monitor,1,149.99,10/19/19 11:01,"850 14th St, New York City, NY 10001" +271994,LG Dryer,1,600.0,10/19/19 11:01,"850 14th St, New York City, NY 10001" +271995,AAA Batteries (4-pack),1,2.99,10/17/19 20:12,"438 Wilson St, Austin, TX 73301" +271996,USB-C Charging Cable,1,11.95,10/22/19 01:13,"506 Cedar St, Seattle, WA 98101" +271997,Bose SoundSport Headphones,1,99.99,10/11/19 01:59,"852 Forest St, San Francisco, CA 94016" +271998,Wired Headphones,1,11.99,10/15/19 09:53,"588 Chestnut St, San Francisco, CA 94016" +271999,Google Phone,1,600,10/27/19 21:34,"278 Lake St, Austin, TX 73301" +271999,USB-C Charging Cable,1,11.95,10/27/19 21:34,"278 Lake St, Austin, TX 73301" +272000,Lightning Charging Cable,1,14.95,10/07/19 12:05,"908 Washington St, Atlanta, GA 30301" +272001,Bose SoundSport Headphones,1,99.99,10/03/19 12:36,"800 Cedar St, San Francisco, CA 94016" +272002,Lightning Charging Cable,1,14.95,10/07/19 00:22,"196 Lakeview St, Seattle, WA 98101" +272003,Wired Headphones,1,11.99,10/04/19 19:30,"734 Adams St, New York City, NY 10001" +272004,Bose SoundSport Headphones,1,99.99,10/31/19 21:38,"518 Sunset St, Portland, OR 97035" +272005,Apple Airpods Headphones,1,150,10/19/19 13:09,"81 5th St, Seattle, WA 98101" +272006,USB-C Charging Cable,1,11.95,10/27/19 20:38,"237 Ridge St, Austin, TX 73301" +272007,AA Batteries (4-pack),1,3.84,10/05/19 18:49,"543 Lincoln St, Atlanta, GA 30301" +272008,Wired Headphones,1,11.99,10/01/19 14:24,"191 Hickory St, Boston, MA 02215" +272009,20in Monitor,1,109.99,10/13/19 20:19,"184 North St, Atlanta, GA 30301" +272010,Google Phone,1,600,10/31/19 18:23,"110 12th St, New York City, NY 10001" +272011,Apple Airpods Headphones,1,150,10/20/19 16:57,"331 Hickory St, Seattle, WA 98101" +272012,Lightning Charging Cable,1,14.95,10/27/19 16:48,"866 Highland St, San Francisco, CA 94016" +272013,34in Ultrawide Monitor,1,379.99,10/21/19 22:50,"938 Dogwood St, Boston, MA 02215" +272014,AA Batteries (4-pack),5,3.84,10/28/19 08:58,"380 12th St, Dallas, TX 75001" +272015,USB-C Charging Cable,1,11.95,10/30/19 01:37,"175 Highland St, Seattle, WA 98101" +272016,Google Phone,1,600,10/14/19 16:23,"697 6th St, New York City, NY 10001" +272017,Apple Airpods Headphones,1,150,10/10/19 13:25,"731 Meadow St, Los Angeles, CA 90001" +272018,27in FHD Monitor,1,149.99,10/26/19 03:47,"266 9th St, San Francisco, CA 94016" +272019,Bose SoundSport Headphones,1,99.99,10/16/19 23:39,"937 Lakeview St, Seattle, WA 98101" +272020,AAA Batteries (4-pack),2,2.99,10/19/19 21:37,"952 Lakeview St, Seattle, WA 98101" +272021,27in FHD Monitor,1,149.99,10/16/19 00:45,"413 West St, Los Angeles, CA 90001" +272022,Bose SoundSport Headphones,1,99.99,10/06/19 09:38,"332 Sunset St, New York City, NY 10001" +272023,AAA Batteries (4-pack),1,2.99,10/06/19 15:56,"574 Center St, Seattle, WA 98101" +272024,Vareebadd Phone,1,400,10/27/19 13:40,"430 8th St, San Francisco, CA 94016" +272025,Macbook Pro Laptop,1,1700,10/29/19 18:41,"397 12th St, San Francisco, CA 94016" +272026,AAA Batteries (4-pack),1,2.99,10/10/19 08:22,"251 Hill St, New York City, NY 10001" +272027,Macbook Pro Laptop,1,1700,10/18/19 22:40,"989 Lincoln St, Dallas, TX 75001" +272028,Google Phone,1,600,10/09/19 18:05,"115 Johnson St, San Francisco, CA 94016" +272029,USB-C Charging Cable,1,11.95,10/31/19 10:33,"246 Forest St, New York City, NY 10001" +272030,AA Batteries (4-pack),1,3.84,10/21/19 12:21,"69 Forest St, Atlanta, GA 30301" +272031,Wired Headphones,1,11.99,10/01/19 22:30,"102 Washington St, New York City, NY 10001" +272032,AA Batteries (4-pack),1,3.84,10/03/19 20:16,"923 7th St, Los Angeles, CA 90001" +272033,27in FHD Monitor,1,149.99,10/08/19 19:27,"496 North St, Atlanta, GA 30301" +272034,Lightning Charging Cable,1,14.95,10/20/19 20:33,"29 Hill St, San Francisco, CA 94016" +272035,Apple Airpods Headphones,1,150,10/23/19 16:05,"293 6th St, New York City, NY 10001" +272036,AAA Batteries (4-pack),1,2.99,10/13/19 20:17,"71 2nd St, San Francisco, CA 94016" +272037,Flatscreen TV,1,300,10/22/19 15:27,"571 Park St, Seattle, WA 98101" +272038,Lightning Charging Cable,1,14.95,10/29/19 12:08,"660 2nd St, New York City, NY 10001" +272039,Flatscreen TV,1,300,10/13/19 22:08,"960 Hickory St, San Francisco, CA 94016" +272040,Vareebadd Phone,1,400,10/31/19 10:01,"221 Cherry St, Atlanta, GA 30301" +272041,Google Phone,1,600,10/28/19 12:18,"91 Hill St, San Francisco, CA 94016" +272042,AA Batteries (4-pack),1,3.84,10/18/19 16:21,"989 Highland St, Los Angeles, CA 90001" +272043,Lightning Charging Cable,1,14.95,10/15/19 19:29,"420 Cedar St, Portland, ME 04101" +272044,Lightning Charging Cable,1,14.95,10/06/19 14:31,"543 Sunset St, San Francisco, CA 94016" +272045,USB-C Charging Cable,1,11.95,10/08/19 19:44,"587 Ridge St, Seattle, WA 98101" +272046,USB-C Charging Cable,1,11.95,10/20/19 22:44,"467 Center St, San Francisco, CA 94016" +272047,AAA Batteries (4-pack),1,2.99,10/09/19 10:12,"331 Willow St, Atlanta, GA 30301" +272048,Apple Airpods Headphones,1,150,10/01/19 21:11,"530 Cherry St, Boston, MA 02215" +272049,Bose SoundSport Headphones,1,99.99,10/06/19 15:51,"870 2nd St, San Francisco, CA 94016" +272050,27in FHD Monitor,1,149.99,10/04/19 16:22,"286 1st St, San Francisco, CA 94016" +272051,Lightning Charging Cable,1,14.95,10/13/19 21:24,"598 Hickory St, San Francisco, CA 94016" +272052,Google Phone,1,600,10/05/19 19:39,"753 Pine St, San Francisco, CA 94016" +272053,27in 4K Gaming Monitor,1,389.99,10/22/19 11:25,"566 Madison St, New York City, NY 10001" +272054,20in Monitor,1,109.99,10/05/19 19:04,"228 Hickory St, San Francisco, CA 94016" +272055,Wired Headphones,1,11.99,10/01/19 16:02,"763 1st St, San Francisco, CA 94016" +272056,Apple Airpods Headphones,1,150,10/16/19 09:24,"999 9th St, New York City, NY 10001" +272057,AAA Batteries (4-pack),1,2.99,10/21/19 12:24,"548 Forest St, Los Angeles, CA 90001" +272057,Lightning Charging Cable,1,14.95,10/21/19 12:24,"548 Forest St, Los Angeles, CA 90001" +272058,20in Monitor,1,109.99,10/31/19 10:49,"616 Hickory St, New York City, NY 10001" +272059,Lightning Charging Cable,1,14.95,10/25/19 12:40,"791 4th St, Portland, OR 97035" +272060,LG Washing Machine,1,600.0,10/14/19 07:29,"661 Adams St, Portland, OR 97035" +272061,ThinkPad Laptop,1,999.99,10/10/19 11:51,"271 Park St, New York City, NY 10001" +272062,AAA Batteries (4-pack),1,2.99,10/02/19 19:00,"205 2nd St, Boston, MA 02215" +272063,Apple Airpods Headphones,1,150,10/18/19 19:09,"107 14th St, New York City, NY 10001" +272064,Bose SoundSport Headphones,1,99.99,10/05/19 13:55,"509 Ridge St, Portland, OR 97035" +272065,27in FHD Monitor,1,149.99,10/19/19 14:17,"881 Pine St, San Francisco, CA 94016" +272066,USB-C Charging Cable,1,11.95,10/27/19 16:07,"216 Forest St, Boston, MA 02215" +272067,AA Batteries (4-pack),1,3.84,10/02/19 23:39,"447 River St, Los Angeles, CA 90001" +272068,ThinkPad Laptop,1,999.99,10/16/19 19:47,"361 1st St, New York City, NY 10001" +272069,Bose SoundSport Headphones,1,99.99,10/24/19 21:58,"451 Church St, New York City, NY 10001" +272070,Wired Headphones,1,11.99,10/05/19 15:44,"265 8th St, Seattle, WA 98101" +272071,27in FHD Monitor,1,149.99,10/28/19 12:02,"639 Forest St, Boston, MA 02215" +272072,27in 4K Gaming Monitor,1,389.99,10/06/19 11:39,"107 Elm St, New York City, NY 10001" +272073,AA Batteries (4-pack),1,3.84,10/06/19 01:28,"918 Walnut St, San Francisco, CA 94016" +272074,20in Monitor,1,109.99,10/30/19 10:43,"86 Forest St, San Francisco, CA 94016" +272075,Bose SoundSport Headphones,1,99.99,10/28/19 07:23,"528 River St, Dallas, TX 75001" +272076,27in FHD Monitor,1,149.99,10/30/19 08:34,"13 8th St, Atlanta, GA 30301" +272077,34in Ultrawide Monitor,1,379.99,10/21/19 21:07,"961 South St, Los Angeles, CA 90001" +272078,Google Phone,1,600,10/14/19 04:55,"287 13th St, Portland, OR 97035" +272079,USB-C Charging Cable,1,11.95,10/17/19 14:41,"328 North St, New York City, NY 10001" +272080,Bose SoundSport Headphones,1,99.99,10/12/19 10:18,"187 Chestnut St, Boston, MA 02215" +272081,Bose SoundSport Headphones,1,99.99,10/11/19 22:11,"308 Church St, New York City, NY 10001" +272082,Lightning Charging Cable,1,14.95,10/28/19 00:10,"76 12th St, Dallas, TX 75001" +272083,USB-C Charging Cable,1,11.95,10/12/19 11:09,"853 Spruce St, Portland, OR 97035" +272084,AAA Batteries (4-pack),1,2.99,10/09/19 12:53,"889 Hickory St, Boston, MA 02215" +272085,AA Batteries (4-pack),2,3.84,10/19/19 23:43,"980 Park St, Seattle, WA 98101" +272086,AAA Batteries (4-pack),1,2.99,10/18/19 19:47,"990 Elm St, Los Angeles, CA 90001" +272087,Wired Headphones,1,11.99,10/29/19 17:49,"196 Ridge St, San Francisco, CA 94016" +272088,Bose SoundSport Headphones,1,99.99,10/08/19 10:22,"878 14th St, San Francisco, CA 94016" +272089,iPhone,1,700,10/25/19 09:32,"407 5th St, Los Angeles, CA 90001" +272090,Apple Airpods Headphones,1,150,10/25/19 10:26,"313 Walnut St, Seattle, WA 98101" +272091,Wired Headphones,1,11.99,10/20/19 16:22,"625 Walnut St, Atlanta, GA 30301" +272092,AA Batteries (4-pack),1,3.84,10/04/19 13:28,"883 Meadow St, Dallas, TX 75001" +272093,Lightning Charging Cable,1,14.95,10/23/19 05:27,"606 Hickory St, San Francisco, CA 94016" +272094,Bose SoundSport Headphones,1,99.99,10/30/19 20:33,"845 Washington St, New York City, NY 10001" +272095,Wired Headphones,1,11.99,10/31/19 13:04,"836 1st St, Seattle, WA 98101" +272096,Flatscreen TV,1,300,10/27/19 10:31,"264 Spruce St, Dallas, TX 75001" +272097,ThinkPad Laptop,1,999.99,10/25/19 10:44,"591 Lakeview St, San Francisco, CA 94016" +272098,AAA Batteries (4-pack),2,2.99,10/19/19 18:27,"927 River St, Los Angeles, CA 90001" +272099,Macbook Pro Laptop,1,1700,10/13/19 12:25,"287 North St, New York City, NY 10001" +272100,Wired Headphones,1,11.99,10/06/19 21:11,"5 Spruce St, New York City, NY 10001" +272101,Lightning Charging Cable,1,14.95,10/12/19 18:32,"438 Maple St, Dallas, TX 75001" +272102,27in 4K Gaming Monitor,1,389.99,10/21/19 16:58,"896 Wilson St, Los Angeles, CA 90001" +272103,Macbook Pro Laptop,1,1700,10/20/19 13:05,"978 4th St, New York City, NY 10001" +272104,AA Batteries (4-pack),1,3.84,10/26/19 11:00,"727 Lincoln St, Los Angeles, CA 90001" +272105,Wired Headphones,1,11.99,10/12/19 08:33,"73 Center St, Atlanta, GA 30301" +272106,Apple Airpods Headphones,1,150,10/16/19 16:32,"866 South St, Boston, MA 02215" +272107,USB-C Charging Cable,1,11.95,10/12/19 21:53,"106 Johnson St, San Francisco, CA 94016" +272108,34in Ultrawide Monitor,1,379.99,10/07/19 14:15,"860 10th St, Atlanta, GA 30301" +272109,20in Monitor,1,109.99,10/23/19 19:06,"478 9th St, New York City, NY 10001" +272110,Bose SoundSport Headphones,1,99.99,10/15/19 06:38,"921 Wilson St, Los Angeles, CA 90001" +272111,Lightning Charging Cable,1,14.95,10/21/19 12:02,"60 Highland St, New York City, NY 10001" +272112,AA Batteries (4-pack),2,3.84,10/25/19 16:07,"539 Lake St, San Francisco, CA 94016" +272113,AA Batteries (4-pack),1,3.84,10/01/19 20:28,"633 Willow St, Dallas, TX 75001" +272114,20in Monitor,1,109.99,10/05/19 19:36,"294 Cedar St, Los Angeles, CA 90001" +272115,AA Batteries (4-pack),1,3.84,10/16/19 21:28,"163 Spruce St, Atlanta, GA 30301" +272116,USB-C Charging Cable,1,11.95,10/31/19 13:05,"529 Maple St, New York City, NY 10001" +272117,AA Batteries (4-pack),1,3.84,10/31/19 12:21,"966 10th St, Boston, MA 02215" +272118,USB-C Charging Cable,1,11.95,10/31/19 08:35,"441 Washington St, San Francisco, CA 94016" +272119,ThinkPad Laptop,1,999.99,10/23/19 22:44,"315 Sunset St, Los Angeles, CA 90001" +272120,AAA Batteries (4-pack),1,2.99,10/04/19 13:32,"854 Maple St, San Francisco, CA 94016" +272121,Flatscreen TV,1,300,10/21/19 12:24,"179 Lakeview St, Seattle, WA 98101" +272122,Bose SoundSport Headphones,1,99.99,10/10/19 17:39,"582 Pine St, San Francisco, CA 94016" +272123,Lightning Charging Cable,1,14.95,10/24/19 21:22,"74 Cedar St, Atlanta, GA 30301" +272124,Bose SoundSport Headphones,1,99.99,10/17/19 23:38,"54 Spruce St, Atlanta, GA 30301" +272125,USB-C Charging Cable,1,11.95,10/21/19 23:05,"29 Meadow St, New York City, NY 10001" +272126,Apple Airpods Headphones,1,150,10/09/19 07:13,"229 Park St, Dallas, TX 75001" +272127,Apple Airpods Headphones,1,150,10/26/19 14:03,"109 Ridge St, Portland, OR 97035" +272128,AAA Batteries (4-pack),1,2.99,10/13/19 16:24,"894 Elm St, New York City, NY 10001" +272129,27in FHD Monitor,1,149.99,10/30/19 09:01,"905 Dogwood St, Los Angeles, CA 90001" +272130,AAA Batteries (4-pack),1,2.99,10/04/19 12:09,"903 4th St, San Francisco, CA 94016" +272131,USB-C Charging Cable,1,11.95,10/17/19 14:48,"809 Johnson St, Boston, MA 02215" +272132,Lightning Charging Cable,1,14.95,10/06/19 17:13,"860 Ridge St, Los Angeles, CA 90001" +272133,34in Ultrawide Monitor,1,379.99,10/16/19 17:38,"224 Johnson St, San Francisco, CA 94016" +272134,Wired Headphones,1,11.99,10/27/19 17:15,"340 Chestnut St, San Francisco, CA 94016" +272135,Wired Headphones,1,11.99,10/04/19 17:47,"386 Johnson St, Portland, ME 04101" +272136,AA Batteries (4-pack),3,3.84,10/02/19 17:12,"77 Main St, Dallas, TX 75001" +272137,USB-C Charging Cable,1,11.95,10/11/19 19:18,"960 Johnson St, Seattle, WA 98101" +272138,Bose SoundSport Headphones,1,99.99,10/23/19 16:34,"635 Park St, San Francisco, CA 94016" +272139,AA Batteries (4-pack),1,3.84,10/30/19 23:42,"887 Elm St, Austin, TX 73301" +272140,AAA Batteries (4-pack),1,2.99,10/21/19 10:31,"410 North St, Seattle, WA 98101" +272141,27in FHD Monitor,1,149.99,10/28/19 10:56,"791 Cherry St, San Francisco, CA 94016" +272142,Bose SoundSport Headphones,1,99.99,10/06/19 18:06,"495 Walnut St, Los Angeles, CA 90001" +272143,Lightning Charging Cable,1,14.95,10/30/19 14:33,"938 Adams St, San Francisco, CA 94016" +272144,Wired Headphones,1,11.99,10/03/19 12:10,"656 Lakeview St, Los Angeles, CA 90001" +272145,iPhone,1,700,10/02/19 03:54,"802 13th St, New York City, NY 10001" +272146,AA Batteries (4-pack),1,3.84,10/29/19 18:56,"750 Hickory St, Dallas, TX 75001" +272147,Wired Headphones,1,11.99,10/09/19 00:13,"760 Forest St, Boston, MA 02215" +272148,Wired Headphones,2,11.99,10/23/19 11:45,"401 Adams St, San Francisco, CA 94016" +272149,AA Batteries (4-pack),1,3.84,10/24/19 08:31,"793 Park St, San Francisco, CA 94016" +272150,34in Ultrawide Monitor,1,379.99,10/11/19 15:08,"78 Ridge St, Los Angeles, CA 90001" +272151,Wired Headphones,1,11.99,10/28/19 19:51,"592 12th St, New York City, NY 10001" +272152,20in Monitor,1,109.99,10/22/19 21:55,"784 Main St, New York City, NY 10001" +272153,ThinkPad Laptop,1,999.99,10/29/19 22:00,"548 Johnson St, New York City, NY 10001" +272154,AAA Batteries (4-pack),4,2.99,10/23/19 21:32,"362 Highland St, Atlanta, GA 30301" +272155,Apple Airpods Headphones,1,150,10/20/19 22:53,"667 12th St, Austin, TX 73301" +272156,27in 4K Gaming Monitor,1,389.99,10/16/19 19:51,"892 Johnson St, Boston, MA 02215" +272157,Lightning Charging Cable,1,14.95,10/27/19 20:42,"156 12th St, San Francisco, CA 94016" +272158,AA Batteries (4-pack),1,3.84,10/08/19 19:44,"250 1st St, Boston, MA 02215" +272159,Lightning Charging Cable,1,14.95,10/16/19 10:48,"682 Cedar St, Portland, OR 97035" +272160,USB-C Charging Cable,2,11.95,10/20/19 12:07,"286 Maple St, Los Angeles, CA 90001" +272161,Apple Airpods Headphones,1,150,10/02/19 17:44,"365 South St, Seattle, WA 98101" +272162,Lightning Charging Cable,1,14.95,10/20/19 22:27,"703 Hill St, Austin, TX 73301" +272163,Flatscreen TV,1,300,10/28/19 13:28,"427 South St, Dallas, TX 75001" +272164,USB-C Charging Cable,1,11.95,10/10/19 17:25,"866 West St, San Francisco, CA 94016" +272165,27in FHD Monitor,1,149.99,10/31/19 01:16,"711 Jackson St, Boston, MA 02215" +272166,Wired Headphones,1,11.99,10/15/19 09:12,"264 13th St, San Francisco, CA 94016" +272167,USB-C Charging Cable,1,11.95,10/05/19 20:43,"310 Meadow St, Los Angeles, CA 90001" +272168,USB-C Charging Cable,1,11.95,10/24/19 07:40,"693 2nd St, Atlanta, GA 30301" +272169,27in 4K Gaming Monitor,1,389.99,10/23/19 10:04,"95 Walnut St, San Francisco, CA 94016" +272170,Wired Headphones,1,11.99,10/04/19 13:56,"755 Meadow St, Dallas, TX 75001" +272171,USB-C Charging Cable,1,11.95,10/24/19 08:36,"55 9th St, Los Angeles, CA 90001" +272172,Macbook Pro Laptop,1,1700,10/15/19 03:43,"445 10th St, San Francisco, CA 94016" +272173,AAA Batteries (4-pack),1,2.99,10/13/19 23:33,"10 2nd St, San Francisco, CA 94016" +272174,Bose SoundSport Headphones,1,99.99,10/25/19 20:58,"187 Jefferson St, Boston, MA 02215" +272175,AAA Batteries (4-pack),1,2.99,10/01/19 12:30,"98 Hill St, San Francisco, CA 94016" +272176,AAA Batteries (4-pack),1,2.99,10/06/19 20:30,"163 Washington St, Los Angeles, CA 90001" +272177,Wired Headphones,1,11.99,10/20/19 08:47,"467 Elm St, San Francisco, CA 94016" +272178,27in 4K Gaming Monitor,1,389.99,10/24/19 11:45,"626 Sunset St, San Francisco, CA 94016" +272179,Bose SoundSport Headphones,1,99.99,10/04/19 10:54,"648 Hickory St, Los Angeles, CA 90001" +272180,27in FHD Monitor,1,149.99,10/16/19 12:05,"933 Cherry St, New York City, NY 10001" +272181,20in Monitor,1,109.99,10/22/19 19:16,"731 Maple St, Boston, MA 02215" +272182,Flatscreen TV,1,300,10/08/19 08:47,"399 1st St, Atlanta, GA 30301" +272183,Apple Airpods Headphones,1,150,10/23/19 12:25,"307 Pine St, Boston, MA 02215" +272184,Wired Headphones,1,11.99,10/30/19 22:01,"215 Jackson St, New York City, NY 10001" +272185,Wired Headphones,1,11.99,10/10/19 18:19,"970 10th St, Atlanta, GA 30301" +272186,iPhone,1,700,10/28/19 15:15,"911 7th St, Dallas, TX 75001" +272187,27in 4K Gaming Monitor,1,389.99,10/21/19 23:17,"963 12th St, Portland, OR 97035" +272188,AA Batteries (4-pack),1,3.84,10/04/19 13:36,"829 Madison St, San Francisco, CA 94016" +272189,AA Batteries (4-pack),1,3.84,10/23/19 12:10,"543 11th St, Boston, MA 02215" +272190,iPhone,1,700,10/15/19 11:51,"82 Lakeview St, Austin, TX 73301" +272190,Wired Headphones,1,11.99,10/15/19 11:51,"82 Lakeview St, Austin, TX 73301" +272191,34in Ultrawide Monitor,1,379.99,10/05/19 19:43,"202 Cedar St, San Francisco, CA 94016" +272192,USB-C Charging Cable,1,11.95,10/30/19 12:10,"874 Washington St, Los Angeles, CA 90001" +272193,AAA Batteries (4-pack),1,2.99,10/05/19 22:29,"595 South St, Atlanta, GA 30301" +272194,Apple Airpods Headphones,1,150,10/02/19 10:31,"190 9th St, Portland, OR 97035" +272195,AAA Batteries (4-pack),3,2.99,10/12/19 20:31,"409 Elm St, Los Angeles, CA 90001" +272196,Bose SoundSport Headphones,1,99.99,10/19/19 10:33,"513 4th St, San Francisco, CA 94016" +272197,USB-C Charging Cable,1,11.95,10/26/19 13:57,"756 Highland St, Boston, MA 02215" +272198,AA Batteries (4-pack),1,3.84,10/24/19 12:21,"281 Ridge St, San Francisco, CA 94016" +272199,AAA Batteries (4-pack),1,2.99,10/08/19 16:43,"95 Lincoln St, Portland, ME 04101" +272200,27in 4K Gaming Monitor,1,389.99,10/07/19 11:27,"918 Jackson St, Los Angeles, CA 90001" +272201,Lightning Charging Cable,1,14.95,10/17/19 17:26,"660 Walnut St, Los Angeles, CA 90001" +272202,AAA Batteries (4-pack),2,2.99,10/26/19 19:17,"217 Lincoln St, San Francisco, CA 94016" +272203,Lightning Charging Cable,1,14.95,10/23/19 21:00,"339 Cherry St, San Francisco, CA 94016" +272204,Google Phone,1,600,10/11/19 11:14,"325 Sunset St, Portland, OR 97035" +272205,Lightning Charging Cable,1,14.95,10/09/19 23:39,"529 Park St, Los Angeles, CA 90001" +272206,Apple Airpods Headphones,1,150,10/27/19 10:20,"46 Hill St, San Francisco, CA 94016" +272206,Lightning Charging Cable,1,14.95,10/27/19 10:20,"46 Hill St, San Francisco, CA 94016" +272207,Apple Airpods Headphones,1,150,10/16/19 12:59,"760 Cedar St, Atlanta, GA 30301" +272208,AAA Batteries (4-pack),1,2.99,10/21/19 20:23,"71 Lake St, Boston, MA 02215" +272209,Bose SoundSport Headphones,1,99.99,10/24/19 13:17,"986 Highland St, Portland, OR 97035" +272210,Google Phone,1,600,10/05/19 22:17,"76 12th St, San Francisco, CA 94016" +272211,34in Ultrawide Monitor,1,379.99,10/09/19 11:22,"82 River St, Seattle, WA 98101" +272212,USB-C Charging Cable,1,11.95,10/07/19 14:54,"748 Johnson St, Austin, TX 73301" +272213,Lightning Charging Cable,1,14.95,10/04/19 16:38,"954 Wilson St, Seattle, WA 98101" +272214,Wired Headphones,1,11.99,10/25/19 10:57,"996 River St, San Francisco, CA 94016" +272215,Wired Headphones,1,11.99,10/23/19 12:26,"960 1st St, Atlanta, GA 30301" +272216,Flatscreen TV,1,300,10/21/19 16:54,"781 Madison St, Los Angeles, CA 90001" +272217,Google Phone,1,600,10/15/19 15:15,"846 13th St, San Francisco, CA 94016" +272217,Wired Headphones,1,11.99,10/15/19 15:15,"846 13th St, San Francisco, CA 94016" +272218,27in 4K Gaming Monitor,1,389.99,10/09/19 18:02,"613 North St, San Francisco, CA 94016" +272219,USB-C Charging Cable,2,11.95,10/09/19 11:14,"184 Highland St, San Francisco, CA 94016" +272220,USB-C Charging Cable,1,11.95,10/20/19 06:37,"583 6th St, Boston, MA 02215" +272221,Macbook Pro Laptop,1,1700,10/19/19 14:20,"889 Center St, Los Angeles, CA 90001" +272222,AAA Batteries (4-pack),2,2.99,10/03/19 23:13,"407 South St, San Francisco, CA 94016" +272223,AA Batteries (4-pack),3,3.84,10/20/19 21:00,"82 2nd St, San Francisco, CA 94016" +272224,AAA Batteries (4-pack),1,2.99,10/16/19 21:26,"422 11th St, Austin, TX 73301" +272225,Bose SoundSport Headphones,1,99.99,10/29/19 17:37,"415 South St, New York City, NY 10001" +272226,Wired Headphones,1,11.99,10/25/19 17:38,"481 West St, Austin, TX 73301" +272227,Lightning Charging Cable,1,14.95,10/14/19 12:47,"886 10th St, Austin, TX 73301" +272228,USB-C Charging Cable,1,11.95,10/03/19 23:34,"418 Cherry St, San Francisco, CA 94016" +272229,Lightning Charging Cable,1,14.95,10/01/19 14:31,"813 1st St, Atlanta, GA 30301" +272230,Bose SoundSport Headphones,1,99.99,10/25/19 05:40,"697 Chestnut St, San Francisco, CA 94016" +272231,Bose SoundSport Headphones,1,99.99,10/07/19 08:52,"607 Jefferson St, Los Angeles, CA 90001" +272232,USB-C Charging Cable,2,11.95,10/05/19 09:12,"266 Forest St, Seattle, WA 98101" +272233,AA Batteries (4-pack),1,3.84,10/18/19 22:25,"743 River St, San Francisco, CA 94016" +272234,Bose SoundSport Headphones,1,99.99,10/16/19 23:48,"782 Adams St, Portland, OR 97035" +272235,iPhone,1,700,10/29/19 01:12,"581 Main St, Austin, TX 73301" +272236,USB-C Charging Cable,1,11.95,10/15/19 08:27,"105 12th St, Boston, MA 02215" +272237,Wired Headphones,1,11.99,10/22/19 10:32,"50 South St, San Francisco, CA 94016" +272238,Wired Headphones,1,11.99,10/06/19 20:54,"382 8th St, Dallas, TX 75001" +272239,USB-C Charging Cable,1,11.95,10/20/19 20:53,"425 Forest St, San Francisco, CA 94016" +272240,Apple Airpods Headphones,1,150,10/03/19 17:30,"152 12th St, Austin, TX 73301" +272241,AA Batteries (4-pack),1,3.84,10/10/19 18:17,"626 Highland St, Portland, OR 97035" +272242,Bose SoundSport Headphones,1,99.99,10/20/19 19:13,"35 Spruce St, Boston, MA 02215" +272243,Lightning Charging Cable,2,14.95,10/08/19 15:28,"84 Chestnut St, Seattle, WA 98101" +272244,iPhone,1,700,10/18/19 19:29,"192 Madison St, New York City, NY 10001" +272245,USB-C Charging Cable,1,11.95,10/27/19 17:53,"555 2nd St, Portland, OR 97035" +272246,AAA Batteries (4-pack),1,2.99,10/13/19 23:35,"573 North St, New York City, NY 10001" +272247,AA Batteries (4-pack),2,3.84,10/01/19 19:17,"739 Main St, Atlanta, GA 30301" +272248,Lightning Charging Cable,1,14.95,10/14/19 11:48,"721 5th St, San Francisco, CA 94016" +272249,ThinkPad Laptop,1,999.99,10/22/19 10:43,"904 5th St, San Francisco, CA 94016" +272250,AA Batteries (4-pack),1,3.84,10/08/19 08:11,"749 Highland St, San Francisco, CA 94016" +272251,Bose SoundSport Headphones,1,99.99,10/22/19 13:36,"900 8th St, Boston, MA 02215" +272252,USB-C Charging Cable,1,11.95,10/12/19 10:19,"121 Lincoln St, San Francisco, CA 94016" +272253,Bose SoundSport Headphones,1,99.99,10/28/19 01:29,"738 Maple St, Dallas, TX 75001" +272254,Wired Headphones,2,11.99,10/06/19 13:10,"353 1st St, Seattle, WA 98101" +272255,Apple Airpods Headphones,1,150,10/19/19 21:27,"989 11th St, Portland, OR 97035" +272256,Apple Airpods Headphones,1,150,10/26/19 21:20,"238 Hickory St, Boston, MA 02215" +272257,27in FHD Monitor,1,149.99,10/29/19 15:51,"906 8th St, Seattle, WA 98101" +272258,Apple Airpods Headphones,1,150,10/22/19 20:22,"753 Pine St, Dallas, TX 75001" +272259,Google Phone,1,600,10/13/19 13:57,"128 Park St, New York City, NY 10001" +272260,Apple Airpods Headphones,1,150,10/24/19 23:37,"313 1st St, Austin, TX 73301" +272261,AA Batteries (4-pack),2,3.84,10/03/19 08:25,"790 Lakeview St, Los Angeles, CA 90001" +272262,Apple Airpods Headphones,1,150,10/01/19 13:13,"638 4th St, San Francisco, CA 94016" +272263,AAA Batteries (4-pack),1,2.99,10/10/19 14:01,"246 Main St, Seattle, WA 98101" +272264,Bose SoundSport Headphones,1,99.99,10/23/19 19:23,"824 Dogwood St, San Francisco, CA 94016" +272265,AA Batteries (4-pack),1,3.84,10/04/19 01:49,"709 Jackson St, Seattle, WA 98101" +272266,Wired Headphones,1,11.99,10/12/19 18:23,"462 Highland St, Seattle, WA 98101" +272267,Lightning Charging Cable,1,14.95,10/13/19 21:30,"486 South St, Los Angeles, CA 90001" +272268,Bose SoundSport Headphones,1,99.99,10/23/19 08:57,"757 Maple St, New York City, NY 10001" +272269,AAA Batteries (4-pack),1,2.99,10/31/19 09:21,"884 8th St, Portland, OR 97035" +272270,Apple Airpods Headphones,1,150,10/18/19 20:36,"100 Main St, Dallas, TX 75001" +272271,Macbook Pro Laptop,1,1700,10/21/19 19:51,"439 Spruce St, New York City, NY 10001" +272272,AAA Batteries (4-pack),2,2.99,10/07/19 22:32,"402 10th St, San Francisco, CA 94016" +272272,20in Monitor,1,109.99,10/07/19 22:32,"402 10th St, San Francisco, CA 94016" +272273,Apple Airpods Headphones,1,150,10/26/19 22:01,"797 Church St, Dallas, TX 75001" +272274,AAA Batteries (4-pack),3,2.99,10/02/19 11:07,"641 2nd St, Portland, OR 97035" +272275,iPhone,1,700,10/03/19 13:30,"465 Hickory St, Boston, MA 02215" +272276,AA Batteries (4-pack),1,3.84,10/08/19 20:49,"707 8th St, Austin, TX 73301" +272277,AA Batteries (4-pack),1,3.84,10/31/19 17:41,"500 14th St, San Francisco, CA 94016" +272278,USB-C Charging Cable,1,11.95,10/13/19 20:08,"189 Cedar St, San Francisco, CA 94016" +272279,AA Batteries (4-pack),1,3.84,10/20/19 12:42,"935 Adams St, Seattle, WA 98101" +272280,AA Batteries (4-pack),3,3.84,10/17/19 10:38,"851 Park St, San Francisco, CA 94016" +272281,AA Batteries (4-pack),3,3.84,10/31/19 20:17,"151 6th St, Portland, OR 97035" +272282,20in Monitor,1,109.99,10/24/19 19:37,"117 Main St, Los Angeles, CA 90001" +272283,Bose SoundSport Headphones,1,99.99,10/14/19 22:28,"390 Sunset St, Los Angeles, CA 90001" +272284,Flatscreen TV,1,300,10/04/19 18:30,"269 Adams St, San Francisco, CA 94016" +272285,27in FHD Monitor,1,149.99,10/20/19 06:18,"227 Spruce St, Dallas, TX 75001" +272285,Wired Headphones,1,11.99,10/20/19 06:18,"227 Spruce St, Dallas, TX 75001" +272286,Wired Headphones,1,11.99,10/02/19 13:07,"847 Main St, Austin, TX 73301" +272287,Apple Airpods Headphones,1,150,10/08/19 15:54,"46 Maple St, San Francisco, CA 94016" +272288,iPhone,1,700,10/20/19 13:28,"484 Maple St, Seattle, WA 98101" +272289,AAA Batteries (4-pack),1,2.99,10/25/19 19:54,"297 Willow St, New York City, NY 10001" +272290,AA Batteries (4-pack),2,3.84,10/07/19 23:09,"927 Meadow St, San Francisco, CA 94016" +272291,Macbook Pro Laptop,1,1700,10/16/19 16:33,"290 Cherry St, Dallas, TX 75001" +272292,AA Batteries (4-pack),1,3.84,10/12/19 15:21,"381 Willow St, New York City, NY 10001" +272293,Lightning Charging Cable,1,14.95,10/02/19 20:57,"674 Lake St, Boston, MA 02215" +272294,27in 4K Gaming Monitor,1,389.99,10/18/19 01:28,"416 Madison St, New York City, NY 10001" +272295,AAA Batteries (4-pack),2,2.99,10/04/19 10:33,"979 Jackson St, Boston, MA 02215" +272296,Lightning Charging Cable,1,14.95,10/06/19 23:36,"782 5th St, New York City, NY 10001" +272297,27in 4K Gaming Monitor,1,389.99,10/02/19 17:35,"808 Wilson St, Austin, TX 73301" +272298,USB-C Charging Cable,1,11.95,10/18/19 05:41,"142 2nd St, Portland, ME 04101" +272299,AA Batteries (4-pack),2,3.84,10/24/19 18:32,"472 Walnut St, New York City, NY 10001" +272300,Wired Headphones,1,11.99,10/24/19 19:44,"862 9th St, New York City, NY 10001" +272301,Wired Headphones,1,11.99,10/29/19 10:10,"386 Hickory St, Portland, OR 97035" +272302,20in Monitor,1,109.99,10/30/19 06:27,"538 Pine St, San Francisco, CA 94016" +272303,Flatscreen TV,1,300,10/12/19 18:56,"3 Cherry St, Los Angeles, CA 90001" +272304,Wired Headphones,1,11.99,10/26/19 19:29,"339 11th St, Los Angeles, CA 90001" +272305,iPhone,1,700,10/10/19 20:29,"15 Pine St, San Francisco, CA 94016" +272305,Wired Headphones,1,11.99,10/10/19 20:29,"15 Pine St, San Francisco, CA 94016" +272306,Bose SoundSport Headphones,1,99.99,10/12/19 13:29,"241 Washington St, Seattle, WA 98101" +272307,Apple Airpods Headphones,1,150,10/01/19 18:51,"546 Lake St, Boston, MA 02215" +272308,AA Batteries (4-pack),1,3.84,10/07/19 11:42,"333 River St, Boston, MA 02215" +272309,Bose SoundSport Headphones,1,99.99,10/12/19 21:42,"390 Walnut St, Austin, TX 73301" +272310,USB-C Charging Cable,1,11.95,10/10/19 13:39,"637 2nd St, Boston, MA 02215" +272311,Google Phone,1,600,10/26/19 09:58,"128 Walnut St, San Francisco, CA 94016" +272312,Macbook Pro Laptop,1,1700,10/14/19 18:54,"228 South St, Boston, MA 02215" +272313,AA Batteries (4-pack),1,3.84,10/30/19 08:56,"474 Pine St, Portland, ME 04101" +272314,AAA Batteries (4-pack),3,2.99,10/31/19 19:22,"440 Sunset St, Seattle, WA 98101" +272315,iPhone,1,700,10/05/19 19:33,"727 14th St, New York City, NY 10001" +272316,Apple Airpods Headphones,1,150,10/22/19 08:46,"674 River St, Los Angeles, CA 90001" +272317,USB-C Charging Cable,1,11.95,10/31/19 15:23,"527 12th St, San Francisco, CA 94016" +272318,Apple Airpods Headphones,1,150,10/28/19 22:50,"644 Elm St, San Francisco, CA 94016" +272319,Apple Airpods Headphones,1,150,10/28/19 12:43,"330 Jackson St, Dallas, TX 75001" +272320,AAA Batteries (4-pack),2,2.99,10/29/19 02:24,"378 7th St, New York City, NY 10001" +272321,Macbook Pro Laptop,1,1700,10/05/19 06:56,"48 Park St, Boston, MA 02215" +272322,ThinkPad Laptop,1,999.99,10/31/19 17:39,"942 4th St, Austin, TX 73301" +272323,Wired Headphones,1,11.99,10/22/19 11:30,"456 River St, Dallas, TX 75001" +272324,27in 4K Gaming Monitor,1,389.99,10/19/19 14:38,"351 5th St, Los Angeles, CA 90001" +272325,AAA Batteries (4-pack),1,2.99,10/10/19 20:22,"154 Johnson St, Portland, ME 04101" +272326,27in 4K Gaming Monitor,1,389.99,10/10/19 18:48,"164 River St, Seattle, WA 98101" +272327,Lightning Charging Cable,1,14.95,10/12/19 10:26,"149 Main St, Dallas, TX 75001" +272328,Wired Headphones,1,11.99,10/10/19 11:03,"684 Pine St, Dallas, TX 75001" +272329,USB-C Charging Cable,1,11.95,10/10/19 15:02,"585 9th St, Boston, MA 02215" +272330,Macbook Pro Laptop,1,1700,10/11/19 12:01,"929 Wilson St, San Francisco, CA 94016" +272331,USB-C Charging Cable,2,11.95,10/28/19 05:11,"507 10th St, Seattle, WA 98101" +272332,AAA Batteries (4-pack),2,2.99,10/14/19 13:17,"956 Pine St, Boston, MA 02215" +272333,27in 4K Gaming Monitor,1,389.99,10/26/19 18:20,"854 Highland St, New York City, NY 10001" +272334,27in FHD Monitor,1,149.99,10/31/19 05:15,"19 Cedar St, Los Angeles, CA 90001" +272335,Apple Airpods Headphones,1,150,10/02/19 09:16,"988 Lakeview St, San Francisco, CA 94016" +272336,AAA Batteries (4-pack),1,2.99,10/07/19 09:20,"258 9th St, Los Angeles, CA 90001" +272337,AAA Batteries (4-pack),1,2.99,10/30/19 00:42,"139 Meadow St, Los Angeles, CA 90001" +272338,USB-C Charging Cable,1,11.95,10/28/19 03:20,"528 Center St, Portland, OR 97035" +272338,27in FHD Monitor,1,149.99,10/28/19 03:20,"528 Center St, Portland, OR 97035" +272339,ThinkPad Laptop,1,999.99,10/06/19 15:52,"366 7th St, Boston, MA 02215" +272340,27in 4K Gaming Monitor,1,389.99,10/23/19 21:55,"705 Hickory St, Austin, TX 73301" +272341,Lightning Charging Cable,1,14.95,10/12/19 20:15,"694 Walnut St, Atlanta, GA 30301" +272342,Apple Airpods Headphones,1,150,10/28/19 22:29,"19 14th St, Los Angeles, CA 90001" +272343,AAA Batteries (4-pack),1,2.99,10/11/19 15:21,"733 11th St, Portland, ME 04101" +272344,Wired Headphones,1,11.99,10/29/19 13:56,"973 Walnut St, Dallas, TX 75001" +272345,Macbook Pro Laptop,1,1700,10/11/19 21:20,"853 Park St, Portland, ME 04101" +272346,27in FHD Monitor,1,149.99,10/19/19 11:38,"153 Meadow St, Los Angeles, CA 90001" +272347,USB-C Charging Cable,1,11.95,10/31/19 20:29,"49 11th St, Los Angeles, CA 90001" +272348,USB-C Charging Cable,2,11.95,10/29/19 12:44,"736 Main St, San Francisco, CA 94016" +272349,USB-C Charging Cable,1,11.95,10/17/19 00:30,"462 Spruce St, Austin, TX 73301" +272350,AA Batteries (4-pack),1,3.84,10/16/19 22:26,"529 South St, Dallas, TX 75001" +272351,iPhone,1,700,10/29/19 18:51,"91 Maple St, Atlanta, GA 30301" +272351,Lightning Charging Cable,1,14.95,10/29/19 18:51,"91 Maple St, Atlanta, GA 30301" +272352,ThinkPad Laptop,1,999.99,10/01/19 20:58,"859 Madison St, Boston, MA 02215" +272353,27in FHD Monitor,1,149.99,10/19/19 10:51,"924 8th St, Atlanta, GA 30301" +272354,USB-C Charging Cable,1,11.95,10/19/19 10:25,"799 Sunset St, Austin, TX 73301" +272355,AA Batteries (4-pack),2,3.84,10/20/19 21:01,"708 Park St, Boston, MA 02215" +272356,Apple Airpods Headphones,1,150,10/12/19 13:32,"124 Elm St, San Francisco, CA 94016" +272357,20in Monitor,1,109.99,10/08/19 19:56,"589 Walnut St, San Francisco, CA 94016" +272358,AA Batteries (4-pack),2,3.84,10/15/19 20:31,"752 10th St, Dallas, TX 75001" +272359,Lightning Charging Cable,1,14.95,10/08/19 11:37,"856 7th St, Atlanta, GA 30301" +272360,USB-C Charging Cable,1,11.95,10/24/19 13:20,"859 South St, San Francisco, CA 94016" +272361,Google Phone,1,600,10/17/19 09:25,"865 Hickory St, New York City, NY 10001" +272362,AA Batteries (4-pack),2,3.84,10/31/19 06:04,"574 Meadow St, Dallas, TX 75001" +272363,Apple Airpods Headphones,1,150,10/16/19 00:24,"558 1st St, San Francisco, CA 94016" +272364,iPhone,1,700,10/09/19 19:21,"374 Jefferson St, San Francisco, CA 94016" +272365,USB-C Charging Cable,1,11.95,10/15/19 15:12,"750 Madison St, San Francisco, CA 94016" +272366,AAA Batteries (4-pack),1,2.99,10/21/19 08:45,"695 Main St, Austin, TX 73301" +272367,Lightning Charging Cable,1,14.95,10/28/19 09:37,"377 Lakeview St, Boston, MA 02215" +272368,27in FHD Monitor,1,149.99,10/09/19 18:35,"655 Jefferson St, San Francisco, CA 94016" +272369,Apple Airpods Headphones,1,150,10/21/19 20:21,"525 West St, Seattle, WA 98101" +272370,USB-C Charging Cable,1,11.95,10/28/19 16:14,"248 Walnut St, Portland, ME 04101" +272371,Wired Headphones,1,11.99,10/31/19 09:07,"932 Madison St, Seattle, WA 98101" +272372,Bose SoundSport Headphones,1,99.99,10/19/19 20:21,"780 Willow St, Austin, TX 73301" +272373,27in 4K Gaming Monitor,1,389.99,10/01/19 13:20,"763 Adams St, San Francisco, CA 94016" +272374,AA Batteries (4-pack),4,3.84,10/02/19 21:00,"467 Hickory St, New York City, NY 10001" +272375,20in Monitor,1,109.99,10/10/19 12:50,"540 Adams St, Austin, TX 73301" +272376,Bose SoundSport Headphones,2,99.99,10/01/19 13:02,"140 South St, Portland, OR 97035" +272377,20in Monitor,1,109.99,10/12/19 09:43,"904 South St, Seattle, WA 98101" +272378,Lightning Charging Cable,1,14.95,10/26/19 12:33,"612 Meadow St, New York City, NY 10001" +272379,iPhone,1,700,10/21/19 11:53,"100 Adams St, Los Angeles, CA 90001" +272380,27in 4K Gaming Monitor,1,389.99,10/17/19 14:36,"239 Ridge St, San Francisco, CA 94016" +272381,AA Batteries (4-pack),1,3.84,10/23/19 22:01,"111 Wilson St, Atlanta, GA 30301" +272382,Macbook Pro Laptop,1,1700,10/24/19 01:03,"723 North St, Atlanta, GA 30301" +272383,Vareebadd Phone,1,400,10/21/19 10:43,"472 Church St, Boston, MA 02215" +272384,Vareebadd Phone,1,400,10/26/19 23:35,"461 Sunset St, Dallas, TX 75001" +272385,Lightning Charging Cable,1,14.95,10/08/19 23:54,"230 Wilson St, New York City, NY 10001" +272386,AA Batteries (4-pack),1,3.84,10/03/19 07:59,"114 7th St, Boston, MA 02215" +272387,Apple Airpods Headphones,1,150,10/29/19 07:28,"820 5th St, Dallas, TX 75001" +272388,Lightning Charging Cable,1,14.95,10/05/19 17:43,"556 North St, Boston, MA 02215" +272389,Vareebadd Phone,1,400,10/30/19 13:36,"765 Lakeview St, Los Angeles, CA 90001" +272389,USB-C Charging Cable,1,11.95,10/30/19 13:36,"765 Lakeview St, Los Angeles, CA 90001" +272389,Bose SoundSport Headphones,1,99.99,10/30/19 13:36,"765 Lakeview St, Los Angeles, CA 90001" +272390,AAA Batteries (4-pack),1,2.99,10/12/19 09:00,"484 7th St, Dallas, TX 75001" +272391,Vareebadd Phone,1,400,10/16/19 13:56,"327 Lakeview St, San Francisco, CA 94016" +272391,USB-C Charging Cable,1,11.95,10/16/19 13:56,"327 Lakeview St, San Francisco, CA 94016" +272391,USB-C Charging Cable,1,11.95,10/16/19 13:56,"327 Lakeview St, San Francisco, CA 94016" +272392,Wired Headphones,1,11.99,10/19/19 20:53,"545 Lincoln St, Seattle, WA 98101" +272393,Bose SoundSport Headphones,1,99.99,10/18/19 14:59,"42 Cherry St, Seattle, WA 98101" +272394,Bose SoundSport Headphones,1,99.99,10/20/19 18:28,"433 7th St, Austin, TX 73301" +272395,27in FHD Monitor,1,149.99,10/04/19 21:52,"470 Lake St, San Francisco, CA 94016" +272396,LG Washing Machine,1,600.0,10/22/19 17:16,"848 8th St, Los Angeles, CA 90001" +272396,USB-C Charging Cable,1,11.95,10/22/19 17:16,"848 8th St, Los Angeles, CA 90001" +272397,Bose SoundSport Headphones,1,99.99,10/14/19 15:41,"509 4th St, Los Angeles, CA 90001" +272398,AAA Batteries (4-pack),3,2.99,10/23/19 20:58,"672 1st St, New York City, NY 10001" +272399,USB-C Charging Cable,1,11.95,10/12/19 10:53,"230 10th St, Dallas, TX 75001" +272400,27in FHD Monitor,1,149.99,10/13/19 20:19,"468 Lakeview St, Atlanta, GA 30301" +272401,Wired Headphones,1,11.99,10/27/19 17:44,"801 Cherry St, San Francisco, CA 94016" +272402,USB-C Charging Cable,1,11.95,10/12/19 18:05,"711 South St, San Francisco, CA 94016" +272403,iPhone,1,700,10/29/19 11:32,"840 4th St, Los Angeles, CA 90001" +272404,Vareebadd Phone,1,400,10/18/19 16:06,"811 4th St, New York City, NY 10001" +272404,USB-C Charging Cable,1,11.95,10/18/19 16:06,"811 4th St, New York City, NY 10001" +272405,Lightning Charging Cable,1,14.95,10/15/19 12:15,"110 Park St, San Francisco, CA 94016" +272406,Wired Headphones,1,11.99,10/15/19 20:42,"854 Ridge St, San Francisco, CA 94016" +272407,Apple Airpods Headphones,1,150,10/14/19 13:55,"12 13th St, Boston, MA 02215" +272408,AA Batteries (4-pack),1,3.84,10/09/19 19:24,"225 5th St, Los Angeles, CA 90001" +272409,27in FHD Monitor,1,149.99,10/10/19 12:07,"468 Center St, Dallas, TX 75001" +272410,Vareebadd Phone,1,400,10/27/19 09:18,"896 Cedar St, Atlanta, GA 30301" +272411,Wired Headphones,1,11.99,10/18/19 18:58,"719 Cherry St, San Francisco, CA 94016" +272412,Apple Airpods Headphones,1,150,10/23/19 10:38,"906 Adams St, Los Angeles, CA 90001" +272413,27in FHD Monitor,1,149.99,10/26/19 21:01,"920 Wilson St, Atlanta, GA 30301" +272414,Flatscreen TV,1,300,10/14/19 13:30,"577 Willow St, Dallas, TX 75001" +272415,34in Ultrawide Monitor,1,379.99,10/03/19 19:15,"291 Forest St, Austin, TX 73301" +272416,USB-C Charging Cable,2,11.95,10/31/19 07:12,"55 Willow St, New York City, NY 10001" +272417,AAA Batteries (4-pack),1,2.99,10/28/19 19:21,"895 Pine St, San Francisco, CA 94016" +272418,Wired Headphones,1,11.99,10/25/19 19:18,"349 River St, Austin, TX 73301" +272419,Vareebadd Phone,1,400,10/15/19 11:03,"427 Willow St, Los Angeles, CA 90001" +272420,Wired Headphones,1,11.99,10/26/19 15:08,"928 Jackson St, Los Angeles, CA 90001" +272421,Apple Airpods Headphones,1,150,10/03/19 18:50,"923 7th St, San Francisco, CA 94016" +272422,USB-C Charging Cable,1,11.95,10/15/19 19:17,"980 4th St, San Francisco, CA 94016" +272423,AAA Batteries (4-pack),1,2.99,10/26/19 15:32,"833 Ridge St, New York City, NY 10001" +272424,USB-C Charging Cable,1,11.95,10/03/19 12:33,"226 Forest St, New York City, NY 10001" +272425,AA Batteries (4-pack),3,3.84,10/30/19 18:46,"132 Jefferson St, San Francisco, CA 94016" +272426,AA Batteries (4-pack),1,3.84,10/19/19 17:56,"21 Main St, Seattle, WA 98101" +272427,Wired Headphones,1,11.99,10/13/19 13:57,"441 Lakeview St, Portland, ME 04101" +272428,27in FHD Monitor,1,149.99,10/12/19 17:53,"943 Ridge St, San Francisco, CA 94016" +272429,34in Ultrawide Monitor,1,379.99,10/30/19 14:54,"123 5th St, San Francisco, CA 94016" +272430,AAA Batteries (4-pack),1,2.99,10/03/19 12:30,"968 11th St, Seattle, WA 98101" +272431,Bose SoundSport Headphones,1,99.99,10/04/19 14:07,"210 West St, San Francisco, CA 94016" +272432,Lightning Charging Cable,1,14.95,10/10/19 19:18,"414 Cherry St, San Francisco, CA 94016" +272433,Lightning Charging Cable,1,14.95,10/22/19 13:33,"813 11th St, Los Angeles, CA 90001" +272434,Vareebadd Phone,1,400,10/09/19 16:34,"443 Lake St, Los Angeles, CA 90001" +272435,Bose SoundSport Headphones,1,99.99,10/19/19 10:57,"54 Lincoln St, Boston, MA 02215" +272436,Wired Headphones,1,11.99,10/07/19 23:35,"909 Pine St, Los Angeles, CA 90001" +272437,27in FHD Monitor,1,149.99,10/03/19 17:13,"336 11th St, San Francisco, CA 94016" +272438,AAA Batteries (4-pack),1,2.99,10/17/19 20:58,"308 Washington St, Los Angeles, CA 90001" +272439,Flatscreen TV,1,300,10/12/19 15:09,"775 Center St, Los Angeles, CA 90001" +272440,AAA Batteries (4-pack),1,2.99,10/15/19 15:39,"731 12th St, Atlanta, GA 30301" +272441,AA Batteries (4-pack),1,3.84,10/05/19 00:27,"414 9th St, Portland, OR 97035" +272442,27in FHD Monitor,1,149.99,10/15/19 23:40,"636 Lakeview St, San Francisco, CA 94016" +272443,iPhone,1,700,10/24/19 07:19,"411 Center St, San Francisco, CA 94016" +272444,Wired Headphones,1,11.99,10/28/19 19:02,"442 Hill St, New York City, NY 10001" +272445,Apple Airpods Headphones,1,150,10/14/19 14:28,"484 14th St, Boston, MA 02215" +272446,iPhone,1,700,10/28/19 21:51,"534 Adams St, San Francisco, CA 94016" +272447,AA Batteries (4-pack),3,3.84,10/05/19 18:22,"827 Hill St, Dallas, TX 75001" +272448,ThinkPad Laptop,1,999.99,10/02/19 19:29,"781 Wilson St, Atlanta, GA 30301" +272449,AA Batteries (4-pack),2,3.84,10/25/19 16:26,"15 2nd St, Boston, MA 02215" +272450,AAA Batteries (4-pack),2,2.99,10/29/19 15:07,"272 Wilson St, San Francisco, CA 94016" +272451,Google Phone,1,600,10/02/19 13:30,"114 1st St, New York City, NY 10001" +272451,Wired Headphones,1,11.99,10/02/19 13:30,"114 1st St, New York City, NY 10001" +272452,Lightning Charging Cable,1,14.95,10/01/19 13:37,"735 4th St, New York City, NY 10001" +272453,Lightning Charging Cable,1,14.95,10/30/19 19:33,"434 6th St, Dallas, TX 75001" +272454,USB-C Charging Cable,1,11.95,10/17/19 19:18,"72 Cedar St, Los Angeles, CA 90001" +272455,Wired Headphones,1,11.99,10/18/19 10:31,"785 4th St, San Francisco, CA 94016" +272456,AAA Batteries (4-pack),1,2.99,10/07/19 10:41,"221 Walnut St, Los Angeles, CA 90001" +272457,Apple Airpods Headphones,1,150,10/23/19 13:30,"321 Maple St, New York City, NY 10001" +272458,AA Batteries (4-pack),2,3.84,10/27/19 09:52,"937 Johnson St, Portland, OR 97035" +272459,Wired Headphones,1,11.99,10/10/19 20:20,"774 14th St, Boston, MA 02215" +272460,Bose SoundSport Headphones,1,99.99,10/01/19 08:51,"76 Hickory St, Dallas, TX 75001" +272461,Bose SoundSport Headphones,1,99.99,10/31/19 10:04,"336 Cedar St, Boston, MA 02215" +272462,AAA Batteries (4-pack),2,2.99,10/01/19 09:35,"175 Johnson St, Seattle, WA 98101" +272463,AA Batteries (4-pack),1,3.84,10/10/19 19:27,"147 Main St, San Francisco, CA 94016" +272464,27in FHD Monitor,1,149.99,10/06/19 22:15,"814 Church St, Seattle, WA 98101" +272465,Lightning Charging Cable,1,14.95,10/18/19 21:47,"72 14th St, New York City, NY 10001" +272465,27in 4K Gaming Monitor,1,389.99,10/18/19 21:47,"72 14th St, New York City, NY 10001" +272466,USB-C Charging Cable,1,11.95,10/09/19 18:31,"968 Park St, Los Angeles, CA 90001" +272467,Vareebadd Phone,1,400,10/03/19 18:52,"26 4th St, Seattle, WA 98101" +272468,Lightning Charging Cable,1,14.95,10/17/19 13:37,"880 Jackson St, Portland, OR 97035" +272469,Wired Headphones,1,11.99,10/04/19 23:20,"365 Lakeview St, San Francisco, CA 94016" +272470,Google Phone,1,600,10/29/19 15:10,"61 Wilson St, San Francisco, CA 94016" +272471,AAA Batteries (4-pack),1,2.99,10/31/19 20:05,"820 10th St, Dallas, TX 75001" +272472,AA Batteries (4-pack),1,3.84,10/29/19 09:15,"772 11th St, Austin, TX 73301" +272473,AA Batteries (4-pack),1,3.84,10/31/19 20:25,"708 13th St, Seattle, WA 98101" +272474,34in Ultrawide Monitor,1,379.99,10/17/19 13:29,"732 Washington St, Seattle, WA 98101" +272475,AAA Batteries (4-pack),1,2.99,10/10/19 12:33,"59 Center St, San Francisco, CA 94016" +272476,Lightning Charging Cable,1,14.95,10/06/19 16:31,"508 Church St, Seattle, WA 98101" +272477,Wired Headphones,1,11.99,10/28/19 17:11,"269 10th St, Boston, MA 02215" +272478,AAA Batteries (4-pack),1,2.99,10/08/19 05:36,"815 Walnut St, San Francisco, CA 94016" +272479,34in Ultrawide Monitor,1,379.99,10/22/19 18:48,"595 Chestnut St, Los Angeles, CA 90001" +272480,Bose SoundSport Headphones,1,99.99,10/23/19 15:20,"944 Main St, Seattle, WA 98101" +272481,iPhone,1,700,10/09/19 17:05,"204 7th St, Atlanta, GA 30301" +272482,Google Phone,1,600,10/28/19 06:53,"808 Meadow St, Atlanta, GA 30301" +272483,27in 4K Gaming Monitor,1,389.99,10/25/19 19:50,"829 Meadow St, New York City, NY 10001" +272484,AAA Batteries (4-pack),2,2.99,10/13/19 23:28,"649 West St, San Francisco, CA 94016" +272485,34in Ultrawide Monitor,1,379.99,10/13/19 10:00,"704 14th St, Dallas, TX 75001" +272486,20in Monitor,1,109.99,10/27/19 22:46,"87 6th St, New York City, NY 10001" +272487,Wired Headphones,1,11.99,10/28/19 16:33,"997 2nd St, Los Angeles, CA 90001" +272488,AA Batteries (4-pack),1,3.84,10/10/19 07:34,"140 2nd St, New York City, NY 10001" +272489,Lightning Charging Cable,1,14.95,10/03/19 13:13,"39 Center St, Boston, MA 02215" +272490,Bose SoundSport Headphones,1,99.99,10/08/19 21:43,"259 Sunset St, Dallas, TX 75001" +272491,USB-C Charging Cable,1,11.95,10/31/19 21:05,"94 13th St, San Francisco, CA 94016" +272491,27in 4K Gaming Monitor,1,389.99,10/31/19 21:05,"94 13th St, San Francisco, CA 94016" +272492,AAA Batteries (4-pack),2,2.99,10/19/19 21:17,"647 Adams St, Portland, OR 97035" +272493,Google Phone,1,600,10/30/19 02:22,"545 Lake St, New York City, NY 10001" +272494,20in Monitor,1,109.99,10/21/19 04:26,"296 14th St, Los Angeles, CA 90001" +272495,27in 4K Gaming Monitor,1,389.99,10/11/19 15:38,"745 Sunset St, San Francisco, CA 94016" +272496,AAA Batteries (4-pack),1,2.99,10/08/19 17:15,"458 11th St, Portland, OR 97035" +272497,AA Batteries (4-pack),1,3.84,10/25/19 19:10,"430 Main St, Los Angeles, CA 90001" +272498,AA Batteries (4-pack),1,3.84,10/29/19 20:50,"607 Center St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +272499,ThinkPad Laptop,1,999.99,10/27/19 20:02,"277 Pine St, Los Angeles, CA 90001" +272500,AAA Batteries (4-pack),2,2.99,10/11/19 14:46,"527 West St, Los Angeles, CA 90001" +272501,34in Ultrawide Monitor,1,379.99,10/31/19 20:38,"831 Elm St, Boston, MA 02215" +272502,Lightning Charging Cable,1,14.95,10/07/19 10:15,"50 Main St, Dallas, TX 75001" +272503,LG Washing Machine,1,600.0,10/22/19 17:25,"1 Main St, New York City, NY 10001" +272504,27in FHD Monitor,1,149.99,10/02/19 20:15,"25 Jackson St, New York City, NY 10001" +272505,AAA Batteries (4-pack),2,2.99,10/30/19 21:29,"815 Main St, San Francisco, CA 94016" +272506,ThinkPad Laptop,1,999.99,10/09/19 08:42,"14 Pine St, Boston, MA 02215" +272507,27in 4K Gaming Monitor,1,389.99,10/04/19 23:53,"68 River St, San Francisco, CA 94016" +272508,27in 4K Gaming Monitor,1,389.99,10/18/19 11:28,"593 Chestnut St, Boston, MA 02215" +272509,AAA Batteries (4-pack),4,2.99,10/28/19 21:33,"32 Forest St, Dallas, TX 75001" +272510,USB-C Charging Cable,3,11.95,10/12/19 10:53,"359 Washington St, Boston, MA 02215" +272511,USB-C Charging Cable,1,11.95,10/30/19 12:20,"222 1st St, San Francisco, CA 94016" +272512,AA Batteries (4-pack),2,3.84,10/13/19 19:14,"326 Church St, San Francisco, CA 94016" +272513,Apple Airpods Headphones,1,150,10/23/19 11:06,"347 Willow St, Seattle, WA 98101" +272514,USB-C Charging Cable,1,11.95,10/29/19 14:12,"457 13th St, Portland, ME 04101" +272515,Lightning Charging Cable,1,14.95,10/13/19 00:42,"261 Madison St, San Francisco, CA 94016" +272516,USB-C Charging Cable,1,11.95,10/22/19 18:01,"16 Lincoln St, Seattle, WA 98101" +272517,20in Monitor,1,109.99,10/22/19 14:20,"704 Meadow St, New York City, NY 10001" +272518,Wired Headphones,1,11.99,10/17/19 17:13,"84 7th St, San Francisco, CA 94016" +272519,Wired Headphones,1,11.99,10/23/19 19:11,"550 Maple St, Los Angeles, CA 90001" +272520,Apple Airpods Headphones,1,150,10/22/19 06:53,"995 Johnson St, San Francisco, CA 94016" +272521,Apple Airpods Headphones,1,150,10/13/19 02:09,"967 Walnut St, San Francisco, CA 94016" +272522,Apple Airpods Headphones,1,150,10/29/19 17:32,"672 11th St, Atlanta, GA 30301" +272523,27in 4K Gaming Monitor,1,389.99,10/09/19 14:57,"812 Church St, New York City, NY 10001" +272524,Macbook Pro Laptop,1,1700,10/15/19 21:25,"262 13th St, New York City, NY 10001" +272525,Wired Headphones,1,11.99,10/04/19 15:59,"933 Willow St, Los Angeles, CA 90001" +272526,Wired Headphones,1,11.99,10/22/19 17:58,"792 2nd St, Seattle, WA 98101" +272527,USB-C Charging Cable,1,11.95,10/27/19 09:53,"67 Sunset St, Atlanta, GA 30301" +272528,Bose SoundSport Headphones,1,99.99,10/11/19 09:25,"695 Center St, Los Angeles, CA 90001" +272529,AAA Batteries (4-pack),2,2.99,10/28/19 18:32,"221 8th St, Boston, MA 02215" +272530,iPhone,1,700,10/17/19 14:06,"971 8th St, Seattle, WA 98101" +272531,Lightning Charging Cable,1,14.95,10/10/19 11:45,"346 Hickory St, San Francisco, CA 94016" +272532,Wired Headphones,1,11.99,10/03/19 13:04,"63 8th St, San Francisco, CA 94016" +272533,AA Batteries (4-pack),1,3.84,10/20/19 10:15,"145 Johnson St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +272534,Lightning Charging Cable,1,14.95,10/17/19 21:50,"859 Madison St, San Francisco, CA 94016" +272535,Apple Airpods Headphones,1,150,10/30/19 01:28,"338 Forest St, Atlanta, GA 30301" +272536,AA Batteries (4-pack),1,3.84,10/26/19 18:38,"71 13th St, Portland, OR 97035" +272537,Lightning Charging Cable,1,14.95,10/25/19 18:26,"283 Spruce St, San Francisco, CA 94016" +272538,Lightning Charging Cable,1,14.95,10/12/19 15:14,"447 14th St, Portland, OR 97035" +272539,Wired Headphones,1,11.99,10/25/19 17:51,"73 Elm St, San Francisco, CA 94016" +272540,AA Batteries (4-pack),1,3.84,10/29/19 12:07,"445 Pine St, San Francisco, CA 94016" +272541,AA Batteries (4-pack),1,3.84,10/14/19 18:34,"141 Cherry St, Austin, TX 73301" +272542,iPhone,1,700,10/28/19 17:43,"402 Wilson St, San Francisco, CA 94016" +272543,Flatscreen TV,1,300,10/15/19 13:06,"461 Main St, Boston, MA 02215" +272544,Apple Airpods Headphones,1,150,10/13/19 22:32,"860 Pine St, Los Angeles, CA 90001" +272545,34in Ultrawide Monitor,1,379.99,10/08/19 17:59,"333 1st St, Boston, MA 02215" +272546,USB-C Charging Cable,1,11.95,10/21/19 14:03,"114 Highland St, Boston, MA 02215" +272547,Bose SoundSport Headphones,1,99.99,10/05/19 05:13,"688 Sunset St, New York City, NY 10001" +272548,Apple Airpods Headphones,1,150,10/03/19 13:58,"427 2nd St, Portland, OR 97035" +272549,Google Phone,1,600,10/29/19 07:09,"894 Jackson St, San Francisco, CA 94016" +272550,USB-C Charging Cable,1,11.95,10/03/19 10:02,"967 Chestnut St, New York City, NY 10001" +272551,AAA Batteries (4-pack),2,2.99,10/09/19 21:35,"687 12th St, Portland, OR 97035" +272551,USB-C Charging Cable,1,11.95,10/09/19 21:35,"687 12th St, Portland, OR 97035" +272552,USB-C Charging Cable,1,11.95,10/12/19 17:42,"340 Church St, Los Angeles, CA 90001" +272553,AA Batteries (4-pack),2,3.84,10/10/19 07:06,"388 Cherry St, New York City, NY 10001" +272554,AA Batteries (4-pack),1,3.84,10/06/19 14:45,"247 Cherry St, Atlanta, GA 30301" +272555,ThinkPad Laptop,1,999.99,10/13/19 20:26,"584 6th St, San Francisco, CA 94016" +272556,AAA Batteries (4-pack),1,2.99,10/29/19 23:28,"510 Johnson St, Boston, MA 02215" +272557,Wired Headphones,1,11.99,10/11/19 15:19,"86 11th St, San Francisco, CA 94016" +272558,Bose SoundSport Headphones,1,99.99,10/28/19 13:30,"652 Maple St, Austin, TX 73301" +272559,27in FHD Monitor,1,149.99,10/13/19 17:02,"701 Willow St, San Francisco, CA 94016" +272560,Wired Headphones,1,11.99,10/06/19 09:08,"69 10th St, San Francisco, CA 94016" +272560,USB-C Charging Cable,2,11.95,10/06/19 09:08,"69 10th St, San Francisco, CA 94016" +272561,Wired Headphones,2,11.99,10/28/19 15:17,"678 Madison St, New York City, NY 10001" +272562,Lightning Charging Cable,1,14.95,10/15/19 17:53,"10 Cherry St, San Francisco, CA 94016" +272563,AA Batteries (4-pack),1,3.84,10/15/19 12:42,"862 Cedar St, Boston, MA 02215" +272564,Lightning Charging Cable,1,14.95,10/14/19 18:13,"321 13th St, Los Angeles, CA 90001" +272565,Wired Headphones,1,11.99,10/01/19 15:57,"237 Walnut St, San Francisco, CA 94016" +272566,Apple Airpods Headphones,1,150,10/26/19 16:19,"340 6th St, San Francisco, CA 94016" +272567,Apple Airpods Headphones,1,150,10/08/19 21:48,"346 Willow St, Atlanta, GA 30301" +272568,AA Batteries (4-pack),1,3.84,10/14/19 08:24,"344 Hill St, Atlanta, GA 30301" +272569,Apple Airpods Headphones,1,150,10/06/19 15:41,"666 Maple St, New York City, NY 10001" +272570,27in FHD Monitor,1,149.99,10/06/19 19:48,"773 Jefferson St, New York City, NY 10001" +272571,27in 4K Gaming Monitor,1,389.99,10/30/19 14:35,"684 1st St, Seattle, WA 98101" +272572,AAA Batteries (4-pack),3,2.99,10/16/19 02:30,"617 14th St, San Francisco, CA 94016" +272573,27in FHD Monitor,1,149.99,10/17/19 18:52,"990 6th St, San Francisco, CA 94016" +272573,iPhone,1,700,10/17/19 18:52,"990 6th St, San Francisco, CA 94016" +272574,Bose SoundSport Headphones,1,99.99,10/25/19 02:28,"619 Spruce St, Austin, TX 73301" +272575,AAA Batteries (4-pack),2,2.99,10/22/19 09:35,"477 Spruce St, Seattle, WA 98101" +272576,Lightning Charging Cable,2,14.95,10/09/19 09:12,"863 Jefferson St, Boston, MA 02215" +272577,USB-C Charging Cable,1,11.95,10/21/19 20:56,"112 Sunset St, New York City, NY 10001" +272578,Bose SoundSport Headphones,1,99.99,10/05/19 15:51,"730 Main St, Los Angeles, CA 90001" +272579,27in FHD Monitor,1,149.99,10/15/19 00:00,"726 Lake St, San Francisco, CA 94016" +272580,ThinkPad Laptop,1,999.99,10/15/19 08:13,"674 Highland St, Atlanta, GA 30301" +272581,Bose SoundSport Headphones,1,99.99,10/31/19 19:58,"608 Park St, Dallas, TX 75001" +272582,AAA Batteries (4-pack),1,2.99,10/25/19 14:08,"739 2nd St, Atlanta, GA 30301" +272583,USB-C Charging Cable,1,11.95,10/20/19 15:14,"892 10th St, New York City, NY 10001" +272584,USB-C Charging Cable,1,11.95,10/07/19 00:03,"166 Pine St, Dallas, TX 75001" +272585,USB-C Charging Cable,2,11.95,10/21/19 12:48,"808 Jefferson St, New York City, NY 10001" +272586,USB-C Charging Cable,1,11.95,10/27/19 14:11,"603 Maple St, Los Angeles, CA 90001" +272587,Apple Airpods Headphones,1,150,10/23/19 21:06,"687 Madison St, Austin, TX 73301" +272588,Wired Headphones,1,11.99,10/02/19 22:36,"846 Dogwood St, Seattle, WA 98101" +272589,Macbook Pro Laptop,1,1700,10/07/19 18:32,"783 13th St, Los Angeles, CA 90001" +272590,USB-C Charging Cable,1,11.95,10/08/19 14:08,"199 Pine St, Dallas, TX 75001" +272591,Apple Airpods Headphones,1,150,10/25/19 18:38,"131 Spruce St, Los Angeles, CA 90001" +272592,ThinkPad Laptop,1,999.99,10/01/19 13:34,"945 Sunset St, New York City, NY 10001" +272593,AAA Batteries (4-pack),1,2.99,10/12/19 20:48,"249 Chestnut St, Austin, TX 73301" +272594,Lightning Charging Cable,1,14.95,10/29/19 01:27,"863 Adams St, New York City, NY 10001" +272595,27in 4K Gaming Monitor,1,389.99,10/26/19 00:07,"289 5th St, San Francisco, CA 94016" +272596,Apple Airpods Headphones,1,150,10/23/19 19:31,"526 Jefferson St, Atlanta, GA 30301" +272597,AA Batteries (4-pack),1,3.84,10/01/19 12:22,"905 Maple St, Boston, MA 02215" +272598,ThinkPad Laptop,1,999.99,10/21/19 17:17,"49 Jefferson St, Boston, MA 02215" +272599,Wired Headphones,1,11.99,10/10/19 13:51,"498 2nd St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +272600,iPhone,1,700,10/10/19 18:50,"893 Chestnut St, Portland, OR 97035" +272600,Lightning Charging Cable,1,14.95,10/10/19 18:50,"893 Chestnut St, Portland, OR 97035" +272601,Apple Airpods Headphones,1,150,10/30/19 10:13,"106 Elm St, Dallas, TX 75001" +272602,Apple Airpods Headphones,1,150,10/06/19 09:27,"26 Willow St, Austin, TX 73301" +272603,Wired Headphones,1,11.99,10/05/19 14:27,"818 Highland St, Los Angeles, CA 90001" +272604,Lightning Charging Cable,1,14.95,10/01/19 08:40,"261 Chestnut St, New York City, NY 10001" +272605,Apple Airpods Headphones,1,150,10/25/19 17:54,"508 Park St, San Francisco, CA 94016" +272606,Google Phone,1,600,10/29/19 10:48,"805 North St, Los Angeles, CA 90001" +272606,USB-C Charging Cable,1,11.95,10/29/19 10:48,"805 North St, Los Angeles, CA 90001" +272607,Lightning Charging Cable,1,14.95,10/24/19 10:40,"712 Main St, Austin, TX 73301" +272608,34in Ultrawide Monitor,1,379.99,10/29/19 14:22,"15 Lakeview St, Boston, MA 02215" +272609,Google Phone,1,600,10/04/19 19:31,"583 Church St, New York City, NY 10001" +272610,AA Batteries (4-pack),1,3.84,10/16/19 16:55,"277 Cedar St, New York City, NY 10001" +272611,Bose SoundSport Headphones,1,99.99,10/20/19 16:56,"164 Meadow St, New York City, NY 10001" +272612,USB-C Charging Cable,1,11.95,10/21/19 18:17,"910 Walnut St, Portland, OR 97035" +272613,USB-C Charging Cable,2,11.95,10/16/19 19:26,"174 Maple St, Boston, MA 02215" +272614,34in Ultrawide Monitor,1,379.99,10/09/19 16:19,"17 Willow St, Portland, OR 97035" +272615,Bose SoundSport Headphones,1,99.99,10/15/19 17:12,"31 Walnut St, Boston, MA 02215" +272616,34in Ultrawide Monitor,1,379.99,10/12/19 11:13,"878 9th St, New York City, NY 10001" +272617,Wired Headphones,1,11.99,10/10/19 09:27,"129 6th St, New York City, NY 10001" +272618,AAA Batteries (4-pack),1,2.99,10/07/19 14:22,"965 West St, New York City, NY 10001" +272619,20in Monitor,2,109.99,10/02/19 09:48,"125 Lake St, Austin, TX 73301" +272620,AA Batteries (4-pack),1,3.84,10/18/19 09:16,"383 6th St, Seattle, WA 98101" +272621,Bose SoundSport Headphones,1,99.99,10/17/19 05:14,"853 Spruce St, New York City, NY 10001" +272622,Wired Headphones,1,11.99,10/09/19 10:31,"772 Jefferson St, Los Angeles, CA 90001" +272623,Wired Headphones,1,11.99,10/22/19 13:49,"355 Lincoln St, Atlanta, GA 30301" +272624,Lightning Charging Cable,1,14.95,10/13/19 12:49,"265 Park St, Portland, OR 97035" +272625,iPhone,1,700,10/10/19 11:21,"534 11th St, Boston, MA 02215" +272626,ThinkPad Laptop,1,999.99,10/29/19 19:57,"134 Pine St, New York City, NY 10001" +272627,Wired Headphones,1,11.99,10/18/19 19:46,"994 Adams St, Los Angeles, CA 90001" +272628,Apple Airpods Headphones,1,150,10/17/19 20:01,"445 West St, San Francisco, CA 94016" +272629,Wired Headphones,1,11.99,10/25/19 12:55,"918 Highland St, Los Angeles, CA 90001" +272630,Lightning Charging Cable,1,14.95,10/30/19 17:26,"615 Lincoln St, New York City, NY 10001" +272631,Apple Airpods Headphones,1,150,10/06/19 10:40,"814 Chestnut St, Seattle, WA 98101" +272632,20in Monitor,1,109.99,10/16/19 14:10,"85 10th St, Austin, TX 73301" +272633,Flatscreen TV,1,300,10/15/19 04:21,"863 7th St, Boston, MA 02215" +272634,27in FHD Monitor,1,149.99,10/17/19 18:08,"391 Park St, San Francisco, CA 94016" +272634,Flatscreen TV,1,300,10/17/19 18:08,"391 Park St, San Francisco, CA 94016" +272635,27in 4K Gaming Monitor,1,389.99,10/22/19 17:37,"857 Cherry St, Seattle, WA 98101" +272636,USB-C Charging Cable,1,11.95,10/14/19 17:19,"60 Cherry St, Dallas, TX 75001" +272637,AA Batteries (4-pack),1,3.84,10/05/19 00:19,"256 9th St, Los Angeles, CA 90001" +272638,34in Ultrawide Monitor,1,379.99,10/30/19 13:32,"521 Jackson St, Los Angeles, CA 90001" +272639,27in 4K Gaming Monitor,1,389.99,10/24/19 15:34,"33 Cedar St, Portland, OR 97035" +272640,Lightning Charging Cable,1,14.95,10/12/19 11:46,"186 Jackson St, Boston, MA 02215" +272641,USB-C Charging Cable,1,11.95,10/20/19 22:00,"729 Spruce St, New York City, NY 10001" +272642,Vareebadd Phone,1,400,10/07/19 19:47,"271 Spruce St, Portland, OR 97035" +272643,USB-C Charging Cable,2,11.95,10/10/19 19:41,"494 North St, Boston, MA 02215" +272644,USB-C Charging Cable,1,11.95,10/26/19 20:25,"129 Meadow St, Boston, MA 02215" +272645,USB-C Charging Cable,1,11.95,10/18/19 10:09,"920 Hickory St, Los Angeles, CA 90001" +272646,Bose SoundSport Headphones,1,99.99,10/10/19 12:48,"318 Maple St, Atlanta, GA 30301" +272647,Wired Headphones,1,11.99,10/30/19 17:41,"692 Lakeview St, Austin, TX 73301" +272648,Bose SoundSport Headphones,1,99.99,10/18/19 13:17,"668 Lakeview St, Portland, ME 04101" +272649,Lightning Charging Cable,1,14.95,10/04/19 07:43,"54 5th St, Los Angeles, CA 90001" +272650,USB-C Charging Cable,1,11.95,10/06/19 14:35,"934 Washington St, Boston, MA 02215" +272651,AA Batteries (4-pack),2,3.84,10/29/19 00:56,"663 12th St, Boston, MA 02215" +272652,27in 4K Gaming Monitor,1,389.99,10/26/19 19:40,"859 Main St, Los Angeles, CA 90001" +272653,27in FHD Monitor,1,149.99,10/21/19 11:01,"913 5th St, Seattle, WA 98101" +272654,27in FHD Monitor,1,149.99,10/21/19 19:14,"707 10th St, Seattle, WA 98101" +272655,AA Batteries (4-pack),1,3.84,10/26/19 18:58,"58 Jackson St, Boston, MA 02215" +272656,iPhone,1,700,10/07/19 23:53,"956 Highland St, Atlanta, GA 30301" +272657,Lightning Charging Cable,1,14.95,10/12/19 09:28,"911 River St, Atlanta, GA 30301" +272658,Wired Headphones,1,11.99,10/26/19 15:04,"312 9th St, San Francisco, CA 94016" +272659,Lightning Charging Cable,1,14.95,10/16/19 10:17,"17 Walnut St, Portland, OR 97035" +272660,27in FHD Monitor,1,149.99,10/01/19 22:33,"558 Pine St, New York City, NY 10001" +272661,Google Phone,1,600,10/29/19 19:06,"523 Park St, San Francisco, CA 94016" +272662,Wired Headphones,1,11.99,10/15/19 11:19,"594 14th St, New York City, NY 10001" +272663,34in Ultrawide Monitor,1,379.99,10/19/19 08:29,"233 River St, New York City, NY 10001" +272664,AA Batteries (4-pack),1,3.84,10/10/19 23:21,"313 4th St, Boston, MA 02215" +272665,34in Ultrawide Monitor,1,379.99,10/10/19 09:59,"989 4th St, Portland, OR 97035" +272666,Apple Airpods Headphones,1,150,10/27/19 22:45,"197 Willow St, San Francisco, CA 94016" +272667,AA Batteries (4-pack),1,3.84,10/02/19 17:13,"332 Main St, San Francisco, CA 94016" +272668,Lightning Charging Cable,1,14.95,10/27/19 12:05,"799 6th St, Los Angeles, CA 90001" +272669,Bose SoundSport Headphones,1,99.99,10/20/19 11:19,"867 Pine St, Los Angeles, CA 90001" +272670,Apple Airpods Headphones,1,150,10/29/19 20:05,"455 Pine St, New York City, NY 10001" +272671,Google Phone,1,600,10/10/19 13:35,"586 Church St, Atlanta, GA 30301" +272672,Bose SoundSport Headphones,1,99.99,10/07/19 15:25,"847 2nd St, San Francisco, CA 94016" +272673,Bose SoundSport Headphones,1,99.99,10/26/19 11:22,"827 Madison St, San Francisco, CA 94016" +272674,AAA Batteries (4-pack),1,2.99,10/23/19 20:30,"199 Hickory St, Dallas, TX 75001" +272675,Google Phone,1,600,10/20/19 12:29,"19 Lake St, San Francisco, CA 94016" +272676,20in Monitor,1,109.99,10/18/19 00:29,"653 Elm St, Los Angeles, CA 90001" +272677,AA Batteries (4-pack),1,3.84,10/04/19 21:08,"855 6th St, New York City, NY 10001" +272678,Apple Airpods Headphones,1,150,10/24/19 23:46,"999 6th St, Seattle, WA 98101" +272679,Wired Headphones,1,11.99,10/10/19 22:31,"792 6th St, Atlanta, GA 30301" +272680,34in Ultrawide Monitor,1,379.99,10/04/19 19:16,"37 8th St, Austin, TX 73301" +272681,20in Monitor,1,109.99,10/08/19 19:44,"861 Spruce St, Atlanta, GA 30301" +272682,Lightning Charging Cable,1,14.95,10/26/19 05:26,"773 Johnson St, Boston, MA 02215" +272683,AAA Batteries (4-pack),2,2.99,10/17/19 13:24,"429 1st St, Los Angeles, CA 90001" +272684,Wired Headphones,1,11.99,10/03/19 12:36,"904 Highland St, Boston, MA 02215" +272685,Wired Headphones,1,11.99,10/31/19 15:29,"270 Lincoln St, Los Angeles, CA 90001" +272686,Bose SoundSport Headphones,1,99.99,10/12/19 16:45,"852 Willow St, Atlanta, GA 30301" +272687,AAA Batteries (4-pack),2,2.99,10/12/19 10:12,"171 Pine St, Los Angeles, CA 90001" +272688,AAA Batteries (4-pack),2,2.99,10/18/19 21:36,"392 Dogwood St, Los Angeles, CA 90001" +272689,27in 4K Gaming Monitor,1,389.99,10/19/19 23:23,"346 Walnut St, Portland, OR 97035" +272690,Lightning Charging Cable,1,14.95,10/20/19 11:25,"484 10th St, Boston, MA 02215" +272691,Apple Airpods Headphones,1,150,10/22/19 12:29,"809 Madison St, New York City, NY 10001" +272692,AAA Batteries (4-pack),1,2.99,10/11/19 21:05,"996 Jefferson St, San Francisco, CA 94016" +272693,Bose SoundSport Headphones,1,99.99,10/20/19 00:50,"852 9th St, Los Angeles, CA 90001" +272694,Wired Headphones,1,11.99,10/18/19 13:47,"792 Maple St, Portland, OR 97035" +272695,Lightning Charging Cable,1,14.95,10/29/19 09:33,"182 Elm St, Portland, OR 97035" +272696,USB-C Charging Cable,1,11.95,10/28/19 08:13,"26 Chestnut St, Atlanta, GA 30301" +272697,AA Batteries (4-pack),1,3.84,10/29/19 18:33,"503 Sunset St, San Francisco, CA 94016" +272698,USB-C Charging Cable,2,11.95,10/23/19 20:39,"246 Elm St, Los Angeles, CA 90001" +272699,USB-C Charging Cable,1,11.95,10/26/19 15:06,"86 8th St, New York City, NY 10001" +272700,AAA Batteries (4-pack),1,2.99,10/08/19 09:23,"486 Washington St, Los Angeles, CA 90001" +272700,AAA Batteries (4-pack),1,2.99,10/08/19 09:23,"486 Washington St, Los Angeles, CA 90001" +272701,AA Batteries (4-pack),1,3.84,10/10/19 01:25,"850 14th St, Dallas, TX 75001" +272702,Lightning Charging Cable,1,14.95,10/14/19 18:15,"19 1st St, Atlanta, GA 30301" +272703,iPhone,1,700,10/25/19 16:46,"828 North St, Boston, MA 02215" +272703,Lightning Charging Cable,1,14.95,10/25/19 16:46,"828 North St, Boston, MA 02215" +272704,Bose SoundSport Headphones,1,99.99,10/25/19 21:33,"594 Wilson St, San Francisco, CA 94016" +272705,AAA Batteries (4-pack),4,2.99,10/31/19 12:10,"552 Walnut St, Dallas, TX 75001" +272706,Apple Airpods Headphones,1,150,10/05/19 16:22,"477 Elm St, Los Angeles, CA 90001" +272707,Flatscreen TV,1,300,10/28/19 18:58,"66 Forest St, Los Angeles, CA 90001" +272708,Bose SoundSport Headphones,1,99.99,10/18/19 09:47,"364 Sunset St, Los Angeles, CA 90001" +272709,Lightning Charging Cable,1,14.95,10/14/19 23:25,"491 Dogwood St, San Francisco, CA 94016" +272710,AA Batteries (4-pack),1,3.84,10/14/19 04:11,"653 Walnut St, San Francisco, CA 94016" +272711,AA Batteries (4-pack),1,3.84,10/10/19 18:21,"971 Adams St, Dallas, TX 75001" +272712,27in 4K Gaming Monitor,1,389.99,10/11/19 22:25,"106 1st St, San Francisco, CA 94016" +272713,Apple Airpods Headphones,1,150,10/31/19 16:30,"900 Washington St, Seattle, WA 98101" +272714,iPhone,1,700,10/13/19 17:40,"771 Highland St, Austin, TX 73301" +272714,Lightning Charging Cable,2,14.95,10/13/19 17:40,"771 Highland St, Austin, TX 73301" +272715,Apple Airpods Headphones,1,150,10/02/19 14:29,"346 Cherry St, San Francisco, CA 94016" +272716,Google Phone,1,600,10/02/19 09:51,"701 South St, Los Angeles, CA 90001" +272717,iPhone,1,700,10/06/19 21:26,"254 Center St, Boston, MA 02215" +272717,ThinkPad Laptop,1,999.99,10/06/19 21:26,"254 Center St, Boston, MA 02215" +272718,27in FHD Monitor,1,149.99,10/15/19 08:58,"63 Washington St, San Francisco, CA 94016" +272719,Apple Airpods Headphones,1,150,10/17/19 10:52,"354 Elm St, Los Angeles, CA 90001" +272720,AA Batteries (4-pack),1,3.84,10/31/19 20:08,"767 Center St, Austin, TX 73301" +272721,Lightning Charging Cable,1,14.95,10/18/19 06:26,"956 Jackson St, Los Angeles, CA 90001" +272722,iPhone,1,700,10/14/19 15:35,"659 Hickory St, New York City, NY 10001" +272722,Apple Airpods Headphones,1,150,10/14/19 15:35,"659 Hickory St, New York City, NY 10001" +272723,Apple Airpods Headphones,1,150,10/19/19 18:19,"112 Hickory St, San Francisco, CA 94016" +272724,Wired Headphones,1,11.99,10/25/19 19:52,"619 11th St, Austin, TX 73301" +272725,LG Dryer,1,600.0,10/21/19 21:01,"213 West St, Los Angeles, CA 90001" +272726,34in Ultrawide Monitor,1,379.99,10/15/19 10:21,"388 8th St, Seattle, WA 98101" +272727,Lightning Charging Cable,1,14.95,10/24/19 17:21,"352 Pine St, San Francisco, CA 94016" +272728,Vareebadd Phone,1,400,10/17/19 14:39,"900 13th St, Portland, ME 04101" +272728,USB-C Charging Cable,1,11.95,10/17/19 14:39,"900 13th St, Portland, ME 04101" +272729,Bose SoundSport Headphones,1,99.99,10/16/19 12:44,"355 4th St, Boston, MA 02215" +272730,Lightning Charging Cable,1,14.95,10/02/19 13:30,"627 Maple St, Los Angeles, CA 90001" +272731,iPhone,1,700,10/09/19 17:51,"112 Chestnut St, San Francisco, CA 94016" +272732,AA Batteries (4-pack),2,3.84,10/24/19 01:53,"837 14th St, Dallas, TX 75001" +272733,iPhone,1,700,10/15/19 13:02,"805 6th St, Boston, MA 02215" +272734,USB-C Charging Cable,1,11.95,10/07/19 07:49,"220 13th St, Los Angeles, CA 90001" +272735,USB-C Charging Cable,1,11.95,10/07/19 20:51,"534 Sunset St, San Francisco, CA 94016" +272736,ThinkPad Laptop,1,999.99,10/15/19 23:27,"699 9th St, Atlanta, GA 30301" +272737,Bose SoundSport Headphones,1,99.99,10/14/19 00:16,"458 Cedar St, New York City, NY 10001" +272738,Google Phone,1,600,10/14/19 16:03,"817 Adams St, Dallas, TX 75001" +272738,USB-C Charging Cable,1,11.95,10/14/19 16:03,"817 Adams St, Dallas, TX 75001" +272739,AA Batteries (4-pack),1,3.84,10/08/19 15:15,"182 Meadow St, Atlanta, GA 30301" +272740,USB-C Charging Cable,2,11.95,10/19/19 22:15,"795 West St, Boston, MA 02215" +,,,,, +272741,Google Phone,1,600,10/01/19 20:46,"779 Highland St, Los Angeles, CA 90001" +272742,Wired Headphones,1,11.99,10/05/19 07:28,"841 Johnson St, New York City, NY 10001" +272743,AA Batteries (4-pack),1,3.84,10/26/19 16:23,"684 Lakeview St, Boston, MA 02215" +272744,Macbook Pro Laptop,1,1700,10/16/19 20:39,"193 1st St, Austin, TX 73301" +272745,Lightning Charging Cable,1,14.95,10/17/19 13:43,"666 Cherry St, Atlanta, GA 30301" +272746,Lightning Charging Cable,2,14.95,10/08/19 16:36,"295 1st St, San Francisco, CA 94016" +272747,Lightning Charging Cable,1,14.95,10/26/19 19:23,"137 Park St, Los Angeles, CA 90001" +272748,34in Ultrawide Monitor,1,379.99,10/16/19 10:03,"664 Elm St, San Francisco, CA 94016" +272749,AAA Batteries (4-pack),1,2.99,10/09/19 15:46,"951 6th St, San Francisco, CA 94016" +272750,AA Batteries (4-pack),1,3.84,10/14/19 15:21,"956 5th St, New York City, NY 10001" +272751,USB-C Charging Cable,1,11.95,10/09/19 11:31,"56 Wilson St, Austin, TX 73301" +272752,Wired Headphones,1,11.99,10/27/19 07:26,"861 7th St, Dallas, TX 75001" +272753,AA Batteries (4-pack),1,3.84,10/12/19 16:42,"70 14th St, Dallas, TX 75001" +272754,iPhone,1,700,10/22/19 16:04,"161 Main St, San Francisco, CA 94016" +272754,Lightning Charging Cable,1,14.95,10/22/19 16:04,"161 Main St, San Francisco, CA 94016" +272754,Apple Airpods Headphones,1,150,10/22/19 16:04,"161 Main St, San Francisco, CA 94016" +272755,iPhone,1,700,10/23/19 15:23,"377 6th St, Dallas, TX 75001" +272755,Wired Headphones,1,11.99,10/23/19 15:23,"377 6th St, Dallas, TX 75001" +272756,Flatscreen TV,1,300,10/22/19 14:03,"617 Church St, Dallas, TX 75001" +272757,Flatscreen TV,1,300,10/03/19 09:38,"156 Cherry St, Boston, MA 02215" +272758,AAA Batteries (4-pack),2,2.99,10/18/19 12:28,"354 River St, Atlanta, GA 30301" +272759,Lightning Charging Cable,1,14.95,10/09/19 19:35,"652 River St, San Francisco, CA 94016" +272760,Wired Headphones,1,11.99,10/11/19 22:48,"104 Johnson St, Atlanta, GA 30301" +272761,AAA Batteries (4-pack),1,2.99,10/04/19 22:13,"65 Maple St, Dallas, TX 75001" +272762,Flatscreen TV,1,300,10/27/19 19:24,"291 10th St, Portland, OR 97035" +272763,27in 4K Gaming Monitor,1,389.99,10/31/19 20:19,"840 Lake St, Los Angeles, CA 90001" +272764,Lightning Charging Cable,1,14.95,10/20/19 19:30,"428 Dogwood St, New York City, NY 10001" +272765,ThinkPad Laptop,1,999.99,10/14/19 10:42,"94 Hill St, Atlanta, GA 30301" +272766,Google Phone,1,600,10/02/19 12:33,"948 Center St, Los Angeles, CA 90001" +272767,Google Phone,1,600,10/19/19 15:24,"904 8th St, Los Angeles, CA 90001" +272768,USB-C Charging Cable,1,11.95,10/26/19 21:01,"434 14th St, San Francisco, CA 94016" +272769,Wired Headphones,1,11.99,10/09/19 17:11,"715 Church St, New York City, NY 10001" +272770,Bose SoundSport Headphones,1,99.99,10/15/19 20:28,"923 Cherry St, New York City, NY 10001" +272771,Lightning Charging Cable,1,14.95,10/06/19 03:28,"962 Main St, San Francisco, CA 94016" +272772,Wired Headphones,1,11.99,10/23/19 10:51,"214 14th St, New York City, NY 10001" +272773,AA Batteries (4-pack),1,3.84,10/24/19 11:15,"833 West St, Seattle, WA 98101" +272774,Bose SoundSport Headphones,1,99.99,10/26/19 08:33,"20 West St, New York City, NY 10001" +272775,Wired Headphones,1,11.99,10/04/19 23:23,"351 West St, Los Angeles, CA 90001" +272776,AAA Batteries (4-pack),1,2.99,10/09/19 10:54,"158 Hickory St, Seattle, WA 98101" +272777,AAA Batteries (4-pack),2,2.99,10/01/19 07:25,"382 Main St, San Francisco, CA 94016" +272778,AA Batteries (4-pack),1,3.84,10/21/19 12:06,"333 Elm St, Los Angeles, CA 90001" +272779,USB-C Charging Cable,1,11.95,10/21/19 13:49,"229 South St, Austin, TX 73301" +272780,Lightning Charging Cable,1,14.95,10/19/19 17:41,"298 Jackson St, Dallas, TX 75001" +272781,Bose SoundSport Headphones,1,99.99,10/04/19 17:16,"519 Park St, San Francisco, CA 94016" +272782,AAA Batteries (4-pack),1,2.99,10/13/19 12:06,"548 Lincoln St, Boston, MA 02215" +272783,AAA Batteries (4-pack),1,2.99,10/01/19 20:31,"380 12th St, Portland, OR 97035" +272784,Google Phone,1,600,10/04/19 17:55,"73 Cherry St, Los Angeles, CA 90001" +272785,ThinkPad Laptop,1,999.99,10/18/19 19:33,"265 Dogwood St, Atlanta, GA 30301" +272786,ThinkPad Laptop,1,999.99,10/10/19 09:21,"108 14th St, Boston, MA 02215" +272787,Macbook Pro Laptop,1,1700,10/23/19 20:25,"942 Willow St, Atlanta, GA 30301" +272788,Lightning Charging Cable,1,14.95,10/03/19 13:56,"364 Lake St, San Francisco, CA 94016" +272789,AA Batteries (4-pack),1,3.84,10/03/19 07:56,"34 Chestnut St, San Francisco, CA 94016" +272790,LG Washing Machine,1,600.0,10/23/19 11:30,"975 Lakeview St, Austin, TX 73301" +272791,Flatscreen TV,1,300,10/14/19 20:35,"255 Jackson St, Dallas, TX 75001" +272792,AA Batteries (4-pack),1,3.84,10/09/19 12:25,"460 Lakeview St, Dallas, TX 75001" +272793,Apple Airpods Headphones,1,150,10/15/19 16:02,"635 Elm St, Atlanta, GA 30301" +272794,Apple Airpods Headphones,1,150,10/30/19 20:38,"473 South St, San Francisco, CA 94016" +272795,USB-C Charging Cable,2,11.95,10/02/19 12:55,"519 9th St, Atlanta, GA 30301" +272796,AA Batteries (4-pack),2,3.84,10/27/19 13:41,"135 Johnson St, Seattle, WA 98101" +272797,USB-C Charging Cable,1,11.95,10/17/19 22:38,"227 Main St, San Francisco, CA 94016" +272798,34in Ultrawide Monitor,1,379.99,10/13/19 05:31,"653 Church St, Seattle, WA 98101" +272799,Lightning Charging Cable,2,14.95,10/30/19 08:43,"926 Adams St, San Francisco, CA 94016" +272800,Bose SoundSport Headphones,1,99.99,10/31/19 21:41,"207 12th St, Los Angeles, CA 90001" +272801,AA Batteries (4-pack),3,3.84,10/03/19 13:40,"313 Johnson St, San Francisco, CA 94016" +272802,Vareebadd Phone,1,400,10/15/19 00:19,"828 9th St, San Francisco, CA 94016" +272803,27in 4K Gaming Monitor,1,389.99,10/13/19 22:00,"237 Willow St, Portland, OR 97035" +272804,Bose SoundSport Headphones,1,99.99,10/20/19 18:53,"982 Pine St, Los Angeles, CA 90001" +272805,Macbook Pro Laptop,1,1700,10/15/19 12:56,"927 Pine St, Los Angeles, CA 90001" +272806,Macbook Pro Laptop,1,1700,10/17/19 19:43,"24 Chestnut St, Portland, OR 97035" +272807,Wired Headphones,2,11.99,10/22/19 12:42,"601 Johnson St, San Francisco, CA 94016" +272808,USB-C Charging Cable,1,11.95,10/23/19 16:07,"929 West St, Los Angeles, CA 90001" +272809,Apple Airpods Headphones,1,150,10/30/19 02:03,"280 9th St, San Francisco, CA 94016" +272810,34in Ultrawide Monitor,1,379.99,10/09/19 17:37,"358 Cherry St, Dallas, TX 75001" +272811,Lightning Charging Cable,1,14.95,10/25/19 07:38,"908 North St, New York City, NY 10001" +272812,Bose SoundSport Headphones,1,99.99,10/25/19 13:59,"861 Ridge St, San Francisco, CA 94016" +272813,27in 4K Gaming Monitor,1,389.99,10/31/19 06:55,"453 13th St, Portland, OR 97035" +272814,AAA Batteries (4-pack),1,2.99,10/11/19 20:32,"677 Church St, New York City, NY 10001" +272815,AA Batteries (4-pack),1,3.84,10/01/19 17:51,"761 Elm St, Los Angeles, CA 90001" +272816,Lightning Charging Cable,1,14.95,10/15/19 19:00,"694 7th St, Boston, MA 02215" +272817,USB-C Charging Cable,1,11.95,10/16/19 08:59,"950 Main St, Atlanta, GA 30301" +272818,AA Batteries (4-pack),2,3.84,10/14/19 10:30,"958 14th St, San Francisco, CA 94016" +272819,Wired Headphones,1,11.99,10/26/19 17:02,"573 West St, New York City, NY 10001" +272820,AA Batteries (4-pack),1,3.84,10/08/19 11:55,"282 10th St, San Francisco, CA 94016" +272821,iPhone,1,700,10/27/19 18:17,"476 10th St, San Francisco, CA 94016" +272822,Flatscreen TV,1,300,10/23/19 12:28,"133 Washington St, Atlanta, GA 30301" +272823,Lightning Charging Cable,1,14.95,10/19/19 18:47,"557 11th St, Austin, TX 73301" +272824,27in 4K Gaming Monitor,1,389.99,10/11/19 18:20,"514 Maple St, Los Angeles, CA 90001" +272825,USB-C Charging Cable,1,11.95,10/03/19 14:34,"431 5th St, Boston, MA 02215" +272826,Apple Airpods Headphones,1,150,10/18/19 14:04,"105 West St, New York City, NY 10001" +272827,Flatscreen TV,1,300,10/26/19 17:44,"996 Pine St, San Francisco, CA 94016" +272828,USB-C Charging Cable,1,11.95,10/13/19 00:46,"534 13th St, Los Angeles, CA 90001" +272829,USB-C Charging Cable,1,11.95,10/02/19 14:45,"499 Cherry St, Atlanta, GA 30301" +272830,Wired Headphones,1,11.99,10/31/19 20:43,"578 River St, San Francisco, CA 94016" +272831,Bose SoundSport Headphones,1,99.99,10/24/19 13:07,"313 10th St, Dallas, TX 75001" +272832,27in FHD Monitor,1,149.99,10/06/19 08:01,"563 1st St, Seattle, WA 98101" +272833,Wired Headphones,1,11.99,10/23/19 13:59,"461 Washington St, Los Angeles, CA 90001" +272834,Lightning Charging Cable,1,14.95,10/03/19 11:48,"941 Spruce St, Boston, MA 02215" +272835,Google Phone,1,600,10/17/19 16:27,"755 Willow St, New York City, NY 10001" +272836,AA Batteries (4-pack),1,3.84,10/01/19 13:06,"670 North St, Los Angeles, CA 90001" +272837,AA Batteries (4-pack),2,3.84,10/11/19 18:48,"921 2nd St, Los Angeles, CA 90001" +272838,Lightning Charging Cable,1,14.95,10/16/19 16:51,"871 Lakeview St, Dallas, TX 75001" +272839,Bose SoundSport Headphones,1,99.99,10/25/19 18:57,"94 Ridge St, Boston, MA 02215" +272840,Lightning Charging Cable,1,14.95,10/22/19 19:19,"273 Pine St, Los Angeles, CA 90001" +272841,iPhone,1,700,10/02/19 21:43,"493 Sunset St, Boston, MA 02215" +272842,AA Batteries (4-pack),2,3.84,10/08/19 13:09,"666 Hickory St, Seattle, WA 98101" +272843,AAA Batteries (4-pack),2,2.99,10/13/19 12:28,"758 4th St, San Francisco, CA 94016" +272844,USB-C Charging Cable,1,11.95,10/18/19 02:19,"227 13th St, Seattle, WA 98101" +272845,AAA Batteries (4-pack),1,2.99,10/22/19 19:42,"476 1st St, Atlanta, GA 30301" +272846,AA Batteries (4-pack),3,3.84,10/04/19 19:45,"927 Lakeview St, San Francisco, CA 94016" +272847,Wired Headphones,1,11.99,10/22/19 04:43,"104 Lakeview St, Dallas, TX 75001" +272848,AA Batteries (4-pack),1,3.84,10/11/19 22:19,"571 River St, Atlanta, GA 30301" +272849,AAA Batteries (4-pack),1,2.99,10/05/19 19:29,"564 1st St, Los Angeles, CA 90001" +272850,Lightning Charging Cable,1,14.95,10/31/19 16:58,"482 Main St, San Francisco, CA 94016" +272851,Wired Headphones,1,11.99,10/31/19 15:25,"932 Cedar St, Los Angeles, CA 90001" +272852,AA Batteries (4-pack),1,3.84,10/05/19 11:06,"883 2nd St, Boston, MA 02215" +272853,Bose SoundSport Headphones,1,99.99,10/13/19 17:40,"642 Johnson St, Portland, OR 97035" +272854,AA Batteries (4-pack),3,3.84,10/24/19 16:17,"91 Cherry St, Los Angeles, CA 90001" +272855,USB-C Charging Cable,1,11.95,10/02/19 21:55,"943 Spruce St, New York City, NY 10001" +272856,AA Batteries (4-pack),1,3.84,10/18/19 12:53,"36 Lakeview St, Austin, TX 73301" +272857,Wired Headphones,1,11.99,10/31/19 11:00,"115 Sunset St, New York City, NY 10001" +272858,Flatscreen TV,1,300,10/21/19 22:29,"446 Highland St, Dallas, TX 75001" +272859,AA Batteries (4-pack),2,3.84,10/06/19 02:22,"542 Dogwood St, Dallas, TX 75001" +272860,AAA Batteries (4-pack),1,2.99,10/30/19 18:44,"323 Elm St, Atlanta, GA 30301" +272861,Flatscreen TV,1,300,10/21/19 21:02,"961 6th St, San Francisco, CA 94016" +272862,AAA Batteries (4-pack),2,2.99,10/12/19 16:05,"420 11th St, Seattle, WA 98101" +272863,Wired Headphones,1,11.99,10/21/19 07:23,"882 Center St, New York City, NY 10001" +272864,Bose SoundSport Headphones,1,99.99,10/20/19 11:10,"602 Cedar St, Dallas, TX 75001" +272865,Lightning Charging Cable,1,14.95,10/07/19 08:01,"42 12th St, Los Angeles, CA 90001" +272866,AA Batteries (4-pack),1,3.84,10/28/19 05:31,"812 Ridge St, Los Angeles, CA 90001" +272867,USB-C Charging Cable,1,11.95,10/31/19 05:45,"465 Jefferson St, Los Angeles, CA 90001" +272868,iPhone,1,700,10/05/19 23:07,"412 Forest St, Los Angeles, CA 90001" +272868,Lightning Charging Cable,1,14.95,10/05/19 23:07,"412 Forest St, Los Angeles, CA 90001" +272868,Apple Airpods Headphones,1,150,10/05/19 23:07,"412 Forest St, Los Angeles, CA 90001" +272869,27in 4K Gaming Monitor,1,389.99,10/26/19 12:12,"482 Willow St, Seattle, WA 98101" +272870,Bose SoundSport Headphones,1,99.99,10/30/19 22:13,"726 Sunset St, Boston, MA 02215" +272871,USB-C Charging Cable,1,11.95,10/27/19 15:01,"420 5th St, New York City, NY 10001" +272872,AA Batteries (4-pack),1,3.84,10/15/19 17:14,"176 Lincoln St, San Francisco, CA 94016" +272873,Apple Airpods Headphones,1,150,10/03/19 01:01,"378 Johnson St, Atlanta, GA 30301" +272874,USB-C Charging Cable,1,11.95,10/22/19 15:05,"307 Madison St, Dallas, TX 75001" +272875,27in FHD Monitor,1,149.99,10/28/19 22:12,"883 North St, Boston, MA 02215" +272876,Macbook Pro Laptop,1,1700,10/17/19 15:55,"98 Lakeview St, San Francisco, CA 94016" +272877,Apple Airpods Headphones,1,150,10/10/19 20:06,"778 Main St, Dallas, TX 75001" +272878,AA Batteries (4-pack),1,3.84,10/19/19 21:40,"648 1st St, Austin, TX 73301" +272879,34in Ultrawide Monitor,1,379.99,10/28/19 13:09,"909 River St, Boston, MA 02215" +272880,USB-C Charging Cable,1,11.95,10/27/19 14:14,"348 Adams St, San Francisco, CA 94016" +272881,AAA Batteries (4-pack),2,2.99,10/13/19 20:04,"517 Highland St, Seattle, WA 98101" +272882,27in FHD Monitor,1,149.99,10/24/19 10:19,"465 Adams St, Boston, MA 02215" +272883,Apple Airpods Headphones,1,150,10/05/19 12:47,"94 Ridge St, Boston, MA 02215" +272884,Apple Airpods Headphones,1,150,10/22/19 15:12,"113 Sunset St, San Francisco, CA 94016" +272885,Lightning Charging Cable,1,14.95,10/15/19 21:01,"623 Adams St, San Francisco, CA 94016" +272886,34in Ultrawide Monitor,1,379.99,10/05/19 08:54,"96 2nd St, San Francisco, CA 94016" +272887,Bose SoundSport Headphones,1,99.99,10/04/19 02:00,"385 Chestnut St, San Francisco, CA 94016" +272888,Lightning Charging Cable,2,14.95,10/11/19 10:34,"120 Lincoln St, Austin, TX 73301" +272889,AAA Batteries (4-pack),5,2.99,10/16/19 21:02,"414 Church St, Dallas, TX 75001" +272890,Bose SoundSport Headphones,1,99.99,10/16/19 07:50,"5 Pine St, Austin, TX 73301" +272891,Lightning Charging Cable,1,14.95,10/29/19 19:47,"685 Meadow St, Los Angeles, CA 90001" +272892,27in 4K Gaming Monitor,1,389.99,10/23/19 16:12,"171 Sunset St, Boston, MA 02215" +272893,AAA Batteries (4-pack),3,2.99,10/08/19 17:40,"889 1st St, San Francisco, CA 94016" +272894,AAA Batteries (4-pack),1,2.99,10/30/19 12:32,"691 Washington St, Los Angeles, CA 90001" +272895,Lightning Charging Cable,1,14.95,10/15/19 14:29,"211 13th St, Los Angeles, CA 90001" +272896,USB-C Charging Cable,1,11.95,10/05/19 17:37,"287 8th St, San Francisco, CA 94016" +272897,34in Ultrawide Monitor,1,379.99,10/15/19 21:18,"293 1st St, San Francisco, CA 94016" +272898,34in Ultrawide Monitor,1,379.99,10/19/19 11:25,"689 Main St, San Francisco, CA 94016" +272899,AAA Batteries (4-pack),1,2.99,10/12/19 00:23,"491 South St, San Francisco, CA 94016" +272900,AA Batteries (4-pack),1,3.84,10/25/19 15:58,"921 Adams St, San Francisco, CA 94016" +272901,AA Batteries (4-pack),2,3.84,10/03/19 12:57,"140 Washington St, San Francisco, CA 94016" +272902,AAA Batteries (4-pack),1,2.99,10/03/19 20:50,"827 Adams St, San Francisco, CA 94016" +272903,Macbook Pro Laptop,1,1700,10/01/19 14:52,"808 Hill St, San Francisco, CA 94016" +272904,27in FHD Monitor,1,149.99,10/13/19 20:43,"368 Wilson St, Seattle, WA 98101" +272905,27in 4K Gaming Monitor,1,389.99,10/28/19 11:47,"377 6th St, San Francisco, CA 94016" +272906,Lightning Charging Cable,1,14.95,10/09/19 19:47,"286 Hickory St, Portland, OR 97035" +272907,USB-C Charging Cable,1,11.95,10/16/19 19:38,"750 Cedar St, Boston, MA 02215" +,,,,, +272908,USB-C Charging Cable,1,11.95,10/24/19 19:27,"544 Johnson St, San Francisco, CA 94016" +272909,AA Batteries (4-pack),2,3.84,10/02/19 20:34,"261 Washington St, Boston, MA 02215" +272910,AAA Batteries (4-pack),1,2.99,10/17/19 22:20,"407 Washington St, Dallas, TX 75001" +272911,iPhone,1,700,10/30/19 17:18,"164 Dogwood St, San Francisco, CA 94016" +272912,AAA Batteries (4-pack),1,2.99,10/06/19 16:21,"863 2nd St, Los Angeles, CA 90001" +272913,USB-C Charging Cable,1,11.95,10/18/19 18:01,"337 Sunset St, San Francisco, CA 94016" +272914,Lightning Charging Cable,1,14.95,10/16/19 17:45,"718 9th St, San Francisco, CA 94016" +272915,iPhone,1,700,10/17/19 12:06,"962 Lakeview St, Portland, OR 97035" +272916,Wired Headphones,1,11.99,10/16/19 22:27,"319 Lakeview St, Dallas, TX 75001" +272917,AA Batteries (4-pack),2,3.84,10/28/19 02:54,"341 Wilson St, New York City, NY 10001" +272918,AA Batteries (4-pack),1,3.84,10/28/19 18:17,"618 7th St, Seattle, WA 98101" +272919,Lightning Charging Cable,1,14.95,10/24/19 13:59,"436 11th St, Atlanta, GA 30301" +272920,Lightning Charging Cable,1,14.95,10/19/19 11:46,"795 Adams St, Atlanta, GA 30301" +272921,AAA Batteries (4-pack),1,2.99,10/03/19 07:04,"935 Washington St, San Francisco, CA 94016" +272922,AAA Batteries (4-pack),2,2.99,10/27/19 15:46,"638 Spruce St, San Francisco, CA 94016" +272923,ThinkPad Laptop,1,999.99,10/17/19 20:19,"246 11th St, San Francisco, CA 94016" +272924,27in 4K Gaming Monitor,1,389.99,10/05/19 21:40,"285 Cedar St, New York City, NY 10001" +272925,iPhone,1,700,10/02/19 17:31,"190 12th St, Seattle, WA 98101" +272926,Lightning Charging Cable,2,14.95,10/18/19 12:10,"365 10th St, San Francisco, CA 94016" +272927,AAA Batteries (4-pack),1,2.99,10/08/19 21:10,"149 9th St, Atlanta, GA 30301" +272928,Macbook Pro Laptop,1,1700,10/18/19 01:04,"523 Jefferson St, San Francisco, CA 94016" +272929,Lightning Charging Cable,1,14.95,10/23/19 15:29,"472 Main St, Dallas, TX 75001" +272930,Wired Headphones,1,11.99,10/09/19 23:24,"918 Meadow St, San Francisco, CA 94016" +272931,AAA Batteries (4-pack),1,2.99,10/09/19 20:03,"918 Park St, Los Angeles, CA 90001" +272932,27in FHD Monitor,1,149.99,10/18/19 09:43,"566 Jefferson St, Portland, OR 97035" +272933,27in FHD Monitor,1,149.99,10/19/19 22:16,"740 Forest St, New York City, NY 10001" +272934,Lightning Charging Cable,1,14.95,10/05/19 12:36,"160 Jackson St, San Francisco, CA 94016" +272935,Wired Headphones,1,11.99,10/22/19 09:21,"841 Walnut St, San Francisco, CA 94016" +272936,USB-C Charging Cable,1,11.95,10/07/19 16:01,"761 13th St, Boston, MA 02215" +272937,Lightning Charging Cable,1,14.95,10/17/19 18:20,"558 13th St, New York City, NY 10001" +272938,USB-C Charging Cable,1,11.95,10/23/19 13:08,"787 Sunset St, Dallas, TX 75001" +272939,AAA Batteries (4-pack),1,2.99,10/29/19 14:37,"973 Willow St, San Francisco, CA 94016" +272940,USB-C Charging Cable,2,11.95,10/26/19 09:43,"705 8th St, Atlanta, GA 30301" +272941,AAA Batteries (4-pack),2,2.99,10/11/19 21:29,"913 7th St, Seattle, WA 98101" +272942,AA Batteries (4-pack),3,3.84,10/16/19 11:56,"739 West St, Boston, MA 02215" +272943,Wired Headphones,1,11.99,10/04/19 09:32,"95 6th St, San Francisco, CA 94016" +272944,iPhone,1,700,10/25/19 08:14,"107 Lakeview St, Dallas, TX 75001" +272944,Lightning Charging Cable,1,14.95,10/25/19 08:14,"107 Lakeview St, Dallas, TX 75001" +272945,AAA Batteries (4-pack),1,2.99,10/30/19 21:32,"240 River St, Portland, OR 97035" +272946,iPhone,1,700,10/09/19 11:35,"235 West St, New York City, NY 10001" +272947,AAA Batteries (4-pack),1,2.99,10/17/19 23:41,"425 8th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +272948,Lightning Charging Cable,1,14.95,10/22/19 13:44,"891 Church St, San Francisco, CA 94016" +272949,ThinkPad Laptop,1,999.99,10/06/19 14:35,"677 Adams St, San Francisco, CA 94016" +272950,USB-C Charging Cable,1,11.95,10/21/19 19:25,"938 River St, San Francisco, CA 94016" +272951,USB-C Charging Cable,1,11.95,10/21/19 19:24,"925 Cherry St, Los Angeles, CA 90001" +272952,iPhone,1,700,10/25/19 20:55,"848 Center St, Boston, MA 02215" +272952,Apple Airpods Headphones,1,150,10/25/19 20:55,"848 Center St, Boston, MA 02215" +272953,Apple Airpods Headphones,1,150,10/17/19 12:33,"331 Lakeview St, San Francisco, CA 94016" +272954,LG Dryer,1,600.0,10/22/19 08:45,"897 Walnut St, Los Angeles, CA 90001" +272955,27in 4K Gaming Monitor,1,389.99,10/08/19 15:13,"824 Hickory St, Boston, MA 02215" +272956,Flatscreen TV,1,300,10/30/19 12:45,"729 4th St, Los Angeles, CA 90001" +272957,Lightning Charging Cable,1,14.95,10/22/19 14:34,"518 Park St, San Francisco, CA 94016" +272958,AAA Batteries (4-pack),6,2.99,10/12/19 00:15,"846 11th St, Portland, OR 97035" +272959,Bose SoundSport Headphones,1,99.99,10/26/19 21:54,"92 Lake St, Los Angeles, CA 90001" +272960,Macbook Pro Laptop,1,1700,10/16/19 13:43,"27 Pine St, Atlanta, GA 30301" +272961,Wired Headphones,1,11.99,10/03/19 09:45,"161 Chestnut St, Portland, OR 97035" +272962,Lightning Charging Cable,1,14.95,10/10/19 09:51,"453 Spruce St, New York City, NY 10001" +272963,Wired Headphones,1,11.99,10/09/19 20:47,"489 Madison St, Dallas, TX 75001" +272964,27in FHD Monitor,1,149.99,10/09/19 11:19,"431 Dogwood St, Atlanta, GA 30301" +272965,AA Batteries (4-pack),1,3.84,10/23/19 14:18,"220 Park St, San Francisco, CA 94016" +272966,34in Ultrawide Monitor,1,379.99,10/03/19 23:40,"254 Lake St, Los Angeles, CA 90001" +272967,iPhone,1,700,10/27/19 21:09,"659 Park St, New York City, NY 10001" +272968,Macbook Pro Laptop,1,1700,10/24/19 19:23,"185 Elm St, Dallas, TX 75001" +272969,AAA Batteries (4-pack),2,2.99,10/07/19 21:12,"971 Center St, Seattle, WA 98101" +272970,Flatscreen TV,1,300,10/29/19 21:55,"158 Ridge St, Los Angeles, CA 90001" +272971,Bose SoundSport Headphones,1,99.99,10/27/19 09:18,"263 Church St, New York City, NY 10001" +272972,Apple Airpods Headphones,1,150,10/02/19 10:03,"197 10th St, Portland, OR 97035" +272973,Wired Headphones,1,11.99,10/22/19 18:35,"790 5th St, New York City, NY 10001" +272974,Apple Airpods Headphones,1,150,10/26/19 12:28,"130 North St, Los Angeles, CA 90001" +272975,AA Batteries (4-pack),1,3.84,10/21/19 05:36,"162 5th St, Los Angeles, CA 90001" +272976,Vareebadd Phone,1,400,10/01/19 18:58,"58 Meadow St, San Francisco, CA 94016" +272976,USB-C Charging Cable,1,11.95,10/01/19 18:58,"58 Meadow St, San Francisco, CA 94016" +272976,Bose SoundSport Headphones,1,99.99,10/01/19 18:58,"58 Meadow St, San Francisco, CA 94016" +272977,34in Ultrawide Monitor,1,379.99,10/12/19 21:29,"95 Ridge St, New York City, NY 10001" +272978,Lightning Charging Cable,1,14.95,10/30/19 16:35,"621 Lake St, Seattle, WA 98101" +272979,iPhone,1,700,10/09/19 23:29,"19 Dogwood St, Austin, TX 73301" +272980,Flatscreen TV,1,300,10/09/19 12:10,"910 Lakeview St, Boston, MA 02215" +272981,Apple Airpods Headphones,1,150,10/23/19 23:05,"469 Lincoln St, Dallas, TX 75001" +272982,Lightning Charging Cable,1,14.95,10/08/19 14:22,"793 Main St, Atlanta, GA 30301" +272983,iPhone,1,700,10/17/19 12:50,"706 Cherry St, San Francisco, CA 94016" +272984,Wired Headphones,1,11.99,10/28/19 16:07,"408 West St, New York City, NY 10001" +272985,Wired Headphones,1,11.99,10/19/19 19:14,"316 Cedar St, San Francisco, CA 94016" +272986,Lightning Charging Cable,1,14.95,10/31/19 23:41,"10 Maple St, Portland, OR 97035" +272987,27in 4K Gaming Monitor,1,389.99,10/10/19 10:34,"358 Forest St, Los Angeles, CA 90001" +272988,Apple Airpods Headphones,1,150,10/01/19 17:54,"172 Adams St, Los Angeles, CA 90001" +272989,Apple Airpods Headphones,1,150,10/30/19 17:45,"378 Hickory St, New York City, NY 10001" +272990,AA Batteries (4-pack),1,3.84,10/18/19 17:27,"227 Ridge St, Boston, MA 02215" +272991,34in Ultrawide Monitor,1,379.99,10/29/19 10:13,"233 Washington St, New York City, NY 10001" +272992,Wired Headphones,1,11.99,10/09/19 10:53,"235 Cherry St, New York City, NY 10001" +272993,AA Batteries (4-pack),2,3.84,10/17/19 21:14,"300 Lakeview St, Austin, TX 73301" +272994,Flatscreen TV,1,300,10/06/19 18:41,"178 Ridge St, Seattle, WA 98101" +272995,Bose SoundSport Headphones,1,99.99,10/23/19 15:38,"562 Park St, Los Angeles, CA 90001" +272996,Apple Airpods Headphones,1,150,10/19/19 15:12,"746 4th St, Dallas, TX 75001" +272997,AA Batteries (4-pack),1,3.84,10/25/19 18:23,"110 Pine St, New York City, NY 10001" +272998,AA Batteries (4-pack),1,3.84,10/07/19 15:45,"257 Jackson St, Austin, TX 73301" +272999,Apple Airpods Headphones,1,150,10/07/19 20:45,"761 Highland St, Los Angeles, CA 90001" +273000,AAA Batteries (4-pack),1,2.99,10/01/19 11:33,"397 12th St, Los Angeles, CA 90001" +273000,Wired Headphones,1,11.99,10/01/19 11:33,"397 12th St, Los Angeles, CA 90001" +273001,AA Batteries (4-pack),1,3.84,10/14/19 00:23,"392 River St, Austin, TX 73301" +273002,USB-C Charging Cable,1,11.95,10/31/19 18:01,"13 Lincoln St, San Francisco, CA 94016" +273003,27in 4K Gaming Monitor,1,389.99,10/04/19 21:00,"312 Hickory St, Dallas, TX 75001" +273004,AAA Batteries (4-pack),1,2.99,10/28/19 15:25,"516 6th St, New York City, NY 10001" +273005,Lightning Charging Cable,1,14.95,10/14/19 13:41,"679 Hickory St, San Francisco, CA 94016" +273006,Bose SoundSport Headphones,1,99.99,10/06/19 08:06,"321 9th St, Boston, MA 02215" +273007,Lightning Charging Cable,1,14.95,10/31/19 12:53,"27 6th St, Dallas, TX 75001" +273008,AA Batteries (4-pack),2,3.84,10/28/19 15:04,"817 Church St, San Francisco, CA 94016" +273009,27in 4K Gaming Monitor,1,389.99,10/25/19 22:37,"613 11th St, Austin, TX 73301" +273010,Vareebadd Phone,1,400,10/22/19 00:21,"41 Cedar St, New York City, NY 10001" +273010,USB-C Charging Cable,1,11.95,10/22/19 00:21,"41 Cedar St, New York City, NY 10001" +273010,iPhone,1,700,10/22/19 00:21,"41 Cedar St, New York City, NY 10001" +273011,Apple Airpods Headphones,1,150,10/25/19 10:54,"122 10th St, Seattle, WA 98101" +273012,Google Phone,1,600,10/12/19 19:50,"942 Jefferson St, Boston, MA 02215" +273013,AA Batteries (4-pack),1,3.84,10/08/19 13:11,"279 South St, Boston, MA 02215" +273014,USB-C Charging Cable,1,11.95,10/14/19 17:06,"314 1st St, Los Angeles, CA 90001" +273015,Wired Headphones,1,11.99,10/08/19 06:11,"780 10th St, San Francisco, CA 94016" +273016,USB-C Charging Cable,2,11.95,10/13/19 18:13,"189 7th St, Los Angeles, CA 90001" +273017,20in Monitor,1,109.99,10/16/19 18:34,"713 Lincoln St, Seattle, WA 98101" +273018,Macbook Pro Laptop,1,1700,10/26/19 09:35,"959 14th St, San Francisco, CA 94016" +273019,AAA Batteries (4-pack),4,2.99,10/21/19 21:46,"432 Park St, New York City, NY 10001" +273020,AA Batteries (4-pack),1,3.84,10/13/19 10:28,"237 Forest St, Atlanta, GA 30301" +273021,27in 4K Gaming Monitor,1,389.99,10/03/19 18:18,"369 Washington St, New York City, NY 10001" +273022,27in 4K Gaming Monitor,1,389.99,10/24/19 11:43,"496 7th St, San Francisco, CA 94016" +273023,Flatscreen TV,1,300,10/16/19 10:42,"701 Center St, San Francisco, CA 94016" +273024,Vareebadd Phone,1,400,10/05/19 06:11,"924 Madison St, San Francisco, CA 94016" +273025,Wired Headphones,1,11.99,10/24/19 14:07,"823 Center St, New York City, NY 10001" +273026,Apple Airpods Headphones,1,150,10/06/19 18:54,"573 Hickory St, Dallas, TX 75001" +273027,34in Ultrawide Monitor,1,379.99,10/14/19 12:58,"127 9th St, Seattle, WA 98101" +273028,AA Batteries (4-pack),1,3.84,10/08/19 20:59,"172 Jackson St, Dallas, TX 75001" +273029,Lightning Charging Cable,1,14.95,10/21/19 13:06,"658 Lincoln St, San Francisco, CA 94016" +273030,Wired Headphones,1,11.99,10/19/19 18:28,"950 Meadow St, New York City, NY 10001" +273031,USB-C Charging Cable,1,11.95,10/19/19 17:20,"394 Forest St, San Francisco, CA 94016" +273032,AAA Batteries (4-pack),1,2.99,10/11/19 18:22,"321 Elm St, Dallas, TX 75001" +273033,AAA Batteries (4-pack),1,2.99,10/31/19 15:27,"98 Center St, San Francisco, CA 94016" +273034,USB-C Charging Cable,1,11.95,10/16/19 16:49,"631 Adams St, Atlanta, GA 30301" +273035,AA Batteries (4-pack),2,3.84,10/11/19 16:48,"462 Church St, New York City, NY 10001" +273036,Apple Airpods Headphones,1,150,10/03/19 13:07,"893 Forest St, New York City, NY 10001" +273037,USB-C Charging Cable,1,11.95,10/18/19 06:50,"647 Wilson St, Portland, ME 04101" +273038,Macbook Pro Laptop,1,1700,10/17/19 12:18,"522 8th St, New York City, NY 10001" +273039,iPhone,1,700,10/27/19 13:29,"28 4th St, Los Angeles, CA 90001" +273039,Wired Headphones,1,11.99,10/27/19 13:29,"28 4th St, Los Angeles, CA 90001" +273040,USB-C Charging Cable,1,11.95,10/24/19 21:02,"958 6th St, San Francisco, CA 94016" +273041,AA Batteries (4-pack),1,3.84,10/20/19 17:57,"193 Forest St, Dallas, TX 75001" +273042,AAA Batteries (4-pack),2,2.99,10/12/19 01:25,"368 8th St, Dallas, TX 75001" +273043,34in Ultrawide Monitor,1,379.99,10/14/19 21:59,"455 Ridge St, San Francisco, CA 94016" +273044,Google Phone,1,600,10/28/19 15:52,"472 Lincoln St, New York City, NY 10001" +273044,Wired Headphones,1,11.99,10/28/19 15:52,"472 Lincoln St, New York City, NY 10001" +273045,AA Batteries (4-pack),2,3.84,10/29/19 15:27,"812 Hickory St, Portland, OR 97035" +273046,Bose SoundSport Headphones,1,99.99,10/01/19 18:56,"918 Madison St, San Francisco, CA 94016" +273047,AA Batteries (4-pack),1,3.84,10/23/19 17:47,"317 9th St, San Francisco, CA 94016" +273048,AA Batteries (4-pack),1,3.84,10/07/19 17:52,"454 4th St, San Francisco, CA 94016" +273049,USB-C Charging Cable,1,11.95,10/17/19 21:17,"602 Wilson St, Seattle, WA 98101" +273050,34in Ultrawide Monitor,1,379.99,10/03/19 14:25,"346 4th St, San Francisco, CA 94016" +273051,Google Phone,1,600,10/23/19 04:46,"198 Main St, Los Angeles, CA 90001" +273051,USB-C Charging Cable,2,11.95,10/23/19 04:46,"198 Main St, Los Angeles, CA 90001" +273052,AA Batteries (4-pack),1,3.84,10/27/19 19:40,"534 1st St, Los Angeles, CA 90001" +273053,34in Ultrawide Monitor,1,379.99,10/31/19 19:32,"409 13th St, San Francisco, CA 94016" +273054,AA Batteries (4-pack),1,3.84,10/26/19 18:11,"298 Main St, Los Angeles, CA 90001" +273055,Bose SoundSport Headphones,1,99.99,10/01/19 12:24,"295 Sunset St, Atlanta, GA 30301" +273056,Lightning Charging Cable,1,14.95,10/24/19 12:09,"806 West St, Los Angeles, CA 90001" +273057,Lightning Charging Cable,1,14.95,10/15/19 11:57,"823 Main St, Boston, MA 02215" +273058,USB-C Charging Cable,1,11.95,10/30/19 23:08,"915 Center St, Atlanta, GA 30301" +273059,27in 4K Gaming Monitor,1,389.99,10/08/19 20:19,"359 Willow St, Los Angeles, CA 90001" +273060,Bose SoundSport Headphones,1,99.99,10/01/19 11:17,"570 Jackson St, San Francisco, CA 94016" +273061,Apple Airpods Headphones,1,150,10/06/19 20:57,"943 Lake St, Los Angeles, CA 90001" +273062,AA Batteries (4-pack),1,3.84,10/16/19 06:24,"730 Pine St, San Francisco, CA 94016" +273063,AA Batteries (4-pack),2,3.84,10/19/19 17:37,"451 5th St, Los Angeles, CA 90001" +273064,AA Batteries (4-pack),1,3.84,10/05/19 23:14,"877 Elm St, Austin, TX 73301" +273065,Lightning Charging Cable,4,14.95,10/27/19 11:29,"695 River St, New York City, NY 10001" +273066,Bose SoundSport Headphones,1,99.99,10/20/19 15:06,"949 Center St, Austin, TX 73301" +273067,Apple Airpods Headphones,1,150,10/30/19 19:47,"917 Adams St, Portland, OR 97035" +273068,Lightning Charging Cable,1,14.95,10/09/19 21:09,"845 2nd St, Seattle, WA 98101" +273069,AA Batteries (4-pack),1,3.84,10/06/19 11:38,"736 Wilson St, Los Angeles, CA 90001" +273070,iPhone,1,700,10/26/19 01:33,"624 Pine St, Los Angeles, CA 90001" +273071,Wired Headphones,1,11.99,10/22/19 13:10,"122 Ridge St, New York City, NY 10001" +273072,AA Batteries (4-pack),1,3.84,10/30/19 19:28,"664 Hickory St, San Francisco, CA 94016" +273073,AA Batteries (4-pack),2,3.84,10/30/19 16:03,"288 Maple St, Los Angeles, CA 90001" +273074,27in FHD Monitor,1,149.99,10/29/19 18:50,"860 2nd St, New York City, NY 10001" +273075,Vareebadd Phone,1,400,10/05/19 20:59,"692 12th St, Atlanta, GA 30301" +273075,USB-C Charging Cable,1,11.95,10/05/19 20:59,"692 12th St, Atlanta, GA 30301" +273076,ThinkPad Laptop,1,999.99,10/20/19 21:06,"964 Forest St, San Francisco, CA 94016" +273077,Flatscreen TV,1,300,10/03/19 15:20,"398 Highland St, Dallas, TX 75001" +273078,Vareebadd Phone,1,400,10/09/19 06:37,"662 14th St, Dallas, TX 75001" +273078,Bose SoundSport Headphones,1,99.99,10/09/19 06:37,"662 14th St, Dallas, TX 75001" +273079,AA Batteries (4-pack),1,3.84,10/23/19 03:46,"411 Wilson St, Dallas, TX 75001" +273080,Bose SoundSport Headphones,1,99.99,10/13/19 13:18,"146 Cedar St, New York City, NY 10001" +273081,AA Batteries (4-pack),1,3.84,10/03/19 21:15,"355 8th St, San Francisco, CA 94016" +273082,Macbook Pro Laptop,1,1700,10/24/19 21:17,"762 Wilson St, San Francisco, CA 94016" +273083,Lightning Charging Cable,1,14.95,10/10/19 10:14,"661 Maple St, Boston, MA 02215" +273084,Lightning Charging Cable,1,14.95,10/21/19 15:58,"681 Johnson St, Dallas, TX 75001" +273085,AAA Batteries (4-pack),2,2.99,10/25/19 08:12,"991 Cedar St, Portland, ME 04101" +273086,Wired Headphones,1,11.99,10/19/19 00:01,"578 10th St, Dallas, TX 75001" +273087,AA Batteries (4-pack),1,3.84,10/31/19 07:24,"446 Walnut St, Dallas, TX 75001" +273088,AAA Batteries (4-pack),2,2.99,10/13/19 21:42,"485 11th St, Seattle, WA 98101" +273089,Bose SoundSport Headphones,1,99.99,10/13/19 18:52,"147 7th St, Boston, MA 02215" +273090,Lightning Charging Cable,1,14.95,10/14/19 10:57,"73 Hill St, Los Angeles, CA 90001" +273091,Lightning Charging Cable,1,14.95,10/20/19 18:38,"167 Jefferson St, Boston, MA 02215" +273092,AA Batteries (4-pack),1,3.84,10/29/19 13:41,"947 4th St, New York City, NY 10001" +273093,34in Ultrawide Monitor,1,379.99,10/09/19 16:06,"582 Highland St, Boston, MA 02215" +273094,Apple Airpods Headphones,1,150,10/21/19 10:11,"277 Ridge St, New York City, NY 10001" +273095,Google Phone,1,600,10/09/19 23:13,"389 Washington St, Los Angeles, CA 90001" +273096,Bose SoundSport Headphones,1,99.99,10/09/19 10:33,"396 Cherry St, Portland, OR 97035" +273097,Vareebadd Phone,1,400,10/24/19 21:08,"100 River St, New York City, NY 10001" +273098,AAA Batteries (4-pack),1,2.99,10/02/19 16:08,"684 Walnut St, Boston, MA 02215" +273099,34in Ultrawide Monitor,1,379.99,10/29/19 06:46,"791 North St, Atlanta, GA 30301" +273100,Flatscreen TV,1,300,10/27/19 18:32,"869 1st St, Austin, TX 73301" +273101,27in 4K Gaming Monitor,1,389.99,10/09/19 13:15,"6 Chestnut St, Portland, OR 97035" +273102,Lightning Charging Cable,2,14.95,10/21/19 16:30,"809 North St, Los Angeles, CA 90001" +273103,Vareebadd Phone,1,400,10/15/19 17:28,"721 Wilson St, Atlanta, GA 30301" +273103,USB-C Charging Cable,1,11.95,10/15/19 17:28,"721 Wilson St, Atlanta, GA 30301" +273104,Flatscreen TV,1,300,10/01/19 08:27,"671 South St, Los Angeles, CA 90001" +273105,AAA Batteries (4-pack),1,2.99,10/26/19 11:51,"308 11th St, San Francisco, CA 94016" +273106,Apple Airpods Headphones,1,150,10/20/19 11:30,"514 Spruce St, Boston, MA 02215" +273107,Bose SoundSport Headphones,1,99.99,10/01/19 11:50,"817 Highland St, San Francisco, CA 94016" +273108,AAA Batteries (4-pack),1,2.99,10/15/19 12:24,"731 6th St, Los Angeles, CA 90001" +273109,USB-C Charging Cable,1,11.95,10/21/19 03:47,"733 8th St, Atlanta, GA 30301" +273110,Wired Headphones,1,11.99,10/22/19 20:23,"541 8th St, San Francisco, CA 94016" +273111,Macbook Pro Laptop,1,1700,10/19/19 17:33,"195 6th St, Los Angeles, CA 90001" +273112,Bose SoundSport Headphones,1,99.99,10/13/19 19:46,"129 Elm St, Austin, TX 73301" +273113,Lightning Charging Cable,1,14.95,10/29/19 18:58,"719 Dogwood St, New York City, NY 10001" +273114,USB-C Charging Cable,1,11.95,10/09/19 17:22,"245 Hickory St, Portland, OR 97035" +273115,AA Batteries (4-pack),2,3.84,10/02/19 01:21,"901 Ridge St, Portland, OR 97035" +273116,Lightning Charging Cable,1,14.95,10/18/19 21:51,"536 North St, Dallas, TX 75001" +273117,ThinkPad Laptop,1,999.99,10/14/19 11:49,"922 Elm St, Seattle, WA 98101" +273118,AA Batteries (4-pack),2,3.84,10/23/19 11:58,"537 1st St, New York City, NY 10001" +273119,AA Batteries (4-pack),1,3.84,10/18/19 09:00,"365 Lakeview St, San Francisco, CA 94016" +273120,Lightning Charging Cable,1,14.95,10/25/19 18:11,"575 13th St, Seattle, WA 98101" +273121,LG Washing Machine,1,600.0,10/13/19 08:27,"755 Madison St, San Francisco, CA 94016" +273122,Flatscreen TV,1,300,10/08/19 18:08,"766 14th St, Los Angeles, CA 90001" +273123,Bose SoundSport Headphones,1,99.99,10/13/19 17:58,"123 Park St, New York City, NY 10001" +273124,34in Ultrawide Monitor,1,379.99,10/27/19 22:40,"716 South St, Dallas, TX 75001" +273125,Apple Airpods Headphones,1,150,10/16/19 16:27,"772 Hill St, Dallas, TX 75001" +273126,34in Ultrawide Monitor,1,379.99,10/20/19 18:28,"321 Dogwood St, Atlanta, GA 30301" +273127,AA Batteries (4-pack),1,3.84,10/22/19 10:29,"191 River St, Boston, MA 02215" +273128,Lightning Charging Cable,1,14.95,10/15/19 12:29,"470 Meadow St, Atlanta, GA 30301" +273129,AAA Batteries (4-pack),2,2.99,10/20/19 14:36,"822 Hill St, Portland, OR 97035" +273130,27in 4K Gaming Monitor,1,389.99,10/13/19 10:27,"631 Meadow St, Atlanta, GA 30301" +273131,Lightning Charging Cable,1,14.95,10/14/19 01:33,"188 Elm St, Dallas, TX 75001" +273131,Wired Headphones,1,11.99,10/14/19 01:33,"188 Elm St, Dallas, TX 75001" +273132,AAA Batteries (4-pack),2,2.99,10/24/19 19:30,"678 5th St, Dallas, TX 75001" +273133,USB-C Charging Cable,1,11.95,10/13/19 20:18,"592 10th St, San Francisco, CA 94016" +273134,USB-C Charging Cable,1,11.95,10/30/19 19:36,"408 North St, San Francisco, CA 94016" +273135,AA Batteries (4-pack),1,3.84,10/01/19 11:44,"962 Main St, San Francisco, CA 94016" +273136,Bose SoundSport Headphones,1,99.99,10/20/19 10:01,"170 Jefferson St, San Francisco, CA 94016" +273136,USB-C Charging Cable,1,11.95,10/20/19 10:01,"170 Jefferson St, San Francisco, CA 94016" +273137,27in 4K Gaming Monitor,1,389.99,10/19/19 12:48,"925 4th St, Atlanta, GA 30301" +273138,AA Batteries (4-pack),1,3.84,10/06/19 23:01,"995 Willow St, Atlanta, GA 30301" +273139,AA Batteries (4-pack),1,3.84,10/22/19 00:24,"18 South St, San Francisco, CA 94016" +273140,AAA Batteries (4-pack),1,2.99,10/11/19 20:15,"942 10th St, San Francisco, CA 94016" +273141,Bose SoundSport Headphones,1,99.99,10/14/19 13:52,"72 Jackson St, Dallas, TX 75001" +273142,Google Phone,1,600,10/27/19 17:11,"534 Forest St, San Francisco, CA 94016" +273143,USB-C Charging Cable,1,11.95,10/07/19 19:22,"617 Walnut St, Dallas, TX 75001" +273144,Bose SoundSport Headphones,1,99.99,10/16/19 15:53,"505 Center St, Austin, TX 73301" +273145,Bose SoundSport Headphones,1,99.99,10/13/19 20:15,"547 Ridge St, Seattle, WA 98101" +273146,Apple Airpods Headphones,1,150,10/15/19 18:44,"4 Walnut St, San Francisco, CA 94016" +273147,AAA Batteries (4-pack),2,2.99,10/29/19 22:35,"773 1st St, New York City, NY 10001" +273148,USB-C Charging Cable,2,11.95,10/29/19 09:48,"627 Lincoln St, Austin, TX 73301" +273149,iPhone,1,700,10/23/19 07:43,"91 7th St, Los Angeles, CA 90001" +273150,iPhone,1,700,10/15/19 11:40,"93 6th St, Boston, MA 02215" +273151,USB-C Charging Cable,1,11.95,10/27/19 21:51,"777 West St, Seattle, WA 98101" +,,,,, +273152,Apple Airpods Headphones,1,150,10/02/19 07:30,"983 9th St, San Francisco, CA 94016" +273152,Bose SoundSport Headphones,1,99.99,10/02/19 07:30,"983 9th St, San Francisco, CA 94016" +273153,Apple Airpods Headphones,1,150,10/03/19 18:53,"511 7th St, Atlanta, GA 30301" +273154,AAA Batteries (4-pack),1,2.99,10/23/19 00:02,"598 Johnson St, Los Angeles, CA 90001" +273155,Lightning Charging Cable,1,14.95,10/26/19 16:48,"515 1st St, San Francisco, CA 94016" +273156,AAA Batteries (4-pack),1,2.99,10/10/19 12:55,"729 Willow St, Dallas, TX 75001" +273157,Wired Headphones,1,11.99,10/14/19 19:07,"22 4th St, Los Angeles, CA 90001" +273158,Apple Airpods Headphones,1,150,10/01/19 18:15,"855 2nd St, Dallas, TX 75001" +273159,27in 4K Gaming Monitor,1,389.99,10/13/19 10:31,"494 Center St, Austin, TX 73301" +273160,Macbook Pro Laptop,1,1700,10/19/19 19:12,"863 4th St, San Francisco, CA 94016" +273161,ThinkPad Laptop,1,999.99,10/08/19 11:45,"20 Meadow St, Austin, TX 73301" +273162,AAA Batteries (4-pack),2,2.99,10/18/19 14:09,"882 Willow St, San Francisco, CA 94016" +273163,27in 4K Gaming Monitor,1,389.99,10/06/19 14:59,"781 Wilson St, Portland, OR 97035" +273164,USB-C Charging Cable,1,11.95,10/21/19 16:22,"876 4th St, Boston, MA 02215" +273165,AA Batteries (4-pack),1,3.84,10/21/19 17:28,"550 West St, Dallas, TX 75001" +273166,Apple Airpods Headphones,1,150,10/16/19 13:45,"295 River St, Los Angeles, CA 90001" +273167,Bose SoundSport Headphones,1,99.99,10/31/19 12:42,"424 9th St, Seattle, WA 98101" +273168,27in FHD Monitor,1,149.99,10/13/19 12:45,"151 Maple St, Atlanta, GA 30301" +273169,Wired Headphones,1,11.99,10/04/19 11:38,"655 South St, Dallas, TX 75001" +273170,20in Monitor,1,109.99,10/29/19 18:19,"436 9th St, Los Angeles, CA 90001" +273171,ThinkPad Laptop,1,999.99,10/10/19 03:55,"410 Maple St, Atlanta, GA 30301" +273172,Apple Airpods Headphones,1,150,10/19/19 10:00,"244 Madison St, San Francisco, CA 94016" +273173,Google Phone,1,600,10/03/19 09:56,"532 9th St, Dallas, TX 75001" +273173,Wired Headphones,1,11.99,10/03/19 09:56,"532 9th St, Dallas, TX 75001" +273174,AAA Batteries (4-pack),3,2.99,10/02/19 21:54,"35 Wilson St, Austin, TX 73301" +273175,USB-C Charging Cable,1,11.95,10/19/19 22:11,"698 Hickory St, Dallas, TX 75001" +273176,USB-C Charging Cable,1,11.95,10/05/19 18:43,"994 Ridge St, San Francisco, CA 94016" +273177,ThinkPad Laptop,1,999.99,10/12/19 20:46,"256 5th St, San Francisco, CA 94016" +273178,AAA Batteries (4-pack),1,2.99,10/31/19 16:52,"695 9th St, San Francisco, CA 94016" +273179,Lightning Charging Cable,1,14.95,10/01/19 16:02,"528 5th St, Dallas, TX 75001" +273180,Wired Headphones,1,11.99,10/19/19 17:07,"532 Johnson St, Los Angeles, CA 90001" +273181,Bose SoundSport Headphones,1,99.99,10/20/19 15:40,"778 Spruce St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +273182,Macbook Pro Laptop,1,1700,11/01/19 00:43,"743 11th St, Boston, MA 02215" +273183,Wired Headphones,1,11.99,10/09/19 16:48,"329 4th St, Los Angeles, CA 90001" +273184,AAA Batteries (4-pack),1,2.99,10/03/19 13:08,"692 Hill St, Portland, OR 97035" +273185,Flatscreen TV,1,300,10/20/19 22:35,"278 7th St, San Francisco, CA 94016" +273186,AA Batteries (4-pack),1,3.84,10/09/19 22:36,"848 North St, San Francisco, CA 94016" +273186,34in Ultrawide Monitor,1,379.99,10/09/19 22:36,"848 North St, San Francisco, CA 94016" +273187,USB-C Charging Cable,1,11.95,10/01/19 19:38,"979 North St, New York City, NY 10001" +273188,Lightning Charging Cable,1,14.95,10/06/19 11:14,"488 Washington St, Austin, TX 73301" +273189,20in Monitor,1,109.99,10/15/19 18:48,"784 Walnut St, Atlanta, GA 30301" +273190,USB-C Charging Cable,1,11.95,10/25/19 16:02,"759 Park St, Atlanta, GA 30301" +273191,Bose SoundSport Headphones,1,99.99,10/04/19 21:21,"761 Main St, Atlanta, GA 30301" +273192,Apple Airpods Headphones,1,150,10/29/19 09:10,"492 Madison St, Dallas, TX 75001" +273193,Flatscreen TV,1,300,10/23/19 09:00,"430 Johnson St, Boston, MA 02215" +273194,34in Ultrawide Monitor,1,379.99,10/23/19 19:42,"938 Highland St, Portland, ME 04101" +273195,Flatscreen TV,1,300,10/10/19 22:05,"703 Lincoln St, San Francisco, CA 94016" +273196,iPhone,1,700,10/12/19 20:45,"33 West St, Portland, OR 97035" +273196,Lightning Charging Cable,1,14.95,10/12/19 20:45,"33 West St, Portland, OR 97035" +273197,Apple Airpods Headphones,1,150,10/11/19 21:14,"38 11th St, San Francisco, CA 94016" +273198,Lightning Charging Cable,1,14.95,10/16/19 17:26,"911 Wilson St, San Francisco, CA 94016" +273199,iPhone,1,700,10/07/19 05:37,"695 Elm St, San Francisco, CA 94016" +273199,Wired Headphones,1,11.99,10/07/19 05:37,"695 Elm St, San Francisco, CA 94016" +273200,AAA Batteries (4-pack),1,2.99,10/05/19 11:36,"437 Lakeview St, New York City, NY 10001" +273201,27in FHD Monitor,1,149.99,10/19/19 19:15,"492 Wilson St, Atlanta, GA 30301" +273202,Bose SoundSport Headphones,1,99.99,10/21/19 17:52,"102 Willow St, Atlanta, GA 30301" +273203,Wired Headphones,1,11.99,10/17/19 23:34,"199 10th St, New York City, NY 10001" +273204,Wired Headphones,1,11.99,10/11/19 09:50,"455 5th St, Los Angeles, CA 90001" +273205,Flatscreen TV,1,300,10/27/19 17:04,"896 Park St, San Francisco, CA 94016" +273206,AAA Batteries (4-pack),1,2.99,10/25/19 15:57,"326 Lincoln St, New York City, NY 10001" +273207,27in FHD Monitor,1,149.99,10/18/19 06:23,"71 North St, San Francisco, CA 94016" +273208,Apple Airpods Headphones,1,150,10/01/19 17:27,"943 Lakeview St, San Francisco, CA 94016" +273209,Flatscreen TV,1,300,10/26/19 17:05,"233 1st St, Boston, MA 02215" +273210,Macbook Pro Laptop,1,1700,10/20/19 18:58,"673 Meadow St, San Francisco, CA 94016" +273211,USB-C Charging Cable,1,11.95,10/02/19 17:38,"586 Pine St, Atlanta, GA 30301" +273212,Lightning Charging Cable,1,14.95,10/09/19 11:18,"508 River St, San Francisco, CA 94016" +273213,Lightning Charging Cable,1,14.95,10/14/19 17:40,"56 Spruce St, New York City, NY 10001" +273214,Wired Headphones,2,11.99,10/11/19 20:30,"845 North St, Boston, MA 02215" +273215,Wired Headphones,1,11.99,10/15/19 18:10,"356 Dogwood St, Boston, MA 02215" +273216,AAA Batteries (4-pack),2,2.99,10/18/19 17:30,"518 14th St, Dallas, TX 75001" +273217,Wired Headphones,2,11.99,10/17/19 14:21,"218 Maple St, Dallas, TX 75001" +273218,LG Dryer,1,600.0,10/07/19 20:26,"17 5th St, New York City, NY 10001" +273219,Lightning Charging Cable,1,14.95,10/21/19 19:55,"435 Spruce St, San Francisco, CA 94016" +273220,34in Ultrawide Monitor,1,379.99,10/15/19 11:53,"470 Adams St, New York City, NY 10001" +273221,27in FHD Monitor,1,149.99,10/23/19 06:49,"823 Main St, Los Angeles, CA 90001" +273222,AAA Batteries (4-pack),1,2.99,10/26/19 08:14,"457 River St, Atlanta, GA 30301" +273223,Lightning Charging Cable,1,14.95,10/30/19 14:53,"47 Church St, Los Angeles, CA 90001" +273224,34in Ultrawide Monitor,1,379.99,10/05/19 08:01,"633 Pine St, New York City, NY 10001" +273225,USB-C Charging Cable,1,11.95,10/17/19 20:53,"872 Lakeview St, New York City, NY 10001" +273226,AA Batteries (4-pack),1,3.84,10/30/19 12:48,"600 Madison St, New York City, NY 10001" +273227,USB-C Charging Cable,1,11.95,10/10/19 12:47,"823 Johnson St, Atlanta, GA 30301" +273228,Bose SoundSport Headphones,1,99.99,10/27/19 18:42,"378 Wilson St, Boston, MA 02215" +273229,Wired Headphones,1,11.99,10/10/19 07:11,"896 10th St, New York City, NY 10001" +273230,Google Phone,1,600,10/21/19 11:48,"56 Highland St, Atlanta, GA 30301" +273231,AAA Batteries (4-pack),2,2.99,10/29/19 15:16,"670 Hill St, Portland, OR 97035" +273232,Apple Airpods Headphones,1,150,10/30/19 04:09,"410 Hill St, Austin, TX 73301" +273233,Bose SoundSport Headphones,1,99.99,10/12/19 14:44,"515 6th St, Seattle, WA 98101" +273234,Bose SoundSport Headphones,1,99.99,10/04/19 08:58,"953 Wilson St, San Francisco, CA 94016" +273235,AA Batteries (4-pack),1,3.84,10/01/19 16:28,"756 Lakeview St, Atlanta, GA 30301" +273236,LG Washing Machine,1,600.0,10/29/19 13:31,"908 Main St, Dallas, TX 75001" +273237,USB-C Charging Cable,1,11.95,10/19/19 20:42,"341 Pine St, Los Angeles, CA 90001" +273238,27in 4K Gaming Monitor,1,389.99,10/11/19 20:45,"676 Madison St, Los Angeles, CA 90001" +273239,USB-C Charging Cable,1,11.95,10/08/19 21:10,"609 Center St, Los Angeles, CA 90001" +273240,USB-C Charging Cable,1,11.95,10/27/19 13:22,"864 8th St, Seattle, WA 98101" +273240,Vareebadd Phone,1,400,10/27/19 13:22,"864 8th St, Seattle, WA 98101" +273241,27in 4K Gaming Monitor,1,389.99,10/16/19 23:04,"197 Dogwood St, San Francisco, CA 94016" +273241,Vareebadd Phone,1,400,10/16/19 23:04,"197 Dogwood St, San Francisco, CA 94016" +273242,USB-C Charging Cable,1,11.95,10/02/19 22:22,"817 13th St, Los Angeles, CA 90001" +273243,AAA Batteries (4-pack),3,2.99,10/11/19 19:08,"852 Lakeview St, Los Angeles, CA 90001" +273244,34in Ultrawide Monitor,1,379.99,10/19/19 13:26,"447 Jefferson St, Los Angeles, CA 90001" +273245,Lightning Charging Cable,1,14.95,10/02/19 17:33,"648 Park St, Austin, TX 73301" +273246,Lightning Charging Cable,3,14.95,10/29/19 12:31,"972 13th St, New York City, NY 10001" +273247,AAA Batteries (4-pack),2,2.99,10/20/19 07:58,"514 Center St, Atlanta, GA 30301" +273248,AAA Batteries (4-pack),1,2.99,10/21/19 11:28,"313 9th St, Boston, MA 02215" +273249,20in Monitor,1,109.99,10/27/19 22:25,"429 6th St, San Francisco, CA 94016" +273250,iPhone,1,700,10/25/19 17:35,"300 Maple St, New York City, NY 10001" +273250,Wired Headphones,1,11.99,10/25/19 17:35,"300 Maple St, New York City, NY 10001" +273251,Wired Headphones,1,11.99,10/18/19 14:31,"935 Willow St, Los Angeles, CA 90001" +273252,Apple Airpods Headphones,1,150,10/06/19 17:12,"64 South St, Los Angeles, CA 90001" +273253,USB-C Charging Cable,1,11.95,10/28/19 10:10,"267 5th St, Atlanta, GA 30301" +273254,AAA Batteries (4-pack),1,2.99,10/16/19 17:16,"851 Main St, Portland, OR 97035" +273255,Apple Airpods Headphones,1,150,10/23/19 15:20,"179 Johnson St, San Francisco, CA 94016" +273256,AAA Batteries (4-pack),5,2.99,10/17/19 21:03,"989 Sunset St, Los Angeles, CA 90001" +273257,Lightning Charging Cable,1,14.95,10/22/19 00:42,"971 5th St, New York City, NY 10001" +273258,Lightning Charging Cable,1,14.95,10/09/19 10:37,"542 Meadow St, San Francisco, CA 94016" +273259,20in Monitor,1,109.99,10/11/19 17:16,"582 9th St, Los Angeles, CA 90001" +273260,AA Batteries (4-pack),3,3.84,10/25/19 11:55,"388 Meadow St, New York City, NY 10001" +273261,AA Batteries (4-pack),2,3.84,10/02/19 22:34,"817 Dogwood St, New York City, NY 10001" +273262,Wired Headphones,1,11.99,10/20/19 13:18,"704 Walnut St, Los Angeles, CA 90001" +273263,Bose SoundSport Headphones,1,99.99,10/20/19 17:01,"408 Sunset St, San Francisco, CA 94016" +273264,34in Ultrawide Monitor,1,379.99,10/16/19 08:23,"121 North St, San Francisco, CA 94016" +273265,Apple Airpods Headphones,1,150,10/21/19 11:25,"266 Jefferson St, Atlanta, GA 30301" +273266,20in Monitor,1,109.99,10/22/19 00:37,"285 Center St, New York City, NY 10001" +273267,Apple Airpods Headphones,1,150,10/15/19 06:53,"766 Wilson St, New York City, NY 10001" +273268,Bose SoundSport Headphones,1,99.99,10/19/19 18:02,"923 Madison St, New York City, NY 10001" +273269,Lightning Charging Cable,1,14.95,10/18/19 12:35,"455 Elm St, Atlanta, GA 30301" +273270,ThinkPad Laptop,1,999.99,10/23/19 23:03,"195 Forest St, New York City, NY 10001" +273271,34in Ultrawide Monitor,1,379.99,10/06/19 18:50,"669 9th St, Boston, MA 02215" +273272,Google Phone,1,600,10/25/19 19:52,"23 14th St, Seattle, WA 98101" +273272,27in 4K Gaming Monitor,1,389.99,10/25/19 19:52,"23 14th St, Seattle, WA 98101" +273273,AA Batteries (4-pack),1,3.84,10/29/19 14:18,"714 Highland St, Atlanta, GA 30301" +273274,Wired Headphones,1,11.99,10/30/19 15:16,"723 Johnson St, San Francisco, CA 94016" +273275,Lightning Charging Cable,1,14.95,10/06/19 13:14,"534 Maple St, New York City, NY 10001" +273276,USB-C Charging Cable,1,11.95,10/26/19 09:09,"610 12th St, Los Angeles, CA 90001" +273277,USB-C Charging Cable,1,11.95,10/19/19 15:07,"845 South St, New York City, NY 10001" +273278,AA Batteries (4-pack),1,3.84,10/22/19 15:50,"516 Johnson St, Austin, TX 73301" +273279,ThinkPad Laptop,1,999.99,10/16/19 12:34,"218 Willow St, Austin, TX 73301" +273280,Bose SoundSport Headphones,1,99.99,10/31/19 15:08,"249 West St, San Francisco, CA 94016" +273281,Flatscreen TV,1,300,10/24/19 11:22,"599 11th St, Austin, TX 73301" +273282,27in 4K Gaming Monitor,1,389.99,10/11/19 17:07,"362 12th St, San Francisco, CA 94016" +273283,USB-C Charging Cable,2,11.95,10/23/19 21:20,"955 Elm St, Dallas, TX 75001" +273284,USB-C Charging Cable,1,11.95,10/26/19 19:50,"50 Wilson St, Seattle, WA 98101" +273285,AA Batteries (4-pack),1,3.84,10/30/19 13:17,"204 1st St, New York City, NY 10001" +273286,AA Batteries (4-pack),1,3.84,10/27/19 09:14,"132 7th St, New York City, NY 10001" +273287,27in FHD Monitor,1,149.99,10/09/19 13:15,"862 7th St, San Francisco, CA 94016" +273288,Bose SoundSport Headphones,1,99.99,10/06/19 21:01,"989 Wilson St, Austin, TX 73301" +273289,Google Phone,1,600,10/30/19 10:15,"852 Ridge St, Dallas, TX 75001" +273290,Google Phone,1,600,10/17/19 19:11,"700 10th St, Atlanta, GA 30301" +273291,Lightning Charging Cable,1,14.95,10/26/19 23:44,"401 Adams St, Boston, MA 02215" +273292,Apple Airpods Headphones,1,150,10/28/19 14:35,"934 North St, Seattle, WA 98101" +273293,USB-C Charging Cable,1,11.95,10/03/19 07:22,"23 Church St, Dallas, TX 75001" +273294,Lightning Charging Cable,1,14.95,10/27/19 14:24,"952 11th St, Dallas, TX 75001" +273295,27in 4K Gaming Monitor,1,389.99,10/16/19 16:01,"437 West St, Los Angeles, CA 90001" +273296,Google Phone,1,600,10/31/19 20:06,"755 West St, San Francisco, CA 94016" +273297,Apple Airpods Headphones,1,150,10/10/19 08:11,"945 South St, Atlanta, GA 30301" +273298,Lightning Charging Cable,1,14.95,10/06/19 06:15,"866 Spruce St, Los Angeles, CA 90001" +273299,Wired Headphones,1,11.99,10/24/19 14:18,"945 Church St, Boston, MA 02215" +273300,AAA Batteries (4-pack),1,2.99,10/26/19 12:44,"457 Spruce St, Dallas, TX 75001" +273301,USB-C Charging Cable,1,11.95,10/21/19 20:05,"644 Johnson St, Boston, MA 02215" +273302,AA Batteries (4-pack),1,3.84,10/03/19 11:44,"385 Center St, New York City, NY 10001" +273303,AA Batteries (4-pack),1,3.84,10/11/19 16:15,"337 Madison St, Boston, MA 02215" +273304,AAA Batteries (4-pack),1,2.99,10/28/19 03:37,"417 Lincoln St, New York City, NY 10001" +273305,Wired Headphones,1,11.99,10/07/19 11:57,"934 Forest St, San Francisco, CA 94016" +273306,34in Ultrawide Monitor,1,379.99,10/14/19 20:28,"527 South St, Austin, TX 73301" +273307,20in Monitor,1,109.99,10/04/19 17:09,"221 Meadow St, San Francisco, CA 94016" +273308,Apple Airpods Headphones,1,150,10/23/19 13:02,"230 Center St, Austin, TX 73301" +273309,Apple Airpods Headphones,1,150,10/18/19 10:08,"978 Maple St, New York City, NY 10001" +273310,USB-C Charging Cable,1,11.95,10/20/19 13:47,"763 Dogwood St, Atlanta, GA 30301" +273311,Wired Headphones,1,11.99,10/08/19 14:57,"235 Dogwood St, Seattle, WA 98101" +273312,27in 4K Gaming Monitor,1,389.99,10/18/19 16:38,"35 Maple St, Portland, OR 97035" +273313,AAA Batteries (4-pack),3,2.99,10/05/19 07:44,"588 Dogwood St, Atlanta, GA 30301" +273314,Bose SoundSport Headphones,1,99.99,10/15/19 19:50,"907 4th St, New York City, NY 10001" +273315,Macbook Pro Laptop,1,1700,10/12/19 15:32,"630 Cedar St, Portland, ME 04101" +273316,iPhone,1,700,10/14/19 14:29,"436 South St, Atlanta, GA 30301" +273317,AAA Batteries (4-pack),1,2.99,10/24/19 23:34,"235 Wilson St, San Francisco, CA 94016" +273318,Lightning Charging Cable,2,14.95,10/19/19 05:41,"555 13th St, San Francisco, CA 94016" +273319,USB-C Charging Cable,1,11.95,10/29/19 11:42,"617 14th St, New York City, NY 10001" +273320,AA Batteries (4-pack),2,3.84,10/22/19 21:57,"262 Hill St, Los Angeles, CA 90001" +273321,20in Monitor,1,109.99,10/27/19 21:51,"886 Ridge St, Austin, TX 73301" +273322,Macbook Pro Laptop,1,1700,10/21/19 14:55,"391 1st St, New York City, NY 10001" +273323,Flatscreen TV,1,300,10/08/19 12:49,"110 Park St, San Francisco, CA 94016" +273324,Lightning Charging Cable,1,14.95,10/31/19 15:49,"384 12th St, Boston, MA 02215" +273325,Lightning Charging Cable,1,14.95,10/10/19 09:37,"383 Highland St, Los Angeles, CA 90001" +273326,Apple Airpods Headphones,1,150,10/06/19 08:17,"66 6th St, New York City, NY 10001" +273327,Apple Airpods Headphones,1,150,10/19/19 18:53,"239 Spruce St, San Francisco, CA 94016" +273328,Apple Airpods Headphones,1,150,10/27/19 07:08,"281 Lake St, San Francisco, CA 94016" +273329,USB-C Charging Cable,1,11.95,10/09/19 17:21,"127 Meadow St, San Francisco, CA 94016" +273330,Bose SoundSport Headphones,1,99.99,10/15/19 14:35,"365 9th St, Boston, MA 02215" +273331,Lightning Charging Cable,1,14.95,10/02/19 07:56,"400 9th St, Portland, OR 97035" +273332,Wired Headphones,1,11.99,10/21/19 22:39,"579 11th St, San Francisco, CA 94016" +273333,27in FHD Monitor,1,149.99,10/04/19 00:08,"462 Park St, Dallas, TX 75001" +273334,USB-C Charging Cable,1,11.95,10/25/19 16:51,"39 Elm St, Boston, MA 02215" +273335,Lightning Charging Cable,1,14.95,10/17/19 00:31,"275 Jefferson St, San Francisco, CA 94016" +273336,Wired Headphones,2,11.99,10/12/19 21:25,"408 North St, Los Angeles, CA 90001" +273337,Macbook Pro Laptop,1,1700,10/01/19 12:08,"428 Jackson St, San Francisco, CA 94016" +273338,Wired Headphones,1,11.99,10/31/19 19:11,"435 Elm St, San Francisco, CA 94016" +273339,34in Ultrawide Monitor,1,379.99,10/27/19 08:17,"734 West St, Boston, MA 02215" +273340,USB-C Charging Cable,1,11.95,10/18/19 18:03,"849 Cedar St, Portland, OR 97035" +273341,34in Ultrawide Monitor,1,379.99,10/03/19 16:59,"430 Washington St, Atlanta, GA 30301" +273342,Bose SoundSport Headphones,1,99.99,10/27/19 14:37,"686 Church St, New York City, NY 10001" +273343,Macbook Pro Laptop,1,1700,10/06/19 14:17,"598 Center St, San Francisco, CA 94016" +273344,Apple Airpods Headphones,1,150,10/26/19 23:04,"642 12th St, San Francisco, CA 94016" +273345,USB-C Charging Cable,1,11.95,10/22/19 22:46,"733 West St, San Francisco, CA 94016" +273346,27in 4K Gaming Monitor,1,389.99,10/05/19 17:30,"202 Walnut St, Austin, TX 73301" +273347,USB-C Charging Cable,2,11.95,10/20/19 18:27,"996 2nd St, San Francisco, CA 94016" +273348,USB-C Charging Cable,2,11.95,10/13/19 10:57,"639 Meadow St, New York City, NY 10001" +273349,Apple Airpods Headphones,1,150,10/06/19 13:28,"902 Washington St, Los Angeles, CA 90001" +273350,LG Washing Machine,1,600.0,10/26/19 10:33,"220 Jefferson St, New York City, NY 10001" +273350,Apple Airpods Headphones,1,150,10/26/19 10:33,"220 Jefferson St, New York City, NY 10001" +273351,iPhone,1,700,10/22/19 10:32,"780 7th St, San Francisco, CA 94016" +273352,AA Batteries (4-pack),2,3.84,10/05/19 11:28,"889 West St, Dallas, TX 75001" +273353,USB-C Charging Cable,2,11.95,10/23/19 09:49,"212 4th St, New York City, NY 10001" +273354,Wired Headphones,1,11.99,10/25/19 22:49,"230 Elm St, San Francisco, CA 94016" +273355,AAA Batteries (4-pack),1,2.99,10/03/19 12:02,"213 Ridge St, Seattle, WA 98101" +273356,AA Batteries (4-pack),2,3.84,10/01/19 08:58,"251 8th St, San Francisco, CA 94016" +273357,Bose SoundSport Headphones,1,99.99,10/08/19 15:56,"930 Hill St, San Francisco, CA 94016" +273358,USB-C Charging Cable,1,11.95,10/30/19 09:49,"758 Hickory St, New York City, NY 10001" +273359,iPhone,1,700,10/16/19 15:40,"501 4th St, New York City, NY 10001" +273360,LG Dryer,1,600.0,10/11/19 11:19,"533 7th St, New York City, NY 10001" +273361,Lightning Charging Cable,1,14.95,10/19/19 00:15,"723 Pine St, Austin, TX 73301" +273362,USB-C Charging Cable,1,11.95,10/19/19 17:01,"131 Ridge St, Boston, MA 02215" +273363,Bose SoundSport Headphones,1,99.99,10/16/19 15:40,"478 Elm St, New York City, NY 10001" +273364,USB-C Charging Cable,1,11.95,10/02/19 07:11,"796 Ridge St, Atlanta, GA 30301" +273365,Apple Airpods Headphones,1,150,10/17/19 01:09,"435 2nd St, New York City, NY 10001" +273366,20in Monitor,1,109.99,10/25/19 16:46,"673 11th St, Los Angeles, CA 90001" +273367,Wired Headphones,1,11.99,10/19/19 08:15,"91 Ridge St, Portland, OR 97035" +273368,27in 4K Gaming Monitor,1,389.99,10/22/19 11:02,"328 Johnson St, Los Angeles, CA 90001" +273369,20in Monitor,1,109.99,10/27/19 22:31,"745 Dogwood St, New York City, NY 10001" +273370,Apple Airpods Headphones,1,150,10/29/19 20:06,"449 South St, Atlanta, GA 30301" +273371,Wired Headphones,2,11.99,10/02/19 12:17,"810 Hickory St, New York City, NY 10001" +273372,Apple Airpods Headphones,1,150,10/27/19 20:30,"401 Park St, New York City, NY 10001" +273373,USB-C Charging Cable,1,11.95,10/17/19 18:42,"360 Church St, San Francisco, CA 94016" +273374,Bose SoundSport Headphones,1,99.99,10/12/19 14:37,"922 14th St, Seattle, WA 98101" +273375,AA Batteries (4-pack),1,3.84,10/31/19 16:03,"977 Cedar St, Los Angeles, CA 90001" +273376,Apple Airpods Headphones,1,150,10/21/19 09:25,"811 Hill St, Boston, MA 02215" +273377,Wired Headphones,2,11.99,10/08/19 13:08,"724 2nd St, New York City, NY 10001" +273378,Apple Airpods Headphones,1,150,10/10/19 16:06,"487 Main St, New York City, NY 10001" +273379,27in FHD Monitor,1,149.99,10/12/19 16:18,"420 Ridge St, New York City, NY 10001" +273380,USB-C Charging Cable,1,11.95,10/08/19 01:36,"376 14th St, Atlanta, GA 30301" +273381,USB-C Charging Cable,1,11.95,10/26/19 20:07,"205 Chestnut St, New York City, NY 10001" +273382,USB-C Charging Cable,1,11.95,10/30/19 10:19,"193 Chestnut St, Atlanta, GA 30301" +273383,USB-C Charging Cable,1,11.95,10/25/19 22:03,"290 1st St, Los Angeles, CA 90001" +273384,27in FHD Monitor,1,149.99,10/05/19 11:00,"86 West St, San Francisco, CA 94016" +273385,USB-C Charging Cable,1,11.95,10/17/19 18:34,"5 Lincoln St, New York City, NY 10001" +273386,AA Batteries (4-pack),2,3.84,10/02/19 22:19,"97 Ridge St, Austin, TX 73301" +273387,USB-C Charging Cable,1,11.95,10/16/19 12:58,"575 2nd St, Portland, OR 97035" +273388,27in FHD Monitor,1,149.99,10/05/19 00:47,"528 Chestnut St, San Francisco, CA 94016" +273389,Lightning Charging Cable,1,14.95,10/12/19 10:30,"710 13th St, San Francisco, CA 94016" +273390,Bose SoundSport Headphones,1,99.99,10/12/19 15:50,"946 River St, San Francisco, CA 94016" +273391,34in Ultrawide Monitor,1,379.99,10/14/19 08:54,"441 Spruce St, Dallas, TX 75001" +273392,34in Ultrawide Monitor,1,379.99,10/20/19 07:42,"34 Chestnut St, San Francisco, CA 94016" +273393,AAA Batteries (4-pack),1,2.99,10/01/19 10:40,"93 Spruce St, Dallas, TX 75001" +273394,Apple Airpods Headphones,1,150,10/09/19 18:55,"104 Hickory St, Austin, TX 73301" +273395,Google Phone,1,600,10/12/19 07:25,"700 Lincoln St, Portland, OR 97035" +273395,Wired Headphones,1,11.99,10/12/19 07:25,"700 Lincoln St, Portland, OR 97035" +273396,27in FHD Monitor,1,149.99,10/31/19 12:34,"261 Dogwood St, Los Angeles, CA 90001" +273397,Apple Airpods Headphones,1,150,10/30/19 14:37,"364 Park St, Los Angeles, CA 90001" +273398,Google Phone,1,600,10/13/19 12:06,"945 Jackson St, Atlanta, GA 30301" +273398,Wired Headphones,2,11.99,10/13/19 12:06,"945 Jackson St, Atlanta, GA 30301" +273399,Google Phone,1,600,10/16/19 19:15,"310 Maple St, Boston, MA 02215" +273400,34in Ultrawide Monitor,1,379.99,10/21/19 13:23,"769 Meadow St, San Francisco, CA 94016" +273401,AA Batteries (4-pack),1,3.84,10/25/19 23:37,"88 North St, New York City, NY 10001" +273402,AA Batteries (4-pack),1,3.84,10/26/19 09:44,"48 2nd St, Los Angeles, CA 90001" +273403,AA Batteries (4-pack),2,3.84,10/12/19 14:06,"976 4th St, Los Angeles, CA 90001" +273403,Apple Airpods Headphones,1,150,10/12/19 14:06,"976 4th St, Los Angeles, CA 90001" +273404,Apple Airpods Headphones,1,150,10/30/19 09:49,"752 Adams St, San Francisco, CA 94016" +273405,27in 4K Gaming Monitor,1,389.99,10/02/19 19:53,"803 9th St, New York City, NY 10001" +273406,Wired Headphones,1,11.99,10/06/19 12:32,"433 Lincoln St, Portland, OR 97035" +273407,27in FHD Monitor,1,149.99,10/11/19 21:07,"541 Dogwood St, Portland, ME 04101" +273408,USB-C Charging Cable,2,11.95,10/23/19 11:03,"753 Adams St, San Francisco, CA 94016" +273409,Bose SoundSport Headphones,1,99.99,10/24/19 16:34,"543 Washington St, Seattle, WA 98101" +273410,AAA Batteries (4-pack),1,2.99,10/31/19 10:02,"150 Hill St, San Francisco, CA 94016" +273411,Bose SoundSport Headphones,1,99.99,10/05/19 16:35,"63 North St, Dallas, TX 75001" +273412,Apple Airpods Headphones,1,150,10/28/19 22:43,"107 Hickory St, Portland, OR 97035" +273413,Apple Airpods Headphones,1,150,10/08/19 19:30,"355 Pine St, New York City, NY 10001" +273414,USB-C Charging Cable,1,11.95,10/12/19 16:38,"871 River St, San Francisco, CA 94016" +273415,Macbook Pro Laptop,1,1700,10/22/19 20:18,"252 10th St, Dallas, TX 75001" +273416,Wired Headphones,1,11.99,10/22/19 19:03,"816 4th St, Dallas, TX 75001" +273417,Bose SoundSport Headphones,1,99.99,10/08/19 20:47,"402 Wilson St, San Francisco, CA 94016" +273418,Wired Headphones,1,11.99,10/21/19 21:32,"276 12th St, San Francisco, CA 94016" +273419,AA Batteries (4-pack),1,3.84,10/30/19 10:02,"221 9th St, Portland, ME 04101" +273420,USB-C Charging Cable,1,11.95,10/28/19 11:37,"939 14th St, Dallas, TX 75001" +273421,Bose SoundSport Headphones,1,99.99,10/29/19 07:42,"360 Spruce St, San Francisco, CA 94016" +273422,USB-C Charging Cable,1,11.95,10/20/19 13:06,"767 Lincoln St, Los Angeles, CA 90001" +273423,Apple Airpods Headphones,1,150,10/02/19 17:45,"975 Jefferson St, New York City, NY 10001" +273424,34in Ultrawide Monitor,1,379.99,10/31/19 13:03,"401 13th St, Dallas, TX 75001" +273425,AAA Batteries (4-pack),4,2.99,10/07/19 19:54,"596 River St, Atlanta, GA 30301" +273426,Google Phone,1,600,10/27/19 21:54,"961 River St, Austin, TX 73301" +273427,27in 4K Gaming Monitor,1,389.99,10/22/19 19:52,"450 Wilson St, Dallas, TX 75001" +273428,iPhone,1,700,10/25/19 19:42,"633 14th St, San Francisco, CA 94016" +273429,Macbook Pro Laptop,1,1700,10/11/19 11:52,"932 Center St, New York City, NY 10001" +273430,AAA Batteries (4-pack),1,2.99,10/10/19 12:03,"602 8th St, Portland, OR 97035" +273431,Apple Airpods Headphones,1,150,10/30/19 21:32,"27 Dogwood St, San Francisco, CA 94016" +273432,iPhone,1,700,10/18/19 15:09,"158 North St, New York City, NY 10001" +273432,Lightning Charging Cable,1,14.95,10/18/19 15:09,"158 North St, New York City, NY 10001" +273433,Macbook Pro Laptop,1,1700,10/20/19 15:32,"715 Wilson St, Los Angeles, CA 90001" +273434,Lightning Charging Cable,1,14.95,10/24/19 19:34,"777 Madison St, Dallas, TX 75001" +273435,ThinkPad Laptop,1,999.99,10/06/19 15:02,"891 Willow St, San Francisco, CA 94016" +273436,Apple Airpods Headphones,1,150,10/02/19 14:31,"861 Johnson St, San Francisco, CA 94016" +273437,AA Batteries (4-pack),2,3.84,10/11/19 13:20,"414 2nd St, San Francisco, CA 94016" +273438,USB-C Charging Cable,2,11.95,10/27/19 16:22,"496 8th St, Atlanta, GA 30301" +273439,27in FHD Monitor,1,149.99,10/08/19 16:46,"505 Elm St, San Francisco, CA 94016" +273440,AAA Batteries (4-pack),1,2.99,10/02/19 19:07,"551 5th St, Dallas, TX 75001" +273441,Google Phone,1,600,10/27/19 10:32,"976 Willow St, Atlanta, GA 30301" +273441,USB-C Charging Cable,2,11.95,10/27/19 10:32,"976 Willow St, Atlanta, GA 30301" +273442,AAA Batteries (4-pack),3,2.99,10/02/19 05:25,"876 Forest St, San Francisco, CA 94016" +273443,Vareebadd Phone,1,400,10/23/19 23:25,"739 Hill St, Dallas, TX 75001" +273444,34in Ultrawide Monitor,1,379.99,10/09/19 10:46,"995 Walnut St, Austin, TX 73301" +273445,Apple Airpods Headphones,1,150,10/21/19 13:16,"209 Sunset St, San Francisco, CA 94016" +273446,AA Batteries (4-pack),5,3.84,10/22/19 15:09,"785 Main St, San Francisco, CA 94016" +273447,34in Ultrawide Monitor,1,379.99,10/27/19 21:47,"743 Adams St, Dallas, TX 75001" +273448,Wired Headphones,1,11.99,10/07/19 20:44,"341 Washington St, San Francisco, CA 94016" +273449,27in FHD Monitor,1,149.99,10/27/19 20:11,"497 4th St, San Francisco, CA 94016" +273450,Wired Headphones,1,11.99,10/13/19 11:07,"129 South St, San Francisco, CA 94016" +273451,Macbook Pro Laptop,1,1700,10/16/19 11:08,"889 West St, Los Angeles, CA 90001" +273452,USB-C Charging Cable,1,11.95,10/27/19 08:42,"629 Hickory St, San Francisco, CA 94016" +273453,Apple Airpods Headphones,1,150,10/26/19 21:01,"855 14th St, New York City, NY 10001" +273454,Lightning Charging Cable,1,14.95,10/02/19 06:18,"685 Johnson St, Portland, OR 97035" +273455,Bose SoundSport Headphones,1,99.99,10/20/19 22:54,"395 Cherry St, Dallas, TX 75001" +273456,AAA Batteries (4-pack),2,2.99,10/28/19 11:28,"932 12th St, Portland, OR 97035" +273456,AA Batteries (4-pack),3,3.84,10/28/19 11:28,"932 12th St, Portland, OR 97035" +273457,Lightning Charging Cable,1,14.95,10/17/19 12:50,"631 Chestnut St, Seattle, WA 98101" +273458,AAA Batteries (4-pack),4,2.99,10/19/19 20:31,"637 10th St, Los Angeles, CA 90001" +273459,iPhone,1,700,10/11/19 00:02,"737 Meadow St, New York City, NY 10001" +273460,20in Monitor,1,109.99,10/29/19 12:22,"498 Adams St, New York City, NY 10001" +273461,USB-C Charging Cable,1,11.95,10/23/19 17:54,"983 Johnson St, San Francisco, CA 94016" +273462,27in FHD Monitor,1,149.99,10/15/19 13:04,"162 Church St, Boston, MA 02215" +273463,AA Batteries (4-pack),1,3.84,10/19/19 11:40,"76 14th St, Dallas, TX 75001" +273464,Wired Headphones,1,11.99,10/21/19 05:23,"495 Meadow St, San Francisco, CA 94016" +273464,AAA Batteries (4-pack),2,2.99,10/21/19 05:23,"495 Meadow St, San Francisco, CA 94016" +273465,iPhone,1,700,10/25/19 20:52,"170 14th St, Seattle, WA 98101" +273466,iPhone,1,700,10/17/19 19:56,"431 Lincoln St, New York City, NY 10001" +273466,Lightning Charging Cable,1,14.95,10/17/19 19:56,"431 Lincoln St, New York City, NY 10001" +273467,27in 4K Gaming Monitor,1,389.99,10/11/19 20:03,"115 8th St, Dallas, TX 75001" +273468,USB-C Charging Cable,1,11.95,10/23/19 17:15,"602 River St, Dallas, TX 75001" +273469,AA Batteries (4-pack),2,3.84,10/06/19 17:14,"184 West St, San Francisco, CA 94016" +273470,Lightning Charging Cable,1,14.95,10/28/19 23:18,"756 10th St, Los Angeles, CA 90001" +273471,Lightning Charging Cable,1,14.95,10/23/19 19:21,"747 Washington St, San Francisco, CA 94016" +273472,34in Ultrawide Monitor,1,379.99,10/25/19 10:55,"179 Church St, Los Angeles, CA 90001" +273473,AA Batteries (4-pack),1,3.84,10/31/19 10:45,"594 Hickory St, San Francisco, CA 94016" +273474,Macbook Pro Laptop,1,1700,10/09/19 22:16,"368 Highland St, San Francisco, CA 94016" +273475,Lightning Charging Cable,1,14.95,10/28/19 20:01,"795 Lincoln St, Los Angeles, CA 90001" +273475,USB-C Charging Cable,1,11.95,10/28/19 20:01,"795 Lincoln St, Los Angeles, CA 90001" +273476,Wired Headphones,1,11.99,10/02/19 16:20,"910 4th St, Portland, OR 97035" +273477,Apple Airpods Headphones,1,150,10/30/19 22:42,"373 Dogwood St, New York City, NY 10001" +273478,USB-C Charging Cable,1,11.95,10/08/19 08:19,"984 Lincoln St, New York City, NY 10001" +273479,Lightning Charging Cable,1,14.95,10/18/19 19:11,"901 Lake St, Austin, TX 73301" +273480,34in Ultrawide Monitor,1,379.99,10/17/19 22:59,"57 West St, Seattle, WA 98101" +273481,Lightning Charging Cable,1,14.95,10/18/19 17:21,"959 Walnut St, San Francisco, CA 94016" +273482,Apple Airpods Headphones,1,150,10/04/19 00:29,"800 11th St, Austin, TX 73301" +273483,AA Batteries (4-pack),2,3.84,10/31/19 17:21,"379 Pine St, Los Angeles, CA 90001" +273484,34in Ultrawide Monitor,1,379.99,10/10/19 13:01,"803 Madison St, San Francisco, CA 94016" +273485,Wired Headphones,1,11.99,10/09/19 11:35,"179 Willow St, New York City, NY 10001" +273486,Bose SoundSport Headphones,1,99.99,10/24/19 16:25,"447 11th St, San Francisco, CA 94016" +273487,Apple Airpods Headphones,1,150,10/17/19 18:59,"998 Jackson St, Atlanta, GA 30301" +273488,AA Batteries (4-pack),1,3.84,10/08/19 13:24,"392 8th St, San Francisco, CA 94016" +273489,iPhone,1,700,10/29/19 17:41,"422 14th St, Portland, OR 97035" +273490,20in Monitor,1,109.99,10/18/19 15:02,"203 Center St, San Francisco, CA 94016" +273491,Vareebadd Phone,1,400,10/09/19 18:00,"468 8th St, Los Angeles, CA 90001" +273491,USB-C Charging Cable,1,11.95,10/09/19 18:00,"468 8th St, Los Angeles, CA 90001" +273491,Wired Headphones,1,11.99,10/09/19 18:00,"468 8th St, Los Angeles, CA 90001" +273492,AAA Batteries (4-pack),1,2.99,10/15/19 19:58,"857 Lake St, Dallas, TX 75001" +273493,AA Batteries (4-pack),1,3.84,10/27/19 10:11,"88 Meadow St, Portland, OR 97035" +273494,USB-C Charging Cable,1,11.95,10/15/19 22:05,"857 South St, Boston, MA 02215" +273495,20in Monitor,1,109.99,10/21/19 18:20,"563 Center St, San Francisco, CA 94016" +273496,Apple Airpods Headphones,1,150,10/28/19 01:18,"479 Park St, San Francisco, CA 94016" +273497,AAA Batteries (4-pack),5,2.99,10/20/19 22:22,"591 Meadow St, New York City, NY 10001" +273498,iPhone,1,700,10/24/19 00:06,"874 9th St, New York City, NY 10001" +273499,iPhone,1,700,10/17/19 12:37,"135 Sunset St, New York City, NY 10001" +273500,Wired Headphones,1,11.99,10/07/19 15:33,"800 Park St, Los Angeles, CA 90001" +273501,AA Batteries (4-pack),2,3.84,10/13/19 17:24,"394 Church St, Austin, TX 73301" +273502,AAA Batteries (4-pack),2,2.99,10/18/19 09:07,"577 Madison St, Austin, TX 73301" +273503,Wired Headphones,1,11.99,10/15/19 14:35,"209 Wilson St, San Francisco, CA 94016" +273504,Lightning Charging Cable,1,14.95,10/08/19 11:56,"42 Adams St, Portland, OR 97035" +273505,AAA Batteries (4-pack),1,2.99,10/31/19 23:02,"864 1st St, New York City, NY 10001" +273506,Bose SoundSport Headphones,1,99.99,10/15/19 04:38,"492 7th St, Dallas, TX 75001" +273506,Bose SoundSport Headphones,1,99.99,10/15/19 04:38,"492 7th St, Dallas, TX 75001" +273507,USB-C Charging Cable,1,11.95,10/15/19 15:07,"44 Cedar St, Los Angeles, CA 90001" +273508,ThinkPad Laptop,1,999.99,10/15/19 12:18,"206 Lake St, Dallas, TX 75001" +273509,USB-C Charging Cable,1,11.95,10/25/19 19:41,"148 Washington St, Los Angeles, CA 90001" +273510,Vareebadd Phone,1,400,10/26/19 19:01,"715 Elm St, Los Angeles, CA 90001" +273511,Apple Airpods Headphones,1,150,10/14/19 19:39,"287 Hill St, New York City, NY 10001" +273512,USB-C Charging Cable,2,11.95,10/11/19 19:29,"275 Jackson St, Boston, MA 02215" +273513,Lightning Charging Cable,1,14.95,10/16/19 11:33,"953 Cedar St, Los Angeles, CA 90001" +273514,Macbook Pro Laptop,1,1700,10/17/19 18:27,"898 West St, San Francisco, CA 94016" +273515,Bose SoundSport Headphones,1,99.99,10/10/19 23:37,"940 Maple St, San Francisco, CA 94016" +273516,Bose SoundSport Headphones,1,99.99,10/05/19 17:33,"849 6th St, Atlanta, GA 30301" +273517,AAA Batteries (4-pack),1,2.99,10/03/19 10:45,"356 Park St, Dallas, TX 75001" +273518,AA Batteries (4-pack),1,3.84,10/27/19 12:53,"331 Madison St, Austin, TX 73301" +273519,iPhone,1,700,10/25/19 19:23,"409 Spruce St, New York City, NY 10001" +273519,Wired Headphones,1,11.99,10/25/19 19:23,"409 Spruce St, New York City, NY 10001" +273520,Wired Headphones,1,11.99,10/25/19 13:17,"677 14th St, Dallas, TX 75001" +273521,AA Batteries (4-pack),2,3.84,10/26/19 14:44,"661 Highland St, Seattle, WA 98101" +273522,Macbook Pro Laptop,1,1700,10/15/19 16:22,"773 9th St, Austin, TX 73301" +273523,27in FHD Monitor,1,149.99,10/19/19 12:00,"302 10th St, Boston, MA 02215" +273524,Wired Headphones,1,11.99,10/18/19 07:01,"108 11th St, San Francisco, CA 94016" +273525,ThinkPad Laptop,1,999.99,10/04/19 09:05,"955 7th St, Dallas, TX 75001" +273526,Google Phone,1,600,10/23/19 19:42,"15 13th St, Dallas, TX 75001" +273526,Wired Headphones,1,11.99,10/23/19 19:42,"15 13th St, Dallas, TX 75001" +273527,Flatscreen TV,1,300,10/19/19 10:04,"253 Jefferson St, Boston, MA 02215" +273528,Wired Headphones,1,11.99,10/04/19 17:22,"720 Center St, New York City, NY 10001" +273529,27in FHD Monitor,1,149.99,10/12/19 12:41,"59 Ridge St, Dallas, TX 75001" +273530,AAA Batteries (4-pack),1,2.99,10/21/19 11:24,"67 1st St, Portland, OR 97035" +273531,Wired Headphones,1,11.99,10/20/19 12:02,"663 Lakeview St, San Francisco, CA 94016" +273532,Lightning Charging Cable,1,14.95,10/04/19 12:17,"409 Madison St, Los Angeles, CA 90001" +273533,27in 4K Gaming Monitor,1,389.99,10/31/19 13:32,"362 Jefferson St, Boston, MA 02215" +273534,27in FHD Monitor,1,149.99,10/30/19 21:45,"775 Park St, Boston, MA 02215" +273535,Bose SoundSport Headphones,1,99.99,10/17/19 11:07,"203 Forest St, Los Angeles, CA 90001" +273536,AA Batteries (4-pack),3,3.84,10/12/19 11:08,"97 6th St, Austin, TX 73301" +273537,27in 4K Gaming Monitor,1,389.99,10/14/19 06:14,"197 River St, Portland, OR 97035" +273538,iPhone,1,700,10/15/19 18:39,"493 Meadow St, Austin, TX 73301" +273539,USB-C Charging Cable,1,11.95,10/26/19 11:26,"973 North St, Dallas, TX 75001" +273540,Lightning Charging Cable,1,14.95,10/20/19 15:10,"927 Spruce St, New York City, NY 10001" +273541,AAA Batteries (4-pack),1,2.99,10/05/19 07:16,"303 10th St, New York City, NY 10001" +273542,LG Washing Machine,1,600.0,10/15/19 08:39,"784 13th St, Boston, MA 02215" +273543,Apple Airpods Headphones,1,150,10/21/19 22:51,"892 Lincoln St, Atlanta, GA 30301" +273544,Lightning Charging Cable,1,14.95,10/12/19 07:38,"338 Walnut St, San Francisco, CA 94016" +273545,AA Batteries (4-pack),1,3.84,10/17/19 00:48,"913 Washington St, Seattle, WA 98101" +273546,Vareebadd Phone,1,400,10/02/19 04:53,"703 Elm St, New York City, NY 10001" +273547,Apple Airpods Headphones,1,150,10/13/19 22:33,"531 10th St, Portland, OR 97035" +273548,USB-C Charging Cable,1,11.95,10/23/19 23:44,"984 Forest St, Atlanta, GA 30301" +273549,AAA Batteries (4-pack),1,2.99,10/01/19 23:51,"288 Spruce St, San Francisco, CA 94016" +273550,iPhone,1,700,10/17/19 18:47,"209 Main St, Los Angeles, CA 90001" +273550,Wired Headphones,1,11.99,10/17/19 18:47,"209 Main St, Los Angeles, CA 90001" +273551,27in 4K Gaming Monitor,1,389.99,10/07/19 15:48,"15 River St, Los Angeles, CA 90001" +273552,Wired Headphones,1,11.99,10/05/19 14:18,"330 Church St, Seattle, WA 98101" +273553,USB-C Charging Cable,1,11.95,10/22/19 15:32,"51 Johnson St, San Francisco, CA 94016" +273554,AA Batteries (4-pack),1,3.84,10/10/19 12:04,"282 Lakeview St, San Francisco, CA 94016" +273555,AAA Batteries (4-pack),2,2.99,10/01/19 21:23,"587 13th St, Austin, TX 73301" +273556,20in Monitor,1,109.99,10/10/19 13:09,"692 Hill St, San Francisco, CA 94016" +273557,Bose SoundSport Headphones,1,99.99,10/26/19 16:07,"62 1st St, New York City, NY 10001" +273558,AA Batteries (4-pack),2,3.84,10/28/19 16:16,"933 West St, Los Angeles, CA 90001" +273559,Bose SoundSport Headphones,1,99.99,10/01/19 13:03,"749 Washington St, San Francisco, CA 94016" +273560,Bose SoundSport Headphones,1,99.99,10/20/19 18:46,"729 Madison St, Dallas, TX 75001" +273561,27in FHD Monitor,1,149.99,10/10/19 16:45,"280 Pine St, Austin, TX 73301" +273562,27in 4K Gaming Monitor,1,389.99,10/07/19 20:52,"812 South St, San Francisco, CA 94016" +273563,27in FHD Monitor,1,149.99,11/01/19 03:39,"292 Church St, San Francisco, CA 94016" +273564,Bose SoundSport Headphones,1,99.99,10/05/19 15:17,"467 Lincoln St, Portland, OR 97035" +273565,Wired Headphones,1,11.99,10/02/19 17:25,"495 South St, San Francisco, CA 94016" +273566,LG Dryer,1,600.0,10/20/19 15:42,"707 5th St, Atlanta, GA 30301" +273567,Lightning Charging Cable,1,14.95,10/19/19 21:32,"800 Maple St, Austin, TX 73301" +273568,iPhone,1,700,10/06/19 15:22,"696 14th St, Seattle, WA 98101" +273568,Wired Headphones,1,11.99,10/06/19 15:22,"696 14th St, Seattle, WA 98101" +273569,AAA Batteries (4-pack),1,2.99,10/21/19 19:04,"973 Elm St, New York City, NY 10001" +273570,34in Ultrawide Monitor,1,379.99,10/26/19 20:50,"321 Meadow St, Seattle, WA 98101" +273571,iPhone,1,700,10/24/19 11:24,"820 West St, Austin, TX 73301" +273572,Lightning Charging Cable,1,14.95,10/08/19 20:41,"79 Maple St, Los Angeles, CA 90001" +273573,Bose SoundSport Headphones,1,99.99,10/06/19 12:15,"122 Wilson St, Seattle, WA 98101" +273574,USB-C Charging Cable,2,11.95,10/16/19 14:23,"833 7th St, Portland, ME 04101" +273575,USB-C Charging Cable,1,11.95,10/16/19 10:36,"661 10th St, San Francisco, CA 94016" +273576,USB-C Charging Cable,1,11.95,10/20/19 21:54,"727 8th St, Boston, MA 02215" +273577,ThinkPad Laptop,1,999.99,10/24/19 10:40,"242 Hickory St, Boston, MA 02215" +273578,AA Batteries (4-pack),1,3.84,10/09/19 08:10,"511 4th St, San Francisco, CA 94016" +273579,iPhone,1,700,10/24/19 17:43,"99 8th St, Atlanta, GA 30301" +273580,AA Batteries (4-pack),1,3.84,10/04/19 16:32,"177 Spruce St, San Francisco, CA 94016" +273581,Lightning Charging Cable,1,14.95,10/09/19 19:50,"310 8th St, Los Angeles, CA 90001" +273582,ThinkPad Laptop,1,999.99,10/08/19 18:15,"837 Chestnut St, New York City, NY 10001" +273583,34in Ultrawide Monitor,1,379.99,10/28/19 13:08,"350 9th St, Boston, MA 02215" +273584,27in FHD Monitor,1,149.99,10/31/19 13:50,"699 Washington St, Seattle, WA 98101" +273585,Macbook Pro Laptop,1,1700,10/31/19 16:25,"387 Lakeview St, Boston, MA 02215" +273586,Lightning Charging Cable,1,14.95,10/15/19 11:16,"319 Johnson St, San Francisco, CA 94016" +273587,USB-C Charging Cable,1,11.95,10/10/19 13:47,"999 5th St, Boston, MA 02215" +273588,Lightning Charging Cable,1,14.95,10/26/19 07:46,"70 Dogwood St, Los Angeles, CA 90001" +273589,Lightning Charging Cable,1,14.95,10/07/19 20:13,"2 Sunset St, Boston, MA 02215" +273590,Apple Airpods Headphones,1,150,10/30/19 16:00,"143 4th St, Portland, OR 97035" +273591,AAA Batteries (4-pack),1,2.99,10/12/19 12:37,"462 1st St, Los Angeles, CA 90001" +273592,Apple Airpods Headphones,1,150,10/16/19 12:18,"60 Meadow St, San Francisco, CA 94016" +273593,ThinkPad Laptop,1,999.99,10/04/19 18:29,"711 Hill St, Atlanta, GA 30301" +273594,27in FHD Monitor,1,149.99,10/14/19 13:42,"343 1st St, Austin, TX 73301" +273595,Google Phone,1,600,10/16/19 21:08,"923 Forest St, Seattle, WA 98101" +273595,USB-C Charging Cable,1,11.95,10/16/19 21:08,"923 Forest St, Seattle, WA 98101" +273596,AA Batteries (4-pack),2,3.84,10/18/19 11:07,"595 6th St, Dallas, TX 75001" +273597,USB-C Charging Cable,2,11.95,10/21/19 15:29,"966 Main St, Atlanta, GA 30301" +273598,USB-C Charging Cable,1,11.95,10/30/19 08:07,"699 Forest St, Los Angeles, CA 90001" +273599,USB-C Charging Cable,1,11.95,10/21/19 17:45,"949 Lake St, San Francisco, CA 94016" +273600,Wired Headphones,1,11.99,10/10/19 12:30,"788 Wilson St, Portland, ME 04101" +273601,USB-C Charging Cable,1,11.95,10/19/19 05:59,"790 Lake St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +273602,Lightning Charging Cable,1,14.95,10/05/19 16:49,"231 Meadow St, New York City, NY 10001" +273603,Lightning Charging Cable,1,14.95,10/14/19 07:21,"868 Elm St, Seattle, WA 98101" +273604,Macbook Pro Laptop,1,1700,10/16/19 14:52,"292 Madison St, San Francisco, CA 94016" +273605,Google Phone,1,600,10/12/19 15:25,"472 7th St, Los Angeles, CA 90001" +273606,AA Batteries (4-pack),2,3.84,10/10/19 09:14,"693 Hickory St, San Francisco, CA 94016" +273607,Bose SoundSport Headphones,1,99.99,10/23/19 11:55,"560 Maple St, Atlanta, GA 30301" +273608,27in FHD Monitor,1,149.99,10/25/19 21:51,"786 Wilson St, San Francisco, CA 94016" +273609,AA Batteries (4-pack),2,3.84,10/01/19 18:49,"952 14th St, New York City, NY 10001" +273610,Wired Headphones,1,11.99,10/10/19 06:36,"831 North St, New York City, NY 10001" +273611,AA Batteries (4-pack),1,3.84,10/12/19 13:39,"470 Sunset St, Los Angeles, CA 90001" +273612,ThinkPad Laptop,1,999.99,10/02/19 12:54,"893 7th St, San Francisco, CA 94016" +273613,AA Batteries (4-pack),1,3.84,10/13/19 12:54,"5 14th St, Boston, MA 02215" +273614,Macbook Pro Laptop,1,1700,10/03/19 21:10,"331 2nd St, Atlanta, GA 30301" +273615,iPhone,1,700,10/30/19 18:34,"758 Jackson St, San Francisco, CA 94016" +273615,Wired Headphones,1,11.99,10/30/19 18:34,"758 Jackson St, San Francisco, CA 94016" +273616,USB-C Charging Cable,1,11.95,10/26/19 16:37,"277 4th St, Atlanta, GA 30301" +273617,27in FHD Monitor,1,149.99,10/18/19 09:41,"352 9th St, San Francisco, CA 94016" +273618,Bose SoundSport Headphones,1,99.99,10/26/19 19:08,"245 Hill St, Portland, ME 04101" +273619,AAA Batteries (4-pack),1,2.99,10/03/19 01:32,"699 Center St, Los Angeles, CA 90001" +273620,AAA Batteries (4-pack),3,2.99,10/28/19 06:18,"883 Walnut St, New York City, NY 10001" +273621,Lightning Charging Cable,1,14.95,10/06/19 17:12,"360 Lincoln St, New York City, NY 10001" +273622,Flatscreen TV,1,300,10/01/19 16:16,"227 Highland St, Atlanta, GA 30301" +273623,Lightning Charging Cable,1,14.95,10/13/19 22:09,"180 Pine St, New York City, NY 10001" +273624,Google Phone,1,600,10/06/19 14:17,"133 Johnson St, New York City, NY 10001" +273625,20in Monitor,1,109.99,10/15/19 07:27,"260 Chestnut St, Austin, TX 73301" +273626,AAA Batteries (4-pack),1,2.99,10/10/19 14:31,"853 South St, Boston, MA 02215" +273627,AAA Batteries (4-pack),1,2.99,10/10/19 19:54,"563 Spruce St, Atlanta, GA 30301" +273628,27in FHD Monitor,1,149.99,10/08/19 13:23,"221 6th St, Boston, MA 02215" +273629,Google Phone,1,600,10/26/19 16:52,"102 River St, San Francisco, CA 94016" +273630,Wired Headphones,1,11.99,10/31/19 21:18,"355 Willow St, Los Angeles, CA 90001" +273631,Wired Headphones,1,11.99,10/11/19 22:26,"691 Walnut St, Boston, MA 02215" +273632,AAA Batteries (4-pack),1,2.99,10/04/19 17:39,"207 Adams St, Boston, MA 02215" +273633,AA Batteries (4-pack),1,3.84,10/10/19 14:36,"323 Cherry St, Dallas, TX 75001" +273634,Bose SoundSport Headphones,1,99.99,10/21/19 12:05,"921 Maple St, Los Angeles, CA 90001" +273635,Lightning Charging Cable,1,14.95,10/10/19 15:31,"497 Pine St, San Francisco, CA 94016" +273636,27in FHD Monitor,1,149.99,10/24/19 21:54,"62 River St, Dallas, TX 75001" +273637,Bose SoundSport Headphones,1,99.99,10/27/19 13:07,"276 Highland St, New York City, NY 10001" +273638,27in FHD Monitor,1,149.99,10/27/19 10:00,"552 10th St, San Francisco, CA 94016" +273639,iPhone,1,700,10/27/19 13:34,"999 6th St, San Francisco, CA 94016" +273640,AA Batteries (4-pack),1,3.84,10/14/19 10:51,"959 Main St, Los Angeles, CA 90001" +273641,AA Batteries (4-pack),1,3.84,10/24/19 18:12,"899 Johnson St, Los Angeles, CA 90001" +273642,Bose SoundSport Headphones,1,99.99,10/22/19 13:34,"519 6th St, San Francisco, CA 94016" +273643,34in Ultrawide Monitor,1,379.99,10/20/19 19:24,"413 Dogwood St, Portland, OR 97035" +273644,Wired Headphones,1,11.99,10/24/19 17:23,"875 6th St, Seattle, WA 98101" +273645,Lightning Charging Cable,1,14.95,10/17/19 09:30,"526 Lincoln St, Seattle, WA 98101" +273646,27in FHD Monitor,1,149.99,10/07/19 15:57,"43 Sunset St, Los Angeles, CA 90001" +273647,Wired Headphones,1,11.99,10/16/19 12:57,"505 Madison St, Portland, OR 97035" +273648,Lightning Charging Cable,1,14.95,10/12/19 15:27,"39 Dogwood St, New York City, NY 10001" +273649,27in 4K Gaming Monitor,1,389.99,10/04/19 19:50,"833 Madison St, Dallas, TX 75001" +273650,Lightning Charging Cable,1,14.95,10/24/19 22:35,"853 Park St, Seattle, WA 98101" +273651,AA Batteries (4-pack),1,3.84,10/19/19 18:27,"936 6th St, New York City, NY 10001" +273652,Wired Headphones,1,11.99,10/09/19 12:32,"764 Church St, New York City, NY 10001" +273653,Lightning Charging Cable,1,14.95,10/20/19 19:58,"320 Highland St, Boston, MA 02215" +273654,Lightning Charging Cable,1,14.95,10/16/19 20:31,"583 8th St, Los Angeles, CA 90001" +273655,AA Batteries (4-pack),2,3.84,10/13/19 14:36,"506 Lake St, Los Angeles, CA 90001" +273656,Wired Headphones,1,11.99,10/04/19 20:56,"394 Ridge St, Boston, MA 02215" +273657,AA Batteries (4-pack),1,3.84,10/20/19 21:35,"143 Church St, New York City, NY 10001" +273658,Apple Airpods Headphones,1,150,10/20/19 06:07,"34 Johnson St, New York City, NY 10001" +273659,USB-C Charging Cable,1,11.95,10/13/19 19:50,"508 Jefferson St, San Francisco, CA 94016" +273660,27in FHD Monitor,1,149.99,10/06/19 17:04,"323 Meadow St, Los Angeles, CA 90001" +273661,USB-C Charging Cable,1,11.95,10/28/19 16:52,"946 Hill St, Los Angeles, CA 90001" +273662,Lightning Charging Cable,1,14.95,10/01/19 07:21,"524 9th St, Los Angeles, CA 90001" +273663,Apple Airpods Headphones,1,150,10/13/19 11:06,"994 1st St, Los Angeles, CA 90001" +273664,20in Monitor,1,109.99,10/31/19 21:03,"460 6th St, New York City, NY 10001" +273665,Wired Headphones,2,11.99,10/14/19 22:35,"279 River St, Los Angeles, CA 90001" +273666,USB-C Charging Cable,1,11.95,10/15/19 19:28,"801 Jefferson St, Dallas, TX 75001" +273667,AAA Batteries (4-pack),1,2.99,10/28/19 06:01,"613 Main St, Seattle, WA 98101" +273668,iPhone,1,700,10/14/19 21:13,"745 10th St, Seattle, WA 98101" +273669,Flatscreen TV,1,300,10/06/19 10:08,"829 Church St, Los Angeles, CA 90001" +273670,iPhone,1,700,10/05/19 12:40,"578 Jefferson St, Portland, OR 97035" +273670,Lightning Charging Cable,1,14.95,10/05/19 12:40,"578 Jefferson St, Portland, OR 97035" +273671,Lightning Charging Cable,1,14.95,10/13/19 15:58,"894 Ridge St, Atlanta, GA 30301" +273672,Apple Airpods Headphones,1,150,10/02/19 14:35,"83 10th St, Los Angeles, CA 90001" +273673,Flatscreen TV,1,300,10/09/19 19:20,"329 5th St, San Francisco, CA 94016" +273674,34in Ultrawide Monitor,1,379.99,10/25/19 17:42,"248 Park St, Portland, OR 97035" +273675,Google Phone,1,600,10/26/19 19:44,"954 River St, Boston, MA 02215" +273676,27in FHD Monitor,1,149.99,10/25/19 13:10,"300 Lake St, Los Angeles, CA 90001" +273677,AA Batteries (4-pack),1,3.84,10/24/19 21:07,"459 Chestnut St, Boston, MA 02215" +273678,AA Batteries (4-pack),2,3.84,10/09/19 23:05,"860 4th St, Dallas, TX 75001" +273679,iPhone,1,700,10/02/19 11:20,"911 West St, Boston, MA 02215" +273680,20in Monitor,1,109.99,10/11/19 16:00,"728 2nd St, San Francisco, CA 94016" +273681,Wired Headphones,1,11.99,10/09/19 07:57,"301 Forest St, Los Angeles, CA 90001" +273682,Macbook Pro Laptop,1,1700,10/10/19 00:21,"106 Cedar St, Boston, MA 02215" +273683,27in 4K Gaming Monitor,1,389.99,10/19/19 23:02,"608 Elm St, Los Angeles, CA 90001" +273684,Google Phone,1,600,10/31/19 12:22,"849 Jackson St, San Francisco, CA 94016" +273685,Lightning Charging Cable,1,14.95,10/26/19 10:30,"108 5th St, Los Angeles, CA 90001" +273686,ThinkPad Laptop,1,999.99,10/20/19 16:03,"695 Hickory St, Los Angeles, CA 90001" +273687,iPhone,1,700,10/16/19 13:19,"477 7th St, Boston, MA 02215" +273688,USB-C Charging Cable,1,11.95,10/20/19 10:08,"455 9th St, Portland, OR 97035" +273689,Wired Headphones,1,11.99,10/13/19 20:28,"702 11th St, Dallas, TX 75001" +273690,USB-C Charging Cable,1,11.95,10/11/19 14:30,"516 West St, Boston, MA 02215" +273691,USB-C Charging Cable,1,11.95,10/17/19 14:19,"496 8th St, New York City, NY 10001" +273692,34in Ultrawide Monitor,1,379.99,10/15/19 20:18,"371 Washington St, Dallas, TX 75001" +273693,Wired Headphones,1,11.99,10/10/19 19:44,"935 7th St, San Francisco, CA 94016" +273694,Lightning Charging Cable,1,14.95,10/08/19 20:41,"867 Ridge St, San Francisco, CA 94016" +273695,iPhone,1,700,10/13/19 12:26,"711 1st St, San Francisco, CA 94016" +273696,Lightning Charging Cable,1,14.95,10/17/19 11:42,"981 Maple St, San Francisco, CA 94016" +273697,Apple Airpods Headphones,1,150,10/02/19 11:20,"610 Chestnut St, Seattle, WA 98101" +273698,Apple Airpods Headphones,1,150,10/14/19 12:46,"800 Elm St, Los Angeles, CA 90001" +273699,AA Batteries (4-pack),2,3.84,10/31/19 12:30,"954 Maple St, Portland, OR 97035" +273700,20in Monitor,1,109.99,10/25/19 10:44,"744 North St, Dallas, TX 75001" +273701,AAA Batteries (4-pack),3,2.99,10/31/19 08:37,"885 8th St, Atlanta, GA 30301" +273702,Wired Headphones,1,11.99,10/01/19 21:36,"537 Wilson St, Austin, TX 73301" +273703,USB-C Charging Cable,1,11.95,10/08/19 16:19,"843 6th St, New York City, NY 10001" +273704,Wired Headphones,1,11.99,10/06/19 13:27,"4 Walnut St, Portland, OR 97035" +273705,ThinkPad Laptop,1,999.99,10/08/19 10:18,"39 Ridge St, New York City, NY 10001" +273706,Bose SoundSport Headphones,1,99.99,10/17/19 01:18,"766 Lake St, Los Angeles, CA 90001" +273707,Lightning Charging Cable,2,14.95,10/27/19 22:05,"950 Main St, Austin, TX 73301" +273708,Lightning Charging Cable,1,14.95,10/19/19 22:07,"997 14th St, San Francisco, CA 94016" +273709,AA Batteries (4-pack),1,3.84,10/12/19 14:09,"309 Hill St, Dallas, TX 75001" +273710,Apple Airpods Headphones,1,150,10/29/19 10:15,"62 Church St, Boston, MA 02215" +273711,Wired Headphones,1,11.99,10/05/19 23:15,"237 10th St, San Francisco, CA 94016" +273712,Wired Headphones,1,11.99,10/23/19 19:28,"62 Lincoln St, Portland, ME 04101" +273713,Google Phone,1,600,10/11/19 02:05,"825 Highland St, Austin, TX 73301" +273713,USB-C Charging Cable,1,11.95,10/11/19 02:05,"825 Highland St, Austin, TX 73301" +273714,USB-C Charging Cable,1,11.95,10/24/19 10:00,"70 West St, Boston, MA 02215" +273715,Bose SoundSport Headphones,1,99.99,10/05/19 20:13,"760 Willow St, Dallas, TX 75001" +273716,Apple Airpods Headphones,1,150,10/05/19 10:47,"82 Forest St, San Francisco, CA 94016" +273717,iPhone,1,700,10/20/19 19:50,"136 9th St, New York City, NY 10001" +273718,27in 4K Gaming Monitor,1,389.99,10/26/19 01:37,"625 5th St, Boston, MA 02215" +273719,Lightning Charging Cable,1,14.95,10/12/19 13:16,"392 10th St, Austin, TX 73301" +273720,Macbook Pro Laptop,1,1700,10/28/19 19:52,"15 Jackson St, Seattle, WA 98101" +273721,USB-C Charging Cable,1,11.95,10/17/19 22:45,"846 Ridge St, New York City, NY 10001" +273722,27in FHD Monitor,1,149.99,10/15/19 21:09,"692 Forest St, San Francisco, CA 94016" +273723,Lightning Charging Cable,1,14.95,10/28/19 07:48,"766 Park St, San Francisco, CA 94016" +273724,Google Phone,1,600,10/24/19 11:29,"749 Hill St, Los Angeles, CA 90001" +273725,Wired Headphones,1,11.99,10/01/19 17:22,"563 Jackson St, San Francisco, CA 94016" +273726,Apple Airpods Headphones,1,150,10/15/19 09:46,"872 Pine St, New York City, NY 10001" +273727,Lightning Charging Cable,1,14.95,10/18/19 12:02,"109 Elm St, Dallas, TX 75001" +273728,ThinkPad Laptop,1,999.99,10/07/19 12:39,"440 Maple St, Los Angeles, CA 90001" +273729,Lightning Charging Cable,1,14.95,10/09/19 19:02,"737 Dogwood St, Boston, MA 02215" +273730,Lightning Charging Cable,1,14.95,10/19/19 08:26,"454 9th St, Los Angeles, CA 90001" +273731,20in Monitor,1,109.99,10/04/19 19:36,"793 6th St, Los Angeles, CA 90001" +273732,AA Batteries (4-pack),2,3.84,10/24/19 10:55,"281 Maple St, Boston, MA 02215" +273733,AAA Batteries (4-pack),3,2.99,10/13/19 20:02,"533 11th St, New York City, NY 10001" +273734,27in 4K Gaming Monitor,1,389.99,10/03/19 18:08,"767 6th St, Atlanta, GA 30301" +273735,Apple Airpods Headphones,1,150,10/21/19 14:47,"310 Cedar St, New York City, NY 10001" +273736,Bose SoundSport Headphones,1,99.99,10/26/19 19:19,"781 2nd St, Boston, MA 02215" +273737,USB-C Charging Cable,1,11.95,10/14/19 19:16,"309 Johnson St, Atlanta, GA 30301" +273738,Bose SoundSport Headphones,1,99.99,10/18/19 21:20,"352 Spruce St, Portland, ME 04101" +273739,Apple Airpods Headphones,1,150,10/23/19 10:08,"928 North St, Seattle, WA 98101" +273740,AAA Batteries (4-pack),1,2.99,10/01/19 12:22,"954 Dogwood St, Seattle, WA 98101" +273741,Flatscreen TV,1,300,10/06/19 19:39,"229 5th St, Boston, MA 02215" +273741,Wired Headphones,1,11.99,10/06/19 19:39,"229 5th St, Boston, MA 02215" +273742,AA Batteries (4-pack),1,3.84,10/23/19 10:33,"511 Church St, Boston, MA 02215" +273743,ThinkPad Laptop,1,999.99,10/04/19 10:05,"964 Lincoln St, Boston, MA 02215" +273744,Bose SoundSport Headphones,1,99.99,10/12/19 11:54,"656 Dogwood St, San Francisco, CA 94016" +273745,Flatscreen TV,1,300,10/31/19 19:09,"453 Forest St, Boston, MA 02215" +273746,AA Batteries (4-pack),1,3.84,10/23/19 14:28,"726 12th St, New York City, NY 10001" +273747,27in 4K Gaming Monitor,1,389.99,10/05/19 09:46,"43 Jackson St, San Francisco, CA 94016" +273748,27in 4K Gaming Monitor,1,389.99,10/30/19 21:28,"552 5th St, Los Angeles, CA 90001" +273749,27in FHD Monitor,1,149.99,10/25/19 13:41,"835 5th St, New York City, NY 10001" +273750,AAA Batteries (4-pack),1,2.99,10/24/19 13:29,"560 8th St, Los Angeles, CA 90001" +273751,20in Monitor,1,109.99,10/13/19 19:57,"364 4th St, New York City, NY 10001" +273752,AAA Batteries (4-pack),1,2.99,10/06/19 09:27,"545 12th St, Los Angeles, CA 90001" +273753,27in FHD Monitor,1,149.99,10/20/19 13:28,"924 Cherry St, New York City, NY 10001" +273754,Lightning Charging Cable,1,14.95,10/04/19 14:13,"872 Elm St, San Francisco, CA 94016" +273755,27in 4K Gaming Monitor,1,389.99,10/16/19 22:45,"17 Sunset St, Austin, TX 73301" +273756,27in 4K Gaming Monitor,1,389.99,10/06/19 18:42,"856 Highland St, Dallas, TX 75001" +273757,Wired Headphones,1,11.99,10/21/19 17:17,"386 12th St, New York City, NY 10001" +273758,AAA Batteries (4-pack),4,2.99,10/17/19 00:07,"205 10th St, Los Angeles, CA 90001" +273759,Flatscreen TV,1,300,10/19/19 10:58,"419 Center St, Atlanta, GA 30301" +273760,Lightning Charging Cable,1,14.95,10/06/19 14:21,"66 Forest St, San Francisco, CA 94016" +273761,AA Batteries (4-pack),2,3.84,10/24/19 09:03,"432 Center St, New York City, NY 10001" +273762,Lightning Charging Cable,1,14.95,10/28/19 18:58,"814 Cherry St, San Francisco, CA 94016" +273763,Lightning Charging Cable,1,14.95,10/10/19 16:32,"834 Highland St, Atlanta, GA 30301" +273764,Lightning Charging Cable,1,14.95,10/02/19 11:12,"681 9th St, Seattle, WA 98101" +273765,AA Batteries (4-pack),1,3.84,10/26/19 15:03,"454 Wilson St, Austin, TX 73301" +273766,Apple Airpods Headphones,1,150,10/31/19 19:08,"96 Forest St, San Francisco, CA 94016" +273767,Wired Headphones,1,11.99,10/09/19 09:42,"81 7th St, San Francisco, CA 94016" +273768,Macbook Pro Laptop,1,1700,10/17/19 14:09,"564 Madison St, Los Angeles, CA 90001" +273769,AA Batteries (4-pack),1,3.84,10/31/19 17:25,"845 Madison St, Los Angeles, CA 90001" +273770,USB-C Charging Cable,1,11.95,10/18/19 16:43,"147 Main St, Boston, MA 02215" +273771,AAA Batteries (4-pack),3,2.99,10/14/19 20:06,"425 Pine St, Atlanta, GA 30301" +273772,AA Batteries (4-pack),1,3.84,10/24/19 13:22,"995 11th St, Portland, ME 04101" +273773,Macbook Pro Laptop,1,1700,10/18/19 17:36,"522 Washington St, Seattle, WA 98101" +273774,Lightning Charging Cable,1,14.95,10/26/19 17:01,"444 Hickory St, New York City, NY 10001" +273775,34in Ultrawide Monitor,1,379.99,10/31/19 10:18,"469 Hill St, Los Angeles, CA 90001" +273776,USB-C Charging Cable,1,11.95,10/30/19 14:40,"662 9th St, Dallas, TX 75001" +273777,USB-C Charging Cable,1,11.95,10/12/19 14:48,"492 11th St, San Francisco, CA 94016" +273778,Wired Headphones,1,11.99,10/27/19 23:28,"912 Johnson St, San Francisco, CA 94016" +273779,Flatscreen TV,1,300,10/14/19 12:12,"770 12th St, Dallas, TX 75001" +273780,Lightning Charging Cable,1,14.95,10/25/19 12:14,"587 Cherry St, New York City, NY 10001" +273781,Wired Headphones,1,11.99,10/15/19 18:56,"751 Sunset St, Portland, OR 97035" +273782,34in Ultrawide Monitor,1,379.99,10/07/19 11:02,"820 Cherry St, Seattle, WA 98101" +273783,27in FHD Monitor,1,149.99,10/23/19 19:23,"45 Main St, Los Angeles, CA 90001" +273784,Apple Airpods Headphones,1,150,10/17/19 06:13,"539 Wilson St, Atlanta, GA 30301" +273785,AAA Batteries (4-pack),3,2.99,10/10/19 08:54,"287 1st St, Atlanta, GA 30301" +273786,AAA Batteries (4-pack),1,2.99,10/08/19 14:59,"213 Pine St, San Francisco, CA 94016" +,,,,, +273787,Lightning Charging Cable,1,14.95,10/31/19 11:48,"13 Wilson St, San Francisco, CA 94016" +273788,Wired Headphones,1,11.99,10/10/19 15:51,"227 Ridge St, Seattle, WA 98101" +273789,Bose SoundSport Headphones,1,99.99,10/03/19 11:00,"937 Jackson St, San Francisco, CA 94016" +273790,AAA Batteries (4-pack),4,2.99,10/23/19 22:13,"486 Sunset St, San Francisco, CA 94016" +273791,USB-C Charging Cable,1,11.95,10/19/19 14:42,"318 Hill St, Dallas, TX 75001" +273792,USB-C Charging Cable,1,11.95,10/07/19 12:56,"862 Dogwood St, San Francisco, CA 94016" +273793,Lightning Charging Cable,1,14.95,10/03/19 11:57,"92 Pine St, New York City, NY 10001" +273794,Lightning Charging Cable,1,14.95,10/10/19 16:47,"813 4th St, San Francisco, CA 94016" +273795,Lightning Charging Cable,1,14.95,10/19/19 21:50,"928 North St, Dallas, TX 75001" +273796,Apple Airpods Headphones,1,150,10/12/19 10:13,"773 Forest St, Dallas, TX 75001" +273797,Apple Airpods Headphones,1,150,10/21/19 14:07,"914 1st St, New York City, NY 10001" +273798,Bose SoundSport Headphones,1,99.99,10/12/19 07:15,"57 Washington St, New York City, NY 10001" +273799,USB-C Charging Cable,1,11.95,10/19/19 11:29,"562 8th St, Dallas, TX 75001" +273800,USB-C Charging Cable,1,11.95,10/23/19 12:07,"750 Lakeview St, New York City, NY 10001" +273801,Lightning Charging Cable,1,14.95,10/08/19 20:13,"308 Jefferson St, Los Angeles, CA 90001" +273802,AAA Batteries (4-pack),1,2.99,10/20/19 16:45,"764 Wilson St, Boston, MA 02215" +273803,AAA Batteries (4-pack),3,2.99,10/29/19 23:12,"982 Meadow St, Portland, OR 97035" +273804,iPhone,1,700,10/26/19 22:31,"399 Forest St, Seattle, WA 98101" +273805,Apple Airpods Headphones,1,150,10/03/19 08:35,"630 2nd St, Boston, MA 02215" +273806,Bose SoundSport Headphones,1,99.99,10/25/19 22:36,"802 Spruce St, Portland, OR 97035" +273807,AAA Batteries (4-pack),1,2.99,10/27/19 12:50,"756 Wilson St, Atlanta, GA 30301" +273808,Bose SoundSport Headphones,1,99.99,10/16/19 02:36,"635 Jefferson St, New York City, NY 10001" +273809,Wired Headphones,1,11.99,10/01/19 18:13,"978 Lake St, New York City, NY 10001" +273810,iPhone,1,700,10/27/19 15:41,"644 5th St, San Francisco, CA 94016" +273811,Wired Headphones,2,11.99,10/25/19 11:50,"865 4th St, Dallas, TX 75001" +273812,Apple Airpods Headphones,1,150,10/26/19 20:26,"638 Hill St, Seattle, WA 98101" +273813,Flatscreen TV,1,300,10/22/19 13:15,"773 Jackson St, Austin, TX 73301" +273814,Lightning Charging Cable,1,14.95,10/21/19 21:01,"248 Lake St, San Francisco, CA 94016" +273815,34in Ultrawide Monitor,1,379.99,10/24/19 12:31,"448 Pine St, San Francisco, CA 94016" +273816,Lightning Charging Cable,1,14.95,10/06/19 18:49,"158 Cherry St, Portland, OR 97035" +273817,USB-C Charging Cable,2,11.95,10/02/19 18:10,"233 5th St, New York City, NY 10001" +273818,Lightning Charging Cable,1,14.95,10/06/19 12:47,"731 Church St, Los Angeles, CA 90001" +273819,ThinkPad Laptop,1,999.99,10/24/19 17:44,"129 4th St, Boston, MA 02215" +273820,27in FHD Monitor,1,149.99,10/20/19 12:37,"394 1st St, New York City, NY 10001" +273821,Apple Airpods Headphones,1,150,10/31/19 14:31,"438 12th St, New York City, NY 10001" +273822,ThinkPad Laptop,1,999.99,10/29/19 22:51,"677 West St, Portland, OR 97035" +273823,LG Dryer,1,600.0,10/18/19 19:38,"564 2nd St, Portland, OR 97035" +273824,AAA Batteries (4-pack),1,2.99,10/31/19 18:08,"328 Willow St, Boston, MA 02215" +273825,Flatscreen TV,1,300,10/19/19 21:28,"671 Washington St, San Francisco, CA 94016" +273826,AAA Batteries (4-pack),1,2.99,10/11/19 18:40,"490 Cedar St, San Francisco, CA 94016" +273827,LG Dryer,1,600.0,10/17/19 18:52,"957 1st St, San Francisco, CA 94016" +273828,Lightning Charging Cable,1,14.95,11/01/19 00:36,"164 North St, Los Angeles, CA 90001" +273829,Bose SoundSport Headphones,1,99.99,10/13/19 00:12,"135 Park St, Portland, OR 97035" +273830,Wired Headphones,1,11.99,10/09/19 08:47,"255 12th St, Boston, MA 02215" +273831,AA Batteries (4-pack),2,3.84,10/14/19 21:26,"77 11th St, Atlanta, GA 30301" +273832,Lightning Charging Cable,1,14.95,10/27/19 12:20,"963 Park St, Boston, MA 02215" +273833,Lightning Charging Cable,1,14.95,10/07/19 18:06,"232 5th St, Boston, MA 02215" +273834,Apple Airpods Headphones,1,150,10/27/19 11:35,"645 13th St, Atlanta, GA 30301" +273835,AAA Batteries (4-pack),1,2.99,10/04/19 05:00,"806 Meadow St, Dallas, TX 75001" +273836,USB-C Charging Cable,1,11.95,10/13/19 13:16,"492 Pine St, Atlanta, GA 30301" +273837,Macbook Pro Laptop,1,1700,10/27/19 21:46,"188 South St, San Francisco, CA 94016" +273838,Lightning Charging Cable,1,14.95,10/18/19 16:31,"387 Lake St, San Francisco, CA 94016" +273839,Bose SoundSport Headphones,1,99.99,10/30/19 19:06,"735 West St, San Francisco, CA 94016" +273840,27in FHD Monitor,1,149.99,10/13/19 08:40,"238 6th St, San Francisco, CA 94016" +273841,Lightning Charging Cable,2,14.95,10/21/19 15:09,"251 Lincoln St, San Francisco, CA 94016" +273842,AAA Batteries (4-pack),2,2.99,10/03/19 11:19,"789 Highland St, New York City, NY 10001" +273843,20in Monitor,1,109.99,10/05/19 11:05,"549 Lakeview St, Los Angeles, CA 90001" +273844,ThinkPad Laptop,1,999.99,10/11/19 08:53,"447 Forest St, New York City, NY 10001" +273845,AAA Batteries (4-pack),2,2.99,10/04/19 03:01,"379 12th St, Los Angeles, CA 90001" +273846,Apple Airpods Headphones,1,150,10/05/19 17:51,"829 West St, New York City, NY 10001" +273847,Wired Headphones,1,11.99,10/11/19 13:15,"762 Ridge St, San Francisco, CA 94016" +273847,Lightning Charging Cable,1,14.95,10/11/19 13:15,"762 Ridge St, San Francisco, CA 94016" +273848,Wired Headphones,1,11.99,10/30/19 20:29,"862 Church St, New York City, NY 10001" +273849,Apple Airpods Headphones,1,150,10/04/19 15:37,"969 13th St, Dallas, TX 75001" +273850,Bose SoundSport Headphones,1,99.99,10/25/19 12:47,"24 Cherry St, Dallas, TX 75001" +273851,iPhone,1,700,10/06/19 14:12,"111 12th St, San Francisco, CA 94016" +273852,Lightning Charging Cable,1,14.95,10/07/19 15:18,"348 Forest St, San Francisco, CA 94016" +273853,Flatscreen TV,1,300,10/22/19 16:26,"905 West St, San Francisco, CA 94016" +273854,AA Batteries (4-pack),2,3.84,10/22/19 14:05,"878 Ridge St, Los Angeles, CA 90001" +273855,USB-C Charging Cable,1,11.95,10/14/19 09:00,"77 12th St, Dallas, TX 75001" +273856,Macbook Pro Laptop,1,1700,10/11/19 13:19,"786 Lincoln St, Austin, TX 73301" +273857,AA Batteries (4-pack),1,3.84,10/08/19 19:33,"458 Adams St, Boston, MA 02215" +273858,Lightning Charging Cable,1,14.95,10/07/19 12:40,"68 9th St, Austin, TX 73301" +273859,AAA Batteries (4-pack),1,2.99,10/02/19 15:46,"394 Ridge St, Dallas, TX 75001" +273860,iPhone,1,700,10/05/19 22:40,"922 4th St, Austin, TX 73301" +273861,Lightning Charging Cable,1,14.95,10/02/19 20:04,"667 Main St, Atlanta, GA 30301" +273862,Lightning Charging Cable,1,14.95,10/01/19 18:29,"991 11th St, San Francisco, CA 94016" +273863,Apple Airpods Headphones,1,150,10/14/19 13:24,"149 Sunset St, Los Angeles, CA 90001" +273864,AA Batteries (4-pack),1,3.84,10/22/19 10:38,"263 4th St, Boston, MA 02215" +273865,Bose SoundSport Headphones,1,99.99,10/14/19 11:11,"747 West St, Seattle, WA 98101" +273866,Flatscreen TV,1,300,10/31/19 00:48,"535 Forest St, Atlanta, GA 30301" +273867,Google Phone,1,600,10/29/19 12:40,"861 Jefferson St, San Francisco, CA 94016" +273867,USB-C Charging Cable,1,11.95,10/29/19 12:40,"861 Jefferson St, San Francisco, CA 94016" +273868,AA Batteries (4-pack),3,3.84,10/25/19 23:19,"594 Jefferson St, Los Angeles, CA 90001" +273869,AA Batteries (4-pack),2,3.84,10/14/19 18:57,"15 Maple St, San Francisco, CA 94016" +273870,USB-C Charging Cable,1,11.95,10/20/19 09:59,"611 13th St, Seattle, WA 98101" +273871,Wired Headphones,1,11.99,10/21/19 10:04,"741 6th St, Boston, MA 02215" +273872,27in FHD Monitor,1,149.99,10/12/19 23:14,"601 River St, San Francisco, CA 94016" +273873,USB-C Charging Cable,2,11.95,10/07/19 01:57,"536 Ridge St, Seattle, WA 98101" +273874,USB-C Charging Cable,1,11.95,10/26/19 09:21,"219 North St, San Francisco, CA 94016" +273875,AAA Batteries (4-pack),1,2.99,10/08/19 16:24,"842 Center St, Austin, TX 73301" +273876,AAA Batteries (4-pack),1,2.99,10/13/19 11:58,"13 Chestnut St, Atlanta, GA 30301" +273877,AA Batteries (4-pack),1,3.84,10/01/19 14:14,"477 West St, San Francisco, CA 94016" +273878,Apple Airpods Headphones,1,150,10/21/19 00:47,"458 Highland St, Portland, OR 97035" +273879,20in Monitor,1,109.99,10/26/19 15:46,"137 Cedar St, New York City, NY 10001" +273880,Bose SoundSport Headphones,1,99.99,10/23/19 14:32,"485 Chestnut St, San Francisco, CA 94016" +,,,,, +273881,iPhone,1,700,10/30/19 19:02,"986 West St, Seattle, WA 98101" +273882,Lightning Charging Cable,1,14.95,10/08/19 14:40,"701 14th St, Atlanta, GA 30301" +273883,Apple Airpods Headphones,1,150,10/20/19 20:00,"951 8th St, Los Angeles, CA 90001" +273884,AA Batteries (4-pack),1,3.84,10/15/19 16:28,"543 Adams St, Atlanta, GA 30301" +273885,USB-C Charging Cable,1,11.95,10/24/19 10:11,"304 5th St, Austin, TX 73301" +273886,20in Monitor,1,109.99,10/16/19 08:45,"295 7th St, Boston, MA 02215" +273887,Lightning Charging Cable,1,14.95,10/29/19 17:10,"643 West St, Seattle, WA 98101" +273888,AAA Batteries (4-pack),1,2.99,10/13/19 15:01,"779 Jefferson St, San Francisco, CA 94016" +273889,USB-C Charging Cable,1,11.95,10/19/19 14:31,"500 Willow St, Los Angeles, CA 90001" +273890,Apple Airpods Headphones,1,150,10/31/19 18:36,"362 North St, New York City, NY 10001" +273891,Bose SoundSport Headphones,1,99.99,10/02/19 05:41,"581 1st St, San Francisco, CA 94016" +273892,Lightning Charging Cable,1,14.95,10/26/19 22:05,"554 River St, Portland, OR 97035" +273893,Apple Airpods Headphones,1,150,10/31/19 11:02,"186 Meadow St, San Francisco, CA 94016" +273894,Macbook Pro Laptop,1,1700,10/16/19 14:19,"5 7th St, Los Angeles, CA 90001" +273895,USB-C Charging Cable,1,11.95,10/03/19 12:22,"244 8th St, New York City, NY 10001" +273896,Wired Headphones,1,11.99,10/26/19 16:45,"913 Willow St, San Francisco, CA 94016" +273897,AAA Batteries (4-pack),1,2.99,10/30/19 18:42,"660 Jefferson St, Dallas, TX 75001" +273898,AAA Batteries (4-pack),2,2.99,10/05/19 10:18,"766 10th St, New York City, NY 10001" +273899,Wired Headphones,1,11.99,10/28/19 15:50,"37 West St, New York City, NY 10001" +273900,Google Phone,1,600,10/16/19 12:29,"701 Lake St, San Francisco, CA 94016" +273901,USB-C Charging Cable,1,11.95,10/01/19 19:43,"528 10th St, San Francisco, CA 94016" +273902,AA Batteries (4-pack),1,3.84,10/20/19 19:50,"140 1st St, Austin, TX 73301" +273903,Wired Headphones,1,11.99,10/05/19 20:55,"811 Cedar St, Atlanta, GA 30301" +273904,Apple Airpods Headphones,1,150,10/19/19 16:09,"483 Pine St, Dallas, TX 75001" +273905,Lightning Charging Cable,1,14.95,10/11/19 11:33,"8 5th St, Los Angeles, CA 90001" +273906,USB-C Charging Cable,1,11.95,10/05/19 09:14,"677 11th St, Seattle, WA 98101" +273907,Lightning Charging Cable,1,14.95,10/21/19 23:29,"208 4th St, Los Angeles, CA 90001" +273908,AA Batteries (4-pack),1,3.84,10/09/19 20:44,"87 Maple St, New York City, NY 10001" +273909,AA Batteries (4-pack),1,3.84,10/25/19 11:19,"458 Pine St, San Francisco, CA 94016" +273910,34in Ultrawide Monitor,1,379.99,10/30/19 17:59,"277 Hickory St, Seattle, WA 98101" +273911,Lightning Charging Cable,1,14.95,10/26/19 12:39,"922 River St, San Francisco, CA 94016" +273912,USB-C Charging Cable,2,11.95,10/11/19 04:14,"195 Madison St, Atlanta, GA 30301" +273913,27in 4K Gaming Monitor,1,389.99,11/01/19 00:50,"101 Adams St, San Francisco, CA 94016" +273914,Bose SoundSport Headphones,1,99.99,10/31/19 15:17,"442 Pine St, San Francisco, CA 94016" +273915,AA Batteries (4-pack),2,3.84,10/14/19 07:41,"758 14th St, San Francisco, CA 94016" +273916,AA Batteries (4-pack),1,3.84,10/22/19 17:48,"683 Main St, Boston, MA 02215" +273917,34in Ultrawide Monitor,1,379.99,10/17/19 22:23,"918 11th St, San Francisco, CA 94016" +273918,iPhone,1,700,10/28/19 21:31,"941 Jackson St, San Francisco, CA 94016" +273919,AAA Batteries (4-pack),2,2.99,10/26/19 11:22,"965 Center St, Seattle, WA 98101" +273920,USB-C Charging Cable,1,11.95,10/07/19 12:24,"65 Ridge St, San Francisco, CA 94016" +273921,Apple Airpods Headphones,1,150,10/23/19 16:44,"761 Dogwood St, New York City, NY 10001" +273922,27in FHD Monitor,1,149.99,10/09/19 18:13,"264 Church St, San Francisco, CA 94016" +273923,34in Ultrawide Monitor,1,379.99,10/09/19 15:55,"93 South St, Austin, TX 73301" +273924,AAA Batteries (4-pack),2,2.99,10/08/19 11:31,"880 Cherry St, Los Angeles, CA 90001" +273925,Lightning Charging Cable,1,14.95,10/12/19 21:37,"827 Forest St, Atlanta, GA 30301" +273926,Flatscreen TV,1,300,10/15/19 19:54,"886 Center St, San Francisco, CA 94016" +273927,Bose SoundSport Headphones,1,99.99,10/20/19 19:25,"848 8th St, New York City, NY 10001" +273928,Flatscreen TV,1,300,10/27/19 00:42,"154 6th St, Los Angeles, CA 90001" +273929,27in FHD Monitor,1,149.99,10/03/19 16:16,"223 Lakeview St, Austin, TX 73301" +273930,Wired Headphones,1,11.99,10/09/19 18:28,"184 8th St, Portland, OR 97035" +273931,Macbook Pro Laptop,1,1700,10/11/19 06:26,"871 Chestnut St, Austin, TX 73301" +273932,AAA Batteries (4-pack),1,2.99,10/08/19 19:12,"682 Elm St, New York City, NY 10001" +273933,Apple Airpods Headphones,1,150,10/24/19 18:48,"700 Hill St, New York City, NY 10001" +273934,AA Batteries (4-pack),1,3.84,10/13/19 18:00,"552 Dogwood St, Atlanta, GA 30301" +273935,Bose SoundSport Headphones,1,99.99,10/08/19 18:49,"385 Center St, San Francisco, CA 94016" +273936,Wired Headphones,1,11.99,10/17/19 16:37,"296 Hill St, Seattle, WA 98101" +273937,Apple Airpods Headphones,1,150,10/26/19 20:17,"679 Madison St, Atlanta, GA 30301" +273938,AA Batteries (4-pack),2,3.84,10/01/19 19:06,"123 Dogwood St, Boston, MA 02215" +273939,34in Ultrawide Monitor,1,379.99,10/13/19 23:50,"439 Center St, San Francisco, CA 94016" +273940,ThinkPad Laptop,1,999.99,10/14/19 00:04,"556 Maple St, New York City, NY 10001" +273941,Flatscreen TV,1,300,10/12/19 19:03,"376 Wilson St, Atlanta, GA 30301" +273942,Apple Airpods Headphones,1,150,10/11/19 19:04,"798 5th St, Los Angeles, CA 90001" +273943,27in FHD Monitor,1,149.99,10/14/19 18:19,"185 Lakeview St, Boston, MA 02215" +273944,Bose SoundSport Headphones,1,99.99,10/11/19 19:35,"328 Elm St, San Francisco, CA 94016" +273945,Bose SoundSport Headphones,1,99.99,10/28/19 11:46,"885 5th St, Los Angeles, CA 90001" +273946,Macbook Pro Laptop,1,1700,10/08/19 11:45,"861 Washington St, Los Angeles, CA 90001" +273947,AA Batteries (4-pack),1,3.84,10/05/19 13:54,"102 Willow St, Los Angeles, CA 90001" +273948,34in Ultrawide Monitor,1,379.99,10/14/19 13:03,"315 Meadow St, San Francisco, CA 94016" +273949,AA Batteries (4-pack),2,3.84,10/17/19 15:01,"142 Highland St, San Francisco, CA 94016" +273950,Macbook Pro Laptop,1,1700,10/12/19 11:43,"709 8th St, Los Angeles, CA 90001" +273951,Bose SoundSport Headphones,1,99.99,10/25/19 12:36,"983 Willow St, San Francisco, CA 94016" +273952,Google Phone,1,600,10/05/19 20:54,"948 Church St, Dallas, TX 75001" +273952,Wired Headphones,1,11.99,10/05/19 20:54,"948 Church St, Dallas, TX 75001" +273953,AAA Batteries (4-pack),1,2.99,10/25/19 11:58,"154 Main St, Portland, OR 97035" +273954,Lightning Charging Cable,2,14.95,10/29/19 11:04,"98 North St, Boston, MA 02215" +273955,Wired Headphones,1,11.99,10/15/19 16:53,"644 Spruce St, Boston, MA 02215" +273956,Bose SoundSport Headphones,1,99.99,10/06/19 20:12,"784 Dogwood St, Atlanta, GA 30301" +273957,27in FHD Monitor,1,149.99,10/19/19 22:42,"94 South St, Boston, MA 02215" +273958,Bose SoundSport Headphones,1,99.99,10/29/19 17:44,"415 5th St, San Francisco, CA 94016" +273959,AA Batteries (4-pack),1,3.84,10/17/19 09:47,"766 Forest St, Los Angeles, CA 90001" +273960,USB-C Charging Cable,2,11.95,10/02/19 09:24,"411 1st St, San Francisco, CA 94016" +273961,Vareebadd Phone,1,400,10/18/19 02:29,"100 6th St, Portland, OR 97035" +273961,Bose SoundSport Headphones,1,99.99,10/18/19 02:29,"100 6th St, Portland, OR 97035" +273962,Wired Headphones,1,11.99,10/12/19 11:59,"838 West St, Portland, ME 04101" +273963,Wired Headphones,1,11.99,10/10/19 15:22,"88 River St, San Francisco, CA 94016" +273964,LG Dryer,1,600.0,10/11/19 16:05,"602 Elm St, San Francisco, CA 94016" +273965,Apple Airpods Headphones,1,150,10/07/19 13:24,"56 South St, Los Angeles, CA 90001" +273966,27in 4K Gaming Monitor,1,389.99,10/07/19 16:21,"819 Washington St, Boston, MA 02215" +273967,AAA Batteries (4-pack),1,2.99,10/17/19 04:56,"825 Highland St, Dallas, TX 75001" +273968,Wired Headphones,1,11.99,10/20/19 12:38,"148 Meadow St, San Francisco, CA 94016" +273969,AA Batteries (4-pack),1,3.84,10/04/19 09:11,"639 Cherry St, Los Angeles, CA 90001" +273970,Apple Airpods Headphones,1,150,10/02/19 04:28,"971 Washington St, Portland, OR 97035" +273971,USB-C Charging Cable,2,11.95,10/21/19 11:24,"380 Adams St, Seattle, WA 98101" +273972,Wired Headphones,1,11.99,10/02/19 10:57,"70 Maple St, Atlanta, GA 30301" +,,,,, +273973,Apple Airpods Headphones,1,150,10/18/19 17:39,"919 West St, Dallas, TX 75001" +273974,Lightning Charging Cable,1,14.95,10/15/19 05:54,"258 Ridge St, Los Angeles, CA 90001" +273975,Bose SoundSport Headphones,1,99.99,10/15/19 14:21,"812 7th St, Dallas, TX 75001" +273976,AA Batteries (4-pack),1,3.84,10/04/19 20:44,"363 Adams St, Dallas, TX 75001" +273977,Bose SoundSport Headphones,1,99.99,10/09/19 06:36,"815 5th St, San Francisco, CA 94016" +273978,Apple Airpods Headphones,1,150,10/03/19 16:00,"856 Sunset St, Seattle, WA 98101" +273979,27in FHD Monitor,1,149.99,10/09/19 21:39,"457 Chestnut St, Los Angeles, CA 90001" +273980,iPhone,1,700,10/11/19 12:37,"291 Lincoln St, San Francisco, CA 94016" +273981,AAA Batteries (4-pack),2,2.99,10/19/19 21:59,"229 West St, Portland, OR 97035" +273982,USB-C Charging Cable,1,11.95,10/14/19 12:05,"768 Highland St, Seattle, WA 98101" +273983,iPhone,1,700,10/24/19 12:36,"936 Park St, San Francisco, CA 94016" +273983,Lightning Charging Cable,1,14.95,10/24/19 12:36,"936 Park St, San Francisco, CA 94016" +273983,Wired Headphones,1,11.99,10/24/19 12:36,"936 Park St, San Francisco, CA 94016" +273984,Wired Headphones,1,11.99,10/08/19 20:00,"98 Elm St, Atlanta, GA 30301" +273985,Google Phone,1,600,10/02/19 14:11,"733 South St, San Francisco, CA 94016" +273986,USB-C Charging Cable,1,11.95,10/03/19 16:41,"511 Adams St, Portland, OR 97035" +273987,USB-C Charging Cable,1,11.95,10/17/19 08:05,"711 Ridge St, Los Angeles, CA 90001" +273988,AA Batteries (4-pack),1,3.84,10/02/19 14:26,"780 Meadow St, Dallas, TX 75001" +273989,34in Ultrawide Monitor,1,379.99,10/04/19 19:40,"888 Jefferson St, Seattle, WA 98101" +273990,27in 4K Gaming Monitor,1,389.99,10/16/19 10:43,"359 Washington St, Seattle, WA 98101" +273991,ThinkPad Laptop,1,999.99,10/21/19 23:49,"328 Jackson St, Boston, MA 02215" +273992,Lightning Charging Cable,1,14.95,10/01/19 14:47,"72 North St, Dallas, TX 75001" +273993,34in Ultrawide Monitor,1,379.99,10/25/19 12:47,"264 Lakeview St, San Francisco, CA 94016" +273994,Bose SoundSport Headphones,2,99.99,10/02/19 12:47,"44 Ridge St, Atlanta, GA 30301" +273995,27in 4K Gaming Monitor,1,389.99,10/09/19 18:04,"475 10th St, San Francisco, CA 94016" +273996,Wired Headphones,2,11.99,10/19/19 18:49,"346 Pine St, San Francisco, CA 94016" +273997,Flatscreen TV,1,300,10/24/19 16:19,"354 13th St, Portland, OR 97035" +273998,iPhone,1,700,10/23/19 14:27,"349 Cherry St, New York City, NY 10001" +273998,Apple Airpods Headphones,1,150,10/23/19 14:27,"349 Cherry St, New York City, NY 10001" +273999,AA Batteries (4-pack),2,3.84,10/14/19 21:26,"829 Lakeview St, Los Angeles, CA 90001" +274000,USB-C Charging Cable,1,11.95,10/07/19 10:10,"823 South St, San Francisco, CA 94016" +274001,AAA Batteries (4-pack),1,2.99,10/08/19 22:08,"460 West St, Austin, TX 73301" +274002,AA Batteries (4-pack),1,3.84,10/24/19 14:49,"335 12th St, Boston, MA 02215" +274003,27in 4K Gaming Monitor,1,389.99,10/17/19 13:02,"798 Chestnut St, Seattle, WA 98101" +274004,USB-C Charging Cable,1,11.95,10/24/19 19:53,"282 North St, Dallas, TX 75001" +274005,AA Batteries (4-pack),2,3.84,10/26/19 21:11,"901 14th St, Dallas, TX 75001" +274006,Lightning Charging Cable,1,14.95,10/20/19 00:28,"973 9th St, San Francisco, CA 94016" +274007,USB-C Charging Cable,1,11.95,10/21/19 17:25,"761 Pine St, San Francisco, CA 94016" +274008,AAA Batteries (4-pack),1,2.99,10/31/19 18:51,"776 North St, San Francisco, CA 94016" +274009,Lightning Charging Cable,1,14.95,10/25/19 18:47,"758 Adams St, San Francisco, CA 94016" +274010,Bose SoundSport Headphones,1,99.99,10/04/19 17:28,"579 Park St, New York City, NY 10001" +274011,Flatscreen TV,1,300,10/02/19 17:19,"832 Chestnut St, San Francisco, CA 94016" +274012,Bose SoundSport Headphones,1,99.99,10/16/19 20:18,"853 River St, Boston, MA 02215" +274013,Wired Headphones,1,11.99,10/04/19 19:23,"852 Cherry St, Seattle, WA 98101" +274014,27in FHD Monitor,1,149.99,10/25/19 14:03,"548 Maple St, Los Angeles, CA 90001" +274015,AA Batteries (4-pack),2,3.84,10/07/19 01:19,"143 Hickory St, Los Angeles, CA 90001" +274016,USB-C Charging Cable,1,11.95,10/26/19 16:45,"461 8th St, Atlanta, GA 30301" +274017,34in Ultrawide Monitor,1,379.99,10/27/19 15:51,"689 Madison St, Los Angeles, CA 90001" +274018,Wired Headphones,1,11.99,10/28/19 01:17,"362 Cherry St, Austin, TX 73301" +274019,Lightning Charging Cable,2,14.95,10/15/19 20:23,"270 Park St, Los Angeles, CA 90001" +274020,AA Batteries (4-pack),1,3.84,10/16/19 08:40,"871 Highland St, New York City, NY 10001" +274021,Lightning Charging Cable,1,14.95,10/01/19 20:32,"480 Adams St, Los Angeles, CA 90001" +274022,Apple Airpods Headphones,1,150,10/12/19 13:03,"750 South St, San Francisco, CA 94016" +274023,Vareebadd Phone,1,400,10/29/19 18:05,"874 4th St, Seattle, WA 98101" +274024,Vareebadd Phone,1,400,10/06/19 10:07,"725 Highland St, Seattle, WA 98101" +274024,Wired Headphones,1,11.99,10/06/19 10:07,"725 Highland St, Seattle, WA 98101" +274025,Wired Headphones,1,11.99,10/14/19 18:26,"956 Meadow St, Atlanta, GA 30301" +274026,Bose SoundSport Headphones,1,99.99,10/19/19 17:35,"785 12th St, New York City, NY 10001" +274027,Flatscreen TV,1,300,10/04/19 12:49,"243 11th St, Austin, TX 73301" +274028,27in FHD Monitor,1,149.99,10/04/19 15:26,"573 River St, San Francisco, CA 94016" +274029,34in Ultrawide Monitor,1,379.99,10/25/19 19:34,"503 South St, Dallas, TX 75001" +274030,Google Phone,1,600,10/10/19 07:01,"323 Hill St, Los Angeles, CA 90001" +274031,27in 4K Gaming Monitor,1,389.99,10/01/19 15:20,"641 Cherry St, Dallas, TX 75001" +274032,Wired Headphones,1,11.99,10/18/19 10:26,"184 Jackson St, San Francisco, CA 94016" +274033,Wired Headphones,1,11.99,10/16/19 11:43,"69 Ridge St, Austin, TX 73301" +274034,AAA Batteries (4-pack),1,2.99,10/17/19 09:27,"746 6th St, Atlanta, GA 30301" +274035,ThinkPad Laptop,1,999.99,10/07/19 17:52,"70 Jackson St, Seattle, WA 98101" +274036,27in FHD Monitor,1,149.99,10/06/19 14:00,"727 5th St, New York City, NY 10001" +274037,Lightning Charging Cable,1,14.95,10/10/19 20:07,"898 Park St, San Francisco, CA 94016" +274038,USB-C Charging Cable,1,11.95,10/25/19 13:50,"269 Main St, San Francisco, CA 94016" +274039,Wired Headphones,1,11.99,10/26/19 20:00,"875 13th St, New York City, NY 10001" +274040,USB-C Charging Cable,1,11.95,10/04/19 10:25,"563 Adams St, Seattle, WA 98101" +274041,Google Phone,1,600,10/07/19 23:10,"900 Meadow St, Portland, OR 97035" +274042,27in FHD Monitor,1,149.99,10/03/19 20:30,"871 Spruce St, Boston, MA 02215" +274043,Lightning Charging Cable,1,14.95,10/25/19 21:39,"566 Hill St, Los Angeles, CA 90001" +274044,Apple Airpods Headphones,1,150,10/23/19 21:50,"764 Madison St, Los Angeles, CA 90001" +274045,Wired Headphones,2,11.99,10/11/19 18:34,"897 Lake St, Austin, TX 73301" +274046,Wired Headphones,2,11.99,10/13/19 13:40,"938 Hill St, San Francisco, CA 94016" +274047,Bose SoundSport Headphones,1,99.99,10/27/19 16:23,"128 Willow St, San Francisco, CA 94016" +274048,Lightning Charging Cable,1,14.95,10/11/19 21:38,"293 Madison St, Los Angeles, CA 90001" +274049,AA Batteries (4-pack),2,3.84,10/23/19 20:57,"708 9th St, Boston, MA 02215" +274050,Flatscreen TV,1,300,10/31/19 19:34,"563 2nd St, Portland, ME 04101" +274051,Lightning Charging Cable,1,14.95,10/16/19 00:58,"961 Sunset St, Atlanta, GA 30301" +274052,Wired Headphones,1,11.99,10/14/19 15:59,"299 14th St, Portland, OR 97035" +274053,AA Batteries (4-pack),1,3.84,10/05/19 12:11,"849 West St, Seattle, WA 98101" +274054,Flatscreen TV,1,300,10/24/19 19:01,"225 Highland St, San Francisco, CA 94016" +274055,AA Batteries (4-pack),1,3.84,10/31/19 00:20,"982 West St, Portland, OR 97035" +274056,iPhone,1,700,10/28/19 13:08,"189 Highland St, Boston, MA 02215" +274057,Apple Airpods Headphones,1,150,10/13/19 13:39,"704 Willow St, San Francisco, CA 94016" +274058,Wired Headphones,1,11.99,10/14/19 09:21,"206 Lincoln St, Los Angeles, CA 90001" +274059,Wired Headphones,1,11.99,10/21/19 14:57,"318 Park St, Dallas, TX 75001" +274060,USB-C Charging Cable,1,11.95,10/23/19 10:01,"292 Dogwood St, Atlanta, GA 30301" +274061,USB-C Charging Cable,1,11.95,10/12/19 16:05,"755 Main St, San Francisco, CA 94016" +274062,Google Phone,1,600,10/12/19 07:11,"483 Sunset St, San Francisco, CA 94016" +274063,ThinkPad Laptop,1,999.99,10/21/19 19:09,"945 Walnut St, San Francisco, CA 94016" +274064,Lightning Charging Cable,1,14.95,10/27/19 15:29,"575 9th St, Atlanta, GA 30301" +274065,Flatscreen TV,1,300,10/17/19 23:49,"493 Highland St, New York City, NY 10001" +274066,Apple Airpods Headphones,1,150,10/25/19 00:13,"905 14th St, San Francisco, CA 94016" +274067,27in FHD Monitor,1,149.99,10/09/19 22:41,"126 Ridge St, Seattle, WA 98101" +274068,iPhone,1,700,10/23/19 09:37,"53 Walnut St, Los Angeles, CA 90001" +274069,Wired Headphones,1,11.99,10/04/19 14:14,"313 South St, San Francisco, CA 94016" +274070,AAA Batteries (4-pack),1,2.99,10/03/19 20:56,"77 Cedar St, Los Angeles, CA 90001" +274071,AA Batteries (4-pack),1,3.84,10/14/19 14:24,"150 South St, Los Angeles, CA 90001" +274072,34in Ultrawide Monitor,1,379.99,10/08/19 13:14,"388 Washington St, Los Angeles, CA 90001" +274073,USB-C Charging Cable,1,11.95,10/29/19 18:00,"672 North St, Boston, MA 02215" +274074,Lightning Charging Cable,1,14.95,10/28/19 10:33,"185 Spruce St, Boston, MA 02215" +274075,USB-C Charging Cable,2,11.95,10/09/19 19:46,"950 Elm St, Boston, MA 02215" +274076,Wired Headphones,1,11.99,10/16/19 00:25,"637 8th St, Los Angeles, CA 90001" +274077,Macbook Pro Laptop,1,1700,10/13/19 22:46,"339 Madison St, Dallas, TX 75001" +274078,USB-C Charging Cable,1,11.95,10/28/19 14:13,"944 Wilson St, New York City, NY 10001" +274079,Wired Headphones,1,11.99,10/29/19 14:09,"808 14th St, San Francisco, CA 94016" +274080,Lightning Charging Cable,1,14.95,10/29/19 21:20,"210 Wilson St, San Francisco, CA 94016" +274081,AAA Batteries (4-pack),1,2.99,10/20/19 16:53,"573 Ridge St, Atlanta, GA 30301" +274082,Lightning Charging Cable,1,14.95,10/09/19 17:26,"369 Adams St, Boston, MA 02215" +274083,AAA Batteries (4-pack),1,2.99,10/06/19 19:34,"329 North St, Dallas, TX 75001" +274084,34in Ultrawide Monitor,1,379.99,10/12/19 10:01,"149 Willow St, Dallas, TX 75001" +274085,Wired Headphones,1,11.99,10/18/19 12:40,"575 Lake St, Los Angeles, CA 90001" +274085,Lightning Charging Cable,1,14.95,10/18/19 12:40,"575 Lake St, Los Angeles, CA 90001" +274086,AAA Batteries (4-pack),1,2.99,10/27/19 20:46,"453 Meadow St, New York City, NY 10001" +274087,USB-C Charging Cable,1,11.95,10/24/19 15:51,"905 Hickory St, San Francisco, CA 94016" +274088,AAA Batteries (4-pack),2,2.99,10/10/19 19:33,"480 Pine St, Boston, MA 02215" +274089,Bose SoundSport Headphones,1,99.99,10/12/19 20:23,"626 9th St, Los Angeles, CA 90001" +274090,AA Batteries (4-pack),1,3.84,10/23/19 22:35,"628 Wilson St, San Francisco, CA 94016" +274091,Apple Airpods Headphones,1,150,10/16/19 15:56,"942 6th St, Los Angeles, CA 90001" +274092,Apple Airpods Headphones,1,150,10/10/19 13:12,"915 West St, New York City, NY 10001" +274093,Macbook Pro Laptop,1,1700,10/20/19 21:22,"302 Washington St, San Francisco, CA 94016" +274093,Lightning Charging Cable,1,14.95,10/20/19 21:22,"302 Washington St, San Francisco, CA 94016" +274094,USB-C Charging Cable,1,11.95,10/31/19 19:22,"985 Chestnut St, New York City, NY 10001" +274095,AAA Batteries (4-pack),2,2.99,10/25/19 19:52,"523 Wilson St, New York City, NY 10001" +274096,Macbook Pro Laptop,1,1700,10/24/19 09:40,"373 Church St, Los Angeles, CA 90001" +274097,iPhone,1,700,10/22/19 23:12,"997 River St, Los Angeles, CA 90001" +274098,34in Ultrawide Monitor,1,379.99,10/28/19 17:24,"546 Elm St, San Francisco, CA 94016" +274099,AA Batteries (4-pack),1,3.84,10/25/19 21:15,"505 Main St, Dallas, TX 75001" +274100,USB-C Charging Cable,1,11.95,10/06/19 13:55,"575 Jefferson St, New York City, NY 10001" +274101,Macbook Pro Laptop,1,1700,10/06/19 20:31,"662 Chestnut St, San Francisco, CA 94016" +274102,Lightning Charging Cable,1,14.95,10/26/19 07:35,"876 South St, Boston, MA 02215" +274103,Flatscreen TV,1,300,10/04/19 09:47,"399 Madison St, Boston, MA 02215" +274104,27in 4K Gaming Monitor,1,389.99,10/07/19 09:21,"309 Lake St, San Francisco, CA 94016" +274105,Bose SoundSport Headphones,1,99.99,10/31/19 18:11,"650 Lincoln St, San Francisco, CA 94016" +274106,AAA Batteries (4-pack),1,2.99,10/26/19 17:13,"151 5th St, Portland, OR 97035" +274106,34in Ultrawide Monitor,1,379.99,10/26/19 17:13,"151 5th St, Portland, OR 97035" +274107,34in Ultrawide Monitor,1,379.99,10/16/19 22:54,"829 Park St, San Francisco, CA 94016" +274108,Bose SoundSport Headphones,1,99.99,10/31/19 19:42,"960 Madison St, Boston, MA 02215" +274109,27in 4K Gaming Monitor,1,389.99,10/15/19 19:41,"256 12th St, Seattle, WA 98101" +274110,AA Batteries (4-pack),1,3.84,10/11/19 21:22,"303 Spruce St, Los Angeles, CA 90001" +274111,Wired Headphones,1,11.99,10/29/19 19:55,"308 Dogwood St, Boston, MA 02215" +274112,Wired Headphones,1,11.99,10/16/19 12:49,"522 Washington St, Dallas, TX 75001" +274113,USB-C Charging Cable,1,11.95,10/03/19 16:23,"253 Hill St, Los Angeles, CA 90001" +274114,USB-C Charging Cable,1,11.95,10/30/19 17:09,"321 Lincoln St, San Francisco, CA 94016" +274115,Bose SoundSport Headphones,1,99.99,10/15/19 22:32,"380 North St, Boston, MA 02215" +274116,Macbook Pro Laptop,1,1700,10/01/19 21:44,"49 5th St, Los Angeles, CA 90001" +274117,Wired Headphones,2,11.99,10/31/19 21:42,"80 Chestnut St, New York City, NY 10001" +274118,USB-C Charging Cable,1,11.95,10/23/19 18:10,"678 Johnson St, Austin, TX 73301" +274119,Lightning Charging Cable,1,14.95,10/23/19 09:57,"265 1st St, Atlanta, GA 30301" +274120,USB-C Charging Cable,1,11.95,10/24/19 10:47,"537 11th St, New York City, NY 10001" +274121,Lightning Charging Cable,1,14.95,10/21/19 18:21,"467 Center St, San Francisco, CA 94016" +274122,Lightning Charging Cable,1,14.95,10/28/19 16:04,"860 Forest St, Austin, TX 73301" +274123,20in Monitor,1,109.99,10/28/19 11:53,"718 Adams St, Austin, TX 73301" +274124,AAA Batteries (4-pack),1,2.99,10/12/19 11:09,"808 Highland St, San Francisco, CA 94016" +274125,Apple Airpods Headphones,1,150,10/22/19 12:20,"869 West St, Austin, TX 73301" +274126,27in 4K Gaming Monitor,1,389.99,10/21/19 20:51,"828 1st St, Los Angeles, CA 90001" +274127,USB-C Charging Cable,1,11.95,10/08/19 22:24,"983 Washington St, Boston, MA 02215" +274128,Lightning Charging Cable,1,14.95,10/23/19 12:09,"178 12th St, San Francisco, CA 94016" +274129,AA Batteries (4-pack),2,3.84,10/14/19 12:31,"552 6th St, San Francisco, CA 94016" +274130,20in Monitor,1,109.99,10/06/19 20:53,"768 Highland St, Portland, OR 97035" +274131,Bose SoundSport Headphones,1,99.99,10/09/19 11:39,"215 8th St, Seattle, WA 98101" +274132,Lightning Charging Cable,1,14.95,10/05/19 21:41,"293 Dogwood St, Portland, ME 04101" +274133,iPhone,1,700,10/04/19 14:16,"190 Forest St, San Francisco, CA 94016" +274134,34in Ultrawide Monitor,1,379.99,10/26/19 19:54,"868 North St, New York City, NY 10001" +274135,USB-C Charging Cable,1,11.95,10/21/19 10:48,"333 Park St, Austin, TX 73301" +274136,iPhone,1,700,10/13/19 17:32,"540 6th St, Seattle, WA 98101" +274137,Wired Headphones,1,11.99,10/08/19 13:04,"31 Main St, Portland, OR 97035" +274138,AA Batteries (4-pack),1,3.84,10/10/19 17:48,"99 Cedar St, Boston, MA 02215" +274139,Bose SoundSport Headphones,1,99.99,10/07/19 00:01,"510 Highland St, San Francisco, CA 94016" +274140,AAA Batteries (4-pack),2,2.99,10/04/19 20:49,"572 Lakeview St, Los Angeles, CA 90001" +274141,AA Batteries (4-pack),1,3.84,10/27/19 23:32,"586 11th St, Los Angeles, CA 90001" +274142,Lightning Charging Cable,2,14.95,10/20/19 22:16,"166 West St, Los Angeles, CA 90001" +274143,AA Batteries (4-pack),1,3.84,10/16/19 20:33,"638 Center St, New York City, NY 10001" +274144,Lightning Charging Cable,1,14.95,10/05/19 12:52,"507 Ridge St, New York City, NY 10001" +274145,Lightning Charging Cable,1,14.95,10/20/19 07:36,"887 Washington St, Los Angeles, CA 90001" +274146,Vareebadd Phone,1,400,10/06/19 19:29,"581 Washington St, Austin, TX 73301" +274146,USB-C Charging Cable,1,11.95,10/06/19 19:29,"581 Washington St, Austin, TX 73301" +274147,27in 4K Gaming Monitor,1,389.99,10/17/19 11:39,"353 Wilson St, New York City, NY 10001" +274148,USB-C Charging Cable,1,11.95,10/28/19 15:22,"755 Washington St, Portland, OR 97035" +274149,USB-C Charging Cable,1,11.95,10/31/19 17:06,"696 Elm St, Austin, TX 73301" +274150,Apple Airpods Headphones,1,150,10/07/19 13:00,"485 Sunset St, Portland, OR 97035" +274151,USB-C Charging Cable,1,11.95,10/22/19 20:18,"144 Lake St, San Francisco, CA 94016" +274152,USB-C Charging Cable,1,11.95,10/11/19 10:38,"838 8th St, Boston, MA 02215" +274153,Apple Airpods Headphones,1,150,10/31/19 00:56,"282 Pine St, New York City, NY 10001" +274153,Bose SoundSport Headphones,1,99.99,10/31/19 00:56,"282 Pine St, New York City, NY 10001" +274154,Bose SoundSport Headphones,1,99.99,10/23/19 16:50,"573 10th St, Atlanta, GA 30301" +274155,Lightning Charging Cable,1,14.95,10/24/19 18:16,"137 West St, Dallas, TX 75001" +274156,Google Phone,1,600,10/28/19 17:19,"952 Chestnut St, San Francisco, CA 94016" +274157,Lightning Charging Cable,1,14.95,10/14/19 11:15,"695 Church St, Seattle, WA 98101" +274157,20in Monitor,1,109.99,10/14/19 11:15,"695 Church St, Seattle, WA 98101" +274158,Wired Headphones,1,11.99,10/14/19 13:47,"596 Hill St, Portland, OR 97035" +274159,Wired Headphones,1,11.99,10/26/19 18:32,"589 Willow St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +274160,USB-C Charging Cable,1,11.95,10/16/19 09:17,"168 Church St, Seattle, WA 98101" +274161,27in FHD Monitor,1,149.99,10/08/19 10:51,"211 Wilson St, Los Angeles, CA 90001" +274162,34in Ultrawide Monitor,1,379.99,10/16/19 22:12,"301 Meadow St, Boston, MA 02215" +274163,AAA Batteries (4-pack),1,2.99,10/09/19 10:41,"844 Hickory St, Atlanta, GA 30301" +274164,Flatscreen TV,1,300,10/22/19 14:32,"924 Dogwood St, New York City, NY 10001" +274165,Flatscreen TV,1,300,10/22/19 04:19,"151 Spruce St, New York City, NY 10001" +274166,USB-C Charging Cable,1,11.95,10/12/19 20:16,"186 Wilson St, New York City, NY 10001" +274167,Wired Headphones,1,11.99,10/07/19 15:58,"805 River St, Austin, TX 73301" +274168,Flatscreen TV,1,300,10/09/19 13:25,"216 12th St, Boston, MA 02215" +274169,AAA Batteries (4-pack),2,2.99,10/21/19 11:10,"804 14th St, Los Angeles, CA 90001" +274170,Apple Airpods Headphones,1,150,10/02/19 20:39,"241 6th St, Los Angeles, CA 90001" +274171,Lightning Charging Cable,1,14.95,10/24/19 14:22,"466 14th St, Portland, OR 97035" +274172,Wired Headphones,1,11.99,10/07/19 01:15,"911 Hickory St, Los Angeles, CA 90001" +274173,20in Monitor,1,109.99,10/23/19 11:14,"434 Chestnut St, San Francisco, CA 94016" +274174,Google Phone,1,600,10/03/19 13:21,"881 9th St, Boston, MA 02215" +274175,Apple Airpods Headphones,1,150,10/13/19 17:51,"663 Dogwood St, Portland, OR 97035" +274176,Wired Headphones,1,11.99,10/20/19 07:24,"270 Elm St, Los Angeles, CA 90001" +274177,AAA Batteries (4-pack),1,2.99,10/27/19 13:56,"863 Spruce St, New York City, NY 10001" +274178,Wired Headphones,1,11.99,10/15/19 00:27,"60 Madison St, New York City, NY 10001" +274179,AAA Batteries (4-pack),2,2.99,10/23/19 01:12,"152 Hill St, Seattle, WA 98101" +274180,AA Batteries (4-pack),1,3.84,10/19/19 10:25,"185 Washington St, New York City, NY 10001" +274181,AA Batteries (4-pack),1,3.84,10/10/19 22:38,"190 5th St, Dallas, TX 75001" +274182,AAA Batteries (4-pack),2,2.99,10/12/19 16:45,"183 5th St, San Francisco, CA 94016" +274183,USB-C Charging Cable,1,11.95,10/31/19 14:33,"248 Main St, New York City, NY 10001" +274184,AA Batteries (4-pack),1,3.84,10/31/19 09:57,"17 Johnson St, Dallas, TX 75001" +274185,AAA Batteries (4-pack),1,2.99,10/25/19 09:03,"68 13th St, Los Angeles, CA 90001" +274186,27in FHD Monitor,1,149.99,10/29/19 09:41,"349 Meadow St, Seattle, WA 98101" +274187,Bose SoundSport Headphones,1,99.99,10/03/19 16:16,"913 Lincoln St, Dallas, TX 75001" +274188,Apple Airpods Headphones,1,150,10/15/19 21:49,"386 Johnson St, San Francisco, CA 94016" +274189,AAA Batteries (4-pack),1,2.99,10/05/19 21:45,"412 4th St, New York City, NY 10001" +274190,20in Monitor,1,109.99,10/18/19 18:17,"745 14th St, San Francisco, CA 94016" +,,,,, +274191,Wired Headphones,2,11.99,10/28/19 22:06,"395 Chestnut St, New York City, NY 10001" +274192,27in 4K Gaming Monitor,1,389.99,10/22/19 14:17,"690 Church St, New York City, NY 10001" +274193,AAA Batteries (4-pack),2,2.99,10/06/19 07:33,"568 Willow St, Boston, MA 02215" +274194,AAA Batteries (4-pack),1,2.99,10/04/19 18:43,"539 Highland St, Portland, OR 97035" +274195,AA Batteries (4-pack),1,3.84,10/06/19 11:14,"166 Hickory St, Los Angeles, CA 90001" +274196,USB-C Charging Cable,1,11.95,10/21/19 17:11,"589 South St, Austin, TX 73301" +274197,AAA Batteries (4-pack),1,2.99,10/14/19 18:00,"202 Meadow St, New York City, NY 10001" +274198,20in Monitor,1,109.99,10/09/19 19:45,"96 Center St, Boston, MA 02215" +274199,USB-C Charging Cable,1,11.95,10/08/19 18:20,"721 Hickory St, San Francisco, CA 94016" +274200,Flatscreen TV,1,300,10/11/19 14:53,"432 Cedar St, Los Angeles, CA 90001" +274201,Apple Airpods Headphones,1,150,10/29/19 19:59,"443 Johnson St, San Francisco, CA 94016" +274202,27in FHD Monitor,1,149.99,10/28/19 09:51,"404 Cherry St, Dallas, TX 75001" +274203,AAA Batteries (4-pack),1,2.99,10/17/19 20:02,"666 River St, San Francisco, CA 94016" +274204,Apple Airpods Headphones,1,150,10/31/19 03:34,"758 Maple St, San Francisco, CA 94016" +274205,Bose SoundSport Headphones,1,99.99,10/31/19 18:13,"470 10th St, San Francisco, CA 94016" +274206,ThinkPad Laptop,1,999.99,10/16/19 18:07,"642 Lincoln St, Boston, MA 02215" +274207,Apple Airpods Headphones,1,150,10/03/19 16:15,"569 Forest St, Boston, MA 02215" +274208,Bose SoundSport Headphones,1,99.99,10/26/19 09:58,"738 10th St, Los Angeles, CA 90001" +274209,USB-C Charging Cable,1,11.95,10/18/19 02:01,"352 Lincoln St, Atlanta, GA 30301" +274210,USB-C Charging Cable,1,11.95,10/28/19 11:35,"682 Wilson St, Seattle, WA 98101" +274211,27in FHD Monitor,1,149.99,10/11/19 17:02,"572 Madison St, San Francisco, CA 94016" +274212,27in 4K Gaming Monitor,1,389.99,10/13/19 19:09,"995 Walnut St, Portland, OR 97035" +274213,ThinkPad Laptop,1,999.99,10/18/19 09:45,"511 9th St, Seattle, WA 98101" +274213,Wired Headphones,2,11.99,10/18/19 09:45,"511 9th St, Seattle, WA 98101" +274214,Apple Airpods Headphones,1,150,10/13/19 13:59,"959 West St, New York City, NY 10001" +274215,USB-C Charging Cable,1,11.95,10/02/19 11:38,"783 West St, Los Angeles, CA 90001" +274216,Apple Airpods Headphones,1,150,10/06/19 13:44,"183 2nd St, San Francisco, CA 94016" +274217,20in Monitor,1,109.99,10/26/19 16:46,"324 Wilson St, Los Angeles, CA 90001" +274218,Lightning Charging Cable,1,14.95,10/08/19 15:38,"333 Adams St, Atlanta, GA 30301" +274219,USB-C Charging Cable,1,11.95,10/27/19 07:33,"363 Cedar St, Los Angeles, CA 90001" +274220,27in FHD Monitor,1,149.99,10/04/19 16:53,"420 8th St, New York City, NY 10001" +274221,Wired Headphones,1,11.99,10/26/19 01:35,"745 Johnson St, Dallas, TX 75001" +274222,Google Phone,1,600,10/17/19 15:52,"432 Wilson St, Boston, MA 02215" +274222,Wired Headphones,1,11.99,10/17/19 15:52,"432 Wilson St, Boston, MA 02215" +,,,,, +274223,20in Monitor,1,109.99,10/26/19 15:32,"923 Johnson St, Atlanta, GA 30301" +274224,AAA Batteries (4-pack),1,2.99,10/14/19 16:07,"949 Madison St, Atlanta, GA 30301" +274225,USB-C Charging Cable,1,11.95,10/08/19 12:52,"275 Jackson St, New York City, NY 10001" +274226,Bose SoundSport Headphones,1,99.99,10/04/19 21:48,"93 2nd St, Boston, MA 02215" +274227,AA Batteries (4-pack),1,3.84,10/23/19 07:53,"766 11th St, Los Angeles, CA 90001" +274228,27in FHD Monitor,1,149.99,10/10/19 15:01,"749 Johnson St, Seattle, WA 98101" +274229,Lightning Charging Cable,3,14.95,10/14/19 10:06,"577 6th St, San Francisco, CA 94016" +274230,iPhone,1,700,10/19/19 14:09,"683 11th St, San Francisco, CA 94016" +274231,iPhone,1,700,10/03/19 21:05,"841 Main St, Boston, MA 02215" +274232,Lightning Charging Cable,1,14.95,10/09/19 10:54,"720 Willow St, Dallas, TX 75001" +274233,27in 4K Gaming Monitor,1,389.99,10/16/19 09:07,"906 Main St, San Francisco, CA 94016" +274234,Lightning Charging Cable,1,14.95,10/14/19 16:34,"588 West St, Los Angeles, CA 90001" +274235,Lightning Charging Cable,1,14.95,10/15/19 10:01,"913 Washington St, Seattle, WA 98101" +274236,AA Batteries (4-pack),1,3.84,10/05/19 22:15,"259 Sunset St, New York City, NY 10001" +274237,iPhone,1,700,10/27/19 21:02,"187 Jackson St, Atlanta, GA 30301" +274238,USB-C Charging Cable,1,11.95,10/26/19 12:55,"335 Cherry St, Boston, MA 02215" +274239,Lightning Charging Cable,1,14.95,10/12/19 15:04,"355 Lake St, San Francisco, CA 94016" +274240,27in 4K Gaming Monitor,1,389.99,10/10/19 22:09,"546 Sunset St, Los Angeles, CA 90001" +274241,Apple Airpods Headphones,1,150,10/08/19 22:51,"589 1st St, San Francisco, CA 94016" +274242,Macbook Pro Laptop,1,1700,10/14/19 19:29,"362 Center St, New York City, NY 10001" +274243,AAA Batteries (4-pack),1,2.99,10/31/19 12:54,"408 Church St, Boston, MA 02215" +274244,Lightning Charging Cable,1,14.95,10/16/19 15:03,"513 Hill St, Seattle, WA 98101" +274245,Wired Headphones,1,11.99,10/12/19 13:41,"575 Center St, Dallas, TX 75001" +274246,Wired Headphones,1,11.99,10/25/19 22:49,"803 Center St, San Francisco, CA 94016" +274247,USB-C Charging Cable,1,11.95,10/12/19 19:35,"753 10th St, San Francisco, CA 94016" +274248,AA Batteries (4-pack),2,3.84,10/12/19 18:10,"693 Washington St, San Francisco, CA 94016" +274249,USB-C Charging Cable,1,11.95,10/10/19 20:43,"579 Cedar St, Los Angeles, CA 90001" +274250,27in 4K Gaming Monitor,1,389.99,10/28/19 11:52,"980 West St, San Francisco, CA 94016" +274251,Vareebadd Phone,1,400,10/24/19 09:12,"265 Meadow St, Dallas, TX 75001" +274252,AAA Batteries (4-pack),1,2.99,10/30/19 17:23,"970 Madison St, Portland, OR 97035" +274253,Vareebadd Phone,1,400,10/27/19 19:23,"876 Spruce St, Atlanta, GA 30301" +274254,AA Batteries (4-pack),1,3.84,10/08/19 10:09,"24 Lake St, Los Angeles, CA 90001" +274255,Lightning Charging Cable,2,14.95,10/25/19 13:16,"113 Willow St, New York City, NY 10001" +274256,Bose SoundSport Headphones,1,99.99,10/25/19 12:21,"622 Cedar St, Los Angeles, CA 90001" +274257,Apple Airpods Headphones,1,150,10/15/19 12:38,"164 Maple St, Los Angeles, CA 90001" +274258,AAA Batteries (4-pack),3,2.99,10/30/19 09:59,"175 Wilson St, Los Angeles, CA 90001" +274259,USB-C Charging Cable,1,11.95,10/13/19 09:26,"715 12th St, Los Angeles, CA 90001" +274260,Flatscreen TV,1,300,10/07/19 18:54,"465 Lake St, Seattle, WA 98101" +274261,Wired Headphones,1,11.99,10/04/19 18:18,"593 South St, San Francisco, CA 94016" +274262,Bose SoundSport Headphones,1,99.99,10/17/19 20:33,"312 9th St, Los Angeles, CA 90001" +274263,Bose SoundSport Headphones,1,99.99,10/07/19 12:50,"597 Johnson St, Los Angeles, CA 90001" +274264,27in FHD Monitor,1,149.99,10/07/19 07:27,"804 Washington St, Portland, OR 97035" +274265,Bose SoundSport Headphones,1,99.99,10/05/19 11:43,"523 Adams St, San Francisco, CA 94016" +274266,Wired Headphones,1,11.99,10/01/19 10:07,"887 Highland St, San Francisco, CA 94016" +274267,AA Batteries (4-pack),1,3.84,10/21/19 23:14,"596 6th St, Boston, MA 02215" +274268,AA Batteries (4-pack),1,3.84,10/21/19 14:12,"948 Ridge St, Seattle, WA 98101" +274269,USB-C Charging Cable,2,11.95,10/04/19 12:15,"896 Lake St, San Francisco, CA 94016" +274270,Lightning Charging Cable,1,14.95,10/02/19 23:30,"624 8th St, Dallas, TX 75001" +274271,AAA Batteries (4-pack),3,2.99,10/04/19 15:59,"567 Adams St, Dallas, TX 75001" +274272,USB-C Charging Cable,1,11.95,10/06/19 15:05,"266 Forest St, Atlanta, GA 30301" +274273,Lightning Charging Cable,1,14.95,10/30/19 21:45,"403 Ridge St, Boston, MA 02215" +274274,ThinkPad Laptop,1,999.99,10/17/19 14:45,"889 7th St, Los Angeles, CA 90001" +274275,34in Ultrawide Monitor,1,379.99,10/21/19 14:05,"516 Highland St, San Francisco, CA 94016" +274276,USB-C Charging Cable,1,11.95,10/03/19 16:02,"177 Forest St, Los Angeles, CA 90001" +274277,iPhone,1,700,10/12/19 11:54,"434 4th St, San Francisco, CA 94016" +274278,AA Batteries (4-pack),1,3.84,10/16/19 18:51,"282 Hill St, San Francisco, CA 94016" +274279,34in Ultrawide Monitor,1,379.99,10/27/19 11:34,"513 Johnson St, New York City, NY 10001" +274280,27in 4K Gaming Monitor,1,389.99,10/20/19 02:30,"996 Sunset St, New York City, NY 10001" +274281,AAA Batteries (4-pack),1,2.99,10/31/19 15:22,"980 5th St, Atlanta, GA 30301" +274282,Google Phone,1,600,10/02/19 17:39,"470 Highland St, Austin, TX 73301" +274283,USB-C Charging Cable,1,11.95,10/07/19 18:41,"782 Elm St, San Francisco, CA 94016" +274284,AA Batteries (4-pack),1,3.84,10/06/19 00:34,"158 Meadow St, Portland, OR 97035" +274285,Google Phone,1,600,10/01/19 11:02,"820 Johnson St, Los Angeles, CA 90001" +274286,AAA Batteries (4-pack),2,2.99,10/28/19 09:39,"147 West St, San Francisco, CA 94016" +274287,Lightning Charging Cable,1,14.95,10/06/19 03:35,"726 14th St, San Francisco, CA 94016" +274288,Flatscreen TV,1,300,10/13/19 22:54,"6 6th St, San Francisco, CA 94016" +274288,LG Washing Machine,1,600.0,10/13/19 22:54,"6 6th St, San Francisco, CA 94016" +274289,USB-C Charging Cable,1,11.95,10/22/19 15:44,"175 13th St, Portland, ME 04101" +274290,iPhone,1,700,10/25/19 13:23,"903 Elm St, Austin, TX 73301" +274291,Google Phone,1,600,10/16/19 14:22,"503 Ridge St, Portland, OR 97035" +274292,AAA Batteries (4-pack),3,2.99,10/25/19 16:16,"265 Cedar St, Atlanta, GA 30301" +274293,AA Batteries (4-pack),1,3.84,10/01/19 12:56,"626 Forest St, Atlanta, GA 30301" +274294,Lightning Charging Cable,1,14.95,10/19/19 18:13,"263 Hill St, New York City, NY 10001" +274295,ThinkPad Laptop,1,999.99,10/24/19 10:04,"404 Lake St, Austin, TX 73301" +274296,Google Phone,1,600,10/04/19 09:51,"710 Main St, Los Angeles, CA 90001" +274296,USB-C Charging Cable,1,11.95,10/04/19 09:51,"710 Main St, Los Angeles, CA 90001" +274297,AA Batteries (4-pack),1,3.84,10/30/19 16:03,"264 Pine St, Atlanta, GA 30301" +274298,Lightning Charging Cable,1,14.95,10/17/19 16:44,"923 8th St, New York City, NY 10001" +274299,Apple Airpods Headphones,1,150,10/12/19 04:09,"271 Walnut St, New York City, NY 10001" +274300,Google Phone,1,600,10/21/19 15:52,"261 West St, San Francisco, CA 94016" +274300,Wired Headphones,1,11.99,10/21/19 15:52,"261 West St, San Francisco, CA 94016" +274301,Macbook Pro Laptop,1,1700,10/10/19 16:30,"979 Highland St, Dallas, TX 75001" +274302,Wired Headphones,1,11.99,10/03/19 12:22,"196 12th St, Dallas, TX 75001" +274303,Wired Headphones,1,11.99,10/10/19 04:00,"898 14th St, Dallas, TX 75001" +274304,Google Phone,1,600,10/24/19 17:22,"134 Meadow St, Boston, MA 02215" +274305,Lightning Charging Cable,1,14.95,10/01/19 13:38,"178 Jefferson St, San Francisco, CA 94016" +274306,Vareebadd Phone,1,400,10/23/19 18:36,"110 Park St, New York City, NY 10001" +274307,27in 4K Gaming Monitor,1,389.99,10/02/19 15:31,"769 14th St, San Francisco, CA 94016" +274308,Bose SoundSport Headphones,1,99.99,10/10/19 15:28,"225 Wilson St, Dallas, TX 75001" +274309,USB-C Charging Cable,2,11.95,10/06/19 11:41,"911 Forest St, San Francisco, CA 94016" +274310,Macbook Pro Laptop,1,1700,10/05/19 12:37,"395 Washington St, Austin, TX 73301" +274311,Flatscreen TV,1,300,10/09/19 11:58,"784 7th St, Los Angeles, CA 90001" +274312,Lightning Charging Cable,1,14.95,10/04/19 10:07,"354 Cedar St, Boston, MA 02215" +274313,AA Batteries (4-pack),2,3.84,10/22/19 16:04,"601 River St, New York City, NY 10001" +274314,USB-C Charging Cable,1,11.95,10/25/19 18:59,"878 Walnut St, Atlanta, GA 30301" +274315,Google Phone,1,600,10/29/19 11:01,"465 4th St, Dallas, TX 75001" +274316,AA Batteries (4-pack),2,3.84,10/09/19 22:31,"235 Spruce St, Atlanta, GA 30301" +274317,27in FHD Monitor,1,149.99,10/05/19 15:05,"741 Ridge St, Austin, TX 73301" +274318,AA Batteries (4-pack),1,3.84,10/07/19 06:50,"880 Madison St, New York City, NY 10001" +274319,AA Batteries (4-pack),1,3.84,10/02/19 00:58,"125 Jefferson St, Los Angeles, CA 90001" +274319,Flatscreen TV,1,300,10/02/19 00:58,"125 Jefferson St, Los Angeles, CA 90001" +274320,ThinkPad Laptop,1,999.99,10/21/19 11:28,"620 Park St, San Francisco, CA 94016" +274321,Wired Headphones,1,11.99,10/29/19 14:07,"303 Johnson St, Los Angeles, CA 90001" +274322,AA Batteries (4-pack),1,3.84,10/04/19 13:51,"665 Madison St, Portland, ME 04101" +274323,USB-C Charging Cable,1,11.95,10/22/19 17:24,"808 10th St, Atlanta, GA 30301" +274324,27in 4K Gaming Monitor,1,389.99,10/29/19 12:53,"778 11th St, Dallas, TX 75001" +274325,Wired Headphones,1,11.99,10/13/19 20:44,"995 6th St, New York City, NY 10001" +274326,USB-C Charging Cable,1,11.95,10/09/19 11:23,"68 Lake St, Seattle, WA 98101" +274327,34in Ultrawide Monitor,1,379.99,10/29/19 17:14,"223 Church St, Boston, MA 02215" +274328,AA Batteries (4-pack),1,3.84,10/25/19 13:10,"350 Wilson St, New York City, NY 10001" +274329,Apple Airpods Headphones,1,150,10/29/19 00:19,"714 11th St, San Francisco, CA 94016" +274330,Apple Airpods Headphones,1,150,10/18/19 05:40,"837 Cherry St, Portland, OR 97035" +274331,AA Batteries (4-pack),1,3.84,10/17/19 21:46,"232 Lincoln St, San Francisco, CA 94016" +274332,USB-C Charging Cable,1,11.95,10/08/19 19:39,"413 Pine St, Atlanta, GA 30301" +274333,USB-C Charging Cable,1,11.95,10/17/19 23:58,"218 4th St, Dallas, TX 75001" +274334,AA Batteries (4-pack),1,3.84,10/09/19 19:38,"681 Dogwood St, Los Angeles, CA 90001" +274335,Wired Headphones,1,11.99,10/29/19 11:43,"35 11th St, New York City, NY 10001" +274336,Apple Airpods Headphones,1,150,10/04/19 23:18,"674 Johnson St, New York City, NY 10001" +274337,27in FHD Monitor,1,149.99,10/29/19 20:47,"434 Cedar St, Los Angeles, CA 90001" +274338,AA Batteries (4-pack),1,3.84,10/23/19 22:06,"630 Wilson St, Los Angeles, CA 90001" +274339,Apple Airpods Headphones,1,150,10/30/19 22:20,"916 Wilson St, Austin, TX 73301" +274340,AAA Batteries (4-pack),1,2.99,10/13/19 18:32,"890 1st St, San Francisco, CA 94016" +274341,Lightning Charging Cable,1,14.95,10/04/19 23:10,"337 Dogwood St, San Francisco, CA 94016" +274342,27in FHD Monitor,1,149.99,10/04/19 11:06,"924 Main St, New York City, NY 10001" +274343,Lightning Charging Cable,1,14.95,10/05/19 15:46,"406 Highland St, Portland, OR 97035" +274344,Lightning Charging Cable,2,14.95,10/11/19 10:05,"752 Meadow St, New York City, NY 10001" +274345,34in Ultrawide Monitor,1,379.99,10/04/19 07:26,"783 1st St, San Francisco, CA 94016" +274346,Apple Airpods Headphones,1,150,10/24/19 18:39,"385 5th St, New York City, NY 10001" +274347,Lightning Charging Cable,1,14.95,10/29/19 12:40,"4 4th St, San Francisco, CA 94016" +274348,AA Batteries (4-pack),3,3.84,10/28/19 18:48,"96 Willow St, Los Angeles, CA 90001" +274349,Apple Airpods Headphones,1,150,10/08/19 17:51,"256 9th St, Portland, OR 97035" +274350,Wired Headphones,1,11.99,10/23/19 13:46,"590 9th St, New York City, NY 10001" +274351,20in Monitor,1,109.99,10/15/19 17:38,"219 7th St, Los Angeles, CA 90001" +274352,AAA Batteries (4-pack),1,2.99,10/05/19 19:51,"446 Church St, New York City, NY 10001" +274353,AAA Batteries (4-pack),2,2.99,10/22/19 13:48,"778 Hill St, Los Angeles, CA 90001" +274354,Apple Airpods Headphones,1,150,10/04/19 21:24,"886 14th St, Los Angeles, CA 90001" +274355,AA Batteries (4-pack),1,3.84,10/12/19 12:16,"432 Pine St, Seattle, WA 98101" +274356,AAA Batteries (4-pack),1,2.99,10/22/19 21:32,"766 North St, Los Angeles, CA 90001" +274357,Vareebadd Phone,1,400,10/13/19 12:05,"36 Spruce St, San Francisco, CA 94016" +274358,AA Batteries (4-pack),1,3.84,10/01/19 18:08,"619 Pine St, New York City, NY 10001" +274359,Lightning Charging Cable,1,14.95,10/12/19 10:32,"922 Hill St, Los Angeles, CA 90001" +274360,Bose SoundSport Headphones,1,99.99,10/20/19 21:36,"855 4th St, Atlanta, GA 30301" +274361,AA Batteries (4-pack),3,3.84,10/27/19 14:19,"549 11th St, Los Angeles, CA 90001" +274362,Wired Headphones,1,11.99,10/29/19 13:20,"200 5th St, San Francisco, CA 94016" +274363,AA Batteries (4-pack),1,3.84,10/14/19 17:11,"9 5th St, Los Angeles, CA 90001" +274364,Bose SoundSport Headphones,1,99.99,10/15/19 21:18,"148 Maple St, Boston, MA 02215" +274365,AA Batteries (4-pack),3,3.84,10/26/19 07:43,"380 12th St, Boston, MA 02215" +274366,AA Batteries (4-pack),2,3.84,10/26/19 11:47,"232 Dogwood St, New York City, NY 10001" +274366,AA Batteries (4-pack),4,3.84,10/26/19 11:47,"232 Dogwood St, New York City, NY 10001" +274367,Wired Headphones,1,11.99,10/20/19 20:55,"466 8th St, New York City, NY 10001" +274368,ThinkPad Laptop,1,999.99,10/10/19 10:10,"890 Wilson St, San Francisco, CA 94016" +274369,27in 4K Gaming Monitor,1,389.99,10/31/19 16:18,"335 11th St, Seattle, WA 98101" +274370,AA Batteries (4-pack),1,3.84,10/09/19 17:03,"60 6th St, Los Angeles, CA 90001" +274371,Lightning Charging Cable,1,14.95,10/08/19 12:57,"169 Wilson St, Atlanta, GA 30301" +274372,34in Ultrawide Monitor,1,379.99,10/18/19 18:48,"461 8th St, San Francisco, CA 94016" +274373,Flatscreen TV,1,300,10/05/19 14:55,"629 Lake St, Portland, OR 97035" +274374,27in 4K Gaming Monitor,1,389.99,10/05/19 16:34,"524 Jackson St, Seattle, WA 98101" +274375,Lightning Charging Cable,1,14.95,10/04/19 20:50,"264 Meadow St, Portland, OR 97035" +274376,AAA Batteries (4-pack),1,2.99,10/20/19 14:25,"496 8th St, San Francisco, CA 94016" +274377,Bose SoundSport Headphones,1,99.99,10/26/19 13:19,"585 8th St, San Francisco, CA 94016" +274378,Macbook Pro Laptop,1,1700,10/16/19 19:36,"508 14th St, San Francisco, CA 94016" +274379,USB-C Charging Cable,1,11.95,10/14/19 12:42,"287 West St, Portland, OR 97035" +274380,27in 4K Gaming Monitor,1,389.99,10/07/19 12:01,"808 Dogwood St, Boston, MA 02215" +274381,Flatscreen TV,1,300,10/20/19 17:32,"344 Adams St, Los Angeles, CA 90001" +274382,iPhone,1,700,10/04/19 07:31,"524 Lakeview St, Boston, MA 02215" +274382,Lightning Charging Cable,1,14.95,10/04/19 07:31,"524 Lakeview St, Boston, MA 02215" +274383,Lightning Charging Cable,1,14.95,10/06/19 19:10,"699 Hill St, San Francisco, CA 94016" +274384,USB-C Charging Cable,1,11.95,10/15/19 23:57,"249 Center St, Boston, MA 02215" +274385,Lightning Charging Cable,1,14.95,10/17/19 22:49,"427 Hickory St, Boston, MA 02215" +274386,AA Batteries (4-pack),2,3.84,10/29/19 13:56,"39 14th St, Los Angeles, CA 90001" +274387,20in Monitor,1,109.99,10/19/19 16:27,"652 South St, San Francisco, CA 94016" +274388,Vareebadd Phone,1,400,10/23/19 14:20,"42 Lincoln St, New York City, NY 10001" +274388,USB-C Charging Cable,1,11.95,10/23/19 14:20,"42 Lincoln St, New York City, NY 10001" +274389,ThinkPad Laptop,1,999.99,10/17/19 23:53,"880 Cedar St, San Francisco, CA 94016" +274390,AAA Batteries (4-pack),1,2.99,10/14/19 14:00,"610 4th St, Seattle, WA 98101" +274391,AA Batteries (4-pack),1,3.84,10/21/19 10:57,"827 Sunset St, New York City, NY 10001" +274392,34in Ultrawide Monitor,1,379.99,10/20/19 16:50,"53 River St, Seattle, WA 98101" +274393,Apple Airpods Headphones,1,150,10/05/19 15:38,"418 Jackson St, San Francisco, CA 94016" +274394,Flatscreen TV,1,300,10/21/19 11:25,"836 Jackson St, New York City, NY 10001" +274395,AA Batteries (4-pack),1,3.84,10/28/19 14:15,"231 12th St, San Francisco, CA 94016" +274396,20in Monitor,1,109.99,10/08/19 13:07,"891 7th St, Dallas, TX 75001" +274397,Wired Headphones,1,11.99,10/07/19 18:29,"488 10th St, San Francisco, CA 94016" +274398,iPhone,1,700,10/21/19 14:32,"832 10th St, New York City, NY 10001" +274399,Lightning Charging Cable,1,14.95,10/23/19 12:00,"672 Adams St, Atlanta, GA 30301" +274400,Lightning Charging Cable,1,14.95,10/10/19 23:37,"297 Main St, New York City, NY 10001" +274401,AA Batteries (4-pack),1,3.84,10/06/19 19:06,"40 4th St, San Francisco, CA 94016" +274402,Wired Headphones,1,11.99,10/27/19 11:43,"237 4th St, Los Angeles, CA 90001" +274403,AAA Batteries (4-pack),1,2.99,10/30/19 17:57,"201 Wilson St, Dallas, TX 75001" +274404,34in Ultrawide Monitor,1,379.99,10/31/19 00:42,"607 7th St, Los Angeles, CA 90001" +274405,Lightning Charging Cable,1,14.95,10/18/19 15:14,"908 Sunset St, Los Angeles, CA 90001" +274406,Wired Headphones,1,11.99,10/08/19 12:04,"262 Main St, New York City, NY 10001" +274407,Lightning Charging Cable,1,14.95,10/14/19 18:35,"751 2nd St, New York City, NY 10001" +274408,Google Phone,1,600,10/28/19 17:31,"692 Maple St, Seattle, WA 98101" +274409,Macbook Pro Laptop,1,1700,10/30/19 14:35,"592 10th St, New York City, NY 10001" +274410,Wired Headphones,1,11.99,10/16/19 13:57,"445 Madison St, San Francisco, CA 94016" +274411,Bose SoundSport Headphones,1,99.99,10/31/19 12:13,"190 4th St, Dallas, TX 75001" +274412,AAA Batteries (4-pack),1,2.99,10/23/19 18:17,"25 6th St, San Francisco, CA 94016" +274413,Flatscreen TV,1,300,10/20/19 19:54,"870 Cedar St, Boston, MA 02215" +274414,AAA Batteries (4-pack),3,2.99,10/04/19 14:43,"302 Cherry St, New York City, NY 10001" +274415,Flatscreen TV,1,300,10/20/19 22:44,"283 Jackson St, Seattle, WA 98101" +274416,USB-C Charging Cable,1,11.95,10/30/19 12:52,"493 Dogwood St, Los Angeles, CA 90001" +274417,Bose SoundSport Headphones,1,99.99,10/27/19 18:37,"591 Chestnut St, New York City, NY 10001" +274418,Vareebadd Phone,1,400,10/19/19 12:16,"429 Adams St, New York City, NY 10001" +274419,Google Phone,1,600,10/21/19 13:49,"673 Park St, New York City, NY 10001" +274420,Apple Airpods Headphones,1,150,10/10/19 15:55,"293 14th St, Austin, TX 73301" +274421,AAA Batteries (4-pack),4,2.99,10/28/19 20:46,"69 Lakeview St, Portland, OR 97035" +274422,AAA Batteries (4-pack),1,2.99,10/01/19 15:05,"821 Pine St, Los Angeles, CA 90001" +274423,AA Batteries (4-pack),1,3.84,10/08/19 20:39,"964 4th St, San Francisco, CA 94016" +274424,Lightning Charging Cable,1,14.95,10/07/19 19:34,"311 Lake St, Los Angeles, CA 90001" +274425,ThinkPad Laptop,1,999.99,10/19/19 18:22,"686 Lakeview St, San Francisco, CA 94016" +274426,27in FHD Monitor,1,149.99,10/02/19 17:32,"835 Maple St, Seattle, WA 98101" +274427,Apple Airpods Headphones,1,150,10/06/19 14:46,"924 Spruce St, San Francisco, CA 94016" +274428,AAA Batteries (4-pack),2,2.99,10/13/19 12:54,"29 Church St, Atlanta, GA 30301" +274429,Apple Airpods Headphones,1,150,10/24/19 00:17,"338 Washington St, Seattle, WA 98101" +274430,27in FHD Monitor,1,149.99,10/10/19 16:28,"174 9th St, Boston, MA 02215" +274431,AA Batteries (4-pack),1,3.84,10/03/19 18:23,"835 14th St, Los Angeles, CA 90001" +274432,Apple Airpods Headphones,1,150,10/26/19 12:55,"338 Hill St, San Francisco, CA 94016" +274433,AA Batteries (4-pack),2,3.84,10/23/19 12:11,"571 Walnut St, Atlanta, GA 30301" +274434,AA Batteries (4-pack),3,3.84,10/31/19 19:12,"499 13th St, New York City, NY 10001" +274435,Lightning Charging Cable,1,14.95,10/10/19 11:18,"816 Lincoln St, San Francisco, CA 94016" +274436,AA Batteries (4-pack),2,3.84,10/07/19 13:26,"391 Forest St, Dallas, TX 75001" +274437,AA Batteries (4-pack),1,3.84,10/23/19 10:29,"694 Park St, San Francisco, CA 94016" +274438,AAA Batteries (4-pack),1,2.99,10/08/19 13:26,"791 Main St, Boston, MA 02215" +274439,Bose SoundSport Headphones,1,99.99,10/05/19 13:14,"650 Walnut St, Dallas, TX 75001" +274440,Wired Headphones,1,11.99,10/30/19 20:46,"987 South St, Seattle, WA 98101" +274441,AAA Batteries (4-pack),2,2.99,10/06/19 08:55,"374 14th St, Atlanta, GA 30301" +274442,27in FHD Monitor,1,149.99,10/30/19 12:31,"631 6th St, Atlanta, GA 30301" +274443,AAA Batteries (4-pack),3,2.99,10/17/19 16:31,"108 Highland St, San Francisco, CA 94016" +274444,AAA Batteries (4-pack),1,2.99,10/27/19 00:03,"698 8th St, Seattle, WA 98101" +274445,27in 4K Gaming Monitor,1,389.99,10/02/19 07:26,"43 Center St, Atlanta, GA 30301" +274446,27in FHD Monitor,1,149.99,10/16/19 13:02,"892 Meadow St, Los Angeles, CA 90001" +274447,27in 4K Gaming Monitor,1,389.99,10/09/19 11:56,"597 4th St, Atlanta, GA 30301" +274448,27in 4K Gaming Monitor,1,389.99,10/12/19 20:17,"994 Willow St, Austin, TX 73301" +274449,AAA Batteries (4-pack),2,2.99,10/10/19 08:15,"487 Cedar St, New York City, NY 10001" +274450,AAA Batteries (4-pack),1,2.99,10/26/19 17:02,"195 Willow St, Atlanta, GA 30301" +274451,AAA Batteries (4-pack),1,2.99,10/12/19 06:55,"211 13th St, Seattle, WA 98101" +274452,Bose SoundSport Headphones,1,99.99,10/15/19 09:24,"789 Highland St, New York City, NY 10001" +274453,USB-C Charging Cable,1,11.95,10/28/19 12:58,"767 14th St, San Francisco, CA 94016" +274454,Macbook Pro Laptop,1,1700,10/22/19 23:41,"150 Center St, San Francisco, CA 94016" +274455,Bose SoundSport Headphones,1,99.99,10/28/19 09:58,"483 Chestnut St, San Francisco, CA 94016" +274456,Apple Airpods Headphones,1,150,10/04/19 21:19,"983 Elm St, Seattle, WA 98101" +274457,Macbook Pro Laptop,1,1700,10/01/19 13:55,"548 Maple St, New York City, NY 10001" +274458,27in 4K Gaming Monitor,1,389.99,10/31/19 11:37,"541 6th St, New York City, NY 10001" +274459,27in 4K Gaming Monitor,1,389.99,10/24/19 12:25,"485 Main St, Seattle, WA 98101" +274460,Bose SoundSport Headphones,1,99.99,10/04/19 17:51,"866 Cedar St, Austin, TX 73301" +274461,Wired Headphones,1,11.99,10/09/19 10:25,"819 12th St, Dallas, TX 75001" +274462,27in FHD Monitor,1,149.99,10/23/19 09:27,"221 Willow St, Los Angeles, CA 90001" +274463,ThinkPad Laptop,1,999.99,10/14/19 17:45,"894 Pine St, Los Angeles, CA 90001" +274464,27in FHD Monitor,1,149.99,10/31/19 10:22,"812 Chestnut St, Atlanta, GA 30301" +274465,AA Batteries (4-pack),1,3.84,10/09/19 15:14,"859 West St, Atlanta, GA 30301" +274466,Bose SoundSport Headphones,1,99.99,10/09/19 20:20,"753 Center St, Austin, TX 73301" +274467,AAA Batteries (4-pack),1,2.99,10/26/19 13:16,"350 Highland St, Portland, OR 97035" +274468,Lightning Charging Cable,1,14.95,10/25/19 12:56,"602 8th St, Dallas, TX 75001" +274469,AAA Batteries (4-pack),1,2.99,10/03/19 22:58,"462 1st St, San Francisco, CA 94016" +274470,Wired Headphones,1,11.99,10/09/19 13:19,"883 11th St, New York City, NY 10001" +274471,Wired Headphones,1,11.99,10/31/19 11:07,"344 Lincoln St, Portland, ME 04101" +274472,AA Batteries (4-pack),1,3.84,10/01/19 10:09,"483 Walnut St, Los Angeles, CA 90001" +274473,Lightning Charging Cable,1,14.95,10/29/19 14:27,"459 Johnson St, Dallas, TX 75001" +274474,AAA Batteries (4-pack),2,2.99,10/13/19 18:56,"397 Lakeview St, Dallas, TX 75001" +274475,Bose SoundSport Headphones,1,99.99,10/20/19 10:03,"89 Jackson St, Boston, MA 02215" +274476,AA Batteries (4-pack),1,3.84,10/29/19 01:34,"473 Main St, San Francisco, CA 94016" +274477,AAA Batteries (4-pack),1,2.99,10/17/19 20:42,"630 Washington St, Los Angeles, CA 90001" +274478,AA Batteries (4-pack),1,3.84,10/25/19 11:36,"765 North St, Austin, TX 73301" +274479,Apple Airpods Headphones,1,150,10/09/19 15:22,"438 Jackson St, Los Angeles, CA 90001" +274480,AA Batteries (4-pack),1,3.84,10/25/19 16:39,"137 North St, San Francisco, CA 94016" +274481,LG Dryer,1,600.0,10/28/19 19:55,"566 Wilson St, New York City, NY 10001" +274481,AAA Batteries (4-pack),2,2.99,10/28/19 19:55,"566 Wilson St, New York City, NY 10001" +274482,AA Batteries (4-pack),2,3.84,10/07/19 12:11,"428 Cedar St, San Francisco, CA 94016" +274483,AAA Batteries (4-pack),1,2.99,10/04/19 10:27,"534 14th St, San Francisco, CA 94016" +274484,Bose SoundSport Headphones,1,99.99,10/15/19 00:22,"185 Pine St, Boston, MA 02215" +274485,Bose SoundSport Headphones,1,99.99,10/14/19 20:26,"384 Wilson St, New York City, NY 10001" +274486,Flatscreen TV,1,300,10/26/19 21:19,"76 Madison St, San Francisco, CA 94016" +274487,AA Batteries (4-pack),1,3.84,10/06/19 21:22,"483 Spruce St, Atlanta, GA 30301" +274488,Bose SoundSport Headphones,1,99.99,10/14/19 12:58,"222 West St, New York City, NY 10001" +274489,Wired Headphones,1,11.99,10/10/19 18:45,"219 Jackson St, Los Angeles, CA 90001" +274490,ThinkPad Laptop,1,999.99,10/01/19 22:41,"97 Walnut St, San Francisco, CA 94016" +274491,USB-C Charging Cable,1,11.95,10/07/19 12:15,"309 Lakeview St, Dallas, TX 75001" +274492,27in FHD Monitor,1,149.99,10/01/19 18:33,"767 Dogwood St, San Francisco, CA 94016" +274493,27in FHD Monitor,1,149.99,10/21/19 14:25,"114 Walnut St, New York City, NY 10001" +274494,27in FHD Monitor,1,149.99,10/12/19 12:52,"880 7th St, Austin, TX 73301" +274495,Google Phone,1,600,10/17/19 08:48,"907 11th St, San Francisco, CA 94016" +274496,USB-C Charging Cable,1,11.95,10/26/19 05:49,"980 Spruce St, New York City, NY 10001" +274497,27in FHD Monitor,1,149.99,10/31/19 18:44,"672 Elm St, San Francisco, CA 94016" +274498,AA Batteries (4-pack),1,3.84,10/11/19 19:41,"481 1st St, New York City, NY 10001" +274499,Apple Airpods Headphones,1,150,10/02/19 23:31,"505 Johnson St, San Francisco, CA 94016" +274500,iPhone,1,700,10/29/19 13:41,"146 Jackson St, Boston, MA 02215" +274501,USB-C Charging Cable,1,11.95,10/14/19 16:29,"486 North St, Dallas, TX 75001" +274502,AAA Batteries (4-pack),1,2.99,10/29/19 18:28,"133 Hickory St, Los Angeles, CA 90001" +274503,Wired Headphones,1,11.99,10/31/19 14:56,"681 Pine St, Los Angeles, CA 90001" +274504,27in FHD Monitor,1,149.99,10/24/19 08:49,"897 Adams St, Atlanta, GA 30301" +274505,LG Dryer,1,600.0,10/31/19 21:30,"317 Cherry St, Seattle, WA 98101" +274506,Macbook Pro Laptop,1,1700,10/03/19 21:53,"414 Lake St, Dallas, TX 75001" +274507,20in Monitor,1,109.99,10/11/19 22:49,"517 Walnut St, Dallas, TX 75001" +274508,USB-C Charging Cable,2,11.95,10/19/19 06:08,"965 Lincoln St, Portland, OR 97035" +274509,27in FHD Monitor,1,149.99,10/23/19 17:15,"915 Walnut St, Boston, MA 02215" +274510,Lightning Charging Cable,1,14.95,10/08/19 10:38,"133 Dogwood St, Boston, MA 02215" +274510,Wired Headphones,1,11.99,10/08/19 10:38,"133 Dogwood St, Boston, MA 02215" +274511,Lightning Charging Cable,1,14.95,10/17/19 09:45,"419 Elm St, Los Angeles, CA 90001" +274512,AAA Batteries (4-pack),2,2.99,10/13/19 21:37,"580 14th St, Boston, MA 02215" +274513,AAA Batteries (4-pack),1,2.99,10/31/19 21:59,"812 Maple St, Boston, MA 02215" +274514,34in Ultrawide Monitor,1,379.99,10/03/19 16:37,"638 North St, Los Angeles, CA 90001" +274515,Apple Airpods Headphones,1,150,10/19/19 23:08,"845 14th St, Portland, OR 97035" +274516,Apple Airpods Headphones,1,150,10/26/19 07:44,"788 Lakeview St, Portland, OR 97035" +274517,Wired Headphones,1,11.99,10/28/19 20:40,"253 Johnson St, Los Angeles, CA 90001" +274518,USB-C Charging Cable,1,11.95,10/13/19 17:08,"36 Highland St, Los Angeles, CA 90001" +274519,ThinkPad Laptop,1,999.99,10/05/19 10:46,"171 Adams St, San Francisco, CA 94016" +274520,Google Phone,1,600,10/19/19 20:33,"689 Pine St, San Francisco, CA 94016" +274520,USB-C Charging Cable,1,11.95,10/19/19 20:33,"689 Pine St, San Francisco, CA 94016" +274520,Bose SoundSport Headphones,1,99.99,10/19/19 20:33,"689 Pine St, San Francisco, CA 94016" +274521,Wired Headphones,1,11.99,10/01/19 13:45,"37 West St, New York City, NY 10001" +274522,Lightning Charging Cable,1,14.95,10/01/19 19:28,"248 2nd St, San Francisco, CA 94016" +274523,Macbook Pro Laptop,1,1700,10/29/19 18:18,"36 Willow St, New York City, NY 10001" +274524,34in Ultrawide Monitor,1,379.99,10/23/19 23:02,"143 9th St, San Francisco, CA 94016" +274525,Lightning Charging Cable,1,14.95,10/02/19 08:32,"862 Center St, San Francisco, CA 94016" +274525,Google Phone,1,600,10/02/19 08:32,"862 Center St, San Francisco, CA 94016" +274526,Apple Airpods Headphones,1,150,10/07/19 11:25,"891 Center St, San Francisco, CA 94016" +274527,USB-C Charging Cable,1,11.95,10/07/19 00:17,"859 14th St, San Francisco, CA 94016" +274527,Apple Airpods Headphones,1,150,10/07/19 00:17,"859 14th St, San Francisco, CA 94016" +274528,Flatscreen TV,1,300,10/27/19 11:22,"657 Church St, Seattle, WA 98101" +274529,AAA Batteries (4-pack),1,2.99,10/04/19 07:17,"868 Hill St, Boston, MA 02215" +274530,27in FHD Monitor,1,149.99,10/11/19 15:10,"189 Spruce St, San Francisco, CA 94016" +274531,27in FHD Monitor,1,149.99,10/17/19 02:23,"648 Church St, New York City, NY 10001" +274532,Bose SoundSport Headphones,1,99.99,10/30/19 11:26,"403 13th St, Dallas, TX 75001" +274533,Wired Headphones,1,11.99,10/10/19 13:40,"369 Jefferson St, Dallas, TX 75001" +274534,AA Batteries (4-pack),3,3.84,10/09/19 00:11,"135 Madison St, Seattle, WA 98101" +274535,34in Ultrawide Monitor,1,379.99,10/01/19 16:23,"912 Chestnut St, Seattle, WA 98101" +274536,Lightning Charging Cable,1,14.95,10/30/19 19:40,"783 13th St, Los Angeles, CA 90001" +274537,Vareebadd Phone,1,400,10/02/19 07:31,"677 Lincoln St, New York City, NY 10001" +274538,Lightning Charging Cable,1,14.95,10/25/19 15:18,"24 Jackson St, Boston, MA 02215" +274539,Wired Headphones,1,11.99,10/20/19 17:04,"105 North St, Los Angeles, CA 90001" +274540,Wired Headphones,1,11.99,10/29/19 09:39,"746 Jefferson St, Los Angeles, CA 90001" +274541,34in Ultrawide Monitor,1,379.99,10/27/19 20:14,"728 9th St, Los Angeles, CA 90001" +274542,AAA Batteries (4-pack),2,2.99,10/09/19 10:00,"390 1st St, Portland, OR 97035" +274543,AA Batteries (4-pack),1,3.84,10/23/19 15:54,"747 Lake St, San Francisco, CA 94016" +274544,27in FHD Monitor,1,149.99,10/28/19 18:56,"19 2nd St, Los Angeles, CA 90001" +274545,AA Batteries (4-pack),1,3.84,10/05/19 18:48,"689 Chestnut St, Boston, MA 02215" +274546,USB-C Charging Cable,1,11.95,10/12/19 02:11,"954 4th St, Los Angeles, CA 90001" +274547,27in 4K Gaming Monitor,1,389.99,10/23/19 21:07,"503 12th St, Portland, ME 04101" +274548,AAA Batteries (4-pack),1,2.99,10/29/19 14:01,"792 5th St, San Francisco, CA 94016" +274549,Bose SoundSport Headphones,1,99.99,10/01/19 15:06,"791 Maple St, San Francisco, CA 94016" +274550,34in Ultrawide Monitor,1,379.99,10/22/19 12:04,"264 6th St, Atlanta, GA 30301" +274551,USB-C Charging Cable,1,11.95,10/13/19 20:52,"600 Sunset St, New York City, NY 10001" +274552,Bose SoundSport Headphones,1,99.99,10/15/19 12:21,"977 10th St, San Francisco, CA 94016" +274553,Flatscreen TV,1,300,10/08/19 11:49,"641 Lincoln St, Austin, TX 73301" +274554,Wired Headphones,1,11.99,10/29/19 09:25,"726 Adams St, Boston, MA 02215" +274555,Wired Headphones,1,11.99,10/29/19 14:32,"782 Ridge St, Austin, TX 73301" +274556,Wired Headphones,1,11.99,10/30/19 08:29,"381 Center St, Los Angeles, CA 90001" +274557,34in Ultrawide Monitor,1,379.99,10/23/19 18:31,"862 Maple St, Los Angeles, CA 90001" +274558,USB-C Charging Cable,1,11.95,10/27/19 14:50,"864 Willow St, Seattle, WA 98101" +274559,Apple Airpods Headphones,1,150,10/25/19 12:01,"334 Lincoln St, Dallas, TX 75001" +274560,Lightning Charging Cable,1,14.95,10/01/19 14:20,"757 9th St, New York City, NY 10001" +274561,Wired Headphones,1,11.99,10/31/19 20:42,"89 Walnut St, Portland, OR 97035" +274562,Macbook Pro Laptop,1,1700,10/30/19 21:35,"825 River St, Boston, MA 02215" +274563,AAA Batteries (4-pack),1,2.99,10/17/19 11:58,"512 11th St, San Francisco, CA 94016" +274564,Wired Headphones,1,11.99,10/27/19 16:40,"544 8th St, San Francisco, CA 94016" +274565,LG Washing Machine,1,600.0,10/21/19 18:46,"542 Madison St, San Francisco, CA 94016" +274566,Bose SoundSport Headphones,1,99.99,10/10/19 19:33,"55 14th St, San Francisco, CA 94016" +274567,Wired Headphones,1,11.99,10/30/19 15:51,"835 Madison St, Seattle, WA 98101" +274568,AAA Batteries (4-pack),1,2.99,10/14/19 15:56,"1 Highland St, New York City, NY 10001" +274569,Bose SoundSport Headphones,1,99.99,10/22/19 13:40,"427 Lakeview St, Dallas, TX 75001" +274570,27in 4K Gaming Monitor,1,389.99,10/18/19 10:32,"966 10th St, San Francisco, CA 94016" +274571,AA Batteries (4-pack),1,3.84,10/16/19 22:02,"737 4th St, Dallas, TX 75001" +274572,iPhone,1,700,10/27/19 12:47,"69 Cherry St, New York City, NY 10001" +274573,AAA Batteries (4-pack),1,2.99,10/28/19 09:54,"21 River St, Boston, MA 02215" +274574,AA Batteries (4-pack),1,3.84,10/19/19 13:56,"635 13th St, Boston, MA 02215" +274575,AA Batteries (4-pack),2,3.84,10/10/19 23:07,"127 Spruce St, San Francisco, CA 94016" +274576,Macbook Pro Laptop,1,1700,10/10/19 23:35,"891 Highland St, Dallas, TX 75001" +274577,USB-C Charging Cable,1,11.95,10/15/19 10:32,"728 Hickory St, Los Angeles, CA 90001" +274578,Lightning Charging Cable,1,14.95,10/17/19 19:44,"695 South St, San Francisco, CA 94016" +274579,AAA Batteries (4-pack),1,2.99,10/27/19 09:59,"117 Willow St, Dallas, TX 75001" +274580,USB-C Charging Cable,1,11.95,10/23/19 20:14,"438 Lincoln St, San Francisco, CA 94016" +274581,Bose SoundSport Headphones,1,99.99,10/27/19 13:55,"967 Church St, Los Angeles, CA 90001" +274582,Apple Airpods Headphones,1,150,10/04/19 21:13,"229 Walnut St, Los Angeles, CA 90001" +274583,AAA Batteries (4-pack),3,2.99,10/03/19 19:26,"615 Cedar St, Los Angeles, CA 90001" +274584,Lightning Charging Cable,1,14.95,10/15/19 18:56,"212 Forest St, Boston, MA 02215" +274585,Lightning Charging Cable,1,14.95,10/20/19 19:31,"340 Wilson St, Atlanta, GA 30301" +274586,Google Phone,1,600,10/03/19 10:40,"480 Lincoln St, Austin, TX 73301" +274587,Wired Headphones,1,11.99,10/11/19 18:09,"843 1st St, New York City, NY 10001" +274588,USB-C Charging Cable,1,11.95,10/22/19 18:46,"773 Willow St, San Francisco, CA 94016" +274589,Bose SoundSport Headphones,1,99.99,10/15/19 12:22,"385 14th St, San Francisco, CA 94016" +274590,AA Batteries (4-pack),1,3.84,10/08/19 11:11,"902 Spruce St, Atlanta, GA 30301" +274591,ThinkPad Laptop,1,999.99,10/21/19 10:51,"781 Jefferson St, San Francisco, CA 94016" +274592,27in 4K Gaming Monitor,1,389.99,10/03/19 13:49,"494 Highland St, New York City, NY 10001" +274593,iPhone,1,700,10/11/19 18:15,"189 West St, San Francisco, CA 94016" +274594,Lightning Charging Cable,1,14.95,10/23/19 09:48,"919 Sunset St, Portland, OR 97035" +274595,Bose SoundSport Headphones,1,99.99,10/20/19 21:37,"845 8th St, Boston, MA 02215" +274596,Bose SoundSport Headphones,1,99.99,10/12/19 12:18,"823 Center St, New York City, NY 10001" +274597,Vareebadd Phone,1,400,10/18/19 09:12,"879 Forest St, San Francisco, CA 94016" +274598,USB-C Charging Cable,1,11.95,10/17/19 21:18,"970 Hickory St, Los Angeles, CA 90001" +274599,Wired Headphones,1,11.99,10/04/19 00:27,"671 Hickory St, Seattle, WA 98101" +274600,AA Batteries (4-pack),1,3.84,10/13/19 14:59,"87 Cherry St, Atlanta, GA 30301" +274601,ThinkPad Laptop,1,999.99,10/18/19 14:55,"483 West St, San Francisco, CA 94016" +274602,Apple Airpods Headphones,1,150,10/12/19 10:22,"937 Walnut St, New York City, NY 10001" +274603,34in Ultrawide Monitor,1,379.99,10/29/19 20:40,"827 10th St, New York City, NY 10001" +274604,Lightning Charging Cable,1,14.95,10/30/19 10:47,"546 13th St, San Francisco, CA 94016" +274605,Bose SoundSport Headphones,1,99.99,10/10/19 15:41,"984 Jackson St, Austin, TX 73301" +274606,Lightning Charging Cable,1,14.95,10/28/19 19:26,"589 Lake St, Dallas, TX 75001" +274607,Apple Airpods Headphones,1,150,10/11/19 09:18,"46 West St, Boston, MA 02215" +274608,LG Dryer,1,600.0,10/16/19 22:53,"617 Wilson St, Atlanta, GA 30301" +274609,Wired Headphones,1,11.99,10/21/19 21:26,"881 Wilson St, Dallas, TX 75001" +274610,Apple Airpods Headphones,1,150,10/09/19 12:35,"468 Lakeview St, New York City, NY 10001" +274611,ThinkPad Laptop,1,999.99,10/15/19 20:41,"348 1st St, San Francisco, CA 94016" +274612,Lightning Charging Cable,1,14.95,10/04/19 18:02,"996 West St, San Francisco, CA 94016" +274613,34in Ultrawide Monitor,1,379.99,10/08/19 13:10,"167 7th St, Los Angeles, CA 90001" +274614,AA Batteries (4-pack),2,3.84,10/09/19 14:51,"165 Cherry St, San Francisco, CA 94016" +274615,Lightning Charging Cable,1,14.95,10/02/19 20:06,"411 Adams St, Dallas, TX 75001" +274616,Google Phone,1,600,10/14/19 22:28,"935 Pine St, San Francisco, CA 94016" +274617,Wired Headphones,1,11.99,10/15/19 17:56,"333 Adams St, Austin, TX 73301" +274618,Apple Airpods Headphones,1,150,10/01/19 17:25,"567 Highland St, Los Angeles, CA 90001" +274619,Apple Airpods Headphones,1,150,10/10/19 20:22,"875 8th St, Boston, MA 02215" +274620,iPhone,1,700,10/23/19 19:11,"840 5th St, Dallas, TX 75001" +274620,Lightning Charging Cable,1,14.95,10/23/19 19:11,"840 5th St, Dallas, TX 75001" +274621,USB-C Charging Cable,1,11.95,10/17/19 09:24,"446 Jefferson St, Portland, ME 04101" +274622,Apple Airpods Headphones,1,150,10/31/19 11:47,"231 Ridge St, San Francisco, CA 94016" +274623,27in FHD Monitor,1,149.99,10/20/19 12:14,"994 Washington St, San Francisco, CA 94016" +274624,Lightning Charging Cable,1,14.95,10/03/19 18:59,"492 Chestnut St, Boston, MA 02215" +274625,iPhone,1,700,10/21/19 12:19,"197 Jackson St, Seattle, WA 98101" +274626,Lightning Charging Cable,1,14.95,10/18/19 19:25,"298 11th St, San Francisco, CA 94016" +274627,Lightning Charging Cable,1,14.95,10/04/19 21:17,"78 Madison St, Boston, MA 02215" +274628,Google Phone,1,600,10/23/19 17:34,"99 Chestnut St, Atlanta, GA 30301" +274629,Bose SoundSport Headphones,1,99.99,10/10/19 16:02,"50 Hickory St, Seattle, WA 98101" +274630,USB-C Charging Cable,1,11.95,10/10/19 21:31,"570 River St, San Francisco, CA 94016" +274631,Bose SoundSport Headphones,1,99.99,10/20/19 05:47,"942 Madison St, Dallas, TX 75001" +274632,20in Monitor,1,109.99,10/17/19 20:42,"594 8th St, Portland, ME 04101" +274633,Apple Airpods Headphones,1,150,10/04/19 08:12,"619 6th St, Boston, MA 02215" +274634,27in FHD Monitor,1,149.99,10/10/19 08:59,"984 Jefferson St, Portland, OR 97035" +274635,AAA Batteries (4-pack),1,2.99,10/10/19 08:49,"53 Main St, Atlanta, GA 30301" +274636,Wired Headphones,2,11.99,10/26/19 17:20,"18 Johnson St, Boston, MA 02215" +274637,AAA Batteries (4-pack),1,2.99,10/17/19 19:46,"727 Meadow St, San Francisco, CA 94016" +274638,AAA Batteries (4-pack),1,2.99,10/12/19 09:36,"846 Elm St, San Francisco, CA 94016" +274639,Macbook Pro Laptop,1,1700,10/08/19 20:52,"758 Elm St, New York City, NY 10001" +274640,USB-C Charging Cable,1,11.95,10/28/19 00:19,"247 Chestnut St, San Francisco, CA 94016" +274641,Macbook Pro Laptop,1,1700,10/15/19 12:07,"239 Adams St, Seattle, WA 98101" +274642,Bose SoundSport Headphones,1,99.99,10/21/19 12:57,"694 River St, New York City, NY 10001" +274643,AA Batteries (4-pack),1,3.84,10/24/19 21:46,"118 Dogwood St, Los Angeles, CA 90001" +274644,Bose SoundSport Headphones,1,99.99,10/27/19 07:53,"213 Spruce St, Seattle, WA 98101" +274645,Apple Airpods Headphones,1,150,10/03/19 13:18,"514 Church St, Austin, TX 73301" +274646,AAA Batteries (4-pack),1,2.99,10/08/19 16:55,"491 Main St, Seattle, WA 98101" +274647,Google Phone,1,600,10/22/19 17:09,"340 Jackson St, San Francisco, CA 94016" +274648,27in FHD Monitor,1,149.99,10/31/19 17:22,"394 Hill St, Atlanta, GA 30301" +274649,Apple Airpods Headphones,1,150,10/10/19 10:12,"748 Willow St, Boston, MA 02215" +274650,AAA Batteries (4-pack),1,2.99,10/28/19 14:16,"695 Hill St, Austin, TX 73301" +274651,Flatscreen TV,1,300,10/31/19 16:24,"727 1st St, Portland, ME 04101" +274652,AAA Batteries (4-pack),1,2.99,10/21/19 01:32,"767 4th St, New York City, NY 10001" +274653,34in Ultrawide Monitor,1,379.99,10/26/19 23:30,"168 Church St, Los Angeles, CA 90001" +274654,Lightning Charging Cable,1,14.95,10/08/19 20:56,"994 Hickory St, Portland, OR 97035" +274655,Bose SoundSport Headphones,1,99.99,10/14/19 11:16,"97 7th St, San Francisco, CA 94016" +274656,iPhone,1,700,10/13/19 11:31,"119 Washington St, New York City, NY 10001" +274657,Macbook Pro Laptop,1,1700,10/18/19 21:58,"9 South St, Boston, MA 02215" +274658,ThinkPad Laptop,1,999.99,10/08/19 10:11,"334 7th St, San Francisco, CA 94016" +274659,USB-C Charging Cable,1,11.95,10/17/19 13:17,"720 4th St, Austin, TX 73301" +274660,Lightning Charging Cable,1,14.95,10/04/19 13:08,"854 8th St, San Francisco, CA 94016" +274661,Apple Airpods Headphones,1,150,10/02/19 17:27,"319 Wilson St, Seattle, WA 98101" +274662,27in FHD Monitor,1,149.99,10/10/19 11:41,"607 7th St, Seattle, WA 98101" +274663,AA Batteries (4-pack),1,3.84,10/27/19 21:04,"885 10th St, Los Angeles, CA 90001" +274664,34in Ultrawide Monitor,1,379.99,10/16/19 13:37,"474 Washington St, San Francisco, CA 94016" +274665,iPhone,1,700,10/19/19 09:01,"581 Meadow St, New York City, NY 10001" +274666,Lightning Charging Cable,1,14.95,10/05/19 22:27,"351 North St, New York City, NY 10001" +274667,Flatscreen TV,1,300,10/19/19 10:07,"546 Lincoln St, New York City, NY 10001" +274668,Apple Airpods Headphones,1,150,10/19/19 18:44,"576 Willow St, Seattle, WA 98101" +274669,Lightning Charging Cable,1,14.95,10/25/19 11:49,"344 Dogwood St, Portland, OR 97035" +274670,AA Batteries (4-pack),2,3.84,10/21/19 19:08,"958 13th St, Boston, MA 02215" +274671,USB-C Charging Cable,1,11.95,10/17/19 11:28,"207 9th St, Boston, MA 02215" +274672,AA Batteries (4-pack),1,3.84,10/08/19 12:53,"627 Main St, Boston, MA 02215" +274673,20in Monitor,1,109.99,10/19/19 21:22,"294 South St, Seattle, WA 98101" +274674,USB-C Charging Cable,1,11.95,10/17/19 19:22,"737 9th St, Los Angeles, CA 90001" +274675,USB-C Charging Cable,1,11.95,10/10/19 09:57,"459 1st St, Los Angeles, CA 90001" +274676,Lightning Charging Cable,1,14.95,10/20/19 10:15,"258 Walnut St, San Francisco, CA 94016" +274677,Wired Headphones,1,11.99,10/14/19 17:12,"748 Main St, Atlanta, GA 30301" +274678,27in 4K Gaming Monitor,1,389.99,10/06/19 15:00,"775 Cherry St, Seattle, WA 98101" +274679,Wired Headphones,1,11.99,10/14/19 13:42,"36 Park St, Austin, TX 73301" +274680,AAA Batteries (4-pack),1,2.99,10/30/19 10:58,"886 Forest St, New York City, NY 10001" +274681,Bose SoundSport Headphones,1,99.99,10/24/19 15:18,"56 Lincoln St, Atlanta, GA 30301" +274682,USB-C Charging Cable,2,11.95,10/18/19 05:32,"680 North St, Dallas, TX 75001" +274682,Bose SoundSport Headphones,1,99.99,10/18/19 05:32,"680 North St, Dallas, TX 75001" +274683,AA Batteries (4-pack),1,3.84,10/11/19 11:28,"141 Adams St, Los Angeles, CA 90001" +274684,USB-C Charging Cable,1,11.95,10/23/19 06:54,"661 Elm St, San Francisco, CA 94016" +274685,Lightning Charging Cable,1,14.95,10/25/19 00:30,"607 1st St, Portland, OR 97035" +274686,USB-C Charging Cable,1,11.95,10/20/19 09:24,"355 14th St, Atlanta, GA 30301" +274687,iPhone,1,700,10/28/19 14:45,"198 Lincoln St, Seattle, WA 98101" +274688,AAA Batteries (4-pack),1,2.99,10/23/19 15:26,"159 Johnson St, San Francisco, CA 94016" +274689,AA Batteries (4-pack),1,3.84,10/24/19 19:51,"99 Adams St, Boston, MA 02215" +274690,iPhone,1,700,10/19/19 16:31,"267 Meadow St, New York City, NY 10001" +274691,Lightning Charging Cable,1,14.95,10/01/19 21:02,"896 Dogwood St, New York City, NY 10001" +274692,Apple Airpods Headphones,1,150,10/21/19 22:22,"882 North St, Boston, MA 02215" +274693,AAA Batteries (4-pack),2,2.99,10/11/19 17:13,"906 Jefferson St, Los Angeles, CA 90001" +274694,Google Phone,1,600,10/06/19 21:55,"721 Park St, San Francisco, CA 94016" +274695,AAA Batteries (4-pack),1,2.99,10/10/19 20:54,"748 Pine St, Dallas, TX 75001" +274696,Lightning Charging Cable,1,14.95,10/19/19 16:04,"999 Church St, San Francisco, CA 94016" +274697,Vareebadd Phone,1,400,10/15/19 10:24,"171 Lincoln St, Boston, MA 02215" +274698,AAA Batteries (4-pack),2,2.99,11/01/19 03:25,"12 14th St, Los Angeles, CA 90001" +274699,iPhone,1,700,10/22/19 10:06,"856 Pine St, San Francisco, CA 94016" +274700,34in Ultrawide Monitor,1,379.99,10/16/19 17:47,"282 North St, Atlanta, GA 30301" +274701,27in 4K Gaming Monitor,1,389.99,10/09/19 22:08,"648 South St, Dallas, TX 75001" +274702,Bose SoundSport Headphones,1,99.99,10/20/19 12:27,"858 West St, San Francisco, CA 94016" +274703,USB-C Charging Cable,1,11.95,10/25/19 13:43,"450 North St, Portland, OR 97035" +274704,34in Ultrawide Monitor,1,379.99,10/06/19 16:47,"860 Johnson St, San Francisco, CA 94016" +274705,USB-C Charging Cable,1,11.95,10/30/19 21:17,"785 Adams St, Boston, MA 02215" +274706,Bose SoundSport Headphones,1,99.99,10/28/19 14:55,"897 South St, Portland, OR 97035" +274707,Lightning Charging Cable,1,14.95,10/29/19 16:47,"68 Lake St, New York City, NY 10001" +274708,AA Batteries (4-pack),1,3.84,10/21/19 17:14,"349 2nd St, Dallas, TX 75001" +274709,iPhone,1,700,10/02/19 13:22,"247 9th St, San Francisco, CA 94016" +274709,Apple Airpods Headphones,1,150,10/02/19 13:22,"247 9th St, San Francisco, CA 94016" +274710,AAA Batteries (4-pack),2,2.99,10/05/19 10:37,"577 10th St, Austin, TX 73301" +274711,27in FHD Monitor,1,149.99,10/15/19 14:53,"647 Park St, Los Angeles, CA 90001" +274712,Vareebadd Phone,1,400,10/04/19 18:02,"402 Highland St, Seattle, WA 98101" +274713,USB-C Charging Cable,1,11.95,10/06/19 22:37,"975 Maple St, Dallas, TX 75001" +274714,AAA Batteries (4-pack),4,2.99,10/03/19 20:09,"699 Wilson St, Los Angeles, CA 90001" +274715,AA Batteries (4-pack),1,3.84,10/23/19 21:22,"407 Washington St, Portland, OR 97035" +274716,Bose SoundSport Headphones,1,99.99,10/10/19 11:53,"271 Washington St, Atlanta, GA 30301" +274717,Lightning Charging Cable,1,14.95,10/17/19 10:58,"523 Adams St, New York City, NY 10001" +274718,AAA Batteries (4-pack),3,2.99,10/07/19 15:55,"684 Church St, Atlanta, GA 30301" +274719,Bose SoundSport Headphones,1,99.99,10/19/19 17:38,"6 North St, Dallas, TX 75001" +274720,27in 4K Gaming Monitor,1,389.99,10/12/19 20:22,"953 6th St, San Francisco, CA 94016" +274721,AAA Batteries (4-pack),1,2.99,10/19/19 15:42,"474 10th St, Austin, TX 73301" +274722,USB-C Charging Cable,1,11.95,10/18/19 07:10,"866 11th St, Seattle, WA 98101" +274723,AAA Batteries (4-pack),1,2.99,10/30/19 10:20,"778 Center St, Boston, MA 02215" +274724,AAA Batteries (4-pack),1,2.99,10/17/19 14:06,"97 Johnson St, San Francisco, CA 94016" +274725,Wired Headphones,1,11.99,10/20/19 11:13,"61 River St, Portland, OR 97035" +274726,Bose SoundSport Headphones,1,99.99,10/07/19 13:20,"934 North St, Dallas, TX 75001" +274727,Google Phone,1,600,10/30/19 23:06,"253 9th St, Los Angeles, CA 90001" +274728,Apple Airpods Headphones,1,150,10/19/19 01:00,"142 Willow St, Dallas, TX 75001" +274729,20in Monitor,1,109.99,10/08/19 10:29,"760 Cherry St, New York City, NY 10001" +274730,Wired Headphones,1,11.99,10/20/19 10:18,"665 Elm St, San Francisco, CA 94016" +274731,Bose SoundSport Headphones,1,99.99,10/03/19 12:24,"465 Church St, Austin, TX 73301" +274732,Bose SoundSport Headphones,2,99.99,10/25/19 19:00,"900 West St, San Francisco, CA 94016" +274733,Wired Headphones,1,11.99,10/09/19 16:46,"579 6th St, San Francisco, CA 94016" +274734,USB-C Charging Cable,1,11.95,10/17/19 21:24,"288 Madison St, Portland, ME 04101" +274735,iPhone,1,700,10/07/19 10:39,"18 1st St, Austin, TX 73301" +274735,Wired Headphones,1,11.99,10/07/19 10:39,"18 1st St, Austin, TX 73301" +274736,AA Batteries (4-pack),1,3.84,10/23/19 09:57,"631 Jackson St, San Francisco, CA 94016" +274737,AAA Batteries (4-pack),2,2.99,10/31/19 20:22,"436 7th St, Los Angeles, CA 90001" +274738,27in FHD Monitor,1,149.99,10/30/19 14:42,"48 4th St, Austin, TX 73301" +274739,34in Ultrawide Monitor,1,379.99,10/27/19 12:52,"500 4th St, Los Angeles, CA 90001" +274740,Apple Airpods Headphones,1,150,10/02/19 17:31,"848 Elm St, Seattle, WA 98101" +274741,27in 4K Gaming Monitor,1,389.99,10/21/19 18:32,"594 9th St, Atlanta, GA 30301" +274742,Apple Airpods Headphones,1,150,10/03/19 20:05,"92 Hill St, San Francisco, CA 94016" +274743,AAA Batteries (4-pack),1,2.99,10/01/19 18:06,"942 5th St, Austin, TX 73301" +274744,Macbook Pro Laptop,1,1700,10/24/19 18:54,"184 Wilson St, San Francisco, CA 94016" +274745,Vareebadd Phone,1,400,10/23/19 00:05,"856 11th St, Los Angeles, CA 90001" +274746,AAA Batteries (4-pack),1,2.99,10/23/19 13:03,"498 Dogwood St, Boston, MA 02215" +274747,AAA Batteries (4-pack),1,2.99,10/09/19 21:30,"187 Sunset St, San Francisco, CA 94016" +274748,Lightning Charging Cable,1,14.95,10/14/19 12:41,"109 Church St, New York City, NY 10001" +274749,Macbook Pro Laptop,1,1700,10/18/19 20:55,"345 Spruce St, New York City, NY 10001" +274750,ThinkPad Laptop,1,999.99,10/10/19 14:18,"502 Forest St, San Francisco, CA 94016" +274751,Apple Airpods Headphones,1,150,10/09/19 07:43,"819 Wilson St, Boston, MA 02215" +274752,AA Batteries (4-pack),1,3.84,10/07/19 16:30,"903 13th St, Boston, MA 02215" +274753,Lightning Charging Cable,1,14.95,10/27/19 09:35,"843 Highland St, New York City, NY 10001" +274754,AAA Batteries (4-pack),2,2.99,10/27/19 16:46,"42 Madison St, San Francisco, CA 94016" +274755,AAA Batteries (4-pack),3,2.99,10/05/19 19:21,"644 Maple St, Dallas, TX 75001" +274755,Macbook Pro Laptop,1,1700,10/05/19 19:21,"644 Maple St, Dallas, TX 75001" +274756,Lightning Charging Cable,1,14.95,10/12/19 05:41,"966 1st St, Seattle, WA 98101" +274757,Apple Airpods Headphones,1,150,10/02/19 14:41,"493 Adams St, San Francisco, CA 94016" +274758,Wired Headphones,1,11.99,10/19/19 13:37,"113 4th St, Boston, MA 02215" +274759,Bose SoundSport Headphones,1,99.99,10/15/19 09:06,"726 Adams St, San Francisco, CA 94016" +274760,USB-C Charging Cable,2,11.95,10/07/19 22:42,"767 River St, Los Angeles, CA 90001" +274761,USB-C Charging Cable,1,11.95,10/20/19 10:20,"368 8th St, New York City, NY 10001" +274762,AAA Batteries (4-pack),1,2.99,10/13/19 16:19,"720 Highland St, Atlanta, GA 30301" +274763,Apple Airpods Headphones,1,150,10/31/19 21:46,"628 North St, San Francisco, CA 94016" +274764,AAA Batteries (4-pack),1,2.99,10/25/19 15:33,"109 Lincoln St, Dallas, TX 75001" +274765,Bose SoundSport Headphones,1,99.99,10/22/19 10:50,"77 Madison St, Seattle, WA 98101" +274766,AA Batteries (4-pack),1,3.84,10/01/19 07:26,"242 Center St, Atlanta, GA 30301" +274767,AA Batteries (4-pack),1,3.84,10/11/19 18:17,"945 Lake St, New York City, NY 10001" +274768,Wired Headphones,1,11.99,10/28/19 17:17,"923 Maple St, Boston, MA 02215" +274769,Apple Airpods Headphones,1,150,10/01/19 20:50,"179 Church St, New York City, NY 10001" +274770,USB-C Charging Cable,1,11.95,10/09/19 21:38,"964 Wilson St, Boston, MA 02215" +274771,27in 4K Gaming Monitor,1,389.99,10/11/19 22:56,"392 11th St, San Francisco, CA 94016" +274772,Apple Airpods Headphones,1,150,10/06/19 20:50,"329 Adams St, San Francisco, CA 94016" +274773,Lightning Charging Cable,1,14.95,10/06/19 13:46,"460 2nd St, Los Angeles, CA 90001" +274774,Wired Headphones,1,11.99,10/10/19 13:25,"936 2nd St, Portland, ME 04101" +274775,Flatscreen TV,1,300,10/03/19 18:41,"624 Center St, Portland, ME 04101" +274776,34in Ultrawide Monitor,1,379.99,10/11/19 10:04,"226 Lincoln St, Portland, OR 97035" +274777,Wired Headphones,1,11.99,10/21/19 10:07,"544 10th St, Los Angeles, CA 90001" +274778,AA Batteries (4-pack),1,3.84,10/27/19 14:14,"376 Cherry St, Los Angeles, CA 90001" +274779,Google Phone,1,600,10/03/19 11:32,"939 Wilson St, Atlanta, GA 30301" +274780,USB-C Charging Cable,1,11.95,10/22/19 17:47,"856 Church St, New York City, NY 10001" +274781,AAA Batteries (4-pack),1,2.99,10/10/19 10:28,"413 1st St, Boston, MA 02215" +274782,Vareebadd Phone,1,400,10/23/19 08:41,"430 Spruce St, New York City, NY 10001" +274783,Bose SoundSport Headphones,1,99.99,10/23/19 22:11,"14 Elm St, New York City, NY 10001" +274784,AAA Batteries (4-pack),1,2.99,10/19/19 10:05,"974 Forest St, Los Angeles, CA 90001" +274785,Bose SoundSport Headphones,1,99.99,10/18/19 11:08,"108 Hickory St, New York City, NY 10001" +274786,Lightning Charging Cable,1,14.95,10/22/19 15:38,"315 Park St, Los Angeles, CA 90001" +274787,Lightning Charging Cable,1,14.95,10/14/19 12:42,"843 Highland St, Seattle, WA 98101" +274788,USB-C Charging Cable,1,11.95,10/14/19 13:57,"177 13th St, Boston, MA 02215" +274789,Apple Airpods Headphones,1,150,10/07/19 11:28,"850 Chestnut St, Boston, MA 02215" +274790,Wired Headphones,1,11.99,10/04/19 17:20,"490 Park St, Los Angeles, CA 90001" +274791,Lightning Charging Cable,1,14.95,10/28/19 13:42,"910 7th St, San Francisco, CA 94016" +274792,Google Phone,1,600,10/26/19 17:58,"624 8th St, Boston, MA 02215" +274793,AAA Batteries (4-pack),1,2.99,10/29/19 18:53,"655 Walnut St, Atlanta, GA 30301" +274794,AA Batteries (4-pack),1,3.84,10/24/19 15:55,"704 Adams St, Dallas, TX 75001" +274795,AAA Batteries (4-pack),1,2.99,10/07/19 10:37,"861 Jackson St, Boston, MA 02215" +274796,Lightning Charging Cable,1,14.95,10/22/19 12:07,"37 Willow St, Dallas, TX 75001" +274797,Wired Headphones,1,11.99,10/30/19 05:09,"717 8th St, Portland, OR 97035" +274798,AAA Batteries (4-pack),2,2.99,10/17/19 10:08,"960 Madison St, New York City, NY 10001" +274799,Flatscreen TV,1,300,10/25/19 19:21,"726 Washington St, Los Angeles, CA 90001" +274800,AA Batteries (4-pack),3,3.84,10/13/19 13:58,"304 Ridge St, Dallas, TX 75001" +274801,Google Phone,1,600,10/02/19 12:04,"454 Johnson St, San Francisco, CA 94016" +274801,USB-C Charging Cable,1,11.95,10/02/19 12:04,"454 Johnson St, San Francisco, CA 94016" +274802,USB-C Charging Cable,1,11.95,10/29/19 08:56,"279 Maple St, Dallas, TX 75001" +274803,iPhone,1,700,10/03/19 21:08,"737 Hickory St, Boston, MA 02215" +274804,Wired Headphones,1,11.99,10/05/19 07:56,"638 Center St, San Francisco, CA 94016" +274805,Bose SoundSport Headphones,1,99.99,10/20/19 21:57,"303 Washington St, Atlanta, GA 30301" +274806,USB-C Charging Cable,1,11.95,10/08/19 09:21,"392 11th St, Portland, ME 04101" +274807,Google Phone,1,600,10/16/19 16:05,"259 6th St, San Francisco, CA 94016" +274808,AA Batteries (4-pack),1,3.84,10/08/19 18:30,"164 4th St, San Francisco, CA 94016" +274809,AAA Batteries (4-pack),1,2.99,10/11/19 21:23,"325 Willow St, Seattle, WA 98101" +274810,Apple Airpods Headphones,1,150,10/27/19 21:10,"980 Madison St, San Francisco, CA 94016" +274811,AAA Batteries (4-pack),1,2.99,10/25/19 13:12,"648 Pine St, Atlanta, GA 30301" +274812,Lightning Charging Cable,1,14.95,10/15/19 04:47,"513 Meadow St, Seattle, WA 98101" +274813,AAA Batteries (4-pack),1,2.99,10/09/19 07:28,"228 6th St, San Francisco, CA 94016" +274814,34in Ultrawide Monitor,1,379.99,10/26/19 20:25,"1 4th St, Atlanta, GA 30301" +274815,Lightning Charging Cable,1,14.95,10/28/19 09:01,"11 Willow St, Dallas, TX 75001" +274816,27in 4K Gaming Monitor,1,389.99,10/18/19 20:01,"501 Lincoln St, Austin, TX 73301" +274817,27in 4K Gaming Monitor,1,389.99,10/22/19 13:02,"6 Willow St, New York City, NY 10001" +274818,USB-C Charging Cable,1,11.95,10/02/19 13:37,"854 North St, San Francisco, CA 94016" +274819,ThinkPad Laptop,1,999.99,10/18/19 15:19,"983 Madison St, Atlanta, GA 30301" +274820,Bose SoundSport Headphones,1,99.99,10/29/19 14:04,"454 13th St, Dallas, TX 75001" +274821,27in FHD Monitor,1,149.99,10/24/19 19:41,"433 Park St, New York City, NY 10001" +274822,Bose SoundSport Headphones,1,99.99,10/04/19 12:17,"408 Washington St, Dallas, TX 75001" +274823,Flatscreen TV,1,300,10/08/19 23:04,"863 Church St, San Francisco, CA 94016" +274824,Wired Headphones,1,11.99,10/22/19 19:43,"404 12th St, Dallas, TX 75001" +274825,Macbook Pro Laptop,1,1700,10/07/19 23:04,"920 Elm St, San Francisco, CA 94016" +274826,USB-C Charging Cable,1,11.95,10/07/19 22:42,"38 Dogwood St, Dallas, TX 75001" +274827,Apple Airpods Headphones,1,150,10/08/19 22:48,"91 9th St, Boston, MA 02215" +274828,ThinkPad Laptop,1,999.99,10/05/19 20:38,"788 Cherry St, San Francisco, CA 94016" +274829,27in 4K Gaming Monitor,1,389.99,10/23/19 16:10,"50 2nd St, Seattle, WA 98101" +274830,Wired Headphones,1,11.99,10/26/19 20:29,"324 14th St, Dallas, TX 75001" +274831,27in 4K Gaming Monitor,1,389.99,10/27/19 13:34,"670 Highland St, San Francisco, CA 94016" +274832,Apple Airpods Headphones,1,150,10/19/19 12:40,"869 Cedar St, San Francisco, CA 94016" +274833,AAA Batteries (4-pack),1,2.99,10/05/19 18:21,"741 Highland St, New York City, NY 10001" +,,,,, +274834,Bose SoundSport Headphones,1,99.99,10/17/19 17:29,"631 Willow St, San Francisco, CA 94016" +274835,AA Batteries (4-pack),1,3.84,10/20/19 00:10,"250 Adams St, Boston, MA 02215" +274836,Lightning Charging Cable,1,14.95,10/04/19 15:35,"238 11th St, Seattle, WA 98101" +274837,Lightning Charging Cable,1,14.95,10/10/19 14:07,"547 Lake St, Seattle, WA 98101" +274838,USB-C Charging Cable,1,11.95,10/07/19 18:07,"945 Elm St, San Francisco, CA 94016" +274839,Macbook Pro Laptop,1,1700,10/09/19 15:12,"53 7th St, Seattle, WA 98101" +274840,20in Monitor,1,109.99,10/20/19 09:42,"13 Lakeview St, San Francisco, CA 94016" +274841,27in FHD Monitor,1,149.99,10/14/19 19:42,"45 Maple St, San Francisco, CA 94016" +274842,AAA Batteries (4-pack),1,2.99,10/07/19 21:14,"113 Lakeview St, Austin, TX 73301" +274843,Wired Headphones,1,11.99,10/26/19 07:54,"980 2nd St, Atlanta, GA 30301" +274844,USB-C Charging Cable,1,11.95,10/24/19 05:07,"7 River St, Los Angeles, CA 90001" +274845,Lightning Charging Cable,1,14.95,10/28/19 19:01,"417 West St, San Francisco, CA 94016" +274846,USB-C Charging Cable,1,11.95,10/15/19 22:16,"480 12th St, New York City, NY 10001" +274847,Bose SoundSport Headphones,2,99.99,10/28/19 23:33,"260 9th St, Boston, MA 02215" +274848,Apple Airpods Headphones,1,150,10/26/19 21:53,"98 Washington St, Boston, MA 02215" +274849,Flatscreen TV,1,300,10/20/19 14:04,"935 Cherry St, San Francisco, CA 94016" +274850,Lightning Charging Cable,1,14.95,10/30/19 15:33,"816 Main St, Boston, MA 02215" +274851,Bose SoundSport Headphones,1,99.99,10/02/19 11:30,"693 Main St, San Francisco, CA 94016" +274852,USB-C Charging Cable,2,11.95,10/01/19 10:06,"514 North St, San Francisco, CA 94016" +274853,Lightning Charging Cable,1,14.95,10/06/19 12:05,"461 11th St, Portland, ME 04101" +274854,USB-C Charging Cable,1,11.95,10/19/19 21:33,"122 Chestnut St, New York City, NY 10001" +274855,Bose SoundSport Headphones,1,99.99,10/26/19 14:13,"804 Park St, New York City, NY 10001" +274856,AA Batteries (4-pack),1,3.84,10/18/19 12:52,"919 Walnut St, Boston, MA 02215" +274857,USB-C Charging Cable,1,11.95,10/09/19 17:35,"880 Maple St, San Francisco, CA 94016" +274858,27in FHD Monitor,1,149.99,10/08/19 20:21,"767 Lincoln St, Boston, MA 02215" +274859,Bose SoundSport Headphones,1,99.99,10/26/19 00:33,"785 8th St, New York City, NY 10001" +274860,Wired Headphones,1,11.99,10/30/19 14:02,"616 Sunset St, Dallas, TX 75001" +274861,AA Batteries (4-pack),1,3.84,10/10/19 18:05,"567 Walnut St, Los Angeles, CA 90001" +274862,Apple Airpods Headphones,1,150,10/11/19 15:00,"371 River St, Los Angeles, CA 90001" +274863,Flatscreen TV,1,300,10/04/19 21:58,"63 13th St, Dallas, TX 75001" +274864,USB-C Charging Cable,2,11.95,10/25/19 01:03,"302 7th St, Los Angeles, CA 90001" +274865,27in 4K Gaming Monitor,1,389.99,10/03/19 16:19,"723 Chestnut St, San Francisco, CA 94016" +274866,USB-C Charging Cable,1,11.95,10/17/19 20:51,"126 4th St, San Francisco, CA 94016" +274867,AA Batteries (4-pack),1,3.84,10/08/19 22:26,"396 Sunset St, Seattle, WA 98101" +274868,Google Phone,1,600,10/02/19 21:05,"413 1st St, New York City, NY 10001" +274869,AAA Batteries (4-pack),1,2.99,10/11/19 11:29,"255 Lakeview St, Boston, MA 02215" +274870,iPhone,1,700,10/10/19 22:39,"579 14th St, San Francisco, CA 94016" +274871,Apple Airpods Headphones,1,150,10/09/19 16:22,"931 Cherry St, San Francisco, CA 94016" +274872,34in Ultrawide Monitor,1,379.99,10/12/19 10:52,"390 Lake St, New York City, NY 10001" +274873,USB-C Charging Cable,1,11.95,10/29/19 21:02,"851 Park St, San Francisco, CA 94016" +274874,AAA Batteries (4-pack),2,2.99,10/01/19 17:42,"698 Wilson St, New York City, NY 10001" +274875,AA Batteries (4-pack),2,3.84,10/14/19 11:32,"466 8th St, San Francisco, CA 94016" +,,,,, +274876,27in FHD Monitor,1,149.99,10/26/19 21:32,"156 Forest St, New York City, NY 10001" +274877,Flatscreen TV,1,300,10/17/19 00:06,"304 Center St, Boston, MA 02215" +274878,Wired Headphones,1,11.99,10/08/19 16:36,"490 West St, San Francisco, CA 94016" +274879,AAA Batteries (4-pack),1,2.99,10/13/19 06:30,"213 Center St, Boston, MA 02215" +274880,Bose SoundSport Headphones,1,99.99,10/29/19 15:42,"765 Pine St, New York City, NY 10001" +274881,AAA Batteries (4-pack),3,2.99,10/31/19 22:54,"863 Dogwood St, Portland, OR 97035" +274882,27in 4K Gaming Monitor,1,389.99,10/02/19 00:06,"197 Jefferson St, San Francisco, CA 94016" +274883,USB-C Charging Cable,1,11.95,10/01/19 12:27,"139 Lakeview St, San Francisco, CA 94016" +274884,Wired Headphones,1,11.99,10/22/19 21:04,"675 9th St, San Francisco, CA 94016" +274885,Bose SoundSport Headphones,1,99.99,10/13/19 18:25,"913 7th St, San Francisco, CA 94016" +274886,AAA Batteries (4-pack),7,2.99,10/25/19 20:57,"735 Lincoln St, San Francisco, CA 94016" +274887,Bose SoundSport Headphones,1,99.99,10/27/19 19:05,"378 Maple St, San Francisco, CA 94016" +274888,27in FHD Monitor,1,149.99,10/12/19 13:13,"197 Washington St, Seattle, WA 98101" +274889,Wired Headphones,1,11.99,10/11/19 20:36,"781 Cedar St, Atlanta, GA 30301" +274890,AA Batteries (4-pack),1,3.84,10/23/19 09:56,"627 10th St, San Francisco, CA 94016" +274891,Flatscreen TV,1,300,10/04/19 07:55,"646 Meadow St, Atlanta, GA 30301" +274892,Google Phone,1,600,10/17/19 13:39,"561 River St, San Francisco, CA 94016" +274892,Wired Headphones,1,11.99,10/17/19 13:39,"561 River St, San Francisco, CA 94016" +274893,Apple Airpods Headphones,1,150,10/09/19 18:57,"821 Ridge St, Boston, MA 02215" +274894,iPhone,1,700,10/09/19 06:27,"81 Ridge St, Boston, MA 02215" +274895,AA Batteries (4-pack),1,3.84,10/29/19 13:45,"565 West St, Los Angeles, CA 90001" +274896,Wired Headphones,1,11.99,10/18/19 10:26,"659 Dogwood St, Seattle, WA 98101" +274897,Wired Headphones,1,11.99,10/22/19 02:30,"587 Highland St, Los Angeles, CA 90001" +274898,Wired Headphones,2,11.99,10/21/19 14:15,"78 Hill St, Seattle, WA 98101" +274899,AAA Batteries (4-pack),2,2.99,10/23/19 09:38,"87 Sunset St, Los Angeles, CA 90001" +274900,Lightning Charging Cable,1,14.95,10/22/19 23:53,"452 Lake St, Los Angeles, CA 90001" +274901,iPhone,1,700,10/13/19 09:05,"318 Adams St, San Francisco, CA 94016" +274901,Lightning Charging Cable,1,14.95,10/13/19 09:05,"318 Adams St, San Francisco, CA 94016" +274902,USB-C Charging Cable,2,11.95,10/26/19 14:04,"597 12th St, Boston, MA 02215" +274903,USB-C Charging Cable,1,11.95,10/18/19 12:47,"454 11th St, Austin, TX 73301" +274904,Macbook Pro Laptop,1,1700,10/23/19 10:07,"829 12th St, San Francisco, CA 94016" +274905,Macbook Pro Laptop,1,1700,10/15/19 21:23,"467 11th St, New York City, NY 10001" +274906,Apple Airpods Headphones,1,150,10/15/19 19:53,"274 North St, Austin, TX 73301" +274907,Apple Airpods Headphones,1,150,10/15/19 19:55,"424 South St, Atlanta, GA 30301" +274908,34in Ultrawide Monitor,1,379.99,10/09/19 03:38,"407 Dogwood St, Los Angeles, CA 90001" +274909,34in Ultrawide Monitor,1,379.99,10/07/19 11:44,"235 West St, San Francisco, CA 94016" +274910,Lightning Charging Cable,1,14.95,10/13/19 12:42,"481 Maple St, Los Angeles, CA 90001" +274911,Wired Headphones,1,11.99,10/27/19 01:23,"947 4th St, San Francisco, CA 94016" +274912,27in 4K Gaming Monitor,1,389.99,10/17/19 06:30,"715 6th St, Boston, MA 02215" +274913,AAA Batteries (4-pack),2,2.99,10/16/19 10:52,"263 Dogwood St, Austin, TX 73301" +274914,AA Batteries (4-pack),1,3.84,10/17/19 11:37,"517 13th St, San Francisco, CA 94016" +274915,iPhone,1,700,10/20/19 02:17,"99 North St, Portland, ME 04101" +274916,iPhone,1,700,10/24/19 19:21,"79 6th St, Dallas, TX 75001" +274916,Lightning Charging Cable,1,14.95,10/24/19 19:21,"79 6th St, Dallas, TX 75001" +274917,Apple Airpods Headphones,1,150,10/31/19 10:06,"567 12th St, Los Angeles, CA 90001" +274918,Apple Airpods Headphones,1,150,10/17/19 10:33,"978 8th St, New York City, NY 10001" +274919,27in 4K Gaming Monitor,1,389.99,10/27/19 23:16,"453 Johnson St, Los Angeles, CA 90001" +274920,AAA Batteries (4-pack),1,2.99,10/26/19 18:41,"44 10th St, San Francisco, CA 94016" +274921,USB-C Charging Cable,1,11.95,10/26/19 20:22,"778 4th St, Atlanta, GA 30301" +274922,27in FHD Monitor,1,149.99,10/20/19 00:35,"403 Spruce St, Seattle, WA 98101" +274923,Google Phone,1,600,10/28/19 21:21,"966 Jefferson St, Austin, TX 73301" +274924,Lightning Charging Cable,1,14.95,10/05/19 16:46,"398 Dogwood St, Boston, MA 02215" +274925,AAA Batteries (4-pack),1,2.99,10/09/19 11:12,"284 Park St, Dallas, TX 75001" +274926,USB-C Charging Cable,1,11.95,10/22/19 12:26,"842 Dogwood St, Los Angeles, CA 90001" +274927,27in 4K Gaming Monitor,1,389.99,10/07/19 21:44,"396 Willow St, San Francisco, CA 94016" +274928,Bose SoundSport Headphones,1,99.99,10/02/19 21:24,"397 9th St, New York City, NY 10001" +274929,USB-C Charging Cable,1,11.95,10/05/19 11:31,"692 Johnson St, Boston, MA 02215" +274930,Vareebadd Phone,1,400,10/27/19 15:22,"580 9th St, San Francisco, CA 94016" +274931,27in FHD Monitor,1,149.99,10/05/19 11:40,"185 Wilson St, Portland, OR 97035" +274932,34in Ultrawide Monitor,1,379.99,10/17/19 14:07,"303 Sunset St, Boston, MA 02215" +274933,ThinkPad Laptop,1,999.99,10/14/19 22:28,"277 Highland St, San Francisco, CA 94016" +274934,Lightning Charging Cable,1,14.95,10/04/19 11:55,"644 Wilson St, Dallas, TX 75001" +274935,Apple Airpods Headphones,1,150,10/20/19 20:39,"281 2nd St, Atlanta, GA 30301" +274936,Wired Headphones,1,11.99,10/05/19 02:20,"107 Ridge St, Dallas, TX 75001" +274937,Wired Headphones,2,11.99,10/18/19 17:20,"786 2nd St, San Francisco, CA 94016" +274938,Wired Headphones,1,11.99,10/04/19 15:05,"714 Cedar St, Portland, OR 97035" +274939,USB-C Charging Cable,1,11.95,10/27/19 23:47,"762 Lakeview St, Los Angeles, CA 90001" +274940,Lightning Charging Cable,1,14.95,10/22/19 20:07,"139 Ridge St, San Francisco, CA 94016" +274941,Wired Headphones,1,11.99,10/04/19 08:05,"146 Jackson St, Boston, MA 02215" +274942,Lightning Charging Cable,1,14.95,10/15/19 01:12,"23 West St, Atlanta, GA 30301" +274943,Wired Headphones,2,11.99,10/19/19 17:37,"188 Pine St, Boston, MA 02215" +274944,AAA Batteries (4-pack),1,2.99,10/11/19 17:10,"905 Meadow St, New York City, NY 10001" +274945,AA Batteries (4-pack),2,3.84,10/30/19 18:21,"419 4th St, Dallas, TX 75001" +274946,AAA Batteries (4-pack),1,2.99,10/23/19 22:55,"731 12th St, Seattle, WA 98101" +274947,27in FHD Monitor,1,149.99,10/30/19 21:46,"958 Sunset St, New York City, NY 10001" +274948,Bose SoundSport Headphones,1,99.99,10/08/19 18:08,"234 Johnson St, San Francisco, CA 94016" +274949,Vareebadd Phone,1,400,10/05/19 11:34,"672 River St, San Francisco, CA 94016" +274950,iPhone,1,700,10/03/19 23:04,"612 Lincoln St, Seattle, WA 98101" +274951,34in Ultrawide Monitor,1,379.99,10/21/19 21:21,"800 River St, Boston, MA 02215" +274952,Lightning Charging Cable,1,14.95,10/22/19 21:53,"174 10th St, Portland, ME 04101" +274953,Wired Headphones,1,11.99,10/25/19 15:25,"202 River St, New York City, NY 10001" +274954,Wired Headphones,1,11.99,10/21/19 18:53,"788 Dogwood St, New York City, NY 10001" +274955,AAA Batteries (4-pack),2,2.99,10/14/19 13:57,"122 8th St, Boston, MA 02215" +274956,Wired Headphones,1,11.99,10/14/19 11:25,"439 Johnson St, Austin, TX 73301" +274957,Flatscreen TV,1,300,10/19/19 13:47,"206 River St, San Francisco, CA 94016" +274958,Lightning Charging Cable,1,14.95,10/13/19 19:09,"343 Church St, New York City, NY 10001" +274959,Wired Headphones,1,11.99,10/07/19 13:42,"768 Pine St, Portland, OR 97035" +274960,34in Ultrawide Monitor,1,379.99,10/11/19 13:16,"426 Ridge St, Austin, TX 73301" +274961,Vareebadd Phone,1,400,10/05/19 12:13,"877 Jefferson St, New York City, NY 10001" +274962,Macbook Pro Laptop,1,1700,10/27/19 19:56,"457 Maple St, Atlanta, GA 30301" +274963,Wired Headphones,1,11.99,10/09/19 19:31,"198 Highland St, Los Angeles, CA 90001" +274964,AAA Batteries (4-pack),1,2.99,10/14/19 20:59,"781 6th St, Austin, TX 73301" +274965,USB-C Charging Cable,1,11.95,10/19/19 22:28,"907 Park St, Austin, TX 73301" +274966,LG Washing Machine,1,600.0,10/27/19 01:32,"624 Elm St, Los Angeles, CA 90001" +274967,Bose SoundSport Headphones,1,99.99,10/17/19 15:05,"609 12th St, Los Angeles, CA 90001" +274968,Apple Airpods Headphones,1,150,10/10/19 23:06,"252 Adams St, New York City, NY 10001" +274969,AA Batteries (4-pack),1,3.84,10/22/19 18:06,"244 Meadow St, New York City, NY 10001" +274970,AAA Batteries (4-pack),1,2.99,10/08/19 04:26,"483 Cedar St, Seattle, WA 98101" +274971,Macbook Pro Laptop,1,1700,10/19/19 17:37,"351 7th St, Dallas, TX 75001" +274972,Wired Headphones,1,11.99,10/09/19 14:31,"7 Ridge St, San Francisco, CA 94016" +274973,27in FHD Monitor,1,149.99,10/23/19 17:25,"284 South St, New York City, NY 10001" +274974,Apple Airpods Headphones,1,150,10/13/19 22:20,"952 11th St, Boston, MA 02215" +274975,LG Dryer,1,600.0,10/14/19 22:29,"984 Adams St, New York City, NY 10001" +,,,,, +274976,20in Monitor,1,109.99,10/03/19 22:14,"860 Main St, San Francisco, CA 94016" +274977,AAA Batteries (4-pack),1,2.99,10/27/19 19:27,"910 13th St, Austin, TX 73301" +274978,Wired Headphones,1,11.99,10/31/19 10:00,"247 Walnut St, Atlanta, GA 30301" +274979,34in Ultrawide Monitor,2,379.99,10/18/19 17:47,"598 Church St, Seattle, WA 98101" +274980,Google Phone,1,600,10/07/19 11:46,"943 Center St, Los Angeles, CA 90001" +274981,27in FHD Monitor,1,149.99,10/06/19 23:36,"632 Walnut St, New York City, NY 10001" +274982,Lightning Charging Cable,1,14.95,10/23/19 21:20,"800 9th St, San Francisco, CA 94016" +274983,AA Batteries (4-pack),1,3.84,10/21/19 15:46,"362 Madison St, Dallas, TX 75001" +274984,AA Batteries (4-pack),1,3.84,10/18/19 08:08,"353 Meadow St, San Francisco, CA 94016" +274985,Lightning Charging Cable,1,14.95,10/09/19 18:14,"503 4th St, Atlanta, GA 30301" +274986,iPhone,1,700,10/05/19 20:52,"683 Lake St, Austin, TX 73301" +274987,Wired Headphones,1,11.99,10/25/19 20:15,"748 Lake St, San Francisco, CA 94016" +274988,AA Batteries (4-pack),1,3.84,10/05/19 07:08,"890 Jefferson St, Boston, MA 02215" +274989,Lightning Charging Cable,1,14.95,10/16/19 19:21,"272 Hill St, Los Angeles, CA 90001" +274990,AAA Batteries (4-pack),1,2.99,10/13/19 15:51,"726 Wilson St, Los Angeles, CA 90001" +274991,Wired Headphones,1,11.99,10/06/19 12:05,"394 6th St, Boston, MA 02215" +274992,Apple Airpods Headphones,1,150,10/18/19 13:50,"349 6th St, Seattle, WA 98101" +274993,AA Batteries (4-pack),1,3.84,10/04/19 15:36,"232 Wilson St, New York City, NY 10001" +274994,Macbook Pro Laptop,1,1700,10/09/19 17:13,"861 Adams St, San Francisco, CA 94016" +274995,USB-C Charging Cable,1,11.95,10/15/19 12:28,"793 5th St, New York City, NY 10001" +274996,AAA Batteries (4-pack),1,2.99,10/07/19 19:04,"609 8th St, Los Angeles, CA 90001" +274997,AAA Batteries (4-pack),1,2.99,10/06/19 01:12,"963 West St, Portland, ME 04101" +274998,Apple Airpods Headphones,1,150,10/07/19 17:15,"375 Washington St, Seattle, WA 98101" +274999,Lightning Charging Cable,1,14.95,10/02/19 16:19,"499 Forest St, Los Angeles, CA 90001" +275000,Macbook Pro Laptop,1,1700,10/27/19 21:49,"35 Forest St, Los Angeles, CA 90001" +275001,USB-C Charging Cable,1,11.95,10/08/19 13:36,"283 13th St, Seattle, WA 98101" +275002,AAA Batteries (4-pack),1,2.99,10/05/19 18:21,"740 Forest St, Los Angeles, CA 90001" +275003,AA Batteries (4-pack),1,3.84,10/21/19 12:41,"380 Hickory St, Austin, TX 73301" +275004,20in Monitor,1,109.99,10/21/19 11:54,"723 Hill St, Atlanta, GA 30301" +275005,27in FHD Monitor,1,149.99,10/06/19 17:56,"861 Jefferson St, Atlanta, GA 30301" +275006,AA Batteries (4-pack),2,3.84,10/08/19 17:38,"446 2nd St, Boston, MA 02215" +275007,USB-C Charging Cable,1,11.95,10/01/19 13:49,"352 Walnut St, New York City, NY 10001" +275008,AAA Batteries (4-pack),1,2.99,11/01/19 00:57,"826 4th St, San Francisco, CA 94016" +275009,34in Ultrawide Monitor,1,379.99,10/21/19 14:39,"805 Lincoln St, San Francisco, CA 94016" +275010,Wired Headphones,1,11.99,10/04/19 03:04,"391 8th St, San Francisco, CA 94016" +275011,AAA Batteries (4-pack),2,2.99,10/28/19 17:54,"958 7th St, Los Angeles, CA 90001" +275012,AAA Batteries (4-pack),1,2.99,10/14/19 10:32,"217 Hickory St, Austin, TX 73301" +275013,Google Phone,1,600,10/28/19 23:45,"777 Madison St, Atlanta, GA 30301" +275013,USB-C Charging Cable,1,11.95,10/28/19 23:45,"777 Madison St, Atlanta, GA 30301" +275014,34in Ultrawide Monitor,1,379.99,10/28/19 08:57,"858 6th St, Atlanta, GA 30301" +275015,AA Batteries (4-pack),2,3.84,10/18/19 21:47,"574 Lincoln St, Atlanta, GA 30301" +275016,iPhone,1,700,10/13/19 09:31,"631 North St, New York City, NY 10001" +275017,USB-C Charging Cable,1,11.95,10/24/19 23:12,"507 Wilson St, Los Angeles, CA 90001" +275018,iPhone,1,700,10/28/19 13:05,"33 Madison St, San Francisco, CA 94016" +275018,Lightning Charging Cable,1,14.95,10/28/19 13:05,"33 Madison St, San Francisco, CA 94016" +275019,AAA Batteries (4-pack),2,2.99,10/09/19 22:46,"854 Lakeview St, Seattle, WA 98101" +275020,iPhone,1,700,10/14/19 13:13,"878 Chestnut St, San Francisco, CA 94016" +275021,AA Batteries (4-pack),3,3.84,10/06/19 12:49,"811 Elm St, San Francisco, CA 94016" +275022,AAA Batteries (4-pack),1,2.99,10/05/19 15:41,"16 Meadow St, Boston, MA 02215" +275023,Bose SoundSport Headphones,1,99.99,10/30/19 21:53,"878 Main St, San Francisco, CA 94016" +275024,AAA Batteries (4-pack),1,2.99,10/17/19 15:27,"480 North St, Boston, MA 02215" +275025,ThinkPad Laptop,1,999.99,10/05/19 22:20,"30 11th St, New York City, NY 10001" +275026,Google Phone,1,600,10/01/19 19:57,"687 14th St, San Francisco, CA 94016" +275026,Wired Headphones,1,11.99,10/01/19 19:57,"687 14th St, San Francisco, CA 94016" +275027,Flatscreen TV,1,300,10/24/19 20:02,"611 Church St, San Francisco, CA 94016" +275028,Apple Airpods Headphones,1,150,10/28/19 19:33,"301 Spruce St, Atlanta, GA 30301" +275029,Wired Headphones,1,11.99,10/28/19 11:26,"520 Park St, San Francisco, CA 94016" +275030,Apple Airpods Headphones,1,150,10/20/19 15:16,"13 14th St, Boston, MA 02215" +275031,USB-C Charging Cable,2,11.95,10/09/19 21:15,"328 7th St, New York City, NY 10001" +275032,iPhone,1,700,10/09/19 13:03,"879 Willow St, Los Angeles, CA 90001" +275033,20in Monitor,1,109.99,10/27/19 18:44,"859 Dogwood St, Dallas, TX 75001" +275034,Apple Airpods Headphones,1,150,10/11/19 20:19,"953 Chestnut St, Boston, MA 02215" +275035,Lightning Charging Cable,1,14.95,10/27/19 16:08,"931 1st St, Boston, MA 02215" +275036,27in FHD Monitor,1,149.99,10/23/19 22:17,"351 Ridge St, Los Angeles, CA 90001" +275037,Lightning Charging Cable,1,14.95,10/14/19 16:31,"964 Ridge St, San Francisco, CA 94016" +275038,USB-C Charging Cable,1,11.95,10/11/19 08:48,"543 13th St, Los Angeles, CA 90001" +275039,USB-C Charging Cable,1,11.95,10/08/19 20:33,"54 Hill St, San Francisco, CA 94016" +275040,34in Ultrawide Monitor,1,379.99,10/26/19 10:00,"435 Spruce St, Austin, TX 73301" +275041,USB-C Charging Cable,1,11.95,10/06/19 21:41,"357 Elm St, Dallas, TX 75001" +275042,27in FHD Monitor,1,149.99,10/16/19 12:27,"353 Spruce St, San Francisco, CA 94016" +275043,27in FHD Monitor,1,149.99,10/21/19 00:53,"407 Jackson St, Los Angeles, CA 90001" +275044,Bose SoundSport Headphones,1,99.99,10/24/19 07:43,"583 Center St, Los Angeles, CA 90001" +275045,27in FHD Monitor,1,149.99,10/24/19 17:57,"124 1st St, Boston, MA 02215" +275046,AA Batteries (4-pack),1,3.84,10/01/19 13:06,"250 Washington St, Los Angeles, CA 90001" +275047,34in Ultrawide Monitor,1,379.99,10/11/19 23:49,"892 Sunset St, Seattle, WA 98101" +275048,Lightning Charging Cable,1,14.95,10/13/19 08:13,"584 North St, San Francisco, CA 94016" +275049,AA Batteries (4-pack),1,3.84,10/09/19 06:36,"320 Madison St, Los Angeles, CA 90001" +275050,Lightning Charging Cable,1,14.95,10/03/19 18:08,"741 Adams St, San Francisco, CA 94016" +275051,20in Monitor,1,109.99,10/07/19 20:17,"91 Pine St, New York City, NY 10001" +275052,Bose SoundSport Headphones,1,99.99,10/13/19 17:19,"12 Jackson St, Portland, OR 97035" +275052,Wired Headphones,2,11.99,10/13/19 17:19,"12 Jackson St, Portland, OR 97035" +275053,AAA Batteries (4-pack),1,2.99,10/13/19 12:53,"622 Park St, Boston, MA 02215" +275054,ThinkPad Laptop,1,999.99,10/22/19 16:23,"97 Cedar St, San Francisco, CA 94016" +275055,Lightning Charging Cable,1,14.95,10/31/19 13:22,"881 Adams St, Los Angeles, CA 90001" +275056,Lightning Charging Cable,1,14.95,10/23/19 14:15,"796 12th St, Atlanta, GA 30301" +275057,USB-C Charging Cable,1,11.95,10/29/19 21:58,"633 4th St, Seattle, WA 98101" +275058,USB-C Charging Cable,1,11.95,10/08/19 11:30,"857 Lincoln St, Boston, MA 02215" +275059,Lightning Charging Cable,1,14.95,10/11/19 18:23,"164 River St, San Francisco, CA 94016" +275060,Apple Airpods Headphones,1,150,10/07/19 13:37,"918 Johnson St, Portland, OR 97035" +275061,Wired Headphones,2,11.99,10/09/19 08:09,"748 8th St, Los Angeles, CA 90001" +,,,,, +275062,Macbook Pro Laptop,1,1700,10/30/19 19:13,"717 1st St, New York City, NY 10001" +275063,Lightning Charging Cable,1,14.95,10/28/19 12:45,"603 Spruce St, Portland, OR 97035" +275064,Wired Headphones,1,11.99,10/10/19 14:52,"12 10th St, Boston, MA 02215" +275065,Apple Airpods Headphones,1,150,10/26/19 18:00,"568 Spruce St, New York City, NY 10001" +275066,Lightning Charging Cable,1,14.95,10/31/19 20:08,"47 8th St, New York City, NY 10001" +275067,AAA Batteries (4-pack),1,2.99,10/18/19 16:51,"566 Spruce St, Portland, OR 97035" +275068,27in FHD Monitor,1,149.99,10/25/19 12:26,"86 Willow St, Los Angeles, CA 90001" +275069,AA Batteries (4-pack),1,3.84,10/25/19 20:24,"493 South St, Atlanta, GA 30301" +275070,USB-C Charging Cable,1,11.95,10/15/19 13:53,"249 9th St, New York City, NY 10001" +275071,Wired Headphones,1,11.99,10/02/19 22:01,"121 10th St, San Francisco, CA 94016" +275072,Apple Airpods Headphones,1,150,10/02/19 18:41,"934 Ridge St, Portland, OR 97035" +275073,Wired Headphones,1,11.99,10/23/19 15:49,"364 Johnson St, Portland, OR 97035" +275074,AAA Batteries (4-pack),1,2.99,10/27/19 00:52,"722 8th St, Boston, MA 02215" +275075,Apple Airpods Headphones,1,150,10/27/19 23:28,"850 12th St, San Francisco, CA 94016" +275076,Lightning Charging Cable,1,14.95,10/28/19 08:30,"789 5th St, Los Angeles, CA 90001" +275077,Apple Airpods Headphones,1,150,10/25/19 18:19,"679 Sunset St, New York City, NY 10001" +275078,AA Batteries (4-pack),1,3.84,10/27/19 22:28,"312 Spruce St, Austin, TX 73301" +275079,Lightning Charging Cable,1,14.95,10/22/19 09:02,"586 Cedar St, Boston, MA 02215" +275080,Wired Headphones,1,11.99,10/15/19 21:48,"605 West St, New York City, NY 10001" +275081,27in FHD Monitor,1,149.99,10/29/19 09:01,"296 Lake St, New York City, NY 10001" +275082,Wired Headphones,1,11.99,10/12/19 17:22,"190 8th St, New York City, NY 10001" +275083,Bose SoundSport Headphones,1,99.99,10/19/19 19:45,"710 10th St, Los Angeles, CA 90001" +275084,Bose SoundSport Headphones,1,99.99,10/15/19 21:14,"800 Adams St, San Francisco, CA 94016" +275085,USB-C Charging Cable,1,11.95,10/10/19 11:34,"533 Lake St, Los Angeles, CA 90001" +275086,Wired Headphones,1,11.99,10/05/19 07:45,"489 Maple St, San Francisco, CA 94016" +275087,Apple Airpods Headphones,1,150,10/21/19 12:57,"417 Chestnut St, San Francisco, CA 94016" +275088,Lightning Charging Cable,1,14.95,10/26/19 08:27,"514 7th St, San Francisco, CA 94016" +275089,USB-C Charging Cable,1,11.95,10/26/19 20:00,"380 2nd St, New York City, NY 10001" +275090,Bose SoundSport Headphones,1,99.99,10/15/19 18:58,"655 5th St, San Francisco, CA 94016" +275091,Bose SoundSport Headphones,1,99.99,10/28/19 17:34,"190 Johnson St, Dallas, TX 75001" +275092,Bose SoundSport Headphones,1,99.99,10/22/19 21:46,"46 Elm St, New York City, NY 10001" +275093,Apple Airpods Headphones,1,150,10/24/19 18:35,"192 Ridge St, Portland, OR 97035" +275094,AA Batteries (4-pack),1,3.84,10/17/19 19:04,"142 Dogwood St, Los Angeles, CA 90001" +275095,Macbook Pro Laptop,1,1700,10/24/19 16:18,"621 11th St, Atlanta, GA 30301" +275096,Lightning Charging Cable,1,14.95,10/02/19 18:36,"729 South St, Los Angeles, CA 90001" +275097,USB-C Charging Cable,1,11.95,10/22/19 16:20,"117 North St, Seattle, WA 98101" +275098,Bose SoundSport Headphones,1,99.99,10/29/19 20:06,"759 Hill St, Boston, MA 02215" +275099,Apple Airpods Headphones,1,150,10/09/19 13:54,"729 Willow St, Dallas, TX 75001" +275100,Bose SoundSport Headphones,1,99.99,10/31/19 11:23,"620 4th St, Dallas, TX 75001" +275101,USB-C Charging Cable,1,11.95,10/17/19 14:30,"558 4th St, Boston, MA 02215" +275102,Lightning Charging Cable,1,14.95,10/31/19 18:55,"718 South St, Los Angeles, CA 90001" +275103,Vareebadd Phone,1,400,10/04/19 14:20,"143 Cedar St, Austin, TX 73301" +275103,USB-C Charging Cable,1,11.95,10/04/19 14:20,"143 Cedar St, Austin, TX 73301" +275104,Vareebadd Phone,1,400,10/12/19 14:58,"571 1st St, Seattle, WA 98101" +275104,ThinkPad Laptop,1,999.99,10/12/19 14:58,"571 1st St, Seattle, WA 98101" +275105,AA Batteries (4-pack),2,3.84,10/26/19 15:38,"533 West St, Austin, TX 73301" +275106,AA Batteries (4-pack),2,3.84,10/14/19 12:25,"721 8th St, Los Angeles, CA 90001" +275107,iPhone,1,700,10/31/19 04:45,"329 9th St, Los Angeles, CA 90001" +275107,USB-C Charging Cable,1,11.95,10/31/19 04:45,"329 9th St, Los Angeles, CA 90001" +275108,20in Monitor,1,109.99,10/31/19 17:58,"517 Meadow St, Portland, ME 04101" +275109,USB-C Charging Cable,1,11.95,10/30/19 15:34,"357 Washington St, San Francisco, CA 94016" +275110,AAA Batteries (4-pack),1,2.99,10/14/19 15:14,"933 13th St, Los Angeles, CA 90001" +275111,Wired Headphones,2,11.99,10/28/19 16:46,"30 Chestnut St, Boston, MA 02215" +275112,USB-C Charging Cable,1,11.95,10/29/19 01:25,"468 Lake St, Dallas, TX 75001" +275113,Apple Airpods Headphones,1,150,10/03/19 16:50,"798 Jackson St, Atlanta, GA 30301" +275114,ThinkPad Laptop,1,999.99,10/02/19 09:41,"59 Center St, Dallas, TX 75001" +275115,Wired Headphones,1,11.99,10/09/19 13:59,"148 Elm St, San Francisco, CA 94016" +275116,Lightning Charging Cable,1,14.95,10/22/19 18:18,"538 Meadow St, San Francisco, CA 94016" +275117,27in FHD Monitor,1,149.99,10/17/19 20:39,"865 Forest St, New York City, NY 10001" +275118,Bose SoundSport Headphones,1,99.99,10/30/19 15:02,"156 Adams St, Boston, MA 02215" +275119,Macbook Pro Laptop,1,1700,10/11/19 15:19,"415 South St, New York City, NY 10001" +275120,AAA Batteries (4-pack),1,2.99,10/11/19 12:12,"210 River St, San Francisco, CA 94016" +275121,Apple Airpods Headphones,1,150,10/30/19 15:21,"812 Wilson St, Los Angeles, CA 90001" +275122,USB-C Charging Cable,1,11.95,10/15/19 12:25,"163 Lake St, San Francisco, CA 94016" +275123,USB-C Charging Cable,1,11.95,10/10/19 08:55,"122 2nd St, Austin, TX 73301" +275124,iPhone,1,700,10/17/19 15:51,"307 Lake St, Dallas, TX 75001" +275124,Lightning Charging Cable,1,14.95,10/17/19 15:51,"307 Lake St, Dallas, TX 75001" +275125,Macbook Pro Laptop,1,1700,10/28/19 22:10,"727 Chestnut St, New York City, NY 10001" +275126,Lightning Charging Cable,1,14.95,10/14/19 00:20,"379 Center St, Austin, TX 73301" +275127,Lightning Charging Cable,1,14.95,10/15/19 12:13,"583 11th St, New York City, NY 10001" +275128,27in 4K Gaming Monitor,1,389.99,10/23/19 10:25,"311 5th St, Atlanta, GA 30301" +275129,Vareebadd Phone,1,400,10/04/19 18:55,"450 Church St, Los Angeles, CA 90001" +275130,ThinkPad Laptop,1,999.99,10/05/19 16:59,"841 Lakeview St, New York City, NY 10001" +275131,AA Batteries (4-pack),1,3.84,10/26/19 18:32,"744 Madison St, New York City, NY 10001" +275132,USB-C Charging Cable,1,11.95,10/26/19 17:07,"241 Hickory St, Los Angeles, CA 90001" +275133,Bose SoundSport Headphones,1,99.99,10/21/19 08:25,"807 Highland St, Seattle, WA 98101" +275134,Wired Headphones,1,11.99,10/24/19 20:30,"90 7th St, San Francisco, CA 94016" +275135,AAA Batteries (4-pack),1,2.99,10/31/19 12:09,"611 Jefferson St, Austin, TX 73301" +275136,27in FHD Monitor,1,149.99,10/20/19 09:15,"630 8th St, San Francisco, CA 94016" +275137,Apple Airpods Headphones,1,150,10/26/19 21:02,"607 14th St, Portland, ME 04101" +275138,AA Batteries (4-pack),1,3.84,10/27/19 12:02,"73 11th St, Los Angeles, CA 90001" +275139,USB-C Charging Cable,1,11.95,10/19/19 16:52,"447 Madison St, Seattle, WA 98101" +275140,Wired Headphones,1,11.99,10/23/19 19:52,"472 7th St, Atlanta, GA 30301" +275141,AA Batteries (4-pack),1,3.84,10/29/19 12:09,"693 Lincoln St, Austin, TX 73301" +275142,AA Batteries (4-pack),1,3.84,10/24/19 18:42,"572 Highland St, San Francisco, CA 94016" +275143,Google Phone,1,600,10/12/19 12:05,"835 Highland St, Austin, TX 73301" +275144,Wired Headphones,1,11.99,10/18/19 20:40,"403 Main St, Atlanta, GA 30301" +275145,Macbook Pro Laptop,1,1700,10/01/19 22:58,"951 Cedar St, Boston, MA 02215" +275146,Vareebadd Phone,1,400,10/21/19 13:37,"335 11th St, Atlanta, GA 30301" +275147,Wired Headphones,1,11.99,10/19/19 12:28,"504 Walnut St, Boston, MA 02215" +275148,AA Batteries (4-pack),1,3.84,10/16/19 20:00,"947 1st St, Los Angeles, CA 90001" +275149,Lightning Charging Cable,1,14.95,10/13/19 00:00,"72 Jefferson St, New York City, NY 10001" +275150,Lightning Charging Cable,1,14.95,10/30/19 17:50,"181 5th St, Boston, MA 02215" +275151,iPhone,1,700,10/17/19 09:21,"598 Johnson St, San Francisco, CA 94016" +275152,Lightning Charging Cable,1,14.95,10/25/19 23:39,"195 Jefferson St, Portland, OR 97035" +275153,AA Batteries (4-pack),2,3.84,10/17/19 07:56,"580 Pine St, San Francisco, CA 94016" +275154,20in Monitor,1,109.99,10/18/19 17:05,"256 Ridge St, Seattle, WA 98101" +275155,AA Batteries (4-pack),1,3.84,10/09/19 19:31,"271 Elm St, San Francisco, CA 94016" +275156,AAA Batteries (4-pack),1,2.99,10/25/19 09:55,"691 Park St, Atlanta, GA 30301" +275157,USB-C Charging Cable,1,11.95,10/15/19 18:03,"593 South St, San Francisco, CA 94016" +275157,Wired Headphones,1,11.99,10/15/19 18:03,"593 South St, San Francisco, CA 94016" +275158,27in 4K Gaming Monitor,1,389.99,10/21/19 13:21,"246 Hickory St, New York City, NY 10001" +275159,Lightning Charging Cable,1,14.95,10/18/19 21:10,"637 4th St, Atlanta, GA 30301" +275160,iPhone,1,700,10/26/19 19:48,"868 Jackson St, San Francisco, CA 94016" +275161,Bose SoundSport Headphones,1,99.99,10/10/19 14:25,"108 12th St, Austin, TX 73301" +275162,ThinkPad Laptop,1,999.99,10/30/19 17:50,"277 Main St, Los Angeles, CA 90001" +275163,Lightning Charging Cable,1,14.95,10/06/19 17:51,"680 River St, Los Angeles, CA 90001" +275163,AA Batteries (4-pack),1,3.84,10/06/19 17:51,"680 River St, Los Angeles, CA 90001" +275164,AAA Batteries (4-pack),1,2.99,10/17/19 14:55,"177 West St, San Francisco, CA 94016" +275165,AAA Batteries (4-pack),1,2.99,10/13/19 11:23,"575 Main St, Boston, MA 02215" +275166,Google Phone,1,600,10/08/19 21:01,"257 Madison St, Los Angeles, CA 90001" +275167,Macbook Pro Laptop,1,1700,10/06/19 19:21,"573 Forest St, New York City, NY 10001" +275168,USB-C Charging Cable,1,11.95,10/03/19 00:16,"898 13th St, San Francisco, CA 94016" +275169,AA Batteries (4-pack),1,3.84,10/01/19 19:21,"147 Jackson St, Boston, MA 02215" +275170,Lightning Charging Cable,1,14.95,10/31/19 03:11,"639 Sunset St, Austin, TX 73301" +275171,AA Batteries (4-pack),1,3.84,10/03/19 09:00,"453 Pine St, Los Angeles, CA 90001" +275172,Lightning Charging Cable,1,14.95,10/06/19 20:33,"312 Jackson St, Los Angeles, CA 90001" +275173,AA Batteries (4-pack),1,3.84,10/28/19 19:30,"588 Dogwood St, Boston, MA 02215" +275174,ThinkPad Laptop,1,999.99,10/16/19 16:02,"299 Main St, San Francisco, CA 94016" +275175,LG Dryer,1,600.0,10/09/19 12:02,"120 North St, Atlanta, GA 30301" +275176,AA Batteries (4-pack),1,3.84,10/22/19 15:54,"270 10th St, Los Angeles, CA 90001" +275177,Wired Headphones,1,11.99,10/05/19 15:53,"166 Hickory St, Los Angeles, CA 90001" +275178,AA Batteries (4-pack),2,3.84,10/30/19 20:25,"26 Main St, New York City, NY 10001" +275179,USB-C Charging Cable,1,11.95,10/25/19 15:35,"206 6th St, San Francisco, CA 94016" +275180,AAA Batteries (4-pack),3,2.99,10/17/19 15:52,"217 13th St, Seattle, WA 98101" +275181,Lightning Charging Cable,1,14.95,10/19/19 04:03,"473 4th St, Los Angeles, CA 90001" +275182,Bose SoundSport Headphones,1,99.99,10/28/19 19:05,"78 9th St, New York City, NY 10001" +275183,Lightning Charging Cable,1,14.95,10/21/19 21:14,"366 8th St, Los Angeles, CA 90001" +275184,ThinkPad Laptop,1,999.99,10/01/19 19:44,"892 River St, San Francisco, CA 94016" +275185,34in Ultrawide Monitor,1,379.99,10/14/19 21:56,"727 Hill St, Portland, ME 04101" +275185,Macbook Pro Laptop,1,1700,10/14/19 21:56,"727 Hill St, Portland, ME 04101" +275186,AA Batteries (4-pack),1,3.84,10/16/19 08:54,"94 Main St, Los Angeles, CA 90001" +275187,20in Monitor,1,109.99,10/30/19 14:56,"274 Meadow St, Boston, MA 02215" +275188,iPhone,1,700,10/29/19 13:14,"98 Sunset St, San Francisco, CA 94016" +275189,Wired Headphones,1,11.99,10/31/19 22:07,"580 Church St, Dallas, TX 75001" +275190,AAA Batteries (4-pack),1,2.99,10/16/19 20:37,"229 Adams St, San Francisco, CA 94016" +275191,AAA Batteries (4-pack),3,2.99,10/15/19 00:46,"532 North St, Seattle, WA 98101" +275192,iPhone,1,700,10/14/19 19:51,"493 Cedar St, New York City, NY 10001" +275192,Lightning Charging Cable,1,14.95,10/14/19 19:51,"493 Cedar St, New York City, NY 10001" +275193,34in Ultrawide Monitor,1,379.99,10/22/19 13:40,"165 8th St, Los Angeles, CA 90001" +275194,Bose SoundSport Headphones,1,99.99,10/10/19 07:52,"317 Walnut St, New York City, NY 10001" +275195,Lightning Charging Cable,1,14.95,10/30/19 14:10,"330 North St, New York City, NY 10001" +275196,Google Phone,1,600,10/15/19 17:16,"983 14th St, Seattle, WA 98101" +275197,iPhone,1,700,10/14/19 22:34,"989 Pine St, New York City, NY 10001" +275198,27in 4K Gaming Monitor,1,389.99,10/17/19 16:19,"22 11th St, New York City, NY 10001" +275199,Wired Headphones,1,11.99,10/25/19 15:52,"323 Chestnut St, Dallas, TX 75001" +275200,AAA Batteries (4-pack),1,2.99,10/15/19 17:13,"419 Elm St, Los Angeles, CA 90001" +275201,AAA Batteries (4-pack),2,2.99,10/09/19 14:59,"933 14th St, New York City, NY 10001" +275202,AAA Batteries (4-pack),2,2.99,10/25/19 04:01,"38 5th St, Seattle, WA 98101" +275203,AAA Batteries (4-pack),1,2.99,10/30/19 21:52,"299 Cedar St, Atlanta, GA 30301" +275204,USB-C Charging Cable,1,11.95,10/29/19 12:51,"666 Cedar St, Los Angeles, CA 90001" +275205,AAA Batteries (4-pack),1,2.99,10/30/19 11:41,"787 Cedar St, Atlanta, GA 30301" +275206,27in FHD Monitor,1,149.99,10/22/19 13:59,"436 9th St, Portland, OR 97035" +275207,Lightning Charging Cable,1,14.95,10/10/19 11:57,"130 Jefferson St, Dallas, TX 75001" +275208,34in Ultrawide Monitor,1,379.99,10/17/19 13:22,"231 Jefferson St, Boston, MA 02215" +275209,Apple Airpods Headphones,1,150,10/18/19 10:14,"691 Lakeview St, Atlanta, GA 30301" +275210,AAA Batteries (4-pack),3,2.99,10/04/19 16:51,"173 West St, Los Angeles, CA 90001" +275211,iPhone,1,700,10/19/19 00:06,"101 Washington St, Boston, MA 02215" +275212,Lightning Charging Cable,1,14.95,10/30/19 10:29,"473 5th St, San Francisco, CA 94016" +275213,34in Ultrawide Monitor,1,379.99,10/01/19 21:03,"25 Adams St, Austin, TX 73301" +275214,Vareebadd Phone,1,400,10/30/19 20:21,"473 Cherry St, San Francisco, CA 94016" +275215,Apple Airpods Headphones,1,150,10/25/19 09:37,"503 Main St, San Francisco, CA 94016" +275216,AA Batteries (4-pack),1,3.84,10/12/19 13:20,"469 Walnut St, San Francisco, CA 94016" +275217,Lightning Charging Cable,1,14.95,10/01/19 21:22,"89 5th St, San Francisco, CA 94016" +275218,AAA Batteries (4-pack),1,2.99,10/10/19 12:47,"755 Jackson St, Los Angeles, CA 90001" +275219,Wired Headphones,1,11.99,10/14/19 10:10,"23 West St, New York City, NY 10001" +275220,USB-C Charging Cable,1,11.95,10/18/19 20:45,"908 Hickory St, New York City, NY 10001" +275221,Google Phone,1,600,10/05/19 20:23,"592 North St, Los Angeles, CA 90001" +275222,Google Phone,1,600,10/29/19 12:14,"339 Lake St, New York City, NY 10001" +275223,Macbook Pro Laptop,1,1700,10/17/19 18:48,"68 Dogwood St, Los Angeles, CA 90001" +275224,Macbook Pro Laptop,1,1700,10/01/19 21:40,"299 13th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +275225,iPhone,1,700,10/01/19 19:01,"406 Dogwood St, New York City, NY 10001" +275226,AAA Batteries (4-pack),3,2.99,10/19/19 14:15,"743 10th St, Dallas, TX 75001" +275227,AA Batteries (4-pack),2,3.84,10/24/19 14:25,"622 Madison St, Boston, MA 02215" +275228,iPhone,1,700,10/03/19 00:11,"707 8th St, Los Angeles, CA 90001" +275229,Flatscreen TV,1,300,10/28/19 12:18,"926 Ridge St, Los Angeles, CA 90001" +275230,AAA Batteries (4-pack),1,2.99,10/13/19 09:33,"85 Park St, Boston, MA 02215" +275231,iPhone,1,700,10/25/19 21:59,"934 Washington St, Los Angeles, CA 90001" +275231,Wired Headphones,1,11.99,10/25/19 21:59,"934 Washington St, Los Angeles, CA 90001" +275232,USB-C Charging Cable,1,11.95,10/18/19 17:03,"209 Wilson St, San Francisco, CA 94016" +275233,Google Phone,1,600,10/31/19 15:28,"921 Lake St, Los Angeles, CA 90001" +275233,Wired Headphones,1,11.99,10/31/19 15:28,"921 Lake St, Los Angeles, CA 90001" +275234,Wired Headphones,1,11.99,10/23/19 19:21,"887 North St, San Francisco, CA 94016" +275235,AAA Batteries (4-pack),2,2.99,10/24/19 11:41,"283 Ridge St, New York City, NY 10001" +275236,Apple Airpods Headphones,1,150,10/29/19 00:15,"51 13th St, Dallas, TX 75001" +275237,Bose SoundSport Headphones,1,99.99,10/17/19 11:53,"614 North St, Austin, TX 73301" +275238,AAA Batteries (4-pack),2,2.99,10/03/19 09:35,"686 5th St, Los Angeles, CA 90001" +275239,ThinkPad Laptop,1,999.99,10/19/19 11:39,"733 Cherry St, New York City, NY 10001" +275240,Apple Airpods Headphones,1,150,10/17/19 09:42,"34 Center St, Atlanta, GA 30301" +275241,AA Batteries (4-pack),1,3.84,10/08/19 14:02,"425 Washington St, Boston, MA 02215" +275242,USB-C Charging Cable,1,11.95,10/09/19 20:36,"892 North St, New York City, NY 10001" +275243,Lightning Charging Cable,1,14.95,10/30/19 07:41,"784 Center St, Los Angeles, CA 90001" +275244,Bose SoundSport Headphones,1,99.99,10/24/19 11:47,"409 Spruce St, New York City, NY 10001" +275245,Lightning Charging Cable,1,14.95,10/28/19 10:04,"675 2nd St, Los Angeles, CA 90001" +275246,ThinkPad Laptop,1,999.99,10/16/19 11:44,"969 Dogwood St, New York City, NY 10001" +275247,AA Batteries (4-pack),3,3.84,10/16/19 08:01,"108 6th St, San Francisco, CA 94016" +275248,Lightning Charging Cable,1,14.95,10/05/19 19:13,"668 Hickory St, Atlanta, GA 30301" +275249,Bose SoundSport Headphones,1,99.99,10/09/19 21:10,"396 Johnson St, Los Angeles, CA 90001" +275250,Flatscreen TV,1,300,10/29/19 10:32,"147 1st St, Boston, MA 02215" +275251,ThinkPad Laptop,1,999.99,10/16/19 00:07,"25 Highland St, San Francisco, CA 94016" +275252,Macbook Pro Laptop,1,1700,10/15/19 15:39,"116 Ridge St, Austin, TX 73301" +275253,AAA Batteries (4-pack),1,2.99,10/25/19 10:16,"767 Jefferson St, Portland, OR 97035" +275254,Lightning Charging Cable,1,14.95,10/11/19 17:53,"582 Madison St, Atlanta, GA 30301" +275255,Bose SoundSport Headphones,1,99.99,10/05/19 22:55,"405 Pine St, San Francisco, CA 94016" +275256,Lightning Charging Cable,1,14.95,10/04/19 08:49,"839 5th St, Boston, MA 02215" +275257,Lightning Charging Cable,1,14.95,10/19/19 21:46,"344 Meadow St, New York City, NY 10001" +275258,Bose SoundSport Headphones,1,99.99,10/12/19 11:16,"936 7th St, New York City, NY 10001" +275259,Wired Headphones,1,11.99,10/21/19 09:31,"415 11th St, San Francisco, CA 94016" +275260,AA Batteries (4-pack),1,3.84,10/20/19 18:06,"885 7th St, Los Angeles, CA 90001" +275261,Lightning Charging Cable,1,14.95,10/23/19 13:05,"642 Washington St, San Francisco, CA 94016" +275262,Wired Headphones,1,11.99,10/05/19 21:28,"641 4th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +275263,Lightning Charging Cable,1,14.95,10/27/19 08:19,"635 5th St, Boston, MA 02215" +275264,AA Batteries (4-pack),1,3.84,10/16/19 20:28,"751 Highland St, Portland, OR 97035" +275265,Lightning Charging Cable,1,14.95,10/25/19 13:55,"835 Highland St, San Francisco, CA 94016" +275266,USB-C Charging Cable,1,11.95,10/10/19 06:40,"117 10th St, Los Angeles, CA 90001" +275267,Wired Headphones,1,11.99,10/07/19 12:16,"700 South St, Los Angeles, CA 90001" +275268,AAA Batteries (4-pack),2,2.99,10/19/19 23:03,"46 1st St, San Francisco, CA 94016" +275269,Bose SoundSport Headphones,1,99.99,10/08/19 12:39,"274 Wilson St, Los Angeles, CA 90001" +275270,34in Ultrawide Monitor,1,379.99,10/12/19 22:29,"101 13th St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +275271,Wired Headphones,1,11.99,10/02/19 07:26,"81 Forest St, San Francisco, CA 94016" +275272,ThinkPad Laptop,1,999.99,10/20/19 15:21,"793 North St, Los Angeles, CA 90001" +275273,USB-C Charging Cable,1,11.95,10/14/19 05:39,"857 10th St, San Francisco, CA 94016" +275274,34in Ultrawide Monitor,1,379.99,10/20/19 14:59,"726 8th St, San Francisco, CA 94016" +275275,AAA Batteries (4-pack),2,2.99,10/09/19 13:57,"264 Sunset St, Dallas, TX 75001" +275276,Vareebadd Phone,1,400,10/17/19 10:14,"463 Maple St, Atlanta, GA 30301" +275276,Bose SoundSport Headphones,1,99.99,10/17/19 10:14,"463 Maple St, Atlanta, GA 30301" +275277,AAA Batteries (4-pack),2,2.99,10/20/19 03:47,"278 7th St, Atlanta, GA 30301" +275278,AAA Batteries (4-pack),3,2.99,10/03/19 14:32,"410 5th St, New York City, NY 10001" +275279,USB-C Charging Cable,1,11.95,10/05/19 22:07,"622 11th St, Los Angeles, CA 90001" +275280,Google Phone,1,600,10/14/19 18:34,"317 7th St, Boston, MA 02215" +275281,ThinkPad Laptop,1,999.99,10/11/19 20:51,"322 Lincoln St, Seattle, WA 98101" +275282,Wired Headphones,1,11.99,10/19/19 13:43,"142 Cherry St, San Francisco, CA 94016" +275283,Apple Airpods Headphones,1,150,10/13/19 23:11,"437 13th St, San Francisco, CA 94016" +275284,AA Batteries (4-pack),1,3.84,10/17/19 14:22,"742 Jefferson St, New York City, NY 10001" +275285,20in Monitor,1,109.99,10/29/19 11:34,"292 2nd St, Seattle, WA 98101" +275286,27in FHD Monitor,1,149.99,10/20/19 13:07,"191 Maple St, Seattle, WA 98101" +275287,Bose SoundSport Headphones,1,99.99,10/08/19 14:28,"522 11th St, New York City, NY 10001" +275288,Google Phone,1,600,10/23/19 23:08,"546 Willow St, Boston, MA 02215" +275289,ThinkPad Laptop,1,999.99,10/17/19 10:04,"362 12th St, Los Angeles, CA 90001" +275290,AA Batteries (4-pack),2,3.84,10/02/19 20:26,"820 Ridge St, Atlanta, GA 30301" +275290,Wired Headphones,2,11.99,10/02/19 20:26,"820 Ridge St, Atlanta, GA 30301" +275291,Wired Headphones,1,11.99,10/13/19 14:57,"307 4th St, San Francisco, CA 94016" +275292,USB-C Charging Cable,1,11.95,10/17/19 15:22,"401 9th St, Los Angeles, CA 90001" +275293,USB-C Charging Cable,3,11.95,10/14/19 15:54,"614 Park St, Atlanta, GA 30301" +275294,AA Batteries (4-pack),1,3.84,10/15/19 13:31,"934 Jefferson St, Los Angeles, CA 90001" +275295,AAA Batteries (4-pack),1,2.99,10/17/19 12:32,"872 River St, Seattle, WA 98101" +275296,ThinkPad Laptop,1,999.99,10/17/19 08:30,"639 11th St, Dallas, TX 75001" +275297,Lightning Charging Cable,1,14.95,10/07/19 21:20,"727 Forest St, New York City, NY 10001" +275298,Macbook Pro Laptop,1,1700,10/22/19 20:46,"219 Chestnut St, Los Angeles, CA 90001" +275299,Apple Airpods Headphones,1,150,10/13/19 21:03,"669 2nd St, Boston, MA 02215" +275300,Bose SoundSport Headphones,1,99.99,10/12/19 18:02,"672 13th St, Portland, OR 97035" +275301,27in 4K Gaming Monitor,1,389.99,10/17/19 20:25,"445 Ridge St, San Francisco, CA 94016" +275302,Bose SoundSport Headphones,1,99.99,10/14/19 15:27,"699 12th St, Los Angeles, CA 90001" +275303,AA Batteries (4-pack),1,3.84,10/06/19 17:13,"446 North St, San Francisco, CA 94016" +275304,USB-C Charging Cable,1,11.95,10/06/19 10:27,"766 10th St, Dallas, TX 75001" +275305,iPhone,1,700,10/09/19 11:22,"354 4th St, Los Angeles, CA 90001" +275306,AAA Batteries (4-pack),6,2.99,10/19/19 23:15,"484 Walnut St, Seattle, WA 98101" +275307,Bose SoundSport Headphones,1,99.99,10/10/19 19:46,"492 Church St, San Francisco, CA 94016" +275308,AA Batteries (4-pack),1,3.84,10/07/19 20:54,"66 12th St, San Francisco, CA 94016" +275309,Google Phone,1,600,10/07/19 11:13,"569 Spruce St, Boston, MA 02215" +275310,USB-C Charging Cable,1,11.95,10/15/19 08:05,"156 Spruce St, Portland, ME 04101" +275311,AAA Batteries (4-pack),1,2.99,10/21/19 13:21,"797 Pine St, San Francisco, CA 94016" +275312,USB-C Charging Cable,1,11.95,10/14/19 23:47,"130 Main St, San Francisco, CA 94016" +275313,LG Washing Machine,1,600.0,10/25/19 23:54,"32 Lakeview St, Atlanta, GA 30301" +275314,Apple Airpods Headphones,1,150,10/15/19 04:51,"104 12th St, Portland, OR 97035" +275315,Wired Headphones,1,11.99,10/07/19 11:26,"937 Sunset St, Austin, TX 73301" +275316,iPhone,1,700,10/17/19 13:39,"59 11th St, San Francisco, CA 94016" +275316,Lightning Charging Cable,1,14.95,10/17/19 13:39,"59 11th St, San Francisco, CA 94016" +275316,Wired Headphones,1,11.99,10/17/19 13:39,"59 11th St, San Francisco, CA 94016" +275317,AA Batteries (4-pack),1,3.84,10/18/19 08:50,"726 Center St, Dallas, TX 75001" +275318,AAA Batteries (4-pack),3,2.99,10/05/19 14:13,"841 Lincoln St, San Francisco, CA 94016" +275319,Wired Headphones,1,11.99,10/12/19 18:16,"792 Main St, Dallas, TX 75001" +275320,Bose SoundSport Headphones,1,99.99,10/25/19 00:31,"937 Adams St, San Francisco, CA 94016" +275321,AAA Batteries (4-pack),1,2.99,10/24/19 20:04,"758 Walnut St, Dallas, TX 75001" +275322,Macbook Pro Laptop,1,1700,10/31/19 18:47,"167 13th St, Dallas, TX 75001" +275323,USB-C Charging Cable,2,11.95,10/03/19 08:48,"30 10th St, Boston, MA 02215" +275324,27in 4K Gaming Monitor,1,389.99,10/17/19 14:35,"509 Hill St, Los Angeles, CA 90001" +275325,AAA Batteries (4-pack),3,2.99,10/22/19 17:56,"135 Main St, Los Angeles, CA 90001" +275326,ThinkPad Laptop,1,999.99,10/06/19 03:35,"69 Johnson St, New York City, NY 10001" +275327,USB-C Charging Cable,1,11.95,10/21/19 18:53,"900 North St, Los Angeles, CA 90001" +275328,Lightning Charging Cable,1,14.95,10/05/19 14:49,"576 Madison St, Dallas, TX 75001" +275329,Vareebadd Phone,1,400,10/16/19 06:13,"940 Adams St, San Francisco, CA 94016" +275330,Wired Headphones,1,11.99,10/10/19 19:22,"419 Jefferson St, Portland, ME 04101" +275331,Apple Airpods Headphones,1,150,10/31/19 08:32,"339 Madison St, New York City, NY 10001" +275332,Apple Airpods Headphones,1,150,10/21/19 15:39,"653 Ridge St, Los Angeles, CA 90001" +275333,AA Batteries (4-pack),1,3.84,10/12/19 13:06,"207 5th St, Boston, MA 02215" +275334,Wired Headphones,1,11.99,10/06/19 18:50,"537 Cedar St, Atlanta, GA 30301" +275335,27in 4K Gaming Monitor,1,389.99,10/26/19 16:45,"879 11th St, Boston, MA 02215" +275336,AA Batteries (4-pack),1,3.84,10/06/19 12:18,"512 13th St, San Francisco, CA 94016" +275337,Apple Airpods Headphones,1,150,10/22/19 11:52,"919 Cedar St, Austin, TX 73301" +275338,Flatscreen TV,1,300,10/02/19 11:13,"674 Hill St, New York City, NY 10001" +275339,Wired Headphones,2,11.99,10/09/19 08:58,"509 South St, Dallas, TX 75001" +275340,AA Batteries (4-pack),1,3.84,10/28/19 14:24,"851 Madison St, Atlanta, GA 30301" +275341,AA Batteries (4-pack),1,3.84,10/10/19 20:16,"547 Jackson St, Boston, MA 02215" +275342,Lightning Charging Cable,1,14.95,10/13/19 11:01,"514 Pine St, San Francisco, CA 94016" +275343,Wired Headphones,1,11.99,10/04/19 10:28,"276 14th St, Los Angeles, CA 90001" +275344,Wired Headphones,1,11.99,10/03/19 10:57,"646 North St, Dallas, TX 75001" +275345,Lightning Charging Cable,1,14.95,10/09/19 05:39,"110 Adams St, Portland, OR 97035" +275346,27in FHD Monitor,1,149.99,10/12/19 13:26,"81 Center St, San Francisco, CA 94016" +275347,USB-C Charging Cable,2,11.95,10/06/19 00:13,"971 1st St, Atlanta, GA 30301" +275348,AAA Batteries (4-pack),1,2.99,10/24/19 16:26,"657 Hill St, Boston, MA 02215" +275349,AA Batteries (4-pack),1,3.84,10/01/19 21:02,"702 Maple St, Los Angeles, CA 90001" +275350,iPhone,1,700,10/18/19 21:49,"753 4th St, Atlanta, GA 30301" +275351,Macbook Pro Laptop,1,1700,10/27/19 08:24,"284 Main St, Los Angeles, CA 90001" +275352,USB-C Charging Cable,1,11.95,10/05/19 18:10,"28 Madison St, Los Angeles, CA 90001" +275353,AAA Batteries (4-pack),2,2.99,10/21/19 12:17,"337 Highland St, Portland, OR 97035" +275354,Bose SoundSport Headphones,1,99.99,10/10/19 17:49,"703 10th St, San Francisco, CA 94016" +275355,Bose SoundSport Headphones,1,99.99,10/15/19 20:00,"652 Sunset St, Boston, MA 02215" +275356,Vareebadd Phone,1,400,10/21/19 20:48,"140 Willow St, Los Angeles, CA 90001" +275356,USB-C Charging Cable,1,11.95,10/21/19 20:48,"140 Willow St, Los Angeles, CA 90001" +275357,USB-C Charging Cable,1,11.95,10/05/19 08:44,"924 Cherry St, Seattle, WA 98101" +275358,Wired Headphones,1,11.99,10/17/19 12:20,"574 7th St, Los Angeles, CA 90001" +275359,27in 4K Gaming Monitor,1,389.99,10/28/19 09:15,"356 Adams St, Los Angeles, CA 90001" +275360,27in FHD Monitor,1,149.99,10/17/19 14:23,"228 River St, New York City, NY 10001" +275361,Lightning Charging Cable,1,14.95,10/24/19 09:20,"799 West St, New York City, NY 10001" +275362,Bose SoundSport Headphones,1,99.99,10/04/19 09:45,"64 Spruce St, Portland, OR 97035" +275363,iPhone,1,700,10/07/19 13:20,"819 4th St, Boston, MA 02215" +275364,Apple Airpods Headphones,1,150,10/06/19 20:25,"917 West St, Seattle, WA 98101" +275365,iPhone,1,700,10/10/19 10:02,"410 8th St, Boston, MA 02215" +275365,Lightning Charging Cable,1,14.95,10/10/19 10:02,"410 8th St, Boston, MA 02215" +275366,AAA Batteries (4-pack),1,2.99,10/10/19 23:10,"109 Maple St, Boston, MA 02215" +275367,Bose SoundSport Headphones,1,99.99,10/26/19 14:00,"828 Lakeview St, Dallas, TX 75001" +275368,AAA Batteries (4-pack),1,2.99,10/01/19 11:45,"505 Main St, Portland, OR 97035" +275369,AA Batteries (4-pack),2,3.84,10/28/19 21:24,"83 North St, San Francisco, CA 94016" +275370,Apple Airpods Headphones,1,150,10/01/19 15:18,"83 Sunset St, San Francisco, CA 94016" +275371,20in Monitor,1,109.99,10/17/19 13:46,"553 Chestnut St, New York City, NY 10001" +275372,Lightning Charging Cable,1,14.95,10/11/19 06:50,"926 South St, Dallas, TX 75001" +275373,ThinkPad Laptop,1,999.99,10/31/19 16:58,"230 Jackson St, Los Angeles, CA 90001" +275374,AAA Batteries (4-pack),1,2.99,10/20/19 23:46,"989 South St, Boston, MA 02215" +275375,AA Batteries (4-pack),3,3.84,10/16/19 09:50,"181 Church St, Austin, TX 73301" +275376,Wired Headphones,1,11.99,10/11/19 20:07,"233 Highland St, New York City, NY 10001" +275377,AA Batteries (4-pack),1,3.84,10/12/19 22:43,"121 West St, Boston, MA 02215" +275378,34in Ultrawide Monitor,1,379.99,10/21/19 12:14,"516 Forest St, Portland, OR 97035" +275379,AAA Batteries (4-pack),3,2.99,10/19/19 17:35,"669 1st St, Portland, OR 97035" +275380,ThinkPad Laptop,1,999.99,10/18/19 09:07,"436 Johnson St, Boston, MA 02215" +275381,iPhone,1,700,10/05/19 09:51,"860 Park St, Boston, MA 02215" +275381,Lightning Charging Cable,1,14.95,10/05/19 09:51,"860 Park St, Boston, MA 02215" +275382,AA Batteries (4-pack),1,3.84,10/17/19 18:20,"92 Sunset St, San Francisco, CA 94016" +275383,Macbook Pro Laptop,1,1700,10/31/19 15:13,"863 4th St, San Francisco, CA 94016" +275384,34in Ultrawide Monitor,1,379.99,10/05/19 14:37,"46 Chestnut St, San Francisco, CA 94016" +275385,AAA Batteries (4-pack),3,2.99,10/11/19 10:55,"118 12th St, Los Angeles, CA 90001" +275386,Wired Headphones,1,11.99,10/25/19 20:59,"915 9th St, Dallas, TX 75001" +275387,Bose SoundSport Headphones,1,99.99,10/30/19 16:16,"845 6th St, Dallas, TX 75001" +275388,USB-C Charging Cable,1,11.95,10/16/19 21:22,"789 8th St, San Francisco, CA 94016" +275389,USB-C Charging Cable,1,11.95,10/04/19 07:58,"272 South St, Los Angeles, CA 90001" +275390,Lightning Charging Cable,1,14.95,10/24/19 09:56,"420 Lincoln St, San Francisco, CA 94016" +275391,Flatscreen TV,1,300,10/29/19 11:39,"970 River St, Dallas, TX 75001" +275392,27in FHD Monitor,1,149.99,10/07/19 18:49,"508 8th St, San Francisco, CA 94016" +275393,AAA Batteries (4-pack),2,2.99,10/23/19 15:54,"396 Jackson St, Boston, MA 02215" +275394,27in 4K Gaming Monitor,1,389.99,10/17/19 11:24,"673 Church St, San Francisco, CA 94016" +275395,Wired Headphones,1,11.99,10/02/19 14:48,"629 Lincoln St, Seattle, WA 98101" +275396,27in 4K Gaming Monitor,1,389.99,10/26/19 09:30,"253 Hill St, San Francisco, CA 94016" +275397,AA Batteries (4-pack),1,3.84,10/08/19 10:17,"600 Main St, Dallas, TX 75001" +275398,27in FHD Monitor,1,149.99,10/19/19 19:19,"912 12th St, Portland, OR 97035" +275399,AAA Batteries (4-pack),3,2.99,10/03/19 10:54,"642 Madison St, New York City, NY 10001" +275400,Wired Headphones,1,11.99,10/18/19 16:52,"643 4th St, San Francisco, CA 94016" +275401,Wired Headphones,1,11.99,10/23/19 12:09,"506 10th St, Seattle, WA 98101" +275402,iPhone,1,700,10/29/19 13:59,"926 6th St, Los Angeles, CA 90001" +275402,Wired Headphones,1,11.99,10/29/19 13:59,"926 6th St, Los Angeles, CA 90001" +275403,USB-C Charging Cable,1,11.95,10/25/19 16:31,"831 Maple St, San Francisco, CA 94016" +275404,Vareebadd Phone,1,400,10/13/19 13:54,"126 Spruce St, San Francisco, CA 94016" +275405,27in 4K Gaming Monitor,1,389.99,10/30/19 18:37,"105 14th St, Los Angeles, CA 90001" +275406,Bose SoundSport Headphones,1,99.99,10/07/19 14:21,"521 Elm St, Seattle, WA 98101" +275407,34in Ultrawide Monitor,1,379.99,10/11/19 07:26,"645 Meadow St, San Francisco, CA 94016" +275408,Wired Headphones,1,11.99,10/10/19 06:39,"580 Willow St, Boston, MA 02215" +275409,AA Batteries (4-pack),1,3.84,10/26/19 21:58,"20 Church St, Boston, MA 02215" +275410,AA Batteries (4-pack),1,3.84,10/27/19 12:42,"758 13th St, Dallas, TX 75001" +275411,27in FHD Monitor,1,149.99,10/13/19 01:56,"791 Maple St, Atlanta, GA 30301" +275412,AAA Batteries (4-pack),1,2.99,10/12/19 01:58,"666 2nd St, Los Angeles, CA 90001" +275413,iPhone,1,700,10/02/19 23:20,"922 West St, Atlanta, GA 30301" +275413,Wired Headphones,2,11.99,10/02/19 23:20,"922 West St, Atlanta, GA 30301" +275414,AAA Batteries (4-pack),1,2.99,10/28/19 14:13,"267 Jefferson St, Boston, MA 02215" +275415,Bose SoundSport Headphones,1,99.99,10/16/19 19:22,"56 Ridge St, Dallas, TX 75001" +275416,USB-C Charging Cable,1,11.95,10/31/19 23:58,"864 West St, Los Angeles, CA 90001" +275417,Bose SoundSport Headphones,1,99.99,10/12/19 09:14,"978 Hill St, Dallas, TX 75001" +275418,34in Ultrawide Monitor,1,379.99,10/31/19 09:49,"128 River St, New York City, NY 10001" +275419,AAA Batteries (4-pack),1,2.99,10/02/19 21:43,"870 8th St, San Francisco, CA 94016" +275420,USB-C Charging Cable,1,11.95,10/01/19 22:20,"998 2nd St, Portland, OR 97035" +275421,AA Batteries (4-pack),1,3.84,10/28/19 23:37,"533 Hill St, San Francisco, CA 94016" +275422,Bose SoundSport Headphones,1,99.99,10/29/19 23:29,"477 Lincoln St, San Francisco, CA 94016" +275423,Vareebadd Phone,1,400,10/07/19 12:49,"263 Church St, New York City, NY 10001" +275423,USB-C Charging Cable,1,11.95,10/07/19 12:49,"263 Church St, New York City, NY 10001" +275424,Apple Airpods Headphones,1,150,10/20/19 12:51,"386 2nd St, New York City, NY 10001" +275425,Wired Headphones,1,11.99,10/15/19 06:56,"834 Wilson St, Seattle, WA 98101" +275426,Bose SoundSport Headphones,1,99.99,10/11/19 00:12,"97 12th St, Boston, MA 02215" +275427,AAA Batteries (4-pack),1,2.99,10/25/19 19:30,"892 South St, San Francisco, CA 94016" +275428,Wired Headphones,1,11.99,10/08/19 23:30,"933 Jackson St, Los Angeles, CA 90001" +275429,USB-C Charging Cable,1,11.95,10/04/19 10:24,"583 Washington St, Boston, MA 02215" +275430,USB-C Charging Cable,1,11.95,10/30/19 16:52,"102 9th St, San Francisco, CA 94016" +275431,AAA Batteries (4-pack),1,2.99,10/16/19 11:49,"935 5th St, Atlanta, GA 30301" +275432,Lightning Charging Cable,1,14.95,10/20/19 11:23,"778 Lake St, Portland, OR 97035" +275433,27in 4K Gaming Monitor,1,389.99,10/16/19 14:41,"843 Adams St, Portland, ME 04101" +275434,Wired Headphones,1,11.99,10/14/19 14:03,"944 5th St, Los Angeles, CA 90001" +275435,iPhone,1,700,10/19/19 18:53,"273 Highland St, New York City, NY 10001" +275436,Lightning Charging Cable,1,14.95,10/29/19 18:57,"547 Ridge St, Atlanta, GA 30301" +275437,27in 4K Gaming Monitor,1,389.99,10/08/19 02:30,"498 Washington St, Austin, TX 73301" +275438,Lightning Charging Cable,1,14.95,10/23/19 14:10,"73 Jackson St, Boston, MA 02215" +275439,Flatscreen TV,1,300,10/18/19 18:46,"21 Meadow St, Seattle, WA 98101" +275440,Lightning Charging Cable,1,14.95,10/07/19 13:38,"30 South St, Los Angeles, CA 90001" +275441,Wired Headphones,1,11.99,10/29/19 10:34,"157 Chestnut St, San Francisco, CA 94016" +275442,Google Phone,1,600,10/13/19 18:43,"64 Cherry St, Seattle, WA 98101" +275443,Apple Airpods Headphones,1,150,10/31/19 17:47,"220 Park St, Boston, MA 02215" +275444,Google Phone,1,600,10/11/19 12:15,"216 Jefferson St, Los Angeles, CA 90001" +275445,AA Batteries (4-pack),3,3.84,10/24/19 20:06,"52 Ridge St, New York City, NY 10001" +275446,USB-C Charging Cable,1,11.95,10/25/19 14:35,"78 Center St, Austin, TX 73301" +275447,Bose SoundSport Headphones,1,99.99,10/24/19 06:41,"232 Cherry St, Portland, OR 97035" +275448,Apple Airpods Headphones,1,150,10/04/19 17:13,"989 Sunset St, San Francisco, CA 94016" +275449,USB-C Charging Cable,1,11.95,10/13/19 13:37,"511 Washington St, San Francisco, CA 94016" +275450,AA Batteries (4-pack),1,3.84,10/30/19 13:25,"83 Chestnut St, Dallas, TX 75001" +275451,Lightning Charging Cable,1,14.95,10/09/19 19:30,"596 13th St, Los Angeles, CA 90001" +275452,Apple Airpods Headphones,1,150,10/27/19 13:11,"840 Chestnut St, Portland, ME 04101" +275453,Lightning Charging Cable,1,14.95,10/30/19 09:20,"314 Sunset St, San Francisco, CA 94016" +275454,Apple Airpods Headphones,1,150,10/08/19 16:51,"664 Chestnut St, Atlanta, GA 30301" +275455,Google Phone,1,600,10/09/19 12:49,"579 2nd St, Los Angeles, CA 90001" +275456,Macbook Pro Laptop,1,1700,10/17/19 00:11,"976 5th St, Boston, MA 02215" +275457,Apple Airpods Headphones,1,150,10/25/19 12:54,"79 10th St, New York City, NY 10001" +275458,USB-C Charging Cable,1,11.95,10/10/19 17:12,"213 9th St, San Francisco, CA 94016" +275459,Lightning Charging Cable,2,14.95,10/10/19 17:57,"101 11th St, Seattle, WA 98101" +275460,Lightning Charging Cable,1,14.95,10/24/19 10:14,"823 North St, Los Angeles, CA 90001" +275461,ThinkPad Laptop,1,999.99,10/12/19 18:13,"585 Pine St, New York City, NY 10001" +275462,Wired Headphones,1,11.99,10/27/19 06:58,"110 14th St, San Francisco, CA 94016" +275463,27in 4K Gaming Monitor,1,389.99,10/07/19 13:52,"292 7th St, Austin, TX 73301" +275464,USB-C Charging Cable,1,11.95,10/12/19 12:38,"701 River St, Boston, MA 02215" +275465,34in Ultrawide Monitor,1,379.99,10/08/19 19:43,"400 Johnson St, San Francisco, CA 94016" +275466,Wired Headphones,1,11.99,10/19/19 10:48,"651 1st St, Boston, MA 02215" +275467,Apple Airpods Headphones,1,150,10/31/19 08:12,"963 Adams St, New York City, NY 10001" +275468,Google Phone,1,600,10/01/19 14:01,"208 Ridge St, Seattle, WA 98101" +275469,USB-C Charging Cable,1,11.95,10/23/19 13:23,"943 Madison St, New York City, NY 10001" +275470,Macbook Pro Laptop,1,1700,10/11/19 20:57,"549 10th St, Boston, MA 02215" +275471,Wired Headphones,1,11.99,10/02/19 20:21,"94 12th St, Atlanta, GA 30301" +275472,USB-C Charging Cable,1,11.95,10/09/19 13:06,"975 Lakeview St, San Francisco, CA 94016" +275473,AAA Batteries (4-pack),1,2.99,10/13/19 10:33,"874 West St, New York City, NY 10001" +275474,USB-C Charging Cable,1,11.95,10/01/19 23:06,"72 Cedar St, Los Angeles, CA 90001" +275475,Apple Airpods Headphones,1,150,10/05/19 20:33,"760 Ridge St, Atlanta, GA 30301" +275476,Wired Headphones,1,11.99,10/19/19 11:12,"467 Jackson St, Portland, OR 97035" +275477,LG Dryer,1,600.0,10/25/19 13:32,"221 Spruce St, Los Angeles, CA 90001" +275478,USB-C Charging Cable,1,11.95,10/26/19 18:25,"428 Dogwood St, San Francisco, CA 94016" +275479,Wired Headphones,1,11.99,10/25/19 23:45,"413 Cedar St, Los Angeles, CA 90001" +275480,USB-C Charging Cable,1,11.95,10/17/19 09:53,"301 Johnson St, Dallas, TX 75001" +275481,USB-C Charging Cable,1,11.95,10/06/19 16:43,"940 12th St, Atlanta, GA 30301" +275482,AA Batteries (4-pack),1,3.84,10/30/19 12:25,"332 Maple St, Los Angeles, CA 90001" +275483,27in FHD Monitor,1,149.99,10/16/19 22:42,"25 Walnut St, New York City, NY 10001" +275484,AAA Batteries (4-pack),1,2.99,10/05/19 14:37,"689 Park St, Dallas, TX 75001" +275485,Lightning Charging Cable,1,14.95,10/04/19 10:38,"427 Pine St, Boston, MA 02215" +275486,USB-C Charging Cable,2,11.95,10/25/19 19:46,"468 Madison St, Dallas, TX 75001" +275487,34in Ultrawide Monitor,1,379.99,10/30/19 14:46,"205 Washington St, Dallas, TX 75001" +275488,AA Batteries (4-pack),1,3.84,10/04/19 14:16,"628 Center St, Seattle, WA 98101" +275489,Wired Headphones,1,11.99,10/20/19 22:05,"534 Ridge St, Seattle, WA 98101" +275490,Apple Airpods Headphones,1,150,10/01/19 18:53,"377 Lakeview St, San Francisco, CA 94016" +275491,AAA Batteries (4-pack),3,2.99,10/03/19 18:50,"895 Adams St, Los Angeles, CA 90001" +275492,ThinkPad Laptop,1,999.99,10/10/19 20:50,"516 Cedar St, Atlanta, GA 30301" +275493,USB-C Charging Cable,1,11.95,10/18/19 17:35,"770 Cedar St, Los Angeles, CA 90001" +275494,Google Phone,1,600,10/05/19 02:38,"573 6th St, Atlanta, GA 30301" +275495,Apple Airpods Headphones,1,150,10/31/19 17:01,"104 Hickory St, San Francisco, CA 94016" +275496,AA Batteries (4-pack),1,3.84,10/19/19 19:52,"324 Chestnut St, Seattle, WA 98101" +275497,AAA Batteries (4-pack),4,2.99,10/13/19 10:54,"849 4th St, Austin, TX 73301" +275498,Apple Airpods Headphones,1,150,10/23/19 21:15,"543 South St, Los Angeles, CA 90001" +275499,Apple Airpods Headphones,1,150,10/06/19 09:59,"259 West St, Portland, OR 97035" +275500,34in Ultrawide Monitor,1,379.99,10/11/19 20:42,"667 Dogwood St, Los Angeles, CA 90001" +275501,Apple Airpods Headphones,1,150,10/27/19 11:18,"505 Chestnut St, San Francisco, CA 94016" +275502,AAA Batteries (4-pack),1,2.99,10/24/19 16:20,"396 14th St, San Francisco, CA 94016" +275502,AA Batteries (4-pack),2,3.84,10/24/19 16:20,"396 14th St, San Francisco, CA 94016" +275503,AA Batteries (4-pack),1,3.84,10/27/19 10:16,"33 Highland St, Seattle, WA 98101" +275504,ThinkPad Laptop,1,999.99,10/13/19 09:48,"718 5th St, New York City, NY 10001" +275505,Wired Headphones,1,11.99,10/20/19 01:44,"857 Pine St, Dallas, TX 75001" +275506,USB-C Charging Cable,1,11.95,10/29/19 15:23,"595 Lincoln St, Dallas, TX 75001" +275507,Apple Airpods Headphones,1,150,10/22/19 14:04,"600 14th St, San Francisco, CA 94016" +275508,Macbook Pro Laptop,1,1700,10/04/19 22:36,"778 Spruce St, San Francisco, CA 94016" +275509,AA Batteries (4-pack),1,3.84,10/22/19 15:39,"493 Madison St, New York City, NY 10001" +275510,USB-C Charging Cable,1,11.95,10/18/19 17:46,"59 North St, New York City, NY 10001" +275511,Lightning Charging Cable,1,14.95,10/17/19 17:34,"741 Center St, Austin, TX 73301" +275511,Wired Headphones,1,11.99,10/17/19 17:34,"741 Center St, Austin, TX 73301" +275512,Lightning Charging Cable,1,14.95,10/09/19 22:37,"780 Lake St, Boston, MA 02215" +275512,ThinkPad Laptop,1,999.99,10/09/19 22:37,"780 Lake St, Boston, MA 02215" +275513,27in FHD Monitor,1,149.99,10/28/19 17:49,"245 Washington St, San Francisco, CA 94016" +275514,Apple Airpods Headphones,1,150,10/14/19 18:53,"668 Cherry St, Los Angeles, CA 90001" +275515,AAA Batteries (4-pack),1,2.99,10/30/19 18:14,"704 9th St, Los Angeles, CA 90001" +275516,Apple Airpods Headphones,1,150,10/13/19 14:47,"645 Main St, San Francisco, CA 94016" +275517,LG Washing Machine,1,600.0,10/30/19 22:44,"854 Park St, San Francisco, CA 94016" +275518,AAA Batteries (4-pack),1,2.99,10/15/19 00:51,"780 9th St, San Francisco, CA 94016" +275519,AAA Batteries (4-pack),1,2.99,10/31/19 05:38,"387 14th St, Austin, TX 73301" +275520,AA Batteries (4-pack),1,3.84,10/20/19 23:57,"875 Chestnut St, Dallas, TX 75001" +275521,27in FHD Monitor,1,149.99,10/23/19 11:02,"898 14th St, Boston, MA 02215" +275522,USB-C Charging Cable,1,11.95,10/31/19 14:35,"269 9th St, Los Angeles, CA 90001" +275523,Wired Headphones,1,11.99,10/19/19 21:31,"118 Wilson St, New York City, NY 10001" +275524,20in Monitor,1,109.99,10/24/19 10:02,"284 Sunset St, Los Angeles, CA 90001" +275525,Bose SoundSport Headphones,1,99.99,10/19/19 22:01,"703 Forest St, Los Angeles, CA 90001" +275526,USB-C Charging Cable,1,11.95,10/10/19 11:20,"563 River St, Boston, MA 02215" +275527,Bose SoundSport Headphones,1,99.99,10/06/19 17:09,"629 Lake St, Dallas, TX 75001" +275528,Wired Headphones,1,11.99,10/08/19 17:29,"896 Cedar St, Atlanta, GA 30301" +275529,Lightning Charging Cable,1,14.95,10/01/19 22:50,"453 14th St, Dallas, TX 75001" +275530,USB-C Charging Cable,1,11.95,10/20/19 15:44,"604 9th St, Atlanta, GA 30301" +275531,USB-C Charging Cable,1,11.95,10/23/19 02:35,"693 Hickory St, San Francisco, CA 94016" +275532,AAA Batteries (4-pack),2,2.99,10/03/19 21:31,"729 Lakeview St, Atlanta, GA 30301" +275533,27in FHD Monitor,1,149.99,10/13/19 10:30,"467 8th St, Boston, MA 02215" +275534,27in 4K Gaming Monitor,1,389.99,10/26/19 19:08,"417 10th St, Seattle, WA 98101" +275535,USB-C Charging Cable,1,11.95,10/01/19 15:19,"268 Hill St, Atlanta, GA 30301" +275536,27in 4K Gaming Monitor,1,389.99,10/09/19 14:12,"7 Main St, New York City, NY 10001" +275537,iPhone,1,700,10/26/19 09:30,"148 9th St, Los Angeles, CA 90001" +275538,27in FHD Monitor,1,149.99,10/22/19 12:20,"330 2nd St, Portland, OR 97035" +275539,34in Ultrawide Monitor,1,379.99,10/03/19 17:24,"3 Lake St, Los Angeles, CA 90001" +275540,Lightning Charging Cable,1,14.95,10/14/19 04:13,"354 Walnut St, Boston, MA 02215" +275541,Bose SoundSport Headphones,1,99.99,10/20/19 20:25,"780 Meadow St, Boston, MA 02215" +275542,Lightning Charging Cable,1,14.95,10/12/19 09:18,"572 1st St, Boston, MA 02215" +275543,Lightning Charging Cable,1,14.95,10/26/19 10:15,"806 2nd St, Boston, MA 02215" +275544,USB-C Charging Cable,1,11.95,10/03/19 22:34,"50 Jefferson St, Boston, MA 02215" +275545,Google Phone,1,600,10/02/19 14:40,"250 Jefferson St, New York City, NY 10001" +275545,USB-C Charging Cable,1,11.95,10/02/19 14:40,"250 Jefferson St, New York City, NY 10001" +275546,AAA Batteries (4-pack),1,2.99,10/07/19 19:42,"361 North St, Dallas, TX 75001" +275547,Wired Headphones,1,11.99,10/22/19 19:43,"63 Maple St, New York City, NY 10001" +275548,27in FHD Monitor,1,149.99,10/05/19 17:05,"79 Center St, San Francisco, CA 94016" +275549,AA Batteries (4-pack),1,3.84,10/16/19 12:55,"420 6th St, Los Angeles, CA 90001" +275550,AA Batteries (4-pack),1,3.84,10/04/19 18:12,"860 Wilson St, Boston, MA 02215" +275551,AA Batteries (4-pack),1,3.84,10/03/19 15:34,"490 12th St, Portland, OR 97035" +275552,Vareebadd Phone,1,400,10/08/19 14:10,"814 6th St, San Francisco, CA 94016" +275552,Wired Headphones,1,11.99,10/08/19 14:10,"814 6th St, San Francisco, CA 94016" +275553,AA Batteries (4-pack),2,3.84,10/15/19 20:30,"363 River St, New York City, NY 10001" +275554,AAA Batteries (4-pack),2,2.99,10/17/19 11:31,"358 Elm St, Dallas, TX 75001" +275555,Wired Headphones,1,11.99,10/25/19 09:52,"528 Spruce St, Seattle, WA 98101" +275556,Wired Headphones,1,11.99,10/12/19 16:16,"371 Cherry St, San Francisco, CA 94016" +275557,AAA Batteries (4-pack),1,2.99,10/20/19 07:44,"313 North St, Los Angeles, CA 90001" +275558,27in FHD Monitor,1,149.99,10/25/19 23:55,"625 Center St, Atlanta, GA 30301" +275559,USB-C Charging Cable,1,11.95,10/31/19 13:36,"531 Willow St, San Francisco, CA 94016" +275560,Macbook Pro Laptop,1,1700,10/22/19 07:21,"321 2nd St, Seattle, WA 98101" +275561,27in FHD Monitor,1,149.99,10/12/19 15:01,"877 Madison St, Seattle, WA 98101" +275562,AA Batteries (4-pack),2,3.84,10/22/19 13:12,"795 Adams St, Los Angeles, CA 90001" +275563,ThinkPad Laptop,1,999.99,10/24/19 21:13,"961 Cherry St, Boston, MA 02215" +275564,27in 4K Gaming Monitor,1,389.99,10/15/19 12:18,"472 Forest St, Atlanta, GA 30301" +275565,Wired Headphones,1,11.99,10/26/19 17:34,"532 Pine St, New York City, NY 10001" +275566,AAA Batteries (4-pack),1,2.99,10/29/19 20:39,"343 Cherry St, Portland, ME 04101" +275567,Google Phone,1,600,10/02/19 08:53,"656 Madison St, Boston, MA 02215" +275567,USB-C Charging Cable,1,11.95,10/02/19 08:53,"656 Madison St, Boston, MA 02215" +275568,Apple Airpods Headphones,1,150,10/19/19 14:05,"549 11th St, Los Angeles, CA 90001" +275569,Lightning Charging Cable,1,14.95,10/25/19 21:05,"177 Jefferson St, Boston, MA 02215" +275570,Google Phone,1,600,10/15/19 14:25,"975 Lakeview St, San Francisco, CA 94016" +275571,27in FHD Monitor,1,149.99,10/04/19 22:14,"881 Lincoln St, Atlanta, GA 30301" +275572,Lightning Charging Cable,1,14.95,10/07/19 17:37,"873 1st St, Dallas, TX 75001" +275573,Lightning Charging Cable,1,14.95,10/15/19 21:32,"879 11th St, San Francisco, CA 94016" +275574,34in Ultrawide Monitor,1,379.99,10/10/19 00:25,"602 West St, New York City, NY 10001" +275575,AAA Batteries (4-pack),1,2.99,10/15/19 20:37,"922 West St, San Francisco, CA 94016" +275575,Lightning Charging Cable,1,14.95,10/15/19 20:37,"922 West St, San Francisco, CA 94016" +275576,USB-C Charging Cable,1,11.95,10/01/19 23:57,"511 1st St, San Francisco, CA 94016" +275577,Flatscreen TV,1,300,10/14/19 17:22,"779 Highland St, Seattle, WA 98101" +275578,Lightning Charging Cable,1,14.95,10/26/19 23:04,"966 Main St, Dallas, TX 75001" +275579,Bose SoundSport Headphones,1,99.99,10/24/19 11:10,"440 Madison St, Seattle, WA 98101" +275580,Wired Headphones,1,11.99,10/14/19 06:43,"380 Jefferson St, Los Angeles, CA 90001" +275581,27in 4K Gaming Monitor,1,389.99,10/24/19 22:17,"187 West St, San Francisco, CA 94016" +275582,AAA Batteries (4-pack),1,2.99,10/23/19 02:12,"423 Adams St, Austin, TX 73301" +275583,Bose SoundSport Headphones,1,99.99,10/22/19 09:31,"518 West St, Dallas, TX 75001" +275584,Lightning Charging Cable,1,14.95,10/03/19 18:44,"546 North St, San Francisco, CA 94016" +275585,Wired Headphones,1,11.99,10/27/19 20:12,"575 Highland St, New York City, NY 10001" +275586,Lightning Charging Cable,1,14.95,10/13/19 07:36,"921 Jefferson St, Boston, MA 02215" +275587,Apple Airpods Headphones,1,150,10/25/19 23:30,"615 Jackson St, San Francisco, CA 94016" +275588,Bose SoundSport Headphones,1,99.99,10/03/19 07:34,"662 Church St, Atlanta, GA 30301" +275589,Wired Headphones,1,11.99,10/11/19 12:54,"470 Maple St, Seattle, WA 98101" +275590,Bose SoundSport Headphones,1,99.99,10/03/19 18:19,"683 Main St, San Francisco, CA 94016" +275591,Apple Airpods Headphones,1,150,10/31/19 16:10,"424 Washington St, Atlanta, GA 30301" +275592,27in FHD Monitor,1,149.99,10/22/19 11:02,"201 Pine St, New York City, NY 10001" +275593,20in Monitor,1,109.99,10/10/19 16:42,"222 Pine St, San Francisco, CA 94016" +275594,USB-C Charging Cable,2,11.95,10/21/19 06:19,"101 South St, Atlanta, GA 30301" +275595,Wired Headphones,1,11.99,10/11/19 22:10,"721 Pine St, New York City, NY 10001" +275596,Macbook Pro Laptop,1,1700,10/22/19 21:06,"501 Hill St, San Francisco, CA 94016" +275597,Apple Airpods Headphones,1,150,10/01/19 12:46,"230 4th St, New York City, NY 10001" +275598,AAA Batteries (4-pack),2,2.99,10/24/19 23:47,"594 Wilson St, Los Angeles, CA 90001" +275599,27in 4K Gaming Monitor,1,389.99,10/11/19 15:18,"6 Adams St, Atlanta, GA 30301" +275600,iPhone,1,700,10/08/19 15:55,"539 4th St, Dallas, TX 75001" +275601,AAA Batteries (4-pack),1,2.99,10/16/19 14:05,"986 Cedar St, Atlanta, GA 30301" +275602,Lightning Charging Cable,1,14.95,10/11/19 17:59,"782 Hickory St, Portland, OR 97035" +275603,USB-C Charging Cable,1,11.95,10/18/19 19:34,"66 4th St, Austin, TX 73301" +275604,Wired Headphones,2,11.99,10/10/19 22:23,"283 Church St, New York City, NY 10001" +275605,Lightning Charging Cable,1,14.95,10/30/19 11:41,"180 West St, Boston, MA 02215" +275606,Wired Headphones,1,11.99,10/09/19 17:51,"73 Hickory St, San Francisco, CA 94016" +275607,Wired Headphones,1,11.99,10/03/19 11:49,"46 Lakeview St, San Francisco, CA 94016" +275608,Flatscreen TV,1,300,10/27/19 15:40,"282 Meadow St, New York City, NY 10001" +275609,Lightning Charging Cable,1,14.95,10/07/19 18:48,"428 Meadow St, Boston, MA 02215" +275610,Lightning Charging Cable,1,14.95,10/05/19 12:44,"835 Lake St, San Francisco, CA 94016" +275611,Bose SoundSport Headphones,1,99.99,10/01/19 12:58,"670 Main St, Boston, MA 02215" +275612,Wired Headphones,1,11.99,10/14/19 11:26,"430 Meadow St, Seattle, WA 98101" +275613,AAA Batteries (4-pack),1,2.99,10/15/19 10:15,"581 Center St, Atlanta, GA 30301" +275614,Vareebadd Phone,1,400,10/16/19 13:55,"604 North St, Los Angeles, CA 90001" +275614,USB-C Charging Cable,1,11.95,10/16/19 13:55,"604 North St, Los Angeles, CA 90001" +275615,AAA Batteries (4-pack),1,2.99,10/29/19 15:00,"243 1st St, Boston, MA 02215" +275616,27in FHD Monitor,1,149.99,10/31/19 07:11,"910 Church St, San Francisco, CA 94016" +275617,Apple Airpods Headphones,1,150,10/22/19 06:44,"977 West St, San Francisco, CA 94016" +275618,Apple Airpods Headphones,1,150,10/06/19 18:57,"562 Willow St, New York City, NY 10001" +275619,Flatscreen TV,1,300,10/29/19 18:43,"31 6th St, Seattle, WA 98101" +275620,USB-C Charging Cable,1,11.95,10/15/19 19:48,"664 8th St, Boston, MA 02215" +275621,USB-C Charging Cable,1,11.95,10/24/19 08:13,"120 Adams St, Los Angeles, CA 90001" +275622,Apple Airpods Headphones,1,150,10/30/19 12:01,"967 Elm St, Los Angeles, CA 90001" +275623,AAA Batteries (4-pack),1,2.99,10/12/19 13:46,"751 North St, San Francisco, CA 94016" +275624,27in 4K Gaming Monitor,1,389.99,10/16/19 20:13,"761 10th St, New York City, NY 10001" +275625,USB-C Charging Cable,1,11.95,10/22/19 09:03,"481 9th St, San Francisco, CA 94016" +275626,34in Ultrawide Monitor,1,379.99,10/22/19 22:54,"966 Wilson St, Boston, MA 02215" +275627,Apple Airpods Headphones,1,150,10/27/19 10:11,"975 11th St, Los Angeles, CA 90001" +275628,Wired Headphones,1,11.99,10/19/19 22:06,"428 Park St, San Francisco, CA 94016" +275629,AAA Batteries (4-pack),1,2.99,10/30/19 14:57,"5 8th St, San Francisco, CA 94016" +275630,27in 4K Gaming Monitor,1,389.99,10/02/19 12:07,"267 Hickory St, Boston, MA 02215" +275631,AAA Batteries (4-pack),2,2.99,10/25/19 17:27,"292 Sunset St, Boston, MA 02215" +275632,Lightning Charging Cable,1,14.95,10/26/19 17:20,"645 Lakeview St, San Francisco, CA 94016" +275633,Lightning Charging Cable,1,14.95,10/06/19 14:57,"730 Highland St, San Francisco, CA 94016" +275634,Apple Airpods Headphones,1,150,10/05/19 18:20,"519 1st St, Seattle, WA 98101" +275635,27in 4K Gaming Monitor,1,389.99,10/18/19 15:15,"502 9th St, Austin, TX 73301" +275636,Wired Headphones,1,11.99,10/23/19 14:41,"330 Wilson St, Atlanta, GA 30301" +275637,27in FHD Monitor,1,149.99,10/19/19 21:07,"670 Spruce St, Portland, OR 97035" +275638,27in 4K Gaming Monitor,1,389.99,10/17/19 04:06,"57 West St, Austin, TX 73301" +275639,ThinkPad Laptop,1,999.99,10/14/19 17:16,"641 5th St, San Francisco, CA 94016" +275640,27in FHD Monitor,1,149.99,10/21/19 09:52,"440 Willow St, Boston, MA 02215" +275641,Flatscreen TV,1,300,10/30/19 17:09,"863 Meadow St, New York City, NY 10001" +275642,34in Ultrawide Monitor,1,379.99,10/12/19 11:30,"818 4th St, New York City, NY 10001" +275643,AA Batteries (4-pack),2,3.84,10/21/19 19:35,"665 South St, Dallas, TX 75001" +275644,Apple Airpods Headphones,1,150,10/13/19 13:31,"655 10th St, San Francisco, CA 94016" +275645,AAA Batteries (4-pack),2,2.99,10/15/19 22:11,"803 14th St, Los Angeles, CA 90001" +275646,Lightning Charging Cable,2,14.95,10/22/19 14:15,"864 Highland St, New York City, NY 10001" +275647,USB-C Charging Cable,2,11.95,10/30/19 17:47,"347 Main St, Atlanta, GA 30301" +275648,AA Batteries (4-pack),1,3.84,10/22/19 07:45,"940 2nd St, Los Angeles, CA 90001" +275649,Apple Airpods Headphones,1,150,10/01/19 19:02,"723 River St, San Francisco, CA 94016" +275650,20in Monitor,1,109.99,10/11/19 21:15,"85 10th St, Atlanta, GA 30301" +275651,USB-C Charging Cable,1,11.95,10/14/19 15:14,"807 South St, Boston, MA 02215" +275652,Lightning Charging Cable,1,14.95,10/29/19 13:30,"446 Church St, Seattle, WA 98101" +275653,USB-C Charging Cable,1,11.95,10/09/19 12:15,"694 Jefferson St, New York City, NY 10001" +275654,27in FHD Monitor,1,149.99,10/28/19 15:30,"653 Hickory St, Atlanta, GA 30301" +275655,iPhone,1,700,10/29/19 10:37,"202 9th St, Atlanta, GA 30301" +275656,Lightning Charging Cable,1,14.95,10/20/19 14:20,"450 7th St, Seattle, WA 98101" +275657,Macbook Pro Laptop,1,1700,10/16/19 15:14,"13 Sunset St, San Francisco, CA 94016" +275658,Apple Airpods Headphones,1,150,10/23/19 22:14,"519 South St, San Francisco, CA 94016" +275659,27in 4K Gaming Monitor,1,389.99,10/18/19 00:07,"744 Meadow St, Los Angeles, CA 90001" +275660,ThinkPad Laptop,1,999.99,10/26/19 11:21,"957 Jackson St, Seattle, WA 98101" +275661,Lightning Charging Cable,1,14.95,10/26/19 22:41,"594 Lincoln St, Los Angeles, CA 90001" +275662,Bose SoundSport Headphones,1,99.99,10/09/19 06:22,"238 Cedar St, Austin, TX 73301" +275663,AA Batteries (4-pack),1,3.84,10/03/19 13:17,"850 13th St, Los Angeles, CA 90001" +275664,AAA Batteries (4-pack),1,2.99,10/09/19 21:19,"812 Willow St, San Francisco, CA 94016" +275665,Flatscreen TV,1,300,10/15/19 11:30,"115 Lake St, Atlanta, GA 30301" +275666,Lightning Charging Cable,1,14.95,10/28/19 20:45,"336 11th St, Dallas, TX 75001" +275667,34in Ultrawide Monitor,1,379.99,10/23/19 19:34,"508 Hill St, Portland, OR 97035" +275668,LG Washing Machine,1,600.0,10/04/19 13:53,"244 1st St, Atlanta, GA 30301" +275669,iPhone,1,700,10/05/19 13:12,"162 Cherry St, New York City, NY 10001" +275670,AAA Batteries (4-pack),2,2.99,10/02/19 15:03,"643 Johnson St, Los Angeles, CA 90001" +275671,Wired Headphones,1,11.99,10/27/19 11:52,"664 River St, Atlanta, GA 30301" +275672,LG Washing Machine,1,600.0,10/04/19 13:30,"630 River St, Dallas, TX 75001" +275673,AAA Batteries (4-pack),1,2.99,10/07/19 15:05,"943 Sunset St, New York City, NY 10001" +275674,Bose SoundSport Headphones,1,99.99,10/09/19 18:35,"147 South St, San Francisco, CA 94016" +275675,Lightning Charging Cable,1,14.95,10/22/19 20:24,"153 6th St, Boston, MA 02215" +275676,27in 4K Gaming Monitor,1,389.99,10/29/19 22:28,"467 Lincoln St, Atlanta, GA 30301" +275677,AA Batteries (4-pack),1,3.84,10/16/19 14:27,"988 South St, Los Angeles, CA 90001" +275678,USB-C Charging Cable,1,11.95,10/13/19 13:17,"403 12th St, Boston, MA 02215" +275679,Apple Airpods Headphones,1,150,10/21/19 19:53,"283 Highland St, San Francisco, CA 94016" +275680,AA Batteries (4-pack),2,3.84,10/14/19 08:40,"233 Ridge St, Dallas, TX 75001" +275681,Lightning Charging Cable,1,14.95,10/18/19 05:45,"127 Maple St, San Francisco, CA 94016" +275682,AAA Batteries (4-pack),1,2.99,10/29/19 07:23,"812 Hickory St, San Francisco, CA 94016" +275683,Bose SoundSport Headphones,1,99.99,10/02/19 21:59,"192 Dogwood St, Los Angeles, CA 90001" +275684,Lightning Charging Cable,2,14.95,10/13/19 17:17,"991 1st St, San Francisco, CA 94016" +275685,Bose SoundSport Headphones,1,99.99,10/02/19 12:26,"195 13th St, San Francisco, CA 94016" +275686,AA Batteries (4-pack),1,3.84,10/09/19 11:33,"321 11th St, Seattle, WA 98101" +275687,20in Monitor,1,109.99,10/26/19 17:54,"816 8th St, San Francisco, CA 94016" +275688,AA Batteries (4-pack),1,3.84,10/20/19 14:49,"925 Highland St, New York City, NY 10001" +275689,Wired Headphones,2,11.99,10/31/19 12:34,"547 9th St, New York City, NY 10001" +275690,AAA Batteries (4-pack),2,2.99,10/16/19 14:47,"877 Lakeview St, Boston, MA 02215" +275690,AA Batteries (4-pack),1,3.84,10/16/19 14:47,"877 Lakeview St, Boston, MA 02215" +275691,Wired Headphones,1,11.99,10/04/19 20:10,"953 Sunset St, San Francisco, CA 94016" +275692,AA Batteries (4-pack),2,3.84,10/23/19 10:52,"880 Johnson St, New York City, NY 10001" +275693,34in Ultrawide Monitor,1,379.99,10/11/19 09:27,"147 8th St, Los Angeles, CA 90001" +275694,iPhone,1,700,10/10/19 09:40,"47 North St, New York City, NY 10001" +275694,Lightning Charging Cable,1,14.95,10/10/19 09:40,"47 North St, New York City, NY 10001" +275695,AA Batteries (4-pack),1,3.84,10/06/19 13:45,"554 Church St, Seattle, WA 98101" +275696,Wired Headphones,1,11.99,10/18/19 10:05,"10 Johnson St, San Francisco, CA 94016" +275697,Lightning Charging Cable,1,14.95,10/31/19 16:49,"845 Sunset St, Portland, ME 04101" +275698,ThinkPad Laptop,1,999.99,10/08/19 21:17,"711 Church St, New York City, NY 10001" +275699,Bose SoundSport Headphones,1,99.99,10/23/19 09:38,"789 9th St, New York City, NY 10001" +275700,Google Phone,1,600,10/24/19 16:55,"115 Main St, Los Angeles, CA 90001" +275701,Lightning Charging Cable,1,14.95,10/22/19 14:14,"28 Cedar St, New York City, NY 10001" +275702,34in Ultrawide Monitor,1,379.99,10/16/19 16:59,"609 Dogwood St, Boston, MA 02215" +275703,ThinkPad Laptop,1,999.99,10/26/19 13:49,"762 Willow St, San Francisco, CA 94016" +275704,20in Monitor,1,109.99,10/17/19 20:45,"931 8th St, New York City, NY 10001" +275705,ThinkPad Laptop,1,999.99,10/27/19 17:08,"429 Meadow St, Atlanta, GA 30301" +275706,Wired Headphones,2,11.99,10/03/19 23:32,"816 River St, Atlanta, GA 30301" +275707,Bose SoundSport Headphones,1,99.99,10/21/19 21:32,"390 Cedar St, Seattle, WA 98101" +275708,Wired Headphones,1,11.99,10/17/19 20:12,"864 Wilson St, San Francisco, CA 94016" +275709,34in Ultrawide Monitor,1,379.99,10/22/19 07:32,"828 12th St, New York City, NY 10001" +275710,AA Batteries (4-pack),1,3.84,10/06/19 22:42,"739 10th St, Dallas, TX 75001" +275711,USB-C Charging Cable,2,11.95,10/12/19 17:14,"247 Walnut St, San Francisco, CA 94016" +275712,AA Batteries (4-pack),2,3.84,10/01/19 16:03,"577 North St, New York City, NY 10001" +275712,Flatscreen TV,1,300,10/01/19 16:03,"577 North St, New York City, NY 10001" +275713,Apple Airpods Headphones,1,150,10/22/19 07:44,"535 River St, Seattle, WA 98101" +275714,AA Batteries (4-pack),1,3.84,10/07/19 13:20,"955 Jackson St, San Francisco, CA 94016" +275715,Wired Headphones,1,11.99,10/06/19 16:07,"707 13th St, Boston, MA 02215" +275716,27in FHD Monitor,1,149.99,10/20/19 02:51,"88 9th St, Boston, MA 02215" +275717,USB-C Charging Cable,1,11.95,10/24/19 02:59,"830 Park St, Portland, OR 97035" +275718,AAA Batteries (4-pack),1,2.99,10/14/19 12:14,"474 Hickory St, Los Angeles, CA 90001" +275719,Lightning Charging Cable,1,14.95,10/04/19 02:59,"631 8th St, San Francisco, CA 94016" +275720,USB-C Charging Cable,1,11.95,10/21/19 18:40,"757 Dogwood St, San Francisco, CA 94016" +275721,Lightning Charging Cable,1,14.95,10/12/19 23:02,"270 14th St, Seattle, WA 98101" +275722,Bose SoundSport Headphones,1,99.99,10/20/19 20:11,"153 Cherry St, Seattle, WA 98101" +275723,Bose SoundSport Headphones,1,99.99,10/27/19 22:57,"853 Center St, San Francisco, CA 94016" +275724,Apple Airpods Headphones,1,150,10/06/19 20:03,"940 Hill St, Portland, OR 97035" +275725,AA Batteries (4-pack),3,3.84,10/12/19 08:14,"218 Elm St, Los Angeles, CA 90001" +275726,Macbook Pro Laptop,1,1700,10/04/19 12:26,"315 Sunset St, Los Angeles, CA 90001" +275727,Wired Headphones,1,11.99,10/04/19 21:24,"75 Adams St, Dallas, TX 75001" +275728,Lightning Charging Cable,1,14.95,10/10/19 11:06,"930 Main St, New York City, NY 10001" +275729,AA Batteries (4-pack),1,3.84,10/25/19 11:08,"999 Elm St, Boston, MA 02215" +275730,27in FHD Monitor,1,149.99,10/02/19 13:47,"280 River St, Portland, OR 97035" +275731,AAA Batteries (4-pack),1,2.99,10/05/19 21:59,"848 Elm St, Boston, MA 02215" +275732,Apple Airpods Headphones,1,150,10/22/19 09:41,"132 Hill St, Atlanta, GA 30301" +275733,AAA Batteries (4-pack),1,2.99,10/12/19 18:55,"760 13th St, Los Angeles, CA 90001" +275734,AAA Batteries (4-pack),1,2.99,10/16/19 18:21,"391 Lake St, Boston, MA 02215" +275735,Wired Headphones,1,11.99,10/30/19 03:48,"134 Center St, Atlanta, GA 30301" +275736,34in Ultrawide Monitor,1,379.99,10/27/19 02:52,"977 Lincoln St, Portland, OR 97035" +275737,Lightning Charging Cable,1,14.95,10/23/19 13:05,"161 7th St, San Francisco, CA 94016" +275738,AAA Batteries (4-pack),1,2.99,10/24/19 12:53,"870 Forest St, San Francisco, CA 94016" +275739,Bose SoundSport Headphones,1,99.99,10/18/19 21:42,"818 Maple St, Portland, OR 97035" +275740,AA Batteries (4-pack),1,3.84,10/31/19 17:58,"295 Lake St, Portland, OR 97035" +275741,USB-C Charging Cable,1,11.95,10/29/19 18:04,"636 1st St, Boston, MA 02215" +275742,Lightning Charging Cable,1,14.95,10/03/19 09:47,"853 1st St, Boston, MA 02215" +275743,Apple Airpods Headphones,1,150,10/08/19 17:33,"835 1st St, Austin, TX 73301" +275744,34in Ultrawide Monitor,1,379.99,10/04/19 23:17,"930 Lakeview St, Dallas, TX 75001" +275745,Wired Headphones,1,11.99,10/16/19 21:21,"915 11th St, Atlanta, GA 30301" +275746,AAA Batteries (4-pack),1,2.99,10/28/19 05:11,"333 South St, Atlanta, GA 30301" +275747,Bose SoundSport Headphones,1,99.99,10/17/19 00:09,"419 Adams St, New York City, NY 10001" +275748,Apple Airpods Headphones,1,150,10/29/19 08:39,"972 4th St, Portland, OR 97035" +275749,Vareebadd Phone,1,400,10/11/19 14:56,"98 Dogwood St, Dallas, TX 75001" +275750,Wired Headphones,1,11.99,10/25/19 08:39,"582 North St, Los Angeles, CA 90001" +275751,AAA Batteries (4-pack),1,2.99,10/25/19 16:51,"502 Spruce St, San Francisco, CA 94016" +275752,Apple Airpods Headphones,1,150,10/20/19 11:08,"201 Chestnut St, Boston, MA 02215" +275753,Wired Headphones,2,11.99,10/16/19 23:35,"980 Washington St, San Francisco, CA 94016" +275754,Wired Headphones,2,11.99,10/04/19 15:18,"141 Lincoln St, San Francisco, CA 94016" +275755,27in FHD Monitor,1,149.99,10/17/19 07:04,"657 West St, San Francisco, CA 94016" +275756,Lightning Charging Cable,1,14.95,10/19/19 16:20,"701 Adams St, San Francisco, CA 94016" +275757,27in FHD Monitor,1,149.99,10/06/19 11:18,"593 Jackson St, New York City, NY 10001" +275758,Lightning Charging Cable,1,14.95,10/18/19 10:51,"935 9th St, Los Angeles, CA 90001" +275759,USB-C Charging Cable,1,11.95,10/20/19 19:40,"106 6th St, Los Angeles, CA 90001" +275760,Google Phone,1,600,10/16/19 19:41,"784 Dogwood St, Dallas, TX 75001" +,,,,, +275761,34in Ultrawide Monitor,1,379.99,10/22/19 02:47,"139 Lincoln St, San Francisco, CA 94016" +275762,Apple Airpods Headphones,1,150,10/02/19 00:35,"918 Lake St, San Francisco, CA 94016" +275763,AA Batteries (4-pack),1,3.84,10/12/19 13:27,"460 Main St, Portland, OR 97035" +275764,27in FHD Monitor,1,149.99,10/27/19 11:38,"381 1st St, New York City, NY 10001" +275765,Wired Headphones,1,11.99,10/25/19 10:32,"461 Lincoln St, Atlanta, GA 30301" +275766,Lightning Charging Cable,1,14.95,10/06/19 13:36,"764 7th St, Boston, MA 02215" +275767,Wired Headphones,1,11.99,10/17/19 23:13,"241 Adams St, Los Angeles, CA 90001" +275768,Lightning Charging Cable,1,14.95,10/13/19 12:20,"999 River St, Dallas, TX 75001" +275769,Bose SoundSport Headphones,1,99.99,10/09/19 18:20,"961 Pine St, Los Angeles, CA 90001" +275770,Lightning Charging Cable,1,14.95,10/05/19 13:40,"242 Park St, San Francisco, CA 94016" +275771,20in Monitor,2,109.99,10/16/19 11:12,"567 Spruce St, Boston, MA 02215" +275772,USB-C Charging Cable,1,11.95,10/28/19 06:08,"508 Lake St, Atlanta, GA 30301" +275773,Bose SoundSport Headphones,1,99.99,10/12/19 01:39,"156 Cedar St, San Francisco, CA 94016" +275774,iPhone,1,700,10/06/19 00:43,"803 Center St, San Francisco, CA 94016" +275774,Lightning Charging Cable,1,14.95,10/06/19 00:43,"803 Center St, San Francisco, CA 94016" +275774,Wired Headphones,1,11.99,10/06/19 00:43,"803 Center St, San Francisco, CA 94016" +275775,AAA Batteries (4-pack),1,2.99,10/31/19 10:39,"344 Cherry St, New York City, NY 10001" +275776,27in FHD Monitor,1,149.99,10/21/19 10:56,"214 Elm St, Dallas, TX 75001" +275777,USB-C Charging Cable,1,11.95,10/29/19 09:30,"160 6th St, San Francisco, CA 94016" +275778,AA Batteries (4-pack),3,3.84,10/20/19 10:36,"331 8th St, Boston, MA 02215" +275779,AA Batteries (4-pack),2,3.84,10/02/19 16:37,"990 14th St, San Francisco, CA 94016" +275780,AAA Batteries (4-pack),1,2.99,10/04/19 23:47,"783 Cherry St, Los Angeles, CA 90001" +275781,AAA Batteries (4-pack),2,2.99,10/16/19 17:44,"696 12th St, Boston, MA 02215" +275782,Bose SoundSport Headphones,1,99.99,10/20/19 06:42,"71 6th St, San Francisco, CA 94016" +275783,27in FHD Monitor,1,149.99,10/20/19 12:04,"164 13th St, San Francisco, CA 94016" +275784,Wired Headphones,1,11.99,10/21/19 18:14,"171 Spruce St, Dallas, TX 75001" +275785,AAA Batteries (4-pack),1,2.99,10/05/19 15:54,"381 Ridge St, Portland, OR 97035" +275786,iPhone,1,700,10/22/19 01:20,"670 Pine St, San Francisco, CA 94016" +275786,Lightning Charging Cable,1,14.95,10/22/19 01:20,"670 Pine St, San Francisco, CA 94016" +275787,AAA Batteries (4-pack),1,2.99,10/21/19 12:59,"620 Pine St, Los Angeles, CA 90001" +275788,Macbook Pro Laptop,1,1700,10/07/19 00:51,"862 7th St, Boston, MA 02215" +275789,27in FHD Monitor,1,149.99,10/15/19 03:47,"517 Highland St, Los Angeles, CA 90001" +275790,Apple Airpods Headphones,1,150,10/26/19 11:08,"310 5th St, Los Angeles, CA 90001" +275790,AAA Batteries (4-pack),1,2.99,10/26/19 11:08,"310 5th St, Los Angeles, CA 90001" +275791,USB-C Charging Cable,1,11.95,10/20/19 13:13,"542 Johnson St, San Francisco, CA 94016" +275792,Bose SoundSport Headphones,1,99.99,10/07/19 10:59,"116 Dogwood St, Los Angeles, CA 90001" +275793,AA Batteries (4-pack),1,3.84,10/11/19 16:07,"463 Elm St, Austin, TX 73301" +275794,Bose SoundSport Headphones,1,99.99,10/07/19 11:31,"364 6th St, Atlanta, GA 30301" +275795,AA Batteries (4-pack),1,3.84,10/25/19 19:19,"259 River St, Los Angeles, CA 90001" +275796,20in Monitor,1,109.99,10/14/19 00:27,"56 9th St, Los Angeles, CA 90001" +275796,AA Batteries (4-pack),1,3.84,10/14/19 00:27,"56 9th St, Los Angeles, CA 90001" +275797,AA Batteries (4-pack),2,3.84,10/24/19 17:59,"758 9th St, Dallas, TX 75001" +275798,Wired Headphones,1,11.99,10/19/19 15:31,"839 1st St, Dallas, TX 75001" +275799,Flatscreen TV,1,300,10/16/19 13:18,"720 West St, San Francisco, CA 94016" +275800,USB-C Charging Cable,1,11.95,10/24/19 17:30,"397 1st St, New York City, NY 10001" +275801,AA Batteries (4-pack),2,3.84,10/03/19 20:03,"32 13th St, Dallas, TX 75001" +275802,Wired Headphones,1,11.99,10/03/19 16:34,"341 West St, Austin, TX 73301" +275803,USB-C Charging Cable,1,11.95,10/06/19 19:19,"549 2nd St, Boston, MA 02215" +275804,Bose SoundSport Headphones,1,99.99,10/31/19 16:58,"424 14th St, San Francisco, CA 94016" +275805,27in 4K Gaming Monitor,1,389.99,10/05/19 15:25,"583 Meadow St, Portland, OR 97035" +275806,AA Batteries (4-pack),2,3.84,10/04/19 17:46,"697 8th St, New York City, NY 10001" +275807,Apple Airpods Headphones,1,150,10/02/19 12:03,"727 Cherry St, Dallas, TX 75001" +275808,Google Phone,1,600,10/09/19 01:52,"768 Highland St, San Francisco, CA 94016" +275809,Lightning Charging Cable,1,14.95,10/16/19 00:08,"205 Madison St, San Francisco, CA 94016" +275810,27in 4K Gaming Monitor,1,389.99,10/01/19 17:12,"467 12th St, Austin, TX 73301" +275811,Bose SoundSport Headphones,1,99.99,10/02/19 21:31,"392 Elm St, Los Angeles, CA 90001" +275812,Macbook Pro Laptop,1,1700,10/02/19 07:45,"545 14th St, San Francisco, CA 94016" +275813,Lightning Charging Cable,1,14.95,10/26/19 16:01,"113 11th St, New York City, NY 10001" +275814,27in FHD Monitor,1,149.99,10/22/19 12:21,"189 Lincoln St, Boston, MA 02215" +275815,Apple Airpods Headphones,1,150,10/23/19 08:28,"186 Sunset St, San Francisco, CA 94016" +275816,USB-C Charging Cable,1,11.95,10/13/19 11:22,"945 Lake St, Dallas, TX 75001" +275817,Apple Airpods Headphones,1,150,10/21/19 14:03,"930 Johnson St, Los Angeles, CA 90001" +275818,AAA Batteries (4-pack),3,2.99,10/01/19 13:46,"284 Sunset St, Los Angeles, CA 90001" +275819,USB-C Charging Cable,1,11.95,10/01/19 17:25,"29 Hickory St, Boston, MA 02215" +275820,AA Batteries (4-pack),1,3.84,10/20/19 22:19,"950 Cedar St, San Francisco, CA 94016" +275821,Wired Headphones,1,11.99,10/30/19 20:08,"469 Willow St, Los Angeles, CA 90001" +275822,34in Ultrawide Monitor,1,379.99,10/22/19 14:16,"948 Cherry St, San Francisco, CA 94016" +275823,Lightning Charging Cable,1,14.95,10/19/19 21:32,"417 Walnut St, Dallas, TX 75001" +275824,AA Batteries (4-pack),1,3.84,10/30/19 12:20,"797 9th St, San Francisco, CA 94016" +275825,Macbook Pro Laptop,1,1700,10/15/19 20:11,"178 12th St, Dallas, TX 75001" +275826,USB-C Charging Cable,2,11.95,10/08/19 12:24,"962 5th St, Los Angeles, CA 90001" +275827,USB-C Charging Cable,1,11.95,10/07/19 13:50,"43 Church St, San Francisco, CA 94016" +275828,AA Batteries (4-pack),1,3.84,10/20/19 06:58,"736 Lincoln St, Seattle, WA 98101" +275829,Bose SoundSport Headphones,1,99.99,10/20/19 11:32,"65 Dogwood St, New York City, NY 10001" +275830,USB-C Charging Cable,1,11.95,10/14/19 12:08,"445 Dogwood St, Los Angeles, CA 90001" +275831,Lightning Charging Cable,1,14.95,10/19/19 15:35,"934 Lincoln St, Boston, MA 02215" +275832,Lightning Charging Cable,1,14.95,10/31/19 00:27,"994 4th St, San Francisco, CA 94016" +275833,Lightning Charging Cable,1,14.95,10/17/19 13:25,"170 12th St, San Francisco, CA 94016" +275834,Wired Headphones,1,11.99,10/05/19 09:19,"34 8th St, Austin, TX 73301" +275835,Lightning Charging Cable,1,14.95,10/04/19 14:49,"962 14th St, New York City, NY 10001" +275836,Bose SoundSport Headphones,1,99.99,10/19/19 17:22,"495 Lincoln St, Dallas, TX 75001" +275837,Wired Headphones,1,11.99,10/27/19 23:24,"764 2nd St, San Francisco, CA 94016" +275838,Lightning Charging Cable,1,14.95,10/20/19 12:18,"602 Hickory St, New York City, NY 10001" +275839,Lightning Charging Cable,1,14.95,10/06/19 12:57,"190 Wilson St, Boston, MA 02215" +275840,AA Batteries (4-pack),2,3.84,10/31/19 16:23,"764 Chestnut St, Los Angeles, CA 90001" +275841,AAA Batteries (4-pack),4,2.99,10/16/19 10:02,"457 Main St, Austin, TX 73301" +275842,AAA Batteries (4-pack),4,2.99,10/30/19 22:34,"9 Sunset St, Dallas, TX 75001" +275843,Lightning Charging Cable,1,14.95,10/31/19 07:06,"22 5th St, Los Angeles, CA 90001" +275844,Apple Airpods Headphones,1,150,10/24/19 21:16,"547 Washington St, Dallas, TX 75001" +275845,27in 4K Gaming Monitor,1,389.99,10/02/19 00:15,"286 Highland St, Seattle, WA 98101" +275846,Wired Headphones,1,11.99,10/27/19 10:05,"83 Lincoln St, Dallas, TX 75001" +275847,USB-C Charging Cable,1,11.95,10/12/19 13:18,"458 14th St, San Francisco, CA 94016" +275848,Wired Headphones,1,11.99,10/16/19 08:30,"401 Hickory St, San Francisco, CA 94016" +275849,Bose SoundSport Headphones,1,99.99,10/24/19 23:48,"117 Walnut St, Atlanta, GA 30301" +275850,Apple Airpods Headphones,1,150,10/05/19 08:57,"608 Maple St, New York City, NY 10001" +275851,Bose SoundSport Headphones,1,99.99,10/02/19 11:51,"918 Ridge St, Los Angeles, CA 90001" +275852,27in FHD Monitor,1,149.99,10/09/19 03:14,"900 West St, New York City, NY 10001" +275853,Lightning Charging Cable,1,14.95,10/31/19 13:19,"284 Lake St, Boston, MA 02215" +275854,Lightning Charging Cable,1,14.95,10/20/19 10:44,"337 7th St, Seattle, WA 98101" +275855,ThinkPad Laptop,1,999.99,10/19/19 09:06,"463 9th St, San Francisco, CA 94016" +275856,34in Ultrawide Monitor,1,379.99,10/13/19 17:51,"485 Spruce St, San Francisco, CA 94016" +275857,AAA Batteries (4-pack),2,2.99,10/11/19 14:48,"431 Johnson St, Dallas, TX 75001" +275858,Lightning Charging Cable,1,14.95,10/15/19 21:33,"876 Center St, New York City, NY 10001" +275859,AAA Batteries (4-pack),1,2.99,10/23/19 08:39,"374 4th St, Boston, MA 02215" +275860,Lightning Charging Cable,1,14.95,10/15/19 16:16,"714 Highland St, Los Angeles, CA 90001" +275861,Bose SoundSport Headphones,1,99.99,10/27/19 05:53,"525 Lakeview St, New York City, NY 10001" +275862,Lightning Charging Cable,1,14.95,10/30/19 20:39,"446 13th St, San Francisco, CA 94016" +275863,Lightning Charging Cable,1,14.95,10/07/19 01:56,"227 Wilson St, Portland, OR 97035" +275864,AAA Batteries (4-pack),2,2.99,10/05/19 13:30,"633 Hickory St, Boston, MA 02215" +275865,Google Phone,1,600,10/24/19 09:47,"371 1st St, Boston, MA 02215" +275866,Wired Headphones,1,11.99,10/02/19 22:37,"112 Wilson St, Dallas, TX 75001" +275867,Bose SoundSport Headphones,1,99.99,10/08/19 09:39,"157 11th St, San Francisco, CA 94016" +275868,Apple Airpods Headphones,1,150,10/22/19 10:17,"875 Elm St, San Francisco, CA 94016" +275869,USB-C Charging Cable,1,11.95,10/30/19 12:51,"326 Highland St, Dallas, TX 75001" +275870,27in 4K Gaming Monitor,1,389.99,10/23/19 21:20,"795 Center St, Atlanta, GA 30301" +275871,Lightning Charging Cable,2,14.95,10/01/19 08:33,"585 North St, Los Angeles, CA 90001" +275872,Macbook Pro Laptop,1,1700,10/23/19 10:50,"556 Walnut St, San Francisco, CA 94016" +275873,Lightning Charging Cable,1,14.95,10/11/19 08:41,"808 Hill St, Los Angeles, CA 90001" +275874,AAA Batteries (4-pack),2,2.99,10/30/19 14:44,"505 1st St, Portland, ME 04101" +275875,27in FHD Monitor,1,149.99,10/25/19 11:38,"246 South St, San Francisco, CA 94016" +275876,27in 4K Gaming Monitor,1,389.99,10/20/19 00:17,"338 North St, Los Angeles, CA 90001" +275877,Apple Airpods Headphones,1,150,10/16/19 14:42,"939 Cherry St, Austin, TX 73301" +275878,USB-C Charging Cable,1,11.95,10/02/19 18:15,"307 Dogwood St, Seattle, WA 98101" +275879,20in Monitor,1,109.99,10/21/19 17:37,"899 8th St, Boston, MA 02215" +275880,ThinkPad Laptop,1,999.99,10/20/19 11:23,"194 Wilson St, Dallas, TX 75001" +275881,Apple Airpods Headphones,1,150,10/24/19 12:06,"458 Pine St, Portland, OR 97035" +275882,Lightning Charging Cable,1,14.95,10/16/19 17:38,"407 7th St, Atlanta, GA 30301" +275883,AA Batteries (4-pack),1,3.84,10/21/19 13:58,"798 South St, Portland, OR 97035" +275884,Bose SoundSport Headphones,1,99.99,10/29/19 11:44,"843 Lincoln St, Los Angeles, CA 90001" +275885,AA Batteries (4-pack),2,3.84,10/13/19 18:10,"247 Madison St, Dallas, TX 75001" +275886,ThinkPad Laptop,1,999.99,10/25/19 21:31,"659 Pine St, Dallas, TX 75001" +275887,USB-C Charging Cable,1,11.95,10/06/19 21:38,"173 Highland St, Austin, TX 73301" +275888,AA Batteries (4-pack),1,3.84,10/09/19 19:18,"995 Dogwood St, Boston, MA 02215" +275889,Google Phone,1,600,10/22/19 17:49,"303 Church St, Atlanta, GA 30301" +275890,Bose SoundSport Headphones,1,99.99,10/22/19 14:33,"60 8th St, Atlanta, GA 30301" +275891,Lightning Charging Cable,1,14.95,10/24/19 09:53,"736 10th St, Los Angeles, CA 90001" +275892,USB-C Charging Cable,1,11.95,10/27/19 16:43,"616 Jefferson St, Boston, MA 02215" +275893,34in Ultrawide Monitor,1,379.99,10/11/19 18:15,"323 Walnut St, San Francisco, CA 94016" +275894,Lightning Charging Cable,1,14.95,10/18/19 14:21,"851 Center St, Los Angeles, CA 90001" +275895,Wired Headphones,1,11.99,10/21/19 00:12,"408 Elm St, Portland, OR 97035" +275896,Macbook Pro Laptop,1,1700,10/14/19 18:18,"309 Lakeview St, Boston, MA 02215" +275897,AA Batteries (4-pack),1,3.84,10/30/19 19:33,"479 Washington St, Boston, MA 02215" +275898,AAA Batteries (4-pack),1,2.99,10/11/19 22:49,"365 South St, Dallas, TX 75001" +275899,Wired Headphones,1,11.99,10/15/19 12:13,"803 13th St, Boston, MA 02215" +275900,Wired Headphones,1,11.99,10/01/19 14:13,"811 Sunset St, San Francisco, CA 94016" +275901,AAA Batteries (4-pack),1,2.99,10/06/19 13:32,"431 West St, New York City, NY 10001" +275902,Macbook Pro Laptop,1,1700,10/08/19 23:07,"489 11th St, New York City, NY 10001" +275903,AAA Batteries (4-pack),1,2.99,10/20/19 11:35,"676 9th St, Dallas, TX 75001" +275904,AAA Batteries (4-pack),4,2.99,10/12/19 18:45,"112 12th St, San Francisco, CA 94016" +275905,27in FHD Monitor,1,149.99,10/29/19 22:18,"736 1st St, Atlanta, GA 30301" +275906,Apple Airpods Headphones,1,150,10/02/19 21:49,"825 Pine St, Portland, OR 97035" +275907,USB-C Charging Cable,3,11.95,10/28/19 23:41,"156 Hill St, Atlanta, GA 30301" +275908,Flatscreen TV,1,300,10/10/19 12:09,"389 14th St, Boston, MA 02215" +275909,Wired Headphones,1,11.99,10/13/19 14:04,"453 Madison St, Seattle, WA 98101" +275910,iPhone,1,700,10/10/19 10:05,"345 Forest St, San Francisco, CA 94016" +275911,Lightning Charging Cable,1,14.95,10/04/19 14:00,"344 Highland St, San Francisco, CA 94016" +275912,Wired Headphones,1,11.99,10/20/19 13:17,"196 8th St, San Francisco, CA 94016" +275913,Apple Airpods Headphones,1,150,10/07/19 17:27,"101 Chestnut St, San Francisco, CA 94016" +275914,AAA Batteries (4-pack),1,2.99,10/24/19 09:24,"448 Main St, Dallas, TX 75001" +275915,Flatscreen TV,1,300,10/29/19 11:00,"296 West St, San Francisco, CA 94016" +275916,Bose SoundSport Headphones,1,99.99,10/18/19 11:31,"836 8th St, Los Angeles, CA 90001" +275917,AAA Batteries (4-pack),1,2.99,10/04/19 14:46,"589 Main St, San Francisco, CA 94016" +275918,USB-C Charging Cable,1,11.95,10/26/19 13:54,"746 7th St, New York City, NY 10001" +275919,Macbook Pro Laptop,1,1700,10/03/19 16:28,"991 Cedar St, Los Angeles, CA 90001" +275920,Lightning Charging Cable,1,14.95,10/22/19 13:14,"6 River St, Atlanta, GA 30301" +275921,AA Batteries (4-pack),1,3.84,10/29/19 22:43,"700 Sunset St, Seattle, WA 98101" +275922,AA Batteries (4-pack),1,3.84,10/09/19 23:06,"929 Washington St, Los Angeles, CA 90001" +275923,Bose SoundSport Headphones,1,99.99,10/20/19 19:26,"614 Center St, Boston, MA 02215" +275924,Macbook Pro Laptop,1,1700,10/04/19 11:36,"178 9th St, Seattle, WA 98101" +275925,AAA Batteries (4-pack),1,2.99,10/31/19 08:20,"342 7th St, Atlanta, GA 30301" +275926,USB-C Charging Cable,1,11.95,10/30/19 23:55,"224 Lincoln St, Dallas, TX 75001" +275927,Apple Airpods Headphones,1,150,10/08/19 19:17,"118 10th St, Austin, TX 73301" +275928,USB-C Charging Cable,1,11.95,10/15/19 18:16,"7 Church St, Dallas, TX 75001" +275929,Lightning Charging Cable,1,14.95,10/27/19 09:44,"259 Jefferson St, Los Angeles, CA 90001" +275930,AAA Batteries (4-pack),3,2.99,10/24/19 09:05,"745 8th St, Portland, OR 97035" +275931,Lightning Charging Cable,1,14.95,10/18/19 10:30,"380 5th St, San Francisco, CA 94016" +275932,Wired Headphones,1,11.99,10/19/19 01:00,"92 Center St, New York City, NY 10001" +275933,USB-C Charging Cable,1,11.95,10/09/19 09:50,"718 6th St, San Francisco, CA 94016" +275934,27in 4K Gaming Monitor,1,389.99,10/08/19 23:39,"738 Cedar St, New York City, NY 10001" +275935,AA Batteries (4-pack),1,3.84,10/31/19 14:44,"673 Chestnut St, Los Angeles, CA 90001" +275936,Lightning Charging Cable,1,14.95,10/09/19 19:52,"275 Wilson St, New York City, NY 10001" +275937,Flatscreen TV,1,300,10/01/19 11:09,"808 Center St, Los Angeles, CA 90001" +275938,USB-C Charging Cable,1,11.95,10/15/19 06:07,"269 Walnut St, Atlanta, GA 30301" +275939,Apple Airpods Headphones,1,150,10/15/19 01:32,"377 Maple St, Seattle, WA 98101" +275940,AA Batteries (4-pack),1,3.84,10/16/19 12:07,"838 9th St, San Francisco, CA 94016" +275941,Lightning Charging Cable,1,14.95,10/23/19 19:51,"120 Lake St, San Francisco, CA 94016" +275942,AA Batteries (4-pack),2,3.84,10/26/19 13:53,"300 11th St, Seattle, WA 98101" +275943,Macbook Pro Laptop,1,1700,10/10/19 18:26,"981 Jackson St, San Francisco, CA 94016" +275944,iPhone,1,700,10/10/19 00:44,"433 Spruce St, San Francisco, CA 94016" +275945,20in Monitor,1,109.99,10/22/19 21:17,"554 2nd St, Atlanta, GA 30301" +275946,AAA Batteries (4-pack),3,2.99,10/18/19 08:58,"224 South St, Atlanta, GA 30301" +275947,Flatscreen TV,1,300,10/25/19 19:28,"958 Walnut St, Austin, TX 73301" +275948,AAA Batteries (4-pack),1,2.99,10/02/19 21:03,"248 Lincoln St, San Francisco, CA 94016" +275949,AA Batteries (4-pack),1,3.84,10/13/19 20:21,"283 Forest St, Dallas, TX 75001" +275950,AA Batteries (4-pack),1,3.84,10/11/19 13:36,"552 North St, San Francisco, CA 94016" +275951,Wired Headphones,1,11.99,10/30/19 14:15,"171 7th St, Boston, MA 02215" +275952,Apple Airpods Headphones,1,150,10/21/19 21:03,"793 Elm St, Dallas, TX 75001" +275953,iPhone,1,700,10/07/19 14:33,"522 Dogwood St, San Francisco, CA 94016" +275954,AA Batteries (4-pack),1,3.84,10/29/19 20:32,"709 Main St, Los Angeles, CA 90001" +275955,Google Phone,1,600,10/28/19 09:25,"164 9th St, New York City, NY 10001" +275956,Bose SoundSport Headphones,1,99.99,10/01/19 15:03,"620 4th St, New York City, NY 10001" +275957,Macbook Pro Laptop,1,1700,10/01/19 21:45,"478 North St, San Francisco, CA 94016" +275958,Lightning Charging Cable,1,14.95,10/08/19 12:44,"817 Lincoln St, New York City, NY 10001" +275959,27in FHD Monitor,1,149.99,10/04/19 23:21,"818 6th St, San Francisco, CA 94016" +275960,Lightning Charging Cable,1,14.95,10/10/19 22:53,"329 Washington St, San Francisco, CA 94016" +275961,Wired Headphones,1,11.99,10/31/19 17:41,"479 Forest St, Boston, MA 02215" +275962,Wired Headphones,1,11.99,10/05/19 12:42,"19 Center St, Los Angeles, CA 90001" +275963,Lightning Charging Cable,1,14.95,10/22/19 22:05,"620 West St, Portland, OR 97035" +275964,Wired Headphones,1,11.99,10/22/19 13:19,"543 Washington St, San Francisco, CA 94016" +275965,27in FHD Monitor,1,149.99,10/28/19 16:16,"578 8th St, San Francisco, CA 94016" +275966,Lightning Charging Cable,1,14.95,10/21/19 16:04,"616 Cedar St, Dallas, TX 75001" +275967,Lightning Charging Cable,1,14.95,10/03/19 10:08,"238 Meadow St, San Francisco, CA 94016" +275968,Bose SoundSport Headphones,1,99.99,10/20/19 01:18,"468 Park St, New York City, NY 10001" +275969,AAA Batteries (4-pack),1,2.99,10/21/19 13:50,"547 Spruce St, Los Angeles, CA 90001" +275970,USB-C Charging Cable,1,11.95,10/25/19 12:38,"332 Forest St, Portland, ME 04101" +275971,27in 4K Gaming Monitor,1,389.99,10/09/19 11:39,"794 Meadow St, Austin, TX 73301" +275972,Wired Headphones,2,11.99,10/29/19 20:27,"283 1st St, New York City, NY 10001" +275973,Apple Airpods Headphones,1,150,10/04/19 10:39,"433 Hickory St, Boston, MA 02215" +275974,USB-C Charging Cable,1,11.95,10/08/19 11:16,"912 Wilson St, Los Angeles, CA 90001" +275975,USB-C Charging Cable,1,11.95,10/11/19 08:45,"765 Maple St, Dallas, TX 75001" +275976,AAA Batteries (4-pack),1,2.99,10/01/19 14:58,"441 Jefferson St, Portland, OR 97035" +275977,AA Batteries (4-pack),1,3.84,10/24/19 19:31,"693 7th St, Dallas, TX 75001" +275978,AA Batteries (4-pack),5,3.84,10/20/19 16:04,"618 5th St, New York City, NY 10001" +275979,34in Ultrawide Monitor,1,379.99,10/31/19 12:04,"168 Ridge St, San Francisco, CA 94016" +275980,Apple Airpods Headphones,1,150,10/05/19 15:11,"517 Ridge St, New York City, NY 10001" +275981,USB-C Charging Cable,1,11.95,10/14/19 07:06,"729 Park St, Dallas, TX 75001" +275982,AAA Batteries (4-pack),1,2.99,10/31/19 16:56,"3 Jefferson St, Los Angeles, CA 90001" +275983,USB-C Charging Cable,1,11.95,10/29/19 14:07,"133 River St, Los Angeles, CA 90001" +275984,USB-C Charging Cable,2,11.95,10/13/19 11:54,"756 Adams St, Los Angeles, CA 90001" +275985,AA Batteries (4-pack),1,3.84,10/20/19 14:49,"148 Hickory St, Austin, TX 73301" +275986,AAA Batteries (4-pack),1,2.99,10/20/19 00:20,"172 West St, Portland, OR 97035" +275987,Bose SoundSport Headphones,1,99.99,10/15/19 16:06,"87 Spruce St, Portland, ME 04101" +275988,AAA Batteries (4-pack),1,2.99,10/10/19 11:56,"289 2nd St, New York City, NY 10001" +275989,AAA Batteries (4-pack),3,2.99,10/03/19 11:16,"928 11th St, New York City, NY 10001" +275990,Flatscreen TV,1,300,10/21/19 19:29,"511 Elm St, Portland, OR 97035" +275991,Bose SoundSport Headphones,1,99.99,10/27/19 19:51,"104 Madison St, San Francisco, CA 94016" +275992,AAA Batteries (4-pack),1,2.99,10/21/19 11:24,"706 Adams St, Seattle, WA 98101" +275993,Lightning Charging Cable,1,14.95,10/08/19 16:16,"179 Hill St, Seattle, WA 98101" +275994,Lightning Charging Cable,1,14.95,10/17/19 17:04,"283 Hill St, New York City, NY 10001" +275995,Apple Airpods Headphones,1,150,10/18/19 19:21,"938 Church St, Los Angeles, CA 90001" +275996,AA Batteries (4-pack),1,3.84,10/07/19 10:06,"743 Cedar St, New York City, NY 10001" +275997,AA Batteries (4-pack),1,3.84,10/06/19 16:38,"142 Ridge St, Portland, OR 97035" +275998,USB-C Charging Cable,1,11.95,10/06/19 12:23,"879 Jefferson St, Boston, MA 02215" +275999,Lightning Charging Cable,1,14.95,10/24/19 06:42,"63 North St, Boston, MA 02215" +276000,AA Batteries (4-pack),1,3.84,10/01/19 10:51,"249 7th St, Portland, OR 97035" +276001,Wired Headphones,3,11.99,10/30/19 22:26,"250 9th St, Boston, MA 02215" +276002,iPhone,1,700,10/29/19 15:14,"770 Forest St, Atlanta, GA 30301" +276002,Lightning Charging Cable,1,14.95,10/29/19 15:14,"770 Forest St, Atlanta, GA 30301" +276003,AA Batteries (4-pack),2,3.84,10/02/19 07:27,"368 9th St, San Francisco, CA 94016" +276004,Bose SoundSport Headphones,1,99.99,10/08/19 19:14,"662 Cedar St, Boston, MA 02215" +276005,USB-C Charging Cable,1,11.95,10/29/19 08:14,"954 Madison St, Dallas, TX 75001" +276006,Lightning Charging Cable,1,14.95,10/06/19 00:15,"786 Johnson St, San Francisco, CA 94016" +276007,AA Batteries (4-pack),1,3.84,10/24/19 21:52,"721 Park St, Los Angeles, CA 90001" +276008,27in FHD Monitor,1,149.99,10/13/19 09:48,"772 Dogwood St, Austin, TX 73301" +276009,Bose SoundSport Headphones,1,99.99,10/09/19 21:59,"972 Center St, New York City, NY 10001" +276010,AAA Batteries (4-pack),4,2.99,10/05/19 13:56,"639 Madison St, Seattle, WA 98101" +276011,Wired Headphones,1,11.99,10/25/19 19:27,"894 Johnson St, Los Angeles, CA 90001" +276012,iPhone,1,700,10/17/19 20:17,"944 Jackson St, San Francisco, CA 94016" +276013,USB-C Charging Cable,1,11.95,10/16/19 21:57,"983 8th St, Dallas, TX 75001" +276014,ThinkPad Laptop,1,999.99,10/18/19 00:29,"6 Main St, New York City, NY 10001" +276015,Apple Airpods Headphones,1,150,10/01/19 21:09,"912 6th St, Los Angeles, CA 90001" +276016,AAA Batteries (4-pack),1,2.99,10/17/19 09:37,"278 4th St, Los Angeles, CA 90001" +276017,AA Batteries (4-pack),2,3.84,10/18/19 22:42,"603 Cedar St, Dallas, TX 75001" +276018,Flatscreen TV,1,300,10/11/19 12:37,"308 Willow St, New York City, NY 10001" +276019,Lightning Charging Cable,1,14.95,10/06/19 17:03,"390 Maple St, San Francisco, CA 94016" +276020,27in 4K Gaming Monitor,1,389.99,10/26/19 19:51,"433 Adams St, Seattle, WA 98101" +276021,Apple Airpods Headphones,1,150,10/27/19 09:18,"411 Jackson St, San Francisco, CA 94016" +276022,34in Ultrawide Monitor,1,379.99,10/26/19 13:20,"304 Spruce St, Seattle, WA 98101" +276023,AAA Batteries (4-pack),1,2.99,10/11/19 15:12,"641 River St, Boston, MA 02215" +276024,Lightning Charging Cable,1,14.95,10/02/19 18:09,"286 5th St, Boston, MA 02215" +276025,Apple Airpods Headphones,1,150,10/21/19 14:11,"131 South St, Los Angeles, CA 90001" +276026,Lightning Charging Cable,1,14.95,10/14/19 11:10,"250 Madison St, San Francisco, CA 94016" +276027,AAA Batteries (4-pack),1,2.99,10/17/19 15:47,"614 5th St, Dallas, TX 75001" +276028,AA Batteries (4-pack),1,3.84,10/13/19 09:39,"582 Park St, Boston, MA 02215" +276029,AA Batteries (4-pack),1,3.84,10/22/19 09:55,"74 Ridge St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +276030,Google Phone,1,600,10/24/19 20:59,"232 Willow St, San Francisco, CA 94016" +276031,Apple Airpods Headphones,1,150,10/07/19 13:41,"29 7th St, Seattle, WA 98101" +276032,27in 4K Gaming Monitor,1,389.99,10/25/19 15:54,"830 Willow St, San Francisco, CA 94016" +276033,Apple Airpods Headphones,1,150,10/17/19 13:01,"430 Lakeview St, Atlanta, GA 30301" +276034,Lightning Charging Cable,1,14.95,10/20/19 19:32,"199 Cedar St, Austin, TX 73301" +276035,iPhone,1,700,10/12/19 06:35,"685 Wilson St, San Francisco, CA 94016" +276036,AAA Batteries (4-pack),1,2.99,10/22/19 12:05,"928 9th St, San Francisco, CA 94016" +276037,27in FHD Monitor,1,149.99,10/17/19 12:08,"876 Washington St, Boston, MA 02215" +276038,USB-C Charging Cable,1,11.95,10/03/19 14:58,"678 11th St, Boston, MA 02215" +276039,Wired Headphones,1,11.99,10/03/19 16:08,"156 6th St, Dallas, TX 75001" +276040,Wired Headphones,1,11.99,10/31/19 00:47,"701 Chestnut St, Boston, MA 02215" +276041,iPhone,1,700,10/01/19 12:20,"891 Jackson St, Los Angeles, CA 90001" +276041,Apple Airpods Headphones,1,150,10/01/19 12:20,"891 Jackson St, Los Angeles, CA 90001" +276042,USB-C Charging Cable,1,11.95,10/08/19 19:31,"721 Adams St, San Francisco, CA 94016" +276043,Bose SoundSport Headphones,1,99.99,10/09/19 22:06,"139 Chestnut St, Atlanta, GA 30301" +276044,Wired Headphones,1,11.99,10/28/19 22:29,"999 Main St, Atlanta, GA 30301" +276045,Wired Headphones,2,11.99,10/02/19 15:08,"478 Lakeview St, New York City, NY 10001" +276045,Bose SoundSport Headphones,1,99.99,10/02/19 15:08,"478 Lakeview St, New York City, NY 10001" +276046,AAA Batteries (4-pack),1,2.99,10/22/19 11:32,"65 Park St, San Francisco, CA 94016" +276047,Bose SoundSport Headphones,1,99.99,10/28/19 11:25,"862 12th St, Portland, OR 97035" +276048,Bose SoundSport Headphones,1,99.99,10/04/19 14:58,"847 Johnson St, New York City, NY 10001" +276049,20in Monitor,1,109.99,10/15/19 13:45,"890 12th St, Los Angeles, CA 90001" +276050,34in Ultrawide Monitor,1,379.99,10/06/19 11:02,"902 Sunset St, Atlanta, GA 30301" +276051,Flatscreen TV,1,300,10/21/19 19:32,"364 10th St, Los Angeles, CA 90001" +276052,AAA Batteries (4-pack),1,2.99,10/05/19 16:42,"240 Maple St, Dallas, TX 75001" +276053,Lightning Charging Cable,1,14.95,10/27/19 17:47,"372 Dogwood St, Portland, OR 97035" +276054,Macbook Pro Laptop,1,1700,10/08/19 21:21,"236 Church St, San Francisco, CA 94016" +276055,Lightning Charging Cable,1,14.95,10/21/19 10:03,"405 8th St, Seattle, WA 98101" +276056,Lightning Charging Cable,1,14.95,10/28/19 20:39,"925 Lake St, Austin, TX 73301" +276056,Apple Airpods Headphones,1,150,10/28/19 20:39,"925 Lake St, Austin, TX 73301" +276057,Bose SoundSport Headphones,1,99.99,10/09/19 14:24,"309 Forest St, San Francisco, CA 94016" +276058,Apple Airpods Headphones,1,150,10/01/19 19:43,"619 Cherry St, New York City, NY 10001" +276059,AA Batteries (4-pack),1,3.84,10/03/19 17:14,"296 Madison St, San Francisco, CA 94016" +276060,Apple Airpods Headphones,1,150,10/31/19 15:10,"291 Sunset St, Dallas, TX 75001" +276061,ThinkPad Laptop,1,999.99,10/02/19 13:17,"547 West St, Portland, OR 97035" +276062,AA Batteries (4-pack),1,3.84,10/03/19 12:49,"923 Maple St, San Francisco, CA 94016" +276063,USB-C Charging Cable,1,11.95,10/20/19 15:34,"282 Madison St, Los Angeles, CA 90001" +276064,Wired Headphones,1,11.99,10/03/19 21:08,"608 13th St, Dallas, TX 75001" +276065,Apple Airpods Headphones,1,150,10/26/19 16:09,"70 Hickory St, San Francisco, CA 94016" +276066,AA Batteries (4-pack),1,3.84,10/20/19 13:26,"384 Cherry St, Dallas, TX 75001" +276067,USB-C Charging Cable,1,11.95,10/12/19 13:57,"714 11th St, San Francisco, CA 94016" +276068,iPhone,1,700,10/26/19 06:55,"184 Jackson St, San Francisco, CA 94016" +276068,Lightning Charging Cable,1,14.95,10/26/19 06:55,"184 Jackson St, San Francisco, CA 94016" +276069,AA Batteries (4-pack),3,3.84,10/15/19 09:36,"5 Cedar St, Austin, TX 73301" +276070,AA Batteries (4-pack),1,3.84,10/31/19 12:07,"767 Willow St, Los Angeles, CA 90001" +276071,Lightning Charging Cable,1,14.95,10/13/19 20:10,"681 9th St, San Francisco, CA 94016" +276072,Bose SoundSport Headphones,1,99.99,10/31/19 21:26,"321 Lincoln St, New York City, NY 10001" +276073,Wired Headphones,1,11.99,10/02/19 00:45,"939 Willow St, New York City, NY 10001" +276074,Lightning Charging Cable,1,14.95,10/25/19 11:46,"271 Ridge St, San Francisco, CA 94016" +276075,Wired Headphones,1,11.99,10/15/19 23:26,"917 Lakeview St, Los Angeles, CA 90001" +276076,Bose SoundSport Headphones,1,99.99,10/25/19 10:08,"38 Forest St, Los Angeles, CA 90001" +276077,Wired Headphones,1,11.99,10/18/19 17:03,"838 14th St, Los Angeles, CA 90001" +276078,USB-C Charging Cable,1,11.95,10/29/19 08:32,"881 8th St, Seattle, WA 98101" +276079,USB-C Charging Cable,1,11.95,10/22/19 14:03,"873 Center St, Boston, MA 02215" +276080,AAA Batteries (4-pack),1,2.99,10/25/19 09:56,"796 Sunset St, Portland, ME 04101" +276081,27in FHD Monitor,1,149.99,10/17/19 19:16,"839 Madison St, Dallas, TX 75001" +276082,USB-C Charging Cable,1,11.95,10/20/19 15:06,"35 Chestnut St, Los Angeles, CA 90001" +276083,Wired Headphones,1,11.99,10/26/19 13:21,"919 Hickory St, New York City, NY 10001" +276084,USB-C Charging Cable,1,11.95,10/08/19 07:32,"918 River St, San Francisco, CA 94016" +276085,Bose SoundSport Headphones,1,99.99,10/05/19 16:57,"893 5th St, New York City, NY 10001" +276086,Wired Headphones,1,11.99,10/30/19 12:36,"298 9th St, Atlanta, GA 30301" +276087,USB-C Charging Cable,1,11.95,10/22/19 19:04,"223 Dogwood St, Atlanta, GA 30301" +276088,AA Batteries (4-pack),1,3.84,10/07/19 17:18,"522 Walnut St, Dallas, TX 75001" +276089,AA Batteries (4-pack),1,3.84,10/15/19 18:08,"771 Jackson St, Atlanta, GA 30301" +276090,Bose SoundSport Headphones,1,99.99,10/20/19 09:01,"229 Center St, Portland, OR 97035" +276091,Lightning Charging Cable,1,14.95,10/09/19 18:13,"823 Park St, San Francisco, CA 94016" +276092,iPhone,1,700,10/05/19 19:35,"411 Ridge St, San Francisco, CA 94016" +276092,Apple Airpods Headphones,1,150,10/05/19 19:35,"411 Ridge St, San Francisco, CA 94016" +276093,Apple Airpods Headphones,1,150,10/08/19 14:24,"566 Willow St, San Francisco, CA 94016" +276094,AAA Batteries (4-pack),1,2.99,10/27/19 00:10,"622 Walnut St, New York City, NY 10001" +276095,Bose SoundSport Headphones,1,99.99,10/02/19 08:55,"22 Washington St, New York City, NY 10001" +276096,Macbook Pro Laptop,1,1700,10/10/19 19:52,"908 11th St, Los Angeles, CA 90001" +276097,AAA Batteries (4-pack),1,2.99,10/01/19 10:34,"382 Wilson St, Portland, OR 97035" +276098,Apple Airpods Headphones,1,150,10/05/19 09:07,"723 Willow St, San Francisco, CA 94016" +276099,AAA Batteries (4-pack),3,2.99,10/13/19 23:18,"988 Dogwood St, San Francisco, CA 94016" +276100,Lightning Charging Cable,1,14.95,10/08/19 20:32,"531 13th St, New York City, NY 10001" +276101,Apple Airpods Headphones,1,150,10/21/19 19:26,"494 11th St, Boston, MA 02215" +276102,Bose SoundSport Headphones,1,99.99,10/25/19 01:33,"100 Washington St, New York City, NY 10001" +276103,Lightning Charging Cable,1,14.95,10/29/19 17:21,"954 Jefferson St, Los Angeles, CA 90001" +276104,USB-C Charging Cable,1,11.95,10/27/19 05:47,"670 6th St, Los Angeles, CA 90001" +276105,Lightning Charging Cable,1,14.95,10/29/19 12:02,"891 Highland St, Seattle, WA 98101" +276106,27in 4K Gaming Monitor,1,389.99,10/09/19 14:37,"257 Hickory St, Atlanta, GA 30301" +276107,27in 4K Gaming Monitor,1,389.99,10/31/19 20:46,"323 Park St, New York City, NY 10001" +276108,Wired Headphones,1,11.99,10/04/19 12:54,"698 Forest St, Los Angeles, CA 90001" +276109,Bose SoundSport Headphones,1,99.99,10/29/19 20:14,"390 5th St, Boston, MA 02215" +276110,AA Batteries (4-pack),2,3.84,10/04/19 16:22,"335 Cherry St, Boston, MA 02215" +276111,Lightning Charging Cable,1,14.95,10/15/19 09:47,"406 Chestnut St, Seattle, WA 98101" +276112,Wired Headphones,2,11.99,10/03/19 12:08,"504 11th St, New York City, NY 10001" +276113,USB-C Charging Cable,2,11.95,10/07/19 19:41,"957 North St, San Francisco, CA 94016" +276114,Lightning Charging Cable,1,14.95,10/13/19 16:42,"993 14th St, Los Angeles, CA 90001" +276115,Wired Headphones,1,11.99,10/21/19 23:41,"679 Cedar St, Boston, MA 02215" +276116,Bose SoundSport Headphones,1,99.99,10/01/19 12:03,"862 Park St, San Francisco, CA 94016" +276117,AA Batteries (4-pack),1,3.84,10/02/19 20:10,"629 Pine St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +276118,iPhone,1,700,10/07/19 14:02,"415 Park St, New York City, NY 10001" +276119,Lightning Charging Cable,1,14.95,10/09/19 13:46,"72 South St, Austin, TX 73301" +276120,Lightning Charging Cable,1,14.95,10/31/19 19:07,"222 Pine St, Dallas, TX 75001" +276121,Lightning Charging Cable,1,14.95,10/30/19 12:23,"49 River St, San Francisco, CA 94016" +276122,USB-C Charging Cable,1,11.95,10/05/19 13:36,"43 Lakeview St, Los Angeles, CA 90001" +276123,Apple Airpods Headphones,1,150,10/31/19 20:33,"125 Main St, Austin, TX 73301" +276124,Lightning Charging Cable,1,14.95,10/07/19 12:57,"380 River St, Seattle, WA 98101" +276125,Wired Headphones,1,11.99,10/21/19 21:54,"668 Washington St, Atlanta, GA 30301" +276126,USB-C Charging Cable,1,11.95,10/29/19 20:24,"996 Park St, San Francisco, CA 94016" +276127,Lightning Charging Cable,1,14.95,10/21/19 10:30,"908 Washington St, Boston, MA 02215" +276128,iPhone,1,700,10/20/19 11:46,"313 Hill St, New York City, NY 10001" +276129,Apple Airpods Headphones,1,150,10/03/19 23:26,"465 Cedar St, Boston, MA 02215" +276130,Wired Headphones,1,11.99,10/11/19 12:19,"903 1st St, Atlanta, GA 30301" +276131,Vareebadd Phone,1,400,10/04/19 11:19,"934 Center St, Atlanta, GA 30301" +276131,USB-C Charging Cable,1,11.95,10/04/19 11:19,"934 Center St, Atlanta, GA 30301" +276132,27in FHD Monitor,1,149.99,10/04/19 15:44,"971 Elm St, San Francisco, CA 94016" +276133,AA Batteries (4-pack),1,3.84,10/10/19 07:41,"212 Lake St, Los Angeles, CA 90001" +276134,Lightning Charging Cable,1,14.95,10/18/19 21:15,"772 Church St, Seattle, WA 98101" +276135,AA Batteries (4-pack),2,3.84,10/18/19 07:28,"112 Dogwood St, San Francisco, CA 94016" +276136,AA Batteries (4-pack),1,3.84,10/26/19 22:33,"225 Hill St, Boston, MA 02215" +276137,Flatscreen TV,1,300,10/04/19 09:23,"391 Madison St, San Francisco, CA 94016" +276138,Bose SoundSport Headphones,1,99.99,10/16/19 16:02,"889 Jefferson St, San Francisco, CA 94016" +276139,USB-C Charging Cable,1,11.95,10/23/19 09:08,"999 6th St, Los Angeles, CA 90001" +276140,20in Monitor,1,109.99,10/04/19 16:36,"233 2nd St, Los Angeles, CA 90001" +276141,Bose SoundSport Headphones,1,99.99,10/14/19 13:56,"821 River St, Dallas, TX 75001" +276142,AAA Batteries (4-pack),1,2.99,10/28/19 15:21,"165 7th St, San Francisco, CA 94016" +276143,AA Batteries (4-pack),2,3.84,10/29/19 21:11,"817 Lakeview St, Boston, MA 02215" +276144,AAA Batteries (4-pack),1,2.99,10/29/19 17:55,"154 12th St, San Francisco, CA 94016" +276145,Macbook Pro Laptop,1,1700,10/30/19 18:40,"98 Wilson St, Los Angeles, CA 90001" +276146,Wired Headphones,1,11.99,10/02/19 13:20,"903 Adams St, San Francisco, CA 94016" +276147,AAA Batteries (4-pack),2,2.99,10/13/19 21:17,"548 10th St, Los Angeles, CA 90001" +276148,USB-C Charging Cable,1,11.95,10/06/19 14:57,"719 Washington St, Atlanta, GA 30301" +276149,Flatscreen TV,1,300,10/24/19 16:28,"625 5th St, San Francisco, CA 94016" +276150,Apple Airpods Headphones,1,150,10/24/19 21:59,"319 North St, New York City, NY 10001" +276151,USB-C Charging Cable,1,11.95,10/13/19 10:11,"179 2nd St, Seattle, WA 98101" +276152,Lightning Charging Cable,1,14.95,10/03/19 09:20,"565 North St, Boston, MA 02215" +276153,AAA Batteries (4-pack),2,2.99,10/27/19 14:38,"38 Main St, New York City, NY 10001" +276154,Lightning Charging Cable,2,14.95,10/22/19 13:39,"80 Lakeview St, San Francisco, CA 94016" +276155,Lightning Charging Cable,1,14.95,10/31/19 11:31,"997 11th St, Boston, MA 02215" +276156,iPhone,1,700,10/01/19 15:04,"855 Adams St, San Francisco, CA 94016" +276156,Lightning Charging Cable,1,14.95,10/01/19 15:04,"855 Adams St, San Francisco, CA 94016" +276157,ThinkPad Laptop,1,999.99,10/14/19 12:29,"502 Ridge St, San Francisco, CA 94016" +276158,Apple Airpods Headphones,1,150,10/29/19 17:09,"590 West St, San Francisco, CA 94016" +276159,iPhone,1,700,10/08/19 18:39,"112 12th St, Boston, MA 02215" +276160,Lightning Charging Cable,2,14.95,10/29/19 07:26,"730 Lincoln St, San Francisco, CA 94016" +276161,AA Batteries (4-pack),1,3.84,10/29/19 09:22,"893 Church St, Portland, OR 97035" +276162,iPhone,1,700,10/03/19 09:29,"268 Jackson St, Seattle, WA 98101" +276163,USB-C Charging Cable,2,11.95,10/23/19 09:31,"55 Center St, Boston, MA 02215" +276164,AA Batteries (4-pack),1,3.84,10/22/19 11:48,"912 6th St, Seattle, WA 98101" +276165,AA Batteries (4-pack),1,3.84,10/05/19 16:46,"1 Lakeview St, Los Angeles, CA 90001" +276166,USB-C Charging Cable,1,11.95,10/04/19 14:08,"165 North St, Seattle, WA 98101" +276167,Google Phone,1,600,10/23/19 12:19,"420 South St, New York City, NY 10001" +276168,Bose SoundSport Headphones,1,99.99,10/27/19 10:46,"270 Jackson St, San Francisco, CA 94016" +276169,Apple Airpods Headphones,1,150,10/03/19 22:26,"589 Park St, Atlanta, GA 30301" +276170,Bose SoundSport Headphones,1,99.99,10/04/19 21:47,"308 River St, Boston, MA 02215" +276171,USB-C Charging Cable,1,11.95,10/09/19 19:59,"692 9th St, Boston, MA 02215" +276172,AA Batteries (4-pack),1,3.84,10/06/19 21:36,"553 North St, Los Angeles, CA 90001" +276173,Apple Airpods Headphones,1,150,10/14/19 15:25,"244 2nd St, Austin, TX 73301" +276174,Google Phone,1,600,10/30/19 16:49,"593 Sunset St, Los Angeles, CA 90001" +276175,Apple Airpods Headphones,1,150,10/08/19 08:26,"46 Wilson St, New York City, NY 10001" +276176,Macbook Pro Laptop,1,1700,10/01/19 09:48,"150 Park St, Los Angeles, CA 90001" +276177,AAA Batteries (4-pack),1,2.99,10/10/19 12:56,"706 South St, San Francisco, CA 94016" +276178,34in Ultrawide Monitor,1,379.99,10/24/19 23:58,"322 Cedar St, Portland, ME 04101" +276179,Bose SoundSport Headphones,1,99.99,10/20/19 07:32,"426 Washington St, Portland, OR 97035" +276180,USB-C Charging Cable,2,11.95,10/23/19 23:53,"110 Dogwood St, Dallas, TX 75001" +276181,AA Batteries (4-pack),1,3.84,10/01/19 11:46,"709 1st St, Dallas, TX 75001" +276182,USB-C Charging Cable,1,11.95,10/28/19 20:56,"79 Cedar St, Portland, OR 97035" +276183,USB-C Charging Cable,1,11.95,10/14/19 18:28,"459 Jackson St, San Francisco, CA 94016" +276184,Google Phone,1,600,10/22/19 12:57,"675 14th St, Boston, MA 02215" +276185,Lightning Charging Cable,1,14.95,10/22/19 17:16,"684 10th St, New York City, NY 10001" +276186,USB-C Charging Cable,1,11.95,10/05/19 21:24,"963 9th St, New York City, NY 10001" +276187,Google Phone,1,600,10/31/19 08:04,"646 7th St, Seattle, WA 98101" +276188,Apple Airpods Headphones,1,150,10/22/19 15:41,"232 Madison St, Los Angeles, CA 90001" +276189,Lightning Charging Cable,1,14.95,10/24/19 19:20,"457 Elm St, Portland, OR 97035" +276190,Flatscreen TV,1,300,10/30/19 12:25,"668 14th St, San Francisco, CA 94016" +276191,Bose SoundSport Headphones,1,99.99,10/25/19 18:52,"516 Lakeview St, Austin, TX 73301" +276192,iPhone,1,700,10/10/19 08:31,"303 Elm St, Los Angeles, CA 90001" +276193,Lightning Charging Cable,1,14.95,10/10/19 14:17,"80 River St, Los Angeles, CA 90001" +276194,Lightning Charging Cable,1,14.95,10/03/19 15:41,"313 Park St, Los Angeles, CA 90001" +276195,USB-C Charging Cable,1,11.95,10/16/19 23:55,"775 2nd St, Dallas, TX 75001" +276196,iPhone,1,700,10/01/19 20:17,"483 Elm St, Dallas, TX 75001" +276197,Lightning Charging Cable,1,14.95,10/20/19 19:39,"785 Washington St, Los Angeles, CA 90001" +276198,USB-C Charging Cable,1,11.95,10/02/19 18:27,"847 Wilson St, New York City, NY 10001" +276199,AAA Batteries (4-pack),6,2.99,10/07/19 20:13,"740 Madison St, Boston, MA 02215" +276200,Wired Headphones,1,11.99,10/05/19 14:40,"177 Walnut St, New York City, NY 10001" +276201,Apple Airpods Headphones,1,150,10/04/19 09:06,"144 Highland St, Portland, ME 04101" +276202,USB-C Charging Cable,1,11.95,10/06/19 19:58,"796 Main St, Seattle, WA 98101" +276203,iPhone,1,700,10/20/19 18:35,"704 Spruce St, Boston, MA 02215" +276204,Apple Airpods Headphones,1,150,10/03/19 23:53,"685 Spruce St, San Francisco, CA 94016" +276205,AA Batteries (4-pack),1,3.84,10/10/19 20:06,"770 North St, Austin, TX 73301" +276206,USB-C Charging Cable,1,11.95,10/27/19 14:13,"62 Elm St, Los Angeles, CA 90001" +276207,Google Phone,1,600,10/23/19 22:10,"269 Cedar St, Atlanta, GA 30301" +276208,Bose SoundSport Headphones,1,99.99,10/27/19 16:55,"128 Cherry St, Austin, TX 73301" +276209,Google Phone,1,600,10/04/19 19:48,"719 5th St, Portland, OR 97035" +276210,AA Batteries (4-pack),1,3.84,10/17/19 17:49,"19 2nd St, Austin, TX 73301" +276211,Apple Airpods Headphones,1,150,10/09/19 19:17,"247 Johnson St, New York City, NY 10001" +276212,Google Phone,1,600,10/23/19 19:33,"133 10th St, San Francisco, CA 94016" +276213,Lightning Charging Cable,1,14.95,10/23/19 17:28,"750 Maple St, Seattle, WA 98101" +276214,iPhone,1,700,10/20/19 16:12,"3 7th St, Austin, TX 73301" +276215,AA Batteries (4-pack),1,3.84,10/22/19 23:27,"8 Forest St, Los Angeles, CA 90001" +276216,AA Batteries (4-pack),3,3.84,10/05/19 12:27,"713 Lincoln St, Portland, OR 97035" +276217,Wired Headphones,1,11.99,10/02/19 20:04,"12 Cedar St, Dallas, TX 75001" +276218,Apple Airpods Headphones,1,150,10/06/19 10:57,"109 Main St, Boston, MA 02215" +276219,Google Phone,1,600,10/18/19 12:16,"618 Church St, Atlanta, GA 30301" +276220,Google Phone,1,600,10/29/19 10:45,"562 Wilson St, Portland, OR 97035" +276221,Bose SoundSport Headphones,1,99.99,10/02/19 14:06,"512 Hickory St, San Francisco, CA 94016" +276222,USB-C Charging Cable,1,11.95,10/23/19 14:25,"24 Madison St, Boston, MA 02215" +276223,Bose SoundSport Headphones,1,99.99,10/19/19 17:10,"984 South St, San Francisco, CA 94016" +276223,Lightning Charging Cable,1,14.95,10/19/19 17:10,"984 South St, San Francisco, CA 94016" +276224,Wired Headphones,1,11.99,10/17/19 12:47,"57 Cherry St, Los Angeles, CA 90001" +276225,34in Ultrawide Monitor,1,379.99,10/01/19 17:17,"95 Johnson St, Los Angeles, CA 90001" +276226,Wired Headphones,1,11.99,10/08/19 21:01,"101 Sunset St, San Francisco, CA 94016" +276227,USB-C Charging Cable,1,11.95,10/03/19 18:36,"345 14th St, Portland, OR 97035" +276228,27in 4K Gaming Monitor,1,389.99,10/29/19 08:12,"443 Forest St, San Francisco, CA 94016" +276229,USB-C Charging Cable,1,11.95,10/08/19 14:26,"169 Chestnut St, Los Angeles, CA 90001" +276230,Macbook Pro Laptop,1,1700,10/22/19 20:49,"6 6th St, Los Angeles, CA 90001" +276231,27in 4K Gaming Monitor,1,389.99,10/06/19 09:44,"317 Forest St, San Francisco, CA 94016" +276232,USB-C Charging Cable,1,11.95,10/14/19 17:00,"962 Washington St, San Francisco, CA 94016" +276233,USB-C Charging Cable,1,11.95,10/04/19 18:40,"138 11th St, San Francisco, CA 94016" +276234,Flatscreen TV,1,300,10/22/19 15:14,"340 12th St, Portland, ME 04101" +276235,AAA Batteries (4-pack),3,2.99,10/03/19 21:46,"214 Elm St, Boston, MA 02215" +276236,Wired Headphones,1,11.99,10/21/19 06:04,"804 Church St, Boston, MA 02215" +276237,USB-C Charging Cable,1,11.95,10/23/19 12:16,"46 11th St, Portland, OR 97035" +276238,Wired Headphones,1,11.99,10/24/19 18:23,"978 Willow St, San Francisco, CA 94016" +276239,Wired Headphones,1,11.99,10/26/19 16:03,"761 Forest St, San Francisco, CA 94016" +,,,,, +276240,Wired Headphones,1,11.99,10/26/19 10:42,"710 Hickory St, San Francisco, CA 94016" +276241,AA Batteries (4-pack),1,3.84,10/02/19 22:14,"187 Cedar St, Los Angeles, CA 90001" +276242,USB-C Charging Cable,1,11.95,10/25/19 20:32,"555 Park St, Seattle, WA 98101" +276243,AAA Batteries (4-pack),1,2.99,10/10/19 22:14,"269 Jackson St, Atlanta, GA 30301" +276244,AAA Batteries (4-pack),1,2.99,10/16/19 12:02,"906 Hickory St, San Francisco, CA 94016" +276245,Flatscreen TV,1,300,10/21/19 00:59,"197 4th St, Seattle, WA 98101" +276246,AAA Batteries (4-pack),1,2.99,10/20/19 11:30,"945 11th St, Los Angeles, CA 90001" +276247,LG Washing Machine,1,600.0,10/18/19 12:10,"679 2nd St, Atlanta, GA 30301" +276248,AA Batteries (4-pack),1,3.84,10/19/19 11:18,"582 Jackson St, Los Angeles, CA 90001" +276249,AA Batteries (4-pack),1,3.84,10/13/19 11:25,"195 Park St, San Francisco, CA 94016" +276250,Google Phone,1,600,10/04/19 20:26,"577 Lake St, San Francisco, CA 94016" +276251,iPhone,1,700,10/12/19 11:22,"791 Walnut St, Portland, OR 97035" +276252,iPhone,1,700,10/15/19 17:55,"365 Highland St, New York City, NY 10001" +276253,iPhone,1,700,10/03/19 08:32,"93 Park St, New York City, NY 10001" +276254,Google Phone,1,600,10/29/19 19:52,"124 4th St, New York City, NY 10001" +276254,USB-C Charging Cable,1,11.95,10/29/19 19:52,"124 4th St, New York City, NY 10001" +276255,20in Monitor,1,109.99,10/21/19 08:02,"747 Meadow St, Boston, MA 02215" +276256,iPhone,1,700,10/03/19 23:21,"601 12th St, Los Angeles, CA 90001" +276257,AA Batteries (4-pack),1,3.84,10/22/19 23:18,"852 Ridge St, Boston, MA 02215" +276258,Apple Airpods Headphones,1,150,10/01/19 16:08,"875 Sunset St, Austin, TX 73301" +276259,Lightning Charging Cable,1,14.95,10/11/19 07:52,"216 Cherry St, Dallas, TX 75001" +276260,27in FHD Monitor,1,149.99,10/19/19 19:08,"750 Ridge St, Los Angeles, CA 90001" +276261,Flatscreen TV,1,300,10/03/19 15:20,"653 Elm St, New York City, NY 10001" +276262,AA Batteries (4-pack),1,3.84,10/18/19 17:55,"864 West St, Los Angeles, CA 90001" +276263,Google Phone,1,600,10/23/19 20:12,"292 Church St, Atlanta, GA 30301" +276263,Wired Headphones,1,11.99,10/23/19 20:12,"292 Church St, Atlanta, GA 30301" +276264,20in Monitor,1,109.99,10/19/19 21:15,"266 Spruce St, Los Angeles, CA 90001" +276265,Bose SoundSport Headphones,1,99.99,10/15/19 13:44,"808 Dogwood St, New York City, NY 10001" +276266,AAA Batteries (4-pack),4,2.99,10/24/19 09:10,"808 Maple St, San Francisco, CA 94016" +276267,AAA Batteries (4-pack),1,2.99,10/31/19 11:33,"38 Walnut St, San Francisco, CA 94016" +,,,,, +276268,Bose SoundSport Headphones,1,99.99,10/06/19 12:52,"410 Elm St, Portland, OR 97035" +276269,AAA Batteries (4-pack),1,2.99,10/08/19 21:01,"487 Wilson St, Dallas, TX 75001" +276270,Macbook Pro Laptop,1,1700,10/06/19 21:43,"806 Cedar St, San Francisco, CA 94016" +276271,Flatscreen TV,1,300,10/11/19 12:23,"580 Meadow St, San Francisco, CA 94016" +276272,AAA Batteries (4-pack),1,2.99,10/18/19 09:49,"152 South St, Los Angeles, CA 90001" +276273,20in Monitor,1,109.99,10/30/19 10:36,"971 Maple St, San Francisco, CA 94016" +276274,Lightning Charging Cable,1,14.95,10/10/19 18:45,"289 Jackson St, Austin, TX 73301" +276275,Lightning Charging Cable,1,14.95,10/22/19 11:03,"727 Main St, Dallas, TX 75001" +276276,Google Phone,1,600,10/13/19 12:59,"153 Elm St, Portland, OR 97035" +276276,Bose SoundSport Headphones,1,99.99,10/13/19 12:59,"153 Elm St, Portland, OR 97035" +276277,AA Batteries (4-pack),1,3.84,10/19/19 14:00,"771 Walnut St, San Francisco, CA 94016" +276278,USB-C Charging Cable,2,11.95,10/03/19 15:03,"556 Church St, New York City, NY 10001" +276279,AAA Batteries (4-pack),5,2.99,10/28/19 18:39,"645 Madison St, San Francisco, CA 94016" +276280,Wired Headphones,1,11.99,10/06/19 20:58,"201 13th St, Los Angeles, CA 90001" +276281,ThinkPad Laptop,1,999.99,10/12/19 13:59,"378 Main St, San Francisco, CA 94016" +276282,27in FHD Monitor,1,149.99,10/02/19 13:31,"22 Hill St, Los Angeles, CA 90001" +276283,Macbook Pro Laptop,1,1700,10/30/19 09:43,"937 9th St, San Francisco, CA 94016" +276284,AA Batteries (4-pack),2,3.84,10/31/19 21:37,"860 Spruce St, Los Angeles, CA 90001" +276285,Apple Airpods Headphones,1,150,10/15/19 11:08,"720 Cherry St, San Francisco, CA 94016" +276286,Bose SoundSport Headphones,1,99.99,10/24/19 19:43,"334 1st St, San Francisco, CA 94016" +276287,AA Batteries (4-pack),3,3.84,10/03/19 13:24,"841 Lake St, New York City, NY 10001" +276288,Wired Headphones,1,11.99,10/27/19 11:42,"359 Cherry St, San Francisco, CA 94016" +276289,Google Phone,1,600,10/22/19 09:55,"819 1st St, Atlanta, GA 30301" +276290,AAA Batteries (4-pack),1,2.99,10/11/19 09:49,"9 Spruce St, Dallas, TX 75001" +,,,,, +276291,AAA Batteries (4-pack),2,2.99,10/22/19 23:44,"863 12th St, Austin, TX 73301" +276292,27in 4K Gaming Monitor,1,389.99,10/16/19 23:31,"823 Hill St, Portland, OR 97035" +276293,USB-C Charging Cable,1,11.95,10/27/19 16:50,"12 Hickory St, New York City, NY 10001" +276294,AA Batteries (4-pack),1,3.84,10/18/19 15:39,"460 Highland St, New York City, NY 10001" +276295,27in FHD Monitor,1,149.99,10/04/19 19:00,"485 South St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +276296,AAA Batteries (4-pack),1,2.99,10/18/19 11:02,"770 West St, San Francisco, CA 94016" +276297,iPhone,1,700,10/02/19 11:18,"678 2nd St, New York City, NY 10001" +276298,AA Batteries (4-pack),1,3.84,10/07/19 12:58,"263 5th St, San Francisco, CA 94016" +276299,iPhone,1,700,10/18/19 13:27,"941 11th St, Los Angeles, CA 90001" +276299,Apple Airpods Headphones,1,150,10/18/19 13:27,"941 11th St, Los Angeles, CA 90001" +276300,Lightning Charging Cable,1,14.95,10/09/19 22:50,"960 Park St, Los Angeles, CA 90001" +276301,AAA Batteries (4-pack),1,2.99,10/23/19 21:12,"22 7th St, Portland, OR 97035" +276302,Apple Airpods Headphones,1,150,10/07/19 21:36,"403 Jackson St, New York City, NY 10001" +276303,34in Ultrawide Monitor,1,379.99,10/07/19 20:43,"548 Madison St, Portland, OR 97035" +276304,Lightning Charging Cable,1,14.95,10/15/19 06:32,"444 Highland St, Austin, TX 73301" +276305,Bose SoundSport Headphones,1,99.99,10/14/19 23:23,"296 13th St, Austin, TX 73301" +276306,Wired Headphones,1,11.99,10/05/19 09:11,"687 Hill St, San Francisco, CA 94016" +276307,Bose SoundSport Headphones,1,99.99,10/01/19 19:09,"770 Forest St, San Francisco, CA 94016" +276308,AAA Batteries (4-pack),1,2.99,10/13/19 09:44,"566 River St, Los Angeles, CA 90001" +276309,Apple Airpods Headphones,1,150,10/11/19 19:47,"15 Cedar St, Los Angeles, CA 90001" +276310,iPhone,1,700,10/11/19 14:22,"489 Elm St, Austin, TX 73301" +276311,Lightning Charging Cable,1,14.95,10/04/19 20:32,"610 9th St, San Francisco, CA 94016" +276312,Macbook Pro Laptop,1,1700,10/12/19 17:51,"14 Meadow St, Boston, MA 02215" +276313,Lightning Charging Cable,1,14.95,10/16/19 16:55,"453 River St, New York City, NY 10001" +276314,Wired Headphones,1,11.99,10/30/19 19:45,"743 Washington St, San Francisco, CA 94016" +276315,Lightning Charging Cable,1,14.95,10/06/19 17:55,"537 South St, Austin, TX 73301" +276316,Apple Airpods Headphones,1,150,10/01/19 18:02,"350 Cherry St, New York City, NY 10001" +276316,Wired Headphones,1,11.99,10/01/19 18:02,"350 Cherry St, New York City, NY 10001" +276317,20in Monitor,1,109.99,10/17/19 06:10,"163 Johnson St, New York City, NY 10001" +276318,Bose SoundSport Headphones,1,99.99,10/07/19 21:36,"772 Center St, New York City, NY 10001" +276319,Wired Headphones,1,11.99,10/29/19 13:49,"551 Meadow St, Seattle, WA 98101" +276320,ThinkPad Laptop,1,999.99,10/14/19 22:27,"252 14th St, Dallas, TX 75001" +276321,Wired Headphones,1,11.99,10/31/19 20:04,"908 Jefferson St, Los Angeles, CA 90001" +276322,USB-C Charging Cable,1,11.95,10/10/19 19:07,"714 Chestnut St, Seattle, WA 98101" +276323,Lightning Charging Cable,1,14.95,10/24/19 14:39,"724 Jackson St, Seattle, WA 98101" +276324,Flatscreen TV,1,300,10/10/19 17:33,"369 12th St, Los Angeles, CA 90001" +276325,Bose SoundSport Headphones,1,99.99,10/19/19 18:43,"155 Johnson St, Boston, MA 02215" +276326,USB-C Charging Cable,1,11.95,10/01/19 15:51,"457 Park St, San Francisco, CA 94016" +276327,USB-C Charging Cable,1,11.95,10/12/19 20:58,"659 13th St, Boston, MA 02215" +276328,Apple Airpods Headphones,1,150,10/20/19 12:48,"91 Jefferson St, Los Angeles, CA 90001" +276329,Apple Airpods Headphones,1,150,10/10/19 22:58,"503 Madison St, Seattle, WA 98101" +276330,Apple Airpods Headphones,1,150,10/05/19 17:18,"474 Center St, Dallas, TX 75001" +276331,AA Batteries (4-pack),1,3.84,10/06/19 11:37,"490 Adams St, Atlanta, GA 30301" +276332,Wired Headphones,1,11.99,10/31/19 14:23,"282 6th St, New York City, NY 10001" +276333,USB-C Charging Cable,1,11.95,10/20/19 11:53,"664 Meadow St, Austin, TX 73301" +276334,Wired Headphones,1,11.99,10/19/19 10:34,"560 Hill St, Seattle, WA 98101" +276335,Apple Airpods Headphones,1,150,10/20/19 12:54,"290 Cedar St, New York City, NY 10001" +276336,Lightning Charging Cable,1,14.95,10/30/19 15:04,"545 13th St, Atlanta, GA 30301" +276337,Lightning Charging Cable,1,14.95,10/22/19 22:15,"847 Meadow St, Los Angeles, CA 90001" +276338,Apple Airpods Headphones,1,150,10/05/19 17:53,"187 Forest St, Atlanta, GA 30301" +276339,27in FHD Monitor,1,149.99,10/10/19 01:11,"690 Madison St, Boston, MA 02215" +276340,Bose SoundSport Headphones,1,99.99,10/23/19 16:51,"2 Cedar St, Austin, TX 73301" +276341,Apple Airpods Headphones,1,150,10/18/19 18:07,"181 9th St, New York City, NY 10001" +276342,Wired Headphones,1,11.99,10/16/19 17:54,"68 2nd St, San Francisco, CA 94016" +276343,Apple Airpods Headphones,1,150,10/11/19 11:27,"906 North St, Los Angeles, CA 90001" +276344,Macbook Pro Laptop,1,1700,10/05/19 16:32,"212 Sunset St, San Francisco, CA 94016" +276345,Apple Airpods Headphones,1,150,10/22/19 09:56,"276 1st St, Boston, MA 02215" +276346,Bose SoundSport Headphones,1,99.99,10/25/19 11:52,"540 14th St, Portland, OR 97035" +276347,Lightning Charging Cable,1,14.95,10/02/19 13:22,"15 14th St, San Francisco, CA 94016" +276348,Flatscreen TV,1,300,10/14/19 01:05,"917 Chestnut St, Atlanta, GA 30301" +276349,AA Batteries (4-pack),1,3.84,10/11/19 09:11,"482 Church St, Los Angeles, CA 90001" +276350,AAA Batteries (4-pack),1,2.99,10/26/19 23:32,"671 South St, Los Angeles, CA 90001" +276350,Google Phone,1,600,10/26/19 23:32,"671 South St, Los Angeles, CA 90001" +276351,AA Batteries (4-pack),1,3.84,10/29/19 11:21,"783 Lakeview St, San Francisco, CA 94016" +276352,AA Batteries (4-pack),1,3.84,10/23/19 00:45,"567 7th St, Seattle, WA 98101" +276353,Lightning Charging Cable,1,14.95,10/23/19 11:56,"667 Hill St, Boston, MA 02215" +276354,Lightning Charging Cable,1,14.95,10/30/19 11:20,"836 Willow St, Seattle, WA 98101" +276355,Lightning Charging Cable,1,14.95,10/06/19 21:57,"87 10th St, Los Angeles, CA 90001" +276356,27in FHD Monitor,1,149.99,10/04/19 11:38,"562 Madison St, San Francisco, CA 94016" +276357,34in Ultrawide Monitor,1,379.99,10/17/19 07:28,"952 Jackson St, San Francisco, CA 94016" +276358,iPhone,1,700,10/26/19 00:45,"677 Elm St, Atlanta, GA 30301" +276359,Apple Airpods Headphones,1,150,10/10/19 18:40,"192 10th St, Portland, OR 97035" +276360,Bose SoundSport Headphones,1,99.99,10/20/19 23:30,"291 8th St, Atlanta, GA 30301" +276361,Bose SoundSport Headphones,1,99.99,10/27/19 20:28,"784 13th St, San Francisco, CA 94016" +276362,Flatscreen TV,1,300,10/19/19 09:35,"768 Maple St, Seattle, WA 98101" +276363,AA Batteries (4-pack),2,3.84,10/15/19 10:59,"976 Dogwood St, Los Angeles, CA 90001" +276364,AA Batteries (4-pack),2,3.84,10/18/19 19:25,"132 6th St, San Francisco, CA 94016" +276365,Vareebadd Phone,1,400,10/04/19 15:57,"727 Maple St, San Francisco, CA 94016" +276366,34in Ultrawide Monitor,1,379.99,10/04/19 20:25,"836 Lakeview St, Los Angeles, CA 90001" +276367,iPhone,1,700,10/20/19 22:26,"774 Washington St, Boston, MA 02215" +276368,Apple Airpods Headphones,1,150,10/01/19 16:01,"144 11th St, San Francisco, CA 94016" +276369,20in Monitor,1,109.99,10/29/19 22:09,"442 Center St, Los Angeles, CA 90001" +276370,Bose SoundSport Headphones,1,99.99,10/22/19 13:32,"708 Park St, Dallas, TX 75001" +276371,Bose SoundSport Headphones,1,99.99,10/12/19 07:52,"837 Ridge St, New York City, NY 10001" +276372,Wired Headphones,1,11.99,10/06/19 13:03,"409 8th St, San Francisco, CA 94016" +276373,Wired Headphones,1,11.99,10/26/19 11:12,"395 Pine St, San Francisco, CA 94016" +276374,AAA Batteries (4-pack),1,2.99,10/08/19 08:24,"639 South St, Los Angeles, CA 90001" +276375,20in Monitor,1,109.99,10/28/19 19:06,"100 Highland St, Los Angeles, CA 90001" +276376,Lightning Charging Cable,1,14.95,10/11/19 19:45,"965 Pine St, Dallas, TX 75001" +276377,AA Batteries (4-pack),2,3.84,10/21/19 15:09,"498 River St, New York City, NY 10001" +276378,Apple Airpods Headphones,1,150,10/02/19 15:09,"2 Center St, Austin, TX 73301" +276379,Lightning Charging Cable,1,14.95,10/04/19 20:52,"836 Spruce St, San Francisco, CA 94016" +276380,Bose SoundSport Headphones,1,99.99,10/04/19 21:45,"471 11th St, Dallas, TX 75001" +276381,AA Batteries (4-pack),2,3.84,10/20/19 15:51,"239 Elm St, Boston, MA 02215" +276382,Macbook Pro Laptop,1,1700,10/04/19 15:56,"484 14th St, Seattle, WA 98101" +276383,USB-C Charging Cable,1,11.95,10/19/19 09:54,"458 Church St, Los Angeles, CA 90001" +276384,Flatscreen TV,1,300,10/23/19 06:20,"242 Washington St, Los Angeles, CA 90001" +276385,AA Batteries (4-pack),1,3.84,10/03/19 16:49,"948 Lakeview St, San Francisco, CA 94016" +276385,Lightning Charging Cable,1,14.95,10/03/19 16:49,"948 Lakeview St, San Francisco, CA 94016" +276386,AAA Batteries (4-pack),1,2.99,10/16/19 14:46,"405 9th St, New York City, NY 10001" +276387,AAA Batteries (4-pack),1,2.99,10/10/19 23:53,"378 10th St, Los Angeles, CA 90001" +276388,Bose SoundSport Headphones,1,99.99,10/25/19 06:57,"362 Maple St, Boston, MA 02215" +276389,AAA Batteries (4-pack),1,2.99,10/23/19 14:07,"621 8th St, San Francisco, CA 94016" +276390,27in 4K Gaming Monitor,1,389.99,10/20/19 12:28,"970 6th St, San Francisco, CA 94016" +276391,AAA Batteries (4-pack),2,2.99,10/30/19 21:24,"95 River St, Los Angeles, CA 90001" +276392,Lightning Charging Cable,1,14.95,10/20/19 14:25,"378 Washington St, Los Angeles, CA 90001" +276393,ThinkPad Laptop,1,999.99,10/29/19 21:11,"280 Adams St, San Francisco, CA 94016" +276394,AA Batteries (4-pack),1,3.84,10/20/19 18:39,"761 Highland St, San Francisco, CA 94016" +276395,AAA Batteries (4-pack),1,2.99,10/27/19 21:17,"391 West St, San Francisco, CA 94016" +276396,AA Batteries (4-pack),1,3.84,10/01/19 21:07,"696 Meadow St, San Francisco, CA 94016" +276396,Macbook Pro Laptop,1,1700,10/01/19 21:07,"696 Meadow St, San Francisco, CA 94016" +276397,Apple Airpods Headphones,1,150,10/23/19 07:06,"174 Meadow St, New York City, NY 10001" +276398,AA Batteries (4-pack),1,3.84,10/06/19 11:28,"467 Washington St, San Francisco, CA 94016" +276399,ThinkPad Laptop,1,999.99,10/13/19 10:23,"657 Chestnut St, San Francisco, CA 94016" +276400,Wired Headphones,1,11.99,10/24/19 20:32,"385 10th St, Los Angeles, CA 90001" +276401,Flatscreen TV,1,300,10/21/19 22:39,"622 6th St, San Francisco, CA 94016" +276402,ThinkPad Laptop,1,999.99,10/21/19 05:53,"161 9th St, Portland, OR 97035" +276403,ThinkPad Laptop,1,999.99,10/24/19 19:48,"711 14th St, Los Angeles, CA 90001" +276404,USB-C Charging Cable,1,11.95,10/18/19 14:34,"676 Hickory St, Los Angeles, CA 90001" +276405,LG Washing Machine,1,600.0,10/12/19 07:58,"171 South St, San Francisco, CA 94016" +276406,Wired Headphones,1,11.99,10/02/19 11:39,"563 Center St, Boston, MA 02215" +276407,ThinkPad Laptop,1,999.99,10/22/19 15:59,"900 Sunset St, San Francisco, CA 94016" +276408,AAA Batteries (4-pack),2,2.99,10/14/19 10:18,"674 Hill St, Seattle, WA 98101" +276409,Wired Headphones,1,11.99,10/15/19 14:25,"894 11th St, New York City, NY 10001" +276410,Lightning Charging Cable,1,14.95,10/11/19 09:33,"591 10th St, Los Angeles, CA 90001" +276411,Apple Airpods Headphones,1,150,10/23/19 17:06,"640 Jefferson St, New York City, NY 10001" +276412,Bose SoundSport Headphones,1,99.99,10/09/19 08:39,"571 Forest St, San Francisco, CA 94016" +276413,Lightning Charging Cable,1,14.95,10/27/19 20:42,"401 Spruce St, Portland, OR 97035" +276414,Wired Headphones,1,11.99,10/31/19 21:06,"538 8th St, Portland, OR 97035" +276415,AAA Batteries (4-pack),1,2.99,10/15/19 18:50,"529 Forest St, Atlanta, GA 30301" +276416,Macbook Pro Laptop,1,1700,10/29/19 11:22,"217 North St, Austin, TX 73301" +276417,AA Batteries (4-pack),1,3.84,10/14/19 23:06,"819 Forest St, Los Angeles, CA 90001" +276418,Wired Headphones,1,11.99,10/25/19 15:10,"194 Cherry St, San Francisco, CA 94016" +276419,Wired Headphones,1,11.99,10/17/19 16:34,"615 Elm St, Austin, TX 73301" +276420,AAA Batteries (4-pack),1,2.99,10/20/19 22:54,"382 Wilson St, San Francisco, CA 94016" +276421,AA Batteries (4-pack),1,3.84,10/01/19 10:27,"700 Meadow St, Austin, TX 73301" +276422,Lightning Charging Cable,1,14.95,10/01/19 21:09,"435 Cedar St, Los Angeles, CA 90001" +276423,iPhone,2,700,10/24/19 10:05,"865 5th St, Portland, OR 97035" +276423,Lightning Charging Cable,1,14.95,10/24/19 10:05,"865 5th St, Portland, OR 97035" +276424,Flatscreen TV,1,300,10/31/19 15:25,"60 Chestnut St, New York City, NY 10001" +276425,AAA Batteries (4-pack),1,2.99,10/30/19 08:13,"806 Wilson St, Boston, MA 02215" +276426,AA Batteries (4-pack),1,3.84,10/02/19 18:15,"914 Dogwood St, Atlanta, GA 30301" +276427,Apple Airpods Headphones,1,150,10/30/19 19:34,"367 Hickory St, Los Angeles, CA 90001" +276428,AA Batteries (4-pack),1,3.84,10/31/19 13:16,"75 14th St, Boston, MA 02215" +276429,Wired Headphones,1,11.99,10/07/19 08:52,"936 6th St, Los Angeles, CA 90001" +276430,AA Batteries (4-pack),2,3.84,10/30/19 01:09,"232 Church St, Boston, MA 02215" +276431,USB-C Charging Cable,1,11.95,10/22/19 11:25,"702 Hickory St, New York City, NY 10001" +276432,USB-C Charging Cable,2,11.95,10/26/19 17:06,"491 14th St, Dallas, TX 75001" +276433,Lightning Charging Cable,1,14.95,10/08/19 05:11,"903 Madison St, San Francisco, CA 94016" +276434,Google Phone,1,600,10/28/19 21:30,"1 Jefferson St, Dallas, TX 75001" +276434,Apple Airpods Headphones,2,150,10/28/19 21:30,"1 Jefferson St, Dallas, TX 75001" +276435,Bose SoundSport Headphones,1,99.99,10/30/19 15:26,"915 Willow St, Dallas, TX 75001" +276436,Bose SoundSport Headphones,1,99.99,10/11/19 22:15,"346 Adams St, New York City, NY 10001" +276437,AAA Batteries (4-pack),1,2.99,10/12/19 12:06,"668 Johnson St, Seattle, WA 98101" +276438,AAA Batteries (4-pack),3,2.99,10/09/19 20:28,"753 Willow St, Atlanta, GA 30301" +276439,Apple Airpods Headphones,1,150,10/23/19 08:09,"820 Jackson St, New York City, NY 10001" +276440,27in 4K Gaming Monitor,1,389.99,10/16/19 17:59,"325 Elm St, New York City, NY 10001" +276441,34in Ultrawide Monitor,1,379.99,10/27/19 12:12,"406 Adams St, New York City, NY 10001" +276442,AA Batteries (4-pack),1,3.84,10/30/19 21:47,"944 Elm St, Seattle, WA 98101" +276443,Apple Airpods Headphones,1,150,10/24/19 12:41,"443 Maple St, San Francisco, CA 94016" +276444,iPhone,1,700,10/04/19 12:30,"181 West St, Portland, OR 97035" +276445,USB-C Charging Cable,1,11.95,10/01/19 09:10,"161 Washington St, San Francisco, CA 94016" +276445,Macbook Pro Laptop,1,1700,10/01/19 09:10,"161 Washington St, San Francisco, CA 94016" +276446,Lightning Charging Cable,1,14.95,10/25/19 01:17,"185 1st St, San Francisco, CA 94016" +276447,27in FHD Monitor,1,149.99,10/18/19 16:55,"249 West St, Atlanta, GA 30301" +276448,Lightning Charging Cable,1,14.95,10/05/19 11:24,"181 Spruce St, San Francisco, CA 94016" +276449,AAA Batteries (4-pack),1,2.99,10/02/19 19:20,"118 Pine St, Portland, OR 97035" +276450,27in 4K Gaming Monitor,1,389.99,10/21/19 20:47,"650 Church St, Boston, MA 02215" +276451,34in Ultrawide Monitor,1,379.99,10/12/19 18:42,"528 Lake St, Los Angeles, CA 90001" +276452,20in Monitor,1,109.99,10/02/19 12:49,"516 Church St, Atlanta, GA 30301" +276453,27in FHD Monitor,1,149.99,10/22/19 05:45,"334 13th St, San Francisco, CA 94016" +276454,AAA Batteries (4-pack),1,2.99,10/07/19 13:19,"213 8th St, Los Angeles, CA 90001" +276455,Bose SoundSport Headphones,1,99.99,10/13/19 23:20,"146 Meadow St, Boston, MA 02215" +276456,Lightning Charging Cable,1,14.95,10/07/19 07:40,"66 1st St, Dallas, TX 75001" +276457,USB-C Charging Cable,2,11.95,10/12/19 23:50,"949 North St, San Francisco, CA 94016" +276458,AA Batteries (4-pack),1,3.84,10/19/19 17:39,"589 Walnut St, San Francisco, CA 94016" +276459,LG Dryer,1,600.0,10/31/19 17:34,"674 Park St, New York City, NY 10001" +276460,Macbook Pro Laptop,1,1700,10/30/19 19:37,"807 Church St, New York City, NY 10001" +276461,Macbook Pro Laptop,1,1700,10/27/19 20:40,"910 10th St, Boston, MA 02215" +276461,AA Batteries (4-pack),3,3.84,10/27/19 20:40,"910 10th St, Boston, MA 02215" +276462,AA Batteries (4-pack),2,3.84,10/24/19 12:47,"43 Spruce St, Austin, TX 73301" +276463,27in 4K Gaming Monitor,1,389.99,10/26/19 17:54,"704 2nd St, Boston, MA 02215" +276464,USB-C Charging Cable,1,11.95,10/25/19 21:32,"13 13th St, Los Angeles, CA 90001" +276465,Wired Headphones,2,11.99,10/10/19 18:34,"64 South St, Los Angeles, CA 90001" +276466,ThinkPad Laptop,1,999.99,10/15/19 19:39,"490 Main St, Boston, MA 02215" +276467,20in Monitor,1,109.99,10/15/19 09:53,"602 Willow St, Seattle, WA 98101" +276468,AAA Batteries (4-pack),1,2.99,10/26/19 16:50,"169 Jackson St, Seattle, WA 98101" +276469,Flatscreen TV,1,300,10/16/19 23:41,"618 Pine St, Los Angeles, CA 90001" +,,,,, +276470,Vareebadd Phone,1,400,10/31/19 19:38,"591 Lake St, San Francisco, CA 94016" +276471,Apple Airpods Headphones,1,150,10/17/19 15:29,"806 8th St, Portland, ME 04101" +276472,Google Phone,1,600,10/23/19 17:47,"43 10th St, San Francisco, CA 94016" +276473,Wired Headphones,1,11.99,10/24/19 12:28,"94 Meadow St, Los Angeles, CA 90001" +276474,Apple Airpods Headphones,1,150,10/16/19 17:55,"807 Chestnut St, San Francisco, CA 94016" +276474,Apple Airpods Headphones,1,150,10/16/19 17:55,"807 Chestnut St, San Francisco, CA 94016" +276475,34in Ultrawide Monitor,1,379.99,10/15/19 16:51,"426 Wilson St, New York City, NY 10001" +276476,AA Batteries (4-pack),1,3.84,10/04/19 13:06,"612 North St, San Francisco, CA 94016" +276477,34in Ultrawide Monitor,1,379.99,10/09/19 08:48,"43 5th St, New York City, NY 10001" +276478,Apple Airpods Headphones,1,150,10/19/19 17:04,"568 River St, Los Angeles, CA 90001" +276479,ThinkPad Laptop,1,999.99,10/21/19 14:00,"551 9th St, Dallas, TX 75001" +276480,AAA Batteries (4-pack),3,2.99,10/02/19 13:59,"250 Johnson St, Austin, TX 73301" +276481,Lightning Charging Cable,1,14.95,10/30/19 16:01,"700 Wilson St, Los Angeles, CA 90001" +276482,Google Phone,1,600,10/29/19 14:44,"839 Church St, New York City, NY 10001" +276483,Flatscreen TV,1,300,10/03/19 18:08,"402 9th St, Los Angeles, CA 90001" +276484,34in Ultrawide Monitor,1,379.99,10/31/19 18:27,"693 10th St, Boston, MA 02215" +276485,AAA Batteries (4-pack),2,2.99,10/07/19 10:36,"69 9th St, Portland, OR 97035" +276486,USB-C Charging Cable,2,11.95,10/09/19 13:06,"524 14th St, Los Angeles, CA 90001" +276486,Wired Headphones,1,11.99,10/09/19 13:06,"524 14th St, Los Angeles, CA 90001" +276487,USB-C Charging Cable,1,11.95,10/23/19 15:14,"923 1st St, Atlanta, GA 30301" +276488,Lightning Charging Cable,1,14.95,10/28/19 11:45,"50 Sunset St, San Francisco, CA 94016" +,,,,, +276489,AAA Batteries (4-pack),1,2.99,10/06/19 17:23,"888 Elm St, Portland, OR 97035" +276490,AA Batteries (4-pack),1,3.84,10/30/19 15:52,"982 8th St, San Francisco, CA 94016" +276491,USB-C Charging Cable,1,11.95,10/22/19 14:45,"41 Wilson St, Portland, ME 04101" +276492,USB-C Charging Cable,1,11.95,10/03/19 19:47,"292 Center St, Boston, MA 02215" +276493,USB-C Charging Cable,1,11.95,10/16/19 13:08,"379 Lakeview St, Austin, TX 73301" +276494,Google Phone,1,600,10/22/19 19:04,"32 10th St, Atlanta, GA 30301" +276494,USB-C Charging Cable,1,11.95,10/22/19 19:04,"32 10th St, Atlanta, GA 30301" +276495,USB-C Charging Cable,1,11.95,10/01/19 12:06,"796 Elm St, Los Angeles, CA 90001" +276496,iPhone,1,700,10/08/19 19:21,"548 Dogwood St, Portland, OR 97035" +276497,34in Ultrawide Monitor,1,379.99,10/25/19 18:51,"274 Ridge St, San Francisco, CA 94016" +276498,USB-C Charging Cable,1,11.95,10/02/19 13:46,"370 Elm St, New York City, NY 10001" +276499,Lightning Charging Cable,1,14.95,10/18/19 17:41,"553 Johnson St, Boston, MA 02215" +276500,USB-C Charging Cable,1,11.95,10/27/19 16:36,"577 River St, Austin, TX 73301" +276501,Apple Airpods Headphones,1,150,10/14/19 13:07,"809 Cherry St, Los Angeles, CA 90001" +276502,34in Ultrawide Monitor,1,379.99,10/05/19 17:43,"158 North St, New York City, NY 10001" +276503,Apple Airpods Headphones,1,150,10/16/19 00:39,"595 Washington St, Los Angeles, CA 90001" +276504,AAA Batteries (4-pack),1,2.99,10/30/19 16:24,"103 Forest St, San Francisco, CA 94016" +276505,AAA Batteries (4-pack),3,2.99,10/06/19 22:05,"91 7th St, Austin, TX 73301" +276506,Wired Headphones,1,11.99,10/18/19 18:31,"884 Sunset St, Boston, MA 02215" +276507,AA Batteries (4-pack),1,3.84,10/28/19 20:10,"367 Madison St, Atlanta, GA 30301" +276508,Apple Airpods Headphones,1,150,10/31/19 21:16,"790 Pine St, Dallas, TX 75001" +276508,Apple Airpods Headphones,1,150,10/31/19 21:16,"790 Pine St, Dallas, TX 75001" +276509,Apple Airpods Headphones,1,150,10/14/19 08:27,"985 North St, Boston, MA 02215" +276510,Apple Airpods Headphones,1,150,10/28/19 15:09,"886 Adams St, Los Angeles, CA 90001" +276511,AA Batteries (4-pack),2,3.84,10/20/19 05:30,"976 Lakeview St, Atlanta, GA 30301" +276512,AA Batteries (4-pack),1,3.84,10/16/19 01:31,"987 Meadow St, Boston, MA 02215" +276513,USB-C Charging Cable,1,11.95,10/15/19 17:58,"799 12th St, Los Angeles, CA 90001" +276514,AA Batteries (4-pack),1,3.84,10/21/19 11:11,"754 Willow St, Boston, MA 02215" +276515,AA Batteries (4-pack),2,3.84,10/25/19 11:45,"905 Ridge St, Austin, TX 73301" +276516,AAA Batteries (4-pack),1,2.99,10/02/19 14:40,"798 Main St, San Francisco, CA 94016" +276517,Apple Airpods Headphones,1,150,10/20/19 14:33,"999 Spruce St, New York City, NY 10001" +276518,Wired Headphones,1,11.99,10/07/19 14:02,"708 Lakeview St, New York City, NY 10001" +276519,Bose SoundSport Headphones,1,99.99,10/30/19 10:29,"647 Dogwood St, New York City, NY 10001" +276520,AA Batteries (4-pack),1,3.84,10/29/19 15:33,"277 Lincoln St, New York City, NY 10001" +276521,27in FHD Monitor,1,149.99,10/03/19 20:02,"927 Madison St, Los Angeles, CA 90001" +276522,AA Batteries (4-pack),2,3.84,10/12/19 15:46,"456 Walnut St, Portland, OR 97035" +276523,ThinkPad Laptop,1,999.99,10/14/19 19:32,"186 Forest St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +276524,Wired Headphones,1,11.99,10/12/19 16:19,"129 Johnson St, Portland, OR 97035" +276525,20in Monitor,1,109.99,10/02/19 22:47,"85 14th St, San Francisco, CA 94016" +276526,USB-C Charging Cable,2,11.95,10/13/19 14:37,"581 9th St, San Francisco, CA 94016" +276527,Google Phone,1,600,10/10/19 13:39,"625 Washington St, Dallas, TX 75001" +276527,USB-C Charging Cable,1,11.95,10/10/19 13:39,"625 Washington St, Dallas, TX 75001" +276528,Bose SoundSport Headphones,1,99.99,10/07/19 20:18,"777 14th St, New York City, NY 10001" +276528,USB-C Charging Cable,1,11.95,10/07/19 20:18,"777 14th St, New York City, NY 10001" +276529,Google Phone,1,600,10/30/19 14:48,"818 Sunset St, Atlanta, GA 30301" +276530,USB-C Charging Cable,1,11.95,10/21/19 20:43,"31 5th St, Los Angeles, CA 90001" +276531,Vareebadd Phone,1,400,10/23/19 14:12,"824 Willow St, Dallas, TX 75001" +276532,20in Monitor,1,109.99,10/10/19 11:49,"517 9th St, San Francisco, CA 94016" +276533,iPhone,1,700,10/02/19 05:55,"859 Hill St, San Francisco, CA 94016" +276533,Wired Headphones,1,11.99,10/02/19 05:55,"859 Hill St, San Francisco, CA 94016" +276534,27in FHD Monitor,1,149.99,10/22/19 16:39,"444 Jefferson St, Atlanta, GA 30301" +276535,LG Dryer,1,600.0,10/08/19 08:05,"308 Highland St, Los Angeles, CA 90001" +276536,AA Batteries (4-pack),1,3.84,10/02/19 11:56,"734 Washington St, Dallas, TX 75001" +276537,ThinkPad Laptop,1,999.99,10/12/19 14:46,"185 Forest St, Seattle, WA 98101" +276538,Lightning Charging Cable,1,14.95,10/11/19 07:30,"349 Madison St, New York City, NY 10001" +276539,USB-C Charging Cable,1,11.95,10/27/19 13:49,"187 Johnson St, San Francisco, CA 94016" +276540,27in 4K Gaming Monitor,1,389.99,10/05/19 13:51,"464 10th St, Seattle, WA 98101" +276541,Google Phone,1,600,10/25/19 22:41,"53 2nd St, San Francisco, CA 94016" +276542,Apple Airpods Headphones,1,150,10/11/19 15:39,"89 South St, Boston, MA 02215" +276543,Lightning Charging Cable,2,14.95,10/18/19 20:26,"955 Center St, Austin, TX 73301" +276544,27in 4K Gaming Monitor,1,389.99,10/03/19 23:06,"613 Walnut St, Atlanta, GA 30301" +276545,iPhone,1,700,10/14/19 14:57,"215 13th St, New York City, NY 10001" +276546,AAA Batteries (4-pack),1,2.99,10/17/19 16:43,"65 Hickory St, San Francisco, CA 94016" +276547,34in Ultrawide Monitor,1,379.99,10/21/19 21:57,"723 13th St, Dallas, TX 75001" +276548,20in Monitor,1,109.99,10/23/19 01:08,"671 West St, San Francisco, CA 94016" +276549,Wired Headphones,1,11.99,10/29/19 22:30,"156 13th St, Seattle, WA 98101" +276550,Lightning Charging Cable,1,14.95,10/08/19 15:34,"683 7th St, Boston, MA 02215" +276551,Apple Airpods Headphones,1,150,10/29/19 11:04,"929 Jefferson St, Dallas, TX 75001" +276552,Lightning Charging Cable,2,14.95,10/14/19 10:23,"993 Forest St, Atlanta, GA 30301" +276553,27in FHD Monitor,1,149.99,10/23/19 00:45,"38 14th St, Boston, MA 02215" +276554,ThinkPad Laptop,1,999.99,10/13/19 16:03,"232 Church St, Seattle, WA 98101" +276555,USB-C Charging Cable,1,11.95,10/27/19 16:11,"649 Adams St, Boston, MA 02215" +276556,Lightning Charging Cable,1,14.95,10/01/19 10:38,"927 Church St, Los Angeles, CA 90001" +276557,Flatscreen TV,1,300,10/28/19 07:30,"772 6th St, Los Angeles, CA 90001" +276558,Flatscreen TV,1,300,10/14/19 09:32,"142 River St, Austin, TX 73301" +276559,Wired Headphones,1,11.99,10/01/19 15:53,"12 Cedar St, Austin, TX 73301" +276560,AA Batteries (4-pack),1,3.84,10/24/19 12:11,"450 12th St, Los Angeles, CA 90001" +276561,Wired Headphones,1,11.99,10/14/19 17:39,"61 Hill St, New York City, NY 10001" +276562,LG Washing Machine,1,600.0,10/05/19 18:15,"315 4th St, San Francisco, CA 94016" +276563,AA Batteries (4-pack),2,3.84,10/04/19 11:03,"245 Highland St, Seattle, WA 98101" +276564,Apple Airpods Headphones,1,150,10/27/19 18:56,"170 9th St, San Francisco, CA 94016" +276564,27in FHD Monitor,1,149.99,10/27/19 18:56,"170 9th St, San Francisco, CA 94016" +276565,Lightning Charging Cable,1,14.95,10/11/19 12:40,"955 Madison St, Boston, MA 02215" +276566,20in Monitor,1,109.99,10/08/19 22:37,"787 10th St, Austin, TX 73301" +276567,Lightning Charging Cable,1,14.95,10/14/19 09:06,"38 Dogwood St, Boston, MA 02215" +276568,AAA Batteries (4-pack),1,2.99,10/02/19 18:15,"59 Walnut St, Los Angeles, CA 90001" +276569,Apple Airpods Headphones,1,150,10/21/19 14:09,"643 6th St, San Francisco, CA 94016" +276570,27in 4K Gaming Monitor,1,389.99,10/16/19 23:01,"721 11th St, Los Angeles, CA 90001" +276571,AAA Batteries (4-pack),1,2.99,10/09/19 10:38,"456 West St, Atlanta, GA 30301" +276572,Lightning Charging Cable,1,14.95,10/29/19 20:40,"676 Walnut St, Austin, TX 73301" +276573,Wired Headphones,1,11.99,10/28/19 13:22,"517 5th St, Los Angeles, CA 90001" +276574,AA Batteries (4-pack),1,3.84,10/06/19 17:07,"597 Church St, Dallas, TX 75001" +276575,Apple Airpods Headphones,1,150,10/17/19 11:04,"388 Spruce St, Boston, MA 02215" +276576,ThinkPad Laptop,1,999.99,10/23/19 10:16,"32 Washington St, Boston, MA 02215" +276577,AAA Batteries (4-pack),1,2.99,10/01/19 12:49,"738 Main St, Los Angeles, CA 90001" +276578,AA Batteries (4-pack),1,3.84,10/20/19 16:10,"569 Park St, New York City, NY 10001" +276579,Flatscreen TV,1,300,10/12/19 11:33,"150 5th St, San Francisco, CA 94016" +276580,USB-C Charging Cable,1,11.95,10/10/19 19:42,"189 5th St, Atlanta, GA 30301" +276581,AA Batteries (4-pack),2,3.84,10/18/19 13:29,"375 Johnson St, San Francisco, CA 94016" +276582,Wired Headphones,1,11.99,10/24/19 15:39,"925 Main St, Atlanta, GA 30301" +276583,Flatscreen TV,1,300,10/17/19 12:37,"692 Jackson St, San Francisco, CA 94016" +276584,iPhone,1,700,10/12/19 12:36,"863 Johnson St, New York City, NY 10001" +276585,AA Batteries (4-pack),2,3.84,10/08/19 13:51,"256 Jefferson St, Los Angeles, CA 90001" +276586,AA Batteries (4-pack),1,3.84,10/31/19 15:18,"356 Lake St, Atlanta, GA 30301" +276587,Lightning Charging Cable,3,14.95,10/14/19 18:40,"416 Willow St, New York City, NY 10001" +276588,AA Batteries (4-pack),1,3.84,10/02/19 21:47,"945 7th St, San Francisco, CA 94016" +276589,Wired Headphones,1,11.99,10/08/19 18:33,"312 Washington St, New York City, NY 10001" +276590,Lightning Charging Cable,1,14.95,10/09/19 14:43,"441 1st St, Seattle, WA 98101" +276591,27in FHD Monitor,1,149.99,10/19/19 13:27,"144 11th St, Los Angeles, CA 90001" +276592,AAA Batteries (4-pack),1,2.99,10/05/19 20:21,"641 10th St, Seattle, WA 98101" +276593,USB-C Charging Cable,1,11.95,10/30/19 14:47,"799 Spruce St, Atlanta, GA 30301" +276594,AAA Batteries (4-pack),1,2.99,10/07/19 13:56,"338 14th St, San Francisco, CA 94016" +276595,Apple Airpods Headphones,1,150,10/23/19 06:36,"955 North St, New York City, NY 10001" +276596,AA Batteries (4-pack),1,3.84,10/12/19 09:23,"535 Johnson St, New York City, NY 10001" +276597,Bose SoundSport Headphones,1,99.99,10/03/19 15:10,"343 Cedar St, Dallas, TX 75001" +276598,Bose SoundSport Headphones,1,99.99,10/08/19 19:59,"598 Johnson St, Dallas, TX 75001" +276599,Lightning Charging Cable,1,14.95,10/13/19 09:51,"754 Highland St, Boston, MA 02215" +276600,Macbook Pro Laptop,1,1700,10/24/19 23:17,"648 7th St, Atlanta, GA 30301" +276601,27in 4K Gaming Monitor,1,389.99,10/19/19 20:44,"734 Washington St, Portland, OR 97035" +276602,Bose SoundSport Headphones,1,99.99,10/20/19 16:08,"734 2nd St, Boston, MA 02215" +276603,AA Batteries (4-pack),1,3.84,10/06/19 11:50,"872 Washington St, San Francisco, CA 94016" +276604,34in Ultrawide Monitor,1,379.99,10/19/19 14:49,"532 Sunset St, Boston, MA 02215" +276605,34in Ultrawide Monitor,1,379.99,10/15/19 14:15,"347 4th St, Portland, OR 97035" +276606,AA Batteries (4-pack),1,3.84,10/08/19 17:11,"467 Willow St, Austin, TX 73301" +276607,Bose SoundSport Headphones,1,99.99,10/23/19 21:40,"982 7th St, Austin, TX 73301" +276608,Google Phone,1,600,10/12/19 05:19,"143 Meadow St, Atlanta, GA 30301" +276609,AAA Batteries (4-pack),3,2.99,10/11/19 01:24,"864 Meadow St, Boston, MA 02215" +276610,Apple Airpods Headphones,1,150,10/26/19 20:10,"489 Hill St, Austin, TX 73301" +276611,ThinkPad Laptop,1,999.99,10/06/19 14:18,"296 River St, Los Angeles, CA 90001" +276612,Lightning Charging Cable,1,14.95,10/07/19 16:21,"537 Jackson St, Boston, MA 02215" +276613,AAA Batteries (4-pack),1,2.99,10/08/19 21:49,"868 Elm St, New York City, NY 10001" +276614,Wired Headphones,1,11.99,10/20/19 18:54,"400 North St, Atlanta, GA 30301" +276615,Lightning Charging Cable,1,14.95,10/14/19 12:04,"985 14th St, Los Angeles, CA 90001" +276616,AAA Batteries (4-pack),1,2.99,10/15/19 14:51,"854 South St, Los Angeles, CA 90001" +276617,Bose SoundSport Headphones,1,99.99,10/24/19 13:49,"512 Hickory St, Portland, OR 97035" +276618,USB-C Charging Cable,2,11.95,10/26/19 11:38,"143 Highland St, Austin, TX 73301" +276619,27in 4K Gaming Monitor,1,389.99,10/11/19 23:13,"749 13th St, Seattle, WA 98101" +276620,AAA Batteries (4-pack),1,2.99,10/15/19 17:01,"612 Johnson St, Austin, TX 73301" +276621,Apple Airpods Headphones,1,150,10/07/19 21:37,"584 Jefferson St, Portland, OR 97035" +276622,AAA Batteries (4-pack),4,2.99,10/21/19 00:45,"693 Johnson St, Boston, MA 02215" +276623,Wired Headphones,1,11.99,10/17/19 11:09,"814 14th St, San Francisco, CA 94016" +276624,27in FHD Monitor,1,149.99,10/22/19 18:50,"165 Forest St, Seattle, WA 98101" +276625,AA Batteries (4-pack),1,3.84,10/04/19 19:00,"787 Hill St, Portland, OR 97035" +276626,Wired Headphones,1,11.99,10/29/19 16:22,"473 Forest St, Atlanta, GA 30301" +276627,Bose SoundSport Headphones,1,99.99,10/20/19 18:17,"621 Park St, San Francisco, CA 94016" +276628,AAA Batteries (4-pack),1,2.99,10/10/19 18:47,"653 Forest St, Los Angeles, CA 90001" +276629,Wired Headphones,1,11.99,10/27/19 20:04,"622 12th St, New York City, NY 10001" +276630,Lightning Charging Cable,1,14.95,10/20/19 21:57,"584 Wilson St, San Francisco, CA 94016" +276631,27in 4K Gaming Monitor,1,389.99,10/03/19 10:53,"390 North St, Los Angeles, CA 90001" +276632,Wired Headphones,1,11.99,10/16/19 12:36,"737 Walnut St, New York City, NY 10001" +276633,AAA Batteries (4-pack),1,2.99,10/17/19 09:06,"571 10th St, Dallas, TX 75001" +276634,Wired Headphones,1,11.99,10/31/19 11:20,"454 Jefferson St, New York City, NY 10001" +276635,Lightning Charging Cable,1,14.95,10/19/19 15:18,"179 10th St, San Francisco, CA 94016" +276636,AA Batteries (4-pack),1,3.84,10/31/19 16:00,"321 6th St, San Francisco, CA 94016" +276637,Macbook Pro Laptop,1,1700,10/29/19 14:30,"356 13th St, Los Angeles, CA 90001" +276638,Wired Headphones,1,11.99,10/11/19 12:01,"274 Forest St, New York City, NY 10001" +276639,Bose SoundSport Headphones,1,99.99,10/08/19 13:57,"762 Johnson St, Los Angeles, CA 90001" +276639,USB-C Charging Cable,1,11.95,10/08/19 13:57,"762 Johnson St, Los Angeles, CA 90001" +276640,Bose SoundSport Headphones,2,99.99,10/28/19 22:51,"638 Sunset St, San Francisco, CA 94016" +276641,27in FHD Monitor,1,149.99,10/13/19 07:07,"475 Jackson St, San Francisco, CA 94016" +276642,USB-C Charging Cable,1,11.95,10/31/19 15:52,"215 Ridge St, San Francisco, CA 94016" +276643,USB-C Charging Cable,1,11.95,10/24/19 10:43,"963 Jackson St, New York City, NY 10001" +276644,Macbook Pro Laptop,1,1700,10/03/19 20:15,"286 Chestnut St, Los Angeles, CA 90001" +276645,27in 4K Gaming Monitor,1,389.99,10/06/19 11:30,"281 Wilson St, Portland, OR 97035" +276646,AA Batteries (4-pack),3,3.84,10/09/19 22:12,"693 11th St, Dallas, TX 75001" +276647,27in 4K Gaming Monitor,1,389.99,10/13/19 09:58,"102 North St, San Francisco, CA 94016" +276648,Flatscreen TV,1,300,10/24/19 11:48,"140 Lincoln St, New York City, NY 10001" +276649,AA Batteries (4-pack),1,3.84,10/07/19 09:45,"948 Cedar St, San Francisco, CA 94016" +276650,ThinkPad Laptop,1,999.99,10/31/19 14:28,"808 Church St, New York City, NY 10001" +276651,Apple Airpods Headphones,1,150,10/11/19 20:00,"373 Church St, Dallas, TX 75001" +276652,Bose SoundSport Headphones,1,99.99,10/28/19 17:40,"354 Maple St, Los Angeles, CA 90001" +276653,AA Batteries (4-pack),1,3.84,10/07/19 06:32,"20 Center St, Dallas, TX 75001" +276654,AA Batteries (4-pack),1,3.84,10/18/19 15:55,"630 Pine St, Los Angeles, CA 90001" +276655,Bose SoundSport Headphones,1,99.99,10/27/19 22:31,"465 1st St, Los Angeles, CA 90001" +276656,AAA Batteries (4-pack),1,2.99,10/14/19 13:34,"531 Adams St, Los Angeles, CA 90001" +276657,27in FHD Monitor,1,149.99,10/10/19 10:39,"819 Pine St, Boston, MA 02215" +276658,34in Ultrawide Monitor,1,379.99,10/06/19 06:10,"183 Center St, Boston, MA 02215" +276659,USB-C Charging Cable,1,11.95,10/26/19 21:17,"950 Ridge St, Portland, OR 97035" +276660,34in Ultrawide Monitor,1,379.99,10/26/19 12:55,"584 River St, Atlanta, GA 30301" +276661,LG Washing Machine,1,600.0,10/03/19 23:25,"990 Adams St, New York City, NY 10001" +276662,27in FHD Monitor,1,149.99,10/07/19 09:44,"780 Madison St, San Francisco, CA 94016" +276663,Lightning Charging Cable,1,14.95,10/29/19 20:46,"37 9th St, New York City, NY 10001" +276664,AAA Batteries (4-pack),2,2.99,10/25/19 20:36,"267 13th St, Los Angeles, CA 90001" +276665,Bose SoundSport Headphones,1,99.99,10/06/19 19:59,"170 Main St, Portland, ME 04101" +276666,Wired Headphones,1,11.99,10/29/19 09:56,"349 Lakeview St, San Francisco, CA 94016" +276667,USB-C Charging Cable,1,11.95,10/11/19 08:51,"337 Dogwood St, San Francisco, CA 94016" +276668,Macbook Pro Laptop,1,1700,10/13/19 17:36,"676 Walnut St, Los Angeles, CA 90001" +276669,Bose SoundSport Headphones,1,99.99,10/16/19 12:42,"905 Elm St, New York City, NY 10001" +276670,27in FHD Monitor,1,149.99,10/07/19 15:43,"414 5th St, San Francisco, CA 94016" +276671,AA Batteries (4-pack),1,3.84,10/15/19 10:34,"979 6th St, Los Angeles, CA 90001" +276672,Apple Airpods Headphones,1,150,10/25/19 13:31,"204 9th St, Seattle, WA 98101" +276673,AA Batteries (4-pack),2,3.84,10/22/19 17:16,"64 11th St, Seattle, WA 98101" +276674,Apple Airpods Headphones,1,150,10/09/19 00:46,"308 Cedar St, Seattle, WA 98101" +276675,USB-C Charging Cable,1,11.95,10/10/19 22:02,"342 Washington St, Boston, MA 02215" +276676,Apple Airpods Headphones,1,150,10/10/19 17:32,"625 West St, New York City, NY 10001" +276677,Bose SoundSport Headphones,1,99.99,10/31/19 12:30,"652 Washington St, Los Angeles, CA 90001" +276678,USB-C Charging Cable,1,11.95,10/31/19 15:09,"699 14th St, San Francisco, CA 94016" +276679,AAA Batteries (4-pack),1,2.99,10/14/19 17:37,"67 Hickory St, Boston, MA 02215" +276680,Apple Airpods Headphones,1,150,10/14/19 14:39,"674 Main St, Los Angeles, CA 90001" +276681,AA Batteries (4-pack),1,3.84,10/17/19 14:19,"13 Jackson St, New York City, NY 10001" +276682,USB-C Charging Cable,1,11.95,10/02/19 11:02,"873 Main St, San Francisco, CA 94016" +276683,AAA Batteries (4-pack),1,2.99,10/09/19 21:11,"222 Lake St, San Francisco, CA 94016" +276684,Wired Headphones,1,11.99,10/05/19 06:42,"256 6th St, Boston, MA 02215" +276685,Lightning Charging Cable,1,14.95,10/07/19 12:24,"464 Washington St, Los Angeles, CA 90001" +276686,Wired Headphones,1,11.99,10/16/19 11:40,"189 Dogwood St, Seattle, WA 98101" +276687,Lightning Charging Cable,1,14.95,10/23/19 20:45,"97 11th St, New York City, NY 10001" +276688,USB-C Charging Cable,1,11.95,10/10/19 14:43,"868 4th St, New York City, NY 10001" +276689,Wired Headphones,1,11.99,10/07/19 00:43,"409 Madison St, San Francisco, CA 94016" +276690,Apple Airpods Headphones,1,150,10/27/19 13:39,"363 Jefferson St, San Francisco, CA 94016" +276691,AAA Batteries (4-pack),1,2.99,10/19/19 09:38,"170 Adams St, Los Angeles, CA 90001" +276692,iPhone,1,700,10/18/19 18:43,"124 Cherry St, New York City, NY 10001" +276693,AA Batteries (4-pack),1,3.84,10/17/19 21:57,"735 West St, New York City, NY 10001" +276694,Wired Headphones,1,11.99,10/14/19 20:32,"712 8th St, Boston, MA 02215" +276695,iPhone,1,700,10/01/19 04:34,"53 Sunset St, Atlanta, GA 30301" +276696,27in FHD Monitor,1,149.99,10/08/19 14:15,"631 Adams St, Portland, OR 97035" +276696,Wired Headphones,1,11.99,10/08/19 14:15,"631 Adams St, Portland, OR 97035" +276697,Lightning Charging Cable,1,14.95,10/08/19 09:33,"886 Lincoln St, New York City, NY 10001" +276698,Bose SoundSport Headphones,1,99.99,10/21/19 21:11,"706 Hickory St, San Francisco, CA 94016" +276699,Lightning Charging Cable,1,14.95,10/05/19 15:52,"639 River St, Dallas, TX 75001" +276700,27in FHD Monitor,1,149.99,10/28/19 16:23,"801 Ridge St, San Francisco, CA 94016" +276701,Apple Airpods Headphones,1,150,10/23/19 23:03,"3 Park St, Dallas, TX 75001" +276702,Apple Airpods Headphones,1,150,10/09/19 10:58,"260 Cedar St, New York City, NY 10001" +276703,Wired Headphones,1,11.99,10/10/19 23:27,"403 Maple St, San Francisco, CA 94016" +276704,USB-C Charging Cable,1,11.95,10/14/19 17:42,"531 Sunset St, Portland, OR 97035" +276705,USB-C Charging Cable,1,11.95,10/24/19 21:52,"888 Lincoln St, Dallas, TX 75001" +276706,Lightning Charging Cable,1,14.95,10/21/19 12:53,"349 11th St, San Francisco, CA 94016" +276707,Wired Headphones,1,11.99,10/10/19 14:46,"953 1st St, New York City, NY 10001" +276708,USB-C Charging Cable,1,11.95,10/28/19 17:50,"963 6th St, Los Angeles, CA 90001" +276709,27in FHD Monitor,1,149.99,10/25/19 22:35,"634 Highland St, Boston, MA 02215" +276710,AAA Batteries (4-pack),3,2.99,10/26/19 00:07,"837 Cherry St, Los Angeles, CA 90001" +276711,Wired Headphones,1,11.99,10/31/19 14:23,"368 Maple St, San Francisco, CA 94016" +276712,LG Washing Machine,1,600.0,10/13/19 21:50,"600 South St, Portland, ME 04101" +276713,AAA Batteries (4-pack),1,2.99,10/31/19 11:57,"87 Hickory St, Dallas, TX 75001" +276714,AA Batteries (4-pack),1,3.84,10/01/19 13:26,"895 Adams St, San Francisco, CA 94016" +276715,Bose SoundSport Headphones,1,99.99,10/30/19 09:33,"302 7th St, Boston, MA 02215" +276716,USB-C Charging Cable,1,11.95,10/22/19 09:44,"777 Lake St, New York City, NY 10001" +276717,AAA Batteries (4-pack),1,2.99,10/26/19 21:44,"979 9th St, Atlanta, GA 30301" +276718,Apple Airpods Headphones,1,150,10/06/19 20:14,"451 Church St, Dallas, TX 75001" +276719,20in Monitor,1,109.99,10/17/19 11:07,"48 4th St, Seattle, WA 98101" +276720,USB-C Charging Cable,1,11.95,10/18/19 10:25,"982 Willow St, San Francisco, CA 94016" +276721,iPhone,1,700,10/30/19 10:40,"792 Willow St, Dallas, TX 75001" +276721,Lightning Charging Cable,1,14.95,10/30/19 10:40,"792 Willow St, Dallas, TX 75001" +276722,Bose SoundSport Headphones,1,99.99,10/25/19 20:31,"659 Spruce St, Dallas, TX 75001" +276723,AAA Batteries (4-pack),1,2.99,10/08/19 16:30,"709 Lake St, Los Angeles, CA 90001" +276724,Google Phone,1,600,10/27/19 22:48,"176 West St, Atlanta, GA 30301" +276724,USB-C Charging Cable,1,11.95,10/27/19 22:48,"176 West St, Atlanta, GA 30301" +276725,27in FHD Monitor,1,149.99,10/30/19 10:55,"848 South St, New York City, NY 10001" +276726,AAA Batteries (4-pack),1,2.99,10/13/19 20:08,"77 Spruce St, Los Angeles, CA 90001" +276727,AA Batteries (4-pack),1,3.84,10/28/19 10:12,"687 7th St, Portland, OR 97035" +276728,Macbook Pro Laptop,1,1700,10/17/19 01:00,"899 West St, San Francisco, CA 94016" +276729,AAA Batteries (4-pack),1,2.99,10/20/19 15:09,"552 14th St, Boston, MA 02215" +276730,Bose SoundSport Headphones,1,99.99,10/28/19 21:57,"794 4th St, New York City, NY 10001" +276731,USB-C Charging Cable,1,11.95,10/14/19 19:16,"299 Jackson St, Boston, MA 02215" +276732,Lightning Charging Cable,1,14.95,10/04/19 11:14,"362 Spruce St, Atlanta, GA 30301" +276733,Wired Headphones,1,11.99,10/10/19 11:31,"6 10th St, New York City, NY 10001" +276734,Lightning Charging Cable,2,14.95,10/11/19 20:35,"557 Willow St, Los Angeles, CA 90001" +276735,USB-C Charging Cable,1,11.95,10/17/19 10:50,"836 10th St, Boston, MA 02215" +276736,Bose SoundSport Headphones,1,99.99,10/15/19 07:14,"570 10th St, San Francisco, CA 94016" +276737,AA Batteries (4-pack),1,3.84,10/26/19 00:01,"362 Ridge St, Austin, TX 73301" +276738,AAA Batteries (4-pack),2,2.99,10/22/19 18:27,"782 9th St, Dallas, TX 75001" +276739,AAA Batteries (4-pack),2,2.99,10/18/19 00:41,"885 Church St, New York City, NY 10001" +276740,AA Batteries (4-pack),2,3.84,10/06/19 13:34,"417 North St, San Francisco, CA 94016" +276741,Wired Headphones,1,11.99,10/12/19 15:21,"365 Johnson St, San Francisco, CA 94016" +276742,Lightning Charging Cable,1,14.95,10/10/19 22:20,"234 Lakeview St, San Francisco, CA 94016" +276743,USB-C Charging Cable,1,11.95,10/02/19 13:04,"330 South St, New York City, NY 10001" +276744,AAA Batteries (4-pack),1,2.99,10/18/19 20:41,"386 River St, Austin, TX 73301" +276745,34in Ultrawide Monitor,1,379.99,10/30/19 21:22,"842 2nd St, Austin, TX 73301" +276746,Flatscreen TV,1,300,10/15/19 11:35,"174 Park St, New York City, NY 10001" +276747,Lightning Charging Cable,2,14.95,10/02/19 20:36,"780 Lake St, New York City, NY 10001" +276748,Lightning Charging Cable,1,14.95,10/11/19 08:03,"845 Forest St, Seattle, WA 98101" +276749,Lightning Charging Cable,1,14.95,10/16/19 01:07,"881 Jefferson St, San Francisco, CA 94016" +276750,ThinkPad Laptop,1,999.99,10/10/19 21:23,"268 7th St, San Francisco, CA 94016" +276751,USB-C Charging Cable,1,11.95,10/18/19 10:08,"768 Chestnut St, San Francisco, CA 94016" +276752,USB-C Charging Cable,1,11.95,10/02/19 01:38,"73 11th St, Atlanta, GA 30301" +276753,Flatscreen TV,1,300,10/17/19 12:54,"482 10th St, Los Angeles, CA 90001" +276754,LG Washing Machine,1,600.0,10/07/19 12:50,"603 Highland St, Portland, ME 04101" +276755,Lightning Charging Cable,1,14.95,10/27/19 17:08,"651 Madison St, San Francisco, CA 94016" +276756,USB-C Charging Cable,1,11.95,10/10/19 09:20,"928 Church St, San Francisco, CA 94016" +276757,27in 4K Gaming Monitor,1,389.99,10/05/19 15:31,"59 Madison St, Los Angeles, CA 90001" +276758,Lightning Charging Cable,1,14.95,10/11/19 16:27,"916 Meadow St, Dallas, TX 75001" +276759,Bose SoundSport Headphones,1,99.99,10/07/19 18:45,"170 Wilson St, Boston, MA 02215" +276760,Wired Headphones,1,11.99,10/31/19 23:02,"383 Cherry St, Boston, MA 02215" +276761,Flatscreen TV,1,300,10/31/19 08:40,"440 Hickory St, Los Angeles, CA 90001" +276762,AA Batteries (4-pack),2,3.84,10/02/19 22:10,"701 Dogwood St, Los Angeles, CA 90001" +276763,Wired Headphones,1,11.99,10/15/19 12:14,"404 Park St, Austin, TX 73301" +276764,iPhone,1,700,10/08/19 19:07,"889 Forest St, San Francisco, CA 94016" +276765,AAA Batteries (4-pack),1,2.99,10/10/19 15:28,"775 Washington St, New York City, NY 10001" +276766,Wired Headphones,1,11.99,10/05/19 13:34,"861 Jackson St, Atlanta, GA 30301" +276767,27in FHD Monitor,1,149.99,10/18/19 18:36,"722 North St, Seattle, WA 98101" +276768,AAA Batteries (4-pack),2,2.99,10/26/19 10:30,"313 Hickory St, San Francisco, CA 94016" +276768,Wired Headphones,1,11.99,10/26/19 10:30,"313 Hickory St, San Francisco, CA 94016" +276769,Google Phone,1,600,10/12/19 20:17,"28 Main St, Atlanta, GA 30301" +276770,27in FHD Monitor,1,149.99,10/30/19 20:15,"35 Pine St, Atlanta, GA 30301" +276771,Apple Airpods Headphones,1,150,10/31/19 19:08,"779 Elm St, Atlanta, GA 30301" +276772,Wired Headphones,1,11.99,10/31/19 09:17,"186 4th St, Boston, MA 02215" +276773,AAA Batteries (4-pack),2,2.99,10/07/19 04:39,"294 Sunset St, Los Angeles, CA 90001" +276774,AAA Batteries (4-pack),1,2.99,10/23/19 23:10,"145 Lakeview St, Los Angeles, CA 90001" +276775,Macbook Pro Laptop,1,1700,10/04/19 01:36,"487 Park St, Boston, MA 02215" +276776,Wired Headphones,1,11.99,10/20/19 12:55,"318 14th St, Seattle, WA 98101" +276777,Wired Headphones,1,11.99,10/18/19 10:29,"466 Lincoln St, Atlanta, GA 30301" +276778,27in FHD Monitor,1,149.99,10/18/19 22:37,"299 South St, New York City, NY 10001" +276779,Apple Airpods Headphones,1,150,10/28/19 16:40,"17 Maple St, Atlanta, GA 30301" +276780,Lightning Charging Cable,1,14.95,10/10/19 16:58,"339 13th St, Dallas, TX 75001" +276781,Lightning Charging Cable,1,14.95,10/09/19 12:49,"609 10th St, Seattle, WA 98101" +276782,Lightning Charging Cable,1,14.95,10/31/19 15:14,"13 10th St, San Francisco, CA 94016" +276783,Lightning Charging Cable,1,14.95,10/03/19 21:13,"113 13th St, Portland, OR 97035" +276784,iPhone,1,700,10/01/19 11:26,"614 Lake St, New York City, NY 10001" +276784,Lightning Charging Cable,1,14.95,10/01/19 11:26,"614 Lake St, New York City, NY 10001" +276785,Lightning Charging Cable,1,14.95,10/27/19 17:50,"807 Cedar St, Los Angeles, CA 90001" +276786,Flatscreen TV,1,300,10/08/19 02:24,"872 West St, Los Angeles, CA 90001" +276787,27in 4K Gaming Monitor,1,389.99,10/24/19 18:13,"874 Hickory St, San Francisco, CA 94016" +276788,AA Batteries (4-pack),1,3.84,10/31/19 20:29,"381 4th St, New York City, NY 10001" +276789,34in Ultrawide Monitor,1,379.99,10/03/19 20:40,"596 Pine St, San Francisco, CA 94016" +276790,Lightning Charging Cable,1,14.95,10/26/19 20:20,"739 Wilson St, Boston, MA 02215" +276790,27in 4K Gaming Monitor,1,389.99,10/26/19 20:20,"739 Wilson St, Boston, MA 02215" +276791,AA Batteries (4-pack),1,3.84,10/24/19 17:01,"151 5th St, Austin, TX 73301" +276792,27in FHD Monitor,1,149.99,10/28/19 08:54,"878 Main St, Atlanta, GA 30301" +276793,AAA Batteries (4-pack),1,2.99,10/10/19 08:14,"687 Lakeview St, San Francisco, CA 94016" +276794,Wired Headphones,1,11.99,10/14/19 00:55,"586 8th St, Portland, OR 97035" +276795,Bose SoundSport Headphones,1,99.99,10/25/19 20:09,"73 Forest St, Boston, MA 02215" +276796,Flatscreen TV,1,300,10/26/19 13:35,"361 Hickory St, San Francisco, CA 94016" +276797,Apple Airpods Headphones,1,150,10/12/19 14:56,"52 Johnson St, Austin, TX 73301" +276798,ThinkPad Laptop,1,999.99,10/05/19 13:26,"943 7th St, Seattle, WA 98101" +276799,AAA Batteries (4-pack),2,2.99,10/15/19 13:15,"299 Cherry St, Portland, OR 97035" +276800,Wired Headphones,1,11.99,10/06/19 10:58,"573 South St, San Francisco, CA 94016" +276801,Macbook Pro Laptop,1,1700,10/09/19 14:22,"339 Hickory St, New York City, NY 10001" +276802,Google Phone,1,600,10/17/19 20:43,"760 Chestnut St, Los Angeles, CA 90001" +276803,Lightning Charging Cable,1,14.95,10/05/19 21:13,"672 Lakeview St, Atlanta, GA 30301" +276804,Bose SoundSport Headphones,1,99.99,10/27/19 12:04,"931 Center St, Dallas, TX 75001" +276805,27in FHD Monitor,1,149.99,10/09/19 14:35,"742 8th St, Los Angeles, CA 90001" +276806,Macbook Pro Laptop,1,1700,10/18/19 12:16,"97 North St, Portland, OR 97035" +276806,AA Batteries (4-pack),1,3.84,10/18/19 12:16,"97 North St, Portland, OR 97035" +276807,USB-C Charging Cable,1,11.95,10/15/19 14:45,"961 Hill St, Boston, MA 02215" +276808,USB-C Charging Cable,2,11.95,10/18/19 08:18,"601 Madison St, Boston, MA 02215" +276809,Flatscreen TV,1,300,10/02/19 20:48,"115 Meadow St, Boston, MA 02215" +276810,Lightning Charging Cable,1,14.95,10/07/19 20:16,"86 Johnson St, Los Angeles, CA 90001" +276811,20in Monitor,1,109.99,10/12/19 15:11,"911 10th St, Los Angeles, CA 90001" +276812,AA Batteries (4-pack),2,3.84,10/19/19 23:15,"845 4th St, Boston, MA 02215" +276813,Flatscreen TV,1,300,10/25/19 15:25,"972 Park St, Atlanta, GA 30301" +276814,iPhone,1,700,10/31/19 09:44,"413 8th St, Atlanta, GA 30301" +276815,AA Batteries (4-pack),1,3.84,10/12/19 14:25,"777 West St, Dallas, TX 75001" +276816,Bose SoundSport Headphones,1,99.99,10/11/19 18:48,"527 Church St, San Francisco, CA 94016" +276817,AA Batteries (4-pack),4,3.84,10/20/19 08:06,"598 6th St, San Francisco, CA 94016" +276818,AAA Batteries (4-pack),2,2.99,10/21/19 13:23,"499 Highland St, Seattle, WA 98101" +276819,USB-C Charging Cable,1,11.95,10/10/19 22:36,"742 Highland St, Dallas, TX 75001" +276820,Macbook Pro Laptop,1,1700,10/04/19 20:36,"652 9th St, Dallas, TX 75001" +276821,27in 4K Gaming Monitor,1,389.99,10/06/19 19:25,"695 Ridge St, Los Angeles, CA 90001" +276822,AA Batteries (4-pack),1,3.84,10/06/19 12:46,"42 Lincoln St, San Francisco, CA 94016" +276823,AAA Batteries (4-pack),1,2.99,10/08/19 12:50,"785 Center St, Dallas, TX 75001" +276824,Flatscreen TV,1,300,10/22/19 10:15,"838 Dogwood St, San Francisco, CA 94016" +276825,Wired Headphones,1,11.99,10/07/19 08:13,"308 2nd St, Austin, TX 73301" +276826,AA Batteries (4-pack),2,3.84,10/11/19 23:09,"100 Elm St, New York City, NY 10001" +276827,Google Phone,1,600,10/15/19 23:27,"602 5th St, San Francisco, CA 94016" +276828,34in Ultrawide Monitor,1,379.99,10/24/19 15:10,"948 4th St, Boston, MA 02215" +276829,iPhone,1,700,10/15/19 00:48,"23 8th St, Boston, MA 02215" +276830,AAA Batteries (4-pack),1,2.99,10/26/19 00:33,"24 Forest St, San Francisco, CA 94016" +276831,34in Ultrawide Monitor,1,379.99,10/19/19 09:49,"560 Forest St, New York City, NY 10001" +276832,Wired Headphones,1,11.99,10/01/19 15:54,"799 Main St, Los Angeles, CA 90001" +276833,USB-C Charging Cable,1,11.95,10/07/19 17:59,"207 Center St, New York City, NY 10001" +276834,Lightning Charging Cable,1,14.95,10/11/19 20:44,"752 South St, Dallas, TX 75001" +276835,Wired Headphones,1,11.99,10/31/19 12:07,"374 4th St, Austin, TX 73301" +276836,Wired Headphones,1,11.99,10/03/19 22:01,"930 Madison St, New York City, NY 10001" +276837,Wired Headphones,1,11.99,10/30/19 20:19,"844 Meadow St, New York City, NY 10001" +276838,Google Phone,1,600,10/12/19 20:57,"438 River St, Boston, MA 02215" +276839,AAA Batteries (4-pack),1,2.99,10/22/19 12:56,"145 Johnson St, New York City, NY 10001" +276840,Macbook Pro Laptop,1,1700,10/24/19 19:48,"75 6th St, Dallas, TX 75001" +276841,27in 4K Gaming Monitor,1,389.99,10/29/19 15:58,"839 North St, Atlanta, GA 30301" +276842,USB-C Charging Cable,1,11.95,10/18/19 21:52,"749 Cherry St, New York City, NY 10001" +276843,AA Batteries (4-pack),1,3.84,10/12/19 23:31,"720 West St, Atlanta, GA 30301" +276844,AA Batteries (4-pack),4,3.84,10/16/19 17:56,"981 Hickory St, San Francisco, CA 94016" +276845,Bose SoundSport Headphones,1,99.99,10/21/19 11:49,"739 Meadow St, New York City, NY 10001" +,,,,, +276846,Lightning Charging Cable,1,14.95,10/23/19 15:26,"858 Center St, Austin, TX 73301" +276847,USB-C Charging Cable,1,11.95,10/15/19 19:39,"753 Lakeview St, Austin, TX 73301" +276848,Macbook Pro Laptop,1,1700,10/19/19 14:59,"757 Jefferson St, San Francisco, CA 94016" +276849,AAA Batteries (4-pack),2,2.99,10/19/19 10:11,"73 7th St, New York City, NY 10001" +276850,AAA Batteries (4-pack),1,2.99,10/15/19 15:07,"40 5th St, Los Angeles, CA 90001" +276851,Apple Airpods Headphones,1,150,10/23/19 19:51,"866 Jackson St, Seattle, WA 98101" +276852,Lightning Charging Cable,1,14.95,10/05/19 11:04,"919 Dogwood St, New York City, NY 10001" +276853,USB-C Charging Cable,1,11.95,10/22/19 09:56,"504 Johnson St, Atlanta, GA 30301" +276854,Flatscreen TV,1,300,10/13/19 16:55,"673 11th St, Dallas, TX 75001" +276855,LG Washing Machine,1,600.0,10/20/19 14:37,"812 Madison St, New York City, NY 10001" +276856,Apple Airpods Headphones,1,150,10/04/19 08:47,"59 2nd St, San Francisco, CA 94016" +276856,AAA Batteries (4-pack),2,2.99,10/04/19 08:47,"59 2nd St, San Francisco, CA 94016" +276857,Lightning Charging Cable,1,14.95,10/07/19 18:31,"535 Madison St, Boston, MA 02215" +276858,Bose SoundSport Headphones,1,99.99,10/08/19 09:58,"48 Lincoln St, Seattle, WA 98101" +276859,Lightning Charging Cable,1,14.95,10/31/19 23:59,"931 Meadow St, San Francisco, CA 94016" +276860,Lightning Charging Cable,1,14.95,10/31/19 22:30,"212 Spruce St, Portland, OR 97035" +276861,Lightning Charging Cable,1,14.95,10/25/19 18:13,"131 5th St, Los Angeles, CA 90001" +276862,Bose SoundSport Headphones,1,99.99,10/03/19 01:55,"631 Ridge St, New York City, NY 10001" +276863,Lightning Charging Cable,1,14.95,10/11/19 19:46,"851 Dogwood St, San Francisco, CA 94016" +276864,Lightning Charging Cable,1,14.95,10/30/19 11:25,"890 10th St, San Francisco, CA 94016" +276865,AAA Batteries (4-pack),1,2.99,10/02/19 07:23,"646 Church St, Los Angeles, CA 90001" +276866,Bose SoundSport Headphones,1,99.99,10/05/19 10:33,"807 Adams St, Los Angeles, CA 90001" +276867,Lightning Charging Cable,2,14.95,10/18/19 20:27,"92 2nd St, Austin, TX 73301" +276867,AAA Batteries (4-pack),1,2.99,10/18/19 20:27,"92 2nd St, Austin, TX 73301" +276868,Lightning Charging Cable,1,14.95,10/28/19 13:23,"469 Forest St, New York City, NY 10001" +276869,AAA Batteries (4-pack),1,2.99,10/12/19 13:30,"44 Cedar St, Portland, ME 04101" +276870,ThinkPad Laptop,1,999.99,10/03/19 19:46,"577 Johnson St, Portland, ME 04101" +276870,27in FHD Monitor,1,149.99,10/03/19 19:46,"577 Johnson St, Portland, ME 04101" +276871,Google Phone,1,600,10/27/19 19:22,"171 South St, Los Angeles, CA 90001" +276871,USB-C Charging Cable,1,11.95,10/27/19 19:22,"171 South St, Los Angeles, CA 90001" +276872,Wired Headphones,1,11.99,10/11/19 08:01,"690 6th St, San Francisco, CA 94016" +276873,Apple Airpods Headphones,1,150,10/23/19 18:32,"372 2nd St, Atlanta, GA 30301" +276874,27in FHD Monitor,1,149.99,10/10/19 12:58,"853 Adams St, Austin, TX 73301" +276875,Bose SoundSport Headphones,1,99.99,10/08/19 14:24,"885 River St, Los Angeles, CA 90001" +276876,AAA Batteries (4-pack),2,2.99,10/29/19 08:59,"194 Walnut St, Boston, MA 02215" +276877,Apple Airpods Headphones,1,150,10/08/19 12:50,"638 14th St, New York City, NY 10001" +276878,USB-C Charging Cable,1,11.95,10/12/19 16:32,"347 Spruce St, Boston, MA 02215" +276879,AAA Batteries (4-pack),1,2.99,10/09/19 09:36,"395 13th St, Los Angeles, CA 90001" +276880,USB-C Charging Cable,3,11.95,10/24/19 20:26,"347 Sunset St, New York City, NY 10001" +276881,Wired Headphones,2,11.99,10/22/19 20:07,"250 Highland St, San Francisco, CA 94016" +276882,Lightning Charging Cable,1,14.95,10/12/19 11:24,"457 Lakeview St, Portland, OR 97035" +276883,AAA Batteries (4-pack),4,2.99,10/01/19 10:33,"298 1st St, Boston, MA 02215" +276884,27in 4K Gaming Monitor,1,389.99,10/31/19 09:26,"985 Wilson St, Los Angeles, CA 90001" +276885,Bose SoundSport Headphones,1,99.99,10/29/19 21:52,"3 Johnson St, Los Angeles, CA 90001" +276886,USB-C Charging Cable,1,11.95,10/30/19 11:46,"8 Cherry St, New York City, NY 10001" +276887,Vareebadd Phone,1,400,10/16/19 01:15,"834 7th St, New York City, NY 10001" +276888,Bose SoundSport Headphones,1,99.99,10/29/19 19:53,"857 9th St, San Francisco, CA 94016" +276889,AAA Batteries (4-pack),2,2.99,10/24/19 21:35,"516 Meadow St, Los Angeles, CA 90001" +276890,27in 4K Gaming Monitor,1,389.99,10/19/19 18:23,"797 Willow St, San Francisco, CA 94016" +276891,20in Monitor,1,109.99,10/09/19 19:26,"65 Spruce St, Los Angeles, CA 90001" +276892,AA Batteries (4-pack),1,3.84,10/15/19 07:16,"869 Lakeview St, Dallas, TX 75001" +276893,AAA Batteries (4-pack),1,2.99,10/28/19 19:37,"486 1st St, New York City, NY 10001" +276894,Wired Headphones,2,11.99,10/24/19 11:30,"688 12th St, Portland, OR 97035" +276895,Apple Airpods Headphones,1,150,10/10/19 17:56,"321 13th St, Boston, MA 02215" +276896,Apple Airpods Headphones,1,150,10/30/19 17:35,"139 Spruce St, Austin, TX 73301" +276897,27in FHD Monitor,1,149.99,10/14/19 19:39,"882 Hickory St, Seattle, WA 98101" +276898,Macbook Pro Laptop,1,1700,10/27/19 15:37,"842 1st St, New York City, NY 10001" +276898,Bose SoundSport Headphones,1,99.99,10/27/19 15:37,"842 1st St, New York City, NY 10001" +276899,ThinkPad Laptop,1,999.99,10/13/19 10:45,"899 11th St, San Francisco, CA 94016" +276900,Bose SoundSport Headphones,1,99.99,10/24/19 12:57,"531 Highland St, Seattle, WA 98101" +276901,USB-C Charging Cable,1,11.95,10/06/19 09:32,"155 12th St, Atlanta, GA 30301" +276902,USB-C Charging Cable,1,11.95,10/28/19 10:09,"973 Main St, Los Angeles, CA 90001" +276903,Apple Airpods Headphones,1,150,10/29/19 16:22,"306 Sunset St, Boston, MA 02215" +276904,Lightning Charging Cable,1,14.95,10/03/19 22:02,"969 Jefferson St, San Francisco, CA 94016" +276905,AAA Batteries (4-pack),1,2.99,10/23/19 21:47,"249 Walnut St, Seattle, WA 98101" +276906,Apple Airpods Headphones,1,150,10/08/19 15:38,"54 10th St, Austin, TX 73301" +276907,Apple Airpods Headphones,1,150,10/12/19 09:28,"57 Park St, Los Angeles, CA 90001" +276908,Lightning Charging Cable,1,14.95,10/06/19 11:52,"127 Sunset St, San Francisco, CA 94016" +276909,Lightning Charging Cable,1,14.95,10/04/19 21:59,"64 Main St, San Francisco, CA 94016" +276910,AA Batteries (4-pack),1,3.84,10/08/19 13:20,"769 7th St, San Francisco, CA 94016" +276911,AAA Batteries (4-pack),1,2.99,10/18/19 16:40,"384 South St, New York City, NY 10001" +276912,Lightning Charging Cable,1,14.95,10/27/19 20:13,"896 River St, Atlanta, GA 30301" +276913,27in 4K Gaming Monitor,1,389.99,10/26/19 17:58,"120 Elm St, San Francisco, CA 94016" +276914,LG Dryer,1,600.0,10/24/19 09:28,"824 2nd St, Los Angeles, CA 90001" +276915,AA Batteries (4-pack),2,3.84,10/01/19 12:48,"219 Maple St, Seattle, WA 98101" +276916,34in Ultrawide Monitor,1,379.99,10/30/19 19:01,"195 4th St, Atlanta, GA 30301" +276917,27in 4K Gaming Monitor,1,389.99,10/02/19 11:18,"250 Ridge St, New York City, NY 10001" +276918,Bose SoundSport Headphones,1,99.99,10/10/19 16:57,"943 Cedar St, San Francisco, CA 94016" +276919,USB-C Charging Cable,1,11.95,10/21/19 06:36,"644 10th St, Dallas, TX 75001" +276920,AA Batteries (4-pack),1,3.84,10/23/19 19:12,"221 Johnson St, Portland, OR 97035" +276921,AA Batteries (4-pack),1,3.84,10/15/19 22:09,"43 Maple St, Austin, TX 73301" +276922,LG Dryer,1,600.0,10/07/19 20:37,"655 Meadow St, New York City, NY 10001" +276923,Apple Airpods Headphones,1,150,10/22/19 18:29,"23 14th St, New York City, NY 10001" +276924,Google Phone,1,600,10/23/19 15:57,"25 10th St, Boston, MA 02215" +276925,Flatscreen TV,1,300,10/28/19 17:46,"216 2nd St, San Francisco, CA 94016" +276926,Apple Airpods Headphones,1,150,10/04/19 12:41,"390 12th St, San Francisco, CA 94016" +276927,Wired Headphones,1,11.99,10/08/19 22:31,"675 10th St, San Francisco, CA 94016" +276928,Apple Airpods Headphones,1,150,10/13/19 15:44,"568 Hill St, Portland, OR 97035" +276929,Wired Headphones,1,11.99,10/10/19 12:51,"109 9th St, Seattle, WA 98101" +276930,AAA Batteries (4-pack),1,2.99,10/22/19 21:20,"142 Cedar St, Dallas, TX 75001" +276931,AAA Batteries (4-pack),4,2.99,10/10/19 19:02,"335 Sunset St, Los Angeles, CA 90001" +276932,Vareebadd Phone,1,400,10/11/19 14:26,"544 Ridge St, Boston, MA 02215" +276933,Apple Airpods Headphones,1,150,10/01/19 14:21,"996 Cedar St, New York City, NY 10001" +276934,Bose SoundSport Headphones,1,99.99,10/31/19 20:02,"653 Walnut St, New York City, NY 10001" +276935,Wired Headphones,1,11.99,10/16/19 17:11,"460 West St, San Francisco, CA 94016" +276936,USB-C Charging Cable,1,11.95,10/26/19 13:42,"664 North St, Atlanta, GA 30301" +276937,Wired Headphones,1,11.99,10/03/19 17:01,"820 Highland St, Austin, TX 73301" +276938,Apple Airpods Headphones,1,150,10/23/19 21:39,"12 West St, Portland, OR 97035" +276939,Bose SoundSport Headphones,1,99.99,10/28/19 19:44,"680 14th St, Atlanta, GA 30301" +276940,AAA Batteries (4-pack),1,2.99,10/03/19 23:37,"203 Center St, San Francisco, CA 94016" +276941,Bose SoundSport Headphones,1,99.99,10/07/19 23:52,"499 River St, San Francisco, CA 94016" +276942,Apple Airpods Headphones,1,150,10/14/19 20:33,"959 Adams St, Boston, MA 02215" +276943,Wired Headphones,1,11.99,10/13/19 18:20,"954 Elm St, Boston, MA 02215" +276944,AA Batteries (4-pack),1,3.84,10/05/19 15:25,"968 14th St, Boston, MA 02215" +276945,Lightning Charging Cable,1,14.95,10/11/19 12:29,"430 Pine St, Seattle, WA 98101" +276946,USB-C Charging Cable,1,11.95,10/12/19 20:43,"26 Forest St, Dallas, TX 75001" +276947,27in FHD Monitor,1,149.99,10/19/19 13:29,"192 Hickory St, New York City, NY 10001" +276948,USB-C Charging Cable,2,11.95,10/23/19 18:19,"301 Elm St, Atlanta, GA 30301" +276949,Macbook Pro Laptop,1,1700,10/27/19 11:11,"60 1st St, Portland, OR 97035" +276950,Wired Headphones,1,11.99,10/21/19 21:38,"132 5th St, Seattle, WA 98101" +276951,AA Batteries (4-pack),1,3.84,10/28/19 20:43,"617 8th St, San Francisco, CA 94016" +276952,Bose SoundSport Headphones,1,99.99,10/25/19 14:00,"921 Lincoln St, San Francisco, CA 94016" +276953,27in FHD Monitor,1,149.99,10/01/19 11:20,"744 11th St, San Francisco, CA 94016" +276954,Wired Headphones,1,11.99,10/26/19 18:02,"777 Chestnut St, Los Angeles, CA 90001" +276955,20in Monitor,1,109.99,10/29/19 13:33,"827 Chestnut St, San Francisco, CA 94016" +276956,Wired Headphones,1,11.99,10/17/19 15:05,"280 6th St, Los Angeles, CA 90001" +276957,27in FHD Monitor,1,149.99,10/13/19 20:56,"168 8th St, Atlanta, GA 30301" +276958,USB-C Charging Cable,1,11.95,10/14/19 16:23,"159 Lincoln St, Dallas, TX 75001" +276959,AAA Batteries (4-pack),1,2.99,10/17/19 14:32,"867 North St, Los Angeles, CA 90001" +276960,Apple Airpods Headphones,1,150,10/15/19 18:35,"849 6th St, Portland, OR 97035" +276961,Lightning Charging Cable,1,14.95,10/13/19 19:27,"617 Forest St, Boston, MA 02215" +276962,USB-C Charging Cable,1,11.95,10/13/19 12:02,"322 Lincoln St, San Francisco, CA 94016" +276963,USB-C Charging Cable,1,11.95,10/20/19 16:05,"997 Lake St, Boston, MA 02215" +276964,ThinkPad Laptop,1,999.99,10/28/19 19:37,"208 Ridge St, Austin, TX 73301" +276965,Lightning Charging Cable,1,14.95,10/21/19 11:48,"482 Madison St, Los Angeles, CA 90001" +276966,Lightning Charging Cable,1,14.95,10/12/19 14:26,"519 Madison St, San Francisco, CA 94016" +276967,AAA Batteries (4-pack),1,2.99,10/12/19 22:59,"281 Ridge St, San Francisco, CA 94016" +276968,AAA Batteries (4-pack),3,2.99,10/28/19 23:17,"370 West St, San Francisco, CA 94016" +276969,34in Ultrawide Monitor,1,379.99,10/24/19 14:22,"438 4th St, New York City, NY 10001" +276970,Google Phone,1,600,10/22/19 07:54,"262 Hickory St, San Francisco, CA 94016" +276971,USB-C Charging Cable,1,11.95,10/16/19 20:31,"115 Main St, Atlanta, GA 30301" +276972,AA Batteries (4-pack),2,3.84,10/15/19 09:20,"465 Spruce St, New York City, NY 10001" +276973,iPhone,1,700,10/02/19 15:50,"643 11th St, Atlanta, GA 30301" +276974,Bose SoundSport Headphones,1,99.99,10/11/19 14:58,"236 Walnut St, San Francisco, CA 94016" +276975,Wired Headphones,1,11.99,10/28/19 22:33,"322 Lincoln St, San Francisco, CA 94016" +276976,AA Batteries (4-pack),2,3.84,10/19/19 14:40,"370 14th St, Portland, OR 97035" +276977,AA Batteries (4-pack),2,3.84,10/05/19 16:22,"119 Wilson St, San Francisco, CA 94016" +276978,Apple Airpods Headphones,1,150,10/10/19 09:36,"109 Adams St, San Francisco, CA 94016" +276979,Macbook Pro Laptop,1,1700,10/14/19 08:35,"690 8th St, San Francisco, CA 94016" +276980,AAA Batteries (4-pack),1,2.99,10/01/19 08:19,"40 Johnson St, Austin, TX 73301" +276981,27in FHD Monitor,1,149.99,10/20/19 14:13,"830 South St, Seattle, WA 98101" +276982,AA Batteries (4-pack),2,3.84,10/06/19 20:33,"77 Adams St, Portland, OR 97035" +276983,AA Batteries (4-pack),1,3.84,10/08/19 07:53,"98 Lakeview St, Boston, MA 02215" +276984,USB-C Charging Cable,1,11.95,10/25/19 19:36,"591 Cherry St, Dallas, TX 75001" +276985,Macbook Pro Laptop,1,1700,10/07/19 22:08,"841 7th St, Dallas, TX 75001" +276986,Lightning Charging Cable,1,14.95,10/13/19 12:51,"924 Church St, Los Angeles, CA 90001" +276987,Apple Airpods Headphones,1,150,10/03/19 12:14,"166 Maple St, Atlanta, GA 30301" +276988,34in Ultrawide Monitor,1,379.99,10/17/19 20:23,"440 Willow St, Dallas, TX 75001" +276989,Bose SoundSport Headphones,1,99.99,10/08/19 14:46,"483 Cherry St, Seattle, WA 98101" +276990,Wired Headphones,1,11.99,10/12/19 14:59,"845 Walnut St, New York City, NY 10001" +276991,Macbook Pro Laptop,1,1700,10/03/19 23:33,"76 Hickory St, Dallas, TX 75001" +276992,AAA Batteries (4-pack),1,2.99,10/06/19 10:19,"321 Dogwood St, Los Angeles, CA 90001" +276993,Lightning Charging Cable,1,14.95,10/24/19 22:07,"694 Walnut St, San Francisco, CA 94016" +276994,Wired Headphones,1,11.99,10/22/19 16:29,"163 14th St, Atlanta, GA 30301" +276995,Apple Airpods Headphones,1,150,10/02/19 20:14,"515 Jefferson St, San Francisco, CA 94016" +276996,Lightning Charging Cable,1,14.95,10/11/19 16:29,"995 Ridge St, Seattle, WA 98101" +276997,AA Batteries (4-pack),1,3.84,10/11/19 22:42,"786 Lincoln St, Seattle, WA 98101" +276998,Wired Headphones,1,11.99,10/28/19 22:33,"389 Center St, Portland, OR 97035" +276999,Lightning Charging Cable,1,14.95,10/08/19 02:04,"13 8th St, Boston, MA 02215" +277000,27in 4K Gaming Monitor,1,389.99,10/06/19 22:31,"831 Madison St, Los Angeles, CA 90001" +277001,AA Batteries (4-pack),1,3.84,10/04/19 11:35,"620 Meadow St, Portland, OR 97035" +277002,27in FHD Monitor,1,149.99,10/26/19 21:11,"370 Main St, New York City, NY 10001" +277003,Wired Headphones,1,11.99,10/28/19 10:59,"246 Dogwood St, Atlanta, GA 30301" +277004,Apple Airpods Headphones,1,150,10/18/19 12:31,"49 13th St, Los Angeles, CA 90001" +277005,Vareebadd Phone,1,400,10/24/19 13:31,"149 14th St, Seattle, WA 98101" +277006,Lightning Charging Cable,1,14.95,10/12/19 13:39,"184 Hickory St, Dallas, TX 75001" +277007,20in Monitor,1,109.99,10/05/19 16:06,"77 6th St, Atlanta, GA 30301" +277008,Wired Headphones,1,11.99,10/27/19 15:06,"512 9th St, San Francisco, CA 94016" +277009,Apple Airpods Headphones,1,150,10/18/19 14:22,"185 Park St, Los Angeles, CA 90001" +277010,Google Phone,1,600,10/23/19 12:32,"693 Wilson St, San Francisco, CA 94016" +277011,Lightning Charging Cable,1,14.95,10/19/19 19:11,"519 Jackson St, Los Angeles, CA 90001" +277012,Vareebadd Phone,1,400,10/24/19 18:54,"124 River St, Boston, MA 02215" +277013,USB-C Charging Cable,1,11.95,10/31/19 11:58,"592 5th St, San Francisco, CA 94016" +277014,iPhone,1,700,10/14/19 13:22,"832 Washington St, Portland, OR 97035" +277014,Lightning Charging Cable,1,14.95,10/14/19 13:22,"832 Washington St, Portland, OR 97035" +277015,Apple Airpods Headphones,1,150,10/16/19 06:43,"498 Jefferson St, San Francisco, CA 94016" +277015,USB-C Charging Cable,1,11.95,10/16/19 06:43,"498 Jefferson St, San Francisco, CA 94016" +277016,Lightning Charging Cable,1,14.95,10/23/19 18:27,"840 7th St, San Francisco, CA 94016" +277017,Apple Airpods Headphones,1,150,10/12/19 11:31,"778 Main St, Los Angeles, CA 90001" +277018,27in FHD Monitor,1,149.99,10/01/19 13:16,"340 Johnson St, Seattle, WA 98101" +277019,Vareebadd Phone,1,400,10/05/19 11:51,"421 Walnut St, Portland, ME 04101" +277020,USB-C Charging Cable,1,11.95,10/30/19 20:40,"848 5th St, New York City, NY 10001" +277021,iPhone,1,700,10/21/19 12:09,"488 Spruce St, Seattle, WA 98101" +277022,AA Batteries (4-pack),1,3.84,10/21/19 22:04,"445 9th St, New York City, NY 10001" +277023,Flatscreen TV,1,300,10/20/19 14:23,"298 Wilson St, Los Angeles, CA 90001" +277024,Lightning Charging Cable,1,14.95,10/01/19 21:49,"29 Forest St, Dallas, TX 75001" +277025,Flatscreen TV,1,300,10/27/19 20:50,"698 Church St, Los Angeles, CA 90001" +277026,27in 4K Gaming Monitor,1,389.99,10/13/19 00:26,"709 Jefferson St, San Francisco, CA 94016" +277027,20in Monitor,1,109.99,10/25/19 06:22,"843 North St, Los Angeles, CA 90001" +277028,AAA Batteries (4-pack),1,2.99,10/03/19 10:38,"151 Johnson St, Dallas, TX 75001" +277029,iPhone,1,700,10/15/19 21:59,"109 Spruce St, Los Angeles, CA 90001" +277029,Lightning Charging Cable,1,14.95,10/15/19 21:59,"109 Spruce St, Los Angeles, CA 90001" +277030,20in Monitor,1,109.99,10/04/19 15:20,"434 Chestnut St, Los Angeles, CA 90001" +277031,Lightning Charging Cable,1,14.95,10/30/19 13:34,"766 Cherry St, Los Angeles, CA 90001" +277032,Apple Airpods Headphones,1,150,10/07/19 07:01,"729 4th St, Austin, TX 73301" +277033,AAA Batteries (4-pack),1,2.99,10/10/19 18:22,"457 Sunset St, Boston, MA 02215" +277034,34in Ultrawide Monitor,1,379.99,10/02/19 07:08,"780 Church St, Boston, MA 02215" +277035,27in FHD Monitor,1,149.99,10/23/19 15:00,"437 Pine St, Atlanta, GA 30301" +277036,Bose SoundSport Headphones,1,99.99,10/17/19 15:55,"119 Pine St, New York City, NY 10001" +277037,Apple Airpods Headphones,1,150,10/14/19 19:45,"29 Ridge St, Portland, OR 97035" +277038,Lightning Charging Cable,1,14.95,10/01/19 14:09,"411 1st St, Boston, MA 02215" +277039,AAA Batteries (4-pack),1,2.99,10/09/19 00:42,"35 Hill St, Atlanta, GA 30301" +277040,AA Batteries (4-pack),1,3.84,10/01/19 20:50,"944 7th St, Portland, OR 97035" +277041,AAA Batteries (4-pack),1,2.99,10/15/19 09:41,"244 Wilson St, Los Angeles, CA 90001" +277042,Macbook Pro Laptop,1,1700,10/13/19 17:05,"180 Chestnut St, Los Angeles, CA 90001" +277043,AAA Batteries (4-pack),1,2.99,10/24/19 18:40,"388 Church St, San Francisco, CA 94016" +277044,USB-C Charging Cable,1,11.95,10/27/19 17:37,"949 Maple St, Seattle, WA 98101" +277045,34in Ultrawide Monitor,1,379.99,10/19/19 19:20,"508 7th St, Dallas, TX 75001" +277046,Lightning Charging Cable,2,14.95,10/13/19 18:08,"829 Maple St, Atlanta, GA 30301" +277047,Bose SoundSport Headphones,1,99.99,10/11/19 18:27,"545 Hill St, Los Angeles, CA 90001" +277048,Wired Headphones,1,11.99,10/12/19 08:33,"753 Highland St, Los Angeles, CA 90001" +277049,Apple Airpods Headphones,1,150,10/01/19 11:08,"740 Hill St, San Francisco, CA 94016" +277050,27in FHD Monitor,1,149.99,10/06/19 13:16,"112 Main St, Dallas, TX 75001" +277051,Lightning Charging Cable,1,14.95,10/10/19 18:30,"314 Johnson St, Atlanta, GA 30301" +277052,Flatscreen TV,1,300,10/07/19 15:33,"108 Lincoln St, Portland, OR 97035" +277053,Apple Airpods Headphones,1,150,10/31/19 12:39,"892 Willow St, Boston, MA 02215" +277054,27in 4K Gaming Monitor,1,389.99,10/15/19 19:52,"829 Lake St, Portland, ME 04101" +277055,Lightning Charging Cable,1,14.95,10/27/19 23:40,"854 Washington St, Los Angeles, CA 90001" +277056,AAA Batteries (4-pack),1,2.99,10/28/19 09:23,"135 4th St, Seattle, WA 98101" +277057,Macbook Pro Laptop,1,1700,10/13/19 11:27,"779 Highland St, San Francisco, CA 94016" +277058,Wired Headphones,1,11.99,10/17/19 12:02,"59 Church St, Los Angeles, CA 90001" +277059,LG Dryer,1,600.0,10/05/19 10:50,"6 Johnson St, San Francisco, CA 94016" +277060,Lightning Charging Cable,1,14.95,10/01/19 18:59,"389 Johnson St, Boston, MA 02215" +277061,Google Phone,1,600,10/10/19 22:47,"500 Lakeview St, San Francisco, CA 94016" +277062,AA Batteries (4-pack),1,3.84,10/17/19 16:17,"509 Wilson St, San Francisco, CA 94016" +277063,AA Batteries (4-pack),2,3.84,10/19/19 18:12,"442 North St, New York City, NY 10001" +277064,AA Batteries (4-pack),1,3.84,10/11/19 08:43,"142 Highland St, San Francisco, CA 94016" +277065,Apple Airpods Headphones,1,150,10/14/19 07:16,"633 Dogwood St, Dallas, TX 75001" +277066,Apple Airpods Headphones,1,150,10/02/19 14:25,"700 West St, Portland, OR 97035" +277067,Apple Airpods Headphones,1,150,10/22/19 13:07,"437 6th St, San Francisco, CA 94016" +277068,Lightning Charging Cable,1,14.95,10/29/19 22:29,"752 Sunset St, Seattle, WA 98101" +277069,AA Batteries (4-pack),1,3.84,10/17/19 21:32,"37 10th St, Los Angeles, CA 90001" +277070,Apple Airpods Headphones,1,150,10/29/19 21:32,"102 West St, San Francisco, CA 94016" +277071,Wired Headphones,1,11.99,10/05/19 21:01,"252 Main St, Portland, OR 97035" +277072,Lightning Charging Cable,1,14.95,10/15/19 19:45,"127 Lincoln St, San Francisco, CA 94016" +277073,Lightning Charging Cable,3,14.95,10/23/19 16:46,"635 Jackson St, Boston, MA 02215" +277074,Macbook Pro Laptop,1,1700,10/29/19 20:46,"844 12th St, Los Angeles, CA 90001" +277075,Lightning Charging Cable,1,14.95,10/07/19 07:51,"254 West St, San Francisco, CA 94016" +277076,Bose SoundSport Headphones,1,99.99,10/25/19 13:19,"43 Maple St, San Francisco, CA 94016" +277077,Wired Headphones,1,11.99,10/10/19 18:41,"974 Church St, Los Angeles, CA 90001" +277078,Macbook Pro Laptop,1,1700,10/30/19 11:59,"80 Highland St, Los Angeles, CA 90001" +277079,Wired Headphones,1,11.99,10/28/19 20:34,"316 Ridge St, San Francisco, CA 94016" +277080,ThinkPad Laptop,1,999.99,10/08/19 16:33,"921 Lakeview St, Austin, TX 73301" +277081,AAA Batteries (4-pack),1,2.99,10/20/19 15:29,"994 Hill St, Los Angeles, CA 90001" +277082,Wired Headphones,1,11.99,10/24/19 20:51,"314 5th St, New York City, NY 10001" +277083,27in FHD Monitor,1,149.99,10/30/19 12:03,"822 Chestnut St, San Francisco, CA 94016" +277084,USB-C Charging Cable,1,11.95,10/17/19 16:56,"938 Church St, Los Angeles, CA 90001" +277085,34in Ultrawide Monitor,1,379.99,10/31/19 13:42,"172 Highland St, Portland, OR 97035" +277086,Apple Airpods Headphones,1,150,10/31/19 17:32,"808 Jackson St, San Francisco, CA 94016" +277087,AAA Batteries (4-pack),1,2.99,10/17/19 16:03,"864 Lakeview St, San Francisco, CA 94016" +277088,Flatscreen TV,1,300,10/06/19 14:08,"941 Lake St, Los Angeles, CA 90001" +277089,Flatscreen TV,1,300,10/11/19 00:24,"77 Pine St, Dallas, TX 75001" +277090,Bose SoundSport Headphones,1,99.99,10/27/19 19:18,"977 Elm St, Dallas, TX 75001" +277091,Vareebadd Phone,1,400,10/21/19 11:17,"367 Main St, Los Angeles, CA 90001" +277092,27in 4K Gaming Monitor,1,389.99,10/10/19 15:40,"689 7th St, New York City, NY 10001" +277093,Lightning Charging Cable,1,14.95,10/10/19 12:57,"763 13th St, Boston, MA 02215" +277093,USB-C Charging Cable,1,11.95,10/10/19 12:57,"763 13th St, Boston, MA 02215" +277094,iPhone,1,700,10/07/19 12:37,"730 Madison St, Los Angeles, CA 90001" +277095,Lightning Charging Cable,2,14.95,10/28/19 17:45,"455 Sunset St, Boston, MA 02215" +277096,Flatscreen TV,1,300,10/23/19 10:32,"64 Cherry St, New York City, NY 10001" +277097,AA Batteries (4-pack),1,3.84,10/12/19 14:40,"893 8th St, San Francisco, CA 94016" +277098,Lightning Charging Cable,1,14.95,10/28/19 09:10,"379 Washington St, Los Angeles, CA 90001" +277099,Lightning Charging Cable,1,14.95,10/18/19 15:24,"133 Hill St, Atlanta, GA 30301" +277100,USB-C Charging Cable,1,11.95,10/11/19 16:12,"464 Johnson St, San Francisco, CA 94016" +277101,LG Dryer,1,600.0,10/04/19 13:04,"443 Maple St, San Francisco, CA 94016" +277102,Flatscreen TV,1,300,10/03/19 18:02,"537 Forest St, San Francisco, CA 94016" +277103,USB-C Charging Cable,1,11.95,10/17/19 18:42,"531 Lakeview St, San Francisco, CA 94016" +277104,ThinkPad Laptop,1,999.99,10/16/19 11:54,"481 Pine St, San Francisco, CA 94016" +277105,AA Batteries (4-pack),1,3.84,10/18/19 10:01,"43 Elm St, Dallas, TX 75001" +277106,Flatscreen TV,1,300,10/20/19 12:14,"738 Highland St, Seattle, WA 98101" +277107,AA Batteries (4-pack),2,3.84,10/30/19 10:45,"93 Lake St, Los Angeles, CA 90001" +277108,Lightning Charging Cable,2,14.95,10/13/19 14:48,"972 Spruce St, Dallas, TX 75001" +277109,ThinkPad Laptop,1,999.99,10/07/19 15:03,"207 Willow St, San Francisco, CA 94016" +277110,27in FHD Monitor,1,149.99,10/03/19 19:30,"324 Cedar St, Los Angeles, CA 90001" +277111,USB-C Charging Cable,1,11.95,10/08/19 20:54,"761 Pine St, Los Angeles, CA 90001" +277112,AA Batteries (4-pack),1,3.84,10/14/19 11:04,"33 Willow St, Seattle, WA 98101" +277113,USB-C Charging Cable,1,11.95,10/23/19 12:30,"89 Maple St, San Francisco, CA 94016" +277114,Lightning Charging Cable,1,14.95,10/19/19 12:15,"96 Jefferson St, Portland, OR 97035" +277115,USB-C Charging Cable,1,11.95,10/10/19 13:36,"197 Center St, Los Angeles, CA 90001" +277116,Lightning Charging Cable,1,14.95,10/18/19 12:24,"511 Wilson St, Portland, OR 97035" +277117,Wired Headphones,1,11.99,10/17/19 18:42,"512 12th St, San Francisco, CA 94016" +277117,27in 4K Gaming Monitor,1,389.99,10/17/19 18:42,"512 12th St, San Francisco, CA 94016" +277118,27in 4K Gaming Monitor,1,389.99,10/23/19 11:38,"808 Maple St, Dallas, TX 75001" +277119,AAA Batteries (4-pack),1,2.99,10/20/19 21:41,"898 Cherry St, San Francisco, CA 94016" +277120,Flatscreen TV,1,300,10/24/19 20:37,"876 2nd St, Boston, MA 02215" +277121,Lightning Charging Cable,1,14.95,10/09/19 00:42,"386 Main St, Seattle, WA 98101" +277122,Lightning Charging Cable,1,14.95,10/28/19 16:28,"681 North St, Los Angeles, CA 90001" +277123,USB-C Charging Cable,1,11.95,10/21/19 15:43,"795 Main St, Atlanta, GA 30301" +277124,Apple Airpods Headphones,1,150,10/11/19 20:02,"46 Wilson St, San Francisco, CA 94016" +277125,Apple Airpods Headphones,1,150,10/03/19 18:49,"802 Wilson St, San Francisco, CA 94016" +277126,27in 4K Gaming Monitor,1,389.99,10/18/19 22:44,"381 Meadow St, Los Angeles, CA 90001" +277127,USB-C Charging Cable,1,11.95,10/29/19 09:20,"625 6th St, Los Angeles, CA 90001" +277128,AAA Batteries (4-pack),3,2.99,10/22/19 18:49,"999 Cedar St, New York City, NY 10001" +277129,Bose SoundSport Headphones,1,99.99,10/06/19 10:51,"221 Center St, Los Angeles, CA 90001" +277130,USB-C Charging Cable,1,11.95,10/19/19 12:53,"945 Park St, San Francisco, CA 94016" +277131,27in 4K Gaming Monitor,1,389.99,10/08/19 16:15,"672 14th St, San Francisco, CA 94016" +277132,USB-C Charging Cable,1,11.95,10/22/19 16:59,"302 River St, Portland, ME 04101" +277133,AA Batteries (4-pack),1,3.84,10/27/19 01:43,"353 Hill St, Los Angeles, CA 90001" +277134,Lightning Charging Cable,1,14.95,10/16/19 13:45,"610 2nd St, San Francisco, CA 94016" +277135,iPhone,1,700,10/27/19 11:44,"232 Pine St, Austin, TX 73301" +277136,Wired Headphones,1,11.99,10/18/19 14:52,"996 1st St, Dallas, TX 75001" +277137,27in FHD Monitor,1,149.99,10/01/19 11:54,"645 10th St, Dallas, TX 75001" +277138,AA Batteries (4-pack),1,3.84,10/01/19 10:59,"794 Walnut St, Dallas, TX 75001" +277139,Bose SoundSport Headphones,1,99.99,10/24/19 19:51,"54 Lake St, Los Angeles, CA 90001" +277140,USB-C Charging Cable,1,11.95,10/07/19 06:43,"137 6th St, Portland, OR 97035" +277141,iPhone,1,700,10/21/19 21:29,"917 Lake St, Portland, OR 97035" +277141,Apple Airpods Headphones,1,150,10/21/19 21:29,"917 Lake St, Portland, OR 97035" +277142,Lightning Charging Cable,1,14.95,10/29/19 23:12,"101 Center St, New York City, NY 10001" +277143,Macbook Pro Laptop,1,1700,10/22/19 20:05,"412 7th St, Atlanta, GA 30301" +277144,27in FHD Monitor,1,149.99,10/11/19 16:04,"403 Willow St, Los Angeles, CA 90001" +277145,27in FHD Monitor,1,149.99,10/04/19 20:09,"439 Cherry St, Los Angeles, CA 90001" +277146,Flatscreen TV,1,300,10/17/19 19:59,"969 Center St, Dallas, TX 75001" +277147,Flatscreen TV,1,300,10/29/19 13:42,"586 Washington St, San Francisco, CA 94016" +277148,Google Phone,1,600,10/09/19 22:01,"636 Dogwood St, Los Angeles, CA 90001" +277149,AAA Batteries (4-pack),1,2.99,10/19/19 16:26,"975 Hill St, Los Angeles, CA 90001" +277150,AA Batteries (4-pack),1,3.84,10/03/19 00:05,"474 Park St, Seattle, WA 98101" +277151,Lightning Charging Cable,1,14.95,10/19/19 18:26,"12 Maple St, Atlanta, GA 30301" +277152,USB-C Charging Cable,1,11.95,10/30/19 17:54,"595 Cherry St, San Francisco, CA 94016" +277153,AAA Batteries (4-pack),3,2.99,10/07/19 15:35,"502 Spruce St, New York City, NY 10001" +277154,27in 4K Gaming Monitor,1,389.99,10/23/19 16:51,"495 Washington St, Atlanta, GA 30301" +277155,ThinkPad Laptop,1,999.99,10/09/19 20:41,"255 Highland St, San Francisco, CA 94016" +277156,Lightning Charging Cable,1,14.95,10/14/19 07:52,"87 4th St, Seattle, WA 98101" +277157,Wired Headphones,1,11.99,10/17/19 14:54,"807 11th St, New York City, NY 10001" +277158,Google Phone,1,600,10/31/19 13:51,"190 Willow St, Austin, TX 73301" +277159,Lightning Charging Cable,1,14.95,10/05/19 19:10,"39 Lincoln St, New York City, NY 10001" +277160,AA Batteries (4-pack),1,3.84,10/20/19 07:52,"232 Adams St, Dallas, TX 75001" +277161,Macbook Pro Laptop,1,1700,10/03/19 10:23,"229 Maple St, New York City, NY 10001" +277162,USB-C Charging Cable,1,11.95,10/05/19 19:29,"957 Highland St, Los Angeles, CA 90001" +277163,iPhone,1,700,10/07/19 13:36,"768 Chestnut St, Los Angeles, CA 90001" +277164,USB-C Charging Cable,1,11.95,10/26/19 06:17,"170 9th St, Austin, TX 73301" +277165,Wired Headphones,1,11.99,10/14/19 19:15,"430 North St, Boston, MA 02215" +277166,AAA Batteries (4-pack),4,2.99,10/15/19 14:33,"80 Willow St, Los Angeles, CA 90001" +277167,Wired Headphones,1,11.99,10/22/19 11:20,"745 Park St, Boston, MA 02215" +277168,iPhone,1,700,10/11/19 14:48,"139 Wilson St, Boston, MA 02215" +277169,AAA Batteries (4-pack),3,2.99,10/12/19 15:44,"30 8th St, New York City, NY 10001" +277170,Wired Headphones,1,11.99,10/01/19 15:07,"511 Lake St, Atlanta, GA 30301" +277171,Lightning Charging Cable,1,14.95,10/04/19 12:11,"176 Meadow St, Portland, ME 04101" +277172,Lightning Charging Cable,2,14.95,10/28/19 14:01,"49 8th St, Portland, OR 97035" +277173,Bose SoundSport Headphones,1,99.99,10/05/19 22:56,"774 6th St, Portland, OR 97035" +277174,iPhone,1,700,10/26/19 00:34,"888 Cedar St, San Francisco, CA 94016" +277175,USB-C Charging Cable,2,11.95,10/16/19 17:53,"262 Johnson St, Atlanta, GA 30301" +277176,AAA Batteries (4-pack),1,2.99,10/19/19 20:24,"413 13th St, Austin, TX 73301" +277177,20in Monitor,1,109.99,10/01/19 19:38,"672 10th St, Los Angeles, CA 90001" +277178,Wired Headphones,1,11.99,10/06/19 11:17,"788 River St, San Francisco, CA 94016" +277179,USB-C Charging Cable,1,11.95,10/28/19 17:26,"579 Chestnut St, San Francisco, CA 94016" +277180,Wired Headphones,1,11.99,10/02/19 19:17,"383 13th St, Seattle, WA 98101" +277181,Flatscreen TV,1,300,10/03/19 09:05,"493 7th St, Dallas, TX 75001" +277182,USB-C Charging Cable,1,11.95,10/19/19 16:06,"17 West St, Atlanta, GA 30301" +277183,AAA Batteries (4-pack),2,2.99,10/19/19 21:08,"69 Lincoln St, Dallas, TX 75001" +277184,USB-C Charging Cable,1,11.95,10/01/19 18:26,"70 9th St, Portland, OR 97035" +277185,AA Batteries (4-pack),3,3.84,10/13/19 19:36,"75 4th St, Los Angeles, CA 90001" +277186,34in Ultrawide Monitor,1,379.99,10/18/19 23:21,"555 10th St, San Francisco, CA 94016" +277187,Bose SoundSport Headphones,1,99.99,10/15/19 10:43,"192 Pine St, Portland, OR 97035" +277188,Apple Airpods Headphones,1,150,10/02/19 14:32,"624 Johnson St, Los Angeles, CA 90001" +277189,Macbook Pro Laptop,1,1700,10/20/19 12:06,"798 Lake St, Atlanta, GA 30301" +277190,AAA Batteries (4-pack),1,2.99,10/04/19 10:18,"813 Elm St, New York City, NY 10001" +277191,AAA Batteries (4-pack),2,2.99,10/07/19 12:02,"323 6th St, New York City, NY 10001" +277192,AAA Batteries (4-pack),1,2.99,10/17/19 15:38,"508 Jefferson St, San Francisco, CA 94016" +277193,AA Batteries (4-pack),1,3.84,10/04/19 01:13,"347 Ridge St, Austin, TX 73301" +277194,AA Batteries (4-pack),2,3.84,10/10/19 11:01,"740 Washington St, San Francisco, CA 94016" +277195,USB-C Charging Cable,1,11.95,10/31/19 20:37,"862 Hickory St, Austin, TX 73301" +277196,iPhone,1,700,10/09/19 15:05,"721 Lakeview St, Austin, TX 73301" +277197,Bose SoundSport Headphones,1,99.99,10/28/19 15:39,"376 Lincoln St, Los Angeles, CA 90001" +277198,AAA Batteries (4-pack),2,2.99,10/18/19 23:16,"813 Meadow St, Los Angeles, CA 90001" +277199,Wired Headphones,1,11.99,10/20/19 08:13,"170 5th St, Dallas, TX 75001" +277200,Apple Airpods Headphones,1,150,10/03/19 09:05,"441 North St, Portland, OR 97035" +277201,ThinkPad Laptop,1,999.99,10/17/19 18:49,"472 8th St, Dallas, TX 75001" +277202,AAA Batteries (4-pack),1,2.99,10/30/19 11:44,"89 2nd St, Atlanta, GA 30301" +277203,AAA Batteries (4-pack),1,2.99,10/09/19 07:21,"209 Adams St, Dallas, TX 75001" +277204,Bose SoundSport Headphones,1,99.99,10/17/19 15:03,"116 River St, San Francisco, CA 94016" +277205,ThinkPad Laptop,1,999.99,10/28/19 21:51,"224 10th St, Dallas, TX 75001" +277206,AA Batteries (4-pack),1,3.84,10/04/19 22:02,"521 14th St, San Francisco, CA 94016" +277207,Apple Airpods Headphones,1,150,10/17/19 14:06,"994 Elm St, San Francisco, CA 94016" +277208,AAA Batteries (4-pack),1,2.99,10/22/19 20:51,"47 10th St, Atlanta, GA 30301" +277209,USB-C Charging Cable,1,11.95,10/01/19 08:32,"657 South St, Seattle, WA 98101" +277210,USB-C Charging Cable,1,11.95,10/01/19 13:05,"398 River St, San Francisco, CA 94016" +277211,Google Phone,1,600,10/12/19 19:50,"105 2nd St, New York City, NY 10001" +277211,USB-C Charging Cable,1,11.95,10/12/19 19:50,"105 2nd St, New York City, NY 10001" +277212,Apple Airpods Headphones,1,150,10/01/19 15:37,"903 Madison St, San Francisco, CA 94016" +277213,Apple Airpods Headphones,1,150,10/02/19 01:27,"370 South St, Dallas, TX 75001" +277214,USB-C Charging Cable,2,11.95,10/08/19 09:46,"799 Johnson St, Seattle, WA 98101" +277215,Wired Headphones,1,11.99,10/23/19 19:58,"755 10th St, New York City, NY 10001" +277216,Wired Headphones,1,11.99,10/18/19 10:27,"107 Washington St, Dallas, TX 75001" +277217,Bose SoundSport Headphones,1,99.99,10/15/19 11:59,"798 Hickory St, New York City, NY 10001" +277218,LG Dryer,1,600.0,10/20/19 15:54,"786 Church St, Seattle, WA 98101" +277219,Wired Headphones,1,11.99,10/10/19 12:35,"366 Main St, Los Angeles, CA 90001" +277220,Bose SoundSport Headphones,1,99.99,10/08/19 16:43,"188 Church St, Dallas, TX 75001" +277221,Bose SoundSport Headphones,1,99.99,10/22/19 15:47,"579 Lakeview St, Boston, MA 02215" +277222,Apple Airpods Headphones,1,150,10/09/19 17:03,"76 8th St, New York City, NY 10001" +277223,AA Batteries (4-pack),1,3.84,10/19/19 20:37,"175 Madison St, Boston, MA 02215" +277224,AAA Batteries (4-pack),3,2.99,10/15/19 23:23,"758 Hickory St, New York City, NY 10001" +277225,Flatscreen TV,1,300,10/25/19 23:57,"477 11th St, New York City, NY 10001" +277226,AAA Batteries (4-pack),5,2.99,10/07/19 19:22,"366 Adams St, San Francisco, CA 94016" +277227,Lightning Charging Cable,1,14.95,10/05/19 21:06,"143 West St, Dallas, TX 75001" +277228,Apple Airpods Headphones,1,150,10/19/19 13:30,"653 8th St, Atlanta, GA 30301" +277229,Apple Airpods Headphones,1,150,10/31/19 13:07,"725 Ridge St, Austin, TX 73301" +277230,AAA Batteries (4-pack),1,2.99,10/17/19 15:29,"197 4th St, San Francisco, CA 94016" +277231,iPhone,1,700,10/14/19 23:46,"566 Forest St, San Francisco, CA 94016" +277232,34in Ultrawide Monitor,1,379.99,10/14/19 23:06,"206 Hickory St, San Francisco, CA 94016" +277233,Lightning Charging Cable,1,14.95,10/03/19 14:19,"650 Sunset St, Los Angeles, CA 90001" +277234,AAA Batteries (4-pack),3,2.99,10/18/19 13:21,"386 Johnson St, Los Angeles, CA 90001" +,,,,, +277235,USB-C Charging Cable,1,11.95,10/16/19 12:54,"621 6th St, Portland, OR 97035" +277236,Wired Headphones,1,11.99,10/22/19 10:49,"223 Johnson St, Los Angeles, CA 90001" +277237,Apple Airpods Headphones,1,150,10/31/19 10:24,"210 Elm St, San Francisco, CA 94016" +277238,AA Batteries (4-pack),1,3.84,10/07/19 07:03,"901 10th St, San Francisco, CA 94016" +277239,Apple Airpods Headphones,1,150,10/18/19 12:17,"601 North St, Los Angeles, CA 90001" +277240,USB-C Charging Cable,1,11.95,10/23/19 20:17,"272 Center St, Boston, MA 02215" +277241,USB-C Charging Cable,1,11.95,10/03/19 19:05,"277 West St, Dallas, TX 75001" +277242,AA Batteries (4-pack),1,3.84,10/16/19 22:05,"157 Johnson St, Seattle, WA 98101" +277243,Wired Headphones,2,11.99,10/13/19 16:11,"879 Chestnut St, San Francisco, CA 94016" +277244,Bose SoundSport Headphones,1,99.99,10/06/19 11:12,"821 Center St, San Francisco, CA 94016" +277245,AA Batteries (4-pack),1,3.84,10/26/19 20:10,"961 Maple St, Boston, MA 02215" +277246,Wired Headphones,1,11.99,10/18/19 22:21,"774 Lakeview St, New York City, NY 10001" +277247,Wired Headphones,1,11.99,10/18/19 10:33,"226 Church St, San Francisco, CA 94016" +277248,Lightning Charging Cable,1,14.95,10/11/19 21:28,"348 Forest St, San Francisco, CA 94016" +277249,Wired Headphones,1,11.99,10/27/19 17:44,"633 Elm St, Portland, OR 97035" +277250,Wired Headphones,2,11.99,10/07/19 16:01,"749 Maple St, Dallas, TX 75001" +277251,Google Phone,1,600,10/15/19 23:06,"776 Church St, Portland, OR 97035" +277252,AAA Batteries (4-pack),2,2.99,10/14/19 12:23,"146 North St, San Francisco, CA 94016" +277253,Bose SoundSport Headphones,1,99.99,10/09/19 17:39,"259 8th St, New York City, NY 10001" +277254,Lightning Charging Cable,1,14.95,10/23/19 20:53,"678 5th St, Austin, TX 73301" +277255,Bose SoundSport Headphones,1,99.99,10/17/19 11:19,"308 Willow St, New York City, NY 10001" +277256,AA Batteries (4-pack),1,3.84,10/29/19 21:09,"503 Main St, San Francisco, CA 94016" +277257,AAA Batteries (4-pack),1,2.99,10/21/19 11:25,"611 Wilson St, San Francisco, CA 94016" +277258,AAA Batteries (4-pack),1,2.99,10/19/19 15:08,"889 Highland St, New York City, NY 10001" +277259,Bose SoundSport Headphones,1,99.99,10/22/19 20:00,"606 Hickory St, Seattle, WA 98101" +277260,Lightning Charging Cable,1,14.95,10/21/19 23:36,"49 Johnson St, Portland, ME 04101" +277261,AA Batteries (4-pack),1,3.84,10/19/19 00:11,"641 14th St, Boston, MA 02215" +277262,USB-C Charging Cable,1,11.95,10/30/19 06:09,"868 Hill St, Boston, MA 02215" +277263,Wired Headphones,1,11.99,10/16/19 14:41,"621 2nd St, Boston, MA 02215" +277264,ThinkPad Laptop,1,999.99,10/29/19 15:43,"149 Highland St, Los Angeles, CA 90001" +277265,AA Batteries (4-pack),2,3.84,10/27/19 13:26,"639 Chestnut St, San Francisco, CA 94016" +277266,Lightning Charging Cable,1,14.95,10/26/19 18:44,"839 2nd St, Seattle, WA 98101" +277267,Wired Headphones,1,11.99,10/12/19 21:56,"390 Wilson St, New York City, NY 10001" +277268,USB-C Charging Cable,1,11.95,10/13/19 15:08,"722 12th St, Portland, ME 04101" +277269,AAA Batteries (4-pack),3,2.99,10/25/19 11:03,"40 Wilson St, New York City, NY 10001" +277270,USB-C Charging Cable,1,11.95,10/01/19 10:38,"672 Meadow St, Atlanta, GA 30301" +277271,USB-C Charging Cable,1,11.95,10/13/19 20:54,"32 Meadow St, New York City, NY 10001" +277272,USB-C Charging Cable,1,11.95,10/10/19 10:11,"46 Washington St, San Francisco, CA 94016" +277273,Flatscreen TV,1,300,10/31/19 21:16,"365 Pine St, Portland, OR 97035" +277274,USB-C Charging Cable,1,11.95,10/05/19 15:01,"548 Spruce St, Boston, MA 02215" +277275,USB-C Charging Cable,1,11.95,10/26/19 16:32,"198 Johnson St, Dallas, TX 75001" +277276,Wired Headphones,2,11.99,10/22/19 11:57,"961 Dogwood St, Portland, OR 97035" +277277,Macbook Pro Laptop,1,1700,10/18/19 21:36,"551 Cedar St, Atlanta, GA 30301" +277278,Lightning Charging Cable,1,14.95,10/25/19 20:20,"491 Lincoln St, San Francisco, CA 94016" +277279,Flatscreen TV,1,300,10/29/19 12:04,"121 Main St, New York City, NY 10001" +277280,AAA Batteries (4-pack),1,2.99,10/06/19 19:47,"233 Main St, New York City, NY 10001" +277281,iPhone,1,700,10/23/19 12:47,"838 West St, San Francisco, CA 94016" +277282,Lightning Charging Cable,1,14.95,10/26/19 22:00,"124 Wilson St, Atlanta, GA 30301" +277283,AA Batteries (4-pack),1,3.84,10/28/19 15:52,"685 South St, Atlanta, GA 30301" +277284,Bose SoundSport Headphones,1,99.99,10/30/19 09:35,"512 Jefferson St, Portland, OR 97035" +277285,USB-C Charging Cable,1,11.95,10/01/19 10:48,"665 7th St, Dallas, TX 75001" +277286,AA Batteries (4-pack),2,3.84,10/19/19 10:46,"437 Hill St, New York City, NY 10001" +277287,AA Batteries (4-pack),1,3.84,10/02/19 01:00,"442 Dogwood St, New York City, NY 10001" +277288,27in FHD Monitor,1,149.99,10/26/19 17:12,"871 Cedar St, Boston, MA 02215" +277289,iPhone,1,700,10/17/19 22:15,"283 Maple St, Dallas, TX 75001" +277289,Lightning Charging Cable,1,14.95,10/17/19 22:15,"283 Maple St, Dallas, TX 75001" +277290,Bose SoundSport Headphones,1,99.99,10/04/19 08:37,"911 Hill St, Los Angeles, CA 90001" +277291,AA Batteries (4-pack),1,3.84,10/02/19 11:15,"262 Wilson St, Boston, MA 02215" +277292,Wired Headphones,1,11.99,10/05/19 13:17,"679 Forest St, Boston, MA 02215" +277293,Bose SoundSport Headphones,1,99.99,10/09/19 19:31,"678 Cedar St, Atlanta, GA 30301" +277294,Lightning Charging Cable,1,14.95,10/09/19 09:23,"7 Center St, Dallas, TX 75001" +277295,Apple Airpods Headphones,1,150,10/07/19 08:47,"898 6th St, Boston, MA 02215" +277296,Lightning Charging Cable,1,14.95,10/31/19 09:56,"645 6th St, Dallas, TX 75001" +277297,Bose SoundSport Headphones,1,99.99,10/16/19 10:09,"725 Pine St, San Francisco, CA 94016" +277298,Wired Headphones,1,11.99,10/13/19 00:18,"564 Lincoln St, Portland, OR 97035" +277299,Wired Headphones,1,11.99,10/19/19 21:22,"64 Pine St, San Francisco, CA 94016" +277300,Lightning Charging Cable,1,14.95,10/28/19 17:51,"275 Pine St, San Francisco, CA 94016" +277301,Wired Headphones,1,11.99,11/01/19 00:16,"828 Johnson St, Boston, MA 02215" +277302,27in FHD Monitor,1,149.99,10/07/19 19:10,"269 8th St, Seattle, WA 98101" +277303,34in Ultrawide Monitor,1,379.99,10/19/19 10:24,"811 13th St, San Francisco, CA 94016" +277304,AA Batteries (4-pack),3,3.84,10/24/19 12:50,"951 7th St, New York City, NY 10001" +277305,27in FHD Monitor,1,149.99,10/28/19 19:15,"334 South St, Seattle, WA 98101" +277306,USB-C Charging Cable,1,11.95,10/28/19 13:36,"13 Church St, New York City, NY 10001" +277307,AA Batteries (4-pack),1,3.84,10/14/19 14:44,"220 Dogwood St, Los Angeles, CA 90001" +277308,27in FHD Monitor,1,149.99,10/19/19 21:00,"390 Lake St, Boston, MA 02215" +277309,USB-C Charging Cable,1,11.95,10/04/19 11:05,"813 Wilson St, Austin, TX 73301" +277310,AAA Batteries (4-pack),1,2.99,10/21/19 23:36,"265 Lakeview St, Los Angeles, CA 90001" +277311,Apple Airpods Headphones,1,150,10/05/19 11:17,"22 Washington St, Seattle, WA 98101" +277312,Lightning Charging Cable,1,14.95,10/09/19 13:33,"688 Park St, Seattle, WA 98101" +277313,Macbook Pro Laptop,1,1700,10/09/19 14:15,"860 5th St, Boston, MA 02215" +277314,20in Monitor,1,109.99,10/13/19 21:48,"580 10th St, San Francisco, CA 94016" +277315,AA Batteries (4-pack),2,3.84,10/11/19 08:06,"884 11th St, Los Angeles, CA 90001" +277316,AA Batteries (4-pack),3,3.84,10/17/19 12:07,"517 Ridge St, Atlanta, GA 30301" +277317,Wired Headphones,1,11.99,10/23/19 08:31,"290 5th St, Dallas, TX 75001" +277318,Apple Airpods Headphones,1,150,10/23/19 12:13,"30 Jefferson St, New York City, NY 10001" +277319,34in Ultrawide Monitor,1,379.99,10/31/19 11:54,"606 Willow St, San Francisco, CA 94016" +277320,Apple Airpods Headphones,1,150,10/25/19 12:07,"870 Ridge St, Los Angeles, CA 90001" +277321,AAA Batteries (4-pack),1,2.99,10/26/19 17:53,"792 Chestnut St, Seattle, WA 98101" +277322,Wired Headphones,1,11.99,10/06/19 17:46,"541 6th St, New York City, NY 10001" +277323,Lightning Charging Cable,1,14.95,10/14/19 13:41,"587 10th St, San Francisco, CA 94016" +277324,AAA Batteries (4-pack),1,2.99,10/07/19 09:50,"220 Maple St, Los Angeles, CA 90001" +277325,Wired Headphones,2,11.99,10/08/19 13:53,"493 Pine St, New York City, NY 10001" +277326,Bose SoundSport Headphones,1,99.99,10/31/19 09:05,"359 Wilson St, New York City, NY 10001" +277327,AAA Batteries (4-pack),1,2.99,10/08/19 23:23,"417 Walnut St, Seattle, WA 98101" +277328,AA Batteries (4-pack),1,3.84,10/05/19 13:12,"978 Cherry St, San Francisco, CA 94016" +277329,AAA Batteries (4-pack),6,2.99,10/09/19 12:27,"808 Hickory St, Los Angeles, CA 90001" +277330,Wired Headphones,1,11.99,10/10/19 16:30,"709 Forest St, Los Angeles, CA 90001" +277331,Lightning Charging Cable,1,14.95,10/17/19 12:59,"894 Main St, Boston, MA 02215" +277332,Bose SoundSport Headphones,1,99.99,10/04/19 17:37,"565 9th St, Boston, MA 02215" +277333,Google Phone,1,600,10/20/19 10:27,"354 Johnson St, New York City, NY 10001" +277334,Apple Airpods Headphones,1,150,10/23/19 18:33,"69 1st St, Los Angeles, CA 90001" +277335,Apple Airpods Headphones,1,150,10/14/19 11:34,"598 South St, Los Angeles, CA 90001" +277336,USB-C Charging Cable,1,11.95,10/11/19 14:38,"960 Main St, New York City, NY 10001" +277337,Vareebadd Phone,1,400,10/30/19 08:33,"304 Cedar St, Dallas, TX 75001" +277338,Lightning Charging Cable,1,14.95,10/13/19 15:12,"699 Forest St, Austin, TX 73301" +277339,AA Batteries (4-pack),1,3.84,10/04/19 10:30,"103 Spruce St, Boston, MA 02215" +277340,USB-C Charging Cable,1,11.95,10/27/19 19:20,"915 Wilson St, San Francisco, CA 94016" +277341,Apple Airpods Headphones,1,150,10/24/19 14:18,"824 Cherry St, Seattle, WA 98101" +277342,Bose SoundSport Headphones,1,99.99,10/12/19 20:59,"638 1st St, New York City, NY 10001" +277343,Lightning Charging Cable,1,14.95,10/24/19 18:47,"952 Meadow St, Seattle, WA 98101" +277344,Wired Headphones,1,11.99,10/04/19 16:05,"72 Center St, Portland, ME 04101" +277345,USB-C Charging Cable,1,11.95,10/29/19 17:38,"499 Forest St, Atlanta, GA 30301" +277346,27in FHD Monitor,1,149.99,10/24/19 07:34,"107 Church St, Boston, MA 02215" +277347,27in FHD Monitor,1,149.99,10/12/19 19:30,"692 8th St, Los Angeles, CA 90001" +277348,USB-C Charging Cable,1,11.95,10/02/19 21:52,"850 8th St, San Francisco, CA 94016" +277349,USB-C Charging Cable,1,11.95,10/28/19 14:43,"360 12th St, Dallas, TX 75001" +277350,AA Batteries (4-pack),2,3.84,10/14/19 13:47,"392 Cherry St, Atlanta, GA 30301" +277351,Wired Headphones,2,11.99,10/09/19 20:13,"849 River St, Atlanta, GA 30301" +277352,USB-C Charging Cable,1,11.95,10/10/19 16:26,"872 13th St, Los Angeles, CA 90001" +277353,Wired Headphones,1,11.99,10/05/19 12:55,"279 Hickory St, Los Angeles, CA 90001" +277354,Wired Headphones,1,11.99,10/31/19 18:40,"205 11th St, Los Angeles, CA 90001" +277355,27in FHD Monitor,1,149.99,10/06/19 08:23,"363 Maple St, Boston, MA 02215" +277356,AA Batteries (4-pack),1,3.84,10/27/19 06:23,"166 11th St, San Francisco, CA 94016" +277357,Apple Airpods Headphones,1,150,10/09/19 21:49,"722 Sunset St, New York City, NY 10001" +277358,USB-C Charging Cable,1,11.95,10/30/19 12:55,"72 Dogwood St, Portland, OR 97035" +277359,27in 4K Gaming Monitor,1,389.99,10/15/19 17:22,"684 5th St, New York City, NY 10001" +277360,AAA Batteries (4-pack),2,2.99,10/06/19 20:22,"282 Madison St, San Francisco, CA 94016" +277361,Bose SoundSport Headphones,1,99.99,10/05/19 19:39,"861 Ridge St, San Francisco, CA 94016" +277362,AA Batteries (4-pack),1,3.84,10/26/19 21:45,"845 Lake St, Boston, MA 02215" +277363,Wired Headphones,1,11.99,10/20/19 18:08,"833 Jackson St, New York City, NY 10001" +277364,USB-C Charging Cable,1,11.95,10/15/19 10:19,"425 Ridge St, Atlanta, GA 30301" +277365,Google Phone,1,600,10/20/19 17:11,"692 South St, Atlanta, GA 30301" +277366,AAA Batteries (4-pack),2,2.99,10/30/19 06:09,"464 6th St, Boston, MA 02215" +277367,Macbook Pro Laptop,1,1700,10/03/19 11:52,"249 Main St, San Francisco, CA 94016" +277368,Wired Headphones,1,11.99,10/05/19 21:16,"252 Chestnut St, San Francisco, CA 94016" +277369,ThinkPad Laptop,1,999.99,10/24/19 18:35,"261 10th St, Dallas, TX 75001" +277370,AA Batteries (4-pack),1,3.84,10/21/19 09:28,"900 1st St, San Francisco, CA 94016" +277371,USB-C Charging Cable,1,11.95,10/02/19 13:39,"692 Maple St, New York City, NY 10001" +277372,Bose SoundSport Headphones,1,99.99,10/16/19 07:54,"457 Lake St, Boston, MA 02215" +277373,ThinkPad Laptop,1,999.99,10/13/19 17:26,"955 South St, New York City, NY 10001" +277374,Bose SoundSport Headphones,1,99.99,10/28/19 10:44,"852 Lake St, San Francisco, CA 94016" +277375,Apple Airpods Headphones,1,150,10/16/19 19:13,"469 6th St, Portland, OR 97035" +277376,Bose SoundSport Headphones,1,99.99,10/13/19 19:11,"95 11th St, San Francisco, CA 94016" +277377,USB-C Charging Cable,1,11.95,10/08/19 09:29,"104 Park St, New York City, NY 10001" +277378,USB-C Charging Cable,1,11.95,10/22/19 17:10,"516 1st St, New York City, NY 10001" +277379,USB-C Charging Cable,1,11.95,10/08/19 20:21,"648 9th St, Portland, OR 97035" +277380,Wired Headphones,2,11.99,10/09/19 18:03,"244 Forest St, Boston, MA 02215" +277381,AAA Batteries (4-pack),4,2.99,10/28/19 15:39,"312 Forest St, Seattle, WA 98101" +277382,Apple Airpods Headphones,1,150,10/04/19 20:24,"695 Sunset St, San Francisco, CA 94016" +277383,Bose SoundSport Headphones,1,99.99,10/14/19 15:21,"719 Washington St, Portland, ME 04101" +277384,Wired Headphones,1,11.99,10/15/19 13:11,"84 Lake St, Portland, ME 04101" +277385,Lightning Charging Cable,1,14.95,10/20/19 11:10,"127 11th St, Los Angeles, CA 90001" +277386,Vareebadd Phone,1,400,10/07/19 19:39,"406 Madison St, Atlanta, GA 30301" +277386,USB-C Charging Cable,1,11.95,10/07/19 19:39,"406 Madison St, Atlanta, GA 30301" +277387,Lightning Charging Cable,1,14.95,10/28/19 09:38,"573 2nd St, Portland, OR 97035" +277388,AAA Batteries (4-pack),1,2.99,10/17/19 16:12,"711 Lake St, Los Angeles, CA 90001" +277389,20in Monitor,1,109.99,10/13/19 22:16,"861 Center St, Atlanta, GA 30301" +277390,Wired Headphones,1,11.99,10/19/19 17:34,"817 13th St, Los Angeles, CA 90001" +277391,AAA Batteries (4-pack),1,2.99,10/29/19 19:30,"855 Park St, New York City, NY 10001" +277392,Wired Headphones,1,11.99,10/14/19 14:39,"255 Washington St, Los Angeles, CA 90001" +277393,Macbook Pro Laptop,1,1700,10/13/19 17:42,"500 4th St, San Francisco, CA 94016" +277394,Wired Headphones,1,11.99,10/13/19 16:47,"464 4th St, Boston, MA 02215" +277395,Vareebadd Phone,1,400,10/26/19 09:01,"701 Dogwood St, Austin, TX 73301" +277396,Apple Airpods Headphones,1,150,10/29/19 12:44,"773 7th St, Boston, MA 02215" +277397,27in 4K Gaming Monitor,1,389.99,10/26/19 22:58,"885 Cedar St, Seattle, WA 98101" +277398,27in 4K Gaming Monitor,1,389.99,10/06/19 08:45,"759 Meadow St, San Francisco, CA 94016" +277399,AAA Batteries (4-pack),1,2.99,10/10/19 11:00,"409 2nd St, San Francisco, CA 94016" +277400,USB-C Charging Cable,1,11.95,10/10/19 18:41,"388 Lake St, San Francisco, CA 94016" +277401,AA Batteries (4-pack),1,3.84,10/08/19 23:24,"259 Johnson St, Boston, MA 02215" +277402,AAA Batteries (4-pack),1,2.99,10/18/19 17:03,"817 Sunset St, New York City, NY 10001" +277403,27in FHD Monitor,1,149.99,10/08/19 20:45,"234 12th St, San Francisco, CA 94016" +277404,AAA Batteries (4-pack),2,2.99,10/12/19 23:23,"34 Center St, New York City, NY 10001" +277405,AA Batteries (4-pack),1,3.84,10/11/19 16:48,"257 Church St, San Francisco, CA 94016" +277406,USB-C Charging Cable,1,11.95,10/13/19 00:32,"810 Maple St, Portland, OR 97035" +277407,Wired Headphones,1,11.99,10/24/19 23:32,"757 12th St, New York City, NY 10001" +277408,AAA Batteries (4-pack),1,2.99,10/22/19 21:27,"557 Spruce St, Los Angeles, CA 90001" +277409,AAA Batteries (4-pack),1,2.99,10/08/19 08:54,"144 Center St, San Francisco, CA 94016" +277410,Lightning Charging Cable,1,14.95,10/31/19 09:10,"948 Dogwood St, New York City, NY 10001" +277411,Google Phone,1,600,10/05/19 17:56,"256 Chestnut St, Los Angeles, CA 90001" +277412,Google Phone,1,600,10/14/19 19:45,"200 Hill St, Los Angeles, CA 90001" +277413,Apple Airpods Headphones,1,150,10/25/19 11:54,"214 Dogwood St, Atlanta, GA 30301" +277414,AA Batteries (4-pack),1,3.84,10/31/19 16:29,"311 4th St, Austin, TX 73301" +277415,AA Batteries (4-pack),1,3.84,10/27/19 11:02,"973 Chestnut St, San Francisco, CA 94016" +277416,AA Batteries (4-pack),2,3.84,11/01/19 01:26,"568 Washington St, San Francisco, CA 94016" +277417,iPhone,1,700,10/20/19 07:18,"193 Jefferson St, Los Angeles, CA 90001" +277418,AAA Batteries (4-pack),1,2.99,10/10/19 10:31,"471 North St, Boston, MA 02215" +277419,34in Ultrawide Monitor,1,379.99,10/05/19 03:56,"377 Adams St, Dallas, TX 75001" +277420,AA Batteries (4-pack),3,3.84,10/25/19 20:23,"303 Cedar St, Dallas, TX 75001" +277421,Wired Headphones,1,11.99,10/21/19 20:16,"721 5th St, Seattle, WA 98101" +277422,iPhone,1,700,10/03/19 13:37,"333 8th St, Austin, TX 73301" +277422,Apple Airpods Headphones,1,150,10/03/19 13:37,"333 8th St, Austin, TX 73301" +277423,Macbook Pro Laptop,1,1700,10/22/19 10:53,"424 12th St, San Francisco, CA 94016" +277424,Apple Airpods Headphones,1,150,10/14/19 16:42,"70 Church St, San Francisco, CA 94016" +277425,AAA Batteries (4-pack),1,2.99,10/07/19 10:14,"5 13th St, San Francisco, CA 94016" +277426,USB-C Charging Cable,1,11.95,10/13/19 14:52,"364 7th St, Seattle, WA 98101" +277427,AA Batteries (4-pack),1,3.84,10/25/19 13:54,"400 12th St, Los Angeles, CA 90001" +277427,27in FHD Monitor,1,149.99,10/25/19 13:54,"400 12th St, Los Angeles, CA 90001" +277428,Flatscreen TV,1,300,10/21/19 17:23,"295 Jefferson St, San Francisco, CA 94016" +277429,Wired Headphones,1,11.99,10/14/19 18:35,"569 Elm St, Boston, MA 02215" +277430,ThinkPad Laptop,1,999.99,10/18/19 15:28,"646 Lakeview St, San Francisco, CA 94016" +277431,Lightning Charging Cable,2,14.95,10/13/19 21:57,"163 12th St, San Francisco, CA 94016" +277432,ThinkPad Laptop,1,999.99,10/21/19 17:22,"474 Spruce St, San Francisco, CA 94016" +277433,AAA Batteries (4-pack),3,2.99,10/05/19 11:23,"612 8th St, San Francisco, CA 94016" +277434,USB-C Charging Cable,1,11.95,10/07/19 22:54,"836 South St, San Francisco, CA 94016" +277435,20in Monitor,1,109.99,10/26/19 13:49,"820 Hill St, Portland, OR 97035" +277436,USB-C Charging Cable,1,11.95,10/18/19 14:08,"353 Hickory St, Boston, MA 02215" +277437,20in Monitor,1,109.99,10/28/19 20:46,"742 Elm St, San Francisco, CA 94016" +277438,Bose SoundSport Headphones,1,99.99,10/03/19 18:37,"913 North St, Los Angeles, CA 90001" +277439,Bose SoundSport Headphones,1,99.99,10/20/19 00:54,"574 Forest St, San Francisco, CA 94016" +277440,USB-C Charging Cable,1,11.95,10/28/19 14:44,"803 14th St, San Francisco, CA 94016" +277441,AAA Batteries (4-pack),2,2.99,10/14/19 15:19,"933 9th St, Atlanta, GA 30301" +277442,AA Batteries (4-pack),1,3.84,10/09/19 21:51,"827 Wilson St, Los Angeles, CA 90001" +277443,AAA Batteries (4-pack),1,2.99,10/09/19 14:18,"140 Chestnut St, San Francisco, CA 94016" +277444,Vareebadd Phone,1,400,10/13/19 12:18,"637 Cedar St, Dallas, TX 75001" +277445,Wired Headphones,1,11.99,10/20/19 15:29,"303 Johnson St, Austin, TX 73301" +277445,USB-C Charging Cable,1,11.95,10/20/19 15:29,"303 Johnson St, Austin, TX 73301" +277446,Lightning Charging Cable,1,14.95,10/08/19 20:13,"934 Hickory St, Boston, MA 02215" +277447,AAA Batteries (4-pack),1,2.99,10/16/19 11:37,"897 Maple St, New York City, NY 10001" +277448,20in Monitor,1,109.99,10/12/19 19:40,"953 Meadow St, Seattle, WA 98101" +277449,USB-C Charging Cable,1,11.95,10/29/19 20:07,"464 8th St, Los Angeles, CA 90001" +277450,20in Monitor,1,109.99,10/22/19 17:49,"275 Lake St, Atlanta, GA 30301" +277451,AA Batteries (4-pack),1,3.84,10/11/19 10:27,"60 Ridge St, Los Angeles, CA 90001" +277452,27in 4K Gaming Monitor,1,389.99,10/30/19 19:13,"758 8th St, New York City, NY 10001" +277453,USB-C Charging Cable,1,11.95,10/24/19 00:38,"679 North St, Boston, MA 02215" +277454,Wired Headphones,1,11.99,10/07/19 16:46,"41 Forest St, Los Angeles, CA 90001" +277455,27in FHD Monitor,1,149.99,10/16/19 10:45,"620 Highland St, New York City, NY 10001" +277456,AAA Batteries (4-pack),2,2.99,10/07/19 07:27,"767 River St, San Francisco, CA 94016" +277457,Apple Airpods Headphones,1,150,10/22/19 12:22,"429 Jackson St, San Francisco, CA 94016" +277458,Vareebadd Phone,1,400,10/03/19 12:57,"74 10th St, San Francisco, CA 94016" +277459,AA Batteries (4-pack),1,3.84,10/10/19 23:15,"552 14th St, Los Angeles, CA 90001" +277460,Wired Headphones,2,11.99,10/28/19 12:16,"268 Chestnut St, San Francisco, CA 94016" +277461,iPhone,1,700,10/26/19 11:26,"311 Jackson St, New York City, NY 10001" +277462,AA Batteries (4-pack),2,3.84,10/05/19 12:40,"371 Ridge St, San Francisco, CA 94016" +277463,Bose SoundSport Headphones,1,99.99,10/21/19 12:48,"900 Cherry St, San Francisco, CA 94016" +277464,Apple Airpods Headphones,1,150,10/08/19 19:02,"27 9th St, Boston, MA 02215" +277465,AAA Batteries (4-pack),1,2.99,10/15/19 19:49,"860 Center St, Atlanta, GA 30301" +277466,AAA Batteries (4-pack),1,2.99,10/06/19 11:14,"330 Park St, San Francisco, CA 94016" +277467,AA Batteries (4-pack),1,3.84,10/18/19 12:26,"375 11th St, Los Angeles, CA 90001" +277468,AAA Batteries (4-pack),1,2.99,10/10/19 00:54,"907 11th St, San Francisco, CA 94016" +277469,Wired Headphones,1,11.99,10/26/19 13:21,"367 14th St, Los Angeles, CA 90001" +277470,AA Batteries (4-pack),1,3.84,10/15/19 15:48,"628 Center St, Austin, TX 73301" +277471,Bose SoundSport Headphones,1,99.99,10/17/19 11:46,"744 Spruce St, Los Angeles, CA 90001" +277472,Flatscreen TV,1,300,10/24/19 05:34,"232 Cherry St, Seattle, WA 98101" +277473,AA Batteries (4-pack),1,3.84,10/16/19 02:00,"524 5th St, Portland, OR 97035" +277474,AA Batteries (4-pack),5,3.84,10/24/19 10:34,"929 Wilson St, San Francisco, CA 94016" +277475,Apple Airpods Headphones,1,150,10/31/19 13:11,"108 Center St, Austin, TX 73301" +277476,AAA Batteries (4-pack),1,2.99,10/31/19 20:34,"827 2nd St, Seattle, WA 98101" +277477,Flatscreen TV,1,300,10/14/19 14:58,"254 Forest St, Seattle, WA 98101" +277478,Wired Headphones,1,11.99,10/09/19 09:53,"221 Lake St, San Francisco, CA 94016" +277479,AA Batteries (4-pack),1,3.84,10/19/19 21:18,"398 Lake St, San Francisco, CA 94016" +277480,Lightning Charging Cable,1,14.95,10/28/19 19:57,"104 14th St, New York City, NY 10001" +277481,USB-C Charging Cable,1,11.95,10/07/19 06:25,"657 9th St, Boston, MA 02215" +277482,Vareebadd Phone,1,400,10/14/19 16:30,"18 5th St, San Francisco, CA 94016" +277482,USB-C Charging Cable,1,11.95,10/14/19 16:30,"18 5th St, San Francisco, CA 94016" +277483,ThinkPad Laptop,1,999.99,10/09/19 14:01,"382 Willow St, Seattle, WA 98101" +277484,20in Monitor,1,109.99,10/29/19 16:24,"358 Jefferson St, Portland, ME 04101" +277485,Lightning Charging Cable,1,14.95,10/17/19 10:59,"427 6th St, San Francisco, CA 94016" +277486,Lightning Charging Cable,1,14.95,10/31/19 14:14,"258 North St, New York City, NY 10001" +277487,AAA Batteries (4-pack),1,2.99,10/27/19 20:39,"581 Adams St, Los Angeles, CA 90001" +277488,AA Batteries (4-pack),1,3.84,10/22/19 11:19,"36 Hill St, San Francisco, CA 94016" +277488,34in Ultrawide Monitor,2,379.99,10/22/19 11:19,"36 Hill St, San Francisco, CA 94016" +277489,Macbook Pro Laptop,1,1700,10/16/19 18:08,"968 Cherry St, Dallas, TX 75001" +277490,27in FHD Monitor,1,149.99,10/22/19 18:21,"453 Jackson St, New York City, NY 10001" +277491,Wired Headphones,1,11.99,10/05/19 22:05,"58 South St, Atlanta, GA 30301" +277492,AA Batteries (4-pack),1,3.84,10/02/19 20:07,"727 Elm St, Seattle, WA 98101" +277493,27in FHD Monitor,1,149.99,10/14/19 13:18,"565 4th St, Boston, MA 02215" +277494,USB-C Charging Cable,1,11.95,10/28/19 08:44,"381 Spruce St, San Francisco, CA 94016" +277495,AAA Batteries (4-pack),4,2.99,10/11/19 19:08,"51 13th St, New York City, NY 10001" +277496,34in Ultrawide Monitor,1,379.99,10/01/19 20:08,"103 Park St, Dallas, TX 75001" +277497,AA Batteries (4-pack),1,3.84,10/23/19 10:47,"724 Maple St, San Francisco, CA 94016" +277498,Wired Headphones,1,11.99,10/20/19 15:19,"844 Jackson St, Dallas, TX 75001" +277499,USB-C Charging Cable,1,11.95,10/12/19 11:22,"764 1st St, New York City, NY 10001" +277500,AA Batteries (4-pack),1,3.84,10/03/19 12:27,"579 West St, New York City, NY 10001" +277501,Bose SoundSport Headphones,1,99.99,10/01/19 09:26,"996 Cedar St, San Francisco, CA 94016" +277502,Flatscreen TV,1,300,10/01/19 19:15,"102 Jackson St, Seattle, WA 98101" +277503,Lightning Charging Cable,1,14.95,10/29/19 11:56,"960 11th St, Boston, MA 02215" +277504,Apple Airpods Headphones,1,150,10/03/19 08:13,"652 Hill St, San Francisco, CA 94016" +277505,Macbook Pro Laptop,1,1700,10/20/19 20:32,"594 Lakeview St, San Francisco, CA 94016" +277506,AAA Batteries (4-pack),2,2.99,10/15/19 09:27,"344 Lake St, New York City, NY 10001" +277507,Apple Airpods Headphones,1,150,10/09/19 15:10,"704 8th St, Seattle, WA 98101" +277508,USB-C Charging Cable,1,11.95,10/06/19 12:13,"5 1st St, Dallas, TX 75001" +277509,ThinkPad Laptop,1,999.99,10/09/19 11:33,"837 Meadow St, New York City, NY 10001" +277510,Wired Headphones,1,11.99,10/05/19 21:30,"141 7th St, San Francisco, CA 94016" +277511,Lightning Charging Cable,1,14.95,10/03/19 11:21,"723 Sunset St, Boston, MA 02215" +277512,34in Ultrawide Monitor,1,379.99,10/22/19 19:29,"631 Cedar St, Boston, MA 02215" +277513,USB-C Charging Cable,1,11.95,10/15/19 16:34,"350 2nd St, Dallas, TX 75001" +277514,AA Batteries (4-pack),2,3.84,10/30/19 00:23,"207 12th St, San Francisco, CA 94016" +277515,Vareebadd Phone,1,400,10/19/19 07:52,"765 Jefferson St, New York City, NY 10001" +277516,34in Ultrawide Monitor,1,379.99,10/22/19 13:02,"891 10th St, Atlanta, GA 30301" +277517,Wired Headphones,1,11.99,10/10/19 14:47,"535 Park St, New York City, NY 10001" +277518,Lightning Charging Cable,1,14.95,10/18/19 00:49,"593 Center St, New York City, NY 10001" +277519,Google Phone,1,600,10/11/19 00:53,"824 Willow St, New York City, NY 10001" +277519,USB-C Charging Cable,1,11.95,10/11/19 00:53,"824 Willow St, New York City, NY 10001" +277520,USB-C Charging Cable,1,11.95,10/29/19 22:32,"487 Adams St, San Francisco, CA 94016" +277521,iPhone,1,700,10/01/19 19:36,"34 Main St, San Francisco, CA 94016" +277522,Lightning Charging Cable,1,14.95,10/01/19 13:07,"468 Highland St, New York City, NY 10001" +277523,27in 4K Gaming Monitor,1,389.99,10/24/19 12:27,"456 North St, San Francisco, CA 94016" +277524,ThinkPad Laptop,1,999.99,10/13/19 21:48,"149 13th St, Los Angeles, CA 90001" +277525,Bose SoundSport Headphones,1,99.99,10/20/19 20:59,"792 Spruce St, New York City, NY 10001" +277526,AA Batteries (4-pack),2,3.84,10/11/19 12:26,"265 14th St, Boston, MA 02215" +277527,AA Batteries (4-pack),1,3.84,10/01/19 23:22,"835 Highland St, San Francisco, CA 94016" +277528,AA Batteries (4-pack),1,3.84,10/15/19 16:29,"495 Wilson St, San Francisco, CA 94016" +277529,AAA Batteries (4-pack),1,2.99,10/21/19 20:24,"126 Center St, San Francisco, CA 94016" +277530,AA Batteries (4-pack),1,3.84,10/08/19 17:50,"181 North St, New York City, NY 10001" +277531,Bose SoundSport Headphones,1,99.99,10/30/19 10:49,"685 Adams St, Los Angeles, CA 90001" +277532,AAA Batteries (4-pack),1,2.99,10/17/19 13:03,"959 6th St, San Francisco, CA 94016" +277533,USB-C Charging Cable,1,11.95,10/10/19 02:40,"718 Washington St, San Francisco, CA 94016" +277534,USB-C Charging Cable,1,11.95,10/07/19 01:37,"242 14th St, Austin, TX 73301" +277535,USB-C Charging Cable,1,11.95,10/16/19 09:32,"518 Chestnut St, San Francisco, CA 94016" +277536,AAA Batteries (4-pack),2,2.99,10/24/19 12:17,"971 Wilson St, Dallas, TX 75001" +277537,34in Ultrawide Monitor,1,379.99,10/18/19 08:35,"386 4th St, Los Angeles, CA 90001" +277538,ThinkPad Laptop,1,999.99,10/23/19 12:01,"714 Elm St, San Francisco, CA 94016" +277539,USB-C Charging Cable,1,11.95,10/23/19 23:12,"403 Adams St, Boston, MA 02215" +277540,Lightning Charging Cable,1,14.95,10/28/19 10:11,"189 4th St, Los Angeles, CA 90001" +277541,27in FHD Monitor,1,149.99,10/09/19 16:35,"258 Willow St, Portland, OR 97035" +277542,Bose SoundSport Headphones,1,99.99,10/08/19 15:39,"204 South St, San Francisco, CA 94016" +277543,AAA Batteries (4-pack),1,2.99,10/23/19 17:18,"399 1st St, San Francisco, CA 94016" +277544,Lightning Charging Cable,1,14.95,10/02/19 20:33,"429 Center St, New York City, NY 10001" +277545,Lightning Charging Cable,1,14.95,10/07/19 10:14,"482 Adams St, Portland, ME 04101" +277546,34in Ultrawide Monitor,1,379.99,10/16/19 03:00,"175 Dogwood St, New York City, NY 10001" +277547,Apple Airpods Headphones,1,150,10/29/19 07:35,"487 Willow St, Atlanta, GA 30301" +277548,AA Batteries (4-pack),3,3.84,10/09/19 20:08,"262 4th St, New York City, NY 10001" +277549,Vareebadd Phone,1,400,10/11/19 12:17,"35 Park St, Boston, MA 02215" +277550,27in 4K Gaming Monitor,1,389.99,10/24/19 07:03,"116 Cedar St, San Francisco, CA 94016" +277551,Bose SoundSport Headphones,1,99.99,10/31/19 12:20,"442 Park St, Dallas, TX 75001" +277552,AA Batteries (4-pack),1,3.84,10/14/19 17:38,"242 1st St, New York City, NY 10001" +277553,AAA Batteries (4-pack),1,2.99,10/14/19 09:23,"785 West St, Dallas, TX 75001" +277554,iPhone,1,700,10/17/19 08:39,"814 8th St, Portland, OR 97035" +277555,Apple Airpods Headphones,1,150,10/02/19 07:42,"803 12th St, New York City, NY 10001" +277556,USB-C Charging Cable,1,11.95,10/20/19 20:25,"239 Cherry St, Los Angeles, CA 90001" +277557,AA Batteries (4-pack),1,3.84,10/19/19 11:31,"31 6th St, Atlanta, GA 30301" +277558,Apple Airpods Headphones,1,150,10/01/19 19:38,"336 6th St, Portland, ME 04101" +277559,USB-C Charging Cable,1,11.95,10/01/19 22:49,"575 11th St, Dallas, TX 75001" +277560,AA Batteries (4-pack),1,3.84,10/17/19 17:06,"851 Lakeview St, San Francisco, CA 94016" +277561,AA Batteries (4-pack),1,3.84,10/27/19 10:01,"658 Pine St, San Francisco, CA 94016" +277562,27in 4K Gaming Monitor,1,389.99,10/28/19 22:47,"870 Dogwood St, New York City, NY 10001" +277563,20in Monitor,1,109.99,10/01/19 23:29,"370 5th St, Dallas, TX 75001" +277564,Wired Headphones,1,11.99,10/23/19 10:07,"251 West St, Seattle, WA 98101" +277565,LG Washing Machine,1,600.0,10/03/19 16:57,"77 Hill St, Boston, MA 02215" +277566,27in FHD Monitor,1,149.99,10/11/19 19:30,"807 Johnson St, San Francisco, CA 94016" +277566,20in Monitor,1,109.99,10/11/19 19:30,"807 Johnson St, San Francisco, CA 94016" +277567,Bose SoundSport Headphones,1,99.99,10/03/19 14:06,"942 Cherry St, San Francisco, CA 94016" +277568,Lightning Charging Cable,1,14.95,10/30/19 00:11,"434 Hill St, San Francisco, CA 94016" +277569,Lightning Charging Cable,1,14.95,10/25/19 19:44,"253 Center St, Portland, OR 97035" +277570,Lightning Charging Cable,1,14.95,10/27/19 20:57,"574 Lincoln St, Dallas, TX 75001" +277571,Google Phone,1,600,10/30/19 17:37,"137 Pine St, Los Angeles, CA 90001" +277572,AA Batteries (4-pack),1,3.84,10/26/19 15:20,"109 Cherry St, Los Angeles, CA 90001" +277573,AA Batteries (4-pack),2,3.84,10/19/19 16:23,"92 1st St, New York City, NY 10001" +277574,20in Monitor,1,109.99,10/20/19 22:48,"793 Washington St, Boston, MA 02215" +277575,AA Batteries (4-pack),2,3.84,10/24/19 12:54,"679 River St, Atlanta, GA 30301" +277576,AA Batteries (4-pack),1,3.84,10/08/19 16:46,"443 Maple St, Boston, MA 02215" +277577,27in 4K Gaming Monitor,1,389.99,10/13/19 18:29,"918 Maple St, Los Angeles, CA 90001" +277578,Bose SoundSport Headphones,1,99.99,10/04/19 10:26,"599 Main St, Boston, MA 02215" +277579,Apple Airpods Headphones,1,150,10/19/19 02:44,"185 Lakeview St, Atlanta, GA 30301" +277580,USB-C Charging Cable,1,11.95,10/31/19 10:36,"768 Dogwood St, Boston, MA 02215" +277581,Bose SoundSport Headphones,1,99.99,10/04/19 21:21,"11 Hill St, San Francisco, CA 94016" +277582,27in 4K Gaming Monitor,1,389.99,10/25/19 20:07,"726 Jackson St, Atlanta, GA 30301" +277583,iPhone,1,700,10/10/19 08:17,"982 Madison St, Los Angeles, CA 90001" +277584,Apple Airpods Headphones,1,150,10/12/19 09:44,"305 Elm St, San Francisco, CA 94016" +277585,AAA Batteries (4-pack),1,2.99,10/15/19 17:43,"145 12th St, Seattle, WA 98101" +277586,Wired Headphones,1,11.99,10/07/19 14:17,"95 Hickory St, San Francisco, CA 94016" +277587,AA Batteries (4-pack),1,3.84,10/31/19 11:05,"254 River St, San Francisco, CA 94016" +277588,AA Batteries (4-pack),1,3.84,10/11/19 09:45,"661 Washington St, Atlanta, GA 30301" +277589,USB-C Charging Cable,1,11.95,10/06/19 18:34,"763 Jackson St, Seattle, WA 98101" +277590,AAA Batteries (4-pack),1,2.99,10/28/19 23:21,"393 Johnson St, Dallas, TX 75001" +277591,Wired Headphones,1,11.99,10/25/19 19:39,"67 Adams St, Portland, OR 97035" +277592,AAA Batteries (4-pack),2,2.99,10/10/19 14:37,"845 Walnut St, New York City, NY 10001" +277593,27in FHD Monitor,1,149.99,10/30/19 14:22,"920 11th St, Los Angeles, CA 90001" +277594,AAA Batteries (4-pack),4,2.99,10/21/19 14:56,"598 12th St, Austin, TX 73301" +277595,Flatscreen TV,1,300,10/01/19 20:37,"929 Willow St, Portland, OR 97035" +277596,34in Ultrawide Monitor,1,379.99,10/11/19 12:19,"975 14th St, New York City, NY 10001" +277597,Macbook Pro Laptop,1,1700,10/12/19 19:45,"425 13th St, New York City, NY 10001" +277598,Wired Headphones,1,11.99,10/12/19 11:18,"283 Center St, Seattle, WA 98101" +277599,Vareebadd Phone,1,400,10/27/19 07:59,"98 Spruce St, San Francisco, CA 94016" +277600,34in Ultrawide Monitor,1,379.99,10/26/19 17:43,"49 Walnut St, Los Angeles, CA 90001" +277601,27in 4K Gaming Monitor,1,389.99,10/08/19 19:49,"324 1st St, Los Angeles, CA 90001" +277602,Flatscreen TV,1,300,10/11/19 16:08,"569 Maple St, New York City, NY 10001" +277603,AAA Batteries (4-pack),1,2.99,10/29/19 10:41,"530 11th St, Los Angeles, CA 90001" +277604,AA Batteries (4-pack),1,3.84,10/15/19 13:42,"231 Church St, Boston, MA 02215" +277605,Lightning Charging Cable,1,14.95,10/08/19 14:49,"943 North St, Austin, TX 73301" +277606,Apple Airpods Headphones,1,150,10/12/19 08:51,"884 Ridge St, San Francisco, CA 94016" +277607,USB-C Charging Cable,1,11.95,10/27/19 15:23,"303 Park St, Los Angeles, CA 90001" +277608,Bose SoundSport Headphones,1,99.99,10/17/19 18:25,"631 1st St, Atlanta, GA 30301" +277609,AA Batteries (4-pack),1,3.84,10/31/19 02:27,"207 Chestnut St, Austin, TX 73301" +277610,20in Monitor,1,109.99,10/03/19 12:46,"259 Chestnut St, Seattle, WA 98101" +277611,USB-C Charging Cable,1,11.95,10/14/19 12:03,"339 Elm St, Los Angeles, CA 90001" +277612,AAA Batteries (4-pack),1,2.99,10/31/19 15:52,"299 Park St, Dallas, TX 75001" +277613,Lightning Charging Cable,1,14.95,10/12/19 21:53,"939 Church St, Seattle, WA 98101" +277614,27in FHD Monitor,1,149.99,10/21/19 19:13,"381 Center St, Boston, MA 02215" +277615,iPhone,1,700,10/12/19 18:08,"28 Pine St, Los Angeles, CA 90001" +277616,AA Batteries (4-pack),1,3.84,10/06/19 21:43,"777 Jefferson St, Los Angeles, CA 90001" +277617,Wired Headphones,1,11.99,10/19/19 14:14,"733 Hill St, San Francisco, CA 94016" +277618,iPhone,1,700,10/23/19 17:45,"304 Elm St, San Francisco, CA 94016" +277619,Wired Headphones,1,11.99,10/17/19 23:03,"8 Lakeview St, New York City, NY 10001" +277620,AA Batteries (4-pack),1,3.84,10/07/19 04:49,"517 Johnson St, Dallas, TX 75001" +277621,Apple Airpods Headphones,1,150,10/12/19 00:47,"839 Church St, Seattle, WA 98101" +277622,Wired Headphones,1,11.99,10/21/19 16:10,"793 Jefferson St, Portland, OR 97035" +277623,Lightning Charging Cable,1,14.95,10/18/19 17:50,"145 2nd St, San Francisco, CA 94016" +277624,27in FHD Monitor,1,149.99,10/19/19 18:10,"867 Jefferson St, San Francisco, CA 94016" +277625,Wired Headphones,1,11.99,10/04/19 11:47,"880 Elm St, Los Angeles, CA 90001" +277626,AAA Batteries (4-pack),6,2.99,10/28/19 17:26,"927 Pine St, Seattle, WA 98101" +277627,Wired Headphones,1,11.99,10/15/19 20:48,"684 14th St, Austin, TX 73301" +277628,AA Batteries (4-pack),4,3.84,10/27/19 20:20,"46 Spruce St, Boston, MA 02215" +277629,Flatscreen TV,1,300,10/02/19 23:05,"581 11th St, Boston, MA 02215" +277630,Bose SoundSport Headphones,1,99.99,10/06/19 13:11,"693 Jefferson St, Atlanta, GA 30301" +277631,Google Phone,1,600,10/01/19 16:05,"211 Hill St, San Francisco, CA 94016" +277631,USB-C Charging Cable,1,11.95,10/01/19 16:05,"211 Hill St, San Francisco, CA 94016" +277632,USB-C Charging Cable,1,11.95,10/19/19 09:31,"438 Meadow St, New York City, NY 10001" +277633,34in Ultrawide Monitor,1,379.99,10/13/19 19:50,"790 4th St, Seattle, WA 98101" +277634,ThinkPad Laptop,1,999.99,10/14/19 22:26,"852 Jefferson St, Boston, MA 02215" +277635,20in Monitor,1,109.99,10/15/19 19:47,"291 Park St, Los Angeles, CA 90001" +277636,Bose SoundSport Headphones,1,99.99,10/08/19 13:38,"330 Hill St, Seattle, WA 98101" +277637,Lightning Charging Cable,1,14.95,10/30/19 15:54,"209 Jackson St, Boston, MA 02215" +277638,Vareebadd Phone,1,400,10/09/19 08:38,"278 2nd St, Los Angeles, CA 90001" +277639,Wired Headphones,1,11.99,10/21/19 14:58,"315 Park St, San Francisco, CA 94016" +277640,34in Ultrawide Monitor,1,379.99,10/12/19 10:12,"337 Elm St, Portland, OR 97035" +277641,Flatscreen TV,1,300,10/03/19 12:37,"742 Elm St, Dallas, TX 75001" +277642,AA Batteries (4-pack),1,3.84,10/16/19 08:19,"73 Church St, Los Angeles, CA 90001" +277643,USB-C Charging Cable,1,11.95,10/28/19 10:43,"797 Chestnut St, San Francisco, CA 94016" +277644,27in FHD Monitor,1,149.99,10/19/19 12:33,"816 Dogwood St, Dallas, TX 75001" +277645,Lightning Charging Cable,1,14.95,10/05/19 23:24,"102 Forest St, Boston, MA 02215" +277646,Bose SoundSport Headphones,1,99.99,10/21/19 21:52,"137 Spruce St, New York City, NY 10001" +277647,Lightning Charging Cable,1,14.95,10/19/19 14:29,"343 Center St, San Francisco, CA 94016" +277648,Vareebadd Phone,1,400,10/19/19 18:12,"606 Elm St, Boston, MA 02215" +277649,Apple Airpods Headphones,1,150,10/09/19 21:21,"153 Park St, Atlanta, GA 30301" +277650,Google Phone,1,600,10/03/19 22:22,"274 Center St, New York City, NY 10001" +277650,Wired Headphones,2,11.99,10/03/19 22:22,"274 Center St, New York City, NY 10001" +277651,27in FHD Monitor,1,149.99,10/26/19 10:18,"6 Hickory St, Los Angeles, CA 90001" +277652,AA Batteries (4-pack),6,3.84,10/16/19 16:36,"680 Meadow St, Los Angeles, CA 90001" +277653,USB-C Charging Cable,1,11.95,10/31/19 17:26,"966 14th St, Austin, TX 73301" +277653,AAA Batteries (4-pack),1,2.99,10/31/19 17:26,"966 14th St, Austin, TX 73301" +277654,Lightning Charging Cable,2,14.95,10/13/19 20:30,"288 Maple St, Los Angeles, CA 90001" +277655,AAA Batteries (4-pack),1,2.99,10/22/19 11:36,"553 Lake St, Dallas, TX 75001" +277656,AA Batteries (4-pack),2,3.84,10/15/19 23:53,"515 Lakeview St, San Francisco, CA 94016" +277657,ThinkPad Laptop,1,999.99,10/06/19 16:50,"787 Madison St, Dallas, TX 75001" +277658,Wired Headphones,1,11.99,10/03/19 13:36,"981 6th St, Boston, MA 02215" +277659,USB-C Charging Cable,1,11.95,10/13/19 22:42,"190 South St, Boston, MA 02215" +277659,AA Batteries (4-pack),1,3.84,10/13/19 22:42,"190 South St, Boston, MA 02215" +277660,Apple Airpods Headphones,1,150,10/04/19 15:06,"909 12th St, Dallas, TX 75001" +277661,ThinkPad Laptop,1,999.99,11/01/19 00:59,"5 Chestnut St, Austin, TX 73301" +277662,Lightning Charging Cable,1,14.95,10/01/19 13:03,"36 Lake St, Dallas, TX 75001" +277663,USB-C Charging Cable,1,11.95,10/09/19 12:03,"168 Park St, New York City, NY 10001" +277664,AAA Batteries (4-pack),2,2.99,10/11/19 13:05,"695 6th St, San Francisco, CA 94016" +277665,27in FHD Monitor,1,149.99,10/27/19 10:52,"209 Dogwood St, New York City, NY 10001" +277666,AAA Batteries (4-pack),1,2.99,10/18/19 16:09,"101 12th St, San Francisco, CA 94016" +277667,Lightning Charging Cable,1,14.95,10/27/19 18:37,"726 Adams St, Dallas, TX 75001" +277668,Lightning Charging Cable,1,14.95,10/24/19 01:07,"18 Lincoln St, San Francisco, CA 94016" +277669,Apple Airpods Headphones,1,150,10/22/19 12:55,"887 Highland St, New York City, NY 10001" +277670,Apple Airpods Headphones,1,150,10/31/19 20:22,"208 Maple St, Seattle, WA 98101" +277671,Wired Headphones,1,11.99,10/30/19 15:04,"477 Johnson St, Austin, TX 73301" +277672,Wired Headphones,2,11.99,10/24/19 23:48,"320 6th St, New York City, NY 10001" +277673,Lightning Charging Cable,1,14.95,10/17/19 14:18,"918 Hill St, San Francisco, CA 94016" +277674,27in 4K Gaming Monitor,1,389.99,10/28/19 19:19,"505 10th St, San Francisco, CA 94016" +277675,iPhone,1,700,10/26/19 07:23,"123 Center St, Atlanta, GA 30301" +277676,AAA Batteries (4-pack),2,2.99,10/20/19 20:29,"372 Main St, San Francisco, CA 94016" +277677,AA Batteries (4-pack),2,3.84,10/17/19 10:36,"970 Maple St, Los Angeles, CA 90001" +277678,27in 4K Gaming Monitor,1,389.99,10/10/19 11:11,"858 12th St, New York City, NY 10001" +277679,Lightning Charging Cable,1,14.95,10/07/19 13:11,"835 5th St, San Francisco, CA 94016" +277680,USB-C Charging Cable,1,11.95,10/15/19 19:53,"335 Walnut St, San Francisco, CA 94016" +277681,Macbook Pro Laptop,1,1700,10/09/19 12:22,"191 10th St, Los Angeles, CA 90001" +277682,Lightning Charging Cable,1,14.95,10/05/19 02:14,"329 10th St, New York City, NY 10001" +277683,Bose SoundSport Headphones,1,99.99,10/13/19 11:07,"653 Pine St, Austin, TX 73301" +277684,AA Batteries (4-pack),1,3.84,10/23/19 19:00,"812 7th St, Austin, TX 73301" +277685,AA Batteries (4-pack),1,3.84,10/01/19 13:56,"351 Cherry St, Austin, TX 73301" +277686,AA Batteries (4-pack),2,3.84,10/19/19 22:19,"491 Wilson St, Boston, MA 02215" +277687,Macbook Pro Laptop,1,1700,10/26/19 14:59,"975 5th St, San Francisco, CA 94016" +277688,34in Ultrawide Monitor,1,379.99,10/02/19 12:28,"622 Jefferson St, Los Angeles, CA 90001" +277689,34in Ultrawide Monitor,1,379.99,10/03/19 17:15,"807 North St, Los Angeles, CA 90001" +277690,Macbook Pro Laptop,1,1700,10/02/19 17:30,"572 11th St, Los Angeles, CA 90001" +277691,Lightning Charging Cable,1,14.95,10/15/19 20:45,"824 Hickory St, New York City, NY 10001" +277692,Lightning Charging Cable,1,14.95,10/25/19 12:58,"980 8th St, Austin, TX 73301" +277693,Bose SoundSport Headphones,1,99.99,10/12/19 18:45,"742 8th St, Los Angeles, CA 90001" +277694,34in Ultrawide Monitor,1,379.99,10/01/19 16:21,"382 Meadow St, Austin, TX 73301" +277695,Macbook Pro Laptop,1,1700,10/14/19 19:21,"440 River St, San Francisco, CA 94016" +277696,USB-C Charging Cable,1,11.95,10/06/19 14:14,"940 Highland St, New York City, NY 10001" +277697,Bose SoundSport Headphones,1,99.99,10/12/19 12:41,"130 Maple St, Atlanta, GA 30301" +277698,AA Batteries (4-pack),1,3.84,10/03/19 21:04,"377 West St, New York City, NY 10001" +277699,Bose SoundSport Headphones,1,99.99,10/03/19 09:44,"411 Center St, Austin, TX 73301" +277700,AA Batteries (4-pack),1,3.84,10/19/19 14:20,"436 Willow St, Los Angeles, CA 90001" +277701,AA Batteries (4-pack),2,3.84,10/09/19 17:28,"51 14th St, Atlanta, GA 30301" +277702,AA Batteries (4-pack),1,3.84,10/06/19 21:00,"749 6th St, Seattle, WA 98101" +277703,Bose SoundSport Headphones,1,99.99,10/12/19 19:30,"745 North St, San Francisco, CA 94016" +277704,Wired Headphones,1,11.99,10/25/19 10:06,"814 12th St, San Francisco, CA 94016" +277705,Apple Airpods Headphones,1,150,10/20/19 23:38,"550 Pine St, New York City, NY 10001" +277706,AA Batteries (4-pack),1,3.84,10/03/19 17:07,"313 Lincoln St, San Francisco, CA 94016" +277707,AAA Batteries (4-pack),1,2.99,10/21/19 23:02,"369 Lake St, Seattle, WA 98101" +277708,iPhone,1,700,10/01/19 15:09,"480 7th St, Austin, TX 73301" +277709,AA Batteries (4-pack),2,3.84,10/17/19 17:36,"274 Adams St, San Francisco, CA 94016" +277710,20in Monitor,1,109.99,10/10/19 13:11,"786 South St, Austin, TX 73301" +277711,Apple Airpods Headphones,1,150,10/28/19 00:15,"472 Sunset St, New York City, NY 10001" +277712,USB-C Charging Cable,1,11.95,10/16/19 19:42,"784 Willow St, Seattle, WA 98101" +277712,Macbook Pro Laptop,1,1700,10/16/19 19:42,"784 Willow St, Seattle, WA 98101" +277713,USB-C Charging Cable,1,11.95,10/04/19 11:51,"695 Washington St, New York City, NY 10001" +277714,Wired Headphones,1,11.99,10/22/19 18:30,"371 West St, Portland, OR 97035" +277715,Lightning Charging Cable,1,14.95,10/04/19 19:25,"87 Madison St, Seattle, WA 98101" +277716,Lightning Charging Cable,1,14.95,10/06/19 23:12,"286 Hickory St, Austin, TX 73301" +277717,AAA Batteries (4-pack),1,2.99,10/17/19 14:22,"363 North St, San Francisco, CA 94016" +277718,iPhone,1,700,10/09/19 13:11,"845 11th St, Los Angeles, CA 90001" +277719,USB-C Charging Cable,1,11.95,10/30/19 17:07,"340 Hickory St, San Francisco, CA 94016" +277720,AAA Batteries (4-pack),1,2.99,10/26/19 15:59,"644 Lincoln St, Seattle, WA 98101" +277721,USB-C Charging Cable,1,11.95,10/19/19 16:23,"712 Elm St, San Francisco, CA 94016" +277722,ThinkPad Laptop,1,999.99,10/22/19 07:59,"15 Park St, Seattle, WA 98101" +277723,Apple Airpods Headphones,1,150,10/28/19 20:13,"732 4th St, Dallas, TX 75001" +277724,ThinkPad Laptop,1,999.99,10/29/19 18:21,"470 Adams St, Atlanta, GA 30301" +277725,USB-C Charging Cable,1,11.95,10/03/19 00:00,"691 Lakeview St, New York City, NY 10001" +277726,Bose SoundSport Headphones,1,99.99,10/13/19 21:40,"133 South St, New York City, NY 10001" +277727,Wired Headphones,1,11.99,10/11/19 15:40,"123 Elm St, Atlanta, GA 30301" +277728,AA Batteries (4-pack),1,3.84,10/25/19 11:41,"162 Madison St, San Francisco, CA 94016" +277729,Google Phone,1,600,10/04/19 11:32,"373 Church St, Dallas, TX 75001" +277729,Bose SoundSport Headphones,1,99.99,10/04/19 11:32,"373 Church St, Dallas, TX 75001" +277730,Wired Headphones,1,11.99,10/25/19 15:04,"771 Ridge St, Los Angeles, CA 90001" +277731,Lightning Charging Cable,1,14.95,10/28/19 18:43,"473 Walnut St, San Francisco, CA 94016" +277732,AAA Batteries (4-pack),1,2.99,10/10/19 11:00,"686 Adams St, San Francisco, CA 94016" +277733,Wired Headphones,1,11.99,10/05/19 14:47,"488 Park St, Los Angeles, CA 90001" +277734,USB-C Charging Cable,1,11.95,10/11/19 17:40,"493 1st St, Boston, MA 02215" +277735,Lightning Charging Cable,2,14.95,10/02/19 21:28,"348 Park St, New York City, NY 10001" +277736,Bose SoundSport Headphones,1,99.99,10/04/19 20:55,"532 Lincoln St, New York City, NY 10001" +277737,Apple Airpods Headphones,1,150,10/22/19 14:32,"218 2nd St, San Francisco, CA 94016" +277738,34in Ultrawide Monitor,1,379.99,10/02/19 10:58,"906 6th St, Boston, MA 02215" +277739,Apple Airpods Headphones,1,150,10/19/19 10:06,"876 Main St, Boston, MA 02215" +277740,USB-C Charging Cable,1,11.95,10/22/19 12:44,"318 9th St, Seattle, WA 98101" +277741,Google Phone,1,600,10/14/19 10:28,"495 12th St, San Francisco, CA 94016" +277742,Apple Airpods Headphones,1,150,10/21/19 18:53,"471 West St, New York City, NY 10001" +277743,AAA Batteries (4-pack),2,2.99,10/04/19 17:17,"225 North St, San Francisco, CA 94016" +277743,AA Batteries (4-pack),1,3.84,10/04/19 17:17,"225 North St, San Francisco, CA 94016" +277744,Bose SoundSport Headphones,1,99.99,10/23/19 16:15,"792 Maple St, Portland, OR 97035" +277745,Apple Airpods Headphones,1,150,10/13/19 21:41,"346 Church St, Austin, TX 73301" +277746,Bose SoundSport Headphones,1,99.99,10/07/19 23:23,"370 11th St, Portland, OR 97035" +277747,Lightning Charging Cable,1,14.95,10/04/19 08:58,"394 Hickory St, Atlanta, GA 30301" +277748,Lightning Charging Cable,1,14.95,10/30/19 11:45,"284 Park St, Atlanta, GA 30301" +277749,USB-C Charging Cable,1,11.95,10/11/19 13:17,"923 Lincoln St, Portland, ME 04101" +277750,Lightning Charging Cable,1,14.95,10/07/19 10:45,"414 Wilson St, San Francisco, CA 94016" +277751,AA Batteries (4-pack),1,3.84,10/31/19 18:04,"944 Jefferson St, Los Angeles, CA 90001" +277752,Apple Airpods Headphones,1,150,10/28/19 16:37,"665 6th St, Boston, MA 02215" +277753,iPhone,1,700,10/18/19 20:27,"514 4th St, Atlanta, GA 30301" +277754,Apple Airpods Headphones,1,150,10/09/19 13:30,"963 Adams St, Los Angeles, CA 90001" +277755,USB-C Charging Cable,1,11.95,10/25/19 10:33,"647 West St, Seattle, WA 98101" +277756,AAA Batteries (4-pack),2,2.99,10/08/19 17:49,"260 Wilson St, Los Angeles, CA 90001" +277757,USB-C Charging Cable,1,11.95,10/13/19 14:17,"588 Walnut St, Seattle, WA 98101" +277758,20in Monitor,1,109.99,10/27/19 18:14,"215 13th St, New York City, NY 10001" +277759,27in 4K Gaming Monitor,1,389.99,10/19/19 08:27,"894 Cherry St, Los Angeles, CA 90001" +277760,USB-C Charging Cable,1,11.95,10/30/19 02:26,"895 South St, Atlanta, GA 30301" +277761,USB-C Charging Cable,1,11.95,10/09/19 15:57,"288 6th St, Atlanta, GA 30301" +277762,Bose SoundSport Headphones,1,99.99,10/23/19 21:02,"32 Elm St, Dallas, TX 75001" +277763,27in 4K Gaming Monitor,1,389.99,10/23/19 17:31,"430 Highland St, Seattle, WA 98101" +277764,Apple Airpods Headphones,1,150,10/23/19 10:12,"981 1st St, Boston, MA 02215" +277765,Apple Airpods Headphones,1,150,10/29/19 10:13,"739 Sunset St, Los Angeles, CA 90001" +277766,AAA Batteries (4-pack),1,2.99,10/20/19 00:22,"601 Hickory St, Boston, MA 02215" +277767,Lightning Charging Cable,1,14.95,10/06/19 00:40,"347 7th St, Dallas, TX 75001" +277768,34in Ultrawide Monitor,1,379.99,10/26/19 22:21,"649 1st St, Dallas, TX 75001" +277769,iPhone,1,700,10/06/19 23:22,"766 2nd St, Austin, TX 73301" +277769,Lightning Charging Cable,1,14.95,10/06/19 23:22,"766 2nd St, Austin, TX 73301" +277770,Lightning Charging Cable,1,14.95,10/22/19 07:04,"67 Lake St, Dallas, TX 75001" +277771,AAA Batteries (4-pack),1,2.99,10/23/19 23:15,"676 North St, Los Angeles, CA 90001" +277772,Apple Airpods Headphones,1,150,10/23/19 16:08,"2 Lake St, New York City, NY 10001" +277773,Google Phone,1,600,10/27/19 20:45,"551 13th St, San Francisco, CA 94016" +277774,27in FHD Monitor,1,149.99,11/01/19 01:09,"982 Forest St, San Francisco, CA 94016" +277775,Flatscreen TV,1,300,10/22/19 15:47,"715 Madison St, San Francisco, CA 94016" +277776,iPhone,1,700,10/10/19 11:25,"460 Park St, Boston, MA 02215" +277777,USB-C Charging Cable,1,11.95,10/03/19 08:44,"749 Hickory St, Portland, OR 97035" +277778,Lightning Charging Cable,2,14.95,10/27/19 20:41,"964 5th St, Austin, TX 73301" +277779,AA Batteries (4-pack),2,3.84,10/04/19 18:31,"998 14th St, Boston, MA 02215" +277780,Google Phone,1,600,10/07/19 19:22,"341 South St, Atlanta, GA 30301" +277781,Lightning Charging Cable,1,14.95,10/26/19 10:52,"335 Spruce St, Seattle, WA 98101" +277782,USB-C Charging Cable,1,11.95,10/07/19 22:59,"164 Lakeview St, Atlanta, GA 30301" +277783,USB-C Charging Cable,1,11.95,10/03/19 22:29,"695 Hill St, San Francisco, CA 94016" +277784,Wired Headphones,1,11.99,10/19/19 20:37,"804 Forest St, San Francisco, CA 94016" +277785,AAA Batteries (4-pack),1,2.99,10/12/19 05:18,"128 Main St, San Francisco, CA 94016" +277786,Bose SoundSport Headphones,1,99.99,10/21/19 17:09,"496 Washington St, New York City, NY 10001" +277787,Lightning Charging Cable,1,14.95,10/02/19 13:51,"727 Ridge St, Dallas, TX 75001" +277788,iPhone,1,700,10/10/19 20:57,"662 Sunset St, San Francisco, CA 94016" +277789,Macbook Pro Laptop,1,1700,10/25/19 23:13,"219 North St, Portland, OR 97035" +,,,,, +277790,AA Batteries (4-pack),1,3.84,10/12/19 16:02,"449 10th St, Atlanta, GA 30301" +277791,34in Ultrawide Monitor,1,379.99,10/06/19 12:23,"997 Adams St, San Francisco, CA 94016" +277792,AAA Batteries (4-pack),2,2.99,10/17/19 19:47,"956 Ridge St, New York City, NY 10001" +277793,Lightning Charging Cable,1,14.95,10/14/19 07:18,"610 Center St, Austin, TX 73301" +277794,USB-C Charging Cable,1,11.95,10/12/19 13:20,"378 Meadow St, Los Angeles, CA 90001" +277795,iPhone,1,700,10/22/19 21:11,"632 Forest St, Los Angeles, CA 90001" +277796,Google Phone,1,600,10/17/19 21:05,"229 14th St, Seattle, WA 98101" +277797,Bose SoundSport Headphones,1,99.99,10/03/19 23:32,"191 Wilson St, New York City, NY 10001" +277798,iPhone,1,700,10/28/19 18:32,"747 Lake St, New York City, NY 10001" +277798,Lightning Charging Cable,1,14.95,10/28/19 18:32,"747 Lake St, New York City, NY 10001" +277799,Bose SoundSport Headphones,1,99.99,10/09/19 21:59,"447 Adams St, Seattle, WA 98101" +277800,Apple Airpods Headphones,1,150,10/05/19 20:38,"131 Jefferson St, Los Angeles, CA 90001" +277801,27in 4K Gaming Monitor,1,389.99,10/25/19 21:40,"421 Main St, Atlanta, GA 30301" +277802,34in Ultrawide Monitor,1,379.99,10/07/19 17:46,"499 Madison St, Boston, MA 02215" +277802,Wired Headphones,1,11.99,10/07/19 17:46,"499 Madison St, Boston, MA 02215" +277803,27in 4K Gaming Monitor,1,389.99,10/27/19 11:21,"512 Dogwood St, Austin, TX 73301" +277804,20in Monitor,1,109.99,10/06/19 11:48,"796 Spruce St, New York City, NY 10001" +277805,Wired Headphones,1,11.99,10/06/19 20:08,"109 Center St, Seattle, WA 98101" +277806,27in FHD Monitor,1,149.99,10/26/19 20:22,"308 North St, Boston, MA 02215" +277807,USB-C Charging Cable,1,11.95,10/01/19 12:45,"957 Park St, Los Angeles, CA 90001" +277808,USB-C Charging Cable,1,11.95,10/04/19 18:29,"519 Meadow St, New York City, NY 10001" +277809,AA Batteries (4-pack),1,3.84,10/29/19 09:05,"738 Wilson St, Atlanta, GA 30301" +277810,AA Batteries (4-pack),1,3.84,10/18/19 18:31,"723 Willow St, San Francisco, CA 94016" +277811,Lightning Charging Cable,1,14.95,10/11/19 16:54,"324 Jefferson St, Seattle, WA 98101" +277812,USB-C Charging Cable,1,11.95,10/05/19 11:52,"892 Main St, Dallas, TX 75001" +277813,AA Batteries (4-pack),1,3.84,10/22/19 11:55,"796 North St, Boston, MA 02215" +277814,27in FHD Monitor,1,149.99,10/20/19 07:45,"390 Elm St, Boston, MA 02215" +277815,Bose SoundSport Headphones,1,99.99,10/13/19 14:54,"547 Jefferson St, Los Angeles, CA 90001" +277816,Apple Airpods Headphones,1,150,10/28/19 14:26,"146 9th St, Seattle, WA 98101" +277817,AAA Batteries (4-pack),3,2.99,10/02/19 12:58,"21 Dogwood St, New York City, NY 10001" +277818,Vareebadd Phone,1,400,10/10/19 02:14,"62 Willow St, New York City, NY 10001" +277818,Bose SoundSport Headphones,1,99.99,10/10/19 02:14,"62 Willow St, New York City, NY 10001" +277819,AA Batteries (4-pack),1,3.84,10/21/19 20:25,"906 Chestnut St, Austin, TX 73301" +277820,Apple Airpods Headphones,1,150,10/01/19 15:59,"489 8th St, Dallas, TX 75001" +277821,USB-C Charging Cable,1,11.95,10/30/19 03:02,"249 Cedar St, Portland, OR 97035" +277822,Flatscreen TV,1,300,10/21/19 23:02,"618 1st St, Los Angeles, CA 90001" +277823,AAA Batteries (4-pack),1,2.99,10/06/19 08:40,"314 Jackson St, Seattle, WA 98101" +277824,Macbook Pro Laptop,1,1700,10/12/19 11:19,"940 North St, New York City, NY 10001" +277825,20in Monitor,1,109.99,10/03/19 10:29,"423 Cedar St, Boston, MA 02215" +277826,27in FHD Monitor,1,149.99,10/05/19 19:29,"752 Cedar St, New York City, NY 10001" +277827,Macbook Pro Laptop,1,1700,10/02/19 16:32,"607 West St, Los Angeles, CA 90001" +277828,Bose SoundSport Headphones,1,99.99,10/20/19 21:21,"255 8th St, San Francisco, CA 94016" +277829,Lightning Charging Cable,1,14.95,10/18/19 00:16,"29 Elm St, Boston, MA 02215" +277830,Google Phone,1,600,10/29/19 21:26,"68 4th St, San Francisco, CA 94016" +277830,USB-C Charging Cable,1,11.95,10/29/19 21:26,"68 4th St, San Francisco, CA 94016" +277831,USB-C Charging Cable,1,11.95,10/15/19 10:52,"147 6th St, Los Angeles, CA 90001" +277832,34in Ultrawide Monitor,1,379.99,10/13/19 16:19,"449 Main St, Austin, TX 73301" +277833,AAA Batteries (4-pack),1,2.99,10/29/19 09:13,"968 Cherry St, Boston, MA 02215" +277834,20in Monitor,1,109.99,10/19/19 22:07,"604 Walnut St, Seattle, WA 98101" +277835,AA Batteries (4-pack),1,3.84,10/02/19 21:35,"457 11th St, Los Angeles, CA 90001" +277836,iPhone,1,700,10/08/19 01:56,"882 South St, Boston, MA 02215" +277837,Apple Airpods Headphones,1,150,10/22/19 18:20,"319 4th St, San Francisco, CA 94016" +277838,Apple Airpods Headphones,1,150,10/04/19 14:19,"193 Johnson St, Boston, MA 02215" +277839,AA Batteries (4-pack),2,3.84,10/28/19 21:32,"454 5th St, Boston, MA 02215" +277840,ThinkPad Laptop,1,999.99,10/16/19 08:52,"824 2nd St, Los Angeles, CA 90001" +277841,AA Batteries (4-pack),1,3.84,10/03/19 16:38,"460 14th St, San Francisco, CA 94016" +277842,AAA Batteries (4-pack),1,2.99,10/25/19 11:09,"500 Wilson St, Los Angeles, CA 90001" +277843,AA Batteries (4-pack),1,3.84,10/13/19 23:05,"257 Washington St, New York City, NY 10001" +277844,Lightning Charging Cable,1,14.95,10/05/19 20:51,"605 Highland St, San Francisco, CA 94016" +277845,ThinkPad Laptop,1,999.99,10/26/19 20:06,"468 Hickory St, Austin, TX 73301" +277846,Lightning Charging Cable,1,14.95,10/01/19 18:28,"276 Lake St, San Francisco, CA 94016" +277847,AAA Batteries (4-pack),1,2.99,10/04/19 19:50,"72 Church St, San Francisco, CA 94016" +277848,Wired Headphones,1,11.99,10/22/19 14:02,"194 Walnut St, Atlanta, GA 30301" +277849,Lightning Charging Cable,1,14.95,10/20/19 09:05,"554 6th St, San Francisco, CA 94016" +277850,USB-C Charging Cable,1,11.95,10/11/19 20:13,"204 Johnson St, San Francisco, CA 94016" +277851,AA Batteries (4-pack),1,3.84,10/14/19 20:21,"300 8th St, Austin, TX 73301" +277852,Macbook Pro Laptop,1,1700,10/13/19 16:52,"372 Church St, San Francisco, CA 94016" +277853,Lightning Charging Cable,1,14.95,10/11/19 18:54,"569 8th St, New York City, NY 10001" +277854,AAA Batteries (4-pack),1,2.99,10/09/19 13:19,"344 6th St, Los Angeles, CA 90001" +277855,27in FHD Monitor,1,149.99,10/18/19 12:30,"153 Lincoln St, San Francisco, CA 94016" +277856,Lightning Charging Cable,1,14.95,10/26/19 19:28,"583 Jackson St, San Francisco, CA 94016" +277857,AA Batteries (4-pack),1,3.84,10/09/19 19:44,"512 Church St, San Francisco, CA 94016" +277858,34in Ultrawide Monitor,1,379.99,10/28/19 19:58,"221 Lakeview St, Seattle, WA 98101" +277859,AAA Batteries (4-pack),1,2.99,10/07/19 10:58,"569 Center St, Los Angeles, CA 90001" +277860,AAA Batteries (4-pack),1,2.99,10/16/19 20:15,"719 1st St, San Francisco, CA 94016" +277861,27in 4K Gaming Monitor,1,389.99,10/04/19 23:47,"915 Dogwood St, Los Angeles, CA 90001" +277862,USB-C Charging Cable,1,11.95,10/04/19 21:19,"955 Sunset St, Atlanta, GA 30301" +277863,USB-C Charging Cable,1,11.95,10/20/19 08:09,"985 Wilson St, Seattle, WA 98101" +277864,Bose SoundSport Headphones,1,99.99,10/23/19 08:56,"506 Ridge St, Portland, OR 97035" +277865,USB-C Charging Cable,1,11.95,10/31/19 21:00,"612 South St, Seattle, WA 98101" +277866,Wired Headphones,1,11.99,10/17/19 18:51,"312 Lake St, Portland, OR 97035" +277867,Macbook Pro Laptop,1,1700,10/22/19 14:22,"708 8th St, Los Angeles, CA 90001" +277868,AA Batteries (4-pack),1,3.84,10/28/19 16:46,"548 Jackson St, New York City, NY 10001" +277869,USB-C Charging Cable,1,11.95,10/09/19 11:41,"551 Meadow St, New York City, NY 10001" +277870,Lightning Charging Cable,1,14.95,10/08/19 13:33,"254 Meadow St, San Francisco, CA 94016" +277871,Apple Airpods Headphones,1,150,10/21/19 19:59,"745 13th St, Boston, MA 02215" +277872,Lightning Charging Cable,1,14.95,10/08/19 22:52,"462 West St, San Francisco, CA 94016" +277873,AAA Batteries (4-pack),1,2.99,10/19/19 07:11,"339 Meadow St, New York City, NY 10001" +277874,20in Monitor,1,109.99,10/17/19 20:22,"391 Dogwood St, San Francisco, CA 94016" +277875,AA Batteries (4-pack),1,3.84,10/08/19 20:04,"56 Main St, Los Angeles, CA 90001" +277876,Bose SoundSport Headphones,1,99.99,10/20/19 15:32,"195 River St, San Francisco, CA 94016" +277877,Flatscreen TV,1,300,10/02/19 15:37,"173 Jefferson St, Boston, MA 02215" +277878,Bose SoundSport Headphones,1,99.99,10/07/19 14:10,"794 Sunset St, Austin, TX 73301" +277879,iPhone,1,700,10/02/19 10:50,"418 Cedar St, Portland, OR 97035" +277880,USB-C Charging Cable,1,11.95,10/19/19 17:06,"151 Hickory St, San Francisco, CA 94016" +277880,USB-C Charging Cable,1,11.95,10/19/19 17:06,"151 Hickory St, San Francisco, CA 94016" +277881,ThinkPad Laptop,1,999.99,10/31/19 22:06,"402 Church St, New York City, NY 10001" +277882,Apple Airpods Headphones,1,150,10/23/19 22:11,"881 Hickory St, San Francisco, CA 94016" +277883,20in Monitor,1,109.99,10/09/19 09:20,"262 8th St, Los Angeles, CA 90001" +277884,Wired Headphones,1,11.99,10/15/19 15:23,"21 Wilson St, Portland, OR 97035" +277885,AA Batteries (4-pack),1,3.84,10/10/19 21:43,"221 Spruce St, Austin, TX 73301" +277886,20in Monitor,1,109.99,10/25/19 19:20,"979 1st St, San Francisco, CA 94016" +277887,Flatscreen TV,1,300,10/16/19 07:15,"347 River St, Los Angeles, CA 90001" +277888,iPhone,1,700,10/29/19 13:29,"513 Lake St, San Francisco, CA 94016" +277889,27in 4K Gaming Monitor,1,389.99,10/08/19 23:33,"919 Johnson St, New York City, NY 10001" +277890,USB-C Charging Cable,1,11.95,10/18/19 17:22,"759 Adams St, Portland, OR 97035" +277891,Wired Headphones,1,11.99,10/04/19 20:48,"628 6th St, Atlanta, GA 30301" +277892,27in 4K Gaming Monitor,1,389.99,10/27/19 19:36,"772 Ridge St, Seattle, WA 98101" +277892,USB-C Charging Cable,1,11.95,10/27/19 19:36,"772 Ridge St, Seattle, WA 98101" +277893,Wired Headphones,1,11.99,10/25/19 08:25,"731 Chestnut St, San Francisco, CA 94016" +277894,AAA Batteries (4-pack),1,2.99,10/23/19 17:21,"145 9th St, Los Angeles, CA 90001" +277895,Macbook Pro Laptop,1,1700,10/21/19 11:39,"189 Johnson St, San Francisco, CA 94016" +277896,AA Batteries (4-pack),1,3.84,10/14/19 08:51,"356 8th St, New York City, NY 10001" +277897,AA Batteries (4-pack),1,3.84,10/12/19 15:46,"544 2nd St, New York City, NY 10001" +277898,AAA Batteries (4-pack),2,2.99,10/17/19 21:14,"805 Wilson St, San Francisco, CA 94016" +277898,Lightning Charging Cable,1,14.95,10/17/19 21:14,"805 Wilson St, San Francisco, CA 94016" +277899,Flatscreen TV,1,300,10/13/19 08:10,"951 Madison St, Seattle, WA 98101" +277900,USB-C Charging Cable,1,11.95,10/13/19 16:40,"398 Ridge St, New York City, NY 10001" +277901,Flatscreen TV,1,300,10/30/19 10:07,"652 Highland St, Dallas, TX 75001" +277902,Apple Airpods Headphones,1,150,10/07/19 16:07,"74 12th St, Boston, MA 02215" +277903,USB-C Charging Cable,1,11.95,10/20/19 17:58,"296 Cedar St, Seattle, WA 98101" +277904,AAA Batteries (4-pack),1,2.99,10/11/19 13:45,"876 Highland St, Seattle, WA 98101" +277905,Lightning Charging Cable,1,14.95,10/27/19 22:02,"379 6th St, San Francisco, CA 94016" +277906,USB-C Charging Cable,1,11.95,10/05/19 14:29,"438 Pine St, Seattle, WA 98101" +277907,Google Phone,1,600,10/02/19 16:30,"570 West St, San Francisco, CA 94016" +277908,Google Phone,1,600,10/16/19 09:03,"100 Lincoln St, Boston, MA 02215" +277908,Apple Airpods Headphones,1,150,10/16/19 09:03,"100 Lincoln St, Boston, MA 02215" +277909,USB-C Charging Cable,1,11.95,10/13/19 21:42,"294 2nd St, San Francisco, CA 94016" +277910,AAA Batteries (4-pack),1,2.99,10/13/19 12:34,"908 Jackson St, San Francisco, CA 94016" +277911,USB-C Charging Cable,1,11.95,10/01/19 19:06,"941 Walnut St, San Francisco, CA 94016" +277912,Lightning Charging Cable,1,14.95,10/24/19 01:27,"651 Dogwood St, New York City, NY 10001" +277913,Lightning Charging Cable,1,14.95,10/28/19 16:16,"520 West St, Seattle, WA 98101" +277913,Wired Headphones,1,11.99,10/28/19 16:16,"520 West St, Seattle, WA 98101" +277914,LG Washing Machine,1,600.0,10/01/19 15:01,"256 Park St, Los Angeles, CA 90001" +277915,Apple Airpods Headphones,1,150,10/19/19 14:08,"809 Church St, Boston, MA 02215" +277916,Vareebadd Phone,1,400,10/10/19 14:17,"766 14th St, San Francisco, CA 94016" +277917,USB-C Charging Cable,1,11.95,10/13/19 11:15,"155 Adams St, San Francisco, CA 94016" +277918,AAA Batteries (4-pack),1,2.99,10/21/19 10:59,"53 Cedar St, San Francisco, CA 94016" +277919,Vareebadd Phone,1,400,10/22/19 19:00,"693 Park St, Portland, ME 04101" +277919,Wired Headphones,1,11.99,10/22/19 19:00,"693 Park St, Portland, ME 04101" +277920,iPhone,1,700,10/10/19 22:04,"601 Jackson St, Los Angeles, CA 90001" +277920,Wired Headphones,1,11.99,10/10/19 22:04,"601 Jackson St, Los Angeles, CA 90001" +277921,AAA Batteries (4-pack),3,2.99,10/31/19 09:14,"712 Madison St, New York City, NY 10001" +277922,AA Batteries (4-pack),2,3.84,10/06/19 12:31,"87 Park St, Los Angeles, CA 90001" +277923,Wired Headphones,1,11.99,10/24/19 17:25,"431 Lincoln St, Seattle, WA 98101" +277924,AAA Batteries (4-pack),1,2.99,10/29/19 11:32,"23 Madison St, New York City, NY 10001" +277925,Lightning Charging Cable,1,14.95,10/26/19 11:09,"619 Lincoln St, Portland, OR 97035" +277926,Apple Airpods Headphones,1,150,10/08/19 12:38,"443 Spruce St, New York City, NY 10001" +277927,Wired Headphones,2,11.99,10/13/19 19:24,"194 2nd St, San Francisco, CA 94016" +277928,27in 4K Gaming Monitor,1,389.99,10/17/19 11:15,"476 Elm St, San Francisco, CA 94016" +277929,USB-C Charging Cable,1,11.95,10/05/19 06:55,"151 Chestnut St, San Francisco, CA 94016" +277930,Wired Headphones,1,11.99,10/09/19 13:05,"671 Hickory St, Seattle, WA 98101" +277931,Vareebadd Phone,1,400,10/21/19 22:15,"869 South St, Austin, TX 73301" +277931,Wired Headphones,1,11.99,10/21/19 22:15,"869 South St, Austin, TX 73301" +277932,Apple Airpods Headphones,1,150,10/30/19 19:53,"604 Chestnut St, Boston, MA 02215" +277933,AA Batteries (4-pack),3,3.84,10/18/19 11:11,"675 Highland St, Los Angeles, CA 90001" +277934,Apple Airpods Headphones,1,150,10/09/19 18:21,"808 12th St, Los Angeles, CA 90001" +277935,AAA Batteries (4-pack),1,2.99,10/13/19 08:35,"468 12th St, San Francisco, CA 94016" +277936,34in Ultrawide Monitor,1,379.99,10/02/19 17:33,"158 Meadow St, San Francisco, CA 94016" +277937,ThinkPad Laptop,1,999.99,10/07/19 12:00,"963 Lake St, Los Angeles, CA 90001" +277938,Apple Airpods Headphones,1,150,10/06/19 19:05,"675 8th St, Los Angeles, CA 90001" +277939,Lightning Charging Cable,1,14.95,10/07/19 14:40,"59 North St, Boston, MA 02215" +277940,Lightning Charging Cable,1,14.95,10/04/19 20:31,"771 Cedar St, New York City, NY 10001" +277941,Macbook Pro Laptop,1,1700,10/24/19 15:16,"250 8th St, Los Angeles, CA 90001" +277942,Wired Headphones,1,11.99,10/01/19 13:04,"970 2nd St, San Francisco, CA 94016" +277943,AA Batteries (4-pack),1,3.84,10/21/19 01:18,"991 Walnut St, Los Angeles, CA 90001" +277944,34in Ultrawide Monitor,1,379.99,10/26/19 10:48,"84 Cherry St, Portland, OR 97035" +277945,USB-C Charging Cable,1,11.95,10/27/19 08:47,"866 Wilson St, Boston, MA 02215" +277946,USB-C Charging Cable,1,11.95,10/31/19 14:29,"840 Jackson St, New York City, NY 10001" +277947,Macbook Pro Laptop,1,1700,10/31/19 12:14,"489 Forest St, San Francisco, CA 94016" +277948,27in 4K Gaming Monitor,1,389.99,10/13/19 12:51,"652 8th St, Portland, OR 97035" +277949,USB-C Charging Cable,1,11.95,10/04/19 10:23,"510 Meadow St, Boston, MA 02215" +,,,,, +277950,AA Batteries (4-pack),1,3.84,10/18/19 22:13,"281 Lakeview St, San Francisco, CA 94016" +277951,Apple Airpods Headphones,1,150,10/09/19 15:36,"298 Lakeview St, Atlanta, GA 30301" +277952,USB-C Charging Cable,1,11.95,10/22/19 13:04,"97 Ridge St, Atlanta, GA 30301" +277953,27in FHD Monitor,1,149.99,10/03/19 21:22,"981 Jefferson St, San Francisco, CA 94016" +277954,Apple Airpods Headphones,1,150,10/18/19 13:53,"15 1st St, Atlanta, GA 30301" +277955,27in 4K Gaming Monitor,1,389.99,10/26/19 22:14,"423 Hill St, Dallas, TX 75001" +277956,27in FHD Monitor,1,149.99,10/11/19 17:19,"185 Walnut St, Seattle, WA 98101" +277957,USB-C Charging Cable,1,11.95,10/11/19 12:31,"762 Washington St, Los Angeles, CA 90001" +277958,Vareebadd Phone,1,400,10/07/19 17:21,"4 2nd St, Los Angeles, CA 90001" +277959,Lightning Charging Cable,1,14.95,10/12/19 15:33,"941 Chestnut St, Seattle, WA 98101" +277960,Apple Airpods Headphones,1,150,10/12/19 19:54,"901 5th St, San Francisco, CA 94016" +277961,Flatscreen TV,1,300,10/04/19 17:05,"751 12th St, Atlanta, GA 30301" +277962,Wired Headphones,1,11.99,10/27/19 12:24,"492 2nd St, Seattle, WA 98101" +277963,Macbook Pro Laptop,1,1700,10/18/19 19:02,"405 13th St, Los Angeles, CA 90001" +277964,Bose SoundSport Headphones,1,99.99,10/07/19 10:28,"71 Sunset St, Seattle, WA 98101" +277965,LG Washing Machine,1,600.0,10/17/19 15:51,"409 14th St, New York City, NY 10001" +277966,27in 4K Gaming Monitor,1,389.99,10/26/19 18:36,"250 8th St, New York City, NY 10001" +277967,iPhone,1,700,10/21/19 17:02,"83 8th St, San Francisco, CA 94016" +277967,Lightning Charging Cable,1,14.95,10/21/19 17:02,"83 8th St, San Francisco, CA 94016" +277968,USB-C Charging Cable,2,11.95,10/18/19 16:15,"87 Lincoln St, Austin, TX 73301" +277969,USB-C Charging Cable,1,11.95,10/24/19 15:10,"669 Jackson St, Austin, TX 73301" +277970,Apple Airpods Headphones,1,150,10/14/19 10:28,"754 Cherry St, New York City, NY 10001" +277971,27in FHD Monitor,1,149.99,10/28/19 09:39,"615 8th St, Seattle, WA 98101" +277972,34in Ultrawide Monitor,1,379.99,10/19/19 06:50,"788 Dogwood St, Atlanta, GA 30301" +277973,27in FHD Monitor,1,149.99,10/01/19 12:04,"594 1st St, Seattle, WA 98101" +277974,Macbook Pro Laptop,1,1700,10/10/19 15:04,"925 North St, Seattle, WA 98101" +277975,Wired Headphones,1,11.99,10/07/19 22:52,"503 Jackson St, Los Angeles, CA 90001" +277976,AAA Batteries (4-pack),1,2.99,10/23/19 01:02,"242 Lakeview St, San Francisco, CA 94016" +277977,USB-C Charging Cable,1,11.95,10/09/19 22:21,"887 Cherry St, San Francisco, CA 94016" +277978,Bose SoundSport Headphones,1,99.99,10/07/19 17:19,"842 11th St, New York City, NY 10001" +277979,Wired Headphones,1,11.99,10/29/19 06:43,"604 4th St, Boston, MA 02215" +277980,ThinkPad Laptop,1,999.99,10/05/19 10:35,"989 River St, Los Angeles, CA 90001" +277981,Bose SoundSport Headphones,1,99.99,10/21/19 13:44,"911 Meadow St, Boston, MA 02215" +277982,AAA Batteries (4-pack),1,2.99,10/04/19 14:45,"459 River St, San Francisco, CA 94016" +277983,34in Ultrawide Monitor,1,379.99,10/22/19 10:40,"447 Willow St, Atlanta, GA 30301" +277984,USB-C Charging Cable,1,11.95,10/13/19 12:32,"20 Washington St, Seattle, WA 98101" +277985,AA Batteries (4-pack),2,3.84,10/26/19 18:37,"166 Lincoln St, Los Angeles, CA 90001" +277986,Bose SoundSport Headphones,1,99.99,10/13/19 10:42,"594 Park St, San Francisco, CA 94016" +277987,Lightning Charging Cable,1,14.95,10/14/19 06:41,"835 River St, Portland, OR 97035" +277988,Bose SoundSport Headphones,1,99.99,10/25/19 20:22,"894 Ridge St, San Francisco, CA 94016" +277989,ThinkPad Laptop,1,999.99,10/27/19 22:28,"367 Sunset St, Dallas, TX 75001" +277990,USB-C Charging Cable,1,11.95,10/27/19 15:42,"65 Center St, Boston, MA 02215" +277991,Apple Airpods Headphones,1,150,10/16/19 23:16,"305 Park St, San Francisco, CA 94016" +277992,27in FHD Monitor,1,149.99,10/12/19 08:29,"668 12th St, Atlanta, GA 30301" +277992,Flatscreen TV,1,300,10/12/19 08:29,"668 12th St, Atlanta, GA 30301" +277993,Bose SoundSport Headphones,1,99.99,10/07/19 04:22,"874 2nd St, Portland, OR 97035" +277994,iPhone,1,700,10/14/19 14:40,"158 10th St, Dallas, TX 75001" +277995,Lightning Charging Cable,1,14.95,10/09/19 14:30,"856 Forest St, Seattle, WA 98101" +277996,AA Batteries (4-pack),2,3.84,10/11/19 14:26,"690 River St, New York City, NY 10001" +277997,Bose SoundSport Headphones,1,99.99,10/18/19 20:53,"509 10th St, San Francisco, CA 94016" +277998,USB-C Charging Cable,1,11.95,10/04/19 13:24,"236 Park St, San Francisco, CA 94016" +277999,AAA Batteries (4-pack),1,2.99,10/03/19 21:57,"724 Lincoln St, Portland, OR 97035" +278000,Lightning Charging Cable,1,14.95,10/13/19 18:53,"868 Park St, New York City, NY 10001" +278001,Apple Airpods Headphones,1,150,10/29/19 11:37,"675 Dogwood St, San Francisco, CA 94016" +278002,Lightning Charging Cable,2,14.95,10/19/19 17:31,"6 Highland St, San Francisco, CA 94016" +278003,27in FHD Monitor,1,149.99,10/06/19 14:56,"776 10th St, Austin, TX 73301" +278004,27in 4K Gaming Monitor,1,389.99,10/11/19 08:09,"889 1st St, New York City, NY 10001" +278005,Apple Airpods Headphones,1,150,10/15/19 19:16,"808 11th St, Portland, OR 97035" +278006,USB-C Charging Cable,1,11.95,10/10/19 19:17,"999 Johnson St, San Francisco, CA 94016" +278007,20in Monitor,1,109.99,10/10/19 14:23,"769 Willow St, Seattle, WA 98101" +278008,Wired Headphones,1,11.99,10/11/19 17:40,"657 Wilson St, Boston, MA 02215" +278009,AA Batteries (4-pack),1,3.84,10/24/19 14:27,"934 Hickory St, San Francisco, CA 94016" +278010,Bose SoundSport Headphones,1,99.99,10/28/19 14:29,"275 Forest St, Los Angeles, CA 90001" +278011,Lightning Charging Cable,1,14.95,10/14/19 11:40,"48 10th St, Portland, ME 04101" +278012,Wired Headphones,1,11.99,10/30/19 22:33,"871 Lakeview St, Austin, TX 73301" +278013,Google Phone,1,600,10/05/19 09:47,"657 8th St, Boston, MA 02215" +278014,Google Phone,1,600,10/06/19 11:10,"534 South St, San Francisco, CA 94016" +278015,Lightning Charging Cable,1,14.95,10/13/19 17:32,"539 5th St, San Francisco, CA 94016" +278016,USB-C Charging Cable,1,11.95,10/16/19 20:56,"837 2nd St, Portland, OR 97035" +278017,Wired Headphones,1,11.99,10/28/19 19:17,"242 9th St, Dallas, TX 75001" +278018,AAA Batteries (4-pack),1,2.99,10/14/19 21:48,"704 Meadow St, Boston, MA 02215" +278019,Apple Airpods Headphones,1,150,10/04/19 08:01,"163 Church St, San Francisco, CA 94016" +278020,AAA Batteries (4-pack),3,2.99,10/07/19 14:06,"277 Madison St, Boston, MA 02215" +278021,AAA Batteries (4-pack),1,2.99,10/14/19 16:46,"943 Cedar St, San Francisco, CA 94016" +278022,AAA Batteries (4-pack),1,2.99,10/26/19 22:08,"451 8th St, Los Angeles, CA 90001" +278023,Wired Headphones,1,11.99,10/26/19 21:22,"356 Forest St, Boston, MA 02215" +278024,Apple Airpods Headphones,1,150,10/30/19 03:37,"261 8th St, Los Angeles, CA 90001" +278025,iPhone,1,700,10/11/19 14:35,"792 Lincoln St, Los Angeles, CA 90001" +278026,AA Batteries (4-pack),1,3.84,10/27/19 02:40,"883 River St, New York City, NY 10001" +278027,Lightning Charging Cable,1,14.95,10/14/19 21:55,"526 Main St, Los Angeles, CA 90001" +278028,Bose SoundSport Headphones,1,99.99,10/12/19 12:45,"311 14th St, New York City, NY 10001" +278029,27in FHD Monitor,1,149.99,10/31/19 00:36,"783 Walnut St, Los Angeles, CA 90001" +278030,Apple Airpods Headphones,1,150,10/04/19 15:48,"567 12th St, Los Angeles, CA 90001" +278031,USB-C Charging Cable,1,11.95,10/03/19 09:42,"90 9th St, Los Angeles, CA 90001" +278032,Apple Airpods Headphones,1,150,10/18/19 07:49,"667 North St, Portland, OR 97035" +278033,iPhone,1,700,10/03/19 22:27,"981 Center St, Austin, TX 73301" +278034,Apple Airpods Headphones,1,150,10/31/19 05:46,"10 Lakeview St, San Francisco, CA 94016" +278035,27in 4K Gaming Monitor,1,389.99,10/03/19 17:21,"533 Ridge St, Los Angeles, CA 90001" +278036,27in FHD Monitor,2,149.99,10/03/19 18:06,"895 Jackson St, Portland, ME 04101" +278037,AA Batteries (4-pack),1,3.84,10/08/19 09:39,"337 Jefferson St, Atlanta, GA 30301" +278038,Lightning Charging Cable,1,14.95,10/01/19 14:53,"858 Adams St, Dallas, TX 75001" +278039,Wired Headphones,1,11.99,10/08/19 02:59,"142 12th St, Dallas, TX 75001" +278040,27in FHD Monitor,1,149.99,10/02/19 15:02,"254 Elm St, Los Angeles, CA 90001" +278041,AAA Batteries (4-pack),1,2.99,10/18/19 00:34,"263 6th St, Portland, ME 04101" +278042,Macbook Pro Laptop,1,1700,10/07/19 21:23,"954 Chestnut St, Boston, MA 02215" +278043,LG Dryer,1,600.0,10/14/19 09:43,"437 Maple St, Boston, MA 02215" +278044,27in FHD Monitor,1,149.99,10/06/19 18:04,"443 1st St, Austin, TX 73301" +278045,Wired Headphones,1,11.99,10/23/19 13:50,"341 Wilson St, Boston, MA 02215" +278046,Wired Headphones,1,11.99,10/23/19 18:43,"759 Adams St, Portland, OR 97035" +278047,AAA Batteries (4-pack),1,2.99,10/28/19 09:48,"331 8th St, Atlanta, GA 30301" +278048,Lightning Charging Cable,1,14.95,10/04/19 19:17,"595 Hill St, San Francisco, CA 94016" +278049,Lightning Charging Cable,1,14.95,10/16/19 19:09,"39 Highland St, Dallas, TX 75001" +278050,27in FHD Monitor,1,149.99,10/27/19 15:21,"514 Ridge St, Boston, MA 02215" +278051,AAA Batteries (4-pack),1,2.99,10/11/19 09:54,"911 13th St, San Francisco, CA 94016" +278052,AAA Batteries (4-pack),2,2.99,10/11/19 17:16,"145 Dogwood St, Los Angeles, CA 90001" +278053,USB-C Charging Cable,1,11.95,10/24/19 14:56,"498 Jackson St, Dallas, TX 75001" +278054,Vareebadd Phone,1,400,10/28/19 19:34,"987 Cherry St, Seattle, WA 98101" +278054,USB-C Charging Cable,1,11.95,10/28/19 19:34,"987 Cherry St, Seattle, WA 98101" +278054,Wired Headphones,1,11.99,10/28/19 19:34,"987 Cherry St, Seattle, WA 98101" +278055,AA Batteries (4-pack),1,3.84,10/02/19 14:15,"185 Willow St, New York City, NY 10001" +278056,Google Phone,1,600,10/15/19 18:40,"522 Madison St, San Francisco, CA 94016" +278057,Lightning Charging Cable,1,14.95,10/23/19 21:36,"905 Spruce St, New York City, NY 10001" +278058,AAA Batteries (4-pack),1,2.99,10/16/19 12:23,"231 9th St, New York City, NY 10001" +278059,Lightning Charging Cable,1,14.95,10/20/19 15:52,"106 Elm St, San Francisco, CA 94016" +278060,Bose SoundSport Headphones,1,99.99,10/05/19 12:53,"108 Sunset St, Los Angeles, CA 90001" +278061,Wired Headphones,1,11.99,10/06/19 12:10,"290 7th St, New York City, NY 10001" +278062,Wired Headphones,1,11.99,10/26/19 17:24,"682 Johnson St, Seattle, WA 98101" +278063,USB-C Charging Cable,1,11.95,10/07/19 10:31,"291 Pine St, Seattle, WA 98101" +278064,27in FHD Monitor,1,149.99,10/31/19 17:51,"778 Jackson St, Los Angeles, CA 90001" +278065,Macbook Pro Laptop,1,1700,10/23/19 08:40,"412 Ridge St, Los Angeles, CA 90001" +278066,Wired Headphones,1,11.99,10/01/19 15:59,"90 Hickory St, Los Angeles, CA 90001" +278067,Wired Headphones,2,11.99,10/18/19 16:12,"441 4th St, Atlanta, GA 30301" +278068,Wired Headphones,1,11.99,10/16/19 11:36,"402 Elm St, San Francisco, CA 94016" +278069,Wired Headphones,1,11.99,10/04/19 11:02,"744 Pine St, New York City, NY 10001" +278070,AA Batteries (4-pack),1,3.84,10/13/19 11:30,"374 West St, Los Angeles, CA 90001" +278071,Google Phone,1,600,10/06/19 15:07,"824 Jefferson St, Portland, OR 97035" +278072,Wired Headphones,1,11.99,10/24/19 21:12,"253 Main St, Dallas, TX 75001" +278073,AAA Batteries (4-pack),1,2.99,10/20/19 16:36,"50 Johnson St, Los Angeles, CA 90001" +278074,USB-C Charging Cable,2,11.95,10/19/19 16:28,"917 1st St, Atlanta, GA 30301" +278075,AAA Batteries (4-pack),2,2.99,10/03/19 12:54,"521 Cherry St, Dallas, TX 75001" +278076,AA Batteries (4-pack),1,3.84,10/29/19 10:20,"461 Cedar St, Portland, OR 97035" +278077,AAA Batteries (4-pack),1,2.99,10/27/19 13:37,"448 Elm St, Los Angeles, CA 90001" +278078,AA Batteries (4-pack),1,3.84,10/07/19 00:31,"318 8th St, Atlanta, GA 30301" +278079,ThinkPad Laptop,1,999.99,10/23/19 23:17,"997 Lincoln St, Seattle, WA 98101" +278080,Bose SoundSport Headphones,1,99.99,10/08/19 17:44,"636 Washington St, Austin, TX 73301" +278081,AAA Batteries (4-pack),1,2.99,10/16/19 17:04,"688 Elm St, Boston, MA 02215" +278082,USB-C Charging Cable,1,11.95,10/23/19 19:38,"934 Hill St, San Francisco, CA 94016" +278083,Bose SoundSport Headphones,1,99.99,10/25/19 09:02,"377 4th St, Austin, TX 73301" +278084,AAA Batteries (4-pack),1,2.99,10/07/19 09:36,"595 13th St, San Francisco, CA 94016" +278085,AAA Batteries (4-pack),1,2.99,10/30/19 12:08,"310 Dogwood St, Seattle, WA 98101" +278086,USB-C Charging Cable,1,11.95,10/21/19 14:55,"320 Lincoln St, New York City, NY 10001" +278087,Bose SoundSport Headphones,1,99.99,10/10/19 02:58,"327 8th St, Boston, MA 02215" +278088,AAA Batteries (4-pack),1,2.99,10/05/19 19:39,"280 South St, Seattle, WA 98101" +278089,AA Batteries (4-pack),1,3.84,10/10/19 17:03,"237 Jefferson St, Dallas, TX 75001" +278090,AA Batteries (4-pack),1,3.84,10/29/19 22:05,"163 2nd St, Los Angeles, CA 90001" +278091,Wired Headphones,1,11.99,10/16/19 07:09,"603 2nd St, Boston, MA 02215" +278092,AA Batteries (4-pack),1,3.84,10/12/19 03:57,"531 Pine St, San Francisco, CA 94016" +278093,Google Phone,1,600,10/09/19 17:53,"652 Forest St, San Francisco, CA 94016" +278093,USB-C Charging Cable,1,11.95,10/09/19 17:53,"652 Forest St, San Francisco, CA 94016" +278093,Wired Headphones,1,11.99,10/09/19 17:53,"652 Forest St, San Francisco, CA 94016" +278094,Macbook Pro Laptop,1,1700,10/24/19 17:47,"834 Spruce St, New York City, NY 10001" +278095,Apple Airpods Headphones,1,150,10/10/19 19:43,"484 Lakeview St, Los Angeles, CA 90001" +278096,27in FHD Monitor,1,149.99,10/05/19 14:36,"516 Highland St, Seattle, WA 98101" +278097,USB-C Charging Cable,2,11.95,10/06/19 10:41,"140 10th St, San Francisco, CA 94016" +278098,27in 4K Gaming Monitor,1,389.99,10/12/19 14:40,"825 North St, Los Angeles, CA 90001" +278099,AA Batteries (4-pack),1,3.84,10/25/19 14:38,"788 Forest St, Boston, MA 02215" +278100,Lightning Charging Cable,1,14.95,10/16/19 19:08,"419 Chestnut St, Atlanta, GA 30301" +278101,AA Batteries (4-pack),1,3.84,10/13/19 11:22,"321 Sunset St, New York City, NY 10001" +278102,Google Phone,1,600,10/27/19 09:53,"506 Forest St, Los Angeles, CA 90001" +278103,AAA Batteries (4-pack),2,2.99,10/16/19 13:19,"711 2nd St, Seattle, WA 98101" +278104,AA Batteries (4-pack),1,3.84,10/20/19 08:56,"585 1st St, San Francisco, CA 94016" +278105,Lightning Charging Cable,1,14.95,10/01/19 18:23,"190 Madison St, Boston, MA 02215" +278106,AA Batteries (4-pack),1,3.84,10/22/19 16:29,"267 6th St, San Francisco, CA 94016" +278107,Lightning Charging Cable,1,14.95,10/24/19 16:25,"52 10th St, Portland, OR 97035" +278108,20in Monitor,1,109.99,10/31/19 09:53,"618 South St, Los Angeles, CA 90001" +278109,iPhone,1,700,10/24/19 14:23,"758 Lincoln St, San Francisco, CA 94016" +278109,Lightning Charging Cable,1,14.95,10/24/19 14:23,"758 Lincoln St, San Francisco, CA 94016" +278109,34in Ultrawide Monitor,1,379.99,10/24/19 14:23,"758 Lincoln St, San Francisco, CA 94016" +278110,USB-C Charging Cable,1,11.95,10/14/19 19:18,"130 12th St, Boston, MA 02215" +278111,USB-C Charging Cable,1,11.95,10/10/19 09:36,"558 Cedar St, Dallas, TX 75001" +278112,Macbook Pro Laptop,1,1700,10/19/19 13:53,"890 Main St, New York City, NY 10001" +278113,iPhone,1,700,10/18/19 13:24,"461 Hill St, Los Angeles, CA 90001" +278114,AAA Batteries (4-pack),4,2.99,10/29/19 15:13,"654 Washington St, San Francisco, CA 94016" +278115,USB-C Charging Cable,1,11.95,10/22/19 00:21,"443 Park St, New York City, NY 10001" +278116,USB-C Charging Cable,1,11.95,10/19/19 19:26,"626 4th St, New York City, NY 10001" +278117,USB-C Charging Cable,1,11.95,10/19/19 06:28,"478 Church St, San Francisco, CA 94016" +278118,Lightning Charging Cable,1,14.95,10/24/19 15:13,"781 Madison St, San Francisco, CA 94016" +278119,Lightning Charging Cable,1,14.95,10/09/19 16:06,"863 Church St, San Francisco, CA 94016" +278120,Bose SoundSport Headphones,1,99.99,10/10/19 20:05,"105 Sunset St, San Francisco, CA 94016" +278121,AA Batteries (4-pack),1,3.84,10/07/19 12:35,"158 Ridge St, Seattle, WA 98101" +278122,AA Batteries (4-pack),2,3.84,10/08/19 23:16,"982 West St, San Francisco, CA 94016" +278123,AAA Batteries (4-pack),1,2.99,10/13/19 11:00,"964 Lincoln St, Austin, TX 73301" +278124,Wired Headphones,2,11.99,10/09/19 21:35,"91 1st St, San Francisco, CA 94016" +278125,Bose SoundSport Headphones,1,99.99,10/17/19 12:48,"147 2nd St, Los Angeles, CA 90001" +278126,Wired Headphones,1,11.99,10/26/19 22:59,"708 Maple St, New York City, NY 10001" +278126,USB-C Charging Cable,1,11.95,10/26/19 22:59,"708 Maple St, New York City, NY 10001" +278127,Apple Airpods Headphones,1,150,10/06/19 18:48,"847 Hill St, Boston, MA 02215" +278128,Bose SoundSport Headphones,1,99.99,10/25/19 18:02,"406 Spruce St, Dallas, TX 75001" +278129,ThinkPad Laptop,1,999.99,10/30/19 14:00,"668 Jackson St, Los Angeles, CA 90001" +278130,Apple Airpods Headphones,1,150,10/13/19 08:42,"745 5th St, San Francisco, CA 94016" +278131,Apple Airpods Headphones,1,150,10/16/19 00:05,"398 West St, San Francisco, CA 94016" +278132,AA Batteries (4-pack),2,3.84,10/23/19 21:36,"148 Pine St, San Francisco, CA 94016" +278133,Bose SoundSport Headphones,1,99.99,10/17/19 15:19,"45 11th St, San Francisco, CA 94016" +278134,Flatscreen TV,1,300,10/30/19 09:25,"441 12th St, Boston, MA 02215" +278135,Wired Headphones,1,11.99,10/26/19 17:53,"528 South St, Seattle, WA 98101" +278136,USB-C Charging Cable,1,11.95,10/17/19 21:06,"536 Elm St, Austin, TX 73301" +278137,AA Batteries (4-pack),1,3.84,10/16/19 17:38,"443 Cherry St, New York City, NY 10001" +278138,Google Phone,1,600,10/16/19 12:13,"985 Adams St, Los Angeles, CA 90001" +278139,AAA Batteries (4-pack),1,2.99,10/21/19 08:59,"395 Chestnut St, Boston, MA 02215" +278140,iPhone,1,700,10/25/19 11:33,"934 Lake St, Los Angeles, CA 90001" +278141,27in FHD Monitor,1,149.99,10/06/19 17:07,"831 6th St, San Francisco, CA 94016" +278142,USB-C Charging Cable,1,11.95,10/31/19 11:54,"730 Walnut St, New York City, NY 10001" +278143,Lightning Charging Cable,1,14.95,10/03/19 06:49,"485 Highland St, Seattle, WA 98101" +278144,AA Batteries (4-pack),2,3.84,10/09/19 21:57,"750 Center St, San Francisco, CA 94016" +278145,AA Batteries (4-pack),2,3.84,10/21/19 09:07,"721 14th St, Dallas, TX 75001" +278146,Bose SoundSport Headphones,1,99.99,10/25/19 17:03,"458 Cedar St, Dallas, TX 75001" +278147,Lightning Charging Cable,1,14.95,10/03/19 10:23,"905 Washington St, Los Angeles, CA 90001" +278148,Flatscreen TV,1,300,10/05/19 17:00,"137 Jackson St, Los Angeles, CA 90001" +278149,Vareebadd Phone,1,400,10/28/19 21:23,"184 Lincoln St, Dallas, TX 75001" +278150,Lightning Charging Cable,1,14.95,10/08/19 14:25,"90 9th St, Portland, OR 97035" +278151,Wired Headphones,1,11.99,10/15/19 12:32,"653 2nd St, Portland, OR 97035" +278152,Lightning Charging Cable,1,14.95,10/17/19 17:55,"717 Forest St, Austin, TX 73301" +278153,AAA Batteries (4-pack),1,2.99,10/25/19 08:46,"91 Dogwood St, Portland, OR 97035" +278154,Wired Headphones,1,11.99,10/20/19 12:11,"690 North St, San Francisco, CA 94016" +278155,Bose SoundSport Headphones,1,99.99,10/28/19 20:24,"15 Cedar St, Dallas, TX 75001" +278156,Lightning Charging Cable,1,14.95,10/21/19 17:42,"567 Jackson St, Seattle, WA 98101" +278157,Bose SoundSport Headphones,1,99.99,10/30/19 09:25,"710 6th St, Atlanta, GA 30301" +278158,iPhone,1,700,10/05/19 14:21,"807 4th St, Los Angeles, CA 90001" +278159,Apple Airpods Headphones,1,150,10/12/19 17:46,"930 Elm St, Dallas, TX 75001" +278160,Wired Headphones,1,11.99,10/09/19 02:34,"743 9th St, Portland, OR 97035" +278161,AAA Batteries (4-pack),2,2.99,10/02/19 17:32,"595 River St, Boston, MA 02215" +278162,Bose SoundSport Headphones,1,99.99,10/08/19 14:26,"592 Wilson St, Boston, MA 02215" +278163,USB-C Charging Cable,1,11.95,10/27/19 00:28,"958 Johnson St, Dallas, TX 75001" +278164,AA Batteries (4-pack),1,3.84,10/26/19 19:10,"997 Hickory St, Atlanta, GA 30301" +278165,AAA Batteries (4-pack),1,2.99,10/05/19 18:27,"306 7th St, Los Angeles, CA 90001" +278166,AAA Batteries (4-pack),1,2.99,10/20/19 17:00,"192 Spruce St, San Francisco, CA 94016" +278167,Lightning Charging Cable,1,14.95,10/20/19 20:45,"41 Sunset St, Boston, MA 02215" +278168,Lightning Charging Cable,1,14.95,10/09/19 19:28,"54 North St, Boston, MA 02215" +278169,Apple Airpods Headphones,1,150,10/10/19 19:30,"729 8th St, New York City, NY 10001" +278170,AAA Batteries (4-pack),1,2.99,10/24/19 15:27,"984 Center St, Los Angeles, CA 90001" +278171,Bose SoundSport Headphones,1,99.99,10/31/19 17:36,"350 Cherry St, Atlanta, GA 30301" +278172,USB-C Charging Cable,1,11.95,10/14/19 15:07,"864 5th St, Portland, ME 04101" +278173,AAA Batteries (4-pack),1,2.99,10/19/19 15:41,"371 Spruce St, New York City, NY 10001" +278174,iPhone,1,700,10/26/19 12:52,"94 Lincoln St, San Francisco, CA 94016" +278175,Bose SoundSport Headphones,1,99.99,10/24/19 13:33,"984 Adams St, New York City, NY 10001" +278176,Bose SoundSport Headphones,1,99.99,10/30/19 05:45,"760 12th St, Los Angeles, CA 90001" +278177,AAA Batteries (4-pack),1,2.99,10/12/19 11:59,"946 Maple St, Boston, MA 02215" +278178,USB-C Charging Cable,1,11.95,10/15/19 12:08,"629 9th St, New York City, NY 10001" +278179,Bose SoundSport Headphones,1,99.99,10/10/19 10:14,"455 Walnut St, San Francisco, CA 94016" +278180,Wired Headphones,1,11.99,10/26/19 11:05,"64 Lincoln St, Atlanta, GA 30301" +278181,Wired Headphones,1,11.99,10/30/19 08:04,"85 Hill St, San Francisco, CA 94016" +278182,Macbook Pro Laptop,1,1700,10/16/19 17:50,"77 Jefferson St, Boston, MA 02215" +278183,Lightning Charging Cable,1,14.95,10/26/19 16:31,"987 14th St, San Francisco, CA 94016" +278184,Apple Airpods Headphones,1,150,10/06/19 16:45,"447 Sunset St, San Francisco, CA 94016" +278185,Bose SoundSport Headphones,1,99.99,10/08/19 18:15,"957 Pine St, Los Angeles, CA 90001" +278186,20in Monitor,1,109.99,10/26/19 08:17,"118 Lincoln St, Los Angeles, CA 90001" +278187,Macbook Pro Laptop,1,1700,10/11/19 12:16,"822 Church St, Los Angeles, CA 90001" +278188,AAA Batteries (4-pack),1,2.99,10/18/19 10:15,"320 Church St, Dallas, TX 75001" +278189,USB-C Charging Cable,1,11.95,10/02/19 10:36,"487 11th St, Austin, TX 73301" +278190,USB-C Charging Cable,1,11.95,10/30/19 18:57,"323 6th St, San Francisco, CA 94016" +278191,Lightning Charging Cable,1,14.95,10/10/19 20:38,"406 Adams St, Boston, MA 02215" +278192,Lightning Charging Cable,1,14.95,10/29/19 19:05,"864 11th St, New York City, NY 10001" +278193,Wired Headphones,1,11.99,10/19/19 01:32,"532 4th St, Atlanta, GA 30301" +278194,AAA Batteries (4-pack),1,2.99,10/05/19 13:24,"74 South St, New York City, NY 10001" +278195,20in Monitor,1,109.99,10/07/19 21:07,"77 Cherry St, Atlanta, GA 30301" +278196,Vareebadd Phone,1,400,10/01/19 05:03,"334 Lakeview St, Portland, OR 97035" +278197,Bose SoundSport Headphones,1,99.99,10/09/19 19:14,"904 Lincoln St, Boston, MA 02215" +278198,AA Batteries (4-pack),1,3.84,10/21/19 11:29,"464 Washington St, New York City, NY 10001" +278199,AA Batteries (4-pack),2,3.84,10/03/19 11:42,"117 Highland St, Austin, TX 73301" +278200,USB-C Charging Cable,1,11.95,10/16/19 14:35,"403 West St, New York City, NY 10001" +278201,Lightning Charging Cable,1,14.95,10/01/19 10:45,"178 Hickory St, San Francisco, CA 94016" +278202,Lightning Charging Cable,1,14.95,10/29/19 08:43,"409 Elm St, San Francisco, CA 94016" +278203,Lightning Charging Cable,1,14.95,10/23/19 10:39,"523 Washington St, San Francisco, CA 94016" +278204,AA Batteries (4-pack),1,3.84,10/02/19 21:44,"49 Walnut St, San Francisco, CA 94016" +278205,AA Batteries (4-pack),1,3.84,10/14/19 10:35,"556 Park St, San Francisco, CA 94016" +278206,iPhone,1,700,10/02/19 16:05,"130 Johnson St, Seattle, WA 98101" +278207,USB-C Charging Cable,1,11.95,10/08/19 10:43,"348 11th St, Atlanta, GA 30301" +278208,Apple Airpods Headphones,1,150,10/02/19 17:44,"974 Main St, San Francisco, CA 94016" +278209,27in FHD Monitor,1,149.99,10/16/19 16:11,"631 South St, San Francisco, CA 94016" +278210,Lightning Charging Cable,1,14.95,10/15/19 18:49,"881 Hill St, Boston, MA 02215" +278211,Wired Headphones,1,11.99,10/25/19 19:33,"472 1st St, Seattle, WA 98101" +278212,Bose SoundSport Headphones,1,99.99,10/29/19 21:18,"495 7th St, Los Angeles, CA 90001" +278213,27in FHD Monitor,1,149.99,10/04/19 10:11,"648 Lake St, Austin, TX 73301" +278214,Wired Headphones,1,11.99,10/08/19 00:45,"135 2nd St, Atlanta, GA 30301" +278215,AAA Batteries (4-pack),1,2.99,10/10/19 17:06,"291 Hill St, Boston, MA 02215" +278216,AA Batteries (4-pack),1,3.84,10/22/19 21:26,"331 Hickory St, Boston, MA 02215" +278217,USB-C Charging Cable,1,11.95,10/30/19 12:14,"333 Johnson St, Atlanta, GA 30301" +278218,Apple Airpods Headphones,1,150,10/15/19 16:24,"367 11th St, Los Angeles, CA 90001" +278219,27in 4K Gaming Monitor,1,389.99,10/21/19 14:17,"437 Lakeview St, San Francisco, CA 94016" +278220,USB-C Charging Cable,1,11.95,10/19/19 13:21,"441 Willow St, New York City, NY 10001" +278221,iPhone,1,700,10/21/19 11:07,"901 Cherry St, Seattle, WA 98101" +278222,iPhone,1,700,10/30/19 12:45,"304 Main St, New York City, NY 10001" +278222,Wired Headphones,1,11.99,10/30/19 12:45,"304 Main St, New York City, NY 10001" +278223,Macbook Pro Laptop,1,1700,10/18/19 18:56,"995 Pine St, New York City, NY 10001" +278224,AA Batteries (4-pack),2,3.84,10/02/19 16:31,"728 4th St, Dallas, TX 75001" +278225,AAA Batteries (4-pack),1,2.99,10/14/19 19:51,"408 Lincoln St, Dallas, TX 75001" +278226,AA Batteries (4-pack),1,3.84,10/26/19 16:25,"875 Jackson St, San Francisco, CA 94016" +278227,AAA Batteries (4-pack),2,2.99,10/14/19 13:53,"136 Cedar St, Los Angeles, CA 90001" +278228,Lightning Charging Cable,1,14.95,10/03/19 13:04,"229 11th St, San Francisco, CA 94016" +278229,USB-C Charging Cable,1,11.95,10/27/19 10:21,"759 Church St, San Francisco, CA 94016" +278230,iPhone,1,700,10/15/19 22:05,"732 9th St, New York City, NY 10001" +278230,Wired Headphones,1,11.99,10/15/19 22:05,"732 9th St, New York City, NY 10001" +278231,AAA Batteries (4-pack),2,2.99,10/01/19 17:57,"638 Washington St, Atlanta, GA 30301" +278232,Bose SoundSport Headphones,1,99.99,10/26/19 20:07,"263 6th St, Boston, MA 02215" +278233,Google Phone,1,600,10/18/19 11:00,"910 Lincoln St, Boston, MA 02215" +278233,USB-C Charging Cable,1,11.95,10/18/19 11:00,"910 Lincoln St, Boston, MA 02215" +278234,Lightning Charging Cable,1,14.95,10/25/19 12:09,"222 Lincoln St, San Francisco, CA 94016" +278235,AA Batteries (4-pack),1,3.84,10/25/19 07:39,"609 Lakeview St, Los Angeles, CA 90001" +278236,Flatscreen TV,1,300,10/15/19 12:31,"182 Walnut St, Atlanta, GA 30301" +278237,Lightning Charging Cable,1,14.95,10/11/19 17:50,"755 West St, Boston, MA 02215" +278238,34in Ultrawide Monitor,1,379.99,10/25/19 19:35,"490 Walnut St, San Francisco, CA 94016" +278239,AA Batteries (4-pack),1,3.84,10/24/19 14:05,"758 Madison St, San Francisco, CA 94016" +278240,Bose SoundSport Headphones,1,99.99,10/24/19 16:50,"22 Wilson St, Boston, MA 02215" +278241,AAA Batteries (4-pack),1,2.99,10/06/19 18:29,"931 12th St, San Francisco, CA 94016" +278242,Google Phone,1,600,10/21/19 00:27,"100 Chestnut St, Portland, OR 97035" +278243,27in 4K Gaming Monitor,1,389.99,10/04/19 19:27,"284 14th St, Atlanta, GA 30301" +278244,Bose SoundSport Headphones,1,99.99,10/11/19 23:23,"453 Jackson St, San Francisco, CA 94016" +278245,Apple Airpods Headphones,1,150,10/28/19 18:07,"618 Willow St, Seattle, WA 98101" +278246,AAA Batteries (4-pack),2,2.99,10/15/19 12:05,"681 Spruce St, Boston, MA 02215" +278247,Bose SoundSport Headphones,1,99.99,10/05/19 12:35,"950 Washington St, Boston, MA 02215" +278248,27in 4K Gaming Monitor,1,389.99,10/30/19 18:02,"791 Church St, San Francisco, CA 94016" +278249,Lightning Charging Cable,2,14.95,10/06/19 11:58,"10 Johnson St, San Francisco, CA 94016" +278250,Apple Airpods Headphones,1,150,10/03/19 16:56,"810 9th St, Seattle, WA 98101" +278251,Lightning Charging Cable,1,14.95,10/27/19 10:08,"457 Highland St, Atlanta, GA 30301" +278252,AAA Batteries (4-pack),1,2.99,10/04/19 19:45,"568 6th St, Boston, MA 02215" +278253,USB-C Charging Cable,1,11.95,10/12/19 08:18,"435 4th St, Boston, MA 02215" +278254,Apple Airpods Headphones,1,150,10/03/19 19:29,"240 5th St, New York City, NY 10001" +278255,Lightning Charging Cable,1,14.95,10/26/19 00:20,"93 Forest St, Atlanta, GA 30301" +278256,27in FHD Monitor,1,149.99,10/25/19 16:39,"187 West St, San Francisco, CA 94016" +278257,34in Ultrawide Monitor,1,379.99,10/24/19 16:28,"57 14th St, San Francisco, CA 94016" +278258,27in 4K Gaming Monitor,1,389.99,10/31/19 17:14,"202 North St, San Francisco, CA 94016" +278259,ThinkPad Laptop,1,999.99,10/29/19 18:01,"893 North St, Los Angeles, CA 90001" +278260,Apple Airpods Headphones,1,150,10/06/19 18:25,"928 Johnson St, Los Angeles, CA 90001" +278261,Apple Airpods Headphones,1,150,10/13/19 15:08,"254 Hill St, Los Angeles, CA 90001" +278262,27in FHD Monitor,1,149.99,10/31/19 18:20,"862 9th St, Seattle, WA 98101" +278263,ThinkPad Laptop,1,999.99,10/18/19 10:50,"814 Highland St, Los Angeles, CA 90001" +278264,34in Ultrawide Monitor,1,379.99,10/29/19 11:45,"851 Park St, Austin, TX 73301" +278265,Google Phone,1,600,10/17/19 17:02,"792 Johnson St, New York City, NY 10001" +278266,20in Monitor,1,109.99,10/09/19 21:09,"62 Lakeview St, Atlanta, GA 30301" +278267,Macbook Pro Laptop,1,1700,10/12/19 21:32,"312 5th St, New York City, NY 10001" +278268,USB-C Charging Cable,1,11.95,10/11/19 11:21,"919 11th St, Atlanta, GA 30301" +278269,AA Batteries (4-pack),2,3.84,10/08/19 13:11,"431 4th St, Dallas, TX 75001" +278270,ThinkPad Laptop,1,999.99,10/19/19 20:19,"713 Hill St, Austin, TX 73301" +278271,Bose SoundSport Headphones,1,99.99,10/18/19 13:38,"237 Maple St, Austin, TX 73301" +278272,USB-C Charging Cable,1,11.95,10/31/19 23:22,"761 Jefferson St, Los Angeles, CA 90001" +278273,Apple Airpods Headphones,1,150,10/03/19 18:52,"605 2nd St, Los Angeles, CA 90001" +278274,Bose SoundSport Headphones,1,99.99,11/01/19 02:13,"497 Hill St, San Francisco, CA 94016" +,,,,, +278275,Wired Headphones,1,11.99,10/17/19 21:52,"336 Maple St, Portland, OR 97035" +278276,ThinkPad Laptop,1,999.99,10/02/19 13:40,"207 6th St, Los Angeles, CA 90001" +278277,34in Ultrawide Monitor,1,379.99,10/31/19 16:34,"171 Madison St, New York City, NY 10001" +278278,Apple Airpods Headphones,1,150,10/25/19 11:40,"417 Chestnut St, San Francisco, CA 94016" +278279,Wired Headphones,1,11.99,10/09/19 21:44,"596 6th St, Los Angeles, CA 90001" +278280,34in Ultrawide Monitor,1,379.99,10/12/19 14:51,"131 Walnut St, Dallas, TX 75001" +278281,34in Ultrawide Monitor,1,379.99,10/04/19 16:30,"313 Main St, Los Angeles, CA 90001" +278282,Lightning Charging Cable,1,14.95,10/10/19 15:18,"858 Wilson St, Atlanta, GA 30301" +278283,Bose SoundSport Headphones,1,99.99,10/25/19 09:19,"766 Washington St, Seattle, WA 98101" +278284,27in FHD Monitor,1,149.99,10/17/19 20:19,"80 Highland St, San Francisco, CA 94016" +278285,AAA Batteries (4-pack),2,2.99,10/13/19 10:55,"92 Cedar St, Boston, MA 02215" +278286,Flatscreen TV,1,300,10/24/19 17:59,"892 West St, Boston, MA 02215" +278287,Lightning Charging Cable,1,14.95,10/15/19 19:56,"505 7th St, Boston, MA 02215" +278288,Vareebadd Phone,1,400,10/29/19 11:43,"365 2nd St, New York City, NY 10001" +278289,Lightning Charging Cable,1,14.95,10/10/19 20:58,"501 Spruce St, San Francisco, CA 94016" +278290,ThinkPad Laptop,1,999.99,10/26/19 17:00,"34 Main St, Atlanta, GA 30301" +278291,USB-C Charging Cable,1,11.95,10/24/19 19:35,"966 11th St, Seattle, WA 98101" +278292,Apple Airpods Headphones,1,150,10/19/19 20:53,"910 Center St, New York City, NY 10001" +278293,AAA Batteries (4-pack),1,2.99,10/05/19 19:03,"209 Cedar St, Los Angeles, CA 90001" +278294,Apple Airpods Headphones,1,150,10/10/19 18:46,"960 River St, Dallas, TX 75001" +278295,Apple Airpods Headphones,1,150,10/03/19 18:41,"895 River St, Portland, OR 97035" +278296,USB-C Charging Cable,1,11.95,10/23/19 22:33,"63 5th St, Dallas, TX 75001" +278297,AAA Batteries (4-pack),2,2.99,10/15/19 16:56,"609 Cherry St, Boston, MA 02215" +278298,USB-C Charging Cable,2,11.95,10/07/19 11:45,"740 Walnut St, New York City, NY 10001" +278299,20in Monitor,1,109.99,10/13/19 16:51,"370 Hickory St, San Francisco, CA 94016" +278300,Wired Headphones,1,11.99,10/18/19 09:37,"830 Elm St, Los Angeles, CA 90001" +278301,ThinkPad Laptop,1,999.99,10/24/19 19:03,"232 River St, Dallas, TX 75001" +278302,Lightning Charging Cable,1,14.95,10/12/19 15:39,"307 Madison St, New York City, NY 10001" +278303,34in Ultrawide Monitor,1,379.99,10/17/19 18:42,"496 Hill St, San Francisco, CA 94016" +278304,Bose SoundSport Headphones,1,99.99,10/24/19 10:45,"875 14th St, Atlanta, GA 30301" +278305,AAA Batteries (4-pack),1,2.99,10/05/19 20:10,"550 5th St, San Francisco, CA 94016" +278306,Google Phone,1,600,10/27/19 17:47,"179 13th St, Atlanta, GA 30301" +278307,Lightning Charging Cable,1,14.95,10/03/19 14:31,"525 Adams St, Boston, MA 02215" +278308,Wired Headphones,1,11.99,10/26/19 19:24,"767 Main St, Los Angeles, CA 90001" +278309,AAA Batteries (4-pack),1,2.99,10/10/19 10:04,"574 6th St, Seattle, WA 98101" +278310,Apple Airpods Headphones,1,150,10/22/19 21:32,"324 Spruce St, San Francisco, CA 94016" +278311,Wired Headphones,1,11.99,10/02/19 17:36,"355 Ridge St, Austin, TX 73301" +278312,USB-C Charging Cable,1,11.95,10/23/19 08:19,"45 11th St, Boston, MA 02215" +278313,Lightning Charging Cable,1,14.95,10/19/19 11:41,"940 Center St, Seattle, WA 98101" +278314,iPhone,1,700,10/03/19 08:36,"926 Walnut St, Boston, MA 02215" +278315,Bose SoundSport Headphones,1,99.99,10/25/19 22:36,"636 South St, Boston, MA 02215" +278316,20in Monitor,1,109.99,10/27/19 19:56,"666 8th St, Seattle, WA 98101" +278317,iPhone,1,700,10/03/19 18:28,"629 Jefferson St, Portland, OR 97035" +278318,Bose SoundSport Headphones,1,99.99,10/08/19 20:58,"142 Wilson St, Dallas, TX 75001" +278319,AAA Batteries (4-pack),1,2.99,10/04/19 18:49,"636 1st St, San Francisco, CA 94016" +278320,USB-C Charging Cable,1,11.95,10/12/19 13:50,"12 Jackson St, San Francisco, CA 94016" +278321,Bose SoundSport Headphones,1,99.99,10/26/19 18:23,"998 Forest St, Los Angeles, CA 90001" +278322,USB-C Charging Cable,1,11.95,10/18/19 02:15,"210 Center St, Atlanta, GA 30301" +278323,AAA Batteries (4-pack),1,2.99,10/29/19 11:04,"420 Jackson St, Boston, MA 02215" +278324,AAA Batteries (4-pack),1,2.99,10/04/19 15:30,"403 Lakeview St, San Francisco, CA 94016" +278325,AA Batteries (4-pack),1,3.84,10/20/19 22:32,"448 Lake St, Portland, OR 97035" +278326,USB-C Charging Cable,1,11.95,10/07/19 07:09,"564 Pine St, Dallas, TX 75001" +278327,USB-C Charging Cable,1,11.95,10/09/19 14:26,"21 West St, Boston, MA 02215" +278328,Macbook Pro Laptop,1,1700,10/28/19 18:28,"977 Washington St, San Francisco, CA 94016" +278329,AA Batteries (4-pack),2,3.84,10/13/19 15:56,"685 Meadow St, Los Angeles, CA 90001" +278330,20in Monitor,1,109.99,10/30/19 16:56,"562 Ridge St, Dallas, TX 75001" +278331,Macbook Pro Laptop,1,1700,10/02/19 21:25,"316 6th St, Dallas, TX 75001" +278332,iPhone,1,700,10/19/19 16:36,"66 North St, Dallas, TX 75001" +278333,Lightning Charging Cable,1,14.95,10/09/19 05:46,"177 Spruce St, San Francisco, CA 94016" +278334,Apple Airpods Headphones,1,150,10/13/19 22:48,"744 Wilson St, Austin, TX 73301" +278335,Apple Airpods Headphones,1,150,10/21/19 15:23,"169 Forest St, Austin, TX 73301" +278336,27in 4K Gaming Monitor,1,389.99,10/12/19 18:33,"488 11th St, New York City, NY 10001" +278337,USB-C Charging Cable,1,11.95,10/30/19 07:49,"964 Lakeview St, Atlanta, GA 30301" +278338,Vareebadd Phone,1,400,10/20/19 15:31,"898 Forest St, New York City, NY 10001" +278338,USB-C Charging Cable,2,11.95,10/20/19 15:31,"898 Forest St, New York City, NY 10001" +278338,Wired Headphones,1,11.99,10/20/19 15:31,"898 Forest St, New York City, NY 10001" +278339,Lightning Charging Cable,1,14.95,10/06/19 09:40,"710 Hickory St, Seattle, WA 98101" +278340,Bose SoundSport Headphones,1,99.99,10/03/19 12:38,"661 South St, Portland, OR 97035" +278341,Lightning Charging Cable,1,14.95,10/03/19 13:04,"311 Jackson St, Los Angeles, CA 90001" +278342,Wired Headphones,1,11.99,10/01/19 20:39,"642 Lakeview St, Los Angeles, CA 90001" +278342,AAA Batteries (4-pack),1,2.99,10/01/19 20:39,"642 Lakeview St, Los Angeles, CA 90001" +278343,AAA Batteries (4-pack),2,2.99,10/26/19 13:21,"84 13th St, San Francisco, CA 94016" +278344,27in FHD Monitor,1,149.99,10/28/19 17:42,"219 Chestnut St, Atlanta, GA 30301" +278345,ThinkPad Laptop,1,999.99,10/04/19 15:36,"703 North St, Atlanta, GA 30301" +278346,Google Phone,1,600,10/21/19 18:14,"551 Highland St, Austin, TX 73301" +278347,ThinkPad Laptop,1,999.99,10/14/19 12:25,"28 8th St, Seattle, WA 98101" +278348,Apple Airpods Headphones,1,150,10/30/19 09:25,"710 Elm St, Austin, TX 73301" +278349,Lightning Charging Cable,1,14.95,10/26/19 08:44,"945 Dogwood St, Portland, ME 04101" +278350,AAA Batteries (4-pack),1,2.99,10/05/19 11:18,"85 Elm St, San Francisco, CA 94016" +278351,Lightning Charging Cable,1,14.95,10/12/19 17:27,"848 8th St, Atlanta, GA 30301" +278352,27in FHD Monitor,1,149.99,10/29/19 19:55,"537 Walnut St, Boston, MA 02215" +278353,AA Batteries (4-pack),1,3.84,10/15/19 06:42,"473 Madison St, Los Angeles, CA 90001" +278354,ThinkPad Laptop,1,999.99,10/10/19 14:30,"236 Forest St, San Francisco, CA 94016" +278355,Flatscreen TV,1,300,10/18/19 08:01,"941 Johnson St, Dallas, TX 75001" +278355,Lightning Charging Cable,1,14.95,10/18/19 08:01,"941 Johnson St, Dallas, TX 75001" +278356,Macbook Pro Laptop,1,1700,10/20/19 19:18,"85 9th St, Los Angeles, CA 90001" +278357,Wired Headphones,1,11.99,10/18/19 09:42,"643 Meadow St, Dallas, TX 75001" +278358,Wired Headphones,1,11.99,10/07/19 16:40,"737 Wilson St, New York City, NY 10001" +278359,Wired Headphones,2,11.99,10/07/19 19:38,"884 Washington St, San Francisco, CA 94016" +278360,Lightning Charging Cable,1,14.95,10/03/19 12:32,"554 River St, San Francisco, CA 94016" +278361,Bose SoundSport Headphones,1,99.99,10/31/19 20:18,"693 8th St, Atlanta, GA 30301" +278362,iPhone,1,700,10/16/19 17:23,"621 Jefferson St, Portland, ME 04101" +278363,USB-C Charging Cable,1,11.95,10/30/19 11:30,"392 Highland St, Los Angeles, CA 90001" +278364,USB-C Charging Cable,1,11.95,10/17/19 13:04,"173 11th St, San Francisco, CA 94016" +278365,AA Batteries (4-pack),1,3.84,10/04/19 17:53,"577 Spruce St, New York City, NY 10001" +278366,iPhone,1,700,10/28/19 22:41,"875 12th St, Boston, MA 02215" +278367,AAA Batteries (4-pack),1,2.99,10/12/19 14:26,"90 Park St, San Francisco, CA 94016" +278368,Lightning Charging Cable,1,14.95,10/16/19 15:49,"563 Sunset St, San Francisco, CA 94016" +278369,AAA Batteries (4-pack),1,2.99,10/11/19 01:34,"109 Dogwood St, New York City, NY 10001" +278370,Apple Airpods Headphones,1,150,10/05/19 23:50,"462 Washington St, Atlanta, GA 30301" +278371,Google Phone,1,600,10/03/19 23:17,"36 South St, Seattle, WA 98101" +278372,Apple Airpods Headphones,1,150,10/08/19 18:58,"817 13th St, Dallas, TX 75001" +278373,AAA Batteries (4-pack),1,2.99,10/12/19 19:14,"771 Hickory St, San Francisco, CA 94016" +278374,Lightning Charging Cable,1,14.95,10/16/19 14:15,"810 Lake St, San Francisco, CA 94016" +278375,Wired Headphones,1,11.99,10/24/19 16:56,"269 Hickory St, Austin, TX 73301" +278376,AA Batteries (4-pack),4,3.84,10/26/19 13:31,"68 Lincoln St, Los Angeles, CA 90001" +278377,Flatscreen TV,1,300,10/13/19 13:41,"251 12th St, San Francisco, CA 94016" +278378,AAA Batteries (4-pack),2,2.99,10/28/19 10:25,"203 Main St, San Francisco, CA 94016" +278379,Apple Airpods Headphones,1,150,10/18/19 18:16,"934 10th St, Seattle, WA 98101" +278380,AAA Batteries (4-pack),4,2.99,10/09/19 12:03,"731 Willow St, San Francisco, CA 94016" +278381,AAA Batteries (4-pack),2,2.99,10/25/19 11:24,"827 Church St, Atlanta, GA 30301" +278382,USB-C Charging Cable,1,11.95,10/07/19 09:21,"82 Cedar St, Boston, MA 02215" +278383,AA Batteries (4-pack),2,3.84,10/16/19 17:45,"860 Main St, San Francisco, CA 94016" +278384,27in FHD Monitor,1,149.99,10/26/19 23:28,"490 Lincoln St, Atlanta, GA 30301" +278385,Bose SoundSport Headphones,1,99.99,10/21/19 12:20,"212 Lakeview St, San Francisco, CA 94016" +278386,Wired Headphones,1,11.99,10/24/19 12:03,"826 Adams St, Atlanta, GA 30301" +278387,Macbook Pro Laptop,1,1700,10/06/19 21:59,"518 Hill St, San Francisco, CA 94016" +278388,Lightning Charging Cable,2,14.95,10/27/19 16:27,"638 4th St, San Francisco, CA 94016" +278389,AA Batteries (4-pack),3,3.84,10/09/19 15:49,"290 Lake St, Portland, OR 97035" +278390,27in 4K Gaming Monitor,1,389.99,10/12/19 10:34,"384 Cherry St, Austin, TX 73301" +278391,Macbook Pro Laptop,1,1700,10/23/19 08:39,"663 11th St, Atlanta, GA 30301" +278392,USB-C Charging Cable,1,11.95,10/13/19 17:06,"758 Madison St, Austin, TX 73301" +278393,Lightning Charging Cable,1,14.95,10/31/19 20:03,"342 Forest St, Seattle, WA 98101" +278394,Lightning Charging Cable,1,14.95,10/14/19 07:50,"362 5th St, New York City, NY 10001" +278395,20in Monitor,1,109.99,10/20/19 09:51,"141 Meadow St, New York City, NY 10001" +278396,27in 4K Gaming Monitor,1,389.99,10/01/19 18:10,"364 River St, New York City, NY 10001" +278397,Wired Headphones,1,11.99,10/04/19 16:30,"473 Dogwood St, San Francisco, CA 94016" +278398,Macbook Pro Laptop,1,1700,10/24/19 10:57,"24 1st St, Seattle, WA 98101" +278399,iPhone,1,700,10/25/19 16:24,"116 Chestnut St, Austin, TX 73301" +278400,LG Dryer,1,600.0,10/22/19 11:53,"600 Sunset St, San Francisco, CA 94016" +278401,ThinkPad Laptop,1,999.99,10/29/19 10:38,"778 Sunset St, Atlanta, GA 30301" +278402,AAA Batteries (4-pack),1,2.99,10/02/19 09:46,"471 13th St, Los Angeles, CA 90001" +278403,Apple Airpods Headphones,1,150,10/30/19 21:39,"900 Dogwood St, San Francisco, CA 94016" +278404,Wired Headphones,1,11.99,10/19/19 15:58,"352 Hickory St, Dallas, TX 75001" +278405,AAA Batteries (4-pack),3,2.99,10/07/19 13:07,"186 Center St, Boston, MA 02215" +278406,Wired Headphones,1,11.99,10/17/19 08:38,"570 6th St, Atlanta, GA 30301" +278407,AA Batteries (4-pack),1,3.84,10/24/19 15:14,"257 Main St, San Francisco, CA 94016" +278408,Lightning Charging Cable,1,14.95,10/19/19 21:22,"130 Sunset St, Seattle, WA 98101" +278409,iPhone,1,700,10/17/19 10:16,"872 2nd St, New York City, NY 10001" +278410,Lightning Charging Cable,1,14.95,10/02/19 01:55,"783 Center St, New York City, NY 10001" +278411,AAA Batteries (4-pack),2,2.99,10/09/19 21:40,"610 Park St, Portland, OR 97035" +278412,AAA Batteries (4-pack),1,2.99,10/13/19 19:44,"58 13th St, Portland, OR 97035" +278413,AA Batteries (4-pack),2,3.84,10/07/19 10:28,"973 Sunset St, Seattle, WA 98101" +278414,Apple Airpods Headphones,1,150,10/17/19 18:22,"370 Cedar St, San Francisco, CA 94016" +278415,USB-C Charging Cable,1,11.95,10/31/19 12:18,"891 1st St, Seattle, WA 98101" +278416,Lightning Charging Cable,1,14.95,10/01/19 22:21,"614 Cherry St, Atlanta, GA 30301" +278417,AAA Batteries (4-pack),1,2.99,10/06/19 18:50,"938 5th St, Boston, MA 02215" +278418,Bose SoundSport Headphones,1,99.99,10/11/19 22:19,"53 Highland St, Los Angeles, CA 90001" +278419,Bose SoundSport Headphones,1,99.99,10/27/19 18:00,"41 8th St, Portland, OR 97035" +278420,27in FHD Monitor,1,149.99,10/27/19 20:54,"838 Highland St, Dallas, TX 75001" +278421,USB-C Charging Cable,1,11.95,10/24/19 10:53,"69 11th St, San Francisco, CA 94016" +278422,34in Ultrawide Monitor,1,379.99,10/02/19 18:20,"623 Sunset St, San Francisco, CA 94016" +278423,ThinkPad Laptop,1,999.99,10/12/19 11:11,"652 Center St, San Francisco, CA 94016" +278424,27in 4K Gaming Monitor,1,389.99,10/11/19 19:30,"639 9th St, Dallas, TX 75001" +278425,Apple Airpods Headphones,1,150,10/10/19 10:53,"843 13th St, Boston, MA 02215" +278426,Wired Headphones,1,11.99,10/18/19 09:48,"892 Lincoln St, Portland, OR 97035" +278427,USB-C Charging Cable,1,11.95,10/15/19 11:20,"102 Washington St, Dallas, TX 75001" +278428,Lightning Charging Cable,1,14.95,10/01/19 19:29,"192 West St, Boston, MA 02215" +278429,27in 4K Gaming Monitor,1,389.99,10/14/19 10:49,"898 Pine St, Boston, MA 02215" +,,,,, +278430,Google Phone,1,600,10/06/19 00:49,"422 Cherry St, Los Angeles, CA 90001" +278431,Lightning Charging Cable,1,14.95,10/29/19 12:32,"704 Madison St, Dallas, TX 75001" +278432,AA Batteries (4-pack),1,3.84,10/14/19 01:32,"404 Willow St, Dallas, TX 75001" +278433,Flatscreen TV,1,300,10/27/19 12:27,"286 Jackson St, Portland, ME 04101" +278434,USB-C Charging Cable,1,11.95,10/02/19 20:27,"775 Main St, San Francisco, CA 94016" +278435,Wired Headphones,1,11.99,10/23/19 19:37,"602 Wilson St, Boston, MA 02215" +278436,AA Batteries (4-pack),1,3.84,10/10/19 17:36,"637 Elm St, San Francisco, CA 94016" +278437,AA Batteries (4-pack),1,3.84,10/15/19 22:27,"617 14th St, Los Angeles, CA 90001" +278438,iPhone,1,700,10/13/19 06:14,"620 Spruce St, Austin, TX 73301" +278439,AAA Batteries (4-pack),2,2.99,10/20/19 08:40,"781 9th St, Portland, OR 97035" +278440,Bose SoundSport Headphones,1,99.99,10/14/19 16:33,"922 North St, Los Angeles, CA 90001" +278441,Lightning Charging Cable,1,14.95,10/30/19 13:06,"990 Willow St, Boston, MA 02215" +278442,Bose SoundSport Headphones,1,99.99,10/08/19 22:31,"473 Spruce St, Portland, ME 04101" +278443,Macbook Pro Laptop,1,1700,10/08/19 18:24,"258 Maple St, Los Angeles, CA 90001" +278444,AA Batteries (4-pack),2,3.84,10/14/19 17:50,"464 Lakeview St, Boston, MA 02215" +278445,Apple Airpods Headphones,1,150,10/21/19 13:57,"499 Washington St, New York City, NY 10001" +278446,Lightning Charging Cable,1,14.95,10/14/19 17:39,"851 North St, San Francisco, CA 94016" +278447,USB-C Charging Cable,2,11.95,10/24/19 07:41,"320 Lincoln St, Atlanta, GA 30301" +278448,AA Batteries (4-pack),1,3.84,10/05/19 09:55,"195 7th St, Portland, OR 97035" +278449,USB-C Charging Cable,1,11.95,10/22/19 09:00,"980 Maple St, Seattle, WA 98101" +278450,USB-C Charging Cable,1,11.95,10/25/19 14:52,"620 North St, Boston, MA 02215" +278451,AAA Batteries (4-pack),1,2.99,10/03/19 20:21,"205 10th St, Boston, MA 02215" +278452,Bose SoundSport Headphones,1,99.99,10/11/19 16:52,"414 Meadow St, Boston, MA 02215" +278453,Lightning Charging Cable,1,14.95,10/27/19 17:37,"245 Chestnut St, New York City, NY 10001" +278454,Google Phone,1,600,10/17/19 11:19,"682 Maple St, San Francisco, CA 94016" +278454,Wired Headphones,1,11.99,10/17/19 11:19,"682 Maple St, San Francisco, CA 94016" +278455,AA Batteries (4-pack),2,3.84,10/24/19 23:24,"975 Ridge St, Atlanta, GA 30301" +278456,Lightning Charging Cable,1,14.95,10/06/19 19:04,"775 9th St, Los Angeles, CA 90001" +278457,iPhone,1,700,10/30/19 02:09,"410 Pine St, San Francisco, CA 94016" +278458,Wired Headphones,1,11.99,10/30/19 14:53,"990 Madison St, Dallas, TX 75001" +278458,27in FHD Monitor,1,149.99,10/30/19 14:53,"990 Madison St, Dallas, TX 75001" +278459,Macbook Pro Laptop,1,1700,10/03/19 13:27,"213 Jackson St, Atlanta, GA 30301" +278460,34in Ultrawide Monitor,1,379.99,10/27/19 12:40,"867 10th St, Seattle, WA 98101" +278461,27in 4K Gaming Monitor,1,389.99,10/23/19 09:56,"901 11th St, Boston, MA 02215" +278462,Wired Headphones,1,11.99,10/07/19 09:28,"490 Lincoln St, San Francisco, CA 94016" +278463,AA Batteries (4-pack),1,3.84,10/26/19 12:54,"41 10th St, Atlanta, GA 30301" +278464,Apple Airpods Headphones,1,150,10/17/19 21:39,"683 Spruce St, Los Angeles, CA 90001" +278465,USB-C Charging Cable,1,11.95,10/22/19 11:36,"961 Willow St, San Francisco, CA 94016" +278466,AA Batteries (4-pack),1,3.84,10/29/19 14:56,"801 6th St, Portland, OR 97035" +278467,AAA Batteries (4-pack),1,2.99,10/14/19 07:28,"728 Pine St, Dallas, TX 75001" +278468,iPhone,1,700,10/14/19 18:46,"436 Wilson St, Boston, MA 02215" +278468,Wired Headphones,1,11.99,10/14/19 18:46,"436 Wilson St, Boston, MA 02215" +278469,USB-C Charging Cable,1,11.95,10/09/19 09:42,"637 Highland St, Dallas, TX 75001" +278470,20in Monitor,1,109.99,10/27/19 13:06,"297 Cedar St, Boston, MA 02215" +278471,USB-C Charging Cable,1,11.95,10/17/19 10:33,"469 West St, Seattle, WA 98101" +278471,AAA Batteries (4-pack),1,2.99,10/17/19 10:33,"469 West St, Seattle, WA 98101" +278472,Wired Headphones,1,11.99,10/14/19 18:30,"608 North St, Portland, OR 97035" +278473,20in Monitor,1,109.99,10/17/19 14:58,"175 Madison St, San Francisco, CA 94016" +278474,AA Batteries (4-pack),1,3.84,10/25/19 19:54,"490 5th St, San Francisco, CA 94016" +278475,Bose SoundSport Headphones,1,99.99,10/05/19 05:22,"874 Ridge St, Atlanta, GA 30301" +278475,AA Batteries (4-pack),3,3.84,10/05/19 05:22,"874 Ridge St, Atlanta, GA 30301" +278476,Wired Headphones,1,11.99,10/10/19 06:01,"637 Dogwood St, San Francisco, CA 94016" +278477,Apple Airpods Headphones,1,150,10/09/19 12:28,"6 4th St, San Francisco, CA 94016" +278478,ThinkPad Laptop,1,999.99,10/04/19 12:17,"443 Center St, Dallas, TX 75001" +278479,27in 4K Gaming Monitor,1,389.99,10/20/19 00:30,"549 Hill St, New York City, NY 10001" +278479,27in FHD Monitor,1,149.99,10/20/19 00:30,"549 Hill St, New York City, NY 10001" +278480,USB-C Charging Cable,1,11.95,10/24/19 10:57,"542 Park St, Los Angeles, CA 90001" +278481,Lightning Charging Cable,1,14.95,10/02/19 09:42,"112 Hickory St, New York City, NY 10001" +278482,AAA Batteries (4-pack),2,2.99,10/04/19 10:00,"721 Madison St, Los Angeles, CA 90001" +278483,27in FHD Monitor,1,149.99,10/15/19 17:17,"136 10th St, Boston, MA 02215" +278484,Apple Airpods Headphones,1,150,10/29/19 21:59,"944 10th St, Seattle, WA 98101" +278485,Lightning Charging Cable,1,14.95,10/02/19 11:16,"153 Forest St, San Francisco, CA 94016" +278486,34in Ultrawide Monitor,1,379.99,10/06/19 08:34,"208 Hill St, San Francisco, CA 94016" +278487,Apple Airpods Headphones,1,150,10/08/19 17:54,"534 Washington St, Atlanta, GA 30301" +278488,USB-C Charging Cable,1,11.95,10/25/19 00:05,"859 7th St, Dallas, TX 75001" +278489,Google Phone,1,600,10/24/19 23:19,"827 1st St, Atlanta, GA 30301" +278490,USB-C Charging Cable,1,11.95,10/11/19 19:50,"843 12th St, San Francisco, CA 94016" +278491,iPhone,1,700,10/31/19 19:35,"397 Walnut St, Dallas, TX 75001" +278491,Lightning Charging Cable,1,14.95,10/31/19 19:35,"397 Walnut St, Dallas, TX 75001" +278492,Apple Airpods Headphones,1,150,10/15/19 11:14,"892 1st St, Dallas, TX 75001" +278493,27in FHD Monitor,1,149.99,10/05/19 17:52,"187 Wilson St, Dallas, TX 75001" +278494,AAA Batteries (4-pack),1,2.99,10/31/19 10:28,"121 Willow St, San Francisco, CA 94016" +278495,AA Batteries (4-pack),1,3.84,10/27/19 16:23,"590 Madison St, Portland, OR 97035" +278496,Bose SoundSport Headphones,1,99.99,10/19/19 19:03,"443 6th St, San Francisco, CA 94016" +278497,USB-C Charging Cable,1,11.95,10/02/19 18:06,"614 9th St, Atlanta, GA 30301" +278498,Apple Airpods Headphones,1,150,10/22/19 20:08,"688 Jefferson St, Portland, OR 97035" +278499,Flatscreen TV,1,300,10/01/19 10:46,"872 Elm St, New York City, NY 10001" +278500,AA Batteries (4-pack),3,3.84,10/22/19 14:44,"60 Park St, San Francisco, CA 94016" +278501,AA Batteries (4-pack),1,3.84,10/18/19 11:24,"37 West St, Boston, MA 02215" +278502,Bose SoundSport Headphones,1,99.99,10/30/19 17:08,"775 10th St, Dallas, TX 75001" +278503,Bose SoundSport Headphones,1,99.99,10/06/19 10:54,"413 Lincoln St, Seattle, WA 98101" +278504,AAA Batteries (4-pack),2,2.99,10/14/19 07:10,"85 2nd St, San Francisco, CA 94016" +278505,AAA Batteries (4-pack),1,2.99,10/30/19 09:02,"666 Pine St, San Francisco, CA 94016" +278506,iPhone,1,700,10/04/19 19:05,"55 Willow St, Boston, MA 02215" +278506,Apple Airpods Headphones,1,150,10/04/19 19:05,"55 Willow St, Boston, MA 02215" +278507,Apple Airpods Headphones,1,150,10/27/19 07:31,"8 Elm St, San Francisco, CA 94016" +278508,USB-C Charging Cable,1,11.95,10/25/19 11:20,"573 South St, Dallas, TX 75001" +278508,AAA Batteries (4-pack),1,2.99,10/25/19 11:20,"573 South St, Dallas, TX 75001" +278509,Wired Headphones,1,11.99,10/14/19 21:07,"42 Elm St, Boston, MA 02215" +278510,AA Batteries (4-pack),2,3.84,10/20/19 15:23,"940 Hickory St, New York City, NY 10001" +278511,AA Batteries (4-pack),1,3.84,10/02/19 23:40,"892 Johnson St, Portland, OR 97035" +278512,Apple Airpods Headphones,1,150,10/08/19 17:26,"685 11th St, San Francisco, CA 94016" +278513,Wired Headphones,2,11.99,10/13/19 07:34,"718 14th St, San Francisco, CA 94016" +278514,Lightning Charging Cable,1,14.95,10/16/19 23:49,"800 Meadow St, New York City, NY 10001" +278515,Apple Airpods Headphones,1,150,10/09/19 10:40,"378 Washington St, San Francisco, CA 94016" +278516,USB-C Charging Cable,1,11.95,10/14/19 15:57,"563 Cherry St, Boston, MA 02215" +278517,Lightning Charging Cable,1,14.95,10/21/19 20:51,"816 13th St, San Francisco, CA 94016" +278518,34in Ultrawide Monitor,1,379.99,10/16/19 10:26,"161 Johnson St, Los Angeles, CA 90001" +278519,27in FHD Monitor,1,149.99,10/31/19 08:40,"79 Walnut St, Atlanta, GA 30301" +278520,Bose SoundSport Headphones,1,99.99,10/25/19 07:37,"205 River St, Los Angeles, CA 90001" +278521,34in Ultrawide Monitor,1,379.99,10/03/19 09:35,"720 Jefferson St, Atlanta, GA 30301" +278522,Macbook Pro Laptop,1,1700,10/07/19 23:38,"315 Main St, Atlanta, GA 30301" +278523,34in Ultrawide Monitor,1,379.99,10/19/19 12:22,"277 11th St, Austin, TX 73301" +278524,AA Batteries (4-pack),1,3.84,10/29/19 20:43,"725 Cherry St, Dallas, TX 75001" +278525,AAA Batteries (4-pack),2,2.99,10/14/19 17:11,"131 River St, Los Angeles, CA 90001" +278526,LG Dryer,1,600.0,10/05/19 11:46,"951 Madison St, San Francisco, CA 94016" +278527,AAA Batteries (4-pack),1,2.99,10/30/19 23:51,"237 Park St, Seattle, WA 98101" +278528,iPhone,1,700,10/01/19 23:51,"255 Washington St, New York City, NY 10001" +278528,Lightning Charging Cable,1,14.95,10/01/19 23:51,"255 Washington St, New York City, NY 10001" +278529,USB-C Charging Cable,1,11.95,10/13/19 19:09,"337 12th St, Portland, ME 04101" +278530,AA Batteries (4-pack),2,3.84,10/24/19 06:40,"804 Chestnut St, San Francisco, CA 94016" +278531,Bose SoundSport Headphones,1,99.99,10/05/19 10:23,"957 Cherry St, Los Angeles, CA 90001" +278532,Macbook Pro Laptop,1,1700,10/04/19 21:19,"978 Walnut St, Austin, TX 73301" +278533,27in FHD Monitor,1,149.99,10/23/19 11:46,"571 Lakeview St, New York City, NY 10001" +278534,Wired Headphones,1,11.99,10/20/19 11:59,"743 River St, Atlanta, GA 30301" +278535,Lightning Charging Cable,1,14.95,10/14/19 14:48,"651 1st St, Atlanta, GA 30301" +278536,Apple Airpods Headphones,1,150,10/28/19 10:06,"777 Meadow St, Los Angeles, CA 90001" +278537,Macbook Pro Laptop,1,1700,10/23/19 07:00,"541 Cedar St, Atlanta, GA 30301" +278538,USB-C Charging Cable,1,11.95,10/10/19 16:15,"550 Hill St, San Francisco, CA 94016" +278539,AA Batteries (4-pack),1,3.84,10/27/19 09:44,"452 Wilson St, Portland, OR 97035" +278540,AA Batteries (4-pack),1,3.84,10/15/19 14:45,"132 Johnson St, New York City, NY 10001" +278541,AA Batteries (4-pack),1,3.84,10/24/19 07:12,"551 Cherry St, Dallas, TX 75001" +278542,AA Batteries (4-pack),1,3.84,10/25/19 22:19,"951 Ridge St, Dallas, TX 75001" +278543,Lightning Charging Cable,1,14.95,10/02/19 15:11,"459 Jackson St, San Francisco, CA 94016" +278544,AAA Batteries (4-pack),2,2.99,10/21/19 17:29,"71 North St, Boston, MA 02215" +278545,USB-C Charging Cable,1,11.95,10/13/19 19:07,"899 Hill St, Los Angeles, CA 90001" +278546,AAA Batteries (4-pack),1,2.99,10/18/19 11:14,"98 1st St, Seattle, WA 98101" +278547,Google Phone,1,600,10/11/19 21:27,"573 9th St, Boston, MA 02215" +278548,AA Batteries (4-pack),1,3.84,10/30/19 20:41,"917 7th St, San Francisco, CA 94016" +278549,AAA Batteries (4-pack),2,2.99,10/16/19 20:10,"362 1st St, Dallas, TX 75001" +278550,Apple Airpods Headphones,1,150,10/16/19 18:50,"316 10th St, Dallas, TX 75001" +278551,Lightning Charging Cable,1,14.95,10/28/19 01:09,"879 14th St, Portland, ME 04101" +278552,Bose SoundSport Headphones,1,99.99,10/17/19 21:42,"389 7th St, Boston, MA 02215" +278553,USB-C Charging Cable,1,11.95,10/10/19 14:31,"828 Walnut St, Los Angeles, CA 90001" +278554,27in 4K Gaming Monitor,1,389.99,10/24/19 22:43,"793 Dogwood St, San Francisco, CA 94016" +278555,AAA Batteries (4-pack),1,2.99,10/25/19 23:29,"278 Jackson St, Boston, MA 02215" +278556,AA Batteries (4-pack),1,3.84,10/15/19 10:09,"357 South St, Boston, MA 02215" +278557,AAA Batteries (4-pack),1,2.99,10/25/19 13:58,"858 Jefferson St, San Francisco, CA 94016" +278558,Wired Headphones,1,11.99,10/21/19 23:33,"569 Washington St, New York City, NY 10001" +278559,AA Batteries (4-pack),1,3.84,10/29/19 11:07,"609 Cherry St, San Francisco, CA 94016" +278560,Bose SoundSport Headphones,1,99.99,10/23/19 08:55,"703 Hickory St, Boston, MA 02215" +278561,27in 4K Gaming Monitor,1,389.99,10/11/19 08:42,"819 Adams St, San Francisco, CA 94016" +278562,AA Batteries (4-pack),1,3.84,10/21/19 15:17,"87 13th St, Seattle, WA 98101" +278563,USB-C Charging Cable,1,11.95,10/19/19 10:38,"38 South St, Boston, MA 02215" +278564,AAA Batteries (4-pack),1,2.99,10/13/19 20:33,"938 Center St, Boston, MA 02215" +278565,Lightning Charging Cable,1,14.95,10/13/19 22:19,"915 2nd St, New York City, NY 10001" +278566,Apple Airpods Headphones,1,150,10/27/19 20:16,"14 Johnson St, Los Angeles, CA 90001" +278567,Bose SoundSport Headphones,1,99.99,10/22/19 20:56,"166 Park St, New York City, NY 10001" +278568,USB-C Charging Cable,1,11.95,10/15/19 10:57,"735 Center St, San Francisco, CA 94016" +278569,Apple Airpods Headphones,1,150,10/03/19 10:41,"988 Jefferson St, Los Angeles, CA 90001" +278570,USB-C Charging Cable,2,11.95,10/01/19 19:15,"249 Hill St, San Francisco, CA 94016" +278571,LG Washing Machine,1,600.0,10/11/19 23:47,"301 Chestnut St, Portland, OR 97035" +278572,Google Phone,1,600,10/07/19 06:44,"908 4th St, New York City, NY 10001" +278573,AA Batteries (4-pack),1,3.84,10/19/19 19:32,"471 Wilson St, Seattle, WA 98101" +278574,AAA Batteries (4-pack),1,2.99,10/13/19 20:08,"124 Johnson St, New York City, NY 10001" +278575,AAA Batteries (4-pack),1,2.99,10/20/19 20:13,"84 2nd St, Austin, TX 73301" +278575,Lightning Charging Cable,1,14.95,10/20/19 20:13,"84 2nd St, Austin, TX 73301" +278576,Wired Headphones,1,11.99,10/19/19 12:01,"363 14th St, Portland, OR 97035" +278577,Lightning Charging Cable,1,14.95,10/12/19 22:24,"969 Maple St, Los Angeles, CA 90001" +278578,Wired Headphones,1,11.99,10/17/19 12:42,"185 Cherry St, San Francisco, CA 94016" +278579,USB-C Charging Cable,1,11.95,10/09/19 22:47,"527 West St, Dallas, TX 75001" +278580,AAA Batteries (4-pack),2,2.99,10/31/19 17:15,"268 Center St, Atlanta, GA 30301" +278581,27in FHD Monitor,1,149.99,10/31/19 19:41,"849 Willow St, Los Angeles, CA 90001" +278582,34in Ultrawide Monitor,1,379.99,10/13/19 12:41,"916 4th St, San Francisco, CA 94016" +278583,27in FHD Monitor,1,149.99,10/12/19 20:37,"74 13th St, New York City, NY 10001" +278584,Lightning Charging Cable,1,14.95,10/07/19 17:36,"176 Maple St, San Francisco, CA 94016" +278585,Lightning Charging Cable,1,14.95,10/16/19 17:45,"900 Johnson St, Los Angeles, CA 90001" +278586,USB-C Charging Cable,1,11.95,10/31/19 19:14,"239 Pine St, Portland, OR 97035" +278587,iPhone,1,700,10/09/19 23:48,"81 Dogwood St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +278588,AA Batteries (4-pack),1,3.84,10/19/19 10:48,"576 Jefferson St, Portland, OR 97035" +278589,USB-C Charging Cable,1,11.95,10/27/19 13:03,"932 Johnson St, Dallas, TX 75001" +278590,Apple Airpods Headphones,1,150,10/04/19 10:07,"921 8th St, New York City, NY 10001" +278591,Bose SoundSport Headphones,1,99.99,10/09/19 16:14,"479 Sunset St, San Francisco, CA 94016" +278592,AA Batteries (4-pack),2,3.84,10/01/19 12:46,"301 14th St, New York City, NY 10001" +278593,AAA Batteries (4-pack),1,2.99,10/11/19 09:59,"387 Center St, Portland, OR 97035" +278594,AAA Batteries (4-pack),1,2.99,10/07/19 12:16,"5 Pine St, Los Angeles, CA 90001" +278595,AAA Batteries (4-pack),1,2.99,10/06/19 06:31,"696 Dogwood St, San Francisco, CA 94016" +278596,AAA Batteries (4-pack),2,2.99,10/09/19 19:12,"850 Main St, Los Angeles, CA 90001" +278597,AAA Batteries (4-pack),1,2.99,10/31/19 19:37,"370 Madison St, New York City, NY 10001" +278598,AAA Batteries (4-pack),1,2.99,10/01/19 10:58,"649 North St, Austin, TX 73301" +278599,AAA Batteries (4-pack),2,2.99,10/16/19 10:35,"629 South St, Austin, TX 73301" +278600,27in 4K Gaming Monitor,1,389.99,10/09/19 14:41,"643 Washington St, Seattle, WA 98101" +278600,34in Ultrawide Monitor,1,379.99,10/09/19 14:41,"643 Washington St, Seattle, WA 98101" +278601,20in Monitor,1,109.99,10/19/19 18:33,"753 10th St, New York City, NY 10001" +278602,USB-C Charging Cable,1,11.95,10/12/19 16:20,"88 Spruce St, Atlanta, GA 30301" +278603,AAA Batteries (4-pack),1,2.99,10/06/19 10:23,"127 11th St, Los Angeles, CA 90001" +278604,34in Ultrawide Monitor,1,379.99,10/02/19 19:46,"262 Johnson St, Boston, MA 02215" +278605,AA Batteries (4-pack),2,3.84,10/24/19 08:04,"765 Willow St, San Francisco, CA 94016" +278606,USB-C Charging Cable,2,11.95,10/20/19 15:22,"82 Madison St, Austin, TX 73301" +278607,27in FHD Monitor,1,149.99,10/12/19 07:57,"406 Maple St, Los Angeles, CA 90001" +278608,34in Ultrawide Monitor,1,379.99,10/04/19 20:26,"382 13th St, Los Angeles, CA 90001" +278609,Apple Airpods Headphones,1,150,10/11/19 19:46,"296 Park St, Los Angeles, CA 90001" +278610,Wired Headphones,1,11.99,10/16/19 20:08,"144 Cherry St, New York City, NY 10001" +278611,Macbook Pro Laptop,1,1700,10/02/19 07:29,"946 Adams St, San Francisco, CA 94016" +278612,Lightning Charging Cable,1,14.95,10/15/19 18:42,"53 6th St, San Francisco, CA 94016" +278613,iPhone,1,700,10/30/19 18:14,"865 Jefferson St, Los Angeles, CA 90001" +278614,ThinkPad Laptop,1,999.99,10/30/19 10:41,"709 North St, Portland, OR 97035" +278615,34in Ultrawide Monitor,1,379.99,10/26/19 23:36,"369 9th St, Dallas, TX 75001" +278616,AAA Batteries (4-pack),1,2.99,10/16/19 18:22,"564 9th St, New York City, NY 10001" +278617,Bose SoundSport Headphones,1,99.99,10/14/19 10:13,"976 River St, Dallas, TX 75001" +278618,Lightning Charging Cable,1,14.95,10/07/19 11:30,"843 6th St, Dallas, TX 75001" +278619,Wired Headphones,1,11.99,10/18/19 19:02,"122 13th St, Los Angeles, CA 90001" +278620,Vareebadd Phone,1,400,10/04/19 20:48,"50 South St, Austin, TX 73301" +278620,Wired Headphones,1,11.99,10/04/19 20:48,"50 South St, Austin, TX 73301" +278621,Wired Headphones,1,11.99,10/05/19 21:23,"246 Church St, San Francisco, CA 94016" +278622,AA Batteries (4-pack),2,3.84,10/24/19 10:03,"9 Willow St, Los Angeles, CA 90001" +278623,AAA Batteries (4-pack),1,2.99,10/15/19 20:18,"188 Maple St, Boston, MA 02215" +278624,Wired Headphones,1,11.99,10/21/19 08:11,"487 Meadow St, Los Angeles, CA 90001" +278625,Bose SoundSport Headphones,1,99.99,10/03/19 23:22,"290 8th St, San Francisco, CA 94016" +278626,Wired Headphones,1,11.99,10/04/19 08:46,"329 9th St, New York City, NY 10001" +278627,iPhone,1,700,10/25/19 17:22,"374 North St, Atlanta, GA 30301" +278627,Wired Headphones,1,11.99,10/25/19 17:22,"374 North St, Atlanta, GA 30301" +278628,USB-C Charging Cable,1,11.95,10/02/19 19:33,"220 13th St, Los Angeles, CA 90001" +278629,USB-C Charging Cable,1,11.95,10/23/19 00:25,"86 Adams St, San Francisco, CA 94016" +278630,Wired Headphones,1,11.99,10/16/19 09:19,"347 River St, New York City, NY 10001" +278631,Vareebadd Phone,1,400,10/24/19 22:23,"511 Sunset St, Seattle, WA 98101" +278632,AAA Batteries (4-pack),2,2.99,10/23/19 09:40,"404 Walnut St, New York City, NY 10001" +278633,Wired Headphones,2,11.99,10/02/19 15:34,"224 Wilson St, Los Angeles, CA 90001" +278634,Wired Headphones,1,11.99,10/13/19 00:04,"930 5th St, Los Angeles, CA 90001" +278635,Apple Airpods Headphones,1,150,10/13/19 23:13,"414 River St, Dallas, TX 75001" +278636,27in FHD Monitor,1,149.99,10/21/19 19:04,"923 12th St, Portland, ME 04101" +278637,Flatscreen TV,1,300,10/28/19 22:30,"462 13th St, Los Angeles, CA 90001" +278638,AA Batteries (4-pack),1,3.84,10/09/19 21:28,"816 10th St, Seattle, WA 98101" +278639,Apple Airpods Headphones,1,150,10/31/19 09:26,"215 Cherry St, Austin, TX 73301" +278640,AA Batteries (4-pack),2,3.84,10/20/19 23:06,"716 Forest St, Los Angeles, CA 90001" +278641,Wired Headphones,1,11.99,10/20/19 10:46,"143 North St, Portland, OR 97035" +278642,ThinkPad Laptop,1,999.99,10/17/19 13:40,"355 11th St, Boston, MA 02215" +278643,Wired Headphones,2,11.99,10/07/19 02:20,"863 Maple St, Portland, ME 04101" +278644,Bose SoundSport Headphones,1,99.99,10/24/19 19:24,"230 4th St, San Francisco, CA 94016" +278645,USB-C Charging Cable,1,11.95,10/25/19 11:51,"647 Cedar St, Portland, OR 97035" +278646,USB-C Charging Cable,1,11.95,10/16/19 17:08,"664 2nd St, Los Angeles, CA 90001" +278647,AA Batteries (4-pack),1,3.84,10/12/19 17:36,"729 Forest St, San Francisco, CA 94016" +278648,Google Phone,1,600,10/02/19 20:39,"72 Wilson St, Austin, TX 73301" +278648,USB-C Charging Cable,1,11.95,10/02/19 20:39,"72 Wilson St, Austin, TX 73301" +278649,Wired Headphones,1,11.99,10/25/19 13:02,"622 Ridge St, Dallas, TX 75001" +278650,Bose SoundSport Headphones,1,99.99,10/29/19 16:44,"214 6th St, Seattle, WA 98101" +278651,AA Batteries (4-pack),1,3.84,10/01/19 12:42,"935 Park St, Los Angeles, CA 90001" +278652,27in FHD Monitor,1,149.99,10/22/19 15:55,"749 North St, San Francisco, CA 94016" +278653,Wired Headphones,2,11.99,10/14/19 00:11,"86 Center St, Los Angeles, CA 90001" +278654,LG Washing Machine,1,600.0,10/26/19 20:46,"432 Willow St, San Francisco, CA 94016" +278655,ThinkPad Laptop,1,999.99,10/18/19 21:01,"648 Madison St, San Francisco, CA 94016" +278655,AA Batteries (4-pack),2,3.84,10/18/19 21:01,"648 Madison St, San Francisco, CA 94016" +278656,iPhone,1,700,10/18/19 21:36,"748 Ridge St, San Francisco, CA 94016" +278657,Lightning Charging Cable,1,14.95,10/20/19 21:42,"773 Cherry St, Dallas, TX 75001" +278658,AA Batteries (4-pack),1,3.84,10/23/19 20:24,"408 12th St, Austin, TX 73301" +278659,Flatscreen TV,1,300,10/26/19 11:10,"518 Walnut St, San Francisco, CA 94016" +278660,Wired Headphones,1,11.99,10/16/19 13:09,"327 Ridge St, New York City, NY 10001" +278661,Apple Airpods Headphones,1,150,10/23/19 21:18,"5 Sunset St, Atlanta, GA 30301" +278662,USB-C Charging Cable,1,11.95,10/21/19 21:52,"213 13th St, Seattle, WA 98101" +278663,Google Phone,1,600,10/11/19 13:28,"520 West St, San Francisco, CA 94016" +278664,AAA Batteries (4-pack),1,2.99,10/06/19 22:03,"503 Ridge St, Dallas, TX 75001" +278665,Apple Airpods Headphones,1,150,10/10/19 13:32,"958 4th St, Boston, MA 02215" +278666,ThinkPad Laptop,1,999.99,10/23/19 22:50,"265 9th St, Boston, MA 02215" +278666,34in Ultrawide Monitor,1,379.99,10/23/19 22:50,"265 9th St, Boston, MA 02215" +278667,Wired Headphones,1,11.99,10/27/19 15:55,"943 Elm St, Atlanta, GA 30301" +278668,AA Batteries (4-pack),1,3.84,10/19/19 19:35,"154 Dogwood St, New York City, NY 10001" +278669,AA Batteries (4-pack),1,3.84,10/13/19 21:21,"767 1st St, Seattle, WA 98101" +278670,AAA Batteries (4-pack),1,2.99,10/07/19 20:08,"316 14th St, Atlanta, GA 30301" +278671,AAA Batteries (4-pack),4,2.99,10/24/19 19:18,"522 4th St, Los Angeles, CA 90001" +278672,Wired Headphones,1,11.99,10/28/19 21:00,"178 10th St, Seattle, WA 98101" +278673,AAA Batteries (4-pack),1,2.99,10/09/19 20:54,"471 4th St, San Francisco, CA 94016" +278674,Lightning Charging Cable,1,14.95,10/28/19 18:27,"65 2nd St, Dallas, TX 75001" +278675,Google Phone,1,600,10/31/19 20:21,"780 Ridge St, Los Angeles, CA 90001" +278675,Wired Headphones,1,11.99,10/31/19 20:21,"780 Ridge St, Los Angeles, CA 90001" +278676,Lightning Charging Cable,1,14.95,10/02/19 18:26,"966 Meadow St, San Francisco, CA 94016" +278677,Wired Headphones,1,11.99,10/03/19 18:17,"871 Ridge St, San Francisco, CA 94016" +278678,Lightning Charging Cable,1,14.95,10/09/19 19:01,"203 Center St, Dallas, TX 75001" +278679,Lightning Charging Cable,1,14.95,10/08/19 08:40,"436 Highland St, Dallas, TX 75001" +278680,Macbook Pro Laptop,1,1700,10/05/19 12:34,"955 West St, Dallas, TX 75001" +278681,ThinkPad Laptop,1,999.99,10/19/19 15:51,"515 South St, San Francisco, CA 94016" +278682,Bose SoundSport Headphones,1,99.99,10/10/19 13:25,"319 Madison St, Boston, MA 02215" +278683,27in FHD Monitor,1,149.99,10/29/19 18:53,"175 Dogwood St, Seattle, WA 98101" +278683,Apple Airpods Headphones,1,150,10/29/19 18:53,"175 Dogwood St, Seattle, WA 98101" +278684,Wired Headphones,1,11.99,10/08/19 14:44,"608 13th St, Atlanta, GA 30301" +278685,USB-C Charging Cable,1,11.95,10/11/19 14:20,"988 Church St, Austin, TX 73301" +278686,Lightning Charging Cable,1,14.95,10/30/19 23:03,"340 Lake St, San Francisco, CA 94016" +278687,iPhone,1,700,10/13/19 11:30,"766 Lakeview St, Dallas, TX 75001" +278688,AAA Batteries (4-pack),1,2.99,10/17/19 19:47,"293 8th St, Seattle, WA 98101" +278689,iPhone,1,700,10/12/19 20:41,"546 West St, Boston, MA 02215" +278690,AAA Batteries (4-pack),1,2.99,10/07/19 13:03,"508 Jefferson St, San Francisco, CA 94016" +278691,AA Batteries (4-pack),1,3.84,10/08/19 16:25,"719 Madison St, Portland, ME 04101" +278692,AA Batteries (4-pack),1,3.84,10/21/19 16:01,"440 Main St, Boston, MA 02215" +278692,Google Phone,1,600,10/21/19 16:01,"440 Main St, Boston, MA 02215" +278693,AA Batteries (4-pack),3,3.84,10/07/19 00:31,"241 13th St, Los Angeles, CA 90001" +278694,ThinkPad Laptop,1,999.99,10/16/19 05:28,"295 11th St, Portland, OR 97035" +278695,Apple Airpods Headphones,1,150,10/31/19 12:48,"889 Highland St, San Francisco, CA 94016" +278696,AAA Batteries (4-pack),1,2.99,10/31/19 23:28,"945 Cherry St, Portland, OR 97035" +278697,ThinkPad Laptop,1,999.99,10/02/19 20:21,"255 5th St, San Francisco, CA 94016" +278698,34in Ultrawide Monitor,1,379.99,10/23/19 11:40,"391 Maple St, New York City, NY 10001" +278699,AA Batteries (4-pack),3,3.84,10/20/19 12:31,"929 Johnson St, San Francisco, CA 94016" +278700,Lightning Charging Cable,1,14.95,10/03/19 18:45,"218 Wilson St, San Francisco, CA 94016" +278701,Lightning Charging Cable,1,14.95,10/08/19 16:24,"495 Washington St, Los Angeles, CA 90001" +278702,Apple Airpods Headphones,1,150,10/27/19 12:02,"31 11th St, Boston, MA 02215" +278703,Apple Airpods Headphones,1,150,10/19/19 18:58,"227 14th St, New York City, NY 10001" +278704,Wired Headphones,1,11.99,10/26/19 11:52,"261 9th St, San Francisco, CA 94016" +278705,USB-C Charging Cable,1,11.95,10/13/19 12:40,"554 Maple St, Los Angeles, CA 90001" +278706,iPhone,1,700,10/12/19 10:56,"280 Jackson St, Los Angeles, CA 90001" +278707,AAA Batteries (4-pack),5,2.99,10/29/19 18:43,"62 13th St, Los Angeles, CA 90001" +278708,Bose SoundSport Headphones,1,99.99,10/02/19 21:22,"117 10th St, Los Angeles, CA 90001" +278709,AAA Batteries (4-pack),1,2.99,10/25/19 23:24,"110 Lincoln St, Dallas, TX 75001" +278710,AAA Batteries (4-pack),1,2.99,10/16/19 16:38,"285 Lake St, Los Angeles, CA 90001" +278711,34in Ultrawide Monitor,1,379.99,10/11/19 20:19,"140 8th St, Dallas, TX 75001" +278712,Wired Headphones,1,11.99,10/02/19 14:51,"464 Jefferson St, San Francisco, CA 94016" +278713,Flatscreen TV,1,300,10/15/19 10:14,"73 8th St, Portland, OR 97035" +278714,iPhone,1,700,10/31/19 20:09,"80 Park St, New York City, NY 10001" +278715,USB-C Charging Cable,1,11.95,10/03/19 03:49,"807 Wilson St, Seattle, WA 98101" +278716,AAA Batteries (4-pack),2,2.99,10/20/19 11:50,"681 12th St, San Francisco, CA 94016" +278717,AA Batteries (4-pack),5,3.84,10/28/19 14:16,"878 1st St, Los Angeles, CA 90001" +278718,Macbook Pro Laptop,1,1700,10/01/19 16:41,"304 Wilson St, Los Angeles, CA 90001" +278719,AAA Batteries (4-pack),1,2.99,10/13/19 13:03,"199 Lincoln St, Los Angeles, CA 90001" +278720,AAA Batteries (4-pack),1,2.99,10/12/19 12:53,"952 6th St, Austin, TX 73301" +278721,Lightning Charging Cable,1,14.95,10/08/19 22:24,"804 Church St, Los Angeles, CA 90001" +278722,AAA Batteries (4-pack),1,2.99,10/01/19 14:26,"781 West St, Seattle, WA 98101" +278723,USB-C Charging Cable,2,11.95,10/05/19 16:39,"828 5th St, Seattle, WA 98101" +278724,27in 4K Gaming Monitor,1,389.99,10/18/19 08:23,"524 Meadow St, Portland, OR 97035" +278725,AA Batteries (4-pack),1,3.84,10/03/19 14:09,"380 6th St, Portland, OR 97035" +278726,AA Batteries (4-pack),1,3.84,10/14/19 01:54,"672 Lake St, Los Angeles, CA 90001" +278727,AA Batteries (4-pack),1,3.84,10/24/19 10:25,"422 Highland St, New York City, NY 10001" +278728,AAA Batteries (4-pack),1,2.99,10/17/19 21:27,"185 Lakeview St, San Francisco, CA 94016" +278729,Apple Airpods Headphones,1,150,10/25/19 02:09,"210 Dogwood St, San Francisco, CA 94016" +278730,20in Monitor,1,109.99,10/15/19 16:10,"426 North St, San Francisco, CA 94016" +278731,AA Batteries (4-pack),1,3.84,10/22/19 14:34,"632 Maple St, San Francisco, CA 94016" +278732,USB-C Charging Cable,2,11.95,10/15/19 11:23,"921 Johnson St, Portland, OR 97035" +278733,AAA Batteries (4-pack),1,2.99,10/30/19 16:57,"814 West St, New York City, NY 10001" +278734,Lightning Charging Cable,1,14.95,10/20/19 09:35,"652 11th St, Seattle, WA 98101" +278735,Google Phone,1,600,10/20/19 16:12,"682 Cedar St, Los Angeles, CA 90001" +278736,AA Batteries (4-pack),2,3.84,10/13/19 00:56,"969 Washington St, New York City, NY 10001" +278737,AAA Batteries (4-pack),2,2.99,10/18/19 15:56,"643 11th St, Dallas, TX 75001" +278738,27in FHD Monitor,1,149.99,10/14/19 21:01,"317 1st St, Boston, MA 02215" +278739,USB-C Charging Cable,2,11.95,10/06/19 11:42,"730 Cedar St, Seattle, WA 98101" +278740,Lightning Charging Cable,1,14.95,10/14/19 12:07,"769 Ridge St, New York City, NY 10001" +278741,Wired Headphones,1,11.99,10/18/19 11:02,"972 7th St, San Francisco, CA 94016" +278742,Lightning Charging Cable,1,14.95,10/12/19 21:39,"397 Cherry St, San Francisco, CA 94016" +278743,Wired Headphones,1,11.99,10/19/19 21:47,"251 Lakeview St, San Francisco, CA 94016" +278744,27in 4K Gaming Monitor,1,389.99,10/03/19 19:33,"451 Dogwood St, Dallas, TX 75001" +278745,ThinkPad Laptop,1,999.99,10/01/19 12:25,"713 Dogwood St, Los Angeles, CA 90001" +278746,Flatscreen TV,1,300,10/09/19 22:05,"555 Cedar St, Dallas, TX 75001" +278747,AAA Batteries (4-pack),1,2.99,10/16/19 12:41,"731 Meadow St, Dallas, TX 75001" +278748,20in Monitor,1,109.99,10/04/19 12:07,"861 9th St, San Francisco, CA 94016" +278749,Lightning Charging Cable,1,14.95,10/08/19 20:23,"789 Main St, Atlanta, GA 30301" +278750,34in Ultrawide Monitor,1,379.99,10/18/19 17:45,"14 North St, San Francisco, CA 94016" +278751,Bose SoundSport Headphones,1,99.99,10/08/19 11:18,"569 7th St, San Francisco, CA 94016" +278752,Lightning Charging Cable,1,14.95,10/16/19 12:36,"130 Forest St, New York City, NY 10001" +278753,AA Batteries (4-pack),1,3.84,10/04/19 01:32,"624 Spruce St, New York City, NY 10001" +278754,Wired Headphones,1,11.99,10/13/19 06:21,"770 9th St, San Francisco, CA 94016" +278755,AAA Batteries (4-pack),1,2.99,10/14/19 13:39,"608 River St, Dallas, TX 75001" +278756,USB-C Charging Cable,1,11.95,10/30/19 13:00,"409 Ridge St, Seattle, WA 98101" +278757,34in Ultrawide Monitor,1,379.99,10/26/19 16:52,"312 10th St, Los Angeles, CA 90001" +278758,AAA Batteries (4-pack),1,2.99,10/04/19 12:10,"655 9th St, Atlanta, GA 30301" +278759,Vareebadd Phone,1,400,10/01/19 17:01,"528 7th St, Seattle, WA 98101" +278760,ThinkPad Laptop,1,999.99,10/03/19 16:50,"260 10th St, Atlanta, GA 30301" +278761,Flatscreen TV,1,300,10/21/19 20:06,"11 River St, New York City, NY 10001" +278762,USB-C Charging Cable,1,11.95,10/06/19 15:50,"629 Lincoln St, Dallas, TX 75001" +278763,AA Batteries (4-pack),1,3.84,10/27/19 17:42,"720 2nd St, Portland, OR 97035" +278764,Lightning Charging Cable,1,14.95,10/02/19 18:36,"210 14th St, Los Angeles, CA 90001" +278765,Wired Headphones,1,11.99,10/17/19 10:23,"383 River St, San Francisco, CA 94016" +278766,USB-C Charging Cable,1,11.95,10/01/19 21:40,"109 Adams St, Los Angeles, CA 90001" +278767,Wired Headphones,1,11.99,10/19/19 17:18,"223 Lincoln St, San Francisco, CA 94016" +278768,USB-C Charging Cable,1,11.95,10/15/19 21:37,"281 Elm St, New York City, NY 10001" +278769,Bose SoundSport Headphones,1,99.99,10/31/19 21:11,"768 7th St, Seattle, WA 98101" +278770,AA Batteries (4-pack),1,3.84,10/04/19 13:19,"636 Ridge St, Los Angeles, CA 90001" +278771,Google Phone,1,600,10/25/19 08:43,"907 2nd St, San Francisco, CA 94016" +278772,Flatscreen TV,1,300,10/05/19 11:20,"813 Jefferson St, Atlanta, GA 30301" +278773,AA Batteries (4-pack),1,3.84,10/18/19 21:13,"967 Center St, New York City, NY 10001" +278774,AA Batteries (4-pack),1,3.84,10/20/19 00:40,"331 Willow St, Portland, OR 97035" +278775,Apple Airpods Headphones,1,150,10/06/19 17:32,"136 Adams St, Austin, TX 73301" +278776,Wired Headphones,2,11.99,10/21/19 07:00,"447 Church St, Seattle, WA 98101" +278777,Wired Headphones,1,11.99,10/11/19 08:25,"421 2nd St, Atlanta, GA 30301" +278778,34in Ultrawide Monitor,1,379.99,10/28/19 17:34,"378 6th St, Los Angeles, CA 90001" +278779,AA Batteries (4-pack),1,3.84,10/14/19 12:15,"852 Lakeview St, New York City, NY 10001" +278780,27in FHD Monitor,1,149.99,10/31/19 21:13,"619 Hill St, Los Angeles, CA 90001" +278781,27in 4K Gaming Monitor,1,389.99,10/04/19 21:29,"758 Center St, Boston, MA 02215" +278782,Macbook Pro Laptop,1,1700,10/22/19 15:26,"538 4th St, Boston, MA 02215" +278783,iPhone,1,700,10/14/19 15:49,"192 Elm St, New York City, NY 10001" +278784,20in Monitor,1,109.99,10/16/19 05:53,"534 Hill St, New York City, NY 10001" +278785,iPhone,1,700,10/20/19 15:21,"397 Forest St, Los Angeles, CA 90001" +278786,Apple Airpods Headphones,1,150,10/09/19 20:05,"247 North St, Austin, TX 73301" +278787,AAA Batteries (4-pack),3,2.99,10/26/19 17:15,"259 Pine St, Atlanta, GA 30301" +278788,AA Batteries (4-pack),1,3.84,10/05/19 15:12,"66 2nd St, Los Angeles, CA 90001" +278789,34in Ultrawide Monitor,1,379.99,10/09/19 19:28,"937 13th St, Austin, TX 73301" +278790,Lightning Charging Cable,1,14.95,10/31/19 17:40,"510 Jackson St, Seattle, WA 98101" +278791,Macbook Pro Laptop,1,1700,10/10/19 15:09,"557 8th St, Dallas, TX 75001" +278792,Apple Airpods Headphones,1,150,10/26/19 23:02,"893 Washington St, New York City, NY 10001" +278793,USB-C Charging Cable,1,11.95,10/22/19 08:52,"277 5th St, Los Angeles, CA 90001" +278794,Bose SoundSport Headphones,1,99.99,10/25/19 18:33,"301 Main St, Portland, OR 97035" +278795,USB-C Charging Cable,1,11.95,10/10/19 13:34,"894 Willow St, Seattle, WA 98101" +278796,AAA Batteries (4-pack),2,2.99,10/20/19 23:21,"680 South St, New York City, NY 10001" +278797,USB-C Charging Cable,1,11.95,10/23/19 15:01,"312 Maple St, Portland, OR 97035" +278798,Macbook Pro Laptop,1,1700,10/21/19 07:50,"330 Sunset St, San Francisco, CA 94016" +278799,Lightning Charging Cable,1,14.95,10/27/19 14:36,"614 Johnson St, New York City, NY 10001" +278800,34in Ultrawide Monitor,1,379.99,10/21/19 11:11,"432 10th St, San Francisco, CA 94016" +278801,AAA Batteries (4-pack),4,2.99,10/27/19 19:38,"540 Dogwood St, Portland, OR 97035" +278802,Lightning Charging Cable,1,14.95,10/02/19 18:07,"254 Sunset St, Portland, ME 04101" +278803,ThinkPad Laptop,1,999.99,10/16/19 13:18,"965 Cherry St, Los Angeles, CA 90001" +278804,AA Batteries (4-pack),1,3.84,10/08/19 17:19,"413 Lake St, Dallas, TX 75001" +278805,USB-C Charging Cable,1,11.95,10/04/19 10:13,"609 13th St, San Francisco, CA 94016" +278806,Bose SoundSport Headphones,1,99.99,10/13/19 10:50,"492 Highland St, Portland, ME 04101" +278807,Wired Headphones,1,11.99,10/15/19 17:09,"189 West St, San Francisco, CA 94016" +278808,Wired Headphones,1,11.99,10/20/19 08:36,"231 South St, Seattle, WA 98101" +278809,USB-C Charging Cable,1,11.95,10/28/19 12:54,"23 Dogwood St, Seattle, WA 98101" +278810,USB-C Charging Cable,1,11.95,10/23/19 14:28,"590 Willow St, Los Angeles, CA 90001" +278811,AAA Batteries (4-pack),1,2.99,10/28/19 15:09,"627 6th St, San Francisco, CA 94016" +278812,Vareebadd Phone,1,400,10/01/19 09:43,"970 8th St, Seattle, WA 98101" +278812,USB-C Charging Cable,2,11.95,10/01/19 09:43,"970 8th St, Seattle, WA 98101" +278812,Lightning Charging Cable,1,14.95,10/01/19 09:43,"970 8th St, Seattle, WA 98101" +278813,Flatscreen TV,1,300,10/03/19 21:21,"259 Highland St, Dallas, TX 75001" +278814,Wired Headphones,1,11.99,10/22/19 13:25,"502 4th St, Atlanta, GA 30301" +278815,Lightning Charging Cable,1,14.95,10/07/19 15:42,"267 Lake St, Dallas, TX 75001" +278816,Flatscreen TV,1,300,10/30/19 22:57,"720 9th St, Seattle, WA 98101" +278817,USB-C Charging Cable,1,11.95,10/04/19 12:35,"787 Hill St, San Francisco, CA 94016" +278818,ThinkPad Laptop,1,999.99,10/08/19 12:15,"410 Lakeview St, Los Angeles, CA 90001" +278819,Lightning Charging Cable,1,14.95,10/27/19 00:39,"552 2nd St, Los Angeles, CA 90001" +278820,Lightning Charging Cable,1,14.95,10/30/19 16:12,"25 Park St, Austin, TX 73301" +278821,Flatscreen TV,1,300,10/23/19 12:23,"852 River St, Atlanta, GA 30301" +278822,AAA Batteries (4-pack),3,2.99,10/11/19 14:20,"499 2nd St, New York City, NY 10001" +278823,ThinkPad Laptop,1,999.99,10/02/19 18:41,"273 Hill St, New York City, NY 10001" +278824,Lightning Charging Cable,1,14.95,10/05/19 15:59,"850 Center St, San Francisco, CA 94016" +278825,27in FHD Monitor,1,149.99,10/09/19 12:51,"634 Jefferson St, Boston, MA 02215" +278826,Lightning Charging Cable,1,14.95,10/07/19 00:37,"71 Park St, Austin, TX 73301" +278827,AA Batteries (4-pack),2,3.84,10/12/19 18:38,"9 Forest St, Portland, ME 04101" +278828,USB-C Charging Cable,1,11.95,10/26/19 23:29,"774 Walnut St, Dallas, TX 75001" +278829,AA Batteries (4-pack),1,3.84,10/23/19 06:20,"484 1st St, Los Angeles, CA 90001" +278830,AAA Batteries (4-pack),1,2.99,10/16/19 17:26,"818 5th St, Boston, MA 02215" +278831,ThinkPad Laptop,1,999.99,10/15/19 14:16,"894 Washington St, New York City, NY 10001" +278832,27in FHD Monitor,1,149.99,10/16/19 23:17,"880 Sunset St, Los Angeles, CA 90001" +278833,USB-C Charging Cable,1,11.95,10/03/19 12:02,"860 West St, Seattle, WA 98101" +278834,AA Batteries (4-pack),1,3.84,10/07/19 14:15,"331 Willow St, San Francisco, CA 94016" +278835,34in Ultrawide Monitor,1,379.99,10/25/19 10:24,"648 Cedar St, New York City, NY 10001" +278836,Flatscreen TV,1,300,10/17/19 21:50,"900 Center St, Atlanta, GA 30301" +278837,34in Ultrawide Monitor,1,379.99,10/07/19 13:03,"205 Jefferson St, Dallas, TX 75001" +278838,USB-C Charging Cable,1,11.95,10/15/19 16:04,"416 Madison St, Atlanta, GA 30301" +278839,AA Batteries (4-pack),1,3.84,10/11/19 19:23,"562 Sunset St, Dallas, TX 75001" +278840,Bose SoundSport Headphones,1,99.99,10/19/19 15:39,"287 Ridge St, Los Angeles, CA 90001" +278841,Wired Headphones,1,11.99,10/16/19 13:38,"651 Madison St, San Francisco, CA 94016" +278842,Flatscreen TV,1,300,10/15/19 14:04,"214 1st St, San Francisco, CA 94016" +278843,Google Phone,1,600,10/10/19 12:27,"838 Ridge St, San Francisco, CA 94016" +278843,USB-C Charging Cable,1,11.95,10/10/19 12:27,"838 Ridge St, San Francisco, CA 94016" +278844,AA Batteries (4-pack),2,3.84,10/06/19 18:12,"16 River St, Los Angeles, CA 90001" +278845,Wired Headphones,1,11.99,10/31/19 23:36,"131 Hickory St, Atlanta, GA 30301" +278845,Macbook Pro Laptop,1,1700,10/31/19 23:36,"131 Hickory St, Atlanta, GA 30301" +278846,Apple Airpods Headphones,1,150,10/25/19 18:40,"789 Dogwood St, Boston, MA 02215" +278847,Bose SoundSport Headphones,1,99.99,10/06/19 18:19,"395 Meadow St, Atlanta, GA 30301" +278848,Wired Headphones,1,11.99,10/09/19 22:24,"563 14th St, Los Angeles, CA 90001" +278849,Wired Headphones,2,11.99,10/28/19 15:19,"728 7th St, Portland, ME 04101" +278850,Apple Airpods Headphones,1,150,10/30/19 22:00,"89 Hickory St, Austin, TX 73301" +278851,Apple Airpods Headphones,1,150,10/30/19 20:10,"304 Cedar St, New York City, NY 10001" +278852,ThinkPad Laptop,1,999.99,10/07/19 11:34,"500 Madison St, Boston, MA 02215" +278853,USB-C Charging Cable,1,11.95,10/05/19 15:30,"493 Pine St, New York City, NY 10001" +278854,AA Batteries (4-pack),1,3.84,10/27/19 01:30,"293 Hill St, Seattle, WA 98101" +278855,USB-C Charging Cable,1,11.95,10/28/19 12:10,"129 10th St, Austin, TX 73301" +278856,AAA Batteries (4-pack),1,2.99,10/05/19 20:34,"80 2nd St, Atlanta, GA 30301" +278857,USB-C Charging Cable,2,11.95,10/21/19 23:31,"506 Willow St, San Francisco, CA 94016" +278858,Lightning Charging Cable,1,14.95,10/30/19 10:28,"712 7th St, Seattle, WA 98101" +278859,Lightning Charging Cable,1,14.95,10/15/19 19:18,"835 South St, Seattle, WA 98101" +278860,Wired Headphones,1,11.99,10/13/19 12:58,"829 Elm St, Dallas, TX 75001" +278861,Apple Airpods Headphones,1,150,10/23/19 10:30,"248 11th St, Atlanta, GA 30301" +278862,Apple Airpods Headphones,1,150,10/14/19 00:55,"183 Dogwood St, New York City, NY 10001" +278863,Flatscreen TV,1,300,10/09/19 11:41,"278 Lake St, Boston, MA 02215" +278864,Apple Airpods Headphones,2,150,10/17/19 19:22,"197 Highland St, Seattle, WA 98101" +278865,Lightning Charging Cable,1,14.95,10/08/19 11:54,"73 Spruce St, Boston, MA 02215" +278866,USB-C Charging Cable,1,11.95,10/16/19 17:18,"60 9th St, San Francisco, CA 94016" +278867,Apple Airpods Headphones,1,150,10/05/19 05:15,"224 Maple St, New York City, NY 10001" +278868,Bose SoundSport Headphones,1,99.99,10/31/19 09:54,"29 Madison St, San Francisco, CA 94016" +278869,Wired Headphones,1,11.99,10/18/19 02:09,"570 Wilson St, New York City, NY 10001" +278870,Apple Airpods Headphones,1,150,10/01/19 16:13,"628 South St, San Francisco, CA 94016" +278871,Apple Airpods Headphones,2,150,10/04/19 21:45,"546 Washington St, San Francisco, CA 94016" +278872,AA Batteries (4-pack),3,3.84,10/23/19 08:13,"272 Cherry St, San Francisco, CA 94016" +278873,34in Ultrawide Monitor,1,379.99,10/12/19 09:46,"36 Johnson St, San Francisco, CA 94016" +278874,ThinkPad Laptop,1,999.99,10/10/19 00:02,"199 10th St, Boston, MA 02215" +278875,iPhone,1,700,10/02/19 21:33,"934 Elm St, Boston, MA 02215" +278876,Flatscreen TV,1,300,10/04/19 11:07,"447 Maple St, San Francisco, CA 94016" +278877,Wired Headphones,1,11.99,10/27/19 21:30,"605 Jefferson St, Atlanta, GA 30301" +278878,Wired Headphones,1,11.99,10/17/19 13:32,"305 Hill St, New York City, NY 10001" +278879,AA Batteries (4-pack),1,3.84,10/06/19 16:50,"399 Forest St, Los Angeles, CA 90001" +278880,Apple Airpods Headphones,1,150,10/23/19 22:14,"376 Church St, Boston, MA 02215" +278881,Wired Headphones,1,11.99,10/09/19 13:56,"602 Lakeview St, New York City, NY 10001" +278882,AA Batteries (4-pack),1,3.84,10/20/19 08:17,"632 Hickory St, Boston, MA 02215" +278882,Lightning Charging Cable,1,14.95,10/20/19 08:17,"632 Hickory St, Boston, MA 02215" +278883,Google Phone,1,600,10/25/19 08:57,"679 Pine St, San Francisco, CA 94016" +278884,Lightning Charging Cable,1,14.95,10/30/19 18:50,"485 Spruce St, Portland, OR 97035" +278885,Wired Headphones,1,11.99,10/03/19 11:49,"335 Hickory St, Boston, MA 02215" +278886,Apple Airpods Headphones,1,150,10/18/19 17:59,"282 12th St, San Francisco, CA 94016" +278887,Lightning Charging Cable,1,14.95,10/13/19 19:12,"962 7th St, Dallas, TX 75001" +278887,AAA Batteries (4-pack),2,2.99,10/13/19 19:12,"962 7th St, Dallas, TX 75001" +278888,20in Monitor,1,109.99,10/21/19 19:10,"905 14th St, Los Angeles, CA 90001" +278889,Lightning Charging Cable,1,14.95,10/08/19 21:41,"645 Jackson St, San Francisco, CA 94016" +278890,34in Ultrawide Monitor,1,379.99,10/17/19 15:37,"385 Hill St, San Francisco, CA 94016" +278891,AAA Batteries (4-pack),1,2.99,10/05/19 18:52,"294 Washington St, Los Angeles, CA 90001" +278892,20in Monitor,1,109.99,10/13/19 17:06,"305 Hill St, Atlanta, GA 30301" +278893,AA Batteries (4-pack),1,3.84,10/19/19 19:21,"919 Sunset St, Boston, MA 02215" +278894,AAA Batteries (4-pack),1,2.99,10/24/19 17:28,"960 12th St, San Francisco, CA 94016" +278895,Macbook Pro Laptop,1,1700,10/06/19 14:50,"548 Willow St, Atlanta, GA 30301" +278896,27in 4K Gaming Monitor,1,389.99,10/12/19 18:50,"479 Jefferson St, Atlanta, GA 30301" +278897,Bose SoundSport Headphones,1,99.99,10/08/19 12:55,"909 Sunset St, Los Angeles, CA 90001" +278898,Apple Airpods Headphones,1,150,10/29/19 14:59,"416 Sunset St, Dallas, TX 75001" +278899,AA Batteries (4-pack),1,3.84,10/23/19 10:25,"181 Meadow St, Seattle, WA 98101" +278900,Bose SoundSport Headphones,1,99.99,10/09/19 21:05,"748 Madison St, New York City, NY 10001" +278901,Bose SoundSport Headphones,1,99.99,10/28/19 11:59,"704 Lincoln St, Austin, TX 73301" +278902,AA Batteries (4-pack),1,3.84,10/23/19 05:57,"723 Highland St, San Francisco, CA 94016" +278903,ThinkPad Laptop,1,999.99,10/13/19 07:04,"55 Highland St, San Francisco, CA 94016" +278904,ThinkPad Laptop,1,999.99,10/09/19 21:23,"843 2nd St, Dallas, TX 75001" +278905,27in FHD Monitor,1,149.99,10/26/19 21:48,"231 7th St, Boston, MA 02215" +278906,Apple Airpods Headphones,1,150,10/02/19 17:34,"688 Main St, Dallas, TX 75001" +278907,Wired Headphones,1,11.99,10/05/19 11:26,"234 6th St, Dallas, TX 75001" +278908,AAA Batteries (4-pack),2,2.99,10/19/19 20:22,"780 12th St, Seattle, WA 98101" +278909,iPhone,1,700,10/01/19 18:01,"40 Dogwood St, San Francisco, CA 94016" +278910,iPhone,1,700,10/12/19 18:25,"496 9th St, San Francisco, CA 94016" +278911,Apple Airpods Headphones,1,150,10/07/19 15:53,"767 West St, Los Angeles, CA 90001" +278912,ThinkPad Laptop,1,999.99,10/10/19 15:24,"308 Dogwood St, Dallas, TX 75001" +278913,34in Ultrawide Monitor,1,379.99,10/17/19 16:15,"713 Adams St, San Francisco, CA 94016" +278914,USB-C Charging Cable,1,11.95,10/29/19 06:23,"30 5th St, New York City, NY 10001" +278915,Lightning Charging Cable,1,14.95,10/18/19 17:38,"639 12th St, San Francisco, CA 94016" +278916,Lightning Charging Cable,1,14.95,10/13/19 22:15,"300 Cedar St, Boston, MA 02215" +278917,Wired Headphones,1,11.99,10/17/19 12:35,"757 Sunset St, New York City, NY 10001" +278918,Apple Airpods Headphones,1,150,10/06/19 12:08,"300 Meadow St, Atlanta, GA 30301" +278919,ThinkPad Laptop,1,999.99,10/01/19 05:43,"712 Jefferson St, New York City, NY 10001" +278920,AA Batteries (4-pack),1,3.84,10/18/19 12:49,"156 South St, Dallas, TX 75001" +278921,USB-C Charging Cable,1,11.95,10/17/19 22:18,"711 7th St, Portland, OR 97035" +278922,27in 4K Gaming Monitor,1,389.99,10/25/19 12:57,"698 Willow St, San Francisco, CA 94016" +278923,Bose SoundSport Headphones,1,99.99,10/01/19 10:19,"196 Lincoln St, Dallas, TX 75001" +278923,Apple Airpods Headphones,1,150,10/01/19 10:19,"196 Lincoln St, Dallas, TX 75001" +278924,USB-C Charging Cable,1,11.95,10/28/19 17:06,"536 West St, San Francisco, CA 94016" +278925,ThinkPad Laptop,1,999.99,10/04/19 23:20,"368 6th St, Atlanta, GA 30301" +278926,Lightning Charging Cable,1,14.95,10/16/19 22:12,"631 Sunset St, Seattle, WA 98101" +278927,27in FHD Monitor,1,149.99,10/25/19 22:05,"131 Hill St, Portland, ME 04101" +278928,USB-C Charging Cable,1,11.95,10/17/19 12:58,"943 2nd St, Los Angeles, CA 90001" +278929,Wired Headphones,1,11.99,10/28/19 10:15,"229 Hickory St, San Francisco, CA 94016" +278930,USB-C Charging Cable,1,11.95,10/08/19 00:13,"386 Park St, San Francisco, CA 94016" +278931,Lightning Charging Cable,1,14.95,10/17/19 18:26,"722 12th St, Atlanta, GA 30301" +278932,AAA Batteries (4-pack),1,2.99,10/21/19 11:51,"701 4th St, Austin, TX 73301" +278933,AAA Batteries (4-pack),2,2.99,10/13/19 19:30,"400 12th St, San Francisco, CA 94016" +278934,27in 4K Gaming Monitor,1,389.99,10/31/19 09:08,"732 Walnut St, New York City, NY 10001" +278935,Macbook Pro Laptop,1,1700,10/16/19 21:28,"345 Pine St, Los Angeles, CA 90001" +278936,USB-C Charging Cable,1,11.95,10/16/19 21:18,"404 Walnut St, Seattle, WA 98101" +278937,USB-C Charging Cable,1,11.95,10/20/19 22:17,"323 6th St, New York City, NY 10001" +278938,Apple Airpods Headphones,1,150,10/06/19 20:49,"710 Lakeview St, San Francisco, CA 94016" +278939,Apple Airpods Headphones,1,150,10/04/19 19:21,"256 South St, Dallas, TX 75001" +278940,Bose SoundSport Headphones,1,99.99,10/02/19 14:16,"299 10th St, Portland, OR 97035" +278941,AA Batteries (4-pack),1,3.84,10/15/19 20:34,"363 12th St, Los Angeles, CA 90001" +278942,Wired Headphones,1,11.99,10/05/19 10:53,"107 Forest St, San Francisco, CA 94016" +278943,Wired Headphones,2,11.99,10/05/19 09:24,"993 Willow St, San Francisco, CA 94016" +278944,Lightning Charging Cable,1,14.95,10/20/19 20:28,"224 Johnson St, Austin, TX 73301" +278945,Macbook Pro Laptop,1,1700,10/20/19 12:04,"902 Jackson St, New York City, NY 10001" +278946,Bose SoundSport Headphones,1,99.99,10/03/19 17:01,"850 Cherry St, Atlanta, GA 30301" +278947,Wired Headphones,1,11.99,10/08/19 10:36,"714 6th St, New York City, NY 10001" +278948,27in 4K Gaming Monitor,1,389.99,10/29/19 10:51,"461 Madison St, Atlanta, GA 30301" +278949,AAA Batteries (4-pack),1,2.99,10/15/19 17:37,"990 West St, Seattle, WA 98101" +278950,USB-C Charging Cable,2,11.95,10/01/19 11:42,"30 13th St, New York City, NY 10001" +278951,AA Batteries (4-pack),2,3.84,10/14/19 14:13,"764 Ridge St, Los Angeles, CA 90001" +278952,Google Phone,1,600,10/06/19 15:46,"358 Meadow St, Dallas, TX 75001" +278953,27in FHD Monitor,1,149.99,10/26/19 16:04,"260 Cherry St, San Francisco, CA 94016" +278954,Bose SoundSport Headphones,1,99.99,10/17/19 08:02,"389 Wilson St, San Francisco, CA 94016" +278955,Bose SoundSport Headphones,1,99.99,10/04/19 01:45,"548 Pine St, San Francisco, CA 94016" +278956,Wired Headphones,1,11.99,10/03/19 16:23,"763 Ridge St, San Francisco, CA 94016" +278957,AA Batteries (4-pack),1,3.84,10/26/19 17:01,"218 Park St, Dallas, TX 75001" +278958,27in FHD Monitor,1,149.99,10/03/19 15:35,"727 Jefferson St, San Francisco, CA 94016" +278959,27in FHD Monitor,1,149.99,10/21/19 20:48,"319 7th St, Los Angeles, CA 90001" +278960,Apple Airpods Headphones,1,150,10/15/19 11:45,"55 Highland St, Dallas, TX 75001" +278961,Wired Headphones,1,11.99,10/22/19 20:21,"812 4th St, San Francisco, CA 94016" +278962,27in 4K Gaming Monitor,1,389.99,10/15/19 20:44,"98 13th St, New York City, NY 10001" +278963,Lightning Charging Cable,1,14.95,10/31/19 12:21,"413 Meadow St, San Francisco, CA 94016" +278964,AAA Batteries (4-pack),1,2.99,10/16/19 11:24,"880 Jefferson St, Los Angeles, CA 90001" +278965,27in 4K Gaming Monitor,1,389.99,10/21/19 11:54,"77 Main St, San Francisco, CA 94016" +278966,Bose SoundSport Headphones,1,99.99,10/26/19 13:24,"744 Meadow St, Dallas, TX 75001" +278967,Bose SoundSport Headphones,1,99.99,10/27/19 16:25,"201 Sunset St, San Francisco, CA 94016" +278968,Bose SoundSport Headphones,1,99.99,10/19/19 19:21,"733 Park St, Seattle, WA 98101" +278969,USB-C Charging Cable,1,11.95,10/28/19 15:52,"72 Pine St, San Francisco, CA 94016" +278970,Wired Headphones,2,11.99,10/13/19 20:30,"491 Meadow St, San Francisco, CA 94016" +278971,Macbook Pro Laptop,1,1700,10/14/19 20:24,"724 Cherry St, San Francisco, CA 94016" +278972,Wired Headphones,1,11.99,10/14/19 14:41,"547 Dogwood St, Seattle, WA 98101" +278973,Lightning Charging Cable,1,14.95,10/26/19 21:14,"716 Lake St, Dallas, TX 75001" +278974,AA Batteries (4-pack),1,3.84,10/19/19 10:52,"61 Lincoln St, Dallas, TX 75001" +278975,Macbook Pro Laptop,1,1700,10/17/19 18:34,"275 Meadow St, San Francisco, CA 94016" +278976,AAA Batteries (4-pack),1,2.99,10/22/19 20:09,"597 Lakeview St, San Francisco, CA 94016" +278977,Bose SoundSport Headphones,1,99.99,10/13/19 14:27,"314 Maple St, Seattle, WA 98101" +278978,AAA Batteries (4-pack),1,2.99,10/27/19 11:24,"385 12th St, Seattle, WA 98101" +278979,AA Batteries (4-pack),1,3.84,10/26/19 10:09,"636 8th St, San Francisco, CA 94016" +278980,27in 4K Gaming Monitor,1,389.99,10/23/19 12:57,"40 14th St, San Francisco, CA 94016" +278981,USB-C Charging Cable,1,11.95,10/28/19 10:29,"958 14th St, New York City, NY 10001" +278982,Wired Headphones,1,11.99,10/08/19 00:34,"271 Madison St, New York City, NY 10001" +278983,Wired Headphones,1,11.99,10/30/19 18:11,"682 12th St, Austin, TX 73301" +278984,Lightning Charging Cable,1,14.95,10/05/19 11:30,"178 Cedar St, New York City, NY 10001" +278985,27in 4K Gaming Monitor,1,389.99,10/20/19 18:03,"589 Lincoln St, Atlanta, GA 30301" +278986,34in Ultrawide Monitor,1,379.99,10/26/19 11:03,"116 Washington St, Los Angeles, CA 90001" +278987,AAA Batteries (4-pack),6,2.99,10/27/19 23:06,"109 Dogwood St, Seattle, WA 98101" +278988,USB-C Charging Cable,1,11.95,10/28/19 12:59,"694 North St, Atlanta, GA 30301" +278989,Bose SoundSport Headphones,1,99.99,10/12/19 18:45,"63 Johnson St, Boston, MA 02215" +278990,Wired Headphones,1,11.99,10/04/19 23:30,"269 14th St, Dallas, TX 75001" +278991,27in FHD Monitor,1,149.99,10/22/19 09:01,"897 6th St, New York City, NY 10001" +278992,Apple Airpods Headphones,1,150,10/06/19 18:38,"19 Hill St, New York City, NY 10001" +278993,Lightning Charging Cable,1,14.95,10/08/19 21:47,"257 Spruce St, San Francisco, CA 94016" +278994,AA Batteries (4-pack),1,3.84,10/11/19 14:51,"407 Hill St, Austin, TX 73301" +278995,Apple Airpods Headphones,1,150,10/31/19 01:24,"756 7th St, Los Angeles, CA 90001" +278996,27in 4K Gaming Monitor,1,389.99,10/15/19 19:27,"568 Chestnut St, Seattle, WA 98101" +278997,USB-C Charging Cable,1,11.95,10/09/19 18:40,"559 Washington St, San Francisco, CA 94016" +278998,20in Monitor,1,109.99,10/19/19 09:38,"481 River St, San Francisco, CA 94016" +278999,Lightning Charging Cable,1,14.95,10/02/19 17:36,"258 Adams St, Seattle, WA 98101" +279000,iPhone,1,700,10/26/19 20:53,"852 Chestnut St, Los Angeles, CA 90001" +279000,Apple Airpods Headphones,1,150,10/26/19 20:53,"852 Chestnut St, Los Angeles, CA 90001" +279001,USB-C Charging Cable,1,11.95,10/12/19 14:05,"215 Hill St, Portland, OR 97035" +279002,Wired Headphones,1,11.99,10/03/19 14:18,"992 Jefferson St, Los Angeles, CA 90001" +279003,AAA Batteries (4-pack),2,2.99,10/20/19 11:29,"669 Hill St, Los Angeles, CA 90001" +279003,27in FHD Monitor,1,149.99,10/20/19 11:29,"669 Hill St, Los Angeles, CA 90001" +279004,ThinkPad Laptop,1,999.99,10/09/19 20:31,"47 Jefferson St, San Francisco, CA 94016" +279005,USB-C Charging Cable,1,11.95,10/10/19 12:48,"508 13th St, Boston, MA 02215" +279006,AA Batteries (4-pack),1,3.84,10/25/19 11:46,"470 Cedar St, Portland, OR 97035" +279007,Lightning Charging Cable,1,14.95,10/01/19 17:06,"788 5th St, New York City, NY 10001" +279008,Apple Airpods Headphones,1,150,10/11/19 08:50,"766 Cedar St, Boston, MA 02215" +279009,AA Batteries (4-pack),1,3.84,10/03/19 09:27,"885 Spruce St, Atlanta, GA 30301" +279010,20in Monitor,1,109.99,10/15/19 18:45,"635 Ridge St, San Francisco, CA 94016" +279011,Wired Headphones,1,11.99,10/10/19 21:09,"871 Highland St, San Francisco, CA 94016" +279012,Apple Airpods Headphones,1,150,10/13/19 14:50,"185 Center St, New York City, NY 10001" +279013,USB-C Charging Cable,1,11.95,10/10/19 18:37,"977 Lincoln St, San Francisco, CA 94016" +279014,Bose SoundSport Headphones,1,99.99,10/23/19 15:01,"872 14th St, San Francisco, CA 94016" +279015,USB-C Charging Cable,1,11.95,10/03/19 08:24,"746 West St, San Francisco, CA 94016" +279016,27in FHD Monitor,1,149.99,10/31/19 23:16,"42 Chestnut St, Atlanta, GA 30301" +279017,Wired Headphones,1,11.99,10/10/19 15:58,"819 Hickory St, San Francisco, CA 94016" +279018,USB-C Charging Cable,1,11.95,10/29/19 13:48,"220 Cherry St, New York City, NY 10001" +,,,,, +279019,USB-C Charging Cable,1,11.95,10/11/19 19:36,"394 2nd St, Los Angeles, CA 90001" +279020,AAA Batteries (4-pack),1,2.99,10/29/19 19:29,"145 6th St, New York City, NY 10001" +279021,Vareebadd Phone,1,400,10/24/19 12:05,"323 9th St, Portland, OR 97035" +279022,27in FHD Monitor,1,149.99,10/29/19 12:09,"247 Jackson St, Atlanta, GA 30301" +279023,27in FHD Monitor,1,149.99,10/04/19 17:37,"83 9th St, San Francisco, CA 94016" +279024,iPhone,1,700,10/24/19 08:22,"774 Walnut St, Los Angeles, CA 90001" +279025,AAA Batteries (4-pack),2,2.99,10/17/19 14:17,"321 Wilson St, Seattle, WA 98101" +279026,Apple Airpods Headphones,1,150,10/26/19 14:42,"258 North St, Seattle, WA 98101" +,,,,, +279027,AAA Batteries (4-pack),3,2.99,10/13/19 20:20,"257 12th St, New York City, NY 10001" +279028,27in 4K Gaming Monitor,1,389.99,10/08/19 08:43,"354 Church St, New York City, NY 10001" +279029,USB-C Charging Cable,1,11.95,10/31/19 11:34,"806 Sunset St, Los Angeles, CA 90001" +279030,27in 4K Gaming Monitor,1,389.99,10/14/19 16:45,"924 9th St, New York City, NY 10001" +279031,USB-C Charging Cable,1,11.95,10/07/19 10:47,"871 River St, Atlanta, GA 30301" +279032,Bose SoundSport Headphones,1,99.99,10/31/19 17:09,"745 Cedar St, New York City, NY 10001" +279033,Flatscreen TV,1,300,10/21/19 08:41,"946 Pine St, San Francisco, CA 94016" +279034,iPhone,1,700,10/08/19 10:24,"798 Church St, New York City, NY 10001" +279035,Lightning Charging Cable,1,14.95,10/21/19 22:17,"830 9th St, Boston, MA 02215" +279036,Bose SoundSport Headphones,1,99.99,10/30/19 11:08,"514 North St, Boston, MA 02215" +279037,Flatscreen TV,1,300,10/07/19 00:57,"554 14th St, Seattle, WA 98101" +279038,Apple Airpods Headphones,1,150,10/27/19 19:07,"403 7th St, New York City, NY 10001" +279039,Apple Airpods Headphones,1,150,10/01/19 13:58,"438 Lakeview St, Dallas, TX 75001" +279040,Wired Headphones,1,11.99,10/30/19 18:55,"708 Adams St, Dallas, TX 75001" +279041,27in FHD Monitor,1,149.99,10/11/19 20:24,"920 Meadow St, New York City, NY 10001" +279041,Bose SoundSport Headphones,1,99.99,10/11/19 20:24,"920 Meadow St, New York City, NY 10001" +279042,AA Batteries (4-pack),3,3.84,10/05/19 10:01,"830 Cherry St, Dallas, TX 75001" +279043,iPhone,1,700,10/06/19 09:24,"114 Adams St, San Francisco, CA 94016" +279044,AA Batteries (4-pack),1,3.84,10/25/19 17:46,"889 14th St, San Francisco, CA 94016" +279045,USB-C Charging Cable,1,11.95,10/03/19 13:10,"971 Spruce St, Los Angeles, CA 90001" +279046,USB-C Charging Cable,1,11.95,10/27/19 11:34,"244 Forest St, Portland, OR 97035" +279047,Wired Headphones,1,11.99,10/29/19 13:29,"113 Maple St, Seattle, WA 98101" +279048,Macbook Pro Laptop,1,1700,10/02/19 11:04,"803 Ridge St, San Francisco, CA 94016" +279049,Apple Airpods Headphones,1,150,10/28/19 14:59,"40 Jackson St, San Francisco, CA 94016" +279050,20in Monitor,1,109.99,10/13/19 11:25,"312 Maple St, Boston, MA 02215" +279051,USB-C Charging Cable,1,11.95,10/08/19 20:33,"66 Cedar St, Dallas, TX 75001" +279052,Lightning Charging Cable,1,14.95,10/10/19 23:20,"943 Cedar St, Seattle, WA 98101" +279053,iPhone,1,700,10/17/19 13:17,"675 North St, Boston, MA 02215" +279054,27in FHD Monitor,1,149.99,10/14/19 17:48,"619 5th St, San Francisco, CA 94016" +279055,AAA Batteries (4-pack),1,2.99,10/06/19 18:28,"435 Lincoln St, Boston, MA 02215" +279056,Wired Headphones,1,11.99,10/10/19 11:34,"441 4th St, Austin, TX 73301" +279057,AA Batteries (4-pack),1,3.84,10/02/19 00:10,"772 Willow St, Los Angeles, CA 90001" +279058,Macbook Pro Laptop,1,1700,10/19/19 12:41,"497 13th St, Los Angeles, CA 90001" +279059,AAA Batteries (4-pack),3,2.99,10/01/19 11:23,"176 Park St, Seattle, WA 98101" +279060,Wired Headphones,1,11.99,10/04/19 22:44,"379 Johnson St, Los Angeles, CA 90001" +279061,AA Batteries (4-pack),1,3.84,10/13/19 11:16,"323 Main St, Dallas, TX 75001" +279062,ThinkPad Laptop,1,999.99,10/05/19 12:55,"882 Johnson St, San Francisco, CA 94016" +279063,Lightning Charging Cable,1,14.95,10/07/19 22:11,"814 Jefferson St, Seattle, WA 98101" +279064,Vareebadd Phone,1,400,10/28/19 09:45,"484 Lake St, Los Angeles, CA 90001" +279065,AA Batteries (4-pack),2,3.84,10/02/19 22:17,"578 Cedar St, Los Angeles, CA 90001" +279066,USB-C Charging Cable,1,11.95,10/08/19 07:51,"207 Jackson St, San Francisco, CA 94016" +279067,AAA Batteries (4-pack),1,2.99,10/26/19 22:45,"630 Highland St, Los Angeles, CA 90001" +279068,34in Ultrawide Monitor,1,379.99,10/14/19 05:11,"319 Lake St, Boston, MA 02215" +279069,Macbook Pro Laptop,1,1700,10/08/19 21:12,"799 North St, Dallas, TX 75001" +279070,Apple Airpods Headphones,1,150,10/20/19 08:50,"146 South St, Atlanta, GA 30301" +279071,AA Batteries (4-pack),1,3.84,10/22/19 18:33,"719 9th St, Dallas, TX 75001" +279072,AA Batteries (4-pack),1,3.84,10/25/19 02:15,"367 Main St, Boston, MA 02215" +279073,USB-C Charging Cable,1,11.95,10/13/19 22:18,"629 Adams St, New York City, NY 10001" +279074,USB-C Charging Cable,1,11.95,10/15/19 11:40,"251 2nd St, Los Angeles, CA 90001" +279075,AA Batteries (4-pack),1,3.84,10/09/19 15:19,"124 Maple St, Boston, MA 02215" +279076,AAA Batteries (4-pack),2,2.99,10/23/19 23:45,"607 Chestnut St, Seattle, WA 98101" +279077,Wired Headphones,1,11.99,10/18/19 15:04,"520 Jefferson St, Seattle, WA 98101" +279078,Wired Headphones,1,11.99,10/18/19 17:44,"594 South St, Los Angeles, CA 90001" +279079,USB-C Charging Cable,1,11.95,10/02/19 11:23,"396 Meadow St, Seattle, WA 98101" +279080,Apple Airpods Headphones,1,150,10/25/19 16:12,"9 Cedar St, Los Angeles, CA 90001" +279081,AAA Batteries (4-pack),1,2.99,10/29/19 20:50,"959 Elm St, Atlanta, GA 30301" +279082,Bose SoundSport Headphones,1,99.99,10/11/19 14:11,"139 Maple St, Los Angeles, CA 90001" +279083,Wired Headphones,1,11.99,10/10/19 12:46,"403 10th St, Los Angeles, CA 90001" +279084,Lightning Charging Cable,1,14.95,10/01/19 07:57,"139 Lincoln St, Seattle, WA 98101" +279085,Wired Headphones,2,11.99,10/16/19 12:40,"290 10th St, New York City, NY 10001" +279086,AAA Batteries (4-pack),1,2.99,10/02/19 10:59,"3 West St, San Francisco, CA 94016" +279087,AA Batteries (4-pack),1,3.84,10/30/19 15:15,"337 Sunset St, Los Angeles, CA 90001" +279088,27in 4K Gaming Monitor,1,389.99,10/08/19 12:26,"446 Madison St, Seattle, WA 98101" +279089,27in 4K Gaming Monitor,1,389.99,10/09/19 03:24,"467 Wilson St, New York City, NY 10001" +279090,Macbook Pro Laptop,1,1700,10/26/19 13:01,"28 14th St, Los Angeles, CA 90001" +279091,iPhone,1,700,10/02/19 21:22,"354 Forest St, San Francisco, CA 94016" +279092,Bose SoundSport Headphones,1,99.99,10/17/19 12:29,"317 Highland St, Boston, MA 02215" +279093,USB-C Charging Cable,1,11.95,10/14/19 15:52,"426 2nd St, San Francisco, CA 94016" +279094,Google Phone,1,600,10/11/19 13:42,"765 Spruce St, Boston, MA 02215" +279095,Wired Headphones,1,11.99,10/25/19 21:08,"838 Highland St, Austin, TX 73301" +279096,Lightning Charging Cable,1,14.95,10/23/19 10:05,"109 South St, New York City, NY 10001" +279097,Lightning Charging Cable,1,14.95,10/31/19 16:35,"354 West St, San Francisco, CA 94016" +279098,iPhone,1,700,10/29/19 17:20,"507 Meadow St, Austin, TX 73301" +279098,Lightning Charging Cable,1,14.95,10/29/19 17:20,"507 Meadow St, Austin, TX 73301" +279098,Wired Headphones,1,11.99,10/29/19 17:20,"507 Meadow St, Austin, TX 73301" +279099,AAA Batteries (4-pack),1,2.99,10/26/19 12:34,"699 Johnson St, Dallas, TX 75001" +279100,Apple Airpods Headphones,1,150,10/04/19 09:03,"692 6th St, Seattle, WA 98101" +279101,AAA Batteries (4-pack),1,2.99,10/24/19 16:47,"49 West St, New York City, NY 10001" +279102,AAA Batteries (4-pack),3,2.99,10/04/19 07:28,"577 Madison St, New York City, NY 10001" +279103,USB-C Charging Cable,1,11.95,10/25/19 22:00,"240 Jefferson St, Dallas, TX 75001" +279104,Google Phone,1,600,10/22/19 17:13,"938 2nd St, San Francisco, CA 94016" +279105,USB-C Charging Cable,1,11.95,10/05/19 20:53,"968 Wilson St, Portland, OR 97035" +279106,USB-C Charging Cable,1,11.95,10/26/19 12:43,"615 North St, San Francisco, CA 94016" +279107,AAA Batteries (4-pack),1,2.99,10/17/19 16:59,"811 Meadow St, Boston, MA 02215" +279108,Lightning Charging Cable,1,14.95,10/03/19 17:56,"936 Cedar St, Atlanta, GA 30301" +279109,Flatscreen TV,1,300,10/17/19 21:49,"946 Wilson St, Los Angeles, CA 90001" +279110,20in Monitor,1,109.99,10/06/19 12:44,"85 1st St, New York City, NY 10001" +279111,Apple Airpods Headphones,1,150,10/04/19 20:03,"726 Forest St, Seattle, WA 98101" +279112,iPhone,1,700,10/29/19 22:52,"211 4th St, San Francisco, CA 94016" +279113,Wired Headphones,1,11.99,10/14/19 17:34,"438 South St, Atlanta, GA 30301" +279114,AAA Batteries (4-pack),1,2.99,10/29/19 21:02,"135 South St, Austin, TX 73301" +279115,Lightning Charging Cable,1,14.95,10/17/19 14:12,"964 Chestnut St, Los Angeles, CA 90001" +279116,USB-C Charging Cable,1,11.95,10/04/19 17:01,"601 Main St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +279117,Bose SoundSport Headphones,1,99.99,10/18/19 15:27,"807 Cedar St, San Francisco, CA 94016" +279118,Macbook Pro Laptop,1,1700,10/16/19 22:25,"217 Madison St, San Francisco, CA 94016" +279119,AAA Batteries (4-pack),1,2.99,10/21/19 12:58,"752 South St, Seattle, WA 98101" +279120,iPhone,1,700,10/10/19 20:41,"198 Meadow St, San Francisco, CA 94016" +279121,Wired Headphones,1,11.99,10/27/19 13:11,"632 Cherry St, San Francisco, CA 94016" +279122,Apple Airpods Headphones,1,150,10/26/19 13:37,"804 Cedar St, Austin, TX 73301" +279123,Bose SoundSport Headphones,1,99.99,10/25/19 05:03,"75 Pine St, New York City, NY 10001" +279124,Bose SoundSport Headphones,1,99.99,10/08/19 12:03,"45 Willow St, New York City, NY 10001" +279125,Google Phone,1,600,10/13/19 13:12,"438 Maple St, Atlanta, GA 30301" +279126,Lightning Charging Cable,1,14.95,10/21/19 22:21,"672 8th St, New York City, NY 10001" +279127,AAA Batteries (4-pack),1,2.99,10/02/19 08:18,"819 Park St, Los Angeles, CA 90001" +279128,Google Phone,1,600,10/06/19 03:12,"338 Madison St, San Francisco, CA 94016" +279128,USB-C Charging Cable,1,11.95,10/06/19 03:12,"338 Madison St, San Francisco, CA 94016" +279128,AAA Batteries (4-pack),1,2.99,10/06/19 03:12,"338 Madison St, San Francisco, CA 94016" +279129,Apple Airpods Headphones,1,150,10/29/19 07:56,"778 Willow St, Portland, OR 97035" +279130,AAA Batteries (4-pack),2,2.99,10/11/19 11:07,"354 River St, Seattle, WA 98101" +279131,34in Ultrawide Monitor,1,379.99,10/31/19 11:30,"114 Chestnut St, New York City, NY 10001" +279132,Apple Airpods Headphones,1,150,10/17/19 12:05,"647 11th St, Austin, TX 73301" +279133,34in Ultrawide Monitor,1,379.99,10/05/19 20:03,"116 Cedar St, Austin, TX 73301" +279133,Wired Headphones,1,11.99,10/05/19 20:03,"116 Cedar St, Austin, TX 73301" +279134,27in 4K Gaming Monitor,1,389.99,10/01/19 06:54,"582 Ridge St, Boston, MA 02215" +279135,USB-C Charging Cable,2,11.95,10/19/19 17:54,"856 South St, New York City, NY 10001" +279136,Wired Headphones,1,11.99,10/09/19 16:51,"746 Forest St, Seattle, WA 98101" +279137,Lightning Charging Cable,1,14.95,10/23/19 17:47,"200 Wilson St, Boston, MA 02215" +279137,Bose SoundSport Headphones,1,99.99,10/23/19 17:47,"200 Wilson St, Boston, MA 02215" +279138,Wired Headphones,1,11.99,10/05/19 02:41,"405 Johnson St, San Francisco, CA 94016" +279139,AA Batteries (4-pack),1,3.84,10/25/19 15:16,"309 Lakeview St, Seattle, WA 98101" +279140,Apple Airpods Headphones,1,150,10/16/19 22:11,"714 Johnson St, Los Angeles, CA 90001" +279141,AA Batteries (4-pack),1,3.84,10/11/19 08:48,"180 5th St, Los Angeles, CA 90001" +279142,AAA Batteries (4-pack),1,2.99,10/13/19 15:35,"329 South St, Portland, OR 97035" +279143,Apple Airpods Headphones,1,150,10/29/19 17:36,"47 13th St, New York City, NY 10001" +279144,27in 4K Gaming Monitor,1,389.99,10/30/19 21:27,"699 Hill St, New York City, NY 10001" +279145,27in FHD Monitor,1,149.99,10/26/19 11:05,"563 Hickory St, New York City, NY 10001" +279146,ThinkPad Laptop,1,999.99,10/06/19 23:19,"988 1st St, New York City, NY 10001" +279147,LG Dryer,1,600.0,10/25/19 17:02,"704 Lakeview St, San Francisco, CA 94016" +279148,AA Batteries (4-pack),1,3.84,10/08/19 14:13,"4 Elm St, Seattle, WA 98101" +279149,Macbook Pro Laptop,1,1700,10/09/19 11:16,"400 Sunset St, Atlanta, GA 30301" +279150,Flatscreen TV,1,300,10/14/19 17:11,"984 4th St, Boston, MA 02215" +279151,USB-C Charging Cable,1,11.95,10/24/19 23:16,"57 Cherry St, Seattle, WA 98101" +279152,USB-C Charging Cable,1,11.95,10/20/19 10:05,"474 10th St, Austin, TX 73301" +279153,27in 4K Gaming Monitor,1,389.99,10/14/19 16:05,"400 West St, Dallas, TX 75001" +279153,Wired Headphones,1,11.99,10/14/19 16:05,"400 West St, Dallas, TX 75001" +279154,Macbook Pro Laptop,1,1700,10/15/19 06:24,"821 Main St, Boston, MA 02215" +279155,Lightning Charging Cable,1,14.95,10/08/19 19:50,"57 Forest St, New York City, NY 10001" +279156,AAA Batteries (4-pack),1,2.99,10/16/19 04:35,"498 Wilson St, Los Angeles, CA 90001" +279157,Macbook Pro Laptop,1,1700,10/24/19 16:52,"166 Walnut St, San Francisco, CA 94016" +279158,Apple Airpods Headphones,1,150,10/20/19 12:21,"954 North St, Dallas, TX 75001" +279159,34in Ultrawide Monitor,1,379.99,10/16/19 20:57,"979 Spruce St, Portland, ME 04101" +279160,USB-C Charging Cable,1,11.95,10/24/19 14:05,"896 Center St, Boston, MA 02215" +,,,,, +279161,Bose SoundSport Headphones,1,99.99,10/02/19 23:10,"694 2nd St, Los Angeles, CA 90001" +279162,AAA Batteries (4-pack),2,2.99,10/04/19 19:19,"81 Hill St, Seattle, WA 98101" +279163,USB-C Charging Cable,1,11.95,10/02/19 19:49,"807 Walnut St, Seattle, WA 98101" +279164,Macbook Pro Laptop,1,1700,10/27/19 15:45,"447 Adams St, Boston, MA 02215" +279165,27in 4K Gaming Monitor,1,389.99,10/23/19 10:52,"16 6th St, Austin, TX 73301" +279166,AAA Batteries (4-pack),1,2.99,10/02/19 11:09,"148 Jefferson St, Los Angeles, CA 90001" +279167,Bose SoundSport Headphones,1,99.99,10/21/19 05:45,"287 Hickory St, Seattle, WA 98101" +279168,Macbook Pro Laptop,1,1700,10/07/19 11:39,"41 6th St, Portland, OR 97035" +279169,Lightning Charging Cable,1,14.95,10/18/19 20:30,"854 Washington St, San Francisco, CA 94016" +279170,27in FHD Monitor,1,149.99,10/20/19 15:57,"331 Cedar St, San Francisco, CA 94016" +279171,Wired Headphones,1,11.99,10/04/19 18:46,"951 Washington St, Los Angeles, CA 90001" +279172,Google Phone,1,600,10/06/19 11:20,"888 Wilson St, New York City, NY 10001" +279173,USB-C Charging Cable,1,11.95,10/13/19 17:51,"719 4th St, Seattle, WA 98101" +279174,Google Phone,1,600,10/19/19 17:38,"834 Walnut St, New York City, NY 10001" +279175,Google Phone,1,600,10/06/19 13:31,"441 Washington St, Dallas, TX 75001" +279175,USB-C Charging Cable,1,11.95,10/06/19 13:31,"441 Washington St, Dallas, TX 75001" +279176,27in FHD Monitor,1,149.99,10/26/19 12:59,"670 Walnut St, Seattle, WA 98101" +279177,AAA Batteries (4-pack),1,2.99,10/21/19 09:18,"836 Cherry St, San Francisco, CA 94016" +279178,Bose SoundSport Headphones,1,99.99,10/16/19 16:40,"92 14th St, Boston, MA 02215" +279179,AAA Batteries (4-pack),1,2.99,10/23/19 21:36,"461 4th St, San Francisco, CA 94016" +279180,AAA Batteries (4-pack),1,2.99,10/02/19 23:26,"162 Cherry St, San Francisco, CA 94016" +279181,AAA Batteries (4-pack),1,2.99,10/10/19 20:18,"956 Ridge St, Los Angeles, CA 90001" +279182,AA Batteries (4-pack),1,3.84,10/03/19 18:22,"493 Jackson St, San Francisco, CA 94016" +279183,AAA Batteries (4-pack),1,2.99,10/18/19 22:25,"455 Washington St, San Francisco, CA 94016" +279184,AA Batteries (4-pack),2,3.84,10/07/19 13:38,"799 Elm St, Boston, MA 02215" +279185,Wired Headphones,1,11.99,10/26/19 14:36,"105 9th St, Atlanta, GA 30301" +279186,USB-C Charging Cable,1,11.95,10/28/19 19:50,"178 Wilson St, Dallas, TX 75001" +279187,AA Batteries (4-pack),1,3.84,10/06/19 14:45,"192 11th St, Atlanta, GA 30301" +279188,AAA Batteries (4-pack),2,2.99,10/30/19 17:43,"163 4th St, New York City, NY 10001" +279189,AA Batteries (4-pack),1,3.84,10/27/19 17:24,"906 Lincoln St, New York City, NY 10001" +279190,Apple Airpods Headphones,1,150,10/09/19 23:25,"108 Ridge St, San Francisco, CA 94016" +279191,Apple Airpods Headphones,1,150,10/05/19 20:32,"594 Cedar St, Los Angeles, CA 90001" +279192,27in 4K Gaming Monitor,1,389.99,10/21/19 17:57,"577 Adams St, Los Angeles, CA 90001" +279193,Vareebadd Phone,1,400,10/04/19 10:21,"86 13th St, San Francisco, CA 94016" +279194,Flatscreen TV,1,300,10/03/19 21:47,"758 Johnson St, Austin, TX 73301" +279195,USB-C Charging Cable,1,11.95,10/14/19 07:56,"12 Elm St, Austin, TX 73301" +279196,Lightning Charging Cable,1,14.95,10/21/19 08:26,"85 Dogwood St, San Francisco, CA 94016" +279197,Apple Airpods Headphones,1,150,10/25/19 07:35,"338 8th St, New York City, NY 10001" +279197,AAA Batteries (4-pack),1,2.99,10/25/19 07:35,"338 8th St, New York City, NY 10001" +279198,Lightning Charging Cable,2,14.95,10/07/19 21:59,"287 Highland St, Atlanta, GA 30301" +279199,Bose SoundSport Headphones,1,99.99,10/03/19 18:15,"38 8th St, Portland, ME 04101" +279200,AA Batteries (4-pack),1,3.84,10/11/19 19:23,"247 Cedar St, San Francisco, CA 94016" +279201,27in FHD Monitor,1,149.99,10/16/19 22:32,"897 Center St, Seattle, WA 98101" +279202,Lightning Charging Cable,1,14.95,10/22/19 16:45,"870 Jackson St, New York City, NY 10001" +279203,Wired Headphones,1,11.99,10/13/19 09:42,"811 Maple St, San Francisco, CA 94016" +279204,USB-C Charging Cable,1,11.95,10/18/19 15:58,"684 Hill St, Atlanta, GA 30301" +279205,27in 4K Gaming Monitor,1,389.99,10/09/19 11:04,"451 Ridge St, New York City, NY 10001" +279206,Bose SoundSport Headphones,1,99.99,10/16/19 10:04,"660 7th St, Portland, OR 97035" +279207,20in Monitor,1,109.99,10/03/19 18:12,"495 6th St, Seattle, WA 98101" +279208,Wired Headphones,1,11.99,10/03/19 08:35,"655 9th St, Los Angeles, CA 90001" +279209,AA Batteries (4-pack),1,3.84,10/11/19 08:31,"449 Walnut St, Boston, MA 02215" +279210,AA Batteries (4-pack),1,3.84,10/31/19 14:59,"786 9th St, Boston, MA 02215" +279211,27in FHD Monitor,1,149.99,10/16/19 00:54,"476 South St, Seattle, WA 98101" +279212,Wired Headphones,1,11.99,10/01/19 14:37,"468 Willow St, San Francisco, CA 94016" +279213,iPhone,1,700,10/03/19 15:02,"875 Main St, San Francisco, CA 94016" +279213,Wired Headphones,1,11.99,10/03/19 15:02,"875 Main St, San Francisco, CA 94016" +279214,USB-C Charging Cable,1,11.95,10/23/19 12:04,"793 2nd St, Portland, ME 04101" +279215,27in FHD Monitor,1,149.99,10/07/19 16:56,"800 Johnson St, Los Angeles, CA 90001" +279216,AA Batteries (4-pack),1,3.84,10/21/19 14:21,"985 1st St, Austin, TX 73301" +279217,AAA Batteries (4-pack),1,2.99,10/31/19 15:32,"902 Main St, New York City, NY 10001" +279218,AAA Batteries (4-pack),1,2.99,10/26/19 17:13,"712 Spruce St, Atlanta, GA 30301" +279219,Apple Airpods Headphones,1,150,10/18/19 18:53,"797 12th St, San Francisco, CA 94016" +279220,USB-C Charging Cable,1,11.95,10/05/19 17:57,"813 Madison St, Dallas, TX 75001" +279221,Bose SoundSport Headphones,1,99.99,10/22/19 09:12,"755 11th St, Dallas, TX 75001" +279222,Vareebadd Phone,1,400,10/04/19 22:36,"755 13th St, San Francisco, CA 94016" +279223,AA Batteries (4-pack),1,3.84,10/26/19 19:12,"924 River St, Dallas, TX 75001" +279224,AA Batteries (4-pack),1,3.84,10/12/19 09:46,"784 13th St, Seattle, WA 98101" +279225,Wired Headphones,1,11.99,10/13/19 07:09,"252 1st St, Seattle, WA 98101" +279226,AA Batteries (4-pack),2,3.84,10/30/19 09:53,"377 Willow St, New York City, NY 10001" +279227,Macbook Pro Laptop,1,1700,10/05/19 11:36,"177 8th St, Austin, TX 73301" +279228,USB-C Charging Cable,1,11.95,10/23/19 13:50,"90 1st St, Los Angeles, CA 90001" +279229,ThinkPad Laptop,1,999.99,10/13/19 19:46,"511 Willow St, Atlanta, GA 30301" +279230,Flatscreen TV,1,300,10/24/19 16:15,"490 Church St, Los Angeles, CA 90001" +279231,AAA Batteries (4-pack),1,2.99,10/19/19 10:06,"275 Hill St, Dallas, TX 75001" +279232,iPhone,1,700,10/31/19 07:28,"541 Dogwood St, San Francisco, CA 94016" +279233,Apple Airpods Headphones,1,150,10/16/19 14:00,"128 Dogwood St, Austin, TX 73301" +279234,34in Ultrawide Monitor,1,379.99,10/11/19 12:42,"230 Highland St, Atlanta, GA 30301" +279235,USB-C Charging Cable,1,11.95,10/05/19 15:03,"614 4th St, Los Angeles, CA 90001" +279236,34in Ultrawide Monitor,1,379.99,10/26/19 09:53,"132 Washington St, Los Angeles, CA 90001" +279237,AAA Batteries (4-pack),1,2.99,10/26/19 23:40,"570 Jefferson St, San Francisco, CA 94016" +279238,Wired Headphones,2,11.99,10/21/19 23:25,"796 13th St, New York City, NY 10001" +279239,USB-C Charging Cable,1,11.95,10/12/19 09:52,"718 Jefferson St, San Francisco, CA 94016" +279240,Lightning Charging Cable,1,14.95,10/22/19 20:11,"992 Hill St, Dallas, TX 75001" +279241,Bose SoundSport Headphones,1,99.99,10/02/19 14:56,"428 Main St, Dallas, TX 75001" +279242,Apple Airpods Headphones,1,150,10/30/19 17:39,"75 North St, Los Angeles, CA 90001" +279243,Apple Airpods Headphones,1,150,10/19/19 13:50,"82 Chestnut St, Seattle, WA 98101" +279244,USB-C Charging Cable,1,11.95,10/13/19 13:49,"833 10th St, Seattle, WA 98101" +279245,USB-C Charging Cable,1,11.95,10/28/19 23:00,"670 12th St, San Francisco, CA 94016" +279246,USB-C Charging Cable,1,11.95,10/09/19 22:06,"557 Ridge St, Dallas, TX 75001" +279247,AAA Batteries (4-pack),1,2.99,10/29/19 20:23,"305 Willow St, Atlanta, GA 30301" +279248,AAA Batteries (4-pack),1,2.99,10/12/19 11:07,"942 14th St, San Francisco, CA 94016" +279249,Bose SoundSport Headphones,1,99.99,10/08/19 18:10,"87 Madison St, San Francisco, CA 94016" +279250,Apple Airpods Headphones,1,150,10/18/19 22:01,"367 Walnut St, New York City, NY 10001" +279251,iPhone,1,700,10/21/19 09:21,"548 Ridge St, Boston, MA 02215" +279252,34in Ultrawide Monitor,1,379.99,10/09/19 18:12,"401 5th St, Atlanta, GA 30301" +279253,iPhone,1,700,10/27/19 10:58,"400 Johnson St, Dallas, TX 75001" +279254,AAA Batteries (4-pack),1,2.99,10/06/19 10:16,"317 North St, Portland, OR 97035" +279255,Wired Headphones,2,11.99,10/08/19 11:26,"413 Church St, New York City, NY 10001" +279256,Google Phone,1,600,10/29/19 15:15,"520 Johnson St, Portland, OR 97035" +279257,Bose SoundSport Headphones,1,99.99,10/06/19 11:19,"360 Main St, San Francisco, CA 94016" +279258,ThinkPad Laptop,1,999.99,10/11/19 12:01,"663 Maple St, Atlanta, GA 30301" +279259,Wired Headphones,1,11.99,10/23/19 21:05,"624 Highland St, San Francisco, CA 94016" +279260,Wired Headphones,1,11.99,10/25/19 21:22,"655 Elm St, Seattle, WA 98101" +279261,USB-C Charging Cable,1,11.95,10/23/19 17:07,"849 Park St, Los Angeles, CA 90001" +279262,USB-C Charging Cable,1,11.95,10/14/19 21:21,"32 Forest St, San Francisco, CA 94016" +279263,Apple Airpods Headphones,1,150,10/10/19 17:40,"666 Lake St, New York City, NY 10001" +279264,Wired Headphones,1,11.99,10/18/19 20:44,"669 Hill St, San Francisco, CA 94016" +,,,,, +279265,Macbook Pro Laptop,1,1700,10/11/19 22:50,"55 Cherry St, Dallas, TX 75001" +279266,Lightning Charging Cable,1,14.95,10/22/19 16:18,"755 Jefferson St, Austin, TX 73301" +279267,Google Phone,1,600,10/31/19 01:50,"515 Meadow St, New York City, NY 10001" +279268,Macbook Pro Laptop,1,1700,10/03/19 12:14,"779 Walnut St, Austin, TX 73301" +279269,AA Batteries (4-pack),2,3.84,10/25/19 20:40,"179 Forest St, Boston, MA 02215" +279270,Bose SoundSport Headphones,1,99.99,10/17/19 22:27,"51 North St, Boston, MA 02215" +279271,LG Washing Machine,1,600.0,10/12/19 12:54,"615 Washington St, San Francisco, CA 94016" +279272,Apple Airpods Headphones,1,150,10/09/19 23:39,"468 Madison St, San Francisco, CA 94016" +279273,AA Batteries (4-pack),1,3.84,10/03/19 13:35,"502 Meadow St, Atlanta, GA 30301" +279274,Flatscreen TV,1,300,10/09/19 14:33,"910 12th St, Los Angeles, CA 90001" +279275,USB-C Charging Cable,2,11.95,10/01/19 10:44,"513 Highland St, Boston, MA 02215" +279276,USB-C Charging Cable,1,11.95,10/23/19 17:41,"676 Forest St, Atlanta, GA 30301" +279277,Lightning Charging Cable,1,14.95,10/21/19 08:26,"201 Washington St, Portland, OR 97035" +279278,Apple Airpods Headphones,1,150,10/11/19 19:45,"271 Lincoln St, Austin, TX 73301" +279279,iPhone,1,700,10/06/19 00:09,"703 Pine St, Dallas, TX 75001" +279279,Lightning Charging Cable,2,14.95,10/06/19 00:09,"703 Pine St, Dallas, TX 75001" +279280,USB-C Charging Cable,1,11.95,10/13/19 21:48,"756 Lakeview St, Seattle, WA 98101" +279281,USB-C Charging Cable,1,11.95,10/03/19 19:18,"175 13th St, Boston, MA 02215" +279282,AAA Batteries (4-pack),1,2.99,10/11/19 22:28,"71 8th St, San Francisco, CA 94016" +279283,20in Monitor,1,109.99,10/01/19 15:07,"318 Pine St, Portland, OR 97035" +279284,USB-C Charging Cable,1,11.95,10/31/19 20:25,"921 Chestnut St, San Francisco, CA 94016" +279285,USB-C Charging Cable,1,11.95,10/27/19 17:49,"542 Lakeview St, San Francisco, CA 94016" +279286,Lightning Charging Cable,1,14.95,10/21/19 17:47,"357 Chestnut St, Dallas, TX 75001" +279287,USB-C Charging Cable,1,11.95,10/01/19 17:06,"428 5th St, Los Angeles, CA 90001" +279288,34in Ultrawide Monitor,1,379.99,10/04/19 19:18,"464 Center St, Boston, MA 02215" +279289,AA Batteries (4-pack),1,3.84,10/09/19 12:12,"964 South St, Dallas, TX 75001" +279290,AAA Batteries (4-pack),1,2.99,10/31/19 16:41,"532 Washington St, Los Angeles, CA 90001" +279291,Apple Airpods Headphones,1,150,10/08/19 01:03,"940 Spruce St, San Francisco, CA 94016" +279292,Flatscreen TV,1,300,10/28/19 20:44,"78 Spruce St, Seattle, WA 98101" +279293,Apple Airpods Headphones,1,150,10/31/19 17:37,"908 13th St, Portland, ME 04101" +279294,USB-C Charging Cable,1,11.95,10/05/19 15:46,"13 Pine St, Dallas, TX 75001" +279295,ThinkPad Laptop,1,999.99,10/27/19 09:43,"614 Forest St, Atlanta, GA 30301" +279296,Apple Airpods Headphones,1,150,10/23/19 14:47,"998 South St, Boston, MA 02215" +279297,USB-C Charging Cable,1,11.95,10/24/19 13:03,"129 Meadow St, New York City, NY 10001" +279298,Wired Headphones,1,11.99,10/17/19 13:23,"614 Cherry St, Los Angeles, CA 90001" +279299,Apple Airpods Headphones,1,150,10/22/19 11:06,"298 7th St, Los Angeles, CA 90001" +279300,Lightning Charging Cable,1,14.95,10/25/19 11:16,"129 4th St, Dallas, TX 75001" +279301,AAA Batteries (4-pack),3,2.99,10/23/19 17:16,"774 Adams St, Dallas, TX 75001" +279302,USB-C Charging Cable,1,11.95,10/30/19 14:01,"411 Walnut St, Portland, ME 04101" +279303,AAA Batteries (4-pack),1,2.99,10/02/19 18:42,"553 Chestnut St, Los Angeles, CA 90001" +279304,Macbook Pro Laptop,1,1700,10/19/19 13:51,"781 7th St, San Francisco, CA 94016" +279305,AAA Batteries (4-pack),2,2.99,10/28/19 17:17,"92 Hill St, Atlanta, GA 30301" +279306,27in FHD Monitor,1,149.99,10/13/19 07:17,"531 Hickory St, Dallas, TX 75001" +279307,27in FHD Monitor,1,149.99,10/22/19 07:51,"834 Chestnut St, Atlanta, GA 30301" +279308,USB-C Charging Cable,1,11.95,10/17/19 12:31,"592 14th St, Los Angeles, CA 90001" +279309,Wired Headphones,1,11.99,10/09/19 14:33,"320 Willow St, Boston, MA 02215" +279310,Flatscreen TV,1,300,10/26/19 23:47,"644 5th St, San Francisco, CA 94016" +279311,USB-C Charging Cable,2,11.95,10/06/19 19:08,"365 River St, Portland, OR 97035" +279312,AAA Batteries (4-pack),1,2.99,10/03/19 12:43,"944 4th St, Boston, MA 02215" +279313,USB-C Charging Cable,1,11.95,10/28/19 12:14,"360 Maple St, San Francisco, CA 94016" +279314,USB-C Charging Cable,1,11.95,10/18/19 17:20,"718 Willow St, Los Angeles, CA 90001" +279315,Apple Airpods Headphones,1,150,10/18/19 10:23,"929 5th St, Portland, OR 97035" +279316,USB-C Charging Cable,1,11.95,10/03/19 18:03,"74 Chestnut St, San Francisco, CA 94016" +279317,AAA Batteries (4-pack),1,2.99,10/19/19 17:13,"476 Park St, Los Angeles, CA 90001" +279318,AA Batteries (4-pack),1,3.84,10/19/19 16:43,"979 Cedar St, San Francisco, CA 94016" +279319,34in Ultrawide Monitor,1,379.99,10/24/19 18:12,"862 Dogwood St, Boston, MA 02215" +279320,Flatscreen TV,1,300,10/03/19 11:07,"366 Lincoln St, Los Angeles, CA 90001" +279321,Apple Airpods Headphones,1,150,10/04/19 23:45,"214 Church St, San Francisco, CA 94016" +279322,AAA Batteries (4-pack),1,2.99,10/03/19 09:00,"716 Sunset St, San Francisco, CA 94016" +279323,AA Batteries (4-pack),1,3.84,10/22/19 20:48,"685 Pine St, San Francisco, CA 94016" +279324,Lightning Charging Cable,1,14.95,10/18/19 22:23,"231 Willow St, San Francisco, CA 94016" +279325,Wired Headphones,1,11.99,10/28/19 20:39,"812 Jefferson St, New York City, NY 10001" +279326,Wired Headphones,1,11.99,10/18/19 12:36,"291 8th St, Los Angeles, CA 90001" +279327,Bose SoundSport Headphones,1,99.99,10/23/19 10:45,"185 Forest St, Austin, TX 73301" +279328,Flatscreen TV,1,300,10/29/19 15:39,"824 9th St, Seattle, WA 98101" +279329,Bose SoundSport Headphones,1,99.99,10/21/19 21:28,"147 Dogwood St, Seattle, WA 98101" +279330,Bose SoundSport Headphones,1,99.99,10/01/19 14:18,"686 Lake St, Boston, MA 02215" +279331,Lightning Charging Cable,1,14.95,10/17/19 18:07,"745 Cedar St, Los Angeles, CA 90001" +279332,Wired Headphones,1,11.99,10/02/19 21:24,"750 Lake St, Portland, OR 97035" +279333,AAA Batteries (4-pack),1,2.99,10/21/19 13:19,"179 North St, Los Angeles, CA 90001" +279334,27in FHD Monitor,1,149.99,10/31/19 18:01,"147 1st St, Atlanta, GA 30301" +279335,Macbook Pro Laptop,1,1700,10/08/19 10:05,"568 1st St, New York City, NY 10001" +279336,34in Ultrawide Monitor,1,379.99,10/05/19 14:18,"317 Elm St, Seattle, WA 98101" +279337,USB-C Charging Cable,1,11.95,10/05/19 21:14,"225 Highland St, Los Angeles, CA 90001" +279338,Wired Headphones,1,11.99,10/21/19 20:24,"582 Cedar St, San Francisco, CA 94016" +279339,ThinkPad Laptop,1,999.99,10/05/19 12:12,"627 Dogwood St, Atlanta, GA 30301" +279340,27in 4K Gaming Monitor,1,389.99,10/10/19 11:02,"553 Johnson St, New York City, NY 10001" +279341,USB-C Charging Cable,1,11.95,10/06/19 20:15,"279 Lake St, New York City, NY 10001" +279342,Bose SoundSport Headphones,1,99.99,10/18/19 14:19,"597 9th St, Boston, MA 02215" +279343,Wired Headphones,1,11.99,10/18/19 23:48,"535 5th St, Los Angeles, CA 90001" +279344,USB-C Charging Cable,1,11.95,10/28/19 13:46,"412 Adams St, New York City, NY 10001" +279345,Flatscreen TV,1,300,10/26/19 19:42,"872 Washington St, Dallas, TX 75001" +279346,27in FHD Monitor,1,149.99,10/31/19 19:26,"640 Madison St, Los Angeles, CA 90001" +279347,Bose SoundSport Headphones,1,99.99,10/23/19 11:19,"499 4th St, New York City, NY 10001" +279348,AA Batteries (4-pack),1,3.84,10/14/19 19:02,"444 Highland St, Boston, MA 02215" +279349,Lightning Charging Cable,1,14.95,10/31/19 11:59,"833 Chestnut St, Boston, MA 02215" +279350,USB-C Charging Cable,1,11.95,10/02/19 23:13,"480 14th St, Atlanta, GA 30301" +279351,iPhone,1,700,10/19/19 18:08,"64 Cedar St, Austin, TX 73301" +279352,34in Ultrawide Monitor,1,379.99,10/15/19 23:05,"689 Wilson St, Austin, TX 73301" +279353,Wired Headphones,2,11.99,10/10/19 19:26,"666 Washington St, Atlanta, GA 30301" +279354,Apple Airpods Headphones,1,150,10/30/19 17:52,"886 13th St, Atlanta, GA 30301" +279355,AAA Batteries (4-pack),3,2.99,10/17/19 16:29,"799 12th St, San Francisco, CA 94016" +279356,AA Batteries (4-pack),3,3.84,10/29/19 06:29,"123 4th St, Portland, OR 97035" +279357,AAA Batteries (4-pack),1,2.99,10/30/19 20:44,"572 South St, Los Angeles, CA 90001" +279358,Lightning Charging Cable,1,14.95,10/02/19 15:21,"665 Park St, Boston, MA 02215" +279359,AAA Batteries (4-pack),2,2.99,10/08/19 19:49,"339 9th St, San Francisco, CA 94016" +279360,Apple Airpods Headphones,1,150,10/02/19 19:41,"162 Forest St, Seattle, WA 98101" +279361,Apple Airpods Headphones,1,150,10/27/19 19:25,"990 Lincoln St, New York City, NY 10001" +279362,AA Batteries (4-pack),2,3.84,10/04/19 08:55,"838 Park St, New York City, NY 10001" +279363,AAA Batteries (4-pack),1,2.99,10/27/19 06:59,"777 Spruce St, San Francisco, CA 94016" +279364,20in Monitor,1,109.99,10/16/19 21:54,"650 River St, San Francisco, CA 94016" +279365,AA Batteries (4-pack),1,3.84,10/31/19 14:39,"482 Church St, New York City, NY 10001" +279366,Google Phone,1,600,10/13/19 07:28,"496 14th St, Seattle, WA 98101" +279367,USB-C Charging Cable,1,11.95,10/15/19 08:06,"673 Jefferson St, Los Angeles, CA 90001" +279368,USB-C Charging Cable,1,11.95,10/07/19 23:57,"268 7th St, Atlanta, GA 30301" +279369,AAA Batteries (4-pack),1,2.99,10/03/19 08:01,"551 Church St, San Francisco, CA 94016" +279370,USB-C Charging Cable,1,11.95,10/24/19 13:13,"74 Walnut St, New York City, NY 10001" +279371,AA Batteries (4-pack),1,3.84,10/28/19 10:19,"689 Highland St, San Francisco, CA 94016" +279372,USB-C Charging Cable,1,11.95,10/21/19 08:24,"287 West St, Portland, OR 97035" +279373,Lightning Charging Cable,1,14.95,10/10/19 11:20,"77 Spruce St, Los Angeles, CA 90001" +279374,USB-C Charging Cable,1,11.95,10/29/19 19:11,"578 Cherry St, Boston, MA 02215" +279375,AA Batteries (4-pack),1,3.84,10/21/19 18:30,"166 Pine St, Los Angeles, CA 90001" +279376,Apple Airpods Headphones,1,150,10/29/19 16:31,"889 Walnut St, Austin, TX 73301" +279377,Apple Airpods Headphones,1,150,10/23/19 11:11,"407 10th St, Dallas, TX 75001" +279378,Wired Headphones,3,11.99,10/11/19 19:10,"551 River St, Boston, MA 02215" +279379,Bose SoundSport Headphones,1,99.99,10/15/19 09:03,"573 Washington St, San Francisco, CA 94016" +279380,AAA Batteries (4-pack),2,2.99,10/28/19 21:58,"668 Washington St, Atlanta, GA 30301" +279381,Bose SoundSport Headphones,1,99.99,10/14/19 11:57,"815 10th St, San Francisco, CA 94016" +279382,USB-C Charging Cable,1,11.95,10/20/19 14:02,"307 South St, San Francisco, CA 94016" +279383,AAA Batteries (4-pack),2,2.99,10/23/19 19:07,"887 Meadow St, Boston, MA 02215" +279384,iPhone,1,700,10/23/19 09:30,"822 Dogwood St, New York City, NY 10001" +279385,Apple Airpods Headphones,1,150,10/02/19 18:29,"874 Meadow St, Los Angeles, CA 90001" +279386,iPhone,1,700,10/01/19 20:57,"566 12th St, Los Angeles, CA 90001" +279387,LG Dryer,1,600.0,10/02/19 12:47,"268 Sunset St, Seattle, WA 98101" +279388,USB-C Charging Cable,1,11.95,10/03/19 16:11,"429 Park St, Dallas, TX 75001" +279389,Apple Airpods Headphones,1,150,10/14/19 07:58,"881 Chestnut St, San Francisco, CA 94016" +279390,Bose SoundSport Headphones,1,99.99,10/11/19 17:45,"76 Wilson St, San Francisco, CA 94016" +279391,20in Monitor,1,109.99,10/26/19 21:55,"707 Lincoln St, Dallas, TX 75001" +279392,AA Batteries (4-pack),2,3.84,10/05/19 13:44,"428 Chestnut St, Los Angeles, CA 90001" +279393,AA Batteries (4-pack),1,3.84,10/09/19 11:58,"211 Johnson St, Portland, OR 97035" +279394,AA Batteries (4-pack),1,3.84,10/17/19 13:58,"15 Adams St, Dallas, TX 75001" +279395,Lightning Charging Cable,2,14.95,10/31/19 15:28,"134 Hill St, San Francisco, CA 94016" +279396,Lightning Charging Cable,1,14.95,10/25/19 10:25,"332 12th St, Austin, TX 73301" +279397,USB-C Charging Cable,1,11.95,10/28/19 20:46,"867 Ridge St, New York City, NY 10001" +279398,USB-C Charging Cable,1,11.95,10/29/19 11:12,"709 Chestnut St, Atlanta, GA 30301" +279399,27in FHD Monitor,1,149.99,10/17/19 15:42,"889 Dogwood St, Austin, TX 73301" +279400,Lightning Charging Cable,1,14.95,10/04/19 15:36,"493 9th St, Portland, ME 04101" +279401,AAA Batteries (4-pack),1,2.99,10/15/19 11:29,"998 Church St, San Francisco, CA 94016" +279402,AAA Batteries (4-pack),2,2.99,10/04/19 19:55,"585 6th St, Dallas, TX 75001" +279403,Apple Airpods Headphones,1,150,10/23/19 15:22,"18 Main St, New York City, NY 10001" +279403,Apple Airpods Headphones,1,150,10/23/19 15:22,"18 Main St, New York City, NY 10001" +279404,Lightning Charging Cable,1,14.95,10/26/19 22:04,"531 Hill St, Dallas, TX 75001" +279405,AA Batteries (4-pack),2,3.84,10/27/19 10:58,"800 Park St, Boston, MA 02215" +279406,AA Batteries (4-pack),2,3.84,10/24/19 19:32,"445 North St, New York City, NY 10001" +279407,Vareebadd Phone,1,400,10/11/19 05:49,"380 1st St, Dallas, TX 75001" +279408,Lightning Charging Cable,1,14.95,10/20/19 16:23,"938 10th St, Los Angeles, CA 90001" +279409,Lightning Charging Cable,1,14.95,10/26/19 23:21,"97 Wilson St, San Francisco, CA 94016" +279410,USB-C Charging Cable,1,11.95,10/13/19 11:30,"384 South St, San Francisco, CA 94016" +279411,AAA Batteries (4-pack),3,2.99,10/12/19 14:39,"861 Sunset St, San Francisco, CA 94016" +279412,USB-C Charging Cable,1,11.95,10/01/19 20:06,"465 Chestnut St, Los Angeles, CA 90001" +279413,USB-C Charging Cable,1,11.95,10/19/19 12:38,"353 Johnson St, San Francisco, CA 94016" +279414,Lightning Charging Cable,1,14.95,10/18/19 11:45,"692 Spruce St, San Francisco, CA 94016" +279415,AA Batteries (4-pack),2,3.84,10/07/19 13:21,"286 Center St, San Francisco, CA 94016" +279416,Lightning Charging Cable,1,14.95,10/11/19 01:15,"400 Sunset St, San Francisco, CA 94016" +279417,Lightning Charging Cable,1,14.95,10/29/19 18:32,"435 Sunset St, Los Angeles, CA 90001" +279418,AAA Batteries (4-pack),1,2.99,10/28/19 13:55,"647 9th St, Los Angeles, CA 90001" +279419,Lightning Charging Cable,1,14.95,10/06/19 22:08,"105 Lake St, Portland, OR 97035" +279420,AAA Batteries (4-pack),4,2.99,10/06/19 13:10,"512 9th St, Seattle, WA 98101" +279421,Apple Airpods Headphones,1,150,10/17/19 11:13,"440 Church St, Portland, OR 97035" +279422,AAA Batteries (4-pack),2,2.99,10/07/19 09:14,"184 7th St, Austin, TX 73301" +279423,27in FHD Monitor,1,149.99,10/16/19 23:10,"777 Meadow St, New York City, NY 10001" +279424,AAA Batteries (4-pack),1,2.99,10/06/19 20:46,"187 Hickory St, Seattle, WA 98101" +279425,AA Batteries (4-pack),2,3.84,10/26/19 14:22,"880 Dogwood St, Dallas, TX 75001" +279426,Lightning Charging Cable,1,14.95,10/26/19 20:19,"829 River St, San Francisco, CA 94016" +279427,AA Batteries (4-pack),2,3.84,10/06/19 21:40,"59 5th St, Dallas, TX 75001" +279428,AA Batteries (4-pack),2,3.84,10/11/19 18:16,"296 Dogwood St, San Francisco, CA 94016" +279429,Bose SoundSport Headphones,1,99.99,10/12/19 13:38,"966 Lakeview St, Austin, TX 73301" +279429,USB-C Charging Cable,1,11.95,10/12/19 13:38,"966 Lakeview St, Austin, TX 73301" +279430,AA Batteries (4-pack),1,3.84,10/24/19 23:26,"500 Cedar St, San Francisco, CA 94016" +279431,iPhone,1,700,10/15/19 19:59,"869 1st St, Seattle, WA 98101" +279432,AA Batteries (4-pack),1,3.84,10/02/19 15:47,"246 Highland St, Austin, TX 73301" +279433,AA Batteries (4-pack),2,3.84,10/02/19 14:00,"28 Dogwood St, Seattle, WA 98101" +279434,27in 4K Gaming Monitor,1,389.99,10/06/19 11:43,"136 7th St, San Francisco, CA 94016" +279435,AAA Batteries (4-pack),1,2.99,10/24/19 17:37,"802 Spruce St, Atlanta, GA 30301" +279436,USB-C Charging Cable,1,11.95,10/07/19 20:29,"680 10th St, Boston, MA 02215" +279437,Wired Headphones,1,11.99,10/19/19 15:36,"836 Church St, San Francisco, CA 94016" +279438,USB-C Charging Cable,1,11.95,10/11/19 21:16,"989 Madison St, Portland, OR 97035" +279439,20in Monitor,1,109.99,10/06/19 16:30,"228 Park St, Seattle, WA 98101" +279440,AA Batteries (4-pack),1,3.84,10/23/19 19:34,"337 Cedar St, Atlanta, GA 30301" +279441,Bose SoundSport Headphones,1,99.99,10/14/19 20:36,"595 Lincoln St, San Francisco, CA 94016" +279442,iPhone,1,700,10/22/19 14:10,"205 Washington St, Boston, MA 02215" +279442,Lightning Charging Cable,1,14.95,10/22/19 14:10,"205 Washington St, Boston, MA 02215" +279443,AA Batteries (4-pack),2,3.84,10/24/19 11:27,"218 Park St, San Francisco, CA 94016" +279444,Wired Headphones,1,11.99,10/08/19 14:38,"125 6th St, San Francisco, CA 94016" +279445,Apple Airpods Headphones,1,150,10/07/19 13:02,"246 Wilson St, New York City, NY 10001" +279446,LG Dryer,1,600.0,10/21/19 22:43,"25 Park St, Los Angeles, CA 90001" +279447,ThinkPad Laptop,1,999.99,10/03/19 22:46,"517 Church St, Los Angeles, CA 90001" +279448,34in Ultrawide Monitor,1,379.99,10/28/19 07:20,"201 South St, Portland, OR 97035" +279449,USB-C Charging Cable,1,11.95,10/03/19 18:19,"965 1st St, Los Angeles, CA 90001" +279450,27in 4K Gaming Monitor,1,389.99,10/09/19 19:39,"695 Lakeview St, Portland, OR 97035" +279451,AA Batteries (4-pack),3,3.84,10/06/19 06:54,"399 Dogwood St, San Francisco, CA 94016" +279452,Lightning Charging Cable,1,14.95,10/08/19 16:10,"868 Willow St, Los Angeles, CA 90001" +279453,27in 4K Gaming Monitor,1,389.99,10/19/19 11:00,"88 14th St, Dallas, TX 75001" +279454,AA Batteries (4-pack),2,3.84,10/04/19 19:12,"243 6th St, Dallas, TX 75001" +279455,AAA Batteries (4-pack),1,2.99,10/31/19 05:01,"833 14th St, Los Angeles, CA 90001" +279456,Bose SoundSport Headphones,1,99.99,10/21/19 23:09,"123 11th St, San Francisco, CA 94016" +279457,Apple Airpods Headphones,1,150,10/14/19 19:11,"581 Meadow St, New York City, NY 10001" +279458,AAA Batteries (4-pack),2,2.99,10/05/19 17:25,"625 Ridge St, Los Angeles, CA 90001" +279459,Apple Airpods Headphones,1,150,10/28/19 20:15,"618 Madison St, Portland, OR 97035" +279460,AA Batteries (4-pack),2,3.84,10/13/19 09:22,"420 Madison St, Portland, OR 97035" +279461,ThinkPad Laptop,1,999.99,10/11/19 23:51,"726 River St, San Francisco, CA 94016" +279462,Bose SoundSport Headphones,1,99.99,10/04/19 20:55,"191 14th St, Atlanta, GA 30301" +279463,AA Batteries (4-pack),1,3.84,10/17/19 13:00,"914 7th St, Los Angeles, CA 90001" +279464,Bose SoundSport Headphones,1,99.99,10/28/19 20:26,"698 13th St, San Francisco, CA 94016" +279465,USB-C Charging Cable,1,11.95,10/11/19 14:40,"838 Walnut St, San Francisco, CA 94016" +279466,USB-C Charging Cable,1,11.95,10/01/19 12:24,"43 South St, Portland, ME 04101" +279467,Apple Airpods Headphones,1,150,10/31/19 19:52,"191 Wilson St, San Francisco, CA 94016" +279468,Lightning Charging Cable,1,14.95,10/20/19 01:19,"944 Maple St, Atlanta, GA 30301" +279469,USB-C Charging Cable,1,11.95,10/13/19 00:15,"706 South St, Seattle, WA 98101" +279470,Bose SoundSport Headphones,1,99.99,10/25/19 08:11,"845 Dogwood St, New York City, NY 10001" +279471,Lightning Charging Cable,1,14.95,10/23/19 19:57,"289 Lincoln St, Dallas, TX 75001" +279472,AA Batteries (4-pack),1,3.84,10/20/19 14:24,"375 9th St, San Francisco, CA 94016" +279472,Apple Airpods Headphones,1,150,10/20/19 14:24,"375 9th St, San Francisco, CA 94016" +279473,iPhone,1,700,10/08/19 22:30,"828 Sunset St, Los Angeles, CA 90001" +279474,27in 4K Gaming Monitor,1,389.99,10/15/19 10:38,"627 Jackson St, Boston, MA 02215" +279475,Vareebadd Phone,1,400,10/20/19 18:24,"56 5th St, Los Angeles, CA 90001" +279476,Wired Headphones,1,11.99,10/08/19 13:56,"564 Highland St, Boston, MA 02215" +279477,27in 4K Gaming Monitor,1,389.99,10/21/19 19:00,"217 1st St, Portland, OR 97035" +279478,Apple Airpods Headphones,1,150,10/09/19 11:44,"318 7th St, San Francisco, CA 94016" +279479,USB-C Charging Cable,1,11.95,10/24/19 17:34,"338 Walnut St, Seattle, WA 98101" +279480,Apple Airpods Headphones,1,150,10/28/19 13:57,"93 Lake St, New York City, NY 10001" +279481,27in 4K Gaming Monitor,1,389.99,10/18/19 10:06,"841 Johnson St, San Francisco, CA 94016" +279482,Apple Airpods Headphones,1,150,10/23/19 22:36,"878 Jefferson St, San Francisco, CA 94016" +279483,Bose SoundSport Headphones,1,99.99,10/01/19 14:06,"635 Washington St, San Francisco, CA 94016" +279484,AA Batteries (4-pack),1,3.84,10/10/19 15:58,"560 10th St, Boston, MA 02215" +279485,AA Batteries (4-pack),1,3.84,10/20/19 14:55,"436 7th St, New York City, NY 10001" +279486,Lightning Charging Cable,1,14.95,10/30/19 00:07,"591 11th St, Los Angeles, CA 90001" +279487,Bose SoundSport Headphones,1,99.99,10/26/19 16:33,"673 Jackson St, Los Angeles, CA 90001" +279488,Bose SoundSport Headphones,1,99.99,10/24/19 20:25,"879 Wilson St, Atlanta, GA 30301" +279489,27in FHD Monitor,1,149.99,10/13/19 22:19,"30 Hill St, San Francisco, CA 94016" +279490,27in FHD Monitor,1,149.99,10/22/19 22:44,"87 7th St, Portland, ME 04101" +279491,Apple Airpods Headphones,1,150,10/24/19 14:31,"272 Hill St, Seattle, WA 98101" +279492,AA Batteries (4-pack),2,3.84,10/23/19 21:06,"205 Johnson St, San Francisco, CA 94016" +279493,AA Batteries (4-pack),1,3.84,10/11/19 19:38,"655 4th St, Seattle, WA 98101" +279494,AA Batteries (4-pack),2,3.84,10/05/19 21:02,"915 Walnut St, San Francisco, CA 94016" +279495,27in FHD Monitor,1,149.99,10/09/19 20:33,"882 Willow St, Los Angeles, CA 90001" +279496,Apple Airpods Headphones,1,150,10/29/19 15:37,"169 West St, Atlanta, GA 30301" +279497,34in Ultrawide Monitor,1,379.99,10/11/19 10:50,"640 Center St, Austin, TX 73301" +279498,27in 4K Gaming Monitor,1,389.99,10/05/19 18:26,"338 Main St, San Francisco, CA 94016" +279499,ThinkPad Laptop,1,999.99,10/28/19 19:43,"283 Lakeview St, New York City, NY 10001" +279500,AAA Batteries (4-pack),2,2.99,10/10/19 01:33,"385 Church St, Dallas, TX 75001" +279501,27in FHD Monitor,1,149.99,10/02/19 14:18,"420 Cedar St, Los Angeles, CA 90001" +279502,iPhone,1,700,10/15/19 13:12,"360 Church St, San Francisco, CA 94016" +279503,AAA Batteries (4-pack),3,2.99,10/14/19 11:31,"739 River St, San Francisco, CA 94016" +279504,27in 4K Gaming Monitor,1,389.99,10/21/19 00:12,"101 Main St, Los Angeles, CA 90001" +279505,iPhone,1,700,10/23/19 07:00,"19 Lakeview St, Los Angeles, CA 90001" +279506,Lightning Charging Cable,1,14.95,10/22/19 15:35,"434 Walnut St, New York City, NY 10001" +279507,Wired Headphones,1,11.99,10/10/19 15:48,"776 Cherry St, Boston, MA 02215" +279508,27in FHD Monitor,1,149.99,10/04/19 20:46,"102 Johnson St, Los Angeles, CA 90001" +279509,Bose SoundSport Headphones,1,99.99,10/01/19 14:10,"866 Spruce St, Seattle, WA 98101" +279510,Lightning Charging Cable,1,14.95,10/26/19 11:48,"783 2nd St, Los Angeles, CA 90001" +279511,Wired Headphones,1,11.99,10/06/19 18:46,"186 6th St, Atlanta, GA 30301" +279512,Wired Headphones,1,11.99,10/11/19 16:03,"1 Sunset St, New York City, NY 10001" +279513,iPhone,1,700,10/17/19 16:48,"786 Maple St, San Francisco, CA 94016" +279513,Lightning Charging Cable,1,14.95,10/17/19 16:48,"786 Maple St, San Francisco, CA 94016" +279514,Apple Airpods Headphones,1,150,10/12/19 23:54,"948 Washington St, New York City, NY 10001" +279515,Wired Headphones,1,11.99,10/07/19 23:48,"461 Washington St, San Francisco, CA 94016" +279516,Wired Headphones,1,11.99,10/11/19 12:39,"794 Sunset St, Los Angeles, CA 90001" +279517,USB-C Charging Cable,1,11.95,10/14/19 15:19,"117 Elm St, Los Angeles, CA 90001" +279518,USB-C Charging Cable,2,11.95,10/11/19 21:59,"238 Church St, Los Angeles, CA 90001" +279519,Bose SoundSport Headphones,2,99.99,10/25/19 19:46,"521 9th St, New York City, NY 10001" +279520,Lightning Charging Cable,1,14.95,10/20/19 09:37,"694 Washington St, Dallas, TX 75001" +279521,34in Ultrawide Monitor,1,379.99,10/06/19 13:54,"363 Washington St, San Francisco, CA 94016" +279522,Google Phone,1,600,10/25/19 12:53,"275 Center St, Atlanta, GA 30301" +279523,AAA Batteries (4-pack),2,2.99,10/31/19 19:00,"979 Cherry St, Seattle, WA 98101" +279524,Bose SoundSport Headphones,1,99.99,10/25/19 10:10,"315 13th St, San Francisco, CA 94016" +279524,AA Batteries (4-pack),1,3.84,10/25/19 10:10,"315 13th St, San Francisco, CA 94016" +279525,USB-C Charging Cable,2,11.95,10/22/19 21:40,"367 5th St, San Francisco, CA 94016" +279526,AA Batteries (4-pack),1,3.84,10/30/19 10:53,"419 14th St, Portland, OR 97035" +279527,ThinkPad Laptop,1,999.99,10/19/19 15:08,"969 Spruce St, San Francisco, CA 94016" +279528,Apple Airpods Headphones,1,150,10/13/19 23:51,"89 Forest St, San Francisco, CA 94016" +279529,USB-C Charging Cable,1,11.95,10/14/19 10:25,"183 North St, San Francisco, CA 94016" +279530,USB-C Charging Cable,1,11.95,10/25/19 13:08,"727 Adams St, Los Angeles, CA 90001" +279531,USB-C Charging Cable,1,11.95,10/22/19 20:17,"45 Walnut St, Seattle, WA 98101" +279532,USB-C Charging Cable,1,11.95,10/10/19 15:35,"90 Madison St, Los Angeles, CA 90001" +279533,Apple Airpods Headphones,1,150,10/07/19 09:52,"900 Lake St, Boston, MA 02215" +279534,Bose SoundSport Headphones,1,99.99,10/21/19 14:19,"296 10th St, San Francisco, CA 94016" +279535,AA Batteries (4-pack),3,3.84,10/09/19 11:17,"856 Cedar St, Portland, ME 04101" +279536,Lightning Charging Cable,1,14.95,10/18/19 11:51,"894 9th St, Seattle, WA 98101" +279537,34in Ultrawide Monitor,1,379.99,10/07/19 17:01,"93 Maple St, New York City, NY 10001" +279538,AA Batteries (4-pack),1,3.84,10/08/19 05:50,"700 14th St, Austin, TX 73301" +279539,AA Batteries (4-pack),2,3.84,10/09/19 11:00,"573 Madison St, Austin, TX 73301" +279540,USB-C Charging Cable,1,11.95,10/11/19 11:22,"53 West St, Atlanta, GA 30301" +279541,27in 4K Gaming Monitor,1,389.99,10/23/19 09:54,"3 Sunset St, Boston, MA 02215" +279542,AAA Batteries (4-pack),3,2.99,10/27/19 20:11,"203 Jefferson St, Boston, MA 02215" +279543,Wired Headphones,1,11.99,10/17/19 00:19,"715 Washington St, Boston, MA 02215" +279544,USB-C Charging Cable,1,11.95,10/16/19 21:20,"949 12th St, Boston, MA 02215" +279545,Wired Headphones,1,11.99,10/18/19 13:56,"476 Jackson St, Atlanta, GA 30301" +279546,USB-C Charging Cable,1,11.95,10/18/19 12:31,"294 7th St, San Francisco, CA 94016" +279546,27in 4K Gaming Monitor,1,389.99,10/18/19 12:31,"294 7th St, San Francisco, CA 94016" +279547,Apple Airpods Headphones,1,150,10/06/19 21:08,"719 Main St, San Francisco, CA 94016" +279548,ThinkPad Laptop,1,999.99,10/09/19 11:49,"703 South St, Dallas, TX 75001" +279549,AAA Batteries (4-pack),4,2.99,10/18/19 13:33,"755 West St, San Francisco, CA 94016" +279550,AA Batteries (4-pack),1,3.84,10/30/19 17:54,"737 Wilson St, San Francisco, CA 94016" +279551,iPhone,1,700,10/29/19 21:27,"47 Highland St, Boston, MA 02215" +279551,Wired Headphones,1,11.99,10/29/19 21:27,"47 Highland St, Boston, MA 02215" +279552,AA Batteries (4-pack),1,3.84,10/13/19 10:28,"334 Park St, Atlanta, GA 30301" +279553,Lightning Charging Cable,1,14.95,10/18/19 09:16,"783 Highland St, San Francisco, CA 94016" +279554,AA Batteries (4-pack),1,3.84,10/02/19 20:59,"325 Spruce St, Atlanta, GA 30301" +279555,iPhone,1,700,10/25/19 20:26,"594 Main St, Austin, TX 73301" +279556,Lightning Charging Cable,1,14.95,10/27/19 14:01,"167 Forest St, Los Angeles, CA 90001" +279557,AA Batteries (4-pack),3,3.84,10/12/19 15:50,"542 Sunset St, Los Angeles, CA 90001" +279558,AA Batteries (4-pack),1,3.84,10/23/19 10:37,"234 Madison St, Boston, MA 02215" +279559,Lightning Charging Cable,1,14.95,10/04/19 20:41,"374 Johnson St, New York City, NY 10001" +279560,AAA Batteries (4-pack),1,2.99,10/13/19 19:22,"772 Lake St, Boston, MA 02215" +279561,Google Phone,1,600,10/08/19 14:58,"800 Washington St, Seattle, WA 98101" +279562,Vareebadd Phone,1,400,10/10/19 10:36,"86 Walnut St, Dallas, TX 75001" +279563,Wired Headphones,1,11.99,10/18/19 17:46,"562 Center St, Los Angeles, CA 90001" +279564,Vareebadd Phone,1,400,10/28/19 20:17,"854 9th St, Portland, OR 97035" +279564,Bose SoundSport Headphones,1,99.99,10/28/19 20:17,"854 9th St, Portland, OR 97035" +279565,Bose SoundSport Headphones,1,99.99,10/26/19 13:38,"772 Lakeview St, San Francisco, CA 94016" +279566,Lightning Charging Cable,1,14.95,10/14/19 11:20,"508 Lincoln St, San Francisco, CA 94016" +279567,Vareebadd Phone,1,400,10/02/19 13:48,"64 7th St, San Francisco, CA 94016" +279568,Apple Airpods Headphones,1,150,10/25/19 15:52,"935 Highland St, Austin, TX 73301" +279569,Wired Headphones,1,11.99,10/17/19 01:41,"200 Lincoln St, Seattle, WA 98101" +279570,Lightning Charging Cable,1,14.95,10/18/19 20:53,"385 Hill St, Los Angeles, CA 90001" +279571,USB-C Charging Cable,1,11.95,10/23/19 09:42,"251 Maple St, Portland, OR 97035" +279572,Bose SoundSport Headphones,1,99.99,10/05/19 18:39,"150 5th St, Boston, MA 02215" +279573,AAA Batteries (4-pack),2,2.99,10/07/19 12:04,"429 Hickory St, Boston, MA 02215" +279574,Lightning Charging Cable,1,14.95,10/02/19 21:08,"915 West St, Dallas, TX 75001" +279575,Apple Airpods Headphones,1,150,10/17/19 16:56,"962 Chestnut St, Los Angeles, CA 90001" +279576,iPhone,1,700,10/26/19 19:20,"266 Church St, Seattle, WA 98101" +279577,AAA Batteries (4-pack),2,2.99,10/16/19 19:08,"4 Ridge St, Los Angeles, CA 90001" +279578,iPhone,1,700,10/17/19 19:07,"70 9th St, New York City, NY 10001" +279579,Macbook Pro Laptop,1,1700,10/03/19 16:41,"830 Elm St, Boston, MA 02215" +279580,AAA Batteries (4-pack),1,2.99,10/27/19 17:50,"741 6th St, Los Angeles, CA 90001" +279581,Lightning Charging Cable,1,14.95,10/22/19 19:18,"662 Wilson St, Los Angeles, CA 90001" +279582,Wired Headphones,1,11.99,10/04/19 19:48,"869 Cherry St, Atlanta, GA 30301" +279583,20in Monitor,1,109.99,10/23/19 15:50,"525 River St, New York City, NY 10001" +279584,LG Dryer,1,600.0,10/08/19 20:22,"473 Johnson St, New York City, NY 10001" +279585,ThinkPad Laptop,1,999.99,10/27/19 17:08,"621 5th St, San Francisco, CA 94016" +279586,AAA Batteries (4-pack),2,2.99,10/10/19 12:56,"898 Sunset St, Austin, TX 73301" +279587,Bose SoundSport Headphones,1,99.99,10/15/19 14:46,"871 Center St, Los Angeles, CA 90001" +279588,Apple Airpods Headphones,1,150,10/17/19 06:11,"285 Washington St, San Francisco, CA 94016" +279589,Lightning Charging Cable,1,14.95,10/27/19 20:17,"367 Jackson St, San Francisco, CA 94016" +279590,Lightning Charging Cable,1,14.95,10/11/19 13:03,"193 12th St, Seattle, WA 98101" +279591,20in Monitor,1,109.99,10/03/19 10:30,"873 South St, Portland, OR 97035" +279592,USB-C Charging Cable,1,11.95,10/14/19 13:50,"348 Cherry St, Portland, OR 97035" +279593,AAA Batteries (4-pack),2,2.99,10/21/19 14:32,"674 Jefferson St, San Francisco, CA 94016" +279594,AA Batteries (4-pack),1,3.84,10/16/19 13:56,"320 Dogwood St, Los Angeles, CA 90001" +279595,AAA Batteries (4-pack),1,2.99,10/18/19 16:26,"289 5th St, New York City, NY 10001" +279596,Wired Headphones,1,11.99,10/13/19 10:29,"869 1st St, San Francisco, CA 94016" +279597,Apple Airpods Headphones,1,150,10/27/19 11:56,"481 Willow St, Boston, MA 02215" +279598,USB-C Charging Cable,1,11.95,10/21/19 07:51,"600 Meadow St, San Francisco, CA 94016" +279599,AA Batteries (4-pack),1,3.84,10/26/19 09:35,"219 Main St, Boston, MA 02215" +279600,ThinkPad Laptop,1,999.99,10/10/19 09:10,"31 2nd St, Los Angeles, CA 90001" +279601,Lightning Charging Cable,1,14.95,10/16/19 06:38,"740 11th St, Austin, TX 73301" +279602,iPhone,1,700,10/10/19 23:52,"89 10th St, New York City, NY 10001" +279603,AA Batteries (4-pack),1,3.84,10/18/19 13:49,"890 6th St, Dallas, TX 75001" +279604,Macbook Pro Laptop,1,1700,10/23/19 14:39,"752 Hickory St, Los Angeles, CA 90001" +279605,Wired Headphones,1,11.99,10/02/19 19:27,"420 Elm St, New York City, NY 10001" +279606,Apple Airpods Headphones,1,150,10/01/19 14:02,"224 1st St, Seattle, WA 98101" +279607,Apple Airpods Headphones,1,150,10/30/19 07:20,"525 South St, Boston, MA 02215" +279608,Bose SoundSport Headphones,1,99.99,10/02/19 12:14,"870 Hickory St, Boston, MA 02215" +279609,Wired Headphones,1,11.99,10/29/19 15:06,"407 Maple St, San Francisco, CA 94016" +279610,AA Batteries (4-pack),2,3.84,10/07/19 17:03,"302 2nd St, Atlanta, GA 30301" +279611,Apple Airpods Headphones,1,150,10/14/19 09:59,"427 Walnut St, Atlanta, GA 30301" +279612,AAA Batteries (4-pack),1,2.99,10/08/19 12:33,"482 11th St, Los Angeles, CA 90001" +279613,Apple Airpods Headphones,1,150,10/17/19 15:25,"548 4th St, Boston, MA 02215" +279614,Wired Headphones,1,11.99,10/22/19 14:01,"730 Sunset St, Seattle, WA 98101" +279615,27in FHD Monitor,1,149.99,10/10/19 16:33,"554 Cherry St, Atlanta, GA 30301" +279616,USB-C Charging Cable,1,11.95,10/30/19 12:14,"357 Wilson St, San Francisco, CA 94016" +279617,USB-C Charging Cable,1,11.95,10/21/19 19:13,"925 Lake St, Seattle, WA 98101" +279618,USB-C Charging Cable,1,11.95,10/01/19 18:21,"589 9th St, Seattle, WA 98101" +279619,34in Ultrawide Monitor,1,379.99,10/25/19 09:42,"335 Chestnut St, Boston, MA 02215" +279620,Wired Headphones,1,11.99,10/13/19 11:25,"574 Dogwood St, Los Angeles, CA 90001" +279621,Apple Airpods Headphones,1,150,10/03/19 14:36,"14 Elm St, Los Angeles, CA 90001" +279622,Apple Airpods Headphones,1,150,10/05/19 15:04,"337 Hickory St, Los Angeles, CA 90001" +279623,Apple Airpods Headphones,1,150,10/14/19 13:03,"608 11th St, Los Angeles, CA 90001" +279624,AAA Batteries (4-pack),3,2.99,10/12/19 11:34,"420 6th St, San Francisco, CA 94016" +279625,AA Batteries (4-pack),1,3.84,10/22/19 14:23,"548 11th St, Boston, MA 02215" +279626,Lightning Charging Cable,1,14.95,10/08/19 19:03,"688 5th St, San Francisco, CA 94016" +279627,Apple Airpods Headphones,1,150,10/18/19 15:24,"207 4th St, New York City, NY 10001" +279628,Lightning Charging Cable,1,14.95,10/26/19 14:14,"81 Maple St, Portland, ME 04101" +279629,Wired Headphones,1,11.99,10/09/19 21:58,"434 Cedar St, San Francisco, CA 94016" +279630,Lightning Charging Cable,1,14.95,10/24/19 23:35,"467 6th St, Los Angeles, CA 90001" +279631,Wired Headphones,1,11.99,10/21/19 07:37,"650 Walnut St, San Francisco, CA 94016" +279632,Lightning Charging Cable,1,14.95,10/24/19 20:25,"125 Sunset St, San Francisco, CA 94016" +279633,Lightning Charging Cable,1,14.95,10/15/19 19:49,"954 10th St, Seattle, WA 98101" +279634,34in Ultrawide Monitor,1,379.99,10/08/19 07:59,"673 Pine St, Seattle, WA 98101" +279635,AAA Batteries (4-pack),2,2.99,10/23/19 13:11,"100 Johnson St, Seattle, WA 98101" +279636,Bose SoundSport Headphones,1,99.99,10/17/19 15:43,"740 2nd St, Los Angeles, CA 90001" +279637,Apple Airpods Headphones,1,150,10/03/19 11:54,"695 4th St, Atlanta, GA 30301" +279638,iPhone,1,700,10/24/19 19:40,"626 8th St, Boston, MA 02215" +279639,Wired Headphones,1,11.99,10/07/19 14:22,"336 1st St, Dallas, TX 75001" +279640,Lightning Charging Cable,1,14.95,10/19/19 21:39,"504 14th St, San Francisco, CA 94016" +279641,Apple Airpods Headphones,1,150,10/04/19 20:38,"784 Hickory St, Los Angeles, CA 90001" +279642,Bose SoundSport Headphones,1,99.99,10/13/19 08:24,"748 Highland St, Austin, TX 73301" +279642,Wired Headphones,1,11.99,10/13/19 08:24,"748 Highland St, Austin, TX 73301" +279643,USB-C Charging Cable,1,11.95,10/29/19 09:17,"338 Ridge St, San Francisco, CA 94016" +279644,Lightning Charging Cable,1,14.95,10/03/19 12:18,"77 Madison St, Los Angeles, CA 90001" +279645,34in Ultrawide Monitor,1,379.99,10/08/19 13:13,"327 5th St, Atlanta, GA 30301" +279646,AA Batteries (4-pack),3,3.84,10/22/19 19:07,"579 River St, Dallas, TX 75001" +279647,AAA Batteries (4-pack),2,2.99,10/02/19 14:15,"999 4th St, Dallas, TX 75001" +279648,Lightning Charging Cable,1,14.95,10/12/19 16:21,"480 1st St, San Francisco, CA 94016" +279649,Bose SoundSport Headphones,1,99.99,10/12/19 17:33,"857 1st St, San Francisco, CA 94016" +279650,Lightning Charging Cable,1,14.95,10/04/19 14:56,"521 Lincoln St, New York City, NY 10001" +279651,Lightning Charging Cable,1,14.95,10/19/19 18:15,"760 Church St, San Francisco, CA 94016" +279652,Bose SoundSport Headphones,1,99.99,10/22/19 10:56,"445 Main St, Boston, MA 02215" +279653,Vareebadd Phone,1,400,10/08/19 18:05,"285 Center St, Boston, MA 02215" +279654,Lightning Charging Cable,1,14.95,10/14/19 17:33,"808 Hill St, Dallas, TX 75001" +279655,34in Ultrawide Monitor,1,379.99,10/25/19 20:07,"400 South St, Los Angeles, CA 90001" +279656,USB-C Charging Cable,1,11.95,10/14/19 09:21,"73 South St, San Francisco, CA 94016" +279657,USB-C Charging Cable,2,11.95,10/10/19 13:19,"182 Cedar St, San Francisco, CA 94016" +279658,Macbook Pro Laptop,1,1700,10/05/19 15:57,"701 Lakeview St, Atlanta, GA 30301" +279659,Lightning Charging Cable,2,14.95,10/17/19 12:44,"49 Cedar St, San Francisco, CA 94016" +279660,34in Ultrawide Monitor,1,379.99,10/07/19 21:21,"860 1st St, Atlanta, GA 30301" +279661,Google Phone,1,600,10/24/19 18:25,"124 Adams St, Atlanta, GA 30301" +279662,Flatscreen TV,1,300,10/20/19 12:54,"361 Highland St, Los Angeles, CA 90001" +279663,Lightning Charging Cable,1,14.95,10/29/19 20:08,"816 Adams St, San Francisco, CA 94016" +279664,USB-C Charging Cable,1,11.95,10/26/19 15:38,"630 Hill St, Boston, MA 02215" +279665,iPhone,1,700,10/06/19 14:20,"389 Lakeview St, Portland, OR 97035" +279666,ThinkPad Laptop,1,999.99,10/09/19 16:05,"8 Forest St, Boston, MA 02215" +279667,27in FHD Monitor,1,149.99,10/25/19 22:11,"596 Sunset St, Los Angeles, CA 90001" +279668,Lightning Charging Cable,1,14.95,10/18/19 22:04,"85 11th St, Los Angeles, CA 90001" +279669,USB-C Charging Cable,1,11.95,10/16/19 16:17,"999 Pine St, San Francisco, CA 94016" +279670,AAA Batteries (4-pack),2,2.99,10/03/19 13:22,"115 River St, Austin, TX 73301" +279671,ThinkPad Laptop,1,999.99,10/19/19 09:22,"479 Johnson St, New York City, NY 10001" +279672,Apple Airpods Headphones,1,150,10/12/19 10:29,"133 Dogwood St, Seattle, WA 98101" +279673,AA Batteries (4-pack),1,3.84,10/24/19 15:17,"928 Pine St, Los Angeles, CA 90001" +279674,27in FHD Monitor,1,149.99,10/08/19 01:25,"546 Chestnut St, New York City, NY 10001" +279675,iPhone,1,700,10/17/19 08:20,"870 Meadow St, Los Angeles, CA 90001" +279676,iPhone,1,700,10/21/19 22:53,"856 Meadow St, Los Angeles, CA 90001" +279676,Lightning Charging Cable,1,14.95,10/21/19 22:53,"856 Meadow St, Los Angeles, CA 90001" +279677,AAA Batteries (4-pack),1,2.99,10/24/19 10:52,"998 Madison St, Boston, MA 02215" +279678,27in FHD Monitor,1,149.99,10/05/19 11:27,"8 South St, Los Angeles, CA 90001" +279679,27in 4K Gaming Monitor,1,389.99,10/06/19 15:00,"207 Madison St, New York City, NY 10001" +279680,USB-C Charging Cable,1,11.95,10/26/19 19:36,"359 Spruce St, San Francisco, CA 94016" +279681,iPhone,1,700,10/31/19 23:39,"116 5th St, Dallas, TX 75001" +279681,Apple Airpods Headphones,1,150,10/31/19 23:39,"116 5th St, Dallas, TX 75001" +279682,AA Batteries (4-pack),1,3.84,10/16/19 15:25,"469 Hickory St, Seattle, WA 98101" +279683,Bose SoundSport Headphones,1,99.99,10/12/19 20:03,"977 South St, New York City, NY 10001" +279684,Lightning Charging Cable,1,14.95,10/19/19 10:00,"391 Forest St, Portland, OR 97035" +279685,AA Batteries (4-pack),1,3.84,10/05/19 21:48,"280 South St, San Francisco, CA 94016" +279686,USB-C Charging Cable,1,11.95,10/01/19 11:44,"195 Willow St, Los Angeles, CA 90001" +279687,Bose SoundSport Headphones,1,99.99,10/22/19 09:09,"902 Madison St, New York City, NY 10001" +279688,Wired Headphones,1,11.99,10/05/19 11:58,"594 Maple St, New York City, NY 10001" +279689,iPhone,1,700,10/12/19 10:00,"592 Dogwood St, New York City, NY 10001" +279690,27in 4K Gaming Monitor,1,389.99,10/30/19 18:08,"926 Highland St, Los Angeles, CA 90001" +279691,AA Batteries (4-pack),1,3.84,10/27/19 18:42,"27 Jackson St, Seattle, WA 98101" +279692,34in Ultrawide Monitor,1,379.99,10/21/19 11:47,"300 Jefferson St, Austin, TX 73301" +279693,AAA Batteries (4-pack),1,2.99,10/22/19 23:16,"775 Forest St, Los Angeles, CA 90001" +279694,AAA Batteries (4-pack),2,2.99,10/31/19 18:03,"795 Lakeview St, Boston, MA 02215" +279695,Google Phone,1,600,10/22/19 16:11,"514 Park St, Los Angeles, CA 90001" +279695,USB-C Charging Cable,1,11.95,10/22/19 16:11,"514 Park St, Los Angeles, CA 90001" +279696,USB-C Charging Cable,1,11.95,10/11/19 15:35,"427 Main St, Seattle, WA 98101" +279697,iPhone,1,700,10/18/19 15:47,"828 7th St, Austin, TX 73301" +279698,Lightning Charging Cable,1,14.95,10/14/19 17:00,"991 Wilson St, Austin, TX 73301" +279699,USB-C Charging Cable,1,11.95,10/03/19 21:49,"947 Madison St, Boston, MA 02215" +279700,Apple Airpods Headphones,1,150,10/24/19 17:05,"138 Hill St, Los Angeles, CA 90001" +279701,Google Phone,2,600,10/09/19 21:53,"626 2nd St, Austin, TX 73301" +279702,iPhone,1,700,10/19/19 22:36,"312 4th St, San Francisco, CA 94016" +279703,Wired Headphones,1,11.99,10/01/19 22:10,"749 Hickory St, Dallas, TX 75001" +279704,Lightning Charging Cable,2,14.95,10/17/19 00:20,"130 Wilson St, San Francisco, CA 94016" +279705,Wired Headphones,2,11.99,10/07/19 12:29,"474 Center St, Dallas, TX 75001" +279706,Apple Airpods Headphones,1,150,10/17/19 10:17,"386 8th St, San Francisco, CA 94016" +279707,Apple Airpods Headphones,1,150,10/22/19 21:10,"983 Center St, Atlanta, GA 30301" +279708,27in 4K Gaming Monitor,1,389.99,10/14/19 09:09,"991 Spruce St, San Francisco, CA 94016" +279709,34in Ultrawide Monitor,1,379.99,10/14/19 10:43,"318 Center St, San Francisco, CA 94016" +279710,AA Batteries (4-pack),1,3.84,10/15/19 16:10,"876 Spruce St, San Francisco, CA 94016" +279711,Lightning Charging Cable,1,14.95,10/07/19 20:07,"399 Lakeview St, San Francisco, CA 94016" +279712,AAA Batteries (4-pack),3,2.99,10/29/19 22:29,"158 Jackson St, Los Angeles, CA 90001" +279713,Macbook Pro Laptop,1,1700,10/11/19 18:59,"440 North St, Seattle, WA 98101" +279714,AA Batteries (4-pack),1,3.84,10/04/19 09:59,"471 Walnut St, San Francisco, CA 94016" +279715,34in Ultrawide Monitor,1,379.99,10/31/19 14:01,"779 9th St, San Francisco, CA 94016" +279716,ThinkPad Laptop,1,999.99,10/15/19 20:26,"849 14th St, Portland, ME 04101" +279717,ThinkPad Laptop,1,999.99,10/15/19 13:38,"385 1st St, Austin, TX 73301" +279718,USB-C Charging Cable,1,11.95,10/24/19 07:58,"60 13th St, New York City, NY 10001" +279719,Macbook Pro Laptop,1,1700,10/27/19 15:25,"49 Cedar St, Los Angeles, CA 90001" +279720,ThinkPad Laptop,1,999.99,10/13/19 07:22,"815 Jefferson St, Seattle, WA 98101" +279721,AA Batteries (4-pack),1,3.84,10/20/19 11:00,"617 Ridge St, New York City, NY 10001" +279722,Bose SoundSport Headphones,1,99.99,10/23/19 00:22,"376 Hill St, San Francisco, CA 94016" +279723,Apple Airpods Headphones,1,150,10/29/19 16:34,"707 Cherry St, San Francisco, CA 94016" +279724,Macbook Pro Laptop,1,1700,10/09/19 08:49,"985 Center St, New York City, NY 10001" +279725,USB-C Charging Cable,1,11.95,10/05/19 18:59,"859 Cherry St, Seattle, WA 98101" +279726,27in 4K Gaming Monitor,1,389.99,10/02/19 18:22,"345 Walnut St, San Francisco, CA 94016" +279727,USB-C Charging Cable,1,11.95,10/21/19 20:26,"450 Walnut St, Seattle, WA 98101" +279728,iPhone,1,700,10/13/19 23:14,"309 Main St, San Francisco, CA 94016" +279729,Macbook Pro Laptop,1,1700,10/28/19 17:43,"964 Chestnut St, Los Angeles, CA 90001" +279730,Wired Headphones,1,11.99,10/20/19 12:09,"878 8th St, Los Angeles, CA 90001" +279730,iPhone,1,700,10/20/19 12:09,"878 8th St, Los Angeles, CA 90001" +279731,AA Batteries (4-pack),1,3.84,10/14/19 09:31,"411 6th St, Los Angeles, CA 90001" +279732,Bose SoundSport Headphones,1,99.99,10/23/19 15:48,"195 Johnson St, Los Angeles, CA 90001" +279733,USB-C Charging Cable,1,11.95,10/26/19 10:29,"107 Forest St, San Francisco, CA 94016" +279734,Bose SoundSport Headphones,1,99.99,10/25/19 13:30,"539 14th St, Austin, TX 73301" +279735,AA Batteries (4-pack),3,3.84,10/23/19 13:39,"97 Lincoln St, Portland, OR 97035" +279736,USB-C Charging Cable,1,11.95,10/01/19 17:59,"585 South St, Atlanta, GA 30301" +279737,USB-C Charging Cable,1,11.95,10/17/19 21:28,"41 Pine St, Dallas, TX 75001" +279738,27in 4K Gaming Monitor,1,389.99,10/01/19 07:07,"320 Lincoln St, Boston, MA 02215" +279739,Wired Headphones,1,11.99,10/29/19 13:23,"658 Chestnut St, Seattle, WA 98101" +279740,Flatscreen TV,1,300,10/20/19 20:57,"299 Wilson St, San Francisco, CA 94016" +279741,34in Ultrawide Monitor,1,379.99,10/14/19 17:06,"702 North St, Portland, ME 04101" +279742,USB-C Charging Cable,1,11.95,10/12/19 21:30,"830 7th St, Dallas, TX 75001" +279743,Wired Headphones,1,11.99,10/10/19 16:12,"874 Lake St, Atlanta, GA 30301" +279744,Bose SoundSport Headphones,1,99.99,10/20/19 12:52,"729 Chestnut St, Boston, MA 02215" +279745,20in Monitor,1,109.99,10/11/19 07:17,"100 Adams St, Atlanta, GA 30301" +279746,ThinkPad Laptop,1,999.99,10/02/19 14:38,"212 Forest St, Los Angeles, CA 90001" +279747,27in FHD Monitor,1,149.99,10/04/19 20:04,"676 Lakeview St, Austin, TX 73301" +279748,AAA Batteries (4-pack),2,2.99,10/18/19 13:59,"875 Spruce St, Los Angeles, CA 90001" +279749,USB-C Charging Cable,1,11.95,10/18/19 20:22,"527 2nd St, New York City, NY 10001" +279750,Lightning Charging Cable,1,14.95,10/08/19 15:36,"178 10th St, Atlanta, GA 30301" +279751,Lightning Charging Cable,1,14.95,10/15/19 20:20,"140 Cedar St, San Francisco, CA 94016" +279752,Wired Headphones,1,11.99,10/19/19 17:22,"93 Wilson St, Dallas, TX 75001" +279753,AAA Batteries (4-pack),5,2.99,10/22/19 21:59,"84 13th St, Seattle, WA 98101" +279754,Wired Headphones,1,11.99,10/09/19 12:39,"265 Wilson St, Austin, TX 73301" +279755,27in 4K Gaming Monitor,1,389.99,10/31/19 23:00,"613 Main St, Boston, MA 02215" +279756,AA Batteries (4-pack),1,3.84,10/12/19 22:14,"883 Spruce St, New York City, NY 10001" +279757,Bose SoundSport Headphones,1,99.99,10/20/19 12:22,"404 Willow St, Boston, MA 02215" +279758,AAA Batteries (4-pack),2,2.99,10/17/19 18:07,"3 West St, Portland, OR 97035" +279759,USB-C Charging Cable,1,11.95,10/07/19 23:52,"997 Forest St, Dallas, TX 75001" +279760,Lightning Charging Cable,2,14.95,10/01/19 16:04,"470 Ridge St, San Francisco, CA 94016" +279760,USB-C Charging Cable,1,11.95,10/01/19 16:04,"470 Ridge St, San Francisco, CA 94016" +279761,Lightning Charging Cable,1,14.95,10/31/19 21:02,"597 10th St, Dallas, TX 75001" +279762,AA Batteries (4-pack),1,3.84,10/22/19 09:34,"519 Maple St, Boston, MA 02215" +279763,Macbook Pro Laptop,1,1700,10/21/19 22:28,"337 Cherry St, Los Angeles, CA 90001" +279764,Bose SoundSport Headphones,1,99.99,10/05/19 13:50,"678 10th St, Seattle, WA 98101" +279765,USB-C Charging Cable,1,11.95,10/27/19 05:47,"619 Ridge St, Los Angeles, CA 90001" +279766,Lightning Charging Cable,1,14.95,10/04/19 12:07,"698 South St, New York City, NY 10001" +279767,USB-C Charging Cable,1,11.95,10/03/19 14:12,"24 Sunset St, Dallas, TX 75001" +279767,34in Ultrawide Monitor,1,379.99,10/03/19 14:12,"24 Sunset St, Dallas, TX 75001" +279768,AA Batteries (4-pack),1,3.84,10/14/19 20:11,"92 1st St, San Francisco, CA 94016" +279769,Apple Airpods Headphones,1,150,10/07/19 19:51,"697 Walnut St, Dallas, TX 75001" +279770,Bose SoundSport Headphones,1,99.99,10/17/19 00:55,"604 North St, San Francisco, CA 94016" +279771,AAA Batteries (4-pack),1,2.99,10/27/19 20:18,"229 6th St, Boston, MA 02215" +279772,iPhone,1,700,10/20/19 14:06,"111 Dogwood St, Seattle, WA 98101" +279772,Wired Headphones,1,11.99,10/20/19 14:06,"111 Dogwood St, Seattle, WA 98101" +279773,27in FHD Monitor,1,149.99,10/05/19 11:15,"907 1st St, San Francisco, CA 94016" +279774,27in 4K Gaming Monitor,1,389.99,10/11/19 12:26,"578 Johnson St, New York City, NY 10001" +279775,27in 4K Gaming Monitor,1,389.99,10/05/19 19:58,"287 Jefferson St, Los Angeles, CA 90001" +279776,Apple Airpods Headphones,1,150,10/29/19 18:20,"572 Spruce St, Los Angeles, CA 90001" +279777,Lightning Charging Cable,1,14.95,10/15/19 16:56,"996 Washington St, Dallas, TX 75001" +279778,Vareebadd Phone,1,400,10/15/19 12:44,"468 1st St, Boston, MA 02215" +279779,AA Batteries (4-pack),1,3.84,10/18/19 17:07,"313 Madison St, Portland, OR 97035" +279780,AAA Batteries (4-pack),2,2.99,10/05/19 08:03,"501 Jackson St, Dallas, TX 75001" +279781,27in FHD Monitor,1,149.99,10/25/19 15:16,"71 Spruce St, Los Angeles, CA 90001" +279782,ThinkPad Laptop,1,999.99,10/20/19 20:43,"590 Church St, Dallas, TX 75001" +279783,Wired Headphones,2,11.99,10/09/19 10:01,"587 14th St, San Francisco, CA 94016" +279784,LG Dryer,1,600.0,10/22/19 23:28,"986 Adams St, Boston, MA 02215" +279785,USB-C Charging Cable,1,11.95,10/12/19 17:47,"935 Spruce St, Boston, MA 02215" +279786,Wired Headphones,1,11.99,10/04/19 19:59,"342 Johnson St, San Francisco, CA 94016" +279787,27in FHD Monitor,1,149.99,10/12/19 04:42,"141 Meadow St, Los Angeles, CA 90001" +279788,Wired Headphones,1,11.99,10/29/19 23:36,"395 Dogwood St, Austin, TX 73301" +279789,Wired Headphones,1,11.99,10/15/19 10:27,"630 11th St, Los Angeles, CA 90001" +279790,USB-C Charging Cable,1,11.95,10/18/19 13:38,"767 Lincoln St, Boston, MA 02215" +279791,Google Phone,1,600,10/21/19 11:37,"752 Madison St, San Francisco, CA 94016" +279792,USB-C Charging Cable,1,11.95,10/14/19 10:15,"967 14th St, Atlanta, GA 30301" +279793,Bose SoundSport Headphones,1,99.99,10/09/19 12:02,"86 Spruce St, Austin, TX 73301" +279794,Bose SoundSport Headphones,1,99.99,10/06/19 10:42,"761 Walnut St, San Francisco, CA 94016" +279795,ThinkPad Laptop,1,999.99,10/13/19 16:51,"804 13th St, Los Angeles, CA 90001" +279796,Macbook Pro Laptop,1,1700,10/06/19 23:00,"797 Jefferson St, Atlanta, GA 30301" +279797,Flatscreen TV,1,300,10/29/19 16:56,"766 River St, San Francisco, CA 94016" +279798,Lightning Charging Cable,1,14.95,10/05/19 20:45,"826 5th St, San Francisco, CA 94016" +279799,Lightning Charging Cable,1,14.95,10/14/19 21:32,"636 Elm St, New York City, NY 10001" +279800,Lightning Charging Cable,1,14.95,10/28/19 20:01,"357 9th St, Los Angeles, CA 90001" +279801,AA Batteries (4-pack),3,3.84,10/27/19 14:29,"79 10th St, Boston, MA 02215" +279802,34in Ultrawide Monitor,1,379.99,10/20/19 19:29,"119 Cherry St, Austin, TX 73301" +279803,AAA Batteries (4-pack),1,2.99,10/19/19 00:09,"157 Cherry St, San Francisco, CA 94016" +279804,USB-C Charging Cable,1,11.95,10/04/19 12:03,"552 7th St, San Francisco, CA 94016" +279805,AA Batteries (4-pack),2,3.84,10/17/19 18:43,"685 Ridge St, San Francisco, CA 94016" +279806,USB-C Charging Cable,1,11.95,10/12/19 08:28,"915 Pine St, San Francisco, CA 94016" +279807,AAA Batteries (4-pack),1,2.99,10/19/19 10:05,"210 Hill St, Seattle, WA 98101" +279808,Lightning Charging Cable,1,14.95,10/24/19 13:00,"52 North St, Boston, MA 02215" +279809,AA Batteries (4-pack),2,3.84,10/03/19 06:25,"726 11th St, Portland, OR 97035" +279810,AA Batteries (4-pack),1,3.84,10/03/19 10:16,"727 Wilson St, Los Angeles, CA 90001" +279811,Lightning Charging Cable,1,14.95,10/26/19 18:13,"467 Lakeview St, Boston, MA 02215" +279812,AAA Batteries (4-pack),3,2.99,10/19/19 12:54,"588 Jefferson St, San Francisco, CA 94016" +279813,USB-C Charging Cable,1,11.95,10/25/19 12:29,"671 5th St, Austin, TX 73301" +279814,USB-C Charging Cable,1,11.95,10/17/19 10:56,"124 West St, Los Angeles, CA 90001" +279815,ThinkPad Laptop,1,999.99,10/08/19 16:09,"390 Willow St, San Francisco, CA 94016" +279816,AAA Batteries (4-pack),2,2.99,10/09/19 01:33,"706 Meadow St, Seattle, WA 98101" +279817,Apple Airpods Headphones,1,150,10/11/19 12:54,"186 Madison St, Los Angeles, CA 90001" +279818,USB-C Charging Cable,1,11.95,10/14/19 11:53,"332 Washington St, Seattle, WA 98101" +279819,Macbook Pro Laptop,1,1700,10/13/19 21:41,"420 Park St, Los Angeles, CA 90001" +279820,Vareebadd Phone,1,400,10/06/19 19:03,"853 Sunset St, Dallas, TX 75001" +279820,USB-C Charging Cable,1,11.95,10/06/19 19:03,"853 Sunset St, Dallas, TX 75001" +279821,27in FHD Monitor,1,149.99,10/30/19 21:19,"555 14th St, Seattle, WA 98101" +279822,Wired Headphones,1,11.99,10/24/19 22:35,"571 Ridge St, Dallas, TX 75001" +279823,34in Ultrawide Monitor,1,379.99,10/04/19 19:56,"137 Sunset St, New York City, NY 10001" +279824,Lightning Charging Cable,1,14.95,10/31/19 11:16,"439 Hickory St, San Francisco, CA 94016" +279825,USB-C Charging Cable,2,11.95,10/20/19 14:56,"595 4th St, New York City, NY 10001" +279826,USB-C Charging Cable,1,11.95,10/03/19 12:30,"120 Johnson St, Boston, MA 02215" +279826,Lightning Charging Cable,1,14.95,10/03/19 12:30,"120 Johnson St, Boston, MA 02215" +279827,27in FHD Monitor,1,149.99,10/25/19 23:15,"445 Washington St, Boston, MA 02215" +279828,Lightning Charging Cable,1,14.95,10/22/19 15:01,"867 Highland St, Austin, TX 73301" +279829,AAA Batteries (4-pack),1,2.99,10/01/19 19:52,"712 Lake St, Los Angeles, CA 90001" +279830,Macbook Pro Laptop,1,1700,10/15/19 20:32,"327 Lincoln St, Austin, TX 73301" +279831,USB-C Charging Cable,2,11.95,10/16/19 21:34,"99 6th St, Dallas, TX 75001" +279832,AAA Batteries (4-pack),4,2.99,10/07/19 09:20,"967 1st St, Dallas, TX 75001" +279833,Bose SoundSport Headphones,1,99.99,10/12/19 13:20,"783 Forest St, San Francisco, CA 94016" +279834,Bose SoundSport Headphones,1,99.99,10/25/19 20:31,"210 2nd St, Atlanta, GA 30301" +279835,34in Ultrawide Monitor,1,379.99,10/21/19 15:41,"537 Pine St, San Francisco, CA 94016" +279836,USB-C Charging Cable,1,11.95,10/05/19 10:58,"501 Cherry St, San Francisco, CA 94016" +279837,ThinkPad Laptop,1,999.99,10/05/19 07:53,"832 Washington St, San Francisco, CA 94016" +279838,AAA Batteries (4-pack),5,2.99,10/30/19 19:51,"140 5th St, San Francisco, CA 94016" +279839,Flatscreen TV,1,300,10/07/19 08:41,"311 Lakeview St, San Francisco, CA 94016" +279840,AAA Batteries (4-pack),2,2.99,10/02/19 13:45,"514 Adams St, Boston, MA 02215" +279841,20in Monitor,1,109.99,10/03/19 17:25,"417 Adams St, Dallas, TX 75001" +279842,27in 4K Gaming Monitor,1,389.99,10/22/19 10:46,"889 Walnut St, Portland, OR 97035" +279843,USB-C Charging Cable,1,11.95,10/13/19 15:18,"314 Hickory St, Boston, MA 02215" +279844,iPhone,1,700,10/17/19 15:07,"775 12th St, San Francisco, CA 94016" +279845,ThinkPad Laptop,1,999.99,10/13/19 19:43,"378 Spruce St, New York City, NY 10001" +279846,AA Batteries (4-pack),1,3.84,10/29/19 22:10,"880 South St, Seattle, WA 98101" +279847,USB-C Charging Cable,1,11.95,10/20/19 18:25,"388 10th St, Seattle, WA 98101" +279848,AA Batteries (4-pack),2,3.84,10/18/19 18:49,"315 Walnut St, San Francisco, CA 94016" +279849,Google Phone,1,600,10/10/19 16:30,"863 9th St, Boston, MA 02215" +279850,USB-C Charging Cable,1,11.95,10/06/19 06:42,"865 Pine St, Dallas, TX 75001" +279851,AAA Batteries (4-pack),1,2.99,10/20/19 22:37,"220 North St, Los Angeles, CA 90001" +279852,LG Dryer,1,600.0,10/18/19 21:42,"651 Adams St, Dallas, TX 75001" +279853,Flatscreen TV,1,300,10/06/19 21:22,"396 Sunset St, Boston, MA 02215" +279854,Google Phone,1,600,10/03/19 10:18,"726 Center St, Atlanta, GA 30301" +279855,AA Batteries (4-pack),1,3.84,10/30/19 15:02,"357 Madison St, Los Angeles, CA 90001" +279856,Bose SoundSport Headphones,1,99.99,10/24/19 11:56,"289 Wilson St, San Francisco, CA 94016" +279857,AA Batteries (4-pack),2,3.84,10/03/19 13:13,"934 12th St, Atlanta, GA 30301" +279858,Flatscreen TV,1,300,10/13/19 13:20,"171 6th St, San Francisco, CA 94016" +279859,Lightning Charging Cable,1,14.95,10/16/19 10:35,"928 Madison St, San Francisco, CA 94016" +279860,Macbook Pro Laptop,1,1700,10/16/19 18:35,"543 Center St, Atlanta, GA 30301" +279861,Apple Airpods Headphones,1,150,10/17/19 08:29,"772 Cedar St, Boston, MA 02215" +279862,Apple Airpods Headphones,1,150,10/10/19 13:45,"162 Maple St, Dallas, TX 75001" +279863,Wired Headphones,1,11.99,10/06/19 16:31,"821 Cedar St, Boston, MA 02215" +279864,USB-C Charging Cable,1,11.95,10/29/19 21:00,"734 Center St, San Francisco, CA 94016" +279865,Vareebadd Phone,1,400,10/10/19 06:30,"642 Madison St, San Francisco, CA 94016" +279866,34in Ultrawide Monitor,1,379.99,10/19/19 07:49,"738 Highland St, Los Angeles, CA 90001" +279867,LG Washing Machine,1,600.0,10/28/19 16:32,"912 Meadow St, San Francisco, CA 94016" +279868,Wired Headphones,1,11.99,10/20/19 10:34,"139 Elm St, San Francisco, CA 94016" +279869,USB-C Charging Cable,1,11.95,10/17/19 11:34,"509 Wilson St, New York City, NY 10001" +279870,AAA Batteries (4-pack),1,2.99,10/26/19 21:11,"110 Washington St, Los Angeles, CA 90001" +279871,Apple Airpods Headphones,1,150,10/09/19 10:13,"719 Cedar St, New York City, NY 10001" +279871,AAA Batteries (4-pack),2,2.99,10/09/19 10:13,"719 Cedar St, New York City, NY 10001" +279872,Wired Headphones,1,11.99,10/25/19 07:07,"708 Highland St, Boston, MA 02215" +279873,Lightning Charging Cable,1,14.95,10/09/19 12:02,"179 Jackson St, Seattle, WA 98101" +279874,AAA Batteries (4-pack),1,2.99,10/20/19 23:22,"25 South St, Austin, TX 73301" +279875,Apple Airpods Headphones,1,150,10/29/19 01:03,"70 Hickory St, San Francisco, CA 94016" +279876,Lightning Charging Cable,1,14.95,10/24/19 07:42,"236 13th St, Seattle, WA 98101" +279877,Wired Headphones,1,11.99,10/10/19 06:49,"590 Pine St, Austin, TX 73301" +279878,USB-C Charging Cable,1,11.95,10/09/19 08:51,"538 West St, Atlanta, GA 30301" +279879,Apple Airpods Headphones,1,150,10/04/19 16:00,"938 Pine St, New York City, NY 10001" +279879,20in Monitor,1,109.99,10/04/19 16:00,"938 Pine St, New York City, NY 10001" +279880,Wired Headphones,1,11.99,10/14/19 00:07,"407 Hill St, San Francisco, CA 94016" +279881,20in Monitor,1,109.99,10/07/19 16:18,"95 9th St, San Francisco, CA 94016" +279882,Bose SoundSport Headphones,1,99.99,10/26/19 15:45,"148 Willow St, Los Angeles, CA 90001" +279883,Lightning Charging Cable,1,14.95,10/10/19 15:26,"848 6th St, Los Angeles, CA 90001" +279884,USB-C Charging Cable,1,11.95,10/05/19 15:01,"290 Wilson St, Portland, ME 04101" +279885,USB-C Charging Cable,1,11.95,10/11/19 22:23,"997 Willow St, Los Angeles, CA 90001" +279886,Bose SoundSport Headphones,1,99.99,10/01/19 15:36,"336 Meadow St, Portland, OR 97035" +279887,Flatscreen TV,1,300,10/10/19 18:42,"954 Lincoln St, Atlanta, GA 30301" +279888,Bose SoundSport Headphones,1,99.99,10/28/19 23:30,"396 Willow St, Los Angeles, CA 90001" +279889,Lightning Charging Cable,1,14.95,10/31/19 19:33,"569 Cherry St, San Francisco, CA 94016" +279890,Lightning Charging Cable,1,14.95,10/19/19 18:08,"938 Lakeview St, Seattle, WA 98101" +279891,27in FHD Monitor,1,149.99,10/11/19 01:10,"720 Sunset St, Dallas, TX 75001" +279892,USB-C Charging Cable,1,11.95,10/02/19 15:29,"596 Cedar St, San Francisco, CA 94016" +279893,34in Ultrawide Monitor,1,379.99,10/20/19 10:00,"450 Pine St, Atlanta, GA 30301" +279894,Apple Airpods Headphones,1,150,10/18/19 09:51,"803 Forest St, San Francisco, CA 94016" +279895,27in FHD Monitor,1,149.99,10/24/19 10:09,"239 Hill St, San Francisco, CA 94016" +279896,Apple Airpods Headphones,1,150,10/10/19 19:14,"378 5th St, San Francisco, CA 94016" +279897,Google Phone,1,600,10/13/19 20:29,"104 West St, Boston, MA 02215" +279898,AA Batteries (4-pack),1,3.84,10/24/19 17:33,"174 Jefferson St, Seattle, WA 98101" +279899,Apple Airpods Headphones,1,150,10/25/19 13:52,"698 Pine St, Dallas, TX 75001" +279900,Wired Headphones,2,11.99,10/07/19 16:13,"813 13th St, Los Angeles, CA 90001" +279901,Bose SoundSport Headphones,1,99.99,10/10/19 16:47,"373 6th St, San Francisco, CA 94016" +279902,AA Batteries (4-pack),1,3.84,10/07/19 12:59,"461 Main St, Boston, MA 02215" +279903,Wired Headphones,2,11.99,10/16/19 16:13,"64 Pine St, Austin, TX 73301" +279904,Macbook Pro Laptop,1,1700,10/28/19 06:26,"792 6th St, Dallas, TX 75001" +279905,Google Phone,1,600,10/28/19 10:54,"153 Lincoln St, San Francisco, CA 94016" +279905,Bose SoundSport Headphones,1,99.99,10/28/19 10:54,"153 Lincoln St, San Francisco, CA 94016" +279906,AA Batteries (4-pack),1,3.84,10/10/19 18:08,"400 Lakeview St, San Francisco, CA 94016" +279907,iPhone,1,700,10/18/19 16:52,"799 Maple St, Seattle, WA 98101" +279908,Wired Headphones,1,11.99,10/15/19 03:35,"305 14th St, New York City, NY 10001" +279909,USB-C Charging Cable,1,11.95,10/12/19 13:08,"930 1st St, New York City, NY 10001" +279910,Lightning Charging Cable,1,14.95,10/28/19 20:08,"274 Sunset St, New York City, NY 10001" +279911,USB-C Charging Cable,1,11.95,10/19/19 12:01,"192 Hill St, Austin, TX 73301" +279912,Lightning Charging Cable,1,14.95,10/30/19 13:25,"171 6th St, San Francisco, CA 94016" +279913,AAA Batteries (4-pack),3,2.99,10/22/19 01:36,"52 11th St, New York City, NY 10001" +279914,27in 4K Gaming Monitor,1,389.99,10/07/19 20:50,"596 Jackson St, Dallas, TX 75001" +279915,Lightning Charging Cable,1,14.95,10/29/19 16:08,"880 Madison St, New York City, NY 10001" +279916,AAA Batteries (4-pack),1,2.99,10/24/19 17:38,"414 Spruce St, San Francisco, CA 94016" +279917,34in Ultrawide Monitor,1,379.99,10/20/19 21:19,"204 Wilson St, New York City, NY 10001" +279918,AAA Batteries (4-pack),1,2.99,10/09/19 12:11,"924 Lake St, Atlanta, GA 30301" +279919,27in 4K Gaming Monitor,1,389.99,10/01/19 13:26,"183 River St, Seattle, WA 98101" +279920,Lightning Charging Cable,2,14.95,10/22/19 16:09,"951 Willow St, Los Angeles, CA 90001" +279921,USB-C Charging Cable,1,11.95,10/20/19 08:48,"204 Cherry St, New York City, NY 10001" +279922,USB-C Charging Cable,1,11.95,10/22/19 18:56,"440 Hill St, Dallas, TX 75001" +279923,USB-C Charging Cable,1,11.95,10/04/19 17:31,"264 Forest St, New York City, NY 10001" +279924,20in Monitor,1,109.99,10/27/19 09:40,"86 Dogwood St, San Francisco, CA 94016" +279925,Wired Headphones,1,11.99,10/16/19 21:57,"933 Willow St, Portland, OR 97035" +279926,Google Phone,1,600,10/27/19 17:10,"112 13th St, Boston, MA 02215" +279926,Wired Headphones,1,11.99,10/27/19 17:10,"112 13th St, Boston, MA 02215" +279927,Google Phone,1,600,10/28/19 19:12,"641 Ridge St, New York City, NY 10001" +279928,27in FHD Monitor,1,149.99,10/29/19 13:38,"55 Wilson St, Los Angeles, CA 90001" +279929,USB-C Charging Cable,1,11.95,10/30/19 12:40,"883 Ridge St, San Francisco, CA 94016" +279930,AAA Batteries (4-pack),3,2.99,10/22/19 07:13,"46 Willow St, Atlanta, GA 30301" +279931,Lightning Charging Cable,1,14.95,10/29/19 20:14,"834 11th St, Boston, MA 02215" +279932,AA Batteries (4-pack),1,3.84,10/09/19 05:22,"286 6th St, Boston, MA 02215" +279933,AA Batteries (4-pack),1,3.84,10/17/19 12:57,"404 Wilson St, San Francisco, CA 94016" +279934,Wired Headphones,1,11.99,10/01/19 17:06,"126 Cedar St, San Francisco, CA 94016" +279935,Bose SoundSport Headphones,1,99.99,10/06/19 17:54,"258 12th St, Portland, OR 97035" +279936,Apple Airpods Headphones,1,150,10/22/19 19:40,"26 8th St, New York City, NY 10001" +279937,34in Ultrawide Monitor,1,379.99,10/10/19 17:08,"794 Forest St, Dallas, TX 75001" +279938,34in Ultrawide Monitor,1,379.99,10/15/19 04:51,"912 Jefferson St, Boston, MA 02215" +279939,Lightning Charging Cable,1,14.95,10/15/19 06:36,"958 Lake St, Seattle, WA 98101" +279940,Wired Headphones,1,11.99,10/19/19 16:27,"921 Park St, Portland, OR 97035" +279941,AA Batteries (4-pack),2,3.84,10/19/19 13:05,"987 Maple St, New York City, NY 10001" +279942,27in 4K Gaming Monitor,1,389.99,10/26/19 01:37,"20 11th St, Atlanta, GA 30301" +279943,Apple Airpods Headphones,1,150,10/25/19 13:22,"607 Lakeview St, Boston, MA 02215" +279944,27in 4K Gaming Monitor,1,389.99,10/26/19 19:04,"555 Spruce St, Portland, OR 97035" +279945,USB-C Charging Cable,1,11.95,10/10/19 17:48,"851 9th St, Atlanta, GA 30301" +279946,Bose SoundSport Headphones,1,99.99,10/04/19 18:28,"35 Cedar St, Boston, MA 02215" +279947,AA Batteries (4-pack),1,3.84,10/29/19 08:31,"970 Jackson St, Boston, MA 02215" +279948,AAA Batteries (4-pack),1,2.99,10/03/19 12:37,"208 Cherry St, Austin, TX 73301" +279949,Bose SoundSport Headphones,1,99.99,10/15/19 16:32,"743 Sunset St, San Francisco, CA 94016" +279950,Lightning Charging Cable,1,14.95,10/08/19 08:25,"617 Spruce St, Los Angeles, CA 90001" +279951,AAA Batteries (4-pack),2,2.99,10/22/19 18:23,"246 West St, Boston, MA 02215" +279952,AAA Batteries (4-pack),1,2.99,10/24/19 22:41,"385 Willow St, San Francisco, CA 94016" +279953,USB-C Charging Cable,1,11.95,10/18/19 19:31,"581 Adams St, Seattle, WA 98101" +279954,Google Phone,1,600,10/01/19 18:57,"29 Jefferson St, Atlanta, GA 30301" +279955,Apple Airpods Headphones,1,150,10/11/19 15:19,"235 Elm St, New York City, NY 10001" +279956,USB-C Charging Cable,1,11.95,10/10/19 09:56,"137 14th St, New York City, NY 10001" +279957,Vareebadd Phone,1,400,10/15/19 19:26,"841 Lincoln St, Austin, TX 73301" +279958,ThinkPad Laptop,1,999.99,10/23/19 19:57,"666 Sunset St, Atlanta, GA 30301" +279959,Apple Airpods Headphones,1,150,10/05/19 17:29,"239 Johnson St, Los Angeles, CA 90001" +279959,AAA Batteries (4-pack),1,2.99,10/05/19 17:29,"239 Johnson St, Los Angeles, CA 90001" +279960,Bose SoundSport Headphones,1,99.99,10/14/19 20:12,"464 5th St, Los Angeles, CA 90001" +279961,Lightning Charging Cable,1,14.95,10/04/19 14:16,"86 Meadow St, Austin, TX 73301" +279962,iPhone,1,700,10/18/19 22:37,"686 Meadow St, San Francisco, CA 94016" +279963,ThinkPad Laptop,1,999.99,10/25/19 16:49,"387 Ridge St, San Francisco, CA 94016" +279964,AA Batteries (4-pack),1,3.84,10/28/19 16:53,"986 Main St, Portland, OR 97035" +,,,,, +279965,USB-C Charging Cable,2,11.95,10/27/19 12:21,"546 Washington St, San Francisco, CA 94016" +279966,ThinkPad Laptop,1,999.99,10/09/19 08:18,"665 Maple St, Los Angeles, CA 90001" +279967,27in 4K Gaming Monitor,1,389.99,10/23/19 00:10,"744 Sunset St, Portland, OR 97035" +279968,Apple Airpods Headphones,1,150,10/04/19 18:31,"988 West St, Seattle, WA 98101" +279969,AA Batteries (4-pack),1,3.84,10/08/19 21:34,"636 2nd St, Portland, OR 97035" +279970,Wired Headphones,1,11.99,10/19/19 13:02,"488 Center St, Dallas, TX 75001" +279971,27in 4K Gaming Monitor,1,389.99,10/02/19 06:54,"10 6th St, Los Angeles, CA 90001" +279972,Wired Headphones,1,11.99,10/08/19 16:05,"703 Sunset St, San Francisco, CA 94016" +279973,Vareebadd Phone,1,400,10/23/19 07:43,"298 13th St, Atlanta, GA 30301" +279974,AAA Batteries (4-pack),1,2.99,10/11/19 15:48,"676 Highland St, Los Angeles, CA 90001" +279975,AA Batteries (4-pack),1,3.84,10/04/19 16:17,"558 Spruce St, Seattle, WA 98101" +279975,AAA Batteries (4-pack),2,2.99,10/04/19 16:17,"558 Spruce St, Seattle, WA 98101" +279976,Lightning Charging Cable,1,14.95,10/14/19 18:50,"982 Highland St, Boston, MA 02215" +279977,Vareebadd Phone,1,400,10/12/19 12:03,"861 Hill St, Los Angeles, CA 90001" +279978,27in FHD Monitor,1,149.99,10/10/19 20:22,"197 North St, Los Angeles, CA 90001" +279979,USB-C Charging Cable,2,11.95,10/31/19 18:12,"524 Maple St, Boston, MA 02215" +279980,USB-C Charging Cable,2,11.95,10/31/19 14:51,"372 11th St, Atlanta, GA 30301" +279981,Wired Headphones,1,11.99,10/05/19 09:39,"203 Walnut St, Los Angeles, CA 90001" +279982,AAA Batteries (4-pack),1,2.99,10/30/19 09:56,"41 Dogwood St, Atlanta, GA 30301" +279982,iPhone,1,700,10/30/19 09:56,"41 Dogwood St, Atlanta, GA 30301" +279983,Apple Airpods Headphones,1,150,10/19/19 19:18,"865 Ridge St, Dallas, TX 75001" +279984,27in FHD Monitor,1,149.99,10/10/19 11:28,"70 7th St, Boston, MA 02215" +279985,Macbook Pro Laptop,1,1700,10/03/19 11:54,"907 Elm St, Los Angeles, CA 90001" +279986,LG Dryer,1,600.0,10/24/19 05:26,"847 4th St, Austin, TX 73301" +279987,AA Batteries (4-pack),1,3.84,10/11/19 18:54,"223 Cherry St, Boston, MA 02215" +279988,Apple Airpods Headphones,1,150,10/31/19 01:13,"283 Maple St, Portland, OR 97035" +279989,Wired Headphones,1,11.99,10/16/19 20:59,"383 Meadow St, Los Angeles, CA 90001" +279990,Flatscreen TV,1,300,10/24/19 17:17,"880 Park St, Boston, MA 02215" +279991,34in Ultrawide Monitor,1,379.99,10/02/19 14:31,"316 12th St, Austin, TX 73301" +279992,AAA Batteries (4-pack),2,2.99,10/22/19 18:50,"45 Cedar St, Atlanta, GA 30301" +279993,AA Batteries (4-pack),1,3.84,10/15/19 22:37,"895 Lake St, San Francisco, CA 94016" +279994,Lightning Charging Cable,1,14.95,10/24/19 12:33,"889 8th St, Los Angeles, CA 90001" +279995,USB-C Charging Cable,1,11.95,10/29/19 17:29,"90 Hill St, San Francisco, CA 94016" +279996,Wired Headphones,1,11.99,10/29/19 00:03,"853 Maple St, San Francisco, CA 94016" +279997,Bose SoundSport Headphones,1,99.99,10/02/19 00:54,"531 Elm St, Boston, MA 02215" +279998,Bose SoundSport Headphones,1,99.99,10/04/19 22:33,"318 River St, New York City, NY 10001" +279999,AA Batteries (4-pack),1,3.84,10/27/19 18:13,"748 Forest St, Austin, TX 73301" +280000,20in Monitor,1,109.99,10/24/19 12:09,"882 West St, San Francisco, CA 94016" +280001,Lightning Charging Cable,2,14.95,10/24/19 20:28,"68 Johnson St, Los Angeles, CA 90001" +280002,AA Batteries (4-pack),1,3.84,10/02/19 16:22,"589 Ridge St, San Francisco, CA 94016" +280003,Apple Airpods Headphones,1,150,10/12/19 22:40,"249 Willow St, Seattle, WA 98101" +280004,27in FHD Monitor,1,149.99,10/21/19 19:42,"160 Church St, Los Angeles, CA 90001" +280005,34in Ultrawide Monitor,1,379.99,10/30/19 11:45,"490 Adams St, New York City, NY 10001" +280006,Lightning Charging Cable,1,14.95,10/29/19 10:48,"163 Elm St, Los Angeles, CA 90001" +280007,Bose SoundSport Headphones,1,99.99,10/01/19 08:42,"705 Cedar St, San Francisco, CA 94016" +280008,AA Batteries (4-pack),1,3.84,10/28/19 06:52,"258 Lake St, Portland, OR 97035" +280009,Wired Headphones,1,11.99,10/03/19 19:25,"384 South St, San Francisco, CA 94016" +280010,AAA Batteries (4-pack),1,2.99,10/04/19 06:11,"814 13th St, Portland, OR 97035" +280011,34in Ultrawide Monitor,1,379.99,10/26/19 22:25,"461 Willow St, San Francisco, CA 94016" +280012,AA Batteries (4-pack),1,3.84,10/13/19 22:09,"89 Meadow St, Atlanta, GA 30301" +280012,AA Batteries (4-pack),1,3.84,10/13/19 22:09,"89 Meadow St, Atlanta, GA 30301" +280013,Wired Headphones,1,11.99,10/25/19 09:15,"883 Ridge St, Los Angeles, CA 90001" +280014,ThinkPad Laptop,1,999.99,10/07/19 23:08,"967 Ridge St, Los Angeles, CA 90001" +280015,27in 4K Gaming Monitor,1,389.99,10/13/19 14:33,"318 8th St, Los Angeles, CA 90001" +280016,Apple Airpods Headphones,1,150,10/03/19 00:25,"544 14th St, New York City, NY 10001" +280017,USB-C Charging Cable,1,11.95,10/17/19 00:59,"852 12th St, Atlanta, GA 30301" +280018,Flatscreen TV,1,300,10/20/19 16:04,"604 4th St, Seattle, WA 98101" +280019,Flatscreen TV,1,300,10/09/19 18:27,"143 11th St, Portland, OR 97035" +280020,AAA Batteries (4-pack),1,2.99,10/06/19 09:32,"435 9th St, Los Angeles, CA 90001" +280021,Lightning Charging Cable,1,14.95,10/24/19 13:31,"172 South St, San Francisco, CA 94016" +280022,Wired Headphones,1,11.99,10/13/19 21:20,"830 Madison St, San Francisco, CA 94016" +280023,Bose SoundSport Headphones,1,99.99,10/14/19 15:45,"469 Church St, New York City, NY 10001" +280024,Lightning Charging Cable,1,14.95,10/13/19 18:58,"51 Highland St, San Francisco, CA 94016" +280025,iPhone,1,700,10/11/19 09:18,"829 Pine St, San Francisco, CA 94016" +280026,27in 4K Gaming Monitor,1,389.99,10/07/19 12:15,"788 Jefferson St, Seattle, WA 98101" +280027,USB-C Charging Cable,1,11.95,10/07/19 09:19,"262 Sunset St, Los Angeles, CA 90001" +280028,27in FHD Monitor,1,149.99,10/23/19 22:24,"267 Forest St, Portland, OR 97035" +280029,AAA Batteries (4-pack),1,2.99,10/11/19 21:31,"624 Johnson St, San Francisco, CA 94016" +280030,USB-C Charging Cable,1,11.95,10/11/19 21:15,"680 Ridge St, San Francisco, CA 94016" +280031,USB-C Charging Cable,1,11.95,10/18/19 10:40,"731 Walnut St, Los Angeles, CA 90001" +280032,AA Batteries (4-pack),1,3.84,10/01/19 17:01,"187 14th St, Austin, TX 73301" +280033,AA Batteries (4-pack),2,3.84,10/14/19 11:20,"906 Meadow St, Portland, OR 97035" +280034,Macbook Pro Laptop,1,1700,10/31/19 14:50,"439 Meadow St, Los Angeles, CA 90001" +280035,USB-C Charging Cable,1,11.95,10/20/19 23:15,"631 Hill St, Los Angeles, CA 90001" +280036,Lightning Charging Cable,1,14.95,10/29/19 17:31,"875 Walnut St, Los Angeles, CA 90001" +280037,iPhone,1,700,10/25/19 19:22,"934 Maple St, San Francisco, CA 94016" +280038,Lightning Charging Cable,1,14.95,10/01/19 18:08,"470 Madison St, San Francisco, CA 94016" +280039,AA Batteries (4-pack),1,3.84,10/07/19 01:11,"739 Washington St, Portland, OR 97035" +280040,27in 4K Gaming Monitor,1,389.99,10/20/19 14:27,"4 Elm St, New York City, NY 10001" +280041,USB-C Charging Cable,1,11.95,10/29/19 20:09,"882 River St, San Francisco, CA 94016" +280042,AAA Batteries (4-pack),1,2.99,10/24/19 10:10,"517 Park St, Seattle, WA 98101" +280043,Bose SoundSport Headphones,1,99.99,10/22/19 10:40,"260 Elm St, San Francisco, CA 94016" +280044,USB-C Charging Cable,1,11.95,10/14/19 20:35,"350 North St, New York City, NY 10001" +280045,20in Monitor,1,109.99,10/13/19 19:35,"126 Jackson St, San Francisco, CA 94016" +280046,Bose SoundSport Headphones,1,99.99,10/10/19 08:05,"770 7th St, San Francisco, CA 94016" +280047,AA Batteries (4-pack),1,3.84,10/10/19 08:01,"939 11th St, Portland, OR 97035" +280048,USB-C Charging Cable,2,11.95,10/19/19 18:48,"235 5th St, Dallas, TX 75001" +280049,Google Phone,1,600,10/30/19 12:16,"825 Elm St, Atlanta, GA 30301" +280050,Flatscreen TV,1,300,10/23/19 21:28,"205 Adams St, San Francisco, CA 94016" +280051,27in FHD Monitor,1,149.99,10/29/19 12:37,"462 8th St, Los Angeles, CA 90001" +280052,Flatscreen TV,1,300,10/04/19 16:52,"321 Johnson St, San Francisco, CA 94016" +280053,Macbook Pro Laptop,1,1700,10/16/19 11:21,"574 Maple St, Boston, MA 02215" +280054,iPhone,1,700,10/10/19 15:59,"563 14th St, Atlanta, GA 30301" +280055,27in 4K Gaming Monitor,1,389.99,10/13/19 05:36,"727 Maple St, San Francisco, CA 94016" +280056,34in Ultrawide Monitor,1,379.99,10/03/19 14:05,"689 Highland St, Austin, TX 73301" +280057,Wired Headphones,1,11.99,10/17/19 10:32,"172 Cherry St, Los Angeles, CA 90001" +280058,AAA Batteries (4-pack),1,2.99,10/14/19 21:24,"135 Lake St, Dallas, TX 75001" +280059,Flatscreen TV,1,300,10/06/19 13:22,"684 Dogwood St, Boston, MA 02215" +280060,AAA Batteries (4-pack),3,2.99,10/11/19 15:20,"675 Sunset St, San Francisco, CA 94016" +280061,USB-C Charging Cable,1,11.95,10/04/19 14:14,"503 Washington St, Atlanta, GA 30301" +280062,Bose SoundSport Headphones,1,99.99,10/05/19 11:17,"676 Forest St, Dallas, TX 75001" +280063,27in 4K Gaming Monitor,1,389.99,10/27/19 08:47,"176 West St, San Francisco, CA 94016" +280064,AA Batteries (4-pack),1,3.84,10/17/19 16:35,"541 Lake St, Seattle, WA 98101" +280065,Wired Headphones,1,11.99,10/07/19 12:51,"797 Adams St, Boston, MA 02215" +280066,AAA Batteries (4-pack),3,2.99,10/17/19 06:49,"898 Adams St, Boston, MA 02215" +280067,AAA Batteries (4-pack),1,2.99,10/31/19 06:29,"935 Johnson St, San Francisco, CA 94016" +280068,AA Batteries (4-pack),2,3.84,10/04/19 13:22,"437 13th St, San Francisco, CA 94016" +280069,Apple Airpods Headphones,1,150,10/20/19 20:29,"760 Willow St, San Francisco, CA 94016" +280070,USB-C Charging Cable,1,11.95,10/23/19 21:36,"961 Highland St, Portland, OR 97035" +280071,AAA Batteries (4-pack),2,2.99,10/06/19 14:26,"112 North St, New York City, NY 10001" +280072,iPhone,1,700,10/16/19 10:42,"554 Cherry St, San Francisco, CA 94016" +280073,AAA Batteries (4-pack),2,2.99,10/08/19 12:10,"473 1st St, San Francisco, CA 94016" +280074,Macbook Pro Laptop,1,1700,10/17/19 19:49,"943 13th St, Seattle, WA 98101" +280075,Bose SoundSport Headphones,1,99.99,10/08/19 09:38,"288 5th St, Boston, MA 02215" +280076,27in 4K Gaming Monitor,1,389.99,10/09/19 20:49,"501 Jefferson St, Austin, TX 73301" +280077,AAA Batteries (4-pack),1,2.99,10/15/19 22:17,"704 West St, Boston, MA 02215" +280078,27in FHD Monitor,1,149.99,10/22/19 09:17,"121 9th St, Dallas, TX 75001" +280079,34in Ultrawide Monitor,1,379.99,10/23/19 10:48,"814 Forest St, San Francisco, CA 94016" +280080,Apple Airpods Headphones,1,150,10/02/19 23:44,"928 Dogwood St, Austin, TX 73301" +280081,AA Batteries (4-pack),1,3.84,10/24/19 20:59,"575 South St, New York City, NY 10001" +280082,AAA Batteries (4-pack),1,2.99,10/28/19 08:18,"677 Pine St, San Francisco, CA 94016" +280083,Google Phone,1,600,10/28/19 22:22,"461 Dogwood St, Atlanta, GA 30301" +280084,AAA Batteries (4-pack),1,2.99,10/27/19 09:51,"516 Dogwood St, Portland, OR 97035" +280085,27in FHD Monitor,1,149.99,10/07/19 14:10,"673 Pine St, Boston, MA 02215" +280086,Flatscreen TV,1,300,10/12/19 14:30,"763 Elm St, Seattle, WA 98101" +280087,AA Batteries (4-pack),1,3.84,10/18/19 19:16,"647 Park St, Dallas, TX 75001" +280088,27in 4K Gaming Monitor,1,389.99,10/18/19 20:58,"781 Cherry St, San Francisco, CA 94016" +280089,USB-C Charging Cable,1,11.95,10/21/19 16:48,"118 Washington St, Los Angeles, CA 90001" +280090,Bose SoundSport Headphones,1,99.99,10/31/19 22:46,"74 Elm St, Boston, MA 02215" +280091,AAA Batteries (4-pack),1,2.99,10/29/19 20:39,"372 River St, Los Angeles, CA 90001" +280092,27in FHD Monitor,1,149.99,10/23/19 17:05,"408 Jackson St, Seattle, WA 98101" +280093,Lightning Charging Cable,1,14.95,10/25/19 21:25,"151 Ridge St, Boston, MA 02215" +280094,Apple Airpods Headphones,1,150,10/23/19 19:03,"797 7th St, Austin, TX 73301" +280095,Google Phone,1,600,10/07/19 20:06,"309 10th St, Boston, MA 02215" +280095,USB-C Charging Cable,1,11.95,10/07/19 20:06,"309 10th St, Boston, MA 02215" +280096,USB-C Charging Cable,1,11.95,10/09/19 21:33,"771 7th St, Atlanta, GA 30301" +280097,USB-C Charging Cable,3,11.95,10/23/19 10:18,"362 Walnut St, San Francisco, CA 94016" +280098,Bose SoundSport Headphones,1,99.99,10/28/19 11:36,"943 10th St, San Francisco, CA 94016" +280099,34in Ultrawide Monitor,1,379.99,10/06/19 10:29,"593 6th St, New York City, NY 10001" +280100,Wired Headphones,1,11.99,10/31/19 17:21,"682 7th St, Atlanta, GA 30301" +280101,AA Batteries (4-pack),3,3.84,10/29/19 22:36,"684 Hill St, Seattle, WA 98101" +280102,Bose SoundSport Headphones,1,99.99,10/06/19 22:30,"102 South St, Boston, MA 02215" +280103,Macbook Pro Laptop,1,1700,10/13/19 16:44,"587 Adams St, Seattle, WA 98101" +280104,Bose SoundSport Headphones,1,99.99,10/19/19 10:11,"822 Chestnut St, Portland, OR 97035" +280105,27in FHD Monitor,1,149.99,10/25/19 11:05,"988 Ridge St, Dallas, TX 75001" +280106,AAA Batteries (4-pack),1,2.99,10/12/19 20:48,"859 14th St, Seattle, WA 98101" +280107,Bose SoundSport Headphones,1,99.99,10/27/19 20:54,"992 Center St, Atlanta, GA 30301" +280108,USB-C Charging Cable,1,11.95,10/13/19 17:52,"366 Park St, New York City, NY 10001" +280109,AA Batteries (4-pack),1,3.84,10/21/19 05:49,"658 Lincoln St, Boston, MA 02215" +280110,AAA Batteries (4-pack),1,2.99,10/03/19 08:40,"788 Dogwood St, San Francisco, CA 94016" +280111,Flatscreen TV,1,300,10/11/19 19:43,"276 Center St, Seattle, WA 98101" +280112,Lightning Charging Cable,1,14.95,10/13/19 12:47,"281 1st St, New York City, NY 10001" +280113,Wired Headphones,1,11.99,10/15/19 09:23,"359 Wilson St, Los Angeles, CA 90001" +280114,Vareebadd Phone,1,400,10/26/19 09:15,"878 2nd St, San Francisco, CA 94016" +280114,Bose SoundSport Headphones,1,99.99,10/26/19 09:15,"878 2nd St, San Francisco, CA 94016" +280115,USB-C Charging Cable,1,11.95,10/12/19 10:00,"813 Park St, Boston, MA 02215" +280116,Lightning Charging Cable,1,14.95,10/19/19 21:20,"434 Willow St, Los Angeles, CA 90001" +280117,AAA Batteries (4-pack),1,2.99,10/12/19 19:41,"451 Dogwood St, Boston, MA 02215" +280118,AA Batteries (4-pack),1,3.84,10/14/19 23:09,"4 Walnut St, Boston, MA 02215" +280119,Lightning Charging Cable,1,14.95,10/12/19 20:27,"803 11th St, Atlanta, GA 30301" +280120,Wired Headphones,1,11.99,10/18/19 20:48,"493 Pine St, New York City, NY 10001" +280121,AAA Batteries (4-pack),1,2.99,10/31/19 07:45,"594 Maple St, New York City, NY 10001" +280122,Bose SoundSport Headphones,1,99.99,10/31/19 10:08,"175 Cedar St, Dallas, TX 75001" +280123,27in FHD Monitor,1,149.99,10/10/19 12:37,"801 Lake St, Austin, TX 73301" +280124,USB-C Charging Cable,1,11.95,10/01/19 09:17,"566 9th St, Seattle, WA 98101" +280125,AA Batteries (4-pack),1,3.84,10/17/19 21:46,"95 12th St, New York City, NY 10001" +280126,27in 4K Gaming Monitor,1,389.99,10/25/19 22:11,"492 Meadow St, San Francisco, CA 94016" +280127,USB-C Charging Cable,1,11.95,10/15/19 00:08,"904 4th St, Portland, OR 97035" +280128,34in Ultrawide Monitor,1,379.99,10/15/19 19:23,"835 Church St, San Francisco, CA 94016" +280129,Flatscreen TV,1,300,10/03/19 19:35,"978 7th St, Atlanta, GA 30301" +280130,Lightning Charging Cable,1,14.95,10/07/19 23:11,"668 Jefferson St, San Francisco, CA 94016" +280131,AAA Batteries (4-pack),2,2.99,10/07/19 14:14,"500 Pine St, Los Angeles, CA 90001" +280132,AA Batteries (4-pack),1,3.84,10/01/19 10:48,"562 Madison St, Los Angeles, CA 90001" +280132,AAA Batteries (4-pack),1,2.99,10/01/19 10:48,"562 Madison St, Los Angeles, CA 90001" +280133,Bose SoundSport Headphones,1,99.99,10/14/19 06:38,"816 Ridge St, New York City, NY 10001" +280134,ThinkPad Laptop,1,999.99,10/11/19 21:04,"559 Pine St, Dallas, TX 75001" +280135,Bose SoundSport Headphones,1,99.99,10/24/19 19:34,"318 Ridge St, San Francisco, CA 94016" +280136,AA Batteries (4-pack),3,3.84,10/31/19 13:20,"126 Ridge St, Boston, MA 02215" +280137,Bose SoundSport Headphones,1,99.99,10/31/19 10:46,"110 13th St, Dallas, TX 75001" +280138,Bose SoundSport Headphones,1,99.99,10/29/19 17:52,"438 2nd St, Los Angeles, CA 90001" +280139,Lightning Charging Cable,1,14.95,10/31/19 13:39,"192 Park St, New York City, NY 10001" +280140,Flatscreen TV,1,300,10/17/19 14:40,"975 West St, Los Angeles, CA 90001" +280141,Apple Airpods Headphones,1,150,10/08/19 08:45,"746 Spruce St, Atlanta, GA 30301" +280142,Apple Airpods Headphones,1,150,10/06/19 21:05,"804 7th St, Los Angeles, CA 90001" +280143,AAA Batteries (4-pack),1,2.99,10/17/19 10:47,"153 Ridge St, New York City, NY 10001" +280144,AAA Batteries (4-pack),1,2.99,10/24/19 23:30,"19 Highland St, Atlanta, GA 30301" +280145,AAA Batteries (4-pack),1,2.99,10/02/19 14:53,"188 9th St, Portland, OR 97035" +280146,27in 4K Gaming Monitor,1,389.99,10/28/19 09:14,"938 Lake St, New York City, NY 10001" +280147,Macbook Pro Laptop,1,1700,10/05/19 18:42,"176 Sunset St, Boston, MA 02215" +280148,AA Batteries (4-pack),2,3.84,10/26/19 11:09,"784 Hickory St, Austin, TX 73301" +280149,AA Batteries (4-pack),1,3.84,10/04/19 22:14,"58 Ridge St, New York City, NY 10001" +280150,Lightning Charging Cable,1,14.95,10/09/19 11:09,"986 Meadow St, Seattle, WA 98101" +280151,AAA Batteries (4-pack),1,2.99,10/20/19 17:24,"923 8th St, Seattle, WA 98101" +280152,Bose SoundSport Headphones,1,99.99,10/26/19 22:06,"705 River St, New York City, NY 10001" +280153,Wired Headphones,1,11.99,10/13/19 07:20,"489 Pine St, Atlanta, GA 30301" +280154,Lightning Charging Cable,1,14.95,10/08/19 23:27,"606 Park St, Los Angeles, CA 90001" +280155,Apple Airpods Headphones,1,150,10/24/19 05:12,"880 8th St, Los Angeles, CA 90001" +280156,Wired Headphones,1,11.99,10/01/19 08:31,"983 Wilson St, San Francisco, CA 94016" +280157,Apple Airpods Headphones,1,150,10/15/19 20:14,"544 8th St, Atlanta, GA 30301" +280158,USB-C Charging Cable,2,11.95,10/04/19 10:32,"860 Lakeview St, Boston, MA 02215" +280159,Lightning Charging Cable,1,14.95,10/08/19 22:55,"4 Walnut St, Los Angeles, CA 90001" +280160,Apple Airpods Headphones,1,150,10/16/19 21:10,"18 Hickory St, San Francisco, CA 94016" +280161,Lightning Charging Cable,1,14.95,10/07/19 18:21,"955 Pine St, San Francisco, CA 94016" +280162,Lightning Charging Cable,1,14.95,10/28/19 13:51,"613 Jefferson St, San Francisco, CA 94016" +280163,Apple Airpods Headphones,1,150,10/06/19 18:10,"556 Chestnut St, Atlanta, GA 30301" +280164,Bose SoundSport Headphones,1,99.99,10/05/19 13:23,"310 7th St, Austin, TX 73301" +280165,Bose SoundSport Headphones,1,99.99,10/01/19 20:29,"991 Main St, Atlanta, GA 30301" +280166,Lightning Charging Cable,1,14.95,10/20/19 18:36,"377 Cedar St, Seattle, WA 98101" +280167,Lightning Charging Cable,1,14.95,10/26/19 16:28,"887 Pine St, Dallas, TX 75001" +280168,27in FHD Monitor,1,149.99,10/08/19 17:20,"422 13th St, Dallas, TX 75001" +280169,AAA Batteries (4-pack),1,2.99,10/08/19 21:44,"673 Willow St, Dallas, TX 75001" +280170,AAA Batteries (4-pack),2,2.99,10/12/19 18:45,"108 7th St, Atlanta, GA 30301" +280171,Apple Airpods Headphones,1,150,10/18/19 17:31,"136 Hickory St, San Francisco, CA 94016" +280172,USB-C Charging Cable,1,11.95,10/05/19 10:11,"29 West St, Boston, MA 02215" +280173,Google Phone,1,600,10/25/19 22:21,"221 4th St, New York City, NY 10001" +280174,Flatscreen TV,1,300,10/12/19 14:16,"871 Forest St, Los Angeles, CA 90001" +280175,AA Batteries (4-pack),1,3.84,10/31/19 14:03,"522 South St, San Francisco, CA 94016" +280176,Lightning Charging Cable,1,14.95,10/18/19 13:32,"985 Ridge St, Los Angeles, CA 90001" +280177,AAA Batteries (4-pack),1,2.99,10/27/19 20:06,"160 Madison St, San Francisco, CA 94016" +280178,27in 4K Gaming Monitor,1,389.99,10/07/19 21:04,"103 Madison St, Seattle, WA 98101" +280179,Apple Airpods Headphones,1,150,10/24/19 23:53,"21 11th St, Austin, TX 73301" +280180,Macbook Pro Laptop,1,1700,10/15/19 19:30,"412 7th St, Dallas, TX 75001" +280181,AAA Batteries (4-pack),1,2.99,10/15/19 10:41,"278 Adams St, Boston, MA 02215" +280182,Lightning Charging Cable,1,14.95,10/08/19 00:54,"244 Spruce St, Austin, TX 73301" +280183,20in Monitor,1,109.99,10/04/19 12:56,"30 Church St, Los Angeles, CA 90001" +280184,Wired Headphones,1,11.99,10/18/19 12:37,"235 Washington St, Los Angeles, CA 90001" +280185,Apple Airpods Headphones,1,150,10/24/19 18:19,"697 7th St, Boston, MA 02215" +280186,USB-C Charging Cable,1,11.95,10/20/19 21:49,"220 14th St, San Francisco, CA 94016" +280187,iPhone,1,700,10/18/19 20:35,"67 Lincoln St, San Francisco, CA 94016" +280187,Wired Headphones,1,11.99,10/18/19 20:35,"67 Lincoln St, San Francisco, CA 94016" +280188,Bose SoundSport Headphones,1,99.99,10/06/19 21:16,"352 Jefferson St, Seattle, WA 98101" +280189,AAA Batteries (4-pack),1,2.99,10/08/19 18:02,"232 4th St, Boston, MA 02215" +280190,Lightning Charging Cable,1,14.95,10/22/19 22:47,"99 Hill St, Boston, MA 02215" +280191,AA Batteries (4-pack),1,3.84,10/12/19 11:52,"644 13th St, San Francisco, CA 94016" +280192,AAA Batteries (4-pack),1,2.99,10/23/19 02:10,"131 6th St, San Francisco, CA 94016" +280193,AA Batteries (4-pack),1,3.84,10/15/19 17:30,"564 9th St, Austin, TX 73301" +280194,27in 4K Gaming Monitor,1,389.99,10/08/19 13:26,"961 13th St, Los Angeles, CA 90001" +280195,Macbook Pro Laptop,1,1700,10/27/19 12:56,"819 Ridge St, New York City, NY 10001" +280196,Apple Airpods Headphones,1,150,10/18/19 19:35,"18 8th St, San Francisco, CA 94016" +280197,iPhone,1,700,10/21/19 15:58,"601 River St, Portland, OR 97035" +280197,Lightning Charging Cable,1,14.95,10/21/19 15:58,"601 River St, Portland, OR 97035" +280197,Apple Airpods Headphones,1,150,10/21/19 15:58,"601 River St, Portland, OR 97035" +280197,Wired Headphones,1,11.99,10/21/19 15:58,"601 River St, Portland, OR 97035" +280198,Lightning Charging Cable,1,14.95,10/09/19 12:46,"665 Madison St, New York City, NY 10001" +280199,Bose SoundSport Headphones,1,99.99,10/18/19 17:50,"582 8th St, Portland, OR 97035" +280200,ThinkPad Laptop,1,999.99,10/15/19 12:11,"398 Sunset St, Portland, OR 97035" +280201,Macbook Pro Laptop,1,1700,10/22/19 20:06,"810 Pine St, Boston, MA 02215" +280202,iPhone,1,700,10/17/19 19:58,"896 Jackson St, Portland, ME 04101" +280203,Bose SoundSport Headphones,1,99.99,10/03/19 14:40,"973 Dogwood St, New York City, NY 10001" +280204,27in 4K Gaming Monitor,1,389.99,10/22/19 16:40,"494 9th St, San Francisco, CA 94016" +280205,34in Ultrawide Monitor,1,379.99,10/21/19 15:22,"155 Cedar St, Los Angeles, CA 90001" +280206,Lightning Charging Cable,1,14.95,10/20/19 12:49,"133 10th St, Boston, MA 02215" +280207,27in FHD Monitor,1,149.99,10/04/19 13:43,"602 1st St, Seattle, WA 98101" +280208,USB-C Charging Cable,1,11.95,10/13/19 16:07,"787 10th St, Boston, MA 02215" +280209,34in Ultrawide Monitor,1,379.99,10/22/19 22:27,"247 7th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +280210,Apple Airpods Headphones,1,150,10/31/19 09:50,"50 Washington St, Dallas, TX 75001" +280211,34in Ultrawide Monitor,1,379.99,10/10/19 11:09,"699 Sunset St, Los Angeles, CA 90001" +280212,27in 4K Gaming Monitor,1,389.99,10/05/19 11:26,"538 12th St, Boston, MA 02215" +280213,USB-C Charging Cable,1,11.95,10/05/19 10:24,"481 14th St, San Francisco, CA 94016" +280214,USB-C Charging Cable,1,11.95,10/06/19 17:44,"301 Church St, Dallas, TX 75001" +280215,AAA Batteries (4-pack),1,2.99,10/28/19 10:22,"21 Ridge St, San Francisco, CA 94016" +280216,34in Ultrawide Monitor,1,379.99,10/10/19 19:06,"953 Hickory St, New York City, NY 10001" +280217,ThinkPad Laptop,1,999.99,10/12/19 13:10,"419 South St, Los Angeles, CA 90001" +280218,Wired Headphones,1,11.99,10/21/19 14:04,"378 Lakeview St, New York City, NY 10001" +280219,Wired Headphones,1,11.99,10/27/19 16:16,"902 Park St, New York City, NY 10001" +280220,Wired Headphones,1,11.99,10/08/19 10:33,"333 12th St, Boston, MA 02215" +280221,Bose SoundSport Headphones,1,99.99,10/19/19 18:46,"304 7th St, Boston, MA 02215" +280222,iPhone,1,700,10/10/19 20:34,"740 5th St, Dallas, TX 75001" +280223,Bose SoundSport Headphones,1,99.99,10/03/19 00:48,"441 Adams St, Dallas, TX 75001" +280224,Wired Headphones,1,11.99,10/10/19 09:06,"115 Main St, Boston, MA 02215" +280225,AAA Batteries (4-pack),1,2.99,10/07/19 00:47,"178 Church St, San Francisco, CA 94016" +280226,USB-C Charging Cable,1,11.95,10/26/19 18:58,"973 12th St, Seattle, WA 98101" +280227,Wired Headphones,1,11.99,10/04/19 21:08,"652 River St, Los Angeles, CA 90001" +,,,,, +280228,iPhone,1,700,10/29/19 18:47,"393 13th St, Seattle, WA 98101" +280229,Bose SoundSport Headphones,1,99.99,10/12/19 09:44,"8 Adams St, Boston, MA 02215" +280230,AAA Batteries (4-pack),1,2.99,10/24/19 17:28,"625 8th St, Atlanta, GA 30301" +280231,Google Phone,1,600,10/16/19 19:14,"328 Hickory St, San Francisco, CA 94016" +280232,27in 4K Gaming Monitor,1,389.99,10/06/19 10:48,"412 Hill St, Portland, OR 97035" +280233,Wired Headphones,1,11.99,10/18/19 00:50,"971 Jefferson St, Austin, TX 73301" +280234,Macbook Pro Laptop,1,1700,10/07/19 07:24,"437 Ridge St, New York City, NY 10001" +280235,34in Ultrawide Monitor,1,379.99,10/04/19 10:43,"85 11th St, Atlanta, GA 30301" +280236,Lightning Charging Cable,1,14.95,10/14/19 10:08,"160 4th St, Boston, MA 02215" +280237,AAA Batteries (4-pack),2,2.99,10/09/19 17:10,"140 Center St, Boston, MA 02215" +280238,AA Batteries (4-pack),2,3.84,10/31/19 16:13,"55 Hill St, Los Angeles, CA 90001" +280239,Lightning Charging Cable,1,14.95,10/11/19 17:58,"232 9th St, San Francisco, CA 94016" +280240,Lightning Charging Cable,1,14.95,10/06/19 13:20,"562 Walnut St, Boston, MA 02215" +280241,Apple Airpods Headphones,1,150,10/17/19 13:14,"671 1st St, New York City, NY 10001" +280242,USB-C Charging Cable,1,11.95,10/09/19 19:19,"675 Forest St, San Francisco, CA 94016" +280243,Bose SoundSport Headphones,1,99.99,10/31/19 08:58,"785 Walnut St, Boston, MA 02215" +280244,Wired Headphones,1,11.99,10/14/19 09:15,"923 Johnson St, Portland, OR 97035" +280245,Lightning Charging Cable,1,14.95,10/23/19 09:30,"300 Maple St, Atlanta, GA 30301" +280246,34in Ultrawide Monitor,1,379.99,10/08/19 13:54,"49 8th St, San Francisco, CA 94016" +280247,Flatscreen TV,1,300,10/05/19 09:51,"430 Jefferson St, Los Angeles, CA 90001" +280248,USB-C Charging Cable,1,11.95,10/07/19 11:17,"150 Jefferson St, San Francisco, CA 94016" +280249,20in Monitor,1,109.99,10/14/19 21:24,"868 Hill St, Seattle, WA 98101" +280250,USB-C Charging Cable,1,11.95,10/02/19 16:48,"963 Walnut St, San Francisco, CA 94016" +280251,AA Batteries (4-pack),1,3.84,10/10/19 16:57,"615 13th St, Los Angeles, CA 90001" +280252,34in Ultrawide Monitor,1,379.99,10/12/19 21:35,"21 11th St, New York City, NY 10001" +280253,Lightning Charging Cable,1,14.95,10/09/19 20:09,"392 Meadow St, Boston, MA 02215" +280254,USB-C Charging Cable,1,11.95,10/12/19 21:21,"970 Lake St, Los Angeles, CA 90001" +280255,AA Batteries (4-pack),4,3.84,10/07/19 05:05,"282 12th St, Portland, OR 97035" +280256,USB-C Charging Cable,1,11.95,10/13/19 20:27,"916 Center St, New York City, NY 10001" +280257,AAA Batteries (4-pack),1,2.99,10/06/19 14:12,"30 Jefferson St, Seattle, WA 98101" +280258,27in 4K Gaming Monitor,1,389.99,10/08/19 11:11,"300 West St, San Francisco, CA 94016" +280259,27in 4K Gaming Monitor,1,389.99,10/26/19 03:38,"560 Cherry St, Los Angeles, CA 90001" +280260,AAA Batteries (4-pack),2,2.99,10/14/19 00:32,"977 13th St, San Francisco, CA 94016" +280261,AA Batteries (4-pack),1,3.84,10/02/19 19:07,"368 12th St, Boston, MA 02215" +280262,Bose SoundSport Headphones,1,99.99,10/06/19 14:10,"872 7th St, San Francisco, CA 94016" +280263,Bose SoundSport Headphones,1,99.99,10/15/19 12:42,"26 8th St, Portland, OR 97035" +280264,34in Ultrawide Monitor,1,379.99,10/04/19 20:48,"23 13th St, New York City, NY 10001" +280265,iPhone,1,700,10/06/19 10:40,"665 Walnut St, Boston, MA 02215" +280266,Lightning Charging Cable,1,14.95,10/05/19 10:13,"831 7th St, Boston, MA 02215" +280267,Wired Headphones,1,11.99,10/12/19 20:01,"383 North St, Los Angeles, CA 90001" +280268,AAA Batteries (4-pack),1,2.99,10/21/19 13:51,"362 Chestnut St, San Francisco, CA 94016" +280269,27in 4K Gaming Monitor,1,389.99,10/13/19 20:13,"553 Cedar St, Portland, OR 97035" +280270,USB-C Charging Cable,1,11.95,10/31/19 15:33,"815 Park St, Los Angeles, CA 90001" +280271,LG Dryer,1,600.0,10/30/19 23:14,"876 14th St, Boston, MA 02215" +280272,Wired Headphones,1,11.99,10/30/19 23:26,"707 Lakeview St, Portland, OR 97035" +280273,Flatscreen TV,1,300,10/20/19 10:28,"375 Pine St, Dallas, TX 75001" +280274,27in 4K Gaming Monitor,1,389.99,10/30/19 14:39,"854 Wilson St, Dallas, TX 75001" +280275,USB-C Charging Cable,1,11.95,10/16/19 20:31,"288 14th St, Boston, MA 02215" +280276,iPhone,1,700,10/08/19 00:38,"589 Wilson St, New York City, NY 10001" +280277,AAA Batteries (4-pack),1,2.99,10/25/19 13:38,"154 14th St, Atlanta, GA 30301" +280278,Flatscreen TV,1,300,10/07/19 14:40,"537 13th St, Portland, OR 97035" +280279,Apple Airpods Headphones,1,150,10/27/19 11:05,"556 Johnson St, New York City, NY 10001" +280280,20in Monitor,1,109.99,10/21/19 12:46,"789 Washington St, Seattle, WA 98101" +280281,AAA Batteries (4-pack),1,2.99,10/06/19 16:44,"741 Church St, San Francisco, CA 94016" +280282,Bose SoundSport Headphones,1,99.99,10/02/19 19:50,"23 Ridge St, Dallas, TX 75001" +280283,Lightning Charging Cable,1,14.95,10/20/19 13:57,"545 12th St, Portland, OR 97035" +280284,USB-C Charging Cable,1,11.95,10/21/19 20:58,"616 South St, Los Angeles, CA 90001" +280285,Vareebadd Phone,1,400,10/18/19 16:48,"741 5th St, Los Angeles, CA 90001" +280286,27in FHD Monitor,1,149.99,10/04/19 22:15,"668 10th St, Boston, MA 02215" +280287,LG Washing Machine,1,600.0,10/17/19 21:49,"25 North St, Atlanta, GA 30301" +280288,AA Batteries (4-pack),1,3.84,10/06/19 18:35,"14 South St, Dallas, TX 75001" +280289,AA Batteries (4-pack),1,3.84,10/25/19 21:58,"475 South St, New York City, NY 10001" +280290,iPhone,1,700,10/30/19 15:21,"294 Chestnut St, Los Angeles, CA 90001" +280290,Lightning Charging Cable,1,14.95,10/30/19 15:21,"294 Chestnut St, Los Angeles, CA 90001" +280290,Wired Headphones,1,11.99,10/30/19 15:21,"294 Chestnut St, Los Angeles, CA 90001" +280291,Google Phone,1,600,10/17/19 13:23,"536 Lake St, Atlanta, GA 30301" +280292,USB-C Charging Cable,1,11.95,10/12/19 10:02,"6 Lincoln St, Portland, OR 97035" +280293,Wired Headphones,3,11.99,10/14/19 19:52,"898 Willow St, San Francisco, CA 94016" +280294,Macbook Pro Laptop,1,1700,10/06/19 11:53,"599 11th St, Atlanta, GA 30301" +280295,Bose SoundSport Headphones,1,99.99,10/21/19 09:31,"645 West St, San Francisco, CA 94016" +280296,ThinkPad Laptop,1,999.99,10/19/19 14:21,"387 Meadow St, Boston, MA 02215" +280297,USB-C Charging Cable,1,11.95,10/06/19 06:34,"342 Washington St, Boston, MA 02215" +280298,USB-C Charging Cable,1,11.95,10/16/19 08:31,"339 11th St, Portland, OR 97035" +280299,20in Monitor,1,109.99,10/19/19 18:59,"514 Meadow St, New York City, NY 10001" +280300,Wired Headphones,1,11.99,10/24/19 11:03,"72 4th St, New York City, NY 10001" +280301,Google Phone,1,600,10/28/19 09:50,"50 Spruce St, Seattle, WA 98101" +280302,AA Batteries (4-pack),1,3.84,10/11/19 15:55,"718 Main St, Los Angeles, CA 90001" +280303,Bose SoundSport Headphones,1,99.99,10/10/19 09:25,"680 Lincoln St, San Francisco, CA 94016" +280304,USB-C Charging Cable,1,11.95,10/18/19 10:14,"409 Elm St, San Francisco, CA 94016" +280305,27in 4K Gaming Monitor,1,389.99,10/29/19 20:17,"668 Main St, Atlanta, GA 30301" +280306,USB-C Charging Cable,1,11.95,10/02/19 12:11,"994 North St, Seattle, WA 98101" +280307,Wired Headphones,1,11.99,10/05/19 23:12,"423 Wilson St, Seattle, WA 98101" +280308,20in Monitor,1,109.99,10/19/19 14:04,"533 Dogwood St, San Francisco, CA 94016" +280309,AAA Batteries (4-pack),1,2.99,10/09/19 19:25,"330 Ridge St, Los Angeles, CA 90001" +280310,Wired Headphones,1,11.99,10/04/19 21:06,"48 2nd St, New York City, NY 10001" +280311,Apple Airpods Headphones,1,150,10/08/19 21:00,"938 Hickory St, Seattle, WA 98101" +280312,AAA Batteries (4-pack),2,2.99,10/14/19 20:12,"970 Meadow St, Dallas, TX 75001" +280313,Wired Headphones,1,11.99,10/12/19 06:51,"614 Jackson St, Atlanta, GA 30301" +280314,AAA Batteries (4-pack),1,2.99,10/04/19 21:07,"929 Cedar St, Los Angeles, CA 90001" +280315,27in FHD Monitor,1,149.99,10/18/19 12:11,"539 Cedar St, Portland, OR 97035" +280316,AAA Batteries (4-pack),1,2.99,10/02/19 14:01,"908 Meadow St, Boston, MA 02215" +280317,34in Ultrawide Monitor,1,379.99,10/14/19 16:24,"298 Forest St, New York City, NY 10001" +280318,Bose SoundSport Headphones,1,99.99,10/01/19 18:24,"476 5th St, Los Angeles, CA 90001" +280319,Wired Headphones,1,11.99,10/23/19 12:27,"502 Adams St, New York City, NY 10001" +280320,AA Batteries (4-pack),1,3.84,10/18/19 19:47,"200 River St, Dallas, TX 75001" +280321,USB-C Charging Cable,1,11.95,10/24/19 04:12,"401 Spruce St, San Francisco, CA 94016" +280322,AA Batteries (4-pack),1,3.84,10/16/19 18:32,"837 Walnut St, San Francisco, CA 94016" +280323,AA Batteries (4-pack),2,3.84,10/03/19 18:30,"754 Jackson St, Seattle, WA 98101" +280324,AAA Batteries (4-pack),2,2.99,10/18/19 20:31,"418 Sunset St, New York City, NY 10001" +280325,34in Ultrawide Monitor,1,379.99,10/18/19 15:50,"631 Forest St, San Francisco, CA 94016" +280326,AA Batteries (4-pack),2,3.84,10/17/19 00:19,"93 Maple St, San Francisco, CA 94016" +280327,USB-C Charging Cable,1,11.95,10/25/19 19:27,"893 Cedar St, San Francisco, CA 94016" +280328,Apple Airpods Headphones,1,150,10/16/19 13:40,"99 7th St, Seattle, WA 98101" +280329,Flatscreen TV,1,300,10/25/19 04:36,"686 North St, Boston, MA 02215" +280329,AAA Batteries (4-pack),1,2.99,10/25/19 04:36,"686 North St, Boston, MA 02215" +280330,Wired Headphones,1,11.99,10/15/19 21:16,"54 Highland St, New York City, NY 10001" +280331,USB-C Charging Cable,2,11.95,10/04/19 15:27,"255 Adams St, Los Angeles, CA 90001" +280332,Wired Headphones,1,11.99,10/17/19 17:31,"718 Center St, Los Angeles, CA 90001" +280333,AAA Batteries (4-pack),1,2.99,10/20/19 19:47,"978 Spruce St, New York City, NY 10001" +280334,Lightning Charging Cable,1,14.95,10/07/19 10:14,"902 Lakeview St, San Francisco, CA 94016" +280335,USB-C Charging Cable,1,11.95,10/27/19 15:50,"206 Willow St, San Francisco, CA 94016" +280336,AAA Batteries (4-pack),1,2.99,10/06/19 09:03,"625 Sunset St, Los Angeles, CA 90001" +280337,USB-C Charging Cable,1,11.95,10/03/19 19:08,"965 Adams St, San Francisco, CA 94016" +280338,AA Batteries (4-pack),1,3.84,10/14/19 14:03,"519 Maple St, New York City, NY 10001" +280338,AA Batteries (4-pack),2,3.84,10/14/19 14:03,"519 Maple St, New York City, NY 10001" +280339,Wired Headphones,1,11.99,10/28/19 17:19,"471 North St, San Francisco, CA 94016" +280340,Apple Airpods Headphones,1,150,10/18/19 16:38,"252 Dogwood St, Boston, MA 02215" +280341,AA Batteries (4-pack),1,3.84,10/12/19 12:06,"780 Jackson St, Portland, OR 97035" +280342,USB-C Charging Cable,1,11.95,10/20/19 12:00,"537 Madison St, Austin, TX 73301" +280343,USB-C Charging Cable,1,11.95,10/23/19 18:41,"753 Lake St, Atlanta, GA 30301" +280344,Bose SoundSport Headphones,1,99.99,10/06/19 17:23,"589 Chestnut St, Portland, OR 97035" +280345,LG Dryer,1,600.0,10/12/19 18:47,"215 South St, Portland, OR 97035" +280346,Wired Headphones,1,11.99,10/13/19 13:16,"591 North St, San Francisco, CA 94016" +280347,Google Phone,1,600,10/10/19 13:55,"232 Main St, Austin, TX 73301" +280348,Bose SoundSport Headphones,1,99.99,10/27/19 18:44,"557 1st St, Los Angeles, CA 90001" +280349,Macbook Pro Laptop,1,1700,10/09/19 10:20,"840 12th St, Seattle, WA 98101" +280350,27in 4K Gaming Monitor,1,389.99,10/30/19 12:28,"599 Walnut St, Dallas, TX 75001" +280351,Lightning Charging Cable,1,14.95,10/14/19 21:01,"577 Spruce St, Seattle, WA 98101" +280352,AAA Batteries (4-pack),1,2.99,10/17/19 09:47,"3 Walnut St, Austin, TX 73301" +280353,Macbook Pro Laptop,1,1700,10/28/19 04:30,"544 2nd St, Los Angeles, CA 90001" +280354,Google Phone,1,600,10/17/19 18:14,"290 Jefferson St, New York City, NY 10001" +280355,Google Phone,1,600,10/25/19 14:15,"708 Adams St, New York City, NY 10001" +280355,USB-C Charging Cable,1,11.95,10/25/19 14:15,"708 Adams St, New York City, NY 10001" +280356,USB-C Charging Cable,1,11.95,10/07/19 12:24,"505 River St, Boston, MA 02215" +280357,Apple Airpods Headphones,1,150,10/28/19 17:25,"483 Washington St, Los Angeles, CA 90001" +,,,,, +280358,34in Ultrawide Monitor,1,379.99,10/17/19 11:46,"659 4th St, Los Angeles, CA 90001" +280359,27in 4K Gaming Monitor,1,389.99,10/27/19 15:27,"213 4th St, San Francisco, CA 94016" +280360,Apple Airpods Headphones,1,150,10/20/19 11:11,"648 9th St, New York City, NY 10001" +280361,Lightning Charging Cable,1,14.95,10/25/19 19:10,"479 Wilson St, Dallas, TX 75001" +280362,AA Batteries (4-pack),1,3.84,10/05/19 13:18,"762 Cherry St, Seattle, WA 98101" +280363,Apple Airpods Headphones,1,150,10/15/19 13:31,"320 14th St, Boston, MA 02215" +280364,Lightning Charging Cable,1,14.95,10/26/19 02:58,"172 11th St, San Francisco, CA 94016" +280365,Wired Headphones,1,11.99,10/11/19 08:35,"919 Lake St, San Francisco, CA 94016" +280365,AAA Batteries (4-pack),3,2.99,10/11/19 08:35,"919 Lake St, San Francisco, CA 94016" +280366,AAA Batteries (4-pack),1,2.99,10/04/19 21:06,"209 Meadow St, San Francisco, CA 94016" +280367,ThinkPad Laptop,1,999.99,10/28/19 20:11,"161 11th St, Austin, TX 73301" +280368,Bose SoundSport Headphones,1,99.99,10/11/19 05:42,"270 Highland St, New York City, NY 10001" +280369,34in Ultrawide Monitor,1,379.99,10/16/19 16:40,"177 Wilson St, San Francisco, CA 94016" +280370,iPhone,1,700,10/18/19 12:55,"920 South St, Atlanta, GA 30301" +280370,Lightning Charging Cable,1,14.95,10/18/19 12:55,"920 South St, Atlanta, GA 30301" +280371,Lightning Charging Cable,1,14.95,10/21/19 12:38,"451 Highland St, San Francisco, CA 94016" +280372,USB-C Charging Cable,1,11.95,10/21/19 16:27,"644 Lake St, Los Angeles, CA 90001" +280373,USB-C Charging Cable,1,11.95,10/09/19 16:35,"867 Ridge St, Los Angeles, CA 90001" +280374,Wired Headphones,1,11.99,10/01/19 18:46,"146 Park St, San Francisco, CA 94016" +280375,iPhone,1,700,10/05/19 09:46,"377 Church St, Atlanta, GA 30301" +280375,Lightning Charging Cable,1,14.95,10/05/19 09:46,"377 Church St, Atlanta, GA 30301" +280376,USB-C Charging Cable,1,11.95,10/23/19 06:39,"936 Main St, New York City, NY 10001" +280377,Flatscreen TV,1,300,10/22/19 10:33,"691 Spruce St, Los Angeles, CA 90001" +280378,AAA Batteries (4-pack),2,2.99,10/03/19 12:05,"164 Ridge St, New York City, NY 10001" +280379,Lightning Charging Cable,1,14.95,10/19/19 10:30,"531 Cherry St, San Francisco, CA 94016" +280380,Flatscreen TV,1,300,10/25/19 14:07,"722 Wilson St, Los Angeles, CA 90001" +280381,Lightning Charging Cable,1,14.95,10/15/19 08:05,"249 10th St, Dallas, TX 75001" +280382,Vareebadd Phone,1,400,10/02/19 01:40,"723 Pine St, Seattle, WA 98101" +280383,iPhone,1,700,10/15/19 10:35,"922 Jefferson St, Los Angeles, CA 90001" +280384,AAA Batteries (4-pack),2,2.99,10/16/19 02:11,"310 11th St, Austin, TX 73301" +280385,Macbook Pro Laptop,1,1700,10/24/19 06:26,"728 South St, San Francisco, CA 94016" +280386,27in 4K Gaming Monitor,1,389.99,10/24/19 13:25,"388 10th St, Boston, MA 02215" +,,,,, +280387,ThinkPad Laptop,1,999.99,10/16/19 06:52,"732 Washington St, Los Angeles, CA 90001" +280388,AA Batteries (4-pack),1,3.84,10/11/19 21:45,"853 Jackson St, New York City, NY 10001" +280389,Apple Airpods Headphones,1,150,10/02/19 11:33,"966 Washington St, Dallas, TX 75001" +280390,AA Batteries (4-pack),1,3.84,10/25/19 07:26,"592 10th St, Atlanta, GA 30301" +280391,AAA Batteries (4-pack),1,2.99,10/26/19 19:14,"948 Lake St, Seattle, WA 98101" +280392,AA Batteries (4-pack),1,3.84,10/05/19 15:56,"847 Cherry St, Atlanta, GA 30301" +280392,Macbook Pro Laptop,1,1700,10/05/19 15:56,"847 Cherry St, Atlanta, GA 30301" +280393,Wired Headphones,1,11.99,10/04/19 21:27,"123 Walnut St, Austin, TX 73301" +280394,Flatscreen TV,1,300,10/22/19 04:05,"114 Jefferson St, Boston, MA 02215" +280395,AA Batteries (4-pack),2,3.84,10/16/19 21:54,"902 River St, Los Angeles, CA 90001" +280396,Bose SoundSport Headphones,1,99.99,10/12/19 17:58,"659 14th St, Austin, TX 73301" +280397,AA Batteries (4-pack),1,3.84,10/16/19 10:06,"228 Lakeview St, Atlanta, GA 30301" +280398,AAA Batteries (4-pack),1,2.99,10/13/19 14:46,"793 Chestnut St, Boston, MA 02215" +280399,USB-C Charging Cable,1,11.95,10/30/19 13:39,"980 Sunset St, Los Angeles, CA 90001" +280400,USB-C Charging Cable,1,11.95,10/15/19 11:31,"269 South St, New York City, NY 10001" +280401,20in Monitor,1,109.99,10/13/19 14:36,"104 Dogwood St, Los Angeles, CA 90001" +280402,Wired Headphones,1,11.99,10/19/19 18:44,"489 13th St, San Francisco, CA 94016" +280403,Bose SoundSport Headphones,1,99.99,10/18/19 16:49,"590 4th St, Portland, OR 97035" +280404,27in 4K Gaming Monitor,1,389.99,10/05/19 21:16,"66 Ridge St, Dallas, TX 75001" +280405,Lightning Charging Cable,2,14.95,10/28/19 21:23,"696 Washington St, Dallas, TX 75001" +280406,AAA Batteries (4-pack),1,2.99,10/13/19 15:36,"677 Church St, Atlanta, GA 30301" +280407,Macbook Pro Laptop,1,1700,10/12/19 20:58,"657 4th St, Dallas, TX 75001" +280408,Wired Headphones,2,11.99,10/19/19 20:21,"259 Elm St, Boston, MA 02215" +280409,AA Batteries (4-pack),1,3.84,10/21/19 18:28,"766 Wilson St, Dallas, TX 75001" +280410,AA Batteries (4-pack),1,3.84,10/16/19 12:49,"555 1st St, Boston, MA 02215" +280411,27in FHD Monitor,1,149.99,10/10/19 13:58,"506 12th St, Los Angeles, CA 90001" +280412,USB-C Charging Cable,1,11.95,10/22/19 15:34,"942 11th St, San Francisco, CA 94016" +280413,AAA Batteries (4-pack),1,2.99,10/05/19 11:55,"163 1st St, New York City, NY 10001" +280414,AA Batteries (4-pack),2,3.84,10/25/19 12:40,"555 River St, New York City, NY 10001" +280415,34in Ultrawide Monitor,1,379.99,10/29/19 15:57,"101 5th St, New York City, NY 10001" +280416,Wired Headphones,1,11.99,10/24/19 13:25,"758 Hill St, San Francisco, CA 94016" +280417,iPhone,1,700,10/21/19 15:30,"69 Meadow St, Austin, TX 73301" +280418,Bose SoundSport Headphones,1,99.99,10/24/19 10:49,"953 11th St, Portland, OR 97035" +280419,USB-C Charging Cable,1,11.95,10/30/19 08:46,"391 14th St, Dallas, TX 75001" +280420,Macbook Pro Laptop,1,1700,10/09/19 12:42,"500 Hickory St, Los Angeles, CA 90001" +280421,Wired Headphones,1,11.99,10/22/19 00:06,"486 Ridge St, San Francisco, CA 94016" +280422,Wired Headphones,2,11.99,10/30/19 18:35,"734 Walnut St, Seattle, WA 98101" +280423,Wired Headphones,2,11.99,10/05/19 20:28,"605 Washington St, Seattle, WA 98101" +280424,USB-C Charging Cable,2,11.95,10/14/19 15:46,"84 Meadow St, Seattle, WA 98101" +280425,Macbook Pro Laptop,1,1700,10/01/19 17:46,"255 12th St, Boston, MA 02215" +280426,ThinkPad Laptop,1,999.99,10/24/19 14:00,"164 Hickory St, Boston, MA 02215" +280427,Bose SoundSport Headphones,1,99.99,10/08/19 14:22,"895 Willow St, Dallas, TX 75001" +280428,Vareebadd Phone,1,400,10/22/19 11:44,"882 1st St, Boston, MA 02215" +280429,Lightning Charging Cable,1,14.95,10/02/19 12:53,"216 Church St, Boston, MA 02215" +280430,34in Ultrawide Monitor,1,379.99,10/12/19 19:08,"332 Main St, Los Angeles, CA 90001" +280431,Wired Headphones,2,11.99,10/21/19 12:11,"964 Lakeview St, Los Angeles, CA 90001" +280432,34in Ultrawide Monitor,1,379.99,10/24/19 23:30,"576 5th St, New York City, NY 10001" +280433,USB-C Charging Cable,1,11.95,10/11/19 12:08,"304 Adams St, Seattle, WA 98101" +280434,USB-C Charging Cable,1,11.95,10/11/19 09:17,"211 Pine St, New York City, NY 10001" +280435,Apple Airpods Headphones,1,150,10/07/19 09:50,"933 South St, San Francisco, CA 94016" +280436,Lightning Charging Cable,1,14.95,10/31/19 00:54,"407 Chestnut St, Atlanta, GA 30301" +280437,Macbook Pro Laptop,1,1700,10/19/19 08:03,"562 West St, San Francisco, CA 94016" +280438,ThinkPad Laptop,1,999.99,10/04/19 14:45,"770 Jefferson St, Dallas, TX 75001" +280439,Wired Headphones,1,11.99,10/19/19 19:04,"460 River St, New York City, NY 10001" +280440,AAA Batteries (4-pack),4,2.99,10/25/19 18:13,"548 Church St, Boston, MA 02215" +280441,AA Batteries (4-pack),1,3.84,10/13/19 12:17,"705 Forest St, San Francisco, CA 94016" +280442,Lightning Charging Cable,1,14.95,10/08/19 17:16,"378 Wilson St, Dallas, TX 75001" +280443,USB-C Charging Cable,1,11.95,10/15/19 13:24,"9 9th St, Atlanta, GA 30301" +280444,AA Batteries (4-pack),1,3.84,10/02/19 20:03,"114 Dogwood St, Portland, OR 97035" +280445,Lightning Charging Cable,1,14.95,10/29/19 19:22,"778 Lincoln St, Los Angeles, CA 90001" +280446,AAA Batteries (4-pack),3,2.99,10/07/19 06:21,"194 Church St, Boston, MA 02215" +280447,Apple Airpods Headphones,1,150,10/21/19 16:51,"705 Dogwood St, New York City, NY 10001" +280448,Flatscreen TV,1,300,10/19/19 21:37,"492 Spruce St, Los Angeles, CA 90001" +280449,Google Phone,1,600,10/25/19 14:09,"556 Hill St, New York City, NY 10001" +280450,34in Ultrawide Monitor,1,379.99,10/29/19 08:25,"849 4th St, Austin, TX 73301" +280451,Bose SoundSport Headphones,1,99.99,10/30/19 10:12,"636 Washington St, Boston, MA 02215" +280452,USB-C Charging Cable,2,11.95,10/11/19 06:51,"906 South St, Dallas, TX 75001" +280453,27in FHD Monitor,1,149.99,10/24/19 16:20,"641 10th St, Atlanta, GA 30301" +280454,Wired Headphones,1,11.99,10/21/19 10:08,"69 Church St, New York City, NY 10001" +280455,Lightning Charging Cable,1,14.95,10/21/19 14:02,"573 Wilson St, Austin, TX 73301" +280456,AA Batteries (4-pack),3,3.84,10/22/19 17:26,"876 Highland St, San Francisco, CA 94016" +280457,27in FHD Monitor,1,149.99,10/12/19 14:33,"402 2nd St, Dallas, TX 75001" +280458,AAA Batteries (4-pack),1,2.99,10/22/19 16:23,"105 Willow St, San Francisco, CA 94016" +280459,AA Batteries (4-pack),6,3.84,10/03/19 12:37,"772 14th St, New York City, NY 10001" +280460,AA Batteries (4-pack),1,3.84,10/18/19 20:01,"798 Elm St, Seattle, WA 98101" +280461,Apple Airpods Headphones,1,150,10/27/19 16:27,"145 Jefferson St, Portland, OR 97035" +280462,iPhone,1,700,10/20/19 10:26,"172 12th St, San Francisco, CA 94016" +280463,iPhone,1,700,10/13/19 19:14,"408 11th St, Austin, TX 73301" +280464,Apple Airpods Headphones,1,150,10/07/19 14:04,"515 Hickory St, Dallas, TX 75001" +280465,Lightning Charging Cable,1,14.95,10/04/19 10:10,"935 11th St, New York City, NY 10001" +280466,34in Ultrawide Monitor,1,379.99,10/10/19 16:45,"326 9th St, New York City, NY 10001" +280467,27in 4K Gaming Monitor,1,389.99,10/09/19 01:12,"767 Lake St, San Francisco, CA 94016" +280468,Lightning Charging Cable,1,14.95,10/06/19 16:54,"457 West St, San Francisco, CA 94016" +280469,Bose SoundSport Headphones,1,99.99,10/26/19 23:00,"558 11th St, San Francisco, CA 94016" +280470,iPhone,1,700,10/13/19 15:48,"819 Pine St, Atlanta, GA 30301" +280471,Flatscreen TV,1,300,10/29/19 17:44,"240 Church St, Austin, TX 73301" +280472,AA Batteries (4-pack),2,3.84,10/24/19 18:02,"375 Lincoln St, Dallas, TX 75001" +280473,iPhone,1,700,10/31/19 05:49,"78 Johnson St, New York City, NY 10001" +280474,Macbook Pro Laptop,1,1700,10/10/19 10:24,"598 Johnson St, San Francisco, CA 94016" +280474,AA Batteries (4-pack),1,3.84,10/10/19 10:24,"598 Johnson St, San Francisco, CA 94016" +280475,USB-C Charging Cable,1,11.95,10/15/19 18:56,"460 Center St, Los Angeles, CA 90001" +280476,AAA Batteries (4-pack),1,2.99,10/21/19 11:55,"86 Dogwood St, Portland, OR 97035" +280477,AA Batteries (4-pack),1,3.84,10/07/19 12:19,"415 North St, Austin, TX 73301" +280478,20in Monitor,1,109.99,10/09/19 19:43,"763 Adams St, San Francisco, CA 94016" +280479,Lightning Charging Cable,1,14.95,10/15/19 16:34,"425 West St, San Francisco, CA 94016" +280480,Google Phone,1,600,10/17/19 16:25,"281 Highland St, Seattle, WA 98101" +280481,USB-C Charging Cable,1,11.95,10/31/19 15:24,"392 10th St, Seattle, WA 98101" +280482,AAA Batteries (4-pack),1,2.99,10/02/19 18:10,"140 Church St, Boston, MA 02215" +280483,AA Batteries (4-pack),2,3.84,10/24/19 06:18,"115 6th St, Los Angeles, CA 90001" +280484,Wired Headphones,1,11.99,10/30/19 21:28,"117 River St, Los Angeles, CA 90001" +280485,Google Phone,1,600,10/02/19 13:05,"910 14th St, New York City, NY 10001" +280485,Wired Headphones,1,11.99,10/02/19 13:05,"910 14th St, New York City, NY 10001" +280486,27in FHD Monitor,1,149.99,10/06/19 21:56,"219 7th St, Austin, TX 73301" +280487,USB-C Charging Cable,1,11.95,10/15/19 08:15,"271 Church St, New York City, NY 10001" +280488,Wired Headphones,1,11.99,10/27/19 20:32,"700 Highland St, San Francisco, CA 94016" +280489,Google Phone,1,600,10/21/19 20:27,"970 Johnson St, Atlanta, GA 30301" +280490,Lightning Charging Cable,1,14.95,10/08/19 16:32,"768 Madison St, San Francisco, CA 94016" +280491,AAA Batteries (4-pack),5,2.99,10/13/19 16:13,"380 Jackson St, New York City, NY 10001" +280492,Bose SoundSport Headphones,1,99.99,10/11/19 17:51,"200 Forest St, Atlanta, GA 30301" +280493,Bose SoundSport Headphones,1,99.99,10/23/19 07:11,"50 North St, San Francisco, CA 94016" +280494,Wired Headphones,1,11.99,10/23/19 21:54,"157 4th St, Boston, MA 02215" +280495,Google Phone,1,600,10/20/19 11:27,"168 Hickory St, Boston, MA 02215" +280495,USB-C Charging Cable,1,11.95,10/20/19 11:27,"168 Hickory St, Boston, MA 02215" +280496,USB-C Charging Cable,1,11.95,10/06/19 15:30,"616 7th St, Portland, OR 97035" +280497,Wired Headphones,1,11.99,10/24/19 11:06,"553 Maple St, Los Angeles, CA 90001" +280498,34in Ultrawide Monitor,1,379.99,10/31/19 13:10,"346 6th St, San Francisco, CA 94016" +280499,AAA Batteries (4-pack),3,2.99,10/25/19 11:55,"477 8th St, Dallas, TX 75001" +280500,Wired Headphones,1,11.99,10/11/19 22:16,"394 Madison St, Dallas, TX 75001" +280501,AAA Batteries (4-pack),4,2.99,10/13/19 23:03,"940 Maple St, Seattle, WA 98101" +280502,AAA Batteries (4-pack),2,2.99,10/10/19 08:07,"400 Lakeview St, Portland, OR 97035" +280503,AA Batteries (4-pack),1,3.84,10/31/19 22:52,"146 Center St, San Francisco, CA 94016" +280504,Bose SoundSport Headphones,1,99.99,10/23/19 17:07,"271 North St, Seattle, WA 98101" +280505,Wired Headphones,1,11.99,10/19/19 13:27,"156 Forest St, Dallas, TX 75001" +280506,USB-C Charging Cable,1,11.95,10/23/19 20:57,"672 6th St, Dallas, TX 75001" +280507,Apple Airpods Headphones,1,150,10/25/19 09:52,"947 Dogwood St, New York City, NY 10001" +280508,Wired Headphones,1,11.99,10/28/19 17:42,"387 4th St, Los Angeles, CA 90001" +280509,USB-C Charging Cable,1,11.95,10/02/19 16:50,"27 12th St, Dallas, TX 75001" +280510,AAA Batteries (4-pack),1,2.99,10/14/19 14:32,"158 7th St, San Francisco, CA 94016" +280511,Wired Headphones,1,11.99,10/10/19 11:08,"103 9th St, Portland, ME 04101" +280512,USB-C Charging Cable,1,11.95,10/29/19 21:02,"893 12th St, Los Angeles, CA 90001" +280513,Flatscreen TV,1,300,10/07/19 15:04,"875 West St, Portland, OR 97035" +280514,AAA Batteries (4-pack),2,2.99,10/20/19 14:36,"252 Ridge St, Atlanta, GA 30301" +280515,AA Batteries (4-pack),1,3.84,10/01/19 13:09,"711 2nd St, Austin, TX 73301" +280516,USB-C Charging Cable,1,11.95,10/12/19 15:06,"232 Meadow St, Dallas, TX 75001" +280517,Wired Headphones,1,11.99,10/03/19 09:46,"65 11th St, Dallas, TX 75001" +280518,Wired Headphones,1,11.99,10/10/19 17:37,"961 Adams St, Dallas, TX 75001" +280519,iPhone,1,700,10/11/19 11:47,"896 6th St, New York City, NY 10001" +280520,27in FHD Monitor,1,149.99,10/09/19 14:08,"2 Center St, Atlanta, GA 30301" +280521,ThinkPad Laptop,1,999.99,10/13/19 03:21,"662 Walnut St, Boston, MA 02215" +280522,27in 4K Gaming Monitor,1,389.99,10/10/19 17:02,"407 West St, Boston, MA 02215" +280523,AAA Batteries (4-pack),1,2.99,10/07/19 14:47,"931 4th St, Dallas, TX 75001" +280524,Wired Headphones,1,11.99,10/12/19 21:41,"807 Hickory St, Boston, MA 02215" +280525,USB-C Charging Cable,1,11.95,10/15/19 13:05,"557 9th St, New York City, NY 10001" +280526,iPhone,1,700,10/18/19 22:08,"282 Walnut St, Seattle, WA 98101" +280527,Lightning Charging Cable,1,14.95,10/21/19 12:52,"393 9th St, Seattle, WA 98101" +280528,AA Batteries (4-pack),1,3.84,10/20/19 10:52,"87 Hill St, New York City, NY 10001" +280529,27in 4K Gaming Monitor,1,389.99,10/21/19 16:40,"113 Washington St, New York City, NY 10001" +280530,AAA Batteries (4-pack),2,2.99,10/11/19 07:20,"909 Forest St, Seattle, WA 98101" +280531,AAA Batteries (4-pack),1,2.99,10/29/19 20:49,"895 7th St, Dallas, TX 75001" +280532,AAA Batteries (4-pack),1,2.99,10/11/19 15:53,"175 Wilson St, Seattle, WA 98101" +280533,27in FHD Monitor,1,149.99,10/01/19 11:48,"360 Elm St, San Francisco, CA 94016" +280534,34in Ultrawide Monitor,1,379.99,10/17/19 18:22,"331 Jackson St, Los Angeles, CA 90001" +280535,AA Batteries (4-pack),2,3.84,10/08/19 09:29,"831 Lakeview St, Los Angeles, CA 90001" +280536,Macbook Pro Laptop,1,1700,10/26/19 15:58,"749 Ridge St, New York City, NY 10001" +280537,Wired Headphones,1,11.99,10/04/19 18:09,"204 Jackson St, San Francisco, CA 94016" +280538,USB-C Charging Cable,1,11.95,10/18/19 21:01,"56 Madison St, Atlanta, GA 30301" +280539,Lightning Charging Cable,1,14.95,10/04/19 23:43,"29 Jackson St, Boston, MA 02215" +280540,Macbook Pro Laptop,1,1700,10/01/19 13:47,"405 4th St, Los Angeles, CA 90001" +280541,AAA Batteries (4-pack),1,2.99,10/23/19 09:22,"317 Chestnut St, Atlanta, GA 30301" +280542,Bose SoundSport Headphones,1,99.99,10/18/19 13:26,"629 Ridge St, New York City, NY 10001" +280543,AAA Batteries (4-pack),1,2.99,10/05/19 13:16,"239 Elm St, Los Angeles, CA 90001" +280544,AA Batteries (4-pack),1,3.84,10/24/19 21:10,"16 Johnson St, New York City, NY 10001" +280545,AAA Batteries (4-pack),1,2.99,10/29/19 19:24,"532 9th St, Boston, MA 02215" +280546,USB-C Charging Cable,1,11.95,10/28/19 22:55,"705 Forest St, Dallas, TX 75001" +280547,USB-C Charging Cable,1,11.95,10/03/19 12:59,"666 Spruce St, Los Angeles, CA 90001" +280548,USB-C Charging Cable,2,11.95,10/28/19 14:06,"207 8th St, Boston, MA 02215" +280549,AAA Batteries (4-pack),1,2.99,10/25/19 22:44,"863 Johnson St, Atlanta, GA 30301" +280550,Lightning Charging Cable,1,14.95,10/16/19 09:57,"394 Ridge St, New York City, NY 10001" +280551,Bose SoundSport Headphones,1,99.99,10/21/19 19:17,"743 2nd St, Dallas, TX 75001" +280552,Lightning Charging Cable,1,14.95,10/21/19 09:31,"103 Washington St, Austin, TX 73301" +280553,Lightning Charging Cable,2,14.95,10/05/19 09:30,"429 4th St, Dallas, TX 75001" +280554,Lightning Charging Cable,1,14.95,10/12/19 20:52,"210 Cherry St, Boston, MA 02215" +280555,AA Batteries (4-pack),1,3.84,10/04/19 12:24,"758 13th St, Boston, MA 02215" +280556,Bose SoundSport Headphones,1,99.99,10/03/19 22:27,"94 13th St, New York City, NY 10001" +280557,Macbook Pro Laptop,1,1700,10/30/19 16:53,"604 4th St, New York City, NY 10001" +280558,USB-C Charging Cable,1,11.95,10/05/19 20:37,"119 Highland St, Dallas, TX 75001" +280559,Apple Airpods Headphones,1,150,10/19/19 13:40,"420 5th St, Dallas, TX 75001" +280560,Lightning Charging Cable,2,14.95,10/10/19 22:45,"389 14th St, Austin, TX 73301" +280561,ThinkPad Laptop,1,999.99,10/18/19 21:03,"12 13th St, Los Angeles, CA 90001" +280562,AAA Batteries (4-pack),3,2.99,10/13/19 19:06,"336 Lakeview St, San Francisco, CA 94016" +280563,Lightning Charging Cable,1,14.95,10/08/19 12:28,"120 Chestnut St, Seattle, WA 98101" +280564,Wired Headphones,1,11.99,10/02/19 16:13,"988 Elm St, Los Angeles, CA 90001" +280565,AAA Batteries (4-pack),2,2.99,10/27/19 16:24,"368 Main St, San Francisco, CA 94016" +280566,USB-C Charging Cable,1,11.95,10/22/19 16:05,"573 Lincoln St, Austin, TX 73301" +280567,27in FHD Monitor,1,149.99,10/02/19 23:21,"218 Meadow St, Portland, OR 97035" +280568,AAA Batteries (4-pack),1,2.99,10/28/19 11:17,"905 Lake St, Austin, TX 73301" +280569,AA Batteries (4-pack),1,3.84,10/07/19 17:48,"545 13th St, San Francisco, CA 94016" +280570,27in FHD Monitor,1,149.99,10/28/19 00:04,"704 Meadow St, Dallas, TX 75001" +280571,USB-C Charging Cable,1,11.95,10/23/19 22:09,"220 Cherry St, Dallas, TX 75001" +280572,Lightning Charging Cable,1,14.95,10/08/19 23:02,"389 Jackson St, Austin, TX 73301" +280573,Wired Headphones,1,11.99,10/17/19 17:55,"740 5th St, Boston, MA 02215" +280574,AA Batteries (4-pack),1,3.84,10/29/19 17:29,"996 4th St, Los Angeles, CA 90001" +280575,Lightning Charging Cable,1,14.95,10/26/19 13:05,"550 2nd St, Los Angeles, CA 90001" +280576,AAA Batteries (4-pack),1,2.99,10/21/19 19:11,"281 Dogwood St, New York City, NY 10001" +280577,Google Phone,1,600,10/23/19 08:04,"566 Washington St, Dallas, TX 75001" +280578,USB-C Charging Cable,1,11.95,10/24/19 18:36,"12 Ridge St, Atlanta, GA 30301" +280579,AA Batteries (4-pack),2,3.84,10/16/19 18:02,"99 Lakeview St, New York City, NY 10001" +280580,iPhone,1,700,10/08/19 18:35,"227 Wilson St, Atlanta, GA 30301" +280581,Lightning Charging Cable,1,14.95,10/27/19 20:51,"514 10th St, Boston, MA 02215" +280582,AA Batteries (4-pack),2,3.84,10/08/19 11:18,"8 Cedar St, Los Angeles, CA 90001" +280583,AAA Batteries (4-pack),1,2.99,10/11/19 23:21,"923 Jefferson St, New York City, NY 10001" +280584,Wired Headphones,1,11.99,10/26/19 15:27,"899 Highland St, Atlanta, GA 30301" +280585,AA Batteries (4-pack),1,3.84,10/06/19 11:17,"918 Park St, Los Angeles, CA 90001" +280586,AA Batteries (4-pack),2,3.84,10/13/19 19:07,"483 North St, New York City, NY 10001" +280587,iPhone,1,700,10/18/19 11:44,"658 Willow St, Dallas, TX 75001" +280588,ThinkPad Laptop,1,999.99,10/26/19 06:18,"298 Highland St, Los Angeles, CA 90001" +280589,USB-C Charging Cable,1,11.95,10/27/19 11:45,"328 Spruce St, Boston, MA 02215" +280590,AAA Batteries (4-pack),1,2.99,10/01/19 23:21,"189 Park St, Atlanta, GA 30301" +280591,AA Batteries (4-pack),1,3.84,10/30/19 22:02,"367 Lakeview St, Dallas, TX 75001" +280592,Lightning Charging Cable,1,14.95,10/27/19 22:12,"10 Jackson St, Boston, MA 02215" +280593,USB-C Charging Cable,1,11.95,10/03/19 21:22,"829 Ridge St, San Francisco, CA 94016" +280594,Wired Headphones,1,11.99,10/07/19 17:48,"948 Forest St, Dallas, TX 75001" +280595,Google Phone,1,600,10/20/19 14:48,"917 13th St, Austin, TX 73301" +280596,AAA Batteries (4-pack),1,2.99,10/24/19 20:51,"980 Cherry St, Portland, OR 97035" +280597,Macbook Pro Laptop,1,1700,10/28/19 15:06,"528 14th St, New York City, NY 10001" +280598,USB-C Charging Cable,1,11.95,10/01/19 19:03,"699 14th St, New York City, NY 10001" +280599,Lightning Charging Cable,1,14.95,10/10/19 11:15,"150 Willow St, San Francisco, CA 94016" +280600,27in FHD Monitor,1,149.99,10/21/19 21:58,"679 Hill St, Dallas, TX 75001" +280601,AA Batteries (4-pack),1,3.84,10/28/19 13:26,"920 Madison St, Atlanta, GA 30301" +280602,AA Batteries (4-pack),1,3.84,10/21/19 06:12,"832 Dogwood St, San Francisco, CA 94016" +280603,34in Ultrawide Monitor,1,379.99,10/29/19 10:51,"735 Cherry St, San Francisco, CA 94016" +280604,USB-C Charging Cable,1,11.95,10/26/19 23:57,"585 Meadow St, Portland, OR 97035" +280605,Wired Headphones,1,11.99,10/15/19 19:27,"257 2nd St, Boston, MA 02215" +280606,Lightning Charging Cable,1,14.95,10/19/19 18:11,"21 Chestnut St, Los Angeles, CA 90001" +280607,AAA Batteries (4-pack),1,2.99,10/29/19 21:25,"695 Washington St, Los Angeles, CA 90001" +280608,AAA Batteries (4-pack),2,2.99,10/06/19 12:55,"335 Pine St, Los Angeles, CA 90001" +280609,Bose SoundSport Headphones,1,99.99,10/21/19 14:01,"578 10th St, Los Angeles, CA 90001" +280610,AAA Batteries (4-pack),1,2.99,10/20/19 14:17,"243 Spruce St, Los Angeles, CA 90001" +280610,Wired Headphones,1,11.99,10/20/19 14:17,"243 Spruce St, Los Angeles, CA 90001" +280611,Vareebadd Phone,1,400,10/29/19 17:30,"202 12th St, Los Angeles, CA 90001" +280612,USB-C Charging Cable,1,11.95,10/14/19 22:58,"872 Maple St, Los Angeles, CA 90001" +280613,Bose SoundSport Headphones,1,99.99,10/21/19 13:17,"174 Main St, Seattle, WA 98101" +280614,Apple Airpods Headphones,1,150,10/21/19 07:08,"654 Lincoln St, San Francisco, CA 94016" +280615,27in FHD Monitor,1,149.99,10/16/19 21:49,"5 Main St, New York City, NY 10001" +280616,AAA Batteries (4-pack),1,2.99,10/10/19 17:04,"219 North St, San Francisco, CA 94016" +280617,iPhone,1,700,10/06/19 22:07,"396 Washington St, Dallas, TX 75001" +280617,Lightning Charging Cable,1,14.95,10/06/19 22:07,"396 Washington St, Dallas, TX 75001" +280618,AAA Batteries (4-pack),1,2.99,10/28/19 12:59,"757 Walnut St, San Francisco, CA 94016" +280619,Wired Headphones,1,11.99,10/22/19 08:50,"737 12th St, Los Angeles, CA 90001" +280620,Wired Headphones,2,11.99,10/01/19 17:30,"943 9th St, San Francisco, CA 94016" +280621,27in FHD Monitor,1,149.99,10/14/19 13:09,"725 Park St, San Francisco, CA 94016" +280622,USB-C Charging Cable,1,11.95,10/01/19 12:12,"48 Sunset St, Seattle, WA 98101" +280623,Google Phone,1,600,10/07/19 02:44,"725 Hickory St, New York City, NY 10001" +280624,34in Ultrawide Monitor,1,379.99,10/14/19 11:22,"904 10th St, Dallas, TX 75001" +280625,Vareebadd Phone,1,400,10/06/19 10:19,"113 Lakeview St, Seattle, WA 98101" +280626,ThinkPad Laptop,1,999.99,10/14/19 00:03,"942 Pine St, New York City, NY 10001" +280627,Google Phone,1,600,10/04/19 16:55,"444 South St, Los Angeles, CA 90001" +280628,Wired Headphones,1,11.99,10/15/19 22:48,"586 9th St, New York City, NY 10001" +280629,Apple Airpods Headphones,1,150,10/12/19 08:20,"585 Meadow St, Boston, MA 02215" +280630,AAA Batteries (4-pack),1,2.99,10/28/19 18:27,"961 Church St, Seattle, WA 98101" +280631,34in Ultrawide Monitor,1,379.99,10/22/19 18:48,"321 Pine St, New York City, NY 10001" +280632,ThinkPad Laptop,1,999.99,10/13/19 12:26,"258 2nd St, San Francisco, CA 94016" +280633,Apple Airpods Headphones,1,150,10/02/19 18:53,"176 Hill St, Boston, MA 02215" +280634,Flatscreen TV,1,300,10/01/19 17:30,"617 11th St, San Francisco, CA 94016" +280635,Lightning Charging Cable,1,14.95,10/16/19 23:41,"806 10th St, San Francisco, CA 94016" +280635,27in 4K Gaming Monitor,1,389.99,10/16/19 23:41,"806 10th St, San Francisco, CA 94016" +280636,27in 4K Gaming Monitor,1,389.99,10/28/19 14:02,"689 Jackson St, New York City, NY 10001" +280637,Wired Headphones,1,11.99,10/21/19 09:49,"129 2nd St, Seattle, WA 98101" +280638,AA Batteries (4-pack),1,3.84,10/16/19 21:12,"26 Jefferson St, Atlanta, GA 30301" +280639,Bose SoundSport Headphones,1,99.99,10/13/19 08:48,"255 North St, San Francisco, CA 94016" +280640,AAA Batteries (4-pack),1,2.99,10/04/19 08:18,"746 Church St, San Francisco, CA 94016" +280641,Lightning Charging Cable,1,14.95,10/06/19 22:33,"528 Elm St, San Francisco, CA 94016" +280642,Wired Headphones,1,11.99,10/06/19 00:56,"832 11th St, Seattle, WA 98101" +280643,Wired Headphones,1,11.99,10/20/19 10:07,"31 Jefferson St, San Francisco, CA 94016" +280644,27in FHD Monitor,1,149.99,10/27/19 12:57,"556 Dogwood St, Dallas, TX 75001" +280645,27in FHD Monitor,1,149.99,10/30/19 07:11,"154 5th St, New York City, NY 10001" +280646,Wired Headphones,2,11.99,10/11/19 09:11,"621 13th St, Seattle, WA 98101" +280646,ThinkPad Laptop,1,999.99,10/11/19 09:11,"621 13th St, Seattle, WA 98101" +280647,Lightning Charging Cable,1,14.95,10/25/19 14:03,"282 9th St, Los Angeles, CA 90001" +280648,Lightning Charging Cable,1,14.95,10/24/19 19:33,"921 South St, San Francisco, CA 94016" +280649,AAA Batteries (4-pack),2,2.99,10/18/19 10:46,"912 Washington St, San Francisco, CA 94016" +280650,AAA Batteries (4-pack),1,2.99,10/24/19 07:06,"168 Lincoln St, Portland, ME 04101" +280650,34in Ultrawide Monitor,1,379.99,10/24/19 07:06,"168 Lincoln St, Portland, ME 04101" +280651,AA Batteries (4-pack),1,3.84,10/22/19 12:59,"987 Chestnut St, San Francisco, CA 94016" +280652,ThinkPad Laptop,1,999.99,10/17/19 12:26,"831 Spruce St, Atlanta, GA 30301" +280653,Bose SoundSport Headphones,1,99.99,10/21/19 14:54,"609 7th St, Boston, MA 02215" +280654,Lightning Charging Cable,1,14.95,10/24/19 14:44,"450 North St, New York City, NY 10001" +280655,AAA Batteries (4-pack),3,2.99,10/02/19 13:42,"111 Center St, San Francisco, CA 94016" +280656,AAA Batteries (4-pack),1,2.99,10/08/19 12:01,"877 Spruce St, Los Angeles, CA 90001" +280657,iPhone,1,700,10/02/19 10:51,"320 Highland St, San Francisco, CA 94016" +280658,AA Batteries (4-pack),1,3.84,10/20/19 08:13,"111 12th St, San Francisco, CA 94016" +280659,AAA Batteries (4-pack),2,2.99,10/12/19 18:51,"379 Adams St, Austin, TX 73301" +280660,Lightning Charging Cable,1,14.95,10/18/19 10:18,"510 Madison St, Atlanta, GA 30301" +280661,AAA Batteries (4-pack),1,2.99,10/23/19 22:59,"956 Pine St, San Francisco, CA 94016" +280662,ThinkPad Laptop,1,999.99,10/22/19 07:14,"162 Hickory St, Austin, TX 73301" +280663,Wired Headphones,1,11.99,10/21/19 14:08,"518 9th St, Dallas, TX 75001" +280664,Apple Airpods Headphones,1,150,10/08/19 17:39,"37 Chestnut St, San Francisco, CA 94016" +280665,ThinkPad Laptop,1,999.99,10/05/19 22:47,"752 Hickory St, San Francisco, CA 94016" +280666,AA Batteries (4-pack),2,3.84,10/11/19 07:27,"815 Pine St, Dallas, TX 75001" +280667,27in FHD Monitor,1,149.99,10/05/19 17:12,"355 Center St, San Francisco, CA 94016" +280668,USB-C Charging Cable,1,11.95,10/09/19 07:52,"525 2nd St, San Francisco, CA 94016" +280669,USB-C Charging Cable,1,11.95,10/30/19 10:17,"183 14th St, Los Angeles, CA 90001" +280670,34in Ultrawide Monitor,1,379.99,10/25/19 18:59,"328 5th St, Austin, TX 73301" +280671,Flatscreen TV,1,300,10/11/19 17:12,"34 Hill St, Los Angeles, CA 90001" +280672,AAA Batteries (4-pack),2,2.99,10/03/19 15:23,"638 Hill St, New York City, NY 10001" +280673,Wired Headphones,1,11.99,10/27/19 19:52,"292 11th St, San Francisco, CA 94016" +280674,AAA Batteries (4-pack),1,2.99,10/05/19 22:00,"613 13th St, New York City, NY 10001" +280675,Lightning Charging Cable,1,14.95,10/17/19 08:39,"485 9th St, San Francisco, CA 94016" +280676,AAA Batteries (4-pack),1,2.99,10/30/19 14:00,"39 Hill St, Atlanta, GA 30301" +280677,AA Batteries (4-pack),1,3.84,10/31/19 00:00,"330 Dogwood St, San Francisco, CA 94016" +280678,Apple Airpods Headphones,1,150,10/07/19 21:12,"655 1st St, Boston, MA 02215" +280679,20in Monitor,1,109.99,10/07/19 19:37,"405 Church St, Atlanta, GA 30301" +280680,Wired Headphones,1,11.99,10/04/19 22:11,"285 Park St, Boston, MA 02215" +280681,Bose SoundSport Headphones,1,99.99,10/23/19 05:26,"100 Lake St, San Francisco, CA 94016" +,,,,, +280682,AA Batteries (4-pack),1,3.84,10/19/19 09:24,"513 10th St, San Francisco, CA 94016" +280683,Apple Airpods Headphones,1,150,10/07/19 18:03,"699 14th St, New York City, NY 10001" +280684,Bose SoundSport Headphones,1,99.99,10/10/19 11:06,"569 Meadow St, New York City, NY 10001" +280684,Lightning Charging Cable,1,14.95,10/10/19 11:06,"569 Meadow St, New York City, NY 10001" +280685,AA Batteries (4-pack),3,3.84,10/28/19 17:17,"514 Church St, Atlanta, GA 30301" +280686,Bose SoundSport Headphones,1,99.99,10/04/19 12:04,"29 Hill St, Portland, OR 97035" +280687,Bose SoundSport Headphones,1,99.99,10/17/19 20:02,"765 Dogwood St, New York City, NY 10001" +280688,Lightning Charging Cable,1,14.95,10/30/19 20:00,"967 Highland St, New York City, NY 10001" +280689,AAA Batteries (4-pack),2,2.99,10/31/19 13:17,"679 6th St, Dallas, TX 75001" +280690,USB-C Charging Cable,1,11.95,10/09/19 15:02,"259 Spruce St, Portland, ME 04101" +280691,Wired Headphones,1,11.99,10/18/19 13:01,"666 Pine St, Dallas, TX 75001" +280692,Lightning Charging Cable,1,14.95,10/27/19 21:55,"536 2nd St, New York City, NY 10001" +280693,Lightning Charging Cable,1,14.95,10/18/19 13:42,"466 Dogwood St, San Francisco, CA 94016" +280694,Bose SoundSport Headphones,1,99.99,10/13/19 22:38,"717 Hill St, San Francisco, CA 94016" +280695,AAA Batteries (4-pack),2,2.99,10/10/19 21:47,"863 Jackson St, Los Angeles, CA 90001" +280696,Apple Airpods Headphones,1,150,10/28/19 21:22,"529 11th St, Seattle, WA 98101" +280697,Apple Airpods Headphones,1,150,10/20/19 22:51,"502 Johnson St, Dallas, TX 75001" +280698,Lightning Charging Cable,1,14.95,10/11/19 21:45,"1 Hill St, New York City, NY 10001" +280699,Lightning Charging Cable,1,14.95,10/20/19 20:01,"756 Madison St, Los Angeles, CA 90001" +280700,27in 4K Gaming Monitor,1,389.99,10/23/19 09:42,"780 5th St, Seattle, WA 98101" +280701,Wired Headphones,2,11.99,10/12/19 02:22,"303 Spruce St, San Francisco, CA 94016" +280702,LG Washing Machine,1,600.0,10/14/19 21:02,"753 Maple St, Los Angeles, CA 90001" +280702,AAA Batteries (4-pack),1,2.99,10/14/19 21:02,"753 Maple St, Los Angeles, CA 90001" +280703,27in FHD Monitor,1,149.99,10/27/19 20:23,"45 Hill St, Portland, ME 04101" +280704,AA Batteries (4-pack),1,3.84,10/03/19 10:29,"499 14th St, Boston, MA 02215" +280705,Wired Headphones,3,11.99,10/04/19 11:53,"895 South St, Seattle, WA 98101" +280706,USB-C Charging Cable,1,11.95,10/08/19 10:02,"520 Pine St, Atlanta, GA 30301" +280707,AAA Batteries (4-pack),2,2.99,10/21/19 13:15,"745 9th St, Boston, MA 02215" +280708,Wired Headphones,1,11.99,10/31/19 12:35,"153 13th St, San Francisco, CA 94016" +280709,Wired Headphones,1,11.99,10/11/19 20:20,"397 9th St, Dallas, TX 75001" +280710,AAA Batteries (4-pack),1,2.99,10/24/19 17:28,"138 Elm St, Austin, TX 73301" +280711,Vareebadd Phone,1,400,10/21/19 21:56,"345 Lake St, Portland, ME 04101" +280711,Bose SoundSport Headphones,1,99.99,10/21/19 21:56,"345 Lake St, Portland, ME 04101" +280711,Wired Headphones,2,11.99,10/21/19 21:56,"345 Lake St, Portland, ME 04101" +280712,AAA Batteries (4-pack),1,2.99,10/22/19 15:12,"785 Dogwood St, Dallas, TX 75001" +280713,Wired Headphones,1,11.99,10/30/19 18:00,"990 Chestnut St, Los Angeles, CA 90001" +280714,Wired Headphones,1,11.99,10/07/19 00:29,"260 Lakeview St, Portland, OR 97035" +280715,Lightning Charging Cable,1,14.95,10/11/19 14:27,"19 6th St, San Francisco, CA 94016" +280716,Wired Headphones,1,11.99,10/16/19 16:59,"233 Center St, Boston, MA 02215" +280717,34in Ultrawide Monitor,1,379.99,10/06/19 21:36,"241 Walnut St, Los Angeles, CA 90001" +280718,iPhone,1,700,10/16/19 09:01,"617 South St, Atlanta, GA 30301" +280719,AAA Batteries (4-pack),2,2.99,10/26/19 19:52,"851 Elm St, Seattle, WA 98101" +280720,Lightning Charging Cable,1,14.95,10/24/19 21:49,"931 Center St, Seattle, WA 98101" +280721,USB-C Charging Cable,1,11.95,10/29/19 22:40,"364 Walnut St, Austin, TX 73301" +280722,USB-C Charging Cable,1,11.95,10/28/19 10:36,"828 2nd St, New York City, NY 10001" +280723,27in 4K Gaming Monitor,1,389.99,10/30/19 16:29,"756 Sunset St, Boston, MA 02215" +280724,Wired Headphones,1,11.99,10/12/19 09:14,"33 Jackson St, San Francisco, CA 94016" +280725,Apple Airpods Headphones,1,150,10/16/19 18:54,"887 2nd St, Austin, TX 73301" +280726,Wired Headphones,1,11.99,10/12/19 17:17,"721 Madison St, Boston, MA 02215" +280727,AAA Batteries (4-pack),1,2.99,10/04/19 04:23,"178 Adams St, Boston, MA 02215" +280728,27in FHD Monitor,1,149.99,10/15/19 23:31,"924 1st St, San Francisco, CA 94016" +280729,20in Monitor,1,109.99,10/21/19 11:17,"785 Meadow St, Portland, OR 97035" +280730,Apple Airpods Headphones,1,150,10/08/19 17:13,"751 South St, Los Angeles, CA 90001" +280731,34in Ultrawide Monitor,1,379.99,10/31/19 17:45,"292 12th St, Boston, MA 02215" +280732,Wired Headphones,1,11.99,10/24/19 20:00,"969 Lake St, Atlanta, GA 30301" +280733,20in Monitor,1,109.99,10/12/19 21:31,"14 Hill St, Boston, MA 02215" +280734,Lightning Charging Cable,1,14.95,10/16/19 19:35,"77 Washington St, New York City, NY 10001" +280734,Lightning Charging Cable,1,14.95,10/16/19 19:35,"77 Washington St, New York City, NY 10001" +280735,Bose SoundSport Headphones,1,99.99,10/15/19 22:56,"8 8th St, Boston, MA 02215" +280736,USB-C Charging Cable,2,11.95,10/01/19 23:21,"20 6th St, New York City, NY 10001" +280737,Vareebadd Phone,1,400,10/30/19 10:11,"246 Adams St, New York City, NY 10001" +280738,27in FHD Monitor,1,149.99,10/31/19 15:03,"413 Sunset St, Los Angeles, CA 90001" +280739,Bose SoundSport Headphones,1,99.99,10/23/19 16:43,"812 Cherry St, New York City, NY 10001" +280740,20in Monitor,1,109.99,10/01/19 16:31,"464 12th St, Los Angeles, CA 90001" +280741,iPhone,1,700,10/13/19 04:22,"97 Madison St, Los Angeles, CA 90001" +280741,Lightning Charging Cable,1,14.95,10/13/19 04:22,"97 Madison St, Los Angeles, CA 90001" +280741,Apple Airpods Headphones,1,150,10/13/19 04:22,"97 Madison St, Los Angeles, CA 90001" +280742,Google Phone,1,600,10/05/19 06:38,"541 Walnut St, Los Angeles, CA 90001" +280743,Apple Airpods Headphones,1,150,10/12/19 10:44,"972 Lincoln St, Dallas, TX 75001" +280744,27in FHD Monitor,1,149.99,10/31/19 18:50,"193 4th St, Dallas, TX 75001" +280745,Macbook Pro Laptop,1,1700,10/18/19 18:59,"672 Church St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +280746,27in 4K Gaming Monitor,1,389.99,10/26/19 21:08,"949 Maple St, Boston, MA 02215" +280747,34in Ultrawide Monitor,1,379.99,10/15/19 23:28,"10 Center St, Atlanta, GA 30301" +280748,USB-C Charging Cable,1,11.95,10/16/19 19:25,"753 Park St, Boston, MA 02215" +280749,AA Batteries (4-pack),4,3.84,10/24/19 13:45,"423 Ridge St, Los Angeles, CA 90001" +280750,27in 4K Gaming Monitor,1,389.99,10/02/19 19:28,"730 Hill St, New York City, NY 10001" +280751,Apple Airpods Headphones,1,150,10/06/19 16:47,"737 Church St, Los Angeles, CA 90001" +280752,Flatscreen TV,1,300,10/04/19 11:29,"1 Maple St, Seattle, WA 98101" +280753,AAA Batteries (4-pack),1,2.99,10/11/19 16:43,"549 13th St, Dallas, TX 75001" +280754,20in Monitor,1,109.99,10/10/19 12:05,"285 Forest St, Austin, TX 73301" +,,,,, +280755,AA Batteries (4-pack),1,3.84,10/18/19 19:28,"116 8th St, San Francisco, CA 94016" +280756,AA Batteries (4-pack),1,3.84,10/02/19 15:47,"120 12th St, Boston, MA 02215" +280757,Flatscreen TV,1,300,10/22/19 10:24,"105 North St, Dallas, TX 75001" +280758,Bose SoundSport Headphones,1,99.99,10/07/19 16:20,"39 5th St, Boston, MA 02215" +280759,Apple Airpods Headphones,1,150,10/14/19 11:48,"435 Chestnut St, Boston, MA 02215" +280760,AAA Batteries (4-pack),2,2.99,10/02/19 16:23,"767 Center St, San Francisco, CA 94016" +280761,USB-C Charging Cable,1,11.95,10/25/19 20:08,"179 12th St, San Francisco, CA 94016" +280762,iPhone,1,700,10/08/19 06:59,"802 Church St, Austin, TX 73301" +280763,Apple Airpods Headphones,1,150,10/07/19 09:29,"147 11th St, Boston, MA 02215" +280764,Lightning Charging Cable,2,14.95,10/22/19 20:06,"552 Cherry St, Seattle, WA 98101" +280765,iPhone,1,700,10/02/19 14:56,"324 Forest St, New York City, NY 10001" +280766,USB-C Charging Cable,1,11.95,10/27/19 15:30,"841 Main St, San Francisco, CA 94016" +280767,Lightning Charging Cable,1,14.95,10/15/19 21:07,"899 Center St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +280768,AAA Batteries (4-pack),1,2.99,10/13/19 21:39,"706 11th St, Boston, MA 02215" +280769,USB-C Charging Cable,1,11.95,10/14/19 17:19,"641 Pine St, San Francisco, CA 94016" +280770,Apple Airpods Headphones,1,150,10/02/19 14:45,"329 8th St, New York City, NY 10001" +280771,27in FHD Monitor,1,149.99,10/24/19 16:00,"588 Elm St, Los Angeles, CA 90001" +280772,USB-C Charging Cable,2,11.95,10/17/19 12:16,"540 Pine St, New York City, NY 10001" +280773,AA Batteries (4-pack),1,3.84,10/02/19 07:11,"440 Lakeview St, San Francisco, CA 94016" +280773,AAA Batteries (4-pack),1,2.99,10/02/19 07:11,"440 Lakeview St, San Francisco, CA 94016" +280774,Lightning Charging Cable,1,14.95,10/29/19 14:34,"19 7th St, New York City, NY 10001" +280775,USB-C Charging Cable,2,11.95,10/22/19 18:02,"545 Lakeview St, San Francisco, CA 94016" +280776,Wired Headphones,1,11.99,10/03/19 08:02,"145 8th St, Seattle, WA 98101" +280777,ThinkPad Laptop,1,999.99,10/12/19 17:49,"632 2nd St, Austin, TX 73301" +280778,Wired Headphones,1,11.99,10/21/19 15:15,"773 Meadow St, Los Angeles, CA 90001" +280779,AAA Batteries (4-pack),2,2.99,10/05/19 20:11,"525 Elm St, San Francisco, CA 94016" +280780,34in Ultrawide Monitor,1,379.99,10/10/19 13:13,"80 Cherry St, Seattle, WA 98101" +280781,AAA Batteries (4-pack),2,2.99,10/20/19 21:50,"564 Cherry St, San Francisco, CA 94016" +280782,AAA Batteries (4-pack),1,2.99,10/22/19 12:19,"425 1st St, Boston, MA 02215" +280783,AA Batteries (4-pack),1,3.84,10/17/19 20:08,"479 West St, San Francisco, CA 94016" +280784,AA Batteries (4-pack),1,3.84,10/01/19 06:36,"657 Washington St, San Francisco, CA 94016" +280785,AAA Batteries (4-pack),1,2.99,10/13/19 19:03,"422 9th St, Los Angeles, CA 90001" +280786,AAA Batteries (4-pack),1,2.99,10/03/19 16:22,"176 1st St, New York City, NY 10001" +280787,Apple Airpods Headphones,1,150,10/06/19 08:50,"196 Maple St, Los Angeles, CA 90001" +,,,,, +280788,AAA Batteries (4-pack),2,2.99,10/20/19 13:07,"302 Chestnut St, San Francisco, CA 94016" +280789,ThinkPad Laptop,1,999.99,10/26/19 11:41,"762 Park St, Los Angeles, CA 90001" +280790,Lightning Charging Cable,1,14.95,10/28/19 22:00,"909 Dogwood St, Boston, MA 02215" +280791,USB-C Charging Cable,1,11.95,10/27/19 14:38,"348 Chestnut St, Atlanta, GA 30301" +280792,27in 4K Gaming Monitor,1,389.99,10/16/19 09:40,"75 4th St, San Francisco, CA 94016" +280793,USB-C Charging Cable,1,11.95,10/28/19 12:09,"574 Ridge St, Los Angeles, CA 90001" +280794,AAA Batteries (4-pack),1,2.99,10/05/19 10:58,"822 Cherry St, Atlanta, GA 30301" +280795,AAA Batteries (4-pack),1,2.99,10/08/19 16:10,"946 9th St, Atlanta, GA 30301" +280796,USB-C Charging Cable,1,11.95,10/19/19 11:52,"538 Cedar St, San Francisco, CA 94016" +280797,iPhone,1,700,10/07/19 16:57,"354 6th St, Austin, TX 73301" +280798,Bose SoundSport Headphones,1,99.99,10/20/19 17:11,"523 14th St, Portland, OR 97035" +280799,Bose SoundSport Headphones,1,99.99,10/02/19 20:45,"96 South St, Los Angeles, CA 90001" +280800,AAA Batteries (4-pack),2,2.99,10/24/19 22:17,"525 Wilson St, Los Angeles, CA 90001" +280801,Wired Headphones,1,11.99,10/04/19 17:36,"602 Meadow St, Seattle, WA 98101" +280802,AA Batteries (4-pack),1,3.84,10/08/19 10:40,"58 2nd St, New York City, NY 10001" +280803,34in Ultrawide Monitor,1,379.99,10/15/19 19:54,"471 7th St, Portland, OR 97035" +280804,Flatscreen TV,1,300,10/04/19 12:54,"324 Adams St, Atlanta, GA 30301" +280805,Wired Headphones,1,11.99,10/07/19 12:21,"69 Chestnut St, San Francisco, CA 94016" +280806,AA Batteries (4-pack),1,3.84,10/11/19 15:57,"76 Washington St, Seattle, WA 98101" +280807,Bose SoundSport Headphones,1,99.99,10/12/19 17:41,"691 Washington St, San Francisco, CA 94016" +280808,LG Dryer,1,600.0,10/26/19 17:35,"118 Lincoln St, Portland, OR 97035" +280809,Vareebadd Phone,1,400,10/03/19 20:15,"793 Lakeview St, San Francisco, CA 94016" +280809,USB-C Charging Cable,1,11.95,10/03/19 20:15,"793 Lakeview St, San Francisco, CA 94016" +280810,Apple Airpods Headphones,1,150,10/29/19 14:28,"222 11th St, San Francisco, CA 94016" +280811,USB-C Charging Cable,1,11.95,10/03/19 19:30,"315 Madison St, New York City, NY 10001" +280812,Wired Headphones,1,11.99,10/06/19 11:39,"494 5th St, New York City, NY 10001" +280813,Lightning Charging Cable,1,14.95,10/23/19 14:21,"280 Jackson St, Austin, TX 73301" +280814,AA Batteries (4-pack),2,3.84,10/01/19 09:15,"340 Cherry St, Austin, TX 73301" +280815,Lightning Charging Cable,2,14.95,10/01/19 17:14,"873 Main St, Los Angeles, CA 90001" +280816,Wired Headphones,1,11.99,10/19/19 14:16,"831 Main St, Los Angeles, CA 90001" +280817,Google Phone,1,600,10/13/19 09:45,"301 Highland St, Boston, MA 02215" +280818,Apple Airpods Headphones,1,150,10/12/19 15:27,"199 South St, San Francisco, CA 94016" +280819,Lightning Charging Cable,1,14.95,10/22/19 12:31,"530 North St, San Francisco, CA 94016" +280820,Apple Airpods Headphones,1,150,10/28/19 02:47,"617 Adams St, Seattle, WA 98101" +280821,Wired Headphones,1,11.99,10/01/19 17:31,"301 Hill St, Atlanta, GA 30301" +280822,Macbook Pro Laptop,1,1700,10/08/19 20:01,"966 9th St, Dallas, TX 75001" +280823,Wired Headphones,1,11.99,10/08/19 20:03,"850 Sunset St, Los Angeles, CA 90001" +280824,AA Batteries (4-pack),1,3.84,10/05/19 18:00,"499 River St, San Francisco, CA 94016" +280825,USB-C Charging Cable,1,11.95,10/17/19 16:06,"121 Meadow St, San Francisco, CA 94016" +280826,27in FHD Monitor,1,149.99,10/26/19 21:02,"505 Lincoln St, Boston, MA 02215" +280827,Apple Airpods Headphones,1,150,10/10/19 22:45,"134 Lincoln St, Boston, MA 02215" +280828,USB-C Charging Cable,1,11.95,10/29/19 00:21,"30 Main St, Boston, MA 02215" +280829,AA Batteries (4-pack),1,3.84,10/29/19 00:16,"411 Hickory St, Boston, MA 02215" +280830,AAA Batteries (4-pack),1,2.99,10/03/19 16:52,"949 Main St, Dallas, TX 75001" +280831,27in 4K Gaming Monitor,1,389.99,10/29/19 20:10,"774 Lake St, Boston, MA 02215" +280832,34in Ultrawide Monitor,1,379.99,10/06/19 22:31,"986 13th St, San Francisco, CA 94016" +280833,Wired Headphones,1,11.99,10/05/19 23:48,"228 North St, San Francisco, CA 94016" +280834,USB-C Charging Cable,1,11.95,10/07/19 10:44,"743 8th St, Atlanta, GA 30301" +280835,USB-C Charging Cable,1,11.95,10/31/19 11:23,"677 10th St, Seattle, WA 98101" +280836,AAA Batteries (4-pack),1,2.99,10/15/19 00:23,"484 South St, San Francisco, CA 94016" +280837,27in 4K Gaming Monitor,1,389.99,10/29/19 12:28,"535 Park St, Austin, TX 73301" +280838,iPhone,1,700,10/25/19 12:19,"766 6th St, San Francisco, CA 94016" +280839,AA Batteries (4-pack),3,3.84,10/31/19 14:45,"705 Cherry St, New York City, NY 10001" +280840,USB-C Charging Cable,1,11.95,10/05/19 14:11,"246 9th St, San Francisco, CA 94016" +280841,Wired Headphones,1,11.99,10/15/19 19:17,"422 Meadow St, Los Angeles, CA 90001" +280842,Apple Airpods Headphones,1,150,10/29/19 00:39,"618 Meadow St, Dallas, TX 75001" +280843,27in 4K Gaming Monitor,1,389.99,10/08/19 00:27,"272 Willow St, New York City, NY 10001" +280844,AAA Batteries (4-pack),1,2.99,10/20/19 12:39,"409 Church St, Dallas, TX 75001" +280845,AAA Batteries (4-pack),3,2.99,10/17/19 10:33,"981 7th St, Dallas, TX 75001" +280846,Lightning Charging Cable,1,14.95,10/23/19 20:40,"683 Meadow St, New York City, NY 10001" +280847,iPhone,1,700,10/19/19 11:54,"917 8th St, Seattle, WA 98101" +280848,Google Phone,1,600,10/03/19 19:27,"888 Elm St, San Francisco, CA 94016" +280849,Wired Headphones,1,11.99,10/08/19 18:13,"360 Highland St, Boston, MA 02215" +280850,Macbook Pro Laptop,1,1700,10/31/19 14:16,"286 Madison St, Los Angeles, CA 90001" +280851,ThinkPad Laptop,1,999.99,10/07/19 10:42,"357 Jefferson St, Boston, MA 02215" +280852,Macbook Pro Laptop,1,1700,10/29/19 14:51,"497 Johnson St, Seattle, WA 98101" +280853,27in FHD Monitor,1,149.99,10/07/19 15:45,"571 Wilson St, Los Angeles, CA 90001" +280854,AAA Batteries (4-pack),3,2.99,10/22/19 12:11,"992 6th St, Portland, ME 04101" +280855,Wired Headphones,1,11.99,10/19/19 10:30,"433 14th St, Dallas, TX 75001" +280856,USB-C Charging Cable,1,11.95,10/04/19 20:13,"45 Sunset St, Dallas, TX 75001" +280857,USB-C Charging Cable,1,11.95,10/05/19 22:48,"557 Sunset St, Portland, OR 97035" +280858,Apple Airpods Headphones,1,150,10/02/19 16:46,"707 Highland St, Dallas, TX 75001" +280859,Bose SoundSport Headphones,1,99.99,10/08/19 14:40,"715 Washington St, Portland, OR 97035" +280860,Wired Headphones,1,11.99,10/23/19 21:48,"260 Park St, San Francisco, CA 94016" +280861,20in Monitor,1,109.99,10/07/19 19:34,"806 11th St, Boston, MA 02215" +280862,AAA Batteries (4-pack),1,2.99,10/12/19 17:25,"469 14th St, Seattle, WA 98101" +280863,AA Batteries (4-pack),1,3.84,10/31/19 15:55,"209 North St, New York City, NY 10001" +280864,Apple Airpods Headphones,1,150,10/19/19 16:06,"313 Chestnut St, San Francisco, CA 94016" +280865,AA Batteries (4-pack),3,3.84,10/11/19 19:39,"480 Willow St, San Francisco, CA 94016" +280866,34in Ultrawide Monitor,1,379.99,10/02/19 20:24,"81 Cherry St, Boston, MA 02215" +280867,Bose SoundSport Headphones,1,99.99,10/10/19 12:31,"509 13th St, Boston, MA 02215" +280868,Lightning Charging Cable,1,14.95,10/26/19 20:55,"945 Chestnut St, Dallas, TX 75001" +280869,Bose SoundSport Headphones,1,99.99,10/01/19 17:54,"397 11th St, San Francisco, CA 94016" +280870,Wired Headphones,1,11.99,10/15/19 13:56,"289 North St, Los Angeles, CA 90001" +280871,Wired Headphones,1,11.99,10/08/19 12:48,"978 Walnut St, Austin, TX 73301" +280872,USB-C Charging Cable,1,11.95,10/29/19 20:29,"96 14th St, San Francisco, CA 94016" +280873,iPhone,1,700,10/19/19 23:12,"540 North St, Portland, OR 97035" +280874,AA Batteries (4-pack),3,3.84,10/06/19 14:01,"47 Wilson St, Seattle, WA 98101" +280875,AA Batteries (4-pack),2,3.84,10/04/19 14:49,"371 Washington St, San Francisco, CA 94016" +280876,AAA Batteries (4-pack),2,2.99,10/18/19 13:20,"133 5th St, San Francisco, CA 94016" +280877,AA Batteries (4-pack),2,3.84,10/14/19 20:56,"869 Johnson St, San Francisco, CA 94016" +280878,Bose SoundSport Headphones,1,99.99,10/22/19 22:17,"114 Maple St, New York City, NY 10001" +280879,Bose SoundSport Headphones,1,99.99,10/14/19 09:33,"505 Meadow St, San Francisco, CA 94016" +280880,AA Batteries (4-pack),3,3.84,10/27/19 19:03,"13 Jackson St, Dallas, TX 75001" +280881,USB-C Charging Cable,1,11.95,10/08/19 14:44,"122 Walnut St, San Francisco, CA 94016" +280882,AAA Batteries (4-pack),1,2.99,10/19/19 12:52,"232 10th St, San Francisco, CA 94016" +280883,AAA Batteries (4-pack),1,2.99,10/10/19 23:46,"991 Lakeview St, Austin, TX 73301" +280884,Apple Airpods Headphones,1,150,10/30/19 21:41,"254 4th St, Dallas, TX 75001" +280885,AA Batteries (4-pack),1,3.84,10/28/19 12:15,"203 Elm St, New York City, NY 10001" +280886,Google Phone,1,600.0,11/06/19 10:28,"278 Meadow St, Seattle, WA 98101" +280887,USB-C Charging Cable,1,11.95,11/19/19 15:44,"400 Johnson St, Seattle, WA 98101" +280888,27in 4K Gaming Monitor,1,389.99,11/12/19 05:34,"814 Walnut St, Boston, MA 02215" +280889,Wired Headphones,1,11.99,11/06/19 13:26,"69 Sunset St, Los Angeles, CA 90001" +280890,Apple Airpods Headphones,1,150.0,11/17/19 23:04,"935 11th St, Dallas, TX 75001" +280891,ThinkPad Laptop,1,999.99,11/25/19 11:28,"783 6th St, San Francisco, CA 94016" +280892,AA Batteries (4-pack),1,3.84,11/08/19 11:39,"100 10th St, San Francisco, CA 94016" +280893,AA Batteries (4-pack),2,3.84,11/06/19 14:31,"5 Lincoln St, Seattle, WA 98101" +280894,AA Batteries (4-pack),2,3.84,11/09/19 16:06,"240 Chestnut St, Portland, OR 97035" +280895,Wired Headphones,1,11.99,11/15/19 15:30,"455 Willow St, Los Angeles, CA 90001" +280896,USB-C Charging Cable,1,11.95,11/14/19 21:55,"454 Cedar St, Seattle, WA 98101" +280897,Apple Airpods Headphones,1,150.0,11/11/19 10:53,"177 Cedar St, Atlanta, GA 30301" +280898,Wired Headphones,1,11.99,11/24/19 10:37,"730 River St, San Francisco, CA 94016" +280899,27in 4K Gaming Monitor,1,389.99,11/22/19 10:53,"607 10th St, Atlanta, GA 30301" +280899,Google Phone,1,600.0,11/22/19 10:53,"607 10th St, Atlanta, GA 30301" +280900,AA Batteries (4-pack),1,3.84,11/16/19 23:03,"27 Main St, San Francisco, CA 94016" +280901,USB-C Charging Cable,1,11.95,11/02/19 19:30,"626 Spruce St, Portland, OR 97035" +280902,USB-C Charging Cable,1,11.95,11/20/19 14:59,"181 12th St, Boston, MA 02215" +280903,AAA Batteries (4-pack),1,2.99,11/17/19 22:47,"296 Johnson St, Atlanta, GA 30301" +280904,AAA Batteries (4-pack),3,2.99,11/27/19 11:04,"385 Maple St, San Francisco, CA 94016" +280905,AA Batteries (4-pack),1,3.84,11/25/19 21:11,"600 11th St, Los Angeles, CA 90001" +280906,Macbook Pro Laptop,1,1700.0,11/07/19 21:00,"299 Church St, Boston, MA 02215" +280907,iPhone,1,700.0,11/12/19 10:21,"971 Cherry St, Austin, TX 73301" +280908,Google Phone,1,600.0,11/07/19 10:32,"856 Hickory St, Atlanta, GA 30301" +280909,Bose SoundSport Headphones,1,99.99,11/23/19 15:29,"996 South St, San Francisco, CA 94016" +280910,Bose SoundSport Headphones,1,99.99,11/27/19 02:59,"432 Maple St, Los Angeles, CA 90001" +280911,Lightning Charging Cable,2,14.95,11/04/19 15:53,"768 Main St, San Francisco, CA 94016" +280912,Wired Headphones,1,11.99,11/05/19 16:54,"533 12th St, Austin, TX 73301" +280913,AAA Batteries (4-pack),1,2.99,11/02/19 18:52,"828 Park St, Austin, TX 73301" +280914,AA Batteries (4-pack),1,3.84,11/22/19 11:53,"450 11th St, San Francisco, CA 94016" +280915,AA Batteries (4-pack),1,3.84,11/01/19 16:10,"470 Willow St, San Francisco, CA 94016" +280916,AA Batteries (4-pack),1,3.84,11/20/19 11:48,"941 14th St, Seattle, WA 98101" +280917,Wired Headphones,1,11.99,11/08/19 19:26,"653 Cedar St, Portland, OR 97035" +280918,20in Monitor,1,109.99,11/09/19 10:44,"513 Church St, Portland, OR 97035" +280919,Bose SoundSport Headphones,1,99.99,11/27/19 12:12,"84 13th St, Austin, TX 73301" +280920,Apple Airpods Headphones,1,150.0,11/29/19 17:06,"767 Willow St, Seattle, WA 98101" +280921,Lightning Charging Cable,1,14.95,11/07/19 12:52,"727 Church St, Dallas, TX 75001" +280922,AAA Batteries (4-pack),1,2.99,11/23/19 23:11,"676 9th St, San Francisco, CA 94016" +280923,27in 4K Gaming Monitor,1,389.99,11/02/19 15:25,"441 West St, Atlanta, GA 30301" +280924,AAA Batteries (4-pack),3,2.99,11/03/19 13:25,"111 Hill St, Los Angeles, CA 90001" +280925,AAA Batteries (4-pack),2,2.99,11/27/19 02:10,"384 Hill St, San Francisco, CA 94016" +280926,Apple Airpods Headphones,1,150.0,11/15/19 08:56,"289 Forest St, New York City, NY 10001" +280927,Lightning Charging Cable,1,14.95,11/15/19 08:14,"707 Adams St, Portland, OR 97035" +280928,AAA Batteries (4-pack),1,2.99,11/22/19 07:41,"961 12th St, Portland, ME 04101" +280929,AA Batteries (4-pack),1,3.84,11/01/19 11:12,"449 Hickory St, New York City, NY 10001" +280930,AA Batteries (4-pack),1,3.84,11/04/19 07:47,"501 Meadow St, New York City, NY 10001" +280931,USB-C Charging Cable,1,11.95,11/14/19 06:49,"880 Wilson St, Los Angeles, CA 90001" +280932,LG Dryer,1,600.0,11/01/19 15:06,"28 Pine St, Seattle, WA 98101" +280933,Apple Airpods Headphones,1,150.0,11/25/19 22:31,"921 Wilson St, Atlanta, GA 30301" +280934,Wired Headphones,1,11.99,11/03/19 13:10,"458 Cedar St, San Francisco, CA 94016" +280935,Apple Airpods Headphones,1,150.0,11/21/19 09:04,"462 Meadow St, San Francisco, CA 94016" +280936,AAA Batteries (4-pack),1,2.99,11/03/19 22:05,"173 North St, Seattle, WA 98101" +280937,Macbook Pro Laptop,1,1700.0,11/16/19 17:06,"703 Lake St, San Francisco, CA 94016" +280938,Flatscreen TV,1,300.0,11/01/19 10:59,"699 Elm St, San Francisco, CA 94016" +280939,AA Batteries (4-pack),1,3.84,11/10/19 10:42,"666 4th St, Atlanta, GA 30301" +280940,Bose SoundSport Headphones,1,99.99,11/19/19 17:07,"894 1st St, New York City, NY 10001" +280941,Wired Headphones,1,11.99,11/22/19 20:20,"368 4th St, Los Angeles, CA 90001" +280942,Bose SoundSport Headphones,1,99.99,11/01/19 10:55,"852 9th St, New York City, NY 10001" +280943,USB-C Charging Cable,2,11.95,11/08/19 10:48,"246 Willow St, Boston, MA 02215" +280944,AA Batteries (4-pack),1,3.84,11/30/19 17:03,"385 Jefferson St, San Francisco, CA 94016" +280945,Macbook Pro Laptop,1,1700.0,11/07/19 17:12,"775 West St, San Francisco, CA 94016" +280946,Apple Airpods Headphones,1,150.0,11/06/19 20:35,"422 Maple St, Dallas, TX 75001" +280947,USB-C Charging Cable,1,11.95,11/21/19 07:57,"350 4th St, Austin, TX 73301" +280948,Flatscreen TV,1,300.0,11/15/19 15:20,"611 Johnson St, San Francisco, CA 94016" +280949,Vareebadd Phone,1,400.0,11/18/19 21:54,"636 Chestnut St, San Francisco, CA 94016" +280950,20in Monitor,1,109.99,11/14/19 11:03,"196 Jackson St, San Francisco, CA 94016" +280951,Apple Airpods Headphones,1,150.0,11/09/19 15:39,"866 Madison St, San Francisco, CA 94016" +280952,AAA Batteries (4-pack),1,2.99,11/15/19 18:35,"692 Center St, Boston, MA 02215" +280953,ThinkPad Laptop,1,999.99,11/01/19 23:53,"13 10th St, Boston, MA 02215" +280954,AA Batteries (4-pack),2,3.84,11/20/19 01:11,"706 Washington St, Austin, TX 73301" +280955,Bose SoundSport Headphones,1,99.99,11/16/19 09:34,"880 1st St, Los Angeles, CA 90001" +280955,USB-C Charging Cable,1,11.95,11/16/19 09:34,"880 1st St, Los Angeles, CA 90001" +280956,Google Phone,1,600.0,11/12/19 20:01,"734 Jefferson St, San Francisco, CA 94016" +280957,Bose SoundSport Headphones,1,99.99,11/30/19 10:51,"336 Wilson St, San Francisco, CA 94016" +280958,Wired Headphones,1,11.99,11/04/19 22:23,"995 Maple St, Atlanta, GA 30301" +280959,Lightning Charging Cable,1,14.95,11/27/19 20:55,"690 Forest St, Dallas, TX 75001" +280960,iPhone,1,700.0,11/15/19 19:22,"827 7th St, Boston, MA 02215" +280961,Macbook Pro Laptop,1,1700.0,11/05/19 07:41,"783 Chestnut St, Los Angeles, CA 90001" +280962,Vareebadd Phone,1,400.0,11/24/19 11:39,"519 9th St, Austin, TX 73301" +280962,AAA Batteries (4-pack),2,2.99,11/24/19 11:39,"519 9th St, Austin, TX 73301" +280963,Apple Airpods Headphones,1,150.0,11/12/19 07:21,"508 Washington St, Seattle, WA 98101" +280964,AA Batteries (4-pack),1,3.84,11/18/19 13:44,"112 Pine St, Portland, OR 97035" +280965,Macbook Pro Laptop,1,1700.0,11/22/19 19:32,"753 Hill St, Los Angeles, CA 90001" +280966,Google Phone,1,600.0,11/03/19 09:05,"60 Spruce St, Los Angeles, CA 90001" +280967,Lightning Charging Cable,1,14.95,11/11/19 14:38,"798 Jackson St, Portland, OR 97035" +280968,27in 4K Gaming Monitor,1,389.99,11/27/19 13:48,"847 West St, Portland, OR 97035" +280969,iPhone,1,700.0,11/04/19 04:05,"385 Spruce St, San Francisco, CA 94016" +280970,AA Batteries (4-pack),1,3.84,11/27/19 20:56,"989 1st St, Dallas, TX 75001" +280971,ThinkPad Laptop,1,999.99,11/10/19 14:08,"823 Pine St, Atlanta, GA 30301" +280972,AA Batteries (4-pack),2,3.84,11/10/19 14:22,"765 Lincoln St, Los Angeles, CA 90001" +280973,Wired Headphones,2,11.99,11/06/19 07:38,"914 Johnson St, San Francisco, CA 94016" +280974,Lightning Charging Cable,1,14.95,11/07/19 13:09,"986 Johnson St, Los Angeles, CA 90001" +280975,AA Batteries (4-pack),1,3.84,11/13/19 17:43,"485 North St, Los Angeles, CA 90001" +280976,Wired Headphones,2,11.99,11/10/19 21:49,"504 Main St, Seattle, WA 98101" +280977,AA Batteries (4-pack),2,3.84,11/28/19 12:40,"171 13th St, Seattle, WA 98101" +280978,Wired Headphones,1,11.99,11/12/19 19:28,"637 Ridge St, Austin, TX 73301" +280979,Lightning Charging Cable,1,14.95,11/08/19 17:16,"702 Park St, New York City, NY 10001" +280980,Lightning Charging Cable,2,14.95,11/02/19 16:35,"694 Lakeview St, Los Angeles, CA 90001" +280981,Wired Headphones,1,11.99,11/19/19 15:32,"715 2nd St, San Francisco, CA 94016" +280982,USB-C Charging Cable,1,11.95,11/30/19 18:36,"477 Dogwood St, San Francisco, CA 94016" +280983,AAA Batteries (4-pack),1,2.99,11/25/19 13:14,"425 14th St, San Francisco, CA 94016" +280984,Apple Airpods Headphones,1,150.0,11/12/19 21:12,"831 2nd St, Los Angeles, CA 90001" +280985,Bose SoundSport Headphones,1,99.99,11/30/19 08:44,"420 North St, Boston, MA 02215" +280986,AA Batteries (4-pack),1,3.84,11/09/19 20:14,"95 6th St, Dallas, TX 75001" +280987,Apple Airpods Headphones,1,150.0,11/02/19 17:37,"288 Center St, Seattle, WA 98101" +280988,34in Ultrawide Monitor,1,379.99,11/01/19 10:12,"323 River St, San Francisco, CA 94016" +280989,Apple Airpods Headphones,2,150.0,11/09/19 19:24,"697 Jackson St, Portland, OR 97035" +280990,Flatscreen TV,1,300.0,11/19/19 18:41,"465 Jefferson St, Seattle, WA 98101" +280991,Bose SoundSport Headphones,1,99.99,11/10/19 14:57,"322 Walnut St, Dallas, TX 75001" +280992,AA Batteries (4-pack),2,3.84,11/03/19 17:53,"911 Pine St, Portland, ME 04101" +280993,27in FHD Monitor,1,149.99,11/23/19 13:16,"792 Jefferson St, Boston, MA 02215" +280994,USB-C Charging Cable,1,11.95,11/13/19 00:41,"767 Lakeview St, Los Angeles, CA 90001" +280995,Apple Airpods Headphones,1,150.0,11/02/19 19:03,"655 9th St, Los Angeles, CA 90001" +280996,Bose SoundSport Headphones,1,99.99,11/19/19 10:57,"122 1st St, Dallas, TX 75001" +280997,ThinkPad Laptop,1,999.99,11/13/19 13:53,"15 Hickory St, Austin, TX 73301" +280998,34in Ultrawide Monitor,1,379.99,11/29/19 13:06,"863 Church St, Austin, TX 73301" +280999,AA Batteries (4-pack),1,3.84,11/21/19 20:34,"294 Washington St, New York City, NY 10001" +281000,AAA Batteries (4-pack),1,2.99,11/10/19 10:54,"489 7th St, Boston, MA 02215" +281001,Flatscreen TV,1,300.0,11/18/19 19:20,"722 Madison St, Dallas, TX 75001" +281002,Wired Headphones,1,11.99,11/19/19 07:36,"857 Highland St, Boston, MA 02215" +281003,AAA Batteries (4-pack),1,2.99,11/28/19 17:44,"294 Cherry St, New York City, NY 10001" +281004,AA Batteries (4-pack),1,3.84,11/16/19 00:36,"606 1st St, Austin, TX 73301" +281005,Lightning Charging Cable,1,14.95,11/07/19 05:26,"969 Adams St, San Francisco, CA 94016" +281006,iPhone,1,700.0,11/03/19 08:13,"42 Lincoln St, New York City, NY 10001" +281007,AAA Batteries (4-pack),1,2.99,11/25/19 08:27,"427 Lincoln St, San Francisco, CA 94016" +281008,AA Batteries (4-pack),1,3.84,11/24/19 20:20,"495 Pine St, San Francisco, CA 94016" +281009,Bose SoundSport Headphones,1,99.99,11/10/19 19:10,"441 Chestnut St, Los Angeles, CA 90001" +281010,27in 4K Gaming Monitor,1,389.99,11/07/19 13:08,"170 Park St, San Francisco, CA 94016" +281011,Bose SoundSport Headphones,1,99.99,11/20/19 01:11,"689 Wilson St, Portland, OR 97035" +281012,Apple Airpods Headphones,1,150.0,11/18/19 13:11,"111 Adams St, Los Angeles, CA 90001" +281013,AAA Batteries (4-pack),2,2.99,11/19/19 18:10,"146 South St, Los Angeles, CA 90001" +281014,Lightning Charging Cable,1,14.95,11/28/19 11:12,"345 North St, Seattle, WA 98101" +281015,AA Batteries (4-pack),1,3.84,11/04/19 16:30,"80 Wilson St, Boston, MA 02215" +281016,Wired Headphones,1,11.99,11/09/19 13:25,"762 Wilson St, Portland, OR 97035" +281017,Apple Airpods Headphones,1,150.0,11/08/19 13:41,"601 Dogwood St, Seattle, WA 98101" +281018,USB-C Charging Cable,1,11.95,11/21/19 00:25,"216 6th St, San Francisco, CA 94016" +281019,USB-C Charging Cable,1,11.95,11/12/19 13:24,"128 Meadow St, Boston, MA 02215" +281020,iPhone,1,700.0,11/25/19 10:16,"317 Hill St, Los Angeles, CA 90001" +281020,Apple Airpods Headphones,1,150.0,11/25/19 10:16,"317 Hill St, Los Angeles, CA 90001" +281021,iPhone,1,700.0,11/14/19 23:09,"887 South St, Boston, MA 02215" +281022,Bose SoundSport Headphones,1,99.99,11/08/19 12:37,"707 Forest St, Portland, OR 97035" +281023,Google Phone,1,600.0,11/20/19 16:47,"498 Hill St, Austin, TX 73301" +281023,Bose SoundSport Headphones,1,99.99,11/20/19 16:47,"498 Hill St, Austin, TX 73301" +281024,AA Batteries (4-pack),1,3.84,11/16/19 16:54,"851 Maple St, Dallas, TX 75001" +281025,Bose SoundSport Headphones,1,99.99,11/25/19 12:33,"268 Cedar St, San Francisco, CA 94016" +281026,Wired Headphones,1,11.99,11/21/19 17:32,"428 8th St, New York City, NY 10001" +281027,20in Monitor,1,109.99,11/14/19 22:02,"719 1st St, Los Angeles, CA 90001" +281028,iPhone,1,700.0,11/23/19 14:25,"30 Jefferson St, Atlanta, GA 30301" +281029,Google Phone,1,600.0,11/22/19 09:57,"641 Johnson St, San Francisco, CA 94016" +281030,iPhone,1,700.0,11/29/19 18:45,"464 Spruce St, San Francisco, CA 94016" +281030,Lightning Charging Cable,1,14.95,11/29/19 18:45,"464 Spruce St, San Francisco, CA 94016" +281031,USB-C Charging Cable,1,11.95,11/24/19 20:26,"583 Highland St, Portland, OR 97035" +281032,AA Batteries (4-pack),1,3.84,11/19/19 18:40,"178 South St, Los Angeles, CA 90001" +281033,Lightning Charging Cable,1,14.95,11/19/19 16:46,"466 River St, Portland, OR 97035" +281034,Lightning Charging Cable,1,14.95,11/22/19 21:33,"572 Johnson St, Atlanta, GA 30301" +281035,AA Batteries (4-pack),2,3.84,11/12/19 20:49,"283 Madison St, Portland, OR 97035" +281036,Lightning Charging Cable,3,14.95,11/28/19 16:19,"827 Hill St, Boston, MA 02215" +281037,34in Ultrawide Monitor,1,379.99,11/24/19 12:54,"899 Walnut St, Atlanta, GA 30301" +281038,USB-C Charging Cable,1,11.95,11/09/19 16:31,"592 Dogwood St, New York City, NY 10001" +281039,Flatscreen TV,1,300.0,11/28/19 13:32,"122 Main St, Austin, TX 73301" +281040,USB-C Charging Cable,1,11.95,11/19/19 18:53,"574 Cedar St, Boston, MA 02215" +281041,Macbook Pro Laptop,1,1700.0,11/09/19 19:39,"807 Wilson St, Boston, MA 02215" +281042,20in Monitor,1,109.99,11/06/19 10:54,"78 Sunset St, Los Angeles, CA 90001" +281043,USB-C Charging Cable,1,11.95,11/04/19 10:32,"787 Jackson St, Los Angeles, CA 90001" +281044,Lightning Charging Cable,1,14.95,11/05/19 10:22,"292 Cedar St, Seattle, WA 98101" +281045,Apple Airpods Headphones,1,150.0,11/24/19 12:33,"392 Jackson St, Austin, TX 73301" +281046,iPhone,1,700.0,11/13/19 23:52,"846 10th St, New York City, NY 10001" +281047,USB-C Charging Cable,1,11.95,11/18/19 17:53,"184 Dogwood St, Boston, MA 02215" +281048,USB-C Charging Cable,2,11.95,11/08/19 07:52,"33 Johnson St, Dallas, TX 75001" +281049,27in 4K Gaming Monitor,1,389.99,11/09/19 08:51,"114 13th St, Boston, MA 02215" +281050,Google Phone,1,600.0,11/20/19 00:55,"259 Lakeview St, Boston, MA 02215" +281051,AA Batteries (4-pack),1,3.84,11/07/19 10:52,"477 Chestnut St, Atlanta, GA 30301" +281052,Lightning Charging Cable,2,14.95,11/27/19 11:57,"753 Dogwood St, Dallas, TX 75001" +281053,Google Phone,1,600.0,11/22/19 21:01,"662 River St, Seattle, WA 98101" +281054,AAA Batteries (4-pack),1,2.99,11/19/19 18:36,"17 14th St, New York City, NY 10001" +281055,USB-C Charging Cable,2,11.95,11/12/19 12:14,"402 7th St, Los Angeles, CA 90001" +281056,AA Batteries (4-pack),1,3.84,11/24/19 22:00,"699 Cherry St, Boston, MA 02215" +281057,Macbook Pro Laptop,1,1700.0,11/02/19 23:23,"667 2nd St, San Francisco, CA 94016" +281058,USB-C Charging Cable,1,11.95,11/21/19 07:33,"638 4th St, San Francisco, CA 94016" +281059,iPhone,1,700.0,11/06/19 09:56,"879 Main St, San Francisco, CA 94016" +281059,Lightning Charging Cable,1,14.95,11/06/19 09:56,"879 Main St, San Francisco, CA 94016" +281060,Wired Headphones,1,11.99,11/19/19 15:29,"960 Meadow St, New York City, NY 10001" +281061,AAA Batteries (4-pack),1,2.99,11/03/19 13:39,"610 Chestnut St, Los Angeles, CA 90001" +281062,USB-C Charging Cable,1,11.95,11/11/19 16:10,"671 Adams St, New York City, NY 10001" +281063,iPhone,1,700.0,11/12/19 17:34,"35 Highland St, Boston, MA 02215" +281064,Google Phone,1,600.0,11/07/19 17:05,"802 7th St, Portland, ME 04101" +281065,27in 4K Gaming Monitor,1,389.99,11/15/19 21:14,"903 11th St, San Francisco, CA 94016" +281066,Google Phone,1,600.0,11/06/19 17:19,"304 Madison St, San Francisco, CA 94016" +281066,Wired Headphones,1,11.99,11/06/19 17:19,"304 Madison St, San Francisco, CA 94016" +281067,Wired Headphones,1,11.99,11/11/19 20:35,"250 6th St, Los Angeles, CA 90001" +281068,Apple Airpods Headphones,1,150.0,11/28/19 21:58,"429 Main St, Seattle, WA 98101" +281069,20in Monitor,1,109.99,11/01/19 14:12,"192 Lakeview St, San Francisco, CA 94016" +281070,USB-C Charging Cable,1,11.95,11/23/19 21:45,"709 Johnson St, Austin, TX 73301" +281071,AA Batteries (4-pack),1,3.84,11/17/19 09:00,"404 Cedar St, New York City, NY 10001" +281072,AA Batteries (4-pack),1,3.84,11/09/19 22:48,"61 Main St, Boston, MA 02215" +281073,AAA Batteries (4-pack),1,2.99,11/15/19 05:39,"989 4th St, Los Angeles, CA 90001" +281074,Wired Headphones,1,11.99,11/16/19 21:03,"39 Lake St, San Francisco, CA 94016" +281075,Apple Airpods Headphones,1,150.0,11/09/19 20:22,"682 6th St, San Francisco, CA 94016" +281076,iPhone,1,700.0,11/28/19 12:22,"35 South St, San Francisco, CA 94016" +281076,Wired Headphones,1,11.99,11/28/19 12:22,"35 South St, San Francisco, CA 94016" +281077,Wired Headphones,1,11.99,11/25/19 08:46,"565 Pine St, Seattle, WA 98101" +281078,Wired Headphones,1,11.99,11/23/19 19:09,"961 7th St, New York City, NY 10001" +281079,USB-C Charging Cable,1,11.95,11/09/19 00:25,"823 14th St, New York City, NY 10001" +281080,USB-C Charging Cable,1,11.95,11/12/19 02:43,"417 North St, San Francisco, CA 94016" +281081,Flatscreen TV,1,300.0,11/19/19 07:10,"17 Church St, San Francisco, CA 94016" +281082,Google Phone,1,600.0,11/14/19 20:53,"917 Lincoln St, Los Angeles, CA 90001" +281083,Apple Airpods Headphones,1,150.0,11/24/19 17:10,"413 Ridge St, Los Angeles, CA 90001" +281084,Vareebadd Phone,1,400.0,11/16/19 14:40,"615 Chestnut St, Atlanta, GA 30301" +281084,USB-C Charging Cable,1,11.95,11/16/19 14:40,"615 Chestnut St, Atlanta, GA 30301" +281085,Wired Headphones,1,11.99,11/03/19 21:12,"381 Lake St, Los Angeles, CA 90001" +281086,Apple Airpods Headphones,1,150.0,11/21/19 14:11,"193 Church St, Atlanta, GA 30301" +281087,AA Batteries (4-pack),1,3.84,11/05/19 02:12,"413 Jefferson St, Portland, OR 97035" +281088,Apple Airpods Headphones,1,150.0,11/13/19 19:41,"939 Willow St, Los Angeles, CA 90001" +281089,20in Monitor,1,109.99,11/25/19 19:56,"684 West St, San Francisco, CA 94016" +281090,Flatscreen TV,1,300.0,11/01/19 21:29,"631 6th St, Los Angeles, CA 90001" +281091,USB-C Charging Cable,1,11.95,11/08/19 06:26,"6 7th St, San Francisco, CA 94016" +281092,Apple Airpods Headphones,1,150.0,11/07/19 18:27,"829 Lakeview St, New York City, NY 10001" +281093,USB-C Charging Cable,3,11.95,11/15/19 07:58,"890 Pine St, Los Angeles, CA 90001" +281094,AAA Batteries (4-pack),1,2.99,11/24/19 08:31,"401 1st St, Austin, TX 73301" +281095,Vareebadd Phone,1,400.0,11/28/19 12:35,"161 Washington St, San Francisco, CA 94016" +281096,USB-C Charging Cable,1,11.95,11/15/19 09:31,"503 Spruce St, San Francisco, CA 94016" +281097,ThinkPad Laptop,1,999.99,11/18/19 18:03,"745 Adams St, Atlanta, GA 30301" +281098,ThinkPad Laptop,1,999.99,11/24/19 10:54,"897 Forest St, Portland, OR 97035" +281099,USB-C Charging Cable,1,11.95,11/02/19 13:29,"633 Lincoln St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +281100,Bose SoundSport Headphones,1,99.99,11/30/19 15:19,"769 4th St, San Francisco, CA 94016" +281101,iPhone,1,700,11/13/19 20:28,"70 Hickory St, New York City, NY 10001" +281102,34in Ultrawide Monitor,1,379.99,11/26/19 11:34,"765 Elm St, Dallas, TX 75001" +281103,27in 4K Gaming Monitor,1,389.99,11/02/19 06:57,"341 6th St, New York City, NY 10001" +281104,AAA Batteries (4-pack),2,2.99,11/20/19 10:31,"756 Lake St, San Francisco, CA 94016" +281105,Macbook Pro Laptop,1,1700,11/11/19 19:10,"699 4th St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +281106,27in FHD Monitor,1,149.99,11/22/19 19:55,"468 Forest St, Boston, MA 02215" +281107,USB-C Charging Cable,1,11.95,11/26/19 18:36,"768 Cedar St, Atlanta, GA 30301" +281108,Lightning Charging Cable,1,14.95,11/03/19 21:11,"467 9th St, Los Angeles, CA 90001" +281109,Bose SoundSport Headphones,1,99.99,11/24/19 16:52,"519 1st St, Austin, TX 73301" +281110,iPhone,1,700,11/11/19 10:05,"942 Jefferson St, New York City, NY 10001" +281111,Lightning Charging Cable,1,14.95,11/14/19 13:33,"154 7th St, Atlanta, GA 30301" +281112,Wired Headphones,1,11.99,11/23/19 20:26,"927 7th St, New York City, NY 10001" +281113,USB-C Charging Cable,1,11.95,11/15/19 05:32,"330 7th St, San Francisco, CA 94016" +281114,Bose SoundSport Headphones,1,99.99,11/28/19 18:20,"449 6th St, Dallas, TX 75001" +281115,Macbook Pro Laptop,1,1700,11/17/19 07:12,"798 Willow St, New York City, NY 10001" +281116,ThinkPad Laptop,1,999.99,11/09/19 18:15,"124 8th St, New York City, NY 10001" +281117,27in FHD Monitor,1,149.99,11/18/19 10:05,"459 2nd St, Dallas, TX 75001" +281118,USB-C Charging Cable,1,11.95,11/29/19 23:19,"317 Washington St, New York City, NY 10001" +281119,AAA Batteries (4-pack),8,2.99,11/23/19 18:52,"177 5th St, Dallas, TX 75001" +281120,Apple Airpods Headphones,1,150,11/08/19 10:23,"275 Center St, Los Angeles, CA 90001" +281121,34in Ultrawide Monitor,1,379.99,11/09/19 00:41,"246 West St, San Francisco, CA 94016" +281122,AAA Batteries (4-pack),5,2.99,11/12/19 15:44,"814 South St, New York City, NY 10001" +281123,Apple Airpods Headphones,1,150,11/10/19 16:54,"754 7th St, New York City, NY 10001" +281124,Lightning Charging Cable,1,14.95,11/06/19 22:44,"918 10th St, Atlanta, GA 30301" +281125,AA Batteries (4-pack),1,3.84,11/07/19 09:12,"445 Washington St, Austin, TX 73301" +281126,34in Ultrawide Monitor,1,379.99,11/18/19 12:39,"918 Church St, Dallas, TX 75001" +281127,Macbook Pro Laptop,1,1700,11/25/19 21:58,"177 6th St, Los Angeles, CA 90001" +281128,Flatscreen TV,1,300,11/18/19 17:28,"168 Hickory St, Portland, OR 97035" +281129,AAA Batteries (4-pack),2,2.99,11/22/19 11:47,"607 Lakeview St, Los Angeles, CA 90001" +281130,27in FHD Monitor,1,149.99,11/07/19 19:21,"186 13th St, Boston, MA 02215" +281130,USB-C Charging Cable,1,11.95,11/07/19 19:21,"186 13th St, Boston, MA 02215" +281131,USB-C Charging Cable,1,11.95,11/16/19 11:52,"357 Hill St, Los Angeles, CA 90001" +281132,20in Monitor,1,109.99,11/06/19 21:18,"131 Cherry St, San Francisco, CA 94016" +281133,Macbook Pro Laptop,1,1700,11/28/19 14:30,"184 Highland St, Portland, OR 97035" +281134,Flatscreen TV,1,300,11/20/19 06:21,"618 Sunset St, New York City, NY 10001" +281135,AA Batteries (4-pack),6,3.84,11/06/19 21:33,"761 Chestnut St, Portland, OR 97035" +281136,AAA Batteries (4-pack),1,2.99,11/08/19 17:51,"667 Ridge St, San Francisco, CA 94016" +281137,AA Batteries (4-pack),1,3.84,11/25/19 18:48,"42 11th St, Dallas, TX 75001" +281138,Lightning Charging Cable,2,14.95,11/05/19 16:33,"881 Highland St, Atlanta, GA 30301" +281139,Google Phone,1,600,11/29/19 16:18,"503 2nd St, San Francisco, CA 94016" +281140,ThinkPad Laptop,1,999.99,11/03/19 16:04,"284 Cherry St, Atlanta, GA 30301" +281141,Flatscreen TV,1,300,11/24/19 19:07,"199 Chestnut St, New York City, NY 10001" +281142,Apple Airpods Headphones,1,150,11/27/19 10:27,"849 Sunset St, Boston, MA 02215" +281143,Apple Airpods Headphones,1,150,11/10/19 16:30,"980 Cherry St, Atlanta, GA 30301" +281144,USB-C Charging Cable,1,11.95,11/03/19 14:24,"4 14th St, Los Angeles, CA 90001" +281145,USB-C Charging Cable,1,11.95,11/17/19 18:15,"457 6th St, New York City, NY 10001" +281145,AA Batteries (4-pack),1,3.84,11/17/19 18:15,"457 6th St, New York City, NY 10001" +281146,AAA Batteries (4-pack),2,2.99,11/12/19 16:23,"794 Park St, Portland, OR 97035" +281147,Wired Headphones,1,11.99,11/17/19 00:04,"796 Willow St, San Francisco, CA 94016" +281148,34in Ultrawide Monitor,1,379.99,11/26/19 18:29,"526 River St, Austin, TX 73301" +281149,AAA Batteries (4-pack),1,2.99,11/11/19 09:13,"495 Elm St, Dallas, TX 75001" +281150,AA Batteries (4-pack),1,3.84,11/14/19 18:35,"601 Willow St, Portland, OR 97035" +281151,Bose SoundSport Headphones,1,99.99,11/18/19 10:45,"740 Wilson St, San Francisco, CA 94016" +281152,Google Phone,1,600,11/19/19 14:57,"71 1st St, Dallas, TX 75001" +281152,USB-C Charging Cable,1,11.95,11/19/19 14:57,"71 1st St, Dallas, TX 75001" +281153,34in Ultrawide Monitor,1,379.99,11/09/19 20:15,"774 Washington St, Atlanta, GA 30301" +281154,Apple Airpods Headphones,1,150,11/04/19 10:15,"924 Jefferson St, New York City, NY 10001" +281155,USB-C Charging Cable,1,11.95,11/10/19 12:14,"556 Madison St, Dallas, TX 75001" +281156,27in 4K Gaming Monitor,1,389.99,11/25/19 15:41,"918 Walnut St, New York City, NY 10001" +281157,AA Batteries (4-pack),1,3.84,11/19/19 12:49,"259 2nd St, San Francisco, CA 94016" +281158,USB-C Charging Cable,1,11.95,11/08/19 18:35,"791 7th St, San Francisco, CA 94016" +281159,Wired Headphones,1,11.99,11/29/19 22:15,"139 Lincoln St, Boston, MA 02215" +281160,27in FHD Monitor,1,149.99,11/12/19 16:00,"368 14th St, San Francisco, CA 94016" +281161,iPhone,1,700,11/22/19 06:29,"393 Church St, Dallas, TX 75001" +281162,ThinkPad Laptop,1,999.99,11/19/19 21:28,"120 Madison St, Seattle, WA 98101" +281163,iPhone,1,700,11/06/19 10:53,"870 River St, Austin, TX 73301" +281164,Lightning Charging Cable,1,14.95,11/15/19 22:10,"153 Meadow St, Atlanta, GA 30301" +281164,USB-C Charging Cable,1,11.95,11/15/19 22:10,"153 Meadow St, Atlanta, GA 30301" +281165,Wired Headphones,1,11.99,11/20/19 16:48,"683 Washington St, New York City, NY 10001" +281166,20in Monitor,1,109.99,11/10/19 07:14,"641 Jackson St, New York City, NY 10001" +281167,Wired Headphones,1,11.99,11/12/19 19:58,"813 10th St, Austin, TX 73301" +281168,AA Batteries (4-pack),1,3.84,11/22/19 12:11,"412 Main St, Los Angeles, CA 90001" +281169,Flatscreen TV,1,300,11/21/19 18:16,"296 North St, Boston, MA 02215" +281170,ThinkPad Laptop,1,999.99,11/20/19 21:19,"467 Sunset St, New York City, NY 10001" +281171,Flatscreen TV,1,300,11/04/19 05:29,"394 Jefferson St, San Francisco, CA 94016" +281172,iPhone,1,700,11/24/19 16:37,"63 Park St, Boston, MA 02215" +281172,Wired Headphones,1,11.99,11/24/19 16:37,"63 Park St, Boston, MA 02215" +281173,34in Ultrawide Monitor,1,379.99,11/20/19 18:46,"34 8th St, Dallas, TX 75001" +281174,Lightning Charging Cable,1,14.95,11/06/19 09:58,"392 Maple St, Austin, TX 73301" +281175,Apple Airpods Headphones,1,150,11/23/19 11:14,"5 Forest St, New York City, NY 10001" +281176,iPhone,1,700,11/03/19 15:57,"544 Chestnut St, Boston, MA 02215" +281177,20in Monitor,1,109.99,11/15/19 07:32,"372 10th St, New York City, NY 10001" +281177,Flatscreen TV,1,300,11/15/19 07:32,"372 10th St, New York City, NY 10001" +281178,Lightning Charging Cable,1,14.95,11/19/19 19:09,"520 Forest St, Boston, MA 02215" +281179,Bose SoundSport Headphones,1,99.99,11/15/19 14:46,"909 7th St, San Francisco, CA 94016" +281180,Bose SoundSport Headphones,1,99.99,11/06/19 02:06,"913 Church St, New York City, NY 10001" +281181,27in 4K Gaming Monitor,1,389.99,11/27/19 00:21,"753 Adams St, Dallas, TX 75001" +281182,USB-C Charging Cable,1,11.95,11/03/19 08:43,"761 7th St, Boston, MA 02215" +281183,iPhone,1,700,11/25/19 19:27,"642 1st St, Los Angeles, CA 90001" +281183,Lightning Charging Cable,1,14.95,11/25/19 19:27,"642 1st St, Los Angeles, CA 90001" +281184,Lightning Charging Cable,1,14.95,11/10/19 11:42,"536 Main St, Portland, OR 97035" +281185,iPhone,1,700,11/05/19 11:46,"452 Wilson St, Atlanta, GA 30301" +281186,AAA Batteries (4-pack),1,2.99,11/02/19 08:18,"265 2nd St, San Francisco, CA 94016" +281187,27in FHD Monitor,1,149.99,11/29/19 09:40,"697 Cherry St, San Francisco, CA 94016" +281188,Bose SoundSport Headphones,1,99.99,11/23/19 21:27,"320 8th St, San Francisco, CA 94016" +281189,Lightning Charging Cable,1,14.95,11/26/19 18:55,"834 Pine St, Boston, MA 02215" +281190,AA Batteries (4-pack),1,3.84,11/22/19 16:09,"402 8th St, Dallas, TX 75001" +281191,AAA Batteries (4-pack),2,2.99,11/22/19 10:19,"371 Hickory St, Seattle, WA 98101" +281192,Lightning Charging Cable,1,14.95,11/02/19 12:37,"962 Main St, Los Angeles, CA 90001" +281193,AA Batteries (4-pack),2,3.84,11/19/19 14:15,"845 4th St, New York City, NY 10001" +281194,AA Batteries (4-pack),1,3.84,11/17/19 20:38,"510 Willow St, Boston, MA 02215" +281195,iPhone,1,700,11/28/19 18:53,"971 7th St, San Francisco, CA 94016" +281196,USB-C Charging Cable,1,11.95,11/18/19 19:22,"433 Lincoln St, San Francisco, CA 94016" +281197,Lightning Charging Cable,1,14.95,11/02/19 12:51,"786 Washington St, Seattle, WA 98101" +281198,Wired Headphones,1,11.99,11/11/19 12:59,"524 Hill St, Los Angeles, CA 90001" +281198,Lightning Charging Cable,1,14.95,11/11/19 12:59,"524 Hill St, Los Angeles, CA 90001" +281199,Bose SoundSport Headphones,1,99.99,11/28/19 21:50,"501 Willow St, Los Angeles, CA 90001" +281200,AA Batteries (4-pack),1,3.84,11/29/19 22:50,"997 5th St, Los Angeles, CA 90001" +281201,27in 4K Gaming Monitor,1,389.99,11/03/19 12:19,"471 Hickory St, Atlanta, GA 30301" +281202,20in Monitor,1,109.99,11/15/19 00:31,"185 Jefferson St, Boston, MA 02215" +281203,Google Phone,1,600,11/06/19 21:25,"284 1st St, San Francisco, CA 94016" +281204,34in Ultrawide Monitor,1,379.99,11/01/19 15:14,"327 9th St, Boston, MA 02215" +281205,AAA Batteries (4-pack),1,2.99,11/20/19 20:30,"273 Madison St, Atlanta, GA 30301" +281206,AA Batteries (4-pack),1,3.84,11/20/19 16:50,"874 Willow St, Seattle, WA 98101" +281207,Lightning Charging Cable,1,14.95,11/17/19 00:41,"582 River St, San Francisco, CA 94016" +281208,Apple Airpods Headphones,1,150,11/26/19 07:21,"486 Sunset St, Dallas, TX 75001" +281209,27in 4K Gaming Monitor,1,389.99,11/20/19 17:38,"448 Ridge St, Seattle, WA 98101" +281210,27in 4K Gaming Monitor,1,389.99,11/12/19 12:06,"40 Ridge St, New York City, NY 10001" +281211,Lightning Charging Cable,1,14.95,11/28/19 19:17,"719 Hill St, Boston, MA 02215" +281212,USB-C Charging Cable,1,11.95,11/06/19 09:26,"915 Wilson St, Atlanta, GA 30301" +281213,Bose SoundSport Headphones,1,99.99,11/08/19 17:08,"118 Elm St, Boston, MA 02215" +281214,Lightning Charging Cable,1,14.95,11/24/19 13:38,"500 Lincoln St, Austin, TX 73301" +281215,Bose SoundSport Headphones,1,99.99,11/04/19 18:58,"234 Dogwood St, San Francisco, CA 94016" +281216,27in FHD Monitor,1,149.99,11/01/19 18:56,"469 9th St, Los Angeles, CA 90001" +281217,Bose SoundSport Headphones,1,99.99,11/21/19 14:36,"847 Wilson St, Boston, MA 02215" +281218,Lightning Charging Cable,1,14.95,11/23/19 01:52,"60 Center St, San Francisco, CA 94016" +281219,Wired Headphones,1,11.99,11/19/19 18:51,"17 Cedar St, Atlanta, GA 30301" +281220,Lightning Charging Cable,1,14.95,11/29/19 13:58,"389 Forest St, Los Angeles, CA 90001" +281221,AAA Batteries (4-pack),3,2.99,11/12/19 17:11,"884 Sunset St, San Francisco, CA 94016" +281222,Lightning Charging Cable,2,14.95,11/20/19 15:40,"351 Hill St, Dallas, TX 75001" +281223,USB-C Charging Cable,1,11.95,11/28/19 10:53,"203 5th St, Los Angeles, CA 90001" +281224,Lightning Charging Cable,2,14.95,11/27/19 18:48,"848 River St, San Francisco, CA 94016" +281225,Apple Airpods Headphones,1,150,11/15/19 12:23,"458 Ridge St, Seattle, WA 98101" +281226,Lightning Charging Cable,2,14.95,11/21/19 12:30,"552 Jackson St, Seattle, WA 98101" +281227,AA Batteries (4-pack),1,3.84,11/28/19 21:39,"789 12th St, Los Angeles, CA 90001" +281228,AAA Batteries (4-pack),1,2.99,11/05/19 23:07,"884 Chestnut St, San Francisco, CA 94016" +281229,AA Batteries (4-pack),1,3.84,11/25/19 18:07,"670 Madison St, Seattle, WA 98101" +281230,AAA Batteries (4-pack),2,2.99,11/03/19 00:38,"283 Pine St, Los Angeles, CA 90001" +281231,Flatscreen TV,1,300,11/11/19 16:22,"324 Maple St, Boston, MA 02215" +281232,AA Batteries (4-pack),1,3.84,11/17/19 13:22,"310 7th St, Atlanta, GA 30301" +281233,Lightning Charging Cable,1,14.95,11/09/19 14:25,"359 9th St, Portland, OR 97035" +281234,USB-C Charging Cable,3,11.95,11/17/19 13:17,"520 Adams St, San Francisco, CA 94016" +281235,AA Batteries (4-pack),1,3.84,11/05/19 07:42,"396 Madison St, San Francisco, CA 94016" +281236,27in FHD Monitor,1,149.99,11/22/19 13:18,"828 Madison St, Atlanta, GA 30301" +281237,USB-C Charging Cable,1,11.95,11/10/19 15:43,"407 Willow St, Boston, MA 02215" +281238,Lightning Charging Cable,1,14.95,11/09/19 14:25,"214 Main St, Austin, TX 73301" +281239,AA Batteries (4-pack),1,3.84,11/18/19 23:23,"283 West St, Los Angeles, CA 90001" +281240,Wired Headphones,1,11.99,11/02/19 09:50,"68 Park St, New York City, NY 10001" +281241,iPhone,1,700,11/01/19 10:25,"696 Main St, Portland, OR 97035" +281241,Lightning Charging Cable,1,14.95,11/01/19 10:25,"696 Main St, Portland, OR 97035" +281242,Wired Headphones,1,11.99,11/22/19 09:39,"741 Adams St, Portland, OR 97035" +281243,27in FHD Monitor,1,149.99,11/23/19 01:31,"105 Jackson St, Los Angeles, CA 90001" +281244,Apple Airpods Headphones,1,150,11/16/19 21:49,"709 4th St, San Francisco, CA 94016" +281245,34in Ultrawide Monitor,1,379.99,11/24/19 16:43,"3 Wilson St, Portland, ME 04101" +281246,AAA Batteries (4-pack),1,2.99,11/17/19 18:09,"913 11th St, New York City, NY 10001" +281247,Bose SoundSport Headphones,1,99.99,11/25/19 05:07,"869 13th St, Atlanta, GA 30301" +281248,Apple Airpods Headphones,1,150,11/16/19 10:05,"925 North St, San Francisco, CA 94016" +281249,Bose SoundSport Headphones,1,99.99,11/28/19 07:50,"394 Jackson St, Austin, TX 73301" +281250,34in Ultrawide Monitor,1,379.99,11/09/19 19:48,"216 River St, San Francisco, CA 94016" +281251,USB-C Charging Cable,1,11.95,11/15/19 19:49,"479 4th St, Atlanta, GA 30301" +281252,iPhone,1,700,11/28/19 11:55,"130 River St, Portland, OR 97035" +281253,Lightning Charging Cable,2,14.95,11/21/19 19:06,"639 Center St, Los Angeles, CA 90001" +281254,AAA Batteries (4-pack),4,2.99,11/21/19 20:23,"557 Pine St, San Francisco, CA 94016" +281255,34in Ultrawide Monitor,1,379.99,11/27/19 16:34,"74 Highland St, Atlanta, GA 30301" +281256,USB-C Charging Cable,1,11.95,11/08/19 23:03,"174 Washington St, Atlanta, GA 30301" +281256,USB-C Charging Cable,1,11.95,11/08/19 23:03,"174 Washington St, Atlanta, GA 30301" +281257,AA Batteries (4-pack),1,3.84,11/13/19 11:43,"246 6th St, San Francisco, CA 94016" +281258,AAA Batteries (4-pack),1,2.99,11/07/19 22:39,"349 4th St, Los Angeles, CA 90001" +281259,AA Batteries (4-pack),1,3.84,11/05/19 09:53,"376 Ridge St, Portland, OR 97035" +281260,AA Batteries (4-pack),1,3.84,11/12/19 22:57,"24 8th St, Atlanta, GA 30301" +281261,USB-C Charging Cable,1,11.95,11/01/19 21:46,"513 River St, Seattle, WA 98101" +281262,Wired Headphones,1,11.99,11/07/19 19:33,"665 Madison St, Dallas, TX 75001" +281263,AA Batteries (4-pack),1,3.84,11/19/19 11:45,"279 10th St, Portland, OR 97035" +281264,Apple Airpods Headphones,1,150,11/16/19 01:31,"143 Main St, Atlanta, GA 30301" +281265,27in FHD Monitor,1,149.99,11/15/19 08:36,"277 Maple St, San Francisco, CA 94016" +281266,Wired Headphones,1,11.99,11/08/19 00:08,"452 Maple St, Boston, MA 02215" +281267,AAA Batteries (4-pack),3,2.99,12/01/19 00:04,"356 Washington St, Los Angeles, CA 90001" +281268,Bose SoundSport Headphones,1,99.99,11/23/19 19:44,"445 Willow St, Dallas, TX 75001" +281269,AA Batteries (4-pack),1,3.84,11/13/19 09:18,"927 Cherry St, Dallas, TX 75001" +281270,Flatscreen TV,1,300,11/14/19 12:27,"605 West St, Portland, ME 04101" +281271,ThinkPad Laptop,1,999.99,11/27/19 16:14,"407 Lincoln St, Boston, MA 02215" +281272,34in Ultrawide Monitor,1,379.99,11/11/19 19:12,"700 5th St, New York City, NY 10001" +281273,ThinkPad Laptop,1,999.99,11/19/19 23:00,"208 River St, Dallas, TX 75001" +281274,Flatscreen TV,1,300,11/18/19 17:06,"436 5th St, Dallas, TX 75001" +281275,Macbook Pro Laptop,1,1700,11/27/19 10:56,"883 Main St, Atlanta, GA 30301" +281276,USB-C Charging Cable,1,11.95,11/20/19 22:28,"540 Park St, San Francisco, CA 94016" +281277,AA Batteries (4-pack),1,3.84,11/17/19 12:22,"148 Washington St, San Francisco, CA 94016" +281278,USB-C Charging Cable,1,11.95,11/09/19 12:08,"824 Chestnut St, San Francisco, CA 94016" +281279,34in Ultrawide Monitor,2,379.99,11/13/19 17:47,"60 Park St, Dallas, TX 75001" +281280,Bose SoundSport Headphones,1,99.99,11/19/19 18:38,"449 Church St, New York City, NY 10001" +281281,Apple Airpods Headphones,1,150,11/19/19 21:55,"802 1st St, Boston, MA 02215" +281282,Flatscreen TV,1,300,11/14/19 14:03,"74 14th St, Boston, MA 02215" +281283,AA Batteries (4-pack),1,3.84,11/11/19 22:22,"249 Sunset St, Seattle, WA 98101" +281284,USB-C Charging Cable,1,11.95,11/09/19 14:54,"401 Pine St, Boston, MA 02215" +281285,Lightning Charging Cable,1,14.95,11/23/19 19:32,"270 South St, San Francisco, CA 94016" +281286,AA Batteries (4-pack),1,3.84,11/05/19 14:19,"755 Maple St, Dallas, TX 75001" +281287,USB-C Charging Cable,1,11.95,11/24/19 06:01,"467 12th St, Austin, TX 73301" +281288,AA Batteries (4-pack),1,3.84,11/05/19 13:10,"95 Pine St, San Francisco, CA 94016" +281289,USB-C Charging Cable,1,11.95,11/23/19 16:24,"661 Spruce St, Atlanta, GA 30301" +281290,Lightning Charging Cable,1,14.95,11/04/19 16:35,"648 Willow St, Boston, MA 02215" +281291,Lightning Charging Cable,1,14.95,11/03/19 07:35,"832 Highland St, Atlanta, GA 30301" +281292,Wired Headphones,1,11.99,11/23/19 13:37,"75 14th St, Los Angeles, CA 90001" +281293,Google Phone,1,600,11/01/19 08:39,"305 Wilson St, Portland, OR 97035" +281293,USB-C Charging Cable,2,11.95,11/01/19 08:39,"305 Wilson St, Portland, OR 97035" +281294,Wired Headphones,1,11.99,11/09/19 19:09,"468 West St, Dallas, TX 75001" +281295,Macbook Pro Laptop,1,1700,11/29/19 19:19,"607 Jackson St, Seattle, WA 98101" +281296,27in FHD Monitor,2,149.99,11/05/19 20:00,"377 Main St, Dallas, TX 75001" +281297,Lightning Charging Cable,1,14.95,11/16/19 17:58,"426 8th St, New York City, NY 10001" +281298,iPhone,1,700,11/16/19 11:57,"184 Maple St, Los Angeles, CA 90001" +281299,Wired Headphones,1,11.99,11/11/19 07:48,"211 5th St, Austin, TX 73301" +281300,USB-C Charging Cable,1,11.95,11/19/19 20:39,"700 1st St, Austin, TX 73301" +281301,Google Phone,1,600,11/07/19 01:43,"564 Forest St, San Francisco, CA 94016" +281302,USB-C Charging Cable,1,11.95,11/04/19 09:36,"632 Chestnut St, Portland, OR 97035" +281303,27in FHD Monitor,1,149.99,11/13/19 12:41,"312 Wilson St, San Francisco, CA 94016" +281304,Wired Headphones,1,11.99,11/04/19 18:06,"50 River St, Portland, OR 97035" +281305,AAA Batteries (4-pack),1,2.99,11/26/19 20:32,"991 Main St, Dallas, TX 75001" +281306,Wired Headphones,1,11.99,11/12/19 19:17,"545 Adams St, Los Angeles, CA 90001" +281307,USB-C Charging Cable,1,11.95,11/12/19 12:16,"657 Meadow St, Atlanta, GA 30301" +281308,AAA Batteries (4-pack),2,2.99,11/19/19 12:50,"196 5th St, San Francisco, CA 94016" +281309,AA Batteries (4-pack),1,3.84,11/18/19 20:29,"205 Sunset St, Los Angeles, CA 90001" +281310,Apple Airpods Headphones,1,150,11/06/19 23:26,"628 Madison St, Seattle, WA 98101" +281311,Lightning Charging Cable,1,14.95,11/15/19 14:26,"422 Highland St, San Francisco, CA 94016" +281312,Bose SoundSport Headphones,1,99.99,11/08/19 19:44,"175 1st St, Portland, OR 97035" +281313,Wired Headphones,1,11.99,11/24/19 12:02,"135 Spruce St, Atlanta, GA 30301" +281314,AAA Batteries (4-pack),1,2.99,11/16/19 02:47,"624 13th St, Boston, MA 02215" +281315,USB-C Charging Cable,1,11.95,11/08/19 17:49,"504 4th St, San Francisco, CA 94016" +281316,Apple Airpods Headphones,1,150,11/20/19 07:19,"953 Chestnut St, Austin, TX 73301" +281317,Apple Airpods Headphones,1,150,11/04/19 11:25,"429 Pine St, Boston, MA 02215" +281318,USB-C Charging Cable,1,11.95,11/09/19 11:31,"393 South St, Boston, MA 02215" +281319,AA Batteries (4-pack),1,3.84,11/06/19 14:15,"741 9th St, Boston, MA 02215" +,,,,, +281320,USB-C Charging Cable,2,11.95,11/06/19 11:05,"293 6th St, New York City, NY 10001" +281320,34in Ultrawide Monitor,1,379.99,11/06/19 11:05,"293 6th St, New York City, NY 10001" +281321,Lightning Charging Cable,1,14.95,11/03/19 17:57,"182 13th St, Atlanta, GA 30301" +281322,Google Phone,1,600,11/14/19 20:04,"42 West St, Los Angeles, CA 90001" +281323,Bose SoundSport Headphones,1,99.99,11/23/19 09:32,"228 7th St, Dallas, TX 75001" +281324,Lightning Charging Cable,1,14.95,11/02/19 18:51,"836 Center St, New York City, NY 10001" +281325,Lightning Charging Cable,1,14.95,11/09/19 00:05,"729 Johnson St, Austin, TX 73301" +281326,AA Batteries (4-pack),1,3.84,11/05/19 10:40,"900 Cedar St, Atlanta, GA 30301" +281327,Macbook Pro Laptop,1,1700,11/07/19 13:24,"202 1st St, San Francisco, CA 94016" +281328,iPhone,1,700,11/28/19 23:43,"44 North St, Atlanta, GA 30301" +281329,AA Batteries (4-pack),1,3.84,11/24/19 16:59,"521 Lakeview St, San Francisco, CA 94016" +281330,Flatscreen TV,1,300,11/09/19 23:47,"725 Madison St, Portland, OR 97035" +281331,Bose SoundSport Headphones,1,99.99,11/09/19 08:23,"974 Pine St, Los Angeles, CA 90001" +281331,34in Ultrawide Monitor,1,379.99,11/09/19 08:23,"974 Pine St, Los Angeles, CA 90001" +281332,ThinkPad Laptop,1,999.99,11/26/19 20:51,"30 Wilson St, San Francisco, CA 94016" +281333,34in Ultrawide Monitor,1,379.99,11/20/19 21:36,"552 9th St, Dallas, TX 75001" +281334,AAA Batteries (4-pack),1,2.99,11/29/19 17:23,"512 Church St, Boston, MA 02215" +281335,LG Washing Machine,1,600.0,12/01/19 01:22,"655 Willow St, Boston, MA 02215" +281336,Wired Headphones,1,11.99,11/04/19 10:53,"448 Willow St, San Francisco, CA 94016" +281337,Google Phone,1,600,11/28/19 15:22,"877 Jefferson St, Los Angeles, CA 90001" +281338,Wired Headphones,1,11.99,11/26/19 17:34,"605 Lake St, Seattle, WA 98101" +281339,AA Batteries (4-pack),2,3.84,11/19/19 09:31,"149 4th St, San Francisco, CA 94016" +281340,Wired Headphones,1,11.99,11/03/19 19:03,"488 4th St, Portland, OR 97035" +281341,Wired Headphones,1,11.99,11/06/19 16:49,"197 Hill St, San Francisco, CA 94016" +281342,20in Monitor,1,109.99,11/17/19 14:15,"317 Dogwood St, San Francisco, CA 94016" +281343,Bose SoundSport Headphones,1,99.99,11/16/19 22:28,"348 10th St, Dallas, TX 75001" +281344,AAA Batteries (4-pack),2,2.99,11/26/19 12:40,"937 Walnut St, Atlanta, GA 30301" +281345,AAA Batteries (4-pack),1,2.99,11/06/19 04:58,"33 West St, Boston, MA 02215" +281346,Google Phone,1,600,11/12/19 13:08,"355 7th St, Los Angeles, CA 90001" +281347,Lightning Charging Cable,2,14.95,11/15/19 01:25,"396 Madison St, Los Angeles, CA 90001" +281348,Apple Airpods Headphones,1,150,11/19/19 10:50,"759 Adams St, Dallas, TX 75001" +281349,USB-C Charging Cable,1,11.95,11/01/19 16:02,"584 4th St, Austin, TX 73301" +281350,AA Batteries (4-pack),1,3.84,11/29/19 06:00,"459 14th St, Los Angeles, CA 90001" +281351,Google Phone,1,600,11/11/19 10:21,"434 Adams St, Seattle, WA 98101" +281352,Lightning Charging Cable,1,14.95,11/29/19 15:54,"999 1st St, San Francisco, CA 94016" +281353,AAA Batteries (4-pack),1,2.99,11/20/19 10:32,"695 6th St, Los Angeles, CA 90001" +281354,27in 4K Gaming Monitor,1,389.99,11/17/19 23:36,"667 Pine St, New York City, NY 10001" +281355,Lightning Charging Cable,1,14.95,11/25/19 09:26,"700 South St, New York City, NY 10001" +281356,AA Batteries (4-pack),1,3.84,11/28/19 21:09,"796 5th St, Los Angeles, CA 90001" +281357,Bose SoundSport Headphones,1,99.99,11/18/19 23:19,"563 14th St, New York City, NY 10001" +281358,AA Batteries (4-pack),1,3.84,11/03/19 15:53,"173 2nd St, Los Angeles, CA 90001" +281359,34in Ultrawide Monitor,1,379.99,11/07/19 20:07,"576 Maple St, San Francisco, CA 94016" +281360,AAA Batteries (4-pack),1,2.99,11/29/19 10:22,"318 Jefferson St, San Francisco, CA 94016" +281361,Wired Headphones,1,11.99,11/20/19 19:12,"590 12th St, Los Angeles, CA 90001" +281362,AA Batteries (4-pack),1,3.84,11/19/19 10:02,"140 10th St, Atlanta, GA 30301" +281363,27in FHD Monitor,1,149.99,11/09/19 09:40,"274 5th St, Dallas, TX 75001" +281364,27in FHD Monitor,1,149.99,11/13/19 19:54,"222 Maple St, San Francisco, CA 94016" +281365,Wired Headphones,1,11.99,11/14/19 13:34,"480 14th St, Dallas, TX 75001" +281366,AA Batteries (4-pack),1,3.84,11/14/19 19:27,"641 Lakeview St, Austin, TX 73301" +281367,ThinkPad Laptop,1,999.99,11/08/19 11:09,"862 Cedar St, Los Angeles, CA 90001" +281368,ThinkPad Laptop,1,999.99,11/25/19 10:54,"825 Highland St, Seattle, WA 98101" +281369,iPhone,1,700,11/24/19 19:35,"244 Lincoln St, Los Angeles, CA 90001" +281370,AA Batteries (4-pack),1,3.84,11/14/19 22:09,"608 South St, Portland, OR 97035" +281371,34in Ultrawide Monitor,1,379.99,11/26/19 14:42,"310 Hill St, Los Angeles, CA 90001" +281372,Apple Airpods Headphones,1,150,11/10/19 17:12,"117 South St, Dallas, TX 75001" +281373,27in 4K Gaming Monitor,1,389.99,11/14/19 12:54,"367 Hill St, Atlanta, GA 30301" +281374,Lightning Charging Cable,1,14.95,11/14/19 14:16,"809 Elm St, Boston, MA 02215" +281375,27in FHD Monitor,1,149.99,11/23/19 16:19,"780 Church St, Boston, MA 02215" +281376,AA Batteries (4-pack),1,3.84,11/23/19 20:13,"931 8th St, San Francisco, CA 94016" +281377,Wired Headphones,1,11.99,11/18/19 20:31,"639 South St, Portland, OR 97035" +281378,Apple Airpods Headphones,1,150,11/11/19 10:39,"767 5th St, Austin, TX 73301" +281379,Wired Headphones,1,11.99,11/25/19 08:41,"787 7th St, New York City, NY 10001" +281380,Lightning Charging Cable,1,14.95,11/09/19 17:34,"554 14th St, San Francisco, CA 94016" +281381,AA Batteries (4-pack),1,3.84,11/22/19 11:09,"585 Park St, Seattle, WA 98101" +281382,Google Phone,1,600,11/23/19 12:32,"79 Highland St, Seattle, WA 98101" +281383,Wired Headphones,1,11.99,11/10/19 20:54,"569 Park St, Los Angeles, CA 90001" +281384,Bose SoundSport Headphones,1,99.99,11/17/19 16:34,"171 Lake St, Boston, MA 02215" +281385,AA Batteries (4-pack),1,3.84,11/06/19 00:42,"955 Spruce St, Los Angeles, CA 90001" +281386,AA Batteries (4-pack),3,3.84,11/17/19 14:06,"463 River St, Los Angeles, CA 90001" +281387,20in Monitor,1,109.99,11/18/19 17:16,"621 South St, Los Angeles, CA 90001" +281388,27in 4K Gaming Monitor,1,389.99,11/08/19 15:36,"664 Walnut St, San Francisco, CA 94016" +281389,AAA Batteries (4-pack),6,2.99,11/09/19 11:12,"297 2nd St, San Francisco, CA 94016" +281390,Macbook Pro Laptop,1,1700,11/24/19 23:13,"696 North St, Portland, OR 97035" +281391,USB-C Charging Cable,1,11.95,11/23/19 17:36,"242 Lincoln St, Austin, TX 73301" +281392,Google Phone,1,600,11/22/19 14:49,"478 South St, Seattle, WA 98101" +281393,LG Dryer,1,600.0,11/17/19 14:04,"121 Spruce St, Seattle, WA 98101" +281394,Bose SoundSport Headphones,1,99.99,11/25/19 17:15,"220 10th St, San Francisco, CA 94016" +281395,Google Phone,1,600,11/11/19 10:19,"366 2nd St, New York City, NY 10001" +281396,ThinkPad Laptop,1,999.99,11/25/19 07:57,"689 Elm St, Los Angeles, CA 90001" +281397,USB-C Charging Cable,1,11.95,11/26/19 10:38,"862 Pine St, Portland, OR 97035" +281398,34in Ultrawide Monitor,1,379.99,11/27/19 21:03,"549 Pine St, New York City, NY 10001" +281399,USB-C Charging Cable,2,11.95,11/19/19 00:28,"939 5th St, New York City, NY 10001" +281400,Apple Airpods Headphones,1,150,11/30/19 09:24,"32 Pine St, Los Angeles, CA 90001" +281401,USB-C Charging Cable,1,11.95,11/17/19 18:15,"768 Hickory St, San Francisco, CA 94016" +281402,Apple Airpods Headphones,1,150,11/18/19 07:42,"306 Main St, New York City, NY 10001" +281403,27in 4K Gaming Monitor,1,389.99,11/10/19 00:25,"313 13th St, Portland, ME 04101" +281404,Bose SoundSport Headphones,1,99.99,11/01/19 17:19,"184 13th St, Dallas, TX 75001" +281405,20in Monitor,1,109.99,11/13/19 14:49,"337 1st St, Los Angeles, CA 90001" +281406,Google Phone,1,600,11/28/19 17:20,"69 8th St, New York City, NY 10001" +281407,34in Ultrawide Monitor,1,379.99,11/12/19 11:34,"597 Washington St, San Francisco, CA 94016" +281408,AAA Batteries (4-pack),1,2.99,11/06/19 13:02,"839 11th St, Dallas, TX 75001" +281409,Wired Headphones,1,11.99,11/18/19 14:25,"265 8th St, San Francisco, CA 94016" +281410,Google Phone,1,600,11/09/19 20:21,"346 1st St, New York City, NY 10001" +281410,Wired Headphones,1,11.99,11/09/19 20:21,"346 1st St, New York City, NY 10001" +281411,27in FHD Monitor,1,149.99,11/18/19 19:42,"584 Ridge St, San Francisco, CA 94016" +281412,27in 4K Gaming Monitor,1,389.99,11/01/19 17:56,"672 Chestnut St, San Francisco, CA 94016" +281413,27in FHD Monitor,1,149.99,11/02/19 21:20,"575 9th St, San Francisco, CA 94016" +281414,iPhone,1,700,11/01/19 23:47,"832 9th St, Dallas, TX 75001" +281415,Wired Headphones,1,11.99,11/01/19 17:25,"684 Church St, Seattle, WA 98101" +281416,27in FHD Monitor,1,149.99,11/15/19 18:22,"644 Church St, Dallas, TX 75001" +281417,Apple Airpods Headphones,1,150,11/13/19 12:51,"64 Main St, New York City, NY 10001" +281418,27in FHD Monitor,1,149.99,11/06/19 12:22,"300 Walnut St, Los Angeles, CA 90001" +281419,Bose SoundSport Headphones,1,99.99,11/30/19 14:12,"670 6th St, Portland, ME 04101" +281420,AAA Batteries (4-pack),2,2.99,11/02/19 20:46,"871 10th St, New York City, NY 10001" +281421,Wired Headphones,1,11.99,11/15/19 11:59,"159 9th St, Seattle, WA 98101" +281422,Lightning Charging Cable,1,14.95,11/28/19 20:13,"352 Elm St, Boston, MA 02215" +281423,27in FHD Monitor,1,149.99,11/10/19 14:39,"808 Meadow St, Los Angeles, CA 90001" +281424,AA Batteries (4-pack),2,3.84,11/07/19 13:48,"742 12th St, Boston, MA 02215" +281425,Macbook Pro Laptop,1,1700,11/20/19 13:35,"876 Hickory St, San Francisco, CA 94016" +281426,AAA Batteries (4-pack),1,2.99,11/14/19 15:02,"186 Main St, Los Angeles, CA 90001" +281427,Wired Headphones,1,11.99,11/02/19 11:50,"523 Washington St, Atlanta, GA 30301" +281428,USB-C Charging Cable,1,11.95,11/19/19 10:50,"297 Maple St, Seattle, WA 98101" +281429,Macbook Pro Laptop,1,1700,11/14/19 10:41,"472 Forest St, Los Angeles, CA 90001" +281430,Flatscreen TV,1,300,11/12/19 23:32,"575 South St, Boston, MA 02215" +281431,AAA Batteries (4-pack),1,2.99,11/27/19 09:52,"930 Adams St, San Francisco, CA 94016" +281432,Bose SoundSport Headphones,1,99.99,11/04/19 18:18,"308 13th St, Los Angeles, CA 90001" +281433,Apple Airpods Headphones,1,150,11/02/19 15:41,"395 Lincoln St, New York City, NY 10001" +281434,Apple Airpods Headphones,1,150,11/18/19 22:36,"800 13th St, Boston, MA 02215" +281435,AA Batteries (4-pack),1,3.84,11/12/19 09:39,"124 Main St, San Francisco, CA 94016" +281436,34in Ultrawide Monitor,1,379.99,11/10/19 04:56,"352 7th St, San Francisco, CA 94016" +281437,Wired Headphones,1,11.99,11/08/19 16:04,"323 12th St, New York City, NY 10001" +281438,Google Phone,1,600,11/18/19 23:37,"207 Dogwood St, New York City, NY 10001" +281439,AAA Batteries (4-pack),1,2.99,11/29/19 12:54,"397 Cedar St, Portland, OR 97035" +281440,AAA Batteries (4-pack),3,2.99,11/05/19 13:17,"374 Pine St, Dallas, TX 75001" +281441,AAA Batteries (4-pack),2,2.99,11/03/19 11:30,"382 River St, Atlanta, GA 30301" +281442,Wired Headphones,1,11.99,11/12/19 13:21,"762 Cedar St, Dallas, TX 75001" +281443,LG Washing Machine,1,600.0,11/06/19 08:54,"922 Ridge St, New York City, NY 10001" +281444,AA Batteries (4-pack),2,3.84,11/16/19 12:41,"715 Dogwood St, Boston, MA 02215" +281445,USB-C Charging Cable,1,11.95,11/20/19 09:22,"393 River St, Los Angeles, CA 90001" +281446,AAA Batteries (4-pack),3,2.99,11/20/19 09:45,"70 Dogwood St, New York City, NY 10001" +281447,Wired Headphones,1,11.99,11/14/19 16:12,"363 13th St, San Francisco, CA 94016" +281448,Apple Airpods Headphones,1,150,11/14/19 11:33,"985 Pine St, New York City, NY 10001" +281449,Google Phone,1,600,11/30/19 21:52,"397 Highland St, Los Angeles, CA 90001" +281450,34in Ultrawide Monitor,1,379.99,11/10/19 13:19,"630 14th St, Los Angeles, CA 90001" +281451,AAA Batteries (4-pack),2,2.99,11/27/19 14:17,"273 Jefferson St, Seattle, WA 98101" +281452,Google Phone,1,600,11/08/19 22:28,"604 Adams St, Boston, MA 02215" +281452,USB-C Charging Cable,1,11.95,11/08/19 22:28,"604 Adams St, Boston, MA 02215" +281453,iPhone,1,700,11/14/19 11:12,"248 Lincoln St, New York City, NY 10001" +281454,Wired Headphones,1,11.99,11/22/19 10:51,"599 2nd St, Austin, TX 73301" +281455,Bose SoundSport Headphones,1,99.99,11/17/19 00:56,"822 Wilson St, San Francisco, CA 94016" +281456,AA Batteries (4-pack),1,3.84,11/30/19 08:35,"304 13th St, New York City, NY 10001" +281457,AA Batteries (4-pack),2,3.84,11/19/19 11:53,"245 Washington St, San Francisco, CA 94016" +281458,USB-C Charging Cable,1,11.95,11/14/19 17:56,"44 Hill St, Boston, MA 02215" +281459,AA Batteries (4-pack),2,3.84,11/13/19 21:13,"112 Spruce St, Austin, TX 73301" +281460,Apple Airpods Headphones,1,150,11/02/19 01:55,"607 Pine St, San Francisco, CA 94016" +281461,Vareebadd Phone,1,400,11/16/19 21:34,"451 Washington St, Austin, TX 73301" +281462,AA Batteries (4-pack),3,3.84,11/16/19 23:14,"926 Willow St, San Francisco, CA 94016" +281463,Flatscreen TV,1,300,11/05/19 19:52,"420 Lake St, San Francisco, CA 94016" +281464,Lightning Charging Cable,1,14.95,11/24/19 15:45,"974 Madison St, Atlanta, GA 30301" +281465,Bose SoundSport Headphones,1,99.99,11/01/19 17:50,"942 14th St, Austin, TX 73301" +281466,Lightning Charging Cable,2,14.95,11/10/19 02:56,"327 13th St, Dallas, TX 75001" +281467,AA Batteries (4-pack),1,3.84,11/08/19 23:13,"370 6th St, New York City, NY 10001" +281468,Lightning Charging Cable,1,14.95,11/12/19 15:51,"6 6th St, Dallas, TX 75001" +281469,Bose SoundSport Headphones,1,99.99,11/21/19 20:48,"951 Meadow St, Los Angeles, CA 90001" +281470,Flatscreen TV,1,300,11/07/19 18:14,"234 Walnut St, Atlanta, GA 30301" +281471,iPhone,1,700,11/22/19 20:50,"641 7th St, Dallas, TX 75001" +281472,USB-C Charging Cable,1,11.95,11/09/19 01:10,"262 5th St, Austin, TX 73301" +281473,Bose SoundSport Headphones,1,99.99,11/19/19 08:00,"543 West St, San Francisco, CA 94016" +281474,AAA Batteries (4-pack),1,2.99,11/06/19 16:13,"188 6th St, New York City, NY 10001" +281475,AA Batteries (4-pack),2,3.84,11/05/19 15:03,"479 West St, San Francisco, CA 94016" +281476,27in FHD Monitor,1,149.99,11/19/19 13:52,"12 12th St, Seattle, WA 98101" +281477,Flatscreen TV,1,300,11/26/19 15:51,"590 Hill St, Los Angeles, CA 90001" +281478,Apple Airpods Headphones,1,150,11/28/19 22:52,"798 Dogwood St, San Francisco, CA 94016" +281479,Macbook Pro Laptop,1,1700,11/13/19 12:28,"160 Cedar St, New York City, NY 10001" +281480,Wired Headphones,1,11.99,11/16/19 09:45,"742 Main St, Seattle, WA 98101" +281481,ThinkPad Laptop,1,999.99,11/10/19 14:24,"772 10th St, New York City, NY 10001" +281482,27in FHD Monitor,1,149.99,11/17/19 17:39,"275 9th St, Seattle, WA 98101" +281483,AAA Batteries (4-pack),2,2.99,11/30/19 19:10,"203 Hickory St, New York City, NY 10001" +281484,AA Batteries (4-pack),1,3.84,11/04/19 18:42,"45 Main St, Dallas, TX 75001" +281485,34in Ultrawide Monitor,1,379.99,11/08/19 11:26,"673 4th St, San Francisco, CA 94016" +281486,USB-C Charging Cable,1,11.95,11/23/19 18:23,"511 Hickory St, Los Angeles, CA 90001" +281487,AA Batteries (4-pack),1,3.84,11/14/19 01:42,"23 Adams St, Austin, TX 73301" +281488,AAA Batteries (4-pack),1,2.99,11/26/19 12:47,"999 Maple St, Seattle, WA 98101" +281489,Apple Airpods Headphones,1,150,11/05/19 16:05,"160 2nd St, New York City, NY 10001" +281490,ThinkPad Laptop,1,999.99,11/26/19 12:03,"205 Wilson St, Boston, MA 02215" +281491,AAA Batteries (4-pack),1,2.99,11/30/19 12:26,"167 12th St, Los Angeles, CA 90001" +281492,Wired Headphones,1,11.99,11/21/19 14:45,"237 Center St, Dallas, TX 75001" +281493,34in Ultrawide Monitor,1,379.99,11/27/19 14:36,"808 Meadow St, San Francisco, CA 94016" +281494,ThinkPad Laptop,1,999.99,11/02/19 11:24,"100 4th St, Los Angeles, CA 90001" +281495,Wired Headphones,1,11.99,11/22/19 13:19,"790 5th St, Portland, OR 97035" +281496,Google Phone,1,600,11/12/19 22:15,"477 Hickory St, San Francisco, CA 94016" +281497,AA Batteries (4-pack),1,3.84,11/09/19 13:12,"312 Lake St, San Francisco, CA 94016" +281498,Lightning Charging Cable,1,14.95,11/22/19 20:24,"355 Park St, New York City, NY 10001" +281499,Wired Headphones,1,11.99,11/22/19 13:25,"653 Church St, Boston, MA 02215" +281500,USB-C Charging Cable,1,11.95,11/18/19 09:16,"988 Walnut St, Seattle, WA 98101" +281501,27in 4K Gaming Monitor,1,389.99,11/01/19 17:08,"110 Jefferson St, Seattle, WA 98101" +281502,iPhone,1,700,11/19/19 18:19,"608 Main St, Los Angeles, CA 90001" +281503,AA Batteries (4-pack),1,3.84,11/03/19 12:57,"273 Elm St, San Francisco, CA 94016" +281503,AA Batteries (4-pack),4,3.84,11/03/19 12:57,"273 Elm St, San Francisco, CA 94016" +281504,Lightning Charging Cable,1,14.95,11/14/19 00:57,"445 Walnut St, Los Angeles, CA 90001" +281505,Lightning Charging Cable,2,14.95,11/25/19 06:24,"372 Meadow St, New York City, NY 10001" +281506,AA Batteries (4-pack),2,3.84,11/01/19 13:57,"808 Chestnut St, Portland, OR 97035" +281507,Lightning Charging Cable,1,14.95,11/05/19 15:48,"355 Adams St, Boston, MA 02215" +281508,AA Batteries (4-pack),1,3.84,11/14/19 11:03,"289 Spruce St, Seattle, WA 98101" +281509,AAA Batteries (4-pack),2,2.99,11/22/19 10:56,"536 Spruce St, San Francisco, CA 94016" +281510,Google Phone,1,600,11/06/19 11:31,"885 8th St, San Francisco, CA 94016" +281511,USB-C Charging Cable,1,11.95,11/28/19 21:09,"809 Highland St, San Francisco, CA 94016" +281512,USB-C Charging Cable,1,11.95,11/06/19 16:33,"2 West St, New York City, NY 10001" +281513,34in Ultrawide Monitor,1,379.99,11/28/19 13:02,"908 River St, Dallas, TX 75001" +281514,20in Monitor,1,109.99,11/09/19 22:34,"864 Lincoln St, Portland, OR 97035" +281515,AAA Batteries (4-pack),1,2.99,11/11/19 17:16,"729 Lincoln St, Portland, ME 04101" +281516,Google Phone,1,600,11/23/19 19:55,"381 10th St, Atlanta, GA 30301" +281516,USB-C Charging Cable,1,11.95,11/23/19 19:55,"381 10th St, Atlanta, GA 30301" +281517,Lightning Charging Cable,1,14.95,11/05/19 17:46,"189 Church St, Portland, OR 97035" +281518,27in FHD Monitor,1,149.99,11/29/19 07:06,"355 Ridge St, Los Angeles, CA 90001" +281519,AAA Batteries (4-pack),2,2.99,11/14/19 23:37,"576 7th St, San Francisco, CA 94016" +281520,AAA Batteries (4-pack),2,2.99,11/17/19 11:42,"359 8th St, Austin, TX 73301" +281521,USB-C Charging Cable,1,11.95,11/22/19 09:07,"517 11th St, San Francisco, CA 94016" +281522,Google Phone,1,600,11/16/19 19:04,"383 Lincoln St, San Francisco, CA 94016" +281522,Wired Headphones,2,11.99,11/16/19 19:04,"383 Lincoln St, San Francisco, CA 94016" +281523,USB-C Charging Cable,1,11.95,11/05/19 23:44,"41 9th St, Atlanta, GA 30301" +281524,AAA Batteries (4-pack),1,2.99,11/09/19 10:02,"32 4th St, Los Angeles, CA 90001" +281525,Bose SoundSport Headphones,1,99.99,11/12/19 09:26,"482 Wilson St, Los Angeles, CA 90001" +281526,34in Ultrawide Monitor,1,379.99,11/23/19 12:32,"598 Ridge St, Dallas, TX 75001" +281527,Flatscreen TV,1,300,11/16/19 09:42,"433 Walnut St, Seattle, WA 98101" +281528,Bose SoundSport Headphones,1,99.99,11/29/19 09:06,"69 8th St, Los Angeles, CA 90001" +281529,27in 4K Gaming Monitor,1,389.99,11/25/19 18:57,"11 Lake St, New York City, NY 10001" +281530,Wired Headphones,1,11.99,11/20/19 11:53,"74 Chestnut St, Atlanta, GA 30301" +281531,ThinkPad Laptop,1,999.99,11/07/19 19:48,"583 10th St, Los Angeles, CA 90001" +281532,AAA Batteries (4-pack),2,2.99,11/06/19 18:07,"657 Lake St, Dallas, TX 75001" +281533,USB-C Charging Cable,1,11.95,11/30/19 23:24,"725 7th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +281534,20in Monitor,1,109.99,11/04/19 11:01,"649 8th St, New York City, NY 10001" +281535,AA Batteries (4-pack),2,3.84,11/20/19 14:55,"884 Church St, Los Angeles, CA 90001" +281536,Apple Airpods Headphones,1,150,11/24/19 11:49,"803 2nd St, San Francisco, CA 94016" +281537,USB-C Charging Cable,2,11.95,11/19/19 13:35,"991 Lake St, New York City, NY 10001" +281538,27in 4K Gaming Monitor,1,389.99,11/01/19 16:47,"157 Lincoln St, New York City, NY 10001" +281539,AAA Batteries (4-pack),1,2.99,11/27/19 01:30,"190 Center St, Seattle, WA 98101" +281540,AAA Batteries (4-pack),1,2.99,11/21/19 11:42,"444 14th St, Los Angeles, CA 90001" +281541,AA Batteries (4-pack),1,3.84,11/09/19 11:08,"4 Jackson St, New York City, NY 10001" +281542,AAA Batteries (4-pack),1,2.99,11/25/19 22:31,"421 Main St, San Francisco, CA 94016" +281543,AAA Batteries (4-pack),1,2.99,11/01/19 18:46,"428 Willow St, Atlanta, GA 30301" +281544,Lightning Charging Cable,1,14.95,11/01/19 17:02,"646 Washington St, Los Angeles, CA 90001" +281545,Google Phone,1,600,11/27/19 22:40,"423 Johnson St, New York City, NY 10001" +281546,Lightning Charging Cable,1,14.95,11/30/19 10:47,"581 4th St, San Francisco, CA 94016" +281547,USB-C Charging Cable,1,11.95,11/20/19 12:53,"25 Dogwood St, Atlanta, GA 30301" +281548,AA Batteries (4-pack),1,3.84,11/14/19 15:13,"429 2nd St, Los Angeles, CA 90001" +281549,Google Phone,1,600,11/12/19 00:54,"529 Elm St, Boston, MA 02215" +281550,Flatscreen TV,1,300,11/11/19 15:16,"410 West St, New York City, NY 10001" +281551,27in FHD Monitor,1,149.99,11/24/19 23:06,"770 1st St, Boston, MA 02215" +281552,27in 4K Gaming Monitor,1,389.99,11/27/19 22:24,"829 Ridge St, Los Angeles, CA 90001" +281553,AAA Batteries (4-pack),1,2.99,11/05/19 11:54,"740 Lake St, Atlanta, GA 30301" +281554,USB-C Charging Cable,1,11.95,11/12/19 11:06,"152 Elm St, Atlanta, GA 30301" +281555,34in Ultrawide Monitor,1,379.99,11/07/19 11:28,"765 2nd St, Los Angeles, CA 90001" +281556,Wired Headphones,1,11.99,11/11/19 07:39,"534 Hickory St, Austin, TX 73301" +281557,ThinkPad Laptop,1,999.99,11/21/19 10:37,"532 Cherry St, Austin, TX 73301" +,,,,, +281558,AA Batteries (4-pack),1,3.84,11/22/19 12:22,"817 Chestnut St, Los Angeles, CA 90001" +281559,20in Monitor,1,109.99,11/21/19 14:03,"189 Johnson St, New York City, NY 10001" +281560,Apple Airpods Headphones,1,150,11/10/19 06:08,"873 Chestnut St, San Francisco, CA 94016" +281561,iPhone,1,700,11/10/19 20:44,"464 Lakeview St, Boston, MA 02215" +281562,USB-C Charging Cable,1,11.95,11/25/19 20:55,"917 4th St, Los Angeles, CA 90001" +281563,Wired Headphones,1,11.99,11/03/19 23:03,"455 Pine St, Seattle, WA 98101" +281564,AAA Batteries (4-pack),1,2.99,11/16/19 12:51,"797 10th St, New York City, NY 10001" +281565,USB-C Charging Cable,1,11.95,11/28/19 19:36,"818 Washington St, San Francisco, CA 94016" +281566,34in Ultrawide Monitor,1,379.99,11/02/19 11:23,"470 North St, Austin, TX 73301" +281567,Wired Headphones,1,11.99,11/16/19 21:37,"76 River St, Seattle, WA 98101" +281568,Lightning Charging Cable,1,14.95,11/10/19 13:33,"250 Hill St, Portland, OR 97035" +281569,Bose SoundSport Headphones,1,99.99,11/02/19 21:09,"448 Pine St, Austin, TX 73301" +281570,Wired Headphones,2,11.99,11/26/19 18:48,"324 Hickory St, Atlanta, GA 30301" +281571,Lightning Charging Cable,1,14.95,11/15/19 19:25,"500 West St, San Francisco, CA 94016" +281572,AA Batteries (4-pack),2,3.84,11/03/19 17:14,"756 Forest St, New York City, NY 10001" +281573,Lightning Charging Cable,1,14.95,11/09/19 09:17,"402 Cherry St, Atlanta, GA 30301" +281574,AAA Batteries (4-pack),2,2.99,11/19/19 06:56,"14 Park St, Seattle, WA 98101" +281575,USB-C Charging Cable,1,11.95,11/17/19 12:50,"237 Main St, Portland, OR 97035" +281576,USB-C Charging Cable,1,11.95,11/18/19 17:59,"860 West St, Austin, TX 73301" +281577,Apple Airpods Headphones,1,150,11/30/19 01:01,"908 North St, Dallas, TX 75001" +281578,Bose SoundSport Headphones,1,99.99,11/11/19 21:21,"708 Spruce St, Portland, OR 97035" +281579,AAA Batteries (4-pack),2,2.99,11/21/19 09:36,"592 4th St, New York City, NY 10001" +281580,AAA Batteries (4-pack),1,2.99,11/22/19 03:31,"306 Forest St, New York City, NY 10001" +281581,Wired Headphones,1,11.99,11/23/19 14:37,"858 South St, Los Angeles, CA 90001" +281582,Wired Headphones,1,11.99,11/11/19 15:10,"450 1st St, Dallas, TX 75001" +281583,iPhone,1,700,11/03/19 09:57,"770 8th St, Boston, MA 02215" +281584,34in Ultrawide Monitor,1,379.99,11/07/19 16:01,"435 Jackson St, San Francisco, CA 94016" +281585,Flatscreen TV,1,300,11/28/19 20:01,"412 Lake St, San Francisco, CA 94016" +281586,AA Batteries (4-pack),1,3.84,11/27/19 18:32,"169 14th St, Boston, MA 02215" +281587,Bose SoundSport Headphones,1,99.99,11/29/19 20:49,"945 Main St, Seattle, WA 98101" +281588,USB-C Charging Cable,1,11.95,11/28/19 10:39,"803 Walnut St, Atlanta, GA 30301" +281589,Google Phone,1,600,11/05/19 19:56,"99 Meadow St, Portland, OR 97035" +281589,USB-C Charging Cable,2,11.95,11/05/19 19:56,"99 Meadow St, Portland, OR 97035" +281590,AA Batteries (4-pack),1,3.84,11/24/19 09:54,"133 South St, Dallas, TX 75001" +281591,Lightning Charging Cable,2,14.95,11/16/19 09:21,"420 Cedar St, Boston, MA 02215" +281592,Flatscreen TV,1,300,11/22/19 15:12,"302 Cedar St, San Francisco, CA 94016" +281593,AAA Batteries (4-pack),4,2.99,11/15/19 11:09,"141 Jackson St, Boston, MA 02215" +281594,USB-C Charging Cable,1,11.95,11/20/19 19:24,"115 2nd St, New York City, NY 10001" +281595,Apple Airpods Headphones,1,150,11/28/19 10:51,"587 Main St, Portland, OR 97035" +281596,Wired Headphones,1,11.99,11/16/19 23:22,"596 Lake St, Boston, MA 02215" +281596,LG Washing Machine,1,600.0,11/16/19 23:22,"596 Lake St, Boston, MA 02215" +281597,Lightning Charging Cable,1,14.95,11/29/19 10:39,"348 Lakeview St, Dallas, TX 75001" +281598,USB-C Charging Cable,1,11.95,11/02/19 10:15,"965 9th St, Dallas, TX 75001" +281599,Wired Headphones,1,11.99,11/26/19 12:44,"587 Lake St, Los Angeles, CA 90001" +281600,Lightning Charging Cable,1,14.95,11/17/19 09:08,"715 Jefferson St, Atlanta, GA 30301" +281601,iPhone,1,700,11/25/19 19:08,"901 Dogwood St, Portland, OR 97035" +281602,iPhone,1,700,11/27/19 08:15,"252 7th St, Los Angeles, CA 90001" +281603,Flatscreen TV,1,300,11/26/19 13:06,"768 4th St, San Francisco, CA 94016" +281604,USB-C Charging Cable,1,11.95,11/09/19 01:21,"114 Elm St, Austin, TX 73301" +281605,AA Batteries (4-pack),4,3.84,11/02/19 16:53,"5 11th St, San Francisco, CA 94016" +281606,USB-C Charging Cable,1,11.95,11/24/19 17:20,"321 Hill St, Los Angeles, CA 90001" +281607,USB-C Charging Cable,1,11.95,11/27/19 17:41,"948 Jackson St, Seattle, WA 98101" +281608,USB-C Charging Cable,1,11.95,11/02/19 16:26,"685 South St, Atlanta, GA 30301" +281609,27in FHD Monitor,1,149.99,11/12/19 17:06,"265 9th St, San Francisco, CA 94016" +281610,Wired Headphones,1,11.99,11/05/19 08:10,"391 14th St, Atlanta, GA 30301" +281611,Apple Airpods Headphones,1,150,11/26/19 19:31,"372 4th St, San Francisco, CA 94016" +281612,Lightning Charging Cable,1,14.95,11/19/19 13:30,"959 Cherry St, San Francisco, CA 94016" +281613,Flatscreen TV,1,300,11/09/19 13:32,"340 Sunset St, Dallas, TX 75001" +281614,AAA Batteries (4-pack),1,2.99,11/28/19 09:48,"616 11th St, Portland, OR 97035" +281615,AAA Batteries (4-pack),2,2.99,11/24/19 10:39,"243 4th St, Seattle, WA 98101" +281616,27in FHD Monitor,1,149.99,11/28/19 17:06,"361 Lake St, Portland, OR 97035" +281617,27in FHD Monitor,1,149.99,11/05/19 19:55,"339 Ridge St, Atlanta, GA 30301" +281618,USB-C Charging Cable,1,11.95,11/19/19 23:49,"574 Park St, Atlanta, GA 30301" +281619,Wired Headphones,2,11.99,11/19/19 11:49,"640 Jefferson St, Seattle, WA 98101" +281620,Wired Headphones,1,11.99,11/30/19 22:07,"731 Lincoln St, Dallas, TX 75001" +281621,USB-C Charging Cable,1,11.95,11/07/19 13:22,"126 Hill St, San Francisco, CA 94016" +281622,27in 4K Gaming Monitor,1,389.99,11/15/19 13:26,"199 7th St, Los Angeles, CA 90001" +281623,AAA Batteries (4-pack),1,2.99,11/10/19 17:10,"822 River St, Portland, OR 97035" +281624,Google Phone,1,600,11/02/19 19:06,"140 Jefferson St, Dallas, TX 75001" +281625,USB-C Charging Cable,1,11.95,11/30/19 01:20,"171 Meadow St, Portland, OR 97035" +281626,Lightning Charging Cable,1,14.95,11/12/19 18:06,"646 Walnut St, Los Angeles, CA 90001" +281627,AAA Batteries (4-pack),1,2.99,11/10/19 13:30,"127 Center St, Los Angeles, CA 90001" +281628,Wired Headphones,2,11.99,11/25/19 21:11,"644 Washington St, Boston, MA 02215" +281629,34in Ultrawide Monitor,1,379.99,11/20/19 17:47,"292 Washington St, Atlanta, GA 30301" +281630,Lightning Charging Cable,1,14.95,11/28/19 10:12,"902 Dogwood St, Austin, TX 73301" +281631,Apple Airpods Headphones,1,150,11/21/19 16:54,"686 2nd St, New York City, NY 10001" +281632,34in Ultrawide Monitor,1,379.99,11/01/19 15:08,"686 Johnson St, San Francisco, CA 94016" +281633,AAA Batteries (4-pack),2,2.99,11/10/19 20:34,"173 River St, New York City, NY 10001" +281633,Flatscreen TV,1,300,11/10/19 20:34,"173 River St, New York City, NY 10001" +281634,USB-C Charging Cable,1,11.95,11/10/19 00:43,"835 4th St, Atlanta, GA 30301" +281635,USB-C Charging Cable,1,11.95,11/03/19 13:06,"18 Willow St, San Francisco, CA 94016" +281636,AAA Batteries (4-pack),3,2.99,11/27/19 10:36,"19 Jackson St, San Francisco, CA 94016" +281637,AA Batteries (4-pack),1,3.84,11/26/19 20:31,"589 Jackson St, Portland, OR 97035" +281638,Flatscreen TV,1,300,11/15/19 19:37,"64 Sunset St, Atlanta, GA 30301" +281639,27in 4K Gaming Monitor,1,389.99,11/28/19 12:11,"212 6th St, Los Angeles, CA 90001" +281640,Apple Airpods Headphones,1,150,11/01/19 20:31,"351 10th St, New York City, NY 10001" +281641,Bose SoundSport Headphones,1,99.99,11/01/19 18:22,"427 Maple St, Los Angeles, CA 90001" +281642,USB-C Charging Cable,1,11.95,11/06/19 11:53,"857 Ridge St, Portland, OR 97035" +281643,Bose SoundSport Headphones,1,99.99,11/08/19 07:09,"526 Chestnut St, New York City, NY 10001" +281644,Lightning Charging Cable,1,14.95,11/27/19 17:43,"964 Meadow St, San Francisco, CA 94016" +281645,AAA Batteries (4-pack),1,2.99,11/14/19 18:28,"91 9th St, Boston, MA 02215" +281646,Bose SoundSport Headphones,1,99.99,11/10/19 14:24,"676 4th St, New York City, NY 10001" +281647,AA Batteries (4-pack),1,3.84,11/01/19 11:04,"760 River St, Dallas, TX 75001" +281648,USB-C Charging Cable,1,11.95,11/26/19 20:32,"481 Chestnut St, Los Angeles, CA 90001" +281649,Apple Airpods Headphones,1,150,11/04/19 08:52,"655 14th St, Atlanta, GA 30301" +281650,Wired Headphones,1,11.99,11/22/19 06:21,"407 13th St, Boston, MA 02215" +281651,USB-C Charging Cable,1,11.95,11/28/19 06:19,"285 Highland St, Portland, OR 97035" +281652,27in FHD Monitor,1,149.99,11/28/19 01:11,"765 8th St, San Francisco, CA 94016" +281653,Lightning Charging Cable,1,14.95,11/19/19 22:32,"778 Meadow St, Dallas, TX 75001" +281654,USB-C Charging Cable,1,11.95,11/18/19 19:28,"630 Church St, Los Angeles, CA 90001" +281655,Macbook Pro Laptop,1,1700,11/04/19 18:38,"295 Hill St, Dallas, TX 75001" +281656,34in Ultrawide Monitor,1,379.99,11/07/19 07:25,"906 Forest St, Portland, OR 97035" +281657,Bose SoundSport Headphones,1,99.99,11/24/19 13:55,"34 West St, Boston, MA 02215" +281658,Apple Airpods Headphones,1,150,11/19/19 22:44,"903 Cedar St, Dallas, TX 75001" +281658,Bose SoundSport Headphones,1,99.99,11/19/19 22:44,"903 Cedar St, Dallas, TX 75001" +281659,34in Ultrawide Monitor,1,379.99,11/11/19 15:55,"720 Chestnut St, New York City, NY 10001" +281660,Apple Airpods Headphones,1,150,11/26/19 09:44,"324 North St, Austin, TX 73301" +281661,Apple Airpods Headphones,1,150,11/01/19 23:29,"953 7th St, New York City, NY 10001" +281662,Bose SoundSport Headphones,1,99.99,11/19/19 22:29,"585 Park St, Los Angeles, CA 90001" +281663,LG Washing Machine,1,600.0,11/09/19 16:56,"868 10th St, Seattle, WA 98101" +281664,27in FHD Monitor,1,149.99,11/03/19 01:38,"853 River St, Los Angeles, CA 90001" +281665,AA Batteries (4-pack),1,3.84,11/19/19 17:23,"832 Chestnut St, Dallas, TX 75001" +281666,AA Batteries (4-pack),1,3.84,11/12/19 08:19,"525 Church St, Atlanta, GA 30301" +281667,AA Batteries (4-pack),1,3.84,11/28/19 22:04,"707 West St, San Francisco, CA 94016" +281668,AA Batteries (4-pack),1,3.84,11/01/19 09:51,"54 8th St, San Francisco, CA 94016" +281669,AA Batteries (4-pack),1,3.84,11/05/19 16:01,"387 Jefferson St, San Francisco, CA 94016" +281670,27in 4K Gaming Monitor,1,389.99,11/04/19 22:55,"822 Washington St, Atlanta, GA 30301" +281671,ThinkPad Laptop,1,999.99,11/23/19 18:53,"478 South St, New York City, NY 10001" +281672,Lightning Charging Cable,1,14.95,11/15/19 11:03,"371 11th St, Portland, OR 97035" +281673,AAA Batteries (4-pack),1,2.99,11/20/19 07:14,"357 Meadow St, San Francisco, CA 94016" +281674,AA Batteries (4-pack),2,3.84,11/13/19 16:28,"189 Dogwood St, San Francisco, CA 94016" +281675,AAA Batteries (4-pack),1,2.99,11/09/19 13:41,"593 Church St, San Francisco, CA 94016" +281676,27in 4K Gaming Monitor,1,389.99,11/25/19 11:59,"624 Sunset St, Los Angeles, CA 90001" +281677,Wired Headphones,1,11.99,11/29/19 15:53,"197 Church St, Austin, TX 73301" +281678,Wired Headphones,1,11.99,11/05/19 12:08,"938 2nd St, Austin, TX 73301" +281679,Apple Airpods Headphones,1,150,11/20/19 01:19,"997 Lakeview St, Los Angeles, CA 90001" +281680,Bose SoundSport Headphones,1,99.99,11/01/19 18:13,"81 Lakeview St, Seattle, WA 98101" +281681,Apple Airpods Headphones,1,150,11/06/19 10:45,"935 Chestnut St, Los Angeles, CA 90001" +281682,AAA Batteries (4-pack),1,2.99,11/07/19 01:40,"44 11th St, Portland, OR 97035" +281683,27in FHD Monitor,1,149.99,11/06/19 10:55,"624 8th St, Portland, OR 97035" +281684,Macbook Pro Laptop,1,1700,11/08/19 14:22,"141 River St, New York City, NY 10001" +281685,AAA Batteries (4-pack),1,2.99,11/21/19 21:52,"834 Pine St, Austin, TX 73301" +281686,ThinkPad Laptop,1,999.99,11/18/19 11:31,"366 Maple St, Dallas, TX 75001" +281687,Bose SoundSport Headphones,1,99.99,11/14/19 16:25,"181 Lake St, Los Angeles, CA 90001" +281688,Wired Headphones,1,11.99,11/29/19 11:58,"449 West St, San Francisco, CA 94016" +281689,AAA Batteries (4-pack),1,2.99,11/06/19 09:37,"182 Center St, San Francisco, CA 94016" +281690,Apple Airpods Headphones,1,150,11/07/19 01:42,"458 Dogwood St, Los Angeles, CA 90001" +281691,Wired Headphones,1,11.99,11/06/19 17:41,"60 Church St, San Francisco, CA 94016" +281692,Wired Headphones,2,11.99,11/15/19 18:56,"198 Pine St, Atlanta, GA 30301" +281693,Google Phone,1,600,11/22/19 10:49,"140 Johnson St, New York City, NY 10001" +281694,AA Batteries (4-pack),1,3.84,11/09/19 18:50,"144 Maple St, Boston, MA 02215" +281695,27in FHD Monitor,1,149.99,11/09/19 17:12,"979 South St, Atlanta, GA 30301" +281696,USB-C Charging Cable,1,11.95,11/06/19 15:44,"745 Church St, Seattle, WA 98101" +281697,AAA Batteries (4-pack),1,2.99,11/27/19 12:37,"220 Elm St, New York City, NY 10001" +281698,AA Batteries (4-pack),1,3.84,11/08/19 13:34,"555 Jackson St, Seattle, WA 98101" +281699,Bose SoundSport Headphones,1,99.99,11/29/19 23:26,"812 Jefferson St, New York City, NY 10001" +281700,Wired Headphones,1,11.99,11/03/19 15:28,"129 1st St, Los Angeles, CA 90001" +281701,Wired Headphones,1,11.99,11/15/19 21:53,"340 7th St, Austin, TX 73301" +281702,Wired Headphones,1,11.99,11/19/19 20:42,"686 14th St, Los Angeles, CA 90001" +281703,Lightning Charging Cable,1,14.95,11/10/19 15:11,"336 9th St, Dallas, TX 75001" +281704,Wired Headphones,1,11.99,11/16/19 11:19,"885 7th St, New York City, NY 10001" +281705,iPhone,1,700,11/23/19 22:33,"898 Lake St, Portland, OR 97035" +281705,Lightning Charging Cable,1,14.95,11/23/19 22:33,"898 Lake St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +281706,USB-C Charging Cable,1,11.95,11/22/19 19:32,"207 Cedar St, Los Angeles, CA 90001" +281707,AAA Batteries (4-pack),1,2.99,11/13/19 10:40,"227 West St, Atlanta, GA 30301" +281708,AAA Batteries (4-pack),1,2.99,11/12/19 07:07,"89 Cherry St, Boston, MA 02215" +281709,Google Phone,1,600,11/24/19 15:41,"926 Cedar St, New York City, NY 10001" +281709,Lightning Charging Cable,1,14.95,11/24/19 15:41,"926 Cedar St, New York City, NY 10001" +281710,AA Batteries (4-pack),1,3.84,11/28/19 13:57,"70 Spruce St, San Francisco, CA 94016" +281711,ThinkPad Laptop,1,999.99,11/12/19 20:32,"713 14th St, San Francisco, CA 94016" +281712,27in 4K Gaming Monitor,1,389.99,11/01/19 21:23,"173 South St, Los Angeles, CA 90001" +281713,Flatscreen TV,1,300,11/18/19 11:07,"797 13th St, Boston, MA 02215" +281714,27in 4K Gaming Monitor,1,389.99,11/02/19 19:36,"5 Washington St, Atlanta, GA 30301" +281715,Wired Headphones,1,11.99,11/17/19 13:34,"935 Elm St, Los Angeles, CA 90001" +281716,USB-C Charging Cable,1,11.95,11/10/19 14:13,"128 Spruce St, Seattle, WA 98101" +281717,Google Phone,1,600,11/11/19 17:06,"534 8th St, San Francisco, CA 94016" +281717,USB-C Charging Cable,1,11.95,11/11/19 17:06,"534 8th St, San Francisco, CA 94016" +281718,Flatscreen TV,1,300,11/01/19 16:10,"430 South St, San Francisco, CA 94016" +281719,Apple Airpods Headphones,1,150,11/18/19 11:20,"141 South St, Austin, TX 73301" +281720,AAA Batteries (4-pack),2,2.99,11/02/19 08:03,"212 Washington St, San Francisco, CA 94016" +281721,Google Phone,1,600,11/27/19 19:24,"608 5th St, Dallas, TX 75001" +281722,34in Ultrawide Monitor,1,379.99,11/21/19 09:49,"853 10th St, San Francisco, CA 94016" +281723,USB-C Charging Cable,1,11.95,11/07/19 19:32,"806 Walnut St, Los Angeles, CA 90001" +281724,Flatscreen TV,1,300,11/10/19 14:31,"746 Forest St, San Francisco, CA 94016" +281725,USB-C Charging Cable,1,11.95,11/02/19 18:21,"942 Hickory St, New York City, NY 10001" +281726,USB-C Charging Cable,1,11.95,11/24/19 22:07,"899 Wilson St, Seattle, WA 98101" +281727,27in FHD Monitor,1,149.99,11/09/19 15:25,"766 Elm St, Los Angeles, CA 90001" +281728,Vareebadd Phone,1,400,11/25/19 10:04,"745 Cedar St, San Francisco, CA 94016" +281729,AAA Batteries (4-pack),1,2.99,11/15/19 14:34,"13 6th St, Boston, MA 02215" +281730,Lightning Charging Cable,1,14.95,11/13/19 18:11,"471 Main St, San Francisco, CA 94016" +281731,27in 4K Gaming Monitor,1,389.99,11/18/19 09:34,"692 9th St, San Francisco, CA 94016" +281732,Lightning Charging Cable,1,14.95,11/09/19 16:29,"229 6th St, Atlanta, GA 30301" +281733,AAA Batteries (4-pack),2,2.99,11/03/19 13:28,"729 Jackson St, Atlanta, GA 30301" +281734,AAA Batteries (4-pack),3,2.99,11/11/19 14:13,"777 North St, Los Angeles, CA 90001" +281735,ThinkPad Laptop,1,999.99,11/22/19 20:11,"257 Johnson St, San Francisco, CA 94016" +281736,AA Batteries (4-pack),1,3.84,11/09/19 11:03,"65 12th St, Los Angeles, CA 90001" +281737,AAA Batteries (4-pack),2,2.99,11/26/19 16:40,"564 Pine St, Seattle, WA 98101" +281738,Apple Airpods Headphones,1,150,11/09/19 18:57,"228 Adams St, Los Angeles, CA 90001" +281739,34in Ultrawide Monitor,1,379.99,11/24/19 12:04,"664 Willow St, New York City, NY 10001" +281740,AAA Batteries (4-pack),1,2.99,11/11/19 20:10,"517 Jackson St, Boston, MA 02215" +281741,Lightning Charging Cable,1,14.95,11/02/19 13:20,"22 Cedar St, San Francisco, CA 94016" +281742,ThinkPad Laptop,1,999.99,11/08/19 18:02,"779 North St, New York City, NY 10001" +281742,USB-C Charging Cable,1,11.95,11/08/19 18:02,"779 North St, New York City, NY 10001" +281743,Bose SoundSport Headphones,1,99.99,11/10/19 16:44,"922 Chestnut St, Los Angeles, CA 90001" +281744,AAA Batteries (4-pack),2,2.99,11/16/19 13:35,"877 Madison St, Austin, TX 73301" +281745,AA Batteries (4-pack),1,3.84,11/13/19 21:14,"218 River St, Austin, TX 73301" +281746,AAA Batteries (4-pack),1,2.99,11/16/19 09:34,"317 Forest St, Los Angeles, CA 90001" +281747,Wired Headphones,1,11.99,11/06/19 16:04,"127 11th St, Austin, TX 73301" +281748,Macbook Pro Laptop,1,1700,11/15/19 15:44,"569 Church St, Los Angeles, CA 90001" +281749,USB-C Charging Cable,1,11.95,11/26/19 08:33,"13 Johnson St, Dallas, TX 75001" +281750,Wired Headphones,1,11.99,11/17/19 04:00,"384 Johnson St, Boston, MA 02215" +281751,34in Ultrawide Monitor,1,379.99,11/25/19 23:06,"859 Madison St, San Francisco, CA 94016" +281752,ThinkPad Laptop,1,999.99,11/04/19 15:53,"183 12th St, New York City, NY 10001" +281753,iPhone,1,700,11/03/19 10:50,"64 5th St, San Francisco, CA 94016" +281754,AAA Batteries (4-pack),2,2.99,11/27/19 21:12,"590 Washington St, Los Angeles, CA 90001" +281755,AAA Batteries (4-pack),3,2.99,11/17/19 16:51,"182 Elm St, Austin, TX 73301" +281756,Lightning Charging Cable,1,14.95,11/24/19 09:45,"387 Elm St, Los Angeles, CA 90001" +281757,Macbook Pro Laptop,1,1700,11/08/19 12:20,"997 1st St, Boston, MA 02215" +281757,Lightning Charging Cable,1,14.95,11/08/19 12:20,"997 1st St, Boston, MA 02215" +281758,USB-C Charging Cable,1,11.95,11/18/19 21:56,"434 9th St, Los Angeles, CA 90001" +281759,Wired Headphones,1,11.99,11/03/19 07:51,"971 Lincoln St, New York City, NY 10001" +281760,USB-C Charging Cable,1,11.95,11/07/19 11:31,"549 Johnson St, New York City, NY 10001" +281761,Wired Headphones,1,11.99,11/17/19 12:53,"859 Ridge St, New York City, NY 10001" +281762,AA Batteries (4-pack),1,3.84,11/02/19 18:53,"843 Wilson St, Boston, MA 02215" +281763,AA Batteries (4-pack),1,3.84,11/09/19 16:56,"963 Walnut St, Dallas, TX 75001" +281764,AA Batteries (4-pack),1,3.84,11/28/19 11:56,"549 7th St, San Francisco, CA 94016" +281765,AAA Batteries (4-pack),1,2.99,11/26/19 09:26,"584 West St, San Francisco, CA 94016" +281766,AA Batteries (4-pack),1,3.84,11/14/19 11:19,"914 Jefferson St, Boston, MA 02215" +281767,USB-C Charging Cable,1,11.95,11/02/19 10:14,"195 Wilson St, Los Angeles, CA 90001" +281768,iPhone,1,700,11/22/19 16:04,"781 Walnut St, Boston, MA 02215" +281769,ThinkPad Laptop,1,999.99,11/26/19 15:11,"702 Jefferson St, Boston, MA 02215" +281770,27in FHD Monitor,2,149.99,11/15/19 11:16,"613 13th St, New York City, NY 10001" +281771,AA Batteries (4-pack),1,3.84,11/03/19 16:36,"225 Lincoln St, Los Angeles, CA 90001" +281772,20in Monitor,1,109.99,11/05/19 10:54,"807 Hill St, Portland, ME 04101" +281773,34in Ultrawide Monitor,1,379.99,11/03/19 17:58,"654 Lake St, Dallas, TX 75001" +281774,Apple Airpods Headphones,1,150,11/23/19 12:59,"229 Hickory St, San Francisco, CA 94016" +281775,Google Phone,1,600,11/26/19 12:46,"664 Willow St, Portland, OR 97035" +281776,34in Ultrawide Monitor,1,379.99,11/22/19 10:39,"131 11th St, Seattle, WA 98101" +281777,Bose SoundSport Headphones,1,99.99,11/30/19 18:02,"342 Johnson St, Austin, TX 73301" +281778,Wired Headphones,1,11.99,11/10/19 13:03,"161 South St, Austin, TX 73301" +281779,Lightning Charging Cable,1,14.95,11/23/19 17:16,"685 Cherry St, Los Angeles, CA 90001" +281780,USB-C Charging Cable,1,11.95,11/20/19 19:40,"183 8th St, New York City, NY 10001" +281781,AA Batteries (4-pack),1,3.84,11/11/19 10:58,"69 10th St, Atlanta, GA 30301" +281782,AA Batteries (4-pack),1,3.84,11/18/19 09:28,"823 Madison St, Dallas, TX 75001" +281783,AA Batteries (4-pack),1,3.84,11/29/19 17:09,"465 Washington St, New York City, NY 10001" +281784,Macbook Pro Laptop,1,1700,11/15/19 13:25,"795 Walnut St, San Francisco, CA 94016" +281785,USB-C Charging Cable,1,11.95,11/02/19 13:38,"521 Spruce St, San Francisco, CA 94016" +281786,Wired Headphones,1,11.99,11/10/19 14:08,"430 2nd St, Atlanta, GA 30301" +281787,AAA Batteries (4-pack),4,2.99,11/22/19 08:32,"705 Lake St, New York City, NY 10001" +281788,AAA Batteries (4-pack),2,2.99,11/08/19 13:58,"576 Washington St, Los Angeles, CA 90001" +281789,AA Batteries (4-pack),1,3.84,11/04/19 00:42,"820 7th St, Boston, MA 02215" +281790,LG Washing Machine,1,600.0,11/28/19 19:03,"11 13th St, Los Angeles, CA 90001" +281791,Bose SoundSport Headphones,1,99.99,11/25/19 15:12,"589 Highland St, Atlanta, GA 30301" +281792,Apple Airpods Headphones,1,150,11/28/19 10:49,"408 Wilson St, Los Angeles, CA 90001" +281793,USB-C Charging Cable,1,11.95,11/07/19 08:07,"18 Adams St, San Francisco, CA 94016" +281794,Bose SoundSport Headphones,1,99.99,11/17/19 19:55,"4 9th St, Los Angeles, CA 90001" +281795,LG Washing Machine,1,600.0,11/30/19 01:05,"246 10th St, Boston, MA 02215" +281796,Bose SoundSport Headphones,1,99.99,11/15/19 18:43,"763 River St, Los Angeles, CA 90001" +281797,AA Batteries (4-pack),1,3.84,11/24/19 18:16,"355 Lakeview St, Los Angeles, CA 90001" +281798,AA Batteries (4-pack),2,3.84,11/03/19 06:43,"886 1st St, San Francisco, CA 94016" +281799,Lightning Charging Cable,1,14.95,11/09/19 04:47,"989 Church St, San Francisco, CA 94016" +281800,Lightning Charging Cable,1,14.95,11/30/19 08:46,"891 Pine St, San Francisco, CA 94016" +281801,AA Batteries (4-pack),1,3.84,11/13/19 20:13,"903 Hill St, San Francisco, CA 94016" +281802,AAA Batteries (4-pack),2,2.99,11/14/19 13:11,"21 Johnson St, Seattle, WA 98101" +281803,iPhone,1,700,11/19/19 13:37,"404 Johnson St, Dallas, TX 75001" +281804,AAA Batteries (4-pack),1,2.99,11/27/19 08:39,"423 South St, Boston, MA 02215" +281805,Bose SoundSport Headphones,1,99.99,11/18/19 22:07,"262 Johnson St, Los Angeles, CA 90001" +281806,27in 4K Gaming Monitor,1,389.99,11/08/19 14:24,"559 Maple St, San Francisco, CA 94016" +281807,27in FHD Monitor,1,149.99,11/20/19 14:23,"662 10th St, Dallas, TX 75001" +281808,Wired Headphones,1,11.99,11/22/19 09:26,"351 10th St, Atlanta, GA 30301" +281809,Wired Headphones,1,11.99,11/12/19 16:46,"970 Jackson St, Boston, MA 02215" +281810,AA Batteries (4-pack),1,3.84,11/13/19 22:30,"883 1st St, Los Angeles, CA 90001" +281811,27in FHD Monitor,1,149.99,11/22/19 21:16,"972 Sunset St, San Francisco, CA 94016" +281812,Bose SoundSport Headphones,1,99.99,11/07/19 19:02,"732 5th St, Dallas, TX 75001" +281812,AAA Batteries (4-pack),1,2.99,11/07/19 19:02,"732 5th St, Dallas, TX 75001" +281813,Lightning Charging Cable,1,14.95,11/19/19 17:37,"877 12th St, Boston, MA 02215" +281814,AAA Batteries (4-pack),3,2.99,11/07/19 11:57,"433 6th St, Boston, MA 02215" +281815,AAA Batteries (4-pack),1,2.99,11/16/19 20:50,"264 West St, San Francisco, CA 94016" +281816,Lightning Charging Cable,1,14.95,11/30/19 15:35,"308 Wilson St, Atlanta, GA 30301" +281817,Wired Headphones,1,11.99,11/13/19 16:15,"262 Main St, Dallas, TX 75001" +281818,AAA Batteries (4-pack),1,2.99,11/24/19 11:51,"725 North St, Boston, MA 02215" +281819,USB-C Charging Cable,1,11.95,11/20/19 12:24,"783 Johnson St, Atlanta, GA 30301" +281820,20in Monitor,1,109.99,11/08/19 15:25,"350 Dogwood St, Austin, TX 73301" +281821,AA Batteries (4-pack),1,3.84,11/22/19 20:20,"420 Jackson St, San Francisco, CA 94016" +281822,Apple Airpods Headphones,1,150,11/30/19 09:21,"434 Center St, San Francisco, CA 94016" +281823,Apple Airpods Headphones,1,150,11/04/19 10:57,"702 Walnut St, San Francisco, CA 94016" +281824,27in 4K Gaming Monitor,1,389.99,11/24/19 10:16,"429 4th St, San Francisco, CA 94016" +281825,USB-C Charging Cable,1,11.95,11/28/19 23:01,"135 Church St, Los Angeles, CA 90001" +281826,AA Batteries (4-pack),1,3.84,11/05/19 11:33,"100 Wilson St, Boston, MA 02215" +281827,Google Phone,1,600,11/30/19 12:13,"726 Wilson St, New York City, NY 10001" +281827,USB-C Charging Cable,1,11.95,11/30/19 12:13,"726 Wilson St, New York City, NY 10001" +281828,Wired Headphones,1,11.99,11/13/19 21:00,"834 Madison St, Boston, MA 02215" +281829,Bose SoundSport Headphones,1,99.99,11/29/19 16:13,"558 Willow St, Los Angeles, CA 90001" +281830,iPhone,1,700,11/22/19 11:48,"472 7th St, Atlanta, GA 30301" +281831,Lightning Charging Cable,1,14.95,11/14/19 17:45,"285 6th St, San Francisco, CA 94016" +281832,Lightning Charging Cable,1,14.95,11/16/19 18:57,"175 Sunset St, New York City, NY 10001" +281833,Wired Headphones,1,11.99,11/26/19 08:03,"418 Main St, Austin, TX 73301" +281834,AAA Batteries (4-pack),1,2.99,11/08/19 09:29,"977 8th St, Los Angeles, CA 90001" +281835,27in FHD Monitor,1,149.99,11/13/19 09:53,"922 Lincoln St, San Francisco, CA 94016" +281836,Lightning Charging Cable,1,14.95,11/26/19 18:14,"317 Sunset St, Austin, TX 73301" +281837,AA Batteries (4-pack),2,3.84,11/27/19 13:33,"763 10th St, San Francisco, CA 94016" +281838,Wired Headphones,1,11.99,11/21/19 12:40,"997 10th St, San Francisco, CA 94016" +281839,ThinkPad Laptop,1,999.99,11/16/19 00:54,"768 Chestnut St, San Francisco, CA 94016" +281840,AA Batteries (4-pack),1,3.84,11/19/19 07:40,"631 Park St, New York City, NY 10001" +281841,Apple Airpods Headphones,1,150,11/10/19 21:36,"342 Lakeview St, Dallas, TX 75001" +281842,20in Monitor,1,109.99,11/07/19 14:10,"225 5th St, Los Angeles, CA 90001" +281843,Bose SoundSport Headphones,1,99.99,11/13/19 19:47,"748 Park St, Boston, MA 02215" +281844,Wired Headphones,1,11.99,11/03/19 12:17,"841 Willow St, Atlanta, GA 30301" +281845,iPhone,1,700,11/18/19 09:14,"724 Ridge St, New York City, NY 10001" +281845,Apple Airpods Headphones,1,150,11/18/19 09:14,"724 Ridge St, New York City, NY 10001" +281846,ThinkPad Laptop,1,999.99,11/18/19 22:23,"647 4th St, Seattle, WA 98101" +281847,Wired Headphones,1,11.99,11/20/19 13:27,"633 4th St, San Francisco, CA 94016" +281848,AAA Batteries (4-pack),1,2.99,11/27/19 16:43,"843 Lakeview St, Atlanta, GA 30301" +281849,ThinkPad Laptop,1,999.99,11/18/19 04:46,"803 Johnson St, Atlanta, GA 30301" +281850,Macbook Pro Laptop,1,1700,11/06/19 14:18,"424 Forest St, Austin, TX 73301" +281851,AAA Batteries (4-pack),1,2.99,11/11/19 17:12,"818 Jackson St, Los Angeles, CA 90001" +281852,AAA Batteries (4-pack),1,2.99,11/22/19 16:22,"705 Cedar St, Dallas, TX 75001" +281853,27in 4K Gaming Monitor,1,389.99,11/27/19 15:56,"251 Madison St, Seattle, WA 98101" +281854,Macbook Pro Laptop,1,1700,11/01/19 11:12,"491 South St, Boston, MA 02215" +281855,Apple Airpods Headphones,1,150,11/04/19 11:08,"813 Walnut St, Boston, MA 02215" +281856,Apple Airpods Headphones,1,150,11/26/19 19:09,"516 Elm St, Los Angeles, CA 90001" +281857,27in 4K Gaming Monitor,1,389.99,11/15/19 05:49,"402 8th St, Los Angeles, CA 90001" +281858,AAA Batteries (4-pack),1,2.99,11/16/19 23:03,"626 Hill St, New York City, NY 10001" +281859,AA Batteries (4-pack),1,3.84,11/13/19 16:16,"304 Cedar St, Atlanta, GA 30301" +281860,AA Batteries (4-pack),1,3.84,11/08/19 11:17,"465 Center St, Boston, MA 02215" +281861,AAA Batteries (4-pack),1,2.99,11/21/19 18:19,"174 Ridge St, Los Angeles, CA 90001" +281862,USB-C Charging Cable,1,11.95,11/19/19 19:31,"281 10th St, Los Angeles, CA 90001" +281863,AAA Batteries (4-pack),1,2.99,11/22/19 12:49,"877 Wilson St, Los Angeles, CA 90001" +281864,Google Phone,1,600,11/11/19 14:22,"476 12th St, Dallas, TX 75001" +281865,Vareebadd Phone,1,400,11/30/19 16:47,"727 Lakeview St, Los Angeles, CA 90001" +281866,Wired Headphones,1,11.99,11/05/19 17:48,"966 14th St, San Francisco, CA 94016" +281867,Lightning Charging Cable,1,14.95,11/28/19 23:37,"324 2nd St, New York City, NY 10001" +281868,AAA Batteries (4-pack),3,2.99,11/07/19 20:42,"653 2nd St, San Francisco, CA 94016" +281869,iPhone,1,700,11/25/19 09:17,"166 Pine St, New York City, NY 10001" +281869,Lightning Charging Cable,2,14.95,11/25/19 09:17,"166 Pine St, New York City, NY 10001" +281870,27in 4K Gaming Monitor,1,389.99,11/19/19 11:08,"752 6th St, San Francisco, CA 94016" +281871,AA Batteries (4-pack),1,3.84,11/27/19 09:23,"536 Jefferson St, Dallas, TX 75001" +281872,27in 4K Gaming Monitor,1,389.99,11/02/19 04:11,"698 13th St, Boston, MA 02215" +281873,LG Washing Machine,1,600.0,11/08/19 17:32,"896 4th St, Dallas, TX 75001" +281874,USB-C Charging Cable,1,11.95,11/08/19 10:35,"973 12th St, Los Angeles, CA 90001" +281875,34in Ultrawide Monitor,1,379.99,11/03/19 02:33,"871 North St, Atlanta, GA 30301" +281876,Wired Headphones,1,11.99,11/08/19 17:37,"486 Forest St, Atlanta, GA 30301" +281877,Wired Headphones,1,11.99,11/20/19 11:15,"856 12th St, Austin, TX 73301" +281878,27in 4K Gaming Monitor,1,389.99,11/07/19 12:02,"937 13th St, Atlanta, GA 30301" +281878,Macbook Pro Laptop,1,1700,11/07/19 12:02,"937 13th St, Atlanta, GA 30301" +281879,AAA Batteries (4-pack),1,2.99,11/13/19 13:29,"58 West St, Boston, MA 02215" +281880,Wired Headphones,2,11.99,11/17/19 13:57,"377 Center St, San Francisco, CA 94016" +281881,Bose SoundSport Headphones,1,99.99,11/17/19 07:51,"752 2nd St, Atlanta, GA 30301" +281882,Wired Headphones,1,11.99,11/12/19 17:15,"97 Lake St, Los Angeles, CA 90001" +281883,AAA Batteries (4-pack),3,2.99,11/25/19 10:16,"741 Adams St, New York City, NY 10001" +281884,Bose SoundSport Headphones,1,99.99,11/23/19 10:43,"70 10th St, Los Angeles, CA 90001" +281885,ThinkPad Laptop,1,999.99,11/23/19 14:02,"569 River St, Boston, MA 02215" +281886,AAA Batteries (4-pack),1,2.99,11/17/19 19:49,"118 6th St, San Francisco, CA 94016" +281887,AAA Batteries (4-pack),3,2.99,11/30/19 22:33,"983 Jefferson St, San Francisco, CA 94016" +281888,iPhone,1,700,11/13/19 22:38,"135 4th St, Boston, MA 02215" +281889,Apple Airpods Headphones,1,150,11/12/19 11:46,"409 Meadow St, Los Angeles, CA 90001" +281890,27in FHD Monitor,1,149.99,11/23/19 14:20,"16 Cedar St, Boston, MA 02215" +281891,Lightning Charging Cable,1,14.95,11/27/19 16:49,"837 Lakeview St, Boston, MA 02215" +281892,Wired Headphones,1,11.99,11/29/19 20:17,"792 Pine St, New York City, NY 10001" +281893,AAA Batteries (4-pack),1,2.99,11/15/19 23:22,"79 Washington St, Atlanta, GA 30301" +281894,USB-C Charging Cable,1,11.95,11/25/19 00:56,"984 South St, Los Angeles, CA 90001" +281895,Lightning Charging Cable,1,14.95,11/26/19 18:33,"18 Lincoln St, San Francisco, CA 94016" +281896,27in FHD Monitor,1,149.99,11/02/19 10:05,"371 Cherry St, Los Angeles, CA 90001" +281897,USB-C Charging Cable,1,11.95,11/16/19 23:47,"97 8th St, Boston, MA 02215" +281898,Wired Headphones,1,11.99,11/19/19 19:24,"873 Pine St, Austin, TX 73301" +281899,Lightning Charging Cable,1,14.95,11/01/19 10:06,"397 North St, Dallas, TX 75001" +281900,USB-C Charging Cable,2,11.95,11/08/19 19:42,"949 Cherry St, Boston, MA 02215" +281901,27in 4K Gaming Monitor,1,389.99,11/01/19 22:25,"646 12th St, Seattle, WA 98101" +281902,USB-C Charging Cable,1,11.95,11/02/19 14:37,"675 Main St, New York City, NY 10001" +281903,Wired Headphones,1,11.99,11/26/19 23:28,"788 West St, Dallas, TX 75001" +281904,AA Batteries (4-pack),1,3.84,11/29/19 09:14,"497 Spruce St, Los Angeles, CA 90001" +281905,27in 4K Gaming Monitor,1,389.99,11/13/19 15:08,"114 10th St, San Francisco, CA 94016" +281906,Lightning Charging Cable,1,14.95,11/27/19 15:08,"798 Pine St, Portland, OR 97035" +281907,Apple Airpods Headphones,1,150,11/13/19 18:06,"286 10th St, Boston, MA 02215" +281908,34in Ultrawide Monitor,1,379.99,11/10/19 16:16,"528 Willow St, Dallas, TX 75001" +281909,AAA Batteries (4-pack),1,2.99,11/03/19 15:25,"265 4th St, San Francisco, CA 94016" +281910,27in FHD Monitor,1,149.99,11/19/19 18:42,"629 13th St, Los Angeles, CA 90001" +281911,Bose SoundSport Headphones,1,99.99,11/03/19 13:00,"245 Center St, New York City, NY 10001" +,,,,, +281912,Macbook Pro Laptop,1,1700,11/21/19 11:54,"266 7th St, Seattle, WA 98101" +281913,Wired Headphones,2,11.99,11/11/19 13:18,"149 Cedar St, Los Angeles, CA 90001" +281914,Bose SoundSport Headphones,1,99.99,11/21/19 09:34,"758 13th St, New York City, NY 10001" +281915,Wired Headphones,1,11.99,11/30/19 11:45,"13 Maple St, San Francisco, CA 94016" +281916,Wired Headphones,1,11.99,11/23/19 14:19,"848 Pine St, Boston, MA 02215" +281917,USB-C Charging Cable,1,11.95,11/08/19 11:16,"13 Wilson St, Atlanta, GA 30301" +281918,USB-C Charging Cable,1,11.95,11/07/19 19:35,"215 Hill St, Atlanta, GA 30301" +281919,AA Batteries (4-pack),3,3.84,11/17/19 15:57,"24 Cedar St, Portland, OR 97035" +281920,Google Phone,1,600,11/17/19 17:50,"970 2nd St, Austin, TX 73301" +281921,Macbook Pro Laptop,1,1700,11/05/19 23:20,"146 South St, Los Angeles, CA 90001" +281922,AAA Batteries (4-pack),1,2.99,11/18/19 11:50,"980 Johnson St, Los Angeles, CA 90001" +281923,20in Monitor,1,109.99,11/23/19 15:12,"668 Highland St, Atlanta, GA 30301" +281924,AA Batteries (4-pack),2,3.84,11/18/19 16:01,"519 14th St, Portland, OR 97035" +281925,Apple Airpods Headphones,1,150,11/20/19 22:11,"758 Dogwood St, Dallas, TX 75001" +281926,Lightning Charging Cable,1,14.95,11/27/19 18:43,"458 Jackson St, New York City, NY 10001" +281927,AAA Batteries (4-pack),1,2.99,11/06/19 07:56,"359 2nd St, Los Angeles, CA 90001" +281928,Bose SoundSport Headphones,1,99.99,11/28/19 18:32,"306 Spruce St, Atlanta, GA 30301" +281929,ThinkPad Laptop,1,999.99,11/18/19 08:25,"372 9th St, Los Angeles, CA 90001" +281930,Lightning Charging Cable,1,14.95,11/17/19 21:21,"625 Meadow St, Los Angeles, CA 90001" +281931,AA Batteries (4-pack),1,3.84,11/21/19 00:30,"617 Adams St, Dallas, TX 75001" +281932,Wired Headphones,1,11.99,11/23/19 05:49,"235 Cedar St, Portland, OR 97035" +281933,USB-C Charging Cable,1,11.95,11/16/19 23:09,"609 Wilson St, Portland, OR 97035" +281934,USB-C Charging Cable,1,11.95,11/29/19 20:41,"887 Meadow St, New York City, NY 10001" +281935,34in Ultrawide Monitor,1,379.99,11/14/19 11:36,"256 Meadow St, Boston, MA 02215" +281936,USB-C Charging Cable,1,11.95,11/06/19 14:13,"113 Forest St, Atlanta, GA 30301" +281937,Lightning Charging Cable,1,14.95,11/01/19 22:59,"544 Wilson St, Dallas, TX 75001" +281938,Bose SoundSport Headphones,1,99.99,11/26/19 18:27,"117 8th St, Los Angeles, CA 90001" +281939,iPhone,1,700,11/20/19 13:29,"167 Park St, New York City, NY 10001" +281939,Apple Airpods Headphones,1,150,11/20/19 13:29,"167 Park St, New York City, NY 10001" +281940,Wired Headphones,1,11.99,11/27/19 13:26,"530 Lakeview St, Austin, TX 73301" +281941,Apple Airpods Headphones,1,150,11/23/19 19:39,"263 Maple St, Austin, TX 73301" +281942,Lightning Charging Cable,1,14.95,11/08/19 18:18,"41 Center St, Boston, MA 02215" +281943,Google Phone,1,600,11/22/19 21:25,"501 Forest St, San Francisco, CA 94016" +281944,AAA Batteries (4-pack),1,2.99,11/25/19 00:24,"270 Forest St, New York City, NY 10001" +281945,20in Monitor,1,109.99,11/06/19 14:31,"638 Forest St, Dallas, TX 75001" +281946,USB-C Charging Cable,1,11.95,11/27/19 11:54,"799 1st St, San Francisco, CA 94016" +281947,Wired Headphones,1,11.99,11/10/19 14:21,"651 Forest St, Los Angeles, CA 90001" +281948,Vareebadd Phone,1,400,11/15/19 08:26,"334 4th St, Atlanta, GA 30301" +281948,Bose SoundSport Headphones,1,99.99,11/15/19 08:26,"334 4th St, Atlanta, GA 30301" +281949,34in Ultrawide Monitor,1,379.99,11/03/19 20:22,"42 Forest St, Austin, TX 73301" +281950,USB-C Charging Cable,1,11.95,11/01/19 10:23,"454 Center St, Los Angeles, CA 90001" +281950,USB-C Charging Cable,1,11.95,11/01/19 10:23,"454 Center St, Los Angeles, CA 90001" +281951,AAA Batteries (4-pack),1,2.99,11/16/19 14:13,"934 10th St, Atlanta, GA 30301" +281952,27in 4K Gaming Monitor,1,389.99,11/21/19 22:51,"18 Center St, San Francisco, CA 94016" +281953,iPhone,1,700,11/25/19 14:41,"705 12th St, Los Angeles, CA 90001" +281954,AA Batteries (4-pack),1,3.84,11/05/19 17:32,"532 Walnut St, Portland, OR 97035" +281955,AAA Batteries (4-pack),3,2.99,11/25/19 06:19,"908 Hickory St, Seattle, WA 98101" +281956,Lightning Charging Cable,1,14.95,11/16/19 17:00,"479 Jackson St, San Francisco, CA 94016" +281957,iPhone,1,700,11/26/19 17:14,"830 11th St, Los Angeles, CA 90001" +281958,USB-C Charging Cable,1,11.95,11/22/19 09:24,"509 Pine St, San Francisco, CA 94016" +281959,Wired Headphones,1,11.99,11/05/19 09:26,"349 Lake St, Boston, MA 02215" +281960,Apple Airpods Headphones,1,150,11/04/19 11:35,"637 Lakeview St, Los Angeles, CA 90001" +281961,AAA Batteries (4-pack),1,2.99,11/30/19 12:00,"329 River St, Seattle, WA 98101" +281962,20in Monitor,1,109.99,11/23/19 21:43,"42 Wilson St, San Francisco, CA 94016" +281963,27in 4K Gaming Monitor,1,389.99,11/21/19 17:26,"985 1st St, Los Angeles, CA 90001" +281964,Wired Headphones,1,11.99,11/02/19 11:31,"781 Dogwood St, Portland, ME 04101" +281965,Apple Airpods Headphones,1,150,11/11/19 16:40,"893 Church St, New York City, NY 10001" +281966,Apple Airpods Headphones,1,150,11/30/19 13:48,"311 Hill St, New York City, NY 10001" +281967,Flatscreen TV,1,300,11/28/19 10:59,"690 Jefferson St, Austin, TX 73301" +281968,Apple Airpods Headphones,1,150,11/21/19 14:40,"351 Madison St, Atlanta, GA 30301" +281969,Bose SoundSport Headphones,1,99.99,11/27/19 23:58,"60 Center St, Boston, MA 02215" +281970,AAA Batteries (4-pack),3,2.99,11/05/19 10:42,"399 Maple St, San Francisco, CA 94016" +281971,AAA Batteries (4-pack),1,2.99,11/12/19 10:29,"784 5th St, Boston, MA 02215" +281972,27in 4K Gaming Monitor,1,389.99,11/02/19 15:04,"339 13th St, San Francisco, CA 94016" +281973,Lightning Charging Cable,1,14.95,11/29/19 10:16,"463 Center St, San Francisco, CA 94016" +281974,Wired Headphones,1,11.99,11/10/19 09:31,"447 Lakeview St, Boston, MA 02215" +281975,iPhone,1,700,12/01/19 00:53,"283 River St, Boston, MA 02215" +281976,Bose SoundSport Headphones,1,99.99,11/27/19 07:10,"909 Lincoln St, Dallas, TX 75001" +281977,AA Batteries (4-pack),1,3.84,11/16/19 10:03,"125 4th St, San Francisco, CA 94016" +281978,iPhone,1,700,11/07/19 18:03,"759 2nd St, San Francisco, CA 94016" +281979,27in 4K Gaming Monitor,1,389.99,11/29/19 14:02,"483 11th St, Los Angeles, CA 90001" +281980,AA Batteries (4-pack),2,3.84,11/03/19 09:46,"360 Forest St, San Francisco, CA 94016" +281981,Lightning Charging Cable,1,14.95,11/11/19 14:50,"936 Hill St, New York City, NY 10001" +281982,20in Monitor,1,109.99,11/28/19 19:43,"426 Jefferson St, New York City, NY 10001" +281983,iPhone,1,700,11/26/19 10:13,"331 Washington St, San Francisco, CA 94016" +281984,AA Batteries (4-pack),1,3.84,11/06/19 11:44,"83 Jackson St, Dallas, TX 75001" +281985,USB-C Charging Cable,1,11.95,11/14/19 17:45,"349 Wilson St, New York City, NY 10001" +281986,USB-C Charging Cable,1,11.95,11/10/19 15:41,"636 Highland St, Seattle, WA 98101" +281987,Wired Headphones,1,11.99,11/10/19 12:01,"493 9th St, Los Angeles, CA 90001" +281988,AAA Batteries (4-pack),1,2.99,11/25/19 10:56,"538 Jefferson St, New York City, NY 10001" +281989,Bose SoundSport Headphones,1,99.99,11/22/19 10:27,"78 1st St, Atlanta, GA 30301" +281990,20in Monitor,1,109.99,11/30/19 08:40,"277 West St, San Francisco, CA 94016" +281991,USB-C Charging Cable,1,11.95,11/24/19 19:34,"832 Cherry St, Boston, MA 02215" +281992,AA Batteries (4-pack),1,3.84,11/12/19 22:15,"770 Church St, San Francisco, CA 94016" +281993,Google Phone,1,600,11/24/19 14:26,"914 Wilson St, New York City, NY 10001" +281993,USB-C Charging Cable,1,11.95,11/24/19 14:26,"914 Wilson St, New York City, NY 10001" +281994,Macbook Pro Laptop,1,1700,11/25/19 22:22,"700 Meadow St, New York City, NY 10001" +281995,Lightning Charging Cable,1,14.95,11/02/19 21:20,"506 Sunset St, Atlanta, GA 30301" +281996,27in FHD Monitor,1,149.99,11/06/19 20:51,"275 8th St, Los Angeles, CA 90001" +281997,iPhone,1,700,11/10/19 19:55,"618 Washington St, Los Angeles, CA 90001" +281998,USB-C Charging Cable,1,11.95,11/12/19 20:38,"829 12th St, New York City, NY 10001" +281999,Apple Airpods Headphones,1,150,11/21/19 10:14,"222 Main St, Dallas, TX 75001" +282000,Wired Headphones,1,11.99,11/23/19 21:35,"560 6th St, Austin, TX 73301" +282001,USB-C Charging Cable,2,11.95,11/15/19 12:16,"751 Adams St, Atlanta, GA 30301" +282002,AAA Batteries (4-pack),1,2.99,11/09/19 22:55,"494 Meadow St, Los Angeles, CA 90001" +282003,USB-C Charging Cable,1,11.95,11/03/19 03:08,"508 1st St, San Francisco, CA 94016" +282004,Lightning Charging Cable,1,14.95,11/06/19 09:44,"743 Chestnut St, Los Angeles, CA 90001" +282005,Apple Airpods Headphones,1,150,11/22/19 12:55,"313 2nd St, Boston, MA 02215" +282006,34in Ultrawide Monitor,1,379.99,11/18/19 09:45,"497 River St, Los Angeles, CA 90001" +282007,Bose SoundSport Headphones,1,99.99,11/27/19 10:06,"254 Jefferson St, Dallas, TX 75001" +282008,Apple Airpods Headphones,1,150,11/09/19 15:58,"842 North St, San Francisco, CA 94016" +282009,Wired Headphones,1,11.99,11/01/19 19:51,"91 South St, Atlanta, GA 30301" +282010,Apple Airpods Headphones,1,150,11/17/19 20:51,"786 4th St, Portland, OR 97035" +282011,Wired Headphones,1,11.99,11/14/19 19:16,"846 8th St, San Francisco, CA 94016" +282012,USB-C Charging Cable,1,11.95,11/25/19 16:37,"271 Walnut St, Dallas, TX 75001" +282013,Lightning Charging Cable,2,14.95,11/13/19 14:09,"878 Willow St, San Francisco, CA 94016" +282014,AA Batteries (4-pack),3,3.84,11/08/19 20:53,"280 Spruce St, New York City, NY 10001" +282015,20in Monitor,1,109.99,11/22/19 18:54,"199 2nd St, Los Angeles, CA 90001" +282016,Google Phone,1,600,11/13/19 20:57,"418 4th St, Seattle, WA 98101" +282017,34in Ultrawide Monitor,1,379.99,11/05/19 18:26,"347 Sunset St, Seattle, WA 98101" +282018,Bose SoundSport Headphones,1,99.99,11/17/19 11:33,"786 Church St, San Francisco, CA 94016" +282019,Apple Airpods Headphones,1,150,11/04/19 19:46,"197 8th St, Atlanta, GA 30301" +282020,27in FHD Monitor,1,149.99,11/20/19 21:45,"84 Hickory St, New York City, NY 10001" +282021,Google Phone,1,600,11/05/19 10:26,"789 West St, Boston, MA 02215" +282021,USB-C Charging Cable,1,11.95,11/05/19 10:26,"789 West St, Boston, MA 02215" +282021,Bose SoundSport Headphones,1,99.99,11/05/19 10:26,"789 West St, Boston, MA 02215" +282022,Lightning Charging Cable,1,14.95,11/17/19 14:06,"269 11th St, Boston, MA 02215" +282023,Lightning Charging Cable,1,14.95,11/20/19 12:30,"272 12th St, San Francisco, CA 94016" +282024,iPhone,1,700,11/10/19 10:33,"566 4th St, New York City, NY 10001" +282024,Wired Headphones,1,11.99,11/10/19 10:33,"566 4th St, New York City, NY 10001" +282025,AAA Batteries (4-pack),4,2.99,11/05/19 17:42,"19 Spruce St, San Francisco, CA 94016" +282026,AAA Batteries (4-pack),1,2.99,11/05/19 16:54,"52 Adams St, San Francisco, CA 94016" +282027,AAA Batteries (4-pack),1,2.99,11/06/19 12:32,"22 Ridge St, San Francisco, CA 94016" +282028,Bose SoundSport Headphones,1,99.99,11/22/19 20:58,"502 Adams St, Portland, OR 97035" +282029,AAA Batteries (4-pack),1,2.99,11/13/19 19:19,"817 14th St, Boston, MA 02215" +282030,USB-C Charging Cable,1,11.95,11/27/19 00:49,"360 Sunset St, Portland, OR 97035" +,,,,, +282031,ThinkPad Laptop,1,999.99,11/27/19 10:13,"983 South St, Seattle, WA 98101" +282032,USB-C Charging Cable,1,11.95,11/08/19 19:35,"690 West St, Portland, ME 04101" +282033,Wired Headphones,1,11.99,11/29/19 17:39,"305 Lake St, Los Angeles, CA 90001" +282034,Wired Headphones,1,11.99,11/29/19 13:29,"665 North St, Seattle, WA 98101" +282035,iPhone,1,700,11/12/19 10:55,"738 Forest St, San Francisco, CA 94016" +282035,Wired Headphones,1,11.99,11/12/19 10:55,"738 Forest St, San Francisco, CA 94016" +282036,Wired Headphones,1,11.99,11/05/19 13:26,"396 West St, Seattle, WA 98101" +282037,Wired Headphones,1,11.99,11/16/19 11:41,"385 Jackson St, Boston, MA 02215" +282038,AAA Batteries (4-pack),2,2.99,11/10/19 08:40,"627 5th St, Portland, OR 97035" +282039,Macbook Pro Laptop,1,1700,11/15/19 12:36,"402 Hickory St, San Francisco, CA 94016" +282040,Wired Headphones,1,11.99,11/02/19 03:18,"812 Chestnut St, Austin, TX 73301" +282041,Wired Headphones,1,11.99,11/04/19 11:45,"361 Center St, Boston, MA 02215" +282042,Google Phone,1,600,11/24/19 09:36,"909 6th St, Boston, MA 02215" +282043,27in 4K Gaming Monitor,1,389.99,11/25/19 15:55,"357 West St, Los Angeles, CA 90001" +282044,27in 4K Gaming Monitor,1,389.99,11/22/19 18:11,"374 10th St, Boston, MA 02215" +282045,Apple Airpods Headphones,1,150,11/02/19 19:48,"13 Lake St, New York City, NY 10001" +282046,Apple Airpods Headphones,1,150,11/06/19 13:01,"514 Elm St, San Francisco, CA 94016" +282047,Apple Airpods Headphones,1,150,11/23/19 19:57,"556 5th St, San Francisco, CA 94016" +282048,Wired Headphones,2,11.99,11/30/19 16:26,"597 Ridge St, San Francisco, CA 94016" +282049,Apple Airpods Headphones,1,150,11/29/19 23:26,"57 2nd St, Los Angeles, CA 90001" +282050,34in Ultrawide Monitor,1,379.99,11/01/19 19:53,"55 Maple St, Dallas, TX 75001" +282051,27in 4K Gaming Monitor,1,389.99,11/07/19 18:00,"607 1st St, New York City, NY 10001" +282052,Bose SoundSport Headphones,1,99.99,11/16/19 11:49,"628 12th St, New York City, NY 10001" +282053,27in 4K Gaming Monitor,1,389.99,11/10/19 21:45,"736 8th St, San Francisco, CA 94016" +282054,AA Batteries (4-pack),3,3.84,11/05/19 21:49,"174 Cedar St, Atlanta, GA 30301" +282055,20in Monitor,1,109.99,11/13/19 12:30,"930 River St, Los Angeles, CA 90001" +282056,20in Monitor,1,109.99,11/18/19 08:58,"46 Willow St, Boston, MA 02215" +282057,Wired Headphones,1,11.99,11/11/19 15:50,"299 Jackson St, Seattle, WA 98101" +282058,27in 4K Gaming Monitor,1,389.99,11/29/19 17:17,"746 Sunset St, New York City, NY 10001" +282059,Wired Headphones,1,11.99,11/24/19 14:20,"973 12th St, Los Angeles, CA 90001" +282060,20in Monitor,1,109.99,11/10/19 20:33,"744 Sunset St, Atlanta, GA 30301" +282061,USB-C Charging Cable,1,11.95,11/01/19 20:16,"222 Meadow St, San Francisco, CA 94016" +282062,Apple Airpods Headphones,1,150,11/17/19 11:57,"831 Pine St, San Francisco, CA 94016" +282063,iPhone,1,700,11/04/19 18:28,"472 Jefferson St, Boston, MA 02215" +282064,Wired Headphones,1,11.99,11/11/19 20:11,"438 14th St, Austin, TX 73301" +282065,AA Batteries (4-pack),1,3.84,11/15/19 18:21,"719 Pine St, Los Angeles, CA 90001" +282066,Lightning Charging Cable,1,14.95,11/07/19 19:19,"760 Main St, San Francisco, CA 94016" +282067,Lightning Charging Cable,1,14.95,11/07/19 18:17,"195 Hickory St, Boston, MA 02215" +282068,Apple Airpods Headphones,1,150,11/10/19 00:33,"997 Willow St, Los Angeles, CA 90001" +282069,34in Ultrawide Monitor,1,379.99,11/04/19 20:31,"681 Maple St, Los Angeles, CA 90001" +282070,Lightning Charging Cable,1,14.95,11/01/19 21:11,"501 5th St, San Francisco, CA 94016" +282071,Bose SoundSport Headphones,1,99.99,11/10/19 21:38,"829 12th St, Los Angeles, CA 90001" +282072,Wired Headphones,1,11.99,11/03/19 22:35,"876 Jackson St, Boston, MA 02215" +282073,iPhone,1,700,11/11/19 13:36,"806 Lincoln St, New York City, NY 10001" +282073,Lightning Charging Cable,1,14.95,11/11/19 13:36,"806 Lincoln St, New York City, NY 10001" +282074,Google Phone,1,600,11/29/19 16:21,"342 Ridge St, San Francisco, CA 94016" +282075,Google Phone,1,600,11/24/19 21:53,"71 Wilson St, Los Angeles, CA 90001" +282075,USB-C Charging Cable,1,11.95,11/24/19 21:53,"71 Wilson St, Los Angeles, CA 90001" +282076,27in 4K Gaming Monitor,1,389.99,11/25/19 23:26,"531 Forest St, San Francisco, CA 94016" +282077,USB-C Charging Cable,1,11.95,11/06/19 21:10,"17 Walnut St, New York City, NY 10001" +282078,AAA Batteries (4-pack),1,2.99,11/20/19 10:55,"60 Adams St, New York City, NY 10001" +282079,Lightning Charging Cable,1,14.95,11/08/19 08:55,"889 Meadow St, Seattle, WA 98101" +282080,AA Batteries (4-pack),1,3.84,11/23/19 11:35,"172 Johnson St, New York City, NY 10001" +282081,27in FHD Monitor,1,149.99,11/09/19 09:32,"437 Washington St, San Francisco, CA 94016" +282081,Wired Headphones,1,11.99,11/09/19 09:32,"437 Washington St, San Francisco, CA 94016" +282082,Bose SoundSport Headphones,1,99.99,11/17/19 16:31,"615 Church St, Austin, TX 73301" +282083,Wired Headphones,1,11.99,11/29/19 11:20,"130 14th St, Atlanta, GA 30301" +282084,Bose SoundSport Headphones,1,99.99,11/25/19 15:39,"596 Lake St, Los Angeles, CA 90001" +282085,Wired Headphones,1,11.99,11/09/19 08:12,"655 2nd St, San Francisco, CA 94016" +282086,AAA Batteries (4-pack),2,2.99,11/13/19 10:11,"358 Jefferson St, San Francisco, CA 94016" +282087,USB-C Charging Cable,1,11.95,11/28/19 10:58,"872 Park St, San Francisco, CA 94016" +282088,AAA Batteries (4-pack),4,2.99,11/13/19 15:48,"230 North St, New York City, NY 10001" +282089,AAA Batteries (4-pack),2,2.99,11/12/19 16:43,"927 Dogwood St, Los Angeles, CA 90001" +282090,Lightning Charging Cable,1,14.95,11/06/19 19:31,"853 Pine St, San Francisco, CA 94016" +282091,Apple Airpods Headphones,1,150,11/20/19 15:09,"850 Adams St, Dallas, TX 75001" +282092,AAA Batteries (4-pack),1,2.99,11/14/19 12:32,"254 Spruce St, Dallas, TX 75001" +282093,Apple Airpods Headphones,1,150,11/22/19 11:42,"200 Washington St, San Francisco, CA 94016" +282094,Flatscreen TV,1,300,11/09/19 19:57,"32 Highland St, Atlanta, GA 30301" +282095,Wired Headphones,1,11.99,11/23/19 20:11,"994 Center St, Boston, MA 02215" +282096,Lightning Charging Cable,1,14.95,11/09/19 12:08,"584 Elm St, San Francisco, CA 94016" +282097,34in Ultrawide Monitor,1,379.99,11/28/19 23:34,"143 Church St, San Francisco, CA 94016" +282098,AAA Batteries (4-pack),2,2.99,11/11/19 11:07,"289 Park St, Atlanta, GA 30301" +282099,Macbook Pro Laptop,1,1700,11/05/19 21:14,"695 Main St, San Francisco, CA 94016" +282100,Lightning Charging Cable,1,14.95,11/27/19 19:43,"593 8th St, Dallas, TX 75001" +282101,Vareebadd Phone,1,400,11/05/19 17:38,"578 Chestnut St, Portland, ME 04101" +282102,iPhone,1,700,11/02/19 21:10,"52 Chestnut St, San Francisco, CA 94016" +282102,Lightning Charging Cable,1,14.95,11/02/19 21:10,"52 Chestnut St, San Francisco, CA 94016" +282103,27in 4K Gaming Monitor,1,389.99,11/28/19 16:52,"768 Sunset St, New York City, NY 10001" +282104,Bose SoundSport Headphones,1,99.99,11/20/19 17:24,"372 Jefferson St, Boston, MA 02215" +282105,Macbook Pro Laptop,1,1700,11/24/19 15:14,"224 11th St, Atlanta, GA 30301" +282106,20in Monitor,1,109.99,11/30/19 10:51,"111 Jackson St, Los Angeles, CA 90001" +282107,AA Batteries (4-pack),1,3.84,11/12/19 00:07,"379 Lakeview St, Portland, OR 97035" +282108,AAA Batteries (4-pack),2,2.99,11/30/19 15:45,"886 Ridge St, Boston, MA 02215" +282109,27in 4K Gaming Monitor,1,389.99,11/25/19 12:53,"574 Chestnut St, San Francisco, CA 94016" +282110,Apple Airpods Headphones,1,150,11/13/19 15:42,"349 13th St, Austin, TX 73301" +282111,Wired Headphones,2,11.99,11/10/19 18:22,"352 10th St, Seattle, WA 98101" +282112,USB-C Charging Cable,1,11.95,11/18/19 15:29,"466 Cedar St, Atlanta, GA 30301" +282113,Macbook Pro Laptop,1,1700,11/08/19 11:11,"768 Jefferson St, Seattle, WA 98101" +282114,AA Batteries (4-pack),3,3.84,11/03/19 10:48,"285 1st St, Boston, MA 02215" +282115,AA Batteries (4-pack),1,3.84,11/21/19 18:07,"603 7th St, Boston, MA 02215" +282116,USB-C Charging Cable,1,11.95,11/05/19 18:27,"350 Johnson St, San Francisco, CA 94016" +282117,Lightning Charging Cable,2,14.95,12/01/19 00:02,"257 Wilson St, San Francisco, CA 94016" +282118,AA Batteries (4-pack),1,3.84,11/25/19 15:12,"544 7th St, Dallas, TX 75001" +282119,USB-C Charging Cable,1,11.95,11/01/19 15:21,"167 6th St, New York City, NY 10001" +282120,34in Ultrawide Monitor,1,379.99,11/29/19 14:47,"465 Dogwood St, Boston, MA 02215" +282121,Lightning Charging Cable,1,14.95,11/25/19 19:22,"441 Madison St, San Francisco, CA 94016" +282122,Wired Headphones,1,11.99,11/08/19 18:41,"583 9th St, Seattle, WA 98101" +282123,Lightning Charging Cable,1,14.95,11/19/19 13:59,"535 Lake St, Boston, MA 02215" +282124,USB-C Charging Cable,1,11.95,11/27/19 09:36,"57 South St, Boston, MA 02215" +282125,27in FHD Monitor,1,149.99,11/11/19 16:13,"833 Chestnut St, Boston, MA 02215" +282126,Apple Airpods Headphones,1,150,11/20/19 11:40,"665 Park St, Los Angeles, CA 90001" +282127,34in Ultrawide Monitor,1,379.99,11/04/19 23:12,"246 Sunset St, Dallas, TX 75001" +282128,Vareebadd Phone,1,400,11/05/19 09:54,"194 Wilson St, San Francisco, CA 94016" +282129,USB-C Charging Cable,1,11.95,11/09/19 12:54,"504 Hill St, Austin, TX 73301" +282130,AA Batteries (4-pack),1,3.84,11/25/19 16:46,"543 Jefferson St, Los Angeles, CA 90001" +282131,Google Phone,1,600,11/23/19 18:06,"886 8th St, Austin, TX 73301" +282132,Bose SoundSport Headphones,1,99.99,11/05/19 15:24,"67 Jackson St, Los Angeles, CA 90001" +282133,34in Ultrawide Monitor,1,379.99,11/01/19 10:31,"806 Cherry St, New York City, NY 10001" +282134,USB-C Charging Cable,1,11.95,11/12/19 23:40,"276 2nd St, San Francisco, CA 94016" +282135,27in FHD Monitor,1,149.99,11/28/19 14:41,"622 Center St, Los Angeles, CA 90001" +282136,AAA Batteries (4-pack),1,2.99,11/18/19 10:35,"774 6th St, Boston, MA 02215" +282137,Bose SoundSport Headphones,1,99.99,11/12/19 16:52,"450 9th St, Boston, MA 02215" +282138,AA Batteries (4-pack),1,3.84,11/29/19 19:23,"111 Johnson St, Atlanta, GA 30301" +282139,Bose SoundSport Headphones,1,99.99,11/04/19 00:42,"426 Lincoln St, Los Angeles, CA 90001" +282140,USB-C Charging Cable,2,11.95,11/07/19 13:42,"294 5th St, San Francisco, CA 94016" +282141,USB-C Charging Cable,1,11.95,11/02/19 22:02,"396 Church St, San Francisco, CA 94016" +282142,iPhone,1,700,11/29/19 13:46,"475 Elm St, Portland, OR 97035" +282143,USB-C Charging Cable,2,11.95,11/01/19 22:57,"551 Lincoln St, Austin, TX 73301" +282144,AAA Batteries (4-pack),2,2.99,11/06/19 09:50,"624 West St, Dallas, TX 75001" +282145,Wired Headphones,1,11.99,11/30/19 12:56,"7 6th St, Dallas, TX 75001" +282146,27in 4K Gaming Monitor,1,389.99,11/06/19 16:06,"568 11th St, New York City, NY 10001" +282147,USB-C Charging Cable,1,11.95,11/05/19 13:43,"168 Cherry St, New York City, NY 10001" +282148,AAA Batteries (4-pack),1,2.99,11/18/19 12:03,"879 2nd St, New York City, NY 10001" +282149,Bose SoundSport Headphones,1,99.99,11/19/19 12:57,"369 Meadow St, New York City, NY 10001" +282150,AA Batteries (4-pack),1,3.84,11/01/19 09:41,"284 Park St, Boston, MA 02215" +282151,USB-C Charging Cable,1,11.95,11/10/19 08:40,"638 Chestnut St, Los Angeles, CA 90001" +282152,Wired Headphones,1,11.99,11/02/19 20:10,"859 Adams St, San Francisco, CA 94016" +282153,AAA Batteries (4-pack),2,2.99,11/17/19 10:15,"774 River St, Los Angeles, CA 90001" +282154,Lightning Charging Cable,1,14.95,11/22/19 23:08,"462 Elm St, Atlanta, GA 30301" +282155,Lightning Charging Cable,1,14.95,11/15/19 08:43,"910 7th St, Los Angeles, CA 90001" +282156,USB-C Charging Cable,1,11.95,11/07/19 21:32,"262 Main St, New York City, NY 10001" +282157,Lightning Charging Cable,1,14.95,11/20/19 15:03,"632 Lincoln St, Los Angeles, CA 90001" +282158,USB-C Charging Cable,1,11.95,11/10/19 19:39,"370 Sunset St, San Francisco, CA 94016" +282159,AA Batteries (4-pack),1,3.84,11/20/19 13:57,"474 Jackson St, Los Angeles, CA 90001" +282160,Apple Airpods Headphones,1,150,11/27/19 21:05,"503 Hickory St, Los Angeles, CA 90001" +282161,27in FHD Monitor,1,149.99,11/08/19 21:53,"102 Hill St, Portland, OR 97035" +282162,Wired Headphones,1,11.99,11/06/19 14:15,"76 Church St, New York City, NY 10001" +282163,Lightning Charging Cable,2,14.95,11/20/19 20:13,"549 Main St, San Francisco, CA 94016" +282164,Apple Airpods Headphones,1,150,11/02/19 16:00,"349 Sunset St, Los Angeles, CA 90001" +282165,Google Phone,1,600,11/21/19 11:59,"40 1st St, New York City, NY 10001" +282166,Wired Headphones,1,11.99,11/08/19 14:59,"163 Lake St, Portland, OR 97035" +282167,LG Dryer,1,600.0,11/22/19 12:51,"337 12th St, Austin, TX 73301" +282168,Lightning Charging Cable,1,14.95,11/20/19 14:07,"114 Cherry St, San Francisco, CA 94016" +282168,Apple Airpods Headphones,1,150,11/20/19 14:07,"114 Cherry St, San Francisco, CA 94016" +282169,Bose SoundSport Headphones,1,99.99,11/08/19 09:44,"938 South St, New York City, NY 10001" +282170,Lightning Charging Cable,1,14.95,11/02/19 12:30,"502 Lincoln St, Los Angeles, CA 90001" +282171,Lightning Charging Cable,1,14.95,11/26/19 08:32,"668 9th St, Los Angeles, CA 90001" +282172,Wired Headphones,2,11.99,11/13/19 00:25,"767 Johnson St, San Francisco, CA 94016" +282173,USB-C Charging Cable,1,11.95,11/14/19 18:01,"664 Forest St, Dallas, TX 75001" +282174,Bose SoundSport Headphones,1,99.99,11/02/19 06:58,"486 Jackson St, Dallas, TX 75001" +282175,AAA Batteries (4-pack),1,2.99,11/26/19 18:35,"112 Dogwood St, San Francisco, CA 94016" +282176,34in Ultrawide Monitor,1,379.99,11/14/19 19:15,"704 Jackson St, Austin, TX 73301" +282177,Wired Headphones,1,11.99,11/14/19 09:34,"406 Park St, Los Angeles, CA 90001" +282178,Lightning Charging Cable,1,14.95,11/06/19 22:01,"189 13th St, San Francisco, CA 94016" +282179,27in FHD Monitor,1,149.99,11/20/19 13:12,"696 Jackson St, New York City, NY 10001" +282180,Apple Airpods Headphones,1,150,11/16/19 19:07,"934 Highland St, Boston, MA 02215" +282181,USB-C Charging Cable,1,11.95,11/12/19 16:18,"959 14th St, Portland, OR 97035" +282182,Macbook Pro Laptop,1,1700,11/21/19 10:45,"565 Hickory St, San Francisco, CA 94016" +282183,USB-C Charging Cable,1,11.95,11/08/19 20:45,"320 West St, New York City, NY 10001" +282184,Lightning Charging Cable,1,14.95,11/01/19 12:28,"262 Cherry St, Boston, MA 02215" +282185,Bose SoundSport Headphones,1,99.99,11/27/19 19:42,"834 Wilson St, New York City, NY 10001" +282186,Lightning Charging Cable,1,14.95,11/04/19 22:33,"415 Lakeview St, Austin, TX 73301" +282187,Macbook Pro Laptop,1,1700,11/30/19 15:41,"128 12th St, San Francisco, CA 94016" +282187,AAA Batteries (4-pack),1,2.99,11/30/19 15:41,"128 12th St, San Francisco, CA 94016" +282188,20in Monitor,1,109.99,11/23/19 08:29,"237 Highland St, New York City, NY 10001" +282189,USB-C Charging Cable,1,11.95,11/01/19 08:32,"760 6th St, Atlanta, GA 30301" +282190,Bose SoundSport Headphones,1,99.99,11/18/19 12:08,"686 West St, San Francisco, CA 94016" +282191,USB-C Charging Cable,1,11.95,11/08/19 10:57,"416 Willow St, San Francisco, CA 94016" +282192,Wired Headphones,1,11.99,11/23/19 14:33,"858 Johnson St, Seattle, WA 98101" +282193,Apple Airpods Headphones,1,150,11/13/19 14:13,"203 Adams St, Los Angeles, CA 90001" +282194,USB-C Charging Cable,1,11.95,11/12/19 16:33,"818 Wilson St, San Francisco, CA 94016" +282195,Lightning Charging Cable,2,14.95,11/28/19 18:26,"759 2nd St, Boston, MA 02215" +282196,AA Batteries (4-pack),1,3.84,11/23/19 14:57,"773 Sunset St, Los Angeles, CA 90001" +282197,Apple Airpods Headphones,1,150,11/05/19 16:10,"425 12th St, Boston, MA 02215" +282198,USB-C Charging Cable,1,11.95,11/21/19 22:40,"108 Park St, Seattle, WA 98101" +282199,Bose SoundSport Headphones,1,99.99,11/25/19 13:29,"283 Jackson St, Los Angeles, CA 90001" +282200,AA Batteries (4-pack),1,3.84,11/07/19 16:09,"130 Adams St, Seattle, WA 98101" +282201,34in Ultrawide Monitor,1,379.99,11/22/19 07:44,"159 North St, New York City, NY 10001" +282202,Wired Headphones,1,11.99,11/08/19 20:54,"897 14th St, Dallas, TX 75001" +282203,Apple Airpods Headphones,1,150,11/11/19 14:53,"816 Forest St, San Francisco, CA 94016" +282204,AAA Batteries (4-pack),5,2.99,11/12/19 19:39,"944 8th St, Portland, OR 97035" +282205,USB-C Charging Cable,1,11.95,11/10/19 10:33,"907 Washington St, Los Angeles, CA 90001" +282206,ThinkPad Laptop,1,999.99,11/23/19 16:48,"908 Madison St, San Francisco, CA 94016" +282207,USB-C Charging Cable,2,11.95,11/16/19 18:02,"139 Washington St, New York City, NY 10001" +282207,Google Phone,1,600,11/16/19 18:02,"139 Washington St, New York City, NY 10001" +282208,Apple Airpods Headphones,1,150,11/26/19 12:08,"674 13th St, San Francisco, CA 94016" +282209,34in Ultrawide Monitor,1,379.99,11/26/19 09:59,"831 West St, Boston, MA 02215" +282210,Wired Headphones,1,11.99,11/15/19 12:32,"436 North St, New York City, NY 10001" +282211,Google Phone,1,600,11/02/19 12:31,"843 North St, Seattle, WA 98101" +282212,Lightning Charging Cable,1,14.95,11/09/19 21:50,"708 Walnut St, San Francisco, CA 94016" +282213,27in FHD Monitor,1,149.99,11/19/19 11:58,"996 Pine St, Atlanta, GA 30301" +282214,27in FHD Monitor,1,149.99,11/20/19 14:35,"799 Hill St, Los Angeles, CA 90001" +282215,iPhone,1,700,11/08/19 13:04,"935 Willow St, Boston, MA 02215" +282216,Wired Headphones,1,11.99,11/03/19 12:21,"527 Sunset St, Boston, MA 02215" +282217,iPhone,1,700,11/11/19 09:08,"69 6th St, Los Angeles, CA 90001" +282218,Bose SoundSport Headphones,1,99.99,11/21/19 13:16,"408 Madison St, Dallas, TX 75001" +282219,AA Batteries (4-pack),1,3.84,11/03/19 11:35,"352 Washington St, San Francisco, CA 94016" +282220,27in FHD Monitor,1,149.99,11/18/19 10:18,"993 4th St, New York City, NY 10001" +282221,AAA Batteries (4-pack),2,2.99,11/10/19 16:41,"156 9th St, Atlanta, GA 30301" +282222,34in Ultrawide Monitor,1,379.99,11/03/19 08:30,"737 Lincoln St, San Francisco, CA 94016" +282223,AAA Batteries (4-pack),1,2.99,11/25/19 23:16,"207 8th St, Portland, OR 97035" +282224,AAA Batteries (4-pack),1,2.99,11/02/19 12:14,"380 Hill St, San Francisco, CA 94016" +282225,AAA Batteries (4-pack),2,2.99,11/03/19 15:18,"85 Main St, New York City, NY 10001" +282226,Bose SoundSport Headphones,1,99.99,11/11/19 17:46,"608 12th St, Los Angeles, CA 90001" +282227,Lightning Charging Cable,1,14.95,11/21/19 20:56,"986 Elm St, Los Angeles, CA 90001" +282228,USB-C Charging Cable,1,11.95,11/28/19 11:55,"58 7th St, Los Angeles, CA 90001" +282229,Apple Airpods Headphones,1,150,11/19/19 07:32,"849 Lakeview St, Dallas, TX 75001" +282230,iPhone,1,700,11/15/19 15:21,"175 10th St, New York City, NY 10001" +282230,Lightning Charging Cable,1,14.95,11/15/19 15:21,"175 10th St, New York City, NY 10001" +282231,Apple Airpods Headphones,1,150,11/25/19 23:12,"669 Dogwood St, San Francisco, CA 94016" +282232,ThinkPad Laptop,1,999.99,11/08/19 21:52,"323 Hill St, New York City, NY 10001" +282233,Wired Headphones,1,11.99,11/09/19 12:15,"886 Meadow St, Atlanta, GA 30301" +282234,Lightning Charging Cable,1,14.95,11/02/19 10:56,"15 Lake St, Los Angeles, CA 90001" +282235,AA Batteries (4-pack),2,3.84,11/28/19 12:13,"925 Cedar St, San Francisco, CA 94016" +282236,Lightning Charging Cable,1,14.95,11/14/19 14:31,"532 1st St, Los Angeles, CA 90001" +282237,27in FHD Monitor,1,149.99,11/23/19 05:08,"698 Cherry St, San Francisco, CA 94016" +282238,Bose SoundSport Headphones,1,99.99,11/24/19 13:57,"988 Jackson St, San Francisco, CA 94016" +282239,USB-C Charging Cable,1,11.95,11/08/19 01:26,"859 14th St, San Francisco, CA 94016" +282240,Wired Headphones,1,11.99,11/22/19 10:13,"789 1st St, Seattle, WA 98101" +282240,Lightning Charging Cable,1,14.95,11/22/19 10:13,"789 1st St, Seattle, WA 98101" +282241,Lightning Charging Cable,1,14.95,11/28/19 21:34,"155 2nd St, Seattle, WA 98101" +282242,iPhone,1,700,11/21/19 14:31,"263 10th St, New York City, NY 10001" +282243,AAA Batteries (4-pack),6,2.99,11/24/19 18:35,"102 Lake St, New York City, NY 10001" +282244,Lightning Charging Cable,1,14.95,11/03/19 23:28,"222 Elm St, Boston, MA 02215" +282245,AA Batteries (4-pack),1,3.84,11/12/19 09:35,"316 7th St, New York City, NY 10001" +282246,AA Batteries (4-pack),1,3.84,11/18/19 12:08,"792 7th St, Portland, OR 97035" +282247,Macbook Pro Laptop,1,1700,11/12/19 09:52,"240 Willow St, New York City, NY 10001" +282248,27in FHD Monitor,1,149.99,11/13/19 15:42,"799 6th St, Portland, OR 97035" +282249,34in Ultrawide Monitor,1,379.99,11/17/19 21:31,"145 Washington St, San Francisco, CA 94016" +282250,AAA Batteries (4-pack),1,2.99,11/16/19 08:14,"465 11th St, Portland, OR 97035" +282251,AAA Batteries (4-pack),3,2.99,11/19/19 21:21,"130 Washington St, New York City, NY 10001" +282252,27in FHD Monitor,1,149.99,11/05/19 23:07,"464 Hill St, Boston, MA 02215" +282253,27in FHD Monitor,1,149.99,11/12/19 19:03,"983 Adams St, New York City, NY 10001" +282254,AAA Batteries (4-pack),1,2.99,11/11/19 04:33,"37 Pine St, Los Angeles, CA 90001" +282254,Bose SoundSport Headphones,1,99.99,11/11/19 04:33,"37 Pine St, Los Angeles, CA 90001" +282255,Google Phone,1,600,11/16/19 20:12,"319 Elm St, San Francisco, CA 94016" +282256,AAA Batteries (4-pack),1,2.99,11/26/19 20:02,"476 Pine St, Los Angeles, CA 90001" +282257,Apple Airpods Headphones,1,150,11/21/19 21:55,"95 Highland St, San Francisco, CA 94016" +282258,Wired Headphones,1,11.99,11/17/19 19:07,"526 5th St, Seattle, WA 98101" +282259,34in Ultrawide Monitor,1,379.99,11/21/19 23:38,"942 14th St, Austin, TX 73301" +282259,ThinkPad Laptop,1,999.99,11/21/19 23:38,"942 14th St, Austin, TX 73301" +282260,34in Ultrawide Monitor,1,379.99,11/17/19 21:05,"651 River St, Seattle, WA 98101" +282261,USB-C Charging Cable,1,11.95,11/14/19 12:22,"221 Meadow St, Portland, ME 04101" +282262,Wired Headphones,1,11.99,11/24/19 14:34,"635 Ridge St, Los Angeles, CA 90001" +282263,Lightning Charging Cable,1,14.95,11/11/19 21:22,"203 Wilson St, New York City, NY 10001" +282264,Lightning Charging Cable,1,14.95,11/03/19 18:27,"661 4th St, Los Angeles, CA 90001" +282265,Lightning Charging Cable,1,14.95,11/20/19 09:59,"402 Church St, Atlanta, GA 30301" +282266,Apple Airpods Headphones,1,150,11/30/19 00:26,"827 1st St, Los Angeles, CA 90001" +282267,34in Ultrawide Monitor,1,379.99,11/16/19 08:36,"933 Ridge St, San Francisco, CA 94016" +282268,Lightning Charging Cable,1,14.95,11/14/19 06:49,"636 6th St, Seattle, WA 98101" +282269,Lightning Charging Cable,1,14.95,11/05/19 01:35,"778 Jefferson St, San Francisco, CA 94016" +282270,Macbook Pro Laptop,1,1700,11/04/19 20:49,"502 Wilson St, San Francisco, CA 94016" +282271,Wired Headphones,1,11.99,11/18/19 01:05,"823 Jackson St, Los Angeles, CA 90001" +282272,AAA Batteries (4-pack),1,2.99,11/22/19 13:40,"903 Chestnut St, New York City, NY 10001" +282273,Apple Airpods Headphones,1,150,11/11/19 17:06,"842 Forest St, San Francisco, CA 94016" +282274,AA Batteries (4-pack),1,3.84,11/29/19 16:22,"949 2nd St, San Francisco, CA 94016" +282275,27in 4K Gaming Monitor,1,389.99,11/19/19 09:05,"418 West St, Austin, TX 73301" +282276,AAA Batteries (4-pack),3,2.99,11/24/19 11:03,"434 8th St, Austin, TX 73301" +282277,USB-C Charging Cable,1,11.95,11/01/19 09:43,"813 Hickory St, New York City, NY 10001" +,,,,, +282278,Lightning Charging Cable,1,14.95,11/27/19 10:14,"562 5th St, New York City, NY 10001" +282279,Macbook Pro Laptop,1,1700,11/20/19 19:11,"133 River St, Dallas, TX 75001" +282280,Macbook Pro Laptop,1,1700,11/01/19 21:35,"933 Church St, Los Angeles, CA 90001" +282281,Apple Airpods Headphones,1,150,11/10/19 18:57,"451 Chestnut St, Seattle, WA 98101" +282282,Apple Airpods Headphones,1,150,11/08/19 17:24,"881 7th St, Los Angeles, CA 90001" +282283,Bose SoundSport Headphones,1,99.99,11/03/19 19:04,"831 Highland St, New York City, NY 10001" +282284,AAA Batteries (4-pack),1,2.99,11/05/19 21:46,"305 8th St, San Francisco, CA 94016" +282285,iPhone,1,700,11/22/19 23:01,"774 Cedar St, Los Angeles, CA 90001" +282285,Lightning Charging Cable,1,14.95,11/22/19 23:01,"774 Cedar St, Los Angeles, CA 90001" +282286,Lightning Charging Cable,1,14.95,11/13/19 19:34,"951 1st St, New York City, NY 10001" +282287,Lightning Charging Cable,1,14.95,11/23/19 19:29,"771 6th St, San Francisco, CA 94016" +282288,iPhone,1,700,11/09/19 09:58,"567 Sunset St, Los Angeles, CA 90001" +282289,USB-C Charging Cable,1,11.95,11/26/19 13:59,"910 Elm St, Atlanta, GA 30301" +282290,27in FHD Monitor,1,149.99,11/25/19 10:21,"134 Adams St, New York City, NY 10001" +282291,USB-C Charging Cable,1,11.95,11/05/19 15:30,"771 1st St, Los Angeles, CA 90001" +282292,Wired Headphones,1,11.99,11/05/19 14:31,"101 4th St, New York City, NY 10001" +282293,Wired Headphones,1,11.99,11/12/19 18:58,"886 9th St, New York City, NY 10001" +282294,Bose SoundSport Headphones,1,99.99,11/26/19 10:15,"237 Lake St, Seattle, WA 98101" +282295,Lightning Charging Cable,1,14.95,11/25/19 11:39,"395 Lincoln St, New York City, NY 10001" +282296,Google Phone,1,600,11/08/19 21:20,"373 Ridge St, Austin, TX 73301" +282296,USB-C Charging Cable,1,11.95,11/08/19 21:20,"373 Ridge St, Austin, TX 73301" +282297,AAA Batteries (4-pack),4,2.99,11/27/19 09:51,"847 11th St, New York City, NY 10001" +282298,Google Phone,1,600,11/15/19 18:07,"994 Chestnut St, San Francisco, CA 94016" +282299,LG Dryer,1,600.0,11/16/19 09:48,"600 Sunset St, Boston, MA 02215" +282300,iPhone,1,700,11/11/19 11:23,"713 9th St, San Francisco, CA 94016" +282301,27in FHD Monitor,1,149.99,11/01/19 12:26,"695 Walnut St, Austin, TX 73301" +282302,Apple Airpods Headphones,1,150,11/18/19 06:55,"145 Spruce St, Dallas, TX 75001" +282303,Google Phone,1,600,11/26/19 14:27,"931 Washington St, New York City, NY 10001" +282303,USB-C Charging Cable,1,11.95,11/26/19 14:27,"931 Washington St, New York City, NY 10001" +282304,Lightning Charging Cable,1,14.95,11/23/19 15:42,"33 Adams St, Boston, MA 02215" +282305,USB-C Charging Cable,1,11.95,11/14/19 22:04,"344 Church St, New York City, NY 10001" +282306,AAA Batteries (4-pack),1,2.99,11/21/19 18:36,"617 Washington St, Dallas, TX 75001" +282307,LG Washing Machine,1,600.0,11/19/19 23:15,"528 West St, Los Angeles, CA 90001" +282308,Apple Airpods Headphones,1,150,11/07/19 09:22,"349 Chestnut St, San Francisco, CA 94016" +282309,Macbook Pro Laptop,1,1700,11/20/19 16:52,"845 10th St, San Francisco, CA 94016" +282310,AAA Batteries (4-pack),4,2.99,11/28/19 16:04,"22 Dogwood St, San Francisco, CA 94016" +282311,ThinkPad Laptop,1,999.99,11/04/19 12:12,"118 13th St, San Francisco, CA 94016" +282312,USB-C Charging Cable,1,11.95,11/25/19 14:39,"68 River St, San Francisco, CA 94016" +282313,20in Monitor,1,109.99,11/05/19 16:18,"343 Chestnut St, San Francisco, CA 94016" +282314,Wired Headphones,1,11.99,11/27/19 18:08,"903 Walnut St, New York City, NY 10001" +282315,Macbook Pro Laptop,1,1700,11/28/19 01:45,"352 5th St, Austin, TX 73301" +282316,Vareebadd Phone,1,400,11/24/19 22:02,"968 Hill St, Portland, OR 97035" +282317,Google Phone,1,600,11/04/19 12:35,"69 14th St, San Francisco, CA 94016" +282318,27in 4K Gaming Monitor,1,389.99,11/29/19 22:26,"775 Hickory St, San Francisco, CA 94016" +282319,AAA Batteries (4-pack),2,2.99,11/24/19 21:36,"203 Sunset St, Boston, MA 02215" +282320,Lightning Charging Cable,1,14.95,11/02/19 19:06,"12 Walnut St, San Francisco, CA 94016" +282321,USB-C Charging Cable,1,11.95,11/28/19 19:24,"234 Maple St, Los Angeles, CA 90001" +282322,Google Phone,1,600,11/20/19 01:13,"934 Spruce St, Boston, MA 02215" +282323,Bose SoundSport Headphones,1,99.99,11/05/19 13:53,"437 Sunset St, San Francisco, CA 94016" +282324,Apple Airpods Headphones,1,150,11/11/19 00:17,"180 Hickory St, Los Angeles, CA 90001" +282325,34in Ultrawide Monitor,1,379.99,11/06/19 12:17,"114 River St, Los Angeles, CA 90001" +282326,USB-C Charging Cable,1,11.95,11/26/19 20:00,"771 Chestnut St, Seattle, WA 98101" +282327,Macbook Pro Laptop,1,1700,11/08/19 15:17,"352 Lake St, Los Angeles, CA 90001" +282328,AA Batteries (4-pack),2,3.84,11/18/19 16:28,"290 Sunset St, New York City, NY 10001" +282329,Wired Headphones,1,11.99,11/17/19 18:50,"712 Cherry St, Los Angeles, CA 90001" +282330,34in Ultrawide Monitor,1,379.99,11/01/19 17:32,"360 Willow St, Seattle, WA 98101" +282331,Flatscreen TV,1,300,11/21/19 13:24,"83 Walnut St, Portland, OR 97035" +282332,Wired Headphones,1,11.99,11/24/19 14:45,"381 Lakeview St, San Francisco, CA 94016" +282333,20in Monitor,1,109.99,11/10/19 20:33,"280 Main St, San Francisco, CA 94016" +282334,AAA Batteries (4-pack),2,2.99,11/16/19 12:32,"617 Highland St, Dallas, TX 75001" +282335,Google Phone,1,600,11/15/19 11:38,"703 Willow St, Dallas, TX 75001" +282336,Flatscreen TV,1,300,11/12/19 16:26,"372 4th St, Dallas, TX 75001" +282337,AAA Batteries (4-pack),1,2.99,11/01/19 15:46,"275 Cedar St, Boston, MA 02215" +282338,AA Batteries (4-pack),1,3.84,11/28/19 18:31,"369 7th St, Portland, ME 04101" +282339,Flatscreen TV,1,300,11/01/19 14:55,"220 2nd St, Boston, MA 02215" +282340,AAA Batteries (4-pack),1,2.99,11/08/19 19:33,"970 8th St, Portland, OR 97035" +282341,27in 4K Gaming Monitor,1,389.99,11/24/19 22:10,"444 Elm St, Boston, MA 02215" +282342,LG Washing Machine,1,600.0,11/04/19 17:57,"992 Spruce St, Austin, TX 73301" +282343,AAA Batteries (4-pack),1,2.99,11/01/19 15:28,"554 11th St, Boston, MA 02215" +282344,Apple Airpods Headphones,1,150,11/23/19 23:27,"931 Adams St, New York City, NY 10001" +282345,Wired Headphones,1,11.99,11/02/19 22:13,"2 1st St, New York City, NY 10001" +282346,27in 4K Gaming Monitor,1,389.99,11/06/19 07:37,"23 Pine St, Seattle, WA 98101" +282347,USB-C Charging Cable,1,11.95,11/17/19 08:21,"461 1st St, Boston, MA 02215" +282348,Lightning Charging Cable,1,14.95,11/05/19 15:18,"184 Lake St, Seattle, WA 98101" +282349,Google Phone,1,600,11/24/19 21:11,"316 Highland St, Boston, MA 02215" +282350,34in Ultrawide Monitor,1,379.99,11/15/19 22:33,"382 Cedar St, New York City, NY 10001" +282351,USB-C Charging Cable,1,11.95,11/08/19 07:37,"346 13th St, San Francisco, CA 94016" +282352,27in 4K Gaming Monitor,1,389.99,11/13/19 08:04,"523 Cedar St, Atlanta, GA 30301" +282353,Apple Airpods Headphones,1,150,11/17/19 20:52,"861 1st St, San Francisco, CA 94016" +282354,Lightning Charging Cable,1,14.95,11/26/19 12:04,"259 River St, San Francisco, CA 94016" +282355,USB-C Charging Cable,1,11.95,11/02/19 21:45,"961 14th St, New York City, NY 10001" +282356,Google Phone,1,600,11/30/19 21:35,"985 Walnut St, Boston, MA 02215" +282356,Wired Headphones,1,11.99,11/30/19 21:35,"985 Walnut St, Boston, MA 02215" +282357,Apple Airpods Headphones,1,150,11/23/19 20:42,"623 Willow St, Los Angeles, CA 90001" +282357,Google Phone,1,600,11/23/19 20:42,"623 Willow St, Los Angeles, CA 90001" +282358,AAA Batteries (4-pack),1,2.99,11/11/19 13:30,"880 10th St, New York City, NY 10001" +282359,AAA Batteries (4-pack),1,2.99,11/12/19 21:49,"853 Hill St, Austin, TX 73301" +282360,Wired Headphones,1,11.99,11/08/19 23:08,"261 Jefferson St, San Francisco, CA 94016" +282361,20in Monitor,1,109.99,11/03/19 10:20,"657 River St, Los Angeles, CA 90001" +282362,20in Monitor,1,109.99,11/09/19 10:02,"734 Meadow St, San Francisco, CA 94016" +282363,Apple Airpods Headphones,1,150,11/15/19 11:39,"716 Pine St, Los Angeles, CA 90001" +282364,Apple Airpods Headphones,1,150,11/03/19 14:42,"690 Sunset St, Seattle, WA 98101" +282365,AAA Batteries (4-pack),1,2.99,11/06/19 17:00,"330 North St, San Francisco, CA 94016" +282366,AA Batteries (4-pack),1,3.84,11/24/19 13:37,"454 2nd St, Dallas, TX 75001" +282366,Bose SoundSport Headphones,1,99.99,11/24/19 13:37,"454 2nd St, Dallas, TX 75001" +282367,20in Monitor,1,109.99,11/27/19 12:06,"753 North St, Boston, MA 02215" +282368,AAA Batteries (4-pack),2,2.99,11/01/19 11:26,"193 Center St, Austin, TX 73301" +282369,Wired Headphones,1,11.99,11/30/19 11:04,"112 7th St, Los Angeles, CA 90001" +282370,27in FHD Monitor,1,149.99,11/17/19 09:51,"666 Church St, Boston, MA 02215" +282371,AA Batteries (4-pack),4,3.84,11/09/19 17:20,"431 Willow St, Boston, MA 02215" +282372,27in FHD Monitor,1,149.99,11/29/19 15:00,"813 Maple St, Dallas, TX 75001" +282373,AA Batteries (4-pack),1,3.84,11/06/19 22:31,"263 11th St, New York City, NY 10001" +282374,Lightning Charging Cable,1,14.95,11/21/19 08:06,"685 Spruce St, Dallas, TX 75001" +282375,USB-C Charging Cable,2,11.95,11/07/19 22:37,"466 7th St, Los Angeles, CA 90001" +282376,Apple Airpods Headphones,1,150,11/09/19 23:27,"446 Park St, Boston, MA 02215" +282377,AA Batteries (4-pack),2,3.84,11/03/19 01:43,"868 Pine St, Los Angeles, CA 90001" +282378,AA Batteries (4-pack),1,3.84,11/25/19 06:11,"999 Sunset St, Austin, TX 73301" +282379,27in FHD Monitor,1,149.99,11/19/19 23:38,"802 Walnut St, Portland, OR 97035" +282380,AAA Batteries (4-pack),1,2.99,11/09/19 20:24,"119 4th St, Atlanta, GA 30301" +282381,ThinkPad Laptop,1,999.99,11/05/19 08:21,"938 Hill St, Atlanta, GA 30301" +282382,Bose SoundSport Headphones,1,99.99,11/21/19 16:15,"24 7th St, San Francisco, CA 94016" +282383,20in Monitor,1,109.99,11/08/19 17:00,"392 South St, New York City, NY 10001" +282384,20in Monitor,1,109.99,11/14/19 10:31,"553 Highland St, New York City, NY 10001" +282385,USB-C Charging Cable,2,11.95,11/16/19 18:22,"714 Spruce St, San Francisco, CA 94016" +282386,Apple Airpods Headphones,1,150,11/14/19 13:02,"972 13th St, Los Angeles, CA 90001" +282387,iPhone,1,700,11/17/19 12:13,"910 Jackson St, Atlanta, GA 30301" +282387,Wired Headphones,1,11.99,11/17/19 12:13,"910 Jackson St, Atlanta, GA 30301" +282388,34in Ultrawide Monitor,1,379.99,11/25/19 14:02,"110 Lake St, San Francisco, CA 94016" +282389,Bose SoundSport Headphones,1,99.99,11/07/19 20:41,"828 11th St, Portland, OR 97035" +282390,Wired Headphones,1,11.99,11/28/19 08:54,"507 12th St, New York City, NY 10001" +282391,AAA Batteries (4-pack),1,2.99,11/06/19 00:09,"403 8th St, Portland, OR 97035" +282392,34in Ultrawide Monitor,1,379.99,11/20/19 21:52,"405 14th St, Seattle, WA 98101" +282393,27in 4K Gaming Monitor,1,389.99,11/06/19 08:14,"298 9th St, San Francisco, CA 94016" +282394,Apple Airpods Headphones,1,150,11/28/19 16:23,"748 1st St, San Francisco, CA 94016" +282395,20in Monitor,1,109.99,11/30/19 20:57,"375 Lincoln St, Austin, TX 73301" +282396,Bose SoundSport Headphones,1,99.99,11/18/19 13:03,"140 Lake St, Dallas, TX 75001" +282397,USB-C Charging Cable,1,11.95,11/04/19 10:48,"997 Jackson St, Dallas, TX 75001" +282398,AAA Batteries (4-pack),1,2.99,11/22/19 09:48,"242 Church St, San Francisco, CA 94016" +282399,ThinkPad Laptop,1,999.99,11/11/19 16:22,"888 Cherry St, New York City, NY 10001" +282400,Bose SoundSport Headphones,1,99.99,11/22/19 20:05,"894 North St, San Francisco, CA 94016" +282401,ThinkPad Laptop,1,999.99,11/09/19 23:31,"569 1st St, Dallas, TX 75001" +282402,34in Ultrawide Monitor,1,379.99,11/25/19 11:33,"752 Dogwood St, Portland, OR 97035" +282403,Bose SoundSport Headphones,1,99.99,11/18/19 22:37,"979 8th St, Boston, MA 02215" +282404,AAA Batteries (4-pack),3,2.99,11/13/19 18:02,"254 Adams St, New York City, NY 10001" +282405,Wired Headphones,1,11.99,11/04/19 20:55,"548 West St, Dallas, TX 75001" +282406,AAA Batteries (4-pack),1,2.99,11/06/19 19:05,"44 Spruce St, San Francisco, CA 94016" +282407,AA Batteries (4-pack),1,3.84,11/01/19 19:34,"868 8th St, Portland, OR 97035" +282408,Lightning Charging Cable,1,14.95,11/09/19 22:41,"366 2nd St, San Francisco, CA 94016" +282409,Apple Airpods Headphones,1,150,11/06/19 11:05,"607 Jefferson St, Austin, TX 73301" +282410,20in Monitor,1,109.99,11/26/19 12:43,"310 9th St, Portland, OR 97035" +282411,AAA Batteries (4-pack),1,2.99,11/20/19 21:56,"229 7th St, Seattle, WA 98101" +282412,USB-C Charging Cable,1,11.95,11/06/19 10:26,"47 West St, New York City, NY 10001" +282413,Wired Headphones,1,11.99,11/21/19 22:28,"500 Lake St, San Francisco, CA 94016" +282414,USB-C Charging Cable,1,11.95,11/08/19 20:47,"3 5th St, New York City, NY 10001" +282415,Wired Headphones,1,11.99,11/02/19 14:01,"843 12th St, Atlanta, GA 30301" +282415,20in Monitor,1,109.99,11/02/19 14:01,"843 12th St, Atlanta, GA 30301" +282416,Apple Airpods Headphones,1,150,11/11/19 06:37,"77 13th St, New York City, NY 10001" +282417,Wired Headphones,1,11.99,11/09/19 12:17,"423 Pine St, San Francisco, CA 94016" +282417,Flatscreen TV,1,300,11/09/19 12:17,"423 Pine St, San Francisco, CA 94016" +282418,Lightning Charging Cable,1,14.95,11/23/19 16:08,"390 Washington St, Los Angeles, CA 90001" +282419,AAA Batteries (4-pack),1,2.99,11/19/19 16:13,"586 Spruce St, Atlanta, GA 30301" +282420,AAA Batteries (4-pack),1,2.99,11/09/19 00:20,"810 10th St, Portland, OR 97035" +282421,AAA Batteries (4-pack),1,2.99,11/13/19 19:56,"328 Spruce St, New York City, NY 10001" +282421,USB-C Charging Cable,1,11.95,11/13/19 19:56,"328 Spruce St, New York City, NY 10001" +282422,iPhone,1,700,11/20/19 16:37,"166 Cedar St, Boston, MA 02215" +282422,Apple Airpods Headphones,1,150,11/20/19 16:37,"166 Cedar St, Boston, MA 02215" +282423,AAA Batteries (4-pack),2,2.99,11/30/19 07:52,"1 Dogwood St, Portland, OR 97035" +282424,Google Phone,1,600,11/05/19 21:54,"585 5th St, San Francisco, CA 94016" +282424,Wired Headphones,2,11.99,11/05/19 21:54,"585 5th St, San Francisco, CA 94016" +282425,USB-C Charging Cable,1,11.95,11/29/19 13:47,"798 Adams St, Atlanta, GA 30301" +282426,Macbook Pro Laptop,1,1700,11/23/19 17:42,"251 Sunset St, New York City, NY 10001" +282427,USB-C Charging Cable,1,11.95,11/23/19 14:03,"633 6th St, Los Angeles, CA 90001" +282428,Bose SoundSport Headphones,1,99.99,11/06/19 10:22,"574 Elm St, Portland, OR 97035" +282429,27in 4K Gaming Monitor,1,389.99,11/29/19 11:13,"26 13th St, Austin, TX 73301" +282430,Macbook Pro Laptop,1,1700,11/24/19 08:41,"496 Johnson St, Atlanta, GA 30301" +282431,Google Phone,1,600,11/05/19 13:34,"428 13th St, San Francisco, CA 94016" +282432,Google Phone,1,600,11/20/19 21:24,"761 Maple St, Los Angeles, CA 90001" +282433,27in 4K Gaming Monitor,1,389.99,11/11/19 21:12,"196 Jefferson St, San Francisco, CA 94016" +282434,iPhone,1,700,11/30/19 13:02,"75 Church St, Portland, OR 97035" +282435,AAA Batteries (4-pack),1,2.99,11/07/19 20:09,"440 12th St, Boston, MA 02215" +282436,27in 4K Gaming Monitor,1,389.99,11/25/19 13:26,"877 13th St, San Francisco, CA 94016" +282437,ThinkPad Laptop,1,999.99,11/04/19 12:58,"729 Lake St, Los Angeles, CA 90001" +282438,USB-C Charging Cable,1,11.95,11/29/19 11:24,"858 Jackson St, San Francisco, CA 94016" +282439,Bose SoundSport Headphones,1,99.99,11/25/19 19:18,"795 Ridge St, San Francisco, CA 94016" +282440,USB-C Charging Cable,1,11.95,11/30/19 10:24,"468 Jackson St, Boston, MA 02215" +282441,Macbook Pro Laptop,1,1700,11/20/19 16:52,"627 8th St, Seattle, WA 98101" +282442,Bose SoundSport Headphones,1,99.99,11/24/19 17:09,"478 Johnson St, Austin, TX 73301" +282443,Bose SoundSport Headphones,1,99.99,11/15/19 17:41,"953 Cedar St, Dallas, TX 75001" +282444,AA Batteries (4-pack),1,3.84,11/14/19 10:55,"522 Dogwood St, New York City, NY 10001" +282445,AA Batteries (4-pack),1,3.84,11/02/19 20:30,"962 Meadow St, San Francisco, CA 94016" +282446,AAA Batteries (4-pack),1,2.99,11/18/19 10:51,"580 10th St, Atlanta, GA 30301" +282447,Lightning Charging Cable,1,14.95,11/25/19 17:33,"859 Elm St, New York City, NY 10001" +282448,ThinkPad Laptop,1,999.99,11/21/19 18:40,"937 Forest St, San Francisco, CA 94016" +282449,Lightning Charging Cable,1,14.95,11/14/19 15:00,"748 Cedar St, Seattle, WA 98101" +282450,Wired Headphones,1,11.99,11/09/19 21:35,"351 Lakeview St, Los Angeles, CA 90001" +282451,Lightning Charging Cable,1,14.95,11/29/19 05:21,"347 10th St, San Francisco, CA 94016" +282452,Flatscreen TV,1,300,11/19/19 14:03,"983 Ridge St, Atlanta, GA 30301" +282453,Wired Headphones,2,11.99,11/29/19 18:32,"768 Madison St, Portland, OR 97035" +282454,Google Phone,1,600,11/07/19 16:58,"769 North St, Dallas, TX 75001" +282455,AA Batteries (4-pack),1,3.84,11/30/19 20:56,"488 Chestnut St, Portland, ME 04101" +282456,27in FHD Monitor,1,149.99,11/27/19 22:31,"863 Lake St, San Francisco, CA 94016" +282457,AA Batteries (4-pack),2,3.84,11/23/19 12:56,"693 North St, Boston, MA 02215" +282458,Wired Headphones,1,11.99,11/04/19 14:30,"483 Walnut St, San Francisco, CA 94016" +282459,AA Batteries (4-pack),1,3.84,11/07/19 22:06,"609 Highland St, Dallas, TX 75001" +282460,iPhone,1,700,11/04/19 13:45,"662 Johnson St, San Francisco, CA 94016" +282461,20in Monitor,1,109.99,11/26/19 13:12,"60 North St, Los Angeles, CA 90001" +282462,Lightning Charging Cable,1,14.95,11/21/19 20:33,"976 Park St, Portland, OR 97035" +282463,27in 4K Gaming Monitor,1,389.99,11/09/19 01:43,"893 13th St, San Francisco, CA 94016" +282464,Lightning Charging Cable,1,14.95,11/14/19 19:59,"473 North St, Boston, MA 02215" +282465,Lightning Charging Cable,1,14.95,11/08/19 16:14,"980 Adams St, San Francisco, CA 94016" +282466,AA Batteries (4-pack),2,3.84,11/27/19 22:30,"248 Adams St, Los Angeles, CA 90001" +282467,Google Phone,1,600,11/27/19 10:03,"918 Johnson St, New York City, NY 10001" +282468,Apple Airpods Headphones,1,150,11/15/19 19:56,"250 6th St, Seattle, WA 98101" +282469,AA Batteries (4-pack),1,3.84,11/15/19 09:43,"581 Park St, San Francisco, CA 94016" +282470,Wired Headphones,1,11.99,11/24/19 07:06,"148 13th St, Boston, MA 02215" +282471,Vareebadd Phone,1,400,11/24/19 08:28,"682 River St, Austin, TX 73301" +282472,34in Ultrawide Monitor,1,379.99,11/24/19 17:58,"473 Hill St, Portland, OR 97035" +282473,Flatscreen TV,1,300,11/27/19 14:09,"238 South St, Atlanta, GA 30301" +282474,27in FHD Monitor,1,149.99,11/05/19 22:51,"364 Dogwood St, Austin, TX 73301" +282475,AA Batteries (4-pack),1,3.84,11/17/19 09:03,"113 Cherry St, Los Angeles, CA 90001" +282476,Lightning Charging Cable,1,14.95,11/15/19 13:40,"367 Jackson St, Dallas, TX 75001" +282477,AA Batteries (4-pack),3,3.84,11/10/19 14:45,"400 Sunset St, Seattle, WA 98101" +282478,Google Phone,1,600,11/19/19 09:53,"462 8th St, New York City, NY 10001" +282479,AAA Batteries (4-pack),2,2.99,11/01/19 16:40,"810 Lincoln St, Los Angeles, CA 90001" +282480,AAA Batteries (4-pack),1,2.99,11/23/19 11:44,"905 2nd St, San Francisco, CA 94016" +282481,Bose SoundSport Headphones,1,99.99,11/10/19 21:35,"404 South St, San Francisco, CA 94016" +282482,AA Batteries (4-pack),1,3.84,11/23/19 23:07,"895 12th St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +282483,ThinkPad Laptop,1,999.99,11/18/19 19:01,"561 Pine St, San Francisco, CA 94016" +282484,Apple Airpods Headphones,1,150,11/09/19 19:17,"785 Lake St, Dallas, TX 75001" +282485,USB-C Charging Cable,2,11.95,11/01/19 15:31,"322 Sunset St, Seattle, WA 98101" +282486,USB-C Charging Cable,1,11.95,11/03/19 08:03,"612 Church St, New York City, NY 10001" +282487,Flatscreen TV,1,300,11/02/19 16:06,"720 13th St, San Francisco, CA 94016" +282488,Macbook Pro Laptop,1,1700,11/18/19 09:33,"625 11th St, Los Angeles, CA 90001" +282489,AAA Batteries (4-pack),2,2.99,11/18/19 18:05,"779 Walnut St, Los Angeles, CA 90001" +282490,iPhone,1,700,11/16/19 21:51,"850 Cherry St, Atlanta, GA 30301" +282490,Wired Headphones,1,11.99,11/16/19 21:51,"850 Cherry St, Atlanta, GA 30301" +282491,AA Batteries (4-pack),3,3.84,11/06/19 20:47,"595 Lincoln St, San Francisco, CA 94016" +282492,Apple Airpods Headphones,1,150,11/20/19 10:40,"773 13th St, San Francisco, CA 94016" +282493,AA Batteries (4-pack),1,3.84,11/16/19 22:44,"926 Hill St, San Francisco, CA 94016" +282494,USB-C Charging Cable,1,11.95,11/23/19 10:13,"599 5th St, Atlanta, GA 30301" +282495,Bose SoundSport Headphones,1,99.99,11/25/19 17:13,"653 2nd St, San Francisco, CA 94016" +282496,USB-C Charging Cable,1,11.95,11/27/19 18:13,"751 Lake St, San Francisco, CA 94016" +282497,AA Batteries (4-pack),2,3.84,11/11/19 18:58,"139 Washington St, Los Angeles, CA 90001" +282498,AA Batteries (4-pack),1,3.84,11/07/19 22:26,"610 1st St, San Francisco, CA 94016" +282499,Wired Headphones,1,11.99,11/07/19 16:39,"473 14th St, San Francisco, CA 94016" +282500,Wired Headphones,1,11.99,11/04/19 15:24,"337 North St, San Francisco, CA 94016" +282501,Flatscreen TV,1,300,11/07/19 19:55,"684 6th St, San Francisco, CA 94016" +282502,iPhone,1,700,11/25/19 22:05,"773 Jefferson St, Seattle, WA 98101" +282503,Apple Airpods Headphones,1,150,11/20/19 05:27,"603 Cedar St, San Francisco, CA 94016" +282504,AA Batteries (4-pack),4,3.84,11/25/19 10:25,"726 4th St, Portland, ME 04101" +282505,34in Ultrawide Monitor,1,379.99,11/06/19 08:48,"773 North St, San Francisco, CA 94016" +282506,Wired Headphones,1,11.99,11/13/19 22:40,"137 Johnson St, New York City, NY 10001" +282507,Macbook Pro Laptop,1,1700,11/18/19 11:24,"364 Walnut St, Dallas, TX 75001" +282508,Lightning Charging Cable,1,14.95,11/09/19 19:28,"211 2nd St, Portland, OR 97035" +282509,Lightning Charging Cable,1,14.95,11/05/19 19:00,"573 Willow St, Boston, MA 02215" +282510,Wired Headphones,1,11.99,11/22/19 18:50,"483 Elm St, Boston, MA 02215" +282511,Lightning Charging Cable,2,14.95,11/28/19 18:10,"722 Hill St, Los Angeles, CA 90001" +282512,USB-C Charging Cable,1,11.95,11/04/19 07:40,"464 Church St, San Francisco, CA 94016" +282513,iPhone,1,700,11/22/19 22:35,"326 Highland St, Los Angeles, CA 90001" +282514,USB-C Charging Cable,1,11.95,11/04/19 06:33,"48 Cedar St, Dallas, TX 75001" +282515,27in FHD Monitor,1,149.99,11/27/19 15:09,"546 Dogwood St, Boston, MA 02215" +282516,Wired Headphones,1,11.99,11/18/19 20:36,"901 Elm St, New York City, NY 10001" +282517,Wired Headphones,1,11.99,11/07/19 16:40,"223 Spruce St, New York City, NY 10001" +282518,27in FHD Monitor,1,149.99,11/29/19 09:27,"217 Main St, San Francisco, CA 94016" +282519,Macbook Pro Laptop,1,1700,11/05/19 16:55,"475 Center St, New York City, NY 10001" +282520,AAA Batteries (4-pack),1,2.99,11/17/19 20:26,"715 Madison St, New York City, NY 10001" +282521,Bose SoundSport Headphones,1,99.99,11/12/19 23:06,"239 7th St, Atlanta, GA 30301" +282522,iPhone,1,700,11/25/19 03:15,"80 Chestnut St, Dallas, TX 75001" +282523,AAA Batteries (4-pack),1,2.99,11/03/19 21:39,"932 13th St, New York City, NY 10001" +282524,Apple Airpods Headphones,1,150,11/06/19 20:20,"62 Center St, Atlanta, GA 30301" +282525,Lightning Charging Cable,1,14.95,11/09/19 14:33,"420 Dogwood St, San Francisco, CA 94016" +282526,Lightning Charging Cable,1,14.95,11/18/19 15:46,"409 Ridge St, New York City, NY 10001" +282527,iPhone,1,700,11/22/19 21:15,"647 Willow St, Atlanta, GA 30301" +282528,Lightning Charging Cable,1,14.95,11/22/19 22:56,"510 10th St, Seattle, WA 98101" +282529,Wired Headphones,1,11.99,11/09/19 12:37,"513 Washington St, San Francisco, CA 94016" +282530,AAA Batteries (4-pack),1,2.99,11/01/19 18:40,"74 Wilson St, Los Angeles, CA 90001" +282531,Google Phone,1,600,11/02/19 17:44,"215 2nd St, Seattle, WA 98101" +282531,USB-C Charging Cable,1,11.95,11/02/19 17:44,"215 2nd St, Seattle, WA 98101" +282532,iPhone,1,700,11/24/19 09:15,"423 9th St, Los Angeles, CA 90001" +282533,Wired Headphones,1,11.99,11/14/19 19:42,"683 Lakeview St, San Francisco, CA 94016" +282534,USB-C Charging Cable,1,11.95,11/03/19 19:19,"930 12th St, New York City, NY 10001" +282535,AAA Batteries (4-pack),3,2.99,11/03/19 16:35,"779 Hill St, Boston, MA 02215" +282536,USB-C Charging Cable,1,11.95,11/05/19 10:02,"24 Lake St, Seattle, WA 98101" +282537,USB-C Charging Cable,1,11.95,11/20/19 13:21,"465 8th St, Seattle, WA 98101" +282538,Apple Airpods Headphones,1,150,11/05/19 18:30,"545 Lake St, Atlanta, GA 30301" +282539,Lightning Charging Cable,1,14.95,11/22/19 21:47,"281 Elm St, San Francisco, CA 94016" +282540,Lightning Charging Cable,1,14.95,11/15/19 19:47,"766 Dogwood St, Los Angeles, CA 90001" +282541,Google Phone,1,600,11/27/19 23:14,"325 Sunset St, San Francisco, CA 94016" +282542,Lightning Charging Cable,1,14.95,11/22/19 09:17,"279 5th St, Los Angeles, CA 90001" +282543,Macbook Pro Laptop,1,1700,11/17/19 12:19,"147 13th St, New York City, NY 10001" +282544,Lightning Charging Cable,1,14.95,11/17/19 12:14,"212 Jefferson St, Atlanta, GA 30301" +282545,27in 4K Gaming Monitor,1,389.99,11/27/19 11:25,"203 Lake St, Los Angeles, CA 90001" +282546,20in Monitor,1,109.99,11/22/19 12:45,"36 Chestnut St, New York City, NY 10001" +282547,LG Dryer,1,600.0,11/11/19 17:07,"400 West St, Seattle, WA 98101" +282548,Bose SoundSport Headphones,1,99.99,11/08/19 13:16,"102 Chestnut St, San Francisco, CA 94016" +282549,Lightning Charging Cable,1,14.95,11/07/19 11:30,"123 Park St, Boston, MA 02215" +282550,AAA Batteries (4-pack),1,2.99,11/16/19 17:54,"893 Madison St, New York City, NY 10001" +282551,USB-C Charging Cable,1,11.95,11/28/19 14:37,"766 Maple St, Seattle, WA 98101" +282552,AAA Batteries (4-pack),2,2.99,11/07/19 16:39,"511 12th St, San Francisco, CA 94016" +282553,AAA Batteries (4-pack),2,2.99,11/01/19 10:31,"792 4th St, Seattle, WA 98101" +282554,USB-C Charging Cable,1,11.95,11/23/19 12:46,"980 Pine St, Boston, MA 02215" +282555,Flatscreen TV,1,300,11/17/19 21:30,"771 Jefferson St, Atlanta, GA 30301" +282556,AA Batteries (4-pack),1,3.84,11/20/19 15:12,"400 Madison St, San Francisco, CA 94016" +282557,Wired Headphones,1,11.99,11/03/19 15:54,"631 Park St, Boston, MA 02215" +282557,USB-C Charging Cable,1,11.95,11/03/19 15:54,"631 Park St, Boston, MA 02215" +282558,Apple Airpods Headphones,1,150,11/10/19 12:47,"834 Jackson St, New York City, NY 10001" +282559,Wired Headphones,1,11.99,11/21/19 23:24,"623 8th St, Los Angeles, CA 90001" +282560,LG Dryer,1,600.0,11/04/19 20:35,"381 Lake St, Los Angeles, CA 90001" +282561,27in FHD Monitor,1,149.99,11/06/19 17:11,"181 Maple St, Atlanta, GA 30301" +282562,iPhone,1,700,11/24/19 16:12,"943 Adams St, Seattle, WA 98101" +282562,Lightning Charging Cable,1,14.95,11/24/19 16:12,"943 Adams St, Seattle, WA 98101" +282563,AAA Batteries (4-pack),5,2.99,11/17/19 06:24,"614 9th St, Boston, MA 02215" +282564,USB-C Charging Cable,1,11.95,11/19/19 18:41,"172 River St, Los Angeles, CA 90001" +282565,27in FHD Monitor,1,149.99,11/12/19 14:32,"214 4th St, San Francisco, CA 94016" +282566,Bose SoundSport Headphones,1,99.99,11/04/19 17:46,"289 Ridge St, New York City, NY 10001" +282567,Wired Headphones,1,11.99,11/01/19 10:04,"929 Jackson St, San Francisco, CA 94016" +282568,Flatscreen TV,1,300,11/14/19 12:17,"109 Jackson St, Boston, MA 02215" +282569,AAA Batteries (4-pack),1,2.99,11/27/19 19:27,"144 Dogwood St, New York City, NY 10001" +282570,Apple Airpods Headphones,1,150,11/26/19 16:11,"525 Park St, San Francisco, CA 94016" +282571,iPhone,1,700,11/15/19 17:12,"453 Elm St, Boston, MA 02215" +282572,Wired Headphones,1,11.99,11/07/19 16:52,"902 2nd St, Dallas, TX 75001" +282573,AA Batteries (4-pack),1,3.84,11/10/19 15:32,"6 Jackson St, San Francisco, CA 94016" +282574,AAA Batteries (4-pack),1,2.99,11/16/19 16:05,"988 Walnut St, Seattle, WA 98101" +282575,20in Monitor,1,109.99,11/26/19 17:16,"332 9th St, San Francisco, CA 94016" +282576,iPhone,1,700,11/08/19 15:58,"549 Pine St, Dallas, TX 75001" +282577,Bose SoundSport Headphones,1,99.99,11/21/19 19:52,"127 Chestnut St, New York City, NY 10001" +282578,Lightning Charging Cable,2,14.95,11/22/19 01:14,"148 Jackson St, Boston, MA 02215" +282579,AA Batteries (4-pack),1,3.84,11/21/19 07:52,"39 Lincoln St, San Francisco, CA 94016" +282580,Macbook Pro Laptop,1,1700,11/21/19 19:13,"162 Sunset St, New York City, NY 10001" +282581,20in Monitor,1,109.99,11/14/19 21:35,"236 8th St, San Francisco, CA 94016" +282582,Wired Headphones,1,11.99,11/24/19 14:44,"450 Johnson St, San Francisco, CA 94016" +282583,Flatscreen TV,1,300,11/06/19 08:29,"587 Chestnut St, Seattle, WA 98101" +282584,Google Phone,1,600,11/14/19 12:28,"366 Dogwood St, Los Angeles, CA 90001" +282585,AA Batteries (4-pack),1,3.84,11/11/19 16:38,"450 8th St, San Francisco, CA 94016" +282586,Lightning Charging Cable,2,14.95,11/07/19 18:01,"814 Walnut St, Atlanta, GA 30301" +282587,Macbook Pro Laptop,1,1700,11/23/19 23:03,"63 13th St, Atlanta, GA 30301" +282588,AA Batteries (4-pack),1,3.84,11/08/19 11:13,"876 2nd St, Seattle, WA 98101" +282589,AAA Batteries (4-pack),1,2.99,11/03/19 21:40,"246 Meadow St, Seattle, WA 98101" +282590,Lightning Charging Cable,1,14.95,11/29/19 20:36,"591 Hill St, New York City, NY 10001" +282591,AA Batteries (4-pack),1,3.84,11/14/19 00:14,"416 Hill St, San Francisco, CA 94016" +282592,27in FHD Monitor,1,149.99,11/19/19 18:21,"863 Lincoln St, Atlanta, GA 30301" +282593,AAA Batteries (4-pack),2,2.99,11/24/19 23:25,"378 Lincoln St, Portland, OR 97035" +282594,Lightning Charging Cable,1,14.95,11/07/19 23:54,"46 9th St, Atlanta, GA 30301" +282595,27in 4K Gaming Monitor,1,389.99,11/12/19 20:06,"788 West St, San Francisco, CA 94016" +282596,AAA Batteries (4-pack),1,2.99,11/14/19 01:06,"839 Johnson St, New York City, NY 10001" +282597,AA Batteries (4-pack),1,3.84,11/16/19 07:50,"204 Washington St, Austin, TX 73301" +282598,AAA Batteries (4-pack),1,2.99,11/21/19 15:19,"769 14th St, San Francisco, CA 94016" +282599,Lightning Charging Cable,2,14.95,11/09/19 15:42,"882 Center St, Los Angeles, CA 90001" +282600,Bose SoundSport Headphones,1,99.99,11/08/19 22:42,"84 Forest St, Los Angeles, CA 90001" +282601,Macbook Pro Laptop,1,1700,11/15/19 19:51,"711 14th St, New York City, NY 10001" +282602,27in FHD Monitor,1,149.99,11/26/19 09:11,"634 Maple St, Seattle, WA 98101" +282603,Lightning Charging Cable,1,14.95,11/04/19 15:44,"99 Adams St, Boston, MA 02215" +282604,Macbook Pro Laptop,1,1700,11/18/19 17:00,"153 Dogwood St, Dallas, TX 75001" +282605,USB-C Charging Cable,2,11.95,11/14/19 15:15,"957 Lakeview St, San Francisco, CA 94016" +282605,Lightning Charging Cable,1,14.95,11/14/19 15:15,"957 Lakeview St, San Francisco, CA 94016" +282606,Bose SoundSport Headphones,1,99.99,11/03/19 14:12,"453 River St, San Francisco, CA 94016" +282607,Apple Airpods Headphones,1,150,11/24/19 14:18,"282 5th St, San Francisco, CA 94016" +282608,AAA Batteries (4-pack),1,2.99,11/06/19 16:11,"460 Hill St, Los Angeles, CA 90001" +282609,iPhone,1,700,11/21/19 11:00,"385 Center St, San Francisco, CA 94016" +282610,AA Batteries (4-pack),1,3.84,11/20/19 11:15,"992 2nd St, San Francisco, CA 94016" +282611,AA Batteries (4-pack),1,3.84,11/06/19 07:02,"967 Ridge St, Boston, MA 02215" +282612,USB-C Charging Cable,1,11.95,11/18/19 09:35,"61 1st St, San Francisco, CA 94016" +282613,Apple Airpods Headphones,1,150,11/10/19 15:18,"424 Center St, Atlanta, GA 30301" +282614,AA Batteries (4-pack),4,3.84,11/20/19 20:16,"910 Cherry St, Atlanta, GA 30301" +282615,Flatscreen TV,1,300,11/09/19 16:27,"959 Elm St, San Francisco, CA 94016" +282616,Lightning Charging Cable,1,14.95,11/27/19 23:18,"35 Meadow St, Seattle, WA 98101" +282617,Lightning Charging Cable,1,14.95,11/12/19 21:47,"373 Cedar St, San Francisco, CA 94016" +282618,ThinkPad Laptop,1,999.99,11/14/19 19:19,"660 5th St, Los Angeles, CA 90001" +282619,iPhone,1,700,11/10/19 09:35,"208 11th St, Los Angeles, CA 90001" +282620,USB-C Charging Cable,1,11.95,11/12/19 17:02,"156 Center St, New York City, NY 10001" +282621,AAA Batteries (4-pack),1,2.99,11/06/19 11:21,"494 Dogwood St, San Francisco, CA 94016" +282622,Bose SoundSport Headphones,1,99.99,11/24/19 11:49,"927 2nd St, Seattle, WA 98101" +282622,Lightning Charging Cable,1,14.95,11/24/19 11:49,"927 2nd St, Seattle, WA 98101" +282623,Wired Headphones,2,11.99,11/23/19 17:26,"987 Lincoln St, San Francisco, CA 94016" +282624,AA Batteries (4-pack),1,3.84,11/24/19 12:02,"816 Highland St, San Francisco, CA 94016" +282625,USB-C Charging Cable,1,11.95,11/16/19 12:43,"157 Washington St, Portland, OR 97035" +282626,27in 4K Gaming Monitor,1,389.99,11/06/19 13:20,"130 Cedar St, Los Angeles, CA 90001" +282627,Wired Headphones,1,11.99,11/21/19 12:01,"947 Church St, San Francisco, CA 94016" +282628,Lightning Charging Cable,1,14.95,11/16/19 16:54,"204 Spruce St, Dallas, TX 75001" +282629,Bose SoundSport Headphones,1,99.99,11/04/19 15:16,"643 8th St, San Francisco, CA 94016" +282630,Wired Headphones,1,11.99,11/16/19 17:03,"377 14th St, San Francisco, CA 94016" +282631,Lightning Charging Cable,1,14.95,11/25/19 14:08,"499 13th St, San Francisco, CA 94016" +282632,Google Phone,1,600,11/05/19 20:18,"65 Cherry St, San Francisco, CA 94016" +282633,Bose SoundSport Headphones,1,99.99,11/22/19 07:13,"329 Sunset St, New York City, NY 10001" +282634,AA Batteries (4-pack),1,3.84,11/21/19 19:27,"408 Walnut St, New York City, NY 10001" +282635,Lightning Charging Cable,1,14.95,11/10/19 12:59,"884 Madison St, San Francisco, CA 94016" +282636,Google Phone,1,600,11/02/19 11:30,"723 6th St, Atlanta, GA 30301" +282637,Apple Airpods Headphones,1,150,11/03/19 12:05,"767 6th St, Portland, OR 97035" +282638,Wired Headphones,1,11.99,12/01/19 00:01,"271 West St, Seattle, WA 98101" +282639,Apple Airpods Headphones,1,150,11/17/19 00:03,"983 Jackson St, Seattle, WA 98101" +282640,AAA Batteries (4-pack),1,2.99,11/27/19 14:22,"285 Church St, Los Angeles, CA 90001" +282641,AAA Batteries (4-pack),1,2.99,11/18/19 10:17,"683 Park St, Los Angeles, CA 90001" +282642,Lightning Charging Cable,1,14.95,11/02/19 21:39,"349 Center St, Atlanta, GA 30301" +282643,Bose SoundSport Headphones,1,99.99,11/29/19 18:37,"389 Lakeview St, New York City, NY 10001" +282644,AAA Batteries (4-pack),1,2.99,11/22/19 04:28,"424 2nd St, New York City, NY 10001" +282645,Flatscreen TV,1,300,11/10/19 17:47,"893 Lincoln St, New York City, NY 10001" +282646,USB-C Charging Cable,2,11.95,11/16/19 08:03,"614 Jefferson St, Atlanta, GA 30301" +282647,Apple Airpods Headphones,1,150,11/07/19 11:42,"44 Main St, Portland, OR 97035" +282648,Google Phone,1,600,11/14/19 07:55,"400 Church St, Seattle, WA 98101" +282649,USB-C Charging Cable,1,11.95,11/23/19 05:38,"46 4th St, San Francisco, CA 94016" +282650,USB-C Charging Cable,1,11.95,11/21/19 13:39,"500 Willow St, New York City, NY 10001" +282651,USB-C Charging Cable,1,11.95,11/15/19 16:57,"197 11th St, Los Angeles, CA 90001" +282652,Lightning Charging Cable,1,14.95,11/15/19 15:08,"1 Jefferson St, Boston, MA 02215" +282653,Lightning Charging Cable,3,14.95,11/18/19 09:26,"379 Madison St, Dallas, TX 75001" +282654,AAA Batteries (4-pack),4,2.99,11/25/19 15:11,"781 Madison St, San Francisco, CA 94016" +282655,AAA Batteries (4-pack),1,2.99,11/20/19 18:32,"377 Washington St, Los Angeles, CA 90001" +282656,iPhone,1,700,11/26/19 02:23,"130 11th St, Los Angeles, CA 90001" +282657,34in Ultrawide Monitor,1,379.99,11/07/19 21:17,"580 Washington St, San Francisco, CA 94016" +282658,USB-C Charging Cable,1,11.95,11/14/19 18:25,"430 Spruce St, Seattle, WA 98101" +282659,27in FHD Monitor,1,149.99,11/07/19 10:32,"892 11th St, Austin, TX 73301" +282660,Google Phone,1,600,11/03/19 14:29,"557 Johnson St, Los Angeles, CA 90001" +282661,iPhone,1,700,11/30/19 00:56,"722 Maple St, Atlanta, GA 30301" +282662,Apple Airpods Headphones,1,150,11/14/19 10:28,"164 Sunset St, Dallas, TX 75001" +282663,Lightning Charging Cable,1,14.95,11/13/19 20:20,"942 4th St, Los Angeles, CA 90001" +282664,Lightning Charging Cable,1,14.95,11/03/19 06:46,"237 Lake St, San Francisco, CA 94016" +282665,USB-C Charging Cable,1,11.95,11/02/19 06:52,"861 Spruce St, New York City, NY 10001" +282666,Apple Airpods Headphones,1,150,11/29/19 20:45,"808 Sunset St, Seattle, WA 98101" +282667,Lightning Charging Cable,1,14.95,11/27/19 18:37,"888 Wilson St, Los Angeles, CA 90001" +282667,AA Batteries (4-pack),1,3.84,11/27/19 18:37,"888 Wilson St, Los Angeles, CA 90001" +282668,USB-C Charging Cable,1,11.95,11/21/19 20:50,"751 Center St, San Francisco, CA 94016" +282669,ThinkPad Laptop,1,999.99,11/01/19 15:24,"331 Cedar St, Boston, MA 02215" +282670,27in 4K Gaming Monitor,1,389.99,11/20/19 02:28,"636 Park St, Los Angeles, CA 90001" +282671,AAA Batteries (4-pack),1,2.99,11/02/19 07:37,"623 10th St, San Francisco, CA 94016" +282672,USB-C Charging Cable,1,11.95,11/14/19 23:06,"588 Meadow St, New York City, NY 10001" +282673,Lightning Charging Cable,1,14.95,11/29/19 19:28,"317 Lake St, Boston, MA 02215" +282674,Apple Airpods Headphones,2,150,11/05/19 08:49,"375 9th St, Boston, MA 02215" +282675,AA Batteries (4-pack),2,3.84,11/03/19 14:57,"678 Wilson St, Boston, MA 02215" +282676,Vareebadd Phone,1,400,11/16/19 12:20,"395 Hickory St, Seattle, WA 98101" +282677,USB-C Charging Cable,1,11.95,11/26/19 13:13,"891 Wilson St, Los Angeles, CA 90001" +282678,Bose SoundSport Headphones,1,99.99,11/14/19 06:05,"15 Main St, New York City, NY 10001" +282679,27in FHD Monitor,1,149.99,11/08/19 20:46,"53 1st St, Los Angeles, CA 90001" +282680,USB-C Charging Cable,1,11.95,11/18/19 21:23,"425 Maple St, San Francisco, CA 94016" +282681,AA Batteries (4-pack),1,3.84,11/12/19 11:33,"575 Adams St, Atlanta, GA 30301" +282682,27in 4K Gaming Monitor,1,389.99,11/09/19 09:39,"275 Hickory St, San Francisco, CA 94016" +282683,Bose SoundSport Headphones,1,99.99,11/05/19 17:12,"445 Dogwood St, Portland, OR 97035" +282684,27in FHD Monitor,1,149.99,11/30/19 16:23,"251 4th St, Los Angeles, CA 90001" +282685,Lightning Charging Cable,1,14.95,11/18/19 01:24,"695 Madison St, Portland, OR 97035" +282686,Flatscreen TV,1,300,11/06/19 17:49,"16 Chestnut St, San Francisco, CA 94016" +282687,Apple Airpods Headphones,1,150,11/12/19 18:32,"92 Park St, San Francisco, CA 94016" +282688,27in FHD Monitor,2,149.99,11/03/19 18:26,"235 Wilson St, San Francisco, CA 94016" +282689,20in Monitor,1,109.99,11/01/19 23:20,"909 Pine St, Boston, MA 02215" +282690,Lightning Charging Cable,1,14.95,11/20/19 12:53,"558 14th St, Dallas, TX 75001" +282691,Lightning Charging Cable,1,14.95,11/20/19 19:29,"751 Cherry St, Seattle, WA 98101" +282692,USB-C Charging Cable,1,11.95,11/26/19 10:32,"566 Ridge St, San Francisco, CA 94016" +282693,AA Batteries (4-pack),1,3.84,11/26/19 23:35,"717 12th St, San Francisco, CA 94016" +282694,Macbook Pro Laptop,1,1700,11/21/19 12:28,"618 Pine St, New York City, NY 10001" +282695,34in Ultrawide Monitor,1,379.99,11/28/19 17:03,"854 Lake St, San Francisco, CA 94016" +282696,AAA Batteries (4-pack),1,2.99,11/24/19 20:31,"11 Jefferson St, San Francisco, CA 94016" +282697,Lightning Charging Cable,1,14.95,11/11/19 15:07,"314 9th St, Atlanta, GA 30301" +282698,USB-C Charging Cable,1,11.95,11/13/19 14:41,"206 Maple St, San Francisco, CA 94016" +282699,Flatscreen TV,1,300,11/09/19 22:25,"218 Ridge St, Austin, TX 73301" +282700,Apple Airpods Headphones,1,150,11/11/19 20:40,"727 Spruce St, San Francisco, CA 94016" +282701,AA Batteries (4-pack),1,3.84,11/11/19 14:20,"110 Pine St, Boston, MA 02215" +282702,iPhone,1,700,11/16/19 19:49,"433 Dogwood St, Los Angeles, CA 90001" +282703,ThinkPad Laptop,1,999.99,11/14/19 13:18,"34 North St, Portland, OR 97035" +282704,AAA Batteries (4-pack),1,2.99,11/09/19 20:04,"958 Cedar St, New York City, NY 10001" +282705,Apple Airpods Headphones,1,150,11/13/19 12:18,"962 Lakeview St, San Francisco, CA 94016" +282706,Flatscreen TV,1,300,11/23/19 20:31,"46 Lakeview St, San Francisco, CA 94016" +282707,AAA Batteries (4-pack),1,2.99,11/27/19 09:13,"894 Lincoln St, Atlanta, GA 30301" +282708,Wired Headphones,1,11.99,11/20/19 13:21,"983 Jefferson St, Los Angeles, CA 90001" +282709,27in FHD Monitor,1,149.99,11/18/19 19:10,"563 Willow St, Atlanta, GA 30301" +282710,ThinkPad Laptop,1,999.99,11/04/19 16:55,"450 Dogwood St, Los Angeles, CA 90001" +282711,AAA Batteries (4-pack),1,2.99,11/06/19 19:52,"386 Hickory St, Los Angeles, CA 90001" +282712,iPhone,1,700,11/24/19 23:17,"234 Cherry St, San Francisco, CA 94016" +282713,Lightning Charging Cable,1,14.95,11/13/19 14:58,"600 Meadow St, Seattle, WA 98101" +282714,USB-C Charging Cable,1,11.95,11/03/19 17:32,"266 Willow St, New York City, NY 10001" +282715,USB-C Charging Cable,1,11.95,11/13/19 06:26,"54 Church St, Portland, OR 97035" +282716,AAA Batteries (4-pack),1,2.99,11/02/19 11:22,"286 Wilson St, Austin, TX 73301" +282717,Wired Headphones,1,11.99,11/25/19 19:35,"870 6th St, San Francisco, CA 94016" +282718,Wired Headphones,1,11.99,11/30/19 17:58,"425 Elm St, San Francisco, CA 94016" +282719,USB-C Charging Cable,1,11.95,11/22/19 09:54,"192 Center St, Portland, OR 97035" +282720,AA Batteries (4-pack),3,3.84,11/15/19 01:26,"787 Highland St, Dallas, TX 75001" +282721,AAA Batteries (4-pack),1,2.99,11/05/19 22:38,"880 Adams St, Boston, MA 02215" +282721,AA Batteries (4-pack),1,3.84,11/05/19 22:38,"880 Adams St, Boston, MA 02215" +282722,27in FHD Monitor,1,149.99,11/29/19 19:03,"747 10th St, Boston, MA 02215" +282723,LG Washing Machine,1,600.0,11/22/19 14:36,"46 South St, Portland, OR 97035" +282724,Lightning Charging Cable,1,14.95,11/09/19 10:17,"555 10th St, Portland, OR 97035" +282725,USB-C Charging Cable,1,11.95,11/01/19 17:30,"909 Forest St, Dallas, TX 75001" +282726,AA Batteries (4-pack),1,3.84,11/06/19 13:38,"405 Maple St, New York City, NY 10001" +282727,AAA Batteries (4-pack),1,2.99,11/17/19 18:20,"165 Lakeview St, Portland, OR 97035" +282728,Bose SoundSport Headphones,1,99.99,11/09/19 16:13,"88 14th St, New York City, NY 10001" +282729,Wired Headphones,1,11.99,11/12/19 14:52,"965 West St, Boston, MA 02215" +282730,USB-C Charging Cable,1,11.95,11/28/19 12:15,"193 10th St, Boston, MA 02215" +282731,Wired Headphones,1,11.99,11/26/19 12:09,"626 Cedar St, Austin, TX 73301" +282732,Bose SoundSport Headphones,1,99.99,11/29/19 17:39,"505 Sunset St, Atlanta, GA 30301" +282733,20in Monitor,1,109.99,11/20/19 12:15,"585 Walnut St, San Francisco, CA 94016" +282734,Wired Headphones,1,11.99,11/21/19 10:50,"272 10th St, San Francisco, CA 94016" +282735,AAA Batteries (4-pack),1,2.99,11/25/19 21:29,"207 Cedar St, Los Angeles, CA 90001" +282736,Apple Airpods Headphones,1,150,11/06/19 02:10,"129 6th St, San Francisco, CA 94016" +282737,27in FHD Monitor,1,149.99,11/09/19 23:39,"984 Lincoln St, Atlanta, GA 30301" +282738,Wired Headphones,1,11.99,11/06/19 00:04,"177 North St, Los Angeles, CA 90001" +282739,USB-C Charging Cable,1,11.95,11/22/19 11:35,"276 River St, Los Angeles, CA 90001" +282740,USB-C Charging Cable,1,11.95,11/24/19 22:33,"143 Jackson St, San Francisco, CA 94016" +282741,Wired Headphones,1,11.99,11/26/19 12:05,"248 River St, San Francisco, CA 94016" +282742,Apple Airpods Headphones,1,150,11/29/19 18:13,"358 Willow St, Boston, MA 02215" +282743,Wired Headphones,1,11.99,11/16/19 18:56,"105 5th St, Portland, OR 97035" +282744,Wired Headphones,1,11.99,11/30/19 15:28,"231 Adams St, New York City, NY 10001" +282745,AA Batteries (4-pack),1,3.84,11/11/19 19:04,"181 Hickory St, Dallas, TX 75001" +282746,Lightning Charging Cable,1,14.95,11/05/19 10:19,"946 Church St, Los Angeles, CA 90001" +282747,Flatscreen TV,1,300,11/17/19 12:35,"290 Walnut St, Seattle, WA 98101" +282748,34in Ultrawide Monitor,1,379.99,11/21/19 14:13,"688 North St, Portland, OR 97035" +282749,Wired Headphones,1,11.99,11/26/19 16:50,"147 Chestnut St, San Francisco, CA 94016" +282750,Macbook Pro Laptop,1,1700,11/18/19 16:30,"733 10th St, Austin, TX 73301" +282751,Google Phone,1,600,11/18/19 21:46,"786 South St, Portland, OR 97035" +282751,USB-C Charging Cable,1,11.95,11/18/19 21:46,"786 South St, Portland, OR 97035" +282752,Macbook Pro Laptop,1,1700,11/24/19 09:18,"10 7th St, San Francisco, CA 94016" +282753,AA Batteries (4-pack),1,3.84,11/07/19 17:29,"687 Lincoln St, San Francisco, CA 94016" +282754,AA Batteries (4-pack),1,3.84,11/03/19 19:49,"686 1st St, Los Angeles, CA 90001" +282755,Wired Headphones,1,11.99,11/18/19 10:38,"850 14th St, Austin, TX 73301" +282756,AAA Batteries (4-pack),1,2.99,11/18/19 22:06,"402 Forest St, Los Angeles, CA 90001" +282757,27in 4K Gaming Monitor,1,389.99,11/02/19 07:49,"153 Jackson St, San Francisco, CA 94016" +282758,Wired Headphones,1,11.99,11/06/19 14:14,"607 Chestnut St, Dallas, TX 75001" +282759,LG Dryer,1,600.0,11/19/19 21:15,"564 Wilson St, Austin, TX 73301" +282760,AAA Batteries (4-pack),1,2.99,11/05/19 15:36,"465 North St, San Francisco, CA 94016" +282761,Lightning Charging Cable,1,14.95,11/28/19 21:00,"177 Maple St, San Francisco, CA 94016" +282762,AAA Batteries (4-pack),3,2.99,11/21/19 16:29,"978 Johnson St, San Francisco, CA 94016" +282763,27in 4K Gaming Monitor,1,389.99,11/17/19 06:43,"532 Main St, Dallas, TX 75001" +282764,Wired Headphones,1,11.99,11/06/19 17:56,"941 2nd St, Atlanta, GA 30301" +282765,AAA Batteries (4-pack),3,2.99,11/30/19 19:28,"980 Wilson St, San Francisco, CA 94016" +282766,Wired Headphones,1,11.99,11/10/19 14:16,"470 2nd St, Los Angeles, CA 90001" +282767,Wired Headphones,1,11.99,11/27/19 13:19,"277 Madison St, San Francisco, CA 94016" +282768,USB-C Charging Cable,1,11.95,11/13/19 14:35,"714 Maple St, Atlanta, GA 30301" +282769,Bose SoundSport Headphones,1,99.99,11/09/19 11:29,"323 Church St, Boston, MA 02215" +282770,AA Batteries (4-pack),1,3.84,11/15/19 07:57,"450 Highland St, Seattle, WA 98101" +282771,iPhone,1,700,11/17/19 22:18,"891 1st St, Austin, TX 73301" +282772,Wired Headphones,1,11.99,11/12/19 10:10,"995 Washington St, Boston, MA 02215" +282773,Wired Headphones,1,11.99,11/19/19 11:35,"158 Maple St, Atlanta, GA 30301" +282774,USB-C Charging Cable,1,11.95,11/24/19 19:54,"704 8th St, New York City, NY 10001" +282775,Apple Airpods Headphones,1,150,11/23/19 17:16,"607 10th St, Boston, MA 02215" +282776,AA Batteries (4-pack),1,3.84,11/14/19 20:30,"334 Adams St, Boston, MA 02215" +282777,AA Batteries (4-pack),1,3.84,11/14/19 02:05,"587 Pine St, Los Angeles, CA 90001" +282778,34in Ultrawide Monitor,1,379.99,11/28/19 21:08,"989 5th St, Seattle, WA 98101" +282779,AAA Batteries (4-pack),1,2.99,11/24/19 21:23,"216 Jackson St, Los Angeles, CA 90001" +282780,Apple Airpods Headphones,1,150,11/10/19 15:21,"652 Willow St, Los Angeles, CA 90001" +282781,USB-C Charging Cable,1,11.95,11/19/19 07:36,"486 Johnson St, San Francisco, CA 94016" +282782,Lightning Charging Cable,1,14.95,11/12/19 11:30,"135 13th St, Los Angeles, CA 90001" +282783,Lightning Charging Cable,1,14.95,11/26/19 07:52,"922 1st St, Los Angeles, CA 90001" +282784,USB-C Charging Cable,1,11.95,11/21/19 14:59,"793 9th St, San Francisco, CA 94016" +282785,Lightning Charging Cable,1,14.95,11/02/19 22:36,"457 Lake St, Portland, ME 04101" +282786,Lightning Charging Cable,1,14.95,11/28/19 13:29,"565 Lincoln St, San Francisco, CA 94016" +282787,AAA Batteries (4-pack),1,2.99,11/24/19 22:30,"790 8th St, Los Angeles, CA 90001" +282788,Wired Headphones,1,11.99,11/28/19 23:13,"382 13th St, San Francisco, CA 94016" +282789,iPhone,1,700,11/19/19 13:07,"769 Ridge St, New York City, NY 10001" +282790,Wired Headphones,1,11.99,11/13/19 14:30,"496 Ridge St, Los Angeles, CA 90001" +282791,AAA Batteries (4-pack),1,2.99,11/16/19 00:07,"41 Forest St, Los Angeles, CA 90001" +282792,USB-C Charging Cable,1,11.95,11/24/19 17:37,"515 Park St, Seattle, WA 98101" +282793,USB-C Charging Cable,1,11.95,11/09/19 23:05,"374 7th St, Los Angeles, CA 90001" +282794,USB-C Charging Cable,1,11.95,11/16/19 19:20,"498 Lakeview St, Los Angeles, CA 90001" +282795,USB-C Charging Cable,1,11.95,11/30/19 19:41,"372 Hill St, San Francisco, CA 94016" +282796,USB-C Charging Cable,1,11.95,11/17/19 12:14,"223 14th St, Dallas, TX 75001" +282797,Lightning Charging Cable,1,14.95,11/25/19 23:24,"482 Forest St, San Francisco, CA 94016" +282798,AA Batteries (4-pack),1,3.84,11/26/19 09:31,"990 Lake St, Boston, MA 02215" +282799,27in FHD Monitor,1,149.99,11/18/19 09:22,"233 2nd St, Los Angeles, CA 90001" +282800,USB-C Charging Cable,1,11.95,11/23/19 14:32,"551 Forest St, Austin, TX 73301" +282801,AAA Batteries (4-pack),1,2.99,11/16/19 21:13,"924 Jefferson St, Austin, TX 73301" +282802,Wired Headphones,1,11.99,11/02/19 16:41,"480 Jackson St, Atlanta, GA 30301" +282803,USB-C Charging Cable,1,11.95,11/28/19 18:26,"617 5th St, Los Angeles, CA 90001" +282804,Apple Airpods Headphones,1,150,11/02/19 17:05,"722 Hill St, Boston, MA 02215" +282805,Google Phone,1,600,11/22/19 16:13,"222 9th St, San Francisco, CA 94016" +282806,USB-C Charging Cable,1,11.95,11/28/19 21:00,"186 Highland St, Seattle, WA 98101" +282807,Lightning Charging Cable,1,14.95,11/16/19 11:35,"453 Park St, Atlanta, GA 30301" +282808,AAA Batteries (4-pack),1,2.99,11/19/19 13:18,"756 Spruce St, Boston, MA 02215" +282809,27in 4K Gaming Monitor,1,389.99,11/17/19 14:50,"280 Sunset St, San Francisco, CA 94016" +282810,Bose SoundSport Headphones,1,99.99,11/11/19 21:54,"325 5th St, New York City, NY 10001" +282811,Apple Airpods Headphones,1,150,11/29/19 21:57,"536 Jackson St, San Francisco, CA 94016" +282812,Lightning Charging Cable,1,14.95,11/28/19 11:13,"492 12th St, New York City, NY 10001" +282813,27in FHD Monitor,1,149.99,11/14/19 10:43,"333 Cedar St, Atlanta, GA 30301" +282814,AAA Batteries (4-pack),1,2.99,11/17/19 12:51,"971 Meadow St, Los Angeles, CA 90001" +282815,Lightning Charging Cable,1,14.95,11/19/19 17:55,"203 2nd St, Austin, TX 73301" +282816,Lightning Charging Cable,1,14.95,11/13/19 12:17,"813 1st St, Dallas, TX 75001" +282817,Apple Airpods Headphones,1,150,11/24/19 22:20,"657 Park St, Boston, MA 02215" +282818,34in Ultrawide Monitor,1,379.99,11/24/19 17:24,"603 Dogwood St, Dallas, TX 75001" +282819,USB-C Charging Cable,1,11.95,11/15/19 11:06,"726 Jackson St, San Francisco, CA 94016" +282820,Lightning Charging Cable,1,14.95,11/22/19 19:55,"637 9th St, Dallas, TX 75001" +282821,AAA Batteries (4-pack),1,2.99,11/10/19 10:15,"730 Lincoln St, Austin, TX 73301" +282822,AA Batteries (4-pack),1,3.84,11/30/19 13:32,"385 Elm St, Atlanta, GA 30301" +282823,Flatscreen TV,1,300,11/11/19 17:38,"247 Wilson St, San Francisco, CA 94016" +282824,Lightning Charging Cable,1,14.95,11/15/19 21:52,"918 1st St, Portland, OR 97035" +282825,USB-C Charging Cable,1,11.95,11/16/19 15:28,"367 Park St, Los Angeles, CA 90001" +282826,Apple Airpods Headphones,1,150,11/08/19 14:50,"629 2nd St, New York City, NY 10001" +282827,AA Batteries (4-pack),1,3.84,11/02/19 18:49,"493 Lake St, San Francisco, CA 94016" +282828,Google Phone,1,600,11/28/19 11:21,"677 Willow St, San Francisco, CA 94016" +282829,Wired Headphones,1,11.99,11/25/19 16:10,"646 12th St, New York City, NY 10001" +282830,AA Batteries (4-pack),2,3.84,11/03/19 16:20,"353 South St, Austin, TX 73301" +282831,Apple Airpods Headphones,1,150,11/09/19 14:02,"327 5th St, San Francisco, CA 94016" +282832,20in Monitor,1,109.99,11/21/19 16:08,"257 Spruce St, Austin, TX 73301" +282833,AA Batteries (4-pack),1,3.84,11/02/19 09:32,"619 10th St, San Francisco, CA 94016" +282834,Wired Headphones,1,11.99,11/04/19 21:32,"886 Madison St, Los Angeles, CA 90001" +282835,ThinkPad Laptop,1,999.99,11/28/19 13:31,"103 7th St, San Francisco, CA 94016" +282836,USB-C Charging Cable,1,11.95,11/05/19 09:45,"550 12th St, Boston, MA 02215" +282837,AAA Batteries (4-pack),1,2.99,11/30/19 19:57,"601 8th St, San Francisco, CA 94016" +282838,27in FHD Monitor,1,149.99,11/15/19 13:53,"623 Cherry St, San Francisco, CA 94016" +282839,Bose SoundSport Headphones,1,99.99,11/11/19 18:10,"282 Sunset St, Seattle, WA 98101" +282840,Wired Headphones,2,11.99,11/30/19 19:07,"986 Willow St, Atlanta, GA 30301" +282841,Apple Airpods Headphones,1,150,11/04/19 14:22,"967 Chestnut St, Atlanta, GA 30301" +282842,Bose SoundSport Headphones,1,99.99,11/12/19 19:43,"777 14th St, Austin, TX 73301" +282843,Lightning Charging Cable,1,14.95,11/29/19 20:22,"695 Johnson St, Seattle, WA 98101" +282844,AAA Batteries (4-pack),2,2.99,11/27/19 10:59,"782 Lake St, Atlanta, GA 30301" +282845,USB-C Charging Cable,1,11.95,11/21/19 18:52,"564 Main St, Los Angeles, CA 90001" +282846,27in 4K Gaming Monitor,1,389.99,11/10/19 16:04,"623 Willow St, New York City, NY 10001" +282847,AAA Batteries (4-pack),1,2.99,11/17/19 20:51,"495 Cherry St, Atlanta, GA 30301" +282848,USB-C Charging Cable,1,11.95,11/05/19 13:03,"973 12th St, Dallas, TX 75001" +282849,Google Phone,1,600,11/06/19 14:54,"738 Madison St, New York City, NY 10001" +282849,USB-C Charging Cable,1,11.95,11/06/19 14:54,"738 Madison St, New York City, NY 10001" +282850,AAA Batteries (4-pack),1,2.99,11/09/19 12:25,"623 Sunset St, Los Angeles, CA 90001" +282851,Apple Airpods Headphones,1,150,11/17/19 09:31,"511 Chestnut St, New York City, NY 10001" +282852,Bose SoundSport Headphones,1,99.99,11/30/19 11:16,"826 Spruce St, Atlanta, GA 30301" +282853,Google Phone,1,600,11/25/19 18:02,"356 North St, Dallas, TX 75001" +282854,27in FHD Monitor,1,149.99,11/11/19 19:52,"643 Forest St, San Francisco, CA 94016" +282855,Bose SoundSport Headphones,1,99.99,11/25/19 09:53,"680 Hickory St, Dallas, TX 75001" +282856,Wired Headphones,1,11.99,11/12/19 19:54,"644 Washington St, Portland, OR 97035" +282857,Flatscreen TV,1,300,11/06/19 21:13,"451 South St, Boston, MA 02215" +282858,27in FHD Monitor,1,149.99,11/12/19 17:47,"263 Cedar St, Dallas, TX 75001" +282859,27in FHD Monitor,1,149.99,11/14/19 11:36,"710 Forest St, Los Angeles, CA 90001" +282860,USB-C Charging Cable,1,11.95,11/25/19 18:36,"314 Lakeview St, Los Angeles, CA 90001" +282861,Apple Airpods Headphones,2,150,11/05/19 11:42,"228 Washington St, Los Angeles, CA 90001" +282862,AA Batteries (4-pack),1,3.84,11/15/19 12:00,"299 Forest St, Los Angeles, CA 90001" +282863,Wired Headphones,1,11.99,11/02/19 20:21,"197 Maple St, Seattle, WA 98101" +282864,Apple Airpods Headphones,1,150,11/21/19 13:08,"25 5th St, Dallas, TX 75001" +282865,Macbook Pro Laptop,1,1700,11/17/19 02:54,"887 Hill St, Dallas, TX 75001" +282866,AAA Batteries (4-pack),1,2.99,11/22/19 15:05,"616 Willow St, Seattle, WA 98101" +282867,Wired Headphones,1,11.99,11/12/19 21:11,"306 Cedar St, San Francisco, CA 94016" +282868,Lightning Charging Cable,1,14.95,11/13/19 09:46,"468 Madison St, Atlanta, GA 30301" +282869,Apple Airpods Headphones,1,150,11/11/19 14:53,"2 Adams St, Seattle, WA 98101" +282870,Wired Headphones,1,11.99,11/28/19 12:27,"623 4th St, Seattle, WA 98101" +282871,AA Batteries (4-pack),2,3.84,11/27/19 10:37,"710 Highland St, Los Angeles, CA 90001" +282872,34in Ultrawide Monitor,1,379.99,11/28/19 01:01,"974 8th St, Seattle, WA 98101" +282873,34in Ultrawide Monitor,1,379.99,11/26/19 10:41,"738 Church St, San Francisco, CA 94016" +282874,USB-C Charging Cable,1,11.95,11/13/19 23:04,"413 Cherry St, Portland, OR 97035" +282875,AAA Batteries (4-pack),1,2.99,11/11/19 18:45,"35 11th St, Dallas, TX 75001" +282876,Wired Headphones,1,11.99,11/05/19 19:18,"1 Wilson St, Los Angeles, CA 90001" +282877,USB-C Charging Cable,1,11.95,11/11/19 12:37,"564 4th St, New York City, NY 10001" +282878,AAA Batteries (4-pack),1,2.99,11/07/19 20:35,"111 Hickory St, Dallas, TX 75001" +282879,AA Batteries (4-pack),1,3.84,11/25/19 23:10,"564 North St, New York City, NY 10001" +282880,27in 4K Gaming Monitor,1,389.99,11/14/19 19:09,"179 8th St, Portland, OR 97035" +282881,ThinkPad Laptop,1,999.99,11/21/19 22:41,"893 Washington St, Boston, MA 02215" +282882,AAA Batteries (4-pack),2,2.99,11/23/19 21:42,"607 Cherry St, New York City, NY 10001" +282883,27in 4K Gaming Monitor,1,389.99,11/27/19 22:53,"101 5th St, Los Angeles, CA 90001" +282884,Lightning Charging Cable,1,14.95,11/06/19 09:22,"203 Dogwood St, San Francisco, CA 94016" +282885,USB-C Charging Cable,1,11.95,11/23/19 14:26,"670 Cedar St, San Francisco, CA 94016" +282886,34in Ultrawide Monitor,1,379.99,11/23/19 10:17,"784 Willow St, Los Angeles, CA 90001" +282887,ThinkPad Laptop,1,999.99,11/06/19 04:13,"502 Chestnut St, San Francisco, CA 94016" +282888,AAA Batteries (4-pack),5,2.99,11/26/19 12:25,"554 Park St, Seattle, WA 98101" +282889,Apple Airpods Headphones,1,150,11/30/19 21:01,"276 South St, Portland, OR 97035" +282890,AAA Batteries (4-pack),6,2.99,11/08/19 00:44,"996 4th St, San Francisco, CA 94016" +282891,Lightning Charging Cable,1,14.95,11/17/19 11:23,"758 Ridge St, Portland, OR 97035" +282892,iPhone,1,700,11/22/19 18:15,"443 Dogwood St, Portland, OR 97035" +282893,AAA Batteries (4-pack),1,2.99,11/21/19 20:50,"430 Washington St, Seattle, WA 98101" +282894,Wired Headphones,1,11.99,11/25/19 06:42,"414 10th St, New York City, NY 10001" +282895,AA Batteries (4-pack),1,3.84,11/25/19 21:14,"866 Jackson St, Boston, MA 02215" +282896,Apple Airpods Headphones,1,150,11/15/19 11:22,"334 River St, Boston, MA 02215" +282897,ThinkPad Laptop,1,999.99,11/04/19 21:04,"65 Hill St, Portland, OR 97035" +282898,USB-C Charging Cable,1,11.95,11/24/19 16:22,"761 Chestnut St, San Francisco, CA 94016" +282899,27in 4K Gaming Monitor,1,389.99,11/28/19 12:33,"772 Main St, New York City, NY 10001" +282900,27in FHD Monitor,1,149.99,11/01/19 22:41,"210 Willow St, Los Angeles, CA 90001" +282901,Bose SoundSport Headphones,1,99.99,11/29/19 13:36,"846 1st St, Austin, TX 73301" +282902,USB-C Charging Cable,1,11.95,11/26/19 13:47,"889 2nd St, San Francisco, CA 94016" +282903,iPhone,1,700,11/28/19 01:22,"387 Lakeview St, San Francisco, CA 94016" +282903,Lightning Charging Cable,1,14.95,11/28/19 01:22,"387 Lakeview St, San Francisco, CA 94016" +282904,AAA Batteries (4-pack),4,2.99,11/26/19 08:28,"14 River St, Boston, MA 02215" +282905,Lightning Charging Cable,1,14.95,11/15/19 13:32,"823 Main St, Seattle, WA 98101" +282906,Apple Airpods Headphones,1,150,11/05/19 23:54,"640 1st St, Boston, MA 02215" +282907,ThinkPad Laptop,1,999.99,11/04/19 20:43,"760 Lincoln St, San Francisco, CA 94016" +282908,Bose SoundSport Headphones,1,99.99,11/28/19 21:55,"578 9th St, Los Angeles, CA 90001" +282909,Apple Airpods Headphones,1,150,11/11/19 11:58,"904 8th St, Los Angeles, CA 90001" +282910,USB-C Charging Cable,1,11.95,11/02/19 12:16,"953 Dogwood St, Los Angeles, CA 90001" +282911,AAA Batteries (4-pack),1,2.99,11/07/19 15:54,"98 Washington St, Dallas, TX 75001" +282912,AAA Batteries (4-pack),1,2.99,11/15/19 17:51,"665 9th St, Portland, OR 97035" +282913,ThinkPad Laptop,1,999.99,11/16/19 21:19,"970 Walnut St, Portland, OR 97035" +282914,AA Batteries (4-pack),1,3.84,11/05/19 19:44,"427 Lincoln St, Atlanta, GA 30301" +282915,Flatscreen TV,1,300,11/19/19 23:03,"935 Highland St, San Francisco, CA 94016" +282916,Flatscreen TV,1,300,11/14/19 13:28,"324 Madison St, Atlanta, GA 30301" +282917,AA Batteries (4-pack),1,3.84,11/04/19 22:49,"55 7th St, New York City, NY 10001" +282918,iPhone,1,700,11/26/19 20:16,"774 River St, Los Angeles, CA 90001" +282919,USB-C Charging Cable,1,11.95,11/02/19 16:01,"237 North St, San Francisco, CA 94016" +282920,Apple Airpods Headphones,1,150,11/28/19 10:43,"875 Lakeview St, New York City, NY 10001" +282921,Bose SoundSport Headphones,1,99.99,11/02/19 23:39,"43 Adams St, San Francisco, CA 94016" +282921,Lightning Charging Cable,1,14.95,11/02/19 23:39,"43 Adams St, San Francisco, CA 94016" +282922,Lightning Charging Cable,1,14.95,11/02/19 16:27,"804 Spruce St, San Francisco, CA 94016" +282923,Bose SoundSport Headphones,1,99.99,11/05/19 21:07,"801 River St, San Francisco, CA 94016" +282924,AA Batteries (4-pack),2,3.84,11/20/19 17:17,"936 Willow St, Atlanta, GA 30301" +282925,ThinkPad Laptop,1,999.99,11/12/19 18:56,"85 Park St, San Francisco, CA 94016" +282926,AAA Batteries (4-pack),1,2.99,11/22/19 00:25,"79 Madison St, Seattle, WA 98101" +282927,AAA Batteries (4-pack),2,2.99,11/05/19 06:32,"514 Cherry St, Los Angeles, CA 90001" +282928,Lightning Charging Cable,1,14.95,11/30/19 10:25,"507 Dogwood St, Atlanta, GA 30301" +282929,27in FHD Monitor,1,149.99,11/05/19 09:57,"301 Pine St, San Francisco, CA 94016" +282930,Macbook Pro Laptop,1,1700,11/05/19 10:15,"806 Dogwood St, New York City, NY 10001" +282931,iPhone,1,700,11/15/19 07:48,"978 Hickory St, San Francisco, CA 94016" +282932,AAA Batteries (4-pack),1,2.99,11/17/19 13:50,"574 10th St, Los Angeles, CA 90001" +282933,Bose SoundSport Headphones,1,99.99,11/11/19 09:50,"180 Center St, Portland, OR 97035" +282934,AAA Batteries (4-pack),2,2.99,11/23/19 15:48,"980 Willow St, Los Angeles, CA 90001" +282935,Lightning Charging Cable,1,14.95,11/24/19 22:35,"308 1st St, Seattle, WA 98101" +282936,Lightning Charging Cable,1,14.95,11/19/19 15:09,"290 2nd St, Boston, MA 02215" +282937,ThinkPad Laptop,1,999.99,11/27/19 13:17,"421 Wilson St, Boston, MA 02215" +282938,ThinkPad Laptop,1,999.99,11/17/19 14:59,"733 9th St, New York City, NY 10001" +282939,iPhone,1,700,11/22/19 07:47,"798 Hickory St, Dallas, TX 75001" +282940,Wired Headphones,1,11.99,11/08/19 18:10,"24 6th St, San Francisco, CA 94016" +282941,27in 4K Gaming Monitor,1,389.99,11/01/19 08:58,"208 Madison St, Atlanta, GA 30301" +282942,Wired Headphones,1,11.99,11/03/19 19:55,"40 Sunset St, Los Angeles, CA 90001" +282943,Bose SoundSport Headphones,1,99.99,11/11/19 22:45,"138 2nd St, Los Angeles, CA 90001" +282944,AA Batteries (4-pack),1,3.84,11/16/19 08:09,"812 11th St, San Francisco, CA 94016" +282945,AAA Batteries (4-pack),3,2.99,11/10/19 14:42,"449 Walnut St, Portland, OR 97035" +282946,Lightning Charging Cable,1,14.95,11/01/19 10:37,"371 Walnut St, Boston, MA 02215" +282947,Bose SoundSport Headphones,1,99.99,11/13/19 14:11,"745 Meadow St, Atlanta, GA 30301" +282948,AA Batteries (4-pack),1,3.84,11/23/19 18:39,"57 9th St, Los Angeles, CA 90001" +282949,Lightning Charging Cable,1,14.95,11/16/19 11:05,"615 5th St, Boston, MA 02215" +282950,AA Batteries (4-pack),1,3.84,11/20/19 09:33,"883 Sunset St, Boston, MA 02215" +282951,ThinkPad Laptop,1,999.99,11/06/19 17:05,"235 1st St, San Francisco, CA 94016" +282952,Bose SoundSport Headphones,1,99.99,11/13/19 13:52,"214 Hill St, New York City, NY 10001" +282953,AAA Batteries (4-pack),2,2.99,11/19/19 12:40,"346 Church St, Boston, MA 02215" +282954,AA Batteries (4-pack),3,3.84,11/30/19 17:28,"59 Dogwood St, New York City, NY 10001" +282955,Apple Airpods Headphones,1,150,11/05/19 17:02,"488 Cherry St, Los Angeles, CA 90001" +282956,AA Batteries (4-pack),1,3.84,11/30/19 13:46,"934 Cedar St, San Francisco, CA 94016" +282957,AAA Batteries (4-pack),1,2.99,11/04/19 20:17,"794 8th St, Austin, TX 73301" +282958,Lightning Charging Cable,1,14.95,11/21/19 18:59,"381 Elm St, Dallas, TX 75001" +282959,Wired Headphones,1,11.99,11/19/19 11:53,"803 Main St, Austin, TX 73301" +282960,Lightning Charging Cable,1,14.95,11/01/19 14:38,"343 Hill St, San Francisco, CA 94016" +282961,Google Phone,1,600,11/20/19 11:20,"824 Jackson St, Boston, MA 02215" +282962,USB-C Charging Cable,1,11.95,11/01/19 12:44,"465 North St, Seattle, WA 98101" +282963,USB-C Charging Cable,1,11.95,11/11/19 13:51,"714 North St, Los Angeles, CA 90001" +282964,Macbook Pro Laptop,1,1700,11/24/19 10:43,"912 Cherry St, Boston, MA 02215" +282965,iPhone,1,700,11/02/19 05:12,"825 South St, San Francisco, CA 94016" +282966,Wired Headphones,1,11.99,11/01/19 15:11,"763 South St, San Francisco, CA 94016" +282967,Wired Headphones,2,11.99,11/28/19 15:48,"796 Meadow St, San Francisco, CA 94016" +282968,Macbook Pro Laptop,1,1700,11/04/19 23:12,"638 13th St, San Francisco, CA 94016" +282969,ThinkPad Laptop,1,999.99,11/21/19 22:28,"382 7th St, Atlanta, GA 30301" +282970,ThinkPad Laptop,1,999.99,11/08/19 19:56,"106 10th St, New York City, NY 10001" +282971,AAA Batteries (4-pack),1,2.99,11/28/19 22:56,"169 1st St, Los Angeles, CA 90001" +282972,AAA Batteries (4-pack),1,2.99,11/16/19 03:03,"741 Lincoln St, Seattle, WA 98101" +282973,AA Batteries (4-pack),1,3.84,11/14/19 07:55,"822 Dogwood St, San Francisco, CA 94016" +282974,34in Ultrawide Monitor,1,379.99,11/13/19 13:13,"477 1st St, New York City, NY 10001" +282975,Lightning Charging Cable,1,14.95,11/13/19 11:43,"346 Jefferson St, Boston, MA 02215" +282976,Google Phone,1,600,11/27/19 19:27,"738 Church St, Los Angeles, CA 90001" +282976,AAA Batteries (4-pack),1,2.99,11/27/19 19:27,"738 Church St, Los Angeles, CA 90001" +282977,USB-C Charging Cable,1,11.95,11/14/19 07:36,"129 Pine St, Seattle, WA 98101" +282978,Bose SoundSport Headphones,1,99.99,11/04/19 23:33,"33 Adams St, Los Angeles, CA 90001" +282979,Bose SoundSport Headphones,1,99.99,11/13/19 06:45,"962 13th St, Los Angeles, CA 90001" +282980,34in Ultrawide Monitor,1,379.99,11/14/19 18:48,"154 Highland St, San Francisco, CA 94016" +282981,Lightning Charging Cable,1,14.95,11/22/19 00:18,"251 2nd St, New York City, NY 10001" +282982,AA Batteries (4-pack),2,3.84,11/28/19 11:04,"343 Hill St, Boston, MA 02215" +282983,USB-C Charging Cable,1,11.95,11/23/19 15:28,"901 Willow St, Los Angeles, CA 90001" +282984,AAA Batteries (4-pack),2,2.99,11/29/19 09:01,"527 Lakeview St, Portland, OR 97035" +282985,Lightning Charging Cable,1,14.95,11/16/19 21:59,"877 River St, Dallas, TX 75001" +282986,27in 4K Gaming Monitor,1,389.99,11/20/19 11:57,"388 Forest St, Boston, MA 02215" +282987,ThinkPad Laptop,1,999.99,11/26/19 21:37,"363 Elm St, Dallas, TX 75001" +282988,27in 4K Gaming Monitor,1,389.99,11/09/19 22:27,"344 Lake St, Los Angeles, CA 90001" +282989,USB-C Charging Cable,1,11.95,11/03/19 13:03,"583 10th St, Portland, OR 97035" +282990,iPhone,1,700,11/25/19 17:50,"146 1st St, Boston, MA 02215" +282991,iPhone,1,700,11/15/19 09:59,"791 Church St, Los Angeles, CA 90001" +282992,AAA Batteries (4-pack),1,2.99,11/05/19 20:14,"194 Johnson St, New York City, NY 10001" +282993,USB-C Charging Cable,1,11.95,11/29/19 07:53,"884 Washington St, New York City, NY 10001" +282994,Lightning Charging Cable,1,14.95,11/25/19 21:09,"214 Adams St, Portland, OR 97035" +282995,27in 4K Gaming Monitor,1,389.99,11/15/19 20:17,"14 Elm St, San Francisco, CA 94016" +282996,Flatscreen TV,1,300,11/24/19 21:23,"413 10th St, San Francisco, CA 94016" +282997,Macbook Pro Laptop,1,1700,11/26/19 10:55,"273 Lakeview St, New York City, NY 10001" +282998,AAA Batteries (4-pack),1,2.99,11/05/19 10:03,"269 Forest St, Austin, TX 73301" +282999,Wired Headphones,2,11.99,11/12/19 14:09,"923 Lake St, Seattle, WA 98101" +283000,Apple Airpods Headphones,1,150,11/16/19 10:29,"378 Jefferson St, Atlanta, GA 30301" +283001,34in Ultrawide Monitor,1,379.99,11/07/19 23:48,"19 Lakeview St, Boston, MA 02215" +283002,Wired Headphones,1,11.99,11/14/19 16:15,"410 Chestnut St, Los Angeles, CA 90001" +283003,USB-C Charging Cable,1,11.95,11/07/19 21:08,"621 Center St, Portland, OR 97035" +283004,20in Monitor,1,109.99,11/15/19 16:13,"134 Hickory St, Los Angeles, CA 90001" +283005,AAA Batteries (4-pack),3,2.99,11/23/19 10:11,"889 North St, Portland, OR 97035" +283006,AA Batteries (4-pack),2,3.84,11/02/19 08:26,"252 Hill St, San Francisco, CA 94016" +283007,Lightning Charging Cable,1,14.95,11/14/19 16:15,"691 4th St, San Francisco, CA 94016" +283008,iPhone,1,700,11/17/19 00:10,"389 5th St, Portland, OR 97035" +283009,AAA Batteries (4-pack),1,2.99,11/21/19 14:08,"747 7th St, New York City, NY 10001" +283010,Wired Headphones,1,11.99,11/13/19 18:12,"504 Forest St, Atlanta, GA 30301" +283011,Wired Headphones,1,11.99,11/18/19 23:58,"439 8th St, Los Angeles, CA 90001" +283012,34in Ultrawide Monitor,1,379.99,11/19/19 07:18,"866 Ridge St, New York City, NY 10001" +283013,34in Ultrawide Monitor,1,379.99,11/07/19 21:23,"767 River St, San Francisco, CA 94016" +283014,27in 4K Gaming Monitor,1,389.99,11/25/19 14:20,"23 Meadow St, Los Angeles, CA 90001" +283015,Flatscreen TV,1,300,11/06/19 16:19,"276 Church St, Los Angeles, CA 90001" +283016,Bose SoundSport Headphones,1,99.99,11/09/19 22:00,"926 Meadow St, Seattle, WA 98101" +283017,27in 4K Gaming Monitor,1,389.99,11/09/19 07:21,"988 Wilson St, Atlanta, GA 30301" +283018,AAA Batteries (4-pack),1,2.99,11/14/19 16:13,"415 5th St, Los Angeles, CA 90001" +283019,ThinkPad Laptop,1,999.99,11/23/19 07:03,"269 Lincoln St, Los Angeles, CA 90001" +283020,Lightning Charging Cable,1,14.95,11/06/19 10:12,"886 Main St, Atlanta, GA 30301" +283021,AA Batteries (4-pack),1,3.84,11/27/19 17:34,"638 Lincoln St, San Francisco, CA 94016" +283022,Vareebadd Phone,1,400,11/27/19 22:25,"327 7th St, San Francisco, CA 94016" +283023,Lightning Charging Cable,1,14.95,11/10/19 21:11,"718 Spruce St, Atlanta, GA 30301" +283024,Wired Headphones,2,11.99,11/03/19 15:57,"194 Cedar St, Seattle, WA 98101" +283025,Lightning Charging Cable,1,14.95,11/09/19 17:15,"994 Sunset St, San Francisco, CA 94016" +283026,20in Monitor,1,109.99,11/02/19 17:35,"103 Walnut St, New York City, NY 10001" +283027,AA Batteries (4-pack),4,3.84,11/19/19 20:37,"122 Elm St, New York City, NY 10001" +283027,AAA Batteries (4-pack),2,2.99,11/19/19 20:37,"122 Elm St, New York City, NY 10001" +283028,Wired Headphones,1,11.99,11/08/19 12:29,"594 Lakeview St, San Francisco, CA 94016" +283029,AA Batteries (4-pack),1,3.84,11/16/19 21:39,"234 North St, Dallas, TX 75001" +283030,iPhone,1,700,11/25/19 20:54,"107 2nd St, San Francisco, CA 94016" +283030,Lightning Charging Cable,1,14.95,11/25/19 20:54,"107 2nd St, San Francisco, CA 94016" +283031,Wired Headphones,1,11.99,11/30/19 15:52,"139 8th St, New York City, NY 10001" +283032,Wired Headphones,1,11.99,11/13/19 06:45,"339 West St, San Francisco, CA 94016" +283033,Wired Headphones,1,11.99,11/10/19 08:48,"321 Dogwood St, San Francisco, CA 94016" +283034,AA Batteries (4-pack),2,3.84,11/04/19 14:50,"674 Sunset St, San Francisco, CA 94016" +283035,AA Batteries (4-pack),1,3.84,11/30/19 10:51,"296 Adams St, Atlanta, GA 30301" +283036,AA Batteries (4-pack),1,3.84,11/28/19 08:21,"318 Cedar St, New York City, NY 10001" +283037,USB-C Charging Cable,1,11.95,11/15/19 17:48,"569 Hickory St, Dallas, TX 75001" +283038,iPhone,1,700,11/26/19 20:24,"789 Main St, New York City, NY 10001" +283039,Bose SoundSport Headphones,1,99.99,11/16/19 08:59,"734 North St, Portland, OR 97035" +283040,USB-C Charging Cable,1,11.95,11/22/19 18:39,"998 Jackson St, Dallas, TX 75001" +283041,Apple Airpods Headphones,2,150,11/25/19 10:52,"71 West St, Boston, MA 02215" +283042,34in Ultrawide Monitor,1,379.99,11/04/19 08:53,"272 West St, Seattle, WA 98101" +283043,Vareebadd Phone,1,400,11/06/19 22:08,"35 West St, Portland, ME 04101" +283043,USB-C Charging Cable,2,11.95,11/06/19 22:08,"35 West St, Portland, ME 04101" +283044,USB-C Charging Cable,1,11.95,11/13/19 18:09,"216 Washington St, Dallas, TX 75001" +283045,AA Batteries (4-pack),1,3.84,11/19/19 23:23,"230 Chestnut St, New York City, NY 10001" +283046,20in Monitor,1,109.99,11/19/19 11:14,"241 Cedar St, Los Angeles, CA 90001" +283047,Lightning Charging Cable,1,14.95,11/10/19 07:09,"286 12th St, Los Angeles, CA 90001" +283048,Apple Airpods Headphones,1,150,11/21/19 09:29,"623 Cherry St, Los Angeles, CA 90001" +283049,Bose SoundSport Headphones,1,99.99,11/10/19 15:34,"904 13th St, New York City, NY 10001" +283050,AA Batteries (4-pack),1,3.84,11/13/19 10:58,"490 Hill St, Austin, TX 73301" +283051,Lightning Charging Cable,1,14.95,11/30/19 14:02,"409 Ridge St, Portland, OR 97035" +283052,USB-C Charging Cable,1,11.95,11/22/19 20:38,"142 Willow St, Boston, MA 02215" +283052,Flatscreen TV,1,300,11/22/19 20:38,"142 Willow St, Boston, MA 02215" +283053,Bose SoundSport Headphones,1,99.99,11/09/19 22:39,"323 Meadow St, Los Angeles, CA 90001" +283054,Google Phone,1,600,11/27/19 11:34,"445 Jefferson St, San Francisco, CA 94016" +283054,USB-C Charging Cable,1,11.95,11/27/19 11:34,"445 Jefferson St, San Francisco, CA 94016" +283055,27in FHD Monitor,1,149.99,11/22/19 09:04,"72 Johnson St, Los Angeles, CA 90001" +283056,Apple Airpods Headphones,1,150,11/06/19 05:38,"784 Ridge St, San Francisco, CA 94016" +283057,Wired Headphones,1,11.99,11/14/19 12:19,"161 Pine St, San Francisco, CA 94016" +283058,AAA Batteries (4-pack),2,2.99,11/13/19 10:44,"425 North St, Atlanta, GA 30301" +283059,AA Batteries (4-pack),1,3.84,11/24/19 22:18,"17 Washington St, New York City, NY 10001" +283060,27in FHD Monitor,1,149.99,11/28/19 20:48,"664 Spruce St, Dallas, TX 75001" +283061,34in Ultrawide Monitor,1,379.99,11/23/19 20:57,"820 Dogwood St, Seattle, WA 98101" +283061,AAA Batteries (4-pack),1,2.99,11/23/19 20:57,"820 Dogwood St, Seattle, WA 98101" +283062,Flatscreen TV,1,300,11/01/19 18:48,"26 Walnut St, Austin, TX 73301" +283063,AA Batteries (4-pack),1,3.84,11/17/19 21:51,"307 Madison St, San Francisco, CA 94016" +283064,Lightning Charging Cable,1,14.95,11/01/19 15:45,"452 Forest St, Dallas, TX 75001" +283065,AA Batteries (4-pack),2,3.84,11/25/19 21:58,"568 Wilson St, Los Angeles, CA 90001" +283066,USB-C Charging Cable,1,11.95,11/16/19 08:44,"791 Ridge St, Boston, MA 02215" +283067,Wired Headphones,1,11.99,11/13/19 14:10,"539 Madison St, Portland, OR 97035" +283068,Wired Headphones,1,11.99,11/10/19 17:13,"379 10th St, San Francisco, CA 94016" +283069,Apple Airpods Headphones,1,150,11/24/19 08:40,"812 Park St, Boston, MA 02215" +283070,AA Batteries (4-pack),1,3.84,11/13/19 14:21,"670 Washington St, San Francisco, CA 94016" +283071,Bose SoundSport Headphones,1,99.99,11/19/19 11:27,"759 Wilson St, San Francisco, CA 94016" +283072,AA Batteries (4-pack),2,3.84,11/22/19 10:39,"489 13th St, San Francisco, CA 94016" +283073,Lightning Charging Cable,1,14.95,11/17/19 13:36,"987 5th St, Boston, MA 02215" +283074,USB-C Charging Cable,1,11.95,11/14/19 16:48,"385 9th St, Portland, OR 97035" +283075,Lightning Charging Cable,1,14.95,11/04/19 16:37,"591 10th St, Portland, OR 97035" +283076,Wired Headphones,2,11.99,11/11/19 11:53,"383 10th St, Seattle, WA 98101" +283077,USB-C Charging Cable,1,11.95,11/14/19 17:02,"93 Pine St, New York City, NY 10001" +283078,USB-C Charging Cable,1,11.95,11/25/19 16:32,"864 8th St, New York City, NY 10001" +283079,Wired Headphones,1,11.99,11/26/19 10:34,"306 Church St, San Francisco, CA 94016" +283080,27in FHD Monitor,1,149.99,11/14/19 10:47,"541 Lakeview St, Boston, MA 02215" +283081,USB-C Charging Cable,1,11.95,11/24/19 02:18,"335 1st St, Atlanta, GA 30301" +283082,AA Batteries (4-pack),1,3.84,11/03/19 21:18,"334 Pine St, Los Angeles, CA 90001" +283083,27in FHD Monitor,1,149.99,11/09/19 15:42,"885 Park St, Boston, MA 02215" +283084,iPhone,1,700,11/22/19 18:29,"637 River St, San Francisco, CA 94016" +283084,Lightning Charging Cable,1,14.95,11/22/19 18:29,"637 River St, San Francisco, CA 94016" +283085,Lightning Charging Cable,1,14.95,11/04/19 19:27,"562 7th St, Austin, TX 73301" +283086,27in FHD Monitor,1,149.99,11/28/19 09:40,"854 Hickory St, New York City, NY 10001" +283087,Wired Headphones,1,11.99,11/23/19 12:08,"481 10th St, Portland, OR 97035" +283088,Wired Headphones,2,11.99,11/03/19 19:00,"643 11th St, San Francisco, CA 94016" +283089,27in 4K Gaming Monitor,1,389.99,11/23/19 20:22,"654 Johnson St, San Francisco, CA 94016" +283090,34in Ultrawide Monitor,1,379.99,11/01/19 22:35,"617 Washington St, Los Angeles, CA 90001" +283091,Lightning Charging Cable,1,14.95,11/12/19 12:34,"437 1st St, Atlanta, GA 30301" +283092,Flatscreen TV,1,300,11/06/19 10:30,"467 Willow St, Boston, MA 02215" +283093,Apple Airpods Headphones,1,150,11/02/19 09:07,"147 River St, San Francisco, CA 94016" +283094,iPhone,1,700,11/16/19 14:19,"288 Dogwood St, Boston, MA 02215" +283094,Lightning Charging Cable,1,14.95,11/16/19 14:19,"288 Dogwood St, Boston, MA 02215" +283095,Apple Airpods Headphones,1,150,11/18/19 22:03,"696 Pine St, Los Angeles, CA 90001" +283096,USB-C Charging Cable,1,11.95,11/16/19 07:43,"934 West St, New York City, NY 10001" +283097,Bose SoundSport Headphones,1,99.99,11/21/19 12:35,"765 Washington St, Dallas, TX 75001" +283098,AA Batteries (4-pack),4,3.84,11/13/19 01:14,"977 9th St, Los Angeles, CA 90001" +283099,AA Batteries (4-pack),1,3.84,11/20/19 19:00,"480 Washington St, Portland, ME 04101" +283100,USB-C Charging Cable,1,11.95,11/14/19 18:41,"203 Park St, San Francisco, CA 94016" +283101,Lightning Charging Cable,1,14.95,11/06/19 13:52,"811 Chestnut St, New York City, NY 10001" +283102,Wired Headphones,1,11.99,11/08/19 14:30,"33 Wilson St, San Francisco, CA 94016" +283103,USB-C Charging Cable,1,11.95,11/15/19 09:39,"558 Cedar St, Los Angeles, CA 90001" +283104,Lightning Charging Cable,1,14.95,11/10/19 15:16,"763 Pine St, Dallas, TX 75001" +283105,27in 4K Gaming Monitor,1,389.99,11/19/19 10:56,"196 Chestnut St, Boston, MA 02215" +283106,Lightning Charging Cable,1,14.95,11/10/19 14:36,"967 Walnut St, San Francisco, CA 94016" +283107,Wired Headphones,1,11.99,11/17/19 09:29,"170 Sunset St, Los Angeles, CA 90001" +283108,34in Ultrawide Monitor,1,379.99,11/11/19 20:52,"952 Lincoln St, Atlanta, GA 30301" +283109,AAA Batteries (4-pack),1,2.99,11/18/19 21:41,"262 11th St, Los Angeles, CA 90001" +283110,Lightning Charging Cable,1,14.95,11/24/19 00:01,"917 11th St, San Francisco, CA 94016" +283111,iPhone,1,700,11/26/19 15:40,"368 Willow St, Dallas, TX 75001" +283112,Lightning Charging Cable,1,14.95,11/09/19 19:13,"598 Center St, San Francisco, CA 94016" +283113,ThinkPad Laptop,1,999.99,11/20/19 09:54,"115 Pine St, Dallas, TX 75001" +283114,Bose SoundSport Headphones,1,99.99,11/19/19 09:14,"607 Jackson St, Portland, ME 04101" +283115,iPhone,1,700,11/25/19 13:42,"8 Hickory St, Boston, MA 02215" +283116,Macbook Pro Laptop,1,1700,11/08/19 19:20,"853 Hill St, San Francisco, CA 94016" +283117,Google Phone,1,600,11/17/19 15:59,"534 Walnut St, New York City, NY 10001" +283118,Flatscreen TV,1,300,12/01/19 00:23,"40 Park St, New York City, NY 10001" +283119,Wired Headphones,1,11.99,11/20/19 18:13,"39 Meadow St, Seattle, WA 98101" +283120,USB-C Charging Cable,1,11.95,11/06/19 22:47,"382 14th St, Boston, MA 02215" +283121,Google Phone,1,600,11/19/19 11:17,"658 Jefferson St, Portland, OR 97035" +283121,USB-C Charging Cable,1,11.95,11/19/19 11:17,"658 Jefferson St, Portland, OR 97035" +283121,Bose SoundSport Headphones,1,99.99,11/19/19 11:17,"658 Jefferson St, Portland, OR 97035" +283122,Apple Airpods Headphones,1,150,11/21/19 09:09,"813 14th St, Boston, MA 02215" +283123,Lightning Charging Cable,1,14.95,11/13/19 14:50,"223 Walnut St, Austin, TX 73301" +283124,Bose SoundSport Headphones,1,99.99,11/04/19 17:59,"116 8th St, San Francisco, CA 94016" +283124,AA Batteries (4-pack),1,3.84,11/04/19 17:59,"116 8th St, San Francisco, CA 94016" +283125,Bose SoundSport Headphones,1,99.99,11/23/19 10:24,"936 Lincoln St, Austin, TX 73301" +283126,iPhone,1,700,11/19/19 18:47,"395 Adams St, Dallas, TX 75001" +283127,27in FHD Monitor,1,149.99,11/10/19 21:35,"296 Lake St, Atlanta, GA 30301" +283128,Lightning Charging Cable,1,14.95,11/24/19 20:35,"892 Madison St, Seattle, WA 98101" +283129,AA Batteries (4-pack),1,3.84,11/01/19 20:23,"80 Adams St, San Francisco, CA 94016" +283130,Lightning Charging Cable,1,14.95,11/13/19 08:27,"260 Walnut St, San Francisco, CA 94016" +283131,Macbook Pro Laptop,1,1700,11/16/19 10:13,"39 9th St, Seattle, WA 98101" +283132,AA Batteries (4-pack),1,3.84,11/19/19 08:51,"826 Cherry St, New York City, NY 10001" +283133,USB-C Charging Cable,2,11.95,11/01/19 17:08,"201 Lake St, Los Angeles, CA 90001" +283134,27in 4K Gaming Monitor,1,389.99,11/30/19 00:48,"340 Forest St, Atlanta, GA 30301" +283135,Macbook Pro Laptop,1,1700,11/28/19 21:54,"641 4th St, Dallas, TX 75001" +283136,Macbook Pro Laptop,1,1700,11/17/19 12:40,"464 River St, San Francisco, CA 94016" +283137,AA Batteries (4-pack),1,3.84,11/13/19 17:03,"763 Main St, Portland, OR 97035" +283138,USB-C Charging Cable,1,11.95,11/01/19 15:36,"736 Center St, New York City, NY 10001" +283139,USB-C Charging Cable,1,11.95,11/23/19 13:39,"314 Spruce St, Atlanta, GA 30301" +283140,AAA Batteries (4-pack),1,2.99,11/19/19 14:16,"550 Forest St, Seattle, WA 98101" +283141,34in Ultrawide Monitor,1,379.99,11/23/19 08:30,"367 Lake St, San Francisco, CA 94016" +283142,27in FHD Monitor,1,149.99,11/18/19 23:10,"36 Hill St, Portland, OR 97035" +283142,Wired Headphones,1,11.99,11/18/19 23:10,"36 Hill St, Portland, OR 97035" +283143,Lightning Charging Cable,1,14.95,11/10/19 11:52,"925 Lincoln St, New York City, NY 10001" +283144,AAA Batteries (4-pack),1,2.99,11/01/19 06:27,"366 Park St, Atlanta, GA 30301" +283145,Flatscreen TV,1,300,11/09/19 15:55,"153 Park St, San Francisco, CA 94016" +283146,AA Batteries (4-pack),1,3.84,11/10/19 10:28,"329 Washington St, Boston, MA 02215" +283147,AAA Batteries (4-pack),1,2.99,11/27/19 22:43,"484 Cherry St, Boston, MA 02215" +283148,Wired Headphones,2,11.99,11/18/19 08:46,"786 Lakeview St, Portland, OR 97035" +283149,Lightning Charging Cable,1,14.95,11/30/19 18:02,"737 Cedar St, Dallas, TX 75001" +283150,Vareebadd Phone,1,400,11/22/19 14:49,"716 Ridge St, San Francisco, CA 94016" +283151,Wired Headphones,1,11.99,11/27/19 15:52,"272 5th St, Dallas, TX 75001" +283152,ThinkPad Laptop,1,999.99,11/22/19 21:31,"776 11th St, Portland, ME 04101" +283153,Apple Airpods Headphones,1,150,11/15/19 13:46,"20 Dogwood St, Boston, MA 02215" +283154,20in Monitor,1,109.99,11/10/19 00:25,"701 Center St, Los Angeles, CA 90001" +283155,USB-C Charging Cable,1,11.95,11/26/19 08:03,"608 Hickory St, Dallas, TX 75001" +283156,27in FHD Monitor,1,149.99,11/17/19 17:03,"879 1st St, New York City, NY 10001" +283157,Wired Headphones,1,11.99,11/06/19 19:56,"263 Johnson St, Atlanta, GA 30301" +283158,Lightning Charging Cable,1,14.95,11/14/19 16:26,"945 Hickory St, San Francisco, CA 94016" +283159,USB-C Charging Cable,1,11.95,11/19/19 11:46,"39 11th St, Los Angeles, CA 90001" +283160,Vareebadd Phone,1,400,11/12/19 07:14,"477 Lakeview St, San Francisco, CA 94016" +283161,20in Monitor,1,109.99,11/25/19 09:12,"634 Washington St, San Francisco, CA 94016" +283162,AAA Batteries (4-pack),3,2.99,11/21/19 22:42,"343 9th St, San Francisco, CA 94016" +283163,Flatscreen TV,1,300,11/29/19 19:24,"791 Maple St, Austin, TX 73301" +283164,Macbook Pro Laptop,1,1700,11/07/19 18:43,"996 Main St, Austin, TX 73301" +283165,20in Monitor,1,109.99,11/25/19 00:16,"933 12th St, Boston, MA 02215" +283166,Wired Headphones,2,11.99,11/20/19 17:52,"350 Sunset St, San Francisco, CA 94016" +283166,Lightning Charging Cable,1,14.95,11/20/19 17:52,"350 Sunset St, San Francisco, CA 94016" +283167,Wired Headphones,1,11.99,11/18/19 16:35,"550 Hill St, New York City, NY 10001" +283168,USB-C Charging Cable,1,11.95,11/09/19 12:13,"411 Willow St, San Francisco, CA 94016" +283169,Apple Airpods Headphones,1,150,11/24/19 18:15,"85 Madison St, Los Angeles, CA 90001" +283170,AA Batteries (4-pack),1,3.84,11/19/19 16:04,"368 Cherry St, San Francisco, CA 94016" +283171,Flatscreen TV,1,300,11/17/19 15:08,"600 11th St, Dallas, TX 75001" +283172,USB-C Charging Cable,1,11.95,11/08/19 10:35,"185 Lake St, Portland, OR 97035" +283173,Bose SoundSport Headphones,1,99.99,11/24/19 22:13,"462 Meadow St, Los Angeles, CA 90001" +283174,Lightning Charging Cable,1,14.95,11/06/19 06:03,"207 Chestnut St, Los Angeles, CA 90001" +283175,AAA Batteries (4-pack),2,2.99,11/09/19 08:09,"579 Dogwood St, Seattle, WA 98101" +283176,34in Ultrawide Monitor,1,379.99,11/26/19 17:56,"57 Lake St, San Francisco, CA 94016" +283176,iPhone,1,700,11/26/19 17:56,"57 Lake St, San Francisco, CA 94016" +283177,Apple Airpods Headphones,1,150,11/28/19 09:56,"153 Dogwood St, New York City, NY 10001" +283178,USB-C Charging Cable,1,11.95,11/11/19 21:14,"84 Lakeview St, Atlanta, GA 30301" +283179,Lightning Charging Cable,1,14.95,11/28/19 16:17,"936 1st St, New York City, NY 10001" +283180,USB-C Charging Cable,1,11.95,11/29/19 14:26,"296 Hill St, Los Angeles, CA 90001" +283181,Apple Airpods Headphones,1,150,11/29/19 10:18,"558 4th St, New York City, NY 10001" +283182,27in FHD Monitor,1,149.99,11/30/19 20:30,"81 2nd St, New York City, NY 10001" +283183,AA Batteries (4-pack),1,3.84,11/05/19 15:30,"566 Lake St, New York City, NY 10001" +283184,AAA Batteries (4-pack),2,2.99,11/08/19 00:26,"816 1st St, Los Angeles, CA 90001" +283185,USB-C Charging Cable,1,11.95,11/02/19 21:43,"980 Adams St, Los Angeles, CA 90001" +283186,Bose SoundSport Headphones,1,99.99,11/24/19 22:13,"724 12th St, San Francisco, CA 94016" +283187,34in Ultrawide Monitor,1,379.99,11/08/19 15:01,"301 10th St, New York City, NY 10001" +283188,AA Batteries (4-pack),1,3.84,11/13/19 08:51,"79 Maple St, Portland, OR 97035" +283189,LG Dryer,1,600.0,11/26/19 17:52,"836 13th St, San Francisco, CA 94016" +283190,Flatscreen TV,1,300,11/01/19 20:04,"264 Forest St, Atlanta, GA 30301" +283191,USB-C Charging Cable,1,11.95,11/26/19 10:29,"614 Hickory St, Atlanta, GA 30301" +283192,USB-C Charging Cable,1,11.95,11/27/19 07:12,"85 West St, San Francisco, CA 94016" +283193,Apple Airpods Headphones,1,150,11/07/19 12:46,"619 2nd St, San Francisco, CA 94016" +283194,USB-C Charging Cable,1,11.95,11/27/19 12:43,"915 Ridge St, Austin, TX 73301" +283195,Lightning Charging Cable,1,14.95,11/11/19 09:40,"850 Pine St, Portland, OR 97035" +283196,USB-C Charging Cable,2,11.95,11/29/19 18:43,"655 12th St, Los Angeles, CA 90001" +283197,AA Batteries (4-pack),3,3.84,11/29/19 20:47,"943 12th St, Atlanta, GA 30301" +283198,27in FHD Monitor,1,149.99,11/14/19 19:31,"560 8th St, San Francisco, CA 94016" +283199,Lightning Charging Cable,1,14.95,11/26/19 10:05,"216 Maple St, New York City, NY 10001" +283200,20in Monitor,1,109.99,11/23/19 00:41,"53 Wilson St, Seattle, WA 98101" +283201,Wired Headphones,1,11.99,11/26/19 08:46,"99 11th St, Dallas, TX 75001" +283202,Apple Airpods Headphones,1,150,11/02/19 21:31,"781 Lakeview St, New York City, NY 10001" +283203,AA Batteries (4-pack),1,3.84,11/12/19 21:53,"285 Spruce St, Seattle, WA 98101" +283204,Wired Headphones,1,11.99,11/10/19 17:57,"999 10th St, Los Angeles, CA 90001" +283205,Bose SoundSport Headphones,1,99.99,11/01/19 14:59,"204 Lakeview St, New York City, NY 10001" +283206,AAA Batteries (4-pack),1,2.99,11/26/19 17:18,"813 11th St, San Francisco, CA 94016" +283207,ThinkPad Laptop,1,999.99,11/14/19 09:17,"287 Wilson St, San Francisco, CA 94016" +283208,Bose SoundSport Headphones,1,99.99,11/16/19 13:12,"631 11th St, Boston, MA 02215" +283209,AAA Batteries (4-pack),1,2.99,11/19/19 13:10,"432 Pine St, San Francisco, CA 94016" +283210,USB-C Charging Cable,1,11.95,11/22/19 09:30,"657 Jefferson St, San Francisco, CA 94016" +283211,Apple Airpods Headphones,1,150,11/27/19 19:03,"705 Main St, Portland, OR 97035" +283212,Macbook Pro Laptop,1,1700,11/24/19 21:36,"517 10th St, San Francisco, CA 94016" +283213,AA Batteries (4-pack),2,3.84,11/01/19 13:41,"295 West St, New York City, NY 10001" +283214,USB-C Charging Cable,1,11.95,11/30/19 00:10,"387 2nd St, Atlanta, GA 30301" +283215,USB-C Charging Cable,1,11.95,11/01/19 08:15,"656 Forest St, New York City, NY 10001" +283216,Flatscreen TV,1,300,11/07/19 15:27,"700 13th St, San Francisco, CA 94016" +283217,Apple Airpods Headphones,1,150,11/06/19 09:32,"577 13th St, Portland, ME 04101" +283218,USB-C Charging Cable,1,11.95,11/19/19 21:15,"363 South St, Austin, TX 73301" +283219,Bose SoundSport Headphones,1,99.99,11/20/19 14:06,"750 Forest St, Los Angeles, CA 90001" +283220,Bose SoundSport Headphones,1,99.99,11/21/19 04:32,"726 10th St, Atlanta, GA 30301" +283221,Apple Airpods Headphones,1,150,11/30/19 12:47,"691 Jefferson St, Atlanta, GA 30301" +283222,AAA Batteries (4-pack),1,2.99,11/02/19 12:35,"198 Pine St, Atlanta, GA 30301" +283223,Bose SoundSport Headphones,1,99.99,11/06/19 01:28,"641 13th St, Los Angeles, CA 90001" +283224,USB-C Charging Cable,1,11.95,11/09/19 23:02,"343 West St, San Francisco, CA 94016" +283225,Wired Headphones,1,11.99,11/17/19 19:10,"274 Elm St, San Francisco, CA 94016" +283226,Flatscreen TV,1,300,11/12/19 10:30,"458 9th St, New York City, NY 10001" +283227,ThinkPad Laptop,1,999.99,11/22/19 10:39,"175 9th St, Dallas, TX 75001" +283228,Wired Headphones,2,11.99,11/02/19 13:48,"559 Highland St, New York City, NY 10001" +283229,27in FHD Monitor,1,149.99,11/11/19 11:19,"630 Center St, Dallas, TX 75001" +283230,AA Batteries (4-pack),1,3.84,11/29/19 17:20,"610 Cherry St, Los Angeles, CA 90001" +283231,27in FHD Monitor,1,149.99,11/04/19 18:56,"715 Cedar St, Portland, ME 04101" +283232,Lightning Charging Cable,1,14.95,11/15/19 20:03,"932 Hickory St, Austin, TX 73301" +283233,AAA Batteries (4-pack),1,2.99,11/17/19 13:06,"858 Lakeview St, New York City, NY 10001" +283234,34in Ultrawide Monitor,1,379.99,11/24/19 20:36,"308 Dogwood St, Los Angeles, CA 90001" +283235,AA Batteries (4-pack),2,3.84,11/22/19 11:45,"259 Church St, Los Angeles, CA 90001" +283236,Google Phone,1,600,11/15/19 23:10,"831 5th St, Atlanta, GA 30301" +283237,34in Ultrawide Monitor,1,379.99,11/16/19 11:09,"838 Pine St, San Francisco, CA 94016" +283238,Apple Airpods Headphones,1,150,11/19/19 23:03,"317 1st St, Dallas, TX 75001" +283239,Apple Airpods Headphones,1,150,11/08/19 17:32,"684 Cherry St, Boston, MA 02215" +283240,27in 4K Gaming Monitor,1,389.99,11/20/19 08:02,"112 Madison St, Austin, TX 73301" +283241,iPhone,1,700,11/27/19 13:15,"786 8th St, San Francisco, CA 94016" +283242,ThinkPad Laptop,1,999.99,11/27/19 22:21,"385 6th St, Portland, ME 04101" +283243,USB-C Charging Cable,1,11.95,11/06/19 20:49,"171 Sunset St, San Francisco, CA 94016" +283244,Macbook Pro Laptop,1,1700,11/26/19 23:13,"719 10th St, Seattle, WA 98101" +283245,USB-C Charging Cable,1,11.95,11/14/19 19:05,"755 Main St, Boston, MA 02215" +283246,Apple Airpods Headphones,1,150,11/24/19 14:34,"134 Lincoln St, Los Angeles, CA 90001" +283247,Macbook Pro Laptop,1,1700,11/16/19 11:22,"652 Walnut St, Los Angeles, CA 90001" +283248,USB-C Charging Cable,1,11.95,11/15/19 18:47,"615 Johnson St, Boston, MA 02215" +283249,iPhone,1,700,11/21/19 18:44,"171 7th St, Portland, ME 04101" +283249,Lightning Charging Cable,1,14.95,11/21/19 18:44,"171 7th St, Portland, ME 04101" +283250,Wired Headphones,1,11.99,11/12/19 09:29,"367 Main St, Seattle, WA 98101" +283251,Vareebadd Phone,1,400,11/12/19 00:17,"981 Adams St, New York City, NY 10001" +283252,AA Batteries (4-pack),1,3.84,11/26/19 15:34,"339 11th St, San Francisco, CA 94016" +283253,AA Batteries (4-pack),2,3.84,11/03/19 20:05,"39 11th St, San Francisco, CA 94016" +283254,Bose SoundSport Headphones,1,99.99,11/19/19 13:12,"716 Maple St, New York City, NY 10001" +283255,Lightning Charging Cable,1,14.95,11/05/19 11:34,"562 Center St, San Francisco, CA 94016" +283256,ThinkPad Laptop,1,999.99,11/20/19 20:01,"83 Jackson St, Los Angeles, CA 90001" +283257,34in Ultrawide Monitor,1,379.99,11/02/19 09:00,"852 Elm St, New York City, NY 10001" +283258,27in FHD Monitor,1,149.99,11/08/19 12:09,"112 5th St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +283259,Wired Headphones,1,11.99,11/08/19 12:45,"318 Adams St, Dallas, TX 75001" +283260,Bose SoundSport Headphones,1,99.99,11/16/19 13:29,"576 Chestnut St, Boston, MA 02215" +283261,Google Phone,1,600,11/24/19 21:05,"737 South St, Dallas, TX 75001" +283262,Lightning Charging Cable,2,14.95,11/02/19 21:15,"58 Church St, San Francisco, CA 94016" +283263,Lightning Charging Cable,1,14.95,11/27/19 19:22,"360 Spruce St, San Francisco, CA 94016" +283264,27in FHD Monitor,1,149.99,11/14/19 19:57,"736 Sunset St, Dallas, TX 75001" +283265,AA Batteries (4-pack),1,3.84,11/13/19 12:15,"489 9th St, Los Angeles, CA 90001" +283266,USB-C Charging Cable,2,11.95,11/19/19 10:40,"925 Washington St, San Francisco, CA 94016" +283267,Wired Headphones,1,11.99,11/09/19 09:50,"341 14th St, San Francisco, CA 94016" +283268,Google Phone,1,600,11/02/19 18:18,"590 Cedar St, San Francisco, CA 94016" +283269,Wired Headphones,1,11.99,11/02/19 00:55,"757 Walnut St, Los Angeles, CA 90001" +283270,34in Ultrawide Monitor,1,379.99,11/10/19 18:13,"757 Willow St, New York City, NY 10001" +283271,AA Batteries (4-pack),2,3.84,11/23/19 16:46,"478 Park St, Atlanta, GA 30301" +283272,Apple Airpods Headphones,1,150,11/23/19 17:34,"266 7th St, New York City, NY 10001" +283273,Wired Headphones,1,11.99,11/20/19 23:02,"64 11th St, Boston, MA 02215" +283274,Apple Airpods Headphones,1,150,11/23/19 10:12,"774 11th St, Los Angeles, CA 90001" +283275,Apple Airpods Headphones,1,150,11/12/19 16:09,"241 5th St, Dallas, TX 75001" +283276,ThinkPad Laptop,1,999.99,11/07/19 09:03,"849 14th St, Atlanta, GA 30301" +283277,27in FHD Monitor,1,149.99,11/17/19 15:42,"481 Chestnut St, San Francisco, CA 94016" +283278,USB-C Charging Cable,3,11.95,11/19/19 17:03,"369 Park St, San Francisco, CA 94016" +283279,AAA Batteries (4-pack),1,2.99,11/30/19 16:18,"769 2nd St, Boston, MA 02215" +283280,Apple Airpods Headphones,1,150,11/13/19 19:33,"788 South St, Seattle, WA 98101" +283281,iPhone,1,700,11/30/19 10:58,"761 South St, New York City, NY 10001" +283282,34in Ultrawide Monitor,1,379.99,11/21/19 23:18,"254 Cherry St, Seattle, WA 98101" +283283,Wired Headphones,1,11.99,11/27/19 09:47,"560 Adams St, Dallas, TX 75001" +283284,Wired Headphones,1,11.99,11/13/19 15:07,"329 Spruce St, San Francisco, CA 94016" +283285,Macbook Pro Laptop,1,1700,11/02/19 13:49,"911 Meadow St, San Francisco, CA 94016" +283286,AAA Batteries (4-pack),1,2.99,11/22/19 21:38,"816 7th St, Los Angeles, CA 90001" +283287,Bose SoundSport Headphones,1,99.99,11/11/19 11:14,"256 Main St, San Francisco, CA 94016" +283288,Lightning Charging Cable,1,14.95,11/30/19 23:48,"578 14th St, Dallas, TX 75001" +283289,Macbook Pro Laptop,1,1700,11/27/19 17:32,"330 Center St, Austin, TX 73301" +283290,Bose SoundSport Headphones,1,99.99,11/14/19 06:12,"473 7th St, New York City, NY 10001" +283291,USB-C Charging Cable,1,11.95,11/06/19 07:36,"769 Center St, San Francisco, CA 94016" +283292,Flatscreen TV,1,300,11/27/19 17:00,"770 North St, New York City, NY 10001" +283293,Wired Headphones,1,11.99,11/26/19 20:01,"687 13th St, Dallas, TX 75001" +283294,Wired Headphones,1,11.99,11/16/19 11:22,"385 Hill St, San Francisco, CA 94016" +283295,AAA Batteries (4-pack),2,2.99,11/28/19 23:12,"483 Willow St, San Francisco, CA 94016" +283296,34in Ultrawide Monitor,1,379.99,11/28/19 10:44,"446 Jackson St, New York City, NY 10001" +283297,Flatscreen TV,1,300,11/29/19 19:46,"596 Willow St, Atlanta, GA 30301" +283298,27in FHD Monitor,1,149.99,11/29/19 20:44,"917 9th St, Boston, MA 02215" +283299,Lightning Charging Cable,1,14.95,11/18/19 00:19,"450 13th St, Los Angeles, CA 90001" +283300,AAA Batteries (4-pack),4,2.99,11/12/19 15:23,"678 Main St, Dallas, TX 75001" +283301,Apple Airpods Headphones,1,150,11/24/19 00:16,"179 Meadow St, Austin, TX 73301" +283302,Apple Airpods Headphones,1,150,11/19/19 23:51,"790 Spruce St, Portland, ME 04101" +283303,ThinkPad Laptop,1,999.99,11/12/19 11:09,"841 4th St, Austin, TX 73301" +283304,Vareebadd Phone,1,400,11/21/19 16:52,"600 Dogwood St, San Francisco, CA 94016" +283305,USB-C Charging Cable,1,11.95,11/17/19 15:26,"218 Sunset St, San Francisco, CA 94016" +283306,Wired Headphones,2,11.99,11/13/19 17:31,"899 14th St, San Francisco, CA 94016" +283307,AA Batteries (4-pack),1,3.84,11/28/19 16:40,"317 Lakeview St, Boston, MA 02215" +283308,USB-C Charging Cable,1,11.95,11/21/19 12:24,"521 West St, Boston, MA 02215" +283309,AA Batteries (4-pack),1,3.84,11/08/19 21:53,"803 Cherry St, New York City, NY 10001" +283310,Lightning Charging Cable,1,14.95,11/30/19 17:44,"200 5th St, Dallas, TX 75001" +283311,AAA Batteries (4-pack),1,2.99,11/01/19 18:29,"46 Maple St, Boston, MA 02215" +283312,20in Monitor,1,109.99,11/09/19 12:44,"388 Dogwood St, San Francisco, CA 94016" +283313,Google Phone,1,600,11/08/19 18:04,"731 Church St, Seattle, WA 98101" +283314,Apple Airpods Headphones,1,150,11/03/19 20:03,"441 Washington St, Dallas, TX 75001" +283315,AAA Batteries (4-pack),1,2.99,11/08/19 16:13,"368 Main St, Boston, MA 02215" +283316,AAA Batteries (4-pack),1,2.99,11/11/19 19:23,"758 Highland St, Dallas, TX 75001" +283317,Macbook Pro Laptop,1,1700,11/29/19 21:00,"46 North St, Dallas, TX 75001" +283318,iPhone,1,700,11/06/19 09:02,"70 Dogwood St, Atlanta, GA 30301" +283318,Wired Headphones,1,11.99,11/06/19 09:02,"70 Dogwood St, Atlanta, GA 30301" +283319,Apple Airpods Headphones,1,150,11/09/19 09:02,"12 11th St, San Francisco, CA 94016" +283320,AA Batteries (4-pack),1,3.84,11/14/19 02:28,"895 Center St, Dallas, TX 75001" +283321,Wired Headphones,1,11.99,11/18/19 08:56,"80 Adams St, Austin, TX 73301" +283322,USB-C Charging Cable,1,11.95,11/27/19 19:01,"442 River St, Los Angeles, CA 90001" +283323,Bose SoundSport Headphones,1,99.99,11/10/19 16:57,"172 Highland St, Boston, MA 02215" +283324,27in 4K Gaming Monitor,1,389.99,11/19/19 06:12,"705 River St, Seattle, WA 98101" +283325,Bose SoundSport Headphones,1,99.99,11/22/19 11:07,"819 Pine St, Dallas, TX 75001" +283326,Lightning Charging Cable,1,14.95,11/17/19 12:41,"14 1st St, San Francisco, CA 94016" +283327,AAA Batteries (4-pack),1,2.99,11/10/19 23:03,"914 Pine St, New York City, NY 10001" +283328,Flatscreen TV,1,300,11/23/19 23:14,"243 Forest St, San Francisco, CA 94016" +283329,USB-C Charging Cable,1,11.95,11/09/19 06:23,"303 West St, Atlanta, GA 30301" +283330,iPhone,1,700,11/06/19 12:48,"273 4th St, New York City, NY 10001" +283331,Google Phone,1,600,11/02/19 16:54,"44 Hickory St, Los Angeles, CA 90001" +283332,Wired Headphones,1,11.99,11/10/19 07:39,"72 7th St, New York City, NY 10001" +283333,USB-C Charging Cable,1,11.95,11/29/19 22:10,"929 Walnut St, Seattle, WA 98101" +283334,20in Monitor,1,109.99,11/18/19 23:09,"390 Cherry St, Boston, MA 02215" +283335,Google Phone,1,600,11/08/19 15:43,"631 Washington St, Austin, TX 73301" +283336,Apple Airpods Headphones,1,150,11/11/19 18:04,"445 Lake St, San Francisco, CA 94016" +283337,AAA Batteries (4-pack),4,2.99,11/10/19 21:39,"599 Meadow St, Dallas, TX 75001" +283338,ThinkPad Laptop,1,999.99,11/26/19 23:00,"113 7th St, New York City, NY 10001" +283339,Wired Headphones,1,11.99,11/16/19 18:51,"53 4th St, Dallas, TX 75001" +283340,Apple Airpods Headphones,1,150,11/02/19 21:42,"154 West St, Seattle, WA 98101" +283341,AA Batteries (4-pack),1,3.84,11/12/19 18:01,"702 West St, Los Angeles, CA 90001" +283342,Apple Airpods Headphones,1,150,11/10/19 21:45,"244 Chestnut St, Austin, TX 73301" +283343,AAA Batteries (4-pack),1,2.99,11/08/19 11:58,"507 Madison St, Seattle, WA 98101" +283344,Apple Airpods Headphones,1,150,11/17/19 22:50,"762 Ridge St, Boston, MA 02215" +283345,Wired Headphones,1,11.99,11/19/19 23:59,"322 Lake St, Austin, TX 73301" +283346,Lightning Charging Cable,1,14.95,11/12/19 20:04,"370 9th St, New York City, NY 10001" +283347,AAA Batteries (4-pack),1,2.99,11/20/19 18:30,"539 Cedar St, New York City, NY 10001" +283348,AA Batteries (4-pack),1,3.84,11/16/19 03:57,"89 9th St, Seattle, WA 98101" +283349,AAA Batteries (4-pack),1,2.99,11/10/19 10:49,"882 10th St, Seattle, WA 98101" +283350,Lightning Charging Cable,1,14.95,11/14/19 09:58,"772 14th St, New York City, NY 10001" +283351,Lightning Charging Cable,1,14.95,11/24/19 15:44,"142 Wilson St, Los Angeles, CA 90001" +283352,AA Batteries (4-pack),1,3.84,11/19/19 11:30,"568 1st St, Seattle, WA 98101" +283352,AA Batteries (4-pack),1,3.84,11/19/19 11:30,"568 1st St, Seattle, WA 98101" +283353,iPhone,1,700,11/27/19 10:01,"526 5th St, Portland, OR 97035" +283354,USB-C Charging Cable,1,11.95,11/17/19 20:26,"798 Spruce St, San Francisco, CA 94016" +283355,AAA Batteries (4-pack),1,2.99,11/14/19 15:03,"158 Highland St, San Francisco, CA 94016" +283356,Wired Headphones,1,11.99,11/16/19 18:24,"894 11th St, Boston, MA 02215" +283357,AAA Batteries (4-pack),1,2.99,11/07/19 23:57,"497 Adams St, San Francisco, CA 94016" +283358,34in Ultrawide Monitor,1,379.99,11/02/19 14:51,"696 Lake St, Boston, MA 02215" +283359,AAA Batteries (4-pack),1,2.99,11/21/19 13:59,"490 Maple St, Los Angeles, CA 90001" +283360,Lightning Charging Cable,1,14.95,11/17/19 08:27,"614 Johnson St, Los Angeles, CA 90001" +283361,Vareebadd Phone,1,400,11/08/19 13:57,"576 Church St, Portland, OR 97035" +283361,Wired Headphones,1,11.99,11/08/19 13:57,"576 Church St, Portland, OR 97035" +283362,Wired Headphones,1,11.99,11/03/19 16:16,"232 Sunset St, Boston, MA 02215" +283363,27in 4K Gaming Monitor,1,389.99,11/11/19 22:57,"74 Spruce St, Atlanta, GA 30301" +283364,ThinkPad Laptop,1,999.99,11/23/19 10:41,"132 Hickory St, Portland, OR 97035" +283365,Apple Airpods Headphones,1,150,11/18/19 09:25,"858 Forest St, Los Angeles, CA 90001" +283366,Lightning Charging Cable,1,14.95,11/08/19 12:59,"310 North St, Seattle, WA 98101" +283367,AAA Batteries (4-pack),3,2.99,11/15/19 16:32,"565 Jefferson St, New York City, NY 10001" +283368,Apple Airpods Headphones,1,150,11/07/19 13:43,"691 Cedar St, Austin, TX 73301" +283369,Lightning Charging Cable,1,14.95,11/18/19 17:36,"324 Walnut St, San Francisco, CA 94016" +283370,Wired Headphones,1,11.99,11/04/19 14:17,"852 Elm St, Los Angeles, CA 90001" +283371,Apple Airpods Headphones,1,150,11/17/19 19:27,"370 4th St, Dallas, TX 75001" +283372,USB-C Charging Cable,1,11.95,11/27/19 08:48,"586 Willow St, Portland, OR 97035" +283373,20in Monitor,1,109.99,11/16/19 10:27,"466 Sunset St, Seattle, WA 98101" +283374,AAA Batteries (4-pack),1,2.99,11/06/19 15:53,"487 Hill St, Dallas, TX 75001" +283375,Wired Headphones,1,11.99,11/27/19 08:33,"224 Elm St, San Francisco, CA 94016" +283376,USB-C Charging Cable,1,11.95,11/14/19 21:16,"36 Meadow St, Dallas, TX 75001" +283377,27in FHD Monitor,1,149.99,11/04/19 20:19,"578 Washington St, San Francisco, CA 94016" +283378,AA Batteries (4-pack),2,3.84,11/29/19 09:52,"439 14th St, Atlanta, GA 30301" +283379,AAA Batteries (4-pack),3,2.99,11/26/19 22:36,"862 Willow St, San Francisco, CA 94016" +283380,ThinkPad Laptop,1,999.99,11/14/19 19:23,"511 Adams St, Boston, MA 02215" +283381,AAA Batteries (4-pack),1,2.99,11/10/19 23:35,"759 North St, San Francisco, CA 94016" +283382,AAA Batteries (4-pack),1,2.99,11/23/19 00:41,"793 Dogwood St, Los Angeles, CA 90001" +283383,27in FHD Monitor,1,149.99,11/28/19 07:16,"968 Elm St, Los Angeles, CA 90001" +283384,Macbook Pro Laptop,1,1700,11/29/19 10:49,"797 Spruce St, San Francisco, CA 94016" +283385,Lightning Charging Cable,1,14.95,11/03/19 13:50,"365 Washington St, Portland, OR 97035" +283386,Lightning Charging Cable,1,14.95,11/23/19 15:26,"593 14th St, San Francisco, CA 94016" +283387,Lightning Charging Cable,1,14.95,11/23/19 12:04,"894 Maple St, Boston, MA 02215" +283388,27in 4K Gaming Monitor,1,389.99,11/15/19 05:41,"898 River St, Seattle, WA 98101" +283389,Lightning Charging Cable,1,14.95,11/11/19 17:48,"99 14th St, San Francisco, CA 94016" +283390,27in FHD Monitor,1,149.99,11/26/19 10:53,"340 Park St, New York City, NY 10001" +283391,AA Batteries (4-pack),1,3.84,11/01/19 14:47,"924 Maple St, Portland, OR 97035" +283392,Bose SoundSport Headphones,1,99.99,11/01/19 08:01,"801 Lakeview St, Austin, TX 73301" +283393,AA Batteries (4-pack),1,3.84,11/14/19 23:22,"906 Jefferson St, San Francisco, CA 94016" +283394,AA Batteries (4-pack),1,3.84,11/29/19 21:57,"178 Meadow St, Dallas, TX 75001" +283395,34in Ultrawide Monitor,1,379.99,11/03/19 09:21,"681 5th St, San Francisco, CA 94016" +283396,USB-C Charging Cable,1,11.95,11/27/19 20:09,"414 Jackson St, San Francisco, CA 94016" +283397,AAA Batteries (4-pack),1,2.99,11/28/19 20:59,"705 Willow St, Boston, MA 02215" +283398,Bose SoundSport Headphones,1,99.99,11/02/19 21:09,"514 Lake St, San Francisco, CA 94016" +283399,Wired Headphones,1,11.99,11/20/19 22:04,"177 13th St, Los Angeles, CA 90001" +283400,Apple Airpods Headphones,1,150,11/13/19 19:46,"294 Hill St, Los Angeles, CA 90001" +283401,Bose SoundSport Headphones,1,99.99,11/07/19 10:28,"413 12th St, Los Angeles, CA 90001" +283402,ThinkPad Laptop,1,999.99,11/14/19 16:49,"576 Forest St, Austin, TX 73301" +283403,ThinkPad Laptop,1,999.99,11/03/19 23:37,"439 5th St, Atlanta, GA 30301" +283404,27in 4K Gaming Monitor,1,389.99,11/13/19 09:27,"531 5th St, Portland, OR 97035" +283405,Bose SoundSport Headphones,1,99.99,11/14/19 12:05,"999 Johnson St, Atlanta, GA 30301" +283406,Bose SoundSport Headphones,2,99.99,11/15/19 16:47,"153 Walnut St, San Francisco, CA 94016" +283407,Apple Airpods Headphones,1,150,11/07/19 11:50,"912 Center St, San Francisco, CA 94016" +283408,Lightning Charging Cable,1,14.95,11/28/19 15:03,"806 Pine St, San Francisco, CA 94016" +283409,AAA Batteries (4-pack),1,2.99,11/16/19 18:06,"450 Johnson St, Boston, MA 02215" +283410,Lightning Charging Cable,2,14.95,11/02/19 10:37,"72 Lake St, San Francisco, CA 94016" +283411,AA Batteries (4-pack),1,3.84,11/19/19 19:10,"550 6th St, New York City, NY 10001" +283412,Bose SoundSport Headphones,1,99.99,11/17/19 22:18,"312 6th St, New York City, NY 10001" +283413,Apple Airpods Headphones,1,150,11/16/19 10:47,"646 Hickory St, Seattle, WA 98101" +283414,Lightning Charging Cable,1,14.95,11/13/19 15:03,"571 7th St, Los Angeles, CA 90001" +283415,27in 4K Gaming Monitor,1,389.99,11/20/19 19:22,"79 Walnut St, Boston, MA 02215" +283416,27in FHD Monitor,1,149.99,11/24/19 18:00,"512 Main St, San Francisco, CA 94016" +283417,Lightning Charging Cable,1,14.95,11/26/19 20:04,"243 Lake St, Atlanta, GA 30301" +283418,Google Phone,1,600,11/29/19 16:00,"936 Lake St, San Francisco, CA 94016" +283419,Bose SoundSport Headphones,1,99.99,11/10/19 22:16,"42 Adams St, Boston, MA 02215" +283420,ThinkPad Laptop,1,999.99,11/10/19 21:39,"883 Lake St, Dallas, TX 75001" +283421,USB-C Charging Cable,1,11.95,11/18/19 12:22,"236 Highland St, San Francisco, CA 94016" +283422,Wired Headphones,2,11.99,11/15/19 11:30,"834 Hickory St, New York City, NY 10001" +283423,Apple Airpods Headphones,1,150,11/18/19 17:10,"700 Park St, San Francisco, CA 94016" +283424,Macbook Pro Laptop,1,1700,11/03/19 15:01,"421 9th St, Seattle, WA 98101" +283425,Wired Headphones,1,11.99,11/16/19 11:29,"265 Pine St, Dallas, TX 75001" +283426,Apple Airpods Headphones,1,150,11/07/19 20:43,"1 Dogwood St, Seattle, WA 98101" +283427,Wired Headphones,1,11.99,11/13/19 11:53,"33 2nd St, Atlanta, GA 30301" +283428,Apple Airpods Headphones,1,150,11/06/19 13:48,"154 8th St, Portland, ME 04101" +283429,Lightning Charging Cable,1,14.95,11/08/19 10:25,"818 Cherry St, Los Angeles, CA 90001" +283429,Apple Airpods Headphones,1,150,11/08/19 10:25,"818 Cherry St, Los Angeles, CA 90001" +283430,USB-C Charging Cable,1,11.95,11/21/19 11:20,"802 Meadow St, San Francisco, CA 94016" +283431,AAA Batteries (4-pack),1,2.99,11/17/19 10:20,"413 12th St, San Francisco, CA 94016" +283432,27in FHD Monitor,1,149.99,11/28/19 08:30,"690 West St, San Francisco, CA 94016" +283433,Vareebadd Phone,1,400,11/19/19 15:46,"668 Lake St, Portland, ME 04101" +283434,Macbook Pro Laptop,1,1700,11/08/19 16:21,"593 Jackson St, Austin, TX 73301" +283435,AA Batteries (4-pack),2,3.84,11/13/19 13:20,"753 4th St, Seattle, WA 98101" +283436,Apple Airpods Headphones,1,150,11/18/19 16:37,"851 Dogwood St, Boston, MA 02215" +283437,iPhone,1,700,11/16/19 10:30,"659 12th St, New York City, NY 10001" +283437,Bose SoundSport Headphones,1,99.99,11/16/19 10:30,"659 12th St, New York City, NY 10001" +283438,Flatscreen TV,1,300,11/09/19 22:34,"158 Lakeview St, San Francisco, CA 94016" +283439,AAA Batteries (4-pack),1,2.99,11/29/19 18:31,"159 10th St, Atlanta, GA 30301" +283440,Macbook Pro Laptop,1,1700,11/11/19 19:02,"761 Highland St, New York City, NY 10001" +283441,Macbook Pro Laptop,1,1700,11/14/19 17:08,"836 Forest St, San Francisco, CA 94016" +283441,Lightning Charging Cable,1,14.95,11/14/19 17:08,"836 Forest St, San Francisco, CA 94016" +283442,iPhone,1,700,11/23/19 23:08,"793 Elm St, Dallas, TX 75001" +283442,Wired Headphones,1,11.99,11/23/19 23:08,"793 Elm St, Dallas, TX 75001" +283443,iPhone,1,700,11/14/19 08:49,"895 Main St, Boston, MA 02215" +283444,34in Ultrawide Monitor,1,379.99,11/14/19 19:19,"615 13th St, Portland, OR 97035" +283445,AAA Batteries (4-pack),1,2.99,11/29/19 09:57,"297 Adams St, San Francisco, CA 94016" +283446,Wired Headphones,1,11.99,11/04/19 21:17,"435 Cherry St, Los Angeles, CA 90001" +283447,Lightning Charging Cable,1,14.95,11/07/19 07:44,"997 4th St, Los Angeles, CA 90001" +283448,27in FHD Monitor,1,149.99,11/07/19 13:40,"597 Maple St, New York City, NY 10001" +283449,Flatscreen TV,1,300,11/09/19 20:04,"505 Madison St, Portland, ME 04101" +283450,20in Monitor,1,109.99,11/13/19 01:17,"977 Meadow St, Los Angeles, CA 90001" +283451,ThinkPad Laptop,1,999.99,11/14/19 15:07,"51 Sunset St, San Francisco, CA 94016" +283452,AA Batteries (4-pack),1,3.84,11/08/19 13:05,"447 River St, Atlanta, GA 30301" +283453,Lightning Charging Cable,1,14.95,11/02/19 04:50,"754 11th St, Dallas, TX 75001" +283454,Vareebadd Phone,1,400,11/09/19 10:18,"123 Jackson St, Los Angeles, CA 90001" +283454,Wired Headphones,1,11.99,11/09/19 10:18,"123 Jackson St, Los Angeles, CA 90001" +283455,Wired Headphones,1,11.99,11/23/19 11:46,"683 1st St, San Francisco, CA 94016" +283456,Wired Headphones,1,11.99,11/02/19 00:29,"488 Washington St, Los Angeles, CA 90001" +283457,34in Ultrawide Monitor,1,379.99,11/06/19 10:04,"335 Lincoln St, Los Angeles, CA 90001" +283458,USB-C Charging Cable,1,11.95,11/01/19 17:16,"763 4th St, Seattle, WA 98101" +283459,Google Phone,1,600,11/11/19 23:29,"690 2nd St, San Francisco, CA 94016" +283460,AAA Batteries (4-pack),1,2.99,11/25/19 12:23,"128 Jefferson St, New York City, NY 10001" +283461,iPhone,1,700,11/28/19 18:56,"723 Jefferson St, Atlanta, GA 30301" +283461,Apple Airpods Headphones,1,150,11/28/19 18:56,"723 Jefferson St, Atlanta, GA 30301" +283462,USB-C Charging Cable,1,11.95,11/18/19 02:56,"804 Dogwood St, San Francisco, CA 94016" +283463,AAA Batteries (4-pack),5,2.99,11/05/19 13:26,"54 Lake St, Boston, MA 02215" +283464,Bose SoundSport Headphones,1,99.99,11/21/19 16:34,"571 Hickory St, Austin, TX 73301" +283465,USB-C Charging Cable,1,11.95,11/27/19 20:08,"665 Main St, Dallas, TX 75001" +283466,34in Ultrawide Monitor,1,379.99,11/05/19 15:08,"777 Adams St, Seattle, WA 98101" +283467,AA Batteries (4-pack),2,3.84,11/13/19 19:37,"902 4th St, San Francisco, CA 94016" +283468,USB-C Charging Cable,1,11.95,11/06/19 01:21,"273 7th St, Atlanta, GA 30301" +283469,ThinkPad Laptop,1,999.99,11/21/19 12:02,"86 1st St, San Francisco, CA 94016" +283470,AAA Batteries (4-pack),4,2.99,11/21/19 20:52,"725 Center St, San Francisco, CA 94016" +283471,AA Batteries (4-pack),2,3.84,11/11/19 18:52,"888 Sunset St, San Francisco, CA 94016" +283472,Wired Headphones,1,11.99,11/30/19 15:01,"712 11th St, Portland, OR 97035" +283473,Bose SoundSport Headphones,1,99.99,11/05/19 16:41,"827 Hickory St, Dallas, TX 75001" +283474,ThinkPad Laptop,1,999.99,11/29/19 21:36,"303 Cherry St, Dallas, TX 75001" +283475,USB-C Charging Cable,1,11.95,11/07/19 14:04,"43 Spruce St, Seattle, WA 98101" +283476,Wired Headphones,1,11.99,11/10/19 09:48,"137 Center St, Austin, TX 73301" +283477,AA Batteries (4-pack),2,3.84,11/26/19 12:48,"910 11th St, Austin, TX 73301" +283478,iPhone,1,700,11/30/19 18:58,"910 Wilson St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +283479,Wired Headphones,1,11.99,11/08/19 20:06,"900 Cherry St, Austin, TX 73301" +283480,Wired Headphones,1,11.99,11/22/19 17:32,"643 1st St, Boston, MA 02215" +283481,Wired Headphones,1,11.99,11/19/19 11:33,"593 Highland St, San Francisco, CA 94016" +283482,Wired Headphones,1,11.99,11/08/19 04:12,"180 North St, Austin, TX 73301" +283483,Lightning Charging Cable,1,14.95,11/29/19 13:29,"329 Pine St, Portland, ME 04101" +283484,Macbook Pro Laptop,1,1700,11/19/19 12:11,"120 12th St, Seattle, WA 98101" +283485,AAA Batteries (4-pack),1,2.99,11/21/19 16:31,"426 Elm St, Boston, MA 02215" +283486,Lightning Charging Cable,1,14.95,11/27/19 20:56,"645 Center St, Los Angeles, CA 90001" +283487,Lightning Charging Cable,2,14.95,11/28/19 11:14,"304 Lake St, San Francisco, CA 94016" +283488,AAA Batteries (4-pack),1,2.99,11/03/19 07:40,"53 Lakeview St, Los Angeles, CA 90001" +283489,AAA Batteries (4-pack),1,2.99,11/03/19 13:54,"110 South St, Atlanta, GA 30301" +283490,USB-C Charging Cable,1,11.95,11/23/19 12:59,"323 Forest St, New York City, NY 10001" +283491,AA Batteries (4-pack),2,3.84,11/04/19 12:51,"453 5th St, San Francisco, CA 94016" +283492,Apple Airpods Headphones,1,150,11/12/19 06:37,"182 Hill St, San Francisco, CA 94016" +283493,Macbook Pro Laptop,1,1700,11/15/19 21:06,"771 Willow St, San Francisco, CA 94016" +283494,AAA Batteries (4-pack),1,2.99,11/26/19 02:23,"758 4th St, Los Angeles, CA 90001" +283495,27in FHD Monitor,1,149.99,11/05/19 22:20,"19 Lakeview St, Dallas, TX 75001" +283496,Flatscreen TV,1,300,11/19/19 14:37,"433 Sunset St, Boston, MA 02215" +283497,Flatscreen TV,1,300,11/08/19 13:46,"273 Center St, Los Angeles, CA 90001" +283498,AAA Batteries (4-pack),1,2.99,11/08/19 17:25,"119 Highland St, Atlanta, GA 30301" +283499,AA Batteries (4-pack),1,3.84,11/23/19 13:06,"952 14th St, New York City, NY 10001" +283500,Bose SoundSport Headphones,2,99.99,11/25/19 16:14,"350 Sunset St, Boston, MA 02215" +283501,20in Monitor,1,109.99,11/25/19 02:02,"864 Meadow St, San Francisco, CA 94016" +283502,Flatscreen TV,1,300,11/26/19 10:34,"69 6th St, Dallas, TX 75001" +283503,AAA Batteries (4-pack),2,2.99,11/10/19 10:15,"279 Jackson St, Boston, MA 02215" +283504,Apple Airpods Headphones,1,150,11/27/19 12:33,"137 Forest St, San Francisco, CA 94016" +283505,ThinkPad Laptop,1,999.99,11/10/19 06:11,"761 Center St, New York City, NY 10001" +283506,ThinkPad Laptop,1,999.99,11/22/19 22:44,"180 South St, Portland, ME 04101" +283507,Wired Headphones,1,11.99,11/12/19 14:38,"648 Adams St, Portland, OR 97035" +283508,Bose SoundSport Headphones,1,99.99,11/12/19 17:06,"781 Willow St, Boston, MA 02215" +283509,AA Batteries (4-pack),1,3.84,11/08/19 19:33,"518 Willow St, San Francisco, CA 94016" +283510,Flatscreen TV,1,300,11/25/19 12:21,"212 Sunset St, San Francisco, CA 94016" +283511,iPhone,1,700,11/14/19 18:23,"908 West St, Seattle, WA 98101" +283511,Lightning Charging Cable,1,14.95,11/14/19 18:23,"908 West St, Seattle, WA 98101" +283512,Bose SoundSport Headphones,1,99.99,11/23/19 22:00,"974 Chestnut St, Boston, MA 02215" +283513,ThinkPad Laptop,1,999.99,11/11/19 06:41,"182 1st St, New York City, NY 10001" +283514,USB-C Charging Cable,1,11.95,11/25/19 21:20,"970 14th St, New York City, NY 10001" +283515,Lightning Charging Cable,1,14.95,11/10/19 20:09,"989 Park St, Dallas, TX 75001" +283516,AAA Batteries (4-pack),1,2.99,11/20/19 09:45,"247 Dogwood St, Dallas, TX 75001" +283517,AAA Batteries (4-pack),1,2.99,11/01/19 10:21,"72 Hill St, Atlanta, GA 30301" +283518,AA Batteries (4-pack),1,3.84,11/15/19 16:41,"406 2nd St, Seattle, WA 98101" +283519,Wired Headphones,1,11.99,11/29/19 11:52,"640 14th St, Seattle, WA 98101" +283520,Bose SoundSport Headphones,1,99.99,11/01/19 11:35,"844 Cherry St, Atlanta, GA 30301" +283521,AAA Batteries (4-pack),1,2.99,11/16/19 23:46,"76 Chestnut St, New York City, NY 10001" +283522,AA Batteries (4-pack),1,3.84,11/15/19 14:13,"368 7th St, Boston, MA 02215" +283523,Bose SoundSport Headphones,1,99.99,11/25/19 15:50,"608 4th St, Los Angeles, CA 90001" +283524,Macbook Pro Laptop,1,1700,11/05/19 10:49,"685 Johnson St, New York City, NY 10001" +283525,ThinkPad Laptop,1,999.99,11/20/19 13:11,"238 North St, San Francisco, CA 94016" +283526,AA Batteries (4-pack),1,3.84,11/30/19 09:46,"577 10th St, Austin, TX 73301" +283527,USB-C Charging Cable,1,11.95,11/16/19 21:16,"25 Meadow St, Boston, MA 02215" +283528,27in FHD Monitor,1,149.99,11/02/19 18:47,"696 Cherry St, San Francisco, CA 94016" +283529,AA Batteries (4-pack),1,3.84,11/21/19 10:50,"816 4th St, Los Angeles, CA 90001" +283530,Flatscreen TV,1,300,11/01/19 08:28,"717 West St, Dallas, TX 75001" +283531,USB-C Charging Cable,1,11.95,11/04/19 00:49,"771 Chestnut St, Dallas, TX 75001" +283532,Wired Headphones,1,11.99,11/10/19 11:21,"792 Highland St, San Francisco, CA 94016" +283533,AAA Batteries (4-pack),4,2.99,11/26/19 17:24,"884 9th St, Dallas, TX 75001" +283534,iPhone,1,700,11/12/19 19:52,"649 Cedar St, New York City, NY 10001" +283535,ThinkPad Laptop,1,999.99,11/05/19 17:52,"186 Washington St, Portland, OR 97035" +283536,AAA Batteries (4-pack),1,2.99,11/24/19 23:00,"303 10th St, Seattle, WA 98101" +283537,AAA Batteries (4-pack),1,2.99,11/22/19 13:15,"695 7th St, Austin, TX 73301" +283538,USB-C Charging Cable,1,11.95,11/23/19 23:25,"293 South St, San Francisco, CA 94016" +283539,AAA Batteries (4-pack),1,2.99,11/16/19 15:30,"23 14th St, San Francisco, CA 94016" +283540,Lightning Charging Cable,1,14.95,11/04/19 16:47,"996 Jefferson St, Dallas, TX 75001" +283541,USB-C Charging Cable,1,11.95,11/26/19 14:16,"221 Meadow St, San Francisco, CA 94016" +283542,Wired Headphones,1,11.99,11/18/19 11:54,"451 Lakeview St, Portland, OR 97035" +283543,Apple Airpods Headphones,1,150,11/22/19 22:11,"733 Lincoln St, Atlanta, GA 30301" +283543,iPhone,1,700,11/22/19 22:11,"733 Lincoln St, Atlanta, GA 30301" +283544,AA Batteries (4-pack),4,3.84,11/10/19 14:54,"486 4th St, New York City, NY 10001" +283545,Lightning Charging Cable,1,14.95,11/27/19 16:43,"787 South St, Seattle, WA 98101" +283546,Bose SoundSport Headphones,1,99.99,11/03/19 17:48,"197 North St, Seattle, WA 98101" +283547,20in Monitor,1,109.99,11/11/19 10:46,"423 Adams St, Seattle, WA 98101" +283548,Google Phone,1,600,11/19/19 10:22,"278 Madison St, Los Angeles, CA 90001" +283549,Wired Headphones,1,11.99,11/08/19 22:56,"971 2nd St, Boston, MA 02215" +283550,34in Ultrawide Monitor,1,379.99,11/08/19 16:54,"177 Center St, New York City, NY 10001" +283551,Google Phone,1,600,11/13/19 12:54,"763 4th St, Portland, OR 97035" +283552,Lightning Charging Cable,1,14.95,11/11/19 10:07,"915 2nd St, Austin, TX 73301" +283553,Bose SoundSport Headphones,1,99.99,11/19/19 22:37,"47 Church St, New York City, NY 10001" +283554,Vareebadd Phone,1,400,11/11/19 12:16,"864 West St, Portland, OR 97035" +283554,USB-C Charging Cable,2,11.95,11/11/19 12:16,"864 West St, Portland, OR 97035" +283555,27in 4K Gaming Monitor,1,389.99,11/07/19 13:02,"131 Dogwood St, San Francisco, CA 94016" +283556,Lightning Charging Cable,1,14.95,11/09/19 11:12,"483 Walnut St, Austin, TX 73301" +283557,Macbook Pro Laptop,1,1700,11/06/19 09:15,"582 Adams St, Los Angeles, CA 90001" +283558,Bose SoundSport Headphones,1,99.99,11/29/19 09:41,"493 Main St, Seattle, WA 98101" +283559,ThinkPad Laptop,1,999.99,11/21/19 16:56,"115 10th St, Dallas, TX 75001" +283560,Wired Headphones,1,11.99,11/22/19 13:19,"722 Forest St, New York City, NY 10001" +283561,AAA Batteries (4-pack),2,2.99,11/02/19 15:34,"7 1st St, Atlanta, GA 30301" +283562,Google Phone,1,600,11/07/19 04:01,"456 Johnson St, New York City, NY 10001" +283563,Wired Headphones,1,11.99,11/09/19 14:07,"188 9th St, New York City, NY 10001" +283564,iPhone,1,700,11/10/19 16:31,"838 West St, Portland, OR 97035" +283565,ThinkPad Laptop,1,999.99,11/16/19 01:05,"261 Church St, Los Angeles, CA 90001" +283566,Vareebadd Phone,1,400,11/16/19 17:37,"187 South St, Los Angeles, CA 90001" +283566,Bose SoundSport Headphones,1,99.99,11/16/19 17:37,"187 South St, Los Angeles, CA 90001" +283567,20in Monitor,1,109.99,11/07/19 10:53,"879 Main St, San Francisco, CA 94016" +283568,Apple Airpods Headphones,1,150,11/07/19 11:57,"339 14th St, San Francisco, CA 94016" +283569,34in Ultrawide Monitor,1,379.99,11/16/19 13:25,"995 10th St, Boston, MA 02215" +283570,Wired Headphones,1,11.99,11/25/19 10:30,"525 13th St, New York City, NY 10001" +283571,AA Batteries (4-pack),1,3.84,11/16/19 13:42,"54 11th St, New York City, NY 10001" +283572,iPhone,1,700,11/25/19 15:47,"870 11th St, San Francisco, CA 94016" +283573,Bose SoundSport Headphones,1,99.99,11/13/19 15:15,"975 8th St, Dallas, TX 75001" +283574,Apple Airpods Headphones,1,150,11/15/19 09:04,"90 Lincoln St, Portland, OR 97035" +283575,Wired Headphones,1,11.99,11/28/19 16:13,"515 Church St, Seattle, WA 98101" +283576,AAA Batteries (4-pack),2,2.99,11/13/19 17:46,"165 River St, Seattle, WA 98101" +283577,iPhone,1,700,11/07/19 19:56,"162 Cherry St, Boston, MA 02215" +283577,Wired Headphones,1,11.99,11/07/19 19:56,"162 Cherry St, Boston, MA 02215" +283578,AA Batteries (4-pack),1,3.84,11/12/19 11:10,"419 Jackson St, San Francisco, CA 94016" +283579,20in Monitor,1,109.99,11/19/19 07:53,"89 7th St, Boston, MA 02215" +283580,Macbook Pro Laptop,1,1700,11/30/19 16:21,"702 11th St, Los Angeles, CA 90001" +283581,AA Batteries (4-pack),1,3.84,11/21/19 15:01,"869 Cherry St, New York City, NY 10001" +283582,Wired Headphones,1,11.99,11/19/19 17:00,"890 Jackson St, San Francisco, CA 94016" +283583,USB-C Charging Cable,1,11.95,11/29/19 15:25,"582 Chestnut St, Dallas, TX 75001" +283584,AAA Batteries (4-pack),1,2.99,11/07/19 15:14,"352 Walnut St, Boston, MA 02215" +283585,iPhone,1,700,11/29/19 15:55,"215 Lincoln St, San Francisco, CA 94016" +283586,Bose SoundSport Headphones,1,99.99,11/05/19 11:25,"610 Cherry St, Seattle, WA 98101" +283587,34in Ultrawide Monitor,1,379.99,11/11/19 12:43,"928 5th St, Austin, TX 73301" +283588,Wired Headphones,1,11.99,11/29/19 22:32,"793 Hickory St, Portland, OR 97035" +283589,Macbook Pro Laptop,1,1700,11/29/19 22:25,"708 Forest St, Dallas, TX 75001" +283590,USB-C Charging Cable,1,11.95,11/18/19 21:14,"390 West St, New York City, NY 10001" +283591,USB-C Charging Cable,1,11.95,11/13/19 19:03,"245 Lakeview St, Atlanta, GA 30301" +283592,Wired Headphones,1,11.99,11/08/19 15:35,"872 South St, New York City, NY 10001" +283593,AAA Batteries (4-pack),1,2.99,11/14/19 12:39,"541 Highland St, New York City, NY 10001" +283594,USB-C Charging Cable,1,11.95,11/25/19 18:59,"838 Park St, Seattle, WA 98101" +283595,Apple Airpods Headphones,1,150,11/19/19 21:23,"133 8th St, Los Angeles, CA 90001" +283596,USB-C Charging Cable,1,11.95,11/09/19 13:45,"180 River St, Portland, OR 97035" +283597,Wired Headphones,1,11.99,11/28/19 15:33,"128 Lakeview St, Austin, TX 73301" +283598,AAA Batteries (4-pack),1,2.99,11/23/19 20:03,"488 6th St, Portland, OR 97035" +283599,Bose SoundSport Headphones,1,99.99,11/30/19 07:09,"891 Johnson St, Boston, MA 02215" +283600,USB-C Charging Cable,1,11.95,11/17/19 12:03,"186 14th St, Atlanta, GA 30301" +283601,Lightning Charging Cable,1,14.95,11/11/19 12:53,"17 Madison St, Atlanta, GA 30301" +283602,Apple Airpods Headphones,1,150,11/11/19 12:23,"287 9th St, Boston, MA 02215" +283603,Lightning Charging Cable,2,14.95,11/11/19 15:54,"531 Chestnut St, New York City, NY 10001" +283604,iPhone,1,700,11/02/19 10:10,"956 1st St, Atlanta, GA 30301" +283605,27in FHD Monitor,1,149.99,11/03/19 08:28,"95 12th St, Boston, MA 02215" +283606,USB-C Charging Cable,1,11.95,11/17/19 20:21,"178 Ridge St, San Francisco, CA 94016" +283607,USB-C Charging Cable,1,11.95,11/12/19 08:12,"146 Madison St, Seattle, WA 98101" +283608,ThinkPad Laptop,1,999.99,11/22/19 13:42,"585 West St, San Francisco, CA 94016" +283609,Wired Headphones,1,11.99,11/02/19 20:05,"588 Hill St, San Francisco, CA 94016" +283610,34in Ultrawide Monitor,1,379.99,11/06/19 10:28,"141 Madison St, San Francisco, CA 94016" +283611,USB-C Charging Cable,1,11.95,11/23/19 09:15,"465 Church St, Seattle, WA 98101" +283612,Bose SoundSport Headphones,1,99.99,11/12/19 08:10,"239 1st St, San Francisco, CA 94016" +283613,Macbook Pro Laptop,1,1700,11/07/19 18:09,"890 2nd St, Austin, TX 73301" +283614,Bose SoundSport Headphones,1,99.99,11/12/19 19:58,"798 Willow St, Portland, ME 04101" +283615,Lightning Charging Cable,1,14.95,11/13/19 12:55,"216 Jefferson St, New York City, NY 10001" +283616,20in Monitor,1,109.99,11/09/19 17:11,"606 Washington St, San Francisco, CA 94016" +283617,Google Phone,1,600,11/02/19 08:59,"907 River St, Atlanta, GA 30301" +283617,USB-C Charging Cable,1,11.95,11/02/19 08:59,"907 River St, Atlanta, GA 30301" +283618,AA Batteries (4-pack),1,3.84,11/16/19 09:26,"814 12th St, San Francisco, CA 94016" +283619,Wired Headphones,1,11.99,11/05/19 21:32,"993 Main St, Los Angeles, CA 90001" +283620,iPhone,1,700,11/15/19 16:37,"786 8th St, Dallas, TX 75001" +283621,Bose SoundSport Headphones,1,99.99,11/02/19 21:04,"446 West St, San Francisco, CA 94016" +283622,AAA Batteries (4-pack),1,2.99,11/16/19 03:26,"154 Highland St, New York City, NY 10001" +283623,USB-C Charging Cable,1,11.95,11/09/19 11:23,"201 Forest St, Dallas, TX 75001" +283624,AA Batteries (4-pack),1,3.84,11/29/19 21:28,"45 8th St, New York City, NY 10001" +283625,iPhone,1,700,11/11/19 22:53,"844 Wilson St, Boston, MA 02215" +283626,USB-C Charging Cable,1,11.95,11/20/19 17:11,"523 9th St, Boston, MA 02215" +283627,iPhone,1,700,11/06/19 11:29,"281 Lincoln St, Portland, OR 97035" +283628,AA Batteries (4-pack),1,3.84,11/09/19 20:39,"459 13th St, San Francisco, CA 94016" +283629,USB-C Charging Cable,2,11.95,11/14/19 12:52,"406 Lakeview St, Austin, TX 73301" +283630,27in FHD Monitor,1,149.99,11/25/19 07:10,"59 Madison St, Portland, ME 04101" +283631,AA Batteries (4-pack),2,3.84,11/08/19 13:47,"338 North St, San Francisco, CA 94016" +283632,Lightning Charging Cable,1,14.95,11/01/19 11:11,"727 West St, Los Angeles, CA 90001" +283633,Macbook Pro Laptop,1,1700,11/06/19 08:30,"781 Cherry St, San Francisco, CA 94016" +283634,Flatscreen TV,1,300,11/17/19 21:37,"745 South St, Los Angeles, CA 90001" +283635,Wired Headphones,1,11.99,11/02/19 14:41,"106 Pine St, Los Angeles, CA 90001" +283636,AA Batteries (4-pack),2,3.84,11/05/19 21:39,"99 Lakeview St, San Francisco, CA 94016" +283637,Lightning Charging Cable,1,14.95,11/04/19 16:15,"226 Dogwood St, Los Angeles, CA 90001" +283638,27in FHD Monitor,1,149.99,11/18/19 18:57,"27 Madison St, New York City, NY 10001" +283639,Wired Headphones,1,11.99,11/25/19 19:56,"751 Adams St, Atlanta, GA 30301" +283640,Apple Airpods Headphones,1,150,11/02/19 00:56,"923 Cherry St, Los Angeles, CA 90001" +283641,Bose SoundSport Headphones,1,99.99,11/12/19 18:32,"85 2nd St, Dallas, TX 75001" +283642,Flatscreen TV,1,300,11/07/19 10:06,"414 North St, Los Angeles, CA 90001" +283643,AAA Batteries (4-pack),1,2.99,11/13/19 09:31,"405 Main St, Portland, ME 04101" +283644,USB-C Charging Cable,1,11.95,11/29/19 12:18,"142 Lincoln St, San Francisco, CA 94016" +283645,USB-C Charging Cable,1,11.95,11/25/19 13:43,"621 Cedar St, Dallas, TX 75001" +283646,AA Batteries (4-pack),2,3.84,11/28/19 21:04,"537 Church St, Seattle, WA 98101" +283647,27in FHD Monitor,1,149.99,11/18/19 10:28,"106 Hickory St, Los Angeles, CA 90001" +283648,Flatscreen TV,1,300,11/28/19 21:36,"166 Forest St, Boston, MA 02215" +283649,AA Batteries (4-pack),2,3.84,11/06/19 11:55,"445 Jackson St, San Francisco, CA 94016" +283650,USB-C Charging Cable,1,11.95,11/06/19 14:12,"123 Forest St, New York City, NY 10001" +283651,AA Batteries (4-pack),1,3.84,11/30/19 17:52,"777 1st St, Los Angeles, CA 90001" +283652,AAA Batteries (4-pack),1,2.99,11/09/19 15:01,"854 Cedar St, Boston, MA 02215" +283653,AA Batteries (4-pack),1,3.84,11/12/19 11:51,"203 North St, Boston, MA 02215" +283654,AAA Batteries (4-pack),1,2.99,11/29/19 22:22,"835 Maple St, Seattle, WA 98101" +283655,AA Batteries (4-pack),1,3.84,11/20/19 13:36,"409 Pine St, Boston, MA 02215" +283656,20in Monitor,1,109.99,11/08/19 14:40,"96 Adams St, Los Angeles, CA 90001" +283657,AAA Batteries (4-pack),1,2.99,11/19/19 21:40,"123 Walnut St, Los Angeles, CA 90001" +283658,34in Ultrawide Monitor,1,379.99,11/27/19 18:13,"926 Cedar St, Seattle, WA 98101" +283659,Apple Airpods Headphones,1,150,11/06/19 09:12,"227 Hickory St, San Francisco, CA 94016" +283660,AAA Batteries (4-pack),1,2.99,11/18/19 22:14,"381 Center St, San Francisco, CA 94016" +283661,Apple Airpods Headphones,1,150,11/12/19 12:19,"251 6th St, Seattle, WA 98101" +283662,USB-C Charging Cable,1,11.95,11/17/19 20:37,"971 Lincoln St, Los Angeles, CA 90001" +283663,Lightning Charging Cable,1,14.95,11/04/19 18:25,"740 Hickory St, Seattle, WA 98101" +283664,34in Ultrawide Monitor,1,379.99,11/01/19 19:43,"674 12th St, Dallas, TX 75001" +283665,USB-C Charging Cable,1,11.95,11/02/19 06:40,"93 Willow St, Los Angeles, CA 90001" +283666,AAA Batteries (4-pack),1,2.99,11/22/19 00:15,"137 Maple St, San Francisco, CA 94016" +283667,Wired Headphones,2,11.99,11/22/19 20:53,"511 Washington St, Boston, MA 02215" +283668,USB-C Charging Cable,1,11.95,11/02/19 22:16,"962 Walnut St, New York City, NY 10001" +283669,USB-C Charging Cable,1,11.95,11/15/19 16:50,"215 Madison St, Los Angeles, CA 90001" +283670,Wired Headphones,1,11.99,11/10/19 23:45,"569 Church St, Austin, TX 73301" +283671,27in FHD Monitor,1,149.99,11/18/19 09:59,"741 Lakeview St, Austin, TX 73301" +283672,Wired Headphones,1,11.99,11/09/19 10:51,"448 Lakeview St, Portland, OR 97035" +283672,AAA Batteries (4-pack),1,2.99,11/09/19 10:51,"448 Lakeview St, Portland, OR 97035" +283673,Apple Airpods Headphones,1,150,11/12/19 12:54,"837 2nd St, Portland, OR 97035" +283674,AA Batteries (4-pack),2,3.84,11/07/19 15:42,"722 7th St, San Francisco, CA 94016" +283675,AA Batteries (4-pack),1,3.84,11/08/19 11:24,"33 Maple St, New York City, NY 10001" +283676,iPhone,1,700,11/16/19 16:43,"209 Spruce St, San Francisco, CA 94016" +283676,Apple Airpods Headphones,1,150,11/16/19 16:43,"209 Spruce St, San Francisco, CA 94016" +283677,Lightning Charging Cable,1,14.95,11/16/19 14:22,"332 Wilson St, San Francisco, CA 94016" +283678,AA Batteries (4-pack),1,3.84,11/29/19 09:07,"38 Lakeview St, Austin, TX 73301" +283679,27in 4K Gaming Monitor,1,389.99,11/29/19 10:21,"439 2nd St, Seattle, WA 98101" +283680,20in Monitor,1,109.99,11/26/19 12:27,"343 1st St, San Francisco, CA 94016" +283681,Wired Headphones,1,11.99,11/09/19 16:56,"690 Chestnut St, Atlanta, GA 30301" +283682,Bose SoundSport Headphones,1,99.99,11/25/19 05:06,"640 Maple St, Seattle, WA 98101" +283683,27in FHD Monitor,1,149.99,11/07/19 13:15,"681 Willow St, New York City, NY 10001" +283684,AAA Batteries (4-pack),1,2.99,11/25/19 17:35,"553 Madison St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +283685,USB-C Charging Cable,1,11.95,11/24/19 23:21,"168 Walnut St, New York City, NY 10001" +283686,AA Batteries (4-pack),3,3.84,11/04/19 20:29,"815 Elm St, Boston, MA 02215" +283687,Macbook Pro Laptop,1,1700,11/12/19 17:09,"692 12th St, San Francisco, CA 94016" +283688,Lightning Charging Cable,1,14.95,11/21/19 22:07,"534 12th St, San Francisco, CA 94016" +283689,Lightning Charging Cable,1,14.95,11/05/19 21:26,"779 Dogwood St, Los Angeles, CA 90001" +283690,AA Batteries (4-pack),1,3.84,11/14/19 10:58,"263 Willow St, Dallas, TX 75001" +283691,iPhone,1,700,11/13/19 17:42,"61 Main St, Boston, MA 02215" +283691,Lightning Charging Cable,1,14.95,11/13/19 17:42,"61 Main St, Boston, MA 02215" +283692,iPhone,1,700,11/26/19 18:49,"781 Pine St, San Francisco, CA 94016" +283693,iPhone,1,700,11/03/19 09:10,"319 8th St, Atlanta, GA 30301" +283693,Lightning Charging Cable,1,14.95,11/03/19 09:10,"319 8th St, Atlanta, GA 30301" +283694,Lightning Charging Cable,1,14.95,11/18/19 17:51,"340 11th St, Atlanta, GA 30301" +283695,34in Ultrawide Monitor,1,379.99,11/25/19 08:07,"723 South St, Boston, MA 02215" +283696,Lightning Charging Cable,2,14.95,11/22/19 16:13,"419 River St, Seattle, WA 98101" +283697,27in FHD Monitor,1,149.99,11/03/19 17:52,"16 7th St, Los Angeles, CA 90001" +283698,AAA Batteries (4-pack),1,2.99,11/30/19 12:43,"552 Maple St, New York City, NY 10001" +283699,USB-C Charging Cable,2,11.95,11/20/19 18:35,"725 Forest St, San Francisco, CA 94016" +283700,Vareebadd Phone,1,400,11/21/19 15:56,"166 Walnut St, New York City, NY 10001" +283701,Wired Headphones,1,11.99,11/14/19 19:38,"118 Sunset St, Dallas, TX 75001" +283702,AA Batteries (4-pack),1,3.84,11/12/19 07:55,"573 Jefferson St, San Francisco, CA 94016" +283703,Wired Headphones,1,11.99,11/28/19 18:21,"374 8th St, Portland, OR 97035" +283704,AAA Batteries (4-pack),2,2.99,11/20/19 14:41,"824 7th St, Austin, TX 73301" +283704,Wired Headphones,1,11.99,11/20/19 14:41,"824 7th St, Austin, TX 73301" +283705,Wired Headphones,1,11.99,11/14/19 08:45,"446 Adams St, New York City, NY 10001" +283706,Lightning Charging Cable,1,14.95,11/21/19 19:39,"771 11th St, Portland, ME 04101" +283707,Apple Airpods Headphones,1,150,11/22/19 08:32,"282 Lincoln St, Seattle, WA 98101" +283708,Apple Airpods Headphones,1,150,11/16/19 06:58,"867 13th St, San Francisco, CA 94016" +283709,USB-C Charging Cable,2,11.95,11/05/19 12:40,"870 Cedar St, San Francisco, CA 94016" +283710,Macbook Pro Laptop,1,1700,11/27/19 07:24,"608 Walnut St, Atlanta, GA 30301" +283711,Apple Airpods Headphones,1,150,11/07/19 10:06,"295 Park St, San Francisco, CA 94016" +283712,iPhone,1,700,11/26/19 05:38,"979 2nd St, Los Angeles, CA 90001" +283712,Lightning Charging Cable,1,14.95,11/26/19 05:38,"979 2nd St, Los Angeles, CA 90001" +283713,USB-C Charging Cable,2,11.95,11/15/19 11:59,"895 Main St, Portland, OR 97035" +283714,USB-C Charging Cable,1,11.95,11/21/19 15:47,"769 Walnut St, San Francisco, CA 94016" +283715,27in FHD Monitor,1,149.99,11/11/19 11:58,"645 River St, New York City, NY 10001" +283716,27in 4K Gaming Monitor,1,389.99,11/08/19 10:08,"270 North St, Austin, TX 73301" +283717,AA Batteries (4-pack),1,3.84,11/26/19 17:46,"113 Adams St, Portland, OR 97035" +283718,Wired Headphones,2,11.99,11/09/19 21:28,"922 Dogwood St, Seattle, WA 98101" +283719,Lightning Charging Cable,1,14.95,11/24/19 14:46,"769 Elm St, Los Angeles, CA 90001" +283720,Vareebadd Phone,1,400,11/01/19 11:57,"687 Madison St, San Francisco, CA 94016" +283720,USB-C Charging Cable,1,11.95,11/01/19 11:57,"687 Madison St, San Francisco, CA 94016" +283721,USB-C Charging Cable,1,11.95,11/06/19 19:19,"828 Cedar St, Boston, MA 02215" +283722,Macbook Pro Laptop,1,1700,11/30/19 13:04,"122 Lincoln St, Los Angeles, CA 90001" +283723,34in Ultrawide Monitor,1,379.99,11/06/19 20:26,"13 Spruce St, New York City, NY 10001" +283724,34in Ultrawide Monitor,1,379.99,11/22/19 11:45,"682 Lake St, New York City, NY 10001" +283725,AA Batteries (4-pack),1,3.84,11/05/19 23:51,"800 River St, New York City, NY 10001" +283726,ThinkPad Laptop,1,999.99,11/27/19 15:16,"573 Hill St, Seattle, WA 98101" +283727,ThinkPad Laptop,1,999.99,11/09/19 12:10,"866 Cherry St, San Francisco, CA 94016" +283728,AAA Batteries (4-pack),1,2.99,11/20/19 21:15,"530 Maple St, Atlanta, GA 30301" +283729,AAA Batteries (4-pack),1,2.99,11/24/19 18:31,"584 Walnut St, Los Angeles, CA 90001" +283730,27in FHD Monitor,1,149.99,11/18/19 22:06,"186 River St, Los Angeles, CA 90001" +283731,Macbook Pro Laptop,1,1700,11/02/19 20:01,"459 River St, Boston, MA 02215" +283732,Vareebadd Phone,1,400,11/09/19 08:11,"607 Chestnut St, Los Angeles, CA 90001" +283732,USB-C Charging Cable,1,11.95,11/09/19 08:11,"607 Chestnut St, Los Angeles, CA 90001" +283733,USB-C Charging Cable,1,11.95,11/27/19 14:24,"594 2nd St, Los Angeles, CA 90001" +283734,Apple Airpods Headphones,1,150,11/13/19 21:36,"162 9th St, Dallas, TX 75001" +283735,Flatscreen TV,1,300,11/20/19 06:40,"858 13th St, Seattle, WA 98101" +283736,Bose SoundSport Headphones,1,99.99,11/09/19 21:15,"232 Cedar St, Austin, TX 73301" +283737,27in FHD Monitor,1,149.99,11/13/19 17:28,"445 Center St, Portland, ME 04101" +283738,AAA Batteries (4-pack),1,2.99,11/30/19 20:39,"637 Lakeview St, Atlanta, GA 30301" +283739,Apple Airpods Headphones,1,150,11/04/19 18:34,"108 Johnson St, San Francisco, CA 94016" +283739,Lightning Charging Cable,1,14.95,11/04/19 18:34,"108 Johnson St, San Francisco, CA 94016" +283740,Wired Headphones,1,11.99,11/02/19 18:59,"560 12th St, Dallas, TX 75001" +283741,27in 4K Gaming Monitor,1,389.99,11/06/19 18:17,"895 4th St, Austin, TX 73301" +283742,AAA Batteries (4-pack),4,2.99,11/01/19 13:47,"626 Hickory St, Austin, TX 73301" +283743,20in Monitor,1,109.99,11/03/19 08:40,"855 10th St, San Francisco, CA 94016" +283744,27in FHD Monitor,1,149.99,11/19/19 21:08,"320 4th St, Seattle, WA 98101" +283745,AAA Batteries (4-pack),1,2.99,11/20/19 17:21,"11 Willow St, Los Angeles, CA 90001" +283746,34in Ultrawide Monitor,1,379.99,11/14/19 12:08,"188 Cedar St, Dallas, TX 75001" +283747,Wired Headphones,1,11.99,11/10/19 17:49,"64 2nd St, Austin, TX 73301" +283748,Google Phone,1,600,11/06/19 14:47,"89 6th St, San Francisco, CA 94016" +283749,AA Batteries (4-pack),1,3.84,11/16/19 14:21,"904 1st St, Austin, TX 73301" +283750,ThinkPad Laptop,1,999.99,11/08/19 21:04,"594 Ridge St, Atlanta, GA 30301" +283751,Bose SoundSport Headphones,1,99.99,11/19/19 03:32,"358 6th St, Boston, MA 02215" +283752,Wired Headphones,1,11.99,11/10/19 11:58,"541 Hickory St, Boston, MA 02215" +283753,Wired Headphones,1,11.99,11/27/19 14:28,"612 2nd St, Los Angeles, CA 90001" +283754,Wired Headphones,1,11.99,11/02/19 22:38,"942 Center St, Dallas, TX 75001" +283755,Apple Airpods Headphones,1,150,11/11/19 10:23,"319 10th St, Seattle, WA 98101" +283756,AA Batteries (4-pack),1,3.84,11/23/19 10:26,"917 Park St, Dallas, TX 75001" +283757,Wired Headphones,2,11.99,11/11/19 00:56,"747 Jefferson St, San Francisco, CA 94016" +283758,AA Batteries (4-pack),1,3.84,11/04/19 00:05,"915 6th St, Seattle, WA 98101" +283759,ThinkPad Laptop,1,999.99,11/25/19 14:14,"911 2nd St, San Francisco, CA 94016" +283760,Bose SoundSport Headphones,1,99.99,11/23/19 23:52,"724 Washington St, Seattle, WA 98101" +283761,27in FHD Monitor,1,149.99,11/09/19 09:41,"263 River St, Austin, TX 73301" +283762,Flatscreen TV,1,300,11/15/19 20:44,"931 Main St, Los Angeles, CA 90001" +283763,USB-C Charging Cable,1,11.95,11/11/19 20:22,"503 Jackson St, Seattle, WA 98101" +283764,AA Batteries (4-pack),1,3.84,11/14/19 10:37,"930 South St, Portland, OR 97035" +283765,34in Ultrawide Monitor,1,379.99,11/01/19 18:08,"422 4th St, San Francisco, CA 94016" +283766,Wired Headphones,1,11.99,11/27/19 20:50,"621 Pine St, Dallas, TX 75001" +283767,Apple Airpods Headphones,1,150,11/17/19 19:43,"945 Madison St, San Francisco, CA 94016" +283768,AA Batteries (4-pack),1,3.84,11/14/19 16:19,"736 Pine St, Los Angeles, CA 90001" +283769,USB-C Charging Cable,1,11.95,11/29/19 10:46,"138 13th St, Boston, MA 02215" +283770,27in 4K Gaming Monitor,1,389.99,11/25/19 00:00,"810 Maple St, Atlanta, GA 30301" +283771,Google Phone,1,600,11/02/19 15:16,"670 South St, Dallas, TX 75001" +283772,AA Batteries (4-pack),1,3.84,11/02/19 03:13,"665 Lincoln St, Seattle, WA 98101" +283773,27in 4K Gaming Monitor,1,389.99,11/18/19 20:38,"162 Sunset St, New York City, NY 10001" +283774,Lightning Charging Cable,1,14.95,11/29/19 19:08,"156 Meadow St, San Francisco, CA 94016" +283775,Flatscreen TV,1,300,11/15/19 14:39,"482 Sunset St, San Francisco, CA 94016" +283776,ThinkPad Laptop,1,999.99,11/18/19 16:16,"598 Adams St, Los Angeles, CA 90001" +283777,Flatscreen TV,1,300,11/16/19 13:34,"341 Jackson St, Seattle, WA 98101" +283778,AAA Batteries (4-pack),1,2.99,11/15/19 22:44,"969 2nd St, Los Angeles, CA 90001" +283779,AAA Batteries (4-pack),1,2.99,11/13/19 17:27,"11 10th St, Boston, MA 02215" +283780,USB-C Charging Cable,2,11.95,11/28/19 13:47,"850 12th St, Dallas, TX 75001" +283781,AA Batteries (4-pack),1,3.84,11/29/19 18:34,"14 Cherry St, San Francisco, CA 94016" +283782,27in FHD Monitor,2,149.99,11/04/19 08:50,"160 Adams St, Dallas, TX 75001" +283783,Apple Airpods Headphones,1,150,11/11/19 12:05,"26 7th St, Portland, ME 04101" +283784,Wired Headphones,1,11.99,11/23/19 17:59,"169 Meadow St, New York City, NY 10001" +283785,AAA Batteries (4-pack),1,2.99,11/27/19 19:42,"31 8th St, New York City, NY 10001" +283786,AAA Batteries (4-pack),2,2.99,11/09/19 12:38,"20 Johnson St, San Francisco, CA 94016" +283787,Bose SoundSport Headphones,1,99.99,11/13/19 11:26,"231 Hill St, Los Angeles, CA 90001" +283788,Wired Headphones,1,11.99,11/18/19 16:52,"339 10th St, San Francisco, CA 94016" +283789,USB-C Charging Cable,1,11.95,11/09/19 20:23,"954 Madison St, San Francisco, CA 94016" +283790,Lightning Charging Cable,1,14.95,11/26/19 22:29,"730 Adams St, San Francisco, CA 94016" +283791,AA Batteries (4-pack),2,3.84,11/28/19 15:03,"676 Meadow St, Austin, TX 73301" +283792,USB-C Charging Cable,1,11.95,11/10/19 08:13,"893 Madison St, Austin, TX 73301" +283793,Wired Headphones,1,11.99,11/21/19 09:18,"86 Lake St, New York City, NY 10001" +283794,USB-C Charging Cable,1,11.95,11/12/19 10:51,"713 Highland St, Boston, MA 02215" +283795,Bose SoundSport Headphones,1,99.99,11/21/19 13:51,"121 Hickory St, Boston, MA 02215" +283796,Wired Headphones,1,11.99,11/09/19 22:39,"253 Sunset St, New York City, NY 10001" +283797,Bose SoundSport Headphones,1,99.99,11/26/19 19:24,"51 4th St, San Francisco, CA 94016" +283797,AAA Batteries (4-pack),1,2.99,11/26/19 19:24,"51 4th St, San Francisco, CA 94016" +283798,20in Monitor,1,109.99,11/07/19 15:40,"444 7th St, Los Angeles, CA 90001" +283799,Apple Airpods Headphones,1,150,11/20/19 13:21,"584 Cherry St, Austin, TX 73301" +283800,AA Batteries (4-pack),1,3.84,11/11/19 22:17,"372 Maple St, San Francisco, CA 94016" +283800,Google Phone,1,600,11/11/19 22:17,"372 Maple St, San Francisco, CA 94016" +283801,20in Monitor,1,109.99,11/24/19 10:10,"794 12th St, Seattle, WA 98101" +283802,USB-C Charging Cable,1,11.95,11/01/19 11:39,"575 Adams St, Los Angeles, CA 90001" +283803,Apple Airpods Headphones,1,150,11/02/19 14:13,"307 Cherry St, Austin, TX 73301" +283804,27in 4K Gaming Monitor,1,389.99,11/03/19 15:15,"587 Lincoln St, San Francisco, CA 94016" +283805,AAA Batteries (4-pack),2,2.99,11/01/19 11:17,"5 Lakeview St, Seattle, WA 98101" +283806,34in Ultrawide Monitor,1,379.99,11/13/19 13:46,"302 Main St, Boston, MA 02215" +283807,USB-C Charging Cable,1,11.95,11/30/19 21:55,"84 11th St, Los Angeles, CA 90001" +283808,Bose SoundSport Headphones,1,99.99,11/07/19 15:33,"408 8th St, Dallas, TX 75001" +283809,Apple Airpods Headphones,1,150,11/24/19 12:42,"155 Jefferson St, San Francisco, CA 94016" +283810,27in FHD Monitor,1,149.99,11/19/19 13:44,"71 1st St, Seattle, WA 98101" +283811,USB-C Charging Cable,1,11.95,11/29/19 18:07,"593 Willow St, Dallas, TX 75001" +283812,USB-C Charging Cable,1,11.95,11/26/19 11:32,"860 Jackson St, Austin, TX 73301" +283813,27in FHD Monitor,1,149.99,11/16/19 20:08,"656 North St, New York City, NY 10001" +283814,Macbook Pro Laptop,1,1700,11/30/19 18:06,"687 4th St, San Francisco, CA 94016" +283815,Macbook Pro Laptop,1,1700,11/07/19 20:03,"823 4th St, Portland, OR 97035" +283816,27in FHD Monitor,1,149.99,11/28/19 10:59,"11 South St, San Francisco, CA 94016" +283817,Bose SoundSport Headphones,1,99.99,11/24/19 14:09,"587 Washington St, Dallas, TX 75001" +283818,Bose SoundSport Headphones,1,99.99,11/13/19 23:20,"174 11th St, Los Angeles, CA 90001" +283819,Apple Airpods Headphones,1,150,11/15/19 14:42,"138 10th St, Portland, OR 97035" +283820,Bose SoundSport Headphones,1,99.99,11/30/19 10:46,"384 Pine St, Dallas, TX 75001" +283820,Wired Headphones,1,11.99,11/30/19 10:46,"384 Pine St, Dallas, TX 75001" +283821,Apple Airpods Headphones,1,150,11/22/19 13:24,"967 1st St, Austin, TX 73301" +283822,34in Ultrawide Monitor,1,379.99,11/03/19 17:31,"222 Pine St, Portland, OR 97035" +283823,Lightning Charging Cable,1,14.95,11/16/19 12:28,"828 1st St, San Francisco, CA 94016" +283824,Macbook Pro Laptop,1,1700,11/26/19 10:35,"650 River St, Seattle, WA 98101" +283824,Apple Airpods Headphones,1,150,11/26/19 10:35,"650 River St, Seattle, WA 98101" +283825,Lightning Charging Cable,1,14.95,11/16/19 17:18,"237 Hickory St, San Francisco, CA 94016" +283826,Flatscreen TV,1,300,11/02/19 14:20,"923 8th St, Austin, TX 73301" +283827,AAA Batteries (4-pack),2,2.99,11/05/19 10:28,"238 1st St, Portland, ME 04101" +283828,Flatscreen TV,1,300,11/19/19 22:51,"478 Sunset St, Portland, OR 97035" +283829,Bose SoundSport Headphones,1,99.99,11/10/19 13:05,"80 Pine St, San Francisco, CA 94016" +283830,27in 4K Gaming Monitor,1,389.99,11/07/19 20:42,"347 Meadow St, Seattle, WA 98101" +283831,AAA Batteries (4-pack),1,2.99,11/15/19 18:53,"381 Walnut St, Seattle, WA 98101" +283832,iPhone,1,700,11/05/19 12:15,"811 Hickory St, Boston, MA 02215" +283833,Wired Headphones,1,11.99,11/26/19 10:57,"88 Pine St, Boston, MA 02215" +283834,Wired Headphones,1,11.99,11/16/19 08:21,"677 Willow St, New York City, NY 10001" +283835,AA Batteries (4-pack),1,3.84,11/10/19 09:50,"561 10th St, Portland, OR 97035" +283836,Apple Airpods Headphones,1,150,11/10/19 11:46,"910 Lake St, Portland, OR 97035" +283837,Lightning Charging Cable,1,14.95,11/12/19 22:52,"572 Cedar St, Dallas, TX 75001" +283838,Bose SoundSport Headphones,1,99.99,11/08/19 18:03,"96 Main St, Seattle, WA 98101" +283839,Bose SoundSport Headphones,1,99.99,11/17/19 20:06,"385 Madison St, Boston, MA 02215" +283840,AAA Batteries (4-pack),1,2.99,11/30/19 06:29,"979 Highland St, San Francisco, CA 94016" +283841,Flatscreen TV,1,300,11/15/19 12:59,"891 Church St, Portland, OR 97035" +283842,AA Batteries (4-pack),1,3.84,11/30/19 12:41,"887 Ridge St, San Francisco, CA 94016" +283843,27in FHD Monitor,1,149.99,11/16/19 17:24,"232 6th St, Seattle, WA 98101" +283844,AAA Batteries (4-pack),3,2.99,11/18/19 13:08,"875 Lake St, Boston, MA 02215" +283845,USB-C Charging Cable,1,11.95,11/23/19 12:28,"823 12th St, San Francisco, CA 94016" +283846,34in Ultrawide Monitor,1,379.99,11/17/19 18:36,"196 Ridge St, Seattle, WA 98101" +283847,Apple Airpods Headphones,1,150,11/04/19 21:12,"761 Dogwood St, Seattle, WA 98101" +283848,Apple Airpods Headphones,1,150,11/12/19 18:52,"922 Lincoln St, San Francisco, CA 94016" +283849,27in FHD Monitor,1,149.99,11/10/19 22:24,"357 5th St, San Francisco, CA 94016" +283850,Lightning Charging Cable,1,14.95,11/11/19 06:26,"140 8th St, San Francisco, CA 94016" +283851,Apple Airpods Headphones,1,150,11/25/19 14:33,"384 Maple St, Austin, TX 73301" +283852,Apple Airpods Headphones,1,150,11/19/19 23:01,"254 13th St, Dallas, TX 75001" +283853,Apple Airpods Headphones,1,150,11/01/19 14:02,"640 Hill St, Los Angeles, CA 90001" +283854,Lightning Charging Cable,1,14.95,11/28/19 09:55,"771 Washington St, San Francisco, CA 94016" +283855,AA Batteries (4-pack),1,3.84,11/02/19 12:34,"597 Ridge St, Dallas, TX 75001" +283856,Apple Airpods Headphones,1,150,11/21/19 20:57,"772 8th St, Los Angeles, CA 90001" +283857,AA Batteries (4-pack),1,3.84,11/17/19 19:52,"942 2nd St, Boston, MA 02215" +283857,Wired Headphones,1,11.99,11/17/19 19:52,"942 2nd St, Boston, MA 02215" +283858,20in Monitor,1,109.99,11/16/19 08:39,"380 Sunset St, Dallas, TX 75001" +283858,iPhone,1,700,11/16/19 08:39,"380 Sunset St, Dallas, TX 75001" +283859,AA Batteries (4-pack),1,3.84,11/17/19 08:17,"433 Jackson St, Los Angeles, CA 90001" +283860,Wired Headphones,1,11.99,11/13/19 12:57,"881 Lake St, Dallas, TX 75001" +283861,27in FHD Monitor,1,149.99,11/04/19 15:16,"46 Hickory St, Seattle, WA 98101" +283862,Lightning Charging Cable,1,14.95,11/23/19 22:01,"956 Cherry St, Atlanta, GA 30301" +283863,34in Ultrawide Monitor,1,379.99,11/11/19 21:40,"607 Maple St, Los Angeles, CA 90001" +283864,USB-C Charging Cable,1,11.95,11/16/19 18:45,"561 7th St, Atlanta, GA 30301" +283865,AA Batteries (4-pack),1,3.84,11/19/19 23:24,"724 Pine St, Los Angeles, CA 90001" +283866,Macbook Pro Laptop,1,1700,11/16/19 18:02,"496 Center St, Los Angeles, CA 90001" +283867,20in Monitor,1,109.99,11/29/19 10:50,"395 Forest St, Los Angeles, CA 90001" +283868,AAA Batteries (4-pack),1,2.99,11/19/19 16:59,"807 1st St, Los Angeles, CA 90001" +283869,Apple Airpods Headphones,1,150,11/10/19 18:47,"746 Hill St, Portland, OR 97035" +283870,AAA Batteries (4-pack),2,2.99,11/08/19 20:28,"794 Wilson St, Dallas, TX 75001" +283871,Wired Headphones,2,11.99,11/16/19 19:25,"633 Jackson St, Portland, OR 97035" +283872,USB-C Charging Cable,1,11.95,11/16/19 15:50,"340 Highland St, Atlanta, GA 30301" +283873,Google Phone,1,600,11/05/19 11:34,"903 Church St, Austin, TX 73301" +283873,USB-C Charging Cable,1,11.95,11/05/19 11:34,"903 Church St, Austin, TX 73301" +283874,27in 4K Gaming Monitor,1,389.99,11/05/19 12:17,"622 Wilson St, Dallas, TX 75001" +283875,Macbook Pro Laptop,1,1700,11/06/19 11:14,"237 Park St, Austin, TX 73301" +283876,Wired Headphones,1,11.99,11/20/19 09:14,"602 Highland St, Portland, OR 97035" +283877,iPhone,1,700,11/07/19 15:17,"625 West St, Portland, OR 97035" +283878,Flatscreen TV,1,300,11/09/19 19:54,"109 14th St, Seattle, WA 98101" +283879,Apple Airpods Headphones,1,150,11/15/19 13:28,"838 Lincoln St, San Francisco, CA 94016" +283880,Google Phone,1,600,11/19/19 10:57,"96 14th St, San Francisco, CA 94016" +283880,USB-C Charging Cable,1,11.95,11/19/19 10:57,"96 14th St, San Francisco, CA 94016" +283880,Wired Headphones,1,11.99,11/19/19 10:57,"96 14th St, San Francisco, CA 94016" +283881,Lightning Charging Cable,2,14.95,11/28/19 22:42,"862 South St, Atlanta, GA 30301" +283881,34in Ultrawide Monitor,1,379.99,11/28/19 22:42,"862 South St, Atlanta, GA 30301" +283882,34in Ultrawide Monitor,1,379.99,11/04/19 23:42,"426 Main St, Dallas, TX 75001" +283883,27in 4K Gaming Monitor,1,389.99,11/17/19 15:35,"772 10th St, Seattle, WA 98101" +283884,Bose SoundSport Headphones,1,99.99,11/12/19 12:41,"674 Ridge St, New York City, NY 10001" +283885,USB-C Charging Cable,1,11.95,11/16/19 16:18,"348 North St, San Francisco, CA 94016" +283886,LG Dryer,1,600.0,11/20/19 17:41,"568 Johnson St, Seattle, WA 98101" +283887,iPhone,1,700,11/30/19 08:45,"711 Washington St, New York City, NY 10001" +283888,USB-C Charging Cable,1,11.95,11/02/19 17:46,"722 Cedar St, San Francisco, CA 94016" +283889,AA Batteries (4-pack),1,3.84,11/09/19 04:43,"353 4th St, Boston, MA 02215" +283890,Wired Headphones,1,11.99,11/15/19 22:28,"530 Dogwood St, New York City, NY 10001" +283891,Lightning Charging Cable,1,14.95,11/29/19 14:38,"610 Hickory St, Portland, OR 97035" +283892,Wired Headphones,1,11.99,11/19/19 13:13,"918 Church St, Dallas, TX 75001" +283893,Wired Headphones,1,11.99,11/23/19 11:18,"119 Adams St, Portland, OR 97035" +283894,Wired Headphones,1,11.99,11/25/19 19:48,"727 7th St, Portland, OR 97035" +283895,27in FHD Monitor,1,149.99,11/02/19 16:17,"778 South St, Seattle, WA 98101" +283896,USB-C Charging Cable,1,11.95,11/03/19 11:51,"11 8th St, San Francisco, CA 94016" +283897,Wired Headphones,1,11.99,11/19/19 21:32,"339 7th St, Los Angeles, CA 90001" +283898,Wired Headphones,1,11.99,11/02/19 00:27,"809 Spruce St, Seattle, WA 98101" +283899,Apple Airpods Headphones,1,150,11/05/19 13:44,"552 13th St, Portland, OR 97035" +283900,AAA Batteries (4-pack),1,2.99,11/04/19 17:35,"965 Walnut St, San Francisco, CA 94016" +283901,Wired Headphones,1,11.99,11/13/19 21:32,"313 Pine St, Dallas, TX 75001" +283902,Apple Airpods Headphones,1,150,11/08/19 17:48,"108 Wilson St, San Francisco, CA 94016" +283903,Macbook Pro Laptop,1,1700,11/16/19 13:47,"757 Sunset St, San Francisco, CA 94016" +283904,Apple Airpods Headphones,1,150,11/16/19 22:27,"358 Dogwood St, New York City, NY 10001" +283905,Wired Headphones,1,11.99,11/02/19 17:40,"19 Jackson St, Los Angeles, CA 90001" +283906,Apple Airpods Headphones,1,150,11/10/19 01:50,"301 6th St, Boston, MA 02215" +283907,Apple Airpods Headphones,1,150,11/04/19 14:42,"949 Maple St, Dallas, TX 75001" +283908,27in 4K Gaming Monitor,1,389.99,11/21/19 20:35,"49 Maple St, Boston, MA 02215" +283909,USB-C Charging Cable,1,11.95,11/01/19 17:55,"468 Lincoln St, Dallas, TX 75001" +283910,Bose SoundSport Headphones,1,99.99,11/21/19 11:41,"597 Lincoln St, Seattle, WA 98101" +283910,Lightning Charging Cable,1,14.95,11/21/19 11:41,"597 Lincoln St, Seattle, WA 98101" +283911,AA Batteries (4-pack),1,3.84,11/14/19 12:33,"804 Center St, Boston, MA 02215" +283912,Wired Headphones,1,11.99,11/30/19 17:51,"287 Meadow St, Los Angeles, CA 90001" +283913,USB-C Charging Cable,1,11.95,11/02/19 15:19,"960 9th St, San Francisco, CA 94016" +283914,Wired Headphones,1,11.99,11/22/19 16:07,"257 Johnson St, Dallas, TX 75001" +283915,Apple Airpods Headphones,1,150,11/02/19 18:17,"839 Ridge St, Los Angeles, CA 90001" +283916,Lightning Charging Cable,2,14.95,11/15/19 19:40,"575 Jefferson St, San Francisco, CA 94016" +283917,34in Ultrawide Monitor,1,379.99,11/12/19 13:41,"768 Sunset St, Atlanta, GA 30301" +283918,Macbook Pro Laptop,1,1700,11/03/19 08:07,"138 Ridge St, Atlanta, GA 30301" +283919,AAA Batteries (4-pack),2,2.99,11/28/19 16:45,"866 North St, Portland, OR 97035" +283920,Flatscreen TV,1,300,11/14/19 15:11,"854 Cedar St, New York City, NY 10001" +283921,Google Phone,1,600,11/01/19 07:05,"90 Cherry St, Los Angeles, CA 90001" +283922,iPhone,1,700,11/19/19 16:50,"344 Maple St, Atlanta, GA 30301" +283923,Bose SoundSport Headphones,1,99.99,11/15/19 23:10,"982 Maple St, Los Angeles, CA 90001" +283924,Google Phone,1,600,11/24/19 01:37,"181 2nd St, Seattle, WA 98101" +283924,Bose SoundSport Headphones,1,99.99,11/24/19 01:37,"181 2nd St, Seattle, WA 98101" +283925,34in Ultrawide Monitor,1,379.99,11/23/19 19:03,"483 Willow St, Dallas, TX 75001" +283926,Wired Headphones,1,11.99,11/19/19 22:11,"420 9th St, Portland, OR 97035" +283927,AAA Batteries (4-pack),2,2.99,11/13/19 23:07,"412 Maple St, Dallas, TX 75001" +283928,Lightning Charging Cable,1,14.95,11/20/19 19:22,"945 North St, Los Angeles, CA 90001" +283929,Lightning Charging Cable,1,14.95,11/15/19 20:40,"983 Church St, Boston, MA 02215" +283930,AA Batteries (4-pack),1,3.84,11/16/19 14:21,"671 14th St, Los Angeles, CA 90001" +283931,USB-C Charging Cable,1,11.95,11/24/19 19:31,"899 Lincoln St, Boston, MA 02215" +283932,Google Phone,1,600,11/01/19 06:07,"406 Cedar St, San Francisco, CA 94016" +283933,ThinkPad Laptop,1,999.99,11/08/19 15:33,"852 11th St, New York City, NY 10001" +283934,AAA Batteries (4-pack),2,2.99,11/16/19 13:24,"147 Park St, Boston, MA 02215" +283935,LG Dryer,1,600.0,11/11/19 13:06,"569 Maple St, New York City, NY 10001" +283936,AAA Batteries (4-pack),1,2.99,11/17/19 11:43,"24 Jackson St, Los Angeles, CA 90001" +283937,iPhone,1,700,11/29/19 14:52,"809 Washington St, San Francisco, CA 94016" +283938,Apple Airpods Headphones,1,150,11/12/19 14:15,"517 Adams St, New York City, NY 10001" +283939,USB-C Charging Cable,1,11.95,11/30/19 18:19,"324 5th St, New York City, NY 10001" +283940,Macbook Pro Laptop,1,1700,11/15/19 20:20,"899 Cedar St, Boston, MA 02215" +283941,USB-C Charging Cable,2,11.95,11/29/19 08:41,"519 Sunset St, New York City, NY 10001" +283942,Bose SoundSport Headphones,1,99.99,11/21/19 15:23,"369 4th St, Los Angeles, CA 90001" +283943,27in FHD Monitor,1,149.99,11/01/19 15:35,"471 Spruce St, Boston, MA 02215" +283944,USB-C Charging Cable,1,11.95,11/25/19 11:48,"17 Pine St, Boston, MA 02215" +283945,AA Batteries (4-pack),1,3.84,11/27/19 19:30,"528 Lake St, New York City, NY 10001" +283946,Lightning Charging Cable,1,14.95,11/18/19 17:28,"330 Spruce St, San Francisco, CA 94016" +283947,AA Batteries (4-pack),1,3.84,11/09/19 14:55,"478 11th St, Dallas, TX 75001" +283948,iPhone,1,700,11/18/19 16:12,"537 Cherry St, Atlanta, GA 30301" +283949,Apple Airpods Headphones,1,150,11/02/19 22:12,"207 Pine St, Portland, OR 97035" +283950,iPhone,1,700,11/27/19 12:28,"838 Madison St, Los Angeles, CA 90001" +283951,Lightning Charging Cable,1,14.95,11/29/19 16:24,"429 13th St, New York City, NY 10001" +283952,LG Washing Machine,1,600.0,11/19/19 13:24,"524 2nd St, Austin, TX 73301" +283953,USB-C Charging Cable,1,11.95,11/22/19 10:07,"90 11th St, San Francisco, CA 94016" +283954,AAA Batteries (4-pack),1,2.99,11/29/19 19:05,"246 12th St, San Francisco, CA 94016" +283955,34in Ultrawide Monitor,1,379.99,11/10/19 11:49,"838 9th St, Austin, TX 73301" +283956,Google Phone,1,600,11/11/19 11:53,"367 Walnut St, Boston, MA 02215" +283957,Google Phone,1,600,11/05/19 16:39,"57 Washington St, Boston, MA 02215" +283958,AAA Batteries (4-pack),1,2.99,11/15/19 18:26,"584 12th St, Seattle, WA 98101" +283959,AAA Batteries (4-pack),1,2.99,11/09/19 08:31,"697 North St, Dallas, TX 75001" +283960,iPhone,1,700,11/06/19 17:18,"617 Spruce St, Los Angeles, CA 90001" +283961,ThinkPad Laptop,1,999.99,11/29/19 21:29,"904 Lincoln St, New York City, NY 10001" +283962,Bose SoundSport Headphones,1,99.99,11/15/19 18:18,"154 12th St, San Francisco, CA 94016" +283963,Bose SoundSport Headphones,1,99.99,11/24/19 19:23,"896 Johnson St, Dallas, TX 75001" +283964,Wired Headphones,1,11.99,11/11/19 19:52,"581 Meadow St, Dallas, TX 75001" +283965,Lightning Charging Cable,1,14.95,11/02/19 12:10,"783 10th St, San Francisco, CA 94016" +283966,AA Batteries (4-pack),1,3.84,11/28/19 10:44,"191 Lake St, Dallas, TX 75001" +283967,27in 4K Gaming Monitor,1,389.99,11/02/19 09:10,"456 Meadow St, Austin, TX 73301" +283968,iPhone,1,700,11/11/19 09:50,"529 Cherry St, San Francisco, CA 94016" +283969,AA Batteries (4-pack),2,3.84,11/22/19 15:51,"883 Hill St, Atlanta, GA 30301" +283969,Apple Airpods Headphones,1,150,11/22/19 15:51,"883 Hill St, Atlanta, GA 30301" +283970,Bose SoundSport Headphones,1,99.99,11/16/19 22:55,"734 2nd St, Portland, OR 97035" +283971,Google Phone,1,600,11/28/19 17:43,"930 Center St, Boston, MA 02215" +283972,USB-C Charging Cable,1,11.95,11/19/19 09:49,"1 Lincoln St, Atlanta, GA 30301" +283973,AA Batteries (4-pack),1,3.84,11/15/19 21:03,"56 Maple St, New York City, NY 10001" +283974,AAA Batteries (4-pack),1,2.99,11/12/19 12:44,"107 Church St, New York City, NY 10001" +283975,Lightning Charging Cable,1,14.95,11/13/19 12:12,"55 9th St, Austin, TX 73301" +283976,Macbook Pro Laptop,1,1700,11/10/19 14:43,"956 6th St, Seattle, WA 98101" +283977,USB-C Charging Cable,1,11.95,11/07/19 13:09,"425 North St, Boston, MA 02215" +283978,AA Batteries (4-pack),1,3.84,11/15/19 17:07,"860 South St, New York City, NY 10001" +283979,AA Batteries (4-pack),2,3.84,11/26/19 20:25,"24 2nd St, San Francisco, CA 94016" +283980,AA Batteries (4-pack),1,3.84,11/10/19 21:08,"427 Dogwood St, Boston, MA 02215" +283981,Vareebadd Phone,1,400,11/07/19 12:26,"713 West St, Boston, MA 02215" +283981,Wired Headphones,1,11.99,11/07/19 12:26,"713 West St, Boston, MA 02215" +283982,AAA Batteries (4-pack),1,2.99,11/12/19 12:33,"201 Jefferson St, New York City, NY 10001" +283983,Lightning Charging Cable,1,14.95,11/25/19 10:12,"540 River St, New York City, NY 10001" +283984,Bose SoundSport Headphones,1,99.99,11/22/19 17:45,"228 Lakeview St, Austin, TX 73301" +283984,Wired Headphones,1,11.99,11/22/19 17:45,"228 Lakeview St, Austin, TX 73301" +283985,Bose SoundSport Headphones,1,99.99,11/30/19 12:07,"893 North St, Seattle, WA 98101" +283986,USB-C Charging Cable,1,11.95,11/13/19 11:08,"94 11th St, Atlanta, GA 30301" +283987,Flatscreen TV,1,300,11/27/19 09:43,"79 Cedar St, Los Angeles, CA 90001" +283988,20in Monitor,1,109.99,11/06/19 20:01,"825 Highland St, Seattle, WA 98101" +283989,Bose SoundSport Headphones,1,99.99,11/28/19 14:33,"745 Main St, Atlanta, GA 30301" +283990,Vareebadd Phone,1,400,11/27/19 20:43,"537 Church St, Atlanta, GA 30301" +283991,Bose SoundSport Headphones,1,99.99,11/05/19 08:59,"978 Main St, Portland, ME 04101" +283992,USB-C Charging Cable,1,11.95,11/25/19 20:03,"977 Highland St, New York City, NY 10001" +283993,34in Ultrawide Monitor,1,379.99,11/21/19 19:20,"430 Cedar St, San Francisco, CA 94016" +283994,Wired Headphones,1,11.99,11/14/19 15:40,"193 Main St, San Francisco, CA 94016" +283995,Google Phone,1,600,11/12/19 23:39,"235 8th St, Seattle, WA 98101" +283996,USB-C Charging Cable,1,11.95,11/24/19 11:11,"470 Hill St, San Francisco, CA 94016" +283997,AA Batteries (4-pack),3,3.84,11/17/19 12:10,"656 Highland St, New York City, NY 10001" +283998,AA Batteries (4-pack),1,3.84,11/24/19 14:06,"205 Park St, Atlanta, GA 30301" +283999,Lightning Charging Cable,1,14.95,11/26/19 19:24,"331 11th St, Boston, MA 02215" +284000,AA Batteries (4-pack),1,3.84,11/24/19 14:36,"405 Forest St, Boston, MA 02215" +284001,AAA Batteries (4-pack),3,2.99,11/15/19 18:51,"127 Jackson St, San Francisco, CA 94016" +284002,Bose SoundSport Headphones,1,99.99,11/11/19 12:01,"426 Madison St, Los Angeles, CA 90001" +284003,AA Batteries (4-pack),1,3.84,11/03/19 11:47,"529 South St, San Francisco, CA 94016" +284004,AA Batteries (4-pack),1,3.84,11/07/19 13:21,"800 South St, Atlanta, GA 30301" +284005,AA Batteries (4-pack),1,3.84,11/04/19 01:26,"15 North St, Boston, MA 02215" +284006,iPhone,1,700,11/16/19 20:21,"965 Center St, Austin, TX 73301" +284007,Wired Headphones,2,11.99,11/04/19 14:46,"343 Spruce St, New York City, NY 10001" +284008,USB-C Charging Cable,1,11.95,11/23/19 21:20,"312 Jackson St, Seattle, WA 98101" +284009,AAA Batteries (4-pack),1,2.99,11/08/19 02:25,"522 Sunset St, Dallas, TX 75001" +284010,27in 4K Gaming Monitor,1,389.99,11/06/19 11:16,"869 11th St, Boston, MA 02215" +284011,USB-C Charging Cable,1,11.95,11/29/19 22:49,"565 11th St, Dallas, TX 75001" +284012,Lightning Charging Cable,1,14.95,11/20/19 11:56,"907 Lake St, Boston, MA 02215" +284013,AA Batteries (4-pack),2,3.84,11/16/19 20:32,"652 13th St, Austin, TX 73301" +284014,AA Batteries (4-pack),1,3.84,11/24/19 10:58,"148 Park St, Atlanta, GA 30301" +284015,Flatscreen TV,1,300,11/27/19 14:14,"854 1st St, Atlanta, GA 30301" +284016,Bose SoundSport Headphones,1,99.99,11/26/19 19:02,"227 North St, Los Angeles, CA 90001" +284017,USB-C Charging Cable,1,11.95,11/25/19 15:48,"284 14th St, Atlanta, GA 30301" +284018,27in FHD Monitor,1,149.99,11/22/19 10:51,"557 Maple St, Los Angeles, CA 90001" +284019,Lightning Charging Cable,1,14.95,11/18/19 13:40,"203 14th St, Boston, MA 02215" +284020,Lightning Charging Cable,2,14.95,11/19/19 06:15,"732 Lincoln St, San Francisco, CA 94016" +284021,Lightning Charging Cable,1,14.95,11/15/19 11:55,"508 13th St, New York City, NY 10001" +284022,Apple Airpods Headphones,1,150,11/05/19 19:29,"848 13th St, Atlanta, GA 30301" +284023,Lightning Charging Cable,1,14.95,11/29/19 22:39,"27 Meadow St, Atlanta, GA 30301" +284024,USB-C Charging Cable,1,11.95,11/10/19 12:08,"260 Madison St, Los Angeles, CA 90001" +284025,Bose SoundSport Headphones,1,99.99,11/05/19 00:31,"407 Johnson St, Portland, OR 97035" +284026,AA Batteries (4-pack),1,3.84,11/21/19 21:38,"62 Chestnut St, Seattle, WA 98101" +284027,Google Phone,1,600,11/28/19 03:03,"829 Willow St, Dallas, TX 75001" +284027,Wired Headphones,1,11.99,11/28/19 03:03,"829 Willow St, Dallas, TX 75001" +284028,Apple Airpods Headphones,1,150,11/17/19 18:28,"958 Main St, New York City, NY 10001" +284029,27in 4K Gaming Monitor,1,389.99,11/23/19 12:07,"834 9th St, Dallas, TX 75001" +284030,AAA Batteries (4-pack),2,2.99,11/28/19 18:30,"228 Elm St, New York City, NY 10001" +284031,AA Batteries (4-pack),1,3.84,11/12/19 21:29,"421 Willow St, Boston, MA 02215" +284032,AA Batteries (4-pack),1,3.84,11/11/19 08:00,"91 Washington St, Dallas, TX 75001" +284033,Lightning Charging Cable,1,14.95,11/08/19 17:08,"729 West St, Portland, OR 97035" +284034,AAA Batteries (4-pack),1,2.99,11/27/19 00:52,"578 Jefferson St, Seattle, WA 98101" +284035,iPhone,1,700,11/22/19 14:30,"118 Chestnut St, San Francisco, CA 94016" +284036,27in FHD Monitor,1,149.99,11/26/19 20:35,"301 Pine St, San Francisco, CA 94016" +284037,AAA Batteries (4-pack),2,2.99,11/28/19 11:48,"254 River St, Portland, ME 04101" +284038,AAA Batteries (4-pack),1,2.99,11/09/19 17:19,"66 Hill St, San Francisco, CA 94016" +284039,USB-C Charging Cable,1,11.95,11/02/19 15:46,"619 7th St, Austin, TX 73301" +284040,AAA Batteries (4-pack),1,2.99,11/27/19 12:32,"598 Main St, Atlanta, GA 30301" +284041,Wired Headphones,1,11.99,11/24/19 19:53,"317 Madison St, Boston, MA 02215" +284042,USB-C Charging Cable,1,11.95,11/08/19 09:16,"876 Forest St, Dallas, TX 75001" +284043,USB-C Charging Cable,1,11.95,11/03/19 14:09,"33 9th St, San Francisco, CA 94016" +284044,27in FHD Monitor,1,149.99,11/05/19 10:21,"458 1st St, San Francisco, CA 94016" +284045,AAA Batteries (4-pack),1,2.99,11/07/19 17:38,"146 Jackson St, Atlanta, GA 30301" +284046,Bose SoundSport Headphones,1,99.99,11/13/19 06:51,"928 10th St, New York City, NY 10001" +284047,Wired Headphones,1,11.99,11/07/19 16:04,"93 14th St, San Francisco, CA 94016" +284048,Wired Headphones,1,11.99,11/05/19 21:49,"650 Maple St, Austin, TX 73301" +284049,Lightning Charging Cable,1,14.95,11/13/19 16:07,"912 13th St, Austin, TX 73301" +284050,Apple Airpods Headphones,1,150,11/20/19 14:59,"307 1st St, San Francisco, CA 94016" +284051,USB-C Charging Cable,1,11.95,11/20/19 17:47,"798 11th St, Los Angeles, CA 90001" +284052,ThinkPad Laptop,1,999.99,11/25/19 12:09,"757 Ridge St, Boston, MA 02215" +284053,AAA Batteries (4-pack),2,2.99,11/09/19 09:11,"372 Chestnut St, San Francisco, CA 94016" +284054,AA Batteries (4-pack),2,3.84,11/24/19 00:51,"162 Church St, Seattle, WA 98101" +284055,USB-C Charging Cable,1,11.95,11/15/19 18:09,"298 Elm St, Los Angeles, CA 90001" +284056,34in Ultrawide Monitor,1,379.99,11/24/19 22:54,"66 10th St, Los Angeles, CA 90001" +284057,USB-C Charging Cable,1,11.95,11/11/19 11:27,"270 Lake St, Portland, OR 97035" +284058,Lightning Charging Cable,1,14.95,11/21/19 23:25,"499 Jefferson St, Boston, MA 02215" +284059,27in FHD Monitor,1,149.99,11/19/19 12:34,"52 Wilson St, San Francisco, CA 94016" +284060,Wired Headphones,1,11.99,11/27/19 14:44,"256 13th St, Portland, OR 97035" +284061,USB-C Charging Cable,1,11.95,11/25/19 06:23,"161 Church St, Boston, MA 02215" +284062,34in Ultrawide Monitor,1,379.99,11/26/19 17:49,"457 Lake St, Boston, MA 02215" +284063,iPhone,1,700,11/24/19 20:33,"654 Adams St, Boston, MA 02215" +284063,Wired Headphones,1,11.99,11/24/19 20:33,"654 Adams St, Boston, MA 02215" +284064,Flatscreen TV,1,300,11/01/19 15:24,"423 Walnut St, Los Angeles, CA 90001" +284065,Apple Airpods Headphones,1,150,11/21/19 10:23,"441 Dogwood St, San Francisco, CA 94016" +284066,20in Monitor,1,109.99,11/21/19 12:16,"947 Cherry St, Dallas, TX 75001" +284067,27in FHD Monitor,1,149.99,11/21/19 22:53,"46 Hickory St, Los Angeles, CA 90001" +284068,ThinkPad Laptop,1,999.99,11/23/19 14:12,"732 North St, Atlanta, GA 30301" +284069,34in Ultrawide Monitor,1,379.99,11/07/19 09:13,"382 Cedar St, Austin, TX 73301" +284070,iPhone,1,700,11/20/19 11:41,"458 Willow St, Los Angeles, CA 90001" +284071,AAA Batteries (4-pack),2,2.99,11/26/19 18:12,"773 Lincoln St, Los Angeles, CA 90001" +284072,USB-C Charging Cable,1,11.95,11/09/19 09:28,"117 Cedar St, Los Angeles, CA 90001" +284073,Wired Headphones,1,11.99,11/10/19 08:33,"392 Johnson St, Austin, TX 73301" +284074,ThinkPad Laptop,1,999.99,11/16/19 20:40,"11 Cedar St, Portland, ME 04101" +284075,Bose SoundSport Headphones,2,99.99,11/29/19 17:24,"694 Walnut St, Austin, TX 73301" +284076,27in 4K Gaming Monitor,1,389.99,11/18/19 18:17,"523 6th St, Los Angeles, CA 90001" +284077,Wired Headphones,2,11.99,11/23/19 17:20,"160 9th St, Dallas, TX 75001" +284078,USB-C Charging Cable,1,11.95,11/12/19 21:44,"766 1st St, San Francisco, CA 94016" +284079,Lightning Charging Cable,1,14.95,11/11/19 13:10,"645 14th St, Boston, MA 02215" +284080,AA Batteries (4-pack),1,3.84,11/29/19 12:25,"186 Spruce St, Atlanta, GA 30301" +284081,Google Phone,1,600,11/16/19 21:52,"561 10th St, Atlanta, GA 30301" +284082,AA Batteries (4-pack),3,3.84,11/03/19 00:13,"39 Lakeview St, Los Angeles, CA 90001" +284082,Apple Airpods Headphones,1,150,11/03/19 00:13,"39 Lakeview St, Los Angeles, CA 90001" +284083,34in Ultrawide Monitor,1,379.99,11/28/19 11:04,"548 12th St, Seattle, WA 98101" +284084,Wired Headphones,2,11.99,11/06/19 21:10,"512 Lakeview St, Los Angeles, CA 90001" +284085,Apple Airpods Headphones,1,150,11/21/19 16:11,"747 5th St, San Francisco, CA 94016" +284086,Wired Headphones,1,11.99,11/04/19 11:46,"682 Maple St, San Francisco, CA 94016" +284087,AA Batteries (4-pack),1,3.84,11/15/19 15:14,"701 North St, Austin, TX 73301" +284088,Apple Airpods Headphones,1,150,11/21/19 11:35,"143 Lakeview St, New York City, NY 10001" +284089,Bose SoundSport Headphones,1,99.99,11/03/19 13:31,"947 Madison St, San Francisco, CA 94016" +284090,USB-C Charging Cable,1,11.95,11/09/19 07:06,"417 Meadow St, San Francisco, CA 94016" +284091,iPhone,1,700,11/22/19 17:46,"683 Park St, Boston, MA 02215" +284091,Lightning Charging Cable,1,14.95,11/22/19 17:46,"683 Park St, Boston, MA 02215" +284092,AA Batteries (4-pack),2,3.84,11/05/19 13:39,"778 North St, Seattle, WA 98101" +284093,USB-C Charging Cable,1,11.95,11/17/19 07:08,"410 Meadow St, New York City, NY 10001" +284094,Lightning Charging Cable,1,14.95,11/03/19 20:37,"141 Cedar St, Atlanta, GA 30301" +284095,Lightning Charging Cable,1,14.95,11/21/19 20:57,"428 Madison St, Boston, MA 02215" +284096,AAA Batteries (4-pack),2,2.99,11/23/19 20:52,"901 Lincoln St, Boston, MA 02215" +284097,USB-C Charging Cable,1,11.95,11/29/19 14:27,"759 Adams St, New York City, NY 10001" +284098,AAA Batteries (4-pack),1,2.99,11/28/19 12:26,"93 Lakeview St, Los Angeles, CA 90001" +284099,AAA Batteries (4-pack),1,2.99,11/13/19 12:04,"272 Lake St, New York City, NY 10001" +284100,AA Batteries (4-pack),2,3.84,11/09/19 09:02,"658 Willow St, Dallas, TX 75001" +284101,Bose SoundSport Headphones,1,99.99,11/03/19 18:56,"604 Lincoln St, San Francisco, CA 94016" +284102,34in Ultrawide Monitor,1,379.99,11/30/19 14:30,"453 Forest St, Austin, TX 73301" +284103,Flatscreen TV,1,300,11/06/19 18:12,"369 Cherry St, Portland, OR 97035" +284104,USB-C Charging Cable,1,11.95,11/07/19 00:04,"340 14th St, Portland, OR 97035" +284105,27in 4K Gaming Monitor,1,389.99,11/06/19 14:16,"191 Cherry St, Los Angeles, CA 90001" +284106,AAA Batteries (4-pack),1,2.99,11/06/19 17:14,"398 River St, Atlanta, GA 30301" +284107,iPhone,1,700,11/22/19 11:47,"2 Chestnut St, New York City, NY 10001" +284108,Lightning Charging Cable,1,14.95,11/23/19 13:18,"374 Johnson St, San Francisco, CA 94016" +284108,Bose SoundSport Headphones,1,99.99,11/23/19 13:18,"374 Johnson St, San Francisco, CA 94016" +284109,AA Batteries (4-pack),2,3.84,11/06/19 21:42,"694 Hill St, Portland, ME 04101" +284110,27in 4K Gaming Monitor,1,389.99,11/22/19 04:21,"792 Elm St, San Francisco, CA 94016" +284111,Google Phone,1,600,11/22/19 16:43,"774 Spruce St, Boston, MA 02215" +284112,34in Ultrawide Monitor,1,379.99,11/14/19 12:38,"904 Ridge St, San Francisco, CA 94016" +284113,AA Batteries (4-pack),1,3.84,11/12/19 15:12,"650 13th St, San Francisco, CA 94016" +284114,USB-C Charging Cable,1,11.95,11/07/19 08:39,"789 Maple St, Boston, MA 02215" +284115,Wired Headphones,1,11.99,11/25/19 08:16,"966 Meadow St, Los Angeles, CA 90001" +284116,AA Batteries (4-pack),2,3.84,11/06/19 14:18,"297 Sunset St, Boston, MA 02215" +284117,Lightning Charging Cable,1,14.95,11/07/19 10:31,"21 Main St, Los Angeles, CA 90001" +284118,Flatscreen TV,1,300,11/23/19 15:33,"35 Meadow St, San Francisco, CA 94016" +284119,Wired Headphones,1,11.99,11/22/19 14:27,"161 West St, New York City, NY 10001" +284120,AAA Batteries (4-pack),1,2.99,11/28/19 17:26,"429 Hickory St, Dallas, TX 75001" +284121,AA Batteries (4-pack),1,3.84,11/14/19 14:15,"155 Willow St, San Francisco, CA 94016" +284122,Wired Headphones,1,11.99,11/16/19 16:18,"28 Dogwood St, San Francisco, CA 94016" +284123,27in 4K Gaming Monitor,1,389.99,11/06/19 19:17,"826 Walnut St, San Francisco, CA 94016" +284124,Bose SoundSport Headphones,1,99.99,11/08/19 13:47,"962 Madison St, San Francisco, CA 94016" +284125,Apple Airpods Headphones,1,150,11/24/19 11:24,"971 Pine St, San Francisco, CA 94016" +284126,Wired Headphones,1,11.99,11/01/19 11:34,"88 North St, San Francisco, CA 94016" +284127,Lightning Charging Cable,1,14.95,11/24/19 10:18,"910 4th St, Atlanta, GA 30301" +284128,Lightning Charging Cable,1,14.95,11/07/19 14:03,"239 Willow St, Los Angeles, CA 90001" +284129,Lightning Charging Cable,1,14.95,11/06/19 09:37,"400 Highland St, San Francisco, CA 94016" +284130,USB-C Charging Cable,1,11.95,11/11/19 16:51,"583 Willow St, Boston, MA 02215" +284131,Wired Headphones,1,11.99,11/01/19 07:17,"710 14th St, San Francisco, CA 94016" +284132,USB-C Charging Cable,1,11.95,11/20/19 16:38,"738 West St, Portland, OR 97035" +,,,,, +284133,AA Batteries (4-pack),3,3.84,11/25/19 19:37,"213 5th St, Los Angeles, CA 90001" +284134,Apple Airpods Headphones,1,150,11/18/19 13:40,"918 Lincoln St, New York City, NY 10001" +284135,34in Ultrawide Monitor,1,379.99,11/18/19 19:36,"431 West St, Austin, TX 73301" +284136,USB-C Charging Cable,1,11.95,11/11/19 23:37,"644 9th St, Dallas, TX 75001" +284137,AAA Batteries (4-pack),2,2.99,11/09/19 08:36,"714 6th St, Los Angeles, CA 90001" +284138,27in 4K Gaming Monitor,1,389.99,11/14/19 14:20,"854 Center St, Portland, OR 97035" +284139,AA Batteries (4-pack),1,3.84,11/24/19 19:01,"267 River St, Boston, MA 02215" +284140,Lightning Charging Cable,1,14.95,11/22/19 17:14,"294 Highland St, Atlanta, GA 30301" +284141,AAA Batteries (4-pack),2,2.99,11/18/19 20:29,"669 Maple St, Los Angeles, CA 90001" +284142,Wired Headphones,1,11.99,11/19/19 12:31,"690 North St, San Francisco, CA 94016" +284143,20in Monitor,1,109.99,11/23/19 17:14,"9 Ridge St, Los Angeles, CA 90001" +284144,Apple Airpods Headphones,1,150,11/26/19 23:15,"864 Cherry St, Los Angeles, CA 90001" +284145,AA Batteries (4-pack),1,3.84,11/12/19 10:13,"325 Lake St, Boston, MA 02215" +284146,Vareebadd Phone,1,400,11/30/19 08:38,"311 4th St, Los Angeles, CA 90001" +284146,Bose SoundSport Headphones,1,99.99,11/30/19 08:38,"311 4th St, Los Angeles, CA 90001" +284147,20in Monitor,1,109.99,11/16/19 18:36,"333 Dogwood St, Dallas, TX 75001" +284148,AA Batteries (4-pack),1,3.84,11/02/19 21:48,"709 Ridge St, Boston, MA 02215" +284148,Macbook Pro Laptop,1,1700,11/02/19 21:48,"709 Ridge St, Boston, MA 02215" +284149,AAA Batteries (4-pack),2,2.99,11/16/19 16:14,"685 West St, Boston, MA 02215" +284150,Lightning Charging Cable,1,14.95,11/26/19 13:12,"195 South St, Seattle, WA 98101" +284151,27in 4K Gaming Monitor,1,389.99,11/02/19 14:59,"835 4th St, Seattle, WA 98101" +284151,34in Ultrawide Monitor,1,379.99,11/02/19 14:59,"835 4th St, Seattle, WA 98101" +284152,Lightning Charging Cable,1,14.95,11/02/19 20:01,"712 4th St, Portland, OR 97035" +284153,Lightning Charging Cable,1,14.95,11/28/19 14:04,"264 Spruce St, Boston, MA 02215" +284154,Flatscreen TV,1,300,11/11/19 14:09,"681 Church St, San Francisco, CA 94016" +284155,Lightning Charging Cable,1,14.95,11/21/19 00:32,"638 Johnson St, Boston, MA 02215" +284156,AAA Batteries (4-pack),2,2.99,11/29/19 07:39,"502 Lincoln St, Boston, MA 02215" +284157,Apple Airpods Headphones,1,150,11/13/19 15:56,"153 11th St, Seattle, WA 98101" +284158,Lightning Charging Cable,1,14.95,11/27/19 16:18,"369 13th St, Portland, OR 97035" +284159,Bose SoundSport Headphones,1,99.99,11/18/19 09:15,"324 1st St, Boston, MA 02215" +284160,Apple Airpods Headphones,1,150,11/06/19 12:42,"218 Chestnut St, Dallas, TX 75001" +284161,AAA Batteries (4-pack),2,2.99,11/11/19 13:14,"376 Pine St, San Francisco, CA 94016" +284161,Google Phone,1,600,11/11/19 13:14,"376 Pine St, San Francisco, CA 94016" +284162,iPhone,1,700,11/04/19 00:07,"621 Spruce St, Portland, OR 97035" +284163,USB-C Charging Cable,1,11.95,11/22/19 21:35,"435 2nd St, San Francisco, CA 94016" +284164,Flatscreen TV,1,300,11/30/19 20:35,"179 Adams St, Austin, TX 73301" +284165,iPhone,1,700,11/06/19 11:14,"572 8th St, San Francisco, CA 94016" +284166,Macbook Pro Laptop,1,1700,11/08/19 12:41,"914 Johnson St, Boston, MA 02215" +284167,USB-C Charging Cable,1,11.95,11/28/19 12:58,"39 Chestnut St, Los Angeles, CA 90001" +284168,AAA Batteries (4-pack),1,2.99,11/14/19 22:05,"261 Church St, Los Angeles, CA 90001" +284169,AA Batteries (4-pack),3,3.84,11/27/19 18:30,"392 Jackson St, New York City, NY 10001" +284170,Wired Headphones,1,11.99,11/19/19 21:26,"710 Willow St, Boston, MA 02215" +284171,Bose SoundSport Headphones,1,99.99,11/18/19 08:29,"645 Washington St, San Francisco, CA 94016" +284172,AAA Batteries (4-pack),1,2.99,11/11/19 11:48,"362 Pine St, Los Angeles, CA 90001" +284173,Wired Headphones,1,11.99,11/28/19 13:26,"158 Dogwood St, Portland, OR 97035" +284174,iPhone,1,700,11/14/19 15:52,"404 Hickory St, San Francisco, CA 94016" +284175,Wired Headphones,1,11.99,11/30/19 09:21,"116 Spruce St, Los Angeles, CA 90001" +284176,AA Batteries (4-pack),1,3.84,11/28/19 11:08,"797 7th St, San Francisco, CA 94016" +284177,Apple Airpods Headphones,1,150,11/19/19 21:09,"437 Johnson St, New York City, NY 10001" +284178,Bose SoundSport Headphones,1,99.99,11/15/19 20:11,"702 Park St, Boston, MA 02215" +284179,AA Batteries (4-pack),1,3.84,11/01/19 16:54,"399 7th St, Portland, OR 97035" +284180,Bose SoundSport Headphones,1,99.99,11/15/19 21:24,"978 Church St, Atlanta, GA 30301" +284181,AAA Batteries (4-pack),1,2.99,11/06/19 07:14,"103 Johnson St, San Francisco, CA 94016" +284182,Wired Headphones,1,11.99,11/04/19 12:58,"699 Adams St, San Francisco, CA 94016" +284183,USB-C Charging Cable,1,11.95,11/21/19 18:10,"121 West St, Boston, MA 02215" +284184,Flatscreen TV,1,300,11/19/19 09:33,"535 Park St, Boston, MA 02215" +284185,USB-C Charging Cable,1,11.95,11/22/19 12:18,"164 West St, Los Angeles, CA 90001" +284186,iPhone,1,700,11/17/19 12:06,"537 13th St, Portland, ME 04101" +284187,ThinkPad Laptop,1,999.99,11/22/19 02:38,"329 Willow St, San Francisco, CA 94016" +284188,27in 4K Gaming Monitor,1,389.99,11/14/19 20:11,"616 13th St, San Francisco, CA 94016" +284189,USB-C Charging Cable,2,11.95,11/15/19 08:35,"836 Elm St, San Francisco, CA 94016" +284190,Lightning Charging Cable,1,14.95,11/24/19 19:24,"48 Cherry St, New York City, NY 10001" +284191,Bose SoundSport Headphones,1,99.99,11/25/19 10:08,"81 Sunset St, San Francisco, CA 94016" +284192,USB-C Charging Cable,1,11.95,11/15/19 15:46,"751 Center St, New York City, NY 10001" +284193,AAA Batteries (4-pack),2,2.99,11/08/19 23:52,"234 North St, Boston, MA 02215" +284194,iPhone,1,700,11/29/19 12:14,"858 Meadow St, Seattle, WA 98101" +284194,Lightning Charging Cable,1,14.95,11/29/19 12:14,"858 Meadow St, Seattle, WA 98101" +284195,USB-C Charging Cable,1,11.95,11/07/19 20:33,"276 Madison St, Los Angeles, CA 90001" +284196,USB-C Charging Cable,1,11.95,11/25/19 20:29,"257 Main St, Los Angeles, CA 90001" +284197,AA Batteries (4-pack),1,3.84,11/18/19 12:54,"662 Jefferson St, Los Angeles, CA 90001" +284198,Lightning Charging Cable,1,14.95,11/26/19 20:56,"785 Jefferson St, San Francisco, CA 94016" +284199,Lightning Charging Cable,1,14.95,11/04/19 19:39,"231 River St, San Francisco, CA 94016" +284200,Lightning Charging Cable,1,14.95,11/20/19 12:03,"372 13th St, San Francisco, CA 94016" +284201,Lightning Charging Cable,1,14.95,11/27/19 13:03,"782 Adams St, Boston, MA 02215" +284202,iPhone,1,700,11/19/19 23:30,"91 Walnut St, Los Angeles, CA 90001" +284203,iPhone,1,700,11/05/19 21:52,"486 Hickory St, Boston, MA 02215" +284204,AAA Batteries (4-pack),1,2.99,11/30/19 17:44,"726 9th St, San Francisco, CA 94016" +284205,USB-C Charging Cable,1,11.95,11/01/19 22:24,"908 Spruce St, New York City, NY 10001" +284206,USB-C Charging Cable,1,11.95,11/11/19 13:07,"262 Maple St, Seattle, WA 98101" +284207,Macbook Pro Laptop,1,1700,11/29/19 00:18,"606 Jackson St, Atlanta, GA 30301" +284208,USB-C Charging Cable,1,11.95,11/03/19 17:24,"43 5th St, San Francisco, CA 94016" +284209,Lightning Charging Cable,2,14.95,11/22/19 21:15,"633 Chestnut St, Los Angeles, CA 90001" +284209,Bose SoundSport Headphones,1,99.99,11/22/19 21:15,"633 Chestnut St, Los Angeles, CA 90001" +284210,AAA Batteries (4-pack),1,2.99,11/15/19 10:55,"34 Dogwood St, Dallas, TX 75001" +284211,Lightning Charging Cable,1,14.95,11/23/19 11:25,"764 Dogwood St, Boston, MA 02215" +284212,Lightning Charging Cable,1,14.95,11/06/19 16:11,"286 1st St, San Francisco, CA 94016" +284213,AAA Batteries (4-pack),1,2.99,11/23/19 20:32,"967 Pine St, Los Angeles, CA 90001" +284214,Wired Headphones,1,11.99,11/26/19 20:39,"199 Center St, San Francisco, CA 94016" +284215,Google Phone,1,600,11/18/19 10:11,"214 Wilson St, Dallas, TX 75001" +284216,USB-C Charging Cable,2,11.95,11/25/19 15:42,"170 Lake St, Los Angeles, CA 90001" +284217,Wired Headphones,1,11.99,11/26/19 16:17,"361 Highland St, Atlanta, GA 30301" +284218,AA Batteries (4-pack),1,3.84,11/16/19 02:07,"574 Church St, Los Angeles, CA 90001" +284219,USB-C Charging Cable,1,11.95,11/11/19 13:33,"618 Adams St, Atlanta, GA 30301" +284220,Lightning Charging Cable,1,14.95,11/11/19 06:54,"258 Elm St, Portland, OR 97035" +284221,AAA Batteries (4-pack),1,2.99,11/03/19 19:11,"51 Center St, San Francisco, CA 94016" +284222,Wired Headphones,1,11.99,11/16/19 12:22,"121 Hickory St, San Francisco, CA 94016" +284223,Flatscreen TV,1,300,11/15/19 19:07,"90 Madison St, New York City, NY 10001" +284224,27in FHD Monitor,1,149.99,11/07/19 14:12,"742 South St, Dallas, TX 75001" +284225,Lightning Charging Cable,1,14.95,11/27/19 21:47,"404 West St, Dallas, TX 75001" +284226,34in Ultrawide Monitor,1,379.99,11/02/19 15:50,"218 13th St, Boston, MA 02215" +284227,USB-C Charging Cable,1,11.95,11/20/19 14:47,"809 South St, San Francisco, CA 94016" +284228,Lightning Charging Cable,1,14.95,11/21/19 22:56,"85 River St, Los Angeles, CA 90001" +284229,AA Batteries (4-pack),2,3.84,11/27/19 22:43,"50 Sunset St, Dallas, TX 75001" +284230,27in FHD Monitor,1,149.99,11/03/19 20:49,"149 Madison St, Boston, MA 02215" +284231,27in FHD Monitor,1,149.99,11/26/19 19:47,"52 10th St, Los Angeles, CA 90001" +284232,Apple Airpods Headphones,1,150,11/06/19 07:18,"864 7th St, Austin, TX 73301" +284233,AAA Batteries (4-pack),3,2.99,11/14/19 14:41,"204 Elm St, San Francisco, CA 94016" +284234,Flatscreen TV,1,300,11/12/19 12:48,"762 Main St, Seattle, WA 98101" +284235,Bose SoundSport Headphones,1,99.99,11/19/19 07:59,"302 Lake St, Los Angeles, CA 90001" +284236,ThinkPad Laptop,1,999.99,11/05/19 21:26,"250 10th St, San Francisco, CA 94016" +284237,20in Monitor,1,109.99,11/02/19 15:06,"898 Elm St, Boston, MA 02215" +284238,USB-C Charging Cable,1,11.95,11/28/19 20:49,"324 Highland St, Portland, OR 97035" +284239,Flatscreen TV,1,300,11/26/19 17:47,"329 Pine St, Atlanta, GA 30301" +284240,USB-C Charging Cable,1,11.95,11/08/19 20:53,"137 Ridge St, Atlanta, GA 30301" +284241,34in Ultrawide Monitor,1,379.99,11/14/19 15:41,"312 Dogwood St, New York City, NY 10001" +284242,Apple Airpods Headphones,1,150,11/15/19 21:00,"733 Walnut St, San Francisco, CA 94016" +284243,AA Batteries (4-pack),2,3.84,11/21/19 01:25,"975 Johnson St, Austin, TX 73301" +284244,Bose SoundSport Headphones,1,99.99,11/08/19 00:35,"783 West St, Los Angeles, CA 90001" +284245,iPhone,1,700,11/19/19 11:34,"751 Elm St, Boston, MA 02215" +284246,Wired Headphones,2,11.99,11/27/19 18:04,"593 Forest St, New York City, NY 10001" +284247,AAA Batteries (4-pack),4,2.99,11/07/19 11:34,"666 Willow St, Dallas, TX 75001" +284248,Wired Headphones,1,11.99,11/24/19 12:00,"591 1st St, Seattle, WA 98101" +284249,Apple Airpods Headphones,1,150,11/19/19 13:22,"665 Washington St, Boston, MA 02215" +284250,34in Ultrawide Monitor,1,379.99,11/06/19 11:12,"303 Jefferson St, Atlanta, GA 30301" +284251,AA Batteries (4-pack),1,3.84,11/08/19 08:35,"253 North St, New York City, NY 10001" +284252,27in 4K Gaming Monitor,1,389.99,11/15/19 11:45,"283 Chestnut St, New York City, NY 10001" +284253,Apple Airpods Headphones,1,150,11/17/19 13:52,"68 Adams St, Boston, MA 02215" +284254,Bose SoundSport Headphones,1,99.99,11/28/19 15:41,"643 Walnut St, Atlanta, GA 30301" +284255,Bose SoundSport Headphones,1,99.99,11/22/19 11:59,"988 Hill St, Boston, MA 02215" +284256,34in Ultrawide Monitor,1,379.99,11/13/19 10:56,"78 Johnson St, Dallas, TX 75001" +284257,AA Batteries (4-pack),1,3.84,11/06/19 09:55,"108 Chestnut St, New York City, NY 10001" +284258,Flatscreen TV,1,300,11/03/19 01:38,"342 9th St, Atlanta, GA 30301" +284259,Lightning Charging Cable,1,14.95,11/03/19 09:34,"742 10th St, San Francisco, CA 94016" +284260,ThinkPad Laptop,1,999.99,11/30/19 09:00,"307 South St, Dallas, TX 75001" +284261,Lightning Charging Cable,1,14.95,11/18/19 12:56,"319 Washington St, Boston, MA 02215" +284262,Wired Headphones,1,11.99,11/22/19 13:33,"217 Madison St, New York City, NY 10001" +284263,Lightning Charging Cable,2,14.95,11/20/19 14:06,"249 11th St, Los Angeles, CA 90001" +284264,Bose SoundSport Headphones,1,99.99,11/13/19 18:15,"253 Johnson St, San Francisco, CA 94016" +284265,Apple Airpods Headphones,1,150,11/25/19 19:46,"887 Hill St, San Francisco, CA 94016" +284266,Lightning Charging Cable,1,14.95,11/03/19 11:58,"24 11th St, Seattle, WA 98101" +284267,Wired Headphones,1,11.99,11/25/19 21:23,"605 14th St, New York City, NY 10001" +284268,AAA Batteries (4-pack),1,2.99,11/27/19 16:58,"282 1st St, San Francisco, CA 94016" +284269,iPhone,1,700,11/29/19 19:16,"459 Highland St, Los Angeles, CA 90001" +284270,20in Monitor,1,109.99,11/09/19 11:25,"970 Meadow St, San Francisco, CA 94016" +284271,Bose SoundSport Headphones,1,99.99,11/27/19 20:20,"983 Chestnut St, New York City, NY 10001" +284271,AAA Batteries (4-pack),1,2.99,11/27/19 20:20,"983 Chestnut St, New York City, NY 10001" +284272,AAA Batteries (4-pack),1,2.99,11/15/19 06:14,"525 Washington St, New York City, NY 10001" +284273,Bose SoundSport Headphones,1,99.99,11/03/19 13:17,"185 4th St, San Francisco, CA 94016" +284274,27in FHD Monitor,1,149.99,11/18/19 21:10,"506 Dogwood St, San Francisco, CA 94016" +284275,27in FHD Monitor,1,149.99,11/15/19 19:04,"900 Sunset St, Dallas, TX 75001" +284276,Vareebadd Phone,1,400,11/30/19 22:17,"7 7th St, Portland, OR 97035" +284277,27in 4K Gaming Monitor,1,389.99,11/04/19 15:27,"467 Park St, Los Angeles, CA 90001" +284278,Lightning Charging Cable,2,14.95,11/07/19 14:29,"960 Spruce St, Dallas, TX 75001" +284279,Lightning Charging Cable,1,14.95,11/03/19 17:23,"931 Wilson St, San Francisco, CA 94016" +284280,LG Dryer,1,600.0,11/13/19 08:27,"166 9th St, Dallas, TX 75001" +284281,AA Batteries (4-pack),2,3.84,11/10/19 12:48,"253 Pine St, Dallas, TX 75001" +284282,Bose SoundSport Headphones,1,99.99,11/20/19 17:34,"793 Meadow St, Portland, OR 97035" +284283,Lightning Charging Cable,1,14.95,11/13/19 10:34,"23 Ridge St, Los Angeles, CA 90001" +284284,Wired Headphones,1,11.99,11/28/19 20:25,"60 Cedar St, Los Angeles, CA 90001" +284285,27in FHD Monitor,1,149.99,11/23/19 17:02,"728 North St, Austin, TX 73301" +284286,AAA Batteries (4-pack),1,2.99,11/25/19 01:50,"188 River St, Portland, ME 04101" +284287,USB-C Charging Cable,1,11.95,11/24/19 02:13,"701 Highland St, New York City, NY 10001" +284288,Google Phone,1,600,11/29/19 19:58,"960 Johnson St, Portland, OR 97035" +284289,Bose SoundSport Headphones,1,99.99,11/04/19 20:56,"792 Dogwood St, New York City, NY 10001" +284290,AAA Batteries (4-pack),1,2.99,11/23/19 00:40,"361 Cedar St, Austin, TX 73301" +284291,Wired Headphones,1,11.99,11/17/19 11:20,"753 5th St, Dallas, TX 75001" +284292,Wired Headphones,2,11.99,11/05/19 10:08,"676 Sunset St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +284293,34in Ultrawide Monitor,1,379.99,11/17/19 09:42,"185 Hill St, San Francisco, CA 94016" +284294,Google Phone,1,600,11/17/19 12:41,"648 Forest St, Boston, MA 02215" +284295,Flatscreen TV,1,300,11/14/19 15:23,"869 2nd St, Atlanta, GA 30301" +284296,27in 4K Gaming Monitor,1,389.99,11/26/19 19:12,"172 14th St, Boston, MA 02215" +284297,ThinkPad Laptop,1,999.99,11/23/19 07:10,"338 Washington St, Dallas, TX 75001" +284298,Google Phone,1,600,11/08/19 07:23,"311 Adams St, Los Angeles, CA 90001" +284299,AAA Batteries (4-pack),1,2.99,11/08/19 11:35,"571 12th St, Seattle, WA 98101" +284300,Bose SoundSport Headphones,1,99.99,11/26/19 15:00,"893 8th St, Los Angeles, CA 90001" +284301,Wired Headphones,1,11.99,11/15/19 22:34,"331 Spruce St, Dallas, TX 75001" +284302,AA Batteries (4-pack),5,3.84,11/18/19 19:24,"636 Adams St, Los Angeles, CA 90001" +284303,Google Phone,1,600,11/06/19 13:43,"157 11th St, Los Angeles, CA 90001" +284304,iPhone,1,700,11/03/19 22:26,"230 Cedar St, Seattle, WA 98101" +284305,Lightning Charging Cable,1,14.95,11/21/19 20:47,"775 6th St, New York City, NY 10001" +284306,AAA Batteries (4-pack),1,2.99,11/22/19 20:01,"984 Johnson St, Boston, MA 02215" +284307,Apple Airpods Headphones,1,150,11/08/19 13:30,"58 Sunset St, Austin, TX 73301" +284308,AA Batteries (4-pack),2,3.84,11/16/19 18:43,"268 Park St, San Francisco, CA 94016" +284309,Google Phone,1,600,11/04/19 21:15,"335 Pine St, Seattle, WA 98101" +284310,AAA Batteries (4-pack),1,2.99,11/04/19 19:49,"262 10th St, San Francisco, CA 94016" +284311,AA Batteries (4-pack),1,3.84,11/05/19 14:42,"916 Adams St, San Francisco, CA 94016" +284312,Flatscreen TV,1,300,11/19/19 12:57,"542 8th St, New York City, NY 10001" +284313,AA Batteries (4-pack),2,3.84,11/01/19 07:07,"457 6th St, Los Angeles, CA 90001" +284314,Google Phone,1,600,11/27/19 17:45,"691 12th St, Boston, MA 02215" +284315,Apple Airpods Headphones,1,150,11/16/19 21:48,"298 Cherry St, San Francisco, CA 94016" +284316,Apple Airpods Headphones,1,150,11/24/19 10:51,"775 Johnson St, Portland, OR 97035" +284317,AA Batteries (4-pack),2,3.84,11/08/19 22:45,"778 Jefferson St, Seattle, WA 98101" +284318,Lightning Charging Cable,1,14.95,11/12/19 19:13,"626 Johnson St, Atlanta, GA 30301" +284319,AAA Batteries (4-pack),1,2.99,11/15/19 14:27,"350 Cherry St, New York City, NY 10001" +284320,AA Batteries (4-pack),2,3.84,11/02/19 07:06,"513 10th St, San Francisco, CA 94016" +284321,AAA Batteries (4-pack),1,2.99,11/01/19 22:18,"101 1st St, Boston, MA 02215" +284322,AAA Batteries (4-pack),1,2.99,11/13/19 18:21,"848 West St, Seattle, WA 98101" +284323,Lightning Charging Cable,1,14.95,11/04/19 22:00,"912 Main St, Austin, TX 73301" +284324,AAA Batteries (4-pack),1,2.99,11/27/19 18:59,"64 5th St, San Francisco, CA 94016" +284325,ThinkPad Laptop,1,999.99,11/06/19 22:58,"393 Wilson St, Los Angeles, CA 90001" +284326,AAA Batteries (4-pack),1,2.99,11/08/19 13:03,"606 River St, New York City, NY 10001" +284327,Lightning Charging Cable,1,14.95,11/24/19 11:17,"949 Walnut St, Dallas, TX 75001" +284328,AAA Batteries (4-pack),1,2.99,11/14/19 20:35,"222 2nd St, Boston, MA 02215" +284329,iPhone,1,700,11/10/19 07:35,"706 Hill St, Austin, TX 73301" +284330,Bose SoundSport Headphones,1,99.99,11/22/19 22:04,"466 Lincoln St, Los Angeles, CA 90001" +284331,Wired Headphones,2,11.99,11/11/19 22:46,"3 Highland St, Los Angeles, CA 90001" +284332,AAA Batteries (4-pack),3,2.99,11/16/19 11:30,"830 4th St, New York City, NY 10001" +284333,USB-C Charging Cable,1,11.95,11/28/19 14:19,"582 Park St, San Francisco, CA 94016" +284334,iPhone,1,700,11/20/19 07:53,"589 1st St, Portland, OR 97035" +284335,Lightning Charging Cable,1,14.95,11/09/19 19:27,"11 Walnut St, Los Angeles, CA 90001" +284336,AAA Batteries (4-pack),1,2.99,11/22/19 21:30,"147 8th St, San Francisco, CA 94016" +284337,USB-C Charging Cable,1,11.95,11/23/19 09:27,"636 Hickory St, Boston, MA 02215" +284338,iPhone,1,700,11/01/19 16:07,"801 Spruce St, San Francisco, CA 94016" +284339,Lightning Charging Cable,1,14.95,11/15/19 21:18,"315 Elm St, Dallas, TX 75001" +284340,Google Phone,1,600,11/04/19 14:21,"417 Cedar St, Atlanta, GA 30301" +284341,20in Monitor,1,109.99,11/30/19 22:10,"843 Meadow St, Portland, OR 97035" +284342,USB-C Charging Cable,1,11.95,11/02/19 20:58,"53 Church St, San Francisco, CA 94016" +284343,Bose SoundSport Headphones,1,99.99,11/15/19 15:43,"115 Pine St, New York City, NY 10001" +284344,Apple Airpods Headphones,1,150,11/03/19 18:49,"486 1st St, New York City, NY 10001" +284345,USB-C Charging Cable,1,11.95,11/02/19 18:15,"874 Hill St, Atlanta, GA 30301" +284346,34in Ultrawide Monitor,1,379.99,11/25/19 14:47,"610 Cherry St, Atlanta, GA 30301" +284347,USB-C Charging Cable,1,11.95,11/04/19 17:32,"312 Hickory St, Boston, MA 02215" +284348,USB-C Charging Cable,1,11.95,11/20/19 16:17,"646 Lakeview St, New York City, NY 10001" +284349,Apple Airpods Headphones,1,150,11/08/19 22:56,"657 Church St, Austin, TX 73301" +284350,USB-C Charging Cable,1,11.95,11/29/19 21:16,"448 Spruce St, San Francisco, CA 94016" +284351,Lightning Charging Cable,1,14.95,11/05/19 18:52,"686 Walnut St, Portland, OR 97035" +284352,Lightning Charging Cable,1,14.95,11/26/19 17:17,"783 Cedar St, Dallas, TX 75001" +284353,AAA Batteries (4-pack),1,2.99,11/04/19 15:22,"303 Spruce St, San Francisco, CA 94016" +284354,34in Ultrawide Monitor,1,379.99,11/10/19 14:43,"194 2nd St, San Francisco, CA 94016" +284355,Macbook Pro Laptop,1,1700,11/15/19 06:03,"334 Forest St, San Francisco, CA 94016" +284356,Lightning Charging Cable,1,14.95,11/19/19 13:37,"305 Sunset St, Dallas, TX 75001" +284357,20in Monitor,1,109.99,11/06/19 23:56,"631 Highland St, Dallas, TX 75001" +284358,Wired Headphones,1,11.99,11/08/19 14:22,"298 Center St, Boston, MA 02215" +284358,USB-C Charging Cable,1,11.95,11/08/19 14:22,"298 Center St, Boston, MA 02215" +284359,AA Batteries (4-pack),1,3.84,11/23/19 12:20,"145 Hickory St, Los Angeles, CA 90001" +284360,AA Batteries (4-pack),2,3.84,11/01/19 18:13,"374 Elm St, San Francisco, CA 94016" +284361,Wired Headphones,1,11.99,11/23/19 20:02,"955 Forest St, Boston, MA 02215" +284362,USB-C Charging Cable,2,11.95,11/26/19 01:00,"749 Pine St, Atlanta, GA 30301" +284363,27in FHD Monitor,1,149.99,11/20/19 22:59,"954 Pine St, Atlanta, GA 30301" +284364,34in Ultrawide Monitor,1,379.99,11/27/19 18:36,"126 Spruce St, San Francisco, CA 94016" +284365,27in 4K Gaming Monitor,1,389.99,11/01/19 12:49,"653 Church St, Los Angeles, CA 90001" +284366,Flatscreen TV,1,300,11/07/19 21:02,"89 4th St, Boston, MA 02215" +284367,USB-C Charging Cable,1,11.95,11/25/19 11:27,"389 Walnut St, Austin, TX 73301" +284368,Lightning Charging Cable,1,14.95,11/16/19 11:50,"369 13th St, San Francisco, CA 94016" +284369,USB-C Charging Cable,1,11.95,11/17/19 22:38,"168 13th St, New York City, NY 10001" +284370,Bose SoundSport Headphones,1,99.99,11/06/19 19:47,"378 2nd St, San Francisco, CA 94016" +284371,AAA Batteries (4-pack),6,2.99,11/24/19 15:26,"901 Dogwood St, San Francisco, CA 94016" +284372,USB-C Charging Cable,1,11.95,11/29/19 12:50,"605 7th St, San Francisco, CA 94016" +284373,Macbook Pro Laptop,1,1700,11/24/19 05:40,"116 Maple St, San Francisco, CA 94016" +284374,AAA Batteries (4-pack),1,2.99,11/11/19 14:23,"326 Jefferson St, New York City, NY 10001" +284375,Bose SoundSport Headphones,1,99.99,11/24/19 19:10,"914 Chestnut St, Dallas, TX 75001" +284376,34in Ultrawide Monitor,1,379.99,11/25/19 12:33,"626 Lakeview St, San Francisco, CA 94016" +284377,Lightning Charging Cable,1,14.95,11/03/19 10:58,"209 7th St, Los Angeles, CA 90001" +284378,Wired Headphones,1,11.99,11/21/19 12:36,"729 Jefferson St, Los Angeles, CA 90001" +284379,USB-C Charging Cable,1,11.95,11/20/19 07:58,"469 4th St, Los Angeles, CA 90001" +284380,Bose SoundSport Headphones,1,99.99,11/08/19 11:14,"717 Center St, San Francisco, CA 94016" +284381,Lightning Charging Cable,1,14.95,11/18/19 11:07,"262 1st St, Boston, MA 02215" +284382,AA Batteries (4-pack),3,3.84,11/13/19 20:03,"795 11th St, Austin, TX 73301" +284383,Apple Airpods Headphones,1,150,11/26/19 11:04,"33 Center St, San Francisco, CA 94016" +284384,USB-C Charging Cable,1,11.95,11/28/19 18:11,"811 Willow St, Los Angeles, CA 90001" +284385,Google Phone,1,600,11/16/19 10:39,"448 2nd St, Los Angeles, CA 90001" +284385,USB-C Charging Cable,1,11.95,11/16/19 10:39,"448 2nd St, Los Angeles, CA 90001" +284386,USB-C Charging Cable,1,11.95,11/29/19 16:09,"38 14th St, Los Angeles, CA 90001" +284387,27in 4K Gaming Monitor,1,389.99,11/21/19 08:39,"308 Jefferson St, Los Angeles, CA 90001" +284388,USB-C Charging Cable,1,11.95,11/29/19 07:47,"234 10th St, New York City, NY 10001" +284389,Google Phone,1,600,11/15/19 15:24,"414 Center St, Dallas, TX 75001" +284390,Bose SoundSport Headphones,1,99.99,11/10/19 07:11,"118 North St, Austin, TX 73301" +284391,Lightning Charging Cable,2,14.95,11/13/19 18:15,"497 Madison St, San Francisco, CA 94016" +284392,AAA Batteries (4-pack),1,2.99,11/26/19 11:34,"506 Wilson St, Seattle, WA 98101" +284393,Lightning Charging Cable,1,14.95,11/02/19 22:14,"732 Dogwood St, New York City, NY 10001" +284394,AA Batteries (4-pack),1,3.84,11/03/19 20:55,"973 Maple St, San Francisco, CA 94016" +284395,USB-C Charging Cable,1,11.95,11/09/19 23:45,"359 Wilson St, Portland, OR 97035" +284396,Flatscreen TV,1,300,11/15/19 11:52,"751 Center St, Atlanta, GA 30301" +284397,Apple Airpods Headphones,1,150,11/19/19 11:57,"721 Willow St, Portland, OR 97035" +284398,Wired Headphones,1,11.99,11/04/19 09:22,"364 Elm St, Los Angeles, CA 90001" +284399,Apple Airpods Headphones,1,150,11/01/19 15:02,"923 Dogwood St, San Francisco, CA 94016" +284400,AAA Batteries (4-pack),3,2.99,11/17/19 10:11,"813 Center St, Seattle, WA 98101" +284401,Lightning Charging Cable,1,14.95,11/11/19 20:51,"279 13th St, Boston, MA 02215" +284402,AAA Batteries (4-pack),4,2.99,11/25/19 19:37,"623 Main St, Seattle, WA 98101" +284403,Apple Airpods Headphones,1,150,11/24/19 15:01,"298 Park St, Seattle, WA 98101" +284404,USB-C Charging Cable,1,11.95,11/21/19 06:14,"328 5th St, Portland, ME 04101" +284405,20in Monitor,1,109.99,11/21/19 19:33,"565 4th St, Seattle, WA 98101" +284406,AAA Batteries (4-pack),3,2.99,11/24/19 21:31,"961 West St, San Francisco, CA 94016" +284407,AAA Batteries (4-pack),1,2.99,11/19/19 15:50,"150 4th St, Atlanta, GA 30301" +284408,AA Batteries (4-pack),1,3.84,11/28/19 21:18,"622 Jefferson St, New York City, NY 10001" +284409,AA Batteries (4-pack),2,3.84,11/17/19 09:38,"943 Chestnut St, Seattle, WA 98101" +284410,Wired Headphones,1,11.99,11/26/19 10:47,"928 5th St, Seattle, WA 98101" +284411,AAA Batteries (4-pack),1,2.99,11/27/19 22:09,"270 Dogwood St, San Francisco, CA 94016" +284412,USB-C Charging Cable,1,11.95,11/12/19 21:04,"320 Willow St, San Francisco, CA 94016" +284413,34in Ultrawide Monitor,1,379.99,11/23/19 12:39,"335 Spruce St, New York City, NY 10001" +284414,Apple Airpods Headphones,1,150,11/18/19 08:52,"798 2nd St, San Francisco, CA 94016" +284415,20in Monitor,1,109.99,11/26/19 12:48,"123 Cherry St, Los Angeles, CA 90001" +284416,Apple Airpods Headphones,1,150,11/04/19 12:23,"686 Lincoln St, Los Angeles, CA 90001" +284417,USB-C Charging Cable,1,11.95,11/27/19 02:18,"745 10th St, Portland, OR 97035" +284418,AA Batteries (4-pack),1,3.84,11/27/19 09:41,"625 Washington St, Dallas, TX 75001" +284419,AA Batteries (4-pack),1,3.84,11/26/19 17:57,"177 4th St, San Francisco, CA 94016" +284420,27in FHD Monitor,1,149.99,11/17/19 17:22,"724 Dogwood St, San Francisco, CA 94016" +284421,USB-C Charging Cable,1,11.95,11/09/19 16:14,"72 10th St, Boston, MA 02215" +284422,Lightning Charging Cable,1,14.95,11/26/19 11:39,"40 1st St, Portland, OR 97035" +284423,Wired Headphones,1,11.99,11/20/19 22:59,"908 Spruce St, New York City, NY 10001" +284424,Apple Airpods Headphones,1,150,11/09/19 18:30,"639 Washington St, Los Angeles, CA 90001" +284425,Bose SoundSport Headphones,1,99.99,11/07/19 09:17,"547 Jefferson St, Boston, MA 02215" +,,,,, +284426,Wired Headphones,2,11.99,11/29/19 16:24,"116 Highland St, San Francisco, CA 94016" +284427,Lightning Charging Cable,1,14.95,11/19/19 05:29,"319 Church St, New York City, NY 10001" +284428,Apple Airpods Headphones,1,150,11/27/19 19:28,"349 Lake St, New York City, NY 10001" +284429,Apple Airpods Headphones,1,150,11/19/19 15:57,"683 13th St, Boston, MA 02215" +284430,ThinkPad Laptop,1,999.99,11/08/19 14:33,"120 Sunset St, Portland, ME 04101" +284431,AAA Batteries (4-pack),1,2.99,11/21/19 16:11,"877 11th St, Portland, OR 97035" +284432,AAA Batteries (4-pack),1,2.99,11/23/19 08:43,"212 Ridge St, Atlanta, GA 30301" +284433,USB-C Charging Cable,1,11.95,11/16/19 20:24,"164 Spruce St, Dallas, TX 75001" +284434,USB-C Charging Cable,1,11.95,11/24/19 09:57,"919 Hill St, Boston, MA 02215" +284435,AAA Batteries (4-pack),1,2.99,11/16/19 18:15,"901 Ridge St, Los Angeles, CA 90001" +284436,USB-C Charging Cable,1,11.95,11/12/19 10:53,"851 Center St, Seattle, WA 98101" +284437,27in FHD Monitor,1,149.99,11/28/19 23:22,"817 Elm St, Dallas, TX 75001" +284438,Bose SoundSport Headphones,1,99.99,11/02/19 23:24,"111 River St, San Francisco, CA 94016" +284439,USB-C Charging Cable,1,11.95,11/17/19 13:54,"327 Jefferson St, Atlanta, GA 30301" +284439,AA Batteries (4-pack),1,3.84,11/17/19 13:54,"327 Jefferson St, Atlanta, GA 30301" +284440,Apple Airpods Headphones,1,150,11/21/19 20:08,"261 Lake St, Dallas, TX 75001" +284441,Lightning Charging Cable,1,14.95,11/27/19 19:14,"12 Center St, Dallas, TX 75001" +284442,AAA Batteries (4-pack),3,2.99,11/29/19 09:14,"357 Ridge St, Atlanta, GA 30301" +284443,27in 4K Gaming Monitor,1,389.99,11/17/19 15:18,"109 Forest St, Seattle, WA 98101" +284444,27in FHD Monitor,1,149.99,11/06/19 17:00,"599 Center St, Los Angeles, CA 90001" +284445,Wired Headphones,1,11.99,11/05/19 13:23,"582 Spruce St, New York City, NY 10001" +284446,AA Batteries (4-pack),1,3.84,11/29/19 20:37,"551 5th St, Dallas, TX 75001" +284447,ThinkPad Laptop,1,999.99,11/27/19 07:59,"707 South St, San Francisco, CA 94016" +284448,AAA Batteries (4-pack),4,2.99,11/27/19 20:18,"305 Spruce St, Atlanta, GA 30301" +284449,Lightning Charging Cable,1,14.95,11/21/19 22:28,"676 9th St, Boston, MA 02215" +284450,Wired Headphones,1,11.99,11/17/19 16:37,"371 Elm St, Dallas, TX 75001" +284451,USB-C Charging Cable,1,11.95,11/11/19 07:22,"411 1st St, Seattle, WA 98101" +284452,Apple Airpods Headphones,1,150,11/11/19 17:24,"882 7th St, Seattle, WA 98101" +284453,27in 4K Gaming Monitor,1,389.99,11/16/19 15:12,"450 Dogwood St, New York City, NY 10001" +284454,Macbook Pro Laptop,1,1700,11/08/19 16:30,"857 Elm St, San Francisco, CA 94016" +284455,ThinkPad Laptop,1,999.99,11/19/19 08:50,"610 8th St, New York City, NY 10001" +284456,USB-C Charging Cable,1,11.95,11/29/19 12:33,"95 Lincoln St, Austin, TX 73301" +284457,Lightning Charging Cable,1,14.95,11/26/19 11:33,"473 14th St, New York City, NY 10001" +284458,USB-C Charging Cable,1,11.95,11/11/19 08:36,"75 Jackson St, Portland, ME 04101" +284459,Macbook Pro Laptop,1,1700,11/09/19 20:42,"167 Johnson St, Los Angeles, CA 90001" +284460,AA Batteries (4-pack),1,3.84,11/03/19 19:00,"845 Maple St, New York City, NY 10001" +284461,Apple Airpods Headphones,1,150,11/20/19 08:33,"759 4th St, Portland, ME 04101" +284462,Wired Headphones,1,11.99,11/26/19 14:44,"899 Wilson St, San Francisco, CA 94016" +284463,27in FHD Monitor,1,149.99,11/22/19 19:15,"172 Adams St, Los Angeles, CA 90001" +284464,AA Batteries (4-pack),2,3.84,11/08/19 05:40,"381 13th St, San Francisco, CA 94016" +284465,Vareebadd Phone,1,400,11/25/19 14:49,"169 Washington St, Atlanta, GA 30301" +284466,Apple Airpods Headphones,1,150,11/25/19 10:46,"959 7th St, San Francisco, CA 94016" +284467,27in 4K Gaming Monitor,1,389.99,11/16/19 18:49,"677 River St, Dallas, TX 75001" +284468,AAA Batteries (4-pack),2,2.99,11/03/19 18:49,"848 10th St, Austin, TX 73301" +284469,Google Phone,1,600,11/22/19 08:24,"413 6th St, Dallas, TX 75001" +284469,USB-C Charging Cable,1,11.95,11/22/19 08:24,"413 6th St, Dallas, TX 75001" +284469,Wired Headphones,1,11.99,11/22/19 08:24,"413 6th St, Dallas, TX 75001" +284470,27in FHD Monitor,1,149.99,11/18/19 15:49,"50 Forest St, Atlanta, GA 30301" +284471,Bose SoundSport Headphones,1,99.99,11/15/19 21:26,"721 6th St, San Francisco, CA 94016" +284472,Apple Airpods Headphones,1,150,11/13/19 10:24,"37 10th St, Dallas, TX 75001" +284473,Lightning Charging Cable,2,14.95,11/28/19 18:01,"827 Center St, Boston, MA 02215" +284474,34in Ultrawide Monitor,1,379.99,11/18/19 18:42,"709 Forest St, Seattle, WA 98101" +284475,USB-C Charging Cable,1,11.95,11/13/19 01:10,"933 Jackson St, Austin, TX 73301" +284476,Apple Airpods Headphones,1,150,11/27/19 21:30,"827 Lakeview St, San Francisco, CA 94016" +284477,Flatscreen TV,1,300,11/26/19 14:33,"325 Main St, Los Angeles, CA 90001" +284478,Apple Airpods Headphones,1,150,11/13/19 02:19,"275 Main St, New York City, NY 10001" +284479,Lightning Charging Cable,2,14.95,11/05/19 17:03,"124 Forest St, Atlanta, GA 30301" +284480,Google Phone,1,600,11/03/19 14:40,"586 Pine St, Seattle, WA 98101" +284481,27in 4K Gaming Monitor,1,389.99,11/18/19 10:27,"96 Elm St, Seattle, WA 98101" +284482,Wired Headphones,1,11.99,11/23/19 22:53,"247 Center St, New York City, NY 10001" +284483,Wired Headphones,1,11.99,11/15/19 19:07,"991 Meadow St, Portland, OR 97035" +284484,Bose SoundSport Headphones,1,99.99,11/07/19 17:00,"899 Park St, Atlanta, GA 30301" +284485,AA Batteries (4-pack),1,3.84,11/23/19 08:41,"624 Main St, Boston, MA 02215" +284486,27in FHD Monitor,1,149.99,11/12/19 16:07,"476 12th St, San Francisco, CA 94016" +284487,Bose SoundSport Headphones,1,99.99,11/13/19 23:46,"875 Meadow St, Los Angeles, CA 90001" +284488,Macbook Pro Laptop,1,1700,11/29/19 20:26,"877 Ridge St, Boston, MA 02215" +284489,LG Dryer,1,600.0,11/21/19 02:49,"189 Walnut St, San Francisco, CA 94016" +284490,USB-C Charging Cable,1,11.95,11/25/19 15:25,"836 Dogwood St, San Francisco, CA 94016" +284491,AAA Batteries (4-pack),1,2.99,11/15/19 01:31,"28 Lakeview St, Los Angeles, CA 90001" +284492,34in Ultrawide Monitor,1,379.99,11/17/19 11:33,"733 Spruce St, Portland, ME 04101" +284493,Lightning Charging Cable,1,14.95,11/13/19 12:22,"743 Adams St, New York City, NY 10001" +284494,USB-C Charging Cable,1,11.95,11/07/19 06:49,"942 Meadow St, New York City, NY 10001" +284495,iPhone,1,700,11/20/19 06:16,"978 Spruce St, Dallas, TX 75001" +284495,Lightning Charging Cable,1,14.95,11/20/19 06:16,"978 Spruce St, Dallas, TX 75001" +284496,AAA Batteries (4-pack),2,2.99,11/01/19 19:41,"903 Maple St, Seattle, WA 98101" +284497,USB-C Charging Cable,1,11.95,11/06/19 08:19,"331 Madison St, San Francisco, CA 94016" +284497,AA Batteries (4-pack),1,3.84,11/06/19 08:19,"331 Madison St, San Francisco, CA 94016" +284498,Apple Airpods Headphones,1,150,11/14/19 01:05,"991 8th St, New York City, NY 10001" +284499,Bose SoundSport Headphones,1,99.99,11/17/19 14:03,"328 1st St, San Francisco, CA 94016" +284500,27in FHD Monitor,1,149.99,11/18/19 15:41,"449 Hickory St, Dallas, TX 75001" +284501,27in 4K Gaming Monitor,1,389.99,11/24/19 18:38,"948 2nd St, Portland, OR 97035" +284502,USB-C Charging Cable,1,11.95,11/27/19 23:18,"127 Park St, New York City, NY 10001" +284503,ThinkPad Laptop,1,999.99,11/27/19 13:02,"407 Dogwood St, Atlanta, GA 30301" +284504,AA Batteries (4-pack),1,3.84,11/18/19 11:43,"876 North St, Boston, MA 02215" +284505,Wired Headphones,1,11.99,11/07/19 20:17,"384 Pine St, Dallas, TX 75001" +284506,Wired Headphones,1,11.99,11/29/19 13:03,"492 6th St, San Francisco, CA 94016" +284507,Google Phone,1,600,11/23/19 20:16,"151 Wilson St, New York City, NY 10001" +284507,USB-C Charging Cable,1,11.95,11/23/19 20:16,"151 Wilson St, New York City, NY 10001" +284507,Wired Headphones,1,11.99,11/23/19 20:16,"151 Wilson St, New York City, NY 10001" +284508,AAA Batteries (4-pack),1,2.99,11/02/19 10:49,"402 Meadow St, Boston, MA 02215" +284509,AA Batteries (4-pack),1,3.84,11/09/19 23:37,"471 Maple St, San Francisco, CA 94016" +284510,34in Ultrawide Monitor,1,379.99,11/30/19 19:58,"456 Ridge St, San Francisco, CA 94016" +284511,USB-C Charging Cable,2,11.95,11/02/19 13:02,"550 Lake St, Los Angeles, CA 90001" +284512,Lightning Charging Cable,1,14.95,11/02/19 22:46,"726 Hill St, New York City, NY 10001" +284513,AA Batteries (4-pack),1,3.84,11/24/19 11:19,"835 5th St, Los Angeles, CA 90001" +284514,Apple Airpods Headphones,1,150,11/25/19 14:23,"910 Chestnut St, Atlanta, GA 30301" +284515,34in Ultrawide Monitor,1,379.99,11/12/19 19:28,"894 River St, Seattle, WA 98101" +284516,AA Batteries (4-pack),1,3.84,11/10/19 17:21,"529 West St, New York City, NY 10001" +284517,Google Phone,1,600,11/18/19 10:50,"457 14th St, Boston, MA 02215" +284517,USB-C Charging Cable,1,11.95,11/18/19 10:50,"457 14th St, Boston, MA 02215" +284518,AA Batteries (4-pack),1,3.84,11/12/19 08:09,"587 13th St, Atlanta, GA 30301" +284519,Flatscreen TV,1,300,11/11/19 06:01,"539 River St, San Francisco, CA 94016" +284520,Bose SoundSport Headphones,1,99.99,11/19/19 19:11,"221 South St, San Francisco, CA 94016" +,,,,, +284521,iPhone,1,700,11/07/19 13:12,"276 Johnson St, Seattle, WA 98101" +284522,USB-C Charging Cable,1,11.95,11/21/19 17:56,"989 Spruce St, San Francisco, CA 94016" +284523,AAA Batteries (4-pack),2,2.99,11/08/19 22:56,"198 13th St, San Francisco, CA 94016" +284524,AAA Batteries (4-pack),1,2.99,11/29/19 12:47,"723 Cedar St, Portland, OR 97035" +284525,20in Monitor,1,109.99,11/19/19 14:32,"775 Cherry St, Boston, MA 02215" +284526,Bose SoundSport Headphones,1,99.99,11/28/19 06:47,"985 Lincoln St, Atlanta, GA 30301" +284527,Wired Headphones,1,11.99,11/19/19 16:16,"471 Washington St, Boston, MA 02215" +284528,Apple Airpods Headphones,1,150,11/30/19 20:41,"967 9th St, Los Angeles, CA 90001" +284529,AA Batteries (4-pack),1,3.84,11/28/19 19:43,"116 Forest St, Los Angeles, CA 90001" +284530,27in FHD Monitor,1,149.99,11/15/19 21:35,"531 Cedar St, San Francisco, CA 94016" +284531,ThinkPad Laptop,1,999.99,11/22/19 19:33,"582 4th St, Atlanta, GA 30301" +284532,Google Phone,1,600,11/14/19 22:29,"538 2nd St, New York City, NY 10001" +284533,Google Phone,1,600,11/12/19 09:01,"822 North St, Atlanta, GA 30301" +284534,iPhone,1,700,11/26/19 15:52,"372 Lake St, New York City, NY 10001" +284535,AAA Batteries (4-pack),1,2.99,11/17/19 12:05,"380 Church St, Boston, MA 02215" +284536,Wired Headphones,1,11.99,11/09/19 15:43,"45 Main St, Los Angeles, CA 90001" +284537,27in 4K Gaming Monitor,1,389.99,11/04/19 18:52,"209 8th St, New York City, NY 10001" +284538,Wired Headphones,2,11.99,11/22/19 19:21,"862 12th St, Portland, OR 97035" +284539,AA Batteries (4-pack),1,3.84,11/21/19 23:19,"473 Walnut St, Boston, MA 02215" +284540,Lightning Charging Cable,1,14.95,11/18/19 10:44,"962 Pine St, New York City, NY 10001" +284541,AAA Batteries (4-pack),1,2.99,11/07/19 18:44,"581 Forest St, Los Angeles, CA 90001" +284542,USB-C Charging Cable,1,11.95,11/04/19 00:43,"423 Sunset St, San Francisco, CA 94016" +284543,USB-C Charging Cable,1,11.95,11/10/19 23:21,"680 14th St, Boston, MA 02215" +284544,AAA Batteries (4-pack),2,2.99,11/27/19 01:19,"847 Jackson St, San Francisco, CA 94016" +284545,27in FHD Monitor,1,149.99,11/19/19 11:34,"505 Center St, Boston, MA 02215" +284546,AA Batteries (4-pack),1,3.84,11/21/19 03:58,"998 14th St, Seattle, WA 98101" +284547,AA Batteries (4-pack),2,3.84,11/18/19 22:02,"622 Church St, Boston, MA 02215" +284548,AA Batteries (4-pack),2,3.84,11/26/19 17:42,"249 Willow St, San Francisco, CA 94016" +284549,AA Batteries (4-pack),1,3.84,11/25/19 12:28,"368 Park St, Los Angeles, CA 90001" +284550,Vareebadd Phone,1,400,11/02/19 10:30,"366 Highland St, Atlanta, GA 30301" +284550,USB-C Charging Cable,1,11.95,11/02/19 10:30,"366 Highland St, Atlanta, GA 30301" +284551,Lightning Charging Cable,1,14.95,11/30/19 15:29,"826 Jackson St, Atlanta, GA 30301" +284552,AAA Batteries (4-pack),1,2.99,11/08/19 20:37,"308 River St, Atlanta, GA 30301" +284553,iPhone,1,700,11/30/19 09:27,"492 Hill St, Atlanta, GA 30301" +284554,Bose SoundSport Headphones,1,99.99,11/14/19 15:04,"98 10th St, Atlanta, GA 30301" +284555,27in 4K Gaming Monitor,1,389.99,11/08/19 19:28,"331 Johnson St, New York City, NY 10001" +284556,AA Batteries (4-pack),2,3.84,11/13/19 19:30,"556 2nd St, New York City, NY 10001" +284557,Lightning Charging Cable,1,14.95,11/21/19 11:26,"635 Madison St, Los Angeles, CA 90001" +284558,Apple Airpods Headphones,1,150,11/04/19 22:46,"311 12th St, Seattle, WA 98101" +284559,Bose SoundSport Headphones,1,99.99,11/14/19 11:35,"171 4th St, Seattle, WA 98101" +284560,34in Ultrawide Monitor,1,379.99,11/23/19 15:29,"574 West St, Portland, ME 04101" +284561,Bose SoundSport Headphones,1,99.99,11/22/19 04:46,"111 7th St, Los Angeles, CA 90001" +284562,AA Batteries (4-pack),2,3.84,11/27/19 02:32,"522 Wilson St, San Francisco, CA 94016" +284563,LG Dryer,1,600.0,11/08/19 19:09,"406 Lincoln St, San Francisco, CA 94016" +284564,Macbook Pro Laptop,1,1700,11/30/19 13:43,"7 Pine St, Portland, OR 97035" +284565,34in Ultrawide Monitor,1,379.99,11/04/19 14:45,"904 1st St, Seattle, WA 98101" +284565,Apple Airpods Headphones,1,150,11/04/19 14:45,"904 1st St, Seattle, WA 98101" +284566,ThinkPad Laptop,1,999.99,11/11/19 09:56,"537 4th St, San Francisco, CA 94016" +284567,LG Washing Machine,1,600.0,11/18/19 11:28,"266 Willow St, Los Angeles, CA 90001" +284568,AAA Batteries (4-pack),2,2.99,11/24/19 17:51,"941 5th St, Austin, TX 73301" +284569,Wired Headphones,1,11.99,11/27/19 21:25,"702 Cherry St, Seattle, WA 98101" +284570,Wired Headphones,1,11.99,11/12/19 09:57,"668 Ridge St, Seattle, WA 98101" +284571,Wired Headphones,1,11.99,11/07/19 18:24,"665 Park St, San Francisco, CA 94016" +284572,Lightning Charging Cable,1,14.95,11/18/19 23:50,"91 11th St, San Francisco, CA 94016" +284573,AA Batteries (4-pack),1,3.84,11/07/19 19:04,"173 Walnut St, San Francisco, CA 94016" +284574,AA Batteries (4-pack),1,3.84,11/29/19 15:04,"423 Sunset St, Austin, TX 73301" +284575,20in Monitor,1,109.99,11/01/19 17:56,"470 Washington St, New York City, NY 10001" +284576,AA Batteries (4-pack),1,3.84,11/23/19 11:45,"349 Pine St, Los Angeles, CA 90001" +284577,Bose SoundSport Headphones,1,99.99,11/11/19 19:32,"905 Hickory St, Los Angeles, CA 90001" +284578,Apple Airpods Headphones,1,150,11/30/19 09:43,"382 Washington St, New York City, NY 10001" +284579,USB-C Charging Cable,1,11.95,11/15/19 14:44,"173 Highland St, San Francisco, CA 94016" +284580,Wired Headphones,1,11.99,11/13/19 12:38,"438 Walnut St, Portland, OR 97035" +284581,iPhone,1,700,11/30/19 22:54,"160 Lincoln St, Los Angeles, CA 90001" +284582,Google Phone,1,600,11/12/19 08:06,"585 2nd St, Portland, OR 97035" +284582,USB-C Charging Cable,1,11.95,11/12/19 08:06,"585 2nd St, Portland, OR 97035" +284583,iPhone,1,700,11/20/19 16:46,"838 Washington St, San Francisco, CA 94016" +284583,Apple Airpods Headphones,1,150,11/20/19 16:46,"838 Washington St, San Francisco, CA 94016" +284584,Flatscreen TV,1,300,11/20/19 10:51,"379 Ridge St, Portland, OR 97035" +284585,AA Batteries (4-pack),1,3.84,11/08/19 23:02,"573 Lincoln St, New York City, NY 10001" +284586,Apple Airpods Headphones,1,150,11/02/19 20:10,"597 10th St, Los Angeles, CA 90001" +284587,AAA Batteries (4-pack),1,2.99,11/19/19 12:29,"43 Spruce St, San Francisco, CA 94016" +284588,Bose SoundSport Headphones,1,99.99,11/06/19 21:30,"37 Lakeview St, Atlanta, GA 30301" +284589,AAA Batteries (4-pack),2,2.99,11/16/19 22:53,"391 Walnut St, San Francisco, CA 94016" +284590,27in 4K Gaming Monitor,1,389.99,11/15/19 13:11,"331 7th St, Seattle, WA 98101" +284591,Google Phone,1,600,11/14/19 12:52,"190 Maple St, San Francisco, CA 94016" +284592,AA Batteries (4-pack),2,3.84,11/01/19 22:21,"565 Sunset St, New York City, NY 10001" +284593,Macbook Pro Laptop,1,1700,11/17/19 09:49,"365 Pine St, Los Angeles, CA 90001" +284594,Bose SoundSport Headphones,1,99.99,11/06/19 20:52,"892 Willow St, Boston, MA 02215" +284595,Lightning Charging Cable,1,14.95,11/27/19 21:31,"382 Ridge St, Los Angeles, CA 90001" +284596,AA Batteries (4-pack),1,3.84,11/19/19 18:18,"32 Park St, New York City, NY 10001" +284597,AAA Batteries (4-pack),1,2.99,11/19/19 15:10,"848 Hill St, San Francisco, CA 94016" +284598,Wired Headphones,1,11.99,11/29/19 15:21,"988 Sunset St, Boston, MA 02215" +284599,AA Batteries (4-pack),1,3.84,11/06/19 12:50,"855 Jefferson St, Los Angeles, CA 90001" +284600,Wired Headphones,1,11.99,11/05/19 17:03,"859 5th St, New York City, NY 10001" +284601,Macbook Pro Laptop,1,1700,11/16/19 16:31,"426 Dogwood St, Dallas, TX 75001" +284602,27in 4K Gaming Monitor,1,389.99,11/22/19 22:13,"570 Meadow St, San Francisco, CA 94016" +284603,Flatscreen TV,1,300,11/06/19 19:20,"162 Willow St, Dallas, TX 75001" +284604,34in Ultrawide Monitor,1,379.99,11/05/19 20:32,"289 West St, Boston, MA 02215" +284605,27in FHD Monitor,1,149.99,11/27/19 03:02,"434 Lake St, San Francisco, CA 94016" +284606,Bose SoundSport Headphones,1,99.99,11/23/19 18:34,"164 7th St, Los Angeles, CA 90001" +284607,27in 4K Gaming Monitor,1,389.99,11/16/19 19:33,"776 Hill St, Austin, TX 73301" +284608,Bose SoundSport Headphones,1,99.99,11/19/19 08:45,"702 Walnut St, San Francisco, CA 94016" +284609,Apple Airpods Headphones,1,150,11/10/19 17:34,"288 Cedar St, San Francisco, CA 94016" +284610,Wired Headphones,1,11.99,11/20/19 19:34,"769 Center St, Portland, OR 97035" +284611,AAA Batteries (4-pack),1,2.99,11/02/19 22:17,"609 Cherry St, Atlanta, GA 30301" +284612,Flatscreen TV,1,300,11/01/19 19:31,"159 5th St, Los Angeles, CA 90001" +284613,Google Phone,1,600,11/29/19 16:59,"21 14th St, Atlanta, GA 30301" +284614,AA Batteries (4-pack),1,3.84,11/12/19 16:28,"49 Sunset St, Portland, OR 97035" +284615,ThinkPad Laptop,1,999.99,11/09/19 09:56,"281 Johnson St, Seattle, WA 98101" +284616,Wired Headphones,1,11.99,11/08/19 17:32,"985 Willow St, New York City, NY 10001" +284617,Lightning Charging Cable,1,14.95,11/29/19 17:07,"91 Pine St, Portland, OR 97035" +284618,27in 4K Gaming Monitor,1,389.99,11/19/19 23:44,"234 Park St, Dallas, TX 75001" +284619,27in 4K Gaming Monitor,1,389.99,11/06/19 08:51,"450 Sunset St, New York City, NY 10001" +284620,AAA Batteries (4-pack),1,2.99,11/23/19 17:32,"60 Center St, San Francisco, CA 94016" +284621,34in Ultrawide Monitor,1,379.99,11/03/19 08:50,"839 Pine St, Los Angeles, CA 90001" +284622,Apple Airpods Headphones,1,150,11/12/19 12:21,"145 Main St, San Francisco, CA 94016" +284623,Bose SoundSport Headphones,1,99.99,11/25/19 19:57,"625 6th St, Los Angeles, CA 90001" +284624,USB-C Charging Cable,1,11.95,11/09/19 22:53,"948 Church St, Los Angeles, CA 90001" +284625,AAA Batteries (4-pack),2,2.99,11/27/19 20:56,"394 Maple St, Dallas, TX 75001" +284626,34in Ultrawide Monitor,1,379.99,11/18/19 19:37,"105 Dogwood St, Atlanta, GA 30301" +284627,Bose SoundSport Headphones,1,99.99,11/13/19 18:15,"683 Hill St, Boston, MA 02215" +284628,Macbook Pro Laptop,1,1700,11/15/19 18:03,"449 Main St, Boston, MA 02215" +284629,27in 4K Gaming Monitor,1,389.99,11/08/19 12:56,"132 13th St, Boston, MA 02215" +284629,AAA Batteries (4-pack),1,2.99,11/08/19 12:56,"132 13th St, Boston, MA 02215" +284630,USB-C Charging Cable,1,11.95,11/25/19 09:56,"445 Highland St, Los Angeles, CA 90001" +284631,20in Monitor,1,109.99,11/06/19 10:47,"33 Lake St, Los Angeles, CA 90001" +284632,Lightning Charging Cable,1,14.95,11/28/19 16:56,"975 Elm St, Boston, MA 02215" +284633,Apple Airpods Headphones,1,150,11/02/19 21:38,"499 Willow St, San Francisco, CA 94016" +284634,AA Batteries (4-pack),1,3.84,11/21/19 13:13,"811 Center St, San Francisco, CA 94016" +284635,34in Ultrawide Monitor,1,379.99,11/26/19 21:45,"885 Church St, Boston, MA 02215" +284636,AA Batteries (4-pack),1,3.84,11/13/19 10:59,"216 2nd St, Austin, TX 73301" +284637,Lightning Charging Cable,1,14.95,11/05/19 19:41,"360 North St, San Francisco, CA 94016" +284638,USB-C Charging Cable,2,11.95,11/27/19 16:55,"743 North St, Portland, OR 97035" +284639,USB-C Charging Cable,2,11.95,11/23/19 17:32,"763 Washington St, Los Angeles, CA 90001" +284640,AA Batteries (4-pack),1,3.84,11/06/19 14:10,"440 4th St, Boston, MA 02215" +284641,iPhone,1,700,11/07/19 14:19,"614 Pine St, New York City, NY 10001" +284641,Lightning Charging Cable,1,14.95,11/07/19 14:19,"614 Pine St, New York City, NY 10001" +284642,AAA Batteries (4-pack),1,2.99,11/27/19 20:09,"588 Johnson St, Atlanta, GA 30301" +284643,Apple Airpods Headphones,1,150,11/12/19 00:40,"647 Highland St, San Francisco, CA 94016" +284644,USB-C Charging Cable,1,11.95,11/13/19 12:16,"569 4th St, Austin, TX 73301" +284645,27in FHD Monitor,1,149.99,11/30/19 14:40,"965 South St, Los Angeles, CA 90001" +284646,Bose SoundSport Headphones,1,99.99,11/18/19 12:35,"821 Walnut St, San Francisco, CA 94016" +284647,AAA Batteries (4-pack),2,2.99,11/12/19 19:35,"327 Madison St, Dallas, TX 75001" +284648,AA Batteries (4-pack),1,3.84,11/02/19 14:51,"425 Main St, San Francisco, CA 94016" +284649,Lightning Charging Cable,1,14.95,11/27/19 14:46,"551 Sunset St, Boston, MA 02215" +284650,Wired Headphones,1,11.99,11/17/19 21:39,"539 5th St, Boston, MA 02215" +284651,Bose SoundSport Headphones,1,99.99,11/24/19 08:41,"104 Sunset St, Los Angeles, CA 90001" +284652,27in FHD Monitor,1,149.99,11/05/19 10:04,"218 Hickory St, Boston, MA 02215" +284653,Apple Airpods Headphones,1,150,11/14/19 12:59,"583 Ridge St, New York City, NY 10001" +284654,Bose SoundSport Headphones,1,99.99,11/10/19 14:45,"689 Ridge St, San Francisco, CA 94016" +284655,AAA Batteries (4-pack),2,2.99,11/20/19 22:15,"776 Hickory St, Atlanta, GA 30301" +284656,AA Batteries (4-pack),1,3.84,11/30/19 13:47,"223 12th St, San Francisco, CA 94016" +284657,AAA Batteries (4-pack),2,2.99,11/09/19 08:19,"182 Cedar St, Boston, MA 02215" +284658,34in Ultrawide Monitor,1,379.99,11/18/19 21:30,"276 Dogwood St, Atlanta, GA 30301" +284659,Apple Airpods Headphones,1,150,11/13/19 20:15,"537 12th St, Dallas, TX 75001" +284660,Wired Headphones,1,11.99,11/15/19 11:50,"57 Pine St, Los Angeles, CA 90001" +284661,Flatscreen TV,1,300,11/10/19 18:43,"741 9th St, San Francisco, CA 94016" +284662,AAA Batteries (4-pack),3,2.99,11/09/19 16:10,"404 Jefferson St, San Francisco, CA 94016" +284663,AAA Batteries (4-pack),1,2.99,11/22/19 13:44,"195 8th St, San Francisco, CA 94016" +284664,34in Ultrawide Monitor,1,379.99,11/20/19 12:01,"786 Walnut St, San Francisco, CA 94016" +284665,AA Batteries (4-pack),2,3.84,11/08/19 11:34,"444 Main St, Dallas, TX 75001" +284666,USB-C Charging Cable,1,11.95,11/23/19 21:45,"254 Forest St, Los Angeles, CA 90001" +284667,Google Phone,1,600,11/11/19 00:03,"306 Main St, New York City, NY 10001" +284668,USB-C Charging Cable,1,11.95,11/05/19 15:36,"137 7th St, New York City, NY 10001" +284669,27in FHD Monitor,1,149.99,11/26/19 13:46,"74 Madison St, Dallas, TX 75001" +284670,AAA Batteries (4-pack),2,2.99,11/19/19 11:37,"22 Highland St, San Francisco, CA 94016" +284671,AA Batteries (4-pack),1,3.84,11/20/19 20:08,"467 4th St, San Francisco, CA 94016" +284672,Wired Headphones,1,11.99,11/20/19 08:34,"918 Lake St, Dallas, TX 75001" +284673,Lightning Charging Cable,1,14.95,11/22/19 16:37,"844 Cherry St, Boston, MA 02215" +284674,Apple Airpods Headphones,1,150,11/02/19 10:44,"390 Park St, Seattle, WA 98101" +284675,AA Batteries (4-pack),1,3.84,11/17/19 20:00,"286 Church St, Portland, OR 97035" +284676,Wired Headphones,1,11.99,11/16/19 11:37,"458 South St, Dallas, TX 75001" +284677,Apple Airpods Headphones,1,150,11/11/19 20:51,"58 1st St, San Francisco, CA 94016" +284678,27in FHD Monitor,1,149.99,11/25/19 13:51,"34 Cedar St, Atlanta, GA 30301" +284679,USB-C Charging Cable,1,11.95,11/12/19 12:46,"668 2nd St, New York City, NY 10001" +284680,AAA Batteries (4-pack),1,2.99,11/26/19 15:30,"401 Walnut St, New York City, NY 10001" +284681,34in Ultrawide Monitor,1,379.99,11/12/19 22:01,"742 Johnson St, Seattle, WA 98101" +284682,ThinkPad Laptop,1,999.99,11/24/19 13:27,"547 Park St, Portland, ME 04101" +284683,27in FHD Monitor,1,149.99,11/28/19 16:37,"351 Spruce St, Los Angeles, CA 90001" +284684,Lightning Charging Cable,1,14.95,11/16/19 17:11,"422 10th St, Seattle, WA 98101" +284685,AAA Batteries (4-pack),2,2.99,11/21/19 14:04,"549 2nd St, Los Angeles, CA 90001" +284686,AAA Batteries (4-pack),1,2.99,11/13/19 14:27,"816 12th St, New York City, NY 10001" +284687,34in Ultrawide Monitor,1,379.99,11/24/19 15:02,"777 9th St, Boston, MA 02215" +284688,Wired Headphones,1,11.99,11/09/19 18:26,"962 14th St, Austin, TX 73301" +284689,Apple Airpods Headphones,1,150,11/10/19 12:53,"94 Hickory St, San Francisco, CA 94016" +284690,iPhone,1,700,11/29/19 09:25,"279 5th St, Los Angeles, CA 90001" +284691,Apple Airpods Headphones,1,150,11/07/19 18:13,"663 Chestnut St, Los Angeles, CA 90001" +284692,AA Batteries (4-pack),1,3.84,11/12/19 17:15,"850 Cherry St, Seattle, WA 98101" +284693,ThinkPad Laptop,1,999.99,11/02/19 12:58,"968 Dogwood St, New York City, NY 10001" +284694,AAA Batteries (4-pack),1,2.99,11/03/19 19:30,"998 11th St, Los Angeles, CA 90001" +284695,Bose SoundSport Headphones,1,99.99,11/28/19 16:52,"253 Pine St, Los Angeles, CA 90001" +284696,ThinkPad Laptop,1,999.99,11/21/19 20:20,"581 14th St, Los Angeles, CA 90001" +284697,Wired Headphones,2,11.99,11/17/19 13:47,"541 Hill St, San Francisco, CA 94016" +284698,AAA Batteries (4-pack),1,2.99,11/09/19 19:28,"953 Hill St, San Francisco, CA 94016" +284699,AAA Batteries (4-pack),1,2.99,11/21/19 14:11,"503 River St, Portland, OR 97035" +284700,Wired Headphones,1,11.99,11/28/19 20:14,"247 Wilson St, New York City, NY 10001" +284701,iPhone,1,700,11/29/19 23:03,"446 8th St, Boston, MA 02215" +284701,Lightning Charging Cable,1,14.95,11/29/19 23:03,"446 8th St, Boston, MA 02215" +284702,Lightning Charging Cable,1,14.95,11/03/19 18:09,"74 Lincoln St, Los Angeles, CA 90001" +284702,AA Batteries (4-pack),1,3.84,11/03/19 18:09,"74 Lincoln St, Los Angeles, CA 90001" +284703,iPhone,1,700,11/22/19 10:47,"978 Cedar St, Seattle, WA 98101" +284704,Flatscreen TV,1,300,11/20/19 13:33,"482 5th St, Los Angeles, CA 90001" +284705,Bose SoundSport Headphones,1,99.99,11/14/19 15:04,"174 4th St, New York City, NY 10001" +284706,Bose SoundSport Headphones,1,99.99,11/05/19 16:11,"643 Dogwood St, Los Angeles, CA 90001" +284707,Lightning Charging Cable,1,14.95,11/04/19 14:01,"656 12th St, Dallas, TX 75001" +284707,27in FHD Monitor,1,149.99,11/04/19 14:01,"656 12th St, Dallas, TX 75001" +284708,AA Batteries (4-pack),1,3.84,11/03/19 21:56,"721 1st St, San Francisco, CA 94016" +284709,USB-C Charging Cable,1,11.95,11/12/19 08:38,"524 Hickory St, New York City, NY 10001" +284710,27in FHD Monitor,1,149.99,11/13/19 20:13,"799 Hickory St, New York City, NY 10001" +284711,USB-C Charging Cable,1,11.95,11/12/19 11:11,"340 Sunset St, Dallas, TX 75001" +284712,Vareebadd Phone,1,400,11/04/19 01:22,"847 12th St, New York City, NY 10001" +284713,Lightning Charging Cable,2,14.95,11/04/19 14:45,"897 9th St, Los Angeles, CA 90001" +284714,Apple Airpods Headphones,1,150,11/08/19 10:50,"797 Sunset St, Atlanta, GA 30301" +284715,Wired Headphones,1,11.99,11/30/19 11:36,"944 Park St, New York City, NY 10001" +284716,Apple Airpods Headphones,1,150,11/04/19 20:33,"129 6th St, San Francisco, CA 94016" +284717,20in Monitor,1,109.99,11/14/19 17:03,"702 Lake St, New York City, NY 10001" +284718,Wired Headphones,1,11.99,11/09/19 08:28,"815 Forest St, San Francisco, CA 94016" +284719,Apple Airpods Headphones,1,150,11/21/19 10:18,"779 2nd St, Boston, MA 02215" +284720,34in Ultrawide Monitor,1,379.99,11/27/19 13:13,"95 Jackson St, San Francisco, CA 94016" +284721,Wired Headphones,1,11.99,11/27/19 10:53,"765 Jackson St, Boston, MA 02215" +284722,USB-C Charging Cable,1,11.95,11/26/19 10:07,"986 Meadow St, Austin, TX 73301" +284723,AAA Batteries (4-pack),2,2.99,11/10/19 11:31,"126 Ridge St, New York City, NY 10001" +284723,AAA Batteries (4-pack),1,2.99,11/10/19 11:31,"126 Ridge St, New York City, NY 10001" +284724,AAA Batteries (4-pack),1,2.99,11/25/19 14:05,"717 Dogwood St, Dallas, TX 75001" +284725,Apple Airpods Headphones,1,150,11/09/19 11:19,"772 Hickory St, Portland, OR 97035" +284726,Flatscreen TV,1,300,11/30/19 10:57,"704 Lakeview St, Austin, TX 73301" +284727,iPhone,1,700,11/15/19 18:53,"81 Chestnut St, Austin, TX 73301" +284727,Wired Headphones,1,11.99,11/15/19 18:53,"81 Chestnut St, Austin, TX 73301" +284728,USB-C Charging Cable,1,11.95,11/24/19 15:53,"949 Walnut St, Los Angeles, CA 90001" +284729,AA Batteries (4-pack),2,3.84,11/20/19 09:19,"339 South St, Los Angeles, CA 90001" +284730,34in Ultrawide Monitor,1,379.99,11/03/19 15:01,"9 Hill St, Seattle, WA 98101" +284731,Apple Airpods Headphones,1,150,11/18/19 06:03,"683 Lakeview St, Los Angeles, CA 90001" +284732,Lightning Charging Cable,1,14.95,11/14/19 16:15,"409 West St, San Francisco, CA 94016" +284733,Lightning Charging Cable,1,14.95,11/08/19 19:03,"787 Pine St, Los Angeles, CA 90001" +284734,AA Batteries (4-pack),2,3.84,11/03/19 18:27,"662 Lake St, San Francisco, CA 94016" +284735,Apple Airpods Headphones,1,150,11/01/19 18:55,"847 Lake St, San Francisco, CA 94016" +284736,Lightning Charging Cable,1,14.95,11/13/19 13:10,"272 West St, Los Angeles, CA 90001" +284737,Bose SoundSport Headphones,1,99.99,11/23/19 14:42,"72 13th St, Los Angeles, CA 90001" +284738,Apple Airpods Headphones,1,150,11/04/19 15:24,"754 Center St, Austin, TX 73301" +284739,Lightning Charging Cable,1,14.95,11/26/19 20:10,"50 7th St, Seattle, WA 98101" +284740,AA Batteries (4-pack),1,3.84,11/25/19 11:29,"438 Jefferson St, Seattle, WA 98101" +284741,Bose SoundSport Headphones,1,99.99,11/27/19 19:11,"786 6th St, Atlanta, GA 30301" +284742,20in Monitor,1,109.99,11/03/19 23:52,"935 Center St, San Francisco, CA 94016" +284743,Apple Airpods Headphones,1,150,11/14/19 09:48,"337 4th St, Portland, OR 97035" +284744,AA Batteries (4-pack),1,3.84,11/16/19 11:15,"256 Lincoln St, New York City, NY 10001" +284745,USB-C Charging Cable,1,11.95,11/01/19 13:00,"947 1st St, Boston, MA 02215" +284746,iPhone,1,700,11/18/19 13:06,"175 Park St, Los Angeles, CA 90001" +284747,Lightning Charging Cable,1,14.95,11/20/19 07:41,"42 Madison St, Austin, TX 73301" +284748,Lightning Charging Cable,1,14.95,11/01/19 22:13,"141 West St, Los Angeles, CA 90001" +284749,27in FHD Monitor,1,149.99,11/11/19 18:04,"821 6th St, San Francisco, CA 94016" +284750,USB-C Charging Cable,2,11.95,11/16/19 08:18,"192 Lincoln St, Los Angeles, CA 90001" +284751,Google Phone,1,600,11/07/19 19:56,"918 Meadow St, Boston, MA 02215" +284752,Bose SoundSport Headphones,1,99.99,11/19/19 15:26,"449 Center St, Los Angeles, CA 90001" +284753,27in FHD Monitor,1,149.99,11/17/19 19:03,"871 Lakeview St, Austin, TX 73301" +284754,Lightning Charging Cable,1,14.95,11/20/19 19:10,"88 14th St, New York City, NY 10001" +284755,20in Monitor,1,109.99,11/05/19 22:06,"462 Pine St, Portland, OR 97035" +284756,Wired Headphones,1,11.99,11/22/19 18:15,"496 West St, Austin, TX 73301" +284757,Apple Airpods Headphones,1,150,11/11/19 15:29,"482 Lake St, New York City, NY 10001" +284758,Apple Airpods Headphones,1,150,11/13/19 16:00,"704 14th St, Austin, TX 73301" +284759,Apple Airpods Headphones,1,150,11/26/19 19:22,"661 11th St, Boston, MA 02215" +284760,27in 4K Gaming Monitor,1,389.99,11/21/19 20:44,"159 Hickory St, Atlanta, GA 30301" +284761,AAA Batteries (4-pack),4,2.99,11/17/19 19:14,"795 12th St, Los Angeles, CA 90001" +284762,27in 4K Gaming Monitor,1,389.99,11/07/19 18:52,"133 Park St, Austin, TX 73301" +284763,Wired Headphones,1,11.99,11/14/19 10:09,"899 Highland St, New York City, NY 10001" +284764,AA Batteries (4-pack),2,3.84,11/24/19 19:19,"437 Pine St, Atlanta, GA 30301" +284765,iPhone,1,700,11/18/19 10:26,"7 1st St, San Francisco, CA 94016" +284765,Lightning Charging Cable,1,14.95,11/18/19 10:26,"7 1st St, San Francisco, CA 94016" +284766,AAA Batteries (4-pack),2,2.99,11/24/19 15:35,"433 Washington St, San Francisco, CA 94016" +284766,LG Dryer,1,600.0,11/24/19 15:35,"433 Washington St, San Francisco, CA 94016" +284767,Lightning Charging Cable,1,14.95,11/12/19 10:29,"123 Walnut St, Seattle, WA 98101" +284768,Wired Headphones,1,11.99,11/14/19 17:55,"311 Lakeview St, Seattle, WA 98101" +284769,Lightning Charging Cable,2,14.95,11/09/19 04:03,"820 5th St, San Francisco, CA 94016" +284770,AAA Batteries (4-pack),1,2.99,11/12/19 09:25,"510 Cherry St, Los Angeles, CA 90001" +284771,Wired Headphones,1,11.99,11/28/19 22:05,"912 River St, Dallas, TX 75001" +284772,34in Ultrawide Monitor,1,379.99,11/26/19 13:28,"866 Church St, Atlanta, GA 30301" +284773,27in FHD Monitor,1,149.99,11/22/19 19:08,"511 Ridge St, San Francisco, CA 94016" +284774,AAA Batteries (4-pack),1,2.99,11/21/19 16:37,"300 Wilson St, New York City, NY 10001" +284775,Vareebadd Phone,1,400,11/03/19 09:35,"478 7th St, Atlanta, GA 30301" +284775,USB-C Charging Cable,1,11.95,11/03/19 09:35,"478 7th St, Atlanta, GA 30301" +284775,Bose SoundSport Headphones,1,99.99,11/03/19 09:35,"478 7th St, Atlanta, GA 30301" +284776,Wired Headphones,1,11.99,11/30/19 19:11,"938 Main St, Los Angeles, CA 90001" +284777,34in Ultrawide Monitor,1,379.99,11/30/19 16:43,"900 Washington St, Boston, MA 02215" +284778,Apple Airpods Headphones,1,150,11/11/19 11:08,"544 South St, San Francisco, CA 94016" +284779,34in Ultrawide Monitor,1,379.99,11/21/19 09:26,"679 River St, Dallas, TX 75001" +284780,AAA Batteries (4-pack),1,2.99,11/27/19 15:36,"509 River St, Los Angeles, CA 90001" +284781,Lightning Charging Cable,1,14.95,11/03/19 12:04,"317 Wilson St, Portland, ME 04101" +284782,Apple Airpods Headphones,1,150,11/16/19 12:37,"106 2nd St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +284783,AAA Batteries (4-pack),1,2.99,11/07/19 16:17,"944 4th St, San Francisco, CA 94016" +284784,Flatscreen TV,1,300,11/12/19 19:41,"269 8th St, Atlanta, GA 30301" +284785,Wired Headphones,1,11.99,11/10/19 20:33,"986 Elm St, San Francisco, CA 94016" +284786,Google Phone,1,600,11/23/19 19:43,"443 11th St, Portland, OR 97035" +284786,USB-C Charging Cable,1,11.95,11/23/19 19:43,"443 11th St, Portland, OR 97035" +284787,AA Batteries (4-pack),2,3.84,11/23/19 16:08,"573 Lincoln St, Boston, MA 02215" +284788,27in FHD Monitor,1,149.99,11/22/19 18:28,"813 11th St, San Francisco, CA 94016" +284789,LG Washing Machine,1,600.0,11/02/19 18:18,"84 7th St, San Francisco, CA 94016" +284790,LG Dryer,1,600.0,11/16/19 22:27,"302 Wilson St, Atlanta, GA 30301" +284791,USB-C Charging Cable,1,11.95,11/17/19 08:55,"744 South St, Los Angeles, CA 90001" +284791,USB-C Charging Cable,1,11.95,11/17/19 08:55,"744 South St, Los Angeles, CA 90001" +284792,Apple Airpods Headphones,1,150,11/02/19 10:15,"376 Center St, Los Angeles, CA 90001" +284793,27in FHD Monitor,1,149.99,11/22/19 09:25,"465 2nd St, Boston, MA 02215" +284794,Bose SoundSport Headphones,1,99.99,11/07/19 20:23,"255 Lake St, New York City, NY 10001" +284795,Bose SoundSport Headphones,1,99.99,11/20/19 21:40,"251 10th St, Boston, MA 02215" +284796,Lightning Charging Cable,1,14.95,11/16/19 19:18,"877 Washington St, Los Angeles, CA 90001" +284797,Apple Airpods Headphones,1,150,11/20/19 17:16,"857 Hill St, Seattle, WA 98101" +284798,ThinkPad Laptop,1,999.99,11/12/19 10:50,"295 Lakeview St, New York City, NY 10001" +284799,Bose SoundSport Headphones,1,99.99,11/27/19 14:06,"416 Lake St, New York City, NY 10001" +284800,USB-C Charging Cable,1,11.95,11/05/19 04:05,"720 Elm St, San Francisco, CA 94016" +284801,USB-C Charging Cable,1,11.95,11/15/19 01:10,"958 Pine St, New York City, NY 10001" +284802,iPhone,1,700,11/26/19 15:33,"319 Jackson St, Boston, MA 02215" +284803,Lightning Charging Cable,2,14.95,11/24/19 10:55,"79 Highland St, Los Angeles, CA 90001" +284804,Wired Headphones,1,11.99,11/20/19 23:27,"88 11th St, San Francisco, CA 94016" +284805,USB-C Charging Cable,1,11.95,11/21/19 10:16,"836 Dogwood St, Seattle, WA 98101" +284806,AAA Batteries (4-pack),1,2.99,11/17/19 10:12,"181 10th St, New York City, NY 10001" +284807,Lightning Charging Cable,1,14.95,11/21/19 12:58,"703 Washington St, Portland, OR 97035" +284808,USB-C Charging Cable,1,11.95,11/24/19 20:55,"385 Lincoln St, New York City, NY 10001" +284809,iPhone,1,700,11/23/19 16:18,"307 Park St, San Francisco, CA 94016" +284809,Lightning Charging Cable,1,14.95,11/23/19 16:18,"307 Park St, San Francisco, CA 94016" +284810,27in 4K Gaming Monitor,1,389.99,11/08/19 13:46,"303 Lincoln St, New York City, NY 10001" +284811,USB-C Charging Cable,1,11.95,11/05/19 22:34,"308 Chestnut St, San Francisco, CA 94016" +284812,Vareebadd Phone,1,400,11/20/19 06:22,"565 Church St, Dallas, TX 75001" +284813,Apple Airpods Headphones,1,150,11/30/19 20:56,"342 9th St, Seattle, WA 98101" +284814,AAA Batteries (4-pack),1,2.99,11/15/19 08:40,"850 9th St, Austin, TX 73301" +284815,20in Monitor,1,109.99,11/28/19 14:30,"463 Spruce St, Los Angeles, CA 90001" +284816,Lightning Charging Cable,1,14.95,11/13/19 09:06,"148 Willow St, San Francisco, CA 94016" +284817,AAA Batteries (4-pack),1,2.99,11/29/19 09:33,"185 Willow St, Atlanta, GA 30301" +284818,USB-C Charging Cable,1,11.95,11/01/19 14:50,"762 Lakeview St, New York City, NY 10001" +284819,Lightning Charging Cable,1,14.95,11/05/19 20:29,"705 Madison St, Austin, TX 73301" +284820,Bose SoundSport Headphones,1,99.99,11/13/19 23:18,"754 Wilson St, Los Angeles, CA 90001" +284821,iPhone,1,700,11/02/19 02:00,"486 10th St, Atlanta, GA 30301" +284821,Lightning Charging Cable,1,14.95,11/02/19 02:00,"486 10th St, Atlanta, GA 30301" +284821,Wired Headphones,1,11.99,11/02/19 02:00,"486 10th St, Atlanta, GA 30301" +284822,27in FHD Monitor,1,149.99,11/23/19 19:15,"573 Pine St, Seattle, WA 98101" +284823,Wired Headphones,1,11.99,11/27/19 20:38,"740 Willow St, Dallas, TX 75001" +284824,ThinkPad Laptop,1,999.99,11/25/19 01:36,"258 2nd St, Dallas, TX 75001" +284825,Lightning Charging Cable,1,14.95,11/20/19 09:09,"961 Hickory St, New York City, NY 10001" +284826,AA Batteries (4-pack),1,3.84,11/01/19 23:28,"785 Dogwood St, Atlanta, GA 30301" +284827,AA Batteries (4-pack),1,3.84,11/19/19 14:21,"417 Center St, Dallas, TX 75001" +284828,Lightning Charging Cable,1,14.95,11/11/19 09:49,"885 Cherry St, Boston, MA 02215" +284829,Apple Airpods Headphones,1,150,11/26/19 12:51,"329 Forest St, New York City, NY 10001" +284830,AA Batteries (4-pack),1,3.84,11/01/19 20:26,"133 Pine St, New York City, NY 10001" +284831,USB-C Charging Cable,1,11.95,11/19/19 21:59,"745 Jackson St, Los Angeles, CA 90001" +284831,AA Batteries (4-pack),1,3.84,11/19/19 21:59,"745 Jackson St, Los Angeles, CA 90001" +284832,iPhone,1,700,11/10/19 17:36,"129 Sunset St, Portland, OR 97035" +284832,Lightning Charging Cable,1,14.95,11/10/19 17:36,"129 Sunset St, Portland, OR 97035" +284833,Macbook Pro Laptop,1,1700,11/17/19 18:18,"720 River St, Atlanta, GA 30301" +284834,Lightning Charging Cable,1,14.95,11/05/19 01:48,"805 North St, Portland, OR 97035" +284835,34in Ultrawide Monitor,1,379.99,11/26/19 17:03,"852 Dogwood St, Portland, ME 04101" +284836,AA Batteries (4-pack),1,3.84,11/07/19 09:24,"532 10th St, Dallas, TX 75001" +284837,AA Batteries (4-pack),2,3.84,11/26/19 05:24,"978 North St, San Francisco, CA 94016" +284838,AA Batteries (4-pack),1,3.84,11/02/19 14:36,"846 Cherry St, New York City, NY 10001" +284839,Macbook Pro Laptop,1,1700,11/11/19 14:27,"564 River St, San Francisco, CA 94016" +284840,AA Batteries (4-pack),2,3.84,11/02/19 23:37,"821 6th St, San Francisco, CA 94016" +284841,Lightning Charging Cable,1,14.95,11/05/19 01:14,"861 Jefferson St, San Francisco, CA 94016" +284842,Lightning Charging Cable,1,14.95,11/29/19 23:28,"5 Hickory St, New York City, NY 10001" +284843,Wired Headphones,1,11.99,11/06/19 10:13,"813 12th St, New York City, NY 10001" +284844,AAA Batteries (4-pack),2,2.99,11/21/19 20:43,"893 12th St, Boston, MA 02215" +284845,27in FHD Monitor,1,149.99,11/26/19 16:16,"444 Cherry St, San Francisco, CA 94016" +284846,Apple Airpods Headphones,1,150,11/09/19 14:00,"268 River St, Los Angeles, CA 90001" +284847,Wired Headphones,1,11.99,11/29/19 14:55,"778 Highland St, San Francisco, CA 94016" +284848,ThinkPad Laptop,1,999.99,11/18/19 00:23,"217 Chestnut St, San Francisco, CA 94016" +284849,Lightning Charging Cable,1,14.95,11/16/19 20:21,"760 Chestnut St, Boston, MA 02215" +284850,AAA Batteries (4-pack),1,2.99,11/25/19 21:18,"737 Forest St, Boston, MA 02215" +284851,ThinkPad Laptop,1,999.99,11/22/19 19:56,"142 Hill St, Seattle, WA 98101" +284852,Google Phone,1,600,11/20/19 22:27,"533 Wilson St, New York City, NY 10001" +284852,USB-C Charging Cable,1,11.95,11/20/19 22:27,"533 Wilson St, New York City, NY 10001" +284852,Bose SoundSport Headphones,1,99.99,11/20/19 22:27,"533 Wilson St, New York City, NY 10001" +284852,Wired Headphones,1,11.99,11/20/19 22:27,"533 Wilson St, New York City, NY 10001" +284853,AA Batteries (4-pack),1,3.84,11/01/19 16:09,"789 Lakeview St, Dallas, TX 75001" +284854,AA Batteries (4-pack),1,3.84,11/11/19 15:58,"687 12th St, Dallas, TX 75001" +284855,Bose SoundSport Headphones,1,99.99,11/06/19 07:13,"141 4th St, Seattle, WA 98101" +284856,AA Batteries (4-pack),1,3.84,11/27/19 14:49,"30 7th St, New York City, NY 10001" +284857,AA Batteries (4-pack),1,3.84,11/14/19 04:51,"138 Hill St, San Francisco, CA 94016" +284858,Apple Airpods Headphones,1,150,11/06/19 12:00,"267 Jefferson St, San Francisco, CA 94016" +284859,Lightning Charging Cable,1,14.95,11/14/19 18:23,"402 Center St, Los Angeles, CA 90001" +284860,Bose SoundSport Headphones,1,99.99,11/09/19 12:06,"528 1st St, Boston, MA 02215" +284861,Macbook Pro Laptop,1,1700,11/01/19 17:12,"933 Church St, San Francisco, CA 94016" +284862,Apple Airpods Headphones,1,150,11/03/19 19:43,"346 Hill St, Los Angeles, CA 90001" +284863,AA Batteries (4-pack),1,3.84,11/12/19 15:22,"77 Ridge St, New York City, NY 10001" +284864,Bose SoundSport Headphones,1,99.99,11/24/19 17:40,"847 8th St, Seattle, WA 98101" +284865,Apple Airpods Headphones,1,150,11/30/19 08:27,"69 Adams St, Seattle, WA 98101" +284866,ThinkPad Laptop,1,999.99,11/21/19 09:18,"898 Main St, Los Angeles, CA 90001" +284867,Bose SoundSport Headphones,1,99.99,11/19/19 14:55,"769 Washington St, Portland, OR 97035" +284868,Google Phone,1,600,11/11/19 15:14,"642 Wilson St, Seattle, WA 98101" +284869,AA Batteries (4-pack),2,3.84,11/04/19 13:45,"887 6th St, Seattle, WA 98101" +284870,USB-C Charging Cable,1,11.95,11/09/19 19:09,"644 Johnson St, San Francisco, CA 94016" +284871,Lightning Charging Cable,1,14.95,11/23/19 19:38,"525 Hickory St, New York City, NY 10001" +284872,Macbook Pro Laptop,1,1700,11/01/19 13:44,"42 Washington St, Dallas, TX 75001" +284873,AAA Batteries (4-pack),1,2.99,11/18/19 22:18,"357 Cherry St, Dallas, TX 75001" +284874,Wired Headphones,1,11.99,11/09/19 00:02,"907 Spruce St, New York City, NY 10001" +284875,27in 4K Gaming Monitor,1,389.99,12/01/19 01:55,"869 9th St, San Francisco, CA 94016" +284876,iPhone,1,700,11/12/19 22:15,"557 Elm St, San Francisco, CA 94016" +284877,Google Phone,1,600,11/15/19 19:44,"947 Pine St, Dallas, TX 75001" +284878,34in Ultrawide Monitor,1,379.99,11/18/19 21:15,"448 7th St, Los Angeles, CA 90001" +284879,Flatscreen TV,1,300,11/13/19 18:07,"111 1st St, Boston, MA 02215" +284880,Lightning Charging Cable,1,14.95,11/15/19 20:05,"716 2nd St, Los Angeles, CA 90001" +284881,Wired Headphones,1,11.99,11/12/19 17:14,"184 Willow St, Portland, OR 97035" +284882,USB-C Charging Cable,1,11.95,11/13/19 16:57,"642 1st St, Atlanta, GA 30301" +284883,USB-C Charging Cable,1,11.95,11/01/19 19:11,"369 Washington St, New York City, NY 10001" +284884,AA Batteries (4-pack),5,3.84,11/13/19 16:04,"359 Highland St, Los Angeles, CA 90001" +284885,Macbook Pro Laptop,1,1700,11/01/19 13:08,"870 South St, San Francisco, CA 94016" +284886,Lightning Charging Cable,1,14.95,11/30/19 19:51,"874 8th St, Atlanta, GA 30301" +284887,iPhone,1,700,11/20/19 19:24,"821 North St, Los Angeles, CA 90001" +284888,iPhone,1,700,11/23/19 16:57,"179 Church St, New York City, NY 10001" +284889,Wired Headphones,1,11.99,11/09/19 18:33,"989 Chestnut St, San Francisco, CA 94016" +284890,Wired Headphones,1,11.99,11/30/19 07:28,"293 North St, Boston, MA 02215" +284891,Flatscreen TV,1,300,11/30/19 04:44,"336 Pine St, San Francisco, CA 94016" +284892,27in FHD Monitor,1,149.99,11/16/19 22:48,"996 Hickory St, Atlanta, GA 30301" +284893,Bose SoundSport Headphones,1,99.99,11/26/19 18:41,"533 Center St, San Francisco, CA 94016" +284894,USB-C Charging Cable,1,11.95,11/01/19 15:42,"521 Forest St, Atlanta, GA 30301" +284895,USB-C Charging Cable,1,11.95,11/26/19 12:13,"965 8th St, Seattle, WA 98101" +284896,USB-C Charging Cable,1,11.95,11/24/19 21:05,"461 1st St, Boston, MA 02215" +284897,Wired Headphones,1,11.99,11/03/19 03:37,"141 Highland St, Dallas, TX 75001" +284898,Vareebadd Phone,1,400,11/23/19 06:38,"133 Maple St, Los Angeles, CA 90001" +284898,Bose SoundSport Headphones,1,99.99,11/23/19 06:38,"133 Maple St, Los Angeles, CA 90001" +284899,AA Batteries (4-pack),1,3.84,11/01/19 19:49,"771 Cedar St, New York City, NY 10001" +284900,Apple Airpods Headphones,1,150,11/27/19 20:34,"841 6th St, San Francisco, CA 94016" +284901,Wired Headphones,2,11.99,11/02/19 18:32,"554 Church St, Atlanta, GA 30301" +284902,AAA Batteries (4-pack),1,2.99,11/08/19 14:26,"644 Washington St, San Francisco, CA 94016" +284903,Vareebadd Phone,1,400,11/18/19 19:21,"428 10th St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +284904,Google Phone,1,600,11/30/19 08:48,"124 13th St, Los Angeles, CA 90001" +284904,USB-C Charging Cable,2,11.95,11/30/19 08:48,"124 13th St, Los Angeles, CA 90001" +284904,Wired Headphones,2,11.99,11/30/19 08:48,"124 13th St, Los Angeles, CA 90001" +284905,AAA Batteries (4-pack),3,2.99,11/06/19 12:48,"614 Meadow St, Seattle, WA 98101" +284906,27in FHD Monitor,1,149.99,11/01/19 15:11,"161 Meadow St, Los Angeles, CA 90001" +284907,Apple Airpods Headphones,1,150,11/08/19 14:03,"845 Pine St, Dallas, TX 75001" +284908,Wired Headphones,1,11.99,11/11/19 18:27,"665 Main St, Seattle, WA 98101" +284909,Apple Airpods Headphones,1,150,11/07/19 11:13,"203 Elm St, Los Angeles, CA 90001" +284910,Wired Headphones,1,11.99,11/30/19 12:50,"357 Wilson St, Austin, TX 73301" +284911,USB-C Charging Cable,1,11.95,11/01/19 19:48,"851 Sunset St, New York City, NY 10001" +284912,AA Batteries (4-pack),2,3.84,11/06/19 12:16,"280 Highland St, San Francisco, CA 94016" +284913,AA Batteries (4-pack),1,3.84,11/17/19 20:46,"438 Park St, New York City, NY 10001" +284914,Apple Airpods Headphones,1,150,11/17/19 16:01,"753 Hill St, San Francisco, CA 94016" +284915,Wired Headphones,1,11.99,11/02/19 22:03,"853 12th St, Boston, MA 02215" +284916,27in 4K Gaming Monitor,1,389.99,11/05/19 09:06,"150 Pine St, Seattle, WA 98101" +284917,Lightning Charging Cable,1,14.95,11/12/19 13:14,"630 Jackson St, San Francisco, CA 94016" +284918,20in Monitor,1,109.99,11/24/19 10:45,"588 10th St, Boston, MA 02215" +284919,USB-C Charging Cable,1,11.95,11/06/19 08:58,"379 Johnson St, Dallas, TX 75001" +284920,AAA Batteries (4-pack),1,2.99,11/08/19 13:58,"151 Church St, San Francisco, CA 94016" +284921,AA Batteries (4-pack),1,3.84,11/11/19 17:00,"127 Cedar St, New York City, NY 10001" +284922,AA Batteries (4-pack),1,3.84,11/24/19 22:10,"567 Meadow St, Los Angeles, CA 90001" +284923,AAA Batteries (4-pack),3,2.99,11/13/19 12:31,"373 Pine St, San Francisco, CA 94016" +284924,34in Ultrawide Monitor,1,379.99,11/17/19 13:44,"726 River St, Los Angeles, CA 90001" +284925,Wired Headphones,1,11.99,11/08/19 11:49,"24 12th St, San Francisco, CA 94016" +284926,AA Batteries (4-pack),1,3.84,11/09/19 16:06,"100 Jackson St, Atlanta, GA 30301" +284927,Bose SoundSport Headphones,1,99.99,11/19/19 10:34,"441 8th St, Los Angeles, CA 90001" +284928,AA Batteries (4-pack),1,3.84,11/25/19 20:05,"383 2nd St, Seattle, WA 98101" +284929,ThinkPad Laptop,1,999.99,11/17/19 17:51,"76 Lincoln St, Dallas, TX 75001" +284930,Vareebadd Phone,1,400,11/30/19 18:10,"986 13th St, New York City, NY 10001" +284930,USB-C Charging Cable,1,11.95,11/30/19 18:10,"986 13th St, New York City, NY 10001" +284931,Google Phone,1,600,11/15/19 19:21,"303 River St, Austin, TX 73301" +284932,USB-C Charging Cable,1,11.95,11/01/19 20:50,"53 Elm St, Dallas, TX 75001" +284933,Wired Headphones,1,11.99,11/09/19 16:35,"57 North St, New York City, NY 10001" +284934,Wired Headphones,1,11.99,11/06/19 18:40,"147 Jackson St, New York City, NY 10001" +284935,Wired Headphones,1,11.99,11/13/19 12:29,"820 River St, Boston, MA 02215" +284936,AA Batteries (4-pack),1,3.84,11/25/19 18:09,"351 Hill St, New York City, NY 10001" +284937,27in 4K Gaming Monitor,1,389.99,11/02/19 20:33,"811 South St, San Francisco, CA 94016" +284938,27in 4K Gaming Monitor,1,389.99,11/04/19 15:03,"534 Walnut St, Los Angeles, CA 90001" +284939,AA Batteries (4-pack),1,3.84,11/04/19 13:09,"938 4th St, Austin, TX 73301" +284940,Lightning Charging Cable,2,14.95,11/29/19 08:07,"553 8th St, New York City, NY 10001" +284941,27in FHD Monitor,1,149.99,11/19/19 13:59,"93 Elm St, San Francisco, CA 94016" +284942,34in Ultrawide Monitor,1,379.99,11/28/19 03:07,"614 Main St, San Francisco, CA 94016" +284943,iPhone,1,700,11/08/19 20:08,"54 Hickory St, Los Angeles, CA 90001" +284944,iPhone,1,700,11/15/19 20:43,"333 5th St, Los Angeles, CA 90001" +284944,Apple Airpods Headphones,1,150,11/15/19 20:43,"333 5th St, Los Angeles, CA 90001" +284945,Wired Headphones,2,11.99,11/29/19 12:56,"960 Pine St, Austin, TX 73301" +284946,AA Batteries (4-pack),1,3.84,11/28/19 23:48,"89 North St, New York City, NY 10001" +284947,27in FHD Monitor,1,149.99,11/15/19 13:18,"331 Wilson St, San Francisco, CA 94016" +284948,Lightning Charging Cable,1,14.95,11/27/19 13:40,"453 Elm St, Dallas, TX 75001" +284949,USB-C Charging Cable,1,11.95,11/12/19 13:39,"142 Elm St, Los Angeles, CA 90001" +284950,27in 4K Gaming Monitor,1,389.99,11/08/19 13:42,"454 Madison St, Austin, TX 73301" +284951,Flatscreen TV,1,300,11/01/19 22:45,"410 Meadow St, San Francisco, CA 94016" +284952,20in Monitor,1,109.99,11/01/19 08:43,"29 Ridge St, New York City, NY 10001" +284953,USB-C Charging Cable,1,11.95,11/27/19 20:29,"587 Adams St, Portland, OR 97035" +284954,iPhone,1,700,11/28/19 21:13,"452 10th St, Atlanta, GA 30301" +284955,Apple Airpods Headphones,1,150,11/21/19 16:54,"619 Walnut St, San Francisco, CA 94016" +284956,Bose SoundSport Headphones,1,99.99,11/07/19 19:56,"405 North St, San Francisco, CA 94016" +284957,USB-C Charging Cable,1,11.95,11/29/19 15:24,"189 Hill St, Boston, MA 02215" +284958,Flatscreen TV,1,300,11/27/19 12:05,"551 Lincoln St, Los Angeles, CA 90001" +284959,34in Ultrawide Monitor,1,379.99,11/22/19 18:42,"188 6th St, New York City, NY 10001" +284960,ThinkPad Laptop,1,999.99,11/06/19 09:54,"624 Jefferson St, San Francisco, CA 94016" +284961,Bose SoundSport Headphones,1,99.99,11/24/19 20:42,"782 Park St, Los Angeles, CA 90001" +284962,Bose SoundSport Headphones,1,99.99,11/17/19 19:28,"132 14th St, Atlanta, GA 30301" +284963,ThinkPad Laptop,1,999.99,11/26/19 14:45,"875 Jackson St, San Francisco, CA 94016" +284964,Lightning Charging Cable,1,14.95,11/18/19 18:03,"631 11th St, San Francisco, CA 94016" +284965,AAA Batteries (4-pack),1,2.99,11/12/19 11:03,"835 1st St, Los Angeles, CA 90001" +284966,USB-C Charging Cable,1,11.95,11/10/19 21:08,"735 1st St, Boston, MA 02215" +284967,27in FHD Monitor,1,149.99,11/18/19 19:01,"784 South St, Portland, OR 97035" +284968,AA Batteries (4-pack),2,3.84,11/20/19 22:35,"653 Wilson St, San Francisco, CA 94016" +284969,Apple Airpods Headphones,1,150,11/13/19 16:50,"869 Chestnut St, Los Angeles, CA 90001" +284970,34in Ultrawide Monitor,1,379.99,11/20/19 09:45,"713 Wilson St, San Francisco, CA 94016" +284971,AAA Batteries (4-pack),1,2.99,11/08/19 18:43,"195 Sunset St, Boston, MA 02215" +284972,AA Batteries (4-pack),1,3.84,11/24/19 17:04,"19 Cedar St, Los Angeles, CA 90001" +284973,Macbook Pro Laptop,1,1700,11/04/19 00:12,"584 Adams St, San Francisco, CA 94016" +284974,Flatscreen TV,1,300,11/08/19 16:14,"790 Cherry St, Los Angeles, CA 90001" +284975,iPhone,1,700,11/20/19 23:08,"744 1st St, Seattle, WA 98101" +284976,Lightning Charging Cable,1,14.95,11/21/19 10:57,"129 Maple St, Los Angeles, CA 90001" +284977,Lightning Charging Cable,1,14.95,11/03/19 22:28,"916 Hickory St, Atlanta, GA 30301" +284977,Wired Headphones,1,11.99,11/03/19 22:28,"916 Hickory St, Atlanta, GA 30301" +284978,Apple Airpods Headphones,1,150,11/06/19 00:45,"715 River St, Dallas, TX 75001" +284979,Bose SoundSport Headphones,1,99.99,11/18/19 13:36,"809 Lincoln St, Los Angeles, CA 90001" +284980,ThinkPad Laptop,1,999.99,11/24/19 10:28,"96 11th St, Boston, MA 02215" +284981,iPhone,1,700,11/19/19 08:55,"642 Ridge St, San Francisco, CA 94016" +284982,AAA Batteries (4-pack),1,2.99,11/09/19 19:37,"565 Lincoln St, San Francisco, CA 94016" +284983,USB-C Charging Cable,1,11.95,11/25/19 17:17,"395 8th St, Atlanta, GA 30301" +284984,USB-C Charging Cable,1,11.95,11/15/19 21:30,"338 Main St, New York City, NY 10001" +284985,iPhone,1,700,11/13/19 11:39,"620 9th St, New York City, NY 10001" +284986,Lightning Charging Cable,1,14.95,11/16/19 23:48,"474 Maple St, Los Angeles, CA 90001" +284987,USB-C Charging Cable,1,11.95,11/08/19 20:06,"543 Jackson St, Seattle, WA 98101" +284988,ThinkPad Laptop,1,999.99,11/11/19 10:32,"891 West St, San Francisco, CA 94016" +284989,iPhone,1,700,11/03/19 10:43,"407 Jackson St, Boston, MA 02215" +284990,27in 4K Gaming Monitor,1,389.99,11/18/19 17:35,"924 Pine St, Los Angeles, CA 90001" +284991,Bose SoundSport Headphones,1,99.99,11/12/19 15:35,"312 Pine St, Los Angeles, CA 90001" +284992,Google Phone,1,600,11/23/19 16:08,"939 Sunset St, New York City, NY 10001" +284992,USB-C Charging Cable,1,11.95,11/23/19 16:08,"939 Sunset St, New York City, NY 10001" +284993,34in Ultrawide Monitor,1,379.99,11/17/19 20:28,"501 Cedar St, Los Angeles, CA 90001" +284994,27in 4K Gaming Monitor,1,389.99,11/15/19 16:01,"20 Dogwood St, New York City, NY 10001" +284995,20in Monitor,1,109.99,11/30/19 13:01,"660 10th St, Los Angeles, CA 90001" +284996,AA Batteries (4-pack),1,3.84,11/07/19 08:34,"900 Dogwood St, San Francisco, CA 94016" +284997,AAA Batteries (4-pack),1,2.99,11/22/19 18:26,"44 Hill St, Boston, MA 02215" +284998,iPhone,1,700,11/08/19 16:38,"744 Dogwood St, Atlanta, GA 30301" +284999,AAA Batteries (4-pack),1,2.99,11/29/19 16:34,"185 Maple St, Los Angeles, CA 90001" +285000,Wired Headphones,1,11.99,11/28/19 17:02,"439 South St, New York City, NY 10001" +285001,AA Batteries (4-pack),1,3.84,11/18/19 22:39,"29 Main St, Los Angeles, CA 90001" +285002,27in 4K Gaming Monitor,1,389.99,11/11/19 19:24,"381 1st St, Los Angeles, CA 90001" +285003,USB-C Charging Cable,1,11.95,11/16/19 17:27,"975 North St, Dallas, TX 75001" +285004,Lightning Charging Cable,1,14.95,11/14/19 23:46,"345 7th St, San Francisco, CA 94016" +285005,AAA Batteries (4-pack),2,2.99,11/02/19 22:13,"569 Jackson St, San Francisco, CA 94016" +285006,Wired Headphones,1,11.99,11/07/19 19:43,"301 Park St, New York City, NY 10001" +285007,Wired Headphones,1,11.99,11/20/19 16:44,"815 River St, New York City, NY 10001" +285008,20in Monitor,1,109.99,11/26/19 19:44,"408 Elm St, New York City, NY 10001" +285009,27in FHD Monitor,1,149.99,11/17/19 15:24,"608 Park St, San Francisco, CA 94016" +285010,Flatscreen TV,1,300,11/29/19 23:21,"430 1st St, Dallas, TX 75001" +285011,AAA Batteries (4-pack),2,2.99,11/05/19 08:07,"614 9th St, Seattle, WA 98101" +285012,34in Ultrawide Monitor,1,379.99,11/23/19 16:27,"603 10th St, Los Angeles, CA 90001" +285013,USB-C Charging Cable,1,11.95,11/12/19 12:52,"949 Washington St, Austin, TX 73301" +285014,AA Batteries (4-pack),2,3.84,11/22/19 20:27,"280 Hill St, New York City, NY 10001" +285015,Apple Airpods Headphones,1,150,11/07/19 12:55,"234 West St, New York City, NY 10001" +285016,AAA Batteries (4-pack),1,2.99,11/17/19 17:42,"736 Johnson St, Los Angeles, CA 90001" +285017,AAA Batteries (4-pack),1,2.99,11/26/19 22:31,"211 Willow St, New York City, NY 10001" +285018,USB-C Charging Cable,1,11.95,11/03/19 18:18,"698 9th St, Los Angeles, CA 90001" +285019,Wired Headphones,1,11.99,11/26/19 17:34,"723 West St, Los Angeles, CA 90001" +285020,ThinkPad Laptop,1,999.99,11/11/19 10:01,"397 South St, Los Angeles, CA 90001" +285021,ThinkPad Laptop,1,999.99,11/18/19 09:55,"513 Washington St, Atlanta, GA 30301" +285022,USB-C Charging Cable,1,11.95,11/09/19 10:03,"772 5th St, San Francisco, CA 94016" +285023,Lightning Charging Cable,2,14.95,11/20/19 15:54,"330 8th St, Los Angeles, CA 90001" +285024,Lightning Charging Cable,1,14.95,11/24/19 13:53,"827 Spruce St, Boston, MA 02215" +285025,Bose SoundSport Headphones,1,99.99,11/06/19 08:03,"957 Spruce St, Los Angeles, CA 90001" +285026,Flatscreen TV,1,300,11/16/19 07:38,"643 14th St, Portland, OR 97035" +285027,USB-C Charging Cable,1,11.95,11/30/19 16:16,"746 Lincoln St, San Francisco, CA 94016" +285028,Apple Airpods Headphones,1,150,11/26/19 06:19,"410 2nd St, New York City, NY 10001" +285029,Lightning Charging Cable,1,14.95,11/19/19 00:11,"279 Madison St, San Francisco, CA 94016" +285030,Lightning Charging Cable,1,14.95,11/22/19 19:39,"45 Elm St, Los Angeles, CA 90001" +285031,Lightning Charging Cable,1,14.95,11/30/19 11:17,"332 10th St, Boston, MA 02215" +285032,20in Monitor,1,109.99,11/30/19 17:17,"342 Walnut St, Los Angeles, CA 90001" +285033,AAA Batteries (4-pack),1,2.99,11/29/19 17:01,"531 6th St, San Francisco, CA 94016" +285034,Wired Headphones,1,11.99,11/27/19 23:38,"126 Walnut St, Boston, MA 02215" +285035,AA Batteries (4-pack),1,3.84,11/13/19 01:26,"594 11th St, Boston, MA 02215" +285036,Wired Headphones,1,11.99,11/30/19 12:04,"351 Ridge St, Austin, TX 73301" +285037,20in Monitor,1,109.99,11/04/19 11:42,"614 Lincoln St, Seattle, WA 98101" +285038,Lightning Charging Cable,1,14.95,11/06/19 20:08,"322 Church St, San Francisco, CA 94016" +285039,Wired Headphones,1,11.99,11/17/19 19:40,"162 Elm St, Los Angeles, CA 90001" +285040,Google Phone,1,600,11/23/19 15:39,"134 Hill St, Seattle, WA 98101" +285040,USB-C Charging Cable,1,11.95,11/23/19 15:39,"134 Hill St, Seattle, WA 98101" +285041,20in Monitor,1,109.99,11/24/19 15:43,"673 12th St, San Francisco, CA 94016" +285042,27in FHD Monitor,2,149.99,11/08/19 15:50,"942 2nd St, Los Angeles, CA 90001" +285043,AAA Batteries (4-pack),1,2.99,11/04/19 21:13,"421 Cherry St, New York City, NY 10001" +285044,USB-C Charging Cable,1,11.95,11/30/19 12:07,"609 South St, San Francisco, CA 94016" +285045,USB-C Charging Cable,1,11.95,11/25/19 10:06,"282 13th St, Los Angeles, CA 90001" +285046,Lightning Charging Cable,1,14.95,11/13/19 22:17,"674 West St, Austin, TX 73301" +285047,AAA Batteries (4-pack),1,2.99,11/09/19 17:17,"638 Maple St, New York City, NY 10001" +285047,AAA Batteries (4-pack),1,2.99,11/09/19 17:17,"638 Maple St, New York City, NY 10001" +285048,Lightning Charging Cable,1,14.95,11/03/19 20:38,"165 10th St, Atlanta, GA 30301" +285049,34in Ultrawide Monitor,1,379.99,11/12/19 14:20,"940 8th St, Portland, OR 97035" +285050,AA Batteries (4-pack),2,3.84,11/26/19 13:41,"613 12th St, Atlanta, GA 30301" +285051,USB-C Charging Cable,1,11.95,11/19/19 12:43,"479 5th St, San Francisco, CA 94016" +285052,AA Batteries (4-pack),2,3.84,11/06/19 22:41,"118 Cedar St, Los Angeles, CA 90001" +285053,27in FHD Monitor,1,149.99,11/08/19 07:46,"93 Center St, San Francisco, CA 94016" +285054,Flatscreen TV,1,300,11/12/19 16:22,"157 6th St, San Francisco, CA 94016" +285055,Bose SoundSport Headphones,1,99.99,11/08/19 18:12,"964 Ridge St, Austin, TX 73301" +285056,Macbook Pro Laptop,1,1700,11/02/19 18:20,"906 Wilson St, Los Angeles, CA 90001" +285057,AA Batteries (4-pack),3,3.84,11/05/19 16:37,"230 West St, New York City, NY 10001" +285058,AA Batteries (4-pack),1,3.84,11/03/19 05:38,"765 Ridge St, Boston, MA 02215" +285059,Lightning Charging Cable,1,14.95,11/28/19 14:23,"498 Lake St, San Francisco, CA 94016" +285060,20in Monitor,1,109.99,11/02/19 12:37,"773 Lakeview St, Boston, MA 02215" +285061,USB-C Charging Cable,1,11.95,11/11/19 06:17,"268 12th St, Portland, ME 04101" +285062,Wired Headphones,1,11.99,11/02/19 09:42,"184 1st St, Los Angeles, CA 90001" +285063,AAA Batteries (4-pack),1,2.99,11/19/19 13:44,"347 7th St, Austin, TX 73301" +285064,20in Monitor,2,109.99,11/08/19 19:30,"574 Wilson St, Seattle, WA 98101" +285064,AA Batteries (4-pack),1,3.84,11/08/19 19:30,"574 Wilson St, Seattle, WA 98101" +285065,Apple Airpods Headphones,1,150,11/16/19 11:32,"331 Ridge St, Los Angeles, CA 90001" +285066,Macbook Pro Laptop,1,1700,11/21/19 21:36,"261 Center St, Seattle, WA 98101" +285067,Wired Headphones,1,11.99,11/08/19 09:44,"125 Elm St, Atlanta, GA 30301" +285068,Flatscreen TV,1,300,11/28/19 20:32,"421 Dogwood St, Boston, MA 02215" +285069,Wired Headphones,1,11.99,11/28/19 18:35,"959 4th St, Portland, ME 04101" +285070,Wired Headphones,1,11.99,11/01/19 11:15,"800 Lake St, Boston, MA 02215" +285071,AAA Batteries (4-pack),1,2.99,11/16/19 23:30,"369 2nd St, Atlanta, GA 30301" +285072,USB-C Charging Cable,1,11.95,11/19/19 09:14,"910 Hill St, Los Angeles, CA 90001" +285073,34in Ultrawide Monitor,1,379.99,11/28/19 08:45,"536 Cherry St, Boston, MA 02215" +285074,Wired Headphones,1,11.99,11/28/19 23:08,"530 Ridge St, San Francisco, CA 94016" +285075,Wired Headphones,1,11.99,11/08/19 19:01,"887 Washington St, Atlanta, GA 30301" +285076,34in Ultrawide Monitor,1,379.99,11/02/19 14:24,"122 North St, San Francisco, CA 94016" +285077,AAA Batteries (4-pack),3,2.99,11/01/19 12:08,"38 Highland St, San Francisco, CA 94016" +285078,Wired Headphones,1,11.99,11/01/19 19:33,"689 Adams St, San Francisco, CA 94016" +285079,Bose SoundSport Headphones,1,99.99,11/15/19 19:50,"882 Hill St, Austin, TX 73301" +285080,USB-C Charging Cable,1,11.95,11/23/19 18:36,"197 Wilson St, New York City, NY 10001" +285081,20in Monitor,1,109.99,11/13/19 15:38,"204 Johnson St, New York City, NY 10001" +285082,Flatscreen TV,1,300,11/13/19 20:12,"708 Wilson St, Los Angeles, CA 90001" +285083,USB-C Charging Cable,1,11.95,11/23/19 23:15,"891 Jefferson St, Portland, ME 04101" +285084,AAA Batteries (4-pack),1,2.99,11/05/19 16:52,"487 Lake St, Seattle, WA 98101" +285085,Bose SoundSport Headphones,1,99.99,11/25/19 17:23,"339 Lincoln St, Atlanta, GA 30301" +285086,Wired Headphones,1,11.99,11/01/19 21:13,"207 Jefferson St, Portland, OR 97035" +285087,27in FHD Monitor,1,149.99,11/07/19 06:41,"282 Elm St, Dallas, TX 75001" +285088,Bose SoundSport Headphones,1,99.99,11/08/19 17:49,"887 Madison St, Seattle, WA 98101" +285089,Apple Airpods Headphones,1,150,11/04/19 09:33,"900 North St, New York City, NY 10001" +285090,Wired Headphones,1,11.99,11/06/19 22:10,"283 Pine St, New York City, NY 10001" +285091,Apple Airpods Headphones,1,150,11/12/19 20:34,"402 Adams St, Portland, ME 04101" +285092,Bose SoundSport Headphones,1,99.99,11/05/19 13:13,"311 Pine St, Portland, OR 97035" +285093,iPhone,1,700,11/16/19 13:20,"214 Chestnut St, Boston, MA 02215" +285094,27in 4K Gaming Monitor,1,389.99,11/06/19 19:52,"197 11th St, San Francisco, CA 94016" +285095,Wired Headphones,1,11.99,11/13/19 23:45,"77 Cedar St, Seattle, WA 98101" +285096,27in FHD Monitor,1,149.99,11/08/19 11:16,"729 Lincoln St, Atlanta, GA 30301" +285097,27in FHD Monitor,1,149.99,11/11/19 09:25,"356 River St, San Francisco, CA 94016" +285098,iPhone,1,700,11/01/19 10:54,"725 River St, San Francisco, CA 94016" +285099,USB-C Charging Cable,1,11.95,11/05/19 21:52,"48 Pine St, Seattle, WA 98101" +285100,27in FHD Monitor,1,149.99,11/06/19 10:15,"848 Dogwood St, Boston, MA 02215" +285101,AAA Batteries (4-pack),2,2.99,11/30/19 18:03,"535 Highland St, Boston, MA 02215" +285102,USB-C Charging Cable,1,11.95,11/15/19 11:07,"684 Pine St, Portland, OR 97035" +285103,USB-C Charging Cable,1,11.95,11/23/19 12:01,"28 Hill St, New York City, NY 10001" +285104,Bose SoundSport Headphones,1,99.99,11/10/19 11:41,"891 Lincoln St, Boston, MA 02215" +285105,Bose SoundSport Headphones,1,99.99,11/09/19 11:42,"815 Meadow St, Atlanta, GA 30301" +285106,34in Ultrawide Monitor,1,379.99,11/21/19 16:59,"635 1st St, New York City, NY 10001" +285107,27in 4K Gaming Monitor,1,389.99,11/02/19 13:53,"505 South St, Dallas, TX 75001" +285108,Lightning Charging Cable,1,14.95,11/18/19 09:37,"626 Jefferson St, New York City, NY 10001" +285109,AAA Batteries (4-pack),1,2.99,11/04/19 11:08,"199 2nd St, Boston, MA 02215" +285110,27in FHD Monitor,1,149.99,11/11/19 12:09,"247 5th St, Boston, MA 02215" +285111,34in Ultrawide Monitor,1,379.99,11/20/19 08:58,"72 Jefferson St, New York City, NY 10001" +285112,27in FHD Monitor,1,149.99,11/27/19 11:46,"472 Walnut St, Los Angeles, CA 90001" +285113,Wired Headphones,1,11.99,11/10/19 21:30,"777 Hill St, Boston, MA 02215" +285114,Lightning Charging Cable,1,14.95,11/17/19 16:35,"15 7th St, Dallas, TX 75001" +285115,Lightning Charging Cable,1,14.95,11/13/19 18:39,"231 Church St, Dallas, TX 75001" +285116,Lightning Charging Cable,1,14.95,11/07/19 13:44,"808 7th St, Dallas, TX 75001" +285117,AAA Batteries (4-pack),2,2.99,11/07/19 15:01,"572 River St, Austin, TX 73301" +285118,AAA Batteries (4-pack),1,2.99,11/09/19 11:24,"188 12th St, Atlanta, GA 30301" +285119,USB-C Charging Cable,1,11.95,11/28/19 21:33,"72 Park St, New York City, NY 10001" +285120,Lightning Charging Cable,2,14.95,11/04/19 15:52,"511 11th St, Boston, MA 02215" +285121,Wired Headphones,1,11.99,11/14/19 17:04,"710 10th St, Dallas, TX 75001" +285122,Lightning Charging Cable,1,14.95,11/14/19 23:14,"61 12th St, San Francisco, CA 94016" +285123,27in 4K Gaming Monitor,1,389.99,11/06/19 20:02,"987 Jackson St, San Francisco, CA 94016" +285124,Bose SoundSport Headphones,1,99.99,11/30/19 23:03,"917 Forest St, Atlanta, GA 30301" +285125,34in Ultrawide Monitor,1,379.99,11/08/19 20:19,"858 Walnut St, New York City, NY 10001" +285126,USB-C Charging Cable,1,11.95,11/14/19 14:00,"253 7th St, San Francisco, CA 94016" +285127,USB-C Charging Cable,2,11.95,11/03/19 05:16,"930 Hill St, Austin, TX 73301" +285128,Wired Headphones,1,11.99,11/20/19 11:28,"914 Willow St, San Francisco, CA 94016" +285129,AA Batteries (4-pack),1,3.84,11/27/19 04:53,"426 Madison St, Los Angeles, CA 90001" +285130,LG Dryer,1,600.0,11/04/19 23:14,"723 Ridge St, Los Angeles, CA 90001" +285131,Bose SoundSport Headphones,1,99.99,11/01/19 20:03,"977 Washington St, San Francisco, CA 94016" +285132,AA Batteries (4-pack),1,3.84,11/08/19 18:20,"979 10th St, Los Angeles, CA 90001" +285133,Lightning Charging Cable,1,14.95,11/20/19 19:48,"976 Lakeview St, New York City, NY 10001" +285134,27in FHD Monitor,2,149.99,11/17/19 12:24,"964 Forest St, Seattle, WA 98101" +285135,USB-C Charging Cable,1,11.95,11/21/19 17:16,"928 Chestnut St, Austin, TX 73301" +285136,Wired Headphones,1,11.99,11/29/19 09:17,"443 6th St, Boston, MA 02215" +285137,Google Phone,1,600,11/08/19 10:31,"772 North St, Los Angeles, CA 90001" +285138,USB-C Charging Cable,1,11.95,11/17/19 10:12,"899 Walnut St, Los Angeles, CA 90001" +285139,34in Ultrawide Monitor,1,379.99,11/07/19 12:34,"471 Jefferson St, New York City, NY 10001" +285140,AAA Batteries (4-pack),3,2.99,11/26/19 15:44,"40 Walnut St, New York City, NY 10001" +285141,Bose SoundSport Headphones,1,99.99,11/12/19 08:36,"136 13th St, Los Angeles, CA 90001" +285142,USB-C Charging Cable,1,11.95,11/06/19 10:38,"395 South St, New York City, NY 10001" +285143,USB-C Charging Cable,1,11.95,11/24/19 16:40,"953 Madison St, San Francisco, CA 94016" +285144,Apple Airpods Headphones,1,150,11/01/19 11:59,"629 12th St, San Francisco, CA 94016" +285145,27in FHD Monitor,1,149.99,11/10/19 23:04,"175 14th St, San Francisco, CA 94016" +285146,Wired Headphones,1,11.99,11/20/19 18:18,"582 2nd St, Austin, TX 73301" +285147,ThinkPad Laptop,1,999.99,11/18/19 22:24,"65 7th St, Boston, MA 02215" +285148,Lightning Charging Cable,1,14.95,11/28/19 10:35,"242 Dogwood St, New York City, NY 10001" +285149,Wired Headphones,1,11.99,11/10/19 09:34,"206 6th St, Los Angeles, CA 90001" +285150,27in 4K Gaming Monitor,1,389.99,11/01/19 10:56,"513 Elm St, Los Angeles, CA 90001" +285151,Macbook Pro Laptop,1,1700,11/15/19 13:24,"491 Washington St, Dallas, TX 75001" +285152,iPhone,1,700,11/08/19 20:47,"815 Spruce St, Los Angeles, CA 90001" +285153,AA Batteries (4-pack),1,3.84,11/15/19 17:01,"483 West St, San Francisco, CA 94016" +285154,Lightning Charging Cable,1,14.95,11/07/19 18:57,"998 Madison St, Los Angeles, CA 90001" +285155,iPhone,1,700,11/17/19 18:00,"502 Forest St, New York City, NY 10001" +285156,Bose SoundSport Headphones,1,99.99,11/27/19 12:50,"974 North St, San Francisco, CA 94016" +285157,Bose SoundSport Headphones,1,99.99,11/26/19 06:38,"73 River St, San Francisco, CA 94016" +285158,AA Batteries (4-pack),1,3.84,11/05/19 15:29,"964 Forest St, Dallas, TX 75001" +285159,Bose SoundSport Headphones,1,99.99,11/02/19 12:27,"603 4th St, Dallas, TX 75001" +285160,Apple Airpods Headphones,1,150,11/11/19 12:09,"812 Walnut St, New York City, NY 10001" +285161,Bose SoundSport Headphones,1,99.99,11/28/19 17:44,"625 Hill St, Boston, MA 02215" +285162,Lightning Charging Cable,2,14.95,11/26/19 10:28,"892 Wilson St, San Francisco, CA 94016" +285163,20in Monitor,1,109.99,11/29/19 16:26,"513 North St, Dallas, TX 75001" +285164,Apple Airpods Headphones,1,150,11/22/19 19:27,"945 Dogwood St, Seattle, WA 98101" +285165,AA Batteries (4-pack),2,3.84,11/16/19 15:47,"453 14th St, New York City, NY 10001" +285166,Apple Airpods Headphones,1,150,11/21/19 16:14,"34 Main St, Los Angeles, CA 90001" +285167,AAA Batteries (4-pack),2,2.99,11/18/19 12:52,"285 Adams St, San Francisco, CA 94016" +285168,34in Ultrawide Monitor,1,379.99,11/26/19 08:07,"441 Madison St, Los Angeles, CA 90001" +285169,iPhone,1,700,11/29/19 16:06,"553 Jefferson St, New York City, NY 10001" +285169,Apple Airpods Headphones,1,150,11/29/19 16:06,"553 Jefferson St, New York City, NY 10001" +285170,Lightning Charging Cable,1,14.95,11/05/19 08:55,"136 Hickory St, New York City, NY 10001" +285171,Wired Headphones,1,11.99,11/27/19 10:23,"173 Jefferson St, Boston, MA 02215" +285172,Macbook Pro Laptop,1,1700,11/05/19 12:55,"342 Lake St, Dallas, TX 75001" +285173,Lightning Charging Cable,1,14.95,11/08/19 15:37,"88 Cherry St, Atlanta, GA 30301" +285174,20in Monitor,1,109.99,11/04/19 12:29,"990 Cherry St, Seattle, WA 98101" +285175,34in Ultrawide Monitor,1,379.99,11/16/19 11:34,"927 Madison St, San Francisco, CA 94016" +285176,Wired Headphones,1,11.99,11/22/19 22:24,"138 9th St, Seattle, WA 98101" +285177,Macbook Pro Laptop,1,1700,11/22/19 16:47,"705 South St, Portland, OR 97035" +285178,Wired Headphones,1,11.99,11/11/19 18:08,"644 Hill St, Los Angeles, CA 90001" +285179,27in FHD Monitor,1,149.99,11/24/19 23:16,"362 North St, San Francisco, CA 94016" +285180,AAA Batteries (4-pack),1,2.99,11/22/19 19:22,"285 9th St, San Francisco, CA 94016" +285181,iPhone,1,700,11/13/19 11:18,"507 Cherry St, San Francisco, CA 94016" +285181,Lightning Charging Cable,3,14.95,11/13/19 11:18,"507 Cherry St, San Francisco, CA 94016" +285182,Apple Airpods Headphones,1,150,11/22/19 21:01,"527 Washington St, San Francisco, CA 94016" +285183,Wired Headphones,1,11.99,11/24/19 16:45,"292 Chestnut St, Seattle, WA 98101" +285184,Lightning Charging Cable,1,14.95,11/08/19 11:00,"241 Main St, Austin, TX 73301" +285185,AAA Batteries (4-pack),2,2.99,11/21/19 20:13,"903 Forest St, Seattle, WA 98101" +285186,USB-C Charging Cable,1,11.95,11/07/19 14:42,"311 Wilson St, San Francisco, CA 94016" +285187,Wired Headphones,1,11.99,11/11/19 08:29,"905 Chestnut St, San Francisco, CA 94016" +285188,Apple Airpods Headphones,1,150,11/08/19 18:25,"903 Hill St, Boston, MA 02215" +285189,Wired Headphones,1,11.99,11/02/19 09:39,"189 Lincoln St, San Francisco, CA 94016" +285190,Apple Airpods Headphones,1,150,11/12/19 14:01,"92 Forest St, New York City, NY 10001" +285191,Wired Headphones,1,11.99,11/21/19 06:25,"273 11th St, Portland, ME 04101" +285192,Bose SoundSport Headphones,1,99.99,11/15/19 11:03,"485 Washington St, San Francisco, CA 94016" +285193,Lightning Charging Cable,1,14.95,11/16/19 09:45,"992 Church St, Los Angeles, CA 90001" +285194,27in FHD Monitor,1,149.99,11/13/19 16:39,"738 1st St, New York City, NY 10001" +285195,AAA Batteries (4-pack),1,2.99,11/14/19 12:15,"378 South St, San Francisco, CA 94016" +285196,27in FHD Monitor,1,149.99,11/26/19 03:19,"286 Walnut St, New York City, NY 10001" +285197,AA Batteries (4-pack),1,3.84,11/21/19 00:21,"714 Forest St, New York City, NY 10001" +285198,AAA Batteries (4-pack),1,2.99,11/25/19 06:35,"677 Johnson St, New York City, NY 10001" +285199,Apple Airpods Headphones,1,150,11/23/19 18:17,"770 Hickory St, Los Angeles, CA 90001" +285200,Bose SoundSport Headphones,1,99.99,11/28/19 13:11,"414 5th St, Atlanta, GA 30301" +285201,27in FHD Monitor,1,149.99,11/09/19 12:01,"473 Pine St, Dallas, TX 75001" +285202,Apple Airpods Headphones,1,150,11/04/19 23:46,"110 Hill St, San Francisco, CA 94016" +285203,Lightning Charging Cable,1,14.95,11/23/19 15:04,"385 Church St, San Francisco, CA 94016" +285204,Lightning Charging Cable,1,14.95,11/12/19 15:47,"307 Walnut St, Dallas, TX 75001" +285205,AA Batteries (4-pack),1,3.84,11/26/19 18:38,"973 8th St, Los Angeles, CA 90001" +285206,USB-C Charging Cable,1,11.95,11/03/19 14:49,"564 9th St, Seattle, WA 98101" +285207,Bose SoundSport Headphones,1,99.99,11/23/19 16:54,"458 14th St, New York City, NY 10001" +285208,iPhone,1,700,11/22/19 12:37,"252 Willow St, Los Angeles, CA 90001" +285209,ThinkPad Laptop,1,999.99,11/24/19 18:04,"232 7th St, Dallas, TX 75001" +285210,Bose SoundSport Headphones,1,99.99,11/30/19 02:27,"455 Highland St, Los Angeles, CA 90001" +285211,Lightning Charging Cable,1,14.95,11/24/19 11:00,"782 Lincoln St, San Francisco, CA 94016" +285212,AAA Batteries (4-pack),4,2.99,11/07/19 00:30,"649 Main St, Portland, ME 04101" +285213,27in 4K Gaming Monitor,1,389.99,11/20/19 17:00,"74 South St, Seattle, WA 98101" +285214,ThinkPad Laptop,1,999.99,11/11/19 17:53,"140 Cherry St, Austin, TX 73301" +285215,AA Batteries (4-pack),1,3.84,11/05/19 15:20,"495 Washington St, Atlanta, GA 30301" +285216,Wired Headphones,1,11.99,11/09/19 19:54,"201 5th St, Dallas, TX 75001" +285217,USB-C Charging Cable,1,11.95,11/07/19 08:41,"329 Madison St, New York City, NY 10001" +285218,Lightning Charging Cable,1,14.95,11/05/19 21:47,"182 Hill St, New York City, NY 10001" +285219,Wired Headphones,1,11.99,11/23/19 21:40,"64 1st St, Los Angeles, CA 90001" +285220,USB-C Charging Cable,1,11.95,11/24/19 05:29,"572 Elm St, Boston, MA 02215" +285221,AA Batteries (4-pack),1,3.84,11/21/19 10:41,"690 Church St, New York City, NY 10001" +285222,Wired Headphones,1,11.99,11/02/19 20:59,"620 12th St, Portland, OR 97035" +285223,Lightning Charging Cable,1,14.95,11/06/19 00:31,"446 12th St, San Francisco, CA 94016" +285224,Bose SoundSport Headphones,1,99.99,11/06/19 15:37,"816 7th St, New York City, NY 10001" +285225,Flatscreen TV,1,300,11/09/19 15:30,"309 Spruce St, Los Angeles, CA 90001" +285226,Bose SoundSport Headphones,1,99.99,11/04/19 10:03,"829 4th St, Los Angeles, CA 90001" +285227,AA Batteries (4-pack),5,3.84,11/05/19 00:33,"962 Pine St, New York City, NY 10001" +285228,34in Ultrawide Monitor,1,379.99,11/03/19 17:29,"478 Johnson St, Seattle, WA 98101" +285229,Lightning Charging Cable,1,14.95,11/22/19 12:13,"161 Forest St, San Francisco, CA 94016" +285230,Apple Airpods Headphones,1,150,11/23/19 13:25,"420 Lakeview St, Portland, OR 97035" +285231,AA Batteries (4-pack),2,3.84,11/25/19 09:24,"285 Main St, Boston, MA 02215" +285232,ThinkPad Laptop,1,999.99,11/13/19 00:01,"41 West St, San Francisco, CA 94016" +285233,Apple Airpods Headphones,1,150,11/21/19 07:27,"119 Hill St, Dallas, TX 75001" +285234,27in FHD Monitor,1,149.99,11/01/19 20:00,"612 Hickory St, San Francisco, CA 94016" +285235,Apple Airpods Headphones,1,150,11/15/19 20:46,"840 14th St, San Francisco, CA 94016" +285236,20in Monitor,1,109.99,11/21/19 16:38,"755 11th St, Boston, MA 02215" +285237,AAA Batteries (4-pack),2,2.99,11/03/19 16:33,"887 Park St, Atlanta, GA 30301" +285238,USB-C Charging Cable,1,11.95,11/10/19 09:44,"11 Sunset St, Austin, TX 73301" +285239,USB-C Charging Cable,1,11.95,11/17/19 19:49,"948 2nd St, San Francisco, CA 94016" +285240,Bose SoundSport Headphones,1,99.99,11/10/19 23:28,"214 Center St, Dallas, TX 75001" +285241,Wired Headphones,1,11.99,11/01/19 13:23,"743 Lakeview St, San Francisco, CA 94016" +285242,Bose SoundSport Headphones,1,99.99,11/26/19 23:06,"289 Sunset St, Los Angeles, CA 90001" +285243,Apple Airpods Headphones,1,150,11/26/19 18:50,"35 Jackson St, Los Angeles, CA 90001" +285244,Lightning Charging Cable,1,14.95,11/25/19 12:34,"224 Chestnut St, New York City, NY 10001" +285245,Apple Airpods Headphones,1,150,11/30/19 16:30,"994 Forest St, San Francisco, CA 94016" +285246,AA Batteries (4-pack),2,3.84,11/25/19 18:48,"335 10th St, Dallas, TX 75001" +285247,Apple Airpods Headphones,1,150,11/10/19 16:07,"732 Walnut St, New York City, NY 10001" +285248,Wired Headphones,1,11.99,11/05/19 16:22,"119 9th St, Los Angeles, CA 90001" +285249,AAA Batteries (4-pack),1,2.99,11/06/19 13:26,"593 Lincoln St, San Francisco, CA 94016" +285250,Lightning Charging Cable,1,14.95,11/24/19 11:04,"654 Walnut St, New York City, NY 10001" +285251,USB-C Charging Cable,1,11.95,11/25/19 21:32,"708 Adams St, San Francisco, CA 94016" +285252,Wired Headphones,1,11.99,11/09/19 07:55,"27 8th St, Boston, MA 02215" +285253,Wired Headphones,1,11.99,11/23/19 18:33,"951 Johnson St, San Francisco, CA 94016" +285254,Lightning Charging Cable,1,14.95,11/04/19 16:01,"107 Lincoln St, New York City, NY 10001" +285255,Bose SoundSport Headphones,1,99.99,11/22/19 13:47,"458 Hill St, Portland, OR 97035" +285256,20in Monitor,1,109.99,11/29/19 13:35,"176 4th St, Seattle, WA 98101" +285257,Apple Airpods Headphones,1,150,11/10/19 20:01,"741 4th St, San Francisco, CA 94016" +285258,AA Batteries (4-pack),1,3.84,11/13/19 16:32,"916 4th St, Boston, MA 02215" +285259,Wired Headphones,1,11.99,11/28/19 14:29,"997 Dogwood St, New York City, NY 10001" +285260,Flatscreen TV,1,300,11/12/19 10:19,"181 11th St, Dallas, TX 75001" +285261,Wired Headphones,1,11.99,11/21/19 12:15,"103 Jackson St, New York City, NY 10001" +285262,Apple Airpods Headphones,1,150,11/04/19 21:11,"736 Wilson St, Portland, OR 97035" +285263,Macbook Pro Laptop,1,1700,11/15/19 00:02,"666 Forest St, Portland, ME 04101" +285264,Wired Headphones,1,11.99,11/01/19 19:36,"756 Adams St, Dallas, TX 75001" +285265,Lightning Charging Cable,1,14.95,11/18/19 06:28,"204 Maple St, New York City, NY 10001" +285266,Apple Airpods Headphones,1,150,11/19/19 18:39,"335 Spruce St, New York City, NY 10001" +285267,AA Batteries (4-pack),2,3.84,11/11/19 12:04,"523 Church St, Portland, OR 97035" +285268,Lightning Charging Cable,1,14.95,11/07/19 17:41,"191 Johnson St, Portland, OR 97035" +285269,Google Phone,1,600,11/13/19 19:20,"754 4th St, Austin, TX 73301" +285270,27in FHD Monitor,1,149.99,11/23/19 14:18,"247 North St, Los Angeles, CA 90001" +285271,27in FHD Monitor,1,149.99,11/12/19 14:22,"440 Hill St, San Francisco, CA 94016" +285272,AAA Batteries (4-pack),1,2.99,11/05/19 12:42,"782 4th St, Boston, MA 02215" +285273,AA Batteries (4-pack),1,3.84,11/10/19 10:09,"430 Chestnut St, San Francisco, CA 94016" +285274,20in Monitor,1,109.99,11/24/19 18:36,"101 14th St, Los Angeles, CA 90001" +285275,Lightning Charging Cable,1,14.95,11/09/19 15:06,"890 Sunset St, Austin, TX 73301" +285276,AAA Batteries (4-pack),2,2.99,11/19/19 12:57,"66 Ridge St, Dallas, TX 75001" +285277,Apple Airpods Headphones,1,150,11/25/19 19:31,"246 11th St, Portland, OR 97035" +285278,27in FHD Monitor,1,149.99,11/12/19 06:17,"630 River St, Boston, MA 02215" +285279,Lightning Charging Cable,1,14.95,11/02/19 10:25,"41 Ridge St, San Francisco, CA 94016" +285280,Lightning Charging Cable,1,14.95,11/09/19 08:41,"983 Church St, Seattle, WA 98101" +285281,USB-C Charging Cable,1,11.95,11/19/19 10:00,"256 Jefferson St, San Francisco, CA 94016" +285282,Wired Headphones,1,11.99,11/14/19 20:31,"209 Maple St, Atlanta, GA 30301" +285283,AA Batteries (4-pack),1,3.84,11/12/19 17:18,"593 Dogwood St, San Francisco, CA 94016" +285284,Wired Headphones,1,11.99,11/18/19 14:45,"275 12th St, Los Angeles, CA 90001" +285285,Bose SoundSport Headphones,1,99.99,11/28/19 23:45,"242 6th St, Los Angeles, CA 90001" +285286,LG Washing Machine,1,600.0,11/14/19 14:20,"869 Jackson St, Los Angeles, CA 90001" +285287,Lightning Charging Cable,1,14.95,11/29/19 18:11,"932 Jackson St, Seattle, WA 98101" +285288,ThinkPad Laptop,1,999.99,11/23/19 03:02,"779 8th St, San Francisco, CA 94016" +285289,AAA Batteries (4-pack),1,2.99,11/06/19 21:01,"722 Lincoln St, New York City, NY 10001" +285290,USB-C Charging Cable,1,11.95,11/07/19 05:08,"305 Center St, Atlanta, GA 30301" +285291,27in FHD Monitor,1,149.99,11/15/19 13:16,"398 11th St, Los Angeles, CA 90001" +285292,AAA Batteries (4-pack),3,2.99,11/18/19 12:49,"853 Walnut St, Boston, MA 02215" +285293,27in FHD Monitor,1,149.99,11/13/19 20:59,"996 Willow St, Los Angeles, CA 90001" +285294,USB-C Charging Cable,1,11.95,11/05/19 13:45,"536 North St, Austin, TX 73301" +285295,Lightning Charging Cable,1,14.95,11/13/19 17:05,"912 Main St, San Francisco, CA 94016" +285296,Vareebadd Phone,1,400,11/24/19 16:10,"801 1st St, Atlanta, GA 30301" +285297,USB-C Charging Cable,1,11.95,11/26/19 10:50,"705 Elm St, San Francisco, CA 94016" +285298,Bose SoundSport Headphones,1,99.99,11/03/19 09:06,"55 Wilson St, Seattle, WA 98101" +285299,USB-C Charging Cable,1,11.95,11/25/19 12:48,"592 Wilson St, San Francisco, CA 94016" +285300,20in Monitor,1,109.99,11/19/19 22:23,"21 Lakeview St, Los Angeles, CA 90001" +285301,Bose SoundSport Headphones,1,99.99,11/15/19 13:46,"605 13th St, Boston, MA 02215" +285302,Apple Airpods Headphones,1,150,11/13/19 14:59,"322 6th St, San Francisco, CA 94016" +285303,20in Monitor,1,109.99,11/09/19 04:49,"799 North St, Seattle, WA 98101" +285304,Apple Airpods Headphones,2,150,11/20/19 23:41,"820 Lake St, Los Angeles, CA 90001" +285305,USB-C Charging Cable,1,11.95,11/28/19 11:43,"253 Main St, Atlanta, GA 30301" +285306,Wired Headphones,1,11.99,11/20/19 22:40,"376 Pine St, San Francisco, CA 94016" +285307,USB-C Charging Cable,1,11.95,11/04/19 11:10,"79 9th St, Los Angeles, CA 90001" +285308,Apple Airpods Headphones,1,150,11/29/19 01:05,"790 5th St, San Francisco, CA 94016" +285309,Apple Airpods Headphones,1,150,11/27/19 09:46,"656 Walnut St, Austin, TX 73301" +285310,AAA Batteries (4-pack),2,2.99,11/06/19 08:11,"316 Center St, Seattle, WA 98101" +285311,iPhone,1,700,11/21/19 22:37,"400 2nd St, Los Angeles, CA 90001" +285312,USB-C Charging Cable,1,11.95,11/21/19 19:07,"263 North St, New York City, NY 10001" +285313,AAA Batteries (4-pack),1,2.99,11/02/19 14:58,"893 8th St, Los Angeles, CA 90001" +285314,Apple Airpods Headphones,1,150,11/29/19 18:51,"535 Meadow St, Los Angeles, CA 90001" +285315,Lightning Charging Cable,1,14.95,11/25/19 08:38,"531 Johnson St, San Francisco, CA 94016" +285316,27in FHD Monitor,1,149.99,11/03/19 20:17,"872 North St, Seattle, WA 98101" +285317,AAA Batteries (4-pack),2,2.99,11/15/19 16:32,"776 Madison St, San Francisco, CA 94016" +285318,Wired Headphones,1,11.99,11/17/19 17:11,"947 South St, Los Angeles, CA 90001" +285319,AAA Batteries (4-pack),2,2.99,11/24/19 18:47,"964 West St, Portland, OR 97035" +285320,AAA Batteries (4-pack),1,2.99,11/19/19 22:24,"393 5th St, Los Angeles, CA 90001" +285321,Apple Airpods Headphones,1,150,11/27/19 17:43,"507 Elm St, New York City, NY 10001" +285322,Bose SoundSport Headphones,2,99.99,11/25/19 16:56,"415 Spruce St, San Francisco, CA 94016" +285323,AA Batteries (4-pack),1,3.84,11/26/19 16:51,"960 Lakeview St, San Francisco, CA 94016" +285324,Lightning Charging Cable,1,14.95,11/01/19 19:11,"61 4th St, New York City, NY 10001" +285325,Lightning Charging Cable,1,14.95,11/23/19 14:44,"860 Walnut St, New York City, NY 10001" +285326,27in FHD Monitor,1,149.99,11/03/19 18:23,"416 Chestnut St, Los Angeles, CA 90001" +285327,Apple Airpods Headphones,1,150,11/20/19 21:13,"126 Meadow St, Los Angeles, CA 90001" +285328,AA Batteries (4-pack),2,3.84,11/16/19 14:43,"624 Willow St, Dallas, TX 75001" +285329,Wired Headphones,1,11.99,11/25/19 18:09,"928 North St, San Francisco, CA 94016" +285330,Google Phone,1,600,11/12/19 10:08,"605 Adams St, New York City, NY 10001" +285331,Lightning Charging Cable,1,14.95,11/22/19 23:45,"284 Chestnut St, Atlanta, GA 30301" +285332,34in Ultrawide Monitor,1,379.99,11/16/19 20:57,"970 Meadow St, Los Angeles, CA 90001" +285333,27in FHD Monitor,1,149.99,11/06/19 12:57,"939 14th St, San Francisco, CA 94016" +285334,Apple Airpods Headphones,1,150,11/07/19 20:24,"947 West St, Boston, MA 02215" +285335,Macbook Pro Laptop,1,1700,11/09/19 22:06,"822 Adams St, Boston, MA 02215" +285336,Bose SoundSport Headphones,1,99.99,11/01/19 09:10,"925 8th St, Los Angeles, CA 90001" +285337,Wired Headphones,1,11.99,11/23/19 10:22,"6 8th St, Austin, TX 73301" +285338,ThinkPad Laptop,1,999.99,11/08/19 10:38,"214 Washington St, Boston, MA 02215" +285339,AA Batteries (4-pack),1,3.84,11/26/19 15:38,"268 Jefferson St, New York City, NY 10001" +285340,Flatscreen TV,1,300,11/22/19 21:48,"880 Park St, Boston, MA 02215" +285341,Bose SoundSport Headphones,1,99.99,11/03/19 18:49,"262 Madison St, Boston, MA 02215" +285342,Google Phone,1,600,11/02/19 20:15,"453 Sunset St, San Francisco, CA 94016" +285343,Wired Headphones,1,11.99,11/18/19 22:29,"118 Hickory St, Austin, TX 73301" +285344,27in FHD Monitor,1,149.99,11/22/19 14:18,"492 Lake St, Austin, TX 73301" +285345,AAA Batteries (4-pack),1,2.99,11/03/19 21:46,"299 1st St, Los Angeles, CA 90001" +285346,20in Monitor,1,109.99,11/02/19 12:09,"5 South St, San Francisco, CA 94016" +285347,Flatscreen TV,1,300,11/03/19 22:52,"625 9th St, New York City, NY 10001" +285348,iPhone,1,700,11/12/19 21:37,"353 Maple St, Los Angeles, CA 90001" +285348,Wired Headphones,1,11.99,11/12/19 21:37,"353 Maple St, Los Angeles, CA 90001" +285349,Apple Airpods Headphones,1,150,11/11/19 13:45,"549 10th St, San Francisco, CA 94016" +285350,AA Batteries (4-pack),1,3.84,11/13/19 08:53,"331 Jackson St, Los Angeles, CA 90001" +285351,27in FHD Monitor,1,149.99,11/03/19 16:42,"690 5th St, Boston, MA 02215" +285352,Apple Airpods Headphones,1,150,11/21/19 17:53,"70 Maple St, San Francisco, CA 94016" +285353,Lightning Charging Cable,1,14.95,11/08/19 17:53,"785 Chestnut St, San Francisco, CA 94016" +285354,Lightning Charging Cable,1,14.95,11/05/19 15:26,"512 Washington St, Los Angeles, CA 90001" +285355,AA Batteries (4-pack),1,3.84,11/02/19 17:05,"376 6th St, New York City, NY 10001" +285356,Bose SoundSport Headphones,1,99.99,11/04/19 11:23,"627 Jackson St, Dallas, TX 75001" +285357,34in Ultrawide Monitor,1,379.99,11/17/19 14:24,"978 Sunset St, Atlanta, GA 30301" +285358,USB-C Charging Cable,1,11.95,11/24/19 18:24,"738 Spruce St, Seattle, WA 98101" +285359,Google Phone,1,600,11/28/19 12:37,"200 Jackson St, San Francisco, CA 94016" +285360,Wired Headphones,1,11.99,11/27/19 12:49,"776 Jefferson St, Los Angeles, CA 90001" +285361,USB-C Charging Cable,1,11.95,11/14/19 10:44,"792 10th St, Boston, MA 02215" +285362,Lightning Charging Cable,1,14.95,11/17/19 19:20,"558 13th St, New York City, NY 10001" +285363,Apple Airpods Headphones,1,150,11/24/19 20:34,"514 Park St, Boston, MA 02215" +285364,Bose SoundSport Headphones,1,99.99,11/28/19 20:17,"680 Johnson St, New York City, NY 10001" +285365,Flatscreen TV,1,300,11/19/19 17:13,"141 Main St, Austin, TX 73301" +285366,ThinkPad Laptop,1,999.99,11/25/19 20:37,"369 Forest St, Austin, TX 73301" +285367,Bose SoundSport Headphones,1,99.99,11/11/19 16:52,"282 12th St, Seattle, WA 98101" +285368,27in FHD Monitor,1,149.99,11/24/19 19:32,"770 Cherry St, San Francisco, CA 94016" +285369,Wired Headphones,1,11.99,11/03/19 18:07,"655 8th St, Boston, MA 02215" +285370,LG Dryer,1,600.0,11/24/19 00:18,"663 Highland St, New York City, NY 10001" +285371,27in 4K Gaming Monitor,1,389.99,11/07/19 07:59,"405 Hill St, New York City, NY 10001" +285372,Google Phone,1,600,11/15/19 20:02,"680 14th St, Atlanta, GA 30301" +285372,USB-C Charging Cable,1,11.95,11/15/19 20:02,"680 14th St, Atlanta, GA 30301" +285372,Wired Headphones,1,11.99,11/15/19 20:02,"680 14th St, Atlanta, GA 30301" +285373,20in Monitor,1,109.99,11/01/19 08:04,"247 Park St, Dallas, TX 75001" +285374,Lightning Charging Cable,1,14.95,11/25/19 00:04,"255 Maple St, New York City, NY 10001" +285375,AA Batteries (4-pack),1,3.84,11/09/19 07:37,"936 13th St, Los Angeles, CA 90001" +285376,Lightning Charging Cable,1,14.95,11/11/19 10:35,"644 8th St, San Francisco, CA 94016" +285377,Apple Airpods Headphones,1,150,11/11/19 01:01,"306 Jefferson St, Portland, OR 97035" +285378,AAA Batteries (4-pack),2,2.99,11/08/19 16:54,"439 South St, San Francisco, CA 94016" +285379,USB-C Charging Cable,1,11.95,11/24/19 21:28,"916 North St, San Francisco, CA 94016" +285380,Google Phone,1,600,11/13/19 18:54,"670 13th St, Boston, MA 02215" +285381,ThinkPad Laptop,1,999.99,11/05/19 11:20,"246 Elm St, Portland, OR 97035" +285382,Lightning Charging Cable,1,14.95,11/30/19 21:40,"58 Adams St, Seattle, WA 98101" +285383,Wired Headphones,1,11.99,11/01/19 09:08,"875 Wilson St, Atlanta, GA 30301" +285384,Lightning Charging Cable,1,14.95,11/20/19 12:19,"746 Lakeview St, Atlanta, GA 30301" +285385,USB-C Charging Cable,1,11.95,11/13/19 08:10,"322 Sunset St, Boston, MA 02215" +285386,27in FHD Monitor,1,149.99,11/17/19 13:26,"297 4th St, San Francisco, CA 94016" +285387,Lightning Charging Cable,1,14.95,11/27/19 17:30,"999 10th St, Seattle, WA 98101" +285388,USB-C Charging Cable,2,11.95,11/15/19 14:28,"615 Pine St, Dallas, TX 75001" +285389,iPhone,1,700,11/25/19 19:20,"260 Ridge St, New York City, NY 10001" +285390,Bose SoundSport Headphones,1,99.99,11/19/19 15:39,"772 14th St, Portland, ME 04101" +285391,Lightning Charging Cable,1,14.95,11/29/19 10:40,"529 Pine St, San Francisco, CA 94016" +285392,Macbook Pro Laptop,1,1700,11/22/19 12:38,"998 Pine St, Seattle, WA 98101" +285393,USB-C Charging Cable,2,11.95,11/23/19 18:40,"200 Meadow St, Los Angeles, CA 90001" +285394,Apple Airpods Headphones,1,150,11/06/19 17:31,"364 Madison St, Boston, MA 02215" +285395,USB-C Charging Cable,1,11.95,11/08/19 14:26,"962 13th St, Dallas, TX 75001" +285396,Google Phone,1,600,11/16/19 00:44,"904 Lake St, Los Angeles, CA 90001" +285397,AA Batteries (4-pack),1,3.84,11/01/19 15:41,"521 14th St, San Francisco, CA 94016" +285398,Bose SoundSport Headphones,1,99.99,11/22/19 10:20,"160 5th St, Los Angeles, CA 90001" +285399,34in Ultrawide Monitor,1,379.99,11/02/19 15:52,"212 West St, San Francisco, CA 94016" +285400,Lightning Charging Cable,1,14.95,11/06/19 13:04,"935 Elm St, San Francisco, CA 94016" +285401,AAA Batteries (4-pack),1,2.99,11/29/19 17:59,"384 Dogwood St, Los Angeles, CA 90001" +285402,AAA Batteries (4-pack),1,2.99,11/21/19 12:59,"130 2nd St, Los Angeles, CA 90001" +285403,AAA Batteries (4-pack),2,2.99,11/13/19 11:30,"593 Lincoln St, Dallas, TX 75001" +285404,Lightning Charging Cable,1,14.95,11/18/19 21:32,"627 2nd St, Portland, OR 97035" +285405,Lightning Charging Cable,1,14.95,11/14/19 19:19,"380 Park St, Boston, MA 02215" +285406,Apple Airpods Headphones,1,150,11/01/19 18:26,"439 Pine St, Atlanta, GA 30301" +285407,Wired Headphones,1,11.99,11/09/19 16:55,"497 Lake St, Los Angeles, CA 90001" +285408,AAA Batteries (4-pack),2,2.99,11/24/19 19:34,"140 8th St, Austin, TX 73301" +285409,AAA Batteries (4-pack),1,2.99,11/30/19 22:46,"610 14th St, Austin, TX 73301" +285410,AA Batteries (4-pack),1,3.84,11/04/19 17:43,"244 Park St, Portland, OR 97035" +285411,Bose SoundSport Headphones,1,99.99,11/01/19 12:45,"758 2nd St, Los Angeles, CA 90001" +285412,Wired Headphones,1,11.99,11/26/19 20:52,"501 Maple St, Seattle, WA 98101" +285413,Lightning Charging Cable,2,14.95,11/28/19 22:49,"256 Walnut St, Los Angeles, CA 90001" +285414,20in Monitor,1,109.99,11/24/19 09:54,"241 14th St, Atlanta, GA 30301" +285415,Apple Airpods Headphones,1,150,11/12/19 16:00,"786 Ridge St, San Francisco, CA 94016" +285416,Lightning Charging Cable,1,14.95,11/06/19 22:48,"508 Church St, Atlanta, GA 30301" +285417,Lightning Charging Cable,1,14.95,11/26/19 00:33,"830 Sunset St, Dallas, TX 75001" +285418,Lightning Charging Cable,2,14.95,11/19/19 14:02,"15 Washington St, Portland, ME 04101" +285419,34in Ultrawide Monitor,1,379.99,11/22/19 18:57,"585 Hickory St, Los Angeles, CA 90001" +285420,Google Phone,1,600,11/19/19 16:35,"315 Maple St, San Francisco, CA 94016" +285421,27in FHD Monitor,1,149.99,11/14/19 19:24,"466 Lake St, Los Angeles, CA 90001" +285422,USB-C Charging Cable,1,11.95,11/26/19 15:51,"260 Center St, New York City, NY 10001" +285423,Bose SoundSport Headphones,1,99.99,11/03/19 14:31,"876 Chestnut St, New York City, NY 10001" +285424,Wired Headphones,1,11.99,11/23/19 22:07,"682 Dogwood St, Austin, TX 73301" +285425,AA Batteries (4-pack),1,3.84,11/27/19 13:20,"636 14th St, New York City, NY 10001" +285425,20in Monitor,1,109.99,11/27/19 13:20,"636 14th St, New York City, NY 10001" +285426,27in 4K Gaming Monitor,1,389.99,11/11/19 07:41,"584 Church St, Atlanta, GA 30301" +285427,AA Batteries (4-pack),2,3.84,11/21/19 18:34,"367 Park St, San Francisco, CA 94016" +285428,AAA Batteries (4-pack),1,2.99,11/30/19 13:27,"290 8th St, New York City, NY 10001" +285429,USB-C Charging Cable,1,11.95,11/16/19 08:25,"707 Hill St, San Francisco, CA 94016" +285430,Lightning Charging Cable,1,14.95,11/24/19 01:22,"147 Meadow St, Boston, MA 02215" +285431,AA Batteries (4-pack),3,3.84,11/15/19 16:33,"329 2nd St, Los Angeles, CA 90001" +285432,AA Batteries (4-pack),1,3.84,11/19/19 23:58,"627 2nd St, Boston, MA 02215" +285433,USB-C Charging Cable,4,11.95,11/30/19 23:13,"941 Meadow St, Los Angeles, CA 90001" +285434,AA Batteries (4-pack),1,3.84,11/23/19 20:28,"959 5th St, San Francisco, CA 94016" +285435,AA Batteries (4-pack),1,3.84,11/01/19 22:41,"354 Hickory St, San Francisco, CA 94016" +285436,AA Batteries (4-pack),1,3.84,11/01/19 12:41,"367 Washington St, Atlanta, GA 30301" +285437,Wired Headphones,1,11.99,11/09/19 18:32,"943 Lincoln St, Atlanta, GA 30301" +285438,AAA Batteries (4-pack),1,2.99,11/12/19 19:39,"162 Jefferson St, New York City, NY 10001" +285439,Apple Airpods Headphones,1,150,11/06/19 07:51,"678 North St, Los Angeles, CA 90001" +285440,AA Batteries (4-pack),1,3.84,11/22/19 10:57,"893 Lake St, Atlanta, GA 30301" +285441,Lightning Charging Cable,1,14.95,11/26/19 11:08,"934 1st St, Seattle, WA 98101" +285442,Lightning Charging Cable,2,14.95,11/17/19 15:47,"187 West St, San Francisco, CA 94016" +285443,USB-C Charging Cable,1,11.95,11/13/19 22:46,"736 Cedar St, San Francisco, CA 94016" +285444,Lightning Charging Cable,1,14.95,11/17/19 16:50,"543 6th St, Los Angeles, CA 90001" +285445,27in 4K Gaming Monitor,1,389.99,11/11/19 16:19,"582 Hickory St, Portland, OR 97035" +285446,iPhone,1,700,11/05/19 10:40,"703 Jefferson St, San Francisco, CA 94016" +285447,Wired Headphones,1,11.99,11/18/19 13:18,"116 10th St, San Francisco, CA 94016" +285448,Lightning Charging Cable,1,14.95,11/01/19 21:31,"806 Adams St, Dallas, TX 75001" +285449,Lightning Charging Cable,1,14.95,11/10/19 14:45,"314 West St, San Francisco, CA 94016" +285450,Lightning Charging Cable,1,14.95,11/26/19 01:04,"945 Adams St, Boston, MA 02215" +285451,AAA Batteries (4-pack),1,2.99,11/12/19 11:34,"290 14th St, Seattle, WA 98101" +285452,Lightning Charging Cable,1,14.95,11/19/19 17:57,"553 Hickory St, San Francisco, CA 94016" +285453,AA Batteries (4-pack),1,3.84,11/27/19 22:58,"419 Ridge St, Austin, TX 73301" +285454,LG Washing Machine,1,600.0,11/25/19 20:29,"623 North St, Boston, MA 02215" +285455,AAA Batteries (4-pack),2,2.99,11/06/19 17:03,"480 9th St, Los Angeles, CA 90001" +285456,Lightning Charging Cable,1,14.95,11/06/19 14:45,"990 Cherry St, San Francisco, CA 94016" +285457,AAA Batteries (4-pack),1,2.99,11/01/19 22:15,"649 Willow St, New York City, NY 10001" +285458,USB-C Charging Cable,1,11.95,11/09/19 21:14,"886 Forest St, San Francisco, CA 94016" +285459,AA Batteries (4-pack),1,3.84,11/14/19 20:00,"55 Pine St, San Francisco, CA 94016" +285460,Wired Headphones,1,11.99,11/05/19 14:56,"699 5th St, Seattle, WA 98101" +285461,Lightning Charging Cable,1,14.95,11/06/19 17:32,"688 Sunset St, Austin, TX 73301" +285462,Google Phone,1,600,11/14/19 20:48,"693 Walnut St, Dallas, TX 75001" +285463,34in Ultrawide Monitor,1,379.99,11/05/19 12:57,"148 10th St, Seattle, WA 98101" +285464,Lightning Charging Cable,1,14.95,11/04/19 17:19,"198 14th St, Austin, TX 73301" +285465,AA Batteries (4-pack),1,3.84,11/20/19 19:13,"236 8th St, New York City, NY 10001" +285466,Wired Headphones,1,11.99,11/30/19 12:15,"663 Maple St, San Francisco, CA 94016" +285467,Apple Airpods Headphones,1,150,11/06/19 08:09,"226 Forest St, Los Angeles, CA 90001" +285468,AA Batteries (4-pack),1,3.84,11/19/19 22:42,"676 Pine St, Austin, TX 73301" +285469,Wired Headphones,1,11.99,11/11/19 14:03,"773 Maple St, Boston, MA 02215" +285470,USB-C Charging Cable,1,11.95,11/10/19 08:57,"428 Willow St, San Francisco, CA 94016" +285471,AAA Batteries (4-pack),1,2.99,11/12/19 19:38,"50 Hickory St, Los Angeles, CA 90001" +285472,Lightning Charging Cable,1,14.95,11/06/19 11:59,"230 11th St, Portland, OR 97035" +285473,USB-C Charging Cable,1,11.95,11/15/19 11:25,"145 10th St, Portland, ME 04101" +285474,Lightning Charging Cable,1,14.95,11/04/19 17:39,"992 Spruce St, Seattle, WA 98101" +285475,20in Monitor,1,109.99,11/24/19 18:45,"657 1st St, Los Angeles, CA 90001" +285476,Lightning Charging Cable,1,14.95,11/01/19 13:48,"967 Washington St, San Francisco, CA 94016" +285477,AA Batteries (4-pack),1,3.84,11/04/19 13:06,"470 River St, New York City, NY 10001" +285478,USB-C Charging Cable,1,11.95,11/13/19 13:23,"435 6th St, Los Angeles, CA 90001" +285479,AA Batteries (4-pack),1,3.84,11/12/19 13:15,"306 11th St, San Francisco, CA 94016" +285480,AAA Batteries (4-pack),1,2.99,11/22/19 10:28,"546 Cherry St, Portland, OR 97035" +285481,Bose SoundSport Headphones,1,99.99,11/10/19 18:27,"717 Johnson St, Atlanta, GA 30301" +285482,Apple Airpods Headphones,1,150,11/17/19 20:36,"684 Johnson St, Portland, OR 97035" +285483,Wired Headphones,2,11.99,11/05/19 21:18,"574 8th St, San Francisco, CA 94016" +285484,Wired Headphones,1,11.99,11/23/19 17:29,"479 Chestnut St, Austin, TX 73301" +285485,USB-C Charging Cable,1,11.95,11/08/19 17:39,"86 8th St, Los Angeles, CA 90001" +285486,AAA Batteries (4-pack),2,2.99,11/26/19 19:22,"460 12th St, New York City, NY 10001" +285487,AA Batteries (4-pack),2,3.84,11/16/19 14:46,"550 Willow St, Portland, ME 04101" +285488,AA Batteries (4-pack),2,3.84,11/10/19 19:52,"693 8th St, Los Angeles, CA 90001" +285489,USB-C Charging Cable,1,11.95,11/01/19 14:49,"126 Park St, Dallas, TX 75001" +285490,Bose SoundSport Headphones,1,99.99,11/20/19 21:51,"703 Madison St, Los Angeles, CA 90001" +285491,Lightning Charging Cable,1,14.95,11/18/19 22:02,"227 5th St, New York City, NY 10001" +285492,Apple Airpods Headphones,1,150,11/02/19 21:18,"969 11th St, Atlanta, GA 30301" +285493,USB-C Charging Cable,1,11.95,11/11/19 14:53,"240 Wilson St, Dallas, TX 75001" +285494,Apple Airpods Headphones,1,150,11/04/19 00:08,"223 Spruce St, New York City, NY 10001" +285495,Macbook Pro Laptop,1,1700,11/06/19 19:03,"817 Highland St, San Francisco, CA 94016" +285496,AAA Batteries (4-pack),1,2.99,11/08/19 21:26,"606 Main St, Boston, MA 02215" +285497,USB-C Charging Cable,1,11.95,11/20/19 17:54,"125 Elm St, Austin, TX 73301" +285498,Macbook Pro Laptop,1,1700,11/13/19 11:53,"278 Madison St, Los Angeles, CA 90001" +285499,USB-C Charging Cable,1,11.95,11/17/19 19:28,"208 Lakeview St, San Francisco, CA 94016" +285500,USB-C Charging Cable,1,11.95,11/21/19 23:05,"133 Madison St, New York City, NY 10001" +285501,AAA Batteries (4-pack),1,2.99,11/06/19 19:23,"844 Main St, San Francisco, CA 94016" +285501,34in Ultrawide Monitor,1,379.99,11/06/19 19:23,"844 Main St, San Francisco, CA 94016" +285502,AA Batteries (4-pack),1,3.84,11/14/19 12:08,"467 Forest St, San Francisco, CA 94016" +285503,AA Batteries (4-pack),1,3.84,11/26/19 16:03,"658 South St, San Francisco, CA 94016" +285504,USB-C Charging Cable,1,11.95,11/21/19 19:44,"421 10th St, San Francisco, CA 94016" +285505,Bose SoundSport Headphones,1,99.99,11/03/19 20:45,"225 Madison St, New York City, NY 10001" +285506,LG Washing Machine,1,600.0,11/19/19 19:53,"400 Lake St, Atlanta, GA 30301" +285507,Lightning Charging Cable,1,14.95,11/10/19 07:51,"824 Walnut St, Boston, MA 02215" +285508,AAA Batteries (4-pack),1,2.99,11/11/19 17:32,"407 Park St, Boston, MA 02215" +285509,27in FHD Monitor,1,149.99,11/13/19 11:36,"633 Sunset St, New York City, NY 10001" +285510,Apple Airpods Headphones,1,150,11/17/19 21:54,"215 Lincoln St, San Francisco, CA 94016" +285511,AA Batteries (4-pack),1,3.84,11/15/19 15:25,"265 Cedar St, New York City, NY 10001" +285512,AA Batteries (4-pack),2,3.84,11/07/19 22:19,"794 Walnut St, Los Angeles, CA 90001" +285513,USB-C Charging Cable,1,11.95,11/20/19 11:15,"168 Hill St, New York City, NY 10001" +285514,Vareebadd Phone,1,400,11/29/19 12:50,"145 Lakeview St, Los Angeles, CA 90001" +285515,AAA Batteries (4-pack),1,2.99,11/18/19 10:16,"190 1st St, San Francisco, CA 94016" +285516,AA Batteries (4-pack),1,3.84,11/18/19 16:42,"562 Hill St, Los Angeles, CA 90001" +285517,20in Monitor,1,109.99,11/14/19 12:07,"40 Jefferson St, Los Angeles, CA 90001" +285518,USB-C Charging Cable,1,11.95,11/21/19 12:56,"459 West St, New York City, NY 10001" +285519,LG Washing Machine,1,600.0,11/24/19 09:15,"394 5th St, San Francisco, CA 94016" +285520,Apple Airpods Headphones,1,150,11/12/19 13:11,"54 Lake St, Los Angeles, CA 90001" +285521,27in FHD Monitor,1,149.99,11/05/19 11:46,"608 6th St, Atlanta, GA 30301" +285522,iPhone,1,700,11/11/19 09:24,"899 2nd St, Portland, OR 97035" +285523,AAA Batteries (4-pack),3,2.99,11/17/19 17:51,"245 Jefferson St, Boston, MA 02215" +285524,AAA Batteries (4-pack),1,2.99,11/01/19 05:04,"812 Jefferson St, Seattle, WA 98101" +285525,27in FHD Monitor,1,149.99,11/21/19 20:17,"913 Main St, Boston, MA 02215" +285526,Flatscreen TV,1,300,11/15/19 09:10,"255 Forest St, San Francisco, CA 94016" +285527,27in FHD Monitor,1,149.99,11/26/19 19:51,"239 Jefferson St, Dallas, TX 75001" +285528,AA Batteries (4-pack),1,3.84,11/24/19 21:46,"764 Washington St, Seattle, WA 98101" +285529,27in 4K Gaming Monitor,1,389.99,11/19/19 16:31,"360 Lake St, Dallas, TX 75001" +285530,USB-C Charging Cable,1,11.95,11/06/19 20:14,"46 Lakeview St, Seattle, WA 98101" +285531,AA Batteries (4-pack),3,3.84,11/24/19 14:43,"803 North St, Los Angeles, CA 90001" +285532,Bose SoundSport Headphones,1,99.99,11/12/19 15:13,"579 South St, Boston, MA 02215" +285533,Lightning Charging Cable,1,14.95,11/14/19 22:44,"117 Sunset St, Los Angeles, CA 90001" +285534,AA Batteries (4-pack),1,3.84,11/20/19 11:37,"787 North St, New York City, NY 10001" +285535,AAA Batteries (4-pack),1,2.99,11/20/19 22:24,"971 Park St, San Francisco, CA 94016" +285536,AAA Batteries (4-pack),2,2.99,11/13/19 10:07,"302 Jackson St, Atlanta, GA 30301" +285537,27in FHD Monitor,1,149.99,11/17/19 07:42,"215 Main St, Atlanta, GA 30301" +285538,Lightning Charging Cable,1,14.95,11/27/19 14:30,"55 Willow St, Boston, MA 02215" +285539,Google Phone,1,600,11/09/19 17:17,"759 Highland St, San Francisco, CA 94016" +285539,USB-C Charging Cable,1,11.95,11/09/19 17:17,"759 Highland St, San Francisco, CA 94016" +285540,Macbook Pro Laptop,1,1700,11/23/19 15:25,"395 1st St, Boston, MA 02215" +285541,Flatscreen TV,1,300,11/02/19 12:34,"147 Dogwood St, Portland, OR 97035" +285542,Bose SoundSport Headphones,1,99.99,11/06/19 22:44,"170 6th St, San Francisco, CA 94016" +285543,Lightning Charging Cable,1,14.95,11/06/19 14:29,"68 Jackson St, Boston, MA 02215" +285544,34in Ultrawide Monitor,1,379.99,11/09/19 18:03,"540 Hill St, Atlanta, GA 30301" +285545,27in FHD Monitor,1,149.99,11/15/19 10:19,"44 Elm St, San Francisco, CA 94016" +285545,Macbook Pro Laptop,1,1700,11/15/19 10:19,"44 Elm St, San Francisco, CA 94016" +285546,Apple Airpods Headphones,1,150,11/24/19 20:45,"559 Jackson St, New York City, NY 10001" +285547,USB-C Charging Cable,1,11.95,11/26/19 19:24,"891 7th St, New York City, NY 10001" +285548,Lightning Charging Cable,1,14.95,11/23/19 21:37,"476 Lincoln St, New York City, NY 10001" +285549,Lightning Charging Cable,1,14.95,11/17/19 14:05,"848 4th St, Los Angeles, CA 90001" +285550,Apple Airpods Headphones,1,150,11/15/19 22:13,"501 1st St, San Francisco, CA 94016" +285551,34in Ultrawide Monitor,1,379.99,11/07/19 09:06,"312 4th St, San Francisco, CA 94016" +285552,AAA Batteries (4-pack),1,2.99,11/21/19 14:50,"445 Hill St, Los Angeles, CA 90001" +285553,Lightning Charging Cable,1,14.95,11/14/19 13:11,"436 Hickory St, Austin, TX 73301" +285554,AA Batteries (4-pack),1,3.84,11/11/19 18:09,"548 Church St, San Francisco, CA 94016" +285555,Apple Airpods Headphones,1,150,11/10/19 03:29,"982 Madison St, Boston, MA 02215" +285556,Lightning Charging Cable,1,14.95,11/11/19 10:26,"732 West St, Boston, MA 02215" +285557,AAA Batteries (4-pack),1,2.99,11/09/19 12:03,"315 14th St, Boston, MA 02215" +285558,Bose SoundSport Headphones,1,99.99,11/14/19 09:41,"199 Spruce St, Los Angeles, CA 90001" +285559,Lightning Charging Cable,1,14.95,11/21/19 21:55,"682 Lake St, Boston, MA 02215" +285560,Wired Headphones,1,11.99,11/08/19 18:25,"547 Elm St, New York City, NY 10001" +285561,AAA Batteries (4-pack),2,2.99,11/20/19 20:09,"297 Lincoln St, San Francisco, CA 94016" +285562,Apple Airpods Headphones,1,150,11/08/19 16:18,"709 Adams St, San Francisco, CA 94016" +285563,AA Batteries (4-pack),1,3.84,11/03/19 18:13,"972 Adams St, Portland, OR 97035" +285564,AA Batteries (4-pack),2,3.84,11/23/19 21:09,"392 Wilson St, San Francisco, CA 94016" +285565,Macbook Pro Laptop,1,1700,11/08/19 08:31,"630 Maple St, Los Angeles, CA 90001" +285566,AAA Batteries (4-pack),1,2.99,11/03/19 15:00,"195 12th St, Seattle, WA 98101" +285567,Lightning Charging Cable,1,14.95,11/26/19 23:42,"470 Ridge St, Los Angeles, CA 90001" +285568,Apple Airpods Headphones,1,150,11/26/19 12:12,"85 Lakeview St, Portland, OR 97035" +285569,Lightning Charging Cable,1,14.95,11/03/19 19:12,"555 Hill St, San Francisco, CA 94016" +285570,AAA Batteries (4-pack),1,2.99,11/03/19 00:19,"678 Wilson St, San Francisco, CA 94016" +285571,27in FHD Monitor,1,149.99,11/29/19 15:21,"563 Walnut St, Los Angeles, CA 90001" +285572,AAA Batteries (4-pack),1,2.99,11/17/19 23:05,"964 Hill St, Austin, TX 73301" +285573,AA Batteries (4-pack),1,3.84,11/04/19 16:39,"657 5th St, Boston, MA 02215" +285574,Flatscreen TV,1,300,11/10/19 10:36,"182 South St, New York City, NY 10001" +285575,AAA Batteries (4-pack),1,2.99,11/22/19 15:37,"191 11th St, Dallas, TX 75001" +285576,27in 4K Gaming Monitor,1,389.99,11/03/19 22:27,"83 Wilson St, Boston, MA 02215" +285577,Macbook Pro Laptop,1,1700,11/13/19 17:32,"314 Sunset St, Dallas, TX 75001" +285578,AAA Batteries (4-pack),2,2.99,11/26/19 18:28,"856 Wilson St, Austin, TX 73301" +285579,Flatscreen TV,1,300,11/28/19 21:20,"476 Madison St, San Francisco, CA 94016" +285580,AAA Batteries (4-pack),1,2.99,11/17/19 10:41,"577 Highland St, Los Angeles, CA 90001" +285581,Bose SoundSport Headphones,1,99.99,11/06/19 20:12,"457 Cherry St, Los Angeles, CA 90001" +285582,LG Dryer,1,600.0,11/06/19 22:33,"285 Center St, New York City, NY 10001" +285583,Google Phone,1,600,11/19/19 23:33,"161 Lakeview St, New York City, NY 10001" +285584,Lightning Charging Cable,1,14.95,11/25/19 12:37,"718 5th St, San Francisco, CA 94016" +285585,Flatscreen TV,1,300,11/21/19 23:34,"555 Chestnut St, Portland, OR 97035" +285586,AA Batteries (4-pack),3,3.84,11/25/19 16:15,"139 Hill St, Austin, TX 73301" +285587,AAA Batteries (4-pack),1,2.99,11/12/19 18:18,"430 4th St, San Francisco, CA 94016" +285588,Bose SoundSport Headphones,1,99.99,11/25/19 09:12,"563 Forest St, Boston, MA 02215" +285589,Wired Headphones,1,11.99,11/20/19 15:34,"106 Main St, Dallas, TX 75001" +285590,AA Batteries (4-pack),2,3.84,11/27/19 19:43,"581 West St, Dallas, TX 75001" +285591,USB-C Charging Cable,1,11.95,11/20/19 19:37,"942 Pine St, Portland, OR 97035" +285592,Macbook Pro Laptop,1,1700,11/25/19 03:31,"922 Adams St, Los Angeles, CA 90001" +285593,Apple Airpods Headphones,1,150,11/12/19 17:46,"907 Dogwood St, Los Angeles, CA 90001" +285594,Bose SoundSport Headphones,1,99.99,11/14/19 14:51,"121 Elm St, Boston, MA 02215" +285595,AA Batteries (4-pack),1,3.84,11/09/19 11:48,"148 9th St, New York City, NY 10001" +285596,Wired Headphones,2,11.99,11/30/19 14:56,"460 Maple St, Portland, OR 97035" +285597,27in FHD Monitor,1,149.99,11/10/19 06:36,"926 9th St, Los Angeles, CA 90001" +285598,Lightning Charging Cable,1,14.95,11/21/19 16:44,"255 12th St, San Francisco, CA 94016" +285599,Wired Headphones,1,11.99,11/07/19 19:23,"903 Hickory St, San Francisco, CA 94016" +285600,AA Batteries (4-pack),1,3.84,11/01/19 16:35,"52 7th St, San Francisco, CA 94016" +285600,Google Phone,1,600,11/01/19 16:35,"52 7th St, San Francisco, CA 94016" +285601,USB-C Charging Cable,1,11.95,11/15/19 14:18,"161 West St, San Francisco, CA 94016" +285602,USB-C Charging Cable,1,11.95,11/08/19 12:18,"554 Forest St, Boston, MA 02215" +285603,Macbook Pro Laptop,1,1700,11/27/19 10:24,"537 12th St, Seattle, WA 98101" +285604,ThinkPad Laptop,1,999.99,11/03/19 12:41,"131 Madison St, San Francisco, CA 94016" +285605,Apple Airpods Headphones,1,150,11/14/19 08:59,"183 Dogwood St, Los Angeles, CA 90001" +285606,34in Ultrawide Monitor,1,379.99,11/19/19 15:23,"808 Walnut St, Dallas, TX 75001" +285607,Wired Headphones,1,11.99,11/03/19 13:20,"532 Forest St, New York City, NY 10001" +285608,27in FHD Monitor,1,149.99,11/24/19 19:38,"808 Jefferson St, Seattle, WA 98101" +285609,34in Ultrawide Monitor,1,379.99,11/04/19 08:58,"471 Spruce St, Boston, MA 02215" +285610,AA Batteries (4-pack),1,3.84,11/09/19 19:03,"446 Highland St, Boston, MA 02215" +285611,34in Ultrawide Monitor,1,379.99,11/03/19 01:57,"858 10th St, Boston, MA 02215" +285612,Lightning Charging Cable,1,14.95,11/19/19 13:51,"466 Highland St, Portland, OR 97035" +285613,Google Phone,1,600,11/14/19 05:27,"627 Elm St, Atlanta, GA 30301" +285613,USB-C Charging Cable,1,11.95,11/14/19 05:27,"627 Elm St, Atlanta, GA 30301" +285614,iPhone,1,700,11/12/19 00:14,"696 Maple St, Dallas, TX 75001" +285615,20in Monitor,1,109.99,11/14/19 22:08,"259 Pine St, San Francisco, CA 94016" +285616,Wired Headphones,1,11.99,11/07/19 15:32,"797 14th St, New York City, NY 10001" +285617,ThinkPad Laptop,1,999.99,11/21/19 10:34,"863 Jefferson St, New York City, NY 10001" +285618,20in Monitor,1,109.99,11/19/19 18:50,"456 Chestnut St, Los Angeles, CA 90001" +285619,Macbook Pro Laptop,1,1700,11/10/19 19:48,"125 Center St, New York City, NY 10001" +285620,Apple Airpods Headphones,1,150,11/25/19 08:50,"626 2nd St, San Francisco, CA 94016" +285621,Macbook Pro Laptop,1,1700,11/04/19 15:06,"564 2nd St, San Francisco, CA 94016" +285622,AA Batteries (4-pack),2,3.84,11/02/19 19:08,"100 Spruce St, Dallas, TX 75001" +285623,Wired Headphones,1,11.99,11/07/19 21:58,"984 13th St, New York City, NY 10001" +285624,AAA Batteries (4-pack),1,2.99,11/24/19 19:12,"76 West St, Austin, TX 73301" +285625,27in 4K Gaming Monitor,1,389.99,11/20/19 17:30,"876 Washington St, New York City, NY 10001" +285626,27in 4K Gaming Monitor,1,389.99,11/17/19 19:16,"557 Pine St, San Francisco, CA 94016" +285627,Lightning Charging Cable,1,14.95,11/30/19 18:28,"260 Park St, Seattle, WA 98101" +285628,USB-C Charging Cable,1,11.95,11/28/19 17:04,"92 Madison St, Los Angeles, CA 90001" +285629,34in Ultrawide Monitor,1,379.99,11/23/19 12:30,"156 Washington St, Boston, MA 02215" +285630,Lightning Charging Cable,1,14.95,11/11/19 18:07,"238 Lakeview St, Atlanta, GA 30301" +285631,AAA Batteries (4-pack),2,2.99,11/13/19 13:35,"966 2nd St, Boston, MA 02215" +285632,Lightning Charging Cable,1,14.95,11/26/19 08:11,"360 Center St, Boston, MA 02215" +285633,AAA Batteries (4-pack),1,2.99,11/02/19 14:56,"695 Lake St, Seattle, WA 98101" +285634,AA Batteries (4-pack),1,3.84,11/26/19 11:14,"238 Church St, Portland, ME 04101" +285635,USB-C Charging Cable,1,11.95,11/27/19 09:23,"20 14th St, Dallas, TX 75001" +285636,iPhone,1,700,11/06/19 06:38,"179 West St, Portland, OR 97035" +285637,Wired Headphones,1,11.99,11/13/19 13:20,"943 9th St, Dallas, TX 75001" +285638,ThinkPad Laptop,1,999.99,11/02/19 18:14,"405 Jackson St, San Francisco, CA 94016" +285639,AAA Batteries (4-pack),3,2.99,11/05/19 19:49,"753 11th St, Seattle, WA 98101" +285640,USB-C Charging Cable,1,11.95,11/13/19 23:30,"83 1st St, San Francisco, CA 94016" +285641,Wired Headphones,1,11.99,11/17/19 13:48,"640 7th St, Boston, MA 02215" +285642,AA Batteries (4-pack),1,3.84,11/10/19 07:55,"958 Park St, Seattle, WA 98101" +285642,27in FHD Monitor,1,149.99,11/10/19 07:55,"958 Park St, Seattle, WA 98101" +285643,Bose SoundSport Headphones,1,99.99,11/16/19 14:32,"316 Wilson St, San Francisco, CA 94016" +285644,Apple Airpods Headphones,1,150,11/27/19 01:38,"16 Chestnut St, San Francisco, CA 94016" +285645,Bose SoundSport Headphones,1,99.99,11/14/19 12:56,"527 8th St, San Francisco, CA 94016" +285646,iPhone,1,700,11/13/19 23:03,"774 Main St, San Francisco, CA 94016" +285647,AAA Batteries (4-pack),3,2.99,11/05/19 23:36,"495 Adams St, Austin, TX 73301" +285648,Macbook Pro Laptop,1,1700,11/26/19 09:31,"853 River St, Austin, TX 73301" +285649,AA Batteries (4-pack),3,3.84,11/18/19 13:27,"896 Madison St, San Francisco, CA 94016" +285650,Apple Airpods Headphones,1,150,11/29/19 00:38,"273 Hickory St, Austin, TX 73301" +285651,27in 4K Gaming Monitor,1,389.99,11/30/19 15:12,"156 South St, San Francisco, CA 94016" +285652,Apple Airpods Headphones,1,150,11/23/19 18:00,"299 Park St, Portland, OR 97035" +285653,Lightning Charging Cable,1,14.95,11/13/19 10:04,"972 1st St, San Francisco, CA 94016" +285654,AAA Batteries (4-pack),1,2.99,11/17/19 23:57,"736 Park St, Boston, MA 02215" +285655,27in 4K Gaming Monitor,1,389.99,11/29/19 20:41,"970 North St, Seattle, WA 98101" +285656,Wired Headphones,2,11.99,11/09/19 12:45,"204 4th St, Boston, MA 02215" +285657,Bose SoundSport Headphones,1,99.99,11/02/19 17:03,"925 Hill St, Los Angeles, CA 90001" +285658,AAA Batteries (4-pack),2,2.99,11/12/19 15:21,"266 Maple St, San Francisco, CA 94016" +285659,Wired Headphones,1,11.99,11/03/19 10:17,"842 Jackson St, Portland, OR 97035" +285660,Flatscreen TV,1,300,11/26/19 16:03,"189 Maple St, Portland, OR 97035" +285661,USB-C Charging Cable,1,11.95,11/11/19 12:11,"187 1st St, Boston, MA 02215" +285662,Apple Airpods Headphones,1,150,11/01/19 21:46,"127 12th St, Boston, MA 02215" +285663,AA Batteries (4-pack),2,3.84,11/26/19 21:42,"239 Forest St, New York City, NY 10001" +285664,AA Batteries (4-pack),1,3.84,11/11/19 22:39,"258 Main St, New York City, NY 10001" +285665,Wired Headphones,1,11.99,11/14/19 15:26,"918 Madison St, Seattle, WA 98101" +285666,AA Batteries (4-pack),3,3.84,11/23/19 13:02,"429 Dogwood St, Boston, MA 02215" +285667,Bose SoundSport Headphones,1,99.99,11/27/19 22:27,"106 Lake St, New York City, NY 10001" +285668,Lightning Charging Cable,1,14.95,11/15/19 16:59,"105 Meadow St, Los Angeles, CA 90001" +285669,Bose SoundSport Headphones,1,99.99,11/27/19 07:11,"9 5th St, New York City, NY 10001" +285670,Wired Headphones,1,11.99,11/01/19 11:48,"642 Highland St, San Francisco, CA 94016" +285671,Lightning Charging Cable,1,14.95,11/01/19 19:38,"452 Walnut St, Atlanta, GA 30301" +285672,Flatscreen TV,1,300,11/24/19 17:54,"813 Lincoln St, Austin, TX 73301" +285673,AAA Batteries (4-pack),1,2.99,11/30/19 10:22,"12 Lakeview St, Atlanta, GA 30301" +285674,Flatscreen TV,1,300,11/25/19 20:36,"879 Johnson St, San Francisco, CA 94016" +285675,Flatscreen TV,1,300,11/12/19 18:20,"904 Highland St, San Francisco, CA 94016" +285676,USB-C Charging Cable,1,11.95,11/06/19 23:29,"300 Jefferson St, San Francisco, CA 94016" +285677,34in Ultrawide Monitor,1,379.99,11/20/19 05:38,"208 North St, Los Angeles, CA 90001" +285678,34in Ultrawide Monitor,1,379.99,11/27/19 08:34,"941 Walnut St, San Francisco, CA 94016" +285679,27in FHD Monitor,1,149.99,11/01/19 15:44,"259 Adams St, Dallas, TX 75001" +285680,USB-C Charging Cable,1,11.95,11/24/19 22:12,"644 Washington St, New York City, NY 10001" +285681,USB-C Charging Cable,1,11.95,11/22/19 11:50,"861 Pine St, Austin, TX 73301" +285682,AAA Batteries (4-pack),1,2.99,11/06/19 22:18,"209 Cherry St, San Francisco, CA 94016" +285683,AA Batteries (4-pack),2,3.84,11/28/19 08:55,"170 Meadow St, Portland, OR 97035" +285684,AA Batteries (4-pack),1,3.84,11/15/19 19:36,"640 14th St, Austin, TX 73301" +285685,iPhone,1,700,11/01/19 19:03,"245 West St, San Francisco, CA 94016" +285686,Lightning Charging Cable,1,14.95,11/24/19 09:13,"528 South St, Los Angeles, CA 90001" +285687,AAA Batteries (4-pack),3,2.99,11/08/19 22:39,"834 4th St, Dallas, TX 75001" +285687,Wired Headphones,1,11.99,11/08/19 22:39,"834 4th St, Dallas, TX 75001" +285688,Apple Airpods Headphones,1,150,11/14/19 12:39,"566 10th St, Atlanta, GA 30301" +285689,Bose SoundSport Headphones,1,99.99,11/28/19 19:40,"640 Main St, New York City, NY 10001" +285690,Wired Headphones,1,11.99,11/16/19 09:48,"690 Center St, Austin, TX 73301" +285691,Wired Headphones,1,11.99,11/24/19 12:14,"352 11th St, Boston, MA 02215" +285692,AAA Batteries (4-pack),3,2.99,11/10/19 08:25,"367 Walnut St, Seattle, WA 98101" +285693,Wired Headphones,1,11.99,11/05/19 22:53,"61 Maple St, San Francisco, CA 94016" +285694,Wired Headphones,1,11.99,11/15/19 15:20,"531 Ridge St, Dallas, TX 75001" +285695,Lightning Charging Cable,1,14.95,11/17/19 19:34,"229 Wilson St, New York City, NY 10001" +285696,27in 4K Gaming Monitor,1,389.99,11/14/19 20:42,"504 Meadow St, Dallas, TX 75001" +285697,Apple Airpods Headphones,1,150,11/11/19 20:56,"168 Jackson St, Los Angeles, CA 90001" +285698,27in 4K Gaming Monitor,1,389.99,11/25/19 18:34,"238 2nd St, Atlanta, GA 30301" +285699,Lightning Charging Cable,1,14.95,11/16/19 07:44,"870 Jefferson St, Portland, OR 97035" +285700,Wired Headphones,1,11.99,11/07/19 17:51,"651 Hill St, Dallas, TX 75001" +285701,USB-C Charging Cable,1,11.95,11/25/19 09:07,"975 Highland St, Dallas, TX 75001" +285702,Lightning Charging Cable,1,14.95,11/09/19 07:47,"635 Highland St, New York City, NY 10001" +285703,Bose SoundSport Headphones,1,99.99,11/18/19 15:25,"741 12th St, Atlanta, GA 30301" +285704,20in Monitor,1,109.99,11/27/19 22:27,"873 Ridge St, Los Angeles, CA 90001" +285705,Lightning Charging Cable,1,14.95,11/24/19 07:30,"344 Spruce St, Seattle, WA 98101" +285706,ThinkPad Laptop,1,999.99,11/09/19 00:42,"948 Sunset St, New York City, NY 10001" +285707,AAA Batteries (4-pack),1,2.99,11/13/19 10:19,"530 Lakeview St, Seattle, WA 98101" +285708,Bose SoundSport Headphones,2,99.99,11/08/19 10:09,"859 9th St, Los Angeles, CA 90001" +285709,USB-C Charging Cable,1,11.95,11/21/19 21:44,"642 Lakeview St, Boston, MA 02215" +285710,iPhone,1,700,11/29/19 20:11,"477 North St, San Francisco, CA 94016" +285711,27in FHD Monitor,1,149.99,11/05/19 10:31,"884 9th St, Portland, OR 97035" +285712,Google Phone,1,600,11/24/19 13:02,"994 1st St, Portland, ME 04101" +285713,Apple Airpods Headphones,1,150,11/27/19 12:16,"952 Lincoln St, Seattle, WA 98101" +285714,AAA Batteries (4-pack),2,2.99,11/21/19 12:26,"473 4th St, Austin, TX 73301" +285715,Apple Airpods Headphones,1,150,11/23/19 20:40,"287 Lincoln St, New York City, NY 10001" +285716,AAA Batteries (4-pack),1,2.99,11/08/19 17:57,"135 Meadow St, San Francisco, CA 94016" +285717,Macbook Pro Laptop,1,1700,11/05/19 09:53,"833 Maple St, San Francisco, CA 94016" +285718,iPhone,1,700,11/30/19 10:58,"134 Johnson St, Dallas, TX 75001" +285718,Wired Headphones,1,11.99,11/30/19 10:58,"134 Johnson St, Dallas, TX 75001" +285719,AAA Batteries (4-pack),1,2.99,11/11/19 09:47,"59 Pine St, San Francisco, CA 94016" +285720,AA Batteries (4-pack),2,3.84,11/13/19 10:44,"99 14th St, Portland, OR 97035" +285721,Apple Airpods Headphones,1,150,11/29/19 16:49,"39 Lakeview St, Dallas, TX 75001" +285722,Wired Headphones,1,11.99,11/03/19 07:14,"240 13th St, Los Angeles, CA 90001" +285723,Wired Headphones,3,11.99,11/01/19 17:13,"214 West St, Atlanta, GA 30301" +285724,USB-C Charging Cable,1,11.95,11/30/19 18:19,"999 Center St, Boston, MA 02215" +285725,Macbook Pro Laptop,1,1700,11/17/19 23:45,"944 Jefferson St, New York City, NY 10001" +285726,AA Batteries (4-pack),1,3.84,11/02/19 09:01,"992 Cherry St, Seattle, WA 98101" +285727,USB-C Charging Cable,1,11.95,11/23/19 21:47,"648 Dogwood St, Boston, MA 02215" +285728,USB-C Charging Cable,1,11.95,11/09/19 20:13,"61 Elm St, Los Angeles, CA 90001" +285729,USB-C Charging Cable,2,11.95,11/09/19 00:43,"380 Church St, San Francisco, CA 94016" +285730,LG Washing Machine,1,600.0,11/09/19 23:11,"323 Park St, New York City, NY 10001" +285731,AAA Batteries (4-pack),1,2.99,11/22/19 13:18,"179 Cedar St, San Francisco, CA 94016" +285732,Apple Airpods Headphones,1,150,11/22/19 11:34,"509 Johnson St, New York City, NY 10001" +285733,Bose SoundSport Headphones,1,99.99,11/19/19 23:47,"802 Dogwood St, New York City, NY 10001" +285734,USB-C Charging Cable,1,11.95,11/15/19 06:22,"611 Elm St, Los Angeles, CA 90001" +285735,USB-C Charging Cable,1,11.95,11/23/19 21:07,"75 2nd St, Atlanta, GA 30301" +285736,20in Monitor,1,109.99,11/27/19 19:55,"696 Ridge St, San Francisco, CA 94016" +285737,USB-C Charging Cable,1,11.95,11/03/19 07:51,"779 Park St, Austin, TX 73301" +285738,Wired Headphones,1,11.99,11/12/19 18:07,"524 Pine St, Atlanta, GA 30301" +285739,Apple Airpods Headphones,1,150,11/07/19 09:29,"875 Ridge St, Dallas, TX 75001" +285740,Lightning Charging Cable,1,14.95,11/09/19 18:45,"232 Jefferson St, New York City, NY 10001" +285741,Wired Headphones,1,11.99,11/18/19 17:35,"69 Highland St, Portland, OR 97035" +285742,iPhone,1,700,11/04/19 07:12,"392 8th St, Los Angeles, CA 90001" +285742,AA Batteries (4-pack),1,3.84,11/04/19 07:12,"392 8th St, Los Angeles, CA 90001" +285743,iPhone,1,700,11/08/19 14:03,"100 Maple St, Los Angeles, CA 90001" +285743,Apple Airpods Headphones,1,150,11/08/19 14:03,"100 Maple St, Los Angeles, CA 90001" +285744,Wired Headphones,1,11.99,11/27/19 08:34,"954 Walnut St, Los Angeles, CA 90001" +285745,AAA Batteries (4-pack),1,2.99,11/07/19 13:57,"179 Jefferson St, San Francisco, CA 94016" +285746,AA Batteries (4-pack),1,3.84,11/09/19 12:36,"473 River St, Atlanta, GA 30301" +285747,USB-C Charging Cable,1,11.95,11/19/19 18:52,"371 Dogwood St, Dallas, TX 75001" +285748,AA Batteries (4-pack),1,3.84,11/01/19 13:37,"347 Ridge St, Boston, MA 02215" +285749,USB-C Charging Cable,1,11.95,11/13/19 17:46,"275 West St, Boston, MA 02215" +285750,27in FHD Monitor,1,149.99,11/11/19 21:57,"125 Highland St, San Francisco, CA 94016" +285751,Bose SoundSport Headphones,1,99.99,11/04/19 19:42,"114 Willow St, Seattle, WA 98101" +285752,AA Batteries (4-pack),1,3.84,11/06/19 21:11,"356 8th St, New York City, NY 10001" +285753,ThinkPad Laptop,1,999.99,11/09/19 19:40,"985 Hickory St, Dallas, TX 75001" +285754,AAA Batteries (4-pack),1,2.99,11/17/19 15:55,"644 Adams St, San Francisco, CA 94016" +285755,Google Phone,1,600,11/14/19 19:55,"207 Lakeview St, Dallas, TX 75001" +285756,Apple Airpods Headphones,1,150,11/28/19 13:27,"447 5th St, Dallas, TX 75001" +285757,Bose SoundSport Headphones,1,99.99,11/24/19 23:15,"688 Meadow St, New York City, NY 10001" +285758,AAA Batteries (4-pack),1,2.99,11/10/19 16:14,"623 14th St, Seattle, WA 98101" +285759,Lightning Charging Cable,1,14.95,11/12/19 14:42,"550 Highland St, San Francisco, CA 94016" +285760,USB-C Charging Cable,1,11.95,11/21/19 11:54,"176 Ridge St, San Francisco, CA 94016" +285761,Apple Airpods Headphones,1,150,11/02/19 14:39,"164 Maple St, New York City, NY 10001" +285762,Flatscreen TV,1,300,11/07/19 18:30,"150 Hill St, Seattle, WA 98101" +285763,AAA Batteries (4-pack),1,2.99,11/27/19 11:53,"102 9th St, San Francisco, CA 94016" +285764,27in FHD Monitor,1,149.99,11/23/19 10:51,"37 12th St, Dallas, TX 75001" +285765,Wired Headphones,1,11.99,11/26/19 19:56,"262 Dogwood St, Dallas, TX 75001" +285766,Flatscreen TV,1,300,11/10/19 00:13,"93 5th St, San Francisco, CA 94016" +285767,Apple Airpods Headphones,1,150,11/02/19 10:10,"756 Lakeview St, San Francisco, CA 94016" +285768,Bose SoundSport Headphones,1,99.99,11/21/19 11:55,"964 Cherry St, Dallas, TX 75001" +285769,27in 4K Gaming Monitor,1,389.99,11/07/19 19:05,"903 Hill St, New York City, NY 10001" +285770,Apple Airpods Headphones,1,150,11/18/19 11:50,"57 Willow St, Dallas, TX 75001" +285771,Bose SoundSport Headphones,1,99.99,11/14/19 13:28,"34 Park St, Los Angeles, CA 90001" +285772,Wired Headphones,1,11.99,11/01/19 09:31,"665 4th St, New York City, NY 10001" +285773,USB-C Charging Cable,1,11.95,11/09/19 11:31,"666 Hickory St, Dallas, TX 75001" +285774,AA Batteries (4-pack),1,3.84,11/04/19 16:38,"863 Johnson St, New York City, NY 10001" +285775,Flatscreen TV,1,300,11/12/19 09:11,"141 6th St, Portland, OR 97035" +285776,AAA Batteries (4-pack),1,2.99,11/05/19 11:16,"553 Adams St, San Francisco, CA 94016" +285777,USB-C Charging Cable,1,11.95,11/06/19 13:19,"52 Willow St, New York City, NY 10001" +285778,iPhone,1,700,11/17/19 21:52,"69 Center St, Seattle, WA 98101" +285779,USB-C Charging Cable,1,11.95,11/04/19 18:30,"224 11th St, San Francisco, CA 94016" +285780,Wired Headphones,1,11.99,11/15/19 22:04,"731 Madison St, New York City, NY 10001" +285781,Bose SoundSport Headphones,1,99.99,11/15/19 16:52,"427 Jefferson St, Austin, TX 73301" +285782,AA Batteries (4-pack),1,3.84,11/07/19 09:03,"282 South St, San Francisco, CA 94016" +285783,AA Batteries (4-pack),1,3.84,11/11/19 17:33,"879 Madison St, New York City, NY 10001" +285784,Wired Headphones,1,11.99,11/19/19 20:49,"809 Jackson St, San Francisco, CA 94016" +285785,27in FHD Monitor,1,149.99,11/25/19 16:29,"79 South St, Portland, OR 97035" +285786,AAA Batteries (4-pack),1,2.99,11/14/19 09:24,"286 Johnson St, San Francisco, CA 94016" +285787,ThinkPad Laptop,1,999.99,11/15/19 21:56,"898 13th St, San Francisco, CA 94016" +285788,ThinkPad Laptop,1,999.99,11/21/19 15:16,"50 10th St, Los Angeles, CA 90001" +285789,Wired Headphones,1,11.99,11/19/19 23:57,"885 Sunset St, Portland, OR 97035" +285790,USB-C Charging Cable,1,11.95,11/19/19 12:27,"616 13th St, Austin, TX 73301" +285791,Wired Headphones,1,11.99,11/08/19 09:58,"470 Wilson St, Dallas, TX 75001" +285792,USB-C Charging Cable,1,11.95,11/05/19 18:25,"318 Meadow St, Los Angeles, CA 90001" +285793,Macbook Pro Laptop,1,1700,11/13/19 13:11,"29 South St, New York City, NY 10001" +285794,USB-C Charging Cable,1,11.95,11/23/19 18:19,"717 Forest St, Los Angeles, CA 90001" +285795,Wired Headphones,1,11.99,11/27/19 00:38,"842 Cherry St, New York City, NY 10001" +285796,AAA Batteries (4-pack),2,2.99,11/06/19 12:26,"722 Wilson St, Austin, TX 73301" +285797,Bose SoundSport Headphones,1,99.99,11/29/19 16:04,"103 2nd St, Boston, MA 02215" +285798,Wired Headphones,1,11.99,11/06/19 10:09,"822 12th St, San Francisco, CA 94016" +285799,Apple Airpods Headphones,1,150,11/11/19 17:53,"731 5th St, San Francisco, CA 94016" +285800,Apple Airpods Headphones,1,150,11/01/19 20:46,"904 Jackson St, Los Angeles, CA 90001" +285801,Wired Headphones,1,11.99,11/27/19 17:29,"622 6th St, Los Angeles, CA 90001" +285802,AAA Batteries (4-pack),2,2.99,11/19/19 18:07,"631 Walnut St, Seattle, WA 98101" +285803,AA Batteries (4-pack),1,3.84,11/06/19 13:07,"746 6th St, Los Angeles, CA 90001" +285804,Lightning Charging Cable,1,14.95,11/30/19 15:07,"462 Madison St, Boston, MA 02215" +285805,USB-C Charging Cable,1,11.95,11/13/19 08:23,"249 River St, San Francisco, CA 94016" +285806,USB-C Charging Cable,1,11.95,11/10/19 21:53,"591 12th St, New York City, NY 10001" +285807,Lightning Charging Cable,1,14.95,11/15/19 09:15,"874 4th St, New York City, NY 10001" +285808,Bose SoundSport Headphones,1,99.99,11/21/19 21:03,"824 Dogwood St, San Francisco, CA 94016" +285809,Apple Airpods Headphones,1,150,11/21/19 20:06,"466 Spruce St, New York City, NY 10001" +285810,Lightning Charging Cable,1,14.95,11/22/19 11:07,"75 Ridge St, Los Angeles, CA 90001" +285811,AA Batteries (4-pack),1,3.84,11/07/19 18:11,"295 Washington St, Seattle, WA 98101" +285812,27in FHD Monitor,1,149.99,11/26/19 06:28,"888 Cherry St, Los Angeles, CA 90001" +285813,AA Batteries (4-pack),4,3.84,11/20/19 13:19,"813 Lincoln St, Portland, OR 97035" +285814,Google Phone,1,600,11/17/19 12:00,"768 Cedar St, Dallas, TX 75001" +285815,27in FHD Monitor,1,149.99,11/19/19 08:50,"863 11th St, Dallas, TX 75001" +285816,27in FHD Monitor,1,149.99,11/17/19 19:09,"661 Washington St, San Francisco, CA 94016" +285817,Lightning Charging Cable,1,14.95,11/07/19 15:59,"491 Hickory St, San Francisco, CA 94016" +285818,Lightning Charging Cable,1,14.95,11/17/19 19:26,"877 Maple St, San Francisco, CA 94016" +285819,27in FHD Monitor,1,149.99,11/21/19 14:37,"639 13th St, Boston, MA 02215" +285820,Apple Airpods Headphones,1,150,11/27/19 14:37,"617 Meadow St, Boston, MA 02215" +285821,AAA Batteries (4-pack),2,2.99,11/07/19 08:08,"574 Maple St, Boston, MA 02215" +285822,AA Batteries (4-pack),2,3.84,11/03/19 19:30,"117 Lincoln St, Atlanta, GA 30301" +285823,Wired Headphones,1,11.99,11/29/19 08:43,"392 Lakeview St, San Francisco, CA 94016" +285824,Google Phone,1,600,11/09/19 20:21,"951 Ridge St, Los Angeles, CA 90001" +285825,Google Phone,1,600,11/02/19 12:22,"102 5th St, Los Angeles, CA 90001" +285826,iPhone,1,700,11/21/19 15:21,"783 Walnut St, Seattle, WA 98101" +285827,AA Batteries (4-pack),3,3.84,11/12/19 14:15,"55 Jefferson St, Atlanta, GA 30301" +285828,Bose SoundSport Headphones,1,99.99,11/28/19 18:26,"43 North St, Boston, MA 02215" +285829,Lightning Charging Cable,1,14.95,11/01/19 06:57,"456 Lincoln St, Austin, TX 73301" +285830,Google Phone,1,600,11/15/19 23:37,"888 10th St, San Francisco, CA 94016" +285831,Lightning Charging Cable,1,14.95,11/13/19 15:32,"244 Forest St, Boston, MA 02215" +285832,USB-C Charging Cable,1,11.95,11/08/19 15:59,"836 Hill St, San Francisco, CA 94016" +285833,USB-C Charging Cable,1,11.95,11/30/19 17:45,"595 Jackson St, Portland, OR 97035" +285834,USB-C Charging Cable,2,11.95,11/09/19 20:10,"418 Adams St, Dallas, TX 75001" +285835,Lightning Charging Cable,1,14.95,11/23/19 09:23,"459 Johnson St, San Francisco, CA 94016" +285836,Wired Headphones,1,11.99,11/26/19 23:08,"607 Sunset St, Los Angeles, CA 90001" +285837,USB-C Charging Cable,1,11.95,11/20/19 13:57,"912 Jackson St, Los Angeles, CA 90001" +285838,Wired Headphones,1,11.99,11/26/19 19:59,"964 5th St, Atlanta, GA 30301" +285839,LG Washing Machine,1,600.0,11/12/19 23:14,"4 1st St, Atlanta, GA 30301" +285840,Wired Headphones,1,11.99,11/26/19 08:56,"674 2nd St, Seattle, WA 98101" +285841,27in 4K Gaming Monitor,1,389.99,11/01/19 15:35,"291 11th St, Atlanta, GA 30301" +285842,Vareebadd Phone,1,400,11/18/19 13:55,"112 Madison St, Dallas, TX 75001" +285843,27in FHD Monitor,1,149.99,11/15/19 10:05,"348 1st St, Atlanta, GA 30301" +285844,Macbook Pro Laptop,1,1700,11/16/19 19:12,"479 Elm St, San Francisco, CA 94016" +285845,Lightning Charging Cable,1,14.95,11/14/19 12:04,"663 Elm St, New York City, NY 10001" +285846,USB-C Charging Cable,1,11.95,11/27/19 16:12,"382 Spruce St, Austin, TX 73301" +285847,USB-C Charging Cable,1,11.95,11/22/19 10:58,"78 Cedar St, Portland, OR 97035" +285848,Apple Airpods Headphones,1,150,11/04/19 17:33,"579 Main St, New York City, NY 10001" +285849,AAA Batteries (4-pack),1,2.99,11/13/19 16:43,"94 Park St, Dallas, TX 75001" +285850,Bose SoundSport Headphones,1,99.99,11/02/19 23:05,"31 Pine St, San Francisco, CA 94016" +285851,AA Batteries (4-pack),1,3.84,11/03/19 08:36,"593 Church St, San Francisco, CA 94016" +285852,Google Phone,1,600,11/10/19 00:43,"963 Washington St, New York City, NY 10001" +285852,Bose SoundSport Headphones,1,99.99,11/10/19 00:43,"963 Washington St, New York City, NY 10001" +285853,USB-C Charging Cable,1,11.95,11/21/19 06:57,"719 Willow St, Portland, OR 97035" +285854,Wired Headphones,1,11.99,11/10/19 09:49,"149 North St, Los Angeles, CA 90001" +285855,USB-C Charging Cable,1,11.95,11/20/19 18:52,"561 Washington St, Austin, TX 73301" +285856,AAA Batteries (4-pack),1,2.99,11/20/19 08:30,"408 1st St, Austin, TX 73301" +285857,Apple Airpods Headphones,1,150,11/07/19 22:19,"965 Forest St, Portland, OR 97035" +285858,27in FHD Monitor,1,149.99,11/20/19 18:28,"143 Pine St, Seattle, WA 98101" +285859,Lightning Charging Cable,1,14.95,11/26/19 16:47,"840 4th St, Boston, MA 02215" +285860,ThinkPad Laptop,1,999.99,11/29/19 21:12,"452 Church St, Los Angeles, CA 90001" +285861,iPhone,1,700,11/10/19 21:12,"908 Center St, Portland, ME 04101" +285862,AA Batteries (4-pack),1,3.84,11/16/19 09:47,"963 Wilson St, San Francisco, CA 94016" +285863,Flatscreen TV,1,300,11/21/19 21:12,"733 Main St, San Francisco, CA 94016" +285864,Lightning Charging Cable,2,14.95,11/23/19 18:39,"862 Spruce St, Atlanta, GA 30301" +285865,Bose SoundSport Headphones,1,99.99,11/01/19 18:33,"987 Highland St, Boston, MA 02215" +285866,AA Batteries (4-pack),1,3.84,11/22/19 11:02,"163 Sunset St, San Francisco, CA 94016" +285867,Lightning Charging Cable,1,14.95,11/21/19 11:22,"431 Center St, San Francisco, CA 94016" +285868,27in FHD Monitor,1,149.99,11/22/19 23:19,"948 Hickory St, New York City, NY 10001" +285869,Apple Airpods Headphones,1,150,11/13/19 11:56,"255 Adams St, Boston, MA 02215" +285869,AA Batteries (4-pack),1,3.84,11/13/19 11:56,"255 Adams St, Boston, MA 02215" +285870,Apple Airpods Headphones,1,150,11/10/19 23:09,"841 South St, Los Angeles, CA 90001" +285871,Wired Headphones,1,11.99,11/25/19 10:46,"150 Lincoln St, San Francisco, CA 94016" +285872,AAA Batteries (4-pack),1,2.99,11/16/19 20:00,"99 Cherry St, San Francisco, CA 94016" +285873,AA Batteries (4-pack),1,3.84,11/01/19 09:23,"460 Forest St, Atlanta, GA 30301" +285874,AA Batteries (4-pack),1,3.84,11/05/19 16:47,"532 13th St, Los Angeles, CA 90001" +285875,Lightning Charging Cable,1,14.95,11/26/19 19:12,"173 Park St, San Francisco, CA 94016" +285876,USB-C Charging Cable,2,11.95,11/19/19 16:33,"535 Maple St, San Francisco, CA 94016" +285877,27in FHD Monitor,1,149.99,11/09/19 10:51,"832 Forest St, Seattle, WA 98101" +285878,Lightning Charging Cable,1,14.95,11/03/19 10:36,"587 13th St, Los Angeles, CA 90001" +285879,27in FHD Monitor,1,149.99,11/20/19 19:27,"286 12th St, Boston, MA 02215" +285880,20in Monitor,1,109.99,11/08/19 13:22,"938 Dogwood St, Portland, OR 97035" +285881,Apple Airpods Headphones,1,150,11/06/19 08:09,"660 11th St, Atlanta, GA 30301" +285882,USB-C Charging Cable,1,11.95,11/24/19 22:09,"136 Lakeview St, Los Angeles, CA 90001" +285883,USB-C Charging Cable,1,11.95,11/19/19 13:27,"510 10th St, Dallas, TX 75001" +285884,USB-C Charging Cable,1,11.95,11/11/19 18:50,"798 Lincoln St, New York City, NY 10001" +285885,Wired Headphones,2,11.99,11/14/19 13:36,"270 Johnson St, Seattle, WA 98101" +285886,34in Ultrawide Monitor,1,379.99,11/04/19 22:23,"98 Forest St, Boston, MA 02215" +285887,iPhone,1,700,11/08/19 16:55,"522 Lake St, Seattle, WA 98101" +285888,Lightning Charging Cable,1,14.95,11/21/19 19:01,"790 Willow St, San Francisco, CA 94016" +285889,AA Batteries (4-pack),1,3.84,11/24/19 09:41,"874 Walnut St, Portland, ME 04101" +285890,USB-C Charging Cable,2,11.95,11/20/19 19:09,"901 Meadow St, Los Angeles, CA 90001" +285891,Lightning Charging Cable,1,14.95,11/25/19 23:32,"162 7th St, Boston, MA 02215" +285892,Wired Headphones,1,11.99,11/07/19 14:14,"604 11th St, San Francisco, CA 94016" +285893,Google Phone,1,600,11/26/19 15:38,"463 1st St, Los Angeles, CA 90001" +285894,USB-C Charging Cable,1,11.95,11/21/19 14:25,"858 Park St, Portland, OR 97035" +285895,USB-C Charging Cable,1,11.95,11/02/19 09:55,"404 Hickory St, San Francisco, CA 94016" +285896,Lightning Charging Cable,1,14.95,11/28/19 18:54,"128 13th St, Los Angeles, CA 90001" +285897,27in 4K Gaming Monitor,1,389.99,11/29/19 04:37,"953 10th St, New York City, NY 10001" +285898,ThinkPad Laptop,1,999.99,11/25/19 16:14,"526 5th St, San Francisco, CA 94016" +285899,Apple Airpods Headphones,1,150,11/13/19 11:38,"179 South St, New York City, NY 10001" +285900,AAA Batteries (4-pack),2,2.99,11/09/19 14:00,"10 11th St, San Francisco, CA 94016" +285901,Lightning Charging Cable,1,14.95,11/29/19 15:11,"470 Highland St, New York City, NY 10001" +285902,Bose SoundSport Headphones,1,99.99,11/16/19 12:07,"353 Washington St, Los Angeles, CA 90001" +285903,Google Phone,1,600,11/11/19 17:25,"959 4th St, Dallas, TX 75001" +285904,Lightning Charging Cable,1,14.95,11/18/19 18:10,"434 West St, Boston, MA 02215" +285905,AA Batteries (4-pack),3,3.84,11/29/19 10:21,"541 River St, San Francisco, CA 94016" +285906,Bose SoundSport Headphones,1,99.99,11/18/19 18:57,"175 River St, San Francisco, CA 94016" +285907,Wired Headphones,1,11.99,11/06/19 08:16,"785 Sunset St, San Francisco, CA 94016" +285908,Apple Airpods Headphones,1,150,11/29/19 23:49,"285 4th St, New York City, NY 10001" +285909,Bose SoundSport Headphones,1,99.99,11/16/19 14:11,"986 6th St, Seattle, WA 98101" +285910,Lightning Charging Cable,1,14.95,11/03/19 16:25,"877 Church St, San Francisco, CA 94016" +285911,iPhone,1,700,11/22/19 09:15,"985 Cedar St, Portland, OR 97035" +285912,AAA Batteries (4-pack),1,2.99,11/10/19 21:10,"454 Church St, Los Angeles, CA 90001" +285913,Wired Headphones,1,11.99,11/13/19 15:17,"992 Maple St, Los Angeles, CA 90001" +285914,iPhone,1,700,11/16/19 13:05,"482 Lincoln St, Los Angeles, CA 90001" +285914,Wired Headphones,1,11.99,11/16/19 13:05,"482 Lincoln St, Los Angeles, CA 90001" +285915,AA Batteries (4-pack),1,3.84,11/08/19 13:13,"999 Cherry St, Dallas, TX 75001" +285916,Lightning Charging Cable,1,14.95,11/02/19 15:56,"57 Walnut St, San Francisco, CA 94016" +285917,AA Batteries (4-pack),1,3.84,11/19/19 12:13,"791 5th St, Atlanta, GA 30301" +285918,USB-C Charging Cable,1,11.95,11/15/19 08:45,"251 Sunset St, Atlanta, GA 30301" +285919,Wired Headphones,1,11.99,11/19/19 00:02,"244 Jackson St, San Francisco, CA 94016" +285920,Wired Headphones,1,11.99,11/15/19 13:58,"820 Hill St, Los Angeles, CA 90001" +285921,27in FHD Monitor,1,149.99,11/03/19 17:49,"48 Center St, Atlanta, GA 30301" +285922,USB-C Charging Cable,1,11.95,11/21/19 17:23,"404 South St, New York City, NY 10001" +285923,AAA Batteries (4-pack),1,2.99,11/14/19 11:42,"730 Lake St, Portland, ME 04101" +285924,Lightning Charging Cable,1,14.95,11/14/19 19:42,"456 Hill St, New York City, NY 10001" +285925,Lightning Charging Cable,1,14.95,11/27/19 12:47,"427 Dogwood St, Dallas, TX 75001" +285926,AA Batteries (4-pack),1,3.84,11/26/19 17:42,"798 West St, New York City, NY 10001" +285927,AA Batteries (4-pack),2,3.84,11/25/19 15:00,"133 Spruce St, Portland, OR 97035" +285928,AA Batteries (4-pack),1,3.84,11/13/19 18:50,"888 Pine St, Austin, TX 73301" +285929,Apple Airpods Headphones,1,150,11/09/19 08:42,"949 Madison St, Los Angeles, CA 90001" +285930,Apple Airpods Headphones,1,150,11/10/19 21:24,"48 Main St, Atlanta, GA 30301" +285931,AA Batteries (4-pack),1,3.84,11/09/19 07:55,"711 Adams St, San Francisco, CA 94016" +285932,Bose SoundSport Headphones,1,99.99,11/14/19 21:35,"947 Washington St, San Francisco, CA 94016" +285933,Lightning Charging Cable,1,14.95,11/22/19 21:47,"387 Chestnut St, Boston, MA 02215" +285934,AA Batteries (4-pack),2,3.84,11/09/19 16:19,"819 Jackson St, Austin, TX 73301" +285935,Lightning Charging Cable,1,14.95,11/29/19 10:02,"657 Jackson St, Atlanta, GA 30301" +285936,Bose SoundSport Headphones,1,99.99,11/17/19 19:00,"96 Lakeview St, San Francisco, CA 94016" +285937,USB-C Charging Cable,1,11.95,11/17/19 14:40,"380 11th St, San Francisco, CA 94016" +285938,USB-C Charging Cable,2,11.95,11/05/19 17:35,"956 5th St, Boston, MA 02215" +285939,Lightning Charging Cable,1,14.95,11/07/19 12:08,"825 12th St, Los Angeles, CA 90001" +285940,Bose SoundSport Headphones,1,99.99,11/07/19 01:06,"311 Park St, Los Angeles, CA 90001" +285941,20in Monitor,1,109.99,11/03/19 13:41,"167 1st St, New York City, NY 10001" +285942,27in FHD Monitor,1,149.99,11/11/19 10:40,"577 Cedar St, San Francisco, CA 94016" +,,,,, +285943,Wired Headphones,1,11.99,11/04/19 15:13,"719 Maple St, Los Angeles, CA 90001" +285944,AA Batteries (4-pack),1,3.84,11/11/19 15:23,"641 9th St, Boston, MA 02215" +285945,USB-C Charging Cable,1,11.95,11/25/19 02:47,"72 Church St, Austin, TX 73301" +285946,Lightning Charging Cable,1,14.95,11/10/19 20:14,"96 8th St, San Francisco, CA 94016" +285947,USB-C Charging Cable,1,11.95,11/18/19 10:06,"471 Adams St, Atlanta, GA 30301" +285948,Lightning Charging Cable,1,14.95,11/02/19 20:35,"351 Highland St, San Francisco, CA 94016" +285949,Lightning Charging Cable,1,14.95,11/25/19 13:17,"820 Main St, Boston, MA 02215" +285950,Apple Airpods Headphones,1,150,11/24/19 11:28,"268 Center St, Atlanta, GA 30301" +285951,AAA Batteries (4-pack),2,2.99,11/25/19 11:07,"581 Willow St, Los Angeles, CA 90001" +285952,AAA Batteries (4-pack),2,2.99,11/19/19 10:58,"576 Elm St, Dallas, TX 75001" +285953,Apple Airpods Headphones,1,150,11/04/19 09:22,"697 14th St, Austin, TX 73301" +285954,Flatscreen TV,1,300,11/08/19 09:15,"259 Spruce St, Portland, OR 97035" +285955,Lightning Charging Cable,1,14.95,11/01/19 21:54,"485 9th St, Dallas, TX 75001" +285956,34in Ultrawide Monitor,1,379.99,11/15/19 12:09,"326 6th St, Los Angeles, CA 90001" +285957,34in Ultrawide Monitor,1,379.99,11/21/19 20:00,"504 11th St, Austin, TX 73301" +285958,USB-C Charging Cable,1,11.95,11/23/19 10:27,"897 Elm St, San Francisco, CA 94016" +285959,27in 4K Gaming Monitor,1,389.99,11/17/19 13:59,"353 River St, Atlanta, GA 30301" +285960,Google Phone,1,600,11/04/19 14:37,"516 Walnut St, Los Angeles, CA 90001" +285960,USB-C Charging Cable,1,11.95,11/04/19 14:37,"516 Walnut St, Los Angeles, CA 90001" +285961,Lightning Charging Cable,1,14.95,11/18/19 14:34,"587 Lake St, Los Angeles, CA 90001" +285962,Bose SoundSport Headphones,1,99.99,11/30/19 23:50,"661 5th St, Seattle, WA 98101" +285963,Wired Headphones,1,11.99,11/25/19 03:41,"147 7th St, Atlanta, GA 30301" +285964,Bose SoundSport Headphones,1,99.99,11/02/19 13:11,"921 River St, San Francisco, CA 94016" +285965,AA Batteries (4-pack),3,3.84,11/23/19 14:48,"142 Pine St, Boston, MA 02215" +285966,AA Batteries (4-pack),2,3.84,11/12/19 10:40,"472 Spruce St, New York City, NY 10001" +285967,Apple Airpods Headphones,1,150,11/05/19 11:22,"862 Maple St, San Francisco, CA 94016" +285968,AAA Batteries (4-pack),2,2.99,11/13/19 13:57,"947 Lake St, Dallas, TX 75001" +285969,Macbook Pro Laptop,1,1700,11/01/19 18:22,"777 Chestnut St, San Francisco, CA 94016" +285970,27in 4K Gaming Monitor,1,389.99,11/02/19 12:42,"422 Walnut St, New York City, NY 10001" +285971,AA Batteries (4-pack),2,3.84,11/11/19 15:41,"836 1st St, Los Angeles, CA 90001" +285972,AAA Batteries (4-pack),1,2.99,11/05/19 22:48,"981 North St, Los Angeles, CA 90001" +285973,Wired Headphones,1,11.99,11/23/19 19:49,"370 Johnson St, Austin, TX 73301" +285974,Bose SoundSport Headphones,1,99.99,11/27/19 17:11,"904 Willow St, San Francisco, CA 94016" +285975,Apple Airpods Headphones,1,150,11/19/19 18:31,"670 Forest St, Los Angeles, CA 90001" +285976,Lightning Charging Cable,1,14.95,11/14/19 18:50,"901 Jackson St, New York City, NY 10001" +285977,Wired Headphones,1,11.99,11/24/19 11:03,"801 11th St, Austin, TX 73301" +285978,Google Phone,1,600,11/12/19 18:49,"358 Elm St, Portland, OR 97035" +285979,Apple Airpods Headphones,1,150,11/18/19 18:28,"870 Wilson St, Boston, MA 02215" +285980,Wired Headphones,1,11.99,11/04/19 23:15,"800 Pine St, New York City, NY 10001" +285980,AA Batteries (4-pack),1,3.84,11/04/19 23:15,"800 Pine St, New York City, NY 10001" +285981,ThinkPad Laptop,1,999.99,11/24/19 11:42,"192 Church St, Seattle, WA 98101" +285982,AA Batteries (4-pack),1,3.84,11/01/19 10:21,"142 Meadow St, Atlanta, GA 30301" +285983,Vareebadd Phone,1,400,11/05/19 23:20,"433 Adams St, New York City, NY 10001" +285984,Lightning Charging Cable,1,14.95,11/07/19 08:29,"121 Lincoln St, Los Angeles, CA 90001" +285985,ThinkPad Laptop,1,999.99,11/20/19 12:36,"266 Cedar St, Los Angeles, CA 90001" +285986,Lightning Charging Cable,1,14.95,11/04/19 23:18,"911 10th St, Seattle, WA 98101" +285987,27in 4K Gaming Monitor,1,389.99,11/18/19 14:50,"579 Lincoln St, New York City, NY 10001" +285988,AA Batteries (4-pack),1,3.84,11/16/19 11:57,"882 Jackson St, San Francisco, CA 94016" +285989,Bose SoundSport Headphones,1,99.99,11/20/19 19:33,"296 Park St, Seattle, WA 98101" +285990,Macbook Pro Laptop,1,1700,11/06/19 17:27,"528 Washington St, San Francisco, CA 94016" +285991,Lightning Charging Cable,1,14.95,11/11/19 22:05,"670 Wilson St, Boston, MA 02215" +285992,Flatscreen TV,1,300,11/30/19 21:48,"483 River St, San Francisco, CA 94016" +285993,USB-C Charging Cable,2,11.95,11/15/19 18:02,"970 13th St, New York City, NY 10001" +285994,Flatscreen TV,1,300,11/12/19 23:21,"193 Elm St, New York City, NY 10001" +285995,AAA Batteries (4-pack),1,2.99,11/16/19 21:10,"921 2nd St, Portland, OR 97035" +285996,AAA Batteries (4-pack),1,2.99,11/12/19 10:44,"760 Lakeview St, San Francisco, CA 94016" +285997,Vareebadd Phone,1,400,11/09/19 16:43,"999 Spruce St, San Francisco, CA 94016" +285998,AAA Batteries (4-pack),2,2.99,11/03/19 20:08,"609 Jefferson St, Portland, OR 97035" +285999,Bose SoundSport Headphones,1,99.99,11/15/19 23:25,"386 Park St, Portland, ME 04101" +286000,AAA Batteries (4-pack),1,2.99,11/07/19 11:17,"115 Madison St, Los Angeles, CA 90001" +286001,Apple Airpods Headphones,1,150,11/01/19 03:28,"694 Jefferson St, Portland, OR 97035" +286002,34in Ultrawide Monitor,1,379.99,11/01/19 13:01,"885 Wilson St, Austin, TX 73301" +286003,Lightning Charging Cable,1,14.95,11/18/19 11:11,"205 Elm St, Austin, TX 73301" +286004,Flatscreen TV,1,300,11/14/19 21:02,"283 Cherry St, Austin, TX 73301" +286005,ThinkPad Laptop,1,999.99,11/07/19 14:13,"451 9th St, Dallas, TX 75001" +286006,Apple Airpods Headphones,1,150,11/06/19 19:25,"872 Chestnut St, Los Angeles, CA 90001" +286007,Macbook Pro Laptop,1,1700,11/06/19 14:32,"278 Park St, Los Angeles, CA 90001" +286008,Bose SoundSport Headphones,1,99.99,11/21/19 17:39,"885 Forest St, San Francisco, CA 94016" +286009,ThinkPad Laptop,1,999.99,11/02/19 19:00,"831 6th St, San Francisco, CA 94016" +286010,27in FHD Monitor,1,149.99,11/07/19 13:57,"428 Willow St, New York City, NY 10001" +286011,27in FHD Monitor,1,149.99,11/23/19 15:50,"686 Cherry St, Portland, OR 97035" +286012,AA Batteries (4-pack),1,3.84,11/10/19 13:41,"15 8th St, Boston, MA 02215" +286013,USB-C Charging Cable,1,11.95,11/14/19 11:18,"189 Elm St, San Francisco, CA 94016" +286014,Bose SoundSport Headphones,1,99.99,11/04/19 02:35,"196 Center St, Boston, MA 02215" +286015,Apple Airpods Headphones,1,150,11/27/19 11:53,"301 Sunset St, Los Angeles, CA 90001" +286016,AAA Batteries (4-pack),3,2.99,11/02/19 20:19,"336 12th St, New York City, NY 10001" +286017,Lightning Charging Cable,1,14.95,11/04/19 14:17,"913 6th St, Austin, TX 73301" +286018,AA Batteries (4-pack),1,3.84,11/07/19 20:39,"19 14th St, Seattle, WA 98101" +286019,USB-C Charging Cable,1,11.95,11/18/19 14:20,"418 Wilson St, San Francisco, CA 94016" +286020,AAA Batteries (4-pack),1,2.99,11/17/19 20:54,"580 Johnson St, Atlanta, GA 30301" +286021,iPhone,1,700,11/02/19 14:59,"7 North St, Austin, TX 73301" +286022,LG Washing Machine,1,600.0,11/21/19 09:56,"381 Adams St, Atlanta, GA 30301" +286023,Lightning Charging Cable,1,14.95,11/15/19 20:36,"754 Lake St, Atlanta, GA 30301" +286024,27in FHD Monitor,1,149.99,11/07/19 18:57,"613 Park St, Boston, MA 02215" +286025,27in 4K Gaming Monitor,1,389.99,11/03/19 20:28,"283 1st St, Atlanta, GA 30301" +286026,Apple Airpods Headphones,1,150,11/05/19 18:39,"471 Forest St, San Francisco, CA 94016" +286027,iPhone,1,700,11/24/19 04:30,"886 Pine St, Atlanta, GA 30301" +286027,Apple Airpods Headphones,1,150,11/24/19 04:30,"886 Pine St, Atlanta, GA 30301" +286027,Wired Headphones,1,11.99,11/24/19 04:30,"886 Pine St, Atlanta, GA 30301" +286028,AAA Batteries (4-pack),2,2.99,11/07/19 10:50,"21 Willow St, Los Angeles, CA 90001" +286029,AAA Batteries (4-pack),1,2.99,11/12/19 13:13,"146 Forest St, Portland, OR 97035" +286030,USB-C Charging Cable,1,11.95,11/06/19 14:54,"234 Wilson St, Los Angeles, CA 90001" +286031,USB-C Charging Cable,1,11.95,11/27/19 22:25,"749 Elm St, San Francisco, CA 94016" +286032,USB-C Charging Cable,1,11.95,11/19/19 13:39,"657 Cherry St, New York City, NY 10001" +286033,USB-C Charging Cable,1,11.95,11/16/19 10:42,"120 Elm St, Los Angeles, CA 90001" +286034,AAA Batteries (4-pack),2,2.99,11/25/19 01:20,"29 Madison St, Portland, OR 97035" +286035,Wired Headphones,1,11.99,11/16/19 18:48,"624 Spruce St, Dallas, TX 75001" +286036,Lightning Charging Cable,1,14.95,11/04/19 13:00,"40 13th St, Dallas, TX 75001" +286037,27in 4K Gaming Monitor,1,389.99,11/23/19 00:14,"882 Highland St, San Francisco, CA 94016" +286038,AA Batteries (4-pack),1,3.84,11/17/19 22:49,"572 1st St, San Francisco, CA 94016" +286039,USB-C Charging Cable,1,11.95,11/12/19 16:31,"928 Willow St, Dallas, TX 75001" +286040,20in Monitor,1,109.99,11/14/19 05:07,"452 Spruce St, Boston, MA 02215" +286041,AAA Batteries (4-pack),1,2.99,11/21/19 11:51,"311 Johnson St, Los Angeles, CA 90001" +286042,Flatscreen TV,1,300,11/29/19 17:30,"906 Sunset St, Seattle, WA 98101" +286043,Apple Airpods Headphones,1,150,11/11/19 11:27,"223 Forest St, New York City, NY 10001" +286044,Apple Airpods Headphones,1,150,11/25/19 11:12,"360 2nd St, Los Angeles, CA 90001" +286045,USB-C Charging Cable,1,11.95,11/14/19 10:37,"188 Main St, New York City, NY 10001" +286046,Apple Airpods Headphones,1,150,11/08/19 23:26,"369 5th St, Dallas, TX 75001" +286047,Apple Airpods Headphones,1,150,11/18/19 08:01,"813 Chestnut St, Dallas, TX 75001" +286048,27in 4K Gaming Monitor,1,389.99,11/07/19 11:12,"192 Chestnut St, New York City, NY 10001" +286049,Google Phone,1,600,11/01/19 10:59,"633 4th St, New York City, NY 10001" +286050,Apple Airpods Headphones,1,150,11/04/19 15:53,"325 Forest St, Seattle, WA 98101" +286051,AAA Batteries (4-pack),1,2.99,11/26/19 14:24,"593 Church St, San Francisco, CA 94016" +286052,Bose SoundSport Headphones,2,99.99,11/28/19 21:38,"888 Elm St, Atlanta, GA 30301" +286053,Apple Airpods Headphones,1,150,11/01/19 15:25,"949 Sunset St, Dallas, TX 75001" +286054,AA Batteries (4-pack),1,3.84,11/16/19 16:30,"323 13th St, San Francisco, CA 94016" +286055,AA Batteries (4-pack),2,3.84,11/03/19 11:19,"782 Maple St, Dallas, TX 75001" +286056,AAA Batteries (4-pack),1,2.99,11/05/19 10:10,"39 Dogwood St, Atlanta, GA 30301" +286057,AA Batteries (4-pack),1,3.84,11/17/19 13:51,"947 Hickory St, Atlanta, GA 30301" +286058,AA Batteries (4-pack),2,3.84,11/01/19 23:45,"142 Ridge St, Los Angeles, CA 90001" +286059,Bose SoundSport Headphones,1,99.99,11/05/19 12:01,"355 14th St, Dallas, TX 75001" +286060,Lightning Charging Cable,1,14.95,11/04/19 13:50,"298 Cherry St, Boston, MA 02215" +286061,20in Monitor,1,109.99,11/02/19 19:25,"147 Walnut St, Portland, OR 97035" +286062,USB-C Charging Cable,1,11.95,11/23/19 18:42,"747 Madison St, San Francisco, CA 94016" +286063,AAA Batteries (4-pack),1,2.99,11/15/19 08:04,"664 8th St, Los Angeles, CA 90001" +286064,34in Ultrawide Monitor,1,379.99,11/28/19 19:59,"219 Hill St, Dallas, TX 75001" +286065,34in Ultrawide Monitor,1,379.99,11/26/19 00:32,"155 South St, New York City, NY 10001" +286066,USB-C Charging Cable,1,11.95,11/14/19 19:04,"218 Chestnut St, San Francisco, CA 94016" +286067,20in Monitor,1,109.99,11/10/19 10:29,"69 Maple St, Portland, ME 04101" +286068,Lightning Charging Cable,1,14.95,11/28/19 20:10,"71 Willow St, Boston, MA 02215" +286069,Flatscreen TV,1,300,11/02/19 09:59,"821 Walnut St, Portland, OR 97035" +286070,AAA Batteries (4-pack),1,2.99,11/24/19 20:20,"901 Spruce St, San Francisco, CA 94016" +286071,27in FHD Monitor,1,149.99,11/12/19 09:40,"775 Park St, Los Angeles, CA 90001" +286072,20in Monitor,1,109.99,11/29/19 19:52,"182 Walnut St, Dallas, TX 75001" +286073,iPhone,1,700,11/10/19 13:26,"885 Spruce St, San Francisco, CA 94016" +286073,Lightning Charging Cable,1,14.95,11/10/19 13:26,"885 Spruce St, San Francisco, CA 94016" +286074,Lightning Charging Cable,1,14.95,11/11/19 15:14,"501 Church St, Los Angeles, CA 90001" +286075,AA Batteries (4-pack),1,3.84,11/27/19 22:30,"316 Main St, San Francisco, CA 94016" +286076,AA Batteries (4-pack),1,3.84,11/11/19 19:45,"929 4th St, Los Angeles, CA 90001" +286077,Wired Headphones,1,11.99,11/23/19 21:09,"497 14th St, New York City, NY 10001" +286078,AAA Batteries (4-pack),1,2.99,11/10/19 17:03,"549 Johnson St, Portland, OR 97035" +286079,AA Batteries (4-pack),1,3.84,11/14/19 12:29,"424 Lake St, Los Angeles, CA 90001" +286080,Vareebadd Phone,1,400,11/15/19 03:32,"898 Highland St, Los Angeles, CA 90001" +286080,USB-C Charging Cable,1,11.95,11/15/19 03:32,"898 Highland St, Los Angeles, CA 90001" +286081,AA Batteries (4-pack),1,3.84,11/27/19 13:46,"676 Park St, San Francisco, CA 94016" +286082,AAA Batteries (4-pack),1,2.99,11/12/19 08:43,"964 North St, Austin, TX 73301" +286083,Bose SoundSport Headphones,1,99.99,11/19/19 18:25,"623 Lake St, San Francisco, CA 94016" +286084,USB-C Charging Cable,1,11.95,11/17/19 10:59,"966 Sunset St, New York City, NY 10001" +286085,iPhone,1,700,11/17/19 20:05,"485 14th St, New York City, NY 10001" +286086,Bose SoundSport Headphones,1,99.99,11/08/19 09:33,"24 River St, Boston, MA 02215" +286087,AA Batteries (4-pack),3,3.84,11/30/19 21:45,"342 Maple St, San Francisco, CA 94016" +286088,iPhone,1,700,11/09/19 15:17,"182 Church St, San Francisco, CA 94016" +286088,Apple Airpods Headphones,1,150,11/09/19 15:17,"182 Church St, San Francisco, CA 94016" +286089,Macbook Pro Laptop,1,1700,11/09/19 08:28,"962 1st St, Seattle, WA 98101" +286090,27in 4K Gaming Monitor,1,389.99,11/23/19 06:07,"269 Wilson St, Dallas, TX 75001" +286091,AA Batteries (4-pack),1,3.84,11/25/19 22:23,"682 Jefferson St, San Francisco, CA 94016" +286091,Bose SoundSport Headphones,1,99.99,11/25/19 22:23,"682 Jefferson St, San Francisco, CA 94016" +286092,USB-C Charging Cable,1,11.95,11/11/19 06:55,"383 Sunset St, New York City, NY 10001" +286093,Wired Headphones,1,11.99,11/12/19 00:09,"440 9th St, San Francisco, CA 94016" +286094,Apple Airpods Headphones,1,150,11/24/19 13:39,"237 5th St, Seattle, WA 98101" +286095,Apple Airpods Headphones,1,150,11/17/19 23:50,"712 Main St, San Francisco, CA 94016" +286096,AA Batteries (4-pack),2,3.84,11/12/19 17:48,"288 Park St, Boston, MA 02215" +286097,AAA Batteries (4-pack),1,2.99,11/12/19 18:45,"233 9th St, Atlanta, GA 30301" +286098,AAA Batteries (4-pack),1,2.99,11/02/19 11:19,"138 Center St, Boston, MA 02215" +286099,USB-C Charging Cable,1,11.95,11/11/19 21:21,"394 Park St, Portland, OR 97035" +286100,AAA Batteries (4-pack),1,2.99,11/23/19 22:23,"775 West St, Austin, TX 73301" +286101,Flatscreen TV,1,300,11/12/19 21:06,"55 Chestnut St, Austin, TX 73301" +286102,34in Ultrawide Monitor,1,379.99,11/03/19 22:08,"401 Hill St, New York City, NY 10001" +286103,iPhone,1,700,11/15/19 13:13,"217 Adams St, San Francisco, CA 94016" +286103,Lightning Charging Cable,1,14.95,11/15/19 13:13,"217 Adams St, San Francisco, CA 94016" +286103,Apple Airpods Headphones,1,150,11/15/19 13:13,"217 Adams St, San Francisco, CA 94016" +286104,USB-C Charging Cable,1,11.95,11/23/19 11:32,"942 Sunset St, Portland, OR 97035" +286105,AAA Batteries (4-pack),2,2.99,11/15/19 16:40,"531 Washington St, San Francisco, CA 94016" +286106,AA Batteries (4-pack),1,3.84,11/18/19 14:39,"385 Church St, Seattle, WA 98101" +286107,34in Ultrawide Monitor,1,379.99,11/14/19 13:52,"480 Chestnut St, San Francisco, CA 94016" +286108,AAA Batteries (4-pack),2,2.99,11/19/19 10:50,"823 6th St, Portland, OR 97035" +286109,AA Batteries (4-pack),1,3.84,11/20/19 17:21,"152 Cedar St, San Francisco, CA 94016" +286110,AAA Batteries (4-pack),2,2.99,11/06/19 19:20,"334 Maple St, Atlanta, GA 30301" +286111,AAA Batteries (4-pack),1,2.99,11/23/19 12:08,"987 8th St, Austin, TX 73301" +286112,Google Phone,1,600,11/11/19 17:12,"276 Dogwood St, Los Angeles, CA 90001" +286113,Apple Airpods Headphones,1,150,11/25/19 09:46,"33 Adams St, Portland, OR 97035" +286114,27in 4K Gaming Monitor,1,389.99,11/30/19 17:52,"524 4th St, Seattle, WA 98101" +286115,34in Ultrawide Monitor,1,379.99,11/14/19 01:07,"959 5th St, Los Angeles, CA 90001" +286116,34in Ultrawide Monitor,1,379.99,11/19/19 21:52,"119 River St, San Francisco, CA 94016" +286117,AAA Batteries (4-pack),1,2.99,11/10/19 11:10,"596 9th St, Boston, MA 02215" +286118,Wired Headphones,1,11.99,11/07/19 12:51,"600 9th St, Portland, OR 97035" +286119,Wired Headphones,1,11.99,11/27/19 09:11,"249 9th St, Atlanta, GA 30301" +286120,Wired Headphones,1,11.99,11/09/19 09:59,"453 Spruce St, New York City, NY 10001" +286121,Wired Headphones,2,11.99,11/06/19 22:49,"600 Chestnut St, New York City, NY 10001" +286122,USB-C Charging Cable,1,11.95,11/25/19 07:31,"87 Center St, San Francisco, CA 94016" +286123,AA Batteries (4-pack),1,3.84,11/13/19 08:05,"265 2nd St, Dallas, TX 75001" +286124,USB-C Charging Cable,1,11.95,11/14/19 19:31,"354 Highland St, San Francisco, CA 94016" +286125,Lightning Charging Cable,1,14.95,11/10/19 07:36,"513 Hickory St, New York City, NY 10001" +286126,Lightning Charging Cable,1,14.95,11/28/19 13:05,"769 Pine St, Portland, ME 04101" +286127,Lightning Charging Cable,1,14.95,11/07/19 16:09,"150 River St, Los Angeles, CA 90001" +286128,USB-C Charging Cable,1,11.95,11/16/19 15:08,"939 Cedar St, Los Angeles, CA 90001" +286129,Macbook Pro Laptop,1,1700,11/28/19 18:41,"446 13th St, Seattle, WA 98101" +286129,AAA Batteries (4-pack),1,2.99,11/28/19 18:41,"446 13th St, Seattle, WA 98101" +286130,AAA Batteries (4-pack),1,2.99,11/08/19 12:38,"68 Ridge St, Los Angeles, CA 90001" +286131,Google Phone,1,600,11/08/19 13:21,"884 Sunset St, San Francisco, CA 94016" +286132,AAA Batteries (4-pack),4,2.99,11/11/19 13:08,"21 Wilson St, Dallas, TX 75001" +286133,Wired Headphones,1,11.99,11/29/19 12:27,"977 Park St, New York City, NY 10001" +286134,Flatscreen TV,1,300,11/22/19 08:02,"984 Willow St, San Francisco, CA 94016" +286135,Apple Airpods Headphones,1,150,11/15/19 16:21,"789 Wilson St, Los Angeles, CA 90001" +286136,34in Ultrawide Monitor,1,379.99,11/25/19 00:53,"653 Jackson St, San Francisco, CA 94016" +286137,Lightning Charging Cable,1,14.95,11/11/19 09:31,"263 10th St, Los Angeles, CA 90001" +286138,34in Ultrawide Monitor,1,379.99,11/07/19 22:02,"349 14th St, Boston, MA 02215" +286139,Bose SoundSport Headphones,1,99.99,11/30/19 11:27,"634 Wilson St, Los Angeles, CA 90001" +286140,Flatscreen TV,1,300,11/02/19 12:21,"927 Maple St, Seattle, WA 98101" +286141,Lightning Charging Cable,1,14.95,11/23/19 14:02,"736 Chestnut St, San Francisco, CA 94016" +286142,USB-C Charging Cable,1,11.95,11/28/19 14:33,"837 Ridge St, San Francisco, CA 94016" +286143,Lightning Charging Cable,1,14.95,11/07/19 14:31,"532 Maple St, Portland, ME 04101" +,,,,, +286144,AA Batteries (4-pack),2,3.84,11/03/19 09:12,"832 Lincoln St, Dallas, TX 75001" +286145,AA Batteries (4-pack),2,3.84,11/29/19 08:06,"541 4th St, San Francisco, CA 94016" +286146,AAA Batteries (4-pack),3,2.99,11/08/19 16:49,"419 Church St, Los Angeles, CA 90001" +286147,Bose SoundSport Headphones,1,99.99,11/17/19 18:53,"208 Lakeview St, Los Angeles, CA 90001" +286148,Wired Headphones,1,11.99,11/13/19 09:26,"925 13th St, San Francisco, CA 94016" +286149,AA Batteries (4-pack),1,3.84,11/16/19 13:31,"315 Adams St, Dallas, TX 75001" +286150,34in Ultrawide Monitor,1,379.99,11/28/19 10:20,"807 2nd St, San Francisco, CA 94016" +286151,AAA Batteries (4-pack),1,2.99,11/03/19 13:25,"577 Dogwood St, San Francisco, CA 94016" +286152,USB-C Charging Cable,1,11.95,11/18/19 15:12,"485 10th St, Los Angeles, CA 90001" +286153,27in FHD Monitor,1,149.99,11/27/19 16:41,"127 Adams St, New York City, NY 10001" +286154,AA Batteries (4-pack),2,3.84,11/06/19 11:59,"998 Elm St, New York City, NY 10001" +286155,AAA Batteries (4-pack),1,2.99,11/17/19 09:10,"490 Hill St, San Francisco, CA 94016" +286156,AAA Batteries (4-pack),1,2.99,11/28/19 18:52,"365 Cherry St, New York City, NY 10001" +286157,Apple Airpods Headphones,1,150,11/26/19 18:40,"105 13th St, Los Angeles, CA 90001" +286158,Flatscreen TV,1,300,11/07/19 22:34,"895 Pine St, Los Angeles, CA 90001" +286159,USB-C Charging Cable,1,11.95,11/11/19 22:55,"562 Elm St, Atlanta, GA 30301" +286160,Apple Airpods Headphones,1,150,11/27/19 22:38,"460 8th St, Seattle, WA 98101" +286161,27in FHD Monitor,1,149.99,11/28/19 14:04,"394 Washington St, Atlanta, GA 30301" +286162,Apple Airpods Headphones,1,150,11/22/19 19:37,"740 Jackson St, San Francisco, CA 94016" +286163,AAA Batteries (4-pack),1,2.99,11/28/19 11:57,"901 Lake St, Seattle, WA 98101" +286164,USB-C Charging Cable,1,11.95,11/12/19 17:22,"325 Park St, Los Angeles, CA 90001" +286165,AAA Batteries (4-pack),2,2.99,11/01/19 13:19,"655 Cherry St, Dallas, TX 75001" +286166,Flatscreen TV,1,300,11/29/19 14:57,"903 6th St, New York City, NY 10001" +286167,Wired Headphones,1,11.99,11/12/19 12:31,"20 Church St, New York City, NY 10001" +286168,Lightning Charging Cable,1,14.95,11/25/19 10:52,"802 Elm St, San Francisco, CA 94016" +286169,Lightning Charging Cable,1,14.95,11/06/19 21:42,"533 Wilson St, San Francisco, CA 94016" +286170,USB-C Charging Cable,1,11.95,11/13/19 12:38,"423 Ridge St, New York City, NY 10001" +286171,USB-C Charging Cable,1,11.95,11/08/19 19:20,"535 Jackson St, New York City, NY 10001" +286172,AA Batteries (4-pack),1,3.84,11/27/19 10:55,"167 14th St, New York City, NY 10001" +286173,Wired Headphones,1,11.99,11/24/19 17:05,"756 Lakeview St, San Francisco, CA 94016" +286174,Google Phone,1,600,11/18/19 12:07,"886 River St, Atlanta, GA 30301" +286174,Bose SoundSport Headphones,1,99.99,11/18/19 12:07,"886 River St, Atlanta, GA 30301" +286174,Wired Headphones,1,11.99,11/18/19 12:07,"886 River St, Atlanta, GA 30301" +286175,AA Batteries (4-pack),4,3.84,11/26/19 20:26,"389 Johnson St, Seattle, WA 98101" +286176,Lightning Charging Cable,1,14.95,11/11/19 19:56,"911 Sunset St, Boston, MA 02215" +286177,AA Batteries (4-pack),1,3.84,11/06/19 06:25,"10 Main St, San Francisco, CA 94016" +286178,Wired Headphones,2,11.99,11/12/19 21:43,"844 Forest St, Dallas, TX 75001" +286179,AAA Batteries (4-pack),1,2.99,11/17/19 18:46,"169 6th St, Boston, MA 02215" +286180,Vareebadd Phone,1,400,11/12/19 22:51,"676 Lake St, Seattle, WA 98101" +286181,Google Phone,1,600,11/17/19 11:53,"949 8th St, San Francisco, CA 94016" +286182,Lightning Charging Cable,1,14.95,11/19/19 09:22,"291 Jackson St, Atlanta, GA 30301" +286183,Apple Airpods Headphones,1,150,11/18/19 19:53,"829 Johnson St, Atlanta, GA 30301" +286184,Apple Airpods Headphones,1,150,11/09/19 16:08,"279 14th St, San Francisco, CA 94016" +286185,Wired Headphones,1,11.99,11/05/19 17:54,"278 11th St, Atlanta, GA 30301" +286186,34in Ultrawide Monitor,1,379.99,11/11/19 09:53,"968 2nd St, Boston, MA 02215" +286187,Lightning Charging Cable,1,14.95,11/24/19 10:03,"197 Main St, San Francisco, CA 94016" +286188,AA Batteries (4-pack),1,3.84,11/12/19 18:29,"184 4th St, Los Angeles, CA 90001" +286189,AA Batteries (4-pack),1,3.84,11/23/19 18:25,"971 8th St, San Francisco, CA 94016" +286190,27in FHD Monitor,1,149.99,11/19/19 13:39,"132 Church St, Atlanta, GA 30301" +286191,34in Ultrawide Monitor,1,379.99,11/07/19 22:29,"477 Sunset St, San Francisco, CA 94016" +286192,27in 4K Gaming Monitor,1,389.99,11/14/19 10:14,"150 Lakeview St, New York City, NY 10001" +286193,Lightning Charging Cable,1,14.95,11/08/19 13:03,"294 South St, New York City, NY 10001" +286194,Lightning Charging Cable,1,14.95,11/01/19 09:19,"470 Jefferson St, Dallas, TX 75001" +286195,Lightning Charging Cable,1,14.95,11/05/19 13:37,"702 10th St, Dallas, TX 75001" +286196,AA Batteries (4-pack),1,3.84,11/24/19 20:14,"634 Madison St, New York City, NY 10001" +286197,Lightning Charging Cable,1,14.95,11/19/19 19:32,"443 Hickory St, San Francisco, CA 94016" +286198,AAA Batteries (4-pack),1,2.99,11/01/19 17:06,"945 14th St, San Francisco, CA 94016" +286199,Lightning Charging Cable,1,14.95,11/07/19 20:29,"325 14th St, Los Angeles, CA 90001" +286200,AA Batteries (4-pack),4,3.84,11/01/19 22:21,"586 7th St, San Francisco, CA 94016" +286201,Wired Headphones,1,11.99,11/03/19 16:08,"949 Sunset St, San Francisco, CA 94016" +286202,Apple Airpods Headphones,1,150,11/24/19 16:30,"688 Lakeview St, New York City, NY 10001" +286203,Lightning Charging Cable,1,14.95,11/07/19 16:17,"274 5th St, New York City, NY 10001" +286204,Macbook Pro Laptop,1,1700,11/28/19 10:07,"368 Main St, Boston, MA 02215" +286205,Lightning Charging Cable,1,14.95,11/26/19 07:44,"870 Madison St, Dallas, TX 75001" +286206,27in FHD Monitor,1,149.99,11/26/19 15:45,"14 Cherry St, Los Angeles, CA 90001" +286207,Bose SoundSport Headphones,1,99.99,11/07/19 21:13,"706 Madison St, Los Angeles, CA 90001" +286208,27in FHD Monitor,1,149.99,11/09/19 17:27,"736 Hill St, Atlanta, GA 30301" +286209,AAA Batteries (4-pack),4,2.99,11/04/19 15:37,"361 Park St, Boston, MA 02215" +286210,Vareebadd Phone,1,400,11/11/19 11:50,"321 4th St, Atlanta, GA 30301" +286211,Google Phone,1,600,11/26/19 18:26,"151 Park St, Austin, TX 73301" +286212,Bose SoundSport Headphones,1,99.99,11/20/19 17:04,"232 Lakeview St, New York City, NY 10001" +286213,AA Batteries (4-pack),1,3.84,11/12/19 19:08,"758 Walnut St, San Francisco, CA 94016" +286214,AA Batteries (4-pack),2,3.84,11/09/19 08:50,"636 Meadow St, Boston, MA 02215" +286215,Lightning Charging Cable,1,14.95,11/23/19 23:03,"187 Meadow St, San Francisco, CA 94016" +286216,USB-C Charging Cable,1,11.95,11/05/19 19:58,"830 Lakeview St, San Francisco, CA 94016" +286217,Macbook Pro Laptop,1,1700,11/29/19 15:06,"468 Main St, Portland, OR 97035" +286218,Apple Airpods Headphones,1,150,11/05/19 17:14,"325 14th St, Seattle, WA 98101" +286219,Bose SoundSport Headphones,1,99.99,11/17/19 13:58,"507 Johnson St, Atlanta, GA 30301" +286220,AAA Batteries (4-pack),1,2.99,11/07/19 09:04,"731 Madison St, San Francisco, CA 94016" +286221,AAA Batteries (4-pack),1,2.99,11/26/19 10:51,"304 Johnson St, San Francisco, CA 94016" +286222,Lightning Charging Cable,1,14.95,11/28/19 12:52,"960 Jefferson St, Los Angeles, CA 90001" +286223,AAA Batteries (4-pack),1,2.99,11/26/19 21:05,"34 Center St, Portland, OR 97035" +286224,Wired Headphones,1,11.99,11/24/19 13:11,"109 Walnut St, Portland, OR 97035" +286225,AA Batteries (4-pack),3,3.84,11/23/19 11:44,"950 4th St, Seattle, WA 98101" +286226,Lightning Charging Cable,1,14.95,11/29/19 00:22,"312 Pine St, New York City, NY 10001" +286227,AA Batteries (4-pack),1,3.84,11/13/19 20:33,"180 Walnut St, Austin, TX 73301" +286228,ThinkPad Laptop,1,999.99,11/02/19 08:45,"125 9th St, Boston, MA 02215" +286229,ThinkPad Laptop,1,999.99,11/07/19 12:35,"675 Washington St, San Francisco, CA 94016" +286230,Apple Airpods Headphones,1,150,11/30/19 13:41,"51 North St, Portland, OR 97035" +286231,AA Batteries (4-pack),3,3.84,11/21/19 18:48,"282 10th St, Los Angeles, CA 90001" +286232,USB-C Charging Cable,1,11.95,11/30/19 22:36,"81 Ridge St, New York City, NY 10001" +286232,iPhone,1,700,11/30/19 22:36,"81 Ridge St, New York City, NY 10001" +286233,27in 4K Gaming Monitor,1,389.99,11/21/19 17:14,"859 Lake St, New York City, NY 10001" +286234,USB-C Charging Cable,1,11.95,11/14/19 21:01,"705 Willow St, Atlanta, GA 30301" +286235,Bose SoundSport Headphones,1,99.99,11/24/19 00:10,"918 4th St, San Francisco, CA 94016" +286236,Apple Airpods Headphones,1,150,11/05/19 13:48,"422 Lincoln St, Austin, TX 73301" +286237,Macbook Pro Laptop,1,1700,11/12/19 11:13,"893 Jackson St, Los Angeles, CA 90001" +286238,Google Phone,1,600,11/19/19 19:24,"856 Washington St, Dallas, TX 75001" +286238,USB-C Charging Cable,1,11.95,11/19/19 19:24,"856 Washington St, Dallas, TX 75001" +286239,27in FHD Monitor,1,149.99,11/16/19 00:51,"866 Elm St, San Francisco, CA 94016" +286240,Bose SoundSport Headphones,1,99.99,11/29/19 10:02,"249 Cherry St, San Francisco, CA 94016" +286241,Flatscreen TV,1,300,11/23/19 13:39,"740 Elm St, Los Angeles, CA 90001" +286242,Lightning Charging Cable,1,14.95,11/04/19 14:01,"930 Cherry St, Austin, TX 73301" +286243,Wired Headphones,1,11.99,11/28/19 18:08,"709 8th St, Boston, MA 02215" +286244,Lightning Charging Cable,1,14.95,11/07/19 15:37,"622 Lake St, Los Angeles, CA 90001" +286245,AAA Batteries (4-pack),1,2.99,11/14/19 09:43,"715 1st St, Atlanta, GA 30301" +286246,Bose SoundSport Headphones,1,99.99,11/30/19 16:43,"578 12th St, Los Angeles, CA 90001" +286247,Lightning Charging Cable,1,14.95,11/04/19 07:58,"844 Washington St, New York City, NY 10001" +286248,AA Batteries (4-pack),2,3.84,11/11/19 21:36,"376 8th St, Atlanta, GA 30301" +286249,Lightning Charging Cable,1,14.95,11/20/19 17:37,"623 Highland St, Los Angeles, CA 90001" +286250,USB-C Charging Cable,2,11.95,11/03/19 18:19,"596 Meadow St, San Francisco, CA 94016" +286251,Apple Airpods Headphones,1,150,11/05/19 15:17,"58 4th St, Los Angeles, CA 90001" +286252,27in 4K Gaming Monitor,1,389.99,11/12/19 12:57,"579 Ridge St, Atlanta, GA 30301" +286253,Apple Airpods Headphones,1,150,11/18/19 14:39,"445 12th St, New York City, NY 10001" +286254,34in Ultrawide Monitor,1,379.99,11/07/19 10:52,"887 Johnson St, Los Angeles, CA 90001" +286255,20in Monitor,1,109.99,11/09/19 13:17,"489 13th St, Austin, TX 73301" +286256,USB-C Charging Cable,1,11.95,11/02/19 17:52,"565 Pine St, San Francisco, CA 94016" +286257,Apple Airpods Headphones,1,150,11/12/19 18:30,"775 1st St, Dallas, TX 75001" +286258,Wired Headphones,1,11.99,11/24/19 01:26,"353 Washington St, San Francisco, CA 94016" +286259,Wired Headphones,1,11.99,11/20/19 15:11,"491 Highland St, Portland, OR 97035" +286260,AA Batteries (4-pack),3,3.84,11/23/19 16:30,"659 2nd St, San Francisco, CA 94016" +286261,ThinkPad Laptop,1,999.99,11/07/19 16:14,"891 2nd St, Boston, MA 02215" +286262,Lightning Charging Cable,1,14.95,11/21/19 20:32,"918 2nd St, New York City, NY 10001" +286263,27in FHD Monitor,1,149.99,11/26/19 16:37,"161 12th St, Boston, MA 02215" +286264,Wired Headphones,1,11.99,11/28/19 11:36,"578 Willow St, Atlanta, GA 30301" +286265,Google Phone,1,600,11/03/19 21:03,"647 Lakeview St, Boston, MA 02215" +286266,AA Batteries (4-pack),1,3.84,11/03/19 15:12,"948 Park St, Dallas, TX 75001" +286267,Bose SoundSport Headphones,1,99.99,11/23/19 16:38,"475 1st St, Dallas, TX 75001" +286268,iPhone,1,700,11/24/19 10:36,"28 Pine St, Portland, ME 04101" +286269,Lightning Charging Cable,1,14.95,11/05/19 10:18,"929 Dogwood St, New York City, NY 10001" +286270,iPhone,1,700,11/22/19 17:06,"415 Washington St, Boston, MA 02215" +286271,27in FHD Monitor,1,149.99,11/03/19 00:41,"880 Cedar St, Los Angeles, CA 90001" +286272,Lightning Charging Cable,1,14.95,11/05/19 11:29,"806 13th St, San Francisco, CA 94016" +286273,AAA Batteries (4-pack),1,2.99,11/01/19 22:27,"745 10th St, Los Angeles, CA 90001" +286274,Apple Airpods Headphones,1,150,11/18/19 20:12,"938 Johnson St, Los Angeles, CA 90001" +286275,Bose SoundSport Headphones,1,99.99,11/19/19 22:07,"258 5th St, San Francisco, CA 94016" +286276,USB-C Charging Cable,1,11.95,11/23/19 17:41,"416 4th St, Portland, OR 97035" +286277,27in 4K Gaming Monitor,1,389.99,11/01/19 18:14,"296 Chestnut St, Atlanta, GA 30301" +286278,USB-C Charging Cable,1,11.95,11/17/19 23:00,"615 Meadow St, Atlanta, GA 30301" +286279,27in 4K Gaming Monitor,1,389.99,11/24/19 12:59,"515 Meadow St, Austin, TX 73301" +286280,Lightning Charging Cable,1,14.95,11/04/19 13:42,"841 Lincoln St, Austin, TX 73301" +286281,iPhone,1,700,11/29/19 07:53,"884 South St, Los Angeles, CA 90001" +286282,AAA Batteries (4-pack),1,2.99,11/02/19 21:16,"726 Chestnut St, Seattle, WA 98101" +286283,USB-C Charging Cable,3,11.95,11/30/19 19:04,"329 8th St, Atlanta, GA 30301" +286284,AA Batteries (4-pack),1,3.84,11/18/19 12:28,"960 Hickory St, Portland, ME 04101" +286285,27in 4K Gaming Monitor,1,389.99,11/28/19 19:39,"143 Hill St, Dallas, TX 75001" +286286,AAA Batteries (4-pack),1,2.99,11/02/19 16:50,"896 6th St, San Francisco, CA 94016" +286287,AAA Batteries (4-pack),1,2.99,11/05/19 11:59,"136 10th St, Dallas, TX 75001" +286288,Wired Headphones,1,11.99,11/14/19 11:18,"16 Maple St, Seattle, WA 98101" +286289,Macbook Pro Laptop,1,1700,11/05/19 12:55,"246 Hickory St, Los Angeles, CA 90001" +286290,AA Batteries (4-pack),1,3.84,11/03/19 17:07,"394 Jefferson St, Boston, MA 02215" +286291,20in Monitor,1,109.99,11/11/19 08:38,"381 Center St, San Francisco, CA 94016" +286292,USB-C Charging Cable,1,11.95,11/06/19 12:14,"5 4th St, Los Angeles, CA 90001" +286293,Flatscreen TV,1,300,11/07/19 10:37,"144 Forest St, Boston, MA 02215" +286294,AA Batteries (4-pack),1,3.84,11/18/19 19:39,"733 Walnut St, San Francisco, CA 94016" +286295,Lightning Charging Cable,1,14.95,11/22/19 23:28,"830 North St, Seattle, WA 98101" +286296,AAA Batteries (4-pack),1,2.99,11/06/19 19:20,"519 6th St, Boston, MA 02215" +286297,Apple Airpods Headphones,1,150,11/07/19 08:44,"846 Church St, Austin, TX 73301" +286298,AAA Batteries (4-pack),1,2.99,11/12/19 16:13,"112 Willow St, San Francisco, CA 94016" +286299,Lightning Charging Cable,1,14.95,11/04/19 22:05,"417 Cherry St, Atlanta, GA 30301" +286300,Bose SoundSport Headphones,1,99.99,11/23/19 16:34,"619 Dogwood St, Seattle, WA 98101" +286301,AAA Batteries (4-pack),5,2.99,11/09/19 09:48,"909 Spruce St, Atlanta, GA 30301" +286302,Apple Airpods Headphones,1,150,11/16/19 21:05,"909 Willow St, New York City, NY 10001" +286303,Apple Airpods Headphones,1,150,11/12/19 08:58,"375 River St, Atlanta, GA 30301" +286304,AAA Batteries (4-pack),2,2.99,11/20/19 15:35,"26 9th St, San Francisco, CA 94016" +286305,34in Ultrawide Monitor,1,379.99,11/28/19 20:28,"294 1st St, Portland, ME 04101" +286306,Lightning Charging Cable,1,14.95,11/29/19 11:37,"731 South St, San Francisco, CA 94016" +286307,USB-C Charging Cable,2,11.95,11/08/19 16:33,"638 South St, New York City, NY 10001" +286308,Apple Airpods Headphones,1,150,11/04/19 21:52,"104 Elm St, San Francisco, CA 94016" +286309,AA Batteries (4-pack),1,3.84,11/16/19 13:17,"529 Park St, Boston, MA 02215" +286310,Wired Headphones,2,11.99,11/20/19 19:45,"530 Washington St, Atlanta, GA 30301" +286311,USB-C Charging Cable,1,11.95,11/17/19 13:34,"577 Pine St, Seattle, WA 98101" +286312,Macbook Pro Laptop,1,1700,11/20/19 17:28,"363 Adams St, Los Angeles, CA 90001" +286313,Vareebadd Phone,1,400,11/28/19 11:50,"166 Wilson St, Austin, TX 73301" +286314,Lightning Charging Cable,1,14.95,11/30/19 15:49,"366 South St, Los Angeles, CA 90001" +286315,Lightning Charging Cable,1,14.95,11/08/19 11:04,"132 Lincoln St, New York City, NY 10001" +286316,AA Batteries (4-pack),1,3.84,11/07/19 10:21,"447 River St, Dallas, TX 75001" +286317,Bose SoundSport Headphones,1,99.99,11/14/19 19:57,"220 Forest St, Los Angeles, CA 90001" +286318,USB-C Charging Cable,1,11.95,11/20/19 10:54,"530 12th St, New York City, NY 10001" +286319,27in FHD Monitor,1,149.99,11/18/19 11:08,"444 North St, Portland, ME 04101" +286320,Flatscreen TV,1,300,11/20/19 11:24,"486 14th St, Los Angeles, CA 90001" +286321,20in Monitor,1,109.99,11/21/19 14:34,"73 2nd St, Los Angeles, CA 90001" +286322,Wired Headphones,1,11.99,11/03/19 11:46,"227 2nd St, New York City, NY 10001" +286323,Vareebadd Phone,1,400,11/14/19 00:06,"298 Washington St, Dallas, TX 75001" +286324,Wired Headphones,1,11.99,11/17/19 22:21,"490 Center St, Boston, MA 02215" +286325,AA Batteries (4-pack),1,3.84,11/11/19 13:17,"226 Hickory St, Austin, TX 73301" +286326,AAA Batteries (4-pack),1,2.99,11/16/19 17:23,"571 6th St, Austin, TX 73301" +286327,Bose SoundSport Headphones,1,99.99,11/14/19 18:18,"149 5th St, Boston, MA 02215" +286328,USB-C Charging Cable,1,11.95,11/18/19 04:48,"290 Chestnut St, Portland, OR 97035" +286329,Wired Headphones,1,11.99,11/19/19 13:36,"461 Dogwood St, Seattle, WA 98101" +286330,AAA Batteries (4-pack),1,2.99,11/30/19 16:37,"659 9th St, New York City, NY 10001" +286331,Bose SoundSport Headphones,1,99.99,11/03/19 11:00,"668 14th St, Los Angeles, CA 90001" +286332,Wired Headphones,1,11.99,11/13/19 11:14,"922 Walnut St, Los Angeles, CA 90001" +286333,USB-C Charging Cable,1,11.95,11/22/19 14:01,"226 14th St, Los Angeles, CA 90001" +286334,Wired Headphones,1,11.99,11/08/19 08:41,"183 Meadow St, San Francisco, CA 94016" +286335,Lightning Charging Cable,1,14.95,11/13/19 10:00,"256 Cherry St, Seattle, WA 98101" +286336,iPhone,1,700,11/26/19 23:26,"894 Spruce St, Seattle, WA 98101" +286337,27in FHD Monitor,1,149.99,11/06/19 10:05,"48 Chestnut St, Los Angeles, CA 90001" +286338,Flatscreen TV,1,300,11/10/19 13:05,"857 Adams St, Seattle, WA 98101" +286339,AA Batteries (4-pack),1,3.84,11/13/19 15:11,"524 Lincoln St, San Francisco, CA 94016" +286340,Apple Airpods Headphones,1,150,11/18/19 15:57,"430 Willow St, San Francisco, CA 94016" +286341,ThinkPad Laptop,1,999.99,11/14/19 11:33,"879 North St, Dallas, TX 75001" +286342,27in FHD Monitor,1,149.99,11/15/19 12:03,"831 Hickory St, San Francisco, CA 94016" +286343,Lightning Charging Cable,1,14.95,11/28/19 22:15,"13 Willow St, Dallas, TX 75001" +286344,27in 4K Gaming Monitor,1,389.99,11/01/19 08:21,"625 Sunset St, New York City, NY 10001" +286345,Wired Headphones,1,11.99,11/04/19 17:17,"644 Park St, Boston, MA 02215" +286346,Flatscreen TV,1,300,11/05/19 19:49,"91 River St, San Francisco, CA 94016" +286347,AA Batteries (4-pack),1,3.84,11/24/19 19:46,"770 4th St, Portland, OR 97035" +286348,USB-C Charging Cable,1,11.95,11/24/19 21:07,"136 Jackson St, San Francisco, CA 94016" +286349,Lightning Charging Cable,1,14.95,11/28/19 10:48,"97 14th St, Boston, MA 02215" +286350,Wired Headphones,1,11.99,11/24/19 09:27,"158 Willow St, Atlanta, GA 30301" +286351,USB-C Charging Cable,1,11.95,11/21/19 22:34,"867 Main St, Los Angeles, CA 90001" +286352,Apple Airpods Headphones,1,150,11/10/19 09:43,"242 Elm St, Portland, OR 97035" +286353,Apple Airpods Headphones,1,150,11/25/19 13:54,"67 Pine St, Dallas, TX 75001" +286354,Lightning Charging Cable,1,14.95,11/01/19 20:49,"376 Main St, Austin, TX 73301" +286355,Apple Airpods Headphones,1,150,11/09/19 13:00,"773 9th St, San Francisco, CA 94016" +286356,Apple Airpods Headphones,1,150,11/15/19 23:20,"656 9th St, Dallas, TX 75001" +286357,Bose SoundSport Headphones,1,99.99,11/16/19 22:39,"73 Hickory St, Seattle, WA 98101" +286358,AA Batteries (4-pack),2,3.84,11/25/19 06:07,"108 Johnson St, Dallas, TX 75001" +286359,AA Batteries (4-pack),1,3.84,11/19/19 17:28,"506 Highland St, Dallas, TX 75001" +286360,Macbook Pro Laptop,1,1700,11/27/19 11:38,"771 Jackson St, San Francisco, CA 94016" +286361,AA Batteries (4-pack),2,3.84,11/17/19 20:52,"979 Dogwood St, Los Angeles, CA 90001" +286362,Flatscreen TV,1,300,11/16/19 11:15,"690 7th St, San Francisco, CA 94016" +286363,USB-C Charging Cable,1,11.95,11/03/19 15:41,"495 Forest St, Dallas, TX 75001" +286364,LG Dryer,1,600.0,11/12/19 17:51,"468 Main St, San Francisco, CA 94016" +286365,AA Batteries (4-pack),1,3.84,11/02/19 01:36,"194 8th St, New York City, NY 10001" +286366,Bose SoundSport Headphones,1,99.99,11/25/19 17:36,"925 4th St, San Francisco, CA 94016" +286367,Apple Airpods Headphones,1,150,11/10/19 20:37,"326 Dogwood St, Seattle, WA 98101" +286368,34in Ultrawide Monitor,1,379.99,11/16/19 10:44,"97 Hickory St, Seattle, WA 98101" +286369,AA Batteries (4-pack),1,3.84,11/25/19 17:58,"332 Center St, San Francisco, CA 94016" +286370,ThinkPad Laptop,1,999.99,11/20/19 12:15,"698 11th St, New York City, NY 10001" +286371,USB-C Charging Cable,1,11.95,11/30/19 10:57,"403 North St, Los Angeles, CA 90001" +286372,USB-C Charging Cable,1,11.95,11/19/19 22:58,"405 Lincoln St, Austin, TX 73301" +286373,Apple Airpods Headphones,1,150,11/08/19 11:07,"565 Forest St, Los Angeles, CA 90001" +286374,Wired Headphones,2,11.99,11/17/19 12:56,"119 Lakeview St, Dallas, TX 75001" +286375,AA Batteries (4-pack),1,3.84,11/05/19 20:17,"211 Hill St, New York City, NY 10001" +286376,AAA Batteries (4-pack),1,2.99,11/27/19 07:50,"747 5th St, Portland, OR 97035" +286377,Google Phone,1,600,11/26/19 16:32,"777 7th St, Portland, OR 97035" +286378,Lightning Charging Cable,1,14.95,11/27/19 06:26,"242 Adams St, San Francisco, CA 94016" +286379,AA Batteries (4-pack),1,3.84,11/04/19 07:18,"49 Ridge St, Los Angeles, CA 90001" +286380,27in FHD Monitor,1,149.99,11/24/19 12:12,"689 West St, Boston, MA 02215" +286381,AAA Batteries (4-pack),1,2.99,11/04/19 13:27,"320 Adams St, San Francisco, CA 94016" +286382,iPhone,1,700,11/14/19 11:37,"25 Forest St, Seattle, WA 98101" +286383,AAA Batteries (4-pack),1,2.99,11/15/19 13:53,"331 Washington St, Atlanta, GA 30301" +286384,Lightning Charging Cable,1,14.95,11/04/19 14:03,"757 14th St, Boston, MA 02215" +286385,Wired Headphones,1,11.99,11/14/19 19:46,"996 Maple St, Portland, ME 04101" +286386,AA Batteries (4-pack),1,3.84,11/16/19 13:12,"449 Washington St, Los Angeles, CA 90001" +286387,27in 4K Gaming Monitor,1,389.99,11/04/19 17:06,"781 Spruce St, Los Angeles, CA 90001" +286388,USB-C Charging Cable,1,11.95,11/13/19 18:28,"103 Johnson St, Seattle, WA 98101" +286389,AAA Batteries (4-pack),1,2.99,11/27/19 09:24,"250 Lakeview St, San Francisco, CA 94016" +286390,USB-C Charging Cable,1,11.95,11/09/19 09:10,"696 Lakeview St, Boston, MA 02215" +286391,AA Batteries (4-pack),1,3.84,11/20/19 18:58,"219 West St, New York City, NY 10001" +286392,27in 4K Gaming Monitor,1,389.99,11/17/19 07:57,"4 14th St, Portland, OR 97035" +286393,iPhone,1,700,11/03/19 15:05,"158 Willow St, New York City, NY 10001" +286394,USB-C Charging Cable,2,11.95,11/15/19 10:40,"752 4th St, Los Angeles, CA 90001" +286394,27in FHD Monitor,1,149.99,11/15/19 10:40,"752 4th St, Los Angeles, CA 90001" +286395,34in Ultrawide Monitor,1,379.99,11/27/19 20:08,"53 Center St, Los Angeles, CA 90001" +286396,27in FHD Monitor,1,149.99,11/23/19 19:07,"473 Center St, San Francisco, CA 94016" +286397,27in 4K Gaming Monitor,1,389.99,11/14/19 21:21,"838 Ridge St, Boston, MA 02215" +286398,AAA Batteries (4-pack),1,2.99,11/08/19 13:06,"942 North St, Los Angeles, CA 90001" +286399,34in Ultrawide Monitor,1,379.99,11/13/19 11:37,"400 8th St, Los Angeles, CA 90001" +286399,Bose SoundSport Headphones,1,99.99,11/13/19 11:37,"400 8th St, Los Angeles, CA 90001" +286400,Wired Headphones,1,11.99,11/18/19 13:13,"354 9th St, Dallas, TX 75001" +286400,Flatscreen TV,1,300,11/18/19 13:13,"354 9th St, Dallas, TX 75001" +286401,Apple Airpods Headphones,1,150,11/14/19 15:10,"81 Walnut St, Atlanta, GA 30301" +286402,Wired Headphones,1,11.99,11/10/19 21:31,"332 River St, San Francisco, CA 94016" +286403,USB-C Charging Cable,1,11.95,11/25/19 20:15,"138 13th St, San Francisco, CA 94016" +286404,AAA Batteries (4-pack),1,2.99,11/03/19 16:20,"717 River St, New York City, NY 10001" +286405,AA Batteries (4-pack),1,3.84,11/28/19 17:18,"843 River St, Austin, TX 73301" +286406,AA Batteries (4-pack),2,3.84,11/30/19 22:23,"671 Cherry St, Atlanta, GA 30301" +286407,AAA Batteries (4-pack),1,2.99,11/14/19 14:42,"256 4th St, San Francisco, CA 94016" +286408,Apple Airpods Headphones,1,150,11/21/19 08:34,"659 Main St, Los Angeles, CA 90001" +286409,ThinkPad Laptop,1,999.99,11/18/19 21:20,"853 Center St, Boston, MA 02215" +286410,AA Batteries (4-pack),1,3.84,11/25/19 11:41,"597 Lake St, San Francisco, CA 94016" +286411,Wired Headphones,1,11.99,11/04/19 16:10,"493 Lakeview St, New York City, NY 10001" +286412,AA Batteries (4-pack),2,3.84,11/17/19 20:57,"343 South St, Seattle, WA 98101" +286413,AAA Batteries (4-pack),1,2.99,11/16/19 12:41,"545 Pine St, San Francisco, CA 94016" +286414,Macbook Pro Laptop,1,1700,11/01/19 12:01,"176 Adams St, San Francisco, CA 94016" +286415,27in 4K Gaming Monitor,1,389.99,11/13/19 09:59,"134 Ridge St, Seattle, WA 98101" +286416,AAA Batteries (4-pack),3,2.99,11/19/19 12:40,"7 Main St, Los Angeles, CA 90001" +286417,AA Batteries (4-pack),1,3.84,11/22/19 08:27,"300 7th St, Atlanta, GA 30301" +286418,34in Ultrawide Monitor,1,379.99,11/26/19 14:35,"203 9th St, Portland, ME 04101" +286419,27in FHD Monitor,1,149.99,11/22/19 19:10,"69 Church St, San Francisco, CA 94016" +286420,Lightning Charging Cable,1,14.95,11/23/19 08:02,"989 8th St, Boston, MA 02215" +286421,AA Batteries (4-pack),1,3.84,11/28/19 11:56,"547 Jackson St, San Francisco, CA 94016" +286422,USB-C Charging Cable,1,11.95,11/03/19 14:09,"618 Lake St, New York City, NY 10001" +286423,Vareebadd Phone,1,400,11/26/19 17:05,"588 Sunset St, Boston, MA 02215" +286423,USB-C Charging Cable,1,11.95,11/26/19 17:05,"588 Sunset St, Boston, MA 02215" +286424,AAA Batteries (4-pack),3,2.99,11/15/19 19:41,"225 10th St, San Francisco, CA 94016" +286425,USB-C Charging Cable,1,11.95,11/17/19 22:41,"8 Main St, New York City, NY 10001" +286426,Lightning Charging Cable,1,14.95,11/13/19 23:59,"451 Lake St, Boston, MA 02215" +286427,AAA Batteries (4-pack),1,2.99,11/07/19 10:47,"524 9th St, Boston, MA 02215" +286428,Lightning Charging Cable,1,14.95,11/15/19 11:10,"408 Pine St, Atlanta, GA 30301" +286429,Bose SoundSport Headphones,1,99.99,11/17/19 11:01,"976 Spruce St, San Francisco, CA 94016" +286430,Apple Airpods Headphones,1,150,11/16/19 19:56,"246 Washington St, New York City, NY 10001" +286431,iPhone,1,700,11/10/19 07:58,"239 8th St, San Francisco, CA 94016" +286431,Lightning Charging Cable,1,14.95,11/10/19 07:58,"239 8th St, San Francisco, CA 94016" +286432,Macbook Pro Laptop,1,1700,11/21/19 10:17,"110 North St, Los Angeles, CA 90001" +286433,AA Batteries (4-pack),2,3.84,11/11/19 09:41,"614 Walnut St, Dallas, TX 75001" +286434,AA Batteries (4-pack),2,3.84,11/26/19 20:17,"733 5th St, Seattle, WA 98101" +286435,Apple Airpods Headphones,1,150,11/05/19 20:14,"411 14th St, Seattle, WA 98101" +286436,Lightning Charging Cable,1,14.95,11/27/19 19:17,"770 Church St, Los Angeles, CA 90001" +286437,20in Monitor,1,109.99,11/04/19 00:14,"833 Madison St, Austin, TX 73301" +286438,Macbook Pro Laptop,1,1700,11/13/19 11:21,"670 Hill St, Seattle, WA 98101" +286439,Apple Airpods Headphones,1,150,11/03/19 12:02,"795 South St, Seattle, WA 98101" +286440,Lightning Charging Cable,1,14.95,11/30/19 17:05,"525 North St, Seattle, WA 98101" +286441,AA Batteries (4-pack),2,3.84,11/26/19 09:33,"890 12th St, Boston, MA 02215" +286442,USB-C Charging Cable,1,11.95,11/22/19 19:17,"890 14th St, Seattle, WA 98101" +286443,Lightning Charging Cable,1,14.95,11/30/19 19:15,"112 Park St, San Francisco, CA 94016" +286444,AAA Batteries (4-pack),1,2.99,11/21/19 20:40,"702 Sunset St, San Francisco, CA 94016" +286445,USB-C Charging Cable,1,11.95,11/02/19 18:45,"474 Meadow St, Dallas, TX 75001" +286446,Apple Airpods Headphones,1,150,11/26/19 11:29,"363 Ridge St, San Francisco, CA 94016" +286447,Flatscreen TV,1,300,11/17/19 12:14,"303 Chestnut St, Austin, TX 73301" +286448,Wired Headphones,1,11.99,11/12/19 13:00,"3 Lake St, Los Angeles, CA 90001" +286449,Lightning Charging Cable,1,14.95,11/30/19 19:52,"235 12th St, New York City, NY 10001" +286450,Lightning Charging Cable,1,14.95,11/07/19 14:36,"902 Meadow St, New York City, NY 10001" +286451,Apple Airpods Headphones,1,150,11/09/19 08:07,"242 11th St, New York City, NY 10001" +286452,ThinkPad Laptop,1,999.99,11/01/19 23:19,"623 12th St, San Francisco, CA 94016" +286453,Wired Headphones,1,11.99,11/17/19 11:00,"861 Meadow St, Los Angeles, CA 90001" +286454,34in Ultrawide Monitor,1,379.99,11/18/19 12:42,"514 5th St, San Francisco, CA 94016" +286455,Apple Airpods Headphones,1,150,11/15/19 09:14,"240 Chestnut St, Seattle, WA 98101" +286456,Wired Headphones,1,11.99,11/21/19 13:18,"428 Madison St, Boston, MA 02215" +286457,Lightning Charging Cable,1,14.95,11/23/19 10:46,"502 Sunset St, Atlanta, GA 30301" +286458,27in 4K Gaming Monitor,1,389.99,11/09/19 19:48,"923 9th St, Dallas, TX 75001" +286459,Vareebadd Phone,1,400,11/17/19 15:33,"609 Maple St, San Francisco, CA 94016" +286459,Wired Headphones,1,11.99,11/17/19 15:33,"609 Maple St, San Francisco, CA 94016" +286460,Wired Headphones,1,11.99,11/02/19 11:24,"865 6th St, San Francisco, CA 94016" +286461,Lightning Charging Cable,1,14.95,11/01/19 08:09,"356 5th St, San Francisco, CA 94016" +286462,USB-C Charging Cable,1,11.95,11/09/19 17:31,"76 Willow St, Los Angeles, CA 90001" +286463,Lightning Charging Cable,1,14.95,11/02/19 07:43,"517 Cedar St, Dallas, TX 75001" +286464,USB-C Charging Cable,1,11.95,11/17/19 12:59,"669 Washington St, Austin, TX 73301" +286465,Bose SoundSport Headphones,1,99.99,11/17/19 11:58,"558 Forest St, Portland, OR 97035" +286466,Bose SoundSport Headphones,1,99.99,11/11/19 12:27,"102 Elm St, Seattle, WA 98101" +286467,iPhone,1,700,11/05/19 19:04,"870 7th St, Portland, OR 97035" +286468,AAA Batteries (4-pack),4,2.99,11/08/19 12:12,"978 10th St, Austin, TX 73301" +286469,iPhone,1,700,11/05/19 00:20,"779 9th St, New York City, NY 10001" +286470,Wired Headphones,1,11.99,11/04/19 10:19,"89 Ridge St, San Francisco, CA 94016" +286471,Apple Airpods Headphones,1,150,11/24/19 20:57,"242 Cedar St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +286472,Apple Airpods Headphones,1,150,11/12/19 10:38,"847 Elm St, New York City, NY 10001" +286473,AAA Batteries (4-pack),2,2.99,11/14/19 06:57,"652 Madison St, Los Angeles, CA 90001" +286474,Apple Airpods Headphones,1,150,11/14/19 16:31,"60 Johnson St, Austin, TX 73301" +286475,Wired Headphones,1,11.99,11/07/19 20:50,"130 Jackson St, Dallas, TX 75001" +286476,27in FHD Monitor,1,149.99,11/07/19 13:43,"907 Maple St, New York City, NY 10001" +286477,Wired Headphones,1,11.99,11/26/19 14:21,"971 South St, Boston, MA 02215" +286478,Lightning Charging Cable,1,14.95,11/13/19 09:27,"622 Hill St, Dallas, TX 75001" +286479,Apple Airpods Headphones,1,150,11/07/19 17:26,"199 Lincoln St, Portland, ME 04101" +286480,AA Batteries (4-pack),1,3.84,11/01/19 18:32,"76 South St, Dallas, TX 75001" +286481,AAA Batteries (4-pack),1,2.99,11/05/19 23:19,"220 Willow St, San Francisco, CA 94016" +286482,Wired Headphones,1,11.99,11/27/19 09:11,"836 Cedar St, New York City, NY 10001" +286482,AA Batteries (4-pack),1,3.84,11/27/19 09:11,"836 Cedar St, New York City, NY 10001" +286483,27in 4K Gaming Monitor,1,389.99,11/06/19 12:04,"249 Jefferson St, New York City, NY 10001" +286484,AA Batteries (4-pack),2,3.84,11/26/19 14:17,"55 Cedar St, Atlanta, GA 30301" +286485,Lightning Charging Cable,1,14.95,11/27/19 20:39,"161 Wilson St, San Francisco, CA 94016" +286486,Apple Airpods Headphones,1,150,11/18/19 09:57,"864 Park St, Los Angeles, CA 90001" +286487,27in 4K Gaming Monitor,1,389.99,11/10/19 20:31,"329 Hill St, Los Angeles, CA 90001" +286488,34in Ultrawide Monitor,1,379.99,11/20/19 19:54,"299 13th St, Atlanta, GA 30301" +286489,Apple Airpods Headphones,1,150,11/14/19 23:59,"846 13th St, San Francisco, CA 94016" +286490,20in Monitor,1,109.99,11/18/19 23:38,"990 10th St, Austin, TX 73301" +286491,Lightning Charging Cable,1,14.95,11/10/19 07:00,"628 9th St, Portland, OR 97035" +286492,Apple Airpods Headphones,1,150,11/14/19 05:07,"728 4th St, Dallas, TX 75001" +286493,AA Batteries (4-pack),1,3.84,11/14/19 21:18,"439 Park St, Boston, MA 02215" +286494,iPhone,1,700,11/12/19 11:49,"743 Church St, San Francisco, CA 94016" +286495,USB-C Charging Cable,1,11.95,11/19/19 12:55,"961 Wilson St, Austin, TX 73301" +286496,AA Batteries (4-pack),1,3.84,11/08/19 07:22,"493 Pine St, Los Angeles, CA 90001" +286497,Lightning Charging Cable,2,14.95,11/26/19 12:43,"285 Sunset St, San Francisco, CA 94016" +286498,Bose SoundSport Headphones,1,99.99,11/14/19 09:31,"373 Walnut St, Boston, MA 02215" +286499,Bose SoundSport Headphones,1,99.99,11/11/19 08:31,"950 Church St, Atlanta, GA 30301" +286500,Apple Airpods Headphones,1,150,11/07/19 01:12,"535 Maple St, San Francisco, CA 94016" +286501,Wired Headphones,1,11.99,11/03/19 22:56,"171 Dogwood St, Austin, TX 73301" +286502,AA Batteries (4-pack),1,3.84,11/20/19 12:37,"702 Maple St, Los Angeles, CA 90001" +286503,34in Ultrawide Monitor,1,379.99,11/28/19 15:36,"924 4th St, San Francisco, CA 94016" +286504,iPhone,1,700,11/12/19 23:49,"875 Ridge St, Boston, MA 02215" +286505,ThinkPad Laptop,1,999.99,11/06/19 12:23,"337 Main St, Seattle, WA 98101" +286506,Apple Airpods Headphones,1,150,11/02/19 21:05,"212 10th St, Los Angeles, CA 90001" +286507,Flatscreen TV,1,300,11/01/19 19:19,"413 Madison St, San Francisco, CA 94016" +286508,AA Batteries (4-pack),1,3.84,11/13/19 23:24,"914 Center St, Seattle, WA 98101" +286509,AA Batteries (4-pack),1,3.84,11/28/19 20:04,"881 Church St, Los Angeles, CA 90001" +286510,AAA Batteries (4-pack),1,2.99,11/23/19 23:56,"810 Pine St, Los Angeles, CA 90001" +,,,,, +286511,AA Batteries (4-pack),1,3.84,11/27/19 07:31,"509 Johnson St, Seattle, WA 98101" +286512,iPhone,1,700,11/13/19 01:20,"395 Chestnut St, Los Angeles, CA 90001" +286513,34in Ultrawide Monitor,1,379.99,11/24/19 16:51,"89 Pine St, Seattle, WA 98101" +286514,iPhone,1,700,11/22/19 20:44,"658 14th St, New York City, NY 10001" +286515,iPhone,1,700,11/09/19 14:22,"351 Ridge St, Atlanta, GA 30301" +286515,Apple Airpods Headphones,1,150,11/09/19 14:22,"351 Ridge St, Atlanta, GA 30301" +286515,USB-C Charging Cable,1,11.95,11/09/19 14:22,"351 Ridge St, Atlanta, GA 30301" +286516,Bose SoundSport Headphones,1,99.99,11/29/19 12:58,"729 North St, New York City, NY 10001" +286517,Lightning Charging Cable,1,14.95,11/12/19 10:57,"476 Johnson St, San Francisco, CA 94016" +286518,USB-C Charging Cable,1,11.95,11/11/19 20:50,"514 South St, Atlanta, GA 30301" +286519,AA Batteries (4-pack),1,3.84,11/30/19 04:13,"876 Maple St, Seattle, WA 98101" +286520,Wired Headphones,1,11.99,11/30/19 20:50,"817 Willow St, San Francisco, CA 94016" +286521,27in 4K Gaming Monitor,1,389.99,11/03/19 21:06,"53 Sunset St, Dallas, TX 75001" +286522,Wired Headphones,1,11.99,11/02/19 18:11,"796 Church St, Atlanta, GA 30301" +286523,Bose SoundSport Headphones,1,99.99,11/05/19 19:03,"453 Meadow St, Austin, TX 73301" +286524,LG Washing Machine,1,600.0,11/28/19 09:14,"397 Johnson St, Atlanta, GA 30301" +286525,USB-C Charging Cable,1,11.95,11/11/19 09:43,"553 1st St, Los Angeles, CA 90001" +286526,34in Ultrawide Monitor,1,379.99,11/01/19 16:02,"341 Washington St, Boston, MA 02215" +286527,20in Monitor,1,109.99,11/16/19 10:33,"479 Willow St, Dallas, TX 75001" +286528,34in Ultrawide Monitor,1,379.99,11/03/19 10:52,"685 Madison St, San Francisco, CA 94016" +286529,iPhone,1,700,11/25/19 15:11,"503 14th St, Boston, MA 02215" +286530,Wired Headphones,1,11.99,11/06/19 11:19,"915 5th St, Boston, MA 02215" +286531,AA Batteries (4-pack),1,3.84,11/15/19 08:35,"592 9th St, Los Angeles, CA 90001" +286532,AAA Batteries (4-pack),1,2.99,11/13/19 10:33,"395 Spruce St, Los Angeles, CA 90001" +286533,USB-C Charging Cable,1,11.95,11/27/19 14:27,"454 Main St, San Francisco, CA 94016" +286534,LG Washing Machine,1,600.0,11/28/19 22:09,"711 Willow St, Boston, MA 02215" +286535,AA Batteries (4-pack),1,3.84,11/25/19 14:53,"252 4th St, San Francisco, CA 94016" +286536,Lightning Charging Cable,1,14.95,11/19/19 13:47,"950 Willow St, Boston, MA 02215" +286537,AAA Batteries (4-pack),1,2.99,11/30/19 11:51,"793 Center St, San Francisco, CA 94016" +286538,AA Batteries (4-pack),1,3.84,11/01/19 17:26,"715 Hill St, Seattle, WA 98101" +286539,Google Phone,1,600,11/15/19 14:21,"247 10th St, Los Angeles, CA 90001" +286540,34in Ultrawide Monitor,1,379.99,11/13/19 14:22,"74 Elm St, Portland, ME 04101" +286541,USB-C Charging Cable,1,11.95,11/28/19 10:06,"838 Meadow St, Boston, MA 02215" +286542,AAA Batteries (4-pack),1,2.99,11/20/19 16:21,"249 13th St, Seattle, WA 98101" +286543,AAA Batteries (4-pack),1,2.99,11/28/19 16:42,"233 7th St, San Francisco, CA 94016" +286544,iPhone,1,700,11/17/19 01:40,"536 11th St, Boston, MA 02215" +286545,Macbook Pro Laptop,1,1700,11/18/19 14:38,"627 Chestnut St, San Francisco, CA 94016" +286546,AA Batteries (4-pack),1,3.84,11/09/19 11:30,"240 Lincoln St, Los Angeles, CA 90001" +286547,Lightning Charging Cable,1,14.95,11/16/19 06:09,"54 Lake St, Los Angeles, CA 90001" +286548,Apple Airpods Headphones,1,150,11/21/19 10:33,"873 4th St, Atlanta, GA 30301" +286549,Google Phone,1,600,11/28/19 18:11,"654 Hickory St, Dallas, TX 75001" +286550,AAA Batteries (4-pack),1,2.99,11/23/19 02:13,"591 Jefferson St, Los Angeles, CA 90001" +286551,20in Monitor,1,109.99,11/25/19 20:58,"714 Forest St, Atlanta, GA 30301" +286552,Lightning Charging Cable,1,14.95,11/24/19 13:17,"659 Spruce St, New York City, NY 10001" +286553,AA Batteries (4-pack),1,3.84,11/27/19 16:20,"468 North St, Los Angeles, CA 90001" +286554,AA Batteries (4-pack),1,3.84,11/28/19 17:06,"25 Center St, Portland, OR 97035" +286555,iPhone,1,700,11/03/19 20:24,"363 Jefferson St, Dallas, TX 75001" +286555,Lightning Charging Cable,1,14.95,11/03/19 20:24,"363 Jefferson St, Dallas, TX 75001" +286556,Lightning Charging Cable,1,14.95,11/30/19 15:53,"215 Ridge St, Boston, MA 02215" +286557,AAA Batteries (4-pack),2,2.99,11/16/19 14:29,"910 Madison St, Los Angeles, CA 90001" +286558,AA Batteries (4-pack),1,3.84,11/28/19 00:24,"207 Walnut St, Los Angeles, CA 90001" +286559,Wired Headphones,1,11.99,11/11/19 21:39,"821 Madison St, Seattle, WA 98101" +286560,Lightning Charging Cable,1,14.95,11/17/19 23:42,"870 8th St, Dallas, TX 75001" +286561,Google Phone,1,600,11/07/19 18:58,"391 1st St, Boston, MA 02215" +286561,USB-C Charging Cable,1,11.95,11/07/19 18:58,"391 1st St, Boston, MA 02215" +,,,,, +286562,Bose SoundSport Headphones,1,99.99,11/08/19 18:19,"889 7th St, San Francisco, CA 94016" +286563,Vareebadd Phone,1,400,11/23/19 18:01,"587 Hill St, Austin, TX 73301" +286563,Wired Headphones,1,11.99,11/23/19 18:01,"587 Hill St, Austin, TX 73301" +286564,USB-C Charging Cable,1,11.95,11/12/19 16:45,"278 River St, San Francisco, CA 94016" +286565,34in Ultrawide Monitor,1,379.99,11/27/19 08:53,"584 Cedar St, San Francisco, CA 94016" +286566,AA Batteries (4-pack),2,3.84,11/01/19 22:53,"539 13th St, New York City, NY 10001" +286567,Bose SoundSport Headphones,1,99.99,11/09/19 11:41,"583 Hickory St, New York City, NY 10001" +286568,34in Ultrawide Monitor,1,379.99,11/18/19 21:48,"786 Spruce St, New York City, NY 10001" +286569,AAA Batteries (4-pack),1,2.99,11/28/19 20:13,"589 Pine St, Los Angeles, CA 90001" +286570,AA Batteries (4-pack),1,3.84,11/01/19 09:33,"484 Wilson St, Boston, MA 02215" +286571,Bose SoundSport Headphones,1,99.99,11/26/19 22:51,"348 Madison St, San Francisco, CA 94016" +286572,Lightning Charging Cable,1,14.95,11/01/19 14:36,"893 Meadow St, San Francisco, CA 94016" +286573,Apple Airpods Headphones,1,150,11/02/19 13:53,"311 Center St, Seattle, WA 98101" +286574,ThinkPad Laptop,1,999.99,11/21/19 20:57,"260 Highland St, San Francisco, CA 94016" +286575,Bose SoundSport Headphones,1,99.99,11/13/19 21:19,"873 West St, Dallas, TX 75001" +286576,USB-C Charging Cable,1,11.95,11/18/19 21:30,"129 River St, Atlanta, GA 30301" +286577,Bose SoundSport Headphones,1,99.99,11/10/19 16:08,"765 Jefferson St, San Francisco, CA 94016" +286578,USB-C Charging Cable,1,11.95,11/02/19 12:18,"952 Walnut St, San Francisco, CA 94016" +286579,Lightning Charging Cable,1,14.95,11/09/19 14:11,"746 Center St, Los Angeles, CA 90001" +286580,AAA Batteries (4-pack),2,2.99,11/07/19 18:30,"505 Adams St, San Francisco, CA 94016" +286581,Lightning Charging Cable,3,14.95,11/19/19 10:25,"214 Main St, Portland, OR 97035" +286582,Apple Airpods Headphones,1,150,11/06/19 18:45,"387 Cedar St, Portland, OR 97035" +286583,Wired Headphones,1,11.99,11/25/19 17:21,"978 Maple St, Austin, TX 73301" +286584,AA Batteries (4-pack),1,3.84,11/22/19 19:08,"649 Washington St, Los Angeles, CA 90001" +286585,Lightning Charging Cable,1,14.95,11/27/19 15:34,"681 Chestnut St, New York City, NY 10001" +286586,27in FHD Monitor,1,149.99,11/09/19 21:03,"239 River St, New York City, NY 10001" +286587,Flatscreen TV,1,300,11/10/19 14:52,"556 Ridge St, San Francisco, CA 94016" +286588,Macbook Pro Laptop,1,1700,11/30/19 19:49,"685 Sunset St, Atlanta, GA 30301" +286589,Apple Airpods Headphones,1,150,11/16/19 18:45,"173 South St, New York City, NY 10001" +286590,USB-C Charging Cable,1,11.95,11/17/19 11:52,"916 1st St, Austin, TX 73301" +286591,Bose SoundSport Headphones,1,99.99,11/12/19 21:09,"106 Jefferson St, New York City, NY 10001" +286592,20in Monitor,1,109.99,11/14/19 16:55,"67 Jackson St, Los Angeles, CA 90001" +286593,34in Ultrawide Monitor,1,379.99,11/03/19 08:35,"493 5th St, Dallas, TX 75001" +286594,34in Ultrawide Monitor,1,379.99,11/01/19 23:00,"778 7th St, San Francisco, CA 94016" +286595,Bose SoundSport Headphones,1,99.99,11/12/19 11:56,"239 Church St, Los Angeles, CA 90001" +286596,AAA Batteries (4-pack),1,2.99,11/19/19 22:31,"455 Jefferson St, Boston, MA 02215" +286597,AA Batteries (4-pack),1,3.84,11/17/19 09:56,"970 Center St, San Francisco, CA 94016" +286598,Bose SoundSport Headphones,1,99.99,11/26/19 09:25,"476 Lake St, San Francisco, CA 94016" +286599,Lightning Charging Cable,2,14.95,11/29/19 13:54,"359 Main St, Boston, MA 02215" +286600,Wired Headphones,1,11.99,11/14/19 13:05,"594 2nd St, San Francisco, CA 94016" +286601,27in FHD Monitor,1,149.99,11/07/19 19:33,"887 Jackson St, San Francisco, CA 94016" +286602,AA Batteries (4-pack),1,3.84,11/06/19 13:05,"16 Chestnut St, New York City, NY 10001" +286603,Apple Airpods Headphones,1,150,11/22/19 13:45,"401 Center St, San Francisco, CA 94016" +286604,Apple Airpods Headphones,1,150,11/24/19 21:03,"257 Jefferson St, Portland, OR 97035" +286605,Lightning Charging Cable,1,14.95,11/03/19 16:36,"963 Jackson St, Seattle, WA 98101" +286606,iPhone,1,700,11/14/19 12:13,"526 Washington St, New York City, NY 10001" +286606,Apple Airpods Headphones,1,150,11/14/19 12:13,"526 Washington St, New York City, NY 10001" +286607,Lightning Charging Cable,1,14.95,11/29/19 11:54,"934 4th St, Dallas, TX 75001" +286608,20in Monitor,1,109.99,11/04/19 16:53,"344 13th St, Portland, OR 97035" +286609,iPhone,1,700,11/27/19 16:09,"674 River St, Dallas, TX 75001" +286609,Lightning Charging Cable,1,14.95,11/27/19 16:09,"674 River St, Dallas, TX 75001" +286610,AA Batteries (4-pack),1,3.84,11/22/19 12:37,"690 Lakeview St, Atlanta, GA 30301" +286611,Apple Airpods Headphones,1,150,11/06/19 22:30,"986 Johnson St, Los Angeles, CA 90001" +286612,AAA Batteries (4-pack),1,2.99,11/03/19 01:05,"224 West St, Austin, TX 73301" +286613,USB-C Charging Cable,1,11.95,11/23/19 22:55,"16 Main St, San Francisco, CA 94016" +286614,Lightning Charging Cable,1,14.95,11/16/19 11:59,"4 Pine St, New York City, NY 10001" +286615,USB-C Charging Cable,1,11.95,11/01/19 15:21,"373 4th St, San Francisco, CA 94016" +286616,AA Batteries (4-pack),1,3.84,11/22/19 19:30,"235 Walnut St, Atlanta, GA 30301" +286617,20in Monitor,1,109.99,11/27/19 22:11,"469 Spruce St, Los Angeles, CA 90001" +286618,AA Batteries (4-pack),1,3.84,11/04/19 10:57,"931 Center St, Austin, TX 73301" +286619,Lightning Charging Cable,1,14.95,11/07/19 13:51,"625 Wilson St, Portland, OR 97035" +286620,AAA Batteries (4-pack),1,2.99,11/24/19 00:21,"856 14th St, San Francisco, CA 94016" +286621,Apple Airpods Headphones,1,150,11/21/19 20:31,"234 Chestnut St, San Francisco, CA 94016" +286622,Apple Airpods Headphones,1,150,11/09/19 10:23,"436 6th St, Los Angeles, CA 90001" +286623,Vareebadd Phone,1,400,11/04/19 21:03,"82 Madison St, San Francisco, CA 94016" +286624,AAA Batteries (4-pack),1,2.99,11/18/19 12:28,"488 Cherry St, New York City, NY 10001" +286624,Wired Headphones,1,11.99,11/18/19 12:28,"488 Cherry St, New York City, NY 10001" +286625,USB-C Charging Cable,1,11.95,11/09/19 21:04,"213 1st St, San Francisco, CA 94016" +286626,AA Batteries (4-pack),2,3.84,11/21/19 12:00,"729 North St, New York City, NY 10001" +286627,USB-C Charging Cable,1,11.95,11/09/19 17:00,"583 9th St, Atlanta, GA 30301" +286628,27in 4K Gaming Monitor,1,389.99,11/12/19 17:01,"566 Meadow St, Dallas, TX 75001" +286629,Google Phone,1,600,11/13/19 12:53,"301 Elm St, Los Angeles, CA 90001" +286630,Apple Airpods Headphones,1,150,11/09/19 09:13,"644 2nd St, San Francisco, CA 94016" +286631,20in Monitor,1,109.99,11/11/19 13:30,"867 Lakeview St, San Francisco, CA 94016" +286632,27in 4K Gaming Monitor,1,389.99,11/26/19 14:18,"595 Cherry St, Dallas, TX 75001" +286632,Macbook Pro Laptop,1,1700,11/26/19 14:18,"595 Cherry St, Dallas, TX 75001" +286633,AAA Batteries (4-pack),1,2.99,11/02/19 20:44,"41 Center St, San Francisco, CA 94016" +286634,USB-C Charging Cable,1,11.95,11/22/19 07:03,"380 7th St, Atlanta, GA 30301" +286635,Lightning Charging Cable,2,14.95,11/02/19 19:10,"977 Cedar St, Portland, OR 97035" +286636,34in Ultrawide Monitor,1,379.99,11/18/19 17:24,"297 River St, San Francisco, CA 94016" +286637,Flatscreen TV,1,300,11/04/19 22:02,"624 Center St, New York City, NY 10001" +286638,27in FHD Monitor,1,149.99,11/25/19 10:31,"106 10th St, Atlanta, GA 30301" +286639,Wired Headphones,1,11.99,11/19/19 00:15,"487 South St, Portland, ME 04101" +286640,27in FHD Monitor,1,149.99,11/15/19 22:07,"883 Washington St, San Francisco, CA 94016" +286641,USB-C Charging Cable,2,11.95,11/17/19 15:50,"103 8th St, Portland, OR 97035" +286642,27in 4K Gaming Monitor,1,389.99,11/26/19 12:43,"549 Park St, Boston, MA 02215" +286643,Bose SoundSport Headphones,1,99.99,11/21/19 18:01,"87 Elm St, Seattle, WA 98101" +286644,AAA Batteries (4-pack),1,2.99,11/11/19 16:15,"219 Washington St, New York City, NY 10001" +286645,Apple Airpods Headphones,1,150,11/24/19 19:28,"355 Elm St, Portland, OR 97035" +286646,Wired Headphones,1,11.99,11/22/19 19:16,"137 Lakeview St, Seattle, WA 98101" +286647,Bose SoundSport Headphones,1,99.99,11/23/19 20:38,"141 Sunset St, San Francisco, CA 94016" +286648,27in FHD Monitor,1,149.99,11/02/19 13:21,"491 Lincoln St, Atlanta, GA 30301" +286649,AA Batteries (4-pack),1,3.84,11/19/19 04:48,"733 Hickory St, Austin, TX 73301" +286650,Bose SoundSport Headphones,1,99.99,11/13/19 12:02,"933 Meadow St, New York City, NY 10001" +286651,Flatscreen TV,1,300,11/29/19 21:23,"962 14th St, San Francisco, CA 94016" +286652,Bose SoundSport Headphones,1,99.99,11/07/19 14:59,"45 Adams St, Los Angeles, CA 90001" +286653,LG Dryer,1,600.0,11/02/19 09:45,"371 Spruce St, Los Angeles, CA 90001" +286654,USB-C Charging Cable,1,11.95,11/30/19 09:42,"757 West St, San Francisco, CA 94016" +286655,Macbook Pro Laptop,1,1700,11/02/19 10:41,"296 Hill St, Atlanta, GA 30301" +286656,Flatscreen TV,1,300,11/19/19 09:59,"678 Maple St, Seattle, WA 98101" +286657,27in 4K Gaming Monitor,1,389.99,11/03/19 14:28,"155 Park St, Dallas, TX 75001" +286658,AAA Batteries (4-pack),1,2.99,11/11/19 12:47,"501 Chestnut St, Austin, TX 73301" +286659,AAA Batteries (4-pack),1,2.99,11/09/19 23:46,"751 South St, Dallas, TX 75001" +286660,Apple Airpods Headphones,1,150,11/16/19 18:07,"989 River St, Dallas, TX 75001" +286661,AA Batteries (4-pack),1,3.84,11/30/19 20:15,"471 9th St, Los Angeles, CA 90001" +286662,USB-C Charging Cable,1,11.95,11/26/19 10:24,"399 South St, Atlanta, GA 30301" +286663,34in Ultrawide Monitor,1,379.99,11/03/19 11:01,"456 Johnson St, Austin, TX 73301" +286664,Lightning Charging Cable,1,14.95,11/17/19 10:26,"613 Hill St, Portland, OR 97035" +286665,34in Ultrawide Monitor,1,379.99,11/12/19 15:08,"92 Main St, San Francisco, CA 94016" +286666,Lightning Charging Cable,1,14.95,11/26/19 08:00,"748 North St, San Francisco, CA 94016" +286667,Bose SoundSport Headphones,1,99.99,11/05/19 22:02,"107 Washington St, Los Angeles, CA 90001" +286668,Bose SoundSport Headphones,1,99.99,11/23/19 09:10,"558 6th St, Los Angeles, CA 90001" +286669,Apple Airpods Headphones,1,150,11/03/19 16:03,"564 Willow St, New York City, NY 10001" +286670,Bose SoundSport Headphones,1,99.99,11/08/19 19:14,"731 Wilson St, New York City, NY 10001" +286671,Apple Airpods Headphones,1,150,11/30/19 23:19,"473 Church St, Atlanta, GA 30301" +286672,34in Ultrawide Monitor,1,379.99,11/23/19 16:42,"432 Jefferson St, Atlanta, GA 30301" +286673,27in 4K Gaming Monitor,1,389.99,11/18/19 15:23,"649 Washington St, San Francisco, CA 94016" +286674,Vareebadd Phone,1,400,11/18/19 11:08,"381 Center St, Atlanta, GA 30301" +286675,Wired Headphones,1,11.99,11/24/19 10:00,"83 8th St, Seattle, WA 98101" +286676,Lightning Charging Cable,1,14.95,11/29/19 13:55,"729 9th St, Atlanta, GA 30301" +286677,Bose SoundSport Headphones,1,99.99,11/27/19 21:58,"134 Meadow St, Austin, TX 73301" +286678,USB-C Charging Cable,1,11.95,11/14/19 11:10,"431 Chestnut St, Los Angeles, CA 90001" +286679,USB-C Charging Cable,1,11.95,11/21/19 20:15,"518 Adams St, Atlanta, GA 30301" +286680,AA Batteries (4-pack),2,3.84,11/14/19 10:40,"716 West St, Los Angeles, CA 90001" +286681,AA Batteries (4-pack),1,3.84,11/29/19 10:42,"715 Main St, Dallas, TX 75001" +286682,Bose SoundSport Headphones,1,99.99,11/20/19 02:15,"224 West St, San Francisco, CA 94016" +286683,USB-C Charging Cable,1,11.95,11/10/19 13:40,"868 Washington St, San Francisco, CA 94016" +286684,AAA Batteries (4-pack),1,2.99,11/18/19 14:32,"390 Cedar St, Los Angeles, CA 90001" +286685,AA Batteries (4-pack),1,3.84,11/10/19 23:07,"256 11th St, Boston, MA 02215" +286686,27in 4K Gaming Monitor,1,389.99,11/04/19 16:09,"25 Highland St, New York City, NY 10001" +286687,USB-C Charging Cable,1,11.95,11/29/19 14:18,"135 Sunset St, Atlanta, GA 30301" +286688,AA Batteries (4-pack),1,3.84,11/07/19 17:09,"411 Spruce St, Atlanta, GA 30301" +286689,27in FHD Monitor,1,149.99,11/21/19 12:00,"281 8th St, Austin, TX 73301" +286690,ThinkPad Laptop,1,999.99,11/04/19 18:46,"352 Adams St, Portland, OR 97035" +286691,27in 4K Gaming Monitor,1,389.99,11/26/19 19:52,"183 Jefferson St, Los Angeles, CA 90001" +286692,20in Monitor,1,109.99,11/23/19 07:56,"615 10th St, Los Angeles, CA 90001" +286693,USB-C Charging Cable,1,11.95,11/10/19 21:50,"420 Washington St, Portland, ME 04101" +286694,AAA Batteries (4-pack),1,2.99,11/25/19 20:43,"936 1st St, New York City, NY 10001" +286695,Wired Headphones,1,11.99,11/06/19 13:33,"83 11th St, Dallas, TX 75001" +286696,AAA Batteries (4-pack),2,2.99,11/21/19 15:02,"529 North St, Boston, MA 02215" +286697,AAA Batteries (4-pack),4,2.99,11/28/19 19:03,"463 Lake St, Los Angeles, CA 90001" +286698,AAA Batteries (4-pack),1,2.99,11/14/19 22:26,"739 Washington St, San Francisco, CA 94016" +286699,Bose SoundSport Headphones,1,99.99,11/03/19 13:43,"463 Wilson St, San Francisco, CA 94016" +286700,Wired Headphones,1,11.99,11/14/19 20:21,"925 Highland St, San Francisco, CA 94016" +286701,Bose SoundSport Headphones,1,99.99,11/15/19 22:53,"722 5th St, San Francisco, CA 94016" +286702,AA Batteries (4-pack),2,3.84,11/15/19 12:32,"234 Cedar St, Dallas, TX 75001" +286703,USB-C Charging Cable,2,11.95,11/02/19 13:26,"63 Hickory St, San Francisco, CA 94016" +286704,Lightning Charging Cable,1,14.95,11/21/19 11:14,"978 Spruce St, San Francisco, CA 94016" +286705,AAA Batteries (4-pack),2,2.99,11/09/19 14:43,"307 10th St, New York City, NY 10001" +286706,ThinkPad Laptop,1,999.99,11/27/19 18:15,"962 Johnson St, Los Angeles, CA 90001" +286707,ThinkPad Laptop,1,999.99,11/11/19 06:57,"773 Madison St, San Francisco, CA 94016" +286708,Lightning Charging Cable,1,14.95,11/02/19 10:46,"606 8th St, New York City, NY 10001" +286709,Bose SoundSport Headphones,1,99.99,11/23/19 13:33,"290 Forest St, New York City, NY 10001" +286710,Flatscreen TV,1,300,11/27/19 19:13,"530 2nd St, Austin, TX 73301" +286711,Bose SoundSport Headphones,1,99.99,11/26/19 01:15,"783 Hickory St, San Francisco, CA 94016" +286712,20in Monitor,1,109.99,11/15/19 12:54,"405 Adams St, Austin, TX 73301" +286713,Wired Headphones,1,11.99,11/10/19 10:36,"869 Dogwood St, Portland, OR 97035" +286714,Apple Airpods Headphones,1,150,11/04/19 22:26,"426 11th St, New York City, NY 10001" +286715,AAA Batteries (4-pack),3,2.99,11/26/19 11:13,"576 10th St, Los Angeles, CA 90001" +286716,AA Batteries (4-pack),1,3.84,11/06/19 15:53,"893 Pine St, New York City, NY 10001" +286717,Lightning Charging Cable,1,14.95,11/21/19 16:20,"466 10th St, San Francisco, CA 94016" +286718,Wired Headphones,1,11.99,11/25/19 19:01,"674 Park St, San Francisco, CA 94016" +286719,AA Batteries (4-pack),1,3.84,11/01/19 11:55,"825 12th St, San Francisco, CA 94016" +286720,AA Batteries (4-pack),1,3.84,11/12/19 09:46,"33 11th St, Dallas, TX 75001" +286721,Flatscreen TV,1,300,11/02/19 07:44,"843 Main St, San Francisco, CA 94016" +286722,AA Batteries (4-pack),2,3.84,11/23/19 13:10,"868 Forest St, Austin, TX 73301" +286723,Lightning Charging Cable,1,14.95,11/23/19 17:31,"151 Ridge St, Boston, MA 02215" +286724,Wired Headphones,1,11.99,11/03/19 22:56,"239 Johnson St, Atlanta, GA 30301" +286725,Lightning Charging Cable,1,14.95,11/27/19 09:35,"71 Sunset St, Los Angeles, CA 90001" +286726,Flatscreen TV,1,300,11/25/19 15:35,"912 Jefferson St, Los Angeles, CA 90001" +286727,LG Dryer,1,600.0,11/27/19 18:47,"112 Adams St, Atlanta, GA 30301" +286728,Bose SoundSport Headphones,1,99.99,11/20/19 21:12,"473 Cedar St, Austin, TX 73301" +286729,34in Ultrawide Monitor,1,379.99,11/10/19 17:34,"778 Main St, New York City, NY 10001" +286730,34in Ultrawide Monitor,1,379.99,11/04/19 15:43,"382 Wilson St, San Francisco, CA 94016" +286731,Lightning Charging Cable,1,14.95,11/23/19 13:42,"934 River St, Atlanta, GA 30301" +286732,USB-C Charging Cable,1,11.95,11/22/19 07:58,"736 Washington St, Portland, OR 97035" +,,,,, +286733,Lightning Charging Cable,1,14.95,11/26/19 18:54,"631 Meadow St, Boston, MA 02215" +286734,iPhone,1,700,11/02/19 09:39,"610 Sunset St, San Francisco, CA 94016" +286734,Lightning Charging Cable,1,14.95,11/02/19 09:39,"610 Sunset St, San Francisco, CA 94016" +286735,Lightning Charging Cable,1,14.95,11/24/19 15:01,"888 11th St, Austin, TX 73301" +286736,AAA Batteries (4-pack),1,2.99,11/14/19 12:01,"926 Cedar St, Boston, MA 02215" +286737,AAA Batteries (4-pack),1,2.99,11/04/19 11:19,"138 Hill St, Seattle, WA 98101" +286738,Lightning Charging Cable,1,14.95,11/12/19 19:20,"680 Willow St, San Francisco, CA 94016" +286739,USB-C Charging Cable,1,11.95,11/12/19 21:52,"271 Madison St, New York City, NY 10001" +286740,Google Phone,1,600,11/11/19 09:01,"422 Pine St, San Francisco, CA 94016" +286740,USB-C Charging Cable,1,11.95,11/11/19 09:01,"422 Pine St, San Francisco, CA 94016" +286741,Bose SoundSport Headphones,1,99.99,11/25/19 11:46,"791 Adams St, Seattle, WA 98101" +286742,AAA Batteries (4-pack),1,2.99,11/14/19 13:12,"360 13th St, Austin, TX 73301" +286743,AAA Batteries (4-pack),1,2.99,11/04/19 19:21,"466 1st St, Seattle, WA 98101" +286744,USB-C Charging Cable,1,11.95,11/03/19 18:24,"542 Park St, San Francisco, CA 94016" +286745,AA Batteries (4-pack),1,3.84,11/05/19 10:57,"952 Lincoln St, Boston, MA 02215" +286746,27in 4K Gaming Monitor,1,389.99,11/29/19 22:58,"402 Meadow St, Dallas, TX 75001" +286747,Apple Airpods Headphones,1,150,11/17/19 21:01,"66 Main St, Dallas, TX 75001" +286748,Vareebadd Phone,1,400,11/22/19 19:13,"547 River St, Seattle, WA 98101" +286749,Vareebadd Phone,1,400,11/29/19 21:18,"599 Main St, Los Angeles, CA 90001" +286750,Apple Airpods Headphones,1,150,11/20/19 10:50,"289 Cherry St, New York City, NY 10001" +286751,Vareebadd Phone,1,400,11/02/19 10:47,"413 11th St, Portland, OR 97035" +286752,27in 4K Gaming Monitor,1,389.99,11/20/19 12:53,"578 North St, Boston, MA 02215" +286753,USB-C Charging Cable,1,11.95,11/23/19 09:21,"219 Adams St, Atlanta, GA 30301" +286754,Flatscreen TV,1,300,11/08/19 00:22,"657 Lake St, Atlanta, GA 30301" +286755,Lightning Charging Cable,1,14.95,11/10/19 09:07,"885 Wilson St, Dallas, TX 75001" +286756,27in FHD Monitor,1,149.99,11/09/19 21:55,"199 West St, New York City, NY 10001" +286757,Lightning Charging Cable,1,14.95,11/11/19 18:25,"551 Center St, Seattle, WA 98101" +286758,AAA Batteries (4-pack),1,2.99,11/28/19 08:20,"628 Spruce St, Los Angeles, CA 90001" +286759,USB-C Charging Cable,1,11.95,11/15/19 16:38,"260 South St, Dallas, TX 75001" +286760,USB-C Charging Cable,2,11.95,11/03/19 21:56,"100 Center St, Boston, MA 02215" +286761,USB-C Charging Cable,2,11.95,11/20/19 08:54,"353 Main St, San Francisco, CA 94016" +286762,AAA Batteries (4-pack),1,2.99,11/28/19 23:51,"519 4th St, Boston, MA 02215" +286763,Lightning Charging Cable,2,14.95,11/14/19 13:32,"674 Forest St, Los Angeles, CA 90001" +286764,Wired Headphones,1,11.99,11/01/19 22:28,"641 13th St, Los Angeles, CA 90001" +286765,Wired Headphones,1,11.99,11/10/19 14:22,"699 7th St, Boston, MA 02215" +286766,Lightning Charging Cable,1,14.95,11/30/19 11:21,"465 Main St, Portland, ME 04101" +286767,USB-C Charging Cable,1,11.95,11/12/19 11:43,"863 Wilson St, New York City, NY 10001" +286768,34in Ultrawide Monitor,1,379.99,11/23/19 23:58,"528 Sunset St, Los Angeles, CA 90001" +286769,AA Batteries (4-pack),1,3.84,11/28/19 12:30,"744 Lakeview St, Dallas, TX 75001" +286770,27in FHD Monitor,1,149.99,11/26/19 17:33,"82 4th St, San Francisco, CA 94016" +286771,Apple Airpods Headphones,1,150,11/12/19 19:30,"786 8th St, Boston, MA 02215" +286772,Apple Airpods Headphones,1,150,11/19/19 16:44,"78 Maple St, San Francisco, CA 94016" +286773,34in Ultrawide Monitor,1,379.99,11/28/19 08:45,"68 11th St, Austin, TX 73301" +286774,USB-C Charging Cable,1,11.95,11/07/19 02:06,"563 Hill St, New York City, NY 10001" +286775,27in FHD Monitor,1,149.99,11/01/19 12:48,"65 1st St, Atlanta, GA 30301" +286776,LG Washing Machine,1,600.0,11/25/19 11:27,"856 Cherry St, Los Angeles, CA 90001" +286777,Google Phone,1,600,11/12/19 11:10,"30 Cedar St, Boston, MA 02215" +286778,AA Batteries (4-pack),1,3.84,11/03/19 15:47,"822 Meadow St, Atlanta, GA 30301" +286779,Google Phone,1,600,11/23/19 10:24,"544 Willow St, San Francisco, CA 94016" +286780,Lightning Charging Cable,1,14.95,11/25/19 23:06,"617 8th St, Atlanta, GA 30301" +286781,Bose SoundSport Headphones,1,99.99,11/13/19 06:30,"430 Madison St, San Francisco, CA 94016" +286782,ThinkPad Laptop,1,999.99,11/13/19 23:26,"895 Church St, Los Angeles, CA 90001" +286783,AAA Batteries (4-pack),2,2.99,11/16/19 21:13,"273 Meadow St, Dallas, TX 75001" +286784,Wired Headphones,1,11.99,11/27/19 19:39,"441 Forest St, Boston, MA 02215" +286785,AA Batteries (4-pack),1,3.84,11/22/19 10:24,"247 2nd St, San Francisco, CA 94016" +286786,AAA Batteries (4-pack),1,2.99,11/16/19 10:23,"870 Hickory St, New York City, NY 10001" +286787,AA Batteries (4-pack),1,3.84,11/09/19 08:40,"202 Johnson St, Los Angeles, CA 90001" +286788,USB-C Charging Cable,1,11.95,11/20/19 22:03,"474 2nd St, Boston, MA 02215" +286789,AA Batteries (4-pack),2,3.84,11/27/19 15:35,"683 10th St, San Francisco, CA 94016" +286790,Lightning Charging Cable,1,14.95,11/05/19 17:35,"312 Cherry St, Portland, ME 04101" +286791,iPhone,1,700,11/16/19 19:29,"799 Church St, San Francisco, CA 94016" +286791,Lightning Charging Cable,1,14.95,11/16/19 19:29,"799 Church St, San Francisco, CA 94016" +286792,27in 4K Gaming Monitor,1,389.99,11/01/19 15:51,"964 8th St, San Francisco, CA 94016" +286793,Lightning Charging Cable,1,14.95,11/06/19 07:03,"26 Spruce St, Los Angeles, CA 90001" +286794,USB-C Charging Cable,1,11.95,11/28/19 15:02,"275 6th St, Boston, MA 02215" +286795,20in Monitor,1,109.99,11/14/19 18:44,"513 Johnson St, Los Angeles, CA 90001" +286796,Google Phone,1,600,11/11/19 15:46,"656 River St, San Francisco, CA 94016" +286797,AAA Batteries (4-pack),2,2.99,11/12/19 20:06,"999 Highland St, Boston, MA 02215" +286798,20in Monitor,1,109.99,11/06/19 15:40,"247 14th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +286799,Macbook Pro Laptop,1,1700,11/11/19 16:26,"846 River St, San Francisco, CA 94016" +286800,AAA Batteries (4-pack),2,2.99,11/28/19 14:47,"906 Willow St, San Francisco, CA 94016" +286801,AAA Batteries (4-pack),1,2.99,11/03/19 17:42,"507 8th St, Boston, MA 02215" +286802,Google Phone,1,600,11/20/19 15:16,"482 Lincoln St, San Francisco, CA 94016" +286803,Bose SoundSport Headphones,1,99.99,11/30/19 14:12,"301 6th St, New York City, NY 10001" +286804,Bose SoundSport Headphones,1,99.99,11/16/19 08:04,"253 Forest St, San Francisco, CA 94016" +,,,,, +286805,USB-C Charging Cable,1,11.95,11/22/19 20:17,"328 Cherry St, Dallas, TX 75001" +286806,USB-C Charging Cable,1,11.95,11/17/19 11:47,"930 Chestnut St, Dallas, TX 75001" +286807,USB-C Charging Cable,1,11.95,11/06/19 13:08,"112 North St, Boston, MA 02215" +286808,Wired Headphones,1,11.99,11/29/19 06:26,"269 Sunset St, Atlanta, GA 30301" +286809,Lightning Charging Cable,1,14.95,11/30/19 11:40,"549 13th St, Los Angeles, CA 90001" +286810,AAA Batteries (4-pack),1,2.99,11/23/19 10:06,"520 Willow St, Austin, TX 73301" +286811,Apple Airpods Headphones,1,150,11/23/19 12:48,"428 Spruce St, New York City, NY 10001" +286812,AAA Batteries (4-pack),1,2.99,11/20/19 10:30,"184 6th St, Seattle, WA 98101" +286813,Wired Headphones,1,11.99,11/30/19 10:17,"460 River St, New York City, NY 10001" +286814,Lightning Charging Cable,1,14.95,11/22/19 21:00,"433 9th St, San Francisco, CA 94016" +286815,Lightning Charging Cable,2,14.95,11/13/19 22:36,"876 Wilson St, San Francisco, CA 94016" +286816,27in FHD Monitor,1,149.99,11/27/19 14:37,"205 Lincoln St, San Francisco, CA 94016" +286817,USB-C Charging Cable,1,11.95,11/02/19 16:40,"538 7th St, Portland, ME 04101" +286818,Wired Headphones,3,11.99,11/14/19 19:54,"764 Park St, New York City, NY 10001" +286819,USB-C Charging Cable,1,11.95,11/29/19 04:27,"969 Elm St, Los Angeles, CA 90001" +286820,AA Batteries (4-pack),1,3.84,11/11/19 18:27,"43 Center St, Los Angeles, CA 90001" +286821,USB-C Charging Cable,1,11.95,11/23/19 22:27,"501 Lake St, Boston, MA 02215" +286822,USB-C Charging Cable,1,11.95,11/22/19 04:07,"605 Pine St, San Francisco, CA 94016" +286823,AAA Batteries (4-pack),1,2.99,11/05/19 18:11,"544 Church St, Boston, MA 02215" +286824,Macbook Pro Laptop,1,1700,11/06/19 22:21,"757 Center St, Los Angeles, CA 90001" +286825,iPhone,1,700,11/12/19 20:05,"872 11th St, Boston, MA 02215" +286826,Bose SoundSport Headphones,1,99.99,11/12/19 18:50,"943 South St, Los Angeles, CA 90001" +286827,27in FHD Monitor,1,149.99,11/23/19 21:56,"231 Church St, San Francisco, CA 94016" +286828,Lightning Charging Cable,1,14.95,11/16/19 19:53,"831 Lake St, Seattle, WA 98101" +286829,Apple Airpods Headphones,1,150,11/20/19 19:13,"380 Cherry St, Boston, MA 02215" +286829,27in 4K Gaming Monitor,1,389.99,11/20/19 19:13,"380 Cherry St, Boston, MA 02215" +286830,20in Monitor,1,109.99,11/22/19 06:14,"676 Lakeview St, New York City, NY 10001" +286831,Bose SoundSport Headphones,2,99.99,11/05/19 21:03,"213 West St, Boston, MA 02215" +286832,Macbook Pro Laptop,1,1700,11/12/19 09:54,"66 South St, Boston, MA 02215" +286833,Apple Airpods Headphones,1,150,11/12/19 14:41,"487 Meadow St, Los Angeles, CA 90001" +286834,AA Batteries (4-pack),1,3.84,11/29/19 19:04,"709 Highland St, Los Angeles, CA 90001" +286835,Wired Headphones,1,11.99,11/20/19 23:02,"51 7th St, Los Angeles, CA 90001" +286836,AAA Batteries (4-pack),2,2.99,11/13/19 20:31,"988 Ridge St, New York City, NY 10001" +286837,Lightning Charging Cable,1,14.95,11/18/19 01:39,"996 Maple St, New York City, NY 10001" +286838,AAA Batteries (4-pack),5,2.99,11/12/19 20:13,"195 Ridge St, Los Angeles, CA 90001" +286839,Wired Headphones,1,11.99,11/24/19 23:09,"855 Johnson St, Los Angeles, CA 90001" +286840,Lightning Charging Cable,1,14.95,11/08/19 10:16,"495 9th St, New York City, NY 10001" +286841,AAA Batteries (4-pack),1,2.99,11/04/19 19:20,"444 Adams St, Portland, OR 97035" +286842,Wired Headphones,1,11.99,11/08/19 19:14,"592 Forest St, San Francisco, CA 94016" +286843,Wired Headphones,1,11.99,11/05/19 08:38,"199 14th St, New York City, NY 10001" +286844,Bose SoundSport Headphones,1,99.99,11/16/19 23:03,"503 River St, Boston, MA 02215" +286845,Apple Airpods Headphones,1,150,11/10/19 19:22,"997 Madison St, New York City, NY 10001" +286846,Vareebadd Phone,1,400,11/10/19 17:21,"363 Chestnut St, Seattle, WA 98101" +286847,27in FHD Monitor,1,149.99,11/07/19 09:34,"70 West St, Dallas, TX 75001" +286848,USB-C Charging Cable,1,11.95,11/09/19 17:02,"311 Pine St, San Francisco, CA 94016" +286849,Wired Headphones,1,11.99,11/22/19 01:33,"693 Spruce St, San Francisco, CA 94016" +286850,Lightning Charging Cable,1,14.95,11/20/19 12:59,"855 6th St, New York City, NY 10001" +286851,USB-C Charging Cable,1,11.95,11/30/19 19:17,"404 North St, New York City, NY 10001" +286852,iPhone,1,700,11/23/19 21:12,"716 Washington St, Boston, MA 02215" +286853,AA Batteries (4-pack),1,3.84,11/29/19 13:04,"429 Jackson St, Austin, TX 73301" +286854,Lightning Charging Cable,1,14.95,11/15/19 23:01,"828 Jackson St, Boston, MA 02215" +286855,Macbook Pro Laptop,1,1700,11/12/19 09:25,"271 1st St, Boston, MA 02215" +286856,AA Batteries (4-pack),2,3.84,11/29/19 17:34,"443 Park St, San Francisco, CA 94016" +286857,Bose SoundSport Headphones,1,99.99,11/10/19 20:08,"969 North St, San Francisco, CA 94016" +286858,20in Monitor,1,109.99,11/16/19 19:03,"510 Ridge St, Los Angeles, CA 90001" +286859,20in Monitor,1,109.99,11/09/19 19:50,"852 Johnson St, San Francisco, CA 94016" +286860,Google Phone,1,600,11/30/19 19:01,"823 Church St, Los Angeles, CA 90001" +286861,Macbook Pro Laptop,1,1700,11/26/19 17:05,"621 River St, Boston, MA 02215" +286862,AA Batteries (4-pack),1,3.84,11/02/19 00:50,"996 Lakeview St, San Francisco, CA 94016" +286863,Apple Airpods Headphones,1,150,11/13/19 13:59,"966 6th St, New York City, NY 10001" +286864,34in Ultrawide Monitor,1,379.99,11/27/19 01:05,"389 5th St, Austin, TX 73301" +286865,USB-C Charging Cable,1,11.95,11/20/19 23:33,"281 Pine St, Seattle, WA 98101" +286866,Lightning Charging Cable,1,14.95,11/08/19 06:10,"904 Highland St, San Francisco, CA 94016" +,,,,, +286867,Bose SoundSport Headphones,1,99.99,11/20/19 13:01,"827 Adams St, San Francisco, CA 94016" +286868,USB-C Charging Cable,1,11.95,11/18/19 13:55,"73 Chestnut St, Austin, TX 73301" +286869,Lightning Charging Cable,1,14.95,11/14/19 14:07,"15 Jefferson St, Boston, MA 02215" +286870,Macbook Pro Laptop,1,1700,11/29/19 10:24,"336 Sunset St, New York City, NY 10001" +286871,Flatscreen TV,1,300,11/19/19 00:00,"195 6th St, Atlanta, GA 30301" +286872,34in Ultrawide Monitor,1,379.99,11/19/19 00:49,"410 Cherry St, Seattle, WA 98101" +286873,Wired Headphones,1,11.99,11/01/19 23:04,"532 Ridge St, San Francisco, CA 94016" +286874,Macbook Pro Laptop,1,1700,11/05/19 12:36,"931 Forest St, Austin, TX 73301" +286875,AAA Batteries (4-pack),3,2.99,11/01/19 09:24,"960 6th St, Boston, MA 02215" +286876,USB-C Charging Cable,1,11.95,11/02/19 21:12,"927 5th St, Dallas, TX 75001" +286877,Lightning Charging Cable,1,14.95,11/26/19 02:55,"429 10th St, Boston, MA 02215" +286878,Lightning Charging Cable,1,14.95,11/19/19 20:10,"687 West St, Portland, OR 97035" +286879,Lightning Charging Cable,1,14.95,11/26/19 20:44,"179 11th St, Boston, MA 02215" +286880,Apple Airpods Headphones,1,150,11/28/19 09:41,"156 Main St, New York City, NY 10001" +286881,Bose SoundSport Headphones,1,99.99,11/27/19 10:53,"945 Walnut St, San Francisco, CA 94016" +286882,AAA Batteries (4-pack),1,2.99,11/28/19 12:54,"166 Forest St, Atlanta, GA 30301" +286883,Lightning Charging Cable,1,14.95,11/27/19 13:37,"202 6th St, San Francisco, CA 94016" +286884,USB-C Charging Cable,1,11.95,11/23/19 12:20,"551 Meadow St, Atlanta, GA 30301" +286885,USB-C Charging Cable,1,11.95,11/21/19 18:44,"363 Hickory St, San Francisco, CA 94016" +286886,34in Ultrawide Monitor,1,379.99,11/21/19 20:41,"144 7th St, Seattle, WA 98101" +286887,Lightning Charging Cable,1,14.95,11/21/19 15:36,"788 Lake St, Boston, MA 02215" +286888,Lightning Charging Cable,1,14.95,11/29/19 11:56,"159 Johnson St, San Francisco, CA 94016" +286889,Bose SoundSport Headphones,1,99.99,11/20/19 19:24,"588 Highland St, Boston, MA 02215" +286890,AA Batteries (4-pack),2,3.84,11/05/19 21:33,"703 12th St, Boston, MA 02215" +286891,AAA Batteries (4-pack),3,2.99,11/16/19 19:19,"851 Hill St, San Francisco, CA 94016" +286892,USB-C Charging Cable,1,11.95,11/11/19 16:24,"262 Walnut St, Boston, MA 02215" +286893,USB-C Charging Cable,1,11.95,11/16/19 12:22,"43 2nd St, San Francisco, CA 94016" +286894,USB-C Charging Cable,1,11.95,11/28/19 15:44,"495 10th St, Los Angeles, CA 90001" +286895,Wired Headphones,1,11.99,11/06/19 14:51,"727 Madison St, Boston, MA 02215" +286896,USB-C Charging Cable,1,11.95,11/28/19 13:23,"18 Center St, Portland, OR 97035" +286897,AAA Batteries (4-pack),1,2.99,11/22/19 14:07,"789 Spruce St, Boston, MA 02215" +286898,Lightning Charging Cable,1,14.95,11/20/19 18:53,"511 5th St, Los Angeles, CA 90001" +286899,Flatscreen TV,1,300,11/23/19 10:46,"210 Main St, New York City, NY 10001" +286900,Bose SoundSport Headphones,1,99.99,11/21/19 11:58,"658 11th St, New York City, NY 10001" +286901,AAA Batteries (4-pack),1,2.99,11/30/19 07:56,"247 Johnson St, Los Angeles, CA 90001" +286902,USB-C Charging Cable,1,11.95,11/13/19 15:08,"102 Jefferson St, Los Angeles, CA 90001" +286903,USB-C Charging Cable,1,11.95,11/09/19 18:42,"298 6th St, Austin, TX 73301" +286904,AAA Batteries (4-pack),1,2.99,11/24/19 11:14,"119 Dogwood St, New York City, NY 10001" +286905,Wired Headphones,1,11.99,11/27/19 02:05,"952 Dogwood St, Los Angeles, CA 90001" +286906,Flatscreen TV,1,300,11/24/19 20:36,"428 Madison St, Portland, OR 97035" +286907,AAA Batteries (4-pack),1,2.99,11/26/19 18:18,"189 Dogwood St, San Francisco, CA 94016" +286908,27in FHD Monitor,1,149.99,11/12/19 18:08,"246 Chestnut St, San Francisco, CA 94016" +286909,Lightning Charging Cable,1,14.95,11/14/19 14:29,"921 6th St, Atlanta, GA 30301" +286910,Vareebadd Phone,1,400,11/16/19 17:30,"125 Hickory St, Seattle, WA 98101" +286911,AAA Batteries (4-pack),3,2.99,11/28/19 14:33,"724 4th St, San Francisco, CA 94016" +286912,Wired Headphones,1,11.99,11/20/19 10:32,"489 6th St, San Francisco, CA 94016" +286913,LG Washing Machine,1,600.0,11/01/19 18:23,"708 Meadow St, Los Angeles, CA 90001" +286914,Lightning Charging Cable,1,14.95,11/04/19 20:47,"12 6th St, Los Angeles, CA 90001" +286915,Flatscreen TV,1,300,11/04/19 16:40,"790 Main St, Atlanta, GA 30301" +286916,Wired Headphones,1,11.99,12/01/19 00:07,"769 5th St, Seattle, WA 98101" +286917,AA Batteries (4-pack),1,3.84,11/13/19 14:13,"525 8th St, Seattle, WA 98101" +286918,AAA Batteries (4-pack),2,2.99,11/30/19 20:57,"671 12th St, Los Angeles, CA 90001" +286919,AA Batteries (4-pack),1,3.84,11/27/19 14:25,"860 Jackson St, Los Angeles, CA 90001" +286920,Flatscreen TV,1,300,11/28/19 21:29,"377 Highland St, San Francisco, CA 94016" +286921,Bose SoundSport Headphones,1,99.99,11/04/19 11:20,"165 Lake St, Boston, MA 02215" +286922,AA Batteries (4-pack),1,3.84,11/16/19 14:44,"199 Maple St, Austin, TX 73301" +286923,Apple Airpods Headphones,1,150,11/23/19 11:45,"250 Ridge St, Boston, MA 02215" +286924,Lightning Charging Cable,2,14.95,11/20/19 05:37,"61 Park St, Seattle, WA 98101" +286925,Bose SoundSport Headphones,1,99.99,11/29/19 13:30,"59 Lake St, Portland, OR 97035" +286926,AAA Batteries (4-pack),1,2.99,11/23/19 17:30,"7 Sunset St, New York City, NY 10001" +286927,AAA Batteries (4-pack),1,2.99,11/01/19 22:52,"830 Church St, San Francisco, CA 94016" +286928,34in Ultrawide Monitor,1,379.99,11/18/19 05:55,"130 8th St, San Francisco, CA 94016" +286929,Lightning Charging Cable,1,14.95,11/01/19 13:35,"221 Ridge St, Boston, MA 02215" +286930,AA Batteries (4-pack),1,3.84,11/20/19 18:03,"328 14th St, Austin, TX 73301" +286931,34in Ultrawide Monitor,1,379.99,11/29/19 14:21,"194 7th St, Seattle, WA 98101" +286932,iPhone,1,700,11/06/19 18:13,"131 Pine St, New York City, NY 10001" +286933,Apple Airpods Headphones,1,150,11/23/19 14:32,"512 Hickory St, Atlanta, GA 30301" +286934,20in Monitor,1,109.99,11/16/19 17:33,"626 7th St, New York City, NY 10001" +286935,Flatscreen TV,1,300,11/03/19 08:59,"737 5th St, Los Angeles, CA 90001" +286936,Macbook Pro Laptop,1,1700,11/17/19 10:58,"890 Jackson St, Dallas, TX 75001" +286937,USB-C Charging Cable,1,11.95,11/17/19 13:52,"33 West St, Atlanta, GA 30301" +286938,20in Monitor,1,109.99,11/28/19 15:40,"419 2nd St, Portland, OR 97035" +286939,USB-C Charging Cable,1,11.95,11/02/19 22:55,"4 Ridge St, San Francisco, CA 94016" +286940,AA Batteries (4-pack),1,3.84,11/29/19 17:09,"89 Madison St, San Francisco, CA 94016" +286941,34in Ultrawide Monitor,1,379.99,11/28/19 07:53,"332 Chestnut St, Los Angeles, CA 90001" +286942,AA Batteries (4-pack),1,3.84,11/27/19 15:16,"665 Hickory St, Dallas, TX 75001" +286943,USB-C Charging Cable,1,11.95,11/03/19 15:13,"679 Meadow St, Atlanta, GA 30301" +286944,34in Ultrawide Monitor,1,379.99,11/18/19 16:53,"682 Dogwood St, Seattle, WA 98101" +286945,USB-C Charging Cable,1,11.95,11/07/19 21:59,"72 West St, Seattle, WA 98101" +286946,Wired Headphones,1,11.99,11/11/19 12:02,"703 2nd St, San Francisco, CA 94016" +286947,27in FHD Monitor,1,149.99,11/18/19 04:49,"900 Cedar St, Atlanta, GA 30301" +286948,34in Ultrawide Monitor,1,379.99,11/02/19 22:50,"325 Church St, Portland, OR 97035" +286949,AA Batteries (4-pack),1,3.84,11/13/19 23:02,"918 Johnson St, San Francisco, CA 94016" +286950,Flatscreen TV,1,300,11/01/19 13:48,"972 10th St, Los Angeles, CA 90001" +286951,Apple Airpods Headphones,1,150,11/30/19 20:33,"978 Jefferson St, New York City, NY 10001" +286952,Bose SoundSport Headphones,1,99.99,11/22/19 20:46,"322 1st St, Los Angeles, CA 90001" +286953,AAA Batteries (4-pack),1,2.99,11/13/19 13:34,"139 Lakeview St, New York City, NY 10001" +286954,Apple Airpods Headphones,1,150,11/03/19 21:36,"539 5th St, San Francisco, CA 94016" +286955,Lightning Charging Cable,1,14.95,11/03/19 21:05,"957 Hickory St, Atlanta, GA 30301" +286956,AA Batteries (4-pack),1,3.84,11/22/19 08:38,"601 5th St, Boston, MA 02215" +286957,Lightning Charging Cable,1,14.95,11/19/19 00:19,"240 North St, Los Angeles, CA 90001" +286958,AA Batteries (4-pack),1,3.84,11/08/19 18:40,"230 Meadow St, Boston, MA 02215" +286959,Apple Airpods Headphones,1,150,11/21/19 21:51,"438 12th St, Los Angeles, CA 90001" +286960,AAA Batteries (4-pack),2,2.99,11/21/19 23:42,"447 7th St, Los Angeles, CA 90001" +286961,Bose SoundSport Headphones,1,99.99,11/19/19 23:19,"348 10th St, Los Angeles, CA 90001" +286962,Lightning Charging Cable,1,14.95,11/02/19 20:54,"921 Pine St, Los Angeles, CA 90001" +286963,Lightning Charging Cable,1,14.95,11/28/19 17:04,"1 Meadow St, Atlanta, GA 30301" +286964,Vareebadd Phone,1,400,11/09/19 15:33,"992 West St, Dallas, TX 75001" +286965,27in FHD Monitor,1,149.99,11/28/19 05:46,"937 South St, San Francisco, CA 94016" +286966,AA Batteries (4-pack),2,3.84,11/04/19 04:40,"847 Washington St, New York City, NY 10001" +286967,Bose SoundSport Headphones,1,99.99,11/27/19 11:51,"478 8th St, Los Angeles, CA 90001" +286968,27in FHD Monitor,1,149.99,11/27/19 20:47,"742 Lake St, New York City, NY 10001" +286969,AA Batteries (4-pack),1,3.84,11/12/19 21:13,"844 Adams St, San Francisco, CA 94016" +286970,USB-C Charging Cable,1,11.95,11/05/19 18:19,"279 Walnut St, San Francisco, CA 94016" +286971,Apple Airpods Headphones,1,150,11/15/19 12:23,"456 Highland St, Los Angeles, CA 90001" +286972,Lightning Charging Cable,1,14.95,11/30/19 13:43,"44 4th St, Atlanta, GA 30301" +286973,AA Batteries (4-pack),1,3.84,11/15/19 11:18,"970 Washington St, San Francisco, CA 94016" +286974,AAA Batteries (4-pack),5,2.99,11/17/19 18:15,"422 8th St, New York City, NY 10001" +286975,Apple Airpods Headphones,1,150,11/22/19 22:52,"724 Pine St, San Francisco, CA 94016" +286976,AAA Batteries (4-pack),1,2.99,11/21/19 13:49,"220 9th St, Austin, TX 73301" +286977,Lightning Charging Cable,1,14.95,11/01/19 20:28,"497 Madison St, New York City, NY 10001" +286978,Lightning Charging Cable,1,14.95,11/19/19 00:28,"503 Dogwood St, Boston, MA 02215" +286979,Wired Headphones,1,11.99,11/09/19 12:10,"547 Highland St, San Francisco, CA 94016" +,,,,, +286980,27in FHD Monitor,1,149.99,11/18/19 13:07,"215 Park St, Portland, ME 04101" +286981,AA Batteries (4-pack),1,3.84,11/08/19 17:54,"4 Ridge St, Dallas, TX 75001" +,,,,, +286982,USB-C Charging Cable,1,11.95,11/22/19 20:28,"807 Lakeview St, San Francisco, CA 94016" +286983,AAA Batteries (4-pack),2,2.99,11/29/19 18:47,"101 South St, Atlanta, GA 30301" +286984,USB-C Charging Cable,1,11.95,11/19/19 10:06,"461 7th St, Seattle, WA 98101" +286985,USB-C Charging Cable,1,11.95,11/17/19 07:34,"33 5th St, New York City, NY 10001" +286986,AAA Batteries (4-pack),1,2.99,11/15/19 17:20,"618 4th St, Los Angeles, CA 90001" +286987,AA Batteries (4-pack),1,3.84,11/14/19 08:46,"289 Sunset St, Los Angeles, CA 90001" +286987,Wired Headphones,1,11.99,11/14/19 08:46,"289 Sunset St, Los Angeles, CA 90001" +286988,Macbook Pro Laptop,1,1700,11/13/19 01:25,"375 River St, Los Angeles, CA 90001" +286989,USB-C Charging Cable,2,11.95,11/27/19 18:08,"373 Ridge St, Austin, TX 73301" +286990,Wired Headphones,1,11.99,11/08/19 19:03,"1 8th St, New York City, NY 10001" +286991,AAA Batteries (4-pack),1,2.99,11/14/19 08:49,"323 River St, Seattle, WA 98101" +286992,Bose SoundSport Headphones,1,99.99,11/18/19 21:43,"70 Meadow St, Boston, MA 02215" +286993,Wired Headphones,1,11.99,11/24/19 12:07,"744 7th St, Los Angeles, CA 90001" +286994,AA Batteries (4-pack),2,3.84,11/04/19 01:04,"535 River St, San Francisco, CA 94016" +286995,Lightning Charging Cable,1,14.95,11/01/19 21:07,"696 Main St, Boston, MA 02215" +286996,Vareebadd Phone,1,400,11/22/19 00:46,"869 Lakeview St, New York City, NY 10001" +286997,iPhone,1,700,11/23/19 12:38,"124 Lake St, Los Angeles, CA 90001" +286998,Lightning Charging Cable,1,14.95,11/03/19 16:48,"135 Dogwood St, Atlanta, GA 30301" +286999,USB-C Charging Cable,1,11.95,11/20/19 09:22,"433 Dogwood St, San Francisco, CA 94016" +286999,AA Batteries (4-pack),3,3.84,11/20/19 09:22,"433 Dogwood St, San Francisco, CA 94016" +287000,USB-C Charging Cable,1,11.95,11/23/19 14:08,"624 10th St, San Francisco, CA 94016" +287001,Lightning Charging Cable,1,14.95,11/20/19 12:33,"657 Lincoln St, New York City, NY 10001" +287002,Vareebadd Phone,1,400,11/27/19 18:18,"977 Wilson St, San Francisco, CA 94016" +287003,Wired Headphones,1,11.99,11/07/19 16:19,"960 Jefferson St, New York City, NY 10001" +287004,27in 4K Gaming Monitor,1,389.99,11/18/19 18:29,"19 11th St, Atlanta, GA 30301" +287005,27in 4K Gaming Monitor,1,389.99,11/20/19 09:50,"317 Chestnut St, Austin, TX 73301" +287006,27in FHD Monitor,1,149.99,11/08/19 12:40,"594 West St, Boston, MA 02215" +287007,Macbook Pro Laptop,1,1700,11/09/19 22:15,"995 11th St, New York City, NY 10001" +287008,Bose SoundSport Headphones,1,99.99,11/24/19 19:09,"175 14th St, Seattle, WA 98101" +287009,AAA Batteries (4-pack),1,2.99,11/16/19 22:26,"716 Maple St, Atlanta, GA 30301" +287010,AAA Batteries (4-pack),2,2.99,11/24/19 22:26,"613 Dogwood St, Austin, TX 73301" +287011,Macbook Pro Laptop,1,1700,11/02/19 18:51,"203 Washington St, Los Angeles, CA 90001" +287012,Bose SoundSport Headphones,1,99.99,11/12/19 19:08,"595 Walnut St, San Francisco, CA 94016" +287013,Wired Headphones,1,11.99,11/27/19 20:48,"888 Hill St, Los Angeles, CA 90001" +287014,LG Dryer,1,600.0,11/19/19 12:31,"885 11th St, New York City, NY 10001" +287015,USB-C Charging Cable,1,11.95,11/16/19 22:19,"312 Pine St, San Francisco, CA 94016" +287016,Wired Headphones,1,11.99,11/17/19 15:04,"129 Sunset St, Los Angeles, CA 90001" +287017,USB-C Charging Cable,1,11.95,11/06/19 19:30,"787 Park St, San Francisco, CA 94016" +287018,27in 4K Gaming Monitor,1,389.99,11/29/19 12:20,"416 Forest St, San Francisco, CA 94016" +287018,Lightning Charging Cable,1,14.95,11/29/19 12:20,"416 Forest St, San Francisco, CA 94016" +287019,AAA Batteries (4-pack),1,2.99,11/23/19 13:25,"291 River St, Dallas, TX 75001" +287020,Apple Airpods Headphones,1,150,11/21/19 03:44,"284 River St, San Francisco, CA 94016" +287021,AAA Batteries (4-pack),1,2.99,11/24/19 23:20,"806 Lake St, Portland, OR 97035" +287022,Apple Airpods Headphones,1,150,11/09/19 08:33,"99 Madison St, New York City, NY 10001" +287023,Lightning Charging Cable,1,14.95,11/24/19 22:05,"658 Sunset St, Los Angeles, CA 90001" +287024,Lightning Charging Cable,1,14.95,11/11/19 22:41,"739 Jefferson St, Los Angeles, CA 90001" +287025,USB-C Charging Cable,1,11.95,11/03/19 14:03,"669 12th St, Seattle, WA 98101" +287026,Wired Headphones,1,11.99,11/02/19 14:06,"955 Washington St, Atlanta, GA 30301" +287027,Lightning Charging Cable,1,14.95,11/08/19 21:22,"419 Elm St, San Francisco, CA 94016" +287028,AA Batteries (4-pack),1,3.84,11/29/19 09:19,"405 Lakeview St, Los Angeles, CA 90001" +287029,USB-C Charging Cable,1,11.95,11/18/19 12:35,"94 Cherry St, New York City, NY 10001" +287030,USB-C Charging Cable,1,11.95,11/04/19 10:10,"785 North St, San Francisco, CA 94016" +287031,iPhone,1,700,11/18/19 10:26,"677 8th St, Los Angeles, CA 90001" +287032,AAA Batteries (4-pack),1,2.99,11/20/19 16:30,"987 6th St, Los Angeles, CA 90001" +287033,Apple Airpods Headphones,1,150,11/20/19 21:16,"57 Jackson St, Dallas, TX 75001" +287034,20in Monitor,1,109.99,11/03/19 19:52,"656 Forest St, Los Angeles, CA 90001" +287035,Apple Airpods Headphones,1,150,11/24/19 13:43,"896 7th St, Boston, MA 02215" +287036,34in Ultrawide Monitor,1,379.99,11/22/19 16:54,"137 Johnson St, Boston, MA 02215" +287037,Lightning Charging Cable,1,14.95,11/09/19 12:36,"927 Jackson St, San Francisco, CA 94016" +287038,Apple Airpods Headphones,1,150,11/09/19 15:47,"703 Elm St, New York City, NY 10001" +287039,AA Batteries (4-pack),1,3.84,11/09/19 21:34,"101 Cherry St, Los Angeles, CA 90001" +287040,Apple Airpods Headphones,1,150,11/05/19 01:46,"761 Hickory St, Los Angeles, CA 90001" +287041,27in 4K Gaming Monitor,1,389.99,11/24/19 18:10,"542 6th St, Los Angeles, CA 90001" +287042,20in Monitor,1,109.99,11/24/19 23:40,"795 Center St, Dallas, TX 75001" +287043,USB-C Charging Cable,1,11.95,11/18/19 17:52,"326 Wilson St, New York City, NY 10001" +287044,Apple Airpods Headphones,1,150,11/21/19 10:53,"221 Highland St, New York City, NY 10001" +287045,Wired Headphones,1,11.99,11/23/19 12:39,"702 Cedar St, Seattle, WA 98101" +287046,iPhone,1,700,11/14/19 12:29,"94 Madison St, New York City, NY 10001" +287047,AAA Batteries (4-pack),1,2.99,11/18/19 22:12,"8 Cherry St, Los Angeles, CA 90001" +287048,Bose SoundSport Headphones,1,99.99,11/18/19 19:44,"7 8th St, Boston, MA 02215" +287049,Wired Headphones,1,11.99,11/12/19 17:17,"752 4th St, Dallas, TX 75001" +287050,USB-C Charging Cable,1,11.95,11/14/19 20:01,"466 12th St, Boston, MA 02215" +287051,iPhone,1,700,11/26/19 10:14,"897 South St, Seattle, WA 98101" +287052,AAA Batteries (4-pack),1,2.99,11/28/19 07:44,"894 10th St, Los Angeles, CA 90001" +287053,ThinkPad Laptop,1,999.99,11/21/19 21:42,"350 Church St, Boston, MA 02215" +287054,USB-C Charging Cable,1,11.95,11/09/19 10:07,"6 Center St, Boston, MA 02215" +287055,USB-C Charging Cable,1,11.95,11/21/19 23:46,"206 7th St, New York City, NY 10001" +287056,USB-C Charging Cable,1,11.95,11/26/19 19:45,"306 Lincoln St, Los Angeles, CA 90001" +287057,AA Batteries (4-pack),3,3.84,11/08/19 18:43,"869 11th St, Los Angeles, CA 90001" +287058,Wired Headphones,1,11.99,11/06/19 17:57,"479 Ridge St, Atlanta, GA 30301" +287059,Wired Headphones,2,11.99,11/22/19 12:09,"880 Lincoln St, Boston, MA 02215" +287060,34in Ultrawide Monitor,1,379.99,11/04/19 12:29,"706 River St, Los Angeles, CA 90001" +287061,Wired Headphones,1,11.99,11/26/19 09:03,"648 5th St, Boston, MA 02215" +287062,Apple Airpods Headphones,1,150,11/14/19 07:16,"822 14th St, Atlanta, GA 30301" +287063,AA Batteries (4-pack),2,3.84,11/12/19 19:52,"48 North St, San Francisco, CA 94016" +287064,Macbook Pro Laptop,1,1700,11/06/19 12:35,"56 Madison St, San Francisco, CA 94016" +287065,Apple Airpods Headphones,1,150,11/10/19 21:00,"722 Wilson St, Atlanta, GA 30301" +287066,Google Phone,1,600,11/30/19 00:31,"192 9th St, San Francisco, CA 94016" +287067,Lightning Charging Cable,1,14.95,11/15/19 11:24,"599 Wilson St, Dallas, TX 75001" +287068,Bose SoundSport Headphones,1,99.99,11/18/19 20:43,"900 5th St, New York City, NY 10001" +287069,Lightning Charging Cable,1,14.95,11/24/19 13:31,"69 7th St, Boston, MA 02215" +287070,USB-C Charging Cable,1,11.95,11/25/19 08:16,"275 River St, Atlanta, GA 30301" +287071,Wired Headphones,1,11.99,11/06/19 20:46,"75 Elm St, New York City, NY 10001" +287072,Apple Airpods Headphones,1,150,11/26/19 23:19,"158 Center St, Los Angeles, CA 90001" +287073,USB-C Charging Cable,1,11.95,11/12/19 18:55,"821 2nd St, Seattle, WA 98101" +287074,iPhone,1,700,11/16/19 08:23,"839 Willow St, Seattle, WA 98101" +287075,Wired Headphones,1,11.99,11/03/19 22:19,"533 Meadow St, New York City, NY 10001" +287076,AA Batteries (4-pack),3,3.84,11/18/19 20:59,"694 Lake St, Los Angeles, CA 90001" +287077,20in Monitor,1,109.99,11/24/19 18:42,"754 Cedar St, Los Angeles, CA 90001" +287078,USB-C Charging Cable,1,11.95,11/12/19 21:38,"314 Sunset St, Los Angeles, CA 90001" +287079,Lightning Charging Cable,1,14.95,11/01/19 23:49,"544 Center St, Boston, MA 02215" +287080,AAA Batteries (4-pack),1,2.99,11/30/19 21:15,"714 Hickory St, Boston, MA 02215" +287081,AA Batteries (4-pack),1,3.84,11/20/19 22:03,"912 River St, Los Angeles, CA 90001" +287082,USB-C Charging Cable,1,11.95,11/16/19 05:50,"43 Walnut St, New York City, NY 10001" +287083,AAA Batteries (4-pack),1,2.99,11/22/19 11:31,"731 Jackson St, Atlanta, GA 30301" +287084,Lightning Charging Cable,1,14.95,11/05/19 13:06,"178 Highland St, Dallas, TX 75001" +287085,AAA Batteries (4-pack),1,2.99,11/30/19 13:46,"100 Willow St, Austin, TX 73301" +287086,Apple Airpods Headphones,1,150,11/20/19 15:41,"397 5th St, Los Angeles, CA 90001" +287087,Bose SoundSport Headphones,1,99.99,11/08/19 10:57,"265 Forest St, San Francisco, CA 94016" +287088,AA Batteries (4-pack),1,3.84,11/14/19 17:40,"208 Meadow St, Los Angeles, CA 90001" +287089,AA Batteries (4-pack),2,3.84,11/10/19 07:37,"864 Wilson St, San Francisco, CA 94016" +287090,iPhone,1,700,11/23/19 08:25,"93 Jefferson St, Seattle, WA 98101" +287090,Lightning Charging Cable,1,14.95,11/23/19 08:25,"93 Jefferson St, Seattle, WA 98101" +287091,USB-C Charging Cable,1,11.95,11/07/19 21:43,"934 Meadow St, New York City, NY 10001" +287092,USB-C Charging Cable,1,11.95,11/29/19 12:58,"104 Main St, Los Angeles, CA 90001" +287093,Wired Headphones,2,11.99,11/02/19 13:38,"819 11th St, Austin, TX 73301" +287094,Google Phone,1,600,11/06/19 14:50,"952 1st St, Boston, MA 02215" +287095,Bose SoundSport Headphones,1,99.99,11/19/19 07:56,"606 West St, Dallas, TX 75001" +287096,Apple Airpods Headphones,1,150,11/15/19 20:12,"269 11th St, Dallas, TX 75001" +287097,ThinkPad Laptop,1,999.99,11/25/19 17:29,"172 Adams St, New York City, NY 10001" +287098,27in FHD Monitor,1,149.99,11/25/19 12:56,"756 Spruce St, San Francisco, CA 94016" +287099,ThinkPad Laptop,1,999.99,11/28/19 16:12,"362 Jefferson St, San Francisco, CA 94016" +287100,27in 4K Gaming Monitor,1,389.99,11/15/19 16:07,"409 10th St, Portland, OR 97035" +287101,USB-C Charging Cable,2,11.95,11/14/19 14:53,"964 14th St, Los Angeles, CA 90001" +287102,Bose SoundSport Headphones,1,99.99,11/09/19 20:23,"633 Hickory St, Seattle, WA 98101" +287103,34in Ultrawide Monitor,1,379.99,11/28/19 23:24,"981 11th St, Dallas, TX 75001" +287104,Vareebadd Phone,1,400,11/27/19 21:42,"578 South St, Boston, MA 02215" +287105,AA Batteries (4-pack),2,3.84,11/14/19 12:00,"959 1st St, Atlanta, GA 30301" +287106,AA Batteries (4-pack),2,3.84,11/02/19 13:01,"756 13th St, Los Angeles, CA 90001" +287106,Wired Headphones,1,11.99,11/02/19 13:01,"756 13th St, Los Angeles, CA 90001" +287107,AA Batteries (4-pack),1,3.84,11/12/19 11:20,"661 Highland St, Los Angeles, CA 90001" +287108,AAA Batteries (4-pack),1,2.99,11/13/19 00:10,"17 8th St, Austin, TX 73301" +287109,USB-C Charging Cable,1,11.95,11/25/19 11:42,"164 Meadow St, Los Angeles, CA 90001" +287110,Lightning Charging Cable,1,14.95,11/27/19 01:53,"633 Lake St, Los Angeles, CA 90001" +287111,Lightning Charging Cable,1,14.95,11/29/19 00:33,"16 14th St, Los Angeles, CA 90001" +287112,Lightning Charging Cable,1,14.95,11/25/19 16:58,"187 11th St, Los Angeles, CA 90001" +287113,Wired Headphones,1,11.99,11/23/19 19:59,"37 Lincoln St, San Francisco, CA 94016" +287114,AAA Batteries (4-pack),1,2.99,11/08/19 02:41,"150 North St, Los Angeles, CA 90001" +287115,Wired Headphones,2,11.99,11/12/19 15:40,"834 Spruce St, San Francisco, CA 94016" +287116,USB-C Charging Cable,1,11.95,11/23/19 10:55,"668 Jackson St, Boston, MA 02215" +,,,,, +287117,AAA Batteries (4-pack),1,2.99,11/19/19 10:57,"341 13th St, San Francisco, CA 94016" +287118,27in FHD Monitor,1,149.99,11/25/19 21:35,"28 Adams St, Austin, TX 73301" +287119,27in 4K Gaming Monitor,1,389.99,11/27/19 09:33,"444 Ridge St, San Francisco, CA 94016" +287120,AA Batteries (4-pack),1,3.84,11/06/19 18:34,"514 Lake St, San Francisco, CA 94016" +287121,Flatscreen TV,2,300,11/02/19 13:17,"393 Lakeview St, Los Angeles, CA 90001" +287122,AAA Batteries (4-pack),1,2.99,11/18/19 18:14,"477 Washington St, New York City, NY 10001" +287123,iPhone,1,700,11/06/19 10:18,"61 7th St, New York City, NY 10001" +287124,AAA Batteries (4-pack),1,2.99,11/21/19 00:12,"366 Church St, San Francisco, CA 94016" +287125,20in Monitor,1,109.99,11/16/19 00:19,"415 Wilson St, Atlanta, GA 30301" +287126,Lightning Charging Cable,1,14.95,11/18/19 12:11,"857 Pine St, New York City, NY 10001" +287127,Apple Airpods Headphones,1,150,11/20/19 23:21,"488 Walnut St, Seattle, WA 98101" +287128,ThinkPad Laptop,1,999.99,11/25/19 03:20,"335 Washington St, New York City, NY 10001" +287129,Lightning Charging Cable,1,14.95,11/15/19 16:24,"44 Spruce St, Los Angeles, CA 90001" +287130,Wired Headphones,1,11.99,11/30/19 14:14,"986 Meadow St, Boston, MA 02215" +287131,27in 4K Gaming Monitor,1,389.99,11/30/19 20:04,"347 Dogwood St, Los Angeles, CA 90001" +287132,Wired Headphones,1,11.99,11/26/19 12:22,"372 Pine St, Portland, OR 97035" +287133,Apple Airpods Headphones,1,150,11/07/19 02:23,"382 Forest St, San Francisco, CA 94016" +287134,Macbook Pro Laptop,1,1700,11/01/19 12:01,"775 10th St, New York City, NY 10001" +287135,Bose SoundSport Headphones,1,99.99,11/25/19 21:04,"268 Washington St, Seattle, WA 98101" +287135,Lightning Charging Cable,1,14.95,11/25/19 21:04,"268 Washington St, Seattle, WA 98101" +287136,AA Batteries (4-pack),1,3.84,11/18/19 07:50,"94 1st St, Boston, MA 02215" +287137,AA Batteries (4-pack),1,3.84,11/28/19 21:59,"654 Ridge St, Boston, MA 02215" +287138,Lightning Charging Cable,1,14.95,11/02/19 08:59,"321 14th St, Los Angeles, CA 90001" +287139,27in FHD Monitor,1,149.99,11/02/19 08:58,"712 4th St, Los Angeles, CA 90001" +287140,Macbook Pro Laptop,1,1700,11/27/19 18:45,"22 2nd St, San Francisco, CA 94016" +287141,AAA Batteries (4-pack),2,2.99,11/28/19 22:53,"832 West St, Portland, OR 97035" +287142,Apple Airpods Headphones,1,150,11/19/19 17:48,"257 Lake St, Los Angeles, CA 90001" +287143,LG Dryer,1,600.0,11/14/19 07:55,"848 12th St, Atlanta, GA 30301" +287144,Apple Airpods Headphones,1,150,11/09/19 11:25,"13 River St, Dallas, TX 75001" +287145,ThinkPad Laptop,1,999.99,11/24/19 18:07,"554 Madison St, New York City, NY 10001" +287146,Bose SoundSport Headphones,1,99.99,11/29/19 23:37,"518 Cherry St, San Francisco, CA 94016" +287147,Bose SoundSport Headphones,1,99.99,11/12/19 19:42,"6 Lake St, New York City, NY 10001" +287148,Lightning Charging Cable,1,14.95,11/19/19 12:32,"825 Forest St, San Francisco, CA 94016" +287149,Wired Headphones,1,11.99,11/12/19 22:10,"550 1st St, San Francisco, CA 94016" +287150,Apple Airpods Headphones,1,150,11/09/19 20:32,"391 Walnut St, Atlanta, GA 30301" +287151,Macbook Pro Laptop,1,1700,11/03/19 13:32,"565 Park St, San Francisco, CA 94016" +287152,27in FHD Monitor,1,149.99,11/04/19 10:47,"152 Wilson St, San Francisco, CA 94016" +287153,AA Batteries (4-pack),1,3.84,11/05/19 22:52,"705 8th St, Boston, MA 02215" +287154,Macbook Pro Laptop,1,1700,11/28/19 22:39,"41 South St, San Francisco, CA 94016" +287155,AA Batteries (4-pack),2,3.84,11/20/19 22:29,"850 Dogwood St, Dallas, TX 75001" +287156,AA Batteries (4-pack),1,3.84,11/30/19 10:43,"212 2nd St, San Francisco, CA 94016" +287157,27in 4K Gaming Monitor,1,389.99,11/13/19 10:17,"928 5th St, New York City, NY 10001" +287158,Google Phone,1,600,11/02/19 07:06,"17 Pine St, San Francisco, CA 94016" +287159,Lightning Charging Cable,1,14.95,11/16/19 18:43,"31 Spruce St, Atlanta, GA 30301" +287160,Apple Airpods Headphones,1,150,11/08/19 17:04,"847 Walnut St, San Francisco, CA 94016" +287161,Bose SoundSport Headphones,1,99.99,11/28/19 08:54,"624 10th St, San Francisco, CA 94016" +287162,AA Batteries (4-pack),1,3.84,11/28/19 09:04,"807 Jefferson St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +287163,Lightning Charging Cable,1,14.95,11/03/19 07:27,"294 Center St, Boston, MA 02215" +287164,USB-C Charging Cable,1,11.95,11/20/19 19:56,"496 Adams St, Dallas, TX 75001" +287164,USB-C Charging Cable,1,11.95,11/20/19 19:56,"496 Adams St, Dallas, TX 75001" +287165,34in Ultrawide Monitor,1,379.99,11/25/19 18:24,"220 Wilson St, Portland, OR 97035" +287166,Google Phone,1,600,11/03/19 08:13,"59 Wilson St, New York City, NY 10001" +287166,USB-C Charging Cable,1,11.95,11/03/19 08:13,"59 Wilson St, New York City, NY 10001" +287167,AAA Batteries (4-pack),2,2.99,11/17/19 08:57,"659 North St, New York City, NY 10001" +287168,Wired Headphones,1,11.99,11/25/19 11:01,"159 Willow St, Seattle, WA 98101" +287169,AAA Batteries (4-pack),1,2.99,11/28/19 16:49,"762 14th St, San Francisco, CA 94016" +287170,27in 4K Gaming Monitor,1,389.99,11/13/19 17:51,"412 7th St, Dallas, TX 75001" +287171,Apple Airpods Headphones,1,150,11/29/19 01:07,"456 Ridge St, New York City, NY 10001" +287172,AAA Batteries (4-pack),1,2.99,11/03/19 16:46,"144 Spruce St, Los Angeles, CA 90001" +287173,Wired Headphones,1,11.99,11/24/19 17:22,"453 River St, New York City, NY 10001" +287174,USB-C Charging Cable,1,11.95,11/11/19 11:47,"192 Lake St, San Francisco, CA 94016" +287175,AA Batteries (4-pack),1,3.84,11/07/19 21:38,"682 Madison St, Austin, TX 73301" +287176,USB-C Charging Cable,1,11.95,11/07/19 11:36,"165 Madison St, Seattle, WA 98101" +287177,AAA Batteries (4-pack),2,2.99,11/03/19 11:53,"997 Highland St, Los Angeles, CA 90001" +287178,AA Batteries (4-pack),1,3.84,11/14/19 12:16,"487 Lake St, San Francisco, CA 94016" +287179,AA Batteries (4-pack),3,3.84,11/28/19 21:40,"123 Adams St, Boston, MA 02215" +287180,27in 4K Gaming Monitor,1,389.99,11/15/19 12:12,"91 Forest St, Atlanta, GA 30301" +287181,27in 4K Gaming Monitor,1,389.99,11/04/19 20:42,"103 Highland St, Seattle, WA 98101" +287182,AAA Batteries (4-pack),1,2.99,11/07/19 17:23,"474 Highland St, Dallas, TX 75001" +287183,USB-C Charging Cable,1,11.95,11/26/19 16:28,"386 Chestnut St, San Francisco, CA 94016" +287184,Apple Airpods Headphones,1,150,11/18/19 22:00,"717 Ridge St, San Francisco, CA 94016" +287185,Apple Airpods Headphones,1,150,11/28/19 11:49,"203 Lincoln St, Los Angeles, CA 90001" +287186,AA Batteries (4-pack),1,3.84,11/06/19 01:55,"875 7th St, San Francisco, CA 94016" +287187,AA Batteries (4-pack),1,3.84,11/04/19 13:12,"805 4th St, Los Angeles, CA 90001" +287188,Apple Airpods Headphones,1,150,11/16/19 18:50,"768 Elm St, Portland, OR 97035" +287189,Bose SoundSport Headphones,1,99.99,11/22/19 19:24,"327 10th St, Portland, OR 97035" +287189,27in FHD Monitor,1,149.99,11/22/19 19:24,"327 10th St, Portland, OR 97035" +287190,USB-C Charging Cable,1,11.95,11/02/19 16:53,"171 8th St, New York City, NY 10001" +287191,Lightning Charging Cable,1,14.95,11/09/19 03:43,"402 7th St, San Francisco, CA 94016" +287192,iPhone,1,700,11/10/19 12:49,"331 Madison St, Los Angeles, CA 90001" +287192,Apple Airpods Headphones,1,150,11/10/19 12:49,"331 Madison St, Los Angeles, CA 90001" +287193,AA Batteries (4-pack),1,3.84,11/28/19 09:56,"338 11th St, San Francisco, CA 94016" +287194,AA Batteries (4-pack),1,3.84,11/09/19 20:49,"744 Cedar St, San Francisco, CA 94016" +287194,Vareebadd Phone,1,400,11/09/19 20:49,"744 Cedar St, San Francisco, CA 94016" +287195,Lightning Charging Cable,1,14.95,11/11/19 18:45,"992 5th St, Los Angeles, CA 90001" +287196,USB-C Charging Cable,1,11.95,11/25/19 06:11,"157 Ridge St, Boston, MA 02215" +287197,AAA Batteries (4-pack),1,2.99,11/29/19 12:08,"16 14th St, Portland, OR 97035" +287198,AA Batteries (4-pack),2,3.84,11/18/19 18:30,"951 Adams St, San Francisco, CA 94016" +287199,USB-C Charging Cable,1,11.95,11/05/19 09:48,"72 South St, New York City, NY 10001" +287200,Bose SoundSport Headphones,1,99.99,11/13/19 07:12,"164 Church St, Los Angeles, CA 90001" +287201,Bose SoundSport Headphones,1,99.99,11/25/19 14:50,"186 Chestnut St, Dallas, TX 75001" +287202,AA Batteries (4-pack),1,3.84,11/09/19 14:04,"560 6th St, Los Angeles, CA 90001" +287203,iPhone,1,700,11/07/19 13:40,"542 Madison St, Boston, MA 02215" +287204,Apple Airpods Headphones,1,150,11/26/19 15:22,"678 Sunset St, New York City, NY 10001" +287205,USB-C Charging Cable,1,11.95,11/30/19 21:21,"892 North St, Austin, TX 73301" +287206,AA Batteries (4-pack),2,3.84,11/10/19 23:31,"965 North St, San Francisco, CA 94016" +287207,AAA Batteries (4-pack),1,2.99,11/09/19 12:39,"375 Adams St, Portland, ME 04101" +287208,AAA Batteries (4-pack),1,2.99,11/23/19 21:20,"767 5th St, Dallas, TX 75001" +287209,AAA Batteries (4-pack),1,2.99,11/11/19 15:23,"505 Center St, Los Angeles, CA 90001" +287210,AA Batteries (4-pack),1,3.84,11/14/19 19:41,"185 Chestnut St, Los Angeles, CA 90001" +287211,Bose SoundSport Headphones,1,99.99,11/03/19 15:27,"267 Washington St, Los Angeles, CA 90001" +287212,Vareebadd Phone,1,400,11/22/19 22:07,"54 Adams St, Portland, OR 97035" +287213,AA Batteries (4-pack),1,3.84,11/26/19 15:11,"894 8th St, Los Angeles, CA 90001" +287214,27in FHD Monitor,1,149.99,11/28/19 06:34,"941 Ridge St, San Francisco, CA 94016" +287215,Flatscreen TV,1,300,11/30/19 00:12,"308 4th St, Los Angeles, CA 90001" +287216,iPhone,1,700,11/27/19 23:04,"902 Hickory St, San Francisco, CA 94016" +287217,USB-C Charging Cable,1,11.95,11/24/19 12:01,"168 River St, San Francisco, CA 94016" +287218,AAA Batteries (4-pack),2,2.99,11/09/19 10:59,"298 Lincoln St, Portland, OR 97035" +287219,iPhone,1,700,11/08/19 20:06,"198 Elm St, San Francisco, CA 94016" +287220,Flatscreen TV,1,300,11/02/19 18:11,"831 12th St, Boston, MA 02215" +287221,USB-C Charging Cable,1,11.95,11/28/19 07:59,"888 Sunset St, New York City, NY 10001" +287222,LG Dryer,1,600.0,11/02/19 17:25,"294 Washington St, Atlanta, GA 30301" +287223,27in FHD Monitor,1,149.99,11/04/19 23:02,"710 Washington St, Atlanta, GA 30301" +287224,AAA Batteries (4-pack),1,2.99,11/05/19 11:20,"701 Maple St, San Francisco, CA 94016" +287225,34in Ultrawide Monitor,1,379.99,11/20/19 09:43,"230 Church St, Dallas, TX 75001" +287226,Lightning Charging Cable,1,14.95,11/08/19 15:25,"257 Lincoln St, New York City, NY 10001" +287227,Wired Headphones,1,11.99,11/06/19 11:38,"775 Hill St, San Francisco, CA 94016" +287228,Apple Airpods Headphones,1,150,11/04/19 23:03,"383 Dogwood St, New York City, NY 10001" +287229,USB-C Charging Cable,1,11.95,11/09/19 14:36,"568 Park St, Austin, TX 73301" +287230,Lightning Charging Cable,1,14.95,11/14/19 10:36,"693 Hickory St, Seattle, WA 98101" +287231,USB-C Charging Cable,1,11.95,11/02/19 10:44,"249 Madison St, San Francisco, CA 94016" +287232,Wired Headphones,1,11.99,11/30/19 11:49,"235 1st St, Los Angeles, CA 90001" +287233,Wired Headphones,1,11.99,11/20/19 20:03,"875 Lake St, Austin, TX 73301" +287234,27in 4K Gaming Monitor,1,389.99,11/07/19 20:31,"533 Willow St, Atlanta, GA 30301" +287235,Flatscreen TV,1,300,11/29/19 18:36,"648 Main St, San Francisco, CA 94016" +287236,Wired Headphones,1,11.99,11/15/19 18:59,"300 Washington St, Dallas, TX 75001" +287237,USB-C Charging Cable,1,11.95,11/11/19 13:58,"936 Church St, Los Angeles, CA 90001" +287238,iPhone,1,700,11/25/19 11:18,"944 Washington St, San Francisco, CA 94016" +287239,iPhone,1,700,11/08/19 10:50,"444 11th St, Portland, OR 97035" +287240,USB-C Charging Cable,1,11.95,11/27/19 13:18,"537 11th St, San Francisco, CA 94016" +287241,iPhone,1,700,11/03/19 10:24,"759 6th St, Austin, TX 73301" +287242,AAA Batteries (4-pack),1,2.99,11/08/19 10:08,"5 Forest St, San Francisco, CA 94016" +287243,AA Batteries (4-pack),1,3.84,11/05/19 18:59,"527 7th St, San Francisco, CA 94016" +287244,Bose SoundSport Headphones,1,99.99,11/02/19 16:14,"301 Sunset St, Los Angeles, CA 90001" +287245,USB-C Charging Cable,1,11.95,11/19/19 17:58,"68 Lakeview St, Dallas, TX 75001" +287246,Lightning Charging Cable,1,14.95,11/08/19 01:56,"677 Jefferson St, San Francisco, CA 94016" +287247,USB-C Charging Cable,1,11.95,11/06/19 16:47,"754 North St, San Francisco, CA 94016" +287248,AA Batteries (4-pack),2,3.84,11/17/19 17:08,"942 6th St, San Francisco, CA 94016" +287249,Apple Airpods Headphones,1,150,11/28/19 22:53,"515 Cherry St, San Francisco, CA 94016" +287250,Google Phone,1,600,11/12/19 12:29,"372 Washington St, Austin, TX 73301" +287250,USB-C Charging Cable,1,11.95,11/12/19 12:29,"372 Washington St, Austin, TX 73301" +287251,AA Batteries (4-pack),1,3.84,11/26/19 10:15,"244 1st St, Austin, TX 73301" +287252,Apple Airpods Headphones,1,150,11/17/19 12:12,"50 Pine St, San Francisco, CA 94016" +287253,Lightning Charging Cable,1,14.95,11/08/19 00:26,"392 River St, San Francisco, CA 94016" +287254,Wired Headphones,1,11.99,11/18/19 19:02,"579 Maple St, San Francisco, CA 94016" +287255,iPhone,1,700,11/21/19 20:44,"946 Meadow St, San Francisco, CA 94016" +287256,34in Ultrawide Monitor,1,379.99,11/03/19 20:44,"291 Lake St, New York City, NY 10001" +287257,Wired Headphones,1,11.99,11/10/19 19:24,"187 Lincoln St, Seattle, WA 98101" +287258,Macbook Pro Laptop,1,1700,11/23/19 19:40,"23 West St, Los Angeles, CA 90001" +287259,Lightning Charging Cable,1,14.95,11/08/19 02:33,"742 Church St, San Francisco, CA 94016" +287260,AAA Batteries (4-pack),1,2.99,11/20/19 20:20,"953 Park St, San Francisco, CA 94016" +287261,ThinkPad Laptop,1,999.99,11/22/19 10:51,"385 River St, Boston, MA 02215" +287262,Bose SoundSport Headphones,1,99.99,11/12/19 14:46,"340 14th St, Boston, MA 02215" +287263,Lightning Charging Cable,2,14.95,11/13/19 15:12,"11 Adams St, Los Angeles, CA 90001" +287264,USB-C Charging Cable,1,11.95,11/19/19 01:32,"49 Church St, Los Angeles, CA 90001" +287265,Flatscreen TV,1,300,11/20/19 10:20,"207 Forest St, New York City, NY 10001" +287266,Wired Headphones,2,11.99,11/17/19 18:51,"985 Meadow St, Dallas, TX 75001" +287267,27in 4K Gaming Monitor,1,389.99,11/08/19 20:45,"604 Cedar St, New York City, NY 10001" +287268,Bose SoundSport Headphones,1,99.99,11/09/19 10:17,"445 Lake St, Los Angeles, CA 90001" +287269,Apple Airpods Headphones,1,150,11/10/19 16:01,"780 7th St, Los Angeles, CA 90001" +287270,AAA Batteries (4-pack),2,2.99,11/19/19 20:47,"510 Elm St, Portland, ME 04101" +287271,AAA Batteries (4-pack),1,2.99,11/29/19 14:04,"560 Chestnut St, Seattle, WA 98101" +287272,AA Batteries (4-pack),1,3.84,11/17/19 18:13,"193 Spruce St, San Francisco, CA 94016" +287272,Flatscreen TV,1,300,11/17/19 18:13,"193 Spruce St, San Francisco, CA 94016" +287273,27in FHD Monitor,1,149.99,11/24/19 04:56,"562 Chestnut St, Boston, MA 02215" +287274,27in FHD Monitor,1,149.99,11/29/19 18:52,"767 10th St, Atlanta, GA 30301" +287275,AAA Batteries (4-pack),1,2.99,11/13/19 14:44,"964 Forest St, San Francisco, CA 94016" +287276,AAA Batteries (4-pack),1,2.99,11/20/19 09:18,"435 7th St, San Francisco, CA 94016" +287277,Macbook Pro Laptop,1,1700,11/22/19 22:38,"236 Madison St, Portland, ME 04101" +287278,AAA Batteries (4-pack),1,2.99,11/19/19 22:44,"709 Chestnut St, Boston, MA 02215" +287279,27in 4K Gaming Monitor,1,389.99,11/20/19 12:34,"664 Washington St, New York City, NY 10001" +287280,Bose SoundSport Headphones,1,99.99,11/08/19 22:38,"335 1st St, Seattle, WA 98101" +287281,Lightning Charging Cable,1,14.95,11/08/19 19:33,"800 7th St, San Francisco, CA 94016" +287282,Lightning Charging Cable,2,14.95,11/13/19 11:37,"342 5th St, Seattle, WA 98101" +287283,USB-C Charging Cable,1,11.95,11/18/19 18:37,"947 14th St, Portland, OR 97035" +287284,AAA Batteries (4-pack),3,2.99,11/27/19 19:57,"452 Elm St, San Francisco, CA 94016" +287285,34in Ultrawide Monitor,1,379.99,11/21/19 21:30,"140 Elm St, Dallas, TX 75001" +287286,Macbook Pro Laptop,1,1700,11/08/19 10:09,"420 Johnson St, Boston, MA 02215" +287287,USB-C Charging Cable,1,11.95,11/12/19 20:59,"451 11th St, Portland, OR 97035" +287288,USB-C Charging Cable,1,11.95,11/05/19 23:11,"321 Willow St, San Francisco, CA 94016" +287289,34in Ultrawide Monitor,1,379.99,11/28/19 20:31,"122 11th St, New York City, NY 10001" +287290,AA Batteries (4-pack),1,3.84,11/07/19 13:58,"195 5th St, Atlanta, GA 30301" +287291,27in FHD Monitor,1,149.99,11/16/19 08:33,"666 Forest St, Los Angeles, CA 90001" +287292,AAA Batteries (4-pack),2,2.99,11/19/19 18:51,"677 13th St, Dallas, TX 75001" +287293,USB-C Charging Cable,1,11.95,11/13/19 13:50,"210 Maple St, San Francisco, CA 94016" +287294,AA Batteries (4-pack),1,3.84,11/23/19 16:06,"909 Highland St, Austin, TX 73301" +287295,AA Batteries (4-pack),1,3.84,11/05/19 17:58,"972 West St, Los Angeles, CA 90001" +287296,27in 4K Gaming Monitor,1,389.99,11/06/19 16:17,"194 Meadow St, New York City, NY 10001" +287297,Bose SoundSport Headphones,1,99.99,11/09/19 18:21,"814 Lake St, Portland, OR 97035" +287298,Apple Airpods Headphones,1,150,11/05/19 20:27,"551 Spruce St, Los Angeles, CA 90001" +287299,AAA Batteries (4-pack),1,2.99,11/27/19 00:36,"487 Chestnut St, Portland, OR 97035" +287300,34in Ultrawide Monitor,1,379.99,11/18/19 15:39,"776 Jackson St, Seattle, WA 98101" +287301,Apple Airpods Headphones,1,150,11/13/19 11:47,"870 Adams St, San Francisco, CA 94016" +287302,Wired Headphones,1,11.99,11/22/19 09:04,"509 11th St, Los Angeles, CA 90001" +287303,USB-C Charging Cable,1,11.95,11/26/19 09:41,"217 Cedar St, Seattle, WA 98101" +287304,27in FHD Monitor,1,149.99,11/23/19 12:28,"263 Lake St, Atlanta, GA 30301" +287305,USB-C Charging Cable,1,11.95,11/21/19 15:05,"549 Lake St, Austin, TX 73301" +287306,27in 4K Gaming Monitor,1,389.99,11/11/19 00:04,"59 River St, San Francisco, CA 94016" +287307,Bose SoundSport Headphones,1,99.99,11/25/19 17:13,"279 Madison St, New York City, NY 10001" +287308,AAA Batteries (4-pack),1,2.99,11/18/19 10:33,"280 Forest St, Portland, OR 97035" +287309,Apple Airpods Headphones,1,150,11/15/19 18:57,"228 North St, Los Angeles, CA 90001" +287310,USB-C Charging Cable,1,11.95,11/14/19 17:26,"887 Pine St, Los Angeles, CA 90001" +287310,USB-C Charging Cable,1,11.95,11/14/19 17:26,"887 Pine St, Los Angeles, CA 90001" +287311,Wired Headphones,1,11.99,11/21/19 19:45,"98 Lincoln St, Boston, MA 02215" +287312,Wired Headphones,1,11.99,11/15/19 08:42,"927 Park St, Los Angeles, CA 90001" +287313,USB-C Charging Cable,1,11.95,11/20/19 12:00,"868 2nd St, San Francisco, CA 94016" +287314,AAA Batteries (4-pack),1,2.99,11/26/19 21:05,"20 5th St, San Francisco, CA 94016" +287315,USB-C Charging Cable,1,11.95,11/16/19 19:21,"552 South St, New York City, NY 10001" +287316,27in FHD Monitor,1,149.99,11/11/19 09:57,"566 North St, Los Angeles, CA 90001" +287317,Bose SoundSport Headphones,1,99.99,11/24/19 11:54,"908 Willow St, Los Angeles, CA 90001" +287318,iPhone,1,700,11/23/19 15:37,"119 Main St, Portland, ME 04101" +287319,Wired Headphones,1,11.99,11/21/19 23:43,"293 Chestnut St, San Francisco, CA 94016" +287320,AAA Batteries (4-pack),1,2.99,11/18/19 11:49,"726 4th St, San Francisco, CA 94016" +287321,AAA Batteries (4-pack),2,2.99,11/07/19 15:28,"100 Washington St, San Francisco, CA 94016" +287322,Apple Airpods Headphones,1,150,11/06/19 09:17,"894 Wilson St, Boston, MA 02215" +287323,27in 4K Gaming Monitor,1,389.99,11/30/19 12:07,"374 Walnut St, Boston, MA 02215" +287324,AAA Batteries (4-pack),1,2.99,11/06/19 13:22,"23 6th St, Dallas, TX 75001" +287325,USB-C Charging Cable,1,11.95,11/12/19 08:21,"284 8th St, San Francisco, CA 94016" +287326,Bose SoundSport Headphones,1,99.99,11/01/19 22:33,"454 2nd St, Seattle, WA 98101" +287327,AA Batteries (4-pack),1,3.84,11/20/19 11:18,"826 8th St, Boston, MA 02215" +287328,Lightning Charging Cable,1,14.95,11/08/19 19:11,"405 Washington St, San Francisco, CA 94016" +287329,Google Phone,1,600,11/21/19 20:54,"689 Lakeview St, San Francisco, CA 94016" +287329,Wired Headphones,1,11.99,11/21/19 20:54,"689 Lakeview St, San Francisco, CA 94016" +287330,27in 4K Gaming Monitor,1,389.99,11/13/19 20:08,"699 12th St, Austin, TX 73301" +287331,AAA Batteries (4-pack),1,2.99,11/25/19 16:27,"690 Meadow St, New York City, NY 10001" +287332,AAA Batteries (4-pack),1,2.99,11/18/19 09:48,"713 6th St, Atlanta, GA 30301" +287333,Bose SoundSport Headphones,1,99.99,11/19/19 18:59,"409 13th St, Dallas, TX 75001" +287334,Lightning Charging Cable,1,14.95,11/04/19 05:25,"655 Church St, San Francisco, CA 94016" +287335,AAA Batteries (4-pack),1,2.99,11/24/19 17:59,"395 8th St, New York City, NY 10001" +287336,34in Ultrawide Monitor,1,379.99,11/19/19 09:57,"36 Maple St, San Francisco, CA 94016" +287337,USB-C Charging Cable,1,11.95,11/16/19 09:09,"842 Center St, Portland, OR 97035" +287338,Lightning Charging Cable,1,14.95,11/04/19 13:01,"123 Sunset St, San Francisco, CA 94016" +287339,Apple Airpods Headphones,1,150,11/10/19 11:38,"811 4th St, New York City, NY 10001" +287340,27in FHD Monitor,1,149.99,11/26/19 07:25,"566 Highland St, New York City, NY 10001" +287341,Google Phone,1,600,11/21/19 19:42,"602 Lakeview St, Boston, MA 02215" +287342,Apple Airpods Headphones,1,150,11/15/19 20:19,"841 Sunset St, San Francisco, CA 94016" +287343,Bose SoundSport Headphones,1,99.99,11/25/19 14:44,"453 Adams St, San Francisco, CA 94016" +287344,Wired Headphones,1,11.99,11/18/19 16:46,"251 North St, New York City, NY 10001" +287345,Flatscreen TV,1,300,11/13/19 14:48,"101 13th St, Boston, MA 02215" +287346,USB-C Charging Cable,3,11.95,11/23/19 10:47,"878 Johnson St, Los Angeles, CA 90001" +287347,Apple Airpods Headphones,1,150,11/18/19 16:49,"71 Maple St, Dallas, TX 75001" +287347,Wired Headphones,1,11.99,11/18/19 16:49,"71 Maple St, Dallas, TX 75001" +287348,Wired Headphones,1,11.99,11/27/19 12:23,"159 Jackson St, New York City, NY 10001" +287349,Lightning Charging Cable,1,14.95,11/04/19 11:10,"81 Forest St, San Francisco, CA 94016" +287350,AAA Batteries (4-pack),1,2.99,11/19/19 20:17,"467 Jefferson St, Los Angeles, CA 90001" +287351,Apple Airpods Headphones,1,150,11/07/19 19:29,"274 5th St, New York City, NY 10001" +287352,AA Batteries (4-pack),1,3.84,11/06/19 21:58,"452 12th St, Boston, MA 02215" +287353,AA Batteries (4-pack),1,3.84,11/04/19 07:57,"116 Church St, Portland, ME 04101" +287354,Wired Headphones,1,11.99,11/14/19 23:56,"847 6th St, Seattle, WA 98101" +287355,Wired Headphones,1,11.99,11/29/19 11:54,"858 Jefferson St, Atlanta, GA 30301" +287356,Apple Airpods Headphones,1,150,11/25/19 22:32,"216 Johnson St, Seattle, WA 98101" +287357,USB-C Charging Cable,1,11.95,11/05/19 21:44,"351 Washington St, Los Angeles, CA 90001" +287358,USB-C Charging Cable,1,11.95,11/15/19 20:30,"680 6th St, Seattle, WA 98101" +287359,Google Phone,1,600,11/15/19 14:44,"302 6th St, San Francisco, CA 94016" +287359,USB-C Charging Cable,1,11.95,11/15/19 14:44,"302 6th St, San Francisco, CA 94016" +287360,Lightning Charging Cable,1,14.95,11/15/19 19:27,"197 Jackson St, Los Angeles, CA 90001" +287361,Bose SoundSport Headphones,1,99.99,11/29/19 11:33,"979 Pine St, Atlanta, GA 30301" +287362,Lightning Charging Cable,1,14.95,11/09/19 17:36,"981 Lincoln St, Boston, MA 02215" +287363,Google Phone,1,600,11/25/19 15:16,"202 Lakeview St, Boston, MA 02215" +287363,Wired Headphones,1,11.99,11/25/19 15:16,"202 Lakeview St, Boston, MA 02215" +287364,Lightning Charging Cable,1,14.95,11/16/19 14:55,"402 North St, San Francisco, CA 94016" +287365,Flatscreen TV,1,300,11/27/19 16:46,"901 North St, Los Angeles, CA 90001" +287366,27in 4K Gaming Monitor,1,389.99,11/22/19 12:44,"199 Meadow St, Austin, TX 73301" +287367,Google Phone,1,600,11/14/19 06:35,"415 Cherry St, Los Angeles, CA 90001" +287367,USB-C Charging Cable,1,11.95,11/14/19 06:35,"415 Cherry St, Los Angeles, CA 90001" +287368,AAA Batteries (4-pack),1,2.99,11/19/19 15:35,"29 Lincoln St, San Francisco, CA 94016" +287369,Wired Headphones,1,11.99,11/20/19 14:07,"284 Ridge St, Boston, MA 02215" +287370,Lightning Charging Cable,1,14.95,11/20/19 11:32,"485 Johnson St, Boston, MA 02215" +287371,AAA Batteries (4-pack),1,2.99,11/29/19 12:10,"651 Lincoln St, Los Angeles, CA 90001" +287372,Google Phone,1,600,11/23/19 19:49,"642 Lakeview St, Boston, MA 02215" +287373,USB-C Charging Cable,1,11.95,11/27/19 12:09,"71 10th St, New York City, NY 10001" +287374,Wired Headphones,1,11.99,11/29/19 23:40,"264 Chestnut St, Boston, MA 02215" +287375,27in 4K Gaming Monitor,1,389.99,11/27/19 18:53,"841 Center St, New York City, NY 10001" +287376,Lightning Charging Cable,1,14.95,11/12/19 16:11,"399 Hill St, Los Angeles, CA 90001" +287377,27in FHD Monitor,1,149.99,11/30/19 20:48,"737 Walnut St, San Francisco, CA 94016" +287378,Lightning Charging Cable,1,14.95,11/18/19 10:33,"18 8th St, San Francisco, CA 94016" +287379,27in 4K Gaming Monitor,1,389.99,11/23/19 22:30,"11 Willow St, Atlanta, GA 30301" +287380,ThinkPad Laptop,1,999.99,11/10/19 11:58,"314 West St, New York City, NY 10001" +287381,AA Batteries (4-pack),1,3.84,11/26/19 11:23,"520 12th St, San Francisco, CA 94016" +287382,AA Batteries (4-pack),2,3.84,11/25/19 14:16,"208 Main St, Boston, MA 02215" +287383,AAA Batteries (4-pack),1,2.99,11/04/19 14:01,"187 Pine St, San Francisco, CA 94016" +287384,Apple Airpods Headphones,1,150,11/12/19 22:23,"895 Meadow St, Los Angeles, CA 90001" +287385,USB-C Charging Cable,1,11.95,11/18/19 19:39,"943 1st St, Dallas, TX 75001" +287386,iPhone,1,700,11/11/19 20:03,"554 14th St, Boston, MA 02215" +287387,AAA Batteries (4-pack),2,2.99,11/10/19 15:40,"465 Lakeview St, San Francisco, CA 94016" +287388,AA Batteries (4-pack),2,3.84,11/22/19 17:53,"832 Walnut St, Portland, OR 97035" +287389,Apple Airpods Headphones,1,150,11/21/19 19:29,"255 Lakeview St, Los Angeles, CA 90001" +287390,AAA Batteries (4-pack),1,2.99,11/20/19 00:31,"722 6th St, Dallas, TX 75001" +287391,AA Batteries (4-pack),1,3.84,11/15/19 12:48,"767 Forest St, San Francisco, CA 94016" +287392,Wired Headphones,1,11.99,11/09/19 14:36,"343 Hill St, San Francisco, CA 94016" +287393,Lightning Charging Cable,1,14.95,11/22/19 21:58,"906 Elm St, Boston, MA 02215" +287394,34in Ultrawide Monitor,1,379.99,11/13/19 08:48,"593 Madison St, New York City, NY 10001" +287395,AAA Batteries (4-pack),2,2.99,11/16/19 04:12,"581 4th St, New York City, NY 10001" +287396,Apple Airpods Headphones,1,150,11/13/19 20:18,"29 5th St, San Francisco, CA 94016" +287397,AAA Batteries (4-pack),1,2.99,11/12/19 14:17,"112 Willow St, Dallas, TX 75001" +287398,AAA Batteries (4-pack),1,2.99,11/17/19 19:50,"279 Main St, San Francisco, CA 94016" +287399,USB-C Charging Cable,1,11.95,11/02/19 11:12,"57 14th St, San Francisco, CA 94016" +287400,iPhone,1,700,11/15/19 16:41,"688 5th St, San Francisco, CA 94016" +287401,34in Ultrawide Monitor,1,379.99,11/11/19 12:27,"551 14th St, Boston, MA 02215" +287402,Wired Headphones,1,11.99,11/09/19 18:40,"924 Maple St, San Francisco, CA 94016" +287403,Wired Headphones,1,11.99,11/12/19 15:23,"78 Sunset St, Atlanta, GA 30301" +287404,iPhone,1,700,11/04/19 15:30,"503 Cherry St, Los Angeles, CA 90001" +287405,27in 4K Gaming Monitor,1,389.99,11/19/19 19:03,"583 Maple St, Seattle, WA 98101" +287406,Bose SoundSport Headphones,1,99.99,11/30/19 09:44,"416 Jefferson St, Atlanta, GA 30301" +287407,Macbook Pro Laptop,1,1700,11/08/19 13:12,"295 Hickory St, San Francisco, CA 94016" +287408,Apple Airpods Headphones,1,150,11/05/19 12:49,"943 Park St, Los Angeles, CA 90001" +287409,AAA Batteries (4-pack),1,2.99,11/21/19 07:55,"572 7th St, San Francisco, CA 94016" +287410,USB-C Charging Cable,1,11.95,11/17/19 13:14,"170 Jackson St, Boston, MA 02215" +287411,Bose SoundSport Headphones,1,99.99,11/25/19 12:04,"851 Spruce St, San Francisco, CA 94016" +287412,Flatscreen TV,1,300,11/16/19 20:21,"399 14th St, Los Angeles, CA 90001" +287413,USB-C Charging Cable,2,11.95,11/19/19 18:54,"280 Cedar St, San Francisco, CA 94016" +287414,Bose SoundSport Headphones,1,99.99,11/06/19 16:33,"680 Jackson St, New York City, NY 10001" +287415,AAA Batteries (4-pack),1,2.99,11/07/19 13:52,"611 1st St, Portland, OR 97035" +287416,iPhone,1,700,11/11/19 17:40,"826 4th St, Austin, TX 73301" +287417,20in Monitor,1,109.99,11/22/19 17:32,"187 Elm St, New York City, NY 10001" +287418,Apple Airpods Headphones,1,150,11/28/19 08:55,"616 Lincoln St, San Francisco, CA 94016" +287419,27in FHD Monitor,1,149.99,11/25/19 20:39,"309 Hill St, Seattle, WA 98101" +287420,Lightning Charging Cable,1,14.95,11/04/19 23:55,"258 Spruce St, Austin, TX 73301" +287421,Vareebadd Phone,1,400,11/27/19 21:49,"175 Center St, Atlanta, GA 30301" +287422,AA Batteries (4-pack),1,3.84,11/09/19 15:31,"249 Lincoln St, Seattle, WA 98101" +287423,Wired Headphones,1,11.99,11/24/19 19:40,"868 Church St, Seattle, WA 98101" +287424,27in FHD Monitor,1,149.99,11/27/19 11:32,"906 6th St, Dallas, TX 75001" +287425,AAA Batteries (4-pack),5,2.99,11/01/19 07:40,"143 7th St, New York City, NY 10001" +287426,USB-C Charging Cable,1,11.95,11/26/19 21:20,"289 10th St, New York City, NY 10001" +287426,Bose SoundSport Headphones,1,99.99,11/26/19 21:20,"289 10th St, New York City, NY 10001" +287427,USB-C Charging Cable,2,11.95,11/24/19 11:33,"116 Cherry St, Seattle, WA 98101" +287428,AAA Batteries (4-pack),1,2.99,11/27/19 09:31,"306 Cherry St, Austin, TX 73301" +287429,Lightning Charging Cable,1,14.95,11/25/19 20:37,"355 8th St, Atlanta, GA 30301" +287430,Apple Airpods Headphones,1,150,11/09/19 12:12,"153 West St, New York City, NY 10001" +287431,USB-C Charging Cable,1,11.95,11/03/19 15:31,"448 Cedar St, New York City, NY 10001" +287432,20in Monitor,1,109.99,11/21/19 16:18,"178 Cedar St, Dallas, TX 75001" +287433,Flatscreen TV,1,300,11/07/19 23:01,"795 Cherry St, San Francisco, CA 94016" +287434,27in FHD Monitor,1,149.99,11/01/19 14:43,"651 Lincoln St, Seattle, WA 98101" +287435,Google Phone,1,600,11/05/19 22:54,"577 12th St, Los Angeles, CA 90001" +287436,USB-C Charging Cable,2,11.95,11/29/19 21:26,"345 9th St, Dallas, TX 75001" +287437,Apple Airpods Headphones,1,150,11/17/19 19:01,"495 Park St, San Francisco, CA 94016" +287438,iPhone,1,700,11/04/19 12:39,"608 Dogwood St, Boston, MA 02215" +287439,Lightning Charging Cable,1,14.95,11/23/19 16:23,"962 Willow St, Atlanta, GA 30301" +287440,Wired Headphones,1,11.99,11/06/19 14:44,"572 Main St, Austin, TX 73301" +287441,Flatscreen TV,1,300,11/16/19 13:41,"893 14th St, Dallas, TX 75001" +287442,Lightning Charging Cable,1,14.95,11/08/19 15:25,"589 River St, Seattle, WA 98101" +287443,USB-C Charging Cable,1,11.95,11/11/19 04:52,"40 Pine St, New York City, NY 10001" +287444,Bose SoundSport Headphones,1,99.99,11/10/19 17:51,"732 Lakeview St, Portland, ME 04101" +287445,Apple Airpods Headphones,1,150,11/08/19 11:07,"4 Cedar St, Dallas, TX 75001" +287446,AAA Batteries (4-pack),1,2.99,11/30/19 22:13,"198 Sunset St, Boston, MA 02215" +287447,iPhone,1,700,11/05/19 21:26,"195 Hill St, Portland, OR 97035" +287448,AAA Batteries (4-pack),1,2.99,11/14/19 22:06,"461 Main St, Austin, TX 73301" +287449,AA Batteries (4-pack),1,3.84,11/12/19 04:42,"463 2nd St, Portland, OR 97035" +287450,Lightning Charging Cable,1,14.95,11/19/19 15:49,"815 Forest St, New York City, NY 10001" +287451,Vareebadd Phone,1,400,11/11/19 11:03,"420 8th St, New York City, NY 10001" +287452,Wired Headphones,1,11.99,11/03/19 17:15,"856 Dogwood St, San Francisco, CA 94016" +287453,LG Washing Machine,1,600.0,11/02/19 14:22,"639 Hill St, New York City, NY 10001" +287454,Macbook Pro Laptop,1,1700,11/15/19 19:25,"239 Hickory St, Dallas, TX 75001" +287455,ThinkPad Laptop,1,999.99,11/25/19 16:54,"245 Elm St, San Francisco, CA 94016" +287456,Wired Headphones,1,11.99,11/08/19 10:01,"162 13th St, San Francisco, CA 94016" +287457,Wired Headphones,1,11.99,11/22/19 17:07,"484 Forest St, Atlanta, GA 30301" +287458,Bose SoundSport Headphones,1,99.99,11/10/19 12:02,"826 Lakeview St, Los Angeles, CA 90001" +287459,Wired Headphones,1,11.99,11/06/19 07:20,"254 6th St, Seattle, WA 98101" +287460,iPhone,1,700,11/21/19 16:38,"293 River St, San Francisco, CA 94016" +287461,AA Batteries (4-pack),1,3.84,11/02/19 11:30,"472 Meadow St, Los Angeles, CA 90001" +287462,Wired Headphones,1,11.99,11/23/19 16:13,"319 Wilson St, San Francisco, CA 94016" +287463,Wired Headphones,2,11.99,11/21/19 12:08,"581 12th St, Boston, MA 02215" +287464,iPhone,1,700,11/01/19 19:08,"82 2nd St, Atlanta, GA 30301" +287465,LG Washing Machine,1,600.0,11/15/19 03:14,"867 South St, Los Angeles, CA 90001" +287466,Lightning Charging Cable,1,14.95,11/05/19 19:27,"399 Meadow St, Dallas, TX 75001" +287467,Wired Headphones,1,11.99,11/18/19 16:06,"661 Jackson St, New York City, NY 10001" +287467,27in 4K Gaming Monitor,1,389.99,11/18/19 16:06,"661 Jackson St, New York City, NY 10001" +287468,Flatscreen TV,1,300,11/28/19 20:30,"292 Main St, New York City, NY 10001" +287469,Bose SoundSport Headphones,1,99.99,11/12/19 12:29,"206 1st St, Austin, TX 73301" +287470,AAA Batteries (4-pack),1,2.99,11/29/19 13:05,"655 River St, New York City, NY 10001" +287471,Bose SoundSport Headphones,1,99.99,11/29/19 17:26,"913 Madison St, Seattle, WA 98101" +287472,Lightning Charging Cable,1,14.95,11/28/19 11:27,"424 5th St, San Francisco, CA 94016" +287473,Bose SoundSport Headphones,1,99.99,11/09/19 18:48,"148 7th St, Austin, TX 73301" +287474,AA Batteries (4-pack),1,3.84,11/07/19 16:01,"676 6th St, Portland, ME 04101" +287475,Wired Headphones,1,11.99,11/11/19 13:40,"964 Elm St, Portland, ME 04101" +287476,Wired Headphones,2,11.99,11/22/19 20:29,"180 Hickory St, Dallas, TX 75001" +287477,AAA Batteries (4-pack),3,2.99,11/13/19 21:37,"814 Wilson St, San Francisco, CA 94016" +287478,Lightning Charging Cable,1,14.95,11/07/19 00:38,"621 Madison St, Los Angeles, CA 90001" +287479,iPhone,1,700,11/30/19 19:13,"938 Hickory St, Boston, MA 02215" +287480,Wired Headphones,3,11.99,11/06/19 14:06,"691 Lakeview St, Los Angeles, CA 90001" +287481,USB-C Charging Cable,1,11.95,11/08/19 17:52,"611 Pine St, Seattle, WA 98101" +287482,AAA Batteries (4-pack),2,2.99,11/06/19 00:57,"855 10th St, San Francisco, CA 94016" +287483,Lightning Charging Cable,1,14.95,11/14/19 17:50,"860 Highland St, San Francisco, CA 94016" +287484,34in Ultrawide Monitor,1,379.99,11/30/19 17:04,"237 10th St, Atlanta, GA 30301" +287485,Wired Headphones,1,11.99,11/24/19 06:11,"884 Main St, Atlanta, GA 30301" +287486,USB-C Charging Cable,1,11.95,11/22/19 21:27,"105 14th St, Seattle, WA 98101" +287487,Apple Airpods Headphones,1,150,11/13/19 12:08,"30 7th St, Austin, TX 73301" +287488,AAA Batteries (4-pack),3,2.99,11/30/19 10:32,"735 Ridge St, Seattle, WA 98101" +287489,Wired Headphones,1,11.99,11/14/19 09:14,"680 Madison St, New York City, NY 10001" +287490,Lightning Charging Cable,1,14.95,11/18/19 07:52,"787 Park St, Austin, TX 73301" +287491,AA Batteries (4-pack),1,3.84,11/13/19 19:33,"835 Wilson St, Atlanta, GA 30301" +287492,Wired Headphones,1,11.99,11/28/19 00:31,"762 Adams St, Atlanta, GA 30301" +287493,USB-C Charging Cable,1,11.95,11/30/19 09:53,"267 4th St, San Francisco, CA 94016" +287494,Macbook Pro Laptop,1,1700,11/25/19 23:38,"90 5th St, Portland, OR 97035" +287495,27in FHD Monitor,1,149.99,11/03/19 17:02,"840 Park St, Austin, TX 73301" +287496,Wired Headphones,1,11.99,11/17/19 11:56,"419 4th St, Boston, MA 02215" +287497,AA Batteries (4-pack),1,3.84,11/07/19 11:40,"288 Main St, Dallas, TX 75001" +287498,iPhone,1,700,11/01/19 17:22,"329 7th St, Dallas, TX 75001" +287498,Lightning Charging Cable,1,14.95,11/01/19 17:22,"329 7th St, Dallas, TX 75001" +287499,34in Ultrawide Monitor,1,379.99,11/28/19 20:50,"750 5th St, Boston, MA 02215" +287500,Lightning Charging Cable,1,14.95,11/19/19 19:29,"283 13th St, Portland, OR 97035" +287501,34in Ultrawide Monitor,1,379.99,11/25/19 09:36,"406 Cedar St, Los Angeles, CA 90001" +287502,USB-C Charging Cable,1,11.95,11/10/19 14:52,"764 Spruce St, San Francisco, CA 94016" +287503,34in Ultrawide Monitor,1,379.99,11/15/19 18:14,"806 South St, New York City, NY 10001" +287504,AA Batteries (4-pack),1,3.84,11/05/19 19:56,"631 6th St, San Francisco, CA 94016" +287505,Wired Headphones,1,11.99,11/30/19 15:16,"680 4th St, Seattle, WA 98101" +287506,Bose SoundSport Headphones,1,99.99,11/28/19 20:49,"604 5th St, San Francisco, CA 94016" +287507,AA Batteries (4-pack),2,3.84,11/16/19 20:13,"454 Willow St, New York City, NY 10001" +287508,AA Batteries (4-pack),1,3.84,11/03/19 16:43,"653 Cedar St, San Francisco, CA 94016" +287509,Macbook Pro Laptop,1,1700,11/24/19 17:21,"920 Meadow St, Atlanta, GA 30301" +287510,AA Batteries (4-pack),1,3.84,11/30/19 12:24,"692 Elm St, Los Angeles, CA 90001" +287511,AA Batteries (4-pack),1,3.84,11/25/19 23:38,"632 9th St, Los Angeles, CA 90001" +287512,20in Monitor,1,109.99,11/21/19 19:55,"723 Spruce St, Portland, OR 97035" +287513,AA Batteries (4-pack),1,3.84,11/06/19 12:24,"771 Cedar St, Boston, MA 02215" +287514,Lightning Charging Cable,1,14.95,11/10/19 22:51,"709 Church St, Austin, TX 73301" +287515,Macbook Pro Laptop,1,1700,11/03/19 22:17,"772 South St, San Francisco, CA 94016" +287516,Vareebadd Phone,1,400,11/28/19 18:34,"114 Main St, Boston, MA 02215" +287516,Bose SoundSport Headphones,1,99.99,11/28/19 18:34,"114 Main St, Boston, MA 02215" +287517,Wired Headphones,1,11.99,11/19/19 12:51,"119 Ridge St, Seattle, WA 98101" +287518,Google Phone,1,600,11/28/19 19:12,"497 13th St, San Francisco, CA 94016" +287519,AA Batteries (4-pack),1,3.84,11/18/19 13:08,"17 Madison St, Dallas, TX 75001" +287520,USB-C Charging Cable,1,11.95,11/16/19 22:11,"320 Chestnut St, Los Angeles, CA 90001" +287521,USB-C Charging Cable,1,11.95,11/28/19 12:00,"526 Cedar St, Boston, MA 02215" +287522,Macbook Pro Laptop,1,1700,11/26/19 22:36,"410 Lincoln St, New York City, NY 10001" +287523,Lightning Charging Cable,1,14.95,11/12/19 10:00,"104 Jefferson St, Dallas, TX 75001" +287524,Bose SoundSport Headphones,1,99.99,11/13/19 22:07,"751 2nd St, Portland, OR 97035" +287525,AAA Batteries (4-pack),2,2.99,11/05/19 09:28,"946 Walnut St, Los Angeles, CA 90001" +287526,Lightning Charging Cable,3,14.95,11/29/19 12:51,"978 Sunset St, Atlanta, GA 30301" +287527,Macbook Pro Laptop,1,1700,11/19/19 07:54,"461 9th St, Portland, ME 04101" +287528,USB-C Charging Cable,1,11.95,11/12/19 19:27,"313 Chestnut St, Atlanta, GA 30301" +287529,Bose SoundSport Headphones,1,99.99,11/15/19 12:31,"885 Ridge St, Seattle, WA 98101" +287530,AAA Batteries (4-pack),2,2.99,11/08/19 15:41,"653 2nd St, Los Angeles, CA 90001" +287531,iPhone,1,700,11/29/19 13:40,"358 Jefferson St, San Francisco, CA 94016" +287532,Apple Airpods Headphones,1,150,11/25/19 23:06,"288 Walnut St, New York City, NY 10001" +287533,AA Batteries (4-pack),2,3.84,11/27/19 12:22,"3 North St, New York City, NY 10001" +287534,Apple Airpods Headphones,1,150,11/10/19 14:21,"817 8th St, San Francisco, CA 94016" +287535,27in FHD Monitor,1,149.99,11/02/19 13:40,"310 Elm St, Portland, OR 97035" +287536,Wired Headphones,1,11.99,11/23/19 20:23,"83 Adams St, Los Angeles, CA 90001" +287537,Lightning Charging Cable,1,14.95,11/21/19 17:13,"739 6th St, San Francisco, CA 94016" +287538,Bose SoundSport Headphones,1,99.99,11/14/19 18:50,"249 South St, Los Angeles, CA 90001" +287539,AAA Batteries (4-pack),1,2.99,11/13/19 16:09,"565 Lincoln St, Los Angeles, CA 90001" +287540,AA Batteries (4-pack),1,3.84,11/28/19 07:54,"115 12th St, San Francisco, CA 94016" +287541,34in Ultrawide Monitor,1,379.99,11/22/19 11:16,"559 Ridge St, Portland, OR 97035" +287542,Apple Airpods Headphones,1,150,11/11/19 22:24,"967 Hill St, Los Angeles, CA 90001" +287543,iPhone,1,700,11/09/19 06:30,"559 11th St, Boston, MA 02215" +287544,Apple Airpods Headphones,1,150,11/26/19 13:12,"452 2nd St, Atlanta, GA 30301" +287545,Google Phone,1,600,11/14/19 11:45,"569 Maple St, Los Angeles, CA 90001" +287546,Lightning Charging Cable,1,14.95,11/09/19 23:30,"128 Elm St, San Francisco, CA 94016" +287547,USB-C Charging Cable,1,11.95,11/02/19 19:36,"869 Hickory St, Los Angeles, CA 90001" +287548,Wired Headphones,1,11.99,11/05/19 13:15,"651 Hickory St, Los Angeles, CA 90001" +287549,Lightning Charging Cable,1,14.95,11/07/19 22:47,"462 Maple St, Boston, MA 02215" +287550,Lightning Charging Cable,1,14.95,11/27/19 16:42,"943 1st St, Los Angeles, CA 90001" +287551,iPhone,1,700,11/09/19 10:13,"693 Park St, Atlanta, GA 30301" +287552,Lightning Charging Cable,1,14.95,11/17/19 20:03,"532 Chestnut St, Austin, TX 73301" +287553,LG Washing Machine,1,600.0,11/28/19 18:22,"200 5th St, New York City, NY 10001" +287554,Flatscreen TV,1,300,11/22/19 04:44,"862 Meadow St, Los Angeles, CA 90001" +287555,34in Ultrawide Monitor,1,379.99,11/08/19 12:27,"411 Hickory St, Portland, OR 97035" +287556,USB-C Charging Cable,1,11.95,11/14/19 23:25,"509 Jefferson St, Boston, MA 02215" +287557,Apple Airpods Headphones,1,150,11/20/19 09:16,"100 8th St, Dallas, TX 75001" +287558,USB-C Charging Cable,1,11.95,11/13/19 10:15,"34 Willow St, Seattle, WA 98101" +287559,Macbook Pro Laptop,1,1700,11/26/19 10:07,"911 Hickory St, San Francisco, CA 94016" +287560,iPhone,1,700,11/12/19 17:41,"318 South St, Seattle, WA 98101" +287561,AA Batteries (4-pack),2,3.84,11/29/19 14:56,"210 Lake St, New York City, NY 10001" +287562,AAA Batteries (4-pack),1,2.99,11/28/19 23:11,"192 Hill St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +287563,AAA Batteries (4-pack),2,2.99,11/09/19 15:25,"295 11th St, New York City, NY 10001" +287564,Macbook Pro Laptop,1,1700,11/13/19 21:22,"810 14th St, Portland, OR 97035" +287565,AA Batteries (4-pack),1,3.84,11/15/19 09:00,"755 2nd St, Portland, OR 97035" +287566,USB-C Charging Cable,1,11.95,11/10/19 11:11,"127 Dogwood St, Dallas, TX 75001" +287567,Lightning Charging Cable,1,14.95,11/13/19 21:11,"621 West St, San Francisco, CA 94016" +287568,Bose SoundSport Headphones,1,99.99,11/09/19 10:33,"987 River St, Portland, ME 04101" +287569,AA Batteries (4-pack),2,3.84,11/27/19 15:24,"937 Walnut St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +287570,Bose SoundSport Headphones,1,99.99,11/09/19 18:05,"523 Sunset St, Boston, MA 02215" +287571,USB-C Charging Cable,1,11.95,11/22/19 15:58,"819 6th St, New York City, NY 10001" +287572,USB-C Charging Cable,1,11.95,11/28/19 20:44,"492 Dogwood St, Los Angeles, CA 90001" +287573,27in FHD Monitor,1,149.99,11/29/19 06:57,"355 1st St, Austin, TX 73301" +287574,USB-C Charging Cable,1,11.95,11/04/19 10:32,"909 Lakeview St, Los Angeles, CA 90001" +287575,AAA Batteries (4-pack),2,2.99,11/07/19 11:38,"949 Cedar St, San Francisco, CA 94016" +287576,Macbook Pro Laptop,1,1700,11/21/19 20:49,"643 Adams St, Dallas, TX 75001" +287577,Bose SoundSport Headphones,1,99.99,11/02/19 16:06,"709 7th St, New York City, NY 10001" +287578,USB-C Charging Cable,1,11.95,11/25/19 15:48,"484 Cedar St, San Francisco, CA 94016" +287579,Bose SoundSport Headphones,2,99.99,11/24/19 18:31,"277 Lincoln St, San Francisco, CA 94016" +287580,20in Monitor,1,109.99,11/29/19 19:11,"287 Dogwood St, San Francisco, CA 94016" +287581,Wired Headphones,1,11.99,11/10/19 17:22,"841 Johnson St, New York City, NY 10001" +287582,Wired Headphones,2,11.99,11/07/19 15:36,"904 Madison St, Boston, MA 02215" +287583,34in Ultrawide Monitor,1,379.99,11/28/19 20:12,"397 Ridge St, Boston, MA 02215" +287584,AA Batteries (4-pack),1,3.84,11/10/19 08:55,"171 Lincoln St, Austin, TX 73301" +287585,Wired Headphones,1,11.99,11/26/19 16:55,"251 Lakeview St, San Francisco, CA 94016" +287586,AAA Batteries (4-pack),1,2.99,11/07/19 21:04,"757 Jackson St, Seattle, WA 98101" +287587,Apple Airpods Headphones,1,150,11/02/19 18:49,"559 Sunset St, Atlanta, GA 30301" +287588,ThinkPad Laptop,1,999.99,11/13/19 10:59,"2 Lincoln St, Los Angeles, CA 90001" +287589,27in 4K Gaming Monitor,1,389.99,11/09/19 00:01,"546 Wilson St, San Francisco, CA 94016" +287590,USB-C Charging Cable,1,11.95,11/16/19 10:46,"733 Johnson St, Portland, ME 04101" +287591,AAA Batteries (4-pack),2,2.99,11/13/19 08:12,"735 Chestnut St, Austin, TX 73301" +287592,AA Batteries (4-pack),1,3.84,11/07/19 16:34,"565 Sunset St, San Francisco, CA 94016" +287593,Flatscreen TV,1,300,11/06/19 18:45,"955 Center St, Boston, MA 02215" +287594,Vareebadd Phone,1,400,11/16/19 10:43,"540 11th St, San Francisco, CA 94016" +287595,AA Batteries (4-pack),1,3.84,11/03/19 09:17,"675 Hickory St, Dallas, TX 75001" +287596,iPhone,1,700,11/15/19 12:13,"144 8th St, Dallas, TX 75001" +287597,Lightning Charging Cable,1,14.95,11/27/19 12:12,"700 Cherry St, Dallas, TX 75001" +287598,Apple Airpods Headphones,1,150,11/29/19 21:16,"451 Park St, Dallas, TX 75001" +287599,Lightning Charging Cable,1,14.95,11/25/19 21:51,"905 10th St, Los Angeles, CA 90001" +287600,USB-C Charging Cable,1,11.95,11/10/19 11:21,"252 Meadow St, Seattle, WA 98101" +287601,AA Batteries (4-pack),1,3.84,11/26/19 19:40,"350 Highland St, Los Angeles, CA 90001" +287602,Bose SoundSport Headphones,1,99.99,11/21/19 21:53,"310 1st St, San Francisco, CA 94016" +287603,Wired Headphones,1,11.99,11/26/19 14:46,"465 4th St, San Francisco, CA 94016" +287604,Bose SoundSport Headphones,1,99.99,11/27/19 23:33,"617 Cherry St, Portland, OR 97035" +287605,Macbook Pro Laptop,1,1700,11/04/19 03:47,"232 Adams St, Portland, OR 97035" +287606,Flatscreen TV,1,300,11/13/19 14:14,"381 Jefferson St, San Francisco, CA 94016" +287607,Bose SoundSport Headphones,1,99.99,11/25/19 07:45,"78 13th St, Los Angeles, CA 90001" +287608,Bose SoundSport Headphones,1,99.99,11/16/19 21:25,"469 Elm St, San Francisco, CA 94016" +287609,Lightning Charging Cable,1,14.95,11/08/19 08:15,"37 River St, Boston, MA 02215" +287610,Wired Headphones,1,11.99,11/14/19 22:33,"119 4th St, New York City, NY 10001" +287611,Apple Airpods Headphones,1,150,11/24/19 16:38,"990 Park St, New York City, NY 10001" +287612,Lightning Charging Cable,1,14.95,11/11/19 22:49,"776 Jefferson St, New York City, NY 10001" +287613,34in Ultrawide Monitor,1,379.99,11/29/19 18:07,"579 Adams St, Los Angeles, CA 90001" +287614,Google Phone,1,600,11/01/19 05:58,"51 7th St, Portland, OR 97035" +287615,Apple Airpods Headphones,1,150,11/19/19 08:48,"172 Main St, Boston, MA 02215" +287616,AAA Batteries (4-pack),3,2.99,11/10/19 20:55,"700 12th St, San Francisco, CA 94016" +287617,Macbook Pro Laptop,1,1700,11/11/19 20:37,"497 8th St, Los Angeles, CA 90001" +287618,Bose SoundSport Headphones,1,99.99,11/08/19 21:20,"893 Walnut St, Boston, MA 02215" +287619,USB-C Charging Cable,1,11.95,11/07/19 06:32,"10 Hickory St, Seattle, WA 98101" +287620,Vareebadd Phone,1,400,11/02/19 12:28,"792 2nd St, San Francisco, CA 94016" +287620,USB-C Charging Cable,1,11.95,11/02/19 12:28,"792 2nd St, San Francisco, CA 94016" +287621,Lightning Charging Cable,1,14.95,11/30/19 20:32,"977 Sunset St, New York City, NY 10001" +287622,Wired Headphones,2,11.99,11/26/19 09:39,"926 Pine St, Boston, MA 02215" +287623,Flatscreen TV,1,300,11/16/19 12:13,"23 7th St, San Francisco, CA 94016" +287624,USB-C Charging Cable,1,11.95,11/03/19 16:10,"29 9th St, New York City, NY 10001" +287625,AA Batteries (4-pack),1,3.84,11/13/19 14:59,"846 13th St, Los Angeles, CA 90001" +287626,Apple Airpods Headphones,1,150,11/23/19 13:59,"531 9th St, Seattle, WA 98101" +287627,Lightning Charging Cable,1,14.95,11/05/19 11:15,"851 Ridge St, Los Angeles, CA 90001" +287628,USB-C Charging Cable,1,11.95,11/29/19 13:34,"537 Lakeview St, Dallas, TX 75001" +287629,USB-C Charging Cable,1,11.95,11/26/19 22:58,"401 Meadow St, San Francisco, CA 94016" +287630,27in FHD Monitor,1,149.99,11/20/19 00:47,"660 Spruce St, New York City, NY 10001" +287631,Apple Airpods Headphones,1,150,11/24/19 18:48,"857 Ridge St, Dallas, TX 75001" +287632,Wired Headphones,1,11.99,11/13/19 23:50,"865 Washington St, San Francisco, CA 94016" +287633,AA Batteries (4-pack),1,3.84,11/26/19 13:18,"791 Jefferson St, Los Angeles, CA 90001" +287634,Wired Headphones,1,11.99,11/29/19 22:08,"210 Lincoln St, Atlanta, GA 30301" +287635,Lightning Charging Cable,1,14.95,11/05/19 23:32,"815 Sunset St, New York City, NY 10001" +287636,Apple Airpods Headphones,1,150,11/15/19 09:03,"390 Adams St, Los Angeles, CA 90001" +287637,Wired Headphones,1,11.99,11/10/19 18:58,"628 West St, Los Angeles, CA 90001" +287638,Apple Airpods Headphones,1,150,11/06/19 09:18,"413 Church St, Seattle, WA 98101" +287639,AA Batteries (4-pack),1,3.84,11/02/19 12:56,"780 5th St, San Francisco, CA 94016" +287640,iPhone,1,700,11/04/19 10:42,"111 13th St, Los Angeles, CA 90001" +287640,Lightning Charging Cable,1,14.95,11/04/19 10:42,"111 13th St, Los Angeles, CA 90001" +287641,AAA Batteries (4-pack),1,2.99,11/11/19 17:24,"915 Jefferson St, Los Angeles, CA 90001" +287642,AA Batteries (4-pack),1,3.84,11/03/19 20:29,"382 Jackson St, Los Angeles, CA 90001" +287643,USB-C Charging Cable,1,11.95,11/05/19 11:16,"899 Willow St, Boston, MA 02215" +287644,Google Phone,1,600,11/10/19 12:52,"695 Church St, San Francisco, CA 94016" +287645,Apple Airpods Headphones,1,150,11/25/19 19:29,"155 12th St, New York City, NY 10001" +287646,AA Batteries (4-pack),1,3.84,11/25/19 22:21,"115 Hill St, San Francisco, CA 94016" +287647,AA Batteries (4-pack),1,3.84,11/03/19 10:08,"553 Chestnut St, New York City, NY 10001" +287648,AAA Batteries (4-pack),1,2.99,11/22/19 09:17,"919 Lincoln St, Atlanta, GA 30301" +287649,Bose SoundSport Headphones,1,99.99,11/30/19 22:18,"267 Meadow St, Boston, MA 02215" +287650,AA Batteries (4-pack),1,3.84,11/01/19 14:11,"855 1st St, San Francisco, CA 94016" +287651,Lightning Charging Cable,1,14.95,11/30/19 22:23,"445 10th St, Austin, TX 73301" +287652,USB-C Charging Cable,1,11.95,11/26/19 10:54,"66 West St, Austin, TX 73301" +287653,Wired Headphones,1,11.99,11/28/19 07:32,"155 Park St, New York City, NY 10001" +287654,Wired Headphones,1,11.99,11/19/19 17:52,"369 Dogwood St, New York City, NY 10001" +287655,Flatscreen TV,1,300,11/28/19 12:47,"905 Main St, San Francisco, CA 94016" +287655,Apple Airpods Headphones,1,150,11/28/19 12:47,"905 Main St, San Francisco, CA 94016" +287656,Apple Airpods Headphones,1,150,11/13/19 16:23,"449 12th St, Dallas, TX 75001" +287657,LG Washing Machine,1,600.0,11/29/19 20:49,"572 Maple St, New York City, NY 10001" +287658,AA Batteries (4-pack),1,3.84,11/01/19 13:05,"933 Wilson St, Atlanta, GA 30301" +287659,AA Batteries (4-pack),1,3.84,11/04/19 20:43,"648 Cherry St, New York City, NY 10001" +287660,Bose SoundSport Headphones,1,99.99,11/28/19 21:09,"124 Hickory St, Los Angeles, CA 90001" +287661,AAA Batteries (4-pack),1,2.99,11/03/19 15:19,"267 North St, Los Angeles, CA 90001" +287662,Bose SoundSport Headphones,1,99.99,11/01/19 17:07,"193 10th St, New York City, NY 10001" +287663,AAA Batteries (4-pack),1,2.99,11/09/19 12:09,"908 Lakeview St, New York City, NY 10001" +287664,Wired Headphones,1,11.99,11/12/19 11:37,"280 Willow St, San Francisco, CA 94016" +287665,Wired Headphones,1,11.99,11/14/19 12:24,"99 2nd St, Los Angeles, CA 90001" +287666,AAA Batteries (4-pack),3,2.99,11/21/19 11:49,"678 Willow St, Los Angeles, CA 90001" +287666,Apple Airpods Headphones,1,150,11/21/19 11:49,"678 Willow St, Los Angeles, CA 90001" +287667,ThinkPad Laptop,1,999.99,11/04/19 16:42,"482 West St, Los Angeles, CA 90001" +287668,AA Batteries (4-pack),1,3.84,11/27/19 12:58,"30 Maple St, San Francisco, CA 94016" +287669,Bose SoundSport Headphones,1,99.99,11/19/19 18:21,"651 1st St, San Francisco, CA 94016" +287670,Wired Headphones,1,11.99,11/29/19 12:45,"756 Wilson St, Dallas, TX 75001" +287671,USB-C Charging Cable,1,11.95,11/19/19 16:20,"439 9th St, Dallas, TX 75001" +287672,Vareebadd Phone,1,400,11/28/19 22:22,"868 6th St, Atlanta, GA 30301" +287673,AA Batteries (4-pack),1,3.84,11/06/19 10:23,"813 Hickory St, San Francisco, CA 94016" +287674,Bose SoundSport Headphones,1,99.99,11/03/19 08:45,"253 Hickory St, Los Angeles, CA 90001" +287675,AA Batteries (4-pack),1,3.84,11/16/19 09:49,"849 Cedar St, San Francisco, CA 94016" +287676,Lightning Charging Cable,1,14.95,11/25/19 13:35,"300 4th St, Los Angeles, CA 90001" +287677,34in Ultrawide Monitor,1,379.99,11/23/19 14:58,"570 9th St, Seattle, WA 98101" +287678,USB-C Charging Cable,1,11.95,11/23/19 08:33,"319 7th St, San Francisco, CA 94016" +287679,Lightning Charging Cable,1,14.95,11/04/19 21:10,"294 Forest St, New York City, NY 10001" +287680,27in FHD Monitor,1,149.99,11/16/19 13:58,"977 Walnut St, San Francisco, CA 94016" +287681,Apple Airpods Headphones,1,150,11/14/19 11:17,"921 North St, Seattle, WA 98101" +287682,AA Batteries (4-pack),1,3.84,11/02/19 13:07,"496 Walnut St, Seattle, WA 98101" +287683,Macbook Pro Laptop,1,1700,11/22/19 21:27,"616 Hickory St, San Francisco, CA 94016" +287684,Bose SoundSport Headphones,1,99.99,11/22/19 10:25,"589 Jackson St, Los Angeles, CA 90001" +287685,Lightning Charging Cable,1,14.95,11/04/19 15:09,"50 Chestnut St, New York City, NY 10001" +287686,20in Monitor,1,109.99,11/29/19 06:57,"15 South St, Los Angeles, CA 90001" +287687,USB-C Charging Cable,1,11.95,11/16/19 18:28,"740 Lincoln St, Boston, MA 02215" +287688,USB-C Charging Cable,1,11.95,11/28/19 19:58,"315 Cherry St, New York City, NY 10001" +287689,Wired Headphones,1,11.99,11/21/19 22:45,"20 Hill St, Los Angeles, CA 90001" +287690,AA Batteries (4-pack),1,3.84,11/19/19 02:03,"609 West St, Seattle, WA 98101" +287691,Lightning Charging Cable,1,14.95,11/09/19 09:27,"969 Dogwood St, Austin, TX 73301" +287692,27in FHD Monitor,1,149.99,11/22/19 10:33,"22 Ridge St, Los Angeles, CA 90001" +287693,34in Ultrawide Monitor,1,379.99,11/15/19 12:48,"600 Hill St, Atlanta, GA 30301" +287694,Macbook Pro Laptop,1,1700,11/01/19 17:27,"777 North St, Boston, MA 02215" +287695,Lightning Charging Cable,1,14.95,11/17/19 22:08,"399 Walnut St, New York City, NY 10001" +287696,ThinkPad Laptop,1,999.99,11/10/19 19:18,"51 Lake St, San Francisco, CA 94016" +287697,Wired Headphones,2,11.99,11/08/19 22:18,"173 Adams St, Portland, OR 97035" +287698,AAA Batteries (4-pack),1,2.99,11/16/19 19:41,"572 Park St, Portland, OR 97035" +287699,USB-C Charging Cable,1,11.95,11/25/19 00:01,"145 Johnson St, Dallas, TX 75001" +287700,iPhone,1,700,11/04/19 14:18,"706 Church St, New York City, NY 10001" +287701,AA Batteries (4-pack),1,3.84,11/14/19 12:15,"903 West St, Atlanta, GA 30301" +287702,Lightning Charging Cable,1,14.95,11/09/19 12:03,"634 6th St, Portland, OR 97035" +287703,27in FHD Monitor,1,149.99,11/27/19 20:22,"938 Willow St, Seattle, WA 98101" +287704,Wired Headphones,1,11.99,11/01/19 21:48,"408 6th St, Seattle, WA 98101" +287705,Bose SoundSport Headphones,1,99.99,11/19/19 19:41,"93 6th St, Portland, OR 97035" +287706,Lightning Charging Cable,1,14.95,11/08/19 09:24,"877 Lake St, Portland, OR 97035" +287707,USB-C Charging Cable,1,11.95,11/15/19 14:08,"858 6th St, Los Angeles, CA 90001" +287708,Lightning Charging Cable,1,14.95,11/02/19 16:30,"315 Lakeview St, Atlanta, GA 30301" +287709,Bose SoundSport Headphones,1,99.99,11/11/19 17:36,"275 4th St, New York City, NY 10001" +287710,34in Ultrawide Monitor,1,379.99,11/30/19 23:28,"102 Highland St, Dallas, TX 75001" +287711,USB-C Charging Cable,1,11.95,11/11/19 18:54,"907 Forest St, San Francisco, CA 94016" +287712,AAA Batteries (4-pack),2,2.99,11/14/19 12:58,"763 7th St, Los Angeles, CA 90001" +287713,AAA Batteries (4-pack),1,2.99,11/21/19 18:06,"289 Forest St, Atlanta, GA 30301" +287714,AAA Batteries (4-pack),1,2.99,11/22/19 20:15,"211 Wilson St, New York City, NY 10001" +287715,Apple Airpods Headphones,1,150,11/15/19 18:27,"971 Willow St, Boston, MA 02215" +287716,AAA Batteries (4-pack),3,2.99,11/24/19 21:31,"87 14th St, Austin, TX 73301" +287717,USB-C Charging Cable,1,11.95,11/16/19 19:13,"626 South St, San Francisco, CA 94016" +287718,USB-C Charging Cable,1,11.95,11/01/19 17:05,"244 Maple St, Los Angeles, CA 90001" +287719,AA Batteries (4-pack),1,3.84,11/01/19 21:23,"943 7th St, Seattle, WA 98101" +287720,AA Batteries (4-pack),1,3.84,11/30/19 01:02,"452 Ridge St, Seattle, WA 98101" +287721,Apple Airpods Headphones,1,150,11/12/19 12:40,"37 13th St, Atlanta, GA 30301" +287722,USB-C Charging Cable,1,11.95,11/01/19 10:47,"182 Adams St, New York City, NY 10001" +287723,Flatscreen TV,1,300,11/06/19 11:15,"60 Adams St, Los Angeles, CA 90001" +287724,AAA Batteries (4-pack),4,2.99,11/26/19 14:57,"149 Lincoln St, San Francisco, CA 94016" +287725,USB-C Charging Cable,1,11.95,11/17/19 19:27,"843 South St, San Francisco, CA 94016" +287726,27in FHD Monitor,1,149.99,11/29/19 12:36,"73 8th St, San Francisco, CA 94016" +287727,USB-C Charging Cable,1,11.95,11/01/19 09:11,"726 South St, Boston, MA 02215" +287728,Lightning Charging Cable,1,14.95,11/18/19 16:09,"451 Willow St, Atlanta, GA 30301" +287729,USB-C Charging Cable,2,11.95,11/16/19 14:44,"78 Cherry St, New York City, NY 10001" +287730,Bose SoundSport Headphones,1,99.99,11/24/19 21:36,"897 Wilson St, San Francisco, CA 94016" +287731,Lightning Charging Cable,1,14.95,11/28/19 20:24,"780 12th St, New York City, NY 10001" +287732,USB-C Charging Cable,1,11.95,11/18/19 20:44,"940 Highland St, Los Angeles, CA 90001" +287733,Wired Headphones,1,11.99,11/18/19 20:31,"373 2nd St, Boston, MA 02215" +287734,AAA Batteries (4-pack),1,2.99,11/06/19 22:15,"830 11th St, Boston, MA 02215" +287735,AAA Batteries (4-pack),2,2.99,11/20/19 21:03,"894 Lake St, Atlanta, GA 30301" +287736,Google Phone,1,600,11/13/19 16:59,"315 10th St, Austin, TX 73301" +287737,Lightning Charging Cable,1,14.95,11/26/19 13:06,"644 Jackson St, New York City, NY 10001" +287738,USB-C Charging Cable,1,11.95,11/15/19 21:42,"717 Jefferson St, New York City, NY 10001" +287739,AAA Batteries (4-pack),1,2.99,11/04/19 17:59,"912 7th St, Los Angeles, CA 90001" +287740,AA Batteries (4-pack),1,3.84,11/29/19 14:41,"798 North St, San Francisco, CA 94016" +287741,Lightning Charging Cable,1,14.95,11/08/19 11:58,"986 10th St, Portland, OR 97035" +287742,34in Ultrawide Monitor,1,379.99,11/01/19 19:28,"309 9th St, San Francisco, CA 94016" +287743,34in Ultrawide Monitor,1,379.99,11/10/19 22:50,"329 8th St, San Francisco, CA 94016" +287744,ThinkPad Laptop,1,999.99,11/09/19 13:25,"727 8th St, Dallas, TX 75001" +287745,USB-C Charging Cable,1,11.95,11/21/19 18:22,"734 2nd St, Dallas, TX 75001" +287746,iPhone,1,700,11/03/19 12:04,"626 Johnson St, New York City, NY 10001" +287747,Lightning Charging Cable,1,14.95,11/19/19 14:52,"310 Adams St, Dallas, TX 75001" +287748,AAA Batteries (4-pack),2,2.99,11/08/19 21:50,"289 Hill St, Portland, OR 97035" +287749,Lightning Charging Cable,1,14.95,11/09/19 13:38,"100 2nd St, San Francisco, CA 94016" +287750,Lightning Charging Cable,1,14.95,11/18/19 13:02,"734 Lakeview St, San Francisco, CA 94016" +287751,USB-C Charging Cable,1,11.95,11/22/19 17:07,"576 Walnut St, San Francisco, CA 94016" +287752,AA Batteries (4-pack),2,3.84,11/11/19 23:49,"731 Sunset St, Austin, TX 73301" +287753,AAA Batteries (4-pack),1,2.99,11/02/19 12:18,"853 Hickory St, Boston, MA 02215" +287754,Bose SoundSport Headphones,1,99.99,11/21/19 19:16,"225 6th St, Boston, MA 02215" +287755,Vareebadd Phone,1,400,11/12/19 10:20,"431 Church St, Atlanta, GA 30301" +287756,27in FHD Monitor,1,149.99,11/15/19 16:43,"902 Pine St, Seattle, WA 98101" +287757,Bose SoundSport Headphones,1,99.99,11/24/19 18:26,"95 Park St, Portland, OR 97035" +287758,AA Batteries (4-pack),1,3.84,11/01/19 23:54,"948 North St, Atlanta, GA 30301" +287759,USB-C Charging Cable,1,11.95,11/16/19 22:58,"939 13th St, Atlanta, GA 30301" +287759,AA Batteries (4-pack),1,3.84,11/16/19 22:58,"939 13th St, Atlanta, GA 30301" +287760,Bose SoundSport Headphones,1,99.99,11/11/19 13:41,"292 Wilson St, Boston, MA 02215" +287761,Lightning Charging Cable,1,14.95,11/07/19 10:38,"433 Jefferson St, New York City, NY 10001" +287762,LG Washing Machine,1,600.0,11/14/19 23:38,"924 Ridge St, San Francisco, CA 94016" +287763,AA Batteries (4-pack),2,3.84,11/19/19 12:41,"12 1st St, San Francisco, CA 94016" +287764,AAA Batteries (4-pack),3,2.99,11/26/19 21:07,"970 8th St, Portland, OR 97035" +287765,USB-C Charging Cable,1,11.95,11/02/19 21:25,"286 Church St, San Francisco, CA 94016" +287766,Apple Airpods Headphones,1,150,11/26/19 21:51,"874 Adams St, Seattle, WA 98101" +287767,Apple Airpods Headphones,1,150,11/30/19 14:02,"663 7th St, Boston, MA 02215" +287768,USB-C Charging Cable,1,11.95,11/04/19 00:33,"629 Spruce St, Los Angeles, CA 90001" +287769,Lightning Charging Cable,1,14.95,11/14/19 10:10,"691 Forest St, Los Angeles, CA 90001" +287770,USB-C Charging Cable,1,11.95,11/16/19 19:09,"258 Adams St, Atlanta, GA 30301" +287771,ThinkPad Laptop,1,999.99,11/20/19 23:10,"831 Sunset St, Boston, MA 02215" +287772,Macbook Pro Laptop,1,1700,11/17/19 22:15,"333 Park St, New York City, NY 10001" +287773,AAA Batteries (4-pack),1,2.99,11/03/19 08:35,"546 10th St, Boston, MA 02215" +287774,AA Batteries (4-pack),1,3.84,11/25/19 23:45,"174 Forest St, Atlanta, GA 30301" +287775,Wired Headphones,1,11.99,11/14/19 17:57,"482 Center St, Boston, MA 02215" +287776,USB-C Charging Cable,2,11.95,11/28/19 15:06,"920 9th St, San Francisco, CA 94016" +287777,AA Batteries (4-pack),1,3.84,11/04/19 22:19,"92 Pine St, Austin, TX 73301" +287778,USB-C Charging Cable,1,11.95,11/06/19 10:24,"922 9th St, San Francisco, CA 94016" +287779,20in Monitor,1,109.99,11/23/19 22:40,"177 Meadow St, Atlanta, GA 30301" +287780,AA Batteries (4-pack),1,3.84,11/16/19 20:00,"645 Cedar St, New York City, NY 10001" +287781,Wired Headphones,1,11.99,11/01/19 22:18,"336 Pine St, San Francisco, CA 94016" +287782,AAA Batteries (4-pack),1,2.99,11/07/19 12:31,"562 7th St, Dallas, TX 75001" +287783,Apple Airpods Headphones,1,150,11/18/19 13:12,"288 9th St, Austin, TX 73301" +287784,Apple Airpods Headphones,1,150,11/12/19 12:03,"553 8th St, Los Angeles, CA 90001" +287785,27in FHD Monitor,1,149.99,11/26/19 19:43,"896 Adams St, San Francisco, CA 94016" +287786,Wired Headphones,1,11.99,11/07/19 15:12,"967 Pine St, New York City, NY 10001" +287787,Macbook Pro Laptop,1,1700,11/16/19 11:18,"271 Spruce St, San Francisco, CA 94016" +287788,Google Phone,1,600,11/02/19 16:44,"96 4th St, Los Angeles, CA 90001" +287789,Bose SoundSport Headphones,1,99.99,11/25/19 20:19,"942 Elm St, Seattle, WA 98101" +287790,USB-C Charging Cable,1,11.95,11/09/19 19:17,"1 13th St, San Francisco, CA 94016" +287791,Google Phone,1,600,11/26/19 11:20,"829 Lakeview St, New York City, NY 10001" +287791,USB-C Charging Cable,1,11.95,11/26/19 11:20,"829 Lakeview St, New York City, NY 10001" +287792,Wired Headphones,1,11.99,11/11/19 23:56,"179 Spruce St, Portland, OR 97035" +287793,Apple Airpods Headphones,1,150,11/05/19 15:23,"282 Dogwood St, San Francisco, CA 94016" +287794,27in FHD Monitor,1,149.99,11/15/19 05:51,"546 Madison St, San Francisco, CA 94016" +287795,USB-C Charging Cable,1,11.95,11/09/19 20:51,"531 Highland St, Boston, MA 02215" +287796,USB-C Charging Cable,1,11.95,11/12/19 08:08,"629 7th St, Los Angeles, CA 90001" +287797,Wired Headphones,1,11.99,11/09/19 12:32,"500 Maple St, Los Angeles, CA 90001" +287798,Wired Headphones,1,11.99,11/10/19 22:08,"313 Spruce St, Austin, TX 73301" +287799,AA Batteries (4-pack),1,3.84,11/15/19 17:35,"300 9th St, Dallas, TX 75001" +287800,Wired Headphones,1,11.99,11/19/19 00:40,"439 Washington St, San Francisco, CA 94016" +287801,LG Washing Machine,1,600.0,11/21/19 20:29,"701 Jackson St, San Francisco, CA 94016" +287802,Lightning Charging Cable,1,14.95,11/04/19 20:56,"280 10th St, San Francisco, CA 94016" +287803,AA Batteries (4-pack),3,3.84,11/09/19 16:23,"303 Walnut St, San Francisco, CA 94016" +287804,AAA Batteries (4-pack),2,2.99,11/25/19 22:08,"468 12th St, New York City, NY 10001" +287805,27in 4K Gaming Monitor,1,389.99,11/15/19 18:39,"342 Madison St, New York City, NY 10001" +287806,USB-C Charging Cable,1,11.95,11/06/19 18:58,"43 9th St, Atlanta, GA 30301" +287807,USB-C Charging Cable,1,11.95,11/01/19 21:43,"790 Park St, San Francisco, CA 94016" +287808,34in Ultrawide Monitor,1,379.99,11/07/19 12:31,"782 9th St, Portland, OR 97035" +287809,Lightning Charging Cable,1,14.95,11/03/19 09:34,"966 Cedar St, Atlanta, GA 30301" +287810,AA Batteries (4-pack),1,3.84,11/24/19 22:03,"558 14th St, Dallas, TX 75001" +287811,AA Batteries (4-pack),1,3.84,11/18/19 17:04,"332 6th St, San Francisco, CA 94016" +287812,AAA Batteries (4-pack),1,2.99,11/11/19 12:08,"632 6th St, San Francisco, CA 94016" +287813,AAA Batteries (4-pack),2,2.99,11/29/19 09:55,"736 Dogwood St, San Francisco, CA 94016" +287814,Wired Headphones,1,11.99,11/04/19 06:22,"374 North St, Atlanta, GA 30301" +287815,AAA Batteries (4-pack),2,2.99,11/12/19 22:37,"986 1st St, New York City, NY 10001" +287816,ThinkPad Laptop,1,999.99,11/25/19 11:50,"123 Lake St, San Francisco, CA 94016" +287817,iPhone,1,700,11/24/19 08:27,"74 Forest St, Dallas, TX 75001" +287818,AA Batteries (4-pack),1,3.84,11/06/19 20:18,"684 Lakeview St, Boston, MA 02215" +287819,USB-C Charging Cable,1,11.95,11/02/19 16:16,"405 Jefferson St, Austin, TX 73301" +287820,USB-C Charging Cable,1,11.95,11/22/19 13:38,"747 Meadow St, Los Angeles, CA 90001" +287821,AAA Batteries (4-pack),1,2.99,11/29/19 18:05,"156 2nd St, San Francisco, CA 94016" +287822,Google Phone,1,600,11/23/19 10:38,"569 Church St, Boston, MA 02215" +287823,Lightning Charging Cable,2,14.95,11/01/19 07:00,"6 Sunset St, Austin, TX 73301" +287824,Wired Headphones,1,11.99,11/21/19 13:12,"68 South St, Boston, MA 02215" +287825,Apple Airpods Headphones,1,150,11/15/19 14:09,"370 Main St, Boston, MA 02215" +287826,Lightning Charging Cable,1,14.95,11/09/19 20:01,"57 Hickory St, San Francisco, CA 94016" +287827,USB-C Charging Cable,1,11.95,11/26/19 19:03,"235 11th St, Portland, OR 97035" +287828,Wired Headphones,1,11.99,11/08/19 13:18,"522 1st St, New York City, NY 10001" +287829,AA Batteries (4-pack),1,3.84,11/14/19 21:28,"683 Forest St, San Francisco, CA 94016" +287830,LG Washing Machine,1,600.0,11/30/19 18:11,"224 River St, New York City, NY 10001" +287831,AAA Batteries (4-pack),1,2.99,11/16/19 11:16,"205 Lake St, Atlanta, GA 30301" +287832,Vareebadd Phone,1,400,11/26/19 19:30,"156 North St, New York City, NY 10001" +287833,27in 4K Gaming Monitor,1,389.99,11/13/19 16:59,"147 Walnut St, Seattle, WA 98101" +287834,Lightning Charging Cable,1,14.95,11/10/19 09:17,"87 Lake St, Dallas, TX 75001" +287835,27in FHD Monitor,1,149.99,11/09/19 11:18,"78 South St, Dallas, TX 75001" +287836,Wired Headphones,1,11.99,11/07/19 20:19,"313 Spruce St, Boston, MA 02215" +287837,Google Phone,1,600,11/16/19 17:27,"103 Cherry St, Los Angeles, CA 90001" +287838,Lightning Charging Cable,2,14.95,11/05/19 21:42,"180 Elm St, San Francisco, CA 94016" +287839,Bose SoundSport Headphones,1,99.99,11/03/19 13:45,"684 Park St, Austin, TX 73301" +287840,AAA Batteries (4-pack),1,2.99,11/18/19 20:30,"103 Adams St, Boston, MA 02215" +287841,ThinkPad Laptop,1,999.99,11/01/19 20:29,"358 Adams St, New York City, NY 10001" +287842,USB-C Charging Cable,1,11.95,11/07/19 13:52,"15 11th St, Atlanta, GA 30301" +287843,20in Monitor,1,109.99,11/12/19 15:04,"993 Meadow St, Austin, TX 73301" +287844,Wired Headphones,1,11.99,11/29/19 14:57,"386 North St, Dallas, TX 75001" +287845,USB-C Charging Cable,1,11.95,11/09/19 12:39,"913 Highland St, Portland, ME 04101" +287846,ThinkPad Laptop,1,999.99,11/12/19 20:18,"817 Forest St, New York City, NY 10001" +287847,AAA Batteries (4-pack),1,2.99,11/24/19 23:35,"618 Cedar St, San Francisco, CA 94016" +287848,Macbook Pro Laptop,1,1700,11/17/19 21:49,"525 South St, Atlanta, GA 30301" +287849,27in FHD Monitor,1,149.99,11/05/19 12:55,"253 10th St, New York City, NY 10001" +287850,27in 4K Gaming Monitor,1,389.99,11/12/19 21:39,"543 13th St, Los Angeles, CA 90001" +287851,USB-C Charging Cable,1,11.95,11/14/19 15:28,"126 West St, San Francisco, CA 94016" +287852,USB-C Charging Cable,1,11.95,11/15/19 02:15,"179 Elm St, San Francisco, CA 94016" +287853,Wired Headphones,1,11.99,11/29/19 13:09,"782 11th St, San Francisco, CA 94016" +287854,USB-C Charging Cable,1,11.95,11/21/19 21:50,"520 7th St, San Francisco, CA 94016" +287855,AA Batteries (4-pack),1,3.84,11/14/19 10:49,"781 Jackson St, San Francisco, CA 94016" +287856,Wired Headphones,2,11.99,11/09/19 13:48,"826 Hickory St, New York City, NY 10001" +287857,AA Batteries (4-pack),1,3.84,11/23/19 12:05,"275 Adams St, Boston, MA 02215" +287858,27in 4K Gaming Monitor,1,389.99,11/24/19 08:45,"238 10th St, San Francisco, CA 94016" +287859,iPhone,1,700,11/04/19 11:21,"773 Cedar St, San Francisco, CA 94016" +287859,Wired Headphones,1,11.99,11/04/19 11:21,"773 Cedar St, San Francisco, CA 94016" +287860,Apple Airpods Headphones,1,150,11/19/19 09:58,"751 Maple St, Boston, MA 02215" +287861,Apple Airpods Headphones,1,150,11/04/19 12:08,"283 9th St, Portland, OR 97035" +287862,34in Ultrawide Monitor,1,379.99,11/08/19 21:57,"434 Church St, Austin, TX 73301" +287863,AA Batteries (4-pack),2,3.84,11/19/19 15:03,"731 Church St, Los Angeles, CA 90001" +287864,Wired Headphones,1,11.99,11/02/19 13:07,"354 Main St, Atlanta, GA 30301" +287865,AA Batteries (4-pack),2,3.84,11/24/19 15:12,"799 Forest St, Seattle, WA 98101" +287866,Lightning Charging Cable,1,14.95,11/05/19 13:09,"17 Center St, Dallas, TX 75001" +287867,Bose SoundSport Headphones,1,99.99,11/29/19 12:30,"870 Washington St, Portland, OR 97035" +287868,AA Batteries (4-pack),1,3.84,11/05/19 14:32,"965 Lakeview St, Dallas, TX 75001" +287869,AA Batteries (4-pack),3,3.84,11/08/19 19:25,"828 5th St, Atlanta, GA 30301" +287870,Lightning Charging Cable,1,14.95,11/29/19 10:37,"899 4th St, San Francisco, CA 94016" +287871,Macbook Pro Laptop,1,1700,11/21/19 03:28,"361 Hill St, New York City, NY 10001" +287872,iPhone,1,700,11/01/19 16:14,"970 5th St, Portland, ME 04101" +287873,USB-C Charging Cable,1,11.95,11/06/19 19:25,"125 14th St, Dallas, TX 75001" +287874,34in Ultrawide Monitor,1,379.99,11/14/19 14:33,"929 Chestnut St, Atlanta, GA 30301" +287875,USB-C Charging Cable,1,11.95,11/17/19 11:39,"236 Highland St, Atlanta, GA 30301" +287876,Wired Headphones,1,11.99,11/26/19 10:57,"923 9th St, San Francisco, CA 94016" +287877,USB-C Charging Cable,1,11.95,11/13/19 17:06,"828 Meadow St, San Francisco, CA 94016" +287878,Lightning Charging Cable,1,14.95,11/16/19 17:51,"383 Hickory St, Los Angeles, CA 90001" +287878,Lightning Charging Cable,1,14.95,11/16/19 17:51,"383 Hickory St, Los Angeles, CA 90001" +287879,Lightning Charging Cable,1,14.95,11/01/19 09:26,"94 7th St, San Francisco, CA 94016" +287880,Lightning Charging Cable,1,14.95,11/28/19 11:43,"646 Johnson St, Atlanta, GA 30301" +287881,Macbook Pro Laptop,1,1700,11/08/19 13:36,"748 Johnson St, Austin, TX 73301" +287882,AA Batteries (4-pack),1,3.84,11/03/19 20:55,"947 Washington St, New York City, NY 10001" +287883,AAA Batteries (4-pack),3,2.99,11/08/19 23:31,"477 Cedar St, Los Angeles, CA 90001" +287884,20in Monitor,1,109.99,11/05/19 07:59,"140 South St, San Francisco, CA 94016" +287885,AAA Batteries (4-pack),2,2.99,11/30/19 11:54,"376 North St, San Francisco, CA 94016" +287886,Macbook Pro Laptop,1,1700,11/11/19 18:50,"564 Lake St, San Francisco, CA 94016" +287887,Lightning Charging Cable,1,14.95,11/10/19 10:03,"200 8th St, Dallas, TX 75001" +287888,Google Phone,1,600,11/11/19 10:48,"802 Meadow St, New York City, NY 10001" +287889,34in Ultrawide Monitor,1,379.99,11/25/19 14:44,"388 Hill St, San Francisco, CA 94016" +287890,ThinkPad Laptop,1,999.99,11/22/19 17:23,"437 Johnson St, Dallas, TX 75001" +287891,Lightning Charging Cable,1,14.95,11/21/19 19:28,"144 Lake St, Boston, MA 02215" +287892,27in 4K Gaming Monitor,1,389.99,11/02/19 18:01,"296 Pine St, New York City, NY 10001" +287893,AAA Batteries (4-pack),1,2.99,11/04/19 20:15,"463 12th St, San Francisco, CA 94016" +287894,27in 4K Gaming Monitor,1,389.99,11/21/19 23:49,"718 Chestnut St, Los Angeles, CA 90001" +287895,Apple Airpods Headphones,1,150,11/20/19 11:09,"656 10th St, Boston, MA 02215" +287896,Wired Headphones,1,11.99,11/22/19 20:24,"907 Hill St, Dallas, TX 75001" +287897,Flatscreen TV,1,300,11/04/19 17:16,"517 6th St, San Francisco, CA 94016" +287898,Bose SoundSport Headphones,1,99.99,11/17/19 21:36,"424 Park St, San Francisco, CA 94016" +287899,AAA Batteries (4-pack),2,2.99,11/16/19 16:27,"678 Ridge St, San Francisco, CA 94016" +287900,Bose SoundSport Headphones,1,99.99,11/11/19 10:52,"87 12th St, Austin, TX 73301" +287901,AA Batteries (4-pack),2,3.84,11/22/19 12:01,"258 11th St, New York City, NY 10001" +287902,Wired Headphones,1,11.99,11/29/19 10:51,"233 West St, Dallas, TX 75001" +287903,Bose SoundSport Headphones,1,99.99,11/17/19 15:29,"326 Adams St, Los Angeles, CA 90001" +287904,AA Batteries (4-pack),1,3.84,11/05/19 21:00,"621 Maple St, Seattle, WA 98101" +287905,Lightning Charging Cable,1,14.95,11/05/19 18:35,"893 9th St, Boston, MA 02215" +287906,USB-C Charging Cable,1,11.95,11/22/19 20:39,"663 South St, New York City, NY 10001" +287907,Wired Headphones,1,11.99,11/26/19 12:19,"661 1st St, Los Angeles, CA 90001" +287908,AA Batteries (4-pack),1,3.84,11/28/19 13:23,"723 South St, San Francisco, CA 94016" +287909,AAA Batteries (4-pack),1,2.99,11/04/19 14:08,"283 South St, San Francisco, CA 94016" +287910,USB-C Charging Cable,1,11.95,11/20/19 13:43,"261 13th St, Dallas, TX 75001" +287911,27in FHD Monitor,1,149.99,12/01/19 00:43,"499 14th St, New York City, NY 10001" +287912,AAA Batteries (4-pack),2,2.99,11/24/19 18:47,"738 5th St, San Francisco, CA 94016" +287913,USB-C Charging Cable,1,11.95,11/19/19 09:30,"358 Walnut St, San Francisco, CA 94016" +287914,Apple Airpods Headphones,1,150,11/03/19 14:07,"59 Lakeview St, Seattle, WA 98101" +287915,AA Batteries (4-pack),1,3.84,11/03/19 15:12,"738 Pine St, San Francisco, CA 94016" +287916,iPhone,1,700,11/07/19 08:58,"180 Park St, Boston, MA 02215" +287917,Lightning Charging Cable,1,14.95,11/08/19 09:33,"860 Spruce St, San Francisco, CA 94016" +287918,27in 4K Gaming Monitor,1,389.99,11/28/19 14:24,"573 11th St, Portland, OR 97035" +287919,34in Ultrawide Monitor,1,379.99,11/17/19 16:14,"814 Jefferson St, Austin, TX 73301" +287920,USB-C Charging Cable,1,11.95,11/21/19 10:37,"574 Lakeview St, Atlanta, GA 30301" +287921,Bose SoundSport Headphones,1,99.99,11/21/19 10:27,"539 4th St, Seattle, WA 98101" +287922,Apple Airpods Headphones,1,150,11/24/19 13:34,"943 9th St, New York City, NY 10001" +287923,AA Batteries (4-pack),1,3.84,11/26/19 13:44,"83 Cedar St, Boston, MA 02215" +287924,Macbook Pro Laptop,1,1700,11/30/19 14:30,"606 10th St, Boston, MA 02215" +287925,AAA Batteries (4-pack),1,2.99,11/09/19 14:02,"128 Cedar St, Austin, TX 73301" +287926,AAA Batteries (4-pack),1,2.99,11/04/19 19:42,"638 Jackson St, Atlanta, GA 30301" +287927,USB-C Charging Cable,1,11.95,11/14/19 21:35,"310 Spruce St, Atlanta, GA 30301" +287928,AA Batteries (4-pack),1,3.84,11/12/19 12:09,"484 Adams St, Dallas, TX 75001" +287929,Wired Headphones,1,11.99,11/18/19 11:34,"942 Lincoln St, Austin, TX 73301" +287930,AA Batteries (4-pack),1,3.84,11/01/19 10:19,"65 Willow St, Seattle, WA 98101" +287931,27in FHD Monitor,1,149.99,11/28/19 16:13,"708 River St, Atlanta, GA 30301" +287932,Macbook Pro Laptop,1,1700,11/23/19 14:53,"60 Lincoln St, New York City, NY 10001" +287933,Lightning Charging Cable,1,14.95,11/24/19 09:40,"73 4th St, Atlanta, GA 30301" +287934,LG Dryer,1,600.0,11/26/19 18:59,"204 Sunset St, Seattle, WA 98101" +287935,Apple Airpods Headphones,1,150,11/02/19 14:47,"721 Center St, Seattle, WA 98101" +287936,ThinkPad Laptop,1,999.99,11/02/19 02:14,"481 12th St, Seattle, WA 98101" +287937,Lightning Charging Cable,1,14.95,11/13/19 21:22,"656 6th St, San Francisco, CA 94016" +287938,iPhone,1,700,11/24/19 00:17,"769 Pine St, Dallas, TX 75001" +287938,Apple Airpods Headphones,1,150,11/24/19 00:17,"769 Pine St, Dallas, TX 75001" +287938,Wired Headphones,1,11.99,11/24/19 00:17,"769 Pine St, Dallas, TX 75001" +287939,AAA Batteries (4-pack),2,2.99,11/01/19 17:38,"227 Madison St, Los Angeles, CA 90001" +287940,AA Batteries (4-pack),1,3.84,11/12/19 01:42,"932 12th St, Seattle, WA 98101" +287941,Lightning Charging Cable,1,14.95,11/20/19 19:56,"610 1st St, Dallas, TX 75001" +287942,Bose SoundSport Headphones,1,99.99,11/15/19 16:59,"744 Elm St, Austin, TX 73301" +287943,AA Batteries (4-pack),2,3.84,11/12/19 11:12,"320 2nd St, San Francisco, CA 94016" +287944,Lightning Charging Cable,1,14.95,11/09/19 12:39,"389 2nd St, Austin, TX 73301" +287945,20in Monitor,1,109.99,11/22/19 14:29,"861 Church St, San Francisco, CA 94016" +287946,iPhone,1,700,11/05/19 22:31,"712 Washington St, Dallas, TX 75001" +287947,27in FHD Monitor,1,149.99,11/08/19 21:24,"480 Main St, San Francisco, CA 94016" +287948,AA Batteries (4-pack),1,3.84,11/15/19 21:47,"542 Jefferson St, New York City, NY 10001" +287949,Flatscreen TV,1,300,11/26/19 16:19,"180 Main St, Boston, MA 02215" +287949,Lightning Charging Cable,1,14.95,11/26/19 16:19,"180 Main St, Boston, MA 02215" +287950,AAA Batteries (4-pack),2,2.99,11/24/19 12:53,"996 Center St, San Francisco, CA 94016" +287951,AA Batteries (4-pack),2,3.84,11/06/19 09:38,"634 Spruce St, Seattle, WA 98101" +287952,AA Batteries (4-pack),2,3.84,11/03/19 19:51,"965 Jefferson St, Los Angeles, CA 90001" +287953,iPhone,1,700,11/10/19 16:52,"951 Sunset St, Austin, TX 73301" +287954,Wired Headphones,1,11.99,11/22/19 00:01,"945 Pine St, San Francisco, CA 94016" +287955,AAA Batteries (4-pack),1,2.99,11/22/19 09:03,"908 West St, Los Angeles, CA 90001" +287956,USB-C Charging Cable,1,11.95,11/04/19 23:39,"168 Jackson St, San Francisco, CA 94016" +287957,27in FHD Monitor,1,149.99,11/29/19 22:09,"878 Lincoln St, San Francisco, CA 94016" +287958,AAA Batteries (4-pack),2,2.99,11/02/19 19:31,"346 Elm St, New York City, NY 10001" +287959,AAA Batteries (4-pack),1,2.99,11/18/19 12:24,"622 Hickory St, New York City, NY 10001" +287960,USB-C Charging Cable,1,11.95,11/06/19 19:30,"928 Chestnut St, San Francisco, CA 94016" +287961,Apple Airpods Headphones,1,150,11/19/19 12:19,"449 Ridge St, Boston, MA 02215" +287962,Wired Headphones,1,11.99,11/26/19 18:34,"890 4th St, Los Angeles, CA 90001" +287963,Bose SoundSport Headphones,1,99.99,11/19/19 14:06,"143 Lakeview St, San Francisco, CA 94016" +287964,Flatscreen TV,1,300,11/15/19 14:59,"703 Main St, San Francisco, CA 94016" +287965,AAA Batteries (4-pack),1,2.99,11/29/19 12:08,"371 West St, San Francisco, CA 94016" +287966,AA Batteries (4-pack),3,3.84,11/12/19 20:58,"518 Dogwood St, Portland, OR 97035" +287967,Macbook Pro Laptop,1,1700,11/16/19 08:49,"277 West St, Austin, TX 73301" +287968,27in 4K Gaming Monitor,1,389.99,11/10/19 18:39,"149 Center St, Los Angeles, CA 90001" +287969,Vareebadd Phone,1,400,11/09/19 16:25,"189 Center St, New York City, NY 10001" +287970,AAA Batteries (4-pack),1,2.99,11/10/19 07:21,"530 Sunset St, Los Angeles, CA 90001" +287971,Wired Headphones,1,11.99,11/15/19 12:36,"163 Dogwood St, New York City, NY 10001" +287972,ThinkPad Laptop,1,999.99,11/21/19 17:38,"800 River St, Seattle, WA 98101" +287973,Wired Headphones,1,11.99,11/26/19 11:43,"331 13th St, Dallas, TX 75001" +287974,34in Ultrawide Monitor,1,379.99,11/05/19 11:49,"737 8th St, San Francisco, CA 94016" +287975,27in FHD Monitor,1,149.99,11/11/19 20:16,"318 West St, Boston, MA 02215" +287976,Bose SoundSport Headphones,1,99.99,11/14/19 21:30,"948 Johnson St, Boston, MA 02215" +287977,Bose SoundSport Headphones,1,99.99,11/16/19 19:47,"172 Jackson St, Portland, OR 97035" +287978,iPhone,1,700,11/05/19 13:56,"989 Park St, Dallas, TX 75001" +287978,Lightning Charging Cable,1,14.95,11/05/19 13:56,"989 Park St, Dallas, TX 75001" +287979,AAA Batteries (4-pack),1,2.99,11/27/19 19:35,"759 Park St, New York City, NY 10001" +287980,27in 4K Gaming Monitor,1,389.99,11/12/19 21:10,"576 Washington St, Austin, TX 73301" +287981,USB-C Charging Cable,1,11.95,11/26/19 17:09,"359 Adams St, Atlanta, GA 30301" +287982,Google Phone,1,600,11/17/19 08:18,"381 Center St, San Francisco, CA 94016" +287983,AA Batteries (4-pack),2,3.84,11/11/19 20:29,"422 Dogwood St, Atlanta, GA 30301" +287984,Flatscreen TV,1,300,11/22/19 07:59,"189 7th St, Boston, MA 02215" +287985,Wired Headphones,1,11.99,11/09/19 20:01,"711 Meadow St, San Francisco, CA 94016" +287986,Lightning Charging Cable,1,14.95,11/18/19 12:33,"667 Elm St, Atlanta, GA 30301" +287987,Bose SoundSport Headphones,1,99.99,11/13/19 16:55,"81 Dogwood St, Los Angeles, CA 90001" +287988,Bose SoundSport Headphones,1,99.99,11/24/19 09:43,"15 Willow St, New York City, NY 10001" +287989,AA Batteries (4-pack),1,3.84,11/17/19 20:19,"301 14th St, San Francisco, CA 94016" +287990,iPhone,1,700,11/27/19 01:15,"353 Spruce St, New York City, NY 10001" +287991,Apple Airpods Headphones,1,150,11/26/19 16:36,"919 River St, Atlanta, GA 30301" +287992,Apple Airpods Headphones,1,150,11/26/19 16:48,"903 Willow St, Los Angeles, CA 90001" +287993,Bose SoundSport Headphones,1,99.99,11/13/19 18:17,"733 West St, New York City, NY 10001" +287994,Lightning Charging Cable,1,14.95,11/08/19 18:06,"438 North St, San Francisco, CA 94016" +287995,Lightning Charging Cable,1,14.95,11/25/19 15:25,"475 Jefferson St, San Francisco, CA 94016" +287996,Lightning Charging Cable,1,14.95,11/19/19 16:17,"519 6th St, San Francisco, CA 94016" +287997,Flatscreen TV,1,300,11/29/19 23:06,"647 Park St, Los Angeles, CA 90001" +287998,27in FHD Monitor,1,149.99,11/20/19 01:30,"557 4th St, Los Angeles, CA 90001" +287999,Apple Airpods Headphones,1,150,11/27/19 21:19,"729 Johnson St, Portland, OR 97035" +288000,USB-C Charging Cable,1,11.95,11/05/19 01:03,"892 Park St, San Francisco, CA 94016" +288001,Lightning Charging Cable,1,14.95,11/25/19 20:24,"668 14th St, Atlanta, GA 30301" +288002,USB-C Charging Cable,1,11.95,11/26/19 12:46,"403 West St, New York City, NY 10001" +288003,AA Batteries (4-pack),3,3.84,11/26/19 15:15,"775 Lake St, Boston, MA 02215" +288004,AA Batteries (4-pack),1,3.84,11/19/19 16:51,"645 14th St, Austin, TX 73301" +288005,27in 4K Gaming Monitor,1,389.99,11/07/19 18:09,"35 Walnut St, New York City, NY 10001" +288006,AAA Batteries (4-pack),2,2.99,11/20/19 13:11,"888 Highland St, Atlanta, GA 30301" +288007,AAA Batteries (4-pack),1,2.99,11/07/19 15:21,"441 North St, Los Angeles, CA 90001" +288008,Wired Headphones,1,11.99,11/07/19 14:56,"765 Chestnut St, San Francisco, CA 94016" +288009,AAA Batteries (4-pack),1,2.99,11/30/19 06:12,"525 Cherry St, Boston, MA 02215" +288010,Wired Headphones,1,11.99,11/06/19 12:24,"201 Lake St, Dallas, TX 75001" +288011,AA Batteries (4-pack),1,3.84,11/20/19 18:12,"702 11th St, Los Angeles, CA 90001" +288012,Lightning Charging Cable,1,14.95,11/21/19 17:57,"684 River St, Boston, MA 02215" +288013,Lightning Charging Cable,1,14.95,11/06/19 19:05,"422 Maple St, San Francisco, CA 94016" +288014,iPhone,1,700,11/04/19 17:57,"933 River St, San Francisco, CA 94016" +288015,AA Batteries (4-pack),1,3.84,11/10/19 14:24,"459 Willow St, San Francisco, CA 94016" +288016,Wired Headphones,1,11.99,11/28/19 18:56,"993 Forest St, New York City, NY 10001" +288017,Bose SoundSport Headphones,1,99.99,11/06/19 07:38,"951 Maple St, Boston, MA 02215" +288018,27in 4K Gaming Monitor,1,389.99,11/20/19 09:18,"957 Madison St, San Francisco, CA 94016" +288019,AAA Batteries (4-pack),1,2.99,11/04/19 16:58,"864 11th St, Seattle, WA 98101" +288020,USB-C Charging Cable,1,11.95,11/24/19 14:19,"803 8th St, Austin, TX 73301" +288021,AA Batteries (4-pack),1,3.84,11/07/19 15:06,"294 Cherry St, San Francisco, CA 94016" +288022,Lightning Charging Cable,1,14.95,11/04/19 21:42,"784 River St, Austin, TX 73301" +288023,AAA Batteries (4-pack),1,2.99,11/04/19 12:25,"622 5th St, San Francisco, CA 94016" +288023,USB-C Charging Cable,1,11.95,11/04/19 12:25,"622 5th St, San Francisco, CA 94016" +288024,AA Batteries (4-pack),1,3.84,11/15/19 16:28,"448 Church St, San Francisco, CA 94016" +288025,Lightning Charging Cable,1,14.95,11/28/19 13:00,"783 Meadow St, San Francisco, CA 94016" +288026,AA Batteries (4-pack),1,3.84,11/01/19 17:06,"523 Jackson St, Boston, MA 02215" +288027,AAA Batteries (4-pack),1,2.99,11/28/19 18:07,"970 Lake St, Los Angeles, CA 90001" +288028,Lightning Charging Cable,1,14.95,11/28/19 09:25,"687 6th St, Seattle, WA 98101" +288029,Apple Airpods Headphones,1,150,11/15/19 20:12,"243 2nd St, Atlanta, GA 30301" +288030,27in FHD Monitor,1,149.99,11/27/19 09:54,"302 Washington St, Boston, MA 02215" +288031,27in FHD Monitor,1,149.99,11/03/19 22:44,"847 11th St, Boston, MA 02215" +288032,Macbook Pro Laptop,1,1700,11/09/19 09:06,"812 13th St, Dallas, TX 75001" +288033,Lightning Charging Cable,1,14.95,11/13/19 20:13,"240 West St, San Francisco, CA 94016" +288034,AAA Batteries (4-pack),1,2.99,11/12/19 13:46,"743 14th St, San Francisco, CA 94016" +288035,Wired Headphones,1,11.99,11/15/19 21:36,"772 Lincoln St, San Francisco, CA 94016" +288036,USB-C Charging Cable,1,11.95,11/25/19 09:08,"106 Hill St, Los Angeles, CA 90001" +288037,AAA Batteries (4-pack),1,2.99,11/27/19 10:18,"545 Jefferson St, New York City, NY 10001" +288038,Apple Airpods Headphones,1,150,11/25/19 19:51,"970 Center St, New York City, NY 10001" +288039,Lightning Charging Cable,1,14.95,11/03/19 13:36,"717 9th St, Atlanta, GA 30301" +288040,AAA Batteries (4-pack),3,2.99,11/09/19 12:37,"346 Lake St, San Francisco, CA 94016" +288041,AAA Batteries (4-pack),1,2.99,11/08/19 14:12,"948 Hill St, Seattle, WA 98101" +288042,Flatscreen TV,1,300,11/03/19 11:29,"949 5th St, New York City, NY 10001" +288043,iPhone,1,700,11/11/19 06:38,"416 12th St, Los Angeles, CA 90001" +288044,Wired Headphones,1,11.99,11/28/19 10:38,"306 Johnson St, San Francisco, CA 94016" +288045,Bose SoundSport Headphones,1,99.99,11/17/19 11:07,"283 Ridge St, Los Angeles, CA 90001" +288046,AA Batteries (4-pack),1,3.84,11/04/19 16:50,"672 8th St, Los Angeles, CA 90001" +288047,27in 4K Gaming Monitor,1,389.99,11/24/19 16:33,"941 12th St, New York City, NY 10001" +288048,AAA Batteries (4-pack),4,2.99,11/28/19 19:06,"136 Elm St, Austin, TX 73301" +288049,Lightning Charging Cable,1,14.95,11/17/19 22:15,"850 South St, Dallas, TX 75001" +288050,AA Batteries (4-pack),1,3.84,11/15/19 13:24,"695 Hickory St, Los Angeles, CA 90001" +288051,Lightning Charging Cable,1,14.95,11/09/19 18:38,"942 Jefferson St, New York City, NY 10001" +288052,Apple Airpods Headphones,1,150,11/25/19 14:09,"947 Johnson St, Dallas, TX 75001" +288053,Apple Airpods Headphones,1,150,11/02/19 17:14,"270 Spruce St, Los Angeles, CA 90001" +288054,Lightning Charging Cable,1,14.95,11/22/19 11:25,"495 10th St, San Francisco, CA 94016" +288055,34in Ultrawide Monitor,1,379.99,11/29/19 09:43,"231 Forest St, Los Angeles, CA 90001" +288056,Flatscreen TV,1,300,11/24/19 06:20,"647 Walnut St, San Francisco, CA 94016" +288056,AAA Batteries (4-pack),1,2.99,11/24/19 06:20,"647 Walnut St, San Francisco, CA 94016" +288057,AA Batteries (4-pack),1,3.84,11/19/19 22:44,"940 Willow St, New York City, NY 10001" +288058,Google Phone,1,600,11/30/19 17:42,"455 Elm St, Los Angeles, CA 90001" +288059,USB-C Charging Cable,1,11.95,11/21/19 15:54,"42 North St, San Francisco, CA 94016" +288060,USB-C Charging Cable,2,11.95,11/30/19 15:56,"81 Johnson St, Los Angeles, CA 90001" +288061,Apple Airpods Headphones,1,150,11/04/19 00:53,"564 Wilson St, Los Angeles, CA 90001" +288062,27in FHD Monitor,1,149.99,11/01/19 09:47,"576 Hill St, San Francisco, CA 94016" +288063,Lightning Charging Cable,1,14.95,11/12/19 17:18,"414 Elm St, Los Angeles, CA 90001" +288064,Lightning Charging Cable,1,14.95,11/19/19 07:08,"813 North St, Portland, OR 97035" +288065,AAA Batteries (4-pack),1,2.99,11/28/19 13:28,"986 Main St, Atlanta, GA 30301" +288066,Wired Headphones,1,11.99,11/17/19 07:57,"82 Chestnut St, San Francisco, CA 94016" +288067,34in Ultrawide Monitor,1,379.99,11/23/19 17:56,"747 Main St, San Francisco, CA 94016" +288068,Lightning Charging Cable,1,14.95,11/23/19 16:17,"891 4th St, New York City, NY 10001" +288069,Apple Airpods Headphones,1,150,11/05/19 22:53,"374 Dogwood St, Dallas, TX 75001" +288070,USB-C Charging Cable,1,11.95,11/10/19 09:59,"237 11th St, Dallas, TX 75001" +288071,Bose SoundSport Headphones,1,99.99,11/25/19 10:04,"356 Church St, Los Angeles, CA 90001" +288072,iPhone,1,700,11/01/19 19:56,"228 14th St, San Francisco, CA 94016" +288072,Wired Headphones,1,11.99,11/01/19 19:56,"228 14th St, San Francisco, CA 94016" +288073,Apple Airpods Headphones,1,150,11/07/19 13:17,"479 Forest St, Boston, MA 02215" +288074,AAA Batteries (4-pack),1,2.99,11/23/19 14:46,"361 Jackson St, Boston, MA 02215" +288075,Lightning Charging Cable,1,14.95,11/18/19 09:05,"619 Jefferson St, Atlanta, GA 30301" +288076,27in FHD Monitor,1,149.99,11/12/19 10:33,"682 Main St, New York City, NY 10001" +288077,USB-C Charging Cable,1,11.95,11/06/19 18:10,"357 Lakeview St, Los Angeles, CA 90001" +288078,27in FHD Monitor,1,149.99,11/27/19 19:57,"319 Park St, Boston, MA 02215" +288079,Apple Airpods Headphones,2,150,11/19/19 20:12,"995 South St, New York City, NY 10001" +288080,AA Batteries (4-pack),2,3.84,11/22/19 13:26,"130 6th St, Dallas, TX 75001" +288081,Macbook Pro Laptop,1,1700,11/13/19 07:36,"687 10th St, New York City, NY 10001" +288082,AA Batteries (4-pack),1,3.84,11/20/19 07:05,"330 Lakeview St, Dallas, TX 75001" +288083,USB-C Charging Cable,1,11.95,11/09/19 17:16,"856 Wilson St, New York City, NY 10001" +288084,Wired Headphones,1,11.99,11/12/19 16:49,"222 1st St, Boston, MA 02215" +288085,34in Ultrawide Monitor,1,379.99,11/26/19 12:28,"581 Wilson St, Boston, MA 02215" +288086,Apple Airpods Headphones,1,150,11/17/19 09:24,"24 Adams St, San Francisco, CA 94016" +288087,Lightning Charging Cable,1,14.95,11/29/19 19:50,"493 Jackson St, Los Angeles, CA 90001" +288088,27in 4K Gaming Monitor,1,389.99,11/07/19 00:17,"444 1st St, New York City, NY 10001" +288089,USB-C Charging Cable,1,11.95,11/12/19 20:52,"428 Walnut St, Portland, OR 97035" +288090,USB-C Charging Cable,1,11.95,11/12/19 13:59,"23 Chestnut St, San Francisco, CA 94016" +288091,AA Batteries (4-pack),2,3.84,11/09/19 08:26,"429 Maple St, Atlanta, GA 30301" +288092,Bose SoundSport Headphones,1,99.99,11/13/19 11:56,"887 Dogwood St, Seattle, WA 98101" +288093,Wired Headphones,1,11.99,11/09/19 09:26,"347 Lincoln St, Seattle, WA 98101" +288094,Flatscreen TV,1,300,11/09/19 14:23,"368 Cherry St, New York City, NY 10001" +288095,Apple Airpods Headphones,1,150,11/22/19 20:19,"626 Park St, Boston, MA 02215" +288096,AA Batteries (4-pack),1,3.84,11/11/19 12:18,"815 Hill St, Atlanta, GA 30301" +288097,20in Monitor,1,109.99,11/15/19 13:07,"536 Lake St, Los Angeles, CA 90001" +288098,Lightning Charging Cable,1,14.95,11/11/19 10:20,"255 4th St, New York City, NY 10001" +288099,Wired Headphones,1,11.99,11/02/19 10:37,"633 6th St, Dallas, TX 75001" +288100,iPhone,1,700,11/26/19 15:10,"92 11th St, Boston, MA 02215" +288100,Lightning Charging Cable,1,14.95,11/26/19 15:10,"92 11th St, Boston, MA 02215" +288100,Wired Headphones,1,11.99,11/26/19 15:10,"92 11th St, Boston, MA 02215" +288101,iPhone,1,700,11/23/19 16:57,"721 Meadow St, San Francisco, CA 94016" +288101,Lightning Charging Cable,1,14.95,11/23/19 16:57,"721 Meadow St, San Francisco, CA 94016" +288102,AA Batteries (4-pack),3,3.84,11/19/19 12:50,"430 12th St, Seattle, WA 98101" +288103,Lightning Charging Cable,1,14.95,11/27/19 18:30,"583 Adams St, Dallas, TX 75001" +288104,AA Batteries (4-pack),1,3.84,11/05/19 14:48,"109 South St, San Francisco, CA 94016" +288105,Lightning Charging Cable,1,14.95,11/02/19 10:09,"329 Hickory St, San Francisco, CA 94016" +288106,27in 4K Gaming Monitor,1,389.99,11/15/19 19:57,"122 Cherry St, Boston, MA 02215" +288107,iPhone,1,700,11/11/19 12:53,"833 9th St, San Francisco, CA 94016" +288108,Lightning Charging Cable,1,14.95,11/30/19 14:46,"733 Sunset St, Seattle, WA 98101" +288109,Lightning Charging Cable,1,14.95,11/05/19 16:40,"462 Johnson St, Portland, OR 97035" +288110,27in FHD Monitor,1,149.99,11/22/19 20:51,"626 Spruce St, New York City, NY 10001" +288111,Lightning Charging Cable,1,14.95,11/21/19 09:56,"143 Jackson St, Boston, MA 02215" +288112,Bose SoundSport Headphones,1,99.99,11/15/19 16:22,"587 Sunset St, San Francisco, CA 94016" +288113,AA Batteries (4-pack),1,3.84,11/14/19 08:55,"564 14th St, Los Angeles, CA 90001" +288114,Apple Airpods Headphones,1,150,11/22/19 22:20,"863 Cherry St, San Francisco, CA 94016" +288115,Lightning Charging Cable,1,14.95,11/15/19 10:36,"786 Lake St, San Francisco, CA 94016" +288116,AAA Batteries (4-pack),2,2.99,11/01/19 23:05,"60 13th St, Seattle, WA 98101" +288117,USB-C Charging Cable,1,11.95,11/28/19 06:39,"789 Jefferson St, Los Angeles, CA 90001" +288118,AA Batteries (4-pack),1,3.84,11/25/19 18:14,"759 Cedar St, Boston, MA 02215" +288118,27in 4K Gaming Monitor,1,389.99,11/25/19 18:14,"759 Cedar St, Boston, MA 02215" +288119,AA Batteries (4-pack),1,3.84,11/14/19 13:15,"377 Ridge St, Los Angeles, CA 90001" +288120,Bose SoundSport Headphones,1,99.99,11/27/19 21:51,"840 Forest St, Dallas, TX 75001" +288121,Wired Headphones,1,11.99,11/10/19 19:39,"8 Cedar St, San Francisco, CA 94016" +288122,Google Phone,1,600,11/13/19 21:04,"623 Highland St, Seattle, WA 98101" +288123,AA Batteries (4-pack),1,3.84,11/04/19 16:20,"520 Main St, New York City, NY 10001" +288124,USB-C Charging Cable,1,11.95,11/23/19 12:47,"451 Lakeview St, San Francisco, CA 94016" +288125,Lightning Charging Cable,1,14.95,11/20/19 12:02,"605 Church St, Boston, MA 02215" +288126,Wired Headphones,1,11.99,11/18/19 20:15,"338 Johnson St, San Francisco, CA 94016" +288127,Lightning Charging Cable,1,14.95,11/05/19 12:25,"703 14th St, Boston, MA 02215" +288128,AA Batteries (4-pack),1,3.84,11/13/19 18:27,"471 1st St, Boston, MA 02215" +288129,Bose SoundSport Headphones,1,99.99,11/22/19 20:01,"668 Cedar St, Austin, TX 73301" +288130,USB-C Charging Cable,1,11.95,11/01/19 11:35,"46 South St, San Francisco, CA 94016" +288131,34in Ultrawide Monitor,1,379.99,11/18/19 21:33,"140 Sunset St, Dallas, TX 75001" +288132,Lightning Charging Cable,1,14.95,11/29/19 08:22,"800 13th St, Boston, MA 02215" +288133,USB-C Charging Cable,1,11.95,11/03/19 22:17,"553 1st St, Boston, MA 02215" +288134,Wired Headphones,1,11.99,11/11/19 06:12,"221 Lake St, San Francisco, CA 94016" +288135,USB-C Charging Cable,1,11.95,11/30/19 13:09,"237 South St, Austin, TX 73301" +288136,USB-C Charging Cable,1,11.95,11/23/19 18:22,"575 Madison St, New York City, NY 10001" +288136,Lightning Charging Cable,1,14.95,11/23/19 18:22,"575 Madison St, New York City, NY 10001" +288137,27in FHD Monitor,1,149.99,11/14/19 07:49,"3 Spruce St, Boston, MA 02215" +288138,27in FHD Monitor,1,149.99,11/19/19 18:39,"323 Cedar St, Boston, MA 02215" +288139,Wired Headphones,1,11.99,11/19/19 11:40,"711 Madison St, San Francisco, CA 94016" +288140,AAA Batteries (4-pack),1,2.99,11/29/19 11:02,"334 Chestnut St, Atlanta, GA 30301" +288141,Apple Airpods Headphones,1,150,11/26/19 13:25,"968 Elm St, San Francisco, CA 94016" +288142,Lightning Charging Cable,1,14.95,11/18/19 20:30,"861 Sunset St, Austin, TX 73301" +288143,AAA Batteries (4-pack),2,2.99,11/23/19 11:51,"470 13th St, San Francisco, CA 94016" +288144,Lightning Charging Cable,1,14.95,11/04/19 19:41,"10 Hickory St, Boston, MA 02215" +288145,27in FHD Monitor,1,149.99,11/03/19 11:05,"719 Cherry St, Boston, MA 02215" +288146,AAA Batteries (4-pack),3,2.99,11/18/19 00:18,"512 11th St, Atlanta, GA 30301" +288147,20in Monitor,1,109.99,11/04/19 22:02,"859 6th St, Atlanta, GA 30301" +288148,Lightning Charging Cable,1,14.95,11/29/19 11:51,"164 12th St, San Francisco, CA 94016" +288149,AA Batteries (4-pack),2,3.84,11/16/19 10:04,"148 2nd St, Los Angeles, CA 90001" +288150,Lightning Charging Cable,1,14.95,11/07/19 10:25,"560 11th St, Seattle, WA 98101" +288151,Google Phone,1,600,11/16/19 18:32,"818 Washington St, Los Angeles, CA 90001" +288151,USB-C Charging Cable,1,11.95,11/16/19 18:32,"818 Washington St, Los Angeles, CA 90001" +288152,Google Phone,1,600,11/23/19 23:10,"830 Lincoln St, Atlanta, GA 30301" +288153,ThinkPad Laptop,1,999.99,11/06/19 15:34,"38 Maple St, Austin, TX 73301" +288154,ThinkPad Laptop,1,999.99,11/17/19 12:51,"322 Hickory St, San Francisco, CA 94016" +288155,34in Ultrawide Monitor,1,379.99,11/16/19 15:34,"36 Main St, San Francisco, CA 94016" +288156,Lightning Charging Cable,1,14.95,11/23/19 11:46,"299 Lakeview St, Boston, MA 02215" +288157,Bose SoundSport Headphones,1,99.99,11/06/19 13:31,"218 Washington St, Boston, MA 02215" +288158,20in Monitor,1,109.99,11/20/19 19:47,"518 Center St, Austin, TX 73301" +288159,Lightning Charging Cable,1,14.95,11/14/19 15:44,"147 5th St, San Francisco, CA 94016" +288160,USB-C Charging Cable,1,11.95,11/19/19 12:54,"937 Cedar St, New York City, NY 10001" +288161,Apple Airpods Headphones,1,150,11/07/19 13:09,"662 Walnut St, Seattle, WA 98101" +288162,27in 4K Gaming Monitor,1,389.99,11/26/19 09:31,"880 Lincoln St, Atlanta, GA 30301" +288163,Bose SoundSport Headphones,1,99.99,11/02/19 11:14,"855 13th St, Boston, MA 02215" +288164,Lightning Charging Cable,2,14.95,11/25/19 21:30,"119 Willow St, Seattle, WA 98101" +288165,Wired Headphones,1,11.99,11/03/19 12:04,"30 West St, San Francisco, CA 94016" +288166,AA Batteries (4-pack),1,3.84,11/07/19 16:05,"506 Ridge St, Los Angeles, CA 90001" +288167,Lightning Charging Cable,2,14.95,11/02/19 20:18,"860 Lakeview St, San Francisco, CA 94016" +288168,27in 4K Gaming Monitor,1,389.99,11/05/19 16:21,"384 River St, San Francisco, CA 94016" +288169,Bose SoundSport Headphones,1,99.99,11/18/19 15:39,"961 Church St, Los Angeles, CA 90001" +288170,Bose SoundSport Headphones,1,99.99,11/26/19 12:40,"87 Ridge St, San Francisco, CA 94016" +288171,Wired Headphones,1,11.99,11/07/19 15:50,"315 Main St, Boston, MA 02215" +288172,Apple Airpods Headphones,1,150,11/28/19 21:59,"241 7th St, San Francisco, CA 94016" +288173,Apple Airpods Headphones,1,150,11/23/19 07:20,"846 7th St, Boston, MA 02215" +288174,Lightning Charging Cable,1,14.95,11/17/19 11:39,"491 Meadow St, Seattle, WA 98101" +288175,Bose SoundSport Headphones,1,99.99,11/05/19 08:07,"462 Willow St, Boston, MA 02215" +288176,AA Batteries (4-pack),1,3.84,11/13/19 13:33,"93 Church St, Atlanta, GA 30301" +288177,iPhone,1,700,11/07/19 20:52,"275 7th St, Dallas, TX 75001" +288178,USB-C Charging Cable,1,11.95,11/26/19 07:40,"457 Sunset St, San Francisco, CA 94016" +288179,AA Batteries (4-pack),3,3.84,11/02/19 15:14,"898 Forest St, Boston, MA 02215" +288180,AAA Batteries (4-pack),1,2.99,11/11/19 15:20,"78 13th St, San Francisco, CA 94016" +288181,Wired Headphones,1,11.99,11/10/19 17:36,"556 5th St, San Francisco, CA 94016" +288182,AAA Batteries (4-pack),1,2.99,11/02/19 11:01,"387 River St, New York City, NY 10001" +288183,USB-C Charging Cable,1,11.95,11/25/19 15:43,"994 Elm St, San Francisco, CA 94016" +288184,Wired Headphones,1,11.99,11/13/19 13:04,"496 Park St, New York City, NY 10001" +288185,Apple Airpods Headphones,1,150,11/05/19 17:29,"542 Park St, San Francisco, CA 94016" +288186,27in FHD Monitor,2,149.99,11/09/19 22:10,"216 6th St, Boston, MA 02215" +288187,Vareebadd Phone,1,400,11/22/19 11:36,"917 Main St, Boston, MA 02215" +288188,AA Batteries (4-pack),2,3.84,11/15/19 17:35,"516 Hill St, San Francisco, CA 94016" +288189,USB-C Charging Cable,1,11.95,11/29/19 21:27,"948 Highland St, San Francisco, CA 94016" +288190,AA Batteries (4-pack),1,3.84,11/02/19 23:16,"11 Pine St, San Francisco, CA 94016" +288191,AAA Batteries (4-pack),2,2.99,11/19/19 20:44,"183 10th St, New York City, NY 10001" +288192,Bose SoundSport Headphones,1,99.99,11/01/19 15:20,"636 11th St, New York City, NY 10001" +288193,Apple Airpods Headphones,1,150,11/15/19 20:03,"479 1st St, San Francisco, CA 94016" +288194,Wired Headphones,2,11.99,11/21/19 14:56,"136 Cedar St, Dallas, TX 75001" +288195,27in FHD Monitor,1,149.99,11/29/19 17:59,"916 South St, San Francisco, CA 94016" +288196,27in 4K Gaming Monitor,1,389.99,11/05/19 11:29,"941 2nd St, Los Angeles, CA 90001" +288197,LG Dryer,1,600.0,11/30/19 23:54,"668 6th St, New York City, NY 10001" +288198,27in 4K Gaming Monitor,1,389.99,11/17/19 15:44,"792 4th St, Portland, OR 97035" +288199,AAA Batteries (4-pack),1,2.99,11/21/19 06:45,"750 Cherry St, Austin, TX 73301" +288200,Bose SoundSport Headphones,1,99.99,11/05/19 15:49,"670 9th St, San Francisco, CA 94016" +288201,Flatscreen TV,1,300,11/02/19 21:33,"684 10th St, Los Angeles, CA 90001" +288202,AA Batteries (4-pack),1,3.84,11/10/19 17:40,"380 Willow St, San Francisco, CA 94016" +288203,Lightning Charging Cable,1,14.95,11/13/19 12:14,"848 Cherry St, Boston, MA 02215" +288204,27in 4K Gaming Monitor,1,389.99,11/14/19 11:01,"771 Lakeview St, Los Angeles, CA 90001" +288205,Apple Airpods Headphones,1,150,11/02/19 11:18,"490 Meadow St, Austin, TX 73301" +288206,AA Batteries (4-pack),1,3.84,11/06/19 12:06,"756 North St, Portland, OR 97035" +288207,Wired Headphones,1,11.99,11/04/19 08:50,"715 Willow St, San Francisco, CA 94016" +288208,USB-C Charging Cable,1,11.95,11/13/19 10:38,"614 Spruce St, Seattle, WA 98101" +288209,LG Washing Machine,1,600.0,11/26/19 17:58,"326 Hickory St, Los Angeles, CA 90001" +288210,Lightning Charging Cable,1,14.95,11/26/19 13:52,"963 Maple St, New York City, NY 10001" +288211,27in FHD Monitor,1,149.99,11/08/19 16:42,"634 12th St, New York City, NY 10001" +288212,AA Batteries (4-pack),2,3.84,11/15/19 19:27,"827 11th St, Dallas, TX 75001" +288213,Macbook Pro Laptop,1,1700,11/27/19 00:07,"847 Washington St, San Francisco, CA 94016" +288214,AA Batteries (4-pack),2,3.84,11/24/19 17:46,"656 Spruce St, New York City, NY 10001" +288215,USB-C Charging Cable,1,11.95,11/21/19 14:59,"822 Highland St, New York City, NY 10001" +288216,Wired Headphones,1,11.99,11/22/19 20:10,"998 9th St, Los Angeles, CA 90001" +288217,Wired Headphones,1,11.99,11/10/19 21:14,"169 Church St, Los Angeles, CA 90001" +288218,20in Monitor,1,109.99,11/11/19 13:13,"712 Pine St, Portland, ME 04101" +288219,AAA Batteries (4-pack),1,2.99,11/24/19 16:15,"564 Main St, Dallas, TX 75001" +288220,Lightning Charging Cable,1,14.95,11/08/19 21:10,"277 Park St, Atlanta, GA 30301" +288221,Apple Airpods Headphones,1,150,11/18/19 07:01,"793 Lincoln St, Portland, ME 04101" +288221,Apple Airpods Headphones,1,150,11/18/19 07:01,"793 Lincoln St, Portland, ME 04101" +288222,Wired Headphones,1,11.99,11/22/19 09:25,"494 Lake St, Boston, MA 02215" +288223,Bose SoundSport Headphones,1,99.99,11/03/19 09:01,"774 Jefferson St, San Francisco, CA 94016" +288223,USB-C Charging Cable,1,11.95,11/03/19 09:01,"774 Jefferson St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +288224,AA Batteries (4-pack),1,3.84,11/11/19 21:13,"227 South St, Boston, MA 02215" +288225,34in Ultrawide Monitor,1,379.99,11/24/19 08:18,"845 Lincoln St, Portland, OR 97035" +288226,Macbook Pro Laptop,1,1700,11/07/19 19:35,"991 Chestnut St, New York City, NY 10001" +288227,27in FHD Monitor,1,149.99,11/26/19 13:00,"5 Sunset St, Seattle, WA 98101" +288228,Bose SoundSport Headphones,1,99.99,11/20/19 17:36,"749 Cedar St, Boston, MA 02215" +288229,20in Monitor,1,109.99,11/27/19 21:31,"176 6th St, Portland, OR 97035" +288230,Bose SoundSport Headphones,1,99.99,11/12/19 21:32,"923 Cherry St, San Francisco, CA 94016" +288231,Macbook Pro Laptop,1,1700,11/07/19 07:57,"312 Madison St, San Francisco, CA 94016" +288232,27in 4K Gaming Monitor,1,389.99,11/19/19 07:47,"925 14th St, San Francisco, CA 94016" +288233,AAA Batteries (4-pack),5,2.99,11/06/19 13:14,"880 Maple St, Atlanta, GA 30301" +288234,Wired Headphones,2,11.99,11/22/19 10:04,"219 River St, Los Angeles, CA 90001" +288235,AA Batteries (4-pack),1,3.84,11/06/19 08:22,"277 Pine St, Los Angeles, CA 90001" +288236,USB-C Charging Cable,1,11.95,11/15/19 15:20,"189 Highland St, Atlanta, GA 30301" +288237,Apple Airpods Headphones,1,150,11/02/19 12:41,"354 Elm St, Atlanta, GA 30301" +288238,AAA Batteries (4-pack),1,2.99,11/06/19 16:52,"64 Highland St, New York City, NY 10001" +288239,Lightning Charging Cable,1,14.95,11/11/19 12:00,"26 10th St, New York City, NY 10001" +288240,Lightning Charging Cable,1,14.95,11/14/19 12:32,"33 Main St, Seattle, WA 98101" +288241,27in 4K Gaming Monitor,1,389.99,11/11/19 10:59,"544 Johnson St, Atlanta, GA 30301" +288241,Lightning Charging Cable,1,14.95,11/11/19 10:59,"544 Johnson St, Atlanta, GA 30301" +288242,Wired Headphones,1,11.99,11/02/19 13:35,"562 2nd St, San Francisco, CA 94016" +288243,AA Batteries (4-pack),1,3.84,11/12/19 20:55,"596 Willow St, Los Angeles, CA 90001" +288244,USB-C Charging Cable,1,11.95,11/08/19 13:04,"979 Church St, San Francisco, CA 94016" +288245,Bose SoundSport Headphones,1,99.99,11/27/19 10:19,"854 West St, San Francisco, CA 94016" +288246,Flatscreen TV,1,300,11/15/19 13:45,"39 Washington St, Dallas, TX 75001" +288247,Apple Airpods Headphones,1,150,11/06/19 18:02,"78 Main St, New York City, NY 10001" +288248,Google Phone,1,600,11/11/19 14:44,"609 Highland St, San Francisco, CA 94016" +288249,AA Batteries (4-pack),1,3.84,11/25/19 17:33,"622 Walnut St, Boston, MA 02215" +288250,AAA Batteries (4-pack),4,2.99,11/11/19 22:40,"24 Park St, Boston, MA 02215" +288251,Wired Headphones,1,11.99,11/24/19 19:58,"514 Church St, San Francisco, CA 94016" +288252,Apple Airpods Headphones,1,150,11/23/19 19:47,"937 Lakeview St, Boston, MA 02215" +288253,AA Batteries (4-pack),1,3.84,11/30/19 13:21,"938 4th St, San Francisco, CA 94016" +288253,Apple Airpods Headphones,1,150,11/30/19 13:21,"938 4th St, San Francisco, CA 94016" +288254,Macbook Pro Laptop,1,1700,11/23/19 22:29,"68 10th St, San Francisco, CA 94016" +288255,Bose SoundSport Headphones,1,99.99,11/07/19 19:59,"61 13th St, Seattle, WA 98101" +288256,AAA Batteries (4-pack),1,2.99,11/22/19 11:46,"462 10th St, San Francisco, CA 94016" +288257,27in 4K Gaming Monitor,1,389.99,11/18/19 14:01,"825 Spruce St, New York City, NY 10001" +288258,USB-C Charging Cable,1,11.95,11/08/19 16:51,"558 Walnut St, Atlanta, GA 30301" +288259,AA Batteries (4-pack),1,3.84,11/27/19 22:41,"208 Cherry St, New York City, NY 10001" +288260,AA Batteries (4-pack),1,3.84,11/25/19 18:58,"751 Chestnut St, Austin, TX 73301" +288261,27in FHD Monitor,1,149.99,11/23/19 09:25,"721 Wilson St, San Francisco, CA 94016" +288262,AAA Batteries (4-pack),1,2.99,11/10/19 15:11,"181 Washington St, Los Angeles, CA 90001" +288263,Macbook Pro Laptop,1,1700,11/28/19 16:30,"170 Meadow St, Boston, MA 02215" +288264,Apple Airpods Headphones,1,150,11/08/19 10:01,"584 Dogwood St, Boston, MA 02215" +288265,Wired Headphones,1,11.99,11/01/19 08:27,"680 River St, Los Angeles, CA 90001" +288265,Apple Airpods Headphones,1,150,11/01/19 08:27,"680 River St, Los Angeles, CA 90001" +288266,AAA Batteries (4-pack),1,2.99,11/08/19 20:52,"108 Elm St, New York City, NY 10001" +288267,AAA Batteries (4-pack),1,2.99,11/22/19 23:15,"841 North St, Austin, TX 73301" +288268,ThinkPad Laptop,1,999.99,11/08/19 17:29,"910 1st St, Seattle, WA 98101" +288269,Bose SoundSport Headphones,1,99.99,11/01/19 20:55,"938 Walnut St, Boston, MA 02215" +288270,USB-C Charging Cable,1,11.95,11/28/19 13:23,"260 Ridge St, Atlanta, GA 30301" +288271,USB-C Charging Cable,1,11.95,11/14/19 21:13,"78 10th St, San Francisco, CA 94016" +288272,AAA Batteries (4-pack),2,2.99,11/23/19 15:19,"949 Willow St, Portland, ME 04101" +288273,Lightning Charging Cable,1,14.95,11/26/19 13:01,"21 Lincoln St, Austin, TX 73301" +288274,AA Batteries (4-pack),1,3.84,11/27/19 22:13,"275 7th St, Austin, TX 73301" +288275,Flatscreen TV,1,300,11/17/19 18:16,"795 Washington St, Austin, TX 73301" +288276,Apple Airpods Headphones,1,150,11/22/19 15:00,"767 Church St, Los Angeles, CA 90001" +288277,34in Ultrawide Monitor,1,379.99,11/12/19 07:06,"741 Johnson St, New York City, NY 10001" +288278,USB-C Charging Cable,1,11.95,11/18/19 22:24,"247 Chestnut St, New York City, NY 10001" +288279,AA Batteries (4-pack),1,3.84,11/29/19 18:16,"313 Main St, Seattle, WA 98101" +288280,USB-C Charging Cable,1,11.95,11/08/19 15:19,"582 Ridge St, Dallas, TX 75001" +288281,Bose SoundSport Headphones,1,99.99,11/28/19 21:28,"128 Walnut St, San Francisco, CA 94016" +288282,Apple Airpods Headphones,1,150,11/07/19 13:26,"151 1st St, Boston, MA 02215" +288283,Bose SoundSport Headphones,1,99.99,11/05/19 19:04,"196 10th St, Seattle, WA 98101" +288284,Vareebadd Phone,1,400,11/10/19 22:31,"146 Jackson St, Los Angeles, CA 90001" +288284,USB-C Charging Cable,1,11.95,11/10/19 22:31,"146 Jackson St, Los Angeles, CA 90001" +288285,AAA Batteries (4-pack),1,2.99,11/26/19 12:39,"80 Chestnut St, Dallas, TX 75001" +288286,AAA Batteries (4-pack),1,2.99,11/10/19 14:18,"748 Willow St, New York City, NY 10001" +288287,Bose SoundSport Headphones,1,99.99,11/08/19 12:22,"157 Church St, New York City, NY 10001" +288288,Bose SoundSport Headphones,1,99.99,11/06/19 00:36,"49 Willow St, Atlanta, GA 30301" +288289,27in FHD Monitor,1,149.99,11/09/19 11:02,"488 Forest St, Seattle, WA 98101" +288290,iPhone,1,700,11/24/19 20:34,"325 Hill St, Seattle, WA 98101" +288290,Lightning Charging Cable,1,14.95,11/24/19 20:34,"325 Hill St, Seattle, WA 98101" +288291,AA Batteries (4-pack),1,3.84,11/01/19 19:36,"400 Hill St, Los Angeles, CA 90001" +288292,34in Ultrawide Monitor,1,379.99,11/11/19 10:42,"255 Hickory St, Atlanta, GA 30301" +288293,Google Phone,1,600,11/22/19 16:27,"54 Cherry St, Austin, TX 73301" +288293,USB-C Charging Cable,1,11.95,11/22/19 16:27,"54 Cherry St, Austin, TX 73301" +288294,AAA Batteries (4-pack),2,2.99,11/13/19 15:42,"795 Spruce St, Boston, MA 02215" +288295,AAA Batteries (4-pack),1,2.99,11/02/19 12:15,"166 Dogwood St, San Francisco, CA 94016" +288296,Apple Airpods Headphones,1,150,11/20/19 21:16,"938 Lake St, San Francisco, CA 94016" +288297,Lightning Charging Cable,1,14.95,11/27/19 12:02,"217 11th St, Los Angeles, CA 90001" +288298,Lightning Charging Cable,2,14.95,11/02/19 18:41,"349 Dogwood St, Los Angeles, CA 90001" +288299,27in 4K Gaming Monitor,1,389.99,11/20/19 06:39,"654 Jefferson St, San Francisco, CA 94016" +288300,27in 4K Gaming Monitor,1,389.99,11/16/19 23:21,"829 Lake St, New York City, NY 10001" +288301,USB-C Charging Cable,1,11.95,11/13/19 16:47,"916 Willow St, Dallas, TX 75001" +288302,Wired Headphones,1,11.99,11/23/19 20:59,"520 Lakeview St, San Francisco, CA 94016" +288303,iPhone,1,700,11/19/19 09:34,"922 8th St, New York City, NY 10001" +288304,AA Batteries (4-pack),3,3.84,11/20/19 21:00,"14 Cherry St, San Francisco, CA 94016" +288305,Google Phone,1,600,11/29/19 23:20,"881 10th St, Dallas, TX 75001" +288306,Macbook Pro Laptop,1,1700,11/20/19 16:10,"316 13th St, Boston, MA 02215" +288307,Apple Airpods Headphones,1,150,11/07/19 14:15,"799 Maple St, New York City, NY 10001" +288308,AAA Batteries (4-pack),1,2.99,11/22/19 15:34,"715 2nd St, New York City, NY 10001" +288309,27in FHD Monitor,1,149.99,11/06/19 08:12,"356 Maple St, Portland, ME 04101" +288310,AA Batteries (4-pack),2,3.84,11/05/19 12:51,"267 Maple St, San Francisco, CA 94016" +288311,Google Phone,1,600,11/10/19 14:26,"240 Center St, San Francisco, CA 94016" +288312,Lightning Charging Cable,1,14.95,11/30/19 14:02,"141 Main St, San Francisco, CA 94016" +288313,ThinkPad Laptop,1,999.99,11/06/19 17:04,"218 Spruce St, Seattle, WA 98101" +288314,Bose SoundSport Headphones,1,99.99,11/14/19 07:59,"760 Park St, Austin, TX 73301" +288315,AA Batteries (4-pack),2,3.84,11/04/19 20:37,"356 Chestnut St, Dallas, TX 75001" +288315,Wired Headphones,1,11.99,11/04/19 20:37,"356 Chestnut St, Dallas, TX 75001" +288316,AAA Batteries (4-pack),5,2.99,11/01/19 21:34,"526 River St, Portland, OR 97035" +288317,AAA Batteries (4-pack),1,2.99,11/19/19 14:35,"523 Hickory St, New York City, NY 10001" +288318,Wired Headphones,1,11.99,11/13/19 21:37,"275 Jefferson St, Los Angeles, CA 90001" +288319,Wired Headphones,1,11.99,11/27/19 23:01,"520 6th St, Atlanta, GA 30301" +288320,Apple Airpods Headphones,1,150,11/12/19 11:13,"15 6th St, Dallas, TX 75001" +,,,,, +288321,USB-C Charging Cable,1,11.95,11/23/19 22:03,"700 8th St, San Francisco, CA 94016" +288322,20in Monitor,1,109.99,11/02/19 09:19,"771 Highland St, Atlanta, GA 30301" +288323,USB-C Charging Cable,1,11.95,11/22/19 17:30,"994 Dogwood St, San Francisco, CA 94016" +288324,AA Batteries (4-pack),1,3.84,11/04/19 18:57,"590 Johnson St, New York City, NY 10001" +288325,Lightning Charging Cable,1,14.95,11/30/19 18:28,"217 11th St, San Francisco, CA 94016" +288326,20in Monitor,1,109.99,11/11/19 12:45,"193 Lakeview St, Seattle, WA 98101" +288327,Lightning Charging Cable,1,14.95,11/02/19 20:58,"818 Pine St, Boston, MA 02215" +288328,34in Ultrawide Monitor,1,379.99,11/19/19 13:25,"362 Wilson St, Boston, MA 02215" +288329,USB-C Charging Cable,1,11.95,11/10/19 19:17,"496 1st St, Seattle, WA 98101" +288330,Apple Airpods Headphones,1,150,11/07/19 20:02,"914 Adams St, New York City, NY 10001" +288331,AA Batteries (4-pack),2,3.84,11/18/19 12:55,"120 Adams St, Boston, MA 02215" +288332,Macbook Pro Laptop,1,1700,11/01/19 18:41,"661 Cherry St, Boston, MA 02215" +288333,Vareebadd Phone,1,400,11/17/19 18:49,"924 Ridge St, Portland, ME 04101" +288334,Lightning Charging Cable,1,14.95,11/11/19 10:18,"201 14th St, Los Angeles, CA 90001" +288335,Bose SoundSport Headphones,1,99.99,11/22/19 13:13,"424 Elm St, San Francisco, CA 94016" +288336,AA Batteries (4-pack),1,3.84,11/30/19 23:40,"621 8th St, Portland, OR 97035" +288337,USB-C Charging Cable,2,11.95,11/23/19 12:18,"259 South St, New York City, NY 10001" +288337,34in Ultrawide Monitor,1,379.99,11/23/19 12:18,"259 South St, New York City, NY 10001" +288338,iPhone,1,700,11/18/19 10:08,"397 Jackson St, San Francisco, CA 94016" +288339,Wired Headphones,1,11.99,11/15/19 19:19,"394 6th St, Austin, TX 73301" +288340,iPhone,1,700,11/09/19 19:49,"105 Forest St, New York City, NY 10001" +288341,20in Monitor,1,109.99,11/10/19 19:53,"995 Spruce St, San Francisco, CA 94016" +288342,Bose SoundSport Headphones,1,99.99,11/11/19 20:55,"947 Hill St, Portland, OR 97035" +288343,ThinkPad Laptop,1,999.99,11/29/19 17:13,"457 Maple St, San Francisco, CA 94016" +288344,AA Batteries (4-pack),1,3.84,11/28/19 09:27,"47 River St, San Francisco, CA 94016" +288345,LG Washing Machine,1,600.0,11/23/19 18:15,"74 Adams St, Portland, OR 97035" +288346,20in Monitor,1,109.99,11/06/19 11:59,"137 Meadow St, Boston, MA 02215" +288347,LG Washing Machine,1,600.0,11/12/19 14:18,"951 1st St, San Francisco, CA 94016" +288348,AAA Batteries (4-pack),2,2.99,11/15/19 13:15,"11 8th St, Los Angeles, CA 90001" +288349,Wired Headphones,1,11.99,11/30/19 22:11,"292 Hill St, Boston, MA 02215" +288350,34in Ultrawide Monitor,1,379.99,11/19/19 18:59,"662 Adams St, San Francisco, CA 94016" +288351,Lightning Charging Cable,1,14.95,11/08/19 12:40,"976 Dogwood St, New York City, NY 10001" +288352,USB-C Charging Cable,1,11.95,11/30/19 13:01,"462 Forest St, Seattle, WA 98101" +288353,Bose SoundSport Headphones,1,99.99,11/04/19 13:29,"861 14th St, San Francisco, CA 94016" +288354,AA Batteries (4-pack),1,3.84,11/02/19 09:55,"605 Jefferson St, San Francisco, CA 94016" +288355,Lightning Charging Cable,1,14.95,11/03/19 16:09,"988 Washington St, Seattle, WA 98101" +288356,27in 4K Gaming Monitor,1,389.99,11/17/19 07:24,"649 5th St, San Francisco, CA 94016" +288357,USB-C Charging Cable,1,11.95,11/23/19 21:16,"253 10th St, San Francisco, CA 94016" +288358,ThinkPad Laptop,1,999.99,11/01/19 15:52,"854 13th St, Atlanta, GA 30301" +288359,Flatscreen TV,1,300,11/06/19 04:38,"34 Wilson St, Los Angeles, CA 90001" +288360,34in Ultrawide Monitor,1,379.99,11/02/19 18:51,"151 Chestnut St, San Francisco, CA 94016" +288361,Lightning Charging Cable,1,14.95,11/22/19 18:47,"688 Center St, Atlanta, GA 30301" +288362,Lightning Charging Cable,1,14.95,11/21/19 22:20,"673 Elm St, Portland, OR 97035" +288362,Macbook Pro Laptop,1,1700,11/21/19 22:20,"673 Elm St, Portland, OR 97035" +288363,Flatscreen TV,1,300,11/28/19 19:19,"838 Chestnut St, San Francisco, CA 94016" +288364,Bose SoundSport Headphones,1,99.99,11/06/19 18:46,"130 Hickory St, New York City, NY 10001" +288365,USB-C Charging Cable,1,11.95,11/14/19 06:12,"86 8th St, Dallas, TX 75001" +288366,AA Batteries (4-pack),1,3.84,11/04/19 17:44,"769 9th St, San Francisco, CA 94016" +288367,Wired Headphones,1,11.99,11/29/19 16:45,"543 Willow St, New York City, NY 10001" +288368,USB-C Charging Cable,1,11.95,11/17/19 13:18,"15 Lakeview St, San Francisco, CA 94016" +288369,USB-C Charging Cable,1,11.95,11/12/19 11:13,"421 Johnson St, Los Angeles, CA 90001" +288370,USB-C Charging Cable,1,11.95,11/23/19 13:21,"990 Forest St, Dallas, TX 75001" +288371,AAA Batteries (4-pack),1,2.99,11/17/19 19:34,"786 Johnson St, Portland, OR 97035" +288372,AAA Batteries (4-pack),2,2.99,11/06/19 09:42,"91 13th St, Portland, OR 97035" +288373,Wired Headphones,1,11.99,11/13/19 18:37,"406 North St, Los Angeles, CA 90001" +288374,Lightning Charging Cable,1,14.95,11/28/19 09:50,"52 Lincoln St, Los Angeles, CA 90001" +288375,Bose SoundSport Headphones,1,99.99,11/30/19 12:32,"841 6th St, Dallas, TX 75001" +288376,AAA Batteries (4-pack),1,2.99,11/11/19 22:16,"855 Dogwood St, Austin, TX 73301" +288377,AAA Batteries (4-pack),1,2.99,11/19/19 11:06,"294 5th St, Los Angeles, CA 90001" +288378,27in 4K Gaming Monitor,1,389.99,11/21/19 13:34,"338 Pine St, Portland, OR 97035" +288379,AA Batteries (4-pack),1,3.84,11/15/19 22:14,"702 1st St, Los Angeles, CA 90001" +288380,Lightning Charging Cable,1,14.95,11/04/19 12:17,"377 7th St, Seattle, WA 98101" +288381,AA Batteries (4-pack),1,3.84,11/06/19 21:24,"770 Dogwood St, New York City, NY 10001" +288382,Macbook Pro Laptop,1,1700,11/14/19 22:04,"737 Meadow St, San Francisco, CA 94016" +288383,Wired Headphones,1,11.99,11/26/19 14:48,"867 South St, Atlanta, GA 30301" +288384,USB-C Charging Cable,2,11.95,11/18/19 14:44,"745 12th St, New York City, NY 10001" +288385,Apple Airpods Headphones,1,150,11/10/19 19:48,"631 1st St, Los Angeles, CA 90001" +288386,Google Phone,1,600,11/14/19 12:12,"85 Meadow St, Dallas, TX 75001" +288387,AA Batteries (4-pack),2,3.84,11/17/19 11:35,"674 Lake St, Dallas, TX 75001" +288388,AAA Batteries (4-pack),2,2.99,11/17/19 17:31,"891 Adams St, Los Angeles, CA 90001" +288389,AAA Batteries (4-pack),1,2.99,11/04/19 09:31,"286 Lake St, Seattle, WA 98101" +288390,27in 4K Gaming Monitor,1,389.99,11/17/19 18:55,"925 Madison St, San Francisco, CA 94016" +288391,AA Batteries (4-pack),1,3.84,11/11/19 08:51,"996 9th St, Atlanta, GA 30301" +288392,Lightning Charging Cable,1,14.95,11/18/19 11:14,"450 9th St, Boston, MA 02215" +288393,27in FHD Monitor,1,149.99,11/12/19 09:35,"222 Chestnut St, Los Angeles, CA 90001" +288394,Lightning Charging Cable,2,14.95,11/06/19 19:54,"811 Jefferson St, Atlanta, GA 30301" +288395,ThinkPad Laptop,1,999.99,11/14/19 01:41,"6 7th St, Los Angeles, CA 90001" +288396,Bose SoundSport Headphones,1,99.99,11/19/19 09:38,"91 Park St, New York City, NY 10001" +288397,iPhone,1,700,11/13/19 17:31,"855 Maple St, Atlanta, GA 30301" +288397,Lightning Charging Cable,1,14.95,11/13/19 17:31,"855 Maple St, Atlanta, GA 30301" +288398,AAA Batteries (4-pack),1,2.99,11/20/19 11:06,"732 Sunset St, Atlanta, GA 30301" +288399,ThinkPad Laptop,1,999.99,11/16/19 12:59,"627 Adams St, Atlanta, GA 30301" +288400,Apple Airpods Headphones,1,150,11/15/19 21:09,"681 Pine St, San Francisco, CA 94016" +288401,AA Batteries (4-pack),1,3.84,11/17/19 10:21,"927 13th St, Los Angeles, CA 90001" +288402,AA Batteries (4-pack),1,3.84,11/25/19 16:06,"81 Spruce St, San Francisco, CA 94016" +288403,USB-C Charging Cable,1,11.95,11/19/19 18:58,"321 Washington St, Seattle, WA 98101" +288404,USB-C Charging Cable,1,11.95,11/24/19 13:29,"722 Chestnut St, San Francisco, CA 94016" +288405,AA Batteries (4-pack),1,3.84,11/24/19 10:52,"547 Washington St, San Francisco, CA 94016" +288406,AA Batteries (4-pack),1,3.84,11/10/19 19:57,"344 Maple St, San Francisco, CA 94016" +288407,AAA Batteries (4-pack),1,2.99,11/24/19 09:10,"545 Adams St, Seattle, WA 98101" +288408,AAA Batteries (4-pack),1,2.99,11/07/19 11:40,"488 1st St, Atlanta, GA 30301" +288409,USB-C Charging Cable,1,11.95,11/20/19 09:16,"731 Hill St, Austin, TX 73301" +288410,AAA Batteries (4-pack),1,2.99,11/28/19 13:21,"59 North St, San Francisco, CA 94016" +288411,34in Ultrawide Monitor,1,379.99,11/07/19 09:25,"809 Willow St, San Francisco, CA 94016" +288412,Google Phone,1,600,11/23/19 18:30,"198 4th St, Boston, MA 02215" +288413,Macbook Pro Laptop,1,1700,11/20/19 11:43,"17 Church St, Seattle, WA 98101" +288414,Google Phone,1,600,11/01/19 10:10,"646 Jackson St, San Francisco, CA 94016" +288415,AAA Batteries (4-pack),3,2.99,11/15/19 17:18,"117 Main St, San Francisco, CA 94016" +288416,AA Batteries (4-pack),1,3.84,11/14/19 10:49,"3 Wilson St, Seattle, WA 98101" +288417,AAA Batteries (4-pack),2,2.99,11/05/19 01:14,"14 West St, Los Angeles, CA 90001" +288418,iPhone,1,700,11/12/19 20:43,"436 13th St, Los Angeles, CA 90001" +288419,AA Batteries (4-pack),2,3.84,11/16/19 11:49,"685 8th St, Dallas, TX 75001" +288420,USB-C Charging Cable,1,11.95,11/29/19 22:28,"712 Center St, San Francisco, CA 94016" +288421,34in Ultrawide Monitor,1,379.99,11/30/19 19:28,"553 Maple St, New York City, NY 10001" +288422,Apple Airpods Headphones,1,150,11/28/19 23:17,"303 10th St, San Francisco, CA 94016" +288423,iPhone,1,700,11/22/19 20:30,"714 Main St, Los Angeles, CA 90001" +288424,ThinkPad Laptop,1,999.99,11/19/19 21:12,"945 South St, San Francisco, CA 94016" +288425,AAA Batteries (4-pack),3,2.99,11/27/19 19:04,"460 14th St, San Francisco, CA 94016" +288426,AA Batteries (4-pack),1,3.84,11/15/19 11:13,"528 4th St, San Francisco, CA 94016" +288427,27in FHD Monitor,1,149.99,11/26/19 01:02,"339 River St, San Francisco, CA 94016" +288428,Macbook Pro Laptop,1,1700,11/17/19 21:46,"165 Madison St, Boston, MA 02215" +288429,USB-C Charging Cable,1,11.95,11/18/19 21:36,"183 Highland St, San Francisco, CA 94016" +288430,Apple Airpods Headphones,1,150,11/14/19 14:30,"561 Dogwood St, San Francisco, CA 94016" +288431,Lightning Charging Cable,2,14.95,11/22/19 16:21,"828 Forest St, Austin, TX 73301" +288432,Apple Airpods Headphones,1,150,11/27/19 07:24,"23 Spruce St, San Francisco, CA 94016" +288433,Apple Airpods Headphones,1,150,11/11/19 13:07,"753 Cherry St, New York City, NY 10001" +288434,AA Batteries (4-pack),1,3.84,11/07/19 10:43,"271 11th St, San Francisco, CA 94016" +288435,AAA Batteries (4-pack),1,2.99,11/08/19 20:51,"143 4th St, San Francisco, CA 94016" +288436,Lightning Charging Cable,1,14.95,11/27/19 10:20,"189 Hill St, Atlanta, GA 30301" +288437,Wired Headphones,1,11.99,11/23/19 21:02,"719 Maple St, Atlanta, GA 30301" +288438,AAA Batteries (4-pack),1,2.99,11/29/19 17:44,"926 Church St, Dallas, TX 75001" +288439,AAA Batteries (4-pack),1,2.99,11/28/19 19:58,"401 Forest St, San Francisco, CA 94016" +288440,34in Ultrawide Monitor,1,379.99,11/23/19 16:03,"247 Cedar St, Boston, MA 02215" +288441,20in Monitor,1,109.99,11/15/19 16:21,"114 Ridge St, Boston, MA 02215" +288442,USB-C Charging Cable,1,11.95,11/04/19 12:38,"640 Hickory St, San Francisco, CA 94016" +288443,Wired Headphones,1,11.99,11/07/19 11:58,"448 Ridge St, San Francisco, CA 94016" +288444,Apple Airpods Headphones,1,150,11/26/19 21:23,"585 Church St, Seattle, WA 98101" +288445,Macbook Pro Laptop,1,1700,11/08/19 19:51,"408 Cherry St, Atlanta, GA 30301" +288446,ThinkPad Laptop,1,999.99,11/19/19 20:56,"627 North St, New York City, NY 10001" +288446,AAA Batteries (4-pack),1,2.99,11/19/19 20:56,"627 North St, New York City, NY 10001" +288447,27in 4K Gaming Monitor,1,389.99,11/16/19 16:02,"297 Forest St, Los Angeles, CA 90001" +288448,USB-C Charging Cable,1,11.95,11/23/19 01:00,"166 Church St, Boston, MA 02215" +288449,USB-C Charging Cable,1,11.95,11/25/19 18:24,"154 5th St, Seattle, WA 98101" +288450,ThinkPad Laptop,1,999.99,11/16/19 09:33,"378 Walnut St, Boston, MA 02215" +288451,AAA Batteries (4-pack),1,2.99,11/23/19 18:04,"284 Church St, Los Angeles, CA 90001" +288452,AAA Batteries (4-pack),1,2.99,11/02/19 17:34,"828 4th St, San Francisco, CA 94016" +288453,Wired Headphones,1,11.99,11/14/19 20:00,"905 12th St, San Francisco, CA 94016" +288454,27in FHD Monitor,1,149.99,11/20/19 21:14,"466 Hill St, San Francisco, CA 94016" +288455,34in Ultrawide Monitor,1,379.99,11/29/19 13:54,"323 North St, Dallas, TX 75001" +288456,Wired Headphones,1,11.99,11/22/19 11:14,"917 4th St, Dallas, TX 75001" +288457,34in Ultrawide Monitor,1,379.99,11/28/19 10:21,"134 Johnson St, San Francisco, CA 94016" +288458,34in Ultrawide Monitor,1,379.99,11/29/19 16:09,"313 1st St, Atlanta, GA 30301" +288459,AAA Batteries (4-pack),2,2.99,11/17/19 12:33,"608 8th St, Atlanta, GA 30301" +288460,20in Monitor,1,109.99,11/04/19 18:24,"62 7th St, Portland, OR 97035" +288461,Lightning Charging Cable,1,14.95,11/02/19 12:10,"174 Meadow St, San Francisco, CA 94016" +288462,Wired Headphones,1,11.99,11/01/19 18:39,"95 2nd St, San Francisco, CA 94016" +288463,AA Batteries (4-pack),1,3.84,11/21/19 10:34,"554 12th St, Seattle, WA 98101" +288464,USB-C Charging Cable,1,11.95,11/06/19 23:55,"224 Washington St, Seattle, WA 98101" +288465,27in 4K Gaming Monitor,1,389.99,11/20/19 15:12,"268 9th St, San Francisco, CA 94016" +288466,Lightning Charging Cable,1,14.95,11/18/19 22:08,"270 Hill St, Los Angeles, CA 90001" +288467,Bose SoundSport Headphones,1,99.99,11/22/19 20:02,"792 Maple St, Seattle, WA 98101" +288468,AAA Batteries (4-pack),1,2.99,11/14/19 11:25,"764 Washington St, Seattle, WA 98101" +288469,27in 4K Gaming Monitor,1,389.99,11/30/19 15:23,"807 Elm St, Los Angeles, CA 90001" +288470,ThinkPad Laptop,1,999.99,11/03/19 12:19,"109 Ridge St, Portland, OR 97035" +288471,Wired Headphones,1,11.99,11/30/19 23:13,"925 West St, San Francisco, CA 94016" +288472,27in FHD Monitor,1,149.99,11/27/19 07:27,"97 Adams St, Portland, OR 97035" +288473,Apple Airpods Headphones,1,150,11/04/19 19:52,"590 Washington St, San Francisco, CA 94016" +288474,Wired Headphones,1,11.99,11/30/19 13:38,"898 Meadow St, Seattle, WA 98101" +288475,Wired Headphones,1,11.99,11/29/19 12:45,"590 11th St, San Francisco, CA 94016" +288476,Macbook Pro Laptop,1,1700,11/25/19 23:45,"519 Ridge St, Los Angeles, CA 90001" +288477,Apple Airpods Headphones,1,150,11/30/19 14:25,"384 Forest St, Austin, TX 73301" +288478,Vareebadd Phone,1,400,11/23/19 12:11,"98 Lakeview St, Los Angeles, CA 90001" +288478,USB-C Charging Cable,1,11.95,11/23/19 12:11,"98 Lakeview St, Los Angeles, CA 90001" +288479,AA Batteries (4-pack),1,3.84,11/12/19 22:30,"659 West St, San Francisco, CA 94016" +288480,Lightning Charging Cable,1,14.95,11/25/19 14:37,"674 Lakeview St, Seattle, WA 98101" +288481,Apple Airpods Headphones,1,150,11/10/19 20:40,"742 Center St, Austin, TX 73301" +288482,Apple Airpods Headphones,1,150,11/16/19 18:51,"205 Wilson St, Atlanta, GA 30301" +288483,Flatscreen TV,1,300,11/15/19 09:52,"498 12th St, Austin, TX 73301" +288484,Bose SoundSport Headphones,1,99.99,11/08/19 17:00,"714 4th St, Boston, MA 02215" +288485,Bose SoundSport Headphones,1,99.99,11/21/19 20:29,"193 Maple St, Seattle, WA 98101" +288486,iPhone,1,700,11/16/19 17:14,"847 6th St, Austin, TX 73301" +288487,27in FHD Monitor,1,149.99,11/23/19 23:40,"358 Main St, New York City, NY 10001" +288488,Apple Airpods Headphones,1,150,11/02/19 21:08,"414 Chestnut St, New York City, NY 10001" +288489,Apple Airpods Headphones,1,150,11/22/19 10:06,"582 Hill St, Los Angeles, CA 90001" +288490,Wired Headphones,1,11.99,11/20/19 20:05,"489 Ridge St, Boston, MA 02215" +288491,Flatscreen TV,1,300,11/16/19 19:49,"225 Hickory St, Atlanta, GA 30301" +288492,AAA Batteries (4-pack),2,2.99,11/26/19 05:04,"743 Madison St, Los Angeles, CA 90001" +288493,iPhone,1,700,11/08/19 23:07,"758 North St, Atlanta, GA 30301" +288494,Lightning Charging Cable,1,14.95,11/09/19 14:07,"647 Washington St, San Francisco, CA 94016" +288495,34in Ultrawide Monitor,1,379.99,11/22/19 00:28,"835 Meadow St, Seattle, WA 98101" +288496,AAA Batteries (4-pack),2,2.99,11/30/19 20:54,"747 6th St, New York City, NY 10001" +288497,Apple Airpods Headphones,1,150,11/12/19 22:01,"76 Lake St, Seattle, WA 98101" +288498,AAA Batteries (4-pack),1,2.99,11/18/19 23:39,"976 9th St, Los Angeles, CA 90001" +288499,27in FHD Monitor,1,149.99,11/11/19 13:25,"883 Park St, New York City, NY 10001" +288500,Apple Airpods Headphones,1,150,11/02/19 16:32,"508 Church St, New York City, NY 10001" +288501,Wired Headphones,1,11.99,11/01/19 17:51,"907 Church St, New York City, NY 10001" +288502,AAA Batteries (4-pack),2,2.99,11/26/19 04:57,"146 8th St, New York City, NY 10001" +288503,USB-C Charging Cable,1,11.95,11/15/19 09:53,"452 Chestnut St, San Francisco, CA 94016" +288504,Google Phone,1,600,11/21/19 20:02,"361 Cherry St, San Francisco, CA 94016" +288505,Apple Airpods Headphones,1,150,11/22/19 20:27,"113 Cherry St, San Francisco, CA 94016" +288506,Google Phone,1,600,11/02/19 22:04,"3 Hill St, Los Angeles, CA 90001" +288506,USB-C Charging Cable,1,11.95,11/02/19 22:04,"3 Hill St, Los Angeles, CA 90001" +288507,USB-C Charging Cable,1,11.95,11/11/19 18:46,"223 Meadow St, Seattle, WA 98101" +288508,LG Washing Machine,1,600.0,11/22/19 07:04,"458 Chestnut St, Seattle, WA 98101" +288509,Lightning Charging Cable,1,14.95,11/16/19 21:15,"853 Highland St, Austin, TX 73301" +288510,Wired Headphones,1,11.99,11/25/19 18:24,"197 9th St, San Francisco, CA 94016" +288511,Lightning Charging Cable,1,14.95,11/10/19 12:47,"394 Lincoln St, New York City, NY 10001" +288512,AAA Batteries (4-pack),3,2.99,11/29/19 12:07,"345 Walnut St, San Francisco, CA 94016" +288513,AA Batteries (4-pack),2,3.84,11/26/19 17:32,"273 Adams St, San Francisco, CA 94016" +288514,AA Batteries (4-pack),1,3.84,11/17/19 12:12,"672 Main St, New York City, NY 10001" +288515,Macbook Pro Laptop,1,1700,11/17/19 13:17,"541 5th St, San Francisco, CA 94016" +288516,27in 4K Gaming Monitor,1,389.99,11/15/19 17:43,"114 Wilson St, Austin, TX 73301" +288517,AA Batteries (4-pack),2,3.84,11/08/19 18:52,"777 14th St, Atlanta, GA 30301" +288518,Apple Airpods Headphones,1,150,11/11/19 12:56,"893 Church St, San Francisco, CA 94016" +288519,Lightning Charging Cable,1,14.95,11/29/19 10:44,"982 Washington St, San Francisco, CA 94016" +288520,27in 4K Gaming Monitor,1,389.99,11/21/19 15:59,"2 1st St, Atlanta, GA 30301" +288521,AAA Batteries (4-pack),1,2.99,11/16/19 14:30,"379 Cherry St, New York City, NY 10001" +288522,Google Phone,1,600,11/01/19 21:56,"959 Hill St, San Francisco, CA 94016" +288523,Bose SoundSport Headphones,1,99.99,11/25/19 06:39,"310 Hickory St, Boston, MA 02215" +288524,Google Phone,1,600,11/14/19 07:40,"92 River St, San Francisco, CA 94016" +288525,USB-C Charging Cable,1,11.95,11/05/19 13:10,"762 Washington St, Seattle, WA 98101" +288526,Vareebadd Phone,1,400,11/13/19 22:44,"883 Forest St, Dallas, TX 75001" +288527,Macbook Pro Laptop,1,1700,11/05/19 10:01,"444 North St, New York City, NY 10001" +288528,Lightning Charging Cable,1,14.95,11/26/19 19:12,"728 4th St, San Francisco, CA 94016" +288529,27in 4K Gaming Monitor,1,389.99,11/19/19 12:46,"709 Lake St, Dallas, TX 75001" +288530,Google Phone,1,600,11/08/19 11:36,"91 Spruce St, San Francisco, CA 94016" +288531,AAA Batteries (4-pack),2,2.99,11/30/19 21:23,"709 Willow St, San Francisco, CA 94016" +288532,AA Batteries (4-pack),1,3.84,11/10/19 08:31,"98 14th St, San Francisco, CA 94016" +288533,Bose SoundSport Headphones,1,99.99,11/09/19 21:47,"472 Meadow St, Los Angeles, CA 90001" +288534,Wired Headphones,1,11.99,11/01/19 11:20,"734 Lake St, Portland, ME 04101" +288535,AAA Batteries (4-pack),3,2.99,11/29/19 16:42,"239 11th St, Seattle, WA 98101" +288536,AA Batteries (4-pack),1,3.84,11/09/19 13:48,"250 Church St, San Francisco, CA 94016" +288537,Bose SoundSport Headphones,1,99.99,11/30/19 11:57,"62 Cedar St, Portland, OR 97035" +288538,Bose SoundSport Headphones,1,99.99,11/08/19 10:59,"23 Ridge St, Portland, ME 04101" +288539,ThinkPad Laptop,1,999.99,11/11/19 22:41,"280 Ridge St, Boston, MA 02215" +288539,AAA Batteries (4-pack),1,2.99,11/11/19 22:41,"280 Ridge St, Boston, MA 02215" +288540,ThinkPad Laptop,1,999.99,11/26/19 14:09,"310 7th St, Los Angeles, CA 90001" +288541,ThinkPad Laptop,1,999.99,11/02/19 07:13,"748 Lincoln St, Boston, MA 02215" +288542,Wired Headphones,1,11.99,11/14/19 21:19,"468 Center St, Atlanta, GA 30301" +288543,AA Batteries (4-pack),3,3.84,11/14/19 17:21,"713 West St, Seattle, WA 98101" +288544,AA Batteries (4-pack),1,3.84,11/21/19 16:39,"346 Sunset St, San Francisco, CA 94016" +288545,iPhone,1,700,11/01/19 17:47,"503 Spruce St, Boston, MA 02215" +288546,Flatscreen TV,1,300,11/14/19 15:55,"51 Hill St, Dallas, TX 75001" +288547,Apple Airpods Headphones,1,150,11/20/19 18:20,"79 Elm St, Seattle, WA 98101" +288548,USB-C Charging Cable,1,11.95,11/18/19 19:16,"809 12th St, San Francisco, CA 94016" +288549,iPhone,1,700,11/27/19 06:54,"466 Adams St, San Francisco, CA 94016" +288550,27in 4K Gaming Monitor,1,389.99,11/14/19 13:45,"391 Lakeview St, Dallas, TX 75001" +288551,Apple Airpods Headphones,1,150,11/16/19 10:41,"651 9th St, Seattle, WA 98101" +288552,Bose SoundSport Headphones,1,99.99,11/21/19 16:25,"959 West St, Los Angeles, CA 90001" +288553,Google Phone,1,600,11/28/19 11:34,"293 Meadow St, Dallas, TX 75001" +288554,Flatscreen TV,1,300,11/24/19 16:46,"832 Highland St, Austin, TX 73301" +288555,Wired Headphones,1,11.99,11/02/19 03:14,"814 Main St, Seattle, WA 98101" +288556,AAA Batteries (4-pack),1,2.99,11/29/19 11:40,"579 Johnson St, San Francisco, CA 94016" +288557,USB-C Charging Cable,1,11.95,11/07/19 19:29,"127 Elm St, Portland, OR 97035" +288558,Apple Airpods Headphones,1,150,11/09/19 00:52,"598 10th St, New York City, NY 10001" +288559,Lightning Charging Cable,1,14.95,11/05/19 16:29,"238 Washington St, San Francisco, CA 94016" +288560,Bose SoundSport Headphones,1,99.99,11/25/19 20:46,"447 13th St, Boston, MA 02215" +288561,Bose SoundSport Headphones,1,99.99,11/03/19 11:33,"548 1st St, Atlanta, GA 30301" +288562,34in Ultrawide Monitor,1,379.99,11/25/19 11:20,"431 West St, Seattle, WA 98101" +288563,Bose SoundSport Headphones,1,99.99,11/19/19 13:18,"599 11th St, Dallas, TX 75001" +288564,AA Batteries (4-pack),3,3.84,11/23/19 22:29,"308 Maple St, Austin, TX 73301" +288565,27in 4K Gaming Monitor,1,389.99,11/01/19 05:19,"409 4th St, Austin, TX 73301" +288566,Wired Headphones,1,11.99,11/13/19 19:57,"640 Washington St, Boston, MA 02215" +288567,27in FHD Monitor,1,149.99,11/18/19 12:07,"414 Washington St, New York City, NY 10001" +288568,AAA Batteries (4-pack),1,2.99,11/05/19 22:51,"643 Lakeview St, San Francisco, CA 94016" +288569,34in Ultrawide Monitor,1,379.99,11/04/19 22:42,"378 Jackson St, Boston, MA 02215" +288570,34in Ultrawide Monitor,1,379.99,11/04/19 19:34,"199 Wilson St, San Francisco, CA 94016" +288571,AAA Batteries (4-pack),2,2.99,11/29/19 18:28,"743 Sunset St, San Francisco, CA 94016" +288572,AAA Batteries (4-pack),2,2.99,11/09/19 20:14,"262 Elm St, Portland, OR 97035" +288573,AA Batteries (4-pack),1,3.84,11/05/19 18:11,"176 Johnson St, Dallas, TX 75001" +288574,AA Batteries (4-pack),1,3.84,11/27/19 07:38,"875 Jackson St, Los Angeles, CA 90001" +288575,27in 4K Gaming Monitor,1,389.99,11/20/19 16:41,"159 Jefferson St, San Francisco, CA 94016" +288576,Wired Headphones,1,11.99,11/01/19 09:04,"370 Sunset St, Seattle, WA 98101" +288577,ThinkPad Laptop,1,999.99,11/23/19 18:06,"585 Meadow St, Dallas, TX 75001" +288578,AAA Batteries (4-pack),1,2.99,11/14/19 14:00,"773 12th St, Boston, MA 02215" +288579,Bose SoundSport Headphones,1,99.99,11/08/19 17:17,"185 Jackson St, Portland, ME 04101" +288580,Google Phone,1,600,11/26/19 23:44,"686 5th St, Dallas, TX 75001" +288581,Apple Airpods Headphones,1,150,11/06/19 22:45,"295 North St, Boston, MA 02215" +288582,34in Ultrawide Monitor,1,379.99,11/11/19 11:01,"88 Adams St, Los Angeles, CA 90001" +288583,AA Batteries (4-pack),4,3.84,11/04/19 15:52,"453 River St, Dallas, TX 75001" +288584,Wired Headphones,1,11.99,11/05/19 21:11,"102 River St, Austin, TX 73301" +288585,Wired Headphones,1,11.99,11/03/19 15:08,"428 River St, Atlanta, GA 30301" +288586,Bose SoundSport Headphones,1,99.99,11/15/19 08:58,"128 10th St, Atlanta, GA 30301" +288587,Lightning Charging Cable,1,14.95,11/20/19 11:25,"531 Park St, Atlanta, GA 30301" +288588,Lightning Charging Cable,1,14.95,11/15/19 18:26,"585 Walnut St, Boston, MA 02215" +288589,27in FHD Monitor,1,149.99,11/26/19 15:59,"623 Sunset St, Dallas, TX 75001" +288590,Apple Airpods Headphones,1,150,11/02/19 18:53,"795 West St, Portland, OR 97035" +288591,Lightning Charging Cable,1,14.95,11/17/19 22:29,"694 Park St, San Francisco, CA 94016" +288592,Lightning Charging Cable,1,14.95,11/29/19 00:06,"332 Johnson St, Los Angeles, CA 90001" +288593,Apple Airpods Headphones,1,150,11/24/19 11:42,"692 Washington St, New York City, NY 10001" +288594,Wired Headphones,1,11.99,11/22/19 21:20,"497 Forest St, Atlanta, GA 30301" +288595,Apple Airpods Headphones,1,150,11/25/19 18:10,"468 Lake St, Los Angeles, CA 90001" +288596,27in FHD Monitor,1,149.99,11/24/19 08:34,"717 Sunset St, Boston, MA 02215" +288597,AAA Batteries (4-pack),4,2.99,11/05/19 14:26,"332 Walnut St, Los Angeles, CA 90001" +288598,AA Batteries (4-pack),2,3.84,11/04/19 14:08,"363 Chestnut St, Atlanta, GA 30301" +288599,Lightning Charging Cable,1,14.95,11/13/19 20:29,"887 Park St, Atlanta, GA 30301" +288600,USB-C Charging Cable,1,11.95,11/15/19 20:11,"352 Forest St, Austin, TX 73301" +288601,27in 4K Gaming Monitor,1,389.99,11/03/19 15:24,"267 Lincoln St, San Francisco, CA 94016" +288602,AAA Batteries (4-pack),2,2.99,11/02/19 15:29,"450 Spruce St, New York City, NY 10001" +288603,AAA Batteries (4-pack),2,2.99,11/16/19 19:22,"705 Willow St, San Francisco, CA 94016" +288604,27in FHD Monitor,1,149.99,11/14/19 17:54,"519 Cherry St, San Francisco, CA 94016" +288605,USB-C Charging Cable,1,11.95,11/22/19 08:02,"35 Dogwood St, Seattle, WA 98101" +288606,AA Batteries (4-pack),1,3.84,11/06/19 12:07,"710 Main St, New York City, NY 10001" +288607,Bose SoundSport Headphones,1,99.99,11/20/19 14:31,"541 Park St, Dallas, TX 75001" +288608,Wired Headphones,1,11.99,11/29/19 15:51,"965 Jefferson St, San Francisco, CA 94016" +288609,AA Batteries (4-pack),1,3.84,11/22/19 16:01,"812 2nd St, San Francisco, CA 94016" +288610,Flatscreen TV,1,300,11/08/19 17:50,"105 West St, San Francisco, CA 94016" +288611,Wired Headphones,1,11.99,11/12/19 12:55,"475 Chestnut St, New York City, NY 10001" +288612,Macbook Pro Laptop,1,1700,11/22/19 19:12,"26 Adams St, New York City, NY 10001" +288613,ThinkPad Laptop,1,999.99,11/27/19 09:43,"773 North St, San Francisco, CA 94016" +288614,AAA Batteries (4-pack),1,2.99,11/20/19 09:34,"777 Washington St, Los Angeles, CA 90001" +288615,Apple Airpods Headphones,1,150,11/10/19 14:36,"494 Johnson St, Portland, OR 97035" +288616,Wired Headphones,1,11.99,11/24/19 12:18,"61 South St, Boston, MA 02215" +288617,USB-C Charging Cable,1,11.95,11/16/19 19:33,"814 Highland St, Seattle, WA 98101" +288618,Flatscreen TV,1,300,11/10/19 11:45,"601 Washington St, Los Angeles, CA 90001" +288619,Flatscreen TV,1,300,11/13/19 22:51,"955 Meadow St, Atlanta, GA 30301" +288620,Bose SoundSport Headphones,1,99.99,11/09/19 00:44,"106 14th St, Los Angeles, CA 90001" +288621,AA Batteries (4-pack),1,3.84,11/27/19 06:22,"264 Spruce St, Seattle, WA 98101" +288622,Apple Airpods Headphones,1,150,11/15/19 19:45,"247 1st St, San Francisco, CA 94016" +288622,Google Phone,1,600,11/15/19 19:45,"247 1st St, San Francisco, CA 94016" +288623,Wired Headphones,1,11.99,11/06/19 01:01,"917 South St, New York City, NY 10001" +288624,Apple Airpods Headphones,1,150,11/21/19 21:00,"358 Lakeview St, New York City, NY 10001" +288625,USB-C Charging Cable,1,11.95,11/09/19 19:10,"521 1st St, New York City, NY 10001" +288626,Apple Airpods Headphones,1,150,11/25/19 09:31,"415 9th St, Los Angeles, CA 90001" +288627,AA Batteries (4-pack),1,3.84,11/01/19 22:06,"625 Washington St, San Francisco, CA 94016" +288628,AA Batteries (4-pack),1,3.84,11/28/19 08:06,"454 12th St, Seattle, WA 98101" +288629,Apple Airpods Headphones,1,150,11/09/19 23:27,"982 North St, Dallas, TX 75001" +288630,Google Phone,1,600,11/11/19 11:30,"654 9th St, Portland, OR 97035" +288631,Wired Headphones,1,11.99,11/17/19 11:03,"775 4th St, Dallas, TX 75001" +288632,Wired Headphones,1,11.99,11/26/19 18:27,"558 Hill St, San Francisco, CA 94016" +288633,Bose SoundSport Headphones,1,99.99,11/19/19 08:02,"474 Hickory St, San Francisco, CA 94016" +288634,AAA Batteries (4-pack),1,2.99,11/25/19 17:30,"496 4th St, Seattle, WA 98101" +288635,iPhone,1,700,11/07/19 17:05,"72 11th St, Portland, OR 97035" +288636,Wired Headphones,1,11.99,11/28/19 12:10,"281 Sunset St, Boston, MA 02215" +288637,Bose SoundSport Headphones,1,99.99,11/27/19 20:32,"726 Adams St, Atlanta, GA 30301" +288638,LG Dryer,1,600.0,11/09/19 13:08,"854 12th St, Atlanta, GA 30301" +288639,Apple Airpods Headphones,1,150,11/28/19 14:54,"475 4th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +288640,20in Monitor,1,109.99,11/02/19 00:43,"906 South St, Portland, OR 97035" +288641,USB-C Charging Cable,1,11.95,11/05/19 08:21,"638 Lakeview St, Los Angeles, CA 90001" +288642,AAA Batteries (4-pack),3,2.99,11/28/19 09:50,"532 Church St, Dallas, TX 75001" +288643,27in FHD Monitor,1,149.99,11/17/19 19:04,"724 South St, Austin, TX 73301" +288644,iPhone,1,700,11/23/19 08:55,"407 Washington St, Dallas, TX 75001" +288644,Wired Headphones,1,11.99,11/23/19 08:55,"407 Washington St, Dallas, TX 75001" +288645,AAA Batteries (4-pack),2,2.99,11/01/19 14:33,"596 Pine St, San Francisco, CA 94016" +288646,34in Ultrawide Monitor,1,379.99,11/10/19 20:39,"865 South St, Los Angeles, CA 90001" +288647,Bose SoundSport Headphones,1,99.99,11/10/19 02:02,"411 Center St, Boston, MA 02215" +288648,27in FHD Monitor,1,149.99,11/20/19 10:55,"164 Lincoln St, Seattle, WA 98101" +288648,Bose SoundSport Headphones,1,99.99,11/20/19 10:55,"164 Lincoln St, Seattle, WA 98101" +288649,Lightning Charging Cable,2,14.95,11/10/19 18:46,"699 Washington St, Atlanta, GA 30301" +288650,USB-C Charging Cable,1,11.95,11/29/19 09:32,"657 Wilson St, New York City, NY 10001" +288651,Wired Headphones,1,11.99,11/17/19 13:59,"524 Maple St, New York City, NY 10001" +288652,iPhone,1,700,11/09/19 16:46,"307 Wilson St, New York City, NY 10001" +288653,Bose SoundSport Headphones,1,99.99,11/16/19 14:14,"235 1st St, Austin, TX 73301" +288653,Google Phone,1,600,11/16/19 14:14,"235 1st St, Austin, TX 73301" +288654,Flatscreen TV,1,300,11/30/19 08:35,"9 Adams St, San Francisco, CA 94016" +288655,Google Phone,1,600,11/04/19 13:56,"40 Ridge St, San Francisco, CA 94016" +288655,USB-C Charging Cable,2,11.95,11/04/19 13:56,"40 Ridge St, San Francisco, CA 94016" +288656,AAA Batteries (4-pack),1,2.99,11/10/19 18:45,"702 South St, Los Angeles, CA 90001" +288657,Google Phone,1,600,11/07/19 12:32,"545 Park St, San Francisco, CA 94016" +288657,USB-C Charging Cable,1,11.95,11/07/19 12:32,"545 Park St, San Francisco, CA 94016" +288657,Bose SoundSport Headphones,1,99.99,11/07/19 12:32,"545 Park St, San Francisco, CA 94016" +288658,USB-C Charging Cable,1,11.95,11/05/19 01:25,"80 Chestnut St, Atlanta, GA 30301" +288659,Bose SoundSport Headphones,1,99.99,11/05/19 12:16,"569 Hill St, Portland, OR 97035" +288660,27in 4K Gaming Monitor,1,389.99,11/23/19 22:08,"791 6th St, New York City, NY 10001" +288661,34in Ultrawide Monitor,1,379.99,11/05/19 20:49,"166 4th St, Los Angeles, CA 90001" +288662,Apple Airpods Headphones,1,150,11/14/19 16:51,"394 13th St, New York City, NY 10001" +288663,Apple Airpods Headphones,1,150,11/05/19 11:54,"571 7th St, New York City, NY 10001" +288664,Bose SoundSport Headphones,1,99.99,11/21/19 11:27,"674 Ridge St, Boston, MA 02215" +288665,Apple Airpods Headphones,1,150,11/30/19 17:45,"49 Lakeview St, San Francisco, CA 94016" +288666,Vareebadd Phone,1,400,11/20/19 07:58,"281 Hickory St, Los Angeles, CA 90001" +288667,Flatscreen TV,1,300,11/26/19 17:14,"349 River St, Dallas, TX 75001" +288668,Bose SoundSport Headphones,1,99.99,11/20/19 12:54,"79 Meadow St, Boston, MA 02215" +288669,AA Batteries (4-pack),1,3.84,11/19/19 18:13,"649 Center St, Austin, TX 73301" +288670,USB-C Charging Cable,1,11.95,11/19/19 21:20,"93 Meadow St, Los Angeles, CA 90001" +288671,Bose SoundSport Headphones,1,99.99,11/06/19 22:35,"739 Highland St, San Francisco, CA 94016" +288672,Bose SoundSport Headphones,1,99.99,11/23/19 14:33,"544 Jefferson St, San Francisco, CA 94016" +288673,34in Ultrawide Monitor,1,379.99,11/21/19 20:10,"613 Forest St, Portland, ME 04101" +288674,USB-C Charging Cable,1,11.95,11/14/19 19:13,"410 Maple St, Los Angeles, CA 90001" +288675,USB-C Charging Cable,1,11.95,11/21/19 14:30,"847 13th St, New York City, NY 10001" +288676,Google Phone,1,600,11/04/19 09:07,"515 12th St, Dallas, TX 75001" +288677,Apple Airpods Headphones,1,150,11/03/19 20:09,"879 Hill St, Los Angeles, CA 90001" +288678,Bose SoundSport Headphones,1,99.99,11/26/19 07:28,"130 11th St, Seattle, WA 98101" +288679,20in Monitor,1,109.99,11/12/19 23:21,"933 8th St, Seattle, WA 98101" +288680,AA Batteries (4-pack),2,3.84,11/10/19 17:27,"771 Meadow St, Seattle, WA 98101" +288681,USB-C Charging Cable,1,11.95,11/04/19 10:22,"372 Lincoln St, New York City, NY 10001" +288682,Wired Headphones,1,11.99,11/05/19 20:02,"54 River St, Austin, TX 73301" +288683,Wired Headphones,1,11.99,11/21/19 17:06,"341 Lake St, Atlanta, GA 30301" +288684,AA Batteries (4-pack),1,3.84,11/29/19 16:38,"618 1st St, Los Angeles, CA 90001" +288685,USB-C Charging Cable,1,11.95,11/06/19 12:10,"162 Park St, Boston, MA 02215" +288686,USB-C Charging Cable,1,11.95,11/23/19 11:02,"39 Meadow St, San Francisco, CA 94016" +288687,Wired Headphones,1,11.99,11/14/19 09:27,"68 11th St, New York City, NY 10001" +288688,Apple Airpods Headphones,1,150,11/01/19 20:16,"595 Forest St, New York City, NY 10001" +288689,AA Batteries (4-pack),1,3.84,11/13/19 22:39,"156 Lakeview St, San Francisco, CA 94016" +288690,USB-C Charging Cable,1,11.95,11/05/19 15:34,"931 Meadow St, Boston, MA 02215" +288691,AAA Batteries (4-pack),1,2.99,11/02/19 00:17,"370 7th St, San Francisco, CA 94016" +288692,27in 4K Gaming Monitor,1,389.99,11/07/19 11:01,"962 Cedar St, New York City, NY 10001" +288693,Flatscreen TV,1,300,11/25/19 17:07,"133 Willow St, Los Angeles, CA 90001" +288694,Macbook Pro Laptop,1,1700,11/14/19 20:22,"725 6th St, Los Angeles, CA 90001" +288695,Macbook Pro Laptop,1,1700,11/10/19 21:36,"935 West St, San Francisco, CA 94016" +288696,Lightning Charging Cable,2,14.95,11/10/19 13:53,"48 Hill St, Dallas, TX 75001" +288697,AAA Batteries (4-pack),1,2.99,11/04/19 19:16,"549 Maple St, San Francisco, CA 94016" +288698,USB-C Charging Cable,1,11.95,11/03/19 16:35,"585 Madison St, Portland, OR 97035" +288699,USB-C Charging Cable,1,11.95,11/18/19 17:00,"560 Johnson St, San Francisco, CA 94016" +288700,USB-C Charging Cable,1,11.95,11/19/19 08:37,"615 13th St, Portland, OR 97035" +288701,ThinkPad Laptop,1,999.99,11/19/19 20:56,"941 2nd St, Seattle, WA 98101" +288702,Lightning Charging Cable,1,14.95,11/21/19 12:02,"22 2nd St, Atlanta, GA 30301" +288703,Lightning Charging Cable,1,14.95,11/27/19 13:58,"941 Elm St, Los Angeles, CA 90001" +288704,Bose SoundSport Headphones,1,99.99,11/11/19 00:10,"640 1st St, San Francisco, CA 94016" +288705,Apple Airpods Headphones,1,150,11/01/19 05:40,"543 13th St, San Francisco, CA 94016" +288706,Wired Headphones,1,11.99,11/13/19 10:59,"628 Jefferson St, Portland, OR 97035" +288707,Bose SoundSport Headphones,1,99.99,11/15/19 08:13,"495 Jackson St, Dallas, TX 75001" +288708,AA Batteries (4-pack),3,3.84,11/30/19 20:16,"206 Pine St, Boston, MA 02215" +288709,AAA Batteries (4-pack),1,2.99,11/22/19 14:47,"235 Sunset St, Los Angeles, CA 90001" +288710,USB-C Charging Cable,1,11.95,11/24/19 09:01,"740 Sunset St, New York City, NY 10001" +288711,AAA Batteries (4-pack),2,2.99,11/09/19 17:32,"833 Lakeview St, New York City, NY 10001" +288712,34in Ultrawide Monitor,1,379.99,11/16/19 23:52,"235 Washington St, Los Angeles, CA 90001" +288713,Wired Headphones,1,11.99,11/25/19 14:41,"995 8th St, Portland, OR 97035" +288714,Wired Headphones,1,11.99,11/04/19 15:57,"697 6th St, Los Angeles, CA 90001" +288715,20in Monitor,1,109.99,11/12/19 11:43,"365 9th St, San Francisco, CA 94016" +288716,Wired Headphones,1,11.99,11/01/19 19:27,"997 South St, Seattle, WA 98101" +288717,34in Ultrawide Monitor,1,379.99,11/17/19 18:51,"116 5th St, Austin, TX 73301" +288718,Wired Headphones,1,11.99,11/05/19 14:50,"613 Walnut St, Seattle, WA 98101" +288719,AA Batteries (4-pack),2,3.84,11/16/19 11:13,"393 Pine St, New York City, NY 10001" +288720,Macbook Pro Laptop,1,1700,11/11/19 03:35,"454 Spruce St, Dallas, TX 75001" +288721,27in 4K Gaming Monitor,1,389.99,11/08/19 18:55,"129 South St, New York City, NY 10001" +288722,AAA Batteries (4-pack),2,2.99,11/11/19 12:26,"265 13th St, Dallas, TX 75001" +288723,Lightning Charging Cable,1,14.95,11/18/19 21:32,"223 Maple St, San Francisco, CA 94016" +288724,Lightning Charging Cable,1,14.95,11/04/19 12:22,"719 Cedar St, Portland, OR 97035" +288725,Macbook Pro Laptop,1,1700,11/29/19 12:07,"920 8th St, Dallas, TX 75001" +288726,AA Batteries (4-pack),1,3.84,11/03/19 11:37,"931 Lake St, Dallas, TX 75001" +288727,USB-C Charging Cable,1,11.95,11/29/19 10:28,"808 West St, Austin, TX 73301" +288728,AA Batteries (4-pack),1,3.84,11/23/19 13:34,"987 North St, Portland, OR 97035" +288729,Bose SoundSport Headphones,1,99.99,11/14/19 20:19,"713 Dogwood St, New York City, NY 10001" +288730,Wired Headphones,2,11.99,11/21/19 21:49,"60 Center St, Los Angeles, CA 90001" +288731,Bose SoundSport Headphones,1,99.99,11/06/19 15:15,"654 Dogwood St, San Francisco, CA 94016" +288732,34in Ultrawide Monitor,1,379.99,11/17/19 19:12,"944 Forest St, San Francisco, CA 94016" +288733,AAA Batteries (4-pack),2,2.99,11/21/19 02:32,"467 Lake St, San Francisco, CA 94016" +288734,Wired Headphones,1,11.99,11/06/19 13:41,"537 Madison St, Boston, MA 02215" +288735,iPhone,1,700,11/01/19 20:22,"554 Washington St, San Francisco, CA 94016" +288735,Lightning Charging Cable,1,14.95,11/01/19 20:22,"554 Washington St, San Francisco, CA 94016" +288736,Lightning Charging Cable,1,14.95,11/10/19 14:08,"156 2nd St, New York City, NY 10001" +288737,Lightning Charging Cable,1,14.95,11/25/19 00:53,"672 Spruce St, Seattle, WA 98101" +288738,AA Batteries (4-pack),1,3.84,11/27/19 22:13,"973 Jefferson St, San Francisco, CA 94016" +288739,AA Batteries (4-pack),1,3.84,11/07/19 14:37,"829 Pine St, Boston, MA 02215" +288740,27in FHD Monitor,1,149.99,11/19/19 21:19,"644 Park St, Boston, MA 02215" +288741,Lightning Charging Cable,1,14.95,11/16/19 22:22,"277 Maple St, New York City, NY 10001" +288742,Google Phone,1,600,11/15/19 19:34,"87 Highland St, Atlanta, GA 30301" +288743,Lightning Charging Cable,1,14.95,11/11/19 22:41,"522 Lake St, Austin, TX 73301" +288744,Flatscreen TV,1,300,11/11/19 13:37,"785 13th St, Boston, MA 02215" +288745,ThinkPad Laptop,1,999.99,11/24/19 11:51,"169 South St, New York City, NY 10001" +288746,Apple Airpods Headphones,1,150,11/21/19 22:12,"573 12th St, San Francisco, CA 94016" +288747,Wired Headphones,1,11.99,11/18/19 11:05,"29 1st St, Los Angeles, CA 90001" +288748,Macbook Pro Laptop,1,1700,11/17/19 23:07,"566 Park St, Seattle, WA 98101" +288749,Flatscreen TV,1,300,11/27/19 11:11,"662 Spruce St, New York City, NY 10001" +288750,AAA Batteries (4-pack),1,2.99,11/11/19 22:26,"306 Elm St, New York City, NY 10001" +288751,20in Monitor,1,109.99,11/14/19 20:14,"448 8th St, Atlanta, GA 30301" +288752,34in Ultrawide Monitor,1,379.99,11/02/19 13:38,"733 4th St, Boston, MA 02215" +288753,iPhone,1,700,11/04/19 17:27,"381 Spruce St, New York City, NY 10001" +288754,Apple Airpods Headphones,1,150,11/12/19 08:20,"338 Jefferson St, Boston, MA 02215" +288755,USB-C Charging Cable,1,11.95,11/19/19 18:49,"113 Park St, Dallas, TX 75001" +288756,Wired Headphones,2,11.99,11/09/19 19:53,"441 Ridge St, Boston, MA 02215" +288757,27in FHD Monitor,1,149.99,11/17/19 10:16,"24 River St, Dallas, TX 75001" +288758,Lightning Charging Cable,1,14.95,11/10/19 15:20,"533 Dogwood St, Seattle, WA 98101" +288759,Bose SoundSport Headphones,1,99.99,11/22/19 11:39,"193 Madison St, Seattle, WA 98101" +288759,AA Batteries (4-pack),1,3.84,11/22/19 11:39,"193 Madison St, Seattle, WA 98101" +288760,USB-C Charging Cable,3,11.95,11/24/19 01:04,"109 Ridge St, Los Angeles, CA 90001" +288761,Bose SoundSport Headphones,1,99.99,11/14/19 17:13,"523 Church St, New York City, NY 10001" +288762,iPhone,1,700,11/12/19 15:12,"605 11th St, Los Angeles, CA 90001" +288763,AAA Batteries (4-pack),1,2.99,11/12/19 22:42,"887 Washington St, Portland, OR 97035" +288764,USB-C Charging Cable,1,11.95,11/22/19 18:34,"331 Forest St, New York City, NY 10001" +288765,USB-C Charging Cable,1,11.95,11/23/19 19:23,"762 Hill St, Dallas, TX 75001" +288766,AA Batteries (4-pack),1,3.84,11/02/19 18:16,"839 West St, Boston, MA 02215" +288767,USB-C Charging Cable,1,11.95,11/07/19 00:00,"737 Adams St, Boston, MA 02215" +288768,USB-C Charging Cable,1,11.95,11/13/19 20:02,"323 Meadow St, New York City, NY 10001" +288769,Bose SoundSport Headphones,1,99.99,11/26/19 10:41,"296 7th St, Atlanta, GA 30301" +288770,Vareebadd Phone,1,400,11/25/19 13:39,"234 Highland St, Seattle, WA 98101" +288771,LG Washing Machine,1,600.0,11/15/19 17:34,"86 7th St, Los Angeles, CA 90001" +288772,Bose SoundSport Headphones,1,99.99,11/16/19 17:59,"815 12th St, Los Angeles, CA 90001" +288773,AAA Batteries (4-pack),1,2.99,11/05/19 02:10,"920 Chestnut St, San Francisco, CA 94016" +288774,USB-C Charging Cable,1,11.95,11/18/19 08:09,"5 South St, New York City, NY 10001" +288775,AAA Batteries (4-pack),1,2.99,11/09/19 13:25,"903 Chestnut St, Los Angeles, CA 90001" +288776,34in Ultrawide Monitor,1,379.99,11/09/19 18:59,"678 14th St, San Francisco, CA 94016" +288777,USB-C Charging Cable,1,11.95,11/05/19 19:12,"170 Pine St, Portland, OR 97035" +288778,Macbook Pro Laptop,1,1700,11/02/19 21:24,"190 Cherry St, Dallas, TX 75001" +288779,AA Batteries (4-pack),1,3.84,11/16/19 19:37,"319 Lake St, San Francisco, CA 94016" +288780,AA Batteries (4-pack),2,3.84,11/12/19 19:04,"54 Spruce St, Austin, TX 73301" +288781,ThinkPad Laptop,1,999.99,11/08/19 14:17,"438 Maple St, New York City, NY 10001" +288782,Apple Airpods Headphones,1,150,11/03/19 18:51,"330 Lakeview St, Los Angeles, CA 90001" +288783,27in FHD Monitor,1,149.99,11/13/19 13:22,"448 Hill St, New York City, NY 10001" +288784,ThinkPad Laptop,1,999.99,11/07/19 10:41,"940 Meadow St, Austin, TX 73301" +288785,Macbook Pro Laptop,1,1700,11/22/19 20:42,"950 Madison St, Austin, TX 73301" +288786,AAA Batteries (4-pack),1,2.99,11/29/19 14:49,"996 Spruce St, New York City, NY 10001" +288787,Macbook Pro Laptop,1,1700,11/08/19 19:25,"433 12th St, San Francisco, CA 94016" +288787,Wired Headphones,1,11.99,11/08/19 19:25,"433 12th St, San Francisco, CA 94016" +288788,Lightning Charging Cable,1,14.95,11/20/19 20:12,"4 Hickory St, Dallas, TX 75001" +288789,27in FHD Monitor,1,149.99,11/21/19 19:04,"841 Madison St, Los Angeles, CA 90001" +288790,Google Phone,1,600,11/24/19 06:36,"436 Hickory St, New York City, NY 10001" +288790,USB-C Charging Cable,1,11.95,11/24/19 06:36,"436 Hickory St, New York City, NY 10001" +288791,Apple Airpods Headphones,1,150,11/15/19 18:04,"651 Ridge St, New York City, NY 10001" +288792,AAA Batteries (4-pack),1,2.99,11/07/19 07:16,"819 Wilson St, New York City, NY 10001" +288793,Lightning Charging Cable,1,14.95,11/13/19 18:34,"45 Meadow St, Los Angeles, CA 90001" +288794,ThinkPad Laptop,1,999.99,11/04/19 20:54,"253 Lincoln St, Los Angeles, CA 90001" +288795,Apple Airpods Headphones,1,150,11/18/19 15:15,"434 Highland St, Boston, MA 02215" +288796,AA Batteries (4-pack),1,3.84,11/17/19 11:04,"459 12th St, Austin, TX 73301" +288797,Apple Airpods Headphones,1,150,11/30/19 16:46,"984 Hickory St, San Francisco, CA 94016" +288798,Macbook Pro Laptop,1,1700,11/30/19 21:58,"674 4th St, Seattle, WA 98101" +288799,USB-C Charging Cable,1,11.95,11/28/19 22:21,"227 1st St, San Francisco, CA 94016" +288800,AAA Batteries (4-pack),2,2.99,11/05/19 21:42,"332 Madison St, Seattle, WA 98101" +288801,AAA Batteries (4-pack),1,2.99,11/17/19 11:22,"396 Johnson St, San Francisco, CA 94016" +288802,Apple Airpods Headphones,1,150,11/05/19 11:59,"438 Jefferson St, Los Angeles, CA 90001" +288803,Bose SoundSport Headphones,1,99.99,11/01/19 13:30,"283 11th St, Portland, ME 04101" +288804,Flatscreen TV,1,300,11/07/19 22:58,"575 Forest St, Boston, MA 02215" +288805,AAA Batteries (4-pack),1,2.99,11/12/19 16:26,"716 Adams St, San Francisco, CA 94016" +288806,27in FHD Monitor,1,149.99,11/01/19 14:56,"269 Willow St, Dallas, TX 75001" +288807,AA Batteries (4-pack),1,3.84,11/03/19 18:16,"854 Highland St, New York City, NY 10001" +288808,USB-C Charging Cable,1,11.95,11/16/19 06:47,"603 Cherry St, San Francisco, CA 94016" +288809,USB-C Charging Cable,1,11.95,11/18/19 21:02,"953 4th St, Boston, MA 02215" +288810,AA Batteries (4-pack),1,3.84,11/19/19 13:40,"661 Lake St, Dallas, TX 75001" +288811,Lightning Charging Cable,1,14.95,11/19/19 16:34,"660 North St, Atlanta, GA 30301" +288812,27in FHD Monitor,1,149.99,11/15/19 19:48,"184 Park St, Los Angeles, CA 90001" +288813,Apple Airpods Headphones,1,150,11/18/19 12:57,"396 1st St, Portland, OR 97035" +288814,USB-C Charging Cable,1,11.95,11/07/19 10:47,"810 North St, Los Angeles, CA 90001" +288815,USB-C Charging Cable,1,11.95,11/08/19 20:01,"117 South St, Seattle, WA 98101" +288816,AAA Batteries (4-pack),1,2.99,11/03/19 13:59,"188 Park St, Los Angeles, CA 90001" +288817,USB-C Charging Cable,1,11.95,11/14/19 17:22,"523 Madison St, Portland, OR 97035" +288818,Lightning Charging Cable,1,14.95,11/24/19 05:11,"956 West St, Los Angeles, CA 90001" +288819,USB-C Charging Cable,1,11.95,11/14/19 15:43,"959 Sunset St, Boston, MA 02215" +288820,Lightning Charging Cable,1,14.95,11/12/19 11:29,"789 Hickory St, Los Angeles, CA 90001" +288821,Macbook Pro Laptop,1,1700,11/19/19 14:25,"52 Jefferson St, Austin, TX 73301" +288822,27in 4K Gaming Monitor,1,389.99,11/24/19 15:26,"679 6th St, Los Angeles, CA 90001" +288823,Wired Headphones,1,11.99,11/28/19 10:57,"356 8th St, Boston, MA 02215" +288824,27in FHD Monitor,1,149.99,11/28/19 17:37,"879 8th St, Dallas, TX 75001" +288825,USB-C Charging Cable,1,11.95,11/15/19 20:30,"470 Park St, Portland, ME 04101" +288826,Lightning Charging Cable,1,14.95,11/01/19 22:11,"430 Wilson St, Portland, ME 04101" +288827,Vareebadd Phone,1,400,11/07/19 14:53,"545 12th St, Atlanta, GA 30301" +288828,Vareebadd Phone,1,400,11/14/19 19:10,"462 Forest St, Portland, OR 97035" +288829,Bose SoundSport Headphones,1,99.99,11/18/19 00:09,"194 Church St, New York City, NY 10001" +288830,Lightning Charging Cable,1,14.95,11/10/19 20:03,"915 2nd St, Dallas, TX 75001" +288831,Apple Airpods Headphones,1,150,11/29/19 13:25,"195 Pine St, San Francisco, CA 94016" +288832,Bose SoundSport Headphones,1,99.99,11/20/19 14:23,"658 Walnut St, Austin, TX 73301" +,,,,, +288833,USB-C Charging Cable,1,11.95,11/17/19 19:40,"850 1st St, Boston, MA 02215" +288834,27in FHD Monitor,1,149.99,11/16/19 16:07,"238 Meadow St, Los Angeles, CA 90001" +288835,Bose SoundSport Headphones,1,99.99,11/27/19 21:54,"956 Center St, Los Angeles, CA 90001" +288836,Wired Headphones,1,11.99,11/24/19 13:15,"952 12th St, Dallas, TX 75001" +288837,Wired Headphones,1,11.99,11/20/19 13:14,"117 6th St, New York City, NY 10001" +288838,USB-C Charging Cable,1,11.95,11/16/19 17:16,"128 13th St, Seattle, WA 98101" +288839,AAA Batteries (4-pack),1,2.99,11/09/19 21:35,"929 Chestnut St, Atlanta, GA 30301" +288840,USB-C Charging Cable,1,11.95,11/20/19 09:36,"205 Park St, San Francisco, CA 94016" +288841,Lightning Charging Cable,1,14.95,11/10/19 19:38,"757 Madison St, Seattle, WA 98101" +288842,20in Monitor,1,109.99,11/01/19 09:11,"627 Forest St, Los Angeles, CA 90001" +288843,Flatscreen TV,1,300,11/04/19 13:15,"671 14th St, Atlanta, GA 30301" +288844,20in Monitor,1,109.99,11/01/19 10:20,"978 Church St, New York City, NY 10001" +288845,Bose SoundSport Headphones,1,99.99,11/05/19 08:21,"48 Park St, New York City, NY 10001" +288846,Apple Airpods Headphones,1,150,11/19/19 14:25,"859 Johnson St, San Francisco, CA 94016" +288847,AA Batteries (4-pack),2,3.84,11/27/19 13:43,"848 5th St, San Francisco, CA 94016" +288848,Lightning Charging Cable,1,14.95,11/22/19 09:30,"573 4th St, Seattle, WA 98101" +288849,Lightning Charging Cable,1,14.95,11/01/19 10:59,"922 Park St, New York City, NY 10001" +288850,Lightning Charging Cable,1,14.95,11/04/19 20:09,"769 Center St, Dallas, TX 75001" +288851,Apple Airpods Headphones,1,150,11/08/19 11:28,"629 West St, Los Angeles, CA 90001" +288852,ThinkPad Laptop,1,999.99,11/14/19 19:17,"334 Park St, Los Angeles, CA 90001" +288853,Macbook Pro Laptop,1,1700,11/11/19 10:49,"367 North St, Los Angeles, CA 90001" +288854,AA Batteries (4-pack),1,3.84,11/21/19 21:31,"304 6th St, Boston, MA 02215" +288855,USB-C Charging Cable,1,11.95,11/21/19 11:03,"294 11th St, Atlanta, GA 30301" +288856,Macbook Pro Laptop,1,1700,11/14/19 12:20,"199 Lakeview St, New York City, NY 10001" +288857,AAA Batteries (4-pack),1,2.99,11/01/19 12:43,"246 Forest St, San Francisco, CA 94016" +288858,ThinkPad Laptop,1,999.99,11/19/19 11:04,"507 7th St, San Francisco, CA 94016" +288859,AA Batteries (4-pack),2,3.84,11/06/19 09:26,"223 12th St, San Francisco, CA 94016" +288860,AAA Batteries (4-pack),1,2.99,11/16/19 14:59,"11 Wilson St, Austin, TX 73301" +288861,Lightning Charging Cable,1,14.95,11/22/19 20:43,"356 Chestnut St, New York City, NY 10001" +288862,AA Batteries (4-pack),3,3.84,11/14/19 12:21,"671 7th St, Dallas, TX 75001" +288863,AA Batteries (4-pack),1,3.84,11/21/19 17:41,"696 Walnut St, Boston, MA 02215" +288864,AAA Batteries (4-pack),1,2.99,11/03/19 11:39,"69 7th St, San Francisco, CA 94016" +288864,Lightning Charging Cable,3,14.95,11/03/19 11:39,"69 7th St, San Francisco, CA 94016" +288865,USB-C Charging Cable,3,11.95,11/17/19 11:35,"695 South St, Atlanta, GA 30301" +288866,AA Batteries (4-pack),1,3.84,11/07/19 19:43,"665 Jackson St, Dallas, TX 75001" +288867,Flatscreen TV,1,300,11/26/19 09:53,"891 11th St, Los Angeles, CA 90001" +288868,27in FHD Monitor,1,149.99,11/30/19 11:39,"853 Spruce St, Austin, TX 73301" +288869,AAA Batteries (4-pack),2,2.99,11/28/19 16:31,"868 Lincoln St, Los Angeles, CA 90001" +288870,AAA Batteries (4-pack),1,2.99,11/26/19 14:49,"363 Center St, San Francisco, CA 94016" +288871,Apple Airpods Headphones,1,150,11/30/19 12:03,"40 Meadow St, Portland, OR 97035" +288872,Lightning Charging Cable,1,14.95,11/24/19 15:35,"968 South St, New York City, NY 10001" +,,,,, +288873,Lightning Charging Cable,1,14.95,11/21/19 11:58,"991 10th St, Atlanta, GA 30301" +288874,Wired Headphones,1,11.99,11/29/19 00:23,"129 Highland St, Dallas, TX 75001" +288875,Bose SoundSport Headphones,1,99.99,11/09/19 13:09,"866 Park St, San Francisco, CA 94016" +288876,Vareebadd Phone,1,400,11/13/19 02:39,"580 North St, Boston, MA 02215" +288876,USB-C Charging Cable,1,11.95,11/13/19 02:39,"580 North St, Boston, MA 02215" +288877,Wired Headphones,1,11.99,11/29/19 19:02,"262 Highland St, Los Angeles, CA 90001" +288878,27in FHD Monitor,1,149.99,11/28/19 15:17,"812 8th St, Seattle, WA 98101" +288879,Lightning Charging Cable,1,14.95,11/14/19 20:53,"148 2nd St, Atlanta, GA 30301" +288880,USB-C Charging Cable,1,11.95,11/27/19 12:24,"109 Adams St, Seattle, WA 98101" +288881,Apple Airpods Headphones,1,150,11/22/19 11:43,"414 Park St, Atlanta, GA 30301" +288882,USB-C Charging Cable,1,11.95,11/04/19 23:25,"513 Meadow St, Portland, OR 97035" +288883,AA Batteries (4-pack),1,3.84,11/14/19 09:29,"774 Johnson St, New York City, NY 10001" +288884,34in Ultrawide Monitor,1,379.99,11/14/19 01:47,"139 Willow St, Boston, MA 02215" +288885,34in Ultrawide Monitor,1,379.99,11/20/19 19:20,"726 Washington St, New York City, NY 10001" +288886,Wired Headphones,1,11.99,11/21/19 08:18,"459 1st St, Austin, TX 73301" +288886,34in Ultrawide Monitor,1,379.99,11/21/19 08:18,"459 1st St, Austin, TX 73301" +288887,Bose SoundSport Headphones,1,99.99,11/11/19 18:54,"692 West St, Seattle, WA 98101" +288888,Bose SoundSport Headphones,1,99.99,11/28/19 16:41,"834 Lake St, Los Angeles, CA 90001" +288889,Apple Airpods Headphones,1,150,11/09/19 07:08,"788 14th St, New York City, NY 10001" +288890,iPhone,1,700,11/30/19 23:03,"607 Meadow St, Los Angeles, CA 90001" +288891,Lightning Charging Cable,1,14.95,11/28/19 23:03,"690 Ridge St, Portland, OR 97035" +288891,Lightning Charging Cable,1,14.95,11/28/19 23:03,"690 Ridge St, Portland, OR 97035" +288892,AAA Batteries (4-pack),1,2.99,11/21/19 11:50,"287 2nd St, Los Angeles, CA 90001" +288893,Google Phone,1,600,11/12/19 17:10,"354 Forest St, Portland, OR 97035" +288893,USB-C Charging Cable,1,11.95,11/12/19 17:10,"354 Forest St, Portland, OR 97035" +288894,Wired Headphones,1,11.99,11/22/19 00:14,"492 4th St, San Francisco, CA 94016" +288895,27in 4K Gaming Monitor,1,389.99,11/28/19 13:38,"492 Wilson St, Los Angeles, CA 90001" +288896,ThinkPad Laptop,1,999.99,11/01/19 22:45,"90 Cedar St, New York City, NY 10001" +288897,Google Phone,1,600,11/24/19 22:38,"573 1st St, Dallas, TX 75001" +288898,27in 4K Gaming Monitor,1,389.99,11/27/19 16:02,"77 4th St, Seattle, WA 98101" +288899,iPhone,1,700,11/13/19 22:27,"909 Maple St, New York City, NY 10001" +288900,AAA Batteries (4-pack),1,2.99,11/30/19 15:09,"802 Center St, San Francisco, CA 94016" +288901,iPhone,1,700,11/11/19 16:04,"400 River St, Los Angeles, CA 90001" +288902,27in FHD Monitor,1,149.99,11/27/19 16:20,"453 Lakeview St, Seattle, WA 98101" +288903,Apple Airpods Headphones,1,150,11/15/19 09:01,"796 Wilson St, Seattle, WA 98101" +288904,Apple Airpods Headphones,1,150,11/17/19 10:07,"836 1st St, Boston, MA 02215" +288905,Lightning Charging Cable,1,14.95,11/19/19 14:55,"887 Highland St, Los Angeles, CA 90001" +288906,Lightning Charging Cable,1,14.95,11/15/19 06:47,"63 Lincoln St, Boston, MA 02215" +288907,20in Monitor,1,109.99,11/25/19 20:22,"832 7th St, San Francisco, CA 94016" +288908,Wired Headphones,1,11.99,11/20/19 17:54,"384 Forest St, Atlanta, GA 30301" +288909,AA Batteries (4-pack),1,3.84,11/29/19 19:42,"340 Lakeview St, Seattle, WA 98101" +288910,AAA Batteries (4-pack),1,2.99,11/13/19 14:08,"973 Sunset St, San Francisco, CA 94016" +288911,Google Phone,1,600,11/13/19 17:53,"211 Wilson St, Los Angeles, CA 90001" +288911,USB-C Charging Cable,2,11.95,11/13/19 17:53,"211 Wilson St, Los Angeles, CA 90001" +288912,27in 4K Gaming Monitor,1,389.99,11/01/19 18:31,"915 South St, New York City, NY 10001" +288913,Wired Headphones,1,11.99,11/28/19 09:12,"462 Johnson St, New York City, NY 10001" +288914,Wired Headphones,1,11.99,11/09/19 16:48,"533 Forest St, Dallas, TX 75001" +288915,Bose SoundSport Headphones,1,99.99,11/11/19 17:45,"435 Sunset St, San Francisco, CA 94016" +288915,AAA Batteries (4-pack),1,2.99,11/11/19 17:45,"435 Sunset St, San Francisco, CA 94016" +288916,Lightning Charging Cable,1,14.95,11/18/19 13:59,"365 Main St, Boston, MA 02215" +288917,Bose SoundSport Headphones,1,99.99,11/02/19 20:38,"442 Washington St, New York City, NY 10001" +288918,Bose SoundSport Headphones,1,99.99,11/14/19 03:37,"348 Church St, Boston, MA 02215" +288919,34in Ultrawide Monitor,1,379.99,11/17/19 20:47,"510 Elm St, New York City, NY 10001" +288920,iPhone,1,700,11/07/19 12:29,"526 8th St, New York City, NY 10001" +288920,Lightning Charging Cable,1,14.95,11/07/19 12:29,"526 8th St, New York City, NY 10001" +288921,Macbook Pro Laptop,1,1700,11/03/19 19:07,"389 Elm St, Portland, ME 04101" +288922,Flatscreen TV,1,300,11/04/19 14:18,"551 Lakeview St, San Francisco, CA 94016" +288923,Apple Airpods Headphones,1,150,11/27/19 13:02,"935 North St, Los Angeles, CA 90001" +288924,Bose SoundSport Headphones,1,99.99,11/18/19 15:35,"827 1st St, Dallas, TX 75001" +288925,Bose SoundSport Headphones,1,99.99,11/05/19 12:46,"701 4th St, Atlanta, GA 30301" +288926,Wired Headphones,1,11.99,11/05/19 09:15,"113 2nd St, Boston, MA 02215" +288927,34in Ultrawide Monitor,1,379.99,11/05/19 00:44,"652 Sunset St, San Francisco, CA 94016" +288928,AAA Batteries (4-pack),1,2.99,11/14/19 13:56,"57 1st St, Boston, MA 02215" +288929,Macbook Pro Laptop,1,1700,11/02/19 22:16,"842 Forest St, Boston, MA 02215" +288930,Lightning Charging Cable,2,14.95,11/10/19 22:03,"25 Cherry St, San Francisco, CA 94016" +288931,Bose SoundSport Headphones,1,99.99,11/07/19 17:32,"871 West St, San Francisco, CA 94016" +288932,LG Dryer,1,600.0,11/06/19 10:05,"564 14th St, Los Angeles, CA 90001" +288933,USB-C Charging Cable,1,11.95,11/20/19 00:04,"573 Lincoln St, San Francisco, CA 94016" +288934,27in FHD Monitor,1,149.99,11/07/19 16:51,"503 Jefferson St, Seattle, WA 98101" +288935,USB-C Charging Cable,2,11.95,11/06/19 15:23,"645 Church St, Atlanta, GA 30301" +288936,Apple Airpods Headphones,1,150,11/23/19 18:17,"328 Wilson St, Boston, MA 02215" +288937,Vareebadd Phone,1,400,11/22/19 22:24,"567 Dogwood St, San Francisco, CA 94016" +288938,ThinkPad Laptop,1,999.99,11/15/19 14:09,"505 Chestnut St, Atlanta, GA 30301" +288939,AA Batteries (4-pack),1,3.84,11/05/19 14:24,"271 Elm St, Portland, OR 97035" +288940,AAA Batteries (4-pack),1,2.99,11/24/19 10:43,"237 Ridge St, Atlanta, GA 30301" +288941,Wired Headphones,1,11.99,11/09/19 16:24,"810 12th St, Los Angeles, CA 90001" +288942,Lightning Charging Cable,1,14.95,11/09/19 12:09,"255 North St, San Francisco, CA 94016" +288943,34in Ultrawide Monitor,1,379.99,11/17/19 23:14,"685 Hill St, Portland, OR 97035" +288944,Lightning Charging Cable,1,14.95,11/01/19 19:46,"770 Lake St, Boston, MA 02215" +288945,Lightning Charging Cable,1,14.95,11/13/19 21:14,"469 South St, Austin, TX 73301" +288946,AA Batteries (4-pack),3,3.84,11/17/19 19:12,"730 Ridge St, Los Angeles, CA 90001" +288947,Flatscreen TV,1,300,11/09/19 20:24,"59 Jefferson St, San Francisco, CA 94016" +288948,Wired Headphones,1,11.99,11/02/19 20:38,"509 Park St, Seattle, WA 98101" +288949,Lightning Charging Cable,1,14.95,11/27/19 13:23,"111 9th St, San Francisco, CA 94016" +288950,Wired Headphones,2,11.99,11/08/19 16:26,"586 River St, Atlanta, GA 30301" +288951,Lightning Charging Cable,1,14.95,11/02/19 20:27,"383 8th St, Los Angeles, CA 90001" +288952,Apple Airpods Headphones,1,150,11/05/19 17:40,"748 11th St, Dallas, TX 75001" +288953,AA Batteries (4-pack),1,3.84,11/11/19 20:12,"423 Cherry St, Los Angeles, CA 90001" +288954,Bose SoundSport Headphones,1,99.99,11/04/19 09:38,"775 West St, San Francisco, CA 94016" +288955,Lightning Charging Cable,1,14.95,11/09/19 21:57,"561 Hill St, Los Angeles, CA 90001" +288956,Bose SoundSport Headphones,1,99.99,11/18/19 22:30,"628 Madison St, Atlanta, GA 30301" +288957,AA Batteries (4-pack),1,3.84,11/17/19 22:42,"909 Adams St, Portland, OR 97035" +288958,USB-C Charging Cable,2,11.95,11/22/19 18:11,"176 Dogwood St, Seattle, WA 98101" +288959,Google Phone,1,600,11/06/19 22:50,"338 Wilson St, New York City, NY 10001" +288959,USB-C Charging Cable,1,11.95,11/06/19 22:50,"338 Wilson St, New York City, NY 10001" +288960,AA Batteries (4-pack),1,3.84,11/05/19 04:31,"654 9th St, Portland, OR 97035" +288961,34in Ultrawide Monitor,1,379.99,11/18/19 19:34,"245 Washington St, Seattle, WA 98101" +288962,USB-C Charging Cable,1,11.95,11/24/19 11:50,"81 West St, Los Angeles, CA 90001" +288963,Apple Airpods Headphones,1,150,11/29/19 08:15,"793 Hickory St, San Francisco, CA 94016" +288964,AAA Batteries (4-pack),2,2.99,11/22/19 23:28,"999 6th St, Seattle, WA 98101" +288965,AA Batteries (4-pack),1,3.84,11/13/19 10:16,"647 Willow St, Los Angeles, CA 90001" +288966,Bose SoundSport Headphones,1,99.99,11/20/19 13:27,"798 Chestnut St, Atlanta, GA 30301" +288967,Flatscreen TV,1,300,11/19/19 12:45,"685 Elm St, Los Angeles, CA 90001" +288968,Wired Headphones,1,11.99,11/05/19 16:40,"41 7th St, San Francisco, CA 94016" +288969,27in FHD Monitor,1,149.99,11/07/19 19:45,"453 Lincoln St, San Francisco, CA 94016" +288970,AA Batteries (4-pack),1,3.84,11/09/19 18:29,"744 Sunset St, New York City, NY 10001" +288971,USB-C Charging Cable,1,11.95,11/02/19 01:47,"836 Spruce St, Dallas, TX 75001" +288972,Apple Airpods Headphones,1,150,11/18/19 13:14,"788 Willow St, San Francisco, CA 94016" +288973,Lightning Charging Cable,1,14.95,11/26/19 21:31,"579 Pine St, Dallas, TX 75001" +288974,AA Batteries (4-pack),1,3.84,11/23/19 22:18,"710 10th St, Portland, OR 97035" +288975,Apple Airpods Headphones,1,150,11/27/19 14:40,"594 Sunset St, New York City, NY 10001" +288976,Macbook Pro Laptop,1,1700,11/26/19 23:31,"389 Johnson St, Dallas, TX 75001" +288977,AAA Batteries (4-pack),1,2.99,11/19/19 17:42,"980 South St, Boston, MA 02215" +288978,Wired Headphones,1,11.99,11/27/19 12:52,"654 River St, New York City, NY 10001" +288979,Macbook Pro Laptop,1,1700,11/19/19 17:36,"810 South St, San Francisco, CA 94016" +288980,Bose SoundSport Headphones,1,99.99,11/22/19 20:00,"935 12th St, Seattle, WA 98101" +288981,Google Phone,1,600,11/19/19 02:08,"492 4th St, Atlanta, GA 30301" +288981,USB-C Charging Cable,1,11.95,11/19/19 02:08,"492 4th St, Atlanta, GA 30301" +288982,LG Washing Machine,1,600.0,11/29/19 14:27,"714 Center St, Seattle, WA 98101" +288983,USB-C Charging Cable,2,11.95,11/12/19 10:33,"404 Adams St, New York City, NY 10001" +288984,USB-C Charging Cable,1,11.95,11/25/19 16:20,"161 Spruce St, Los Angeles, CA 90001" +288985,AAA Batteries (4-pack),1,2.99,11/03/19 22:46,"550 Cedar St, Atlanta, GA 30301" +288986,Flatscreen TV,1,300,11/28/19 08:40,"742 Sunset St, Atlanta, GA 30301" +288987,Google Phone,1,600,11/12/19 09:30,"397 Walnut St, Seattle, WA 98101" +288987,Bose SoundSport Headphones,1,99.99,11/12/19 09:30,"397 Walnut St, Seattle, WA 98101" +288988,AA Batteries (4-pack),1,3.84,11/13/19 08:12,"397 Sunset St, New York City, NY 10001" +288988,USB-C Charging Cable,1,11.95,11/13/19 08:12,"397 Sunset St, New York City, NY 10001" +288989,Macbook Pro Laptop,1,1700,11/17/19 17:55,"531 South St, San Francisco, CA 94016" +288990,27in 4K Gaming Monitor,1,389.99,11/29/19 19:52,"761 Hill St, Boston, MA 02215" +288991,USB-C Charging Cable,1,11.95,11/04/19 08:56,"187 Wilson St, Austin, TX 73301" +288992,iPhone,1,700,11/08/19 17:26,"493 Park St, San Francisco, CA 94016" +288993,iPhone,1,700,11/12/19 19:42,"560 Lakeview St, Dallas, TX 75001" +288993,Wired Headphones,1,11.99,11/12/19 19:42,"560 Lakeview St, Dallas, TX 75001" +288994,AA Batteries (4-pack),1,3.84,11/07/19 09:15,"749 Ridge St, Boston, MA 02215" +288995,Wired Headphones,1,11.99,11/24/19 16:24,"385 Cherry St, New York City, NY 10001" +288996,AA Batteries (4-pack),1,3.84,11/21/19 19:01,"905 Hickory St, Seattle, WA 98101" +288997,AAA Batteries (4-pack),1,2.99,11/07/19 23:52,"471 Elm St, Los Angeles, CA 90001" +288998,AAA Batteries (4-pack),1,2.99,11/14/19 10:32,"62 Chestnut St, Los Angeles, CA 90001" +288999,Lightning Charging Cable,1,14.95,11/27/19 20:32,"866 Sunset St, San Francisco, CA 94016" +288999,AAA Batteries (4-pack),1,2.99,11/27/19 20:32,"866 Sunset St, San Francisco, CA 94016" +289000,Flatscreen TV,1,300,11/13/19 21:03,"124 4th St, Austin, TX 73301" +289001,27in FHD Monitor,1,149.99,11/26/19 14:53,"864 Hickory St, Dallas, TX 75001" +289002,AA Batteries (4-pack),1,3.84,11/10/19 15:04,"776 Elm St, Los Angeles, CA 90001" +289003,AA Batteries (4-pack),1,3.84,11/21/19 21:23,"895 Willow St, Los Angeles, CA 90001" +289004,27in FHD Monitor,1,149.99,11/30/19 17:01,"452 Pine St, New York City, NY 10001" +289005,Lightning Charging Cable,1,14.95,11/22/19 10:00,"357 Madison St, Austin, TX 73301" +289006,Lightning Charging Cable,1,14.95,11/12/19 16:29,"973 12th St, San Francisco, CA 94016" +289007,Macbook Pro Laptop,1,1700,11/30/19 09:40,"609 Hill St, Los Angeles, CA 90001" +289008,27in FHD Monitor,1,149.99,11/27/19 09:50,"409 South St, Portland, OR 97035" +289009,Bose SoundSport Headphones,1,99.99,11/20/19 17:24,"159 11th St, New York City, NY 10001" +289009,20in Monitor,1,109.99,11/20/19 17:24,"159 11th St, New York City, NY 10001" +289010,Lightning Charging Cable,1,14.95,11/14/19 09:40,"509 Highland St, Boston, MA 02215" +289011,Apple Airpods Headphones,1,150,11/01/19 16:42,"437 Maple St, Portland, OR 97035" +289012,Apple Airpods Headphones,1,150,11/23/19 10:42,"889 Main St, San Francisco, CA 94016" +289012,27in 4K Gaming Monitor,1,389.99,11/23/19 10:42,"889 Main St, San Francisco, CA 94016" +289013,Bose SoundSport Headphones,1,99.99,11/29/19 09:35,"790 5th St, Atlanta, GA 30301" +289014,27in 4K Gaming Monitor,1,389.99,11/16/19 12:42,"513 Park St, Seattle, WA 98101" +289015,27in FHD Monitor,1,149.99,11/10/19 16:24,"534 5th St, San Francisco, CA 94016" +289016,Apple Airpods Headphones,1,150,11/27/19 20:09,"158 Meadow St, New York City, NY 10001" +289017,Lightning Charging Cable,2,14.95,11/07/19 20:11,"911 1st St, Seattle, WA 98101" +289018,USB-C Charging Cable,1,11.95,11/03/19 10:51,"251 9th St, Atlanta, GA 30301" +289019,Lightning Charging Cable,1,14.95,11/26/19 13:21,"6 5th St, Dallas, TX 75001" +289020,Bose SoundSport Headphones,1,99.99,11/23/19 10:29,"850 Dogwood St, San Francisco, CA 94016" +289021,Google Phone,1,600,11/04/19 09:36,"65 Ridge St, New York City, NY 10001" +289022,USB-C Charging Cable,1,11.95,11/01/19 04:07,"676 Wilson St, New York City, NY 10001" +289023,27in FHD Monitor,1,149.99,11/28/19 10:03,"213 10th St, San Francisco, CA 94016" +289024,USB-C Charging Cable,1,11.95,11/03/19 11:35,"310 14th St, San Francisco, CA 94016" +289025,ThinkPad Laptop,1,999.99,11/21/19 21:30,"391 Lake St, Seattle, WA 98101" +289026,34in Ultrawide Monitor,1,379.99,11/26/19 10:56,"564 11th St, Seattle, WA 98101" +289027,Vareebadd Phone,1,400,11/15/19 22:05,"49 Willow St, Los Angeles, CA 90001" +289028,Bose SoundSport Headphones,1,99.99,11/26/19 09:12,"465 10th St, Los Angeles, CA 90001" +289029,Google Phone,1,600,11/04/19 21:08,"165 6th St, Austin, TX 73301" +289030,Bose SoundSport Headphones,1,99.99,11/11/19 19:31,"640 Center St, Los Angeles, CA 90001" +289031,AAA Batteries (4-pack),2,2.99,11/06/19 22:32,"669 4th St, New York City, NY 10001" +289032,Lightning Charging Cable,1,14.95,11/23/19 18:35,"653 Maple St, Los Angeles, CA 90001" +289033,Wired Headphones,1,11.99,11/28/19 21:23,"261 Lincoln St, Seattle, WA 98101" +289034,AA Batteries (4-pack),2,3.84,11/27/19 17:28,"374 Wilson St, San Francisco, CA 94016" +289035,Wired Headphones,1,11.99,11/19/19 18:52,"118 7th St, Seattle, WA 98101" +289036,Google Phone,1,600,11/12/19 18:42,"185 Willow St, San Francisco, CA 94016" +289037,Bose SoundSport Headphones,1,99.99,11/03/19 14:53,"71 Lincoln St, Boston, MA 02215" +289038,Wired Headphones,1,11.99,11/15/19 15:14,"262 Walnut St, San Francisco, CA 94016" +289039,20in Monitor,1,109.99,11/30/19 11:13,"765 Hill St, Los Angeles, CA 90001" +289040,AAA Batteries (4-pack),1,2.99,11/16/19 20:19,"790 Sunset St, Los Angeles, CA 90001" +289041,Google Phone,1,600,11/23/19 11:50,"754 Jefferson St, San Francisco, CA 94016" +289041,Wired Headphones,1,11.99,11/23/19 11:50,"754 Jefferson St, San Francisco, CA 94016" +289042,AA Batteries (4-pack),1,3.84,11/16/19 13:51,"237 Ridge St, San Francisco, CA 94016" +289043,Lightning Charging Cable,1,14.95,11/24/19 09:43,"746 11th St, San Francisco, CA 94016" +289044,Bose SoundSport Headphones,1,99.99,11/27/19 15:51,"953 Park St, San Francisco, CA 94016" +289045,AAA Batteries (4-pack),2,2.99,11/29/19 20:24,"295 Walnut St, San Francisco, CA 94016" +289046,Lightning Charging Cable,1,14.95,11/01/19 10:43,"650 Chestnut St, San Francisco, CA 94016" +289047,Bose SoundSport Headphones,1,99.99,11/03/19 13:58,"465 South St, Austin, TX 73301" +289048,Vareebadd Phone,1,400,11/02/19 07:03,"171 Jefferson St, Seattle, WA 98101" +289049,Apple Airpods Headphones,1,150,11/30/19 12:32,"146 13th St, New York City, NY 10001" +289050,Flatscreen TV,1,300,11/09/19 19:55,"423 Dogwood St, San Francisco, CA 94016" +289051,Bose SoundSport Headphones,1,99.99,11/15/19 23:41,"489 Spruce St, Boston, MA 02215" +289052,Lightning Charging Cable,1,14.95,11/22/19 19:03,"293 Sunset St, Los Angeles, CA 90001" +289053,Bose SoundSport Headphones,1,99.99,11/28/19 11:42,"41 6th St, Seattle, WA 98101" +289054,Wired Headphones,1,11.99,11/18/19 16:42,"668 6th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +289055,20in Monitor,1,109.99,11/05/19 10:02,"594 Lincoln St, Portland, OR 97035" +289056,Wired Headphones,1,11.99,11/23/19 20:13,"42 South St, Atlanta, GA 30301" +289057,Wired Headphones,1,11.99,11/24/19 12:36,"47 5th St, San Francisco, CA 94016" +289058,34in Ultrawide Monitor,1,379.99,11/02/19 14:30,"376 Main St, Boston, MA 02215" +289059,iPhone,1,700,11/10/19 20:51,"94 Washington St, Atlanta, GA 30301" +289060,Wired Headphones,1,11.99,11/02/19 09:58,"712 Pine St, Los Angeles, CA 90001" +289061,Lightning Charging Cable,1,14.95,11/25/19 22:34,"188 Park St, San Francisco, CA 94016" +289062,27in FHD Monitor,1,149.99,11/19/19 15:48,"216 6th St, Boston, MA 02215" +289063,AA Batteries (4-pack),2,3.84,11/06/19 08:49,"64 Willow St, Los Angeles, CA 90001" +289064,USB-C Charging Cable,1,11.95,11/09/19 17:23,"257 Lakeview St, San Francisco, CA 94016" +289065,AA Batteries (4-pack),1,3.84,11/09/19 10:43,"723 River St, New York City, NY 10001" +289066,Flatscreen TV,1,300,11/22/19 19:30,"376 13th St, Los Angeles, CA 90001" +289067,Lightning Charging Cable,1,14.95,11/09/19 11:23,"857 5th St, Atlanta, GA 30301" +289068,34in Ultrawide Monitor,1,379.99,11/19/19 15:19,"637 Wilson St, Boston, MA 02215" +289069,USB-C Charging Cable,1,11.95,11/28/19 13:10,"249 5th St, San Francisco, CA 94016" +289070,Apple Airpods Headphones,1,150,11/21/19 20:54,"956 Forest St, Boston, MA 02215" +289071,Wired Headphones,1,11.99,11/30/19 22:07,"42 River St, Seattle, WA 98101" +289072,Macbook Pro Laptop,1,1700,11/24/19 22:00,"798 North St, Austin, TX 73301" +289073,34in Ultrawide Monitor,1,379.99,11/07/19 23:41,"966 Spruce St, Los Angeles, CA 90001" +289074,Macbook Pro Laptop,1,1700,11/03/19 20:39,"494 Forest St, San Francisco, CA 94016" +289075,AAA Batteries (4-pack),2,2.99,11/22/19 15:20,"471 Center St, Dallas, TX 75001" +289076,AAA Batteries (4-pack),1,2.99,11/23/19 09:49,"567 7th St, San Francisco, CA 94016" +289077,27in FHD Monitor,1,149.99,11/20/19 08:26,"955 13th St, San Francisco, CA 94016" +289078,27in 4K Gaming Monitor,1,389.99,11/05/19 13:16,"457 Lake St, Portland, OR 97035" +289079,Lightning Charging Cable,1,14.95,11/13/19 16:53,"397 Maple St, San Francisco, CA 94016" +289080,Wired Headphones,1,11.99,11/22/19 16:17,"250 Hill St, San Francisco, CA 94016" +289081,ThinkPad Laptop,1,999.99,11/22/19 12:23,"208 Sunset St, San Francisco, CA 94016" +289082,AAA Batteries (4-pack),2,2.99,11/30/19 14:34,"256 Adams St, Dallas, TX 75001" +289083,Vareebadd Phone,1,400,11/20/19 15:39,"149 Center St, San Francisco, CA 94016" +289084,Wired Headphones,1,11.99,11/24/19 13:28,"835 Johnson St, Los Angeles, CA 90001" +289085,Wired Headphones,1,11.99,11/05/19 07:11,"362 South St, San Francisco, CA 94016" +289086,AAA Batteries (4-pack),1,2.99,11/30/19 10:07,"814 Cherry St, Atlanta, GA 30301" +289087,AA Batteries (4-pack),1,3.84,11/16/19 20:05,"155 6th St, New York City, NY 10001" +289088,Bose SoundSport Headphones,1,99.99,11/01/19 13:55,"804 Main St, San Francisco, CA 94016" +289089,Lightning Charging Cable,1,14.95,11/03/19 12:42,"678 7th St, Portland, OR 97035" +289090,20in Monitor,1,109.99,11/17/19 12:59,"527 Lakeview St, San Francisco, CA 94016" +289091,20in Monitor,1,109.99,11/30/19 17:13,"447 Cherry St, San Francisco, CA 94016" +289092,Flatscreen TV,1,300,11/21/19 18:21,"984 Lake St, New York City, NY 10001" +289093,iPhone,1,700,11/28/19 05:36,"619 5th St, Portland, OR 97035" +289093,Apple Airpods Headphones,1,150,11/28/19 05:36,"619 5th St, Portland, OR 97035" +289094,USB-C Charging Cable,1,11.95,11/16/19 18:33,"860 North St, New York City, NY 10001" +289095,20in Monitor,1,109.99,11/08/19 18:42,"811 9th St, San Francisco, CA 94016" +289096,Macbook Pro Laptop,1,1700,11/30/19 13:06,"658 Hickory St, Los Angeles, CA 90001" +289096,27in 4K Gaming Monitor,1,389.99,11/30/19 13:06,"658 Hickory St, Los Angeles, CA 90001" +289097,USB-C Charging Cable,1,11.95,11/13/19 20:20,"777 Center St, San Francisco, CA 94016" +289098,Apple Airpods Headphones,1,150,11/24/19 11:02,"83 14th St, Austin, TX 73301" +289099,ThinkPad Laptop,1,999.99,11/04/19 20:32,"187 9th St, New York City, NY 10001" +289100,Google Phone,1,600,11/18/19 19:45,"561 Highland St, Atlanta, GA 30301" +289101,Bose SoundSport Headphones,1,99.99,11/28/19 11:23,"498 Hickory St, Los Angeles, CA 90001" +289102,Wired Headphones,1,11.99,11/20/19 09:11,"283 Highland St, Seattle, WA 98101" +289103,AAA Batteries (4-pack),1,2.99,11/02/19 00:44,"576 12th St, San Francisco, CA 94016" +289104,AAA Batteries (4-pack),1,2.99,11/26/19 13:48,"494 Park St, San Francisco, CA 94016" +289105,34in Ultrawide Monitor,1,379.99,11/10/19 15:07,"840 Pine St, Seattle, WA 98101" +289106,AAA Batteries (4-pack),1,2.99,11/18/19 17:24,"313 Lake St, New York City, NY 10001" +289107,LG Washing Machine,1,600.0,11/14/19 19:05,"856 1st St, New York City, NY 10001" +289108,Lightning Charging Cable,1,14.95,11/10/19 15:35,"956 11th St, New York City, NY 10001" +289109,USB-C Charging Cable,1,11.95,11/20/19 20:23,"376 Jefferson St, Los Angeles, CA 90001" +289110,Apple Airpods Headphones,1,150,11/30/19 09:40,"572 Ridge St, San Francisco, CA 94016" +289111,USB-C Charging Cable,1,11.95,11/03/19 09:35,"412 Jackson St, Atlanta, GA 30301" +289112,AAA Batteries (4-pack),1,2.99,11/19/19 10:33,"994 9th St, Dallas, TX 75001" +289113,Wired Headphones,1,11.99,11/17/19 11:40,"7 Main St, San Francisco, CA 94016" +289113,Lightning Charging Cable,1,14.95,11/17/19 11:40,"7 Main St, San Francisco, CA 94016" +289114,iPhone,1,700,11/29/19 20:26,"684 12th St, Los Angeles, CA 90001" +289115,USB-C Charging Cable,1,11.95,11/24/19 08:02,"4 1st St, Dallas, TX 75001" +289116,Lightning Charging Cable,1,14.95,11/27/19 09:31,"580 12th St, Seattle, WA 98101" +289117,Wired Headphones,2,11.99,11/18/19 00:28,"581 Jackson St, Dallas, TX 75001" +289118,Bose SoundSport Headphones,1,99.99,11/13/19 22:03,"989 Highland St, San Francisco, CA 94016" +289119,iPhone,1,700,11/01/19 13:05,"264 Lake St, Dallas, TX 75001" +289119,Lightning Charging Cable,1,14.95,11/01/19 13:05,"264 Lake St, Dallas, TX 75001" +289120,Lightning Charging Cable,1,14.95,11/23/19 19:21,"857 10th St, New York City, NY 10001" +289121,USB-C Charging Cable,2,11.95,11/14/19 00:07,"368 Wilson St, Boston, MA 02215" +289122,USB-C Charging Cable,2,11.95,11/15/19 17:06,"524 South St, Atlanta, GA 30301" +289123,Google Phone,1,600,11/06/19 03:15,"972 Lakeview St, Los Angeles, CA 90001" +289123,Wired Headphones,1,11.99,11/06/19 03:15,"972 Lakeview St, Los Angeles, CA 90001" +289124,AAA Batteries (4-pack),1,2.99,11/03/19 16:21,"884 10th St, Dallas, TX 75001" +289125,27in FHD Monitor,1,149.99,11/17/19 16:53,"695 Walnut St, Boston, MA 02215" +289126,ThinkPad Laptop,1,999.99,11/17/19 12:32,"314 Cherry St, Dallas, TX 75001" +289127,Wired Headphones,1,11.99,11/14/19 23:50,"663 Forest St, New York City, NY 10001" +289128,AAA Batteries (4-pack),1,2.99,11/06/19 20:06,"395 Walnut St, San Francisco, CA 94016" +289129,27in 4K Gaming Monitor,1,389.99,11/01/19 11:43,"423 Lake St, San Francisco, CA 94016" +289130,USB-C Charging Cable,1,11.95,11/20/19 09:46,"917 13th St, Seattle, WA 98101" +289131,27in 4K Gaming Monitor,1,389.99,11/29/19 14:48,"656 4th St, Los Angeles, CA 90001" +289132,Flatscreen TV,1,300,11/16/19 15:04,"718 Willow St, Los Angeles, CA 90001" +289133,Lightning Charging Cable,1,14.95,11/04/19 02:27,"712 South St, San Francisco, CA 94016" +289134,27in 4K Gaming Monitor,1,389.99,11/13/19 15:17,"78 Johnson St, Seattle, WA 98101" +289135,34in Ultrawide Monitor,1,379.99,11/13/19 15:41,"120 Johnson St, Austin, TX 73301" +289136,AA Batteries (4-pack),1,3.84,11/22/19 00:07,"616 1st St, San Francisco, CA 94016" +289137,USB-C Charging Cable,1,11.95,11/17/19 09:35,"432 8th St, San Francisco, CA 94016" +289138,Bose SoundSport Headphones,1,99.99,11/03/19 20:09,"261 Dogwood St, San Francisco, CA 94016" +289139,AAA Batteries (4-pack),1,2.99,11/12/19 17:41,"436 Johnson St, New York City, NY 10001" +289140,27in FHD Monitor,1,149.99,11/16/19 12:00,"782 12th St, New York City, NY 10001" +289141,Apple Airpods Headphones,1,150,11/12/19 09:07,"261 Church St, Austin, TX 73301" +289142,AA Batteries (4-pack),2,3.84,11/22/19 14:37,"957 Chestnut St, New York City, NY 10001" +289143,AAA Batteries (4-pack),1,2.99,11/20/19 17:07,"716 1st St, Dallas, TX 75001" +289144,Lightning Charging Cable,1,14.95,11/18/19 06:11,"869 7th St, Portland, OR 97035" +289145,Wired Headphones,1,11.99,11/10/19 13:57,"798 Main St, Seattle, WA 98101" +289146,iPhone,1,700,11/03/19 22:28,"644 10th St, Los Angeles, CA 90001" +289147,Lightning Charging Cable,1,14.95,11/14/19 16:07,"229 11th St, New York City, NY 10001" +289148,AAA Batteries (4-pack),2,2.99,11/25/19 16:51,"164 North St, San Francisco, CA 94016" +289149,USB-C Charging Cable,1,11.95,11/13/19 21:45,"310 Jackson St, San Francisco, CA 94016" +289150,AAA Batteries (4-pack),2,2.99,11/20/19 20:18,"383 10th St, Los Angeles, CA 90001" +289151,Lightning Charging Cable,1,14.95,11/25/19 18:22,"526 Hickory St, Dallas, TX 75001" +289152,Lightning Charging Cable,1,14.95,11/11/19 04:58,"398 Lakeview St, San Francisco, CA 94016" +289153,AA Batteries (4-pack),1,3.84,11/11/19 09:50,"11 4th St, Seattle, WA 98101" +289154,iPhone,1,700,11/13/19 08:18,"893 Meadow St, Atlanta, GA 30301" +289155,USB-C Charging Cable,1,11.95,11/20/19 16:36,"772 Spruce St, Seattle, WA 98101" +289156,ThinkPad Laptop,1,999.99,11/13/19 23:52,"814 Meadow St, San Francisco, CA 94016" +289157,AA Batteries (4-pack),1,3.84,11/23/19 05:29,"696 Walnut St, San Francisco, CA 94016" +289158,USB-C Charging Cable,1,11.95,11/10/19 23:24,"901 Dogwood St, Los Angeles, CA 90001" +289159,34in Ultrawide Monitor,1,379.99,11/27/19 21:30,"769 7th St, Seattle, WA 98101" +289160,AA Batteries (4-pack),1,3.84,11/30/19 11:32,"156 Spruce St, San Francisco, CA 94016" +289161,AAA Batteries (4-pack),1,2.99,11/30/19 14:08,"194 Chestnut St, Dallas, TX 75001" +289162,Bose SoundSport Headphones,1,99.99,11/06/19 09:49,"445 Main St, Boston, MA 02215" +289163,Apple Airpods Headphones,1,150,11/19/19 19:57,"917 Washington St, San Francisco, CA 94016" +289164,Apple Airpods Headphones,1,150,11/21/19 14:06,"543 Highland St, San Francisco, CA 94016" +289165,Lightning Charging Cable,1,14.95,11/19/19 12:55,"936 Adams St, Dallas, TX 75001" +289166,AA Batteries (4-pack),1,3.84,11/20/19 08:31,"611 Pine St, Los Angeles, CA 90001" +289167,AA Batteries (4-pack),1,3.84,11/05/19 10:59,"537 Center St, Dallas, TX 75001" +289168,AAA Batteries (4-pack),1,2.99,11/15/19 11:48,"783 Highland St, New York City, NY 10001" +289169,Lightning Charging Cable,1,14.95,11/16/19 11:28,"188 9th St, Dallas, TX 75001" +289170,Apple Airpods Headphones,1,150,11/10/19 09:34,"70 4th St, Los Angeles, CA 90001" +289171,AA Batteries (4-pack),1,3.84,11/27/19 10:40,"541 Spruce St, Atlanta, GA 30301" +289172,Apple Airpods Headphones,1,150,11/13/19 09:23,"87 Jackson St, Los Angeles, CA 90001" +289173,USB-C Charging Cable,1,11.95,11/26/19 19:36,"234 10th St, Seattle, WA 98101" +289174,AA Batteries (4-pack),1,3.84,11/28/19 05:00,"306 Lakeview St, Los Angeles, CA 90001" +289175,34in Ultrawide Monitor,1,379.99,11/04/19 11:44,"242 North St, New York City, NY 10001" +289176,USB-C Charging Cable,1,11.95,11/18/19 03:41,"158 Johnson St, Los Angeles, CA 90001" +289177,Flatscreen TV,1,300,11/09/19 00:20,"374 2nd St, San Francisco, CA 94016" +289178,34in Ultrawide Monitor,1,379.99,11/26/19 08:49,"517 Cedar St, San Francisco, CA 94016" +289179,Google Phone,1,600,11/03/19 23:07,"235 Spruce St, Seattle, WA 98101" +289180,Apple Airpods Headphones,1,150,11/10/19 06:07,"364 Meadow St, New York City, NY 10001" +289181,AAA Batteries (4-pack),2,2.99,11/25/19 16:05,"977 Jackson St, San Francisco, CA 94016" +289182,Lightning Charging Cable,1,14.95,11/25/19 12:53,"716 Chestnut St, Boston, MA 02215" +289183,Macbook Pro Laptop,1,1700,11/17/19 01:35,"797 Ridge St, Los Angeles, CA 90001" +289184,USB-C Charging Cable,1,11.95,11/12/19 15:12,"134 Washington St, San Francisco, CA 94016" +289185,USB-C Charging Cable,1,11.95,11/19/19 15:13,"82 12th St, San Francisco, CA 94016" +289186,USB-C Charging Cable,2,11.95,11/26/19 16:19,"769 Adams St, Seattle, WA 98101" +289187,AA Batteries (4-pack),2,3.84,11/08/19 20:59,"151 1st St, San Francisco, CA 94016" +289188,Apple Airpods Headphones,1,150,11/27/19 19:04,"398 Jackson St, Austin, TX 73301" +289189,iPhone,1,700,11/09/19 09:24,"357 Johnson St, Dallas, TX 75001" +289190,Lightning Charging Cable,1,14.95,11/01/19 12:46,"398 8th St, Atlanta, GA 30301" +289191,USB-C Charging Cable,1,11.95,11/03/19 08:45,"118 13th St, Seattle, WA 98101" +289192,Wired Headphones,1,11.99,11/26/19 12:20,"121 Lake St, San Francisco, CA 94016" +289193,Bose SoundSport Headphones,1,99.99,11/20/19 21:57,"516 Walnut St, Los Angeles, CA 90001" +289194,Google Phone,1,600,11/02/19 11:42,"121 Walnut St, San Francisco, CA 94016" +289194,USB-C Charging Cable,1,11.95,11/02/19 11:42,"121 Walnut St, San Francisco, CA 94016" +289195,Macbook Pro Laptop,1,1700,11/17/19 20:42,"807 South St, Los Angeles, CA 90001" +289196,LG Washing Machine,1,600.0,11/11/19 18:31,"579 Chestnut St, Los Angeles, CA 90001" +289197,Wired Headphones,1,11.99,11/21/19 16:47,"624 Adams St, Boston, MA 02215" +289198,Bose SoundSport Headphones,1,99.99,11/25/19 08:25,"694 Johnson St, New York City, NY 10001" +289199,AA Batteries (4-pack),1,3.84,11/03/19 10:11,"231 1st St, Los Angeles, CA 90001" +289200,Lightning Charging Cable,1,14.95,11/10/19 12:13,"464 Maple St, Boston, MA 02215" +289201,Flatscreen TV,1,300,11/08/19 10:38,"453 Adams St, Los Angeles, CA 90001" +289202,Lightning Charging Cable,1,14.95,11/29/19 23:00,"812 North St, Boston, MA 02215" +289203,Apple Airpods Headphones,1,150,11/16/19 07:05,"642 6th St, New York City, NY 10001" +289204,Wired Headphones,1,11.99,11/23/19 07:50,"685 Washington St, New York City, NY 10001" +289205,Wired Headphones,1,11.99,11/12/19 17:51,"566 4th St, San Francisco, CA 94016" +289206,Apple Airpods Headphones,1,150,11/04/19 20:25,"330 12th St, Seattle, WA 98101" +289207,USB-C Charging Cable,1,11.95,11/15/19 16:07,"833 West St, Boston, MA 02215" +289208,Bose SoundSport Headphones,1,99.99,11/04/19 14:53,"123 Dogwood St, Portland, OR 97035" +289209,AAA Batteries (4-pack),1,2.99,11/28/19 09:27,"374 2nd St, Boston, MA 02215" +289210,Lightning Charging Cable,1,14.95,11/09/19 01:38,"23 Lake St, New York City, NY 10001" +289211,Apple Airpods Headphones,1,150,11/08/19 12:31,"846 Walnut St, San Francisco, CA 94016" +289212,AAA Batteries (4-pack),2,2.99,11/11/19 14:47,"558 Highland St, Atlanta, GA 30301" +289213,Lightning Charging Cable,1,14.95,11/04/19 05:21,"789 Cedar St, San Francisco, CA 94016" +289214,AA Batteries (4-pack),1,3.84,11/10/19 22:03,"615 10th St, Los Angeles, CA 90001" +289215,AAA Batteries (4-pack),1,2.99,11/01/19 08:23,"705 12th St, Atlanta, GA 30301" +289216,AA Batteries (4-pack),1,3.84,11/14/19 19:05,"235 Chestnut St, New York City, NY 10001" +289217,27in 4K Gaming Monitor,1,389.99,11/25/19 01:26,"860 Wilson St, San Francisco, CA 94016" +289218,Wired Headphones,1,11.99,11/07/19 16:57,"307 Dogwood St, New York City, NY 10001" +289219,Bose SoundSport Headphones,1,99.99,11/24/19 18:25,"63 Church St, New York City, NY 10001" +289220,Macbook Pro Laptop,1,1700,11/21/19 14:08,"906 Park St, New York City, NY 10001" +289221,Wired Headphones,1,11.99,11/16/19 15:31,"73 Wilson St, Atlanta, GA 30301" +289222,34in Ultrawide Monitor,1,379.99,11/17/19 08:14,"558 11th St, Boston, MA 02215" +289223,AAA Batteries (4-pack),1,2.99,11/17/19 08:44,"445 Jackson St, New York City, NY 10001" +289224,AA Batteries (4-pack),1,3.84,11/25/19 22:45,"82 Hill St, San Francisco, CA 94016" +289225,Bose SoundSport Headphones,1,99.99,11/24/19 12:39,"973 Jefferson St, Boston, MA 02215" +289226,Lightning Charging Cable,1,14.95,11/19/19 18:15,"25 South St, San Francisco, CA 94016" +289227,Apple Airpods Headphones,1,150,11/17/19 14:35,"916 14th St, San Francisco, CA 94016" +289228,Wired Headphones,1,11.99,11/11/19 07:52,"116 Willow St, Los Angeles, CA 90001" +289229,USB-C Charging Cable,1,11.95,11/04/19 21:02,"75 Park St, Boston, MA 02215" +289230,Apple Airpods Headphones,1,150,11/02/19 11:41,"905 Pine St, San Francisco, CA 94016" +289231,Wired Headphones,1,11.99,11/04/19 02:08,"657 Lakeview St, Boston, MA 02215" +289232,27in 4K Gaming Monitor,1,389.99,11/20/19 22:45,"389 River St, Austin, TX 73301" +289233,Apple Airpods Headphones,1,150,11/18/19 11:55,"521 2nd St, Seattle, WA 98101" +289234,USB-C Charging Cable,1,11.95,11/13/19 14:03,"58 Jackson St, Los Angeles, CA 90001" +289235,34in Ultrawide Monitor,1,379.99,11/30/19 07:58,"276 Willow St, New York City, NY 10001" +289236,AA Batteries (4-pack),1,3.84,11/16/19 18:08,"419 Walnut St, New York City, NY 10001" +289237,USB-C Charging Cable,1,11.95,11/15/19 20:42,"979 Adams St, San Francisco, CA 94016" +289238,AA Batteries (4-pack),1,3.84,11/05/19 21:03,"748 North St, San Francisco, CA 94016" +289239,AAA Batteries (4-pack),1,2.99,11/15/19 20:01,"37 Jefferson St, Portland, OR 97035" +289240,USB-C Charging Cable,1,11.95,11/20/19 10:34,"279 Cedar St, New York City, NY 10001" +289241,AAA Batteries (4-pack),1,2.99,11/16/19 11:46,"557 Hill St, Seattle, WA 98101" +289242,Wired Headphones,1,11.99,11/13/19 17:30,"566 11th St, San Francisco, CA 94016" +289243,Lightning Charging Cable,1,14.95,11/09/19 06:44,"491 Spruce St, Boston, MA 02215" +289244,Bose SoundSport Headphones,1,99.99,11/30/19 15:50,"334 12th St, Austin, TX 73301" +289245,AAA Batteries (4-pack),1,2.99,11/01/19 13:02,"516 Center St, Los Angeles, CA 90001" +289246,LG Washing Machine,1,600.0,11/22/19 15:18,"471 Maple St, New York City, NY 10001" +289247,Lightning Charging Cable,1,14.95,11/10/19 11:31,"928 Johnson St, Dallas, TX 75001" +289248,Bose SoundSport Headphones,1,99.99,11/16/19 09:58,"273 Cherry St, Los Angeles, CA 90001" +289249,34in Ultrawide Monitor,1,379.99,11/16/19 19:07,"309 Adams St, Los Angeles, CA 90001" +289250,LG Dryer,1,600.0,11/13/19 20:32,"576 4th St, Los Angeles, CA 90001" +289251,USB-C Charging Cable,1,11.95,11/21/19 19:43,"388 Wilson St, Portland, OR 97035" +289252,USB-C Charging Cable,1,11.95,11/30/19 19:31,"355 Center St, Boston, MA 02215" +289253,AAA Batteries (4-pack),1,2.99,11/22/19 12:55,"324 Forest St, Los Angeles, CA 90001" +289254,Macbook Pro Laptop,1,1700,11/12/19 20:19,"534 Wilson St, San Francisco, CA 94016" +289255,Macbook Pro Laptop,1,1700,11/20/19 16:08,"13 Chestnut St, New York City, NY 10001" +289256,27in FHD Monitor,1,149.99,11/30/19 09:02,"323 Lakeview St, San Francisco, CA 94016" +289257,Flatscreen TV,1,300,11/22/19 10:53,"429 Washington St, Boston, MA 02215" +289258,Lightning Charging Cable,1,14.95,11/27/19 22:52,"219 13th St, Boston, MA 02215" +289259,AAA Batteries (4-pack),1,2.99,11/12/19 06:51,"300 Lakeview St, Seattle, WA 98101" +289260,AAA Batteries (4-pack),1,2.99,11/19/19 09:39,"223 Church St, New York City, NY 10001" +289261,Macbook Pro Laptop,1,1700,11/25/19 08:17,"858 Lake St, Atlanta, GA 30301" +289262,iPhone,1,700,11/19/19 15:04,"699 Cherry St, Dallas, TX 75001" +289262,Lightning Charging Cable,1,14.95,11/19/19 15:04,"699 Cherry St, Dallas, TX 75001" +289263,USB-C Charging Cable,1,11.95,11/16/19 19:49,"20 Forest St, Los Angeles, CA 90001" +289264,USB-C Charging Cable,1,11.95,11/09/19 22:45,"889 7th St, San Francisco, CA 94016" +289265,ThinkPad Laptop,1,999.99,11/21/19 14:40,"627 Ridge St, San Francisco, CA 94016" +289266,Wired Headphones,2,11.99,11/20/19 22:07,"979 Johnson St, San Francisco, CA 94016" +289267,Apple Airpods Headphones,1,150,11/29/19 16:09,"515 Church St, San Francisco, CA 94016" +289268,iPhone,1,700,11/29/19 15:08,"735 11th St, San Francisco, CA 94016" +289269,Lightning Charging Cable,2,14.95,11/21/19 16:39,"626 Cedar St, Portland, OR 97035" +289270,AA Batteries (4-pack),1,3.84,11/28/19 18:23,"191 South St, San Francisco, CA 94016" +289271,Lightning Charging Cable,1,14.95,11/10/19 16:12,"266 Willow St, San Francisco, CA 94016" +289272,USB-C Charging Cable,2,11.95,11/22/19 20:20,"849 5th St, Los Angeles, CA 90001" +289273,Lightning Charging Cable,1,14.95,11/25/19 15:01,"412 11th St, Seattle, WA 98101" +289274,Lightning Charging Cable,1,14.95,11/08/19 20:06,"917 Lakeview St, San Francisco, CA 94016" +289275,Lightning Charging Cable,1,14.95,11/10/19 14:51,"378 Main St, New York City, NY 10001" +289276,iPhone,1,700,11/10/19 23:19,"217 13th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +289277,Lightning Charging Cable,1,14.95,11/11/19 16:45,"551 Jackson St, Atlanta, GA 30301" +289278,Apple Airpods Headphones,1,150,11/18/19 15:36,"38 Forest St, New York City, NY 10001" +289279,Bose SoundSport Headphones,1,99.99,11/20/19 20:39,"280 West St, Dallas, TX 75001" +289280,AAA Batteries (4-pack),2,2.99,11/10/19 12:06,"366 Lake St, Boston, MA 02215" +289281,AA Batteries (4-pack),1,3.84,11/08/19 22:12,"346 Spruce St, New York City, NY 10001" +289282,iPhone,1,700,11/03/19 16:27,"389 Center St, Los Angeles, CA 90001" +289283,AA Batteries (4-pack),1,3.84,11/12/19 14:23,"530 Church St, Atlanta, GA 30301" +289284,Wired Headphones,1,11.99,11/14/19 17:35,"132 Adams St, San Francisco, CA 94016" +289285,iPhone,1,700,11/05/19 13:26,"693 Lake St, New York City, NY 10001" +289286,Apple Airpods Headphones,1,150,11/02/19 12:09,"920 Center St, San Francisco, CA 94016" +289287,20in Monitor,1,109.99,11/21/19 14:38,"376 Meadow St, New York City, NY 10001" +289288,Bose SoundSport Headphones,1,99.99,11/27/19 19:26,"996 Lincoln St, San Francisco, CA 94016" +289289,Bose SoundSport Headphones,1,99.99,11/15/19 14:32,"792 Lincoln St, Seattle, WA 98101" +289290,Bose SoundSport Headphones,1,99.99,11/09/19 01:24,"548 4th St, Atlanta, GA 30301" +289291,Bose SoundSport Headphones,1,99.99,11/09/19 18:28,"938 12th St, Los Angeles, CA 90001" +289292,Google Phone,1,600,11/25/19 07:51,"728 North St, Dallas, TX 75001" +289293,Apple Airpods Headphones,1,150,11/15/19 11:42,"743 5th St, Los Angeles, CA 90001" +289294,AA Batteries (4-pack),1,3.84,11/19/19 13:42,"73 Spruce St, Boston, MA 02215" +289295,USB-C Charging Cable,1,11.95,11/30/19 06:48,"939 13th St, New York City, NY 10001" +289295,USB-C Charging Cable,1,11.95,11/30/19 06:48,"939 13th St, New York City, NY 10001" +289296,ThinkPad Laptop,1,999.99,11/07/19 14:58,"291 Lincoln St, Boston, MA 02215" +289297,USB-C Charging Cable,1,11.95,11/18/19 14:52,"343 12th St, New York City, NY 10001" +289298,Bose SoundSport Headphones,1,99.99,11/20/19 12:05,"800 Spruce St, San Francisco, CA 94016" +289299,Wired Headphones,1,11.99,11/22/19 20:14,"601 Meadow St, Seattle, WA 98101" +289300,USB-C Charging Cable,1,11.95,11/01/19 15:05,"984 Jefferson St, Dallas, TX 75001" +289301,USB-C Charging Cable,1,11.95,11/28/19 22:23,"316 Center St, San Francisco, CA 94016" +289302,Wired Headphones,1,11.99,11/08/19 14:57,"73 11th St, Austin, TX 73301" +289303,USB-C Charging Cable,1,11.95,11/03/19 10:59,"390 5th St, Seattle, WA 98101" +289304,Wired Headphones,1,11.99,11/28/19 11:28,"342 13th St, Austin, TX 73301" +289305,Wired Headphones,1,11.99,11/20/19 17:58,"536 Jefferson St, San Francisco, CA 94016" +289306,ThinkPad Laptop,1,999.99,11/02/19 21:12,"161 South St, San Francisco, CA 94016" +289307,USB-C Charging Cable,1,11.95,11/21/19 09:55,"702 13th St, San Francisco, CA 94016" +289308,Apple Airpods Headphones,1,150,11/06/19 20:04,"578 Spruce St, San Francisco, CA 94016" +289309,Bose SoundSport Headphones,1,99.99,11/14/19 19:50,"169 Lincoln St, Atlanta, GA 30301" +289310,Wired Headphones,1,11.99,12/01/19 01:41,"459 Wilson St, Austin, TX 73301" +289311,USB-C Charging Cable,1,11.95,11/05/19 09:45,"514 Adams St, Atlanta, GA 30301" +289312,Lightning Charging Cable,1,14.95,11/22/19 01:45,"526 Spruce St, San Francisco, CA 94016" +289313,USB-C Charging Cable,1,11.95,11/03/19 12:15,"728 Madison St, New York City, NY 10001" +289314,Wired Headphones,1,11.99,11/01/19 18:39,"369 Jefferson St, Los Angeles, CA 90001" +,,,,, +289315,AAA Batteries (4-pack),1,2.99,11/26/19 11:01,"937 Chestnut St, Dallas, TX 75001" +289316,Lightning Charging Cable,1,14.95,11/25/19 18:26,"635 6th St, Seattle, WA 98101" +289317,AA Batteries (4-pack),1,3.84,11/14/19 12:16,"652 Lakeview St, San Francisco, CA 94016" +289318,USB-C Charging Cable,1,11.95,11/04/19 10:35,"143 West St, Los Angeles, CA 90001" +289319,Lightning Charging Cable,1,14.95,11/18/19 14:52,"126 Pine St, Seattle, WA 98101" +289320,AA Batteries (4-pack),1,3.84,11/10/19 10:07,"976 Adams St, San Francisco, CA 94016" +289321,iPhone,1,700,11/14/19 14:43,"348 Hickory St, San Francisco, CA 94016" +289322,Lightning Charging Cable,1,14.95,11/04/19 09:36,"157 Dogwood St, San Francisco, CA 94016" +289323,Lightning Charging Cable,1,14.95,11/22/19 12:56,"472 Ridge St, Los Angeles, CA 90001" +289324,Lightning Charging Cable,1,14.95,11/17/19 00:33,"615 Jefferson St, Los Angeles, CA 90001" +289325,ThinkPad Laptop,1,999.99,11/18/19 21:16,"256 West St, San Francisco, CA 94016" +289326,AA Batteries (4-pack),1,3.84,11/20/19 12:22,"837 Adams St, San Francisco, CA 94016" +289327,AA Batteries (4-pack),1,3.84,11/12/19 09:16,"64 Center St, Los Angeles, CA 90001" +289328,iPhone,1,700,11/16/19 08:59,"77 Lincoln St, Los Angeles, CA 90001" +289329,Lightning Charging Cable,1,14.95,11/09/19 16:31,"376 West St, Austin, TX 73301" +289330,Macbook Pro Laptop,1,1700,11/05/19 18:50,"853 Johnson St, San Francisco, CA 94016" +289331,Wired Headphones,1,11.99,11/28/19 07:59,"414 Center St, San Francisco, CA 94016" +289332,Google Phone,1,600,11/07/19 19:50,"701 13th St, Boston, MA 02215" +289333,Apple Airpods Headphones,1,150,11/16/19 10:53,"971 Johnson St, Dallas, TX 75001" +289334,AAA Batteries (4-pack),1,2.99,11/24/19 19:59,"480 Wilson St, Los Angeles, CA 90001" +289335,AA Batteries (4-pack),1,3.84,11/18/19 00:18,"18 9th St, Boston, MA 02215" +289336,iPhone,1,700,11/03/19 14:07,"164 Chestnut St, San Francisco, CA 94016" +289336,Lightning Charging Cable,2,14.95,11/03/19 14:07,"164 Chestnut St, San Francisco, CA 94016" +289337,AAA Batteries (4-pack),1,2.99,11/30/19 20:01,"13 Jackson St, New York City, NY 10001" +289338,Wired Headphones,1,11.99,11/25/19 05:23,"623 Meadow St, San Francisco, CA 94016" +289339,AAA Batteries (4-pack),1,2.99,11/25/19 12:53,"139 Church St, San Francisco, CA 94016" +289340,27in 4K Gaming Monitor,1,389.99,11/03/19 21:23,"22 Highland St, Los Angeles, CA 90001" +289341,USB-C Charging Cable,1,11.95,11/12/19 21:10,"340 5th St, San Francisco, CA 94016" +289342,Lightning Charging Cable,1,14.95,11/17/19 15:33,"216 Maple St, New York City, NY 10001" +289343,Bose SoundSport Headphones,1,99.99,11/09/19 12:09,"768 2nd St, San Francisco, CA 94016" +289344,AA Batteries (4-pack),1,3.84,11/14/19 23:00,"324 Cedar St, Atlanta, GA 30301" +289345,AAA Batteries (4-pack),1,2.99,11/01/19 13:30,"506 Hickory St, Boston, MA 02215" +289346,AAA Batteries (4-pack),2,2.99,11/15/19 08:58,"656 Forest St, Los Angeles, CA 90001" +289347,Bose SoundSport Headphones,1,99.99,11/26/19 23:40,"774 10th St, San Francisco, CA 94016" +289348,Bose SoundSport Headphones,1,99.99,11/02/19 15:36,"21 Hill St, Los Angeles, CA 90001" +289349,27in FHD Monitor,1,149.99,11/01/19 16:39,"964 West St, Boston, MA 02215" +289350,Google Phone,1,600,11/26/19 16:32,"211 Forest St, New York City, NY 10001" +289350,USB-C Charging Cable,2,11.95,11/26/19 16:32,"211 Forest St, New York City, NY 10001" +289351,27in FHD Monitor,1,149.99,11/15/19 15:37,"77 11th St, Boston, MA 02215" +289352,Bose SoundSport Headphones,1,99.99,11/26/19 18:01,"23 12th St, New York City, NY 10001" +289353,27in 4K Gaming Monitor,1,389.99,11/06/19 12:05,"837 11th St, San Francisco, CA 94016" +289354,USB-C Charging Cable,1,11.95,11/24/19 07:53,"137 Main St, Los Angeles, CA 90001" +289355,Wired Headphones,1,11.99,11/11/19 20:24,"891 Lincoln St, Portland, OR 97035" +289356,Wired Headphones,1,11.99,11/17/19 12:13,"774 7th St, Atlanta, GA 30301" +289357,AA Batteries (4-pack),1,3.84,11/03/19 09:56,"64 9th St, San Francisco, CA 94016" +289358,USB-C Charging Cable,2,11.95,11/13/19 11:29,"165 Main St, San Francisco, CA 94016" +289359,Apple Airpods Headphones,1,150,11/10/19 08:32,"215 River St, Los Angeles, CA 90001" +289360,AA Batteries (4-pack),2,3.84,11/14/19 20:21,"103 Lake St, Portland, OR 97035" +289361,USB-C Charging Cable,2,11.95,11/22/19 15:13,"851 Lakeview St, Atlanta, GA 30301" +289362,Macbook Pro Laptop,1,1700,11/28/19 22:31,"136 North St, Seattle, WA 98101" +289363,AAA Batteries (4-pack),2,2.99,11/06/19 20:15,"871 Lake St, New York City, NY 10001" +289364,AA Batteries (4-pack),1,3.84,11/30/19 10:20,"474 Wilson St, Seattle, WA 98101" +289365,USB-C Charging Cable,1,11.95,11/25/19 12:24,"775 South St, Atlanta, GA 30301" +289366,AA Batteries (4-pack),1,3.84,11/28/19 16:36,"473 Ridge St, New York City, NY 10001" +289367,Bose SoundSport Headphones,1,99.99,11/23/19 12:27,"567 12th St, San Francisco, CA 94016" +289368,Vareebadd Phone,1,400,11/19/19 20:53,"499 Lake St, San Francisco, CA 94016" +289369,Lightning Charging Cable,1,14.95,11/05/19 11:56,"157 Johnson St, Atlanta, GA 30301" +289370,Wired Headphones,1,11.99,11/02/19 02:06,"816 Adams St, Dallas, TX 75001" +289371,Apple Airpods Headphones,1,150,11/25/19 10:12,"830 12th St, Atlanta, GA 30301" +289372,AAA Batteries (4-pack),1,2.99,11/01/19 13:55,"720 River St, Dallas, TX 75001" +289373,Lightning Charging Cable,1,14.95,11/12/19 00:46,"813 Jackson St, San Francisco, CA 94016" +289374,Wired Headphones,2,11.99,11/09/19 13:54,"486 Washington St, Seattle, WA 98101" +289375,iPhone,1,700,11/23/19 21:02,"547 Wilson St, Boston, MA 02215" +289376,Wired Headphones,1,11.99,11/05/19 18:42,"564 Main St, Dallas, TX 75001" +289377,Wired Headphones,1,11.99,11/02/19 00:13,"837 Jefferson St, Austin, TX 73301" +289378,Flatscreen TV,1,300,11/24/19 19:48,"983 8th St, Los Angeles, CA 90001" +289379,AA Batteries (4-pack),1,3.84,11/14/19 18:37,"198 2nd St, Atlanta, GA 30301" +289380,20in Monitor,1,109.99,11/03/19 19:00,"219 Church St, San Francisco, CA 94016" +289381,AA Batteries (4-pack),1,3.84,11/12/19 13:46,"996 Adams St, San Francisco, CA 94016" +289382,Apple Airpods Headphones,1,150,11/07/19 08:28,"959 Pine St, Los Angeles, CA 90001" +289383,Lightning Charging Cable,1,14.95,11/18/19 23:07,"58 14th St, San Francisco, CA 94016" +289384,Lightning Charging Cable,2,14.95,11/18/19 22:59,"356 Wilson St, Los Angeles, CA 90001" +289385,34in Ultrawide Monitor,1,379.99,11/03/19 12:24,"662 Dogwood St, San Francisco, CA 94016" +289386,Apple Airpods Headphones,1,150,11/10/19 11:22,"292 Dogwood St, Dallas, TX 75001" +289387,AAA Batteries (4-pack),1,2.99,11/17/19 21:28,"476 Lake St, Los Angeles, CA 90001" +289388,Lightning Charging Cable,1,14.95,11/21/19 19:34,"637 Jefferson St, Los Angeles, CA 90001" +289389,Apple Airpods Headphones,1,150,11/15/19 08:51,"450 1st St, San Francisco, CA 94016" +289390,AAA Batteries (4-pack),6,2.99,11/11/19 14:24,"209 2nd St, New York City, NY 10001" +289391,27in FHD Monitor,1,149.99,11/11/19 20:13,"180 Lincoln St, Seattle, WA 98101" +289392,Lightning Charging Cable,1,14.95,11/12/19 15:45,"308 Park St, New York City, NY 10001" +289393,AA Batteries (4-pack),1,3.84,11/30/19 12:14,"53 Meadow St, Portland, ME 04101" +289394,USB-C Charging Cable,1,11.95,11/16/19 20:19,"728 Jefferson St, Los Angeles, CA 90001" +289395,iPhone,1,700,11/12/19 09:07,"389 Sunset St, New York City, NY 10001" +289396,ThinkPad Laptop,1,999.99,11/30/19 19:29,"486 Lakeview St, San Francisco, CA 94016" +289396,USB-C Charging Cable,1,11.95,11/30/19 19:29,"486 Lakeview St, San Francisco, CA 94016" +289397,Bose SoundSport Headphones,1,99.99,11/14/19 17:51,"772 Madison St, Atlanta, GA 30301" +289398,USB-C Charging Cable,1,11.95,11/19/19 16:14,"736 Johnson St, Seattle, WA 98101" +289399,Apple Airpods Headphones,1,150,11/07/19 01:54,"429 7th St, San Francisco, CA 94016" +289400,AAA Batteries (4-pack),3,2.99,11/10/19 19:45,"466 Church St, San Francisco, CA 94016" +289400,Wired Headphones,1,11.99,11/10/19 19:45,"466 Church St, San Francisco, CA 94016" +289401,AA Batteries (4-pack),1,3.84,11/11/19 09:10,"216 1st St, Atlanta, GA 30301" +289402,USB-C Charging Cable,1,11.95,11/24/19 22:33,"256 7th St, Atlanta, GA 30301" +289403,USB-C Charging Cable,1,11.95,11/22/19 14:57,"432 14th St, San Francisco, CA 94016" +289404,USB-C Charging Cable,1,11.95,11/26/19 10:49,"732 Lincoln St, San Francisco, CA 94016" +289405,AAA Batteries (4-pack),1,2.99,11/05/19 16:05,"701 Cherry St, Los Angeles, CA 90001" +289406,27in 4K Gaming Monitor,1,389.99,11/16/19 19:30,"599 River St, Los Angeles, CA 90001" +289407,Wired Headphones,1,11.99,11/01/19 10:36,"48 Highland St, New York City, NY 10001" +289408,Macbook Pro Laptop,1,1700,11/02/19 14:52,"536 Jackson St, Dallas, TX 75001" +289409,AAA Batteries (4-pack),1,2.99,11/15/19 14:32,"43 9th St, San Francisco, CA 94016" +289410,Google Phone,1,600,11/19/19 01:51,"471 Spruce St, Austin, TX 73301" +289411,Lightning Charging Cable,1,14.95,11/27/19 08:05,"819 River St, Portland, OR 97035" +289412,27in 4K Gaming Monitor,1,389.99,11/13/19 16:39,"314 Lincoln St, Los Angeles, CA 90001" +289413,USB-C Charging Cable,1,11.95,11/08/19 16:32,"247 South St, Seattle, WA 98101" +289414,Wired Headphones,1,11.99,11/12/19 10:52,"494 Center St, Austin, TX 73301" +289415,Wired Headphones,1,11.99,11/24/19 20:58,"499 14th St, New York City, NY 10001" +289416,Wired Headphones,1,11.99,11/11/19 14:29,"366 8th St, Austin, TX 73301" +289417,AA Batteries (4-pack),2,3.84,11/06/19 17:45,"326 Willow St, San Francisco, CA 94016" +289418,AA Batteries (4-pack),1,3.84,11/20/19 08:56,"923 Adams St, Boston, MA 02215" +289419,Wired Headphones,1,11.99,11/04/19 10:17,"320 14th St, Seattle, WA 98101" +289420,Lightning Charging Cable,1,14.95,11/23/19 06:41,"217 West St, New York City, NY 10001" +289421,Lightning Charging Cable,1,14.95,11/02/19 15:19,"479 Ridge St, Portland, OR 97035" +289422,USB-C Charging Cable,1,11.95,11/02/19 20:44,"892 Spruce St, New York City, NY 10001" +289423,AA Batteries (4-pack),1,3.84,11/30/19 18:10,"895 6th St, Atlanta, GA 30301" +289424,Vareebadd Phone,1,400,11/06/19 15:15,"495 Park St, New York City, NY 10001" +289424,Wired Headphones,1,11.99,11/06/19 15:15,"495 Park St, New York City, NY 10001" +289425,27in FHD Monitor,1,149.99,11/02/19 19:30,"431 Pine St, Los Angeles, CA 90001" +289426,34in Ultrawide Monitor,1,379.99,11/26/19 15:27,"671 Cherry St, Seattle, WA 98101" +289427,27in FHD Monitor,1,149.99,11/26/19 14:01,"111 4th St, San Francisco, CA 94016" +289428,Apple Airpods Headphones,1,150,11/17/19 19:49,"992 Dogwood St, Los Angeles, CA 90001" +289429,AA Batteries (4-pack),2,3.84,11/27/19 00:41,"856 Jackson St, Boston, MA 02215" +289430,Lightning Charging Cable,1,14.95,11/25/19 13:40,"201 6th St, San Francisco, CA 94016" +289431,Google Phone,1,600,11/18/19 00:03,"547 Johnson St, Dallas, TX 75001" +289431,Wired Headphones,1,11.99,11/18/19 00:03,"547 Johnson St, Dallas, TX 75001" +289432,Lightning Charging Cable,1,14.95,11/13/19 10:07,"202 Park St, Austin, TX 73301" +289433,AA Batteries (4-pack),3,3.84,11/27/19 17:21,"995 North St, San Francisco, CA 94016" +289434,Bose SoundSport Headphones,1,99.99,11/09/19 18:43,"933 Walnut St, New York City, NY 10001" +289435,Lightning Charging Cable,1,14.95,11/23/19 11:04,"505 Center St, New York City, NY 10001" +289436,AA Batteries (4-pack),1,3.84,11/05/19 11:51,"433 14th St, Boston, MA 02215" +289437,ThinkPad Laptop,1,999.99,11/28/19 14:52,"2 Church St, San Francisco, CA 94016" +289438,USB-C Charging Cable,1,11.95,11/14/19 15:47,"242 Elm St, Boston, MA 02215" +289439,Wired Headphones,1,11.99,11/29/19 16:44,"710 4th St, Dallas, TX 75001" +289440,iPhone,1,700,11/18/19 22:34,"86 Sunset St, Los Angeles, CA 90001" +289441,USB-C Charging Cable,1,11.95,11/24/19 10:36,"553 Park St, San Francisco, CA 94016" +289442,Lightning Charging Cable,1,14.95,11/01/19 15:56,"227 Wilson St, Boston, MA 02215" +289443,Lightning Charging Cable,1,14.95,11/04/19 18:20,"39 Willow St, San Francisco, CA 94016" +289444,Flatscreen TV,1,300,11/08/19 09:46,"287 Lake St, Boston, MA 02215" +289445,Lightning Charging Cable,1,14.95,11/19/19 21:56,"838 5th St, Seattle, WA 98101" +289446,USB-C Charging Cable,1,11.95,11/21/19 11:47,"820 Lake St, Atlanta, GA 30301" +289447,Wired Headphones,1,11.99,11/12/19 20:43,"92 10th St, Seattle, WA 98101" +289448,Vareebadd Phone,1,400,11/23/19 15:58,"723 Maple St, Seattle, WA 98101" +289448,Wired Headphones,2,11.99,11/23/19 15:58,"723 Maple St, Seattle, WA 98101" +289449,Apple Airpods Headphones,1,150,11/20/19 22:40,"653 7th St, Los Angeles, CA 90001" +289450,Bose SoundSport Headphones,1,99.99,11/04/19 13:04,"255 Adams St, Dallas, TX 75001" +289451,AA Batteries (4-pack),1,3.84,11/14/19 09:18,"58 Hickory St, Los Angeles, CA 90001" +289452,34in Ultrawide Monitor,1,379.99,11/08/19 09:33,"41 1st St, San Francisco, CA 94016" +289453,AA Batteries (4-pack),1,3.84,11/24/19 18:47,"775 Elm St, Dallas, TX 75001" +289454,AA Batteries (4-pack),1,3.84,11/12/19 12:31,"248 4th St, San Francisco, CA 94016" +289455,Lightning Charging Cable,1,14.95,11/26/19 19:49,"414 Center St, San Francisco, CA 94016" +289456,27in FHD Monitor,1,149.99,11/27/19 23:36,"617 Meadow St, Atlanta, GA 30301" +289457,Macbook Pro Laptop,1,1700,11/01/19 17:17,"380 Wilson St, New York City, NY 10001" +289458,Google Phone,1,600,11/18/19 07:43,"676 Elm St, Portland, OR 97035" +289459,ThinkPad Laptop,1,999.99,11/23/19 12:29,"877 Park St, Austin, TX 73301" +289460,USB-C Charging Cable,1,11.95,11/08/19 02:21,"243 Elm St, New York City, NY 10001" +289461,AA Batteries (4-pack),1,3.84,11/26/19 18:55,"487 5th St, Seattle, WA 98101" +289462,AAA Batteries (4-pack),1,2.99,11/01/19 15:54,"320 Washington St, Boston, MA 02215" +289463,USB-C Charging Cable,1,11.95,11/02/19 13:50,"885 Sunset St, Dallas, TX 75001" +289464,27in FHD Monitor,1,149.99,11/28/19 09:07,"124 Church St, Boston, MA 02215" +289465,Apple Airpods Headphones,1,150,11/27/19 09:48,"377 Willow St, New York City, NY 10001" +289466,Lightning Charging Cable,1,14.95,11/16/19 19:08,"253 14th St, San Francisco, CA 94016" +289467,USB-C Charging Cable,1,11.95,11/04/19 11:59,"234 Pine St, New York City, NY 10001" +289468,ThinkPad Laptop,1,999.99,11/27/19 19:22,"446 Wilson St, San Francisco, CA 94016" +289469,Lightning Charging Cable,1,14.95,11/29/19 15:16,"413 13th St, New York City, NY 10001" +289470,Wired Headphones,2,11.99,11/21/19 19:17,"310 11th St, Portland, OR 97035" +289471,AA Batteries (4-pack),2,3.84,11/21/19 14:50,"200 12th St, New York City, NY 10001" +289472,AAA Batteries (4-pack),2,2.99,11/30/19 18:33,"705 Hickory St, Atlanta, GA 30301" +289473,Lightning Charging Cable,1,14.95,11/29/19 17:16,"236 Maple St, New York City, NY 10001" +289474,USB-C Charging Cable,1,11.95,11/26/19 23:07,"191 14th St, Los Angeles, CA 90001" +289475,Lightning Charging Cable,1,14.95,11/11/19 19:44,"311 South St, Dallas, TX 75001" +289476,AA Batteries (4-pack),1,3.84,11/07/19 20:35,"287 Elm St, Los Angeles, CA 90001" +289477,AA Batteries (4-pack),2,3.84,11/08/19 18:09,"461 Church St, Dallas, TX 75001" +289478,Google Phone,1,600,11/02/19 14:47,"777 Lincoln St, Seattle, WA 98101" +289478,USB-C Charging Cable,1,11.95,11/02/19 14:47,"777 Lincoln St, Seattle, WA 98101" +289479,AA Batteries (4-pack),1,3.84,11/20/19 11:09,"349 2nd St, Los Angeles, CA 90001" +289480,USB-C Charging Cable,1,11.95,11/09/19 22:25,"818 Willow St, Los Angeles, CA 90001" +289481,Apple Airpods Headphones,1,150,11/24/19 21:21,"917 South St, Boston, MA 02215" +289482,Bose SoundSport Headphones,1,99.99,11/04/19 08:12,"330 Hickory St, Boston, MA 02215" +289483,Flatscreen TV,1,300,11/30/19 18:52,"591 North St, Los Angeles, CA 90001" +289484,Apple Airpods Headphones,1,150,11/29/19 12:41,"735 2nd St, Seattle, WA 98101" +,,,,, +289485,AA Batteries (4-pack),2,3.84,11/25/19 13:13,"752 Sunset St, Austin, TX 73301" +289486,27in 4K Gaming Monitor,1,389.99,11/09/19 20:37,"958 Dogwood St, Seattle, WA 98101" +289487,27in 4K Gaming Monitor,1,389.99,11/15/19 22:03,"955 13th St, Austin, TX 73301" +289488,Flatscreen TV,1,300,11/09/19 19:30,"833 Church St, Atlanta, GA 30301" +289489,USB-C Charging Cable,2,11.95,11/11/19 19:30,"515 Maple St, Atlanta, GA 30301" +289490,USB-C Charging Cable,1,11.95,11/12/19 00:56,"483 Pine St, Los Angeles, CA 90001" +289491,AA Batteries (4-pack),2,3.84,11/24/19 13:33,"333 Forest St, San Francisco, CA 94016" +289492,AA Batteries (4-pack),1,3.84,11/17/19 01:56,"798 Walnut St, San Francisco, CA 94016" +289493,AA Batteries (4-pack),1,3.84,11/12/19 21:49,"578 Willow St, Dallas, TX 75001" +289494,iPhone,1,700,11/26/19 11:14,"254 Jefferson St, San Francisco, CA 94016" +289495,20in Monitor,1,109.99,11/04/19 00:35,"551 12th St, New York City, NY 10001" +289496,27in 4K Gaming Monitor,1,389.99,11/19/19 23:57,"578 12th St, Boston, MA 02215" +289497,USB-C Charging Cable,1,11.95,11/07/19 14:05,"491 Lakeview St, New York City, NY 10001" +,,,,, +289498,AA Batteries (4-pack),2,3.84,11/12/19 16:49,"541 Cherry St, Atlanta, GA 30301" +289499,Lightning Charging Cable,1,14.95,11/01/19 14:22,"865 Highland St, Dallas, TX 75001" +289500,USB-C Charging Cable,1,11.95,11/15/19 17:00,"523 Hill St, Los Angeles, CA 90001" +289501,Macbook Pro Laptop,1,1700,11/28/19 20:26,"844 West St, Los Angeles, CA 90001" +289502,Apple Airpods Headphones,1,150,11/03/19 09:38,"583 West St, Portland, OR 97035" +289503,Wired Headphones,1,11.99,11/07/19 00:06,"436 9th St, Seattle, WA 98101" +289504,iPhone,1,700,11/13/19 11:24,"905 Johnson St, San Francisco, CA 94016" +289505,34in Ultrawide Monitor,2,379.99,11/27/19 17:40,"68 North St, New York City, NY 10001" +289506,Bose SoundSport Headphones,1,99.99,11/25/19 07:12,"915 Jackson St, Dallas, TX 75001" +289507,AA Batteries (4-pack),1,3.84,11/12/19 22:11,"634 Spruce St, New York City, NY 10001" +289508,USB-C Charging Cable,1,11.95,11/28/19 21:53,"409 13th St, San Francisco, CA 94016" +289509,27in FHD Monitor,1,149.99,11/14/19 21:57,"929 7th St, Boston, MA 02215" +289510,AA Batteries (4-pack),1,3.84,11/14/19 15:22,"714 7th St, Atlanta, GA 30301" +289511,AAA Batteries (4-pack),1,2.99,11/21/19 10:53,"351 9th St, San Francisco, CA 94016" +289512,AA Batteries (4-pack),2,3.84,11/30/19 23:35,"444 Hickory St, Atlanta, GA 30301" +289513,Lightning Charging Cable,1,14.95,11/14/19 09:30,"542 South St, New York City, NY 10001" +289514,USB-C Charging Cable,1,11.95,11/30/19 10:48,"239 Main St, Atlanta, GA 30301" +289515,27in FHD Monitor,1,149.99,11/04/19 19:29,"656 Highland St, Seattle, WA 98101" +289516,USB-C Charging Cable,1,11.95,11/03/19 19:21,"429 Elm St, Los Angeles, CA 90001" +289517,27in FHD Monitor,1,149.99,11/03/19 14:22,"272 Chestnut St, San Francisco, CA 94016" +289518,27in FHD Monitor,1,149.99,11/09/19 14:58,"206 North St, Dallas, TX 75001" +289519,34in Ultrawide Monitor,1,379.99,11/04/19 21:22,"126 Park St, San Francisco, CA 94016" +289520,27in 4K Gaming Monitor,1,389.99,11/30/19 06:10,"745 9th St, Los Angeles, CA 90001" +289521,Flatscreen TV,1,300,11/05/19 13:01,"251 1st St, Portland, ME 04101" +289522,Apple Airpods Headphones,1,150,11/21/19 17:14,"170 Lincoln St, Los Angeles, CA 90001" +289523,27in FHD Monitor,1,149.99,11/15/19 20:26,"730 Lincoln St, San Francisco, CA 94016" +289524,AA Batteries (4-pack),1,3.84,11/06/19 20:49,"385 Washington St, Dallas, TX 75001" +289525,Lightning Charging Cable,1,14.95,11/12/19 11:48,"985 4th St, Los Angeles, CA 90001" +289526,AA Batteries (4-pack),1,3.84,11/25/19 22:26,"624 River St, San Francisco, CA 94016" +289527,USB-C Charging Cable,1,11.95,11/12/19 22:51,"609 12th St, Atlanta, GA 30301" +289528,AAA Batteries (4-pack),4,2.99,11/23/19 19:48,"847 Elm St, San Francisco, CA 94016" +289529,Bose SoundSport Headphones,1,99.99,11/01/19 08:25,"431 Lincoln St, Austin, TX 73301" +289530,AAA Batteries (4-pack),1,2.99,11/19/19 12:00,"471 Washington St, San Francisco, CA 94016" +289531,Bose SoundSport Headphones,1,99.99,11/25/19 22:42,"2 4th St, San Francisco, CA 94016" +289532,Flatscreen TV,1,300,11/07/19 17:58,"9 14th St, San Francisco, CA 94016" +289533,Apple Airpods Headphones,1,150,11/09/19 13:56,"819 6th St, Boston, MA 02215" +289534,Wired Headphones,1,11.99,11/09/19 12:11,"27 14th St, Dallas, TX 75001" +289535,34in Ultrawide Monitor,1,379.99,11/13/19 12:00,"887 8th St, Los Angeles, CA 90001" +289536,Vareebadd Phone,1,400,11/17/19 23:32,"471 South St, Portland, OR 97035" +289536,USB-C Charging Cable,1,11.95,11/17/19 23:32,"471 South St, Portland, OR 97035" +289536,Wired Headphones,1,11.99,11/17/19 23:32,"471 South St, Portland, OR 97035" +289537,Wired Headphones,2,11.99,11/09/19 20:38,"850 14th St, Atlanta, GA 30301" +289538,AA Batteries (4-pack),1,3.84,11/01/19 08:14,"442 Washington St, Austin, TX 73301" +289539,Apple Airpods Headphones,1,150,11/29/19 18:07,"930 South St, San Francisco, CA 94016" +289540,Macbook Pro Laptop,1,1700,11/24/19 18:23,"537 2nd St, Austin, TX 73301" +289541,AAA Batteries (4-pack),1,2.99,11/20/19 16:57,"877 Pine St, New York City, NY 10001" +289542,AAA Batteries (4-pack),1,2.99,11/17/19 15:41,"309 Lincoln St, Los Angeles, CA 90001" +289543,Lightning Charging Cable,1,14.95,11/18/19 12:57,"497 13th St, New York City, NY 10001" +289544,Lightning Charging Cable,1,14.95,11/17/19 18:49,"898 Lake St, Los Angeles, CA 90001" +289545,Wired Headphones,1,11.99,11/28/19 15:35,"191 Adams St, San Francisco, CA 94016" +289546,Lightning Charging Cable,1,14.95,11/07/19 09:51,"920 Walnut St, Austin, TX 73301" +289547,Google Phone,1,600,11/27/19 07:07,"96 Lake St, Seattle, WA 98101" +289548,Apple Airpods Headphones,1,150,11/05/19 10:54,"441 Ridge St, Boston, MA 02215" +289548,34in Ultrawide Monitor,1,379.99,11/05/19 10:54,"441 Ridge St, Boston, MA 02215" +289549,AA Batteries (4-pack),1,3.84,11/10/19 11:05,"462 Willow St, San Francisco, CA 94016" +289550,27in FHD Monitor,1,149.99,11/16/19 07:06,"970 Walnut St, Portland, OR 97035" +289551,Lightning Charging Cable,1,14.95,11/27/19 16:08,"97 5th St, Dallas, TX 75001" +289552,AAA Batteries (4-pack),1,2.99,11/21/19 17:07,"171 Lakeview St, Boston, MA 02215" +289553,Bose SoundSport Headphones,1,99.99,11/23/19 19:24,"856 Willow St, Los Angeles, CA 90001" +289554,iPhone,1,700,11/27/19 11:01,"847 Walnut St, San Francisco, CA 94016" +289555,Wired Headphones,1,11.99,11/02/19 18:23,"601 Walnut St, San Francisco, CA 94016" +289556,AAA Batteries (4-pack),2,2.99,11/05/19 06:38,"476 Jackson St, New York City, NY 10001" +289557,Lightning Charging Cable,1,14.95,11/26/19 14:56,"577 Hill St, Austin, TX 73301" +289558,USB-C Charging Cable,1,11.95,11/10/19 08:36,"470 Lake St, New York City, NY 10001" +289559,AA Batteries (4-pack),3,3.84,11/16/19 12:38,"866 Hickory St, Seattle, WA 98101" +289560,Lightning Charging Cable,1,14.95,11/19/19 13:21,"181 Adams St, Boston, MA 02215" +289561,USB-C Charging Cable,1,11.95,11/06/19 14:37,"561 Willow St, Boston, MA 02215" +289562,Bose SoundSport Headphones,1,99.99,11/13/19 05:52,"508 10th St, Portland, OR 97035" +289563,Wired Headphones,1,11.99,11/02/19 23:34,"160 Elm St, Seattle, WA 98101" +289564,Wired Headphones,1,11.99,11/25/19 22:30,"204 Lincoln St, New York City, NY 10001" +289565,AAA Batteries (4-pack),2,2.99,11/23/19 14:03,"79 Maple St, San Francisco, CA 94016" +289566,Lightning Charging Cable,1,14.95,11/10/19 17:49,"478 Madison St, San Francisco, CA 94016" +289567,Apple Airpods Headphones,1,150,11/07/19 03:42,"725 12th St, San Francisco, CA 94016" +289568,Lightning Charging Cable,1,14.95,11/16/19 09:13,"543 Jackson St, Boston, MA 02215" +289569,Apple Airpods Headphones,1,150,11/29/19 20:42,"563 Forest St, Austin, TX 73301" +289570,Lightning Charging Cable,1,14.95,11/02/19 17:22,"953 13th St, Atlanta, GA 30301" +289571,20in Monitor,1,109.99,11/19/19 17:05,"206 Johnson St, Atlanta, GA 30301" +289572,USB-C Charging Cable,1,11.95,11/03/19 05:56,"965 13th St, Los Angeles, CA 90001" +289573,USB-C Charging Cable,1,11.95,11/15/19 11:22,"763 Main St, Los Angeles, CA 90001" +289574,Lightning Charging Cable,1,14.95,11/04/19 12:55,"201 1st St, Dallas, TX 75001" +289575,Flatscreen TV,1,300,11/18/19 06:40,"787 Adams St, Seattle, WA 98101" +289576,27in FHD Monitor,1,149.99,11/04/19 13:06,"30 Pine St, Atlanta, GA 30301" +289577,AAA Batteries (4-pack),4,2.99,11/08/19 10:30,"460 River St, Dallas, TX 75001" +289578,20in Monitor,1,109.99,11/30/19 11:43,"454 Main St, San Francisco, CA 94016" +289579,AA Batteries (4-pack),1,3.84,11/26/19 09:58,"968 Cedar St, Dallas, TX 75001" +289580,Lightning Charging Cable,1,14.95,11/03/19 22:29,"330 8th St, New York City, NY 10001" +289581,Apple Airpods Headphones,1,150,11/12/19 06:44,"252 Washington St, Los Angeles, CA 90001" +289582,ThinkPad Laptop,1,999.99,11/05/19 13:55,"407 2nd St, Los Angeles, CA 90001" +289583,iPhone,1,700,11/19/19 06:32,"931 12th St, Los Angeles, CA 90001" +289584,Apple Airpods Headphones,1,150,11/16/19 23:35,"251 5th St, Seattle, WA 98101" +289585,Macbook Pro Laptop,1,1700,11/01/19 23:56,"454 4th St, Austin, TX 73301" +289586,AA Batteries (4-pack),1,3.84,11/21/19 09:39,"961 Lincoln St, Los Angeles, CA 90001" +289587,ThinkPad Laptop,1,999.99,11/08/19 09:03,"99 7th St, New York City, NY 10001" +289588,Google Phone,1,600,11/22/19 14:10,"868 Lincoln St, Dallas, TX 75001" +289589,AAA Batteries (4-pack),2,2.99,11/07/19 14:19,"456 9th St, Los Angeles, CA 90001" +289590,AA Batteries (4-pack),1,3.84,11/20/19 17:33,"495 Cedar St, Seattle, WA 98101" +289591,Wired Headphones,1,11.99,11/10/19 19:44,"197 Cedar St, San Francisco, CA 94016" +289592,AA Batteries (4-pack),1,3.84,11/23/19 11:48,"970 Lake St, Los Angeles, CA 90001" +289593,Macbook Pro Laptop,1,1700,11/07/19 22:33,"251 2nd St, San Francisco, CA 94016" +289594,Macbook Pro Laptop,1,1700,11/09/19 17:48,"281 Willow St, Los Angeles, CA 90001" +289595,USB-C Charging Cable,1,11.95,11/06/19 20:19,"798 4th St, San Francisco, CA 94016" +289596,AAA Batteries (4-pack),1,2.99,11/14/19 15:25,"142 Dogwood St, Los Angeles, CA 90001" +289597,Lightning Charging Cable,1,14.95,11/12/19 20:58,"693 Meadow St, New York City, NY 10001" +289598,Wired Headphones,1,11.99,11/01/19 12:51,"134 Washington St, Los Angeles, CA 90001" +289599,AA Batteries (4-pack),1,3.84,11/16/19 12:56,"412 Meadow St, San Francisco, CA 94016" +289600,AAA Batteries (4-pack),2,2.99,11/09/19 22:57,"950 Walnut St, Los Angeles, CA 90001" +289601,Bose SoundSport Headphones,1,99.99,11/27/19 22:45,"411 Sunset St, Seattle, WA 98101" +289602,Lightning Charging Cable,1,14.95,11/16/19 12:56,"4 Lincoln St, Atlanta, GA 30301" +289603,27in 4K Gaming Monitor,1,389.99,11/23/19 09:52,"363 South St, Los Angeles, CA 90001" +289604,AAA Batteries (4-pack),2,2.99,11/18/19 17:31,"773 Cherry St, Los Angeles, CA 90001" +289605,AAA Batteries (4-pack),2,2.99,11/30/19 00:07,"714 Hill St, Portland, OR 97035" +289606,AA Batteries (4-pack),2,3.84,11/07/19 23:20,"313 Pine St, Portland, OR 97035" +289607,USB-C Charging Cable,1,11.95,11/14/19 17:11,"761 12th St, Los Angeles, CA 90001" +289608,AA Batteries (4-pack),1,3.84,11/19/19 08:55,"298 Main St, San Francisco, CA 94016" +289609,Apple Airpods Headphones,1,150,11/21/19 09:43,"818 9th St, Atlanta, GA 30301" +289610,USB-C Charging Cable,1,11.95,11/01/19 20:33,"857 South St, San Francisco, CA 94016" +289611,AA Batteries (4-pack),3,3.84,11/02/19 17:54,"473 2nd St, Portland, OR 97035" +289612,Lightning Charging Cable,1,14.95,11/21/19 10:09,"105 11th St, Seattle, WA 98101" +289613,Apple Airpods Headphones,1,150,11/18/19 12:18,"21 9th St, San Francisco, CA 94016" +289614,20in Monitor,1,109.99,11/04/19 13:09,"776 Cedar St, Los Angeles, CA 90001" +289615,Lightning Charging Cable,1,14.95,11/19/19 08:53,"91 Elm St, New York City, NY 10001" +289616,Wired Headphones,1,11.99,11/12/19 07:31,"458 Chestnut St, New York City, NY 10001" +289617,Macbook Pro Laptop,1,1700,11/19/19 15:29,"977 Willow St, New York City, NY 10001" +289618,USB-C Charging Cable,1,11.95,11/12/19 11:27,"935 Lakeview St, Austin, TX 73301" +289619,34in Ultrawide Monitor,1,379.99,11/20/19 10:45,"407 13th St, San Francisco, CA 94016" +289620,AAA Batteries (4-pack),2,2.99,11/21/19 15:18,"903 West St, San Francisco, CA 94016" +289621,Bose SoundSport Headphones,1,99.99,11/06/19 18:36,"982 14th St, New York City, NY 10001" +289622,AAA Batteries (4-pack),1,2.99,11/30/19 20:38,"723 Hickory St, Portland, ME 04101" +289623,Bose SoundSport Headphones,1,99.99,11/16/19 17:17,"492 Cherry St, Dallas, TX 75001" +289624,AA Batteries (4-pack),1,3.84,11/17/19 19:02,"259 Adams St, Los Angeles, CA 90001" +289625,Macbook Pro Laptop,1,1700,11/02/19 12:06,"58 10th St, Dallas, TX 75001" +289626,Apple Airpods Headphones,1,150,11/12/19 14:11,"891 Willow St, Atlanta, GA 30301" +289627,iPhone,1,700,11/24/19 19:13,"719 Washington St, San Francisco, CA 94016" +289628,USB-C Charging Cable,2,11.95,11/28/19 13:59,"504 Lincoln St, Boston, MA 02215" +289629,Apple Airpods Headphones,1,150,11/21/19 18:27,"484 Madison St, San Francisco, CA 94016" +289630,Macbook Pro Laptop,1,1700,11/13/19 18:10,"139 Johnson St, Atlanta, GA 30301" +289631,Wired Headphones,1,11.99,11/10/19 23:54,"71 10th St, San Francisco, CA 94016" +289632,Bose SoundSport Headphones,1,99.99,11/11/19 23:55,"76 Jackson St, Los Angeles, CA 90001" +289633,27in 4K Gaming Monitor,1,389.99,11/11/19 05:35,"247 River St, Los Angeles, CA 90001" +289634,Bose SoundSport Headphones,1,99.99,11/19/19 22:14,"661 Cherry St, New York City, NY 10001" +289635,Apple Airpods Headphones,1,150,11/07/19 16:50,"334 Maple St, Los Angeles, CA 90001" +289636,Bose SoundSport Headphones,1,99.99,11/15/19 20:38,"339 Forest St, San Francisco, CA 94016" +289637,AA Batteries (4-pack),2,3.84,11/29/19 00:18,"841 Dogwood St, Los Angeles, CA 90001" +289638,AA Batteries (4-pack),1,3.84,11/12/19 14:29,"872 Lincoln St, New York City, NY 10001" +289639,27in 4K Gaming Monitor,1,389.99,11/23/19 15:28,"624 Jackson St, Boston, MA 02215" +289640,AAA Batteries (4-pack),1,2.99,11/14/19 19:42,"699 Maple St, Los Angeles, CA 90001" +289641,USB-C Charging Cable,1,11.95,11/26/19 09:49,"254 North St, San Francisco, CA 94016" +289642,Lightning Charging Cable,1,14.95,11/03/19 15:18,"711 6th St, San Francisco, CA 94016" +289643,Lightning Charging Cable,1,14.95,11/15/19 22:28,"595 Center St, New York City, NY 10001" +289644,Wired Headphones,1,11.99,11/06/19 08:57,"341 Lake St, New York City, NY 10001" +289645,Lightning Charging Cable,1,14.95,11/22/19 10:48,"879 Washington St, San Francisco, CA 94016" +289646,AAA Batteries (4-pack),2,2.99,11/09/19 13:58,"614 Meadow St, Boston, MA 02215" +289647,Apple Airpods Headphones,1,150,11/05/19 19:00,"963 River St, San Francisco, CA 94016" +289648,AAA Batteries (4-pack),2,2.99,11/26/19 15:46,"862 North St, Los Angeles, CA 90001" +289649,20in Monitor,1,109.99,11/09/19 12:09,"460 8th St, San Francisco, CA 94016" +289650,Apple Airpods Headphones,1,150,11/05/19 00:58,"639 Meadow St, Seattle, WA 98101" +289651,Bose SoundSport Headphones,1,99.99,11/07/19 13:43,"757 Park St, Seattle, WA 98101" +289652,Apple Airpods Headphones,1,150,11/12/19 16:25,"400 Cedar St, Atlanta, GA 30301" +289653,Lightning Charging Cable,1,14.95,11/16/19 18:33,"53 8th St, New York City, NY 10001" +289654,Lightning Charging Cable,1,14.95,11/18/19 15:14,"948 Ridge St, Boston, MA 02215" +289655,Wired Headphones,1,11.99,11/06/19 09:43,"493 Spruce St, New York City, NY 10001" +289656,Macbook Pro Laptop,1,1700,11/21/19 16:04,"931 West St, Los Angeles, CA 90001" +289657,Wired Headphones,1,11.99,11/20/19 14:46,"855 Highland St, New York City, NY 10001" +289658,AA Batteries (4-pack),1,3.84,11/26/19 11:35,"761 13th St, San Francisco, CA 94016" +289658,Macbook Pro Laptop,1,1700,11/26/19 11:35,"761 13th St, San Francisco, CA 94016" +289659,Apple Airpods Headphones,1,150,11/13/19 12:24,"205 River St, Dallas, TX 75001" +289660,Bose SoundSport Headphones,1,99.99,11/12/19 06:54,"190 9th St, Dallas, TX 75001" +289661,Flatscreen TV,1,300,11/13/19 21:46,"246 South St, Portland, OR 97035" +289662,USB-C Charging Cable,1,11.95,11/20/19 20:15,"608 13th St, New York City, NY 10001" +289663,27in FHD Monitor,1,149.99,11/14/19 16:47,"496 Johnson St, San Francisco, CA 94016" +289664,AA Batteries (4-pack),1,3.84,11/20/19 10:49,"248 Madison St, New York City, NY 10001" +289665,Lightning Charging Cable,1,14.95,11/15/19 19:16,"469 Meadow St, San Francisco, CA 94016" +289666,Flatscreen TV,1,300,11/26/19 22:02,"97 14th St, Seattle, WA 98101" +289667,Flatscreen TV,1,300,11/17/19 21:25,"816 14th St, San Francisco, CA 94016" +289668,AA Batteries (4-pack),1,3.84,11/19/19 13:48,"612 10th St, Los Angeles, CA 90001" +289669,AAA Batteries (4-pack),1,2.99,11/07/19 10:16,"888 Wilson St, San Francisco, CA 94016" +289670,Flatscreen TV,1,300,11/05/19 18:57,"616 1st St, New York City, NY 10001" +289671,27in 4K Gaming Monitor,1,389.99,11/09/19 15:59,"805 Madison St, San Francisco, CA 94016" +289672,Apple Airpods Headphones,1,150,11/20/19 20:31,"833 4th St, Los Angeles, CA 90001" +289673,Lightning Charging Cable,1,14.95,11/11/19 03:59,"665 Chestnut St, Seattle, WA 98101" +289674,Wired Headphones,1,11.99,11/07/19 22:08,"58 Lakeview St, New York City, NY 10001" +289675,AA Batteries (4-pack),1,3.84,11/26/19 17:25,"98 Willow St, Atlanta, GA 30301" +289676,AA Batteries (4-pack),1,3.84,11/01/19 12:18,"812 Pine St, New York City, NY 10001" +289677,27in FHD Monitor,1,149.99,11/24/19 14:02,"203 Chestnut St, Seattle, WA 98101" +289678,USB-C Charging Cable,1,11.95,11/18/19 22:40,"672 8th St, Los Angeles, CA 90001" +289679,AAA Batteries (4-pack),2,2.99,11/23/19 15:54,"820 Washington St, Atlanta, GA 30301" +289680,34in Ultrawide Monitor,1,379.99,11/29/19 06:50,"877 Elm St, Boston, MA 02215" +289681,AA Batteries (4-pack),1,3.84,11/22/19 07:48,"863 Pine St, Dallas, TX 75001" +289682,ThinkPad Laptop,1,999.99,11/29/19 21:20,"471 Ridge St, Dallas, TX 75001" +289683,iPhone,1,700,11/30/19 21:33,"873 Cherry St, Seattle, WA 98101" +289684,AAA Batteries (4-pack),1,2.99,11/23/19 19:12,"984 6th St, New York City, NY 10001" +289685,AA Batteries (4-pack),1,3.84,11/24/19 00:04,"801 11th St, Atlanta, GA 30301" +289686,iPhone,1,700,11/27/19 23:03,"732 Lakeview St, New York City, NY 10001" +289687,ThinkPad Laptop,1,999.99,11/06/19 14:28,"239 Highland St, Portland, ME 04101" +289688,Macbook Pro Laptop,1,1700,11/25/19 18:34,"208 Maple St, New York City, NY 10001" +289689,USB-C Charging Cable,1,11.95,11/08/19 08:00,"685 2nd St, San Francisco, CA 94016" +289690,27in 4K Gaming Monitor,1,389.99,11/08/19 15:18,"314 Jackson St, New York City, NY 10001" +289691,AAA Batteries (4-pack),1,2.99,11/21/19 15:55,"939 Hill St, New York City, NY 10001" +289692,USB-C Charging Cable,1,11.95,11/19/19 18:26,"240 Hickory St, San Francisco, CA 94016" +289693,Wired Headphones,1,11.99,11/03/19 22:08,"214 North St, Portland, OR 97035" +289694,Lightning Charging Cable,1,14.95,11/21/19 12:07,"476 Main St, San Francisco, CA 94016" +289695,Flatscreen TV,1,300,11/12/19 10:01,"306 13th St, Atlanta, GA 30301" +289696,Lightning Charging Cable,1,14.95,11/04/19 15:43,"557 Johnson St, New York City, NY 10001" +289697,USB-C Charging Cable,1,11.95,11/20/19 12:22,"899 Wilson St, Atlanta, GA 30301" +289698,AAA Batteries (4-pack),2,2.99,11/22/19 11:37,"913 Forest St, Los Angeles, CA 90001" +289699,Flatscreen TV,1,300,11/06/19 15:23,"394 Wilson St, Austin, TX 73301" +289700,Bose SoundSport Headphones,1,99.99,11/17/19 20:49,"65 Lincoln St, Los Angeles, CA 90001" +289701,AAA Batteries (4-pack),1,2.99,11/07/19 20:15,"731 Jackson St, Atlanta, GA 30301" +289702,Wired Headphones,1,11.99,11/26/19 17:00,"654 Center St, New York City, NY 10001" +289703,AA Batteries (4-pack),1,3.84,11/24/19 11:59,"346 9th St, New York City, NY 10001" +289704,AAA Batteries (4-pack),1,2.99,11/23/19 22:59,"760 Maple St, San Francisco, CA 94016" +289705,27in FHD Monitor,1,149.99,11/14/19 13:00,"537 2nd St, San Francisco, CA 94016" +289706,34in Ultrawide Monitor,1,379.99,11/12/19 02:37,"189 Lincoln St, New York City, NY 10001" +289707,Vareebadd Phone,1,400,11/23/19 14:19,"218 Park St, Boston, MA 02215" +289707,AA Batteries (4-pack),3,3.84,11/23/19 14:19,"218 Park St, Boston, MA 02215" +289708,AA Batteries (4-pack),1,3.84,11/17/19 20:17,"58 13th St, Los Angeles, CA 90001" +289709,USB-C Charging Cable,1,11.95,11/04/19 13:32,"320 Walnut St, Los Angeles, CA 90001" +289710,AAA Batteries (4-pack),2,2.99,11/13/19 17:36,"483 West St, Los Angeles, CA 90001" +289711,AA Batteries (4-pack),1,3.84,11/23/19 02:54,"586 4th St, Portland, OR 97035" +289712,Google Phone,1,600,11/30/19 10:40,"802 12th St, Dallas, TX 75001" +289713,Macbook Pro Laptop,1,1700,11/30/19 16:45,"471 South St, Boston, MA 02215" +289713,Lightning Charging Cable,1,14.95,11/30/19 16:45,"471 South St, Boston, MA 02215" +289714,Macbook Pro Laptop,1,1700,11/24/19 18:59,"31 South St, Dallas, TX 75001" +289715,ThinkPad Laptop,1,999.99,11/13/19 16:41,"633 Adams St, Boston, MA 02215" +289716,Wired Headphones,1,11.99,11/26/19 18:40,"869 Maple St, Portland, OR 97035" +289717,AA Batteries (4-pack),1,3.84,11/15/19 21:43,"997 Cedar St, Seattle, WA 98101" +289718,AAA Batteries (4-pack),1,2.99,11/15/19 17:48,"801 Meadow St, Dallas, TX 75001" +289719,27in FHD Monitor,1,149.99,11/02/19 12:00,"74 Main St, Atlanta, GA 30301" +289720,Bose SoundSport Headphones,1,99.99,11/20/19 01:40,"12 Spruce St, Los Angeles, CA 90001" +289721,USB-C Charging Cable,1,11.95,11/15/19 08:46,"151 10th St, San Francisco, CA 94016" +289722,27in FHD Monitor,1,149.99,11/25/19 17:31,"451 Wilson St, Los Angeles, CA 90001" +289723,27in FHD Monitor,1,149.99,11/24/19 18:37,"499 14th St, Los Angeles, CA 90001" +289724,Lightning Charging Cable,1,14.95,11/03/19 10:49,"725 Cherry St, Portland, OR 97035" +289725,Lightning Charging Cable,1,14.95,11/24/19 20:17,"105 River St, Seattle, WA 98101" +289726,27in 4K Gaming Monitor,1,389.99,11/14/19 18:53,"134 North St, Austin, TX 73301" +289727,Lightning Charging Cable,1,14.95,11/13/19 07:40,"573 13th St, Boston, MA 02215" +289728,Lightning Charging Cable,1,14.95,11/13/19 09:46,"613 Main St, Seattle, WA 98101" +289729,Wired Headphones,1,11.99,11/15/19 13:14,"287 Center St, Portland, OR 97035" +289730,27in 4K Gaming Monitor,1,389.99,11/15/19 11:15,"138 Madison St, Dallas, TX 75001" +289731,Wired Headphones,1,11.99,11/01/19 16:25,"47 10th St, Seattle, WA 98101" +289732,Apple Airpods Headphones,1,150,11/26/19 21:18,"467 Spruce St, Seattle, WA 98101" +289733,USB-C Charging Cable,1,11.95,11/26/19 19:56,"788 Forest St, Boston, MA 02215" +289734,Google Phone,1,600,11/28/19 18:42,"476 Ridge St, Los Angeles, CA 90001" +289735,Bose SoundSport Headphones,1,99.99,11/09/19 12:37,"450 Chestnut St, Los Angeles, CA 90001" +289736,27in FHD Monitor,1,149.99,11/14/19 11:18,"677 Washington St, Austin, TX 73301" +289737,34in Ultrawide Monitor,1,379.99,11/14/19 13:31,"356 Dogwood St, Atlanta, GA 30301" +289738,Lightning Charging Cable,1,14.95,11/07/19 08:29,"941 North St, San Francisco, CA 94016" +289739,AA Batteries (4-pack),1,3.84,11/03/19 22:24,"461 North St, Portland, OR 97035" +289740,27in FHD Monitor,1,149.99,11/12/19 12:33,"290 Highland St, San Francisco, CA 94016" +289741,Wired Headphones,1,11.99,11/05/19 08:51,"902 Madison St, Dallas, TX 75001" +289742,Lightning Charging Cable,2,14.95,11/12/19 20:07,"599 Washington St, Seattle, WA 98101" +289743,Wired Headphones,1,11.99,11/02/19 10:19,"192 Meadow St, Boston, MA 02215" +289744,34in Ultrawide Monitor,1,379.99,11/14/19 20:16,"172 10th St, Seattle, WA 98101" +289745,Google Phone,1,600,11/28/19 14:48,"253 Cherry St, San Francisco, CA 94016" +289745,USB-C Charging Cable,1,11.95,11/28/19 14:48,"253 Cherry St, San Francisco, CA 94016" +289746,Google Phone,1,600,11/20/19 04:18,"181 West St, Atlanta, GA 30301" +289747,USB-C Charging Cable,1,11.95,11/09/19 17:11,"30 Lake St, New York City, NY 10001" +289748,Lightning Charging Cable,1,14.95,11/16/19 22:39,"987 Johnson St, New York City, NY 10001" +289749,34in Ultrawide Monitor,1,379.99,11/27/19 20:07,"550 West St, Dallas, TX 75001" +289750,Flatscreen TV,1,300,11/18/19 13:34,"870 Dogwood St, Los Angeles, CA 90001" +289751,AAA Batteries (4-pack),1,2.99,11/16/19 18:38,"536 13th St, Austin, TX 73301" +289752,AA Batteries (4-pack),1,3.84,11/03/19 21:43,"968 Ridge St, Boston, MA 02215" +289753,Wired Headphones,1,11.99,11/08/19 08:33,"513 Willow St, Atlanta, GA 30301" +289754,USB-C Charging Cable,1,11.95,11/13/19 20:17,"819 Forest St, San Francisco, CA 94016" +289755,27in FHD Monitor,1,149.99,11/23/19 13:21,"363 North St, Boston, MA 02215" +289756,USB-C Charging Cable,1,11.95,11/01/19 09:57,"14 Church St, Austin, TX 73301" +289757,27in 4K Gaming Monitor,1,389.99,11/25/19 18:09,"163 Washington St, Dallas, TX 75001" +289758,Bose SoundSport Headphones,1,99.99,11/27/19 15:37,"145 Ridge St, San Francisco, CA 94016" +289759,20in Monitor,1,109.99,11/04/19 19:28,"855 Lincoln St, Seattle, WA 98101" +289760,iPhone,1,700,11/04/19 08:50,"399 2nd St, Boston, MA 02215" +289760,Wired Headphones,1,11.99,11/04/19 08:50,"399 2nd St, Boston, MA 02215" +289760,Apple Airpods Headphones,1,150,11/04/19 08:50,"399 2nd St, Boston, MA 02215" +289761,27in FHD Monitor,1,149.99,11/09/19 01:28,"105 River St, Austin, TX 73301" +289762,Apple Airpods Headphones,1,150,11/25/19 18:18,"18 13th St, Atlanta, GA 30301" +289763,Google Phone,1,600,11/19/19 17:46,"308 Cherry St, San Francisco, CA 94016" +289763,Wired Headphones,1,11.99,11/19/19 17:46,"308 Cherry St, San Francisco, CA 94016" +289764,Bose SoundSport Headphones,1,99.99,11/04/19 19:58,"746 5th St, Los Angeles, CA 90001" +289765,AAA Batteries (4-pack),1,2.99,11/10/19 16:29,"804 Spruce St, Atlanta, GA 30301" +289765,27in FHD Monitor,1,149.99,11/10/19 16:29,"804 Spruce St, Atlanta, GA 30301" +289766,Lightning Charging Cable,1,14.95,11/14/19 13:21,"639 Church St, Los Angeles, CA 90001" +289767,AAA Batteries (4-pack),1,2.99,11/08/19 11:10,"933 7th St, Boston, MA 02215" +289768,Google Phone,1,600,11/22/19 14:54,"499 Chestnut St, Atlanta, GA 30301" +289769,Vareebadd Phone,1,400,11/21/19 11:00,"956 River St, Los Angeles, CA 90001" +289770,34in Ultrawide Monitor,1,379.99,11/24/19 11:17,"760 Sunset St, Los Angeles, CA 90001" +289771,Bose SoundSport Headphones,1,99.99,11/24/19 17:53,"540 Spruce St, Dallas, TX 75001" +289772,AA Batteries (4-pack),1,3.84,11/23/19 17:30,"353 Johnson St, San Francisco, CA 94016" +289773,USB-C Charging Cable,2,11.95,11/26/19 10:05,"398 1st St, San Francisco, CA 94016" +289774,Apple Airpods Headphones,1,150,11/21/19 20:46,"190 12th St, New York City, NY 10001" +289775,iPhone,1,700,11/15/19 17:01,"259 Washington St, San Francisco, CA 94016" +289776,USB-C Charging Cable,1,11.95,11/12/19 20:35,"802 2nd St, San Francisco, CA 94016" +289777,AA Batteries (4-pack),1,3.84,11/18/19 14:39,"921 1st St, San Francisco, CA 94016" +289777,USB-C Charging Cable,1,11.95,11/18/19 14:39,"921 1st St, San Francisco, CA 94016" +289778,Lightning Charging Cable,1,14.95,11/27/19 14:16,"429 Dogwood St, San Francisco, CA 94016" +289779,USB-C Charging Cable,1,11.95,11/03/19 22:23,"833 Spruce St, Portland, ME 04101" +289780,Bose SoundSport Headphones,1,99.99,11/22/19 00:16,"294 Lakeview St, Austin, TX 73301" +289781,Wired Headphones,2,11.99,11/12/19 15:19,"262 North St, Seattle, WA 98101" +289782,20in Monitor,1,109.99,11/23/19 22:09,"748 River St, New York City, NY 10001" +289783,iPhone,1,700,11/27/19 16:14,"211 6th St, San Francisco, CA 94016" +289784,LG Dryer,1,600.0,11/27/19 14:44,"875 West St, Los Angeles, CA 90001" +289785,USB-C Charging Cable,1,11.95,11/01/19 11:10,"330 14th St, Portland, OR 97035" +289786,Apple Airpods Headphones,1,150,11/05/19 00:24,"344 Chestnut St, New York City, NY 10001" +289787,Lightning Charging Cable,1,14.95,11/10/19 18:17,"583 Lincoln St, New York City, NY 10001" +289788,ThinkPad Laptop,1,999.99,11/03/19 19:29,"630 2nd St, Los Angeles, CA 90001" +289789,20in Monitor,1,109.99,11/05/19 08:15,"889 7th St, Dallas, TX 75001" +289790,Bose SoundSport Headphones,1,99.99,11/07/19 10:10,"973 Jefferson St, San Francisco, CA 94016" +289791,Wired Headphones,1,11.99,11/28/19 21:40,"236 Main St, Portland, ME 04101" +289792,Flatscreen TV,1,300,11/17/19 13:48,"892 Hickory St, Portland, ME 04101" +289793,Flatscreen TV,1,300,11/07/19 21:26,"659 Lakeview St, Boston, MA 02215" +289794,Apple Airpods Headphones,1,150,11/06/19 19:49,"211 1st St, San Francisco, CA 94016" +289795,Apple Airpods Headphones,1,150,11/28/19 20:27,"198 13th St, Dallas, TX 75001" +289796,USB-C Charging Cable,1,11.95,11/06/19 12:04,"944 Lincoln St, Seattle, WA 98101" +289797,Google Phone,1,600,11/10/19 15:14,"476 Maple St, New York City, NY 10001" +289797,USB-C Charging Cable,1,11.95,11/10/19 15:14,"476 Maple St, New York City, NY 10001" +289798,AA Batteries (4-pack),2,3.84,11/05/19 08:09,"355 Lakeview St, Seattle, WA 98101" +289799,Bose SoundSport Headphones,1,99.99,11/10/19 14:13,"99 9th St, Seattle, WA 98101" +289800,Macbook Pro Laptop,1,1700,11/03/19 10:50,"382 2nd St, Atlanta, GA 30301" +289801,iPhone,1,700,11/02/19 08:28,"732 Church St, New York City, NY 10001" +289801,Wired Headphones,1,11.99,11/02/19 08:28,"732 Church St, New York City, NY 10001" +289802,Flatscreen TV,1,300,11/02/19 11:15,"994 Center St, Boston, MA 02215" +289803,27in FHD Monitor,1,149.99,11/16/19 10:05,"126 South St, Atlanta, GA 30301" +289804,AA Batteries (4-pack),3,3.84,11/13/19 11:49,"586 Wilson St, San Francisco, CA 94016" +289805,Lightning Charging Cable,1,14.95,11/12/19 07:06,"762 Maple St, San Francisco, CA 94016" +289806,Wired Headphones,1,11.99,11/30/19 10:56,"368 1st St, San Francisco, CA 94016" +289807,Bose SoundSport Headphones,1,99.99,11/01/19 09:16,"827 8th St, San Francisco, CA 94016" +289808,Bose SoundSport Headphones,1,99.99,11/24/19 07:19,"294 11th St, Portland, OR 97035" +289809,AAA Batteries (4-pack),2,2.99,11/06/19 19:22,"412 4th St, Austin, TX 73301" +289810,AAA Batteries (4-pack),2,2.99,11/05/19 14:48,"489 Dogwood St, Boston, MA 02215" +289811,Apple Airpods Headphones,1,150,11/12/19 13:25,"693 Church St, Los Angeles, CA 90001" +289812,Wired Headphones,1,11.99,11/20/19 15:05,"636 11th St, San Francisco, CA 94016" +289813,AA Batteries (4-pack),2,3.84,11/29/19 16:41,"716 13th St, Boston, MA 02215" +289814,Apple Airpods Headphones,1,150,11/30/19 13:09,"391 Dogwood St, Seattle, WA 98101" +289815,Lightning Charging Cable,1,14.95,11/21/19 15:12,"668 Chestnut St, Boston, MA 02215" +289816,USB-C Charging Cable,1,11.95,11/01/19 16:52,"661 Hickory St, San Francisco, CA 94016" +289817,USB-C Charging Cable,1,11.95,11/23/19 14:02,"763 West St, Portland, OR 97035" +289818,Wired Headphones,1,11.99,11/15/19 16:17,"687 River St, San Francisco, CA 94016" +289819,27in FHD Monitor,1,149.99,11/06/19 06:30,"861 Wilson St, Los Angeles, CA 90001" +289820,Google Phone,1,600,11/24/19 18:25,"765 9th St, San Francisco, CA 94016" +289821,iPhone,1,700,11/17/19 19:03,"358 Johnson St, Boston, MA 02215" +289822,Apple Airpods Headphones,1,150,11/17/19 01:12,"394 Chestnut St, San Francisco, CA 94016" +289823,Wired Headphones,1,11.99,11/15/19 07:49,"798 14th St, San Francisco, CA 94016" +289824,AA Batteries (4-pack),2,3.84,11/29/19 18:14,"729 11th St, New York City, NY 10001" +289824,iPhone,1,700,11/29/19 18:14,"729 11th St, New York City, NY 10001" +289825,Bose SoundSport Headphones,1,99.99,11/10/19 09:40,"640 5th St, San Francisco, CA 94016" +289826,Apple Airpods Headphones,1,150,11/26/19 22:29,"716 Dogwood St, Seattle, WA 98101" +289827,34in Ultrawide Monitor,1,379.99,11/21/19 17:36,"754 Hill St, San Francisco, CA 94016" +289828,USB-C Charging Cable,1,11.95,11/24/19 15:55,"204 Hickory St, San Francisco, CA 94016" +289829,iPhone,1,700,11/13/19 17:46,"953 North St, Los Angeles, CA 90001" +289830,Wired Headphones,1,11.99,11/06/19 17:26,"752 North St, San Francisco, CA 94016" +289831,Lightning Charging Cable,1,14.95,11/02/19 13:10,"875 11th St, San Francisco, CA 94016" +289832,AA Batteries (4-pack),1,3.84,11/24/19 22:14,"456 Wilson St, San Francisco, CA 94016" +289833,Macbook Pro Laptop,1,1700,11/25/19 23:29,"39 11th St, Atlanta, GA 30301" +289834,AAA Batteries (4-pack),1,2.99,11/21/19 14:01,"853 Washington St, Los Angeles, CA 90001" +289835,Lightning Charging Cable,1,14.95,11/27/19 00:14,"181 Hill St, New York City, NY 10001" +289836,Apple Airpods Headphones,1,150,11/30/19 17:58,"855 Cherry St, San Francisco, CA 94016" +289837,USB-C Charging Cable,1,11.95,11/27/19 20:26,"224 2nd St, Dallas, TX 75001" +289838,Wired Headphones,1,11.99,11/02/19 11:12,"762 Chestnut St, Atlanta, GA 30301" +289839,27in FHD Monitor,1,149.99,11/21/19 17:30,"897 Willow St, San Francisco, CA 94016" +289840,Wired Headphones,1,11.99,11/17/19 18:28,"136 8th St, Seattle, WA 98101" +289841,Wired Headphones,1,11.99,11/04/19 20:36,"359 Johnson St, Seattle, WA 98101" +289842,AAA Batteries (4-pack),2,2.99,11/26/19 07:37,"957 Willow St, Los Angeles, CA 90001" +289843,Wired Headphones,1,11.99,11/19/19 15:01,"285 Center St, San Francisco, CA 94016" +289844,iPhone,1,700,11/30/19 10:50,"753 South St, New York City, NY 10001" +289844,Lightning Charging Cable,1,14.95,11/30/19 10:50,"753 South St, New York City, NY 10001" +289845,AAA Batteries (4-pack),2,2.99,11/29/19 00:52,"158 1st St, Los Angeles, CA 90001" +289846,20in Monitor,1,109.99,11/03/19 11:47,"18 Spruce St, Austin, TX 73301" +289847,LG Washing Machine,1,600.0,11/26/19 10:54,"272 Forest St, New York City, NY 10001" +289848,20in Monitor,2,109.99,11/06/19 17:21,"389 Cherry St, Dallas, TX 75001" +289849,iPhone,1,700,11/07/19 08:35,"705 12th St, Seattle, WA 98101" +289850,Lightning Charging Cable,1,14.95,11/27/19 15:16,"193 Lakeview St, Dallas, TX 75001" +289851,Flatscreen TV,1,300,11/06/19 11:36,"497 Hickory St, Seattle, WA 98101" +289852,Flatscreen TV,1,300,11/13/19 21:40,"797 Hill St, Seattle, WA 98101" +289853,20in Monitor,1,109.99,11/27/19 22:04,"33 Wilson St, Atlanta, GA 30301" +289854,iPhone,1,700,11/15/19 19:41,"228 Main St, San Francisco, CA 94016" +289855,Lightning Charging Cable,1,14.95,11/15/19 12:59,"736 Hill St, Portland, OR 97035" +289856,iPhone,1,700,11/02/19 23:36,"20 10th St, Seattle, WA 98101" +289857,USB-C Charging Cable,1,11.95,11/18/19 13:08,"920 Cherry St, Dallas, TX 75001" +289858,iPhone,1,700,11/30/19 11:02,"811 Park St, Austin, TX 73301" +289858,Lightning Charging Cable,1,14.95,11/30/19 11:02,"811 Park St, Austin, TX 73301" +289859,AA Batteries (4-pack),1,3.84,11/04/19 13:32,"110 Wilson St, Dallas, TX 75001" +289860,Apple Airpods Headphones,1,150,11/02/19 15:49,"688 11th St, Boston, MA 02215" +289861,Lightning Charging Cable,1,14.95,11/17/19 12:27,"13 Johnson St, Dallas, TX 75001" +289862,Wired Headphones,2,11.99,11/14/19 01:05,"851 Park St, Los Angeles, CA 90001" +289863,iPhone,1,700,11/21/19 09:29,"590 Park St, Portland, OR 97035" +289864,27in 4K Gaming Monitor,1,389.99,11/04/19 18:11,"15 Highland St, San Francisco, CA 94016" +289865,Bose SoundSport Headphones,1,99.99,11/11/19 01:54,"756 Dogwood St, Dallas, TX 75001" +289866,34in Ultrawide Monitor,1,379.99,11/25/19 10:02,"353 14th St, Portland, OR 97035" +289866,20in Monitor,1,109.99,11/25/19 10:02,"353 14th St, Portland, OR 97035" +289867,27in FHD Monitor,1,149.99,11/22/19 12:29,"668 13th St, Los Angeles, CA 90001" +289868,AAA Batteries (4-pack),1,2.99,11/20/19 12:08,"85 Ridge St, San Francisco, CA 94016" +289869,27in FHD Monitor,1,149.99,11/27/19 22:09,"181 5th St, San Francisco, CA 94016" +289870,Lightning Charging Cable,1,14.95,11/17/19 16:33,"99 2nd St, Los Angeles, CA 90001" +289871,Lightning Charging Cable,1,14.95,11/23/19 16:05,"345 Jefferson St, Los Angeles, CA 90001" +289872,AAA Batteries (4-pack),1,2.99,11/08/19 22:49,"536 Ridge St, New York City, NY 10001" +289873,Macbook Pro Laptop,1,1700,11/29/19 10:01,"248 9th St, New York City, NY 10001" +289874,Macbook Pro Laptop,1,1700,11/29/19 11:59,"820 Madison St, San Francisco, CA 94016" +289875,AAA Batteries (4-pack),4,2.99,11/20/19 14:53,"388 14th St, Atlanta, GA 30301" +289876,AA Batteries (4-pack),1,3.84,11/11/19 16:09,"165 Cedar St, New York City, NY 10001" +289877,Apple Airpods Headphones,1,150,11/18/19 20:44,"917 Lakeview St, Atlanta, GA 30301" +289878,Flatscreen TV,1,300,11/27/19 11:45,"31 Main St, Los Angeles, CA 90001" +289879,AA Batteries (4-pack),1,3.84,11/22/19 21:45,"513 Johnson St, San Francisco, CA 94016" +289880,Apple Airpods Headphones,1,150,11/11/19 20:46,"344 Lake St, San Francisco, CA 94016" +289881,Bose SoundSport Headphones,1,99.99,11/24/19 15:26,"413 Hill St, Seattle, WA 98101" +289882,AAA Batteries (4-pack),2,2.99,11/03/19 17:44,"991 Cherry St, Boston, MA 02215" +289883,AAA Batteries (4-pack),1,2.99,11/06/19 17:22,"764 Jackson St, San Francisco, CA 94016" +289884,Lightning Charging Cable,1,14.95,11/17/19 16:53,"163 Center St, San Francisco, CA 94016" +289885,AA Batteries (4-pack),1,3.84,11/15/19 20:37,"377 Elm St, San Francisco, CA 94016" +289886,AA Batteries (4-pack),1,3.84,11/03/19 07:03,"32 River St, Portland, OR 97035" +289887,Bose SoundSport Headphones,1,99.99,11/11/19 18:16,"438 12th St, Atlanta, GA 30301" +289888,AAA Batteries (4-pack),1,2.99,11/21/19 01:44,"962 14th St, Austin, TX 73301" +289889,27in 4K Gaming Monitor,1,389.99,11/13/19 23:22,"387 Cherry St, New York City, NY 10001" +289890,Wired Headphones,1,11.99,11/05/19 21:46,"369 North St, Austin, TX 73301" +289891,Lightning Charging Cable,1,14.95,11/21/19 18:55,"375 Main St, Portland, ME 04101" +289892,20in Monitor,1,109.99,11/23/19 22:55,"906 Elm St, Los Angeles, CA 90001" +289893,Apple Airpods Headphones,1,150,11/17/19 09:11,"398 Pine St, Dallas, TX 75001" +289894,Lightning Charging Cable,1,14.95,11/29/19 09:43,"264 4th St, Austin, TX 73301" +289895,Wired Headphones,1,11.99,11/19/19 14:26,"880 2nd St, San Francisco, CA 94016" +289896,AAA Batteries (4-pack),2,2.99,11/02/19 12:54,"336 Ridge St, San Francisco, CA 94016" +289897,AAA Batteries (4-pack),1,2.99,11/02/19 14:12,"386 5th St, Los Angeles, CA 90001" +289898,AA Batteries (4-pack),2,3.84,11/21/19 14:50,"46 Park St, Boston, MA 02215" +289899,27in FHD Monitor,1,149.99,11/19/19 19:56,"397 12th St, San Francisco, CA 94016" +289900,Wired Headphones,1,11.99,11/29/19 11:29,"519 Adams St, San Francisco, CA 94016" +289901,Wired Headphones,1,11.99,11/11/19 15:32,"527 Cedar St, Los Angeles, CA 90001" +289902,USB-C Charging Cable,1,11.95,11/15/19 16:24,"5 Cedar St, San Francisco, CA 94016" +289903,Apple Airpods Headphones,1,150,11/18/19 11:03,"799 Center St, San Francisco, CA 94016" +289904,iPhone,1,700,11/29/19 21:38,"932 Forest St, Los Angeles, CA 90001" +289905,Flatscreen TV,1,300,11/06/19 14:16,"673 Church St, San Francisco, CA 94016" +289906,Flatscreen TV,1,300,11/02/19 11:59,"518 Chestnut St, Boston, MA 02215" +289907,Macbook Pro Laptop,1,1700,11/06/19 15:49,"581 Lake St, Atlanta, GA 30301" +289908,Bose SoundSport Headphones,1,99.99,11/29/19 10:53,"422 Cedar St, New York City, NY 10001" +289909,AA Batteries (4-pack),1,3.84,11/01/19 22:10,"121 Walnut St, Dallas, TX 75001" +289910,AA Batteries (4-pack),1,3.84,11/16/19 13:02,"110 Walnut St, Dallas, TX 75001" +289911,AAA Batteries (4-pack),1,2.99,11/19/19 11:44,"834 Elm St, New York City, NY 10001" +289912,AAA Batteries (4-pack),1,2.99,11/13/19 19:43,"301 Ridge St, San Francisco, CA 94016" +289912,USB-C Charging Cable,1,11.95,11/13/19 19:43,"301 Ridge St, San Francisco, CA 94016" +289913,USB-C Charging Cable,1,11.95,11/29/19 21:21,"976 Highland St, Dallas, TX 75001" +289914,27in 4K Gaming Monitor,1,389.99,11/14/19 19:51,"312 8th St, San Francisco, CA 94016" +289915,27in 4K Gaming Monitor,1,389.99,11/18/19 13:20,"297 Adams St, San Francisco, CA 94016" +289916,Wired Headphones,1,11.99,11/23/19 17:01,"472 Park St, Austin, TX 73301" +289917,Lightning Charging Cable,1,14.95,11/05/19 04:14,"25 Center St, San Francisco, CA 94016" +289918,Wired Headphones,2,11.99,11/14/19 22:12,"705 Spruce St, Portland, ME 04101" +289919,20in Monitor,1,109.99,11/09/19 18:42,"8 Jefferson St, San Francisco, CA 94016" +289920,Bose SoundSport Headphones,1,99.99,11/15/19 19:57,"28 Maple St, Boston, MA 02215" +289920,AAA Batteries (4-pack),1,2.99,11/15/19 19:57,"28 Maple St, Boston, MA 02215" +289921,Lightning Charging Cable,1,14.95,11/12/19 13:57,"863 Meadow St, New York City, NY 10001" +289922,AA Batteries (4-pack),1,3.84,11/08/19 18:29,"115 Lakeview St, New York City, NY 10001" +289923,AAA Batteries (4-pack),1,2.99,11/27/19 16:52,"315 Main St, Boston, MA 02215" +289924,Wired Headphones,1,11.99,11/22/19 19:51,"930 Lakeview St, San Francisco, CA 94016" +289925,Wired Headphones,2,11.99,11/03/19 15:54,"650 Cedar St, New York City, NY 10001" +289926,Lightning Charging Cable,1,14.95,11/13/19 12:32,"573 Lincoln St, Atlanta, GA 30301" +289927,AA Batteries (4-pack),1,3.84,11/09/19 22:21,"294 Pine St, Los Angeles, CA 90001" +289928,USB-C Charging Cable,1,11.95,11/01/19 15:30,"715 West St, Dallas, TX 75001" +289929,Wired Headphones,1,11.99,11/28/19 11:53,"421 Church St, San Francisco, CA 94016" +289930,Wired Headphones,1,11.99,11/28/19 10:23,"932 Cherry St, San Francisco, CA 94016" +289931,Wired Headphones,1,11.99,11/24/19 07:14,"675 13th St, Seattle, WA 98101" +289932,27in 4K Gaming Monitor,1,389.99,11/13/19 13:57,"903 5th St, Dallas, TX 75001" +289933,27in FHD Monitor,1,149.99,11/08/19 14:15,"41 Church St, Los Angeles, CA 90001" +289934,27in FHD Monitor,1,149.99,11/21/19 09:08,"446 Chestnut St, Dallas, TX 75001" +289935,27in FHD Monitor,1,149.99,11/28/19 02:46,"495 Willow St, Boston, MA 02215" +289936,AA Batteries (4-pack),1,3.84,11/30/19 08:58,"311 1st St, Boston, MA 02215" +289937,AA Batteries (4-pack),1,3.84,11/24/19 23:54,"36 Chestnut St, Seattle, WA 98101" +289938,USB-C Charging Cable,1,11.95,11/18/19 11:40,"298 Johnson St, San Francisco, CA 94016" +289939,Vareebadd Phone,1,400,11/19/19 11:45,"241 Chestnut St, Los Angeles, CA 90001" +289939,USB-C Charging Cable,2,11.95,11/19/19 11:45,"241 Chestnut St, Los Angeles, CA 90001" +289940,Bose SoundSport Headphones,1,99.99,11/21/19 15:00,"702 6th St, Austin, TX 73301" +289941,Wired Headphones,1,11.99,11/18/19 06:22,"307 North St, Los Angeles, CA 90001" +289942,AA Batteries (4-pack),2,3.84,11/16/19 09:45,"150 Forest St, San Francisco, CA 94016" +289943,Bose SoundSport Headphones,1,99.99,11/13/19 11:20,"591 5th St, San Francisco, CA 94016" +289944,34in Ultrawide Monitor,1,379.99,11/23/19 11:46,"212 Center St, San Francisco, CA 94016" +289945,AA Batteries (4-pack),1,3.84,11/15/19 23:59,"260 North St, Los Angeles, CA 90001" +289946,34in Ultrawide Monitor,1,379.99,11/08/19 22:41,"801 Adams St, Portland, ME 04101" +289947,USB-C Charging Cable,1,11.95,11/11/19 13:35,"465 Adams St, Los Angeles, CA 90001" +289948,27in FHD Monitor,1,149.99,11/04/19 23:45,"863 Wilson St, Boston, MA 02215" +289949,Lightning Charging Cable,1,14.95,11/05/19 17:34,"610 5th St, Los Angeles, CA 90001" +289950,Lightning Charging Cable,1,14.95,11/28/19 19:51,"442 9th St, Boston, MA 02215" +289951,Wired Headphones,1,11.99,11/21/19 20:55,"374 Lakeview St, San Francisco, CA 94016" +289952,Bose SoundSport Headphones,1,99.99,11/24/19 16:32,"832 4th St, Boston, MA 02215" +289953,AA Batteries (4-pack),1,3.84,11/05/19 11:35,"227 Madison St, San Francisco, CA 94016" +289954,USB-C Charging Cable,1,11.95,11/05/19 19:33,"620 Center St, Boston, MA 02215" +289955,ThinkPad Laptop,1,999.99,11/06/19 01:26,"999 12th St, Boston, MA 02215" +289956,Wired Headphones,2,11.99,11/26/19 20:26,"303 Sunset St, New York City, NY 10001" +289957,USB-C Charging Cable,1,11.95,11/01/19 23:33,"308 Cherry St, New York City, NY 10001" +289958,Wired Headphones,2,11.99,11/05/19 12:17,"265 5th St, San Francisco, CA 94016" +289959,AA Batteries (4-pack),1,3.84,11/21/19 17:15,"966 8th St, Portland, ME 04101" +289960,USB-C Charging Cable,1,11.95,11/25/19 09:58,"406 Hickory St, Atlanta, GA 30301" +289961,AA Batteries (4-pack),1,3.84,11/26/19 11:33,"63 Spruce St, San Francisco, CA 94016" +289962,Wired Headphones,1,11.99,11/25/19 14:07,"904 5th St, San Francisco, CA 94016" +289963,iPhone,1,700,11/13/19 14:52,"927 13th St, San Francisco, CA 94016" +289964,20in Monitor,1,109.99,11/03/19 09:39,"237 Sunset St, Los Angeles, CA 90001" +289965,AAA Batteries (4-pack),1,2.99,11/30/19 19:08,"243 Maple St, Los Angeles, CA 90001" +289966,Lightning Charging Cable,1,14.95,11/14/19 17:47,"674 West St, San Francisco, CA 94016" +289967,AAA Batteries (4-pack),2,2.99,11/04/19 10:18,"747 Forest St, San Francisco, CA 94016" +289968,iPhone,1,700,11/16/19 14:21,"495 Dogwood St, Austin, TX 73301" +289969,Wired Headphones,1,11.99,11/25/19 14:18,"832 Hickory St, New York City, NY 10001" +289970,Google Phone,1,600,11/03/19 12:00,"763 Forest St, Portland, OR 97035" +289971,iPhone,1,700,11/01/19 11:54,"21 West St, New York City, NY 10001" +289972,Apple Airpods Headphones,1,150,11/21/19 10:25,"281 Elm St, San Francisco, CA 94016" +289973,27in 4K Gaming Monitor,1,389.99,11/01/19 20:41,"480 Elm St, Dallas, TX 75001" +289974,Bose SoundSport Headphones,2,99.99,11/28/19 17:28,"878 11th St, San Francisco, CA 94016" +289975,AAA Batteries (4-pack),1,2.99,11/06/19 18:08,"260 8th St, Atlanta, GA 30301" +289976,Bose SoundSport Headphones,1,99.99,11/05/19 05:59,"911 Dogwood St, Boston, MA 02215" +289977,USB-C Charging Cable,1,11.95,12/01/19 00:20,"936 Church St, San Francisco, CA 94016" +289978,Lightning Charging Cable,1,14.95,11/04/19 22:42,"537 1st St, San Francisco, CA 94016" +289979,USB-C Charging Cable,1,11.95,11/16/19 17:34,"543 Center St, New York City, NY 10001" +289980,Lightning Charging Cable,1,14.95,11/15/19 20:19,"923 Church St, Atlanta, GA 30301" +289981,Lightning Charging Cable,1,14.95,11/10/19 19:30,"282 West St, San Francisco, CA 94016" +289982,Wired Headphones,2,11.99,11/28/19 11:12,"291 Main St, Los Angeles, CA 90001" +289983,Google Phone,1,600,11/05/19 11:07,"565 Chestnut St, Portland, OR 97035" +289983,Bose SoundSport Headphones,1,99.99,11/05/19 11:07,"565 Chestnut St, Portland, OR 97035" +289984,Lightning Charging Cable,1,14.95,11/09/19 21:42,"977 1st St, San Francisco, CA 94016" +289985,Wired Headphones,1,11.99,11/20/19 08:21,"732 Dogwood St, Los Angeles, CA 90001" +289986,Google Phone,1,600,11/06/19 13:24,"332 Ridge St, Seattle, WA 98101" +289986,Wired Headphones,1,11.99,11/06/19 13:24,"332 Ridge St, Seattle, WA 98101" +289987,AA Batteries (4-pack),1,3.84,11/26/19 09:57,"664 Park St, Boston, MA 02215" +289988,USB-C Charging Cable,1,11.95,11/19/19 18:21,"45 Highland St, Dallas, TX 75001" +289989,AA Batteries (4-pack),1,3.84,11/14/19 12:53,"57 North St, San Francisco, CA 94016" +289990,Wired Headphones,1,11.99,11/05/19 14:54,"547 Madison St, Los Angeles, CA 90001" +289991,LG Washing Machine,1,600.0,11/19/19 11:38,"107 North St, Atlanta, GA 30301" +289992,iPhone,1,700,11/26/19 19:03,"879 6th St, Los Angeles, CA 90001" +289992,Wired Headphones,1,11.99,11/26/19 19:03,"879 6th St, Los Angeles, CA 90001" +289993,Wired Headphones,1,11.99,11/08/19 18:55,"255 13th St, San Francisco, CA 94016" +289994,Google Phone,1,600,11/08/19 19:11,"878 West St, Los Angeles, CA 90001" +289995,Bose SoundSport Headphones,2,99.99,11/07/19 17:29,"688 Dogwood St, Boston, MA 02215" +289996,Wired Headphones,1,11.99,11/21/19 02:01,"461 Cherry St, Los Angeles, CA 90001" +289997,Wired Headphones,1,11.99,11/24/19 11:10,"541 13th St, Boston, MA 02215" +289998,Lightning Charging Cable,1,14.95,11/14/19 12:14,"894 Park St, New York City, NY 10001" +289999,Lightning Charging Cable,2,14.95,11/18/19 02:09,"61 Wilson St, Dallas, TX 75001" +290000,Apple Airpods Headphones,1,150,11/04/19 10:32,"674 Cherry St, New York City, NY 10001" +290001,34in Ultrawide Monitor,1,379.99,11/29/19 21:43,"988 8th St, San Francisco, CA 94016" +290002,Apple Airpods Headphones,1,150,11/25/19 15:27,"938 Dogwood St, Los Angeles, CA 90001" +290003,20in Monitor,1,109.99,11/23/19 11:23,"490 12th St, Atlanta, GA 30301" +290004,Lightning Charging Cable,1,14.95,11/09/19 17:35,"330 North St, Seattle, WA 98101" +290005,Wired Headphones,1,11.99,11/13/19 00:43,"442 Lakeview St, Atlanta, GA 30301" +290006,Macbook Pro Laptop,1,1700,11/25/19 19:12,"293 Dogwood St, Boston, MA 02215" +290007,AAA Batteries (4-pack),1,2.99,11/03/19 14:51,"76 Church St, San Francisco, CA 94016" +290008,Lightning Charging Cable,1,14.95,11/09/19 02:35,"107 Lake St, Seattle, WA 98101" +290009,Flatscreen TV,1,300,11/24/19 21:36,"468 Johnson St, New York City, NY 10001" +290010,Lightning Charging Cable,1,14.95,11/17/19 18:40,"629 8th St, San Francisco, CA 94016" +290011,Bose SoundSport Headphones,1,99.99,11/24/19 07:22,"979 Madison St, Portland, OR 97035" +290012,Lightning Charging Cable,1,14.95,11/27/19 14:48,"577 5th St, New York City, NY 10001" +290013,Apple Airpods Headphones,1,150,11/11/19 19:25,"5 Wilson St, Los Angeles, CA 90001" +290014,USB-C Charging Cable,2,11.95,11/03/19 18:55,"290 Lakeview St, San Francisco, CA 94016" +290015,USB-C Charging Cable,1,11.95,11/14/19 17:35,"677 8th St, San Francisco, CA 94016" +290016,Wired Headphones,1,11.99,11/12/19 19:48,"815 Hickory St, Austin, TX 73301" +290017,AA Batteries (4-pack),1,3.84,11/27/19 10:01,"48 Hill St, Los Angeles, CA 90001" +290018,AA Batteries (4-pack),1,3.84,11/30/19 19:17,"420 Chestnut St, Dallas, TX 75001" +290019,Lightning Charging Cable,1,14.95,11/16/19 18:31,"609 2nd St, Boston, MA 02215" +290020,Apple Airpods Headphones,1,150,11/20/19 23:21,"552 8th St, Los Angeles, CA 90001" +290021,Lightning Charging Cable,1,14.95,11/13/19 19:40,"688 Forest St, New York City, NY 10001" +290022,Bose SoundSport Headphones,1,99.99,11/04/19 16:32,"171 Center St, Los Angeles, CA 90001" +290023,Wired Headphones,1,11.99,11/12/19 22:24,"587 Sunset St, Seattle, WA 98101" +290024,Google Phone,1,600,11/07/19 10:48,"167 Park St, Los Angeles, CA 90001" +290024,USB-C Charging Cable,1,11.95,11/07/19 10:48,"167 Park St, Los Angeles, CA 90001" +290025,AA Batteries (4-pack),1,3.84,11/19/19 14:54,"452 7th St, San Francisco, CA 94016" +290026,Wired Headphones,1,11.99,11/23/19 11:15,"271 Jackson St, New York City, NY 10001" +290027,34in Ultrawide Monitor,1,379.99,11/14/19 21:36,"171 11th St, Dallas, TX 75001" +290028,Flatscreen TV,1,300,11/11/19 12:22,"791 Sunset St, Dallas, TX 75001" +290029,Bose SoundSport Headphones,1,99.99,11/19/19 10:25,"985 14th St, Boston, MA 02215" +290030,AA Batteries (4-pack),1,3.84,11/19/19 14:25,"432 6th St, New York City, NY 10001" +290031,AA Batteries (4-pack),1,3.84,11/06/19 16:34,"965 Forest St, Portland, OR 97035" +290032,AAA Batteries (4-pack),2,2.99,11/22/19 14:48,"448 Madison St, Los Angeles, CA 90001" +290033,AA Batteries (4-pack),1,3.84,11/21/19 22:25,"494 12th St, Atlanta, GA 30301" +290034,27in 4K Gaming Monitor,1,389.99,11/19/19 22:41,"861 Ridge St, New York City, NY 10001" +290035,AA Batteries (4-pack),1,3.84,11/24/19 13:40,"278 Cherry St, San Francisco, CA 94016" +290036,Flatscreen TV,1,300,11/26/19 16:23,"297 Lincoln St, Dallas, TX 75001" +290037,Lightning Charging Cable,1,14.95,11/22/19 21:17,"760 Hickory St, Dallas, TX 75001" +290038,Bose SoundSport Headphones,1,99.99,11/02/19 20:23,"251 Walnut St, New York City, NY 10001" +290039,iPhone,1,700,11/27/19 15:13,"918 Washington St, New York City, NY 10001" +290040,AA Batteries (4-pack),1,3.84,11/25/19 17:04,"769 7th St, New York City, NY 10001" +290041,27in 4K Gaming Monitor,1,389.99,11/06/19 17:25,"252 Pine St, San Francisco, CA 94016" +290042,AAA Batteries (4-pack),2,2.99,11/22/19 18:01,"942 Spruce St, San Francisco, CA 94016" +290043,iPhone,1,700,11/26/19 23:25,"105 5th St, Los Angeles, CA 90001" +290044,AAA Batteries (4-pack),1,2.99,11/11/19 10:44,"599 Willow St, New York City, NY 10001" +290045,Bose SoundSport Headphones,1,99.99,11/29/19 21:56,"649 7th St, Los Angeles, CA 90001" +290046,AA Batteries (4-pack),1,3.84,11/02/19 19:11,"447 12th St, Seattle, WA 98101" +290047,Lightning Charging Cable,1,14.95,11/07/19 10:56,"372 Park St, Los Angeles, CA 90001" +290048,27in FHD Monitor,1,149.99,11/26/19 22:45,"540 Meadow St, Seattle, WA 98101" +290049,Apple Airpods Headphones,1,150,11/16/19 13:27,"2 Jackson St, Atlanta, GA 30301" +290050,Google Phone,1,600,11/23/19 00:13,"38 Jackson St, Los Angeles, CA 90001" +290051,Lightning Charging Cable,1,14.95,11/21/19 23:34,"782 Ridge St, Boston, MA 02215" +290052,iPhone,1,700,11/21/19 09:14,"200 Lake St, Atlanta, GA 30301" +290053,Wired Headphones,1,11.99,11/20/19 17:22,"997 Park St, San Francisco, CA 94016" +290054,AA Batteries (4-pack),3,3.84,11/16/19 11:47,"866 2nd St, Los Angeles, CA 90001" +290055,Lightning Charging Cable,1,14.95,11/30/19 07:38,"109 Lincoln St, San Francisco, CA 94016" +290056,Lightning Charging Cable,1,14.95,11/12/19 00:45,"589 11th St, Los Angeles, CA 90001" +290057,Lightning Charging Cable,1,14.95,11/20/19 01:51,"400 West St, San Francisco, CA 94016" +290058,Wired Headphones,1,11.99,11/25/19 21:18,"754 Jefferson St, San Francisco, CA 94016" +290059,AAA Batteries (4-pack),1,2.99,11/10/19 15:01,"347 Wilson St, Boston, MA 02215" +290060,34in Ultrawide Monitor,1,379.99,11/01/19 12:35,"283 North St, Los Angeles, CA 90001" +290061,Lightning Charging Cable,1,14.95,12/01/19 00:13,"588 2nd St, Boston, MA 02215" +290062,USB-C Charging Cable,1,11.95,11/10/19 05:22,"292 Main St, Austin, TX 73301" +290063,Apple Airpods Headphones,1,150,11/08/19 12:57,"777 Church St, Portland, ME 04101" +290064,Wired Headphones,1,11.99,11/29/19 10:50,"878 12th St, San Francisco, CA 94016" +290065,AA Batteries (4-pack),2,3.84,11/23/19 20:01,"665 Jackson St, Dallas, TX 75001" +290066,AAA Batteries (4-pack),1,2.99,11/26/19 13:50,"737 6th St, San Francisco, CA 94016" +290067,27in FHD Monitor,1,149.99,11/08/19 21:43,"417 Meadow St, Portland, OR 97035" +290068,USB-C Charging Cable,1,11.95,11/02/19 20:37,"740 Maple St, Los Angeles, CA 90001" +290069,USB-C Charging Cable,1,11.95,11/29/19 19:08,"808 Wilson St, San Francisco, CA 94016" +290070,AA Batteries (4-pack),1,3.84,11/22/19 19:10,"841 Wilson St, Atlanta, GA 30301" +,,,,, +290071,Lightning Charging Cable,2,14.95,11/23/19 08:58,"607 Walnut St, San Francisco, CA 94016" +290072,AAA Batteries (4-pack),1,2.99,11/23/19 14:23,"351 5th St, Boston, MA 02215" +290073,27in FHD Monitor,1,149.99,11/02/19 20:32,"831 8th St, Boston, MA 02215" +290074,USB-C Charging Cable,1,11.95,11/13/19 15:49,"315 Spruce St, Los Angeles, CA 90001" +290075,AA Batteries (4-pack),1,3.84,11/15/19 12:52,"149 Hill St, New York City, NY 10001" +290075,Wired Headphones,1,11.99,11/15/19 12:52,"149 Hill St, New York City, NY 10001" +290076,27in FHD Monitor,1,149.99,11/26/19 16:32,"283 4th St, Seattle, WA 98101" +290077,27in FHD Monitor,1,149.99,11/12/19 16:10,"601 Main St, Boston, MA 02215" +290078,Lightning Charging Cable,1,14.95,11/23/19 12:08,"991 Hickory St, Los Angeles, CA 90001" +290079,Lightning Charging Cable,1,14.95,11/18/19 00:23,"724 8th St, Dallas, TX 75001" +290080,Lightning Charging Cable,1,14.95,11/26/19 07:42,"444 Wilson St, New York City, NY 10001" +290081,ThinkPad Laptop,1,999.99,11/08/19 14:18,"441 North St, Los Angeles, CA 90001" +290082,AA Batteries (4-pack),1,3.84,11/12/19 22:35,"3 West St, San Francisco, CA 94016" +290083,iPhone,1,700,11/19/19 10:15,"117 Chestnut St, Los Angeles, CA 90001" +290084,AA Batteries (4-pack),1,3.84,11/19/19 18:36,"381 Jackson St, San Francisco, CA 94016" +290085,Wired Headphones,1,11.99,11/19/19 18:05,"294 Washington St, San Francisco, CA 94016" +290086,34in Ultrawide Monitor,1,379.99,11/20/19 12:40,"420 North St, Atlanta, GA 30301" +290087,AA Batteries (4-pack),1,3.84,11/29/19 15:10,"944 Main St, San Francisco, CA 94016" +290088,Lightning Charging Cable,1,14.95,11/15/19 22:09,"158 Park St, San Francisco, CA 94016" +290089,27in FHD Monitor,1,149.99,11/20/19 19:57,"765 Highland St, San Francisco, CA 94016" +290090,USB-C Charging Cable,1,11.95,11/24/19 08:13,"816 Meadow St, Dallas, TX 75001" +290091,27in 4K Gaming Monitor,1,389.99,11/09/19 15:43,"419 Adams St, Dallas, TX 75001" +290092,USB-C Charging Cable,1,11.95,11/13/19 23:33,"840 12th St, Los Angeles, CA 90001" +290093,Lightning Charging Cable,1,14.95,11/26/19 11:29,"876 Maple St, Seattle, WA 98101" +290094,AA Batteries (4-pack),1,3.84,11/19/19 21:20,"405 South St, Los Angeles, CA 90001" +290095,Lightning Charging Cable,1,14.95,11/25/19 10:28,"391 Spruce St, New York City, NY 10001" +290096,Lightning Charging Cable,1,14.95,11/02/19 20:26,"20 9th St, San Francisco, CA 94016" +290097,AAA Batteries (4-pack),1,2.99,11/20/19 19:30,"617 Madison St, Los Angeles, CA 90001" +290098,AAA Batteries (4-pack),3,2.99,11/06/19 17:35,"956 Highland St, Los Angeles, CA 90001" +290099,Lightning Charging Cable,1,14.95,11/17/19 23:56,"914 River St, San Francisco, CA 94016" +290100,Wired Headphones,1,11.99,11/09/19 12:22,"600 Hickory St, Dallas, TX 75001" +290101,Bose SoundSport Headphones,1,99.99,11/10/19 10:01,"853 Jackson St, Boston, MA 02215" +290102,USB-C Charging Cable,1,11.95,11/14/19 08:33,"655 Chestnut St, New York City, NY 10001" +290103,AAA Batteries (4-pack),1,2.99,11/30/19 17:51,"506 Elm St, Portland, ME 04101" +290104,AAA Batteries (4-pack),2,2.99,11/21/19 18:27,"743 14th St, New York City, NY 10001" +290105,AAA Batteries (4-pack),1,2.99,11/09/19 17:54,"330 Dogwood St, San Francisco, CA 94016" +290106,AAA Batteries (4-pack),1,2.99,11/08/19 20:37,"499 Lincoln St, Portland, ME 04101" +290107,27in 4K Gaming Monitor,1,389.99,11/17/19 19:42,"618 10th St, Portland, OR 97035" +290108,27in 4K Gaming Monitor,1,389.99,11/03/19 10:06,"690 Walnut St, San Francisco, CA 94016" +290109,USB-C Charging Cable,1,11.95,11/15/19 19:31,"380 8th St, San Francisco, CA 94016" +290110,Flatscreen TV,1,300,11/04/19 09:37,"511 Main St, Los Angeles, CA 90001" +290111,Bose SoundSport Headphones,1,99.99,11/12/19 22:38,"684 11th St, Austin, TX 73301" +290112,Lightning Charging Cable,1,14.95,11/28/19 11:35,"845 Wilson St, Los Angeles, CA 90001" +290113,Flatscreen TV,1,300,11/01/19 20:51,"70 Ridge St, New York City, NY 10001" +290114,Bose SoundSport Headphones,1,99.99,11/23/19 09:14,"443 Spruce St, Austin, TX 73301" +290115,Vareebadd Phone,1,400,11/15/19 17:31,"989 10th St, Austin, TX 73301" +290115,USB-C Charging Cable,1,11.95,11/15/19 17:31,"989 10th St, Austin, TX 73301" +290116,Google Phone,1,600,11/04/19 18:22,"756 Jefferson St, San Francisco, CA 94016" +290117,USB-C Charging Cable,1,11.95,11/06/19 19:32,"289 Madison St, Boston, MA 02215" +290118,AAA Batteries (4-pack),3,2.99,11/14/19 10:04,"866 Jefferson St, San Francisco, CA 94016" +290119,AAA Batteries (4-pack),1,2.99,11/10/19 13:43,"789 6th St, Los Angeles, CA 90001" +290120,AAA Batteries (4-pack),1,2.99,11/23/19 17:51,"753 Ridge St, Seattle, WA 98101" +290121,ThinkPad Laptop,1,999.99,11/03/19 19:04,"430 Cedar St, Austin, TX 73301" +290122,Apple Airpods Headphones,1,150,11/13/19 12:34,"637 Pine St, Boston, MA 02215" +290123,LG Dryer,1,600.0,11/13/19 03:21,"103 Hickory St, San Francisco, CA 94016" +290124,Bose SoundSport Headphones,1,99.99,11/30/19 19:13,"977 Wilson St, San Francisco, CA 94016" +290125,Bose SoundSport Headphones,1,99.99,11/24/19 13:31,"306 6th St, New York City, NY 10001" +290126,20in Monitor,1,109.99,11/24/19 15:19,"377 11th St, San Francisco, CA 94016" +290127,Apple Airpods Headphones,1,150,11/28/19 22:56,"654 Center St, Dallas, TX 75001" +290128,AAA Batteries (4-pack),1,2.99,11/08/19 14:11,"675 Dogwood St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +290129,Apple Airpods Headphones,1,150,11/11/19 10:15,"68 Lakeview St, Portland, OR 97035" +290130,Bose SoundSport Headphones,1,99.99,11/20/19 14:22,"602 Ridge St, Atlanta, GA 30301" +290131,Lightning Charging Cable,1,14.95,11/23/19 14:56,"256 Elm St, Seattle, WA 98101" +290132,Lightning Charging Cable,1,14.95,11/04/19 17:38,"617 Hill St, San Francisco, CA 94016" +290133,Lightning Charging Cable,1,14.95,11/08/19 18:54,"933 1st St, Dallas, TX 75001" +290134,AA Batteries (4-pack),1,3.84,11/20/19 17:51,"449 5th St, Dallas, TX 75001" +290135,27in FHD Monitor,1,149.99,11/23/19 08:27,"282 West St, Los Angeles, CA 90001" +290136,Apple Airpods Headphones,1,150,11/16/19 13:46,"352 Ridge St, Austin, TX 73301" +290137,AA Batteries (4-pack),1,3.84,11/27/19 08:37,"913 Ridge St, Austin, TX 73301" +290138,27in FHD Monitor,1,149.99,11/20/19 13:30,"328 Forest St, San Francisco, CA 94016" +290139,USB-C Charging Cable,1,11.95,11/16/19 15:48,"494 Washington St, Dallas, TX 75001" +290140,Wired Headphones,1,11.99,11/06/19 18:42,"795 Adams St, Austin, TX 73301" +290141,Flatscreen TV,1,300,11/23/19 19:50,"809 Wilson St, Los Angeles, CA 90001" +290142,Bose SoundSport Headphones,1,99.99,11/25/19 16:19,"491 Ridge St, New York City, NY 10001" +290143,AA Batteries (4-pack),1,3.84,11/16/19 19:24,"468 8th St, Portland, OR 97035" +290144,Google Phone,1,600,11/25/19 13:48,"983 River St, Los Angeles, CA 90001" +290144,USB-C Charging Cable,1,11.95,11/25/19 13:48,"983 River St, Los Angeles, CA 90001" +290145,27in FHD Monitor,1,149.99,11/25/19 05:55,"493 Lake St, Dallas, TX 75001" +290146,AA Batteries (4-pack),1,3.84,11/14/19 19:56,"337 Lake St, Seattle, WA 98101" +290147,27in 4K Gaming Monitor,1,389.99,11/18/19 16:57,"795 4th St, Boston, MA 02215" +290148,AAA Batteries (4-pack),1,2.99,11/23/19 21:26,"76 4th St, New York City, NY 10001" +290149,Apple Airpods Headphones,1,150,11/22/19 18:13,"50 13th St, Atlanta, GA 30301" +290150,ThinkPad Laptop,1,999.99,11/14/19 21:05,"669 South St, Boston, MA 02215" +290151,AA Batteries (4-pack),1,3.84,11/07/19 20:21,"548 Washington St, San Francisco, CA 94016" +290152,Apple Airpods Headphones,1,150,11/02/19 18:51,"388 River St, New York City, NY 10001" +290153,USB-C Charging Cable,1,11.95,11/28/19 19:20,"108 Meadow St, Dallas, TX 75001" +290154,AAA Batteries (4-pack),1,2.99,11/06/19 18:14,"687 11th St, Atlanta, GA 30301" +290155,AAA Batteries (4-pack),1,2.99,11/11/19 12:10,"701 Madison St, Atlanta, GA 30301" +290156,AA Batteries (4-pack),2,3.84,11/24/19 17:16,"284 Highland St, Seattle, WA 98101" +290157,Bose SoundSport Headphones,1,99.99,11/09/19 15:57,"785 Highland St, New York City, NY 10001" +290158,27in FHD Monitor,1,149.99,11/19/19 10:52,"561 Cedar St, Portland, OR 97035" +290159,Apple Airpods Headphones,1,150,11/23/19 19:59,"746 Jackson St, San Francisco, CA 94016" +290160,AA Batteries (4-pack),1,3.84,11/09/19 10:27,"829 9th St, Los Angeles, CA 90001" +290161,AAA Batteries (4-pack),1,2.99,11/17/19 11:48,"978 West St, Austin, TX 73301" +290162,Wired Headphones,1,11.99,11/12/19 15:30,"37 South St, Atlanta, GA 30301" +290163,ThinkPad Laptop,1,999.99,11/15/19 20:22,"301 1st St, San Francisco, CA 94016" +290164,AA Batteries (4-pack),4,3.84,11/05/19 20:19,"400 Madison St, Dallas, TX 75001" +290165,iPhone,1,700,11/22/19 23:39,"320 Chestnut St, Portland, OR 97035" +290166,Wired Headphones,1,11.99,11/02/19 11:21,"987 Pine St, Atlanta, GA 30301" +290167,Lightning Charging Cable,1,14.95,11/26/19 14:54,"367 Forest St, New York City, NY 10001" +290168,Google Phone,1,600,11/02/19 22:11,"48 Hickory St, San Francisco, CA 94016" +290169,Lightning Charging Cable,1,14.95,11/05/19 19:47,"139 Main St, Dallas, TX 75001" +290170,iPhone,1,700,11/13/19 09:50,"559 Walnut St, New York City, NY 10001" +290171,AA Batteries (4-pack),1,3.84,11/28/19 10:43,"597 1st St, Boston, MA 02215" +290172,27in FHD Monitor,1,149.99,11/11/19 19:43,"96 South St, Boston, MA 02215" +290173,USB-C Charging Cable,1,11.95,11/29/19 14:36,"952 Wilson St, New York City, NY 10001" +290174,34in Ultrawide Monitor,1,379.99,11/28/19 18:11,"840 Maple St, New York City, NY 10001" +290175,Bose SoundSport Headphones,1,99.99,11/15/19 19:26,"830 Pine St, Los Angeles, CA 90001" +290176,Lightning Charging Cable,1,14.95,11/27/19 21:58,"458 10th St, Los Angeles, CA 90001" +290177,AA Batteries (4-pack),1,3.84,11/24/19 18:05,"31 Cedar St, Atlanta, GA 30301" +290178,Wired Headphones,1,11.99,11/22/19 10:04,"501 13th St, Los Angeles, CA 90001" +290179,Vareebadd Phone,1,400,11/21/19 13:37,"481 Ridge St, Seattle, WA 98101" +290180,AAA Batteries (4-pack),1,2.99,11/08/19 11:42,"857 Walnut St, New York City, NY 10001" +290181,Lightning Charging Cable,1,14.95,11/29/19 15:00,"739 1st St, San Francisco, CA 94016" +290182,34in Ultrawide Monitor,1,379.99,11/30/19 22:04,"274 Washington St, New York City, NY 10001" +290183,27in 4K Gaming Monitor,1,389.99,11/08/19 20:41,"621 Elm St, San Francisco, CA 94016" +290184,AAA Batteries (4-pack),1,2.99,11/07/19 12:49,"456 13th St, Boston, MA 02215" +290185,Macbook Pro Laptop,1,1700,11/13/19 22:18,"153 Johnson St, Dallas, TX 75001" +290186,AA Batteries (4-pack),1,3.84,11/22/19 23:49,"572 2nd St, New York City, NY 10001" +290187,AAA Batteries (4-pack),2,2.99,11/05/19 20:22,"165 Church St, Los Angeles, CA 90001" +290188,Macbook Pro Laptop,1,1700,11/22/19 00:00,"804 Jackson St, Atlanta, GA 30301" +290189,Vareebadd Phone,1,400,11/13/19 15:01,"116 Johnson St, Los Angeles, CA 90001" +290190,AAA Batteries (4-pack),1,2.99,11/02/19 05:58,"808 9th St, Seattle, WA 98101" +290191,Macbook Pro Laptop,1,1700,11/07/19 15:19,"262 4th St, Boston, MA 02215" +290192,USB-C Charging Cable,1,11.95,11/10/19 09:31,"665 Pine St, San Francisco, CA 94016" +290193,Apple Airpods Headphones,1,150,11/02/19 17:47,"836 4th St, Portland, OR 97035" +290194,Wired Headphones,1,11.99,11/17/19 19:24,"612 Washington St, San Francisco, CA 94016" +290195,Lightning Charging Cable,1,14.95,11/10/19 16:05,"983 8th St, San Francisco, CA 94016" +290196,AA Batteries (4-pack),2,3.84,11/04/19 19:33,"501 11th St, Seattle, WA 98101" +290197,AAA Batteries (4-pack),1,2.99,11/09/19 22:24,"777 7th St, San Francisco, CA 94016" +290198,Flatscreen TV,1,300,11/13/19 10:16,"117 Ridge St, Boston, MA 02215" +290199,Wired Headphones,1,11.99,11/02/19 23:31,"740 North St, Boston, MA 02215" +290200,Lightning Charging Cable,1,14.95,11/28/19 08:19,"592 Johnson St, New York City, NY 10001" +290201,Bose SoundSport Headphones,1,99.99,11/20/19 09:37,"831 Church St, Dallas, TX 75001" +290202,Wired Headphones,2,11.99,11/03/19 09:38,"207 10th St, New York City, NY 10001" +290203,AAA Batteries (4-pack),1,2.99,11/13/19 13:09,"923 5th St, Austin, TX 73301" +290204,Lightning Charging Cable,2,14.95,11/26/19 12:34,"451 Willow St, San Francisco, CA 94016" +290205,AA Batteries (4-pack),2,3.84,11/17/19 18:42,"884 Chestnut St, Los Angeles, CA 90001" +290206,AA Batteries (4-pack),1,3.84,11/01/19 22:02,"617 River St, San Francisco, CA 94016" +290207,Flatscreen TV,1,300,11/19/19 10:50,"899 Walnut St, New York City, NY 10001" +290208,Lightning Charging Cable,1,14.95,11/22/19 19:57,"208 Spruce St, New York City, NY 10001" +290209,Bose SoundSport Headphones,1,99.99,11/22/19 21:37,"671 Lincoln St, Los Angeles, CA 90001" +290210,iPhone,1,700,11/30/19 22:26,"568 Forest St, Boston, MA 02215" +290211,AA Batteries (4-pack),3,3.84,11/07/19 20:45,"628 Spruce St, Los Angeles, CA 90001" +290212,AAA Batteries (4-pack),2,2.99,11/06/19 18:08,"563 West St, Dallas, TX 75001" +290213,27in 4K Gaming Monitor,1,389.99,11/23/19 21:20,"214 Willow St, Los Angeles, CA 90001" +290214,Bose SoundSport Headphones,1,99.99,11/15/19 17:31,"830 Park St, New York City, NY 10001" +290215,Wired Headphones,1,11.99,11/11/19 09:02,"539 Ridge St, San Francisco, CA 94016" +290216,Lightning Charging Cable,1,14.95,11/25/19 02:57,"837 Park St, New York City, NY 10001" +290217,Apple Airpods Headphones,1,150,11/29/19 14:01,"343 13th St, Austin, TX 73301" +290218,AAA Batteries (4-pack),1,2.99,11/27/19 21:51,"426 South St, Los Angeles, CA 90001" +290219,Wired Headphones,1,11.99,11/21/19 12:32,"813 Washington St, Austin, TX 73301" +290220,Wired Headphones,1,11.99,11/10/19 19:42,"980 1st St, San Francisco, CA 94016" +290221,34in Ultrawide Monitor,1,379.99,11/10/19 12:51,"379 Church St, Boston, MA 02215" +290222,USB-C Charging Cable,1,11.95,11/26/19 22:28,"850 12th St, Atlanta, GA 30301" +290223,Wired Headphones,1,11.99,11/04/19 10:36,"200 Washington St, Seattle, WA 98101" +290224,Wired Headphones,1,11.99,11/26/19 23:26,"990 8th St, New York City, NY 10001" +290225,Bose SoundSport Headphones,1,99.99,11/19/19 07:26,"990 Pine St, Seattle, WA 98101" +290226,Wired Headphones,1,11.99,11/15/19 12:26,"366 Maple St, San Francisco, CA 94016" +290227,34in Ultrawide Monitor,1,379.99,11/22/19 17:18,"17 9th St, Austin, TX 73301" +290228,Lightning Charging Cable,1,14.95,11/08/19 13:42,"799 Lake St, Boston, MA 02215" +290228,ThinkPad Laptop,1,999.99,11/08/19 13:42,"799 Lake St, Boston, MA 02215" +290229,iPhone,1,700,11/23/19 16:28,"270 Church St, Atlanta, GA 30301" +290230,Lightning Charging Cable,1,14.95,11/15/19 08:52,"61 Jefferson St, Los Angeles, CA 90001" +290231,Bose SoundSport Headphones,1,99.99,11/23/19 19:21,"148 Meadow St, Boston, MA 02215" +290232,USB-C Charging Cable,1,11.95,11/02/19 18:16,"269 Highland St, New York City, NY 10001" +290233,USB-C Charging Cable,1,11.95,11/22/19 14:03,"211 8th St, San Francisco, CA 94016" +290234,AAA Batteries (4-pack),3,2.99,11/26/19 14:11,"445 Center St, Portland, OR 97035" +290235,AA Batteries (4-pack),1,3.84,11/24/19 18:00,"378 Washington St, Dallas, TX 75001" +290236,27in FHD Monitor,1,149.99,11/02/19 14:31,"546 Washington St, San Francisco, CA 94016" +290237,Lightning Charging Cable,1,14.95,11/17/19 11:19,"121 Lake St, Boston, MA 02215" +290238,USB-C Charging Cable,1,11.95,11/01/19 15:05,"213 Ridge St, Atlanta, GA 30301" +,,,,, +290239,Wired Headphones,2,11.99,11/12/19 19:19,"363 Madison St, San Francisco, CA 94016" +290240,Macbook Pro Laptop,1,1700,11/11/19 04:26,"759 Ridge St, San Francisco, CA 94016" +290241,AA Batteries (4-pack),1,3.84,11/03/19 10:51,"906 Pine St, Los Angeles, CA 90001" +290242,AA Batteries (4-pack),1,3.84,11/10/19 06:51,"701 Hill St, New York City, NY 10001" +290243,Wired Headphones,1,11.99,11/23/19 17:49,"975 Chestnut St, Portland, ME 04101" +290244,iPhone,1,700,11/22/19 00:38,"384 Hill St, Dallas, TX 75001" +290244,Apple Airpods Headphones,1,150,11/22/19 00:38,"384 Hill St, Dallas, TX 75001" +290245,AA Batteries (4-pack),1,3.84,11/11/19 16:34,"688 North St, Boston, MA 02215" +290246,AAA Batteries (4-pack),1,2.99,11/23/19 22:12,"309 Forest St, Austin, TX 73301" +290247,AA Batteries (4-pack),1,3.84,11/23/19 09:12,"727 13th St, San Francisco, CA 94016" +290248,USB-C Charging Cable,1,11.95,11/10/19 11:03,"482 2nd St, San Francisco, CA 94016" +290249,USB-C Charging Cable,1,11.95,11/08/19 12:12,"93 10th St, Boston, MA 02215" +290250,Flatscreen TV,1,300,11/03/19 18:49,"932 Hill St, Boston, MA 02215" +290251,Wired Headphones,1,11.99,11/13/19 11:30,"841 West St, Los Angeles, CA 90001" +290252,AA Batteries (4-pack),1,3.84,11/04/19 20:03,"585 12th St, San Francisco, CA 94016" +290253,Lightning Charging Cable,1,14.95,11/07/19 10:26,"702 Hill St, Boston, MA 02215" +290254,Lightning Charging Cable,1,14.95,11/27/19 16:25,"689 Cedar St, Boston, MA 02215" +290254,Lightning Charging Cable,1,14.95,11/27/19 16:25,"689 Cedar St, Boston, MA 02215" +290255,USB-C Charging Cable,1,11.95,11/13/19 18:38,"349 Church St, New York City, NY 10001" +290256,Lightning Charging Cable,1,14.95,11/22/19 18:28,"830 Meadow St, Los Angeles, CA 90001" +290257,Lightning Charging Cable,1,14.95,11/07/19 18:38,"371 Highland St, Los Angeles, CA 90001" +290258,Bose SoundSport Headphones,1,99.99,11/20/19 16:13,"786 Elm St, Atlanta, GA 30301" +290259,27in FHD Monitor,1,149.99,11/15/19 12:57,"637 10th St, Boston, MA 02215" +290260,20in Monitor,1,109.99,11/16/19 14:25,"699 1st St, Atlanta, GA 30301" +290261,USB-C Charging Cable,2,11.95,11/12/19 21:05,"985 Lake St, New York City, NY 10001" +290262,Apple Airpods Headphones,1,150,11/09/19 14:30,"872 9th St, Los Angeles, CA 90001" +290263,Bose SoundSport Headphones,1,99.99,11/25/19 12:04,"216 14th St, Dallas, TX 75001" +290264,27in FHD Monitor,1,149.99,11/05/19 19:36,"186 5th St, New York City, NY 10001" +290265,27in 4K Gaming Monitor,1,389.99,11/17/19 06:50,"510 Willow St, Atlanta, GA 30301" +290266,Lightning Charging Cable,1,14.95,11/25/19 10:43,"152 7th St, San Francisco, CA 94016" +290267,Lightning Charging Cable,1,14.95,11/28/19 18:09,"755 Wilson St, Seattle, WA 98101" +290268,Bose SoundSport Headphones,1,99.99,11/01/19 08:59,"808 Spruce St, Dallas, TX 75001" +290269,AAA Batteries (4-pack),4,2.99,11/03/19 19:56,"501 Cedar St, San Francisco, CA 94016" +290270,Lightning Charging Cable,1,14.95,11/29/19 03:12,"65 7th St, Boston, MA 02215" +290271,AAA Batteries (4-pack),1,2.99,11/03/19 14:02,"741 7th St, Austin, TX 73301" +290272,Wired Headphones,1,11.99,11/12/19 18:55,"790 9th St, Seattle, WA 98101" +290273,AA Batteries (4-pack),1,3.84,11/05/19 19:57,"859 11th St, Boston, MA 02215" +290274,Lightning Charging Cable,1,14.95,11/21/19 19:38,"576 Adams St, Seattle, WA 98101" +290275,Lightning Charging Cable,1,14.95,11/09/19 17:09,"262 13th St, Seattle, WA 98101" +290276,Bose SoundSport Headphones,1,99.99,11/30/19 17:55,"128 10th St, Portland, OR 97035" +290277,AAA Batteries (4-pack),1,2.99,11/08/19 20:30,"541 Walnut St, Boston, MA 02215" +290278,Apple Airpods Headphones,1,150,11/12/19 20:35,"987 Sunset St, San Francisco, CA 94016" +290279,34in Ultrawide Monitor,1,379.99,11/30/19 12:40,"345 Hickory St, New York City, NY 10001" +290280,USB-C Charging Cable,1,11.95,11/29/19 08:03,"218 Lincoln St, Dallas, TX 75001" +290281,27in FHD Monitor,1,149.99,11/25/19 08:09,"617 6th St, Los Angeles, CA 90001" +290282,Vareebadd Phone,1,400,11/11/19 23:22,"895 Hickory St, Los Angeles, CA 90001" +290283,Bose SoundSport Headphones,1,99.99,11/29/19 10:50,"424 6th St, New York City, NY 10001" +290284,AA Batteries (4-pack),3,3.84,11/05/19 17:59,"285 Hill St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +290285,20in Monitor,1,109.99,11/21/19 10:10,"702 13th St, Boston, MA 02215" +290286,27in 4K Gaming Monitor,1,389.99,11/20/19 14:14,"346 Park St, Austin, TX 73301" +290287,Flatscreen TV,1,300,11/16/19 21:10,"652 Main St, New York City, NY 10001" +290288,34in Ultrawide Monitor,1,379.99,11/21/19 16:08,"73 Forest St, Dallas, TX 75001" +290289,Apple Airpods Headphones,1,150,11/30/19 21:38,"199 Johnson St, San Francisco, CA 94016" +290290,AA Batteries (4-pack),1,3.84,11/15/19 10:31,"716 5th St, Los Angeles, CA 90001" +290291,AAA Batteries (4-pack),1,2.99,11/08/19 20:38,"606 Church St, San Francisco, CA 94016" +290292,AAA Batteries (4-pack),1,2.99,11/13/19 09:19,"250 Spruce St, Los Angeles, CA 90001" +290293,Wired Headphones,1,11.99,11/27/19 07:59,"201 Meadow St, Los Angeles, CA 90001" +290294,AA Batteries (4-pack),1,3.84,11/06/19 18:50,"318 Willow St, Boston, MA 02215" +290295,Google Phone,1,600,11/27/19 23:58,"709 14th St, Boston, MA 02215" +290295,Bose SoundSport Headphones,1,99.99,11/27/19 23:58,"709 14th St, Boston, MA 02215" +290296,AAA Batteries (4-pack),1,2.99,11/19/19 23:45,"602 Elm St, New York City, NY 10001" +290297,Bose SoundSport Headphones,1,99.99,11/07/19 05:25,"324 Lakeview St, San Francisco, CA 94016" +290298,AAA Batteries (4-pack),1,2.99,11/23/19 12:07,"276 Park St, San Francisco, CA 94016" +290299,ThinkPad Laptop,1,999.99,11/20/19 20:19,"558 14th St, New York City, NY 10001" +290300,Wired Headphones,1,11.99,11/26/19 20:28,"711 Pine St, Portland, OR 97035" +290301,USB-C Charging Cable,1,11.95,11/22/19 11:31,"73 River St, New York City, NY 10001" +290302,USB-C Charging Cable,1,11.95,11/07/19 23:33,"168 Maple St, New York City, NY 10001" +290303,iPhone,1,700,11/24/19 10:39,"254 Lake St, New York City, NY 10001" +290304,Flatscreen TV,1,300,11/06/19 10:37,"236 5th St, Los Angeles, CA 90001" +290305,Lightning Charging Cable,1,14.95,11/29/19 12:32,"921 2nd St, San Francisco, CA 94016" +290306,Flatscreen TV,1,300,11/26/19 10:45,"336 Cherry St, Austin, TX 73301" +290307,Apple Airpods Headphones,1,150,11/17/19 10:09,"608 5th St, Portland, OR 97035" +290308,34in Ultrawide Monitor,1,379.99,11/27/19 23:59,"746 8th St, San Francisco, CA 94016" +290309,Apple Airpods Headphones,1,150,11/14/19 20:44,"917 Lincoln St, Los Angeles, CA 90001" +290310,Macbook Pro Laptop,1,1700,11/02/19 19:15,"235 Madison St, San Francisco, CA 94016" +290311,USB-C Charging Cable,1,11.95,11/16/19 12:20,"251 West St, New York City, NY 10001" +290312,Apple Airpods Headphones,1,150,11/17/19 20:51,"62 Elm St, New York City, NY 10001" +290313,20in Monitor,1,109.99,11/13/19 18:45,"183 Spruce St, New York City, NY 10001" +290314,AAA Batteries (4-pack),3,2.99,11/25/19 22:46,"27 River St, Los Angeles, CA 90001" +290315,AAA Batteries (4-pack),1,2.99,11/20/19 16:46,"165 Cherry St, Austin, TX 73301" +290316,AAA Batteries (4-pack),2,2.99,11/27/19 18:15,"624 Spruce St, San Francisco, CA 94016" +290317,AAA Batteries (4-pack),2,2.99,11/18/19 20:36,"76 Main St, Dallas, TX 75001" +290318,USB-C Charging Cable,2,11.95,11/12/19 14:36,"911 Lakeview St, New York City, NY 10001" +290319,Macbook Pro Laptop,1,1700,11/22/19 19:28,"345 Dogwood St, San Francisco, CA 94016" +290320,AAA Batteries (4-pack),1,2.99,11/19/19 21:31,"189 2nd St, Los Angeles, CA 90001" +290321,Apple Airpods Headphones,1,150,11/20/19 15:32,"814 Willow St, Portland, OR 97035" +290322,Bose SoundSport Headphones,1,99.99,11/05/19 13:00,"498 Center St, San Francisco, CA 94016" +290323,Apple Airpods Headphones,1,150,11/25/19 09:31,"676 13th St, Dallas, TX 75001" +290324,20in Monitor,1,109.99,11/14/19 17:28,"758 Cedar St, New York City, NY 10001" +290325,20in Monitor,1,109.99,11/15/19 14:41,"713 Main St, Boston, MA 02215" +290326,Bose SoundSport Headphones,1,99.99,11/07/19 16:41,"762 Church St, Portland, OR 97035" +290327,Apple Airpods Headphones,1,150,11/28/19 22:37,"339 Sunset St, Seattle, WA 98101" +290328,Bose SoundSport Headphones,1,99.99,11/15/19 18:54,"468 North St, San Francisco, CA 94016" +290329,Wired Headphones,1,11.99,11/23/19 13:23,"642 River St, San Francisco, CA 94016" +290330,Bose SoundSport Headphones,1,99.99,11/16/19 18:45,"555 Spruce St, Portland, OR 97035" +290331,AA Batteries (4-pack),1,3.84,11/28/19 13:43,"807 4th St, San Francisco, CA 94016" +290332,Macbook Pro Laptop,1,1700,11/28/19 18:48,"588 Lakeview St, Los Angeles, CA 90001" +290333,AAA Batteries (4-pack),1,2.99,11/21/19 13:11,"409 Hill St, San Francisco, CA 94016" +290334,Bose SoundSport Headphones,1,99.99,11/13/19 14:31,"466 Pine St, San Francisco, CA 94016" +290335,AAA Batteries (4-pack),1,2.99,11/01/19 16:19,"862 5th St, Los Angeles, CA 90001" +290336,Bose SoundSport Headphones,1,99.99,11/07/19 09:50,"764 Hill St, San Francisco, CA 94016" +290337,ThinkPad Laptop,1,999.99,11/02/19 13:31,"573 Forest St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +290338,Wired Headphones,1,11.99,11/13/19 18:09,"756 Willow St, San Francisco, CA 94016" +290339,iPhone,1,700,11/03/19 08:44,"494 8th St, Dallas, TX 75001" +290340,AA Batteries (4-pack),1,3.84,11/21/19 20:56,"618 5th St, Boston, MA 02215" +290341,Apple Airpods Headphones,1,150,11/05/19 18:45,"708 Pine St, San Francisco, CA 94016" +290342,USB-C Charging Cable,1,11.95,11/09/19 19:06,"202 Forest St, Dallas, TX 75001" +290343,USB-C Charging Cable,1,11.95,11/25/19 14:52,"31 Spruce St, Atlanta, GA 30301" +290344,iPhone,1,700,11/16/19 11:38,"618 Jackson St, San Francisco, CA 94016" +290345,USB-C Charging Cable,1,11.95,11/08/19 19:15,"968 Maple St, San Francisco, CA 94016" +290346,Lightning Charging Cable,1,14.95,11/20/19 10:30,"713 Willow St, Boston, MA 02215" +290347,Bose SoundSport Headphones,1,99.99,11/24/19 10:37,"252 Spruce St, Los Angeles, CA 90001" +290348,USB-C Charging Cable,1,11.95,11/22/19 19:24,"415 Church St, Seattle, WA 98101" +290349,Google Phone,1,600,11/03/19 07:43,"637 Ridge St, Los Angeles, CA 90001" +290350,USB-C Charging Cable,1,11.95,11/18/19 18:31,"593 Cedar St, San Francisco, CA 94016" +290351,AAA Batteries (4-pack),1,2.99,11/02/19 21:36,"673 Pine St, Los Angeles, CA 90001" +290352,Macbook Pro Laptop,1,1700,11/11/19 12:05,"476 Ridge St, New York City, NY 10001" +290353,Wired Headphones,1,11.99,11/06/19 19:25,"363 Hickory St, San Francisco, CA 94016" +290354,iPhone,1,700,11/19/19 19:47,"257 Spruce St, Atlanta, GA 30301" +290354,Wired Headphones,1,11.99,11/19/19 19:47,"257 Spruce St, Atlanta, GA 30301" +290355,ThinkPad Laptop,1,999.99,11/05/19 10:55,"299 Lincoln St, Boston, MA 02215" +290356,20in Monitor,1,109.99,11/10/19 10:54,"29 Willow St, Dallas, TX 75001" +290357,AAA Batteries (4-pack),2,2.99,11/19/19 10:02,"929 Pine St, Boston, MA 02215" +290358,Wired Headphones,1,11.99,11/21/19 21:44,"562 Hill St, San Francisco, CA 94016" +290359,Lightning Charging Cable,1,14.95,11/16/19 14:25,"549 West St, Boston, MA 02215" +290360,AA Batteries (4-pack),1,3.84,11/13/19 20:58,"367 River St, Dallas, TX 75001" +290361,Bose SoundSport Headphones,1,99.99,11/12/19 17:57,"95 Meadow St, San Francisco, CA 94016" +290362,USB-C Charging Cable,1,11.95,11/14/19 13:13,"846 Jackson St, Los Angeles, CA 90001" +290363,Lightning Charging Cable,1,14.95,11/14/19 16:03,"765 Pine St, New York City, NY 10001" +290364,27in FHD Monitor,1,149.99,11/27/19 10:57,"659 Center St, Atlanta, GA 30301" +290365,34in Ultrawide Monitor,1,379.99,11/08/19 12:27,"192 Sunset St, San Francisco, CA 94016" +290366,Apple Airpods Headphones,1,150,11/21/19 11:51,"865 Hickory St, San Francisco, CA 94016" +290367,Lightning Charging Cable,1,14.95,11/20/19 19:34,"450 12th St, Dallas, TX 75001" +290368,Lightning Charging Cable,1,14.95,11/19/19 20:25,"839 Elm St, Los Angeles, CA 90001" +290369,iPhone,1,700,11/02/19 12:39,"948 North St, San Francisco, CA 94016" +290370,Wired Headphones,1,11.99,11/13/19 19:37,"743 Madison St, Dallas, TX 75001" +290371,Wired Headphones,1,11.99,11/02/19 13:39,"821 West St, New York City, NY 10001" +290372,USB-C Charging Cable,1,11.95,11/22/19 11:03,"640 Maple St, San Francisco, CA 94016" +290373,Lightning Charging Cable,1,14.95,11/22/19 16:17,"879 West St, Portland, OR 97035" +290374,Lightning Charging Cable,1,14.95,11/14/19 21:13,"854 8th St, San Francisco, CA 94016" +290375,Lightning Charging Cable,1,14.95,11/22/19 14:24,"456 Walnut St, Boston, MA 02215" +290376,Lightning Charging Cable,1,14.95,11/25/19 21:22,"214 10th St, Los Angeles, CA 90001" +290377,27in FHD Monitor,1,149.99,11/23/19 09:51,"202 Wilson St, New York City, NY 10001" +290378,AAA Batteries (4-pack),1,2.99,11/05/19 23:52,"516 Center St, Los Angeles, CA 90001" +290379,27in FHD Monitor,1,149.99,11/26/19 11:24,"587 Adams St, Boston, MA 02215" +290380,AA Batteries (4-pack),1,3.84,11/26/19 17:29,"66 Cherry St, Boston, MA 02215" +290381,34in Ultrawide Monitor,1,379.99,11/15/19 22:36,"311 Pine St, Austin, TX 73301" +290382,Flatscreen TV,1,300,11/23/19 21:09,"502 Spruce St, New York City, NY 10001" +290383,USB-C Charging Cable,1,11.95,11/14/19 11:01,"219 7th St, Los Angeles, CA 90001" +290384,Lightning Charging Cable,2,14.95,11/13/19 20:58,"614 12th St, Seattle, WA 98101" +290385,Macbook Pro Laptop,1,1700,11/05/19 22:35,"129 Park St, Seattle, WA 98101" +290386,Flatscreen TV,1,300,11/15/19 00:07,"988 Johnson St, Portland, OR 97035" +290387,USB-C Charging Cable,1,11.95,11/09/19 01:01,"424 River St, Atlanta, GA 30301" +290388,27in 4K Gaming Monitor,1,389.99,11/22/19 22:47,"987 Highland St, New York City, NY 10001" +290389,USB-C Charging Cable,1,11.95,11/16/19 21:44,"837 North St, Atlanta, GA 30301" +290390,27in FHD Monitor,1,149.99,11/04/19 13:47,"589 River St, Atlanta, GA 30301" +290391,Apple Airpods Headphones,1,150,11/24/19 10:36,"497 River St, Los Angeles, CA 90001" +290392,AA Batteries (4-pack),2,3.84,11/08/19 18:09,"513 Maple St, Los Angeles, CA 90001" +290393,Flatscreen TV,1,300,11/07/19 18:28,"107 North St, Atlanta, GA 30301" +290394,AA Batteries (4-pack),2,3.84,11/24/19 11:46,"824 Chestnut St, San Francisco, CA 94016" +290395,LG Dryer,1,600.0,11/09/19 11:22,"750 13th St, Seattle, WA 98101" +290396,Wired Headphones,1,11.99,11/14/19 10:37,"746 Church St, Seattle, WA 98101" +290397,Wired Headphones,1,11.99,11/25/19 19:55,"314 Elm St, San Francisco, CA 94016" +290398,LG Washing Machine,1,600.0,11/06/19 20:36,"286 South St, Atlanta, GA 30301" +290399,Wired Headphones,1,11.99,11/20/19 09:27,"324 Madison St, San Francisco, CA 94016" +290400,Flatscreen TV,1,300,11/05/19 19:22,"89 West St, Boston, MA 02215" +290401,27in FHD Monitor,1,149.99,11/06/19 15:59,"462 Pine St, San Francisco, CA 94016" +290402,AAA Batteries (4-pack),1,2.99,11/06/19 10:54,"955 11th St, Boston, MA 02215" +290403,20in Monitor,1,109.99,11/10/19 15:15,"195 13th St, Los Angeles, CA 90001" +290404,AA Batteries (4-pack),1,3.84,11/15/19 18:14,"916 4th St, Dallas, TX 75001" +290405,Apple Airpods Headphones,1,150,11/06/19 19:29,"753 7th St, San Francisco, CA 94016" +290406,AA Batteries (4-pack),1,3.84,11/10/19 11:06,"637 Wilson St, Los Angeles, CA 90001" +290407,USB-C Charging Cable,1,11.95,11/05/19 18:45,"899 Dogwood St, Los Angeles, CA 90001" +290408,AA Batteries (4-pack),2,3.84,11/04/19 10:24,"210 10th St, Portland, OR 97035" +290409,USB-C Charging Cable,1,11.95,11/09/19 01:36,"363 12th St, Dallas, TX 75001" +290410,AAA Batteries (4-pack),1,2.99,11/11/19 11:47,"495 5th St, Seattle, WA 98101" +290411,Apple Airpods Headphones,1,150,11/05/19 19:30,"569 4th St, New York City, NY 10001" +290411,AA Batteries (4-pack),1,3.84,11/05/19 19:30,"569 4th St, New York City, NY 10001" +290412,Apple Airpods Headphones,1,150,11/16/19 17:50,"483 6th St, Los Angeles, CA 90001" +290413,Lightning Charging Cable,1,14.95,11/05/19 15:24,"188 Jefferson St, Dallas, TX 75001" +290414,USB-C Charging Cable,1,11.95,11/06/19 22:00,"156 Chestnut St, San Francisco, CA 94016" +290415,Apple Airpods Headphones,1,150,11/21/19 22:10,"981 River St, Boston, MA 02215" +290416,Lightning Charging Cable,1,14.95,11/10/19 02:02,"935 2nd St, Austin, TX 73301" +290417,Wired Headphones,1,11.99,11/20/19 05:47,"882 14th St, New York City, NY 10001" +290418,34in Ultrawide Monitor,1,379.99,11/08/19 18:12,"582 River St, Atlanta, GA 30301" +290419,Apple Airpods Headphones,1,150,11/12/19 17:03,"175 Park St, Portland, OR 97035" +290420,iPhone,1,700,11/11/19 20:45,"810 Pine St, Boston, MA 02215" +290420,Apple Airpods Headphones,1,150,11/11/19 20:45,"810 Pine St, Boston, MA 02215" +290421,Wired Headphones,1,11.99,11/08/19 14:17,"542 12th St, Atlanta, GA 30301" +290422,27in FHD Monitor,1,149.99,11/26/19 22:07,"707 11th St, Boston, MA 02215" +290423,Apple Airpods Headphones,1,150,11/13/19 18:39,"290 Forest St, San Francisco, CA 94016" +290424,USB-C Charging Cable,1,11.95,11/06/19 22:32,"435 8th St, Los Angeles, CA 90001" +290425,Wired Headphones,1,11.99,11/22/19 18:51,"748 Madison St, San Francisco, CA 94016" +290426,USB-C Charging Cable,1,11.95,11/11/19 19:13,"89 7th St, Boston, MA 02215" +290427,Apple Airpods Headphones,1,150,11/18/19 19:33,"927 1st St, New York City, NY 10001" +290428,Lightning Charging Cable,1,14.95,11/29/19 16:13,"564 Adams St, Los Angeles, CA 90001" +290429,Apple Airpods Headphones,1,150,11/05/19 17:12,"842 Pine St, Boston, MA 02215" +290430,Apple Airpods Headphones,1,150,11/14/19 04:17,"522 Cedar St, Los Angeles, CA 90001" +290431,AA Batteries (4-pack),1,3.84,11/14/19 14:53,"535 13th St, Los Angeles, CA 90001" +290432,Apple Airpods Headphones,1,150,11/30/19 06:25,"461 Jackson St, San Francisco, CA 94016" +290433,Lightning Charging Cable,1,14.95,11/18/19 10:58,"746 Willow St, Atlanta, GA 30301" +290434,Apple Airpods Headphones,1,150,11/23/19 03:44,"674 Johnson St, Los Angeles, CA 90001" +290435,Wired Headphones,1,11.99,11/13/19 12:25,"657 Wilson St, New York City, NY 10001" +290436,Lightning Charging Cable,1,14.95,11/17/19 09:11,"720 14th St, Atlanta, GA 30301" +290437,AA Batteries (4-pack),1,3.84,11/24/19 19:35,"208 Lake St, Austin, TX 73301" +290438,Apple Airpods Headphones,1,150,11/14/19 08:33,"184 9th St, Portland, OR 97035" +290439,USB-C Charging Cable,1,11.95,11/30/19 15:18,"864 Adams St, San Francisco, CA 94016" +290440,iPhone,1,700,11/26/19 20:08,"730 10th St, Seattle, WA 98101" +290440,Apple Airpods Headphones,1,150,11/26/19 20:08,"730 10th St, Seattle, WA 98101" +290441,Wired Headphones,1,11.99,11/28/19 18:47,"715 Meadow St, Los Angeles, CA 90001" +290442,AA Batteries (4-pack),1,3.84,11/07/19 08:13,"236 Lakeview St, Boston, MA 02215" +290443,20in Monitor,1,109.99,11/12/19 12:30,"860 West St, San Francisco, CA 94016" +290444,AAA Batteries (4-pack),1,2.99,11/01/19 15:01,"411 7th St, Portland, OR 97035" +290445,USB-C Charging Cable,1,11.95,11/13/19 11:24,"137 Jackson St, Seattle, WA 98101" +290446,Wired Headphones,1,11.99,11/03/19 20:58,"492 Sunset St, Atlanta, GA 30301" +290447,Macbook Pro Laptop,1,1700,11/03/19 14:21,"591 River St, Seattle, WA 98101" +290448,LG Washing Machine,1,600.0,11/12/19 21:19,"635 Adams St, San Francisco, CA 94016" +290449,USB-C Charging Cable,1,11.95,11/14/19 12:17,"235 Lake St, San Francisco, CA 94016" +290450,AAA Batteries (4-pack),2,2.99,11/11/19 10:25,"123 South St, Atlanta, GA 30301" +290451,AAA Batteries (4-pack),1,2.99,11/20/19 20:43,"606 Meadow St, Seattle, WA 98101" +290452,27in 4K Gaming Monitor,1,389.99,11/21/19 13:29,"223 Lake St, San Francisco, CA 94016" +290453,Apple Airpods Headphones,1,150,11/19/19 00:36,"654 River St, New York City, NY 10001" +290454,Flatscreen TV,1,300,11/13/19 21:47,"245 Center St, New York City, NY 10001" +290455,Google Phone,1,600,11/03/19 18:31,"279 Chestnut St, Austin, TX 73301" +290456,Wired Headphones,1,11.99,11/09/19 20:12,"634 Lakeview St, Atlanta, GA 30301" +290457,Lightning Charging Cable,1,14.95,11/11/19 14:51,"285 Ridge St, Dallas, TX 75001" +290458,27in 4K Gaming Monitor,1,389.99,11/12/19 20:50,"502 Chestnut St, Dallas, TX 75001" +290459,Bose SoundSport Headphones,1,99.99,11/04/19 23:01,"436 Elm St, Boston, MA 02215" +290460,Wired Headphones,1,11.99,11/11/19 11:28,"741 Willow St, Los Angeles, CA 90001" +290461,AAA Batteries (4-pack),2,2.99,11/15/19 17:11,"609 5th St, Atlanta, GA 30301" +290462,LG Washing Machine,1,600.0,11/19/19 14:42,"688 Highland St, Dallas, TX 75001" +290463,Google Phone,1,600,11/25/19 19:59,"896 Cherry St, San Francisco, CA 94016" +290463,USB-C Charging Cable,1,11.95,11/25/19 19:59,"896 Cherry St, San Francisco, CA 94016" +290464,AAA Batteries (4-pack),2,2.99,11/21/19 20:15,"288 River St, Portland, ME 04101" +290465,USB-C Charging Cable,1,11.95,11/30/19 12:02,"558 4th St, Portland, ME 04101" +290465,AA Batteries (4-pack),2,3.84,11/30/19 12:02,"558 4th St, Portland, ME 04101" +290466,USB-C Charging Cable,1,11.95,11/17/19 17:29,"379 14th St, New York City, NY 10001" +290467,34in Ultrawide Monitor,1,379.99,11/07/19 12:21,"858 Jefferson St, New York City, NY 10001" +290468,27in 4K Gaming Monitor,1,389.99,11/16/19 17:34,"204 14th St, Boston, MA 02215" +290469,Lightning Charging Cable,1,14.95,11/19/19 00:20,"96 Lakeview St, San Francisco, CA 94016" +290470,20in Monitor,1,109.99,11/25/19 11:07,"559 Jefferson St, Boston, MA 02215" +290471,iPhone,1,700,11/30/19 18:54,"924 Washington St, Dallas, TX 75001" +290472,AA Batteries (4-pack),1,3.84,11/26/19 13:46,"335 Jefferson St, New York City, NY 10001" +290473,Flatscreen TV,1,300,11/07/19 23:29,"424 14th St, San Francisco, CA 94016" +290474,Google Phone,1,600,11/02/19 14:48,"440 6th St, Los Angeles, CA 90001" +290475,Apple Airpods Headphones,1,150,11/05/19 13:40,"695 13th St, Los Angeles, CA 90001" +290475,AAA Batteries (4-pack),1,2.99,11/05/19 13:40,"695 13th St, Los Angeles, CA 90001" +290476,Google Phone,1,600,11/15/19 21:22,"974 Dogwood St, Seattle, WA 98101" +290477,AAA Batteries (4-pack),2,2.99,11/27/19 05:41,"960 Lake St, Los Angeles, CA 90001" +290478,Flatscreen TV,1,300,11/30/19 12:40,"172 Hill St, San Francisco, CA 94016" +290479,Lightning Charging Cable,1,14.95,11/25/19 14:03,"631 Main St, Los Angeles, CA 90001" +290480,27in FHD Monitor,1,149.99,11/16/19 19:02,"138 8th St, Los Angeles, CA 90001" +290481,AA Batteries (4-pack),1,3.84,11/25/19 19:12,"708 9th St, San Francisco, CA 94016" +290482,AAA Batteries (4-pack),1,2.99,11/28/19 20:55,"489 6th St, Portland, ME 04101" +290483,Wired Headphones,1,11.99,11/27/19 21:21,"876 5th St, Los Angeles, CA 90001" +290484,20in Monitor,1,109.99,11/13/19 11:01,"105 South St, San Francisco, CA 94016" +290485,Bose SoundSport Headphones,1,99.99,11/03/19 09:16,"158 10th St, New York City, NY 10001" +290486,USB-C Charging Cable,1,11.95,11/03/19 20:33,"907 1st St, San Francisco, CA 94016" +290487,27in 4K Gaming Monitor,1,389.99,11/10/19 15:18,"903 14th St, New York City, NY 10001" +290488,Vareebadd Phone,1,400,11/10/19 22:01,"638 Hill St, New York City, NY 10001" +290489,34in Ultrawide Monitor,1,379.99,11/22/19 20:22,"850 13th St, Los Angeles, CA 90001" +290490,Wired Headphones,1,11.99,11/11/19 12:59,"872 13th St, Los Angeles, CA 90001" +290491,Lightning Charging Cable,1,14.95,11/16/19 12:36,"186 1st St, San Francisco, CA 94016" +290492,USB-C Charging Cable,1,11.95,11/05/19 14:18,"523 Hickory St, Atlanta, GA 30301" +290493,27in 4K Gaming Monitor,1,389.99,11/11/19 10:40,"737 Spruce St, Austin, TX 73301" +290494,AA Batteries (4-pack),1,3.84,11/02/19 16:48,"968 12th St, New York City, NY 10001" +290495,27in FHD Monitor,1,149.99,11/22/19 19:07,"134 Jackson St, New York City, NY 10001" +290496,Lightning Charging Cable,1,14.95,11/23/19 23:18,"465 Sunset St, Portland, OR 97035" +290497,Bose SoundSport Headphones,1,99.99,11/17/19 17:44,"692 6th St, Los Angeles, CA 90001" +290498,AAA Batteries (4-pack),1,2.99,11/19/19 01:09,"25 Highland St, San Francisco, CA 94016" +290499,Bose SoundSport Headphones,1,99.99,11/01/19 15:09,"597 Hickory St, Los Angeles, CA 90001" +290500,Lightning Charging Cable,1,14.95,11/18/19 21:42,"251 Washington St, San Francisco, CA 94016" +290501,AAA Batteries (4-pack),2,2.99,11/03/19 00:22,"384 Church St, Los Angeles, CA 90001" +290502,Google Phone,1,600,11/17/19 12:40,"961 14th St, Seattle, WA 98101" +290503,Bose SoundSport Headphones,1,99.99,11/19/19 19:54,"171 Maple St, San Francisco, CA 94016" +290504,Bose SoundSport Headphones,1,99.99,11/19/19 15:28,"150 Church St, Atlanta, GA 30301" +290505,AAA Batteries (4-pack),1,2.99,11/04/19 13:49,"850 Madison St, Boston, MA 02215" +290506,AA Batteries (4-pack),1,3.84,11/05/19 14:02,"417 2nd St, San Francisco, CA 94016" +290507,34in Ultrawide Monitor,1,379.99,11/08/19 13:05,"974 1st St, Boston, MA 02215" +290507,Wired Headphones,1,11.99,11/08/19 13:05,"974 1st St, Boston, MA 02215" +290508,27in 4K Gaming Monitor,1,389.99,11/08/19 22:28,"127 Park St, Los Angeles, CA 90001" +290509,AA Batteries (4-pack),1,3.84,11/11/19 09:31,"130 Wilson St, San Francisco, CA 94016" +290510,AA Batteries (4-pack),2,3.84,11/05/19 09:40,"106 Wilson St, Boston, MA 02215" +290511,Lightning Charging Cable,1,14.95,11/10/19 11:01,"349 Wilson St, New York City, NY 10001" +290512,Wired Headphones,1,11.99,11/16/19 12:51,"821 Center St, Los Angeles, CA 90001" +290513,iPhone,1,700,11/25/19 18:15,"34 11th St, New York City, NY 10001" +290514,AAA Batteries (4-pack),2,2.99,11/26/19 10:04,"153 11th St, New York City, NY 10001" +290515,AAA Batteries (4-pack),1,2.99,11/04/19 14:40,"465 Cherry St, San Francisco, CA 94016" +290516,Lightning Charging Cable,1,14.95,11/25/19 17:51,"514 Cedar St, Atlanta, GA 30301" +290517,Macbook Pro Laptop,1,1700,11/25/19 21:40,"505 13th St, New York City, NY 10001" +290518,Apple Airpods Headphones,1,150,11/19/19 09:04,"437 Hickory St, Los Angeles, CA 90001" +290519,USB-C Charging Cable,1,11.95,11/28/19 18:03,"4 Washington St, Boston, MA 02215" +290520,Wired Headphones,1,11.99,11/08/19 08:09,"833 8th St, New York City, NY 10001" +290521,27in FHD Monitor,1,149.99,11/23/19 15:01,"751 Cherry St, Los Angeles, CA 90001" +290522,Lightning Charging Cable,1,14.95,11/06/19 12:47,"421 Main St, San Francisco, CA 94016" +290523,Macbook Pro Laptop,1,1700,11/11/19 15:12,"353 Maple St, San Francisco, CA 94016" +290524,AAA Batteries (4-pack),1,2.99,11/12/19 21:17,"78 Madison St, Portland, OR 97035" +290525,20in Monitor,1,109.99,11/28/19 09:26,"317 Meadow St, Boston, MA 02215" +290526,Lightning Charging Cable,1,14.95,11/12/19 14:15,"522 Lakeview St, Boston, MA 02215" +290527,AAA Batteries (4-pack),3,2.99,11/20/19 20:32,"416 9th St, Atlanta, GA 30301" +290528,USB-C Charging Cable,1,11.95,11/26/19 17:48,"802 Hill St, Los Angeles, CA 90001" +290529,Apple Airpods Headphones,1,150,11/27/19 14:40,"854 Center St, Seattle, WA 98101" +290530,AAA Batteries (4-pack),2,2.99,11/06/19 16:26,"75 Main St, Atlanta, GA 30301" +290531,AAA Batteries (4-pack),1,2.99,11/20/19 13:05,"269 Chestnut St, Seattle, WA 98101" +290532,27in FHD Monitor,1,149.99,11/10/19 18:53,"650 Meadow St, San Francisco, CA 94016" +290533,Google Phone,1,600,11/21/19 11:25,"230 Wilson St, Austin, TX 73301" +290534,iPhone,1,700,11/05/19 15:55,"729 Lincoln St, San Francisco, CA 94016" +290535,Apple Airpods Headphones,1,150,11/12/19 12:05,"450 Maple St, Los Angeles, CA 90001" +290536,Google Phone,1,600,11/17/19 15:11,"131 Forest St, Los Angeles, CA 90001" +290537,20in Monitor,1,109.99,11/23/19 13:29,"139 Adams St, Austin, TX 73301" +290538,Apple Airpods Headphones,1,150,11/23/19 09:23,"768 1st St, San Francisco, CA 94016" +290539,Macbook Pro Laptop,1,1700,11/18/19 17:56,"704 Lakeview St, New York City, NY 10001" +290540,AAA Batteries (4-pack),2,2.99,11/10/19 00:15,"705 Spruce St, Boston, MA 02215" +290541,Wired Headphones,2,11.99,11/09/19 15:03,"96 Johnson St, Los Angeles, CA 90001" +290542,USB-C Charging Cable,1,11.95,11/06/19 14:36,"983 Adams St, San Francisco, CA 94016" +290543,Lightning Charging Cable,1,14.95,11/29/19 12:08,"730 Cherry St, San Francisco, CA 94016" +290544,20in Monitor,1,109.99,11/28/19 21:26,"750 Hill St, San Francisco, CA 94016" +290545,Bose SoundSport Headphones,1,99.99,11/17/19 09:13,"54 Main St, Dallas, TX 75001" +290546,Bose SoundSport Headphones,1,99.99,11/09/19 13:14,"959 5th St, Boston, MA 02215" +290547,iPhone,1,700,11/27/19 16:47,"303 12th St, San Francisco, CA 94016" +290548,AAA Batteries (4-pack),2,2.99,11/12/19 13:47,"871 Washington St, Seattle, WA 98101" +290549,27in FHD Monitor,1,149.99,11/12/19 14:08,"582 5th St, Dallas, TX 75001" +290550,AAA Batteries (4-pack),1,2.99,11/30/19 22:17,"213 Elm St, New York City, NY 10001" +290551,Apple Airpods Headphones,1,150,11/15/19 13:54,"170 Elm St, San Francisco, CA 94016" +290552,Lightning Charging Cable,1,14.95,11/15/19 06:47,"517 11th St, San Francisco, CA 94016" +290553,Bose SoundSport Headphones,1,99.99,11/19/19 18:59,"942 7th St, San Francisco, CA 94016" +290554,USB-C Charging Cable,1,11.95,11/28/19 19:54,"88 Meadow St, Atlanta, GA 30301" +290555,USB-C Charging Cable,1,11.95,11/20/19 20:17,"205 5th St, Seattle, WA 98101" +290556,Google Phone,1,600,11/12/19 12:37,"87 Pine St, Seattle, WA 98101" +290557,AAA Batteries (4-pack),1,2.99,11/26/19 14:12,"221 Madison St, Boston, MA 02215" +290558,20in Monitor,1,109.99,11/02/19 20:53,"366 Walnut St, San Francisco, CA 94016" +290559,27in FHD Monitor,1,149.99,11/07/19 11:23,"335 Ridge St, San Francisco, CA 94016" +290560,USB-C Charging Cable,2,11.95,11/18/19 11:02,"128 10th St, Austin, TX 73301" +290561,USB-C Charging Cable,2,11.95,11/04/19 23:14,"79 River St, Seattle, WA 98101" +290562,27in 4K Gaming Monitor,1,389.99,11/04/19 13:56,"537 River St, Los Angeles, CA 90001" +290563,Bose SoundSport Headphones,1,99.99,11/24/19 13:37,"197 Church St, Portland, OR 97035" +290564,AA Batteries (4-pack),2,3.84,11/14/19 15:11,"309 Center St, Boston, MA 02215" +290565,Apple Airpods Headphones,2,150,11/19/19 12:03,"944 Maple St, New York City, NY 10001" +290566,27in 4K Gaming Monitor,1,389.99,11/23/19 21:16,"849 Spruce St, San Francisco, CA 94016" +290567,Lightning Charging Cable,1,14.95,11/07/19 17:31,"714 Wilson St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +290568,Bose SoundSport Headphones,1,99.99,11/05/19 21:35,"693 Ridge St, Dallas, TX 75001" +290568,AAA Batteries (4-pack),1,2.99,11/05/19 21:35,"693 Ridge St, Dallas, TX 75001" +290569,USB-C Charging Cable,1,11.95,11/11/19 18:46,"188 2nd St, Portland, OR 97035" +290570,AA Batteries (4-pack),2,3.84,11/23/19 21:56,"941 Adams St, Los Angeles, CA 90001" +290571,Wired Headphones,2,11.99,11/10/19 13:06,"994 10th St, Austin, TX 73301" +290572,Apple Airpods Headphones,1,150,11/23/19 07:04,"33 Lincoln St, San Francisco, CA 94016" +290573,Apple Airpods Headphones,1,150,11/06/19 14:51,"176 1st St, Dallas, TX 75001" +290574,Bose SoundSport Headphones,1,99.99,11/24/19 03:06,"273 Wilson St, Atlanta, GA 30301" +290575,Apple Airpods Headphones,1,150,11/03/19 20:45,"753 Jefferson St, New York City, NY 10001" +290576,AAA Batteries (4-pack),2,2.99,11/08/19 10:05,"432 11th St, Los Angeles, CA 90001" +290577,Bose SoundSport Headphones,1,99.99,11/21/19 22:47,"386 Cedar St, Los Angeles, CA 90001" +290578,27in FHD Monitor,1,149.99,11/06/19 22:10,"217 6th St, San Francisco, CA 94016" +290579,AAA Batteries (4-pack),3,2.99,11/16/19 22:59,"558 1st St, Atlanta, GA 30301" +290580,Lightning Charging Cable,1,14.95,11/13/19 12:43,"953 Lake St, Atlanta, GA 30301" +290581,USB-C Charging Cable,1,11.95,11/26/19 19:57,"37 Main St, Los Angeles, CA 90001" +290582,20in Monitor,1,109.99,11/18/19 15:38,"115 West St, Boston, MA 02215" +290583,AAA Batteries (4-pack),4,2.99,11/14/19 09:43,"399 Church St, Boston, MA 02215" +290584,AA Batteries (4-pack),2,3.84,11/10/19 04:06,"936 Park St, San Francisco, CA 94016" +290585,AA Batteries (4-pack),1,3.84,11/09/19 17:49,"361 1st St, San Francisco, CA 94016" +290586,Google Phone,1,600,11/10/19 16:21,"482 Hickory St, San Francisco, CA 94016" +290587,Wired Headphones,1,11.99,11/10/19 11:49,"82 West St, San Francisco, CA 94016" +290588,Lightning Charging Cable,2,14.95,11/01/19 21:19,"439 Chestnut St, Los Angeles, CA 90001" +290589,Lightning Charging Cable,1,14.95,11/02/19 19:01,"73 Washington St, San Francisco, CA 94016" +290590,Flatscreen TV,1,300,11/02/19 17:08,"410 Lake St, Boston, MA 02215" +290591,AA Batteries (4-pack),1,3.84,11/25/19 11:56,"662 Lakeview St, Atlanta, GA 30301" +290592,AAA Batteries (4-pack),1,2.99,11/03/19 14:40,"423 2nd St, Los Angeles, CA 90001" +290593,Lightning Charging Cable,1,14.95,11/17/19 04:33,"829 Cherry St, New York City, NY 10001" +290594,27in 4K Gaming Monitor,1,389.99,11/17/19 10:16,"635 Maple St, Dallas, TX 75001" +290595,34in Ultrawide Monitor,1,379.99,11/11/19 12:26,"926 Jackson St, San Francisco, CA 94016" +290596,Wired Headphones,1,11.99,11/30/19 20:30,"736 Lake St, Los Angeles, CA 90001" +290597,USB-C Charging Cable,1,11.95,11/10/19 13:21,"836 Chestnut St, San Francisco, CA 94016" +290598,34in Ultrawide Monitor,1,379.99,11/16/19 15:49,"976 12th St, San Francisco, CA 94016" +290599,Apple Airpods Headphones,1,150,11/21/19 23:45,"860 Meadow St, Seattle, WA 98101" +290600,27in 4K Gaming Monitor,1,389.99,11/01/19 22:44,"361 Spruce St, San Francisco, CA 94016" +290601,Wired Headphones,1,11.99,11/24/19 11:47,"746 4th St, San Francisco, CA 94016" +290602,27in FHD Monitor,1,149.99,11/10/19 12:24,"213 Washington St, Boston, MA 02215" +290603,Apple Airpods Headphones,1,150,11/30/19 19:11,"25 11th St, Los Angeles, CA 90001" +290604,20in Monitor,1,109.99,11/03/19 17:38,"407 Park St, Los Angeles, CA 90001" +290605,27in FHD Monitor,1,149.99,11/05/19 21:44,"380 Wilson St, Los Angeles, CA 90001" +290606,Lightning Charging Cable,1,14.95,11/19/19 14:44,"312 6th St, San Francisco, CA 94016" +290607,27in FHD Monitor,1,149.99,11/10/19 11:18,"385 1st St, Atlanta, GA 30301" +290608,34in Ultrawide Monitor,1,379.99,11/30/19 22:34,"196 6th St, Austin, TX 73301" +290609,Bose SoundSport Headphones,1,99.99,11/17/19 19:52,"532 Hickory St, San Francisco, CA 94016" +290610,AA Batteries (4-pack),1,3.84,11/02/19 10:16,"426 Chestnut St, Seattle, WA 98101" +290611,27in FHD Monitor,1,149.99,11/08/19 15:36,"628 10th St, New York City, NY 10001" +290612,Wired Headphones,1,11.99,11/29/19 20:16,"140 West St, Boston, MA 02215" +290613,Wired Headphones,1,11.99,11/04/19 17:35,"105 Jackson St, Portland, OR 97035" +290614,Vareebadd Phone,1,400,11/25/19 15:59,"575 Meadow St, Los Angeles, CA 90001" +290615,Bose SoundSport Headphones,1,99.99,11/01/19 13:30,"48 South St, San Francisco, CA 94016" +290616,AA Batteries (4-pack),1,3.84,11/14/19 17:30,"34 Spruce St, Seattle, WA 98101" +290617,Apple Airpods Headphones,1,150,11/04/19 17:24,"220 Main St, San Francisco, CA 94016" +290618,Bose SoundSport Headphones,1,99.99,11/22/19 17:34,"973 Chestnut St, Seattle, WA 98101" +290619,iPhone,1,700,11/19/19 15:42,"354 Washington St, Boston, MA 02215" +290620,Lightning Charging Cable,1,14.95,11/12/19 17:22,"812 Adams St, Seattle, WA 98101" +290621,iPhone,1,700,11/11/19 21:32,"59 Park St, Los Angeles, CA 90001" +290621,Apple Airpods Headphones,1,150,11/11/19 21:32,"59 Park St, Los Angeles, CA 90001" +290622,27in FHD Monitor,1,149.99,11/21/19 03:53,"44 Madison St, Dallas, TX 75001" +290623,USB-C Charging Cable,1,11.95,11/07/19 11:20,"514 Madison St, Seattle, WA 98101" +290624,Apple Airpods Headphones,1,150,11/15/19 22:21,"530 4th St, Los Angeles, CA 90001" +290625,Lightning Charging Cable,1,14.95,11/21/19 11:08,"383 11th St, New York City, NY 10001" +290626,Flatscreen TV,1,300,11/02/19 13:38,"32 River St, Los Angeles, CA 90001" +290627,AAA Batteries (4-pack),2,2.99,11/10/19 13:28,"500 Willow St, Austin, TX 73301" +290628,AAA Batteries (4-pack),2,2.99,11/29/19 21:02,"134 4th St, San Francisco, CA 94016" +290629,ThinkPad Laptop,1,999.99,11/15/19 11:34,"104 Hill St, New York City, NY 10001" +290630,27in FHD Monitor,1,149.99,11/30/19 21:10,"749 River St, San Francisco, CA 94016" +290631,AAA Batteries (4-pack),5,2.99,11/02/19 21:48,"111 11th St, Dallas, TX 75001" +290632,Wired Headphones,1,11.99,11/22/19 20:07,"597 Lakeview St, Boston, MA 02215" +290633,iPhone,1,700,11/10/19 13:20,"261 Sunset St, San Francisco, CA 94016" +290634,Wired Headphones,1,11.99,11/27/19 10:45,"854 Spruce St, Boston, MA 02215" +290635,AAA Batteries (4-pack),2,2.99,11/07/19 14:02,"318 North St, New York City, NY 10001" +290636,Flatscreen TV,1,300,11/03/19 12:11,"701 4th St, San Francisco, CA 94016" +290637,AAA Batteries (4-pack),1,2.99,11/19/19 01:43,"591 Willow St, Seattle, WA 98101" +290638,iPhone,1,700,11/23/19 13:56,"157 Wilson St, Austin, TX 73301" +290639,ThinkPad Laptop,1,999.99,11/05/19 13:41,"992 Spruce St, San Francisco, CA 94016" +290640,Lightning Charging Cable,2,14.95,11/16/19 22:56,"452 Hickory St, Austin, TX 73301" +290641,AA Batteries (4-pack),1,3.84,11/13/19 21:41,"131 8th St, Boston, MA 02215" +290642,AA Batteries (4-pack),1,3.84,11/30/19 14:44,"626 Walnut St, Seattle, WA 98101" +290643,Lightning Charging Cable,1,14.95,11/13/19 21:55,"842 8th St, Seattle, WA 98101" +290644,Lightning Charging Cable,1,14.95,11/21/19 20:36,"166 Jackson St, San Francisco, CA 94016" +290645,iPhone,1,700,11/12/19 12:57,"436 North St, San Francisco, CA 94016" +290646,27in FHD Monitor,1,149.99,11/03/19 11:02,"866 South St, Los Angeles, CA 90001" +290647,USB-C Charging Cable,1,11.95,11/04/19 05:07,"696 14th St, Boston, MA 02215" +290648,Lightning Charging Cable,1,14.95,11/18/19 12:05,"373 Main St, San Francisco, CA 94016" +290649,27in FHD Monitor,1,149.99,11/12/19 20:32,"516 Hill St, New York City, NY 10001" +290650,Lightning Charging Cable,1,14.95,11/21/19 20:47,"436 14th St, New York City, NY 10001" +290651,Lightning Charging Cable,1,14.95,11/07/19 19:43,"774 Madison St, Los Angeles, CA 90001" +290652,27in FHD Monitor,1,149.99,11/05/19 20:41,"77 Adams St, New York City, NY 10001" +290653,Google Phone,1,600,11/24/19 09:19,"592 Jefferson St, San Francisco, CA 94016" +290654,USB-C Charging Cable,1,11.95,11/27/19 10:59,"893 North St, Atlanta, GA 30301" +290655,AA Batteries (4-pack),1,3.84,11/15/19 17:14,"486 13th St, San Francisco, CA 94016" +290656,Bose SoundSport Headphones,1,99.99,11/11/19 21:51,"498 9th St, Boston, MA 02215" +290657,Lightning Charging Cable,1,14.95,11/03/19 21:51,"935 Maple St, Los Angeles, CA 90001" +290658,Apple Airpods Headphones,1,150,11/03/19 11:59,"770 Dogwood St, Los Angeles, CA 90001" +290659,Google Phone,1,600,11/10/19 19:37,"850 West St, Dallas, TX 75001" +290659,Lightning Charging Cable,1,14.95,11/10/19 19:37,"850 West St, Dallas, TX 75001" +290660,Google Phone,1,600,11/24/19 00:13,"721 Meadow St, Los Angeles, CA 90001" +290661,Vareebadd Phone,1,400,11/06/19 09:37,"197 Pine St, Austin, TX 73301" +290661,USB-C Charging Cable,1,11.95,11/06/19 09:37,"197 Pine St, Austin, TX 73301" +290662,USB-C Charging Cable,1,11.95,11/17/19 07:50,"154 Lincoln St, Portland, OR 97035" +290663,USB-C Charging Cable,1,11.95,11/22/19 23:07,"656 Church St, Atlanta, GA 30301" +290664,Google Phone,1,600,11/06/19 18:56,"309 Willow St, San Francisco, CA 94016" +290664,USB-C Charging Cable,1,11.95,11/06/19 18:56,"309 Willow St, San Francisco, CA 94016" +290665,27in FHD Monitor,1,149.99,11/22/19 12:58,"677 North St, Seattle, WA 98101" +290666,Lightning Charging Cable,1,14.95,11/24/19 00:14,"19 11th St, Seattle, WA 98101" +290667,Google Phone,1,600,11/06/19 11:01,"630 North St, Boston, MA 02215" +290668,Flatscreen TV,1,300,11/18/19 13:21,"100 Walnut St, San Francisco, CA 94016" +290669,ThinkPad Laptop,1,999.99,11/21/19 19:06,"283 Cedar St, San Francisco, CA 94016" +290670,34in Ultrawide Monitor,1,379.99,11/25/19 14:14,"362 West St, Boston, MA 02215" +290671,Wired Headphones,1,11.99,11/22/19 17:14,"880 14th St, Los Angeles, CA 90001" +290672,Wired Headphones,1,11.99,11/23/19 17:49,"720 Wilson St, Seattle, WA 98101" +290673,Vareebadd Phone,1,400,11/14/19 20:06,"414 Chestnut St, San Francisco, CA 94016" +290674,Bose SoundSport Headphones,1,99.99,11/13/19 03:54,"978 Madison St, Dallas, TX 75001" +290675,Wired Headphones,1,11.99,11/05/19 22:43,"393 Main St, Dallas, TX 75001" +290676,AA Batteries (4-pack),1,3.84,11/04/19 10:27,"182 Meadow St, Austin, TX 73301" +290677,27in 4K Gaming Monitor,1,389.99,11/17/19 08:48,"339 Jackson St, New York City, NY 10001" +290678,ThinkPad Laptop,1,999.99,11/22/19 10:02,"631 Dogwood St, Boston, MA 02215" +290679,Wired Headphones,1,11.99,11/02/19 16:58,"939 10th St, Boston, MA 02215" +290680,Bose SoundSport Headphones,1,99.99,11/18/19 21:08,"380 South St, San Francisco, CA 94016" +290681,USB-C Charging Cable,1,11.95,11/04/19 18:07,"386 Jefferson St, Atlanta, GA 30301" +290682,Lightning Charging Cable,1,14.95,11/09/19 16:14,"865 Madison St, Boston, MA 02215" +290683,Google Phone,1,600,11/30/19 11:00,"635 2nd St, San Francisco, CA 94016" +290684,USB-C Charging Cable,1,11.95,11/09/19 14:47,"114 Sunset St, San Francisco, CA 94016" +290685,Wired Headphones,1,11.99,11/22/19 14:55,"292 Lake St, Austin, TX 73301" +290686,Lightning Charging Cable,1,14.95,11/14/19 17:06,"618 Wilson St, Dallas, TX 75001" +290687,USB-C Charging Cable,1,11.95,11/10/19 08:55,"581 Center St, Boston, MA 02215" +290688,27in 4K Gaming Monitor,1,389.99,11/28/19 11:57,"754 1st St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +290689,Apple Airpods Headphones,1,150,11/22/19 21:01,"197 Park St, San Francisco, CA 94016" +290690,LG Washing Machine,1,600.0,11/21/19 11:19,"910 Lakeview St, New York City, NY 10001" +290691,AAA Batteries (4-pack),1,2.99,11/29/19 15:40,"317 Washington St, Portland, OR 97035" +290692,Bose SoundSport Headphones,1,99.99,11/17/19 01:57,"192 Meadow St, Portland, OR 97035" +290693,Google Phone,1,600,11/03/19 12:02,"71 Wilson St, Boston, MA 02215" +290694,27in FHD Monitor,1,149.99,11/05/19 18:37,"665 Lake St, Atlanta, GA 30301" +290695,AA Batteries (4-pack),1,3.84,12/01/19 02:38,"224 Jefferson St, New York City, NY 10001" +290696,USB-C Charging Cable,1,11.95,11/22/19 20:08,"762 9th St, Boston, MA 02215" +290697,AA Batteries (4-pack),2,3.84,11/15/19 20:42,"340 7th St, New York City, NY 10001" +290698,Google Phone,1,600,11/05/19 12:52,"268 Dogwood St, Los Angeles, CA 90001" +290698,USB-C Charging Cable,1,11.95,11/05/19 12:52,"268 Dogwood St, Los Angeles, CA 90001" +290699,Lightning Charging Cable,1,14.95,11/28/19 10:58,"757 Lake St, San Francisco, CA 94016" +290700,USB-C Charging Cable,1,11.95,11/29/19 10:36,"365 Forest St, New York City, NY 10001" +290701,Wired Headphones,2,11.99,11/05/19 17:49,"481 Chestnut St, Los Angeles, CA 90001" +290702,AA Batteries (4-pack),1,3.84,11/18/19 20:58,"52 Hill St, Boston, MA 02215" +290703,AA Batteries (4-pack),2,3.84,11/19/19 20:16,"395 11th St, Boston, MA 02215" +290704,AAA Batteries (4-pack),2,2.99,11/10/19 22:40,"490 Spruce St, Los Angeles, CA 90001" +290705,Lightning Charging Cable,1,14.95,11/25/19 13:13,"780 13th St, Dallas, TX 75001" +290705,Wired Headphones,1,11.99,11/25/19 13:13,"780 13th St, Dallas, TX 75001" +290706,Lightning Charging Cable,2,14.95,11/08/19 17:21,"4 Meadow St, San Francisco, CA 94016" +290707,Lightning Charging Cable,1,14.95,11/09/19 00:29,"710 Maple St, Seattle, WA 98101" +290708,Apple Airpods Headphones,1,150,11/30/19 08:39,"913 Main St, Los Angeles, CA 90001" +290709,Apple Airpods Headphones,1,150,11/21/19 14:47,"481 Cedar St, Seattle, WA 98101" +290710,27in FHD Monitor,1,149.99,11/27/19 23:10,"657 4th St, Dallas, TX 75001" +290711,Apple Airpods Headphones,1,150,11/09/19 08:06,"885 Lincoln St, San Francisco, CA 94016" +290712,USB-C Charging Cable,1,11.95,11/29/19 14:24,"250 Wilson St, Boston, MA 02215" +290713,34in Ultrawide Monitor,1,379.99,11/17/19 09:15,"172 Center St, Dallas, TX 75001" +290714,AA Batteries (4-pack),1,3.84,11/07/19 22:30,"236 Church St, New York City, NY 10001" +290715,AAA Batteries (4-pack),1,2.99,11/30/19 11:48,"490 Walnut St, Los Angeles, CA 90001" +290716,Lightning Charging Cable,1,14.95,11/07/19 19:53,"885 West St, Seattle, WA 98101" +290717,ThinkPad Laptop,1,999.99,11/11/19 18:48,"262 12th St, New York City, NY 10001" +290718,Wired Headphones,2,11.99,11/16/19 11:45,"456 Maple St, San Francisco, CA 94016" +290719,AAA Batteries (4-pack),2,2.99,11/16/19 21:42,"289 6th St, Austin, TX 73301" +290720,27in FHD Monitor,1,149.99,11/07/19 13:48,"814 2nd St, Los Angeles, CA 90001" +290721,Lightning Charging Cable,1,14.95,11/30/19 13:08,"42 South St, Seattle, WA 98101" +290722,34in Ultrawide Monitor,1,379.99,11/27/19 06:42,"592 West St, San Francisco, CA 94016" +290723,iPhone,1,700,11/08/19 08:51,"114 Jefferson St, New York City, NY 10001" +290724,Apple Airpods Headphones,2,150,11/06/19 06:05,"272 Washington St, San Francisco, CA 94016" +290725,Wired Headphones,1,11.99,11/17/19 09:14,"739 River St, New York City, NY 10001" +290726,20in Monitor,1,109.99,11/30/19 20:55,"778 Park St, San Francisco, CA 94016" +290727,iPhone,1,700,11/12/19 16:35,"101 Forest St, Austin, TX 73301" +290728,AA Batteries (4-pack),1,3.84,11/24/19 12:14,"535 Dogwood St, San Francisco, CA 94016" +290729,Wired Headphones,1,11.99,11/05/19 18:25,"688 North St, New York City, NY 10001" +290730,Flatscreen TV,1,300,11/20/19 00:19,"55 Cedar St, Los Angeles, CA 90001" +290731,Apple Airpods Headphones,1,150,11/26/19 09:24,"698 Washington St, Dallas, TX 75001" +290732,Flatscreen TV,1,300,11/12/19 20:09,"550 Chestnut St, Dallas, TX 75001" +290733,27in 4K Gaming Monitor,1,389.99,11/02/19 19:20,"504 4th St, Atlanta, GA 30301" +290734,Wired Headphones,1,11.99,11/25/19 21:43,"371 7th St, Los Angeles, CA 90001" +290735,27in 4K Gaming Monitor,1,389.99,11/30/19 14:12,"757 Walnut St, San Francisco, CA 94016" +290736,Lightning Charging Cable,1,14.95,11/14/19 06:05,"325 1st St, San Francisco, CA 94016" +290737,AA Batteries (4-pack),1,3.84,11/09/19 00:49,"78 Jackson St, Seattle, WA 98101" +290738,USB-C Charging Cable,1,11.95,11/29/19 11:16,"656 Forest St, New York City, NY 10001" +290739,27in FHD Monitor,1,149.99,11/24/19 20:23,"571 Wilson St, Dallas, TX 75001" +290740,ThinkPad Laptop,1,999.99,11/25/19 10:30,"763 Elm St, New York City, NY 10001" +290741,AA Batteries (4-pack),1,3.84,11/20/19 11:42,"432 11th St, Austin, TX 73301" +290742,27in FHD Monitor,1,149.99,11/02/19 13:50,"655 Lincoln St, San Francisco, CA 94016" +290743,Lightning Charging Cable,1,14.95,11/04/19 21:22,"940 Meadow St, San Francisco, CA 94016" +290744,iPhone,1,700,11/24/19 09:49,"270 Center St, Los Angeles, CA 90001" +290745,AAA Batteries (4-pack),1,2.99,11/17/19 17:10,"133 North St, Portland, OR 97035" +290746,Apple Airpods Headphones,1,150,11/22/19 13:32,"257 6th St, San Francisco, CA 94016" +290747,Lightning Charging Cable,1,14.95,11/27/19 01:35,"566 West St, San Francisco, CA 94016" +290748,Lightning Charging Cable,1,14.95,11/13/19 12:14,"674 Dogwood St, New York City, NY 10001" +290748,AAA Batteries (4-pack),1,2.99,11/13/19 12:14,"674 Dogwood St, New York City, NY 10001" +290749,Vareebadd Phone,1,400,11/27/19 11:37,"195 Center St, Boston, MA 02215" +290750,Flatscreen TV,1,300,11/22/19 01:36,"201 Hill St, San Francisco, CA 94016" +290751,ThinkPad Laptop,1,999.99,11/22/19 21:52,"167 Lake St, Austin, TX 73301" +290752,USB-C Charging Cable,1,11.95,11/09/19 13:58,"282 Wilson St, New York City, NY 10001" +290753,AA Batteries (4-pack),1,3.84,11/15/19 18:20,"370 River St, San Francisco, CA 94016" +290754,Bose SoundSport Headphones,1,99.99,11/07/19 13:20,"334 Willow St, Los Angeles, CA 90001" +290755,Apple Airpods Headphones,1,150,11/22/19 20:04,"542 Center St, Atlanta, GA 30301" +290756,Lightning Charging Cable,1,14.95,11/30/19 20:25,"254 Hill St, Los Angeles, CA 90001" +290757,USB-C Charging Cable,1,11.95,11/02/19 15:01,"304 Center St, San Francisco, CA 94016" +290758,AAA Batteries (4-pack),5,2.99,11/07/19 16:50,"830 12th St, Los Angeles, CA 90001" +290759,Wired Headphones,1,11.99,11/15/19 13:33,"671 14th St, San Francisco, CA 94016" +290760,Apple Airpods Headphones,1,150,11/16/19 11:45,"899 South St, Los Angeles, CA 90001" +290761,AAA Batteries (4-pack),1,2.99,11/04/19 18:05,"850 9th St, Los Angeles, CA 90001" +290762,AAA Batteries (4-pack),1,2.99,11/05/19 09:35,"303 1st St, San Francisco, CA 94016" +290763,Google Phone,1,600,11/19/19 08:23,"475 North St, San Francisco, CA 94016" +290764,27in 4K Gaming Monitor,1,389.99,11/20/19 10:06,"855 Johnson St, Portland, ME 04101" +290765,20in Monitor,1,109.99,11/15/19 14:05,"154 Church St, Austin, TX 73301" +290766,AA Batteries (4-pack),2,3.84,11/30/19 12:31,"819 River St, Los Angeles, CA 90001" +290767,Wired Headphones,1,11.99,11/14/19 20:56,"388 Maple St, San Francisco, CA 94016" +290768,USB-C Charging Cable,1,11.95,11/26/19 12:19,"204 Cedar St, San Francisco, CA 94016" +290769,Bose SoundSport Headphones,1,99.99,11/10/19 14:36,"238 Jefferson St, Boston, MA 02215" +290770,Google Phone,1,600,11/07/19 07:31,"599 Dogwood St, San Francisco, CA 94016" +290770,Wired Headphones,1,11.99,11/07/19 07:31,"599 Dogwood St, San Francisco, CA 94016" +290771,Wired Headphones,2,11.99,11/29/19 22:37,"840 Highland St, San Francisco, CA 94016" +290772,Apple Airpods Headphones,1,150,11/29/19 14:53,"675 Madison St, Austin, TX 73301" +290773,AAA Batteries (4-pack),1,2.99,11/17/19 22:24,"857 Elm St, New York City, NY 10001" +290773,AA Batteries (4-pack),2,3.84,11/17/19 22:24,"857 Elm St, New York City, NY 10001" +290774,Bose SoundSport Headphones,1,99.99,11/15/19 04:54,"269 7th St, Seattle, WA 98101" +290774,Lightning Charging Cable,1,14.95,11/15/19 04:54,"269 7th St, Seattle, WA 98101" +290775,Apple Airpods Headphones,1,150,11/13/19 18:37,"579 1st St, New York City, NY 10001" +290776,AA Batteries (4-pack),1,3.84,11/09/19 21:06,"884 Adams St, San Francisco, CA 94016" +290777,Apple Airpods Headphones,1,150,11/29/19 22:01,"909 West St, Boston, MA 02215" +290778,AAA Batteries (4-pack),2,2.99,11/08/19 20:03,"888 Highland St, San Francisco, CA 94016" +290779,Macbook Pro Laptop,1,1700,11/13/19 14:35,"835 Spruce St, Los Angeles, CA 90001" +290780,Apple Airpods Headphones,1,150,11/28/19 20:41,"842 Sunset St, Dallas, TX 75001" +290781,AAA Batteries (4-pack),2,2.99,11/26/19 12:34,"549 Lincoln St, Boston, MA 02215" +290782,Wired Headphones,1,11.99,11/25/19 17:51,"94 10th St, New York City, NY 10001" +290783,USB-C Charging Cable,1,11.95,11/03/19 12:00,"351 Madison St, Los Angeles, CA 90001" +290784,Apple Airpods Headphones,1,150,11/03/19 12:49,"730 10th St, Boston, MA 02215" +290785,AAA Batteries (4-pack),2,2.99,11/20/19 13:06,"411 Wilson St, San Francisco, CA 94016" +290786,Apple Airpods Headphones,1,150,11/24/19 20:34,"15 2nd St, Atlanta, GA 30301" +290787,AA Batteries (4-pack),2,3.84,11/10/19 22:32,"223 Lakeview St, New York City, NY 10001" +290788,AAA Batteries (4-pack),1,2.99,11/21/19 11:05,"729 Hickory St, Dallas, TX 75001" +290789,iPhone,1,700,11/19/19 22:17,"306 Dogwood St, San Francisco, CA 94016" +290789,Apple Airpods Headphones,1,150,11/19/19 22:17,"306 Dogwood St, San Francisco, CA 94016" +290790,Lightning Charging Cable,1,14.95,11/08/19 19:30,"146 Spruce St, Los Angeles, CA 90001" +290791,USB-C Charging Cable,1,11.95,11/21/19 09:07,"263 Cherry St, Los Angeles, CA 90001" +290792,Bose SoundSport Headphones,1,99.99,11/28/19 00:35,"988 Johnson St, New York City, NY 10001" +290793,AA Batteries (4-pack),1,3.84,11/06/19 02:18,"534 South St, Dallas, TX 75001" +290794,USB-C Charging Cable,1,11.95,11/17/19 10:57,"223 Lakeview St, Atlanta, GA 30301" +290795,AA Batteries (4-pack),1,3.84,11/29/19 21:08,"797 Spruce St, New York City, NY 10001" +290796,AAA Batteries (4-pack),1,2.99,11/30/19 18:03,"595 Jefferson St, San Francisco, CA 94016" +290797,AA Batteries (4-pack),1,3.84,11/09/19 08:16,"12 Willow St, Portland, OR 97035" +290798,USB-C Charging Cable,1,11.95,11/01/19 17:59,"513 Lincoln St, Los Angeles, CA 90001" +290799,USB-C Charging Cable,1,11.95,11/26/19 02:35,"230 Chestnut St, Austin, TX 73301" +290800,34in Ultrawide Monitor,1,379.99,11/21/19 21:08,"160 Hickory St, Austin, TX 73301" +290801,Bose SoundSport Headphones,1,99.99,11/12/19 20:51,"958 Walnut St, New York City, NY 10001" +290802,Lightning Charging Cable,1,14.95,11/26/19 15:31,"882 5th St, Austin, TX 73301" +290803,Lightning Charging Cable,1,14.95,11/27/19 09:31,"782 Main St, Austin, TX 73301" +290804,Apple Airpods Headphones,1,150,11/09/19 19:10,"66 Jackson St, Seattle, WA 98101" +290805,27in FHD Monitor,1,149.99,11/26/19 08:11,"692 6th St, New York City, NY 10001" +290806,AA Batteries (4-pack),1,3.84,11/12/19 17:09,"409 Lakeview St, Austin, TX 73301" +290807,Bose SoundSport Headphones,1,99.99,11/15/19 17:56,"283 Pine St, San Francisco, CA 94016" +290808,AA Batteries (4-pack),1,3.84,11/17/19 12:52,"669 Highland St, New York City, NY 10001" +290808,Google Phone,1,600,11/17/19 12:52,"669 Highland St, New York City, NY 10001" +290809,AAA Batteries (4-pack),1,2.99,11/10/19 23:12,"823 Meadow St, New York City, NY 10001" +290810,Wired Headphones,1,11.99,11/18/19 08:16,"676 Jackson St, San Francisco, CA 94016" +,,,,, +290811,Wired Headphones,1,11.99,11/17/19 02:16,"513 Main St, San Francisco, CA 94016" +290812,AAA Batteries (4-pack),5,2.99,11/05/19 22:13,"162 Adams St, Dallas, TX 75001" +290813,AA Batteries (4-pack),1,3.84,11/14/19 17:41,"943 Forest St, Austin, TX 73301" +290814,Bose SoundSport Headphones,1,99.99,11/13/19 09:15,"863 9th St, Seattle, WA 98101" +290815,AA Batteries (4-pack),1,3.84,11/11/19 14:14,"587 9th St, Dallas, TX 75001" +290816,Bose SoundSport Headphones,1,99.99,11/04/19 00:48,"495 Washington St, Boston, MA 02215" +290817,Lightning Charging Cable,1,14.95,11/15/19 21:07,"254 Wilson St, San Francisco, CA 94016" +290818,Lightning Charging Cable,1,14.95,11/21/19 10:32,"846 Lake St, Austin, TX 73301" +290819,AA Batteries (4-pack),1,3.84,11/10/19 17:05,"72 Hickory St, New York City, NY 10001" +290820,Apple Airpods Headphones,1,150,11/20/19 11:16,"778 Elm St, Los Angeles, CA 90001" +290821,AAA Batteries (4-pack),2,2.99,11/23/19 20:48,"198 Main St, San Francisco, CA 94016" +290822,USB-C Charging Cable,1,11.95,11/26/19 20:17,"457 North St, San Francisco, CA 94016" +290823,Wired Headphones,1,11.99,11/23/19 00:01,"943 Jefferson St, San Francisco, CA 94016" +290824,Lightning Charging Cable,1,14.95,11/15/19 11:43,"307 Sunset St, Atlanta, GA 30301" +290825,Wired Headphones,1,11.99,11/26/19 13:00,"514 River St, San Francisco, CA 94016" +290826,USB-C Charging Cable,1,11.95,11/19/19 18:05,"828 Maple St, New York City, NY 10001" +290827,AA Batteries (4-pack),1,3.84,11/13/19 17:40,"484 Walnut St, Atlanta, GA 30301" +290828,USB-C Charging Cable,1,11.95,11/01/19 13:19,"475 Lincoln St, Austin, TX 73301" +290829,USB-C Charging Cable,1,11.95,11/11/19 18:50,"3 Jackson St, San Francisco, CA 94016" +290830,Flatscreen TV,1,300,11/14/19 20:05,"345 5th St, Boston, MA 02215" +290831,34in Ultrawide Monitor,1,379.99,11/28/19 04:26,"236 Hickory St, San Francisco, CA 94016" +290832,Flatscreen TV,1,300,11/02/19 19:57,"265 Willow St, New York City, NY 10001" +290833,Wired Headphones,2,11.99,11/10/19 12:24,"332 Meadow St, San Francisco, CA 94016" +290834,AAA Batteries (4-pack),2,2.99,11/22/19 20:02,"74 Walnut St, Austin, TX 73301" +290835,AA Batteries (4-pack),1,3.84,11/24/19 16:56,"986 Spruce St, Los Angeles, CA 90001" +290836,iPhone,1,700,11/12/19 03:22,"586 South St, Dallas, TX 75001" +290837,AA Batteries (4-pack),1,3.84,11/07/19 19:54,"966 Forest St, Atlanta, GA 30301" +290838,Wired Headphones,1,11.99,11/14/19 20:24,"510 Meadow St, Los Angeles, CA 90001" +290839,AAA Batteries (4-pack),4,2.99,11/28/19 16:57,"645 Meadow St, San Francisco, CA 94016" +290840,Wired Headphones,1,11.99,11/09/19 09:31,"387 8th St, San Francisco, CA 94016" +290841,AAA Batteries (4-pack),2,2.99,11/21/19 19:57,"163 Chestnut St, Los Angeles, CA 90001" +290842,Wired Headphones,1,11.99,11/03/19 18:31,"715 Lakeview St, Los Angeles, CA 90001" +290843,USB-C Charging Cable,1,11.95,11/17/19 18:29,"887 Spruce St, Los Angeles, CA 90001" +290844,AAA Batteries (4-pack),1,2.99,11/14/19 13:44,"932 9th St, San Francisco, CA 94016" +290845,AA Batteries (4-pack),1,3.84,11/03/19 02:34,"409 Jefferson St, Boston, MA 02215" +290846,AA Batteries (4-pack),1,3.84,11/30/19 16:29,"502 South St, New York City, NY 10001" +290847,AA Batteries (4-pack),1,3.84,11/17/19 18:33,"652 Cedar St, San Francisco, CA 94016" +290848,Apple Airpods Headphones,1,150,11/13/19 18:11,"961 1st St, Dallas, TX 75001" +290849,Wired Headphones,1,11.99,11/01/19 17:47,"974 Maple St, Los Angeles, CA 90001" +290850,ThinkPad Laptop,1,999.99,11/06/19 04:22,"357 Wilson St, Los Angeles, CA 90001" +290851,AA Batteries (4-pack),1,3.84,11/01/19 18:06,"813 Lincoln St, San Francisco, CA 94016" +290852,AAA Batteries (4-pack),1,2.99,11/07/19 23:37,"697 4th St, New York City, NY 10001" +290853,AAA Batteries (4-pack),1,2.99,11/25/19 17:27,"347 Spruce St, Austin, TX 73301" +290854,AA Batteries (4-pack),1,3.84,11/24/19 17:36,"452 Spruce St, Atlanta, GA 30301" +290855,AA Batteries (4-pack),1,3.84,11/05/19 21:17,"224 Ridge St, Dallas, TX 75001" +290856,Apple Airpods Headphones,1,150,11/29/19 15:36,"557 Chestnut St, Seattle, WA 98101" +290857,iPhone,1,700,11/29/19 15:21,"201 Main St, Atlanta, GA 30301" +290857,Apple Airpods Headphones,1,150,11/29/19 15:21,"201 Main St, Atlanta, GA 30301" +290858,Google Phone,1,600,11/18/19 19:27,"625 Cedar St, Los Angeles, CA 90001" +290859,Apple Airpods Headphones,1,150,11/02/19 20:19,"554 South St, Seattle, WA 98101" +290860,AAA Batteries (4-pack),1,2.99,11/21/19 12:18,"142 Highland St, Los Angeles, CA 90001" +290861,Wired Headphones,1,11.99,11/20/19 12:42,"737 Cherry St, Dallas, TX 75001" +290862,AAA Batteries (4-pack),1,2.99,11/11/19 18:34,"638 11th St, Dallas, TX 75001" +290863,AA Batteries (4-pack),1,3.84,11/26/19 08:55,"156 Jackson St, Los Angeles, CA 90001" +290864,Lightning Charging Cable,1,14.95,11/04/19 14:19,"674 Sunset St, San Francisco, CA 94016" +290865,Flatscreen TV,1,300,11/13/19 21:58,"403 Park St, New York City, NY 10001" +290866,Lightning Charging Cable,1,14.95,11/28/19 17:55,"342 Hickory St, Dallas, TX 75001" +290867,Bose SoundSport Headphones,1,99.99,11/13/19 16:43,"589 Johnson St, Dallas, TX 75001" +290868,iPhone,1,700,11/26/19 17:13,"343 9th St, New York City, NY 10001" +290869,Wired Headphones,2,11.99,11/20/19 16:19,"764 Lake St, Los Angeles, CA 90001" +290870,Wired Headphones,1,11.99,11/25/19 15:23,"688 Spruce St, New York City, NY 10001" +290871,AA Batteries (4-pack),1,3.84,11/19/19 20:26,"788 12th St, Seattle, WA 98101" +290872,Lightning Charging Cable,1,14.95,11/20/19 17:10,"690 4th St, Los Angeles, CA 90001" +290873,Wired Headphones,1,11.99,11/13/19 14:02,"277 West St, New York City, NY 10001" +290874,Google Phone,1,600,11/17/19 13:24,"149 8th St, Seattle, WA 98101" +290874,USB-C Charging Cable,1,11.95,11/17/19 13:24,"149 8th St, Seattle, WA 98101" +290875,AA Batteries (4-pack),1,3.84,11/18/19 12:41,"846 Wilson St, Austin, TX 73301" +290876,Apple Airpods Headphones,1,150,11/17/19 18:56,"225 Maple St, Boston, MA 02215" +290877,AA Batteries (4-pack),1,3.84,11/29/19 17:42,"655 Lincoln St, San Francisco, CA 94016" +290878,27in 4K Gaming Monitor,1,389.99,11/29/19 20:35,"494 Highland St, Austin, TX 73301" +290879,Vareebadd Phone,1,400,11/06/19 19:10,"638 Lakeview St, San Francisco, CA 94016" +290879,USB-C Charging Cable,1,11.95,11/06/19 19:10,"638 Lakeview St, San Francisco, CA 94016" +290880,20in Monitor,1,109.99,11/07/19 21:18,"978 South St, San Francisco, CA 94016" +290881,USB-C Charging Cable,1,11.95,11/06/19 16:47,"72 Hickory St, Los Angeles, CA 90001" +290882,Bose SoundSport Headphones,1,99.99,11/06/19 15:45,"597 Forest St, Portland, OR 97035" +290883,Wired Headphones,1,11.99,11/02/19 13:53,"31 9th St, Portland, OR 97035" +290884,AA Batteries (4-pack),1,3.84,11/06/19 21:04,"184 Center St, San Francisco, CA 94016" +290885,iPhone,1,700,11/24/19 10:18,"604 Adams St, San Francisco, CA 94016" +290885,Wired Headphones,1,11.99,11/24/19 10:18,"604 Adams St, San Francisco, CA 94016" +290886,20in Monitor,1,109.99,11/25/19 16:21,"376 Ridge St, Los Angeles, CA 90001" +290887,27in FHD Monitor,1,149.99,11/02/19 12:03,"493 Cedar St, Boston, MA 02215" +290888,AA Batteries (4-pack),1,3.84,11/18/19 12:57,"107 Walnut St, New York City, NY 10001" +290889,Lightning Charging Cable,1,14.95,11/02/19 19:27,"164 Hickory St, Austin, TX 73301" +290890,27in FHD Monitor,1,149.99,11/13/19 22:01,"986 10th St, Los Angeles, CA 90001" +290891,Google Phone,1,600,11/21/19 14:28,"77 Johnson St, Boston, MA 02215" +290892,Wired Headphones,1,11.99,11/27/19 16:37,"258 Dogwood St, San Francisco, CA 94016" +290893,ThinkPad Laptop,1,999.99,11/11/19 02:38,"406 4th St, San Francisco, CA 94016" +290894,AA Batteries (4-pack),1,3.84,11/12/19 15:14,"176 River St, Boston, MA 02215" +290895,Wired Headphones,1,11.99,11/02/19 16:12,"178 Walnut St, Los Angeles, CA 90001" +290895,USB-C Charging Cable,1,11.95,11/02/19 16:12,"178 Walnut St, Los Angeles, CA 90001" +290896,AA Batteries (4-pack),2,3.84,11/06/19 09:27,"582 5th St, San Francisco, CA 94016" +290897,27in 4K Gaming Monitor,1,389.99,11/27/19 21:55,"289 Adams St, Boston, MA 02215" +290898,USB-C Charging Cable,1,11.95,11/26/19 06:32,"496 1st St, New York City, NY 10001" +290899,AAA Batteries (4-pack),1,2.99,11/01/19 07:28,"536 Johnson St, San Francisco, CA 94016" +290900,Wired Headphones,1,11.99,11/05/19 14:50,"947 Pine St, New York City, NY 10001" +290901,AA Batteries (4-pack),1,3.84,11/16/19 16:38,"753 2nd St, San Francisco, CA 94016" +290902,Apple Airpods Headphones,1,150,11/14/19 20:04,"489 Main St, Boston, MA 02215" +290903,USB-C Charging Cable,1,11.95,11/04/19 18:09,"522 Pine St, Los Angeles, CA 90001" +290904,Macbook Pro Laptop,1,1700,11/04/19 08:40,"107 Willow St, Boston, MA 02215" +290905,Apple Airpods Headphones,1,150,11/07/19 07:42,"853 13th St, Los Angeles, CA 90001" +290906,USB-C Charging Cable,1,11.95,11/08/19 20:21,"346 Lincoln St, San Francisco, CA 94016" +290907,AAA Batteries (4-pack),2,2.99,11/30/19 18:27,"26 Cherry St, San Francisco, CA 94016" +290908,Bose SoundSport Headphones,1,99.99,11/05/19 20:02,"790 Sunset St, Dallas, TX 75001" +290909,AA Batteries (4-pack),1,3.84,11/13/19 02:04,"938 Washington St, Boston, MA 02215" +,,,,, +290910,USB-C Charging Cable,1,11.95,11/02/19 21:30,"494 Ridge St, San Francisco, CA 94016" +290911,Wired Headphones,2,11.99,11/16/19 23:48,"89 13th St, Boston, MA 02215" +290912,Apple Airpods Headphones,1,150,11/09/19 13:53,"389 9th St, San Francisco, CA 94016" +290913,USB-C Charging Cable,1,11.95,11/23/19 14:08,"815 Cherry St, San Francisco, CA 94016" +290914,Macbook Pro Laptop,1,1700,11/20/19 18:27,"966 Walnut St, New York City, NY 10001" +290915,Flatscreen TV,1,300,11/01/19 16:00,"217 South St, Dallas, TX 75001" +290916,Apple Airpods Headphones,1,150,11/27/19 13:09,"389 Adams St, Los Angeles, CA 90001" +290917,Apple Airpods Headphones,1,150,11/06/19 17:42,"355 6th St, San Francisco, CA 94016" +290918,USB-C Charging Cable,1,11.95,11/16/19 08:32,"727 9th St, San Francisco, CA 94016" +290919,Apple Airpods Headphones,1,150,11/28/19 09:08,"897 4th St, Atlanta, GA 30301" +290920,AA Batteries (4-pack),1,3.84,11/05/19 23:03,"223 4th St, New York City, NY 10001" +290921,27in FHD Monitor,1,149.99,11/29/19 21:10,"897 6th St, Los Angeles, CA 90001" +290922,27in 4K Gaming Monitor,1,389.99,11/28/19 15:11,"949 Ridge St, Austin, TX 73301" +290923,Bose SoundSport Headphones,1,99.99,11/04/19 14:37,"960 12th St, New York City, NY 10001" +290924,USB-C Charging Cable,1,11.95,11/07/19 12:48,"629 Church St, Atlanta, GA 30301" +290925,USB-C Charging Cable,1,11.95,11/12/19 16:44,"738 1st St, New York City, NY 10001" +290926,Vareebadd Phone,1,400,11/12/19 21:48,"171 Lake St, Los Angeles, CA 90001" +290927,USB-C Charging Cable,1,11.95,11/15/19 13:52,"520 Highland St, Portland, OR 97035" +290928,27in FHD Monitor,1,149.99,11/04/19 21:35,"84 7th St, New York City, NY 10001" +290929,AA Batteries (4-pack),1,3.84,11/12/19 20:52,"4 Forest St, Los Angeles, CA 90001" +290930,USB-C Charging Cable,1,11.95,11/25/19 11:58,"189 Washington St, San Francisco, CA 94016" +290931,Wired Headphones,1,11.99,11/23/19 18:43,"364 6th St, Atlanta, GA 30301" +290932,USB-C Charging Cable,1,11.95,11/03/19 22:19,"880 13th St, New York City, NY 10001" +290933,Bose SoundSport Headphones,1,99.99,11/19/19 14:32,"72 Jackson St, San Francisco, CA 94016" +290934,Lightning Charging Cable,1,14.95,11/07/19 14:09,"972 12th St, Atlanta, GA 30301" +290935,AAA Batteries (4-pack),2,2.99,11/07/19 12:57,"190 Lake St, New York City, NY 10001" +290936,27in FHD Monitor,1,149.99,11/04/19 10:39,"587 Cherry St, Portland, OR 97035" +290937,Bose SoundSport Headphones,1,99.99,11/01/19 09:35,"961 Pine St, Los Angeles, CA 90001" +290938,AA Batteries (4-pack),3,3.84,11/15/19 19:43,"777 Willow St, New York City, NY 10001" +290939,Bose SoundSport Headphones,1,99.99,11/15/19 09:04,"25 6th St, New York City, NY 10001" +290940,AAA Batteries (4-pack),1,2.99,11/29/19 10:41,"870 Washington St, Los Angeles, CA 90001" +290941,Lightning Charging Cable,1,14.95,11/11/19 11:56,"786 Wilson St, Dallas, TX 75001" +290942,Flatscreen TV,1,300,11/26/19 08:53,"909 Spruce St, San Francisco, CA 94016" +290943,Lightning Charging Cable,1,14.95,11/20/19 23:22,"970 Center St, Portland, ME 04101" +290944,Apple Airpods Headphones,1,150,11/16/19 09:28,"327 Wilson St, Boston, MA 02215" +290945,Apple Airpods Headphones,2,150,11/08/19 07:26,"763 Main St, Boston, MA 02215" +290946,20in Monitor,1,109.99,11/13/19 12:16,"912 Elm St, New York City, NY 10001" +290947,LG Washing Machine,1,600.0,11/27/19 18:07,"535 1st St, New York City, NY 10001" +290948,AA Batteries (4-pack),1,3.84,11/07/19 15:46,"388 4th St, Atlanta, GA 30301" +290949,USB-C Charging Cable,1,11.95,11/09/19 11:29,"865 12th St, Austin, TX 73301" +290950,Wired Headphones,1,11.99,11/07/19 17:28,"134 Center St, New York City, NY 10001" +290951,34in Ultrawide Monitor,1,379.99,11/08/19 15:16,"696 12th St, New York City, NY 10001" +290952,USB-C Charging Cable,1,11.95,11/04/19 18:57,"386 9th St, Los Angeles, CA 90001" +290953,AAA Batteries (4-pack),2,2.99,11/28/19 16:54,"287 West St, Austin, TX 73301" +290954,Wired Headphones,1,11.99,11/10/19 10:33,"578 Sunset St, Boston, MA 02215" +290955,Wired Headphones,1,11.99,11/04/19 10:48,"544 Center St, Los Angeles, CA 90001" +290956,AA Batteries (4-pack),1,3.84,11/21/19 20:20,"627 Cherry St, San Francisco, CA 94016" +290956,Wired Headphones,1,11.99,11/21/19 20:20,"627 Cherry St, San Francisco, CA 94016" +290957,AA Batteries (4-pack),2,3.84,11/22/19 08:26,"413 8th St, Dallas, TX 75001" +290958,20in Monitor,1,109.99,11/24/19 22:08,"213 Wilson St, Dallas, TX 75001" +290959,Wired Headphones,1,11.99,11/03/19 13:02,"205 Jackson St, San Francisco, CA 94016" +290960,20in Monitor,1,109.99,11/02/19 19:59,"584 Highland St, Los Angeles, CA 90001" +290961,LG Washing Machine,1,600.0,11/13/19 09:03,"931 Sunset St, New York City, NY 10001" +290962,Lightning Charging Cable,2,14.95,11/18/19 15:06,"749 Park St, Atlanta, GA 30301" +290963,Apple Airpods Headphones,1,150,11/21/19 07:35,"291 Maple St, Boston, MA 02215" +290964,AA Batteries (4-pack),5,3.84,11/28/19 10:03,"543 Ridge St, Boston, MA 02215" +290965,AAA Batteries (4-pack),1,2.99,11/02/19 23:15,"809 2nd St, New York City, NY 10001" +290966,Apple Airpods Headphones,1,150,11/22/19 22:20,"994 Willow St, Boston, MA 02215" +290967,AAA Batteries (4-pack),1,2.99,11/23/19 20:15,"190 Park St, Atlanta, GA 30301" +290968,USB-C Charging Cable,1,11.95,11/28/19 11:50,"242 Walnut St, Boston, MA 02215" +290969,AA Batteries (4-pack),2,3.84,11/30/19 12:28,"995 Jackson St, New York City, NY 10001" +290970,Apple Airpods Headphones,1,150,11/30/19 22:41,"791 Elm St, San Francisco, CA 94016" +290971,Google Phone,1,600,11/02/19 14:49,"925 Meadow St, San Francisco, CA 94016" +290972,Bose SoundSport Headphones,1,99.99,11/13/19 18:34,"383 6th St, San Francisco, CA 94016" +290973,AA Batteries (4-pack),1,3.84,11/19/19 18:43,"865 13th St, Los Angeles, CA 90001" +290974,Flatscreen TV,1,300,11/02/19 16:50,"732 2nd St, Boston, MA 02215" +290975,USB-C Charging Cable,2,11.95,11/10/19 14:29,"75 1st St, San Francisco, CA 94016" +290976,Macbook Pro Laptop,1,1700,11/28/19 23:56,"704 5th St, New York City, NY 10001" +290977,AA Batteries (4-pack),1,3.84,11/30/19 20:57,"785 Cedar St, Los Angeles, CA 90001" +290978,AA Batteries (4-pack),1,3.84,11/05/19 11:42,"120 North St, Portland, OR 97035" +290979,Bose SoundSport Headphones,1,99.99,11/05/19 00:11,"372 Cedar St, Seattle, WA 98101" +290980,27in 4K Gaming Monitor,1,389.99,11/20/19 18:50,"542 7th St, Dallas, TX 75001" +290981,Lightning Charging Cable,1,14.95,11/03/19 20:48,"288 Park St, New York City, NY 10001" +290982,Apple Airpods Headphones,2,150,11/10/19 18:03,"412 Spruce St, San Francisco, CA 94016" +290983,Lightning Charging Cable,1,14.95,11/24/19 19:53,"708 Chestnut St, Dallas, TX 75001" +290984,Wired Headphones,1,11.99,11/07/19 13:43,"769 Walnut St, San Francisco, CA 94016" +290985,Macbook Pro Laptop,1,1700,11/07/19 15:17,"344 Adams St, Los Angeles, CA 90001" +290986,AA Batteries (4-pack),1,3.84,11/06/19 22:57,"819 Hill St, Los Angeles, CA 90001" +290987,AAA Batteries (4-pack),1,2.99,11/25/19 17:36,"998 Dogwood St, New York City, NY 10001" +290988,Lightning Charging Cable,1,14.95,11/03/19 21:05,"972 Cherry St, San Francisco, CA 94016" +290989,AAA Batteries (4-pack),1,2.99,11/22/19 17:28,"235 Sunset St, San Francisco, CA 94016" +290990,AA Batteries (4-pack),1,3.84,11/06/19 00:06,"543 11th St, Los Angeles, CA 90001" +290990,34in Ultrawide Monitor,1,379.99,11/06/19 00:06,"543 11th St, Los Angeles, CA 90001" +290991,20in Monitor,1,109.99,11/12/19 15:48,"944 Elm St, San Francisco, CA 94016" +290992,USB-C Charging Cable,1,11.95,11/14/19 21:01,"603 Lakeview St, San Francisco, CA 94016" +290992,USB-C Charging Cable,1,11.95,11/14/19 21:01,"603 Lakeview St, San Francisco, CA 94016" +290993,Google Phone,1,600,11/23/19 12:52,"809 Hill St, Los Angeles, CA 90001" +290993,USB-C Charging Cable,1,11.95,11/23/19 12:52,"809 Hill St, Los Angeles, CA 90001" +290993,34in Ultrawide Monitor,1,379.99,11/23/19 12:52,"809 Hill St, Los Angeles, CA 90001" +290994,USB-C Charging Cable,1,11.95,11/10/19 09:00,"638 Cedar St, Boston, MA 02215" +290995,Flatscreen TV,1,300,11/09/19 06:45,"523 Dogwood St, Los Angeles, CA 90001" +290996,Wired Headphones,1,11.99,11/17/19 16:12,"478 Hickory St, New York City, NY 10001" +290997,AA Batteries (4-pack),1,3.84,11/12/19 17:40,"627 Adams St, Portland, OR 97035" +290998,USB-C Charging Cable,1,11.95,11/30/19 20:33,"12 Maple St, Atlanta, GA 30301" +290999,Lightning Charging Cable,1,14.95,11/30/19 21:17,"998 Elm St, Dallas, TX 75001" +291000,iPhone,1,700,11/23/19 18:42,"780 Forest St, Dallas, TX 75001" +291000,Apple Airpods Headphones,1,150,11/23/19 18:42,"780 Forest St, Dallas, TX 75001" +291001,Macbook Pro Laptop,1,1700,11/09/19 19:05,"293 Lakeview St, San Francisco, CA 94016" +291002,Lightning Charging Cable,1,14.95,11/02/19 07:41,"96 Cedar St, San Francisco, CA 94016" +291003,Wired Headphones,1,11.99,11/20/19 16:41,"367 Forest St, Dallas, TX 75001" +291004,AAA Batteries (4-pack),1,2.99,11/25/19 11:39,"48 Lakeview St, Los Angeles, CA 90001" +291005,AAA Batteries (4-pack),1,2.99,11/13/19 18:59,"625 Main St, San Francisco, CA 94016" +291006,Wired Headphones,1,11.99,11/03/19 11:52,"77 11th St, New York City, NY 10001" +291007,Google Phone,1,600,11/03/19 16:34,"453 Cedar St, Portland, OR 97035" +291007,USB-C Charging Cable,1,11.95,11/03/19 16:34,"453 Cedar St, Portland, OR 97035" +291008,AAA Batteries (4-pack),1,2.99,11/17/19 14:41,"614 2nd St, San Francisco, CA 94016" +291009,Apple Airpods Headphones,1,150,11/24/19 07:58,"232 Meadow St, New York City, NY 10001" +291010,Apple Airpods Headphones,1,150,11/12/19 13:25,"915 Sunset St, Dallas, TX 75001" +291011,iPhone,1,700,11/28/19 20:25,"940 7th St, Atlanta, GA 30301" +291012,20in Monitor,1,109.99,11/26/19 23:02,"718 8th St, New York City, NY 10001" +291013,AA Batteries (4-pack),1,3.84,11/12/19 09:04,"396 4th St, Los Angeles, CA 90001" +291014,34in Ultrawide Monitor,1,379.99,11/13/19 10:27,"864 4th St, San Francisco, CA 94016" +291015,Google Phone,1,600,11/14/19 21:16,"458 Main St, Seattle, WA 98101" +291016,Apple Airpods Headphones,1,150,11/14/19 17:23,"633 10th St, Los Angeles, CA 90001" +291017,iPhone,1,700,11/15/19 22:39,"221 1st St, Los Angeles, CA 90001" +291018,Apple Airpods Headphones,1,150,11/06/19 20:48,"926 10th St, San Francisco, CA 94016" +291019,27in 4K Gaming Monitor,1,389.99,11/23/19 15:10,"235 Chestnut St, Los Angeles, CA 90001" +291020,Bose SoundSport Headphones,1,99.99,11/02/19 12:15,"390 Highland St, Boston, MA 02215" +291021,Macbook Pro Laptop,1,1700,11/14/19 18:20,"565 Dogwood St, Los Angeles, CA 90001" +291022,Wired Headphones,1,11.99,11/13/19 18:15,"582 4th St, Atlanta, GA 30301" +291023,Bose SoundSport Headphones,1,99.99,11/29/19 19:21,"54 Spruce St, Boston, MA 02215" +291024,AA Batteries (4-pack),2,3.84,11/20/19 22:02,"439 5th St, Atlanta, GA 30301" +291025,Wired Headphones,1,11.99,11/25/19 20:25,"259 Dogwood St, Los Angeles, CA 90001" +291026,Google Phone,1,600,11/16/19 19:45,"134 Ridge St, New York City, NY 10001" +291027,Google Phone,1,600,11/08/19 16:11,"230 12th St, Dallas, TX 75001" +291027,Wired Headphones,1,11.99,11/08/19 16:11,"230 12th St, Dallas, TX 75001" +291028,AAA Batteries (4-pack),1,2.99,11/23/19 15:41,"526 Willow St, San Francisco, CA 94016" +291029,Lightning Charging Cable,2,14.95,11/01/19 15:15,"928 Lake St, Boston, MA 02215" +291030,Wired Headphones,2,11.99,11/08/19 15:26,"202 Meadow St, New York City, NY 10001" +291031,AA Batteries (4-pack),2,3.84,11/20/19 22:34,"863 13th St, San Francisco, CA 94016" +291032,USB-C Charging Cable,1,11.95,11/30/19 12:45,"146 Cedar St, San Francisco, CA 94016" +291033,Bose SoundSport Headphones,1,99.99,11/14/19 01:46,"907 6th St, Atlanta, GA 30301" +291034,Wired Headphones,1,11.99,11/23/19 21:39,"53 Maple St, New York City, NY 10001" +291035,AA Batteries (4-pack),1,3.84,11/14/19 11:01,"154 Church St, Boston, MA 02215" +291036,iPhone,1,700,11/06/19 13:38,"940 10th St, Seattle, WA 98101" +291036,Lightning Charging Cable,1,14.95,11/06/19 13:38,"940 10th St, Seattle, WA 98101" +291037,Lightning Charging Cable,1,14.95,11/03/19 19:22,"857 9th St, Austin, TX 73301" +291038,AAA Batteries (4-pack),1,2.99,11/21/19 14:44,"575 5th St, Portland, OR 97035" +291038,AAA Batteries (4-pack),1,2.99,11/21/19 14:44,"575 5th St, Portland, OR 97035" +291039,AA Batteries (4-pack),1,3.84,11/23/19 20:29,"266 South St, San Francisco, CA 94016" +291040,Macbook Pro Laptop,1,1700,11/06/19 21:23,"382 Highland St, Los Angeles, CA 90001" +291041,Macbook Pro Laptop,1,1700,11/23/19 11:24,"713 Lake St, Portland, ME 04101" +291042,Bose SoundSport Headphones,1,99.99,11/22/19 17:22,"371 12th St, Boston, MA 02215" +291043,AA Batteries (4-pack),1,3.84,11/15/19 18:33,"234 Cherry St, Los Angeles, CA 90001" +291044,USB-C Charging Cable,1,11.95,11/07/19 09:58,"375 Willow St, Los Angeles, CA 90001" +291045,Bose SoundSport Headphones,1,99.99,11/18/19 11:08,"658 7th St, Seattle, WA 98101" +291046,Wired Headphones,1,11.99,11/12/19 16:58,"566 Main St, Austin, TX 73301" +291047,AA Batteries (4-pack),1,3.84,11/12/19 19:33,"287 8th St, Los Angeles, CA 90001" +291048,AA Batteries (4-pack),1,3.84,11/04/19 09:39,"17 7th St, Dallas, TX 75001" +291049,AAA Batteries (4-pack),1,2.99,11/16/19 22:06,"714 Sunset St, San Francisco, CA 94016" +291050,AAA Batteries (4-pack),1,2.99,11/05/19 22:03,"69 10th St, Atlanta, GA 30301" +291051,Apple Airpods Headphones,1,150,11/29/19 16:45,"423 9th St, San Francisco, CA 94016" +291052,iPhone,1,700,11/04/19 20:16,"743 Lake St, Portland, ME 04101" +291052,Lightning Charging Cable,1,14.95,11/04/19 20:16,"743 Lake St, Portland, ME 04101" +291052,Apple Airpods Headphones,1,150,11/04/19 20:16,"743 Lake St, Portland, ME 04101" +291053,Lightning Charging Cable,2,14.95,11/27/19 14:29,"414 Elm St, Boston, MA 02215" +291054,27in FHD Monitor,1,149.99,11/19/19 10:09,"87 Jackson St, Los Angeles, CA 90001" +291055,27in 4K Gaming Monitor,1,389.99,11/30/19 14:50,"762 Walnut St, San Francisco, CA 94016" +291056,Bose SoundSport Headphones,1,99.99,11/15/19 17:41,"461 Lakeview St, San Francisco, CA 94016" +291057,Wired Headphones,1,11.99,11/01/19 15:59,"496 Hill St, New York City, NY 10001" +291058,USB-C Charging Cable,1,11.95,11/08/19 06:39,"348 Walnut St, New York City, NY 10001" +291059,Flatscreen TV,1,300,11/21/19 20:10,"749 Jefferson St, Los Angeles, CA 90001" +291060,AA Batteries (4-pack),1,3.84,11/11/19 13:52,"200 Elm St, San Francisco, CA 94016" +291061,AA Batteries (4-pack),2,3.84,11/07/19 17:51,"829 Cherry St, San Francisco, CA 94016" +291062,27in FHD Monitor,1,149.99,11/16/19 20:19,"97 Johnson St, Seattle, WA 98101" +291063,Lightning Charging Cable,2,14.95,11/14/19 20:56,"868 Elm St, New York City, NY 10001" +291064,AA Batteries (4-pack),1,3.84,11/29/19 06:35,"303 Main St, Seattle, WA 98101" +291065,AAA Batteries (4-pack),3,2.99,11/03/19 21:09,"631 1st St, Los Angeles, CA 90001" +291066,AA Batteries (4-pack),1,3.84,11/20/19 08:51,"502 Jackson St, New York City, NY 10001" +291067,Bose SoundSport Headphones,1,99.99,11/09/19 17:48,"284 2nd St, Portland, OR 97035" +291068,AAA Batteries (4-pack),1,2.99,11/30/19 13:53,"173 13th St, San Francisco, CA 94016" +291069,Bose SoundSport Headphones,1,99.99,11/21/19 19:45,"909 5th St, San Francisco, CA 94016" +291070,Wired Headphones,1,11.99,11/06/19 09:32,"862 14th St, New York City, NY 10001" +291071,USB-C Charging Cable,1,11.95,11/30/19 11:18,"737 Washington St, Los Angeles, CA 90001" +291072,AAA Batteries (4-pack),1,2.99,11/01/19 21:33,"215 10th St, New York City, NY 10001" +291073,Bose SoundSport Headphones,1,99.99,11/06/19 17:02,"173 Highland St, San Francisco, CA 94016" +291074,iPhone,1,700,11/21/19 10:16,"722 5th St, Dallas, TX 75001" +291074,Lightning Charging Cable,1,14.95,11/21/19 10:16,"722 5th St, Dallas, TX 75001" +291075,Google Phone,1,600,11/18/19 11:25,"845 14th St, Seattle, WA 98101" +291076,USB-C Charging Cable,1,11.95,11/27/19 22:15,"662 Madison St, Boston, MA 02215" +291077,Lightning Charging Cable,1,14.95,11/22/19 05:00,"795 Jackson St, Dallas, TX 75001" +291078,Bose SoundSport Headphones,1,99.99,11/01/19 17:56,"441 12th St, Los Angeles, CA 90001" +291079,USB-C Charging Cable,1,11.95,11/15/19 15:30,"728 Main St, New York City, NY 10001" +291080,Wired Headphones,1,11.99,11/02/19 18:57,"179 10th St, San Francisco, CA 94016" +291081,34in Ultrawide Monitor,1,379.99,11/26/19 16:49,"374 Cedar St, Portland, OR 97035" +291082,34in Ultrawide Monitor,1,379.99,11/05/19 20:17,"674 Sunset St, Los Angeles, CA 90001" +291083,Apple Airpods Headphones,1,150,11/11/19 07:14,"958 Lakeview St, Los Angeles, CA 90001" +291084,USB-C Charging Cable,1,11.95,11/03/19 20:00,"960 Maple St, Portland, OR 97035" +291085,Wired Headphones,2,11.99,11/06/19 17:10,"790 5th St, Dallas, TX 75001" +291086,AAA Batteries (4-pack),1,2.99,11/29/19 17:52,"11 Cedar St, San Francisco, CA 94016" +291087,AA Batteries (4-pack),1,3.84,11/16/19 16:06,"431 North St, Boston, MA 02215" +291088,AA Batteries (4-pack),2,3.84,11/10/19 13:59,"586 Hill St, San Francisco, CA 94016" +291089,Vareebadd Phone,1,400,11/04/19 11:52,"646 Center St, San Francisco, CA 94016" +291090,USB-C Charging Cable,1,11.95,11/22/19 13:21,"995 Willow St, New York City, NY 10001" +291091,Bose SoundSport Headphones,1,99.99,11/07/19 13:15,"591 Washington St, Portland, OR 97035" +291092,27in 4K Gaming Monitor,1,389.99,11/27/19 22:22,"544 4th St, Boston, MA 02215" +291093,AA Batteries (4-pack),1,3.84,11/04/19 10:51,"222 10th St, Boston, MA 02215" +291094,Bose SoundSport Headphones,1,99.99,11/07/19 17:57,"98 10th St, Portland, OR 97035" +291095,20in Monitor,1,109.99,11/14/19 07:08,"944 Cedar St, Los Angeles, CA 90001" +291096,Google Phone,1,600,11/04/19 16:28,"28 Lincoln St, Portland, ME 04101" +291097,AAA Batteries (4-pack),1,2.99,11/29/19 11:27,"734 North St, New York City, NY 10001" +291098,Bose SoundSport Headphones,1,99.99,11/08/19 07:41,"399 Main St, Seattle, WA 98101" +291099,AA Batteries (4-pack),1,3.84,11/07/19 01:11,"229 Willow St, New York City, NY 10001" +291100,iPhone,1,700,11/27/19 13:27,"744 12th St, Los Angeles, CA 90001" +291101,AAA Batteries (4-pack),6,2.99,11/19/19 16:21,"693 Jackson St, Boston, MA 02215" +291102,Apple Airpods Headphones,1,150,11/17/19 22:15,"283 7th St, Los Angeles, CA 90001" +291103,34in Ultrawide Monitor,1,379.99,11/11/19 15:07,"32 Adams St, Boston, MA 02215" +291103,AA Batteries (4-pack),1,3.84,11/11/19 15:07,"32 Adams St, Boston, MA 02215" +291104,AAA Batteries (4-pack),1,2.99,11/14/19 12:27,"986 Johnson St, San Francisco, CA 94016" +291105,AA Batteries (4-pack),1,3.84,11/01/19 23:57,"906 Maple St, Portland, OR 97035" +291106,Apple Airpods Headphones,1,150,11/10/19 15:00,"93 10th St, San Francisco, CA 94016" +291107,Wired Headphones,1,11.99,11/28/19 23:21,"829 Dogwood St, New York City, NY 10001" +291108,Wired Headphones,1,11.99,11/26/19 13:17,"362 Dogwood St, San Francisco, CA 94016" +291109,Macbook Pro Laptop,1,1700,11/04/19 10:32,"611 Madison St, Dallas, TX 75001" +291110,Wired Headphones,1,11.99,11/18/19 19:33,"396 Hickory St, Atlanta, GA 30301" +291110,AAA Batteries (4-pack),2,2.99,11/18/19 19:33,"396 Hickory St, Atlanta, GA 30301" +291111,iPhone,1,700,11/17/19 11:47,"659 Wilson St, New York City, NY 10001" +291112,USB-C Charging Cable,1,11.95,11/26/19 16:58,"191 Church St, Dallas, TX 75001" +291113,Google Phone,1,600,11/08/19 00:04,"294 8th St, Boston, MA 02215" +291114,Apple Airpods Headphones,1,150,11/19/19 17:52,"95 Walnut St, San Francisco, CA 94016" +291115,Wired Headphones,1,11.99,11/20/19 09:29,"481 West St, New York City, NY 10001" +291116,USB-C Charging Cable,1,11.95,11/30/19 22:55,"819 Ridge St, New York City, NY 10001" +291117,iPhone,1,700,11/25/19 19:47,"843 Lincoln St, San Francisco, CA 94016" +291117,Lightning Charging Cable,1,14.95,11/25/19 19:47,"843 Lincoln St, San Francisco, CA 94016" +291118,AA Batteries (4-pack),1,3.84,11/30/19 11:08,"269 Ridge St, San Francisco, CA 94016" +291119,Wired Headphones,1,11.99,11/14/19 21:04,"928 Johnson St, Boston, MA 02215" +291120,Wired Headphones,1,11.99,11/03/19 17:39,"372 Spruce St, San Francisco, CA 94016" +291121,USB-C Charging Cable,3,11.95,11/06/19 10:54,"448 6th St, San Francisco, CA 94016" +291122,Apple Airpods Headphones,1,150,11/30/19 18:40,"256 West St, San Francisco, CA 94016" +291122,Apple Airpods Headphones,1,150,11/30/19 18:40,"256 West St, San Francisco, CA 94016" +291123,Apple Airpods Headphones,1,150,11/08/19 09:04,"640 Elm St, Boston, MA 02215" +291123,Lightning Charging Cable,1,14.95,11/08/19 09:04,"640 Elm St, Boston, MA 02215" +291124,Apple Airpods Headphones,1,150,11/19/19 15:04,"12 8th St, Boston, MA 02215" +291125,AAA Batteries (4-pack),1,2.99,11/13/19 11:31,"222 Cherry St, Los Angeles, CA 90001" +291126,Lightning Charging Cable,1,14.95,11/24/19 14:08,"177 Sunset St, Atlanta, GA 30301" +291127,Lightning Charging Cable,1,14.95,11/05/19 17:52,"618 Pine St, San Francisco, CA 94016" +291128,27in FHD Monitor,1,149.99,11/05/19 11:27,"170 River St, San Francisco, CA 94016" +291129,Apple Airpods Headphones,1,150,11/26/19 23:03,"69 Chestnut St, Seattle, WA 98101" +291130,USB-C Charging Cable,1,11.95,11/02/19 11:08,"598 Adams St, Seattle, WA 98101" +291131,Lightning Charging Cable,1,14.95,11/22/19 08:01,"39 Spruce St, New York City, NY 10001" +291132,Lightning Charging Cable,1,14.95,11/17/19 01:14,"388 Hickory St, Los Angeles, CA 90001" +291133,USB-C Charging Cable,1,11.95,11/25/19 12:27,"538 Cedar St, Boston, MA 02215" +291134,Wired Headphones,1,11.99,11/27/19 05:44,"757 Walnut St, Los Angeles, CA 90001" +291135,AA Batteries (4-pack),1,3.84,11/29/19 07:46,"675 Elm St, Atlanta, GA 30301" +291136,34in Ultrawide Monitor,1,379.99,11/30/19 15:56,"861 Spruce St, New York City, NY 10001" +291137,Bose SoundSport Headphones,1,99.99,11/06/19 14:16,"928 Jackson St, San Francisco, CA 94016" +291138,Wired Headphones,1,11.99,11/02/19 21:52,"23 Cedar St, Seattle, WA 98101" +291139,Bose SoundSport Headphones,1,99.99,11/24/19 11:47,"446 11th St, San Francisco, CA 94016" +291140,USB-C Charging Cable,1,11.95,11/24/19 16:38,"618 Adams St, New York City, NY 10001" +291141,USB-C Charging Cable,2,11.95,11/17/19 17:38,"922 Elm St, San Francisco, CA 94016" +291142,iPhone,1,700,11/27/19 12:13,"945 Cedar St, San Francisco, CA 94016" +291142,Lightning Charging Cable,1,14.95,11/27/19 12:13,"945 Cedar St, San Francisco, CA 94016" +291142,Wired Headphones,1,11.99,11/27/19 12:13,"945 Cedar St, San Francisco, CA 94016" +291143,Wired Headphones,2,11.99,11/30/19 10:25,"294 6th St, Boston, MA 02215" +291144,Lightning Charging Cable,1,14.95,11/22/19 21:09,"160 Main St, Dallas, TX 75001" +291145,Lightning Charging Cable,1,14.95,11/26/19 12:04,"874 Elm St, New York City, NY 10001" +291146,AAA Batteries (4-pack),1,2.99,11/26/19 20:44,"614 Hickory St, Los Angeles, CA 90001" +291147,27in FHD Monitor,1,149.99,11/24/19 14:36,"518 Jackson St, Boston, MA 02215" +291148,AA Batteries (4-pack),1,3.84,11/10/19 00:13,"590 West St, Boston, MA 02215" +291149,USB-C Charging Cable,1,11.95,11/15/19 11:38,"795 Wilson St, Boston, MA 02215" +291150,AAA Batteries (4-pack),1,2.99,11/09/19 10:49,"758 Elm St, Los Angeles, CA 90001" +291151,Apple Airpods Headphones,1,150,11/19/19 11:50,"456 South St, Dallas, TX 75001" +291152,Lightning Charging Cable,1,14.95,11/10/19 22:57,"125 6th St, Dallas, TX 75001" +291153,Apple Airpods Headphones,1,150,11/11/19 21:42,"354 4th St, Austin, TX 73301" +291154,Lightning Charging Cable,1,14.95,11/07/19 20:18,"684 Lakeview St, San Francisco, CA 94016" +291155,Wired Headphones,1,11.99,11/06/19 14:10,"80 Wilson St, San Francisco, CA 94016" +291156,Bose SoundSport Headphones,1,99.99,11/06/19 13:52,"305 Wilson St, Los Angeles, CA 90001" +291157,Macbook Pro Laptop,1,1700,11/27/19 08:37,"781 South St, New York City, NY 10001" +291158,Apple Airpods Headphones,1,150,11/20/19 16:02,"560 Pine St, San Francisco, CA 94016" +291159,Lightning Charging Cable,1,14.95,11/30/19 23:52,"173 Elm St, Boston, MA 02215" +291160,Lightning Charging Cable,1,14.95,11/19/19 00:24,"402 Wilson St, Los Angeles, CA 90001" +291161,AA Batteries (4-pack),1,3.84,11/02/19 11:50,"423 Church St, Seattle, WA 98101" +291162,Lightning Charging Cable,1,14.95,11/16/19 13:17,"438 Lake St, Atlanta, GA 30301" +291163,AAA Batteries (4-pack),3,2.99,11/02/19 01:53,"904 11th St, Dallas, TX 75001" +291164,34in Ultrawide Monitor,1,379.99,11/20/19 16:18,"36 9th St, New York City, NY 10001" +291165,USB-C Charging Cable,1,11.95,11/02/19 20:02,"831 13th St, Atlanta, GA 30301" +291166,AAA Batteries (4-pack),2,2.99,11/09/19 11:43,"872 Main St, New York City, NY 10001" +291167,Apple Airpods Headphones,1,150,11/21/19 20:50,"106 Wilson St, Los Angeles, CA 90001" +291168,AAA Batteries (4-pack),1,2.99,11/04/19 08:54,"205 North St, San Francisco, CA 94016" +291169,AAA Batteries (4-pack),2,2.99,11/10/19 19:08,"477 South St, New York City, NY 10001" +291170,Apple Airpods Headphones,1,150,11/14/19 16:19,"975 West St, New York City, NY 10001" +291171,Google Phone,1,600,11/13/19 06:56,"570 Center St, San Francisco, CA 94016" +291172,Apple Airpods Headphones,1,150,11/21/19 01:58,"495 Ridge St, San Francisco, CA 94016" +291173,AA Batteries (4-pack),1,3.84,11/25/19 14:26,"785 Washington St, Boston, MA 02215" +291174,Lightning Charging Cable,1,14.95,11/17/19 15:05,"466 River St, San Francisco, CA 94016" +291175,27in FHD Monitor,1,149.99,11/21/19 11:54,"214 Jefferson St, San Francisco, CA 94016" +291176,Wired Headphones,3,11.99,11/02/19 19:23,"993 8th St, San Francisco, CA 94016" +291177,AAA Batteries (4-pack),1,2.99,11/08/19 20:45,"762 Washington St, Austin, TX 73301" +291178,AA Batteries (4-pack),2,3.84,11/23/19 16:45,"815 Johnson St, Portland, OR 97035" +291179,Lightning Charging Cable,1,14.95,11/28/19 16:07,"817 Hill St, New York City, NY 10001" +291180,LG Dryer,1,600.0,11/15/19 13:24,"570 Lincoln St, Seattle, WA 98101" +291181,Wired Headphones,1,11.99,11/27/19 15:38,"809 1st St, San Francisco, CA 94016" +291182,Google Phone,1,600,11/05/19 11:42,"968 North St, Atlanta, GA 30301" +291182,USB-C Charging Cable,1,11.95,11/05/19 11:42,"968 North St, Atlanta, GA 30301" +291183,USB-C Charging Cable,1,11.95,11/14/19 21:42,"789 Maple St, San Francisco, CA 94016" +291184,34in Ultrawide Monitor,1,379.99,11/14/19 16:41,"940 Cedar St, Boston, MA 02215" +291185,Macbook Pro Laptop,1,1700,11/12/19 20:10,"5 Meadow St, Portland, OR 97035" +291186,USB-C Charging Cable,1,11.95,11/20/19 13:18,"376 Hill St, Los Angeles, CA 90001" +291187,Lightning Charging Cable,1,14.95,11/27/19 14:45,"946 Hill St, New York City, NY 10001" +291188,AAA Batteries (4-pack),1,2.99,11/07/19 22:26,"436 Sunset St, New York City, NY 10001" +291189,AAA Batteries (4-pack),1,2.99,11/15/19 18:16,"768 Lincoln St, Austin, TX 73301" +291190,USB-C Charging Cable,1,11.95,11/19/19 08:37,"642 Church St, Boston, MA 02215" +291191,34in Ultrawide Monitor,1,379.99,11/01/19 15:18,"825 1st St, Boston, MA 02215" +291192,Apple Airpods Headphones,1,150,11/02/19 11:31,"708 2nd St, Boston, MA 02215" +291193,27in FHD Monitor,1,149.99,11/24/19 10:26,"26 Lake St, Los Angeles, CA 90001" +291194,AA Batteries (4-pack),1,3.84,11/11/19 11:53,"824 Dogwood St, New York City, NY 10001" +291195,iPhone,1,700,11/05/19 18:31,"419 River St, New York City, NY 10001" +291195,Lightning Charging Cable,1,14.95,11/05/19 18:31,"419 River St, New York City, NY 10001" +291196,20in Monitor,1,109.99,11/07/19 20:03,"570 Johnson St, Dallas, TX 75001" +291197,AA Batteries (4-pack),1,3.84,11/30/19 23:25,"970 Main St, San Francisco, CA 94016" +291198,AA Batteries (4-pack),1,3.84,11/27/19 22:52,"229 Adams St, New York City, NY 10001" +291199,AAA Batteries (4-pack),1,2.99,11/11/19 23:49,"23 Maple St, Los Angeles, CA 90001" +291200,AAA Batteries (4-pack),2,2.99,11/12/19 15:58,"544 Chestnut St, Seattle, WA 98101" +291201,Macbook Pro Laptop,1,1700,11/10/19 12:02,"223 Highland St, New York City, NY 10001" +291202,Lightning Charging Cable,1,14.95,11/09/19 18:08,"211 Cherry St, New York City, NY 10001" +291203,27in 4K Gaming Monitor,1,389.99,11/27/19 13:22,"824 12th St, San Francisco, CA 94016" +291204,Bose SoundSport Headphones,1,99.99,11/15/19 15:45,"539 Jefferson St, Boston, MA 02215" +291205,AAA Batteries (4-pack),1,2.99,11/15/19 20:25,"864 Cedar St, Los Angeles, CA 90001" +291206,USB-C Charging Cable,1,11.95,11/19/19 09:23,"431 Spruce St, Atlanta, GA 30301" +291207,Wired Headphones,1,11.99,11/01/19 20:55,"50 Hickory St, San Francisco, CA 94016" +291208,AAA Batteries (4-pack),1,2.99,11/07/19 22:53,"868 River St, San Francisco, CA 94016" +291209,Macbook Pro Laptop,1,1700,11/22/19 21:15,"195 West St, San Francisco, CA 94016" +291210,Lightning Charging Cable,1,14.95,11/07/19 17:59,"975 1st St, San Francisco, CA 94016" +291211,Apple Airpods Headphones,1,150,11/28/19 20:48,"614 9th St, Los Angeles, CA 90001" +291212,USB-C Charging Cable,1,11.95,11/17/19 18:17,"786 Jackson St, Seattle, WA 98101" +291213,Wired Headphones,1,11.99,11/29/19 08:38,"311 Washington St, Dallas, TX 75001" +291214,Google Phone,1,600,11/01/19 12:06,"517 Maple St, Portland, ME 04101" +291214,Wired Headphones,1,11.99,11/01/19 12:06,"517 Maple St, Portland, ME 04101" +291215,USB-C Charging Cable,1,11.95,11/29/19 19:09,"593 Adams St, Dallas, TX 75001" +291216,Bose SoundSport Headphones,1,99.99,11/23/19 11:48,"816 Highland St, Los Angeles, CA 90001" +291217,Bose SoundSport Headphones,1,99.99,11/17/19 16:52,"883 Elm St, Seattle, WA 98101" +291218,Lightning Charging Cable,1,14.95,11/23/19 21:38,"651 Willow St, Seattle, WA 98101" +291219,USB-C Charging Cable,1,11.95,11/08/19 21:37,"98 Hickory St, San Francisco, CA 94016" +291220,Lightning Charging Cable,1,14.95,11/11/19 17:35,"882 Hill St, Seattle, WA 98101" +291221,27in FHD Monitor,1,149.99,11/21/19 10:25,"742 Church St, San Francisco, CA 94016" +291222,34in Ultrawide Monitor,1,379.99,11/17/19 21:47,"547 Cherry St, Dallas, TX 75001" +291223,34in Ultrawide Monitor,1,379.99,11/12/19 11:32,"853 Church St, Dallas, TX 75001" +291224,Lightning Charging Cable,1,14.95,11/24/19 22:04,"28 7th St, Austin, TX 73301" +291224,USB-C Charging Cable,1,11.95,11/24/19 22:04,"28 7th St, Austin, TX 73301" +291225,AA Batteries (4-pack),1,3.84,11/13/19 16:00,"411 Washington St, New York City, NY 10001" +291226,34in Ultrawide Monitor,1,379.99,11/17/19 23:07,"177 Spruce St, Dallas, TX 75001" +291227,USB-C Charging Cable,1,11.95,11/16/19 17:42,"981 12th St, Boston, MA 02215" +291228,Wired Headphones,1,11.99,11/20/19 07:49,"933 Pine St, San Francisco, CA 94016" +291229,USB-C Charging Cable,1,11.95,11/10/19 11:20,"606 Sunset St, Austin, TX 73301" +291230,27in FHD Monitor,1,149.99,11/24/19 10:55,"152 13th St, Los Angeles, CA 90001" +291231,Flatscreen TV,1,300,11/17/19 20:22,"780 Adams St, Los Angeles, CA 90001" +291232,Vareebadd Phone,1,400,11/19/19 07:28,"150 Center St, New York City, NY 10001" +291233,Wired Headphones,1,11.99,11/28/19 17:31,"75 Highland St, Dallas, TX 75001" +291234,Lightning Charging Cable,1,14.95,11/01/19 13:42,"365 Jackson St, Atlanta, GA 30301" +291235,AA Batteries (4-pack),2,3.84,11/29/19 00:39,"239 Jefferson St, Seattle, WA 98101" +291236,USB-C Charging Cable,1,11.95,11/27/19 19:40,"77 Highland St, San Francisco, CA 94016" +291237,34in Ultrawide Monitor,1,379.99,11/16/19 03:56,"527 Forest St, New York City, NY 10001" +291238,AAA Batteries (4-pack),1,2.99,11/04/19 10:55,"622 12th St, Boston, MA 02215" +291239,USB-C Charging Cable,1,11.95,11/14/19 19:43,"653 Willow St, Boston, MA 02215" +291240,USB-C Charging Cable,1,11.95,11/30/19 22:09,"858 Highland St, Boston, MA 02215" +291241,USB-C Charging Cable,1,11.95,11/14/19 20:35,"646 Church St, San Francisco, CA 94016" +291242,Lightning Charging Cable,1,14.95,11/13/19 12:44,"43 Spruce St, Los Angeles, CA 90001" +291243,Apple Airpods Headphones,1,150,11/19/19 16:26,"8 South St, Dallas, TX 75001" +291244,27in FHD Monitor,1,149.99,11/27/19 08:44,"796 Dogwood St, Atlanta, GA 30301" +291245,27in FHD Monitor,1,149.99,11/07/19 11:37,"83 7th St, New York City, NY 10001" +291246,AAA Batteries (4-pack),1,2.99,11/11/19 16:08,"5 6th St, San Francisco, CA 94016" +291247,Macbook Pro Laptop,1,1700,11/15/19 13:29,"652 Chestnut St, Portland, OR 97035" +291248,Google Phone,1,600,11/25/19 14:47,"503 Maple St, Portland, OR 97035" +291249,Apple Airpods Headphones,1,150,11/03/19 19:44,"975 Center St, New York City, NY 10001" +291250,Bose SoundSport Headphones,1,99.99,11/18/19 17:57,"131 River St, Los Angeles, CA 90001" +291251,Wired Headphones,2,11.99,11/08/19 17:01,"852 Adams St, Dallas, TX 75001" +291252,Bose SoundSport Headphones,1,99.99,11/18/19 10:59,"136 Cherry St, Dallas, TX 75001" +291253,Google Phone,1,600,11/13/19 22:38,"533 Meadow St, Portland, OR 97035" +291253,USB-C Charging Cable,1,11.95,11/13/19 22:38,"533 Meadow St, Portland, OR 97035" +291254,Lightning Charging Cable,1,14.95,11/27/19 19:29,"283 Elm St, San Francisco, CA 94016" +291255,ThinkPad Laptop,1,999.99,11/24/19 23:42,"683 Jackson St, Boston, MA 02215" +291256,Bose SoundSport Headphones,1,99.99,11/13/19 20:31,"389 Madison St, New York City, NY 10001" +291257,Wired Headphones,1,11.99,11/06/19 18:43,"541 6th St, Portland, OR 97035" +291258,Apple Airpods Headphones,1,150,11/28/19 10:54,"27 Forest St, San Francisco, CA 94016" +291259,Apple Airpods Headphones,1,150,11/13/19 16:54,"651 6th St, Boston, MA 02215" +291260,Lightning Charging Cable,1,14.95,11/05/19 18:18,"391 Hickory St, San Francisco, CA 94016" +291261,Apple Airpods Headphones,1,150,11/05/19 10:50,"355 Cherry St, New York City, NY 10001" +291262,27in FHD Monitor,1,149.99,11/07/19 16:14,"740 Highland St, San Francisco, CA 94016" +291263,Apple Airpods Headphones,1,150,11/01/19 14:40,"303 Hill St, San Francisco, CA 94016" +291264,Google Phone,1,600,11/07/19 13:07,"249 14th St, New York City, NY 10001" +291265,Apple Airpods Headphones,1,150,11/26/19 07:06,"879 Meadow St, Portland, OR 97035" +291266,Vareebadd Phone,1,400,11/06/19 07:45,"377 Hill St, Portland, ME 04101" +291266,USB-C Charging Cable,1,11.95,11/06/19 07:45,"377 Hill St, Portland, ME 04101" +291267,ThinkPad Laptop,1,999.99,11/09/19 08:24,"534 West St, New York City, NY 10001" +291268,27in 4K Gaming Monitor,1,389.99,11/30/19 21:02,"387 South St, Atlanta, GA 30301" +291269,Lightning Charging Cable,1,14.95,11/15/19 11:12,"441 Madison St, Los Angeles, CA 90001" +291270,Wired Headphones,1,11.99,11/29/19 23:05,"914 West St, San Francisco, CA 94016" +291271,Flatscreen TV,1,300,11/15/19 18:05,"498 Cherry St, Portland, OR 97035" +291272,Apple Airpods Headphones,1,150,11/05/19 17:15,"942 Church St, New York City, NY 10001" +291273,AA Batteries (4-pack),1,3.84,11/13/19 19:02,"898 2nd St, Los Angeles, CA 90001" +291274,Wired Headphones,1,11.99,11/12/19 17:36,"719 11th St, New York City, NY 10001" +291275,Flatscreen TV,1,300,11/29/19 19:58,"96 Elm St, Atlanta, GA 30301" +291276,AAA Batteries (4-pack),1,2.99,12/01/19 00:13,"604 Cedar St, New York City, NY 10001" +291277,20in Monitor,1,109.99,11/29/19 05:09,"253 Church St, Portland, OR 97035" +291278,Lightning Charging Cable,1,14.95,11/20/19 14:33,"99 4th St, New York City, NY 10001" +291279,Bose SoundSport Headphones,1,99.99,11/07/19 20:44,"302 West St, Dallas, TX 75001" +291280,Wired Headphones,1,11.99,11/06/19 11:40,"413 North St, Austin, TX 73301" +291281,Lightning Charging Cable,1,14.95,11/24/19 22:53,"68 Pine St, San Francisco, CA 94016" +291282,Macbook Pro Laptop,1,1700,11/01/19 11:08,"429 Park St, San Francisco, CA 94016" +291283,Macbook Pro Laptop,1,1700,11/30/19 15:44,"877 Pine St, San Francisco, CA 94016" +291284,27in 4K Gaming Monitor,1,389.99,11/01/19 11:00,"314 Jackson St, Boston, MA 02215" +291285,20in Monitor,1,109.99,11/05/19 10:56,"997 Sunset St, Atlanta, GA 30301" +291286,Bose SoundSport Headphones,1,99.99,11/15/19 19:31,"915 Hickory St, San Francisco, CA 94016" +291287,AAA Batteries (4-pack),1,2.99,11/15/19 21:31,"997 14th St, New York City, NY 10001" +291288,Google Phone,1,600,11/29/19 12:19,"653 Sunset St, Seattle, WA 98101" +291289,Bose SoundSport Headphones,1,99.99,11/11/19 08:55,"396 7th St, Los Angeles, CA 90001" +291290,Wired Headphones,1,11.99,11/18/19 11:13,"953 River St, Los Angeles, CA 90001" +291291,Apple Airpods Headphones,1,150,11/01/19 18:13,"891 Center St, Dallas, TX 75001" +291292,Apple Airpods Headphones,1,150,11/01/19 13:16,"467 7th St, Portland, OR 97035" +291293,Apple Airpods Headphones,1,150,11/23/19 16:53,"855 Cedar St, Austin, TX 73301" +291294,34in Ultrawide Monitor,1,379.99,11/08/19 18:31,"982 Church St, San Francisco, CA 94016" +291295,Apple Airpods Headphones,1,150,11/19/19 17:29,"11 West St, New York City, NY 10001" +291296,iPhone,1,700,11/24/19 06:53,"227 4th St, San Francisco, CA 94016" +291297,20in Monitor,1,109.99,11/11/19 14:29,"257 Sunset St, Austin, TX 73301" +291298,27in FHD Monitor,1,149.99,11/20/19 20:33,"524 Washington St, Los Angeles, CA 90001" +291299,27in FHD Monitor,1,149.99,11/25/19 12:32,"50 10th St, Boston, MA 02215" +291300,USB-C Charging Cable,1,11.95,11/12/19 19:19,"5 5th St, Seattle, WA 98101" +291301,AAA Batteries (4-pack),1,2.99,11/18/19 08:59,"125 Madison St, Seattle, WA 98101" +291302,AAA Batteries (4-pack),1,2.99,11/24/19 13:12,"900 River St, San Francisco, CA 94016" +291303,AA Batteries (4-pack),2,3.84,11/14/19 13:36,"929 1st St, Portland, OR 97035" +291304,Wired Headphones,1,11.99,11/12/19 06:06,"901 South St, San Francisco, CA 94016" +291305,Macbook Pro Laptop,1,1700,11/14/19 12:58,"167 13th St, San Francisco, CA 94016" +291306,USB-C Charging Cable,2,11.95,11/20/19 12:39,"893 Meadow St, Atlanta, GA 30301" +291307,AA Batteries (4-pack),1,3.84,11/10/19 15:33,"261 Cedar St, Los Angeles, CA 90001" +291308,Google Phone,1,600,11/08/19 17:21,"512 Walnut St, Austin, TX 73301" +291309,Apple Airpods Headphones,1,150,11/15/19 18:40,"568 Park St, Los Angeles, CA 90001" +291310,Macbook Pro Laptop,1,1700,11/02/19 09:00,"652 4th St, San Francisco, CA 94016" +291311,Lightning Charging Cable,1,14.95,11/25/19 00:29,"420 Meadow St, San Francisco, CA 94016" +291312,USB-C Charging Cable,1,11.95,11/18/19 19:15,"893 14th St, San Francisco, CA 94016" +291313,34in Ultrawide Monitor,1,379.99,11/05/19 18:50,"534 River St, San Francisco, CA 94016" +291314,Lightning Charging Cable,1,14.95,11/30/19 19:22,"257 Main St, Boston, MA 02215" +291315,Lightning Charging Cable,1,14.95,11/22/19 19:32,"897 Church St, San Francisco, CA 94016" +291316,Wired Headphones,1,11.99,11/22/19 10:38,"472 Forest St, Austin, TX 73301" +291317,Wired Headphones,2,11.99,11/12/19 11:39,"144 13th St, San Francisco, CA 94016" +291318,AA Batteries (4-pack),1,3.84,11/06/19 07:57,"393 Elm St, Los Angeles, CA 90001" +291319,AAA Batteries (4-pack),1,2.99,11/17/19 20:58,"373 14th St, Los Angeles, CA 90001" +291320,Wired Headphones,1,11.99,11/19/19 09:50,"800 Madison St, Boston, MA 02215" +291321,Google Phone,1,600,11/08/19 21:15,"857 Park St, Seattle, WA 98101" +291322,Lightning Charging Cable,1,14.95,11/07/19 16:35,"963 7th St, New York City, NY 10001" +291323,USB-C Charging Cable,1,11.95,11/08/19 19:18,"828 Johnson St, New York City, NY 10001" +291324,Apple Airpods Headphones,1,150,11/26/19 18:44,"145 Dogwood St, Dallas, TX 75001" +291325,Wired Headphones,1,11.99,11/26/19 13:48,"596 Main St, San Francisco, CA 94016" +291326,Wired Headphones,1,11.99,11/24/19 15:12,"787 1st St, Los Angeles, CA 90001" +291327,ThinkPad Laptop,1,999.99,11/23/19 20:40,"494 Willow St, Boston, MA 02215" +291327,Bose SoundSport Headphones,1,99.99,11/23/19 20:40,"494 Willow St, Boston, MA 02215" +291328,Lightning Charging Cable,1,14.95,11/06/19 06:07,"187 Johnson St, San Francisco, CA 94016" +291329,AA Batteries (4-pack),1,3.84,11/09/19 21:07,"598 Lake St, San Francisco, CA 94016" +291330,Wired Headphones,1,11.99,11/01/19 06:01,"988 Lincoln St, San Francisco, CA 94016" +291331,Google Phone,1,600,11/19/19 09:21,"353 Pine St, Dallas, TX 75001" +291331,USB-C Charging Cable,1,11.95,11/19/19 09:21,"353 Pine St, Dallas, TX 75001" +291332,Lightning Charging Cable,1,14.95,11/19/19 05:09,"791 7th St, Dallas, TX 75001" +291333,Macbook Pro Laptop,1,1700,11/29/19 12:56,"837 5th St, Los Angeles, CA 90001" +291334,USB-C Charging Cable,1,11.95,11/08/19 23:57,"955 West St, San Francisco, CA 94016" +291335,ThinkPad Laptop,1,999.99,11/03/19 20:59,"24 Hill St, Portland, OR 97035" +291336,20in Monitor,1,109.99,11/14/19 21:50,"162 10th St, Los Angeles, CA 90001" +291337,Wired Headphones,1,11.99,11/30/19 11:51,"882 Elm St, Los Angeles, CA 90001" +291337,USB-C Charging Cable,1,11.95,11/30/19 11:51,"882 Elm St, Los Angeles, CA 90001" +291338,USB-C Charging Cable,2,11.95,11/08/19 11:31,"690 West St, Seattle, WA 98101" +291339,AAA Batteries (4-pack),5,2.99,11/12/19 00:43,"762 Dogwood St, Atlanta, GA 30301" +291340,AAA Batteries (4-pack),1,2.99,11/11/19 07:57,"312 Lake St, New York City, NY 10001" +291341,Wired Headphones,1,11.99,11/20/19 11:29,"717 Lakeview St, Los Angeles, CA 90001" +291342,USB-C Charging Cable,1,11.95,11/07/19 14:48,"799 Center St, Seattle, WA 98101" +291343,AA Batteries (4-pack),1,3.84,11/02/19 11:46,"952 North St, Los Angeles, CA 90001" +291344,USB-C Charging Cable,1,11.95,11/24/19 12:51,"382 Walnut St, San Francisco, CA 94016" +291345,Google Phone,1,600,11/12/19 18:44,"557 Church St, Los Angeles, CA 90001" +291345,Bose SoundSport Headphones,1,99.99,11/12/19 18:44,"557 Church St, Los Angeles, CA 90001" +291346,Flatscreen TV,1,300,11/13/19 15:10,"752 South St, San Francisco, CA 94016" +291347,27in FHD Monitor,1,149.99,11/28/19 17:42,"992 Church St, Dallas, TX 75001" +291348,Lightning Charging Cable,1,14.95,11/25/19 19:40,"554 13th St, Dallas, TX 75001" +291349,Wired Headphones,2,11.99,11/18/19 21:29,"308 Forest St, Atlanta, GA 30301" +291350,Lightning Charging Cable,1,14.95,11/07/19 12:57,"169 Main St, Austin, TX 73301" +291351,USB-C Charging Cable,2,11.95,11/09/19 07:41,"369 8th St, Portland, OR 97035" +291352,Bose SoundSport Headphones,1,99.99,11/07/19 11:48,"971 Chestnut St, Los Angeles, CA 90001" +291353,AAA Batteries (4-pack),1,2.99,11/09/19 15:20,"567 Lakeview St, Seattle, WA 98101" +291354,AA Batteries (4-pack),1,3.84,11/16/19 10:43,"699 Center St, Austin, TX 73301" +291355,27in FHD Monitor,1,149.99,11/30/19 14:30,"928 Cherry St, San Francisco, CA 94016" +291356,iPhone,1,700,11/02/19 00:06,"540 Main St, Boston, MA 02215" +291357,USB-C Charging Cable,1,11.95,11/12/19 06:39,"539 10th St, San Francisco, CA 94016" +291358,iPhone,1,700,11/06/19 13:03,"966 Ridge St, New York City, NY 10001" +291359,AAA Batteries (4-pack),2,2.99,11/24/19 17:27,"812 Hill St, Boston, MA 02215" +291360,AA Batteries (4-pack),4,3.84,11/24/19 20:47,"203 8th St, New York City, NY 10001" +291361,Bose SoundSport Headphones,1,99.99,11/25/19 14:10,"811 7th St, Boston, MA 02215" +291362,USB-C Charging Cable,1,11.95,11/27/19 12:52,"456 10th St, Austin, TX 73301" +291363,27in FHD Monitor,1,149.99,11/08/19 17:05,"64 Highland St, Atlanta, GA 30301" +291364,AAA Batteries (4-pack),2,2.99,11/19/19 20:58,"43 Jefferson St, Boston, MA 02215" +291365,Lightning Charging Cable,1,14.95,11/24/19 07:24,"490 Madison St, Los Angeles, CA 90001" +291366,Google Phone,1,600,11/28/19 13:35,"3 Sunset St, Austin, TX 73301" +291367,AAA Batteries (4-pack),1,2.99,11/02/19 13:26,"537 5th St, Los Angeles, CA 90001" +291368,USB-C Charging Cable,1,11.95,11/21/19 17:55,"249 8th St, New York City, NY 10001" +291369,Apple Airpods Headphones,1,150,11/12/19 13:11,"433 6th St, San Francisco, CA 94016" +291370,AAA Batteries (4-pack),3,2.99,11/22/19 13:21,"341 Cedar St, New York City, NY 10001" +291371,AA Batteries (4-pack),1,3.84,11/27/19 19:16,"25 Walnut St, Los Angeles, CA 90001" +291372,USB-C Charging Cable,1,11.95,11/06/19 00:27,"285 Washington St, Atlanta, GA 30301" +291373,Google Phone,1,600,11/01/19 21:41,"88 Ridge St, San Francisco, CA 94016" +291374,Bose SoundSport Headphones,1,99.99,11/17/19 17:29,"221 North St, Austin, TX 73301" +291375,27in FHD Monitor,1,149.99,11/03/19 12:40,"805 Spruce St, Seattle, WA 98101" +291376,ThinkPad Laptop,1,999.99,11/02/19 14:07,"185 14th St, Seattle, WA 98101" +291377,Lightning Charging Cable,1,14.95,11/08/19 22:24,"901 7th St, Seattle, WA 98101" +291378,iPhone,1,700,11/29/19 16:53,"140 1st St, New York City, NY 10001" +291379,USB-C Charging Cable,2,11.95,11/10/19 01:59,"447 2nd St, Seattle, WA 98101" +291380,Apple Airpods Headphones,1,150,11/24/19 10:43,"875 Spruce St, San Francisco, CA 94016" +291381,AA Batteries (4-pack),1,3.84,11/28/19 18:29,"756 Walnut St, New York City, NY 10001" +291382,AAA Batteries (4-pack),1,2.99,11/29/19 15:11,"213 Meadow St, Portland, OR 97035" +291383,Wired Headphones,1,11.99,11/16/19 12:13,"168 Walnut St, New York City, NY 10001" +291384,20in Monitor,1,109.99,11/15/19 13:50,"974 Jackson St, Boston, MA 02215" +291385,Wired Headphones,1,11.99,11/09/19 19:23,"381 Lakeview St, New York City, NY 10001" +291386,Apple Airpods Headphones,1,150,11/21/19 11:55,"152 Cedar St, Atlanta, GA 30301" +291387,27in FHD Monitor,1,149.99,11/14/19 13:41,"308 Dogwood St, New York City, NY 10001" +291388,Apple Airpods Headphones,1,150,11/10/19 13:57,"414 Adams St, New York City, NY 10001" +291389,Apple Airpods Headphones,1,150,11/14/19 18:23,"678 Dogwood St, Dallas, TX 75001" +291390,27in FHD Monitor,1,149.99,11/14/19 20:00,"861 Hill St, Dallas, TX 75001" +291391,Google Phone,1,600,11/14/19 10:58,"169 Church St, Seattle, WA 98101" +291391,Wired Headphones,1,11.99,11/14/19 10:58,"169 Church St, Seattle, WA 98101" +291392,USB-C Charging Cable,1,11.95,11/30/19 22:47,"331 8th St, New York City, NY 10001" +291393,Bose SoundSport Headphones,1,99.99,11/29/19 16:36,"386 13th St, Boston, MA 02215" +291394,27in FHD Monitor,1,149.99,11/09/19 20:20,"914 Wilson St, San Francisco, CA 94016" +291395,27in FHD Monitor,1,149.99,11/04/19 19:38,"197 Elm St, San Francisco, CA 94016" +291396,Bose SoundSport Headphones,1,99.99,11/16/19 13:37,"235 Spruce St, Seattle, WA 98101" +291397,Wired Headphones,1,11.99,11/07/19 10:59,"382 Cherry St, San Francisco, CA 94016" +291398,27in 4K Gaming Monitor,1,389.99,11/23/19 08:33,"236 Highland St, San Francisco, CA 94016" +291399,AA Batteries (4-pack),2,3.84,11/21/19 16:34,"629 Hill St, San Francisco, CA 94016" +291400,27in FHD Monitor,1,149.99,11/28/19 17:48,"66 6th St, Dallas, TX 75001" +291401,27in FHD Monitor,1,149.99,11/28/19 13:51,"547 Lincoln St, New York City, NY 10001" +291402,27in 4K Gaming Monitor,1,389.99,11/24/19 13:06,"569 Lakeview St, Dallas, TX 75001" +291403,Wired Headphones,2,11.99,11/24/19 15:05,"13 Forest St, Boston, MA 02215" +291404,USB-C Charging Cable,1,11.95,11/19/19 16:37,"593 2nd St, New York City, NY 10001" +291405,Apple Airpods Headphones,1,150,11/11/19 17:18,"900 7th St, Los Angeles, CA 90001" +291406,Macbook Pro Laptop,1,1700,11/30/19 19:17,"200 Jackson St, San Francisco, CA 94016" +291407,Lightning Charging Cable,1,14.95,11/21/19 07:15,"638 Chestnut St, New York City, NY 10001" +291407,Lightning Charging Cable,1,14.95,11/21/19 07:15,"638 Chestnut St, New York City, NY 10001" +291408,Wired Headphones,1,11.99,11/14/19 17:49,"753 Willow St, Los Angeles, CA 90001" +291409,Wired Headphones,1,11.99,11/08/19 11:39,"347 6th St, San Francisco, CA 94016" +291410,USB-C Charging Cable,1,11.95,11/16/19 15:30,"483 4th St, San Francisco, CA 94016" +291411,USB-C Charging Cable,1,11.95,11/18/19 07:57,"509 River St, Portland, OR 97035" +291412,USB-C Charging Cable,1,11.95,11/05/19 19:16,"443 Park St, San Francisco, CA 94016" +291413,Wired Headphones,1,11.99,11/06/19 20:34,"991 5th St, Los Angeles, CA 90001" +291414,Bose SoundSport Headphones,1,99.99,11/05/19 17:38,"954 Willow St, San Francisco, CA 94016" +291415,iPhone,1,700,11/13/19 19:16,"739 Adams St, San Francisco, CA 94016" +291416,LG Washing Machine,1,600.0,11/10/19 20:58,"866 Johnson St, Dallas, TX 75001" +291417,AA Batteries (4-pack),1,3.84,11/12/19 16:27,"304 13th St, San Francisco, CA 94016" +291418,34in Ultrawide Monitor,1,379.99,11/17/19 21:29,"773 Lakeview St, Los Angeles, CA 90001" +291419,Lightning Charging Cable,1,14.95,11/30/19 11:05,"809 Park St, Atlanta, GA 30301" +291419,20in Monitor,1,109.99,11/30/19 11:05,"809 Park St, Atlanta, GA 30301" +291420,27in FHD Monitor,1,149.99,11/26/19 15:29,"912 10th St, Dallas, TX 75001" +291421,Apple Airpods Headphones,1,150,11/15/19 21:38,"973 1st St, San Francisco, CA 94016" +291422,Flatscreen TV,1,300,11/18/19 21:25,"191 Forest St, Austin, TX 73301" +291423,Apple Airpods Headphones,1,150,11/15/19 01:23,"96 Elm St, Los Angeles, CA 90001" +291424,AA Batteries (4-pack),1,3.84,11/12/19 23:20,"393 Willow St, San Francisco, CA 94016" +291425,20in Monitor,1,109.99,11/21/19 15:28,"377 Elm St, San Francisco, CA 94016" +291426,Bose SoundSport Headphones,1,99.99,11/23/19 13:02,"518 Willow St, Seattle, WA 98101" +291427,USB-C Charging Cable,1,11.95,11/20/19 13:00,"606 13th St, San Francisco, CA 94016" +291428,AAA Batteries (4-pack),1,2.99,11/12/19 13:48,"921 7th St, Los Angeles, CA 90001" +291429,Lightning Charging Cable,1,14.95,11/11/19 14:50,"681 West St, Boston, MA 02215" +291430,iPhone,1,700,11/07/19 22:00,"8 Cherry St, Seattle, WA 98101" +291431,AAA Batteries (4-pack),1,2.99,11/23/19 09:25,"848 Walnut St, Boston, MA 02215" +291432,Lightning Charging Cable,2,14.95,11/21/19 08:27,"780 West St, New York City, NY 10001" +291433,AA Batteries (4-pack),1,3.84,11/28/19 10:37,"633 Ridge St, Austin, TX 73301" +291434,27in 4K Gaming Monitor,1,389.99,11/13/19 12:54,"751 South St, Los Angeles, CA 90001" +291435,27in 4K Gaming Monitor,1,389.99,11/20/19 13:41,"170 Johnson St, New York City, NY 10001" +291436,34in Ultrawide Monitor,1,379.99,11/06/19 20:07,"705 Cherry St, Boston, MA 02215" +291437,ThinkPad Laptop,1,999.99,11/12/19 11:25,"43 Cherry St, San Francisco, CA 94016" +291438,AAA Batteries (4-pack),1,2.99,11/30/19 15:02,"763 Hickory St, Boston, MA 02215" +291439,ThinkPad Laptop,1,999.99,11/22/19 19:58,"990 10th St, Atlanta, GA 30301" +291440,27in 4K Gaming Monitor,1,389.99,11/03/19 12:30,"932 North St, Dallas, TX 75001" +291441,34in Ultrawide Monitor,1,379.99,11/18/19 21:15,"139 Meadow St, San Francisco, CA 94016" +291442,Macbook Pro Laptop,1,1700,11/13/19 10:50,"225 Church St, New York City, NY 10001" +291443,Lightning Charging Cable,1,14.95,11/11/19 22:30,"588 Forest St, New York City, NY 10001" +291444,AAA Batteries (4-pack),1,2.99,11/06/19 21:31,"642 10th St, Seattle, WA 98101" +291445,Lightning Charging Cable,1,14.95,11/20/19 17:54,"356 West St, Los Angeles, CA 90001" +291446,Apple Airpods Headphones,1,150,11/06/19 15:39,"938 Wilson St, Austin, TX 73301" +291447,27in FHD Monitor,1,149.99,11/20/19 21:12,"109 9th St, San Francisco, CA 94016" +291448,Wired Headphones,1,11.99,11/10/19 11:25,"910 Adams St, Los Angeles, CA 90001" +291449,Bose SoundSport Headphones,1,99.99,11/10/19 12:51,"827 Cherry St, Boston, MA 02215" +291450,Apple Airpods Headphones,1,150,11/29/19 12:56,"981 South St, San Francisco, CA 94016" +291451,USB-C Charging Cable,1,11.95,11/29/19 18:30,"115 Highland St, San Francisco, CA 94016" +291452,20in Monitor,1,109.99,11/03/19 12:44,"896 Elm St, Los Angeles, CA 90001" +291453,27in 4K Gaming Monitor,1,389.99,11/22/19 17:00,"378 10th St, San Francisco, CA 94016" +291454,Wired Headphones,1,11.99,11/04/19 17:40,"802 Pine St, Los Angeles, CA 90001" +291455,20in Monitor,1,109.99,11/08/19 19:35,"346 Willow St, Seattle, WA 98101" +291456,Lightning Charging Cable,1,14.95,11/08/19 15:18,"958 5th St, Dallas, TX 75001" +291457,USB-C Charging Cable,1,11.95,11/04/19 17:33,"420 Lake St, Los Angeles, CA 90001" +291458,Macbook Pro Laptop,1,1700,11/21/19 20:45,"52 Spruce St, Los Angeles, CA 90001" +291459,USB-C Charging Cable,1,11.95,11/03/19 18:07,"824 River St, Dallas, TX 75001" +291459,34in Ultrawide Monitor,1,379.99,11/03/19 18:07,"824 River St, Dallas, TX 75001" +291460,LG Dryer,1,600.0,11/02/19 08:09,"820 Lakeview St, Seattle, WA 98101" +291461,Bose SoundSport Headphones,1,99.99,11/16/19 07:19,"860 9th St, Portland, OR 97035" +291462,Google Phone,1,600,11/11/19 08:33,"647 Lincoln St, Seattle, WA 98101" +291463,Bose SoundSport Headphones,1,99.99,11/18/19 14:31,"63 1st St, New York City, NY 10001" +291464,Google Phone,1,600,11/04/19 14:03,"352 14th St, San Francisco, CA 94016" +291464,USB-C Charging Cable,2,11.95,11/04/19 14:03,"352 14th St, San Francisco, CA 94016" +291465,USB-C Charging Cable,2,11.95,11/06/19 14:10,"210 Sunset St, New York City, NY 10001" +291466,LG Dryer,1,600.0,11/26/19 12:20,"945 Jefferson St, Dallas, TX 75001" +291467,Bose SoundSport Headphones,1,99.99,11/10/19 22:44,"407 Elm St, San Francisco, CA 94016" +291468,USB-C Charging Cable,1,11.95,11/25/19 11:20,"969 7th St, San Francisco, CA 94016" +291469,Lightning Charging Cable,1,14.95,11/24/19 11:22,"268 Jefferson St, San Francisco, CA 94016" +291470,iPhone,1,700,11/09/19 07:34,"964 Lake St, Boston, MA 02215" +291471,USB-C Charging Cable,1,11.95,11/28/19 13:18,"923 Jackson St, Dallas, TX 75001" +291472,Apple Airpods Headphones,1,150,11/15/19 18:50,"34 Adams St, San Francisco, CA 94016" +291473,Bose SoundSport Headphones,1,99.99,11/19/19 10:47,"727 8th St, Dallas, TX 75001" +291474,Macbook Pro Laptop,1,1700,11/21/19 11:42,"385 Meadow St, San Francisco, CA 94016" +291475,AAA Batteries (4-pack),2,2.99,11/18/19 21:35,"398 Lincoln St, Boston, MA 02215" +291476,Apple Airpods Headphones,1,150,11/01/19 08:49,"994 Cedar St, Seattle, WA 98101" +291477,27in 4K Gaming Monitor,1,389.99,11/11/19 14:45,"300 Madison St, Atlanta, GA 30301" +291478,34in Ultrawide Monitor,1,379.99,11/08/19 11:36,"629 Park St, San Francisco, CA 94016" +291479,Macbook Pro Laptop,1,1700,11/09/19 19:22,"275 Johnson St, Austin, TX 73301" +291480,Macbook Pro Laptop,1,1700,11/19/19 09:02,"993 12th St, San Francisco, CA 94016" +291481,Wired Headphones,2,11.99,11/23/19 20:38,"390 Pine St, New York City, NY 10001" +291482,Lightning Charging Cable,1,14.95,11/07/19 17:06,"350 Forest St, Austin, TX 73301" +291483,Bose SoundSport Headphones,1,99.99,11/12/19 00:56,"712 Center St, Boston, MA 02215" +291484,AAA Batteries (4-pack),1,2.99,11/29/19 23:46,"662 Meadow St, Dallas, TX 75001" +291485,Apple Airpods Headphones,1,150,11/23/19 17:21,"857 10th St, New York City, NY 10001" +291486,Lightning Charging Cable,1,14.95,11/06/19 22:15,"935 6th St, Los Angeles, CA 90001" +291487,Lightning Charging Cable,1,14.95,11/22/19 19:07,"672 Lincoln St, Atlanta, GA 30301" +291488,iPhone,1,700,11/08/19 16:20,"329 13th St, New York City, NY 10001" +291488,Lightning Charging Cable,1,14.95,11/08/19 16:20,"329 13th St, New York City, NY 10001" +291489,AAA Batteries (4-pack),1,2.99,11/20/19 21:57,"865 Maple St, Austin, TX 73301" +291490,AA Batteries (4-pack),1,3.84,11/15/19 20:24,"188 Sunset St, New York City, NY 10001" +291491,AA Batteries (4-pack),1,3.84,11/21/19 13:09,"313 Jefferson St, Dallas, TX 75001" +291492,20in Monitor,1,109.99,11/23/19 07:50,"800 South St, Dallas, TX 75001" +291493,AAA Batteries (4-pack),1,2.99,11/03/19 14:56,"688 Pine St, Austin, TX 73301" +291494,AA Batteries (4-pack),1,3.84,11/30/19 17:51,"138 Center St, Seattle, WA 98101" +291495,AA Batteries (4-pack),2,3.84,11/14/19 08:46,"668 Chestnut St, San Francisco, CA 94016" +291496,Apple Airpods Headphones,1,150,11/11/19 20:02,"449 Dogwood St, San Francisco, CA 94016" +291497,Apple Airpods Headphones,1,150,11/23/19 19:24,"978 Chestnut St, New York City, NY 10001" +291498,Lightning Charging Cable,1,14.95,11/27/19 15:16,"608 Chestnut St, Boston, MA 02215" +291499,USB-C Charging Cable,1,11.95,11/08/19 10:37,"22 North St, Atlanta, GA 30301" +291500,Wired Headphones,1,11.99,11/07/19 21:45,"555 Church St, New York City, NY 10001" +291501,Lightning Charging Cable,2,14.95,11/08/19 11:43,"890 13th St, Boston, MA 02215" +291502,Lightning Charging Cable,1,14.95,11/11/19 13:02,"119 Adams St, New York City, NY 10001" +291503,Apple Airpods Headphones,1,150,11/08/19 22:03,"875 Cherry St, San Francisco, CA 94016" +291504,34in Ultrawide Monitor,1,379.99,11/05/19 21:16,"208 Madison St, San Francisco, CA 94016" +291505,Wired Headphones,1,11.99,11/17/19 14:11,"378 Lakeview St, San Francisco, CA 94016" +291506,iPhone,1,700,11/11/19 09:27,"617 7th St, San Francisco, CA 94016" +291507,Macbook Pro Laptop,1,1700,11/28/19 18:47,"297 Jefferson St, San Francisco, CA 94016" +291508,27in FHD Monitor,1,149.99,11/11/19 18:00,"260 Walnut St, Boston, MA 02215" +291509,AAA Batteries (4-pack),1,2.99,11/03/19 11:02,"164 13th St, New York City, NY 10001" +291510,AA Batteries (4-pack),1,3.84,11/21/19 06:31,"215 12th St, San Francisco, CA 94016" +291511,Wired Headphones,1,11.99,11/24/19 19:41,"826 Spruce St, Boston, MA 02215" +291512,USB-C Charging Cable,1,11.95,11/09/19 15:08,"538 Chestnut St, Atlanta, GA 30301" +291513,AA Batteries (4-pack),2,3.84,11/16/19 00:43,"999 Sunset St, Dallas, TX 75001" +291514,Macbook Pro Laptop,1,1700,11/23/19 19:11,"691 Hill St, New York City, NY 10001" +291515,27in FHD Monitor,1,149.99,11/02/19 12:24,"288 Highland St, Atlanta, GA 30301" +291516,AAA Batteries (4-pack),5,2.99,11/18/19 21:19,"958 Walnut St, Seattle, WA 98101" +291517,Macbook Pro Laptop,1,1700,11/08/19 16:57,"711 Washington St, Austin, TX 73301" +291518,iPhone,1,700,11/14/19 14:22,"417 Cedar St, Portland, OR 97035" +291519,34in Ultrawide Monitor,1,379.99,11/20/19 15:09,"525 Dogwood St, Seattle, WA 98101" +291520,AA Batteries (4-pack),1,3.84,11/25/19 06:56,"881 Lakeview St, Los Angeles, CA 90001" +291521,AAA Batteries (4-pack),2,2.99,11/26/19 09:13,"112 Walnut St, Los Angeles, CA 90001" +291522,Lightning Charging Cable,1,14.95,11/16/19 10:47,"514 5th St, San Francisco, CA 94016" +291523,Flatscreen TV,1,300,11/27/19 08:50,"40 West St, San Francisco, CA 94016" +291524,Lightning Charging Cable,1,14.95,11/10/19 21:35,"417 14th St, Los Angeles, CA 90001" +291525,Apple Airpods Headphones,1,150,11/23/19 12:49,"612 Pine St, Los Angeles, CA 90001" +291526,USB-C Charging Cable,1,11.95,11/11/19 20:02,"160 Madison St, Los Angeles, CA 90001" +291527,AAA Batteries (4-pack),1,2.99,11/11/19 10:20,"414 Sunset St, San Francisco, CA 94016" +291528,34in Ultrawide Monitor,1,379.99,11/17/19 01:39,"485 10th St, Atlanta, GA 30301" +291529,Flatscreen TV,1,300,11/30/19 16:10,"233 Lakeview St, Los Angeles, CA 90001" +291530,Bose SoundSport Headphones,1,99.99,11/28/19 17:34,"927 7th St, Seattle, WA 98101" +291531,27in FHD Monitor,1,149.99,11/26/19 12:32,"144 13th St, San Francisco, CA 94016" +291532,AA Batteries (4-pack),1,3.84,11/24/19 13:24,"857 Dogwood St, New York City, NY 10001" +291533,27in FHD Monitor,1,149.99,11/05/19 10:56,"203 11th St, San Francisco, CA 94016" +291534,ThinkPad Laptop,1,999.99,11/25/19 22:45,"155 Highland St, Seattle, WA 98101" +291535,ThinkPad Laptop,1,999.99,11/08/19 16:09,"31 5th St, San Francisco, CA 94016" +291536,AAA Batteries (4-pack),1,2.99,11/20/19 11:25,"201 River St, San Francisco, CA 94016" +291537,Lightning Charging Cable,1,14.95,11/02/19 20:51,"316 Meadow St, Portland, OR 97035" +291538,AAA Batteries (4-pack),2,2.99,11/17/19 17:24,"626 Johnson St, Portland, OR 97035" +291539,20in Monitor,1,109.99,11/02/19 14:19,"406 12th St, San Francisco, CA 94016" +291540,Lightning Charging Cable,1,14.95,11/01/19 15:01,"249 14th St, New York City, NY 10001" +291541,Bose SoundSport Headphones,1,99.99,11/06/19 12:54,"99 1st St, San Francisco, CA 94016" +291542,USB-C Charging Cable,1,11.95,11/02/19 21:43,"363 Adams St, Portland, OR 97035" +291543,AAA Batteries (4-pack),1,2.99,11/07/19 10:30,"263 Johnson St, Boston, MA 02215" +291544,Lightning Charging Cable,1,14.95,11/30/19 07:26,"674 5th St, Seattle, WA 98101" +291545,Bose SoundSport Headphones,1,99.99,11/04/19 19:10,"941 1st St, Seattle, WA 98101" +291546,USB-C Charging Cable,2,11.95,11/12/19 13:53,"566 14th St, Portland, OR 97035" +291547,Macbook Pro Laptop,1,1700,11/25/19 23:24,"354 14th St, Seattle, WA 98101" +291548,Apple Airpods Headphones,1,150,11/24/19 20:44,"845 Chestnut St, Seattle, WA 98101" +291549,Lightning Charging Cable,1,14.95,11/13/19 20:44,"752 Johnson St, Portland, ME 04101" +291550,Bose SoundSport Headphones,1,99.99,11/20/19 21:23,"587 Hill St, San Francisco, CA 94016" +291551,Google Phone,1,600,11/02/19 21:27,"908 Ridge St, Boston, MA 02215" +291552,iPhone,1,700,11/09/19 01:20,"254 13th St, San Francisco, CA 94016" +291553,Bose SoundSport Headphones,1,99.99,11/08/19 11:59,"497 2nd St, San Francisco, CA 94016" +291554,Bose SoundSport Headphones,1,99.99,11/23/19 18:21,"564 Forest St, San Francisco, CA 94016" +291555,USB-C Charging Cable,1,11.95,11/06/19 23:12,"493 Cedar St, San Francisco, CA 94016" +291556,Apple Airpods Headphones,1,150,11/04/19 18:22,"886 Jefferson St, Dallas, TX 75001" +291557,34in Ultrawide Monitor,1,379.99,11/29/19 20:40,"81 Pine St, San Francisco, CA 94016" +291558,20in Monitor,1,109.99,11/06/19 19:02,"668 Hill St, Atlanta, GA 30301" +291559,Bose SoundSport Headphones,1,99.99,11/12/19 10:33,"960 Chestnut St, Boston, MA 02215" +291560,Wired Headphones,1,11.99,11/25/19 19:50,"791 7th St, Portland, ME 04101" +291561,AA Batteries (4-pack),1,3.84,11/05/19 13:46,"125 2nd St, San Francisco, CA 94016" +291562,USB-C Charging Cable,1,11.95,11/22/19 15:34,"56 Jackson St, San Francisco, CA 94016" +291563,Google Phone,1,600,11/10/19 15:32,"194 Cedar St, Los Angeles, CA 90001" +291564,Google Phone,1,600,11/05/19 13:12,"35 Ridge St, Boston, MA 02215" +291565,Wired Headphones,1,11.99,11/09/19 10:48,"180 12th St, Dallas, TX 75001" +291566,AA Batteries (4-pack),1,3.84,11/01/19 19:30,"465 Lakeview St, San Francisco, CA 94016" +291567,Lightning Charging Cable,1,14.95,11/26/19 16:12,"599 Ridge St, New York City, NY 10001" +291568,Wired Headphones,1,11.99,11/18/19 02:26,"250 Pine St, New York City, NY 10001" +291569,27in FHD Monitor,1,149.99,11/07/19 14:21,"70 Dogwood St, San Francisco, CA 94016" +291570,Apple Airpods Headphones,1,150,11/15/19 02:10,"32 South St, Los Angeles, CA 90001" +291571,USB-C Charging Cable,2,11.95,11/13/19 23:12,"462 Johnson St, New York City, NY 10001" +291572,Wired Headphones,1,11.99,11/18/19 21:51,"582 Lake St, San Francisco, CA 94016" +291573,Wired Headphones,1,11.99,11/05/19 15:22,"486 Adams St, New York City, NY 10001" +291574,Flatscreen TV,1,300,11/03/19 20:17,"655 Adams St, Boston, MA 02215" +291575,USB-C Charging Cable,1,11.95,11/16/19 19:26,"771 Hickory St, Austin, TX 73301" +291576,AAA Batteries (4-pack),1,2.99,11/07/19 21:56,"624 Lake St, New York City, NY 10001" +291577,Wired Headphones,1,11.99,11/01/19 21:18,"183 Dogwood St, San Francisco, CA 94016" +291578,Apple Airpods Headphones,1,150,11/16/19 22:04,"507 Highland St, Atlanta, GA 30301" +291579,Lightning Charging Cable,1,14.95,11/04/19 16:38,"721 1st St, Seattle, WA 98101" +291580,USB-C Charging Cable,1,11.95,11/17/19 07:08,"829 12th St, Los Angeles, CA 90001" +291581,Apple Airpods Headphones,1,150,11/25/19 12:48,"842 Forest St, Atlanta, GA 30301" +291582,AA Batteries (4-pack),1,3.84,11/30/19 10:35,"961 Cedar St, San Francisco, CA 94016" +291583,Bose SoundSport Headphones,1,99.99,11/05/19 15:15,"861 11th St, Atlanta, GA 30301" +291584,27in 4K Gaming Monitor,1,389.99,11/10/19 15:46,"638 Main St, Los Angeles, CA 90001" +291585,USB-C Charging Cable,1,11.95,11/22/19 13:43,"129 Spruce St, Austin, TX 73301" +291586,Wired Headphones,1,11.99,11/14/19 20:57,"825 Chestnut St, Boston, MA 02215" +291587,Wired Headphones,1,11.99,11/12/19 05:54,"200 Elm St, San Francisco, CA 94016" +291588,27in FHD Monitor,1,149.99,11/29/19 15:57,"653 Pine St, Seattle, WA 98101" +291589,Flatscreen TV,1,300,11/09/19 12:33,"240 6th St, Dallas, TX 75001" +291590,Macbook Pro Laptop,1,1700,11/04/19 19:14,"417 Hickory St, Austin, TX 73301" +291591,Wired Headphones,1,11.99,11/27/19 22:35,"927 Maple St, Los Angeles, CA 90001" +291592,AA Batteries (4-pack),1,3.84,11/02/19 22:17,"492 Hill St, New York City, NY 10001" +291593,Macbook Pro Laptop,1,1700,11/23/19 21:03,"675 10th St, San Francisco, CA 94016" +291594,Wired Headphones,1,11.99,11/23/19 16:56,"959 Lake St, New York City, NY 10001" +291595,27in 4K Gaming Monitor,1,389.99,11/26/19 19:25,"34 Washington St, San Francisco, CA 94016" +291596,Bose SoundSport Headphones,1,99.99,11/27/19 12:32,"774 Jackson St, Dallas, TX 75001" +291597,Macbook Pro Laptop,1,1700,11/07/19 18:43,"538 Highland St, Dallas, TX 75001" +291598,AA Batteries (4-pack),1,3.84,11/01/19 17:05,"450 Hickory St, San Francisco, CA 94016" +291599,34in Ultrawide Monitor,1,379.99,11/08/19 22:38,"964 Dogwood St, San Francisco, CA 94016" +291600,LG Dryer,1,600.0,11/05/19 23:08,"92 Hill St, New York City, NY 10001" +291601,Google Phone,1,600,11/11/19 21:32,"639 6th St, San Francisco, CA 94016" +291601,USB-C Charging Cable,1,11.95,11/11/19 21:32,"639 6th St, San Francisco, CA 94016" +291601,Bose SoundSport Headphones,1,99.99,11/11/19 21:32,"639 6th St, San Francisco, CA 94016" +291602,iPhone,1,700,11/27/19 22:11,"213 Johnson St, Seattle, WA 98101" +291603,Apple Airpods Headphones,1,150,11/20/19 22:18,"543 Chestnut St, New York City, NY 10001" +291604,27in FHD Monitor,1,149.99,11/29/19 09:34,"430 Church St, Austin, TX 73301" +291605,Google Phone,1,600,11/17/19 09:22,"724 Main St, Atlanta, GA 30301" +291605,USB-C Charging Cable,1,11.95,11/17/19 09:22,"724 Main St, Atlanta, GA 30301" +291606,USB-C Charging Cable,1,11.95,11/27/19 19:10,"431 Hill St, Dallas, TX 75001" +291607,AA Batteries (4-pack),1,3.84,11/16/19 17:48,"796 Spruce St, New York City, NY 10001" +291608,20in Monitor,1,109.99,11/30/19 16:51,"321 6th St, San Francisco, CA 94016" +291609,34in Ultrawide Monitor,1,379.99,11/02/19 11:23,"6 1st St, Los Angeles, CA 90001" +291610,27in FHD Monitor,1,149.99,11/01/19 16:23,"251 Lakeview St, Seattle, WA 98101" +291611,USB-C Charging Cable,1,11.95,11/16/19 21:33,"602 5th St, Atlanta, GA 30301" +291612,Lightning Charging Cable,1,14.95,11/27/19 12:00,"546 Adams St, Boston, MA 02215" +291613,AA Batteries (4-pack),1,3.84,11/16/19 21:12,"962 Wilson St, Atlanta, GA 30301" +291614,Lightning Charging Cable,1,14.95,11/08/19 11:40,"703 Willow St, Boston, MA 02215" +291615,AA Batteries (4-pack),2,3.84,11/27/19 10:55,"680 Madison St, Seattle, WA 98101" +291616,AAA Batteries (4-pack),1,2.99,11/26/19 15:46,"830 River St, San Francisco, CA 94016" +291617,Apple Airpods Headphones,1,150,11/20/19 12:31,"804 Lakeview St, San Francisco, CA 94016" +291618,AAA Batteries (4-pack),1,2.99,11/29/19 15:15,"286 Jackson St, Los Angeles, CA 90001" +291619,Flatscreen TV,1,300,11/11/19 18:00,"395 Dogwood St, New York City, NY 10001" +291620,27in 4K Gaming Monitor,1,389.99,11/26/19 22:33,"767 Meadow St, Boston, MA 02215" +291621,Apple Airpods Headphones,1,150,11/19/19 11:02,"509 7th St, Los Angeles, CA 90001" +291622,iPhone,1,700,11/27/19 10:43,"969 2nd St, New York City, NY 10001" +291623,iPhone,1,700,11/26/19 11:13,"169 Lakeview St, San Francisco, CA 94016" +291624,Apple Airpods Headphones,1,150,11/01/19 19:20,"655 Ridge St, New York City, NY 10001" +291625,Bose SoundSport Headphones,1,99.99,11/07/19 19:43,"95 Cedar St, San Francisco, CA 94016" +291625,AAA Batteries (4-pack),2,2.99,11/07/19 19:43,"95 Cedar St, San Francisco, CA 94016" +291626,27in 4K Gaming Monitor,1,389.99,11/21/19 12:20,"782 Lake St, Los Angeles, CA 90001" +291627,Bose SoundSport Headphones,1,99.99,11/02/19 20:23,"333 North St, Seattle, WA 98101" +291628,AAA Batteries (4-pack),2,2.99,11/26/19 10:33,"597 1st St, Atlanta, GA 30301" +291629,Lightning Charging Cable,1,14.95,11/19/19 06:15,"930 Sunset St, Atlanta, GA 30301" +291630,Bose SoundSport Headphones,1,99.99,11/08/19 15:51,"82 Jefferson St, Portland, OR 97035" +291631,iPhone,1,700,11/10/19 15:13,"968 Forest St, Portland, OR 97035" +291632,AAA Batteries (4-pack),2,2.99,11/22/19 09:06,"418 7th St, Atlanta, GA 30301" +291633,AA Batteries (4-pack),1,3.84,11/05/19 10:20,"766 5th St, Seattle, WA 98101" +291634,Apple Airpods Headphones,1,150,11/15/19 15:19,"418 Center St, Austin, TX 73301" +291635,20in Monitor,1,109.99,11/17/19 13:32,"830 8th St, Los Angeles, CA 90001" +291636,ThinkPad Laptop,1,999.99,11/10/19 03:43,"640 Center St, New York City, NY 10001" +291637,USB-C Charging Cable,1,11.95,11/13/19 14:53,"821 6th St, Austin, TX 73301" +291638,27in 4K Gaming Monitor,1,389.99,11/24/19 20:30,"460 South St, Seattle, WA 98101" +291639,AAA Batteries (4-pack),2,2.99,11/08/19 01:02,"116 Spruce St, Los Angeles, CA 90001" +291640,Bose SoundSport Headphones,1,99.99,11/21/19 22:22,"184 Johnson St, San Francisco, CA 94016" +291641,Vareebadd Phone,1,400,11/07/19 18:32,"922 River St, Los Angeles, CA 90001" +291642,ThinkPad Laptop,1,999.99,11/09/19 11:07,"217 10th St, Seattle, WA 98101" +291643,Wired Headphones,1,11.99,11/23/19 15:00,"732 8th St, New York City, NY 10001" +291644,Wired Headphones,1,11.99,11/04/19 21:54,"194 1st St, Portland, OR 97035" +291645,Lightning Charging Cable,1,14.95,11/26/19 15:03,"411 10th St, New York City, NY 10001" +291646,Wired Headphones,1,11.99,11/22/19 20:04,"767 Cherry St, San Francisco, CA 94016" +291647,AA Batteries (4-pack),1,3.84,11/13/19 14:33,"569 Church St, San Francisco, CA 94016" +291648,Wired Headphones,1,11.99,11/19/19 08:32,"651 6th St, Los Angeles, CA 90001" +291649,AA Batteries (4-pack),2,3.84,11/08/19 10:39,"250 South St, Austin, TX 73301" +291650,AA Batteries (4-pack),1,3.84,11/11/19 18:11,"852 8th St, Los Angeles, CA 90001" +291651,AAA Batteries (4-pack),1,2.99,11/22/19 06:56,"605 Washington St, San Francisco, CA 94016" +291652,AAA Batteries (4-pack),1,2.99,11/14/19 08:43,"620 Johnson St, New York City, NY 10001" +291653,AAA Batteries (4-pack),4,2.99,11/11/19 17:24,"581 Jefferson St, Boston, MA 02215" +291654,Wired Headphones,1,11.99,11/20/19 12:34,"852 Lincoln St, San Francisco, CA 94016" +291655,AAA Batteries (4-pack),2,2.99,11/02/19 20:33,"187 West St, New York City, NY 10001" +291656,Lightning Charging Cable,1,14.95,11/17/19 17:45,"748 Chestnut St, San Francisco, CA 94016" +291657,Wired Headphones,1,11.99,11/18/19 17:52,"776 Jefferson St, New York City, NY 10001" +291658,AAA Batteries (4-pack),1,2.99,11/22/19 09:26,"270 Ridge St, Austin, TX 73301" +291659,Wired Headphones,1,11.99,11/30/19 18:25,"664 Hickory St, San Francisco, CA 94016" +291660,27in FHD Monitor,1,149.99,11/19/19 14:14,"986 Sunset St, Los Angeles, CA 90001" +291661,34in Ultrawide Monitor,1,379.99,11/18/19 16:23,"439 7th St, Los Angeles, CA 90001" +291662,Apple Airpods Headphones,1,150,11/15/19 06:25,"452 7th St, Los Angeles, CA 90001" +291663,Apple Airpods Headphones,1,150,11/09/19 15:42,"769 6th St, San Francisco, CA 94016" +291664,AA Batteries (4-pack),1,3.84,11/25/19 08:47,"762 Highland St, Seattle, WA 98101" +291665,20in Monitor,1,109.99,11/27/19 15:16,"282 Meadow St, Portland, ME 04101" +291666,Flatscreen TV,1,300,11/07/19 08:11,"280 Adams St, San Francisco, CA 94016" +291667,AAA Batteries (4-pack),1,2.99,11/15/19 12:45,"416 Forest St, Los Angeles, CA 90001" +291668,ThinkPad Laptop,1,999.99,11/14/19 09:18,"275 1st St, Los Angeles, CA 90001" +291669,USB-C Charging Cable,1,11.95,11/18/19 16:52,"316 Dogwood St, Los Angeles, CA 90001" +291670,AA Batteries (4-pack),2,3.84,11/11/19 17:27,"607 12th St, San Francisco, CA 94016" +291671,Wired Headphones,1,11.99,11/01/19 16:57,"259 13th St, Atlanta, GA 30301" +291672,Lightning Charging Cable,1,14.95,11/23/19 16:19,"41 13th St, Dallas, TX 75001" +291673,USB-C Charging Cable,1,11.95,11/14/19 01:21,"299 Pine St, New York City, NY 10001" +291674,iPhone,1,700,11/28/19 22:45,"469 Lincoln St, Boston, MA 02215" +291675,AA Batteries (4-pack),1,3.84,11/14/19 14:12,"830 Highland St, San Francisco, CA 94016" +291676,27in 4K Gaming Monitor,1,389.99,11/17/19 21:14,"893 Highland St, Dallas, TX 75001" +291677,AA Batteries (4-pack),2,3.84,11/11/19 18:48,"878 Sunset St, Boston, MA 02215" +291678,27in 4K Gaming Monitor,1,389.99,11/22/19 20:23,"691 Hill St, Boston, MA 02215" +291679,USB-C Charging Cable,1,11.95,11/08/19 20:06,"715 Highland St, Dallas, TX 75001" +291680,20in Monitor,1,109.99,11/08/19 15:47,"317 Cherry St, Los Angeles, CA 90001" +291681,AAA Batteries (4-pack),2,2.99,11/20/19 11:29,"368 9th St, Atlanta, GA 30301" +291682,AA Batteries (4-pack),1,3.84,11/26/19 20:18,"781 11th St, Seattle, WA 98101" +291683,Apple Airpods Headphones,1,150,11/23/19 21:43,"533 Hill St, Boston, MA 02215" +291684,27in FHD Monitor,1,149.99,11/09/19 23:08,"371 9th St, New York City, NY 10001" +291685,AAA Batteries (4-pack),1,2.99,11/22/19 13:56,"655 Madison St, Seattle, WA 98101" +291686,Lightning Charging Cable,1,14.95,11/17/19 18:50,"529 Ridge St, San Francisco, CA 94016" +291687,AAA Batteries (4-pack),4,2.99,11/26/19 20:24,"422 Cherry St, Boston, MA 02215" +291688,Bose SoundSport Headphones,1,99.99,11/14/19 18:49,"831 Jefferson St, Los Angeles, CA 90001" +291689,Apple Airpods Headphones,1,150,11/25/19 12:25,"582 11th St, San Francisco, CA 94016" +291690,AAA Batteries (4-pack),1,2.99,11/19/19 22:33,"789 Johnson St, Seattle, WA 98101" +291691,AAA Batteries (4-pack),1,2.99,11/10/19 12:16,"782 Willow St, Portland, OR 97035" +291692,USB-C Charging Cable,1,11.95,11/16/19 16:51,"965 Ridge St, Austin, TX 73301" +291693,iPhone,1,700,11/05/19 23:07,"667 11th St, San Francisco, CA 94016" +291694,Vareebadd Phone,1,400,11/12/19 12:33,"387 Madison St, Los Angeles, CA 90001" +291695,AAA Batteries (4-pack),1,2.99,11/18/19 10:07,"159 North St, San Francisco, CA 94016" +291696,USB-C Charging Cable,1,11.95,11/15/19 08:16,"72 6th St, Portland, OR 97035" +291697,Vareebadd Phone,1,400,11/13/19 22:41,"945 6th St, Dallas, TX 75001" +291698,Google Phone,1,600,11/10/19 09:01,"3 Meadow St, New York City, NY 10001" +291699,Wired Headphones,1,11.99,11/25/19 14:51,"594 9th St, San Francisco, CA 94016" +291700,AA Batteries (4-pack),1,3.84,11/03/19 17:40,"751 Jackson St, Los Angeles, CA 90001" +291701,Apple Airpods Headphones,1,150,11/05/19 20:33,"83 Elm St, Los Angeles, CA 90001" +291702,27in 4K Gaming Monitor,1,389.99,11/17/19 20:08,"196 North St, Los Angeles, CA 90001" +291703,Bose SoundSport Headphones,1,99.99,11/24/19 08:11,"67 11th St, New York City, NY 10001" +291704,Apple Airpods Headphones,1,150,11/09/19 17:00,"108 Washington St, New York City, NY 10001" +291705,AA Batteries (4-pack),1,3.84,11/23/19 04:15,"422 Lakeview St, San Francisco, CA 94016" +291706,AA Batteries (4-pack),1,3.84,11/13/19 18:23,"540 Hickory St, New York City, NY 10001" +291706,Apple Airpods Headphones,1,150,11/13/19 18:23,"540 Hickory St, New York City, NY 10001" +291707,AA Batteries (4-pack),1,3.84,11/28/19 21:46,"529 2nd St, Atlanta, GA 30301" +291708,Bose SoundSport Headphones,1,99.99,11/26/19 07:43,"559 Sunset St, Seattle, WA 98101" +291709,AA Batteries (4-pack),1,3.84,11/06/19 22:14,"899 Lincoln St, Seattle, WA 98101" +291710,Wired Headphones,1,11.99,11/08/19 02:15,"733 6th St, Seattle, WA 98101" +291711,Bose SoundSport Headphones,1,99.99,11/26/19 10:15,"388 Cedar St, Seattle, WA 98101" +291712,AA Batteries (4-pack),1,3.84,11/18/19 04:51,"783 North St, Boston, MA 02215" +291713,Vareebadd Phone,1,400,11/12/19 14:53,"710 Jackson St, New York City, NY 10001" +291713,Wired Headphones,1,11.99,11/12/19 14:53,"710 Jackson St, New York City, NY 10001" +291714,34in Ultrawide Monitor,1,379.99,11/18/19 16:52,"675 Jefferson St, Portland, OR 97035" +291715,Bose SoundSport Headphones,1,99.99,11/13/19 06:58,"590 Center St, New York City, NY 10001" +291716,AAA Batteries (4-pack),1,2.99,11/08/19 20:41,"775 9th St, Seattle, WA 98101" +291717,20in Monitor,1,109.99,11/01/19 10:34,"957 Hickory St, San Francisco, CA 94016" +291718,AAA Batteries (4-pack),1,2.99,11/25/19 05:59,"882 Wilson St, Atlanta, GA 30301" +291719,27in 4K Gaming Monitor,1,389.99,11/22/19 09:31,"300 10th St, New York City, NY 10001" +291720,Lightning Charging Cable,1,14.95,11/26/19 21:49,"313 Ridge St, San Francisco, CA 94016" +291721,Wired Headphones,1,11.99,11/19/19 20:24,"803 Jackson St, Boston, MA 02215" +291722,Lightning Charging Cable,1,14.95,11/01/19 14:17,"228 Forest St, Los Angeles, CA 90001" +291723,USB-C Charging Cable,1,11.95,11/02/19 13:09,"268 Spruce St, Los Angeles, CA 90001" +291724,27in FHD Monitor,1,149.99,11/05/19 16:32,"735 Church St, Seattle, WA 98101" +291725,Vareebadd Phone,1,400,11/22/19 00:54,"920 Adams St, San Francisco, CA 94016" +291726,USB-C Charging Cable,1,11.95,11/24/19 15:24,"920 11th St, Boston, MA 02215" +291727,AA Batteries (4-pack),1,3.84,11/03/19 19:08,"489 4th St, New York City, NY 10001" +291727,Apple Airpods Headphones,1,150,11/03/19 19:08,"489 4th St, New York City, NY 10001" +291728,Bose SoundSport Headphones,1,99.99,11/15/19 23:26,"848 Lake St, Portland, OR 97035" +291729,Flatscreen TV,1,300,11/15/19 23:26,"19 Spruce St, San Francisco, CA 94016" +291730,USB-C Charging Cable,1,11.95,11/07/19 16:14,"645 Chestnut St, Seattle, WA 98101" +291731,USB-C Charging Cable,1,11.95,11/18/19 14:48,"825 Adams St, Los Angeles, CA 90001" +291732,Flatscreen TV,1,300,11/09/19 02:04,"351 Hill St, San Francisco, CA 94016" +291733,Wired Headphones,2,11.99,11/16/19 03:47,"397 Center St, Portland, OR 97035" +291734,USB-C Charging Cable,1,11.95,11/22/19 12:31,"717 Lakeview St, Portland, OR 97035" +291735,34in Ultrawide Monitor,1,379.99,11/27/19 22:25,"42 Meadow St, San Francisco, CA 94016" +291736,Bose SoundSport Headphones,1,99.99,11/15/19 12:44,"566 Walnut St, San Francisco, CA 94016" +291737,Bose SoundSport Headphones,1,99.99,11/19/19 20:09,"90 11th St, San Francisco, CA 94016" +291738,Google Phone,1,600,11/30/19 16:20,"586 14th St, San Francisco, CA 94016" +291738,USB-C Charging Cable,1,11.95,11/30/19 16:20,"586 14th St, San Francisco, CA 94016" +291739,AA Batteries (4-pack),1,3.84,11/02/19 10:50,"360 Church St, Atlanta, GA 30301" +291740,Apple Airpods Headphones,1,150,11/07/19 08:53,"164 11th St, New York City, NY 10001" +291741,Bose SoundSport Headphones,1,99.99,11/10/19 13:45,"972 Hickory St, New York City, NY 10001" +291742,Apple Airpods Headphones,1,150,11/22/19 19:04,"362 Cedar St, Boston, MA 02215" +291743,iPhone,1,700,11/30/19 18:18,"618 Ridge St, Atlanta, GA 30301" +291744,34in Ultrawide Monitor,1,379.99,11/08/19 12:52,"301 Lincoln St, Dallas, TX 75001" +291745,Bose SoundSport Headphones,1,99.99,11/14/19 13:05,"627 Johnson St, Atlanta, GA 30301" +291746,AAA Batteries (4-pack),3,2.99,11/27/19 23:00,"610 Jackson St, Portland, OR 97035" +291747,Bose SoundSport Headphones,1,99.99,11/26/19 10:32,"176 West St, Atlanta, GA 30301" +291748,AA Batteries (4-pack),1,3.84,11/04/19 22:47,"725 Washington St, Dallas, TX 75001" +291749,AA Batteries (4-pack),1,3.84,11/24/19 16:20,"692 Elm St, Dallas, TX 75001" +291750,iPhone,1,700,11/03/19 20:09,"25 Church St, Austin, TX 73301" +291751,20in Monitor,1,109.99,11/16/19 13:26,"403 Hickory St, Portland, ME 04101" +291752,USB-C Charging Cable,1,11.95,11/06/19 12:02,"980 Hill St, Portland, ME 04101" +291753,27in FHD Monitor,1,149.99,11/08/19 12:44,"13 8th St, Los Angeles, CA 90001" +291754,Google Phone,1,600,11/23/19 17:51,"852 Cherry St, Dallas, TX 75001" +291754,USB-C Charging Cable,1,11.95,11/23/19 17:51,"852 Cherry St, Dallas, TX 75001" +291755,Lightning Charging Cable,1,14.95,11/17/19 12:26,"755 Adams St, Austin, TX 73301" +291756,USB-C Charging Cable,1,11.95,11/15/19 12:14,"613 River St, Portland, OR 97035" +291757,Flatscreen TV,1,300,11/30/19 14:21,"808 Maple St, Austin, TX 73301" +291758,USB-C Charging Cable,1,11.95,11/14/19 19:21,"40 Sunset St, Boston, MA 02215" +291759,AAA Batteries (4-pack),1,2.99,11/19/19 12:40,"700 Pine St, Los Angeles, CA 90001" +291760,Lightning Charging Cable,1,14.95,11/08/19 18:18,"909 11th St, San Francisco, CA 94016" +291761,Wired Headphones,1,11.99,11/16/19 21:25,"361 Center St, Boston, MA 02215" +291762,Apple Airpods Headphones,1,150,11/28/19 14:01,"928 Ridge St, Portland, OR 97035" +291763,AA Batteries (4-pack),1,3.84,11/11/19 03:27,"510 14th St, San Francisco, CA 94016" +291764,Apple Airpods Headphones,1,150,11/19/19 23:19,"398 River St, San Francisco, CA 94016" +291765,Macbook Pro Laptop,1,1700,11/01/19 07:46,"249 Willow St, San Francisco, CA 94016" +291766,27in FHD Monitor,1,149.99,11/27/19 14:23,"421 10th St, New York City, NY 10001" +291767,20in Monitor,1,109.99,11/21/19 11:11,"877 2nd St, New York City, NY 10001" +291768,Wired Headphones,1,11.99,11/30/19 19:23,"747 Forest St, Seattle, WA 98101" +291769,Wired Headphones,1,11.99,11/05/19 17:34,"359 River St, San Francisco, CA 94016" +291770,27in FHD Monitor,1,149.99,11/01/19 12:33,"783 Madison St, San Francisco, CA 94016" +291771,Wired Headphones,1,11.99,11/12/19 22:28,"795 Wilson St, San Francisco, CA 94016" +291772,Wired Headphones,1,11.99,11/18/19 12:20,"778 Elm St, San Francisco, CA 94016" +291773,20in Monitor,1,109.99,11/26/19 17:51,"489 Highland St, Boston, MA 02215" +291774,27in 4K Gaming Monitor,1,389.99,11/09/19 16:54,"104 Church St, New York City, NY 10001" +291775,Apple Airpods Headphones,1,150,11/10/19 15:06,"441 Willow St, Los Angeles, CA 90001" +291776,AA Batteries (4-pack),1,3.84,11/22/19 14:09,"176 Meadow St, Los Angeles, CA 90001" +291777,USB-C Charging Cable,1,11.95,11/17/19 16:58,"384 Pine St, Austin, TX 73301" +291778,27in 4K Gaming Monitor,1,389.99,11/29/19 07:09,"723 1st St, Portland, ME 04101" +291779,Bose SoundSport Headphones,1,99.99,11/15/19 10:18,"711 Lake St, Portland, OR 97035" +291780,iPhone,1,700,11/11/19 00:26,"406 Pine St, Los Angeles, CA 90001" +291781,Lightning Charging Cable,1,14.95,11/11/19 09:59,"726 Forest St, San Francisco, CA 94016" +291782,USB-C Charging Cable,1,11.95,11/16/19 20:40,"395 North St, Boston, MA 02215" +291783,34in Ultrawide Monitor,1,379.99,11/29/19 00:02,"795 Park St, Boston, MA 02215" +291784,Wired Headphones,1,11.99,11/19/19 11:47,"77 Chestnut St, Seattle, WA 98101" +291785,AA Batteries (4-pack),1,3.84,11/03/19 06:27,"954 Jackson St, Portland, OR 97035" +291786,27in 4K Gaming Monitor,1,389.99,11/11/19 11:27,"831 Center St, San Francisco, CA 94016" +291787,Bose SoundSport Headphones,1,99.99,11/14/19 13:22,"530 Main St, Seattle, WA 98101" +291788,Bose SoundSport Headphones,1,99.99,11/28/19 20:43,"550 Adams St, San Francisco, CA 94016" +291789,USB-C Charging Cable,1,11.95,11/11/19 17:10,"106 Johnson St, Los Angeles, CA 90001" +291790,AA Batteries (4-pack),1,3.84,11/20/19 18:08,"103 Lincoln St, Austin, TX 73301" +291791,Lightning Charging Cable,1,14.95,11/16/19 12:49,"936 Walnut St, Atlanta, GA 30301" +291792,AA Batteries (4-pack),3,3.84,11/21/19 22:34,"526 North St, San Francisco, CA 94016" +291793,AA Batteries (4-pack),1,3.84,11/28/19 15:36,"140 13th St, San Francisco, CA 94016" +291794,Macbook Pro Laptop,1,1700,11/21/19 21:18,"76 6th St, Los Angeles, CA 90001" +291795,Apple Airpods Headphones,1,150,11/03/19 20:37,"684 Elm St, Portland, ME 04101" +291796,27in FHD Monitor,1,149.99,11/06/19 18:54,"217 Church St, Dallas, TX 75001" +291797,27in FHD Monitor,1,149.99,11/19/19 23:25,"297 Sunset St, San Francisco, CA 94016" +291798,Google Phone,1,600,11/09/19 11:05,"321 Cherry St, Atlanta, GA 30301" +291799,Wired Headphones,1,11.99,11/24/19 21:46,"870 Center St, New York City, NY 10001" +291800,Lightning Charging Cable,2,14.95,11/27/19 14:55,"146 Cedar St, Boston, MA 02215" +291801,Google Phone,1,600,11/07/19 16:39,"425 Madison St, Dallas, TX 75001" +291802,AAA Batteries (4-pack),2,2.99,11/11/19 11:05,"973 Cedar St, Portland, ME 04101" +291803,Flatscreen TV,1,300,11/26/19 15:41,"262 Sunset St, San Francisco, CA 94016" +291804,Lightning Charging Cable,2,14.95,11/07/19 15:19,"720 Wilson St, San Francisco, CA 94016" +291805,Apple Airpods Headphones,1,150,11/14/19 23:37,"848 10th St, Boston, MA 02215" +291806,Lightning Charging Cable,1,14.95,11/24/19 09:55,"491 Pine St, Boston, MA 02215" +291807,AA Batteries (4-pack),1,3.84,11/22/19 08:06,"522 Park St, Atlanta, GA 30301" +291808,27in FHD Monitor,1,149.99,11/06/19 23:45,"850 South St, San Francisco, CA 94016" +291809,AA Batteries (4-pack),1,3.84,11/20/19 21:52,"559 5th St, Dallas, TX 75001" +291810,iPhone,1,700,11/17/19 17:45,"598 Madison St, Dallas, TX 75001" +291810,Lightning Charging Cable,1,14.95,11/17/19 17:45,"598 Madison St, Dallas, TX 75001" +291811,Apple Airpods Headphones,1,150,11/28/19 16:21,"321 Lake St, Seattle, WA 98101" +291812,34in Ultrawide Monitor,1,379.99,11/07/19 00:00,"737 Jackson St, Los Angeles, CA 90001" +291813,USB-C Charging Cable,1,11.95,11/11/19 13:40,"272 Lakeview St, San Francisco, CA 94016" +291814,USB-C Charging Cable,1,11.95,11/08/19 16:25,"978 Highland St, Boston, MA 02215" +291815,Apple Airpods Headphones,1,150,11/05/19 17:39,"399 Hill St, Portland, OR 97035" +291816,iPhone,1,700,11/20/19 19:28,"631 12th St, Atlanta, GA 30301" +291816,Lightning Charging Cable,1,14.95,11/20/19 19:28,"631 12th St, Atlanta, GA 30301" +291816,Apple Airpods Headphones,1,150,11/20/19 19:28,"631 12th St, Atlanta, GA 30301" +291817,Lightning Charging Cable,1,14.95,11/21/19 14:56,"375 7th St, Seattle, WA 98101" +291818,Lightning Charging Cable,1,14.95,11/22/19 14:47,"200 4th St, Los Angeles, CA 90001" +291819,AAA Batteries (4-pack),1,2.99,11/28/19 15:12,"379 Center St, Los Angeles, CA 90001" +291820,AA Batteries (4-pack),1,3.84,11/01/19 21:03,"703 West St, Seattle, WA 98101" +291821,AA Batteries (4-pack),1,3.84,11/08/19 19:07,"483 10th St, San Francisco, CA 94016" +291822,Bose SoundSport Headphones,1,99.99,11/13/19 19:26,"723 Washington St, Dallas, TX 75001" +291823,Apple Airpods Headphones,1,150,11/22/19 19:42,"9 Madison St, Los Angeles, CA 90001" +291824,Lightning Charging Cable,1,14.95,11/07/19 13:03,"841 Forest St, Los Angeles, CA 90001" +291825,34in Ultrawide Monitor,1,379.99,11/19/19 16:05,"28 Madison St, Portland, OR 97035" +291826,AA Batteries (4-pack),2,3.84,11/30/19 08:43,"431 River St, San Francisco, CA 94016" +291827,Bose SoundSport Headphones,1,99.99,11/12/19 20:47,"560 Meadow St, Boston, MA 02215" +291828,Bose SoundSport Headphones,1,99.99,11/24/19 14:18,"91 9th St, Austin, TX 73301" +291829,AA Batteries (4-pack),2,3.84,11/06/19 18:03,"158 Dogwood St, San Francisco, CA 94016" +291830,Lightning Charging Cable,1,14.95,11/23/19 17:21,"284 Jefferson St, San Francisco, CA 94016" +291831,34in Ultrawide Monitor,1,379.99,11/18/19 00:37,"525 Center St, Los Angeles, CA 90001" +291832,AAA Batteries (4-pack),1,2.99,11/04/19 10:25,"1 Maple St, San Francisco, CA 94016" +291832,AA Batteries (4-pack),1,3.84,11/04/19 10:25,"1 Maple St, San Francisco, CA 94016" +291833,Vareebadd Phone,1,400,11/05/19 20:36,"907 Dogwood St, Atlanta, GA 30301" +291834,AAA Batteries (4-pack),2,2.99,11/19/19 14:56,"518 Pine St, Atlanta, GA 30301" +291835,USB-C Charging Cable,1,11.95,11/25/19 04:28,"917 4th St, Portland, OR 97035" +291836,Lightning Charging Cable,1,14.95,11/22/19 23:19,"350 Walnut St, Seattle, WA 98101" +291837,Bose SoundSport Headphones,1,99.99,11/15/19 12:24,"68 Ridge St, Los Angeles, CA 90001" +291838,AA Batteries (4-pack),2,3.84,11/07/19 04:58,"823 13th St, Austin, TX 73301" +291839,Flatscreen TV,1,300,11/27/19 20:18,"668 1st St, Boston, MA 02215" +291840,AAA Batteries (4-pack),2,2.99,11/21/19 13:47,"646 1st St, San Francisco, CA 94016" +291841,27in FHD Monitor,1,149.99,11/17/19 12:08,"126 9th St, Dallas, TX 75001" +291842,AA Batteries (4-pack),2,3.84,11/10/19 11:23,"279 7th St, San Francisco, CA 94016" +291843,Lightning Charging Cable,1,14.95,11/05/19 11:21,"594 River St, Dallas, TX 75001" +291844,Lightning Charging Cable,1,14.95,11/10/19 00:55,"612 Madison St, Seattle, WA 98101" +291845,AA Batteries (4-pack),1,3.84,11/15/19 08:27,"669 Dogwood St, San Francisco, CA 94016" +291846,27in FHD Monitor,1,149.99,11/08/19 23:43,"686 Madison St, San Francisco, CA 94016" +291847,Bose SoundSport Headphones,1,99.99,11/03/19 14:03,"77 Park St, Los Angeles, CA 90001" +291848,Bose SoundSport Headphones,1,99.99,11/25/19 10:34,"625 12th St, Dallas, TX 75001" +291849,Google Phone,1,600,11/30/19 01:32,"908 Lincoln St, San Francisco, CA 94016" +291849,USB-C Charging Cable,1,11.95,11/30/19 01:32,"908 Lincoln St, San Francisco, CA 94016" +291850,27in FHD Monitor,1,149.99,11/29/19 19:53,"560 11th St, San Francisco, CA 94016" +291851,20in Monitor,1,109.99,11/30/19 12:27,"162 4th St, Dallas, TX 75001" +291851,Google Phone,1,600,11/30/19 12:27,"162 4th St, Dallas, TX 75001" +291852,Apple Airpods Headphones,1,150,11/30/19 06:42,"789 Dogwood St, Los Angeles, CA 90001" +291853,AA Batteries (4-pack),3,3.84,11/24/19 09:55,"931 Main St, Portland, OR 97035" +291854,USB-C Charging Cable,1,11.95,11/06/19 07:33,"609 River St, Atlanta, GA 30301" +291855,AA Batteries (4-pack),2,3.84,11/28/19 08:21,"573 5th St, San Francisco, CA 94016" +291856,Bose SoundSport Headphones,1,99.99,11/13/19 21:19,"446 Pine St, San Francisco, CA 94016" +291857,iPhone,1,700,11/09/19 21:02,"66 Adams St, Dallas, TX 75001" +291858,iPhone,1,700,11/15/19 10:44,"151 4th St, Austin, TX 73301" +291858,Wired Headphones,1,11.99,11/15/19 10:44,"151 4th St, Austin, TX 73301" +291859,AA Batteries (4-pack),1,3.84,11/15/19 22:32,"186 2nd St, San Francisco, CA 94016" +291860,AAA Batteries (4-pack),3,2.99,11/21/19 09:45,"897 Hill St, New York City, NY 10001" +291861,Bose SoundSport Headphones,1,99.99,11/03/19 11:55,"215 2nd St, New York City, NY 10001" +291862,27in FHD Monitor,1,149.99,11/28/19 18:55,"291 South St, Boston, MA 02215" +291863,Wired Headphones,1,11.99,11/21/19 17:21,"712 2nd St, Boston, MA 02215" +291864,27in FHD Monitor,1,149.99,11/25/19 22:27,"362 Lincoln St, Los Angeles, CA 90001" +291865,AAA Batteries (4-pack),1,2.99,11/11/19 19:16,"430 2nd St, Boston, MA 02215" +291866,iPhone,1,700,11/25/19 16:57,"35 Elm St, Boston, MA 02215" +291867,AAA Batteries (4-pack),1,2.99,11/04/19 08:51,"88 Cherry St, New York City, NY 10001" +291868,Macbook Pro Laptop,1,1700,11/02/19 08:59,"529 River St, San Francisco, CA 94016" +291869,AA Batteries (4-pack),2,3.84,11/17/19 08:30,"47 Jefferson St, Los Angeles, CA 90001" +291870,27in FHD Monitor,1,149.99,11/04/19 15:21,"592 5th St, Seattle, WA 98101" +291871,AAA Batteries (4-pack),3,2.99,11/22/19 19:18,"669 Hickory St, Boston, MA 02215" +291872,iPhone,1,700,11/30/19 13:38,"270 Lake St, Los Angeles, CA 90001" +291873,Wired Headphones,1,11.99,11/30/19 17:56,"580 Hickory St, New York City, NY 10001" +291874,27in FHD Monitor,1,149.99,11/20/19 15:56,"796 Wilson St, Dallas, TX 75001" +291874,AAA Batteries (4-pack),2,2.99,11/20/19 15:56,"796 Wilson St, Dallas, TX 75001" +291875,Wired Headphones,2,11.99,11/12/19 20:36,"146 7th St, Los Angeles, CA 90001" +291876,20in Monitor,1,109.99,11/16/19 17:07,"423 Main St, Portland, ME 04101" +291877,Lightning Charging Cable,1,14.95,11/15/19 19:13,"794 11th St, San Francisco, CA 94016" +291878,Bose SoundSport Headphones,1,99.99,11/12/19 07:35,"577 Elm St, New York City, NY 10001" +291879,USB-C Charging Cable,1,11.95,11/14/19 21:50,"373 North St, San Francisco, CA 94016" +291880,Flatscreen TV,1,300,11/09/19 18:22,"453 Spruce St, San Francisco, CA 94016" +291881,AA Batteries (4-pack),1,3.84,11/28/19 07:54,"655 Lake St, Portland, ME 04101" +291882,USB-C Charging Cable,1,11.95,11/20/19 18:00,"288 Cedar St, San Francisco, CA 94016" +291883,Wired Headphones,2,11.99,11/28/19 11:21,"577 Wilson St, Boston, MA 02215" +291884,USB-C Charging Cable,1,11.95,11/22/19 16:35,"126 1st St, San Francisco, CA 94016" +291885,Bose SoundSport Headphones,1,99.99,11/26/19 15:33,"165 Church St, San Francisco, CA 94016" +291886,AA Batteries (4-pack),1,3.84,11/07/19 11:10,"554 Cherry St, Los Angeles, CA 90001" +291887,Lightning Charging Cable,1,14.95,11/01/19 13:45,"744 Maple St, Austin, TX 73301" +291888,Bose SoundSport Headphones,1,99.99,11/10/19 20:28,"910 Elm St, San Francisco, CA 94016" +291889,USB-C Charging Cable,1,11.95,11/21/19 19:43,"303 Adams St, San Francisco, CA 94016" +291890,Bose SoundSport Headphones,1,99.99,11/09/19 17:32,"792 6th St, Los Angeles, CA 90001" +291891,Vareebadd Phone,1,400,11/24/19 13:01,"159 6th St, Los Angeles, CA 90001" +291892,ThinkPad Laptop,1,999.99,11/28/19 18:10,"395 Forest St, San Francisco, CA 94016" +291893,27in 4K Gaming Monitor,1,389.99,11/24/19 09:33,"284 4th St, Atlanta, GA 30301" +291894,AAA Batteries (4-pack),1,2.99,11/11/19 11:24,"49 Jackson St, San Francisco, CA 94016" +291895,Wired Headphones,1,11.99,11/28/19 08:55,"459 8th St, San Francisco, CA 94016" +291896,AA Batteries (4-pack),1,3.84,11/14/19 15:37,"293 Meadow St, Boston, MA 02215" +291897,Wired Headphones,1,11.99,11/24/19 16:40,"564 River St, Los Angeles, CA 90001" +291898,iPhone,1,700,11/19/19 09:12,"377 Lakeview St, Dallas, TX 75001" +291898,Apple Airpods Headphones,1,150,11/19/19 09:12,"377 Lakeview St, Dallas, TX 75001" +291899,Lightning Charging Cable,1,14.95,11/10/19 09:04,"344 Spruce St, Dallas, TX 75001" +291900,AAA Batteries (4-pack),1,2.99,11/07/19 10:49,"855 12th St, New York City, NY 10001" +291901,AAA Batteries (4-pack),1,2.99,11/03/19 20:24,"802 Walnut St, San Francisco, CA 94016" +291902,AAA Batteries (4-pack),2,2.99,11/30/19 18:30,"247 Park St, Seattle, WA 98101" +291903,Wired Headphones,1,11.99,11/09/19 09:50,"590 Meadow St, Los Angeles, CA 90001" +291904,Flatscreen TV,1,300,11/05/19 08:45,"680 12th St, Los Angeles, CA 90001" +291905,27in 4K Gaming Monitor,1,389.99,11/12/19 20:43,"942 Jefferson St, Dallas, TX 75001" +291906,ThinkPad Laptop,1,999.99,11/18/19 18:39,"77 6th St, Boston, MA 02215" +291907,USB-C Charging Cable,1,11.95,11/08/19 08:43,"937 Madison St, Dallas, TX 75001" +291908,27in 4K Gaming Monitor,1,389.99,11/03/19 23:11,"411 Hickory St, San Francisco, CA 94016" +291909,Apple Airpods Headphones,1,150,11/17/19 12:33,"870 11th St, Austin, TX 73301" +291910,AAA Batteries (4-pack),1,2.99,11/23/19 19:04,"540 5th St, Austin, TX 73301" +291911,LG Washing Machine,1,600.0,11/18/19 22:17,"260 Lincoln St, Portland, OR 97035" +291912,27in 4K Gaming Monitor,1,389.99,11/14/19 16:57,"916 12th St, Portland, OR 97035" +291913,LG Washing Machine,1,600.0,11/04/19 13:09,"757 Johnson St, Boston, MA 02215" +291914,Lightning Charging Cable,1,14.95,11/10/19 14:37,"496 Ridge St, Seattle, WA 98101" +291915,Macbook Pro Laptop,1,1700,11/06/19 15:53,"24 1st St, Los Angeles, CA 90001" +291916,20in Monitor,1,109.99,11/01/19 21:33,"680 5th St, Atlanta, GA 30301" +291917,Lightning Charging Cable,1,14.95,11/27/19 19:53,"279 Sunset St, San Francisco, CA 94016" +291918,USB-C Charging Cable,1,11.95,11/03/19 00:28,"279 River St, Atlanta, GA 30301" +291919,ThinkPad Laptop,1,999.99,11/10/19 10:39,"764 North St, Boston, MA 02215" +291920,ThinkPad Laptop,1,999.99,11/14/19 10:40,"643 Main St, San Francisco, CA 94016" +291921,AAA Batteries (4-pack),1,2.99,11/17/19 06:40,"905 5th St, Los Angeles, CA 90001" +291922,Lightning Charging Cable,1,14.95,11/06/19 08:14,"545 Hill St, Portland, OR 97035" +291923,USB-C Charging Cable,1,11.95,11/06/19 21:39,"503 Chestnut St, San Francisco, CA 94016" +291924,iPhone,1,700,11/15/19 12:24,"602 Lincoln St, Austin, TX 73301" +291925,ThinkPad Laptop,1,999.99,11/15/19 22:45,"183 Maple St, New York City, NY 10001" +291926,AA Batteries (4-pack),1,3.84,11/15/19 14:52,"941 Forest St, San Francisco, CA 94016" +291927,Flatscreen TV,1,300,11/09/19 13:13,"274 11th St, Boston, MA 02215" +291928,USB-C Charging Cable,1,11.95,11/04/19 11:41,"672 Chestnut St, Dallas, TX 75001" +291929,USB-C Charging Cable,3,11.95,11/20/19 23:17,"410 7th St, Los Angeles, CA 90001" +291930,USB-C Charging Cable,1,11.95,11/08/19 18:42,"199 Forest St, San Francisco, CA 94016" +291931,Apple Airpods Headphones,1,150,11/08/19 21:58,"948 1st St, Los Angeles, CA 90001" +291932,27in FHD Monitor,1,149.99,11/16/19 21:33,"783 Elm St, Los Angeles, CA 90001" +291933,Lightning Charging Cable,1,14.95,11/16/19 19:59,"373 8th St, New York City, NY 10001" +291934,27in FHD Monitor,1,149.99,11/03/19 03:02,"353 Sunset St, Portland, OR 97035" +291935,Apple Airpods Headphones,1,150,11/15/19 12:10,"868 13th St, Austin, TX 73301" +291936,AA Batteries (4-pack),2,3.84,11/11/19 14:26,"395 Adams St, Los Angeles, CA 90001" +291937,Bose SoundSport Headphones,1,99.99,11/17/19 22:45,"883 Wilson St, Seattle, WA 98101" +291938,iPhone,1,700,11/28/19 15:22,"698 Elm St, Portland, ME 04101" +291939,AAA Batteries (4-pack),1,2.99,11/30/19 15:17,"846 Pine St, San Francisco, CA 94016" +291940,Apple Airpods Headphones,1,150,11/09/19 09:49,"699 Jackson St, Los Angeles, CA 90001" +291941,USB-C Charging Cable,1,11.95,11/19/19 17:25,"297 Jefferson St, Dallas, TX 75001" +291942,USB-C Charging Cable,1,11.95,11/30/19 14:13,"39 10th St, Portland, ME 04101" +291943,Bose SoundSport Headphones,1,99.99,11/13/19 21:35,"319 Church St, San Francisco, CA 94016" +291944,20in Monitor,1,109.99,11/10/19 13:31,"738 Main St, Atlanta, GA 30301" +291945,27in FHD Monitor,1,149.99,11/10/19 21:52,"811 14th St, San Francisco, CA 94016" +291946,Google Phone,1,600,11/21/19 10:03,"883 Center St, Seattle, WA 98101" +291947,Apple Airpods Headphones,1,150,11/27/19 14:57,"935 Madison St, Seattle, WA 98101" +291948,Google Phone,1,600,11/04/19 12:03,"245 Walnut St, Seattle, WA 98101" +291949,Lightning Charging Cable,1,14.95,11/26/19 20:46,"482 6th St, San Francisco, CA 94016" +291950,27in FHD Monitor,1,149.99,11/15/19 20:41,"914 Lincoln St, San Francisco, CA 94016" +291951,iPhone,1,700,11/08/19 11:27,"678 West St, Los Angeles, CA 90001" +291952,iPhone,1,700,11/08/19 13:42,"244 Elm St, Atlanta, GA 30301" +291953,Lightning Charging Cable,1,14.95,11/27/19 17:07,"273 Lake St, San Francisco, CA 94016" +291954,Lightning Charging Cable,1,14.95,11/27/19 16:14,"348 8th St, Portland, OR 97035" +291955,20in Monitor,1,109.99,11/05/19 22:17,"534 2nd St, Atlanta, GA 30301" +291956,AAA Batteries (4-pack),1,2.99,11/26/19 01:59,"809 Church St, Los Angeles, CA 90001" +291957,AAA Batteries (4-pack),3,2.99,11/08/19 10:34,"737 Spruce St, Portland, ME 04101" +291958,AAA Batteries (4-pack),2,2.99,11/26/19 17:46,"318 Cherry St, Dallas, TX 75001" +291959,AAA Batteries (4-pack),1,2.99,11/29/19 19:37,"152 Sunset St, Boston, MA 02215" +291960,AA Batteries (4-pack),1,3.84,11/05/19 14:34,"839 Walnut St, San Francisco, CA 94016" +291961,AA Batteries (4-pack),1,3.84,11/29/19 18:42,"886 10th St, Los Angeles, CA 90001" +291962,AA Batteries (4-pack),1,3.84,11/10/19 17:45,"759 Ridge St, Los Angeles, CA 90001" +291963,Apple Airpods Headphones,1,150,11/13/19 13:09,"495 Lincoln St, Portland, OR 97035" +291964,Macbook Pro Laptop,1,1700,11/09/19 12:21,"392 Meadow St, Boston, MA 02215" +291965,Bose SoundSport Headphones,1,99.99,11/24/19 20:00,"966 Park St, San Francisco, CA 94016" +291966,USB-C Charging Cable,1,11.95,11/30/19 19:35,"571 Main St, Atlanta, GA 30301" +291967,AA Batteries (4-pack),2,3.84,11/19/19 22:53,"950 2nd St, Atlanta, GA 30301" +291968,USB-C Charging Cable,1,11.95,11/21/19 00:06,"772 Walnut St, Los Angeles, CA 90001" +291969,Apple Airpods Headphones,1,150,11/23/19 22:20,"503 Highland St, Los Angeles, CA 90001" +291970,USB-C Charging Cable,1,11.95,11/17/19 19:16,"45 9th St, New York City, NY 10001" +291971,Wired Headphones,1,11.99,11/03/19 16:29,"22 Cherry St, Dallas, TX 75001" +291972,AA Batteries (4-pack),1,3.84,11/25/19 15:32,"253 Elm St, Boston, MA 02215" +291973,Wired Headphones,1,11.99,11/06/19 01:09,"143 Lincoln St, Austin, TX 73301" +291974,Bose SoundSport Headphones,1,99.99,11/10/19 10:00,"119 South St, San Francisco, CA 94016" +291975,iPhone,1,700,11/08/19 20:56,"421 13th St, Boston, MA 02215" +291976,AA Batteries (4-pack),2,3.84,11/21/19 12:32,"322 River St, Atlanta, GA 30301" +291977,Lightning Charging Cable,1,14.95,11/20/19 20:00,"710 Jefferson St, Los Angeles, CA 90001" +291978,Bose SoundSport Headphones,1,99.99,11/01/19 23:53,"295 Hill St, Seattle, WA 98101" +291979,Bose SoundSport Headphones,1,99.99,11/27/19 13:54,"634 1st St, Boston, MA 02215" +291980,iPhone,1,700,11/25/19 19:28,"686 Cedar St, Dallas, TX 75001" +291980,Lightning Charging Cable,1,14.95,11/25/19 19:28,"686 Cedar St, Dallas, TX 75001" +291981,Vareebadd Phone,1,400,11/17/19 10:55,"806 10th St, Boston, MA 02215" +291982,27in FHD Monitor,1,149.99,11/15/19 10:51,"126 Washington St, Los Angeles, CA 90001" +291983,AAA Batteries (4-pack),1,2.99,11/22/19 13:27,"970 Hill St, San Francisco, CA 94016" +291984,20in Monitor,1,109.99,11/02/19 19:24,"927 Maple St, Los Angeles, CA 90001" +291985,Wired Headphones,1,11.99,11/19/19 17:23,"378 Main St, Portland, OR 97035" +291986,Flatscreen TV,1,300,11/06/19 08:28,"420 Maple St, Atlanta, GA 30301" +291987,Lightning Charging Cable,1,14.95,11/18/19 21:15,"697 Church St, San Francisco, CA 94016" +291988,Apple Airpods Headphones,1,150,11/18/19 20:33,"803 Center St, Austin, TX 73301" +291989,USB-C Charging Cable,2,11.95,11/18/19 16:45,"612 West St, San Francisco, CA 94016" +291990,iPhone,1,700,11/27/19 22:34,"618 Jackson St, San Francisco, CA 94016" +291990,Lightning Charging Cable,1,14.95,11/27/19 22:34,"618 Jackson St, San Francisco, CA 94016" +291991,USB-C Charging Cable,1,11.95,11/24/19 13:49,"768 Church St, Portland, OR 97035" +291992,AAA Batteries (4-pack),2,2.99,11/12/19 17:08,"779 Sunset St, Los Angeles, CA 90001" +291993,Wired Headphones,1,11.99,11/28/19 10:28,"190 Madison St, San Francisco, CA 94016" +291994,AAA Batteries (4-pack),1,2.99,11/11/19 07:44,"316 West St, San Francisco, CA 94016" +291995,USB-C Charging Cable,1,11.95,11/01/19 22:48,"530 Cherry St, New York City, NY 10001" +291996,Bose SoundSport Headphones,1,99.99,11/21/19 15:31,"268 6th St, Los Angeles, CA 90001" +291997,Apple Airpods Headphones,1,150,11/02/19 10:11,"82 10th St, Boston, MA 02215" +291998,Apple Airpods Headphones,1,150,11/10/19 14:26,"666 Sunset St, Boston, MA 02215" +291999,Lightning Charging Cable,1,14.95,11/07/19 14:13,"937 Wilson St, New York City, NY 10001" +292000,Google Phone,1,600,11/15/19 19:30,"424 Jefferson St, San Francisco, CA 94016" +292001,AAA Batteries (4-pack),2,2.99,11/02/19 20:16,"35 Johnson St, New York City, NY 10001" +292002,AA Batteries (4-pack),1,3.84,11/17/19 11:12,"54 Madison St, San Francisco, CA 94016" +292003,27in 4K Gaming Monitor,1,389.99,11/30/19 10:32,"94 11th St, Los Angeles, CA 90001" +292004,iPhone,1,700,11/30/19 13:35,"168 Church St, Atlanta, GA 30301" +292005,AA Batteries (4-pack),1,3.84,11/20/19 12:05,"937 Center St, Los Angeles, CA 90001" +292006,ThinkPad Laptop,1,999.99,11/24/19 18:32,"280 Park St, Boston, MA 02215" +292007,Google Phone,1,600,11/23/19 09:39,"912 Lake St, Los Angeles, CA 90001" +292008,Google Phone,1,600,11/21/19 13:07,"416 Lake St, Dallas, TX 75001" +292009,Flatscreen TV,1,300,11/28/19 19:15,"440 Jackson St, San Francisco, CA 94016" +292010,AAA Batteries (4-pack),1,2.99,11/16/19 00:54,"56 Highland St, Atlanta, GA 30301" +292011,AAA Batteries (4-pack),1,2.99,11/23/19 21:18,"580 Church St, Dallas, TX 75001" +292012,27in FHD Monitor,1,149.99,11/03/19 20:52,"219 7th St, San Francisco, CA 94016" +292013,AAA Batteries (4-pack),1,2.99,11/25/19 13:25,"499 Elm St, Atlanta, GA 30301" +292014,AA Batteries (4-pack),2,3.84,11/27/19 15:55,"236 Center St, Los Angeles, CA 90001" +292015,USB-C Charging Cable,1,11.95,11/08/19 16:22,"72 Jackson St, New York City, NY 10001" +292016,Bose SoundSport Headphones,1,99.99,11/07/19 14:54,"849 11th St, Boston, MA 02215" +292017,Wired Headphones,1,11.99,11/10/19 17:21,"212 River St, San Francisco, CA 94016" +292018,Apple Airpods Headphones,1,150,11/09/19 15:05,"170 Willow St, Dallas, TX 75001" +292019,AA Batteries (4-pack),1,3.84,11/06/19 17:51,"467 9th St, Boston, MA 02215" +292020,Wired Headphones,1,11.99,11/15/19 16:45,"60 Dogwood St, Los Angeles, CA 90001" +292021,USB-C Charging Cable,1,11.95,11/26/19 10:28,"292 4th St, San Francisco, CA 94016" +292022,Flatscreen TV,1,300,11/12/19 11:33,"568 Washington St, Dallas, TX 75001" +292023,Lightning Charging Cable,1,14.95,11/15/19 23:51,"931 13th St, San Francisco, CA 94016" +292024,USB-C Charging Cable,2,11.95,11/05/19 20:53,"580 10th St, San Francisco, CA 94016" +292025,AA Batteries (4-pack),3,3.84,11/21/19 18:19,"997 Maple St, Los Angeles, CA 90001" +292026,Flatscreen TV,1,300,11/10/19 13:10,"195 Adams St, Los Angeles, CA 90001" +292027,Google Phone,1,600,11/22/19 15:36,"955 Hickory St, San Francisco, CA 94016" +292028,27in FHD Monitor,1,149.99,11/29/19 21:24,"750 8th St, Portland, OR 97035" +292029,Wired Headphones,1,11.99,11/25/19 10:53,"905 River St, Los Angeles, CA 90001" +292030,Macbook Pro Laptop,1,1700,11/01/19 14:11,"24 Church St, San Francisco, CA 94016" +292031,AA Batteries (4-pack),1,3.84,11/11/19 07:47,"396 Spruce St, New York City, NY 10001" +292032,Lightning Charging Cable,2,14.95,11/10/19 07:32,"373 7th St, Boston, MA 02215" +292033,27in FHD Monitor,1,149.99,11/24/19 11:57,"29 Elm St, Los Angeles, CA 90001" +292034,iPhone,1,700,11/16/19 00:49,"367 14th St, Portland, OR 97035" +292035,Bose SoundSport Headphones,1,99.99,11/22/19 18:08,"473 12th St, Portland, OR 97035" +292036,Apple Airpods Headphones,1,150,11/01/19 08:25,"3 Wilson St, San Francisco, CA 94016" +292037,AAA Batteries (4-pack),1,2.99,11/06/19 03:35,"80 Washington St, San Francisco, CA 94016" +292038,Flatscreen TV,1,300,11/27/19 16:01,"441 13th St, Dallas, TX 75001" +292039,27in 4K Gaming Monitor,1,389.99,11/09/19 15:34,"849 Willow St, Atlanta, GA 30301" +292040,27in FHD Monitor,1,149.99,11/26/19 17:10,"882 1st St, Boston, MA 02215" +292041,USB-C Charging Cable,2,11.95,11/12/19 07:20,"357 1st St, Atlanta, GA 30301" +292042,AA Batteries (4-pack),1,3.84,11/07/19 16:33,"523 South St, Seattle, WA 98101" +292043,27in FHD Monitor,1,149.99,11/10/19 15:56,"674 Jefferson St, San Francisco, CA 94016" +292044,Flatscreen TV,1,300,11/06/19 20:11,"133 4th St, Atlanta, GA 30301" +292045,AA Batteries (4-pack),1,3.84,11/08/19 11:15,"33 Maple St, Dallas, TX 75001" +292046,Apple Airpods Headphones,1,150,11/30/19 15:24,"131 Madison St, Austin, TX 73301" +292047,Vareebadd Phone,1,400,11/06/19 15:54,"78 Willow St, Boston, MA 02215" +292048,ThinkPad Laptop,1,999.99,11/20/19 14:28,"227 Park St, Atlanta, GA 30301" +292049,USB-C Charging Cable,1,11.95,11/14/19 14:49,"966 14th St, Seattle, WA 98101" +292049,20in Monitor,1,109.99,11/14/19 14:49,"966 14th St, Seattle, WA 98101" +292050,Wired Headphones,1,11.99,11/22/19 01:48,"746 Hickory St, Dallas, TX 75001" +292051,AA Batteries (4-pack),1,3.84,11/19/19 08:33,"353 River St, Boston, MA 02215" +292052,ThinkPad Laptop,1,999.99,11/16/19 09:39,"149 5th St, Boston, MA 02215" +292053,Apple Airpods Headphones,1,150,11/14/19 10:43,"775 1st St, New York City, NY 10001" +292054,AA Batteries (4-pack),3,3.84,11/06/19 17:26,"986 Center St, San Francisco, CA 94016" +292055,AA Batteries (4-pack),1,3.84,11/10/19 16:23,"206 Jackson St, Los Angeles, CA 90001" +292056,Lightning Charging Cable,1,14.95,11/08/19 17:25,"65 Jackson St, Seattle, WA 98101" +292057,Flatscreen TV,1,300,11/18/19 14:29,"709 12th St, San Francisco, CA 94016" +292058,iPhone,1,700,11/15/19 23:11,"980 Madison St, New York City, NY 10001" +292059,AA Batteries (4-pack),1,3.84,11/19/19 21:40,"177 Chestnut St, Los Angeles, CA 90001" +292060,27in FHD Monitor,1,149.99,11/03/19 15:25,"792 2nd St, San Francisco, CA 94016" +292061,AAA Batteries (4-pack),2,2.99,11/13/19 13:18,"807 Adams St, Seattle, WA 98101" +292062,Apple Airpods Headphones,1,150,11/20/19 04:50,"743 Park St, New York City, NY 10001" +292063,Apple Airpods Headphones,1,150,11/16/19 21:45,"356 Church St, San Francisco, CA 94016" +292064,27in FHD Monitor,1,149.99,11/13/19 10:40,"7 11th St, San Francisco, CA 94016" +292065,Flatscreen TV,1,300,11/22/19 20:58,"322 11th St, Seattle, WA 98101" +292066,20in Monitor,1,109.99,11/25/19 12:48,"688 Cedar St, San Francisco, CA 94016" +292067,USB-C Charging Cable,1,11.95,11/07/19 19:32,"304 Highland St, Portland, OR 97035" +292068,Wired Headphones,1,11.99,11/09/19 21:04,"417 12th St, Los Angeles, CA 90001" +292069,iPhone,1,700,11/29/19 09:15,"388 River St, San Francisco, CA 94016" +292070,Lightning Charging Cable,1,14.95,11/21/19 14:37,"108 14th St, San Francisco, CA 94016" +292071,Wired Headphones,1,11.99,11/05/19 02:29,"431 Main St, Seattle, WA 98101" +292072,Bose SoundSport Headphones,1,99.99,11/03/19 21:35,"435 River St, Portland, OR 97035" +292073,AA Batteries (4-pack),4,3.84,11/15/19 11:17,"616 Hickory St, Los Angeles, CA 90001" +292074,Wired Headphones,1,11.99,11/19/19 14:58,"758 Cedar St, Dallas, TX 75001" +292075,Google Phone,1,600,11/09/19 09:35,"394 Jackson St, San Francisco, CA 94016" +292075,Bose SoundSport Headphones,1,99.99,11/09/19 09:35,"394 Jackson St, San Francisco, CA 94016" +292076,Flatscreen TV,1,300,11/21/19 19:36,"394 2nd St, Los Angeles, CA 90001" +292077,Lightning Charging Cable,1,14.95,11/01/19 14:15,"850 Jefferson St, San Francisco, CA 94016" +292078,Apple Airpods Headphones,1,150,11/26/19 08:38,"754 8th St, New York City, NY 10001" +,,,,, +292079,Flatscreen TV,1,300,11/04/19 15:58,"968 Lakeview St, Los Angeles, CA 90001" +292080,AA Batteries (4-pack),2,3.84,11/08/19 23:39,"458 Cherry St, Los Angeles, CA 90001" +292081,AAA Batteries (4-pack),2,2.99,11/13/19 06:27,"189 Meadow St, Dallas, TX 75001" +292082,Apple Airpods Headphones,1,150,11/28/19 10:44,"108 South St, San Francisco, CA 94016" +292083,iPhone,1,700,11/30/19 02:16,"243 1st St, Los Angeles, CA 90001" +292084,AA Batteries (4-pack),2,3.84,11/27/19 20:29,"16 Jackson St, San Francisco, CA 94016" +292085,Wired Headphones,1,11.99,11/12/19 14:05,"804 1st St, Dallas, TX 75001" +292086,Apple Airpods Headphones,1,150,11/19/19 16:33,"427 Chestnut St, Boston, MA 02215" +292087,Wired Headphones,1,11.99,11/01/19 19:17,"405 Sunset St, San Francisco, CA 94016" +292088,27in FHD Monitor,1,149.99,11/12/19 16:55,"252 Wilson St, San Francisco, CA 94016" +292089,Bose SoundSport Headphones,1,99.99,11/12/19 18:45,"430 Forest St, San Francisco, CA 94016" +292090,Wired Headphones,1,11.99,11/16/19 20:48,"575 Spruce St, San Francisco, CA 94016" +292091,Apple Airpods Headphones,1,150,11/13/19 19:16,"87 Hickory St, Los Angeles, CA 90001" +292092,AAA Batteries (4-pack),1,2.99,11/17/19 21:38,"654 Forest St, Portland, OR 97035" +292093,Lightning Charging Cable,1,14.95,11/13/19 00:37,"125 12th St, San Francisco, CA 94016" +292094,Vareebadd Phone,1,400,11/07/19 13:57,"27 Willow St, Dallas, TX 75001" +292095,AA Batteries (4-pack),1,3.84,11/16/19 14:29,"19 Lake St, San Francisco, CA 94016" +292096,Wired Headphones,1,11.99,11/12/19 00:25,"629 Center St, San Francisco, CA 94016" +292097,20in Monitor,1,109.99,11/29/19 12:49,"614 12th St, Los Angeles, CA 90001" +292098,Bose SoundSport Headphones,1,99.99,11/07/19 13:36,"734 Dogwood St, Los Angeles, CA 90001" +292099,AA Batteries (4-pack),1,3.84,11/27/19 07:55,"116 10th St, San Francisco, CA 94016" +292100,Bose SoundSport Headphones,1,99.99,11/08/19 22:36,"140 Hill St, Portland, OR 97035" +292101,27in FHD Monitor,1,149.99,11/27/19 22:17,"125 Adams St, Boston, MA 02215" +292102,34in Ultrawide Monitor,1,379.99,11/12/19 17:23,"23 Highland St, Dallas, TX 75001" +292103,AA Batteries (4-pack),1,3.84,11/26/19 15:31,"561 South St, Boston, MA 02215" +292104,Wired Headphones,1,11.99,11/17/19 15:19,"283 2nd St, San Francisco, CA 94016" +292105,AAA Batteries (4-pack),3,2.99,11/26/19 21:39,"593 Park St, New York City, NY 10001" +292105,34in Ultrawide Monitor,1,379.99,11/26/19 21:39,"593 Park St, New York City, NY 10001" +292106,AAA Batteries (4-pack),2,2.99,11/19/19 23:53,"506 West St, Los Angeles, CA 90001" +292107,AAA Batteries (4-pack),1,2.99,11/23/19 13:31,"995 Forest St, San Francisco, CA 94016" +292108,Wired Headphones,1,11.99,11/17/19 08:14,"275 4th St, Austin, TX 73301" +292109,34in Ultrawide Monitor,1,379.99,11/15/19 13:35,"971 12th St, Dallas, TX 75001" +292110,27in 4K Gaming Monitor,1,389.99,11/02/19 11:16,"419 10th St, Dallas, TX 75001" +292111,USB-C Charging Cable,1,11.95,11/29/19 22:22,"638 Forest St, Boston, MA 02215" +292112,34in Ultrawide Monitor,1,379.99,11/11/19 05:03,"982 Highland St, Austin, TX 73301" +292113,AAA Batteries (4-pack),3,2.99,11/16/19 11:06,"464 River St, San Francisco, CA 94016" +292114,Lightning Charging Cable,1,14.95,11/14/19 19:09,"311 4th St, Seattle, WA 98101" +292115,27in 4K Gaming Monitor,1,389.99,11/14/19 14:50,"785 Ridge St, Seattle, WA 98101" +292116,Wired Headphones,1,11.99,11/08/19 18:46,"649 Park St, San Francisco, CA 94016" +292117,Bose SoundSport Headphones,1,99.99,11/25/19 08:20,"671 Hickory St, San Francisco, CA 94016" +292118,Lightning Charging Cable,1,14.95,11/21/19 19:36,"35 Park St, Los Angeles, CA 90001" +292119,USB-C Charging Cable,1,11.95,11/02/19 22:55,"630 14th St, Los Angeles, CA 90001" +292120,Bose SoundSport Headphones,1,99.99,11/27/19 19:11,"360 Jefferson St, San Francisco, CA 94016" +292121,AA Batteries (4-pack),1,3.84,11/08/19 00:45,"595 Walnut St, Dallas, TX 75001" +292122,USB-C Charging Cable,1,11.95,11/12/19 02:09,"33 Highland St, Los Angeles, CA 90001" +292123,Wired Headphones,1,11.99,11/16/19 14:09,"248 Adams St, Los Angeles, CA 90001" +292124,Apple Airpods Headphones,1,150,11/14/19 12:17,"119 10th St, Portland, OR 97035" +292125,USB-C Charging Cable,1,11.95,11/06/19 10:37,"472 South St, Boston, MA 02215" +292126,Apple Airpods Headphones,1,150,11/03/19 13:27,"59 Highland St, Austin, TX 73301" +292127,Flatscreen TV,1,300,11/18/19 10:29,"362 Spruce St, Dallas, TX 75001" +292128,AAA Batteries (4-pack),1,2.99,11/28/19 15:45,"892 Sunset St, Dallas, TX 75001" +292129,Lightning Charging Cable,1,14.95,11/26/19 19:40,"296 10th St, San Francisco, CA 94016" +292130,Wired Headphones,1,11.99,11/01/19 19:46,"662 River St, New York City, NY 10001" +292131,Wired Headphones,1,11.99,11/19/19 12:45,"600 North St, Portland, OR 97035" +292132,AAA Batteries (4-pack),2,2.99,11/03/19 18:52,"325 10th St, San Francisco, CA 94016" +292133,Apple Airpods Headphones,1,150,11/07/19 15:54,"850 Adams St, Los Angeles, CA 90001" +292134,Lightning Charging Cable,1,14.95,11/10/19 08:01,"359 Wilson St, Los Angeles, CA 90001" +292135,Apple Airpods Headphones,1,150,11/13/19 15:24,"728 12th St, Los Angeles, CA 90001" +292135,Bose SoundSport Headphones,1,99.99,11/13/19 15:24,"728 12th St, Los Angeles, CA 90001" +292136,AA Batteries (4-pack),2,3.84,11/24/19 08:42,"6 Cedar St, Los Angeles, CA 90001" +292137,Lightning Charging Cable,1,14.95,11/21/19 16:52,"70 8th St, Atlanta, GA 30301" +292138,Lightning Charging Cable,1,14.95,11/18/19 14:36,"820 4th St, Dallas, TX 75001" +292139,AA Batteries (4-pack),1,3.84,11/10/19 22:35,"152 12th St, Dallas, TX 75001" +292140,USB-C Charging Cable,1,11.95,11/29/19 08:06,"274 Lincoln St, Seattle, WA 98101" +292141,AA Batteries (4-pack),1,3.84,11/30/19 23:11,"744 Dogwood St, Dallas, TX 75001" +292142,Lightning Charging Cable,2,14.95,11/20/19 11:35,"359 Jackson St, San Francisco, CA 94016" +292143,Lightning Charging Cable,1,14.95,11/20/19 17:41,"69 Ridge St, Atlanta, GA 30301" +292144,Flatscreen TV,1,300,11/13/19 13:42,"922 10th St, Boston, MA 02215" +292145,Lightning Charging Cable,2,14.95,11/07/19 09:24,"34 8th St, Portland, OR 97035" +292146,AA Batteries (4-pack),1,3.84,11/24/19 23:09,"879 11th St, Boston, MA 02215" +292147,AA Batteries (4-pack),1,3.84,11/11/19 14:00,"898 Main St, San Francisco, CA 94016" +292148,Flatscreen TV,1,300,11/18/19 11:15,"712 Wilson St, San Francisco, CA 94016" +292149,AAA Batteries (4-pack),2,2.99,11/07/19 22:09,"818 Adams St, Dallas, TX 75001" +292150,Lightning Charging Cable,1,14.95,11/25/19 17:49,"376 9th St, San Francisco, CA 94016" +292151,AA Batteries (4-pack),1,3.84,11/16/19 20:19,"686 Hickory St, San Francisco, CA 94016" +292151,AAA Batteries (4-pack),1,2.99,11/16/19 20:19,"686 Hickory St, San Francisco, CA 94016" +292152,AA Batteries (4-pack),2,3.84,11/26/19 18:26,"831 Johnson St, Los Angeles, CA 90001" +292153,34in Ultrawide Monitor,1,379.99,11/25/19 10:33,"44 11th St, Dallas, TX 75001" +292154,27in FHD Monitor,1,149.99,11/12/19 15:15,"390 Adams St, San Francisco, CA 94016" +292155,ThinkPad Laptop,1,999.99,11/30/19 14:26,"841 14th St, Los Angeles, CA 90001" +292156,Apple Airpods Headphones,1,150,11/18/19 08:27,"846 Hickory St, Dallas, TX 75001" +292157,USB-C Charging Cable,1,11.95,11/17/19 13:23,"43 9th St, San Francisco, CA 94016" +292158,Lightning Charging Cable,1,14.95,11/07/19 19:46,"421 Chestnut St, San Francisco, CA 94016" +292159,Lightning Charging Cable,1,14.95,11/23/19 14:04,"192 Cherry St, San Francisco, CA 94016" +292160,Lightning Charging Cable,1,14.95,11/15/19 00:24,"482 4th St, Los Angeles, CA 90001" +292161,USB-C Charging Cable,1,11.95,11/14/19 08:17,"638 13th St, Boston, MA 02215" +292162,Lightning Charging Cable,1,14.95,11/30/19 19:41,"790 Washington St, Seattle, WA 98101" +292163,Lightning Charging Cable,1,14.95,11/23/19 19:36,"911 Ridge St, Dallas, TX 75001" +292164,34in Ultrawide Monitor,1,379.99,11/02/19 13:12,"80 Sunset St, Boston, MA 02215" +292165,Flatscreen TV,1,300,11/18/19 09:02,"968 Center St, Los Angeles, CA 90001" +292166,Wired Headphones,1,11.99,11/03/19 14:01,"489 10th St, Atlanta, GA 30301" +292167,Bose SoundSport Headphones,1,99.99,11/04/19 09:33,"931 7th St, Los Angeles, CA 90001" +292168,USB-C Charging Cable,1,11.95,11/11/19 09:43,"184 2nd St, Boston, MA 02215" +292169,iPhone,1,700,11/13/19 07:50,"211 Cedar St, Austin, TX 73301" +292170,Google Phone,1,600,11/08/19 14:36,"8 Jefferson St, Boston, MA 02215" +292171,Apple Airpods Headphones,1,150,11/04/19 12:39,"252 West St, Los Angeles, CA 90001" +292172,Lightning Charging Cable,1,14.95,11/23/19 08:18,"543 2nd St, Boston, MA 02215" +292173,Wired Headphones,1,11.99,11/13/19 17:47,"410 Wilson St, Los Angeles, CA 90001" +292173,LG Washing Machine,1,600.0,11/13/19 17:47,"410 Wilson St, Los Angeles, CA 90001" +292174,Lightning Charging Cable,1,14.95,11/07/19 14:20,"254 Main St, San Francisco, CA 94016" +292175,27in 4K Gaming Monitor,1,389.99,11/29/19 21:52,"237 Maple St, Portland, OR 97035" +292176,Wired Headphones,3,11.99,11/18/19 11:42,"180 Adams St, Seattle, WA 98101" +292177,USB-C Charging Cable,1,11.95,11/10/19 12:24,"796 Dogwood St, Austin, TX 73301" +292178,Lightning Charging Cable,1,14.95,11/23/19 12:15,"422 Church St, Seattle, WA 98101" +292179,USB-C Charging Cable,1,11.95,11/18/19 18:39,"930 Walnut St, Seattle, WA 98101" +292180,34in Ultrawide Monitor,1,379.99,11/07/19 23:10,"639 12th St, Boston, MA 02215" +292181,Lightning Charging Cable,1,14.95,11/17/19 19:39,"230 13th St, New York City, NY 10001" +292182,Bose SoundSport Headphones,1,99.99,11/30/19 20:51,"336 Walnut St, San Francisco, CA 94016" +292183,27in FHD Monitor,1,149.99,11/09/19 02:28,"848 Adams St, Los Angeles, CA 90001" +292184,USB-C Charging Cable,1,11.95,11/22/19 16:59,"259 Hickory St, New York City, NY 10001" +292185,Apple Airpods Headphones,1,150,11/20/19 18:33,"319 Lincoln St, Los Angeles, CA 90001" +292186,Apple Airpods Headphones,1,150,11/15/19 10:26,"925 Chestnut St, Austin, TX 73301" +292187,Flatscreen TV,1,300,11/27/19 17:36,"906 Jackson St, Portland, OR 97035" +292188,Wired Headphones,1,11.99,11/12/19 22:35,"262 Lake St, Dallas, TX 75001" +292189,Flatscreen TV,1,300,11/24/19 00:26,"975 Chestnut St, Portland, OR 97035" +292190,AAA Batteries (4-pack),3,2.99,11/23/19 10:06,"759 Meadow St, Los Angeles, CA 90001" +292191,Macbook Pro Laptop,1,1700,11/18/19 13:01,"316 7th St, New York City, NY 10001" +292192,AAA Batteries (4-pack),1,2.99,11/28/19 11:33,"599 Adams St, Los Angeles, CA 90001" +292193,Bose SoundSport Headphones,1,99.99,11/24/19 15:41,"761 Hickory St, Atlanta, GA 30301" +292194,Google Phone,1,600,11/22/19 08:01,"575 Walnut St, San Francisco, CA 94016" +292194,USB-C Charging Cable,1,11.95,11/22/19 08:01,"575 Walnut St, San Francisco, CA 94016" +292195,Wired Headphones,1,11.99,11/09/19 00:18,"894 Hickory St, Seattle, WA 98101" +292196,Macbook Pro Laptop,1,1700,11/21/19 15:55,"67 Church St, New York City, NY 10001" +292197,AAA Batteries (4-pack),1,2.99,11/17/19 10:42,"507 North St, San Francisco, CA 94016" +292197,Lightning Charging Cable,1,14.95,11/17/19 10:42,"507 North St, San Francisco, CA 94016" +292198,AA Batteries (4-pack),1,3.84,11/12/19 10:26,"948 Main St, Portland, OR 97035" +292199,34in Ultrawide Monitor,1,379.99,11/01/19 13:15,"634 Pine St, Portland, ME 04101" +292200,Bose SoundSport Headphones,1,99.99,11/18/19 08:40,"137 Cedar St, Atlanta, GA 30301" +292201,AAA Batteries (4-pack),1,2.99,11/13/19 14:25,"63 1st St, San Francisco, CA 94016" +292201,Wired Headphones,1,11.99,11/13/19 14:25,"63 1st St, San Francisco, CA 94016" +292202,AA Batteries (4-pack),1,3.84,11/14/19 11:28,"661 Adams St, Boston, MA 02215" +292203,Lightning Charging Cable,1,14.95,11/13/19 12:57,"451 Meadow St, Boston, MA 02215" +292204,AA Batteries (4-pack),1,3.84,11/30/19 13:42,"752 Walnut St, Boston, MA 02215" +292205,USB-C Charging Cable,1,11.95,11/30/19 10:21,"709 Sunset St, Seattle, WA 98101" +292206,Bose SoundSport Headphones,1,99.99,11/27/19 17:26,"127 7th St, Los Angeles, CA 90001" +292207,Wired Headphones,1,11.99,11/05/19 14:35,"160 Johnson St, Austin, TX 73301" +292208,27in 4K Gaming Monitor,1,389.99,11/06/19 09:12,"722 West St, Boston, MA 02215" +292209,Lightning Charging Cable,1,14.95,11/09/19 08:46,"435 Main St, New York City, NY 10001" +292210,AA Batteries (4-pack),1,3.84,11/21/19 08:25,"158 Walnut St, Boston, MA 02215" +292211,27in 4K Gaming Monitor,1,389.99,11/12/19 18:18,"562 12th St, New York City, NY 10001" +292212,AAA Batteries (4-pack),1,2.99,11/25/19 16:17,"964 1st St, Austin, TX 73301" +292213,Wired Headphones,1,11.99,11/11/19 18:35,"784 Lake St, Seattle, WA 98101" +292214,iPhone,1,700,11/14/19 23:17,"954 Park St, Portland, OR 97035" +292214,Lightning Charging Cable,1,14.95,11/14/19 23:17,"954 Park St, Portland, OR 97035" +292215,AAA Batteries (4-pack),4,2.99,11/24/19 10:09,"762 8th St, Austin, TX 73301" +292216,AA Batteries (4-pack),1,3.84,11/23/19 22:52,"341 Chestnut St, New York City, NY 10001" +292217,27in 4K Gaming Monitor,1,389.99,11/23/19 20:25,"550 Pine St, Dallas, TX 75001" +292218,Lightning Charging Cable,1,14.95,11/28/19 12:46,"840 North St, Seattle, WA 98101" +292219,ThinkPad Laptop,1,999.99,11/03/19 23:39,"551 North St, San Francisco, CA 94016" +292220,Lightning Charging Cable,1,14.95,11/29/19 21:20,"405 Walnut St, San Francisco, CA 94016" +292221,AA Batteries (4-pack),1,3.84,11/02/19 05:24,"768 Lakeview St, San Francisco, CA 94016" +292222,USB-C Charging Cable,1,11.95,11/13/19 14:18,"810 14th St, San Francisco, CA 94016" +292223,AA Batteries (4-pack),4,3.84,11/15/19 18:38,"877 North St, Portland, OR 97035" +292224,Bose SoundSport Headphones,1,99.99,11/13/19 09:14,"407 Jefferson St, Portland, ME 04101" +292225,Wired Headphones,1,11.99,11/11/19 10:41,"60 Willow St, Los Angeles, CA 90001" +292226,Bose SoundSport Headphones,1,99.99,11/06/19 21:25,"509 Hill St, Portland, OR 97035" +292227,iPhone,1,700,11/07/19 12:09,"244 Meadow St, Boston, MA 02215" +292228,AA Batteries (4-pack),2,3.84,11/15/19 23:26,"331 Cedar St, Los Angeles, CA 90001" +292229,Macbook Pro Laptop,1,1700,11/11/19 21:05,"534 West St, Los Angeles, CA 90001" +292230,USB-C Charging Cable,1,11.95,11/30/19 10:11,"396 Jackson St, San Francisco, CA 94016" +292231,AAA Batteries (4-pack),1,2.99,11/24/19 20:18,"525 Walnut St, San Francisco, CA 94016" +292232,27in FHD Monitor,1,149.99,11/14/19 09:35,"210 Elm St, Seattle, WA 98101" +292233,AA Batteries (4-pack),1,3.84,11/18/19 11:23,"886 4th St, Atlanta, GA 30301" +292234,Macbook Pro Laptop,1,1700,11/03/19 21:50,"917 6th St, Portland, ME 04101" +292235,20in Monitor,1,109.99,11/12/19 20:42,"506 13th St, Los Angeles, CA 90001" +292236,Lightning Charging Cable,1,14.95,11/25/19 12:23,"219 Cedar St, Los Angeles, CA 90001" +292237,34in Ultrawide Monitor,1,379.99,11/20/19 05:29,"239 Walnut St, Los Angeles, CA 90001" +292238,Wired Headphones,1,11.99,11/09/19 02:10,"692 Dogwood St, New York City, NY 10001" +292239,AAA Batteries (4-pack),1,2.99,11/21/19 12:49,"102 Chestnut St, Los Angeles, CA 90001" +292240,LG Dryer,1,600.0,11/13/19 09:16,"594 Hickory St, Seattle, WA 98101" +292241,Lightning Charging Cable,1,14.95,11/23/19 13:10,"165 Cherry St, San Francisco, CA 94016" +292242,AAA Batteries (4-pack),1,2.99,11/16/19 20:37,"924 10th St, San Francisco, CA 94016" +292243,AAA Batteries (4-pack),2,2.99,11/27/19 17:29,"491 River St, Dallas, TX 75001" +292244,Lightning Charging Cable,1,14.95,11/01/19 20:29,"595 Highland St, Austin, TX 73301" +292245,AAA Batteries (4-pack),1,2.99,11/29/19 09:50,"851 River St, San Francisco, CA 94016" +292246,USB-C Charging Cable,1,11.95,11/28/19 19:04,"724 Jackson St, Austin, TX 73301" +292247,Flatscreen TV,1,300,11/13/19 10:52,"536 Forest St, New York City, NY 10001" +292248,27in 4K Gaming Monitor,1,389.99,11/02/19 22:22,"714 Main St, San Francisco, CA 94016" +292249,Apple Airpods Headphones,1,150,11/08/19 20:56,"130 14th St, New York City, NY 10001" +292250,Apple Airpods Headphones,1,150,11/09/19 17:41,"546 4th St, Atlanta, GA 30301" +292251,Google Phone,1,600,11/06/19 13:33,"889 10th St, Boston, MA 02215" +292251,USB-C Charging Cable,1,11.95,11/06/19 13:33,"889 10th St, Boston, MA 02215" +292251,Wired Headphones,1,11.99,11/06/19 13:33,"889 10th St, Boston, MA 02215" +292252,USB-C Charging Cable,1,11.95,11/08/19 00:47,"830 Ridge St, New York City, NY 10001" +292253,Bose SoundSport Headphones,1,99.99,11/19/19 21:03,"470 Maple St, Los Angeles, CA 90001" +292254,Lightning Charging Cable,1,14.95,11/25/19 11:38,"389 9th St, Boston, MA 02215" +292255,AAA Batteries (4-pack),1,2.99,11/25/19 17:37,"309 Cedar St, San Francisco, CA 94016" +292256,Apple Airpods Headphones,1,150,11/23/19 21:07,"690 6th St, Seattle, WA 98101" +292256,Macbook Pro Laptop,1,1700,11/23/19 21:07,"690 6th St, Seattle, WA 98101" +292257,AAA Batteries (4-pack),3,2.99,11/15/19 10:12,"66 Chestnut St, Los Angeles, CA 90001" +292258,Wired Headphones,2,11.99,11/03/19 11:34,"818 5th St, Portland, OR 97035" +292259,Flatscreen TV,1,300,11/13/19 11:31,"841 River St, Portland, OR 97035" +292260,AA Batteries (4-pack),1,3.84,11/08/19 17:13,"766 Johnson St, Dallas, TX 75001" +292261,Wired Headphones,1,11.99,11/12/19 15:47,"66 Center St, San Francisco, CA 94016" +292262,AAA Batteries (4-pack),1,2.99,11/30/19 20:41,"529 9th St, Boston, MA 02215" +292263,USB-C Charging Cable,1,11.95,11/14/19 06:59,"995 Elm St, Dallas, TX 75001" +292264,34in Ultrawide Monitor,1,379.99,11/27/19 22:21,"363 Jefferson St, Portland, ME 04101" +292265,Bose SoundSport Headphones,1,99.99,11/08/19 11:36,"717 Adams St, Seattle, WA 98101" +292266,AAA Batteries (4-pack),2,2.99,11/29/19 19:26,"229 Chestnut St, Boston, MA 02215" +292267,ThinkPad Laptop,1,999.99,11/22/19 18:13,"335 8th St, Seattle, WA 98101" +292268,Apple Airpods Headphones,1,150,11/18/19 21:17,"730 Sunset St, Los Angeles, CA 90001" +292269,AA Batteries (4-pack),1,3.84,11/04/19 09:06,"610 12th St, Boston, MA 02215" +292270,27in 4K Gaming Monitor,1,389.99,11/04/19 00:09,"470 Johnson St, New York City, NY 10001" +292271,USB-C Charging Cable,1,11.95,11/09/19 10:18,"275 9th St, New York City, NY 10001" +,,,,, +292272,Macbook Pro Laptop,1,1700,11/01/19 13:36,"662 Spruce St, San Francisco, CA 94016" +292273,iPhone,1,700,11/14/19 13:47,"571 Ridge St, Atlanta, GA 30301" +292274,USB-C Charging Cable,1,11.95,11/10/19 12:28,"198 9th St, New York City, NY 10001" +292275,USB-C Charging Cable,2,11.95,11/03/19 23:40,"115 Adams St, New York City, NY 10001" +292276,USB-C Charging Cable,1,11.95,11/13/19 00:55,"219 2nd St, Portland, OR 97035" +292277,LG Dryer,1,600.0,11/22/19 19:46,"773 1st St, New York City, NY 10001" +292278,Lightning Charging Cable,1,14.95,11/27/19 22:57,"265 Highland St, Los Angeles, CA 90001" +292279,Apple Airpods Headphones,1,150,11/12/19 21:01,"669 13th St, Portland, OR 97035" +292280,iPhone,1,700,11/26/19 19:31,"382 9th St, Seattle, WA 98101" +292281,Apple Airpods Headphones,1,150,11/28/19 03:36,"662 Forest St, Los Angeles, CA 90001" +292282,Lightning Charging Cable,1,14.95,11/06/19 14:26,"431 7th St, New York City, NY 10001" +292283,20in Monitor,1,109.99,11/19/19 22:00,"749 Park St, San Francisco, CA 94016" +292284,27in 4K Gaming Monitor,1,389.99,11/20/19 13:30,"841 Ridge St, New York City, NY 10001" +292285,Wired Headphones,1,11.99,11/11/19 17:56,"818 8th St, Seattle, WA 98101" +292286,Wired Headphones,2,11.99,11/06/19 13:35,"677 Maple St, Atlanta, GA 30301" +292287,34in Ultrawide Monitor,1,379.99,11/12/19 20:03,"643 South St, New York City, NY 10001" +292288,Lightning Charging Cable,1,14.95,11/23/19 20:00,"565 5th St, Dallas, TX 75001" +292289,AA Batteries (4-pack),1,3.84,11/10/19 21:24,"969 1st St, Dallas, TX 75001" +292290,Wired Headphones,1,11.99,11/16/19 18:34,"332 2nd St, Los Angeles, CA 90001" +292291,Lightning Charging Cable,1,14.95,11/28/19 21:19,"594 Dogwood St, Seattle, WA 98101" +292292,34in Ultrawide Monitor,1,379.99,11/29/19 02:02,"169 13th St, New York City, NY 10001" +292293,Wired Headphones,1,11.99,11/08/19 22:16,"785 Cherry St, Seattle, WA 98101" +292294,Bose SoundSport Headphones,1,99.99,11/24/19 04:52,"146 Main St, Portland, ME 04101" +292295,Lightning Charging Cable,1,14.95,11/07/19 02:08,"81 Johnson St, Seattle, WA 98101" +292296,Wired Headphones,1,11.99,11/11/19 19:27,"688 Madison St, San Francisco, CA 94016" +292296,27in 4K Gaming Monitor,1,389.99,11/11/19 19:27,"688 Madison St, San Francisco, CA 94016" +292297,Bose SoundSport Headphones,1,99.99,11/16/19 19:59,"805 Lincoln St, Los Angeles, CA 90001" +292298,Apple Airpods Headphones,1,150,11/22/19 21:55,"731 Maple St, San Francisco, CA 94016" +292299,USB-C Charging Cable,1,11.95,11/18/19 07:23,"522 11th St, New York City, NY 10001" +292300,Lightning Charging Cable,2,14.95,11/24/19 18:38,"553 Hickory St, Los Angeles, CA 90001" +292301,Macbook Pro Laptop,1,1700,11/14/19 10:55,"84 Meadow St, Dallas, TX 75001" +292302,AAA Batteries (4-pack),2,2.99,11/11/19 19:42,"430 13th St, Boston, MA 02215" +292303,Lightning Charging Cable,1,14.95,11/03/19 11:46,"755 Highland St, Austin, TX 73301" +292304,AA Batteries (4-pack),1,3.84,11/15/19 10:05,"691 South St, Dallas, TX 75001" +292305,Lightning Charging Cable,1,14.95,11/07/19 17:49,"421 Highland St, Seattle, WA 98101" +292306,27in 4K Gaming Monitor,1,389.99,11/09/19 21:53,"423 10th St, Austin, TX 73301" +292307,AAA Batteries (4-pack),1,2.99,11/01/19 23:41,"635 Cherry St, Boston, MA 02215" +292307,Lightning Charging Cable,1,14.95,11/01/19 23:41,"635 Cherry St, Boston, MA 02215" +292308,AAA Batteries (4-pack),1,2.99,11/25/19 14:32,"797 6th St, Seattle, WA 98101" +292309,ThinkPad Laptop,1,999.99,11/11/19 10:03,"251 Ridge St, Dallas, TX 75001" +292310,AA Batteries (4-pack),1,3.84,11/29/19 14:42,"66 10th St, Portland, OR 97035" +292311,Lightning Charging Cable,1,14.95,11/26/19 06:01,"894 Walnut St, Los Angeles, CA 90001" +292311,Flatscreen TV,1,300,11/26/19 06:01,"894 Walnut St, Los Angeles, CA 90001" +292312,Apple Airpods Headphones,1,150,11/23/19 03:35,"962 11th St, Portland, OR 97035" +292313,Macbook Pro Laptop,1,1700,11/12/19 15:38,"378 Washington St, Austin, TX 73301" +292314,Apple Airpods Headphones,1,150,11/19/19 07:10,"654 Johnson St, Atlanta, GA 30301" +292315,LG Dryer,1,600.0,11/21/19 19:46,"911 Lake St, San Francisco, CA 94016" +292316,USB-C Charging Cable,1,11.95,11/24/19 15:28,"189 Forest St, Los Angeles, CA 90001" +292317,Wired Headphones,1,11.99,11/30/19 17:29,"183 Chestnut St, Boston, MA 02215" +292318,USB-C Charging Cable,1,11.95,11/08/19 19:08,"723 Jackson St, San Francisco, CA 94016" +292319,Apple Airpods Headphones,1,150,11/27/19 09:01,"134 South St, Boston, MA 02215" +292319,LG Dryer,1,600.0,11/27/19 09:01,"134 South St, Boston, MA 02215" +292320,Bose SoundSport Headphones,1,99.99,11/09/19 06:33,"390 Maple St, Seattle, WA 98101" +292321,Vareebadd Phone,1,400,11/19/19 11:54,"900 South St, Los Angeles, CA 90001" +292322,USB-C Charging Cable,1,11.95,11/04/19 16:27,"310 13th St, San Francisco, CA 94016" +292323,Lightning Charging Cable,2,14.95,11/09/19 06:16,"437 6th St, New York City, NY 10001" +292324,Lightning Charging Cable,1,14.95,11/22/19 14:28,"591 6th St, Los Angeles, CA 90001" +292325,Wired Headphones,1,11.99,11/27/19 09:51,"311 Elm St, Seattle, WA 98101" +292326,AAA Batteries (4-pack),1,2.99,11/25/19 20:14,"159 West St, San Francisco, CA 94016" +292327,Lightning Charging Cable,1,14.95,11/07/19 14:36,"904 Hickory St, San Francisco, CA 94016" +292328,AA Batteries (4-pack),3,3.84,11/07/19 15:41,"648 Adams St, San Francisco, CA 94016" +292329,Lightning Charging Cable,1,14.95,11/18/19 18:33,"400 4th St, New York City, NY 10001" +292330,AAA Batteries (4-pack),1,2.99,11/15/19 07:07,"891 Jefferson St, Seattle, WA 98101" +292331,Lightning Charging Cable,1,14.95,11/17/19 17:35,"16 9th St, San Francisco, CA 94016" +292332,Vareebadd Phone,1,400,11/22/19 08:56,"505 9th St, Dallas, TX 75001" +292332,USB-C Charging Cable,1,11.95,11/22/19 08:56,"505 9th St, Dallas, TX 75001" +292333,AAA Batteries (4-pack),1,2.99,11/03/19 12:27,"766 Adams St, San Francisco, CA 94016" +292334,27in FHD Monitor,1,149.99,11/25/19 01:23,"590 7th St, Portland, OR 97035" +292335,34in Ultrawide Monitor,1,379.99,11/07/19 12:48,"918 13th St, Portland, ME 04101" +292336,AA Batteries (4-pack),1,3.84,11/07/19 10:56,"485 Cherry St, Seattle, WA 98101" +292337,AA Batteries (4-pack),2,3.84,11/09/19 19:11,"998 Willow St, Boston, MA 02215" +292338,27in FHD Monitor,1,149.99,11/14/19 10:20,"277 Forest St, New York City, NY 10001" +292339,Macbook Pro Laptop,1,1700,11/21/19 15:21,"443 11th St, San Francisco, CA 94016" +292340,Bose SoundSport Headphones,1,99.99,11/13/19 11:13,"846 Lakeview St, New York City, NY 10001" +292341,USB-C Charging Cable,1,11.95,11/08/19 16:44,"334 4th St, San Francisco, CA 94016" +292342,AAA Batteries (4-pack),1,2.99,11/27/19 13:14,"302 Hill St, San Francisco, CA 94016" +292342,Bose SoundSport Headphones,1,99.99,11/27/19 13:14,"302 Hill St, San Francisco, CA 94016" +292343,Macbook Pro Laptop,1,1700,11/17/19 10:03,"640 11th St, San Francisco, CA 94016" +292344,AA Batteries (4-pack),1,3.84,11/15/19 00:26,"416 Ridge St, San Francisco, CA 94016" +292345,AAA Batteries (4-pack),2,2.99,11/28/19 23:50,"910 North St, San Francisco, CA 94016" +292346,27in 4K Gaming Monitor,1,389.99,11/30/19 11:41,"869 Church St, New York City, NY 10001" +292347,20in Monitor,3,109.99,11/29/19 11:20,"210 Forest St, Los Angeles, CA 90001" +292348,AAA Batteries (4-pack),2,2.99,11/16/19 14:31,"640 Sunset St, New York City, NY 10001" +292349,USB-C Charging Cable,1,11.95,11/11/19 19:50,"880 Madison St, Boston, MA 02215" +292350,Google Phone,1,600,11/30/19 13:06,"487 Lincoln St, New York City, NY 10001" +292351,AA Batteries (4-pack),1,3.84,11/28/19 13:28,"403 West St, San Francisco, CA 94016" +292352,AA Batteries (4-pack),1,3.84,11/11/19 14:46,"377 1st St, Boston, MA 02215" +292353,Apple Airpods Headphones,1,150,11/26/19 18:39,"398 Wilson St, Los Angeles, CA 90001" +292354,AA Batteries (4-pack),1,3.84,11/09/19 10:26,"602 8th St, Los Angeles, CA 90001" +292355,Bose SoundSport Headphones,1,99.99,11/23/19 09:24,"795 Highland St, New York City, NY 10001" +292356,Bose SoundSport Headphones,1,99.99,11/25/19 18:44,"706 13th St, San Francisco, CA 94016" +292357,Wired Headphones,1,11.99,11/30/19 20:54,"806 Jackson St, San Francisco, CA 94016" +292358,Google Phone,1,600,11/29/19 14:12,"487 7th St, Dallas, TX 75001" +292359,USB-C Charging Cable,1,11.95,11/27/19 11:15,"682 Center St, Dallas, TX 75001" +292360,Lightning Charging Cable,1,14.95,11/11/19 15:15,"602 Madison St, Los Angeles, CA 90001" +292361,iPhone,1,700,11/22/19 18:55,"226 9th St, Los Angeles, CA 90001" +292362,Wired Headphones,1,11.99,11/27/19 18:16,"100 10th St, Austin, TX 73301" +292363,Apple Airpods Headphones,1,150,11/07/19 10:23,"878 Jackson St, San Francisco, CA 94016" +292364,Apple Airpods Headphones,1,150,11/14/19 13:15,"401 Adams St, San Francisco, CA 94016" +292365,AA Batteries (4-pack),1,3.84,11/18/19 03:10,"78 Spruce St, New York City, NY 10001" +292366,Lightning Charging Cable,1,14.95,11/26/19 13:22,"100 Cedar St, Los Angeles, CA 90001" +292367,AAA Batteries (4-pack),1,2.99,11/25/19 23:27,"570 7th St, San Francisco, CA 94016" +292368,AA Batteries (4-pack),1,3.84,11/09/19 18:47,"283 Lincoln St, Austin, TX 73301" +292369,AA Batteries (4-pack),1,3.84,11/25/19 06:39,"102 South St, Boston, MA 02215" +292370,27in FHD Monitor,1,149.99,11/27/19 17:08,"842 12th St, Boston, MA 02215" +292371,USB-C Charging Cable,1,11.95,11/23/19 22:18,"884 Wilson St, Seattle, WA 98101" +292372,USB-C Charging Cable,1,11.95,11/05/19 22:38,"224 6th St, San Francisco, CA 94016" +292373,Lightning Charging Cable,1,14.95,11/08/19 11:14,"389 Walnut St, Boston, MA 02215" +292374,Wired Headphones,1,11.99,11/05/19 15:34,"775 Lake St, Boston, MA 02215" +292375,Apple Airpods Headphones,1,150,11/07/19 12:57,"974 12th St, Boston, MA 02215" +292376,AA Batteries (4-pack),1,3.84,11/08/19 16:26,"895 6th St, New York City, NY 10001" +292377,Wired Headphones,1,11.99,11/07/19 19:26,"184 Center St, Boston, MA 02215" +292378,Bose SoundSport Headphones,1,99.99,11/04/19 07:16,"972 1st St, Austin, TX 73301" +292379,AAA Batteries (4-pack),2,2.99,11/03/19 21:40,"596 Sunset St, San Francisco, CA 94016" +292380,USB-C Charging Cable,1,11.95,11/17/19 07:11,"742 Wilson St, Los Angeles, CA 90001" +292381,Apple Airpods Headphones,1,150,11/22/19 08:41,"70 9th St, Los Angeles, CA 90001" +292382,iPhone,1,700,11/18/19 16:46,"232 11th St, San Francisco, CA 94016" +292382,Apple Airpods Headphones,1,150,11/18/19 16:46,"232 11th St, San Francisco, CA 94016" +292383,27in FHD Monitor,1,149.99,11/13/19 12:22,"951 Walnut St, Atlanta, GA 30301" +292384,Lightning Charging Cable,1,14.95,11/04/19 09:14,"877 Washington St, Austin, TX 73301" +292385,Bose SoundSport Headphones,1,99.99,11/03/19 12:34,"243 Park St, Los Angeles, CA 90001" +292386,AA Batteries (4-pack),1,3.84,11/14/19 17:47,"98 Jefferson St, Portland, ME 04101" +292387,20in Monitor,1,109.99,11/01/19 06:35,"902 North St, Los Angeles, CA 90001" +292388,AAA Batteries (4-pack),1,2.99,11/05/19 12:53,"396 Forest St, Los Angeles, CA 90001" +292389,USB-C Charging Cable,1,11.95,11/19/19 08:10,"60 9th St, Los Angeles, CA 90001" +292390,Wired Headphones,1,11.99,11/17/19 14:28,"184 10th St, Los Angeles, CA 90001" +292391,Bose SoundSport Headphones,1,99.99,11/14/19 00:46,"601 Church St, Dallas, TX 75001" +292392,Bose SoundSport Headphones,1,99.99,11/05/19 20:44,"772 Lincoln St, Portland, OR 97035" +292393,Flatscreen TV,1,300,11/29/19 10:50,"463 Meadow St, Dallas, TX 75001" +292394,AA Batteries (4-pack),1,3.84,11/29/19 13:03,"91 11th St, San Francisco, CA 94016" +292395,Google Phone,1,600,11/26/19 05:48,"751 5th St, Dallas, TX 75001" +292396,27in 4K Gaming Monitor,1,389.99,11/19/19 09:04,"529 12th St, Los Angeles, CA 90001" +292397,LG Washing Machine,1,600.0,11/17/19 11:16,"50 14th St, Seattle, WA 98101" +292398,Lightning Charging Cable,1,14.95,11/22/19 10:39,"835 6th St, Portland, OR 97035" +292399,AA Batteries (4-pack),1,3.84,11/21/19 15:50,"297 Lincoln St, Austin, TX 73301" +292400,LG Washing Machine,1,600.0,11/04/19 15:03,"820 Wilson St, Los Angeles, CA 90001" +292401,AA Batteries (4-pack),1,3.84,11/07/19 14:02,"557 Lincoln St, Boston, MA 02215" +292402,Vareebadd Phone,1,400,11/10/19 21:32,"798 Ridge St, Portland, OR 97035" +292403,Lightning Charging Cable,1,14.95,11/05/19 12:15,"555 Dogwood St, San Francisco, CA 94016" +292404,USB-C Charging Cable,2,11.95,11/15/19 10:22,"518 11th St, Los Angeles, CA 90001" +292405,USB-C Charging Cable,1,11.95,11/22/19 21:13,"557 Main St, Dallas, TX 75001" +292406,USB-C Charging Cable,1,11.95,11/27/19 21:45,"716 13th St, San Francisco, CA 94016" +292407,Lightning Charging Cable,1,14.95,11/24/19 16:45,"878 10th St, Dallas, TX 75001" +292408,Apple Airpods Headphones,1,150,11/04/19 07:17,"576 Hill St, Los Angeles, CA 90001" +292409,Wired Headphones,1,11.99,11/30/19 12:21,"644 Madison St, Los Angeles, CA 90001" +292410,AAA Batteries (4-pack),3,2.99,11/08/19 05:28,"239 Adams St, Seattle, WA 98101" +292411,Bose SoundSport Headphones,1,99.99,11/09/19 11:23,"22 South St, Portland, ME 04101" +292411,Macbook Pro Laptop,1,1700,11/09/19 11:23,"22 South St, Portland, ME 04101" +292412,Wired Headphones,1,11.99,11/03/19 08:47,"600 Madison St, Los Angeles, CA 90001" +292413,27in FHD Monitor,1,149.99,11/02/19 21:00,"722 Pine St, New York City, NY 10001" +292414,27in 4K Gaming Monitor,1,389.99,11/03/19 03:17,"580 14th St, Austin, TX 73301" +292415,USB-C Charging Cable,1,11.95,11/09/19 11:19,"42 Meadow St, San Francisco, CA 94016" +292416,27in 4K Gaming Monitor,1,389.99,11/17/19 21:58,"244 Spruce St, San Francisco, CA 94016" +292417,Lightning Charging Cable,1,14.95,11/28/19 22:21,"342 Elm St, New York City, NY 10001" +292418,AAA Batteries (4-pack),1,2.99,11/13/19 19:45,"45 9th St, New York City, NY 10001" +292419,27in 4K Gaming Monitor,1,389.99,11/22/19 19:50,"616 2nd St, Dallas, TX 75001" +292420,Lightning Charging Cable,1,14.95,11/03/19 18:31,"846 4th St, Boston, MA 02215" +292421,Macbook Pro Laptop,1,1700,11/14/19 07:29,"514 Lakeview St, Los Angeles, CA 90001" +292422,USB-C Charging Cable,2,11.95,11/29/19 23:18,"815 Washington St, Dallas, TX 75001" +292423,Apple Airpods Headphones,1,150,11/08/19 19:37,"516 Center St, Seattle, WA 98101" +292424,Apple Airpods Headphones,1,150,11/26/19 09:31,"664 Forest St, Boston, MA 02215" +292425,USB-C Charging Cable,1,11.95,11/01/19 20:30,"203 North St, Boston, MA 02215" +292426,27in 4K Gaming Monitor,1,389.99,11/25/19 00:29,"802 Main St, Atlanta, GA 30301" +292427,USB-C Charging Cable,1,11.95,11/21/19 13:30,"723 Church St, Portland, OR 97035" +292428,iPhone,1,700,11/14/19 10:35,"616 Madison St, San Francisco, CA 94016" +292429,20in Monitor,1,109.99,11/16/19 11:09,"574 4th St, New York City, NY 10001" +292430,Flatscreen TV,1,300,11/11/19 15:14,"712 Center St, New York City, NY 10001" +292431,Apple Airpods Headphones,1,150,11/14/19 13:17,"746 Cherry St, Portland, OR 97035" +292432,AA Batteries (4-pack),1,3.84,11/17/19 09:21,"110 Sunset St, New York City, NY 10001" +292433,USB-C Charging Cable,1,11.95,11/24/19 02:37,"528 Church St, Atlanta, GA 30301" +292434,USB-C Charging Cable,1,11.95,11/22/19 16:08,"319 Hickory St, Los Angeles, CA 90001" +292435,Vareebadd Phone,1,400,11/14/19 18:19,"70 Forest St, San Francisco, CA 94016" +292436,Macbook Pro Laptop,1,1700,11/18/19 20:58,"694 Maple St, Boston, MA 02215" +292437,Flatscreen TV,1,300,11/18/19 14:14,"916 Pine St, San Francisco, CA 94016" +292438,USB-C Charging Cable,1,11.95,11/26/19 02:57,"118 Lake St, Boston, MA 02215" +292439,Lightning Charging Cable,1,14.95,11/05/19 16:07,"491 Walnut St, Boston, MA 02215" +292440,27in FHD Monitor,1,149.99,11/08/19 21:01,"765 Maple St, Boston, MA 02215" +292441,Google Phone,1,600,11/14/19 18:56,"327 Willow St, Los Angeles, CA 90001" +292442,34in Ultrawide Monitor,1,379.99,11/18/19 07:24,"453 Spruce St, Los Angeles, CA 90001" +292443,AA Batteries (4-pack),1,3.84,11/15/19 11:12,"408 14th St, Los Angeles, CA 90001" +292444,AAA Batteries (4-pack),1,2.99,11/15/19 14:55,"811 Washington St, Dallas, TX 75001" +292445,Lightning Charging Cable,1,14.95,11/07/19 20:22,"485 4th St, Atlanta, GA 30301" +292446,Wired Headphones,1,11.99,11/30/19 08:01,"783 4th St, San Francisco, CA 94016" +292447,AAA Batteries (4-pack),1,2.99,11/02/19 01:40,"139 6th St, Los Angeles, CA 90001" +292448,AA Batteries (4-pack),1,3.84,11/05/19 17:20,"964 Jefferson St, New York City, NY 10001" +292449,Wired Headphones,1,11.99,11/18/19 14:59,"413 Main St, New York City, NY 10001" +292450,USB-C Charging Cable,1,11.95,11/09/19 19:17,"609 14th St, San Francisco, CA 94016" +292451,USB-C Charging Cable,1,11.95,11/12/19 17:27,"124 Jackson St, Seattle, WA 98101" +292452,Bose SoundSport Headphones,1,99.99,11/25/19 11:58,"477 West St, Dallas, TX 75001" +292453,Wired Headphones,1,11.99,11/17/19 19:34,"349 River St, San Francisco, CA 94016" +292454,AA Batteries (4-pack),1,3.84,11/13/19 12:38,"58 Hill St, Los Angeles, CA 90001" +292455,Apple Airpods Headphones,1,150,11/24/19 23:28,"908 7th St, Atlanta, GA 30301" +292456,iPhone,1,700,11/30/19 06:04,"482 13th St, Portland, ME 04101" +292457,AA Batteries (4-pack),1,3.84,11/28/19 18:43,"150 Pine St, Portland, OR 97035" +292458,Macbook Pro Laptop,1,1700,11/19/19 09:21,"731 Adams St, San Francisco, CA 94016" +292459,27in FHD Monitor,1,149.99,11/17/19 17:02,"613 Meadow St, Atlanta, GA 30301" +292460,Bose SoundSport Headphones,1,99.99,11/07/19 19:41,"926 Hill St, New York City, NY 10001" +292461,AA Batteries (4-pack),1,3.84,11/19/19 14:55,"601 Maple St, San Francisco, CA 94016" +292462,Apple Airpods Headphones,1,150,11/21/19 12:09,"412 2nd St, Atlanta, GA 30301" +292463,Wired Headphones,3,11.99,11/04/19 18:41,"536 14th St, Los Angeles, CA 90001" +292464,Bose SoundSport Headphones,1,99.99,11/14/19 12:19,"810 Sunset St, Los Angeles, CA 90001" +292465,Wired Headphones,1,11.99,11/04/19 12:23,"940 Dogwood St, Los Angeles, CA 90001" +292466,iPhone,1,700,11/20/19 06:46,"951 Dogwood St, Atlanta, GA 30301" +292467,34in Ultrawide Monitor,1,379.99,11/10/19 15:35,"381 Elm St, Atlanta, GA 30301" +292468,AA Batteries (4-pack),1,3.84,11/24/19 21:39,"183 10th St, New York City, NY 10001" +292469,Wired Headphones,1,11.99,11/28/19 16:43,"813 Madison St, Portland, OR 97035" +292470,Wired Headphones,3,11.99,11/05/19 15:00,"815 Forest St, Los Angeles, CA 90001" +292471,USB-C Charging Cable,1,11.95,11/15/19 22:42,"895 6th St, New York City, NY 10001" +292472,Lightning Charging Cable,1,14.95,11/27/19 12:34,"735 Center St, Los Angeles, CA 90001" +292473,Wired Headphones,1,11.99,11/24/19 13:29,"364 Johnson St, Los Angeles, CA 90001" +292474,27in FHD Monitor,1,149.99,11/05/19 16:05,"228 South St, New York City, NY 10001" +292475,Google Phone,1,600,11/18/19 14:58,"11 Lakeview St, San Francisco, CA 94016" +292476,AA Batteries (4-pack),1,3.84,11/07/19 20:38,"260 7th St, San Francisco, CA 94016" +292477,Apple Airpods Headphones,1,150,11/22/19 18:51,"392 Maple St, Boston, MA 02215" +292478,Apple Airpods Headphones,1,150,11/05/19 20:17,"290 Madison St, Austin, TX 73301" +292479,Flatscreen TV,1,300,11/10/19 21:03,"190 13th St, San Francisco, CA 94016" +292480,27in 4K Gaming Monitor,1,389.99,11/21/19 15:27,"61 Hickory St, Dallas, TX 75001" +292481,Wired Headphones,1,11.99,11/25/19 10:18,"272 Adams St, Portland, ME 04101" +292482,AAA Batteries (4-pack),2,2.99,11/07/19 15:43,"758 Meadow St, Los Angeles, CA 90001" +292483,Lightning Charging Cable,1,14.95,11/15/19 13:14,"915 14th St, Portland, ME 04101" +292484,Google Phone,1,600,11/02/19 00:11,"336 2nd St, Portland, OR 97035" +292485,Apple Airpods Headphones,1,150,11/30/19 18:39,"234 8th St, Dallas, TX 75001" +292486,Lightning Charging Cable,1,14.95,11/02/19 15:26,"836 Hill St, San Francisco, CA 94016" +292487,iPhone,1,700,11/09/19 10:34,"32 Center St, San Francisco, CA 94016" +292487,Wired Headphones,1,11.99,11/09/19 10:34,"32 Center St, San Francisco, CA 94016" +292488,Lightning Charging Cable,1,14.95,11/16/19 00:13,"332 8th St, San Francisco, CA 94016" +292489,Flatscreen TV,1,300,11/23/19 19:39,"92 Center St, Atlanta, GA 30301" +292490,Apple Airpods Headphones,1,150,11/25/19 14:30,"569 Maple St, San Francisco, CA 94016" +292491,Lightning Charging Cable,1,14.95,11/05/19 20:45,"208 South St, Austin, TX 73301" +292492,Apple Airpods Headphones,1,150,11/21/19 16:34,"814 13th St, New York City, NY 10001" +292493,AAA Batteries (4-pack),1,2.99,11/16/19 20:55,"341 Elm St, Los Angeles, CA 90001" +292494,Google Phone,1,600,11/22/19 13:55,"874 River St, San Francisco, CA 94016" +292495,USB-C Charging Cable,1,11.95,11/02/19 09:32,"806 Meadow St, Atlanta, GA 30301" +292496,Apple Airpods Headphones,1,150,11/27/19 10:58,"297 Forest St, San Francisco, CA 94016" +292497,AAA Batteries (4-pack),1,2.99,11/05/19 06:27,"178 Jefferson St, New York City, NY 10001" +292498,Bose SoundSport Headphones,1,99.99,11/17/19 13:51,"574 Lake St, Boston, MA 02215" +292499,27in 4K Gaming Monitor,1,389.99,11/13/19 15:37,"533 Elm St, Los Angeles, CA 90001" +292500,Apple Airpods Headphones,1,150,11/02/19 15:45,"808 Dogwood St, San Francisco, CA 94016" +292501,AAA Batteries (4-pack),1,2.99,11/21/19 14:26,"649 Walnut St, San Francisco, CA 94016" +292502,Flatscreen TV,1,300,11/29/19 13:15,"996 Wilson St, San Francisco, CA 94016" +292503,Wired Headphones,1,11.99,11/18/19 10:31,"117 10th St, San Francisco, CA 94016" +292504,USB-C Charging Cable,1,11.95,11/22/19 16:05,"277 Cherry St, Los Angeles, CA 90001" +292505,Lightning Charging Cable,1,14.95,11/23/19 11:49,"50 South St, San Francisco, CA 94016" +292506,Lightning Charging Cable,1,14.95,11/11/19 18:15,"968 Adams St, New York City, NY 10001" +292507,Bose SoundSport Headphones,1,99.99,11/26/19 15:15,"499 Pine St, Boston, MA 02215" +292508,iPhone,1,700,11/11/19 21:18,"51 6th St, San Francisco, CA 94016" +292509,34in Ultrawide Monitor,1,379.99,11/13/19 12:23,"396 North St, New York City, NY 10001" +292510,20in Monitor,1,109.99,11/09/19 12:50,"52 Forest St, Atlanta, GA 30301" +292511,Lightning Charging Cable,1,14.95,11/13/19 12:57,"603 Pine St, Dallas, TX 75001" +292512,34in Ultrawide Monitor,1,379.99,11/04/19 12:00,"649 Jefferson St, Seattle, WA 98101" +292513,AAA Batteries (4-pack),1,2.99,11/03/19 09:52,"408 Forest St, Seattle, WA 98101" +292514,USB-C Charging Cable,1,11.95,11/26/19 20:40,"671 Park St, Austin, TX 73301" +292515,AA Batteries (4-pack),2,3.84,11/06/19 22:55,"224 Jackson St, San Francisco, CA 94016" +292516,USB-C Charging Cable,1,11.95,11/11/19 16:03,"356 4th St, Boston, MA 02215" +292517,Lightning Charging Cable,1,14.95,11/27/19 18:24,"837 Maple St, San Francisco, CA 94016" +292518,AAA Batteries (4-pack),1,2.99,11/30/19 10:50,"470 Main St, Los Angeles, CA 90001" +292519,ThinkPad Laptop,1,999.99,11/23/19 07:17,"437 8th St, Seattle, WA 98101" +292520,Wired Headphones,1,11.99,11/24/19 00:47,"266 10th St, San Francisco, CA 94016" +292521,Wired Headphones,1,11.99,11/21/19 14:24,"375 Dogwood St, Seattle, WA 98101" +292522,34in Ultrawide Monitor,1,379.99,11/14/19 23:25,"87 4th St, Atlanta, GA 30301" +292523,27in 4K Gaming Monitor,1,389.99,11/21/19 09:22,"924 Elm St, Boston, MA 02215" +292524,Macbook Pro Laptop,1,1700,11/15/19 16:13,"601 9th St, New York City, NY 10001" +292525,AA Batteries (4-pack),2,3.84,11/05/19 16:23,"973 13th St, Atlanta, GA 30301" +292526,AAA Batteries (4-pack),1,2.99,11/07/19 12:50,"611 2nd St, Los Angeles, CA 90001" +292527,Wired Headphones,1,11.99,11/22/19 23:23,"653 14th St, San Francisco, CA 94016" +292528,27in FHD Monitor,1,149.99,11/11/19 11:18,"509 Hill St, New York City, NY 10001" +292529,Lightning Charging Cable,1,14.95,11/09/19 14:20,"648 6th St, New York City, NY 10001" +292530,AAA Batteries (4-pack),1,2.99,11/21/19 14:47,"245 Meadow St, Boston, MA 02215" +292531,Wired Headphones,1,11.99,11/27/19 07:04,"530 5th St, Austin, TX 73301" +292531,34in Ultrawide Monitor,1,379.99,11/27/19 07:04,"530 5th St, Austin, TX 73301" +292532,AAA Batteries (4-pack),1,2.99,11/27/19 11:21,"808 Spruce St, San Francisco, CA 94016" +292533,AAA Batteries (4-pack),1,2.99,11/03/19 09:18,"90 Lakeview St, New York City, NY 10001" +292534,Bose SoundSport Headphones,1,99.99,11/14/19 15:55,"881 12th St, Portland, OR 97035" +292535,USB-C Charging Cable,1,11.95,11/14/19 16:46,"802 Chestnut St, Portland, ME 04101" +292536,34in Ultrawide Monitor,1,379.99,11/04/19 21:40,"195 Lincoln St, Los Angeles, CA 90001" +292537,AAA Batteries (4-pack),1,2.99,11/22/19 16:49,"290 Meadow St, Los Angeles, CA 90001" +292538,34in Ultrawide Monitor,1,379.99,11/17/19 08:46,"757 7th St, Los Angeles, CA 90001" +292539,USB-C Charging Cable,1,11.95,11/09/19 14:42,"749 10th St, New York City, NY 10001" +292540,Apple Airpods Headphones,1,150,11/08/19 23:23,"261 10th St, New York City, NY 10001" +292540,Google Phone,1,600,11/08/19 23:23,"261 10th St, New York City, NY 10001" +292541,34in Ultrawide Monitor,1,379.99,11/25/19 23:54,"267 Park St, San Francisco, CA 94016" +292542,Bose SoundSport Headphones,1,99.99,11/04/19 17:51,"511 6th St, San Francisco, CA 94016" +292543,AA Batteries (4-pack),1,3.84,11/02/19 19:48,"51 Elm St, Austin, TX 73301" +292544,AAA Batteries (4-pack),3,2.99,11/26/19 20:53,"780 Spruce St, San Francisco, CA 94016" +292545,Apple Airpods Headphones,1,150,11/24/19 13:54,"630 Adams St, Portland, ME 04101" +292546,Bose SoundSport Headphones,1,99.99,11/27/19 23:24,"343 14th St, Los Angeles, CA 90001" +292547,Macbook Pro Laptop,1,1700,11/08/19 12:16,"350 13th St, San Francisco, CA 94016" +292548,Wired Headphones,1,11.99,11/12/19 12:35,"403 Jackson St, Dallas, TX 75001" +292549,Google Phone,1,600,11/26/19 13:36,"741 Dogwood St, Atlanta, GA 30301" +292550,20in Monitor,1,109.99,11/04/19 16:01,"85 Center St, San Francisco, CA 94016" +292551,AAA Batteries (4-pack),1,2.99,11/19/19 19:06,"230 8th St, Atlanta, GA 30301" +292552,AAA Batteries (4-pack),1,2.99,11/10/19 09:26,"835 Meadow St, Los Angeles, CA 90001" +292553,Wired Headphones,1,11.99,11/10/19 18:19,"573 Dogwood St, Los Angeles, CA 90001" +292553,AA Batteries (4-pack),1,3.84,11/10/19 18:19,"573 Dogwood St, Los Angeles, CA 90001" +292554,AA Batteries (4-pack),2,3.84,11/10/19 17:36,"334 Spruce St, San Francisco, CA 94016" +292555,27in 4K Gaming Monitor,1,389.99,11/01/19 10:35,"723 14th St, Boston, MA 02215" +292556,27in FHD Monitor,1,149.99,11/26/19 08:53,"274 North St, San Francisco, CA 94016" +292557,LG Washing Machine,1,600.0,11/21/19 17:10,"995 South St, Portland, OR 97035" +292558,AAA Batteries (4-pack),1,2.99,11/24/19 14:54,"595 Jefferson St, Atlanta, GA 30301" +292559,AAA Batteries (4-pack),1,2.99,11/19/19 09:34,"493 Church St, Los Angeles, CA 90001" +292560,Apple Airpods Headphones,1,150,11/10/19 07:45,"589 Main St, San Francisco, CA 94016" +292561,Wired Headphones,1,11.99,11/03/19 22:03,"814 Park St, Seattle, WA 98101" +292562,AA Batteries (4-pack),2,3.84,11/30/19 17:50,"947 Madison St, Atlanta, GA 30301" +292563,AAA Batteries (4-pack),2,2.99,11/17/19 06:18,"958 9th St, Portland, OR 97035" +292564,AA Batteries (4-pack),2,3.84,11/20/19 19:47,"642 8th St, Seattle, WA 98101" +292565,AAA Batteries (4-pack),1,2.99,11/19/19 17:24,"412 Dogwood St, Los Angeles, CA 90001" +292566,20in Monitor,1,109.99,11/13/19 14:53,"553 6th St, Portland, OR 97035" +292567,Google Phone,1,600,11/10/19 00:08,"911 Lincoln St, Portland, OR 97035" +292568,Lightning Charging Cable,1,14.95,11/15/19 22:01,"579 West St, New York City, NY 10001" +292569,27in 4K Gaming Monitor,1,389.99,11/14/19 17:53,"133 Jefferson St, San Francisco, CA 94016" +292570,Vareebadd Phone,1,400,11/10/19 23:03,"651 Jackson St, Los Angeles, CA 90001" +292571,Lightning Charging Cable,1,14.95,11/02/19 02:49,"378 Forest St, San Francisco, CA 94016" +292572,USB-C Charging Cable,1,11.95,11/10/19 18:24,"832 West St, Portland, OR 97035" +292573,Macbook Pro Laptop,1,1700,11/18/19 18:38,"734 Willow St, San Francisco, CA 94016" +292574,Lightning Charging Cable,1,14.95,11/04/19 18:16,"304 Lincoln St, San Francisco, CA 94016" +292575,USB-C Charging Cable,1,11.95,11/10/19 18:27,"713 Church St, Portland, OR 97035" +292576,27in FHD Monitor,1,149.99,11/12/19 12:24,"454 Washington St, San Francisco, CA 94016" +292577,AAA Batteries (4-pack),3,2.99,11/02/19 17:22,"183 8th St, Austin, TX 73301" +292578,Google Phone,1,600,11/24/19 02:12,"431 Main St, San Francisco, CA 94016" +292578,USB-C Charging Cable,1,11.95,11/24/19 02:12,"431 Main St, San Francisco, CA 94016" +292579,AA Batteries (4-pack),1,3.84,11/13/19 00:54,"867 Hickory St, Atlanta, GA 30301" +292580,iPhone,1,700,11/27/19 08:57,"491 Meadow St, San Francisco, CA 94016" +292581,ThinkPad Laptop,1,999.99,11/19/19 21:40,"556 2nd St, San Francisco, CA 94016" +292582,AA Batteries (4-pack),1,3.84,11/14/19 21:59,"879 Chestnut St, Los Angeles, CA 90001" +292583,27in FHD Monitor,1,149.99,11/16/19 09:49,"924 1st St, San Francisco, CA 94016" +292584,AAA Batteries (4-pack),1,2.99,11/26/19 18:08,"807 Cedar St, New York City, NY 10001" +292585,27in FHD Monitor,1,149.99,11/20/19 08:04,"408 Maple St, Los Angeles, CA 90001" +292586,AA Batteries (4-pack),2,3.84,11/27/19 11:25,"716 Maple St, Boston, MA 02215" +292587,ThinkPad Laptop,1,999.99,11/30/19 11:02,"324 Adams St, Austin, TX 73301" +292588,Wired Headphones,1,11.99,11/18/19 07:32,"205 Forest St, San Francisco, CA 94016" +292589,iPhone,1,700,11/27/19 12:17,"916 10th St, Los Angeles, CA 90001" +292590,Lightning Charging Cable,1,14.95,11/14/19 17:42,"772 Hickory St, New York City, NY 10001" +292591,Lightning Charging Cable,1,14.95,11/06/19 10:29,"973 Willow St, Los Angeles, CA 90001" +292591,Wired Headphones,1,11.99,11/06/19 10:29,"973 Willow St, Los Angeles, CA 90001" +292592,AAA Batteries (4-pack),1,2.99,11/21/19 13:09,"875 Pine St, Seattle, WA 98101" +292593,Bose SoundSport Headphones,1,99.99,11/01/19 14:15,"124 10th St, Los Angeles, CA 90001" +292594,Lightning Charging Cable,2,14.95,11/18/19 10:22,"640 4th St, New York City, NY 10001" +292595,27in FHD Monitor,1,149.99,11/18/19 19:07,"458 Spruce St, San Francisco, CA 94016" +292596,iPhone,1,700,11/15/19 22:36,"102 Hill St, Dallas, TX 75001" +292596,Lightning Charging Cable,1,14.95,11/15/19 22:36,"102 Hill St, Dallas, TX 75001" +292597,Lightning Charging Cable,1,14.95,11/07/19 17:14,"2 4th St, Portland, OR 97035" +292598,AAA Batteries (4-pack),1,2.99,11/17/19 14:48,"314 4th St, Boston, MA 02215" +292599,Bose SoundSport Headphones,1,99.99,11/04/19 14:06,"759 Chestnut St, Atlanta, GA 30301" +,,,,, +292600,AAA Batteries (4-pack),1,2.99,11/10/19 21:24,"365 Maple St, Los Angeles, CA 90001" +292601,Lightning Charging Cable,1,14.95,11/09/19 19:14,"862 7th St, Austin, TX 73301" +292602,27in FHD Monitor,1,149.99,11/25/19 20:27,"986 Ridge St, New York City, NY 10001" +292603,AA Batteries (4-pack),1,3.84,11/25/19 13:22,"550 Pine St, San Francisco, CA 94016" +292604,Flatscreen TV,1,300,11/13/19 11:30,"672 Forest St, San Francisco, CA 94016" +292605,Flatscreen TV,1,300,11/01/19 18:51,"128 4th St, Portland, OR 97035" +292606,USB-C Charging Cable,1,11.95,11/02/19 17:17,"708 Center St, Seattle, WA 98101" +292607,Bose SoundSport Headphones,1,99.99,11/09/19 11:57,"2 Wilson St, New York City, NY 10001" +292608,27in FHD Monitor,1,149.99,11/01/19 11:09,"298 6th St, Portland, OR 97035" +292609,Lightning Charging Cable,1,14.95,11/28/19 11:57,"488 Forest St, San Francisco, CA 94016" +292610,Macbook Pro Laptop,1,1700,11/09/19 13:15,"620 Center St, San Francisco, CA 94016" +292611,Flatscreen TV,1,300,11/01/19 12:04,"709 Sunset St, Atlanta, GA 30301" +292612,Wired Headphones,1,11.99,11/25/19 16:13,"81 8th St, San Francisco, CA 94016" +292613,AAA Batteries (4-pack),1,2.99,11/28/19 19:01,"933 14th St, Los Angeles, CA 90001" +292614,AA Batteries (4-pack),1,3.84,11/15/19 22:52,"496 Cherry St, New York City, NY 10001" +292615,AA Batteries (4-pack),1,3.84,11/25/19 22:28,"814 Meadow St, Seattle, WA 98101" +292616,Lightning Charging Cable,1,14.95,11/21/19 19:47,"289 Adams St, Seattle, WA 98101" +292617,Bose SoundSport Headphones,1,99.99,11/07/19 15:18,"10 1st St, Dallas, TX 75001" +292618,AA Batteries (4-pack),1,3.84,11/05/19 11:40,"972 West St, Los Angeles, CA 90001" +292619,iPhone,1,700,11/16/19 18:55,"704 Forest St, Los Angeles, CA 90001" +292619,Lightning Charging Cable,1,14.95,11/16/19 18:55,"704 Forest St, Los Angeles, CA 90001" +292620,Vareebadd Phone,1,400,11/06/19 21:24,"670 Walnut St, San Francisco, CA 94016" +292620,USB-C Charging Cable,1,11.95,11/06/19 21:24,"670 Walnut St, San Francisco, CA 94016" +292621,Google Phone,1,600,11/15/19 23:38,"800 Lincoln St, Portland, OR 97035" +292622,Lightning Charging Cable,1,14.95,11/28/19 12:37,"655 Forest St, New York City, NY 10001" +292623,Wired Headphones,1,11.99,11/25/19 20:23,"481 Hickory St, New York City, NY 10001" +292624,Vareebadd Phone,1,400,11/11/19 13:02,"516 Lincoln St, San Francisco, CA 94016" +292625,AAA Batteries (4-pack),1,2.99,11/28/19 08:37,"613 7th St, San Francisco, CA 94016" +292626,Vareebadd Phone,1,400,11/16/19 13:20,"601 Park St, San Francisco, CA 94016" +292627,27in 4K Gaming Monitor,1,389.99,11/28/19 21:30,"879 North St, Atlanta, GA 30301" +292628,iPhone,1,700,11/26/19 10:15,"771 Willow St, San Francisco, CA 94016" +292629,USB-C Charging Cable,1,11.95,11/04/19 19:21,"348 Hickory St, Los Angeles, CA 90001" +292630,Apple Airpods Headphones,1,150,11/10/19 13:16,"759 Cherry St, Dallas, TX 75001" +292631,AA Batteries (4-pack),1,3.84,11/21/19 16:29,"490 Church St, Austin, TX 73301" +292632,Lightning Charging Cable,1,14.95,11/17/19 18:37,"64 Wilson St, San Francisco, CA 94016" +292633,USB-C Charging Cable,1,11.95,11/02/19 21:53,"928 7th St, Seattle, WA 98101" +292634,AAA Batteries (4-pack),2,2.99,11/11/19 12:33,"190 Sunset St, Portland, OR 97035" +292635,AAA Batteries (4-pack),1,2.99,11/22/19 20:46,"660 Lincoln St, Austin, TX 73301" +292636,27in FHD Monitor,1,149.99,11/12/19 18:24,"122 Pine St, San Francisco, CA 94016" +292637,USB-C Charging Cable,1,11.95,11/30/19 16:33,"609 Willow St, Dallas, TX 75001" +292638,Lightning Charging Cable,2,14.95,11/20/19 12:12,"32 Madison St, Portland, OR 97035" +292639,Wired Headphones,1,11.99,11/09/19 17:39,"80 Meadow St, Dallas, TX 75001" +292640,AA Batteries (4-pack),1,3.84,11/03/19 12:58,"958 Hill St, Atlanta, GA 30301" +292641,27in FHD Monitor,1,149.99,11/16/19 20:01,"102 Lake St, San Francisco, CA 94016" +292642,Wired Headphones,1,11.99,11/15/19 22:27,"7 Maple St, San Francisco, CA 94016" +292643,USB-C Charging Cable,1,11.95,11/18/19 14:33,"970 Madison St, Los Angeles, CA 90001" +292643,Wired Headphones,1,11.99,11/18/19 14:33,"970 Madison St, Los Angeles, CA 90001" +292644,AAA Batteries (4-pack),1,2.99,11/16/19 10:05,"506 Willow St, Dallas, TX 75001" +292645,Bose SoundSport Headphones,1,99.99,11/29/19 22:46,"35 1st St, Dallas, TX 75001" +292646,USB-C Charging Cable,1,11.95,11/11/19 18:40,"647 Dogwood St, San Francisco, CA 94016" +292647,AAA Batteries (4-pack),1,2.99,11/11/19 11:50,"679 7th St, Austin, TX 73301" +292648,34in Ultrawide Monitor,1,379.99,11/29/19 08:22,"749 Dogwood St, San Francisco, CA 94016" +292649,34in Ultrawide Monitor,1,379.99,11/29/19 12:26,"104 Center St, Boston, MA 02215" +292650,USB-C Charging Cable,1,11.95,11/11/19 15:24,"654 Cherry St, Boston, MA 02215" +292650,Flatscreen TV,1,300,11/11/19 15:24,"654 Cherry St, Boston, MA 02215" +292651,27in FHD Monitor,1,149.99,11/07/19 17:56,"13 Hill St, Boston, MA 02215" +292652,Wired Headphones,1,11.99,11/29/19 13:18,"570 South St, Portland, OR 97035" +292653,Wired Headphones,1,11.99,11/26/19 03:38,"972 8th St, New York City, NY 10001" +292654,Google Phone,1,600,11/10/19 18:09,"755 West St, Portland, OR 97035" +292655,AAA Batteries (4-pack),1,2.99,11/12/19 10:45,"457 Lincoln St, Dallas, TX 75001" +292656,Bose SoundSport Headphones,1,99.99,11/21/19 17:43,"570 Dogwood St, San Francisco, CA 94016" +292657,AA Batteries (4-pack),1,3.84,11/01/19 10:33,"767 7th St, San Francisco, CA 94016" +292658,AA Batteries (4-pack),1,3.84,11/24/19 12:48,"368 Ridge St, Boston, MA 02215" +292659,Apple Airpods Headphones,1,150,11/20/19 14:18,"440 Willow St, San Francisco, CA 94016" +292659,34in Ultrawide Monitor,1,379.99,11/20/19 14:18,"440 Willow St, San Francisco, CA 94016" +292660,USB-C Charging Cable,1,11.95,11/03/19 20:29,"274 Spruce St, Austin, TX 73301" +292661,Macbook Pro Laptop,1,1700,11/08/19 13:27,"16 Jackson St, Dallas, TX 75001" +292662,Apple Airpods Headphones,1,150,11/25/19 15:02,"87 7th St, New York City, NY 10001" +292662,USB-C Charging Cable,1,11.95,11/25/19 15:02,"87 7th St, New York City, NY 10001" +292663,Lightning Charging Cable,1,14.95,11/30/19 11:27,"211 13th St, San Francisco, CA 94016" +292664,Apple Airpods Headphones,1,150,11/10/19 19:14,"478 9th St, Boston, MA 02215" +292665,Lightning Charging Cable,1,14.95,11/18/19 16:01,"742 Forest St, San Francisco, CA 94016" +292666,AA Batteries (4-pack),4,3.84,11/16/19 16:35,"498 Johnson St, Portland, OR 97035" +292667,USB-C Charging Cable,1,11.95,11/25/19 22:48,"604 Jefferson St, Seattle, WA 98101" +292668,27in FHD Monitor,1,149.99,11/25/19 10:07,"318 Wilson St, Seattle, WA 98101" +292669,27in 4K Gaming Monitor,1,389.99,11/16/19 20:43,"321 12th St, Los Angeles, CA 90001" +292670,Wired Headphones,1,11.99,11/06/19 15:28,"775 13th St, Boston, MA 02215" +292671,Apple Airpods Headphones,1,150,11/22/19 15:19,"173 5th St, New York City, NY 10001" +292672,Lightning Charging Cable,1,14.95,11/09/19 11:12,"320 Wilson St, Boston, MA 02215" +292673,Vareebadd Phone,1,400,11/04/19 19:16,"196 Elm St, Boston, MA 02215" +292674,Vareebadd Phone,1,400,11/16/19 23:41,"568 1st St, San Francisco, CA 94016" +292675,AAA Batteries (4-pack),1,2.99,11/01/19 12:14,"665 1st St, New York City, NY 10001" +292676,Flatscreen TV,1,300,11/11/19 20:43,"56 Elm St, San Francisco, CA 94016" +292677,AAA Batteries (4-pack),1,2.99,11/22/19 19:32,"952 Jefferson St, Los Angeles, CA 90001" +292678,AAA Batteries (4-pack),3,2.99,11/29/19 15:06,"496 Spruce St, Los Angeles, CA 90001" +292679,AAA Batteries (4-pack),4,2.99,11/28/19 12:57,"680 Maple St, Boston, MA 02215" +292680,AA Batteries (4-pack),3,3.84,11/20/19 09:19,"650 Lakeview St, San Francisco, CA 94016" +292681,Wired Headphones,1,11.99,11/18/19 13:23,"419 Ridge St, Portland, OR 97035" +292682,AAA Batteries (4-pack),2,2.99,11/10/19 20:06,"926 Jefferson St, Atlanta, GA 30301" +292683,AA Batteries (4-pack),1,3.84,11/12/19 19:29,"906 River St, New York City, NY 10001" +292684,USB-C Charging Cable,1,11.95,11/04/19 23:05,"87 Main St, Portland, OR 97035" +292685,USB-C Charging Cable,1,11.95,11/27/19 14:47,"433 Hill St, San Francisco, CA 94016" +292686,AAA Batteries (4-pack),1,2.99,11/27/19 13:03,"432 Johnson St, Seattle, WA 98101" +292687,AAA Batteries (4-pack),4,2.99,11/26/19 19:33,"317 Cherry St, Dallas, TX 75001" +292688,Lightning Charging Cable,1,14.95,11/13/19 11:39,"168 Lakeview St, Los Angeles, CA 90001" +292689,Bose SoundSport Headphones,1,99.99,11/01/19 14:37,"317 8th St, Seattle, WA 98101" +292690,AA Batteries (4-pack),1,3.84,11/25/19 20:57,"667 Chestnut St, Atlanta, GA 30301" +292691,USB-C Charging Cable,1,11.95,11/09/19 16:17,"493 Walnut St, San Francisco, CA 94016" +292692,Apple Airpods Headphones,1,150,11/18/19 09:38,"186 6th St, New York City, NY 10001" +292693,Google Phone,1,600,11/30/19 11:38,"690 North St, Seattle, WA 98101" +292693,USB-C Charging Cable,1,11.95,11/30/19 11:38,"690 North St, Seattle, WA 98101" +292694,Lightning Charging Cable,1,14.95,11/11/19 18:50,"391 Forest St, San Francisco, CA 94016" +292695,Google Phone,1,600,11/18/19 13:55,"649 Sunset St, Los Angeles, CA 90001" +292696,Bose SoundSport Headphones,1,99.99,11/18/19 15:18,"173 Adams St, Dallas, TX 75001" +292697,USB-C Charging Cable,1,11.95,11/08/19 18:50,"674 Adams St, New York City, NY 10001" +292698,AAA Batteries (4-pack),2,2.99,11/20/19 14:52,"822 Cedar St, San Francisco, CA 94016" +292699,Wired Headphones,1,11.99,11/27/19 16:32,"434 Washington St, Portland, OR 97035" +292700,ThinkPad Laptop,1,999.99,11/09/19 15:49,"985 11th St, Los Angeles, CA 90001" +292701,Apple Airpods Headphones,1,150,11/10/19 11:00,"417 Dogwood St, San Francisco, CA 94016" +292702,AA Batteries (4-pack),1,3.84,11/03/19 15:55,"484 13th St, Atlanta, GA 30301" +292703,Google Phone,1,600,11/12/19 17:22,"961 Chestnut St, San Francisco, CA 94016" +292704,AA Batteries (4-pack),1,3.84,11/20/19 15:50,"179 Lincoln St, Los Angeles, CA 90001" +292705,Macbook Pro Laptop,1,1700,11/11/19 22:19,"225 Meadow St, Los Angeles, CA 90001" +292706,Macbook Pro Laptop,1,1700,11/26/19 09:58,"868 Highland St, Portland, OR 97035" +292707,AAA Batteries (4-pack),3,2.99,11/14/19 11:04,"427 Wilson St, San Francisco, CA 94016" +292708,20in Monitor,1,109.99,11/04/19 14:17,"672 14th St, Portland, OR 97035" +292709,Lightning Charging Cable,1,14.95,11/08/19 17:00,"55 Walnut St, Los Angeles, CA 90001" +292710,AA Batteries (4-pack),1,3.84,11/28/19 21:17,"21 Madison St, San Francisco, CA 94016" +292711,iPhone,1,700,11/17/19 07:21,"957 5th St, Portland, OR 97035" +292712,Wired Headphones,1,11.99,11/19/19 17:11,"95 8th St, Los Angeles, CA 90001" +292713,ThinkPad Laptop,1,999.99,11/07/19 11:20,"295 Ridge St, Los Angeles, CA 90001" +292714,Lightning Charging Cable,1,14.95,11/25/19 21:28,"401 1st St, Seattle, WA 98101" +292715,Flatscreen TV,1,300,11/08/19 18:37,"246 Lakeview St, New York City, NY 10001" +292716,Apple Airpods Headphones,1,150,11/16/19 14:57,"399 River St, Dallas, TX 75001" +292716,34in Ultrawide Monitor,1,379.99,11/16/19 14:57,"399 River St, Dallas, TX 75001" +292717,Wired Headphones,2,11.99,11/18/19 23:29,"107 Hill St, New York City, NY 10001" +292718,34in Ultrawide Monitor,1,379.99,11/23/19 15:49,"853 Jackson St, San Francisco, CA 94016" +292719,Wired Headphones,1,11.99,11/19/19 17:22,"883 Jefferson St, Austin, TX 73301" +292720,Lightning Charging Cable,1,14.95,11/08/19 04:24,"914 1st St, Boston, MA 02215" +292721,Lightning Charging Cable,1,14.95,11/11/19 12:40,"929 Jefferson St, Los Angeles, CA 90001" +292722,Apple Airpods Headphones,1,150,11/21/19 22:52,"829 9th St, Los Angeles, CA 90001" +292723,Wired Headphones,1,11.99,11/18/19 08:10,"321 8th St, Los Angeles, CA 90001" +292724,Apple Airpods Headphones,1,150,11/30/19 18:06,"442 Willow St, New York City, NY 10001" +292725,Apple Airpods Headphones,1,150,11/23/19 19:12,"689 River St, Boston, MA 02215" +292726,27in 4K Gaming Monitor,1,389.99,11/09/19 18:25,"331 Walnut St, Portland, OR 97035" +292727,Bose SoundSport Headphones,1,99.99,11/03/19 20:46,"490 Willow St, Atlanta, GA 30301" +292728,AA Batteries (4-pack),1,3.84,11/06/19 13:34,"448 Cherry St, San Francisco, CA 94016" +292729,AAA Batteries (4-pack),3,2.99,11/02/19 14:46,"645 Jackson St, San Francisco, CA 94016" +292730,AA Batteries (4-pack),1,3.84,11/10/19 12:54,"316 Maple St, Atlanta, GA 30301" +292731,Apple Airpods Headphones,1,150,11/29/19 22:14,"777 Hill St, Dallas, TX 75001" +292732,Wired Headphones,1,11.99,11/22/19 14:40,"388 Dogwood St, Los Angeles, CA 90001" +292733,Macbook Pro Laptop,1,1700,11/19/19 16:32,"559 Wilson St, New York City, NY 10001" +292734,USB-C Charging Cable,1,11.95,11/10/19 17:44,"261 9th St, San Francisco, CA 94016" +292735,AAA Batteries (4-pack),1,2.99,11/25/19 18:14,"869 Adams St, San Francisco, CA 94016" +292736,Lightning Charging Cable,1,14.95,11/14/19 05:20,"578 13th St, Austin, TX 73301" +292737,Apple Airpods Headphones,1,150,11/22/19 21:28,"150 12th St, Portland, ME 04101" +292738,AAA Batteries (4-pack),1,2.99,11/24/19 19:25,"137 Washington St, San Francisco, CA 94016" +292739,AAA Batteries (4-pack),1,2.99,11/24/19 10:26,"375 Dogwood St, Seattle, WA 98101" +292740,AAA Batteries (4-pack),3,2.99,11/19/19 20:27,"932 Hill St, Austin, TX 73301" +292740,27in FHD Monitor,1,149.99,11/19/19 20:27,"932 Hill St, Austin, TX 73301" +292741,Apple Airpods Headphones,1,150,11/17/19 10:49,"914 Forest St, Seattle, WA 98101" +292742,Bose SoundSport Headphones,1,99.99,11/22/19 12:24,"501 8th St, San Francisco, CA 94016" +292743,Wired Headphones,1,11.99,11/26/19 14:51,"778 8th St, Los Angeles, CA 90001" +292744,Bose SoundSport Headphones,1,99.99,11/27/19 19:26,"381 11th St, Atlanta, GA 30301" +292745,Apple Airpods Headphones,1,150,11/21/19 11:31,"338 Ridge St, San Francisco, CA 94016" +292746,USB-C Charging Cable,1,11.95,11/22/19 12:39,"318 Willow St, San Francisco, CA 94016" +292747,Wired Headphones,1,11.99,11/07/19 10:44,"181 Spruce St, New York City, NY 10001" +292748,AAA Batteries (4-pack),1,2.99,11/29/19 21:40,"225 6th St, Dallas, TX 75001" +292749,USB-C Charging Cable,1,11.95,11/27/19 13:03,"702 8th St, Los Angeles, CA 90001" +292750,Lightning Charging Cable,1,14.95,11/03/19 14:35,"221 9th St, New York City, NY 10001" +292751,AAA Batteries (4-pack),1,2.99,11/07/19 02:41,"185 Center St, Seattle, WA 98101" +292752,Lightning Charging Cable,1,14.95,11/19/19 21:30,"353 South St, New York City, NY 10001" +292753,27in 4K Gaming Monitor,1,389.99,11/16/19 19:49,"792 Cedar St, Los Angeles, CA 90001" +292754,Apple Airpods Headphones,1,150,11/30/19 13:04,"349 Wilson St, Seattle, WA 98101" +292755,Lightning Charging Cable,2,14.95,11/15/19 09:03,"717 13th St, Atlanta, GA 30301" +292756,Wired Headphones,1,11.99,11/11/19 16:30,"104 Adams St, Seattle, WA 98101" +292757,USB-C Charging Cable,1,11.95,11/19/19 16:23,"794 2nd St, Los Angeles, CA 90001" +292757,Lightning Charging Cable,1,14.95,11/19/19 16:23,"794 2nd St, Los Angeles, CA 90001" +292758,AAA Batteries (4-pack),1,2.99,11/07/19 14:24,"560 7th St, Los Angeles, CA 90001" +292759,Apple Airpods Headphones,1,150,11/29/19 16:44,"435 Maple St, Seattle, WA 98101" +292760,Lightning Charging Cable,1,14.95,11/27/19 13:24,"731 9th St, New York City, NY 10001" +292761,USB-C Charging Cable,1,11.95,11/06/19 11:11,"101 5th St, Portland, OR 97035" +292762,AA Batteries (4-pack),1,3.84,11/04/19 18:53,"421 Johnson St, Portland, ME 04101" +292763,Apple Airpods Headphones,1,150,11/25/19 13:03,"510 Highland St, San Francisco, CA 94016" +292764,Macbook Pro Laptop,1,1700,11/27/19 18:37,"77 Adams St, Los Angeles, CA 90001" +292765,Lightning Charging Cable,2,14.95,11/27/19 12:21,"800 10th St, Los Angeles, CA 90001" +292766,AAA Batteries (4-pack),1,2.99,11/09/19 19:32,"174 Park St, San Francisco, CA 94016" +292767,Wired Headphones,1,11.99,11/19/19 09:57,"606 9th St, Austin, TX 73301" +292768,USB-C Charging Cable,1,11.95,11/20/19 19:34,"349 Sunset St, San Francisco, CA 94016" +292769,Apple Airpods Headphones,1,150,11/11/19 20:24,"66 Center St, San Francisco, CA 94016" +292770,Lightning Charging Cable,1,14.95,11/02/19 13:23,"598 Willow St, Atlanta, GA 30301" +292771,Wired Headphones,1,11.99,11/29/19 11:37,"175 Dogwood St, Boston, MA 02215" +292772,27in 4K Gaming Monitor,1,389.99,11/12/19 18:00,"208 Center St, Atlanta, GA 30301" +292773,USB-C Charging Cable,1,11.95,11/14/19 20:07,"994 11th St, New York City, NY 10001" +292774,Vareebadd Phone,1,400,11/22/19 22:03,"53 West St, Seattle, WA 98101" +292775,AAA Batteries (4-pack),1,2.99,11/27/19 07:39,"436 River St, Los Angeles, CA 90001" +292776,iPhone,1,700,11/10/19 19:35,"1 Lakeview St, New York City, NY 10001" +292777,Bose SoundSport Headphones,1,99.99,11/01/19 21:21,"303 Main St, San Francisco, CA 94016" +292778,Google Phone,1,600,11/24/19 14:14,"614 Spruce St, Austin, TX 73301" +292778,USB-C Charging Cable,1,11.95,11/24/19 14:14,"614 Spruce St, Austin, TX 73301" +292779,Apple Airpods Headphones,1,150,11/22/19 15:18,"768 Wilson St, San Francisco, CA 94016" +292780,Bose SoundSport Headphones,1,99.99,11/11/19 23:40,"353 Highland St, Los Angeles, CA 90001" +292781,iPhone,1,700,11/20/19 08:12,"19 Sunset St, Boston, MA 02215" +292782,27in 4K Gaming Monitor,1,389.99,11/30/19 12:36,"860 12th St, San Francisco, CA 94016" +292783,Apple Airpods Headphones,1,150,11/30/19 22:20,"529 South St, San Francisco, CA 94016" +292784,Bose SoundSport Headphones,1,99.99,11/16/19 11:51,"664 1st St, Boston, MA 02215" +292785,AA Batteries (4-pack),2,3.84,11/20/19 20:13,"401 10th St, Boston, MA 02215" +292786,Apple Airpods Headphones,1,150,11/24/19 17:24,"575 4th St, Seattle, WA 98101" +292787,USB-C Charging Cable,1,11.95,11/17/19 18:13,"79 West St, Atlanta, GA 30301" +292788,Apple Airpods Headphones,1,150,11/25/19 22:40,"948 Washington St, Boston, MA 02215" +292789,AAA Batteries (4-pack),1,2.99,11/09/19 01:25,"839 Hickory St, Boston, MA 02215" +292790,Lightning Charging Cable,1,14.95,11/30/19 12:26,"821 Elm St, Boston, MA 02215" +292791,Macbook Pro Laptop,1,1700,11/28/19 09:21,"578 Jackson St, Boston, MA 02215" +292792,27in FHD Monitor,1,149.99,11/03/19 16:41,"867 Lake St, Seattle, WA 98101" +292793,AA Batteries (4-pack),1,3.84,11/30/19 13:40,"81 North St, San Francisco, CA 94016" +292794,27in FHD Monitor,1,149.99,11/28/19 09:49,"521 Main St, Boston, MA 02215" +292795,iPhone,1,700,11/07/19 10:36,"821 Highland St, San Francisco, CA 94016" +292795,Lightning Charging Cable,1,14.95,11/07/19 10:36,"821 Highland St, San Francisco, CA 94016" +292796,Lightning Charging Cable,1,14.95,11/25/19 14:19,"584 Johnson St, Seattle, WA 98101" +292797,Wired Headphones,1,11.99,11/25/19 11:40,"787 Meadow St, Seattle, WA 98101" +292798,AAA Batteries (4-pack),1,2.99,11/08/19 22:58,"220 Willow St, Atlanta, GA 30301" +292799,Macbook Pro Laptop,1,1700,11/13/19 10:36,"936 Hickory St, San Francisco, CA 94016" +292800,iPhone,1,700,11/13/19 20:45,"124 West St, Seattle, WA 98101" +292801,Lightning Charging Cable,1,14.95,11/27/19 09:42,"309 5th St, San Francisco, CA 94016" +292802,Wired Headphones,1,11.99,11/05/19 18:51,"400 9th St, New York City, NY 10001" +292803,Bose SoundSport Headphones,1,99.99,11/16/19 23:53,"197 Hickory St, New York City, NY 10001" +292804,27in FHD Monitor,1,149.99,11/10/19 12:49,"204 10th St, Seattle, WA 98101" +292805,USB-C Charging Cable,1,11.95,11/08/19 23:10,"896 5th St, Seattle, WA 98101" +292806,AAA Batteries (4-pack),1,2.99,11/27/19 06:24,"366 Jackson St, Seattle, WA 98101" +292807,Lightning Charging Cable,1,14.95,11/05/19 18:41,"877 Lakeview St, Los Angeles, CA 90001" +292808,34in Ultrawide Monitor,1,379.99,11/20/19 16:30,"987 12th St, San Francisco, CA 94016" +292809,Lightning Charging Cable,1,14.95,11/10/19 17:40,"26 2nd St, New York City, NY 10001" +292810,Wired Headphones,1,11.99,11/18/19 19:45,"586 Jackson St, New York City, NY 10001" +292811,ThinkPad Laptop,1,999.99,11/04/19 09:12,"861 2nd St, Los Angeles, CA 90001" +292812,AA Batteries (4-pack),1,3.84,11/14/19 15:58,"420 Spruce St, Los Angeles, CA 90001" +292813,AAA Batteries (4-pack),2,2.99,11/21/19 15:14,"113 Sunset St, Los Angeles, CA 90001" +292814,Bose SoundSport Headphones,1,99.99,11/07/19 17:39,"374 Adams St, Boston, MA 02215" +292815,Lightning Charging Cable,1,14.95,11/22/19 22:06,"416 Adams St, Austin, TX 73301" +292816,AAA Batteries (4-pack),3,2.99,11/04/19 05:42,"505 Elm St, New York City, NY 10001" +292817,AAA Batteries (4-pack),2,2.99,11/01/19 18:16,"927 10th St, Boston, MA 02215" +292818,USB-C Charging Cable,1,11.95,11/19/19 09:35,"13 11th St, Austin, TX 73301" +292819,Lightning Charging Cable,2,14.95,11/10/19 21:26,"15 13th St, Los Angeles, CA 90001" +292820,USB-C Charging Cable,1,11.95,11/20/19 05:15,"889 Elm St, Boston, MA 02215" +292821,Lightning Charging Cable,1,14.95,11/12/19 21:33,"446 Park St, Seattle, WA 98101" +292822,USB-C Charging Cable,1,11.95,11/19/19 17:38,"518 West St, San Francisco, CA 94016" +,,,,, +292823,iPhone,1,700,11/12/19 08:20,"721 Elm St, Boston, MA 02215" +292824,iPhone,1,700,11/26/19 23:07,"323 Highland St, San Francisco, CA 94016" +292825,Macbook Pro Laptop,1,1700,11/24/19 14:53,"156 5th St, Los Angeles, CA 90001" +292826,Google Phone,1,600,11/04/19 16:32,"351 9th St, Dallas, TX 75001" +292826,USB-C Charging Cable,1,11.95,11/04/19 16:32,"351 9th St, Dallas, TX 75001" +292827,Wired Headphones,1,11.99,11/09/19 19:16,"363 Meadow St, Seattle, WA 98101" +292828,LG Dryer,1,600.0,11/22/19 15:34,"731 2nd St, New York City, NY 10001" +292829,iPhone,1,700,11/28/19 14:23,"878 Lake St, Seattle, WA 98101" +292829,Wired Headphones,1,11.99,11/28/19 14:23,"878 Lake St, Seattle, WA 98101" +292830,ThinkPad Laptop,1,999.99,11/12/19 00:25,"896 Johnson St, Boston, MA 02215" +292831,Apple Airpods Headphones,1,150,11/18/19 19:21,"648 Meadow St, Seattle, WA 98101" +292832,USB-C Charging Cable,1,11.95,11/23/19 21:51,"776 Chestnut St, San Francisco, CA 94016" +292833,AA Batteries (4-pack),2,3.84,11/20/19 18:33,"278 North St, Los Angeles, CA 90001" +292834,AAA Batteries (4-pack),1,2.99,11/15/19 07:40,"89 Sunset St, San Francisco, CA 94016" +292835,Lightning Charging Cable,1,14.95,11/30/19 13:07,"601 6th St, San Francisco, CA 94016" +292836,Wired Headphones,2,11.99,11/08/19 11:29,"758 Dogwood St, New York City, NY 10001" +292837,AA Batteries (4-pack),1,3.84,11/08/19 16:53,"878 Sunset St, Dallas, TX 75001" +292838,27in FHD Monitor,1,149.99,11/20/19 21:07,"115 1st St, San Francisco, CA 94016" +292839,20in Monitor,1,109.99,11/04/19 09:46,"489 Lincoln St, Portland, OR 97035" +292840,USB-C Charging Cable,1,11.95,11/24/19 12:26,"933 9th St, Los Angeles, CA 90001" +292841,34in Ultrawide Monitor,1,379.99,11/20/19 12:02,"484 Meadow St, Los Angeles, CA 90001" +292842,Wired Headphones,1,11.99,11/21/19 23:39,"273 5th St, New York City, NY 10001" +292843,AA Batteries (4-pack),1,3.84,11/03/19 14:32,"486 Main St, San Francisco, CA 94016" +292844,Wired Headphones,1,11.99,11/16/19 08:18,"51 Jackson St, Los Angeles, CA 90001" +292845,AA Batteries (4-pack),1,3.84,11/26/19 07:46,"293 9th St, Dallas, TX 75001" +292846,20in Monitor,1,109.99,11/10/19 15:53,"110 Cedar St, New York City, NY 10001" +292847,Wired Headphones,1,11.99,11/17/19 18:41,"799 Jackson St, Boston, MA 02215" +292848,Apple Airpods Headphones,1,150,11/09/19 00:08,"492 Hickory St, Los Angeles, CA 90001" +292849,ThinkPad Laptop,1,999.99,11/21/19 11:44,"675 Johnson St, Seattle, WA 98101" +292850,iPhone,1,700,11/04/19 19:58,"393 1st St, Los Angeles, CA 90001" +292851,Bose SoundSport Headphones,1,99.99,11/30/19 18:51,"395 Johnson St, San Francisco, CA 94016" +292852,AA Batteries (4-pack),2,3.84,11/23/19 11:42,"771 Hickory St, San Francisco, CA 94016" +292853,Macbook Pro Laptop,1,1700,11/05/19 08:45,"674 Park St, New York City, NY 10001" +292854,ThinkPad Laptop,1,999.99,11/02/19 11:57,"163 South St, New York City, NY 10001" +292855,Lightning Charging Cable,1,14.95,11/04/19 21:37,"325 River St, Dallas, TX 75001" +292856,Wired Headphones,1,11.99,11/08/19 13:41,"616 Wilson St, San Francisco, CA 94016" +292857,USB-C Charging Cable,1,11.95,11/27/19 16:19,"208 Elm St, Atlanta, GA 30301" +292858,Bose SoundSport Headphones,1,99.99,11/12/19 12:59,"596 7th St, Atlanta, GA 30301" +292859,AA Batteries (4-pack),2,3.84,11/04/19 11:41,"103 Park St, Seattle, WA 98101" +292860,Lightning Charging Cable,1,14.95,11/21/19 12:19,"399 Sunset St, Los Angeles, CA 90001" +292861,27in FHD Monitor,1,149.99,11/22/19 12:10,"29 Jefferson St, Atlanta, GA 30301" +292862,USB-C Charging Cable,1,11.95,11/30/19 17:18,"152 Cherry St, San Francisco, CA 94016" +292863,AA Batteries (4-pack),3,3.84,11/17/19 12:43,"732 Spruce St, Dallas, TX 75001" +292864,Lightning Charging Cable,1,14.95,11/20/19 00:12,"509 River St, San Francisco, CA 94016" +292865,Wired Headphones,1,11.99,11/16/19 10:59,"326 Ridge St, San Francisco, CA 94016" +292866,Wired Headphones,1,11.99,11/15/19 09:08,"715 Ridge St, New York City, NY 10001" +292867,Wired Headphones,1,11.99,11/25/19 17:28,"41 Elm St, San Francisco, CA 94016" +292868,34in Ultrawide Monitor,1,379.99,11/08/19 17:30,"474 Main St, Atlanta, GA 30301" +292869,27in 4K Gaming Monitor,1,389.99,11/05/19 16:25,"855 West St, San Francisco, CA 94016" +292870,Wired Headphones,1,11.99,11/12/19 11:36,"106 Church St, San Francisco, CA 94016" +292871,Bose SoundSport Headphones,1,99.99,11/29/19 17:25,"432 11th St, Atlanta, GA 30301" +292872,AAA Batteries (4-pack),2,2.99,11/10/19 13:32,"733 13th St, New York City, NY 10001" +292873,AA Batteries (4-pack),2,3.84,11/03/19 23:18,"921 11th St, Portland, OR 97035" +292874,AA Batteries (4-pack),1,3.84,11/24/19 19:33,"973 Wilson St, Austin, TX 73301" +292875,AAA Batteries (4-pack),1,2.99,11/27/19 10:01,"119 Lakeview St, Atlanta, GA 30301" +292876,Bose SoundSport Headphones,1,99.99,11/16/19 11:53,"622 River St, San Francisco, CA 94016" +292877,iPhone,1,700,11/17/19 19:57,"626 Sunset St, Portland, ME 04101" +292878,Apple Airpods Headphones,1,150,11/09/19 20:51,"375 Highland St, Dallas, TX 75001" +292879,AA Batteries (4-pack),1,3.84,11/01/19 14:20,"435 Pine St, Los Angeles, CA 90001" +292880,Bose SoundSport Headphones,1,99.99,11/12/19 17:05,"878 Main St, San Francisco, CA 94016" +292881,ThinkPad Laptop,1,999.99,11/24/19 15:48,"771 8th St, Atlanta, GA 30301" +292882,Bose SoundSport Headphones,1,99.99,11/09/19 17:05,"447 Spruce St, Boston, MA 02215" +292883,AA Batteries (4-pack),1,3.84,11/01/19 16:12,"784 Sunset St, San Francisco, CA 94016" +292884,AA Batteries (4-pack),1,3.84,11/23/19 21:42,"255 5th St, Atlanta, GA 30301" +292885,Wired Headphones,1,11.99,11/12/19 15:15,"23 1st St, Atlanta, GA 30301" +292886,27in 4K Gaming Monitor,1,389.99,11/21/19 15:16,"827 Forest St, Seattle, WA 98101" +292887,34in Ultrawide Monitor,1,379.99,11/29/19 03:45,"457 Highland St, San Francisco, CA 94016" +292888,AAA Batteries (4-pack),3,2.99,11/23/19 20:54,"772 North St, Portland, ME 04101" +292889,Lightning Charging Cable,1,14.95,11/15/19 23:14,"511 11th St, San Francisco, CA 94016" +292890,USB-C Charging Cable,1,11.95,11/15/19 13:15,"930 Lake St, Los Angeles, CA 90001" +292891,Wired Headphones,1,11.99,11/30/19 16:41,"811 7th St, San Francisco, CA 94016" +292892,Wired Headphones,1,11.99,11/01/19 16:50,"622 Hill St, San Francisco, CA 94016" +292893,27in 4K Gaming Monitor,1,389.99,11/14/19 21:51,"123 Sunset St, New York City, NY 10001" +292894,USB-C Charging Cable,1,11.95,11/30/19 07:22,"7 Meadow St, Portland, OR 97035" +292895,Wired Headphones,1,11.99,11/04/19 11:45,"610 West St, Los Angeles, CA 90001" +292896,Lightning Charging Cable,1,14.95,11/18/19 02:54,"326 Cherry St, Boston, MA 02215" +292897,USB-C Charging Cable,1,11.95,11/29/19 13:59,"160 Adams St, San Francisco, CA 94016" +292898,AAA Batteries (4-pack),1,2.99,11/24/19 17:36,"428 Willow St, Austin, TX 73301" +292899,Bose SoundSport Headphones,1,99.99,11/26/19 15:09,"856 14th St, Dallas, TX 75001" +292900,USB-C Charging Cable,1,11.95,11/18/19 20:46,"423 Jefferson St, Dallas, TX 75001" +292901,Apple Airpods Headphones,1,150,11/24/19 15:07,"923 Adams St, Los Angeles, CA 90001" +292902,iPhone,1,700,11/09/19 09:13,"949 Center St, New York City, NY 10001" +292903,Apple Airpods Headphones,1,150,11/16/19 18:18,"160 West St, New York City, NY 10001" +292904,USB-C Charging Cable,1,11.95,11/28/19 16:54,"15 7th St, Seattle, WA 98101" +292905,AA Batteries (4-pack),3,3.84,11/24/19 22:09,"609 Lake St, New York City, NY 10001" +292906,27in 4K Gaming Monitor,1,389.99,11/11/19 10:07,"895 13th St, Boston, MA 02215" +292907,USB-C Charging Cable,1,11.95,11/05/19 02:12,"381 Walnut St, San Francisco, CA 94016" +292908,Wired Headphones,1,11.99,11/01/19 09:11,"108 2nd St, Atlanta, GA 30301" +292909,Bose SoundSport Headphones,1,99.99,11/07/19 14:26,"294 Sunset St, Portland, ME 04101" +292910,34in Ultrawide Monitor,1,379.99,11/18/19 19:07,"560 1st St, Seattle, WA 98101" +292911,Bose SoundSport Headphones,1,99.99,11/08/19 07:38,"207 Hill St, Dallas, TX 75001" +292912,Wired Headphones,1,11.99,11/07/19 13:05,"717 Johnson St, Los Angeles, CA 90001" +292913,Apple Airpods Headphones,1,150,11/06/19 06:31,"490 8th St, Los Angeles, CA 90001" +292914,20in Monitor,1,109.99,11/17/19 17:48,"330 Madison St, San Francisco, CA 94016" +292915,AAA Batteries (4-pack),1,2.99,11/05/19 14:21,"595 Forest St, San Francisco, CA 94016" +292916,USB-C Charging Cable,1,11.95,11/18/19 12:03,"728 Ridge St, Dallas, TX 75001" +292917,Apple Airpods Headphones,1,150,11/08/19 13:49,"680 Hickory St, Dallas, TX 75001" +292918,34in Ultrawide Monitor,1,379.99,11/01/19 17:12,"615 Madison St, Austin, TX 73301" +292919,Apple Airpods Headphones,1,150,11/14/19 11:44,"242 13th St, San Francisco, CA 94016" +292920,Vareebadd Phone,1,400,11/01/19 14:38,"605 10th St, Los Angeles, CA 90001" +292921,AA Batteries (4-pack),1,3.84,11/12/19 20:18,"879 Lakeview St, Atlanta, GA 30301" +292922,LG Washing Machine,1,600.0,11/26/19 09:19,"37 Pine St, Boston, MA 02215" +292923,AAA Batteries (4-pack),1,2.99,11/10/19 14:41,"158 Lake St, San Francisco, CA 94016" +292924,AAA Batteries (4-pack),3,2.99,11/08/19 22:38,"835 Johnson St, San Francisco, CA 94016" +292925,AAA Batteries (4-pack),1,2.99,11/25/19 13:17,"437 Washington St, New York City, NY 10001" +292926,Wired Headphones,1,11.99,11/30/19 09:22,"382 Sunset St, San Francisco, CA 94016" +292927,20in Monitor,1,109.99,11/15/19 19:50,"652 Johnson St, New York City, NY 10001" +292928,27in 4K Gaming Monitor,1,389.99,11/10/19 20:42,"225 11th St, Portland, OR 97035" +292929,AA Batteries (4-pack),1,3.84,11/01/19 13:36,"252 Lakeview St, San Francisco, CA 94016" +292930,27in 4K Gaming Monitor,1,389.99,11/26/19 00:01,"206 1st St, Los Angeles, CA 90001" +292931,ThinkPad Laptop,1,999.99,11/02/19 16:01,"394 Lakeview St, Portland, OR 97035" +292932,AA Batteries (4-pack),1,3.84,11/12/19 13:29,"586 Madison St, Boston, MA 02215" +292933,Wired Headphones,1,11.99,11/13/19 12:55,"936 Dogwood St, Portland, OR 97035" +292934,Lightning Charging Cable,1,14.95,11/05/19 22:28,"785 Dogwood St, Atlanta, GA 30301" +292935,AA Batteries (4-pack),1,3.84,11/29/19 20:22,"66 Church St, Atlanta, GA 30301" +292936,AAA Batteries (4-pack),2,2.99,11/24/19 10:02,"45 1st St, San Francisco, CA 94016" +292937,USB-C Charging Cable,1,11.95,11/17/19 20:12,"243 1st St, San Francisco, CA 94016" +292938,USB-C Charging Cable,1,11.95,11/24/19 10:13,"668 Meadow St, Seattle, WA 98101" +292939,AA Batteries (4-pack),1,3.84,11/12/19 21:37,"432 Chestnut St, New York City, NY 10001" +292940,USB-C Charging Cable,1,11.95,11/08/19 21:18,"640 13th St, San Francisco, CA 94016" +292941,AA Batteries (4-pack),1,3.84,11/07/19 18:39,"183 8th St, Dallas, TX 75001" +292942,AA Batteries (4-pack),1,3.84,11/10/19 21:48,"138 Johnson St, San Francisco, CA 94016" +292943,Wired Headphones,1,11.99,11/14/19 10:57,"363 South St, Atlanta, GA 30301" +292944,USB-C Charging Cable,1,11.95,11/26/19 10:38,"148 Lakeview St, New York City, NY 10001" +292945,AAA Batteries (4-pack),1,2.99,11/22/19 13:39,"867 7th St, Los Angeles, CA 90001" +292946,Apple Airpods Headphones,1,150,11/11/19 18:13,"980 Church St, Los Angeles, CA 90001" +292947,27in 4K Gaming Monitor,1,389.99,11/03/19 19:55,"501 14th St, Austin, TX 73301" +292948,AA Batteries (4-pack),1,3.84,11/11/19 19:43,"970 Lakeview St, Portland, OR 97035" +292949,USB-C Charging Cable,1,11.95,11/24/19 16:46,"797 5th St, San Francisco, CA 94016" +292950,AAA Batteries (4-pack),1,2.99,11/12/19 20:14,"729 Forest St, San Francisco, CA 94016" +292951,Apple Airpods Headphones,1,150,11/22/19 21:08,"31 6th St, Atlanta, GA 30301" +292952,27in FHD Monitor,1,149.99,11/10/19 08:17,"382 Cherry St, Atlanta, GA 30301" +292953,Bose SoundSport Headphones,1,99.99,11/16/19 00:35,"458 Cedar St, Atlanta, GA 30301" +292954,USB-C Charging Cable,1,11.95,11/18/19 21:20,"494 Spruce St, San Francisco, CA 94016" +292955,AA Batteries (4-pack),1,3.84,11/30/19 12:31,"748 10th St, Dallas, TX 75001" +292956,27in FHD Monitor,1,149.99,11/20/19 20:12,"921 9th St, Dallas, TX 75001" +292957,Wired Headphones,1,11.99,11/02/19 23:44,"984 Walnut St, New York City, NY 10001" +292958,Google Phone,1,600,11/07/19 18:27,"272 Adams St, San Francisco, CA 94016" +292959,Lightning Charging Cable,1,14.95,11/21/19 10:26,"950 West St, New York City, NY 10001" +292960,AA Batteries (4-pack),1,3.84,11/03/19 11:14,"209 2nd St, Seattle, WA 98101" +292961,USB-C Charging Cable,1,11.95,11/29/19 15:48,"659 Highland St, Dallas, TX 75001" +292962,ThinkPad Laptop,1,999.99,11/09/19 16:21,"428 4th St, New York City, NY 10001" +292963,27in FHD Monitor,1,149.99,11/23/19 08:38,"767 Dogwood St, Portland, OR 97035" +292964,AAA Batteries (4-pack),3,2.99,11/06/19 10:43,"958 7th St, Atlanta, GA 30301" +292965,Wired Headphones,1,11.99,11/25/19 07:12,"775 Park St, Seattle, WA 98101" +292966,AAA Batteries (4-pack),1,2.99,11/02/19 16:36,"959 6th St, Atlanta, GA 30301" +292967,ThinkPad Laptop,1,999.99,11/11/19 13:16,"519 12th St, Dallas, TX 75001" +292968,Lightning Charging Cable,2,14.95,11/27/19 16:59,"238 Lake St, New York City, NY 10001" +292969,34in Ultrawide Monitor,1,379.99,11/23/19 02:13,"461 North St, San Francisco, CA 94016" +292970,34in Ultrawide Monitor,1,379.99,11/07/19 21:13,"514 Jefferson St, Seattle, WA 98101" +292971,34in Ultrawide Monitor,1,379.99,11/14/19 16:00,"449 Pine St, Portland, OR 97035" +292972,Lightning Charging Cable,1,14.95,11/21/19 21:22,"816 Forest St, San Francisco, CA 94016" +292973,Bose SoundSport Headphones,1,99.99,11/06/19 02:22,"836 14th St, Los Angeles, CA 90001" +292974,ThinkPad Laptop,1,999.99,11/23/19 10:38,"74 Cedar St, Dallas, TX 75001" +292975,Apple Airpods Headphones,1,150,11/28/19 12:19,"592 Highland St, Seattle, WA 98101" +292976,Google Phone,1,600,11/04/19 21:31,"257 Dogwood St, San Francisco, CA 94016" +292977,AA Batteries (4-pack),1,3.84,11/13/19 21:10,"745 Dogwood St, San Francisco, CA 94016" +292978,AAA Batteries (4-pack),1,2.99,11/13/19 09:22,"665 Washington St, Dallas, TX 75001" +292979,USB-C Charging Cable,1,11.95,11/20/19 21:57,"998 Spruce St, New York City, NY 10001" +292980,AA Batteries (4-pack),1,3.84,11/16/19 12:45,"642 7th St, Seattle, WA 98101" +292981,Apple Airpods Headphones,1,150,11/15/19 11:01,"988 Willow St, Seattle, WA 98101" +292982,ThinkPad Laptop,1,999.99,11/24/19 20:08,"623 Pine St, San Francisco, CA 94016" +292983,34in Ultrawide Monitor,1,379.99,11/16/19 06:42,"456 Hill St, San Francisco, CA 94016" +292984,Apple Airpods Headphones,1,150,11/27/19 12:17,"354 Hill St, Los Angeles, CA 90001" +292985,27in FHD Monitor,1,149.99,11/18/19 13:15,"361 Cedar St, New York City, NY 10001" +292986,AA Batteries (4-pack),1,3.84,11/02/19 09:04,"321 Pine St, Los Angeles, CA 90001" +292987,Wired Headphones,1,11.99,11/14/19 21:57,"321 8th St, San Francisco, CA 94016" +292988,27in FHD Monitor,1,149.99,11/26/19 15:49,"190 Ridge St, Portland, OR 97035" +292989,Lightning Charging Cable,1,14.95,11/25/19 18:50,"292 Hickory St, San Francisco, CA 94016" +292990,AAA Batteries (4-pack),1,2.99,11/02/19 17:08,"204 Lakeview St, Atlanta, GA 30301" +292991,AAA Batteries (4-pack),1,2.99,11/10/19 10:11,"617 Cedar St, Austin, TX 73301" +292992,20in Monitor,1,109.99,11/23/19 23:08,"174 10th St, New York City, NY 10001" +292993,USB-C Charging Cable,1,11.95,11/18/19 10:52,"291 South St, Los Angeles, CA 90001" +292994,Apple Airpods Headphones,1,150,11/19/19 00:51,"936 Cherry St, Seattle, WA 98101" +292995,AAA Batteries (4-pack),2,2.99,11/23/19 23:15,"334 Elm St, Seattle, WA 98101" +292996,Apple Airpods Headphones,1,150,11/08/19 16:50,"478 Park St, New York City, NY 10001" +292997,AA Batteries (4-pack),1,3.84,11/08/19 17:59,"595 Lakeview St, Los Angeles, CA 90001" +292998,Wired Headphones,1,11.99,11/07/19 22:31,"451 7th St, Austin, TX 73301" +292999,27in FHD Monitor,1,149.99,11/25/19 13:17,"378 Forest St, San Francisco, CA 94016" +293000,AAA Batteries (4-pack),1,2.99,11/26/19 12:28,"649 Lincoln St, Austin, TX 73301" +293001,Lightning Charging Cable,1,14.95,11/02/19 10:14,"583 Dogwood St, Atlanta, GA 30301" +293002,Bose SoundSport Headphones,1,99.99,11/30/19 22:49,"578 Willow St, Boston, MA 02215" +293003,Flatscreen TV,1,300,11/29/19 20:10,"425 River St, Los Angeles, CA 90001" +293004,Google Phone,1,600,11/29/19 15:15,"931 1st St, San Francisco, CA 94016" +293004,USB-C Charging Cable,1,11.95,11/29/19 15:15,"931 1st St, San Francisco, CA 94016" +293005,Apple Airpods Headphones,1,150,11/20/19 23:10,"352 13th St, Portland, OR 97035" +293006,Wired Headphones,1,11.99,11/09/19 14:46,"129 Maple St, Dallas, TX 75001" +293007,AA Batteries (4-pack),3,3.84,11/07/19 21:36,"575 Center St, Atlanta, GA 30301" +293008,Lightning Charging Cable,1,14.95,11/16/19 11:15,"777 West St, Dallas, TX 75001" +293009,Lightning Charging Cable,1,14.95,11/05/19 18:47,"976 North St, San Francisco, CA 94016" +293010,Wired Headphones,2,11.99,11/06/19 10:36,"842 Pine St, San Francisco, CA 94016" +293011,Wired Headphones,1,11.99,11/07/19 17:12,"154 Elm St, San Francisco, CA 94016" +293012,Apple Airpods Headphones,1,150,11/06/19 10:39,"929 Ridge St, Los Angeles, CA 90001" +293013,Wired Headphones,1,11.99,11/03/19 13:00,"450 10th St, Austin, TX 73301" +293014,Google Phone,1,600,11/20/19 21:41,"477 10th St, San Francisco, CA 94016" +293015,Apple Airpods Headphones,1,150,11/14/19 10:11,"733 Elm St, San Francisco, CA 94016" +293016,Bose SoundSport Headphones,1,99.99,11/24/19 22:17,"155 6th St, Austin, TX 73301" +293017,USB-C Charging Cable,1,11.95,11/10/19 15:01,"3 Spruce St, Atlanta, GA 30301" +293018,AAA Batteries (4-pack),1,2.99,11/25/19 00:33,"245 11th St, San Francisco, CA 94016" +293019,Wired Headphones,1,11.99,11/13/19 23:05,"891 Walnut St, New York City, NY 10001" +293019,27in FHD Monitor,1,149.99,11/13/19 23:05,"891 Walnut St, New York City, NY 10001" +293020,27in FHD Monitor,1,149.99,11/06/19 14:01,"234 Johnson St, Portland, OR 97035" +293021,AAA Batteries (4-pack),1,2.99,11/03/19 14:55,"267 Chestnut St, Dallas, TX 75001" +293022,USB-C Charging Cable,1,11.95,11/09/19 14:24,"97 Madison St, Dallas, TX 75001" +293023,Lightning Charging Cable,1,14.95,11/19/19 15:08,"79 Sunset St, San Francisco, CA 94016" +293024,Apple Airpods Headphones,1,150,11/15/19 11:16,"556 9th St, New York City, NY 10001" +293025,27in 4K Gaming Monitor,1,389.99,11/20/19 11:28,"532 Willow St, Austin, TX 73301" +293026,Bose SoundSport Headphones,1,99.99,11/07/19 10:50,"734 4th St, Seattle, WA 98101" +293027,Lightning Charging Cable,1,14.95,11/12/19 16:09,"921 Meadow St, Boston, MA 02215" +293028,34in Ultrawide Monitor,1,379.99,11/26/19 13:58,"535 Church St, Portland, OR 97035" +293029,Bose SoundSport Headphones,1,99.99,11/02/19 10:39,"968 Lake St, New York City, NY 10001" +293030,USB-C Charging Cable,1,11.95,11/07/19 09:02,"906 Highland St, Boston, MA 02215" +293031,Wired Headphones,1,11.99,11/11/19 10:56,"413 Hill St, Portland, ME 04101" +293032,27in 4K Gaming Monitor,1,389.99,11/04/19 09:47,"221 1st St, San Francisco, CA 94016" +293033,AA Batteries (4-pack),1,3.84,11/13/19 23:10,"769 4th St, Atlanta, GA 30301" +293034,Lightning Charging Cable,1,14.95,11/14/19 09:38,"187 River St, San Francisco, CA 94016" +293035,Flatscreen TV,1,300,11/13/19 16:30,"473 West St, New York City, NY 10001" +293036,Apple Airpods Headphones,1,150,11/21/19 15:45,"862 Park St, Boston, MA 02215" +293037,USB-C Charging Cable,1,11.95,11/19/19 19:27,"347 Highland St, San Francisco, CA 94016" +293038,AAA Batteries (4-pack),1,2.99,11/28/19 20:14,"288 14th St, Dallas, TX 75001" +293039,Lightning Charging Cable,1,14.95,11/28/19 17:27,"462 10th St, Austin, TX 73301" +293040,Macbook Pro Laptop,1,1700,11/18/19 19:41,"679 South St, Atlanta, GA 30301" +293041,AA Batteries (4-pack),2,3.84,11/14/19 15:02,"421 Hickory St, Seattle, WA 98101" +293042,Lightning Charging Cable,1,14.95,11/19/19 12:40,"974 11th St, Los Angeles, CA 90001" +293043,Bose SoundSport Headphones,1,99.99,11/13/19 08:11,"21 14th St, New York City, NY 10001" +293044,Bose SoundSport Headphones,1,99.99,11/06/19 11:16,"503 Sunset St, San Francisco, CA 94016" +293045,AA Batteries (4-pack),1,3.84,11/30/19 16:29,"516 Hickory St, Boston, MA 02215" +293046,27in FHD Monitor,1,149.99,11/15/19 20:42,"706 Cherry St, San Francisco, CA 94016" +293047,AAA Batteries (4-pack),2,2.99,11/25/19 20:23,"860 Maple St, Austin, TX 73301" +293048,ThinkPad Laptop,1,999.99,11/09/19 12:55,"513 4th St, Boston, MA 02215" +293049,iPhone,1,700,11/25/19 08:16,"798 Chestnut St, Seattle, WA 98101" +293050,AA Batteries (4-pack),1,3.84,11/02/19 15:56,"675 Jefferson St, Seattle, WA 98101" +293051,20in Monitor,1,109.99,11/19/19 15:42,"254 Spruce St, San Francisco, CA 94016" +293052,Apple Airpods Headphones,1,150,11/15/19 12:51,"502 Lincoln St, New York City, NY 10001" +293053,Lightning Charging Cable,1,14.95,11/27/19 22:57,"458 Meadow St, Atlanta, GA 30301" +293054,Lightning Charging Cable,1,14.95,11/25/19 01:33,"545 11th St, Atlanta, GA 30301" +293055,Bose SoundSport Headphones,1,99.99,11/30/19 20:26,"702 Walnut St, Portland, OR 97035" +293056,Flatscreen TV,1,300,11/28/19 21:30,"881 Main St, Boston, MA 02215" +293057,27in 4K Gaming Monitor,1,389.99,11/09/19 18:39,"30 Cedar St, Los Angeles, CA 90001" +293058,27in FHD Monitor,1,149.99,11/15/19 22:30,"596 6th St, Atlanta, GA 30301" +293059,Wired Headphones,1,11.99,11/06/19 13:45,"898 11th St, Boston, MA 02215" +293060,Vareebadd Phone,1,400,11/23/19 21:01,"656 Jackson St, Boston, MA 02215" +293061,Apple Airpods Headphones,1,150,11/20/19 14:50,"17 12th St, San Francisco, CA 94016" +293062,Lightning Charging Cable,1,14.95,11/26/19 19:19,"914 Lake St, Seattle, WA 98101" +293063,USB-C Charging Cable,1,11.95,11/09/19 13:50,"277 Church St, Portland, OR 97035" +293064,Wired Headphones,1,11.99,11/14/19 17:41,"912 8th St, Seattle, WA 98101" +293065,Wired Headphones,1,11.99,11/13/19 10:28,"84 Park St, New York City, NY 10001" +293066,Wired Headphones,1,11.99,11/04/19 14:29,"855 7th St, Boston, MA 02215" +293067,Lightning Charging Cable,1,14.95,11/18/19 13:56,"609 14th St, Los Angeles, CA 90001" +293068,Bose SoundSport Headphones,1,99.99,11/22/19 23:04,"663 Forest St, New York City, NY 10001" +293069,27in FHD Monitor,1,149.99,11/20/19 17:49,"416 1st St, New York City, NY 10001" +293070,ThinkPad Laptop,1,999.99,11/29/19 20:49,"597 South St, San Francisco, CA 94016" +293071,ThinkPad Laptop,1,999.99,11/27/19 21:27,"597 Hickory St, Los Angeles, CA 90001" +293072,AAA Batteries (4-pack),1,2.99,11/02/19 19:25,"123 12th St, Seattle, WA 98101" +293073,AA Batteries (4-pack),1,3.84,11/23/19 16:45,"605 Main St, Atlanta, GA 30301" +293074,Google Phone,1,600,11/02/19 15:13,"807 Dogwood St, San Francisco, CA 94016" +293074,USB-C Charging Cable,1,11.95,11/02/19 15:13,"807 Dogwood St, San Francisco, CA 94016" +293075,Lightning Charging Cable,1,14.95,11/05/19 21:17,"959 Cedar St, Dallas, TX 75001" +293076,Bose SoundSport Headphones,1,99.99,11/14/19 18:42,"424 1st St, Boston, MA 02215" +293077,AA Batteries (4-pack),2,3.84,11/16/19 06:50,"108 Main St, Atlanta, GA 30301" +293078,Lightning Charging Cable,1,14.95,11/02/19 15:54,"987 12th St, San Francisco, CA 94016" +293079,USB-C Charging Cable,1,11.95,11/08/19 19:36,"209 Willow St, Los Angeles, CA 90001" +293080,Flatscreen TV,1,300,11/02/19 19:19,"129 North St, San Francisco, CA 94016" +293081,Bose SoundSport Headphones,1,99.99,11/01/19 17:16,"293 Lakeview St, Los Angeles, CA 90001" +293082,27in FHD Monitor,1,149.99,11/05/19 11:51,"617 Hickory St, Portland, OR 97035" +293083,Apple Airpods Headphones,1,150,11/21/19 18:28,"650 Lake St, San Francisco, CA 94016" +293084,27in 4K Gaming Monitor,1,389.99,11/03/19 12:25,"537 Adams St, San Francisco, CA 94016" +293085,Flatscreen TV,1,300,11/08/19 10:58,"411 Wilson St, New York City, NY 10001" +293086,AAA Batteries (4-pack),1,2.99,11/21/19 11:44,"321 Jefferson St, San Francisco, CA 94016" +293087,USB-C Charging Cable,1,11.95,11/09/19 16:40,"981 Washington St, Portland, OR 97035" +293088,ThinkPad Laptop,1,999.99,11/22/19 19:53,"73 13th St, Seattle, WA 98101" +293089,Lightning Charging Cable,1,14.95,11/30/19 21:53,"108 River St, Seattle, WA 98101" +293090,AA Batteries (4-pack),1,3.84,11/30/19 23:02,"461 Hill St, New York City, NY 10001" +293091,Apple Airpods Headphones,1,150,11/09/19 19:11,"85 Johnson St, San Francisco, CA 94016" +293092,Apple Airpods Headphones,1,150,11/28/19 17:39,"36 Maple St, San Francisco, CA 94016" +293093,Wired Headphones,1,11.99,11/09/19 18:33,"554 Cedar St, Boston, MA 02215" +293094,AAA Batteries (4-pack),3,2.99,11/28/19 11:44,"643 Lincoln St, Portland, ME 04101" +293095,USB-C Charging Cable,1,11.95,11/20/19 12:01,"688 Spruce St, Dallas, TX 75001" +293096,USB-C Charging Cable,1,11.95,11/01/19 20:58,"411 Park St, Boston, MA 02215" +293097,USB-C Charging Cable,1,11.95,11/13/19 19:08,"369 Cedar St, San Francisco, CA 94016" +293098,Apple Airpods Headphones,1,150,11/17/19 12:15,"65 9th St, Boston, MA 02215" +293099,27in FHD Monitor,1,149.99,11/24/19 15:46,"719 South St, San Francisco, CA 94016" +293100,Bose SoundSport Headphones,1,99.99,11/05/19 14:11,"13 Walnut St, Seattle, WA 98101" +293101,Flatscreen TV,1,300,11/27/19 07:18,"346 River St, Portland, ME 04101" +293102,Lightning Charging Cable,2,14.95,11/10/19 16:36,"841 River St, Austin, TX 73301" +293103,USB-C Charging Cable,1,11.95,11/21/19 11:48,"806 14th St, Boston, MA 02215" +,,,,, +293104,Macbook Pro Laptop,1,1700,11/28/19 22:17,"253 Highland St, San Francisco, CA 94016" +293105,USB-C Charging Cable,1,11.95,11/20/19 16:22,"153 Lincoln St, New York City, NY 10001" +293106,Bose SoundSport Headphones,1,99.99,11/10/19 18:44,"925 Ridge St, Seattle, WA 98101" +293107,Macbook Pro Laptop,1,1700,11/26/19 01:51,"114 South St, San Francisco, CA 94016" +293108,AA Batteries (4-pack),2,3.84,11/26/19 17:55,"109 Lincoln St, San Francisco, CA 94016" +293109,Flatscreen TV,1,300,11/26/19 19:49,"785 Hill St, Portland, OR 97035" +293110,Lightning Charging Cable,1,14.95,11/23/19 21:03,"272 River St, Dallas, TX 75001" +293111,USB-C Charging Cable,1,11.95,11/02/19 09:19,"399 Adams St, Dallas, TX 75001" +293112,Bose SoundSport Headphones,1,99.99,11/08/19 13:17,"141 Lakeview St, San Francisco, CA 94016" +293113,Wired Headphones,1,11.99,11/02/19 10:37,"406 Lake St, San Francisco, CA 94016" +293114,AAA Batteries (4-pack),1,2.99,11/30/19 21:43,"483 Johnson St, San Francisco, CA 94016" +293115,Apple Airpods Headphones,1,150,11/13/19 12:27,"429 Hill St, San Francisco, CA 94016" +293116,USB-C Charging Cable,1,11.95,11/25/19 12:53,"470 Lake St, Atlanta, GA 30301" +293117,ThinkPad Laptop,1,999.99,11/15/19 20:02,"667 Meadow St, Atlanta, GA 30301" +293118,27in FHD Monitor,1,149.99,11/01/19 21:33,"734 Sunset St, San Francisco, CA 94016" +293119,20in Monitor,1,109.99,11/22/19 20:59,"479 Cedar St, San Francisco, CA 94016" +293120,Lightning Charging Cable,1,14.95,11/27/19 15:38,"268 West St, Los Angeles, CA 90001" +293121,AAA Batteries (4-pack),1,2.99,11/16/19 15:18,"755 South St, Austin, TX 73301" +293122,Wired Headphones,2,11.99,11/17/19 21:47,"868 5th St, Seattle, WA 98101" +293123,Bose SoundSport Headphones,1,99.99,11/30/19 18:28,"626 Spruce St, New York City, NY 10001" +293124,Google Phone,1,600,11/18/19 20:43,"831 Forest St, San Francisco, CA 94016" +293125,AAA Batteries (4-pack),1,2.99,11/21/19 18:33,"15 Jackson St, San Francisco, CA 94016" +293126,AA Batteries (4-pack),1,3.84,11/05/19 10:49,"512 Lincoln St, Portland, OR 97035" +293127,27in FHD Monitor,1,149.99,11/14/19 10:53,"485 Walnut St, New York City, NY 10001" +293128,USB-C Charging Cable,1,11.95,11/17/19 00:22,"392 Washington St, San Francisco, CA 94016" +293129,Flatscreen TV,1,300,11/17/19 10:48,"694 Lincoln St, Boston, MA 02215" +293130,AAA Batteries (4-pack),1,2.99,11/16/19 09:31,"106 13th St, Portland, OR 97035" +293131,Apple Airpods Headphones,1,150,11/01/19 16:24,"72 2nd St, Los Angeles, CA 90001" +293131,iPhone,1,700,11/01/19 16:24,"72 2nd St, Los Angeles, CA 90001" +293132,USB-C Charging Cable,1,11.95,11/19/19 12:31,"350 Spruce St, Boston, MA 02215" +293133,Apple Airpods Headphones,1,150,11/29/19 10:58,"124 10th St, Los Angeles, CA 90001" +293133,27in 4K Gaming Monitor,1,389.99,11/29/19 10:58,"124 10th St, Los Angeles, CA 90001" +293134,Apple Airpods Headphones,1,150,11/05/19 11:19,"444 Maple St, Los Angeles, CA 90001" +293135,AAA Batteries (4-pack),2,2.99,11/25/19 14:49,"666 Meadow St, Los Angeles, CA 90001" +293136,Lightning Charging Cable,1,14.95,11/15/19 19:40,"566 Spruce St, New York City, NY 10001" +293137,Apple Airpods Headphones,1,150,11/25/19 11:32,"675 Spruce St, San Francisco, CA 94016" +293138,Lightning Charging Cable,1,14.95,11/13/19 12:06,"977 Hickory St, Portland, ME 04101" +293139,USB-C Charging Cable,1,11.95,11/24/19 10:12,"8 Walnut St, Dallas, TX 75001" +293140,Lightning Charging Cable,1,14.95,11/15/19 09:47,"22 5th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +293141,Lightning Charging Cable,1,14.95,11/23/19 00:01,"55 Washington St, Seattle, WA 98101" +293142,AAA Batteries (4-pack),1,2.99,11/03/19 11:03,"922 Lakeview St, Seattle, WA 98101" +293143,Wired Headphones,1,11.99,11/23/19 17:49,"692 12th St, San Francisco, CA 94016" +293144,Apple Airpods Headphones,1,150,11/27/19 22:58,"606 11th St, New York City, NY 10001" +293145,27in 4K Gaming Monitor,1,389.99,11/01/19 11:06,"735 Pine St, Los Angeles, CA 90001" +293146,Apple Airpods Headphones,1,150,11/28/19 14:29,"469 2nd St, Boston, MA 02215" +293147,AAA Batteries (4-pack),1,2.99,11/04/19 12:55,"937 North St, San Francisco, CA 94016" +293148,Lightning Charging Cable,1,14.95,11/10/19 06:19,"580 Church St, Boston, MA 02215" +293149,USB-C Charging Cable,1,11.95,11/09/19 12:50,"925 Maple St, Dallas, TX 75001" +293150,Lightning Charging Cable,1,14.95,11/09/19 05:41,"440 Chestnut St, Los Angeles, CA 90001" +293151,AA Batteries (4-pack),1,3.84,11/02/19 09:16,"776 Main St, Los Angeles, CA 90001" +293152,Lightning Charging Cable,1,14.95,11/30/19 21:36,"362 13th St, San Francisco, CA 94016" +293153,Wired Headphones,1,11.99,11/17/19 15:26,"882 Center St, New York City, NY 10001" +293154,AAA Batteries (4-pack),4,2.99,11/14/19 14:44,"630 Dogwood St, San Francisco, CA 94016" +293155,AA Batteries (4-pack),1,3.84,11/08/19 16:01,"916 6th St, Seattle, WA 98101" +293156,AA Batteries (4-pack),1,3.84,11/07/19 18:13,"591 Main St, San Francisco, CA 94016" +293157,Bose SoundSport Headphones,1,99.99,11/13/19 12:47,"427 Elm St, Atlanta, GA 30301" +293158,Apple Airpods Headphones,1,150,11/07/19 14:31,"187 Wilson St, Austin, TX 73301" +293159,USB-C Charging Cable,1,11.95,11/22/19 06:38,"621 Cedar St, Los Angeles, CA 90001" +293160,34in Ultrawide Monitor,1,379.99,11/23/19 20:36,"445 Dogwood St, Dallas, TX 75001" +293161,USB-C Charging Cable,1,11.95,11/23/19 14:06,"870 13th St, San Francisco, CA 94016" +293162,Apple Airpods Headphones,1,150,11/02/19 09:51,"922 7th St, Atlanta, GA 30301" +293163,AAA Batteries (4-pack),2,2.99,11/12/19 21:05,"872 10th St, Boston, MA 02215" +293164,Wired Headphones,1,11.99,11/25/19 23:39,"44 West St, San Francisco, CA 94016" +293165,USB-C Charging Cable,2,11.95,11/24/19 13:30,"184 9th St, Dallas, TX 75001" +293166,AA Batteries (4-pack),1,3.84,11/20/19 18:55,"624 Jefferson St, Austin, TX 73301" +293167,Wired Headphones,1,11.99,11/27/19 10:58,"741 Johnson St, San Francisco, CA 94016" +293168,AAA Batteries (4-pack),1,2.99,11/05/19 15:45,"135 7th St, Los Angeles, CA 90001" +293169,Bose SoundSport Headphones,2,99.99,11/23/19 13:27,"880 Forest St, Portland, OR 97035" +293170,Macbook Pro Laptop,1,1700,11/05/19 08:01,"856 4th St, Los Angeles, CA 90001" +293171,Flatscreen TV,1,300,11/18/19 14:12,"802 2nd St, Boston, MA 02215" +293171,AA Batteries (4-pack),1,3.84,11/18/19 14:12,"802 2nd St, Boston, MA 02215" +293172,AAA Batteries (4-pack),1,2.99,11/11/19 01:34,"47 Walnut St, San Francisco, CA 94016" +293173,Flatscreen TV,1,300,11/26/19 17:24,"198 Church St, Seattle, WA 98101" +293174,27in 4K Gaming Monitor,1,389.99,11/30/19 16:15,"205 Pine St, Los Angeles, CA 90001" +293175,USB-C Charging Cable,1,11.95,11/26/19 11:32,"143 Johnson St, New York City, NY 10001" +293176,Vareebadd Phone,1,400,11/12/19 14:37,"718 South St, San Francisco, CA 94016" +293177,USB-C Charging Cable,1,11.95,11/17/19 13:21,"643 Madison St, Portland, OR 97035" +293178,AAA Batteries (4-pack),1,2.99,11/24/19 13:10,"236 Cedar St, Atlanta, GA 30301" +293179,AA Batteries (4-pack),1,3.84,11/30/19 14:59,"742 Spruce St, San Francisco, CA 94016" +293180,20in Monitor,1,109.99,11/18/19 08:18,"283 8th St, New York City, NY 10001" +293181,Google Phone,1,600,11/25/19 17:04,"360 Cherry St, New York City, NY 10001" +293182,USB-C Charging Cable,1,11.95,11/19/19 20:06,"547 Church St, Boston, MA 02215" +293183,27in 4K Gaming Monitor,1,389.99,11/28/19 23:51,"666 4th St, San Francisco, CA 94016" +293184,AAA Batteries (4-pack),2,2.99,11/19/19 10:44,"554 Lake St, Los Angeles, CA 90001" +293185,34in Ultrawide Monitor,1,379.99,11/26/19 19:37,"464 Meadow St, Los Angeles, CA 90001" +293186,iPhone,1,700,11/03/19 17:38,"744 7th St, Atlanta, GA 30301" +293186,Lightning Charging Cable,1,14.95,11/03/19 17:38,"744 7th St, Atlanta, GA 30301" +293187,Macbook Pro Laptop,1,1700,11/16/19 19:54,"959 Forest St, Dallas, TX 75001" +293188,AA Batteries (4-pack),1,3.84,11/09/19 12:06,"746 Main St, Los Angeles, CA 90001" +293189,iPhone,1,700,11/12/19 17:34,"595 Lake St, New York City, NY 10001" +293190,AAA Batteries (4-pack),2,2.99,11/12/19 18:37,"662 14th St, San Francisco, CA 94016" +293191,Wired Headphones,1,11.99,11/26/19 12:46,"195 8th St, Boston, MA 02215" +293192,Wired Headphones,1,11.99,11/29/19 08:52,"543 Willow St, Austin, TX 73301" +293193,Lightning Charging Cable,1,14.95,11/18/19 18:33,"845 9th St, Dallas, TX 75001" +293194,AA Batteries (4-pack),1,3.84,11/14/19 08:18,"302 Johnson St, San Francisco, CA 94016" +293195,Lightning Charging Cable,1,14.95,11/04/19 22:47,"462 Chestnut St, Dallas, TX 75001" +293196,AAA Batteries (4-pack),1,2.99,11/13/19 16:17,"846 Lincoln St, Portland, OR 97035" +293197,iPhone,1,700,11/27/19 09:49,"247 11th St, Seattle, WA 98101" +293198,AAA Batteries (4-pack),2,2.99,11/05/19 19:38,"638 Church St, Seattle, WA 98101" +293199,Apple Airpods Headphones,1,150,11/27/19 21:26,"762 Lake St, San Francisco, CA 94016" +293199,AA Batteries (4-pack),2,3.84,11/27/19 21:26,"762 Lake St, San Francisco, CA 94016" +293200,Lightning Charging Cable,1,14.95,11/13/19 17:44,"89 5th St, San Francisco, CA 94016" +293201,AAA Batteries (4-pack),1,2.99,11/13/19 01:52,"72 River St, New York City, NY 10001" +293202,USB-C Charging Cable,1,11.95,11/22/19 16:28,"654 11th St, Los Angeles, CA 90001" +293203,Macbook Pro Laptop,1,1700,11/24/19 07:48,"805 South St, New York City, NY 10001" +293204,LG Dryer,1,600.0,11/24/19 20:55,"285 Meadow St, San Francisco, CA 94016" +293205,Lightning Charging Cable,1,14.95,11/20/19 10:34,"392 13th St, Atlanta, GA 30301" +293206,USB-C Charging Cable,1,11.95,11/28/19 11:02,"856 Hickory St, New York City, NY 10001" +293207,USB-C Charging Cable,1,11.95,11/11/19 13:47,"27 North St, Seattle, WA 98101" +293208,AA Batteries (4-pack),1,3.84,11/09/19 19:20,"369 7th St, Seattle, WA 98101" +293209,27in 4K Gaming Monitor,1,389.99,11/05/19 17:01,"270 Elm St, San Francisco, CA 94016" +293210,AAA Batteries (4-pack),1,2.99,11/01/19 14:20,"605 South St, San Francisco, CA 94016" +293211,AAA Batteries (4-pack),1,2.99,11/21/19 15:10,"117 Pine St, Portland, OR 97035" +293212,AAA Batteries (4-pack),1,2.99,11/16/19 22:11,"169 Adams St, Seattle, WA 98101" +293213,USB-C Charging Cable,1,11.95,11/18/19 18:39,"600 Hickory St, Los Angeles, CA 90001" +293214,USB-C Charging Cable,1,11.95,11/23/19 01:06,"982 Main St, Los Angeles, CA 90001" +293215,Lightning Charging Cable,1,14.95,11/26/19 10:06,"330 Washington St, Atlanta, GA 30301" +293216,Bose SoundSport Headphones,1,99.99,11/24/19 16:38,"960 Center St, Los Angeles, CA 90001" +293217,Bose SoundSport Headphones,1,99.99,11/26/19 12:52,"933 Dogwood St, San Francisco, CA 94016" +293218,AAA Batteries (4-pack),1,2.99,11/04/19 12:23,"114 Pine St, Boston, MA 02215" +293219,USB-C Charging Cable,2,11.95,11/05/19 12:50,"251 Lincoln St, Boston, MA 02215" +293220,Flatscreen TV,1,300,11/11/19 12:25,"873 Center St, San Francisco, CA 94016" +293221,AAA Batteries (4-pack),1,2.99,11/09/19 20:57,"185 Meadow St, San Francisco, CA 94016" +293222,Wired Headphones,1,11.99,11/06/19 09:23,"656 West St, New York City, NY 10001" +293223,27in FHD Monitor,1,149.99,11/10/19 18:07,"334 2nd St, Los Angeles, CA 90001" +293224,Lightning Charging Cable,1,14.95,11/01/19 10:50,"212 6th St, Portland, OR 97035" +293225,Lightning Charging Cable,1,14.95,11/16/19 21:57,"289 Main St, Los Angeles, CA 90001" +293226,Lightning Charging Cable,1,14.95,11/17/19 13:52,"591 2nd St, New York City, NY 10001" +293227,27in 4K Gaming Monitor,1,389.99,11/09/19 06:58,"855 4th St, San Francisco, CA 94016" +293228,Lightning Charging Cable,1,14.95,11/16/19 18:08,"432 Ridge St, New York City, NY 10001" +293229,Apple Airpods Headphones,1,150,11/21/19 13:20,"517 Madison St, Los Angeles, CA 90001" +293230,34in Ultrawide Monitor,1,379.99,11/06/19 12:28,"921 12th St, Portland, OR 97035" +293231,USB-C Charging Cable,1,11.95,11/11/19 19:52,"917 Madison St, Seattle, WA 98101" +293232,Bose SoundSport Headphones,1,99.99,11/26/19 19:52,"770 Maple St, Dallas, TX 75001" +293233,AAA Batteries (4-pack),1,2.99,11/16/19 15:51,"993 Sunset St, Austin, TX 73301" +293234,USB-C Charging Cable,1,11.95,11/05/19 05:19,"715 8th St, San Francisco, CA 94016" +293235,Bose SoundSport Headphones,1,99.99,11/17/19 20:30,"912 13th St, New York City, NY 10001" +293236,20in Monitor,1,109.99,11/20/19 22:32,"136 Cherry St, San Francisco, CA 94016" +293237,iPhone,1,700,11/24/19 14:31,"443 14th St, Portland, OR 97035" +293238,USB-C Charging Cable,1,11.95,11/28/19 00:05,"563 Jackson St, Atlanta, GA 30301" +293239,27in FHD Monitor,1,149.99,11/01/19 15:35,"199 Pine St, New York City, NY 10001" +293240,ThinkPad Laptop,1,999.99,11/20/19 23:36,"832 Maple St, San Francisco, CA 94016" +293241,Wired Headphones,1,11.99,11/25/19 15:05,"717 Sunset St, Portland, ME 04101" +293242,AA Batteries (4-pack),1,3.84,11/30/19 11:56,"577 Forest St, Atlanta, GA 30301" +293243,AAA Batteries (4-pack),4,2.99,11/07/19 18:07,"689 Johnson St, Dallas, TX 75001" +293244,Google Phone,1,600,11/15/19 11:32,"659 Washington St, Dallas, TX 75001" +293245,Lightning Charging Cable,1,14.95,11/03/19 10:45,"224 Hill St, Los Angeles, CA 90001" +293246,Bose SoundSport Headphones,1,99.99,11/28/19 18:02,"485 Highland St, Seattle, WA 98101" +293247,AAA Batteries (4-pack),1,2.99,11/14/19 23:18,"512 Lincoln St, Los Angeles, CA 90001" +293248,Apple Airpods Headphones,1,150,11/21/19 14:52,"983 Johnson St, San Francisco, CA 94016" +293249,AAA Batteries (4-pack),1,2.99,11/25/19 20:55,"388 8th St, Seattle, WA 98101" +293250,27in 4K Gaming Monitor,1,389.99,11/25/19 18:11,"676 Hickory St, New York City, NY 10001" +293251,Google Phone,1,600,11/14/19 22:46,"156 Willow St, Atlanta, GA 30301" +293252,20in Monitor,1,109.99,11/21/19 08:49,"530 Highland St, San Francisco, CA 94016" +293253,Lightning Charging Cable,1,14.95,11/01/19 08:59,"155 River St, Los Angeles, CA 90001" +293254,Apple Airpods Headphones,1,150,11/07/19 17:39,"112 Jackson St, Boston, MA 02215" +293255,Bose SoundSport Headphones,1,99.99,11/18/19 15:28,"347 Jefferson St, Los Angeles, CA 90001" +293256,AAA Batteries (4-pack),2,2.99,11/02/19 22:59,"807 Pine St, Atlanta, GA 30301" +293257,USB-C Charging Cable,1,11.95,11/05/19 20:54,"945 Maple St, San Francisco, CA 94016" +293257,AA Batteries (4-pack),4,3.84,11/05/19 20:54,"945 Maple St, San Francisco, CA 94016" +293258,AAA Batteries (4-pack),2,2.99,11/24/19 11:13,"818 Lincoln St, San Francisco, CA 94016" +293259,Wired Headphones,1,11.99,11/14/19 15:47,"150 Elm St, Boston, MA 02215" +293260,Lightning Charging Cable,2,14.95,11/28/19 17:00,"451 Washington St, Dallas, TX 75001" +293261,Wired Headphones,1,11.99,11/19/19 18:20,"410 Center St, Portland, OR 97035" +293262,USB-C Charging Cable,1,11.95,11/07/19 17:01,"337 6th St, Portland, ME 04101" +293263,AAA Batteries (4-pack),1,2.99,11/27/19 13:09,"157 Adams St, San Francisco, CA 94016" +293264,Wired Headphones,1,11.99,11/28/19 17:08,"919 Lake St, San Francisco, CA 94016" +293265,Lightning Charging Cable,1,14.95,11/28/19 19:04,"805 Dogwood St, Los Angeles, CA 90001" +293266,Bose SoundSport Headphones,1,99.99,11/13/19 13:13,"374 Center St, Los Angeles, CA 90001" +293267,Apple Airpods Headphones,1,150,11/29/19 14:31,"38 14th St, Portland, OR 97035" +293268,USB-C Charging Cable,1,11.95,11/26/19 11:28,"405 Hickory St, Seattle, WA 98101" +293269,Lightning Charging Cable,2,14.95,11/15/19 07:42,"515 Jackson St, Dallas, TX 75001" +293270,AA Batteries (4-pack),1,3.84,11/05/19 12:10,"248 Lake St, San Francisco, CA 94016" +293271,LG Washing Machine,1,600.0,11/18/19 14:14,"786 13th St, Seattle, WA 98101" +293272,Bose SoundSport Headphones,1,99.99,11/24/19 16:18,"102 Main St, San Francisco, CA 94016" +293273,AA Batteries (4-pack),2,3.84,11/11/19 03:23,"780 Willow St, San Francisco, CA 94016" +293274,Macbook Pro Laptop,1,1700,11/29/19 11:44,"198 Lincoln St, Seattle, WA 98101" +293275,ThinkPad Laptop,1,999.99,11/03/19 10:44,"340 South St, Seattle, WA 98101" +293276,27in FHD Monitor,1,149.99,11/01/19 16:12,"837 Madison St, Austin, TX 73301" +293277,Wired Headphones,1,11.99,11/13/19 12:33,"524 4th St, Atlanta, GA 30301" +293278,ThinkPad Laptop,1,999.99,11/27/19 20:34,"610 12th St, Boston, MA 02215" +293279,Lightning Charging Cable,1,14.95,11/18/19 23:50,"576 Hickory St, Atlanta, GA 30301" +293280,AAA Batteries (4-pack),1,2.99,11/23/19 06:10,"467 Jackson St, San Francisco, CA 94016" +293281,Apple Airpods Headphones,1,150,11/18/19 07:36,"654 Walnut St, Boston, MA 02215" +293282,Wired Headphones,1,11.99,11/28/19 12:15,"661 Center St, Dallas, TX 75001" +293283,Lightning Charging Cable,1,14.95,11/14/19 18:00,"435 Ridge St, San Francisco, CA 94016" +293284,iPhone,1,700,11/27/19 14:13,"832 5th St, Los Angeles, CA 90001" +293285,Lightning Charging Cable,1,14.95,11/05/19 19:40,"179 Chestnut St, Boston, MA 02215" +293286,ThinkPad Laptop,1,999.99,11/06/19 15:00,"9 7th St, Boston, MA 02215" +293287,AAA Batteries (4-pack),1,2.99,11/13/19 10:49,"188 Park St, Austin, TX 73301" +293288,AA Batteries (4-pack),2,3.84,11/15/19 15:02,"388 12th St, Atlanta, GA 30301" +293289,Wired Headphones,1,11.99,11/13/19 10:40,"266 7th St, Dallas, TX 75001" +293290,AA Batteries (4-pack),1,3.84,11/29/19 10:48,"664 Willow St, San Francisco, CA 94016" +293291,27in FHD Monitor,1,149.99,11/17/19 20:09,"153 Ridge St, New York City, NY 10001" +293292,Wired Headphones,1,11.99,11/04/19 11:04,"285 7th St, Boston, MA 02215" +293293,AAA Batteries (4-pack),1,2.99,11/07/19 21:43,"468 Maple St, San Francisco, CA 94016" +293294,34in Ultrawide Monitor,1,379.99,11/11/19 23:55,"998 Center St, New York City, NY 10001" +293295,USB-C Charging Cable,2,11.95,11/16/19 02:46,"78 Madison St, New York City, NY 10001" +293296,AAA Batteries (4-pack),1,2.99,11/17/19 18:33,"969 1st St, San Francisco, CA 94016" +293297,Wired Headphones,1,11.99,11/24/19 07:41,"785 12th St, New York City, NY 10001" +293298,Google Phone,1,600,11/03/19 12:02,"520 Hickory St, Seattle, WA 98101" +293299,Lightning Charging Cable,1,14.95,11/24/19 11:31,"961 Johnson St, Los Angeles, CA 90001" +293300,Lightning Charging Cable,1,14.95,11/24/19 08:07,"600 5th St, New York City, NY 10001" +293301,Bose SoundSport Headphones,1,99.99,11/19/19 20:02,"64 Lakeview St, Boston, MA 02215" +,,,,, +293302,Apple Airpods Headphones,1,150,11/11/19 07:47,"628 Lake St, New York City, NY 10001" +293303,Wired Headphones,1,11.99,11/27/19 20:35,"815 Highland St, San Francisco, CA 94016" +293304,Lightning Charging Cable,1,14.95,11/12/19 12:10,"475 Meadow St, Boston, MA 02215" +293304,34in Ultrawide Monitor,1,379.99,11/12/19 12:10,"475 Meadow St, Boston, MA 02215" +293305,Wired Headphones,2,11.99,11/19/19 07:35,"690 Lincoln St, Boston, MA 02215" +293306,USB-C Charging Cable,1,11.95,11/10/19 11:30,"170 Willow St, Boston, MA 02215" +293307,Wired Headphones,1,11.99,11/01/19 07:20,"606 Cedar St, Atlanta, GA 30301" +293308,AAA Batteries (4-pack),2,2.99,11/11/19 00:27,"305 River St, Dallas, TX 75001" +293309,AA Batteries (4-pack),1,3.84,11/23/19 13:59,"175 Ridge St, Seattle, WA 98101" +293310,Lightning Charging Cable,1,14.95,11/21/19 11:24,"616 Highland St, Austin, TX 73301" +293311,AA Batteries (4-pack),1,3.84,11/28/19 14:42,"436 Johnson St, San Francisco, CA 94016" +293312,AA Batteries (4-pack),2,3.84,11/28/19 17:20,"635 Spruce St, San Francisco, CA 94016" +293313,34in Ultrawide Monitor,1,379.99,11/28/19 16:01,"221 Lake St, Los Angeles, CA 90001" +293314,USB-C Charging Cable,1,11.95,11/15/19 20:27,"333 Johnson St, Los Angeles, CA 90001" +293315,Google Phone,1,600,11/25/19 14:03,"266 Lake St, San Francisco, CA 94016" +293316,AAA Batteries (4-pack),2,2.99,11/12/19 12:59,"16 Jackson St, New York City, NY 10001" +293317,USB-C Charging Cable,1,11.95,11/07/19 08:39,"843 Willow St, New York City, NY 10001" +293318,27in FHD Monitor,1,149.99,11/28/19 09:15,"458 Maple St, New York City, NY 10001" +293319,Lightning Charging Cable,1,14.95,11/08/19 01:53,"965 5th St, New York City, NY 10001" +293320,AA Batteries (4-pack),1,3.84,11/27/19 15:38,"297 Meadow St, San Francisco, CA 94016" +293321,USB-C Charging Cable,1,11.95,11/26/19 17:48,"639 14th St, Austin, TX 73301" +293322,Lightning Charging Cable,1,14.95,11/19/19 17:41,"371 Johnson St, San Francisco, CA 94016" +293323,Apple Airpods Headphones,1,150,11/26/19 19:50,"388 Dogwood St, New York City, NY 10001" +293324,USB-C Charging Cable,1,11.95,11/04/19 11:30,"932 Willow St, Los Angeles, CA 90001" +293325,AA Batteries (4-pack),1,3.84,11/11/19 15:54,"211 Spruce St, Portland, OR 97035" +293326,AAA Batteries (4-pack),1,2.99,11/01/19 17:26,"416 1st St, Los Angeles, CA 90001" +293327,AA Batteries (4-pack),2,3.84,11/25/19 13:32,"918 Wilson St, Portland, ME 04101" +293328,Vareebadd Phone,1,400,11/25/19 13:05,"942 Madison St, Boston, MA 02215" +293329,Google Phone,1,600,11/08/19 18:45,"768 Church St, Los Angeles, CA 90001" +293330,20in Monitor,1,109.99,11/12/19 12:06,"446 11th St, San Francisco, CA 94016" +293331,Macbook Pro Laptop,1,1700,11/01/19 18:41,"584 Hill St, San Francisco, CA 94016" +293332,20in Monitor,1,109.99,11/23/19 22:40,"757 Ridge St, Seattle, WA 98101" +293333,Bose SoundSport Headphones,1,99.99,11/08/19 10:45,"935 8th St, Dallas, TX 75001" +293334,Wired Headphones,1,11.99,11/04/19 18:20,"473 Madison St, Los Angeles, CA 90001" +293335,AA Batteries (4-pack),1,3.84,11/04/19 06:53,"561 Elm St, Los Angeles, CA 90001" +293336,Bose SoundSport Headphones,1,99.99,11/17/19 19:45,"550 11th St, Los Angeles, CA 90001" +293337,AA Batteries (4-pack),1,3.84,11/13/19 13:54,"302 Forest St, Dallas, TX 75001" +293338,27in 4K Gaming Monitor,1,389.99,11/03/19 13:02,"585 Dogwood St, Austin, TX 73301" +293339,AAA Batteries (4-pack),2,2.99,11/14/19 11:44,"435 Pine St, San Francisco, CA 94016" +293340,Bose SoundSport Headphones,1,99.99,11/03/19 20:49,"921 4th St, Seattle, WA 98101" +293341,Apple Airpods Headphones,1,150,11/27/19 14:54,"551 6th St, San Francisco, CA 94016" +293342,27in 4K Gaming Monitor,1,389.99,11/22/19 19:55,"34 Maple St, Boston, MA 02215" +293343,AAA Batteries (4-pack),2,2.99,11/27/19 06:40,"958 South St, San Francisco, CA 94016" +293344,AA Batteries (4-pack),1,3.84,11/24/19 16:01,"843 Center St, San Francisco, CA 94016" +293345,USB-C Charging Cable,1,11.95,11/24/19 22:40,"379 West St, San Francisco, CA 94016" +293346,Apple Airpods Headphones,1,150,11/26/19 19:30,"93 Lakeview St, New York City, NY 10001" +293347,AA Batteries (4-pack),1,3.84,11/20/19 19:45,"860 Walnut St, Dallas, TX 75001" +293348,ThinkPad Laptop,1,999.99,11/23/19 18:57,"143 Jefferson St, Austin, TX 73301" +293349,AA Batteries (4-pack),1,3.84,11/15/19 20:45,"206 Park St, Los Angeles, CA 90001" +293350,AAA Batteries (4-pack),1,2.99,11/18/19 18:32,"434 South St, Portland, OR 97035" +293351,AA Batteries (4-pack),1,3.84,11/04/19 11:33,"537 Lincoln St, Los Angeles, CA 90001" +293352,AAA Batteries (4-pack),2,2.99,11/09/19 15:26,"819 Lakeview St, Atlanta, GA 30301" +293353,USB-C Charging Cable,1,11.95,11/30/19 07:34,"60 13th St, San Francisco, CA 94016" +293354,27in FHD Monitor,1,149.99,11/05/19 20:06,"382 Chestnut St, San Francisco, CA 94016" +293355,Wired Headphones,1,11.99,11/12/19 12:08,"250 Walnut St, Dallas, TX 75001" +293356,AAA Batteries (4-pack),1,2.99,11/09/19 19:06,"424 1st St, Los Angeles, CA 90001" +293357,Wired Headphones,2,11.99,11/13/19 19:05,"925 Jackson St, Dallas, TX 75001" +293358,Lightning Charging Cable,1,14.95,11/14/19 22:25,"348 4th St, Seattle, WA 98101" +293359,Apple Airpods Headphones,1,150,11/27/19 13:09,"96 Cherry St, Boston, MA 02215" +293360,LG Dryer,1,600.0,11/21/19 06:08,"422 Cedar St, Austin, TX 73301" +293361,27in FHD Monitor,1,149.99,11/09/19 18:43,"874 Cherry St, Boston, MA 02215" +293362,AA Batteries (4-pack),1,3.84,11/20/19 21:34,"874 Willow St, Los Angeles, CA 90001" +293363,USB-C Charging Cable,1,11.95,11/25/19 19:57,"147 Pine St, New York City, NY 10001" +293364,Lightning Charging Cable,1,14.95,11/21/19 19:49,"840 Chestnut St, Boston, MA 02215" +293365,Lightning Charging Cable,1,14.95,11/22/19 14:03,"418 13th St, Los Angeles, CA 90001" +293366,AAA Batteries (4-pack),1,2.99,11/09/19 12:15,"709 Hill St, Boston, MA 02215" +293367,Lightning Charging Cable,1,14.95,11/18/19 03:57,"40 Park St, Boston, MA 02215" +293368,Macbook Pro Laptop,1,1700,11/27/19 18:32,"436 Cedar St, New York City, NY 10001" +293369,AA Batteries (4-pack),2,3.84,11/02/19 16:07,"909 7th St, Seattle, WA 98101" +293370,Wired Headphones,1,11.99,11/28/19 20:36,"994 Lake St, San Francisco, CA 94016" +293371,27in FHD Monitor,1,149.99,11/17/19 11:27,"49 Meadow St, Seattle, WA 98101" +293372,AAA Batteries (4-pack),1,2.99,11/29/19 20:54,"994 6th St, San Francisco, CA 94016" +293373,Flatscreen TV,1,300,12/01/19 02:04,"405 Madison St, Los Angeles, CA 90001" +293374,AAA Batteries (4-pack),1,2.99,11/29/19 20:02,"623 Madison St, Dallas, TX 75001" +293375,Google Phone,1,600,11/13/19 07:37,"296 12th St, San Francisco, CA 94016" +293376,27in 4K Gaming Monitor,1,389.99,11/07/19 17:26,"897 4th St, New York City, NY 10001" +293377,USB-C Charging Cable,1,11.95,11/20/19 10:07,"143 Johnson St, Atlanta, GA 30301" +293378,Wired Headphones,1,11.99,11/18/19 17:32,"778 4th St, San Francisco, CA 94016" +293379,Apple Airpods Headphones,1,150,11/14/19 11:16,"396 Church St, Atlanta, GA 30301" +293380,LG Washing Machine,1,600.0,11/12/19 00:23,"133 Spruce St, Atlanta, GA 30301" +293381,27in FHD Monitor,1,149.99,11/23/19 18:53,"95 Chestnut St, Boston, MA 02215" +293382,27in FHD Monitor,1,149.99,11/08/19 22:09,"561 River St, San Francisco, CA 94016" +293383,AA Batteries (4-pack),1,3.84,11/10/19 11:47,"747 10th St, Los Angeles, CA 90001" +293384,34in Ultrawide Monitor,1,379.99,11/26/19 19:56,"518 Chestnut St, San Francisco, CA 94016" +293385,iPhone,1,700,11/01/19 15:38,"621 Hickory St, Austin, TX 73301" +293385,Lightning Charging Cable,1,14.95,11/01/19 15:38,"621 Hickory St, Austin, TX 73301" +293385,Wired Headphones,1,11.99,11/01/19 15:38,"621 Hickory St, Austin, TX 73301" +293386,USB-C Charging Cable,1,11.95,11/04/19 07:52,"397 Washington St, Portland, ME 04101" +293387,Lightning Charging Cable,1,14.95,11/20/19 18:09,"218 Wilson St, San Francisco, CA 94016" +293388,Wired Headphones,1,11.99,11/13/19 22:26,"434 Maple St, Boston, MA 02215" +293389,USB-C Charging Cable,1,11.95,11/17/19 21:24,"707 Dogwood St, Seattle, WA 98101" +293390,AA Batteries (4-pack),1,3.84,11/16/19 19:34,"738 9th St, Dallas, TX 75001" +293391,34in Ultrawide Monitor,1,379.99,11/19/19 17:57,"916 Lake St, New York City, NY 10001" +293392,Wired Headphones,1,11.99,11/09/19 20:31,"688 North St, San Francisco, CA 94016" +293393,Bose SoundSport Headphones,1,99.99,11/17/19 19:28,"701 Johnson St, New York City, NY 10001" +293394,USB-C Charging Cable,1,11.95,11/28/19 12:37,"561 13th St, New York City, NY 10001" +293395,34in Ultrawide Monitor,1,379.99,11/20/19 21:38,"532 11th St, Atlanta, GA 30301" +293396,iPhone,1,700,11/24/19 11:51,"691 Lincoln St, Dallas, TX 75001" +293397,Bose SoundSport Headphones,1,99.99,11/02/19 11:12,"849 Main St, Portland, OR 97035" +293398,USB-C Charging Cable,1,11.95,11/16/19 13:08,"176 Willow St, Los Angeles, CA 90001" +293399,20in Monitor,1,109.99,11/10/19 22:05,"749 Church St, Los Angeles, CA 90001" +293399,27in 4K Gaming Monitor,1,389.99,11/10/19 22:05,"749 Church St, Los Angeles, CA 90001" +293400,ThinkPad Laptop,1,999.99,11/21/19 18:55,"170 Adams St, Los Angeles, CA 90001" +293401,Google Phone,1,600,11/24/19 21:12,"560 Ridge St, Austin, TX 73301" +293402,AAA Batteries (4-pack),2,2.99,11/16/19 09:19,"882 14th St, San Francisco, CA 94016" +293403,AA Batteries (4-pack),1,3.84,11/28/19 20:50,"203 7th St, Los Angeles, CA 90001" +293404,Wired Headphones,1,11.99,11/13/19 10:33,"172 Dogwood St, San Francisco, CA 94016" +293405,Bose SoundSport Headphones,1,99.99,11/04/19 11:55,"805 Madison St, New York City, NY 10001" +293406,AAA Batteries (4-pack),4,2.99,11/03/19 20:33,"458 6th St, New York City, NY 10001" +293407,Bose SoundSport Headphones,1,99.99,11/11/19 16:00,"820 Lakeview St, Boston, MA 02215" +293408,AA Batteries (4-pack),2,3.84,11/27/19 15:14,"979 Forest St, San Francisco, CA 94016" +293409,Apple Airpods Headphones,1,150,11/05/19 12:42,"809 Ridge St, Boston, MA 02215" +293409,Flatscreen TV,1,300,11/05/19 12:42,"809 Ridge St, Boston, MA 02215" +293410,27in FHD Monitor,1,149.99,11/02/19 18:09,"203 12th St, Boston, MA 02215" +293411,LG Dryer,1,600.0,11/02/19 18:01,"660 6th St, New York City, NY 10001" +293412,AA Batteries (4-pack),1,3.84,11/04/19 21:24,"596 Lakeview St, Boston, MA 02215" +293413,20in Monitor,1,109.99,11/29/19 04:34,"708 Cherry St, San Francisco, CA 94016" +293414,USB-C Charging Cable,2,11.95,11/02/19 23:20,"384 Spruce St, New York City, NY 10001" +293415,Apple Airpods Headphones,1,150,11/13/19 19:26,"817 Hill St, San Francisco, CA 94016" +293416,Wired Headphones,1,11.99,11/12/19 14:05,"420 South St, Austin, TX 73301" +293417,AA Batteries (4-pack),2,3.84,11/04/19 19:26,"778 10th St, San Francisco, CA 94016" +293418,Apple Airpods Headphones,1,150,11/06/19 23:23,"423 Elm St, Seattle, WA 98101" +293419,iPhone,1,700,11/08/19 19:08,"877 Cedar St, New York City, NY 10001" +293420,27in FHD Monitor,1,149.99,11/30/19 00:37,"735 Park St, Boston, MA 02215" +293421,AA Batteries (4-pack),1,3.84,11/04/19 02:36,"145 12th St, Atlanta, GA 30301" +293422,USB-C Charging Cable,1,11.95,11/25/19 14:54,"579 South St, San Francisco, CA 94016" +293423,Wired Headphones,1,11.99,11/17/19 00:15,"215 Jackson St, San Francisco, CA 94016" +293424,Lightning Charging Cable,1,14.95,11/29/19 12:18,"71 River St, Seattle, WA 98101" +293425,Macbook Pro Laptop,1,1700,11/12/19 14:47,"431 Washington St, Seattle, WA 98101" +293426,AA Batteries (4-pack),1,3.84,11/22/19 22:15,"742 14th St, San Francisco, CA 94016" +293427,20in Monitor,1,109.99,11/09/19 09:06,"334 Lincoln St, Dallas, TX 75001" +293428,AA Batteries (4-pack),1,3.84,11/17/19 00:03,"163 Lincoln St, San Francisco, CA 94016" +293429,USB-C Charging Cable,1,11.95,11/12/19 21:40,"162 Maple St, Los Angeles, CA 90001" +293430,Bose SoundSport Headphones,1,99.99,11/04/19 17:15,"497 Ridge St, San Francisco, CA 94016" +293431,AAA Batteries (4-pack),1,2.99,11/11/19 10:53,"860 South St, Dallas, TX 75001" +293432,ThinkPad Laptop,1,999.99,11/10/19 14:29,"842 Chestnut St, New York City, NY 10001" +293433,Lightning Charging Cable,1,14.95,11/13/19 10:30,"397 2nd St, Los Angeles, CA 90001" +293434,USB-C Charging Cable,1,11.95,11/23/19 03:39,"546 5th St, New York City, NY 10001" +293435,Wired Headphones,1,11.99,11/30/19 19:00,"735 Lakeview St, San Francisco, CA 94016" +293436,AAA Batteries (4-pack),2,2.99,11/04/19 13:44,"79 Meadow St, Los Angeles, CA 90001" +293437,Flatscreen TV,1,300,11/08/19 16:27,"630 Church St, Boston, MA 02215" +293438,34in Ultrawide Monitor,1,379.99,11/10/19 07:15,"822 Pine St, Dallas, TX 75001" +293439,34in Ultrawide Monitor,1,379.99,11/28/19 15:03,"895 Chestnut St, Boston, MA 02215" +293440,USB-C Charging Cable,1,11.95,11/01/19 15:07,"130 Walnut St, Boston, MA 02215" +293441,Wired Headphones,2,11.99,11/13/19 00:04,"284 North St, Boston, MA 02215" +293442,Lightning Charging Cable,2,14.95,11/01/19 10:21,"953 Meadow St, Seattle, WA 98101" +293443,Macbook Pro Laptop,1,1700,11/06/19 18:03,"679 Washington St, Atlanta, GA 30301" +293444,AAA Batteries (4-pack),1,2.99,11/25/19 19:48,"837 Church St, San Francisco, CA 94016" +293445,Wired Headphones,1,11.99,11/11/19 18:11,"293 Sunset St, San Francisco, CA 94016" +293446,Apple Airpods Headphones,1,150,11/17/19 18:47,"349 4th St, Atlanta, GA 30301" +293447,USB-C Charging Cable,2,11.95,11/16/19 18:45,"83 1st St, Boston, MA 02215" +293448,Wired Headphones,2,11.99,11/26/19 17:05,"419 Lincoln St, New York City, NY 10001" +293448,Apple Airpods Headphones,1,150,11/26/19 17:05,"419 Lincoln St, New York City, NY 10001" +293449,20in Monitor,1,109.99,11/19/19 23:54,"541 10th St, Dallas, TX 75001" +293450,Bose SoundSport Headphones,1,99.99,11/29/19 22:45,"779 Sunset St, San Francisco, CA 94016" +293450,Apple Airpods Headphones,1,150,11/29/19 22:45,"779 Sunset St, San Francisco, CA 94016" +293451,AAA Batteries (4-pack),1,2.99,11/13/19 09:03,"238 Madison St, Los Angeles, CA 90001" +293452,Macbook Pro Laptop,1,1700,11/16/19 19:23,"928 Chestnut St, Los Angeles, CA 90001" +293453,Macbook Pro Laptop,1,1700,11/05/19 17:32,"189 Center St, Dallas, TX 75001" +293454,Apple Airpods Headphones,1,150,11/03/19 14:12,"340 Main St, Portland, OR 97035" +293455,27in FHD Monitor,1,149.99,11/06/19 16:07,"822 Center St, New York City, NY 10001" +293456,AA Batteries (4-pack),1,3.84,11/21/19 18:15,"901 Willow St, Los Angeles, CA 90001" +293457,Wired Headphones,1,11.99,11/20/19 06:59,"702 5th St, Dallas, TX 75001" +293458,AAA Batteries (4-pack),1,2.99,11/30/19 21:16,"729 14th St, Portland, OR 97035" +293459,Bose SoundSport Headphones,1,99.99,11/05/19 18:01,"854 Walnut St, San Francisco, CA 94016" +293460,Apple Airpods Headphones,1,150,11/26/19 23:21,"214 7th St, New York City, NY 10001" +293461,USB-C Charging Cable,1,11.95,11/30/19 13:59,"44 Lake St, Austin, TX 73301" +293462,AA Batteries (4-pack),1,3.84,11/21/19 13:53,"283 Sunset St, Portland, OR 97035" +293463,AAA Batteries (4-pack),1,2.99,11/12/19 13:50,"793 Meadow St, San Francisco, CA 94016" +293464,Wired Headphones,1,11.99,11/20/19 10:49,"251 4th St, Atlanta, GA 30301" +293465,27in 4K Gaming Monitor,1,389.99,11/13/19 18:55,"763 Willow St, San Francisco, CA 94016" +293466,27in 4K Gaming Monitor,1,389.99,11/05/19 15:49,"617 Church St, Atlanta, GA 30301" +293467,AA Batteries (4-pack),2,3.84,11/06/19 09:18,"919 River St, San Francisco, CA 94016" +293468,Wired Headphones,1,11.99,11/26/19 22:58,"448 Hickory St, Austin, TX 73301" +293469,AAA Batteries (4-pack),2,2.99,11/07/19 11:58,"123 Ridge St, Los Angeles, CA 90001" +293470,Lightning Charging Cable,1,14.95,11/17/19 10:32,"134 13th St, Seattle, WA 98101" +293471,iPhone,1,700,11/13/19 21:21,"114 Wilson St, Atlanta, GA 30301" +293472,27in FHD Monitor,1,149.99,11/06/19 22:14,"725 7th St, New York City, NY 10001" +293473,AA Batteries (4-pack),1,3.84,11/10/19 15:10,"432 Jefferson St, Los Angeles, CA 90001" +293474,Flatscreen TV,1,300,11/02/19 20:47,"606 Willow St, Boston, MA 02215" +293475,AA Batteries (4-pack),2,3.84,11/07/19 14:40,"288 Lakeview St, Los Angeles, CA 90001" +293476,Bose SoundSport Headphones,1,99.99,11/10/19 18:06,"336 9th St, Boston, MA 02215" +293477,Macbook Pro Laptop,1,1700,11/23/19 07:20,"182 4th St, Atlanta, GA 30301" +293478,Bose SoundSport Headphones,1,99.99,11/10/19 09:54,"978 Wilson St, Boston, MA 02215" +293479,AA Batteries (4-pack),1,3.84,11/01/19 11:09,"881 Sunset St, Austin, TX 73301" +293480,Google Phone,1,600,11/30/19 09:26,"103 13th St, San Francisco, CA 94016" +293481,Lightning Charging Cable,1,14.95,11/02/19 17:36,"894 River St, Los Angeles, CA 90001" +293482,Macbook Pro Laptop,1,1700,11/10/19 23:07,"494 4th St, Atlanta, GA 30301" +293483,USB-C Charging Cable,1,11.95,11/26/19 09:53,"397 Meadow St, Seattle, WA 98101" +293484,Macbook Pro Laptop,1,1700,11/29/19 08:59,"360 5th St, Los Angeles, CA 90001" +293485,Wired Headphones,1,11.99,11/09/19 19:29,"625 Meadow St, Portland, OR 97035" +293485,USB-C Charging Cable,1,11.95,11/09/19 19:29,"625 Meadow St, Portland, OR 97035" +293486,AA Batteries (4-pack),1,3.84,11/26/19 17:40,"988 Jefferson St, Dallas, TX 75001" +293487,Apple Airpods Headphones,1,150,11/23/19 22:50,"169 Johnson St, Los Angeles, CA 90001" +293488,AA Batteries (4-pack),1,3.84,11/23/19 21:53,"949 Elm St, San Francisco, CA 94016" +293489,Wired Headphones,1,11.99,11/13/19 13:15,"137 Jackson St, San Francisco, CA 94016" +293490,Lightning Charging Cable,1,14.95,11/30/19 09:28,"968 13th St, Austin, TX 73301" +293491,Bose SoundSport Headphones,1,99.99,11/18/19 13:20,"110 River St, Portland, OR 97035" +293492,27in FHD Monitor,1,149.99,11/21/19 19:46,"166 River St, Dallas, TX 75001" +293493,Bose SoundSport Headphones,1,99.99,11/23/19 12:05,"264 13th St, Seattle, WA 98101" +293494,iPhone,1,700,11/27/19 10:35,"656 Madison St, San Francisco, CA 94016" +293495,Macbook Pro Laptop,1,1700,11/03/19 10:03,"99 Johnson St, San Francisco, CA 94016" +293496,AAA Batteries (4-pack),1,2.99,11/24/19 14:11,"83 Cedar St, New York City, NY 10001" +293497,Macbook Pro Laptop,1,1700,11/16/19 15:30,"379 8th St, New York City, NY 10001" +293498,AA Batteries (4-pack),2,3.84,11/27/19 09:19,"4 Center St, New York City, NY 10001" +293499,Bose SoundSport Headphones,1,99.99,11/20/19 08:27,"739 Jackson St, Los Angeles, CA 90001" +293500,AAA Batteries (4-pack),1,2.99,11/06/19 13:18,"53 Dogwood St, Portland, ME 04101" +293501,Bose SoundSport Headphones,1,99.99,11/28/19 10:29,"75 Highland St, San Francisco, CA 94016" +293502,AAA Batteries (4-pack),1,2.99,11/04/19 10:24,"720 Meadow St, Los Angeles, CA 90001" +293503,Lightning Charging Cable,1,14.95,11/13/19 13:45,"455 5th St, San Francisco, CA 94016" +293504,34in Ultrawide Monitor,1,379.99,11/27/19 16:30,"140 Sunset St, Los Angeles, CA 90001" +293505,Vareebadd Phone,1,400,11/23/19 15:25,"886 Pine St, Seattle, WA 98101" +293506,Wired Headphones,1,11.99,11/10/19 14:55,"629 Forest St, Los Angeles, CA 90001" +293507,AAA Batteries (4-pack),2,2.99,11/07/19 11:36,"163 Lake St, Los Angeles, CA 90001" +293508,AA Batteries (4-pack),1,3.84,11/06/19 07:47,"434 South St, San Francisco, CA 94016" +293509,LG Dryer,1,600.0,11/08/19 12:59,"994 West St, Dallas, TX 75001" +293510,Bose SoundSport Headphones,1,99.99,11/03/19 12:17,"85 Lincoln St, Los Angeles, CA 90001" +293511,27in FHD Monitor,1,149.99,11/22/19 08:24,"35 South St, San Francisco, CA 94016" +293512,34in Ultrawide Monitor,1,379.99,11/15/19 20:10,"850 6th St, San Francisco, CA 94016" +293513,Wired Headphones,2,11.99,11/13/19 18:11,"658 Park St, Boston, MA 02215" +293514,AAA Batteries (4-pack),4,2.99,11/28/19 10:36,"483 12th St, Dallas, TX 75001" +293515,AAA Batteries (4-pack),1,2.99,11/28/19 13:13,"896 Madison St, Portland, OR 97035" +293516,Flatscreen TV,1,300,11/16/19 16:53,"149 8th St, San Francisco, CA 94016" +293517,Bose SoundSport Headphones,1,99.99,11/21/19 20:37,"624 Adams St, Boston, MA 02215" +293518,ThinkPad Laptop,1,999.99,11/21/19 12:09,"37 7th St, Portland, ME 04101" +293519,Bose SoundSport Headphones,1,99.99,11/17/19 06:38,"519 6th St, New York City, NY 10001" +293520,iPhone,1,700,11/18/19 13:32,"415 Hill St, Seattle, WA 98101" +293521,iPhone,1,700,11/04/19 15:47,"178 10th St, New York City, NY 10001" +293522,AAA Batteries (4-pack),1,2.99,11/06/19 20:05,"423 Washington St, Atlanta, GA 30301" +293523,20in Monitor,1,109.99,11/02/19 17:54,"757 Maple St, Los Angeles, CA 90001" +293524,AA Batteries (4-pack),2,3.84,11/21/19 11:32,"378 Lake St, Boston, MA 02215" +293525,Wired Headphones,1,11.99,11/15/19 12:05,"390 Maple St, Atlanta, GA 30301" +293526,27in FHD Monitor,1,149.99,11/16/19 10:10,"549 5th St, San Francisco, CA 94016" +293527,27in 4K Gaming Monitor,1,389.99,11/20/19 10:49,"89 11th St, Seattle, WA 98101" +293528,Bose SoundSport Headphones,1,99.99,11/12/19 22:38,"87 Willow St, San Francisco, CA 94016" +293529,AAA Batteries (4-pack),1,2.99,11/25/19 11:22,"886 Walnut St, New York City, NY 10001" +293530,Lightning Charging Cable,1,14.95,11/23/19 13:25,"960 Adams St, Portland, OR 97035" +293531,Google Phone,1,600,11/28/19 20:36,"789 Washington St, San Francisco, CA 94016" +293531,USB-C Charging Cable,1,11.95,11/28/19 20:36,"789 Washington St, San Francisco, CA 94016" +293532,Lightning Charging Cable,1,14.95,11/27/19 11:23,"927 Park St, San Francisco, CA 94016" +293533,Lightning Charging Cable,1,14.95,11/26/19 12:49,"103 Hill St, Atlanta, GA 30301" +293534,AA Batteries (4-pack),1,3.84,11/12/19 23:10,"843 7th St, Austin, TX 73301" +293535,Lightning Charging Cable,1,14.95,11/06/19 06:02,"771 Chestnut St, Seattle, WA 98101" +293536,27in 4K Gaming Monitor,1,389.99,11/12/19 23:24,"630 Wilson St, Seattle, WA 98101" +293537,Lightning Charging Cable,1,14.95,11/09/19 17:52,"273 Madison St, Dallas, TX 75001" +293538,Apple Airpods Headphones,1,150,11/08/19 09:52,"530 13th St, San Francisco, CA 94016" +293539,iPhone,1,700,11/15/19 17:56,"555 River St, Seattle, WA 98101" +293540,34in Ultrawide Monitor,1,379.99,11/07/19 12:47,"642 4th St, Los Angeles, CA 90001" +293541,Google Phone,1,600,11/03/19 14:46,"175 Johnson St, Dallas, TX 75001" +293541,Wired Headphones,1,11.99,11/03/19 14:46,"175 Johnson St, Dallas, TX 75001" +293542,Lightning Charging Cable,1,14.95,11/12/19 14:50,"464 14th St, New York City, NY 10001" +293543,Bose SoundSport Headphones,1,99.99,11/02/19 09:08,"498 10th St, New York City, NY 10001" +293544,AAA Batteries (4-pack),1,2.99,11/26/19 15:07,"352 Spruce St, Los Angeles, CA 90001" +293545,34in Ultrawide Monitor,1,379.99,11/19/19 12:28,"735 Pine St, Portland, OR 97035" +293546,27in 4K Gaming Monitor,1,389.99,11/25/19 18:32,"825 Adams St, Atlanta, GA 30301" +293547,Lightning Charging Cable,1,14.95,11/19/19 13:36,"815 Walnut St, Los Angeles, CA 90001" +293548,Bose SoundSport Headphones,1,99.99,11/12/19 19:28,"748 4th St, Boston, MA 02215" +293549,Bose SoundSport Headphones,1,99.99,11/16/19 21:59,"61 Elm St, Los Angeles, CA 90001" +293550,USB-C Charging Cable,1,11.95,11/10/19 14:49,"73 Lake St, San Francisco, CA 94016" +293551,AA Batteries (4-pack),1,3.84,11/25/19 16:23,"501 Cedar St, Atlanta, GA 30301" +293552,27in 4K Gaming Monitor,1,389.99,11/02/19 14:39,"802 6th St, Seattle, WA 98101" +293553,ThinkPad Laptop,1,999.99,11/18/19 15:27,"491 Pine St, San Francisco, CA 94016" +293554,AA Batteries (4-pack),1,3.84,11/11/19 08:10,"435 Cedar St, Boston, MA 02215" +293555,AAA Batteries (4-pack),1,2.99,11/04/19 12:47,"641 Madison St, Los Angeles, CA 90001" +293556,Apple Airpods Headphones,1,150,11/18/19 21:35,"297 Madison St, Seattle, WA 98101" +293557,AAA Batteries (4-pack),2,2.99,11/05/19 18:10,"592 2nd St, Dallas, TX 75001" +293558,Google Phone,1,600,11/25/19 09:35,"349 6th St, Los Angeles, CA 90001" +293559,iPhone,1,700,11/01/19 12:25,"286 Jefferson St, New York City, NY 10001" +293559,Wired Headphones,1,11.99,11/01/19 12:25,"286 Jefferson St, New York City, NY 10001" +293560,USB-C Charging Cable,1,11.95,11/21/19 16:56,"413 River St, Seattle, WA 98101" +293561,iPhone,1,700,11/27/19 16:00,"620 Hickory St, Seattle, WA 98101" +293562,AA Batteries (4-pack),1,3.84,11/30/19 19:50,"164 Johnson St, San Francisco, CA 94016" +293563,27in FHD Monitor,1,149.99,11/10/19 21:29,"202 Park St, Boston, MA 02215" +293564,Bose SoundSport Headphones,1,99.99,11/05/19 09:41,"846 14th St, New York City, NY 10001" +293565,AA Batteries (4-pack),1,3.84,11/19/19 21:39,"875 South St, Los Angeles, CA 90001" +293566,USB-C Charging Cable,1,11.95,11/30/19 13:55,"464 Madison St, Seattle, WA 98101" +293567,AAA Batteries (4-pack),2,2.99,11/05/19 10:44,"986 Adams St, Los Angeles, CA 90001" +293568,Bose SoundSport Headphones,1,99.99,11/04/19 19:12,"799 Hickory St, Seattle, WA 98101" +293569,AAA Batteries (4-pack),1,2.99,11/02/19 18:26,"865 Elm St, Boston, MA 02215" +293570,27in FHD Monitor,1,149.99,11/07/19 11:39,"245 Lakeview St, San Francisco, CA 94016" +293571,AAA Batteries (4-pack),3,2.99,11/23/19 07:50,"344 Washington St, San Francisco, CA 94016" +293572,Wired Headphones,1,11.99,11/22/19 09:54,"855 7th St, New York City, NY 10001" +293573,Lightning Charging Cable,1,14.95,11/02/19 13:21,"879 Hill St, Seattle, WA 98101" +293574,AAA Batteries (4-pack),2,2.99,11/20/19 18:37,"56 4th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +293575,Lightning Charging Cable,1,14.95,11/03/19 12:14,"473 14th St, Boston, MA 02215" +293576,iPhone,1,700,11/29/19 21:05,"771 8th St, Dallas, TX 75001" +293576,Lightning Charging Cable,1,14.95,11/29/19 21:05,"771 8th St, Dallas, TX 75001" +293576,Wired Headphones,1,11.99,11/29/19 21:05,"771 8th St, Dallas, TX 75001" +293577,Bose SoundSport Headphones,1,99.99,11/01/19 07:56,"202 13th St, Seattle, WA 98101" +293578,Bose SoundSport Headphones,1,99.99,11/13/19 09:13,"520 Hill St, San Francisco, CA 94016" +293579,27in 4K Gaming Monitor,1,389.99,11/11/19 19:16,"18 Walnut St, San Francisco, CA 94016" +293580,27in 4K Gaming Monitor,1,389.99,11/19/19 09:47,"103 Walnut St, New York City, NY 10001" +293581,iPhone,1,700,11/05/19 21:49,"521 Washington St, New York City, NY 10001" +293581,Lightning Charging Cable,1,14.95,11/05/19 21:49,"521 Washington St, New York City, NY 10001" +293582,Bose SoundSport Headphones,1,99.99,11/02/19 12:21,"168 13th St, Los Angeles, CA 90001" +293583,iPhone,1,700,11/13/19 16:51,"10 West St, Los Angeles, CA 90001" +293584,USB-C Charging Cable,2,11.95,11/15/19 10:21,"837 Sunset St, San Francisco, CA 94016" +293585,USB-C Charging Cable,1,11.95,11/15/19 21:13,"221 Meadow St, San Francisco, CA 94016" +293586,34in Ultrawide Monitor,1,379.99,11/15/19 23:34,"27 Walnut St, Seattle, WA 98101" +293587,ThinkPad Laptop,1,999.99,11/05/19 15:03,"625 Center St, San Francisco, CA 94016" +293588,USB-C Charging Cable,2,11.95,11/28/19 16:17,"701 Highland St, San Francisco, CA 94016" +293589,Bose SoundSport Headphones,1,99.99,11/17/19 18:04,"855 South St, San Francisco, CA 94016" +293590,ThinkPad Laptop,1,999.99,11/19/19 11:36,"21 5th St, San Francisco, CA 94016" +293591,ThinkPad Laptop,1,999.99,11/30/19 20:46,"804 Willow St, Dallas, TX 75001" +293592,Lightning Charging Cable,1,14.95,11/28/19 21:46,"788 4th St, New York City, NY 10001" +293593,Macbook Pro Laptop,1,1700,11/09/19 00:01,"893 Pine St, San Francisco, CA 94016" +293594,Bose SoundSport Headphones,1,99.99,11/06/19 16:24,"307 Ridge St, Los Angeles, CA 90001" +293595,20in Monitor,1,109.99,11/03/19 18:31,"17 1st St, Atlanta, GA 30301" +293596,USB-C Charging Cable,1,11.95,11/06/19 18:49,"961 Lincoln St, Seattle, WA 98101" +293597,AAA Batteries (4-pack),1,2.99,11/06/19 14:10,"205 11th St, Dallas, TX 75001" +293598,ThinkPad Laptop,1,999.99,11/01/19 19:49,"77 6th St, San Francisco, CA 94016" +293599,USB-C Charging Cable,1,11.95,11/13/19 19:23,"636 Main St, Austin, TX 73301" +293600,Bose SoundSport Headphones,1,99.99,11/25/19 13:33,"920 Hickory St, New York City, NY 10001" +293601,iPhone,1,700,11/02/19 12:27,"154 Church St, Boston, MA 02215" +293601,Wired Headphones,1,11.99,11/02/19 12:27,"154 Church St, Boston, MA 02215" +293602,27in 4K Gaming Monitor,1,389.99,11/14/19 17:37,"741 Hickory St, San Francisco, CA 94016" +293603,Lightning Charging Cable,1,14.95,11/21/19 20:21,"19 Wilson St, Los Angeles, CA 90001" +293604,USB-C Charging Cable,2,11.95,11/17/19 09:14,"281 River St, Dallas, TX 75001" +293605,Lightning Charging Cable,1,14.95,11/08/19 21:15,"658 Pine St, Atlanta, GA 30301" +293606,Wired Headphones,1,11.99,11/29/19 22:37,"352 Ridge St, Boston, MA 02215" +293607,AAA Batteries (4-pack),4,2.99,11/26/19 19:10,"608 Johnson St, New York City, NY 10001" +293608,Lightning Charging Cable,1,14.95,11/07/19 17:10,"291 5th St, Austin, TX 73301" +293609,AAA Batteries (4-pack),1,2.99,11/27/19 18:33,"240 West St, Boston, MA 02215" +293610,AA Batteries (4-pack),1,3.84,11/10/19 14:55,"568 Highland St, Dallas, TX 75001" +293611,Apple Airpods Headphones,1,150,11/13/19 09:30,"352 1st St, New York City, NY 10001" +293612,Google Phone,1,600,11/04/19 11:52,"523 4th St, New York City, NY 10001" +293613,Google Phone,1,600,11/24/19 09:38,"876 Highland St, Seattle, WA 98101" +293614,Apple Airpods Headphones,1,150,11/03/19 17:57,"395 Washington St, Dallas, TX 75001" +293615,AA Batteries (4-pack),1,3.84,11/12/19 14:55,"546 Hill St, San Francisco, CA 94016" +293616,USB-C Charging Cable,1,11.95,11/01/19 19:11,"220 Dogwood St, New York City, NY 10001" +293617,20in Monitor,1,109.99,11/25/19 14:12,"732 14th St, San Francisco, CA 94016" +293618,Lightning Charging Cable,1,14.95,11/08/19 01:31,"395 9th St, Boston, MA 02215" +293619,Lightning Charging Cable,1,14.95,11/26/19 11:48,"111 Cedar St, Atlanta, GA 30301" +293620,Apple Airpods Headphones,1,150,11/06/19 17:02,"783 Ridge St, Portland, OR 97035" +293621,AA Batteries (4-pack),1,3.84,11/16/19 16:50,"796 Spruce St, Boston, MA 02215" +293622,Google Phone,1,600,11/28/19 00:04,"86 Chestnut St, New York City, NY 10001" +293623,Lightning Charging Cable,1,14.95,11/16/19 07:31,"757 Lakeview St, San Francisco, CA 94016" +293624,Bose SoundSport Headphones,1,99.99,11/13/19 16:24,"65 Church St, Atlanta, GA 30301" +293625,27in 4K Gaming Monitor,1,389.99,11/28/19 22:03,"882 9th St, Los Angeles, CA 90001" +293626,LG Dryer,1,600.0,11/23/19 20:20,"250 Jefferson St, New York City, NY 10001" +293627,Lightning Charging Cable,1,14.95,11/12/19 02:29,"797 Lincoln St, San Francisco, CA 94016" +293628,Wired Headphones,1,11.99,11/04/19 11:06,"848 8th St, New York City, NY 10001" +293629,Google Phone,1,600,11/14/19 19:19,"418 Hill St, Portland, OR 97035" +293630,Lightning Charging Cable,1,14.95,11/30/19 11:22,"752 Cedar St, Boston, MA 02215" +293631,Macbook Pro Laptop,1,1700,11/24/19 08:09,"786 Lakeview St, Boston, MA 02215" +293632,AA Batteries (4-pack),2,3.84,11/13/19 12:40,"544 Elm St, Los Angeles, CA 90001" +293633,AA Batteries (4-pack),1,3.84,11/26/19 10:02,"722 Willow St, Austin, TX 73301" +293634,AA Batteries (4-pack),1,3.84,11/08/19 19:43,"23 8th St, Boston, MA 02215" +293635,34in Ultrawide Monitor,1,379.99,11/27/19 12:29,"309 Church St, New York City, NY 10001" +293636,USB-C Charging Cable,1,11.95,11/30/19 08:47,"932 2nd St, Dallas, TX 75001" +293637,Macbook Pro Laptop,1,1700,11/23/19 15:10,"737 Hill St, Austin, TX 73301" +293638,Bose SoundSport Headphones,1,99.99,11/13/19 12:16,"586 Sunset St, Dallas, TX 75001" +293639,34in Ultrawide Monitor,1,379.99,11/29/19 19:58,"285 Washington St, San Francisco, CA 94016" +293640,20in Monitor,1,109.99,11/15/19 22:48,"523 Walnut St, San Francisco, CA 94016" +293641,Wired Headphones,1,11.99,11/27/19 19:47,"412 Adams St, Los Angeles, CA 90001" +293642,34in Ultrawide Monitor,1,379.99,11/14/19 14:28,"981 8th St, New York City, NY 10001" +293643,34in Ultrawide Monitor,1,379.99,11/12/19 14:56,"261 11th St, New York City, NY 10001" +293643,AAA Batteries (4-pack),1,2.99,11/12/19 14:56,"261 11th St, New York City, NY 10001" +293644,USB-C Charging Cable,1,11.95,11/08/19 19:15,"108 Dogwood St, Portland, OR 97035" +293645,AA Batteries (4-pack),3,3.84,11/06/19 09:30,"53 Spruce St, Los Angeles, CA 90001" +293646,iPhone,1,700,11/06/19 12:54,"563 Lake St, New York City, NY 10001" +293646,Lightning Charging Cable,1,14.95,11/06/19 12:54,"563 Lake St, New York City, NY 10001" +293647,Apple Airpods Headphones,1,150,11/25/19 14:44,"745 Washington St, Portland, ME 04101" +293648,Apple Airpods Headphones,1,150,11/14/19 08:04,"69 Pine St, Dallas, TX 75001" +293649,AA Batteries (4-pack),1,3.84,11/15/19 21:46,"925 Pine St, San Francisco, CA 94016" +293650,27in 4K Gaming Monitor,1,389.99,11/13/19 19:48,"860 Park St, Atlanta, GA 30301" +293651,USB-C Charging Cable,1,11.95,11/06/19 19:59,"65 Cherry St, Portland, OR 97035" +293652,27in 4K Gaming Monitor,1,389.99,11/21/19 17:28,"791 2nd St, Los Angeles, CA 90001" +293653,AA Batteries (4-pack),2,3.84,11/15/19 01:47,"157 River St, Boston, MA 02215" +293654,34in Ultrawide Monitor,1,379.99,11/07/19 17:02,"155 14th St, Austin, TX 73301" +293655,AA Batteries (4-pack),1,3.84,11/24/19 18:32,"439 River St, Austin, TX 73301" +293656,AAA Batteries (4-pack),1,2.99,11/07/19 00:04,"404 Maple St, Los Angeles, CA 90001" +293657,Apple Airpods Headphones,1,150,11/25/19 17:52,"955 Elm St, San Francisco, CA 94016" +293658,Macbook Pro Laptop,1,1700,11/21/19 21:41,"830 Johnson St, New York City, NY 10001" +293659,Lightning Charging Cable,1,14.95,11/09/19 22:06,"980 7th St, Seattle, WA 98101" +293660,Google Phone,1,600,11/13/19 21:34,"932 Willow St, Atlanta, GA 30301" +293661,Vareebadd Phone,1,400,11/24/19 23:27,"337 Madison St, Portland, OR 97035" +293662,AAA Batteries (4-pack),3,2.99,11/08/19 14:16,"827 Maple St, New York City, NY 10001" +293663,Wired Headphones,1,11.99,11/28/19 20:30,"52 Washington St, Boston, MA 02215" +293664,AA Batteries (4-pack),1,3.84,11/01/19 15:23,"205 10th St, San Francisco, CA 94016" +293665,Bose SoundSport Headphones,1,99.99,11/19/19 22:30,"78 South St, Seattle, WA 98101" +293665,Wired Headphones,2,11.99,11/19/19 22:30,"78 South St, Seattle, WA 98101" +293666,Bose SoundSport Headphones,1,99.99,11/24/19 17:04,"609 South St, Los Angeles, CA 90001" +293667,Lightning Charging Cable,1,14.95,11/12/19 13:40,"381 Pine St, New York City, NY 10001" +293668,USB-C Charging Cable,2,11.95,11/22/19 15:05,"674 1st St, Los Angeles, CA 90001" +293669,ThinkPad Laptop,1,999.99,11/06/19 19:30,"675 6th St, New York City, NY 10001" +293670,ThinkPad Laptop,1,999.99,11/17/19 15:56,"859 14th St, Atlanta, GA 30301" +293671,27in FHD Monitor,1,149.99,11/28/19 07:03,"658 Church St, San Francisco, CA 94016" +293672,AAA Batteries (4-pack),1,2.99,11/12/19 14:23,"937 River St, San Francisco, CA 94016" +293673,Bose SoundSport Headphones,1,99.99,11/15/19 22:24,"69 North St, Atlanta, GA 30301" +293674,AAA Batteries (4-pack),2,2.99,11/22/19 12:16,"334 Lake St, Seattle, WA 98101" +293675,Wired Headphones,1,11.99,11/23/19 14:04,"633 8th St, San Francisco, CA 94016" +293676,Bose SoundSport Headphones,1,99.99,11/23/19 09:25,"354 Cedar St, Los Angeles, CA 90001" +293677,AA Batteries (4-pack),1,3.84,11/25/19 08:41,"767 13th St, New York City, NY 10001" +293678,AAA Batteries (4-pack),1,2.99,11/29/19 11:55,"405 Park St, Portland, OR 97035" +293679,AAA Batteries (4-pack),1,2.99,11/12/19 18:04,"818 5th St, Los Angeles, CA 90001" +293680,iPhone,1,700,11/22/19 14:27,"404 River St, San Francisco, CA 94016" +293680,Apple Airpods Headphones,1,150,11/22/19 14:27,"404 River St, San Francisco, CA 94016" +293681,LG Washing Machine,1,600.0,11/12/19 12:27,"32 Highland St, Los Angeles, CA 90001" +293682,AA Batteries (4-pack),1,3.84,11/27/19 03:55,"362 Pine St, San Francisco, CA 94016" +293683,AA Batteries (4-pack),1,3.84,11/12/19 18:25,"697 Lakeview St, Seattle, WA 98101" +293684,Bose SoundSport Headphones,1,99.99,11/30/19 10:50,"138 4th St, Boston, MA 02215" +293685,iPhone,1,700,11/15/19 21:14,"288 Jackson St, Boston, MA 02215" +293686,AAA Batteries (4-pack),1,2.99,11/11/19 08:33,"746 North St, Boston, MA 02215" +293687,Google Phone,1,600,11/12/19 23:20,"606 13th St, Atlanta, GA 30301" +293688,Apple Airpods Headphones,1,150,11/05/19 13:41,"85 Wilson St, San Francisco, CA 94016" +293689,USB-C Charging Cable,2,11.95,11/16/19 09:55,"275 Highland St, New York City, NY 10001" +293690,Macbook Pro Laptop,1,1700,11/08/19 20:08,"58 Spruce St, Boston, MA 02215" +293691,AA Batteries (4-pack),1,3.84,11/19/19 12:36,"819 Johnson St, New York City, NY 10001" +293692,Lightning Charging Cable,1,14.95,11/06/19 16:03,"791 Forest St, Seattle, WA 98101" +293693,AA Batteries (4-pack),2,3.84,11/29/19 12:31,"260 Center St, Portland, OR 97035" +293694,34in Ultrawide Monitor,1,379.99,11/27/19 13:43,"731 Cedar St, Los Angeles, CA 90001" +293695,USB-C Charging Cable,1,11.95,11/25/19 21:56,"829 1st St, New York City, NY 10001" +293696,Apple Airpods Headphones,1,150,11/20/19 01:34,"257 Hill St, Atlanta, GA 30301" +293697,Wired Headphones,1,11.99,11/09/19 11:35,"708 12th St, Austin, TX 73301" +293698,Lightning Charging Cable,1,14.95,11/07/19 11:30,"152 Lincoln St, Boston, MA 02215" +293699,Lightning Charging Cable,1,14.95,11/21/19 23:20,"335 Lake St, Dallas, TX 75001" +293700,AAA Batteries (4-pack),1,2.99,11/07/19 16:04,"220 10th St, Austin, TX 73301" +293701,27in 4K Gaming Monitor,1,389.99,11/19/19 13:03,"964 Park St, Seattle, WA 98101" +293702,Bose SoundSport Headphones,1,99.99,12/01/19 02:26,"666 9th St, Boston, MA 02215" +293703,Bose SoundSport Headphones,1,99.99,11/18/19 18:50,"366 Walnut St, Seattle, WA 98101" +293704,Bose SoundSport Headphones,1,99.99,11/07/19 18:19,"236 Forest St, New York City, NY 10001" +293705,Bose SoundSport Headphones,1,99.99,11/06/19 15:04,"554 10th St, Los Angeles, CA 90001" +293706,USB-C Charging Cable,1,11.95,11/21/19 13:20,"571 9th St, Dallas, TX 75001" +293707,27in FHD Monitor,1,149.99,11/08/19 11:48,"499 Pine St, Austin, TX 73301" +293708,USB-C Charging Cable,1,11.95,11/13/19 15:29,"315 2nd St, New York City, NY 10001" +293709,Apple Airpods Headphones,1,150,11/25/19 14:04,"306 Elm St, New York City, NY 10001" +293710,USB-C Charging Cable,1,11.95,11/04/19 12:01,"32 Jackson St, San Francisco, CA 94016" +293711,AAA Batteries (4-pack),1,2.99,11/23/19 17:09,"848 South St, Los Angeles, CA 90001" +293712,AA Batteries (4-pack),3,3.84,11/29/19 18:47,"987 2nd St, Austin, TX 73301" +293713,Google Phone,1,600,11/21/19 21:29,"962 Spruce St, San Francisco, CA 94016" +293713,USB-C Charging Cable,1,11.95,11/21/19 21:29,"962 Spruce St, San Francisco, CA 94016" +293714,AAA Batteries (4-pack),1,2.99,11/21/19 16:40,"369 Jefferson St, New York City, NY 10001" +293715,27in FHD Monitor,1,149.99,11/05/19 00:30,"802 Dogwood St, San Francisco, CA 94016" +293716,USB-C Charging Cable,1,11.95,11/24/19 16:41,"346 Johnson St, San Francisco, CA 94016" +293717,AAA Batteries (4-pack),1,2.99,11/20/19 15:08,"493 Dogwood St, Los Angeles, CA 90001" +293718,20in Monitor,1,109.99,11/03/19 22:07,"451 South St, New York City, NY 10001" +293719,20in Monitor,1,109.99,11/11/19 18:32,"849 Center St, Los Angeles, CA 90001" +293720,Lightning Charging Cable,1,14.95,11/11/19 13:33,"543 9th St, Dallas, TX 75001" +293721,USB-C Charging Cable,1,11.95,11/14/19 18:43,"183 Highland St, San Francisco, CA 94016" +293721,AA Batteries (4-pack),3,3.84,11/14/19 18:43,"183 Highland St, San Francisco, CA 94016" +293722,Wired Headphones,2,11.99,11/14/19 21:21,"215 12th St, Los Angeles, CA 90001" +293723,Lightning Charging Cable,1,14.95,11/26/19 14:10,"981 4th St, Dallas, TX 75001" +293724,27in FHD Monitor,1,149.99,11/24/19 13:08,"63 Elm St, San Francisco, CA 94016" +293725,27in FHD Monitor,1,149.99,11/24/19 15:10,"343 Johnson St, Atlanta, GA 30301" +293726,AAA Batteries (4-pack),1,2.99,11/09/19 17:02,"67 Maple St, San Francisco, CA 94016" +293727,Macbook Pro Laptop,1,1700,11/03/19 15:25,"755 1st St, New York City, NY 10001" +293728,AAA Batteries (4-pack),1,2.99,11/01/19 17:42,"96 Cherry St, Boston, MA 02215" +293729,AAA Batteries (4-pack),1,2.99,11/01/19 21:19,"242 Hickory St, San Francisco, CA 94016" +293730,27in FHD Monitor,1,149.99,11/07/19 08:17,"901 Sunset St, Los Angeles, CA 90001" +293731,Macbook Pro Laptop,1,1700,11/02/19 19:30,"855 5th St, Dallas, TX 75001" +293732,Apple Airpods Headphones,1,150,11/14/19 01:30,"108 Hickory St, San Francisco, CA 94016" +293733,AAA Batteries (4-pack),1,2.99,11/14/19 19:43,"912 11th St, Dallas, TX 75001" +293734,Wired Headphones,1,11.99,11/10/19 17:47,"389 Lakeview St, New York City, NY 10001" +293735,Apple Airpods Headphones,1,150,11/27/19 20:56,"814 Elm St, San Francisco, CA 94016" +293736,Lightning Charging Cable,1,14.95,11/10/19 17:04,"755 Meadow St, Atlanta, GA 30301" +293737,iPhone,1,700,11/03/19 20:12,"831 Willow St, New York City, NY 10001" +293737,Lightning Charging Cable,1,14.95,11/03/19 20:12,"831 Willow St, New York City, NY 10001" +293738,AA Batteries (4-pack),1,3.84,11/22/19 16:09,"776 1st St, Los Angeles, CA 90001" +293739,AA Batteries (4-pack),2,3.84,11/14/19 20:30,"51 Church St, Austin, TX 73301" +293740,AA Batteries (4-pack),1,3.84,11/10/19 22:21,"568 13th St, San Francisco, CA 94016" +293741,USB-C Charging Cable,1,11.95,11/14/19 21:01,"577 Chestnut St, San Francisco, CA 94016" +293742,iPhone,1,700,11/21/19 11:27,"762 Lake St, Atlanta, GA 30301" +293743,AAA Batteries (4-pack),1,2.99,11/30/19 22:37,"899 Washington St, Los Angeles, CA 90001" +293744,AA Batteries (4-pack),2,3.84,11/01/19 12:33,"876 Johnson St, Portland, OR 97035" +293745,Wired Headphones,1,11.99,11/28/19 16:27,"516 South St, New York City, NY 10001" +293746,Lightning Charging Cable,1,14.95,11/12/19 23:19,"543 9th St, Austin, TX 73301" +293747,USB-C Charging Cable,1,11.95,11/22/19 19:54,"706 Lakeview St, San Francisco, CA 94016" +293748,AA Batteries (4-pack),2,3.84,11/05/19 14:07,"464 5th St, Dallas, TX 75001" +293749,Apple Airpods Headphones,1,150,11/01/19 11:02,"737 Highland St, Los Angeles, CA 90001" +293750,27in 4K Gaming Monitor,1,389.99,11/21/19 21:21,"204 Cherry St, San Francisco, CA 94016" +293751,iPhone,1,700,11/13/19 12:31,"655 6th St, Boston, MA 02215" +293751,Wired Headphones,1,11.99,11/13/19 12:31,"655 6th St, Boston, MA 02215" +293752,AAA Batteries (4-pack),2,2.99,11/25/19 21:04,"954 Hill St, San Francisco, CA 94016" +293753,Lightning Charging Cable,1,14.95,11/04/19 09:14,"868 Forest St, San Francisco, CA 94016" +293754,Apple Airpods Headphones,1,150,11/05/19 14:57,"740 Jackson St, Los Angeles, CA 90001" +293755,iPhone,1,700,11/08/19 19:56,"340 Walnut St, Atlanta, GA 30301" +293756,Apple Airpods Headphones,1,150,11/25/19 16:22,"918 12th St, Los Angeles, CA 90001" +293757,iPhone,1,700,11/30/19 13:33,"504 North St, San Francisco, CA 94016" +293758,Lightning Charging Cable,1,14.95,11/27/19 10:20,"586 Cherry St, San Francisco, CA 94016" +293759,27in FHD Monitor,1,149.99,11/15/19 17:19,"760 Jefferson St, Portland, OR 97035" +293760,USB-C Charging Cable,1,11.95,11/27/19 09:41,"33 6th St, New York City, NY 10001" +293761,Google Phone,1,600,11/05/19 08:53,"684 River St, Seattle, WA 98101" +293762,AA Batteries (4-pack),1,3.84,11/07/19 11:35,"382 North St, Los Angeles, CA 90001" +293763,Bose SoundSport Headphones,1,99.99,11/25/19 15:49,"176 14th St, New York City, NY 10001" +293764,27in FHD Monitor,1,149.99,11/12/19 18:39,"82 Washington St, Seattle, WA 98101" +293765,Wired Headphones,1,11.99,11/10/19 10:49,"808 7th St, San Francisco, CA 94016" +293766,AA Batteries (4-pack),2,3.84,11/16/19 19:12,"264 Forest St, Los Angeles, CA 90001" +293767,iPhone,1,700,11/16/19 18:38,"101 Spruce St, New York City, NY 10001" +293768,Google Phone,1,600,11/09/19 08:06,"459 River St, Seattle, WA 98101" +293768,USB-C Charging Cable,1,11.95,11/09/19 08:06,"459 River St, Seattle, WA 98101" +293769,34in Ultrawide Monitor,1,379.99,11/14/19 11:05,"911 11th St, Austin, TX 73301" +293770,Wired Headphones,1,11.99,11/18/19 12:01,"368 8th St, Los Angeles, CA 90001" +293771,Wired Headphones,1,11.99,11/28/19 15:20,"33 14th St, Atlanta, GA 30301" +293772,Wired Headphones,1,11.99,11/03/19 17:08,"263 Wilson St, Los Angeles, CA 90001" +293773,USB-C Charging Cable,1,11.95,11/27/19 09:24,"764 Park St, San Francisco, CA 94016" +293774,AAA Batteries (4-pack),2,2.99,11/17/19 21:49,"174 Hill St, Seattle, WA 98101" +293775,USB-C Charging Cable,1,11.95,11/11/19 11:25,"873 South St, San Francisco, CA 94016" +293776,Wired Headphones,1,11.99,11/18/19 14:17,"412 Hill St, Atlanta, GA 30301" +293777,Apple Airpods Headphones,1,150,11/28/19 10:04,"354 13th St, Seattle, WA 98101" +293778,Wired Headphones,1,11.99,11/09/19 20:57,"37 4th St, Los Angeles, CA 90001" +293779,27in FHD Monitor,1,149.99,11/18/19 20:46,"851 Church St, Boston, MA 02215" +293780,Bose SoundSport Headphones,1,99.99,11/04/19 20:20,"718 Jackson St, Boston, MA 02215" +293781,AAA Batteries (4-pack),1,2.99,11/27/19 13:34,"623 Wilson St, Boston, MA 02215" +293781,AAA Batteries (4-pack),2,2.99,11/27/19 13:34,"623 Wilson St, Boston, MA 02215" +293782,Wired Headphones,1,11.99,11/14/19 20:42,"581 Washington St, Los Angeles, CA 90001" +293783,27in FHD Monitor,1,149.99,11/18/19 14:19,"202 Main St, Dallas, TX 75001" +293784,27in FHD Monitor,1,149.99,11/03/19 13:45,"216 10th St, Portland, OR 97035" +293785,USB-C Charging Cable,1,11.95,11/09/19 10:06,"6 Church St, San Francisco, CA 94016" +293786,Apple Airpods Headphones,1,150,11/29/19 08:33,"702 Hickory St, San Francisco, CA 94016" +293787,AA Batteries (4-pack),1,3.84,11/11/19 10:49,"91 5th St, San Francisco, CA 94016" +293788,Bose SoundSport Headphones,1,99.99,11/16/19 09:09,"113 Sunset St, Los Angeles, CA 90001" +293789,USB-C Charging Cable,1,11.95,11/19/19 19:18,"15 Main St, San Francisco, CA 94016" +293790,Flatscreen TV,1,300,11/12/19 18:58,"476 Park St, New York City, NY 10001" +293791,AAA Batteries (4-pack),2,2.99,11/02/19 12:46,"570 Johnson St, San Francisco, CA 94016" +293792,LG Dryer,1,600.0,11/01/19 22:57,"314 North St, Seattle, WA 98101" +293793,AA Batteries (4-pack),1,3.84,11/20/19 16:05,"140 Main St, San Francisco, CA 94016" +293794,Wired Headphones,1,11.99,11/03/19 16:50,"473 6th St, New York City, NY 10001" +293795,Apple Airpods Headphones,1,150,11/26/19 09:30,"842 4th St, Portland, OR 97035" +293796,Lightning Charging Cable,1,14.95,11/22/19 11:57,"379 Church St, San Francisco, CA 94016" +293797,Lightning Charging Cable,1,14.95,11/30/19 19:38,"649 Walnut St, Dallas, TX 75001" +293798,USB-C Charging Cable,2,11.95,11/16/19 18:20,"318 Park St, Dallas, TX 75001" +293799,Apple Airpods Headphones,1,150,11/29/19 14:28,"19 1st St, Seattle, WA 98101" +293800,27in FHD Monitor,1,149.99,11/22/19 16:23,"707 Lakeview St, Austin, TX 73301" +293800,Flatscreen TV,1,300,11/22/19 16:23,"707 Lakeview St, Austin, TX 73301" +293801,Google Phone,1,600,11/09/19 19:51,"513 Cedar St, San Francisco, CA 94016" +293802,Wired Headphones,1,11.99,11/04/19 12:14,"356 Sunset St, Boston, MA 02215" +293803,Apple Airpods Headphones,1,150,11/18/19 11:29,"261 6th St, Dallas, TX 75001" +293804,AA Batteries (4-pack),1,3.84,11/05/19 12:33,"866 Spruce St, Atlanta, GA 30301" +293805,Macbook Pro Laptop,1,1700,11/18/19 15:27,"621 4th St, Boston, MA 02215" +293806,Apple Airpods Headphones,1,150,11/02/19 14:57,"386 Washington St, San Francisco, CA 94016" +293807,Wired Headphones,1,11.99,11/23/19 23:30,"509 6th St, New York City, NY 10001" +293808,Bose SoundSport Headphones,1,99.99,11/11/19 00:20,"196 Cherry St, Seattle, WA 98101" +293809,Bose SoundSport Headphones,1,99.99,11/28/19 19:41,"733 7th St, Los Angeles, CA 90001" +293810,Bose SoundSport Headphones,1,99.99,11/18/19 22:52,"813 Cherry St, San Francisco, CA 94016" +293811,Wired Headphones,1,11.99,11/07/19 17:07,"73 13th St, Seattle, WA 98101" +293812,AA Batteries (4-pack),1,3.84,11/26/19 15:40,"317 Johnson St, Los Angeles, CA 90001" +293813,34in Ultrawide Monitor,1,379.99,11/30/19 18:51,"954 4th St, Los Angeles, CA 90001" +293814,USB-C Charging Cable,1,11.95,11/07/19 11:16,"646 Spruce St, Los Angeles, CA 90001" +293815,Lightning Charging Cable,1,14.95,11/22/19 19:44,"23 13th St, San Francisco, CA 94016" +293816,27in 4K Gaming Monitor,1,389.99,11/13/19 17:38,"896 7th St, San Francisco, CA 94016" +293817,AA Batteries (4-pack),3,3.84,11/26/19 16:55,"694 13th St, San Francisco, CA 94016" +293818,AA Batteries (4-pack),1,3.84,11/07/19 21:08,"399 West St, Boston, MA 02215" +,,,,, +293819,USB-C Charging Cable,1,11.95,11/03/19 13:22,"131 12th St, San Francisco, CA 94016" +293820,Apple Airpods Headphones,1,150,11/15/19 15:43,"953 12th St, San Francisco, CA 94016" +293821,Apple Airpods Headphones,1,150,11/03/19 16:01,"818 Church St, San Francisco, CA 94016" +293822,Lightning Charging Cable,1,14.95,11/27/19 06:14,"983 West St, San Francisco, CA 94016" +293823,Vareebadd Phone,1,400,11/17/19 17:06,"610 9th St, Los Angeles, CA 90001" +293824,20in Monitor,1,109.99,11/27/19 16:01,"200 South St, Austin, TX 73301" +293825,Macbook Pro Laptop,1,1700,11/05/19 21:59,"945 Lincoln St, New York City, NY 10001" +293826,27in 4K Gaming Monitor,1,389.99,11/16/19 13:39,"972 Park St, San Francisco, CA 94016" +293827,Bose SoundSport Headphones,1,99.99,11/30/19 13:02,"437 Meadow St, Seattle, WA 98101" +293828,Lightning Charging Cable,1,14.95,11/15/19 22:02,"732 Cherry St, San Francisco, CA 94016" +293829,20in Monitor,1,109.99,11/22/19 09:40,"708 Pine St, San Francisco, CA 94016" +293830,Flatscreen TV,1,300,11/24/19 21:26,"919 Dogwood St, Seattle, WA 98101" +293831,Bose SoundSport Headphones,1,99.99,11/24/19 20:19,"778 10th St, New York City, NY 10001" +293831,Wired Headphones,1,11.99,11/24/19 20:19,"778 10th St, New York City, NY 10001" +293832,AA Batteries (4-pack),1,3.84,11/30/19 18:36,"646 River St, Los Angeles, CA 90001" +293833,20in Monitor,1,109.99,11/18/19 08:38,"749 Johnson St, New York City, NY 10001" +293834,USB-C Charging Cable,1,11.95,11/16/19 18:16,"965 Hickory St, Seattle, WA 98101" +293835,27in FHD Monitor,1,149.99,11/09/19 20:26,"665 5th St, Los Angeles, CA 90001" +293836,27in FHD Monitor,1,149.99,11/02/19 19:19,"663 8th St, Austin, TX 73301" +293837,27in FHD Monitor,1,149.99,11/23/19 00:52,"714 Madison St, San Francisco, CA 94016" +293838,Macbook Pro Laptop,1,1700,11/06/19 19:08,"279 River St, Portland, ME 04101" +293839,20in Monitor,1,109.99,11/02/19 23:19,"177 Pine St, Atlanta, GA 30301" +293840,Lightning Charging Cable,1,14.95,11/01/19 08:41,"206 Elm St, Austin, TX 73301" +293841,20in Monitor,1,109.99,11/15/19 23:07,"121 Highland St, San Francisco, CA 94016" +293842,Lightning Charging Cable,1,14.95,11/03/19 11:20,"577 Adams St, Boston, MA 02215" +293843,USB-C Charging Cable,1,11.95,11/15/19 00:26,"976 Forest St, San Francisco, CA 94016" +293844,20in Monitor,1,109.99,11/30/19 11:48,"50 Ridge St, Los Angeles, CA 90001" +293845,AA Batteries (4-pack),1,3.84,11/24/19 16:49,"647 Walnut St, San Francisco, CA 94016" +293846,Apple Airpods Headphones,1,150,11/09/19 18:45,"673 Sunset St, Austin, TX 73301" +293847,AAA Batteries (4-pack),1,2.99,11/02/19 07:30,"732 Cherry St, Los Angeles, CA 90001" +293848,Flatscreen TV,1,300,11/18/19 23:38,"360 Main St, San Francisco, CA 94016" +293849,iPhone,1,700,11/02/19 15:01,"189 Main St, Los Angeles, CA 90001" +293850,27in FHD Monitor,1,149.99,11/08/19 16:22,"729 7th St, Boston, MA 02215" +293851,Lightning Charging Cable,1,14.95,11/10/19 16:20,"844 Park St, San Francisco, CA 94016" +293852,USB-C Charging Cable,2,11.95,11/07/19 05:40,"158 Chestnut St, Atlanta, GA 30301" +293853,AA Batteries (4-pack),2,3.84,11/12/19 10:49,"197 2nd St, Atlanta, GA 30301" +293854,Lightning Charging Cable,1,14.95,11/28/19 08:26,"392 7th St, Los Angeles, CA 90001" +293855,Macbook Pro Laptop,1,1700,11/13/19 13:15,"188 North St, San Francisco, CA 94016" +293856,Macbook Pro Laptop,1,1700,11/27/19 12:41,"52 Dogwood St, Dallas, TX 75001" +293857,AAA Batteries (4-pack),2,2.99,11/05/19 14:19,"26 Madison St, San Francisco, CA 94016" +293858,AA Batteries (4-pack),1,3.84,11/17/19 18:57,"715 Hickory St, San Francisco, CA 94016" +293859,Wired Headphones,1,11.99,11/22/19 15:15,"746 Wilson St, Los Angeles, CA 90001" +293860,Apple Airpods Headphones,1,150,11/27/19 18:00,"97 Maple St, Los Angeles, CA 90001" +293861,AA Batteries (4-pack),2,3.84,11/14/19 23:30,"142 10th St, San Francisco, CA 94016" +293862,Google Phone,1,600,11/27/19 21:09,"844 Madison St, Los Angeles, CA 90001" +293862,USB-C Charging Cable,1,11.95,11/27/19 21:09,"844 Madison St, Los Angeles, CA 90001" +293863,Macbook Pro Laptop,1,1700,11/05/19 11:58,"898 Madison St, Boston, MA 02215" +293864,AAA Batteries (4-pack),1,2.99,11/13/19 09:58,"274 Willow St, Atlanta, GA 30301" +293865,Flatscreen TV,1,300,11/04/19 00:28,"916 11th St, Portland, OR 97035" +293866,Wired Headphones,1,11.99,11/12/19 13:42,"619 South St, Los Angeles, CA 90001" +293867,ThinkPad Laptop,1,999.99,11/04/19 16:46,"973 14th St, Los Angeles, CA 90001" +293867,USB-C Charging Cable,2,11.95,11/04/19 16:46,"973 14th St, Los Angeles, CA 90001" +293868,Bose SoundSport Headphones,1,99.99,11/04/19 17:34,"633 Ridge St, Boston, MA 02215" +293869,Bose SoundSport Headphones,2,99.99,11/29/19 22:45,"444 Jackson St, San Francisco, CA 94016" +293870,AAA Batteries (4-pack),1,2.99,11/16/19 20:44,"659 8th St, New York City, NY 10001" +293871,Lightning Charging Cable,1,14.95,11/25/19 11:33,"626 Elm St, Dallas, TX 75001" +293872,Google Phone,1,600,11/30/19 07:39,"756 Lake St, Dallas, TX 75001" +293873,Flatscreen TV,1,300,11/14/19 11:39,"918 South St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +293874,Bose SoundSport Headphones,1,99.99,11/25/19 21:06,"327 4th St, Dallas, TX 75001" +293875,Vareebadd Phone,1,400,11/09/19 13:26,"115 Johnson St, Atlanta, GA 30301" +293876,AA Batteries (4-pack),1,3.84,11/19/19 06:28,"955 Washington St, San Francisco, CA 94016" +293877,USB-C Charging Cable,1,11.95,11/15/19 00:04,"438 Park St, San Francisco, CA 94016" +293878,Vareebadd Phone,1,400,11/05/19 16:40,"414 13th St, Atlanta, GA 30301" +293879,iPhone,1,700,11/03/19 21:39,"475 Adams St, San Francisco, CA 94016" +293880,Lightning Charging Cable,1,14.95,11/29/19 17:44,"593 Maple St, Portland, OR 97035" +293881,iPhone,1,700,11/30/19 19:03,"536 Chestnut St, San Francisco, CA 94016" +293882,AA Batteries (4-pack),1,3.84,11/27/19 09:28,"462 Hill St, New York City, NY 10001" +293883,Lightning Charging Cable,1,14.95,11/13/19 17:16,"964 Elm St, Atlanta, GA 30301" +293884,Lightning Charging Cable,1,14.95,11/20/19 21:48,"328 Chestnut St, Los Angeles, CA 90001" +293885,Wired Headphones,1,11.99,11/11/19 11:17,"512 Adams St, Seattle, WA 98101" +293886,Flatscreen TV,1,300,11/07/19 09:10,"346 Washington St, Atlanta, GA 30301" +293887,AA Batteries (4-pack),1,3.84,11/06/19 11:43,"723 Jefferson St, Los Angeles, CA 90001" +293888,USB-C Charging Cable,1,11.95,11/28/19 13:44,"523 Main St, Dallas, TX 75001" +293889,Lightning Charging Cable,1,14.95,11/17/19 21:54,"475 Jefferson St, Austin, TX 73301" +293890,34in Ultrawide Monitor,1,379.99,11/22/19 11:45,"942 Elm St, Los Angeles, CA 90001" +293891,27in FHD Monitor,1,149.99,11/04/19 18:43,"107 2nd St, New York City, NY 10001" +293892,Wired Headphones,2,11.99,11/19/19 22:28,"727 Dogwood St, San Francisco, CA 94016" +293893,AA Batteries (4-pack),1,3.84,11/30/19 18:39,"37 7th St, Atlanta, GA 30301" +293894,Wired Headphones,1,11.99,11/08/19 14:30,"74 Hill St, San Francisco, CA 94016" +293895,Wired Headphones,1,11.99,11/30/19 16:42,"854 1st St, San Francisco, CA 94016" +293896,Lightning Charging Cable,1,14.95,11/08/19 00:00,"671 Hill St, Portland, ME 04101" +293897,20in Monitor,1,109.99,11/14/19 21:39,"119 Washington St, Seattle, WA 98101" +293898,Apple Airpods Headphones,1,150,11/23/19 14:46,"407 2nd St, San Francisco, CA 94016" +293899,AA Batteries (4-pack),1,3.84,11/23/19 20:29,"386 1st St, Boston, MA 02215" +293900,Wired Headphones,1,11.99,11/05/19 16:49,"425 4th St, Atlanta, GA 30301" +293901,Flatscreen TV,1,300,11/18/19 10:25,"650 River St, New York City, NY 10001" +293902,27in 4K Gaming Monitor,1,389.99,11/11/19 04:09,"894 Madison St, San Francisco, CA 94016" +293903,27in 4K Gaming Monitor,1,389.99,11/09/19 03:36,"639 Meadow St, Los Angeles, CA 90001" +293904,Lightning Charging Cable,1,14.95,11/07/19 12:10,"711 Chestnut St, New York City, NY 10001" +293905,Apple Airpods Headphones,1,150,11/29/19 13:09,"57 Main St, New York City, NY 10001" +293906,AAA Batteries (4-pack),1,2.99,11/30/19 21:16,"804 9th St, Boston, MA 02215" +293907,USB-C Charging Cable,1,11.95,11/23/19 12:10,"850 9th St, Portland, ME 04101" +293908,Flatscreen TV,1,300,11/18/19 19:45,"715 Cherry St, San Francisco, CA 94016" +293909,Wired Headphones,1,11.99,11/12/19 19:59,"634 Pine St, San Francisco, CA 94016" +293910,USB-C Charging Cable,1,11.95,11/20/19 10:33,"165 Main St, San Francisco, CA 94016" +293911,AA Batteries (4-pack),1,3.84,11/28/19 18:29,"641 Spruce St, Dallas, TX 75001" +293912,AA Batteries (4-pack),1,3.84,11/15/19 16:38,"498 8th St, Boston, MA 02215" +293913,AA Batteries (4-pack),2,3.84,11/11/19 22:21,"783 Maple St, New York City, NY 10001" +293914,27in FHD Monitor,1,149.99,11/24/19 11:06,"883 Madison St, Dallas, TX 75001" +293915,34in Ultrawide Monitor,1,379.99,11/01/19 21:24,"176 Cherry St, Los Angeles, CA 90001" +293916,Apple Airpods Headphones,1,150,11/21/19 23:16,"438 12th St, San Francisco, CA 94016" +293917,Macbook Pro Laptop,1,1700,11/02/19 09:47,"705 13th St, Atlanta, GA 30301" +293918,Lightning Charging Cable,1,14.95,11/24/19 10:07,"718 Sunset St, San Francisco, CA 94016" +293919,ThinkPad Laptop,1,999.99,11/15/19 20:39,"910 8th St, Dallas, TX 75001" +293920,27in FHD Monitor,1,149.99,11/02/19 13:51,"126 Johnson St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +293921,AAA Batteries (4-pack),1,2.99,11/22/19 12:12,"598 Church St, San Francisco, CA 94016" +293922,Bose SoundSport Headphones,1,99.99,11/27/19 08:44,"179 Cedar St, Dallas, TX 75001" +293923,27in FHD Monitor,1,149.99,11/02/19 00:31,"522 Elm St, Seattle, WA 98101" +293924,20in Monitor,1,109.99,11/29/19 17:05,"732 4th St, Los Angeles, CA 90001" +293925,27in 4K Gaming Monitor,1,389.99,11/14/19 16:51,"549 Ridge St, New York City, NY 10001" +293926,Macbook Pro Laptop,1,1700,11/24/19 10:59,"571 Lakeview St, San Francisco, CA 94016" +293927,Google Phone,1,600,11/06/19 17:49,"622 Dogwood St, New York City, NY 10001" +293928,USB-C Charging Cable,1,11.95,11/07/19 22:59,"795 Johnson St, Austin, TX 73301" +293929,Flatscreen TV,1,300,11/25/19 17:07,"566 4th St, Seattle, WA 98101" +293930,Lightning Charging Cable,1,14.95,11/27/19 16:42,"958 Johnson St, New York City, NY 10001" +293931,AAA Batteries (4-pack),1,2.99,11/08/19 17:54,"247 9th St, San Francisco, CA 94016" +293932,20in Monitor,1,109.99,11/02/19 23:32,"360 Highland St, San Francisco, CA 94016" +293933,Wired Headphones,1,11.99,11/13/19 13:13,"196 Cedar St, San Francisco, CA 94016" +293934,Bose SoundSport Headphones,1,99.99,11/22/19 13:47,"923 6th St, Los Angeles, CA 90001" +293935,Bose SoundSport Headphones,1,99.99,11/17/19 07:29,"604 Forest St, Boston, MA 02215" +293936,27in 4K Gaming Monitor,1,389.99,11/28/19 17:23,"656 Meadow St, San Francisco, CA 94016" +293937,Wired Headphones,2,11.99,11/03/19 10:45,"702 Cherry St, Austin, TX 73301" +293938,Macbook Pro Laptop,1,1700,11/11/19 16:04,"120 Elm St, Los Angeles, CA 90001" +293938,Lightning Charging Cable,1,14.95,11/11/19 16:04,"120 Elm St, Los Angeles, CA 90001" +293939,USB-C Charging Cable,1,11.95,11/27/19 09:48,"393 Willow St, San Francisco, CA 94016" +293940,Google Phone,1,600,11/18/19 13:45,"977 North St, Seattle, WA 98101" +293940,USB-C Charging Cable,1,11.95,11/18/19 13:45,"977 North St, Seattle, WA 98101" +293941,Bose SoundSport Headphones,1,99.99,11/12/19 00:40,"953 Willow St, Seattle, WA 98101" +293942,Bose SoundSport Headphones,1,99.99,11/28/19 00:42,"958 Chestnut St, Austin, TX 73301" +293943,ThinkPad Laptop,1,999.99,11/30/19 00:04,"268 Forest St, Boston, MA 02215" +293944,USB-C Charging Cable,1,11.95,11/02/19 10:14,"191 Meadow St, Austin, TX 73301" +293945,Google Phone,1,600,11/24/19 23:14,"56 6th St, San Francisco, CA 94016" +293945,USB-C Charging Cable,1,11.95,11/24/19 23:14,"56 6th St, San Francisco, CA 94016" +293946,AA Batteries (4-pack),1,3.84,11/09/19 20:46,"326 1st St, New York City, NY 10001" +293947,Lightning Charging Cable,1,14.95,11/30/19 12:01,"678 North St, Atlanta, GA 30301" +293948,Apple Airpods Headphones,1,150,11/15/19 02:44,"526 Elm St, Portland, OR 97035" +293949,Wired Headphones,1,11.99,11/16/19 01:19,"711 North St, Seattle, WA 98101" +293950,Wired Headphones,1,11.99,11/18/19 10:29,"770 Cedar St, Boston, MA 02215" +293951,Lightning Charging Cable,1,14.95,11/01/19 15:08,"760 Willow St, New York City, NY 10001" +293952,AAA Batteries (4-pack),1,2.99,11/13/19 09:00,"911 Madison St, Portland, ME 04101" +293953,27in FHD Monitor,1,149.99,11/01/19 12:14,"559 10th St, Austin, TX 73301" +293954,Vareebadd Phone,1,400,11/27/19 11:38,"94 Jackson St, New York City, NY 10001" +293955,AAA Batteries (4-pack),3,2.99,11/05/19 19:30,"614 Walnut St, Dallas, TX 75001" +293956,AAA Batteries (4-pack),1,2.99,11/13/19 11:54,"325 Sunset St, San Francisco, CA 94016" +293957,Wired Headphones,3,11.99,11/25/19 08:31,"507 11th St, San Francisco, CA 94016" +293958,AAA Batteries (4-pack),4,2.99,11/18/19 22:03,"840 6th St, Dallas, TX 75001" +293959,Macbook Pro Laptop,1,1700,11/20/19 16:55,"287 Cherry St, San Francisco, CA 94016" +293960,Lightning Charging Cable,1,14.95,11/20/19 08:06,"361 1st St, Boston, MA 02215" +293961,20in Monitor,1,109.99,11/30/19 22:44,"642 Cherry St, New York City, NY 10001" +293962,Lightning Charging Cable,1,14.95,11/07/19 09:43,"457 12th St, Atlanta, GA 30301" +293963,USB-C Charging Cable,1,11.95,11/25/19 22:22,"905 9th St, San Francisco, CA 94016" +293964,Wired Headphones,1,11.99,11/27/19 18:51,"467 Park St, Portland, OR 97035" +293965,AAA Batteries (4-pack),1,2.99,11/23/19 18:17,"417 12th St, Los Angeles, CA 90001" +293966,AAA Batteries (4-pack),1,2.99,11/14/19 11:39,"543 Jefferson St, Portland, OR 97035" +293967,ThinkPad Laptop,1,999.99,11/28/19 16:22,"977 Maple St, Atlanta, GA 30301" +293968,Wired Headphones,1,11.99,11/28/19 20:41,"374 Elm St, New York City, NY 10001" +293969,Macbook Pro Laptop,1,1700,11/08/19 18:13,"132 Jefferson St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +293970,Google Phone,1,600,11/29/19 15:40,"237 Lakeview St, Los Angeles, CA 90001" +293970,USB-C Charging Cable,1,11.95,11/29/19 15:40,"237 Lakeview St, Los Angeles, CA 90001" +293971,Vareebadd Phone,1,400,11/03/19 21:56,"121 8th St, Los Angeles, CA 90001" +293972,AAA Batteries (4-pack),1,2.99,11/21/19 20:10,"630 Wilson St, San Francisco, CA 94016" +293973,Wired Headphones,1,11.99,11/03/19 23:02,"848 Forest St, Austin, TX 73301" +293974,Apple Airpods Headphones,1,150,11/21/19 18:17,"533 Main St, San Francisco, CA 94016" +293975,Vareebadd Phone,1,400,11/20/19 09:30,"339 Maple St, New York City, NY 10001" +293976,USB-C Charging Cable,1,11.95,11/20/19 12:53,"112 North St, New York City, NY 10001" +293977,Bose SoundSport Headphones,1,99.99,11/11/19 19:08,"543 12th St, San Francisco, CA 94016" +293978,Wired Headphones,2,11.99,11/28/19 06:17,"252 Park St, Los Angeles, CA 90001" +293979,Lightning Charging Cable,1,14.95,11/21/19 09:20,"459 1st St, San Francisco, CA 94016" +293980,AAA Batteries (4-pack),3,2.99,11/11/19 22:50,"641 West St, New York City, NY 10001" +293981,AA Batteries (4-pack),1,3.84,11/08/19 09:29,"852 Lincoln St, Austin, TX 73301" +293982,Flatscreen TV,1,300,11/26/19 19:01,"556 Ridge St, Portland, OR 97035" +293983,Wired Headphones,1,11.99,11/29/19 14:11,"752 Cedar St, Los Angeles, CA 90001" +293984,Bose SoundSport Headphones,1,99.99,11/21/19 08:09,"227 Adams St, Seattle, WA 98101" +293985,Bose SoundSport Headphones,1,99.99,11/12/19 17:22,"520 Forest St, San Francisco, CA 94016" +293986,AA Batteries (4-pack),1,3.84,11/21/19 14:33,"456 8th St, Los Angeles, CA 90001" +293987,AA Batteries (4-pack),1,3.84,11/24/19 22:01,"760 6th St, Seattle, WA 98101" +293988,USB-C Charging Cable,1,11.95,11/10/19 18:05,"486 Wilson St, San Francisco, CA 94016" +293989,USB-C Charging Cable,1,11.95,11/06/19 00:09,"931 Wilson St, Atlanta, GA 30301" +293990,27in FHD Monitor,1,149.99,11/26/19 12:29,"832 Walnut St, Seattle, WA 98101" +293991,AA Batteries (4-pack),2,3.84,11/03/19 04:14,"492 North St, Los Angeles, CA 90001" +293992,Flatscreen TV,1,300,11/07/19 21:33,"339 5th St, New York City, NY 10001" +293993,27in FHD Monitor,1,149.99,11/19/19 14:29,"712 Chestnut St, Dallas, TX 75001" +293994,iPhone,1,700,11/21/19 19:57,"703 13th St, Los Angeles, CA 90001" +293994,Wired Headphones,1,11.99,11/21/19 19:57,"703 13th St, Los Angeles, CA 90001" +293995,AA Batteries (4-pack),2,3.84,11/27/19 09:58,"292 Adams St, San Francisco, CA 94016" +293996,iPhone,1,700,11/27/19 11:44,"672 Johnson St, San Francisco, CA 94016" +293997,Lightning Charging Cable,1,14.95,11/01/19 17:37,"702 Cedar St, Dallas, TX 75001" +293998,Apple Airpods Headphones,1,150,11/24/19 21:50,"830 Jefferson St, San Francisco, CA 94016" +293999,Lightning Charging Cable,1,14.95,11/18/19 18:26,"117 6th St, Atlanta, GA 30301" +294000,AA Batteries (4-pack),1,3.84,11/03/19 10:27,"42 13th St, Boston, MA 02215" +294001,AAA Batteries (4-pack),1,2.99,11/21/19 13:29,"712 Cedar St, San Francisco, CA 94016" +294002,Apple Airpods Headphones,1,150,11/05/19 16:22,"213 13th St, Seattle, WA 98101" +294003,Lightning Charging Cable,1,14.95,11/27/19 22:51,"939 River St, Atlanta, GA 30301" +294004,Lightning Charging Cable,1,14.95,11/01/19 15:07,"229 5th St, Atlanta, GA 30301" +294005,Bose SoundSport Headphones,1,99.99,11/09/19 10:35,"238 Highland St, Portland, ME 04101" +294006,Apple Airpods Headphones,1,150,11/04/19 23:05,"329 Spruce St, Seattle, WA 98101" +294006,AAA Batteries (4-pack),1,2.99,11/04/19 23:05,"329 Spruce St, Seattle, WA 98101" +294007,LG Dryer,1,600.0,11/03/19 18:33,"305 Main St, New York City, NY 10001" +294008,Wired Headphones,1,11.99,11/15/19 01:14,"123 Meadow St, Los Angeles, CA 90001" +294009,AAA Batteries (4-pack),2,2.99,11/21/19 13:41,"188 8th St, Austin, TX 73301" +294010,ThinkPad Laptop,1,999.99,11/13/19 08:08,"312 Ridge St, Los Angeles, CA 90001" +294011,AAA Batteries (4-pack),1,2.99,11/06/19 18:40,"822 Sunset St, San Francisco, CA 94016" +294012,USB-C Charging Cable,2,11.95,11/06/19 05:59,"664 Church St, Seattle, WA 98101" +294013,Google Phone,1,600,11/21/19 08:41,"652 12th St, San Francisco, CA 94016" +294014,AA Batteries (4-pack),1,3.84,11/04/19 11:08,"706 Washington St, New York City, NY 10001" +294015,Bose SoundSport Headphones,1,99.99,11/12/19 18:56,"618 4th St, San Francisco, CA 94016" +294016,AA Batteries (4-pack),1,3.84,11/24/19 17:54,"845 Elm St, San Francisco, CA 94016" +294017,Bose SoundSport Headphones,1,99.99,11/18/19 18:53,"716 Maple St, Boston, MA 02215" +294018,AA Batteries (4-pack),1,3.84,11/26/19 18:43,"687 Johnson St, San Francisco, CA 94016" +294019,20in Monitor,1,109.99,11/29/19 23:09,"793 Chestnut St, Seattle, WA 98101" +294020,34in Ultrawide Monitor,1,379.99,11/03/19 15:02,"796 Forest St, Los Angeles, CA 90001" +294020,AAA Batteries (4-pack),1,2.99,11/03/19 15:02,"796 Forest St, Los Angeles, CA 90001" +294021,AA Batteries (4-pack),1,3.84,11/18/19 10:52,"724 13th St, Boston, MA 02215" +294022,Vareebadd Phone,1,400,11/03/19 14:22,"926 Johnson St, Seattle, WA 98101" +294023,AA Batteries (4-pack),1,3.84,11/22/19 18:05,"78 Jefferson St, San Francisco, CA 94016" +294024,USB-C Charging Cable,1,11.95,11/23/19 21:50,"683 West St, Boston, MA 02215" +294025,USB-C Charging Cable,2,11.95,11/13/19 07:25,"206 Jefferson St, Boston, MA 02215" +294026,20in Monitor,1,109.99,11/25/19 11:56,"255 Forest St, Los Angeles, CA 90001" +294027,Bose SoundSport Headphones,1,99.99,11/26/19 11:21,"498 Hill St, Seattle, WA 98101" +294028,AAA Batteries (4-pack),3,2.99,11/03/19 12:53,"565 Elm St, Austin, TX 73301" +294029,AAA Batteries (4-pack),2,2.99,11/14/19 09:54,"773 North St, Austin, TX 73301" +294030,Wired Headphones,1,11.99,11/17/19 06:10,"218 11th St, New York City, NY 10001" +294031,27in 4K Gaming Monitor,1,389.99,11/07/19 21:01,"218 Walnut St, Dallas, TX 75001" +294032,USB-C Charging Cable,1,11.95,11/22/19 14:20,"956 10th St, Portland, OR 97035" +294033,Bose SoundSport Headphones,1,99.99,11/25/19 12:14,"583 Main St, San Francisco, CA 94016" +294034,AA Batteries (4-pack),1,3.84,11/02/19 17:06,"356 Elm St, Boston, MA 02215" +294035,Wired Headphones,1,11.99,11/23/19 20:22,"128 Willow St, Boston, MA 02215" +294036,AAA Batteries (4-pack),1,2.99,11/16/19 09:25,"501 1st St, Portland, OR 97035" +294037,Google Phone,1,600,11/17/19 15:49,"595 Lincoln St, Austin, TX 73301" +294038,Lightning Charging Cable,1,14.95,11/18/19 10:33,"53 Cherry St, Boston, MA 02215" +294039,USB-C Charging Cable,1,11.95,11/11/19 19:13,"597 11th St, San Francisco, CA 94016" +294040,LG Dryer,1,600.0,11/06/19 20:17,"746 2nd St, Atlanta, GA 30301" +294041,27in FHD Monitor,1,149.99,11/12/19 21:05,"59 Washington St, New York City, NY 10001" +294042,Wired Headphones,1,11.99,11/21/19 16:02,"451 West St, Boston, MA 02215" +294043,Bose SoundSport Headphones,2,99.99,11/24/19 20:19,"595 Sunset St, New York City, NY 10001" +294044,Bose SoundSport Headphones,1,99.99,11/29/19 21:50,"988 Meadow St, Austin, TX 73301" +294045,AA Batteries (4-pack),2,3.84,11/03/19 09:32,"672 Meadow St, Atlanta, GA 30301" +294045,USB-C Charging Cable,1,11.95,11/03/19 09:32,"672 Meadow St, Atlanta, GA 30301" +294046,AA Batteries (4-pack),1,3.84,11/27/19 15:22,"637 Park St, San Francisco, CA 94016" +294047,Wired Headphones,1,11.99,11/15/19 17:45,"889 Hickory St, Seattle, WA 98101" +294048,Google Phone,1,600,11/03/19 15:48,"693 Maple St, Dallas, TX 75001" +294049,ThinkPad Laptop,1,999.99,11/17/19 13:29,"576 11th St, San Francisco, CA 94016" +294050,Vareebadd Phone,1,400,11/26/19 17:04,"260 Highland St, San Francisco, CA 94016" +294051,Lightning Charging Cable,1,14.95,11/15/19 08:11,"296 Sunset St, Los Angeles, CA 90001" +294052,27in 4K Gaming Monitor,1,389.99,11/24/19 18:30,"605 5th St, New York City, NY 10001" +294053,USB-C Charging Cable,1,11.95,11/08/19 08:03,"74 River St, New York City, NY 10001" +294054,AA Batteries (4-pack),2,3.84,11/05/19 02:18,"791 Hickory St, San Francisco, CA 94016" +294055,AAA Batteries (4-pack),2,2.99,11/23/19 18:55,"855 Johnson St, Los Angeles, CA 90001" +294056,Wired Headphones,1,11.99,11/12/19 23:03,"391 Hickory St, New York City, NY 10001" +294057,27in 4K Gaming Monitor,1,389.99,11/24/19 21:48,"550 Ridge St, Boston, MA 02215" +294058,AAA Batteries (4-pack),1,2.99,11/19/19 13:17,"869 Dogwood St, Atlanta, GA 30301" +294059,Lightning Charging Cable,1,14.95,11/11/19 19:16,"968 14th St, Dallas, TX 75001" +294060,AAA Batteries (4-pack),1,2.99,11/06/19 23:25,"222 Cherry St, Boston, MA 02215" +294061,AA Batteries (4-pack),1,3.84,11/20/19 11:24,"433 10th St, San Francisco, CA 94016" +294062,34in Ultrawide Monitor,1,379.99,11/05/19 08:48,"131 8th St, San Francisco, CA 94016" +294063,Flatscreen TV,1,300,11/25/19 23:57,"381 4th St, New York City, NY 10001" +294064,Lightning Charging Cable,1,14.95,11/05/19 19:02,"888 South St, Dallas, TX 75001" +294065,AAA Batteries (4-pack),1,2.99,11/27/19 14:37,"282 Cherry St, San Francisco, CA 94016" +294066,Apple Airpods Headphones,1,150,11/13/19 10:23,"611 River St, San Francisco, CA 94016" +294067,Lightning Charging Cable,1,14.95,11/07/19 14:45,"434 Park St, Los Angeles, CA 90001" +294068,USB-C Charging Cable,1,11.95,11/17/19 20:33,"371 8th St, Portland, OR 97035" +294069,Apple Airpods Headphones,1,150,11/18/19 21:11,"352 Sunset St, Los Angeles, CA 90001" +294070,34in Ultrawide Monitor,1,379.99,11/08/19 10:07,"782 6th St, San Francisco, CA 94016" +294071,AAA Batteries (4-pack),2,2.99,11/26/19 21:41,"246 Jefferson St, Dallas, TX 75001" +294072,USB-C Charging Cable,1,11.95,11/03/19 10:05,"711 7th St, Los Angeles, CA 90001" +294073,Lightning Charging Cable,1,14.95,11/01/19 11:56,"545 10th St, Atlanta, GA 30301" +294074,Apple Airpods Headphones,1,150,11/18/19 12:52,"262 Meadow St, Boston, MA 02215" +294075,AA Batteries (4-pack),2,3.84,11/18/19 00:32,"407 Church St, Dallas, TX 75001" +294076,Macbook Pro Laptop,1,1700,11/30/19 11:39,"706 Main St, Los Angeles, CA 90001" +294077,Google Phone,1,600,11/26/19 10:31,"103 1st St, Austin, TX 73301" +294077,Bose SoundSport Headphones,1,99.99,11/26/19 10:31,"103 1st St, Austin, TX 73301" +294078,USB-C Charging Cable,1,11.95,11/13/19 12:37,"168 Sunset St, Los Angeles, CA 90001" +294079,iPhone,1,700,11/11/19 00:36,"662 Hickory St, Los Angeles, CA 90001" +294080,Lightning Charging Cable,1,14.95,11/07/19 16:49,"486 North St, Los Angeles, CA 90001" +294081,USB-C Charging Cable,1,11.95,11/10/19 15:12,"550 Meadow St, Atlanta, GA 30301" +294082,USB-C Charging Cable,1,11.95,11/15/19 20:51,"915 West St, Boston, MA 02215" +294083,20in Monitor,1,109.99,11/26/19 23:40,"367 Elm St, Los Angeles, CA 90001" +294084,USB-C Charging Cable,1,11.95,11/12/19 19:43,"367 Hill St, Atlanta, GA 30301" +294085,Wired Headphones,1,11.99,11/01/19 17:36,"288 11th St, San Francisco, CA 94016" +294086,AA Batteries (4-pack),2,3.84,11/04/19 16:07,"206 8th St, San Francisco, CA 94016" +294087,AA Batteries (4-pack),1,3.84,11/26/19 16:39,"743 Jefferson St, Portland, OR 97035" +294088,Lightning Charging Cable,2,14.95,11/08/19 08:34,"662 North St, Los Angeles, CA 90001" +294089,AAA Batteries (4-pack),2,2.99,11/19/19 01:06,"369 Hill St, New York City, NY 10001" +294090,Lightning Charging Cable,1,14.95,11/05/19 11:42,"943 Church St, San Francisco, CA 94016" +294091,AA Batteries (4-pack),1,3.84,11/21/19 20:53,"681 10th St, Seattle, WA 98101" +294092,Flatscreen TV,1,300,11/29/19 11:21,"497 Elm St, Boston, MA 02215" +294093,Wired Headphones,1,11.99,11/25/19 23:16,"119 Washington St, Portland, OR 97035" +294094,Bose SoundSport Headphones,1,99.99,11/19/19 23:15,"332 Main St, New York City, NY 10001" +294095,Apple Airpods Headphones,1,150,11/25/19 20:30,"517 Park St, San Francisco, CA 94016" +294096,Bose SoundSport Headphones,1,99.99,11/04/19 18:39,"703 11th St, Atlanta, GA 30301" +294097,AAA Batteries (4-pack),1,2.99,11/05/19 18:17,"66 11th St, San Francisco, CA 94016" +294098,27in FHD Monitor,1,149.99,11/15/19 17:40,"885 1st St, Los Angeles, CA 90001" +294099,USB-C Charging Cable,1,11.95,11/27/19 12:10,"795 Elm St, Dallas, TX 75001" +294100,AA Batteries (4-pack),2,3.84,11/19/19 08:03,"563 Maple St, New York City, NY 10001" +294101,AA Batteries (4-pack),1,3.84,11/16/19 18:33,"420 Elm St, Dallas, TX 75001" +294102,27in FHD Monitor,1,149.99,11/11/19 13:10,"698 Lake St, San Francisco, CA 94016" +294103,Flatscreen TV,1,300,11/28/19 19:33,"823 Spruce St, Atlanta, GA 30301" +294104,iPhone,1,700,11/11/19 22:50,"25 Hickory St, San Francisco, CA 94016" +294105,Lightning Charging Cable,1,14.95,11/03/19 10:47,"500 Ridge St, Boston, MA 02215" +294106,Lightning Charging Cable,1,14.95,11/09/19 21:10,"42 Church St, New York City, NY 10001" +294107,AAA Batteries (4-pack),1,2.99,11/30/19 20:42,"509 Church St, Seattle, WA 98101" +294108,AA Batteries (4-pack),1,3.84,11/13/19 08:03,"274 West St, Los Angeles, CA 90001" +294109,Bose SoundSport Headphones,1,99.99,11/19/19 19:20,"412 Chestnut St, San Francisco, CA 94016" +294110,20in Monitor,1,109.99,11/18/19 16:39,"610 Pine St, San Francisco, CA 94016" +294111,Wired Headphones,2,11.99,11/20/19 19:58,"807 Cedar St, Atlanta, GA 30301" +294112,ThinkPad Laptop,1,999.99,11/14/19 17:24,"537 Meadow St, Los Angeles, CA 90001" +294113,AA Batteries (4-pack),2,3.84,11/05/19 11:23,"939 5th St, Seattle, WA 98101" +294114,20in Monitor,1,109.99,11/06/19 21:09,"453 11th St, San Francisco, CA 94016" +294115,Lightning Charging Cable,1,14.95,11/10/19 16:53,"283 Maple St, San Francisco, CA 94016" +294116,USB-C Charging Cable,1,11.95,11/10/19 03:21,"222 5th St, Portland, OR 97035" +294117,Lightning Charging Cable,1,14.95,11/24/19 16:11,"438 Park St, Los Angeles, CA 90001" +294118,Apple Airpods Headphones,1,150,11/17/19 08:17,"360 Adams St, New York City, NY 10001" +294119,Apple Airpods Headphones,1,150,11/23/19 22:03,"561 Hickory St, Atlanta, GA 30301" +294120,USB-C Charging Cable,1,11.95,11/14/19 17:18,"470 Cedar St, New York City, NY 10001" +294121,AA Batteries (4-pack),1,3.84,11/09/19 00:28,"687 13th St, Austin, TX 73301" +294122,Wired Headphones,1,11.99,11/11/19 23:39,"591 West St, Atlanta, GA 30301" +294123,USB-C Charging Cable,1,11.95,11/09/19 18:18,"111 Wilson St, New York City, NY 10001" +294124,AA Batteries (4-pack),1,3.84,11/21/19 17:49,"506 Maple St, Seattle, WA 98101" +294125,iPhone,1,700,11/26/19 08:04,"602 Chestnut St, Los Angeles, CA 90001" +294126,Google Phone,1,600,11/05/19 20:46,"142 Lakeview St, San Francisco, CA 94016" +294126,Wired Headphones,1,11.99,11/05/19 20:46,"142 Lakeview St, San Francisco, CA 94016" +294127,Apple Airpods Headphones,1,150,11/26/19 23:46,"596 Walnut St, Portland, ME 04101" +294128,Flatscreen TV,1,300,11/17/19 20:12,"660 Spruce St, Los Angeles, CA 90001" +294129,AA Batteries (4-pack),1,3.84,11/21/19 23:58,"7 14th St, San Francisco, CA 94016" +294130,27in FHD Monitor,1,149.99,11/17/19 09:36,"576 14th St, Seattle, WA 98101" +294131,Google Phone,1,600,11/24/19 19:56,"170 Chestnut St, San Francisco, CA 94016" +294132,AA Batteries (4-pack),1,3.84,11/06/19 20:14,"172 Center St, Dallas, TX 75001" +294133,Apple Airpods Headphones,1,150,11/01/19 08:35,"529 Park St, Atlanta, GA 30301" +294134,iPhone,1,700,11/19/19 19:15,"578 West St, Los Angeles, CA 90001" +294135,20in Monitor,1,109.99,11/04/19 22:32,"27 Washington St, San Francisco, CA 94016" +294136,iPhone,1,700,11/06/19 15:29,"305 Maple St, Dallas, TX 75001" +294136,Lightning Charging Cable,1,14.95,11/06/19 15:29,"305 Maple St, Dallas, TX 75001" +294137,USB-C Charging Cable,1,11.95,11/03/19 01:20,"923 Church St, Los Angeles, CA 90001" +294138,Wired Headphones,1,11.99,11/22/19 09:11,"187 9th St, Portland, OR 97035" +294139,Bose SoundSport Headphones,1,99.99,11/23/19 09:49,"702 8th St, San Francisco, CA 94016" +294140,Lightning Charging Cable,1,14.95,11/02/19 11:08,"141 Highland St, San Francisco, CA 94016" +294141,Lightning Charging Cable,1,14.95,11/09/19 06:44,"507 Main St, San Francisco, CA 94016" +294142,USB-C Charging Cable,1,11.95,11/21/19 10:40,"750 Adams St, Los Angeles, CA 90001" +294143,Wired Headphones,1,11.99,11/09/19 16:47,"604 Walnut St, New York City, NY 10001" +294144,Apple Airpods Headphones,1,150,11/14/19 16:33,"610 Chestnut St, Atlanta, GA 30301" +294145,AAA Batteries (4-pack),3,2.99,11/18/19 01:43,"503 Lake St, Austin, TX 73301" +294146,Lightning Charging Cable,1,14.95,11/24/19 15:37,"474 Spruce St, San Francisco, CA 94016" +294147,USB-C Charging Cable,1,11.95,11/22/19 22:22,"185 Johnson St, Seattle, WA 98101" +294148,USB-C Charging Cable,1,11.95,11/09/19 11:17,"366 Highland St, New York City, NY 10001" +294149,27in 4K Gaming Monitor,1,389.99,11/29/19 22:03,"608 Jackson St, Seattle, WA 98101" +294150,27in FHD Monitor,1,149.99,11/13/19 14:24,"522 2nd St, Austin, TX 73301" +294151,Lightning Charging Cable,1,14.95,11/25/19 10:57,"741 Sunset St, New York City, NY 10001" +294152,Apple Airpods Headphones,1,150,11/03/19 19:34,"999 Hill St, San Francisco, CA 94016" +294153,34in Ultrawide Monitor,1,379.99,11/09/19 09:50,"167 2nd St, San Francisco, CA 94016" +294154,Google Phone,1,600,11/07/19 17:03,"993 Lincoln St, San Francisco, CA 94016" +294155,Lightning Charging Cable,1,14.95,11/14/19 16:13,"91 Cedar St, San Francisco, CA 94016" +294156,Wired Headphones,1,11.99,11/13/19 19:00,"616 Willow St, Los Angeles, CA 90001" +294157,27in FHD Monitor,1,149.99,11/04/19 19:08,"329 Elm St, Dallas, TX 75001" +294158,Google Phone,1,600,11/04/19 23:05,"415 Sunset St, Boston, MA 02215" +294159,Apple Airpods Headphones,1,150,11/23/19 09:17,"249 Madison St, San Francisco, CA 94016" +294160,AAA Batteries (4-pack),1,2.99,11/18/19 12:50,"830 Dogwood St, Los Angeles, CA 90001" +294161,27in FHD Monitor,1,149.99,11/02/19 14:25,"991 Johnson St, Los Angeles, CA 90001" +294162,USB-C Charging Cable,1,11.95,11/25/19 13:58,"159 Pine St, Los Angeles, CA 90001" +294163,Bose SoundSport Headphones,1,99.99,11/17/19 21:32,"375 Jefferson St, Seattle, WA 98101" +294164,Wired Headphones,1,11.99,11/21/19 05:46,"974 Elm St, Austin, TX 73301" +294165,Wired Headphones,1,11.99,11/17/19 22:02,"177 Hickory St, New York City, NY 10001" +294166,AA Batteries (4-pack),1,3.84,11/17/19 20:55,"478 6th St, Boston, MA 02215" +294167,Bose SoundSport Headphones,1,99.99,11/10/19 00:13,"936 7th St, Austin, TX 73301" +294168,AAA Batteries (4-pack),1,2.99,11/10/19 15:24,"334 Center St, San Francisco, CA 94016" +294169,Flatscreen TV,1,300,11/09/19 10:32,"769 14th St, Dallas, TX 75001" +294170,27in FHD Monitor,1,149.99,11/09/19 11:06,"356 Washington St, Los Angeles, CA 90001" +294171,AA Batteries (4-pack),1,3.84,11/27/19 22:43,"280 9th St, New York City, NY 10001" +294172,Apple Airpods Headphones,1,150,11/25/19 10:53,"41 Willow St, Boston, MA 02215" +294173,Flatscreen TV,1,300,11/29/19 10:41,"668 11th St, Austin, TX 73301" +294174,AA Batteries (4-pack),2,3.84,11/30/19 12:07,"75 Dogwood St, Dallas, TX 75001" +294175,27in FHD Monitor,1,149.99,11/19/19 19:03,"685 Washington St, Austin, TX 73301" +294176,Flatscreen TV,1,300,11/15/19 10:13,"817 Chestnut St, Los Angeles, CA 90001" +294177,ThinkPad Laptop,1,999.99,11/14/19 20:00,"31 Park St, Los Angeles, CA 90001" +294177,27in FHD Monitor,1,149.99,11/14/19 20:00,"31 Park St, Los Angeles, CA 90001" +294178,ThinkPad Laptop,1,999.99,11/09/19 21:13,"967 7th St, San Francisco, CA 94016" +294179,AA Batteries (4-pack),1,3.84,11/20/19 01:07,"11 14th St, New York City, NY 10001" +294180,AA Batteries (4-pack),1,3.84,11/16/19 20:39,"260 Wilson St, Portland, OR 97035" +294181,USB-C Charging Cable,1,11.95,11/18/19 17:02,"455 9th St, Seattle, WA 98101" +294182,34in Ultrawide Monitor,1,379.99,11/07/19 05:53,"670 Jefferson St, New York City, NY 10001" +294183,27in 4K Gaming Monitor,1,389.99,11/04/19 09:27,"524 9th St, Portland, OR 97035" +294184,AA Batteries (4-pack),1,3.84,11/14/19 11:19,"484 6th St, Los Angeles, CA 90001" +294185,Apple Airpods Headphones,1,150,11/14/19 14:09,"836 5th St, Los Angeles, CA 90001" +294186,Lightning Charging Cable,2,14.95,11/15/19 15:40,"38 Ridge St, Los Angeles, CA 90001" +294187,Wired Headphones,1,11.99,11/09/19 22:12,"327 Lakeview St, Portland, OR 97035" +294188,34in Ultrawide Monitor,1,379.99,11/15/19 14:15,"660 River St, San Francisco, CA 94016" +294189,27in 4K Gaming Monitor,1,389.99,11/27/19 10:03,"348 Dogwood St, San Francisco, CA 94016" +294190,Apple Airpods Headphones,1,150,11/20/19 17:36,"400 12th St, Seattle, WA 98101" +294191,AA Batteries (4-pack),1,3.84,11/03/19 06:32,"85 14th St, Boston, MA 02215" +294192,Apple Airpods Headphones,1,150,11/23/19 09:18,"787 Maple St, Atlanta, GA 30301" +294193,ThinkPad Laptop,1,999.99,11/28/19 20:03,"577 7th St, Seattle, WA 98101" +294194,USB-C Charging Cable,1,11.95,11/04/19 14:20,"927 Church St, Portland, ME 04101" +294195,USB-C Charging Cable,2,11.95,11/21/19 22:54,"119 Main St, Los Angeles, CA 90001" +294196,AAA Batteries (4-pack),1,2.99,11/19/19 15:52,"907 Hickory St, San Francisco, CA 94016" +294197,ThinkPad Laptop,1,999.99,11/11/19 08:13,"340 1st St, Dallas, TX 75001" +294198,AA Batteries (4-pack),1,3.84,11/30/19 22:06,"82 Walnut St, Los Angeles, CA 90001" +294199,Lightning Charging Cable,1,14.95,11/23/19 09:45,"923 6th St, Austin, TX 73301" +294200,AA Batteries (4-pack),4,3.84,11/10/19 19:51,"825 Meadow St, Boston, MA 02215" +294201,Google Phone,1,600,11/24/19 10:34,"193 Hickory St, Dallas, TX 75001" +294202,AAA Batteries (4-pack),1,2.99,11/20/19 16:40,"600 Willow St, San Francisco, CA 94016" +294203,Google Phone,1,600,11/06/19 13:47,"333 6th St, San Francisco, CA 94016" +294203,Wired Headphones,1,11.99,11/06/19 13:47,"333 6th St, San Francisco, CA 94016" +294204,AA Batteries (4-pack),1,3.84,11/19/19 22:03,"205 Center St, Boston, MA 02215" +294205,USB-C Charging Cable,2,11.95,11/21/19 19:34,"662 Adams St, San Francisco, CA 94016" +294206,AA Batteries (4-pack),1,3.84,11/21/19 13:38,"273 Hickory St, San Francisco, CA 94016" +294207,iPhone,1,700,11/30/19 09:06,"914 Spruce St, Dallas, TX 75001" +294208,iPhone,1,700,11/11/19 06:57,"803 4th St, New York City, NY 10001" +294209,Apple Airpods Headphones,1,150,11/13/19 19:27,"167 South St, New York City, NY 10001" +294210,AA Batteries (4-pack),1,3.84,11/28/19 18:45,"858 Center St, Boston, MA 02215" +294211,AA Batteries (4-pack),1,3.84,11/29/19 22:01,"14 12th St, Boston, MA 02215" +294212,USB-C Charging Cable,1,11.95,11/29/19 12:09,"586 14th St, Atlanta, GA 30301" +294213,Google Phone,1,600,11/25/19 11:48,"720 Walnut St, New York City, NY 10001" +294213,USB-C Charging Cable,1,11.95,11/25/19 11:48,"720 Walnut St, New York City, NY 10001" +294214,Wired Headphones,1,11.99,11/24/19 12:51,"443 Hill St, Atlanta, GA 30301" +294215,LG Washing Machine,1,600.0,11/04/19 15:48,"939 Willow St, Atlanta, GA 30301" +294216,AAA Batteries (4-pack),2,2.99,11/26/19 19:07,"453 Cedar St, Atlanta, GA 30301" +294217,34in Ultrawide Monitor,1,379.99,11/30/19 20:58,"339 Maple St, New York City, NY 10001" +294218,AA Batteries (4-pack),1,3.84,11/20/19 13:14,"807 Cedar St, Boston, MA 02215" +294219,Lightning Charging Cable,1,14.95,11/16/19 01:30,"139 Walnut St, Boston, MA 02215" +294220,AAA Batteries (4-pack),1,2.99,11/09/19 10:50,"661 Madison St, Austin, TX 73301" +294221,Bose SoundSport Headphones,1,99.99,11/08/19 15:29,"475 Spruce St, New York City, NY 10001" +294222,Wired Headphones,1,11.99,11/26/19 22:01,"80 12th St, Atlanta, GA 30301" +294223,Wired Headphones,1,11.99,11/02/19 21:57,"358 West St, Atlanta, GA 30301" +294224,Lightning Charging Cable,1,14.95,11/15/19 18:30,"209 2nd St, San Francisco, CA 94016" +294225,AA Batteries (4-pack),1,3.84,11/23/19 16:36,"608 6th St, Boston, MA 02215" +294226,AAA Batteries (4-pack),1,2.99,11/08/19 19:07,"349 2nd St, Portland, ME 04101" +294227,Bose SoundSport Headphones,1,99.99,11/06/19 12:16,"306 6th St, New York City, NY 10001" +294228,Lightning Charging Cable,1,14.95,11/01/19 18:57,"574 Adams St, San Francisco, CA 94016" +294229,AAA Batteries (4-pack),2,2.99,11/16/19 00:31,"381 4th St, Dallas, TX 75001" +294230,Wired Headphones,1,11.99,11/30/19 00:00,"36 Jefferson St, Atlanta, GA 30301" +294231,Lightning Charging Cable,1,14.95,11/17/19 08:03,"880 Elm St, New York City, NY 10001" +294232,USB-C Charging Cable,3,11.95,11/17/19 23:22,"277 Madison St, San Francisco, CA 94016" +294233,iPhone,1,700,11/08/19 22:52,"459 Main St, Atlanta, GA 30301" +294234,AA Batteries (4-pack),2,3.84,11/13/19 23:49,"793 Church St, Los Angeles, CA 90001" +294235,Lightning Charging Cable,2,14.95,11/10/19 16:55,"19 Lincoln St, San Francisco, CA 94016" +294236,Lightning Charging Cable,1,14.95,11/16/19 08:18,"839 Elm St, San Francisco, CA 94016" +294237,Wired Headphones,2,11.99,11/25/19 10:18,"450 4th St, Atlanta, GA 30301" +294238,Flatscreen TV,1,300,11/02/19 09:46,"497 Church St, San Francisco, CA 94016" +294239,USB-C Charging Cable,1,11.95,11/06/19 10:02,"435 Main St, New York City, NY 10001" +294240,Bose SoundSport Headphones,1,99.99,11/28/19 18:48,"564 West St, San Francisco, CA 94016" +294241,AAA Batteries (4-pack),1,2.99,11/10/19 15:17,"369 Sunset St, Dallas, TX 75001" +294242,AAA Batteries (4-pack),3,2.99,11/16/19 17:30,"736 Highland St, Los Angeles, CA 90001" +294243,Apple Airpods Headphones,1,150,11/10/19 19:57,"640 North St, Austin, TX 73301" +294244,Apple Airpods Headphones,1,150,11/10/19 10:21,"699 River St, San Francisco, CA 94016" +294245,Lightning Charging Cable,1,14.95,11/06/19 16:35,"403 Maple St, San Francisco, CA 94016" +294246,iPhone,1,700,11/15/19 16:24,"754 Ridge St, New York City, NY 10001" +294247,Apple Airpods Headphones,1,150,11/10/19 06:56,"192 Chestnut St, New York City, NY 10001" +294248,Bose SoundSport Headphones,1,99.99,11/25/19 09:34,"957 Lake St, San Francisco, CA 94016" +294249,USB-C Charging Cable,1,11.95,11/21/19 10:30,"994 Park St, New York City, NY 10001" +294250,Bose SoundSport Headphones,1,99.99,11/15/19 12:04,"782 Washington St, San Francisco, CA 94016" +294251,AA Batteries (4-pack),1,3.84,11/22/19 10:22,"816 Forest St, San Francisco, CA 94016" +294252,Lightning Charging Cable,1,14.95,11/26/19 18:05,"117 Church St, Los Angeles, CA 90001" +294253,Lightning Charging Cable,2,14.95,11/16/19 09:11,"297 Johnson St, Atlanta, GA 30301" +294254,Wired Headphones,1,11.99,11/26/19 14:21,"664 9th St, Los Angeles, CA 90001" +294255,Lightning Charging Cable,1,14.95,11/14/19 02:40,"531 Ridge St, Boston, MA 02215" +294256,iPhone,1,700,11/01/19 16:40,"914 Maple St, New York City, NY 10001" +294257,Lightning Charging Cable,1,14.95,11/17/19 22:24,"595 Meadow St, Dallas, TX 75001" +294258,ThinkPad Laptop,1,999.99,11/24/19 11:07,"870 Maple St, Los Angeles, CA 90001" +294259,AA Batteries (4-pack),1,3.84,11/16/19 20:40,"56 Madison St, San Francisco, CA 94016" +294260,ThinkPad Laptop,1,999.99,11/06/19 08:35,"492 Lakeview St, New York City, NY 10001" +294261,iPhone,1,700,11/27/19 20:46,"467 5th St, San Francisco, CA 94016" +294262,Lightning Charging Cable,1,14.95,11/26/19 22:26,"621 Park St, Dallas, TX 75001" +294263,Lightning Charging Cable,1,14.95,11/29/19 20:16,"59 Madison St, Los Angeles, CA 90001" +294264,USB-C Charging Cable,1,11.95,11/15/19 21:38,"607 Center St, Los Angeles, CA 90001" +294265,Lightning Charging Cable,1,14.95,11/29/19 14:51,"246 River St, Atlanta, GA 30301" +294266,AAA Batteries (4-pack),1,2.99,11/27/19 22:25,"473 Jackson St, Seattle, WA 98101" +294267,USB-C Charging Cable,1,11.95,11/19/19 08:27,"208 2nd St, San Francisco, CA 94016" +294268,Apple Airpods Headphones,1,150,11/30/19 12:11,"80 Jefferson St, Los Angeles, CA 90001" +294269,Lightning Charging Cable,1,14.95,11/02/19 12:32,"727 Adams St, San Francisco, CA 94016" +294270,Wired Headphones,1,11.99,11/05/19 21:29,"766 Forest St, Atlanta, GA 30301" +294271,USB-C Charging Cable,1,11.95,11/03/19 15:22,"166 5th St, New York City, NY 10001" +294272,iPhone,1,700,11/19/19 08:06,"954 7th St, San Francisco, CA 94016" +294272,Apple Airpods Headphones,1,150,11/19/19 08:06,"954 7th St, San Francisco, CA 94016" +294273,AA Batteries (4-pack),2,3.84,11/09/19 20:37,"571 Sunset St, San Francisco, CA 94016" +294274,USB-C Charging Cable,2,11.95,11/10/19 16:19,"701 Center St, New York City, NY 10001" +294275,Wired Headphones,2,11.99,11/14/19 13:34,"758 1st St, Seattle, WA 98101" +294276,USB-C Charging Cable,1,11.95,11/03/19 19:30,"687 Jackson St, New York City, NY 10001" +294277,AAA Batteries (4-pack),2,2.99,11/19/19 20:03,"402 6th St, San Francisco, CA 94016" +294278,USB-C Charging Cable,1,11.95,11/05/19 18:53,"811 Sunset St, New York City, NY 10001" +294279,AAA Batteries (4-pack),2,2.99,11/24/19 14:29,"223 Cherry St, San Francisco, CA 94016" +294280,Apple Airpods Headphones,1,150,11/17/19 11:59,"342 7th St, Boston, MA 02215" +294281,Apple Airpods Headphones,1,150,11/11/19 19:57,"972 Ridge St, New York City, NY 10001" +294282,AAA Batteries (4-pack),2,2.99,11/17/19 20:27,"935 Hickory St, San Francisco, CA 94016" +294283,AA Batteries (4-pack),1,3.84,11/21/19 21:17,"154 North St, Portland, OR 97035" +294284,AA Batteries (4-pack),1,3.84,11/11/19 10:57,"469 Jefferson St, Atlanta, GA 30301" +294285,AA Batteries (4-pack),1,3.84,11/06/19 14:19,"192 12th St, Los Angeles, CA 90001" +294286,AAA Batteries (4-pack),1,2.99,11/09/19 20:06,"859 Lakeview St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +294287,Apple Airpods Headphones,1,150,11/24/19 14:38,"364 Spruce St, New York City, NY 10001" +294288,Lightning Charging Cable,1,14.95,11/28/19 01:49,"412 4th St, Seattle, WA 98101" +294289,AAA Batteries (4-pack),1,2.99,11/20/19 15:12,"576 Ridge St, San Francisco, CA 94016" +294290,27in FHD Monitor,1,149.99,11/05/19 12:43,"686 9th St, Los Angeles, CA 90001" +294291,Apple Airpods Headphones,1,150,11/14/19 19:36,"57 Lake St, New York City, NY 10001" +294292,AA Batteries (4-pack),1,3.84,11/13/19 10:42,"846 Hickory St, New York City, NY 10001" +294293,Lightning Charging Cable,1,14.95,11/11/19 23:07,"963 Adams St, New York City, NY 10001" +294294,AA Batteries (4-pack),1,3.84,11/25/19 11:51,"976 1st St, San Francisco, CA 94016" +294295,USB-C Charging Cable,1,11.95,11/02/19 11:46,"999 Highland St, San Francisco, CA 94016" +294296,LG Washing Machine,1,600.0,11/22/19 08:58,"669 Dogwood St, Seattle, WA 98101" +294297,AAA Batteries (4-pack),1,2.99,11/17/19 19:12,"472 Dogwood St, Los Angeles, CA 90001" +294298,Wired Headphones,1,11.99,11/27/19 16:07,"737 Willow St, San Francisco, CA 94016" +294299,20in Monitor,1,109.99,11/30/19 22:51,"260 West St, San Francisco, CA 94016" +294300,Wired Headphones,1,11.99,11/28/19 00:32,"52 9th St, Los Angeles, CA 90001" +294301,34in Ultrawide Monitor,1,379.99,11/21/19 13:10,"301 Park St, San Francisco, CA 94016" +294302,USB-C Charging Cable,1,11.95,11/27/19 19:54,"946 1st St, Los Angeles, CA 90001" +294303,Apple Airpods Headphones,1,150,11/18/19 18:41,"504 Wilson St, Atlanta, GA 30301" +294304,Wired Headphones,1,11.99,11/12/19 23:28,"205 9th St, New York City, NY 10001" +294305,AAA Batteries (4-pack),1,2.99,11/20/19 10:11,"909 Jackson St, New York City, NY 10001" +294306,USB-C Charging Cable,1,11.95,11/23/19 09:56,"692 Lincoln St, Boston, MA 02215" +294307,Macbook Pro Laptop,1,1700,11/27/19 15:14,"586 Highland St, New York City, NY 10001" +294308,Apple Airpods Headphones,1,150,11/15/19 22:12,"668 Main St, Boston, MA 02215" +294309,Macbook Pro Laptop,1,1700,11/03/19 13:58,"87 Chestnut St, Portland, OR 97035" +294310,Lightning Charging Cable,1,14.95,11/23/19 08:59,"900 10th St, Austin, TX 73301" +294311,AA Batteries (4-pack),1,3.84,11/20/19 01:38,"563 Adams St, Boston, MA 02215" +294312,Bose SoundSport Headphones,1,99.99,11/18/19 19:36,"511 Cedar St, Atlanta, GA 30301" +294313,Lightning Charging Cable,1,14.95,11/27/19 16:01,"409 Jefferson St, San Francisco, CA 94016" +294314,USB-C Charging Cable,1,11.95,11/15/19 17:59,"910 9th St, San Francisco, CA 94016" +294315,USB-C Charging Cable,1,11.95,11/17/19 13:46,"547 9th St, San Francisco, CA 94016" +294316,Macbook Pro Laptop,1,1700,11/24/19 17:28,"78 Main St, Los Angeles, CA 90001" +294317,USB-C Charging Cable,1,11.95,11/06/19 19:30,"195 10th St, Dallas, TX 75001" +294318,USB-C Charging Cable,1,11.95,11/01/19 11:18,"77 Dogwood St, Portland, OR 97035" +294319,Flatscreen TV,1,300,11/05/19 12:01,"838 Lakeview St, Portland, OR 97035" +294320,Lightning Charging Cable,1,14.95,11/27/19 14:38,"707 Willow St, Seattle, WA 98101" +294321,AAA Batteries (4-pack),1,2.99,11/30/19 11:22,"570 Highland St, San Francisco, CA 94016" +294322,Bose SoundSport Headphones,1,99.99,11/29/19 15:42,"663 Jefferson St, Los Angeles, CA 90001" +294323,Lightning Charging Cable,1,14.95,11/05/19 22:55,"463 Center St, Atlanta, GA 30301" +294324,Bose SoundSport Headphones,1,99.99,11/24/19 16:03,"596 South St, Los Angeles, CA 90001" +294325,Apple Airpods Headphones,1,150,11/07/19 16:23,"789 Jackson St, Los Angeles, CA 90001" +294326,Bose SoundSport Headphones,1,99.99,11/11/19 18:04,"647 Lakeview St, Boston, MA 02215" +294327,Apple Airpods Headphones,1,150,11/03/19 15:04,"882 Wilson St, Austin, TX 73301" +294328,Wired Headphones,1,11.99,11/21/19 23:05,"630 Ridge St, Portland, OR 97035" +294329,Flatscreen TV,1,300,11/29/19 21:09,"657 Highland St, Portland, ME 04101" +294330,34in Ultrawide Monitor,1,379.99,11/13/19 09:20,"445 North St, San Francisco, CA 94016" +294331,Wired Headphones,1,11.99,11/22/19 15:04,"444 6th St, Dallas, TX 75001" +294332,Lightning Charging Cable,1,14.95,11/25/19 19:46,"400 Spruce St, Portland, ME 04101" +294333,USB-C Charging Cable,1,11.95,11/22/19 17:17,"307 6th St, Los Angeles, CA 90001" +294334,AA Batteries (4-pack),1,3.84,11/30/19 11:51,"450 Elm St, Los Angeles, CA 90001" +294335,Lightning Charging Cable,1,14.95,11/08/19 21:52,"475 Center St, Los Angeles, CA 90001" +294336,Vareebadd Phone,1,400,11/06/19 11:17,"507 1st St, Portland, OR 97035" +294337,Apple Airpods Headphones,1,150,11/03/19 12:05,"384 Forest St, San Francisco, CA 94016" +294338,AA Batteries (4-pack),3,3.84,11/03/19 06:37,"498 Dogwood St, Los Angeles, CA 90001" +294339,Apple Airpods Headphones,1,150,11/20/19 10:08,"487 5th St, Atlanta, GA 30301" +294340,AA Batteries (4-pack),1,3.84,11/24/19 05:02,"556 9th St, Boston, MA 02215" +294341,USB-C Charging Cable,1,11.95,11/20/19 21:28,"502 Madison St, Dallas, TX 75001" +294342,Apple Airpods Headphones,1,150,11/07/19 00:39,"386 Chestnut St, Austin, TX 73301" +294343,Lightning Charging Cable,1,14.95,11/19/19 17:41,"812 11th St, New York City, NY 10001" +294344,USB-C Charging Cable,1,11.95,11/14/19 11:46,"967 Spruce St, Dallas, TX 75001" +294345,Bose SoundSport Headphones,1,99.99,11/12/19 12:18,"680 Main St, Portland, OR 97035" +294346,Google Phone,1,600,11/07/19 11:37,"284 Sunset St, Los Angeles, CA 90001" +294347,Apple Airpods Headphones,1,150,11/20/19 18:17,"219 Washington St, Los Angeles, CA 90001" +294348,Wired Headphones,1,11.99,11/19/19 16:23,"972 Lake St, Austin, TX 73301" +294349,Wired Headphones,1,11.99,11/30/19 12:26,"154 Jefferson St, San Francisco, CA 94016" +294350,AA Batteries (4-pack),1,3.84,11/25/19 13:58,"6 Forest St, New York City, NY 10001" +,,,,, +294351,27in FHD Monitor,1,149.99,11/11/19 13:23,"27 Johnson St, Los Angeles, CA 90001" +294352,iPhone,1,700,11/16/19 15:22,"487 7th St, Boston, MA 02215" +294352,AAA Batteries (4-pack),2,2.99,11/16/19 15:22,"487 7th St, Boston, MA 02215" +294353,AA Batteries (4-pack),2,3.84,11/01/19 17:43,"99 Hill St, San Francisco, CA 94016" +294354,Google Phone,1,600,11/16/19 20:18,"234 Ridge St, Atlanta, GA 30301" +294355,Lightning Charging Cable,1,14.95,11/14/19 19:14,"441 Lincoln St, Atlanta, GA 30301" +294356,AA Batteries (4-pack),1,3.84,11/18/19 19:37,"977 Lincoln St, Dallas, TX 75001" +294357,Macbook Pro Laptop,1,1700,11/17/19 17:11,"431 Walnut St, New York City, NY 10001" +294358,Apple Airpods Headphones,1,150,11/04/19 22:50,"87 9th St, New York City, NY 10001" +294359,Wired Headphones,1,11.99,11/14/19 17:14,"851 Church St, Atlanta, GA 30301" +294360,Apple Airpods Headphones,1,150,11/03/19 16:58,"829 Cherry St, Atlanta, GA 30301" +294361,Google Phone,1,600,11/30/19 07:38,"791 Willow St, Austin, TX 73301" +294361,USB-C Charging Cable,1,11.95,11/30/19 07:38,"791 Willow St, Austin, TX 73301" +294362,Wired Headphones,1,11.99,11/08/19 16:59,"125 Chestnut St, Portland, OR 97035" +294363,Wired Headphones,1,11.99,11/10/19 17:20,"438 11th St, Los Angeles, CA 90001" +294364,Apple Airpods Headphones,1,150,11/22/19 09:12,"691 North St, Seattle, WA 98101" +294365,Lightning Charging Cable,1,14.95,11/29/19 15:01,"450 5th St, San Francisco, CA 94016" +294366,Lightning Charging Cable,1,14.95,11/13/19 07:27,"486 4th St, Portland, OR 97035" +294367,Apple Airpods Headphones,1,150,11/05/19 06:09,"889 7th St, Atlanta, GA 30301" +294368,27in FHD Monitor,1,149.99,11/26/19 07:23,"698 14th St, San Francisco, CA 94016" +294368,USB-C Charging Cable,1,11.95,11/26/19 07:23,"698 14th St, San Francisco, CA 94016" +294369,Apple Airpods Headphones,1,150,11/30/19 12:13,"652 Washington St, San Francisco, CA 94016" +294370,USB-C Charging Cable,1,11.95,11/09/19 16:35,"443 Spruce St, Portland, OR 97035" +294371,Apple Airpods Headphones,1,150,11/23/19 13:22,"160 Wilson St, San Francisco, CA 94016" +294371,Bose SoundSport Headphones,1,99.99,11/23/19 13:22,"160 Wilson St, San Francisco, CA 94016" +294372,AAA Batteries (4-pack),1,2.99,11/15/19 13:18,"767 Hill St, Los Angeles, CA 90001" +294373,Lightning Charging Cable,1,14.95,11/14/19 19:30,"437 Lake St, New York City, NY 10001" +294374,Wired Headphones,1,11.99,11/14/19 06:32,"387 7th St, Los Angeles, CA 90001" +294375,27in 4K Gaming Monitor,1,389.99,11/29/19 23:53,"300 Hill St, San Francisco, CA 94016" +294376,AAA Batteries (4-pack),1,2.99,11/24/19 23:24,"922 Maple St, San Francisco, CA 94016" +294377,Bose SoundSport Headphones,1,99.99,11/10/19 20:59,"151 Lakeview St, Los Angeles, CA 90001" +294378,Lightning Charging Cable,1,14.95,11/10/19 08:33,"780 12th St, Portland, OR 97035" +294379,AA Batteries (4-pack),1,3.84,11/20/19 09:37,"400 1st St, Seattle, WA 98101" +294380,Wired Headphones,1,11.99,11/27/19 16:31,"568 Willow St, Seattle, WA 98101" +294381,34in Ultrawide Monitor,1,379.99,11/16/19 13:50,"63 Lakeview St, Atlanta, GA 30301" +294382,Lightning Charging Cable,1,14.95,11/21/19 09:04,"893 Ridge St, Atlanta, GA 30301" +294383,Apple Airpods Headphones,1,150,11/17/19 18:14,"321 10th St, Boston, MA 02215" +294384,Wired Headphones,1,11.99,11/24/19 22:17,"460 Wilson St, Los Angeles, CA 90001" +294385,USB-C Charging Cable,1,11.95,11/15/19 19:14,"439 North St, Los Angeles, CA 90001" +294386,Wired Headphones,1,11.99,11/06/19 06:08,"932 South St, Los Angeles, CA 90001" +294387,Bose SoundSport Headphones,1,99.99,11/03/19 20:31,"307 Johnson St, San Francisco, CA 94016" +294388,AAA Batteries (4-pack),1,2.99,11/22/19 22:50,"230 Adams St, Los Angeles, CA 90001" +294389,Lightning Charging Cable,1,14.95,11/24/19 19:09,"909 6th St, Portland, ME 04101" +294390,Bose SoundSport Headphones,1,99.99,11/14/19 21:04,"992 Johnson St, Seattle, WA 98101" +294391,Google Phone,1,600,11/12/19 07:58,"459 Elm St, Seattle, WA 98101" +294392,AA Batteries (4-pack),1,3.84,11/14/19 20:52,"409 Dogwood St, Seattle, WA 98101" +294393,Macbook Pro Laptop,1,1700,11/13/19 08:41,"660 14th St, Los Angeles, CA 90001" +294394,34in Ultrawide Monitor,1,379.99,11/09/19 23:38,"752 River St, Dallas, TX 75001" +294395,USB-C Charging Cable,1,11.95,11/13/19 11:06,"767 Jackson St, Los Angeles, CA 90001" +294396,Apple Airpods Headphones,1,150,11/24/19 09:30,"189 1st St, Los Angeles, CA 90001" +294397,ThinkPad Laptop,1,999.99,11/07/19 18:59,"945 5th St, Los Angeles, CA 90001" +294398,Lightning Charging Cable,1,14.95,11/26/19 08:46,"957 Madison St, San Francisco, CA 94016" +294399,Bose SoundSport Headphones,1,99.99,11/06/19 16:59,"178 Church St, Los Angeles, CA 90001" +294400,Wired Headphones,1,11.99,11/12/19 22:19,"949 14th St, Portland, ME 04101" +294401,Wired Headphones,1,11.99,11/24/19 19:33,"493 Meadow St, Portland, OR 97035" +294402,Apple Airpods Headphones,1,150,11/26/19 02:58,"391 11th St, San Francisco, CA 94016" +294403,ThinkPad Laptop,1,999.99,11/22/19 23:02,"849 Lakeview St, Los Angeles, CA 90001" +294404,USB-C Charging Cable,1,11.95,11/16/19 14:18,"234 Hickory St, San Francisco, CA 94016" +294405,Lightning Charging Cable,1,14.95,11/19/19 14:18,"627 Meadow St, Boston, MA 02215" +294406,AA Batteries (4-pack),1,3.84,11/29/19 17:55,"653 Maple St, San Francisco, CA 94016" +294407,20in Monitor,1,109.99,11/10/19 08:08,"505 Willow St, Boston, MA 02215" +294408,iPhone,1,700,11/01/19 17:59,"269 Elm St, New York City, NY 10001" +294408,Lightning Charging Cable,1,14.95,11/01/19 17:59,"269 Elm St, New York City, NY 10001" +294409,AAA Batteries (4-pack),2,2.99,11/05/19 09:30,"405 6th St, New York City, NY 10001" +294410,USB-C Charging Cable,1,11.95,11/04/19 12:20,"547 Cherry St, Los Angeles, CA 90001" +294411,AAA Batteries (4-pack),1,2.99,11/21/19 22:41,"650 Lake St, Dallas, TX 75001" +294412,Wired Headphones,1,11.99,11/17/19 18:17,"446 8th St, Austin, TX 73301" +294413,27in FHD Monitor,1,149.99,11/22/19 05:24,"879 Cherry St, Portland, OR 97035" +294414,USB-C Charging Cable,1,11.95,11/29/19 21:34,"151 Ridge St, Dallas, TX 75001" +294415,AA Batteries (4-pack),1,3.84,11/24/19 22:18,"697 Willow St, Portland, OR 97035" +294416,USB-C Charging Cable,1,11.95,11/01/19 17:45,"341 10th St, San Francisco, CA 94016" +294417,Wired Headphones,1,11.99,11/17/19 08:41,"926 Spruce St, Austin, TX 73301" +294418,20in Monitor,1,109.99,11/20/19 08:14,"32 10th St, Los Angeles, CA 90001" +294418,34in Ultrawide Monitor,1,379.99,11/20/19 08:14,"32 10th St, Los Angeles, CA 90001" +294419,Apple Airpods Headphones,1,150,11/08/19 05:51,"125 Sunset St, Los Angeles, CA 90001" +294420,Lightning Charging Cable,1,14.95,11/15/19 00:46,"482 Hickory St, Seattle, WA 98101" +294421,27in FHD Monitor,1,149.99,11/24/19 21:07,"775 Pine St, Portland, OR 97035" +294422,AAA Batteries (4-pack),1,2.99,11/20/19 19:54,"820 Chestnut St, Seattle, WA 98101" +294423,AA Batteries (4-pack),2,3.84,11/09/19 21:27,"633 11th St, San Francisco, CA 94016" +294423,27in FHD Monitor,1,149.99,11/09/19 21:27,"633 11th St, San Francisco, CA 94016" +294424,USB-C Charging Cable,1,11.95,11/21/19 22:45,"302 13th St, Seattle, WA 98101" +294425,AAA Batteries (4-pack),1,2.99,11/15/19 20:48,"680 Walnut St, Los Angeles, CA 90001" +294426,Bose SoundSport Headphones,1,99.99,11/23/19 18:54,"538 Main St, San Francisco, CA 94016" +294427,AA Batteries (4-pack),1,3.84,11/16/19 17:21,"317 Johnson St, Atlanta, GA 30301" +294428,USB-C Charging Cable,1,11.95,11/03/19 12:46,"88 North St, Dallas, TX 75001" +294429,AA Batteries (4-pack),1,3.84,11/02/19 11:15,"277 Spruce St, Los Angeles, CA 90001" +294430,Wired Headphones,1,11.99,11/26/19 10:21,"669 13th St, San Francisco, CA 94016" +294431,27in 4K Gaming Monitor,1,389.99,11/05/19 11:41,"6 Washington St, New York City, NY 10001" +294432,Lightning Charging Cable,1,14.95,11/19/19 12:45,"563 Chestnut St, San Francisco, CA 94016" +294433,AAA Batteries (4-pack),1,2.99,11/07/19 14:19,"360 South St, Austin, TX 73301" +294434,USB-C Charging Cable,1,11.95,11/05/19 17:56,"79 Chestnut St, Seattle, WA 98101" +294435,Bose SoundSport Headphones,1,99.99,11/09/19 23:35,"913 Hickory St, San Francisco, CA 94016" +294436,Lightning Charging Cable,1,14.95,11/21/19 10:36,"363 Lakeview St, San Francisco, CA 94016" +294437,USB-C Charging Cable,1,11.95,11/26/19 22:28,"615 2nd St, San Francisco, CA 94016" +294438,20in Monitor,1,109.99,11/08/19 00:41,"898 10th St, Portland, ME 04101" +294439,AA Batteries (4-pack),1,3.84,11/20/19 21:36,"663 Elm St, Boston, MA 02215" +294440,AA Batteries (4-pack),1,3.84,11/01/19 10:02,"148 Hickory St, Los Angeles, CA 90001" +294441,Lightning Charging Cable,1,14.95,11/18/19 18:34,"362 River St, Los Angeles, CA 90001" +294442,USB-C Charging Cable,1,11.95,11/15/19 10:24,"791 Forest St, San Francisco, CA 94016" +294443,USB-C Charging Cable,1,11.95,11/15/19 13:31,"707 10th St, Los Angeles, CA 90001" +294444,Flatscreen TV,1,300,11/15/19 15:28,"125 Jefferson St, Dallas, TX 75001" +294445,Wired Headphones,1,11.99,11/06/19 17:43,"96 Elm St, Atlanta, GA 30301" +294446,34in Ultrawide Monitor,1,379.99,11/13/19 12:05,"404 Lakeview St, Boston, MA 02215" +294447,AA Batteries (4-pack),1,3.84,11/23/19 19:28,"596 Church St, Los Angeles, CA 90001" +294448,Apple Airpods Headphones,1,150,11/07/19 21:26,"673 Main St, San Francisco, CA 94016" +294449,Apple Airpods Headphones,1,150,11/02/19 11:37,"541 13th St, New York City, NY 10001" +294450,USB-C Charging Cable,1,11.95,11/18/19 16:13,"150 Hill St, Austin, TX 73301" +294451,Lightning Charging Cable,1,14.95,11/13/19 20:34,"86 Adams St, Los Angeles, CA 90001" +294452,AAA Batteries (4-pack),1,2.99,11/29/19 11:14,"295 South St, San Francisco, CA 94016" +294453,USB-C Charging Cable,1,11.95,11/14/19 21:14,"777 Sunset St, Boston, MA 02215" +294454,USB-C Charging Cable,1,11.95,11/26/19 11:34,"944 4th St, Boston, MA 02215" +294455,AA Batteries (4-pack),2,3.84,11/13/19 22:43,"639 11th St, Boston, MA 02215" +294456,Bose SoundSport Headphones,1,99.99,11/10/19 12:11,"885 Dogwood St, San Francisco, CA 94016" +294457,27in 4K Gaming Monitor,1,389.99,11/13/19 09:45,"154 5th St, Boston, MA 02215" +294458,iPhone,1,700,11/30/19 12:29,"249 2nd St, Seattle, WA 98101" +294459,Bose SoundSport Headphones,1,99.99,11/12/19 10:08,"834 Center St, Atlanta, GA 30301" +294460,Wired Headphones,1,11.99,11/15/19 11:31,"38 Church St, San Francisco, CA 94016" +294461,Wired Headphones,1,11.99,11/30/19 21:09,"667 Washington St, Dallas, TX 75001" +294462,Bose SoundSport Headphones,1,99.99,11/20/19 10:47,"839 Lake St, New York City, NY 10001" +294463,Wired Headphones,1,11.99,11/25/19 16:31,"334 Elm St, Dallas, TX 75001" +294464,Wired Headphones,1,11.99,11/12/19 21:44,"647 Hill St, New York City, NY 10001" +294465,34in Ultrawide Monitor,1,379.99,11/30/19 15:02,"425 Adams St, Los Angeles, CA 90001" +294466,Apple Airpods Headphones,1,150,11/11/19 14:43,"83 Lincoln St, San Francisco, CA 94016" +294467,Bose SoundSport Headphones,1,99.99,11/22/19 15:04,"259 Washington St, San Francisco, CA 94016" +294468,ThinkPad Laptop,1,999.99,11/07/19 14:29,"395 1st St, Atlanta, GA 30301" +294469,Bose SoundSport Headphones,1,99.99,11/20/19 12:15,"511 Hill St, Los Angeles, CA 90001" +294470,Lightning Charging Cable,1,14.95,11/10/19 13:35,"211 Spruce St, Boston, MA 02215" +294471,Wired Headphones,1,11.99,11/06/19 18:35,"98 11th St, San Francisco, CA 94016" +294472,Google Phone,1,600,11/18/19 19:56,"369 4th St, Dallas, TX 75001" +294473,USB-C Charging Cable,1,11.95,11/14/19 01:26,"795 Washington St, Austin, TX 73301" +294474,ThinkPad Laptop,1,999.99,11/08/19 10:09,"997 Spruce St, Dallas, TX 75001" +294474,Apple Airpods Headphones,1,150,11/08/19 10:09,"997 Spruce St, Dallas, TX 75001" +294475,USB-C Charging Cable,1,11.95,11/04/19 09:45,"910 Hickory St, Boston, MA 02215" +294476,20in Monitor,1,109.99,11/22/19 22:25,"462 Wilson St, Los Angeles, CA 90001" +294477,Bose SoundSport Headphones,1,99.99,11/02/19 17:02,"654 Forest St, Boston, MA 02215" +294478,AA Batteries (4-pack),2,3.84,11/12/19 12:35,"414 2nd St, Austin, TX 73301" +294479,34in Ultrawide Monitor,1,379.99,11/09/19 17:53,"55 Hill St, Boston, MA 02215" +294480,34in Ultrawide Monitor,1,379.99,11/11/19 20:02,"105 12th St, San Francisco, CA 94016" +294481,iPhone,1,700,11/24/19 22:56,"345 Cherry St, Los Angeles, CA 90001" +294482,AAA Batteries (4-pack),1,2.99,11/25/19 16:46,"514 2nd St, Los Angeles, CA 90001" +294483,Wired Headphones,1,11.99,11/29/19 13:03,"151 Walnut St, Portland, ME 04101" +294484,27in FHD Monitor,1,149.99,11/29/19 11:29,"443 Jefferson St, Dallas, TX 75001" +294485,34in Ultrawide Monitor,1,379.99,11/14/19 17:21,"220 Dogwood St, Atlanta, GA 30301" +294486,27in 4K Gaming Monitor,1,389.99,11/06/19 18:36,"76 10th St, Los Angeles, CA 90001" +294487,Lightning Charging Cable,1,14.95,11/04/19 22:40,"443 Center St, Atlanta, GA 30301" +294488,Wired Headphones,1,11.99,11/21/19 12:01,"389 Highland St, Austin, TX 73301" +294489,Lightning Charging Cable,1,14.95,11/12/19 11:32,"948 Ridge St, San Francisco, CA 94016" +294490,Wired Headphones,1,11.99,11/10/19 11:39,"180 4th St, New York City, NY 10001" +294491,AA Batteries (4-pack),1,3.84,11/05/19 12:58,"942 Ridge St, Portland, OR 97035" +294492,AAA Batteries (4-pack),1,2.99,11/06/19 11:21,"672 6th St, San Francisco, CA 94016" +294493,USB-C Charging Cable,1,11.95,11/12/19 22:50,"218 Madison St, Portland, OR 97035" +294494,20in Monitor,1,109.99,11/07/19 18:41,"189 Johnson St, Boston, MA 02215" +294495,AAA Batteries (4-pack),2,2.99,11/08/19 08:13,"68 Elm St, San Francisco, CA 94016" +294496,34in Ultrawide Monitor,1,379.99,11/04/19 18:39,"809 10th St, Seattle, WA 98101" +294497,27in 4K Gaming Monitor,1,389.99,11/03/19 21:28,"655 11th St, Portland, OR 97035" +294498,Google Phone,1,600,11/13/19 10:40,"776 Lincoln St, Austin, TX 73301" +294499,Macbook Pro Laptop,1,1700,11/22/19 18:15,"132 5th St, Dallas, TX 75001" +294500,AAA Batteries (4-pack),1,2.99,11/05/19 21:19,"943 Forest St, San Francisco, CA 94016" +294501,27in FHD Monitor,1,149.99,11/02/19 18:51,"263 Park St, Los Angeles, CA 90001" +294502,Wired Headphones,1,11.99,11/16/19 21:01,"459 Washington St, San Francisco, CA 94016" +294503,27in 4K Gaming Monitor,1,389.99,11/18/19 17:59,"171 Meadow St, Los Angeles, CA 90001" +294504,AA Batteries (4-pack),1,3.84,11/08/19 12:29,"812 12th St, Dallas, TX 75001" +294505,27in 4K Gaming Monitor,1,389.99,11/06/19 08:33,"835 Cherry St, San Francisco, CA 94016" +294506,AA Batteries (4-pack),1,3.84,11/19/19 09:53,"905 West St, Dallas, TX 75001" +294507,USB-C Charging Cable,1,11.95,11/25/19 21:56,"997 7th St, Los Angeles, CA 90001" +294508,USB-C Charging Cable,1,11.95,11/20/19 17:10,"230 12th St, New York City, NY 10001" +294509,Google Phone,1,600,11/06/19 11:09,"370 West St, Seattle, WA 98101" +294510,USB-C Charging Cable,1,11.95,11/04/19 12:27,"226 8th St, Seattle, WA 98101" +294511,AAA Batteries (4-pack),1,2.99,11/12/19 19:33,"516 Center St, Seattle, WA 98101" +294512,Apple Airpods Headphones,1,150,11/17/19 12:47,"669 Washington St, Atlanta, GA 30301" +294513,Macbook Pro Laptop,1,1700,11/14/19 16:46,"656 Madison St, San Francisco, CA 94016" +294514,Bose SoundSport Headphones,1,99.99,11/19/19 22:24,"166 Washington St, Dallas, TX 75001" +294515,USB-C Charging Cable,1,11.95,11/19/19 21:00,"182 5th St, Los Angeles, CA 90001" +294516,Lightning Charging Cable,1,14.95,11/20/19 18:27,"277 Main St, New York City, NY 10001" +294516,Lightning Charging Cable,1,14.95,11/20/19 18:27,"277 Main St, New York City, NY 10001" +294517,Lightning Charging Cable,1,14.95,11/05/19 13:01,"402 Lake St, New York City, NY 10001" +294518,34in Ultrawide Monitor,1,379.99,11/21/19 10:20,"348 Spruce St, Los Angeles, CA 90001" +294519,Macbook Pro Laptop,1,1700,11/10/19 19:26,"423 Park St, Boston, MA 02215" +294520,Bose SoundSport Headphones,1,99.99,11/09/19 18:50,"465 Jackson St, San Francisco, CA 94016" +294521,USB-C Charging Cable,1,11.95,11/30/19 11:23,"768 Jefferson St, San Francisco, CA 94016" +294522,Lightning Charging Cable,1,14.95,11/23/19 10:17,"399 Meadow St, San Francisco, CA 94016" +294523,AAA Batteries (4-pack),1,2.99,11/03/19 11:53,"847 North St, Boston, MA 02215" +294524,Bose SoundSport Headphones,1,99.99,11/25/19 14:58,"172 Sunset St, Dallas, TX 75001" +294525,Apple Airpods Headphones,1,150,11/18/19 21:23,"899 11th St, Dallas, TX 75001" +294526,USB-C Charging Cable,1,11.95,11/07/19 16:42,"104 River St, Los Angeles, CA 90001" +294527,34in Ultrawide Monitor,1,379.99,11/24/19 08:50,"260 Wilson St, Dallas, TX 75001" +294528,34in Ultrawide Monitor,1,379.99,11/11/19 16:16,"68 Ridge St, San Francisco, CA 94016" +294529,ThinkPad Laptop,1,999.99,11/18/19 01:01,"978 13th St, Los Angeles, CA 90001" +294530,Wired Headphones,1,11.99,11/29/19 17:47,"106 North St, Los Angeles, CA 90001" +294531,Apple Airpods Headphones,1,150,11/28/19 17:52,"174 Adams St, San Francisco, CA 94016" +294532,AAA Batteries (4-pack),2,2.99,11/17/19 11:56,"221 Madison St, Los Angeles, CA 90001" +294533,Bose SoundSport Headphones,2,99.99,11/08/19 19:21,"367 Main St, Seattle, WA 98101" +294534,AA Batteries (4-pack),2,3.84,11/03/19 11:35,"954 Forest St, San Francisco, CA 94016" +294535,Lightning Charging Cable,1,14.95,11/09/19 18:43,"417 Jefferson St, Seattle, WA 98101" +294536,iPhone,1,700,11/23/19 12:22,"583 11th St, Seattle, WA 98101" +294537,Lightning Charging Cable,1,14.95,11/14/19 08:35,"411 South St, New York City, NY 10001" +294538,Apple Airpods Headphones,2,150,11/26/19 12:09,"690 Center St, San Francisco, CA 94016" +294539,Apple Airpods Headphones,1,150,11/14/19 11:20,"619 2nd St, Los Angeles, CA 90001" +294540,Bose SoundSport Headphones,1,99.99,11/01/19 02:18,"323 Lakeview St, New York City, NY 10001" +294541,27in FHD Monitor,1,149.99,11/14/19 01:52,"978 Highland St, Boston, MA 02215" +294542,Lightning Charging Cable,1,14.95,11/19/19 01:54,"850 Chestnut St, Boston, MA 02215" +294543,AA Batteries (4-pack),1,3.84,11/01/19 16:58,"736 Willow St, Boston, MA 02215" +294544,iPhone,1,700,11/02/19 19:41,"678 4th St, New York City, NY 10001" +294545,Lightning Charging Cable,1,14.95,11/23/19 00:34,"882 Sunset St, New York City, NY 10001" +294546,USB-C Charging Cable,1,11.95,11/26/19 05:53,"130 Walnut St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +294547,iPhone,1,700,11/10/19 18:33,"709 West St, Los Angeles, CA 90001" +294547,Lightning Charging Cable,1,14.95,11/10/19 18:33,"709 West St, Los Angeles, CA 90001" +294548,Lightning Charging Cable,1,14.95,11/22/19 20:50,"935 6th St, Atlanta, GA 30301" +294549,Lightning Charging Cable,1,14.95,11/15/19 14:22,"169 Jackson St, New York City, NY 10001" +294550,AA Batteries (4-pack),2,3.84,11/20/19 18:19,"636 Lakeview St, Los Angeles, CA 90001" +294551,27in 4K Gaming Monitor,1,389.99,11/08/19 12:30,"795 Cherry St, San Francisco, CA 94016" +294552,AA Batteries (4-pack),1,3.84,11/12/19 16:48,"951 8th St, Dallas, TX 75001" +294553,Lightning Charging Cable,2,14.95,11/25/19 20:24,"960 Church St, Los Angeles, CA 90001" +,,,,, +294554,Wired Headphones,1,11.99,11/18/19 20:48,"394 Wilson St, Boston, MA 02215" +294555,27in FHD Monitor,1,149.99,11/27/19 00:21,"203 4th St, New York City, NY 10001" +294556,AA Batteries (4-pack),1,3.84,11/29/19 19:46,"270 Forest St, Atlanta, GA 30301" +294557,USB-C Charging Cable,1,11.95,11/19/19 09:27,"771 Center St, Dallas, TX 75001" +294558,iPhone,1,700,11/01/19 15:24,"401 10th St, San Francisco, CA 94016" +294558,Lightning Charging Cable,1,14.95,11/01/19 15:24,"401 10th St, San Francisco, CA 94016" +294558,Wired Headphones,1,11.99,11/01/19 15:24,"401 10th St, San Francisco, CA 94016" +294559,27in FHD Monitor,1,149.99,11/18/19 13:58,"697 8th St, New York City, NY 10001" +294560,AA Batteries (4-pack),1,3.84,11/09/19 20:06,"670 West St, Portland, OR 97035" +294561,ThinkPad Laptop,1,999.99,11/06/19 20:28,"614 Lincoln St, Dallas, TX 75001" +294562,Apple Airpods Headphones,1,150,11/05/19 17:27,"495 Jackson St, Los Angeles, CA 90001" +294563,AA Batteries (4-pack),1,3.84,11/17/19 11:32,"460 South St, New York City, NY 10001" +294564,AAA Batteries (4-pack),1,2.99,11/30/19 07:03,"658 Chestnut St, San Francisco, CA 94016" +294565,Bose SoundSport Headphones,1,99.99,11/10/19 18:59,"285 Chestnut St, Seattle, WA 98101" +294566,Macbook Pro Laptop,1,1700,11/20/19 11:43,"424 Church St, Boston, MA 02215" +294567,USB-C Charging Cable,1,11.95,11/28/19 15:29,"205 Washington St, New York City, NY 10001" +294568,Lightning Charging Cable,1,14.95,11/19/19 12:06,"942 Cherry St, Los Angeles, CA 90001" +294569,AAA Batteries (4-pack),1,2.99,11/08/19 19:04,"236 South St, San Francisco, CA 94016" +294570,27in FHD Monitor,1,149.99,11/15/19 16:04,"831 Jackson St, San Francisco, CA 94016" +294571,AAA Batteries (4-pack),3,2.99,11/16/19 14:36,"433 West St, Portland, OR 97035" +294572,Apple Airpods Headphones,1,150,11/14/19 17:43,"206 Park St, San Francisco, CA 94016" +294573,Bose SoundSport Headphones,1,99.99,11/05/19 20:41,"866 Hickory St, Atlanta, GA 30301" +294574,Bose SoundSport Headphones,1,99.99,11/16/19 16:11,"637 Lakeview St, Los Angeles, CA 90001" +294575,Bose SoundSport Headphones,1,99.99,11/30/19 16:07,"968 Madison St, San Francisco, CA 94016" +294576,USB-C Charging Cable,1,11.95,11/26/19 14:01,"513 Elm St, Dallas, TX 75001" +294577,Lightning Charging Cable,1,14.95,11/22/19 18:07,"260 Sunset St, Los Angeles, CA 90001" +294578,Lightning Charging Cable,1,14.95,11/26/19 17:02,"514 Meadow St, Los Angeles, CA 90001" +294579,Apple Airpods Headphones,1,150,11/10/19 13:56,"420 Sunset St, San Francisco, CA 94016" +294580,AAA Batteries (4-pack),1,2.99,11/18/19 18:03,"18 Pine St, Atlanta, GA 30301" +294581,Lightning Charging Cable,1,14.95,11/18/19 12:02,"428 Lake St, Los Angeles, CA 90001" +294582,20in Monitor,1,109.99,11/22/19 14:32,"214 South St, San Francisco, CA 94016" +294583,Wired Headphones,1,11.99,11/09/19 08:28,"300 Johnson St, San Francisco, CA 94016" +294584,Vareebadd Phone,1,400,11/25/19 12:41,"740 4th St, Boston, MA 02215" +294585,AAA Batteries (4-pack),1,2.99,11/05/19 13:27,"253 7th St, Boston, MA 02215" +294586,AA Batteries (4-pack),1,3.84,11/23/19 10:28,"226 2nd St, Los Angeles, CA 90001" +294587,Macbook Pro Laptop,1,1700,11/20/19 19:06,"982 Lakeview St, San Francisco, CA 94016" +294588,AAA Batteries (4-pack),1,2.99,11/22/19 02:30,"779 Lincoln St, Dallas, TX 75001" +294589,USB-C Charging Cable,1,11.95,11/25/19 07:54,"791 Lakeview St, Boston, MA 02215" +294590,20in Monitor,1,109.99,11/07/19 08:07,"488 Maple St, Los Angeles, CA 90001" +294591,27in 4K Gaming Monitor,1,389.99,11/07/19 20:43,"69 Lake St, Los Angeles, CA 90001" +294592,Bose SoundSport Headphones,1,99.99,11/19/19 19:57,"565 Jefferson St, Los Angeles, CA 90001" +294593,Wired Headphones,1,11.99,11/22/19 21:21,"564 Main St, Portland, OR 97035" +294594,AA Batteries (4-pack),1,3.84,11/23/19 13:37,"890 Church St, Los Angeles, CA 90001" +294595,Apple Airpods Headphones,1,150,11/03/19 00:42,"845 Wilson St, New York City, NY 10001" +294596,Flatscreen TV,1,300,11/30/19 12:13,"721 Walnut St, Boston, MA 02215" +294597,Lightning Charging Cable,1,14.95,11/25/19 11:48,"382 Jefferson St, Austin, TX 73301" +294598,AAA Batteries (4-pack),2,2.99,11/12/19 16:07,"986 Spruce St, Boston, MA 02215" +294599,Wired Headphones,1,11.99,11/30/19 20:12,"359 Elm St, New York City, NY 10001" +294600,AA Batteries (4-pack),1,3.84,11/21/19 17:20,"642 Hill St, New York City, NY 10001" +294601,Google Phone,1,600,11/10/19 22:19,"433 Church St, San Francisco, CA 94016" +294602,AAA Batteries (4-pack),1,2.99,11/05/19 13:29,"334 Wilson St, New York City, NY 10001" +294603,iPhone,1,700,11/24/19 12:13,"329 Dogwood St, New York City, NY 10001" +294604,Lightning Charging Cable,1,14.95,11/19/19 00:32,"826 4th St, New York City, NY 10001" +294605,AA Batteries (4-pack),2,3.84,11/06/19 18:11,"85 Maple St, Boston, MA 02215" +294606,AAA Batteries (4-pack),1,2.99,11/24/19 20:02,"55 Hickory St, Seattle, WA 98101" +294607,Bose SoundSport Headphones,1,99.99,11/02/19 19:34,"992 Adams St, New York City, NY 10001" +294608,Google Phone,1,600,11/03/19 22:56,"801 Spruce St, New York City, NY 10001" +294609,Apple Airpods Headphones,1,150,11/08/19 19:08,"858 9th St, Dallas, TX 75001" +294610,Apple Airpods Headphones,1,150,11/16/19 18:32,"216 Dogwood St, Los Angeles, CA 90001" +294611,AA Batteries (4-pack),1,3.84,11/10/19 20:14,"706 Dogwood St, Austin, TX 73301" +294612,ThinkPad Laptop,1,999.99,11/09/19 10:58,"838 Chestnut St, Los Angeles, CA 90001" +294613,Lightning Charging Cable,1,14.95,11/30/19 18:19,"165 Madison St, New York City, NY 10001" +294614,USB-C Charging Cable,1,11.95,11/07/19 16:53,"339 West St, New York City, NY 10001" +294615,Wired Headphones,1,11.99,11/24/19 22:41,"386 9th St, Los Angeles, CA 90001" +294616,Bose SoundSport Headphones,1,99.99,11/25/19 20:11,"836 Main St, Los Angeles, CA 90001" +294617,Macbook Pro Laptop,1,1700,11/24/19 08:48,"999 5th St, Boston, MA 02215" +294618,Lightning Charging Cable,1,14.95,11/13/19 12:33,"558 Cedar St, Austin, TX 73301" +294619,AAA Batteries (4-pack),2,2.99,11/24/19 09:30,"841 Willow St, Los Angeles, CA 90001" +294620,Wired Headphones,1,11.99,11/25/19 16:55,"451 Elm St, Los Angeles, CA 90001" +294621,Wired Headphones,1,11.99,11/22/19 08:35,"448 Highland St, San Francisco, CA 94016" +294622,Apple Airpods Headphones,1,150,11/25/19 13:28,"718 Wilson St, Los Angeles, CA 90001" +294623,AAA Batteries (4-pack),2,2.99,11/12/19 20:03,"896 8th St, Dallas, TX 75001" +294624,iPhone,1,700,11/27/19 17:21,"175 Jefferson St, Los Angeles, CA 90001" +294625,USB-C Charging Cable,1,11.95,11/16/19 15:54,"112 North St, Los Angeles, CA 90001" +294626,Wired Headphones,1,11.99,11/04/19 15:03,"706 Lake St, Atlanta, GA 30301" +294627,iPhone,1,700,11/20/19 20:47,"742 Hickory St, Austin, TX 73301" +294628,34in Ultrawide Monitor,1,379.99,11/15/19 17:49,"831 Wilson St, Los Angeles, CA 90001" +294629,Bose SoundSport Headphones,1,99.99,11/06/19 21:04,"920 Ridge St, Boston, MA 02215" +294630,Lightning Charging Cable,1,14.95,11/10/19 13:19,"285 Spruce St, New York City, NY 10001" +294631,Flatscreen TV,1,300,11/22/19 16:02,"822 Cedar St, New York City, NY 10001" +294632,27in FHD Monitor,1,149.99,11/02/19 12:51,"925 Jefferson St, Los Angeles, CA 90001" +294633,USB-C Charging Cable,1,11.95,11/08/19 18:20,"75 Johnson St, San Francisco, CA 94016" +294634,AA Batteries (4-pack),1,3.84,11/30/19 20:56,"936 Lincoln St, Dallas, TX 75001" +294635,Wired Headphones,1,11.99,11/04/19 22:42,"975 Meadow St, Boston, MA 02215" +294636,Apple Airpods Headphones,1,150,11/18/19 10:30,"604 4th St, Boston, MA 02215" +294637,Apple Airpods Headphones,1,150,11/28/19 11:09,"73 8th St, Seattle, WA 98101" +294638,USB-C Charging Cable,2,11.95,11/18/19 21:31,"75 West St, San Francisco, CA 94016" +294639,AAA Batteries (4-pack),2,2.99,11/08/19 09:06,"643 11th St, Los Angeles, CA 90001" +294640,Macbook Pro Laptop,1,1700,11/09/19 19:41,"392 Jefferson St, Boston, MA 02215" +294641,AAA Batteries (4-pack),1,2.99,11/04/19 23:41,"306 2nd St, Boston, MA 02215" +294642,AA Batteries (4-pack),1,3.84,11/28/19 19:02,"240 Cedar St, Boston, MA 02215" +294643,27in FHD Monitor,1,149.99,11/05/19 20:52,"29 Hill St, San Francisco, CA 94016" +294644,Wired Headphones,1,11.99,11/26/19 17:45,"964 Lincoln St, Los Angeles, CA 90001" +294645,Wired Headphones,1,11.99,11/08/19 17:56,"230 Willow St, New York City, NY 10001" +294646,USB-C Charging Cable,1,11.95,11/15/19 16:11,"409 Cedar St, New York City, NY 10001" +294647,Bose SoundSport Headphones,1,99.99,11/13/19 01:06,"981 Cedar St, Atlanta, GA 30301" +294648,AA Batteries (4-pack),2,3.84,11/29/19 19:25,"563 Maple St, Dallas, TX 75001" +294649,AA Batteries (4-pack),1,3.84,11/15/19 16:13,"115 Cherry St, Atlanta, GA 30301" +294650,Wired Headphones,1,11.99,11/15/19 17:15,"256 Meadow St, Los Angeles, CA 90001" +294651,27in FHD Monitor,1,149.99,11/14/19 11:10,"24 13th St, New York City, NY 10001" +294652,Wired Headphones,1,11.99,11/24/19 19:47,"169 Ridge St, Austin, TX 73301" +294653,Bose SoundSport Headphones,1,99.99,11/13/19 10:30,"917 10th St, Atlanta, GA 30301" +294654,Apple Airpods Headphones,1,150,11/23/19 21:12,"908 4th St, San Francisco, CA 94016" +294655,AAA Batteries (4-pack),1,2.99,11/02/19 10:37,"806 Hickory St, San Francisco, CA 94016" +294656,Lightning Charging Cable,1,14.95,11/04/19 23:00,"529 Walnut St, Atlanta, GA 30301" +294657,AA Batteries (4-pack),1,3.84,11/22/19 21:32,"133 10th St, Boston, MA 02215" +294658,Apple Airpods Headphones,1,150,11/02/19 12:41,"771 11th St, New York City, NY 10001" +294659,AAA Batteries (4-pack),2,2.99,11/07/19 11:08,"669 Jefferson St, San Francisco, CA 94016" +294660,Macbook Pro Laptop,1,1700,11/22/19 14:45,"613 South St, Los Angeles, CA 90001" +294661,USB-C Charging Cable,1,11.95,11/03/19 20:44,"395 Wilson St, Los Angeles, CA 90001" +294662,Apple Airpods Headphones,1,150,11/16/19 10:48,"366 Hill St, Los Angeles, CA 90001" +294663,Apple Airpods Headphones,1,150,11/06/19 11:37,"614 Maple St, Los Angeles, CA 90001" +294664,Lightning Charging Cable,2,14.95,11/18/19 16:37,"482 Spruce St, San Francisco, CA 94016" +294665,Flatscreen TV,1,300,11/15/19 07:32,"300 Jackson St, San Francisco, CA 94016" +294666,AAA Batteries (4-pack),3,2.99,11/11/19 22:49,"725 Wilson St, Seattle, WA 98101" +294667,AAA Batteries (4-pack),2,2.99,11/19/19 19:21,"860 12th St, San Francisco, CA 94016" +294668,Lightning Charging Cable,1,14.95,11/22/19 22:22,"849 1st St, Dallas, TX 75001" +294669,Lightning Charging Cable,1,14.95,11/21/19 21:49,"161 Sunset St, Atlanta, GA 30301" +294670,Macbook Pro Laptop,1,1700,11/27/19 15:48,"514 Ridge St, Atlanta, GA 30301" +294671,Lightning Charging Cable,1,14.95,11/28/19 14:19,"301 2nd St, Boston, MA 02215" +294672,27in 4K Gaming Monitor,1,389.99,11/12/19 20:41,"670 River St, New York City, NY 10001" +294673,USB-C Charging Cable,1,11.95,11/19/19 15:48,"564 Jefferson St, San Francisco, CA 94016" +294674,AAA Batteries (4-pack),1,2.99,11/16/19 07:14,"888 Walnut St, Seattle, WA 98101" +294675,AAA Batteries (4-pack),1,2.99,11/24/19 08:56,"760 Main St, San Francisco, CA 94016" +294676,Apple Airpods Headphones,1,150,11/09/19 08:22,"476 Jefferson St, New York City, NY 10001" +294677,Flatscreen TV,1,300,11/19/19 13:21,"731 Sunset St, Dallas, TX 75001" +294678,27in 4K Gaming Monitor,1,389.99,11/03/19 20:21,"38 Lake St, New York City, NY 10001" +294679,27in 4K Gaming Monitor,1,389.99,11/11/19 11:46,"275 Main St, Boston, MA 02215" +294680,Flatscreen TV,1,300,11/24/19 23:49,"550 Church St, Dallas, TX 75001" +294681,USB-C Charging Cable,1,11.95,11/29/19 15:47,"481 Lakeview St, New York City, NY 10001" +294682,Wired Headphones,1,11.99,11/19/19 21:03,"90 Highland St, Boston, MA 02215" +294683,Macbook Pro Laptop,1,1700,11/17/19 20:29,"799 Pine St, San Francisco, CA 94016" +294684,Apple Airpods Headphones,1,150,11/23/19 12:55,"819 Adams St, Portland, OR 97035" +294685,Google Phone,1,600,11/27/19 01:32,"607 Cherry St, Portland, OR 97035" +294685,USB-C Charging Cable,1,11.95,11/27/19 01:32,"607 Cherry St, Portland, OR 97035" +294685,Wired Headphones,1,11.99,11/27/19 01:32,"607 Cherry St, Portland, OR 97035" +294686,Bose SoundSport Headphones,1,99.99,11/17/19 20:18,"305 Park St, Boston, MA 02215" +294687,Apple Airpods Headphones,1,150,11/25/19 14:10,"621 6th St, Boston, MA 02215" +294688,27in FHD Monitor,1,149.99,11/06/19 19:22,"146 2nd St, Boston, MA 02215" +294689,Macbook Pro Laptop,1,1700,11/02/19 18:39,"317 Highland St, Atlanta, GA 30301" +294690,AAA Batteries (4-pack),1,2.99,11/04/19 22:52,"870 9th St, San Francisco, CA 94016" +294691,AAA Batteries (4-pack),1,2.99,11/05/19 12:13,"424 11th St, Los Angeles, CA 90001" +294692,USB-C Charging Cable,1,11.95,11/14/19 23:03,"822 10th St, Los Angeles, CA 90001" +294692,AA Batteries (4-pack),4,3.84,11/14/19 23:03,"822 10th St, Los Angeles, CA 90001" +294693,AA Batteries (4-pack),2,3.84,11/24/19 11:30,"938 Spruce St, Seattle, WA 98101" +294694,AAA Batteries (4-pack),1,2.99,11/18/19 17:44,"129 Maple St, New York City, NY 10001" +294695,USB-C Charging Cable,1,11.95,11/25/19 11:54,"58 10th St, Boston, MA 02215" +294696,iPhone,1,700,11/28/19 13:15,"286 Sunset St, Portland, OR 97035" +294697,iPhone,1,700,11/08/19 07:43,"319 10th St, New York City, NY 10001" +294698,AA Batteries (4-pack),1,3.84,11/06/19 17:55,"772 5th St, Seattle, WA 98101" +,,,,, +294699,USB-C Charging Cable,1,11.95,11/07/19 19:08,"939 Church St, Boston, MA 02215" +294700,Bose SoundSport Headphones,1,99.99,11/15/19 20:18,"979 Hill St, Austin, TX 73301" +294701,AAA Batteries (4-pack),1,2.99,11/02/19 09:18,"836 10th St, San Francisco, CA 94016" +294702,USB-C Charging Cable,1,11.95,11/02/19 06:00,"329 10th St, San Francisco, CA 94016" +294703,AA Batteries (4-pack),1,3.84,11/07/19 01:26,"180 Elm St, San Francisco, CA 94016" +294704,Lightning Charging Cable,1,14.95,11/18/19 14:08,"77 Hickory St, Portland, OR 97035" +294705,Lightning Charging Cable,1,14.95,11/29/19 09:34,"631 8th St, Atlanta, GA 30301" +294706,Wired Headphones,1,11.99,11/29/19 15:49,"98 14th St, San Francisco, CA 94016" +294707,Google Phone,1,600,11/07/19 14:10,"236 Pine St, San Francisco, CA 94016" +294708,Flatscreen TV,1,300,11/05/19 16:39,"616 Dogwood St, Los Angeles, CA 90001" +294709,Wired Headphones,1,11.99,11/08/19 20:45,"180 Elm St, Los Angeles, CA 90001" +294710,USB-C Charging Cable,1,11.95,11/08/19 22:45,"651 Park St, New York City, NY 10001" +294711,27in FHD Monitor,1,149.99,11/22/19 14:50,"540 South St, Portland, OR 97035" +294712,USB-C Charging Cable,1,11.95,11/18/19 18:59,"205 Hill St, Portland, OR 97035" +294713,USB-C Charging Cable,1,11.95,11/25/19 10:45,"1 Willow St, San Francisco, CA 94016" +294714,Apple Airpods Headphones,1,150,11/19/19 12:09,"408 Willow St, Dallas, TX 75001" +294715,USB-C Charging Cable,1,11.95,11/11/19 13:15,"402 West St, Dallas, TX 75001" +294716,AAA Batteries (4-pack),1,2.99,11/12/19 23:07,"925 11th St, Boston, MA 02215" +294717,Lightning Charging Cable,1,14.95,11/21/19 06:52,"497 4th St, Los Angeles, CA 90001" +294718,AAA Batteries (4-pack),1,2.99,11/03/19 16:30,"848 Jefferson St, Los Angeles, CA 90001" +294719,Wired Headphones,2,11.99,11/28/19 10:08,"734 Meadow St, Los Angeles, CA 90001" +294720,34in Ultrawide Monitor,1,379.99,11/21/19 09:44,"515 Johnson St, Boston, MA 02215" +294721,27in FHD Monitor,1,149.99,11/14/19 11:32,"472 10th St, San Francisco, CA 94016" +294722,iPhone,1,700,11/25/19 21:54,"470 Park St, Los Angeles, CA 90001" +294723,USB-C Charging Cable,1,11.95,11/21/19 22:52,"456 Lake St, New York City, NY 10001" +294724,Wired Headphones,1,11.99,11/18/19 12:07,"19 Willow St, New York City, NY 10001" +294725,USB-C Charging Cable,2,11.95,11/16/19 18:18,"721 Church St, Portland, OR 97035" +294726,AA Batteries (4-pack),2,3.84,11/18/19 07:27,"541 Park St, San Francisco, CA 94016" +294727,ThinkPad Laptop,1,999.99,11/06/19 20:57,"374 Jefferson St, New York City, NY 10001" +294728,Wired Headphones,1,11.99,11/08/19 19:16,"272 14th St, San Francisco, CA 94016" +294729,34in Ultrawide Monitor,1,379.99,11/15/19 22:05,"780 8th St, Dallas, TX 75001" +294730,USB-C Charging Cable,2,11.95,11/21/19 01:40,"567 River St, New York City, NY 10001" +294731,Bose SoundSport Headphones,1,99.99,11/24/19 13:25,"598 Main St, New York City, NY 10001" +294732,USB-C Charging Cable,1,11.95,11/10/19 17:56,"227 Meadow St, San Francisco, CA 94016" +294733,USB-C Charging Cable,1,11.95,11/18/19 14:20,"2 West St, Los Angeles, CA 90001" +294734,USB-C Charging Cable,1,11.95,11/03/19 11:02,"486 6th St, New York City, NY 10001" +294735,34in Ultrawide Monitor,1,379.99,11/10/19 21:45,"542 Sunset St, Boston, MA 02215" +294736,Macbook Pro Laptop,1,1700,11/04/19 20:49,"713 Main St, Portland, OR 97035" +294737,USB-C Charging Cable,1,11.95,11/01/19 11:15,"515 Lakeview St, Los Angeles, CA 90001" +294738,USB-C Charging Cable,1,11.95,11/24/19 13:01,"686 Spruce St, New York City, NY 10001" +294739,USB-C Charging Cable,1,11.95,11/11/19 23:08,"406 Johnson St, San Francisco, CA 94016" +294740,Bose SoundSport Headphones,1,99.99,11/18/19 23:19,"557 Jackson St, San Francisco, CA 94016" +294741,34in Ultrawide Monitor,1,379.99,11/17/19 16:52,"870 13th St, Boston, MA 02215" +294742,Wired Headphones,2,11.99,11/22/19 08:45,"239 Forest St, Seattle, WA 98101" +294743,Flatscreen TV,1,300,11/15/19 06:13,"85 Ridge St, Atlanta, GA 30301" +294744,AA Batteries (4-pack),1,3.84,11/12/19 20:12,"701 1st St, Seattle, WA 98101" +294745,AA Batteries (4-pack),2,3.84,11/02/19 08:16,"487 Spruce St, San Francisco, CA 94016" +294746,Lightning Charging Cable,1,14.95,11/22/19 17:28,"694 Adams St, Seattle, WA 98101" +,,,,, +294747,AAA Batteries (4-pack),1,2.99,11/20/19 18:21,"609 Chestnut St, San Francisco, CA 94016" +294748,Apple Airpods Headphones,1,150,11/27/19 06:57,"490 Spruce St, San Francisco, CA 94016" +294749,USB-C Charging Cable,1,11.95,11/03/19 12:20,"873 6th St, Los Angeles, CA 90001" +294750,Google Phone,1,600,11/14/19 14:39,"337 Maple St, Seattle, WA 98101" +294751,USB-C Charging Cable,1,11.95,11/10/19 18:39,"914 Hill St, Boston, MA 02215" +294752,AAA Batteries (4-pack),1,2.99,11/26/19 10:17,"56 Lincoln St, New York City, NY 10001" +294753,AA Batteries (4-pack),1,3.84,11/11/19 12:17,"143 Walnut St, New York City, NY 10001" +294754,AA Batteries (4-pack),4,3.84,11/24/19 10:29,"101 Park St, Atlanta, GA 30301" +294755,AAA Batteries (4-pack),1,2.99,11/17/19 15:34,"868 Adams St, San Francisco, CA 94016" +294756,Apple Airpods Headphones,1,150,11/22/19 09:48,"257 10th St, Austin, TX 73301" +294757,AA Batteries (4-pack),1,3.84,11/27/19 12:49,"938 14th St, Atlanta, GA 30301" +294758,Apple Airpods Headphones,1,150,11/16/19 21:13,"236 Hickory St, San Francisco, CA 94016" +294759,Vareebadd Phone,1,400,11/21/19 19:16,"999 Lake St, San Francisco, CA 94016" +294760,AAA Batteries (4-pack),1,2.99,11/04/19 18:32,"47 2nd St, San Francisco, CA 94016" +294761,Bose SoundSport Headphones,1,99.99,11/11/19 20:17,"883 13th St, Los Angeles, CA 90001" +294762,AAA Batteries (4-pack),1,2.99,11/15/19 13:16,"267 Madison St, San Francisco, CA 94016" +294763,Lightning Charging Cable,1,14.95,11/14/19 15:20,"501 Lincoln St, Seattle, WA 98101" +294764,AAA Batteries (4-pack),1,2.99,11/13/19 14:05,"559 Jefferson St, Los Angeles, CA 90001" +294765,Wired Headphones,1,11.99,11/28/19 20:43,"674 Madison St, New York City, NY 10001" +294766,Lightning Charging Cable,1,14.95,11/07/19 21:42,"159 13th St, New York City, NY 10001" +294767,Lightning Charging Cable,1,14.95,11/07/19 09:30,"295 6th St, New York City, NY 10001" +294768,Apple Airpods Headphones,1,150,11/05/19 19:21,"307 10th St, San Francisco, CA 94016" +294769,27in 4K Gaming Monitor,1,389.99,11/23/19 15:06,"35 Elm St, San Francisco, CA 94016" +294770,27in FHD Monitor,1,149.99,11/13/19 20:01,"649 Madison St, Austin, TX 73301" +294771,Lightning Charging Cable,1,14.95,11/15/19 20:35,"718 Lincoln St, New York City, NY 10001" +294772,Bose SoundSport Headphones,1,99.99,11/03/19 15:12,"597 6th St, New York City, NY 10001" +294773,27in 4K Gaming Monitor,1,389.99,11/25/19 08:17,"101 Willow St, Atlanta, GA 30301" +294774,AAA Batteries (4-pack),1,2.99,11/13/19 19:07,"188 14th St, New York City, NY 10001" +294775,AAA Batteries (4-pack),1,2.99,11/10/19 13:18,"773 Sunset St, Atlanta, GA 30301" +294776,Bose SoundSport Headphones,1,99.99,11/12/19 10:22,"763 Center St, Portland, OR 97035" +294777,Lightning Charging Cable,1,14.95,11/14/19 20:31,"65 River St, Boston, MA 02215" +294778,iPhone,1,700,11/27/19 07:14,"206 Sunset St, Austin, TX 73301" +294779,20in Monitor,1,109.99,11/19/19 22:29,"732 Park St, Seattle, WA 98101" +294780,AAA Batteries (4-pack),1,2.99,11/29/19 20:45,"630 Hickory St, Austin, TX 73301" +294781,Lightning Charging Cable,1,14.95,11/22/19 15:50,"830 9th St, Portland, OR 97035" +294782,AAA Batteries (4-pack),1,2.99,11/02/19 12:23,"309 Lakeview St, New York City, NY 10001" +294783,Flatscreen TV,1,300,11/08/19 23:18,"170 1st St, New York City, NY 10001" +294784,AA Batteries (4-pack),1,3.84,11/06/19 17:03,"100 Pine St, New York City, NY 10001" +294785,Macbook Pro Laptop,1,1700,11/27/19 06:53,"620 Spruce St, Atlanta, GA 30301" +294786,Apple Airpods Headphones,1,150,11/29/19 09:56,"655 Highland St, San Francisco, CA 94016" +294787,Lightning Charging Cable,1,14.95,11/19/19 15:11,"293 Meadow St, Boston, MA 02215" +294788,20in Monitor,1,109.99,11/23/19 22:35,"284 11th St, Atlanta, GA 30301" +294789,Wired Headphones,1,11.99,11/08/19 21:52,"22 Maple St, Seattle, WA 98101" +294790,Vareebadd Phone,1,400,11/28/19 21:13,"494 North St, Portland, OR 97035" +294791,Lightning Charging Cable,1,14.95,11/14/19 10:34,"599 Elm St, San Francisco, CA 94016" +294792,USB-C Charging Cable,1,11.95,11/06/19 14:22,"879 Meadow St, Portland, OR 97035" +294793,Wired Headphones,1,11.99,11/20/19 20:48,"603 River St, Austin, TX 73301" +294794,USB-C Charging Cable,3,11.95,11/08/19 17:55,"635 Jackson St, San Francisco, CA 94016" +294795,Flatscreen TV,1,300,11/08/19 07:22,"520 Hickory St, San Francisco, CA 94016" +294796,Wired Headphones,1,11.99,11/15/19 11:16,"886 Lakeview St, Seattle, WA 98101" +294797,Macbook Pro Laptop,1,1700,11/07/19 17:45,"597 Adams St, New York City, NY 10001" +294798,Flatscreen TV,1,300,11/07/19 13:44,"638 River St, Atlanta, GA 30301" +294799,Bose SoundSport Headphones,1,99.99,11/18/19 20:21,"12 Church St, New York City, NY 10001" +294800,AAA Batteries (4-pack),2,2.99,11/04/19 14:01,"95 Sunset St, Austin, TX 73301" +294801,Lightning Charging Cable,1,14.95,11/14/19 10:26,"911 Forest St, Atlanta, GA 30301" +294802,Flatscreen TV,1,300,11/03/19 16:52,"160 12th St, Boston, MA 02215" +294803,LG Dryer,1,600.0,11/03/19 14:21,"122 Lincoln St, San Francisco, CA 94016" +294804,ThinkPad Laptop,1,999.99,11/16/19 13:30,"762 14th St, Los Angeles, CA 90001" +294805,Flatscreen TV,1,300,11/22/19 18:31,"882 5th St, Atlanta, GA 30301" +294806,Flatscreen TV,1,300,11/24/19 09:06,"785 Willow St, Los Angeles, CA 90001" +294807,USB-C Charging Cable,1,11.95,11/20/19 18:30,"973 5th St, Boston, MA 02215" +294808,Apple Airpods Headphones,1,150,11/17/19 21:04,"959 Lincoln St, Seattle, WA 98101" +294809,20in Monitor,1,109.99,11/13/19 17:48,"211 9th St, Dallas, TX 75001" +294810,AA Batteries (4-pack),1,3.84,11/28/19 12:14,"325 Meadow St, Dallas, TX 75001" +294811,34in Ultrawide Monitor,1,379.99,11/09/19 11:44,"532 Chestnut St, Atlanta, GA 30301" +294812,Apple Airpods Headphones,1,150,11/28/19 18:02,"645 West St, Los Angeles, CA 90001" +294813,AA Batteries (4-pack),1,3.84,11/22/19 15:06,"540 South St, San Francisco, CA 94016" +294814,Bose SoundSport Headphones,1,99.99,11/20/19 13:53,"144 Highland St, Boston, MA 02215" +294815,Apple Airpods Headphones,1,150,11/30/19 22:51,"487 14th St, Atlanta, GA 30301" +294816,AAA Batteries (4-pack),1,2.99,11/30/19 16:56,"808 2nd St, New York City, NY 10001" +294817,AAA Batteries (4-pack),1,2.99,11/25/19 09:17,"240 Sunset St, Los Angeles, CA 90001" +294818,AA Batteries (4-pack),1,3.84,11/27/19 13:52,"790 Lake St, New York City, NY 10001" +294819,Apple Airpods Headphones,1,150,11/13/19 11:04,"456 South St, San Francisco, CA 94016" +294820,Wired Headphones,1,11.99,11/06/19 15:02,"858 Meadow St, San Francisco, CA 94016" +294821,Google Phone,1,600,11/09/19 21:11,"922 1st St, Atlanta, GA 30301" +294822,Wired Headphones,1,11.99,11/09/19 17:25,"29 Cedar St, Seattle, WA 98101" +294823,AA Batteries (4-pack),1,3.84,11/10/19 17:11,"23 11th St, Los Angeles, CA 90001" +294824,Lightning Charging Cable,1,14.95,11/07/19 20:04,"428 4th St, Portland, OR 97035" +294825,AAA Batteries (4-pack),1,2.99,11/15/19 11:53,"721 Forest St, Atlanta, GA 30301" +294826,AA Batteries (4-pack),1,3.84,11/21/19 19:04,"438 Maple St, San Francisco, CA 94016" +294827,Lightning Charging Cable,1,14.95,11/05/19 13:57,"476 North St, Atlanta, GA 30301" +294828,USB-C Charging Cable,1,11.95,11/07/19 12:45,"424 13th St, New York City, NY 10001" +294829,iPhone,1,700,11/08/19 11:16,"218 Center St, Dallas, TX 75001" +294830,AA Batteries (4-pack),2,3.84,11/12/19 18:24,"732 10th St, New York City, NY 10001" +294831,Wired Headphones,1,11.99,11/03/19 22:19,"130 Lincoln St, New York City, NY 10001" +294832,AA Batteries (4-pack),1,3.84,11/19/19 19:38,"826 Elm St, San Francisco, CA 94016" +294833,AA Batteries (4-pack),1,3.84,11/15/19 17:06,"758 Main St, Los Angeles, CA 90001" +294834,AAA Batteries (4-pack),2,2.99,11/10/19 13:52,"792 4th St, Portland, OR 97035" +294835,AA Batteries (4-pack),1,3.84,11/13/19 10:35,"364 Johnson St, Boston, MA 02215" +294836,USB-C Charging Cable,1,11.95,11/28/19 02:25,"254 Jefferson St, Dallas, TX 75001" +294837,Apple Airpods Headphones,1,150,11/21/19 11:45,"252 5th St, New York City, NY 10001" +294838,Wired Headphones,1,11.99,11/18/19 20:44,"513 Adams St, Seattle, WA 98101" +294839,Wired Headphones,1,11.99,11/14/19 08:22,"216 11th St, New York City, NY 10001" +294840,Apple Airpods Headphones,1,150,11/08/19 19:45,"40 8th St, San Francisco, CA 94016" +294841,USB-C Charging Cable,1,11.95,11/15/19 18:13,"620 8th St, Austin, TX 73301" +294842,iPhone,1,700,11/29/19 10:51,"559 Cherry St, Austin, TX 73301" +294843,USB-C Charging Cable,1,11.95,11/10/19 23:31,"82 Lincoln St, Austin, TX 73301" +294844,Macbook Pro Laptop,1,1700,11/06/19 10:47,"517 2nd St, Los Angeles, CA 90001" +294845,Google Phone,1,600,11/28/19 18:30,"178 North St, Atlanta, GA 30301" +294846,iPhone,1,700,11/16/19 07:06,"873 2nd St, Portland, ME 04101" +294846,Apple Airpods Headphones,1,150,11/16/19 07:06,"873 2nd St, Portland, ME 04101" +294847,USB-C Charging Cable,1,11.95,11/30/19 12:57,"221 Wilson St, Atlanta, GA 30301" +294848,34in Ultrawide Monitor,1,379.99,11/06/19 06:15,"390 10th St, Los Angeles, CA 90001" +294849,ThinkPad Laptop,1,999.99,11/13/19 16:55,"506 Pine St, Austin, TX 73301" +294850,AA Batteries (4-pack),3,3.84,11/12/19 11:32,"650 Main St, Portland, OR 97035" +294851,USB-C Charging Cable,2,11.95,11/14/19 20:55,"520 6th St, Atlanta, GA 30301" +294852,Bose SoundSport Headphones,1,99.99,11/27/19 16:26,"556 Church St, San Francisco, CA 94016" +294853,USB-C Charging Cable,1,11.95,11/07/19 15:01,"38 Lincoln St, New York City, NY 10001" +294854,Lightning Charging Cable,1,14.95,11/20/19 13:47,"187 8th St, New York City, NY 10001" +294855,AA Batteries (4-pack),1,3.84,11/02/19 12:30,"772 Elm St, Dallas, TX 75001" +294856,AAA Batteries (4-pack),2,2.99,11/27/19 10:26,"292 9th St, Los Angeles, CA 90001" +294857,AA Batteries (4-pack),1,3.84,11/28/19 14:00,"423 10th St, New York City, NY 10001" +294858,AAA Batteries (4-pack),1,2.99,11/23/19 16:03,"857 Maple St, San Francisco, CA 94016" +294859,Bose SoundSport Headphones,1,99.99,11/18/19 16:02,"610 8th St, Los Angeles, CA 90001" +294860,Bose SoundSport Headphones,1,99.99,11/04/19 15:49,"63 Meadow St, Los Angeles, CA 90001" +294861,AA Batteries (4-pack),1,3.84,11/23/19 03:14,"828 14th St, Los Angeles, CA 90001" +294862,Flatscreen TV,1,300,11/30/19 19:44,"275 Meadow St, Seattle, WA 98101" +294863,iPhone,1,700,11/03/19 07:48,"182 Church St, New York City, NY 10001" +294864,Bose SoundSport Headphones,1,99.99,11/27/19 15:37,"64 Highland St, Seattle, WA 98101" +294864,27in 4K Gaming Monitor,1,389.99,11/27/19 15:37,"64 Highland St, Seattle, WA 98101" +294865,AAA Batteries (4-pack),1,2.99,11/27/19 23:23,"963 North St, Atlanta, GA 30301" +294866,Lightning Charging Cable,1,14.95,11/16/19 12:06,"689 Meadow St, San Francisco, CA 94016" +294867,34in Ultrawide Monitor,1,379.99,11/10/19 19:58,"658 Cedar St, San Francisco, CA 94016" +294868,USB-C Charging Cable,1,11.95,11/12/19 05:45,"347 1st St, Boston, MA 02215" +294869,Bose SoundSport Headphones,1,99.99,11/15/19 14:02,"317 Walnut St, Dallas, TX 75001" +294870,Lightning Charging Cable,1,14.95,11/17/19 19:56,"850 Maple St, New York City, NY 10001" +294871,Wired Headphones,1,11.99,11/02/19 17:25,"81 Johnson St, Dallas, TX 75001" +294872,Wired Headphones,1,11.99,11/17/19 23:00,"622 Forest St, Seattle, WA 98101" +294873,AAA Batteries (4-pack),1,2.99,11/23/19 06:38,"8 Wilson St, Dallas, TX 75001" +294874,Lightning Charging Cable,1,14.95,11/03/19 16:32,"587 Wilson St, San Francisco, CA 94016" +294875,USB-C Charging Cable,1,11.95,11/17/19 11:31,"932 Wilson St, Los Angeles, CA 90001" +294876,ThinkPad Laptop,1,999.99,11/24/19 10:52,"435 South St, Los Angeles, CA 90001" +294877,AA Batteries (4-pack),1,3.84,11/20/19 01:45,"225 West St, Boston, MA 02215" +294878,Bose SoundSport Headphones,1,99.99,11/26/19 08:26,"76 6th St, Boston, MA 02215" +294879,AA Batteries (4-pack),2,3.84,11/12/19 07:05,"919 13th St, Atlanta, GA 30301" +294880,AAA Batteries (4-pack),1,2.99,11/19/19 19:44,"177 Lakeview St, San Francisco, CA 94016" +294881,Lightning Charging Cable,1,14.95,11/22/19 11:38,"665 4th St, Austin, TX 73301" +294882,34in Ultrawide Monitor,1,379.99,11/21/19 17:12,"354 12th St, San Francisco, CA 94016" +294883,AAA Batteries (4-pack),1,2.99,11/01/19 14:25,"878 Park St, Austin, TX 73301" +294884,AAA Batteries (4-pack),1,2.99,11/13/19 18:40,"377 Sunset St, Atlanta, GA 30301" +294885,Apple Airpods Headphones,1,150,11/18/19 18:11,"118 1st St, Austin, TX 73301" +294886,Wired Headphones,1,11.99,11/04/19 08:53,"385 Park St, Boston, MA 02215" +294887,Google Phone,1,600,11/18/19 18:05,"238 Maple St, Los Angeles, CA 90001" +294888,AA Batteries (4-pack),1,3.84,11/03/19 19:34,"611 12th St, Los Angeles, CA 90001" +294889,27in 4K Gaming Monitor,1,389.99,11/24/19 19:39,"941 7th St, San Francisco, CA 94016" +294890,ThinkPad Laptop,1,999.99,11/18/19 20:44,"613 11th St, San Francisco, CA 94016" +294891,USB-C Charging Cable,1,11.95,11/17/19 20:20,"876 5th St, New York City, NY 10001" +294892,34in Ultrawide Monitor,1,379.99,11/10/19 11:36,"956 Wilson St, Dallas, TX 75001" +294893,Apple Airpods Headphones,1,150,11/11/19 20:36,"927 Dogwood St, New York City, NY 10001" +294894,Google Phone,1,600,11/21/19 11:40,"508 Hickory St, New York City, NY 10001" +294895,AAA Batteries (4-pack),1,2.99,11/07/19 12:56,"935 Willow St, Dallas, TX 75001" +294896,iPhone,1,700,11/02/19 10:47,"505 Lakeview St, Seattle, WA 98101" +294896,Apple Airpods Headphones,1,150,11/02/19 10:47,"505 Lakeview St, Seattle, WA 98101" +294897,Lightning Charging Cable,1,14.95,11/13/19 20:42,"605 10th St, Boston, MA 02215" +294898,Vareebadd Phone,1,400,11/20/19 19:30,"252 7th St, San Francisco, CA 94016" +294899,Bose SoundSport Headphones,1,99.99,11/09/19 10:39,"139 2nd St, Dallas, TX 75001" +294900,Apple Airpods Headphones,1,150,11/17/19 14:24,"972 South St, Seattle, WA 98101" +294901,AA Batteries (4-pack),1,3.84,11/16/19 10:32,"628 2nd St, Boston, MA 02215" +294902,USB-C Charging Cable,1,11.95,11/13/19 15:36,"760 West St, Los Angeles, CA 90001" +294903,Macbook Pro Laptop,1,1700,11/30/19 10:45,"538 Highland St, Austin, TX 73301" +294904,Bose SoundSport Headphones,1,99.99,11/08/19 16:42,"451 Johnson St, San Francisco, CA 94016" +294905,Apple Airpods Headphones,1,150,11/06/19 09:34,"840 Hickory St, Dallas, TX 75001" +294906,Wired Headphones,1,11.99,11/05/19 09:36,"546 Adams St, Los Angeles, CA 90001" +294907,Lightning Charging Cable,1,14.95,11/02/19 16:56,"646 Adams St, San Francisco, CA 94016" +294908,Flatscreen TV,1,300,11/15/19 16:51,"416 8th St, Dallas, TX 75001" +294909,AA Batteries (4-pack),1,3.84,11/13/19 21:15,"637 Chestnut St, Los Angeles, CA 90001" +294910,AA Batteries (4-pack),2,3.84,11/28/19 14:59,"955 Chestnut St, New York City, NY 10001" +294911,USB-C Charging Cable,1,11.95,11/05/19 08:39,"863 13th St, Portland, ME 04101" +294912,Wired Headphones,1,11.99,11/15/19 22:49,"575 Cedar St, Dallas, TX 75001" +294913,Google Phone,1,600,11/27/19 13:23,"433 5th St, Austin, TX 73301" +294914,Apple Airpods Headphones,1,150,11/04/19 19:36,"609 Forest St, Boston, MA 02215" +294915,AAA Batteries (4-pack),2,2.99,11/11/19 12:32,"597 14th St, Boston, MA 02215" +294916,ThinkPad Laptop,1,999.99,11/07/19 16:47,"764 Park St, Atlanta, GA 30301" +294917,Lightning Charging Cable,1,14.95,11/20/19 15:30,"29 South St, Austin, TX 73301" +294918,AAA Batteries (4-pack),1,2.99,11/30/19 18:24,"842 Meadow St, San Francisco, CA 94016" +294919,AAA Batteries (4-pack),1,2.99,11/05/19 20:59,"868 South St, Los Angeles, CA 90001" +294920,Bose SoundSport Headphones,1,99.99,11/16/19 21:31,"616 Cedar St, Los Angeles, CA 90001" +294921,ThinkPad Laptop,1,999.99,11/01/19 23:35,"19 Meadow St, Boston, MA 02215" +294922,AAA Batteries (4-pack),2,2.99,11/19/19 16:34,"59 Dogwood St, Austin, TX 73301" +294923,Wired Headphones,1,11.99,11/02/19 15:27,"387 Cedar St, Los Angeles, CA 90001" +294924,Macbook Pro Laptop,1,1700,11/20/19 14:42,"927 Meadow St, Portland, OR 97035" +294925,iPhone,1,700,11/01/19 16:22,"436 Willow St, Seattle, WA 98101" +294925,Lightning Charging Cable,1,14.95,11/01/19 16:22,"436 Willow St, Seattle, WA 98101" +294926,Macbook Pro Laptop,1,1700,11/28/19 19:54,"521 Pine St, Dallas, TX 75001" +294927,Google Phone,1,600,11/27/19 21:46,"728 Johnson St, Boston, MA 02215" +294928,Wired Headphones,1,11.99,11/30/19 12:48,"868 Church St, Los Angeles, CA 90001" +294929,AA Batteries (4-pack),1,3.84,11/12/19 16:56,"288 Elm St, San Francisco, CA 94016" +294930,Wired Headphones,1,11.99,11/25/19 18:31,"370 Cedar St, Atlanta, GA 30301" +294931,Lightning Charging Cable,1,14.95,11/25/19 10:01,"542 Cedar St, Dallas, TX 75001" +294932,AA Batteries (4-pack),4,3.84,11/01/19 22:33,"605 11th St, Atlanta, GA 30301" +294933,Lightning Charging Cable,1,14.95,11/25/19 18:37,"385 Lakeview St, Boston, MA 02215" +294934,Wired Headphones,1,11.99,11/15/19 20:27,"228 7th St, Portland, ME 04101" +294935,Google Phone,1,600,11/18/19 10:23,"455 Pine St, San Francisco, CA 94016" +294936,Lightning Charging Cable,1,14.95,11/25/19 20:41,"867 9th St, Dallas, TX 75001" +294937,AA Batteries (4-pack),2,3.84,11/22/19 12:03,"665 Madison St, Los Angeles, CA 90001" +294938,27in 4K Gaming Monitor,1,389.99,11/17/19 11:47,"282 Hickory St, Dallas, TX 75001" +294939,Google Phone,1,600,11/27/19 17:38,"30 7th St, Austin, TX 73301" +294940,Google Phone,1,600,11/03/19 17:54,"672 Lakeview St, San Francisco, CA 94016" +294941,Wired Headphones,1,11.99,11/20/19 03:56,"457 Pine St, Portland, OR 97035" +294942,Lightning Charging Cable,1,14.95,11/14/19 18:38,"102 South St, San Francisco, CA 94016" +294943,USB-C Charging Cable,1,11.95,11/13/19 12:44,"318 14th St, New York City, NY 10001" +294944,AA Batteries (4-pack),1,3.84,11/20/19 20:17,"270 Lakeview St, New York City, NY 10001" +294945,Apple Airpods Headphones,1,150,11/04/19 09:36,"590 Park St, San Francisco, CA 94016" +294946,AA Batteries (4-pack),1,3.84,11/14/19 12:54,"36 Forest St, San Francisco, CA 94016" +294947,Bose SoundSport Headphones,1,99.99,11/26/19 03:06,"396 12th St, San Francisco, CA 94016" +294948,Lightning Charging Cable,1,14.95,11/23/19 21:14,"916 10th St, San Francisco, CA 94016" +294949,Bose SoundSport Headphones,1,99.99,11/15/19 13:27,"426 Highland St, Boston, MA 02215" +294950,Macbook Pro Laptop,1,1700,11/21/19 14:31,"826 Cherry St, Los Angeles, CA 90001" +294951,Bose SoundSport Headphones,1,99.99,11/09/19 20:29,"243 Sunset St, Seattle, WA 98101" +294952,Wired Headphones,1,11.99,11/23/19 08:11,"323 13th St, Seattle, WA 98101" +294953,AA Batteries (4-pack),2,3.84,11/22/19 17:23,"775 Dogwood St, Portland, ME 04101" +294954,Wired Headphones,1,11.99,11/06/19 10:52,"441 11th St, New York City, NY 10001" +294955,20in Monitor,1,109.99,11/14/19 23:40,"561 10th St, San Francisco, CA 94016" +294956,27in 4K Gaming Monitor,1,389.99,11/26/19 12:21,"891 Wilson St, San Francisco, CA 94016" +294957,Wired Headphones,1,11.99,11/21/19 22:23,"571 14th St, San Francisco, CA 94016" +294958,27in 4K Gaming Monitor,1,389.99,11/27/19 06:15,"732 Sunset St, New York City, NY 10001" +294959,20in Monitor,1,109.99,11/16/19 18:08,"979 7th St, Austin, TX 73301" +294960,AAA Batteries (4-pack),1,2.99,11/14/19 18:34,"259 Center St, Boston, MA 02215" +294961,Flatscreen TV,1,300,11/01/19 20:58,"678 Lincoln St, Los Angeles, CA 90001" +294962,Lightning Charging Cable,1,14.95,11/28/19 10:27,"560 Hill St, Portland, ME 04101" +294963,Lightning Charging Cable,1,14.95,11/07/19 00:13,"55 10th St, Seattle, WA 98101" +294964,20in Monitor,1,109.99,11/20/19 18:41,"856 Maple St, Atlanta, GA 30301" +294965,USB-C Charging Cable,1,11.95,11/26/19 22:20,"946 13th St, Austin, TX 73301" +294966,27in 4K Gaming Monitor,1,389.99,11/14/19 09:40,"248 Elm St, Boston, MA 02215" +294967,27in FHD Monitor,1,149.99,11/09/19 18:30,"410 Madison St, Dallas, TX 75001" +294968,Wired Headphones,1,11.99,11/09/19 11:20,"605 North St, Boston, MA 02215" +294969,Wired Headphones,2,11.99,11/05/19 15:53,"865 Lakeview St, Atlanta, GA 30301" +294970,Apple Airpods Headphones,1,150,11/22/19 22:25,"38 8th St, Seattle, WA 98101" +294971,AA Batteries (4-pack),1,3.84,11/20/19 06:11,"660 9th St, Boston, MA 02215" +294972,USB-C Charging Cable,1,11.95,11/23/19 00:23,"650 River St, Los Angeles, CA 90001" +294973,AAA Batteries (4-pack),1,2.99,11/26/19 12:37,"159 Pine St, San Francisco, CA 94016" +294973,Bose SoundSport Headphones,1,99.99,11/26/19 12:37,"159 Pine St, San Francisco, CA 94016" +294974,Wired Headphones,1,11.99,11/30/19 15:55,"908 Elm St, Los Angeles, CA 90001" +294975,Vareebadd Phone,1,400,11/27/19 07:07,"807 Lincoln St, Los Angeles, CA 90001" +294975,USB-C Charging Cable,1,11.95,11/27/19 07:07,"807 Lincoln St, Los Angeles, CA 90001" +294975,Wired Headphones,1,11.99,11/27/19 07:07,"807 Lincoln St, Los Angeles, CA 90001" +294976,USB-C Charging Cable,1,11.95,11/18/19 21:38,"942 Hickory St, Los Angeles, CA 90001" +294977,Lightning Charging Cable,1,14.95,11/03/19 09:06,"401 Walnut St, Los Angeles, CA 90001" +294978,USB-C Charging Cable,1,11.95,11/23/19 17:17,"666 Cherry St, Dallas, TX 75001" +294979,Apple Airpods Headphones,1,150,11/06/19 00:15,"364 Wilson St, Dallas, TX 75001" +294980,AA Batteries (4-pack),1,3.84,11/15/19 18:03,"204 1st St, Los Angeles, CA 90001" +294981,Wired Headphones,1,11.99,11/20/19 19:16,"98 12th St, Seattle, WA 98101" +294982,27in 4K Gaming Monitor,1,389.99,11/10/19 09:03,"77 13th St, Dallas, TX 75001" +294983,Bose SoundSport Headphones,1,99.99,11/15/19 01:38,"107 11th St, Los Angeles, CA 90001" +294984,AAA Batteries (4-pack),3,2.99,11/11/19 19:23,"558 8th St, Boston, MA 02215" +294985,Wired Headphones,1,11.99,11/09/19 16:58,"561 Forest St, New York City, NY 10001" +294986,USB-C Charging Cable,1,11.95,11/09/19 11:05,"448 Lincoln St, San Francisco, CA 94016" +294987,Lightning Charging Cable,1,14.95,11/26/19 19:14,"221 12th St, San Francisco, CA 94016" +294988,AAA Batteries (4-pack),1,2.99,11/09/19 03:14,"596 Lake St, Atlanta, GA 30301" +294989,34in Ultrawide Monitor,1,379.99,11/29/19 13:40,"920 Washington St, Portland, OR 97035" +294990,Wired Headphones,1,11.99,11/25/19 13:50,"997 9th St, Austin, TX 73301" +294991,Apple Airpods Headphones,1,150,11/09/19 13:55,"614 West St, Dallas, TX 75001" +294992,AA Batteries (4-pack),1,3.84,11/13/19 17:46,"434 Jackson St, Dallas, TX 75001" +294993,Wired Headphones,1,11.99,11/01/19 20:05,"141 Chestnut St, San Francisco, CA 94016" +294994,Google Phone,1,600,11/08/19 23:30,"133 11th St, Los Angeles, CA 90001" +294995,AAA Batteries (4-pack),3,2.99,11/06/19 17:55,"680 13th St, New York City, NY 10001" +294996,Wired Headphones,1,11.99,11/09/19 22:10,"41 Lakeview St, New York City, NY 10001" +294997,Lightning Charging Cable,1,14.95,11/08/19 10:16,"393 4th St, Boston, MA 02215" +294998,AA Batteries (4-pack),1,3.84,11/12/19 19:03,"353 River St, San Francisco, CA 94016" +294999,Bose SoundSport Headphones,1,99.99,11/17/19 00:35,"485 12th St, San Francisco, CA 94016" +295000,Wired Headphones,1,11.99,11/23/19 19:26,"489 10th St, Seattle, WA 98101" +295001,AAA Batteries (4-pack),3,2.99,11/15/19 15:55,"149 Maple St, San Francisco, CA 94016" +295002,Apple Airpods Headphones,1,150,11/18/19 22:45,"491 North St, Los Angeles, CA 90001" +295003,AAA Batteries (4-pack),1,2.99,11/15/19 13:39,"211 9th St, Los Angeles, CA 90001" +295004,iPhone,1,700,11/27/19 13:36,"23 Jefferson St, New York City, NY 10001" +295005,27in FHD Monitor,1,149.99,11/25/19 10:59,"490 Maple St, Dallas, TX 75001" +295006,Bose SoundSport Headphones,1,99.99,11/30/19 17:58,"352 Jefferson St, San Francisco, CA 94016" +295007,AA Batteries (4-pack),1,3.84,11/05/19 16:04,"327 Willow St, San Francisco, CA 94016" +295008,Google Phone,1,600,11/03/19 01:54,"376 Hickory St, San Francisco, CA 94016" +295008,USB-C Charging Cable,1,11.95,11/03/19 01:54,"376 Hickory St, San Francisco, CA 94016" +295009,20in Monitor,1,109.99,11/08/19 08:48,"642 Hill St, Seattle, WA 98101" +295010,Lightning Charging Cable,1,14.95,11/22/19 12:15,"159 Hickory St, Dallas, TX 75001" +295011,LG Dryer,1,600.0,11/02/19 10:43,"571 Main St, Los Angeles, CA 90001" +295012,ThinkPad Laptop,1,999.99,11/27/19 17:15,"777 6th St, San Francisco, CA 94016" +295013,27in FHD Monitor,1,149.99,11/04/19 09:17,"217 Lake St, Atlanta, GA 30301" +295014,Wired Headphones,1,11.99,11/16/19 15:25,"156 2nd St, Los Angeles, CA 90001" +295015,34in Ultrawide Monitor,1,379.99,11/19/19 21:12,"70 Hill St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +295016,Bose SoundSport Headphones,1,99.99,11/20/19 20:33,"167 2nd St, Portland, OR 97035" +295017,Lightning Charging Cable,1,14.95,11/09/19 21:12,"538 Spruce St, Atlanta, GA 30301" +295018,27in 4K Gaming Monitor,1,389.99,11/25/19 15:33,"766 Hill St, Dallas, TX 75001" +295019,Lightning Charging Cable,1,14.95,11/14/19 23:10,"323 Spruce St, Portland, OR 97035" +295020,Lightning Charging Cable,1,14.95,11/19/19 14:25,"558 Pine St, Portland, OR 97035" +295021,27in 4K Gaming Monitor,1,389.99,11/19/19 11:49,"691 Madison St, New York City, NY 10001" +295022,Wired Headphones,1,11.99,11/07/19 09:42,"648 Elm St, Dallas, TX 75001" +295023,Lightning Charging Cable,1,14.95,11/25/19 00:20,"235 Pine St, Austin, TX 73301" +295024,AA Batteries (4-pack),2,3.84,11/27/19 17:35,"371 Maple St, Portland, OR 97035" +295025,Bose SoundSport Headphones,1,99.99,11/18/19 19:54,"838 Wilson St, Atlanta, GA 30301" +295026,AAA Batteries (4-pack),1,2.99,11/04/19 18:33,"693 Adams St, San Francisco, CA 94016" +295027,USB-C Charging Cable,1,11.95,11/24/19 19:45,"663 13th St, San Francisco, CA 94016" +295028,Bose SoundSport Headphones,1,99.99,11/13/19 20:26,"597 Hill St, San Francisco, CA 94016" +295029,27in FHD Monitor,1,149.99,11/12/19 19:59,"296 Cherry St, Atlanta, GA 30301" +295030,USB-C Charging Cable,1,11.95,11/06/19 20:40,"225 Hickory St, Boston, MA 02215" +295031,Lightning Charging Cable,1,14.95,11/12/19 23:50,"662 13th St, Los Angeles, CA 90001" +295032,Google Phone,1,600,11/04/19 17:45,"614 Cherry St, Atlanta, GA 30301" +295033,Apple Airpods Headphones,1,150,11/25/19 10:20,"823 6th St, Seattle, WA 98101" +295034,AAA Batteries (4-pack),1,2.99,11/17/19 14:23,"533 Washington St, Boston, MA 02215" +295035,Flatscreen TV,1,300,11/15/19 20:12,"617 Forest St, Portland, OR 97035" +295036,Bose SoundSport Headphones,1,99.99,11/17/19 14:25,"233 14th St, New York City, NY 10001" +295037,Bose SoundSport Headphones,1,99.99,11/25/19 15:08,"29 Willow St, Dallas, TX 75001" +295038,Apple Airpods Headphones,1,150,11/29/19 20:56,"758 7th St, Seattle, WA 98101" +295039,AA Batteries (4-pack),2,3.84,11/23/19 12:20,"142 Adams St, Los Angeles, CA 90001" +295040,AAA Batteries (4-pack),1,2.99,11/26/19 20:59,"59 13th St, Austin, TX 73301" +295041,AA Batteries (4-pack),1,3.84,11/14/19 17:15,"965 Pine St, Dallas, TX 75001" +295042,USB-C Charging Cable,1,11.95,11/28/19 18:25,"805 10th St, Portland, OR 97035" +295043,Vareebadd Phone,1,400,11/05/19 15:58,"71 Washington St, Boston, MA 02215" +295044,AA Batteries (4-pack),2,3.84,11/04/19 15:59,"773 13th St, Atlanta, GA 30301" +295045,Lightning Charging Cable,1,14.95,11/06/19 21:55,"604 Willow St, New York City, NY 10001" +295046,iPhone,1,700,11/11/19 03:52,"580 7th St, New York City, NY 10001" +295046,Lightning Charging Cable,1,14.95,11/11/19 03:52,"580 7th St, New York City, NY 10001" +295046,Wired Headphones,1,11.99,11/11/19 03:52,"580 7th St, New York City, NY 10001" +295047,Bose SoundSport Headphones,1,99.99,11/18/19 20:01,"597 Lake St, Los Angeles, CA 90001" +295048,USB-C Charging Cable,1,11.95,11/26/19 20:49,"619 Willow St, Los Angeles, CA 90001" +295049,Wired Headphones,1,11.99,11/19/19 18:19,"998 Cherry St, San Francisco, CA 94016" +295050,Lightning Charging Cable,1,14.95,11/07/19 20:16,"284 Elm St, Los Angeles, CA 90001" +295051,Lightning Charging Cable,1,14.95,11/23/19 13:26,"434 Church St, Boston, MA 02215" +295052,Lightning Charging Cable,2,14.95,11/08/19 05:31,"846 Forest St, Los Angeles, CA 90001" +295053,AAA Batteries (4-pack),1,2.99,11/04/19 10:36,"635 Main St, New York City, NY 10001" +295054,Apple Airpods Headphones,1,150,11/17/19 11:21,"495 Elm St, New York City, NY 10001" +295055,Apple Airpods Headphones,1,150,11/20/19 22:21,"311 Maple St, New York City, NY 10001" +295055,iPhone,1,700,11/20/19 22:21,"311 Maple St, New York City, NY 10001" +295056,AA Batteries (4-pack),1,3.84,11/26/19 11:14,"660 Pine St, Boston, MA 02215" +295057,Apple Airpods Headphones,1,150,11/08/19 15:43,"148 8th St, San Francisco, CA 94016" +295058,Macbook Pro Laptop,1,1700,11/19/19 17:45,"569 West St, Austin, TX 73301" +295059,Bose SoundSport Headphones,1,99.99,11/29/19 21:48,"429 Hickory St, Atlanta, GA 30301" +295060,USB-C Charging Cable,1,11.95,11/03/19 11:37,"373 12th St, Atlanta, GA 30301" +295061,iPhone,1,700,11/04/19 13:23,"341 Lakeview St, Los Angeles, CA 90001" +295062,Flatscreen TV,1,300,11/25/19 21:20,"162 Park St, San Francisco, CA 94016" +295063,Lightning Charging Cable,1,14.95,11/21/19 20:05,"138 Elm St, Atlanta, GA 30301" +295064,Apple Airpods Headphones,1,150,11/25/19 08:54,"435 13th St, San Francisco, CA 94016" +295065,Wired Headphones,1,11.99,11/05/19 12:09,"431 Jackson St, Los Angeles, CA 90001" +295066,AA Batteries (4-pack),1,3.84,11/06/19 02:30,"688 Lakeview St, Austin, TX 73301" +295067,iPhone,1,700,11/18/19 20:52,"213 Lincoln St, Portland, OR 97035" +295068,Lightning Charging Cable,1,14.95,11/27/19 16:14,"774 Church St, Los Angeles, CA 90001" +295069,AA Batteries (4-pack),1,3.84,11/23/19 09:44,"235 2nd St, Los Angeles, CA 90001" +295070,AA Batteries (4-pack),1,3.84,11/24/19 19:15,"938 12th St, Seattle, WA 98101" +295071,27in FHD Monitor,2,149.99,11/28/19 13:32,"127 Highland St, San Francisco, CA 94016" +295072,AA Batteries (4-pack),1,3.84,11/18/19 09:07,"167 Elm St, New York City, NY 10001" +295073,ThinkPad Laptop,1,999.99,11/06/19 20:14,"335 Washington St, Atlanta, GA 30301" +295074,Apple Airpods Headphones,1,150,11/02/19 14:59,"966 6th St, Los Angeles, CA 90001" +295075,AAA Batteries (4-pack),1,2.99,11/25/19 11:05,"706 Cedar St, San Francisco, CA 94016" +295076,USB-C Charging Cable,1,11.95,11/07/19 16:57,"843 Cherry St, San Francisco, CA 94016" +295077,27in FHD Monitor,1,149.99,11/27/19 10:42,"630 13th St, Atlanta, GA 30301" +295078,iPhone,1,700,11/17/19 16:01,"772 Walnut St, Seattle, WA 98101" +295079,Macbook Pro Laptop,1,1700,11/26/19 07:46,"867 12th St, San Francisco, CA 94016" +295080,Wired Headphones,1,11.99,11/04/19 16:31,"915 6th St, Dallas, TX 75001" +295081,AAA Batteries (4-pack),1,2.99,11/09/19 07:14,"691 Center St, Austin, TX 73301" +295082,Google Phone,1,600,11/13/19 15:11,"751 7th St, San Francisco, CA 94016" +295083,AAA Batteries (4-pack),1,2.99,11/29/19 12:04,"874 Spruce St, Atlanta, GA 30301" +295084,Wired Headphones,1,11.99,11/23/19 18:48,"127 4th St, San Francisco, CA 94016" +295085,USB-C Charging Cable,2,11.95,11/08/19 15:33,"296 8th St, Dallas, TX 75001" +295086,Lightning Charging Cable,1,14.95,11/03/19 15:29,"876 13th St, Seattle, WA 98101" +295087,Lightning Charging Cable,1,14.95,11/08/19 20:50,"238 Jackson St, Los Angeles, CA 90001" +295088,Bose SoundSport Headphones,1,99.99,11/15/19 09:10,"846 Sunset St, Atlanta, GA 30301" +295089,Bose SoundSport Headphones,1,99.99,11/10/19 00:18,"881 14th St, Austin, TX 73301" +295090,Wired Headphones,1,11.99,11/08/19 18:43,"593 Cedar St, Austin, TX 73301" +295091,Google Phone,1,600,11/28/19 19:15,"169 Maple St, Boston, MA 02215" +295092,Bose SoundSport Headphones,1,99.99,11/04/19 13:45,"674 Church St, San Francisco, CA 94016" +295093,USB-C Charging Cable,1,11.95,11/26/19 14:32,"277 6th St, Los Angeles, CA 90001" +295094,iPhone,1,700,11/05/19 08:08,"480 9th St, New York City, NY 10001" +295094,Lightning Charging Cable,1,14.95,11/05/19 08:08,"480 9th St, New York City, NY 10001" +295095,Flatscreen TV,1,300,11/04/19 10:52,"110 7th St, San Francisco, CA 94016" +295096,Apple Airpods Headphones,1,150,11/02/19 19:46,"836 Ridge St, Boston, MA 02215" +295097,AAA Batteries (4-pack),1,2.99,11/07/19 16:49,"337 Johnson St, Boston, MA 02215" +295098,Lightning Charging Cable,1,14.95,11/28/19 13:11,"510 Wilson St, San Francisco, CA 94016" +295099,AAA Batteries (4-pack),1,2.99,11/20/19 09:48,"596 Cedar St, Portland, OR 97035" +295100,Lightning Charging Cable,2,14.95,11/07/19 20:38,"228 8th St, Atlanta, GA 30301" +295101,iPhone,1,700,11/04/19 16:31,"993 Forest St, Los Angeles, CA 90001" +295102,AAA Batteries (4-pack),1,2.99,11/03/19 12:54,"262 Lake St, Austin, TX 73301" +295103,USB-C Charging Cable,1,11.95,11/17/19 16:23,"863 River St, San Francisco, CA 94016" +295104,USB-C Charging Cable,1,11.95,11/27/19 12:21,"827 Lake St, Portland, OR 97035" +295105,27in 4K Gaming Monitor,1,389.99,11/12/19 11:01,"441 Elm St, San Francisco, CA 94016" +295106,Lightning Charging Cable,1,14.95,11/25/19 23:16,"153 Lakeview St, San Francisco, CA 94016" +295107,Wired Headphones,1,11.99,11/02/19 10:49,"380 River St, Boston, MA 02215" +295108,ThinkPad Laptop,1,999.99,11/25/19 20:22,"884 Elm St, Austin, TX 73301" +295109,Wired Headphones,1,11.99,11/26/19 08:55,"212 Jefferson St, Los Angeles, CA 90001" +295110,USB-C Charging Cable,1,11.95,11/18/19 14:11,"407 8th St, Los Angeles, CA 90001" +295111,USB-C Charging Cable,1,11.95,11/20/19 21:56,"428 10th St, Los Angeles, CA 90001" +295112,AA Batteries (4-pack),1,3.84,11/01/19 14:35,"486 8th St, New York City, NY 10001" +295113,Lightning Charging Cable,1,14.95,11/08/19 10:06,"885 Chestnut St, New York City, NY 10001" +295114,Apple Airpods Headphones,1,150,11/24/19 12:08,"851 Washington St, San Francisco, CA 94016" +295115,USB-C Charging Cable,1,11.95,11/26/19 09:01,"747 14th St, San Francisco, CA 94016" +295116,AAA Batteries (4-pack),2,2.99,11/16/19 17:01,"481 Hickory St, San Francisco, CA 94016" +295117,ThinkPad Laptop,1,999.99,11/05/19 11:12,"829 Cedar St, San Francisco, CA 94016" +295118,27in 4K Gaming Monitor,1,389.99,11/23/19 19:03,"262 North St, Seattle, WA 98101" +295119,Flatscreen TV,1,300,11/22/19 03:29,"583 14th St, Los Angeles, CA 90001" +295120,LG Dryer,1,600.0,11/12/19 17:09,"140 1st St, San Francisco, CA 94016" +295121,Flatscreen TV,1,300,11/16/19 13:40,"929 Adams St, Seattle, WA 98101" +295122,ThinkPad Laptop,1,999.99,11/22/19 08:58,"790 Hill St, San Francisco, CA 94016" +295123,USB-C Charging Cable,1,11.95,11/30/19 18:15,"643 Forest St, New York City, NY 10001" +295124,USB-C Charging Cable,1,11.95,11/12/19 18:56,"946 Main St, Dallas, TX 75001" +295125,Apple Airpods Headphones,1,150,11/04/19 11:34,"447 Adams St, Portland, OR 97035" +295126,AA Batteries (4-pack),1,3.84,11/24/19 14:08,"781 Maple St, Seattle, WA 98101" +295127,AA Batteries (4-pack),1,3.84,11/07/19 07:46,"812 Lincoln St, Portland, ME 04101" +295128,27in 4K Gaming Monitor,1,389.99,11/19/19 12:43,"910 Spruce St, Austin, TX 73301" +295129,Lightning Charging Cable,1,14.95,11/09/19 18:54,"910 12th St, New York City, NY 10001" +295130,AA Batteries (4-pack),1,3.84,11/17/19 08:46,"578 South St, Dallas, TX 75001" +295131,AAA Batteries (4-pack),1,2.99,11/26/19 16:14,"703 9th St, Los Angeles, CA 90001" +295132,Apple Airpods Headphones,1,150,11/23/19 12:11,"799 Lincoln St, New York City, NY 10001" +295133,Apple Airpods Headphones,1,150,11/28/19 14:25,"600 Meadow St, San Francisco, CA 94016" +295134,Apple Airpods Headphones,1,150,11/29/19 21:07,"593 Lakeview St, Dallas, TX 75001" +295135,AAA Batteries (4-pack),1,2.99,11/24/19 10:39,"815 Hill St, Dallas, TX 75001" +295136,Lightning Charging Cable,1,14.95,11/02/19 10:58,"688 Lake St, San Francisco, CA 94016" +295137,USB-C Charging Cable,1,11.95,11/07/19 11:46,"674 Adams St, New York City, NY 10001" +295138,USB-C Charging Cable,1,11.95,11/28/19 09:03,"217 Jackson St, Boston, MA 02215" +295139,Wired Headphones,1,11.99,11/15/19 18:21,"234 Hickory St, Boston, MA 02215" +295140,Lightning Charging Cable,1,14.95,11/18/19 19:46,"732 Forest St, Portland, OR 97035" +295141,Google Phone,1,600,11/01/19 20:48,"578 2nd St, Los Angeles, CA 90001" +295142,20in Monitor,1,109.99,11/21/19 17:40,"344 River St, Los Angeles, CA 90001" +295143,USB-C Charging Cable,1,11.95,11/19/19 08:30,"557 12th St, New York City, NY 10001" +295144,Bose SoundSport Headphones,1,99.99,11/25/19 14:50,"938 Johnson St, Austin, TX 73301" +295145,USB-C Charging Cable,1,11.95,11/20/19 14:12,"223 10th St, Dallas, TX 75001" +295146,27in 4K Gaming Monitor,1,389.99,11/17/19 11:30,"355 6th St, Portland, OR 97035" +295147,iPhone,1,700,11/20/19 12:23,"877 River St, Los Angeles, CA 90001" +295148,Wired Headphones,1,11.99,11/16/19 11:09,"293 7th St, Seattle, WA 98101" +295149,20in Monitor,1,109.99,11/07/19 19:21,"577 Madison St, San Francisco, CA 94016" +295150,AA Batteries (4-pack),1,3.84,11/16/19 07:52,"445 6th St, New York City, NY 10001" +295151,AAA Batteries (4-pack),1,2.99,11/22/19 22:44,"488 Chestnut St, Los Angeles, CA 90001" +295152,AA Batteries (4-pack),2,3.84,11/16/19 13:19,"396 Spruce St, Portland, OR 97035" +295153,Apple Airpods Headphones,1,150,11/19/19 21:38,"584 Lincoln St, New York City, NY 10001" +295154,AAA Batteries (4-pack),1,2.99,11/11/19 20:38,"71 Washington St, Austin, TX 73301" +295155,Macbook Pro Laptop,1,1700,11/12/19 10:10,"492 Dogwood St, Atlanta, GA 30301" +295156,20in Monitor,1,109.99,11/16/19 16:48,"144 Madison St, San Francisco, CA 94016" +295157,Apple Airpods Headphones,1,150,11/07/19 14:24,"602 North St, Portland, OR 97035" +295158,AA Batteries (4-pack),1,3.84,11/21/19 00:39,"75 12th St, New York City, NY 10001" +295159,ThinkPad Laptop,1,999.99,11/12/19 18:56,"916 North St, New York City, NY 10001" +295160,iPhone,1,700,11/14/19 22:24,"572 1st St, Boston, MA 02215" +295161,Bose SoundSport Headphones,1,99.99,11/09/19 15:54,"840 Adams St, San Francisco, CA 94016" +295162,Wired Headphones,1,11.99,11/03/19 13:08,"968 Washington St, Seattle, WA 98101" +295163,USB-C Charging Cable,1,11.95,11/25/19 19:31,"790 Lake St, San Francisco, CA 94016" +295164,Apple Airpods Headphones,1,150,11/20/19 15:15,"593 Hill St, Dallas, TX 75001" +295165,27in FHD Monitor,1,149.99,11/18/19 22:15,"293 5th St, Austin, TX 73301" +295166,AAA Batteries (4-pack),2,2.99,11/27/19 12:11,"615 11th St, New York City, NY 10001" +295167,USB-C Charging Cable,1,11.95,11/17/19 20:38,"21 Center St, San Francisco, CA 94016" +295168,ThinkPad Laptop,1,999.99,11/23/19 17:09,"465 Washington St, Seattle, WA 98101" +295169,iPhone,1,700,11/17/19 17:30,"148 Sunset St, Atlanta, GA 30301" +295170,USB-C Charging Cable,1,11.95,11/11/19 17:01,"860 5th St, San Francisco, CA 94016" +295171,Wired Headphones,1,11.99,11/28/19 09:45,"350 11th St, Los Angeles, CA 90001" +295172,Apple Airpods Headphones,1,150,11/17/19 09:05,"442 5th St, San Francisco, CA 94016" +295173,Wired Headphones,1,11.99,11/21/19 18:21,"982 Spruce St, San Francisco, CA 94016" +295174,Macbook Pro Laptop,1,1700,11/26/19 19:37,"578 North St, Boston, MA 02215" +295175,iPhone,1,700,11/04/19 01:22,"283 5th St, San Francisco, CA 94016" +295176,AA Batteries (4-pack),3,3.84,11/26/19 21:02,"535 7th St, San Francisco, CA 94016" +295177,USB-C Charging Cable,1,11.95,11/24/19 23:46,"639 Johnson St, Atlanta, GA 30301" +295178,20in Monitor,1,109.99,11/12/19 07:52,"756 Elm St, Portland, OR 97035" +295179,Lightning Charging Cable,1,14.95,11/22/19 14:08,"550 7th St, New York City, NY 10001" +295180,Apple Airpods Headphones,1,150,11/28/19 00:03,"913 6th St, San Francisco, CA 94016" +295181,Bose SoundSport Headphones,1,99.99,11/22/19 03:23,"904 Wilson St, San Francisco, CA 94016" +295182,Apple Airpods Headphones,1,150,11/29/19 14:08,"776 Adams St, San Francisco, CA 94016" +295183,Wired Headphones,1,11.99,11/16/19 17:25,"916 Adams St, Boston, MA 02215" +295184,Lightning Charging Cable,1,14.95,11/21/19 15:23,"175 5th St, San Francisco, CA 94016" +295185,Lightning Charging Cable,1,14.95,11/25/19 20:40,"470 11th St, Los Angeles, CA 90001" +295186,AA Batteries (4-pack),1,3.84,11/28/19 21:39,"609 Main St, San Francisco, CA 94016" +295187,Lightning Charging Cable,1,14.95,11/20/19 22:18,"801 Park St, San Francisco, CA 94016" +295188,AAA Batteries (4-pack),2,2.99,11/06/19 19:40,"45 West St, San Francisco, CA 94016" +295189,Bose SoundSport Headphones,1,99.99,11/05/19 11:31,"983 1st St, Portland, OR 97035" +295190,Bose SoundSport Headphones,1,99.99,11/19/19 20:01,"508 Elm St, New York City, NY 10001" +295191,Vareebadd Phone,1,400,11/18/19 13:47,"252 11th St, Los Angeles, CA 90001" +295192,AAA Batteries (4-pack),1,2.99,11/09/19 08:06,"514 Main St, San Francisco, CA 94016" +295193,Lightning Charging Cable,1,14.95,11/16/19 16:11,"933 Wilson St, Los Angeles, CA 90001" +295194,USB-C Charging Cable,1,11.95,11/05/19 08:34,"47 Jefferson St, Los Angeles, CA 90001" +295195,Macbook Pro Laptop,1,1700,11/24/19 20:39,"355 South St, San Francisco, CA 94016" +295196,AAA Batteries (4-pack),1,2.99,11/09/19 20:20,"29 Jefferson St, Los Angeles, CA 90001" +295197,Lightning Charging Cable,1,14.95,11/25/19 07:46,"130 12th St, Los Angeles, CA 90001" +295198,USB-C Charging Cable,1,11.95,11/03/19 11:12,"482 10th St, Atlanta, GA 30301" +295199,27in 4K Gaming Monitor,1,389.99,11/28/19 14:57,"270 Hill St, San Francisco, CA 94016" +295200,Apple Airpods Headphones,1,150,11/11/19 11:12,"493 14th St, Boston, MA 02215" +295201,Lightning Charging Cable,1,14.95,11/24/19 00:45,"925 8th St, Seattle, WA 98101" +295202,Apple Airpods Headphones,1,150,11/17/19 01:12,"537 9th St, Seattle, WA 98101" +295203,Macbook Pro Laptop,1,1700,11/08/19 10:47,"29 6th St, Portland, OR 97035" +295204,Google Phone,1,600,11/11/19 21:19,"918 Hill St, Austin, TX 73301" +295205,Bose SoundSport Headphones,1,99.99,11/25/19 20:09,"131 Park St, San Francisco, CA 94016" +295206,Lightning Charging Cable,1,14.95,11/09/19 14:06,"314 Meadow St, Los Angeles, CA 90001" +295207,Lightning Charging Cable,1,14.95,11/07/19 10:03,"363 Spruce St, Dallas, TX 75001" +295208,USB-C Charging Cable,1,11.95,11/24/19 20:48,"687 Sunset St, Seattle, WA 98101" +295209,AAA Batteries (4-pack),4,2.99,11/07/19 13:04,"78 Sunset St, San Francisco, CA 94016" +295210,Lightning Charging Cable,1,14.95,11/19/19 18:19,"189 Spruce St, New York City, NY 10001" +295211,Lightning Charging Cable,1,14.95,11/06/19 13:43,"949 North St, Portland, ME 04101" +295212,Google Phone,1,600,11/25/19 10:31,"831 5th St, San Francisco, CA 94016" +295212,Lightning Charging Cable,1,14.95,11/25/19 10:31,"831 5th St, San Francisco, CA 94016" +295213,27in FHD Monitor,1,149.99,11/09/19 13:53,"633 Hickory St, Seattle, WA 98101" +295213,AA Batteries (4-pack),1,3.84,11/09/19 13:53,"633 Hickory St, Seattle, WA 98101" +295214,Flatscreen TV,1,300,11/06/19 00:04,"511 Lakeview St, Boston, MA 02215" +295215,AA Batteries (4-pack),1,3.84,11/20/19 15:42,"57 Washington St, Seattle, WA 98101" +295216,27in FHD Monitor,1,149.99,11/10/19 16:11,"731 Hickory St, Atlanta, GA 30301" +295217,Wired Headphones,1,11.99,11/04/19 15:55,"806 12th St, Boston, MA 02215" +295218,Wired Headphones,1,11.99,11/04/19 06:53,"938 Maple St, Los Angeles, CA 90001" +295219,AAA Batteries (4-pack),1,2.99,11/23/19 17:51,"730 Jackson St, New York City, NY 10001" +295220,Wired Headphones,1,11.99,11/18/19 19:45,"95 Pine St, New York City, NY 10001" +295221,Wired Headphones,1,11.99,11/23/19 09:30,"752 Dogwood St, Los Angeles, CA 90001" +295222,AA Batteries (4-pack),1,3.84,11/10/19 12:39,"477 1st St, San Francisco, CA 94016" +295223,AA Batteries (4-pack),1,3.84,11/11/19 09:05,"998 Main St, San Francisco, CA 94016" +295224,AAA Batteries (4-pack),1,2.99,11/13/19 18:03,"162 Center St, Seattle, WA 98101" +295225,27in FHD Monitor,1,149.99,11/23/19 18:55,"448 6th St, Los Angeles, CA 90001" +295226,Lightning Charging Cable,1,14.95,11/27/19 07:40,"515 6th St, Los Angeles, CA 90001" +295227,27in FHD Monitor,1,149.99,11/12/19 11:48,"356 Maple St, San Francisco, CA 94016" +295228,iPhone,1,700,11/13/19 15:13,"852 Hill St, Seattle, WA 98101" +295229,AAA Batteries (4-pack),1,2.99,11/16/19 20:12,"508 Walnut St, New York City, NY 10001" +295230,Bose SoundSport Headphones,1,99.99,11/16/19 14:51,"800 Pine St, Portland, OR 97035" +295231,Flatscreen TV,1,300,11/25/19 10:12,"6 6th St, San Francisco, CA 94016" +295232,20in Monitor,1,109.99,11/20/19 18:48,"556 Forest St, Dallas, TX 75001" +295233,AA Batteries (4-pack),2,3.84,11/12/19 19:34,"833 Center St, Atlanta, GA 30301" +295234,AA Batteries (4-pack),2,3.84,11/18/19 16:59,"354 South St, San Francisco, CA 94016" +295235,Macbook Pro Laptop,1,1700,11/16/19 00:16,"346 Willow St, Boston, MA 02215" +295236,AA Batteries (4-pack),2,3.84,11/15/19 10:14,"589 Dogwood St, San Francisco, CA 94016" +295237,AAA Batteries (4-pack),1,2.99,11/23/19 22:20,"486 River St, Los Angeles, CA 90001" +295238,AA Batteries (4-pack),1,3.84,11/05/19 13:43,"569 Adams St, San Francisco, CA 94016" +295239,Bose SoundSport Headphones,1,99.99,11/06/19 14:10,"920 Ridge St, Boston, MA 02215" +295240,Wired Headphones,1,11.99,11/03/19 13:57,"393 Lake St, San Francisco, CA 94016" +295241,iPhone,1,700,11/08/19 16:27,"731 Highland St, Atlanta, GA 30301" +295242,AAA Batteries (4-pack),1,2.99,11/14/19 18:06,"103 Ridge St, Seattle, WA 98101" +295243,Lightning Charging Cable,1,14.95,11/03/19 03:59,"685 Ridge St, San Francisco, CA 94016" +295244,Lightning Charging Cable,2,14.95,11/04/19 10:03,"838 Main St, New York City, NY 10001" +295245,Apple Airpods Headphones,1,150,11/11/19 12:06,"344 Hill St, Los Angeles, CA 90001" +295246,USB-C Charging Cable,1,11.95,11/28/19 10:08,"111 Walnut St, San Francisco, CA 94016" +295247,20in Monitor,1,109.99,11/10/19 19:04,"703 Ridge St, San Francisco, CA 94016" +295248,Apple Airpods Headphones,1,150,11/16/19 11:19,"544 Ridge St, San Francisco, CA 94016" +295249,ThinkPad Laptop,1,999.99,11/27/19 20:16,"904 Madison St, Seattle, WA 98101" +295250,Apple Airpods Headphones,1,150,11/18/19 19:09,"925 8th St, Boston, MA 02215" +295251,Apple Airpods Headphones,1,150,11/05/19 19:37,"215 Lake St, Dallas, TX 75001" +295252,Wired Headphones,1,11.99,11/19/19 16:11,"389 Hill St, Austin, TX 73301" +295253,Apple Airpods Headphones,1,150,11/23/19 13:13,"895 Maple St, Los Angeles, CA 90001" +295254,Apple Airpods Headphones,1,150,11/06/19 19:13,"852 Walnut St, Seattle, WA 98101" +295255,USB-C Charging Cable,1,11.95,11/11/19 18:45,"483 Jackson St, San Francisco, CA 94016" +295256,ThinkPad Laptop,1,999.99,11/26/19 14:56,"790 River St, Boston, MA 02215" +295257,27in FHD Monitor,1,149.99,11/27/19 22:56,"237 Church St, San Francisco, CA 94016" +295258,Bose SoundSport Headphones,1,99.99,11/29/19 10:18,"287 8th St, San Francisco, CA 94016" +295259,ThinkPad Laptop,1,999.99,11/18/19 19:25,"399 7th St, Austin, TX 73301" +295260,AAA Batteries (4-pack),2,2.99,11/11/19 18:18,"313 Sunset St, San Francisco, CA 94016" +295261,Wired Headphones,2,11.99,11/16/19 18:50,"470 West St, Atlanta, GA 30301" +295262,USB-C Charging Cable,1,11.95,11/13/19 18:05,"252 Jackson St, Atlanta, GA 30301" +295263,Bose SoundSport Headphones,1,99.99,11/07/19 19:34,"580 North St, Los Angeles, CA 90001" +295263,Wired Headphones,1,11.99,11/07/19 19:34,"580 North St, Los Angeles, CA 90001" +295264,AA Batteries (4-pack),2,3.84,11/04/19 13:15,"922 Washington St, New York City, NY 10001" +295265,Lightning Charging Cable,1,14.95,11/09/19 16:25,"368 Park St, Boston, MA 02215" +295266,AAA Batteries (4-pack),1,2.99,11/27/19 09:00,"447 Chestnut St, Austin, TX 73301" +295267,Apple Airpods Headphones,1,150,11/04/19 19:48,"173 Washington St, Los Angeles, CA 90001" +295268,20in Monitor,1,109.99,11/15/19 15:34,"810 12th St, Portland, ME 04101" +295269,USB-C Charging Cable,1,11.95,11/30/19 02:51,"217 6th St, San Francisco, CA 94016" +295270,27in 4K Gaming Monitor,1,389.99,11/05/19 10:47,"358 Maple St, New York City, NY 10001" +295271,Lightning Charging Cable,1,14.95,11/04/19 13:54,"615 2nd St, Portland, ME 04101" +295271,AAA Batteries (4-pack),1,2.99,11/04/19 13:54,"615 2nd St, Portland, ME 04101" +295272,AA Batteries (4-pack),4,3.84,11/26/19 22:26,"184 Hill St, Dallas, TX 75001" +295273,USB-C Charging Cable,1,11.95,11/17/19 10:12,"903 Hill St, Dallas, TX 75001" +295274,Google Phone,1,600,11/03/19 21:28,"586 8th St, Dallas, TX 75001" +295274,Wired Headphones,2,11.99,11/03/19 21:28,"586 8th St, Dallas, TX 75001" +295275,20in Monitor,1,109.99,11/05/19 23:01,"251 4th St, Austin, TX 73301" +295276,Apple Airpods Headphones,1,150,11/09/19 17:10,"875 Hickory St, Seattle, WA 98101" +295277,Apple Airpods Headphones,1,150,11/08/19 15:18,"86 Lake St, Atlanta, GA 30301" +295278,Wired Headphones,1,11.99,11/19/19 13:59,"852 Church St, Dallas, TX 75001" +295279,AAA Batteries (4-pack),1,2.99,11/27/19 11:45,"558 Elm St, Portland, OR 97035" +295280,Wired Headphones,1,11.99,11/21/19 11:12,"9 Madison St, Los Angeles, CA 90001" +295281,USB-C Charging Cable,1,11.95,11/10/19 20:58,"691 Forest St, Los Angeles, CA 90001" +295282,Macbook Pro Laptop,1,1700,11/17/19 13:15,"371 Ridge St, San Francisco, CA 94016" +295283,Bose SoundSport Headphones,1,99.99,11/26/19 17:22,"538 Wilson St, Boston, MA 02215" +295284,AAA Batteries (4-pack),1,2.99,11/24/19 08:13,"32 Center St, Boston, MA 02215" +295285,USB-C Charging Cable,1,11.95,11/10/19 23:16,"929 Johnson St, Atlanta, GA 30301" +295286,Lightning Charging Cable,1,14.95,11/18/19 12:22,"658 Johnson St, Dallas, TX 75001" +295287,Bose SoundSport Headphones,1,99.99,11/06/19 16:11,"526 Elm St, Dallas, TX 75001" +295288,Vareebadd Phone,1,400,11/23/19 09:52,"574 Elm St, Los Angeles, CA 90001" +295289,Apple Airpods Headphones,1,150,11/19/19 17:20,"141 Sunset St, Boston, MA 02215" +295290,AAA Batteries (4-pack),1,2.99,11/27/19 09:48,"73 North St, Boston, MA 02215" +295291,Apple Airpods Headphones,1,150,11/05/19 21:45,"782 Jackson St, San Francisco, CA 94016" +295292,AAA Batteries (4-pack),1,2.99,11/25/19 09:27,"253 Wilson St, San Francisco, CA 94016" +295293,AA Batteries (4-pack),1,3.84,11/10/19 09:03,"93 Highland St, San Francisco, CA 94016" +295294,Lightning Charging Cable,1,14.95,11/07/19 14:55,"182 Forest St, San Francisco, CA 94016" +295295,Bose SoundSport Headphones,1,99.99,11/12/19 14:39,"784 Church St, New York City, NY 10001" +295296,Wired Headphones,1,11.99,11/08/19 12:56,"501 Hill St, Los Angeles, CA 90001" +295297,AAA Batteries (4-pack),2,2.99,11/18/19 16:35,"437 Highland St, Portland, OR 97035" +295298,Bose SoundSport Headphones,1,99.99,11/18/19 18:16,"789 North St, Los Angeles, CA 90001" +295299,AA Batteries (4-pack),1,3.84,11/06/19 04:57,"24 2nd St, Dallas, TX 75001" +295300,AA Batteries (4-pack),1,3.84,11/03/19 11:31,"136 Adams St, San Francisco, CA 94016" +295301,Bose SoundSport Headphones,1,99.99,11/19/19 12:08,"159 Adams St, Boston, MA 02215" +295302,Lightning Charging Cable,1,14.95,11/26/19 08:16,"155 10th St, San Francisco, CA 94016" +295303,Wired Headphones,1,11.99,11/01/19 10:07,"166 West St, Atlanta, GA 30301" +295304,27in 4K Gaming Monitor,1,389.99,11/05/19 20:55,"596 11th St, San Francisco, CA 94016" +295305,Vareebadd Phone,1,400,11/12/19 09:15,"669 4th St, San Francisco, CA 94016" +295305,USB-C Charging Cable,2,11.95,11/12/19 09:15,"669 4th St, San Francisco, CA 94016" +295306,iPhone,1,700,11/08/19 18:30,"823 South St, Dallas, TX 75001" +295307,AA Batteries (4-pack),1,3.84,11/01/19 10:34,"650 6th St, San Francisco, CA 94016" +295308,Flatscreen TV,1,300,11/23/19 09:32,"159 Cedar St, Boston, MA 02215" +295309,34in Ultrawide Monitor,1,379.99,11/25/19 14:34,"935 Wilson St, San Francisco, CA 94016" +295310,USB-C Charging Cable,1,11.95,11/13/19 20:23,"785 Cherry St, New York City, NY 10001" +295311,Lightning Charging Cable,1,14.95,11/17/19 20:31,"267 14th St, San Francisco, CA 94016" +295312,Apple Airpods Headphones,1,150,11/17/19 18:29,"52 Elm St, Boston, MA 02215" +295313,AAA Batteries (4-pack),1,2.99,11/22/19 12:46,"949 Walnut St, Los Angeles, CA 90001" +295314,27in 4K Gaming Monitor,1,389.99,11/12/19 11:12,"56 River St, Seattle, WA 98101" +295315,USB-C Charging Cable,1,11.95,11/24/19 23:15,"324 Lake St, Boston, MA 02215" +295316,Lightning Charging Cable,1,14.95,11/19/19 07:55,"324 Jackson St, Atlanta, GA 30301" +295317,iPhone,1,700,11/03/19 21:05,"878 Pine St, Atlanta, GA 30301" +295318,USB-C Charging Cable,1,11.95,11/13/19 13:15,"731 4th St, Seattle, WA 98101" +295319,AA Batteries (4-pack),1,3.84,11/07/19 07:12,"703 4th St, San Francisco, CA 94016" +295320,20in Monitor,1,109.99,11/08/19 07:39,"526 Willow St, Dallas, TX 75001" +295321,AAA Batteries (4-pack),1,2.99,11/07/19 17:48,"315 Adams St, Portland, OR 97035" +295322,Vareebadd Phone,1,400,11/08/19 16:04,"972 Jefferson St, Dallas, TX 75001" +295323,Google Phone,1,600,11/12/19 15:44,"976 Willow St, San Francisco, CA 94016" +295323,USB-C Charging Cable,1,11.95,11/12/19 15:44,"976 Willow St, San Francisco, CA 94016" +295324,Apple Airpods Headphones,1,150,11/30/19 21:03,"304 Wilson St, Los Angeles, CA 90001" +295325,AA Batteries (4-pack),1,3.84,11/11/19 12:27,"242 Park St, San Francisco, CA 94016" +295326,Apple Airpods Headphones,1,150,11/10/19 23:23,"521 10th St, San Francisco, CA 94016" +295327,ThinkPad Laptop,1,999.99,11/14/19 18:36,"721 Elm St, New York City, NY 10001" +295328,27in FHD Monitor,1,149.99,11/20/19 13:52,"875 Hill St, Seattle, WA 98101" +295329,AA Batteries (4-pack),1,3.84,11/22/19 09:30,"869 Wilson St, Los Angeles, CA 90001" +295330,Wired Headphones,1,11.99,11/03/19 14:09,"138 Highland St, Atlanta, GA 30301" +295331,iPhone,1,700,11/25/19 18:07,"971 5th St, San Francisco, CA 94016" +295332,AAA Batteries (4-pack),1,2.99,11/17/19 14:33,"666 Highland St, New York City, NY 10001" +295333,AA Batteries (4-pack),1,3.84,11/04/19 19:57,"174 South St, Los Angeles, CA 90001" +295334,Bose SoundSport Headphones,1,99.99,11/20/19 07:53,"184 Cherry St, Los Angeles, CA 90001" +295335,AAA Batteries (4-pack),2,2.99,11/15/19 23:56,"124 11th St, San Francisco, CA 94016" +295336,Bose SoundSport Headphones,1,99.99,11/14/19 04:02,"154 Chestnut St, Seattle, WA 98101" +295337,AA Batteries (4-pack),1,3.84,11/03/19 22:20,"346 Cherry St, San Francisco, CA 94016" +295338,Lightning Charging Cable,1,14.95,11/05/19 10:13,"877 Elm St, Atlanta, GA 30301" +295339,USB-C Charging Cable,1,11.95,11/04/19 18:31,"793 7th St, Atlanta, GA 30301" +295340,AAA Batteries (4-pack),2,2.99,11/16/19 01:18,"605 Cedar St, Atlanta, GA 30301" +295341,Bose SoundSport Headphones,1,99.99,11/17/19 22:20,"784 South St, Los Angeles, CA 90001" +295342,Lightning Charging Cable,1,14.95,11/27/19 20:22,"230 Maple St, Boston, MA 02215" +295343,Bose SoundSport Headphones,1,99.99,11/20/19 20:21,"744 Church St, Seattle, WA 98101" +295344,USB-C Charging Cable,1,11.95,11/01/19 10:30,"365 Maple St, Boston, MA 02215" +295345,Apple Airpods Headphones,1,150,11/17/19 12:54,"734 6th St, Boston, MA 02215" +295345,34in Ultrawide Monitor,1,379.99,11/17/19 12:54,"734 6th St, Boston, MA 02215" +295346,USB-C Charging Cable,1,11.95,11/09/19 11:24,"523 North St, Dallas, TX 75001" +295347,Bose SoundSport Headphones,1,99.99,11/06/19 00:09,"58 1st St, San Francisco, CA 94016" +295348,Wired Headphones,1,11.99,11/07/19 22:14,"441 Spruce St, New York City, NY 10001" +295349,AAA Batteries (4-pack),3,2.99,11/30/19 09:18,"485 2nd St, Portland, OR 97035" +295350,AA Batteries (4-pack),1,3.84,11/29/19 19:24,"936 2nd St, San Francisco, CA 94016" +295351,LG Dryer,1,600.0,11/06/19 19:28,"657 Adams St, Boston, MA 02215" +295352,iPhone,1,700,11/01/19 22:00,"939 13th St, Portland, ME 04101" +295352,Lightning Charging Cable,1,14.95,11/01/19 22:00,"939 13th St, Portland, ME 04101" +295353,Lightning Charging Cable,1,14.95,11/11/19 09:32,"677 Pine St, Austin, TX 73301" +295354,Lightning Charging Cable,1,14.95,11/07/19 17:27,"693 9th St, Boston, MA 02215" +295355,Lightning Charging Cable,1,14.95,11/27/19 09:09,"806 Maple St, Boston, MA 02215" +295356,Bose SoundSport Headphones,1,99.99,11/17/19 15:34,"87 Maple St, New York City, NY 10001" +295357,iPhone,1,700,11/21/19 14:27,"697 Park St, Los Angeles, CA 90001" +295358,USB-C Charging Cable,1,11.95,11/30/19 22:20,"463 Hickory St, Boston, MA 02215" +295359,Bose SoundSport Headphones,1,99.99,11/20/19 19:20,"478 Ridge St, Austin, TX 73301" +295360,Google Phone,1,600,11/14/19 18:01,"466 5th St, Los Angeles, CA 90001" +295361,USB-C Charging Cable,1,11.95,11/28/19 10:20,"644 Hill St, Seattle, WA 98101" +295362,27in FHD Monitor,1,149.99,11/27/19 19:01,"651 4th St, San Francisco, CA 94016" +295363,Lightning Charging Cable,1,14.95,11/08/19 07:30,"691 Elm St, San Francisco, CA 94016" +295364,34in Ultrawide Monitor,1,379.99,11/20/19 15:23,"784 Highland St, San Francisco, CA 94016" +295365,27in FHD Monitor,1,149.99,11/03/19 13:07,"586 Willow St, Los Angeles, CA 90001" +295366,AAA Batteries (4-pack),1,2.99,11/09/19 11:15,"663 Meadow St, Boston, MA 02215" +295367,Wired Headphones,1,11.99,11/22/19 16:55,"16 Jackson St, San Francisco, CA 94016" +295368,Macbook Pro Laptop,1,1700,11/14/19 21:52,"816 Elm St, New York City, NY 10001" +295369,AAA Batteries (4-pack),1,2.99,11/09/19 17:09,"605 Park St, San Francisco, CA 94016" +295370,AA Batteries (4-pack),2,3.84,11/21/19 19:48,"337 Madison St, Portland, ME 04101" +295371,AAA Batteries (4-pack),1,2.99,11/02/19 00:41,"711 Hickory St, San Francisco, CA 94016" +295372,Apple Airpods Headphones,1,150,11/20/19 12:43,"49 Lincoln St, Boston, MA 02215" +295373,Wired Headphones,1,11.99,11/04/19 19:29,"558 Cedar St, San Francisco, CA 94016" +295374,Lightning Charging Cable,1,14.95,11/07/19 15:57,"19 Jackson St, Los Angeles, CA 90001" +295375,Wired Headphones,1,11.99,11/10/19 11:06,"1 12th St, San Francisco, CA 94016" +295376,AAA Batteries (4-pack),3,2.99,11/08/19 16:22,"242 4th St, Seattle, WA 98101" +295377,AAA Batteries (4-pack),1,2.99,11/29/19 20:36,"256 Lakeview St, Seattle, WA 98101" +295378,USB-C Charging Cable,1,11.95,11/27/19 09:22,"487 Church St, San Francisco, CA 94016" +295379,Bose SoundSport Headphones,1,99.99,11/21/19 15:34,"587 Meadow St, Austin, TX 73301" +295380,Lightning Charging Cable,1,14.95,11/18/19 10:32,"438 8th St, New York City, NY 10001" +295381,Google Phone,1,600,11/20/19 22:37,"977 9th St, San Francisco, CA 94016" +295382,AAA Batteries (4-pack),1,2.99,11/12/19 02:22,"765 9th St, Los Angeles, CA 90001" +295383,Apple Airpods Headphones,1,150,11/10/19 18:48,"480 Park St, Dallas, TX 75001" +295384,34in Ultrawide Monitor,1,379.99,11/21/19 11:23,"660 Spruce St, Austin, TX 73301" +295385,Wired Headphones,2,11.99,11/22/19 19:14,"414 Lakeview St, Boston, MA 02215" +295386,Lightning Charging Cable,1,14.95,11/11/19 21:13,"874 Adams St, Boston, MA 02215" +295387,20in Monitor,1,109.99,11/08/19 12:35,"202 Adams St, Los Angeles, CA 90001" +295388,Google Phone,1,600,11/23/19 11:30,"942 10th St, San Francisco, CA 94016" +295388,USB-C Charging Cable,1,11.95,11/23/19 11:30,"942 10th St, San Francisco, CA 94016" +295389,AA Batteries (4-pack),1,3.84,11/04/19 19:47,"97 Pine St, San Francisco, CA 94016" +295390,Lightning Charging Cable,1,14.95,11/09/19 11:11,"103 Hickory St, San Francisco, CA 94016" +295391,USB-C Charging Cable,1,11.95,11/06/19 11:12,"840 Madison St, Dallas, TX 75001" +295392,Wired Headphones,1,11.99,11/16/19 13:13,"301 Meadow St, New York City, NY 10001" +295393,Google Phone,1,600,11/23/19 18:16,"964 Madison St, Atlanta, GA 30301" +295393,USB-C Charging Cable,1,11.95,11/23/19 18:16,"964 Madison St, Atlanta, GA 30301" +295394,AA Batteries (4-pack),1,3.84,11/27/19 10:39,"88 12th St, San Francisco, CA 94016" +295395,AAA Batteries (4-pack),2,2.99,11/06/19 19:22,"334 Lincoln St, New York City, NY 10001" +295396,AAA Batteries (4-pack),4,2.99,11/30/19 05:53,"250 Lake St, San Francisco, CA 94016" +295397,USB-C Charging Cable,1,11.95,12/01/19 01:50,"270 Elm St, Dallas, TX 75001" +295398,AA Batteries (4-pack),2,3.84,11/21/19 02:09,"831 Jefferson St, Portland, OR 97035" +295399,USB-C Charging Cable,1,11.95,11/20/19 16:06,"30 11th St, New York City, NY 10001" +295400,AAA Batteries (4-pack),1,2.99,11/14/19 19:22,"138 South St, New York City, NY 10001" +295401,Apple Airpods Headphones,1,150,11/30/19 12:49,"46 Chestnut St, San Francisco, CA 94016" +295402,Macbook Pro Laptop,1,1700,11/22/19 13:07,"432 Wilson St, Boston, MA 02215" +295403,Flatscreen TV,1,300,11/20/19 21:08,"135 12th St, New York City, NY 10001" +295404,Wired Headphones,1,11.99,11/10/19 23:12,"156 Hickory St, San Francisco, CA 94016" +295405,20in Monitor,1,109.99,11/18/19 01:52,"382 Highland St, Seattle, WA 98101" +295406,USB-C Charging Cable,1,11.95,11/18/19 17:25,"871 Sunset St, San Francisco, CA 94016" +295407,Lightning Charging Cable,1,14.95,11/13/19 12:27,"982 Cherry St, San Francisco, CA 94016" +295408,27in 4K Gaming Monitor,1,389.99,11/14/19 22:32,"567 Washington St, Dallas, TX 75001" +295409,34in Ultrawide Monitor,1,379.99,11/28/19 23:45,"405 Walnut St, New York City, NY 10001" +295410,Wired Headphones,1,11.99,11/19/19 22:21,"976 Highland St, Los Angeles, CA 90001" +295411,Lightning Charging Cable,1,14.95,11/20/19 19:51,"515 4th St, Seattle, WA 98101" +295412,iPhone,1,700,11/16/19 04:56,"59 Chestnut St, Los Angeles, CA 90001" +295412,Lightning Charging Cable,1,14.95,11/16/19 04:56,"59 Chestnut St, Los Angeles, CA 90001" +295412,Apple Airpods Headphones,1,150,11/16/19 04:56,"59 Chestnut St, Los Angeles, CA 90001" +295413,USB-C Charging Cable,1,11.95,11/01/19 11:09,"426 Park St, Los Angeles, CA 90001" +295414,USB-C Charging Cable,1,11.95,11/24/19 13:52,"882 Center St, Atlanta, GA 30301" +295415,AA Batteries (4-pack),1,3.84,11/10/19 20:40,"836 9th St, Los Angeles, CA 90001" +295416,Google Phone,1,600,11/24/19 09:54,"401 Main St, New York City, NY 10001" +295416,Bose SoundSport Headphones,1,99.99,11/24/19 09:54,"401 Main St, New York City, NY 10001" +295417,Google Phone,1,600,11/24/19 09:39,"891 Elm St, Seattle, WA 98101" +295418,Bose SoundSport Headphones,1,99.99,11/25/19 14:16,"589 Washington St, Boston, MA 02215" +295419,Macbook Pro Laptop,1,1700,11/11/19 16:02,"219 Maple St, San Francisco, CA 94016" +295420,Bose SoundSport Headphones,1,99.99,11/08/19 12:46,"857 Wilson St, Los Angeles, CA 90001" +295421,AA Batteries (4-pack),1,3.84,11/12/19 02:59,"685 Church St, Los Angeles, CA 90001" +295422,ThinkPad Laptop,1,999.99,11/11/19 11:17,"121 Wilson St, Austin, TX 73301" +295423,27in 4K Gaming Monitor,1,389.99,11/12/19 12:21,"399 11th St, Atlanta, GA 30301" +295424,AAA Batteries (4-pack),2,2.99,11/06/19 18:41,"510 Church St, Los Angeles, CA 90001" +295425,Lightning Charging Cable,1,14.95,11/01/19 10:11,"566 Cedar St, Dallas, TX 75001" +295426,27in FHD Monitor,1,149.99,11/14/19 22:27,"797 Church St, Dallas, TX 75001" +295427,Lightning Charging Cable,1,14.95,11/11/19 19:39,"154 Highland St, Los Angeles, CA 90001" +295428,20in Monitor,1,109.99,11/15/19 15:05,"419 North St, Dallas, TX 75001" +295429,Google Phone,1,600,11/20/19 20:01,"606 South St, San Francisco, CA 94016" +295430,27in FHD Monitor,1,149.99,11/15/19 16:51,"367 Ridge St, Los Angeles, CA 90001" +295431,AA Batteries (4-pack),1,3.84,11/13/19 07:49,"229 Church St, New York City, NY 10001" +295432,34in Ultrawide Monitor,1,379.99,11/08/19 17:17,"107 Lincoln St, Seattle, WA 98101" +295433,Apple Airpods Headphones,1,150,11/28/19 14:39,"327 Lincoln St, Los Angeles, CA 90001" +295434,20in Monitor,1,109.99,11/24/19 11:23,"672 Meadow St, San Francisco, CA 94016" +295435,27in 4K Gaming Monitor,1,389.99,11/25/19 20:19,"455 10th St, Boston, MA 02215" +295436,USB-C Charging Cable,1,11.95,11/04/19 18:40,"863 River St, New York City, NY 10001" +295437,Lightning Charging Cable,1,14.95,11/10/19 17:24,"362 Spruce St, Seattle, WA 98101" +295438,AAA Batteries (4-pack),1,2.99,11/17/19 19:47,"416 Cedar St, San Francisco, CA 94016" +295439,ThinkPad Laptop,1,999.99,11/24/19 21:35,"492 Dogwood St, Atlanta, GA 30301" +295440,Wired Headphones,1,11.99,11/18/19 23:12,"977 5th St, San Francisco, CA 94016" +295441,Bose SoundSport Headphones,1,99.99,11/22/19 20:01,"763 Cedar St, Los Angeles, CA 90001" +295442,AAA Batteries (4-pack),1,2.99,11/03/19 14:48,"165 Elm St, Dallas, TX 75001" +295443,Bose SoundSport Headphones,1,99.99,11/09/19 18:55,"297 6th St, Boston, MA 02215" +295444,Lightning Charging Cable,1,14.95,11/07/19 18:11,"58 Elm St, Dallas, TX 75001" +295445,Bose SoundSport Headphones,1,99.99,11/16/19 18:30,"436 West St, Los Angeles, CA 90001" +295446,AA Batteries (4-pack),1,3.84,11/02/19 00:22,"92 Cedar St, Boston, MA 02215" +295447,Bose SoundSport Headphones,1,99.99,11/24/19 14:31,"517 North St, Boston, MA 02215" +295448,ThinkPad Laptop,1,999.99,11/29/19 14:52,"545 6th St, San Francisco, CA 94016" +295449,Macbook Pro Laptop,1,1700,11/17/19 17:12,"525 Lakeview St, Boston, MA 02215" +295450,Bose SoundSport Headphones,1,99.99,11/28/19 14:52,"10 6th St, San Francisco, CA 94016" +295451,34in Ultrawide Monitor,1,379.99,11/10/19 18:40,"928 Hickory St, Atlanta, GA 30301" +295452,34in Ultrawide Monitor,1,379.99,11/29/19 16:25,"484 Washington St, Dallas, TX 75001" +295453,AA Batteries (4-pack),1,3.84,11/18/19 19:36,"335 Dogwood St, San Francisco, CA 94016" +295454,27in FHD Monitor,1,149.99,11/10/19 08:11,"470 Maple St, San Francisco, CA 94016" +295455,Apple Airpods Headphones,1,150,11/13/19 15:13,"534 Willow St, San Francisco, CA 94016" +295456,AAA Batteries (4-pack),2,2.99,11/01/19 09:59,"957 10th St, Seattle, WA 98101" +295457,Google Phone,1,600,11/25/19 12:46,"731 7th St, San Francisco, CA 94016" +295458,Lightning Charging Cable,1,14.95,11/29/19 20:14,"654 Forest St, San Francisco, CA 94016" +295459,Lightning Charging Cable,1,14.95,11/11/19 21:20,"142 Highland St, Austin, TX 73301" +295460,AAA Batteries (4-pack),2,2.99,11/07/19 19:50,"524 13th St, Austin, TX 73301" +295461,34in Ultrawide Monitor,1,379.99,11/12/19 13:13,"657 13th St, San Francisco, CA 94016" +295461,Macbook Pro Laptop,1,1700,11/12/19 13:13,"657 13th St, San Francisco, CA 94016" +295462,AAA Batteries (4-pack),1,2.99,11/20/19 14:22,"879 Wilson St, Boston, MA 02215" +295463,Flatscreen TV,1,300,11/15/19 12:18,"418 Forest St, Los Angeles, CA 90001" +295464,USB-C Charging Cable,1,11.95,11/17/19 19:10,"708 Jefferson St, San Francisco, CA 94016" +295465,USB-C Charging Cable,2,11.95,11/03/19 17:32,"999 Jefferson St, Portland, OR 97035" +295466,20in Monitor,1,109.99,11/28/19 15:19,"771 Elm St, Atlanta, GA 30301" +295467,ThinkPad Laptop,1,999.99,11/09/19 20:06,"114 Cherry St, Austin, TX 73301" +295468,20in Monitor,1,109.99,11/24/19 13:38,"869 Dogwood St, Boston, MA 02215" +295469,Bose SoundSport Headphones,1,99.99,11/05/19 19:01,"180 5th St, San Francisco, CA 94016" +295470,Apple Airpods Headphones,1,150,11/29/19 23:14,"987 Hickory St, Boston, MA 02215" +295471,Wired Headphones,1,11.99,11/10/19 10:49,"35 Meadow St, Los Angeles, CA 90001" +295472,Google Phone,1,600,11/12/19 08:37,"244 Forest St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +295473,Bose SoundSport Headphones,1,99.99,11/17/19 11:35,"430 Pine St, Portland, OR 97035" +295474,Apple Airpods Headphones,1,150,11/11/19 14:29,"668 North St, Los Angeles, CA 90001" +295475,34in Ultrawide Monitor,1,379.99,11/26/19 07:30,"542 Wilson St, San Francisco, CA 94016" +295476,USB-C Charging Cable,1,11.95,11/20/19 10:03,"700 Meadow St, Atlanta, GA 30301" +295477,Wired Headphones,2,11.99,11/04/19 16:48,"850 9th St, Atlanta, GA 30301" +295478,ThinkPad Laptop,1,999.99,11/13/19 09:26,"555 Meadow St, Portland, OR 97035" +295479,AA Batteries (4-pack),2,3.84,11/19/19 18:41,"870 South St, New York City, NY 10001" +295480,Lightning Charging Cable,1,14.95,11/19/19 13:04,"716 Sunset St, New York City, NY 10001" +295480,27in 4K Gaming Monitor,1,389.99,11/19/19 13:04,"716 Sunset St, New York City, NY 10001" +295481,Bose SoundSport Headphones,1,99.99,11/18/19 22:47,"648 5th St, New York City, NY 10001" +295482,Apple Airpods Headphones,1,150,11/10/19 12:54,"672 Hickory St, New York City, NY 10001" +295483,AAA Batteries (4-pack),1,2.99,11/06/19 15:46,"811 Willow St, Dallas, TX 75001" +295484,ThinkPad Laptop,1,999.99,11/20/19 16:31,"760 Main St, New York City, NY 10001" +295485,Vareebadd Phone,1,400,11/04/19 12:43,"399 Cherry St, Los Angeles, CA 90001" +295486,Wired Headphones,1,11.99,11/19/19 16:50,"515 River St, Los Angeles, CA 90001" +295487,Wired Headphones,1,11.99,11/24/19 04:29,"467 14th St, Austin, TX 73301" +295488,USB-C Charging Cable,1,11.95,11/30/19 10:13,"253 Maple St, Seattle, WA 98101" +295489,Apple Airpods Headphones,1,150,11/11/19 00:59,"730 5th St, San Francisco, CA 94016" +295490,20in Monitor,1,109.99,11/16/19 19:02,"690 Maple St, New York City, NY 10001" +295491,ThinkPad Laptop,1,999.99,11/22/19 16:44,"541 Lake St, Austin, TX 73301" +295492,Bose SoundSport Headphones,1,99.99,11/18/19 18:07,"811 Dogwood St, New York City, NY 10001" +295492,LG Washing Machine,1,600.0,11/18/19 18:07,"811 Dogwood St, New York City, NY 10001" +295493,Wired Headphones,1,11.99,11/23/19 14:45,"417 Highland St, Dallas, TX 75001" +295494,AA Batteries (4-pack),2,3.84,11/23/19 17:05,"248 Walnut St, Boston, MA 02215" +295495,Lightning Charging Cable,1,14.95,11/16/19 21:07,"954 Hill St, San Francisco, CA 94016" +295496,AA Batteries (4-pack),1,3.84,11/25/19 19:34,"473 Walnut St, Los Angeles, CA 90001" +295497,Wired Headphones,1,11.99,11/08/19 18:08,"925 Forest St, San Francisco, CA 94016" +295498,AA Batteries (4-pack),1,3.84,11/20/19 12:16,"507 Cedar St, San Francisco, CA 94016" +295499,Macbook Pro Laptop,1,1700,11/18/19 17:50,"419 7th St, New York City, NY 10001" +295500,AAA Batteries (4-pack),1,2.99,11/30/19 21:23,"274 Lincoln St, Los Angeles, CA 90001" +295501,AA Batteries (4-pack),1,3.84,11/21/19 19:49,"658 River St, San Francisco, CA 94016" +295502,Lightning Charging Cable,1,14.95,11/16/19 10:34,"824 Dogwood St, Dallas, TX 75001" +295503,Lightning Charging Cable,1,14.95,11/08/19 12:20,"161 11th St, Atlanta, GA 30301" +295504,Lightning Charging Cable,1,14.95,11/09/19 14:58,"698 Church St, San Francisco, CA 94016" +295505,iPhone,1,700,11/15/19 17:01,"739 Walnut St, Dallas, TX 75001" +295506,Wired Headphones,1,11.99,11/21/19 11:16,"847 10th St, Dallas, TX 75001" +295507,Bose SoundSport Headphones,1,99.99,11/04/19 11:21,"397 Hickory St, New York City, NY 10001" +295508,Wired Headphones,1,11.99,11/30/19 05:16,"298 North St, Dallas, TX 75001" +295509,Wired Headphones,2,11.99,11/11/19 11:44,"117 Lake St, Boston, MA 02215" +295510,ThinkPad Laptop,1,999.99,11/08/19 22:20,"265 Hill St, New York City, NY 10001" +295511,Google Phone,1,600,11/24/19 21:22,"682 Willow St, San Francisco, CA 94016" +295512,Wired Headphones,1,11.99,11/29/19 06:56,"777 Maple St, San Francisco, CA 94016" +295513,USB-C Charging Cable,1,11.95,11/14/19 18:34,"654 River St, Atlanta, GA 30301" +295514,Bose SoundSport Headphones,1,99.99,11/04/19 10:36,"836 Church St, New York City, NY 10001" +295515,USB-C Charging Cable,1,11.95,11/01/19 13:58,"484 South St, Boston, MA 02215" +295516,AAA Batteries (4-pack),1,2.99,11/25/19 16:33,"618 Hickory St, San Francisco, CA 94016" +295517,AA Batteries (4-pack),1,3.84,11/20/19 13:13,"912 5th St, Portland, ME 04101" +295518,27in FHD Monitor,1,149.99,11/14/19 12:52,"939 Spruce St, Dallas, TX 75001" +295519,Apple Airpods Headphones,1,150,11/17/19 13:15,"837 Church St, San Francisco, CA 94016" +295520,AAA Batteries (4-pack),1,2.99,11/24/19 16:49,"664 Hill St, Austin, TX 73301" +295521,AA Batteries (4-pack),1,3.84,11/21/19 09:42,"310 Adams St, New York City, NY 10001" +295522,Apple Airpods Headphones,1,150,11/04/19 13:47,"119 Willow St, Dallas, TX 75001" +295523,27in FHD Monitor,1,149.99,11/07/19 20:51,"646 8th St, Boston, MA 02215" +295524,34in Ultrawide Monitor,1,379.99,11/27/19 09:49,"399 4th St, Los Angeles, CA 90001" +295525,Lightning Charging Cable,1,14.95,11/23/19 10:11,"730 Ridge St, San Francisco, CA 94016" +295526,AAA Batteries (4-pack),1,2.99,11/02/19 10:30,"967 Lake St, Portland, OR 97035" +295527,AA Batteries (4-pack),3,3.84,11/13/19 23:55,"60 Spruce St, New York City, NY 10001" +295528,Wired Headphones,1,11.99,11/08/19 20:22,"477 Church St, San Francisco, CA 94016" +295529,iPhone,1,700,11/25/19 19:45,"994 Park St, Boston, MA 02215" +295530,Apple Airpods Headphones,1,150,11/12/19 00:03,"275 Lakeview St, Atlanta, GA 30301" +295531,Wired Headphones,1,11.99,11/02/19 12:23,"502 Spruce St, Austin, TX 73301" +295532,Wired Headphones,1,11.99,11/20/19 11:53,"190 Park St, Los Angeles, CA 90001" +295533,AA Batteries (4-pack),1,3.84,11/19/19 11:31,"500 6th St, New York City, NY 10001" +295534,USB-C Charging Cable,1,11.95,11/30/19 15:09,"967 11th St, Boston, MA 02215" +295535,AA Batteries (4-pack),2,3.84,11/27/19 21:30,"859 Willow St, Los Angeles, CA 90001" +295536,Apple Airpods Headphones,1,150,11/20/19 16:23,"324 Ridge St, Seattle, WA 98101" +295537,Vareebadd Phone,1,400,11/28/19 13:00,"742 9th St, Boston, MA 02215" +295538,Apple Airpods Headphones,1,150,11/25/19 15:52,"18 Jefferson St, Los Angeles, CA 90001" +295539,AA Batteries (4-pack),2,3.84,11/27/19 10:40,"774 14th St, Boston, MA 02215" +295540,Apple Airpods Headphones,1,150,11/28/19 12:21,"343 13th St, New York City, NY 10001" +295541,27in FHD Monitor,1,149.99,11/30/19 21:14,"149 Jackson St, San Francisco, CA 94016" +295542,27in 4K Gaming Monitor,1,389.99,11/25/19 22:16,"209 Johnson St, San Francisco, CA 94016" +295543,Lightning Charging Cable,2,14.95,11/03/19 15:09,"456 Church St, Los Angeles, CA 90001" +295544,Lightning Charging Cable,1,14.95,11/17/19 14:19,"805 Forest St, San Francisco, CA 94016" +295545,AAA Batteries (4-pack),2,2.99,11/27/19 19:00,"746 Spruce St, Dallas, TX 75001" +295546,Wired Headphones,1,11.99,11/26/19 09:46,"653 Jefferson St, Los Angeles, CA 90001" +295547,USB-C Charging Cable,1,11.95,11/12/19 21:47,"851 4th St, Los Angeles, CA 90001" +295548,Lightning Charging Cable,1,14.95,11/08/19 02:10,"137 Park St, Austin, TX 73301" +295549,AA Batteries (4-pack),1,3.84,11/08/19 21:12,"378 Highland St, San Francisco, CA 94016" +295550,Wired Headphones,1,11.99,11/09/19 13:54,"287 Forest St, Dallas, TX 75001" +295551,AA Batteries (4-pack),1,3.84,11/03/19 10:42,"224 Pine St, San Francisco, CA 94016" +295552,AA Batteries (4-pack),1,3.84,11/14/19 22:05,"289 Ridge St, Dallas, TX 75001" +295553,Wired Headphones,1,11.99,11/03/19 13:40,"968 Adams St, New York City, NY 10001" +295554,Bose SoundSport Headphones,1,99.99,11/14/19 15:00,"612 Highland St, Austin, TX 73301" +295555,Lightning Charging Cable,1,14.95,11/17/19 14:44,"787 Lakeview St, San Francisco, CA 94016" +295556,Lightning Charging Cable,2,14.95,11/17/19 18:28,"756 North St, New York City, NY 10001" +295557,Lightning Charging Cable,1,14.95,11/28/19 11:14,"119 Adams St, Atlanta, GA 30301" +295558,Apple Airpods Headphones,1,150,11/23/19 08:47,"77 1st St, San Francisco, CA 94016" +295559,AA Batteries (4-pack),1,3.84,11/14/19 22:26,"80 Hill St, Portland, ME 04101" +295560,Google Phone,1,600,11/06/19 18:48,"41 11th St, Boston, MA 02215" +295561,Flatscreen TV,1,300,11/15/19 09:10,"593 Jackson St, San Francisco, CA 94016" +295562,Apple Airpods Headphones,1,150,11/18/19 15:20,"934 Jackson St, Dallas, TX 75001" +295563,USB-C Charging Cable,1,11.95,11/14/19 18:28,"528 Willow St, Los Angeles, CA 90001" +295564,Wired Headphones,1,11.99,11/25/19 13:08,"683 6th St, San Francisco, CA 94016" +295565,Flatscreen TV,1,300,11/07/19 19:51,"416 Spruce St, Portland, OR 97035" +295566,27in 4K Gaming Monitor,1,389.99,11/27/19 06:48,"47 13th St, New York City, NY 10001" +295567,AA Batteries (4-pack),1,3.84,11/23/19 17:25,"122 Willow St, Atlanta, GA 30301" +295568,27in FHD Monitor,1,149.99,11/24/19 22:31,"876 Church St, Atlanta, GA 30301" +295569,Bose SoundSport Headphones,1,99.99,11/15/19 18:03,"195 4th St, San Francisco, CA 94016" +295570,USB-C Charging Cable,1,11.95,11/18/19 17:10,"224 Hill St, Boston, MA 02215" +295571,USB-C Charging Cable,1,11.95,11/08/19 13:35,"959 Adams St, San Francisco, CA 94016" +295572,AAA Batteries (4-pack),2,2.99,11/19/19 22:33,"970 Walnut St, Los Angeles, CA 90001" +295573,USB-C Charging Cable,1,11.95,11/10/19 15:57,"690 Cedar St, San Francisco, CA 94016" +295574,AA Batteries (4-pack),1,3.84,11/22/19 09:40,"606 Highland St, New York City, NY 10001" +295575,USB-C Charging Cable,1,11.95,11/17/19 23:54,"659 12th St, San Francisco, CA 94016" +295576,AA Batteries (4-pack),3,3.84,11/07/19 12:52,"377 12th St, Boston, MA 02215" +295577,27in 4K Gaming Monitor,1,389.99,11/28/19 15:50,"945 11th St, San Francisco, CA 94016" +295578,27in 4K Gaming Monitor,1,389.99,11/12/19 21:54,"301 4th St, San Francisco, CA 94016" +295579,20in Monitor,1,109.99,11/18/19 22:09,"869 5th St, Los Angeles, CA 90001" +295580,Flatscreen TV,1,300,11/21/19 21:07,"268 Highland St, San Francisco, CA 94016" +295581,Lightning Charging Cable,1,14.95,11/29/19 22:12,"964 West St, San Francisco, CA 94016" +295582,ThinkPad Laptop,1,999.99,11/10/19 10:53,"581 6th St, New York City, NY 10001" +295583,Bose SoundSport Headphones,1,99.99,11/07/19 12:36,"674 Lakeview St, San Francisco, CA 94016" +295584,AA Batteries (4-pack),2,3.84,11/02/19 19:58,"999 South St, New York City, NY 10001" +295584,27in 4K Gaming Monitor,1,389.99,11/02/19 19:58,"999 South St, New York City, NY 10001" +295585,27in FHD Monitor,1,149.99,11/23/19 10:17,"274 Madison St, Boston, MA 02215" +295586,iPhone,1,700,11/22/19 21:52,"417 14th St, San Francisco, CA 94016" +295587,Apple Airpods Headphones,1,150,11/21/19 12:02,"514 13th St, Los Angeles, CA 90001" +295588,AAA Batteries (4-pack),2,2.99,11/18/19 08:37,"703 Lincoln St, New York City, NY 10001" +295589,Wired Headphones,1,11.99,11/22/19 12:11,"227 1st St, San Francisco, CA 94016" +295590,AAA Batteries (4-pack),3,2.99,11/23/19 16:43,"882 Center St, San Francisco, CA 94016" +295591,Lightning Charging Cable,1,14.95,11/19/19 00:40,"68 Meadow St, Boston, MA 02215" +295592,AAA Batteries (4-pack),1,2.99,11/27/19 13:38,"266 Meadow St, San Francisco, CA 94016" +295593,34in Ultrawide Monitor,1,379.99,11/03/19 10:57,"966 12th St, Austin, TX 73301" +295594,Wired Headphones,1,11.99,11/26/19 20:35,"924 Cherry St, Austin, TX 73301" +295595,Wired Headphones,1,11.99,11/17/19 18:31,"488 Willow St, Seattle, WA 98101" +295596,iPhone,1,700,11/23/19 08:34,"502 Elm St, Portland, OR 97035" +295597,Wired Headphones,1,11.99,11/19/19 08:11,"62 Center St, San Francisco, CA 94016" +295598,Apple Airpods Headphones,1,150,11/02/19 13:28,"566 Dogwood St, San Francisco, CA 94016" +295599,20in Monitor,1,109.99,11/06/19 07:58,"92 Dogwood St, Los Angeles, CA 90001" +295600,Bose SoundSport Headphones,1,99.99,11/12/19 00:05,"784 Johnson St, Los Angeles, CA 90001" +295601,27in FHD Monitor,1,149.99,11/26/19 12:17,"72 2nd St, Boston, MA 02215" +295602,Lightning Charging Cable,1,14.95,11/30/19 14:09,"847 5th St, San Francisco, CA 94016" +295603,Lightning Charging Cable,1,14.95,11/16/19 16:06,"603 River St, Portland, OR 97035" +295604,Lightning Charging Cable,2,14.95,11/23/19 17:01,"832 Park St, Dallas, TX 75001" +295604,USB-C Charging Cable,1,11.95,11/23/19 17:01,"832 Park St, Dallas, TX 75001" +295605,Apple Airpods Headphones,1,150,11/02/19 22:38,"368 Lake St, Boston, MA 02215" +295606,Flatscreen TV,1,300,11/15/19 12:27,"407 Hickory St, San Francisco, CA 94016" +295607,Vareebadd Phone,1,400,11/29/19 19:05,"44 Lakeview St, Boston, MA 02215" +295608,Wired Headphones,1,11.99,11/03/19 16:50,"352 Sunset St, Boston, MA 02215" +295609,AAA Batteries (4-pack),1,2.99,11/10/19 22:16,"351 11th St, New York City, NY 10001" +295610,USB-C Charging Cable,1,11.95,11/30/19 08:32,"114 2nd St, San Francisco, CA 94016" +295611,Macbook Pro Laptop,1,1700,11/11/19 13:31,"345 Jackson St, Portland, ME 04101" +295612,iPhone,1,700,11/02/19 16:44,"484 Washington St, Boston, MA 02215" +295613,AA Batteries (4-pack),1,3.84,11/07/19 10:41,"102 12th St, San Francisco, CA 94016" +295614,Lightning Charging Cable,1,14.95,11/11/19 18:15,"780 River St, Boston, MA 02215" +295615,Wired Headphones,1,11.99,11/05/19 23:27,"592 Dogwood St, San Francisco, CA 94016" +295616,ThinkPad Laptop,1,999.99,11/13/19 19:42,"921 Lake St, Seattle, WA 98101" +295617,34in Ultrawide Monitor,1,379.99,11/04/19 11:58,"623 11th St, Los Angeles, CA 90001" +295618,Apple Airpods Headphones,1,150,11/18/19 14:53,"12 8th St, San Francisco, CA 94016" +295619,27in 4K Gaming Monitor,1,389.99,11/14/19 08:00,"45 4th St, San Francisco, CA 94016" +295620,Lightning Charging Cable,1,14.95,11/13/19 21:35,"956 1st St, San Francisco, CA 94016" +295621,Vareebadd Phone,1,400,11/15/19 16:13,"829 Center St, Boston, MA 02215" +295622,iPhone,1,700,11/08/19 23:29,"444 Maple St, San Francisco, CA 94016" +295622,Lightning Charging Cable,1,14.95,11/08/19 23:29,"444 Maple St, San Francisco, CA 94016" +295623,27in 4K Gaming Monitor,1,389.99,11/29/19 18:58,"842 Willow St, Los Angeles, CA 90001" +295624,Wired Headphones,1,11.99,11/28/19 10:29,"826 Center St, Seattle, WA 98101" +295625,20in Monitor,1,109.99,11/27/19 20:11,"301 Walnut St, Los Angeles, CA 90001" +295626,Apple Airpods Headphones,1,150,11/15/19 10:49,"437 Spruce St, San Francisco, CA 94016" +295627,Bose SoundSport Headphones,1,99.99,11/22/19 11:59,"874 River St, San Francisco, CA 94016" +295628,AA Batteries (4-pack),1,3.84,11/07/19 17:25,"534 Hill St, Portland, OR 97035" +295629,AA Batteries (4-pack),1,3.84,11/11/19 15:05,"180 Sunset St, Atlanta, GA 30301" +295630,iPhone,1,700,11/23/19 19:46,"21 Meadow St, Atlanta, GA 30301" +295631,20in Monitor,1,109.99,11/15/19 17:23,"943 11th St, San Francisco, CA 94016" +295632,Wired Headphones,1,11.99,11/13/19 15:17,"245 Pine St, New York City, NY 10001" +295633,Apple Airpods Headphones,1,150,11/20/19 14:04,"54 River St, Dallas, TX 75001" +295634,USB-C Charging Cable,1,11.95,11/19/19 15:50,"128 Willow St, New York City, NY 10001" +295635,AA Batteries (4-pack),1,3.84,11/30/19 20:54,"249 Main St, San Francisco, CA 94016" +295636,AAA Batteries (4-pack),1,2.99,11/20/19 16:50,"507 Pine St, New York City, NY 10001" +295637,USB-C Charging Cable,1,11.95,11/15/19 17:01,"745 Johnson St, Los Angeles, CA 90001" +295638,AA Batteries (4-pack),2,3.84,11/11/19 07:51,"819 Walnut St, San Francisco, CA 94016" +295639,34in Ultrawide Monitor,1,379.99,11/14/19 17:15,"69 Center St, Boston, MA 02215" +295640,Lightning Charging Cable,1,14.95,11/10/19 00:39,"156 Park St, Boston, MA 02215" +295641,USB-C Charging Cable,1,11.95,11/27/19 11:34,"962 13th St, Dallas, TX 75001" +295642,AAA Batteries (4-pack),1,2.99,11/28/19 12:56,"166 12th St, San Francisco, CA 94016" +295643,Google Phone,1,600,11/26/19 13:52,"508 Main St, Los Angeles, CA 90001" +295643,USB-C Charging Cable,1,11.95,11/26/19 13:52,"508 Main St, Los Angeles, CA 90001" +295644,iPhone,1,700,11/26/19 16:33,"862 Sunset St, San Francisco, CA 94016" +295645,Apple Airpods Headphones,1,150,11/07/19 21:39,"554 Willow St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +295646,Flatscreen TV,1,300,11/28/19 18:26,"783 5th St, San Francisco, CA 94016" +295646,Apple Airpods Headphones,1,150,11/28/19 18:26,"783 5th St, San Francisco, CA 94016" +295647,27in FHD Monitor,1,149.99,11/04/19 23:07,"548 Highland St, Boston, MA 02215" +295648,27in FHD Monitor,1,149.99,11/14/19 19:12,"929 South St, San Francisco, CA 94016" +295649,AA Batteries (4-pack),1,3.84,11/27/19 14:12,"27 Ridge St, New York City, NY 10001" +295650,27in FHD Monitor,1,149.99,11/24/19 17:39,"666 Wilson St, Los Angeles, CA 90001" +295651,Apple Airpods Headphones,1,150,11/02/19 16:12,"517 Spruce St, San Francisco, CA 94016" +295652,Lightning Charging Cable,1,14.95,11/30/19 18:32,"914 Lincoln St, San Francisco, CA 94016" +295653,Bose SoundSport Headphones,1,99.99,11/17/19 00:49,"188 Jackson St, San Francisco, CA 94016" +295654,AA Batteries (4-pack),1,3.84,11/21/19 17:14,"786 Maple St, Los Angeles, CA 90001" +295655,USB-C Charging Cable,1,11.95,11/05/19 11:16,"810 Madison St, Los Angeles, CA 90001" +295656,Bose SoundSport Headphones,1,99.99,11/16/19 11:00,"951 10th St, Dallas, TX 75001" +295657,USB-C Charging Cable,1,11.95,11/21/19 12:57,"705 Madison St, San Francisco, CA 94016" +295658,Wired Headphones,1,11.99,11/25/19 20:53,"603 Madison St, Portland, OR 97035" +295659,USB-C Charging Cable,1,11.95,11/25/19 18:35,"23 Lakeview St, San Francisco, CA 94016" +295660,AA Batteries (4-pack),1,3.84,11/28/19 22:20,"690 Main St, Seattle, WA 98101" +295661,Lightning Charging Cable,1,14.95,11/26/19 21:41,"680 13th St, Seattle, WA 98101" +295662,LG Washing Machine,1,600.0,11/23/19 14:51,"783 Spruce St, New York City, NY 10001" +295663,AA Batteries (4-pack),1,3.84,11/06/19 19:57,"36 Lake St, Dallas, TX 75001" +295664,27in FHD Monitor,1,149.99,11/26/19 19:06,"555 6th St, Boston, MA 02215" +295665,ThinkPad Laptop,1,999.99,11/12/19 01:16,"666 Meadow St, Los Angeles, CA 90001" +295665,USB-C Charging Cable,1,11.95,11/12/19 01:16,"666 Meadow St, Los Angeles, CA 90001" +295666,Apple Airpods Headphones,1,150,11/23/19 20:37,"196 4th St, Portland, OR 97035" +295667,AA Batteries (4-pack),2,3.84,11/21/19 21:10,"900 Wilson St, New York City, NY 10001" +295668,Bose SoundSport Headphones,1,99.99,11/06/19 12:38,"685 Hill St, Seattle, WA 98101" +295669,Bose SoundSport Headphones,1,99.99,11/10/19 11:06,"651 Jackson St, Seattle, WA 98101" +295670,ThinkPad Laptop,1,999.99,11/28/19 11:37,"672 Cherry St, San Francisco, CA 94016" +295671,AAA Batteries (4-pack),2,2.99,11/27/19 20:55,"565 Cedar St, New York City, NY 10001" +295672,27in 4K Gaming Monitor,1,389.99,11/02/19 18:48,"166 6th St, New York City, NY 10001" +295673,27in 4K Gaming Monitor,1,389.99,11/05/19 16:30,"55 Dogwood St, New York City, NY 10001" +295674,Wired Headphones,2,11.99,11/20/19 19:59,"544 Cherry St, New York City, NY 10001" +295675,AAA Batteries (4-pack),2,2.99,11/22/19 14:42,"686 Main St, Los Angeles, CA 90001" +295676,Macbook Pro Laptop,1,1700,11/07/19 21:01,"234 Jackson St, Dallas, TX 75001" +295677,Bose SoundSport Headphones,1,99.99,11/07/19 16:42,"965 Johnson St, Boston, MA 02215" +295678,27in FHD Monitor,1,149.99,11/18/19 15:40,"11 West St, Los Angeles, CA 90001" +295679,27in 4K Gaming Monitor,1,389.99,11/30/19 15:16,"692 Spruce St, San Francisco, CA 94016" +295680,USB-C Charging Cable,1,11.95,11/29/19 10:44,"428 7th St, Portland, ME 04101" +295681,Apple Airpods Headphones,1,150,11/27/19 15:02,"78 4th St, San Francisco, CA 94016" +,,,,, +295682,Bose SoundSport Headphones,1,99.99,11/08/19 19:02,"131 Forest St, Boston, MA 02215" +295683,34in Ultrawide Monitor,1,379.99,11/29/19 11:37,"438 Willow St, San Francisco, CA 94016" +295684,Apple Airpods Headphones,1,150,11/19/19 09:59,"472 Jefferson St, Austin, TX 73301" +295685,AA Batteries (4-pack),1,3.84,11/21/19 16:48,"290 Cedar St, Los Angeles, CA 90001" +295686,Lightning Charging Cable,1,14.95,11/05/19 21:36,"732 Lincoln St, Dallas, TX 75001" +295687,AAA Batteries (4-pack),1,2.99,11/16/19 14:00,"56 Hickory St, Boston, MA 02215" +295688,27in FHD Monitor,1,149.99,11/20/19 16:53,"536 12th St, Los Angeles, CA 90001" +295689,20in Monitor,1,109.99,11/18/19 22:12,"681 Maple St, New York City, NY 10001" +295690,iPhone,1,700,11/07/19 15:48,"480 10th St, Seattle, WA 98101" +295690,Lightning Charging Cable,2,14.95,11/07/19 15:48,"480 10th St, Seattle, WA 98101" +295691,27in FHD Monitor,1,149.99,11/16/19 18:23,"289 Lake St, San Francisco, CA 94016" +295692,27in 4K Gaming Monitor,1,389.99,11/11/19 08:22,"853 Maple St, Austin, TX 73301" +295693,Google Phone,1,600,11/04/19 14:05,"232 12th St, Seattle, WA 98101" +295694,Wired Headphones,1,11.99,11/10/19 15:13,"63 Elm St, Boston, MA 02215" +295695,Lightning Charging Cable,1,14.95,11/11/19 06:12,"387 Washington St, Los Angeles, CA 90001" +295696,27in FHD Monitor,1,149.99,11/07/19 15:29,"776 Cherry St, Austin, TX 73301" +295697,Wired Headphones,1,11.99,11/25/19 14:40,"649 9th St, New York City, NY 10001" +295698,USB-C Charging Cable,1,11.95,11/20/19 08:30,"203 Lincoln St, Austin, TX 73301" +295699,27in FHD Monitor,1,149.99,11/03/19 21:19,"703 West St, New York City, NY 10001" +295700,Macbook Pro Laptop,1,1700,11/28/19 22:52,"293 Hill St, Boston, MA 02215" +295701,AAA Batteries (4-pack),2,2.99,11/03/19 13:59,"800 Maple St, Seattle, WA 98101" +295702,Lightning Charging Cable,1,14.95,11/21/19 10:34,"994 Ridge St, San Francisco, CA 94016" +295703,Lightning Charging Cable,1,14.95,11/04/19 19:35,"974 Cedar St, San Francisco, CA 94016" +295704,iPhone,1,700,11/25/19 12:13,"839 Madison St, San Francisco, CA 94016" +295705,USB-C Charging Cable,1,11.95,11/26/19 00:08,"723 Forest St, San Francisco, CA 94016" +295706,Lightning Charging Cable,1,14.95,11/29/19 10:37,"645 10th St, Portland, OR 97035" +295707,USB-C Charging Cable,1,11.95,11/26/19 00:42,"895 Jackson St, New York City, NY 10001" +295708,USB-C Charging Cable,1,11.95,11/28/19 20:16,"728 Lincoln St, Seattle, WA 98101" +295709,Wired Headphones,1,11.99,11/07/19 17:11,"858 5th St, Dallas, TX 75001" +295710,Lightning Charging Cable,1,14.95,11/24/19 12:28,"216 Johnson St, Los Angeles, CA 90001" +295711,iPhone,1,700,11/06/19 17:03,"394 Adams St, New York City, NY 10001" +295712,27in FHD Monitor,1,149.99,11/06/19 11:19,"437 Jefferson St, Portland, ME 04101" +295713,Lightning Charging Cable,1,14.95,11/07/19 14:38,"160 Highland St, San Francisco, CA 94016" +295714,Bose SoundSport Headphones,1,99.99,11/23/19 10:18,"918 Willow St, Seattle, WA 98101" +295715,Lightning Charging Cable,1,14.95,11/07/19 14:01,"391 Lincoln St, Seattle, WA 98101" +295716,Macbook Pro Laptop,1,1700,11/22/19 02:47,"54 12th St, San Francisco, CA 94016" +295717,Apple Airpods Headphones,1,150,11/21/19 16:12,"58 9th St, Portland, ME 04101" +295718,Macbook Pro Laptop,1,1700,11/20/19 17:10,"233 Madison St, Atlanta, GA 30301" +295719,Apple Airpods Headphones,1,150,11/20/19 22:07,"348 7th St, Atlanta, GA 30301" +295720,Bose SoundSport Headphones,1,99.99,11/23/19 18:53,"715 Johnson St, Seattle, WA 98101" +295721,USB-C Charging Cable,1,11.95,11/18/19 18:18,"938 Adams St, Atlanta, GA 30301" +295722,AAA Batteries (4-pack),4,2.99,11/08/19 07:54,"871 Cedar St, Austin, TX 73301" +295723,Apple Airpods Headphones,1,150,11/15/19 18:36,"569 Center St, Austin, TX 73301" +295724,Lightning Charging Cable,1,14.95,11/27/19 10:11,"102 Pine St, San Francisco, CA 94016" +295725,Wired Headphones,1,11.99,11/10/19 15:35,"16 Dogwood St, Los Angeles, CA 90001" +295726,Lightning Charging Cable,1,14.95,11/04/19 21:59,"353 9th St, Los Angeles, CA 90001" +295726,Bose SoundSport Headphones,1,99.99,11/04/19 21:59,"353 9th St, Los Angeles, CA 90001" +295727,Wired Headphones,1,11.99,11/22/19 11:24,"380 Lake St, Dallas, TX 75001" +295728,USB-C Charging Cable,2,11.95,11/13/19 02:36,"41 River St, San Francisco, CA 94016" +295729,AAA Batteries (4-pack),1,2.99,11/23/19 09:29,"843 Lake St, San Francisco, CA 94016" +295730,AA Batteries (4-pack),1,3.84,11/18/19 17:41,"902 7th St, Austin, TX 73301" +295731,Flatscreen TV,1,300,11/23/19 10:23,"3 Adams St, New York City, NY 10001" +295732,Wired Headphones,1,11.99,11/25/19 13:04,"621 Lincoln St, New York City, NY 10001" +295733,AA Batteries (4-pack),2,3.84,11/23/19 14:52,"992 Elm St, New York City, NY 10001" +295734,AAA Batteries (4-pack),1,2.99,11/20/19 12:35,"213 North St, San Francisco, CA 94016" +295735,AAA Batteries (4-pack),2,2.99,11/06/19 19:12,"938 Park St, Boston, MA 02215" +295736,USB-C Charging Cable,2,11.95,11/16/19 00:15,"698 Spruce St, New York City, NY 10001" +295736,AA Batteries (4-pack),1,3.84,11/16/19 00:15,"698 Spruce St, New York City, NY 10001" +295737,AA Batteries (4-pack),1,3.84,11/24/19 23:39,"468 Center St, San Francisco, CA 94016" +295738,AAA Batteries (4-pack),1,2.99,11/05/19 19:19,"228 Wilson St, Dallas, TX 75001" +295739,AA Batteries (4-pack),1,3.84,11/28/19 07:51,"122 Highland St, Atlanta, GA 30301" +295740,AA Batteries (4-pack),1,3.84,11/26/19 12:04,"801 Park St, Dallas, TX 75001" +295741,AAA Batteries (4-pack),1,2.99,11/11/19 10:18,"10 8th St, New York City, NY 10001" +295742,Lightning Charging Cable,1,14.95,11/01/19 16:56,"795 7th St, New York City, NY 10001" +295743,Lightning Charging Cable,1,14.95,11/03/19 19:41,"940 River St, Dallas, TX 75001" +295744,Lightning Charging Cable,1,14.95,11/05/19 12:56,"306 North St, Seattle, WA 98101" +295745,27in 4K Gaming Monitor,1,389.99,11/25/19 08:39,"329 13th St, Portland, OR 97035" +295746,20in Monitor,1,109.99,11/25/19 11:20,"828 Maple St, San Francisco, CA 94016" +295747,Apple Airpods Headphones,1,150,11/27/19 15:22,"568 1st St, New York City, NY 10001" +295748,AA Batteries (4-pack),3,3.84,11/26/19 09:44,"155 North St, San Francisco, CA 94016" +295749,AA Batteries (4-pack),1,3.84,11/13/19 19:03,"999 Wilson St, Boston, MA 02215" +295750,27in FHD Monitor,1,149.99,11/04/19 17:47,"222 Chestnut St, Atlanta, GA 30301" +295751,AA Batteries (4-pack),1,3.84,11/12/19 11:44,"32 Main St, San Francisco, CA 94016" +295752,iPhone,1,700,11/27/19 14:32,"748 Chestnut St, Boston, MA 02215" +295753,AAA Batteries (4-pack),2,2.99,11/27/19 22:16,"201 Maple St, San Francisco, CA 94016" +295754,AA Batteries (4-pack),2,3.84,11/09/19 01:29,"134 Park St, Los Angeles, CA 90001" +295755,Bose SoundSport Headphones,1,99.99,11/11/19 11:30,"677 Jefferson St, Atlanta, GA 30301" +295756,AA Batteries (4-pack),1,3.84,11/03/19 23:55,"939 Walnut St, Dallas, TX 75001" +295757,Google Phone,1,600,11/21/19 14:44,"605 River St, Dallas, TX 75001" +295758,AAA Batteries (4-pack),1,2.99,11/15/19 18:50,"505 Sunset St, Los Angeles, CA 90001" +295759,Lightning Charging Cable,1,14.95,11/08/19 17:36,"959 Cherry St, San Francisco, CA 94016" +295760,Lightning Charging Cable,1,14.95,11/18/19 00:58,"740 Madison St, San Francisco, CA 94016" +295761,Bose SoundSport Headphones,1,99.99,11/19/19 17:25,"609 North St, San Francisco, CA 94016" +295762,USB-C Charging Cable,1,11.95,11/05/19 07:35,"614 Dogwood St, Atlanta, GA 30301" +295763,USB-C Charging Cable,1,11.95,11/06/19 22:00,"30 13th St, Boston, MA 02215" +295764,iPhone,1,700,11/26/19 13:06,"893 Madison St, Portland, OR 97035" +295765,AA Batteries (4-pack),1,3.84,11/14/19 13:36,"409 12th St, New York City, NY 10001" +295766,Lightning Charging Cable,1,14.95,11/14/19 03:27,"17 Hill St, Boston, MA 02215" +295767,27in FHD Monitor,1,149.99,11/27/19 13:17,"124 Spruce St, Boston, MA 02215" +295768,USB-C Charging Cable,1,11.95,11/12/19 16:37,"921 Cherry St, Los Angeles, CA 90001" +295769,Wired Headphones,1,11.99,11/25/19 12:10,"430 Forest St, Boston, MA 02215" +295770,AAA Batteries (4-pack),1,2.99,11/15/19 16:40,"720 Sunset St, San Francisco, CA 94016" +295771,Bose SoundSport Headphones,1,99.99,11/12/19 14:12,"550 Lincoln St, New York City, NY 10001" +295772,Bose SoundSport Headphones,1,99.99,11/17/19 22:18,"70 Park St, Los Angeles, CA 90001" +295773,34in Ultrawide Monitor,1,379.99,11/26/19 14:04,"500 9th St, Portland, OR 97035" +295774,20in Monitor,1,109.99,11/01/19 19:23,"327 Wilson St, San Francisco, CA 94016" +295775,Apple Airpods Headphones,1,150,11/26/19 14:06,"25 Wilson St, Austin, TX 73301" +295776,Bose SoundSport Headphones,1,99.99,11/12/19 03:07,"176 Hickory St, Dallas, TX 75001" +295777,Lightning Charging Cable,1,14.95,11/17/19 18:21,"847 8th St, Seattle, WA 98101" +295778,AAA Batteries (4-pack),2,2.99,11/30/19 13:45,"449 9th St, Los Angeles, CA 90001" +295779,Wired Headphones,1,11.99,11/10/19 15:18,"248 South St, Boston, MA 02215" +295780,AAA Batteries (4-pack),1,2.99,11/20/19 10:06,"581 Cherry St, San Francisco, CA 94016" +295781,USB-C Charging Cable,1,11.95,11/08/19 20:07,"170 Cedar St, San Francisco, CA 94016" +295782,27in 4K Gaming Monitor,1,389.99,11/01/19 12:36,"844 Lincoln St, New York City, NY 10001" +295783,USB-C Charging Cable,1,11.95,11/19/19 11:28,"273 Forest St, Portland, OR 97035" +295784,AA Batteries (4-pack),1,3.84,11/09/19 13:04,"499 River St, Los Angeles, CA 90001" +295785,Wired Headphones,1,11.99,11/19/19 09:29,"282 1st St, San Francisco, CA 94016" +295786,Lightning Charging Cable,1,14.95,11/05/19 22:05,"369 14th St, Atlanta, GA 30301" +295787,AAA Batteries (4-pack),2,2.99,11/01/19 16:36,"136 Cherry St, Los Angeles, CA 90001" +295788,USB-C Charging Cable,1,11.95,11/28/19 15:19,"278 6th St, Los Angeles, CA 90001" +295789,ThinkPad Laptop,1,999.99,11/20/19 15:38,"66 8th St, Dallas, TX 75001" +295790,Apple Airpods Headphones,1,150,11/30/19 08:46,"338 Dogwood St, New York City, NY 10001" +295791,iPhone,1,700,11/06/19 14:35,"51 Elm St, San Francisco, CA 94016" +295792,Lightning Charging Cable,1,14.95,11/06/19 14:57,"240 12th St, San Francisco, CA 94016" +295793,USB-C Charging Cable,2,11.95,11/08/19 17:03,"631 4th St, San Francisco, CA 94016" +295794,Lightning Charging Cable,1,14.95,11/08/19 23:37,"320 9th St, Atlanta, GA 30301" +295795,USB-C Charging Cable,1,11.95,11/13/19 13:48,"945 5th St, Seattle, WA 98101" +295796,Lightning Charging Cable,1,14.95,11/01/19 22:13,"63 14th St, San Francisco, CA 94016" +295797,AA Batteries (4-pack),1,3.84,11/07/19 08:21,"252 10th St, Los Angeles, CA 90001" +295798,34in Ultrawide Monitor,1,379.99,11/12/19 11:16,"659 Madison St, San Francisco, CA 94016" +295799,AAA Batteries (4-pack),1,2.99,11/04/19 14:35,"635 8th St, Boston, MA 02215" +295800,AA Batteries (4-pack),1,3.84,11/16/19 14:57,"102 2nd St, Dallas, TX 75001" +295801,Flatscreen TV,1,300,11/04/19 20:37,"51 River St, San Francisco, CA 94016" +295802,AAA Batteries (4-pack),4,2.99,11/17/19 20:23,"589 Dogwood St, Portland, OR 97035" +295803,Lightning Charging Cable,1,14.95,11/17/19 12:32,"112 South St, San Francisco, CA 94016" +295804,Apple Airpods Headphones,1,150,11/18/19 21:40,"549 Adams St, San Francisco, CA 94016" +295805,AAA Batteries (4-pack),1,2.99,11/25/19 14:40,"309 Jefferson St, New York City, NY 10001" +295806,27in FHD Monitor,1,149.99,11/02/19 15:11,"816 Washington St, San Francisco, CA 94016" +295807,27in 4K Gaming Monitor,1,389.99,11/20/19 22:14,"14 10th St, Seattle, WA 98101" +295808,Lightning Charging Cable,1,14.95,11/07/19 23:23,"930 Dogwood St, New York City, NY 10001" +295809,Lightning Charging Cable,1,14.95,11/21/19 14:47,"287 7th St, San Francisco, CA 94016" +295810,Apple Airpods Headphones,1,150,11/24/19 05:40,"978 12th St, Portland, OR 97035" +295811,Flatscreen TV,1,300,11/28/19 10:35,"963 1st St, Seattle, WA 98101" +295812,Apple Airpods Headphones,1,150,11/23/19 21:10,"770 Chestnut St, New York City, NY 10001" +295813,Apple Airpods Headphones,1,150,11/29/19 08:17,"976 Washington St, Portland, OR 97035" +295814,AAA Batteries (4-pack),1,2.99,11/30/19 17:26,"151 6th St, San Francisco, CA 94016" +295815,Google Phone,1,600,11/04/19 22:37,"560 Cherry St, Portland, OR 97035" +295816,Lightning Charging Cable,1,14.95,11/30/19 17:58,"937 Maple St, Boston, MA 02215" +295817,AAA Batteries (4-pack),2,2.99,11/23/19 20:35,"418 1st St, Los Angeles, CA 90001" +295818,Bose SoundSport Headphones,1,99.99,11/20/19 09:54,"689 Lake St, Los Angeles, CA 90001" +295819,Wired Headphones,1,11.99,11/17/19 08:37,"205 6th St, Los Angeles, CA 90001" +295820,Bose SoundSport Headphones,1,99.99,11/30/19 19:54,"325 5th St, San Francisco, CA 94016" +295821,AA Batteries (4-pack),1,3.84,11/20/19 12:18,"213 South St, Seattle, WA 98101" +295822,Lightning Charging Cable,1,14.95,11/10/19 11:32,"187 Lincoln St, Portland, OR 97035" +295823,Wired Headphones,1,11.99,11/20/19 22:28,"399 5th St, Atlanta, GA 30301" +295824,Flatscreen TV,1,300,11/29/19 12:03,"253 10th St, New York City, NY 10001" +295825,Flatscreen TV,1,300,11/14/19 15:13,"553 Adams St, Atlanta, GA 30301" +295826,Bose SoundSport Headphones,1,99.99,11/05/19 01:57,"474 Ridge St, San Francisco, CA 94016" +295827,USB-C Charging Cable,2,11.95,11/01/19 20:41,"553 8th St, Atlanta, GA 30301" +295828,Bose SoundSport Headphones,1,99.99,11/30/19 13:26,"277 Willow St, New York City, NY 10001" +295829,27in 4K Gaming Monitor,1,389.99,11/08/19 10:50,"735 12th St, Seattle, WA 98101" +295830,USB-C Charging Cable,1,11.95,11/29/19 18:18,"586 Walnut St, Boston, MA 02215" +295831,Apple Airpods Headphones,1,150,11/11/19 11:38,"20 4th St, Atlanta, GA 30301" +295832,Bose SoundSport Headphones,1,99.99,11/01/19 09:27,"586 10th St, San Francisco, CA 94016" +295833,AA Batteries (4-pack),1,3.84,11/09/19 01:44,"356 Pine St, Boston, MA 02215" +295834,USB-C Charging Cable,1,11.95,11/24/19 09:33,"996 Main St, San Francisco, CA 94016" +295835,Apple Airpods Headphones,1,150,11/05/19 18:45,"344 Lincoln St, Boston, MA 02215" +295836,Google Phone,1,600,11/18/19 00:10,"604 Johnson St, Los Angeles, CA 90001" +295836,USB-C Charging Cable,2,11.95,11/18/19 00:10,"604 Johnson St, Los Angeles, CA 90001" +295837,Lightning Charging Cable,1,14.95,11/18/19 17:41,"957 Meadow St, Boston, MA 02215" +295838,Bose SoundSport Headphones,1,99.99,11/29/19 10:30,"901 11th St, Seattle, WA 98101" +295839,AA Batteries (4-pack),2,3.84,11/05/19 18:44,"625 Center St, Portland, OR 97035" +295840,Lightning Charging Cable,1,14.95,11/26/19 07:30,"570 Main St, San Francisco, CA 94016" +295841,Bose SoundSport Headphones,1,99.99,11/02/19 16:50,"832 Elm St, Portland, OR 97035" +295842,Google Phone,1,600,11/27/19 18:28,"438 South St, San Francisco, CA 94016" +295842,USB-C Charging Cable,1,11.95,11/27/19 18:28,"438 South St, San Francisco, CA 94016" +295843,Bose SoundSport Headphones,1,99.99,11/01/19 12:22,"752 River St, San Francisco, CA 94016" +295844,USB-C Charging Cable,1,11.95,11/23/19 18:10,"999 Center St, Los Angeles, CA 90001" +295845,AAA Batteries (4-pack),1,2.99,11/23/19 17:52,"287 Maple St, Seattle, WA 98101" +295846,Wired Headphones,1,11.99,11/25/19 15:26,"269 4th St, Seattle, WA 98101" +295847,USB-C Charging Cable,1,11.95,11/09/19 10:12,"629 4th St, New York City, NY 10001" +295847,AA Batteries (4-pack),2,3.84,11/09/19 10:12,"629 4th St, New York City, NY 10001" +295848,iPhone,1,700,11/07/19 16:18,"281 Cedar St, Boston, MA 02215" +295848,Lightning Charging Cable,1,14.95,11/07/19 16:18,"281 Cedar St, Boston, MA 02215" +295849,USB-C Charging Cable,1,11.95,11/15/19 21:25,"672 4th St, Boston, MA 02215" +295850,USB-C Charging Cable,1,11.95,11/30/19 19:39,"720 Maple St, Dallas, TX 75001" +295851,Google Phone,1,600,11/10/19 12:23,"9 13th St, Seattle, WA 98101" +295851,Wired Headphones,1,11.99,11/10/19 12:23,"9 13th St, Seattle, WA 98101" +295852,Lightning Charging Cable,1,14.95,11/25/19 21:55,"93 4th St, San Francisco, CA 94016" +295853,AAA Batteries (4-pack),1,2.99,11/08/19 17:19,"194 Hill St, Los Angeles, CA 90001" +295854,Bose SoundSport Headphones,1,99.99,11/21/19 21:53,"870 River St, San Francisco, CA 94016" +295855,Wired Headphones,1,11.99,11/20/19 22:45,"342 Johnson St, Austin, TX 73301" +295856,AAA Batteries (4-pack),1,2.99,11/26/19 20:24,"571 Cherry St, Boston, MA 02215" +295857,Lightning Charging Cable,1,14.95,11/05/19 16:07,"456 Ridge St, San Francisco, CA 94016" +295858,Wired Headphones,1,11.99,11/13/19 14:59,"9 13th St, Seattle, WA 98101" +295858,USB-C Charging Cable,1,11.95,11/13/19 14:59,"9 13th St, Seattle, WA 98101" +295859,ThinkPad Laptop,1,999.99,11/01/19 12:26,"971 Johnson St, Portland, OR 97035" +295860,Lightning Charging Cable,1,14.95,11/06/19 19:37,"65 Adams St, San Francisco, CA 94016" +295861,AA Batteries (4-pack),4,3.84,11/25/19 13:25,"943 Hill St, Boston, MA 02215" +295862,ThinkPad Laptop,1,999.99,11/26/19 19:14,"639 Cedar St, Los Angeles, CA 90001" +295863,USB-C Charging Cable,1,11.95,11/26/19 08:50,"816 Main St, Atlanta, GA 30301" +295864,Apple Airpods Headphones,1,150,11/19/19 20:36,"851 Maple St, San Francisco, CA 94016" +295865,27in FHD Monitor,1,149.99,11/02/19 18:41,"108 6th St, Los Angeles, CA 90001" +295866,Wired Headphones,1,11.99,11/07/19 16:09,"995 8th St, Dallas, TX 75001" +295867,AAA Batteries (4-pack),2,2.99,11/14/19 18:09,"388 5th St, San Francisco, CA 94016" +295868,USB-C Charging Cable,1,11.95,11/10/19 21:35,"517 Dogwood St, Los Angeles, CA 90001" +295869,USB-C Charging Cable,3,11.95,11/08/19 17:57,"526 Sunset St, San Francisco, CA 94016" +295870,Lightning Charging Cable,1,14.95,11/22/19 10:35,"233 North St, Portland, OR 97035" +295871,iPhone,1,700,11/29/19 00:05,"774 1st St, Los Angeles, CA 90001" +295872,Wired Headphones,2,11.99,11/22/19 18:16,"515 Johnson St, Dallas, TX 75001" +295873,AA Batteries (4-pack),1,3.84,11/29/19 23:25,"941 13th St, Boston, MA 02215" +295874,Lightning Charging Cable,1,14.95,11/03/19 21:27,"571 Jackson St, Austin, TX 73301" +295875,Lightning Charging Cable,1,14.95,11/19/19 17:29,"714 2nd St, San Francisco, CA 94016" +295876,Apple Airpods Headphones,1,150,11/23/19 17:43,"938 Spruce St, San Francisco, CA 94016" +295877,USB-C Charging Cable,1,11.95,11/04/19 02:07,"933 Sunset St, San Francisco, CA 94016" +295878,Bose SoundSport Headphones,1,99.99,11/23/19 08:32,"466 Maple St, Portland, OR 97035" +295879,AA Batteries (4-pack),1,3.84,11/12/19 16:37,"11 Madison St, San Francisco, CA 94016" +295880,Bose SoundSport Headphones,1,99.99,11/01/19 19:04,"555 Elm St, San Francisco, CA 94016" +295881,AAA Batteries (4-pack),1,2.99,11/06/19 15:42,"76 Cherry St, Dallas, TX 75001" +295882,Wired Headphones,1,11.99,11/28/19 20:20,"754 Ridge St, San Francisco, CA 94016" +295883,AAA Batteries (4-pack),2,2.99,11/30/19 20:47,"656 Adams St, San Francisco, CA 94016" +295884,USB-C Charging Cable,1,11.95,11/09/19 20:37,"258 Madison St, Los Angeles, CA 90001" +295885,Wired Headphones,1,11.99,11/27/19 08:07,"547 8th St, San Francisco, CA 94016" +295885,USB-C Charging Cable,1,11.95,11/27/19 08:07,"547 8th St, San Francisco, CA 94016" +295886,Bose SoundSport Headphones,1,99.99,11/16/19 11:11,"83 Jackson St, Boston, MA 02215" +295887,Bose SoundSport Headphones,1,99.99,11/14/19 21:05,"404 South St, Seattle, WA 98101" +295888,Wired Headphones,1,11.99,11/23/19 14:05,"210 Jackson St, New York City, NY 10001" +295889,27in FHD Monitor,1,149.99,11/05/19 18:34,"574 11th St, Austin, TX 73301" +295890,Wired Headphones,1,11.99,11/10/19 12:42,"840 13th St, Seattle, WA 98101" +295891,iPhone,1,700,11/12/19 16:32,"371 Church St, San Francisco, CA 94016" +295892,AA Batteries (4-pack),1,3.84,11/20/19 16:59,"841 Main St, Atlanta, GA 30301" +295893,Wired Headphones,1,11.99,11/11/19 15:43,"809 Forest St, San Francisco, CA 94016" +295894,USB-C Charging Cable,1,11.95,11/23/19 13:58,"166 Wilson St, Dallas, TX 75001" +295895,iPhone,1,700,11/04/19 11:40,"679 Main St, Los Angeles, CA 90001" +295896,Wired Headphones,1,11.99,11/11/19 11:29,"340 Meadow St, Los Angeles, CA 90001" +295897,USB-C Charging Cable,1,11.95,11/28/19 17:30,"980 14th St, Boston, MA 02215" +295898,AA Batteries (4-pack),1,3.84,11/07/19 18:15,"206 5th St, Los Angeles, CA 90001" +295899,iPhone,1,700,11/27/19 21:34,"911 Lake St, Dallas, TX 75001" +295900,Flatscreen TV,1,300,11/22/19 15:26,"163 Cedar St, Los Angeles, CA 90001" +295901,Bose SoundSport Headphones,1,99.99,11/29/19 19:35,"534 Dogwood St, Portland, OR 97035" +295902,Bose SoundSport Headphones,1,99.99,11/22/19 10:38,"276 Main St, San Francisco, CA 94016" +295903,USB-C Charging Cable,1,11.95,11/19/19 16:20,"302 5th St, San Francisco, CA 94016" +295904,Lightning Charging Cable,1,14.95,11/18/19 01:23,"387 Pine St, Dallas, TX 75001" +295905,Wired Headphones,1,11.99,11/19/19 17:50,"98 Hickory St, San Francisco, CA 94016" +295906,Wired Headphones,1,11.99,11/21/19 08:27,"204 Johnson St, Seattle, WA 98101" +295907,AA Batteries (4-pack),1,3.84,11/27/19 13:37,"660 Madison St, Dallas, TX 75001" +295908,Macbook Pro Laptop,1,1700,11/16/19 18:06,"583 Jefferson St, Boston, MA 02215" +295909,AAA Batteries (4-pack),1,2.99,11/20/19 12:15,"976 Willow St, San Francisco, CA 94016" +295910,Apple Airpods Headphones,1,150,11/22/19 13:48,"715 13th St, Los Angeles, CA 90001" +295911,USB-C Charging Cable,1,11.95,11/10/19 17:08,"586 Highland St, Los Angeles, CA 90001" +295912,AA Batteries (4-pack),3,3.84,11/18/19 01:19,"635 Willow St, Los Angeles, CA 90001" +295913,27in FHD Monitor,1,149.99,11/13/19 01:08,"472 10th St, Los Angeles, CA 90001" +295914,AAA Batteries (4-pack),5,2.99,11/15/19 20:32,"948 6th St, San Francisco, CA 94016" +295915,Bose SoundSport Headphones,1,99.99,11/13/19 09:41,"858 Washington St, Los Angeles, CA 90001" +295916,Wired Headphones,1,11.99,11/11/19 22:43,"587 Jefferson St, Portland, OR 97035" +295917,USB-C Charging Cable,1,11.95,11/15/19 15:55,"152 5th St, Seattle, WA 98101" +295918,USB-C Charging Cable,1,11.95,12/01/19 01:29,"701 8th St, Austin, TX 73301" +295919,AAA Batteries (4-pack),3,2.99,11/16/19 19:05,"314 Pine St, Los Angeles, CA 90001" +295920,27in FHD Monitor,1,149.99,11/23/19 12:21,"889 Wilson St, San Francisco, CA 94016" +295921,27in FHD Monitor,1,149.99,11/14/19 12:04,"473 5th St, Los Angeles, CA 90001" +295922,USB-C Charging Cable,1,11.95,11/18/19 12:54,"603 7th St, Los Angeles, CA 90001" +295923,Macbook Pro Laptop,1,1700,11/29/19 18:56,"659 Park St, Atlanta, GA 30301" +295924,USB-C Charging Cable,2,11.95,11/03/19 20:28,"329 Meadow St, Austin, TX 73301" +295925,27in 4K Gaming Monitor,1,389.99,11/08/19 11:43,"134 Walnut St, Los Angeles, CA 90001" +295926,Apple Airpods Headphones,1,150,11/15/19 18:11,"642 12th St, San Francisco, CA 94016" +295927,Bose SoundSport Headphones,1,99.99,11/21/19 17:38,"626 Hickory St, San Francisco, CA 94016" +295928,27in 4K Gaming Monitor,1,389.99,11/19/19 08:48,"747 Cedar St, Seattle, WA 98101" +295929,AAA Batteries (4-pack),2,2.99,11/14/19 20:24,"290 10th St, New York City, NY 10001" +295930,AA Batteries (4-pack),1,3.84,11/09/19 21:33,"194 Madison St, New York City, NY 10001" +295931,Bose SoundSport Headphones,2,99.99,11/09/19 17:31,"60 Elm St, San Francisco, CA 94016" +295932,AA Batteries (4-pack),1,3.84,11/11/19 07:41,"980 12th St, Dallas, TX 75001" +295933,Apple Airpods Headphones,1,150,11/30/19 17:47,"777 12th St, San Francisco, CA 94016" +295934,Bose SoundSport Headphones,1,99.99,11/22/19 12:52,"70 4th St, Austin, TX 73301" +295935,Bose SoundSport Headphones,1,99.99,11/23/19 09:17,"175 Elm St, Portland, OR 97035" +295936,Lightning Charging Cable,1,14.95,11/17/19 23:24,"383 Spruce St, New York City, NY 10001" +295937,USB-C Charging Cable,1,11.95,11/18/19 07:51,"682 Jackson St, Dallas, TX 75001" +295938,AAA Batteries (4-pack),1,2.99,11/09/19 21:53,"723 6th St, New York City, NY 10001" +295939,Wired Headphones,1,11.99,11/25/19 23:55,"194 Chestnut St, Los Angeles, CA 90001" +295940,Bose SoundSport Headphones,1,99.99,11/12/19 21:41,"248 Willow St, New York City, NY 10001" +295941,AA Batteries (4-pack),1,3.84,11/01/19 18:18,"348 Wilson St, Los Angeles, CA 90001" +295942,iPhone,1,700,11/05/19 20:27,"8 Dogwood St, New York City, NY 10001" +295942,Wired Headphones,1,11.99,11/05/19 20:27,"8 Dogwood St, New York City, NY 10001" +295943,LG Washing Machine,1,600.0,11/13/19 17:43,"136 14th St, Portland, OR 97035" +295944,Lightning Charging Cable,1,14.95,11/03/19 19:55,"495 6th St, Dallas, TX 75001" +295945,iPhone,1,700,11/14/19 12:45,"202 11th St, Atlanta, GA 30301" +295946,27in FHD Monitor,1,149.99,11/06/19 15:32,"18 Lakeview St, Atlanta, GA 30301" +295947,Apple Airpods Headphones,1,150,11/21/19 11:40,"35 6th St, Los Angeles, CA 90001" +295948,Lightning Charging Cable,1,14.95,11/20/19 13:16,"436 10th St, San Francisco, CA 94016" +295949,Wired Headphones,1,11.99,11/19/19 09:10,"724 11th St, San Francisco, CA 94016" +295950,USB-C Charging Cable,1,11.95,11/20/19 09:38,"615 Ridge St, San Francisco, CA 94016" +295951,Wired Headphones,1,11.99,11/01/19 12:14,"977 Cedar St, Seattle, WA 98101" +295952,Bose SoundSport Headphones,1,99.99,11/26/19 15:48,"601 North St, San Francisco, CA 94016" +295953,Macbook Pro Laptop,1,1700,11/24/19 19:56,"625 10th St, Seattle, WA 98101" +295954,27in 4K Gaming Monitor,1,389.99,11/12/19 23:30,"875 Washington St, Seattle, WA 98101" +295955,iPhone,1,700,11/09/19 17:36,"252 2nd St, New York City, NY 10001" +295956,Macbook Pro Laptop,1,1700,11/20/19 14:11,"495 Spruce St, Portland, OR 97035" +295957,AA Batteries (4-pack),1,3.84,11/28/19 20:16,"338 Forest St, Dallas, TX 75001" +295958,Bose SoundSport Headphones,1,99.99,11/19/19 18:26,"213 Main St, Austin, TX 73301" +295959,ThinkPad Laptop,1,999.99,11/17/19 11:22,"701 North St, New York City, NY 10001" +295960,USB-C Charging Cable,1,11.95,11/14/19 12:46,"661 1st St, Los Angeles, CA 90001" +295961,Lightning Charging Cable,1,14.95,11/26/19 18:19,"688 Ridge St, San Francisco, CA 94016" +295962,27in 4K Gaming Monitor,1,389.99,11/22/19 11:36,"135 Cedar St, Austin, TX 73301" +295963,Lightning Charging Cable,1,14.95,11/22/19 10:35,"450 Center St, Portland, OR 97035" +295964,Apple Airpods Headphones,1,150,11/18/19 10:56,"557 Highland St, San Francisco, CA 94016" +295965,USB-C Charging Cable,1,11.95,11/27/19 12:19,"457 10th St, New York City, NY 10001" +295966,Wired Headphones,1,11.99,11/10/19 23:11,"647 14th St, San Francisco, CA 94016" +295967,AAA Batteries (4-pack),1,2.99,11/11/19 22:29,"172 Spruce St, Boston, MA 02215" +295968,Bose SoundSport Headphones,1,99.99,11/28/19 16:45,"133 River St, San Francisco, CA 94016" +295969,Lightning Charging Cable,2,14.95,11/24/19 15:04,"473 Church St, Austin, TX 73301" +295970,USB-C Charging Cable,1,11.95,11/27/19 10:31,"826 Meadow St, San Francisco, CA 94016" +295971,Bose SoundSport Headphones,1,99.99,11/15/19 09:46,"597 Willow St, San Francisco, CA 94016" +295972,34in Ultrawide Monitor,1,379.99,11/22/19 10:55,"682 Adams St, Los Angeles, CA 90001" +295973,Wired Headphones,1,11.99,11/08/19 19:39,"102 Meadow St, San Francisco, CA 94016" +295974,AAA Batteries (4-pack),2,2.99,11/29/19 10:13,"519 Walnut St, San Francisco, CA 94016" +295975,Wired Headphones,1,11.99,11/14/19 05:02,"69 West St, San Francisco, CA 94016" +295976,AA Batteries (4-pack),1,3.84,11/20/19 19:11,"530 4th St, Austin, TX 73301" +295977,Bose SoundSport Headphones,1,99.99,11/16/19 23:13,"991 Pine St, San Francisco, CA 94016" +295978,AA Batteries (4-pack),1,3.84,11/03/19 06:23,"605 10th St, Seattle, WA 98101" +295979,Lightning Charging Cable,1,14.95,11/12/19 16:09,"968 Elm St, Boston, MA 02215" +295980,USB-C Charging Cable,1,11.95,11/12/19 17:37,"466 Dogwood St, San Francisco, CA 94016" +295981,AAA Batteries (4-pack),2,2.99,11/13/19 10:26,"239 Dogwood St, Austin, TX 73301" +295982,USB-C Charging Cable,1,11.95,11/02/19 16:44,"668 10th St, Los Angeles, CA 90001" +295983,AAA Batteries (4-pack),1,2.99,11/15/19 18:44,"594 8th St, New York City, NY 10001" +295984,Macbook Pro Laptop,1,1700,11/17/19 10:30,"74 Washington St, New York City, NY 10001" +295985,Bose SoundSport Headphones,1,99.99,11/13/19 12:21,"818 8th St, Dallas, TX 75001" +295986,AAA Batteries (4-pack),4,2.99,11/17/19 17:03,"656 Dogwood St, Boston, MA 02215" +,,,,, +295987,Lightning Charging Cable,1,14.95,11/27/19 20:29,"909 Forest St, Dallas, TX 75001" +295988,USB-C Charging Cable,1,11.95,11/16/19 15:56,"410 Willow St, Atlanta, GA 30301" +295989,27in FHD Monitor,1,149.99,11/03/19 17:35,"889 Hill St, Atlanta, GA 30301" +295990,Apple Airpods Headphones,1,150,11/02/19 07:38,"607 Hill St, New York City, NY 10001" +295991,USB-C Charging Cable,1,11.95,11/30/19 10:23,"576 Willow St, New York City, NY 10001" +295992,Bose SoundSport Headphones,1,99.99,11/15/19 21:49,"325 Elm St, Los Angeles, CA 90001" +295993,Bose SoundSport Headphones,1,99.99,11/20/19 12:43,"456 Walnut St, Seattle, WA 98101" +295994,Lightning Charging Cable,1,14.95,11/05/19 10:05,"182 9th St, Seattle, WA 98101" +295995,USB-C Charging Cable,1,11.95,11/08/19 12:55,"17 10th St, Atlanta, GA 30301" +295996,USB-C Charging Cable,1,11.95,11/24/19 12:26,"116 1st St, Los Angeles, CA 90001" +295997,iPhone,1,700,11/06/19 18:55,"192 Cedar St, Portland, OR 97035" +295998,Lightning Charging Cable,1,14.95,11/18/19 21:15,"701 7th St, Boston, MA 02215" +295999,Apple Airpods Headphones,1,150,11/18/19 20:05,"774 4th St, New York City, NY 10001" +296000,Wired Headphones,1,11.99,11/01/19 12:31,"817 5th St, Los Angeles, CA 90001" +296001,Google Phone,1,600,11/22/19 20:33,"976 Sunset St, New York City, NY 10001" +296002,USB-C Charging Cable,1,11.95,11/20/19 12:52,"569 Lakeview St, San Francisco, CA 94016" +296003,Lightning Charging Cable,1,14.95,11/04/19 05:03,"666 12th St, San Francisco, CA 94016" +296004,USB-C Charging Cable,1,11.95,11/15/19 22:31,"840 12th St, San Francisco, CA 94016" +296005,27in FHD Monitor,1,149.99,11/10/19 22:56,"716 Highland St, Atlanta, GA 30301" +296006,Wired Headphones,1,11.99,11/11/19 07:27,"697 Jackson St, Boston, MA 02215" +296007,20in Monitor,1,109.99,11/08/19 06:58,"181 7th St, Austin, TX 73301" +296008,AAA Batteries (4-pack),2,2.99,11/16/19 16:54,"228 Spruce St, Los Angeles, CA 90001" +296009,20in Monitor,1,109.99,11/03/19 16:34,"319 Johnson St, San Francisco, CA 94016" +296009,Bose SoundSport Headphones,1,99.99,11/03/19 16:34,"319 Johnson St, San Francisco, CA 94016" +296010,Lightning Charging Cable,1,14.95,11/07/19 12:43,"918 7th St, Atlanta, GA 30301" +296011,AA Batteries (4-pack),1,3.84,11/14/19 11:18,"913 Meadow St, San Francisco, CA 94016" +,,,,, +296012,Google Phone,1,600,11/14/19 14:39,"56 Pine St, San Francisco, CA 94016" +296013,Wired Headphones,2,11.99,11/24/19 11:09,"394 River St, New York City, NY 10001" +296014,AAA Batteries (4-pack),1,2.99,11/07/19 12:20,"442 4th St, Atlanta, GA 30301" +296015,AA Batteries (4-pack),1,3.84,11/08/19 08:38,"416 West St, Portland, OR 97035" +296016,Bose SoundSport Headphones,1,99.99,11/21/19 15:12,"684 Jackson St, Los Angeles, CA 90001" +296017,Wired Headphones,1,11.99,11/18/19 20:27,"16 Church St, Boston, MA 02215" +296018,USB-C Charging Cable,1,11.95,11/11/19 12:39,"120 10th St, Los Angeles, CA 90001" +296019,Flatscreen TV,1,300,11/18/19 09:42,"857 14th St, Los Angeles, CA 90001" +296020,Macbook Pro Laptop,1,1700,11/05/19 10:01,"671 River St, New York City, NY 10001" +296021,USB-C Charging Cable,1,11.95,11/21/19 15:42,"946 Cherry St, New York City, NY 10001" +296022,AAA Batteries (4-pack),5,2.99,11/07/19 08:21,"497 Cedar St, Los Angeles, CA 90001" +296023,Lightning Charging Cable,1,14.95,11/26/19 19:21,"175 North St, New York City, NY 10001" +296024,USB-C Charging Cable,1,11.95,11/05/19 10:49,"919 Ridge St, San Francisco, CA 94016" +296025,Lightning Charging Cable,1,14.95,11/23/19 09:26,"636 Ridge St, Boston, MA 02215" +296026,USB-C Charging Cable,1,11.95,11/18/19 10:54,"457 1st St, Austin, TX 73301" +296027,Lightning Charging Cable,1,14.95,11/01/19 17:55,"573 Ridge St, San Francisco, CA 94016" +296028,Lightning Charging Cable,1,14.95,11/27/19 23:21,"696 10th St, Los Angeles, CA 90001" +296029,Lightning Charging Cable,1,14.95,11/29/19 17:44,"523 Lake St, New York City, NY 10001" +296030,USB-C Charging Cable,1,11.95,11/19/19 22:04,"718 10th St, New York City, NY 10001" +,,,,, +296031,iPhone,1,700,11/20/19 15:39,"473 Willow St, San Francisco, CA 94016" +296032,27in FHD Monitor,1,149.99,11/26/19 09:12,"744 13th St, Boston, MA 02215" +296033,AAA Batteries (4-pack),2,2.99,11/25/19 12:21,"424 Johnson St, Boston, MA 02215" +296034,AA Batteries (4-pack),1,3.84,11/24/19 19:31,"389 7th St, Atlanta, GA 30301" +296035,Apple Airpods Headphones,1,150,11/16/19 18:59,"173 River St, Seattle, WA 98101" +296036,Wired Headphones,1,11.99,11/08/19 18:01,"578 Jackson St, Los Angeles, CA 90001" +296037,Vareebadd Phone,1,400,11/23/19 22:32,"387 Hickory St, Boston, MA 02215" +296038,Lightning Charging Cable,1,14.95,11/10/19 10:51,"549 4th St, San Francisco, CA 94016" +296039,iPhone,1,700,11/01/19 12:25,"320 8th St, Atlanta, GA 30301" +296040,AAA Batteries (4-pack),1,2.99,11/19/19 14:09,"439 14th St, Los Angeles, CA 90001" +296041,USB-C Charging Cable,1,11.95,11/17/19 00:40,"312 Madison St, Dallas, TX 75001" +296042,Wired Headphones,1,11.99,11/06/19 12:33,"806 4th St, San Francisco, CA 94016" +296043,34in Ultrawide Monitor,1,379.99,11/15/19 15:24,"686 12th St, Portland, OR 97035" +296044,Wired Headphones,1,11.99,11/28/19 10:37,"285 Hickory St, Los Angeles, CA 90001" +296045,iPhone,1,700,11/25/19 14:24,"730 Sunset St, San Francisco, CA 94016" +296046,27in FHD Monitor,1,149.99,11/19/19 15:08,"684 Washington St, Dallas, TX 75001" +296047,Apple Airpods Headphones,1,150,11/25/19 20:04,"125 Johnson St, Los Angeles, CA 90001" +296048,AAA Batteries (4-pack),2,2.99,11/14/19 15:51,"860 Main St, New York City, NY 10001" +296049,USB-C Charging Cable,1,11.95,11/03/19 16:59,"326 Lakeview St, San Francisco, CA 94016" +296050,Bose SoundSport Headphones,1,99.99,11/18/19 12:07,"366 14th St, San Francisco, CA 94016" +296051,Flatscreen TV,1,300,11/07/19 20:10,"941 Jackson St, Dallas, TX 75001" +296052,iPhone,1,700,11/25/19 01:31,"945 Dogwood St, Dallas, TX 75001" +296053,Bose SoundSport Headphones,1,99.99,11/22/19 22:58,"753 Lincoln St, San Francisco, CA 94016" +296054,Bose SoundSport Headphones,1,99.99,11/27/19 11:12,"350 Main St, San Francisco, CA 94016" +296055,Apple Airpods Headphones,1,150,11/12/19 18:21,"294 Walnut St, New York City, NY 10001" +296056,34in Ultrawide Monitor,1,379.99,11/01/19 16:06,"484 Sunset St, San Francisco, CA 94016" +296057,Wired Headphones,1,11.99,11/29/19 13:56,"742 Jefferson St, Austin, TX 73301" +296058,LG Dryer,1,600.0,11/12/19 07:53,"770 River St, Los Angeles, CA 90001" +296059,iPhone,1,700,11/24/19 18:02,"699 Ridge St, Austin, TX 73301" +296060,AA Batteries (4-pack),1,3.84,11/05/19 08:13,"394 9th St, Los Angeles, CA 90001" +296061,USB-C Charging Cable,1,11.95,11/19/19 15:11,"255 Johnson St, Seattle, WA 98101" +296062,Wired Headphones,1,11.99,11/11/19 14:20,"454 9th St, Austin, TX 73301" +296063,Bose SoundSport Headphones,1,99.99,11/04/19 14:13,"749 Highland St, Dallas, TX 75001" +296064,Bose SoundSport Headphones,1,99.99,11/02/19 18:01,"676 Highland St, Los Angeles, CA 90001" +296065,Lightning Charging Cable,1,14.95,11/26/19 15:24,"785 10th St, Los Angeles, CA 90001" +296066,Lightning Charging Cable,1,14.95,11/17/19 20:13,"89 South St, Austin, TX 73301" +296067,Vareebadd Phone,1,400,11/02/19 10:50,"417 Washington St, Portland, OR 97035" +296068,AA Batteries (4-pack),1,3.84,11/03/19 09:50,"160 Cherry St, Seattle, WA 98101" +296069,Bose SoundSport Headphones,1,99.99,11/28/19 07:00,"904 Lakeview St, Atlanta, GA 30301" +296070,AA Batteries (4-pack),1,3.84,11/28/19 21:10,"680 Jefferson St, Los Angeles, CA 90001" +296071,20in Monitor,1,109.99,11/01/19 21:45,"175 Pine St, San Francisco, CA 94016" +296072,Vareebadd Phone,1,400,11/20/19 06:02,"589 Adams St, Portland, OR 97035" +296072,Wired Headphones,1,11.99,11/20/19 06:02,"589 Adams St, Portland, OR 97035" +296073,Google Phone,1,600,11/27/19 15:39,"714 Cedar St, Portland, OR 97035" +296073,AA Batteries (4-pack),1,3.84,11/27/19 15:39,"714 Cedar St, Portland, OR 97035" +296074,Apple Airpods Headphones,1,150,11/23/19 12:59,"971 Adams St, Boston, MA 02215" +296075,Lightning Charging Cable,1,14.95,11/13/19 10:50,"677 Madison St, Dallas, TX 75001" +296076,Flatscreen TV,1,300,11/07/19 10:14,"84 8th St, Seattle, WA 98101" +296077,Lightning Charging Cable,1,14.95,11/04/19 22:59,"923 Washington St, Los Angeles, CA 90001" +296078,Flatscreen TV,1,300,11/04/19 09:39,"807 Church St, San Francisco, CA 94016" +296079,USB-C Charging Cable,1,11.95,11/14/19 11:37,"774 Highland St, Seattle, WA 98101" +296080,Wired Headphones,1,11.99,11/10/19 21:15,"832 Hill St, San Francisco, CA 94016" +296081,Apple Airpods Headphones,1,150,11/19/19 20:11,"305 Willow St, San Francisco, CA 94016" +296082,Flatscreen TV,1,300,11/06/19 09:55,"779 2nd St, San Francisco, CA 94016" +296083,Lightning Charging Cable,1,14.95,11/16/19 18:19,"432 Elm St, Boston, MA 02215" +296084,Lightning Charging Cable,1,14.95,11/10/19 22:49,"21 Chestnut St, Dallas, TX 75001" +296085,USB-C Charging Cable,1,11.95,11/28/19 11:30,"830 South St, Los Angeles, CA 90001" +296086,Flatscreen TV,1,300,11/26/19 10:13,"673 10th St, Boston, MA 02215" +296087,Wired Headphones,1,11.99,11/01/19 15:04,"989 6th St, San Francisco, CA 94016" +296088,AAA Batteries (4-pack),1,2.99,11/29/19 16:11,"229 Church St, New York City, NY 10001" +296089,20in Monitor,1,109.99,11/11/19 20:38,"177 13th St, San Francisco, CA 94016" +296090,iPhone,1,700,11/23/19 21:45,"410 Spruce St, San Francisco, CA 94016" +296091,iPhone,1,700,11/15/19 16:52,"749 Highland St, New York City, NY 10001" +296092,27in FHD Monitor,1,149.99,11/21/19 21:16,"108 Chestnut St, San Francisco, CA 94016" +296093,20in Monitor,1,109.99,11/10/19 12:00,"52 Meadow St, Los Angeles, CA 90001" +296094,Bose SoundSport Headphones,1,99.99,11/24/19 13:00,"719 Church St, Atlanta, GA 30301" +296095,AA Batteries (4-pack),1,3.84,11/07/19 17:15,"356 Spruce St, San Francisco, CA 94016" +296096,Google Phone,1,600,11/02/19 10:44,"827 2nd St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +296097,Bose SoundSport Headphones,1,99.99,11/13/19 21:17,"565 Johnson St, San Francisco, CA 94016" +296098,Lightning Charging Cable,1,14.95,11/19/19 21:23,"462 Forest St, Austin, TX 73301" +296099,Wired Headphones,1,11.99,11/05/19 19:18,"756 Ridge St, New York City, NY 10001" +296100,AAA Batteries (4-pack),1,2.99,11/06/19 12:24,"637 1st St, San Francisco, CA 94016" +296101,Lightning Charging Cable,1,14.95,11/21/19 18:49,"89 Willow St, Los Angeles, CA 90001" +296102,USB-C Charging Cable,1,11.95,11/23/19 13:15,"80 Center St, Seattle, WA 98101" +296103,Bose SoundSport Headphones,1,99.99,11/25/19 19:30,"901 Jackson St, Dallas, TX 75001" +296104,27in FHD Monitor,1,149.99,11/05/19 18:11,"711 Jefferson St, Seattle, WA 98101" +296105,Bose SoundSport Headphones,1,99.99,11/08/19 23:25,"47 Hill St, San Francisco, CA 94016" +296106,USB-C Charging Cable,1,11.95,11/16/19 11:39,"979 South St, New York City, NY 10001" +296107,Google Phone,1,600,11/22/19 08:58,"682 Meadow St, Seattle, WA 98101" +296108,ThinkPad Laptop,1,999.99,11/02/19 12:50,"85 Elm St, Portland, OR 97035" +296109,AAA Batteries (4-pack),1,2.99,11/27/19 16:59,"3 5th St, San Francisco, CA 94016" +296110,Lightning Charging Cable,1,14.95,11/02/19 16:49,"991 Sunset St, San Francisco, CA 94016" +296111,Macbook Pro Laptop,1,1700,11/12/19 21:02,"874 Elm St, Los Angeles, CA 90001" +296112,Lightning Charging Cable,1,14.95,11/11/19 16:07,"78 2nd St, Los Angeles, CA 90001" +296113,Google Phone,1,600,11/12/19 19:26,"148 Cedar St, Portland, OR 97035" +296113,USB-C Charging Cable,1,11.95,11/12/19 19:26,"148 Cedar St, Portland, OR 97035" +296114,Bose SoundSport Headphones,1,99.99,11/26/19 11:36,"214 River St, Los Angeles, CA 90001" +296115,iPhone,1,700,11/03/19 13:47,"348 Lincoln St, New York City, NY 10001" +296116,34in Ultrawide Monitor,1,379.99,11/29/19 09:27,"607 10th St, Los Angeles, CA 90001" +296117,iPhone,1,700,11/23/19 10:40,"88 Jefferson St, San Francisco, CA 94016" +296118,Bose SoundSport Headphones,1,99.99,11/19/19 16:20,"943 9th St, Portland, ME 04101" +296119,AAA Batteries (4-pack),1,2.99,11/06/19 20:17,"74 North St, New York City, NY 10001" +,,,,, +296120,LG Washing Machine,1,600.0,11/14/19 13:44,"767 Lake St, Seattle, WA 98101" +296121,Lightning Charging Cable,1,14.95,11/25/19 18:22,"314 10th St, Portland, OR 97035" +296122,iPhone,1,700,11/06/19 08:09,"826 12th St, Atlanta, GA 30301" +296123,20in Monitor,1,109.99,11/12/19 08:57,"371 Maple St, Austin, TX 73301" +296124,Bose SoundSport Headphones,1,99.99,11/13/19 21:13,"742 Dogwood St, Boston, MA 02215" +296125,Bose SoundSport Headphones,1,99.99,11/05/19 15:17,"609 Jackson St, San Francisco, CA 94016" +296126,Google Phone,1,600,11/19/19 12:24,"296 Pine St, New York City, NY 10001" +296127,Lightning Charging Cable,1,14.95,11/11/19 09:56,"80 Lincoln St, Los Angeles, CA 90001" +296128,Macbook Pro Laptop,1,1700,11/18/19 15:32,"929 North St, Los Angeles, CA 90001" +296129,Bose SoundSport Headphones,1,99.99,11/23/19 19:19,"830 Lake St, Dallas, TX 75001" +296130,Flatscreen TV,1,300,11/27/19 11:21,"907 Lake St, San Francisco, CA 94016" +296131,AAA Batteries (4-pack),1,2.99,11/15/19 18:13,"597 Spruce St, Seattle, WA 98101" +296131,Lightning Charging Cable,1,14.95,11/15/19 18:13,"597 Spruce St, Seattle, WA 98101" +296132,USB-C Charging Cable,1,11.95,11/29/19 13:06,"565 Meadow St, Boston, MA 02215" +296133,USB-C Charging Cable,1,11.95,11/17/19 13:41,"158 Lake St, Seattle, WA 98101" +296134,Apple Airpods Headphones,1,150,11/02/19 16:33,"799 13th St, Atlanta, GA 30301" +296135,iPhone,1,700,11/20/19 21:26,"747 Willow St, San Francisco, CA 94016" +296135,Lightning Charging Cable,1,14.95,11/20/19 21:26,"747 Willow St, San Francisco, CA 94016" +296136,AAA Batteries (4-pack),1,2.99,11/29/19 23:48,"683 Jefferson St, Seattle, WA 98101" +296137,Lightning Charging Cable,1,14.95,11/08/19 15:21,"300 Lincoln St, Los Angeles, CA 90001" +296138,Lightning Charging Cable,1,14.95,11/27/19 15:56,"321 2nd St, Dallas, TX 75001" +296139,AA Batteries (4-pack),2,3.84,11/04/19 17:16,"227 Highland St, Portland, OR 97035" +296140,iPhone,1,700,11/29/19 08:22,"956 Sunset St, San Francisco, CA 94016" +296141,USB-C Charging Cable,1,11.95,11/16/19 11:06,"360 13th St, New York City, NY 10001" +296142,Bose SoundSport Headphones,1,99.99,11/21/19 21:15,"474 Pine St, Boston, MA 02215" +296143,Lightning Charging Cable,1,14.95,11/09/19 09:56,"632 Pine St, Boston, MA 02215" +296144,iPhone,1,700,11/04/19 22:47,"156 2nd St, Boston, MA 02215" +296144,Lightning Charging Cable,2,14.95,11/04/19 22:47,"156 2nd St, Boston, MA 02215" +296145,Bose SoundSport Headphones,1,99.99,11/02/19 19:56,"429 Maple St, Boston, MA 02215" +296146,Macbook Pro Laptop,1,1700,11/15/19 17:49,"35 Lakeview St, Dallas, TX 75001" +296147,Wired Headphones,1,11.99,11/29/19 20:54,"245 Hill St, Boston, MA 02215" +296148,Flatscreen TV,1,300,11/25/19 10:06,"479 Adams St, New York City, NY 10001" +296149,Wired Headphones,1,11.99,11/04/19 00:51,"355 9th St, Boston, MA 02215" +296150,20in Monitor,1,109.99,11/07/19 14:08,"3 Elm St, Boston, MA 02215" +296151,AAA Batteries (4-pack),1,2.99,11/23/19 19:03,"348 North St, San Francisco, CA 94016" +296152,AAA Batteries (4-pack),4,2.99,11/09/19 08:38,"213 Center St, Austin, TX 73301" +296153,20in Monitor,2,109.99,11/07/19 15:10,"963 Walnut St, Los Angeles, CA 90001" +296154,AAA Batteries (4-pack),1,2.99,11/23/19 02:43,"97 Highland St, Austin, TX 73301" +296154,Lightning Charging Cable,1,14.95,11/23/19 02:43,"97 Highland St, Austin, TX 73301" +296155,27in FHD Monitor,1,149.99,11/26/19 23:29,"96 Willow St, Dallas, TX 75001" +296156,Bose SoundSport Headphones,1,99.99,11/24/19 14:32,"900 River St, San Francisco, CA 94016" +296157,27in FHD Monitor,1,149.99,11/26/19 19:43,"820 9th St, Atlanta, GA 30301" +296158,Lightning Charging Cable,1,14.95,11/15/19 08:34,"644 Sunset St, New York City, NY 10001" +296159,27in FHD Monitor,1,149.99,11/17/19 17:00,"271 Chestnut St, New York City, NY 10001" +296160,27in 4K Gaming Monitor,1,389.99,11/03/19 10:50,"417 Spruce St, San Francisco, CA 94016" +296161,USB-C Charging Cable,1,11.95,11/03/19 18:51,"366 Cherry St, Los Angeles, CA 90001" +296162,Bose SoundSport Headphones,1,99.99,11/07/19 19:10,"838 Pine St, Los Angeles, CA 90001" +296163,AAA Batteries (4-pack),3,2.99,11/17/19 10:19,"299 12th St, Los Angeles, CA 90001" +296164,Bose SoundSport Headphones,1,99.99,11/13/19 19:21,"718 Jefferson St, Los Angeles, CA 90001" +296165,AAA Batteries (4-pack),1,2.99,11/08/19 21:26,"949 Ridge St, San Francisco, CA 94016" +296166,AA Batteries (4-pack),3,3.84,11/16/19 11:27,"701 South St, Boston, MA 02215" +296167,Lightning Charging Cable,1,14.95,11/11/19 21:38,"502 Highland St, Los Angeles, CA 90001" +296168,AAA Batteries (4-pack),2,2.99,11/08/19 16:42,"856 1st St, New York City, NY 10001" +296169,ThinkPad Laptop,1,999.99,11/10/19 11:40,"488 Jackson St, Los Angeles, CA 90001" +296170,Wired Headphones,1,11.99,11/23/19 11:05,"50 Spruce St, Portland, OR 97035" +296171,USB-C Charging Cable,1,11.95,11/24/19 08:17,"490 11th St, San Francisco, CA 94016" +296172,AAA Batteries (4-pack),1,2.99,11/24/19 14:57,"467 14th St, Dallas, TX 75001" +296173,AAA Batteries (4-pack),1,2.99,11/15/19 12:29,"776 8th St, Los Angeles, CA 90001" +296174,USB-C Charging Cable,1,11.95,11/05/19 01:03,"507 Jackson St, Los Angeles, CA 90001" +296175,Lightning Charging Cable,1,14.95,11/06/19 20:56,"207 Main St, San Francisco, CA 94016" +296176,Macbook Pro Laptop,1,1700,11/24/19 19:45,"740 Maple St, San Francisco, CA 94016" +296177,Wired Headphones,1,11.99,11/28/19 10:49,"183 Walnut St, Atlanta, GA 30301" +296178,34in Ultrawide Monitor,1,379.99,11/03/19 19:08,"104 Willow St, Boston, MA 02215" +296179,USB-C Charging Cable,1,11.95,11/13/19 22:34,"514 Madison St, Boston, MA 02215" +296180,AAA Batteries (4-pack),2,2.99,11/15/19 20:13,"285 6th St, San Francisco, CA 94016" +296181,USB-C Charging Cable,1,11.95,11/16/19 08:22,"565 Willow St, Boston, MA 02215" +296182,AAA Batteries (4-pack),1,2.99,11/01/19 19:36,"97 Church St, Los Angeles, CA 90001" +296183,AAA Batteries (4-pack),2,2.99,11/06/19 21:18,"659 Chestnut St, New York City, NY 10001" +296184,20in Monitor,1,109.99,11/28/19 20:03,"434 Main St, Dallas, TX 75001" +296185,AAA Batteries (4-pack),1,2.99,11/17/19 19:37,"273 Park St, San Francisco, CA 94016" +296186,USB-C Charging Cable,1,11.95,11/12/19 21:01,"442 Willow St, Austin, TX 73301" +296187,Wired Headphones,1,11.99,11/28/19 09:24,"117 Park St, Boston, MA 02215" +296188,Wired Headphones,1,11.99,11/22/19 10:06,"837 7th St, San Francisco, CA 94016" +296189,AA Batteries (4-pack),2,3.84,11/13/19 14:43,"671 Walnut St, Los Angeles, CA 90001" +296190,AA Batteries (4-pack),2,3.84,11/04/19 20:53,"179 11th St, Atlanta, GA 30301" +296191,Lightning Charging Cable,1,14.95,11/16/19 12:16,"71 Pine St, New York City, NY 10001" +296192,AA Batteries (4-pack),1,3.84,11/09/19 21:49,"825 5th St, Atlanta, GA 30301" +296193,Apple Airpods Headphones,1,150,11/22/19 11:30,"805 Highland St, Dallas, TX 75001" +296194,ThinkPad Laptop,1,999.99,11/30/19 13:54,"837 11th St, San Francisco, CA 94016" +296195,27in FHD Monitor,1,149.99,11/25/19 20:00,"135 Cherry St, New York City, NY 10001" +296196,USB-C Charging Cable,1,11.95,11/27/19 19:13,"912 Cedar St, Seattle, WA 98101" +296197,AAA Batteries (4-pack),1,2.99,11/21/19 17:59,"688 Washington St, Atlanta, GA 30301" +296198,ThinkPad Laptop,1,999.99,11/27/19 19:17,"622 Jefferson St, San Francisco, CA 94016" +296199,Macbook Pro Laptop,1,1700,11/07/19 11:33,"251 Willow St, Boston, MA 02215" +296200,Apple Airpods Headphones,1,150,11/23/19 15:59,"333 7th St, Boston, MA 02215" +296201,Apple Airpods Headphones,1,150,11/28/19 09:31,"861 13th St, Atlanta, GA 30301" +296202,AA Batteries (4-pack),1,3.84,11/30/19 14:45,"336 Hill St, San Francisco, CA 94016" +296203,Wired Headphones,1,11.99,11/11/19 12:20,"688 Chestnut St, San Francisco, CA 94016" +296204,USB-C Charging Cable,1,11.95,11/10/19 09:22,"737 North St, Boston, MA 02215" +296205,34in Ultrawide Monitor,1,379.99,11/02/19 15:17,"351 North St, Seattle, WA 98101" +296206,Wired Headphones,1,11.99,11/13/19 15:53,"196 Church St, New York City, NY 10001" +296207,Apple Airpods Headphones,1,150,11/12/19 16:14,"255 Jefferson St, San Francisco, CA 94016" +296208,iPhone,1,700,11/29/19 10:29,"283 Pine St, San Francisco, CA 94016" +296209,AA Batteries (4-pack),1,3.84,11/17/19 13:16,"266 Ridge St, Portland, OR 97035" +296210,AAA Batteries (4-pack),1,2.99,11/23/19 17:08,"984 Spruce St, San Francisco, CA 94016" +296211,Wired Headphones,1,11.99,11/25/19 23:54,"456 Lincoln St, Los Angeles, CA 90001" +296212,iPhone,1,700,11/20/19 18:33,"321 Lakeview St, Los Angeles, CA 90001" +296213,Lightning Charging Cable,1,14.95,11/13/19 19:23,"999 Highland St, San Francisco, CA 94016" +296214,AA Batteries (4-pack),3,3.84,11/28/19 11:53,"510 Lincoln St, Los Angeles, CA 90001" +296215,Bose SoundSport Headphones,1,99.99,11/20/19 18:02,"282 Pine St, New York City, NY 10001" +296216,34in Ultrawide Monitor,1,379.99,11/01/19 13:29,"661 Dogwood St, Los Angeles, CA 90001" +296217,27in FHD Monitor,1,149.99,11/30/19 07:01,"731 13th St, Seattle, WA 98101" +296218,AAA Batteries (4-pack),1,2.99,11/21/19 23:00,"794 Pine St, Austin, TX 73301" +296219,AA Batteries (4-pack),1,3.84,11/12/19 21:16,"758 North St, Los Angeles, CA 90001" +296220,LG Dryer,1,600.0,11/26/19 13:21,"407 Maple St, San Francisco, CA 94016" +296221,AA Batteries (4-pack),2,3.84,11/17/19 09:51,"624 11th St, Los Angeles, CA 90001" +296222,Google Phone,1,600,11/02/19 17:11,"566 Main St, New York City, NY 10001" +296223,Wired Headphones,2,11.99,11/20/19 12:31,"388 River St, Portland, OR 97035" +296224,Lightning Charging Cable,1,14.95,11/18/19 23:32,"903 7th St, Portland, OR 97035" +296225,iPhone,1,700,11/05/19 01:35,"690 Lincoln St, San Francisco, CA 94016" +296226,Lightning Charging Cable,1,14.95,11/21/19 00:26,"646 Madison St, San Francisco, CA 94016" +296227,iPhone,1,700,11/10/19 10:17,"272 Walnut St, Atlanta, GA 30301" +296227,Lightning Charging Cable,1,14.95,11/10/19 10:17,"272 Walnut St, Atlanta, GA 30301" +296228,27in FHD Monitor,1,149.99,11/27/19 13:11,"134 13th St, San Francisco, CA 94016" +296229,USB-C Charging Cable,1,11.95,11/26/19 18:55,"496 14th St, New York City, NY 10001" +296230,AA Batteries (4-pack),1,3.84,11/17/19 18:13,"732 Meadow St, Dallas, TX 75001" +296231,Wired Headphones,1,11.99,11/12/19 09:35,"12 North St, Los Angeles, CA 90001" +296232,AAA Batteries (4-pack),1,2.99,11/27/19 16:15,"549 Wilson St, Los Angeles, CA 90001" +296233,USB-C Charging Cable,1,11.95,11/14/19 16:34,"427 West St, Atlanta, GA 30301" +296234,AAA Batteries (4-pack),1,2.99,11/13/19 19:06,"739 Jackson St, Seattle, WA 98101" +296235,Lightning Charging Cable,1,14.95,11/04/19 17:52,"904 Cherry St, San Francisco, CA 94016" +296236,Bose SoundSport Headphones,1,99.99,11/12/19 19:07,"629 West St, New York City, NY 10001" +296237,AAA Batteries (4-pack),1,2.99,11/16/19 11:24,"575 Washington St, Los Angeles, CA 90001" +296238,Lightning Charging Cable,1,14.95,11/23/19 13:02,"490 Lincoln St, Boston, MA 02215" +296239,AAA Batteries (4-pack),2,2.99,11/20/19 18:36,"301 Highland St, San Francisco, CA 94016" +296240,Vareebadd Phone,1,400,11/17/19 12:38,"547 9th St, Seattle, WA 98101" +296241,AA Batteries (4-pack),1,3.84,11/22/19 13:45,"297 Park St, Los Angeles, CA 90001" +296242,USB-C Charging Cable,1,11.95,11/27/19 20:22,"857 River St, Los Angeles, CA 90001" +296243,20in Monitor,1,109.99,11/13/19 15:05,"458 West St, Boston, MA 02215" +296244,34in Ultrawide Monitor,1,379.99,11/04/19 20:55,"997 Sunset St, Portland, OR 97035" +296245,AA Batteries (4-pack),1,3.84,11/16/19 21:41,"41 Dogwood St, Portland, OR 97035" +296246,USB-C Charging Cable,2,11.95,11/12/19 21:25,"821 North St, San Francisco, CA 94016" +296247,AA Batteries (4-pack),3,3.84,11/24/19 12:25,"395 Ridge St, Los Angeles, CA 90001" +296248,AAA Batteries (4-pack),2,2.99,11/18/19 12:12,"218 Lincoln St, Atlanta, GA 30301" +296249,AA Batteries (4-pack),1,3.84,11/06/19 13:39,"972 14th St, Boston, MA 02215" +296250,34in Ultrawide Monitor,1,379.99,11/10/19 19:44,"170 Spruce St, New York City, NY 10001" +296251,iPhone,1,700,11/01/19 11:05,"179 Highland St, Portland, OR 97035" +296252,Apple Airpods Headphones,1,150,11/21/19 19:39,"522 River St, San Francisco, CA 94016" +296253,Flatscreen TV,1,300,11/27/19 23:30,"606 1st St, Seattle, WA 98101" +296254,34in Ultrawide Monitor,1,379.99,11/14/19 10:34,"794 14th St, Los Angeles, CA 90001" +296255,Bose SoundSport Headphones,1,99.99,11/09/19 20:25,"684 1st St, New York City, NY 10001" +296256,USB-C Charging Cable,1,11.95,11/22/19 22:16,"468 Jackson St, Los Angeles, CA 90001" +296257,Bose SoundSport Headphones,1,99.99,11/23/19 13:04,"652 14th St, Los Angeles, CA 90001" +296258,AA Batteries (4-pack),1,3.84,11/20/19 12:28,"442 Willow St, New York City, NY 10001" +296259,Bose SoundSport Headphones,1,99.99,11/20/19 15:29,"439 Washington St, Seattle, WA 98101" +296260,Google Phone,1,600,11/03/19 14:25,"257 Willow St, San Francisco, CA 94016" +296261,Apple Airpods Headphones,1,150,11/28/19 15:24,"808 Jefferson St, Los Angeles, CA 90001" +296262,iPhone,1,700,11/13/19 22:49,"486 Elm St, Dallas, TX 75001" +296263,USB-C Charging Cable,1,11.95,11/30/19 08:59,"34 Madison St, San Francisco, CA 94016" +296264,Apple Airpods Headphones,1,150,11/26/19 16:48,"788 Cherry St, New York City, NY 10001" +296265,AA Batteries (4-pack),1,3.84,11/13/19 13:47,"158 8th St, Los Angeles, CA 90001" +296266,Bose SoundSport Headphones,1,99.99,11/09/19 13:29,"148 Maple St, Los Angeles, CA 90001" +296267,Google Phone,1,600,11/30/19 07:05,"904 Sunset St, Dallas, TX 75001" +296268,27in 4K Gaming Monitor,1,389.99,11/19/19 16:58,"290 North St, Atlanta, GA 30301" +296269,AAA Batteries (4-pack),4,2.99,11/25/19 13:26,"408 Maple St, Dallas, TX 75001" +296270,AAA Batteries (4-pack),3,2.99,11/28/19 19:31,"572 Chestnut St, New York City, NY 10001" +296271,Flatscreen TV,1,300,11/18/19 13:48,"522 Lake St, San Francisco, CA 94016" +296272,AA Batteries (4-pack),4,3.84,11/14/19 15:18,"151 Wilson St, New York City, NY 10001" +296273,USB-C Charging Cable,1,11.95,11/07/19 19:15,"567 Jefferson St, Atlanta, GA 30301" +296274,Bose SoundSport Headphones,1,99.99,11/18/19 00:04,"346 Ridge St, Boston, MA 02215" +296275,ThinkPad Laptop,1,999.99,11/07/19 17:35,"709 1st St, San Francisco, CA 94016" +296276,USB-C Charging Cable,1,11.95,11/21/19 14:07,"232 5th St, Los Angeles, CA 90001" +296277,Wired Headphones,1,11.99,11/26/19 06:19,"694 Forest St, Austin, TX 73301" +296278,AA Batteries (4-pack),1,3.84,11/08/19 23:41,"781 River St, New York City, NY 10001" +296279,27in 4K Gaming Monitor,1,389.99,11/14/19 10:21,"639 North St, Seattle, WA 98101" +296280,AAA Batteries (4-pack),1,2.99,11/23/19 08:33,"605 Chestnut St, Seattle, WA 98101" +296281,Bose SoundSport Headphones,1,99.99,11/08/19 22:38,"572 South St, Dallas, TX 75001" +296282,27in 4K Gaming Monitor,1,389.99,11/03/19 18:12,"269 Jefferson St, Seattle, WA 98101" +296283,USB-C Charging Cable,2,11.95,11/18/19 23:22,"903 Lake St, San Francisco, CA 94016" +296284,Apple Airpods Headphones,1,150,11/20/19 02:36,"784 Sunset St, New York City, NY 10001" +296285,Lightning Charging Cable,1,14.95,11/11/19 21:07,"495 2nd St, San Francisco, CA 94016" +296286,Wired Headphones,1,11.99,11/21/19 07:57,"596 Main St, New York City, NY 10001" +296287,Lightning Charging Cable,1,14.95,11/13/19 13:16,"715 West St, Seattle, WA 98101" +296288,USB-C Charging Cable,1,11.95,11/07/19 23:01,"925 Adams St, Los Angeles, CA 90001" +296289,Wired Headphones,1,11.99,11/28/19 18:56,"612 Church St, Dallas, TX 75001" +296290,AA Batteries (4-pack),1,3.84,11/11/19 00:37,"517 Meadow St, Los Angeles, CA 90001" +296291,27in 4K Gaming Monitor,1,389.99,11/13/19 10:08,"293 5th St, Los Angeles, CA 90001" +296292,Google Phone,1,600,11/05/19 10:37,"984 Center St, Seattle, WA 98101" +296292,USB-C Charging Cable,1,11.95,11/05/19 10:37,"984 Center St, Seattle, WA 98101" +296293,Bose SoundSport Headphones,1,99.99,11/26/19 15:54,"61 Wilson St, Los Angeles, CA 90001" +296293,USB-C Charging Cable,1,11.95,11/26/19 15:54,"61 Wilson St, Los Angeles, CA 90001" +296294,AA Batteries (4-pack),1,3.84,11/20/19 23:40,"193 Johnson St, Austin, TX 73301" +296295,AAA Batteries (4-pack),1,2.99,11/25/19 08:47,"270 6th St, New York City, NY 10001" +296296,USB-C Charging Cable,1,11.95,11/25/19 19:03,"110 10th St, Los Angeles, CA 90001" +296297,iPhone,1,700,11/04/19 17:43,"859 14th St, Los Angeles, CA 90001" +296298,ThinkPad Laptop,1,999.99,11/27/19 22:19,"3 Pine St, San Francisco, CA 94016" +296299,USB-C Charging Cable,1,11.95,11/29/19 13:16,"594 14th St, Los Angeles, CA 90001" +296300,USB-C Charging Cable,1,11.95,11/28/19 11:25,"768 Center St, Austin, TX 73301" +296301,AA Batteries (4-pack),1,3.84,11/23/19 22:17,"974 4th St, San Francisco, CA 94016" +296302,27in FHD Monitor,1,149.99,11/28/19 20:04,"583 Cherry St, New York City, NY 10001" +296303,27in FHD Monitor,1,149.99,11/02/19 15:42,"217 Cedar St, Atlanta, GA 30301" +296304,Lightning Charging Cable,1,14.95,11/07/19 13:05,"932 13th St, Atlanta, GA 30301" +296305,USB-C Charging Cable,1,11.95,11/28/19 20:44,"43 Hickory St, Los Angeles, CA 90001" +296306,AA Batteries (4-pack),1,3.84,11/17/19 14:03,"205 Elm St, San Francisco, CA 94016" +296307,USB-C Charging Cable,1,11.95,11/08/19 14:21,"695 Washington St, New York City, NY 10001" +296308,Lightning Charging Cable,1,14.95,11/14/19 20:17,"369 Highland St, Austin, TX 73301" +296309,iPhone,1,700,11/12/19 11:40,"146 North St, Los Angeles, CA 90001" +296309,Lightning Charging Cable,1,14.95,11/12/19 11:40,"146 North St, Los Angeles, CA 90001" +296310,Wired Headphones,1,11.99,11/26/19 08:04,"136 Lincoln St, Seattle, WA 98101" +296311,Lightning Charging Cable,1,14.95,11/01/19 13:14,"970 Maple St, Austin, TX 73301" +296312,ThinkPad Laptop,1,999.99,11/24/19 21:29,"190 5th St, Boston, MA 02215" +296313,iPhone,1,700,11/27/19 07:08,"171 Church St, Boston, MA 02215" +296314,Lightning Charging Cable,1,14.95,11/17/19 15:57,"329 Maple St, San Francisco, CA 94016" +296315,AAA Batteries (4-pack),3,2.99,11/09/19 16:49,"818 11th St, New York City, NY 10001" +296316,Lightning Charging Cable,1,14.95,11/01/19 18:42,"335 Maple St, Los Angeles, CA 90001" +296317,Wired Headphones,1,11.99,11/10/19 09:30,"220 Willow St, Austin, TX 73301" +296318,Flatscreen TV,1,300,11/27/19 20:45,"46 Center St, Boston, MA 02215" +296319,Lightning Charging Cable,1,14.95,11/08/19 22:08,"902 Center St, Austin, TX 73301" +296320,Apple Airpods Headphones,1,150,11/30/19 18:25,"713 Lakeview St, Portland, OR 97035" +296321,iPhone,1,700,11/07/19 11:45,"608 5th St, Los Angeles, CA 90001" +296322,Apple Airpods Headphones,1,150,11/20/19 22:11,"403 Wilson St, Dallas, TX 75001" +296323,Bose SoundSport Headphones,1,99.99,11/22/19 16:26,"685 River St, Dallas, TX 75001" +296324,Wired Headphones,1,11.99,11/26/19 18:33,"312 Meadow St, San Francisco, CA 94016" +296325,USB-C Charging Cable,1,11.95,11/16/19 08:00,"126 5th St, Atlanta, GA 30301" +296326,27in FHD Monitor,1,149.99,11/16/19 20:14,"474 North St, Boston, MA 02215" +296327,USB-C Charging Cable,1,11.95,11/10/19 17:35,"824 Park St, Los Angeles, CA 90001" +296328,AAA Batteries (4-pack),1,2.99,11/13/19 12:15,"242 7th St, San Francisco, CA 94016" +296329,USB-C Charging Cable,1,11.95,11/21/19 21:33,"893 12th St, Dallas, TX 75001" +296330,Wired Headphones,1,11.99,11/21/19 19:39,"958 Walnut St, Boston, MA 02215" +296331,Bose SoundSport Headphones,1,99.99,11/15/19 22:18,"307 Cedar St, San Francisco, CA 94016" +296332,AA Batteries (4-pack),3,3.84,11/23/19 19:01,"642 4th St, Boston, MA 02215" +296333,Wired Headphones,1,11.99,11/11/19 00:21,"360 Jefferson St, San Francisco, CA 94016" +296334,AAA Batteries (4-pack),1,2.99,11/16/19 20:28,"573 6th St, New York City, NY 10001" +296335,AAA Batteries (4-pack),1,2.99,11/29/19 09:26,"199 Madison St, Los Angeles, CA 90001" +296336,Flatscreen TV,1,300,11/01/19 20:43,"691 Spruce St, New York City, NY 10001" +296337,AAA Batteries (4-pack),1,2.99,11/12/19 22:17,"686 1st St, Seattle, WA 98101" +296338,20in Monitor,1,109.99,11/04/19 00:30,"384 4th St, Dallas, TX 75001" +296339,27in 4K Gaming Monitor,1,389.99,11/17/19 21:53,"174 Chestnut St, San Francisco, CA 94016" +296340,USB-C Charging Cable,1,11.95,11/08/19 17:24,"735 Elm St, San Francisco, CA 94016" +296341,iPhone,1,700,11/02/19 16:34,"968 Pine St, Austin, TX 73301" +296342,Wired Headphones,1,11.99,11/30/19 20:45,"233 Lake St, Dallas, TX 75001" +296343,Flatscreen TV,1,300,11/12/19 15:19,"500 4th St, Los Angeles, CA 90001" +296344,Wired Headphones,1,11.99,11/07/19 06:33,"122 Cherry St, San Francisco, CA 94016" +296345,USB-C Charging Cable,1,11.95,11/24/19 02:59,"493 4th St, Dallas, TX 75001" +296346,Lightning Charging Cable,1,14.95,11/10/19 02:22,"652 Walnut St, Atlanta, GA 30301" +296347,Lightning Charging Cable,1,14.95,11/27/19 16:47,"70 Highland St, New York City, NY 10001" +296348,Lightning Charging Cable,2,14.95,11/03/19 19:58,"966 14th St, San Francisco, CA 94016" +296349,27in FHD Monitor,1,149.99,11/22/19 19:36,"406 Lakeview St, Atlanta, GA 30301" +296350,Wired Headphones,1,11.99,11/09/19 16:21,"662 Cherry St, New York City, NY 10001" +296351,Apple Airpods Headphones,1,150,11/02/19 14:11,"527 7th St, San Francisco, CA 94016" +296352,USB-C Charging Cable,3,11.95,11/19/19 16:12,"667 9th St, Dallas, TX 75001" +296353,LG Washing Machine,1,600.0,11/23/19 21:26,"325 Ridge St, Seattle, WA 98101" +296354,AAA Batteries (4-pack),5,2.99,11/28/19 22:54,"722 Lincoln St, San Francisco, CA 94016" +296355,AA Batteries (4-pack),2,3.84,11/09/19 14:03,"854 Madison St, Seattle, WA 98101" +296356,Lightning Charging Cable,1,14.95,11/01/19 20:26,"701 Elm St, Atlanta, GA 30301" +296357,20in Monitor,1,109.99,11/21/19 00:30,"953 South St, San Francisco, CA 94016" +296358,Apple Airpods Headphones,1,150,11/04/19 14:08,"627 West St, San Francisco, CA 94016" +296359,Lightning Charging Cable,1,14.95,11/14/19 19:53,"369 Forest St, Seattle, WA 98101" +296360,Lightning Charging Cable,1,14.95,11/13/19 08:06,"945 Cedar St, Seattle, WA 98101" +296361,USB-C Charging Cable,1,11.95,11/30/19 01:34,"929 Center St, Portland, OR 97035" +296362,iPhone,1,700,11/04/19 13:05,"661 2nd St, New York City, NY 10001" +296363,AA Batteries (4-pack),1,3.84,11/28/19 19:17,"188 7th St, San Francisco, CA 94016" +296364,ThinkPad Laptop,1,999.99,11/19/19 13:37,"889 Highland St, Los Angeles, CA 90001" +296365,AAA Batteries (4-pack),2,2.99,11/16/19 15:54,"737 13th St, New York City, NY 10001" +296366,AAA Batteries (4-pack),1,2.99,11/26/19 13:18,"320 Washington St, Los Angeles, CA 90001" +296367,Bose SoundSport Headphones,1,99.99,11/08/19 17:42,"212 Hill St, Los Angeles, CA 90001" +296368,Apple Airpods Headphones,1,150,11/20/19 03:10,"896 Ridge St, San Francisco, CA 94016" +296369,AAA Batteries (4-pack),1,2.99,11/19/19 09:34,"725 12th St, San Francisco, CA 94016" +296370,Apple Airpods Headphones,1,150,11/22/19 03:06,"579 Jefferson St, New York City, NY 10001" +296371,Flatscreen TV,1,300,11/03/19 22:38,"651 Adams St, Boston, MA 02215" +296372,Wired Headphones,1,11.99,11/24/19 20:19,"712 Jefferson St, New York City, NY 10001" +296373,27in FHD Monitor,1,149.99,11/01/19 09:36,"140 Madison St, Los Angeles, CA 90001" +296374,AA Batteries (4-pack),2,3.84,11/26/19 00:13,"994 Jefferson St, Atlanta, GA 30301" +296375,AAA Batteries (4-pack),1,2.99,11/23/19 22:03,"777 10th St, Los Angeles, CA 90001" +296376,USB-C Charging Cable,1,11.95,11/05/19 22:07,"648 14th St, San Francisco, CA 94016" +296377,27in FHD Monitor,1,149.99,11/11/19 01:50,"372 8th St, San Francisco, CA 94016" +296378,Macbook Pro Laptop,1,1700,11/07/19 15:10,"396 1st St, New York City, NY 10001" +296379,34in Ultrawide Monitor,1,379.99,11/09/19 10:16,"365 Park St, Austin, TX 73301" +296380,Vareebadd Phone,1,400,11/25/19 14:27,"986 Madison St, Portland, OR 97035" +296381,34in Ultrawide Monitor,1,379.99,11/14/19 12:09,"358 Lake St, New York City, NY 10001" +296382,Bose SoundSport Headphones,1,99.99,11/14/19 22:46,"514 Center St, Portland, OR 97035" +296383,USB-C Charging Cable,1,11.95,11/05/19 12:12,"417 North St, New York City, NY 10001" +296384,AA Batteries (4-pack),1,3.84,11/08/19 17:30,"563 Jackson St, Los Angeles, CA 90001" +296385,iPhone,1,700,11/18/19 13:31,"356 4th St, Boston, MA 02215" +296385,Lightning Charging Cable,1,14.95,11/18/19 13:31,"356 4th St, Boston, MA 02215" +296386,Apple Airpods Headphones,1,150,11/07/19 15:44,"536 West St, Seattle, WA 98101" +296387,Macbook Pro Laptop,1,1700,11/04/19 18:22,"997 Center St, Seattle, WA 98101" +296388,AAA Batteries (4-pack),1,2.99,11/09/19 18:20,"710 Church St, Portland, ME 04101" +296389,iPhone,1,700,11/19/19 08:48,"339 Elm St, Los Angeles, CA 90001" +296389,Lightning Charging Cable,1,14.95,11/19/19 08:48,"339 Elm St, Los Angeles, CA 90001" +296390,Google Phone,1,600,11/15/19 09:13,"349 Park St, San Francisco, CA 94016" +296391,USB-C Charging Cable,1,11.95,11/21/19 16:08,"297 Cherry St, Atlanta, GA 30301" +296392,AA Batteries (4-pack),1,3.84,11/23/19 11:11,"72 Chestnut St, Seattle, WA 98101" +296393,Vareebadd Phone,1,400,11/08/19 19:06,"749 8th St, Dallas, TX 75001" +296394,AA Batteries (4-pack),1,3.84,11/24/19 04:25,"870 Jefferson St, Atlanta, GA 30301" +296395,iPhone,1,700,11/27/19 10:06,"344 Cherry St, San Francisco, CA 94016" +296396,Lightning Charging Cable,1,14.95,11/15/19 18:36,"533 Johnson St, Atlanta, GA 30301" +296397,Google Phone,1,600,11/12/19 21:22,"175 Ridge St, Atlanta, GA 30301" +296398,34in Ultrawide Monitor,1,379.99,11/15/19 23:08,"690 1st St, San Francisco, CA 94016" +296399,LG Dryer,1,600.0,11/17/19 21:52,"936 12th St, San Francisco, CA 94016" +296400,iPhone,1,700,11/02/19 20:33,"429 7th St, Los Angeles, CA 90001" +296401,AA Batteries (4-pack),1,3.84,11/10/19 16:51,"564 14th St, Seattle, WA 98101" +296402,Lightning Charging Cable,1,14.95,11/17/19 10:32,"860 Willow St, Atlanta, GA 30301" +296403,Lightning Charging Cable,1,14.95,11/22/19 02:04,"125 South St, Seattle, WA 98101" +296404,Lightning Charging Cable,1,14.95,11/10/19 22:23,"22 Adams St, Boston, MA 02215" +296405,Lightning Charging Cable,1,14.95,11/20/19 19:13,"859 Madison St, Los Angeles, CA 90001" +296406,AA Batteries (4-pack),1,3.84,11/30/19 22:05,"526 Cedar St, Boston, MA 02215" +296407,ThinkPad Laptop,1,999.99,11/11/19 18:58,"365 Hill St, Dallas, TX 75001" +296408,ThinkPad Laptop,1,999.99,11/15/19 08:31,"661 North St, Portland, OR 97035" +296409,AA Batteries (4-pack),2,3.84,11/19/19 15:27,"652 8th St, Austin, TX 73301" +296410,34in Ultrawide Monitor,1,379.99,11/07/19 18:12,"735 South St, San Francisco, CA 94016" +296411,AA Batteries (4-pack),1,3.84,11/17/19 17:38,"990 Church St, San Francisco, CA 94016" +296412,Macbook Pro Laptop,1,1700,11/01/19 02:59,"919 Center St, San Francisco, CA 94016" +296413,Google Phone,1,600,11/02/19 11:39,"410 South St, Boston, MA 02215" +296414,AA Batteries (4-pack),1,3.84,11/29/19 18:09,"741 1st St, San Francisco, CA 94016" +296415,34in Ultrawide Monitor,1,379.99,11/07/19 02:57,"127 North St, Boston, MA 02215" +296416,Macbook Pro Laptop,1,1700,11/10/19 21:37,"925 Hickory St, Austin, TX 73301" +296417,AAA Batteries (4-pack),2,2.99,11/26/19 11:49,"984 Washington St, San Francisco, CA 94016" +296418,USB-C Charging Cable,1,11.95,11/29/19 10:56,"103 Chestnut St, Los Angeles, CA 90001" +296419,27in 4K Gaming Monitor,1,389.99,11/25/19 18:08,"505 South St, New York City, NY 10001" +296420,AA Batteries (4-pack),2,3.84,11/27/19 11:06,"240 Walnut St, Los Angeles, CA 90001" +296421,ThinkPad Laptop,1,999.99,11/04/19 15:00,"366 9th St, Portland, OR 97035" +296422,27in 4K Gaming Monitor,1,389.99,11/03/19 09:02,"235 Lakeview St, Seattle, WA 98101" +296423,34in Ultrawide Monitor,1,379.99,11/08/19 12:44,"950 11th St, Dallas, TX 75001" +296424,AA Batteries (4-pack),1,3.84,11/17/19 00:15,"742 Lake St, New York City, NY 10001" +296425,Macbook Pro Laptop,1,1700,11/02/19 08:55,"171 Lakeview St, San Francisco, CA 94016" +296426,AAA Batteries (4-pack),2,2.99,11/13/19 07:35,"926 1st St, San Francisco, CA 94016" +296427,Bose SoundSport Headphones,1,99.99,11/06/19 12:40,"188 Pine St, Austin, TX 73301" +296428,AA Batteries (4-pack),1,3.84,11/22/19 00:42,"363 10th St, San Francisco, CA 94016" +296429,Lightning Charging Cable,1,14.95,11/03/19 12:44,"987 Wilson St, Seattle, WA 98101" +296430,27in 4K Gaming Monitor,1,389.99,11/27/19 12:54,"449 Ridge St, Atlanta, GA 30301" +296431,AAA Batteries (4-pack),3,2.99,11/24/19 21:41,"338 North St, New York City, NY 10001" +296432,iPhone,1,700,11/12/19 08:46,"994 South St, San Francisco, CA 94016" +296433,USB-C Charging Cable,1,11.95,11/24/19 22:03,"334 Church St, New York City, NY 10001" +296434,Apple Airpods Headphones,1,150,11/20/19 09:33,"728 Meadow St, Portland, OR 97035" +296435,Lightning Charging Cable,1,14.95,11/29/19 18:24,"121 Cedar St, San Francisco, CA 94016" +296436,Wired Headphones,1,11.99,11/30/19 23:04,"956 Adams St, Los Angeles, CA 90001" +296437,Lightning Charging Cable,1,14.95,11/05/19 16:30,"726 Pine St, Seattle, WA 98101" +296438,Lightning Charging Cable,1,14.95,11/13/19 09:40,"891 Hickory St, Atlanta, GA 30301" +296439,Macbook Pro Laptop,1,1700,11/06/19 21:44,"533 Forest St, Los Angeles, CA 90001" +296440,Apple Airpods Headphones,1,150,11/20/19 12:34,"519 Sunset St, New York City, NY 10001" +296441,Flatscreen TV,1,300,11/14/19 13:11,"243 Elm St, New York City, NY 10001" +296442,Lightning Charging Cable,1,14.95,11/06/19 09:05,"315 13th St, Portland, OR 97035" +296443,AA Batteries (4-pack),1,3.84,11/03/19 18:12,"13 Spruce St, New York City, NY 10001" +296444,Bose SoundSport Headphones,1,99.99,11/01/19 14:26,"949 North St, Atlanta, GA 30301" +296445,Flatscreen TV,1,300,11/26/19 06:59,"35 Pine St, Austin, TX 73301" +296446,Wired Headphones,1,11.99,11/02/19 23:41,"374 Lake St, Dallas, TX 75001" +296447,Wired Headphones,1,11.99,11/16/19 10:25,"655 Johnson St, San Francisco, CA 94016" +296448,USB-C Charging Cable,1,11.95,11/19/19 23:32,"773 Jackson St, New York City, NY 10001" +296449,Macbook Pro Laptop,1,1700,11/28/19 23:08,"279 4th St, Seattle, WA 98101" +296450,AAA Batteries (4-pack),1,2.99,11/04/19 10:42,"629 Cedar St, San Francisco, CA 94016" +296451,AAA Batteries (4-pack),2,2.99,11/25/19 09:03,"109 Lake St, San Francisco, CA 94016" +296452,Lightning Charging Cable,1,14.95,11/23/19 11:37,"691 Spruce St, Seattle, WA 98101" +296453,USB-C Charging Cable,1,11.95,11/13/19 13:35,"50 5th St, New York City, NY 10001" +296454,AA Batteries (4-pack),2,3.84,11/03/19 19:29,"569 Cherry St, Dallas, TX 75001" +296455,Lightning Charging Cable,1,14.95,11/11/19 15:50,"276 Jefferson St, San Francisco, CA 94016" +296456,Wired Headphones,1,11.99,11/12/19 17:49,"343 Johnson St, Seattle, WA 98101" +296457,Lightning Charging Cable,1,14.95,11/16/19 08:20,"682 Walnut St, San Francisco, CA 94016" +296458,AAA Batteries (4-pack),1,2.99,11/27/19 18:35,"626 Johnson St, Seattle, WA 98101" +296459,Google Phone,1,600,11/22/19 18:00,"904 Lakeview St, San Francisco, CA 94016" +296460,27in FHD Monitor,1,149.99,11/25/19 06:29,"699 1st St, San Francisco, CA 94016" +296461,Flatscreen TV,1,300,11/28/19 12:59,"212 7th St, New York City, NY 10001" +296462,Google Phone,1,600,11/05/19 19:52,"137 West St, Austin, TX 73301" +296463,AAA Batteries (4-pack),1,2.99,11/12/19 11:08,"358 Lake St, San Francisco, CA 94016" +296464,USB-C Charging Cable,1,11.95,11/06/19 10:17,"689 4th St, Boston, MA 02215" +296465,Lightning Charging Cable,1,14.95,11/28/19 20:23,"716 River St, San Francisco, CA 94016" +296466,Bose SoundSport Headphones,1,99.99,11/03/19 12:20,"26 4th St, San Francisco, CA 94016" +296467,USB-C Charging Cable,1,11.95,11/06/19 12:11,"158 8th St, Los Angeles, CA 90001" +296468,27in 4K Gaming Monitor,1,389.99,11/11/19 17:06,"825 Church St, Boston, MA 02215" +296469,20in Monitor,1,109.99,11/19/19 11:46,"517 Adams St, San Francisco, CA 94016" +296470,USB-C Charging Cable,1,11.95,11/25/19 13:29,"879 Jefferson St, Boston, MA 02215" +296471,AAA Batteries (4-pack),2,2.99,11/23/19 13:37,"166 Wilson St, Austin, TX 73301" +296472,Macbook Pro Laptop,1,1700,11/16/19 11:04,"682 Sunset St, San Francisco, CA 94016" +296473,AAA Batteries (4-pack),1,2.99,11/03/19 13:18,"187 Adams St, New York City, NY 10001" +296474,USB-C Charging Cable,1,11.95,11/04/19 20:07,"196 North St, New York City, NY 10001" +296475,27in 4K Gaming Monitor,1,389.99,11/07/19 16:55,"265 Cedar St, San Francisco, CA 94016" +296476,Bose SoundSport Headphones,1,99.99,11/09/19 15:04,"745 10th St, San Francisco, CA 94016" +296477,34in Ultrawide Monitor,1,379.99,11/18/19 09:02,"284 13th St, San Francisco, CA 94016" +296478,Wired Headphones,1,11.99,11/17/19 23:17,"387 Lakeview St, Atlanta, GA 30301" +296479,27in FHD Monitor,1,149.99,11/19/19 20:11,"995 9th St, Los Angeles, CA 90001" +296480,AAA Batteries (4-pack),1,2.99,11/17/19 17:53,"146 Lakeview St, Portland, OR 97035" +296481,Apple Airpods Headphones,1,150,11/01/19 22:58,"897 5th St, New York City, NY 10001" +296482,Apple Airpods Headphones,1,150,11/04/19 14:32,"764 8th St, Austin, TX 73301" +296483,Lightning Charging Cable,1,14.95,11/29/19 16:49,"470 South St, San Francisco, CA 94016" +296484,Lightning Charging Cable,1,14.95,11/18/19 13:22,"851 13th St, Los Angeles, CA 90001" +296485,USB-C Charging Cable,1,11.95,11/07/19 17:54,"841 Washington St, Dallas, TX 75001" +296486,Wired Headphones,2,11.99,11/17/19 07:16,"598 Hill St, Seattle, WA 98101" +296486,ThinkPad Laptop,1,999.99,11/17/19 07:16,"598 Hill St, Seattle, WA 98101" +296487,AA Batteries (4-pack),1,3.84,11/21/19 20:58,"865 Forest St, New York City, NY 10001" +296488,Lightning Charging Cable,1,14.95,11/15/19 15:28,"601 Lincoln St, Seattle, WA 98101" +296489,USB-C Charging Cable,1,11.95,11/10/19 12:41,"124 8th St, Portland, OR 97035" +296490,Lightning Charging Cable,2,14.95,11/13/19 08:34,"314 Johnson St, San Francisco, CA 94016" +296491,27in FHD Monitor,1,149.99,11/29/19 10:55,"98 Washington St, Los Angeles, CA 90001" +296492,USB-C Charging Cable,1,11.95,11/23/19 08:32,"628 Washington St, Los Angeles, CA 90001" +296493,Lightning Charging Cable,1,14.95,11/06/19 22:17,"751 Meadow St, Austin, TX 73301" +296494,USB-C Charging Cable,1,11.95,11/12/19 00:27,"424 Cedar St, Austin, TX 73301" +296495,Lightning Charging Cable,1,14.95,11/18/19 13:55,"54 2nd St, San Francisco, CA 94016" +296496,Wired Headphones,1,11.99,11/06/19 21:09,"762 6th St, Boston, MA 02215" +296497,Apple Airpods Headphones,1,150,11/19/19 22:05,"476 12th St, Los Angeles, CA 90001" +296498,AA Batteries (4-pack),1,3.84,11/26/19 18:23,"673 Highland St, Seattle, WA 98101" +296499,34in Ultrawide Monitor,1,379.99,11/23/19 14:05,"749 Chestnut St, Boston, MA 02215" +296500,AA Batteries (4-pack),2,3.84,11/02/19 23:59,"251 Wilson St, Atlanta, GA 30301" +296501,AAA Batteries (4-pack),1,2.99,11/12/19 17:06,"236 Spruce St, New York City, NY 10001" +296502,ThinkPad Laptop,1,999.99,11/07/19 17:08,"539 8th St, Atlanta, GA 30301" +296503,AA Batteries (4-pack),1,3.84,11/23/19 19:02,"899 River St, Atlanta, GA 30301" +296504,AA Batteries (4-pack),1,3.84,11/08/19 15:25,"939 Washington St, New York City, NY 10001" +296504,USB-C Charging Cable,1,11.95,11/08/19 15:25,"939 Washington St, New York City, NY 10001" +296505,27in 4K Gaming Monitor,1,389.99,11/20/19 00:19,"36 Wilson St, Boston, MA 02215" +296506,27in 4K Gaming Monitor,1,389.99,11/11/19 13:44,"898 6th St, Portland, OR 97035" +296507,27in 4K Gaming Monitor,1,389.99,11/13/19 11:33,"711 5th St, Seattle, WA 98101" +296508,27in 4K Gaming Monitor,1,389.99,11/13/19 12:47,"110 West St, Dallas, TX 75001" +296509,AAA Batteries (4-pack),4,2.99,11/01/19 09:33,"621 Chestnut St, Portland, OR 97035" +296510,Lightning Charging Cable,1,14.95,11/26/19 16:46,"924 Adams St, San Francisco, CA 94016" +296511,Lightning Charging Cable,1,14.95,11/01/19 18:51,"144 Meadow St, New York City, NY 10001" +296511,USB-C Charging Cable,1,11.95,11/01/19 18:51,"144 Meadow St, New York City, NY 10001" +296512,Lightning Charging Cable,1,14.95,11/20/19 10:38,"856 Forest St, San Francisco, CA 94016" +296513,Bose SoundSport Headphones,1,99.99,11/30/19 15:53,"71 Cedar St, San Francisco, CA 94016" +296514,34in Ultrawide Monitor,1,379.99,11/21/19 14:20,"544 Lincoln St, Los Angeles, CA 90001" +296515,Bose SoundSport Headphones,1,99.99,11/08/19 21:37,"534 Willow St, Dallas, TX 75001" +296516,Lightning Charging Cable,1,14.95,11/25/19 19:40,"820 Meadow St, San Francisco, CA 94016" +296517,AAA Batteries (4-pack),1,2.99,11/14/19 12:36,"992 Park St, New York City, NY 10001" +296518,Apple Airpods Headphones,1,150,11/03/19 11:35,"276 Lakeview St, New York City, NY 10001" +296519,AA Batteries (4-pack),1,3.84,11/02/19 17:22,"759 2nd St, Los Angeles, CA 90001" +296520,Wired Headphones,1,11.99,11/13/19 20:24,"126 Sunset St, New York City, NY 10001" +296521,27in FHD Monitor,1,149.99,11/14/19 20:50,"292 10th St, New York City, NY 10001" +296522,AAA Batteries (4-pack),2,2.99,11/02/19 12:10,"862 Hill St, San Francisco, CA 94016" +296523,USB-C Charging Cable,1,11.95,11/11/19 10:25,"821 6th St, Los Angeles, CA 90001" +296524,Bose SoundSport Headphones,1,99.99,11/10/19 19:37,"177 Sunset St, Atlanta, GA 30301" +296525,34in Ultrawide Monitor,1,379.99,11/04/19 09:18,"927 13th St, Los Angeles, CA 90001" +296526,Lightning Charging Cable,1,14.95,11/13/19 20:05,"78 Walnut St, Dallas, TX 75001" +296527,Lightning Charging Cable,1,14.95,11/17/19 11:00,"39 2nd St, San Francisco, CA 94016" +296528,ThinkPad Laptop,1,999.99,11/20/19 12:29,"947 8th St, Los Angeles, CA 90001" +296529,AA Batteries (4-pack),1,3.84,11/09/19 17:46,"598 Sunset St, San Francisco, CA 94016" +296530,20in Monitor,1,109.99,11/11/19 15:45,"766 Lincoln St, Los Angeles, CA 90001" +296531,Apple Airpods Headphones,1,150,11/03/19 00:44,"881 Lake St, Atlanta, GA 30301" +296532,AA Batteries (4-pack),1,3.84,11/07/19 11:00,"56 12th St, Los Angeles, CA 90001" +296533,LG Washing Machine,1,600.0,11/26/19 17:15,"949 Walnut St, Boston, MA 02215" +296533,Bose SoundSport Headphones,1,99.99,11/26/19 17:15,"949 Walnut St, Boston, MA 02215" +296534,34in Ultrawide Monitor,1,379.99,11/07/19 01:15,"730 River St, Atlanta, GA 30301" +296535,Lightning Charging Cable,1,14.95,11/20/19 09:09,"408 Willow St, Los Angeles, CA 90001" +296536,Lightning Charging Cable,1,14.95,11/20/19 10:18,"624 4th St, Los Angeles, CA 90001" +296537,27in FHD Monitor,1,149.99,11/11/19 20:28,"632 Madison St, Los Angeles, CA 90001" +296538,Wired Headphones,1,11.99,11/04/19 10:53,"675 Washington St, New York City, NY 10001" +296539,27in 4K Gaming Monitor,1,389.99,11/01/19 18:12,"778 11th St, Boston, MA 02215" +296540,USB-C Charging Cable,1,11.95,11/25/19 20:19,"351 Jefferson St, New York City, NY 10001" +296541,Vareebadd Phone,1,400,11/06/19 14:13,"293 Sunset St, San Francisco, CA 94016" +296541,Wired Headphones,1,11.99,11/06/19 14:13,"293 Sunset St, San Francisco, CA 94016" +296542,Apple Airpods Headphones,1,150,11/26/19 09:34,"823 Jackson St, Boston, MA 02215" +296543,Apple Airpods Headphones,1,150,11/07/19 14:34,"834 Madison St, San Francisco, CA 94016" +296544,Macbook Pro Laptop,1,1700,11/14/19 18:23,"860 14th St, Atlanta, GA 30301" +296545,USB-C Charging Cable,1,11.95,11/06/19 13:21,"815 Main St, Seattle, WA 98101" +296546,Lightning Charging Cable,1,14.95,11/27/19 17:45,"501 Ridge St, Los Angeles, CA 90001" +296547,Apple Airpods Headphones,1,150,11/26/19 18:37,"488 11th St, New York City, NY 10001" +296548,AAA Batteries (4-pack),2,2.99,11/24/19 14:07,"983 14th St, San Francisco, CA 94016" +296549,Wired Headphones,1,11.99,11/03/19 15:13,"926 14th St, Atlanta, GA 30301" +296550,Wired Headphones,1,11.99,11/07/19 13:17,"974 Highland St, San Francisco, CA 94016" +296551,27in 4K Gaming Monitor,1,389.99,11/23/19 22:47,"579 Maple St, New York City, NY 10001" +296551,Lightning Charging Cable,1,14.95,11/23/19 22:47,"579 Maple St, New York City, NY 10001" +296552,Lightning Charging Cable,1,14.95,11/10/19 20:20,"529 Elm St, Austin, TX 73301" +296553,AAA Batteries (4-pack),1,2.99,11/10/19 23:27,"892 Forest St, New York City, NY 10001" +296554,USB-C Charging Cable,1,11.95,11/03/19 15:31,"714 9th St, Boston, MA 02215" +296555,iPhone,1,700,11/11/19 15:32,"805 Adams St, Austin, TX 73301" +296556,AAA Batteries (4-pack),1,2.99,11/02/19 15:47,"529 Sunset St, Atlanta, GA 30301" +296557,USB-C Charging Cable,1,11.95,11/23/19 09:50,"639 Park St, Seattle, WA 98101" +296558,Flatscreen TV,1,300,11/29/19 15:41,"159 Hickory St, Los Angeles, CA 90001" +296559,AA Batteries (4-pack),1,3.84,11/01/19 19:32,"811 4th St, Atlanta, GA 30301" +296560,Apple Airpods Headphones,1,150,11/18/19 07:03,"597 West St, San Francisco, CA 94016" +296561,LG Washing Machine,1,600.0,11/03/19 13:06,"842 Center St, San Francisco, CA 94016" +296562,Macbook Pro Laptop,1,1700,11/04/19 11:49,"947 9th St, Portland, OR 97035" +296563,Google Phone,1,600,11/29/19 15:04,"77 North St, Atlanta, GA 30301" +296564,Flatscreen TV,1,300,11/02/19 13:08,"684 Hickory St, Seattle, WA 98101" +296565,Wired Headphones,1,11.99,11/18/19 11:24,"218 West St, San Francisco, CA 94016" +296566,AAA Batteries (4-pack),1,2.99,11/28/19 21:39,"761 Maple St, Dallas, TX 75001" +296567,Bose SoundSport Headphones,1,99.99,11/09/19 15:53,"188 6th St, Los Angeles, CA 90001" +296568,Wired Headphones,1,11.99,11/06/19 22:21,"323 11th St, Boston, MA 02215" +296569,iPhone,1,700,11/22/19 21:05,"27 Spruce St, Seattle, WA 98101" +296570,AA Batteries (4-pack),1,3.84,11/20/19 12:32,"256 Chestnut St, Austin, TX 73301" +296571,27in FHD Monitor,1,149.99,11/04/19 08:06,"308 Pine St, Boston, MA 02215" +296572,USB-C Charging Cable,2,11.95,11/26/19 13:21,"278 Hickory St, Atlanta, GA 30301" +296573,USB-C Charging Cable,1,11.95,11/20/19 10:52,"5 Hickory St, Boston, MA 02215" +296574,Bose SoundSport Headphones,1,99.99,11/21/19 12:09,"345 Wilson St, San Francisco, CA 94016" +296575,AAA Batteries (4-pack),2,2.99,11/19/19 10:28,"135 14th St, San Francisco, CA 94016" +296576,Apple Airpods Headphones,1,150,11/06/19 20:14,"299 8th St, Dallas, TX 75001" +296577,Macbook Pro Laptop,1,1700,11/07/19 21:12,"840 West St, New York City, NY 10001" +296578,iPhone,1,700,11/04/19 14:54,"167 South St, San Francisco, CA 94016" +296578,Wired Headphones,1,11.99,11/04/19 14:54,"167 South St, San Francisco, CA 94016" +296579,Lightning Charging Cable,1,14.95,11/12/19 06:12,"95 Lincoln St, Boston, MA 02215" +296580,Lightning Charging Cable,1,14.95,11/28/19 14:12,"771 Wilson St, Austin, TX 73301" +296581,Macbook Pro Laptop,1,1700,11/22/19 12:02,"873 Hill St, New York City, NY 10001" +296582,Google Phone,1,600,11/12/19 15:05,"645 Chestnut St, Boston, MA 02215" +296582,Wired Headphones,1,11.99,11/12/19 15:05,"645 Chestnut St, Boston, MA 02215" +296583,AA Batteries (4-pack),1,3.84,11/15/19 14:09,"45 Washington St, Seattle, WA 98101" +296584,Apple Airpods Headphones,1,150,11/24/19 22:52,"921 11th St, Los Angeles, CA 90001" +296585,Flatscreen TV,1,300,11/18/19 09:03,"429 13th St, Boston, MA 02215" +296586,Bose SoundSport Headphones,1,99.99,11/16/19 18:42,"416 Chestnut St, San Francisco, CA 94016" +296587,Apple Airpods Headphones,1,150,11/28/19 23:27,"306 14th St, New York City, NY 10001" +296588,AAA Batteries (4-pack),1,2.99,11/27/19 21:01,"96 Church St, San Francisco, CA 94016" +296589,27in FHD Monitor,1,149.99,11/19/19 10:10,"321 Chestnut St, Seattle, WA 98101" +296590,Wired Headphones,1,11.99,11/10/19 09:49,"452 1st St, New York City, NY 10001" +296591,iPhone,1,700,11/28/19 22:08,"959 Maple St, Austin, TX 73301" +296592,Wired Headphones,1,11.99,11/26/19 11:14,"727 14th St, Los Angeles, CA 90001" +296593,AA Batteries (4-pack),2,3.84,11/02/19 11:57,"309 14th St, Los Angeles, CA 90001" +296594,AA Batteries (4-pack),1,3.84,11/03/19 11:47,"211 Meadow St, Seattle, WA 98101" +296595,Apple Airpods Headphones,1,150,11/19/19 18:09,"627 Jackson St, Seattle, WA 98101" +296596,AAA Batteries (4-pack),2,2.99,11/18/19 15:49,"637 Dogwood St, San Francisco, CA 94016" +296597,Lightning Charging Cable,1,14.95,11/09/19 09:35,"994 Lake St, San Francisco, CA 94016" +296598,AAA Batteries (4-pack),1,2.99,11/25/19 21:59,"488 River St, Seattle, WA 98101" +296599,27in 4K Gaming Monitor,1,389.99,11/11/19 20:34,"782 Jefferson St, Boston, MA 02215" +296600,Lightning Charging Cable,1,14.95,11/26/19 17:30,"505 Forest St, Seattle, WA 98101" +296601,AA Batteries (4-pack),1,3.84,11/17/19 12:24,"239 9th St, Los Angeles, CA 90001" +296602,34in Ultrawide Monitor,1,379.99,11/21/19 22:22,"493 1st St, Dallas, TX 75001" +296603,ThinkPad Laptop,1,999.99,11/11/19 19:45,"484 2nd St, Los Angeles, CA 90001" +296604,27in 4K Gaming Monitor,1,389.99,11/25/19 21:32,"942 Wilson St, Seattle, WA 98101" +296605,27in 4K Gaming Monitor,1,389.99,11/06/19 13:00,"368 Main St, Los Angeles, CA 90001" +296606,Lightning Charging Cable,1,14.95,11/11/19 10:29,"236 Main St, Portland, OR 97035" +296607,Bose SoundSport Headphones,1,99.99,11/23/19 23:44,"652 14th St, Los Angeles, CA 90001" +296608,Apple Airpods Headphones,1,150,11/18/19 21:42,"427 Adams St, Atlanta, GA 30301" +296609,AA Batteries (4-pack),2,3.84,11/20/19 01:57,"444 Spruce St, Seattle, WA 98101" +296610,Apple Airpods Headphones,1,150,12/01/19 00:48,"567 Park St, New York City, NY 10001" +296611,AAA Batteries (4-pack),2,2.99,11/20/19 12:34,"809 Forest St, Austin, TX 73301" +296612,Wired Headphones,1,11.99,11/27/19 19:37,"966 Center St, San Francisco, CA 94016" +296613,Apple Airpods Headphones,1,150,11/26/19 09:12,"70 Cedar St, Austin, TX 73301" +296614,USB-C Charging Cable,1,11.95,11/14/19 23:17,"253 Lincoln St, San Francisco, CA 94016" +296615,Flatscreen TV,1,300,11/28/19 10:13,"74 14th St, Portland, OR 97035" +296616,AA Batteries (4-pack),1,3.84,11/26/19 14:25,"501 Maple St, Atlanta, GA 30301" +296617,ThinkPad Laptop,1,999.99,11/22/19 18:41,"584 Hill St, Seattle, WA 98101" +296618,Wired Headphones,1,11.99,11/30/19 09:52,"960 10th St, San Francisco, CA 94016" +296619,Wired Headphones,1,11.99,11/23/19 23:25,"789 South St, Dallas, TX 75001" +296620,20in Monitor,1,109.99,11/10/19 18:07,"600 7th St, San Francisco, CA 94016" +296621,27in FHD Monitor,1,149.99,11/13/19 15:27,"108 Sunset St, Dallas, TX 75001" +296622,Lightning Charging Cable,1,14.95,11/03/19 16:01,"33 5th St, Atlanta, GA 30301" +296623,AAA Batteries (4-pack),1,2.99,11/12/19 07:43,"450 Jefferson St, San Francisco, CA 94016" +296624,AAA Batteries (4-pack),2,2.99,11/01/19 12:02,"669 Forest St, Los Angeles, CA 90001" +296625,34in Ultrawide Monitor,1,379.99,11/23/19 07:06,"694 Wilson St, Boston, MA 02215" +296626,Google Phone,1,600,11/15/19 12:53,"206 Dogwood St, Atlanta, GA 30301" +296627,USB-C Charging Cable,1,11.95,11/17/19 12:15,"947 Jackson St, Seattle, WA 98101" +296627,AAA Batteries (4-pack),1,2.99,11/17/19 12:15,"947 Jackson St, Seattle, WA 98101" +296628,Wired Headphones,1,11.99,11/08/19 20:52,"284 Adams St, Portland, OR 97035" +296629,34in Ultrawide Monitor,1,379.99,11/02/19 18:38,"933 Ridge St, Atlanta, GA 30301" +296630,Apple Airpods Headphones,1,150,11/18/19 19:23,"950 West St, Los Angeles, CA 90001" +296631,Apple Airpods Headphones,1,150,11/12/19 12:08,"729 Cherry St, Los Angeles, CA 90001" +296632,USB-C Charging Cable,1,11.95,11/19/19 19:59,"785 7th St, New York City, NY 10001" +296633,iPhone,1,700,11/20/19 10:17,"814 Cedar St, Atlanta, GA 30301" +296634,AA Batteries (4-pack),1,3.84,11/17/19 18:27,"444 Dogwood St, Seattle, WA 98101" +296635,AAA Batteries (4-pack),1,2.99,11/26/19 07:55,"939 6th St, Seattle, WA 98101" +296636,AA Batteries (4-pack),1,3.84,11/11/19 10:25,"756 Chestnut St, Atlanta, GA 30301" +296637,20in Monitor,1,109.99,11/14/19 01:33,"259 Washington St, Dallas, TX 75001" +296638,AA Batteries (4-pack),1,3.84,11/29/19 14:11,"423 Jefferson St, Atlanta, GA 30301" +296639,AAA Batteries (4-pack),3,2.99,11/21/19 13:55,"339 5th St, Atlanta, GA 30301" +296640,Google Phone,1,600,11/16/19 21:26,"291 Jefferson St, Austin, TX 73301" +296641,20in Monitor,1,109.99,11/11/19 22:26,"107 Meadow St, Seattle, WA 98101" +296642,AAA Batteries (4-pack),4,2.99,11/16/19 21:11,"606 Walnut St, New York City, NY 10001" +296643,ThinkPad Laptop,1,999.99,11/05/19 10:44,"257 Meadow St, Los Angeles, CA 90001" +296644,Wired Headphones,1,11.99,11/01/19 11:13,"863 Jackson St, San Francisco, CA 94016" +296645,Bose SoundSport Headphones,1,99.99,11/25/19 20:04,"882 Walnut St, Austin, TX 73301" +296646,AAA Batteries (4-pack),1,2.99,11/29/19 18:37,"224 Johnson St, Boston, MA 02215" +296647,Apple Airpods Headphones,1,150,11/18/19 19:07,"447 Pine St, Seattle, WA 98101" +296648,Wired Headphones,1,11.99,11/09/19 09:50,"911 Chestnut St, San Francisco, CA 94016" +296649,34in Ultrawide Monitor,1,379.99,11/23/19 18:16,"30 Lakeview St, New York City, NY 10001" +296650,AAA Batteries (4-pack),2,2.99,11/04/19 19:09,"949 8th St, New York City, NY 10001" +296651,USB-C Charging Cable,1,11.95,11/21/19 17:41,"405 9th St, New York City, NY 10001" +296652,AA Batteries (4-pack),1,3.84,11/17/19 18:28,"289 Madison St, San Francisco, CA 94016" +296653,Apple Airpods Headphones,1,150,11/10/19 17:03,"155 Madison St, Seattle, WA 98101" +296654,AA Batteries (4-pack),1,3.84,11/23/19 10:25,"977 Washington St, Boston, MA 02215" +296655,USB-C Charging Cable,1,11.95,11/01/19 10:13,"85 Main St, Boston, MA 02215" +296656,Wired Headphones,2,11.99,11/14/19 19:36,"807 Lincoln St, Atlanta, GA 30301" +296657,20in Monitor,1,109.99,11/23/19 15:40,"677 Spruce St, Atlanta, GA 30301" +296658,USB-C Charging Cable,2,11.95,11/05/19 13:37,"359 14th St, San Francisco, CA 94016" +296659,AAA Batteries (4-pack),1,2.99,11/03/19 14:42,"29 Lincoln St, Los Angeles, CA 90001" +296660,Macbook Pro Laptop,1,1700,11/09/19 20:17,"533 Lincoln St, Atlanta, GA 30301" +296661,AAA Batteries (4-pack),1,2.99,11/08/19 14:41,"940 West St, Portland, OR 97035" +296662,AAA Batteries (4-pack),1,2.99,11/14/19 20:50,"186 1st St, Atlanta, GA 30301" +296663,Wired Headphones,2,11.99,11/28/19 15:25,"481 Willow St, New York City, NY 10001" +296664,ThinkPad Laptop,1,999.99,11/10/19 23:23,"666 11th St, Austin, TX 73301" +296665,Google Phone,1,600,11/06/19 10:18,"227 Walnut St, San Francisco, CA 94016" +296666,AAA Batteries (4-pack),1,2.99,11/18/19 19:30,"117 9th St, Dallas, TX 75001" +296667,USB-C Charging Cable,1,11.95,11/24/19 13:43,"461 Elm St, Atlanta, GA 30301" +296668,Lightning Charging Cable,1,14.95,11/17/19 09:00,"151 4th St, Dallas, TX 75001" +296669,Bose SoundSport Headphones,1,99.99,11/22/19 21:29,"391 13th St, New York City, NY 10001" +296670,27in FHD Monitor,1,149.99,11/14/19 18:45,"64 9th St, San Francisco, CA 94016" +296671,Apple Airpods Headphones,1,150,11/21/19 12:06,"953 Willow St, Dallas, TX 75001" +296672,AA Batteries (4-pack),2,3.84,11/30/19 09:46,"665 River St, San Francisco, CA 94016" +296673,USB-C Charging Cable,1,11.95,11/15/19 02:56,"364 13th St, Atlanta, GA 30301" +296674,20in Monitor,1,109.99,11/27/19 14:43,"415 4th St, Boston, MA 02215" +296675,Bose SoundSport Headphones,1,99.99,11/08/19 13:12,"162 Adams St, Dallas, TX 75001" +296676,AAA Batteries (4-pack),1,2.99,11/15/19 00:47,"804 Chestnut St, Atlanta, GA 30301" +296677,Wired Headphones,1,11.99,11/30/19 14:20,"452 Adams St, Austin, TX 73301" +296678,USB-C Charging Cable,1,11.95,11/19/19 17:51,"48 2nd St, San Francisco, CA 94016" +296679,USB-C Charging Cable,1,11.95,11/03/19 16:27,"480 Madison St, Los Angeles, CA 90001" +296680,Lightning Charging Cable,1,14.95,11/19/19 07:08,"300 Forest St, Boston, MA 02215" +296681,Bose SoundSport Headphones,1,99.99,11/29/19 16:47,"491 Cherry St, New York City, NY 10001" +296681,Apple Airpods Headphones,1,150,11/29/19 16:47,"491 Cherry St, New York City, NY 10001" +296682,Wired Headphones,1,11.99,11/19/19 21:02,"281 6th St, Austin, TX 73301" +296683,Bose SoundSport Headphones,1,99.99,11/15/19 06:19,"476 Sunset St, New York City, NY 10001" +296684,27in FHD Monitor,1,149.99,11/29/19 13:57,"723 Church St, Seattle, WA 98101" +296685,AA Batteries (4-pack),4,3.84,11/30/19 01:21,"418 11th St, Portland, OR 97035" +296686,Lightning Charging Cable,2,14.95,11/05/19 23:28,"787 Lake St, San Francisco, CA 94016" +296687,Flatscreen TV,1,300,11/19/19 05:15,"291 North St, New York City, NY 10001" +296688,Vareebadd Phone,1,400,11/29/19 15:27,"712 Jackson St, San Francisco, CA 94016" +296689,AA Batteries (4-pack),2,3.84,11/27/19 17:44,"415 Main St, Los Angeles, CA 90001" +296690,34in Ultrawide Monitor,1,379.99,11/16/19 16:53,"755 6th St, Boston, MA 02215" +296691,Vareebadd Phone,1,400,11/17/19 08:02,"539 Church St, Dallas, TX 75001" +296692,Lightning Charging Cable,1,14.95,11/03/19 16:46,"762 Ridge St, Portland, OR 97035" +296693,20in Monitor,1,109.99,11/16/19 07:54,"151 14th St, San Francisco, CA 94016" +296694,USB-C Charging Cable,2,11.95,11/18/19 14:56,"866 Cedar St, Dallas, TX 75001" +296695,Bose SoundSport Headphones,1,99.99,11/03/19 14:04,"121 Jefferson St, Dallas, TX 75001" +296696,Apple Airpods Headphones,1,150,11/15/19 18:10,"278 Church St, Boston, MA 02215" +296697,34in Ultrawide Monitor,1,379.99,11/06/19 16:50,"590 North St, Austin, TX 73301" +296698,Wired Headphones,1,11.99,11/16/19 11:53,"164 Jackson St, Dallas, TX 75001" +296699,USB-C Charging Cable,1,11.95,11/17/19 08:57,"915 Lake St, Portland, ME 04101" +296700,AA Batteries (4-pack),1,3.84,11/22/19 17:37,"875 Cedar St, Atlanta, GA 30301" +296701,AAA Batteries (4-pack),2,2.99,11/12/19 11:04,"791 Highland St, Seattle, WA 98101" +296702,USB-C Charging Cable,1,11.95,11/11/19 17:24,"896 9th St, Portland, OR 97035" +296703,USB-C Charging Cable,1,11.95,11/14/19 22:43,"437 Forest St, San Francisco, CA 94016" +296704,Apple Airpods Headphones,1,150,11/10/19 16:10,"220 Chestnut St, New York City, NY 10001" +296705,Bose SoundSport Headphones,1,99.99,11/16/19 13:41,"946 Lincoln St, New York City, NY 10001" +296706,Apple Airpods Headphones,1,150,11/06/19 15:28,"784 Forest St, San Francisco, CA 94016" +296707,Apple Airpods Headphones,1,150,11/15/19 11:57,"523 8th St, New York City, NY 10001" +296708,Bose SoundSport Headphones,1,99.99,11/17/19 13:12,"250 Highland St, Seattle, WA 98101" +296709,Lightning Charging Cable,1,14.95,11/09/19 20:00,"960 Hickory St, Seattle, WA 98101" +296710,20in Monitor,1,109.99,11/03/19 23:47,"118 Cherry St, Austin, TX 73301" +296711,AA Batteries (4-pack),1,3.84,11/10/19 21:08,"392 Jefferson St, Dallas, TX 75001" +296712,ThinkPad Laptop,1,999.99,11/07/19 12:23,"699 Elm St, Atlanta, GA 30301" +296713,USB-C Charging Cable,1,11.95,11/28/19 18:47,"298 Hickory St, Dallas, TX 75001" +296714,34in Ultrawide Monitor,1,379.99,11/19/19 15:09,"414 West St, Atlanta, GA 30301" +296715,Bose SoundSport Headphones,1,99.99,11/17/19 11:31,"219 Cedar St, Los Angeles, CA 90001" +296716,Apple Airpods Headphones,1,150,11/21/19 22:19,"784 9th St, New York City, NY 10001" +296717,Wired Headphones,1,11.99,11/17/19 08:19,"299 Hickory St, Los Angeles, CA 90001" +296718,iPhone,1,700,11/23/19 19:12,"87 Sunset St, Austin, TX 73301" +296718,Lightning Charging Cable,1,14.95,11/23/19 19:12,"87 Sunset St, Austin, TX 73301" +296719,AA Batteries (4-pack),1,3.84,11/06/19 05:21,"907 4th St, Los Angeles, CA 90001" +296720,27in FHD Monitor,1,149.99,11/03/19 21:50,"271 Hill St, San Francisco, CA 94016" +296721,27in FHD Monitor,1,149.99,11/02/19 18:06,"262 Lake St, San Francisco, CA 94016" +296722,USB-C Charging Cable,1,11.95,11/08/19 13:39,"680 Cedar St, Los Angeles, CA 90001" +296723,20in Monitor,1,109.99,11/06/19 19:32,"962 Forest St, Los Angeles, CA 90001" +296724,Lightning Charging Cable,1,14.95,11/07/19 18:29,"135 Lake St, Los Angeles, CA 90001" +296725,AA Batteries (4-pack),1,3.84,11/15/19 11:02,"433 Highland St, Los Angeles, CA 90001" +296726,Lightning Charging Cable,1,14.95,11/28/19 21:35,"309 Cherry St, San Francisco, CA 94016" +296727,Macbook Pro Laptop,1,1700,11/04/19 20:22,"311 Cherry St, Seattle, WA 98101" +296728,AAA Batteries (4-pack),5,2.99,11/05/19 19:37,"40 Wilson St, Los Angeles, CA 90001" +296729,AAA Batteries (4-pack),4,2.99,11/26/19 18:10,"230 River St, Portland, OR 97035" +296730,Google Phone,1,600,11/23/19 18:50,"624 Spruce St, Los Angeles, CA 90001" +296731,USB-C Charging Cable,1,11.95,11/18/19 12:03,"304 Madison St, New York City, NY 10001" +296732,Bose SoundSport Headphones,1,99.99,11/24/19 01:30,"844 8th St, Atlanta, GA 30301" +296733,20in Monitor,1,109.99,11/23/19 06:21,"231 Forest St, Boston, MA 02215" +296734,Apple Airpods Headphones,1,150,11/26/19 16:10,"727 14th St, Dallas, TX 75001" +296735,AAA Batteries (4-pack),2,2.99,11/10/19 16:45,"217 Wilson St, Portland, OR 97035" +296736,ThinkPad Laptop,1,999.99,11/14/19 17:09,"767 Lake St, San Francisco, CA 94016" +296737,27in 4K Gaming Monitor,1,389.99,11/19/19 20:27,"286 11th St, Austin, TX 73301" +296738,AAA Batteries (4-pack),1,2.99,11/18/19 09:43,"606 Wilson St, Dallas, TX 75001" +296739,Apple Airpods Headphones,1,150,11/17/19 01:26,"999 South St, Los Angeles, CA 90001" +296740,Bose SoundSport Headphones,1,99.99,11/25/19 10:00,"856 Walnut St, Seattle, WA 98101" +296741,AA Batteries (4-pack),1,3.84,11/24/19 09:32,"683 Chestnut St, San Francisco, CA 94016" +296742,AA Batteries (4-pack),1,3.84,11/05/19 08:20,"316 13th St, Seattle, WA 98101" +296743,Flatscreen TV,1,300,11/21/19 11:38,"210 Walnut St, New York City, NY 10001" +296744,USB-C Charging Cable,1,11.95,11/06/19 10:53,"310 Lakeview St, Los Angeles, CA 90001" +296745,USB-C Charging Cable,1,11.95,11/05/19 16:15,"403 Washington St, Boston, MA 02215" +296746,Wired Headphones,1,11.99,11/28/19 17:54,"542 Walnut St, San Francisco, CA 94016" +296747,AA Batteries (4-pack),1,3.84,11/12/19 15:23,"794 Meadow St, Atlanta, GA 30301" +296748,Wired Headphones,1,11.99,11/29/19 12:37,"930 Sunset St, San Francisco, CA 94016" +296749,ThinkPad Laptop,1,999.99,11/21/19 20:31,"450 Adams St, Seattle, WA 98101" +296750,iPhone,1,700,11/18/19 16:32,"619 Park St, Portland, OR 97035" +296751,Macbook Pro Laptop,1,1700,11/18/19 10:53,"240 Park St, San Francisco, CA 94016" +296752,AAA Batteries (4-pack),1,2.99,11/01/19 13:35,"675 Wilson St, Portland, OR 97035" +296753,Wired Headphones,1,11.99,11/01/19 10:13,"411 13th St, Los Angeles, CA 90001" +296754,USB-C Charging Cable,1,11.95,11/14/19 20:00,"165 Center St, New York City, NY 10001" +296755,AAA Batteries (4-pack),2,2.99,11/13/19 15:17,"68 Adams St, Boston, MA 02215" +296756,AA Batteries (4-pack),1,3.84,11/02/19 09:06,"893 Lincoln St, Dallas, TX 75001" +296757,Lightning Charging Cable,1,14.95,11/17/19 07:49,"453 Wilson St, New York City, NY 10001" +296758,AA Batteries (4-pack),1,3.84,11/13/19 12:18,"726 Cedar St, Portland, ME 04101" +296759,AA Batteries (4-pack),1,3.84,11/10/19 23:37,"553 Wilson St, San Francisco, CA 94016" +296760,27in 4K Gaming Monitor,1,389.99,11/17/19 14:32,"994 Jefferson St, Portland, ME 04101" +296761,USB-C Charging Cable,1,11.95,11/26/19 13:52,"404 Church St, San Francisco, CA 94016" +296762,Apple Airpods Headphones,1,150,11/03/19 08:35,"579 Jefferson St, Dallas, TX 75001" +296763,Flatscreen TV,1,300,11/13/19 15:36,"220 7th St, San Francisco, CA 94016" +296764,Wired Headphones,1,11.99,11/24/19 13:17,"316 7th St, San Francisco, CA 94016" +296765,Bose SoundSport Headphones,1,99.99,11/05/19 17:45,"519 13th St, Portland, ME 04101" +296766,AAA Batteries (4-pack),1,2.99,11/20/19 17:50,"771 Dogwood St, Los Angeles, CA 90001" +296767,Lightning Charging Cable,1,14.95,12/01/19 03:42,"696 Wilson St, San Francisco, CA 94016" +296768,Bose SoundSport Headphones,1,99.99,11/12/19 09:38,"239 Sunset St, San Francisco, CA 94016" +296769,Google Phone,1,600,11/25/19 10:38,"730 Jefferson St, Dallas, TX 75001" +296770,Apple Airpods Headphones,1,150,11/26/19 08:28,"801 Cherry St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +296771,AA Batteries (4-pack),2,3.84,11/28/19 06:58,"327 2nd St, New York City, NY 10001" +296772,AA Batteries (4-pack),2,3.84,11/24/19 09:36,"521 Chestnut St, Los Angeles, CA 90001" +296773,27in 4K Gaming Monitor,1,389.99,11/28/19 14:35,"263 Park St, Seattle, WA 98101" +296774,Wired Headphones,1,11.99,11/10/19 22:42,"429 Park St, New York City, NY 10001" +296775,Bose SoundSport Headphones,1,99.99,11/25/19 10:44,"396 South St, New York City, NY 10001" +296776,27in FHD Monitor,1,149.99,11/22/19 15:19,"792 Madison St, Portland, OR 97035" +296777,AAA Batteries (4-pack),1,2.99,11/24/19 20:25,"175 River St, San Francisco, CA 94016" +296778,27in FHD Monitor,1,149.99,11/29/19 17:41,"791 Walnut St, Seattle, WA 98101" +296779,AA Batteries (4-pack),1,3.84,11/29/19 08:44,"913 Ridge St, Austin, TX 73301" +296780,Apple Airpods Headphones,1,150,11/18/19 12:24,"796 Johnson St, Atlanta, GA 30301" +296781,iPhone,1,700,11/21/19 14:11,"757 River St, Portland, OR 97035" +296782,USB-C Charging Cable,1,11.95,11/10/19 14:00,"265 7th St, Boston, MA 02215" +296783,Wired Headphones,1,11.99,11/13/19 11:40,"323 5th St, Dallas, TX 75001" +296784,Bose SoundSport Headphones,1,99.99,11/26/19 14:12,"272 Church St, New York City, NY 10001" +296785,AAA Batteries (4-pack),2,2.99,11/27/19 10:10,"260 West St, San Francisco, CA 94016" +296786,AA Batteries (4-pack),2,3.84,11/15/19 20:35,"694 Jackson St, Atlanta, GA 30301" +296787,AA Batteries (4-pack),1,3.84,11/02/19 14:27,"622 Pine St, San Francisco, CA 94016" +296788,AAA Batteries (4-pack),2,2.99,11/25/19 03:03,"441 Maple St, Boston, MA 02215" +296789,Lightning Charging Cable,1,14.95,11/26/19 03:43,"269 Madison St, Los Angeles, CA 90001" +296789,AAA Batteries (4-pack),5,2.99,11/26/19 03:43,"269 Madison St, Los Angeles, CA 90001" +296790,Macbook Pro Laptop,1,1700,11/14/19 16:15,"116 Adams St, Dallas, TX 75001" +296791,AAA Batteries (4-pack),1,2.99,11/28/19 18:37,"785 Spruce St, New York City, NY 10001" +296792,Wired Headphones,1,11.99,11/07/19 23:04,"906 Park St, New York City, NY 10001" +296793,USB-C Charging Cable,1,11.95,11/20/19 18:42,"502 Chestnut St, Boston, MA 02215" +296794,AA Batteries (4-pack),3,3.84,11/25/19 12:41,"634 6th St, Boston, MA 02215" +296795,Wired Headphones,1,11.99,11/07/19 15:38,"354 Willow St, Austin, TX 73301" +296796,AA Batteries (4-pack),1,3.84,11/13/19 16:16,"469 North St, Portland, OR 97035" +296797,AAA Batteries (4-pack),2,2.99,11/10/19 10:06,"217 Meadow St, San Francisco, CA 94016" +296798,Macbook Pro Laptop,1,1700,11/23/19 14:16,"814 Walnut St, Boston, MA 02215" +296799,Apple Airpods Headphones,1,150,11/29/19 16:28,"211 Cedar St, Boston, MA 02215" +296800,Bose SoundSport Headphones,1,99.99,11/07/19 16:49,"314 River St, New York City, NY 10001" +296801,AA Batteries (4-pack),1,3.84,11/30/19 14:20,"327 9th St, San Francisco, CA 94016" +296802,iPhone,1,700,11/19/19 21:29,"732 7th St, Los Angeles, CA 90001" +296803,AAA Batteries (4-pack),1,2.99,11/12/19 13:23,"738 7th St, Los Angeles, CA 90001" +296804,Apple Airpods Headphones,1,150,11/03/19 02:07,"248 Center St, New York City, NY 10001" +296804,Lightning Charging Cable,1,14.95,11/03/19 02:07,"248 Center St, New York City, NY 10001" +296805,AAA Batteries (4-pack),1,2.99,11/25/19 13:27,"159 Main St, San Francisco, CA 94016" +296806,Flatscreen TV,1,300,11/10/19 14:54,"351 River St, Dallas, TX 75001" +296807,AA Batteries (4-pack),2,3.84,11/12/19 11:58,"514 Ridge St, Dallas, TX 75001" +296808,Lightning Charging Cable,1,14.95,11/26/19 17:54,"472 7th St, Portland, OR 97035" +296809,AA Batteries (4-pack),1,3.84,11/19/19 21:32,"891 Forest St, Los Angeles, CA 90001" +296810,AAA Batteries (4-pack),1,2.99,11/25/19 08:51,"96 Main St, New York City, NY 10001" +296811,ThinkPad Laptop,1,999.99,11/15/19 10:45,"727 Wilson St, San Francisco, CA 94016" +296812,27in FHD Monitor,1,149.99,11/27/19 10:19,"431 4th St, Dallas, TX 75001" +296813,AAA Batteries (4-pack),2,2.99,11/18/19 22:45,"930 Cherry St, San Francisco, CA 94016" +296814,Apple Airpods Headphones,1,150,11/15/19 12:03,"19 Spruce St, New York City, NY 10001" +296815,Apple Airpods Headphones,1,150,11/30/19 10:43,"99 9th St, San Francisco, CA 94016" +296816,USB-C Charging Cable,1,11.95,11/14/19 11:52,"934 7th St, New York City, NY 10001" +296817,AA Batteries (4-pack),1,3.84,11/09/19 21:34,"757 Lake St, Los Angeles, CA 90001" +296818,Flatscreen TV,1,300,11/26/19 18:56,"918 Lakeview St, San Francisco, CA 94016" +296819,AA Batteries (4-pack),1,3.84,11/13/19 18:20,"266 Willow St, Portland, OR 97035" +296820,Lightning Charging Cable,1,14.95,11/10/19 10:15,"729 Lincoln St, New York City, NY 10001" +296821,Lightning Charging Cable,1,14.95,11/02/19 09:10,"181 Wilson St, San Francisco, CA 94016" +296822,Macbook Pro Laptop,1,1700,11/29/19 15:33,"970 12th St, Austin, TX 73301" +296823,iPhone,1,700,11/03/19 00:38,"112 Wilson St, Boston, MA 02215" +296824,ThinkPad Laptop,1,999.99,11/19/19 19:13,"811 Highland St, Portland, OR 97035" +296825,20in Monitor,1,109.99,11/19/19 18:33,"219 4th St, San Francisco, CA 94016" +296826,iPhone,1,700,11/28/19 19:34,"371 5th St, San Francisco, CA 94016" +296827,AAA Batteries (4-pack),1,2.99,11/25/19 07:20,"510 North St, San Francisco, CA 94016" +296828,27in 4K Gaming Monitor,1,389.99,11/16/19 18:23,"330 4th St, New York City, NY 10001" +296829,Flatscreen TV,1,300,11/26/19 18:00,"338 Meadow St, San Francisco, CA 94016" +296830,USB-C Charging Cable,1,11.95,11/02/19 10:07,"41 West St, Los Angeles, CA 90001" +296831,27in FHD Monitor,1,149.99,11/24/19 17:36,"810 4th St, Boston, MA 02215" +296832,Lightning Charging Cable,1,14.95,11/27/19 19:42,"201 Madison St, Los Angeles, CA 90001" +296833,Lightning Charging Cable,2,14.95,11/07/19 06:49,"218 Meadow St, Seattle, WA 98101" +296834,AAA Batteries (4-pack),1,2.99,11/06/19 18:15,"843 Madison St, San Francisco, CA 94016" +296835,USB-C Charging Cable,1,11.95,11/05/19 08:45,"67 Park St, San Francisco, CA 94016" +296836,AA Batteries (4-pack),2,3.84,11/12/19 14:22,"392 10th St, Los Angeles, CA 90001" +296837,AAA Batteries (4-pack),2,2.99,11/27/19 14:29,"938 Johnson St, Seattle, WA 98101" +296838,Wired Headphones,1,11.99,11/10/19 21:30,"178 Lincoln St, San Francisco, CA 94016" +296839,Bose SoundSport Headphones,1,99.99,11/28/19 14:30,"621 Hill St, San Francisco, CA 94016" +296840,AAA Batteries (4-pack),1,2.99,11/02/19 11:05,"227 Chestnut St, Atlanta, GA 30301" +296841,Lightning Charging Cable,1,14.95,11/26/19 16:58,"216 Main St, Portland, OR 97035" +296842,Lightning Charging Cable,1,14.95,11/18/19 00:00,"557 Meadow St, San Francisco, CA 94016" +296843,AAA Batteries (4-pack),1,2.99,11/04/19 00:10,"949 Cedar St, San Francisco, CA 94016" +296844,27in FHD Monitor,1,149.99,11/27/19 18:58,"706 Meadow St, Boston, MA 02215" +296845,Lightning Charging Cable,1,14.95,11/23/19 18:26,"495 Church St, Portland, OR 97035" +296846,Apple Airpods Headphones,1,150,11/11/19 18:25,"172 Center St, Dallas, TX 75001" +296847,USB-C Charging Cable,1,11.95,11/25/19 20:55,"311 6th St, New York City, NY 10001" +296848,Bose SoundSport Headphones,1,99.99,11/07/19 10:46,"277 South St, Atlanta, GA 30301" +296849,Flatscreen TV,1,300,11/15/19 11:52,"994 Park St, Los Angeles, CA 90001" +296850,AAA Batteries (4-pack),2,2.99,11/09/19 15:12,"321 Chestnut St, Seattle, WA 98101" +296851,USB-C Charging Cable,1,11.95,11/09/19 20:19,"985 River St, Atlanta, GA 30301" +296852,AAA Batteries (4-pack),1,2.99,11/02/19 13:19,"642 Jackson St, Austin, TX 73301" +296853,Wired Headphones,1,11.99,11/22/19 20:10,"676 Main St, Los Angeles, CA 90001" +296854,Apple Airpods Headphones,1,150,11/02/19 10:13,"807 Wilson St, Los Angeles, CA 90001" +296855,Flatscreen TV,1,300,11/26/19 09:44,"186 Willow St, San Francisco, CA 94016" +296856,Lightning Charging Cable,1,14.95,11/09/19 18:24,"18 14th St, Atlanta, GA 30301" +296857,Wired Headphones,1,11.99,11/07/19 19:57,"892 Lake St, New York City, NY 10001" +296858,AAA Batteries (4-pack),2,2.99,11/20/19 20:11,"109 Washington St, Los Angeles, CA 90001" +296859,20in Monitor,1,109.99,11/26/19 16:07,"202 4th St, Atlanta, GA 30301" +296860,Lightning Charging Cable,1,14.95,11/22/19 09:03,"62 Madison St, San Francisco, CA 94016" +296861,AAA Batteries (4-pack),1,2.99,11/22/19 10:32,"33 Highland St, San Francisco, CA 94016" +296862,Wired Headphones,1,11.99,11/13/19 14:38,"114 14th St, Boston, MA 02215" +296863,Apple Airpods Headphones,1,150,11/14/19 10:46,"655 Elm St, Boston, MA 02215" +296864,Macbook Pro Laptop,1,1700,11/15/19 22:49,"8 Lake St, Los Angeles, CA 90001" +296865,27in FHD Monitor,1,149.99,11/01/19 21:35,"298 Walnut St, Los Angeles, CA 90001" +296866,USB-C Charging Cable,1,11.95,11/19/19 21:05,"871 Cedar St, Dallas, TX 75001" +296867,USB-C Charging Cable,1,11.95,11/02/19 12:31,"601 Main St, Portland, ME 04101" +296868,Bose SoundSport Headphones,1,99.99,11/25/19 06:13,"230 14th St, Boston, MA 02215" +296869,AAA Batteries (4-pack),1,2.99,11/16/19 15:56,"680 Park St, Los Angeles, CA 90001" +296870,USB-C Charging Cable,1,11.95,11/14/19 00:14,"498 River St, Los Angeles, CA 90001" +296871,Lightning Charging Cable,1,14.95,11/14/19 23:20,"923 Spruce St, San Francisco, CA 94016" +296872,27in FHD Monitor,1,149.99,11/14/19 16:33,"130 Madison St, Atlanta, GA 30301" +296873,AA Batteries (4-pack),1,3.84,11/11/19 12:03,"595 Chestnut St, Seattle, WA 98101" +296874,Apple Airpods Headphones,1,150,11/22/19 09:42,"953 Chestnut St, Boston, MA 02215" +296875,ThinkPad Laptop,1,999.99,11/11/19 10:36,"649 Elm St, Portland, OR 97035" +296876,AA Batteries (4-pack),1,3.84,11/04/19 20:40,"683 5th St, Atlanta, GA 30301" +296877,Macbook Pro Laptop,1,1700,11/20/19 13:31,"655 Madison St, Dallas, TX 75001" +296878,Bose SoundSport Headphones,1,99.99,11/24/19 02:00,"683 Hickory St, Atlanta, GA 30301" +296879,Wired Headphones,2,11.99,11/25/19 15:11,"173 Adams St, Seattle, WA 98101" +296880,20in Monitor,1,109.99,11/27/19 12:59,"570 5th St, Los Angeles, CA 90001" +296881,27in FHD Monitor,1,149.99,11/09/19 08:47,"580 Church St, Portland, ME 04101" +296882,Lightning Charging Cable,1,14.95,11/16/19 23:06,"385 13th St, New York City, NY 10001" +296883,Lightning Charging Cable,1,14.95,11/26/19 15:41,"358 10th St, Los Angeles, CA 90001" +296884,USB-C Charging Cable,1,11.95,11/21/19 07:15,"797 Lakeview St, Portland, OR 97035" +296885,AA Batteries (4-pack),1,3.84,11/03/19 17:17,"976 9th St, Los Angeles, CA 90001" +296886,Wired Headphones,1,11.99,11/11/19 19:49,"663 14th St, San Francisco, CA 94016" +296887,27in FHD Monitor,1,149.99,11/26/19 12:46,"854 11th St, Los Angeles, CA 90001" +296888,ThinkPad Laptop,1,999.99,11/09/19 11:37,"101 9th St, Dallas, TX 75001" +296889,USB-C Charging Cable,3,11.95,11/21/19 20:04,"337 South St, San Francisco, CA 94016" +296890,Wired Headphones,1,11.99,11/03/19 23:11,"228 14th St, Los Angeles, CA 90001" +296891,Lightning Charging Cable,1,14.95,11/14/19 11:14,"643 Forest St, Boston, MA 02215" +296892,Apple Airpods Headphones,1,150,11/21/19 21:54,"848 14th St, San Francisco, CA 94016" +296893,Wired Headphones,1,11.99,11/20/19 21:01,"801 West St, New York City, NY 10001" +296894,AA Batteries (4-pack),1,3.84,11/26/19 15:06,"147 10th St, Atlanta, GA 30301" +296895,AAA Batteries (4-pack),6,2.99,11/06/19 20:24,"657 Johnson St, Los Angeles, CA 90001" +296896,Lightning Charging Cable,1,14.95,11/22/19 19:33,"625 Church St, San Francisco, CA 94016" +296897,AAA Batteries (4-pack),2,2.99,11/12/19 15:51,"67 West St, San Francisco, CA 94016" +296898,AAA Batteries (4-pack),2,2.99,11/18/19 13:55,"689 8th St, Seattle, WA 98101" +296899,Wired Headphones,1,11.99,11/23/19 19:00,"791 Dogwood St, San Francisco, CA 94016" +296900,Bose SoundSport Headphones,1,99.99,11/13/19 13:11,"56 River St, Los Angeles, CA 90001" +296901,AAA Batteries (4-pack),2,2.99,11/18/19 19:16,"399 Hill St, Boston, MA 02215" +296902,34in Ultrawide Monitor,1,379.99,11/27/19 17:51,"250 6th St, Dallas, TX 75001" +296903,27in FHD Monitor,1,149.99,11/24/19 12:52,"340 Main St, Boston, MA 02215" +296904,Wired Headphones,2,11.99,11/19/19 18:08,"185 South St, New York City, NY 10001" +296905,AA Batteries (4-pack),1,3.84,11/20/19 20:41,"941 1st St, San Francisco, CA 94016" +296906,Bose SoundSport Headphones,1,99.99,11/19/19 10:19,"334 Lakeview St, Boston, MA 02215" +296907,iPhone,1,700,11/02/19 20:45,"732 9th St, New York City, NY 10001" +296908,Wired Headphones,1,11.99,11/21/19 10:53,"141 2nd St, New York City, NY 10001" +296909,AA Batteries (4-pack),3,3.84,11/04/19 19:29,"418 River St, San Francisco, CA 94016" +296910,AA Batteries (4-pack),1,3.84,11/11/19 18:47,"837 1st St, Atlanta, GA 30301" +296911,iPhone,1,700,11/20/19 18:03,"857 Hill St, Austin, TX 73301" +296912,Bose SoundSport Headphones,1,99.99,11/12/19 19:13,"564 Lake St, Boston, MA 02215" +296913,AAA Batteries (4-pack),1,2.99,11/05/19 07:47,"65 Highland St, San Francisco, CA 94016" +296914,USB-C Charging Cable,1,11.95,11/02/19 20:24,"623 Hill St, Dallas, TX 75001" +296915,USB-C Charging Cable,1,11.95,11/17/19 17:54,"908 4th St, Austin, TX 73301" +296916,AA Batteries (4-pack),2,3.84,11/30/19 00:43,"198 Ridge St, San Francisco, CA 94016" +296917,Bose SoundSport Headphones,1,99.99,11/06/19 20:09,"303 Washington St, New York City, NY 10001" +296918,Bose SoundSport Headphones,1,99.99,11/06/19 10:00,"696 Church St, San Francisco, CA 94016" +296919,iPhone,1,700,11/05/19 10:24,"899 Park St, Los Angeles, CA 90001" +296920,Lightning Charging Cable,1,14.95,11/10/19 10:04,"512 North St, San Francisco, CA 94016" +296921,Wired Headphones,1,11.99,11/28/19 15:29,"875 13th St, New York City, NY 10001" +296922,Lightning Charging Cable,1,14.95,11/06/19 14:57,"815 West St, Dallas, TX 75001" +296923,Bose SoundSport Headphones,1,99.99,11/07/19 12:38,"197 Highland St, New York City, NY 10001" +296924,iPhone,1,700,11/11/19 18:04,"930 Cherry St, Boston, MA 02215" +296925,AAA Batteries (4-pack),2,2.99,11/27/19 19:48,"619 Forest St, Boston, MA 02215" +296926,Bose SoundSport Headphones,1,99.99,11/22/19 19:03,"176 Maple St, San Francisco, CA 94016" +296927,Macbook Pro Laptop,1,1700,11/02/19 13:47,"811 South St, New York City, NY 10001" +296928,Wired Headphones,1,11.99,11/28/19 11:58,"865 Hill St, Dallas, TX 75001" +296929,AA Batteries (4-pack),1,3.84,11/07/19 11:54,"199 5th St, Los Angeles, CA 90001" +296930,Bose SoundSport Headphones,1,99.99,11/24/19 07:43,"539 Adams St, New York City, NY 10001" +296931,Bose SoundSport Headphones,1,99.99,11/20/19 08:30,"569 Main St, New York City, NY 10001" +296932,Lightning Charging Cable,1,14.95,11/23/19 15:16,"688 Forest St, Seattle, WA 98101" +296933,AA Batteries (4-pack),2,3.84,11/18/19 06:17,"489 Cedar St, San Francisco, CA 94016" +296934,AA Batteries (4-pack),2,3.84,11/23/19 09:28,"56 6th St, Portland, ME 04101" +296935,Wired Headphones,1,11.99,11/01/19 14:22,"428 Lake St, San Francisco, CA 94016" +296936,Lightning Charging Cable,1,14.95,11/18/19 11:15,"694 14th St, Dallas, TX 75001" +296937,Wired Headphones,1,11.99,11/03/19 14:41,"552 Lake St, New York City, NY 10001" +296938,Wired Headphones,1,11.99,11/16/19 17:55,"550 River St, San Francisco, CA 94016" +296939,Flatscreen TV,1,300,11/15/19 19:50,"835 Dogwood St, Portland, OR 97035" +296940,27in 4K Gaming Monitor,1,389.99,11/12/19 09:12,"541 Adams St, San Francisco, CA 94016" +296941,AAA Batteries (4-pack),1,2.99,11/25/19 15:14,"298 Jefferson St, Portland, OR 97035" +296942,AA Batteries (4-pack),1,3.84,11/16/19 15:53,"388 5th St, New York City, NY 10001" +296943,Apple Airpods Headphones,1,150,11/10/19 10:38,"803 Spruce St, San Francisco, CA 94016" +296944,USB-C Charging Cable,1,11.95,11/20/19 01:52,"682 Spruce St, Los Angeles, CA 90001" +296945,Apple Airpods Headphones,1,150,11/09/19 15:43,"194 Walnut St, Atlanta, GA 30301" +296946,ThinkPad Laptop,1,999.99,11/19/19 20:45,"322 Main St, Los Angeles, CA 90001" +296947,Apple Airpods Headphones,1,150,11/20/19 12:46,"329 Elm St, Boston, MA 02215" +296948,Macbook Pro Laptop,1,1700,11/13/19 16:26,"403 Dogwood St, Los Angeles, CA 90001" +296949,Macbook Pro Laptop,1,1700,11/10/19 15:02,"478 Center St, Seattle, WA 98101" +296950,AAA Batteries (4-pack),1,2.99,11/12/19 22:54,"2 Willow St, Boston, MA 02215" +296951,USB-C Charging Cable,1,11.95,11/19/19 20:52,"391 Washington St, Dallas, TX 75001" +296952,Lightning Charging Cable,1,14.95,11/15/19 22:09,"36 Lakeview St, Boston, MA 02215" +296953,Lightning Charging Cable,1,14.95,11/20/19 00:47,"753 South St, San Francisco, CA 94016" +296954,27in 4K Gaming Monitor,1,389.99,11/12/19 15:43,"157 Pine St, New York City, NY 10001" +296955,Bose SoundSport Headphones,1,99.99,11/17/19 18:10,"856 Ridge St, Boston, MA 02215" +296956,Apple Airpods Headphones,1,150,11/03/19 16:10,"961 4th St, Boston, MA 02215" +296957,27in 4K Gaming Monitor,1,389.99,11/11/19 15:02,"55 River St, Los Angeles, CA 90001" +296958,Bose SoundSport Headphones,1,99.99,11/19/19 14:17,"83 Cedar St, New York City, NY 10001" +296959,34in Ultrawide Monitor,1,379.99,11/12/19 19:22,"672 Highland St, San Francisco, CA 94016" +296960,USB-C Charging Cable,1,11.95,11/29/19 11:26,"321 South St, Los Angeles, CA 90001" +296961,27in 4K Gaming Monitor,1,389.99,11/24/19 17:58,"298 Hill St, Los Angeles, CA 90001" +296962,Lightning Charging Cable,1,14.95,11/01/19 17:15,"37 Pine St, New York City, NY 10001" +296963,USB-C Charging Cable,1,11.95,11/15/19 15:02,"489 Maple St, Portland, OR 97035" +296964,Apple Airpods Headphones,1,150,11/17/19 22:12,"902 Park St, Atlanta, GA 30301" +296965,Macbook Pro Laptop,1,1700,11/30/19 14:25,"646 Main St, Atlanta, GA 30301" +296966,Wired Headphones,1,11.99,11/22/19 16:40,"864 Adams St, Boston, MA 02215" +296967,AA Batteries (4-pack),1,3.84,11/24/19 20:12,"336 12th St, San Francisco, CA 94016" +296968,Lightning Charging Cable,1,14.95,11/21/19 17:12,"575 Adams St, New York City, NY 10001" +296969,20in Monitor,1,109.99,11/30/19 13:05,"649 Sunset St, Atlanta, GA 30301" +296970,34in Ultrawide Monitor,1,379.99,11/19/19 21:32,"682 8th St, Austin, TX 73301" +296971,Apple Airpods Headphones,1,150,11/24/19 22:50,"818 Lakeview St, Los Angeles, CA 90001" +296972,Google Phone,1,600,11/09/19 12:39,"530 Meadow St, Los Angeles, CA 90001" +296973,USB-C Charging Cable,1,11.95,11/09/19 10:11,"854 1st St, Boston, MA 02215" +296974,AAA Batteries (4-pack),1,2.99,11/28/19 00:27,"90 Cedar St, San Francisco, CA 94016" +,,,,, +296975,ThinkPad Laptop,1,999.99,11/11/19 21:19,"291 Johnson St, San Francisco, CA 94016" +296976,Wired Headphones,1,11.99,11/22/19 10:24,"21 River St, San Francisco, CA 94016" +296977,Wired Headphones,1,11.99,11/13/19 07:34,"223 Main St, San Francisco, CA 94016" +296978,AA Batteries (4-pack),1,3.84,11/06/19 10:17,"568 Center St, Portland, OR 97035" +296979,Google Phone,1,600,11/29/19 21:11,"179 Elm St, Portland, OR 97035" +296979,USB-C Charging Cable,1,11.95,11/29/19 21:11,"179 Elm St, Portland, OR 97035" +296980,20in Monitor,1,109.99,11/28/19 20:43,"909 Lincoln St, San Francisco, CA 94016" +296981,USB-C Charging Cable,1,11.95,11/11/19 18:41,"835 Walnut St, San Francisco, CA 94016" +296982,Wired Headphones,1,11.99,11/05/19 15:57,"964 Center St, Los Angeles, CA 90001" +296983,Bose SoundSport Headphones,1,99.99,11/14/19 21:54,"850 Adams St, Boston, MA 02215" +296984,AAA Batteries (4-pack),1,2.99,11/03/19 17:18,"703 Sunset St, San Francisco, CA 94016" +296985,Wired Headphones,1,11.99,11/11/19 16:45,"300 Highland St, San Francisco, CA 94016" +296986,Bose SoundSport Headphones,1,99.99,11/01/19 15:36,"380 Lake St, Boston, MA 02215" +296987,34in Ultrawide Monitor,1,379.99,11/02/19 15:20,"654 Jefferson St, Los Angeles, CA 90001" +296988,Bose SoundSport Headphones,1,99.99,11/18/19 16:39,"727 Hickory St, New York City, NY 10001" +296989,34in Ultrawide Monitor,1,379.99,11/25/19 11:17,"896 Hill St, New York City, NY 10001" +296990,AA Batteries (4-pack),1,3.84,11/20/19 11:27,"434 Forest St, New York City, NY 10001" +296991,Lightning Charging Cable,1,14.95,11/15/19 11:12,"118 Meadow St, Los Angeles, CA 90001" +296992,20in Monitor,1,109.99,11/02/19 14:42,"197 Maple St, Los Angeles, CA 90001" +296993,27in 4K Gaming Monitor,1,389.99,11/20/19 20:19,"188 Ridge St, New York City, NY 10001" +296994,Vareebadd Phone,1,400,11/03/19 13:33,"12 14th St, Portland, OR 97035" +296995,iPhone,1,700,11/18/19 18:41,"64 Center St, Atlanta, GA 30301" +296996,Wired Headphones,1,11.99,11/01/19 05:43,"981 Spruce St, Boston, MA 02215" +296997,Bose SoundSport Headphones,1,99.99,11/12/19 19:25,"131 Lake St, New York City, NY 10001" +296998,Lightning Charging Cable,1,14.95,11/04/19 20:28,"42 4th St, Dallas, TX 75001" +296999,Bose SoundSport Headphones,1,99.99,11/30/19 14:34,"285 Walnut St, Boston, MA 02215" +297000,Lightning Charging Cable,1,14.95,11/30/19 23:27,"596 8th St, San Francisco, CA 94016" +297001,Lightning Charging Cable,1,14.95,11/05/19 18:15,"539 South St, San Francisco, CA 94016" +297002,Lightning Charging Cable,1,14.95,11/19/19 19:54,"642 Park St, San Francisco, CA 94016" +297003,AAA Batteries (4-pack),1,2.99,11/01/19 20:20,"118 Lake St, San Francisco, CA 94016" +297004,Wired Headphones,2,11.99,11/04/19 13:37,"784 Meadow St, New York City, NY 10001" +297005,USB-C Charging Cable,1,11.95,11/15/19 06:46,"877 South St, Los Angeles, CA 90001" +297006,27in FHD Monitor,1,149.99,11/28/19 00:25,"934 Pine St, Seattle, WA 98101" +297007,Flatscreen TV,1,300,11/06/19 12:52,"966 10th St, San Francisco, CA 94016" +297008,USB-C Charging Cable,1,11.95,11/23/19 02:18,"594 9th St, Boston, MA 02215" +297009,iPhone,1,700,11/22/19 11:59,"569 Lake St, New York City, NY 10001" +297009,Wired Headphones,1,11.99,11/22/19 11:59,"569 Lake St, New York City, NY 10001" +297010,Macbook Pro Laptop,1,1700,11/14/19 11:52,"113 2nd St, Portland, OR 97035" +297011,Apple Airpods Headphones,1,150,11/02/19 12:39,"213 West St, Los Angeles, CA 90001" +297012,AA Batteries (4-pack),1,3.84,11/05/19 15:15,"229 Elm St, San Francisco, CA 94016" +297013,Wired Headphones,1,11.99,11/30/19 21:44,"414 10th St, Boston, MA 02215" +297014,Bose SoundSport Headphones,1,99.99,11/30/19 12:11,"409 Meadow St, Boston, MA 02215" +297015,27in FHD Monitor,1,149.99,11/15/19 14:29,"319 Park St, Austin, TX 73301" +297016,LG Dryer,1,600.0,11/20/19 13:51,"252 12th St, Los Angeles, CA 90001" +297017,27in FHD Monitor,1,149.99,11/12/19 19:29,"606 13th St, San Francisco, CA 94016" +297018,Lightning Charging Cable,1,14.95,11/04/19 13:40,"408 4th St, San Francisco, CA 94016" +297019,Google Phone,1,600,11/10/19 20:03,"193 12th St, Dallas, TX 75001" +297020,USB-C Charging Cable,1,11.95,11/10/19 10:47,"398 10th St, Dallas, TX 75001" +297021,AAA Batteries (4-pack),1,2.99,11/06/19 13:16,"990 6th St, Boston, MA 02215" +297022,Flatscreen TV,1,300,11/19/19 08:06,"404 Spruce St, Austin, TX 73301" +297023,Flatscreen TV,1,300,11/18/19 01:06,"265 River St, Atlanta, GA 30301" +297024,AAA Batteries (4-pack),1,2.99,11/17/19 10:47,"279 Lincoln St, San Francisco, CA 94016" +297025,20in Monitor,1,109.99,11/21/19 06:41,"129 Center St, San Francisco, CA 94016" +297026,Wired Headphones,1,11.99,11/29/19 16:23,"210 2nd St, Portland, OR 97035" +297027,Wired Headphones,1,11.99,11/16/19 09:03,"180 11th St, Los Angeles, CA 90001" +297028,Bose SoundSport Headphones,1,99.99,11/02/19 12:52,"610 Willow St, Boston, MA 02215" +297029,ThinkPad Laptop,1,999.99,11/03/19 19:41,"942 12th St, San Francisco, CA 94016" +297030,USB-C Charging Cable,1,11.95,11/19/19 19:59,"74 Hickory St, Boston, MA 02215" +297030,USB-C Charging Cable,1,11.95,11/19/19 19:59,"74 Hickory St, Boston, MA 02215" +297031,Lightning Charging Cable,1,14.95,11/22/19 18:38,"557 Pine St, San Francisco, CA 94016" +297032,Wired Headphones,1,11.99,11/17/19 22:28,"330 10th St, Los Angeles, CA 90001" +297033,AAA Batteries (4-pack),1,2.99,11/28/19 19:39,"290 Jefferson St, Dallas, TX 75001" +297034,AAA Batteries (4-pack),1,2.99,11/27/19 19:06,"295 Church St, Boston, MA 02215" +297035,34in Ultrawide Monitor,1,379.99,11/26/19 21:06,"701 Madison St, Los Angeles, CA 90001" +297036,AA Batteries (4-pack),2,3.84,11/12/19 14:56,"41 2nd St, San Francisco, CA 94016" +297037,27in FHD Monitor,1,149.99,11/30/19 20:11,"130 Main St, New York City, NY 10001" +297038,Flatscreen TV,1,300,11/03/19 23:39,"966 Cherry St, San Francisco, CA 94016" +297039,Wired Headphones,1,11.99,11/20/19 18:48,"780 Church St, Los Angeles, CA 90001" +297040,AA Batteries (4-pack),1,3.84,11/02/19 19:10,"618 Meadow St, Los Angeles, CA 90001" +297041,AA Batteries (4-pack),1,3.84,11/22/19 00:38,"225 Elm St, Los Angeles, CA 90001" +297042,Bose SoundSport Headphones,1,99.99,11/20/19 09:57,"499 River St, Boston, MA 02215" +297043,iPhone,1,700,11/24/19 20:35,"536 4th St, San Francisco, CA 94016" +297044,USB-C Charging Cable,1,11.95,11/08/19 00:03,"900 Johnson St, San Francisco, CA 94016" +297045,27in FHD Monitor,1,149.99,11/29/19 10:17,"139 Wilson St, Boston, MA 02215" +297046,Lightning Charging Cable,1,14.95,11/28/19 09:46,"759 Center St, Atlanta, GA 30301" +297047,Wired Headphones,1,11.99,11/27/19 08:37,"706 7th St, San Francisco, CA 94016" +297048,AAA Batteries (4-pack),1,2.99,11/08/19 10:38,"747 Johnson St, San Francisco, CA 94016" +297049,27in 4K Gaming Monitor,1,389.99,11/17/19 13:39,"656 North St, Atlanta, GA 30301" +297050,27in 4K Gaming Monitor,1,389.99,11/04/19 06:29,"814 North St, San Francisco, CA 94016" +297051,27in 4K Gaming Monitor,1,389.99,11/19/19 17:02,"467 Main St, Los Angeles, CA 90001" +297052,Flatscreen TV,1,300,11/27/19 19:35,"143 Cherry St, New York City, NY 10001" +297053,Apple Airpods Headphones,1,150,11/20/19 11:14,"703 Jackson St, Atlanta, GA 30301" +297054,Wired Headphones,1,11.99,11/27/19 00:31,"809 Jackson St, Boston, MA 02215" +297055,Lightning Charging Cable,1,14.95,11/14/19 07:40,"898 Pine St, Los Angeles, CA 90001" +297056,AAA Batteries (4-pack),1,2.99,11/21/19 14:57,"34 Center St, Boston, MA 02215" +297057,AA Batteries (4-pack),3,3.84,11/16/19 17:35,"210 Sunset St, Portland, OR 97035" +297058,Wired Headphones,1,11.99,11/14/19 10:18,"578 Jefferson St, San Francisco, CA 94016" +297059,USB-C Charging Cable,2,11.95,11/07/19 01:11,"760 Meadow St, Austin, TX 73301" +297060,USB-C Charging Cable,1,11.95,11/08/19 12:20,"897 Main St, Dallas, TX 75001" +297061,Lightning Charging Cable,1,14.95,11/27/19 09:45,"65 Lake St, Boston, MA 02215" +297062,AA Batteries (4-pack),1,3.84,11/26/19 05:29,"884 6th St, Seattle, WA 98101" +297063,Google Phone,1,600,11/04/19 13:01,"129 Main St, Atlanta, GA 30301" +297063,Bose SoundSport Headphones,1,99.99,11/04/19 13:01,"129 Main St, Atlanta, GA 30301" +297064,AAA Batteries (4-pack),1,2.99,11/03/19 20:02,"422 Jackson St, Dallas, TX 75001" +297065,20in Monitor,1,109.99,11/04/19 19:03,"122 Elm St, San Francisco, CA 94016" +297066,Wired Headphones,1,11.99,11/05/19 12:04,"453 Ridge St, San Francisco, CA 94016" +297067,27in 4K Gaming Monitor,1,389.99,11/02/19 00:29,"159 Washington St, Boston, MA 02215" +297068,Lightning Charging Cable,1,14.95,11/24/19 10:04,"898 Meadow St, Los Angeles, CA 90001" +297069,Bose SoundSport Headphones,1,99.99,11/06/19 10:01,"574 Madison St, San Francisco, CA 94016" +297070,ThinkPad Laptop,1,999.99,11/29/19 20:24,"158 13th St, San Francisco, CA 94016" +297071,Wired Headphones,1,11.99,11/23/19 00:04,"291 Chestnut St, Boston, MA 02215" +297072,USB-C Charging Cable,1,11.95,11/25/19 00:12,"258 Main St, Los Angeles, CA 90001" +297072,Apple Airpods Headphones,1,150,11/25/19 00:12,"258 Main St, Los Angeles, CA 90001" +297073,USB-C Charging Cable,1,11.95,11/07/19 12:54,"752 Hill St, Dallas, TX 75001" +297074,Apple Airpods Headphones,1,150,11/09/19 05:31,"9 Adams St, Boston, MA 02215" +297075,Wired Headphones,1,11.99,11/12/19 13:29,"506 Cherry St, San Francisco, CA 94016" +297076,27in 4K Gaming Monitor,1,389.99,11/07/19 20:59,"438 Jackson St, Atlanta, GA 30301" +297077,Apple Airpods Headphones,1,150,11/10/19 23:11,"456 Park St, New York City, NY 10001" +297078,Lightning Charging Cable,1,14.95,11/17/19 10:50,"462 Madison St, Seattle, WA 98101" +297079,Flatscreen TV,1,300,11/05/19 17:34,"278 14th St, Atlanta, GA 30301" +297080,Wired Headphones,2,11.99,11/12/19 20:06,"508 Lake St, New York City, NY 10001" +297081,Apple Airpods Headphones,1,150,11/30/19 18:51,"216 5th St, Seattle, WA 98101" +297082,ThinkPad Laptop,1,999.99,11/22/19 14:29,"38 11th St, San Francisco, CA 94016" +297083,Apple Airpods Headphones,1,150,11/08/19 15:25,"533 Cherry St, Los Angeles, CA 90001" +297084,Apple Airpods Headphones,1,150,11/01/19 18:05,"159 Wilson St, Austin, TX 73301" +297085,USB-C Charging Cable,1,11.95,11/20/19 19:00,"719 Spruce St, Los Angeles, CA 90001" +297086,AA Batteries (4-pack),1,3.84,11/09/19 22:18,"310 Walnut St, Boston, MA 02215" +297087,USB-C Charging Cable,1,11.95,11/28/19 13:33,"804 Lakeview St, Seattle, WA 98101" +297088,Lightning Charging Cable,2,14.95,11/25/19 14:00,"721 Main St, Atlanta, GA 30301" +297089,Lightning Charging Cable,1,14.95,11/14/19 22:36,"767 11th St, San Francisco, CA 94016" +297090,AAA Batteries (4-pack),1,2.99,11/20/19 08:45,"452 Park St, Dallas, TX 75001" +297091,USB-C Charging Cable,1,11.95,11/29/19 04:02,"916 Pine St, San Francisco, CA 94016" +297092,27in 4K Gaming Monitor,1,389.99,11/04/19 19:29,"690 Wilson St, Portland, OR 97035" +297093,34in Ultrawide Monitor,1,379.99,11/17/19 11:18,"141 Pine St, Los Angeles, CA 90001" +297094,Lightning Charging Cable,1,14.95,11/28/19 21:49,"617 Pine St, San Francisco, CA 94016" +297095,Bose SoundSport Headphones,1,99.99,11/14/19 16:56,"835 River St, San Francisco, CA 94016" +297096,iPhone,1,700,11/18/19 17:23,"852 Pine St, Boston, MA 02215" +297096,Lightning Charging Cable,1,14.95,11/18/19 17:23,"852 Pine St, Boston, MA 02215" +297097,Lightning Charging Cable,1,14.95,11/02/19 15:58,"808 Dogwood St, Los Angeles, CA 90001" +297098,Google Phone,1,600,11/13/19 11:20,"973 River St, San Francisco, CA 94016" +297099,Lightning Charging Cable,1,14.95,11/17/19 09:28,"151 Dogwood St, Atlanta, GA 30301" +297100,Lightning Charging Cable,1,14.95,11/15/19 19:32,"274 Washington St, Los Angeles, CA 90001" +297101,27in 4K Gaming Monitor,1,389.99,11/14/19 03:51,"744 Wilson St, Boston, MA 02215" +297102,Lightning Charging Cable,1,14.95,12/01/19 03:51,"786 Chestnut St, Boston, MA 02215" +297103,USB-C Charging Cable,1,11.95,11/22/19 01:16,"986 Jefferson St, New York City, NY 10001" +297104,Wired Headphones,1,11.99,11/22/19 11:45,"706 Maple St, Los Angeles, CA 90001" +297105,Wired Headphones,1,11.99,11/11/19 15:45,"123 North St, Seattle, WA 98101" +297106,Lightning Charging Cable,1,14.95,11/06/19 23:54,"989 Jackson St, New York City, NY 10001" +297107,AA Batteries (4-pack),1,3.84,11/27/19 18:28,"222 Church St, San Francisco, CA 94016" +297108,20in Monitor,1,109.99,11/11/19 13:08,"804 Main St, San Francisco, CA 94016" +297109,AAA Batteries (4-pack),1,2.99,11/15/19 18:58,"542 Elm St, San Francisco, CA 94016" +297110,Lightning Charging Cable,1,14.95,11/19/19 21:17,"681 2nd St, San Francisco, CA 94016" +297111,AA Batteries (4-pack),2,3.84,11/11/19 17:37,"791 11th St, San Francisco, CA 94016" +297112,AAA Batteries (4-pack),2,2.99,11/23/19 07:55,"320 Elm St, Boston, MA 02215" +297113,Apple Airpods Headphones,1,150,11/16/19 17:42,"249 Dogwood St, Dallas, TX 75001" +,,,,, +297114,Lightning Charging Cable,1,14.95,11/15/19 16:03,"682 Walnut St, Seattle, WA 98101" +297115,AAA Batteries (4-pack),3,2.99,11/06/19 01:35,"617 Maple St, San Francisco, CA 94016" +297116,AA Batteries (4-pack),1,3.84,11/15/19 08:00,"157 Jackson St, New York City, NY 10001" +297117,Lightning Charging Cable,1,14.95,11/24/19 01:14,"361 Forest St, Dallas, TX 75001" +297118,Lightning Charging Cable,1,14.95,11/05/19 19:27,"422 2nd St, Boston, MA 02215" +297119,Bose SoundSport Headphones,1,99.99,11/20/19 13:11,"926 Lincoln St, San Francisco, CA 94016" +297120,Wired Headphones,1,11.99,11/26/19 00:32,"256 Elm St, Dallas, TX 75001" +297121,Flatscreen TV,1,300,11/24/19 17:45,"120 1st St, San Francisco, CA 94016" +297122,Bose SoundSport Headphones,1,99.99,11/12/19 17:25,"229 South St, Seattle, WA 98101" +297123,27in FHD Monitor,1,149.99,11/14/19 03:05,"561 Lake St, Dallas, TX 75001" +297124,Flatscreen TV,1,300,11/21/19 11:52,"350 Wilson St, San Francisco, CA 94016" +297125,AA Batteries (4-pack),1,3.84,11/04/19 17:17,"925 2nd St, Los Angeles, CA 90001" +297126,AAA Batteries (4-pack),2,2.99,11/16/19 15:45,"368 Chestnut St, Los Angeles, CA 90001" +297127,AAA Batteries (4-pack),1,2.99,11/04/19 23:27,"579 North St, New York City, NY 10001" +297128,Macbook Pro Laptop,1,1700,11/01/19 17:35,"856 Park St, Atlanta, GA 30301" +297128,Apple Airpods Headphones,1,150,11/01/19 17:35,"856 Park St, Atlanta, GA 30301" +297129,27in FHD Monitor,1,149.99,11/14/19 18:33,"40 Walnut St, Portland, OR 97035" +297130,AAA Batteries (4-pack),2,2.99,11/21/19 20:19,"619 9th St, San Francisco, CA 94016" +297131,20in Monitor,1,109.99,11/30/19 13:35,"529 14th St, New York City, NY 10001" +297132,USB-C Charging Cable,1,11.95,11/09/19 08:35,"158 South St, Los Angeles, CA 90001" +297133,AAA Batteries (4-pack),2,2.99,11/10/19 11:53,"366 Lincoln St, Seattle, WA 98101" +297134,AA Batteries (4-pack),3,3.84,11/03/19 23:09,"388 Main St, Los Angeles, CA 90001" +297135,AAA Batteries (4-pack),1,2.99,11/19/19 13:29,"626 Cherry St, Los Angeles, CA 90001" +297136,Lightning Charging Cable,1,14.95,11/08/19 11:17,"358 River St, Los Angeles, CA 90001" +297137,Macbook Pro Laptop,1,1700,11/23/19 16:14,"603 Elm St, Dallas, TX 75001" +297138,AAA Batteries (4-pack),4,2.99,11/26/19 12:52,"798 River St, San Francisco, CA 94016" +297139,AA Batteries (4-pack),1,3.84,11/13/19 11:08,"969 10th St, Seattle, WA 98101" +297140,Apple Airpods Headphones,1,150,11/23/19 13:20,"99 Pine St, San Francisco, CA 94016" +297141,USB-C Charging Cable,1,11.95,11/27/19 13:41,"670 Lincoln St, Portland, ME 04101" +297142,Bose SoundSport Headphones,1,99.99,11/11/19 10:02,"466 Jefferson St, Seattle, WA 98101" +297143,AAA Batteries (4-pack),2,2.99,11/15/19 07:07,"245 Maple St, Dallas, TX 75001" +297144,AA Batteries (4-pack),2,3.84,11/15/19 19:11,"871 Jefferson St, San Francisco, CA 94016" +297145,Apple Airpods Headphones,1,150,11/08/19 06:48,"376 1st St, Portland, OR 97035" +297146,34in Ultrawide Monitor,1,379.99,11/17/19 05:32,"805 Adams St, San Francisco, CA 94016" +297147,Bose SoundSport Headphones,1,99.99,11/16/19 08:35,"68 Lake St, San Francisco, CA 94016" +297148,34in Ultrawide Monitor,1,379.99,11/23/19 08:00,"831 Elm St, Boston, MA 02215" +297149,USB-C Charging Cable,2,11.95,11/12/19 19:31,"867 Cherry St, Atlanta, GA 30301" +297149,USB-C Charging Cable,1,11.95,11/12/19 19:31,"867 Cherry St, Atlanta, GA 30301" +297150,USB-C Charging Cable,1,11.95,11/18/19 20:46,"977 9th St, San Francisco, CA 94016" +297151,AA Batteries (4-pack),2,3.84,11/09/19 22:04,"751 Forest St, Seattle, WA 98101" +297152,AAA Batteries (4-pack),1,2.99,11/17/19 15:50,"267 Cedar St, Los Angeles, CA 90001" +297153,Wired Headphones,1,11.99,11/23/19 07:41,"532 14th St, San Francisco, CA 94016" +297154,iPhone,1,700,11/23/19 09:34,"182 Madison St, San Francisco, CA 94016" +297154,Wired Headphones,1,11.99,11/23/19 09:34,"182 Madison St, San Francisco, CA 94016" +297155,Flatscreen TV,1,300,11/09/19 13:24,"742 14th St, Portland, OR 97035" +297156,AAA Batteries (4-pack),2,2.99,11/08/19 17:50,"260 14th St, Atlanta, GA 30301" +297157,iPhone,1,700,11/18/19 23:35,"674 Johnson St, San Francisco, CA 94016" +297158,Flatscreen TV,1,300,11/04/19 15:10,"472 13th St, Los Angeles, CA 90001" +297159,27in 4K Gaming Monitor,1,389.99,11/13/19 01:50,"115 9th St, San Francisco, CA 94016" +297160,AA Batteries (4-pack),2,3.84,11/03/19 10:44,"444 Lincoln St, Dallas, TX 75001" +297161,ThinkPad Laptop,1,999.99,11/17/19 10:34,"898 Cedar St, Los Angeles, CA 90001" +297162,27in 4K Gaming Monitor,1,389.99,11/12/19 08:40,"809 South St, Los Angeles, CA 90001" +297163,27in FHD Monitor,1,149.99,11/03/19 14:30,"723 Chestnut St, San Francisco, CA 94016" +297164,27in 4K Gaming Monitor,1,389.99,11/09/19 20:02,"145 Sunset St, New York City, NY 10001" +297165,Lightning Charging Cable,1,14.95,11/10/19 10:41,"905 6th St, Atlanta, GA 30301" +297166,AAA Batteries (4-pack),1,2.99,11/28/19 23:41,"203 7th St, Portland, ME 04101" +297167,Bose SoundSport Headphones,1,99.99,11/20/19 16:15,"806 Jefferson St, New York City, NY 10001" +297168,AA Batteries (4-pack),1,3.84,11/19/19 19:49,"646 Cedar St, Boston, MA 02215" +297169,Apple Airpods Headphones,1,150,11/19/19 11:06,"856 Jefferson St, New York City, NY 10001" +297170,20in Monitor,1,109.99,11/09/19 14:09,"851 Pine St, New York City, NY 10001" +297171,20in Monitor,1,109.99,11/22/19 21:18,"455 13th St, Dallas, TX 75001" +297172,Wired Headphones,1,11.99,11/23/19 11:30,"392 Walnut St, Los Angeles, CA 90001" +297173,Lightning Charging Cable,1,14.95,11/19/19 13:19,"574 Wilson St, Dallas, TX 75001" +297174,34in Ultrawide Monitor,1,379.99,11/11/19 18:51,"268 Meadow St, San Francisco, CA 94016" +297175,LG Washing Machine,1,600.0,11/29/19 18:33,"715 14th St, Los Angeles, CA 90001" +297176,Google Phone,1,600,11/04/19 21:47,"250 Dogwood St, San Francisco, CA 94016" +297177,Apple Airpods Headphones,1,150,11/26/19 13:43,"905 8th St, Portland, OR 97035" +297178,USB-C Charging Cable,1,11.95,11/30/19 04:23,"44 Lakeview St, Los Angeles, CA 90001" +297179,AAA Batteries (4-pack),1,2.99,11/02/19 17:29,"68 Jackson St, Dallas, TX 75001" +297180,AAA Batteries (4-pack),1,2.99,11/30/19 02:57,"532 Johnson St, Seattle, WA 98101" +297181,Bose SoundSport Headphones,1,99.99,11/28/19 23:08,"18 1st St, San Francisco, CA 94016" +297182,Wired Headphones,1,11.99,11/21/19 16:11,"610 Sunset St, Los Angeles, CA 90001" +297183,AAA Batteries (4-pack),3,2.99,11/20/19 02:02,"499 Willow St, New York City, NY 10001" +297184,USB-C Charging Cable,1,11.95,11/20/19 01:33,"370 Adams St, Los Angeles, CA 90001" +297185,Flatscreen TV,1,300,11/30/19 09:59,"114 13th St, San Francisco, CA 94016" +297186,Lightning Charging Cable,1,14.95,11/07/19 07:45,"511 4th St, Dallas, TX 75001" +297187,AA Batteries (4-pack),2,3.84,11/28/19 11:57,"294 Elm St, New York City, NY 10001" +297188,AA Batteries (4-pack),1,3.84,11/25/19 17:19,"265 North St, Boston, MA 02215" +297189,iPhone,1,700,11/08/19 10:08,"590 11th St, Austin, TX 73301" +297190,Apple Airpods Headphones,1,150,11/12/19 09:42,"669 11th St, New York City, NY 10001" +297191,27in FHD Monitor,1,149.99,11/16/19 15:36,"334 5th St, Atlanta, GA 30301" +297192,Flatscreen TV,1,300,11/18/19 22:27,"561 Forest St, San Francisco, CA 94016" +297193,USB-C Charging Cable,1,11.95,11/29/19 09:41,"45 Cedar St, Los Angeles, CA 90001" +297194,USB-C Charging Cable,1,11.95,11/17/19 14:10,"425 11th St, Los Angeles, CA 90001" +297195,USB-C Charging Cable,1,11.95,11/01/19 17:25,"73 Cherry St, Dallas, TX 75001" +297196,AAA Batteries (4-pack),1,2.99,11/04/19 06:37,"116 Main St, Atlanta, GA 30301" +,,,,, +297197,USB-C Charging Cable,1,11.95,11/04/19 08:17,"982 2nd St, Atlanta, GA 30301" +297198,Flatscreen TV,1,300,11/01/19 11:30,"766 13th St, New York City, NY 10001" +297199,AA Batteries (4-pack),2,3.84,11/24/19 15:52,"981 Forest St, New York City, NY 10001" +297200,Lightning Charging Cable,1,14.95,11/24/19 09:49,"706 13th St, San Francisco, CA 94016" +297201,AA Batteries (4-pack),4,3.84,11/02/19 17:24,"430 6th St, Austin, TX 73301" +297202,Apple Airpods Headphones,1,150,11/21/19 20:39,"922 Willow St, San Francisco, CA 94016" +297203,Apple Airpods Headphones,1,150,11/13/19 15:58,"490 Sunset St, San Francisco, CA 94016" +297204,USB-C Charging Cable,1,11.95,11/17/19 14:44,"241 Hickory St, Los Angeles, CA 90001" +297205,USB-C Charging Cable,1,11.95,11/17/19 13:31,"983 Center St, Boston, MA 02215" +297206,Wired Headphones,1,11.99,11/25/19 10:46,"905 11th St, Boston, MA 02215" +297207,34in Ultrawide Monitor,1,379.99,11/01/19 07:17,"323 Madison St, Dallas, TX 75001" +297208,Flatscreen TV,1,300,11/29/19 16:42,"62 Adams St, New York City, NY 10001" +297209,27in FHD Monitor,1,149.99,11/23/19 13:18,"103 6th St, San Francisco, CA 94016" +297210,27in FHD Monitor,1,149.99,11/16/19 14:10,"624 7th St, Seattle, WA 98101" +297211,AA Batteries (4-pack),2,3.84,11/22/19 19:19,"505 Cedar St, New York City, NY 10001" +297212,Bose SoundSport Headphones,1,99.99,11/07/19 08:32,"276 Cedar St, New York City, NY 10001" +297213,Bose SoundSport Headphones,1,99.99,11/09/19 19:08,"659 Sunset St, Boston, MA 02215" +297214,AAA Batteries (4-pack),1,2.99,11/08/19 09:33,"851 5th St, Seattle, WA 98101" +297215,Lightning Charging Cable,1,14.95,11/15/19 15:38,"862 Lakeview St, Los Angeles, CA 90001" +297216,34in Ultrawide Monitor,1,379.99,11/10/19 19:50,"268 Sunset St, Seattle, WA 98101" +297217,AAA Batteries (4-pack),1,2.99,11/23/19 13:08,"368 7th St, San Francisco, CA 94016" +297218,Macbook Pro Laptop,1,1700,11/25/19 14:16,"574 14th St, Seattle, WA 98101" +297219,Wired Headphones,1,11.99,11/03/19 17:19,"495 Hickory St, Los Angeles, CA 90001" +297220,AAA Batteries (4-pack),1,2.99,11/23/19 18:15,"56 Forest St, Los Angeles, CA 90001" +297221,AAA Batteries (4-pack),1,2.99,11/10/19 18:50,"775 4th St, Seattle, WA 98101" +297222,Wired Headphones,1,11.99,11/09/19 17:05,"473 Pine St, New York City, NY 10001" +,,,,, +297223,AA Batteries (4-pack),2,3.84,11/19/19 09:50,"755 Lake St, New York City, NY 10001" +297224,AAA Batteries (4-pack),1,2.99,11/19/19 17:19,"990 Meadow St, Los Angeles, CA 90001" +297225,Apple Airpods Headphones,1,150,11/18/19 11:31,"945 Cherry St, Seattle, WA 98101" +297225,Apple Airpods Headphones,1,150,11/18/19 11:31,"945 Cherry St, Seattle, WA 98101" +297226,Wired Headphones,1,11.99,11/25/19 11:01,"257 4th St, San Francisco, CA 94016" +297227,Wired Headphones,1,11.99,11/22/19 09:56,"50 13th St, Atlanta, GA 30301" +297228,Flatscreen TV,1,300,11/23/19 17:16,"50 Ridge St, San Francisco, CA 94016" +297229,AAA Batteries (4-pack),2,2.99,11/13/19 23:48,"185 1st St, Los Angeles, CA 90001" +297230,27in 4K Gaming Monitor,1,389.99,11/10/19 10:26,"187 Lakeview St, Los Angeles, CA 90001" +297231,Flatscreen TV,1,300,11/13/19 09:45,"655 2nd St, Los Angeles, CA 90001" +297232,Apple Airpods Headphones,1,150,11/24/19 19:20,"383 Hickory St, Atlanta, GA 30301" +297233,27in FHD Monitor,1,149.99,11/20/19 12:48,"705 Spruce St, San Francisco, CA 94016" +297234,AA Batteries (4-pack),1,3.84,11/02/19 10:46,"192 Cedar St, San Francisco, CA 94016" +297234,AAA Batteries (4-pack),1,2.99,11/02/19 10:46,"192 Cedar St, San Francisco, CA 94016" +297235,iPhone,1,700,11/29/19 16:26,"659 Willow St, New York City, NY 10001" +297236,Apple Airpods Headphones,1,150,11/01/19 22:46,"528 Chestnut St, San Francisco, CA 94016" +297237,Vareebadd Phone,1,400,11/02/19 10:35,"425 Church St, New York City, NY 10001" +297238,AA Batteries (4-pack),1,3.84,11/07/19 09:48,"998 6th St, Seattle, WA 98101" +297239,Flatscreen TV,1,300,11/09/19 11:47,"658 Walnut St, New York City, NY 10001" +297240,Bose SoundSport Headphones,1,99.99,11/25/19 19:51,"121 8th St, Atlanta, GA 30301" +297241,AAA Batteries (4-pack),2,2.99,11/09/19 20:42,"252 13th St, Dallas, TX 75001" +297242,27in 4K Gaming Monitor,1,389.99,11/17/19 11:02,"350 River St, Los Angeles, CA 90001" +297243,iPhone,1,700,11/10/19 14:38,"785 Wilson St, Dallas, TX 75001" +297243,Lightning Charging Cable,1,14.95,11/10/19 14:38,"785 Wilson St, Dallas, TX 75001" +297244,USB-C Charging Cable,1,11.95,11/20/19 01:00,"2 Forest St, San Francisco, CA 94016" +297245,AAA Batteries (4-pack),3,2.99,11/01/19 17:37,"966 Adams St, Atlanta, GA 30301" +297246,AAA Batteries (4-pack),2,2.99,11/15/19 17:51,"292 Spruce St, New York City, NY 10001" +297247,LG Dryer,1,600.0,11/12/19 21:20,"137 5th St, Atlanta, GA 30301" +297248,AA Batteries (4-pack),1,3.84,11/26/19 13:00,"233 Walnut St, Seattle, WA 98101" +297249,Bose SoundSport Headphones,1,99.99,11/22/19 13:07,"258 Pine St, Los Angeles, CA 90001" +297250,USB-C Charging Cable,1,11.95,11/27/19 13:37,"41 4th St, Portland, OR 97035" +297251,USB-C Charging Cable,1,11.95,11/25/19 12:09,"455 Center St, Dallas, TX 75001" +297252,Bose SoundSport Headphones,1,99.99,11/19/19 21:24,"252 Jefferson St, Boston, MA 02215" +297253,AAA Batteries (4-pack),3,2.99,11/09/19 18:06,"362 13th St, New York City, NY 10001" +297254,Wired Headphones,1,11.99,11/21/19 22:04,"625 13th St, Dallas, TX 75001" +297255,Macbook Pro Laptop,1,1700,11/04/19 09:34,"738 Cherry St, Dallas, TX 75001" +297256,AA Batteries (4-pack),1,3.84,11/26/19 17:31,"299 Willow St, Portland, OR 97035" +297257,Lightning Charging Cable,2,14.95,11/03/19 20:45,"881 Highland St, San Francisco, CA 94016" +297258,iPhone,1,700,11/12/19 06:01,"83 5th St, Dallas, TX 75001" +297259,USB-C Charging Cable,1,11.95,11/16/19 19:49,"638 Pine St, Austin, TX 73301" +297260,Wired Headphones,1,11.99,11/17/19 13:08,"585 Chestnut St, Atlanta, GA 30301" +297261,Flatscreen TV,1,300,11/11/19 13:55,"67 Lincoln St, San Francisco, CA 94016" +297262,ThinkPad Laptop,1,999.99,11/03/19 22:10,"38 14th St, Portland, OR 97035" +297263,iPhone,1,700,11/15/19 14:07,"689 Forest St, Los Angeles, CA 90001" +297264,AAA Batteries (4-pack),1,2.99,11/05/19 00:38,"940 Madison St, Boston, MA 02215" +297265,34in Ultrawide Monitor,1,379.99,11/12/19 13:06,"801 Johnson St, Los Angeles, CA 90001" +297266,Flatscreen TV,1,300,11/29/19 15:08,"965 North St, New York City, NY 10001" +297267,Vareebadd Phone,1,400,11/02/19 18:17,"517 11th St, Dallas, TX 75001" +297268,AAA Batteries (4-pack),1,2.99,11/22/19 10:43,"97 Walnut St, Boston, MA 02215" +297269,Lightning Charging Cable,1,14.95,11/21/19 11:13,"378 Lake St, Boston, MA 02215" +297270,Wired Headphones,1,11.99,11/29/19 23:41,"332 Maple St, Atlanta, GA 30301" +297271,Flatscreen TV,1,300,11/10/19 19:36,"923 Spruce St, Seattle, WA 98101" +297271,iPhone,1,700,11/10/19 19:36,"923 Spruce St, Seattle, WA 98101" +297272,USB-C Charging Cable,1,11.95,11/06/19 22:35,"384 Lake St, San Francisco, CA 94016" +297273,USB-C Charging Cable,1,11.95,11/16/19 16:05,"134 9th St, Dallas, TX 75001" +297274,Bose SoundSport Headphones,1,99.99,11/04/19 12:26,"416 Park St, Boston, MA 02215" +297275,AA Batteries (4-pack),1,3.84,11/03/19 11:10,"741 River St, Seattle, WA 98101" +297276,34in Ultrawide Monitor,1,379.99,11/08/19 14:36,"44 Jefferson St, New York City, NY 10001" +297277,Bose SoundSport Headphones,1,99.99,11/11/19 20:49,"493 2nd St, Los Angeles, CA 90001" +297278,AA Batteries (4-pack),1,3.84,11/14/19 21:22,"562 Main St, New York City, NY 10001" +297279,Bose SoundSport Headphones,2,99.99,11/15/19 16:44,"758 Forest St, Los Angeles, CA 90001" +297280,Bose SoundSport Headphones,1,99.99,11/15/19 21:57,"121 9th St, Seattle, WA 98101" +297281,AA Batteries (4-pack),2,3.84,11/24/19 17:58,"650 Lincoln St, Los Angeles, CA 90001" +297282,Lightning Charging Cable,1,14.95,11/30/19 12:07,"173 Wilson St, San Francisco, CA 94016" +297283,AA Batteries (4-pack),1,3.84,11/24/19 10:36,"174 River St, San Francisco, CA 94016" +297284,Bose SoundSport Headphones,1,99.99,11/03/19 22:11,"655 Elm St, San Francisco, CA 94016" +297285,Bose SoundSport Headphones,1,99.99,11/04/19 15:25,"312 2nd St, Los Angeles, CA 90001" +297286,27in FHD Monitor,1,149.99,11/25/19 00:33,"365 Forest St, Dallas, TX 75001" +297287,34in Ultrawide Monitor,1,379.99,11/23/19 19:41,"943 8th St, San Francisco, CA 94016" +297288,AAA Batteries (4-pack),1,2.99,11/10/19 18:23,"548 12th St, Los Angeles, CA 90001" +297289,AAA Batteries (4-pack),1,2.99,11/11/19 09:47,"150 Adams St, Seattle, WA 98101" +297290,iPhone,1,700,11/10/19 11:48,"870 Cedar St, San Francisco, CA 94016" +297290,Lightning Charging Cable,1,14.95,11/10/19 11:48,"870 Cedar St, San Francisco, CA 94016" +297290,Apple Airpods Headphones,1,150,11/10/19 11:48,"870 Cedar St, San Francisco, CA 94016" +297290,Wired Headphones,1,11.99,11/10/19 11:48,"870 Cedar St, San Francisco, CA 94016" +297291,Wired Headphones,1,11.99,11/22/19 15:13,"571 Highland St, Los Angeles, CA 90001" +297292,AAA Batteries (4-pack),2,2.99,11/04/19 13:15,"631 13th St, New York City, NY 10001" +297293,AA Batteries (4-pack),1,3.84,11/30/19 00:12,"235 Hill St, Seattle, WA 98101" +297294,Lightning Charging Cable,1,14.95,11/01/19 09:12,"500 12th St, San Francisco, CA 94016" +297295,Lightning Charging Cable,1,14.95,11/17/19 22:06,"727 Willow St, Portland, OR 97035" +297296,Wired Headphones,1,11.99,11/05/19 19:01,"288 1st St, New York City, NY 10001" +297297,ThinkPad Laptop,1,999.99,11/14/19 08:17,"20 Cedar St, Austin, TX 73301" +297298,ThinkPad Laptop,1,999.99,11/15/19 23:31,"496 Elm St, Atlanta, GA 30301" +297299,27in FHD Monitor,1,149.99,11/28/19 13:37,"815 Lincoln St, New York City, NY 10001" +297300,27in 4K Gaming Monitor,1,389.99,11/26/19 13:40,"348 Chestnut St, Los Angeles, CA 90001" +297301,USB-C Charging Cable,1,11.95,11/13/19 20:10,"882 14th St, Austin, TX 73301" +297302,Lightning Charging Cable,2,14.95,11/24/19 17:55,"711 Madison St, Atlanta, GA 30301" +297303,AAA Batteries (4-pack),2,2.99,11/01/19 10:38,"397 9th St, Los Angeles, CA 90001" +297304,AAA Batteries (4-pack),1,2.99,11/15/19 21:53,"800 Jefferson St, San Francisco, CA 94016" +297305,Lightning Charging Cable,1,14.95,11/01/19 04:52,"467 Washington St, New York City, NY 10001" +297306,Apple Airpods Headphones,1,150,11/19/19 01:23,"967 Meadow St, San Francisco, CA 94016" +297307,Lightning Charging Cable,1,14.95,11/26/19 07:20,"486 Main St, Austin, TX 73301" +297308,Apple Airpods Headphones,1,150,11/13/19 19:58,"599 12th St, Dallas, TX 75001" +297309,Wired Headphones,2,11.99,11/28/19 18:49,"883 Spruce St, Austin, TX 73301" +297310,AA Batteries (4-pack),1,3.84,11/05/19 12:47,"122 6th St, Dallas, TX 75001" +297311,27in 4K Gaming Monitor,1,389.99,11/23/19 19:19,"221 9th St, Atlanta, GA 30301" +297312,Lightning Charging Cable,1,14.95,11/24/19 18:29,"557 Lincoln St, San Francisco, CA 94016" +297313,AAA Batteries (4-pack),2,2.99,11/21/19 12:03,"500 5th St, New York City, NY 10001" +297314,AAA Batteries (4-pack),1,2.99,11/24/19 17:46,"46 Hill St, Los Angeles, CA 90001" +297315,AA Batteries (4-pack),1,3.84,11/12/19 01:08,"653 7th St, Seattle, WA 98101" +297316,USB-C Charging Cable,1,11.95,11/19/19 15:46,"359 Forest St, Seattle, WA 98101" +297317,Wired Headphones,1,11.99,11/07/19 20:44,"941 Washington St, Atlanta, GA 30301" +297318,Apple Airpods Headphones,1,150,11/05/19 23:43,"565 Lincoln St, Boston, MA 02215" +297319,AAA Batteries (4-pack),1,2.99,11/13/19 18:34,"736 Church St, New York City, NY 10001" +297320,USB-C Charging Cable,1,11.95,11/09/19 10:23,"204 Meadow St, Boston, MA 02215" +297321,AAA Batteries (4-pack),2,2.99,11/28/19 15:12,"232 4th St, San Francisco, CA 94016" +297322,Apple Airpods Headphones,1,150,11/29/19 22:16,"819 Pine St, New York City, NY 10001" +297323,Lightning Charging Cable,1,14.95,11/14/19 19:13,"224 Elm St, San Francisco, CA 94016" +297324,Lightning Charging Cable,2,14.95,11/25/19 18:25,"470 9th St, New York City, NY 10001" +297325,Bose SoundSport Headphones,1,99.99,11/01/19 05:32,"930 Ridge St, Boston, MA 02215" +297326,Wired Headphones,2,11.99,11/16/19 11:51,"458 Spruce St, Seattle, WA 98101" +297327,Macbook Pro Laptop,1,1700,11/02/19 21:39,"220 Adams St, Atlanta, GA 30301" +297328,ThinkPad Laptop,1,999.99,11/17/19 19:25,"642 Willow St, Portland, OR 97035" +297329,Lightning Charging Cable,1,14.95,11/21/19 14:07,"124 4th St, San Francisco, CA 94016" +297330,Wired Headphones,1,11.99,11/12/19 02:13,"671 Highland St, San Francisco, CA 94016" +297331,Wired Headphones,1,11.99,11/17/19 21:40,"707 Ridge St, New York City, NY 10001" +297332,USB-C Charging Cable,1,11.95,11/17/19 19:04,"993 Sunset St, Los Angeles, CA 90001" +297333,Google Phone,1,600,11/04/19 17:56,"930 Hill St, New York City, NY 10001" +297333,Wired Headphones,1,11.99,11/04/19 17:56,"930 Hill St, New York City, NY 10001" +297334,Wired Headphones,1,11.99,11/24/19 07:29,"539 Spruce St, Portland, ME 04101" +297335,Apple Airpods Headphones,1,150,11/23/19 22:59,"762 4th St, Dallas, TX 75001" +297336,27in FHD Monitor,1,149.99,11/28/19 16:06,"688 Adams St, Seattle, WA 98101" +297337,Macbook Pro Laptop,1,1700,11/22/19 01:34,"774 9th St, Austin, TX 73301" +297338,AA Batteries (4-pack),1,3.84,11/12/19 21:22,"384 Meadow St, Portland, OR 97035" +297339,AAA Batteries (4-pack),1,2.99,11/28/19 14:06,"277 Ridge St, Los Angeles, CA 90001" +297340,Apple Airpods Headphones,1,150,11/24/19 21:33,"393 8th St, San Francisco, CA 94016" +297341,Lightning Charging Cable,1,14.95,11/08/19 20:50,"77 Lincoln St, Seattle, WA 98101" +297342,AAA Batteries (4-pack),1,2.99,11/16/19 20:11,"70 2nd St, Austin, TX 73301" +297343,Google Phone,1,600,11/05/19 20:25,"363 North St, Boston, MA 02215" +297344,Apple Airpods Headphones,1,150,11/28/19 14:45,"638 Spruce St, Dallas, TX 75001" +297345,AA Batteries (4-pack),2,3.84,11/08/19 04:12,"17 12th St, Boston, MA 02215" +297346,iPhone,1,700,11/23/19 07:43,"795 West St, Seattle, WA 98101" +297347,AAA Batteries (4-pack),1,2.99,11/29/19 01:09,"550 Lake St, San Francisco, CA 94016" +297348,iPhone,1,700,11/06/19 19:13,"168 Johnson St, New York City, NY 10001" +297349,27in 4K Gaming Monitor,1,389.99,11/11/19 07:13,"455 Lake St, Los Angeles, CA 90001" +297350,AAA Batteries (4-pack),2,2.99,11/12/19 12:30,"3 North St, Atlanta, GA 30301" +297351,USB-C Charging Cable,1,11.95,11/25/19 04:28,"75 2nd St, Los Angeles, CA 90001" +297352,AA Batteries (4-pack),1,3.84,11/15/19 13:27,"125 Wilson St, Seattle, WA 98101" +297353,AAA Batteries (4-pack),1,2.99,11/19/19 21:14,"500 Johnson St, Portland, OR 97035" +297354,Apple Airpods Headphones,1,150,11/16/19 14:53,"170 River St, Seattle, WA 98101" +297355,iPhone,1,700,11/09/19 13:54,"673 11th St, Austin, TX 73301" +297356,Flatscreen TV,1,300,11/06/19 19:09,"756 Wilson St, New York City, NY 10001" +297357,Wired Headphones,1,11.99,11/24/19 17:17,"755 Maple St, San Francisco, CA 94016" +297358,AA Batteries (4-pack),1,3.84,11/16/19 19:46,"128 Cedar St, New York City, NY 10001" +297359,USB-C Charging Cable,1,11.95,11/05/19 13:22,"576 Dogwood St, San Francisco, CA 94016" +297360,27in 4K Gaming Monitor,1,389.99,11/02/19 15:13,"820 Chestnut St, Los Angeles, CA 90001" +297361,Lightning Charging Cable,1,14.95,11/11/19 14:10,"848 West St, Atlanta, GA 30301" +297362,iPhone,1,700,11/08/19 19:51,"279 Pine St, Dallas, TX 75001" +297363,USB-C Charging Cable,1,11.95,11/27/19 16:52,"343 7th St, San Francisco, CA 94016" +297363,Wired Headphones,1,11.99,11/27/19 16:52,"343 7th St, San Francisco, CA 94016" +297364,ThinkPad Laptop,1,999.99,11/02/19 16:09,"593 West St, Dallas, TX 75001" +297365,27in 4K Gaming Monitor,1,389.99,11/13/19 19:15,"685 North St, San Francisco, CA 94016" +297366,ThinkPad Laptop,1,999.99,11/24/19 10:10,"276 Lake St, Seattle, WA 98101" +297367,Wired Headphones,1,11.99,11/02/19 20:38,"183 Madison St, San Francisco, CA 94016" +297368,27in FHD Monitor,1,149.99,11/22/19 11:00,"134 Adams St, Los Angeles, CA 90001" +297369,AAA Batteries (4-pack),3,2.99,11/08/19 17:04,"21 Main St, Los Angeles, CA 90001" +297370,Apple Airpods Headphones,1,150,11/04/19 22:48,"865 Jefferson St, Los Angeles, CA 90001" +297371,AAA Batteries (4-pack),4,2.99,11/13/19 11:46,"246 4th St, Boston, MA 02215" +297372,USB-C Charging Cable,2,11.95,11/01/19 07:56,"607 Wilson St, Boston, MA 02215" +297373,20in Monitor,1,109.99,11/27/19 17:41,"268 Church St, San Francisco, CA 94016" +297374,Lightning Charging Cable,1,14.95,11/06/19 10:54,"308 13th St, Atlanta, GA 30301" +297375,34in Ultrawide Monitor,1,379.99,11/01/19 23:00,"188 6th St, Boston, MA 02215" +297376,27in FHD Monitor,1,149.99,11/25/19 10:59,"546 Adams St, San Francisco, CA 94016" +297377,Apple Airpods Headphones,1,150,11/06/19 11:59,"381 Cedar St, New York City, NY 10001" +297378,Wired Headphones,1,11.99,11/24/19 11:11,"346 Washington St, Portland, ME 04101" +297379,27in FHD Monitor,1,149.99,11/02/19 12:00,"445 North St, San Francisco, CA 94016" +297380,AAA Batteries (4-pack),1,2.99,11/16/19 21:23,"31 1st St, Los Angeles, CA 90001" +297381,iPhone,1,700,11/23/19 12:47,"125 Adams St, New York City, NY 10001" +297381,Lightning Charging Cable,2,14.95,11/23/19 12:47,"125 Adams St, New York City, NY 10001" +297381,Wired Headphones,1,11.99,11/23/19 12:47,"125 Adams St, New York City, NY 10001" +297382,34in Ultrawide Monitor,1,379.99,11/01/19 13:05,"746 13th St, Dallas, TX 75001" +297383,AAA Batteries (4-pack),3,2.99,11/24/19 22:04,"246 Wilson St, San Francisco, CA 94016" +297384,Google Phone,1,600,11/27/19 13:26,"716 14th St, San Francisco, CA 94016" +297385,Bose SoundSport Headphones,1,99.99,11/07/19 05:08,"736 Madison St, New York City, NY 10001" +297386,AA Batteries (4-pack),1,3.84,11/18/19 18:31,"11 12th St, Los Angeles, CA 90001" +297387,Apple Airpods Headphones,1,150,11/24/19 22:43,"414 Wilson St, Atlanta, GA 30301" +297388,Wired Headphones,2,11.99,11/06/19 21:42,"791 Madison St, Boston, MA 02215" +297389,AA Batteries (4-pack),1,3.84,11/30/19 23:04,"587 4th St, Atlanta, GA 30301" +297390,Wired Headphones,1,11.99,11/16/19 09:00,"782 Walnut St, Los Angeles, CA 90001" +297391,AA Batteries (4-pack),1,3.84,11/09/19 19:36,"411 West St, Seattle, WA 98101" +297392,USB-C Charging Cable,1,11.95,11/25/19 14:45,"592 Washington St, San Francisco, CA 94016" +297393,Vareebadd Phone,1,400,11/26/19 13:17,"203 South St, Atlanta, GA 30301" +297394,AA Batteries (4-pack),1,3.84,11/11/19 12:37,"76 Cedar St, Los Angeles, CA 90001" +297395,Macbook Pro Laptop,1,1700,11/11/19 14:33,"599 Park St, Austin, TX 73301" +297396,USB-C Charging Cable,1,11.95,11/28/19 09:44,"358 9th St, Dallas, TX 75001" +297397,27in FHD Monitor,1,149.99,11/23/19 23:35,"168 11th St, Seattle, WA 98101" +297398,AAA Batteries (4-pack),2,2.99,11/07/19 19:40,"361 Madison St, Atlanta, GA 30301" +297399,AA Batteries (4-pack),1,3.84,11/03/19 13:10,"963 Lakeview St, Austin, TX 73301" +297400,USB-C Charging Cable,1,11.95,11/01/19 10:24,"654 Lincoln St, New York City, NY 10001" +297401,Bose SoundSport Headphones,1,99.99,11/17/19 22:33,"195 Church St, San Francisco, CA 94016" +297402,Flatscreen TV,1,300,11/06/19 17:41,"524 9th St, Dallas, TX 75001" +297403,AA Batteries (4-pack),1,3.84,11/07/19 22:23,"817 Dogwood St, Boston, MA 02215" +297404,Apple Airpods Headphones,1,150,11/09/19 17:17,"108 Elm St, San Francisco, CA 94016" +297405,Lightning Charging Cable,1,14.95,11/12/19 08:07,"458 12th St, Dallas, TX 75001" +297406,Lightning Charging Cable,1,14.95,11/05/19 12:59,"422 Church St, Austin, TX 73301" +297407,USB-C Charging Cable,1,11.95,11/21/19 19:20,"844 Dogwood St, Dallas, TX 75001" +297408,ThinkPad Laptop,1,999.99,11/25/19 12:34,"497 Jefferson St, Los Angeles, CA 90001" +297409,AAA Batteries (4-pack),1,2.99,11/02/19 15:34,"997 4th St, Seattle, WA 98101" +297410,27in FHD Monitor,1,149.99,11/30/19 23:41,"548 Madison St, Los Angeles, CA 90001" +297411,Wired Headphones,1,11.99,11/29/19 19:11,"432 Pine St, New York City, NY 10001" +297412,Google Phone,1,600,11/11/19 17:52,"634 10th St, Boston, MA 02215" +297412,USB-C Charging Cable,1,11.95,11/11/19 17:52,"634 10th St, Boston, MA 02215" +297413,Lightning Charging Cable,1,14.95,11/25/19 21:02,"827 2nd St, Austin, TX 73301" +297414,iPhone,1,700,11/25/19 17:10,"41 South St, Portland, OR 97035" +297414,Lightning Charging Cable,1,14.95,11/25/19 17:10,"41 South St, Portland, OR 97035" +297414,USB-C Charging Cable,1,11.95,11/25/19 17:10,"41 South St, Portland, OR 97035" +297415,AAA Batteries (4-pack),2,2.99,11/22/19 18:10,"837 2nd St, Dallas, TX 75001" +297416,Wired Headphones,1,11.99,11/20/19 07:15,"997 Wilson St, Austin, TX 73301" +297417,Wired Headphones,1,11.99,11/11/19 12:37,"92 8th St, San Francisco, CA 94016" +297417,AAA Batteries (4-pack),3,2.99,11/11/19 12:37,"92 8th St, San Francisco, CA 94016" +297418,ThinkPad Laptop,1,999.99,11/16/19 10:30,"719 River St, San Francisco, CA 94016" +297419,Lightning Charging Cable,1,14.95,11/24/19 21:07,"360 Hill St, Portland, ME 04101" +297420,AA Batteries (4-pack),3,3.84,11/08/19 11:11,"872 Wilson St, Atlanta, GA 30301" +297421,iPhone,1,700,11/19/19 13:52,"132 Main St, New York City, NY 10001" +297422,USB-C Charging Cable,1,11.95,11/28/19 09:01,"556 Jefferson St, Atlanta, GA 30301" +297423,Lightning Charging Cable,1,14.95,11/05/19 22:58,"654 Hill St, San Francisco, CA 94016" +297424,34in Ultrawide Monitor,1,379.99,11/22/19 19:15,"26 Meadow St, San Francisco, CA 94016" +297425,Lightning Charging Cable,1,14.95,11/23/19 17:05,"533 Willow St, Los Angeles, CA 90001" +,,,,, +297426,AA Batteries (4-pack),1,3.84,11/06/19 18:33,"146 Washington St, San Francisco, CA 94016" +297427,27in 4K Gaming Monitor,1,389.99,11/02/19 17:49,"314 West St, Atlanta, GA 30301" +297428,iPhone,1,700,11/20/19 12:47,"261 Park St, Dallas, TX 75001" +297429,Bose SoundSport Headphones,1,99.99,11/22/19 11:10,"617 9th St, Portland, OR 97035" +297430,AA Batteries (4-pack),1,3.84,11/08/19 20:56,"434 Chestnut St, New York City, NY 10001" +297430,Wired Headphones,1,11.99,11/08/19 20:56,"434 Chestnut St, New York City, NY 10001" +297431,Wired Headphones,1,11.99,11/25/19 09:21,"920 Highland St, Seattle, WA 98101" +297432,Lightning Charging Cable,1,14.95,11/11/19 13:06,"142 Cherry St, Boston, MA 02215" +297433,Lightning Charging Cable,1,14.95,11/24/19 10:08,"31 Jefferson St, Los Angeles, CA 90001" +297434,34in Ultrawide Monitor,1,379.99,11/10/19 22:15,"818 2nd St, Dallas, TX 75001" +297435,Apple Airpods Headphones,1,150,11/16/19 18:28,"372 Walnut St, Los Angeles, CA 90001" +297436,AA Batteries (4-pack),1,3.84,11/24/19 17:11,"631 5th St, New York City, NY 10001" +297437,AAA Batteries (4-pack),1,2.99,11/22/19 08:27,"900 Jackson St, Los Angeles, CA 90001" +297438,iPhone,1,700,11/30/19 18:43,"744 North St, San Francisco, CA 94016" +297439,Lightning Charging Cable,1,14.95,11/03/19 17:24,"609 2nd St, New York City, NY 10001" +297440,Flatscreen TV,1,300,11/21/19 21:41,"555 Jackson St, San Francisco, CA 94016" +297441,34in Ultrawide Monitor,1,379.99,11/02/19 18:28,"632 Church St, Seattle, WA 98101" +297442,Apple Airpods Headphones,1,150,11/26/19 08:09,"556 Wilson St, Boston, MA 02215" +297443,Bose SoundSport Headphones,1,99.99,11/09/19 09:12,"50 Jackson St, Austin, TX 73301" +297444,Vareebadd Phone,1,400,11/16/19 15:03,"311 Spruce St, Austin, TX 73301" +297445,Bose SoundSport Headphones,1,99.99,11/27/19 11:05,"3 Hill St, Seattle, WA 98101" +297446,Apple Airpods Headphones,1,150,11/12/19 13:41,"439 Maple St, Los Angeles, CA 90001" +297447,Wired Headphones,1,11.99,11/20/19 19:22,"29 Cherry St, Los Angeles, CA 90001" +297448,USB-C Charging Cable,1,11.95,11/08/19 22:18,"5 7th St, Los Angeles, CA 90001" +297449,Lightning Charging Cable,1,14.95,11/06/19 12:10,"629 Center St, Seattle, WA 98101" +297450,iPhone,1,700,11/20/19 22:14,"17 7th St, New York City, NY 10001" +297451,27in 4K Gaming Monitor,1,389.99,11/16/19 11:19,"169 Hill St, San Francisco, CA 94016" +297452,27in FHD Monitor,1,149.99,11/04/19 18:39,"53 Highland St, San Francisco, CA 94016" +297453,Lightning Charging Cable,2,14.95,11/19/19 18:58,"351 Willow St, Atlanta, GA 30301" +297454,AAA Batteries (4-pack),4,2.99,11/15/19 10:42,"668 12th St, Atlanta, GA 30301" +297455,Bose SoundSport Headphones,1,99.99,11/09/19 14:16,"576 Lincoln St, Los Angeles, CA 90001" +297456,Apple Airpods Headphones,1,150,11/14/19 09:42,"679 Walnut St, Los Angeles, CA 90001" +297457,Bose SoundSport Headphones,1,99.99,11/13/19 11:30,"393 River St, Portland, OR 97035" +297458,USB-C Charging Cable,1,11.95,11/24/19 19:46,"94 Wilson St, Portland, OR 97035" +297459,AA Batteries (4-pack),1,3.84,11/30/19 18:03,"229 14th St, Los Angeles, CA 90001" +297460,Apple Airpods Headphones,1,150,11/29/19 21:00,"591 Walnut St, New York City, NY 10001" +297461,Wired Headphones,1,11.99,11/01/19 13:57,"71 5th St, New York City, NY 10001" +297462,Bose SoundSport Headphones,1,99.99,11/08/19 16:37,"219 Highland St, Portland, OR 97035" +297463,Wired Headphones,1,11.99,11/16/19 20:59,"157 Hickory St, San Francisco, CA 94016" +297464,27in 4K Gaming Monitor,1,389.99,11/17/19 10:11,"866 4th St, San Francisco, CA 94016" +297465,USB-C Charging Cable,1,11.95,11/06/19 03:34,"355 8th St, Los Angeles, CA 90001" +297466,Google Phone,1,600,11/07/19 15:42,"975 Hickory St, San Francisco, CA 94016" +297467,20in Monitor,1,109.99,11/05/19 14:34,"146 Jackson St, Seattle, WA 98101" +297468,AA Batteries (4-pack),1,3.84,11/28/19 07:52,"707 1st St, San Francisco, CA 94016" +297469,AA Batteries (4-pack),1,3.84,11/18/19 19:26,"880 Sunset St, Boston, MA 02215" +297470,Wired Headphones,1,11.99,11/05/19 11:08,"576 Chestnut St, San Francisco, CA 94016" +297471,AAA Batteries (4-pack),1,2.99,11/24/19 18:20,"397 Johnson St, San Francisco, CA 94016" +297472,iPhone,1,700,11/11/19 16:16,"380 Pine St, San Francisco, CA 94016" +297473,USB-C Charging Cable,1,11.95,11/01/19 12:20,"336 Meadow St, San Francisco, CA 94016" +297474,Apple Airpods Headphones,1,150,11/16/19 13:12,"750 Spruce St, Portland, OR 97035" +297475,Bose SoundSport Headphones,1,99.99,11/05/19 17:06,"745 6th St, Boston, MA 02215" +297476,AA Batteries (4-pack),1,3.84,11/04/19 08:29,"396 Main St, Boston, MA 02215" +297477,AA Batteries (4-pack),1,3.84,11/07/19 17:59,"701 Cedar St, San Francisco, CA 94016" +297478,iPhone,1,700,11/12/19 09:29,"728 Washington St, San Francisco, CA 94016" +297479,AAA Batteries (4-pack),3,2.99,11/16/19 13:33,"840 Wilson St, Atlanta, GA 30301" +297480,AA Batteries (4-pack),1,3.84,11/21/19 20:59,"831 Dogwood St, New York City, NY 10001" +297481,AA Batteries (4-pack),2,3.84,11/25/19 19:03,"84 West St, Atlanta, GA 30301" +297482,Bose SoundSport Headphones,1,99.99,11/25/19 21:11,"37 7th St, Los Angeles, CA 90001" +297483,Lightning Charging Cable,1,14.95,11/02/19 20:18,"873 8th St, Los Angeles, CA 90001" +297484,Lightning Charging Cable,1,14.95,11/09/19 18:13,"349 Lake St, Los Angeles, CA 90001" +297485,Wired Headphones,1,11.99,11/05/19 19:01,"937 South St, San Francisco, CA 94016" +297486,Bose SoundSport Headphones,1,99.99,11/20/19 11:33,"878 Washington St, Dallas, TX 75001" +297487,Vareebadd Phone,1,400,11/15/19 13:00,"625 North St, Los Angeles, CA 90001" +297488,Macbook Pro Laptop,1,1700,11/23/19 18:50,"868 Main St, Portland, OR 97035" +297489,ThinkPad Laptop,1,999.99,11/13/19 10:45,"129 Cherry St, Austin, TX 73301" +297490,USB-C Charging Cable,1,11.95,11/07/19 15:39,"954 Cherry St, San Francisco, CA 94016" +297491,Apple Airpods Headphones,1,150,11/20/19 16:31,"549 Wilson St, San Francisco, CA 94016" +297492,Lightning Charging Cable,1,14.95,11/02/19 14:54,"629 2nd St, Atlanta, GA 30301" +297493,Google Phone,1,600,11/19/19 18:15,"20 13th St, Dallas, TX 75001" +297494,AAA Batteries (4-pack),1,2.99,11/30/19 13:17,"633 Adams St, San Francisco, CA 94016" +297495,AA Batteries (4-pack),1,3.84,11/20/19 18:06,"905 West St, San Francisco, CA 94016" +297496,AA Batteries (4-pack),1,3.84,11/08/19 17:18,"486 River St, Los Angeles, CA 90001" +297497,Lightning Charging Cable,1,14.95,11/03/19 16:01,"940 Adams St, Los Angeles, CA 90001" +297498,27in FHD Monitor,1,149.99,11/03/19 13:42,"622 Washington St, San Francisco, CA 94016" +297499,Lightning Charging Cable,1,14.95,11/13/19 18:02,"754 4th St, New York City, NY 10001" +297500,Macbook Pro Laptop,1,1700,11/15/19 09:41,"711 Wilson St, Austin, TX 73301" +297501,Macbook Pro Laptop,1,1700,11/21/19 09:13,"164 4th St, San Francisco, CA 94016" +297502,Apple Airpods Headphones,1,150,11/13/19 20:09,"944 Hickory St, Seattle, WA 98101" +297503,34in Ultrawide Monitor,1,379.99,11/10/19 18:02,"926 Maple St, Los Angeles, CA 90001" +297504,Bose SoundSport Headphones,1,99.99,11/04/19 21:35,"828 Lake St, Atlanta, GA 30301" +297505,Wired Headphones,1,11.99,11/20/19 22:39,"144 Park St, San Francisco, CA 94016" +297506,Google Phone,1,600,11/22/19 13:29,"153 Hickory St, San Francisco, CA 94016" +297507,Lightning Charging Cable,1,14.95,11/27/19 06:56,"423 Adams St, Boston, MA 02215" +297508,AA Batteries (4-pack),1,3.84,11/09/19 14:54,"446 1st St, Austin, TX 73301" +297509,Bose SoundSport Headphones,1,99.99,11/22/19 09:27,"409 Chestnut St, Los Angeles, CA 90001" +297510,USB-C Charging Cable,1,11.95,11/23/19 23:57,"546 Church St, Boston, MA 02215" +297511,Bose SoundSport Headphones,1,99.99,11/02/19 10:58,"874 Wilson St, New York City, NY 10001" +297512,USB-C Charging Cable,1,11.95,11/28/19 16:14,"233 9th St, Los Angeles, CA 90001" +297513,USB-C Charging Cable,1,11.95,11/02/19 08:41,"636 Jefferson St, Portland, OR 97035" +297514,27in 4K Gaming Monitor,1,389.99,11/13/19 15:42,"968 14th St, Los Angeles, CA 90001" +297515,USB-C Charging Cable,1,11.95,11/04/19 06:52,"983 Sunset St, Boston, MA 02215" +297516,Apple Airpods Headphones,1,150,11/16/19 17:29,"67 5th St, New York City, NY 10001" +297517,Wired Headphones,1,11.99,11/23/19 22:01,"588 11th St, San Francisco, CA 94016" +297518,Bose SoundSport Headphones,1,99.99,11/28/19 10:29,"11 Lakeview St, Portland, OR 97035" +297519,27in 4K Gaming Monitor,1,389.99,11/13/19 13:25,"709 2nd St, San Francisco, CA 94016" +297520,iPhone,1,700,11/26/19 00:15,"896 5th St, New York City, NY 10001" +297521,Lightning Charging Cable,1,14.95,11/21/19 09:30,"187 Pine St, Los Angeles, CA 90001" +297522,Wired Headphones,1,11.99,11/13/19 09:27,"965 9th St, Boston, MA 02215" +297523,Macbook Pro Laptop,1,1700,11/02/19 16:00,"388 Center St, Dallas, TX 75001" +297524,Lightning Charging Cable,1,14.95,11/14/19 17:56,"299 Jackson St, Boston, MA 02215" +297525,USB-C Charging Cable,1,11.95,11/11/19 01:31,"246 Lake St, Atlanta, GA 30301" +297526,Bose SoundSport Headphones,1,99.99,11/06/19 11:36,"435 10th St, Los Angeles, CA 90001" +297527,Apple Airpods Headphones,1,150,11/10/19 17:59,"931 Highland St, Boston, MA 02215" +297528,AAA Batteries (4-pack),1,2.99,11/07/19 10:07,"414 Lincoln St, Atlanta, GA 30301" +297529,AA Batteries (4-pack),1,3.84,11/25/19 19:53,"943 Jefferson St, Atlanta, GA 30301" +297530,USB-C Charging Cable,1,11.95,11/14/19 11:11,"736 1st St, Los Angeles, CA 90001" +297531,USB-C Charging Cable,1,11.95,11/04/19 22:00,"286 Jefferson St, San Francisco, CA 94016" +297532,Flatscreen TV,1,300,11/24/19 11:27,"408 Walnut St, Portland, ME 04101" +297533,AAA Batteries (4-pack),1,2.99,11/30/19 16:35,"172 11th St, San Francisco, CA 94016" +297534,Apple Airpods Headphones,1,150,11/15/19 22:16,"619 Pine St, San Francisco, CA 94016" +297535,USB-C Charging Cable,1,11.95,11/07/19 20:23,"215 Park St, San Francisco, CA 94016" +297536,Wired Headphones,1,11.99,11/28/19 18:26,"242 13th St, Austin, TX 73301" +297537,AA Batteries (4-pack),1,3.84,11/16/19 21:11,"690 North St, Los Angeles, CA 90001" +297538,Wired Headphones,2,11.99,11/04/19 11:15,"248 Hickory St, New York City, NY 10001" +297539,Google Phone,1,600,11/30/19 01:19,"469 River St, Boston, MA 02215" +297540,AA Batteries (4-pack),1,3.84,11/04/19 11:58,"96 South St, San Francisco, CA 94016" +297541,20in Monitor,1,109.99,11/19/19 00:18,"457 Jackson St, San Francisco, CA 94016" +297542,Apple Airpods Headphones,1,150,11/15/19 22:04,"788 Elm St, Austin, TX 73301" +297543,20in Monitor,1,109.99,11/21/19 22:17,"471 11th St, Dallas, TX 75001" +297544,AA Batteries (4-pack),1,3.84,11/07/19 10:14,"708 Lincoln St, Portland, ME 04101" +297545,Wired Headphones,1,11.99,11/28/19 10:21,"333 Highland St, Boston, MA 02215" +297546,27in FHD Monitor,1,149.99,11/07/19 11:34,"8 Madison St, Austin, TX 73301" +297547,Bose SoundSport Headphones,1,99.99,11/24/19 10:05,"712 1st St, San Francisco, CA 94016" +297548,Vareebadd Phone,1,400,11/08/19 21:24,"120 Madison St, Los Angeles, CA 90001" +297548,USB-C Charging Cable,1,11.95,11/08/19 21:24,"120 Madison St, Los Angeles, CA 90001" +297549,Lightning Charging Cable,1,14.95,11/28/19 16:03,"836 Chestnut St, San Francisco, CA 94016" +297549,Vareebadd Phone,1,400,11/28/19 16:03,"836 Chestnut St, San Francisco, CA 94016" +297550,Wired Headphones,1,11.99,11/12/19 22:52,"742 6th St, Portland, OR 97035" +297550,34in Ultrawide Monitor,1,379.99,11/12/19 22:52,"742 6th St, Portland, OR 97035" +297551,AAA Batteries (4-pack),1,2.99,11/02/19 13:37,"178 Cherry St, Los Angeles, CA 90001" +297552,AAA Batteries (4-pack),2,2.99,11/26/19 07:04,"620 Elm St, New York City, NY 10001" +297553,Lightning Charging Cable,1,14.95,11/03/19 20:27,"710 Cherry St, Seattle, WA 98101" +297554,AA Batteries (4-pack),1,3.84,11/10/19 08:39,"162 Lakeview St, Seattle, WA 98101" +297555,Bose SoundSport Headphones,1,99.99,11/04/19 10:51,"193 Wilson St, New York City, NY 10001" +297556,Lightning Charging Cable,1,14.95,11/22/19 10:59,"536 North St, Los Angeles, CA 90001" +297557,20in Monitor,1,109.99,11/04/19 16:15,"191 Jefferson St, San Francisco, CA 94016" +297558,AA Batteries (4-pack),2,3.84,11/03/19 19:53,"671 14th St, Boston, MA 02215" +297559,Lightning Charging Cable,1,14.95,11/13/19 22:40,"520 Lake St, Los Angeles, CA 90001" +297560,Wired Headphones,1,11.99,11/12/19 19:16,"815 Highland St, Dallas, TX 75001" +297561,Wired Headphones,1,11.99,11/08/19 13:15,"435 14th St, Austin, TX 73301" +297562,Apple Airpods Headphones,1,150,11/19/19 15:08,"833 Madison St, San Francisco, CA 94016" +297563,AAA Batteries (4-pack),1,2.99,11/27/19 21:54,"328 Main St, San Francisco, CA 94016" +297564,34in Ultrawide Monitor,1,379.99,11/26/19 10:58,"860 Ridge St, Atlanta, GA 30301" +297565,Wired Headphones,1,11.99,11/22/19 17:16,"301 Sunset St, New York City, NY 10001" +297566,Google Phone,1,600,11/21/19 11:39,"858 Maple St, Seattle, WA 98101" +297566,USB-C Charging Cable,1,11.95,11/21/19 11:39,"858 Maple St, Seattle, WA 98101" +297567,AA Batteries (4-pack),3,3.84,11/10/19 02:55,"44 2nd St, Seattle, WA 98101" +297568,Wired Headphones,1,11.99,11/08/19 12:19,"748 Jefferson St, Seattle, WA 98101" +297569,27in 4K Gaming Monitor,1,389.99,11/13/19 01:40,"493 Walnut St, Los Angeles, CA 90001" +297570,AAA Batteries (4-pack),1,2.99,11/22/19 00:57,"415 2nd St, San Francisco, CA 94016" +297571,AA Batteries (4-pack),1,3.84,11/20/19 22:29,"160 Church St, Dallas, TX 75001" +297572,Wired Headphones,1,11.99,11/30/19 23:59,"249 Spruce St, Seattle, WA 98101" +297573,AA Batteries (4-pack),1,3.84,11/18/19 06:28,"260 13th St, Atlanta, GA 30301" +297573,Wired Headphones,1,11.99,11/18/19 06:28,"260 13th St, Atlanta, GA 30301" +297574,iPhone,1,700,11/18/19 08:47,"435 Forest St, Boston, MA 02215" +297575,AAA Batteries (4-pack),3,2.99,11/07/19 15:17,"192 Walnut St, San Francisco, CA 94016" +297576,Wired Headphones,2,11.99,11/15/19 18:49,"204 10th St, Los Angeles, CA 90001" +297577,AA Batteries (4-pack),1,3.84,11/15/19 12:52,"444 Hill St, Seattle, WA 98101" +297578,34in Ultrawide Monitor,1,379.99,11/17/19 17:18,"911 Spruce St, Portland, OR 97035" +297579,27in FHD Monitor,1,149.99,11/04/19 10:21,"531 Pine St, Dallas, TX 75001" +297580,Wired Headphones,1,11.99,11/06/19 15:42,"199 1st St, San Francisco, CA 94016" +297581,27in FHD Monitor,1,149.99,11/24/19 12:37,"912 Highland St, New York City, NY 10001" +297582,20in Monitor,1,109.99,11/23/19 23:13,"508 Willow St, San Francisco, CA 94016" +297583,Lightning Charging Cable,1,14.95,11/07/19 10:16,"679 Hill St, New York City, NY 10001" +297584,AAA Batteries (4-pack),2,2.99,11/17/19 11:42,"698 12th St, Seattle, WA 98101" +297585,AAA Batteries (4-pack),2,2.99,11/13/19 17:03,"380 1st St, Boston, MA 02215" +297586,AA Batteries (4-pack),1,3.84,11/25/19 23:08,"26 Wilson St, San Francisco, CA 94016" +297587,AA Batteries (4-pack),1,3.84,11/22/19 19:50,"150 Jackson St, Los Angeles, CA 90001" +297588,AAA Batteries (4-pack),1,2.99,11/02/19 18:31,"285 Main St, Seattle, WA 98101" +297589,AA Batteries (4-pack),1,3.84,11/24/19 18:02,"82 14th St, Los Angeles, CA 90001" +297590,Apple Airpods Headphones,1,150,11/25/19 13:24,"869 14th St, Atlanta, GA 30301" +297591,AA Batteries (4-pack),4,3.84,11/03/19 10:51,"922 Madison St, Los Angeles, CA 90001" +297592,Bose SoundSport Headphones,1,99.99,11/06/19 18:30,"275 Elm St, New York City, NY 10001" +297593,Lightning Charging Cable,1,14.95,11/16/19 16:52,"414 Center St, Seattle, WA 98101" +297594,ThinkPad Laptop,1,999.99,11/04/19 10:48,"807 6th St, San Francisco, CA 94016" +297595,iPhone,1,700,11/14/19 15:18,"145 Chestnut St, Dallas, TX 75001" +297595,Lightning Charging Cable,2,14.95,11/14/19 15:18,"145 Chestnut St, Dallas, TX 75001" +297596,iPhone,1,700,11/27/19 16:54,"946 14th St, New York City, NY 10001" +297597,Apple Airpods Headphones,1,150,11/02/19 17:45,"325 Walnut St, Boston, MA 02215" +297598,AAA Batteries (4-pack),1,2.99,11/15/19 16:43,"415 11th St, Portland, OR 97035" +297599,AA Batteries (4-pack),1,3.84,11/06/19 11:41,"165 Center St, San Francisco, CA 94016" +297600,AAA Batteries (4-pack),1,2.99,11/24/19 13:41,"277 Meadow St, San Francisco, CA 94016" +297601,AA Batteries (4-pack),1,3.84,11/18/19 16:49,"46 Spruce St, Seattle, WA 98101" +297602,Bose SoundSport Headphones,1,99.99,11/12/19 19:48,"922 North St, San Francisco, CA 94016" +297603,20in Monitor,1,109.99,11/10/19 15:11,"815 Main St, Seattle, WA 98101" +297604,AA Batteries (4-pack),2,3.84,11/24/19 20:38,"347 Johnson St, Los Angeles, CA 90001" +297605,Macbook Pro Laptop,1,1700,11/15/19 19:13,"323 2nd St, Atlanta, GA 30301" +297606,Apple Airpods Headphones,1,150,11/22/19 19:21,"422 7th St, Boston, MA 02215" +297607,ThinkPad Laptop,1,999.99,11/08/19 13:16,"214 6th St, New York City, NY 10001" +297608,Lightning Charging Cable,1,14.95,11/30/19 16:16,"772 2nd St, Boston, MA 02215" +297609,Google Phone,1,600,11/05/19 11:17,"366 5th St, San Francisco, CA 94016" +297609,Wired Headphones,1,11.99,11/05/19 11:17,"366 5th St, San Francisco, CA 94016" +297610,LG Dryer,1,600.0,11/25/19 07:49,"495 4th St, Atlanta, GA 30301" +297611,AA Batteries (4-pack),1,3.84,11/12/19 13:20,"13 Center St, New York City, NY 10001" +297612,AA Batteries (4-pack),1,3.84,11/08/19 19:57,"282 6th St, Atlanta, GA 30301" +297613,USB-C Charging Cable,1,11.95,11/14/19 13:57,"43 Center St, New York City, NY 10001" +297614,Lightning Charging Cable,1,14.95,11/11/19 13:22,"784 Chestnut St, Boston, MA 02215" +297615,AAA Batteries (4-pack),3,2.99,11/17/19 18:50,"780 Dogwood St, New York City, NY 10001" +297616,AA Batteries (4-pack),1,3.84,11/01/19 20:25,"645 Center St, Los Angeles, CA 90001" +297617,Wired Headphones,1,11.99,11/30/19 00:10,"586 Spruce St, Boston, MA 02215" +297618,USB-C Charging Cable,1,11.95,11/01/19 18:35,"572 Pine St, New York City, NY 10001" +297619,AA Batteries (4-pack),2,3.84,11/24/19 23:48,"193 Forest St, San Francisco, CA 94016" +297620,AA Batteries (4-pack),1,3.84,11/24/19 14:16,"714 Wilson St, Boston, MA 02215" +297621,AA Batteries (4-pack),1,3.84,11/22/19 15:35,"165 Pine St, Seattle, WA 98101" +297622,USB-C Charging Cable,1,11.95,11/13/19 12:08,"457 Cherry St, Atlanta, GA 30301" +297623,Apple Airpods Headphones,1,150,11/08/19 17:06,"66 Lakeview St, San Francisco, CA 94016" +297624,USB-C Charging Cable,1,11.95,11/10/19 10:26,"248 8th St, New York City, NY 10001" +297625,Wired Headphones,1,11.99,11/03/19 13:13,"857 Lakeview St, San Francisco, CA 94016" +297626,Wired Headphones,1,11.99,11/24/19 22:53,"284 Forest St, Los Angeles, CA 90001" +297627,AAA Batteries (4-pack),1,2.99,11/29/19 23:33,"482 8th St, Los Angeles, CA 90001" +297628,Wired Headphones,1,11.99,11/22/19 15:03,"586 Sunset St, Seattle, WA 98101" +297629,Apple Airpods Headphones,1,150,11/27/19 17:04,"589 Park St, Atlanta, GA 30301" +297630,Flatscreen TV,1,300,11/23/19 20:55,"522 Willow St, Atlanta, GA 30301" +297631,AAA Batteries (4-pack),1,2.99,11/15/19 15:13,"264 5th St, San Francisco, CA 94016" +297632,USB-C Charging Cable,1,11.95,11/09/19 16:42,"75 Center St, Dallas, TX 75001" +297632,iPhone,1,700,11/09/19 16:42,"75 Center St, Dallas, TX 75001" +297633,USB-C Charging Cable,2,11.95,11/12/19 18:14,"728 Lincoln St, Portland, OR 97035" +297634,USB-C Charging Cable,1,11.95,11/13/19 15:23,"126 Washington St, New York City, NY 10001" +297635,Vareebadd Phone,1,400,11/06/19 15:55,"575 Lincoln St, Boston, MA 02215" +297636,Lightning Charging Cable,1,14.95,11/26/19 14:47,"229 Chestnut St, Boston, MA 02215" +297637,Lightning Charging Cable,1,14.95,11/04/19 09:36,"851 Sunset St, Boston, MA 02215" +297638,Wired Headphones,1,11.99,11/13/19 14:49,"535 12th St, Los Angeles, CA 90001" +297639,Lightning Charging Cable,1,14.95,11/28/19 19:16,"964 Lakeview St, San Francisco, CA 94016" +297640,USB-C Charging Cable,2,11.95,11/19/19 22:19,"798 Hickory St, San Francisco, CA 94016" +297641,Bose SoundSport Headphones,1,99.99,11/03/19 12:21,"581 Highland St, San Francisco, CA 94016" +297642,27in 4K Gaming Monitor,1,389.99,11/15/19 21:51,"51 6th St, Los Angeles, CA 90001" +297643,Wired Headphones,1,11.99,11/17/19 12:21,"268 Church St, San Francisco, CA 94016" +297644,Lightning Charging Cable,1,14.95,11/07/19 09:44,"508 Cherry St, Dallas, TX 75001" +297645,Lightning Charging Cable,1,14.95,11/05/19 20:31,"192 Dogwood St, Seattle, WA 98101" +297646,USB-C Charging Cable,1,11.95,11/04/19 11:04,"678 8th St, Dallas, TX 75001" +297647,AA Batteries (4-pack),1,3.84,11/29/19 11:55,"534 West St, San Francisco, CA 94016" +297648,Lightning Charging Cable,1,14.95,11/05/19 23:04,"638 Willow St, New York City, NY 10001" +297649,iPhone,1,700,11/12/19 18:00,"582 Pine St, Boston, MA 02215" +297650,Wired Headphones,1,11.99,11/07/19 18:43,"923 Forest St, Seattle, WA 98101" +297651,USB-C Charging Cable,1,11.95,11/04/19 18:32,"75 7th St, Los Angeles, CA 90001" +297651,iPhone,1,700,11/04/19 18:32,"75 7th St, Los Angeles, CA 90001" +297652,Flatscreen TV,1,300,11/23/19 13:51,"851 Church St, San Francisco, CA 94016" +297653,Macbook Pro Laptop,1,1700,11/01/19 20:20,"449 Spruce St, New York City, NY 10001" +297654,Lightning Charging Cable,1,14.95,11/18/19 13:46,"426 Meadow St, New York City, NY 10001" +297655,USB-C Charging Cable,1,11.95,11/08/19 21:00,"28 Main St, Los Angeles, CA 90001" +297656,Lightning Charging Cable,1,14.95,11/13/19 12:29,"953 Walnut St, Boston, MA 02215" +297656,USB-C Charging Cable,1,11.95,11/13/19 12:29,"953 Walnut St, Boston, MA 02215" +297657,Lightning Charging Cable,1,14.95,11/18/19 09:26,"522 Cedar St, Los Angeles, CA 90001" +297658,Apple Airpods Headphones,1,150,11/18/19 15:28,"874 Madison St, Atlanta, GA 30301" +297659,AA Batteries (4-pack),2,3.84,11/28/19 15:48,"705 Jackson St, Seattle, WA 98101" +297660,ThinkPad Laptop,1,999.99,11/04/19 16:19,"857 Lake St, New York City, NY 10001" +297661,AA Batteries (4-pack),2,3.84,11/03/19 15:32,"949 Forest St, Portland, OR 97035" +297662,27in FHD Monitor,1,149.99,11/07/19 00:53,"102 Hill St, Austin, TX 73301" +297663,Wired Headphones,1,11.99,11/24/19 16:25,"644 Meadow St, San Francisco, CA 94016" +297664,Apple Airpods Headphones,1,150,11/09/19 14:17,"656 Madison St, San Francisco, CA 94016" +297665,LG Dryer,1,600.0,11/07/19 23:34,"949 1st St, San Francisco, CA 94016" +297666,Apple Airpods Headphones,1,150,11/28/19 07:38,"755 9th St, Boston, MA 02215" +297667,AAA Batteries (4-pack),1,2.99,11/30/19 13:58,"342 5th St, Los Angeles, CA 90001" +297668,AA Batteries (4-pack),1,3.84,11/23/19 20:02,"692 Main St, Atlanta, GA 30301" +297669,AAA Batteries (4-pack),1,2.99,11/28/19 21:19,"736 6th St, San Francisco, CA 94016" +297670,Wired Headphones,1,11.99,11/14/19 17:45,"299 9th St, Seattle, WA 98101" +297671,Flatscreen TV,1,300,11/27/19 21:44,"801 Dogwood St, San Francisco, CA 94016" +297672,Wired Headphones,1,11.99,11/22/19 22:01,"557 13th St, Boston, MA 02215" +297673,Lightning Charging Cable,1,14.95,11/09/19 23:08,"427 Adams St, Atlanta, GA 30301" +297674,Macbook Pro Laptop,1,1700,11/03/19 23:49,"317 Main St, Los Angeles, CA 90001" +297675,Lightning Charging Cable,1,14.95,11/30/19 00:11,"243 Highland St, Seattle, WA 98101" +297676,Wired Headphones,1,11.99,11/03/19 20:34,"724 Madison St, Los Angeles, CA 90001" +297677,27in 4K Gaming Monitor,1,389.99,11/16/19 09:48,"602 Lincoln St, New York City, NY 10001" +297678,iPhone,1,700,11/02/19 11:02,"72 Cherry St, Portland, OR 97035" +297678,Lightning Charging Cable,1,14.95,11/02/19 11:02,"72 Cherry St, Portland, OR 97035" +297679,AAA Batteries (4-pack),2,2.99,11/02/19 14:32,"277 Meadow St, Los Angeles, CA 90001" +297680,Bose SoundSport Headphones,1,99.99,11/16/19 17:27,"569 Center St, New York City, NY 10001" +297681,34in Ultrawide Monitor,1,379.99,11/16/19 14:40,"899 Walnut St, New York City, NY 10001" +297682,Wired Headphones,1,11.99,11/12/19 14:02,"455 Sunset St, Los Angeles, CA 90001" +297683,Wired Headphones,1,11.99,11/20/19 20:23,"274 Sunset St, San Francisco, CA 94016" +297684,Bose SoundSport Headphones,1,99.99,11/08/19 15:43,"994 River St, San Francisco, CA 94016" +297685,AA Batteries (4-pack),1,3.84,11/02/19 14:33,"776 Cherry St, Seattle, WA 98101" +297686,27in 4K Gaming Monitor,1,389.99,11/17/19 11:36,"176 Willow St, San Francisco, CA 94016" +297687,USB-C Charging Cable,1,11.95,11/08/19 17:21,"11 South St, Dallas, TX 75001" +297688,USB-C Charging Cable,2,11.95,11/26/19 13:38,"829 Madison St, Seattle, WA 98101" +297689,USB-C Charging Cable,1,11.95,11/21/19 22:11,"769 Spruce St, Boston, MA 02215" +297690,Wired Headphones,1,11.99,11/27/19 20:58,"176 8th St, San Francisco, CA 94016" +297691,AAA Batteries (4-pack),1,2.99,11/29/19 21:15,"612 Lincoln St, San Francisco, CA 94016" +297692,27in FHD Monitor,1,149.99,11/15/19 23:05,"545 5th St, New York City, NY 10001" +297693,Lightning Charging Cable,1,14.95,11/22/19 18:23,"406 11th St, San Francisco, CA 94016" +297694,Bose SoundSport Headphones,1,99.99,11/02/19 19:14,"577 Pine St, Los Angeles, CA 90001" +297695,USB-C Charging Cable,1,11.95,11/12/19 13:29,"908 Center St, Portland, OR 97035" +297696,AA Batteries (4-pack),1,3.84,11/18/19 06:22,"687 Lake St, New York City, NY 10001" +297697,Lightning Charging Cable,1,14.95,11/30/19 17:48,"370 West St, Austin, TX 73301" +297698,AAA Batteries (4-pack),1,2.99,11/05/19 20:37,"696 Pine St, New York City, NY 10001" +297699,Lightning Charging Cable,1,14.95,11/03/19 16:30,"762 Jefferson St, San Francisco, CA 94016" +297700,34in Ultrawide Monitor,1,379.99,11/06/19 03:02,"898 Madison St, Seattle, WA 98101" +297701,Bose SoundSport Headphones,1,99.99,11/11/19 11:51,"396 9th St, San Francisco, CA 94016" +297702,Apple Airpods Headphones,1,150,11/15/19 14:14,"968 Hickory St, Dallas, TX 75001" +297703,ThinkPad Laptop,1,999.99,11/22/19 17:59,"177 Cherry St, Los Angeles, CA 90001" +297704,Wired Headphones,1,11.99,11/26/19 10:01,"395 Ridge St, San Francisco, CA 94016" +297705,27in FHD Monitor,1,149.99,11/27/19 19:52,"123 Jefferson St, San Francisco, CA 94016" +297706,Bose SoundSport Headphones,1,99.99,11/07/19 21:43,"538 Church St, Los Angeles, CA 90001" +297707,ThinkPad Laptop,1,999.99,11/19/19 19:09,"462 Jefferson St, Dallas, TX 75001" +297708,USB-C Charging Cable,1,11.95,11/04/19 21:20,"652 Church St, New York City, NY 10001" +297709,Google Phone,1,600,11/28/19 10:31,"730 Ridge St, Atlanta, GA 30301" +297710,ThinkPad Laptop,1,999.99,11/06/19 13:23,"277 Pine St, New York City, NY 10001" +297711,Flatscreen TV,1,300,11/01/19 11:38,"488 8th St, Atlanta, GA 30301" +297712,27in 4K Gaming Monitor,1,389.99,11/22/19 11:27,"584 Lake St, San Francisco, CA 94016" +297713,27in FHD Monitor,1,149.99,11/04/19 08:56,"582 Pine St, New York City, NY 10001" +297714,iPhone,1,700,11/02/19 18:46,"597 9th St, San Francisco, CA 94016" +297715,Wired Headphones,1,11.99,11/26/19 19:56,"702 Main St, Boston, MA 02215" +297716,USB-C Charging Cable,3,11.95,11/15/19 14:36,"900 West St, Atlanta, GA 30301" +297717,AA Batteries (4-pack),2,3.84,11/12/19 16:54,"26 Ridge St, Boston, MA 02215" +297718,Bose SoundSport Headphones,1,99.99,11/11/19 13:20,"442 Park St, New York City, NY 10001" +297719,AAA Batteries (4-pack),1,2.99,11/02/19 10:48,"546 Spruce St, Seattle, WA 98101" +297720,Apple Airpods Headphones,1,150,11/08/19 15:53,"296 13th St, Atlanta, GA 30301" +297721,Lightning Charging Cable,1,14.95,11/27/19 10:50,"926 Ridge St, New York City, NY 10001" +297722,Lightning Charging Cable,1,14.95,11/04/19 08:32,"16 Park St, Los Angeles, CA 90001" +297723,USB-C Charging Cable,1,11.95,11/27/19 14:10,"563 Sunset St, Boston, MA 02215" +297724,Apple Airpods Headphones,1,150,11/04/19 22:56,"265 4th St, Dallas, TX 75001" +297725,Lightning Charging Cable,1,14.95,11/25/19 10:57,"1 10th St, Seattle, WA 98101" +297725,iPhone,1,700,11/25/19 10:57,"1 10th St, Seattle, WA 98101" +297726,AA Batteries (4-pack),1,3.84,11/27/19 13:27,"522 Wilson St, San Francisco, CA 94016" +297727,USB-C Charging Cable,1,11.95,11/14/19 19:41,"355 4th St, Atlanta, GA 30301" +297728,34in Ultrawide Monitor,1,379.99,11/26/19 18:43,"511 Johnson St, Atlanta, GA 30301" +297729,Lightning Charging Cable,1,14.95,11/09/19 06:08,"889 North St, Los Angeles, CA 90001" +297730,iPhone,1,700,11/17/19 19:14,"688 Meadow St, San Francisco, CA 94016" +297731,Wired Headphones,1,11.99,11/18/19 17:21,"543 12th St, San Francisco, CA 94016" +297732,USB-C Charging Cable,1,11.95,11/20/19 12:31,"807 10th St, San Francisco, CA 94016" +297733,iPhone,1,700,11/03/19 12:36,"553 Main St, New York City, NY 10001" +297734,Lightning Charging Cable,1,14.95,11/13/19 22:08,"940 10th St, Seattle, WA 98101" +297735,Bose SoundSport Headphones,1,99.99,11/16/19 12:38,"134 Cedar St, Dallas, TX 75001" +297735,AA Batteries (4-pack),1,3.84,11/16/19 12:38,"134 Cedar St, Dallas, TX 75001" +297736,27in FHD Monitor,1,149.99,11/21/19 16:26,"449 Hickory St, Los Angeles, CA 90001" +297737,USB-C Charging Cable,1,11.95,11/18/19 01:46,"609 Ridge St, New York City, NY 10001" +297737,USB-C Charging Cable,1,11.95,11/18/19 01:46,"609 Ridge St, New York City, NY 10001" +297738,USB-C Charging Cable,1,11.95,11/20/19 16:20,"990 1st St, Austin, TX 73301" +297739,27in FHD Monitor,1,149.99,11/29/19 23:30,"563 Pine St, Los Angeles, CA 90001" +297740,AAA Batteries (4-pack),3,2.99,11/23/19 13:16,"921 Lakeview St, San Francisco, CA 94016" +297741,AAA Batteries (4-pack),1,2.99,11/09/19 16:28,"286 11th St, Atlanta, GA 30301" +297742,Apple Airpods Headphones,1,150,11/16/19 13:19,"746 Cherry St, San Francisco, CA 94016" +297743,iPhone,1,700,11/18/19 12:39,"636 Sunset St, Seattle, WA 98101" +297744,Apple Airpods Headphones,1,150,11/22/19 07:49,"467 Forest St, Boston, MA 02215" +297745,34in Ultrawide Monitor,1,379.99,11/12/19 23:02,"541 Cedar St, Seattle, WA 98101" +297746,Apple Airpods Headphones,1,150,11/13/19 11:47,"834 10th St, San Francisco, CA 94016" +297747,Lightning Charging Cable,1,14.95,11/08/19 08:44,"689 Walnut St, Austin, TX 73301" +297748,iPhone,1,700,11/30/19 20:15,"745 Forest St, Boston, MA 02215" +297749,Lightning Charging Cable,1,14.95,11/06/19 18:46,"759 9th St, New York City, NY 10001" +297750,AAA Batteries (4-pack),3,2.99,11/25/19 19:10,"745 2nd St, Boston, MA 02215" +297751,Apple Airpods Headphones,1,150,11/26/19 11:55,"103 Forest St, Dallas, TX 75001" +297752,ThinkPad Laptop,1,999.99,11/13/19 20:08,"373 Adams St, Boston, MA 02215" +297753,27in FHD Monitor,1,149.99,11/19/19 19:32,"89 Church St, Atlanta, GA 30301" +297754,AA Batteries (4-pack),2,3.84,11/20/19 11:12,"145 Lakeview St, Austin, TX 73301" +297755,AAA Batteries (4-pack),2,2.99,11/18/19 15:39,"118 Meadow St, San Francisco, CA 94016" +297756,AAA Batteries (4-pack),2,2.99,11/15/19 07:56,"775 Chestnut St, Los Angeles, CA 90001" +297757,Lightning Charging Cable,2,14.95,11/07/19 16:55,"805 6th St, New York City, NY 10001" +297758,Lightning Charging Cable,1,14.95,11/11/19 14:14,"609 7th St, Los Angeles, CA 90001" +297759,ThinkPad Laptop,1,999.99,11/17/19 23:57,"142 1st St, Dallas, TX 75001" +297759,LG Dryer,1,600.0,11/17/19 23:57,"142 1st St, Dallas, TX 75001" +297760,Lightning Charging Cable,1,14.95,11/04/19 20:50,"407 8th St, San Francisco, CA 94016" +297761,Lightning Charging Cable,1,14.95,11/29/19 22:33,"454 Highland St, Boston, MA 02215" +297762,AA Batteries (4-pack),1,3.84,11/25/19 19:49,"941 14th St, New York City, NY 10001" +297763,Lightning Charging Cable,1,14.95,11/16/19 13:02,"850 River St, Los Angeles, CA 90001" +297764,AAA Batteries (4-pack),1,2.99,11/04/19 15:24,"657 Adams St, Atlanta, GA 30301" +297765,Apple Airpods Headphones,1,150,11/26/19 18:56,"406 Cherry St, Atlanta, GA 30301" +297766,AAA Batteries (4-pack),2,2.99,11/13/19 19:39,"448 Highland St, San Francisco, CA 94016" +297767,AA Batteries (4-pack),1,3.84,11/01/19 18:13,"316 Cherry St, Portland, OR 97035" +297768,Wired Headphones,1,11.99,11/12/19 19:02,"784 Church St, Austin, TX 73301" +297769,ThinkPad Laptop,1,999.99,11/30/19 17:09,"230 14th St, Dallas, TX 75001" +297770,Apple Airpods Headphones,1,150,11/23/19 21:30,"406 Willow St, Dallas, TX 75001" +297771,AA Batteries (4-pack),1,3.84,11/05/19 16:01,"615 Walnut St, Boston, MA 02215" +297772,Google Phone,1,600,11/05/19 17:45,"121 2nd St, New York City, NY 10001" +297772,USB-C Charging Cable,2,11.95,11/05/19 17:45,"121 2nd St, New York City, NY 10001" +297773,Bose SoundSport Headphones,1,99.99,11/14/19 21:28,"59 Lakeview St, San Francisco, CA 94016" +297774,Google Phone,1,600,11/28/19 12:47,"521 Pine St, Dallas, TX 75001" +297775,Apple Airpods Headphones,1,150,11/25/19 10:48,"712 Cedar St, Dallas, TX 75001" +297776,Wired Headphones,1,11.99,11/13/19 11:41,"788 Park St, Atlanta, GA 30301" +297777,USB-C Charging Cable,1,11.95,11/16/19 14:18,"746 6th St, San Francisco, CA 94016" +297778,AA Batteries (4-pack),3,3.84,11/17/19 19:53,"255 Maple St, New York City, NY 10001" +297779,AA Batteries (4-pack),1,3.84,11/01/19 17:40,"513 Jackson St, Seattle, WA 98101" +297780,Wired Headphones,1,11.99,11/15/19 18:05,"22 Highland St, San Francisco, CA 94016" +297781,AAA Batteries (4-pack),1,2.99,11/27/19 20:22,"367 Meadow St, Los Angeles, CA 90001" +297782,Apple Airpods Headphones,1,150,11/29/19 21:50,"917 Forest St, Los Angeles, CA 90001" +297783,Google Phone,1,600,11/04/19 20:27,"269 7th St, San Francisco, CA 94016" +297784,Bose SoundSport Headphones,1,99.99,11/22/19 00:22,"799 Hickory St, Boston, MA 02215" +297785,Bose SoundSport Headphones,1,99.99,11/30/19 16:44,"536 Meadow St, San Francisco, CA 94016" +297786,Lightning Charging Cable,1,14.95,11/17/19 20:29,"99 Johnson St, Seattle, WA 98101" +297787,iPhone,1,700,11/12/19 10:39,"672 Willow St, Seattle, WA 98101" +297788,iPhone,1,700,11/12/19 22:54,"131 Cedar St, Atlanta, GA 30301" +297788,Apple Airpods Headphones,1,150,11/12/19 22:54,"131 Cedar St, Atlanta, GA 30301" +297789,AAA Batteries (4-pack),1,2.99,11/02/19 09:08,"972 South St, Portland, ME 04101" +297790,27in 4K Gaming Monitor,1,389.99,11/30/19 14:22,"517 South St, San Francisco, CA 94016" +297791,AAA Batteries (4-pack),3,2.99,11/22/19 15:00,"278 6th St, Portland, OR 97035" +297792,Macbook Pro Laptop,1,1700,11/12/19 10:55,"408 7th St, Dallas, TX 75001" +297793,Wired Headphones,1,11.99,11/04/19 19:16,"95 1st St, Los Angeles, CA 90001" +297794,Wired Headphones,1,11.99,11/02/19 18:27,"802 Elm St, Seattle, WA 98101" +297795,USB-C Charging Cable,1,11.95,11/06/19 08:39,"683 Madison St, Boston, MA 02215" +297796,USB-C Charging Cable,2,11.95,11/16/19 18:43,"982 Wilson St, New York City, NY 10001" +297797,iPhone,1,700,11/12/19 17:05,"285 West St, Dallas, TX 75001" +297798,AA Batteries (4-pack),1,3.84,11/27/19 10:40,"216 Forest St, San Francisco, CA 94016" +297799,27in 4K Gaming Monitor,1,389.99,11/08/19 11:27,"234 Walnut St, Atlanta, GA 30301" +297800,Lightning Charging Cable,2,14.95,11/10/19 18:49,"671 South St, Dallas, TX 75001" +297800,Bose SoundSport Headphones,1,99.99,11/10/19 18:49,"671 South St, Dallas, TX 75001" +297801,AAA Batteries (4-pack),2,2.99,11/07/19 19:02,"301 Johnson St, San Francisco, CA 94016" +297802,27in FHD Monitor,1,149.99,11/13/19 06:56,"287 Lincoln St, New York City, NY 10001" +297803,Lightning Charging Cable,1,14.95,11/28/19 13:02,"583 7th St, Los Angeles, CA 90001" +297804,USB-C Charging Cable,1,11.95,11/19/19 11:53,"193 Lakeview St, Seattle, WA 98101" +297805,iPhone,1,700,11/22/19 22:33,"506 Lakeview St, Boston, MA 02215" +297806,27in 4K Gaming Monitor,1,389.99,11/29/19 14:24,"576 2nd St, Los Angeles, CA 90001" +297807,USB-C Charging Cable,1,11.95,11/02/19 10:02,"261 10th St, Dallas, TX 75001" +297808,Bose SoundSport Headphones,1,99.99,11/16/19 19:02,"79 Lake St, San Francisco, CA 94016" +297809,AA Batteries (4-pack),1,3.84,11/27/19 11:07,"229 Elm St, Los Angeles, CA 90001" +297810,Wired Headphones,1,11.99,11/06/19 21:50,"855 Pine St, Atlanta, GA 30301" +297811,ThinkPad Laptop,1,999.99,11/23/19 15:56,"805 Center St, San Francisco, CA 94016" +297812,AA Batteries (4-pack),1,3.84,11/15/19 06:12,"438 Willow St, Los Angeles, CA 90001" +297813,Lightning Charging Cable,1,14.95,11/24/19 11:34,"955 Ridge St, Los Angeles, CA 90001" +297814,Lightning Charging Cable,1,14.95,11/19/19 01:25,"436 South St, Atlanta, GA 30301" +297814,USB-C Charging Cable,1,11.95,11/19/19 01:25,"436 South St, Atlanta, GA 30301" +297815,27in 4K Gaming Monitor,1,389.99,11/17/19 00:22,"724 Forest St, Boston, MA 02215" +297816,USB-C Charging Cable,1,11.95,11/29/19 13:45,"63 Elm St, Austin, TX 73301" +297817,Wired Headphones,1,11.99,11/14/19 19:22,"420 Meadow St, San Francisco, CA 94016" +297818,AA Batteries (4-pack),1,3.84,11/11/19 18:10,"221 9th St, San Francisco, CA 94016" +297819,AAA Batteries (4-pack),1,2.99,11/06/19 22:39,"363 Jackson St, Portland, OR 97035" +297820,Bose SoundSport Headphones,1,99.99,11/12/19 14:55,"112 14th St, Austin, TX 73301" +297821,ThinkPad Laptop,1,999.99,11/01/19 13:15,"81 7th St, Atlanta, GA 30301" +297822,Lightning Charging Cable,1,14.95,11/13/19 06:51,"465 Willow St, Dallas, TX 75001" +297823,27in 4K Gaming Monitor,1,389.99,11/17/19 11:50,"698 Pine St, Atlanta, GA 30301" +297824,27in FHD Monitor,1,149.99,11/18/19 19:42,"835 River St, New York City, NY 10001" +297825,AAA Batteries (4-pack),1,2.99,11/20/19 17:44,"530 13th St, New York City, NY 10001" +297826,Lightning Charging Cable,1,14.95,11/07/19 05:18,"445 2nd St, Portland, OR 97035" +297827,Vareebadd Phone,1,400,11/10/19 09:29,"856 1st St, Los Angeles, CA 90001" +297828,iPhone,1,700,11/28/19 13:42,"630 Jefferson St, Dallas, TX 75001" +297828,Lightning Charging Cable,1,14.95,11/28/19 13:42,"630 Jefferson St, Dallas, TX 75001" +297829,27in 4K Gaming Monitor,1,389.99,11/12/19 18:53,"781 Jackson St, Los Angeles, CA 90001" +297830,AA Batteries (4-pack),5,3.84,11/30/19 18:35,"959 10th St, San Francisco, CA 94016" +297831,AA Batteries (4-pack),1,3.84,11/13/19 21:44,"761 Dogwood St, Boston, MA 02215" +297832,USB-C Charging Cable,1,11.95,11/16/19 10:29,"932 Park St, Boston, MA 02215" +297833,Apple Airpods Headphones,1,150,11/25/19 09:41,"995 6th St, San Francisco, CA 94016" +297834,AAA Batteries (4-pack),1,2.99,11/18/19 10:55,"77 Park St, San Francisco, CA 94016" +297835,ThinkPad Laptop,1,999.99,11/14/19 11:29,"247 Sunset St, Los Angeles, CA 90001" +297836,Wired Headphones,1,11.99,11/14/19 14:20,"8 1st St, New York City, NY 10001" +297837,27in FHD Monitor,1,149.99,11/25/19 19:36,"575 11th St, Portland, OR 97035" +297838,27in FHD Monitor,1,149.99,11/22/19 14:14,"185 South St, Atlanta, GA 30301" +297839,Macbook Pro Laptop,1,1700,11/16/19 11:02,"208 Cedar St, San Francisco, CA 94016" +297840,Bose SoundSport Headphones,1,99.99,11/10/19 23:12,"799 Lincoln St, Portland, OR 97035" +297841,Bose SoundSport Headphones,1,99.99,11/01/19 11:42,"818 13th St, Boston, MA 02215" +297842,Wired Headphones,1,11.99,11/27/19 12:25,"628 Cherry St, San Francisco, CA 94016" +297843,Wired Headphones,1,11.99,11/05/19 23:03,"694 Highland St, Atlanta, GA 30301" +297844,Lightning Charging Cable,1,14.95,11/01/19 17:42,"605 Jefferson St, Boston, MA 02215" +297845,Lightning Charging Cable,1,14.95,11/04/19 17:23,"392 Madison St, San Francisco, CA 94016" +297846,AA Batteries (4-pack),1,3.84,11/19/19 13:07,"432 Sunset St, San Francisco, CA 94016" +297847,27in 4K Gaming Monitor,1,389.99,11/14/19 18:19,"458 Wilson St, Portland, OR 97035" +297848,Wired Headphones,1,11.99,11/24/19 18:08,"73 Elm St, San Francisco, CA 94016" +297849,USB-C Charging Cable,1,11.95,11/02/19 18:40,"569 Meadow St, San Francisco, CA 94016" +297850,Bose SoundSport Headphones,1,99.99,11/20/19 21:50,"656 River St, Seattle, WA 98101" +297851,Macbook Pro Laptop,1,1700,11/10/19 00:28,"878 14th St, New York City, NY 10001" +297852,Flatscreen TV,1,300,11/06/19 19:59,"612 Adams St, Dallas, TX 75001" +297853,20in Monitor,1,109.99,11/30/19 18:17,"115 8th St, San Francisco, CA 94016" +297854,ThinkPad Laptop,1,999.99,11/19/19 19:25,"496 2nd St, New York City, NY 10001" +297855,Google Phone,1,600,11/06/19 20:37,"45 Pine St, Seattle, WA 98101" +297856,iPhone,1,700,11/07/19 18:12,"614 12th St, San Francisco, CA 94016" +297856,Wired Headphones,1,11.99,11/07/19 18:12,"614 12th St, San Francisco, CA 94016" +297857,Bose SoundSport Headphones,1,99.99,11/30/19 12:59,"160 11th St, San Francisco, CA 94016" +297858,USB-C Charging Cable,1,11.95,11/21/19 00:41,"948 4th St, San Francisco, CA 94016" +297859,Macbook Pro Laptop,1,1700,11/30/19 14:25,"272 Jackson St, San Francisco, CA 94016" +297860,Wired Headphones,1,11.99,11/02/19 22:18,"645 Jackson St, Atlanta, GA 30301" +297861,Apple Airpods Headphones,1,150,11/23/19 00:35,"845 4th St, San Francisco, CA 94016" +297862,Bose SoundSport Headphones,1,99.99,11/14/19 19:33,"594 Walnut St, Los Angeles, CA 90001" +297863,AA Batteries (4-pack),1,3.84,11/09/19 18:49,"119 Wilson St, Los Angeles, CA 90001" +297864,AA Batteries (4-pack),1,3.84,11/30/19 17:22,"228 Wilson St, Seattle, WA 98101" +297865,Bose SoundSport Headphones,1,99.99,11/13/19 22:00,"154 9th St, Austin, TX 73301" +297866,Lightning Charging Cable,1,14.95,11/27/19 18:45,"662 Spruce St, Boston, MA 02215" +297867,Lightning Charging Cable,1,14.95,11/06/19 17:15,"176 Maple St, San Francisco, CA 94016" +297868,Wired Headphones,1,11.99,11/03/19 19:43,"598 Willow St, Los Angeles, CA 90001" +297869,ThinkPad Laptop,1,999.99,11/18/19 10:49,"112 Washington St, Los Angeles, CA 90001" +297870,Wired Headphones,1,11.99,11/25/19 23:34,"429 9th St, San Francisco, CA 94016" +297871,Bose SoundSport Headphones,1,99.99,11/28/19 21:11,"887 Church St, Atlanta, GA 30301" +297872,Lightning Charging Cable,1,14.95,11/22/19 08:59,"261 Cedar St, New York City, NY 10001" +297873,AA Batteries (4-pack),1,3.84,11/21/19 20:56,"773 Church St, Seattle, WA 98101" +297874,AA Batteries (4-pack),1,3.84,11/21/19 16:04,"137 Walnut St, San Francisco, CA 94016" +297875,27in FHD Monitor,1,149.99,11/26/19 12:34,"4 Washington St, Atlanta, GA 30301" +297876,Wired Headphones,1,11.99,11/12/19 13:29,"4 Hill St, New York City, NY 10001" +297877,27in FHD Monitor,1,149.99,11/06/19 09:37,"889 Johnson St, New York City, NY 10001" +297878,AA Batteries (4-pack),1,3.84,11/27/19 07:15,"913 Walnut St, New York City, NY 10001" +297879,Macbook Pro Laptop,1,1700,11/16/19 10:36,"963 Center St, Los Angeles, CA 90001" +297880,Lightning Charging Cable,1,14.95,11/23/19 23:26,"757 4th St, Seattle, WA 98101" +297881,USB-C Charging Cable,1,11.95,11/29/19 21:28,"279 Forest St, San Francisco, CA 94016" +297882,Macbook Pro Laptop,1,1700,11/06/19 21:13,"276 North St, New York City, NY 10001" +297883,Wired Headphones,1,11.99,11/03/19 11:36,"749 Pine St, Dallas, TX 75001" +297884,27in 4K Gaming Monitor,1,389.99,11/07/19 12:06,"916 6th St, New York City, NY 10001" +297885,AAA Batteries (4-pack),1,2.99,11/26/19 21:02,"410 5th St, Los Angeles, CA 90001" +297886,Apple Airpods Headphones,1,150,11/15/19 23:09,"684 Park St, San Francisco, CA 94016" +297887,USB-C Charging Cable,1,11.95,11/24/19 20:44,"365 Johnson St, New York City, NY 10001" +297888,AAA Batteries (4-pack),2,2.99,11/18/19 18:16,"342 South St, Portland, OR 97035" +297889,USB-C Charging Cable,3,11.95,11/03/19 11:07,"503 14th St, San Francisco, CA 94016" +297890,AAA Batteries (4-pack),2,2.99,11/17/19 03:49,"915 Ridge St, San Francisco, CA 94016" +297891,Lightning Charging Cable,1,14.95,11/10/19 09:20,"779 Wilson St, Dallas, TX 75001" +297892,Apple Airpods Headphones,1,150,11/23/19 18:09,"525 Park St, New York City, NY 10001" +297893,AAA Batteries (4-pack),1,2.99,11/17/19 09:52,"808 Elm St, New York City, NY 10001" +297894,27in FHD Monitor,1,149.99,11/18/19 16:13,"682 Willow St, San Francisco, CA 94016" +297895,27in 4K Gaming Monitor,1,389.99,11/04/19 19:28,"131 Sunset St, Seattle, WA 98101" +297896,20in Monitor,1,109.99,11/14/19 19:35,"905 Johnson St, Dallas, TX 75001" +297897,27in FHD Monitor,1,149.99,11/22/19 11:27,"404 River St, San Francisco, CA 94016" +297898,USB-C Charging Cable,1,11.95,11/14/19 06:57,"462 Lake St, Austin, TX 73301" +297899,USB-C Charging Cable,1,11.95,11/02/19 15:55,"529 Sunset St, New York City, NY 10001" +297900,Lightning Charging Cable,1,14.95,11/10/19 16:38,"645 1st St, Atlanta, GA 30301" +297901,AAA Batteries (4-pack),1,2.99,11/07/19 14:14,"350 6th St, Portland, OR 97035" +297902,USB-C Charging Cable,1,11.95,11/20/19 18:14,"117 Cedar St, Seattle, WA 98101" +297903,Wired Headphones,1,11.99,11/19/19 17:32,"991 1st St, San Francisco, CA 94016" +297904,Lightning Charging Cable,3,14.95,11/05/19 20:19,"581 13th St, San Francisco, CA 94016" +297905,Apple Airpods Headphones,1,150,11/05/19 18:06,"60 9th St, Seattle, WA 98101" +297906,Google Phone,1,600,11/27/19 15:16,"541 12th St, Boston, MA 02215" +297906,USB-C Charging Cable,1,11.95,11/27/19 15:16,"541 12th St, Boston, MA 02215" +297907,AA Batteries (4-pack),1,3.84,11/28/19 12:52,"200 Hickory St, Atlanta, GA 30301" +297908,Flatscreen TV,1,300,11/05/19 08:01,"929 4th St, Boston, MA 02215" +297909,USB-C Charging Cable,1,11.95,11/01/19 15:20,"898 Elm St, Los Angeles, CA 90001" +297910,34in Ultrawide Monitor,1,379.99,11/26/19 18:57,"65 Main St, Seattle, WA 98101" +297911,USB-C Charging Cable,1,11.95,11/22/19 13:45,"698 North St, San Francisco, CA 94016" +297912,AAA Batteries (4-pack),1,2.99,11/02/19 23:01,"843 Main St, New York City, NY 10001" +297913,AAA Batteries (4-pack),2,2.99,11/28/19 16:21,"549 Church St, Portland, OR 97035" +297914,AAA Batteries (4-pack),1,2.99,11/28/19 01:16,"735 14th St, New York City, NY 10001" +297915,34in Ultrawide Monitor,1,379.99,11/10/19 16:07,"734 Elm St, Dallas, TX 75001" +297916,AA Batteries (4-pack),1,3.84,11/02/19 16:12,"481 Johnson St, San Francisco, CA 94016" +297917,iPhone,1,700,11/02/19 16:45,"853 Ridge St, Dallas, TX 75001" +297917,Wired Headphones,1,11.99,11/02/19 16:45,"853 Ridge St, Dallas, TX 75001" +297918,Lightning Charging Cable,1,14.95,11/02/19 10:34,"168 Wilson St, Los Angeles, CA 90001" +297919,Flatscreen TV,1,300,11/02/19 17:32,"45 Cherry St, San Francisco, CA 94016" +297920,AAA Batteries (4-pack),1,2.99,11/08/19 22:49,"338 Washington St, Portland, OR 97035" +297921,Wired Headphones,1,11.99,11/16/19 03:34,"821 6th St, Atlanta, GA 30301" +297922,USB-C Charging Cable,1,11.95,11/29/19 14:24,"6 Forest St, Portland, OR 97035" +297923,Google Phone,1,600,11/02/19 12:48,"395 Madison St, Boston, MA 02215" +297924,34in Ultrawide Monitor,1,379.99,11/09/19 13:42,"20 2nd St, Seattle, WA 98101" +297925,AA Batteries (4-pack),1,3.84,11/26/19 10:38,"981 6th St, New York City, NY 10001" +297925,AAA Batteries (4-pack),3,2.99,11/26/19 10:38,"981 6th St, New York City, NY 10001" +297926,AAA Batteries (4-pack),2,2.99,11/24/19 18:07,"162 North St, San Francisco, CA 94016" +297927,34in Ultrawide Monitor,1,379.99,11/12/19 23:48,"385 Park St, Seattle, WA 98101" +297928,Google Phone,1,600,11/12/19 14:20,"743 Meadow St, New York City, NY 10001" +297929,USB-C Charging Cable,1,11.95,11/29/19 07:08,"721 Chestnut St, San Francisco, CA 94016" +297930,USB-C Charging Cable,1,11.95,11/08/19 20:30,"543 Center St, Portland, ME 04101" +297931,Apple Airpods Headphones,1,150,11/27/19 14:04,"612 1st St, New York City, NY 10001" +,,,,, +297932,Wired Headphones,1,11.99,11/11/19 17:05,"31 Madison St, Los Angeles, CA 90001" +297933,AAA Batteries (4-pack),1,2.99,11/08/19 21:57,"309 South St, Dallas, TX 75001" +297934,Apple Airpods Headphones,1,150,11/28/19 20:19,"881 Cedar St, New York City, NY 10001" +297935,20in Monitor,1,109.99,11/17/19 20:11,"645 Jefferson St, Atlanta, GA 30301" +297936,USB-C Charging Cable,1,11.95,11/12/19 20:32,"292 Main St, Austin, TX 73301" +297937,27in FHD Monitor,1,149.99,11/21/19 20:49,"882 North St, San Francisco, CA 94016" +297938,AA Batteries (4-pack),1,3.84,11/10/19 22:35,"305 11th St, Boston, MA 02215" +297939,Apple Airpods Headphones,1,150,11/08/19 17:28,"798 Park St, Los Angeles, CA 90001" +297940,AAA Batteries (4-pack),1,2.99,11/06/19 15:01,"114 11th St, San Francisco, CA 94016" +297941,Bose SoundSport Headphones,1,99.99,11/08/19 21:16,"910 Church St, San Francisco, CA 94016" +297942,27in 4K Gaming Monitor,1,389.99,11/04/19 07:53,"466 West St, Boston, MA 02215" +297943,27in FHD Monitor,1,149.99,11/26/19 20:12,"29 Church St, Dallas, TX 75001" +297944,Flatscreen TV,1,300,11/27/19 20:39,"740 Madison St, Boston, MA 02215" +297945,Apple Airpods Headphones,1,150,11/01/19 19:41,"344 Lakeview St, Austin, TX 73301" +297946,AAA Batteries (4-pack),2,2.99,11/20/19 19:58,"355 7th St, San Francisco, CA 94016" +297947,27in FHD Monitor,1,149.99,11/24/19 15:34,"293 Jackson St, Boston, MA 02215" +297948,Bose SoundSport Headphones,1,99.99,11/16/19 02:30,"401 8th St, Los Angeles, CA 90001" +297949,Google Phone,1,600,11/04/19 19:41,"781 South St, Boston, MA 02215" +297950,34in Ultrawide Monitor,1,379.99,11/03/19 09:20,"500 Meadow St, Dallas, TX 75001" +297951,Bose SoundSport Headphones,1,99.99,11/16/19 23:30,"336 Dogwood St, San Francisco, CA 94016" +297952,27in FHD Monitor,1,149.99,11/19/19 23:40,"607 Ridge St, Boston, MA 02215" +297953,AAA Batteries (4-pack),1,2.99,11/05/19 21:21,"746 Jefferson St, New York City, NY 10001" +297954,Bose SoundSport Headphones,1,99.99,11/21/19 15:15,"452 Dogwood St, Dallas, TX 75001" +297955,USB-C Charging Cable,1,11.95,11/20/19 19:52,"528 North St, Seattle, WA 98101" +297956,Lightning Charging Cable,1,14.95,11/29/19 09:53,"917 North St, Austin, TX 73301" +297957,LG Washing Machine,1,600.0,11/25/19 02:02,"354 Maple St, New York City, NY 10001" +297958,Bose SoundSport Headphones,1,99.99,11/25/19 09:19,"314 1st St, San Francisco, CA 94016" +297959,AAA Batteries (4-pack),1,2.99,11/12/19 21:19,"851 14th St, San Francisco, CA 94016" +297960,AAA Batteries (4-pack),1,2.99,11/16/19 14:07,"687 Dogwood St, Dallas, TX 75001" +297961,27in FHD Monitor,1,149.99,11/12/19 17:53,"606 West St, San Francisco, CA 94016" +297962,Wired Headphones,1,11.99,11/06/19 09:58,"731 Main St, Los Angeles, CA 90001" +297963,Lightning Charging Cable,1,14.95,11/06/19 12:29,"465 7th St, Portland, OR 97035" +297964,AAA Batteries (4-pack),1,2.99,11/29/19 21:20,"293 Hill St, San Francisco, CA 94016" +297965,USB-C Charging Cable,1,11.95,12/01/19 01:39,"252 Lakeview St, Dallas, TX 75001" +297966,AAA Batteries (4-pack),2,2.99,11/28/19 13:46,"509 Wilson St, Dallas, TX 75001" +297967,Wired Headphones,1,11.99,11/18/19 14:53,"783 Willow St, Seattle, WA 98101" +297968,Flatscreen TV,1,300,11/13/19 15:22,"195 8th St, Austin, TX 73301" +297969,Macbook Pro Laptop,1,1700,11/20/19 13:48,"673 Chestnut St, Los Angeles, CA 90001" +297970,AAA Batteries (4-pack),1,2.99,11/18/19 15:49,"527 Walnut St, New York City, NY 10001" +297971,USB-C Charging Cable,1,11.95,11/23/19 22:05,"791 6th St, San Francisco, CA 94016" +297972,Flatscreen TV,1,300,11/05/19 23:22,"194 10th St, Los Angeles, CA 90001" +297973,Wired Headphones,1,11.99,11/12/19 21:07,"485 Wilson St, Boston, MA 02215" +297974,Bose SoundSport Headphones,1,99.99,11/07/19 22:54,"431 South St, Austin, TX 73301" +297975,Apple Airpods Headphones,1,150,11/10/19 15:09,"514 Wilson St, San Francisco, CA 94016" +297976,Apple Airpods Headphones,1,150,11/15/19 11:36,"480 Center St, Los Angeles, CA 90001" +297977,USB-C Charging Cable,1,11.95,11/20/19 11:53,"592 Chestnut St, Los Angeles, CA 90001" +297978,20in Monitor,1,109.99,11/07/19 09:57,"299 Adams St, Boston, MA 02215" +297979,20in Monitor,2,109.99,11/03/19 15:31,"927 Dogwood St, New York City, NY 10001" +297980,Lightning Charging Cable,1,14.95,11/28/19 12:50,"718 5th St, San Francisco, CA 94016" +297981,Wired Headphones,2,11.99,11/06/19 17:18,"396 9th St, Los Angeles, CA 90001" +297982,AAA Batteries (4-pack),2,2.99,11/01/19 15:01,"793 Park St, Portland, OR 97035" +297983,USB-C Charging Cable,1,11.95,11/25/19 09:35,"150 13th St, San Francisco, CA 94016" +297984,iPhone,1,700,11/27/19 22:51,"390 Washington St, New York City, NY 10001" +297985,AAA Batteries (4-pack),1,2.99,11/09/19 14:51,"496 Wilson St, New York City, NY 10001" +297986,Flatscreen TV,1,300,11/29/19 12:10,"688 Cedar St, Boston, MA 02215" +297987,Flatscreen TV,1,300,11/30/19 15:46,"4 Park St, San Francisco, CA 94016" +297988,Vareebadd Phone,1,400,11/11/19 16:43,"934 Ridge St, Seattle, WA 98101" +297989,Wired Headphones,1,11.99,11/01/19 14:35,"396 Dogwood St, San Francisco, CA 94016" +297990,20in Monitor,1,109.99,11/26/19 20:52,"718 Elm St, Atlanta, GA 30301" +297991,USB-C Charging Cable,1,11.95,11/20/19 12:16,"60 Walnut St, San Francisco, CA 94016" +297992,Apple Airpods Headphones,1,150,11/24/19 13:50,"589 1st St, Portland, OR 97035" +297993,27in FHD Monitor,1,149.99,11/11/19 08:08,"268 Sunset St, San Francisco, CA 94016" +297994,Wired Headphones,1,11.99,11/17/19 10:12,"807 9th St, Boston, MA 02215" +297995,USB-C Charging Cable,1,11.95,11/02/19 11:35,"35 13th St, Los Angeles, CA 90001" +297996,34in Ultrawide Monitor,1,379.99,11/19/19 16:14,"809 Hickory St, Boston, MA 02215" +297997,AAA Batteries (4-pack),1,2.99,11/21/19 10:33,"224 South St, Los Angeles, CA 90001" +297998,USB-C Charging Cable,2,11.95,11/03/19 19:56,"469 Chestnut St, Portland, OR 97035" +297999,27in 4K Gaming Monitor,1,389.99,11/19/19 22:10,"308 Hickory St, Boston, MA 02215" +298000,AAA Batteries (4-pack),2,2.99,11/05/19 20:09,"553 Pine St, Los Angeles, CA 90001" +298001,ThinkPad Laptop,1,999.99,11/29/19 07:36,"119 4th St, Boston, MA 02215" +298002,Lightning Charging Cable,1,14.95,11/20/19 23:13,"193 8th St, Boston, MA 02215" +298003,AAA Batteries (4-pack),4,2.99,11/19/19 10:35,"497 Forest St, San Francisco, CA 94016" +298004,20in Monitor,1,109.99,11/23/19 16:25,"457 Madison St, Boston, MA 02215" +298005,Bose SoundSport Headphones,1,99.99,11/11/19 17:13,"628 12th St, Seattle, WA 98101" +298006,Wired Headphones,1,11.99,11/04/19 13:27,"587 13th St, San Francisco, CA 94016" +298007,27in FHD Monitor,1,149.99,11/08/19 20:41,"126 Main St, San Francisco, CA 94016" +298007,Lightning Charging Cable,2,14.95,11/08/19 20:41,"126 Main St, San Francisco, CA 94016" +298008,USB-C Charging Cable,1,11.95,11/03/19 00:07,"413 North St, New York City, NY 10001" +298009,27in FHD Monitor,1,149.99,11/15/19 14:36,"807 Forest St, Los Angeles, CA 90001" +298010,Apple Airpods Headphones,1,150,11/10/19 08:23,"671 Lake St, Los Angeles, CA 90001" +298011,Apple Airpods Headphones,1,150,11/06/19 10:52,"371 Dogwood St, San Francisco, CA 94016" +298012,USB-C Charging Cable,2,11.95,11/10/19 05:39,"792 5th St, Dallas, TX 75001" +298013,Vareebadd Phone,1,400,11/18/19 23:15,"556 8th St, Seattle, WA 98101" +298013,Wired Headphones,1,11.99,11/18/19 23:15,"556 8th St, Seattle, WA 98101" +298014,USB-C Charging Cable,2,11.95,11/28/19 12:10,"163 7th St, San Francisco, CA 94016" +298015,USB-C Charging Cable,1,11.95,11/15/19 18:09,"375 Chestnut St, Seattle, WA 98101" +298015,AA Batteries (4-pack),2,3.84,11/15/19 18:09,"375 Chestnut St, Seattle, WA 98101" +298016,Wired Headphones,1,11.99,11/13/19 17:25,"865 13th St, Seattle, WA 98101" +298017,Lightning Charging Cable,1,14.95,11/29/19 22:05,"969 Highland St, San Francisco, CA 94016" +298017,iPhone,1,700,11/29/19 22:05,"969 Highland St, San Francisco, CA 94016" +298018,27in FHD Monitor,1,149.99,11/14/19 22:54,"564 8th St, San Francisco, CA 94016" +298019,Apple Airpods Headphones,1,150,11/01/19 22:41,"736 1st St, Boston, MA 02215" +298020,Apple Airpods Headphones,1,150,11/12/19 18:08,"101 Main St, Boston, MA 02215" +298021,Wired Headphones,1,11.99,11/17/19 07:55,"642 Main St, San Francisco, CA 94016" +298022,iPhone,1,700,11/30/19 10:11,"877 Adams St, San Francisco, CA 94016" +298023,AAA Batteries (4-pack),1,2.99,11/09/19 22:24,"609 Forest St, Boston, MA 02215" +298024,USB-C Charging Cable,1,11.95,11/15/19 04:09,"590 Jackson St, Austin, TX 73301" +298025,Apple Airpods Headphones,1,150,11/17/19 20:26,"986 Spruce St, Los Angeles, CA 90001" +298026,AA Batteries (4-pack),1,3.84,11/05/19 22:04,"898 7th St, Seattle, WA 98101" +298027,34in Ultrawide Monitor,1,379.99,11/04/19 06:54,"639 Lake St, Seattle, WA 98101" +298028,USB-C Charging Cable,1,11.95,11/21/19 12:46,"213 South St, New York City, NY 10001" +298029,Macbook Pro Laptop,1,1700,11/30/19 18:17,"503 6th St, New York City, NY 10001" +298030,27in FHD Monitor,1,149.99,11/29/19 18:48,"422 Lincoln St, Atlanta, GA 30301" +298030,AAA Batteries (4-pack),1,2.99,11/29/19 18:48,"422 Lincoln St, Atlanta, GA 30301" +298031,AAA Batteries (4-pack),1,2.99,11/18/19 21:23,"774 10th St, San Francisco, CA 94016" +298032,AA Batteries (4-pack),1,3.84,11/03/19 18:46,"763 Elm St, Los Angeles, CA 90001" +298032,Apple Airpods Headphones,1,150,11/03/19 18:46,"763 Elm St, Los Angeles, CA 90001" +298033,Lightning Charging Cable,1,14.95,11/09/19 10:05,"237 10th St, Portland, OR 97035" +298034,Bose SoundSport Headphones,1,99.99,11/29/19 21:29,"821 Hickory St, New York City, NY 10001" +298035,27in FHD Monitor,1,149.99,11/13/19 17:35,"466 Willow St, San Francisco, CA 94016" +298036,Wired Headphones,1,11.99,11/16/19 12:25,"610 Hickory St, San Francisco, CA 94016" +298037,34in Ultrawide Monitor,1,379.99,11/27/19 21:07,"862 11th St, San Francisco, CA 94016" +298038,34in Ultrawide Monitor,1,379.99,11/29/19 17:48,"515 Meadow St, New York City, NY 10001" +298039,AA Batteries (4-pack),1,3.84,11/01/19 11:49,"605 West St, San Francisco, CA 94016" +298040,20in Monitor,1,109.99,11/26/19 22:40,"236 River St, New York City, NY 10001" +298041,Lightning Charging Cable,1,14.95,11/25/19 18:36,"7 Hickory St, New York City, NY 10001" +298042,USB-C Charging Cable,1,11.95,11/23/19 19:17,"454 Forest St, Seattle, WA 98101" +298043,Lightning Charging Cable,2,14.95,11/02/19 03:24,"209 14th St, Los Angeles, CA 90001" +298044,USB-C Charging Cable,1,11.95,11/05/19 18:24,"418 North St, Boston, MA 02215" +298045,iPhone,1,700,11/21/19 10:48,"236 Pine St, New York City, NY 10001" +298046,Apple Airpods Headphones,1,150,11/14/19 00:00,"303 South St, Austin, TX 73301" +298047,27in FHD Monitor,1,149.99,11/22/19 23:16,"553 River St, Los Angeles, CA 90001" +298048,Wired Headphones,1,11.99,11/11/19 10:48,"262 South St, Los Angeles, CA 90001" +298049,Wired Headphones,1,11.99,11/05/19 07:51,"164 Hill St, New York City, NY 10001" +298050,Lightning Charging Cable,1,14.95,11/25/19 12:05,"468 Jefferson St, Los Angeles, CA 90001" +298051,Lightning Charging Cable,2,14.95,11/14/19 20:25,"569 10th St, New York City, NY 10001" +298052,Apple Airpods Headphones,1,150,11/21/19 11:43,"80 Willow St, New York City, NY 10001" +298053,ThinkPad Laptop,1,999.99,11/25/19 17:55,"60 Lakeview St, Dallas, TX 75001" +298054,Google Phone,1,600,11/06/19 21:00,"285 1st St, Dallas, TX 75001" +298054,USB-C Charging Cable,1,11.95,11/06/19 21:00,"285 1st St, Dallas, TX 75001" +298055,27in 4K Gaming Monitor,1,389.99,11/28/19 19:08,"352 Cedar St, Dallas, TX 75001" +298056,Bose SoundSport Headphones,1,99.99,11/23/19 23:48,"273 Sunset St, Atlanta, GA 30301" +298057,AA Batteries (4-pack),1,3.84,11/25/19 01:53,"218 Forest St, Dallas, TX 75001" +298058,Apple Airpods Headphones,1,150,11/18/19 11:57,"439 Willow St, Boston, MA 02215" +298059,USB-C Charging Cable,1,11.95,11/29/19 15:21,"303 Main St, New York City, NY 10001" +298060,Wired Headphones,1,11.99,11/23/19 19:17,"682 Hill St, San Francisco, CA 94016" +298061,USB-C Charging Cable,1,11.95,11/28/19 16:21,"70 Walnut St, San Francisco, CA 94016" +298062,34in Ultrawide Monitor,1,379.99,11/12/19 17:18,"253 11th St, San Francisco, CA 94016" +298063,AA Batteries (4-pack),2,3.84,11/19/19 01:53,"728 Walnut St, Seattle, WA 98101" +298064,Apple Airpods Headphones,1,150,11/05/19 06:24,"467 Forest St, Los Angeles, CA 90001" +298065,Lightning Charging Cable,1,14.95,11/09/19 05:32,"395 1st St, San Francisco, CA 94016" +298066,AA Batteries (4-pack),1,3.84,11/03/19 17:57,"644 Lincoln St, San Francisco, CA 94016" +298067,AAA Batteries (4-pack),1,2.99,11/09/19 21:06,"80 12th St, Boston, MA 02215" +298068,USB-C Charging Cable,1,11.95,11/30/19 20:29,"558 Johnson St, Los Angeles, CA 90001" +298069,iPhone,1,700,11/04/19 21:20,"464 South St, Dallas, TX 75001" +298070,Flatscreen TV,1,300,11/07/19 01:36,"419 Hill St, Austin, TX 73301" +298071,27in FHD Monitor,1,149.99,11/26/19 18:58,"805 Forest St, Los Angeles, CA 90001" +298072,Flatscreen TV,1,300,11/15/19 20:37,"542 Washington St, San Francisco, CA 94016" +298073,27in FHD Monitor,1,149.99,11/24/19 20:01,"771 Highland St, Seattle, WA 98101" +298074,AAA Batteries (4-pack),1,2.99,11/15/19 09:23,"249 Adams St, Los Angeles, CA 90001" +298075,AAA Batteries (4-pack),1,2.99,11/04/19 16:32,"198 Jackson St, Boston, MA 02215" +298076,Lightning Charging Cable,1,14.95,11/29/19 11:23,"830 Willow St, Los Angeles, CA 90001" +298077,Lightning Charging Cable,3,14.95,11/15/19 12:49,"638 Walnut St, Atlanta, GA 30301" +298078,AA Batteries (4-pack),1,3.84,11/18/19 10:16,"540 9th St, Seattle, WA 98101" +298079,iPhone,1,700,11/11/19 18:19,"395 7th St, Boston, MA 02215" +298080,Lightning Charging Cable,1,14.95,11/01/19 21:08,"156 6th St, San Francisco, CA 94016" +298081,Lightning Charging Cable,1,14.95,11/14/19 20:30,"80 10th St, San Francisco, CA 94016" +298082,Wired Headphones,1,11.99,11/08/19 18:44,"591 Hill St, Portland, OR 97035" +298083,AA Batteries (4-pack),2,3.84,11/08/19 21:08,"725 Lake St, New York City, NY 10001" +298084,Google Phone,1,600,11/07/19 18:19,"542 West St, Portland, ME 04101" +298085,USB-C Charging Cable,1,11.95,11/30/19 20:32,"975 Forest St, Portland, OR 97035" +298086,Wired Headphones,1,11.99,11/22/19 12:45,"682 Walnut St, San Francisco, CA 94016" +298087,27in 4K Gaming Monitor,1,389.99,11/01/19 15:55,"246 12th St, San Francisco, CA 94016" +298088,AA Batteries (4-pack),1,3.84,11/16/19 07:11,"804 South St, Austin, TX 73301" +298089,Bose SoundSport Headphones,1,99.99,11/13/19 10:08,"299 Madison St, San Francisco, CA 94016" +298090,Lightning Charging Cable,1,14.95,11/18/19 10:43,"969 Pine St, Dallas, TX 75001" +298091,Google Phone,1,600,11/02/19 10:36,"416 River St, New York City, NY 10001" +298092,Apple Airpods Headphones,1,150,11/25/19 14:06,"581 Cherry St, San Francisco, CA 94016" +298093,Bose SoundSport Headphones,1,99.99,11/22/19 13:03,"114 13th St, Los Angeles, CA 90001" +298094,Bose SoundSport Headphones,1,99.99,11/06/19 15:04,"282 West St, Seattle, WA 98101" +298095,iPhone,1,700,11/24/19 14:57,"124 10th St, Los Angeles, CA 90001" +298095,Wired Headphones,1,11.99,11/24/19 14:57,"124 10th St, Los Angeles, CA 90001" +298096,AAA Batteries (4-pack),1,2.99,11/20/19 12:15,"229 6th St, San Francisco, CA 94016" +298097,AAA Batteries (4-pack),3,2.99,11/30/19 17:40,"827 Madison St, San Francisco, CA 94016" +298098,AAA Batteries (4-pack),2,2.99,11/10/19 17:39,"849 Dogwood St, Atlanta, GA 30301" +298099,AA Batteries (4-pack),2,3.84,11/24/19 12:56,"855 Spruce St, Los Angeles, CA 90001" +298100,AA Batteries (4-pack),1,3.84,11/25/19 14:41,"514 Dogwood St, Los Angeles, CA 90001" +298101,Wired Headphones,2,11.99,11/25/19 09:41,"827 Walnut St, San Francisco, CA 94016" +298102,Apple Airpods Headphones,1,150,11/15/19 18:07,"465 Chestnut St, Los Angeles, CA 90001" +298103,Lightning Charging Cable,1,14.95,11/17/19 09:27,"202 Hickory St, Los Angeles, CA 90001" +298104,34in Ultrawide Monitor,1,379.99,12/01/19 00:03,"633 Pine St, Seattle, WA 98101" +298105,34in Ultrawide Monitor,1,379.99,11/18/19 12:48,"676 Walnut St, Atlanta, GA 30301" +298106,USB-C Charging Cable,2,11.95,11/19/19 00:37,"252 11th St, San Francisco, CA 94016" +298107,iPhone,1,700,11/04/19 17:54,"6 8th St, New York City, NY 10001" +298107,Lightning Charging Cable,1,14.95,11/04/19 17:54,"6 8th St, New York City, NY 10001" +298108,27in 4K Gaming Monitor,1,389.99,11/08/19 08:46,"933 Forest St, Boston, MA 02215" +298109,Google Phone,1,600,11/01/19 08:57,"155 Main St, San Francisco, CA 94016" +298110,USB-C Charging Cable,1,11.95,11/08/19 12:55,"728 Meadow St, Boston, MA 02215" +298111,USB-C Charging Cable,1,11.95,11/01/19 20:49,"594 Madison St, Los Angeles, CA 90001" +298112,Apple Airpods Headphones,1,150,11/14/19 11:41,"100 13th St, New York City, NY 10001" +298113,AA Batteries (4-pack),2,3.84,11/16/19 19:31,"861 Chestnut St, Seattle, WA 98101" +298114,USB-C Charging Cable,1,11.95,11/09/19 20:32,"836 13th St, San Francisco, CA 94016" +298115,Wired Headphones,2,11.99,11/12/19 18:20,"382 6th St, Seattle, WA 98101" +298116,Lightning Charging Cable,1,14.95,11/09/19 10:00,"597 Forest St, Portland, OR 97035" +298117,34in Ultrawide Monitor,1,379.99,11/02/19 16:06,"222 Church St, Los Angeles, CA 90001" +298118,Wired Headphones,1,11.99,11/11/19 11:54,"560 Madison St, Boston, MA 02215" +298119,AAA Batteries (4-pack),1,2.99,11/19/19 12:51,"862 13th St, San Francisco, CA 94016" +298120,ThinkPad Laptop,1,999.99,11/29/19 12:09,"314 Lake St, Dallas, TX 75001" +298121,AA Batteries (4-pack),1,3.84,11/11/19 20:03,"787 Johnson St, Portland, OR 97035" +298122,AA Batteries (4-pack),1,3.84,11/26/19 00:37,"833 4th St, Atlanta, GA 30301" +298123,USB-C Charging Cable,1,11.95,11/29/19 22:30,"499 6th St, New York City, NY 10001" +298124,USB-C Charging Cable,1,11.95,11/12/19 15:11,"660 13th St, Dallas, TX 75001" +298125,USB-C Charging Cable,1,11.95,11/08/19 13:41,"209 South St, San Francisco, CA 94016" +298126,Bose SoundSport Headphones,1,99.99,11/09/19 22:50,"728 Adams St, Atlanta, GA 30301" +298127,27in FHD Monitor,1,149.99,11/07/19 09:57,"859 5th St, Los Angeles, CA 90001" +298128,20in Monitor,1,109.99,11/20/19 20:58,"683 Elm St, Los Angeles, CA 90001" +298129,27in FHD Monitor,1,149.99,11/21/19 20:51,"771 Highland St, Portland, OR 97035" +298130,AAA Batteries (4-pack),1,2.99,11/25/19 18:33,"764 1st St, New York City, NY 10001" +298131,Lightning Charging Cable,1,14.95,11/14/19 01:14,"183 7th St, Los Angeles, CA 90001" +298132,Vareebadd Phone,1,400,11/30/19 14:26,"323 South St, Atlanta, GA 30301" +298133,AAA Batteries (4-pack),2,2.99,11/04/19 19:24,"664 Wilson St, Boston, MA 02215" +298134,AAA Batteries (4-pack),1,2.99,11/09/19 16:31,"234 Church St, Seattle, WA 98101" +298135,ThinkPad Laptop,1,999.99,11/16/19 13:58,"971 Dogwood St, Atlanta, GA 30301" +298136,Google Phone,1,600,11/23/19 19:19,"974 Johnson St, Atlanta, GA 30301" +298137,AA Batteries (4-pack),1,3.84,11/17/19 20:39,"949 Main St, Los Angeles, CA 90001" +298138,Vareebadd Phone,1,400,11/13/19 20:08,"526 Meadow St, Boston, MA 02215" +298138,USB-C Charging Cable,1,11.95,11/13/19 20:08,"526 Meadow St, Boston, MA 02215" +298139,Lightning Charging Cable,1,14.95,11/25/19 15:12,"973 8th St, Atlanta, GA 30301" +298140,Flatscreen TV,1,300,11/27/19 16:22,"374 9th St, Portland, OR 97035" +298141,AA Batteries (4-pack),1,3.84,11/25/19 16:54,"575 Johnson St, Austin, TX 73301" +298142,AA Batteries (4-pack),1,3.84,11/10/19 04:52,"1 Jackson St, San Francisco, CA 94016" +298143,34in Ultrawide Monitor,1,379.99,11/04/19 13:27,"447 Wilson St, San Francisco, CA 94016" +298144,27in FHD Monitor,1,149.99,11/14/19 22:14,"209 Maple St, Dallas, TX 75001" +298145,iPhone,1,700,11/14/19 22:21,"615 Cedar St, Boston, MA 02215" +298146,Bose SoundSport Headphones,1,99.99,11/19/19 12:41,"805 Meadow St, San Francisco, CA 94016" +298147,27in FHD Monitor,1,149.99,11/29/19 13:43,"422 8th St, Austin, TX 73301" +298148,Lightning Charging Cable,1,14.95,11/24/19 16:38,"236 Meadow St, San Francisco, CA 94016" +298149,Lightning Charging Cable,1,14.95,11/18/19 21:47,"223 Chestnut St, Dallas, TX 75001" +298150,Wired Headphones,1,11.99,11/09/19 20:18,"930 Center St, Atlanta, GA 30301" +298151,AAA Batteries (4-pack),1,2.99,11/01/19 16:29,"455 Johnson St, Los Angeles, CA 90001" +298152,AA Batteries (4-pack),1,3.84,11/01/19 11:22,"881 11th St, Dallas, TX 75001" +298153,Wired Headphones,1,11.99,11/09/19 11:41,"490 Hickory St, Boston, MA 02215" +298154,Bose SoundSport Headphones,1,99.99,11/27/19 14:56,"997 Spruce St, San Francisco, CA 94016" +298155,34in Ultrawide Monitor,1,379.99,11/19/19 14:13,"266 4th St, Atlanta, GA 30301" +298156,34in Ultrawide Monitor,1,379.99,11/22/19 12:41,"842 4th St, Atlanta, GA 30301" +298157,Wired Headphones,1,11.99,11/13/19 10:39,"470 Maple St, San Francisco, CA 94016" +298158,ThinkPad Laptop,1,999.99,11/07/19 15:10,"600 Park St, New York City, NY 10001" +298159,Lightning Charging Cable,1,14.95,11/14/19 21:34,"501 Madison St, Dallas, TX 75001" +298160,AAA Batteries (4-pack),1,2.99,11/27/19 20:59,"332 Park St, Portland, OR 97035" +298161,27in FHD Monitor,1,149.99,11/27/19 12:23,"295 1st St, Boston, MA 02215" +298162,AA Batteries (4-pack),1,3.84,11/01/19 16:36,"998 Lake St, San Francisco, CA 94016" +298163,AA Batteries (4-pack),1,3.84,11/27/19 09:32,"301 Cherry St, New York City, NY 10001" +298164,27in FHD Monitor,1,149.99,11/09/19 17:45,"84 Center St, San Francisco, CA 94016" +298165,LG Washing Machine,1,600.0,11/06/19 17:52,"671 Main St, New York City, NY 10001" +298166,AA Batteries (4-pack),1,3.84,11/09/19 10:37,"161 Elm St, Los Angeles, CA 90001" +298167,Lightning Charging Cable,1,14.95,11/08/19 11:02,"781 Lincoln St, San Francisco, CA 94016" +298168,Wired Headphones,1,11.99,11/14/19 14:52,"692 1st St, Los Angeles, CA 90001" +298169,USB-C Charging Cable,1,11.95,11/24/19 12:08,"292 9th St, Los Angeles, CA 90001" +298170,AA Batteries (4-pack),1,3.84,11/28/19 17:13,"669 Sunset St, Boston, MA 02215" +298171,Wired Headphones,1,11.99,11/11/19 18:16,"812 Madison St, San Francisco, CA 94016" +298172,AAA Batteries (4-pack),1,2.99,11/27/19 00:48,"196 Main St, Los Angeles, CA 90001" +298173,AAA Batteries (4-pack),1,2.99,11/21/19 10:35,"810 Lake St, San Francisco, CA 94016" +298174,34in Ultrawide Monitor,1,379.99,11/20/19 12:22,"663 Main St, New York City, NY 10001" +298175,Wired Headphones,1,11.99,11/01/19 13:54,"953 Elm St, Atlanta, GA 30301" +298176,AAA Batteries (4-pack),1,2.99,11/30/19 23:38,"627 River St, Seattle, WA 98101" +298177,34in Ultrawide Monitor,1,379.99,11/08/19 18:01,"975 Elm St, Los Angeles, CA 90001" +298178,USB-C Charging Cable,1,11.95,11/19/19 18:39,"30 4th St, New York City, NY 10001" +298179,34in Ultrawide Monitor,1,379.99,11/06/19 14:20,"292 Washington St, Seattle, WA 98101" +298180,AAA Batteries (4-pack),3,2.99,11/03/19 00:27,"244 Wilson St, San Francisco, CA 94016" +298181,AAA Batteries (4-pack),2,2.99,11/05/19 23:33,"924 Dogwood St, Atlanta, GA 30301" +298182,Bose SoundSport Headphones,1,99.99,11/01/19 08:52,"602 7th St, San Francisco, CA 94016" +298183,Lightning Charging Cable,1,14.95,11/17/19 12:19,"465 Spruce St, Seattle, WA 98101" +298184,iPhone,1,700,11/05/19 11:29,"299 Jackson St, Portland, OR 97035" +298185,Lightning Charging Cable,1,14.95,11/21/19 11:51,"109 Washington St, Boston, MA 02215" +298186,Flatscreen TV,1,300,11/03/19 11:39,"576 Lakeview St, Los Angeles, CA 90001" +298187,27in FHD Monitor,1,149.99,11/23/19 13:15,"521 Madison St, Seattle, WA 98101" +298188,Wired Headphones,2,11.99,11/13/19 07:55,"341 11th St, Austin, TX 73301" +298189,AAA Batteries (4-pack),2,2.99,11/26/19 16:34,"71 South St, Los Angeles, CA 90001" +298190,Google Phone,1,600,11/11/19 14:59,"133 Lakeview St, Atlanta, GA 30301" +298191,AA Batteries (4-pack),4,3.84,11/20/19 21:06,"617 4th St, Seattle, WA 98101" +298192,Bose SoundSport Headphones,1,99.99,11/19/19 23:22,"985 Center St, Portland, OR 97035" +298193,USB-C Charging Cable,1,11.95,11/23/19 23:09,"406 9th St, Seattle, WA 98101" +298194,USB-C Charging Cable,1,11.95,11/01/19 22:47,"600 Park St, San Francisco, CA 94016" +298195,AAA Batteries (4-pack),1,2.99,11/22/19 16:42,"935 North St, San Francisco, CA 94016" +298196,USB-C Charging Cable,1,11.95,11/18/19 13:59,"40 8th St, San Francisco, CA 94016" +298197,AAA Batteries (4-pack),1,2.99,11/11/19 11:15,"941 Forest St, Atlanta, GA 30301" +298198,Flatscreen TV,1,300,11/28/19 20:12,"927 Highland St, Dallas, TX 75001" +298199,Wired Headphones,1,11.99,11/12/19 19:11,"690 Forest St, New York City, NY 10001" +298200,Google Phone,1,600,11/13/19 13:11,"10 Lincoln St, Atlanta, GA 30301" +298201,Apple Airpods Headphones,1,150,11/30/19 10:12,"601 Spruce St, Los Angeles, CA 90001" +298202,Lightning Charging Cable,1,14.95,11/10/19 15:05,"756 Madison St, San Francisco, CA 94016" +298203,Lightning Charging Cable,1,14.95,11/10/19 14:28,"587 Highland St, Los Angeles, CA 90001" +298204,USB-C Charging Cable,1,11.95,11/07/19 13:02,"497 South St, San Francisco, CA 94016" +298205,Wired Headphones,1,11.99,11/27/19 18:39,"648 Meadow St, San Francisco, CA 94016" +298206,Apple Airpods Headphones,1,150,11/12/19 19:15,"660 Main St, Seattle, WA 98101" +298207,34in Ultrawide Monitor,1,379.99,11/10/19 08:57,"938 Walnut St, San Francisco, CA 94016" +298208,Apple Airpods Headphones,1,150,11/05/19 20:02,"330 Sunset St, Austin, TX 73301" +298209,Wired Headphones,1,11.99,11/15/19 13:57,"797 Sunset St, Dallas, TX 75001" +298210,USB-C Charging Cable,1,11.95,11/20/19 09:06,"148 Wilson St, Los Angeles, CA 90001" +298211,Apple Airpods Headphones,1,150,11/06/19 14:23,"493 7th St, Los Angeles, CA 90001" +298212,Google Phone,1,600,11/12/19 22:33,"186 Sunset St, New York City, NY 10001" +298213,Macbook Pro Laptop,1,1700,11/29/19 19:53,"273 Lakeview St, Los Angeles, CA 90001" +298214,AA Batteries (4-pack),2,3.84,11/22/19 16:30,"689 Walnut St, New York City, NY 10001" +298215,Apple Airpods Headphones,1,150,11/29/19 09:59,"920 Walnut St, Los Angeles, CA 90001" +298216,ThinkPad Laptop,1,999.99,11/24/19 12:43,"487 13th St, Atlanta, GA 30301" +298217,Wired Headphones,1,11.99,11/27/19 17:17,"388 West St, Portland, OR 97035" +298218,27in FHD Monitor,1,149.99,11/05/19 10:38,"264 Jefferson St, San Francisco, CA 94016" +298219,AA Batteries (4-pack),1,3.84,11/08/19 21:02,"678 Park St, Atlanta, GA 30301" +298220,Bose SoundSport Headphones,1,99.99,11/18/19 17:54,"977 9th St, Los Angeles, CA 90001" +298221,Lightning Charging Cable,1,14.95,11/26/19 08:01,"447 Washington St, Austin, TX 73301" +298222,USB-C Charging Cable,1,11.95,11/04/19 15:12,"622 Lake St, Portland, OR 97035" +298223,USB-C Charging Cable,1,11.95,11/04/19 18:24,"613 Spruce St, Los Angeles, CA 90001" +298224,USB-C Charging Cable,1,11.95,11/14/19 09:42,"869 Willow St, San Francisco, CA 94016" +298225,AA Batteries (4-pack),1,3.84,11/14/19 09:03,"483 8th St, Boston, MA 02215" +298226,20in Monitor,1,109.99,11/26/19 17:40,"177 6th St, San Francisco, CA 94016" +298227,Vareebadd Phone,1,400,11/08/19 19:47,"710 West St, Portland, OR 97035" +298228,Bose SoundSport Headphones,1,99.99,11/16/19 18:07,"295 8th St, New York City, NY 10001" +298229,AAA Batteries (4-pack),2,2.99,11/27/19 22:07,"667 Lincoln St, San Francisco, CA 94016" +298230,Apple Airpods Headphones,1,150,11/04/19 00:38,"480 North St, Atlanta, GA 30301" +298231,Wired Headphones,1,11.99,11/28/19 18:59,"617 Main St, Los Angeles, CA 90001" +298232,Apple Airpods Headphones,1,150,11/16/19 08:08,"544 Meadow St, Austin, TX 73301" +298233,34in Ultrawide Monitor,1,379.99,11/23/19 11:01,"378 Elm St, San Francisco, CA 94016" +298234,Lightning Charging Cable,1,14.95,11/11/19 17:21,"903 West St, San Francisco, CA 94016" +298235,AA Batteries (4-pack),2,3.84,11/12/19 21:10,"681 North St, Dallas, TX 75001" +298236,Flatscreen TV,1,300,11/27/19 19:07,"112 Cherry St, Los Angeles, CA 90001" +298237,Bose SoundSport Headphones,1,99.99,11/27/19 14:11,"254 Pine St, Los Angeles, CA 90001" +298238,Wired Headphones,1,11.99,11/24/19 11:13,"89 Dogwood St, San Francisco, CA 94016" +298239,Lightning Charging Cable,1,14.95,11/03/19 08:03,"994 Park St, New York City, NY 10001" +298240,Apple Airpods Headphones,1,150,11/12/19 18:04,"159 Park St, San Francisco, CA 94016" +298241,iPhone,1,700,11/14/19 15:23,"321 Washington St, Austin, TX 73301" +298242,USB-C Charging Cable,1,11.95,11/21/19 08:47,"323 6th St, Atlanta, GA 30301" +298243,Flatscreen TV,1,300,11/15/19 10:22,"64 2nd St, Seattle, WA 98101" +298244,AAA Batteries (4-pack),1,2.99,11/25/19 20:23,"262 Wilson St, Los Angeles, CA 90001" +298245,AA Batteries (4-pack),1,3.84,11/08/19 19:36,"710 Pine St, New York City, NY 10001" +298246,Google Phone,1,600,11/21/19 10:57,"316 West St, San Francisco, CA 94016" +298246,Wired Headphones,1,11.99,11/21/19 10:57,"316 West St, San Francisco, CA 94016" +298247,USB-C Charging Cable,1,11.95,11/24/19 22:34,"675 Cherry St, San Francisco, CA 94016" +298248,Wired Headphones,1,11.99,11/16/19 15:39,"833 Adams St, Austin, TX 73301" +298249,27in 4K Gaming Monitor,1,389.99,11/17/19 13:36,"659 Washington St, Boston, MA 02215" +298250,Apple Airpods Headphones,1,150,11/13/19 08:57,"394 6th St, Portland, OR 97035" +298251,Wired Headphones,1,11.99,11/24/19 10:10,"934 Johnson St, New York City, NY 10001" +298252,Apple Airpods Headphones,1,150,11/24/19 22:36,"96 Main St, Boston, MA 02215" +298253,AAA Batteries (4-pack),3,2.99,11/12/19 09:02,"849 Lincoln St, San Francisco, CA 94016" +298254,AAA Batteries (4-pack),4,2.99,11/01/19 11:02,"676 8th St, Dallas, TX 75001" +298255,Apple Airpods Headphones,1,150,11/12/19 17:54,"351 Lincoln St, Dallas, TX 75001" +298256,Wired Headphones,1,11.99,11/24/19 19:02,"502 Lincoln St, Los Angeles, CA 90001" +298257,Bose SoundSport Headphones,1,99.99,11/22/19 16:21,"691 Lakeview St, New York City, NY 10001" +298258,AA Batteries (4-pack),2,3.84,11/23/19 13:13,"886 Lakeview St, Los Angeles, CA 90001" +298259,27in FHD Monitor,1,149.99,11/05/19 23:14,"377 Center St, New York City, NY 10001" +298260,Lightning Charging Cable,1,14.95,11/28/19 21:20,"371 Pine St, Los Angeles, CA 90001" +298261,Wired Headphones,1,11.99,11/22/19 16:58,"388 Main St, Atlanta, GA 30301" +298262,Bose SoundSport Headphones,1,99.99,11/08/19 20:20,"535 10th St, San Francisco, CA 94016" +298263,Lightning Charging Cable,1,14.95,11/16/19 19:25,"501 Wilson St, Seattle, WA 98101" +298264,USB-C Charging Cable,1,11.95,11/23/19 12:50,"507 14th St, Atlanta, GA 30301" +298265,USB-C Charging Cable,1,11.95,11/08/19 12:24,"707 Forest St, Dallas, TX 75001" +298266,AA Batteries (4-pack),1,3.84,11/07/19 19:49,"712 Cherry St, San Francisco, CA 94016" +298267,AAA Batteries (4-pack),1,2.99,11/28/19 19:52,"307 Hill St, Dallas, TX 75001" +298268,27in 4K Gaming Monitor,1,389.99,11/07/19 10:26,"128 Willow St, San Francisco, CA 94016" +298269,Flatscreen TV,1,300,11/29/19 00:01,"973 South St, Austin, TX 73301" +298270,Lightning Charging Cable,1,14.95,11/03/19 16:22,"258 Cedar St, Dallas, TX 75001" +298271,Wired Headphones,1,11.99,11/20/19 17:42,"467 Chestnut St, Los Angeles, CA 90001" +298272,Bose SoundSport Headphones,1,99.99,11/28/19 16:11,"749 Cedar St, San Francisco, CA 94016" +298273,AAA Batteries (4-pack),2,2.99,11/08/19 16:47,"219 Ridge St, Dallas, TX 75001" +298274,Bose SoundSport Headphones,1,99.99,11/25/19 13:35,"542 Lake St, Los Angeles, CA 90001" +298275,Lightning Charging Cable,1,14.95,11/21/19 18:48,"965 Elm St, Atlanta, GA 30301" +298276,20in Monitor,1,109.99,11/14/19 11:47,"860 Willow St, Austin, TX 73301" +298277,Apple Airpods Headphones,1,150,11/10/19 14:16,"88 Maple St, New York City, NY 10001" +298278,Lightning Charging Cable,1,14.95,11/16/19 11:48,"346 Washington St, Atlanta, GA 30301" +298279,Apple Airpods Headphones,2,150,11/16/19 20:44,"378 10th St, New York City, NY 10001" +298280,Bose SoundSport Headphones,1,99.99,11/12/19 15:10,"254 4th St, San Francisco, CA 94016" +298281,AAA Batteries (4-pack),2,2.99,11/25/19 17:44,"693 12th St, Boston, MA 02215" +298282,Bose SoundSport Headphones,1,99.99,11/12/19 15:28,"512 12th St, San Francisco, CA 94016" +298283,iPhone,1,700,11/06/19 11:59,"144 Willow St, Dallas, TX 75001" +298284,34in Ultrawide Monitor,1,379.99,11/19/19 16:47,"712 Lincoln St, Boston, MA 02215" +298285,AA Batteries (4-pack),3,3.84,11/04/19 12:49,"843 West St, New York City, NY 10001" +298286,AAA Batteries (4-pack),1,2.99,11/05/19 10:37,"480 Maple St, Los Angeles, CA 90001" +298287,Wired Headphones,2,11.99,11/02/19 22:20,"467 Chestnut St, Austin, TX 73301" +298288,AAA Batteries (4-pack),1,2.99,11/06/19 11:04,"862 Center St, Dallas, TX 75001" +298289,27in FHD Monitor,1,149.99,11/05/19 20:14,"623 Adams St, Boston, MA 02215" +298290,Apple Airpods Headphones,1,150,11/11/19 17:23,"815 Dogwood St, Portland, OR 97035" +298291,Apple Airpods Headphones,1,150,11/04/19 12:00,"882 South St, San Francisco, CA 94016" +298292,34in Ultrawide Monitor,1,379.99,11/23/19 13:08,"501 14th St, San Francisco, CA 94016" +298293,AAA Batteries (4-pack),1,2.99,11/09/19 08:31,"954 Walnut St, Los Angeles, CA 90001" +298294,34in Ultrawide Monitor,1,379.99,11/20/19 12:13,"540 Willow St, Dallas, TX 75001" +298295,AA Batteries (4-pack),1,3.84,11/12/19 14:26,"444 Hill St, Los Angeles, CA 90001" +298296,AA Batteries (4-pack),1,3.84,11/09/19 05:56,"427 Forest St, San Francisco, CA 94016" +298297,Bose SoundSport Headphones,1,99.99,11/24/19 22:55,"152 Willow St, New York City, NY 10001" +298298,AAA Batteries (4-pack),3,2.99,11/17/19 15:16,"836 7th St, San Francisco, CA 94016" +298299,Wired Headphones,1,11.99,11/07/19 10:56,"716 Spruce St, Portland, OR 97035" +298300,34in Ultrawide Monitor,1,379.99,11/28/19 14:08,"446 13th St, Dallas, TX 75001" +298300,AAA Batteries (4-pack),2,2.99,11/28/19 14:08,"446 13th St, Dallas, TX 75001" +298301,Lightning Charging Cable,1,14.95,11/04/19 19:07,"116 Lakeview St, Dallas, TX 75001" +298302,USB-C Charging Cable,1,11.95,11/21/19 20:29,"647 Chestnut St, San Francisco, CA 94016" +298303,USB-C Charging Cable,1,11.95,11/23/19 14:46,"394 Forest St, Portland, OR 97035" +298304,Google Phone,1,600,11/17/19 12:59,"114 River St, Portland, OR 97035" +298305,Lightning Charging Cable,1,14.95,11/15/19 19:50,"740 Washington St, Boston, MA 02215" +298306,Bose SoundSport Headphones,1,99.99,11/01/19 12:12,"564 7th St, Los Angeles, CA 90001" +298307,Lightning Charging Cable,1,14.95,11/25/19 15:57,"797 6th St, New York City, NY 10001" +298308,USB-C Charging Cable,1,11.95,11/11/19 14:42,"124 Johnson St, Austin, TX 73301" +298309,Vareebadd Phone,1,400,11/02/19 18:12,"91 Maple St, Portland, ME 04101" +298310,USB-C Charging Cable,1,11.95,11/05/19 13:52,"840 Spruce St, Boston, MA 02215" +298311,AAA Batteries (4-pack),1,2.99,11/09/19 14:40,"300 1st St, Boston, MA 02215" +298312,Wired Headphones,1,11.99,11/29/19 17:01,"17 West St, Boston, MA 02215" +298313,AAA Batteries (4-pack),2,2.99,11/23/19 23:47,"419 Lincoln St, Los Angeles, CA 90001" +298314,AA Batteries (4-pack),2,3.84,11/15/19 23:03,"922 Forest St, San Francisco, CA 94016" +298315,USB-C Charging Cable,1,11.95,11/20/19 10:59,"919 Lake St, Los Angeles, CA 90001" +298316,27in FHD Monitor,1,149.99,11/24/19 09:43,"179 13th St, Los Angeles, CA 90001" +298317,Wired Headphones,1,11.99,11/30/19 11:10,"535 Highland St, Los Angeles, CA 90001" +298318,20in Monitor,1,109.99,11/26/19 15:35,"703 Lake St, Austin, TX 73301" +298319,Google Phone,1,600,11/03/19 16:23,"426 Meadow St, San Francisco, CA 94016" +298320,Flatscreen TV,1,300,11/12/19 21:00,"914 Spruce St, San Francisco, CA 94016" +298321,Apple Airpods Headphones,1,150,11/13/19 09:16,"246 1st St, Dallas, TX 75001" +298322,AA Batteries (4-pack),1,3.84,11/28/19 19:33,"58 Johnson St, Seattle, WA 98101" +298323,Lightning Charging Cable,1,14.95,11/14/19 22:01,"1 Washington St, Boston, MA 02215" +298324,Wired Headphones,2,11.99,11/07/19 12:09,"342 Hill St, Seattle, WA 98101" +298325,Apple Airpods Headphones,1,150,11/05/19 13:26,"739 Sunset St, Portland, OR 97035" +298326,AA Batteries (4-pack),1,3.84,11/24/19 12:55,"743 West St, Dallas, TX 75001" +298327,AA Batteries (4-pack),1,3.84,11/08/19 09:00,"961 Main St, San Francisco, CA 94016" +298328,20in Monitor,1,109.99,11/22/19 16:13,"165 Spruce St, Dallas, TX 75001" +298329,Apple Airpods Headphones,1,150,11/24/19 11:24,"62 Center St, Atlanta, GA 30301" +298330,34in Ultrawide Monitor,1,379.99,11/08/19 16:07,"505 Chestnut St, San Francisco, CA 94016" +298331,USB-C Charging Cable,1,11.95,11/30/19 12:49,"550 Adams St, San Francisco, CA 94016" +298332,Lightning Charging Cable,1,14.95,11/20/19 22:17,"472 Hickory St, Atlanta, GA 30301" +298333,USB-C Charging Cable,3,11.95,11/27/19 19:22,"544 Pine St, San Francisco, CA 94016" +298334,AA Batteries (4-pack),1,3.84,11/20/19 20:23,"724 Lincoln St, Los Angeles, CA 90001" +298335,iPhone,1,700,11/20/19 15:40,"253 7th St, Atlanta, GA 30301" +298336,AAA Batteries (4-pack),1,2.99,11/04/19 14:53,"587 9th St, Seattle, WA 98101" +298337,Bose SoundSport Headphones,1,99.99,11/29/19 10:15,"732 4th St, Portland, ME 04101" +298338,AAA Batteries (4-pack),3,2.99,11/09/19 19:42,"165 Sunset St, Los Angeles, CA 90001" +298339,27in FHD Monitor,1,149.99,11/19/19 19:59,"265 14th St, Los Angeles, CA 90001" +298340,34in Ultrawide Monitor,1,379.99,11/14/19 09:55,"719 North St, Austin, TX 73301" +298341,USB-C Charging Cable,1,11.95,11/21/19 11:04,"338 Madison St, Boston, MA 02215" +298342,AAA Batteries (4-pack),1,2.99,11/16/19 20:44,"767 Lincoln St, San Francisco, CA 94016" +298343,USB-C Charging Cable,1,11.95,11/06/19 07:58,"867 11th St, San Francisco, CA 94016" +298344,AA Batteries (4-pack),1,3.84,11/18/19 12:46,"924 Lake St, Austin, TX 73301" +298345,Lightning Charging Cable,1,14.95,11/16/19 08:53,"655 5th St, Boston, MA 02215" +298346,27in FHD Monitor,1,149.99,11/04/19 00:00,"344 6th St, Atlanta, GA 30301" +298347,AA Batteries (4-pack),1,3.84,11/12/19 17:16,"957 Lake St, New York City, NY 10001" +298348,Lightning Charging Cable,1,14.95,11/26/19 19:23,"330 5th St, San Francisco, CA 94016" +298349,Macbook Pro Laptop,1,1700,11/18/19 21:31,"842 Lake St, Dallas, TX 75001" +298350,Lightning Charging Cable,1,14.95,11/25/19 15:37,"409 Church St, New York City, NY 10001" +298351,20in Monitor,1,109.99,11/01/19 15:34,"809 Pine St, New York City, NY 10001" +298352,AA Batteries (4-pack),2,3.84,11/24/19 20:57,"697 2nd St, Dallas, TX 75001" +298353,27in FHD Monitor,1,149.99,11/19/19 11:57,"935 West St, San Francisco, CA 94016" +298354,27in 4K Gaming Monitor,1,389.99,11/16/19 04:35,"319 North St, Los Angeles, CA 90001" +298355,20in Monitor,1,109.99,11/15/19 19:45,"315 13th St, Los Angeles, CA 90001" +298356,Flatscreen TV,1,300,11/18/19 12:08,"807 Center St, Atlanta, GA 30301" +298357,Google Phone,1,600,11/06/19 21:25,"886 10th St, New York City, NY 10001" +298357,USB-C Charging Cable,1,11.95,11/06/19 21:25,"886 10th St, New York City, NY 10001" +298358,AAA Batteries (4-pack),1,2.99,11/01/19 13:58,"681 Lincoln St, Portland, ME 04101" +298359,Lightning Charging Cable,1,14.95,11/11/19 08:28,"304 9th St, Dallas, TX 75001" +298360,AA Batteries (4-pack),1,3.84,11/25/19 22:14,"236 Walnut St, Atlanta, GA 30301" +298361,Wired Headphones,1,11.99,11/30/19 18:27,"476 Pine St, Portland, OR 97035" +298362,27in 4K Gaming Monitor,1,389.99,11/22/19 21:33,"55 Jackson St, Atlanta, GA 30301" +298363,AAA Batteries (4-pack),1,2.99,11/10/19 12:08,"916 14th St, Los Angeles, CA 90001" +298364,AAA Batteries (4-pack),1,2.99,11/05/19 18:20,"679 Maple St, Los Angeles, CA 90001" +298365,USB-C Charging Cable,2,11.95,11/24/19 17:59,"994 7th St, Austin, TX 73301" +298366,Wired Headphones,1,11.99,11/03/19 21:33,"189 Forest St, Dallas, TX 75001" +298367,AAA Batteries (4-pack),2,2.99,11/12/19 13:14,"34 Ridge St, San Francisco, CA 94016" +298368,34in Ultrawide Monitor,1,379.99,11/18/19 14:23,"344 7th St, Boston, MA 02215" +298369,Bose SoundSport Headphones,1,99.99,11/23/19 22:40,"300 Hill St, Seattle, WA 98101" +298370,iPhone,1,700,11/19/19 17:20,"259 14th St, New York City, NY 10001" +298371,27in 4K Gaming Monitor,1,389.99,11/03/19 22:32,"365 12th St, New York City, NY 10001" +298372,Lightning Charging Cable,1,14.95,11/24/19 14:09,"473 Center St, San Francisco, CA 94016" +298373,AAA Batteries (4-pack),1,2.99,11/29/19 16:11,"442 Cherry St, Seattle, WA 98101" +298374,USB-C Charging Cable,1,11.95,11/25/19 20:09,"45 Dogwood St, San Francisco, CA 94016" +298375,USB-C Charging Cable,1,11.95,11/21/19 13:50,"222 Sunset St, Atlanta, GA 30301" +298376,USB-C Charging Cable,1,11.95,11/18/19 20:13,"934 Spruce St, San Francisco, CA 94016" +298377,iPhone,1,700,11/27/19 18:32,"585 Dogwood St, San Francisco, CA 94016" +298377,Lightning Charging Cable,1,14.95,11/27/19 18:32,"585 Dogwood St, San Francisco, CA 94016" +298378,Bose SoundSport Headphones,1,99.99,11/01/19 20:52,"201 14th St, New York City, NY 10001" +298379,Lightning Charging Cable,2,14.95,11/15/19 10:21,"9 2nd St, San Francisco, CA 94016" +298380,iPhone,1,700,11/22/19 12:05,"481 Hickory St, Portland, ME 04101" +298380,Lightning Charging Cable,1,14.95,11/22/19 12:05,"481 Hickory St, Portland, ME 04101" +298381,AAA Batteries (4-pack),1,2.99,11/07/19 20:02,"933 Meadow St, Austin, TX 73301" +298382,Apple Airpods Headphones,1,150,11/12/19 20:17,"776 North St, Dallas, TX 75001" +298383,Vareebadd Phone,1,400,11/12/19 12:21,"862 Forest St, Dallas, TX 75001" +298384,AA Batteries (4-pack),2,3.84,11/06/19 01:59,"221 Sunset St, Los Angeles, CA 90001" +298385,AA Batteries (4-pack),2,3.84,11/13/19 15:45,"538 Madison St, Portland, OR 97035" +298386,Bose SoundSport Headphones,1,99.99,11/16/19 16:42,"534 Hickory St, San Francisco, CA 94016" +298387,27in 4K Gaming Monitor,1,389.99,11/09/19 20:09,"536 2nd St, Boston, MA 02215" +298388,ThinkPad Laptop,1,999.99,11/03/19 05:53,"786 Jefferson St, San Francisco, CA 94016" +298389,AA Batteries (4-pack),2,3.84,11/17/19 12:56,"200 10th St, Dallas, TX 75001" +298390,LG Dryer,1,600.0,11/07/19 10:24,"697 11th St, San Francisco, CA 94016" +298391,AA Batteries (4-pack),2,3.84,11/09/19 00:00,"556 Madison St, New York City, NY 10001" +298392,27in FHD Monitor,1,149.99,11/10/19 20:12,"712 Washington St, Boston, MA 02215" +298393,AAA Batteries (4-pack),1,2.99,11/18/19 17:23,"621 Main St, San Francisco, CA 94016" +298394,AA Batteries (4-pack),1,3.84,11/10/19 00:27,"990 Main St, Dallas, TX 75001" +298395,AAA Batteries (4-pack),2,2.99,11/25/19 11:00,"262 West St, Dallas, TX 75001" +298396,Wired Headphones,2,11.99,11/01/19 19:09,"472 Park St, Boston, MA 02215" +298397,USB-C Charging Cable,1,11.95,11/08/19 11:18,"258 Cedar St, San Francisco, CA 94016" +298398,34in Ultrawide Monitor,1,379.99,11/03/19 08:11,"37 Ridge St, Atlanta, GA 30301" +298399,AA Batteries (4-pack),1,3.84,11/10/19 08:23,"780 2nd St, San Francisco, CA 94016" +298400,AA Batteries (4-pack),1,3.84,11/09/19 14:17,"844 Church St, Atlanta, GA 30301" +298401,34in Ultrawide Monitor,1,379.99,11/18/19 01:18,"810 6th St, Dallas, TX 75001" +298402,USB-C Charging Cable,1,11.95,11/24/19 18:25,"851 10th St, Boston, MA 02215" +298403,ThinkPad Laptop,1,999.99,11/13/19 22:50,"494 9th St, Dallas, TX 75001" +298404,USB-C Charging Cable,1,11.95,11/23/19 16:35,"136 Lake St, San Francisco, CA 94016" +298405,AA Batteries (4-pack),1,3.84,11/17/19 09:35,"604 Maple St, San Francisco, CA 94016" +298406,Wired Headphones,1,11.99,11/25/19 13:22,"715 1st St, New York City, NY 10001" +298407,Apple Airpods Headphones,1,150,11/03/19 12:51,"749 Adams St, San Francisco, CA 94016" +298408,Bose SoundSport Headphones,1,99.99,11/14/19 00:13,"557 West St, San Francisco, CA 94016" +298409,AAA Batteries (4-pack),1,2.99,11/21/19 00:06,"312 Lake St, Atlanta, GA 30301" +298410,Google Phone,1,600,11/18/19 00:02,"599 Hill St, San Francisco, CA 94016" +298410,Wired Headphones,1,11.99,11/18/19 00:02,"599 Hill St, San Francisco, CA 94016" +298411,Lightning Charging Cable,1,14.95,11/01/19 06:14,"258 Jefferson St, New York City, NY 10001" +298412,ThinkPad Laptop,1,999.99,11/07/19 19:56,"296 North St, Los Angeles, CA 90001" +298413,Apple Airpods Headphones,1,150,11/14/19 11:40,"165 Lincoln St, San Francisco, CA 94016" +298414,AA Batteries (4-pack),1,3.84,11/19/19 23:16,"991 Washington St, San Francisco, CA 94016" +298415,20in Monitor,1,109.99,11/08/19 14:13,"720 Lakeview St, San Francisco, CA 94016" +298416,Bose SoundSport Headphones,1,99.99,11/22/19 00:53,"482 Park St, Boston, MA 02215" +298417,Lightning Charging Cable,1,14.95,11/15/19 01:55,"633 Cedar St, Los Angeles, CA 90001" +298418,27in FHD Monitor,1,149.99,11/01/19 12:34,"816 Main St, Austin, TX 73301" +298419,Bose SoundSport Headphones,1,99.99,11/03/19 16:11,"76 Center St, Atlanta, GA 30301" +298420,27in 4K Gaming Monitor,1,389.99,11/02/19 14:58,"109 Jefferson St, Dallas, TX 75001" +298421,AAA Batteries (4-pack),1,2.99,11/12/19 12:10,"723 7th St, San Francisco, CA 94016" +298422,Google Phone,1,600,11/06/19 11:41,"537 Johnson St, Atlanta, GA 30301" +298422,USB-C Charging Cable,2,11.95,11/06/19 11:41,"537 Johnson St, Atlanta, GA 30301" +298423,Bose SoundSport Headphones,1,99.99,11/01/19 15:41,"754 4th St, Austin, TX 73301" +298424,AAA Batteries (4-pack),2,2.99,11/07/19 07:52,"847 6th St, Atlanta, GA 30301" +298425,AAA Batteries (4-pack),1,2.99,11/20/19 22:09,"422 Hickory St, San Francisco, CA 94016" +298425,AA Batteries (4-pack),1,3.84,11/20/19 22:09,"422 Hickory St, San Francisco, CA 94016" +298426,iPhone,1,700,11/04/19 13:25,"601 Sunset St, Portland, ME 04101" +298427,20in Monitor,1,109.99,11/23/19 18:53,"743 Lakeview St, Los Angeles, CA 90001" +298428,Apple Airpods Headphones,1,150,11/04/19 22:48,"331 11th St, San Francisco, CA 94016" +298429,AAA Batteries (4-pack),2,2.99,11/14/19 18:06,"333 Lincoln St, Austin, TX 73301" +298430,Lightning Charging Cable,1,14.95,11/05/19 11:14,"390 Main St, Seattle, WA 98101" +298431,AA Batteries (4-pack),2,3.84,11/07/19 21:20,"91 8th St, San Francisco, CA 94016" +298432,USB-C Charging Cable,1,11.95,11/02/19 14:04,"967 River St, New York City, NY 10001" +298433,Macbook Pro Laptop,1,1700,11/01/19 20:18,"578 Wilson St, New York City, NY 10001" +298434,34in Ultrawide Monitor,1,379.99,11/14/19 15:46,"783 Ridge St, Seattle, WA 98101" +298435,Apple Airpods Headphones,1,150,11/15/19 12:34,"8 South St, Boston, MA 02215" +298436,AAA Batteries (4-pack),1,2.99,11/28/19 09:52,"629 Church St, New York City, NY 10001" +298437,AA Batteries (4-pack),1,3.84,11/29/19 15:10,"276 6th St, Los Angeles, CA 90001" +298438,Bose SoundSport Headphones,1,99.99,11/04/19 18:44,"149 Spruce St, Atlanta, GA 30301" +298439,Bose SoundSport Headphones,1,99.99,11/17/19 05:00,"18 Cherry St, Boston, MA 02215" +298440,ThinkPad Laptop,1,999.99,11/20/19 12:48,"172 Lincoln St, Seattle, WA 98101" +298441,iPhone,1,700,11/29/19 19:14,"747 7th St, New York City, NY 10001" +298441,Lightning Charging Cable,1,14.95,11/29/19 19:14,"747 7th St, New York City, NY 10001" +298441,Apple Airpods Headphones,1,150,11/29/19 19:14,"747 7th St, New York City, NY 10001" +298442,Wired Headphones,1,11.99,11/25/19 06:14,"788 Madison St, New York City, NY 10001" +298443,Lightning Charging Cable,1,14.95,11/07/19 07:23,"626 Park St, San Francisco, CA 94016" +298444,AAA Batteries (4-pack),1,2.99,11/14/19 12:22,"491 River St, Seattle, WA 98101" +298445,Flatscreen TV,1,300,11/10/19 12:29,"638 Jefferson St, San Francisco, CA 94016" +298446,Lightning Charging Cable,1,14.95,11/22/19 17:24,"690 Washington St, Portland, OR 97035" +298447,34in Ultrawide Monitor,1,379.99,11/16/19 09:31,"629 Maple St, San Francisco, CA 94016" +298448,Lightning Charging Cable,1,14.95,11/09/19 23:26,"218 8th St, Los Angeles, CA 90001" +298449,Apple Airpods Headphones,1,150,11/23/19 18:00,"235 Maple St, New York City, NY 10001" +298450,Apple Airpods Headphones,1,150,11/26/19 19:30,"335 Dogwood St, Portland, OR 97035" +298451,Apple Airpods Headphones,1,150,11/07/19 22:07,"223 Willow St, New York City, NY 10001" +298452,Wired Headphones,1,11.99,11/13/19 16:26,"873 13th St, Los Angeles, CA 90001" +298453,Google Phone,1,600,11/07/19 17:58,"458 Church St, Boston, MA 02215" +298453,USB-C Charging Cable,1,11.95,11/07/19 17:58,"458 Church St, Boston, MA 02215" +298454,Bose SoundSport Headphones,1,99.99,11/09/19 00:11,"286 Church St, Los Angeles, CA 90001" +298455,27in FHD Monitor,1,149.99,11/03/19 13:58,"90 Hill St, New York City, NY 10001" +298456,Apple Airpods Headphones,1,150,11/16/19 12:41,"129 Washington St, Los Angeles, CA 90001" +298457,Flatscreen TV,1,300,11/07/19 21:25,"300 Church St, San Francisco, CA 94016" +298458,27in 4K Gaming Monitor,1,389.99,11/01/19 13:51,"587 West St, San Francisco, CA 94016" +298459,ThinkPad Laptop,1,999.99,11/15/19 09:54,"173 Meadow St, New York City, NY 10001" +298460,USB-C Charging Cable,1,11.95,11/14/19 14:11,"605 Madison St, Los Angeles, CA 90001" +298461,Lightning Charging Cable,1,14.95,11/15/19 17:30,"435 9th St, Atlanta, GA 30301" +298462,Google Phone,1,600,11/09/19 12:01,"622 Lake St, Boston, MA 02215" +298463,iPhone,1,700,11/28/19 12:37,"12 6th St, Boston, MA 02215" +298464,iPhone,1,700,11/19/19 11:17,"248 Maple St, Boston, MA 02215" +298465,Google Phone,1,600,11/06/19 15:50,"33 Walnut St, New York City, NY 10001" +298466,AAA Batteries (4-pack),4,2.99,11/23/19 16:07,"458 Ridge St, San Francisco, CA 94016" +186879,Google Phone,1,600.0,04/19/19 23:44,"344 Willow St, Los Angeles, CA 90001" +186879,USB-C Charging Cable,1,11.95,04/19/19 23:44,"344 Willow St, Los Angeles, CA 90001" +186880,AA Batteries (4-pack),1,3.84,04/26/19 16:21,"772 Ridge St, Portland, OR 97035" +186881,Apple Airpods Headphones,1,150.0,04/30/19 11:49,"979 Chestnut St, Portland, OR 97035" +186882,LG Washing Machine,1,600.0,04/06/19 20:33,"371 Center St, San Francisco, CA 94016" +186883,AA Batteries (4-pack),1,3.84,04/23/19 12:35,"447 West St, San Francisco, CA 94016" +186884,AA Batteries (4-pack),1,3.84,04/17/19 21:56,"503 4th St, Los Angeles, CA 90001" +186885,iPhone,1,700.0,04/07/19 20:29,"295 South St, New York City, NY 10001" +186886,Wired Headphones,2,11.99,04/20/19 23:49,"628 1st St, Portland, OR 97035" +186887,Wired Headphones,1,11.99,04/03/19 14:27,"734 Lakeview St, Portland, OR 97035" +186888,USB-C Charging Cable,1,11.95,04/09/19 00:14,"738 5th St, Los Angeles, CA 90001" +186889,AA Batteries (4-pack),3,3.84,04/24/19 08:52,"433 Meadow St, Los Angeles, CA 90001" +186890,USB-C Charging Cable,1,11.95,04/11/19 16:27,"459 Center St, Portland, OR 97035" +186891,Flatscreen TV,1,300.0,04/14/19 00:10,"28 Park St, San Francisco, CA 94016" +186892,iPhone,1,700.0,04/28/19 17:01,"622 Willow St, Atlanta, GA 30301" +186893,Vareebadd Phone,1,400.0,04/11/19 12:07,"833 Wilson St, Seattle, WA 98101" +186893,USB-C Charging Cable,1,11.95,04/11/19 12:07,"833 Wilson St, Seattle, WA 98101" +186894,USB-C Charging Cable,1,11.95,04/23/19 11:13,"203 Cherry St, Los Angeles, CA 90001" +186895,USB-C Charging Cable,1,11.95,04/19/19 23:21,"741 Spruce St, Boston, MA 02215" +186896,Lightning Charging Cable,1,14.95,04/18/19 08:40,"620 Park St, Atlanta, GA 30301" +186897,Bose SoundSport Headphones,1,99.99,04/11/19 19:33,"581 1st St, Los Angeles, CA 90001" +186898,Wired Headphones,1,11.99,04/02/19 19:11,"250 9th St, Austin, TX 73301" +186899,USB-C Charging Cable,1,11.95,04/25/19 09:00,"983 6th St, Boston, MA 02215" +186900,Lightning Charging Cable,2,14.95,04/18/19 13:35,"93 Dogwood St, Los Angeles, CA 90001" +186901,ThinkPad Laptop,1,999.99,04/24/19 00:36,"65 Madison St, Los Angeles, CA 90001" +186902,Lightning Charging Cable,1,14.95,04/27/19 09:38,"761 Pine St, Atlanta, GA 30301" +186903,USB-C Charging Cable,1,11.95,04/04/19 14:59,"332 River St, Seattle, WA 98101" +186904,Lightning Charging Cable,1,14.95,04/13/19 17:59,"493 4th St, New York City, NY 10001" +186905,Flatscreen TV,1,300.0,04/29/19 09:33,"550 Maple St, Los Angeles, CA 90001" +186906,Apple Airpods Headphones,1,150.0,04/08/19 00:25,"121 Meadow St, Seattle, WA 98101" +186907,Bose SoundSport Headphones,1,99.99,04/03/19 19:40,"835 8th St, Austin, TX 73301" +186908,AAA Batteries (4-pack),1,2.99,04/13/19 20:47,"166 Cherry St, Dallas, TX 75001" +186909,AA Batteries (4-pack),1,3.84,04/08/19 20:18,"304 West St, Los Angeles, CA 90001" +186910,AA Batteries (4-pack),1,3.84,04/21/19 08:56,"86 Pine St, Atlanta, GA 30301" +186911,Lightning Charging Cable,1,14.95,04/06/19 06:09,"481 Pine St, Dallas, TX 75001" +186912,Bose SoundSport Headphones,1,99.99,04/04/19 13:09,"245 13th St, Austin, TX 73301" +186913,27in FHD Monitor,1,149.99,04/18/19 13:21,"402 4th St, San Francisco, CA 94016" +186914,Wired Headphones,1,11.99,04/30/19 15:22,"494 Chestnut St, Seattle, WA 98101" +186915,AAA Batteries (4-pack),1,2.99,04/07/19 11:18,"154 8th St, New York City, NY 10001" +186916,USB-C Charging Cable,1,11.95,04/09/19 17:28,"186 Jackson St, San Francisco, CA 94016" +186917,AA Batteries (4-pack),1,3.84,04/09/19 15:50,"598 Adams St, Los Angeles, CA 90001" +186918,Bose SoundSport Headphones,1,99.99,04/21/19 17:58,"605 Madison St, New York City, NY 10001" +186919,Apple Airpods Headphones,1,150.0,04/05/19 22:03,"841 Sunset St, Seattle, WA 98101" +186920,USB-C Charging Cable,1,11.95,04/06/19 21:20,"705 Church St, Boston, MA 02215" +186921,AA Batteries (4-pack),2,3.84,04/21/19 13:40,"197 9th St, Los Angeles, CA 90001" +186922,Bose SoundSport Headphones,1,99.99,04/25/19 17:00,"53 Cedar St, San Francisco, CA 94016" +186923,Wired Headphones,1,11.99,04/21/19 13:45,"702 4th St, Boston, MA 02215" +186924,Apple Airpods Headphones,1,150.0,04/23/19 05:38,"994 Cherry St, San Francisco, CA 94016" +186925,AA Batteries (4-pack),1,3.84,04/09/19 00:15,"121 8th St, San Francisco, CA 94016" +186926,Bose SoundSport Headphones,1,99.99,04/08/19 06:38,"280 Pine St, Portland, OR 97035" +186927,AAA Batteries (4-pack),2,2.99,04/26/19 13:40,"59 4th St, San Francisco, CA 94016" +186928,USB-C Charging Cable,1,11.95,04/16/19 15:45,"112 South St, Austin, TX 73301" +186929,27in FHD Monitor,1,149.99,04/23/19 15:35,"926 Spruce St, Boston, MA 02215" +186930,AAA Batteries (4-pack),2,2.99,04/28/19 21:09,"880 Madison St, San Francisco, CA 94016" +186930,iPhone,1,700.0,04/28/19 21:09,"880 Madison St, San Francisco, CA 94016" +186931,34in Ultrawide Monitor,1,379.99,04/24/19 12:35,"601 Adams St, Los Angeles, CA 90001" +186932,Bose SoundSport Headphones,1,99.99,04/26/19 13:23,"721 Main St, Seattle, WA 98101" +186933,Bose SoundSport Headphones,1,99.99,04/07/19 04:11,"274 Forest St, New York City, NY 10001" +186934,AAA Batteries (4-pack),1,2.99,04/30/19 14:57,"644 10th St, San Francisco, CA 94016" +186935,20in Monitor,1,109.99,04/01/19 17:07,"520 Pine St, San Francisco, CA 94016" +186936,AAA Batteries (4-pack),2,2.99,04/04/19 07:05,"773 Lincoln St, Atlanta, GA 30301" +186937,Bose SoundSport Headphones,1,99.99,04/13/19 09:42,"291 Willow St, Seattle, WA 98101" +186938,34in Ultrawide Monitor,1,379.99,04/24/19 05:40,"749 Jefferson St, Los Angeles, CA 90001" +186939,Vareebadd Phone,1,400.0,04/18/19 15:07,"797 5th St, Los Angeles, CA 90001" +186940,USB-C Charging Cable,1,11.95,04/19/19 23:35,"993 Park St, New York City, NY 10001" +186941,AAA Batteries (4-pack),1,2.99,04/20/19 13:23,"262 Sunset St, New York City, NY 10001" +186942,USB-C Charging Cable,1,11.95,04/04/19 23:50,"428 Spruce St, San Francisco, CA 94016" +186943,AAA Batteries (4-pack),1,2.99,04/29/19 18:09,"435 5th St, Boston, MA 02215" +186944,27in 4K Gaming Monitor,1,389.99,04/27/19 10:47,"164 9th St, Los Angeles, CA 90001" +186945,Apple Airpods Headphones,1,150.0,04/27/19 11:02,"634 Spruce St, New York City, NY 10001" +186946,AAA Batteries (4-pack),1,2.99,04/16/19 20:31,"873 14th St, New York City, NY 10001" +186947,AAA Batteries (4-pack),1,2.99,04/24/19 13:05,"426 2nd St, San Francisco, CA 94016" +186948,Bose SoundSport Headphones,1,99.99,04/09/19 22:12,"483 North St, Dallas, TX 75001" +186949,AA Batteries (4-pack),2,3.84,04/14/19 20:12,"471 Jackson St, Dallas, TX 75001" +186950,Lightning Charging Cable,1,14.95,04/30/19 00:34,"50 Ridge St, Seattle, WA 98101" +186951,Lightning Charging Cable,1,14.95,04/03/19 17:05,"102 Park St, Atlanta, GA 30301" +186952,AA Batteries (4-pack),1,3.84,04/13/19 06:15,"731 11th St, Los Angeles, CA 90001" +186953,Google Phone,1,600.0,04/03/19 11:42,"925 River St, Austin, TX 73301" +186953,Bose SoundSport Headphones,1,99.99,04/03/19 11:42,"925 River St, Austin, TX 73301" +186954,Apple Airpods Headphones,1,150.0,04/15/19 11:56,"838 14th St, Atlanta, GA 30301" +186955,ThinkPad Laptop,1,999.99,04/02/19 10:20,"809 5th St, Boston, MA 02215" +186956,iPhone,1,700.0,04/08/19 22:48,"64 Hill St, Seattle, WA 98101" +186956,Apple Airpods Headphones,1,150.0,04/08/19 22:48,"64 Hill St, Seattle, WA 98101" +186957,Apple Airpods Headphones,1,150.0,04/15/19 08:03,"815 Forest St, Dallas, TX 75001" +186958,AA Batteries (4-pack),1,3.84,04/14/19 23:06,"61 Lakeview St, Portland, OR 97035" +186959,Bose SoundSport Headphones,1,99.99,04/27/19 11:55,"878 7th St, San Francisco, CA 94016" +186960,20in Monitor,1,109.99,04/26/19 16:15,"483 4th St, Portland, OR 97035" +186961,ThinkPad Laptop,1,999.99,04/01/19 12:04,"921 Hill St, San Francisco, CA 94016" +186962,Wired Headphones,1,11.99,04/03/19 16:24,"246 Meadow St, Seattle, WA 98101" +186963,Apple Airpods Headphones,1,150.0,04/07/19 11:31,"869 9th St, San Francisco, CA 94016" +186964,27in FHD Monitor,1,149.99,04/02/19 18:32,"540 Washington St, Portland, OR 97035" +186965,Macbook Pro Laptop,1,1700.0,04/08/19 17:24,"185 Spruce St, Dallas, TX 75001" +186966,AAA Batteries (4-pack),1,2.99,04/20/19 16:16,"134 Main St, San Francisco, CA 94016" +186967,27in 4K Gaming Monitor,1,389.99,04/11/19 09:52,"895 5th St, San Francisco, CA 94016" +186968,Lightning Charging Cable,1,14.95,04/09/19 14:23,"831 Ridge St, Atlanta, GA 30301" +186969,Apple Airpods Headphones,1,150.0,04/04/19 20:55,"221 Adams St, Dallas, TX 75001" +186970,Apple Airpods Headphones,1,150.0,04/14/19 13:23,"606 9th St, San Francisco, CA 94016" +186971,27in FHD Monitor,1,149.99,04/02/19 22:21,"85 Dogwood St, Dallas, TX 75001" +186972,Macbook Pro Laptop,1,1700.0,04/25/19 20:30,"754 Ridge St, New York City, NY 10001" +186973,Bose SoundSport Headphones,1,99.99,04/27/19 12:22,"989 Church St, San Francisco, CA 94016" +186974,USB-C Charging Cable,1,11.95,04/09/19 15:56,"514 Ridge St, Los Angeles, CA 90001" +186975,Wired Headphones,1,11.99,04/08/19 21:00,"465 Cedar St, Atlanta, GA 30301" +186976,Bose SoundSport Headphones,1,99.99,04/28/19 17:40,"927 Lake St, Atlanta, GA 30301" +186977,Wired Headphones,1,11.99,04/23/19 13:44,"569 1st St, San Francisco, CA 94016" +186978,Bose SoundSport Headphones,1,99.99,04/12/19 06:28,"809 Madison St, Boston, MA 02215" +186979,iPhone,1,700.0,04/28/19 11:34,"609 Washington St, Portland, ME 04101" +186980,AA Batteries (4-pack),1,3.84,04/20/19 01:08,"36 Maple St, Portland, OR 97035" +186981,Bose SoundSport Headphones,1,99.99,04/14/19 09:05,"119 Center St, New York City, NY 10001" +186982,Lightning Charging Cable,1,14.95,04/30/19 00:19,"610 Lake St, Los Angeles, CA 90001" +186983,Lightning Charging Cable,1,14.95,04/25/19 18:18,"705 Lincoln St, New York City, NY 10001" +186984,Wired Headphones,1,11.99,04/07/19 18:34,"173 12th St, Los Angeles, CA 90001" +186985,Wired Headphones,1,11.99,04/03/19 17:53,"182 2nd St, Atlanta, GA 30301" +186986,Apple Airpods Headphones,1,150.0,04/11/19 18:48,"677 South St, Seattle, WA 98101" +186987,ThinkPad Laptop,1,999.99,04/06/19 18:48,"651 Adams St, Atlanta, GA 30301" +186988,USB-C Charging Cable,1,11.95,05/01/19 01:07,"726 13th St, Seattle, WA 98101" +186989,USB-C Charging Cable,1,11.95,04/19/19 17:39,"974 13th St, Boston, MA 02215" +186990,Bose SoundSport Headphones,1,99.99,04/16/19 14:40,"678 9th St, Atlanta, GA 30301" +186991,Bose SoundSport Headphones,1,99.99,04/05/19 22:28,"42 Ridge St, Portland, OR 97035" +186992,ThinkPad Laptop,1,999.99,04/17/19 19:43,"283 Lakeview St, Austin, TX 73301" +186993,AA Batteries (4-pack),1,3.84,04/05/19 19:48,"877 Lakeview St, Seattle, WA 98101" +186994,USB-C Charging Cable,1,11.95,04/08/19 18:43,"782 Jefferson St, New York City, NY 10001" +186995,Apple Airpods Headphones,1,150.0,04/13/19 02:45,"800 8th St, Dallas, TX 75001" +186996,AAA Batteries (4-pack),1,2.99,04/27/19 15:32,"239 Pine St, Austin, TX 73301" +186997,Lightning Charging Cable,1,14.95,04/24/19 15:12,"777 Elm St, Dallas, TX 75001" +186998,iPhone,1,700.0,04/03/19 01:51,"126 12th St, San Francisco, CA 94016" +186999,AAA Batteries (4-pack),1,2.99,04/29/19 16:32,"842 Pine St, Boston, MA 02215" +187000,Wired Headphones,1,11.99,04/10/19 18:53,"412 Church St, Dallas, TX 75001" +187001,34in Ultrawide Monitor,1,379.99,04/28/19 20:02,"529 Meadow St, New York City, NY 10001" +187002,Apple Airpods Headphones,1,150.0,04/01/19 23:24,"372 Jackson St, Los Angeles, CA 90001" +187003,Bose SoundSport Headphones,1,99.99,04/15/19 10:44,"348 Meadow St, Atlanta, GA 30301" +187004,AAA Batteries (4-pack),2,2.99,04/03/19 16:42,"763 Lake St, New York City, NY 10001" +187005,27in FHD Monitor,1,149.99,04/05/19 19:40,"945 12th St, Portland, OR 97035" +187006,Lightning Charging Cable,1,14.95,04/20/19 00:27,"32 Ridge St, Boston, MA 02215" +187007,34in Ultrawide Monitor,1,379.99,04/08/19 21:31,"183 North St, Boston, MA 02215" +187008,Apple Airpods Headphones,1,150.0,04/04/19 10:45,"740 North St, San Francisco, CA 94016" +187009,AAA Batteries (4-pack),1,2.99,04/15/19 11:47,"994 Pine St, Atlanta, GA 30301" +187010,Bose SoundSport Headphones,1,99.99,04/18/19 19:45,"812 Center St, San Francisco, CA 94016" +187011,Vareebadd Phone,1,400.0,04/25/19 19:32,"876 Dogwood St, New York City, NY 10001" +187011,USB-C Charging Cable,1,11.95,04/25/19 19:32,"876 Dogwood St, New York City, NY 10001" +187012,Bose SoundSport Headphones,2,99.99,04/02/19 21:38,"857 4th St, New York City, NY 10001" +187013,Flatscreen TV,1,300.0,04/11/19 21:35,"939 Wilson St, Atlanta, GA 30301" +187014,iPhone,1,700.0,04/27/19 09:20,"975 6th St, San Francisco, CA 94016" +187015,Google Phone,1,600.0,04/03/19 10:32,"191 Dogwood St, San Francisco, CA 94016" +187016,AA Batteries (4-pack),1,3.84,04/06/19 20:04,"61 Walnut St, Boston, MA 02215" +187017,27in FHD Monitor,1,149.99,04/24/19 12:47,"813 10th St, San Francisco, CA 94016" +187018,Wired Headphones,1,11.99,04/21/19 09:40,"936 Cedar St, Austin, TX 73301" +187019,Apple Airpods Headphones,1,150.0,04/05/19 19:18,"375 Ridge St, Los Angeles, CA 90001" +187020,USB-C Charging Cable,2,11.95,04/07/19 21:23,"703 1st St, Austin, TX 73301" +187021,34in Ultrawide Monitor,1,379.99,04/18/19 20:44,"743 Church St, Los Angeles, CA 90001" +187022,AA Batteries (4-pack),1,3.84,04/10/19 18:44,"335 Jackson St, San Francisco, CA 94016" +187023,20in Monitor,1,109.99,04/13/19 17:26,"669 Johnson St, Los Angeles, CA 90001" +187024,USB-C Charging Cable,1,11.95,04/05/19 13:40,"216 Ridge St, Seattle, WA 98101" +187024,Apple Airpods Headphones,1,150.0,04/05/19 13:40,"216 Ridge St, Seattle, WA 98101" +187025,AAA Batteries (4-pack),1,2.99,04/02/19 22:30,"180 6th St, New York City, NY 10001" +187026,ThinkPad Laptop,1,999.99,04/23/19 17:55,"457 Main St, New York City, NY 10001" +187027,AAA Batteries (4-pack),5,2.99,04/30/19 19:41,"845 River St, Los Angeles, CA 90001" +187028,Wired Headphones,1,11.99,04/05/19 09:57,"941 Willow St, Seattle, WA 98101" +187029,USB-C Charging Cable,1,11.95,04/06/19 12:54,"227 Cedar St, New York City, NY 10001" +187030,USB-C Charging Cable,1,11.95,04/14/19 09:49,"543 Cedar St, Seattle, WA 98101" +187031,AAA Batteries (4-pack),1,2.99,04/22/19 12:42,"926 5th St, Dallas, TX 75001" +187032,AA Batteries (4-pack),1,3.84,04/14/19 12:04,"654 Chestnut St, Dallas, TX 75001" +187033,USB-C Charging Cable,1,11.95,04/20/19 19:41,"941 Center St, Austin, TX 73301" +187034,Wired Headphones,1,11.99,04/03/19 16:50,"819 West St, Portland, OR 97035" +187035,Lightning Charging Cable,1,14.95,04/06/19 21:56,"180 Church St, New York City, NY 10001" +187036,AAA Batteries (4-pack),1,2.99,04/26/19 20:03,"390 4th St, Los Angeles, CA 90001" +187037,USB-C Charging Cable,1,11.95,04/28/19 18:46,"30 Adams St, New York City, NY 10001" +187038,Lightning Charging Cable,1,14.95,04/01/19 16:43,"780 Jackson St, Dallas, TX 75001" +187039,AA Batteries (4-pack),1,3.84,04/15/19 23:40,"98 10th St, New York City, NY 10001" +187039,AA Batteries (4-pack),1,3.84,04/15/19 23:40,"98 10th St, New York City, NY 10001" +187040,Lightning Charging Cable,1,14.95,04/01/19 19:48,"794 Forest St, Dallas, TX 75001" +187041,Wired Headphones,1,11.99,04/14/19 11:21,"654 Sunset St, Austin, TX 73301" +187042,AA Batteries (4-pack),1,3.84,04/03/19 12:12,"48 Adams St, Los Angeles, CA 90001" +187043,LG Washing Machine,2,600.0,04/13/19 12:55,"433 North St, Boston, MA 02215" +187044,Lightning Charging Cable,2,14.95,04/03/19 12:46,"297 7th St, New York City, NY 10001" +187045,Bose SoundSport Headphones,1,99.99,04/22/19 10:48,"943 Forest St, Seattle, WA 98101" +187046,AA Batteries (4-pack),1,3.84,04/16/19 23:02,"984 13th St, Boston, MA 02215" +187047,Bose SoundSport Headphones,1,99.99,04/02/19 16:15,"546 11th St, Boston, MA 02215" +187048,AAA Batteries (4-pack),1,2.99,04/21/19 19:42,"577 Washington St, Boston, MA 02215" +187049,27in 4K Gaming Monitor,1,389.99,04/10/19 00:57,"703 Main St, Portland, ME 04101" +187050,Lightning Charging Cable,1,14.95,04/19/19 14:42,"892 Ridge St, Seattle, WA 98101" +187051,USB-C Charging Cable,1,11.95,04/18/19 23:42,"604 Hill St, San Francisco, CA 94016" +187052,iPhone,1,700.0,04/11/19 18:49,"575 Walnut St, Los Angeles, CA 90001" +187053,Wired Headphones,1,11.99,04/01/19 20:49,"154 Hickory St, San Francisco, CA 94016" +187054,USB-C Charging Cable,1,11.95,04/21/19 15:02,"878 River St, Portland, OR 97035" +187055,Flatscreen TV,1,300.0,04/22/19 01:12,"281 Forest St, Boston, MA 02215" +187056,34in Ultrawide Monitor,1,379.99,04/27/19 18:18,"687 Church St, Seattle, WA 98101" +187057,USB-C Charging Cable,1,11.95,04/11/19 13:30,"104 4th St, Dallas, TX 75001" +187058,AAA Batteries (4-pack),1,2.99,04/24/19 20:52,"451 Walnut St, San Francisco, CA 94016" +187059,USB-C Charging Cable,1,11.95,04/07/19 17:29,"30 Forest St, Los Angeles, CA 90001" +187060,34in Ultrawide Monitor,1,379.99,04/29/19 11:19,"805 River St, Dallas, TX 75001" +187061,iPhone,1,700.0,04/04/19 08:16,"98 Park St, New York City, NY 10001" +187061,Lightning Charging Cable,2,14.95,04/04/19 08:16,"98 Park St, New York City, NY 10001" +187062,Apple Airpods Headphones,1,150.0,04/28/19 13:33,"353 Willow St, San Francisco, CA 94016" +187063,Lightning Charging Cable,1,14.95,04/21/19 13:39,"627 Chestnut St, Los Angeles, CA 90001" +187064,Wired Headphones,1,11.99,04/01/19 12:11,"705 Sunset St, Atlanta, GA 30301" +187065,iPhone,1,700.0,04/19/19 01:32,"892 Washington St, New York City, NY 10001" +187066,AAA Batteries (4-pack),1,2.99,04/23/19 07:14,"739 Park St, Seattle, WA 98101" +187067,AA Batteries (4-pack),1,3.84,04/02/19 14:58,"819 Main St, New York City, NY 10001" +187068,27in FHD Monitor,1,149.99,04/27/19 08:38,"915 Meadow St, Seattle, WA 98101" +187069,AAA Batteries (4-pack),2,2.99,04/18/19 12:36,"585 Dogwood St, Los Angeles, CA 90001" +187070,AA Batteries (4-pack),2,3.84,04/04/19 18:31,"357 Highland St, Los Angeles, CA 90001" +187071,AA Batteries (4-pack),1,3.84,04/02/19 19:55,"766 Lakeview St, Austin, TX 73301" +187072,Apple Airpods Headphones,1,150.0,04/17/19 00:53,"59 Meadow St, New York City, NY 10001" +187073,AAA Batteries (4-pack),1,2.99,04/19/19 01:30,"596 Cedar St, Dallas, TX 75001" +187074,AAA Batteries (4-pack),2,2.99,04/03/19 21:25,"997 Hickory St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +187075,27in FHD Monitor,1,149.99,04/23/19 07:48,"52 2nd St, Portland, OR 97035" +187076,20in Monitor,1,109.99,04/12/19 21:11,"289 Meadow St, Los Angeles, CA 90001" +187077,AA Batteries (4-pack),1,3.84,04/13/19 21:40,"915 Lakeview St, San Francisco, CA 94016" +187078,AAA Batteries (4-pack),1,2.99,04/11/19 14:47,"928 Washington St, Atlanta, GA 30301" +187079,iPhone,1,700,04/08/19 13:56,"517 Center St, Seattle, WA 98101" +187080,AA Batteries (4-pack),1,3.84,04/20/19 01:09,"93 Cherry St, Los Angeles, CA 90001" +187081,20in Monitor,1,109.99,04/14/19 12:00,"278 Park St, Austin, TX 73301" +187082,AA Batteries (4-pack),2,3.84,04/30/19 20:34,"676 Hill St, Portland, OR 97035" +187083,USB-C Charging Cable,1,11.95,04/03/19 18:21,"938 11th St, Boston, MA 02215" +187084,Lightning Charging Cable,1,14.95,04/02/19 22:47,"761 Walnut St, Austin, TX 73301" +187085,AAA Batteries (4-pack),1,2.99,04/04/19 16:51,"991 5th St, Atlanta, GA 30301" +187086,Bose SoundSport Headphones,1,99.99,04/15/19 09:29,"28 Maple St, San Francisco, CA 94016" +187087,27in FHD Monitor,1,149.99,04/06/19 13:22,"371 11th St, Portland, OR 97035" +187088,34in Ultrawide Monitor,1,379.99,04/01/19 15:37,"150 Washington St, San Francisco, CA 94016" +187089,AAA Batteries (4-pack),1,2.99,04/28/19 16:39,"334 Wilson St, Boston, MA 02215" +187090,Bose SoundSport Headphones,1,99.99,04/23/19 13:01,"635 Walnut St, New York City, NY 10001" +187091,Google Phone,1,600,04/05/19 10:18,"750 West St, Los Angeles, CA 90001" +187092,Wired Headphones,1,11.99,04/17/19 10:58,"210 Church St, New York City, NY 10001" +187093,27in 4K Gaming Monitor,1,389.99,04/01/19 20:16,"945 North St, Austin, TX 73301" +187094,Wired Headphones,1,11.99,04/17/19 19:33,"103 Walnut St, Boston, MA 02215" +187095,USB-C Charging Cable,1,11.95,04/23/19 15:34,"195 Lincoln St, San Francisco, CA 94016" +187096,Google Phone,1,600,04/12/19 07:47,"724 Lincoln St, San Francisco, CA 94016" +187097,ThinkPad Laptop,1,999.99,04/05/19 11:37,"745 Maple St, Boston, MA 02215" +187098,AA Batteries (4-pack),1,3.84,04/02/19 21:00,"607 Wilson St, Atlanta, GA 30301" +187099,Vareebadd Phone,1,400,04/08/19 06:51,"537 Sunset St, Boston, MA 02215" +187100,Lightning Charging Cable,1,14.95,04/15/19 11:17,"638 Maple St, Boston, MA 02215" +187101,Apple Airpods Headphones,1,150,04/25/19 09:42,"587 Cedar St, Boston, MA 02215" +187102,34in Ultrawide Monitor,1,379.99,04/03/19 09:53,"113 Forest St, Los Angeles, CA 90001" +187103,AA Batteries (4-pack),1,3.84,04/09/19 12:26,"164 Lake St, Portland, OR 97035" +187104,Apple Airpods Headphones,1,150,04/20/19 22:05,"374 Forest St, San Francisco, CA 94016" +187105,Bose SoundSport Headphones,1,99.99,04/18/19 20:45,"114 River St, San Francisco, CA 94016" +187106,Lightning Charging Cable,1,14.95,04/28/19 16:07,"355 Spruce St, Dallas, TX 75001" +187107,USB-C Charging Cable,1,11.95,04/21/19 16:52,"268 Dogwood St, New York City, NY 10001" +187107,Google Phone,1,600,04/21/19 16:52,"268 Dogwood St, New York City, NY 10001" +187108,Apple Airpods Headphones,1,150,04/28/19 07:03,"138 9th St, New York City, NY 10001" +187109,Apple Airpods Headphones,1,150,04/01/19 16:28,"915 Madison St, Dallas, TX 75001" +187110,Bose SoundSport Headphones,1,99.99,04/18/19 17:22,"774 North St, Boston, MA 02215" +187111,Wired Headphones,1,11.99,04/14/19 18:38,"113 Ridge St, Dallas, TX 75001" +187112,Bose SoundSport Headphones,1,99.99,04/11/19 19:40,"875 12th St, Dallas, TX 75001" +187113,34in Ultrawide Monitor,1,379.99,04/17/19 13:21,"224 Cherry St, Los Angeles, CA 90001" +187114,Apple Airpods Headphones,1,150,04/10/19 15:58,"882 Spruce St, New York City, NY 10001" +187115,AA Batteries (4-pack),1,3.84,04/03/19 15:42,"421 Walnut St, San Francisco, CA 94016" +187116,Lightning Charging Cable,1,14.95,04/03/19 22:29,"170 Spruce St, Boston, MA 02215" +187117,Apple Airpods Headphones,1,150,04/22/19 17:24,"179 Pine St, New York City, NY 10001" +187118,ThinkPad Laptop,1,999.99,04/16/19 14:21,"721 Hill St, San Francisco, CA 94016" +187119,27in FHD Monitor,1,149.99,04/10/19 20:26,"299 12th St, San Francisco, CA 94016" +187120,AAA Batteries (4-pack),1,2.99,04/28/19 21:36,"831 Cedar St, Boston, MA 02215" +187121,Lightning Charging Cable,1,14.95,04/10/19 15:51,"498 Ridge St, Dallas, TX 75001" +187122,USB-C Charging Cable,1,11.95,04/24/19 22:37,"704 12th St, New York City, NY 10001" +187123,AA Batteries (4-pack),1,3.84,04/13/19 18:38,"561 Wilson St, San Francisco, CA 94016" +187124,Wired Headphones,1,11.99,04/10/19 16:59,"97 Cherry St, Atlanta, GA 30301" +187125,LG Dryer,1,600.0,04/14/19 08:16,"610 14th St, San Francisco, CA 94016" +187126,Bose SoundSport Headphones,1,99.99,04/30/19 18:47,"561 Cedar St, San Francisco, CA 94016" +187126,Bose SoundSport Headphones,1,99.99,04/30/19 18:47,"561 Cedar St, San Francisco, CA 94016" +187127,AAA Batteries (4-pack),2,2.99,04/21/19 09:50,"863 4th St, San Francisco, CA 94016" +187128,Lightning Charging Cable,1,14.95,04/23/19 10:31,"941 Lincoln St, San Francisco, CA 94016" +187129,Apple Airpods Headphones,1,150,04/29/19 17:54,"151 Willow St, New York City, NY 10001" +187130,Lightning Charging Cable,1,14.95,04/11/19 09:37,"405 6th St, Boston, MA 02215" +187131,34in Ultrawide Monitor,1,379.99,04/18/19 08:04,"701 Lincoln St, San Francisco, CA 94016" +187132,34in Ultrawide Monitor,1,379.99,04/17/19 12:29,"953 Hill St, Boston, MA 02215" +187133,ThinkPad Laptop,1,999.99,04/14/19 13:55,"900 Pine St, Austin, TX 73301" +187134,AA Batteries (4-pack),1,3.84,04/04/19 23:38,"91 Center St, San Francisco, CA 94016" +187135,USB-C Charging Cable,2,11.95,04/23/19 12:51,"216 Hickory St, New York City, NY 10001" +187136,Lightning Charging Cable,1,14.95,04/01/19 14:16,"494 11th St, San Francisco, CA 94016" +187137,ThinkPad Laptop,1,999.99,04/21/19 04:07,"363 South St, Atlanta, GA 30301" +187138,Macbook Pro Laptop,1,1700,04/22/19 17:01,"515 7th St, Atlanta, GA 30301" +187139,iPhone,1,700,04/11/19 10:03,"631 Highland St, Portland, OR 97035" +187140,Apple Airpods Headphones,1,150,04/01/19 12:05,"832 Lakeview St, New York City, NY 10001" +187141,27in FHD Monitor,1,149.99,04/09/19 08:06,"579 Main St, San Francisco, CA 94016" +187142,USB-C Charging Cable,1,11.95,04/08/19 06:53,"573 Madison St, Dallas, TX 75001" +187143,Wired Headphones,1,11.99,04/11/19 18:14,"356 Johnson St, Los Angeles, CA 90001" +187144,Bose SoundSport Headphones,1,99.99,04/11/19 00:45,"765 Lincoln St, Seattle, WA 98101" +187145,AA Batteries (4-pack),1,3.84,04/04/19 12:22,"8 14th St, Atlanta, GA 30301" +187146,ThinkPad Laptop,1,999.99,04/25/19 19:20,"130 Church St, San Francisco, CA 94016" +187147,Apple Airpods Headphones,1,150,04/26/19 21:22,"228 5th St, Portland, ME 04101" +187148,Apple Airpods Headphones,1,150,04/26/19 12:53,"917 Madison St, Dallas, TX 75001" +187149,34in Ultrawide Monitor,1,379.99,04/22/19 20:16,"411 West St, Los Angeles, CA 90001" +187150,Apple Airpods Headphones,1,150,04/15/19 09:30,"271 Willow St, San Francisco, CA 94016" +187151,Apple Airpods Headphones,1,150,04/27/19 15:32,"719 Lake St, Seattle, WA 98101" +187152,AA Batteries (4-pack),2,3.84,04/09/19 08:55,"828 Hickory St, New York City, NY 10001" +187153,USB-C Charging Cable,1,11.95,04/08/19 19:35,"842 1st St, San Francisco, CA 94016" +187154,Lightning Charging Cable,1,14.95,04/14/19 05:56,"446 Spruce St, San Francisco, CA 94016" +187155,LG Dryer,1,600.0,04/02/19 18:47,"174 River St, San Francisco, CA 94016" +187156,USB-C Charging Cable,1,11.95,04/01/19 17:20,"161 Highland St, Atlanta, GA 30301" +187157,Wired Headphones,1,11.99,04/08/19 19:09,"930 Hill St, Atlanta, GA 30301" +187158,Flatscreen TV,1,300,04/20/19 15:31,"30 West St, Los Angeles, CA 90001" +187159,AAA Batteries (4-pack),2,2.99,04/16/19 20:54,"194 14th St, New York City, NY 10001" +187160,iPhone,1,700,04/28/19 17:02,"306 Walnut St, Seattle, WA 98101" +187161,AA Batteries (4-pack),1,3.84,04/13/19 13:10,"330 Lake St, Los Angeles, CA 90001" +187162,27in FHD Monitor,1,149.99,04/18/19 19:48,"30 Washington St, New York City, NY 10001" +187163,Wired Headphones,1,11.99,04/10/19 18:15,"671 4th St, Portland, OR 97035" +187164,Lightning Charging Cable,1,14.95,04/03/19 18:49,"381 Jackson St, San Francisco, CA 94016" +187165,Bose SoundSport Headphones,1,99.99,05/01/19 00:02,"488 Adams St, Boston, MA 02215" +187166,27in FHD Monitor,1,149.99,04/06/19 21:09,"163 Chestnut St, Boston, MA 02215" +187167,34in Ultrawide Monitor,1,379.99,04/08/19 00:19,"136 Highland St, Los Angeles, CA 90001" +187168,Wired Headphones,1,11.99,04/19/19 22:49,"857 Elm St, Los Angeles, CA 90001" +187168,USB-C Charging Cable,1,11.95,04/19/19 22:49,"857 Elm St, Los Angeles, CA 90001" +187169,34in Ultrawide Monitor,1,379.99,04/07/19 21:28,"227 Cherry St, Portland, OR 97035" +187170,27in FHD Monitor,1,149.99,04/23/19 17:15,"987 Main St, Seattle, WA 98101" +187171,Lightning Charging Cable,2,14.95,04/30/19 09:06,"285 9th St, Los Angeles, CA 90001" +187172,Bose SoundSport Headphones,1,99.99,04/04/19 19:33,"76 Main St, Dallas, TX 75001" +187173,34in Ultrawide Monitor,1,379.99,04/10/19 08:13,"608 12th St, Atlanta, GA 30301" +187174,Bose SoundSport Headphones,1,99.99,04/20/19 14:33,"773 9th St, Seattle, WA 98101" +187175,Bose SoundSport Headphones,1,99.99,04/25/19 23:04,"141 Lincoln St, Austin, TX 73301" +187176,AA Batteries (4-pack),3,3.84,04/05/19 12:33,"866 Wilson St, San Francisco, CA 94016" +187177,Lightning Charging Cable,1,14.95,04/16/19 00:10,"573 9th St, Portland, OR 97035" +187178,USB-C Charging Cable,1,11.95,04/12/19 19:35,"392 11th St, San Francisco, CA 94016" +187179,AA Batteries (4-pack),2,3.84,04/02/19 10:25,"136 Pine St, Atlanta, GA 30301" +187180,Apple Airpods Headphones,1,150,04/21/19 20:50,"601 Main St, Los Angeles, CA 90001" +187181,AA Batteries (4-pack),2,3.84,04/15/19 10:07,"990 Sunset St, Seattle, WA 98101" +187182,AA Batteries (4-pack),1,3.84,04/22/19 21:19,"192 Chestnut St, Atlanta, GA 30301" +187183,AAA Batteries (4-pack),2,2.99,04/28/19 13:51,"687 Ridge St, Los Angeles, CA 90001" +187184,ThinkPad Laptop,1,999.99,04/24/19 21:42,"416 14th St, Los Angeles, CA 90001" +187185,Bose SoundSport Headphones,1,99.99,04/02/19 05:52,"714 Madison St, Los Angeles, CA 90001" +187186,ThinkPad Laptop,1,999.99,04/06/19 12:57,"691 Sunset St, Austin, TX 73301" +187187,USB-C Charging Cable,1,11.95,04/23/19 11:00,"560 Hill St, New York City, NY 10001" +187188,27in FHD Monitor,1,149.99,04/15/19 23:46,"709 4th St, New York City, NY 10001" +187188,Apple Airpods Headphones,1,150,04/15/19 23:46,"709 4th St, New York City, NY 10001" +187189,AAA Batteries (4-pack),1,2.99,04/29/19 09:13,"840 Forest St, Dallas, TX 75001" +187190,27in 4K Gaming Monitor,1,389.99,04/14/19 10:25,"811 Jefferson St, Boston, MA 02215" +187191,AA Batteries (4-pack),2,3.84,04/13/19 12:49,"735 Lakeview St, Boston, MA 02215" +187192,Flatscreen TV,1,300,04/15/19 14:06,"119 Sunset St, Boston, MA 02215" +187193,27in 4K Gaming Monitor,1,389.99,04/19/19 09:58,"600 Dogwood St, San Francisco, CA 94016" +187194,Google Phone,1,600,04/27/19 15:40,"747 Jefferson St, Atlanta, GA 30301" +187195,20in Monitor,1,109.99,04/04/19 16:51,"744 River St, Portland, OR 97035" +187196,27in FHD Monitor,1,149.99,04/15/19 19:25,"93 Center St, Seattle, WA 98101" +187197,AA Batteries (4-pack),1,3.84,04/07/19 13:16,"797 Jackson St, New York City, NY 10001" +187198,Bose SoundSport Headphones,1,99.99,04/28/19 19:05,"754 Cherry St, Austin, TX 73301" +187199,iPhone,1,700,04/11/19 05:33,"125 North St, New York City, NY 10001" +187199,Lightning Charging Cable,1,14.95,04/11/19 05:33,"125 North St, New York City, NY 10001" +187199,Wired Headphones,1,11.99,04/11/19 05:33,"125 North St, New York City, NY 10001" +187200,USB-C Charging Cable,1,11.95,04/12/19 12:24,"251 Maple St, San Francisco, CA 94016" +187201,USB-C Charging Cable,1,11.95,04/27/19 18:58,"688 Willow St, Portland, ME 04101" +187202,Apple Airpods Headphones,1,150,04/25/19 06:58,"710 Jefferson St, Boston, MA 02215" +187203,Bose SoundSport Headphones,1,99.99,04/13/19 22:32,"58 2nd St, Boston, MA 02215" +187204,AAA Batteries (4-pack),1,2.99,04/10/19 08:11,"411 Lincoln St, San Francisco, CA 94016" +187205,USB-C Charging Cable,1,11.95,04/11/19 11:42,"154 Jackson St, Austin, TX 73301" +187206,Lightning Charging Cable,1,14.95,04/07/19 22:03,"946 7th St, New York City, NY 10001" +187207,Google Phone,1,600,04/29/19 20:46,"963 West St, San Francisco, CA 94016" +187208,Lightning Charging Cable,1,14.95,04/03/19 16:59,"851 Sunset St, New York City, NY 10001" +187209,Lightning Charging Cable,1,14.95,04/12/19 22:10,"250 Lincoln St, San Francisco, CA 94016" +187209,AA Batteries (4-pack),1,3.84,04/12/19 22:10,"250 Lincoln St, San Francisco, CA 94016" +187210,AAA Batteries (4-pack),1,2.99,04/10/19 12:36,"983 Main St, Dallas, TX 75001" +187211,Wired Headphones,1,11.99,04/28/19 01:14,"240 12th St, San Francisco, CA 94016" +187212,AAA Batteries (4-pack),1,2.99,04/16/19 09:27,"233 Hickory St, Portland, OR 97035" +187213,Bose SoundSport Headphones,1,99.99,04/08/19 18:56,"795 Sunset St, Portland, OR 97035" +187214,Bose SoundSport Headphones,1,99.99,04/22/19 10:56,"327 Cherry St, Los Angeles, CA 90001" +187215,AA Batteries (4-pack),1,3.84,04/03/19 19:08,"243 Jackson St, Portland, OR 97035" +187216,Flatscreen TV,1,300,04/10/19 10:25,"106 Sunset St, Atlanta, GA 30301" +187217,Wired Headphones,1,11.99,04/07/19 16:45,"394 12th St, San Francisco, CA 94016" +187218,AA Batteries (4-pack),1,3.84,04/06/19 22:26,"568 Lakeview St, New York City, NY 10001" +187219,34in Ultrawide Monitor,1,379.99,04/06/19 19:02,"108 North St, Austin, TX 73301" +187220,USB-C Charging Cable,1,11.95,04/02/19 14:46,"799 14th St, Dallas, TX 75001" +187221,Apple Airpods Headphones,1,150,04/23/19 18:51,"782 Wilson St, Los Angeles, CA 90001" +187222,Bose SoundSport Headphones,1,99.99,04/06/19 23:28,"921 South St, Boston, MA 02215" +187223,Apple Airpods Headphones,1,150,04/18/19 15:22,"321 11th St, Dallas, TX 75001" +187224,Lightning Charging Cable,1,14.95,04/28/19 13:48,"622 Chestnut St, Boston, MA 02215" +187225,Apple Airpods Headphones,1,150,04/16/19 12:53,"484 Church St, Los Angeles, CA 90001" +187226,27in FHD Monitor,1,149.99,04/14/19 17:03,"869 River St, Los Angeles, CA 90001" +187227,USB-C Charging Cable,1,11.95,04/13/19 19:05,"908 Madison St, New York City, NY 10001" +187228,Apple Airpods Headphones,1,150,04/30/19 07:04,"99 12th St, Portland, OR 97035" +187229,AAA Batteries (4-pack),5,2.99,04/01/19 13:38,"200 Forest St, San Francisco, CA 94016" +187230,20in Monitor,1,109.99,04/30/19 22:44,"142 North St, San Francisco, CA 94016" +187231,27in 4K Gaming Monitor,1,389.99,04/18/19 20:39,"382 10th St, Los Angeles, CA 90001" +187232,Wired Headphones,1,11.99,04/25/19 11:28,"764 Cherry St, Seattle, WA 98101" +187233,AAA Batteries (4-pack),1,2.99,04/09/19 16:10,"681 Ridge St, San Francisco, CA 94016" +187234,Apple Airpods Headphones,1,150,04/21/19 20:42,"874 13th St, Atlanta, GA 30301" +187235,Lightning Charging Cable,1,14.95,04/04/19 21:56,"734 Washington St, Boston, MA 02215" +187236,Apple Airpods Headphones,1,150,04/05/19 21:13,"346 Elm St, Seattle, WA 98101" +187237,Macbook Pro Laptop,1,1700,04/09/19 18:17,"163 Jackson St, Los Angeles, CA 90001" +187238,Lightning Charging Cable,1,14.95,04/28/19 03:10,"264 Highland St, San Francisco, CA 94016" +187239,34in Ultrawide Monitor,1,379.99,04/20/19 15:46,"783 Adams St, Portland, ME 04101" +187240,Google Phone,1,600,04/29/19 13:35,"717 4th St, Los Angeles, CA 90001" +187241,27in FHD Monitor,1,149.99,04/24/19 18:47,"335 Maple St, San Francisco, CA 94016" +187242,USB-C Charging Cable,2,11.95,04/08/19 23:53,"324 12th St, New York City, NY 10001" +187243,Wired Headphones,1,11.99,04/01/19 08:39,"312 Adams St, New York City, NY 10001" +187244,Wired Headphones,1,11.99,04/22/19 09:28,"96 Highland St, New York City, NY 10001" +187245,27in FHD Monitor,1,149.99,04/30/19 20:37,"143 Jackson St, Atlanta, GA 30301" +187246,Lightning Charging Cable,1,14.95,04/07/19 06:32,"742 Lake St, Seattle, WA 98101" +187247,AAA Batteries (4-pack),6,2.99,04/26/19 17:57,"802 Dogwood St, San Francisco, CA 94016" +187248,27in 4K Gaming Monitor,1,389.99,04/26/19 11:22,"592 Center St, San Francisco, CA 94016" +187249,USB-C Charging Cable,2,11.95,04/21/19 16:59,"676 6th St, New York City, NY 10001" +187250,Google Phone,1,600,04/25/19 23:04,"778 Lake St, Dallas, TX 75001" +187250,USB-C Charging Cable,1,11.95,04/25/19 23:04,"778 Lake St, Dallas, TX 75001" +187251,AA Batteries (4-pack),1,3.84,04/20/19 16:51,"482 Adams St, Seattle, WA 98101" +187252,AAA Batteries (4-pack),1,2.99,04/26/19 11:39,"172 Washington St, Dallas, TX 75001" +187253,Lightning Charging Cable,1,14.95,04/23/19 13:38,"992 Lakeview St, Los Angeles, CA 90001" +187254,27in FHD Monitor,1,149.99,04/26/19 11:26,"793 Johnson St, Portland, OR 97035" +187255,Flatscreen TV,1,300,04/18/19 12:17,"857 4th St, San Francisco, CA 94016" +187256,Bose SoundSport Headphones,1,99.99,04/02/19 21:11,"166 Wilson St, Boston, MA 02215" +187257,Wired Headphones,1,11.99,04/04/19 01:27,"430 Willow St, Austin, TX 73301" +187258,Flatscreen TV,1,300,04/02/19 20:05,"758 11th St, Austin, TX 73301" +187259,Flatscreen TV,1,300,04/01/19 14:23,"380 Pine St, San Francisco, CA 94016" +187260,Wired Headphones,1,11.99,04/10/19 20:28,"341 2nd St, Atlanta, GA 30301" +187261,Lightning Charging Cable,2,14.95,04/25/19 13:18,"126 Madison St, Boston, MA 02215" +187262,AAA Batteries (4-pack),1,2.99,04/29/19 13:08,"671 Madison St, New York City, NY 10001" +187263,Flatscreen TV,1,300,04/29/19 08:10,"572 14th St, New York City, NY 10001" +187264,Lightning Charging Cable,1,14.95,04/21/19 12:11,"963 Madison St, San Francisco, CA 94016" +187265,Apple Airpods Headphones,1,150,04/04/19 11:31,"642 6th St, Boston, MA 02215" +187266,Apple Airpods Headphones,1,150,04/08/19 16:06,"750 Chestnut St, Los Angeles, CA 90001" +187267,AA Batteries (4-pack),2,3.84,04/23/19 15:23,"927 Jackson St, Dallas, TX 75001" +187268,Macbook Pro Laptop,1,1700,04/28/19 16:41,"14 Pine St, Boston, MA 02215" +187269,AA Batteries (4-pack),1,3.84,04/13/19 00:17,"246 2nd St, San Francisco, CA 94016" +187270,Wired Headphones,1,11.99,04/08/19 13:42,"314 4th St, Los Angeles, CA 90001" +187271,Lightning Charging Cable,1,14.95,04/14/19 00:28,"564 2nd St, Atlanta, GA 30301" +187272,27in FHD Monitor,1,149.99,04/23/19 16:19,"960 Main St, Boston, MA 02215" +187273,AA Batteries (4-pack),4,3.84,04/01/19 17:48,"306 9th St, San Francisco, CA 94016" +187274,27in 4K Gaming Monitor,1,389.99,04/17/19 21:29,"588 North St, Los Angeles, CA 90001" +187275,Macbook Pro Laptop,1,1700,04/08/19 20:11,"877 Cedar St, New York City, NY 10001" +187276,Wired Headphones,1,11.99,04/06/19 21:53,"881 Chestnut St, San Francisco, CA 94016" +187277,27in 4K Gaming Monitor,1,389.99,04/28/19 11:33,"766 Ridge St, San Francisco, CA 94016" +187278,Flatscreen TV,1,300,04/06/19 13:23,"348 Madison St, New York City, NY 10001" +187279,Lightning Charging Cable,1,14.95,04/10/19 12:20,"858 Elm St, Dallas, TX 75001" +187280,USB-C Charging Cable,1,11.95,04/23/19 20:44,"444 Center St, Seattle, WA 98101" +187281,AAA Batteries (4-pack),2,2.99,04/11/19 21:51,"604 Pine St, New York City, NY 10001" +187282,AA Batteries (4-pack),1,3.84,04/13/19 14:50,"960 2nd St, San Francisco, CA 94016" +187283,27in FHD Monitor,1,149.99,04/18/19 10:59,"350 6th St, New York City, NY 10001" +187284,AA Batteries (4-pack),1,3.84,04/17/19 17:36,"117 North St, Dallas, TX 75001" +187285,LG Dryer,1,600.0,04/28/19 00:48,"740 Maple St, San Francisco, CA 94016" +187286,34in Ultrawide Monitor,1,379.99,04/20/19 05:12,"713 2nd St, Seattle, WA 98101" +187287,Lightning Charging Cable,1,14.95,04/30/19 10:29,"171 4th St, Los Angeles, CA 90001" +187288,34in Ultrawide Monitor,1,379.99,04/29/19 20:19,"884 4th St, San Francisco, CA 94016" +187288,AAA Batteries (4-pack),1,2.99,04/29/19 20:19,"884 4th St, San Francisco, CA 94016" +187289,Wired Headphones,1,11.99,04/05/19 22:27,"696 Hickory St, New York City, NY 10001" +187290,27in 4K Gaming Monitor,1,389.99,04/12/19 14:53,"828 Park St, Austin, TX 73301" +187291,Bose SoundSport Headphones,1,99.99,04/03/19 13:00,"635 Walnut St, San Francisco, CA 94016" +187292,AAA Batteries (4-pack),2,2.99,04/13/19 15:40,"555 7th St, Boston, MA 02215" +187293,ThinkPad Laptop,1,999.99,04/13/19 14:53,"670 12th St, Atlanta, GA 30301" +187294,AAA Batteries (4-pack),2,2.99,04/22/19 17:19,"883 12th St, San Francisco, CA 94016" +187295,27in FHD Monitor,1,149.99,04/25/19 16:21,"720 Sunset St, San Francisco, CA 94016" +187296,Google Phone,1,600,04/05/19 15:46,"196 12th St, Dallas, TX 75001" +187297,Bose SoundSport Headphones,1,99.99,04/12/19 14:41,"669 Cedar St, Atlanta, GA 30301" +187298,ThinkPad Laptop,1,999.99,04/12/19 01:53,"60 Cherry St, San Francisco, CA 94016" +187299,AAA Batteries (4-pack),2,2.99,04/29/19 18:46,"787 Lincoln St, Los Angeles, CA 90001" +187300,Lightning Charging Cable,1,14.95,04/28/19 15:23,"329 Church St, Dallas, TX 75001" +187301,Lightning Charging Cable,1,14.95,04/18/19 11:50,"520 Hill St, New York City, NY 10001" +187302,Apple Airpods Headphones,1,150,04/25/19 12:48,"706 Church St, Los Angeles, CA 90001" +187303,Bose SoundSport Headphones,1,99.99,04/15/19 12:10,"223 14th St, Austin, TX 73301" +187304,USB-C Charging Cable,1,11.95,04/23/19 22:02,"393 2nd St, Los Angeles, CA 90001" +187305,Apple Airpods Headphones,1,150,04/06/19 14:32,"881 Maple St, San Francisco, CA 94016" +187306,AA Batteries (4-pack),2,3.84,04/04/19 09:33,"607 14th St, New York City, NY 10001" +187307,Apple Airpods Headphones,1,150,04/05/19 23:50,"854 Center St, Austin, TX 73301" +187308,Lightning Charging Cable,1,14.95,04/28/19 16:07,"406 Dogwood St, New York City, NY 10001" +187309,USB-C Charging Cable,1,11.95,04/22/19 12:27,"539 Highland St, New York City, NY 10001" +187310,USB-C Charging Cable,1,11.95,04/27/19 20:31,"151 5th St, San Francisco, CA 94016" +187311,Flatscreen TV,1,300,04/19/19 11:13,"70 5th St, San Francisco, CA 94016" +187312,AA Batteries (4-pack),1,3.84,04/21/19 15:58,"152 Hill St, Portland, OR 97035" +187313,Bose SoundSport Headphones,1,99.99,04/28/19 15:34,"249 Johnson St, Portland, OR 97035" +187314,Lightning Charging Cable,1,14.95,04/29/19 22:03,"121 Dogwood St, Seattle, WA 98101" +187315,Vareebadd Phone,1,400,04/13/19 20:50,"469 Sunset St, Boston, MA 02215" +187316,iPhone,1,700,04/08/19 09:59,"533 5th St, Portland, ME 04101" +187316,Lightning Charging Cable,1,14.95,04/08/19 09:59,"533 5th St, Portland, ME 04101" +187317,Lightning Charging Cable,1,14.95,04/23/19 12:51,"822 Ridge St, New York City, NY 10001" +187318,Macbook Pro Laptop,1,1700,04/17/19 09:36,"695 Cherry St, Austin, TX 73301" +187319,Google Phone,1,600,04/24/19 12:34,"358 11th St, Los Angeles, CA 90001" +187319,USB-C Charging Cable,1,11.95,04/24/19 12:34,"358 11th St, Los Angeles, CA 90001" +187320,Wired Headphones,1,11.99,04/02/19 09:03,"832 South St, San Francisco, CA 94016" +187321,Flatscreen TV,1,300,04/14/19 21:55,"529 Chestnut St, Seattle, WA 98101" +187322,AA Batteries (4-pack),1,3.84,04/18/19 21:58,"717 Hickory St, Atlanta, GA 30301" +187323,AAA Batteries (4-pack),1,2.99,04/10/19 22:47,"131 North St, Atlanta, GA 30301" +187324,Macbook Pro Laptop,1,1700,04/15/19 16:27,"617 Lake St, Los Angeles, CA 90001" +187325,AAA Batteries (4-pack),1,2.99,04/12/19 08:41,"768 Jackson St, San Francisco, CA 94016" +187326,AAA Batteries (4-pack),2,2.99,04/28/19 11:06,"589 Cherry St, Boston, MA 02215" +187327,27in FHD Monitor,1,149.99,04/13/19 17:03,"789 Highland St, Boston, MA 02215" +187328,iPhone,1,700,04/14/19 15:02,"294 Dogwood St, San Francisco, CA 94016" +187329,AA Batteries (4-pack),1,3.84,04/20/19 00:56,"316 6th St, Portland, OR 97035" +187329,Lightning Charging Cable,1,14.95,04/20/19 00:56,"316 6th St, Portland, OR 97035" +187330,iPhone,1,700,04/09/19 15:09,"414 Ridge St, Portland, OR 97035" +187331,20in Monitor,1,109.99,04/13/19 09:52,"649 Church St, Seattle, WA 98101" +187332,Lightning Charging Cable,1,14.95,04/28/19 15:06,"139 Lake St, Seattle, WA 98101" +187333,AA Batteries (4-pack),2,3.84,04/30/19 18:48,"226 Forest St, Portland, OR 97035" +187334,34in Ultrawide Monitor,1,379.99,04/19/19 13:38,"250 Lake St, San Francisco, CA 94016" +187335,AA Batteries (4-pack),3,3.84,04/12/19 00:41,"620 Sunset St, San Francisco, CA 94016" +187336,Google Phone,1,600,04/09/19 17:16,"661 North St, San Francisco, CA 94016" +187336,Bose SoundSport Headphones,1,99.99,04/09/19 17:16,"661 North St, San Francisco, CA 94016" +187337,AAA Batteries (4-pack),2,2.99,04/24/19 15:19,"295 14th St, San Francisco, CA 94016" +187338,USB-C Charging Cable,1,11.95,04/13/19 22:52,"359 9th St, Atlanta, GA 30301" +187339,20in Monitor,1,109.99,04/08/19 16:13,"73 Pine St, Boston, MA 02215" +187340,USB-C Charging Cable,1,11.95,04/16/19 15:57,"654 6th St, Portland, ME 04101" +187341,Wired Headphones,1,11.99,04/29/19 23:35,"439 Maple St, San Francisco, CA 94016" +187342,27in FHD Monitor,1,149.99,04/08/19 14:44,"475 Elm St, Los Angeles, CA 90001" +187343,ThinkPad Laptop,1,999.99,04/11/19 22:36,"895 Willow St, Dallas, TX 75001" +187344,Lightning Charging Cable,1,14.95,04/09/19 08:19,"580 Elm St, Los Angeles, CA 90001" +187345,AA Batteries (4-pack),1,3.84,04/14/19 12:00,"556 North St, San Francisco, CA 94016" +187346,Wired Headphones,1,11.99,04/03/19 15:40,"360 Dogwood St, Atlanta, GA 30301" +187347,AAA Batteries (4-pack),2,2.99,04/21/19 10:39,"440 Jefferson St, Austin, TX 73301" +187348,Wired Headphones,1,11.99,04/16/19 11:26,"291 Forest St, San Francisco, CA 94016" +187349,iPhone,1,700,04/15/19 17:39,"120 Ridge St, Seattle, WA 98101" +187350,Wired Headphones,1,11.99,04/01/19 12:35,"320 Highland St, Boston, MA 02215" +187351,Vareebadd Phone,1,400,04/13/19 13:54,"841 Park St, San Francisco, CA 94016" +187352,20in Monitor,1,109.99,04/30/19 07:05,"24 Johnson St, Boston, MA 02215" +187353,34in Ultrawide Monitor,1,379.99,04/20/19 17:21,"91 6th St, San Francisco, CA 94016" +187354,Bose SoundSport Headphones,1,99.99,04/26/19 12:58,"768 Lake St, New York City, NY 10001" +187355,27in FHD Monitor,1,149.99,04/09/19 07:59,"52 Forest St, Los Angeles, CA 90001" +187356,USB-C Charging Cable,1,11.95,04/08/19 07:55,"324 Jefferson St, Boston, MA 02215" +187357,AAA Batteries (4-pack),3,2.99,04/07/19 17:36,"320 Highland St, New York City, NY 10001" +187358,Wired Headphones,2,11.99,04/26/19 11:26,"449 Pine St, San Francisco, CA 94016" +187359,Flatscreen TV,1,300,04/27/19 23:51,"865 Lakeview St, Seattle, WA 98101" +187360,iPhone,1,700,04/01/19 23:54,"770 Center St, Portland, OR 97035" +187361,USB-C Charging Cable,1,11.95,04/06/19 19:06,"841 North St, San Francisco, CA 94016" +187362,Macbook Pro Laptop,1,1700,04/11/19 19:59,"352 1st St, Dallas, TX 75001" +187363,USB-C Charging Cable,1,11.95,04/03/19 23:13,"176 North St, San Francisco, CA 94016" +187364,27in 4K Gaming Monitor,1,389.99,04/13/19 14:32,"809 9th St, New York City, NY 10001" +187365,Flatscreen TV,1,300,04/07/19 15:51,"757 Willow St, Portland, OR 97035" +187366,AAA Batteries (4-pack),1,2.99,04/08/19 00:18,"58 9th St, New York City, NY 10001" +187366,AAA Batteries (4-pack),1,2.99,04/08/19 00:18,"58 9th St, New York City, NY 10001" +187367,iPhone,1,700,04/23/19 19:38,"275 North St, Seattle, WA 98101" +187367,Apple Airpods Headphones,1,150,04/23/19 19:38,"275 North St, Seattle, WA 98101" +187368,20in Monitor,1,109.99,04/30/19 21:35,"588 Forest St, San Francisco, CA 94016" +187369,Macbook Pro Laptop,1,1700,04/22/19 15:01,"745 Walnut St, Boston, MA 02215" +187370,AAA Batteries (4-pack),4,2.99,04/26/19 12:18,"145 Spruce St, San Francisco, CA 94016" +187371,Apple Airpods Headphones,1,150,04/04/19 18:54,"673 Sunset St, Portland, OR 97035" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +187372,AA Batteries (4-pack),1,3.84,04/20/19 14:20,"234 Cherry St, San Francisco, CA 94016" +187373,USB-C Charging Cable,1,11.95,04/16/19 21:48,"371 12th St, San Francisco, CA 94016" +187374,Apple Airpods Headphones,1,150,04/07/19 17:15,"772 Willow St, San Francisco, CA 94016" +187375,USB-C Charging Cable,1,11.95,04/23/19 18:16,"913 Lakeview St, Austin, TX 73301" +187376,iPhone,1,700,04/26/19 23:08,"351 Park St, San Francisco, CA 94016" +187377,iPhone,1,700,04/08/19 11:14,"300 Lake St, Austin, TX 73301" +187378,Flatscreen TV,1,300,04/22/19 13:03,"105 Park St, Atlanta, GA 30301" +187379,27in 4K Gaming Monitor,1,389.99,04/13/19 06:02,"867 Washington St, Boston, MA 02215" +187380,27in 4K Gaming Monitor,1,389.99,04/14/19 11:22,"230 Maple St, Atlanta, GA 30301" +187381,AA Batteries (4-pack),1,3.84,04/07/19 15:53,"772 Hill St, Los Angeles, CA 90001" +187382,27in FHD Monitor,1,149.99,04/21/19 18:17,"98 Walnut St, San Francisco, CA 94016" +187383,Wired Headphones,1,11.99,04/19/19 19:58,"812 Wilson St, San Francisco, CA 94016" +187384,27in FHD Monitor,1,149.99,04/26/19 17:20,"140 Walnut St, Boston, MA 02215" +187385,USB-C Charging Cable,1,11.95,04/30/19 21:57,"275 Adams St, Atlanta, GA 30301" +187386,Lightning Charging Cable,1,14.95,04/06/19 18:14,"288 South St, Los Angeles, CA 90001" +187387,AA Batteries (4-pack),1,3.84,04/04/19 18:39,"26 10th St, San Francisco, CA 94016" +187388,AAA Batteries (4-pack),1,2.99,04/27/19 17:04,"725 Dogwood St, Los Angeles, CA 90001" +187389,Wired Headphones,1,11.99,04/10/19 10:41,"402 Center St, New York City, NY 10001" +187390,AA Batteries (4-pack),1,3.84,04/02/19 18:24,"436 Walnut St, Dallas, TX 75001" +187391,Flatscreen TV,1,300,04/08/19 10:50,"184 Lincoln St, Seattle, WA 98101" +187392,Wired Headphones,1,11.99,04/12/19 17:49,"644 10th St, New York City, NY 10001" +187393,AAA Batteries (4-pack),3,2.99,04/22/19 11:56,"99 Adams St, Boston, MA 02215" +187394,Apple Airpods Headphones,1,150,04/08/19 14:12,"410 River St, Los Angeles, CA 90001" +187395,Wired Headphones,1,11.99,04/20/19 17:03,"263 Dogwood St, San Francisco, CA 94016" +187396,USB-C Charging Cable,1,11.95,04/05/19 22:22,"129 Lakeview St, San Francisco, CA 94016" +187397,iPhone,1,700,04/24/19 06:28,"26 North St, Los Angeles, CA 90001" +187398,Lightning Charging Cable,1,14.95,04/20/19 13:28,"194 Hill St, Boston, MA 02215" +187399,Lightning Charging Cable,1,14.95,04/27/19 07:44,"48 10th St, Seattle, WA 98101" +187400,Lightning Charging Cable,1,14.95,04/10/19 19:54,"460 Lake St, San Francisco, CA 94016" +187401,Wired Headphones,1,11.99,04/26/19 19:04,"911 Dogwood St, Seattle, WA 98101" +187402,ThinkPad Laptop,1,999.99,04/15/19 14:24,"251 9th St, San Francisco, CA 94016" +187403,Apple Airpods Headphones,1,150,04/28/19 17:45,"236 12th St, San Francisco, CA 94016" +187404,LG Dryer,1,600.0,04/13/19 19:34,"166 Spruce St, Atlanta, GA 30301" +187404,Bose SoundSport Headphones,1,99.99,04/13/19 19:34,"166 Spruce St, Atlanta, GA 30301" +187405,Macbook Pro Laptop,1,1700,04/03/19 15:04,"946 North St, San Francisco, CA 94016" +187406,USB-C Charging Cable,1,11.95,04/02/19 15:53,"32 4th St, Los Angeles, CA 90001" +187407,Flatscreen TV,1,300,04/02/19 20:25,"704 Washington St, New York City, NY 10001" +187408,Wired Headphones,1,11.99,04/01/19 10:08,"695 7th St, Boston, MA 02215" +187409,Wired Headphones,1,11.99,04/21/19 20:44,"811 Adams St, New York City, NY 10001" +187410,USB-C Charging Cable,1,11.95,04/13/19 09:29,"855 5th St, Dallas, TX 75001" +187411,ThinkPad Laptop,1,999.99,04/29/19 19:08,"363 Lincoln St, Boston, MA 02215" +187412,Flatscreen TV,1,300,04/14/19 20:45,"327 Dogwood St, Portland, OR 97035" +187413,Google Phone,1,600,04/22/19 17:50,"229 Lake St, New York City, NY 10001" +187414,Wired Headphones,2,11.99,04/23/19 09:16,"462 Center St, Austin, TX 73301" +187415,Vareebadd Phone,1,400,04/26/19 18:22,"903 4th St, Dallas, TX 75001" +187416,34in Ultrawide Monitor,1,379.99,04/17/19 06:21,"789 Cedar St, San Francisco, CA 94016" +187417,AAA Batteries (4-pack),1,2.99,04/07/19 13:00,"939 8th St, Atlanta, GA 30301" +187418,Bose SoundSport Headphones,1,99.99,04/07/19 19:11,"528 9th St, Dallas, TX 75001" +187419,AA Batteries (4-pack),1,3.84,04/15/19 14:39,"857 12th St, San Francisco, CA 94016" +187420,Bose SoundSport Headphones,1,99.99,04/06/19 18:02,"587 12th St, New York City, NY 10001" +187421,27in FHD Monitor,1,149.99,04/08/19 21:47,"163 2nd St, Atlanta, GA 30301" +187422,34in Ultrawide Monitor,1,379.99,04/23/19 15:12,"117 North St, New York City, NY 10001" +187422,Flatscreen TV,1,300,04/23/19 15:12,"117 North St, New York City, NY 10001" +187423,Macbook Pro Laptop,1,1700,04/20/19 11:16,"19 Elm St, New York City, NY 10001" +187424,Lightning Charging Cable,1,14.95,04/08/19 16:20,"418 11th St, San Francisco, CA 94016" +187425,AAA Batteries (4-pack),1,2.99,04/22/19 18:48,"276 Dogwood St, Dallas, TX 75001" +187426,Apple Airpods Headphones,1,150,04/23/19 13:51,"326 8th St, Los Angeles, CA 90001" +187427,USB-C Charging Cable,1,11.95,04/02/19 16:15,"902 14th St, Dallas, TX 75001" +187428,27in 4K Gaming Monitor,1,389.99,04/28/19 11:48,"702 Pine St, San Francisco, CA 94016" +187429,Apple Airpods Headphones,1,150,04/03/19 14:48,"736 Lincoln St, San Francisco, CA 94016" +187430,Lightning Charging Cable,2,14.95,04/11/19 10:34,"207 Sunset St, San Francisco, CA 94016" +187431,Apple Airpods Headphones,1,150,04/20/19 20:08,"80 7th St, Dallas, TX 75001" +187432,Wired Headphones,1,11.99,04/25/19 21:47,"287 Hickory St, Atlanta, GA 30301" +187433,Google Phone,1,600,04/24/19 13:29,"35 Washington St, Boston, MA 02215" +187434,27in 4K Gaming Monitor,1,389.99,04/02/19 19:27,"513 Walnut St, Los Angeles, CA 90001" +187435,Vareebadd Phone,1,400,04/26/19 14:50,"159 13th St, Los Angeles, CA 90001" +187436,Lightning Charging Cable,1,14.95,04/30/19 12:07,"10 Pine St, Atlanta, GA 30301" +187437,Macbook Pro Laptop,1,1700,04/14/19 12:31,"596 12th St, Los Angeles, CA 90001" +187438,27in FHD Monitor,1,149.99,04/19/19 13:06,"519 Wilson St, San Francisco, CA 94016" +187439,Apple Airpods Headphones,1,150,04/29/19 14:49,"509 North St, Portland, OR 97035" +187440,AA Batteries (4-pack),2,3.84,04/09/19 19:46,"813 12th St, San Francisco, CA 94016" +187441,Wired Headphones,1,11.99,04/25/19 16:26,"171 Lincoln St, Boston, MA 02215" +187442,Lightning Charging Cable,1,14.95,04/10/19 13:45,"645 Highland St, Los Angeles, CA 90001" +187443,Flatscreen TV,1,300,04/18/19 01:59,"978 Forest St, San Francisco, CA 94016" +187444,27in 4K Gaming Monitor,1,389.99,04/04/19 21:57,"923 Lincoln St, Los Angeles, CA 90001" +187445,Macbook Pro Laptop,1,1700,04/07/19 15:21,"456 Chestnut St, Austin, TX 73301" +187446,27in 4K Gaming Monitor,1,389.99,04/08/19 09:36,"443 Wilson St, San Francisco, CA 94016" +187447,Wired Headphones,1,11.99,04/11/19 00:58,"787 Forest St, Boston, MA 02215" +187448,AAA Batteries (4-pack),2,2.99,04/18/19 17:55,"740 Pine St, Atlanta, GA 30301" +187449,Apple Airpods Headphones,1,150,04/13/19 13:15,"146 7th St, Atlanta, GA 30301" +187450,Apple Airpods Headphones,1,150,04/02/19 09:30,"556 Hickory St, San Francisco, CA 94016" +187451,Flatscreen TV,1,300,04/14/19 16:11,"75 Lakeview St, Dallas, TX 75001" +187452,Lightning Charging Cable,1,14.95,04/23/19 02:04,"956 Main St, Los Angeles, CA 90001" +187453,AA Batteries (4-pack),1,3.84,04/25/19 11:52,"416 5th St, Seattle, WA 98101" +187454,AA Batteries (4-pack),1,3.84,04/09/19 21:53,"922 Johnson St, San Francisco, CA 94016" +187455,Wired Headphones,1,11.99,04/02/19 12:00,"130 Cedar St, Portland, OR 97035" +187456,Google Phone,1,600,04/09/19 09:59,"69 7th St, Atlanta, GA 30301" +187457,20in Monitor,1,109.99,04/21/19 12:50,"772 4th St, Los Angeles, CA 90001" +187458,iPhone,1,700,04/16/19 13:14,"760 8th St, New York City, NY 10001" +187459,Wired Headphones,1,11.99,04/16/19 13:45,"202 Willow St, San Francisco, CA 94016" +187460,AAA Batteries (4-pack),1,2.99,04/15/19 21:38,"327 Park St, San Francisco, CA 94016" +187461,USB-C Charging Cable,1,11.95,04/04/19 13:09,"879 7th St, Seattle, WA 98101" +187462,iPhone,1,700,04/03/19 11:11,"451 2nd St, San Francisco, CA 94016" +187462,Apple Airpods Headphones,1,150,04/03/19 11:11,"451 2nd St, San Francisco, CA 94016" +187463,34in Ultrawide Monitor,1,379.99,04/12/19 10:38,"894 Maple St, Portland, OR 97035" +187464,Bose SoundSport Headphones,1,99.99,04/17/19 17:43,"852 9th St, Portland, OR 97035" +187465,Apple Airpods Headphones,1,150,04/19/19 11:06,"361 Meadow St, Austin, TX 73301" +187466,AAA Batteries (4-pack),2,2.99,04/16/19 12:39,"968 Dogwood St, Portland, OR 97035" +187467,Lightning Charging Cable,1,14.95,04/08/19 15:26,"671 8th St, Dallas, TX 75001" +187468,AA Batteries (4-pack),2,3.84,04/01/19 09:53,"460 Lincoln St, Seattle, WA 98101" +187469,Lightning Charging Cable,1,14.95,04/26/19 19:13,"555 Main St, San Francisco, CA 94016" +187470,Flatscreen TV,1,300,04/03/19 18:13,"462 Maple St, Austin, TX 73301" +187471,Wired Headphones,1,11.99,04/22/19 14:19,"668 Pine St, New York City, NY 10001" +187472,Apple Airpods Headphones,1,150,04/05/19 15:44,"230 Sunset St, Portland, OR 97035" +187473,Macbook Pro Laptop,1,1700,04/05/19 12:43,"826 12th St, Los Angeles, CA 90001" +187474,AA Batteries (4-pack),1,3.84,04/05/19 14:52,"368 North St, San Francisco, CA 94016" +187475,AAA Batteries (4-pack),3,2.99,04/24/19 19:18,"78 Meadow St, Boston, MA 02215" +187476,Apple Airpods Headphones,1,150,04/19/19 19:51,"391 South St, New York City, NY 10001" +187477,AAA Batteries (4-pack),4,2.99,04/25/19 22:02,"175 7th St, San Francisco, CA 94016" +187478,USB-C Charging Cable,1,11.95,04/20/19 11:29,"412 Meadow St, Seattle, WA 98101" +187479,Lightning Charging Cable,1,14.95,04/28/19 15:34,"909 Highland St, San Francisco, CA 94016" +187480,Lightning Charging Cable,1,14.95,04/29/19 09:12,"162 Main St, Boston, MA 02215" +187481,Lightning Charging Cable,1,14.95,04/06/19 21:20,"72 9th St, San Francisco, CA 94016" +187482,Wired Headphones,1,11.99,04/18/19 20:59,"211 9th St, Boston, MA 02215" +187483,Google Phone,1,600,04/22/19 00:55,"809 Park St, Seattle, WA 98101" +187484,Bose SoundSport Headphones,1,99.99,04/03/19 08:39,"473 Hickory St, San Francisco, CA 94016" +187485,Lightning Charging Cable,1,14.95,04/08/19 13:33,"486 Washington St, Dallas, TX 75001" +187486,Google Phone,1,600,04/18/19 13:38,"973 Lake St, Seattle, WA 98101" +187486,USB-C Charging Cable,1,11.95,04/18/19 13:38,"973 Lake St, Seattle, WA 98101" +187487,Lightning Charging Cable,1,14.95,04/15/19 15:33,"882 14th St, Los Angeles, CA 90001" +187488,20in Monitor,1,109.99,04/16/19 04:00,"590 1st St, San Francisco, CA 94016" +187489,AAA Batteries (4-pack),4,2.99,04/27/19 06:45,"475 Highland St, San Francisco, CA 94016" +187490,AAA Batteries (4-pack),2,2.99,04/10/19 20:13,"739 Main St, San Francisco, CA 94016" +187491,AA Batteries (4-pack),2,3.84,04/16/19 08:59,"11 14th St, San Francisco, CA 94016" +187492,Wired Headphones,1,11.99,04/24/19 14:14,"186 Jefferson St, New York City, NY 10001" +187493,Wired Headphones,2,11.99,04/28/19 09:55,"304 Main St, Seattle, WA 98101" +187494,AAA Batteries (4-pack),1,2.99,04/12/19 16:00,"167 5th St, Los Angeles, CA 90001" +187495,AAA Batteries (4-pack),1,2.99,04/25/19 14:47,"374 Hickory St, New York City, NY 10001" +187496,Apple Airpods Headphones,1,150,04/29/19 22:06,"391 North St, Dallas, TX 75001" +187497,Wired Headphones,1,11.99,04/18/19 07:49,"502 Washington St, Seattle, WA 98101" +187498,Bose SoundSport Headphones,1,99.99,04/16/19 15:15,"981 Jefferson St, Los Angeles, CA 90001" +187499,Lightning Charging Cable,1,14.95,04/10/19 22:54,"542 2nd St, Atlanta, GA 30301" +187500,ThinkPad Laptop,1,999.99,04/24/19 11:21,"160 South St, Los Angeles, CA 90001" +187501,Lightning Charging Cable,1,14.95,04/30/19 23:41,"872 14th St, San Francisco, CA 94016" +187502,Apple Airpods Headphones,1,150,04/30/19 04:02,"290 North St, Boston, MA 02215" +187503,Apple Airpods Headphones,1,150,04/23/19 17:33,"242 Cherry St, New York City, NY 10001" +187504,USB-C Charging Cable,1,11.95,04/08/19 11:07,"980 Johnson St, Austin, TX 73301" +187505,Wired Headphones,1,11.99,04/27/19 15:07,"372 Meadow St, Portland, OR 97035" +187506,27in FHD Monitor,1,149.99,04/11/19 22:18,"433 Forest St, Los Angeles, CA 90001" +187507,Wired Headphones,1,11.99,04/10/19 17:54,"238 Adams St, Dallas, TX 75001" +187508,iPhone,1,700,04/05/19 19:07,"749 Cedar St, Atlanta, GA 30301" +187508,Lightning Charging Cable,1,14.95,04/05/19 19:07,"749 Cedar St, Atlanta, GA 30301" +187509,USB-C Charging Cable,1,11.95,04/22/19 23:11,"909 Johnson St, San Francisco, CA 94016" +187510,27in FHD Monitor,1,149.99,04/29/19 19:59,"172 Ridge St, San Francisco, CA 94016" +187511,Apple Airpods Headphones,1,150,04/15/19 13:57,"272 Madison St, New York City, NY 10001" +187512,Wired Headphones,1,11.99,04/24/19 11:08,"383 Madison St, Los Angeles, CA 90001" +187513,USB-C Charging Cable,1,11.95,04/22/19 22:39,"253 Adams St, Boston, MA 02215" +187514,27in 4K Gaming Monitor,1,389.99,04/19/19 13:03,"471 6th St, Seattle, WA 98101" +187515,Google Phone,1,600,04/13/19 21:02,"457 River St, San Francisco, CA 94016" +187516,USB-C Charging Cable,1,11.95,04/07/19 20:16,"950 Pine St, San Francisco, CA 94016" +187517,AA Batteries (4-pack),1,3.84,04/26/19 21:05,"227 Cherry St, Boston, MA 02215" +187518,AA Batteries (4-pack),1,3.84,04/12/19 23:37,"639 South St, Austin, TX 73301" +187519,Wired Headphones,1,11.99,04/15/19 11:18,"544 Highland St, Los Angeles, CA 90001" +187520,Bose SoundSport Headphones,1,99.99,04/18/19 11:51,"225 Lincoln St, New York City, NY 10001" +187521,USB-C Charging Cable,1,11.95,04/11/19 05:34,"478 Spruce St, Los Angeles, CA 90001" +187522,27in 4K Gaming Monitor,1,389.99,04/11/19 20:33,"624 11th St, Los Angeles, CA 90001" +187523,34in Ultrawide Monitor,1,379.99,04/03/19 11:57,"484 5th St, Portland, OR 97035" +187524,AA Batteries (4-pack),1,3.84,04/20/19 23:05,"567 Cedar St, San Francisco, CA 94016" +187525,Lightning Charging Cable,1,14.95,04/09/19 11:56,"866 7th St, Dallas, TX 75001" +187526,USB-C Charging Cable,1,11.95,04/01/19 10:56,"161 Hill St, Los Angeles, CA 90001" +187527,Lightning Charging Cable,1,14.95,04/25/19 11:43,"434 Highland St, Dallas, TX 75001" +187528,USB-C Charging Cable,1,11.95,04/27/19 09:14,"265 Washington St, San Francisco, CA 94016" +187529,Bose SoundSport Headphones,1,99.99,04/05/19 15:21,"227 Walnut St, Dallas, TX 75001" +187530,27in 4K Gaming Monitor,1,389.99,04/08/19 22:20,"532 West St, Dallas, TX 75001" +187531,AA Batteries (4-pack),1,3.84,04/12/19 11:27,"965 12th St, New York City, NY 10001" +187532,AAA Batteries (4-pack),1,2.99,04/21/19 10:28,"372 14th St, Seattle, WA 98101" +187533,34in Ultrawide Monitor,1,379.99,04/14/19 19:37,"602 Elm St, Los Angeles, CA 90001" +187534,Wired Headphones,2,11.99,04/21/19 04:04,"163 Cedar St, San Francisco, CA 94016" +187535,27in FHD Monitor,1,149.99,04/23/19 06:12,"933 1st St, Los Angeles, CA 90001" +187536,Macbook Pro Laptop,1,1700,04/20/19 16:48,"694 Main St, Seattle, WA 98101" +187537,Wired Headphones,1,11.99,04/07/19 07:37,"645 Park St, Los Angeles, CA 90001" +187538,34in Ultrawide Monitor,1,379.99,04/01/19 06:16,"882 Center St, Los Angeles, CA 90001" +187539,iPhone,1,700,04/16/19 01:56,"760 2nd St, Dallas, TX 75001" +187539,Lightning Charging Cable,1,14.95,04/16/19 01:56,"760 2nd St, Dallas, TX 75001" +187540,27in FHD Monitor,1,149.99,04/26/19 21:12,"337 Washington St, New York City, NY 10001" +187541,34in Ultrawide Monitor,1,379.99,04/20/19 12:21,"714 Lake St, Atlanta, GA 30301" +187542,USB-C Charging Cable,1,11.95,04/21/19 20:16,"773 South St, Los Angeles, CA 90001" +187543,Google Phone,1,600,04/22/19 12:07,"785 Pine St, Los Angeles, CA 90001" +187544,Wired Headphones,2,11.99,04/16/19 12:55,"431 Highland St, Atlanta, GA 30301" +187545,Wired Headphones,1,11.99,04/11/19 20:06,"742 Dogwood St, Austin, TX 73301" +187546,Wired Headphones,1,11.99,04/24/19 21:16,"884 Hickory St, Austin, TX 73301" +187547,Wired Headphones,1,11.99,04/12/19 16:38,"137 Pine St, Austin, TX 73301" +187548,AAA Batteries (4-pack),2,2.99,04/20/19 16:37,"233 10th St, San Francisco, CA 94016" +187549,34in Ultrawide Monitor,1,379.99,04/28/19 18:41,"413 Hickory St, Los Angeles, CA 90001" +187550,AA Batteries (4-pack),1,3.84,04/04/19 14:54,"679 Spruce St, Austin, TX 73301" +187551,AAA Batteries (4-pack),1,2.99,04/16/19 22:31,"769 River St, San Francisco, CA 94016" +187552,Bose SoundSport Headphones,1,99.99,04/16/19 19:10,"541 Madison St, New York City, NY 10001" +187553,Bose SoundSport Headphones,1,99.99,04/07/19 06:22,"591 Hill St, New York City, NY 10001" +187554,27in 4K Gaming Monitor,1,389.99,04/26/19 21:59,"173 Jefferson St, Atlanta, GA 30301" +187555,AA Batteries (4-pack),1,3.84,04/10/19 17:37,"114 Elm St, Boston, MA 02215" +187556,AA Batteries (4-pack),2,3.84,04/29/19 16:46,"257 Spruce St, San Francisco, CA 94016" +187557,AAA Batteries (4-pack),1,2.99,04/08/19 17:07,"273 Center St, Los Angeles, CA 90001" +187558,Apple Airpods Headphones,1,150,04/19/19 15:30,"330 Main St, Portland, OR 97035" +187559,USB-C Charging Cable,1,11.95,04/20/19 16:12,"84 Jackson St, Dallas, TX 75001" +187560,USB-C Charging Cable,1,11.95,04/02/19 23:24,"349 11th St, Boston, MA 02215" +187561,USB-C Charging Cable,1,11.95,04/02/19 12:59,"422 Jackson St, Los Angeles, CA 90001" +187562,LG Dryer,1,600.0,04/30/19 22:13,"305 7th St, San Francisco, CA 94016" +187563,20in Monitor,1,109.99,04/01/19 17:08,"238 10th St, Atlanta, GA 30301" +187564,Apple Airpods Headphones,1,150,04/08/19 13:33,"530 Johnson St, San Francisco, CA 94016" +187565,34in Ultrawide Monitor,1,379.99,04/04/19 16:33,"186 Maple St, Los Angeles, CA 90001" +187566,Apple Airpods Headphones,1,150,04/23/19 12:17,"619 South St, Los Angeles, CA 90001" +187567,LG Washing Machine,1,600.0,04/29/19 14:09,"582 Johnson St, Los Angeles, CA 90001" +187568,Wired Headphones,1,11.99,04/28/19 18:41,"945 River St, San Francisco, CA 94016" +187569,USB-C Charging Cable,1,11.95,04/07/19 12:41,"29 9th St, Seattle, WA 98101" +187569,Wired Headphones,1,11.99,04/07/19 12:41,"29 9th St, Seattle, WA 98101" +187570,34in Ultrawide Monitor,1,379.99,04/14/19 14:17,"525 4th St, New York City, NY 10001" +187571,Flatscreen TV,1,300,04/09/19 00:12,"831 Lincoln St, Los Angeles, CA 90001" +187572,AA Batteries (4-pack),1,3.84,04/05/19 10:08,"290 Church St, Los Angeles, CA 90001" +187573,Bose SoundSport Headphones,1,99.99,04/06/19 13:24,"200 Willow St, San Francisco, CA 94016" +187574,Lightning Charging Cable,1,14.95,04/27/19 23:24,"158 1st St, San Francisco, CA 94016" +187575,Lightning Charging Cable,1,14.95,04/19/19 12:06,"963 Meadow St, Dallas, TX 75001" +187576,Wired Headphones,1,11.99,04/28/19 11:26,"207 Washington St, Boston, MA 02215" +187577,Macbook Pro Laptop,1,1700,04/18/19 18:21,"582 9th St, New York City, NY 10001" +187578,Apple Airpods Headphones,1,150,04/05/19 15:59,"676 Wilson St, Los Angeles, CA 90001" +187579,Lightning Charging Cable,1,14.95,04/27/19 08:23,"293 Hill St, Portland, ME 04101" +187580,20in Monitor,1,109.99,04/30/19 18:53,"596 Church St, San Francisco, CA 94016" +187581,AAA Batteries (4-pack),1,2.99,04/09/19 10:07,"714 Jefferson St, San Francisco, CA 94016" +187582,27in FHD Monitor,1,149.99,04/24/19 17:50,"745 Ridge St, New York City, NY 10001" +187583,Wired Headphones,1,11.99,04/14/19 09:47,"618 Wilson St, San Francisco, CA 94016" +187584,20in Monitor,1,109.99,04/20/19 12:13,"155 West St, Austin, TX 73301" +187585,Lightning Charging Cable,1,14.95,04/09/19 00:32,"131 Church St, Los Angeles, CA 90001" +187586,Macbook Pro Laptop,1,1700,04/06/19 12:29,"749 Forest St, Dallas, TX 75001" +187587,Wired Headphones,1,11.99,04/22/19 17:16,"427 Ridge St, New York City, NY 10001" +187588,USB-C Charging Cable,1,11.95,04/22/19 09:07,"280 Johnson St, San Francisco, CA 94016" +187589,Lightning Charging Cable,1,14.95,04/04/19 14:40,"369 Lakeview St, San Francisco, CA 94016" +187590,27in 4K Gaming Monitor,1,389.99,04/25/19 17:31,"266 Lincoln St, San Francisco, CA 94016" +187591,Wired Headphones,1,11.99,04/14/19 06:31,"594 Madison St, Portland, OR 97035" +187592,Wired Headphones,1,11.99,04/23/19 20:42,"380 Willow St, Atlanta, GA 30301" +187593,LG Dryer,1,600.0,04/05/19 17:26,"984 Sunset St, Los Angeles, CA 90001" +187594,AA Batteries (4-pack),2,3.84,04/01/19 14:19,"423 7th St, New York City, NY 10001" +187595,iPhone,1,700,04/23/19 14:15,"417 7th St, Los Angeles, CA 90001" +187596,Lightning Charging Cable,1,14.95,04/20/19 05:14,"280 Wilson St, Seattle, WA 98101" +187597,AA Batteries (4-pack),1,3.84,04/11/19 15:50,"277 Sunset St, Portland, OR 97035" +187598,Bose SoundSport Headphones,1,99.99,04/13/19 11:16,"631 9th St, Dallas, TX 75001" +187599,Wired Headphones,2,11.99,04/14/19 00:42,"695 Lincoln St, Los Angeles, CA 90001" +187600,iPhone,1,700,04/12/19 22:42,"931 14th St, Atlanta, GA 30301" +187600,Lightning Charging Cable,1,14.95,04/12/19 22:42,"931 14th St, Atlanta, GA 30301" +187600,USB-C Charging Cable,1,11.95,04/12/19 22:42,"931 14th St, Atlanta, GA 30301" +187601,27in 4K Gaming Monitor,1,389.99,04/02/19 15:12,"563 Church St, Los Angeles, CA 90001" +187602,AA Batteries (4-pack),2,3.84,04/03/19 18:05,"112 Elm St, San Francisco, CA 94016" +187603,USB-C Charging Cable,1,11.95,04/11/19 20:53,"827 Dogwood St, San Francisco, CA 94016" +187604,Apple Airpods Headphones,1,150,04/30/19 13:29,"530 Madison St, Seattle, WA 98101" +187605,Wired Headphones,1,11.99,04/28/19 17:57,"575 Johnson St, New York City, NY 10001" +187606,USB-C Charging Cable,2,11.95,04/30/19 09:03,"255 6th St, New York City, NY 10001" +187607,AAA Batteries (4-pack),1,2.99,04/17/19 17:45,"80 1st St, New York City, NY 10001" +187608,Apple Airpods Headphones,1,150,04/21/19 21:49,"328 11th St, Boston, MA 02215" +187609,AAA Batteries (4-pack),1,2.99,04/14/19 13:33,"116 9th St, Boston, MA 02215" +187610,AAA Batteries (4-pack),1,2.99,04/04/19 16:33,"849 Lake St, San Francisco, CA 94016" +187611,Bose SoundSport Headphones,1,99.99,04/16/19 09:17,"454 7th St, Atlanta, GA 30301" +187612,Apple Airpods Headphones,1,150,04/15/19 22:56,"920 Wilson St, New York City, NY 10001" +187613,AAA Batteries (4-pack),2,2.99,04/02/19 12:54,"768 Elm St, Portland, OR 97035" +187613,AAA Batteries (4-pack),2,2.99,04/02/19 12:54,"768 Elm St, Portland, OR 97035" +187614,AAA Batteries (4-pack),1,2.99,04/09/19 20:21,"45 Johnson St, Boston, MA 02215" +187615,USB-C Charging Cable,1,11.95,04/12/19 09:42,"366 Hickory St, San Francisco, CA 94016" +187616,AAA Batteries (4-pack),1,2.99,04/08/19 10:02,"242 South St, San Francisco, CA 94016" +187617,Apple Airpods Headphones,1,150,04/06/19 23:19,"874 Johnson St, Los Angeles, CA 90001" +187618,Flatscreen TV,1,300,04/25/19 18:50,"681 2nd St, Dallas, TX 75001" +187619,Macbook Pro Laptop,1,1700,04/15/19 16:09,"343 Park St, San Francisco, CA 94016" +187620,Wired Headphones,1,11.99,04/10/19 09:53,"21 Jefferson St, Austin, TX 73301" +187621,Lightning Charging Cable,1,14.95,04/27/19 10:09,"859 Jefferson St, Portland, OR 97035" +187622,Bose SoundSport Headphones,1,99.99,04/08/19 17:34,"538 7th St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +187623,27in FHD Monitor,1,149.99,04/29/19 11:41,"499 West St, San Francisco, CA 94016" +187624,Apple Airpods Headphones,1,150,04/20/19 22:24,"311 Spruce St, New York City, NY 10001" +187625,Wired Headphones,1,11.99,04/20/19 11:40,"89 South St, San Francisco, CA 94016" +187626,AAA Batteries (4-pack),2,2.99,04/16/19 10:14,"476 Maple St, Seattle, WA 98101" +187627,34in Ultrawide Monitor,1,379.99,04/11/19 11:01,"820 1st St, San Francisco, CA 94016" +187628,Wired Headphones,1,11.99,04/04/19 21:50,"649 Lincoln St, Atlanta, GA 30301" +187629,AA Batteries (4-pack),1,3.84,04/21/19 11:33,"578 Madison St, Boston, MA 02215" +187630,USB-C Charging Cable,1,11.95,04/21/19 21:21,"461 Washington St, San Francisco, CA 94016" +187631,AA Batteries (4-pack),1,3.84,04/02/19 22:43,"984 Maple St, Austin, TX 73301" +187632,27in 4K Gaming Monitor,1,389.99,04/05/19 17:17,"55 Park St, Austin, TX 73301" +187633,USB-C Charging Cable,1,11.95,04/17/19 13:11,"372 Ridge St, San Francisco, CA 94016" +187633,Wired Headphones,2,11.99,04/17/19 13:11,"372 Ridge St, San Francisco, CA 94016" +187634,Wired Headphones,1,11.99,04/16/19 17:03,"646 Center St, Los Angeles, CA 90001" +187635,Wired Headphones,1,11.99,04/08/19 06:27,"920 Hickory St, Los Angeles, CA 90001" +187636,AAA Batteries (4-pack),3,2.99,04/14/19 15:20,"281 11th St, San Francisco, CA 94016" +187637,Apple Airpods Headphones,1,150,04/25/19 07:32,"955 Cherry St, San Francisco, CA 94016" +187638,Bose SoundSport Headphones,1,99.99,04/05/19 00:07,"243 Center St, Los Angeles, CA 90001" +187639,Lightning Charging Cable,1,14.95,04/03/19 11:21,"667 13th St, New York City, NY 10001" +187640,iPhone,1,700,04/26/19 12:48,"124 Johnson St, Atlanta, GA 30301" +187641,AA Batteries (4-pack),1,3.84,04/30/19 14:39,"964 Highland St, New York City, NY 10001" +187642,AAA Batteries (4-pack),1,2.99,04/12/19 08:07,"184 North St, Atlanta, GA 30301" +187643,AA Batteries (4-pack),1,3.84,04/10/19 18:42,"18 Ridge St, Seattle, WA 98101" +187644,AA Batteries (4-pack),1,3.84,04/07/19 18:39,"576 River St, San Francisco, CA 94016" +187645,27in FHD Monitor,1,149.99,04/02/19 11:08,"861 5th St, Atlanta, GA 30301" +187646,Lightning Charging Cable,1,14.95,04/28/19 17:52,"3 11th St, Atlanta, GA 30301" +187647,AAA Batteries (4-pack),2,2.99,04/23/19 13:48,"406 Willow St, San Francisco, CA 94016" +187648,Apple Airpods Headphones,1,150,04/25/19 15:09,"505 Forest St, San Francisco, CA 94016" +187649,AA Batteries (4-pack),1,3.84,04/25/19 11:14,"251 Chestnut St, Atlanta, GA 30301" +187650,Lightning Charging Cable,1,14.95,04/21/19 12:06,"309 7th St, San Francisco, CA 94016" +187651,AA Batteries (4-pack),2,3.84,04/20/19 21:59,"993 8th St, San Francisco, CA 94016" +187652,27in FHD Monitor,1,149.99,04/13/19 15:00,"108 Maple St, San Francisco, CA 94016" +187653,Bose SoundSport Headphones,1,99.99,04/15/19 23:58,"40 Chestnut St, San Francisco, CA 94016" +187654,27in 4K Gaming Monitor,1,389.99,04/06/19 18:21,"852 Lake St, Los Angeles, CA 90001" +187655,Wired Headphones,1,11.99,04/19/19 10:28,"388 6th St, Atlanta, GA 30301" +187656,27in FHD Monitor,1,149.99,04/05/19 12:04,"27 Sunset St, Seattle, WA 98101" +187657,AAA Batteries (4-pack),1,2.99,04/21/19 15:01,"717 7th St, Atlanta, GA 30301" +187658,Bose SoundSport Headphones,1,99.99,04/04/19 12:18,"252 Sunset St, San Francisco, CA 94016" +187659,AAA Batteries (4-pack),1,2.99,04/20/19 17:56,"188 South St, New York City, NY 10001" +187660,AA Batteries (4-pack),3,3.84,04/13/19 12:43,"447 Jefferson St, Dallas, TX 75001" +187661,Flatscreen TV,1,300,04/16/19 16:13,"180 4th St, Atlanta, GA 30301" +187662,Wired Headphones,1,11.99,04/21/19 13:47,"656 Adams St, San Francisco, CA 94016" +187663,AAA Batteries (4-pack),1,2.99,04/13/19 17:44,"325 Lincoln St, Portland, ME 04101" +187664,Flatscreen TV,1,300,04/11/19 23:59,"77 West St, San Francisco, CA 94016" +187665,Lightning Charging Cable,1,14.95,04/10/19 12:05,"421 Pine St, New York City, NY 10001" +187666,Google Phone,1,600,04/05/19 09:07,"107 4th St, Los Angeles, CA 90001" +187667,Google Phone,1,600,04/29/19 10:15,"989 Cherry St, Seattle, WA 98101" +187668,ThinkPad Laptop,1,999.99,04/29/19 09:55,"545 Highland St, San Francisco, CA 94016" +187669,USB-C Charging Cable,1,11.95,04/23/19 21:02,"833 Hill St, Austin, TX 73301" +187670,Macbook Pro Laptop,1,1700,04/28/19 07:46,"240 Lakeview St, Boston, MA 02215" +187671,Apple Airpods Headphones,1,150,04/15/19 21:27,"253 2nd St, Seattle, WA 98101" +187672,Bose SoundSport Headphones,1,99.99,04/24/19 20:06,"450 Wilson St, San Francisco, CA 94016" +187673,Lightning Charging Cable,1,14.95,04/05/19 15:40,"942 10th St, New York City, NY 10001" +187674,Macbook Pro Laptop,1,1700,04/26/19 15:14,"635 Wilson St, Los Angeles, CA 90001" +187675,ThinkPad Laptop,1,999.99,04/30/19 11:00,"11 Sunset St, San Francisco, CA 94016" +187676,Lightning Charging Cable,1,14.95,04/19/19 10:49,"869 14th St, Los Angeles, CA 90001" +187677,AA Batteries (4-pack),1,3.84,04/01/19 16:55,"111 Jackson St, New York City, NY 10001" +187678,Bose SoundSport Headphones,1,99.99,04/16/19 16:54,"269 Lakeview St, San Francisco, CA 94016" +187679,AAA Batteries (4-pack),3,2.99,04/25/19 17:15,"162 6th St, San Francisco, CA 94016" +187680,iPhone,1,700,04/30/19 06:54,"3 Jefferson St, New York City, NY 10001" +187681,AAA Batteries (4-pack),2,2.99,04/08/19 08:55,"464 North St, New York City, NY 10001" +187682,27in FHD Monitor,1,149.99,04/21/19 23:05,"802 Dogwood St, Los Angeles, CA 90001" +187683,Google Phone,1,600,04/25/19 08:58,"58 Walnut St, New York City, NY 10001" +187684,20in Monitor,1,109.99,04/25/19 02:33,"251 12th St, Boston, MA 02215" +187685,USB-C Charging Cable,1,11.95,04/18/19 09:33,"547 Lincoln St, San Francisco, CA 94016" +187686,Apple Airpods Headphones,1,150,04/20/19 16:45,"525 1st St, Boston, MA 02215" +187687,Vareebadd Phone,1,400,04/08/19 00:19,"663 2nd St, Los Angeles, CA 90001" +187688,Wired Headphones,1,11.99,04/26/19 19:50,"777 Chestnut St, San Francisco, CA 94016" +187689,USB-C Charging Cable,1,11.95,04/26/19 15:12,"476 2nd St, San Francisco, CA 94016" +187690,AA Batteries (4-pack),1,3.84,04/08/19 09:15,"26 1st St, Boston, MA 02215" +187691,USB-C Charging Cable,1,11.95,04/22/19 08:47,"596 Meadow St, Atlanta, GA 30301" +187692,20in Monitor,1,109.99,04/05/19 21:20,"161 4th St, Seattle, WA 98101" +187693,27in FHD Monitor,1,149.99,04/17/19 21:14,"755 Elm St, New York City, NY 10001" +187694,Lightning Charging Cable,1,14.95,04/01/19 17:31,"635 Sunset St, Portland, OR 97035" +187695,34in Ultrawide Monitor,1,379.99,04/26/19 09:11,"93 6th St, San Francisco, CA 94016" +187696,Flatscreen TV,1,300,04/09/19 12:27,"147 4th St, San Francisco, CA 94016" +187697,AAA Batteries (4-pack),1,2.99,04/17/19 14:05,"868 Cedar St, Seattle, WA 98101" +187698,AA Batteries (4-pack),1,3.84,04/26/19 20:58,"534 South St, Los Angeles, CA 90001" +187699,Lightning Charging Cable,1,14.95,04/10/19 21:16,"627 Forest St, Dallas, TX 75001" +187700,iPhone,1,700,04/03/19 13:29,"874 Hickory St, Boston, MA 02215" +187701,AAA Batteries (4-pack),2,2.99,04/25/19 20:45,"829 Chestnut St, Boston, MA 02215" +187702,AA Batteries (4-pack),2,3.84,04/18/19 14:41,"18 Washington St, San Francisco, CA 94016" +187703,Bose SoundSport Headphones,1,99.99,04/12/19 21:13,"890 Park St, San Francisco, CA 94016" +187704,20in Monitor,1,109.99,04/03/19 10:51,"826 Sunset St, New York City, NY 10001" +187705,Apple Airpods Headphones,1,150,04/18/19 20:50,"295 Meadow St, New York City, NY 10001" +187706,27in FHD Monitor,1,149.99,04/18/19 18:23,"989 2nd St, Dallas, TX 75001" +187707,Wired Headphones,1,11.99,04/30/19 10:25,"655 7th St, San Francisco, CA 94016" +187708,Bose SoundSport Headphones,1,99.99,04/25/19 21:45,"595 North St, Atlanta, GA 30301" +187709,Vareebadd Phone,1,400,04/06/19 12:43,"631 Jackson St, Boston, MA 02215" +187710,USB-C Charging Cable,2,11.95,04/23/19 22:05,"624 Lake St, Los Angeles, CA 90001" +187711,Lightning Charging Cable,1,14.95,04/18/19 08:04,"981 South St, San Francisco, CA 94016" +187712,Google Phone,1,600,04/29/19 14:45,"20 8th St, Dallas, TX 75001" +187713,USB-C Charging Cable,1,11.95,04/20/19 15:31,"57 12th St, Dallas, TX 75001" +187714,USB-C Charging Cable,2,11.95,04/04/19 16:59,"246 Dogwood St, San Francisco, CA 94016" +187715,20in Monitor,1,109.99,04/26/19 20:28,"301 Lake St, Portland, OR 97035" +187716,20in Monitor,1,109.99,04/14/19 16:39,"471 Cherry St, Boston, MA 02215" +187717,27in 4K Gaming Monitor,1,389.99,04/12/19 18:03,"972 North St, Los Angeles, CA 90001" +187718,Lightning Charging Cable,1,14.95,04/24/19 09:15,"166 Maple St, Boston, MA 02215" +187719,Lightning Charging Cable,1,14.95,04/25/19 11:30,"260 11th St, Boston, MA 02215" +187720,Apple Airpods Headphones,1,150,04/28/19 18:29,"580 2nd St, Boston, MA 02215" +187721,Lightning Charging Cable,1,14.95,04/13/19 16:28,"763 Maple St, Seattle, WA 98101" +187722,USB-C Charging Cable,1,11.95,04/04/19 08:52,"441 Meadow St, Atlanta, GA 30301" +187723,USB-C Charging Cable,1,11.95,04/02/19 22:37,"638 Park St, Los Angeles, CA 90001" +187724,iPhone,1,700,04/01/19 19:34,"383 Walnut St, Los Angeles, CA 90001" +187725,Google Phone,1,600,04/22/19 22:18,"74 Hill St, New York City, NY 10001" +187725,USB-C Charging Cable,2,11.95,04/22/19 22:18,"74 Hill St, New York City, NY 10001" +187726,AA Batteries (4-pack),1,3.84,04/12/19 11:56,"493 Forest St, Portland, OR 97035" +187727,USB-C Charging Cable,1,11.95,04/12/19 20:53,"161 North St, Boston, MA 02215" +187728,Lightning Charging Cable,1,14.95,04/24/19 12:33,"227 Washington St, Austin, TX 73301" +187729,Bose SoundSport Headphones,1,99.99,04/07/19 10:51,"822 Spruce St, Portland, OR 97035" +187730,Macbook Pro Laptop,1,1700,04/20/19 01:05,"247 Sunset St, Boston, MA 02215" +187731,AA Batteries (4-pack),1,3.84,04/11/19 18:09,"72 Dogwood St, Boston, MA 02215" +187732,USB-C Charging Cable,1,11.95,04/03/19 13:13,"333 12th St, San Francisco, CA 94016" +187733,Apple Airpods Headphones,1,150,04/05/19 23:41,"666 Park St, Seattle, WA 98101" +187734,Wired Headphones,1,11.99,04/12/19 20:35,"562 Wilson St, Seattle, WA 98101" +187735,Apple Airpods Headphones,1,150,04/27/19 18:25,"915 2nd St, Los Angeles, CA 90001" +187736,Bose SoundSport Headphones,1,99.99,04/13/19 20:43,"676 West St, Dallas, TX 75001" +187737,AAA Batteries (4-pack),2,2.99,04/01/19 19:14,"293 River St, San Francisco, CA 94016" +187738,AAA Batteries (4-pack),1,2.99,04/18/19 09:20,"692 Main St, Dallas, TX 75001" +187739,iPhone,1,700,04/04/19 21:27,"50 2nd St, Seattle, WA 98101" +187740,Wired Headphones,1,11.99,04/23/19 19:46,"313 Johnson St, Boston, MA 02215" +187741,AAA Batteries (4-pack),1,2.99,04/02/19 11:48,"86 Lakeview St, San Francisco, CA 94016" +187742,Apple Airpods Headphones,1,150,04/06/19 18:37,"875 10th St, Atlanta, GA 30301" +187743,Apple Airpods Headphones,1,150,04/18/19 19:44,"575 Johnson St, Seattle, WA 98101" +187744,AAA Batteries (4-pack),1,2.99,04/18/19 22:54,"466 8th St, Dallas, TX 75001" +187745,AAA Batteries (4-pack),1,2.99,04/07/19 10:52,"512 Jackson St, San Francisco, CA 94016" +187746,Apple Airpods Headphones,1,150,04/25/19 10:19,"273 Cedar St, New York City, NY 10001" +187747,AAA Batteries (4-pack),1,2.99,04/23/19 12:14,"313 Washington St, Seattle, WA 98101" +187748,27in 4K Gaming Monitor,1,389.99,04/06/19 18:35,"834 Hill St, San Francisco, CA 94016" +187749,AAA Batteries (4-pack),1,2.99,04/25/19 10:21,"125 8th St, Boston, MA 02215" +187750,Wired Headphones,1,11.99,04/04/19 15:07,"768 11th St, San Francisco, CA 94016" +187751,iPhone,1,700,04/20/19 09:50,"492 Lake St, Portland, OR 97035" +187752,AAA Batteries (4-pack),1,2.99,04/22/19 17:12,"175 Pine St, Boston, MA 02215" +187753,Bose SoundSport Headphones,1,99.99,04/21/19 01:00,"221 Cherry St, New York City, NY 10001" +187754,34in Ultrawide Monitor,1,379.99,04/16/19 20:11,"103 Maple St, Los Angeles, CA 90001" +187755,Lightning Charging Cable,1,14.95,04/08/19 11:08,"724 Hickory St, Los Angeles, CA 90001" +187756,27in FHD Monitor,1,149.99,04/20/19 02:41,"662 Sunset St, New York City, NY 10001" +187757,Bose SoundSport Headphones,1,99.99,04/20/19 13:25,"336 Johnson St, New York City, NY 10001" +187758,Google Phone,1,600,04/13/19 22:04,"687 7th St, Portland, OR 97035" +187759,Lightning Charging Cable,1,14.95,04/12/19 11:41,"697 Jackson St, New York City, NY 10001" +187760,27in FHD Monitor,1,149.99,04/16/19 21:39,"563 13th St, Boston, MA 02215" +187761,USB-C Charging Cable,1,11.95,04/12/19 09:58,"314 Johnson St, San Francisco, CA 94016" +187762,AA Batteries (4-pack),1,3.84,04/30/19 07:51,"165 Lakeview St, Boston, MA 02215" +187763,Lightning Charging Cable,1,14.95,04/15/19 19:34,"183 6th St, New York City, NY 10001" +187764,Wired Headphones,1,11.99,04/06/19 17:01,"571 South St, Austin, TX 73301" +187765,Lightning Charging Cable,1,14.95,04/02/19 10:54,"234 Jefferson St, Austin, TX 73301" +187766,34in Ultrawide Monitor,1,379.99,04/06/19 22:35,"708 Lincoln St, Dallas, TX 75001" +187767,AAA Batteries (4-pack),3,2.99,04/27/19 17:18,"738 Lake St, Atlanta, GA 30301" +187768,27in 4K Gaming Monitor,1,389.99,04/04/19 21:53,"780 Willow St, Boston, MA 02215" +187769,27in FHD Monitor,1,149.99,04/04/19 01:23,"299 1st St, Dallas, TX 75001" +187770,AAA Batteries (4-pack),1,2.99,04/14/19 07:30,"469 West St, San Francisco, CA 94016" +187771,iPhone,1,700,04/05/19 00:29,"819 North St, San Francisco, CA 94016" +187772,USB-C Charging Cable,1,11.95,04/11/19 13:45,"304 Willow St, Portland, OR 97035" +187773,34in Ultrawide Monitor,1,379.99,04/12/19 11:41,"595 Chestnut St, Seattle, WA 98101" +187773,AA Batteries (4-pack),1,3.84,04/12/19 11:41,"595 Chestnut St, Seattle, WA 98101" +187774,27in 4K Gaming Monitor,1,389.99,04/22/19 09:26,"224 Ridge St, Austin, TX 73301" +187775,Lightning Charging Cable,1,14.95,04/03/19 16:40,"132 Ridge St, Atlanta, GA 30301" +187776,USB-C Charging Cable,1,11.95,04/15/19 09:00,"450 Wilson St, Portland, OR 97035" +187777,AA Batteries (4-pack),1,3.84,04/16/19 15:45,"790 Forest St, Los Angeles, CA 90001" +187778,USB-C Charging Cable,1,11.95,04/19/19 18:01,"319 1st St, Boston, MA 02215" +187779,AAA Batteries (4-pack),4,2.99,04/04/19 20:35,"836 Chestnut St, Los Angeles, CA 90001" +187780,Wired Headphones,1,11.99,04/10/19 14:17,"917 Hickory St, San Francisco, CA 94016" +187781,AA Batteries (4-pack),1,3.84,04/20/19 12:57,"163 Cedar St, Boston, MA 02215" +187782,34in Ultrawide Monitor,1,379.99,04/04/19 12:27,"36 Center St, Seattle, WA 98101" +187783,Wired Headphones,1,11.99,04/29/19 08:28,"109 Lake St, San Francisco, CA 94016" +187784,Bose SoundSport Headphones,1,99.99,04/25/19 00:29,"880 West St, New York City, NY 10001" +187785,AAA Batteries (4-pack),2,2.99,04/12/19 10:49,"279 North St, Seattle, WA 98101" +187786,USB-C Charging Cable,1,11.95,04/26/19 21:04,"801 8th St, Austin, TX 73301" +187787,Wired Headphones,1,11.99,04/15/19 09:34,"505 South St, New York City, NY 10001" +187788,Wired Headphones,1,11.99,04/02/19 18:24,"808 12th St, San Francisco, CA 94016" +187789,Google Phone,1,600,04/04/19 12:51,"521 Lincoln St, Seattle, WA 98101" +187790,USB-C Charging Cable,1,11.95,04/06/19 19:15,"920 Dogwood St, San Francisco, CA 94016" +187791,iPhone,1,700,04/24/19 21:53,"299 5th St, New York City, NY 10001" +187791,Apple Airpods Headphones,1,150,04/24/19 21:53,"299 5th St, New York City, NY 10001" +187792,27in FHD Monitor,1,149.99,04/30/19 23:05,"810 11th St, Boston, MA 02215" +187793,34in Ultrawide Monitor,1,379.99,04/26/19 21:24,"601 South St, Los Angeles, CA 90001" +187794,20in Monitor,1,109.99,04/19/19 10:20,"175 Lakeview St, Los Angeles, CA 90001" +187795,Lightning Charging Cable,1,14.95,04/23/19 09:45,"180 Madison St, Boston, MA 02215" +187796,USB-C Charging Cable,1,11.95,04/08/19 12:41,"237 11th St, San Francisco, CA 94016" +187797,Lightning Charging Cable,1,14.95,04/21/19 02:00,"761 Highland St, San Francisco, CA 94016" +187798,Flatscreen TV,1,300,04/16/19 14:55,"174 Main St, Boston, MA 02215" +187799,Wired Headphones,1,11.99,04/13/19 07:30,"535 11th St, Atlanta, GA 30301" +187800,27in 4K Gaming Monitor,1,389.99,04/13/19 10:53,"732 South St, Atlanta, GA 30301" +187801,Lightning Charging Cable,1,14.95,04/30/19 18:21,"119 Lincoln St, Portland, ME 04101" +187802,Google Phone,1,600,04/25/19 09:40,"769 Jefferson St, Los Angeles, CA 90001" +187803,Lightning Charging Cable,1,14.95,04/30/19 12:43,"179 Lake St, Los Angeles, CA 90001" +187804,Wired Headphones,2,11.99,04/07/19 14:11,"688 Forest St, Seattle, WA 98101" +187805,USB-C Charging Cable,1,11.95,04/26/19 23:07,"276 Lincoln St, Seattle, WA 98101" +187805,USB-C Charging Cable,1,11.95,04/26/19 23:07,"276 Lincoln St, Seattle, WA 98101" +187806,LG Washing Machine,1,600.0,04/30/19 13:49,"279 Willow St, Seattle, WA 98101" +187807,AAA Batteries (4-pack),3,2.99,04/25/19 23:27,"439 4th St, New York City, NY 10001" +187808,27in FHD Monitor,1,149.99,04/16/19 19:04,"649 Washington St, New York City, NY 10001" +187809,34in Ultrawide Monitor,1,379.99,04/03/19 15:07,"366 7th St, Portland, OR 97035" +187810,USB-C Charging Cable,1,11.95,04/12/19 07:23,"573 Highland St, Portland, OR 97035" +187811,Bose SoundSport Headphones,1,99.99,04/16/19 15:11,"443 Lincoln St, San Francisco, CA 94016" +187812,USB-C Charging Cable,1,11.95,04/24/19 23:04,"474 Hill St, San Francisco, CA 94016" +187813,Lightning Charging Cable,1,14.95,04/05/19 03:37,"425 Madison St, San Francisco, CA 94016" +187814,Apple Airpods Headphones,1,150,04/03/19 02:06,"394 West St, New York City, NY 10001" +187815,AA Batteries (4-pack),1,3.84,04/19/19 17:21,"463 North St, Los Angeles, CA 90001" +187816,Flatscreen TV,1,300,04/16/19 18:19,"32 Elm St, New York City, NY 10001" +187817,AAA Batteries (4-pack),1,2.99,04/13/19 20:59,"867 1st St, New York City, NY 10001" +187818,USB-C Charging Cable,1,11.95,04/29/19 03:34,"757 Hill St, Boston, MA 02215" +187819,Bose SoundSport Headphones,1,99.99,04/19/19 14:54,"941 Center St, Atlanta, GA 30301" +187820,Wired Headphones,1,11.99,04/24/19 13:52,"919 Hickory St, Atlanta, GA 30301" +187821,AA Batteries (4-pack),1,3.84,04/07/19 22:28,"365 Dogwood St, Los Angeles, CA 90001" +187822,20in Monitor,1,109.99,04/02/19 19:30,"924 Cedar St, San Francisco, CA 94016" +187823,USB-C Charging Cable,1,11.95,04/02/19 17:08,"211 Dogwood St, Seattle, WA 98101" +187824,27in 4K Gaming Monitor,1,389.99,04/16/19 06:02,"539 9th St, Dallas, TX 75001" +187825,AA Batteries (4-pack),3,3.84,04/26/19 20:02,"948 9th St, Dallas, TX 75001" +187826,Apple Airpods Headphones,1,150,04/05/19 16:49,"174 7th St, Portland, OR 97035" +187827,iPhone,1,700,04/15/19 13:43,"697 Ridge St, San Francisco, CA 94016" +187828,20in Monitor,1,109.99,04/23/19 10:00,"60 South St, Boston, MA 02215" +187829,USB-C Charging Cable,1,11.95,04/10/19 21:25,"451 Lakeview St, San Francisco, CA 94016" +187830,USB-C Charging Cable,1,11.95,04/30/19 21:06,"426 Maple St, Dallas, TX 75001" +187831,Lightning Charging Cable,1,14.95,04/14/19 23:08,"778 Hickory St, Portland, OR 97035" +187832,Wired Headphones,1,11.99,04/26/19 13:05,"967 10th St, Los Angeles, CA 90001" +187833,USB-C Charging Cable,1,11.95,04/21/19 15:13,"583 Lincoln St, Austin, TX 73301" +187834,34in Ultrawide Monitor,1,379.99,04/12/19 17:42,"106 Adams St, Boston, MA 02215" +187835,AA Batteries (4-pack),1,3.84,04/03/19 17:22,"571 2nd St, New York City, NY 10001" +187836,AA Batteries (4-pack),1,3.84,04/13/19 08:58,"529 9th St, Portland, ME 04101" +187837,USB-C Charging Cable,1,11.95,04/28/19 11:44,"488 West St, Seattle, WA 98101" +187838,Wired Headphones,1,11.99,04/25/19 00:20,"900 Madison St, New York City, NY 10001" +187839,34in Ultrawide Monitor,1,379.99,04/07/19 12:00,"994 Hill St, Dallas, TX 75001" +187840,AA Batteries (4-pack),1,3.84,04/28/19 20:23,"878 13th St, San Francisco, CA 94016" +187841,Apple Airpods Headphones,1,150,04/09/19 15:04,"963 Highland St, Seattle, WA 98101" +187842,Wired Headphones,1,11.99,04/28/19 09:55,"242 Dogwood St, Los Angeles, CA 90001" +187843,27in FHD Monitor,1,149.99,04/25/19 17:35,"662 5th St, San Francisco, CA 94016" +187844,AA Batteries (4-pack),1,3.84,04/27/19 15:07,"126 Lincoln St, San Francisco, CA 94016" +187845,Google Phone,1,600,04/15/19 07:47,"236 Adams St, Dallas, TX 75001" +187845,USB-C Charging Cable,1,11.95,04/15/19 07:47,"236 Adams St, Dallas, TX 75001" +187846,Bose SoundSport Headphones,1,99.99,04/24/19 19:03,"598 Hill St, New York City, NY 10001" +187847,27in 4K Gaming Monitor,1,389.99,04/06/19 16:25,"146 North St, Atlanta, GA 30301" +187848,AA Batteries (4-pack),1,3.84,04/06/19 06:59,"478 12th St, Los Angeles, CA 90001" +187849,20in Monitor,1,109.99,04/14/19 10:59,"84 Pine St, Boston, MA 02215" +187850,Lightning Charging Cable,1,14.95,04/24/19 19:37,"356 1st St, New York City, NY 10001" +187851,AAA Batteries (4-pack),1,2.99,04/01/19 21:59,"492 12th St, San Francisco, CA 94016" +187852,34in Ultrawide Monitor,1,379.99,04/10/19 10:48,"280 Center St, Boston, MA 02215" +187853,USB-C Charging Cable,1,11.95,04/12/19 20:24,"305 14th St, San Francisco, CA 94016" +187854,Lightning Charging Cable,1,14.95,04/26/19 10:55,"462 Park St, New York City, NY 10001" +187855,Wired Headphones,1,11.99,04/15/19 22:07,"417 8th St, Seattle, WA 98101" +187856,Google Phone,1,600,04/04/19 21:26,"387 6th St, Portland, ME 04101" +187857,USB-C Charging Cable,1,11.95,04/11/19 23:15,"907 13th St, New York City, NY 10001" +187858,LG Washing Machine,1,600.0,04/14/19 07:37,"239 5th St, San Francisco, CA 94016" +187859,Flatscreen TV,1,300,04/01/19 13:21,"707 Hickory St, Los Angeles, CA 90001" +187860,Apple Airpods Headphones,1,150,04/21/19 23:47,"961 South St, Los Angeles, CA 90001" +187861,20in Monitor,1,109.99,04/18/19 18:57,"261 Walnut St, Portland, OR 97035" +187862,Lightning Charging Cable,1,14.95,04/13/19 08:45,"987 Highland St, Los Angeles, CA 90001" +187863,AAA Batteries (4-pack),2,2.99,04/06/19 20:42,"838 Walnut St, Dallas, TX 75001" +187864,27in 4K Gaming Monitor,1,389.99,04/05/19 19:42,"177 1st St, Atlanta, GA 30301" +187865,Lightning Charging Cable,1,14.95,04/03/19 21:16,"824 8th St, Boston, MA 02215" +187866,AA Batteries (4-pack),2,3.84,04/02/19 14:09,"169 West St, Dallas, TX 75001" +187867,USB-C Charging Cable,1,11.95,04/11/19 16:28,"320 Chestnut St, Portland, OR 97035" +187868,Apple Airpods Headphones,1,150,04/05/19 13:48,"98 5th St, Dallas, TX 75001" +187869,20in Monitor,1,109.99,04/28/19 12:51,"933 4th St, Seattle, WA 98101" +187870,USB-C Charging Cable,1,11.95,04/19/19 18:48,"541 Walnut St, New York City, NY 10001" +187871,Wired Headphones,2,11.99,04/14/19 19:41,"705 9th St, Seattle, WA 98101" +187872,AA Batteries (4-pack),1,3.84,04/28/19 18:46,"610 7th St, Atlanta, GA 30301" +187873,AAA Batteries (4-pack),1,2.99,04/27/19 14:34,"860 12th St, Portland, OR 97035" +187874,Lightning Charging Cable,1,14.95,04/10/19 10:24,"505 4th St, Dallas, TX 75001" +187875,AA Batteries (4-pack),1,3.84,04/23/19 10:25,"386 Madison St, Seattle, WA 98101" +187876,Wired Headphones,1,11.99,04/03/19 15:07,"891 Highland St, Los Angeles, CA 90001" +187877,20in Monitor,1,109.99,04/16/19 15:55,"52 Meadow St, Los Angeles, CA 90001" +187878,iPhone,1,700,04/11/19 20:25,"917 Elm St, Austin, TX 73301" +187879,Lightning Charging Cable,1,14.95,04/28/19 22:37,"242 Meadow St, Atlanta, GA 30301" +187880,iPhone,1,700,04/20/19 18:16,"114 Walnut St, Seattle, WA 98101" +187881,27in FHD Monitor,1,149.99,04/21/19 14:46,"517 Madison St, New York City, NY 10001" +187882,AAA Batteries (4-pack),1,2.99,04/06/19 21:24,"678 Chestnut St, Los Angeles, CA 90001" +187883,AAA Batteries (4-pack),1,2.99,04/12/19 10:23,"948 13th St, New York City, NY 10001" +187884,ThinkPad Laptop,1,999.99,04/08/19 18:38,"216 Church St, Los Angeles, CA 90001" +187885,27in 4K Gaming Monitor,1,389.99,04/12/19 08:35,"578 North St, Dallas, TX 75001" +187886,Wired Headphones,1,11.99,04/11/19 14:52,"558 Center St, Los Angeles, CA 90001" +187887,27in 4K Gaming Monitor,1,389.99,04/13/19 22:35,"728 Washington St, New York City, NY 10001" +187888,Macbook Pro Laptop,1,1700,04/25/19 16:14,"222 Forest St, Los Angeles, CA 90001" +187889,AAA Batteries (4-pack),2,2.99,04/23/19 11:07,"869 West St, San Francisco, CA 94016" +187890,AAA Batteries (4-pack),2,2.99,04/06/19 13:16,"615 Sunset St, New York City, NY 10001" +187891,Lightning Charging Cable,1,14.95,04/11/19 18:05,"747 North St, Atlanta, GA 30301" +187892,USB-C Charging Cable,1,11.95,04/13/19 13:09,"583 Jackson St, Austin, TX 73301" +187893,AAA Batteries (4-pack),2,2.99,04/13/19 16:51,"147 Ridge St, Los Angeles, CA 90001" +187893,Wired Headphones,1,11.99,04/13/19 16:51,"147 Ridge St, Los Angeles, CA 90001" +187894,ThinkPad Laptop,1,999.99,04/12/19 22:47,"724 Jefferson St, San Francisco, CA 94016" +187895,Flatscreen TV,1,300,04/08/19 12:13,"192 Spruce St, Atlanta, GA 30301" +187896,Lightning Charging Cable,1,14.95,04/28/19 19:38,"596 Meadow St, Dallas, TX 75001" +187897,USB-C Charging Cable,1,11.95,04/12/19 17:21,"534 Maple St, Austin, TX 73301" +187898,Wired Headphones,1,11.99,04/04/19 12:39,"834 Willow St, Boston, MA 02215" +187899,Wired Headphones,1,11.99,04/21/19 23:43,"390 Washington St, Atlanta, GA 30301" +187900,USB-C Charging Cable,1,11.95,04/22/19 17:08,"572 Adams St, San Francisco, CA 94016" +187901,ThinkPad Laptop,1,999.99,04/23/19 21:19,"788 Cedar St, San Francisco, CA 94016" +187902,Lightning Charging Cable,1,14.95,04/12/19 16:38,"137 Johnson St, San Francisco, CA 94016" +187903,Lightning Charging Cable,1,14.95,04/08/19 17:54,"898 13th St, Portland, OR 97035" +187904,27in FHD Monitor,1,149.99,04/05/19 11:17,"687 Spruce St, Atlanta, GA 30301" +187905,34in Ultrawide Monitor,1,379.99,04/09/19 16:56,"566 Cedar St, Portland, OR 97035" +187906,AAA Batteries (4-pack),1,2.99,04/27/19 16:56,"496 Willow St, San Francisco, CA 94016" +187907,20in Monitor,1,109.99,04/17/19 13:55,"664 5th St, San Francisco, CA 94016" +187908,iPhone,1,700,04/03/19 17:21,"554 14th St, New York City, NY 10001" +187908,Lightning Charging Cable,1,14.95,04/03/19 17:21,"554 14th St, New York City, NY 10001" +187909,AA Batteries (4-pack),1,3.84,04/14/19 16:05,"843 Center St, San Francisco, CA 94016" +187910,Wired Headphones,1,11.99,04/26/19 14:48,"652 Madison St, New York City, NY 10001" +187911,Wired Headphones,1,11.99,04/22/19 22:08,"383 Ridge St, San Francisco, CA 94016" +187912,AAA Batteries (4-pack),1,2.99,04/18/19 12:44,"647 Johnson St, New York City, NY 10001" +187913,AA Batteries (4-pack),1,3.84,04/15/19 00:03,"125 6th St, New York City, NY 10001" +187914,Google Phone,1,600,04/16/19 14:27,"455 Cedar St, Los Angeles, CA 90001" +187915,34in Ultrawide Monitor,1,379.99,04/13/19 11:18,"723 Highland St, Los Angeles, CA 90001" +187916,AAA Batteries (4-pack),1,2.99,04/20/19 10:56,"27 Ridge St, Portland, OR 97035" +187917,AAA Batteries (4-pack),3,2.99,04/11/19 08:24,"54 2nd St, New York City, NY 10001" +187918,USB-C Charging Cable,1,11.95,04/15/19 11:52,"75 14th St, San Francisco, CA 94016" +187919,27in FHD Monitor,1,149.99,04/06/19 20:36,"182 Meadow St, San Francisco, CA 94016" +187920,Macbook Pro Laptop,1,1700,04/19/19 12:14,"327 Ridge St, San Francisco, CA 94016" +187921,Bose SoundSport Headphones,1,99.99,04/17/19 12:02,"521 Dogwood St, New York City, NY 10001" +187922,Google Phone,1,600,04/25/19 00:51,"749 Johnson St, Boston, MA 02215" +187922,Bose SoundSport Headphones,1,99.99,04/25/19 00:51,"749 Johnson St, Boston, MA 02215" +187923,AAA Batteries (4-pack),2,2.99,04/11/19 09:28,"695 Spruce St, Seattle, WA 98101" +187924,Lightning Charging Cable,1,14.95,04/03/19 15:06,"935 River St, Boston, MA 02215" +187925,iPhone,1,700,04/20/19 11:11,"147 2nd St, San Francisco, CA 94016" +187926,Wired Headphones,1,11.99,04/23/19 19:03,"987 9th St, New York City, NY 10001" +187927,Lightning Charging Cable,2,14.95,04/10/19 14:50,"662 Willow St, Seattle, WA 98101" +187928,AA Batteries (4-pack),1,3.84,04/10/19 18:51,"527 Walnut St, Atlanta, GA 30301" +187929,Wired Headphones,1,11.99,04/21/19 16:07,"503 Lake St, Dallas, TX 75001" +187930,Apple Airpods Headphones,1,150,04/11/19 16:15,"849 11th St, San Francisco, CA 94016" +187931,AAA Batteries (4-pack),1,2.99,04/08/19 10:35,"938 River St, San Francisco, CA 94016" +187932,USB-C Charging Cable,1,11.95,04/25/19 11:01,"639 14th St, Dallas, TX 75001" +187933,34in Ultrawide Monitor,1,379.99,04/13/19 10:51,"474 Meadow St, New York City, NY 10001" +187934,AAA Batteries (4-pack),1,2.99,04/07/19 06:37,"956 Jefferson St, San Francisco, CA 94016" +187935,iPhone,1,700,04/22/19 13:30,"275 14th St, Boston, MA 02215" +187936,AA Batteries (4-pack),1,3.84,04/08/19 13:34,"909 Pine St, Seattle, WA 98101" +187937,27in FHD Monitor,1,149.99,04/26/19 20:40,"560 Willow St, Boston, MA 02215" +187938,Wired Headphones,1,11.99,04/24/19 13:21,"970 Maple St, New York City, NY 10001" +187939,AAA Batteries (4-pack),1,2.99,04/05/19 14:01,"308 Dogwood St, San Francisco, CA 94016" +187940,AAA Batteries (4-pack),1,2.99,04/20/19 21:17,"371 Hill St, Los Angeles, CA 90001" +187941,Wired Headphones,1,11.99,04/02/19 22:11,"265 Main St, New York City, NY 10001" +187942,USB-C Charging Cable,1,11.95,04/05/19 10:10,"905 Elm St, San Francisco, CA 94016" +187943,AA Batteries (4-pack),1,3.84,04/08/19 11:17,"902 5th St, Atlanta, GA 30301" +187944,ThinkPad Laptop,1,999.99,04/08/19 21:33,"707 Highland St, San Francisco, CA 94016" +187945,AAA Batteries (4-pack),1,2.99,04/06/19 18:31,"385 South St, New York City, NY 10001" +187946,27in FHD Monitor,1,149.99,04/29/19 12:32,"524 Pine St, Boston, MA 02215" +187947,AAA Batteries (4-pack),1,2.99,04/26/19 20:06,"688 South St, San Francisco, CA 94016" +187948,34in Ultrawide Monitor,1,379.99,04/21/19 20:58,"849 Wilson St, Portland, ME 04101" +187949,20in Monitor,1,109.99,04/16/19 10:09,"254 Jackson St, Dallas, TX 75001" +187950,27in FHD Monitor,1,149.99,04/05/19 14:59,"54 13th St, Boston, MA 02215" +187951,AA Batteries (4-pack),1,3.84,04/29/19 00:41,"65 Dogwood St, San Francisco, CA 94016" +187952,AAA Batteries (4-pack),1,2.99,04/12/19 11:51,"886 Chestnut St, Austin, TX 73301" +187952,AAA Batteries (4-pack),2,2.99,04/12/19 11:51,"886 Chestnut St, Austin, TX 73301" +187953,Wired Headphones,1,11.99,04/16/19 16:04,"182 Elm St, Boston, MA 02215" +187954,AAA Batteries (4-pack),1,2.99,04/24/19 10:05,"273 Lakeview St, San Francisco, CA 94016" +187955,Lightning Charging Cable,1,14.95,04/22/19 08:16,"944 12th St, San Francisco, CA 94016" +187956,Lightning Charging Cable,1,14.95,04/11/19 14:00,"505 Jackson St, Los Angeles, CA 90001" +187957,USB-C Charging Cable,2,11.95,04/02/19 21:40,"786 8th St, Los Angeles, CA 90001" +187958,USB-C Charging Cable,1,11.95,04/03/19 05:34,"420 West St, Portland, OR 97035" +187959,AA Batteries (4-pack),1,3.84,04/13/19 14:31,"22 Maple St, San Francisco, CA 94016" +187960,Apple Airpods Headphones,1,150,04/21/19 10:01,"467 Church St, Austin, TX 73301" +187961,34in Ultrawide Monitor,1,379.99,04/04/19 09:55,"416 Lincoln St, New York City, NY 10001" +187961,Wired Headphones,1,11.99,04/04/19 09:55,"416 Lincoln St, New York City, NY 10001" +187962,USB-C Charging Cable,1,11.95,04/27/19 21:45,"203 Madison St, New York City, NY 10001" +187963,Bose SoundSport Headphones,1,99.99,04/18/19 21:54,"609 13th St, Dallas, TX 75001" +187964,Wired Headphones,1,11.99,04/19/19 00:25,"724 Cherry St, San Francisco, CA 94016" +187965,Wired Headphones,1,11.99,04/21/19 09:48,"834 13th St, Austin, TX 73301" +187966,Google Phone,1,600,04/08/19 22:18,"275 North St, Dallas, TX 75001" +187967,Lightning Charging Cable,1,14.95,04/02/19 08:29,"855 Lakeview St, Dallas, TX 75001" +187968,USB-C Charging Cable,1,11.95,04/07/19 19:11,"667 1st St, Boston, MA 02215" +187969,USB-C Charging Cable,1,11.95,04/15/19 10:14,"267 Walnut St, Atlanta, GA 30301" +187970,Google Phone,1,600,04/21/19 16:55,"388 Wilson St, San Francisco, CA 94016" +187971,Lightning Charging Cable,1,14.95,04/15/19 11:30,"839 Jefferson St, Boston, MA 02215" +187972,Wired Headphones,1,11.99,04/22/19 16:28,"21 Lake St, New York City, NY 10001" +187973,USB-C Charging Cable,1,11.95,04/25/19 08:52,"563 Elm St, San Francisco, CA 94016" +187974,27in FHD Monitor,1,149.99,04/13/19 15:17,"90 Jackson St, New York City, NY 10001" +187974,AA Batteries (4-pack),1,3.84,04/13/19 15:17,"90 Jackson St, New York City, NY 10001" +187975,Bose SoundSport Headphones,1,99.99,04/25/19 02:03,"408 Spruce St, Boston, MA 02215" +187976,ThinkPad Laptop,1,999.99,04/04/19 19:24,"929 5th St, Boston, MA 02215" +187977,USB-C Charging Cable,1,11.95,04/14/19 10:18,"542 Church St, San Francisco, CA 94016" +187978,AAA Batteries (4-pack),2,2.99,04/17/19 22:20,"930 1st St, Portland, OR 97035" +187979,Bose SoundSport Headphones,1,99.99,04/04/19 20:59,"447 Pine St, Portland, OR 97035" +187980,AAA Batteries (4-pack),1,2.99,04/18/19 22:23,"841 Church St, San Francisco, CA 94016" +187981,USB-C Charging Cable,1,11.95,04/03/19 16:52,"492 Willow St, San Francisco, CA 94016" +187982,USB-C Charging Cable,1,11.95,04/20/19 19:51,"583 Hill St, Los Angeles, CA 90001" +187983,ThinkPad Laptop,1,999.99,04/07/19 17:55,"271 Pine St, San Francisco, CA 94016" +187984,Lightning Charging Cable,1,14.95,04/26/19 08:57,"533 North St, New York City, NY 10001" +187985,iPhone,1,700,04/28/19 10:52,"61 Madison St, Los Angeles, CA 90001" +187986,USB-C Charging Cable,1,11.95,04/28/19 11:39,"656 Hill St, San Francisco, CA 94016" +187987,AA Batteries (4-pack),1,3.84,04/03/19 21:44,"327 Hill St, Dallas, TX 75001" +187988,AA Batteries (4-pack),1,3.84,04/03/19 20:54,"328 Madison St, Dallas, TX 75001" +187989,AA Batteries (4-pack),2,3.84,04/24/19 20:41,"212 Highland St, Dallas, TX 75001" +187990,Wired Headphones,2,11.99,04/10/19 01:39,"514 4th St, Boston, MA 02215" +187991,34in Ultrawide Monitor,1,379.99,04/25/19 21:21,"461 Highland St, Seattle, WA 98101" +187992,LG Washing Machine,1,600.0,04/06/19 12:16,"368 Main St, New York City, NY 10001" +187993,Wired Headphones,1,11.99,04/28/19 10:40,"553 Lakeview St, San Francisco, CA 94016" +187994,USB-C Charging Cable,1,11.95,04/22/19 19:50,"228 Center St, Portland, OR 97035" +187995,Bose SoundSport Headphones,1,99.99,04/23/19 13:16,"384 7th St, Los Angeles, CA 90001" +187996,USB-C Charging Cable,1,11.95,04/09/19 00:15,"19 Chestnut St, Seattle, WA 98101" +187997,AA Batteries (4-pack),1,3.84,04/30/19 11:55,"247 Lake St, Los Angeles, CA 90001" +187998,AA Batteries (4-pack),5,3.84,04/08/19 18:40,"234 Forest St, San Francisco, CA 94016" +187999,27in FHD Monitor,1,149.99,04/20/19 09:17,"808 Madison St, Dallas, TX 75001" +188000,Bose SoundSport Headphones,1,99.99,04/13/19 19:43,"577 Adams St, Dallas, TX 75001" +188001,27in 4K Gaming Monitor,1,389.99,04/10/19 20:55,"521 Hickory St, San Francisco, CA 94016" +188002,iPhone,1,700,04/13/19 15:07,"301 Spruce St, New York City, NY 10001" +188002,Lightning Charging Cable,1,14.95,04/13/19 15:07,"301 Spruce St, New York City, NY 10001" +188003,AA Batteries (4-pack),2,3.84,04/22/19 15:49,"709 Adams St, Seattle, WA 98101" +188004,USB-C Charging Cable,1,11.95,04/06/19 21:58,"426 Washington St, Boston, MA 02215" +188005,27in FHD Monitor,1,149.99,04/05/19 18:33,"262 1st St, San Francisco, CA 94016" +188006,27in FHD Monitor,1,149.99,04/12/19 23:31,"246 2nd St, Seattle, WA 98101" +188007,AA Batteries (4-pack),1,3.84,04/18/19 08:02,"645 Madison St, Los Angeles, CA 90001" +188008,USB-C Charging Cable,1,11.95,04/14/19 11:11,"988 South St, New York City, NY 10001" +188009,Google Phone,1,600,04/06/19 11:43,"325 Center St, San Francisco, CA 94016" +188009,USB-C Charging Cable,1,11.95,04/06/19 11:43,"325 Center St, San Francisco, CA 94016" +188010,Apple Airpods Headphones,1,150,04/30/19 20:56,"913 Church St, New York City, NY 10001" +188011,27in 4K Gaming Monitor,1,389.99,04/21/19 16:59,"688 Spruce St, San Francisco, CA 94016" +188012,Apple Airpods Headphones,1,150,04/10/19 21:37,"816 Washington St, Los Angeles, CA 90001" +188013,USB-C Charging Cable,1,11.95,04/15/19 20:05,"29 8th St, Boston, MA 02215" +188014,Bose SoundSport Headphones,1,99.99,04/07/19 15:41,"459 Center St, New York City, NY 10001" +188015,AAA Batteries (4-pack),1,2.99,04/28/19 20:10,"387 Forest St, Seattle, WA 98101" +188016,Apple Airpods Headphones,1,150,04/04/19 09:44,"695 Church St, Austin, TX 73301" +188017,Wired Headphones,1,11.99,04/14/19 18:12,"688 Adams St, Atlanta, GA 30301" +188018,Lightning Charging Cable,1,14.95,04/26/19 14:04,"722 Jackson St, Austin, TX 73301" +188019,USB-C Charging Cable,1,11.95,04/21/19 20:27,"620 Hill St, San Francisco, CA 94016" +188020,Bose SoundSport Headphones,1,99.99,04/03/19 18:35,"999 5th St, New York City, NY 10001" +188021,iPhone,1,700,04/13/19 21:42,"576 Johnson St, Atlanta, GA 30301" +188022,Apple Airpods Headphones,1,150,04/12/19 14:36,"700 9th St, San Francisco, CA 94016" +188023,iPhone,1,700,04/28/19 06:46,"97 Dogwood St, Seattle, WA 98101" +188024,AA Batteries (4-pack),3,3.84,04/24/19 10:27,"803 13th St, San Francisco, CA 94016" +188025,USB-C Charging Cable,1,11.95,04/28/19 09:18,"944 Madison St, San Francisco, CA 94016" +188026,AA Batteries (4-pack),1,3.84,04/11/19 10:26,"176 Willow St, Boston, MA 02215" +188027,Wired Headphones,1,11.99,04/03/19 10:28,"275 Pine St, Dallas, TX 75001" +188028,AA Batteries (4-pack),1,3.84,04/13/19 11:37,"156 Washington St, San Francisco, CA 94016" +188029,AA Batteries (4-pack),1,3.84,04/26/19 11:48,"124 5th St, Austin, TX 73301" +188030,Lightning Charging Cable,1,14.95,04/28/19 00:46,"431 Adams St, Portland, OR 97035" +188031,20in Monitor,1,109.99,04/20/19 21:58,"766 Lake St, Boston, MA 02215" +188032,Lightning Charging Cable,1,14.95,04/06/19 17:53,"718 14th St, New York City, NY 10001" +188033,USB-C Charging Cable,2,11.95,04/24/19 08:03,"451 Hill St, San Francisco, CA 94016" +188034,AA Batteries (4-pack),2,3.84,04/25/19 08:28,"75 River St, Los Angeles, CA 90001" +188035,34in Ultrawide Monitor,1,379.99,04/28/19 18:57,"780 4th St, Atlanta, GA 30301" +188036,ThinkPad Laptop,1,999.99,04/22/19 20:03,"871 Church St, Los Angeles, CA 90001" +188037,Bose SoundSport Headphones,1,99.99,04/02/19 13:38,"416 Wilson St, New York City, NY 10001" +188038,Apple Airpods Headphones,1,150,04/26/19 18:08,"348 Jefferson St, Dallas, TX 75001" +188039,AAA Batteries (4-pack),1,2.99,04/07/19 20:57,"7 North St, San Francisco, CA 94016" +188040,Apple Airpods Headphones,1,150,04/28/19 15:39,"356 Chestnut St, Boston, MA 02215" +188041,Flatscreen TV,1,300,04/06/19 18:31,"238 Highland St, Boston, MA 02215" +188042,USB-C Charging Cable,1,11.95,04/18/19 12:05,"860 8th St, New York City, NY 10001" +188043,Wired Headphones,1,11.99,04/25/19 21:18,"997 9th St, Portland, OR 97035" +188044,Bose SoundSport Headphones,1,99.99,04/16/19 20:50,"225 Madison St, New York City, NY 10001" +188045,Lightning Charging Cable,1,14.95,04/25/19 20:01,"219 Lake St, Dallas, TX 75001" +188046,AA Batteries (4-pack),3,3.84,04/29/19 20:11,"18 Hill St, Boston, MA 02215" +188047,AA Batteries (4-pack),1,3.84,04/08/19 20:38,"126 6th St, Dallas, TX 75001" +188048,USB-C Charging Cable,1,11.95,04/27/19 18:51,"436 Spruce St, Austin, TX 73301" +188049,Bose SoundSport Headphones,1,99.99,04/02/19 13:59,"743 5th St, Dallas, TX 75001" +188050,27in 4K Gaming Monitor,1,389.99,04/26/19 08:41,"760 14th St, Seattle, WA 98101" +188051,Lightning Charging Cable,1,14.95,04/05/19 21:38,"359 Cedar St, San Francisco, CA 94016" +188052,AAA Batteries (4-pack),1,2.99,04/21/19 11:58,"953 14th St, Portland, OR 97035" +188053,USB-C Charging Cable,1,11.95,04/21/19 12:57,"583 5th St, Los Angeles, CA 90001" +188054,34in Ultrawide Monitor,1,379.99,04/01/19 15:14,"505 Johnson St, Boston, MA 02215" +188055,Lightning Charging Cable,1,14.95,04/08/19 15:11,"362 8th St, San Francisco, CA 94016" +188056,Apple Airpods Headphones,1,150,04/01/19 18:02,"604 Elm St, San Francisco, CA 94016" +188056,AAA Batteries (4-pack),1,2.99,04/01/19 18:02,"604 Elm St, San Francisco, CA 94016" +188057,27in 4K Gaming Monitor,1,389.99,04/05/19 15:32,"29 Hill St, Seattle, WA 98101" +188058,USB-C Charging Cable,1,11.95,04/01/19 14:35,"679 Washington St, Seattle, WA 98101" +188059,Apple Airpods Headphones,1,150,04/25/19 17:52,"553 Main St, San Francisco, CA 94016" +188060,AAA Batteries (4-pack),1,2.99,04/17/19 13:34,"977 Hickory St, Portland, OR 97035" +188061,iPhone,1,700,04/28/19 09:16,"475 6th St, San Francisco, CA 94016" +188062,USB-C Charging Cable,1,11.95,04/01/19 12:26,"688 Wilson St, New York City, NY 10001" +188063,AA Batteries (4-pack),1,3.84,04/04/19 08:44,"545 Ridge St, Atlanta, GA 30301" +188064,Wired Headphones,1,11.99,04/27/19 09:58,"700 Lake St, Los Angeles, CA 90001" +188065,Apple Airpods Headphones,1,150,04/10/19 11:50,"329 Pine St, Seattle, WA 98101" +188066,Wired Headphones,1,11.99,04/13/19 19:01,"321 Spruce St, Los Angeles, CA 90001" +188067,AAA Batteries (4-pack),3,2.99,04/21/19 19:59,"825 8th St, Boston, MA 02215" +188068,iPhone,1,700,04/27/19 18:27,"801 West St, Dallas, TX 75001" +188069,AAA Batteries (4-pack),2,2.99,04/01/19 20:16,"910 4th St, New York City, NY 10001" +188070,Lightning Charging Cable,1,14.95,04/03/19 21:31,"760 10th St, San Francisco, CA 94016" +188071,27in FHD Monitor,1,149.99,04/12/19 20:27,"93 Chestnut St, Austin, TX 73301" +188072,Lightning Charging Cable,1,14.95,04/05/19 16:39,"46 Johnson St, New York City, NY 10001" +188073,USB-C Charging Cable,1,11.95,04/26/19 18:58,"342 Johnson St, Portland, OR 97035" +188074,Wired Headphones,1,11.99,04/23/19 15:37,"999 13th St, Seattle, WA 98101" +188075,USB-C Charging Cable,1,11.95,04/03/19 16:35,"71 Church St, Boston, MA 02215" +188076,Bose SoundSport Headphones,1,99.99,04/22/19 14:29,"468 Lincoln St, Los Angeles, CA 90001" +188077,USB-C Charging Cable,1,11.95,04/24/19 00:12,"350 Lincoln St, Portland, OR 97035" +188078,27in 4K Gaming Monitor,1,389.99,04/20/19 23:21,"673 Pine St, Boston, MA 02215" +188079,AA Batteries (4-pack),1,3.84,04/10/19 20:58,"164 7th St, Dallas, TX 75001" +188080,27in FHD Monitor,1,149.99,04/24/19 15:10,"619 5th St, Seattle, WA 98101" +188081,Wired Headphones,1,11.99,04/13/19 19:01,"358 Wilson St, Austin, TX 73301" +188082,Wired Headphones,1,11.99,04/23/19 20:15,"520 Adams St, Boston, MA 02215" +188083,USB-C Charging Cable,1,11.95,04/23/19 08:28,"463 Jackson St, San Francisco, CA 94016" +188084,USB-C Charging Cable,1,11.95,04/15/19 09:56,"207 River St, Austin, TX 73301" +188085,Lightning Charging Cable,1,14.95,04/15/19 21:06,"14 Washington St, Boston, MA 02215" +188086,Lightning Charging Cable,1,14.95,04/19/19 00:05,"87 Lakeview St, Portland, OR 97035" +188087,Bose SoundSport Headphones,1,99.99,04/21/19 20:31,"696 Cherry St, Dallas, TX 75001" +188088,USB-C Charging Cable,1,11.95,04/24/19 10:04,"760 Meadow St, New York City, NY 10001" +188089,Wired Headphones,1,11.99,04/19/19 15:33,"58 2nd St, Los Angeles, CA 90001" +188090,27in 4K Gaming Monitor,1,389.99,04/18/19 16:05,"291 11th St, San Francisco, CA 94016" +188091,Bose SoundSport Headphones,1,99.99,04/25/19 17:00,"631 13th St, Seattle, WA 98101" +188092,Wired Headphones,1,11.99,04/11/19 20:02,"611 Lincoln St, San Francisco, CA 94016" +188093,USB-C Charging Cable,1,11.95,04/18/19 16:33,"130 Cherry St, San Francisco, CA 94016" +188094,Wired Headphones,1,11.99,04/20/19 12:26,"747 4th St, San Francisco, CA 94016" +188095,AA Batteries (4-pack),1,3.84,04/08/19 03:47,"799 Hill St, Dallas, TX 75001" +188096,Lightning Charging Cable,1,14.95,04/28/19 05:27,"656 Church St, San Francisco, CA 94016" +188097,Flatscreen TV,1,300,04/02/19 06:44,"285 West St, Boston, MA 02215" +188098,AAA Batteries (4-pack),1,2.99,04/23/19 15:18,"201 Lincoln St, Austin, TX 73301" +188099,USB-C Charging Cable,1,11.95,04/10/19 20:01,"399 Willow St, New York City, NY 10001" +188100,Wired Headphones,1,11.99,04/29/19 12:47,"163 Main St, San Francisco, CA 94016" +188101,Bose SoundSport Headphones,1,99.99,04/26/19 11:34,"315 Hill St, Austin, TX 73301" +188102,AAA Batteries (4-pack),1,2.99,04/08/19 21:07,"452 Cherry St, Seattle, WA 98101" +188103,Bose SoundSport Headphones,1,99.99,04/10/19 15:55,"627 Elm St, Seattle, WA 98101" +188104,Wired Headphones,1,11.99,04/15/19 17:37,"7 Center St, Portland, OR 97035" +188105,USB-C Charging Cable,1,11.95,04/10/19 01:51,"63 Washington St, Boston, MA 02215" +188106,AAA Batteries (4-pack),1,2.99,04/21/19 22:56,"118 7th St, Seattle, WA 98101" +188107,Lightning Charging Cable,1,14.95,04/09/19 19:44,"352 4th St, Boston, MA 02215" +188108,iPhone,1,700,04/28/19 14:39,"206 Lake St, Boston, MA 02215" +188109,Apple Airpods Headphones,1,150,04/08/19 18:20,"122 8th St, Dallas, TX 75001" +188110,USB-C Charging Cable,2,11.95,04/20/19 15:49,"986 Willow St, San Francisco, CA 94016" +188111,AA Batteries (4-pack),1,3.84,04/07/19 19:46,"838 Maple St, San Francisco, CA 94016" +188112,AAA Batteries (4-pack),1,2.99,04/01/19 13:32,"473 13th St, Atlanta, GA 30301" +188113,20in Monitor,1,109.99,04/06/19 16:26,"909 11th St, Atlanta, GA 30301" +188114,34in Ultrawide Monitor,1,379.99,04/19/19 08:36,"278 Johnson St, Atlanta, GA 30301" +188115,Apple Airpods Headphones,1,150,04/06/19 09:06,"425 8th St, Los Angeles, CA 90001" +188116,Wired Headphones,1,11.99,04/19/19 13:34,"317 Pine St, New York City, NY 10001" +188116,iPhone,1,700,04/19/19 13:34,"317 Pine St, New York City, NY 10001" +188117,Bose SoundSport Headphones,1,99.99,04/05/19 22:50,"239 Ridge St, Los Angeles, CA 90001" +188118,Wired Headphones,1,11.99,04/30/19 11:24,"339 Lake St, Los Angeles, CA 90001" +188119,AAA Batteries (4-pack),1,2.99,04/21/19 10:02,"475 Maple St, Los Angeles, CA 90001" +188120,AA Batteries (4-pack),1,3.84,04/13/19 13:16,"494 Adams St, Boston, MA 02215" +188121,27in FHD Monitor,1,149.99,04/13/19 15:28,"512 Cherry St, San Francisco, CA 94016" +188122,Wired Headphones,1,11.99,04/21/19 12:06,"806 9th St, Boston, MA 02215" +188123,Lightning Charging Cable,1,14.95,04/12/19 16:36,"218 Spruce St, San Francisco, CA 94016" +188124,Flatscreen TV,1,300,04/27/19 03:55,"171 North St, Dallas, TX 75001" +188125,AA Batteries (4-pack),1,3.84,04/24/19 16:16,"470 Wilson St, New York City, NY 10001" +188126,USB-C Charging Cable,1,11.95,04/21/19 14:04,"916 12th St, Portland, OR 97035" +188127,Bose SoundSport Headphones,1,99.99,04/06/19 09:31,"159 8th St, Los Angeles, CA 90001" +188128,Apple Airpods Headphones,1,150,04/04/19 21:15,"287 Lincoln St, Seattle, WA 98101" +188129,AA Batteries (4-pack),1,3.84,04/26/19 18:58,"581 7th St, Boston, MA 02215" +188130,AAA Batteries (4-pack),1,2.99,04/06/19 07:20,"386 2nd St, Los Angeles, CA 90001" +188131,Lightning Charging Cable,1,14.95,04/09/19 13:37,"217 Lincoln St, Boston, MA 02215" +188132,Flatscreen TV,1,300,04/17/19 10:50,"176 Willow St, Boston, MA 02215" +188133,AAA Batteries (4-pack),2,2.99,04/16/19 21:17,"114 Maple St, San Francisco, CA 94016" +188134,Bose SoundSport Headphones,1,99.99,04/12/19 16:35,"362 Willow St, San Francisco, CA 94016" +188135,Wired Headphones,2,11.99,04/18/19 11:37,"710 South St, Atlanta, GA 30301" +188136,Wired Headphones,1,11.99,04/23/19 09:12,"254 Hickory St, New York City, NY 10001" +188137,Lightning Charging Cable,1,14.95,04/28/19 16:38,"444 Sunset St, Los Angeles, CA 90001" +188138,USB-C Charging Cable,1,11.95,04/27/19 13:04,"95 12th St, Los Angeles, CA 90001" +188139,AAA Batteries (4-pack),1,2.99,04/21/19 13:00,"197 Highland St, Los Angeles, CA 90001" +188140,AAA Batteries (4-pack),1,2.99,04/25/19 21:06,"989 Meadow St, Seattle, WA 98101" +188141,AA Batteries (4-pack),1,3.84,04/22/19 13:39,"250 Spruce St, Portland, OR 97035" +188142,Bose SoundSport Headphones,1,99.99,04/28/19 20:09,"708 Madison St, Austin, TX 73301" +188143,Flatscreen TV,1,300,04/14/19 07:37,"649 4th St, Los Angeles, CA 90001" +188144,Apple Airpods Headphones,1,150,04/24/19 13:13,"110 Walnut St, San Francisco, CA 94016" +188145,AAA Batteries (4-pack),2,2.99,05/01/19 00:02,"791 1st St, Boston, MA 02215" +188146,Wired Headphones,1,11.99,04/11/19 09:42,"382 Hill St, Dallas, TX 75001" +188147,Bose SoundSport Headphones,1,99.99,04/22/19 15:51,"799 Spruce St, Atlanta, GA 30301" +188148,Macbook Pro Laptop,1,1700,04/17/19 18:28,"10 12th St, Seattle, WA 98101" +188149,27in FHD Monitor,1,149.99,04/14/19 17:46,"697 Sunset St, Seattle, WA 98101" +188150,AAA Batteries (4-pack),1,2.99,04/03/19 16:37,"149 Elm St, Boston, MA 02215" +188151,Macbook Pro Laptop,1,1700,04/12/19 14:00,"257 4th St, New York City, NY 10001" +188152,Apple Airpods Headphones,1,150,04/18/19 20:56,"898 Center St, San Francisco, CA 94016" +,,,,, +188153,AA Batteries (4-pack),2,3.84,04/29/19 08:32,"193 Highland St, Los Angeles, CA 90001" +188154,AA Batteries (4-pack),1,3.84,04/03/19 21:48,"883 Jefferson St, San Francisco, CA 94016" +188155,Lightning Charging Cable,1,14.95,04/09/19 11:44,"800 Center St, Seattle, WA 98101" +188155,Bose SoundSport Headphones,1,99.99,04/09/19 11:44,"800 Center St, Seattle, WA 98101" +188156,Bose SoundSport Headphones,1,99.99,04/27/19 12:48,"139 Willow St, San Francisco, CA 94016" +188157,Wired Headphones,1,11.99,04/28/19 13:54,"885 Hickory St, Boston, MA 02215" +188158,Lightning Charging Cable,1,14.95,04/22/19 12:58,"549 Church St, New York City, NY 10001" +188159,USB-C Charging Cable,1,11.95,04/28/19 11:54,"877 7th St, San Francisco, CA 94016" +188160,Macbook Pro Laptop,1,1700,04/27/19 14:22,"791 River St, Atlanta, GA 30301" +188161,AA Batteries (4-pack),2,3.84,04/14/19 16:49,"322 Dogwood St, Seattle, WA 98101" +188162,Lightning Charging Cable,1,14.95,04/24/19 21:57,"659 Park St, New York City, NY 10001" +188163,iPhone,1,700,04/30/19 07:45,"347 Washington St, Los Angeles, CA 90001" +188164,Flatscreen TV,1,300,04/12/19 00:13,"902 Pine St, Austin, TX 73301" +188165,AAA Batteries (4-pack),1,2.99,04/15/19 09:44,"500 1st St, Los Angeles, CA 90001" +188166,Apple Airpods Headphones,1,150,04/04/19 03:02,"868 Maple St, New York City, NY 10001" +188167,Flatscreen TV,1,300,04/25/19 10:50,"6 Highland St, Seattle, WA 98101" +188168,Lightning Charging Cable,1,14.95,04/02/19 16:40,"943 Elm St, San Francisco, CA 94016" +188169,iPhone,1,700,04/13/19 12:49,"284 Forest St, Portland, OR 97035" +188170,Bose SoundSport Headphones,1,99.99,04/07/19 23:16,"721 Johnson St, San Francisco, CA 94016" +188171,Flatscreen TV,1,300,04/10/19 01:24,"985 Sunset St, New York City, NY 10001" +188172,Apple Airpods Headphones,1,150,04/22/19 22:52,"965 Willow St, Los Angeles, CA 90001" +188173,Flatscreen TV,1,300,04/04/19 15:32,"164 7th St, Los Angeles, CA 90001" +188174,Wired Headphones,1,11.99,04/02/19 18:36,"538 Lakeview St, San Francisco, CA 94016" +188175,USB-C Charging Cable,1,11.95,04/06/19 20:20,"2 Church St, Los Angeles, CA 90001" +188176,iPhone,1,700,04/24/19 15:20,"23 7th St, New York City, NY 10001" +188176,Wired Headphones,1,11.99,04/24/19 15:20,"23 7th St, New York City, NY 10001" +188177,AAA Batteries (4-pack),1,2.99,04/24/19 18:21,"858 Wilson St, New York City, NY 10001" +188178,AAA Batteries (4-pack),2,2.99,04/04/19 23:38,"53 5th St, Portland, ME 04101" +188179,iPhone,1,700,04/04/19 16:34,"129 10th St, San Francisco, CA 94016" +188180,Wired Headphones,1,11.99,04/26/19 11:08,"813 Walnut St, Boston, MA 02215" +188181,Apple Airpods Headphones,1,150,04/02/19 10:02,"317 River St, San Francisco, CA 94016" +188182,AA Batteries (4-pack),2,3.84,04/21/19 20:28,"573 North St, Portland, OR 97035" +188183,27in 4K Gaming Monitor,1,389.99,04/19/19 19:55,"190 Cherry St, Dallas, TX 75001" +188184,Flatscreen TV,1,300,04/04/19 13:07,"32 6th St, Boston, MA 02215" +188185,iPhone,1,700,04/24/19 17:37,"243 Hickory St, San Francisco, CA 94016" +188186,AAA Batteries (4-pack),1,2.99,04/05/19 21:20,"48 Chestnut St, San Francisco, CA 94016" +188187,USB-C Charging Cable,1,11.95,04/21/19 21:36,"142 Jackson St, New York City, NY 10001" +188188,27in 4K Gaming Monitor,1,389.99,04/23/19 09:36,"480 Meadow St, San Francisco, CA 94016" +188189,Lightning Charging Cable,1,14.95,04/07/19 06:14,"667 West St, San Francisco, CA 94016" +188190,Apple Airpods Headphones,1,150,04/11/19 16:45,"884 14th St, San Francisco, CA 94016" +188191,Bose SoundSport Headphones,1,99.99,04/01/19 16:40,"124 Meadow St, Atlanta, GA 30301" +188192,27in 4K Gaming Monitor,1,389.99,04/03/19 18:03,"956 Main St, Los Angeles, CA 90001" +188193,27in FHD Monitor,1,149.99,04/06/19 11:55,"68 Willow St, Los Angeles, CA 90001" +188194,Lightning Charging Cable,2,14.95,04/17/19 13:22,"230 Maple St, San Francisco, CA 94016" +188195,Google Phone,1,600,04/04/19 11:29,"279 Church St, Dallas, TX 75001" +188196,Lightning Charging Cable,1,14.95,04/29/19 23:31,"758 14th St, San Francisco, CA 94016" +188197,Wired Headphones,1,11.99,04/16/19 12:53,"768 Lake St, Los Angeles, CA 90001" +188198,Bose SoundSport Headphones,1,99.99,04/10/19 16:38,"83 Ridge St, Los Angeles, CA 90001" +188199,Flatscreen TV,1,300,04/20/19 08:14,"986 Jackson St, Seattle, WA 98101" +188200,Bose SoundSport Headphones,1,99.99,04/21/19 16:47,"75 9th St, San Francisco, CA 94016" +188201,AAA Batteries (4-pack),1,2.99,04/09/19 11:21,"770 Meadow St, Boston, MA 02215" +188202,AAA Batteries (4-pack),1,2.99,04/09/19 15:07,"892 West St, Seattle, WA 98101" +188203,20in Monitor,1,109.99,04/28/19 14:14,"295 Madison St, San Francisco, CA 94016" +188204,Apple Airpods Headphones,1,150,04/23/19 09:12,"163 8th St, New York City, NY 10001" +188205,Bose SoundSport Headphones,1,99.99,04/08/19 16:05,"986 Church St, San Francisco, CA 94016" +188206,Lightning Charging Cable,1,14.95,04/26/19 15:51,"463 Adams St, Seattle, WA 98101" +188207,Wired Headphones,1,11.99,04/24/19 13:59,"354 Hill St, Austin, TX 73301" +188208,USB-C Charging Cable,1,11.95,04/07/19 14:50,"126 Center St, Seattle, WA 98101" +188209,AA Batteries (4-pack),1,3.84,04/17/19 14:41,"153 Walnut St, San Francisco, CA 94016" +188210,AA Batteries (4-pack),1,3.84,04/17/19 00:24,"222 5th St, New York City, NY 10001" +188211,USB-C Charging Cable,1,11.95,04/17/19 09:14,"962 Lincoln St, San Francisco, CA 94016" +188212,27in FHD Monitor,1,149.99,04/02/19 14:22,"668 Lakeview St, Atlanta, GA 30301" +188213,Bose SoundSport Headphones,1,99.99,04/16/19 10:41,"741 12th St, Atlanta, GA 30301" +188214,USB-C Charging Cable,1,11.95,04/29/19 12:18,"765 1st St, Portland, ME 04101" +188215,AA Batteries (4-pack),1,3.84,04/23/19 19:20,"511 Adams St, New York City, NY 10001" +188216,AA Batteries (4-pack),1,3.84,04/06/19 17:14,"938 Wilson St, New York City, NY 10001" +188217,AAA Batteries (4-pack),1,2.99,04/28/19 12:19,"860 Madison St, Austin, TX 73301" +188218,AAA Batteries (4-pack),3,2.99,04/29/19 16:48,"198 Willow St, New York City, NY 10001" +188219,20in Monitor,1,109.99,04/13/19 19:40,"113 5th St, Boston, MA 02215" +188220,AAA Batteries (4-pack),2,2.99,04/04/19 19:20,"476 Lincoln St, San Francisco, CA 94016" +188221,Wired Headphones,1,11.99,04/05/19 19:39,"991 8th St, San Francisco, CA 94016" +188222,Lightning Charging Cable,1,14.95,04/09/19 18:17,"879 Highland St, Atlanta, GA 30301" +188223,USB-C Charging Cable,1,11.95,04/08/19 18:29,"342 Madison St, San Francisco, CA 94016" +188224,Apple Airpods Headphones,1,150,04/11/19 13:44,"658 11th St, Portland, OR 97035" +188225,Lightning Charging Cable,1,14.95,04/13/19 18:50,"719 Maple St, Portland, OR 97035" +188226,Lightning Charging Cable,1,14.95,04/28/19 16:58,"98 Sunset St, Los Angeles, CA 90001" +188227,Wired Headphones,1,11.99,04/01/19 22:12,"142 Pine St, San Francisco, CA 94016" +188228,AAA Batteries (4-pack),2,2.99,04/24/19 18:28,"284 Main St, Los Angeles, CA 90001" +188229,AA Batteries (4-pack),1,3.84,04/28/19 11:35,"679 South St, Austin, TX 73301" +188230,Wired Headphones,1,11.99,04/27/19 12:00,"372 River St, San Francisco, CA 94016" +188231,27in FHD Monitor,1,149.99,04/15/19 14:17,"261 Washington St, Boston, MA 02215" +188232,27in 4K Gaming Monitor,1,389.99,04/19/19 04:01,"771 Center St, Los Angeles, CA 90001" +188233,AA Batteries (4-pack),1,3.84,04/18/19 19:51,"273 Cedar St, Dallas, TX 75001" +188234,Bose SoundSport Headphones,1,99.99,04/26/19 12:17,"37 Church St, Portland, OR 97035" +188235,20in Monitor,1,109.99,04/26/19 22:36,"121 Adams St, New York City, NY 10001" +188236,34in Ultrawide Monitor,1,379.99,04/28/19 11:54,"132 Jackson St, San Francisco, CA 94016" +188237,Wired Headphones,1,11.99,04/03/19 19:54,"730 West St, San Francisco, CA 94016" +188238,AA Batteries (4-pack),1,3.84,04/24/19 07:41,"148 14th St, Seattle, WA 98101" +188239,27in FHD Monitor,1,149.99,04/18/19 15:02,"946 6th St, Seattle, WA 98101" +188240,Macbook Pro Laptop,1,1700,04/25/19 20:51,"113 4th St, San Francisco, CA 94016" +188241,Macbook Pro Laptop,1,1700,04/13/19 12:57,"589 4th St, New York City, NY 10001" +188242,AAA Batteries (4-pack),1,2.99,04/19/19 15:25,"409 Adams St, Los Angeles, CA 90001" +188243,Bose SoundSport Headphones,1,99.99,04/15/19 17:54,"357 9th St, San Francisco, CA 94016" +188244,20in Monitor,1,109.99,04/05/19 09:32,"683 11th St, New York City, NY 10001" +188245,Apple Airpods Headphones,1,150,04/27/19 20:12,"374 South St, Los Angeles, CA 90001" +188246,USB-C Charging Cable,1,11.95,04/20/19 11:54,"866 Adams St, Portland, OR 97035" +188247,USB-C Charging Cable,1,11.95,04/17/19 18:35,"237 12th St, Seattle, WA 98101" +188248,ThinkPad Laptop,1,999.99,04/12/19 21:48,"983 Lake St, Portland, OR 97035" +188249,USB-C Charging Cable,1,11.95,04/30/19 02:06,"194 Lake St, San Francisco, CA 94016" +188250,ThinkPad Laptop,1,999.99,04/09/19 10:38,"447 Highland St, Austin, TX 73301" +188251,AA Batteries (4-pack),1,3.84,04/13/19 21:30,"965 9th St, Austin, TX 73301" +188252,USB-C Charging Cable,1,11.95,04/15/19 14:47,"554 Highland St, Dallas, TX 75001" +188253,20in Monitor,1,109.99,04/10/19 00:19,"829 11th St, Boston, MA 02215" +188254,Wired Headphones,1,11.99,04/22/19 20:12,"827 5th St, Boston, MA 02215" +188255,Google Phone,1,600,04/05/19 15:33,"26 Jackson St, Boston, MA 02215" +188256,Google Phone,1,600,04/17/19 13:49,"360 Cherry St, Dallas, TX 75001" +188256,USB-C Charging Cable,1,11.95,04/17/19 13:49,"360 Cherry St, Dallas, TX 75001" +188257,Wired Headphones,1,11.99,04/14/19 01:00,"852 North St, San Francisco, CA 94016" +188257,AA Batteries (4-pack),1,3.84,04/14/19 01:00,"852 North St, San Francisco, CA 94016" +188258,20in Monitor,1,109.99,04/28/19 16:03,"483 Chestnut St, San Francisco, CA 94016" +188259,Bose SoundSport Headphones,1,99.99,04/08/19 21:13,"329 River St, Portland, OR 97035" +188260,Wired Headphones,1,11.99,04/11/19 12:56,"561 West St, Boston, MA 02215" +188261,27in 4K Gaming Monitor,1,389.99,04/23/19 09:26,"316 12th St, San Francisco, CA 94016" +188262,34in Ultrawide Monitor,1,379.99,04/29/19 17:07,"338 Maple St, Seattle, WA 98101" +188263,Apple Airpods Headphones,1,150,04/25/19 09:33,"874 Pine St, Portland, OR 97035" +188264,Flatscreen TV,1,300,04/06/19 19:29,"198 River St, Los Angeles, CA 90001" +188265,34in Ultrawide Monitor,1,379.99,04/05/19 10:23,"272 North St, San Francisco, CA 94016" +188266,Apple Airpods Headphones,1,150,04/14/19 12:29,"908 Ridge St, Los Angeles, CA 90001" +188267,AAA Batteries (4-pack),1,2.99,04/06/19 13:02,"322 Lincoln St, Austin, TX 73301" +188268,USB-C Charging Cable,2,11.95,04/28/19 08:12,"208 Spruce St, San Francisco, CA 94016" +188269,AAA Batteries (4-pack),1,2.99,04/30/19 14:16,"998 North St, New York City, NY 10001" +188270,27in FHD Monitor,1,149.99,04/12/19 13:32,"489 Lakeview St, Portland, ME 04101" +188271,Bose SoundSport Headphones,1,99.99,04/19/19 10:46,"77 Forest St, Atlanta, GA 30301" +188272,Lightning Charging Cable,1,14.95,04/20/19 09:49,"880 River St, San Francisco, CA 94016" +188273,Lightning Charging Cable,1,14.95,04/20/19 13:07,"591 10th St, San Francisco, CA 94016" +188274,Lightning Charging Cable,1,14.95,04/11/19 21:29,"763 6th St, Los Angeles, CA 90001" +188275,Vareebadd Phone,1,400,04/24/19 16:39,"571 Lincoln St, Austin, TX 73301" +188276,AAA Batteries (4-pack),1,2.99,04/19/19 17:02,"133 Forest St, New York City, NY 10001" +188277,Wired Headphones,1,11.99,04/26/19 19:03,"515 Spruce St, San Francisco, CA 94016" +188278,Wired Headphones,1,11.99,04/02/19 11:49,"563 10th St, San Francisco, CA 94016" +188279,Apple Airpods Headphones,1,150,04/27/19 14:30,"559 9th St, New York City, NY 10001" +188280,iPhone,1,700,04/14/19 20:47,"542 6th St, Atlanta, GA 30301" +188281,AA Batteries (4-pack),3,3.84,04/03/19 14:19,"296 West St, San Francisco, CA 94016" +188282,USB-C Charging Cable,1,11.95,04/07/19 16:24,"360 North St, New York City, NY 10001" +188283,Lightning Charging Cable,2,14.95,04/21/19 12:59,"976 Park St, Austin, TX 73301" +188284,Google Phone,1,600,04/14/19 21:19,"825 Pine St, San Francisco, CA 94016" +188285,Lightning Charging Cable,1,14.95,04/28/19 21:56,"494 12th St, New York City, NY 10001" +188286,Bose SoundSport Headphones,1,99.99,04/24/19 20:18,"25 13th St, Seattle, WA 98101" +188287,AA Batteries (4-pack),1,3.84,04/26/19 21:21,"846 Walnut St, Dallas, TX 75001" +188288,USB-C Charging Cable,2,11.95,04/19/19 11:31,"384 Forest St, Dallas, TX 75001" +188289,AAA Batteries (4-pack),1,2.99,04/21/19 23:26,"190 2nd St, Atlanta, GA 30301" +188290,Bose SoundSport Headphones,1,99.99,04/25/19 13:22,"14 Lake St, Los Angeles, CA 90001" +188291,Lightning Charging Cable,2,14.95,04/12/19 13:23,"304 11th St, San Francisco, CA 94016" +188292,iPhone,1,700,04/09/19 09:52,"500 Jackson St, San Francisco, CA 94016" +188293,Lightning Charging Cable,1,14.95,04/20/19 22:29,"557 Maple St, New York City, NY 10001" +188294,Lightning Charging Cable,1,14.95,04/24/19 11:10,"847 11th St, Los Angeles, CA 90001" +188295,USB-C Charging Cable,1,11.95,04/26/19 18:49,"198 Cedar St, San Francisco, CA 94016" +188296,AAA Batteries (4-pack),1,2.99,04/06/19 14:46,"515 Elm St, Austin, TX 73301" +188297,AAA Batteries (4-pack),1,2.99,04/12/19 12:13,"87 Highland St, Seattle, WA 98101" +188298,Bose SoundSport Headphones,1,99.99,04/14/19 18:05,"564 Washington St, Seattle, WA 98101" +188299,27in FHD Monitor,1,149.99,04/14/19 18:22,"727 Cedar St, Boston, MA 02215" +188300,Apple Airpods Headphones,1,150,04/28/19 13:14,"517 1st St, Los Angeles, CA 90001" +188301,AAA Batteries (4-pack),1,2.99,04/02/19 10:39,"546 Willow St, San Francisco, CA 94016" +188302,Wired Headphones,1,11.99,04/30/19 13:05,"568 Forest St, Los Angeles, CA 90001" +188303,AA Batteries (4-pack),2,3.84,04/27/19 15:27,"280 Hill St, Seattle, WA 98101" +188304,AA Batteries (4-pack),1,3.84,04/24/19 21:17,"480 Maple St, Seattle, WA 98101" +188305,Apple Airpods Headphones,1,150,04/25/19 14:03,"568 Sunset St, Los Angeles, CA 90001" +188306,LG Dryer,1,600.0,04/09/19 06:50,"408 Highland St, Seattle, WA 98101" +188307,Apple Airpods Headphones,1,150,04/11/19 17:25,"135 8th St, Dallas, TX 75001" +188308,27in FHD Monitor,1,149.99,04/14/19 09:22,"479 11th St, Seattle, WA 98101" +188309,Wired Headphones,1,11.99,04/24/19 19:07,"656 Spruce St, Los Angeles, CA 90001" +188310,AA Batteries (4-pack),1,3.84,04/09/19 08:06,"554 West St, Portland, OR 97035" +188311,AA Batteries (4-pack),1,3.84,04/09/19 17:10,"920 Willow St, Portland, OR 97035" +188312,34in Ultrawide Monitor,1,379.99,04/15/19 10:19,"483 Lake St, Boston, MA 02215" +188313,USB-C Charging Cable,1,11.95,04/30/19 00:27,"742 Lakeview St, San Francisco, CA 94016" +188314,Wired Headphones,1,11.99,04/27/19 22:27,"784 4th St, Seattle, WA 98101" +188315,AAA Batteries (4-pack),1,2.99,04/19/19 13:17,"595 Washington St, New York City, NY 10001" +188316,USB-C Charging Cable,3,11.95,04/19/19 08:45,"892 Main St, San Francisco, CA 94016" +188317,AA Batteries (4-pack),3,3.84,04/23/19 13:07,"727 8th St, Seattle, WA 98101" +188318,Lightning Charging Cable,1,14.95,04/05/19 12:41,"46 Wilson St, Atlanta, GA 30301" +188319,Wired Headphones,1,11.99,04/25/19 19:10,"584 Spruce St, Los Angeles, CA 90001" +188320,USB-C Charging Cable,1,11.95,04/14/19 09:40,"752 River St, Los Angeles, CA 90001" +188321,AAA Batteries (4-pack),3,2.99,04/19/19 14:46,"958 Ridge St, Seattle, WA 98101" +188322,Lightning Charging Cable,1,14.95,04/01/19 21:09,"920 2nd St, Dallas, TX 75001" +188323,Lightning Charging Cable,1,14.95,04/16/19 19:22,"700 4th St, Dallas, TX 75001" +188324,20in Monitor,1,109.99,04/23/19 06:22,"658 Washington St, Los Angeles, CA 90001" +188325,USB-C Charging Cable,1,11.95,04/28/19 17:50,"558 Church St, Austin, TX 73301" +188326,AAA Batteries (4-pack),1,2.99,04/14/19 16:46,"106 Cherry St, New York City, NY 10001" +188327,27in 4K Gaming Monitor,1,389.99,04/07/19 18:13,"236 1st St, Boston, MA 02215" +188328,Bose SoundSport Headphones,1,99.99,04/21/19 21:24,"240 Church St, Austin, TX 73301" +188329,Lightning Charging Cable,1,14.95,04/29/19 16:16,"948 Chestnut St, Portland, OR 97035" +188330,Google Phone,1,600,04/19/19 09:29,"912 Highland St, Dallas, TX 75001" +188331,27in FHD Monitor,1,149.99,04/12/19 06:18,"740 5th St, Los Angeles, CA 90001" +188332,Apple Airpods Headphones,1,150,04/06/19 14:32,"17 Center St, San Francisco, CA 94016" +188333,27in FHD Monitor,1,149.99,04/09/19 12:12,"770 Johnson St, Atlanta, GA 30301" +188334,Lightning Charging Cable,1,14.95,04/10/19 17:44,"981 10th St, Los Angeles, CA 90001" +188335,Lightning Charging Cable,1,14.95,04/10/19 13:21,"567 Adams St, Dallas, TX 75001" +188336,Macbook Pro Laptop,1,1700,04/25/19 21:15,"322 Chestnut St, Boston, MA 02215" +188337,Flatscreen TV,1,300,04/29/19 23:31,"848 North St, San Francisco, CA 94016" +188338,Apple Airpods Headphones,1,150,04/29/19 18:32,"507 Meadow St, Austin, TX 73301" +188339,USB-C Charging Cable,1,11.95,04/06/19 17:28,"368 Elm St, San Francisco, CA 94016" +188340,AAA Batteries (4-pack),1,2.99,04/22/19 12:33,"961 Church St, New York City, NY 10001" +188341,ThinkPad Laptop,1,999.99,04/11/19 08:35,"420 Dogwood St, Los Angeles, CA 90001" +188342,Apple Airpods Headphones,1,150,04/02/19 20:34,"119 Center St, Boston, MA 02215" +188343,AAA Batteries (4-pack),1,2.99,04/04/19 22:46,"988 Elm St, Seattle, WA 98101" +188344,Bose SoundSport Headphones,1,99.99,04/23/19 17:22,"199 7th St, San Francisco, CA 94016" +188345,Wired Headphones,1,11.99,04/24/19 15:20,"58 14th St, San Francisco, CA 94016" +188346,USB-C Charging Cable,1,11.95,04/26/19 07:47,"235 Jackson St, San Francisco, CA 94016" +188347,Vareebadd Phone,1,400,04/29/19 21:21,"915 13th St, New York City, NY 10001" +188348,Bose SoundSport Headphones,1,99.99,04/23/19 12:56,"831 Jackson St, Los Angeles, CA 90001" +188349,Wired Headphones,1,11.99,04/29/19 22:17,"756 Washington St, New York City, NY 10001" +188350,Flatscreen TV,1,300,04/15/19 21:29,"648 Main St, Boston, MA 02215" +188351,Lightning Charging Cable,1,14.95,04/17/19 15:24,"514 Forest St, Austin, TX 73301" +188352,Lightning Charging Cable,1,14.95,04/26/19 13:44,"383 Willow St, New York City, NY 10001" +188353,Google Phone,1,600,04/08/19 06:44,"232 Cedar St, San Francisco, CA 94016" +188354,Lightning Charging Cable,2,14.95,04/14/19 13:18,"42 1st St, New York City, NY 10001" +188355,AA Batteries (4-pack),3,3.84,04/08/19 04:56,"752 Jefferson St, Seattle, WA 98101" +188356,AAA Batteries (4-pack),1,2.99,04/20/19 11:35,"303 North St, San Francisco, CA 94016" +188357,AA Batteries (4-pack),1,3.84,04/21/19 14:16,"840 Maple St, New York City, NY 10001" +188358,AAA Batteries (4-pack),1,2.99,04/06/19 15:25,"538 10th St, Los Angeles, CA 90001" +188359,USB-C Charging Cable,1,11.95,04/06/19 16:18,"795 Cedar St, Los Angeles, CA 90001" +188360,Lightning Charging Cable,1,14.95,04/20/19 23:34,"406 Willow St, San Francisco, CA 94016" +188361,AA Batteries (4-pack),1,3.84,04/17/19 21:58,"295 10th St, New York City, NY 10001" +188362,AAA Batteries (4-pack),3,2.99,04/08/19 14:24,"29 Lincoln St, Los Angeles, CA 90001" +188363,Flatscreen TV,1,300,04/30/19 20:18,"373 Maple St, Boston, MA 02215" +188364,27in FHD Monitor,1,149.99,04/13/19 10:12,"651 Pine St, Seattle, WA 98101" +188365,Lightning Charging Cable,1,14.95,04/20/19 08:44,"31 13th St, San Francisco, CA 94016" +188366,AA Batteries (4-pack),1,3.84,04/01/19 08:55,"870 Cedar St, Austin, TX 73301" +188367,34in Ultrawide Monitor,1,379.99,04/05/19 23:00,"135 Meadow St, Seattle, WA 98101" +188368,AA Batteries (4-pack),1,3.84,04/07/19 14:59,"157 Johnson St, San Francisco, CA 94016" +188369,Flatscreen TV,1,300,04/24/19 10:49,"31 Lakeview St, Atlanta, GA 30301" +188370,USB-C Charging Cable,1,11.95,04/15/19 14:09,"628 2nd St, San Francisco, CA 94016" +188371,Google Phone,1,600,04/17/19 17:55,"732 Lake St, Austin, TX 73301" +188371,USB-C Charging Cable,1,11.95,04/17/19 17:55,"732 Lake St, Austin, TX 73301" +188372,AA Batteries (4-pack),1,3.84,04/10/19 20:06,"499 8th St, Dallas, TX 75001" +188373,Bose SoundSport Headphones,1,99.99,04/12/19 20:13,"149 Pine St, Los Angeles, CA 90001" +188374,AA Batteries (4-pack),2,3.84,04/06/19 16:52,"251 Ridge St, New York City, NY 10001" +188375,USB-C Charging Cable,1,11.95,04/22/19 08:55,"750 Cherry St, New York City, NY 10001" +188376,Google Phone,1,600,04/14/19 19:42,"346 Hickory St, Los Angeles, CA 90001" +188377,Bose SoundSport Headphones,1,99.99,04/29/19 13:59,"205 Lakeview St, San Francisco, CA 94016" +188378,Apple Airpods Headphones,1,150,04/18/19 17:34,"436 Sunset St, Dallas, TX 75001" +188379,Lightning Charging Cable,1,14.95,04/12/19 20:13,"900 Madison St, Austin, TX 73301" +188380,27in 4K Gaming Monitor,1,389.99,04/28/19 23:03,"6 North St, San Francisco, CA 94016" +188381,Bose SoundSport Headphones,1,99.99,04/01/19 17:38,"848 Main St, Boston, MA 02215" +188382,iPhone,1,700,04/26/19 19:57,"256 Chestnut St, New York City, NY 10001" +188382,Apple Airpods Headphones,1,150,04/26/19 19:57,"256 Chestnut St, New York City, NY 10001" +188383,Bose SoundSport Headphones,1,99.99,04/22/19 22:25,"770 5th St, New York City, NY 10001" +188384,iPhone,1,700,04/17/19 07:48,"192 Wilson St, Atlanta, GA 30301" +188385,AAA Batteries (4-pack),1,2.99,04/28/19 13:33,"264 10th St, Los Angeles, CA 90001" +188386,Lightning Charging Cable,1,14.95,04/13/19 14:16,"831 Wilson St, New York City, NY 10001" +188387,AA Batteries (4-pack),1,3.84,04/11/19 23:50,"733 Lake St, New York City, NY 10001" +188388,Flatscreen TV,1,300,04/25/19 17:32,"75 Elm St, New York City, NY 10001" +188389,34in Ultrawide Monitor,1,379.99,04/25/19 06:54,"270 Spruce St, Boston, MA 02215" +188390,USB-C Charging Cable,1,11.95,04/09/19 15:15,"699 Spruce St, Boston, MA 02215" +188391,27in 4K Gaming Monitor,1,389.99,04/21/19 12:09,"983 Walnut St, San Francisco, CA 94016" +188392,27in FHD Monitor,1,149.99,04/22/19 10:05,"550 Willow St, Boston, MA 02215" +188393,USB-C Charging Cable,1,11.95,04/25/19 09:02,"965 5th St, Atlanta, GA 30301" +188394,AAA Batteries (4-pack),1,2.99,04/15/19 22:36,"867 Park St, Los Angeles, CA 90001" +188395,Apple Airpods Headphones,1,150,04/01/19 12:16,"568 Park St, Los Angeles, CA 90001" +188396,Bose SoundSport Headphones,1,99.99,04/14/19 15:42,"689 Cherry St, New York City, NY 10001" +188397,27in FHD Monitor,1,149.99,04/28/19 23:36,"295 Main St, Los Angeles, CA 90001" +188398,Google Phone,1,600,04/17/19 19:16,"97 Lincoln St, Seattle, WA 98101" +188399,AA Batteries (4-pack),1,3.84,04/28/19 23:36,"472 Hickory St, New York City, NY 10001" +188400,AAA Batteries (4-pack),1,2.99,04/14/19 11:15,"238 6th St, Atlanta, GA 30301" +188401,Lightning Charging Cable,1,14.95,04/08/19 19:19,"312 Spruce St, San Francisco, CA 94016" +188402,Apple Airpods Headphones,1,150,04/14/19 10:31,"864 Pine St, New York City, NY 10001" +188403,Apple Airpods Headphones,1,150,04/05/19 14:45,"777 Johnson St, New York City, NY 10001" +188404,USB-C Charging Cable,2,11.95,04/29/19 09:48,"905 8th St, Seattle, WA 98101" +188405,Bose SoundSport Headphones,1,99.99,04/06/19 20:47,"905 Main St, Portland, OR 97035" +188406,Wired Headphones,1,11.99,04/27/19 17:12,"789 Cedar St, San Francisco, CA 94016" +188407,27in 4K Gaming Monitor,1,389.99,04/26/19 14:45,"343 14th St, San Francisco, CA 94016" +188408,USB-C Charging Cable,1,11.95,04/05/19 14:14,"126 Adams St, Atlanta, GA 30301" +188409,USB-C Charging Cable,1,11.95,04/13/19 18:24,"779 Cedar St, Seattle, WA 98101" +188410,34in Ultrawide Monitor,1,379.99,04/16/19 21:39,"426 Jefferson St, New York City, NY 10001" +188410,USB-C Charging Cable,2,11.95,04/16/19 21:39,"426 Jefferson St, New York City, NY 10001" +188411,USB-C Charging Cable,1,11.95,04/23/19 14:08,"303 2nd St, New York City, NY 10001" +188412,27in FHD Monitor,1,149.99,04/13/19 09:47,"887 Dogwood St, San Francisco, CA 94016" +188413,Google Phone,1,600,04/17/19 13:02,"75 Lincoln St, Atlanta, GA 30301" +188414,AA Batteries (4-pack),1,3.84,04/28/19 19:36,"37 Lincoln St, New York City, NY 10001" +188415,Lightning Charging Cable,1,14.95,04/04/19 00:06,"489 Willow St, Seattle, WA 98101" +188416,AA Batteries (4-pack),1,3.84,04/01/19 14:11,"513 Cedar St, New York City, NY 10001" +188417,Lightning Charging Cable,1,14.95,04/10/19 19:28,"130 Chestnut St, San Francisco, CA 94016" +188418,Macbook Pro Laptop,1,1700,04/18/19 13:37,"685 Dogwood St, San Francisco, CA 94016" +188419,Wired Headphones,1,11.99,04/17/19 12:36,"621 7th St, Seattle, WA 98101" +188420,USB-C Charging Cable,1,11.95,04/05/19 10:03,"931 7th St, San Francisco, CA 94016" +188421,Flatscreen TV,1,300,04/20/19 08:09,"298 Hickory St, Los Angeles, CA 90001" +188422,34in Ultrawide Monitor,1,379.99,04/22/19 13:29,"462 4th St, Austin, TX 73301" +188423,USB-C Charging Cable,1,11.95,04/10/19 17:47,"228 Lincoln St, Los Angeles, CA 90001" +188424,Bose SoundSport Headphones,1,99.99,04/21/19 12:21,"267 14th St, New York City, NY 10001" +188425,AA Batteries (4-pack),1,3.84,04/19/19 18:00,"164 13th St, New York City, NY 10001" +188426,Lightning Charging Cable,1,14.95,04/13/19 17:10,"976 9th St, San Francisco, CA 94016" +188427,AAA Batteries (4-pack),3,2.99,04/30/19 14:08,"360 9th St, San Francisco, CA 94016" +188428,Lightning Charging Cable,1,14.95,04/26/19 20:14,"121 West St, Austin, TX 73301" +188428,AAA Batteries (4-pack),2,2.99,04/26/19 20:14,"121 West St, Austin, TX 73301" +188429,20in Monitor,1,109.99,04/27/19 00:50,"315 1st St, Seattle, WA 98101" +188430,AA Batteries (4-pack),1,3.84,04/03/19 15:53,"491 13th St, Los Angeles, CA 90001" +188431,Apple Airpods Headphones,1,150,04/01/19 20:25,"552 7th St, San Francisco, CA 94016" +188432,Macbook Pro Laptop,1,1700,04/10/19 09:40,"670 Ridge St, Portland, OR 97035" +188433,Bose SoundSport Headphones,1,99.99,04/30/19 22:15,"852 Hill St, New York City, NY 10001" +188434,USB-C Charging Cable,2,11.95,04/07/19 10:58,"364 Lake St, San Francisco, CA 94016" +188435,Apple Airpods Headphones,1,150,04/29/19 16:27,"101 Church St, Portland, OR 97035" +188436,AAA Batteries (4-pack),3,2.99,04/10/19 16:03,"684 Lake St, Boston, MA 02215" +188437,Lightning Charging Cable,1,14.95,04/14/19 11:48,"780 9th St, San Francisco, CA 94016" +188438,Lightning Charging Cable,1,14.95,04/17/19 22:06,"239 Lakeview St, New York City, NY 10001" +188439,AA Batteries (4-pack),2,3.84,04/05/19 00:39,"789 Adams St, New York City, NY 10001" +188440,AA Batteries (4-pack),1,3.84,04/20/19 06:33,"103 Cedar St, Los Angeles, CA 90001" +188441,ThinkPad Laptop,1,999.99,04/28/19 15:15,"446 13th St, Austin, TX 73301" +188442,USB-C Charging Cable,1,11.95,04/11/19 17:11,"969 Cherry St, San Francisco, CA 94016" +188443,AAA Batteries (4-pack),2,2.99,04/08/19 11:33,"458 Wilson St, San Francisco, CA 94016" +188444,AAA Batteries (4-pack),2,2.99,04/28/19 21:22,"539 Chestnut St, Boston, MA 02215" +188445,ThinkPad Laptop,1,999.99,04/11/19 15:13,"833 South St, Seattle, WA 98101" +188446,Lightning Charging Cable,1,14.95,04/11/19 18:38,"676 West St, San Francisco, CA 94016" +188447,Wired Headphones,1,11.99,04/04/19 09:36,"567 Park St, Austin, TX 73301" +188448,Wired Headphones,2,11.99,04/13/19 18:42,"465 Hill St, Dallas, TX 75001" +188449,AAA Batteries (4-pack),1,2.99,04/08/19 20:02,"125 Jefferson St, San Francisco, CA 94016" +188450,34in Ultrawide Monitor,1,379.99,04/07/19 12:17,"267 North St, Dallas, TX 75001" +188451,Bose SoundSport Headphones,1,99.99,04/18/19 12:22,"773 Lincoln St, Los Angeles, CA 90001" +188452,Wired Headphones,1,11.99,04/20/19 22:53,"449 Hickory St, Portland, OR 97035" +188453,27in FHD Monitor,1,149.99,04/28/19 13:35,"276 Chestnut St, Dallas, TX 75001" +188454,AA Batteries (4-pack),1,3.84,04/11/19 09:40,"892 5th St, Dallas, TX 75001" +188455,Lightning Charging Cable,1,14.95,04/06/19 12:10,"769 River St, Atlanta, GA 30301" +188456,AA Batteries (4-pack),1,3.84,04/05/19 06:40,"629 Hickory St, Los Angeles, CA 90001" +188456,ThinkPad Laptop,1,999.99,04/05/19 06:40,"629 Hickory St, Los Angeles, CA 90001" +188457,LG Washing Machine,1,600.0,04/11/19 12:44,"764 Madison St, Austin, TX 73301" +188458,Lightning Charging Cable,1,14.95,04/10/19 17:14,"412 6th St, San Francisco, CA 94016" +188459,Lightning Charging Cable,1,14.95,04/21/19 09:54,"87 West St, Seattle, WA 98101" +188460,Apple Airpods Headphones,1,150,04/18/19 11:52,"428 14th St, San Francisco, CA 94016" +188461,27in 4K Gaming Monitor,1,389.99,04/04/19 22:53,"678 Willow St, New York City, NY 10001" +188462,AA Batteries (4-pack),2,3.84,04/19/19 13:02,"216 Church St, Boston, MA 02215" +188463,Apple Airpods Headphones,1,150,04/03/19 18:10,"171 Hickory St, New York City, NY 10001" +188464,Flatscreen TV,1,300,04/01/19 15:58,"680 River St, Atlanta, GA 30301" +188465,Flatscreen TV,1,300,04/05/19 10:27,"79 6th St, New York City, NY 10001" +188466,AAA Batteries (4-pack),1,2.99,04/22/19 20:40,"773 Spruce St, Boston, MA 02215" +188467,ThinkPad Laptop,1,999.99,04/17/19 20:44,"666 Hill St, Dallas, TX 75001" +188468,AA Batteries (4-pack),1,3.84,04/24/19 20:06,"749 Spruce St, Los Angeles, CA 90001" +188469,Flatscreen TV,1,300,04/14/19 23:13,"465 South St, San Francisco, CA 94016" +188470,Google Phone,1,600,04/15/19 20:06,"688 Forest St, Atlanta, GA 30301" +188471,AAA Batteries (4-pack),1,2.99,04/16/19 18:14,"509 14th St, San Francisco, CA 94016" +188472,USB-C Charging Cable,1,11.95,04/08/19 20:44,"215 Johnson St, New York City, NY 10001" +188473,Bose SoundSport Headphones,1,99.99,04/22/19 18:15,"916 Cedar St, New York City, NY 10001" +188474,Apple Airpods Headphones,1,150,04/18/19 22:29,"573 Pine St, New York City, NY 10001" +188475,Flatscreen TV,1,300,04/21/19 13:21,"420 Main St, Dallas, TX 75001" +188476,USB-C Charging Cable,2,11.95,04/05/19 18:11,"114 Church St, San Francisco, CA 94016" +188477,AA Batteries (4-pack),1,3.84,04/21/19 07:15,"449 Hickory St, Seattle, WA 98101" +188478,Flatscreen TV,1,300,04/09/19 12:57,"16 11th St, San Francisco, CA 94016" +188479,AA Batteries (4-pack),1,3.84,04/25/19 13:39,"680 South St, Dallas, TX 75001" +188480,USB-C Charging Cable,2,11.95,04/13/19 21:17,"214 Spruce St, Boston, MA 02215" +188481,USB-C Charging Cable,1,11.95,04/14/19 19:03,"667 Adams St, Dallas, TX 75001" +188482,AA Batteries (4-pack),1,3.84,04/16/19 14:29,"486 5th St, Atlanta, GA 30301" +188482,Macbook Pro Laptop,1,1700,04/16/19 14:29,"486 5th St, Atlanta, GA 30301" +188483,ThinkPad Laptop,1,999.99,04/20/19 19:26,"719 West St, Los Angeles, CA 90001" +188484,AA Batteries (4-pack),1,3.84,04/27/19 22:08,"436 1st St, Portland, OR 97035" +188485,AAA Batteries (4-pack),1,2.99,04/03/19 21:53,"310 12th St, Atlanta, GA 30301" +188486,ThinkPad Laptop,1,999.99,04/17/19 21:49,"366 Lakeview St, San Francisco, CA 94016" +188487,AAA Batteries (4-pack),1,2.99,04/04/19 14:45,"229 Pine St, Boston, MA 02215" +188488,iPhone,1,700,04/21/19 14:15,"474 Highland St, Boston, MA 02215" +188488,Apple Airpods Headphones,1,150,04/21/19 14:15,"474 Highland St, Boston, MA 02215" +188489,Apple Airpods Headphones,1,150,04/12/19 20:10,"49 11th St, New York City, NY 10001" +188490,Bose SoundSport Headphones,1,99.99,04/25/19 12:38,"986 Pine St, San Francisco, CA 94016" +188491,Google Phone,1,600,04/08/19 22:43,"630 Spruce St, Dallas, TX 75001" +188492,AA Batteries (4-pack),1,3.84,04/03/19 17:14,"736 Cedar St, San Francisco, CA 94016" +,,,,, +188493,AA Batteries (4-pack),1,3.84,04/26/19 20:08,"692 Lincoln St, Seattle, WA 98101" +188493,27in 4K Gaming Monitor,1,389.99,04/26/19 20:08,"692 Lincoln St, Seattle, WA 98101" +188494,27in FHD Monitor,1,149.99,04/09/19 11:32,"792 Highland St, Boston, MA 02215" +188495,USB-C Charging Cable,1,11.95,04/25/19 18:20,"433 Lakeview St, Los Angeles, CA 90001" +188496,27in FHD Monitor,1,149.99,04/13/19 19:22,"206 Highland St, San Francisco, CA 94016" +188497,Lightning Charging Cable,1,14.95,04/10/19 12:13,"215 Lakeview St, San Francisco, CA 94016" +188498,AAA Batteries (4-pack),2,2.99,04/13/19 00:22,"966 Forest St, San Francisco, CA 94016" +188499,AA Batteries (4-pack),1,3.84,04/27/19 13:08,"481 Elm St, New York City, NY 10001" +188500,Wired Headphones,1,11.99,04/17/19 12:14,"735 13th St, Atlanta, GA 30301" +188501,AAA Batteries (4-pack),1,2.99,04/07/19 17:32,"268 7th St, Boston, MA 02215" +188502,Apple Airpods Headphones,1,150,04/05/19 18:15,"304 8th St, Austin, TX 73301" +188503,Lightning Charging Cable,3,14.95,04/17/19 11:33,"266 Wilson St, Atlanta, GA 30301" +188504,USB-C Charging Cable,1,11.95,04/08/19 12:28,"632 Walnut St, Boston, MA 02215" +188505,Flatscreen TV,1,300,04/25/19 12:48,"242 Cherry St, Los Angeles, CA 90001" +188506,USB-C Charging Cable,1,11.95,04/24/19 20:01,"472 8th St, San Francisco, CA 94016" +188507,Wired Headphones,1,11.99,04/01/19 23:33,"167 Willow St, Atlanta, GA 30301" +188508,iPhone,1,700,04/26/19 18:01,"96 Jackson St, San Francisco, CA 94016" +188509,Flatscreen TV,1,300,04/29/19 12:45,"182 Madison St, Seattle, WA 98101" +188510,Bose SoundSport Headphones,1,99.99,04/08/19 19:44,"693 Wilson St, Dallas, TX 75001" +188511,Lightning Charging Cable,1,14.95,04/06/19 14:16,"40 8th St, New York City, NY 10001" +188512,AA Batteries (4-pack),1,3.84,04/21/19 21:54,"512 Washington St, Seattle, WA 98101" +188513,Lightning Charging Cable,1,14.95,04/24/19 12:48,"704 Pine St, Atlanta, GA 30301" +188514,Lightning Charging Cable,1,14.95,04/04/19 20:56,"752 9th St, Los Angeles, CA 90001" +188515,AA Batteries (4-pack),1,3.84,04/12/19 20:39,"981 Elm St, Portland, OR 97035" +188516,20in Monitor,1,109.99,04/21/19 00:22,"561 Washington St, Los Angeles, CA 90001" +188517,AAA Batteries (4-pack),1,2.99,04/24/19 10:57,"667 Elm St, Dallas, TX 75001" +188518,Bose SoundSport Headphones,1,99.99,04/08/19 09:00,"104 13th St, Portland, OR 97035" +188519,Bose SoundSport Headphones,1,99.99,04/30/19 12:45,"653 Hickory St, San Francisco, CA 94016" +188520,Wired Headphones,1,11.99,04/17/19 13:19,"201 Lakeview St, New York City, NY 10001" +188521,Apple Airpods Headphones,1,150,04/14/19 14:16,"666 Dogwood St, Atlanta, GA 30301" +188522,ThinkPad Laptop,1,999.99,04/29/19 12:19,"927 North St, New York City, NY 10001" +188523,Apple Airpods Headphones,1,150,04/05/19 10:30,"618 9th St, New York City, NY 10001" +188524,Lightning Charging Cable,1,14.95,04/05/19 07:21,"791 North St, Los Angeles, CA 90001" +188525,Bose SoundSport Headphones,1,99.99,04/07/19 14:21,"651 Spruce St, San Francisco, CA 94016" +188526,AAA Batteries (4-pack),1,2.99,04/18/19 01:02,"702 2nd St, San Francisco, CA 94016" +188527,Wired Headphones,1,11.99,04/02/19 17:15,"327 Hill St, Atlanta, GA 30301" +188528,Macbook Pro Laptop,1,1700,04/07/19 13:31,"587 Meadow St, Los Angeles, CA 90001" +188529,Apple Airpods Headphones,1,150,04/13/19 21:30,"826 Forest St, Boston, MA 02215" +188530,Vareebadd Phone,1,400,04/14/19 17:03,"210 North St, New York City, NY 10001" +188531,AA Batteries (4-pack),1,3.84,04/29/19 14:43,"851 Sunset St, San Francisco, CA 94016" +188532,ThinkPad Laptop,1,999.99,04/20/19 18:49,"28 Ridge St, San Francisco, CA 94016" +188533,Lightning Charging Cable,1,14.95,04/05/19 18:38,"954 Cherry St, San Francisco, CA 94016" +188534,Vareebadd Phone,1,400,04/28/19 11:14,"44 Adams St, Austin, TX 73301" +188535,27in FHD Monitor,1,149.99,04/26/19 13:35,"198 Main St, New York City, NY 10001" +188536,AAA Batteries (4-pack),1,2.99,04/27/19 13:01,"496 5th St, San Francisco, CA 94016" +188537,USB-C Charging Cable,1,11.95,04/14/19 09:40,"591 4th St, Dallas, TX 75001" +188538,AA Batteries (4-pack),1,3.84,04/29/19 09:09,"573 Jackson St, Dallas, TX 75001" +188539,iPhone,1,700,04/17/19 13:31,"977 Hickory St, Los Angeles, CA 90001" +188540,20in Monitor,1,109.99,04/17/19 12:21,"114 1st St, New York City, NY 10001" +188541,AAA Batteries (4-pack),1,2.99,04/28/19 07:32,"410 Cedar St, Los Angeles, CA 90001" +188542,AAA Batteries (4-pack),1,2.99,04/10/19 09:47,"231 Spruce St, Boston, MA 02215" +188543,Flatscreen TV,1,300,04/08/19 09:43,"132 Park St, Boston, MA 02215" +188544,Lightning Charging Cable,1,14.95,04/05/19 21:35,"630 River St, Los Angeles, CA 90001" +188545,Lightning Charging Cable,1,14.95,04/22/19 21:40,"919 Chestnut St, New York City, NY 10001" +188546,Apple Airpods Headphones,1,150,04/30/19 21:11,"808 Forest St, Atlanta, GA 30301" +188547,Wired Headphones,1,11.99,04/04/19 13:53,"811 7th St, San Francisco, CA 94016" +188548,USB-C Charging Cable,1,11.95,04/07/19 17:49,"474 Main St, San Francisco, CA 94016" +188549,34in Ultrawide Monitor,1,379.99,04/14/19 15:33,"949 2nd St, Boston, MA 02215" +188550,AAA Batteries (4-pack),1,2.99,04/02/19 17:28,"327 Cedar St, Boston, MA 02215" +188551,Apple Airpods Headphones,1,150,04/30/19 21:37,"362 Wilson St, San Francisco, CA 94016" +188552,Lightning Charging Cable,1,14.95,04/10/19 21:15,"54 Ridge St, Dallas, TX 75001" +188553,USB-C Charging Cable,1,11.95,04/04/19 22:59,"389 12th St, Dallas, TX 75001" +188554,AA Batteries (4-pack),1,3.84,04/23/19 08:30,"312 Center St, Boston, MA 02215" +188555,AAA Batteries (4-pack),3,2.99,04/24/19 20:51,"98 7th St, Austin, TX 73301" +188556,Apple Airpods Headphones,1,150,04/30/19 23:22,"321 Cherry St, Atlanta, GA 30301" +188557,USB-C Charging Cable,1,11.95,04/18/19 22:01,"784 Adams St, Atlanta, GA 30301" +188558,USB-C Charging Cable,1,11.95,04/01/19 11:54,"858 Washington St, San Francisco, CA 94016" +188559,27in 4K Gaming Monitor,1,389.99,04/02/19 06:55,"517 13th St, San Francisco, CA 94016" +188560,Flatscreen TV,1,300,04/10/19 12:33,"860 Jackson St, New York City, NY 10001" +188561,Lightning Charging Cable,1,14.95,04/09/19 09:38,"815 Church St, Atlanta, GA 30301" +188562,Apple Airpods Headphones,1,150,04/29/19 22:29,"360 Wilson St, Atlanta, GA 30301" +188563,Google Phone,1,600,04/17/19 11:41,"585 Lakeview St, San Francisco, CA 94016" +188563,USB-C Charging Cable,1,11.95,04/17/19 11:41,"585 Lakeview St, San Francisco, CA 94016" +188564,Wired Headphones,2,11.99,04/13/19 13:06,"251 12th St, Atlanta, GA 30301" +188565,Apple Airpods Headphones,1,150,04/25/19 21:42,"306 Meadow St, Boston, MA 02215" +188566,AA Batteries (4-pack),1,3.84,04/06/19 12:40,"279 Elm St, Los Angeles, CA 90001" +188567,Wired Headphones,1,11.99,04/10/19 23:35,"257 Wilson St, Los Angeles, CA 90001" +188568,AA Batteries (4-pack),1,3.84,04/09/19 16:13,"161 Cedar St, New York City, NY 10001" +188569,AAA Batteries (4-pack),1,2.99,04/06/19 19:11,"572 Ridge St, Los Angeles, CA 90001" +188570,Apple Airpods Headphones,1,150,04/13/19 10:01,"1 South St, Los Angeles, CA 90001" +188571,Macbook Pro Laptop,1,1700,04/21/19 05:04,"783 Ridge St, San Francisco, CA 94016" +188572,iPhone,1,700,04/05/19 11:10,"595 Park St, San Francisco, CA 94016" +188572,Lightning Charging Cable,1,14.95,04/05/19 11:10,"595 Park St, San Francisco, CA 94016" +188573,AA Batteries (4-pack),1,3.84,04/30/19 22:05,"324 Highland St, Los Angeles, CA 90001" +188574,Lightning Charging Cable,1,14.95,04/06/19 12:30,"742 Hickory St, Boston, MA 02215" +188575,Apple Airpods Headphones,1,150,04/29/19 17:29,"232 River St, Boston, MA 02215" +188576,Google Phone,1,600,04/24/19 09:20,"20 Lake St, San Francisco, CA 94016" +188577,Wired Headphones,1,11.99,04/11/19 16:02,"416 13th St, Seattle, WA 98101" +188578,AA Batteries (4-pack),1,3.84,04/14/19 19:13,"197 Chestnut St, San Francisco, CA 94016" +188579,Lightning Charging Cable,1,14.95,04/25/19 21:11,"450 Jefferson St, New York City, NY 10001" +188580,27in 4K Gaming Monitor,1,389.99,04/21/19 14:21,"562 10th St, San Francisco, CA 94016" +188581,AA Batteries (4-pack),1,3.84,04/16/19 15:09,"399 1st St, Los Angeles, CA 90001" +188582,Google Phone,1,600,04/29/19 11:03,"602 Willow St, New York City, NY 10001" +188583,USB-C Charging Cable,1,11.95,04/08/19 22:15,"960 13th St, Los Angeles, CA 90001" +188584,Wired Headphones,1,11.99,04/14/19 21:18,"58 Pine St, Atlanta, GA 30301" +188585,Google Phone,1,600,04/07/19 23:48,"593 6th St, San Francisco, CA 94016" +188585,USB-C Charging Cable,1,11.95,04/07/19 23:48,"593 6th St, San Francisco, CA 94016" +188585,Wired Headphones,1,11.99,04/07/19 23:48,"593 6th St, San Francisco, CA 94016" +188586,Lightning Charging Cable,1,14.95,04/08/19 22:14,"46 13th St, Portland, OR 97035" +188587,20in Monitor,1,109.99,04/09/19 11:04,"50 Madison St, Seattle, WA 98101" +188588,Lightning Charging Cable,1,14.95,04/17/19 01:21,"341 9th St, San Francisco, CA 94016" +188589,Bose SoundSport Headphones,1,99.99,04/04/19 06:58,"204 12th St, Austin, TX 73301" +188590,20in Monitor,1,109.99,04/13/19 15:58,"46 9th St, New York City, NY 10001" +188591,20in Monitor,1,109.99,04/17/19 00:36,"370 6th St, Boston, MA 02215" +188592,Bose SoundSport Headphones,1,99.99,04/27/19 13:34,"923 Walnut St, Portland, ME 04101" +188593,Bose SoundSport Headphones,1,99.99,04/04/19 12:50,"765 Spruce St, Boston, MA 02215" +188594,AA Batteries (4-pack),1,3.84,04/03/19 10:27,"15 South St, New York City, NY 10001" +188595,AAA Batteries (4-pack),1,2.99,04/03/19 06:20,"71 Willow St, San Francisco, CA 94016" +188596,34in Ultrawide Monitor,1,379.99,04/26/19 18:27,"515 7th St, Dallas, TX 75001" +188597,Apple Airpods Headphones,1,150,04/05/19 16:13,"755 Spruce St, San Francisco, CA 94016" +188598,27in 4K Gaming Monitor,1,389.99,04/01/19 12:20,"114 12th St, Boston, MA 02215" +188599,Flatscreen TV,1,300,04/25/19 06:23,"954 Jackson St, New York City, NY 10001" +188600,Bose SoundSport Headphones,1,99.99,04/05/19 22:41,"264 Johnson St, Los Angeles, CA 90001" +188601,Lightning Charging Cable,1,14.95,04/18/19 11:22,"214 Forest St, New York City, NY 10001" +188602,Lightning Charging Cable,1,14.95,04/13/19 12:41,"440 Pine St, Los Angeles, CA 90001" +188603,iPhone,1,700,04/29/19 02:06,"658 Elm St, Los Angeles, CA 90001" +188604,20in Monitor,1,109.99,04/10/19 13:50,"346 South St, Los Angeles, CA 90001" +188605,Google Phone,1,600,04/03/19 19:48,"57 Lakeview St, Seattle, WA 98101" +188605,USB-C Charging Cable,1,11.95,04/03/19 19:48,"57 Lakeview St, Seattle, WA 98101" +188606,Apple Airpods Headphones,1,150,04/06/19 11:52,"581 Meadow St, Los Angeles, CA 90001" +188607,iPhone,1,700,04/10/19 18:45,"826 9th St, Atlanta, GA 30301" +188608,34in Ultrawide Monitor,1,379.99,04/27/19 18:14,"76 Forest St, Dallas, TX 75001" +188609,Lightning Charging Cable,1,14.95,04/12/19 13:27,"658 7th St, Dallas, TX 75001" +188610,34in Ultrawide Monitor,1,379.99,04/25/19 18:59,"937 Cedar St, New York City, NY 10001" +188611,27in 4K Gaming Monitor,1,389.99,04/03/19 21:00,"662 Chestnut St, Los Angeles, CA 90001" +188612,USB-C Charging Cable,1,11.95,04/23/19 18:44,"988 Hickory St, Seattle, WA 98101" +188613,Apple Airpods Headphones,1,150,04/30/19 15:38,"848 Forest St, San Francisco, CA 94016" +188614,USB-C Charging Cable,1,11.95,04/25/19 18:36,"607 Meadow St, San Francisco, CA 94016" +188615,USB-C Charging Cable,1,11.95,04/09/19 10:08,"700 Jefferson St, New York City, NY 10001" +188616,Wired Headphones,1,11.99,04/26/19 18:23,"749 12th St, Austin, TX 73301" +188617,Wired Headphones,1,11.99,04/01/19 19:47,"568 Adams St, New York City, NY 10001" +188618,Apple Airpods Headphones,1,150,04/30/19 06:22,"888 13th St, Los Angeles, CA 90001" +188619,Flatscreen TV,1,300,04/06/19 00:11,"851 Hickory St, Seattle, WA 98101" +188620,Lightning Charging Cable,1,14.95,04/09/19 16:10,"81 11th St, Atlanta, GA 30301" +188621,Bose SoundSport Headphones,1,99.99,04/03/19 06:43,"531 4th St, New York City, NY 10001" +188622,USB-C Charging Cable,1,11.95,04/15/19 14:58,"473 8th St, San Francisco, CA 94016" +188623,Flatscreen TV,1,300,04/11/19 19:46,"794 6th St, Dallas, TX 75001" +188624,AA Batteries (4-pack),1,3.84,04/12/19 03:09,"685 11th St, New York City, NY 10001" +188625,AA Batteries (4-pack),1,3.84,04/24/19 15:00,"344 Chestnut St, Los Angeles, CA 90001" +188626,iPhone,1,700,04/19/19 13:59,"343 Chestnut St, Los Angeles, CA 90001" +188626,Apple Airpods Headphones,1,150,04/19/19 13:59,"343 Chestnut St, Los Angeles, CA 90001" +188627,USB-C Charging Cable,1,11.95,04/10/19 09:26,"874 Washington St, Boston, MA 02215" +188628,Bose SoundSport Headphones,1,99.99,04/04/19 17:41,"481 Wilson St, San Francisco, CA 94016" +188629,iPhone,1,700,04/10/19 20:25,"246 Lakeview St, San Francisco, CA 94016" +188630,USB-C Charging Cable,2,11.95,04/02/19 09:53,"378 5th St, Los Angeles, CA 90001" +188631,Apple Airpods Headphones,1,150,04/30/19 22:30,"99 Elm St, Los Angeles, CA 90001" +188632,Lightning Charging Cable,1,14.95,04/03/19 12:17,"136 Wilson St, San Francisco, CA 94016" +188633,AA Batteries (4-pack),1,3.84,04/01/19 19:07,"654 Maple St, Dallas, TX 75001" +188634,Wired Headphones,1,11.99,04/22/19 14:32,"974 Adams St, New York City, NY 10001" +188635,USB-C Charging Cable,1,11.95,04/06/19 08:24,"358 Meadow St, Portland, OR 97035" +188636,USB-C Charging Cable,2,11.95,04/10/19 19:05,"456 4th St, San Francisco, CA 94016" +188636,USB-C Charging Cable,1,11.95,04/10/19 19:05,"456 4th St, San Francisco, CA 94016" +188637,AA Batteries (4-pack),1,3.84,04/03/19 17:25,"359 Spruce St, New York City, NY 10001" +188638,Wired Headphones,1,11.99,04/24/19 16:55,"852 4th St, San Francisco, CA 94016" +188639,AA Batteries (4-pack),1,3.84,04/04/19 20:44,"356 Ridge St, Atlanta, GA 30301" +188640,27in FHD Monitor,1,149.99,04/03/19 15:40,"32 Hill St, Dallas, TX 75001" +188641,Bose SoundSport Headphones,1,99.99,04/16/19 14:41,"43 Pine St, Boston, MA 02215" +188642,27in FHD Monitor,1,149.99,04/15/19 22:33,"527 Washington St, Los Angeles, CA 90001" +188643,AA Batteries (4-pack),1,3.84,04/01/19 23:41,"464 Jackson St, San Francisco, CA 94016" +188644,AAA Batteries (4-pack),1,2.99,04/08/19 21:43,"187 Center St, Seattle, WA 98101" +188645,27in FHD Monitor,1,149.99,04/06/19 11:22,"51 River St, San Francisco, CA 94016" +188646,27in 4K Gaming Monitor,1,389.99,04/17/19 22:24,"542 Jackson St, Atlanta, GA 30301" +188647,Apple Airpods Headphones,1,150,04/20/19 14:40,"936 11th St, Seattle, WA 98101" +188648,AAA Batteries (4-pack),2,2.99,04/20/19 20:59,"500 Spruce St, San Francisco, CA 94016" +188649,Apple Airpods Headphones,1,150,04/28/19 18:32,"471 Chestnut St, New York City, NY 10001" +188650,AA Batteries (4-pack),2,3.84,04/25/19 18:33,"359 1st St, Los Angeles, CA 90001" +188651,Macbook Pro Laptop,1,1700,04/02/19 14:25,"38 Spruce St, San Francisco, CA 94016" +188652,AA Batteries (4-pack),1,3.84,04/23/19 20:21,"115 Dogwood St, Portland, OR 97035" +188653,Lightning Charging Cable,1,14.95,04/27/19 22:33,"570 Center St, Seattle, WA 98101" +188654,Google Phone,1,600,04/01/19 15:51,"137 4th St, Los Angeles, CA 90001" +188655,Lightning Charging Cable,1,14.95,04/17/19 00:44,"197 Meadow St, Atlanta, GA 30301" +188656,Wired Headphones,2,11.99,04/30/19 01:24,"710 Center St, Seattle, WA 98101" +188657,Lightning Charging Cable,1,14.95,04/06/19 16:55,"361 Hill St, San Francisco, CA 94016" +188658,Lightning Charging Cable,1,14.95,04/07/19 20:04,"852 Church St, Dallas, TX 75001" +188659,Bose SoundSport Headphones,1,99.99,04/02/19 14:07,"338 10th St, Los Angeles, CA 90001" +188660,USB-C Charging Cable,1,11.95,04/20/19 09:30,"609 4th St, New York City, NY 10001" +188661,27in FHD Monitor,1,149.99,04/18/19 06:53,"965 10th St, Atlanta, GA 30301" +188662,ThinkPad Laptop,1,999.99,04/22/19 12:09,"650 Center St, San Francisco, CA 94016" +188663,Lightning Charging Cable,1,14.95,04/27/19 10:44,"939 Lincoln St, Seattle, WA 98101" +188664,Macbook Pro Laptop,1,1700,04/17/19 17:49,"422 Center St, Boston, MA 02215" +188665,Apple Airpods Headphones,1,150,04/18/19 14:18,"205 Jackson St, Los Angeles, CA 90001" +188666,USB-C Charging Cable,1,11.95,04/03/19 09:04,"367 Johnson St, New York City, NY 10001" +188667,AA Batteries (4-pack),1,3.84,04/13/19 16:33,"737 Park St, Dallas, TX 75001" +188668,USB-C Charging Cable,2,11.95,04/18/19 16:58,"560 Dogwood St, Dallas, TX 75001" +188669,Lightning Charging Cable,1,14.95,04/23/19 14:23,"42 Washington St, Los Angeles, CA 90001" +188670,Wired Headphones,1,11.99,04/08/19 13:59,"548 Park St, Boston, MA 02215" +188671,AA Batteries (4-pack),1,3.84,04/28/19 10:23,"215 7th St, New York City, NY 10001" +188672,Google Phone,1,600,04/06/19 21:28,"634 Dogwood St, Seattle, WA 98101" +188672,USB-C Charging Cable,1,11.95,04/06/19 21:28,"634 Dogwood St, Seattle, WA 98101" +188672,Wired Headphones,1,11.99,04/06/19 21:28,"634 Dogwood St, Seattle, WA 98101" +188673,AA Batteries (4-pack),3,3.84,04/15/19 14:42,"197 Cherry St, Atlanta, GA 30301" +188674,USB-C Charging Cable,1,11.95,04/25/19 10:55,"453 1st St, Boston, MA 02215" +188675,AA Batteries (4-pack),1,3.84,04/19/19 14:41,"35 Walnut St, San Francisco, CA 94016" +188676,Lightning Charging Cable,1,14.95,04/08/19 11:55,"563 6th St, New York City, NY 10001" +188677,AAA Batteries (4-pack),1,2.99,04/29/19 14:32,"430 Park St, San Francisco, CA 94016" +188678,34in Ultrawide Monitor,1,379.99,04/24/19 21:59,"454 2nd St, San Francisco, CA 94016" +188679,Lightning Charging Cable,1,14.95,04/24/19 19:18,"106 Adams St, San Francisco, CA 94016" +188680,USB-C Charging Cable,2,11.95,04/14/19 11:59,"994 Cherry St, Portland, OR 97035" +188681,Wired Headphones,1,11.99,04/06/19 21:19,"574 Pine St, Los Angeles, CA 90001" +188682,Apple Airpods Headphones,1,150,04/02/19 19:35,"93 Maple St, Los Angeles, CA 90001" +188683,Flatscreen TV,1,300,04/29/19 13:43,"185 Dogwood St, Atlanta, GA 30301" +188684,Macbook Pro Laptop,1,1700,04/18/19 21:51,"84 Madison St, Portland, OR 97035" +188685,Lightning Charging Cable,1,14.95,04/26/19 10:31,"283 Dogwood St, Portland, OR 97035" +188686,ThinkPad Laptop,1,999.99,04/04/19 21:48,"598 Jefferson St, San Francisco, CA 94016" +188687,Lightning Charging Cable,1,14.95,04/16/19 08:04,"970 5th St, New York City, NY 10001" +188688,Lightning Charging Cable,2,14.95,04/19/19 20:01,"387 West St, San Francisco, CA 94016" +188689,ThinkPad Laptop,1,999.99,04/04/19 17:30,"676 Washington St, New York City, NY 10001" +188690,AA Batteries (4-pack),6,3.84,04/21/19 12:46,"249 North St, Austin, TX 73301" +188691,LG Dryer,1,600.0,04/10/19 14:41,"979 Spruce St, Boston, MA 02215" +188692,Apple Airpods Headphones,1,150,04/18/19 22:41,"189 6th St, Dallas, TX 75001" +188693,Apple Airpods Headphones,1,150,04/02/19 10:40,"618 Forest St, San Francisco, CA 94016" +188694,Wired Headphones,1,11.99,04/15/19 16:40,"906 11th St, Dallas, TX 75001" +188695,iPhone,1,700,04/29/19 20:46,"19 West St, San Francisco, CA 94016" +188695,Wired Headphones,1,11.99,04/29/19 20:46,"19 West St, San Francisco, CA 94016" +188696,27in FHD Monitor,1,149.99,04/25/19 17:21,"449 Center St, Dallas, TX 75001" +188697,20in Monitor,1,109.99,04/16/19 23:17,"357 Lincoln St, San Francisco, CA 94016" +188698,Macbook Pro Laptop,1,1700,04/30/19 12:54,"43 Dogwood St, New York City, NY 10001" +188699,Flatscreen TV,1,300,04/24/19 04:57,"386 Church St, Austin, TX 73301" +188700,Lightning Charging Cable,1,14.95,04/20/19 15:19,"874 North St, Dallas, TX 75001" +188701,Apple Airpods Headphones,1,150,04/09/19 00:29,"601 Adams St, Los Angeles, CA 90001" +188702,Google Phone,1,600,04/29/19 11:54,"903 11th St, Dallas, TX 75001" +188702,USB-C Charging Cable,1,11.95,04/29/19 11:54,"903 11th St, Dallas, TX 75001" +188703,Bose SoundSport Headphones,1,99.99,04/17/19 13:33,"584 Pine St, San Francisco, CA 94016" +188704,AAA Batteries (4-pack),1,2.99,04/22/19 19:38,"221 Hickory St, New York City, NY 10001" +188705,USB-C Charging Cable,1,11.95,04/17/19 11:15,"105 2nd St, Los Angeles, CA 90001" +188706,Vareebadd Phone,1,400,04/06/19 21:56,"822 Chestnut St, Seattle, WA 98101" +188707,iPhone,1,700,04/24/19 19:40,"584 Jefferson St, Portland, OR 97035" +188707,Lightning Charging Cable,1,14.95,04/24/19 19:40,"584 Jefferson St, Portland, OR 97035" +188708,USB-C Charging Cable,1,11.95,04/07/19 11:25,"230 North St, Seattle, WA 98101" +188709,Wired Headphones,1,11.99,04/13/19 14:26,"471 Hill St, Seattle, WA 98101" +188710,Wired Headphones,1,11.99,04/02/19 21:33,"295 Elm St, New York City, NY 10001" +188711,Wired Headphones,1,11.99,04/10/19 10:44,"92 14th St, New York City, NY 10001" +188712,Bose SoundSport Headphones,1,99.99,04/23/19 09:45,"942 1st St, Boston, MA 02215" +188713,20in Monitor,1,109.99,04/02/19 11:12,"910 Center St, Los Angeles, CA 90001" +188714,Google Phone,1,600,04/11/19 10:50,"376 Spruce St, Boston, MA 02215" +188714,USB-C Charging Cable,1,11.95,04/11/19 10:50,"376 Spruce St, Boston, MA 02215" +188714,AA Batteries (4-pack),2,3.84,04/11/19 10:50,"376 Spruce St, Boston, MA 02215" +188715,27in FHD Monitor,1,149.99,04/17/19 10:23,"37 Lincoln St, Seattle, WA 98101" +188716,Macbook Pro Laptop,1,1700,04/16/19 15:37,"892 Pine St, Dallas, TX 75001" +188717,USB-C Charging Cable,1,11.95,04/13/19 20:42,"178 South St, San Francisco, CA 94016" +188718,34in Ultrawide Monitor,1,379.99,04/09/19 15:21,"657 Lake St, Dallas, TX 75001" +188719,AAA Batteries (4-pack),1,2.99,04/18/19 16:30,"116 Main St, New York City, NY 10001" +188720,Macbook Pro Laptop,1,1700,04/22/19 18:37,"367 Meadow St, San Francisco, CA 94016" +188721,AAA Batteries (4-pack),1,2.99,04/30/19 22:12,"835 South St, Atlanta, GA 30301" +188722,27in 4K Gaming Monitor,1,389.99,04/30/19 18:29,"866 Forest St, Boston, MA 02215" +188723,Apple Airpods Headphones,1,150,04/29/19 18:02,"166 Ridge St, Los Angeles, CA 90001" +188724,Bose SoundSport Headphones,1,99.99,04/28/19 12:50,"488 West St, New York City, NY 10001" +188725,AA Batteries (4-pack),1,3.84,04/28/19 17:11,"173 4th St, New York City, NY 10001" +188726,AAA Batteries (4-pack),2,2.99,04/10/19 16:46,"986 Jefferson St, New York City, NY 10001" +188727,Lightning Charging Cable,1,14.95,04/03/19 10:28,"283 Park St, Austin, TX 73301" +188728,USB-C Charging Cable,1,11.95,04/04/19 14:55,"274 Highland St, Atlanta, GA 30301" +188729,Wired Headphones,1,11.99,04/24/19 11:17,"102 Walnut St, New York City, NY 10001" +188730,AA Batteries (4-pack),1,3.84,04/06/19 13:13,"972 Lake St, Portland, OR 97035" +188731,Wired Headphones,1,11.99,04/01/19 09:21,"939 2nd St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +188732,AA Batteries (4-pack),1,3.84,04/15/19 19:18,"273 Cedar St, Los Angeles, CA 90001" +188733,Bose SoundSport Headphones,1,99.99,04/13/19 19:30,"388 Meadow St, Portland, ME 04101" +188734,AAA Batteries (4-pack),1,2.99,04/17/19 12:43,"803 11th St, Dallas, TX 75001" +188735,AAA Batteries (4-pack),1,2.99,04/26/19 20:25,"545 11th St, Boston, MA 02215" +188736,AAA Batteries (4-pack),1,2.99,04/28/19 22:33,"996 Adams St, San Francisco, CA 94016" +188737,Bose SoundSport Headphones,1,99.99,04/14/19 18:12,"942 13th St, Seattle, WA 98101" +,,,,, +188738,27in 4K Gaming Monitor,1,389.99,04/21/19 16:50,"527 12th St, Atlanta, GA 30301" +188739,AA Batteries (4-pack),1,3.84,04/29/19 11:40,"484 Lincoln St, San Francisco, CA 94016" +188740,Bose SoundSport Headphones,1,99.99,04/11/19 21:20,"440 8th St, Austin, TX 73301" +188741,AA Batteries (4-pack),2,3.84,04/26/19 12:56,"847 1st St, San Francisco, CA 94016" +188742,AA Batteries (4-pack),1,3.84,04/21/19 19:09,"32 Lake St, Dallas, TX 75001" +188743,AAA Batteries (4-pack),2,2.99,04/14/19 21:22,"120 Jefferson St, San Francisco, CA 94016" +188744,Wired Headphones,1,11.99,04/17/19 13:24,"251 West St, Seattle, WA 98101" +188745,27in FHD Monitor,1,149.99,04/18/19 16:05,"795 Lakeview St, Boston, MA 02215" +188746,Google Phone,1,600,04/02/19 16:01,"475 Jackson St, Dallas, TX 75001" +188746,USB-C Charging Cable,2,11.95,04/02/19 16:01,"475 Jackson St, Dallas, TX 75001" +188746,Wired Headphones,1,11.99,04/02/19 16:01,"475 Jackson St, Dallas, TX 75001" +188747,USB-C Charging Cable,1,11.95,04/18/19 13:39,"157 Madison St, Los Angeles, CA 90001" +188748,AA Batteries (4-pack),1,3.84,04/10/19 21:15,"404 12th St, Dallas, TX 75001" +188749,Lightning Charging Cable,1,14.95,04/10/19 15:53,"635 8th St, Seattle, WA 98101" +188750,Google Phone,1,600,04/05/19 13:23,"469 Dogwood St, Portland, OR 97035" +188750,USB-C Charging Cable,1,11.95,04/05/19 13:23,"469 Dogwood St, Portland, OR 97035" +188751,Macbook Pro Laptop,1,1700,04/07/19 22:49,"296 Jackson St, Boston, MA 02215" +188752,Lightning Charging Cable,1,14.95,04/01/19 11:59,"58 Johnson St, Portland, OR 97035" +188753,Flatscreen TV,1,300,04/10/19 20:03,"516 Hickory St, Los Angeles, CA 90001" +188754,USB-C Charging Cable,2,11.95,04/07/19 08:09,"266 9th St, San Francisco, CA 94016" +188755,Apple Airpods Headphones,1,150,04/15/19 18:39,"394 South St, Dallas, TX 75001" +188756,27in 4K Gaming Monitor,1,389.99,04/08/19 17:37,"415 12th St, San Francisco, CA 94016" +188757,Lightning Charging Cable,1,14.95,04/16/19 23:56,"417 1st St, Boston, MA 02215" +188758,iPhone,1,700,04/01/19 23:54,"177 Wilson St, San Francisco, CA 94016" +188759,AA Batteries (4-pack),1,3.84,04/23/19 16:16,"761 1st St, San Francisco, CA 94016" +188760,Bose SoundSport Headphones,1,99.99,04/05/19 13:36,"574 14th St, San Francisco, CA 94016" +188761,20in Monitor,1,109.99,04/13/19 21:30,"658 Center St, Atlanta, GA 30301" +188762,27in FHD Monitor,1,149.99,04/14/19 11:56,"243 Park St, New York City, NY 10001" +188763,AAA Batteries (4-pack),1,2.99,04/29/19 22:41,"557 1st St, Atlanta, GA 30301" +188764,Apple Airpods Headphones,1,150,04/15/19 19:49,"881 North St, San Francisco, CA 94016" +188765,USB-C Charging Cable,1,11.95,04/29/19 14:25,"119 2nd St, Boston, MA 02215" +188766,AAA Batteries (4-pack),1,2.99,04/09/19 19:25,"179 Chestnut St, Atlanta, GA 30301" +188767,AAA Batteries (4-pack),2,2.99,04/27/19 08:09,"37 Ridge St, Austin, TX 73301" +188768,Flatscreen TV,1,300,04/23/19 11:22,"213 Forest St, Seattle, WA 98101" +188769,Wired Headphones,1,11.99,04/20/19 20:16,"339 Spruce St, New York City, NY 10001" +188769,Google Phone,1,600,04/20/19 20:16,"339 Spruce St, New York City, NY 10001" +188770,Bose SoundSport Headphones,1,99.99,04/19/19 01:48,"110 Sunset St, Boston, MA 02215" +188771,Wired Headphones,1,11.99,04/14/19 22:39,"556 4th St, Dallas, TX 75001" +188772,Apple Airpods Headphones,1,150,04/01/19 22:48,"669 River St, San Francisco, CA 94016" +188772,USB-C Charging Cable,1,11.95,04/01/19 22:48,"669 River St, San Francisco, CA 94016" +188773,AAA Batteries (4-pack),2,2.99,04/20/19 10:08,"905 Lincoln St, New York City, NY 10001" +188774,AAA Batteries (4-pack),2,2.99,04/04/19 06:28,"813 Hickory St, San Francisco, CA 94016" +188775,USB-C Charging Cable,1,11.95,04/21/19 08:38,"616 North St, Atlanta, GA 30301" +188776,Wired Headphones,1,11.99,04/22/19 21:32,"175 Jefferson St, San Francisco, CA 94016" +188777,Google Phone,1,600,04/20/19 10:10,"223 Madison St, Atlanta, GA 30301" +188778,27in FHD Monitor,1,149.99,04/03/19 17:13,"626 Hickory St, Austin, TX 73301" +188779,34in Ultrawide Monitor,1,379.99,04/22/19 10:31,"410 Madison St, Boston, MA 02215" +188780,USB-C Charging Cable,1,11.95,04/14/19 10:43,"28 2nd St, San Francisco, CA 94016" +188781,Wired Headphones,1,11.99,04/10/19 13:45,"731 10th St, Portland, OR 97035" +188782,USB-C Charging Cable,1,11.95,04/02/19 10:08,"660 Washington St, Los Angeles, CA 90001" +188783,Wired Headphones,1,11.99,04/29/19 07:59,"737 Chestnut St, Boston, MA 02215" +188784,Bose SoundSport Headphones,1,99.99,04/06/19 17:07,"50 Park St, Boston, MA 02215" +188785,Apple Airpods Headphones,1,150,04/02/19 12:07,"65 Lakeview St, New York City, NY 10001" +188786,Lightning Charging Cable,1,14.95,04/02/19 12:24,"111 Main St, New York City, NY 10001" +188787,27in FHD Monitor,1,149.99,04/24/19 18:08,"345 12th St, San Francisco, CA 94016" +188788,ThinkPad Laptop,1,999.99,04/16/19 19:14,"671 4th St, Portland, OR 97035" +188789,Lightning Charging Cable,1,14.95,04/01/19 07:44,"871 Spruce St, Boston, MA 02215" +188790,iPhone,1,700,04/17/19 17:04,"623 Wilson St, Portland, OR 97035" +188791,Flatscreen TV,1,300,04/24/19 17:59,"374 Spruce St, Portland, OR 97035" +188792,Wired Headphones,1,11.99,04/20/19 15:59,"489 Madison St, San Francisco, CA 94016" +188793,ThinkPad Laptop,1,999.99,04/18/19 20:09,"670 11th St, Austin, TX 73301" +188794,USB-C Charging Cable,1,11.95,04/27/19 16:06,"662 West St, San Francisco, CA 94016" +188795,ThinkPad Laptop,1,999.99,04/11/19 10:22,"631 Hill St, Dallas, TX 75001" +188796,USB-C Charging Cable,1,11.95,04/28/19 10:08,"805 Sunset St, Portland, OR 97035" +188797,27in 4K Gaming Monitor,1,389.99,04/07/19 12:27,"465 Lake St, San Francisco, CA 94016" +188798,AAA Batteries (4-pack),2,2.99,04/06/19 11:57,"632 Madison St, San Francisco, CA 94016" +188799,Google Phone,1,600,04/15/19 11:15,"379 Hill St, New York City, NY 10001" +188800,Lightning Charging Cable,1,14.95,04/11/19 11:09,"75 13th St, Los Angeles, CA 90001" +188801,Wired Headphones,1,11.99,04/21/19 21:15,"525 10th St, Seattle, WA 98101" +188802,ThinkPad Laptop,1,999.99,04/20/19 17:12,"862 Wilson St, Boston, MA 02215" +188803,Apple Airpods Headphones,1,150,04/13/19 19:54,"340 12th St, San Francisco, CA 94016" +188804,AA Batteries (4-pack),1,3.84,04/27/19 23:13,"708 Meadow St, Los Angeles, CA 90001" +188805,AAA Batteries (4-pack),1,2.99,04/20/19 07:45,"812 11th St, San Francisco, CA 94016" +188806,AAA Batteries (4-pack),1,2.99,04/18/19 22:19,"664 12th St, New York City, NY 10001" +188807,Apple Airpods Headphones,1,150,04/13/19 08:27,"968 Park St, San Francisco, CA 94016" +188808,AA Batteries (4-pack),2,3.84,04/30/19 09:45,"262 Jefferson St, Austin, TX 73301" +188809,Wired Headphones,1,11.99,04/04/19 19:53,"12 11th St, San Francisco, CA 94016" +188810,Lightning Charging Cable,1,14.95,04/14/19 22:58,"915 Cherry St, San Francisco, CA 94016" +188811,Lightning Charging Cable,1,14.95,04/05/19 10:23,"268 Sunset St, San Francisco, CA 94016" +188812,Macbook Pro Laptop,1,1700,04/17/19 10:19,"969 4th St, Los Angeles, CA 90001" +188813,ThinkPad Laptop,1,999.99,04/24/19 15:34,"876 Walnut St, Atlanta, GA 30301" +188813,Wired Headphones,1,11.99,04/24/19 15:34,"876 Walnut St, Atlanta, GA 30301" +188814,USB-C Charging Cable,1,11.95,04/24/19 18:38,"80 5th St, Austin, TX 73301" +188815,Bose SoundSport Headphones,1,99.99,04/20/19 10:19,"825 Madison St, San Francisco, CA 94016" +188816,AAA Batteries (4-pack),2,2.99,04/21/19 14:04,"639 10th St, Boston, MA 02215" +188817,AAA Batteries (4-pack),2,2.99,04/06/19 17:41,"41 Church St, Boston, MA 02215" +188818,34in Ultrawide Monitor,1,379.99,04/11/19 10:52,"509 Wilson St, Boston, MA 02215" +188819,USB-C Charging Cable,2,11.95,04/26/19 17:06,"575 Center St, San Francisco, CA 94016" +188820,Wired Headphones,1,11.99,04/22/19 07:43,"875 5th St, Austin, TX 73301" +188821,Flatscreen TV,1,300,04/19/19 05:18,"444 Jackson St, Austin, TX 73301" +188822,Wired Headphones,1,11.99,04/25/19 12:14,"99 South St, New York City, NY 10001" +188823,AA Batteries (4-pack),1,3.84,04/28/19 15:22,"960 14th St, Los Angeles, CA 90001" +188824,27in FHD Monitor,1,149.99,04/26/19 22:27,"203 10th St, Boston, MA 02215" +188825,20in Monitor,1,109.99,04/03/19 09:42,"510 Maple St, Boston, MA 02215" +188826,Vareebadd Phone,1,400,04/12/19 15:19,"193 12th St, New York City, NY 10001" +188826,Wired Headphones,1,11.99,04/12/19 15:19,"193 12th St, New York City, NY 10001" +188827,AA Batteries (4-pack),5,3.84,04/05/19 16:12,"924 Ridge St, Dallas, TX 75001" +188828,USB-C Charging Cable,1,11.95,04/07/19 13:30,"655 Johnson St, Boston, MA 02215" +188829,Bose SoundSport Headphones,1,99.99,04/19/19 10:35,"346 Meadow St, Atlanta, GA 30301" +188830,Vareebadd Phone,1,400,04/09/19 18:51,"494 1st St, San Francisco, CA 94016" +188831,ThinkPad Laptop,1,999.99,04/27/19 19:56,"823 Center St, San Francisco, CA 94016" +188832,27in 4K Gaming Monitor,1,389.99,04/23/19 19:36,"789 1st St, Dallas, TX 75001" +188833,AAA Batteries (4-pack),1,2.99,04/02/19 00:42,"891 Chestnut St, Los Angeles, CA 90001" +188834,AAA Batteries (4-pack),2,2.99,04/26/19 20:59,"731 Johnson St, Los Angeles, CA 90001" +188835,27in 4K Gaming Monitor,1,389.99,04/26/19 14:22,"506 Hickory St, Austin, TX 73301" +188836,Vareebadd Phone,1,400,04/23/19 18:36,"222 Cedar St, New York City, NY 10001" +188837,Lightning Charging Cable,1,14.95,04/18/19 09:45,"728 Church St, Portland, ME 04101" +188838,AAA Batteries (4-pack),1,2.99,04/09/19 13:39,"871 Lincoln St, New York City, NY 10001" +188839,27in 4K Gaming Monitor,1,389.99,04/29/19 15:14,"652 Jefferson St, Austin, TX 73301" +188839,Bose SoundSport Headphones,1,99.99,04/29/19 15:14,"652 Jefferson St, Austin, TX 73301" +188840,Wired Headphones,1,11.99,04/19/19 18:42,"586 Main St, San Francisco, CA 94016" +188841,Apple Airpods Headphones,1,150,04/06/19 17:22,"682 Hickory St, Portland, OR 97035" +188842,USB-C Charging Cable,1,11.95,04/13/19 12:16,"670 Meadow St, Portland, ME 04101" +188843,27in 4K Gaming Monitor,1,389.99,04/26/19 08:03,"655 Jackson St, San Francisco, CA 94016" +188844,AAA Batteries (4-pack),1,2.99,04/05/19 14:22,"237 12th St, San Francisco, CA 94016" +188845,Bose SoundSport Headphones,1,99.99,04/24/19 20:05,"661 Pine St, Boston, MA 02215" +188846,AA Batteries (4-pack),1,3.84,04/26/19 17:32,"910 Park St, Portland, ME 04101" +188847,Macbook Pro Laptop,1,1700,04/03/19 12:41,"275 Wilson St, Seattle, WA 98101" +188848,Bose SoundSport Headphones,1,99.99,04/23/19 06:23,"354 Washington St, Boston, MA 02215" +188849,AAA Batteries (4-pack),1,2.99,04/19/19 22:04,"845 Wilson St, Los Angeles, CA 90001" +188850,Lightning Charging Cable,1,14.95,04/19/19 23:10,"705 Lakeview St, Atlanta, GA 30301" +188851,AA Batteries (4-pack),2,3.84,04/27/19 14:07,"886 Walnut St, Seattle, WA 98101" +188852,Wired Headphones,1,11.99,04/03/19 16:10,"673 Maple St, New York City, NY 10001" +188853,AAA Batteries (4-pack),2,2.99,04/03/19 20:00,"839 Elm St, Portland, OR 97035" +188854,27in FHD Monitor,1,149.99,04/02/19 22:15,"897 2nd St, Los Angeles, CA 90001" +188855,20in Monitor,1,109.99,04/10/19 13:12,"74 North St, Portland, OR 97035" +188856,Bose SoundSport Headphones,1,99.99,04/07/19 15:52,"250 Church St, Atlanta, GA 30301" +188857,AA Batteries (4-pack),1,3.84,04/19/19 21:13,"826 6th St, San Francisco, CA 94016" +188858,USB-C Charging Cable,1,11.95,04/07/19 22:02,"507 Lakeview St, San Francisco, CA 94016" +,,,,, +188859,Wired Headphones,1,11.99,04/06/19 19:58,"246 Hickory St, Seattle, WA 98101" +188860,Lightning Charging Cable,1,14.95,04/17/19 17:09,"851 13th St, San Francisco, CA 94016" +188861,iPhone,1,700,04/23/19 09:27,"468 Hill St, Los Angeles, CA 90001" +188862,AAA Batteries (4-pack),1,2.99,04/18/19 19:09,"590 Johnson St, New York City, NY 10001" +188863,USB-C Charging Cable,1,11.95,04/01/19 10:26,"574 River St, Dallas, TX 75001" +188864,Lightning Charging Cable,1,14.95,04/02/19 21:32,"811 South St, Portland, ME 04101" +188864,Bose SoundSport Headphones,1,99.99,04/02/19 21:32,"811 South St, Portland, ME 04101" +188865,iPhone,1,700,04/30/19 09:52,"970 River St, San Francisco, CA 94016" +188866,AA Batteries (4-pack),1,3.84,04/17/19 11:49,"934 2nd St, Los Angeles, CA 90001" +188867,USB-C Charging Cable,1,11.95,04/17/19 00:22,"601 Lincoln St, New York City, NY 10001" +188868,Wired Headphones,1,11.99,04/14/19 17:47,"285 Highland St, Austin, TX 73301" +188869,AAA Batteries (4-pack),2,2.99,04/28/19 16:49,"167 Johnson St, San Francisco, CA 94016" +188870,AA Batteries (4-pack),3,3.84,04/14/19 19:49,"431 Lakeview St, Los Angeles, CA 90001" +188871,Flatscreen TV,1,300,04/13/19 22:03,"817 Johnson St, Seattle, WA 98101" +188872,AAA Batteries (4-pack),1,2.99,04/18/19 23:32,"698 Jackson St, Boston, MA 02215" +188873,34in Ultrawide Monitor,1,379.99,04/07/19 11:59,"710 Ridge St, Dallas, TX 75001" +188874,AAA Batteries (4-pack),1,2.99,04/28/19 23:58,"853 4th St, New York City, NY 10001" +188875,iPhone,1,700,04/27/19 11:26,"148 Madison St, Seattle, WA 98101" +188875,Apple Airpods Headphones,1,150,04/27/19 11:26,"148 Madison St, Seattle, WA 98101" +188876,Wired Headphones,1,11.99,04/19/19 07:57,"60 11th St, Portland, ME 04101" +188877,Lightning Charging Cable,1,14.95,04/30/19 21:52,"177 Forest St, San Francisco, CA 94016" +188878,USB-C Charging Cable,1,11.95,04/23/19 11:28,"33 Maple St, Los Angeles, CA 90001" +188879,iPhone,1,700,04/17/19 15:23,"170 Walnut St, Los Angeles, CA 90001" +188880,ThinkPad Laptop,1,999.99,04/11/19 10:59,"86 Hill St, Los Angeles, CA 90001" +188881,AAA Batteries (4-pack),1,2.99,04/16/19 21:03,"353 Hickory St, New York City, NY 10001" +188882,Wired Headphones,1,11.99,04/13/19 07:24,"757 Sunset St, Austin, TX 73301" +188883,20in Monitor,1,109.99,04/02/19 10:42,"283 Willow St, Los Angeles, CA 90001" +188884,AAA Batteries (4-pack),1,2.99,04/21/19 16:08,"227 Chestnut St, Los Angeles, CA 90001" +188885,iPhone,1,700,04/19/19 08:34,"531 Maple St, New York City, NY 10001" +188885,Lightning Charging Cable,1,14.95,04/19/19 08:34,"531 Maple St, New York City, NY 10001" +188886,AAA Batteries (4-pack),2,2.99,04/15/19 16:10,"542 Lakeview St, Boston, MA 02215" +188887,USB-C Charging Cable,1,11.95,04/03/19 13:09,"127 Madison St, Boston, MA 02215" +188888,Lightning Charging Cable,1,14.95,04/01/19 12:29,"306 8th St, Dallas, TX 75001" +188889,USB-C Charging Cable,1,11.95,04/13/19 20:39,"418 Highland St, Austin, TX 73301" +188890,Google Phone,1,600,04/19/19 18:02,"324 Cedar St, New York City, NY 10001" +188891,AAA Batteries (4-pack),1,2.99,04/23/19 12:33,"684 Maple St, Seattle, WA 98101" +188892,Lightning Charging Cable,1,14.95,04/01/19 12:07,"580 Adams St, Dallas, TX 75001" +188893,AAA Batteries (4-pack),1,2.99,04/19/19 10:25,"882 Forest St, San Francisco, CA 94016" +188893,Wired Headphones,1,11.99,04/19/19 10:25,"882 Forest St, San Francisco, CA 94016" +188894,Apple Airpods Headphones,1,150,04/25/19 23:42,"586 2nd St, San Francisco, CA 94016" +188895,AA Batteries (4-pack),1,3.84,04/22/19 19:35,"851 Jefferson St, New York City, NY 10001" +188896,AAA Batteries (4-pack),2,2.99,04/14/19 10:16,"216 8th St, New York City, NY 10001" +188897,20in Monitor,1,109.99,04/06/19 08:34,"621 2nd St, Dallas, TX 75001" +188898,27in FHD Monitor,1,149.99,04/04/19 01:02,"142 1st St, Los Angeles, CA 90001" +188899,Wired Headphones,1,11.99,04/17/19 23:17,"818 Lakeview St, Boston, MA 02215" +188900,AAA Batteries (4-pack),1,2.99,04/29/19 11:39,"858 Spruce St, Los Angeles, CA 90001" +188901,34in Ultrawide Monitor,1,379.99,04/25/19 22:41,"326 Meadow St, New York City, NY 10001" +188902,Flatscreen TV,1,300,04/11/19 22:13,"64 Dogwood St, Atlanta, GA 30301" +188903,Apple Airpods Headphones,1,150,04/27/19 00:21,"589 Church St, Los Angeles, CA 90001" +188904,Macbook Pro Laptop,1,1700,04/27/19 14:28,"702 Dogwood St, Portland, OR 97035" +188905,iPhone,1,700,04/07/19 14:47,"246 Center St, San Francisco, CA 94016" +188906,27in 4K Gaming Monitor,1,389.99,04/25/19 13:22,"991 5th St, San Francisco, CA 94016" +,,,,, +188907,34in Ultrawide Monitor,1,379.99,04/30/19 08:43,"937 8th St, New York City, NY 10001" +188908,ThinkPad Laptop,1,999.99,04/16/19 13:22,"71 12th St, San Francisco, CA 94016" +188909,AAA Batteries (4-pack),1,2.99,04/29/19 21:53,"781 Forest St, Atlanta, GA 30301" +188910,Flatscreen TV,1,300,04/20/19 14:12,"48 Washington St, Boston, MA 02215" +188911,Bose SoundSport Headphones,1,99.99,04/28/19 23:24,"473 Meadow St, Los Angeles, CA 90001" +188912,Lightning Charging Cable,1,14.95,04/02/19 09:56,"632 Forest St, Dallas, TX 75001" +188913,AAA Batteries (4-pack),2,2.99,04/01/19 19:29,"711 North St, Boston, MA 02215" +188914,USB-C Charging Cable,1,11.95,04/29/19 17:15,"729 Madison St, Seattle, WA 98101" +188915,AA Batteries (4-pack),1,3.84,04/22/19 15:27,"940 6th St, Los Angeles, CA 90001" +188916,Google Phone,1,600,04/21/19 21:03,"400 7th St, Boston, MA 02215" +188916,USB-C Charging Cable,1,11.95,04/21/19 21:03,"400 7th St, Boston, MA 02215" +188917,AA Batteries (4-pack),2,3.84,04/24/19 08:52,"650 Sunset St, San Francisco, CA 94016" +188918,Wired Headphones,1,11.99,04/07/19 15:43,"568 Lake St, San Francisco, CA 94016" +188919,USB-C Charging Cable,1,11.95,04/15/19 12:36,"618 River St, New York City, NY 10001" +188920,Lightning Charging Cable,1,14.95,04/27/19 06:17,"497 8th St, San Francisco, CA 94016" +188921,20in Monitor,1,109.99,04/20/19 10:48,"353 7th St, San Francisco, CA 94016" +188922,AA Batteries (4-pack),1,3.84,04/25/19 18:39,"109 Maple St, Atlanta, GA 30301" +188923,Vareebadd Phone,1,400,04/08/19 14:54,"843 Lake St, San Francisco, CA 94016" +188923,Bose SoundSport Headphones,1,99.99,04/08/19 14:54,"843 Lake St, San Francisco, CA 94016" +188924,LG Washing Machine,1,600.0,04/11/19 05:52,"31 12th St, Atlanta, GA 30301" +188925,27in 4K Gaming Monitor,1,389.99,04/30/19 16:22,"368 Elm St, Los Angeles, CA 90001" +188926,27in FHD Monitor,1,149.99,04/04/19 07:00,"624 Jefferson St, Dallas, TX 75001" +188927,Lightning Charging Cable,1,14.95,04/05/19 05:47,"561 Maple St, Dallas, TX 75001" +188928,USB-C Charging Cable,1,11.95,04/26/19 18:14,"494 Washington St, San Francisco, CA 94016" +188929,27in FHD Monitor,1,149.99,04/21/19 07:53,"359 2nd St, San Francisco, CA 94016" +188930,Macbook Pro Laptop,1,1700,04/13/19 22:12,"265 Willow St, San Francisco, CA 94016" +188931,Apple Airpods Headphones,1,150,04/21/19 22:07,"699 Meadow St, Portland, OR 97035" +188932,USB-C Charging Cable,1,11.95,04/17/19 07:59,"630 Madison St, San Francisco, CA 94016" +188933,USB-C Charging Cable,1,11.95,04/17/19 10:09,"184 Madison St, Austin, TX 73301" +188934,Wired Headphones,1,11.99,04/15/19 10:48,"644 12th St, Los Angeles, CA 90001" +188935,Apple Airpods Headphones,1,150,04/29/19 11:08,"896 Lake St, San Francisco, CA 94016" +188936,Wired Headphones,1,11.99,04/17/19 18:43,"11 Washington St, Dallas, TX 75001" +188937,Wired Headphones,1,11.99,04/05/19 10:50,"259 Cherry St, Los Angeles, CA 90001" +188938,USB-C Charging Cable,1,11.95,04/29/19 20:20,"285 10th St, New York City, NY 10001" +188939,AAA Batteries (4-pack),2,2.99,04/02/19 13:07,"428 Sunset St, New York City, NY 10001" +188940,USB-C Charging Cable,2,11.95,04/30/19 22:12,"570 Maple St, Seattle, WA 98101" +188941,USB-C Charging Cable,1,11.95,04/11/19 22:22,"408 Main St, Los Angeles, CA 90001" +188942,AA Batteries (4-pack),3,3.84,04/12/19 10:28,"853 Jackson St, New York City, NY 10001" +188943,AAA Batteries (4-pack),1,2.99,04/19/19 19:52,"600 Cherry St, Dallas, TX 75001" +188944,Lightning Charging Cable,1,14.95,04/04/19 20:23,"214 Dogwood St, Atlanta, GA 30301" +188945,Apple Airpods Headphones,1,150,04/01/19 16:54,"492 Spruce St, New York City, NY 10001" +188946,Apple Airpods Headphones,1,150,04/16/19 11:46,"445 South St, San Francisco, CA 94016" +188947,AA Batteries (4-pack),1,3.84,04/09/19 22:50,"545 Center St, Dallas, TX 75001" +188948,AA Batteries (4-pack),1,3.84,04/17/19 15:48,"835 Jackson St, Seattle, WA 98101" +188949,AA Batteries (4-pack),1,3.84,04/16/19 16:43,"730 Center St, San Francisco, CA 94016" +188950,USB-C Charging Cable,1,11.95,04/30/19 12:15,"852 7th St, San Francisco, CA 94016" +188951,AA Batteries (4-pack),1,3.84,04/26/19 21:08,"351 Dogwood St, Los Angeles, CA 90001" +188952,Wired Headphones,1,11.99,04/09/19 08:40,"355 Lincoln St, San Francisco, CA 94016" +188953,27in FHD Monitor,1,149.99,04/19/19 20:14,"996 South St, Los Angeles, CA 90001" +188954,AA Batteries (4-pack),2,3.84,04/25/19 21:21,"991 Hickory St, Los Angeles, CA 90001" +188955,AA Batteries (4-pack),1,3.84,04/10/19 05:06,"217 Ridge St, San Francisco, CA 94016" +188956,Lightning Charging Cable,1,14.95,04/05/19 14:19,"21 South St, San Francisco, CA 94016" +188957,Bose SoundSport Headphones,1,99.99,04/17/19 07:34,"302 5th St, Los Angeles, CA 90001" +188958,34in Ultrawide Monitor,1,379.99,04/08/19 09:32,"537 Church St, Los Angeles, CA 90001" +188959,Vareebadd Phone,1,400,04/04/19 11:45,"570 Main St, New York City, NY 10001" +188960,Wired Headphones,1,11.99,04/19/19 12:01,"975 14th St, Los Angeles, CA 90001" +188961,Wired Headphones,1,11.99,04/01/19 10:38,"124 Pine St, Dallas, TX 75001" +188962,Flatscreen TV,1,300,04/04/19 15:07,"668 12th St, Boston, MA 02215" +188963,Lightning Charging Cable,1,14.95,04/06/19 14:23,"58 Maple St, Los Angeles, CA 90001" +188964,Apple Airpods Headphones,1,150,04/27/19 16:36,"798 Jefferson St, Dallas, TX 75001" +188965,USB-C Charging Cable,1,11.95,04/23/19 21:36,"189 Spruce St, New York City, NY 10001" +188966,Flatscreen TV,1,300,04/24/19 22:25,"864 Willow St, Los Angeles, CA 90001" +188967,AAA Batteries (4-pack),1,2.99,04/22/19 21:46,"457 1st St, Seattle, WA 98101" +188968,AAA Batteries (4-pack),2,2.99,04/10/19 11:14,"294 6th St, Boston, MA 02215" +188968,Lightning Charging Cable,1,14.95,04/10/19 11:14,"294 6th St, Boston, MA 02215" +188969,Apple Airpods Headphones,1,150,04/03/19 12:05,"916 11th St, New York City, NY 10001" +188970,Macbook Pro Laptop,1,1700,04/20/19 20:51,"697 Main St, Atlanta, GA 30301" +188971,27in FHD Monitor,1,149.99,04/20/19 11:33,"365 4th St, Seattle, WA 98101" +188972,AAA Batteries (4-pack),1,2.99,04/10/19 20:58,"963 14th St, Los Angeles, CA 90001" +188973,Lightning Charging Cable,1,14.95,04/14/19 11:07,"643 2nd St, Los Angeles, CA 90001" +188974,Google Phone,1,600,04/17/19 18:14,"598 Lakeview St, Dallas, TX 75001" +188975,AAA Batteries (4-pack),1,2.99,04/22/19 02:19,"104 9th St, San Francisco, CA 94016" +188976,Lightning Charging Cable,2,14.95,04/09/19 14:13,"261 Sunset St, Portland, ME 04101" +188977,Lightning Charging Cable,1,14.95,04/28/19 20:35,"422 River St, Seattle, WA 98101" +188978,USB-C Charging Cable,1,11.95,04/29/19 11:11,"474 Wilson St, San Francisco, CA 94016" +188979,iPhone,1,700,04/07/19 21:18,"797 Dogwood St, Dallas, TX 75001" +188980,Bose SoundSport Headphones,1,99.99,04/19/19 16:12,"561 Chestnut St, Portland, OR 97035" +188981,27in FHD Monitor,1,149.99,04/11/19 06:34,"689 Maple St, New York City, NY 10001" +188982,Bose SoundSport Headphones,1,99.99,04/30/19 15:10,"31 Cedar St, Boston, MA 02215" +188983,AA Batteries (4-pack),1,3.84,04/24/19 12:59,"26 Madison St, San Francisco, CA 94016" +188984,34in Ultrawide Monitor,1,379.99,04/06/19 11:51,"891 Center St, Seattle, WA 98101" +188985,Google Phone,1,600,04/22/19 16:02,"394 Johnson St, Boston, MA 02215" +188986,Bose SoundSport Headphones,1,99.99,04/19/19 19:59,"169 Dogwood St, Seattle, WA 98101" +188987,Apple Airpods Headphones,1,150,04/10/19 20:05,"913 8th St, San Francisco, CA 94016" +188988,AA Batteries (4-pack),1,3.84,04/07/19 18:52,"78 11th St, Los Angeles, CA 90001" +188989,Wired Headphones,1,11.99,04/09/19 14:19,"84 Park St, Austin, TX 73301" +188990,Bose SoundSport Headphones,1,99.99,04/01/19 19:46,"604 Adams St, Seattle, WA 98101" +188991,Macbook Pro Laptop,1,1700,04/25/19 18:09,"456 10th St, Los Angeles, CA 90001" +188992,Apple Airpods Headphones,1,150,04/11/19 11:59,"553 Walnut St, New York City, NY 10001" +188993,Bose SoundSport Headphones,1,99.99,04/26/19 18:40,"225 Ridge St, New York City, NY 10001" +188994,AAA Batteries (4-pack),3,2.99,04/26/19 11:12,"856 Highland St, Los Angeles, CA 90001" +188995,Wired Headphones,1,11.99,04/29/19 00:01,"802 8th St, Dallas, TX 75001" +188996,AAA Batteries (4-pack),1,2.99,04/28/19 00:26,"9 Chestnut St, San Francisco, CA 94016" +188997,USB-C Charging Cable,1,11.95,04/13/19 13:14,"267 Lincoln St, San Francisco, CA 94016" +188998,Wired Headphones,1,11.99,04/14/19 09:43,"577 Church St, Dallas, TX 75001" +188999,iPhone,1,700,04/29/19 09:42,"686 Adams St, New York City, NY 10001" +189000,Lightning Charging Cable,1,14.95,04/18/19 19:49,"299 14th St, Atlanta, GA 30301" +189001,AAA Batteries (4-pack),1,2.99,04/04/19 16:41,"694 Willow St, Seattle, WA 98101" +189002,USB-C Charging Cable,1,11.95,04/15/19 23:45,"212 7th St, New York City, NY 10001" +189003,AA Batteries (4-pack),1,3.84,04/13/19 08:26,"774 West St, Dallas, TX 75001" +189004,Apple Airpods Headphones,1,150,04/23/19 23:04,"662 Church St, New York City, NY 10001" +189005,AA Batteries (4-pack),1,3.84,04/10/19 13:14,"214 2nd St, Austin, TX 73301" +189006,AA Batteries (4-pack),1,3.84,04/26/19 17:56,"923 Meadow St, San Francisco, CA 94016" +189007,27in FHD Monitor,1,149.99,04/26/19 13:52,"256 South St, Seattle, WA 98101" +189008,Lightning Charging Cable,1,14.95,04/19/19 12:01,"956 Meadow St, San Francisco, CA 94016" +189009,Wired Headphones,1,11.99,04/09/19 15:57,"2 Dogwood St, San Francisco, CA 94016" +189010,20in Monitor,1,109.99,04/22/19 05:53,"511 6th St, San Francisco, CA 94016" +189011,Wired Headphones,1,11.99,05/01/19 01:22,"330 12th St, Seattle, WA 98101" +189012,iPhone,1,700,04/19/19 16:53,"541 Ridge St, San Francisco, CA 94016" +189013,USB-C Charging Cable,1,11.95,04/18/19 19:27,"380 Park St, Portland, OR 97035" +189014,27in 4K Gaming Monitor,1,389.99,04/21/19 09:37,"423 Cedar St, Austin, TX 73301" +189015,AA Batteries (4-pack),1,3.84,05/01/19 00:40,"886 13th St, Boston, MA 02215" +189016,iPhone,1,700,04/14/19 16:21,"158 11th St, Seattle, WA 98101" +189017,LG Dryer,1,600.0,04/11/19 09:51,"87 7th St, San Francisco, CA 94016" +189018,Apple Airpods Headphones,1,150,04/30/19 13:39,"316 Jefferson St, Boston, MA 02215" +189019,34in Ultrawide Monitor,1,379.99,04/05/19 13:14,"192 Ridge St, Atlanta, GA 30301" +189020,USB-C Charging Cable,1,11.95,04/22/19 20:46,"329 Church St, San Francisco, CA 94016" +189021,AAA Batteries (4-pack),1,2.99,04/13/19 11:06,"798 10th St, New York City, NY 10001" +189022,USB-C Charging Cable,1,11.95,04/21/19 14:11,"475 Elm St, San Francisco, CA 94016" +189023,LG Dryer,1,600.0,04/19/19 11:40,"54 Maple St, Los Angeles, CA 90001" +189024,USB-C Charging Cable,1,11.95,04/05/19 20:55,"679 Hill St, San Francisco, CA 94016" +189025,AAA Batteries (4-pack),1,2.99,04/12/19 18:10,"994 Lake St, Boston, MA 02215" +189026,27in FHD Monitor,1,149.99,04/21/19 14:56,"741 Ridge St, San Francisco, CA 94016" +189027,Apple Airpods Headphones,1,150,04/05/19 15:17,"115 Lakeview St, Portland, OR 97035" +189028,USB-C Charging Cable,1,11.95,04/08/19 18:43,"941 Ridge St, New York City, NY 10001" +189029,iPhone,1,700,04/10/19 11:47,"68 Lakeview St, San Francisco, CA 94016" +189030,Bose SoundSport Headphones,1,99.99,04/06/19 23:57,"804 Pine St, Seattle, WA 98101" +189031,Apple Airpods Headphones,1,150,04/18/19 17:09,"99 9th St, New York City, NY 10001" +189032,Wired Headphones,1,11.99,04/29/19 16:15,"371 South St, San Francisco, CA 94016" +189033,AAA Batteries (4-pack),3,2.99,04/27/19 19:09,"996 Sunset St, San Francisco, CA 94016" +189034,USB-C Charging Cable,2,11.95,04/27/19 22:22,"848 Ridge St, New York City, NY 10001" +189035,Bose SoundSport Headphones,1,99.99,04/18/19 20:08,"942 Maple St, New York City, NY 10001" +189036,USB-C Charging Cable,2,11.95,04/28/19 14:17,"130 Main St, Seattle, WA 98101" +189037,27in FHD Monitor,1,149.99,04/15/19 12:23,"167 Main St, San Francisco, CA 94016" +189038,Lightning Charging Cable,1,14.95,04/27/19 15:10,"974 Spruce St, New York City, NY 10001" +189039,AAA Batteries (4-pack),2,2.99,04/13/19 09:50,"552 Jackson St, San Francisco, CA 94016" +189040,ThinkPad Laptop,1,999.99,04/05/19 15:01,"153 Maple St, Los Angeles, CA 90001" +189041,34in Ultrawide Monitor,1,379.99,04/20/19 10:24,"444 Madison St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +189042,27in FHD Monitor,1,149.99,04/12/19 17:18,"728 Walnut St, Los Angeles, CA 90001" +189043,Google Phone,1,600,04/20/19 00:08,"99 Church St, Dallas, TX 75001" +189043,Wired Headphones,1,11.99,04/20/19 00:08,"99 Church St, Dallas, TX 75001" +189044,AA Batteries (4-pack),1,3.84,04/08/19 21:49,"43 Main St, Boston, MA 02215" +189045,Macbook Pro Laptop,1,1700,04/11/19 16:44,"571 Pine St, Atlanta, GA 30301" +189046,USB-C Charging Cable,1,11.95,04/19/19 20:07,"80 Lincoln St, Seattle, WA 98101" +189047,ThinkPad Laptop,1,999.99,04/18/19 20:37,"468 Pine St, San Francisco, CA 94016" +189048,LG Washing Machine,1,600.0,04/03/19 07:32,"374 Washington St, Dallas, TX 75001" +189049,AA Batteries (4-pack),1,3.84,04/30/19 16:22,"877 Lakeview St, San Francisco, CA 94016" +189050,AAA Batteries (4-pack),1,2.99,04/04/19 12:22,"413 Walnut St, San Francisco, CA 94016" +189051,AAA Batteries (4-pack),2,2.99,04/15/19 19:11,"969 1st St, Seattle, WA 98101" +189052,Lightning Charging Cable,1,14.95,04/21/19 19:06,"399 Jackson St, Los Angeles, CA 90001" +189053,34in Ultrawide Monitor,1,379.99,04/18/19 17:02,"841 Chestnut St, Boston, MA 02215" +189054,Flatscreen TV,1,300,04/02/19 14:50,"382 10th St, Boston, MA 02215" +189055,LG Washing Machine,1,600.0,04/26/19 08:21,"269 Main St, Los Angeles, CA 90001" +189056,27in 4K Gaming Monitor,1,389.99,04/29/19 09:51,"609 Highland St, San Francisco, CA 94016" +189057,27in 4K Gaming Monitor,1,389.99,04/06/19 14:20,"105 Walnut St, San Francisco, CA 94016" +189058,Wired Headphones,1,11.99,04/18/19 14:01,"434 Jefferson St, New York City, NY 10001" +189059,AAA Batteries (4-pack),1,2.99,04/27/19 23:38,"235 River St, New York City, NY 10001" +189060,20in Monitor,1,109.99,04/04/19 13:59,"103 10th St, Los Angeles, CA 90001" +189061,Wired Headphones,2,11.99,04/16/19 10:00,"440 7th St, Seattle, WA 98101" +189062,AAA Batteries (4-pack),1,2.99,04/04/19 22:39,"55 Spruce St, Boston, MA 02215" +189063,AAA Batteries (4-pack),1,2.99,04/27/19 23:01,"967 Main St, Los Angeles, CA 90001" +189064,USB-C Charging Cable,1,11.95,04/28/19 11:05,"409 Main St, San Francisco, CA 94016" +189065,Wired Headphones,1,11.99,04/20/19 10:40,"263 Cherry St, New York City, NY 10001" +189066,27in 4K Gaming Monitor,1,389.99,04/20/19 14:29,"294 Highland St, San Francisco, CA 94016" +189067,27in 4K Gaming Monitor,1,389.99,04/11/19 15:16,"332 Adams St, Boston, MA 02215" +189068,27in 4K Gaming Monitor,1,389.99,04/09/19 15:36,"848 11th St, Los Angeles, CA 90001" +189069,Wired Headphones,1,11.99,04/24/19 19:44,"330 Maple St, Boston, MA 02215" +189070,Bose SoundSport Headphones,1,99.99,04/28/19 13:56,"232 2nd St, Los Angeles, CA 90001" +189071,AA Batteries (4-pack),1,3.84,04/23/19 16:45,"84 Johnson St, Seattle, WA 98101" +189072,Bose SoundSport Headphones,1,99.99,04/28/19 08:50,"43 River St, Atlanta, GA 30301" +189073,USB-C Charging Cable,1,11.95,04/23/19 13:18,"87 Highland St, Los Angeles, CA 90001" +189074,Google Phone,1,600,04/06/19 22:36,"106 5th St, Dallas, TX 75001" +189075,AAA Batteries (4-pack),1,2.99,04/29/19 14:24,"833 Ridge St, Atlanta, GA 30301" +189076,Macbook Pro Laptop,1,1700,04/02/19 20:43,"493 6th St, Los Angeles, CA 90001" +189077,27in 4K Gaming Monitor,1,389.99,04/29/19 11:55,"491 Center St, New York City, NY 10001" +189078,USB-C Charging Cable,1,11.95,04/29/19 21:41,"565 Ridge St, Boston, MA 02215" +189079,LG Washing Machine,1,600.0,04/09/19 23:11,"972 Madison St, Los Angeles, CA 90001" +189080,AA Batteries (4-pack),1,3.84,04/26/19 23:11,"971 Pine St, Seattle, WA 98101" +189081,27in FHD Monitor,1,149.99,04/12/19 21:05,"75 14th St, Boston, MA 02215" +189082,27in 4K Gaming Monitor,1,389.99,04/23/19 16:04,"175 Willow St, San Francisco, CA 94016" +189083,AA Batteries (4-pack),1,3.84,04/10/19 20:38,"199 South St, Atlanta, GA 30301" +189084,Wired Headphones,1,11.99,04/25/19 20:40,"782 2nd St, Los Angeles, CA 90001" +189085,Apple Airpods Headphones,1,150,04/13/19 20:28,"726 Walnut St, Atlanta, GA 30301" +189086,Lightning Charging Cable,1,14.95,04/23/19 16:29,"310 Madison St, Portland, ME 04101" +189087,iPhone,1,700,04/27/19 12:07,"282 Hickory St, San Francisco, CA 94016" +189088,Vareebadd Phone,1,400,04/04/19 20:17,"926 West St, Portland, OR 97035" +189089,Apple Airpods Headphones,1,150,04/04/19 21:08,"21 Park St, Portland, OR 97035" +189090,iPhone,1,700,04/21/19 01:32,"689 2nd St, Portland, OR 97035" +189091,Wired Headphones,1,11.99,04/12/19 09:51,"64 Meadow St, San Francisco, CA 94016" +189092,AA Batteries (4-pack),1,3.84,04/13/19 22:29,"959 8th St, San Francisco, CA 94016" +189093,Wired Headphones,1,11.99,04/06/19 17:02,"589 2nd St, New York City, NY 10001" +189094,Lightning Charging Cable,1,14.95,04/03/19 18:31,"252 13th St, Portland, OR 97035" +189095,Wired Headphones,1,11.99,04/19/19 20:42,"55 Hill St, Austin, TX 73301" +189096,Apple Airpods Headphones,1,150,04/08/19 20:58,"923 1st St, Austin, TX 73301" +189097,27in 4K Gaming Monitor,1,389.99,04/14/19 23:27,"274 Chestnut St, San Francisco, CA 94016" +189098,34in Ultrawide Monitor,1,379.99,04/15/19 21:42,"86 Hickory St, Seattle, WA 98101" +189098,Bose SoundSport Headphones,1,99.99,04/15/19 21:42,"86 Hickory St, Seattle, WA 98101" +189099,Wired Headphones,1,11.99,04/01/19 16:29,"135 Walnut St, San Francisco, CA 94016" +189100,USB-C Charging Cable,1,11.95,04/06/19 05:25,"718 Cherry St, San Francisco, CA 94016" +189101,Bose SoundSport Headphones,1,99.99,04/09/19 05:26,"831 Highland St, Seattle, WA 98101" +189102,Wired Headphones,1,11.99,04/24/19 15:11,"847 Main St, Los Angeles, CA 90001" +189103,ThinkPad Laptop,1,999.99,04/01/19 13:32,"378 11th St, Boston, MA 02215" +189104,AA Batteries (4-pack),2,3.84,04/15/19 13:03,"490 Highland St, Dallas, TX 75001" +189104,34in Ultrawide Monitor,1,379.99,04/15/19 13:03,"490 Highland St, Dallas, TX 75001" +189105,27in FHD Monitor,1,149.99,04/30/19 00:09,"864 Jefferson St, Boston, MA 02215" +189106,Wired Headphones,1,11.99,04/28/19 23:59,"780 Lincoln St, Portland, OR 97035" +189107,iPhone,1,700,04/25/19 10:19,"607 7th St, Boston, MA 02215" +189107,Lightning Charging Cable,1,14.95,04/25/19 10:19,"607 7th St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +189108,Flatscreen TV,1,300,04/29/19 12:16,"234 Main St, New York City, NY 10001" +189109,Bose SoundSport Headphones,1,99.99,04/13/19 21:10,"238 12th St, New York City, NY 10001" +189110,ThinkPad Laptop,1,999.99,04/18/19 01:47,"109 6th St, Los Angeles, CA 90001" +189111,USB-C Charging Cable,2,11.95,04/04/19 17:57,"925 12th St, Portland, OR 97035" +189112,Wired Headphones,1,11.99,04/03/19 14:12,"338 Johnson St, San Francisco, CA 94016" +189113,AAA Batteries (4-pack),3,2.99,04/28/19 11:47,"418 Willow St, New York City, NY 10001" +189114,AAA Batteries (4-pack),1,2.99,04/25/19 12:22,"66 Cedar St, Portland, OR 97035" +189115,20in Monitor,1,109.99,04/19/19 17:36,"337 Jefferson St, Boston, MA 02215" +189116,Bose SoundSport Headphones,1,99.99,04/12/19 21:29,"881 Meadow St, Boston, MA 02215" +189117,AAA Batteries (4-pack),1,2.99,04/10/19 07:52,"605 Lincoln St, Seattle, WA 98101" +189117,AAA Batteries (4-pack),1,2.99,04/10/19 07:52,"605 Lincoln St, Seattle, WA 98101" +189118,Wired Headphones,1,11.99,04/27/19 00:04,"787 Lincoln St, Boston, MA 02215" +189119,USB-C Charging Cable,1,11.95,04/08/19 20:55,"4 11th St, New York City, NY 10001" +189120,USB-C Charging Cable,1,11.95,04/22/19 21:58,"279 5th St, San Francisco, CA 94016" +189121,Wired Headphones,2,11.99,04/03/19 23:10,"127 Jackson St, Los Angeles, CA 90001" +189122,20in Monitor,1,109.99,04/21/19 09:48,"958 Forest St, Seattle, WA 98101" +189123,AA Batteries (4-pack),1,3.84,04/17/19 10:40,"452 Dogwood St, Los Angeles, CA 90001" +189124,Apple Airpods Headphones,1,150,04/02/19 15:20,"839 Chestnut St, Atlanta, GA 30301" +189125,iPhone,1,700,04/08/19 14:23,"792 Cherry St, Los Angeles, CA 90001" +189126,Flatscreen TV,1,300,04/24/19 19:45,"591 Lake St, Los Angeles, CA 90001" +189127,Macbook Pro Laptop,1,1700,04/20/19 07:45,"648 Forest St, San Francisco, CA 94016" +189128,AAA Batteries (4-pack),1,2.99,04/12/19 16:12,"944 Center St, Boston, MA 02215" +189129,ThinkPad Laptop,1,999.99,04/11/19 20:23,"607 Lake St, Atlanta, GA 30301" +189130,Wired Headphones,1,11.99,04/04/19 19:37,"518 5th St, Portland, OR 97035" +189131,Wired Headphones,1,11.99,04/10/19 23:33,"573 4th St, Atlanta, GA 30301" +189132,AAA Batteries (4-pack),1,2.99,04/04/19 23:02,"75 Lakeview St, New York City, NY 10001" +189133,ThinkPad Laptop,1,999.99,04/10/19 19:18,"585 West St, New York City, NY 10001" +189134,AA Batteries (4-pack),1,3.84,04/30/19 01:08,"87 South St, Austin, TX 73301" +189134,Lightning Charging Cable,1,14.95,04/30/19 01:08,"87 South St, Austin, TX 73301" +189135,AA Batteries (4-pack),1,3.84,04/15/19 14:12,"902 South St, Dallas, TX 75001" +189136,Google Phone,1,600,04/22/19 19:38,"167 Elm St, New York City, NY 10001" +189137,Bose SoundSport Headphones,1,99.99,04/10/19 10:25,"219 8th St, San Francisco, CA 94016" +189138,27in 4K Gaming Monitor,1,389.99,04/17/19 14:47,"602 Jackson St, New York City, NY 10001" +189139,LG Washing Machine,1,600.0,04/30/19 13:42,"697 7th St, Atlanta, GA 30301" +189140,USB-C Charging Cable,2,11.95,04/06/19 01:13,"838 Hickory St, Los Angeles, CA 90001" +189141,USB-C Charging Cable,1,11.95,04/27/19 01:43,"622 Spruce St, San Francisco, CA 94016" +189142,LG Washing Machine,1,600.0,04/17/19 07:51,"421 Main St, San Francisco, CA 94016" +189143,AAA Batteries (4-pack),1,2.99,04/17/19 09:29,"403 5th St, Dallas, TX 75001" +189144,Bose SoundSport Headphones,1,99.99,04/04/19 18:34,"35 10th St, San Francisco, CA 94016" +189145,34in Ultrawide Monitor,1,379.99,04/28/19 11:02,"356 Main St, San Francisco, CA 94016" +189146,Apple Airpods Headphones,1,150,04/09/19 01:14,"754 13th St, Austin, TX 73301" +189147,27in FHD Monitor,1,149.99,04/17/19 11:42,"531 Adams St, San Francisco, CA 94016" +189148,AA Batteries (4-pack),2,3.84,04/23/19 09:24,"782 6th St, Atlanta, GA 30301" +189149,iPhone,1,700,04/01/19 15:21,"17 Wilson St, Los Angeles, CA 90001" +189150,Apple Airpods Headphones,1,150,04/25/19 16:51,"837 South St, San Francisco, CA 94016" +189151,iPhone,1,700,04/14/19 08:46,"339 Church St, Los Angeles, CA 90001" +189152,34in Ultrawide Monitor,1,379.99,04/05/19 12:41,"210 2nd St, Boston, MA 02215" +189153,USB-C Charging Cable,1,11.95,04/17/19 12:10,"154 Sunset St, Portland, OR 97035" +189154,34in Ultrawide Monitor,1,379.99,04/07/19 09:20,"777 9th St, Los Angeles, CA 90001" +189155,20in Monitor,1,109.99,04/30/19 12:54,"53 Washington St, Atlanta, GA 30301" +189156,USB-C Charging Cable,1,11.95,04/07/19 19:39,"339 7th St, Portland, OR 97035" +189157,Apple Airpods Headphones,1,150,04/13/19 07:48,"849 Park St, Boston, MA 02215" +189158,AA Batteries (4-pack),3,3.84,04/30/19 00:36,"543 5th St, Portland, OR 97035" +189159,AA Batteries (4-pack),1,3.84,04/10/19 14:26,"159 Lakeview St, Boston, MA 02215" +189159,AAA Batteries (4-pack),2,2.99,04/10/19 14:26,"159 Lakeview St, Boston, MA 02215" +189160,20in Monitor,1,109.99,04/21/19 19:34,"481 Jefferson St, San Francisco, CA 94016" +189161,USB-C Charging Cable,1,11.95,04/13/19 00:22,"219 10th St, San Francisco, CA 94016" +189162,34in Ultrawide Monitor,1,379.99,04/23/19 12:10,"703 Cedar St, San Francisco, CA 94016" +189163,Bose SoundSport Headphones,1,99.99,04/05/19 15:43,"832 Jackson St, New York City, NY 10001" +189164,Apple Airpods Headphones,1,150,04/22/19 20:31,"73 Jackson St, Los Angeles, CA 90001" +189165,27in 4K Gaming Monitor,1,389.99,04/22/19 20:41,"173 South St, Boston, MA 02215" +189166,27in FHD Monitor,1,149.99,04/13/19 13:15,"324 Madison St, Boston, MA 02215" +189167,Lightning Charging Cable,1,14.95,04/25/19 17:52,"751 Pine St, New York City, NY 10001" +189168,Wired Headphones,1,11.99,04/04/19 10:56,"599 14th St, Los Angeles, CA 90001" +189169,AAA Batteries (4-pack),2,2.99,04/11/19 16:05,"305 4th St, Dallas, TX 75001" +189170,27in 4K Gaming Monitor,1,389.99,04/28/19 17:25,"347 North St, San Francisco, CA 94016" +189171,ThinkPad Laptop,1,999.99,04/14/19 00:29,"232 Chestnut St, Austin, TX 73301" +189172,Apple Airpods Headphones,1,150,04/01/19 20:11,"962 Hickory St, Los Angeles, CA 90001" +189173,34in Ultrawide Monitor,1,379.99,04/10/19 10:53,"612 River St, San Francisco, CA 94016" +189174,USB-C Charging Cable,1,11.95,04/22/19 09:10,"201 North St, San Francisco, CA 94016" +189175,Macbook Pro Laptop,1,1700,04/22/19 21:46,"400 1st St, San Francisco, CA 94016" +189176,Lightning Charging Cable,1,14.95,04/10/19 14:02,"183 5th St, San Francisco, CA 94016" +189177,Lightning Charging Cable,1,14.95,04/05/19 18:57,"504 10th St, New York City, NY 10001" +189178,Apple Airpods Headphones,1,150,04/20/19 19:07,"417 Hickory St, Portland, OR 97035" +189179,Wired Headphones,1,11.99,04/29/19 10:02,"228 Cedar St, Seattle, WA 98101" +189180,Lightning Charging Cable,1,14.95,04/19/19 20:01,"620 Johnson St, San Francisco, CA 94016" +189181,Google Phone,1,600,04/20/19 07:53,"287 Wilson St, San Francisco, CA 94016" +189181,Bose SoundSport Headphones,1,99.99,04/20/19 07:53,"287 Wilson St, San Francisco, CA 94016" +189182,Wired Headphones,1,11.99,04/11/19 09:55,"671 7th St, Boston, MA 02215" +189183,27in FHD Monitor,1,149.99,05/01/19 01:52,"166 Park St, New York City, NY 10001" +189184,27in FHD Monitor,1,149.99,04/20/19 16:58,"156 Wilson St, San Francisco, CA 94016" +189185,Lightning Charging Cable,1,14.95,04/02/19 14:39,"627 Spruce St, New York City, NY 10001" +189186,Wired Headphones,1,11.99,04/16/19 03:03,"219 Maple St, San Francisco, CA 94016" +189187,AAA Batteries (4-pack),1,2.99,04/18/19 21:16,"593 Lincoln St, Austin, TX 73301" +189188,LG Washing Machine,1,600.0,04/24/19 19:41,"147 Hill St, Atlanta, GA 30301" +189189,Apple Airpods Headphones,1,150,04/20/19 02:00,"734 Hickory St, San Francisco, CA 94016" +189190,27in 4K Gaming Monitor,1,389.99,04/21/19 15:19,"890 Hill St, Austin, TX 73301" +189191,AAA Batteries (4-pack),1,2.99,04/30/19 11:18,"32 Adams St, Seattle, WA 98101" +189192,AA Batteries (4-pack),1,3.84,04/18/19 21:47,"200 Walnut St, Los Angeles, CA 90001" +189193,Apple Airpods Headphones,1,150,04/11/19 19:48,"461 Wilson St, Portland, OR 97035" +189194,Lightning Charging Cable,1,14.95,04/13/19 20:36,"438 14th St, Boston, MA 02215" +189195,Wired Headphones,1,11.99,04/30/19 17:35,"531 Maple St, Los Angeles, CA 90001" +189196,AA Batteries (4-pack),1,3.84,04/11/19 16:52,"206 Cedar St, Boston, MA 02215" +189197,AA Batteries (4-pack),1,3.84,04/19/19 21:38,"607 2nd St, Boston, MA 02215" +189198,ThinkPad Laptop,1,999.99,04/19/19 08:04,"560 11th St, New York City, NY 10001" +189199,Apple Airpods Headphones,1,150,04/17/19 20:59,"478 Park St, Seattle, WA 98101" +189200,Lightning Charging Cable,2,14.95,04/09/19 22:27,"483 Chestnut St, Seattle, WA 98101" +189201,Flatscreen TV,1,300,04/29/19 11:04,"100 Lincoln St, San Francisco, CA 94016" +189202,Lightning Charging Cable,1,14.95,04/07/19 01:11,"198 9th St, Boston, MA 02215" +189203,Vareebadd Phone,1,400,04/02/19 08:23,"672 9th St, Los Angeles, CA 90001" +189204,AA Batteries (4-pack),1,3.84,04/25/19 18:12,"745 Lincoln St, Boston, MA 02215" +189205,Bose SoundSport Headphones,1,99.99,04/07/19 22:26,"93 4th St, Portland, OR 97035" +189206,Flatscreen TV,1,300,04/27/19 21:31,"391 Wilson St, San Francisco, CA 94016" +189207,Bose SoundSport Headphones,1,99.99,04/12/19 13:38,"509 5th St, Austin, TX 73301" +189208,iPhone,1,700,04/27/19 21:33,"482 7th St, Portland, ME 04101" +189209,AA Batteries (4-pack),2,3.84,04/01/19 17:43,"122 North St, San Francisco, CA 94016" +189209,AAA Batteries (4-pack),1,2.99,04/01/19 17:43,"122 North St, San Francisco, CA 94016" +189210,USB-C Charging Cable,1,11.95,04/21/19 23:17,"641 Adams St, Los Angeles, CA 90001" +189211,AA Batteries (4-pack),1,3.84,04/19/19 22:14,"706 Wilson St, Los Angeles, CA 90001" +189212,34in Ultrawide Monitor,1,379.99,04/13/19 15:36,"206 North St, San Francisco, CA 94016" +189213,USB-C Charging Cable,1,11.95,04/14/19 12:29,"66 2nd St, San Francisco, CA 94016" +189214,Flatscreen TV,1,300,04/21/19 20:44,"786 8th St, Los Angeles, CA 90001" +189215,AAA Batteries (4-pack),1,2.99,04/11/19 17:49,"650 Jefferson St, San Francisco, CA 94016" +189216,Apple Airpods Headphones,1,150,04/06/19 14:20,"344 Highland St, San Francisco, CA 94016" +189217,USB-C Charging Cable,1,11.95,04/18/19 22:40,"462 11th St, Los Angeles, CA 90001" +189217,34in Ultrawide Monitor,1,379.99,04/18/19 22:40,"462 11th St, Los Angeles, CA 90001" +189218,AA Batteries (4-pack),1,3.84,04/25/19 17:39,"136 Elm St, Atlanta, GA 30301" +189219,USB-C Charging Cable,1,11.95,04/25/19 12:56,"391 West St, San Francisco, CA 94016" +189220,27in 4K Gaming Monitor,1,389.99,04/08/19 19:43,"271 North St, San Francisco, CA 94016" +189221,Lightning Charging Cable,1,14.95,04/14/19 13:25,"886 Park St, Austin, TX 73301" +189222,Vareebadd Phone,1,400,04/26/19 14:10,"990 Willow St, San Francisco, CA 94016" +189223,USB-C Charging Cable,1,11.95,04/11/19 14:15,"717 Park St, San Francisco, CA 94016" +189224,AA Batteries (4-pack),2,3.84,04/20/19 10:00,"774 7th St, San Francisco, CA 94016" +189225,Lightning Charging Cable,1,14.95,04/13/19 17:43,"961 Meadow St, Boston, MA 02215" +189226,AAA Batteries (4-pack),3,2.99,04/09/19 06:48,"465 Pine St, Los Angeles, CA 90001" +189227,Lightning Charging Cable,1,14.95,04/27/19 18:55,"41 Sunset St, San Francisco, CA 94016" +189228,USB-C Charging Cable,1,11.95,04/14/19 17:46,"629 Sunset St, Portland, OR 97035" +189229,Apple Airpods Headphones,1,150,04/19/19 16:30,"108 Madison St, San Francisco, CA 94016" +189230,27in 4K Gaming Monitor,1,389.99,04/06/19 07:30,"36 Highland St, San Francisco, CA 94016" +189231,USB-C Charging Cable,1,11.95,04/26/19 10:49,"817 Hill St, San Francisco, CA 94016" +189232,Bose SoundSport Headphones,1,99.99,04/21/19 07:43,"392 Hickory St, San Francisco, CA 94016" +189233,Apple Airpods Headphones,1,150,04/10/19 02:25,"860 Dogwood St, Seattle, WA 98101" +189234,Bose SoundSport Headphones,1,99.99,04/11/19 13:33,"950 14th St, Austin, TX 73301" +189235,Macbook Pro Laptop,1,1700,04/09/19 15:13,"748 South St, San Francisco, CA 94016" +189236,27in FHD Monitor,1,149.99,04/20/19 17:34,"517 Wilson St, Austin, TX 73301" +189237,Bose SoundSport Headphones,1,99.99,04/13/19 17:06,"40 Highland St, San Francisco, CA 94016" +189238,Lightning Charging Cable,1,14.95,04/10/19 10:15,"53 Hill St, San Francisco, CA 94016" +189239,Google Phone,1,600,04/10/19 18:52,"939 Park St, San Francisco, CA 94016" +189240,AAA Batteries (4-pack),1,2.99,04/29/19 19:55,"812 Willow St, Dallas, TX 75001" +189241,AAA Batteries (4-pack),1,2.99,04/18/19 22:19,"454 Cherry St, San Francisco, CA 94016" +189242,Bose SoundSport Headphones,1,99.99,04/16/19 18:32,"185 Pine St, Seattle, WA 98101" +189243,AA Batteries (4-pack),2,3.84,04/23/19 20:56,"451 River St, Atlanta, GA 30301" +189244,iPhone,1,700,04/07/19 17:22,"611 Ridge St, New York City, NY 10001" +189244,Lightning Charging Cable,1,14.95,04/07/19 17:22,"611 Ridge St, New York City, NY 10001" +189244,Wired Headphones,1,11.99,04/07/19 17:22,"611 Ridge St, New York City, NY 10001" +189245,Macbook Pro Laptop,1,1700,04/04/19 12:48,"644 Walnut St, San Francisco, CA 94016" +189246,AAA Batteries (4-pack),2,2.99,04/17/19 21:25,"241 Jefferson St, Seattle, WA 98101" +189246,USB-C Charging Cable,1,11.95,04/17/19 21:25,"241 Jefferson St, Seattle, WA 98101" +189247,Wired Headphones,1,11.99,04/12/19 10:41,"453 Church St, New York City, NY 10001" +189248,USB-C Charging Cable,1,11.95,04/24/19 19:27,"383 Pine St, Portland, OR 97035" +189249,Wired Headphones,1,11.99,04/25/19 16:46,"756 Washington St, Boston, MA 02215" +189250,AA Batteries (4-pack),1,3.84,04/19/19 15:24,"159 11th St, Los Angeles, CA 90001" +189251,USB-C Charging Cable,1,11.95,04/08/19 13:05,"999 Lincoln St, New York City, NY 10001" +189252,Lightning Charging Cable,1,14.95,04/25/19 23:12,"654 Church St, Boston, MA 02215" +189253,Wired Headphones,1,11.99,04/02/19 13:21,"60 Ridge St, San Francisco, CA 94016" +189254,AA Batteries (4-pack),2,3.84,04/18/19 16:02,"224 Hickory St, Los Angeles, CA 90001" +189255,AA Batteries (4-pack),2,3.84,04/03/19 11:52,"568 Johnson St, Los Angeles, CA 90001" +189256,AA Batteries (4-pack),2,3.84,04/25/19 11:11,"259 Madison St, New York City, NY 10001" +189257,AAA Batteries (4-pack),2,2.99,04/09/19 03:19,"630 Washington St, Seattle, WA 98101" +189258,Bose SoundSport Headphones,1,99.99,04/22/19 12:13,"497 Wilson St, San Francisco, CA 94016" +189259,Bose SoundSport Headphones,1,99.99,04/20/19 15:02,"180 Willow St, San Francisco, CA 94016" +189260,27in 4K Gaming Monitor,1,389.99,04/20/19 09:58,"531 2nd St, Boston, MA 02215" +189261,Flatscreen TV,1,300,04/05/19 12:20,"483 Johnson St, Dallas, TX 75001" +189262,USB-C Charging Cable,1,11.95,04/16/19 12:46,"939 10th St, Portland, OR 97035" +189263,Wired Headphones,1,11.99,04/02/19 08:48,"953 4th St, San Francisco, CA 94016" +189264,Lightning Charging Cable,1,14.95,04/06/19 21:18,"483 Cedar St, San Francisco, CA 94016" +189265,Lightning Charging Cable,1,14.95,04/03/19 17:29,"769 Wilson St, Seattle, WA 98101" +189266,AAA Batteries (4-pack),2,2.99,04/20/19 22:16,"873 Maple St, New York City, NY 10001" +189267,Macbook Pro Laptop,1,1700,04/07/19 13:58,"113 Wilson St, Boston, MA 02215" +189268,Lightning Charging Cable,1,14.95,04/02/19 14:12,"497 Pine St, New York City, NY 10001" +189269,Apple Airpods Headphones,1,150,04/05/19 19:31,"569 Cherry St, Boston, MA 02215" +189270,Bose SoundSport Headphones,1,99.99,04/27/19 09:47,"971 Pine St, Los Angeles, CA 90001" +189271,Wired Headphones,1,11.99,04/30/19 20:24,"997 Sunset St, Seattle, WA 98101" +189272,27in FHD Monitor,1,149.99,04/11/19 07:37,"306 West St, Los Angeles, CA 90001" +189273,Google Phone,1,600,04/10/19 21:05,"435 Chestnut St, San Francisco, CA 94016" +189274,Lightning Charging Cable,1,14.95,04/23/19 21:33,"565 Maple St, San Francisco, CA 94016" +189275,LG Dryer,1,600.0,04/08/19 08:15,"20 6th St, New York City, NY 10001" +189276,AA Batteries (4-pack),1,3.84,04/24/19 08:56,"711 Highland St, New York City, NY 10001" +189277,Lightning Charging Cable,1,14.95,04/02/19 20:26,"134 Elm St, San Francisco, CA 94016" +189278,Wired Headphones,1,11.99,04/16/19 12:25,"349 Lakeview St, Los Angeles, CA 90001" +189279,Lightning Charging Cable,1,14.95,04/29/19 07:45,"332 Elm St, Boston, MA 02215" +189280,Bose SoundSport Headphones,1,99.99,04/20/19 13:52,"26 Jackson St, Boston, MA 02215" +189281,AA Batteries (4-pack),1,3.84,04/18/19 22:53,"981 8th St, San Francisco, CA 94016" +189282,USB-C Charging Cable,1,11.95,04/25/19 16:49,"682 Spruce St, Boston, MA 02215" +189283,Wired Headphones,1,11.99,04/27/19 10:05,"861 Hill St, Boston, MA 02215" +189284,Lightning Charging Cable,1,14.95,04/11/19 11:17,"701 Wilson St, San Francisco, CA 94016" +189285,Wired Headphones,1,11.99,04/16/19 01:21,"690 River St, New York City, NY 10001" +189286,Apple Airpods Headphones,1,150,04/20/19 14:24,"1 Madison St, Boston, MA 02215" +189287,AA Batteries (4-pack),1,3.84,04/11/19 14:13,"851 North St, New York City, NY 10001" +189288,Wired Headphones,1,11.99,04/25/19 07:26,"266 Washington St, San Francisco, CA 94016" +189289,Wired Headphones,2,11.99,04/14/19 23:15,"4 Ridge St, San Francisco, CA 94016" +189290,20in Monitor,1,109.99,04/17/19 22:34,"126 Church St, San Francisco, CA 94016" +189291,Wired Headphones,1,11.99,04/02/19 08:44,"863 Adams St, New York City, NY 10001" +189292,AA Batteries (4-pack),1,3.84,04/04/19 20:45,"921 11th St, San Francisco, CA 94016" +189293,USB-C Charging Cable,1,11.95,04/19/19 13:40,"454 11th St, Dallas, TX 75001" +189294,34in Ultrawide Monitor,1,379.99,04/26/19 11:53,"272 Dogwood St, San Francisco, CA 94016" +189295,27in 4K Gaming Monitor,1,389.99,04/29/19 11:43,"347 Cedar St, San Francisco, CA 94016" +189296,Lightning Charging Cable,1,14.95,04/05/19 03:33,"569 Lake St, Portland, ME 04101" +189297,Bose SoundSport Headphones,1,99.99,04/04/19 11:33,"262 Sunset St, Atlanta, GA 30301" +189298,ThinkPad Laptop,1,999.99,04/26/19 12:04,"333 7th St, Los Angeles, CA 90001" +189299,AAA Batteries (4-pack),1,2.99,04/16/19 14:39,"782 Hickory St, San Francisco, CA 94016" +189300,27in FHD Monitor,1,149.99,04/06/19 16:18,"741 Cedar St, Portland, OR 97035" +189301,Apple Airpods Headphones,1,150,04/17/19 19:01,"883 Church St, Los Angeles, CA 90001" +189302,USB-C Charging Cable,1,11.95,04/21/19 19:07,"336 Pine St, San Francisco, CA 94016" +189303,ThinkPad Laptop,1,999.99,04/29/19 19:20,"28 2nd St, Boston, MA 02215" +189304,Google Phone,1,600,04/21/19 20:18,"636 North St, New York City, NY 10001" +189305,Macbook Pro Laptop,1,1700,04/05/19 23:42,"123 Madison St, Seattle, WA 98101" +189306,ThinkPad Laptop,1,999.99,04/25/19 21:41,"252 Hickory St, New York City, NY 10001" +189307,AA Batteries (4-pack),1,3.84,04/19/19 16:37,"152 Lincoln St, San Francisco, CA 94016" +189308,Lightning Charging Cable,1,14.95,04/17/19 17:37,"815 4th St, Atlanta, GA 30301" +189309,AAA Batteries (4-pack),1,2.99,04/07/19 13:16,"11 7th St, Portland, OR 97035" +189310,Bose SoundSport Headphones,1,99.99,04/05/19 17:09,"298 12th St, Portland, ME 04101" +189311,Apple Airpods Headphones,1,150,04/21/19 12:34,"838 Lake St, Atlanta, GA 30301" +189312,AAA Batteries (4-pack),1,2.99,04/30/19 14:55,"6 West St, Seattle, WA 98101" +189313,27in 4K Gaming Monitor,1,389.99,04/04/19 22:29,"779 9th St, San Francisco, CA 94016" +189314,Google Phone,1,600,04/02/19 07:38,"321 9th St, San Francisco, CA 94016" +189315,27in FHD Monitor,1,149.99,04/20/19 05:18,"603 9th St, Portland, OR 97035" +189316,Bose SoundSport Headphones,1,99.99,04/09/19 08:09,"89 North St, Portland, ME 04101" +189317,Lightning Charging Cable,1,14.95,04/16/19 19:25,"288 11th St, Atlanta, GA 30301" +189318,AAA Batteries (4-pack),4,2.99,04/29/19 22:55,"644 12th St, San Francisco, CA 94016" +189319,Lightning Charging Cable,1,14.95,04/15/19 20:02,"263 Adams St, Seattle, WA 98101" +189320,AA Batteries (4-pack),2,3.84,04/28/19 08:57,"948 Elm St, San Francisco, CA 94016" +189321,AAA Batteries (4-pack),2,2.99,04/09/19 09:27,"522 Highland St, Boston, MA 02215" +189322,AA Batteries (4-pack),1,3.84,04/14/19 11:33,"197 8th St, New York City, NY 10001" +189323,Bose SoundSport Headphones,1,99.99,04/22/19 05:30,"379 Sunset St, Seattle, WA 98101" +189324,AAA Batteries (4-pack),1,2.99,04/01/19 13:02,"441 Highland St, New York City, NY 10001" +189325,Wired Headphones,1,11.99,04/19/19 12:19,"327 Willow St, Atlanta, GA 30301" +189326,Flatscreen TV,1,300,04/27/19 11:46,"972 9th St, Atlanta, GA 30301" +189327,USB-C Charging Cable,1,11.95,04/13/19 14:24,"177 Forest St, San Francisco, CA 94016" +189328,20in Monitor,1,109.99,04/28/19 12:16,"262 4th St, San Francisco, CA 94016" +189329,Bose SoundSport Headphones,1,99.99,04/05/19 21:38,"154 6th St, Boston, MA 02215" +189330,AA Batteries (4-pack),2,3.84,04/12/19 11:49,"709 Adams St, Los Angeles, CA 90001" +189331,Lightning Charging Cable,1,14.95,04/19/19 18:57,"999 5th St, Dallas, TX 75001" +189332,Lightning Charging Cable,1,14.95,04/07/19 22:48,"376 Wilson St, San Francisco, CA 94016" +189333,AAA Batteries (4-pack),3,2.99,04/20/19 09:01,"198 7th St, Dallas, TX 75001" +189334,AAA Batteries (4-pack),1,2.99,04/15/19 09:47,"435 Sunset St, Boston, MA 02215" +189335,USB-C Charging Cable,1,11.95,04/21/19 15:41,"160 Hickory St, San Francisco, CA 94016" +189336,Lightning Charging Cable,1,14.95,04/14/19 17:45,"798 West St, Los Angeles, CA 90001" +189337,iPhone,1,700,04/30/19 09:12,"562 13th St, San Francisco, CA 94016" +189338,Wired Headphones,1,11.99,04/30/19 20:55,"775 Chestnut St, Los Angeles, CA 90001" +189339,27in FHD Monitor,1,149.99,04/04/19 12:24,"381 Church St, Portland, OR 97035" +189340,USB-C Charging Cable,1,11.95,04/24/19 20:38,"76 South St, Austin, TX 73301" +189341,USB-C Charging Cable,1,11.95,04/29/19 09:19,"272 Maple St, Portland, ME 04101" +189342,Wired Headphones,1,11.99,04/14/19 18:07,"661 Meadow St, Los Angeles, CA 90001" +189343,USB-C Charging Cable,1,11.95,04/13/19 21:13,"432 12th St, San Francisco, CA 94016" +189344,27in FHD Monitor,1,149.99,04/11/19 08:56,"447 10th St, Austin, TX 73301" +189345,20in Monitor,1,109.99,04/19/19 14:14,"781 Main St, San Francisco, CA 94016" +189346,Lightning Charging Cable,1,14.95,04/30/19 10:03,"107 5th St, San Francisco, CA 94016" +189347,Wired Headphones,1,11.99,04/23/19 17:15,"452 Cherry St, Los Angeles, CA 90001" +189348,AAA Batteries (4-pack),1,2.99,04/25/19 18:16,"775 Lake St, San Francisco, CA 94016" +189349,iPhone,1,700,04/23/19 10:07,"57 Lakeview St, Portland, OR 97035" +189350,Bose SoundSport Headphones,1,99.99,04/28/19 22:41,"960 Church St, Seattle, WA 98101" +189351,iPhone,1,700,04/22/19 22:41,"405 Cedar St, Los Angeles, CA 90001" +189352,Wired Headphones,1,11.99,04/16/19 06:18,"971 South St, Atlanta, GA 30301" +189353,Macbook Pro Laptop,1,1700,04/12/19 05:18,"439 10th St, New York City, NY 10001" +189354,AA Batteries (4-pack),1,3.84,04/30/19 19:43,"168 8th St, Seattle, WA 98101" +189355,Lightning Charging Cable,1,14.95,04/28/19 10:23,"758 Johnson St, San Francisco, CA 94016" +189356,AAA Batteries (4-pack),1,2.99,04/13/19 22:27,"292 Main St, San Francisco, CA 94016" +189357,USB-C Charging Cable,1,11.95,04/03/19 19:44,"819 Pine St, Dallas, TX 75001" +189358,iPhone,1,700,04/20/19 17:24,"551 8th St, Portland, OR 97035" +189359,AA Batteries (4-pack),1,3.84,04/05/19 20:23,"766 Hill St, San Francisco, CA 94016" +189360,Vareebadd Phone,1,400,04/11/19 20:49,"76 13th St, Portland, OR 97035" +189361,USB-C Charging Cable,1,11.95,04/21/19 18:38,"45 1st St, Los Angeles, CA 90001" +189362,Wired Headphones,1,11.99,04/29/19 20:52,"109 Center St, San Francisco, CA 94016" +189363,iPhone,1,700,04/10/19 18:18,"384 Washington St, San Francisco, CA 94016" +189363,Lightning Charging Cable,1,14.95,04/10/19 18:18,"384 Washington St, San Francisco, CA 94016" +189364,iPhone,1,700,04/26/19 18:10,"610 12th St, San Francisco, CA 94016" +189365,AAA Batteries (4-pack),1,2.99,04/22/19 22:13,"312 11th St, Portland, OR 97035" +189366,Apple Airpods Headphones,1,150,04/11/19 10:05,"893 Lakeview St, Atlanta, GA 30301" +189367,AAA Batteries (4-pack),1,2.99,04/19/19 19:51,"427 1st St, Dallas, TX 75001" +189368,USB-C Charging Cable,1,11.95,04/01/19 12:08,"678 Chestnut St, San Francisco, CA 94016" +189369,27in FHD Monitor,1,149.99,04/09/19 07:24,"568 6th St, New York City, NY 10001" +189370,Google Phone,1,600,04/25/19 13:13,"525 Pine St, Atlanta, GA 30301" +189371,AA Batteries (4-pack),1,3.84,04/14/19 16:58,"98 1st St, Boston, MA 02215" +189372,Google Phone,1,600,04/27/19 22:36,"810 8th St, San Francisco, CA 94016" +189372,Wired Headphones,1,11.99,04/27/19 22:36,"810 8th St, San Francisco, CA 94016" +189373,20in Monitor,1,109.99,04/14/19 05:19,"332 1st St, New York City, NY 10001" +189374,Flatscreen TV,1,300,04/15/19 08:25,"609 9th St, Los Angeles, CA 90001" +189375,AA Batteries (4-pack),2,3.84,04/18/19 19:54,"615 Park St, Austin, TX 73301" +189376,Macbook Pro Laptop,1,1700,04/17/19 00:06,"69 Wilson St, San Francisco, CA 94016" +189377,Lightning Charging Cable,1,14.95,04/18/19 15:58,"468 6th St, Seattle, WA 98101" +189378,Lightning Charging Cable,1,14.95,04/06/19 09:00,"33 Willow St, Boston, MA 02215" +189379,27in FHD Monitor,1,149.99,04/18/19 10:23,"867 West St, Los Angeles, CA 90001" +189380,AA Batteries (4-pack),1,3.84,04/02/19 10:03,"731 4th St, Dallas, TX 75001" +189381,Wired Headphones,1,11.99,04/26/19 12:24,"994 West St, New York City, NY 10001" +189382,Lightning Charging Cable,1,14.95,04/30/19 09:26,"219 Spruce St, Boston, MA 02215" +189383,USB-C Charging Cable,1,11.95,04/09/19 21:07,"480 West St, New York City, NY 10001" +189384,USB-C Charging Cable,1,11.95,04/01/19 21:54,"267 8th St, Boston, MA 02215" +189385,20in Monitor,1,109.99,04/19/19 20:54,"986 West St, Atlanta, GA 30301" +189386,Bose SoundSport Headphones,1,99.99,04/15/19 17:40,"626 North St, Portland, OR 97035" +189387,20in Monitor,1,109.99,04/21/19 22:07,"24 9th St, Austin, TX 73301" +189388,Bose SoundSport Headphones,1,99.99,04/24/19 14:23,"690 6th St, New York City, NY 10001" +189389,Wired Headphones,1,11.99,04/24/19 08:45,"484 9th St, Dallas, TX 75001" +189390,27in FHD Monitor,1,149.99,04/04/19 21:31,"644 Washington St, Dallas, TX 75001" +189391,Wired Headphones,1,11.99,04/21/19 10:55,"59 Spruce St, Los Angeles, CA 90001" +189392,27in FHD Monitor,1,149.99,04/04/19 20:00,"685 Ridge St, Los Angeles, CA 90001" +189392,20in Monitor,1,109.99,04/04/19 20:00,"685 Ridge St, Los Angeles, CA 90001" +189393,iPhone,1,700,04/06/19 16:54,"511 9th St, San Francisco, CA 94016" +189393,Lightning Charging Cable,1,14.95,04/06/19 16:54,"511 9th St, San Francisco, CA 94016" +189393,Wired Headphones,2,11.99,04/06/19 16:54,"511 9th St, San Francisco, CA 94016" +189394,Lightning Charging Cable,1,14.95,04/20/19 10:16,"274 11th St, San Francisco, CA 94016" +189395,27in FHD Monitor,1,149.99,04/27/19 16:08,"358 Elm St, San Francisco, CA 94016" +189396,Wired Headphones,1,11.99,04/28/19 19:00,"275 Maple St, Dallas, TX 75001" +189397,AA Batteries (4-pack),3,3.84,04/01/19 13:18,"183 9th St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +189398,AA Batteries (4-pack),1,3.84,04/01/19 09:59,"853 6th St, New York City, NY 10001" +189399,AA Batteries (4-pack),2,3.84,04/23/19 10:12,"179 12th St, Los Angeles, CA 90001" +189400,Bose SoundSport Headphones,1,99.99,04/18/19 13:35,"764 2nd St, Los Angeles, CA 90001" +189401,AA Batteries (4-pack),2,3.84,04/27/19 15:56,"741 Lincoln St, Los Angeles, CA 90001" +189402,Lightning Charging Cable,1,14.95,04/11/19 21:43,"874 Lincoln St, San Francisco, CA 94016" +189403,27in FHD Monitor,1,149.99,04/04/19 07:06,"463 Main St, Austin, TX 73301" +189404,Apple Airpods Headphones,1,150,04/07/19 19:10,"143 Johnson St, Dallas, TX 75001" +189405,USB-C Charging Cable,1,11.95,04/01/19 21:00,"122 Hickory St, Los Angeles, CA 90001" +189406,Lightning Charging Cable,1,14.95,04/29/19 16:14,"894 Jackson St, Dallas, TX 75001" +189407,Flatscreen TV,1,300,04/28/19 11:38,"43 Sunset St, Boston, MA 02215" +189408,Bose SoundSport Headphones,1,99.99,04/02/19 14:52,"67 Madison St, San Francisco, CA 94016" +189409,Lightning Charging Cable,1,14.95,04/20/19 04:28,"534 Maple St, Seattle, WA 98101" +189410,Bose SoundSport Headphones,1,99.99,04/20/19 17:00,"995 Wilson St, Portland, OR 97035" +189411,Flatscreen TV,1,300,04/03/19 21:19,"297 Meadow St, San Francisco, CA 94016" +189412,Flatscreen TV,1,300,04/16/19 17:06,"456 Willow St, New York City, NY 10001" +189413,27in FHD Monitor,1,149.99,04/25/19 23:28,"733 8th St, San Francisco, CA 94016" +189414,AA Batteries (4-pack),1,3.84,04/29/19 11:13,"399 11th St, San Francisco, CA 94016" +189415,Wired Headphones,1,11.99,04/09/19 18:46,"931 Sunset St, San Francisco, CA 94016" +189416,AAA Batteries (4-pack),2,2.99,04/01/19 13:37,"127 South St, Los Angeles, CA 90001" +189417,Flatscreen TV,1,300,04/23/19 16:04,"513 12th St, Boston, MA 02215" +189418,Wired Headphones,1,11.99,04/23/19 21:58,"25 Cherry St, Boston, MA 02215" +189419,LG Dryer,1,600.0,04/25/19 09:28,"33 12th St, New York City, NY 10001" +189420,AAA Batteries (4-pack),2,2.99,04/09/19 15:11,"469 6th St, Dallas, TX 75001" +189421,Lightning Charging Cable,1,14.95,04/27/19 19:54,"829 5th St, Seattle, WA 98101" +189422,iPhone,1,700,04/25/19 00:53,"368 Highland St, San Francisco, CA 94016" +189423,Bose SoundSport Headphones,1,99.99,04/10/19 07:36,"531 Walnut St, New York City, NY 10001" +189424,27in FHD Monitor,1,149.99,04/07/19 12:42,"564 South St, Dallas, TX 75001" +189425,USB-C Charging Cable,1,11.95,04/01/19 11:54,"343 Elm St, Los Angeles, CA 90001" +189426,USB-C Charging Cable,1,11.95,04/11/19 12:31,"3 Washington St, Austin, TX 73301" +189427,Lightning Charging Cable,1,14.95,04/14/19 09:09,"610 Church St, New York City, NY 10001" +189428,AAA Batteries (4-pack),1,2.99,04/24/19 00:21,"816 West St, Boston, MA 02215" +189429,AA Batteries (4-pack),1,3.84,04/10/19 10:38,"890 Cedar St, Seattle, WA 98101" +189430,Lightning Charging Cable,1,14.95,04/11/19 00:20,"50 Washington St, Seattle, WA 98101" +189431,AAA Batteries (4-pack),1,2.99,04/05/19 15:21,"438 Church St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +189432,Google Phone,1,600,04/03/19 18:06,"499 Willow St, New York City, NY 10001" +189432,USB-C Charging Cable,1,11.95,04/03/19 18:06,"499 Willow St, New York City, NY 10001" +189433,USB-C Charging Cable,1,11.95,04/27/19 07:11,"873 Center St, Los Angeles, CA 90001" +189434,USB-C Charging Cable,1,11.95,04/17/19 16:31,"669 Lincoln St, New York City, NY 10001" +189435,Wired Headphones,1,11.99,04/10/19 13:01,"553 4th St, Los Angeles, CA 90001" +189436,Apple Airpods Headphones,1,150,04/25/19 17:03,"368 6th St, Boston, MA 02215" +189437,Wired Headphones,1,11.99,04/25/19 13:17,"417 Wilson St, Los Angeles, CA 90001" +189438,Vareebadd Phone,1,400,04/22/19 22:58,"67 2nd St, Dallas, TX 75001" +189438,USB-C Charging Cable,1,11.95,04/22/19 22:58,"67 2nd St, Dallas, TX 75001" +189439,iPhone,1,700,04/23/19 14:28,"88 Lake St, New York City, NY 10001" +189440,Wired Headphones,1,11.99,04/20/19 11:19,"926 Center St, Los Angeles, CA 90001" +189441,USB-C Charging Cable,1,11.95,04/13/19 14:18,"580 Hill St, San Francisco, CA 94016" +189442,27in 4K Gaming Monitor,1,389.99,04/16/19 12:07,"182 Church St, San Francisco, CA 94016" +189443,AAA Batteries (4-pack),1,2.99,04/08/19 23:20,"373 Johnson St, San Francisco, CA 94016" +189444,LG Dryer,1,600.0,04/13/19 11:31,"538 Spruce St, San Francisco, CA 94016" +189445,Google Phone,1,600,04/01/19 23:08,"888 Pine St, Dallas, TX 75001" +189445,USB-C Charging Cable,1,11.95,04/01/19 23:08,"888 Pine St, Dallas, TX 75001" +189446,27in FHD Monitor,1,149.99,04/01/19 14:32,"677 11th St, Los Angeles, CA 90001" +189447,Lightning Charging Cable,1,14.95,04/12/19 21:23,"524 South St, Dallas, TX 75001" +189448,Bose SoundSport Headphones,1,99.99,04/28/19 20:46,"658 9th St, Los Angeles, CA 90001" +189449,AAA Batteries (4-pack),2,2.99,04/19/19 10:19,"290 Highland St, San Francisco, CA 94016" +189450,Lightning Charging Cable,1,14.95,04/22/19 06:08,"141 South St, Seattle, WA 98101" +189451,Bose SoundSport Headphones,1,99.99,04/05/19 14:25,"758 12th St, Austin, TX 73301" +189452,Wired Headphones,1,11.99,04/11/19 21:20,"110 Hickory St, New York City, NY 10001" +189453,27in FHD Monitor,1,149.99,04/18/19 23:36,"885 13th St, Atlanta, GA 30301" +189454,AAA Batteries (4-pack),1,2.99,04/16/19 15:34,"966 Jackson St, New York City, NY 10001" +189455,AA Batteries (4-pack),2,3.84,04/09/19 17:22,"530 6th St, San Francisco, CA 94016" +189456,USB-C Charging Cable,1,11.95,04/30/19 10:12,"632 14th St, New York City, NY 10001" +189457,Lightning Charging Cable,1,14.95,04/18/19 11:18,"796 River St, Los Angeles, CA 90001" +189458,AA Batteries (4-pack),2,3.84,04/21/19 20:18,"856 South St, Boston, MA 02215" +189459,27in FHD Monitor,1,149.99,04/24/19 18:36,"809 10th St, Dallas, TX 75001" +189460,USB-C Charging Cable,1,11.95,04/13/19 14:14,"759 Lake St, Boston, MA 02215" +189461,AAA Batteries (4-pack),2,2.99,04/12/19 20:04,"696 Main St, Atlanta, GA 30301" +189462,AAA Batteries (4-pack),1,2.99,04/11/19 18:28,"708 7th St, New York City, NY 10001" +189463,27in 4K Gaming Monitor,1,389.99,04/20/19 11:29,"892 River St, San Francisco, CA 94016" +189464,AA Batteries (4-pack),1,3.84,04/15/19 21:40,"124 11th St, Atlanta, GA 30301" +189465,Lightning Charging Cable,1,14.95,04/24/19 16:22,"17 Washington St, Los Angeles, CA 90001" +189466,27in 4K Gaming Monitor,1,389.99,04/12/19 23:15,"813 Cedar St, San Francisco, CA 94016" +189467,USB-C Charging Cable,1,11.95,04/08/19 16:59,"137 North St, New York City, NY 10001" +189468,AAA Batteries (4-pack),1,2.99,04/19/19 20:37,"368 1st St, Atlanta, GA 30301" +189469,Bose SoundSport Headphones,1,99.99,04/29/19 18:22,"863 7th St, San Francisco, CA 94016" +189470,Apple Airpods Headphones,1,150,04/10/19 11:16,"706 Highland St, Seattle, WA 98101" +189471,USB-C Charging Cable,1,11.95,04/30/19 11:51,"691 Adams St, Boston, MA 02215" +189472,Google Phone,1,600,04/28/19 22:36,"609 Maple St, Portland, OR 97035" +189473,AA Batteries (4-pack),2,3.84,04/01/19 10:59,"424 Pine St, Portland, OR 97035" +189474,Bose SoundSport Headphones,1,99.99,04/23/19 09:14,"848 Johnson St, Portland, OR 97035" +189475,AA Batteries (4-pack),2,3.84,04/04/19 20:25,"155 Walnut St, Portland, OR 97035" +189476,Vareebadd Phone,1,400,04/22/19 20:47,"49 Hickory St, Dallas, TX 75001" +189476,USB-C Charging Cable,1,11.95,04/22/19 20:47,"49 Hickory St, Dallas, TX 75001" +189477,AAA Batteries (4-pack),2,2.99,04/23/19 14:08,"836 Johnson St, New York City, NY 10001" +189478,Macbook Pro Laptop,1,1700,04/04/19 14:23,"680 1st St, New York City, NY 10001" +189479,Lightning Charging Cable,1,14.95,04/29/19 12:55,"373 South St, Los Angeles, CA 90001" +189480,27in 4K Gaming Monitor,1,389.99,04/25/19 17:31,"157 Park St, Atlanta, GA 30301" +189481,USB-C Charging Cable,1,11.95,04/05/19 12:30,"796 4th St, Seattle, WA 98101" +189482,Wired Headphones,2,11.99,04/04/19 21:21,"231 14th St, Boston, MA 02215" +189483,20in Monitor,1,109.99,04/19/19 15:58,"121 10th St, San Francisco, CA 94016" +189484,AA Batteries (4-pack),1,3.84,04/10/19 21:05,"621 Cherry St, Dallas, TX 75001" +189485,Google Phone,1,600,04/19/19 14:22,"179 Main St, San Francisco, CA 94016" +189486,USB-C Charging Cable,1,11.95,04/17/19 16:40,"685 Maple St, Seattle, WA 98101" +189487,AA Batteries (4-pack),3,3.84,04/30/19 20:19,"619 14th St, Seattle, WA 98101" +189488,Bose SoundSport Headphones,1,99.99,04/01/19 22:26,"746 Wilson St, Austin, TX 73301" +189489,27in FHD Monitor,1,149.99,04/12/19 20:38,"328 Main St, New York City, NY 10001" +189490,Lightning Charging Cable,1,14.95,04/14/19 07:17,"711 12th St, San Francisco, CA 94016" +189491,AA Batteries (4-pack),1,3.84,04/09/19 16:10,"336 Lake St, Seattle, WA 98101" +189492,Lightning Charging Cable,1,14.95,04/11/19 21:14,"617 Park St, San Francisco, CA 94016" +189493,20in Monitor,1,109.99,04/04/19 20:48,"156 Adams St, San Francisco, CA 94016" +189494,iPhone,1,700,04/08/19 09:33,"614 Washington St, Los Angeles, CA 90001" +189494,Lightning Charging Cable,1,14.95,04/08/19 09:33,"614 Washington St, Los Angeles, CA 90001" +189495,Apple Airpods Headphones,1,150,04/07/19 17:05,"289 Highland St, San Francisco, CA 94016" +189496,Apple Airpods Headphones,1,150,04/23/19 21:16,"999 2nd St, Boston, MA 02215" +189497,Bose SoundSport Headphones,1,99.99,04/08/19 12:06,"750 River St, San Francisco, CA 94016" +189498,Apple Airpods Headphones,1,150,04/14/19 18:06,"278 Park St, San Francisco, CA 94016" +189499,27in FHD Monitor,1,149.99,04/16/19 22:15,"546 6th St, Atlanta, GA 30301" +189500,AA Batteries (4-pack),1,3.84,04/01/19 18:55,"619 Hickory St, New York City, NY 10001" +189501,Bose SoundSport Headphones,1,99.99,04/26/19 13:01,"728 Sunset St, Los Angeles, CA 90001" +189502,AAA Batteries (4-pack),1,2.99,04/04/19 20:47,"500 Lincoln St, New York City, NY 10001" +189503,Lightning Charging Cable,1,14.95,04/12/19 11:06,"784 Highland St, San Francisco, CA 94016" +189504,USB-C Charging Cable,1,11.95,04/10/19 23:01,"576 Washington St, New York City, NY 10001" +189505,AAA Batteries (4-pack),2,2.99,04/13/19 18:26,"233 14th St, Los Angeles, CA 90001" +189506,Lightning Charging Cable,1,14.95,04/22/19 23:47,"16 Cedar St, Portland, ME 04101" +189507,27in 4K Gaming Monitor,1,389.99,04/30/19 18:35,"260 Elm St, Atlanta, GA 30301" +189508,Lightning Charging Cable,1,14.95,04/22/19 09:10,"376 7th St, Los Angeles, CA 90001" +189509,27in FHD Monitor,1,149.99,04/15/19 09:23,"151 Dogwood St, Los Angeles, CA 90001" +189510,AAA Batteries (4-pack),1,2.99,04/11/19 18:58,"753 Elm St, Los Angeles, CA 90001" +189511,27in 4K Gaming Monitor,1,389.99,04/06/19 17:16,"455 Spruce St, Portland, ME 04101" +189512,Macbook Pro Laptop,1,1700,04/27/19 09:57,"474 Madison St, San Francisco, CA 94016" +189513,AA Batteries (4-pack),1,3.84,04/29/19 12:44,"360 2nd St, Boston, MA 02215" +189514,Wired Headphones,1,11.99,04/18/19 12:36,"119 Cherry St, New York City, NY 10001" +189515,USB-C Charging Cable,1,11.95,04/22/19 16:19,"20 Ridge St, Dallas, TX 75001" +189516,USB-C Charging Cable,1,11.95,04/28/19 15:19,"547 Lincoln St, Los Angeles, CA 90001" +189517,34in Ultrawide Monitor,1,379.99,04/08/19 13:34,"523 Elm St, New York City, NY 10001" +189518,AAA Batteries (4-pack),2,2.99,04/22/19 14:17,"273 Jackson St, Boston, MA 02215" +189519,Lightning Charging Cable,1,14.95,04/25/19 19:08,"668 Lakeview St, San Francisco, CA 94016" +189520,Wired Headphones,1,11.99,04/27/19 22:43,"891 Lincoln St, San Francisco, CA 94016" +189521,Lightning Charging Cable,2,14.95,04/08/19 21:03,"540 Chestnut St, Dallas, TX 75001" +189522,Bose SoundSport Headphones,1,99.99,04/08/19 10:14,"305 Walnut St, Dallas, TX 75001" +189523,iPhone,1,700,04/28/19 10:13,"242 Sunset St, New York City, NY 10001" +189524,20in Monitor,1,109.99,04/15/19 01:22,"784 Highland St, San Francisco, CA 94016" +189525,iPhone,1,700,04/18/19 15:18,"303 River St, San Francisco, CA 94016" +189526,USB-C Charging Cable,1,11.95,04/22/19 15:51,"765 Dogwood St, Boston, MA 02215" +189526,27in FHD Monitor,1,149.99,04/22/19 15:51,"765 Dogwood St, Boston, MA 02215" +189527,AAA Batteries (4-pack),1,2.99,04/06/19 08:30,"939 Jefferson St, Los Angeles, CA 90001" +189528,AAA Batteries (4-pack),2,2.99,04/26/19 17:41,"137 Sunset St, San Francisco, CA 94016" +189529,Lightning Charging Cable,1,14.95,04/10/19 12:07,"640 11th St, San Francisco, CA 94016" +189530,AA Batteries (4-pack),1,3.84,04/23/19 22:27,"295 Dogwood St, Boston, MA 02215" +189531,AA Batteries (4-pack),1,3.84,04/02/19 14:24,"430 Main St, Dallas, TX 75001" +189531,27in 4K Gaming Monitor,1,389.99,04/02/19 14:24,"430 Main St, Dallas, TX 75001" +189532,Wired Headphones,1,11.99,04/27/19 19:34,"752 7th St, Seattle, WA 98101" +189533,USB-C Charging Cable,1,11.95,04/27/19 12:41,"553 10th St, Seattle, WA 98101" +189534,AA Batteries (4-pack),1,3.84,04/16/19 18:55,"538 5th St, Atlanta, GA 30301" +189535,Apple Airpods Headphones,1,150,04/01/19 18:44,"233 2nd St, Portland, OR 97035" +189536,AAA Batteries (4-pack),2,2.99,04/14/19 18:13,"800 14th St, Seattle, WA 98101" +189537,Wired Headphones,1,11.99,04/15/19 18:31,"426 Chestnut St, Atlanta, GA 30301" +189538,Apple Airpods Headphones,1,150,04/13/19 16:11,"196 5th St, New York City, NY 10001" +189539,Lightning Charging Cable,1,14.95,04/22/19 09:43,"195 South St, Los Angeles, CA 90001" +189540,AA Batteries (4-pack),2,3.84,04/20/19 19:16,"542 Ridge St, San Francisco, CA 94016" +189541,AA Batteries (4-pack),1,3.84,04/26/19 13:41,"447 Willow St, Los Angeles, CA 90001" +189542,34in Ultrawide Monitor,1,379.99,04/02/19 10:18,"17 North St, Los Angeles, CA 90001" +189543,Apple Airpods Headphones,1,150,04/02/19 16:44,"77 8th St, Los Angeles, CA 90001" +189544,USB-C Charging Cable,1,11.95,04/14/19 13:56,"57 Center St, Los Angeles, CA 90001" +189545,iPhone,1,700,04/12/19 23:31,"832 Main St, San Francisco, CA 94016" +189545,Lightning Charging Cable,1,14.95,04/12/19 23:31,"832 Main St, San Francisco, CA 94016" +189546,Lightning Charging Cable,1,14.95,04/21/19 13:24,"655 Dogwood St, Los Angeles, CA 90001" +189547,AAA Batteries (4-pack),1,2.99,04/26/19 17:07,"799 Cedar St, Seattle, WA 98101" +189548,Apple Airpods Headphones,1,150,04/20/19 17:52,"371 Ridge St, Dallas, TX 75001" +189548,AA Batteries (4-pack),1,3.84,04/20/19 17:52,"371 Ridge St, Dallas, TX 75001" +189549,AAA Batteries (4-pack),4,2.99,04/06/19 11:38,"952 Adams St, Atlanta, GA 30301" +189550,Bose SoundSport Headphones,1,99.99,04/02/19 05:21,"330 Lake St, Portland, OR 97035" +189551,USB-C Charging Cable,1,11.95,04/21/19 21:03,"96 14th St, Atlanta, GA 30301" +189552,Lightning Charging Cable,2,14.95,04/09/19 15:08,"388 Hickory St, Atlanta, GA 30301" +189553,AA Batteries (4-pack),1,3.84,04/17/19 16:48,"969 River St, Boston, MA 02215" +189554,27in 4K Gaming Monitor,1,389.99,04/06/19 10:09,"909 Spruce St, Los Angeles, CA 90001" +189555,iPhone,1,700,04/27/19 12:31,"576 West St, New York City, NY 10001" +189556,ThinkPad Laptop,1,999.99,04/14/19 02:53,"522 12th St, San Francisco, CA 94016" +189557,AAA Batteries (4-pack),3,2.99,04/13/19 20:38,"694 Forest St, Los Angeles, CA 90001" +189558,Wired Headphones,1,11.99,04/26/19 13:37,"746 11th St, Boston, MA 02215" +189559,Bose SoundSport Headphones,1,99.99,04/11/19 15:58,"547 12th St, San Francisco, CA 94016" +189560,Flatscreen TV,1,300,04/05/19 12:00,"14 Sunset St, San Francisco, CA 94016" +189561,Bose SoundSport Headphones,1,99.99,04/22/19 00:48,"381 Johnson St, New York City, NY 10001" +189562,AAA Batteries (4-pack),1,2.99,04/13/19 14:09,"916 Adams St, Austin, TX 73301" +189563,USB-C Charging Cable,1,11.95,04/29/19 16:00,"845 Willow St, San Francisco, CA 94016" +189564,Google Phone,1,600,04/15/19 21:53,"350 Lakeview St, Boston, MA 02215" +189565,Apple Airpods Headphones,1,150,04/07/19 11:20,"85 Pine St, Seattle, WA 98101" +189566,USB-C Charging Cable,1,11.95,04/04/19 21:36,"726 West St, San Francisco, CA 94016" +189567,USB-C Charging Cable,1,11.95,04/26/19 12:08,"162 Church St, Seattle, WA 98101" +189568,Bose SoundSport Headphones,1,99.99,04/04/19 17:14,"281 Lakeview St, San Francisco, CA 94016" +189569,34in Ultrawide Monitor,1,379.99,04/08/19 23:22,"566 Madison St, San Francisco, CA 94016" +189570,27in 4K Gaming Monitor,1,389.99,04/28/19 17:36,"638 Ridge St, Dallas, TX 75001" +189571,Macbook Pro Laptop,1,1700,04/24/19 13:51,"570 Cedar St, San Francisco, CA 94016" +189572,AA Batteries (4-pack),1,3.84,04/15/19 19:45,"560 Main St, New York City, NY 10001" +189573,Apple Airpods Headphones,1,150,04/12/19 16:32,"692 Johnson St, Austin, TX 73301" +189574,Lightning Charging Cable,1,14.95,04/17/19 15:12,"830 Jefferson St, San Francisco, CA 94016" +189575,Bose SoundSport Headphones,1,99.99,04/23/19 13:18,"794 14th St, Atlanta, GA 30301" +189576,AA Batteries (4-pack),3,3.84,04/16/19 17:08,"107 Hickory St, San Francisco, CA 94016" +189577,AAA Batteries (4-pack),1,2.99,04/07/19 19:27,"960 Dogwood St, Atlanta, GA 30301" +189578,Bose SoundSport Headphones,1,99.99,04/04/19 09:39,"998 Madison St, San Francisco, CA 94016" +189579,Wired Headphones,1,11.99,04/23/19 12:14,"843 13th St, San Francisco, CA 94016" +189580,Lightning Charging Cable,1,14.95,04/28/19 13:08,"339 Center St, Seattle, WA 98101" +189581,Apple Airpods Headphones,1,150,04/02/19 11:34,"204 Wilson St, San Francisco, CA 94016" +189582,Lightning Charging Cable,1,14.95,04/16/19 18:28,"4 Elm St, San Francisco, CA 94016" +189583,USB-C Charging Cable,1,11.95,04/27/19 22:54,"576 2nd St, New York City, NY 10001" +189584,Lightning Charging Cable,1,14.95,04/17/19 14:46,"665 Pine St, Boston, MA 02215" +189585,AA Batteries (4-pack),1,3.84,04/24/19 07:16,"327 Center St, New York City, NY 10001" +189586,AAA Batteries (4-pack),1,2.99,04/11/19 10:24,"389 7th St, San Francisco, CA 94016" +189587,Apple Airpods Headphones,1,150,04/22/19 19:53,"287 4th St, San Francisco, CA 94016" +189588,AA Batteries (4-pack),1,3.84,04/22/19 08:53,"83 Lincoln St, Los Angeles, CA 90001" +189589,AA Batteries (4-pack),2,3.84,04/15/19 20:00,"10 Lincoln St, Austin, TX 73301" +189590,AA Batteries (4-pack),7,3.84,04/02/19 20:45,"167 Johnson St, San Francisco, CA 94016" +189591,27in FHD Monitor,1,149.99,04/21/19 22:26,"962 Sunset St, Atlanta, GA 30301" +189592,27in 4K Gaming Monitor,1,389.99,04/22/19 08:47,"278 Hill St, Atlanta, GA 30301" +189593,iPhone,1,700,04/08/19 14:33,"44 Lakeview St, Atlanta, GA 30301" +189594,USB-C Charging Cable,1,11.95,04/03/19 07:51,"417 Main St, Boston, MA 02215" +189595,Wired Headphones,1,11.99,04/20/19 17:09,"329 Meadow St, Dallas, TX 75001" +189596,USB-C Charging Cable,1,11.95,04/03/19 23:21,"638 Church St, Los Angeles, CA 90001" +189597,Flatscreen TV,1,300,04/14/19 15:39,"685 Forest St, Portland, OR 97035" +189598,AAA Batteries (4-pack),1,2.99,04/29/19 15:08,"435 Ridge St, San Francisco, CA 94016" +189599,AAA Batteries (4-pack),1,2.99,04/08/19 11:14,"934 5th St, New York City, NY 10001" +189600,LG Washing Machine,1,600.0,04/21/19 11:46,"826 Madison St, Los Angeles, CA 90001" +189601,27in 4K Gaming Monitor,1,389.99,04/04/19 21:42,"664 Walnut St, Seattle, WA 98101" +189602,iPhone,1,700,04/30/19 09:03,"680 Adams St, Seattle, WA 98101" +189602,Lightning Charging Cable,1,14.95,04/30/19 09:03,"680 Adams St, Seattle, WA 98101" +189603,Flatscreen TV,1,300,04/02/19 15:37,"946 Lakeview St, Dallas, TX 75001" +189604,Apple Airpods Headphones,1,150,04/11/19 11:28,"4 South St, Los Angeles, CA 90001" +189605,Macbook Pro Laptop,1,1700,04/22/19 17:18,"904 Madison St, Seattle, WA 98101" +189606,27in FHD Monitor,1,149.99,04/23/19 10:55,"371 Park St, Los Angeles, CA 90001" +189607,Macbook Pro Laptop,1,1700,04/04/19 19:22,"309 Pine St, Austin, TX 73301" +189608,34in Ultrawide Monitor,1,379.99,04/20/19 22:46,"155 9th St, Atlanta, GA 30301" +189609,34in Ultrawide Monitor,1,379.99,04/12/19 13:48,"988 Church St, San Francisco, CA 94016" +189610,Bose SoundSport Headphones,1,99.99,04/14/19 17:11,"354 Washington St, Los Angeles, CA 90001" +189611,iPhone,1,700,04/11/19 05:06,"209 Maple St, Austin, TX 73301" +189612,Google Phone,1,600,04/15/19 13:21,"220 Main St, Portland, ME 04101" +189612,USB-C Charging Cable,1,11.95,04/15/19 13:21,"220 Main St, Portland, ME 04101" +189612,Wired Headphones,1,11.99,04/15/19 13:21,"220 Main St, Portland, ME 04101" +189613,USB-C Charging Cable,1,11.95,04/19/19 19:58,"590 4th St, Atlanta, GA 30301" +189614,Bose SoundSport Headphones,1,99.99,04/24/19 19:03,"343 Spruce St, New York City, NY 10001" +189615,USB-C Charging Cable,2,11.95,04/17/19 15:24,"314 11th St, Dallas, TX 75001" +189616,AAA Batteries (4-pack),2,2.99,04/30/19 12:04,"681 Center St, San Francisco, CA 94016" +189617,Wired Headphones,1,11.99,04/01/19 06:57,"180 7th St, New York City, NY 10001" +189618,Bose SoundSport Headphones,1,99.99,04/17/19 19:04,"434 West St, Los Angeles, CA 90001" +189619,AA Batteries (4-pack),1,3.84,04/13/19 22:01,"863 4th St, San Francisco, CA 94016" +189620,27in 4K Gaming Monitor,1,389.99,04/28/19 12:33,"644 10th St, San Francisco, CA 94016" +189621,Apple Airpods Headphones,1,150,04/20/19 23:36,"496 Dogwood St, Los Angeles, CA 90001" +189622,AA Batteries (4-pack),2,3.84,04/30/19 08:58,"603 5th St, Los Angeles, CA 90001" +189623,ThinkPad Laptop,1,999.99,04/18/19 12:24,"794 Washington St, Seattle, WA 98101" +189624,AAA Batteries (4-pack),1,2.99,04/28/19 18:40,"392 1st St, Dallas, TX 75001" +189625,AA Batteries (4-pack),1,3.84,04/19/19 22:02,"173 Walnut St, San Francisco, CA 94016" +189626,34in Ultrawide Monitor,1,379.99,04/22/19 09:28,"114 Highland St, Austin, TX 73301" +189627,Lightning Charging Cable,1,14.95,04/07/19 18:22,"37 Lincoln St, Los Angeles, CA 90001" +189628,AAA Batteries (4-pack),1,2.99,04/15/19 19:36,"918 8th St, New York City, NY 10001" +189629,AA Batteries (4-pack),1,3.84,04/28/19 13:24,"862 South St, Portland, OR 97035" +189630,34in Ultrawide Monitor,1,379.99,04/17/19 13:57,"383 4th St, New York City, NY 10001" +189631,Flatscreen TV,1,300,04/21/19 01:23,"83 1st St, New York City, NY 10001" +189632,Lightning Charging Cable,1,14.95,04/23/19 12:44,"914 Lincoln St, Boston, MA 02215" +189633,Vareebadd Phone,1,400,04/21/19 17:55,"77 Jefferson St, Austin, TX 73301" +189634,Wired Headphones,1,11.99,04/01/19 05:08,"249 Chestnut St, San Francisco, CA 94016" +189635,Lightning Charging Cable,1,14.95,04/03/19 16:08,"970 Highland St, San Francisco, CA 94016" +189636,AA Batteries (4-pack),1,3.84,04/06/19 20:56,"416 Spruce St, San Francisco, CA 94016" +189637,Apple Airpods Headphones,1,150,04/17/19 10:22,"493 Cedar St, Dallas, TX 75001" +189638,AA Batteries (4-pack),1,3.84,04/19/19 08:45,"487 Hickory St, San Francisco, CA 94016" +189639,Lightning Charging Cable,1,14.95,04/23/19 09:37,"105 Church St, Portland, ME 04101" +189640,Lightning Charging Cable,1,14.95,04/16/19 20:25,"790 Adams St, Portland, ME 04101" +189641,USB-C Charging Cable,1,11.95,04/22/19 01:34,"408 Jefferson St, Los Angeles, CA 90001" +189642,Apple Airpods Headphones,1,150,04/02/19 13:59,"40 Jackson St, San Francisco, CA 94016" +189643,Flatscreen TV,1,300,04/17/19 21:36,"712 Adams St, Boston, MA 02215" +189644,ThinkPad Laptop,1,999.99,04/14/19 21:51,"829 Willow St, Boston, MA 02215" +189645,Apple Airpods Headphones,1,150,04/21/19 14:59,"4 Center St, Portland, ME 04101" +189646,Macbook Pro Laptop,1,1700,04/02/19 05:58,"60 Wilson St, San Francisco, CA 94016" +189647,Bose SoundSport Headphones,1,99.99,04/29/19 19:53,"144 Highland St, Atlanta, GA 30301" +189648,AAA Batteries (4-pack),1,2.99,04/02/19 20:35,"357 7th St, Seattle, WA 98101" +189649,ThinkPad Laptop,1,999.99,04/29/19 16:29,"424 12th St, San Francisco, CA 94016" +189650,Lightning Charging Cable,1,14.95,04/02/19 22:55,"928 2nd St, Dallas, TX 75001" +189651,AA Batteries (4-pack),1,3.84,04/14/19 20:27,"190 Highland St, New York City, NY 10001" +189652,Lightning Charging Cable,1,14.95,04/26/19 14:41,"241 Ridge St, San Francisco, CA 94016" +189653,AAA Batteries (4-pack),1,2.99,04/11/19 00:28,"574 Chestnut St, San Francisco, CA 94016" +189654,iPhone,1,700,04/25/19 12:37,"362 12th St, Seattle, WA 98101" +189655,27in 4K Gaming Monitor,1,389.99,04/20/19 23:59,"91 Madison St, Austin, TX 73301" +189656,34in Ultrawide Monitor,1,379.99,04/12/19 12:51,"605 Wilson St, Los Angeles, CA 90001" +189657,USB-C Charging Cable,1,11.95,04/07/19 21:39,"470 9th St, Atlanta, GA 30301" +189658,AA Batteries (4-pack),1,3.84,04/27/19 17:17,"758 Lakeview St, Atlanta, GA 30301" +189659,20in Monitor,1,109.99,04/02/19 00:44,"961 Maple St, San Francisco, CA 94016" +189660,AAA Batteries (4-pack),2,2.99,04/25/19 19:44,"531 9th St, San Francisco, CA 94016" +189661,Vareebadd Phone,1,400,04/29/19 15:17,"471 Jackson St, Seattle, WA 98101" +189662,AAA Batteries (4-pack),1,2.99,04/02/19 16:39,"161 Willow St, Seattle, WA 98101" +189663,AA Batteries (4-pack),2,3.84,04/21/19 10:22,"120 Cedar St, Los Angeles, CA 90001" +189664,Lightning Charging Cable,1,14.95,04/14/19 10:50,"808 Spruce St, New York City, NY 10001" +189665,Bose SoundSport Headphones,1,99.99,04/13/19 20:31,"263 West St, Austin, TX 73301" +189666,Lightning Charging Cable,1,14.95,04/07/19 00:10,"285 Madison St, San Francisco, CA 94016" +189667,AAA Batteries (4-pack),1,2.99,04/18/19 09:46,"366 4th St, New York City, NY 10001" +189668,AA Batteries (4-pack),1,3.84,04/15/19 13:25,"73 7th St, Los Angeles, CA 90001" +189669,AA Batteries (4-pack),3,3.84,04/12/19 12:10,"768 Highland St, Los Angeles, CA 90001" +189670,AA Batteries (4-pack),1,3.84,04/23/19 14:28,"501 Pine St, San Francisco, CA 94016" +189671,iPhone,1,700,04/12/19 23:03,"296 Johnson St, San Francisco, CA 94016" +189672,AAA Batteries (4-pack),1,2.99,04/25/19 10:34,"41 Hickory St, Boston, MA 02215" +189672,AAA Batteries (4-pack),1,2.99,04/25/19 10:34,"41 Hickory St, Boston, MA 02215" +189673,Lightning Charging Cable,1,14.95,04/07/19 17:11,"939 Main St, San Francisco, CA 94016" +189674,Wired Headphones,1,11.99,04/07/19 14:15,"483 13th St, Portland, OR 97035" +189675,USB-C Charging Cable,1,11.95,04/12/19 13:42,"743 1st St, Atlanta, GA 30301" +189676,Google Phone,1,600,04/25/19 17:17,"337 Hickory St, Boston, MA 02215" +189677,Lightning Charging Cable,1,14.95,04/03/19 14:23,"343 Adams St, Boston, MA 02215" +189678,USB-C Charging Cable,1,11.95,04/30/19 22:58,"969 Pine St, Boston, MA 02215" +189679,Wired Headphones,1,11.99,04/26/19 00:09,"892 Wilson St, San Francisco, CA 94016" +189680,AA Batteries (4-pack),1,3.84,04/03/19 12:42,"749 Forest St, San Francisco, CA 94016" +189681,Bose SoundSport Headphones,1,99.99,04/13/19 22:45,"445 Willow St, Los Angeles, CA 90001" +189682,AAA Batteries (4-pack),1,2.99,04/05/19 18:28,"348 4th St, Los Angeles, CA 90001" +189683,34in Ultrawide Monitor,1,379.99,04/16/19 14:41,"975 Maple St, Boston, MA 02215" +189684,27in 4K Gaming Monitor,1,389.99,04/16/19 20:12,"593 2nd St, San Francisco, CA 94016" +189685,Vareebadd Phone,1,400,04/14/19 14:36,"473 8th St, Portland, ME 04101" +189686,Apple Airpods Headphones,1,150,04/19/19 10:43,"738 Hickory St, San Francisco, CA 94016" +189687,Wired Headphones,1,11.99,04/06/19 20:39,"588 Hill St, Austin, TX 73301" +189687,USB-C Charging Cable,1,11.95,04/06/19 20:39,"588 Hill St, Austin, TX 73301" +189688,AA Batteries (4-pack),1,3.84,04/08/19 15:17,"690 2nd St, Atlanta, GA 30301" +189689,Lightning Charging Cable,1,14.95,04/10/19 21:46,"503 Meadow St, Boston, MA 02215" +189690,USB-C Charging Cable,1,11.95,04/04/19 17:48,"84 Spruce St, Los Angeles, CA 90001" +189691,Lightning Charging Cable,1,14.95,04/09/19 15:37,"62 7th St, Boston, MA 02215" +189692,AAA Batteries (4-pack),1,2.99,04/06/19 09:18,"537 Main St, Los Angeles, CA 90001" +189693,Wired Headphones,1,11.99,04/27/19 08:17,"670 6th St, San Francisco, CA 94016" +189694,Apple Airpods Headphones,1,150,04/27/19 07:49,"67 Chestnut St, Boston, MA 02215" +189695,27in FHD Monitor,1,149.99,04/08/19 12:44,"507 Elm St, San Francisco, CA 94016" +189696,AAA Batteries (4-pack),1,2.99,04/25/19 16:19,"937 Adams St, Austin, TX 73301" +189697,ThinkPad Laptop,1,999.99,04/27/19 02:46,"331 Church St, Los Angeles, CA 90001" +189698,USB-C Charging Cable,2,11.95,04/17/19 18:06,"447 Washington St, Los Angeles, CA 90001" +189699,Apple Airpods Headphones,1,150,04/17/19 10:08,"454 10th St, San Francisco, CA 94016" +189700,AA Batteries (4-pack),1,3.84,04/21/19 16:12,"671 River St, Seattle, WA 98101" +189701,Lightning Charging Cable,1,14.95,04/27/19 12:19,"919 Pine St, Atlanta, GA 30301" +189702,AAA Batteries (4-pack),1,2.99,04/02/19 10:44,"155 1st St, Boston, MA 02215" +189703,Lightning Charging Cable,1,14.95,04/08/19 16:30,"353 13th St, Los Angeles, CA 90001" +189704,Wired Headphones,1,11.99,04/21/19 18:30,"867 Main St, Seattle, WA 98101" +189705,USB-C Charging Cable,1,11.95,04/11/19 18:35,"813 Church St, Boston, MA 02215" +189706,AAA Batteries (4-pack),1,2.99,04/05/19 15:42,"879 Main St, San Francisco, CA 94016" +189707,AAA Batteries (4-pack),3,2.99,04/17/19 16:25,"294 Park St, Los Angeles, CA 90001" +189708,USB-C Charging Cable,1,11.95,04/24/19 16:07,"340 Adams St, New York City, NY 10001" +189709,20in Monitor,1,109.99,04/17/19 17:57,"651 Chestnut St, San Francisco, CA 94016" +189710,AAA Batteries (4-pack),2,2.99,04/15/19 19:33,"788 6th St, San Francisco, CA 94016" +189711,Google Phone,1,600,04/04/19 13:16,"401 Ridge St, Dallas, TX 75001" +189712,USB-C Charging Cable,1,11.95,04/09/19 00:12,"320 5th St, Los Angeles, CA 90001" +189713,Wired Headphones,1,11.99,04/13/19 21:00,"800 9th St, Boston, MA 02215" +189714,Apple Airpods Headphones,1,150,04/21/19 11:47,"443 Hickory St, Boston, MA 02215" +189715,Lightning Charging Cable,1,14.95,04/08/19 16:47,"568 Lakeview St, Los Angeles, CA 90001" +189716,Bose SoundSport Headphones,1,99.99,04/24/19 21:00,"238 Sunset St, Seattle, WA 98101" +189717,27in 4K Gaming Monitor,1,389.99,04/17/19 22:08,"10 9th St, New York City, NY 10001" +189718,AAA Batteries (4-pack),1,2.99,04/07/19 13:32,"633 5th St, Los Angeles, CA 90001" +189719,Bose SoundSport Headphones,1,99.99,04/22/19 12:12,"583 4th St, Boston, MA 02215" +189720,27in FHD Monitor,1,149.99,04/18/19 18:37,"780 Lakeview St, Seattle, WA 98101" +189721,AA Batteries (4-pack),1,3.84,04/12/19 13:27,"782 Hickory St, New York City, NY 10001" +189722,Lightning Charging Cable,2,14.95,04/29/19 16:51,"49 Maple St, Portland, OR 97035" +189723,Apple Airpods Headphones,1,150,04/10/19 22:30,"627 Jefferson St, Seattle, WA 98101" +189724,AA Batteries (4-pack),1,3.84,04/17/19 11:01,"29 4th St, Dallas, TX 75001" +189725,USB-C Charging Cable,1,11.95,04/29/19 13:56,"594 7th St, Los Angeles, CA 90001" +189726,AAA Batteries (4-pack),1,2.99,04/15/19 20:25,"411 Pine St, Dallas, TX 75001" +189727,Lightning Charging Cable,1,14.95,04/04/19 13:29,"723 9th St, Seattle, WA 98101" +189728,Bose SoundSport Headphones,1,99.99,04/07/19 11:58,"725 South St, Los Angeles, CA 90001" +189729,AA Batteries (4-pack),1,3.84,04/29/19 02:09,"971 West St, Portland, ME 04101" +189730,AA Batteries (4-pack),1,3.84,04/21/19 05:15,"561 12th St, San Francisco, CA 94016" +189731,Apple Airpods Headphones,1,150,04/15/19 17:56,"848 Spruce St, New York City, NY 10001" +189732,AA Batteries (4-pack),1,3.84,04/15/19 22:16,"56 Forest St, Boston, MA 02215" +189733,Wired Headphones,1,11.99,04/09/19 22:41,"569 Highland St, San Francisco, CA 94016" +189734,USB-C Charging Cable,1,11.95,04/08/19 19:58,"550 Cherry St, Austin, TX 73301" +189735,Wired Headphones,1,11.99,04/29/19 21:16,"467 Cedar St, Austin, TX 73301" +189736,AAA Batteries (4-pack),1,2.99,04/10/19 16:50,"760 Adams St, Atlanta, GA 30301" +189737,Lightning Charging Cable,1,14.95,04/29/19 19:28,"551 Washington St, New York City, NY 10001" +189738,AA Batteries (4-pack),1,3.84,04/03/19 19:25,"97 7th St, Los Angeles, CA 90001" +189739,Lightning Charging Cable,1,14.95,04/22/19 12:23,"415 Lake St, Los Angeles, CA 90001" +189740,Wired Headphones,1,11.99,04/19/19 19:47,"150 Meadow St, New York City, NY 10001" +189741,USB-C Charging Cable,1,11.95,04/24/19 23:06,"973 Center St, San Francisco, CA 94016" +189742,Wired Headphones,1,11.99,04/20/19 14:08,"796 7th St, New York City, NY 10001" +189743,Google Phone,1,600,04/10/19 17:11,"861 Chestnut St, Los Angeles, CA 90001" +189744,Macbook Pro Laptop,1,1700,04/20/19 17:20,"955 West St, New York City, NY 10001" +189745,Lightning Charging Cable,1,14.95,04/30/19 15:07,"621 6th St, New York City, NY 10001" +189746,Apple Airpods Headphones,1,150,04/12/19 16:54,"303 Chestnut St, New York City, NY 10001" +189747,USB-C Charging Cable,1,11.95,04/22/19 11:38,"200 Highland St, Los Angeles, CA 90001" +189748,AAA Batteries (4-pack),1,2.99,04/21/19 07:05,"538 Maple St, San Francisco, CA 94016" +189749,USB-C Charging Cable,1,11.95,04/30/19 14:38,"485 7th St, New York City, NY 10001" +189750,Flatscreen TV,1,300,04/20/19 12:58,"833 12th St, Los Angeles, CA 90001" +189751,AA Batteries (4-pack),3,3.84,04/26/19 14:25,"587 7th St, New York City, NY 10001" +189752,iPhone,1,700,04/05/19 15:05,"159 11th St, Austin, TX 73301" +189753,Wired Headphones,1,11.99,04/12/19 09:19,"18 Cedar St, San Francisco, CA 94016" +189754,AA Batteries (4-pack),1,3.84,04/24/19 17:19,"400 Meadow St, San Francisco, CA 94016" +189755,Wired Headphones,1,11.99,04/15/19 11:52,"382 2nd St, Boston, MA 02215" +189756,Bose SoundSport Headphones,1,99.99,04/13/19 12:23,"556 11th St, Seattle, WA 98101" +189757,AAA Batteries (4-pack),2,2.99,04/08/19 17:30,"536 12th St, Los Angeles, CA 90001" +189758,Wired Headphones,1,11.99,04/18/19 17:20,"932 Dogwood St, Seattle, WA 98101" +189759,34in Ultrawide Monitor,1,379.99,04/08/19 07:31,"671 Hickory St, New York City, NY 10001" +189760,Flatscreen TV,1,300,04/22/19 14:50,"924 West St, San Francisco, CA 94016" +189761,Macbook Pro Laptop,1,1700,04/29/19 14:01,"577 Center St, Portland, OR 97035" +189762,Bose SoundSport Headphones,1,99.99,04/10/19 10:44,"461 Walnut St, Dallas, TX 75001" +189763,Google Phone,1,600,04/17/19 22:50,"342 Jefferson St, Boston, MA 02215" +189764,Macbook Pro Laptop,1,1700,04/25/19 10:08,"402 River St, San Francisco, CA 94016" +189765,27in FHD Monitor,1,149.99,04/28/19 23:08,"312 Meadow St, Portland, OR 97035" +189766,AAA Batteries (4-pack),2,2.99,04/25/19 02:57,"694 Cherry St, San Francisco, CA 94016" +189767,Google Phone,1,600,04/19/19 15:44,"589 1st St, Los Angeles, CA 90001" +189768,Bose SoundSport Headphones,1,99.99,04/20/19 11:51,"805 5th St, Boston, MA 02215" +189769,Lightning Charging Cable,1,14.95,04/28/19 02:16,"599 Cedar St, New York City, NY 10001" +189770,AA Batteries (4-pack),2,3.84,04/18/19 20:55,"626 Johnson St, Boston, MA 02215" +189771,Bose SoundSport Headphones,1,99.99,04/03/19 20:59,"252 13th St, Boston, MA 02215" +189772,AA Batteries (4-pack),1,3.84,04/05/19 10:05,"25 Hickory St, San Francisco, CA 94016" +189773,20in Monitor,1,109.99,04/28/19 16:37,"491 10th St, San Francisco, CA 94016" +189774,Lightning Charging Cable,1,14.95,04/09/19 17:31,"988 13th St, New York City, NY 10001" +189775,Wired Headphones,2,11.99,04/13/19 19:05,"945 Forest St, New York City, NY 10001" +189776,Flatscreen TV,1,300,04/18/19 10:53,"385 Maple St, San Francisco, CA 94016" +189777,Macbook Pro Laptop,1,1700,04/08/19 20:00,"553 6th St, Los Angeles, CA 90001" +189778,AA Batteries (4-pack),1,3.84,04/24/19 13:08,"186 9th St, Dallas, TX 75001" +189779,AA Batteries (4-pack),1,3.84,04/23/19 11:58,"893 Lakeview St, Dallas, TX 75001" +189780,Wired Headphones,1,11.99,04/16/19 19:12,"586 Madison St, Austin, TX 73301" +189781,Google Phone,1,600,04/11/19 19:23,"548 Meadow St, Dallas, TX 75001" +189782,USB-C Charging Cable,1,11.95,04/21/19 12:47,"568 Adams St, San Francisco, CA 94016" +189783,Bose SoundSport Headphones,1,99.99,04/30/19 11:54,"803 2nd St, New York City, NY 10001" +189784,Wired Headphones,1,11.99,04/20/19 12:38,"344 11th St, San Francisco, CA 94016" +189785,AAA Batteries (4-pack),1,2.99,05/01/19 02:35,"996 River St, San Francisco, CA 94016" +189786,AAA Batteries (4-pack),1,2.99,04/23/19 18:53,"889 10th St, Portland, ME 04101" +189787,Lightning Charging Cable,1,14.95,04/24/19 12:36,"912 Center St, San Francisco, CA 94016" +189788,AA Batteries (4-pack),1,3.84,04/11/19 17:33,"63 Adams St, Los Angeles, CA 90001" +189789,Apple Airpods Headphones,1,150,04/19/19 13:15,"317 Sunset St, New York City, NY 10001" +189790,Wired Headphones,1,11.99,04/28/19 22:10,"860 Maple St, New York City, NY 10001" +189791,AA Batteries (4-pack),1,3.84,04/29/19 12:35,"914 13th St, Los Angeles, CA 90001" +189792,Bose SoundSport Headphones,1,99.99,04/20/19 12:27,"859 8th St, Los Angeles, CA 90001" +189793,Wired Headphones,1,11.99,04/16/19 21:35,"635 Pine St, Seattle, WA 98101" +189794,Wired Headphones,1,11.99,04/25/19 13:02,"729 North St, New York City, NY 10001" +189794,34in Ultrawide Monitor,1,379.99,04/25/19 13:02,"729 North St, New York City, NY 10001" +189795,AAA Batteries (4-pack),4,2.99,04/23/19 12:14,"542 Willow St, San Francisco, CA 94016" +189796,Google Phone,1,600,04/02/19 08:52,"313 Lincoln St, Los Angeles, CA 90001" +189797,Lightning Charging Cable,1,14.95,04/21/19 08:07,"243 5th St, New York City, NY 10001" +189798,AA Batteries (4-pack),1,3.84,04/06/19 20:58,"194 14th St, Boston, MA 02215" +189799,AA Batteries (4-pack),1,3.84,04/19/19 07:16,"261 2nd St, Los Angeles, CA 90001" +189800,ThinkPad Laptop,1,999.99,04/07/19 08:00,"788 Forest St, Dallas, TX 75001" +189801,AA Batteries (4-pack),1,3.84,04/20/19 21:15,"494 West St, Boston, MA 02215" +189802,LG Washing Machine,1,600.0,04/01/19 18:33,"680 14th St, Boston, MA 02215" +189803,AAA Batteries (4-pack),4,2.99,04/13/19 19:37,"736 Johnson St, San Francisco, CA 94016" +189804,Lightning Charging Cable,2,14.95,04/25/19 09:00,"148 Main St, Boston, MA 02215" +189805,Wired Headphones,1,11.99,04/11/19 23:54,"148 Wilson St, New York City, NY 10001" +189806,AA Batteries (4-pack),1,3.84,04/30/19 10:38,"668 Cherry St, Atlanta, GA 30301" +189807,AA Batteries (4-pack),1,3.84,04/16/19 18:51,"204 4th St, Boston, MA 02215" +189808,USB-C Charging Cable,1,11.95,04/27/19 14:40,"494 Church St, Austin, TX 73301" +189809,Lightning Charging Cable,1,14.95,04/20/19 19:59,"797 Jackson St, Los Angeles, CA 90001" +189810,USB-C Charging Cable,2,11.95,04/09/19 17:36,"834 Pine St, San Francisco, CA 94016" +189811,AA Batteries (4-pack),1,3.84,04/13/19 12:17,"17 13th St, Los Angeles, CA 90001" +189812,Bose SoundSport Headphones,1,99.99,04/07/19 13:31,"123 West St, San Francisco, CA 94016" +189813,AA Batteries (4-pack),1,3.84,04/04/19 20:10,"331 Center St, San Francisco, CA 94016" +189814,iPhone,1,700,04/19/19 09:29,"910 Highland St, Dallas, TX 75001" +189815,Apple Airpods Headphones,1,150,04/06/19 17:46,"366 Hill St, Los Angeles, CA 90001" +189816,Wired Headphones,1,11.99,04/30/19 20:12,"325 West St, Boston, MA 02215" +189817,AAA Batteries (4-pack),1,2.99,04/18/19 12:58,"224 Cedar St, Atlanta, GA 30301" +189818,AAA Batteries (4-pack),1,2.99,04/13/19 15:12,"653 14th St, New York City, NY 10001" +189819,27in 4K Gaming Monitor,1,389.99,04/08/19 23:03,"790 Spruce St, Los Angeles, CA 90001" +189820,34in Ultrawide Monitor,1,379.99,04/08/19 08:50,"221 North St, Boston, MA 02215" +189821,ThinkPad Laptop,1,999.99,04/25/19 10:11,"78 Park St, San Francisco, CA 94016" +189822,AAA Batteries (4-pack),1,2.99,04/23/19 23:20,"231 Willow St, Seattle, WA 98101" +189823,34in Ultrawide Monitor,1,379.99,04/16/19 22:31,"380 14th St, San Francisco, CA 94016" +189824,AAA Batteries (4-pack),2,2.99,04/13/19 12:57,"228 Adams St, Dallas, TX 75001" +189825,AA Batteries (4-pack),1,3.84,04/30/19 19:14,"178 7th St, Austin, TX 73301" +189826,34in Ultrawide Monitor,1,379.99,04/21/19 21:35,"129 Highland St, San Francisco, CA 94016" +189827,Lightning Charging Cable,1,14.95,04/23/19 00:15,"706 Hill St, Los Angeles, CA 90001" +189828,20in Monitor,1,109.99,04/01/19 11:29,"658 Lincoln St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +189829,34in Ultrawide Monitor,1,379.99,04/06/19 08:41,"88 14th St, Atlanta, GA 30301" +189830,USB-C Charging Cable,1,11.95,04/09/19 11:42,"772 13th St, San Francisco, CA 94016" +189831,34in Ultrawide Monitor,1,379.99,04/06/19 22:16,"984 7th St, Atlanta, GA 30301" +189832,ThinkPad Laptop,1,999.99,04/09/19 14:14,"341 Walnut St, Portland, ME 04101" +189833,ThinkPad Laptop,1,999.99,04/16/19 10:07,"503 Main St, San Francisco, CA 94016" +189834,27in 4K Gaming Monitor,1,389.99,04/12/19 16:22,"339 7th St, San Francisco, CA 94016" +189835,USB-C Charging Cable,1,11.95,04/23/19 22:55,"141 7th St, Los Angeles, CA 90001" +189835,Bose SoundSport Headphones,1,99.99,04/23/19 22:55,"141 7th St, Los Angeles, CA 90001" +189836,iPhone,1,700,04/11/19 16:40,"898 Dogwood St, San Francisco, CA 94016" +189836,Apple Airpods Headphones,1,150,04/11/19 16:40,"898 Dogwood St, San Francisco, CA 94016" +189837,Lightning Charging Cable,1,14.95,04/14/19 00:34,"442 14th St, Boston, MA 02215" +189838,Apple Airpods Headphones,1,150,04/23/19 22:45,"593 Johnson St, Los Angeles, CA 90001" +189839,AA Batteries (4-pack),1,3.84,04/16/19 06:49,"203 Lake St, Atlanta, GA 30301" +189840,Google Phone,1,600,04/12/19 11:02,"899 12th St, San Francisco, CA 94016" +189841,USB-C Charging Cable,1,11.95,04/23/19 15:03,"626 Adams St, Boston, MA 02215" +189842,Bose SoundSport Headphones,1,99.99,04/01/19 19:38,"473 13th St, San Francisco, CA 94016" +189843,20in Monitor,1,109.99,04/02/19 19:23,"132 North St, Portland, ME 04101" +189844,Bose SoundSport Headphones,1,99.99,04/14/19 08:37,"439 9th St, Seattle, WA 98101" +189845,Wired Headphones,1,11.99,04/07/19 13:19,"357 Cedar St, Dallas, TX 75001" +189846,27in FHD Monitor,1,149.99,04/27/19 18:37,"447 West St, Atlanta, GA 30301" +189847,27in FHD Monitor,1,149.99,04/28/19 15:11,"524 Spruce St, Atlanta, GA 30301" +189848,USB-C Charging Cable,2,11.95,04/06/19 15:36,"818 Hill St, San Francisco, CA 94016" +189849,USB-C Charging Cable,1,11.95,04/03/19 00:44,"702 Walnut St, New York City, NY 10001" +189850,Lightning Charging Cable,1,14.95,04/07/19 13:51,"658 Spruce St, Austin, TX 73301" +189851,Lightning Charging Cable,1,14.95,04/04/19 17:29,"326 Jefferson St, Boston, MA 02215" +189852,AA Batteries (4-pack),1,3.84,04/18/19 09:51,"21 Park St, Seattle, WA 98101" +189853,Apple Airpods Headphones,2,150,04/30/19 14:19,"761 Wilson St, New York City, NY 10001" +189854,27in FHD Monitor,1,149.99,04/28/19 18:18,"2 13th St, New York City, NY 10001" +189855,AA Batteries (4-pack),2,3.84,04/15/19 20:20,"340 2nd St, Dallas, TX 75001" +189856,AAA Batteries (4-pack),3,2.99,04/06/19 19:17,"584 14th St, San Francisco, CA 94016" +189857,Lightning Charging Cable,1,14.95,04/29/19 11:59,"778 Park St, Atlanta, GA 30301" +189858,Lightning Charging Cable,2,14.95,04/21/19 06:27,"939 Forest St, Los Angeles, CA 90001" +189859,iPhone,1,700,04/04/19 15:13,"455 Walnut St, Atlanta, GA 30301" +189860,AAA Batteries (4-pack),1,2.99,04/20/19 17:31,"721 8th St, Portland, OR 97035" +189861,AAA Batteries (4-pack),1,2.99,04/29/19 09:28,"655 Cherry St, San Francisco, CA 94016" +189862,USB-C Charging Cable,1,11.95,04/01/19 22:00,"570 Park St, Portland, OR 97035" +189863,Wired Headphones,1,11.99,04/25/19 12:37,"14 6th St, Los Angeles, CA 90001" +189864,USB-C Charging Cable,1,11.95,04/20/19 19:52,"377 Willow St, Portland, OR 97035" +189865,Lightning Charging Cable,1,14.95,04/16/19 20:45,"469 4th St, San Francisco, CA 94016" +189866,USB-C Charging Cable,3,11.95,04/17/19 17:36,"273 Washington St, Austin, TX 73301" +189867,AA Batteries (4-pack),1,3.84,04/13/19 09:21,"132 Hickory St, New York City, NY 10001" +189868,USB-C Charging Cable,1,11.95,04/25/19 18:17,"699 Lakeview St, San Francisco, CA 94016" +189869,20in Monitor,1,109.99,04/08/19 12:30,"151 Spruce St, New York City, NY 10001" +189869,27in 4K Gaming Monitor,1,389.99,04/08/19 12:30,"151 Spruce St, New York City, NY 10001" +189870,USB-C Charging Cable,1,11.95,04/15/19 17:34,"490 Lake St, San Francisco, CA 94016" +189871,Bose SoundSport Headphones,1,99.99,04/28/19 11:48,"891 2nd St, New York City, NY 10001" +189872,Lightning Charging Cable,1,14.95,04/27/19 11:53,"207 Spruce St, Portland, OR 97035" +189873,USB-C Charging Cable,1,11.95,04/15/19 20:34,"426 Elm St, Boston, MA 02215" +189874,Lightning Charging Cable,2,14.95,04/27/19 23:10,"356 Maple St, Dallas, TX 75001" +189875,USB-C Charging Cable,1,11.95,04/04/19 10:14,"226 Meadow St, San Francisco, CA 94016" +189876,AA Batteries (4-pack),1,3.84,04/04/19 14:56,"559 South St, Los Angeles, CA 90001" +189877,AA Batteries (4-pack),1,3.84,04/05/19 21:48,"36 Johnson St, San Francisco, CA 94016" +189878,AA Batteries (4-pack),1,3.84,04/23/19 20:51,"996 Adams St, Dallas, TX 75001" +189879,Bose SoundSport Headphones,1,99.99,04/12/19 13:56,"142 Lincoln St, Los Angeles, CA 90001" +189880,USB-C Charging Cable,1,11.95,04/13/19 18:47,"309 Washington St, Portland, OR 97035" +189881,Wired Headphones,1,11.99,04/26/19 17:52,"822 Ridge St, San Francisco, CA 94016" +189882,AA Batteries (4-pack),1,3.84,04/25/19 20:51,"814 10th St, San Francisco, CA 94016" +189883,AAA Batteries (4-pack),1,2.99,04/05/19 22:36,"829 11th St, Dallas, TX 75001" +189884,USB-C Charging Cable,1,11.95,04/18/19 20:30,"595 Spruce St, Los Angeles, CA 90001" +189885,Wired Headphones,1,11.99,04/30/19 00:24,"459 West St, Los Angeles, CA 90001" +189886,Lightning Charging Cable,1,14.95,04/27/19 12:24,"249 North St, New York City, NY 10001" +189887,ThinkPad Laptop,1,999.99,04/12/19 13:54,"909 2nd St, Seattle, WA 98101" +189888,Lightning Charging Cable,1,14.95,04/14/19 12:49,"363 Lake St, Atlanta, GA 30301" +189889,34in Ultrawide Monitor,1,379.99,04/19/19 17:23,"379 Jackson St, San Francisco, CA 94016" +189890,Apple Airpods Headphones,1,150,04/26/19 13:45,"379 9th St, Boston, MA 02215" +189891,USB-C Charging Cable,2,11.95,04/03/19 14:00,"725 Park St, Los Angeles, CA 90001" +189892,Lightning Charging Cable,1,14.95,04/12/19 13:40,"205 Lakeview St, Dallas, TX 75001" +189893,Apple Airpods Headphones,1,150,04/03/19 02:04,"322 Cedar St, Seattle, WA 98101" +189894,AA Batteries (4-pack),2,3.84,04/21/19 10:34,"383 Meadow St, Boston, MA 02215" +189895,ThinkPad Laptop,1,999.99,04/03/19 20:00,"340 Highland St, New York City, NY 10001" +189896,34in Ultrawide Monitor,1,379.99,04/11/19 18:04,"65 6th St, San Francisco, CA 94016" +189897,Wired Headphones,1,11.99,04/03/19 02:28,"207 Jefferson St, San Francisco, CA 94016" +189898,iPhone,1,700,04/04/19 11:22,"20 Walnut St, Atlanta, GA 30301" +189899,Wired Headphones,1,11.99,04/12/19 12:27,"771 Lake St, New York City, NY 10001" +189900,Lightning Charging Cable,1,14.95,04/25/19 21:11,"762 4th St, Dallas, TX 75001" +189901,Apple Airpods Headphones,1,150,04/15/19 10:17,"745 Adams St, Dallas, TX 75001" +189902,Apple Airpods Headphones,1,150,04/17/19 11:40,"80 Meadow St, Seattle, WA 98101" +189903,Apple Airpods Headphones,1,150,04/19/19 13:33,"188 Lakeview St, San Francisco, CA 94016" +189904,AA Batteries (4-pack),1,3.84,04/16/19 13:42,"894 Jefferson St, Austin, TX 73301" +189905,Wired Headphones,2,11.99,04/19/19 22:01,"601 North St, Portland, OR 97035" +189906,ThinkPad Laptop,1,999.99,04/10/19 01:42,"960 Jackson St, Austin, TX 73301" +189907,Flatscreen TV,1,300,04/24/19 17:50,"47 8th St, San Francisco, CA 94016" +189908,27in 4K Gaming Monitor,1,389.99,04/03/19 09:22,"222 South St, San Francisco, CA 94016" +189909,AAA Batteries (4-pack),1,2.99,04/12/19 09:37,"447 Johnson St, Atlanta, GA 30301" +189910,Vareebadd Phone,1,400,04/12/19 15:14,"858 Madison St, San Francisco, CA 94016" +189910,USB-C Charging Cable,1,11.95,04/12/19 15:14,"858 Madison St, San Francisco, CA 94016" +189911,Google Phone,1,600,04/07/19 18:27,"921 Forest St, Austin, TX 73301" +189912,Wired Headphones,1,11.99,04/24/19 14:26,"502 1st St, San Francisco, CA 94016" +189913,Apple Airpods Headphones,1,150,04/09/19 15:36,"537 11th St, Austin, TX 73301" +189914,AA Batteries (4-pack),1,3.84,04/13/19 23:42,"888 Highland St, Portland, OR 97035" +189915,Lightning Charging Cable,1,14.95,04/01/19 10:50,"197 River St, New York City, NY 10001" +189916,Apple Airpods Headphones,1,150,04/26/19 08:58,"665 River St, Atlanta, GA 30301" +189917,Wired Headphones,1,11.99,04/10/19 12:33,"348 Johnson St, Los Angeles, CA 90001" +189918,27in FHD Monitor,1,149.99,04/14/19 18:03,"240 Spruce St, San Francisco, CA 94016" +189919,Bose SoundSport Headphones,1,99.99,04/25/19 09:12,"178 Sunset St, San Francisco, CA 94016" +189920,Bose SoundSport Headphones,1,99.99,04/30/19 14:03,"135 South St, Austin, TX 73301" +189921,Lightning Charging Cable,1,14.95,04/11/19 07:46,"288 Pine St, Austin, TX 73301" +189922,AAA Batteries (4-pack),2,2.99,04/24/19 16:58,"215 14th St, Boston, MA 02215" +189923,AAA Batteries (4-pack),1,2.99,04/19/19 09:16,"240 Chestnut St, Los Angeles, CA 90001" +189924,USB-C Charging Cable,1,11.95,04/08/19 10:40,"472 Lake St, San Francisco, CA 94016" +189925,Lightning Charging Cable,1,14.95,04/16/19 15:30,"545 Maple St, Portland, OR 97035" +189926,Apple Airpods Headphones,1,150,04/01/19 22:44,"17 Lakeview St, Dallas, TX 75001" +189927,27in FHD Monitor,1,149.99,04/13/19 00:04,"243 7th St, Portland, OR 97035" +189928,Google Phone,1,600,04/15/19 17:45,"38 Elm St, San Francisco, CA 94016" +189929,Flatscreen TV,1,300,04/01/19 11:34,"737 Elm St, Seattle, WA 98101" +189930,USB-C Charging Cable,2,11.95,04/19/19 13:53,"885 10th St, Portland, OR 97035" +189931,Wired Headphones,1,11.99,04/13/19 12:47,"109 1st St, Atlanta, GA 30301" +189932,Apple Airpods Headphones,1,150,04/13/19 21:21,"493 West St, Los Angeles, CA 90001" +189933,AAA Batteries (4-pack),1,2.99,04/08/19 16:51,"80 Highland St, Seattle, WA 98101" +189934,ThinkPad Laptop,1,999.99,04/28/19 09:11,"93 9th St, Los Angeles, CA 90001" +189935,Lightning Charging Cable,1,14.95,04/27/19 21:25,"666 Chestnut St, New York City, NY 10001" +189936,AAA Batteries (4-pack),1,2.99,04/02/19 10:14,"203 Dogwood St, Los Angeles, CA 90001" +189937,Macbook Pro Laptop,1,1700,04/20/19 08:57,"154 Lincoln St, Dallas, TX 75001" +189938,iPhone,1,700,04/11/19 21:41,"565 7th St, Seattle, WA 98101" +189939,Bose SoundSport Headphones,1,99.99,04/25/19 18:27,"939 Jefferson St, Seattle, WA 98101" +189940,Bose SoundSport Headphones,1,99.99,04/30/19 12:55,"474 Willow St, Seattle, WA 98101" +189941,ThinkPad Laptop,1,999.99,04/01/19 10:15,"741 Main St, Los Angeles, CA 90001" +189942,USB-C Charging Cable,1,11.95,04/15/19 11:25,"377 Cherry St, Los Angeles, CA 90001" +189943,Apple Airpods Headphones,1,150,04/22/19 14:47,"71 North St, Portland, OR 97035" +189944,Apple Airpods Headphones,1,150,04/17/19 09:56,"345 Pine St, Portland, OR 97035" +189945,27in 4K Gaming Monitor,1,389.99,04/14/19 21:40,"419 2nd St, San Francisco, CA 94016" +189946,Macbook Pro Laptop,1,1700,04/23/19 08:34,"671 Park St, Dallas, TX 75001" +189947,Macbook Pro Laptop,1,1700,04/30/19 12:52,"664 North St, New York City, NY 10001" +189948,34in Ultrawide Monitor,1,379.99,04/29/19 11:41,"922 Hill St, San Francisco, CA 94016" +189949,Lightning Charging Cable,1,14.95,04/04/19 20:31,"904 Lincoln St, San Francisco, CA 94016" +189950,ThinkPad Laptop,1,999.99,04/13/19 18:18,"221 Spruce St, Boston, MA 02215" +189951,Lightning Charging Cable,1,14.95,04/24/19 11:57,"361 Lake St, Los Angeles, CA 90001" +189952,iPhone,1,700,04/12/19 15:55,"792 Johnson St, San Francisco, CA 94016" +189953,Wired Headphones,1,11.99,04/27/19 00:08,"791 Washington St, New York City, NY 10001" +189954,USB-C Charging Cable,1,11.95,04/13/19 18:52,"824 South St, Los Angeles, CA 90001" +189955,27in FHD Monitor,1,149.99,04/24/19 14:54,"876 14th St, Los Angeles, CA 90001" +189956,Lightning Charging Cable,1,14.95,04/21/19 23:51,"839 Adams St, Boston, MA 02215" +189957,27in FHD Monitor,1,149.99,04/22/19 18:12,"852 River St, Seattle, WA 98101" +189958,AAA Batteries (4-pack),2,2.99,04/25/19 11:53,"123 14th St, San Francisco, CA 94016" +189959,Bose SoundSport Headphones,1,99.99,04/30/19 10:52,"132 Johnson St, San Francisco, CA 94016" +189960,USB-C Charging Cable,1,11.95,04/13/19 07:53,"567 Forest St, Seattle, WA 98101" +189961,AAA Batteries (4-pack),3,2.99,04/04/19 12:35,"68 Jefferson St, San Francisco, CA 94016" +189962,Lightning Charging Cable,1,14.95,04/13/19 10:48,"353 Wilson St, New York City, NY 10001" +189963,AA Batteries (4-pack),2,3.84,04/22/19 16:37,"968 4th St, Boston, MA 02215" +189964,USB-C Charging Cable,1,11.95,04/26/19 13:28,"592 Hill St, San Francisco, CA 94016" +189965,AAA Batteries (4-pack),3,2.99,04/27/19 09:56,"289 11th St, Los Angeles, CA 90001" +189966,AA Batteries (4-pack),1,3.84,04/18/19 09:05,"402 Chestnut St, Austin, TX 73301" +189967,Apple Airpods Headphones,1,150,04/27/19 12:09,"89 North St, Los Angeles, CA 90001" +189968,Macbook Pro Laptop,1,1700,04/20/19 18:28,"201 Madison St, Los Angeles, CA 90001" +189969,iPhone,1,700,04/15/19 11:29,"199 13th St, Portland, OR 97035" +189970,Bose SoundSport Headphones,1,99.99,04/14/19 11:57,"968 6th St, Austin, TX 73301" +189971,Flatscreen TV,1,300,04/03/19 15:27,"890 Pine St, Seattle, WA 98101" +189972,Bose SoundSport Headphones,1,99.99,04/01/19 15:39,"289 Dogwood St, Los Angeles, CA 90001" +189973,Apple Airpods Headphones,1,150,04/12/19 23:11,"360 Washington St, Los Angeles, CA 90001" +189974,Wired Headphones,1,11.99,04/03/19 14:29,"312 North St, Boston, MA 02215" +189975,AA Batteries (4-pack),2,3.84,04/27/19 15:52,"903 Ridge St, San Francisco, CA 94016" +189976,AA Batteries (4-pack),1,3.84,04/09/19 20:36,"721 Cedar St, Dallas, TX 75001" +189977,Wired Headphones,1,11.99,04/17/19 20:31,"633 Meadow St, Dallas, TX 75001" +189978,AA Batteries (4-pack),1,3.84,04/29/19 21:35,"406 Lakeview St, Portland, OR 97035" +189979,Apple Airpods Headphones,1,150,04/28/19 19:23,"615 Highland St, Los Angeles, CA 90001" +189980,iPhone,1,700,04/03/19 16:32,"733 Meadow St, San Francisco, CA 94016" +189981,34in Ultrawide Monitor,1,379.99,04/09/19 17:26,"632 Spruce St, Boston, MA 02215" +189982,27in 4K Gaming Monitor,1,389.99,04/08/19 14:41,"907 Spruce St, Portland, OR 97035" +189983,Apple Airpods Headphones,1,150,04/08/19 22:55,"269 Lincoln St, New York City, NY 10001" +189984,27in 4K Gaming Monitor,1,389.99,04/15/19 17:13,"896 6th St, Los Angeles, CA 90001" +189985,USB-C Charging Cable,1,11.95,04/09/19 22:12,"766 Main St, New York City, NY 10001" +189986,Bose SoundSport Headphones,1,99.99,04/10/19 15:49,"914 13th St, Portland, ME 04101" +189987,Lightning Charging Cable,1,14.95,04/26/19 12:24,"350 Dogwood St, Los Angeles, CA 90001" +189988,Wired Headphones,1,11.99,04/05/19 09:24,"561 Main St, Atlanta, GA 30301" +189989,USB-C Charging Cable,1,11.95,04/13/19 21:27,"390 Pine St, Dallas, TX 75001" +189990,AA Batteries (4-pack),1,3.84,04/13/19 22:14,"581 Highland St, San Francisco, CA 94016" +189991,AAA Batteries (4-pack),2,2.99,04/02/19 21:18,"324 7th St, Seattle, WA 98101" +189992,USB-C Charging Cable,1,11.95,04/21/19 13:00,"630 9th St, New York City, NY 10001" +189993,Bose SoundSport Headphones,1,99.99,04/04/19 09:19,"673 Lakeview St, Dallas, TX 75001" +189994,27in 4K Gaming Monitor,1,389.99,04/08/19 13:32,"539 Chestnut St, Los Angeles, CA 90001" +189995,34in Ultrawide Monitor,1,379.99,04/09/19 12:16,"321 14th St, Los Angeles, CA 90001" +189996,AAA Batteries (4-pack),1,2.99,04/16/19 18:26,"153 Ridge St, Seattle, WA 98101" +189997,AA Batteries (4-pack),1,3.84,04/28/19 07:58,"900 Main St, New York City, NY 10001" +189998,27in 4K Gaming Monitor,1,389.99,04/24/19 19:45,"378 Hill St, San Francisco, CA 94016" +189999,iPhone,1,700,04/21/19 11:38,"34 Cherry St, New York City, NY 10001" +190000,AAA Batteries (4-pack),2,2.99,04/11/19 13:25,"426 Washington St, Los Angeles, CA 90001" +190001,Apple Airpods Headphones,1,150,04/04/19 11:25,"50 Dogwood St, San Francisco, CA 94016" +190002,Bose SoundSport Headphones,1,99.99,04/04/19 21:18,"990 Highland St, Dallas, TX 75001" +190003,Wired Headphones,2,11.99,04/13/19 15:49,"559 Washington St, Atlanta, GA 30301" +190004,Lightning Charging Cable,2,14.95,04/02/19 16:58,"893 Lincoln St, Boston, MA 02215" +190005,Google Phone,1,600,04/21/19 18:23,"881 Center St, Austin, TX 73301" +190005,USB-C Charging Cable,2,11.95,04/21/19 18:23,"881 Center St, Austin, TX 73301" +190006,Bose SoundSport Headphones,1,99.99,04/07/19 14:26,"695 Hill St, San Francisco, CA 94016" +190007,Google Phone,1,600,04/23/19 08:59,"344 14th St, Boston, MA 02215" +190008,iPhone,1,700,04/16/19 13:53,"308 Park St, Atlanta, GA 30301" +190009,AAA Batteries (4-pack),2,2.99,04/08/19 21:34,"529 Cherry St, New York City, NY 10001" +190010,Bose SoundSport Headphones,1,99.99,04/30/19 20:26,"448 Chestnut St, Los Angeles, CA 90001" +190011,Google Phone,1,600,04/24/19 19:20,"894 6th St, Los Angeles, CA 90001" +190012,LG Washing Machine,1,600.0,04/23/19 15:28,"32 Spruce St, New York City, NY 10001" +190013,Apple Airpods Headphones,1,150,04/08/19 17:12,"810 Ridge St, Portland, OR 97035" +190014,Wired Headphones,2,11.99,04/09/19 16:51,"77 Pine St, Los Angeles, CA 90001" +190015,Wired Headphones,1,11.99,04/18/19 09:26,"61 Dogwood St, New York City, NY 10001" +190016,Lightning Charging Cable,2,14.95,04/20/19 17:54,"29 Jackson St, San Francisco, CA 94016" +190017,Wired Headphones,1,11.99,04/12/19 17:46,"120 13th St, Portland, OR 97035" +190018,27in FHD Monitor,1,149.99,04/01/19 14:26,"168 Meadow St, San Francisco, CA 94016" +190019,Apple Airpods Headphones,1,150,04/27/19 20:05,"848 Hill St, Los Angeles, CA 90001" +190020,20in Monitor,1,109.99,04/20/19 13:36,"528 Lakeview St, San Francisco, CA 94016" +190021,Apple Airpods Headphones,1,150,04/16/19 07:30,"897 11th St, Portland, ME 04101" +190022,27in 4K Gaming Monitor,1,389.99,04/18/19 13:51,"362 Elm St, New York City, NY 10001" +190023,27in FHD Monitor,1,149.99,04/27/19 13:20,"180 Main St, Portland, ME 04101" +190024,Wired Headphones,1,11.99,04/20/19 08:39,"263 14th St, Boston, MA 02215" +190025,27in 4K Gaming Monitor,1,389.99,04/11/19 09:58,"32 Johnson St, Seattle, WA 98101" +190026,Wired Headphones,1,11.99,04/02/19 13:30,"898 4th St, Boston, MA 02215" +190027,Lightning Charging Cable,1,14.95,04/26/19 18:51,"6 Chestnut St, Boston, MA 02215" +190028,27in FHD Monitor,1,149.99,04/20/19 12:03,"31 2nd St, San Francisco, CA 94016" +190029,Flatscreen TV,1,300,04/26/19 18:13,"94 1st St, Los Angeles, CA 90001" +190030,Lightning Charging Cable,1,14.95,04/01/19 17:20,"815 Center St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +190031,Bose SoundSport Headphones,1,99.99,04/10/19 22:46,"251 South St, Dallas, TX 75001" +190032,Flatscreen TV,1,300,04/21/19 08:35,"658 Elm St, Boston, MA 02215" +190033,34in Ultrawide Monitor,1,379.99,04/12/19 23:32,"807 Johnson St, New York City, NY 10001" +190034,AAA Batteries (4-pack),3,2.99,04/23/19 10:45,"918 13th St, Seattle, WA 98101" +190035,27in FHD Monitor,1,149.99,04/30/19 01:01,"617 Main St, San Francisco, CA 94016" +190036,20in Monitor,1,109.99,04/03/19 12:37,"392 Maple St, San Francisco, CA 94016" +190037,AAA Batteries (4-pack),2,2.99,04/08/19 11:42,"404 13th St, San Francisco, CA 94016" +190038,AA Batteries (4-pack),1,3.84,04/08/19 16:15,"456 4th St, San Francisco, CA 94016" +190039,Apple Airpods Headphones,1,150,04/06/19 13:25,"229 Spruce St, Boston, MA 02215" +190040,Google Phone,1,600,04/29/19 09:31,"253 Maple St, Austin, TX 73301" +190041,Macbook Pro Laptop,1,1700,04/20/19 02:18,"313 Chestnut St, New York City, NY 10001" +190042,27in 4K Gaming Monitor,1,389.99,04/24/19 00:07,"400 Willow St, Boston, MA 02215" +190043,34in Ultrawide Monitor,1,379.99,04/13/19 13:14,"769 Ridge St, San Francisco, CA 94016" +190044,USB-C Charging Cable,1,11.95,04/15/19 00:14,"271 Sunset St, Austin, TX 73301" +190045,Flatscreen TV,1,300,04/24/19 20:28,"166 9th St, San Francisco, CA 94016" +190046,Lightning Charging Cable,1,14.95,04/12/19 16:34,"232 12th St, Austin, TX 73301" +190047,USB-C Charging Cable,1,11.95,04/17/19 00:05,"423 Meadow St, Boston, MA 02215" +190048,Google Phone,1,600,04/19/19 18:31,"263 Lake St, New York City, NY 10001" +190048,USB-C Charging Cable,1,11.95,04/19/19 18:31,"263 Lake St, New York City, NY 10001" +190048,Wired Headphones,1,11.99,04/19/19 18:31,"263 Lake St, New York City, NY 10001" +190049,USB-C Charging Cable,1,11.95,04/14/19 11:56,"139 Hickory St, Seattle, WA 98101" +190050,AAA Batteries (4-pack),1,2.99,04/20/19 17:42,"30 2nd St, Boston, MA 02215" +190051,Wired Headphones,1,11.99,04/12/19 19:24,"297 Chestnut St, Los Angeles, CA 90001" +190052,Lightning Charging Cable,2,14.95,04/03/19 12:02,"647 Lincoln St, Seattle, WA 98101" +190053,Apple Airpods Headphones,1,150,04/03/19 08:11,"612 West St, Dallas, TX 75001" +190054,Bose SoundSport Headphones,1,99.99,04/12/19 15:09,"293 Walnut St, Seattle, WA 98101" +190055,Wired Headphones,1,11.99,04/07/19 14:45,"471 Main St, Los Angeles, CA 90001" +190056,USB-C Charging Cable,1,11.95,04/30/19 13:02,"880 Lake St, Seattle, WA 98101" +190057,Bose SoundSport Headphones,1,99.99,04/19/19 09:56,"131 Main St, Austin, TX 73301" +190058,iPhone,1,700,04/15/19 20:24,"525 Highland St, Boston, MA 02215" +190059,iPhone,1,700,04/01/19 10:09,"632 11th St, San Francisco, CA 94016" +190060,Apple Airpods Headphones,1,150,04/30/19 20:54,"337 Johnson St, Austin, TX 73301" +190061,AA Batteries (4-pack),2,3.84,04/29/19 18:50,"866 North St, Los Angeles, CA 90001" +190062,AA Batteries (4-pack),1,3.84,04/30/19 08:24,"204 4th St, San Francisco, CA 94016" +190063,AAA Batteries (4-pack),2,2.99,04/08/19 09:41,"64 6th St, New York City, NY 10001" +190064,Wired Headphones,1,11.99,04/04/19 21:23,"807 North St, Dallas, TX 75001" +190065,Macbook Pro Laptop,1,1700,04/05/19 17:52,"534 8th St, Dallas, TX 75001" +190066,Bose SoundSport Headphones,1,99.99,04/10/19 10:35,"333 Spruce St, Los Angeles, CA 90001" +190067,AA Batteries (4-pack),1,3.84,04/23/19 15:48,"633 Meadow St, Austin, TX 73301" +190068,Google Phone,1,600,04/11/19 11:51,"640 2nd St, New York City, NY 10001" +190069,34in Ultrawide Monitor,1,379.99,04/04/19 18:34,"800 Main St, San Francisco, CA 94016" +190070,USB-C Charging Cable,1,11.95,04/14/19 18:32,"993 12th St, New York City, NY 10001" +190071,27in 4K Gaming Monitor,1,389.99,04/25/19 00:01,"624 Lakeview St, New York City, NY 10001" +190072,27in FHD Monitor,1,149.99,04/24/19 11:05,"980 Sunset St, Austin, TX 73301" +190073,34in Ultrawide Monitor,1,379.99,04/19/19 01:44,"433 River St, Dallas, TX 75001" +190074,Wired Headphones,1,11.99,04/24/19 01:19,"153 Hill St, Los Angeles, CA 90001" +190075,Lightning Charging Cable,1,14.95,04/13/19 09:31,"763 Wilson St, San Francisco, CA 94016" +190076,Wired Headphones,1,11.99,04/21/19 18:08,"518 6th St, Atlanta, GA 30301" +190077,27in 4K Gaming Monitor,1,389.99,04/06/19 22:01,"401 Hickory St, San Francisco, CA 94016" +190078,AAA Batteries (4-pack),1,2.99,04/15/19 22:30,"66 Church St, Los Angeles, CA 90001" +190079,USB-C Charging Cable,1,11.95,04/04/19 17:15,"662 12th St, Boston, MA 02215" +190080,Lightning Charging Cable,1,14.95,04/09/19 21:20,"80 14th St, Atlanta, GA 30301" +190081,AAA Batteries (4-pack),3,2.99,04/13/19 19:51,"250 Forest St, Atlanta, GA 30301" +190082,27in 4K Gaming Monitor,1,389.99,04/18/19 17:44,"674 Spruce St, New York City, NY 10001" +190082,20in Monitor,1,109.99,04/18/19 17:44,"674 Spruce St, New York City, NY 10001" +190083,Bose SoundSport Headphones,1,99.99,04/07/19 21:17,"825 Madison St, Atlanta, GA 30301" +190084,34in Ultrawide Monitor,1,379.99,04/17/19 21:13,"546 Dogwood St, Los Angeles, CA 90001" +190085,USB-C Charging Cable,1,11.95,04/03/19 15:25,"637 Sunset St, Los Angeles, CA 90001" +190086,AA Batteries (4-pack),1,3.84,04/06/19 11:59,"633 Jackson St, Dallas, TX 75001" +190087,AAA Batteries (4-pack),1,2.99,04/19/19 17:25,"674 Jackson St, San Francisco, CA 94016" +190088,USB-C Charging Cable,1,11.95,04/12/19 19:59,"520 Highland St, San Francisco, CA 94016" +190089,Apple Airpods Headphones,1,150,04/29/19 18:03,"408 10th St, Austin, TX 73301" +190090,AAA Batteries (4-pack),1,2.99,04/17/19 17:20,"569 9th St, Boston, MA 02215" +190091,Lightning Charging Cable,1,14.95,04/27/19 20:45,"594 Hickory St, Atlanta, GA 30301" +190092,Bose SoundSport Headphones,1,99.99,04/13/19 20:41,"196 5th St, San Francisco, CA 94016" +190093,Wired Headphones,1,11.99,04/27/19 15:13,"137 Adams St, San Francisco, CA 94016" +190094,iPhone,1,700,04/23/19 08:57,"317 Washington St, Boston, MA 02215" +190095,AA Batteries (4-pack),1,3.84,04/29/19 13:40,"828 Highland St, Boston, MA 02215" +190096,Apple Airpods Headphones,1,150,04/26/19 07:53,"158 12th St, Portland, OR 97035" +190097,ThinkPad Laptop,1,999.99,04/19/19 16:36,"601 Spruce St, Dallas, TX 75001" +190098,Bose SoundSport Headphones,1,99.99,04/25/19 18:21,"692 7th St, Boston, MA 02215" +190099,27in FHD Monitor,1,149.99,04/05/19 19:37,"135 Hill St, Dallas, TX 75001" +190100,AA Batteries (4-pack),1,3.84,04/17/19 08:56,"655 Wilson St, Austin, TX 73301" +190101,USB-C Charging Cable,1,11.95,04/15/19 17:39,"507 Jefferson St, Boston, MA 02215" +190102,USB-C Charging Cable,1,11.95,04/06/19 09:39,"450 Dogwood St, San Francisco, CA 94016" +190103,Bose SoundSport Headphones,1,99.99,04/29/19 16:15,"889 Hickory St, New York City, NY 10001" +190104,27in FHD Monitor,1,149.99,04/22/19 05:21,"476 Cherry St, Seattle, WA 98101" +190105,Lightning Charging Cable,1,14.95,04/01/19 17:50,"956 Ridge St, Seattle, WA 98101" +190106,iPhone,1,700,04/09/19 18:10,"946 4th St, Los Angeles, CA 90001" +190106,Lightning Charging Cable,1,14.95,04/09/19 18:10,"946 4th St, Los Angeles, CA 90001" +190106,Wired Headphones,2,11.99,04/09/19 18:10,"946 4th St, Los Angeles, CA 90001" +190107,Bose SoundSport Headphones,1,99.99,04/24/19 14:22,"619 Spruce St, Los Angeles, CA 90001" +190108,AA Batteries (4-pack),1,3.84,04/09/19 18:22,"982 10th St, New York City, NY 10001" +190109,Macbook Pro Laptop,1,1700,04/18/19 13:07,"885 Jackson St, Atlanta, GA 30301" +190110,27in 4K Gaming Monitor,1,389.99,04/25/19 18:54,"64 13th St, Los Angeles, CA 90001" +190111,27in 4K Gaming Monitor,1,389.99,04/15/19 14:51,"548 Main St, Los Angeles, CA 90001" +190112,USB-C Charging Cable,1,11.95,04/09/19 08:03,"380 Center St, Los Angeles, CA 90001" +190113,34in Ultrawide Monitor,1,379.99,04/10/19 18:15,"704 Church St, Los Angeles, CA 90001" +190114,27in FHD Monitor,1,149.99,04/22/19 12:38,"163 West St, Portland, ME 04101" +190115,Wired Headphones,1,11.99,04/01/19 23:58,"194 13th St, San Francisco, CA 94016" +190116,AA Batteries (4-pack),1,3.84,04/17/19 14:45,"284 South St, Dallas, TX 75001" +190117,Wired Headphones,1,11.99,04/29/19 16:05,"801 West St, Boston, MA 02215" +190118,Wired Headphones,1,11.99,04/16/19 00:13,"672 Park St, San Francisco, CA 94016" +190119,34in Ultrawide Monitor,1,379.99,04/12/19 08:37,"67 Highland St, Los Angeles, CA 90001" +190120,27in FHD Monitor,1,149.99,04/11/19 13:54,"976 12th St, San Francisco, CA 94016" +190121,Flatscreen TV,1,300,04/19/19 17:34,"835 Church St, San Francisco, CA 94016" +190122,ThinkPad Laptop,1,999.99,04/17/19 07:57,"863 2nd St, Los Angeles, CA 90001" +190123,USB-C Charging Cable,1,11.95,04/30/19 17:12,"168 7th St, Atlanta, GA 30301" +190124,USB-C Charging Cable,1,11.95,04/25/19 01:23,"522 8th St, Atlanta, GA 30301" +190125,Wired Headphones,1,11.99,04/24/19 09:42,"371 4th St, Los Angeles, CA 90001" +190126,iPhone,1,700,04/07/19 16:49,"282 South St, Portland, OR 97035" +190127,AAA Batteries (4-pack),1,2.99,04/27/19 13:10,"753 Walnut St, Boston, MA 02215" +190128,AA Batteries (4-pack),5,3.84,04/28/19 08:29,"193 10th St, Los Angeles, CA 90001" +190129,20in Monitor,1,109.99,04/18/19 13:47,"484 Adams St, Austin, TX 73301" +190130,Flatscreen TV,1,300,04/21/19 10:24,"894 Sunset St, New York City, NY 10001" +190131,Apple Airpods Headphones,1,150,04/21/19 13:43,"52 Madison St, Portland, OR 97035" +190132,ThinkPad Laptop,1,999.99,04/26/19 20:11,"265 Main St, Boston, MA 02215" +190133,Bose SoundSport Headphones,1,99.99,04/10/19 07:11,"874 Hickory St, Boston, MA 02215" +190134,AA Batteries (4-pack),2,3.84,04/18/19 11:01,"9 1st St, San Francisco, CA 94016" +190135,Bose SoundSport Headphones,1,99.99,04/06/19 08:42,"145 River St, San Francisco, CA 94016" +190136,Apple Airpods Headphones,1,150,04/08/19 23:05,"111 10th St, New York City, NY 10001" +190137,AA Batteries (4-pack),2,3.84,04/30/19 21:09,"229 River St, San Francisco, CA 94016" +190138,Wired Headphones,1,11.99,04/03/19 19:40,"389 Walnut St, San Francisco, CA 94016" +190139,Lightning Charging Cable,1,14.95,04/17/19 14:36,"23 8th St, Boston, MA 02215" +190140,Lightning Charging Cable,1,14.95,04/14/19 17:17,"233 South St, Austin, TX 73301" +190141,Lightning Charging Cable,1,14.95,04/17/19 12:10,"68 Adams St, Boston, MA 02215" +190142,Lightning Charging Cable,1,14.95,04/01/19 20:27,"548 Highland St, Atlanta, GA 30301" +190143,Bose SoundSport Headphones,1,99.99,04/24/19 21:04,"207 Adams St, Los Angeles, CA 90001" +190144,Lightning Charging Cable,1,14.95,04/29/19 21:08,"177 13th St, San Francisco, CA 94016" +190145,Apple Airpods Headphones,1,150,04/13/19 16:31,"153 Sunset St, Boston, MA 02215" +190146,USB-C Charging Cable,3,11.95,04/07/19 10:42,"286 Jefferson St, Atlanta, GA 30301" +190147,27in 4K Gaming Monitor,1,389.99,04/20/19 21:48,"722 Lakeview St, Dallas, TX 75001" +190148,Macbook Pro Laptop,1,1700,04/09/19 09:46,"915 Lakeview St, Boston, MA 02215" +190149,Flatscreen TV,1,300,04/04/19 20:31,"371 Maple St, Boston, MA 02215" +190150,Lightning Charging Cable,1,14.95,04/14/19 11:47,"514 Lincoln St, Portland, ME 04101" +190151,Lightning Charging Cable,1,14.95,04/11/19 17:25,"381 Park St, Boston, MA 02215" +190152,Apple Airpods Headphones,1,150,04/15/19 17:17,"585 1st St, Portland, OR 97035" +190152,20in Monitor,1,109.99,04/15/19 17:17,"585 1st St, Portland, OR 97035" +190153,AA Batteries (4-pack),2,3.84,04/03/19 13:55,"998 Highland St, San Francisco, CA 94016" +190154,Bose SoundSport Headphones,1,99.99,04/24/19 22:13,"641 Pine St, Los Angeles, CA 90001" +190155,AA Batteries (4-pack),3,3.84,04/30/19 01:42,"861 1st St, Dallas, TX 75001" +190156,Lightning Charging Cable,1,14.95,04/11/19 16:31,"193 Sunset St, Seattle, WA 98101" +190157,Lightning Charging Cable,1,14.95,04/21/19 13:16,"942 Maple St, Atlanta, GA 30301" +190158,Apple Airpods Headphones,1,150,04/27/19 10:43,"695 Lincoln St, Boston, MA 02215" +190159,USB-C Charging Cable,1,11.95,04/26/19 21:41,"561 North St, Portland, OR 97035" +190160,AAA Batteries (4-pack),1,2.99,04/30/19 20:23,"822 Lakeview St, San Francisco, CA 94016" +190161,LG Washing Machine,1,600.0,04/19/19 18:48,"350 2nd St, San Francisco, CA 94016" +190162,AAA Batteries (4-pack),1,2.99,04/30/19 19:47,"415 Park St, Seattle, WA 98101" +190163,20in Monitor,1,109.99,04/11/19 10:28,"386 9th St, Los Angeles, CA 90001" +190164,Apple Airpods Headphones,1,150,04/21/19 07:50,"502 Highland St, Portland, OR 97035" +190165,Bose SoundSport Headphones,1,99.99,04/02/19 09:43,"684 Willow St, Atlanta, GA 30301" +190166,Lightning Charging Cable,1,14.95,04/29/19 16:13,"293 4th St, San Francisco, CA 94016" +190167,Lightning Charging Cable,1,14.95,04/18/19 11:53,"746 Center St, Los Angeles, CA 90001" +190168,Flatscreen TV,1,300,04/27/19 17:26,"635 Washington St, Portland, OR 97035" +190169,Apple Airpods Headphones,1,150,04/15/19 11:06,"455 6th St, New York City, NY 10001" +190170,27in FHD Monitor,1,149.99,04/23/19 07:25,"758 North St, Boston, MA 02215" +190171,27in FHD Monitor,1,149.99,04/26/19 23:45,"702 Hill St, San Francisco, CA 94016" +190172,27in 4K Gaming Monitor,1,389.99,04/10/19 17:25,"684 Cherry St, Boston, MA 02215" +190173,USB-C Charging Cable,1,11.95,04/05/19 18:51,"83 8th St, Los Angeles, CA 90001" +190174,AA Batteries (4-pack),1,3.84,04/14/19 21:27,"213 South St, Boston, MA 02215" +190175,USB-C Charging Cable,1,11.95,04/01/19 18:19,"398 Madison St, New York City, NY 10001" +190176,Wired Headphones,1,11.99,04/06/19 20:57,"531 Elm St, San Francisco, CA 94016" +190177,iPhone,1,700,04/20/19 21:16,"316 Willow St, Los Angeles, CA 90001" +190178,Apple Airpods Headphones,1,150,04/26/19 11:22,"194 Johnson St, Seattle, WA 98101" +190179,27in 4K Gaming Monitor,1,389.99,04/18/19 12:34,"570 Maple St, Dallas, TX 75001" +190180,Lightning Charging Cable,1,14.95,04/19/19 00:42,"6 Jackson St, San Francisco, CA 94016" +190181,Flatscreen TV,1,300,04/06/19 17:27,"6 Sunset St, Atlanta, GA 30301" +190182,Bose SoundSport Headphones,1,99.99,04/24/19 18:27,"465 10th St, Portland, ME 04101" +190183,Macbook Pro Laptop,1,1700,04/09/19 12:08,"101 10th St, Austin, TX 73301" +190184,Lightning Charging Cable,2,14.95,04/07/19 00:54,"129 Madison St, San Francisco, CA 94016" +190185,iPhone,1,700,04/25/19 19:40,"185 10th St, Seattle, WA 98101" +190186,Apple Airpods Headphones,1,150,04/01/19 19:10,"13 Madison St, Austin, TX 73301" +190187,AAA Batteries (4-pack),1,2.99,04/13/19 19:47,"624 6th St, New York City, NY 10001" +190188,AAA Batteries (4-pack),1,2.99,04/06/19 23:48,"912 West St, Los Angeles, CA 90001" +190189,USB-C Charging Cable,1,11.95,04/24/19 13:08,"881 Ridge St, Dallas, TX 75001" +190190,AA Batteries (4-pack),1,3.84,04/16/19 13:19,"651 9th St, San Francisco, CA 94016" +190191,20in Monitor,1,109.99,04/09/19 17:35,"334 Washington St, San Francisco, CA 94016" +190192,Wired Headphones,1,11.99,04/27/19 07:15,"597 Willow St, Boston, MA 02215" +190193,AAA Batteries (4-pack),1,2.99,04/01/19 12:50,"316 10th St, Los Angeles, CA 90001" +190194,LG Washing Machine,1,600.0,04/02/19 21:19,"414 Center St, Dallas, TX 75001" +190195,AA Batteries (4-pack),1,3.84,04/28/19 19:46,"245 Lakeview St, Los Angeles, CA 90001" +190196,AA Batteries (4-pack),1,3.84,04/24/19 20:04,"168 Johnson St, Los Angeles, CA 90001" +190197,Lightning Charging Cable,1,14.95,04/29/19 19:43,"505 Dogwood St, San Francisco, CA 94016" +190198,Lightning Charging Cable,1,14.95,04/03/19 10:40,"652 Ridge St, Seattle, WA 98101" +190199,Macbook Pro Laptop,1,1700,04/03/19 07:13,"351 9th St, San Francisco, CA 94016" +190200,20in Monitor,1,109.99,04/26/19 17:39,"778 Highland St, New York City, NY 10001" +190201,Bose SoundSport Headphones,1,99.99,04/04/19 08:18,"225 Cherry St, Los Angeles, CA 90001" +190202,Apple Airpods Headphones,1,150,04/22/19 13:29,"541 Washington St, Seattle, WA 98101" +190203,Wired Headphones,1,11.99,04/22/19 13:10,"859 7th St, Los Angeles, CA 90001" +190204,USB-C Charging Cable,1,11.95,04/23/19 23:31,"954 13th St, Los Angeles, CA 90001" +190204,27in FHD Monitor,1,149.99,04/23/19 23:31,"954 13th St, Los Angeles, CA 90001" +190205,ThinkPad Laptop,1,999.99,04/24/19 12:23,"614 Main St, San Francisco, CA 94016" +190206,USB-C Charging Cable,1,11.95,04/25/19 11:15,"346 Walnut St, Atlanta, GA 30301" +190207,USB-C Charging Cable,1,11.95,04/30/19 23:03,"252 Forest St, Boston, MA 02215" +190208,Flatscreen TV,1,300,04/29/19 10:01,"11 11th St, Boston, MA 02215" +190209,USB-C Charging Cable,1,11.95,04/12/19 19:34,"430 Chestnut St, Seattle, WA 98101" +190210,AA Batteries (4-pack),2,3.84,04/29/19 20:31,"588 Lincoln St, Boston, MA 02215" +190211,AA Batteries (4-pack),1,3.84,04/24/19 10:25,"272 Jackson St, Portland, OR 97035" +190212,Apple Airpods Headphones,1,150,04/20/19 22:57,"661 Elm St, San Francisco, CA 94016" +190213,AA Batteries (4-pack),1,3.84,04/17/19 23:48,"521 10th St, Boston, MA 02215" +190214,Lightning Charging Cable,1,14.95,04/20/19 05:21,"694 Highland St, San Francisco, CA 94016" +190215,Bose SoundSport Headphones,1,99.99,04/25/19 14:33,"321 Maple St, Los Angeles, CA 90001" +190216,27in 4K Gaming Monitor,1,389.99,04/10/19 09:11,"236 Park St, San Francisco, CA 94016" +190217,Google Phone,1,600,04/11/19 21:51,"655 8th St, Los Angeles, CA 90001" +190218,USB-C Charging Cable,2,11.95,04/26/19 15:50,"979 Willow St, Seattle, WA 98101" +190219,34in Ultrawide Monitor,1,379.99,04/21/19 18:59,"741 Park St, San Francisco, CA 94016" +190220,Lightning Charging Cable,1,14.95,04/09/19 09:03,"758 Ridge St, Los Angeles, CA 90001" +190221,Wired Headphones,1,11.99,04/21/19 04:50,"421 Lincoln St, Austin, TX 73301" +190222,34in Ultrawide Monitor,1,379.99,04/01/19 22:17,"670 2nd St, New York City, NY 10001" +190223,Apple Airpods Headphones,1,150,04/20/19 03:26,"732 6th St, San Francisco, CA 94016" +190224,Apple Airpods Headphones,1,150,04/03/19 13:18,"492 Meadow St, Boston, MA 02215" +190225,20in Monitor,1,109.99,04/28/19 21:44,"494 River St, Dallas, TX 75001" +190226,Macbook Pro Laptop,1,1700,04/28/19 06:34,"365 6th St, New York City, NY 10001" +190227,AAA Batteries (4-pack),1,2.99,04/02/19 20:33,"926 Main St, Los Angeles, CA 90001" +190228,Lightning Charging Cable,1,14.95,04/12/19 17:56,"970 Lake St, Boston, MA 02215" +190229,27in FHD Monitor,1,149.99,04/24/19 12:44,"686 Meadow St, Boston, MA 02215" +190230,Google Phone,1,600,04/24/19 18:39,"664 West St, San Francisco, CA 94016" +190230,Wired Headphones,1,11.99,04/24/19 18:39,"664 West St, San Francisco, CA 94016" +190231,USB-C Charging Cable,1,11.95,04/02/19 20:13,"981 6th St, Los Angeles, CA 90001" +190232,Macbook Pro Laptop,1,1700,04/19/19 14:32,"314 1st St, Los Angeles, CA 90001" +190233,27in 4K Gaming Monitor,1,389.99,04/29/19 23:23,"180 Center St, San Francisco, CA 94016" +190233,20in Monitor,1,109.99,04/29/19 23:23,"180 Center St, San Francisco, CA 94016" +190234,Lightning Charging Cable,1,14.95,04/01/19 13:52,"208 11th St, San Francisco, CA 94016" +190235,ThinkPad Laptop,1,999.99,04/08/19 15:16,"837 Walnut St, Boston, MA 02215" +190236,USB-C Charging Cable,1,11.95,04/13/19 11:50,"87 Dogwood St, Los Angeles, CA 90001" +190237,34in Ultrawide Monitor,1,379.99,04/13/19 21:39,"530 Church St, San Francisco, CA 94016" +190238,Google Phone,1,600,04/20/19 17:46,"512 South St, New York City, NY 10001" +190239,AA Batteries (4-pack),3,3.84,04/17/19 11:33,"494 River St, San Francisco, CA 94016" +190240,Lightning Charging Cable,1,14.95,04/17/19 23:05,"395 Chestnut St, Atlanta, GA 30301" +190241,AAA Batteries (4-pack),1,2.99,04/04/19 11:11,"496 Elm St, Portland, OR 97035" +190242,27in 4K Gaming Monitor,1,389.99,04/06/19 11:24,"5 Ridge St, Los Angeles, CA 90001" +190243,27in 4K Gaming Monitor,1,389.99,04/19/19 04:11,"834 Adams St, Boston, MA 02215" +190244,ThinkPad Laptop,1,999.99,04/26/19 15:17,"593 Church St, Boston, MA 02215" +190245,Google Phone,1,600,04/12/19 21:10,"651 Hill St, Boston, MA 02215" +190245,Bose SoundSport Headphones,1,99.99,04/12/19 21:10,"651 Hill St, Boston, MA 02215" +190246,AAA Batteries (4-pack),1,2.99,04/04/19 10:28,"202 14th St, Los Angeles, CA 90001" +190247,27in FHD Monitor,1,149.99,04/02/19 17:52,"379 Chestnut St, San Francisco, CA 94016" +190248,Wired Headphones,1,11.99,04/12/19 15:32,"53 Lakeview St, Seattle, WA 98101" +190249,Wired Headphones,1,11.99,04/27/19 19:57,"244 North St, Los Angeles, CA 90001" +190250,27in 4K Gaming Monitor,1,389.99,04/28/19 20:09,"2 Park St, Dallas, TX 75001" +190251,USB-C Charging Cable,1,11.95,04/01/19 18:20,"285 Dogwood St, San Francisco, CA 94016" +190252,34in Ultrawide Monitor,1,379.99,04/20/19 13:47,"184 13th St, San Francisco, CA 94016" +190253,AAA Batteries (4-pack),1,2.99,04/09/19 16:35,"602 12th St, New York City, NY 10001" +190254,Wired Headphones,1,11.99,04/08/19 13:52,"686 8th St, Boston, MA 02215" +190254,Wired Headphones,1,11.99,04/08/19 13:52,"686 8th St, Boston, MA 02215" +190255,USB-C Charging Cable,1,11.95,04/03/19 18:32,"370 Jefferson St, New York City, NY 10001" +190256,AAA Batteries (4-pack),1,2.99,04/14/19 20:49,"963 Hill St, Austin, TX 73301" +190257,AA Batteries (4-pack),1,3.84,04/23/19 09:00,"644 Dogwood St, New York City, NY 10001" +190258,Lightning Charging Cable,1,14.95,04/17/19 10:11,"860 Willow St, Atlanta, GA 30301" +190259,USB-C Charging Cable,1,11.95,04/04/19 16:16,"330 13th St, Seattle, WA 98101" +190260,27in FHD Monitor,1,149.99,04/25/19 15:28,"457 Sunset St, Los Angeles, CA 90001" +190261,Wired Headphones,2,11.99,04/08/19 16:12,"506 Madison St, Seattle, WA 98101" +190262,Bose SoundSport Headphones,1,99.99,04/16/19 16:08,"874 Spruce St, Los Angeles, CA 90001" +190263,AAA Batteries (4-pack),1,2.99,04/20/19 22:08,"479 Lakeview St, Boston, MA 02215" +190264,Lightning Charging Cable,1,14.95,04/14/19 02:17,"389 Sunset St, Portland, OR 97035" +190265,Wired Headphones,2,11.99,04/01/19 12:07,"207 Johnson St, San Francisco, CA 94016" +190266,Google Phone,1,600,04/13/19 18:14,"933 10th St, Boston, MA 02215" +190266,USB-C Charging Cable,1,11.95,04/13/19 18:14,"933 10th St, Boston, MA 02215" +190267,Bose SoundSport Headphones,1,99.99,04/21/19 19:18,"435 Lakeview St, Los Angeles, CA 90001" +190267,AA Batteries (4-pack),1,3.84,04/21/19 19:18,"435 Lakeview St, Los Angeles, CA 90001" +190268,USB-C Charging Cable,1,11.95,04/16/19 01:54,"993 North St, San Francisco, CA 94016" +190269,Bose SoundSport Headphones,1,99.99,04/01/19 08:46,"538 Johnson St, Los Angeles, CA 90001" +190270,USB-C Charging Cable,1,11.95,04/26/19 22:34,"505 Lake St, New York City, NY 10001" +190271,AAA Batteries (4-pack),1,2.99,04/09/19 16:30,"901 Cedar St, San Francisco, CA 94016" +190272,Wired Headphones,1,11.99,04/19/19 16:26,"958 Maple St, Boston, MA 02215" +190273,AA Batteries (4-pack),1,3.84,04/28/19 17:19,"246 Center St, San Francisco, CA 94016" +190274,Apple Airpods Headphones,1,150,04/12/19 14:41,"651 Lakeview St, San Francisco, CA 94016" +190275,27in 4K Gaming Monitor,1,389.99,04/12/19 21:07,"590 Cedar St, Atlanta, GA 30301" +190276,Apple Airpods Headphones,1,150,04/05/19 11:33,"258 4th St, New York City, NY 10001" +190277,Wired Headphones,1,11.99,04/07/19 09:47,"900 Elm St, Seattle, WA 98101" +190278,AA Batteries (4-pack),1,3.84,04/14/19 22:37,"544 Lakeview St, Los Angeles, CA 90001" +190279,27in FHD Monitor,1,149.99,04/12/19 10:52,"775 Madison St, San Francisco, CA 94016" +190280,Lightning Charging Cable,1,14.95,04/08/19 22:01,"224 Willow St, Boston, MA 02215" +190281,Lightning Charging Cable,1,14.95,04/07/19 09:55,"93 Main St, San Francisco, CA 94016" +190282,USB-C Charging Cable,1,11.95,04/27/19 21:46,"986 Walnut St, Austin, TX 73301" +190283,Bose SoundSport Headphones,1,99.99,04/29/19 15:48,"706 Cherry St, Austin, TX 73301" +190284,Google Phone,1,600,04/05/19 12:29,"297 6th St, Boston, MA 02215" +190285,AA Batteries (4-pack),3,3.84,04/25/19 18:22,"473 Center St, San Francisco, CA 94016" +190286,AAA Batteries (4-pack),3,2.99,04/18/19 18:58,"433 Adams St, San Francisco, CA 94016" +190287,AAA Batteries (4-pack),3,2.99,04/03/19 22:07,"441 Highland St, Boston, MA 02215" +190288,Macbook Pro Laptop,1,1700,04/16/19 11:16,"840 Jefferson St, San Francisco, CA 94016" +190289,Apple Airpods Headphones,1,150,04/30/19 20:54,"826 Forest St, Boston, MA 02215" +190290,AAA Batteries (4-pack),4,2.99,04/03/19 19:44,"74 Dogwood St, Los Angeles, CA 90001" +190291,Lightning Charging Cable,1,14.95,04/04/19 11:02,"690 Cherry St, Portland, OR 97035" +190292,27in FHD Monitor,1,149.99,04/02/19 17:37,"109 Lakeview St, Dallas, TX 75001" +190293,Macbook Pro Laptop,1,1700,04/04/19 16:06,"586 4th St, Austin, TX 73301" +190294,Bose SoundSport Headphones,1,99.99,04/22/19 21:04,"11 Sunset St, Los Angeles, CA 90001" +190295,34in Ultrawide Monitor,1,379.99,04/14/19 15:30,"467 Washington St, San Francisco, CA 94016" +190296,AAA Batteries (4-pack),2,2.99,04/30/19 14:52,"764 2nd St, San Francisco, CA 94016" +190297,iPhone,1,700,04/10/19 18:46,"751 Park St, Boston, MA 02215" +190298,Apple Airpods Headphones,1,150,04/29/19 20:22,"409 7th St, Dallas, TX 75001" +190299,34in Ultrawide Monitor,1,379.99,04/25/19 03:41,"371 Walnut St, San Francisco, CA 94016" +190300,Lightning Charging Cable,1,14.95,04/23/19 14:06,"414 Hill St, Seattle, WA 98101" +190301,Wired Headphones,1,11.99,04/21/19 20:21,"386 Center St, Dallas, TX 75001" +190302,27in 4K Gaming Monitor,1,389.99,04/01/19 11:40,"669 Center St, Los Angeles, CA 90001" +190303,Vareebadd Phone,1,400,04/07/19 07:43,"887 1st St, Seattle, WA 98101" +190304,Lightning Charging Cable,1,14.95,04/07/19 13:32,"72 Maple St, New York City, NY 10001" +190305,Apple Airpods Headphones,1,150,04/13/19 20:01,"255 Chestnut St, Los Angeles, CA 90001" +190305,27in FHD Monitor,1,149.99,04/13/19 20:01,"255 Chestnut St, Los Angeles, CA 90001" +190306,Lightning Charging Cable,1,14.95,04/07/19 12:30,"551 4th St, New York City, NY 10001" +190307,USB-C Charging Cable,1,11.95,04/17/19 17:45,"551 Willow St, Seattle, WA 98101" +190308,Lightning Charging Cable,1,14.95,04/03/19 17:38,"710 1st St, Austin, TX 73301" +190309,27in 4K Gaming Monitor,1,389.99,04/24/19 21:37,"73 2nd St, Los Angeles, CA 90001" +190310,20in Monitor,1,109.99,04/05/19 09:04,"967 Washington St, New York City, NY 10001" +190311,USB-C Charging Cable,1,11.95,04/25/19 20:49,"878 2nd St, San Francisco, CA 94016" +190312,Lightning Charging Cable,1,14.95,04/04/19 17:20,"332 Pine St, Boston, MA 02215" +190313,AAA Batteries (4-pack),1,2.99,04/17/19 03:29,"173 Cedar St, New York City, NY 10001" +190314,iPhone,1,700,04/11/19 13:37,"290 Center St, New York City, NY 10001" +190315,27in FHD Monitor,1,149.99,04/19/19 14:25,"109 Hickory St, Atlanta, GA 30301" +190316,27in FHD Monitor,1,149.99,04/15/19 19:21,"90 10th St, Portland, OR 97035" +190317,AA Batteries (4-pack),1,3.84,04/27/19 21:25,"634 Washington St, New York City, NY 10001" +190318,27in FHD Monitor,1,149.99,04/21/19 18:56,"569 Maple St, New York City, NY 10001" +190319,27in 4K Gaming Monitor,1,389.99,04/13/19 20:22,"637 Ridge St, Los Angeles, CA 90001" +190320,AA Batteries (4-pack),1,3.84,04/15/19 19:24,"31 Chestnut St, New York City, NY 10001" +190321,34in Ultrawide Monitor,1,379.99,04/06/19 18:10,"109 Wilson St, New York City, NY 10001" +190322,Wired Headphones,2,11.99,04/13/19 00:13,"350 12th St, San Francisco, CA 94016" +190323,USB-C Charging Cable,1,11.95,04/28/19 16:55,"72 Madison St, San Francisco, CA 94016" +190324,Flatscreen TV,1,300,04/14/19 18:27,"363 13th St, Portland, OR 97035" +190325,iPhone,1,700,04/26/19 16:38,"582 Lincoln St, San Francisco, CA 94016" +190326,Bose SoundSport Headphones,1,99.99,04/01/19 15:31,"502 Hickory St, San Francisco, CA 94016" +190327,AAA Batteries (4-pack),1,2.99,04/07/19 19:09,"909 North St, Seattle, WA 98101" +190328,Apple Airpods Headphones,1,150,04/21/19 16:55,"280 5th St, Atlanta, GA 30301" +190329,Wired Headphones,1,11.99,04/12/19 20:06,"605 Pine St, Austin, TX 73301" +190330,Wired Headphones,1,11.99,04/04/19 11:08,"919 Main St, Austin, TX 73301" +190331,Bose SoundSport Headphones,1,99.99,04/14/19 07:02,"352 Cherry St, Atlanta, GA 30301" +190332,Apple Airpods Headphones,1,150,04/27/19 17:56,"110 Spruce St, Los Angeles, CA 90001" +190333,Lightning Charging Cable,1,14.95,04/07/19 10:31,"768 Pine St, New York City, NY 10001" +190334,Bose SoundSport Headphones,1,99.99,04/29/19 10:09,"7 14th St, Boston, MA 02215" +190335,Lightning Charging Cable,2,14.95,04/28/19 13:34,"810 Madison St, Dallas, TX 75001" +190336,Bose SoundSport Headphones,1,99.99,04/10/19 18:58,"722 Cherry St, San Francisco, CA 94016" +190337,AAA Batteries (4-pack),1,2.99,04/15/19 12:01,"906 Jackson St, Los Angeles, CA 90001" +190338,27in FHD Monitor,1,149.99,04/15/19 14:02,"496 Lake St, Boston, MA 02215" +190339,Lightning Charging Cable,1,14.95,04/08/19 21:05,"564 Jefferson St, Los Angeles, CA 90001" +190340,Lightning Charging Cable,1,14.95,04/17/19 14:32,"266 River St, Los Angeles, CA 90001" +190341,AAA Batteries (4-pack),3,2.99,04/13/19 14:23,"935 11th St, San Francisco, CA 94016" +190342,27in FHD Monitor,1,149.99,04/19/19 18:33,"160 Forest St, San Francisco, CA 94016" +190343,ThinkPad Laptop,1,999.99,04/28/19 11:33,"357 6th St, Boston, MA 02215" +190344,AA Batteries (4-pack),1,3.84,04/18/19 21:06,"526 Maple St, Dallas, TX 75001" +190345,34in Ultrawide Monitor,1,379.99,04/08/19 19:11,"670 Willow St, San Francisco, CA 94016" +190346,AAA Batteries (4-pack),2,2.99,04/09/19 08:57,"349 12th St, San Francisco, CA 94016" +190347,Lightning Charging Cable,1,14.95,04/17/19 17:06,"835 Cherry St, San Francisco, CA 94016" +190348,Wired Headphones,1,11.99,04/22/19 11:48,"352 Pine St, San Francisco, CA 94016" +190349,Apple Airpods Headphones,1,150,04/18/19 12:21,"672 12th St, San Francisco, CA 94016" +190350,AAA Batteries (4-pack),2,2.99,04/29/19 14:13,"541 Pine St, San Francisco, CA 94016" +190351,Lightning Charging Cable,1,14.95,04/12/19 11:28,"414 4th St, Austin, TX 73301" +190352,ThinkPad Laptop,1,999.99,04/27/19 06:22,"944 Lake St, San Francisco, CA 94016" +190353,USB-C Charging Cable,1,11.95,04/27/19 13:10,"350 West St, Los Angeles, CA 90001" +190354,USB-C Charging Cable,1,11.95,04/24/19 12:43,"581 Lakeview St, Boston, MA 02215" +190355,27in FHD Monitor,1,149.99,04/30/19 07:45,"291 5th St, Los Angeles, CA 90001" +190356,AA Batteries (4-pack),1,3.84,04/09/19 16:49,"589 Forest St, New York City, NY 10001" +190357,Wired Headphones,1,11.99,04/23/19 23:59,"485 12th St, San Francisco, CA 94016" +190358,27in 4K Gaming Monitor,1,389.99,04/30/19 11:55,"545 Lake St, Seattle, WA 98101" +190359,Bose SoundSport Headphones,1,99.99,04/06/19 09:16,"383 14th St, Boston, MA 02215" +190360,Wired Headphones,1,11.99,04/12/19 20:52,"864 Adams St, San Francisco, CA 94016" +190361,Lightning Charging Cable,1,14.95,04/24/19 18:57,"220 Sunset St, Austin, TX 73301" +190362,27in FHD Monitor,1,149.99,04/03/19 21:08,"248 Highland St, San Francisco, CA 94016" +190363,AA Batteries (4-pack),1,3.84,04/23/19 17:26,"378 6th St, Dallas, TX 75001" +190364,Flatscreen TV,1,300,04/11/19 17:36,"356 4th St, Boston, MA 02215" +190365,Lightning Charging Cable,2,14.95,04/29/19 13:00,"275 Washington St, San Francisco, CA 94016" +190366,Wired Headphones,1,11.99,04/13/19 21:53,"498 Church St, New York City, NY 10001" +190367,AA Batteries (4-pack),2,3.84,04/22/19 01:59,"15 9th St, Atlanta, GA 30301" +190368,27in FHD Monitor,1,149.99,04/28/19 19:41,"175 Jackson St, Los Angeles, CA 90001" +190369,AAA Batteries (4-pack),1,2.99,04/05/19 15:04,"21 Ridge St, New York City, NY 10001" +190370,27in FHD Monitor,1,149.99,04/11/19 16:34,"545 4th St, Portland, OR 97035" +190371,AAA Batteries (4-pack),1,2.99,04/01/19 15:57,"713 Hickory St, Boston, MA 02215" +190372,AAA Batteries (4-pack),2,2.99,04/10/19 17:51,"765 Park St, Boston, MA 02215" +190373,Macbook Pro Laptop,1,1700,04/03/19 23:11,"962 West St, Atlanta, GA 30301" +190374,Lightning Charging Cable,1,14.95,04/13/19 09:35,"500 Cherry St, Portland, OR 97035" +190375,iPhone,1,700,04/12/19 18:23,"348 12th St, Los Angeles, CA 90001" +190375,Lightning Charging Cable,2,14.95,04/12/19 18:23,"348 12th St, Los Angeles, CA 90001" +190376,Lightning Charging Cable,1,14.95,04/07/19 12:14,"409 Cedar St, Seattle, WA 98101" +190377,AAA Batteries (4-pack),1,2.99,04/17/19 17:32,"464 Forest St, San Francisco, CA 94016" +190378,Bose SoundSport Headphones,1,99.99,04/03/19 17:21,"826 Highland St, Seattle, WA 98101" +190379,AAA Batteries (4-pack),2,2.99,04/10/19 14:11,"745 Lincoln St, Los Angeles, CA 90001" +190380,AAA Batteries (4-pack),1,2.99,04/23/19 09:22,"893 12th St, Los Angeles, CA 90001" +190381,Apple Airpods Headphones,1,150,04/15/19 00:51,"402 Walnut St, New York City, NY 10001" +190382,Wired Headphones,1,11.99,04/28/19 02:58,"61 Hickory St, Dallas, TX 75001" +190383,Bose SoundSport Headphones,1,99.99,04/06/19 11:44,"270 Pine St, San Francisco, CA 94016" +190384,Wired Headphones,1,11.99,04/11/19 17:21,"701 Lakeview St, Atlanta, GA 30301" +190385,USB-C Charging Cable,1,11.95,04/11/19 12:25,"795 Wilson St, Dallas, TX 75001" +190386,Flatscreen TV,1,300,04/26/19 19:37,"442 Park St, Boston, MA 02215" +190387,Lightning Charging Cable,1,14.95,04/04/19 23:01,"473 7th St, Los Angeles, CA 90001" +190388,ThinkPad Laptop,1,999.99,04/25/19 09:46,"859 Washington St, San Francisco, CA 94016" +190389,USB-C Charging Cable,1,11.95,04/04/19 17:23,"376 Chestnut St, Los Angeles, CA 90001" +190390,Bose SoundSport Headphones,1,99.99,04/12/19 15:49,"382 Spruce St, San Francisco, CA 94016" +190391,Apple Airpods Headphones,1,150,04/05/19 13:34,"289 7th St, San Francisco, CA 94016" +190392,AAA Batteries (4-pack),1,2.99,04/06/19 21:52,"569 Dogwood St, San Francisco, CA 94016" +190393,20in Monitor,1,109.99,04/19/19 16:13,"226 Lakeview St, San Francisco, CA 94016" +190394,34in Ultrawide Monitor,1,379.99,04/01/19 13:32,"343 Highland St, New York City, NY 10001" +190395,USB-C Charging Cable,1,11.95,04/20/19 22:14,"503 Wilson St, San Francisco, CA 94016" +190396,USB-C Charging Cable,2,11.95,04/13/19 12:56,"160 Spruce St, Portland, OR 97035" +190397,AA Batteries (4-pack),1,3.84,04/04/19 14:31,"1 Ridge St, Dallas, TX 75001" +190398,AAA Batteries (4-pack),1,2.99,04/28/19 18:14,"883 Wilson St, San Francisco, CA 94016" +190399,Wired Headphones,1,11.99,04/15/19 21:01,"250 Dogwood St, Los Angeles, CA 90001" +190400,Apple Airpods Headphones,1,150,04/16/19 14:42,"665 Madison St, Boston, MA 02215" +190401,USB-C Charging Cable,1,11.95,04/10/19 07:49,"293 Highland St, Los Angeles, CA 90001" +190402,Vareebadd Phone,1,400,04/12/19 15:58,"821 Hickory St, Los Angeles, CA 90001" +190402,Wired Headphones,1,11.99,04/12/19 15:58,"821 Hickory St, Los Angeles, CA 90001" +190403,AAA Batteries (4-pack),1,2.99,04/03/19 11:42,"284 14th St, Boston, MA 02215" +190404,AAA Batteries (4-pack),1,2.99,04/06/19 20:09,"1 10th St, Portland, ME 04101" +190405,AA Batteries (4-pack),1,3.84,04/04/19 22:18,"144 Walnut St, Atlanta, GA 30301" +190406,AAA Batteries (4-pack),1,2.99,04/29/19 21:07,"879 13th St, New York City, NY 10001" +190407,ThinkPad Laptop,1,999.99,04/28/19 12:28,"659 Willow St, New York City, NY 10001" +190408,USB-C Charging Cable,1,11.95,04/23/19 21:05,"154 Willow St, Boston, MA 02215" +190408,AA Batteries (4-pack),2,3.84,04/23/19 21:05,"154 Willow St, Boston, MA 02215" +190409,iPhone,1,700,04/18/19 10:03,"30 4th St, San Francisco, CA 94016" +190409,Wired Headphones,1,11.99,04/18/19 10:03,"30 4th St, San Francisco, CA 94016" +190410,AAA Batteries (4-pack),1,2.99,04/08/19 19:06,"570 West St, Los Angeles, CA 90001" +190411,AA Batteries (4-pack),2,3.84,04/13/19 09:01,"904 Ridge St, Atlanta, GA 30301" +190412,Bose SoundSport Headphones,1,99.99,04/29/19 15:19,"365 Hickory St, Los Angeles, CA 90001" +190413,Apple Airpods Headphones,1,150,04/14/19 09:20,"930 Jefferson St, Atlanta, GA 30301" +190413,27in FHD Monitor,1,149.99,04/14/19 09:20,"930 Jefferson St, Atlanta, GA 30301" +190414,Apple Airpods Headphones,1,150,04/08/19 22:38,"818 Main St, New York City, NY 10001" +190415,AA Batteries (4-pack),1,3.84,04/08/19 19:46,"220 Elm St, New York City, NY 10001" +190416,AAA Batteries (4-pack),1,2.99,04/25/19 10:37,"761 Madison St, San Francisco, CA 94016" +190417,AAA Batteries (4-pack),2,2.99,04/15/19 20:59,"647 Maple St, Boston, MA 02215" +190417,USB-C Charging Cable,1,11.95,04/15/19 20:59,"647 Maple St, Boston, MA 02215" +190418,ThinkPad Laptop,1,999.99,04/19/19 01:19,"383 5th St, Dallas, TX 75001" +190419,Wired Headphones,1,11.99,04/14/19 15:17,"511 Cherry St, Boston, MA 02215" +190420,Lightning Charging Cable,1,14.95,04/08/19 22:39,"168 Walnut St, Seattle, WA 98101" +190421,34in Ultrawide Monitor,1,379.99,04/08/19 09:22,"493 Elm St, Atlanta, GA 30301" +190422,Bose SoundSport Headphones,1,99.99,04/02/19 17:06,"976 Maple St, Los Angeles, CA 90001" +190423,AA Batteries (4-pack),2,3.84,04/07/19 10:53,"723 Meadow St, Los Angeles, CA 90001" +190424,Apple Airpods Headphones,1,150,04/30/19 20:54,"900 Maple St, Austin, TX 73301" +190425,iPhone,1,700,04/03/19 15:15,"224 South St, Portland, ME 04101" +190426,Bose SoundSport Headphones,1,99.99,04/25/19 15:23,"849 Maple St, Portland, OR 97035" +190427,Bose SoundSport Headphones,1,99.99,04/29/19 06:35,"247 Park St, San Francisco, CA 94016" +190428,20in Monitor,1,109.99,04/16/19 11:26,"591 Hickory St, Los Angeles, CA 90001" +190429,Bose SoundSport Headphones,1,99.99,04/05/19 15:52,"344 Johnson St, New York City, NY 10001" +190430,iPhone,1,700,04/07/19 14:47,"290 Meadow St, Dallas, TX 75001" +190431,AAA Batteries (4-pack),2,2.99,04/23/19 00:51,"616 Lakeview St, Seattle, WA 98101" +190432,34in Ultrawide Monitor,1,379.99,04/28/19 16:01,"442 Hickory St, Los Angeles, CA 90001" +190433,Wired Headphones,1,11.99,04/21/19 03:43,"98 Park St, Boston, MA 02215" +190434,Bose SoundSport Headphones,1,99.99,04/12/19 23:19,"228 Cherry St, Dallas, TX 75001" +190435,USB-C Charging Cable,1,11.95,04/06/19 08:35,"736 Madison St, San Francisco, CA 94016" +190436,Lightning Charging Cable,1,14.95,04/18/19 09:52,"713 8th St, New York City, NY 10001" +190437,AA Batteries (4-pack),1,3.84,04/13/19 22:25,"130 Forest St, New York City, NY 10001" +190438,27in 4K Gaming Monitor,1,389.99,04/06/19 14:08,"607 Chestnut St, San Francisco, CA 94016" +190439,Flatscreen TV,1,300,04/10/19 15:46,"298 12th St, Los Angeles, CA 90001" +190440,Lightning Charging Cable,1,14.95,04/04/19 21:11,"699 Madison St, San Francisco, CA 94016" +190441,AA Batteries (4-pack),1,3.84,04/01/19 22:50,"290 2nd St, Atlanta, GA 30301" +190442,Vareebadd Phone,1,400,04/15/19 13:44,"718 River St, Portland, ME 04101" +190443,27in 4K Gaming Monitor,1,389.99,04/17/19 22:21,"573 Hickory St, San Francisco, CA 94016" +190444,AA Batteries (4-pack),1,3.84,04/27/19 22:38,"671 Main St, Los Angeles, CA 90001" +190445,USB-C Charging Cable,1,11.95,04/08/19 14:54,"619 Sunset St, Boston, MA 02215" +190446,AA Batteries (4-pack),1,3.84,04/24/19 11:40,"576 North St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +190447,27in FHD Monitor,1,149.99,04/06/19 00:37,"979 Main St, Seattle, WA 98101" +190448,AA Batteries (4-pack),1,3.84,04/14/19 17:52,"478 Highland St, New York City, NY 10001" +190449,AA Batteries (4-pack),1,3.84,04/23/19 20:52,"830 Forest St, Dallas, TX 75001" +190450,AAA Batteries (4-pack),4,2.99,04/02/19 16:34,"117 Elm St, San Francisco, CA 94016" +190451,USB-C Charging Cable,1,11.95,04/04/19 11:02,"163 1st St, San Francisco, CA 94016" +190452,USB-C Charging Cable,1,11.95,04/04/19 13:58,"556 Center St, New York City, NY 10001" +190453,Lightning Charging Cable,1,14.95,04/19/19 11:25,"692 Spruce St, San Francisco, CA 94016" +190454,AA Batteries (4-pack),1,3.84,04/26/19 23:51,"840 Pine St, San Francisco, CA 94016" +190455,Macbook Pro Laptop,1,1700,04/23/19 17:24,"579 Washington St, Atlanta, GA 30301" +190456,USB-C Charging Cable,1,11.95,04/17/19 10:21,"205 Jefferson St, Boston, MA 02215" +190457,AA Batteries (4-pack),1,3.84,04/13/19 12:15,"705 Cherry St, Austin, TX 73301" +190458,Wired Headphones,1,11.99,04/07/19 11:39,"221 14th St, Atlanta, GA 30301" +190459,Lightning Charging Cable,1,14.95,04/11/19 13:53,"205 Forest St, Atlanta, GA 30301" +190460,Apple Airpods Headphones,1,150,04/23/19 14:20,"477 Jackson St, New York City, NY 10001" +190461,AAA Batteries (4-pack),1,2.99,04/05/19 09:46,"944 Willow St, Seattle, WA 98101" +190462,Apple Airpods Headphones,1,150,04/06/19 20:03,"229 Center St, Boston, MA 02215" +190463,USB-C Charging Cable,1,11.95,04/30/19 11:39,"493 Maple St, San Francisco, CA 94016" +190464,USB-C Charging Cable,1,11.95,04/25/19 21:09,"838 5th St, New York City, NY 10001" +190464,AAA Batteries (4-pack),1,2.99,04/25/19 21:09,"838 5th St, New York City, NY 10001" +190465,Apple Airpods Headphones,1,150,04/18/19 17:09,"132 6th St, Los Angeles, CA 90001" +190466,27in FHD Monitor,1,149.99,04/03/19 20:05,"348 Wilson St, Austin, TX 73301" +190467,Wired Headphones,1,11.99,04/11/19 20:43,"670 Hickory St, Austin, TX 73301" +190468,AA Batteries (4-pack),1,3.84,04/05/19 19:48,"691 Highland St, Portland, OR 97035" +190469,AA Batteries (4-pack),1,3.84,04/04/19 14:33,"399 Madison St, Atlanta, GA 30301" +190470,Wired Headphones,1,11.99,04/08/19 19:01,"104 Cherry St, San Francisco, CA 94016" +190471,AAA Batteries (4-pack),2,2.99,04/18/19 13:58,"383 Hickory St, Boston, MA 02215" +190472,USB-C Charging Cable,1,11.95,04/14/19 15:33,"559 Wilson St, Seattle, WA 98101" +190473,27in 4K Gaming Monitor,1,389.99,04/03/19 16:12,"93 2nd St, Los Angeles, CA 90001" +190474,AAA Batteries (4-pack),2,2.99,04/21/19 15:43,"194 Elm St, San Francisco, CA 94016" +190475,USB-C Charging Cable,1,11.95,04/11/19 22:25,"203 Meadow St, San Francisco, CA 94016" +190476,27in FHD Monitor,1,149.99,04/12/19 02:09,"737 Lincoln St, San Francisco, CA 94016" +190477,Wired Headphones,1,11.99,04/28/19 18:41,"530 7th St, Atlanta, GA 30301" +190478,AAA Batteries (4-pack),3,2.99,04/06/19 19:02,"617 Dogwood St, Portland, OR 97035" +190479,AAA Batteries (4-pack),1,2.99,04/21/19 11:01,"533 South St, San Francisco, CA 94016" +190480,Lightning Charging Cable,1,14.95,04/29/19 11:24,"90 Hickory St, Dallas, TX 75001" +190481,Flatscreen TV,1,300,04/07/19 21:57,"300 7th St, Dallas, TX 75001" +190482,AAA Batteries (4-pack),2,2.99,04/17/19 18:20,"13 6th St, Atlanta, GA 30301" +190483,AAA Batteries (4-pack),1,2.99,04/03/19 16:17,"996 13th St, San Francisco, CA 94016" +190484,USB-C Charging Cable,1,11.95,04/17/19 19:11,"98 Chestnut St, Boston, MA 02215" +190485,Macbook Pro Laptop,1,1700,04/16/19 15:48,"486 Wilson St, New York City, NY 10001" +190486,AA Batteries (4-pack),1,3.84,04/14/19 16:24,"470 6th St, Los Angeles, CA 90001" +190487,27in 4K Gaming Monitor,1,389.99,04/17/19 11:20,"502 13th St, Dallas, TX 75001" +190488,Bose SoundSport Headphones,1,99.99,04/30/19 10:52,"463 Maple St, New York City, NY 10001" +190489,AA Batteries (4-pack),2,3.84,04/07/19 01:47,"211 Ridge St, Los Angeles, CA 90001" +190490,34in Ultrawide Monitor,1,379.99,04/02/19 23:17,"241 Elm St, Atlanta, GA 30301" +190491,USB-C Charging Cable,1,11.95,04/16/19 18:10,"429 Adams St, Los Angeles, CA 90001" +190492,USB-C Charging Cable,1,11.95,04/05/19 16:54,"518 Center St, San Francisco, CA 94016" +190493,USB-C Charging Cable,1,11.95,04/26/19 18:44,"35 Spruce St, Seattle, WA 98101" +190494,AAA Batteries (4-pack),2,2.99,04/20/19 18:37,"376 Sunset St, Atlanta, GA 30301" +190495,Bose SoundSport Headphones,1,99.99,04/25/19 19:10,"691 Pine St, Boston, MA 02215" +190496,AA Batteries (4-pack),1,3.84,04/24/19 10:23,"338 4th St, Boston, MA 02215" +190497,Lightning Charging Cable,1,14.95,04/28/19 14:17,"719 Main St, San Francisco, CA 94016" +190498,USB-C Charging Cable,1,11.95,04/14/19 20:02,"954 Johnson St, San Francisco, CA 94016" +190499,20in Monitor,1,109.99,04/21/19 15:35,"127 10th St, New York City, NY 10001" +190500,Lightning Charging Cable,1,14.95,04/21/19 19:31,"314 West St, Atlanta, GA 30301" +190501,Lightning Charging Cable,1,14.95,04/02/19 09:02,"754 11th St, New York City, NY 10001" +190502,Wired Headphones,1,11.99,04/12/19 19:03,"98 Johnson St, San Francisco, CA 94016" +190503,Vareebadd Phone,1,400,04/27/19 15:30,"14 Johnson St, Los Angeles, CA 90001" +190503,Bose SoundSport Headphones,1,99.99,04/27/19 15:30,"14 Johnson St, Los Angeles, CA 90001" +190504,Wired Headphones,1,11.99,04/26/19 12:14,"849 North St, Dallas, TX 75001" +190505,iPhone,1,700,04/12/19 09:40,"356 West St, Austin, TX 73301" +190506,27in 4K Gaming Monitor,1,389.99,04/28/19 11:48,"288 4th St, San Francisco, CA 94016" +190507,AA Batteries (4-pack),2,3.84,04/17/19 12:45,"516 Highland St, New York City, NY 10001" +190508,AAA Batteries (4-pack),1,2.99,04/30/19 08:21,"635 Cherry St, Boston, MA 02215" +190509,AAA Batteries (4-pack),1,2.99,04/11/19 17:27,"541 Jefferson St, Portland, OR 97035" +190510,Wired Headphones,1,11.99,04/02/19 17:37,"86 North St, San Francisco, CA 94016" +190510,Lightning Charging Cable,1,14.95,04/02/19 17:37,"86 North St, San Francisco, CA 94016" +190511,AA Batteries (4-pack),1,3.84,04/13/19 21:17,"415 Dogwood St, Los Angeles, CA 90001" +190512,Wired Headphones,1,11.99,04/04/19 18:17,"153 6th St, San Francisco, CA 94016" +190513,Google Phone,1,600,04/10/19 13:08,"111 13th St, San Francisco, CA 94016" +190514,Wired Headphones,1,11.99,04/22/19 17:35,"287 River St, Portland, OR 97035" +190515,ThinkPad Laptop,1,999.99,04/15/19 19:03,"9 10th St, Los Angeles, CA 90001" +190516,Bose SoundSport Headphones,1,99.99,04/09/19 20:49,"932 Maple St, Austin, TX 73301" +190517,34in Ultrawide Monitor,1,379.99,04/18/19 13:39,"961 14th St, San Francisco, CA 94016" +190518,USB-C Charging Cable,1,11.95,04/12/19 13:51,"555 Lincoln St, New York City, NY 10001" +190519,Apple Airpods Headphones,1,150,04/19/19 01:21,"263 Sunset St, Seattle, WA 98101" +190520,Wired Headphones,1,11.99,04/01/19 16:48,"397 Main St, Atlanta, GA 30301" +190521,Google Phone,1,600,04/26/19 22:31,"749 Pine St, Boston, MA 02215" +190521,Wired Headphones,1,11.99,04/26/19 22:31,"749 Pine St, Boston, MA 02215" +190522,ThinkPad Laptop,1,999.99,04/24/19 18:37,"987 Washington St, San Francisco, CA 94016" +190523,USB-C Charging Cable,1,11.95,04/30/19 08:03,"260 Pine St, Los Angeles, CA 90001" +190524,AAA Batteries (4-pack),1,2.99,04/17/19 07:34,"497 Forest St, Los Angeles, CA 90001" +190525,iPhone,1,700,04/28/19 14:48,"45 Cedar St, Dallas, TX 75001" +190526,ThinkPad Laptop,1,999.99,04/14/19 22:27,"107 Highland St, Los Angeles, CA 90001" +190527,Wired Headphones,1,11.99,04/28/19 23:50,"940 11th St, San Francisco, CA 94016" +190528,Apple Airpods Headphones,1,150,04/11/19 13:08,"76 Sunset St, Austin, TX 73301" +190529,Flatscreen TV,1,300,04/10/19 12:31,"823 5th St, Austin, TX 73301" +190530,Apple Airpods Headphones,1,150,04/07/19 01:51,"35 14th St, Los Angeles, CA 90001" +190531,iPhone,1,700,04/20/19 15:13,"969 Maple St, Dallas, TX 75001" +190531,Lightning Charging Cable,1,14.95,04/20/19 15:13,"969 Maple St, Dallas, TX 75001" +190532,Wired Headphones,1,11.99,04/06/19 23:38,"272 Willow St, Atlanta, GA 30301" +190533,Flatscreen TV,1,300,04/22/19 19:43,"496 Main St, Dallas, TX 75001" +190534,AA Batteries (4-pack),1,3.84,04/13/19 04:31,"276 14th St, Atlanta, GA 30301" +190535,Lightning Charging Cable,1,14.95,04/11/19 07:37,"275 5th St, San Francisco, CA 94016" +190536,Bose SoundSport Headphones,1,99.99,04/15/19 18:58,"446 Hickory St, Atlanta, GA 30301" +190537,Wired Headphones,1,11.99,04/15/19 15:22,"950 Pine St, San Francisco, CA 94016" +190538,Google Phone,1,600,04/29/19 20:09,"367 8th St, Boston, MA 02215" +190539,Apple Airpods Headphones,1,150,04/08/19 18:40,"163 4th St, Los Angeles, CA 90001" +190540,Bose SoundSport Headphones,1,99.99,04/06/19 15:31,"327 Chestnut St, Seattle, WA 98101" +190541,Lightning Charging Cable,1,14.95,04/13/19 10:38,"709 Willow St, San Francisco, CA 94016" +190542,USB-C Charging Cable,1,11.95,04/23/19 16:03,"612 Maple St, Austin, TX 73301" +190543,Lightning Charging Cable,1,14.95,04/15/19 18:47,"746 Cedar St, Boston, MA 02215" +190544,Bose SoundSport Headphones,1,99.99,04/01/19 22:01,"395 Wilson St, New York City, NY 10001" +190544,AA Batteries (4-pack),1,3.84,04/01/19 22:01,"395 Wilson St, New York City, NY 10001" +190545,Vareebadd Phone,1,400,04/24/19 20:08,"150 14th St, Los Angeles, CA 90001" +190546,AAA Batteries (4-pack),1,2.99,04/30/19 11:37,"716 Washington St, New York City, NY 10001" +190547,USB-C Charging Cable,1,11.95,04/14/19 13:16,"818 Forest St, San Francisco, CA 94016" +190548,iPhone,1,700,04/15/19 23:34,"745 Maple St, Atlanta, GA 30301" +190549,Wired Headphones,1,11.99,04/25/19 08:36,"194 Walnut St, San Francisco, CA 94016" +190550,Apple Airpods Headphones,1,150,04/21/19 22:30,"342 Church St, Los Angeles, CA 90001" +190551,AAA Batteries (4-pack),1,2.99,04/26/19 10:19,"326 Johnson St, San Francisco, CA 94016" +190552,AA Batteries (4-pack),1,3.84,04/28/19 20:11,"269 North St, Los Angeles, CA 90001" +190553,ThinkPad Laptop,1,999.99,04/20/19 12:11,"379 Jackson St, Boston, MA 02215" +190554,iPhone,1,700,04/20/19 11:34,"774 Sunset St, San Francisco, CA 94016" +190554,Lightning Charging Cable,1,14.95,04/20/19 11:34,"774 Sunset St, San Francisco, CA 94016" +190555,AA Batteries (4-pack),1,3.84,04/29/19 21:03,"686 6th St, Seattle, WA 98101" +190556,Wired Headphones,1,11.99,04/11/19 12:37,"980 13th St, San Francisco, CA 94016" +190557,AAA Batteries (4-pack),1,2.99,04/14/19 22:29,"576 Highland St, San Francisco, CA 94016" +190558,AAA Batteries (4-pack),2,2.99,04/04/19 14:49,"847 Walnut St, Boston, MA 02215" +190559,Macbook Pro Laptop,1,1700,04/01/19 12:19,"776 10th St, Atlanta, GA 30301" +190560,AA Batteries (4-pack),1,3.84,04/05/19 09:35,"936 Elm St, Seattle, WA 98101" +190561,Google Phone,1,600,04/02/19 23:01,"726 Jackson St, Los Angeles, CA 90001" +190562,AAA Batteries (4-pack),1,2.99,04/23/19 14:13,"669 Pine St, San Francisco, CA 94016" +190563,USB-C Charging Cable,1,11.95,04/14/19 17:20,"829 12th St, San Francisco, CA 94016" +190564,Bose SoundSport Headphones,1,99.99,04/26/19 18:03,"646 West St, San Francisco, CA 94016" +190564,iPhone,1,700,04/26/19 18:03,"646 West St, San Francisco, CA 94016" +190565,AA Batteries (4-pack),2,3.84,04/10/19 23:43,"743 12th St, Los Angeles, CA 90001" +190566,Lightning Charging Cable,1,14.95,04/07/19 18:31,"65 Jackson St, Los Angeles, CA 90001" +190567,Lightning Charging Cable,2,14.95,04/01/19 12:22,"832 Wilson St, New York City, NY 10001" +190568,Lightning Charging Cable,1,14.95,04/03/19 11:46,"139 Willow St, Dallas, TX 75001" +190569,27in FHD Monitor,1,149.99,04/01/19 15:09,"445 Park St, New York City, NY 10001" +190570,Lightning Charging Cable,1,14.95,04/08/19 19:09,"526 4th St, Los Angeles, CA 90001" +190571,Wired Headphones,2,11.99,04/19/19 08:45,"467 12th St, Boston, MA 02215" +190572,AA Batteries (4-pack),2,3.84,04/13/19 11:12,"934 Meadow St, New York City, NY 10001" +190573,AA Batteries (4-pack),2,3.84,04/30/19 22:00,"331 River St, San Francisco, CA 94016" +190574,Vareebadd Phone,1,400,04/21/19 07:37,"645 Sunset St, Los Angeles, CA 90001" +190575,Apple Airpods Headphones,1,150,04/27/19 10:34,"940 14th St, Atlanta, GA 30301" +190576,Lightning Charging Cable,1,14.95,04/12/19 22:56,"815 Cherry St, Boston, MA 02215" +190577,Macbook Pro Laptop,1,1700,04/25/19 18:03,"224 South St, New York City, NY 10001" +190578,Vareebadd Phone,1,400,04/05/19 19:44,"274 Jackson St, Seattle, WA 98101" +190579,20in Monitor,1,109.99,04/16/19 09:34,"991 Lakeview St, Seattle, WA 98101" +190580,Apple Airpods Headphones,1,150,04/16/19 06:10,"440 Elm St, Seattle, WA 98101" +190581,USB-C Charging Cable,1,11.95,04/20/19 12:43,"891 Park St, Seattle, WA 98101" +190582,Macbook Pro Laptop,1,1700,04/27/19 17:26,"396 Elm St, Seattle, WA 98101" +190583,USB-C Charging Cable,2,11.95,04/05/19 07:48,"449 6th St, San Francisco, CA 94016" +190584,Apple Airpods Headphones,1,150,04/06/19 12:27,"3 12th St, Boston, MA 02215" +190585,Flatscreen TV,1,300,04/11/19 16:21,"304 Lakeview St, New York City, NY 10001" +190586,Lightning Charging Cable,1,14.95,04/09/19 22:12,"869 Center St, Los Angeles, CA 90001" +190587,Google Phone,1,600,04/03/19 15:15,"584 Hickory St, New York City, NY 10001" +190588,USB-C Charging Cable,1,11.95,04/02/19 15:23,"559 Washington St, Boston, MA 02215" +190588,20in Monitor,1,109.99,04/02/19 15:23,"559 Washington St, Boston, MA 02215" +190589,AA Batteries (4-pack),2,3.84,04/27/19 23:31,"421 Adams St, San Francisco, CA 94016" +190590,AAA Batteries (4-pack),1,2.99,04/13/19 09:13,"349 Meadow St, Atlanta, GA 30301" +190591,34in Ultrawide Monitor,1,379.99,04/11/19 10:56,"910 Forest St, Austin, TX 73301" +190592,Wired Headphones,1,11.99,04/16/19 09:20,"412 Willow St, Atlanta, GA 30301" +190593,Flatscreen TV,1,300,04/30/19 22:40,"468 North St, San Francisco, CA 94016" +190594,27in 4K Gaming Monitor,1,389.99,04/15/19 11:44,"815 Forest St, San Francisco, CA 94016" +190595,AAA Batteries (4-pack),4,2.99,04/19/19 20:53,"488 14th St, Atlanta, GA 30301" +190596,Wired Headphones,1,11.99,04/06/19 19:56,"176 Maple St, Los Angeles, CA 90001" +190597,27in FHD Monitor,1,149.99,04/29/19 03:25,"565 Washington St, Portland, OR 97035" +190598,USB-C Charging Cable,1,11.95,04/27/19 10:19,"624 Park St, New York City, NY 10001" +190599,iPhone,1,700,04/27/19 09:39,"509 7th St, Portland, ME 04101" +190600,Lightning Charging Cable,1,14.95,04/01/19 19:57,"972 North St, Los Angeles, CA 90001" +190601,USB-C Charging Cable,1,11.95,04/08/19 10:14,"873 Spruce St, Austin, TX 73301" +190602,USB-C Charging Cable,1,11.95,04/24/19 10:22,"542 6th St, Austin, TX 73301" +190603,Flatscreen TV,1,300,04/18/19 17:05,"926 2nd St, Los Angeles, CA 90001" +190604,Bose SoundSport Headphones,1,99.99,04/22/19 15:42,"329 Cherry St, Los Angeles, CA 90001" +190605,USB-C Charging Cable,1,11.95,04/25/19 21:15,"102 12th St, San Francisco, CA 94016" +190606,AAA Batteries (4-pack),1,2.99,04/27/19 19:39,"977 8th St, Boston, MA 02215" +190607,AA Batteries (4-pack),1,3.84,04/12/19 12:45,"758 Park St, New York City, NY 10001" +190608,AAA Batteries (4-pack),1,2.99,04/26/19 11:14,"703 River St, Austin, TX 73301" +190609,Wired Headphones,1,11.99,04/30/19 22:35,"280 10th St, San Francisco, CA 94016" +190610,27in FHD Monitor,1,149.99,04/21/19 21:41,"656 Lakeview St, Atlanta, GA 30301" +190611,USB-C Charging Cable,1,11.95,04/12/19 20:57,"61 Madison St, San Francisco, CA 94016" +190612,AA Batteries (4-pack),1,3.84,04/20/19 16:37,"854 Sunset St, New York City, NY 10001" +190613,ThinkPad Laptop,1,999.99,04/24/19 01:15,"947 4th St, New York City, NY 10001" +190614,Lightning Charging Cable,1,14.95,04/20/19 02:10,"18 Sunset St, Los Angeles, CA 90001" +190615,Wired Headphones,1,11.99,04/27/19 18:45,"160 Forest St, Seattle, WA 98101" +,,,,, +190616,iPhone,1,700,04/07/19 17:35,"841 Maple St, Portland, OR 97035" +190617,Lightning Charging Cable,1,14.95,04/29/19 13:45,"385 12th St, San Francisco, CA 94016" +190618,20in Monitor,1,109.99,04/07/19 02:13,"564 Johnson St, Atlanta, GA 30301" +190619,AAA Batteries (4-pack),1,2.99,04/07/19 19:56,"575 4th St, Los Angeles, CA 90001" +190620,AAA Batteries (4-pack),2,2.99,04/26/19 11:39,"386 Chestnut St, Atlanta, GA 30301" +190621,Lightning Charging Cable,1,14.95,04/04/19 13:51,"57 Cedar St, Portland, ME 04101" +190622,Wired Headphones,2,11.99,04/14/19 13:57,"107 Walnut St, Atlanta, GA 30301" +190623,USB-C Charging Cable,1,11.95,04/10/19 21:39,"793 4th St, Dallas, TX 75001" +190624,USB-C Charging Cable,1,11.95,04/24/19 12:19,"351 9th St, San Francisco, CA 94016" +190625,Lightning Charging Cable,3,14.95,04/25/19 16:50,"713 Elm St, Boston, MA 02215" +190626,27in FHD Monitor,1,149.99,04/05/19 13:42,"431 West St, Boston, MA 02215" +190627,AA Batteries (4-pack),3,3.84,04/12/19 09:39,"874 Church St, San Francisco, CA 94016" +190628,AAA Batteries (4-pack),1,2.99,04/08/19 17:03,"334 Highland St, Boston, MA 02215" +190629,USB-C Charging Cable,1,11.95,04/13/19 15:18,"710 4th St, Los Angeles, CA 90001" +190630,AA Batteries (4-pack),1,3.84,04/05/19 10:28,"106 Center St, Los Angeles, CA 90001" +190631,ThinkPad Laptop,1,999.99,04/12/19 17:40,"144 Wilson St, Los Angeles, CA 90001" +190632,Wired Headphones,1,11.99,04/27/19 08:29,"674 Chestnut St, Atlanta, GA 30301" +190633,AAA Batteries (4-pack),2,2.99,04/23/19 09:52,"62 Center St, Seattle, WA 98101" +190634,Wired Headphones,1,11.99,04/01/19 09:03,"939 Washington St, Seattle, WA 98101" +190635,AA Batteries (4-pack),1,3.84,04/12/19 09:46,"88 Walnut St, Atlanta, GA 30301" +190636,20in Monitor,1,109.99,04/03/19 15:31,"67 Cherry St, Atlanta, GA 30301" +190637,Wired Headphones,1,11.99,04/22/19 10:55,"145 Sunset St, San Francisco, CA 94016" +190638,Macbook Pro Laptop,1,1700,04/21/19 16:40,"546 8th St, San Francisco, CA 94016" +190639,34in Ultrawide Monitor,1,379.99,04/25/19 18:06,"353 Sunset St, Los Angeles, CA 90001" +190640,27in FHD Monitor,1,149.99,04/22/19 01:17,"116 8th St, Boston, MA 02215" +190641,Apple Airpods Headphones,1,150,04/23/19 18:59,"106 Park St, New York City, NY 10001" +190642,Apple Airpods Headphones,1,150,04/27/19 19:10,"386 Dogwood St, Seattle, WA 98101" +190643,AAA Batteries (4-pack),2,2.99,04/21/19 13:17,"721 Chestnut St, New York City, NY 10001" +190644,Vareebadd Phone,1,400,04/09/19 23:13,"195 Willow St, San Francisco, CA 94016" +190644,USB-C Charging Cable,1,11.95,04/09/19 23:13,"195 Willow St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +190645,27in FHD Monitor,1,149.99,04/18/19 16:34,"444 Ridge St, Seattle, WA 98101" +190646,Wired Headphones,1,11.99,04/24/19 23:38,"514 Forest St, Atlanta, GA 30301" +190647,AAA Batteries (4-pack),2,2.99,04/23/19 18:05,"271 Lake St, San Francisco, CA 94016" +190648,34in Ultrawide Monitor,1,379.99,04/19/19 19:27,"713 Cedar St, Seattle, WA 98101" +190649,AAA Batteries (4-pack),3,2.99,04/15/19 12:12,"27 Forest St, Dallas, TX 75001" +190650,Wired Headphones,1,11.99,04/30/19 19:39,"640 Wilson St, San Francisco, CA 94016" +190651,AAA Batteries (4-pack),1,2.99,04/30/19 16:26,"541 Church St, San Francisco, CA 94016" +190652,Google Phone,1,600,04/03/19 17:29,"301 Chestnut St, San Francisco, CA 94016" +190652,USB-C Charging Cable,1,11.95,04/03/19 17:29,"301 Chestnut St, San Francisco, CA 94016" +190653,27in 4K Gaming Monitor,1,389.99,04/07/19 08:28,"524 Lincoln St, Los Angeles, CA 90001" +190654,Apple Airpods Headphones,1,150,04/27/19 20:48,"165 North St, Seattle, WA 98101" +190655,AA Batteries (4-pack),2,3.84,04/25/19 13:27,"550 South St, San Francisco, CA 94016" +190656,AA Batteries (4-pack),1,3.84,04/27/19 10:22,"460 Sunset St, Dallas, TX 75001" +190657,Flatscreen TV,1,300,04/07/19 10:10,"293 7th St, San Francisco, CA 94016" +190658,AA Batteries (4-pack),1,3.84,04/04/19 21:55,"481 Willow St, Los Angeles, CA 90001" +190659,AAA Batteries (4-pack),2,2.99,04/20/19 21:54,"160 Pine St, Los Angeles, CA 90001" +190660,Apple Airpods Headphones,1,150,04/22/19 12:04,"755 Church St, San Francisco, CA 94016" +190661,Bose SoundSport Headphones,1,99.99,04/16/19 23:35,"351 Hickory St, San Francisco, CA 94016" +190662,AA Batteries (4-pack),1,3.84,04/04/19 18:22,"94 13th St, Austin, TX 73301" +190663,Apple Airpods Headphones,1,150,04/01/19 17:50,"43 Cedar St, San Francisco, CA 94016" +190664,34in Ultrawide Monitor,1,379.99,04/10/19 15:58,"80 Madison St, Atlanta, GA 30301" +190665,Apple Airpods Headphones,1,150,04/22/19 17:51,"581 Johnson St, San Francisco, CA 94016" +190666,Apple Airpods Headphones,1,150,04/22/19 22:40,"136 Cherry St, San Francisco, CA 94016" +190667,USB-C Charging Cable,1,11.95,04/12/19 16:26,"626 Park St, Seattle, WA 98101" +190668,20in Monitor,1,109.99,04/27/19 22:22,"535 River St, San Francisco, CA 94016" +190669,27in FHD Monitor,1,149.99,04/07/19 17:41,"540 Meadow St, Austin, TX 73301" +190670,20in Monitor,1,109.99,04/22/19 11:33,"43 Jackson St, New York City, NY 10001" +190671,Lightning Charging Cable,1,14.95,04/03/19 10:15,"82 Forest St, Los Angeles, CA 90001" +190672,Vareebadd Phone,1,400,04/22/19 15:09,"545 Dogwood St, Atlanta, GA 30301" +190672,USB-C Charging Cable,1,11.95,04/22/19 15:09,"545 Dogwood St, Atlanta, GA 30301" +190673,AA Batteries (4-pack),1,3.84,04/30/19 18:07,"361 13th St, Dallas, TX 75001" +190674,USB-C Charging Cable,1,11.95,04/25/19 19:41,"705 Jackson St, Dallas, TX 75001" +190675,Lightning Charging Cable,1,14.95,04/25/19 22:13,"608 2nd St, New York City, NY 10001" +190676,Wired Headphones,1,11.99,04/28/19 20:23,"237 South St, San Francisco, CA 94016" +190677,Apple Airpods Headphones,1,150,04/09/19 14:23,"599 Walnut St, San Francisco, CA 94016" +190678,AA Batteries (4-pack),1,3.84,04/29/19 07:41,"846 Maple St, San Francisco, CA 94016" +190679,Google Phone,1,600,04/02/19 11:22,"980 Lake St, Boston, MA 02215" +190679,USB-C Charging Cable,1,11.95,04/02/19 11:22,"980 Lake St, Boston, MA 02215" +190680,27in 4K Gaming Monitor,1,389.99,04/29/19 20:25,"235 Sunset St, San Francisco, CA 94016" +190681,Wired Headphones,1,11.99,04/06/19 16:27,"949 6th St, Boston, MA 02215" +190682,iPhone,1,700,04/02/19 21:39,"474 Maple St, Dallas, TX 75001" +190682,Wired Headphones,1,11.99,04/02/19 21:39,"474 Maple St, Dallas, TX 75001" +190683,AA Batteries (4-pack),1,3.84,04/07/19 09:29,"769 Hill St, San Francisco, CA 94016" +190684,Wired Headphones,1,11.99,04/22/19 10:31,"149 Willow St, Portland, OR 97035" +190685,Lightning Charging Cable,1,14.95,04/14/19 19:55,"775 4th St, Los Angeles, CA 90001" +190686,USB-C Charging Cable,1,11.95,04/30/19 22:11,"489 7th St, Portland, OR 97035" +190687,USB-C Charging Cable,1,11.95,04/12/19 13:01,"188 Cedar St, New York City, NY 10001" +190688,USB-C Charging Cable,1,11.95,04/13/19 16:48,"721 South St, San Francisco, CA 94016" +190689,iPhone,1,700,04/20/19 19:44,"867 River St, New York City, NY 10001" +190690,Lightning Charging Cable,1,14.95,04/19/19 18:46,"869 2nd St, Boston, MA 02215" +190691,ThinkPad Laptop,1,999.99,04/06/19 18:35,"705 Main St, Atlanta, GA 30301" +190692,AA Batteries (4-pack),1,3.84,04/02/19 16:47,"539 1st St, Los Angeles, CA 90001" +190693,AA Batteries (4-pack),1,3.84,04/10/19 10:41,"217 13th St, Los Angeles, CA 90001" +190694,Lightning Charging Cable,1,14.95,04/05/19 18:30,"957 8th St, Seattle, WA 98101" +190695,LG Dryer,1,600.0,04/15/19 10:13,"506 Meadow St, Atlanta, GA 30301" +190696,Macbook Pro Laptop,1,1700,04/05/19 12:02,"290 Lincoln St, Austin, TX 73301" +190697,Lightning Charging Cable,1,14.95,04/11/19 23:02,"929 Walnut St, Seattle, WA 98101" +190698,34in Ultrawide Monitor,1,379.99,04/12/19 20:11,"465 Center St, Seattle, WA 98101" +190699,AAA Batteries (4-pack),1,2.99,04/29/19 00:19,"507 Hickory St, San Francisco, CA 94016" +190700,AA Batteries (4-pack),1,3.84,04/30/19 16:07,"173 Church St, San Francisco, CA 94016" +190701,27in FHD Monitor,1,149.99,04/04/19 09:56,"8 Ridge St, Seattle, WA 98101" +190702,AAA Batteries (4-pack),1,2.99,04/23/19 21:12,"596 Sunset St, Los Angeles, CA 90001" +190703,AA Batteries (4-pack),1,3.84,04/04/19 19:34,"573 Forest St, Los Angeles, CA 90001" +190704,AA Batteries (4-pack),1,3.84,04/12/19 12:25,"373 Washington St, New York City, NY 10001" +190705,Lightning Charging Cable,1,14.95,04/20/19 14:54,"785 8th St, Seattle, WA 98101" +190706,AA Batteries (4-pack),3,3.84,04/02/19 16:38,"514 Chestnut St, San Francisco, CA 94016" +190707,ThinkPad Laptop,1,999.99,04/16/19 20:15,"298 Church St, New York City, NY 10001" +190708,AAA Batteries (4-pack),1,2.99,04/25/19 08:39,"617 Ridge St, Boston, MA 02215" +190709,20in Monitor,1,109.99,04/11/19 16:30,"708 6th St, Atlanta, GA 30301" +190710,AAA Batteries (4-pack),1,2.99,04/01/19 11:45,"900 Cherry St, Atlanta, GA 30301" +190711,Bose SoundSport Headphones,1,99.99,04/29/19 14:25,"677 10th St, Los Angeles, CA 90001" +190712,AA Batteries (4-pack),1,3.84,04/24/19 18:31,"100 Meadow St, San Francisco, CA 94016" +190713,iPhone,1,700,04/08/19 12:42,"116 1st St, Dallas, TX 75001" +190714,AA Batteries (4-pack),2,3.84,04/21/19 22:48,"550 Cherry St, San Francisco, CA 94016" +190715,Lightning Charging Cable,1,14.95,04/06/19 09:57,"911 Johnson St, New York City, NY 10001" +190716,27in FHD Monitor,1,149.99,04/08/19 13:57,"708 Park St, Seattle, WA 98101" +190717,USB-C Charging Cable,1,11.95,04/01/19 13:53,"841 Meadow St, Los Angeles, CA 90001" +190718,AAA Batteries (4-pack),2,2.99,04/06/19 20:16,"182 Cherry St, Boston, MA 02215" +190719,AA Batteries (4-pack),1,3.84,04/25/19 06:20,"25 Spruce St, Portland, OR 97035" +190720,USB-C Charging Cable,1,11.95,04/05/19 20:27,"68 Elm St, Los Angeles, CA 90001" +190721,34in Ultrawide Monitor,1,379.99,04/06/19 11:51,"244 6th St, Seattle, WA 98101" +190722,AA Batteries (4-pack),1,3.84,04/25/19 18:43,"621 Adams St, Seattle, WA 98101" +190723,Apple Airpods Headphones,1,150,04/19/19 11:52,"590 13th St, Portland, OR 97035" +190724,AAA Batteries (4-pack),1,2.99,04/19/19 15:03,"575 Lincoln St, Atlanta, GA 30301" +190725,Bose SoundSport Headphones,1,99.99,04/22/19 13:44,"206 Walnut St, Seattle, WA 98101" +190726,AA Batteries (4-pack),1,3.84,04/03/19 19:33,"725 Wilson St, Dallas, TX 75001" +190727,USB-C Charging Cable,1,11.95,04/29/19 15:17,"460 Sunset St, Dallas, TX 75001" +190728,AA Batteries (4-pack),1,3.84,04/19/19 16:39,"32 10th St, Atlanta, GA 30301" +190729,Flatscreen TV,1,300,04/19/19 17:01,"217 Cedar St, Atlanta, GA 30301" +190730,Wired Headphones,1,11.99,04/10/19 13:22,"829 6th St, San Francisco, CA 94016" +190731,AA Batteries (4-pack),2,3.84,04/01/19 16:15,"354 Dogwood St, Dallas, TX 75001" +190732,LG Dryer,1,600.0,04/10/19 16:27,"923 5th St, Los Angeles, CA 90001" +190733,AAA Batteries (4-pack),1,2.99,04/18/19 13:52,"830 West St, Seattle, WA 98101" +190734,Lightning Charging Cable,1,14.95,04/29/19 11:59,"471 Cherry St, Boston, MA 02215" +190735,AAA Batteries (4-pack),5,2.99,04/24/19 18:02,"178 Washington St, Los Angeles, CA 90001" +190735,Lightning Charging Cable,1,14.95,04/24/19 18:02,"178 Washington St, Los Angeles, CA 90001" +190736,USB-C Charging Cable,1,11.95,04/06/19 11:17,"576 Madison St, San Francisco, CA 94016" +190737,Bose SoundSport Headphones,1,99.99,04/17/19 13:12,"938 4th St, San Francisco, CA 94016" +190738,USB-C Charging Cable,1,11.95,04/04/19 10:59,"856 Chestnut St, Portland, OR 97035" +190739,Lightning Charging Cable,1,14.95,04/23/19 17:22,"194 Jackson St, Los Angeles, CA 90001" +190740,USB-C Charging Cable,1,11.95,04/20/19 18:53,"243 Cedar St, New York City, NY 10001" +190741,Wired Headphones,1,11.99,04/05/19 20:25,"11 South St, San Francisco, CA 94016" +190742,USB-C Charging Cable,1,11.95,04/07/19 11:09,"846 12th St, New York City, NY 10001" +190743,ThinkPad Laptop,1,999.99,04/25/19 12:08,"797 Spruce St, New York City, NY 10001" +190744,Wired Headphones,1,11.99,04/11/19 00:10,"254 5th St, San Francisco, CA 94016" +190745,34in Ultrawide Monitor,1,379.99,04/05/19 20:48,"460 Dogwood St, Los Angeles, CA 90001" +190746,ThinkPad Laptop,1,999.99,04/30/19 22:02,"328 Church St, Atlanta, GA 30301" +190747,USB-C Charging Cable,1,11.95,04/19/19 15:30,"671 10th St, San Francisco, CA 94016" +190748,AAA Batteries (4-pack),2,2.99,04/18/19 18:10,"337 Pine St, Portland, OR 97035" +190749,Wired Headphones,2,11.99,04/08/19 17:43,"397 6th St, Dallas, TX 75001" +190750,AAA Batteries (4-pack),1,2.99,04/23/19 12:21,"118 Cherry St, San Francisco, CA 94016" +190751,Google Phone,1,600,04/06/19 14:50,"892 Forest St, San Francisco, CA 94016" +190752,AA Batteries (4-pack),1,3.84,04/08/19 17:27,"528 Ridge St, Seattle, WA 98101" +190753,Google Phone,1,600,04/18/19 18:51,"826 Hickory St, San Francisco, CA 94016" +190754,27in FHD Monitor,1,149.99,04/23/19 13:21,"980 North St, Boston, MA 02215" +190755,USB-C Charging Cable,1,11.95,04/14/19 22:43,"590 5th St, New York City, NY 10001" +190756,AA Batteries (4-pack),2,3.84,04/02/19 11:15,"334 12th St, Los Angeles, CA 90001" +190757,Lightning Charging Cable,1,14.95,04/28/19 15:51,"690 Jefferson St, Austin, TX 73301" +190758,AA Batteries (4-pack),1,3.84,04/13/19 08:02,"598 6th St, New York City, NY 10001" +190759,USB-C Charging Cable,1,11.95,04/14/19 18:34,"372 6th St, New York City, NY 10001" +190760,Apple Airpods Headphones,1,150,04/13/19 11:29,"554 Park St, Dallas, TX 75001" +190761,ThinkPad Laptop,1,999.99,04/16/19 12:34,"400 Ridge St, San Francisco, CA 94016" +190762,Bose SoundSport Headphones,1,99.99,04/02/19 20:35,"328 Forest St, Seattle, WA 98101" +190763,Wired Headphones,1,11.99,04/29/19 17:56,"596 Adams St, Portland, OR 97035" +190764,ThinkPad Laptop,1,999.99,04/23/19 07:41,"732 11th St, New York City, NY 10001" +190765,AA Batteries (4-pack),1,3.84,04/01/19 11:24,"604 Johnson St, San Francisco, CA 94016" +190766,Apple Airpods Headphones,1,150,04/23/19 11:58,"898 8th St, New York City, NY 10001" +190767,iPhone,1,700,04/12/19 06:02,"656 1st St, Los Angeles, CA 90001" +190768,Bose SoundSport Headphones,1,99.99,04/26/19 15:44,"665 Adams St, New York City, NY 10001" +190769,27in FHD Monitor,1,149.99,04/19/19 08:24,"628 Sunset St, San Francisco, CA 94016" +190770,Bose SoundSport Headphones,1,99.99,04/20/19 18:28,"395 North St, Boston, MA 02215" +190771,AA Batteries (4-pack),1,3.84,04/20/19 16:10,"540 Hickory St, Atlanta, GA 30301" +190772,Lightning Charging Cable,1,14.95,04/01/19 08:21,"823 Wilson St, Los Angeles, CA 90001" +190773,Wired Headphones,1,11.99,04/30/19 20:13,"477 Sunset St, San Francisco, CA 94016" +190774,Wired Headphones,1,11.99,04/28/19 18:56,"773 Ridge St, Boston, MA 02215" +190775,AAA Batteries (4-pack),1,2.99,04/10/19 11:17,"697 13th St, San Francisco, CA 94016" +190776,Bose SoundSport Headphones,1,99.99,04/02/19 18:18,"963 Cherry St, Seattle, WA 98101" +190777,USB-C Charging Cable,1,11.95,04/22/19 11:21,"49 Ridge St, Los Angeles, CA 90001" +190778,AA Batteries (4-pack),1,3.84,04/25/19 10:59,"773 Walnut St, San Francisco, CA 94016" +190779,Lightning Charging Cable,1,14.95,04/01/19 20:59,"195 Jackson St, San Francisco, CA 94016" +190780,Google Phone,1,600,04/09/19 19:17,"155 2nd St, San Francisco, CA 94016" +190781,iPhone,1,700,04/21/19 17:33,"16 4th St, Dallas, TX 75001" +190782,AAA Batteries (4-pack),1,2.99,04/17/19 23:03,"96 14th St, Dallas, TX 75001" +190782,AAA Batteries (4-pack),1,2.99,04/17/19 23:03,"96 14th St, Dallas, TX 75001" +190783,Lightning Charging Cable,1,14.95,04/22/19 14:45,"599 9th St, Austin, TX 73301" +190784,AA Batteries (4-pack),1,3.84,04/30/19 18:26,"354 Park St, San Francisco, CA 94016" +190785,Bose SoundSport Headphones,1,99.99,04/04/19 07:25,"40 Chestnut St, Los Angeles, CA 90001" +190786,Lightning Charging Cable,1,14.95,04/23/19 12:26,"47 6th St, Dallas, TX 75001" +190787,Flatscreen TV,1,300,04/06/19 15:24,"721 Jackson St, San Francisco, CA 94016" +190788,AAA Batteries (4-pack),4,2.99,04/29/19 06:19,"964 8th St, Los Angeles, CA 90001" +190789,34in Ultrawide Monitor,1,379.99,04/16/19 12:12,"42 Ridge St, Boston, MA 02215" +190790,USB-C Charging Cable,1,11.95,04/18/19 16:28,"78 River St, New York City, NY 10001" +190791,Lightning Charging Cable,1,14.95,04/22/19 14:20,"672 Walnut St, Portland, OR 97035" +190792,27in FHD Monitor,1,149.99,04/29/19 17:33,"144 Maple St, San Francisco, CA 94016" +190793,USB-C Charging Cable,1,11.95,04/29/19 02:38,"622 Sunset St, Seattle, WA 98101" +190794,Lightning Charging Cable,2,14.95,04/27/19 17:55,"46 Dogwood St, Los Angeles, CA 90001" +190795,ThinkPad Laptop,1,999.99,04/01/19 23:19,"564 Washington St, Seattle, WA 98101" +190796,Macbook Pro Laptop,1,1700,04/06/19 15:35,"508 10th St, Boston, MA 02215" +190797,27in FHD Monitor,1,149.99,04/28/19 18:53,"530 Lakeview St, Atlanta, GA 30301" +190798,Lightning Charging Cable,1,14.95,04/01/19 12:10,"436 1st St, Boston, MA 02215" +190799,AA Batteries (4-pack),1,3.84,04/04/19 20:44,"95 14th St, Portland, OR 97035" +190800,iPhone,1,700,04/27/19 21:06,"112 Park St, Los Angeles, CA 90001" +190800,Wired Headphones,1,11.99,04/27/19 21:06,"112 Park St, Los Angeles, CA 90001" +190801,iPhone,1,700,04/17/19 19:45,"294 Highland St, San Francisco, CA 94016" +190802,USB-C Charging Cable,1,11.95,04/04/19 20:44,"322 Forest St, Portland, OR 97035" +190803,Wired Headphones,1,11.99,04/22/19 08:17,"793 Ridge St, Atlanta, GA 30301" +190804,34in Ultrawide Monitor,1,379.99,04/28/19 11:18,"52 Center St, San Francisco, CA 94016" +190805,27in FHD Monitor,1,149.99,04/16/19 15:32,"280 Washington St, San Francisco, CA 94016" +190806,34in Ultrawide Monitor,1,379.99,04/18/19 19:33,"158 Forest St, San Francisco, CA 94016" +190807,USB-C Charging Cable,2,11.95,04/08/19 10:35,"931 Ridge St, Boston, MA 02215" +190808,AAA Batteries (4-pack),1,2.99,04/28/19 18:53,"727 Center St, San Francisco, CA 94016" +190809,USB-C Charging Cable,1,11.95,04/25/19 15:53,"999 Hickory St, Boston, MA 02215" +190810,AAA Batteries (4-pack),1,2.99,04/14/19 10:07,"996 Ridge St, Dallas, TX 75001" +190811,Apple Airpods Headphones,1,150,04/19/19 17:40,"490 4th St, Portland, OR 97035" +190812,Bose SoundSport Headphones,1,99.99,04/11/19 12:37,"385 14th St, Atlanta, GA 30301" +190813,Lightning Charging Cable,1,14.95,04/03/19 23:02,"392 13th St, New York City, NY 10001" +190814,AA Batteries (4-pack),1,3.84,04/10/19 18:30,"658 Johnson St, Los Angeles, CA 90001" +190815,27in 4K Gaming Monitor,1,389.99,04/22/19 22:29,"528 Center St, Austin, TX 73301" +190816,USB-C Charging Cable,1,11.95,04/05/19 23:29,"984 Jackson St, Austin, TX 73301" +190817,Lightning Charging Cable,1,14.95,04/13/19 18:44,"75 Park St, San Francisco, CA 94016" +190818,AA Batteries (4-pack),2,3.84,04/10/19 16:27,"745 Ridge St, Seattle, WA 98101" +190819,AA Batteries (4-pack),1,3.84,04/20/19 18:53,"241 Hill St, San Francisco, CA 94016" +190820,Google Phone,1,600,04/07/19 11:58,"82 Jackson St, San Francisco, CA 94016" +190821,ThinkPad Laptop,1,999.99,04/02/19 00:10,"256 Main St, San Francisco, CA 94016" +190822,Flatscreen TV,1,300,04/03/19 03:33,"913 2nd St, Boston, MA 02215" +190823,Lightning Charging Cable,1,14.95,04/09/19 21:32,"989 Park St, Seattle, WA 98101" +190824,27in FHD Monitor,1,149.99,04/07/19 14:13,"711 Elm St, Atlanta, GA 30301" +190825,AAA Batteries (4-pack),2,2.99,04/03/19 15:35,"647 Wilson St, Los Angeles, CA 90001" +190826,iPhone,1,700,04/30/19 21:36,"962 Lakeview St, Austin, TX 73301" +190827,Wired Headphones,2,11.99,04/24/19 23:28,"936 10th St, Dallas, TX 75001" +190828,Google Phone,1,600,04/25/19 13:46,"669 5th St, Los Angeles, CA 90001" +190829,Google Phone,1,600,04/05/19 22:34,"658 Jackson St, San Francisco, CA 94016" +190830,USB-C Charging Cable,2,11.95,04/07/19 21:42,"141 Hickory St, Portland, OR 97035" +190831,Vareebadd Phone,1,400,04/16/19 16:30,"610 Cedar St, Portland, OR 97035" +190832,27in 4K Gaming Monitor,1,389.99,04/25/19 09:24,"28 Hickory St, New York City, NY 10001" +190833,27in 4K Gaming Monitor,1,389.99,04/22/19 16:05,"554 Maple St, San Francisco, CA 94016" +190834,27in FHD Monitor,1,149.99,04/25/19 16:45,"349 Willow St, Boston, MA 02215" +190835,Bose SoundSport Headphones,1,99.99,04/04/19 14:36,"873 7th St, Los Angeles, CA 90001" +190836,Google Phone,1,600,04/30/19 19:01,"92 5th St, Los Angeles, CA 90001" +190837,USB-C Charging Cable,1,11.95,04/04/19 09:08,"1 Hickory St, New York City, NY 10001" +190838,USB-C Charging Cable,1,11.95,04/13/19 22:39,"906 11th St, Austin, TX 73301" +190839,Lightning Charging Cable,1,14.95,04/02/19 13:21,"417 Center St, New York City, NY 10001" +190840,Wired Headphones,1,11.99,04/16/19 14:40,"220 5th St, San Francisco, CA 94016" +190841,Apple Airpods Headphones,1,150,04/07/19 17:02,"518 Washington St, Atlanta, GA 30301" +190842,AAA Batteries (4-pack),1,2.99,04/23/19 15:17,"547 Center St, Seattle, WA 98101" +190843,Apple Airpods Headphones,1,150,04/26/19 20:38,"643 Lakeview St, Dallas, TX 75001" +190844,Apple Airpods Headphones,1,150,04/15/19 09:34,"292 9th St, New York City, NY 10001" +190845,34in Ultrawide Monitor,1,379.99,04/18/19 06:21,"980 Lincoln St, San Francisco, CA 94016" +190846,AA Batteries (4-pack),2,3.84,04/18/19 10:43,"81 8th St, Seattle, WA 98101" +190847,27in 4K Gaming Monitor,1,389.99,04/03/19 22:08,"903 Maple St, San Francisco, CA 94016" +190848,AAA Batteries (4-pack),3,2.99,04/13/19 13:52,"236 Wilson St, San Francisco, CA 94016" +190849,Google Phone,1,600,04/23/19 19:32,"868 Chestnut St, Atlanta, GA 30301" +190850,Apple Airpods Headphones,1,150,04/19/19 20:29,"34 Johnson St, Los Angeles, CA 90001" +190851,Google Phone,1,600,04/19/19 11:49,"973 9th St, Los Angeles, CA 90001" +190852,Bose SoundSport Headphones,1,99.99,04/08/19 17:33,"60 Wilson St, Austin, TX 73301" +190853,USB-C Charging Cable,1,11.95,04/19/19 06:12,"952 Johnson St, Seattle, WA 98101" +190854,Google Phone,1,600,04/05/19 21:34,"206 Sunset St, San Francisco, CA 94016" +190855,AAA Batteries (4-pack),1,2.99,04/04/19 11:41,"529 8th St, San Francisco, CA 94016" +190856,AA Batteries (4-pack),1,3.84,04/11/19 22:15,"570 Pine St, Seattle, WA 98101" +190857,AAA Batteries (4-pack),3,2.99,04/04/19 17:02,"197 Meadow St, Los Angeles, CA 90001" +190858,AA Batteries (4-pack),1,3.84,04/20/19 21:43,"800 Park St, San Francisco, CA 94016" +190859,AA Batteries (4-pack),1,3.84,04/21/19 10:08,"731 Jefferson St, Seattle, WA 98101" +190860,Lightning Charging Cable,1,14.95,04/28/19 11:47,"692 5th St, Los Angeles, CA 90001" +190861,USB-C Charging Cable,1,11.95,04/22/19 13:15,"758 Pine St, New York City, NY 10001" +190862,Wired Headphones,1,11.99,04/02/19 23:19,"968 Main St, Seattle, WA 98101" +190863,USB-C Charging Cable,1,11.95,04/08/19 20:52,"601 Walnut St, San Francisco, CA 94016" +190864,Apple Airpods Headphones,1,150,04/13/19 17:16,"740 Main St, Atlanta, GA 30301" +190865,iPhone,1,700,04/05/19 10:07,"652 Park St, Boston, MA 02215" +190866,Wired Headphones,1,11.99,04/13/19 13:03,"582 12th St, Boston, MA 02215" +190867,AA Batteries (4-pack),1,3.84,04/05/19 20:00,"231 Maple St, Los Angeles, CA 90001" +190868,AAA Batteries (4-pack),1,2.99,04/14/19 21:39,"211 Walnut St, New York City, NY 10001" +190869,Wired Headphones,1,11.99,04/24/19 12:19,"877 Lake St, Atlanta, GA 30301" +190870,USB-C Charging Cable,1,11.95,04/30/19 14:51,"568 North St, Seattle, WA 98101" +190871,AAA Batteries (4-pack),1,2.99,04/28/19 07:22,"778 Highland St, San Francisco, CA 94016" +190872,Google Phone,1,600,04/10/19 10:35,"756 Ridge St, Austin, TX 73301" +190873,Lightning Charging Cable,1,14.95,04/14/19 15:08,"343 Maple St, Austin, TX 73301" +190874,34in Ultrawide Monitor,1,379.99,04/21/19 18:53,"104 Sunset St, Atlanta, GA 30301" +190875,Bose SoundSport Headphones,1,99.99,04/21/19 09:28,"127 West St, Atlanta, GA 30301" +190876,USB-C Charging Cable,1,11.95,04/20/19 23:47,"363 Main St, Boston, MA 02215" +190877,Google Phone,1,600,04/28/19 20:26,"442 13th St, Atlanta, GA 30301" +190877,USB-C Charging Cable,1,11.95,04/28/19 20:26,"442 13th St, Atlanta, GA 30301" +190878,Apple Airpods Headphones,1,150,04/06/19 17:34,"465 Sunset St, Portland, OR 97035" +190879,ThinkPad Laptop,1,999.99,04/14/19 20:14,"878 Chestnut St, Los Angeles, CA 90001" +190880,Bose SoundSport Headphones,1,99.99,04/21/19 13:02,"37 Walnut St, San Francisco, CA 94016" +190881,USB-C Charging Cable,1,11.95,04/27/19 17:50,"129 2nd St, New York City, NY 10001" +190882,Lightning Charging Cable,1,14.95,04/28/19 00:05,"176 1st St, Los Angeles, CA 90001" +190883,iPhone,1,700,04/21/19 23:14,"430 Dogwood St, Atlanta, GA 30301" +190884,Bose SoundSport Headphones,1,99.99,04/22/19 11:58,"64 10th St, Portland, OR 97035" +190885,34in Ultrawide Monitor,1,379.99,04/16/19 15:27,"236 North St, Los Angeles, CA 90001" +190886,27in FHD Monitor,1,149.99,04/24/19 17:05,"358 River St, Los Angeles, CA 90001" +190887,Wired Headphones,1,11.99,04/06/19 15:52,"818 1st St, San Francisco, CA 94016" +190888,AA Batteries (4-pack),5,3.84,04/02/19 22:34,"558 Park St, Los Angeles, CA 90001" +190889,AA Batteries (4-pack),1,3.84,04/29/19 19:57,"428 2nd St, Los Angeles, CA 90001" +190890,Lightning Charging Cable,1,14.95,04/12/19 20:08,"776 Main St, Boston, MA 02215" +190891,USB-C Charging Cable,1,11.95,04/08/19 19:45,"854 Pine St, Atlanta, GA 30301" +190892,USB-C Charging Cable,1,11.95,04/15/19 12:24,"49 Forest St, Los Angeles, CA 90001" +190893,AA Batteries (4-pack),1,3.84,04/21/19 12:56,"587 Chestnut St, New York City, NY 10001" +190894,Apple Airpods Headphones,1,150,04/02/19 10:17,"345 Madison St, Boston, MA 02215" +190895,AA Batteries (4-pack),3,3.84,04/02/19 09:43,"615 Center St, Atlanta, GA 30301" +190896,Lightning Charging Cable,1,14.95,04/29/19 09:09,"754 Maple St, Atlanta, GA 30301" +190897,Vareebadd Phone,1,400,04/17/19 10:03,"470 6th St, Dallas, TX 75001" +190898,AAA Batteries (4-pack),1,2.99,04/26/19 09:36,"800 Forest St, San Francisco, CA 94016" +190899,34in Ultrawide Monitor,1,379.99,04/06/19 16:00,"189 Lake St, San Francisco, CA 94016" +190900,USB-C Charging Cable,1,11.95,04/21/19 11:36,"84 Sunset St, New York City, NY 10001" +190901,ThinkPad Laptop,1,999.99,04/03/19 08:51,"243 5th St, Los Angeles, CA 90001" +190902,USB-C Charging Cable,1,11.95,04/18/19 18:09,"437 11th St, Boston, MA 02215" +190903,AA Batteries (4-pack),1,3.84,04/21/19 21:06,"192 Church St, Boston, MA 02215" +190904,iPhone,1,700,04/24/19 12:38,"763 Spruce St, San Francisco, CA 94016" +190905,Apple Airpods Headphones,1,150,04/28/19 21:35,"262 Spruce St, Seattle, WA 98101" +190906,iPhone,1,700,04/16/19 20:17,"794 Main St, Los Angeles, CA 90001" +190907,AA Batteries (4-pack),1,3.84,04/26/19 23:46,"395 Sunset St, Boston, MA 02215" +190908,Apple Airpods Headphones,1,150,04/03/19 05:56,"201 Jackson St, Austin, TX 73301" +190909,Lightning Charging Cable,2,14.95,04/17/19 19:25,"956 Center St, New York City, NY 10001" +190910,Apple Airpods Headphones,1,150,04/11/19 23:14,"355 Ridge St, San Francisco, CA 94016" +190911,AA Batteries (4-pack),1,3.84,04/26/19 21:53,"716 Cherry St, New York City, NY 10001" +190912,Macbook Pro Laptop,1,1700,04/17/19 11:19,"331 Cherry St, San Francisco, CA 94016" +190913,27in 4K Gaming Monitor,1,389.99,04/23/19 15:25,"922 6th St, Austin, TX 73301" +190914,iPhone,1,700,04/29/19 16:12,"256 7th St, New York City, NY 10001" +190915,Google Phone,1,600,04/13/19 00:06,"526 Washington St, Dallas, TX 75001" +190916,Bose SoundSport Headphones,1,99.99,04/04/19 17:21,"773 1st St, Atlanta, GA 30301" +190917,AA Batteries (4-pack),1,3.84,04/23/19 12:59,"98 Forest St, Austin, TX 73301" +190918,AA Batteries (4-pack),2,3.84,04/03/19 10:27,"923 9th St, Austin, TX 73301" +190919,AAA Batteries (4-pack),4,2.99,04/13/19 19:19,"170 Walnut St, San Francisco, CA 94016" +190920,AA Batteries (4-pack),1,3.84,04/25/19 22:47,"979 Pine St, San Francisco, CA 94016" +190921,Apple Airpods Headphones,1,150,04/22/19 20:56,"929 Main St, Seattle, WA 98101" +190922,Bose SoundSport Headphones,1,99.99,04/10/19 18:28,"249 1st St, Seattle, WA 98101" +190923,AAA Batteries (4-pack),5,2.99,04/21/19 09:16,"468 9th St, San Francisco, CA 94016" +190924,AA Batteries (4-pack),1,3.84,04/12/19 22:12,"15 Hill St, New York City, NY 10001" +190925,AAA Batteries (4-pack),1,2.99,04/15/19 06:33,"548 Jefferson St, Los Angeles, CA 90001" +190926,Vareebadd Phone,1,400,04/18/19 11:21,"795 Adams St, New York City, NY 10001" +190927,Wired Headphones,1,11.99,04/27/19 14:10,"433 11th St, Boston, MA 02215" +190928,20in Monitor,1,109.99,04/29/19 11:34,"550 Center St, Los Angeles, CA 90001" +190929,USB-C Charging Cable,2,11.95,04/29/19 11:35,"103 13th St, New York City, NY 10001" +190930,USB-C Charging Cable,1,11.95,04/09/19 10:08,"482 Cherry St, Seattle, WA 98101" +190931,27in 4K Gaming Monitor,1,389.99,04/19/19 09:39,"309 11th St, Portland, OR 97035" +190932,AA Batteries (4-pack),1,3.84,04/03/19 20:31,"211 11th St, Los Angeles, CA 90001" +190933,AA Batteries (4-pack),2,3.84,04/29/19 11:54,"669 Johnson St, New York City, NY 10001" +190934,LG Washing Machine,1,600.0,04/25/19 16:18,"119 Elm St, San Francisco, CA 94016" +190935,AA Batteries (4-pack),3,3.84,04/22/19 17:35,"940 Hill St, San Francisco, CA 94016" +190936,USB-C Charging Cable,1,11.95,04/09/19 14:57,"93 Sunset St, New York City, NY 10001" +190937,ThinkPad Laptop,1,999.99,04/27/19 16:20,"911 9th St, Los Angeles, CA 90001" +190938,Lightning Charging Cable,1,14.95,04/25/19 16:02,"340 Hickory St, New York City, NY 10001" +190939,Apple Airpods Headphones,1,150,04/04/19 08:55,"111 Lincoln St, Austin, TX 73301" +190940,27in 4K Gaming Monitor,1,389.99,04/14/19 19:30,"459 2nd St, New York City, NY 10001" +190941,AA Batteries (4-pack),1,3.84,04/04/19 18:40,"769 Chestnut St, Dallas, TX 75001" +190942,AAA Batteries (4-pack),3,2.99,04/10/19 14:13,"407 Wilson St, Boston, MA 02215" +190943,Lightning Charging Cable,1,14.95,04/29/19 11:43,"964 Ridge St, New York City, NY 10001" +190944,Lightning Charging Cable,1,14.95,04/05/19 11:15,"261 Lake St, Atlanta, GA 30301" +190945,Bose SoundSport Headphones,1,99.99,04/27/19 09:11,"340 Jefferson St, Seattle, WA 98101" +190945,Wired Headphones,1,11.99,04/27/19 09:11,"340 Jefferson St, Seattle, WA 98101" +190946,Google Phone,1,600,04/22/19 17:18,"437 Johnson St, New York City, NY 10001" +190947,27in 4K Gaming Monitor,1,389.99,04/03/19 01:10,"605 10th St, San Francisco, CA 94016" +190948,AA Batteries (4-pack),1,3.84,04/01/19 14:31,"763 Ridge St, Seattle, WA 98101" +190949,27in FHD Monitor,1,149.99,04/29/19 00:12,"173 Chestnut St, Seattle, WA 98101" +190950,USB-C Charging Cable,1,11.95,04/25/19 13:29,"875 5th St, Seattle, WA 98101" +190951,Apple Airpods Headphones,1,150,04/27/19 18:43,"684 South St, San Francisco, CA 94016" +190952,AA Batteries (4-pack),1,3.84,04/15/19 12:57,"885 Wilson St, Austin, TX 73301" +190953,USB-C Charging Cable,1,11.95,04/20/19 09:43,"703 12th St, Atlanta, GA 30301" +190954,iPhone,1,700,04/27/19 21:02,"356 8th St, Los Angeles, CA 90001" +190954,AA Batteries (4-pack),1,3.84,04/27/19 21:02,"356 8th St, Los Angeles, CA 90001" +190955,LG Dryer,1,600.0,04/17/19 15:00,"716 Pine St, Dallas, TX 75001" +190956,iPhone,1,700,04/30/19 14:35,"792 Jackson St, Dallas, TX 75001" +190957,Bose SoundSport Headphones,1,99.99,04/24/19 15:57,"551 Elm St, Seattle, WA 98101" +190958,Lightning Charging Cable,2,14.95,04/14/19 00:31,"325 Main St, San Francisco, CA 94016" +190959,Lightning Charging Cable,1,14.95,04/15/19 18:47,"507 Johnson St, San Francisco, CA 94016" +190960,Apple Airpods Headphones,1,150,04/09/19 12:35,"104 9th St, Austin, TX 73301" +190961,34in Ultrawide Monitor,1,379.99,04/14/19 11:43,"908 6th St, New York City, NY 10001" +190962,Wired Headphones,1,11.99,04/25/19 10:48,"512 Cedar St, Seattle, WA 98101" +190963,27in 4K Gaming Monitor,1,389.99,04/18/19 17:20,"63 Chestnut St, Portland, OR 97035" +190964,27in FHD Monitor,1,149.99,04/25/19 09:23,"513 South St, San Francisco, CA 94016" +190965,Lightning Charging Cable,1,14.95,04/14/19 15:39,"321 Cedar St, San Francisco, CA 94016" +190966,Macbook Pro Laptop,1,1700,04/04/19 12:55,"215 8th St, San Francisco, CA 94016" +190967,Lightning Charging Cable,2,14.95,04/03/19 18:05,"6 Wilson St, Seattle, WA 98101" +190968,Wired Headphones,1,11.99,04/08/19 19:53,"640 South St, New York City, NY 10001" +190969,USB-C Charging Cable,1,11.95,04/21/19 14:20,"11 8th St, San Francisco, CA 94016" +190970,AAA Batteries (4-pack),1,2.99,04/30/19 02:47,"870 Washington St, New York City, NY 10001" +190971,AAA Batteries (4-pack),1,2.99,04/28/19 20:03,"799 Johnson St, Boston, MA 02215" +190972,Wired Headphones,1,11.99,04/24/19 11:54,"517 11th St, New York City, NY 10001" +190973,27in 4K Gaming Monitor,1,389.99,04/14/19 10:22,"523 Chestnut St, San Francisco, CA 94016" +190974,USB-C Charging Cable,1,11.95,04/19/19 15:12,"2 River St, San Francisco, CA 94016" +190975,Wired Headphones,1,11.99,04/19/19 19:55,"995 Church St, New York City, NY 10001" +190976,34in Ultrawide Monitor,1,379.99,04/26/19 06:39,"685 Elm St, San Francisco, CA 94016" +190977,Lightning Charging Cable,1,14.95,04/11/19 00:35,"149 6th St, New York City, NY 10001" +190978,ThinkPad Laptop,1,999.99,04/20/19 10:45,"721 14th St, Los Angeles, CA 90001" +190979,Vareebadd Phone,1,400,04/07/19 23:00,"174 Hill St, Los Angeles, CA 90001" +190980,AA Batteries (4-pack),1,3.84,04/30/19 17:21,"157 Jackson St, Seattle, WA 98101" +190981,Vareebadd Phone,1,400,04/03/19 18:09,"229 Johnson St, Portland, ME 04101" +190982,Bose SoundSport Headphones,1,99.99,04/10/19 16:39,"973 7th St, San Francisco, CA 94016" +190983,Google Phone,1,600,04/30/19 16:04,"951 Spruce St, Austin, TX 73301" +190984,AAA Batteries (4-pack),2,2.99,04/29/19 06:01,"945 Elm St, San Francisco, CA 94016" +190985,AA Batteries (4-pack),1,3.84,04/05/19 12:51,"245 South St, Portland, OR 97035" +190986,Macbook Pro Laptop,1,1700,04/08/19 05:50,"759 12th St, Los Angeles, CA 90001" +190987,Google Phone,1,600,04/20/19 18:35,"767 Maple St, Atlanta, GA 30301" +190987,USB-C Charging Cable,1,11.95,04/20/19 18:35,"767 Maple St, Atlanta, GA 30301" +190987,Google Phone,1,600,04/20/19 18:35,"767 Maple St, Atlanta, GA 30301" +190988,34in Ultrawide Monitor,1,379.99,04/10/19 11:23,"742 Highland St, Los Angeles, CA 90001" +190989,Wired Headphones,1,11.99,04/17/19 09:18,"285 River St, New York City, NY 10001" +190990,AA Batteries (4-pack),2,3.84,04/18/19 06:05,"118 Hickory St, San Francisco, CA 94016" +190991,Lightning Charging Cable,1,14.95,04/29/19 20:06,"975 Elm St, Seattle, WA 98101" +190992,27in 4K Gaming Monitor,1,389.99,04/12/19 13:33,"179 Pine St, Boston, MA 02215" +190993,AA Batteries (4-pack),4,3.84,04/12/19 07:48,"380 12th St, San Francisco, CA 94016" +190994,34in Ultrawide Monitor,1,379.99,04/14/19 15:37,"634 Wilson St, Boston, MA 02215" +190995,USB-C Charging Cable,1,11.95,04/18/19 16:19,"762 Cedar St, San Francisco, CA 94016" +190996,USB-C Charging Cable,1,11.95,04/13/19 22:34,"348 Cedar St, New York City, NY 10001" +190997,Apple Airpods Headphones,1,150,04/02/19 18:51,"673 Cedar St, New York City, NY 10001" +190998,Bose SoundSport Headphones,1,99.99,04/23/19 18:17,"27 6th St, Atlanta, GA 30301" +190999,AA Batteries (4-pack),1,3.84,04/09/19 22:16,"778 Sunset St, Portland, OR 97035" +191000,AA Batteries (4-pack),1,3.84,04/29/19 20:15,"323 4th St, Boston, MA 02215" +191001,USB-C Charging Cable,1,11.95,04/13/19 09:04,"408 Church St, San Francisco, CA 94016" +191001,Flatscreen TV,1,300,04/13/19 09:04,"408 Church St, San Francisco, CA 94016" +191002,Wired Headphones,1,11.99,04/24/19 08:51,"38 8th St, Boston, MA 02215" +191003,Apple Airpods Headphones,1,150,04/21/19 18:23,"747 Spruce St, Dallas, TX 75001" +191004,AAA Batteries (4-pack),1,2.99,04/26/19 18:39,"283 Pine St, Dallas, TX 75001" +191005,Apple Airpods Headphones,1,150,04/19/19 16:11,"224 10th St, Los Angeles, CA 90001" +191006,27in 4K Gaming Monitor,1,389.99,04/26/19 11:12,"251 9th St, San Francisco, CA 94016" +191007,USB-C Charging Cable,1,11.95,04/18/19 18:46,"668 14th St, Los Angeles, CA 90001" +191008,Wired Headphones,1,11.99,04/20/19 09:53,"109 Church St, Portland, OR 97035" +191009,USB-C Charging Cable,1,11.95,04/21/19 09:29,"877 Walnut St, Los Angeles, CA 90001" +191010,Lightning Charging Cable,1,14.95,04/18/19 02:24,"55 Chestnut St, Seattle, WA 98101" +191011,AAA Batteries (4-pack),1,2.99,04/05/19 22:06,"582 Ridge St, San Francisco, CA 94016" +191012,Apple Airpods Headphones,1,150,04/12/19 20:25,"679 Meadow St, Boston, MA 02215" +191013,ThinkPad Laptop,1,999.99,04/28/19 18:09,"79 Center St, San Francisco, CA 94016" +191014,Wired Headphones,1,11.99,04/29/19 14:24,"724 9th St, Seattle, WA 98101" +191015,Flatscreen TV,1,300,04/22/19 17:07,"928 7th St, San Francisco, CA 94016" +191016,Macbook Pro Laptop,1,1700,04/29/19 21:25,"123 Cherry St, Portland, ME 04101" +191017,Lightning Charging Cable,1,14.95,04/18/19 11:37,"592 6th St, New York City, NY 10001" +191018,Lightning Charging Cable,1,14.95,04/24/19 10:25,"40 South St, Portland, OR 97035" +191019,USB-C Charging Cable,1,11.95,04/05/19 22:41,"56 Washington St, San Francisco, CA 94016" +191020,Flatscreen TV,1,300,04/29/19 21:46,"439 Ridge St, San Francisco, CA 94016" +191021,ThinkPad Laptop,1,999.99,04/26/19 07:52,"703 11th St, Los Angeles, CA 90001" +191022,iPhone,1,700,04/30/19 12:45,"39 14th St, Austin, TX 73301" +191022,Lightning Charging Cable,1,14.95,04/30/19 12:45,"39 14th St, Austin, TX 73301" +191023,Apple Airpods Headphones,1,150,04/19/19 08:04,"332 7th St, New York City, NY 10001" +191024,Wired Headphones,1,11.99,04/22/19 18:50,"984 10th St, Dallas, TX 75001" +191025,Macbook Pro Laptop,1,1700,04/04/19 19:10,"816 Pine St, Dallas, TX 75001" +191026,Wired Headphones,1,11.99,04/30/19 12:35,"196 12th St, San Francisco, CA 94016" +191027,Lightning Charging Cable,1,14.95,04/17/19 19:00,"274 10th St, Seattle, WA 98101" +191028,Apple Airpods Headphones,1,150,04/13/19 18:28,"921 Cedar St, Boston, MA 02215" +191029,27in FHD Monitor,1,149.99,04/06/19 11:23,"309 Park St, San Francisco, CA 94016" +191030,Wired Headphones,1,11.99,04/16/19 09:40,"199 River St, Seattle, WA 98101" +191031,Google Phone,1,600,04/19/19 10:58,"979 Sunset St, Seattle, WA 98101" +191031,USB-C Charging Cable,1,11.95,04/19/19 10:58,"979 Sunset St, Seattle, WA 98101" +191032,Vareebadd Phone,1,400,04/19/19 09:04,"345 7th St, Dallas, TX 75001" +191033,Wired Headphones,2,11.99,04/21/19 16:57,"499 Ridge St, Los Angeles, CA 90001" +191034,Lightning Charging Cable,1,14.95,04/07/19 13:16,"197 Adams St, New York City, NY 10001" +191034,Lightning Charging Cable,1,14.95,04/07/19 13:16,"197 Adams St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +191035,ThinkPad Laptop,1,999.99,04/01/19 09:27,"687 Lake St, Austin, TX 73301" +191036,USB-C Charging Cable,2,11.95,04/18/19 08:51,"692 Hill St, Los Angeles, CA 90001" +191037,Apple Airpods Headphones,1,150,04/30/19 21:17,"748 South St, Atlanta, GA 30301" +191038,Apple Airpods Headphones,1,150,04/28/19 11:43,"559 Willow St, Dallas, TX 75001" +191039,USB-C Charging Cable,1,11.95,04/28/19 04:07,"702 Walnut St, Austin, TX 73301" +191040,Macbook Pro Laptop,1,1700,04/12/19 02:14,"495 10th St, New York City, NY 10001" +191041,AAA Batteries (4-pack),1,2.99,04/26/19 09:35,"911 Maple St, San Francisco, CA 94016" +191042,Bose SoundSport Headphones,1,99.99,04/04/19 10:54,"115 Cedar St, Boston, MA 02215" +191043,USB-C Charging Cable,1,11.95,04/09/19 14:22,"935 Ridge St, Portland, OR 97035" +191044,AA Batteries (4-pack),1,3.84,04/02/19 19:06,"260 Jefferson St, New York City, NY 10001" +191045,Macbook Pro Laptop,1,1700,04/11/19 15:47,"49 Meadow St, San Francisco, CA 94016" +191046,USB-C Charging Cable,1,11.95,04/28/19 13:05,"880 Lake St, Austin, TX 73301" +191047,AAA Batteries (4-pack),1,2.99,04/02/19 22:43,"300 Sunset St, Dallas, TX 75001" +191048,AA Batteries (4-pack),1,3.84,04/07/19 19:21,"221 Jackson St, Atlanta, GA 30301" +191049,AAA Batteries (4-pack),1,2.99,04/23/19 06:38,"531 Maple St, New York City, NY 10001" +191050,Apple Airpods Headphones,1,150,04/23/19 10:14,"988 West St, Portland, OR 97035" +191051,AAA Batteries (4-pack),1,2.99,04/29/19 20:12,"706 River St, Boston, MA 02215" +191052,Lightning Charging Cable,1,14.95,04/14/19 20:20,"568 Lake St, Los Angeles, CA 90001" +191053,AA Batteries (4-pack),1,3.84,04/30/19 10:55,"593 Madison St, Dallas, TX 75001" +191054,AA Batteries (4-pack),1,3.84,04/22/19 20:51,"676 Park St, Austin, TX 73301" +191055,Apple Airpods Headphones,1,150,04/29/19 10:32,"966 Forest St, Austin, TX 73301" +191056,ThinkPad Laptop,1,999.99,04/12/19 22:30,"920 Sunset St, Seattle, WA 98101" +191057,34in Ultrawide Monitor,1,379.99,04/20/19 16:34,"49 Willow St, San Francisco, CA 94016" +191058,Wired Headphones,1,11.99,04/08/19 22:36,"202 Hill St, New York City, NY 10001" +191059,AA Batteries (4-pack),1,3.84,04/27/19 19:06,"836 Forest St, San Francisco, CA 94016" +191060,Apple Airpods Headphones,1,150,04/08/19 09:02,"835 Spruce St, San Francisco, CA 94016" +191061,LG Dryer,1,600.0,04/04/19 12:14,"538 Center St, Boston, MA 02215" +191062,Apple Airpods Headphones,1,150,04/08/19 11:51,"205 1st St, Los Angeles, CA 90001" +191063,Lightning Charging Cable,1,14.95,04/27/19 19:49,"509 Lincoln St, San Francisco, CA 94016" +191064,Wired Headphones,1,11.99,04/07/19 08:56,"805 Jackson St, Seattle, WA 98101" +191065,Wired Headphones,1,11.99,04/06/19 23:22,"172 Johnson St, New York City, NY 10001" +191066,Wired Headphones,1,11.99,04/07/19 01:42,"299 South St, Dallas, TX 75001" +191067,27in FHD Monitor,1,149.99,04/02/19 22:06,"290 Jackson St, Seattle, WA 98101" +191068,20in Monitor,1,109.99,04/14/19 17:31,"734 Lake St, San Francisco, CA 94016" +191069,Wired Headphones,1,11.99,04/01/19 15:39,"315 1st St, San Francisco, CA 94016" +191070,AAA Batteries (4-pack),2,2.99,04/07/19 12:53,"78 Lake St, Dallas, TX 75001" +191071,ThinkPad Laptop,1,999.99,04/20/19 00:11,"131 Ridge St, Los Angeles, CA 90001" +191072,AA Batteries (4-pack),1,3.84,04/25/19 14:06,"641 South St, San Francisco, CA 94016" +191073,Bose SoundSport Headphones,1,99.99,04/12/19 08:23,"921 North St, Portland, OR 97035" +191074,Wired Headphones,1,11.99,04/18/19 06:42,"46 Jackson St, Atlanta, GA 30301" +191075,USB-C Charging Cable,1,11.95,04/06/19 11:54,"584 Forest St, Los Angeles, CA 90001" +191076,AAA Batteries (4-pack),2,2.99,04/09/19 19:55,"531 Center St, Portland, OR 97035" +191077,Wired Headphones,1,11.99,04/06/19 22:22,"98 Chestnut St, San Francisco, CA 94016" +191078,AAA Batteries (4-pack),1,2.99,04/21/19 19:37,"724 Jefferson St, Seattle, WA 98101" +191079,USB-C Charging Cable,1,11.95,04/03/19 21:53,"943 Highland St, Austin, TX 73301" +191080,USB-C Charging Cable,1,11.95,04/26/19 07:09,"207 Center St, Portland, OR 97035" +191080,Wired Headphones,1,11.99,04/26/19 07:09,"207 Center St, Portland, OR 97035" +191081,Lightning Charging Cable,1,14.95,04/20/19 14:47,"623 South St, Boston, MA 02215" +191082,ThinkPad Laptop,1,999.99,04/06/19 18:21,"769 Main St, Los Angeles, CA 90001" +191083,Bose SoundSport Headphones,1,99.99,04/02/19 19:58,"438 Highland St, Austin, TX 73301" +191084,Apple Airpods Headphones,1,150,04/14/19 18:54,"847 Cedar St, Seattle, WA 98101" +191085,AA Batteries (4-pack),1,3.84,04/19/19 23:39,"545 Spruce St, New York City, NY 10001" +191086,USB-C Charging Cable,1,11.95,04/25/19 16:43,"548 Washington St, Los Angeles, CA 90001" +191087,Wired Headphones,1,11.99,04/17/19 18:48,"208 Church St, Dallas, TX 75001" +191088,AA Batteries (4-pack),1,3.84,04/27/19 14:15,"11 South St, New York City, NY 10001" +191089,20in Monitor,1,109.99,04/30/19 21:07,"198 2nd St, Seattle, WA 98101" +191090,27in 4K Gaming Monitor,1,389.99,04/08/19 18:57,"745 1st St, Dallas, TX 75001" +191091,iPhone,1,700,04/10/19 09:52,"959 Willow St, Atlanta, GA 30301" +191092,Wired Headphones,1,11.99,04/11/19 15:06,"374 12th St, San Francisco, CA 94016" +191093,USB-C Charging Cable,1,11.95,04/24/19 07:30,"145 North St, San Francisco, CA 94016" +191094,AA Batteries (4-pack),1,3.84,04/03/19 16:36,"423 Hickory St, San Francisco, CA 94016" +191095,Wired Headphones,1,11.99,04/28/19 13:31,"414 Willow St, Portland, OR 97035" +191096,Vareebadd Phone,1,400,04/01/19 13:21,"976 Willow St, Dallas, TX 75001" +191097,Lightning Charging Cable,2,14.95,04/09/19 12:02,"23 Jefferson St, Boston, MA 02215" +191098,Wired Headphones,1,11.99,04/14/19 19:53,"483 Hill St, Los Angeles, CA 90001" +191099,Wired Headphones,1,11.99,04/10/19 20:28,"56 Johnson St, Los Angeles, CA 90001" +191100,Bose SoundSport Headphones,1,99.99,04/15/19 08:07,"136 Dogwood St, Los Angeles, CA 90001" +191101,Wired Headphones,1,11.99,04/20/19 12:43,"619 Dogwood St, New York City, NY 10001" +191102,Bose SoundSport Headphones,1,99.99,04/17/19 17:47,"995 10th St, Los Angeles, CA 90001" +191103,AA Batteries (4-pack),1,3.84,04/23/19 16:53,"321 7th St, Dallas, TX 75001" +191104,Google Phone,1,600,04/26/19 03:31,"738 Park St, Boston, MA 02215" +191105,27in 4K Gaming Monitor,1,389.99,04/13/19 06:15,"613 Ridge St, Dallas, TX 75001" +191106,USB-C Charging Cable,1,11.95,04/17/19 08:41,"667 10th St, Austin, TX 73301" +191107,Flatscreen TV,1,300,04/03/19 15:04,"779 Elm St, New York City, NY 10001" +191108,AAA Batteries (4-pack),1,2.99,04/10/19 12:16,"994 Meadow St, San Francisco, CA 94016" +191109,Lightning Charging Cable,1,14.95,04/30/19 17:43,"898 South St, Seattle, WA 98101" +191110,Lightning Charging Cable,1,14.95,04/27/19 18:45,"609 Madison St, Seattle, WA 98101" +191111,Flatscreen TV,1,300,04/12/19 15:25,"211 West St, Boston, MA 02215" +191112,Apple Airpods Headphones,1,150,04/01/19 19:22,"683 Lake St, Los Angeles, CA 90001" +191113,Wired Headphones,2,11.99,04/25/19 21:56,"647 North St, Atlanta, GA 30301" +191113,USB-C Charging Cable,1,11.95,04/25/19 21:56,"647 North St, Atlanta, GA 30301" +191114,Google Phone,1,600,04/14/19 07:51,"197 Spruce St, Austin, TX 73301" +191115,27in FHD Monitor,1,149.99,04/14/19 19:55,"167 4th St, San Francisco, CA 94016" +191116,Apple Airpods Headphones,1,150,04/19/19 11:11,"632 11th St, San Francisco, CA 94016" +191117,Vareebadd Phone,1,400,04/28/19 12:47,"555 Walnut St, Boston, MA 02215" +191118,Google Phone,1,600,04/02/19 10:54,"295 12th St, Portland, ME 04101" +191119,USB-C Charging Cable,1,11.95,04/06/19 21:40,"927 West St, Los Angeles, CA 90001" +191120,iPhone,1,700,04/27/19 20:35,"977 Washington St, Boston, MA 02215" +191121,Apple Airpods Headphones,1,150,04/10/19 15:20,"447 Elm St, Los Angeles, CA 90001" +191122,Lightning Charging Cable,1,14.95,04/22/19 10:27,"879 Willow St, San Francisco, CA 94016" +191123,Wired Headphones,1,11.99,04/10/19 16:14,"987 Forest St, Dallas, TX 75001" +191124,Macbook Pro Laptop,1,1700,04/25/19 18:34,"828 Church St, San Francisco, CA 94016" +191125,20in Monitor,1,109.99,04/28/19 13:52,"74 Hickory St, San Francisco, CA 94016" +191126,Lightning Charging Cable,1,14.95,04/10/19 23:41,"87 Wilson St, Los Angeles, CA 90001" +191127,Wired Headphones,1,11.99,04/07/19 16:45,"645 Pine St, Boston, MA 02215" +191128,Wired Headphones,1,11.99,04/15/19 18:50,"718 West St, Portland, OR 97035" +191129,Lightning Charging Cable,1,14.95,04/10/19 09:56,"564 11th St, Los Angeles, CA 90001" +191130,USB-C Charging Cable,1,11.95,04/18/19 18:59,"838 1st St, New York City, NY 10001" +191131,Lightning Charging Cable,1,14.95,04/05/19 10:14,"403 River St, San Francisco, CA 94016" +191132,AAA Batteries (4-pack),1,2.99,04/16/19 19:08,"40 Lincoln St, Boston, MA 02215" +191133,iPhone,1,700,04/19/19 22:09,"360 Main St, Austin, TX 73301" +191134,Bose SoundSport Headphones,1,99.99,04/04/19 23:45,"138 Dogwood St, San Francisco, CA 94016" +191135,Google Phone,1,600,04/15/19 15:28,"906 Highland St, Atlanta, GA 30301" +191136,27in FHD Monitor,1,149.99,04/25/19 08:45,"369 Church St, Austin, TX 73301" +191137,Vareebadd Phone,1,400,04/23/19 14:17,"141 North St, Boston, MA 02215" +191138,USB-C Charging Cable,1,11.95,04/27/19 12:22,"131 Lakeview St, San Francisco, CA 94016" +191139,Bose SoundSport Headphones,1,99.99,04/19/19 23:03,"695 Center St, San Francisco, CA 94016" +191140,27in 4K Gaming Monitor,1,389.99,04/09/19 17:41,"566 6th St, New York City, NY 10001" +191141,Apple Airpods Headphones,1,150,04/16/19 22:01,"800 Spruce St, San Francisco, CA 94016" +191142,27in FHD Monitor,1,149.99,04/08/19 22:39,"545 11th St, New York City, NY 10001" +191143,USB-C Charging Cable,1,11.95,04/15/19 09:42,"204 Hill St, New York City, NY 10001" +191144,Wired Headphones,1,11.99,04/01/19 23:49,"126 14th St, New York City, NY 10001" +191145,USB-C Charging Cable,1,11.95,04/30/19 00:55,"864 12th St, Portland, OR 97035" +191146,USB-C Charging Cable,1,11.95,04/10/19 19:40,"473 Elm St, Dallas, TX 75001" +191147,iPhone,1,700,04/30/19 17:45,"70 South St, Dallas, TX 75001" +191148,Bose SoundSport Headphones,1,99.99,04/03/19 21:05,"541 5th St, San Francisco, CA 94016" +191149,Wired Headphones,1,11.99,04/20/19 11:50,"915 Johnson St, Dallas, TX 75001" +191150,27in FHD Monitor,1,149.99,04/10/19 09:05,"98 Lake St, Austin, TX 73301" +191151,USB-C Charging Cable,1,11.95,04/02/19 22:40,"799 6th St, Atlanta, GA 30301" +191151,Apple Airpods Headphones,1,150,04/02/19 22:40,"799 6th St, Atlanta, GA 30301" +191152,Lightning Charging Cable,1,14.95,04/03/19 17:50,"593 Hill St, Los Angeles, CA 90001" +191153,Apple Airpods Headphones,1,150,04/12/19 12:06,"762 Cherry St, Portland, OR 97035" +191154,AAA Batteries (4-pack),3,2.99,04/24/19 13:06,"380 13th St, San Francisco, CA 94016" +191155,Wired Headphones,1,11.99,04/23/19 07:52,"717 10th St, San Francisco, CA 94016" +191156,27in FHD Monitor,1,149.99,04/19/19 21:25,"720 Church St, Dallas, TX 75001" +191157,AA Batteries (4-pack),2,3.84,04/13/19 10:02,"46 Wilson St, Atlanta, GA 30301" +191158,USB-C Charging Cable,1,11.95,04/25/19 23:04,"355 North St, Los Angeles, CA 90001" +191159,AAA Batteries (4-pack),2,2.99,04/03/19 08:21,"775 6th St, Atlanta, GA 30301" +191160,34in Ultrawide Monitor,1,379.99,04/21/19 23:42,"731 14th St, San Francisco, CA 94016" +191161,34in Ultrawide Monitor,1,379.99,04/23/19 21:21,"597 13th St, Dallas, TX 75001" +191162,20in Monitor,1,109.99,04/05/19 15:44,"681 Lincoln St, Austin, TX 73301" +191163,Apple Airpods Headphones,1,150,04/20/19 19:31,"662 9th St, Dallas, TX 75001" +191164,ThinkPad Laptop,1,999.99,04/20/19 21:03,"455 Church St, San Francisco, CA 94016" +191165,AA Batteries (4-pack),1,3.84,04/08/19 09:51,"83 Hickory St, Boston, MA 02215" +191166,iPhone,1,700,04/22/19 12:22,"809 Park St, Boston, MA 02215" +191167,Wired Headphones,1,11.99,04/30/19 20:15,"603 Spruce St, Los Angeles, CA 90001" +191168,34in Ultrawide Monitor,1,379.99,04/18/19 10:38,"892 Johnson St, New York City, NY 10001" +191169,USB-C Charging Cable,1,11.95,04/05/19 09:33,"670 Main St, New York City, NY 10001" +191170,AAA Batteries (4-pack),1,2.99,04/20/19 12:59,"172 South St, Boston, MA 02215" +191171,Flatscreen TV,1,300,04/02/19 08:15,"726 Washington St, Boston, MA 02215" +191172,Google Phone,1,600,04/18/19 12:12,"236 Adams St, Portland, ME 04101" +191173,AA Batteries (4-pack),1,3.84,04/25/19 10:45,"722 Johnson St, Austin, TX 73301" +191174,20in Monitor,1,109.99,04/20/19 09:56,"349 Lakeview St, Seattle, WA 98101" +191175,AA Batteries (4-pack),2,3.84,04/03/19 14:53,"718 Center St, Austin, TX 73301" +191176,27in FHD Monitor,1,149.99,04/26/19 18:40,"218 10th St, San Francisco, CA 94016" +191177,Lightning Charging Cable,1,14.95,04/07/19 11:45,"107 Church St, Dallas, TX 75001" +191178,20in Monitor,1,109.99,04/26/19 22:11,"521 Dogwood St, San Francisco, CA 94016" +191179,Flatscreen TV,1,300,04/23/19 20:22,"849 Elm St, San Francisco, CA 94016" +191180,Apple Airpods Headphones,1,150,04/06/19 22:56,"137 Washington St, New York City, NY 10001" +191181,Bose SoundSport Headphones,1,99.99,04/09/19 23:18,"700 1st St, New York City, NY 10001" +191182,AAA Batteries (4-pack),1,2.99,04/08/19 17:22,"841 Lincoln St, Los Angeles, CA 90001" +191183,AA Batteries (4-pack),1,3.84,04/18/19 23:19,"340 Main St, San Francisco, CA 94016" +191184,USB-C Charging Cable,1,11.95,04/15/19 19:28,"347 Lake St, Seattle, WA 98101" +191185,34in Ultrawide Monitor,1,379.99,04/30/19 22:05,"74 8th St, San Francisco, CA 94016" +191186,Lightning Charging Cable,1,14.95,04/08/19 18:41,"853 Forest St, Seattle, WA 98101" +191187,AAA Batteries (4-pack),2,2.99,04/07/19 01:38,"542 11th St, Boston, MA 02215" +191188,Apple Airpods Headphones,1,150,04/24/19 12:33,"867 Hill St, San Francisco, CA 94016" +191189,AA Batteries (4-pack),3,3.84,04/12/19 22:33,"998 Church St, Austin, TX 73301" +191190,AA Batteries (4-pack),1,3.84,04/03/19 05:05,"529 Forest St, Boston, MA 02215" +191191,27in 4K Gaming Monitor,1,389.99,04/22/19 11:26,"523 13th St, Austin, TX 73301" +191192,ThinkPad Laptop,1,999.99,04/19/19 20:22,"596 Lake St, Atlanta, GA 30301" +191193,USB-C Charging Cable,2,11.95,04/02/19 18:25,"46 10th St, Los Angeles, CA 90001" +191194,AA Batteries (4-pack),1,3.84,04/30/19 09:41,"869 Center St, Atlanta, GA 30301" +191195,AAA Batteries (4-pack),1,2.99,04/27/19 21:24,"295 1st St, Los Angeles, CA 90001" +191195,27in 4K Gaming Monitor,1,389.99,04/27/19 21:24,"295 1st St, Los Angeles, CA 90001" +191196,Wired Headphones,1,11.99,04/19/19 11:34,"956 Johnson St, San Francisco, CA 94016" +191197,27in FHD Monitor,1,149.99,04/28/19 11:36,"579 Walnut St, Boston, MA 02215" +191198,USB-C Charging Cable,2,11.95,04/10/19 19:43,"28 9th St, New York City, NY 10001" +191199,Lightning Charging Cable,1,14.95,04/18/19 19:20,"21 11th St, Austin, TX 73301" +191200,Bose SoundSport Headphones,1,99.99,04/29/19 19:20,"423 Sunset St, Los Angeles, CA 90001" +191201,AA Batteries (4-pack),2,3.84,04/19/19 04:54,"560 6th St, New York City, NY 10001" +191202,AAA Batteries (4-pack),1,2.99,04/22/19 17:01,"351 Sunset St, Seattle, WA 98101" +191203,AAA Batteries (4-pack),1,2.99,04/21/19 16:53,"806 Hickory St, Los Angeles, CA 90001" +191204,Google Phone,1,600,04/22/19 10:54,"74 Main St, Seattle, WA 98101" +191204,USB-C Charging Cable,1,11.95,04/22/19 10:54,"74 Main St, Seattle, WA 98101" +191205,27in 4K Gaming Monitor,1,389.99,04/03/19 09:16,"934 Dogwood St, New York City, NY 10001" +191206,Wired Headphones,1,11.99,04/04/19 16:17,"254 6th St, Atlanta, GA 30301" +191207,AA Batteries (4-pack),2,3.84,04/07/19 21:55,"681 1st St, Portland, OR 97035" +191208,Wired Headphones,1,11.99,04/29/19 11:51,"28 Meadow St, Los Angeles, CA 90001" +191209,Lightning Charging Cable,1,14.95,04/10/19 10:31,"485 8th St, New York City, NY 10001" +191210,USB-C Charging Cable,1,11.95,04/29/19 19:41,"832 Hickory St, Portland, OR 97035" +191211,Wired Headphones,1,11.99,04/13/19 21:44,"346 Highland St, New York City, NY 10001" +191212,ThinkPad Laptop,1,999.99,04/17/19 10:37,"185 River St, Boston, MA 02215" +191213,Wired Headphones,1,11.99,04/15/19 06:20,"143 Hickory St, Austin, TX 73301" +191214,USB-C Charging Cable,1,11.95,04/14/19 20:25,"301 Jackson St, Boston, MA 02215" +191215,Apple Airpods Headphones,1,150,04/22/19 18:29,"814 Willow St, Portland, OR 97035" +191216,27in FHD Monitor,1,149.99,04/27/19 22:33,"319 Jefferson St, San Francisco, CA 94016" +191217,27in FHD Monitor,1,149.99,04/05/19 20:21,"627 Sunset St, Seattle, WA 98101" +191218,Lightning Charging Cable,1,14.95,04/27/19 21:13,"762 Willow St, San Francisco, CA 94016" +191219,27in 4K Gaming Monitor,1,389.99,04/25/19 19:20,"714 Ridge St, Austin, TX 73301" +191220,Bose SoundSport Headphones,1,99.99,04/25/19 14:25,"368 9th St, San Francisco, CA 94016" +191221,Bose SoundSport Headphones,2,99.99,04/04/19 07:30,"109 Hickory St, San Francisco, CA 94016" +191222,AA Batteries (4-pack),1,3.84,04/19/19 12:52,"554 7th St, San Francisco, CA 94016" +191223,Wired Headphones,1,11.99,04/23/19 18:24,"798 Main St, San Francisco, CA 94016" +191224,AAA Batteries (4-pack),1,2.99,04/12/19 09:12,"953 Walnut St, New York City, NY 10001" +191225,iPhone,1,700,04/03/19 12:31,"402 9th St, Seattle, WA 98101" +191226,AAA Batteries (4-pack),1,2.99,04/21/19 19:10,"904 Church St, New York City, NY 10001" +191227,USB-C Charging Cable,1,11.95,04/13/19 12:03,"463 Cedar St, San Francisco, CA 94016" +191228,Bose SoundSport Headphones,1,99.99,04/06/19 11:04,"790 13th St, San Francisco, CA 94016" +191229,Apple Airpods Headphones,1,150,04/26/19 20:28,"396 Highland St, Boston, MA 02215" +191230,Wired Headphones,1,11.99,04/16/19 13:56,"327 Lincoln St, Atlanta, GA 30301" +191231,Vareebadd Phone,1,400,04/19/19 15:56,"463 Center St, Austin, TX 73301" +191232,Wired Headphones,1,11.99,04/18/19 19:54,"579 Church St, Los Angeles, CA 90001" +191233,Wired Headphones,1,11.99,04/22/19 11:08,"131 Center St, Seattle, WA 98101" +191234,AA Batteries (4-pack),1,3.84,04/12/19 18:34,"830 Lakeview St, Los Angeles, CA 90001" +191235,iPhone,1,700,04/25/19 10:00,"886 Lincoln St, San Francisco, CA 94016" +191235,Lightning Charging Cable,1,14.95,04/25/19 10:00,"886 Lincoln St, San Francisco, CA 94016" +191236,USB-C Charging Cable,1,11.95,04/18/19 16:45,"376 Cherry St, Dallas, TX 75001" +191237,Wired Headphones,1,11.99,04/03/19 18:17,"584 Jackson St, Los Angeles, CA 90001" +191238,27in FHD Monitor,1,149.99,04/19/19 21:15,"94 Highland St, Los Angeles, CA 90001" +191239,AA Batteries (4-pack),2,3.84,04/01/19 11:32,"483 6th St, Seattle, WA 98101" +191240,Lightning Charging Cable,1,14.95,04/13/19 21:34,"200 Sunset St, San Francisco, CA 94016" +191241,Wired Headphones,1,11.99,04/04/19 23:49,"209 1st St, San Francisco, CA 94016" +191242,USB-C Charging Cable,1,11.95,04/14/19 17:22,"422 Lake St, Seattle, WA 98101" +191243,Macbook Pro Laptop,1,1700,04/30/19 20:25,"633 11th St, Dallas, TX 75001" +191244,USB-C Charging Cable,1,11.95,04/01/19 19:38,"152 Cedar St, Dallas, TX 75001" +191245,Lightning Charging Cable,1,14.95,04/21/19 20:06,"761 Church St, Boston, MA 02215" +191246,iPhone,1,700,04/02/19 17:27,"633 Pine St, Los Angeles, CA 90001" +191246,Lightning Charging Cable,2,14.95,04/02/19 17:27,"633 Pine St, Los Angeles, CA 90001" +191247,Macbook Pro Laptop,1,1700,04/11/19 16:51,"310 Pine St, Seattle, WA 98101" +191248,Bose SoundSport Headphones,1,99.99,04/25/19 13:09,"618 Jackson St, San Francisco, CA 94016" +191249,iPhone,1,700,04/24/19 10:09,"676 8th St, Seattle, WA 98101" +191250,Bose SoundSport Headphones,1,99.99,04/09/19 09:56,"482 7th St, San Francisco, CA 94016" +191251,iPhone,1,700,04/24/19 21:21,"656 4th St, Austin, TX 73301" +191251,Apple Airpods Headphones,1,150,04/24/19 21:21,"656 4th St, Austin, TX 73301" +191251,AAA Batteries (4-pack),1,2.99,04/24/19 21:21,"656 4th St, Austin, TX 73301" +191252,AA Batteries (4-pack),1,3.84,04/03/19 13:17,"457 11th St, Dallas, TX 75001" +191253,AA Batteries (4-pack),1,3.84,04/20/19 19:03,"590 14th St, San Francisco, CA 94016" +191254,27in 4K Gaming Monitor,1,389.99,04/02/19 19:35,"305 Maple St, Los Angeles, CA 90001" +191255,AAA Batteries (4-pack),1,2.99,04/17/19 10:58,"23 Main St, Atlanta, GA 30301" +191256,AAA Batteries (4-pack),2,2.99,04/06/19 11:16,"928 9th St, Los Angeles, CA 90001" +191257,Bose SoundSport Headphones,1,99.99,04/09/19 14:50,"897 5th St, San Francisco, CA 94016" +191258,Wired Headphones,1,11.99,04/27/19 21:11,"622 Lakeview St, New York City, NY 10001" +191259,AAA Batteries (4-pack),3,2.99,04/15/19 11:44,"328 9th St, New York City, NY 10001" +191260,AA Batteries (4-pack),1,3.84,04/04/19 17:48,"50 11th St, Dallas, TX 75001" +191261,LG Washing Machine,1,600.0,04/20/19 19:20,"566 River St, New York City, NY 10001" +191262,USB-C Charging Cable,1,11.95,04/25/19 12:02,"335 Center St, Boston, MA 02215" +191263,USB-C Charging Cable,1,11.95,04/09/19 21:17,"452 Church St, Portland, OR 97035" +191264,Apple Airpods Headphones,1,150,04/20/19 13:28,"570 North St, San Francisco, CA 94016" +191265,ThinkPad Laptop,1,999.99,04/12/19 17:38,"782 Jackson St, Boston, MA 02215" +191266,Google Phone,1,600,04/22/19 10:06,"169 Madison St, Los Angeles, CA 90001" +191267,Wired Headphones,1,11.99,04/17/19 22:33,"831 Park St, Seattle, WA 98101" +191268,Wired Headphones,1,11.99,04/25/19 08:57,"975 Maple St, Los Angeles, CA 90001" +191269,ThinkPad Laptop,1,999.99,04/19/19 11:27,"663 2nd St, Atlanta, GA 30301" +191269,AAA Batteries (4-pack),2,2.99,04/19/19 11:27,"663 2nd St, Atlanta, GA 30301" +191270,Bose SoundSport Headphones,1,99.99,04/23/19 14:31,"364 Main St, Dallas, TX 75001" +191271,iPhone,1,700,04/18/19 21:55,"757 11th St, Seattle, WA 98101" +191272,Wired Headphones,1,11.99,04/04/19 23:10,"547 Maple St, Los Angeles, CA 90001" +191273,AA Batteries (4-pack),2,3.84,04/29/19 14:01,"740 12th St, Seattle, WA 98101" +191274,Wired Headphones,1,11.99,04/01/19 19:07,"53 4th St, Boston, MA 02215" +191275,ThinkPad Laptop,1,999.99,04/05/19 22:31,"563 Highland St, Dallas, TX 75001" +191276,27in 4K Gaming Monitor,1,389.99,04/02/19 11:30,"960 Elm St, San Francisco, CA 94016" +191277,Lightning Charging Cable,1,14.95,04/03/19 20:30,"673 Church St, Dallas, TX 75001" +191278,iPhone,1,700,04/05/19 11:21,"100 Sunset St, San Francisco, CA 94016" +191279,Wired Headphones,1,11.99,04/24/19 10:59,"325 Hickory St, Los Angeles, CA 90001" +191280,USB-C Charging Cable,1,11.95,04/07/19 18:32,"488 11th St, San Francisco, CA 94016" +191281,Wired Headphones,1,11.99,04/12/19 18:56,"311 Center St, Portland, OR 97035" +191282,AAA Batteries (4-pack),3,2.99,04/26/19 11:25,"381 1st St, Los Angeles, CA 90001" +191283,USB-C Charging Cable,1,11.95,04/05/19 16:06,"20 Wilson St, San Francisco, CA 94016" +191284,Apple Airpods Headphones,1,150,04/15/19 22:14,"536 8th St, San Francisco, CA 94016" +191285,Wired Headphones,1,11.99,04/26/19 18:45,"819 Highland St, San Francisco, CA 94016" +191286,ThinkPad Laptop,1,999.99,04/11/19 09:58,"433 Wilson St, San Francisco, CA 94016" +191287,Wired Headphones,1,11.99,04/13/19 11:32,"101 Elm St, Seattle, WA 98101" +191288,USB-C Charging Cable,1,11.95,04/27/19 14:38,"412 Hill St, San Francisco, CA 94016" +191289,AA Batteries (4-pack),2,3.84,04/01/19 11:21,"781 5th St, San Francisco, CA 94016" +191290,Wired Headphones,1,11.99,04/16/19 17:02,"253 Hickory St, New York City, NY 10001" +191291,Macbook Pro Laptop,1,1700,04/16/19 11:39,"881 Hickory St, New York City, NY 10001" +191292,USB-C Charging Cable,1,11.95,04/16/19 16:00,"368 Jefferson St, Seattle, WA 98101" +191293,Wired Headphones,1,11.99,04/27/19 19:54,"388 Hill St, San Francisco, CA 94016" +191294,Lightning Charging Cable,1,14.95,04/06/19 19:17,"234 Willow St, Boston, MA 02215" +191295,AAA Batteries (4-pack),2,2.99,04/15/19 21:45,"968 7th St, Boston, MA 02215" +191296,AA Batteries (4-pack),1,3.84,04/25/19 12:23,"353 Lakeview St, Los Angeles, CA 90001" +191297,AAA Batteries (4-pack),1,2.99,04/09/19 15:30,"728 Pine St, San Francisco, CA 94016" +191298,USB-C Charging Cable,1,11.95,04/09/19 11:53,"555 Jefferson St, Atlanta, GA 30301" +191299,Wired Headphones,1,11.99,04/22/19 21:38,"226 13th St, Los Angeles, CA 90001" +191300,Apple Airpods Headphones,1,150,04/04/19 12:52,"136 Lincoln St, Atlanta, GA 30301" +191301,Google Phone,1,600,04/03/19 10:39,"41 South St, Los Angeles, CA 90001" +191302,Lightning Charging Cable,1,14.95,04/10/19 20:02,"155 Cherry St, Atlanta, GA 30301" +191303,AA Batteries (4-pack),1,3.84,04/24/19 07:10,"715 Hickory St, Portland, ME 04101" +191304,27in FHD Monitor,1,149.99,04/09/19 12:31,"987 11th St, Austin, TX 73301" +191305,27in 4K Gaming Monitor,1,389.99,04/13/19 18:32,"547 Lincoln St, Boston, MA 02215" +191306,Bose SoundSport Headphones,1,99.99,04/04/19 09:07,"21 10th St, Boston, MA 02215" +191307,Lightning Charging Cable,1,14.95,04/10/19 19:47,"954 Dogwood St, San Francisco, CA 94016" +191308,AAA Batteries (4-pack),4,2.99,04/08/19 12:55,"941 Jefferson St, San Francisco, CA 94016" +191309,USB-C Charging Cable,1,11.95,04/06/19 14:49,"340 8th St, San Francisco, CA 94016" +191310,AAA Batteries (4-pack),1,2.99,04/10/19 11:40,"352 Church St, Dallas, TX 75001" +191311,Google Phone,1,600,04/10/19 09:47,"846 Cedar St, New York City, NY 10001" +191311,Bose SoundSport Headphones,1,99.99,04/10/19 09:47,"846 Cedar St, New York City, NY 10001" +191312,Lightning Charging Cable,2,14.95,04/05/19 19:13,"931 2nd St, San Francisco, CA 94016" +191313,Google Phone,1,600,04/13/19 13:15,"654 Sunset St, Los Angeles, CA 90001" +191313,USB-C Charging Cable,1,11.95,04/13/19 13:15,"654 Sunset St, Los Angeles, CA 90001" +191314,iPhone,1,700,04/01/19 13:05,"137 Church St, San Francisco, CA 94016" +191314,Wired Headphones,1,11.99,04/01/19 13:05,"137 Church St, San Francisco, CA 94016" +191315,USB-C Charging Cable,1,11.95,04/30/19 20:56,"626 Cherry St, Los Angeles, CA 90001" +191316,Apple Airpods Headphones,1,150,04/18/19 14:49,"932 6th St, San Francisco, CA 94016" +191317,Lightning Charging Cable,1,14.95,04/13/19 12:06,"343 Washington St, Boston, MA 02215" +191318,Apple Airpods Headphones,1,150,04/05/19 11:42,"647 Lakeview St, Boston, MA 02215" +191319,ThinkPad Laptop,1,999.99,04/10/19 22:16,"181 13th St, San Francisco, CA 94016" +191320,Lightning Charging Cable,1,14.95,04/28/19 15:16,"475 Hickory St, Portland, OR 97035" +191321,Wired Headphones,1,11.99,04/07/19 14:57,"415 13th St, San Francisco, CA 94016" +191322,34in Ultrawide Monitor,1,379.99,04/26/19 11:06,"455 Main St, New York City, NY 10001" +191323,AA Batteries (4-pack),3,3.84,04/27/19 16:48,"55 7th St, New York City, NY 10001" +191324,USB-C Charging Cable,1,11.95,04/22/19 21:18,"876 North St, New York City, NY 10001" +191325,ThinkPad Laptop,1,999.99,04/22/19 11:40,"637 Center St, Los Angeles, CA 90001" +191326,20in Monitor,1,109.99,04/29/19 21:11,"552 Park St, Seattle, WA 98101" +191327,USB-C Charging Cable,1,11.95,04/11/19 21:06,"923 Lincoln St, San Francisco, CA 94016" +191328,AAA Batteries (4-pack),2,2.99,04/18/19 18:03,"528 Hill St, Dallas, TX 75001" +191329,AA Batteries (4-pack),1,3.84,04/08/19 10:08,"879 Maple St, Boston, MA 02215" +191330,USB-C Charging Cable,1,11.95,04/25/19 18:20,"996 Lakeview St, Seattle, WA 98101" +191331,Wired Headphones,1,11.99,04/28/19 00:03,"337 Washington St, San Francisco, CA 94016" +191332,Google Phone,1,600,04/13/19 15:52,"485 Wilson St, Los Angeles, CA 90001" +191333,Google Phone,1,600,04/30/19 11:32,"595 Sunset St, New York City, NY 10001" +191333,USB-C Charging Cable,2,11.95,04/30/19 11:32,"595 Sunset St, New York City, NY 10001" +191334,27in 4K Gaming Monitor,2,389.99,04/01/19 20:57,"677 Pine St, Dallas, TX 75001" +191335,Bose SoundSport Headphones,1,99.99,04/05/19 15:21,"65 Willow St, San Francisco, CA 94016" +191336,Wired Headphones,1,11.99,04/11/19 14:00,"721 Jackson St, Dallas, TX 75001" +191337,AAA Batteries (4-pack),1,2.99,04/12/19 18:41,"210 12th St, San Francisco, CA 94016" +191338,Macbook Pro Laptop,1,1700,04/09/19 14:24,"274 Ridge St, Austin, TX 73301" +191339,Lightning Charging Cable,1,14.95,04/18/19 10:37,"405 2nd St, Seattle, WA 98101" +191340,AAA Batteries (4-pack),2,2.99,04/10/19 07:46,"614 Cherry St, Los Angeles, CA 90001" +191341,Lightning Charging Cable,1,14.95,04/21/19 18:20,"976 6th St, Los Angeles, CA 90001" +191342,AAA Batteries (4-pack),2,2.99,04/24/19 17:03,"779 Wilson St, Los Angeles, CA 90001" +191343,Lightning Charging Cable,1,14.95,04/15/19 16:28,"413 Elm St, Los Angeles, CA 90001" +191344,AAA Batteries (4-pack),2,2.99,04/16/19 19:17,"783 13th St, Boston, MA 02215" +191345,Google Phone,1,600,04/20/19 10:08,"524 6th St, Portland, OR 97035" +191345,USB-C Charging Cable,1,11.95,04/20/19 10:08,"524 6th St, Portland, OR 97035" +191346,Bose SoundSport Headphones,1,99.99,04/17/19 20:36,"417 Sunset St, Dallas, TX 75001" +191347,AA Batteries (4-pack),1,3.84,04/20/19 09:27,"39 West St, San Francisco, CA 94016" +191348,USB-C Charging Cable,1,11.95,04/19/19 06:55,"395 Chestnut St, New York City, NY 10001" +191349,Wired Headphones,1,11.99,04/19/19 09:48,"852 Adams St, New York City, NY 10001" +191350,Lightning Charging Cable,1,14.95,04/10/19 07:40,"558 Dogwood St, New York City, NY 10001" +191351,Flatscreen TV,1,300,04/10/19 22:06,"583 11th St, Portland, OR 97035" +191352,AA Batteries (4-pack),4,3.84,04/20/19 13:05,"139 6th St, San Francisco, CA 94016" +191353,AAA Batteries (4-pack),1,2.99,04/05/19 15:50,"498 Lake St, Los Angeles, CA 90001" +191354,Apple Airpods Headphones,1,150,04/21/19 09:31,"772 Lincoln St, San Francisco, CA 94016" +191355,AA Batteries (4-pack),2,3.84,04/15/19 14:41,"247 12th St, Los Angeles, CA 90001" +191356,AAA Batteries (4-pack),1,2.99,04/11/19 13:39,"1 7th St, Atlanta, GA 30301" +191357,34in Ultrawide Monitor,1,379.99,04/10/19 07:13,"874 Center St, Portland, OR 97035" +191358,27in FHD Monitor,1,149.99,04/03/19 14:53,"462 Jefferson St, New York City, NY 10001" +191359,iPhone,1,700,04/19/19 13:31,"201 Hickory St, New York City, NY 10001" +191359,Lightning Charging Cable,1,14.95,04/19/19 13:31,"201 Hickory St, New York City, NY 10001" +191360,USB-C Charging Cable,1,11.95,04/10/19 18:03,"16 6th St, Austin, TX 73301" +191361,Apple Airpods Headphones,1,150,04/13/19 18:34,"558 6th St, Los Angeles, CA 90001" +191362,Lightning Charging Cable,1,14.95,04/15/19 03:05,"35 Washington St, Boston, MA 02215" +191363,Wired Headphones,2,11.99,04/14/19 18:43,"546 Ridge St, Atlanta, GA 30301" +191364,AAA Batteries (4-pack),2,2.99,04/01/19 21:35,"203 Jefferson St, Portland, ME 04101" +191365,20in Monitor,1,109.99,04/17/19 22:29,"174 Pine St, Dallas, TX 75001" +191366,Wired Headphones,1,11.99,04/28/19 15:54,"90 Jefferson St, Los Angeles, CA 90001" +191367,AAA Batteries (4-pack),2,2.99,04/16/19 07:29,"144 Washington St, New York City, NY 10001" +191368,Wired Headphones,1,11.99,04/09/19 08:53,"94 Johnson St, New York City, NY 10001" +191369,AAA Batteries (4-pack),1,2.99,04/06/19 21:21,"635 Jackson St, Austin, TX 73301" +191370,Google Phone,1,600,04/28/19 12:07,"706 Cherry St, Seattle, WA 98101" +191371,Lightning Charging Cable,1,14.95,04/06/19 14:15,"701 Ridge St, Atlanta, GA 30301" +191372,USB-C Charging Cable,1,11.95,04/30/19 18:19,"76 Meadow St, Los Angeles, CA 90001" +191373,Flatscreen TV,1,300,04/02/19 16:05,"882 Sunset St, Los Angeles, CA 90001" +191374,27in 4K Gaming Monitor,1,389.99,04/21/19 19:59,"94 Church St, Los Angeles, CA 90001" +191375,AAA Batteries (4-pack),1,2.99,04/02/19 12:35,"932 Johnson St, Atlanta, GA 30301" +191376,Bose SoundSport Headphones,1,99.99,04/29/19 18:52,"304 7th St, Seattle, WA 98101" +191377,Wired Headphones,1,11.99,04/18/19 08:26,"675 Hickory St, Los Angeles, CA 90001" +191378,Wired Headphones,1,11.99,04/28/19 00:44,"71 Johnson St, Seattle, WA 98101" +191379,USB-C Charging Cable,1,11.95,04/20/19 22:43,"395 Highland St, Atlanta, GA 30301" +191380,AA Batteries (4-pack),1,3.84,04/27/19 11:01,"236 Lincoln St, Austin, TX 73301" +191381,Google Phone,1,600,04/26/19 20:27,"561 Madison St, New York City, NY 10001" +191382,27in 4K Gaming Monitor,1,389.99,04/19/19 07:34,"17 Lakeview St, Atlanta, GA 30301" +191383,AA Batteries (4-pack),1,3.84,04/08/19 10:48,"899 11th St, New York City, NY 10001" +191384,27in FHD Monitor,1,149.99,04/02/19 19:42,"677 Park St, Boston, MA 02215" +191385,AAA Batteries (4-pack),2,2.99,04/28/19 20:20,"805 Jefferson St, Boston, MA 02215" +191386,Google Phone,1,600,04/23/19 11:04,"784 Pine St, New York City, NY 10001" +191387,AA Batteries (4-pack),1,3.84,04/19/19 18:05,"491 Willow St, San Francisco, CA 94016" +191388,AA Batteries (4-pack),1,3.84,04/19/19 18:20,"234 Lakeview St, San Francisco, CA 94016" +191389,Lightning Charging Cable,1,14.95,04/26/19 09:14,"521 Maple St, Atlanta, GA 30301" +191389,USB-C Charging Cable,1,11.95,04/26/19 09:14,"521 Maple St, Atlanta, GA 30301" +191390,Apple Airpods Headphones,1,150,04/04/19 12:57,"69 11th St, New York City, NY 10001" +191391,27in 4K Gaming Monitor,1,389.99,04/07/19 21:59,"230 Meadow St, San Francisco, CA 94016" +191392,27in FHD Monitor,1,149.99,04/30/19 07:17,"49 Sunset St, San Francisco, CA 94016" +191393,iPhone,1,700,04/28/19 19:36,"865 Lakeview St, Portland, OR 97035" +191394,AAA Batteries (4-pack),1,2.99,04/06/19 22:07,"101 Walnut St, New York City, NY 10001" +191395,Apple Airpods Headphones,1,150,04/08/19 18:54,"710 Maple St, San Francisco, CA 94016" +191396,Lightning Charging Cable,1,14.95,04/25/19 09:01,"377 8th St, Boston, MA 02215" +191397,USB-C Charging Cable,1,11.95,04/30/19 00:55,"602 Lake St, Atlanta, GA 30301" +191398,AA Batteries (4-pack),1,3.84,04/24/19 11:36,"733 14th St, Seattle, WA 98101" +191399,USB-C Charging Cable,2,11.95,04/29/19 00:24,"359 Elm St, Seattle, WA 98101" +191400,Bose SoundSport Headphones,1,99.99,04/02/19 15:31,"806 Church St, Seattle, WA 98101" +191401,Lightning Charging Cable,1,14.95,04/05/19 14:52,"888 Madison St, Atlanta, GA 30301" +191402,27in 4K Gaming Monitor,1,389.99,04/04/19 19:19,"816 Dogwood St, Dallas, TX 75001" +191403,27in 4K Gaming Monitor,1,389.99,04/13/19 23:55,"532 Center St, Los Angeles, CA 90001" +191404,AA Batteries (4-pack),2,3.84,04/25/19 18:48,"905 Adams St, Atlanta, GA 30301" +191405,USB-C Charging Cable,1,11.95,04/26/19 10:31,"112 5th St, New York City, NY 10001" +191406,USB-C Charging Cable,1,11.95,04/07/19 14:24,"886 10th St, New York City, NY 10001" +191407,AAA Batteries (4-pack),1,2.99,04/15/19 22:33,"935 Hill St, New York City, NY 10001" +191408,Bose SoundSport Headphones,1,99.99,04/02/19 19:07,"129 North St, New York City, NY 10001" +191409,Bose SoundSport Headphones,1,99.99,04/22/19 10:03,"33 Park St, Boston, MA 02215" +191410,Apple Airpods Headphones,1,150,04/01/19 17:58,"198 Church St, San Francisco, CA 94016" +191411,Apple Airpods Headphones,1,150,04/17/19 14:41,"914 Jackson St, Portland, OR 97035" +191412,ThinkPad Laptop,1,999.99,04/30/19 12:27,"107 Main St, San Francisco, CA 94016" +191413,27in 4K Gaming Monitor,1,389.99,04/06/19 06:13,"177 Jefferson St, San Francisco, CA 94016" +191414,Lightning Charging Cable,1,14.95,04/25/19 18:16,"584 South St, San Francisco, CA 94016" +191415,USB-C Charging Cable,1,11.95,04/13/19 19:40,"181 10th St, New York City, NY 10001" +191416,Lightning Charging Cable,1,14.95,04/04/19 22:17,"94 9th St, Seattle, WA 98101" +191417,Macbook Pro Laptop,1,1700,04/01/19 18:54,"526 Cherry St, Dallas, TX 75001" +191418,Bose SoundSport Headphones,1,99.99,04/12/19 10:32,"431 Lincoln St, Seattle, WA 98101" +191419,20in Monitor,1,109.99,04/18/19 19:01,"523 Cherry St, Los Angeles, CA 90001" +191420,AAA Batteries (4-pack),1,2.99,04/07/19 15:23,"812 6th St, Los Angeles, CA 90001" +191421,iPhone,1,700,04/23/19 02:07,"147 4th St, Dallas, TX 75001" +191421,Apple Airpods Headphones,1,150,04/23/19 02:07,"147 4th St, Dallas, TX 75001" +191422,Bose SoundSport Headphones,1,99.99,04/19/19 10:22,"495 Hickory St, Atlanta, GA 30301" +191423,AA Batteries (4-pack),1,3.84,04/12/19 10:07,"978 Wilson St, Portland, ME 04101" +191424,Bose SoundSport Headphones,1,99.99,04/26/19 16:54,"409 11th St, San Francisco, CA 94016" +191424,AAA Batteries (4-pack),1,2.99,04/26/19 16:54,"409 11th St, San Francisco, CA 94016" +191425,27in 4K Gaming Monitor,1,389.99,04/05/19 14:26,"741 Chestnut St, New York City, NY 10001" +191425,USB-C Charging Cable,1,11.95,04/05/19 14:26,"741 Chestnut St, New York City, NY 10001" +191426,27in FHD Monitor,1,149.99,04/17/19 20:00,"244 11th St, San Francisco, CA 94016" +191427,Macbook Pro Laptop,1,1700,04/10/19 06:54,"608 8th St, Portland, OR 97035" +191428,Wired Headphones,1,11.99,04/20/19 10:22,"981 Forest St, New York City, NY 10001" +191429,AAA Batteries (4-pack),1,2.99,04/29/19 13:44,"381 Lakeview St, New York City, NY 10001" +191430,Flatscreen TV,1,300,04/24/19 21:44,"469 14th St, Seattle, WA 98101" +191431,AA Batteries (4-pack),1,3.84,04/07/19 23:22,"562 9th St, Atlanta, GA 30301" +191432,AA Batteries (4-pack),1,3.84,04/03/19 08:30,"626 Ridge St, New York City, NY 10001" +191433,Google Phone,1,600,04/27/19 21:52,"870 Adams St, New York City, NY 10001" +191433,USB-C Charging Cable,1,11.95,04/27/19 21:52,"870 Adams St, New York City, NY 10001" +191434,34in Ultrawide Monitor,1,379.99,04/16/19 23:21,"723 8th St, Los Angeles, CA 90001" +191435,AA Batteries (4-pack),1,3.84,04/02/19 21:23,"75 Cherry St, Portland, OR 97035" +191436,Lightning Charging Cable,1,14.95,04/25/19 16:47,"401 South St, Boston, MA 02215" +191437,iPhone,1,700,04/21/19 11:27,"645 Center St, Portland, OR 97035" +191438,Lightning Charging Cable,1,14.95,04/20/19 18:16,"226 9th St, Dallas, TX 75001" +191439,Lightning Charging Cable,1,14.95,04/27/19 10:32,"562 Washington St, San Francisco, CA 94016" +191440,Apple Airpods Headphones,1,150,04/13/19 18:11,"727 West St, Seattle, WA 98101" +191441,Lightning Charging Cable,1,14.95,04/19/19 15:40,"250 Hill St, Boston, MA 02215" +191442,Bose SoundSport Headphones,1,99.99,04/18/19 21:25,"204 Jackson St, Dallas, TX 75001" +191443,AA Batteries (4-pack),1,3.84,04/27/19 17:41,"430 Washington St, Atlanta, GA 30301" +191444,34in Ultrawide Monitor,1,379.99,04/15/19 07:10,"503 Sunset St, San Francisco, CA 94016" +191445,AA Batteries (4-pack),3,3.84,04/02/19 14:25,"463 Lakeview St, Atlanta, GA 30301" +191446,AA Batteries (4-pack),1,3.84,04/06/19 22:55,"456 Walnut St, New York City, NY 10001" +191447,Google Phone,1,600,04/04/19 17:46,"393 Johnson St, San Francisco, CA 94016" +191448,Apple Airpods Headphones,1,150,04/20/19 10:14,"391 Walnut St, San Francisco, CA 94016" +191449,Lightning Charging Cable,1,14.95,04/28/19 10:44,"700 West St, New York City, NY 10001" +191450,AAA Batteries (4-pack),2,2.99,04/25/19 09:34,"77 Madison St, Los Angeles, CA 90001" +191451,Lightning Charging Cable,1,14.95,04/14/19 21:26,"49 Ridge St, Austin, TX 73301" +191452,Bose SoundSport Headphones,1,99.99,04/18/19 06:48,"340 Meadow St, Seattle, WA 98101" +191453,USB-C Charging Cable,1,11.95,04/19/19 11:54,"826 7th St, Seattle, WA 98101" +191454,AAA Batteries (4-pack),1,2.99,04/02/19 11:50,"247 Sunset St, San Francisco, CA 94016" +191455,Bose SoundSport Headphones,1,99.99,04/10/19 15:35,"39 Wilson St, Boston, MA 02215" +191456,Flatscreen TV,1,300,04/17/19 13:01,"303 14th St, San Francisco, CA 94016" +191457,AAA Batteries (4-pack),1,2.99,04/25/19 12:15,"443 Hill St, Boston, MA 02215" +191458,iPhone,1,700,04/17/19 03:13,"383 Sunset St, Boston, MA 02215" +191459,Apple Airpods Headphones,1,150,04/05/19 15:50,"528 Hickory St, Seattle, WA 98101" +191460,AA Batteries (4-pack),1,3.84,04/05/19 11:41,"1 Spruce St, Dallas, TX 75001" +191461,Wired Headphones,1,11.99,04/22/19 19:27,"673 12th St, Austin, TX 73301" +191462,Lightning Charging Cable,1,14.95,04/24/19 17:41,"796 8th St, New York City, NY 10001" +191463,AAA Batteries (4-pack),1,2.99,04/13/19 19:10,"233 Wilson St, San Francisco, CA 94016" +191464,AA Batteries (4-pack),1,3.84,04/21/19 13:12,"41 Center St, New York City, NY 10001" +191465,Apple Airpods Headphones,1,150,04/22/19 20:49,"491 Chestnut St, Seattle, WA 98101" +191466,Lightning Charging Cable,1,14.95,04/10/19 13:39,"468 Willow St, Seattle, WA 98101" +191467,Bose SoundSport Headphones,1,99.99,04/21/19 06:19,"953 Madison St, Los Angeles, CA 90001" +191468,AAA Batteries (4-pack),2,2.99,04/30/19 10:25,"209 Maple St, San Francisco, CA 94016" +191469,AA Batteries (4-pack),1,3.84,04/23/19 01:02,"374 11th St, Boston, MA 02215" +191470,Wired Headphones,1,11.99,04/04/19 10:06,"326 1st St, Los Angeles, CA 90001" +191471,Lightning Charging Cable,1,14.95,04/29/19 13:47,"792 Lakeview St, Atlanta, GA 30301" +191472,AAA Batteries (4-pack),1,2.99,04/10/19 16:55,"505 North St, Boston, MA 02215" +191473,27in FHD Monitor,1,149.99,04/28/19 23:55,"607 Center St, Los Angeles, CA 90001" +191474,Apple Airpods Headphones,1,150,04/30/19 16:17,"742 Lincoln St, Boston, MA 02215" +191475,Macbook Pro Laptop,1,1700,04/17/19 12:22,"415 South St, Atlanta, GA 30301" +191476,Apple Airpods Headphones,1,150,04/15/19 19:21,"703 Madison St, Portland, OR 97035" +191477,34in Ultrawide Monitor,1,379.99,04/05/19 08:28,"371 Madison St, Portland, OR 97035" +191478,Vareebadd Phone,1,400,04/30/19 11:12,"74 South St, Los Angeles, CA 90001" +191479,34in Ultrawide Monitor,1,379.99,04/28/19 10:42,"859 Cherry St, Seattle, WA 98101" +191480,USB-C Charging Cable,1,11.95,04/12/19 01:14,"251 West St, Los Angeles, CA 90001" +191481,Apple Airpods Headphones,1,150,04/02/19 00:20,"197 6th St, San Francisco, CA 94016" +191482,Lightning Charging Cable,2,14.95,04/15/19 11:49,"841 Washington St, San Francisco, CA 94016" +191483,Macbook Pro Laptop,1,1700,04/05/19 22:00,"688 Lake St, San Francisco, CA 94016" +191484,AAA Batteries (4-pack),1,2.99,04/13/19 13:47,"281 Sunset St, Los Angeles, CA 90001" +191485,27in 4K Gaming Monitor,1,389.99,04/21/19 20:28,"757 Hickory St, Boston, MA 02215" +191486,27in FHD Monitor,1,149.99,04/13/19 15:21,"9 West St, Austin, TX 73301" +191487,AAA Batteries (4-pack),3,2.99,04/08/19 11:54,"588 Jefferson St, Portland, ME 04101" +191488,AAA Batteries (4-pack),1,2.99,04/09/19 23:12,"346 Hickory St, San Francisco, CA 94016" +191489,AAA Batteries (4-pack),1,2.99,04/15/19 11:48,"829 Forest St, San Francisco, CA 94016" +191489,Lightning Charging Cable,2,14.95,04/15/19 11:48,"829 Forest St, San Francisco, CA 94016" +191490,Google Phone,1,600,04/10/19 10:23,"993 4th St, Los Angeles, CA 90001" +191490,USB-C Charging Cable,1,11.95,04/10/19 10:23,"993 4th St, Los Angeles, CA 90001" +191490,Bose SoundSport Headphones,1,99.99,04/10/19 10:23,"993 4th St, Los Angeles, CA 90001" +191491,Apple Airpods Headphones,1,150,04/07/19 12:34,"929 Lincoln St, Boston, MA 02215" +191492,Vareebadd Phone,1,400,04/04/19 11:50,"469 South St, Los Angeles, CA 90001" +191492,USB-C Charging Cable,1,11.95,04/04/19 11:50,"469 South St, Los Angeles, CA 90001" +191492,Wired Headphones,1,11.99,04/04/19 11:50,"469 South St, Los Angeles, CA 90001" +191493,27in 4K Gaming Monitor,1,389.99,04/20/19 16:49,"377 12th St, Boston, MA 02215" +191494,Lightning Charging Cable,1,14.95,04/12/19 12:10,"117 9th St, Boston, MA 02215" +191495,27in 4K Gaming Monitor,1,389.99,04/04/19 17:34,"562 7th St, Seattle, WA 98101" +191496,Lightning Charging Cable,1,14.95,04/23/19 11:07,"499 Pine St, Dallas, TX 75001" +191497,iPhone,2,700,04/14/19 12:07,"119 Pine St, San Francisco, CA 94016" +191497,Lightning Charging Cable,1,14.95,04/14/19 12:07,"119 Pine St, San Francisco, CA 94016" +191498,Wired Headphones,1,11.99,04/17/19 15:01,"305 Park St, San Francisco, CA 94016" +191499,Apple Airpods Headphones,1,150,04/13/19 08:05,"94 8th St, Boston, MA 02215" +191500,Bose SoundSport Headphones,1,99.99,04/10/19 16:12,"527 South St, Seattle, WA 98101" +191501,Lightning Charging Cable,1,14.95,04/08/19 02:58,"848 8th St, New York City, NY 10001" +191502,AAA Batteries (4-pack),1,2.99,04/30/19 20:19,"184 Elm St, San Francisco, CA 94016" +191503,USB-C Charging Cable,1,11.95,04/07/19 08:28,"755 6th St, Dallas, TX 75001" +191504,34in Ultrawide Monitor,1,379.99,04/07/19 10:40,"127 Lincoln St, Los Angeles, CA 90001" +191505,Bose SoundSport Headphones,1,99.99,04/27/19 22:58,"566 Jefferson St, Dallas, TX 75001" +191506,27in FHD Monitor,1,149.99,04/27/19 21:10,"776 Lincoln St, Seattle, WA 98101" +191507,AAA Batteries (4-pack),4,2.99,04/15/19 15:19,"722 Forest St, San Francisco, CA 94016" +191508,Lightning Charging Cable,1,14.95,04/06/19 07:20,"648 Highland St, Boston, MA 02215" +191509,AA Batteries (4-pack),1,3.84,04/04/19 12:42,"212 Dogwood St, New York City, NY 10001" +191510,Apple Airpods Headphones,1,150,04/16/19 22:51,"163 Highland St, Dallas, TX 75001" +191511,USB-C Charging Cable,1,11.95,04/08/19 18:06,"950 7th St, New York City, NY 10001" +191512,USB-C Charging Cable,1,11.95,04/11/19 13:40,"578 6th St, New York City, NY 10001" +191513,20in Monitor,1,109.99,04/22/19 17:50,"986 1st St, San Francisco, CA 94016" +191514,Bose SoundSport Headphones,1,99.99,04/21/19 17:59,"868 Highland St, Dallas, TX 75001" +191515,Vareebadd Phone,1,400,04/27/19 09:13,"124 South St, New York City, NY 10001" +191516,Bose SoundSport Headphones,1,99.99,04/21/19 09:55,"388 2nd St, Dallas, TX 75001" +191517,Lightning Charging Cable,1,14.95,04/07/19 14:24,"324 Johnson St, San Francisco, CA 94016" +191518,ThinkPad Laptop,1,999.99,04/17/19 23:02,"920 12th St, Seattle, WA 98101" +191519,Apple Airpods Headphones,1,150,04/01/19 16:24,"253 Wilson St, Seattle, WA 98101" +191520,AAA Batteries (4-pack),2,2.99,04/08/19 21:25,"426 Willow St, Los Angeles, CA 90001" +191521,27in 4K Gaming Monitor,1,389.99,04/27/19 05:52,"973 Spruce St, Austin, TX 73301" +191522,Macbook Pro Laptop,1,1700,04/02/19 22:52,"418 Willow St, Atlanta, GA 30301" +191523,Macbook Pro Laptop,1,1700,04/01/19 15:53,"685 Meadow St, Los Angeles, CA 90001" +191524,iPhone,1,700,04/14/19 21:41,"681 Jackson St, San Francisco, CA 94016" +191525,AA Batteries (4-pack),2,3.84,04/25/19 19:14,"345 Jefferson St, Los Angeles, CA 90001" +191526,Wired Headphones,1,11.99,04/20/19 12:07,"563 Jefferson St, Los Angeles, CA 90001" +191527,34in Ultrawide Monitor,1,379.99,04/28/19 20:37,"374 6th St, San Francisco, CA 94016" +191528,Bose SoundSport Headphones,1,99.99,04/01/19 23:01,"388 1st St, Los Angeles, CA 90001" +191529,Lightning Charging Cable,1,14.95,04/15/19 08:21,"462 Spruce St, New York City, NY 10001" +191530,Vareebadd Phone,1,400,04/21/19 07:27,"961 11th St, Dallas, TX 75001" +191531,Bose SoundSport Headphones,1,99.99,04/26/19 17:38,"60 10th St, Dallas, TX 75001" +191532,Flatscreen TV,1,300,04/10/19 12:22,"204 Elm St, San Francisco, CA 94016" +191533,Bose SoundSport Headphones,1,99.99,04/01/19 21:00,"180 Church St, Seattle, WA 98101" +191534,34in Ultrawide Monitor,1,379.99,04/01/19 10:52,"63 North St, Boston, MA 02215" +191535,Bose SoundSport Headphones,1,99.99,04/08/19 17:28,"188 Hickory St, New York City, NY 10001" +191536,27in FHD Monitor,1,149.99,04/20/19 10:59,"297 Maple St, San Francisco, CA 94016" +191537,27in FHD Monitor,1,149.99,04/10/19 18:33,"965 River St, Los Angeles, CA 90001" +191538,ThinkPad Laptop,1,999.99,04/02/19 13:07,"366 6th St, San Francisco, CA 94016" +191539,27in 4K Gaming Monitor,1,389.99,04/12/19 21:02,"669 Cedar St, Dallas, TX 75001" +191540,Flatscreen TV,1,300,04/22/19 22:26,"301 Pine St, San Francisco, CA 94016" +191541,AA Batteries (4-pack),2,3.84,04/06/19 15:33,"130 West St, Los Angeles, CA 90001" +191542,Bose SoundSport Headphones,1,99.99,04/17/19 19:37,"84 Main St, New York City, NY 10001" +191543,Apple Airpods Headphones,1,150,04/26/19 12:58,"383 Center St, Los Angeles, CA 90001" +191544,AAA Batteries (4-pack),1,2.99,04/24/19 18:21,"551 Center St, Los Angeles, CA 90001" +191545,Macbook Pro Laptop,1,1700,04/02/19 02:32,"713 Cherry St, San Francisco, CA 94016" +191546,Lightning Charging Cable,2,14.95,04/06/19 21:34,"486 Pine St, New York City, NY 10001" +191547,AA Batteries (4-pack),1,3.84,04/04/19 23:15,"326 Johnson St, Seattle, WA 98101" +191548,USB-C Charging Cable,1,11.95,04/23/19 08:20,"301 12th St, Austin, TX 73301" +191549,Lightning Charging Cable,1,14.95,04/17/19 19:21,"896 Jackson St, Seattle, WA 98101" +191550,ThinkPad Laptop,1,999.99,04/18/19 09:53,"755 Dogwood St, Dallas, TX 75001" +191551,Bose SoundSport Headphones,1,99.99,04/02/19 13:36,"747 Sunset St, Los Angeles, CA 90001" +191552,Bose SoundSport Headphones,1,99.99,04/05/19 22:40,"871 Meadow St, Los Angeles, CA 90001" +191553,Flatscreen TV,1,300,04/20/19 20:46,"651 West St, Atlanta, GA 30301" +191554,Wired Headphones,1,11.99,04/07/19 14:39,"279 1st St, San Francisco, CA 94016" +191555,AA Batteries (4-pack),1,3.84,04/14/19 22:21,"639 Dogwood St, Dallas, TX 75001" +191556,Wired Headphones,2,11.99,04/27/19 16:23,"783 Forest St, Los Angeles, CA 90001" +191557,AAA Batteries (4-pack),2,2.99,04/17/19 07:31,"802 Cedar St, Atlanta, GA 30301" +191558,Lightning Charging Cable,1,14.95,04/09/19 23:00,"315 Center St, Boston, MA 02215" +191559,Google Phone,1,600,04/01/19 16:39,"281 Willow St, Dallas, TX 75001" +191559,Wired Headphones,1,11.99,04/01/19 16:39,"281 Willow St, Dallas, TX 75001" +191560,Flatscreen TV,1,300,04/14/19 15:26,"989 12th St, Dallas, TX 75001" +191561,Lightning Charging Cable,1,14.95,04/21/19 17:43,"1 Maple St, Los Angeles, CA 90001" +191562,AA Batteries (4-pack),1,3.84,04/10/19 09:58,"603 North St, Seattle, WA 98101" +191563,iPhone,1,700,04/03/19 10:31,"136 4th St, Austin, TX 73301" +191564,Lightning Charging Cable,1,14.95,04/04/19 14:02,"242 Park St, San Francisco, CA 94016" +191565,USB-C Charging Cable,1,11.95,04/25/19 21:21,"418 Park St, Seattle, WA 98101" +191566,34in Ultrawide Monitor,1,379.99,04/14/19 15:41,"906 West St, Austin, TX 73301" +191567,AAA Batteries (4-pack),1,2.99,04/18/19 16:53,"214 Pine St, Los Angeles, CA 90001" +191568,AAA Batteries (4-pack),1,2.99,04/17/19 17:51,"781 Hickory St, Portland, OR 97035" +191569,Apple Airpods Headphones,1,150,04/02/19 22:08,"788 Cherry St, New York City, NY 10001" +191570,USB-C Charging Cable,1,11.95,04/27/19 09:49,"240 Park St, Atlanta, GA 30301" +191571,AAA Batteries (4-pack),2,2.99,04/27/19 18:01,"817 Sunset St, Austin, TX 73301" +191572,ThinkPad Laptop,1,999.99,04/25/19 10:03,"143 14th St, Los Angeles, CA 90001" +191573,iPhone,1,700,04/17/19 12:56,"401 Lincoln St, Seattle, WA 98101" +191574,Bose SoundSport Headphones,1,99.99,04/01/19 17:13,"661 10th St, Los Angeles, CA 90001" +191575,AAA Batteries (4-pack),1,2.99,04/22/19 19:54,"853 9th St, San Francisco, CA 94016" +191576,Google Phone,1,600,04/04/19 15:59,"338 5th St, Los Angeles, CA 90001" +191577,USB-C Charging Cable,1,11.95,04/24/19 09:54,"990 Ridge St, Atlanta, GA 30301" +191578,Flatscreen TV,1,300,04/18/19 18:11,"995 Park St, New York City, NY 10001" +191579,Bose SoundSport Headphones,1,99.99,04/24/19 08:23,"689 Dogwood St, Boston, MA 02215" +191580,Wired Headphones,1,11.99,04/18/19 13:45,"457 Hill St, San Francisco, CA 94016" +191581,Apple Airpods Headphones,1,150,04/12/19 12:47,"617 Spruce St, San Francisco, CA 94016" +191582,Bose SoundSport Headphones,1,99.99,04/17/19 00:06,"392 Cedar St, Seattle, WA 98101" +191583,Apple Airpods Headphones,1,150,04/08/19 19:02,"468 5th St, Dallas, TX 75001" +191584,34in Ultrawide Monitor,1,379.99,04/01/19 18:21,"835 9th St, Seattle, WA 98101" +191585,Wired Headphones,1,11.99,04/14/19 17:50,"258 Walnut St, Boston, MA 02215" +191586,Bose SoundSport Headphones,1,99.99,04/26/19 13:55,"744 Forest St, Boston, MA 02215" +191587,Wired Headphones,1,11.99,04/21/19 19:40,"98 7th St, Portland, ME 04101" +191588,Lightning Charging Cable,1,14.95,04/29/19 23:22,"267 Washington St, Boston, MA 02215" +191589,Apple Airpods Headphones,1,150,04/15/19 17:11,"333 Johnson St, New York City, NY 10001" +191590,27in 4K Gaming Monitor,1,389.99,04/27/19 01:47,"135 Church St, Portland, OR 97035" +191591,AAA Batteries (4-pack),1,2.99,04/14/19 05:46,"212 Maple St, San Francisco, CA 94016" +191592,Wired Headphones,1,11.99,04/29/19 21:51,"11 Main St, Dallas, TX 75001" +191593,Apple Airpods Headphones,1,150,04/17/19 19:45,"232 Cedar St, Portland, OR 97035" +191594,AA Batteries (4-pack),1,3.84,04/05/19 14:47,"825 1st St, Los Angeles, CA 90001" +191595,Apple Airpods Headphones,1,150,04/04/19 11:21,"162 9th St, San Francisco, CA 94016" +191596,Bose SoundSport Headphones,1,99.99,04/04/19 21:11,"426 12th St, Los Angeles, CA 90001" +191597,Lightning Charging Cable,1,14.95,04/14/19 21:30,"776 South St, Portland, ME 04101" +191598,AAA Batteries (4-pack),3,2.99,04/17/19 18:59,"692 11th St, Los Angeles, CA 90001" +191599,AAA Batteries (4-pack),2,2.99,04/19/19 21:02,"822 Chestnut St, Dallas, TX 75001" +191600,LG Dryer,1,600.0,04/10/19 17:02,"212 Johnson St, San Francisco, CA 94016" +191601,Google Phone,1,600,04/15/19 05:36,"273 Park St, New York City, NY 10001" +191602,Wired Headphones,1,11.99,04/02/19 11:00,"776 5th St, Portland, ME 04101" +191603,Flatscreen TV,1,300,04/15/19 16:50,"302 Hickory St, Atlanta, GA 30301" +191604,AAA Batteries (4-pack),1,2.99,04/24/19 11:32,"290 Walnut St, Dallas, TX 75001" +191605,AAA Batteries (4-pack),1,2.99,04/12/19 21:16,"296 West St, Boston, MA 02215" +191606,Lightning Charging Cable,1,14.95,04/19/19 23:16,"142 Elm St, San Francisco, CA 94016" +191607,Lightning Charging Cable,1,14.95,04/01/19 10:09,"2 Church St, Boston, MA 02215" +191608,27in FHD Monitor,1,149.99,04/30/19 17:58,"211 12th St, Dallas, TX 75001" +191609,Flatscreen TV,1,300,04/10/19 23:22,"553 Elm St, San Francisco, CA 94016" +191610,Lightning Charging Cable,1,14.95,04/13/19 10:11,"696 Lake St, Seattle, WA 98101" +191611,Wired Headphones,1,11.99,04/22/19 12:15,"146 13th St, Los Angeles, CA 90001" +191612,34in Ultrawide Monitor,1,379.99,04/21/19 20:30,"832 Madison St, New York City, NY 10001" +191613,Google Phone,1,600,04/17/19 13:48,"460 Walnut St, Los Angeles, CA 90001" +191614,USB-C Charging Cable,1,11.95,04/23/19 09:46,"189 5th St, San Francisco, CA 94016" +191615,27in 4K Gaming Monitor,1,389.99,04/20/19 13:29,"630 Walnut St, San Francisco, CA 94016" +191616,AAA Batteries (4-pack),1,2.99,04/14/19 14:14,"638 Lake St, New York City, NY 10001" +191617,Lightning Charging Cable,1,14.95,04/20/19 11:32,"674 Elm St, San Francisco, CA 94016" +191618,AAA Batteries (4-pack),2,2.99,04/25/19 19:09,"776 Madison St, San Francisco, CA 94016" +191619,AA Batteries (4-pack),1,3.84,04/29/19 09:45,"387 8th St, San Francisco, CA 94016" +191620,AAA Batteries (4-pack),1,2.99,04/13/19 09:29,"920 River St, San Francisco, CA 94016" +191621,27in 4K Gaming Monitor,1,389.99,04/20/19 17:09,"720 Meadow St, Dallas, TX 75001" +191622,Bose SoundSport Headphones,1,99.99,04/23/19 13:24,"750 Jackson St, Atlanta, GA 30301" +191623,AAA Batteries (4-pack),1,2.99,04/06/19 08:15,"219 Hill St, San Francisco, CA 94016" +191624,ThinkPad Laptop,1,999.99,04/15/19 20:03,"839 Jefferson St, Los Angeles, CA 90001" +191625,Flatscreen TV,1,300,04/26/19 15:39,"735 7th St, New York City, NY 10001" +191626,Wired Headphones,1,11.99,04/14/19 15:15,"547 Chestnut St, Los Angeles, CA 90001" +191627,Bose SoundSport Headphones,1,99.99,04/23/19 21:16,"542 Cedar St, Dallas, TX 75001" +191628,Google Phone,1,600,04/27/19 13:09,"396 Lakeview St, Boston, MA 02215" +191629,USB-C Charging Cable,1,11.95,04/29/19 23:00,"269 Main St, San Francisco, CA 94016" +191630,Apple Airpods Headphones,1,150,04/03/19 20:29,"332 Hickory St, Los Angeles, CA 90001" +191631,AA Batteries (4-pack),1,3.84,04/26/19 21:11,"513 Lake St, San Francisco, CA 94016" +191632,34in Ultrawide Monitor,1,379.99,04/10/19 00:44,"490 Forest St, San Francisco, CA 94016" +191633,Vareebadd Phone,1,400,04/03/19 20:43,"369 North St, San Francisco, CA 94016" +191633,USB-C Charging Cable,1,11.95,04/03/19 20:43,"369 North St, San Francisco, CA 94016" +191633,Wired Headphones,1,11.99,04/03/19 20:43,"369 North St, San Francisco, CA 94016" +191634,Lightning Charging Cable,2,14.95,04/13/19 00:02,"387 Wilson St, Boston, MA 02215" +191635,AA Batteries (4-pack),1,3.84,04/16/19 00:34,"444 West St, Boston, MA 02215" +191636,Wired Headphones,1,11.99,04/16/19 11:18,"361 Maple St, Boston, MA 02215" +191637,Google Phone,1,600,04/28/19 05:55,"904 1st St, Portland, OR 97035" +191637,Wired Headphones,1,11.99,04/28/19 05:55,"904 1st St, Portland, OR 97035" +191638,Apple Airpods Headphones,1,150,04/30/19 09:26,"551 4th St, New York City, NY 10001" +191639,Google Phone,1,600,04/14/19 20:17,"897 Ridge St, San Francisco, CA 94016" +191640,Lightning Charging Cable,1,14.95,04/08/19 15:25,"260 8th St, Boston, MA 02215" +191641,iPhone,1,700,04/08/19 18:29,"941 Lake St, San Francisco, CA 94016" +191642,Flatscreen TV,1,300,04/11/19 06:35,"165 Johnson St, Boston, MA 02215" +191643,27in 4K Gaming Monitor,1,389.99,04/24/19 08:14,"593 Ridge St, Los Angeles, CA 90001" +191644,27in 4K Gaming Monitor,1,389.99,04/17/19 10:28,"13 8th St, Boston, MA 02215" +191645,USB-C Charging Cable,1,11.95,04/15/19 12:30,"200 Spruce St, San Francisco, CA 94016" +191646,AA Batteries (4-pack),1,3.84,04/15/19 12:55,"624 6th St, San Francisco, CA 94016" +191647,Lightning Charging Cable,1,14.95,04/20/19 19:08,"969 Lake St, Los Angeles, CA 90001" +191648,Google Phone,1,600,04/02/19 15:02,"755 Madison St, Los Angeles, CA 90001" +191648,USB-C Charging Cable,1,11.95,04/02/19 15:02,"755 Madison St, Los Angeles, CA 90001" +191649,iPhone,1,700,04/05/19 12:44,"227 Ridge St, Los Angeles, CA 90001" +191649,USB-C Charging Cable,1,11.95,04/05/19 12:44,"227 Ridge St, Los Angeles, CA 90001" +191650,Apple Airpods Headphones,1,150,04/09/19 12:44,"793 Hickory St, Atlanta, GA 30301" +191651,USB-C Charging Cable,1,11.95,04/20/19 13:33,"500 Elm St, Los Angeles, CA 90001" +191652,AA Batteries (4-pack),1,3.84,04/05/19 20:47,"369 9th St, Seattle, WA 98101" +191653,USB-C Charging Cable,1,11.95,04/27/19 13:04,"218 Hill St, Seattle, WA 98101" +191654,AA Batteries (4-pack),1,3.84,04/05/19 19:22,"393 5th St, Seattle, WA 98101" +191655,Lightning Charging Cable,1,14.95,04/01/19 15:14,"854 Main St, Dallas, TX 75001" +191656,Lightning Charging Cable,1,14.95,04/12/19 05:08,"895 Jefferson St, San Francisco, CA 94016" +191657,USB-C Charging Cable,1,11.95,04/21/19 17:16,"95 Madison St, San Francisco, CA 94016" +191658,USB-C Charging Cable,1,11.95,04/21/19 13:22,"765 Forest St, Austin, TX 73301" +191659,Apple Airpods Headphones,1,150,04/06/19 17:56,"500 Jefferson St, Seattle, WA 98101" +,,,,, +191660,Vareebadd Phone,1,400,04/16/19 18:11,"653 Center St, Atlanta, GA 30301" +191661,20in Monitor,1,109.99,04/12/19 17:36,"221 Adams St, Seattle, WA 98101" +191662,Wired Headphones,1,11.99,04/15/19 09:26,"550 North St, San Francisco, CA 94016" +191662,Wired Headphones,1,11.99,04/15/19 09:26,"550 North St, San Francisco, CA 94016" +191663,Bose SoundSport Headphones,1,99.99,04/29/19 13:54,"112 Lakeview St, New York City, NY 10001" +191664,27in FHD Monitor,1,149.99,04/08/19 05:08,"466 12th St, Portland, OR 97035" +191665,Lightning Charging Cable,1,14.95,04/22/19 22:01,"902 Cherry St, Austin, TX 73301" +191666,Bose SoundSport Headphones,1,99.99,04/01/19 16:15,"185 River St, Seattle, WA 98101" +191667,Apple Airpods Headphones,1,150,04/26/19 23:22,"503 Chestnut St, Los Angeles, CA 90001" +191668,AAA Batteries (4-pack),1,2.99,04/27/19 12:18,"588 Dogwood St, Boston, MA 02215" +191669,27in 4K Gaming Monitor,1,389.99,04/06/19 06:17,"415 Church St, San Francisco, CA 94016" +191670,USB-C Charging Cable,1,11.95,04/30/19 23:39,"942 River St, New York City, NY 10001" +191671,Wired Headphones,1,11.99,04/11/19 18:03,"644 1st St, Boston, MA 02215" +191672,Apple Airpods Headphones,1,150,04/25/19 14:53,"382 2nd St, Los Angeles, CA 90001" +191673,Lightning Charging Cable,1,14.95,04/16/19 10:08,"259 Chestnut St, New York City, NY 10001" +191674,Apple Airpods Headphones,1,150,04/23/19 19:11,"654 Meadow St, Atlanta, GA 30301" +191675,LG Dryer,1,600.0,04/23/19 09:35,"491 Spruce St, Portland, OR 97035" +191676,AAA Batteries (4-pack),1,2.99,04/27/19 19:48,"369 5th St, San Francisco, CA 94016" +191677,AA Batteries (4-pack),2,3.84,04/30/19 16:19,"309 Church St, New York City, NY 10001" +191678,Bose SoundSport Headphones,1,99.99,04/21/19 14:06,"137 Pine St, Boston, MA 02215" +191679,34in Ultrawide Monitor,1,379.99,04/13/19 10:07,"644 Lincoln St, Dallas, TX 75001" +191680,AA Batteries (4-pack),2,3.84,04/16/19 12:48,"379 Hill St, San Francisco, CA 94016" +191681,34in Ultrawide Monitor,1,379.99,04/04/19 15:01,"156 River St, San Francisco, CA 94016" +191682,Google Phone,1,600,04/21/19 20:24,"1 11th St, Los Angeles, CA 90001" +191683,Wired Headphones,1,11.99,04/15/19 11:12,"765 Cedar St, San Francisco, CA 94016" +191684,AA Batteries (4-pack),1,3.84,04/02/19 10:20,"950 7th St, Seattle, WA 98101" +191685,Wired Headphones,1,11.99,04/26/19 11:39,"246 Johnson St, Los Angeles, CA 90001" +191686,AAA Batteries (4-pack),2,2.99,04/21/19 18:08,"61 7th St, Los Angeles, CA 90001" +191687,Lightning Charging Cable,1,14.95,04/13/19 23:24,"645 Center St, Atlanta, GA 30301" +191688,USB-C Charging Cable,1,11.95,04/07/19 11:16,"815 Spruce St, Atlanta, GA 30301" +191689,AA Batteries (4-pack),1,3.84,04/21/19 00:10,"342 7th St, New York City, NY 10001" +191690,AA Batteries (4-pack),1,3.84,04/16/19 18:33,"559 Dogwood St, Boston, MA 02215" +191691,USB-C Charging Cable,1,11.95,04/20/19 12:28,"482 Dogwood St, Portland, OR 97035" +191692,Bose SoundSport Headphones,1,99.99,04/21/19 05:54,"785 Center St, New York City, NY 10001" +191693,AAA Batteries (4-pack),1,2.99,04/03/19 20:08,"516 5th St, Boston, MA 02215" +191694,USB-C Charging Cable,1,11.95,04/13/19 10:05,"502 4th St, San Francisco, CA 94016" +191695,27in FHD Monitor,1,149.99,04/09/19 12:29,"609 6th St, Seattle, WA 98101" +191696,Wired Headphones,2,11.99,04/01/19 19:33,"757 Hickory St, Dallas, TX 75001" +191697,Wired Headphones,1,11.99,04/06/19 10:15,"810 Washington St, San Francisco, CA 94016" +191698,Bose SoundSport Headphones,1,99.99,04/30/19 16:24,"122 6th St, San Francisco, CA 94016" +191699,AA Batteries (4-pack),2,3.84,04/06/19 16:37,"786 Washington St, New York City, NY 10001" +191700,AAA Batteries (4-pack),1,2.99,04/04/19 21:09,"339 Forest St, San Francisco, CA 94016" +191701,27in FHD Monitor,1,149.99,04/12/19 22:40,"566 Hill St, Seattle, WA 98101" +191702,AA Batteries (4-pack),1,3.84,04/27/19 15:17,"371 South St, Los Angeles, CA 90001" +191703,iPhone,1,700,04/27/19 18:02,"265 Sunset St, Boston, MA 02215" +191704,ThinkPad Laptop,1,999.99,04/25/19 09:58,"220 Jackson St, New York City, NY 10001" +191705,Wired Headphones,1,11.99,04/24/19 21:19,"944 Main St, San Francisco, CA 94016" +191706,Bose SoundSport Headphones,1,99.99,04/01/19 11:57,"166 7th St, New York City, NY 10001" +191707,Bose SoundSport Headphones,1,99.99,04/15/19 21:59,"220 Main St, Seattle, WA 98101" +191708,AAA Batteries (4-pack),1,2.99,04/03/19 21:36,"670 Willow St, Boston, MA 02215" +191709,USB-C Charging Cable,1,11.95,04/27/19 08:18,"820 Jackson St, New York City, NY 10001" +191710,27in FHD Monitor,1,149.99,04/23/19 04:21,"493 14th St, San Francisco, CA 94016" +191711,34in Ultrawide Monitor,1,379.99,04/20/19 16:30,"250 Meadow St, New York City, NY 10001" +191712,20in Monitor,1,109.99,04/13/19 18:33,"829 Jefferson St, Austin, TX 73301" +191713,Lightning Charging Cable,1,14.95,04/21/19 19:47,"421 Sunset St, Austin, TX 73301" +191714,20in Monitor,1,109.99,04/21/19 18:58,"183 Main St, Portland, ME 04101" +191715,Macbook Pro Laptop,1,1700,04/20/19 20:12,"276 Jackson St, New York City, NY 10001" +191716,Bose SoundSport Headphones,1,99.99,04/02/19 18:23,"790 6th St, Portland, OR 97035" +191717,Lightning Charging Cable,2,14.95,04/10/19 21:41,"730 Lincoln St, Seattle, WA 98101" +191718,Lightning Charging Cable,1,14.95,04/30/19 17:44,"392 Johnson St, San Francisco, CA 94016" +191719,USB-C Charging Cable,1,11.95,04/05/19 14:48,"314 Chestnut St, Seattle, WA 98101" +191720,Lightning Charging Cable,1,14.95,04/25/19 08:09,"782 North St, San Francisco, CA 94016" +191721,Bose SoundSport Headphones,1,99.99,04/20/19 10:31,"17 Lincoln St, San Francisco, CA 94016" +191722,AAA Batteries (4-pack),3,2.99,04/07/19 18:27,"156 Park St, San Francisco, CA 94016" +191723,iPhone,1,700,04/20/19 12:10,"872 Pine St, San Francisco, CA 94016" +191724,Wired Headphones,1,11.99,04/06/19 07:48,"827 Ridge St, San Francisco, CA 94016" +191725,Bose SoundSport Headphones,1,99.99,04/05/19 09:14,"430 Dogwood St, New York City, NY 10001" +191726,Macbook Pro Laptop,1,1700,04/12/19 06:38,"557 Adams St, Boston, MA 02215" +191727,Wired Headphones,1,11.99,04/26/19 13:56,"896 7th St, Austin, TX 73301" +191728,AA Batteries (4-pack),1,3.84,04/20/19 07:17,"763 9th St, San Francisco, CA 94016" +191729,LG Washing Machine,1,600.0,04/21/19 13:20,"430 Madison St, Atlanta, GA 30301" +191730,Lightning Charging Cable,1,14.95,04/20/19 17:37,"318 West St, Austin, TX 73301" +191731,Lightning Charging Cable,1,14.95,04/30/19 09:41,"285 Walnut St, San Francisco, CA 94016" +191732,34in Ultrawide Monitor,1,379.99,04/16/19 14:58,"720 Jefferson St, Portland, OR 97035" +191733,Flatscreen TV,1,300,04/13/19 21:46,"108 4th St, Seattle, WA 98101" +191734,34in Ultrawide Monitor,1,379.99,04/23/19 09:07,"919 13th St, Los Angeles, CA 90001" +191735,AA Batteries (4-pack),1,3.84,04/11/19 11:47,"138 Main St, San Francisco, CA 94016" +191736,Apple Airpods Headphones,1,150,04/30/19 19:58,"449 Jackson St, Portland, ME 04101" +191737,Macbook Pro Laptop,1,1700,04/15/19 09:27,"410 14th St, San Francisco, CA 94016" +191738,Flatscreen TV,1,300,04/08/19 10:44,"80 12th St, New York City, NY 10001" +191739,Apple Airpods Headphones,1,150,04/10/19 22:00,"904 Jefferson St, San Francisco, CA 94016" +191740,Lightning Charging Cable,1,14.95,04/27/19 13:48,"218 River St, Dallas, TX 75001" +191741,Bose SoundSport Headphones,1,99.99,04/14/19 18:41,"48 Highland St, Austin, TX 73301" +191742,Vareebadd Phone,1,400,04/26/19 12:01,"566 West St, Portland, ME 04101" +191743,Apple Airpods Headphones,1,150,04/06/19 10:42,"983 Spruce St, New York City, NY 10001" +191744,Lightning Charging Cable,1,14.95,04/01/19 12:27,"3 5th St, New York City, NY 10001" +191745,AA Batteries (4-pack),2,3.84,04/02/19 21:23,"480 Hickory St, Austin, TX 73301" +191746,AA Batteries (4-pack),1,3.84,04/13/19 21:17,"946 Cedar St, New York City, NY 10001" +191747,USB-C Charging Cable,1,11.95,04/20/19 23:19,"464 Lincoln St, San Francisco, CA 94016" +191748,AA Batteries (4-pack),2,3.84,04/25/19 09:30,"210 10th St, New York City, NY 10001" +191749,USB-C Charging Cable,1,11.95,04/09/19 19:07,"153 Cedar St, Los Angeles, CA 90001" +191750,USB-C Charging Cable,2,11.95,04/02/19 11:59,"86 Jefferson St, Atlanta, GA 30301" +191751,Google Phone,1,600,04/23/19 14:20,"701 Hill St, Los Angeles, CA 90001" +191752,ThinkPad Laptop,1,999.99,04/20/19 19:39,"780 Pine St, Los Angeles, CA 90001" +191753,AA Batteries (4-pack),1,3.84,04/09/19 21:43,"234 Chestnut St, Boston, MA 02215" +191754,Wired Headphones,1,11.99,04/03/19 10:18,"140 7th St, New York City, NY 10001" +191755,USB-C Charging Cable,1,11.95,04/27/19 17:35,"318 Spruce St, San Francisco, CA 94016" +191756,USB-C Charging Cable,1,11.95,04/14/19 11:37,"16 Hill St, Los Angeles, CA 90001" +191757,Vareebadd Phone,1,400,04/11/19 18:23,"48 Main St, San Francisco, CA 94016" +191757,USB-C Charging Cable,1,11.95,04/11/19 18:23,"48 Main St, San Francisco, CA 94016" +191758,Flatscreen TV,1,300,04/20/19 17:51,"591 Elm St, San Francisco, CA 94016" +191759,AAA Batteries (4-pack),1,2.99,05/01/19 00:56,"256 Park St, Boston, MA 02215" +191760,Wired Headphones,1,11.99,04/25/19 14:54,"589 6th St, San Francisco, CA 94016" +191761,Bose SoundSport Headphones,1,99.99,04/19/19 06:57,"871 11th St, Seattle, WA 98101" +191762,Apple Airpods Headphones,1,150,04/22/19 23:15,"938 Walnut St, Dallas, TX 75001" +191763,Wired Headphones,1,11.99,04/11/19 18:49,"301 Dogwood St, Los Angeles, CA 90001" +191764,Wired Headphones,2,11.99,04/03/19 07:31,"455 2nd St, San Francisco, CA 94016" +191765,Lightning Charging Cable,1,14.95,04/04/19 15:40,"870 5th St, San Francisco, CA 94016" +191766,Lightning Charging Cable,1,14.95,04/20/19 19:28,"847 Lake St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +191767,AAA Batteries (4-pack),1,2.99,04/25/19 21:56,"560 Maple St, Boston, MA 02215" +191768,USB-C Charging Cable,1,11.95,04/28/19 17:23,"841 Spruce St, Boston, MA 02215" +191769,Apple Airpods Headphones,1,150,04/10/19 10:39,"870 Wilson St, San Francisco, CA 94016" +191770,AA Batteries (4-pack),1,3.84,04/27/19 12:49,"437 Wilson St, Seattle, WA 98101" +191771,Macbook Pro Laptop,1,1700,04/25/19 13:33,"732 Elm St, Los Angeles, CA 90001" +191772,Wired Headphones,1,11.99,04/12/19 09:54,"56 Main St, Los Angeles, CA 90001" +191773,AA Batteries (4-pack),2,3.84,04/20/19 19:23,"110 Highland St, San Francisco, CA 94016" +191774,Wired Headphones,1,11.99,04/02/19 08:41,"191 Spruce St, New York City, NY 10001" +191775,Lightning Charging Cable,1,14.95,04/22/19 22:53,"496 12th St, Atlanta, GA 30301" +191776,AAA Batteries (4-pack),1,2.99,04/23/19 19:47,"42 Meadow St, New York City, NY 10001" +191776,Lightning Charging Cable,2,14.95,04/23/19 19:47,"42 Meadow St, New York City, NY 10001" +191777,Wired Headphones,1,11.99,04/26/19 21:24,"109 Center St, Dallas, TX 75001" +191778,Vareebadd Phone,1,400,04/09/19 00:45,"184 Maple St, Los Angeles, CA 90001" +191778,USB-C Charging Cable,1,11.95,04/09/19 00:45,"184 Maple St, Los Angeles, CA 90001" +191779,Macbook Pro Laptop,1,1700,04/01/19 09:30,"122 Jackson St, Austin, TX 73301" +191780,LG Washing Machine,1,600.0,04/28/19 20:48,"985 South St, San Francisco, CA 94016" +191781,AA Batteries (4-pack),2,3.84,04/17/19 10:27,"754 Dogwood St, Seattle, WA 98101" +191782,AA Batteries (4-pack),1,3.84,05/01/19 00:33,"821 Church St, Los Angeles, CA 90001" +191783,Lightning Charging Cable,1,14.95,04/13/19 01:34,"795 Highland St, San Francisco, CA 94016" +191784,Bose SoundSport Headphones,1,99.99,04/01/19 13:12,"19 1st St, San Francisco, CA 94016" +191785,Flatscreen TV,1,300,04/02/19 08:21,"86 Church St, Austin, TX 73301" +191786,AAA Batteries (4-pack),1,2.99,04/18/19 11:38,"895 1st St, San Francisco, CA 94016" +191787,USB-C Charging Cable,1,11.95,04/16/19 10:25,"855 4th St, Austin, TX 73301" +191788,27in FHD Monitor,1,149.99,04/17/19 10:28,"336 West St, Austin, TX 73301" +191789,AAA Batteries (4-pack),2,2.99,04/12/19 20:06,"652 Wilson St, Dallas, TX 75001" +191790,Macbook Pro Laptop,1,1700,04/11/19 19:10,"531 Maple St, Portland, ME 04101" +191791,Macbook Pro Laptop,1,1700,04/05/19 10:51,"917 Madison St, Boston, MA 02215" +191792,27in FHD Monitor,2,149.99,04/29/19 21:13,"63 Highland St, Los Angeles, CA 90001" +191793,USB-C Charging Cable,1,11.95,04/11/19 12:55,"822 Forest St, Portland, ME 04101" +191794,USB-C Charging Cable,2,11.95,04/29/19 09:58,"358 Lake St, San Francisco, CA 94016" +191795,USB-C Charging Cable,1,11.95,04/28/19 18:52,"462 Cedar St, San Francisco, CA 94016" +191796,USB-C Charging Cable,1,11.95,04/18/19 12:57,"775 Wilson St, Dallas, TX 75001" +191797,27in FHD Monitor,1,149.99,04/12/19 19:18,"571 Washington St, New York City, NY 10001" +191798,Lightning Charging Cable,1,14.95,04/23/19 19:00,"892 6th St, San Francisco, CA 94016" +191799,Lightning Charging Cable,1,14.95,04/09/19 12:22,"175 11th St, San Francisco, CA 94016" +191800,34in Ultrawide Monitor,1,379.99,04/12/19 16:16,"837 Hill St, Atlanta, GA 30301" +191801,Lightning Charging Cable,1,14.95,04/24/19 10:57,"497 Walnut St, New York City, NY 10001" +191802,AAA Batteries (4-pack),2,2.99,04/02/19 13:54,"190 Main St, New York City, NY 10001" +191803,Bose SoundSport Headphones,1,99.99,04/07/19 11:22,"652 Washington St, Los Angeles, CA 90001" +191804,USB-C Charging Cable,2,11.95,04/28/19 19:57,"383 Madison St, Boston, MA 02215" +191805,ThinkPad Laptop,1,999.99,04/09/19 16:05,"532 Cherry St, San Francisco, CA 94016" +191806,USB-C Charging Cable,1,11.95,04/03/19 18:42,"353 Wilson St, Dallas, TX 75001" +191807,Lightning Charging Cable,1,14.95,04/24/19 20:35,"334 Wilson St, San Francisco, CA 94016" +191808,27in 4K Gaming Monitor,1,389.99,04/12/19 11:17,"793 Lincoln St, Boston, MA 02215" +191809,USB-C Charging Cable,1,11.95,04/07/19 15:29,"628 Willow St, Portland, OR 97035" +191810,Apple Airpods Headphones,1,150,04/24/19 11:11,"338 Dogwood St, Los Angeles, CA 90001" +191811,AA Batteries (4-pack),2,3.84,04/11/19 11:44,"290 11th St, San Francisco, CA 94016" +191812,AAA Batteries (4-pack),2,2.99,04/06/19 21:53,"329 8th St, New York City, NY 10001" +191813,Apple Airpods Headphones,1,150,04/10/19 12:16,"107 Main St, San Francisco, CA 94016" +191814,Lightning Charging Cable,1,14.95,04/14/19 20:14,"466 2nd St, New York City, NY 10001" +191815,AA Batteries (4-pack),2,3.84,04/14/19 18:46,"311 Johnson St, New York City, NY 10001" +191816,Wired Headphones,1,11.99,04/19/19 23:10,"987 Elm St, Portland, ME 04101" +191817,USB-C Charging Cable,1,11.95,04/14/19 09:52,"524 North St, San Francisco, CA 94016" +191818,iPhone,1,700,04/16/19 18:04,"327 8th St, Los Angeles, CA 90001" +191819,Google Phone,1,600,04/27/19 13:26,"344 Sunset St, San Francisco, CA 94016" +191819,USB-C Charging Cable,1,11.95,04/27/19 13:26,"344 Sunset St, San Francisco, CA 94016" +191820,Vareebadd Phone,1,400,04/17/19 19:38,"680 Lincoln St, Seattle, WA 98101" +191820,USB-C Charging Cable,1,11.95,04/17/19 19:38,"680 Lincoln St, Seattle, WA 98101" +191821,Lightning Charging Cable,1,14.95,04/16/19 18:39,"660 Church St, Atlanta, GA 30301" +191822,20in Monitor,1,109.99,04/14/19 14:00,"33 Jefferson St, San Francisco, CA 94016" +191823,27in FHD Monitor,1,149.99,04/22/19 20:21,"3 10th St, Atlanta, GA 30301" +191824,Apple Airpods Headphones,1,150,04/20/19 23:43,"567 Lincoln St, Los Angeles, CA 90001" +191825,34in Ultrawide Monitor,1,379.99,04/23/19 16:59,"581 13th St, San Francisco, CA 94016" +191826,USB-C Charging Cable,1,11.95,04/29/19 09:48,"546 Wilson St, San Francisco, CA 94016" +191827,Vareebadd Phone,1,400,04/22/19 08:34,"392 Elm St, San Francisco, CA 94016" +191828,Macbook Pro Laptop,1,1700,04/04/19 23:41,"561 Lakeview St, Los Angeles, CA 90001" +191829,Wired Headphones,1,11.99,04/06/19 04:39,"478 Sunset St, New York City, NY 10001" +191830,AA Batteries (4-pack),2,3.84,04/08/19 08:56,"76 Jefferson St, New York City, NY 10001" +191831,USB-C Charging Cable,1,11.95,04/29/19 15:50,"835 Elm St, Boston, MA 02215" +191832,AA Batteries (4-pack),1,3.84,04/06/19 20:22,"60 Hickory St, Los Angeles, CA 90001" +191833,Macbook Pro Laptop,1,1700,04/09/19 20:15,"887 Highland St, San Francisco, CA 94016" +191834,Wired Headphones,1,11.99,04/22/19 21:05,"671 Sunset St, New York City, NY 10001" +191835,Lightning Charging Cable,2,14.95,04/23/19 12:01,"569 Sunset St, Austin, TX 73301" +191836,iPhone,1,700,04/19/19 17:14,"157 Washington St, Portland, OR 97035" +191837,USB-C Charging Cable,1,11.95,04/16/19 15:49,"432 Dogwood St, Dallas, TX 75001" +191838,AA Batteries (4-pack),1,3.84,04/24/19 19:48,"429 West St, New York City, NY 10001" +191839,Bose SoundSport Headphones,1,99.99,04/16/19 16:17,"831 Forest St, San Francisco, CA 94016" +191840,Google Phone,1,600,04/27/19 23:41,"785 1st St, San Francisco, CA 94016" +191840,USB-C Charging Cable,1,11.95,04/27/19 23:41,"785 1st St, San Francisco, CA 94016" +191841,Flatscreen TV,1,300,04/06/19 00:31,"948 Highland St, New York City, NY 10001" +191842,USB-C Charging Cable,1,11.95,04/16/19 04:39,"938 Ridge St, Atlanta, GA 30301" +191843,Google Phone,1,600,04/12/19 14:09,"609 5th St, San Francisco, CA 94016" +191844,Wired Headphones,1,11.99,04/17/19 21:49,"596 Ridge St, San Francisco, CA 94016" +191845,Bose SoundSport Headphones,1,99.99,04/15/19 10:31,"571 Jefferson St, Seattle, WA 98101" +191846,AAA Batteries (4-pack),1,2.99,04/23/19 17:08,"640 Highland St, Los Angeles, CA 90001" +191847,Wired Headphones,1,11.99,04/09/19 01:07,"295 Washington St, Boston, MA 02215" +191848,Wired Headphones,2,11.99,04/16/19 14:22,"65 Elm St, Boston, MA 02215" +191849,Lightning Charging Cable,1,14.95,04/01/19 17:28,"247 Ridge St, Boston, MA 02215" +191850,USB-C Charging Cable,1,11.95,04/13/19 11:26,"988 14th St, Dallas, TX 75001" +191851,Apple Airpods Headphones,1,150,04/22/19 14:48,"749 8th St, Atlanta, GA 30301" +191852,AA Batteries (4-pack),2,3.84,04/05/19 18:55,"222 Chestnut St, Seattle, WA 98101" +191853,Wired Headphones,1,11.99,04/24/19 13:52,"634 Jackson St, Los Angeles, CA 90001" +191854,AAA Batteries (4-pack),1,2.99,04/13/19 03:03,"991 6th St, San Francisco, CA 94016" +191855,34in Ultrawide Monitor,1,379.99,04/19/19 11:51,"922 Willow St, Portland, OR 97035" +191856,Lightning Charging Cable,1,14.95,04/12/19 17:36,"505 Park St, San Francisco, CA 94016" +191857,Macbook Pro Laptop,1,1700,04/20/19 07:52,"413 10th St, New York City, NY 10001" +191858,AA Batteries (4-pack),1,3.84,04/17/19 10:37,"948 Park St, Boston, MA 02215" +191859,USB-C Charging Cable,1,11.95,04/08/19 00:22,"367 Willow St, San Francisco, CA 94016" +191860,Apple Airpods Headphones,1,150,04/11/19 19:33,"174 Lincoln St, Atlanta, GA 30301" +191861,Bose SoundSport Headphones,2,99.99,04/10/19 15:19,"185 Ridge St, San Francisco, CA 94016" +191862,AA Batteries (4-pack),2,3.84,04/24/19 15:22,"740 14th St, Atlanta, GA 30301" +191863,USB-C Charging Cable,1,11.95,04/21/19 16:28,"326 Jefferson St, Seattle, WA 98101" +191864,AA Batteries (4-pack),1,3.84,04/23/19 17:24,"897 South St, Boston, MA 02215" +191865,Lightning Charging Cable,1,14.95,04/10/19 07:31,"498 Willow St, Portland, OR 97035" +191866,Bose SoundSport Headphones,1,99.99,04/09/19 11:31,"779 Lincoln St, New York City, NY 10001" +191867,20in Monitor,1,109.99,04/26/19 21:40,"773 11th St, Seattle, WA 98101" +191868,Wired Headphones,1,11.99,04/09/19 16:03,"529 13th St, Boston, MA 02215" +191869,AA Batteries (4-pack),1,3.84,04/08/19 16:03,"315 Lakeview St, New York City, NY 10001" +191870,ThinkPad Laptop,1,999.99,04/06/19 08:16,"409 Johnson St, Austin, TX 73301" +191871,Wired Headphones,1,11.99,04/24/19 21:20,"298 13th St, Seattle, WA 98101" +191871,34in Ultrawide Monitor,1,379.99,04/24/19 21:20,"298 13th St, Seattle, WA 98101" +191872,USB-C Charging Cable,1,11.95,04/04/19 04:05,"880 Forest St, San Francisco, CA 94016" +191873,Apple Airpods Headphones,1,150,04/29/19 14:01,"777 Sunset St, Seattle, WA 98101" +191874,AAA Batteries (4-pack),1,2.99,04/25/19 12:35,"40 Jefferson St, Atlanta, GA 30301" +191875,Wired Headphones,1,11.99,04/23/19 14:20,"616 Ridge St, San Francisco, CA 94016" +191876,20in Monitor,1,109.99,04/17/19 16:36,"580 7th St, Boston, MA 02215" +191877,Lightning Charging Cable,1,14.95,04/24/19 20:58,"369 Elm St, Atlanta, GA 30301" +191878,USB-C Charging Cable,1,11.95,04/10/19 16:20,"880 Meadow St, San Francisco, CA 94016" +191879,AAA Batteries (4-pack),2,2.99,04/08/19 13:04,"110 Adams St, Boston, MA 02215" +191880,Wired Headphones,1,11.99,04/01/19 12:10,"495 Madison St, Los Angeles, CA 90001" +191881,27in 4K Gaming Monitor,1,389.99,04/30/19 14:10,"447 Pine St, San Francisco, CA 94016" +191882,Wired Headphones,1,11.99,04/15/19 21:06,"846 Willow St, San Francisco, CA 94016" +191883,34in Ultrawide Monitor,1,379.99,04/24/19 22:26,"36 Maple St, Dallas, TX 75001" +191884,27in FHD Monitor,1,149.99,04/24/19 13:50,"477 Johnson St, San Francisco, CA 94016" +191885,ThinkPad Laptop,1,999.99,04/11/19 19:11,"655 West St, Dallas, TX 75001" +191886,LG Dryer,1,600.0,04/19/19 15:31,"743 Elm St, San Francisco, CA 94016" +191887,LG Washing Machine,1,600.0,04/17/19 16:12,"467 10th St, San Francisco, CA 94016" +191888,Lightning Charging Cable,1,14.95,04/13/19 19:08,"633 Maple St, Boston, MA 02215" +191889,AAA Batteries (4-pack),1,2.99,04/14/19 15:40,"766 Church St, New York City, NY 10001" +191890,ThinkPad Laptop,1,999.99,04/05/19 12:46,"454 6th St, Seattle, WA 98101" +191891,iPhone,1,700,04/29/19 11:18,"863 Cedar St, Dallas, TX 75001" +191891,Apple Airpods Headphones,1,150,04/29/19 11:18,"863 Cedar St, Dallas, TX 75001" +191892,AA Batteries (4-pack),4,3.84,04/03/19 16:36,"603 11th St, Atlanta, GA 30301" +191893,27in FHD Monitor,1,149.99,04/07/19 08:40,"928 Hickory St, Portland, OR 97035" +191894,Wired Headphones,1,11.99,04/24/19 10:01,"347 6th St, Austin, TX 73301" +191895,Bose SoundSport Headphones,1,99.99,04/03/19 13:45,"620 Willow St, New York City, NY 10001" +191896,Macbook Pro Laptop,1,1700,04/06/19 10:30,"992 Dogwood St, Boston, MA 02215" +191897,Google Phone,1,600,04/09/19 17:18,"716 Jefferson St, Los Angeles, CA 90001" +191897,Wired Headphones,1,11.99,04/09/19 17:18,"716 Jefferson St, Los Angeles, CA 90001" +191898,USB-C Charging Cable,1,11.95,04/21/19 08:30,"229 Lakeview St, Portland, OR 97035" +191899,USB-C Charging Cable,1,11.95,04/18/19 15:49,"306 14th St, San Francisco, CA 94016" +191900,AAA Batteries (4-pack),2,2.99,04/20/19 16:40,"125 Willow St, Los Angeles, CA 90001" +191901,Google Phone,1,600,04/13/19 12:38,"224 7th St, Austin, TX 73301" +191901,Bose SoundSport Headphones,1,99.99,04/13/19 12:38,"224 7th St, Austin, TX 73301" +191902,AA Batteries (4-pack),2,3.84,04/12/19 10:29,"223 13th St, Seattle, WA 98101" +191903,USB-C Charging Cable,1,11.95,04/09/19 21:46,"41 Walnut St, Los Angeles, CA 90001" +191904,Bose SoundSport Headphones,1,99.99,04/20/19 11:29,"680 Church St, New York City, NY 10001" +191905,AA Batteries (4-pack),1,3.84,04/29/19 12:08,"612 Jackson St, Austin, TX 73301" +191906,Bose SoundSport Headphones,1,99.99,04/18/19 11:05,"281 Spruce St, Seattle, WA 98101" +191907,AAA Batteries (4-pack),3,2.99,04/21/19 08:49,"229 Pine St, Los Angeles, CA 90001" +191908,iPhone,1,700,04/12/19 18:37,"95 5th St, Austin, TX 73301" +191909,USB-C Charging Cable,1,11.95,04/14/19 00:58,"698 Jefferson St, San Francisco, CA 94016" +191910,Bose SoundSport Headphones,1,99.99,04/19/19 16:18,"717 Adams St, San Francisco, CA 94016" +191911,Macbook Pro Laptop,1,1700,05/01/19 00:25,"373 Hill St, Los Angeles, CA 90001" +191912,Wired Headphones,1,11.99,04/11/19 19:39,"286 Hickory St, San Francisco, CA 94016" +191913,AA Batteries (4-pack),1,3.84,04/30/19 17:34,"448 10th St, New York City, NY 10001" +191914,ThinkPad Laptop,1,999.99,04/28/19 20:25,"685 Hill St, Seattle, WA 98101" +191915,27in FHD Monitor,1,149.99,04/25/19 11:01,"28 Sunset St, Boston, MA 02215" +191916,USB-C Charging Cable,1,11.95,04/11/19 16:27,"986 Forest St, Atlanta, GA 30301" +191917,AAA Batteries (4-pack),1,2.99,04/13/19 17:52,"634 Johnson St, New York City, NY 10001" +191918,USB-C Charging Cable,1,11.95,04/14/19 21:36,"30 Chestnut St, Los Angeles, CA 90001" +191919,USB-C Charging Cable,1,11.95,04/26/19 18:21,"90 Meadow St, San Francisco, CA 94016" +191920,Wired Headphones,1,11.99,04/29/19 16:20,"203 8th St, Atlanta, GA 30301" +191921,Wired Headphones,1,11.99,04/19/19 19:49,"639 9th St, Los Angeles, CA 90001" +191922,Lightning Charging Cable,1,14.95,04/26/19 18:23,"949 14th St, Seattle, WA 98101" +191923,Bose SoundSport Headphones,1,99.99,04/17/19 23:14,"341 Hill St, New York City, NY 10001" +191924,Apple Airpods Headphones,1,150,04/16/19 11:13,"59 Hill St, Los Angeles, CA 90001" +191925,AA Batteries (4-pack),1,3.84,04/08/19 17:25,"731 Meadow St, Portland, OR 97035" +191926,27in FHD Monitor,1,149.99,04/15/19 09:47,"66 Chestnut St, San Francisco, CA 94016" +191927,27in 4K Gaming Monitor,1,389.99,04/15/19 17:57,"239 West St, Seattle, WA 98101" +191928,AAA Batteries (4-pack),3,2.99,04/29/19 08:27,"27 Cedar St, Seattle, WA 98101" +191929,iPhone,1,700,04/21/19 12:49,"233 Cherry St, San Francisco, CA 94016" +191929,Lightning Charging Cable,1,14.95,04/21/19 12:49,"233 Cherry St, San Francisco, CA 94016" +191930,AA Batteries (4-pack),1,3.84,04/25/19 10:52,"846 Lake St, San Francisco, CA 94016" +191931,Lightning Charging Cable,1,14.95,04/20/19 21:16,"973 Park St, San Francisco, CA 94016" +191932,27in FHD Monitor,1,149.99,04/03/19 21:00,"533 Meadow St, Dallas, TX 75001" +191933,Bose SoundSport Headphones,1,99.99,04/26/19 18:21,"243 West St, Atlanta, GA 30301" +191934,Macbook Pro Laptop,1,1700,04/17/19 16:18,"920 Elm St, Los Angeles, CA 90001" +191935,AA Batteries (4-pack),1,3.84,04/23/19 09:37,"249 Hickory St, San Francisco, CA 94016" +191936,34in Ultrawide Monitor,1,379.99,04/06/19 11:04,"532 5th St, Dallas, TX 75001" +191937,AA Batteries (4-pack),2,3.84,04/28/19 19:41,"430 Wilson St, Dallas, TX 75001" +191938,USB-C Charging Cable,1,11.95,04/20/19 20:29,"232 Lincoln St, Los Angeles, CA 90001" +191939,Lightning Charging Cable,1,14.95,04/22/19 13:17,"376 Lake St, San Francisco, CA 94016" +191939,AA Batteries (4-pack),1,3.84,04/22/19 13:17,"376 Lake St, San Francisco, CA 94016" +191940,Apple Airpods Headphones,1,150,04/01/19 12:09,"155 10th St, Atlanta, GA 30301" +191941,Bose SoundSport Headphones,1,99.99,04/29/19 10:01,"166 Cherry St, Boston, MA 02215" +191942,AA Batteries (4-pack),1,3.84,04/21/19 19:38,"36 10th St, Boston, MA 02215" +191943,iPhone,1,700,04/07/19 22:39,"575 Madison St, Seattle, WA 98101" +191944,USB-C Charging Cable,1,11.95,04/22/19 20:28,"370 1st St, Seattle, WA 98101" +191945,Apple Airpods Headphones,1,150,04/08/19 14:02,"551 North St, San Francisco, CA 94016" +191946,Vareebadd Phone,1,400,04/30/19 08:02,"380 1st St, Los Angeles, CA 90001" +191947,Apple Airpods Headphones,1,150,04/06/19 07:41,"844 Madison St, Los Angeles, CA 90001" +191948,27in 4K Gaming Monitor,1,389.99,04/24/19 19:40,"966 River St, Seattle, WA 98101" +191949,AAA Batteries (4-pack),1,2.99,04/21/19 17:40,"175 Hill St, Seattle, WA 98101" +191950,USB-C Charging Cable,1,11.95,04/22/19 12:56,"960 Chestnut St, Los Angeles, CA 90001" +191951,AA Batteries (4-pack),1,3.84,04/16/19 21:31,"313 9th St, New York City, NY 10001" +191952,AAA Batteries (4-pack),1,2.99,04/19/19 18:59,"616 North St, San Francisco, CA 94016" +191953,AA Batteries (4-pack),2,3.84,04/27/19 16:59,"400 Highland St, New York City, NY 10001" +191954,27in 4K Gaming Monitor,1,389.99,04/20/19 17:35,"720 9th St, San Francisco, CA 94016" +191955,Wired Headphones,1,11.99,04/17/19 13:39,"312 5th St, San Francisco, CA 94016" +191956,Vareebadd Phone,1,400,04/18/19 19:19,"338 Dogwood St, San Francisco, CA 94016" +191957,Google Phone,1,600,04/08/19 14:58,"210 Forest St, Los Angeles, CA 90001" +191958,AA Batteries (4-pack),1,3.84,04/12/19 18:12,"472 Maple St, New York City, NY 10001" +191959,AA Batteries (4-pack),1,3.84,04/25/19 13:49,"536 Lincoln St, Portland, ME 04101" +191960,34in Ultrawide Monitor,1,379.99,04/24/19 06:47,"976 Maple St, Dallas, TX 75001" +191961,iPhone,1,700,04/26/19 15:15,"640 Walnut St, San Francisco, CA 94016" +191961,Lightning Charging Cable,1,14.95,04/26/19 15:15,"640 Walnut St, San Francisco, CA 94016" +191962,Apple Airpods Headphones,1,150,04/13/19 19:44,"537 Washington St, Boston, MA 02215" +191963,27in FHD Monitor,1,149.99,04/19/19 13:31,"59 North St, Austin, TX 73301" +191964,AA Batteries (4-pack),1,3.84,04/11/19 09:55,"77 Wilson St, San Francisco, CA 94016" +191965,27in 4K Gaming Monitor,1,389.99,04/24/19 16:25,"651 North St, San Francisco, CA 94016" +191966,iPhone,1,700,04/12/19 13:20,"61 14th St, Seattle, WA 98101" +191966,Wired Headphones,1,11.99,04/12/19 13:20,"61 14th St, Seattle, WA 98101" +191967,Apple Airpods Headphones,1,150,04/03/19 18:16,"90 Spruce St, Seattle, WA 98101" +191968,AAA Batteries (4-pack),1,2.99,04/28/19 15:03,"606 Chestnut St, San Francisco, CA 94016" +191969,27in 4K Gaming Monitor,1,389.99,04/12/19 17:36,"740 Wilson St, San Francisco, CA 94016" +191970,20in Monitor,1,109.99,04/02/19 11:03,"715 Adams St, San Francisco, CA 94016" +191971,Lightning Charging Cable,1,14.95,04/05/19 12:47,"360 5th St, New York City, NY 10001" +191972,Macbook Pro Laptop,1,1700,04/09/19 00:17,"688 14th St, San Francisco, CA 94016" +191973,Bose SoundSport Headphones,1,99.99,04/14/19 14:33,"608 Jefferson St, Boston, MA 02215" +191974,Bose SoundSport Headphones,1,99.99,04/27/19 19:28,"223 River St, San Francisco, CA 94016" +191975,Wired Headphones,1,11.99,04/30/19 11:06,"263 Jefferson St, New York City, NY 10001" +191976,Wired Headphones,1,11.99,04/01/19 18:36,"174 4th St, San Francisco, CA 94016" +191977,Lightning Charging Cable,1,14.95,04/04/19 15:55,"736 6th St, San Francisco, CA 94016" +191978,Apple Airpods Headphones,1,150,04/21/19 12:34,"481 Pine St, San Francisco, CA 94016" +191979,USB-C Charging Cable,1,11.95,04/02/19 18:14,"540 12th St, Atlanta, GA 30301" +191980,iPhone,1,700,04/18/19 02:59,"209 Madison St, Los Angeles, CA 90001" +191981,Lightning Charging Cable,1,14.95,04/25/19 18:51,"548 Washington St, Boston, MA 02215" +191982,Bose SoundSport Headphones,1,99.99,04/18/19 23:39,"561 Adams St, Los Angeles, CA 90001" +191983,AA Batteries (4-pack),1,3.84,04/05/19 18:40,"80 Adams St, San Francisco, CA 94016" +191984,Wired Headphones,1,11.99,04/29/19 08:01,"312 Ridge St, Portland, OR 97035" +191985,iPhone,1,700,04/24/19 17:08,"522 12th St, Dallas, TX 75001" +191985,Lightning Charging Cable,1,14.95,04/24/19 17:08,"522 12th St, Dallas, TX 75001" +191986,27in FHD Monitor,1,149.99,04/23/19 13:51,"242 River St, New York City, NY 10001" +191987,USB-C Charging Cable,1,11.95,04/18/19 13:30,"155 Ridge St, Boston, MA 02215" +191988,ThinkPad Laptop,1,999.99,04/07/19 18:24,"645 13th St, New York City, NY 10001" +191989,Flatscreen TV,1,300,04/25/19 14:32,"12 Maple St, Boston, MA 02215" +191990,Flatscreen TV,1,300,04/23/19 21:10,"564 Walnut St, Los Angeles, CA 90001" +191991,Lightning Charging Cable,1,14.95,04/29/19 10:24,"530 7th St, New York City, NY 10001" +191992,iPhone,1,700,04/02/19 22:09,"956 Lincoln St, Los Angeles, CA 90001" +191993,Bose SoundSport Headphones,1,99.99,04/16/19 11:48,"118 1st St, Seattle, WA 98101" +191994,Lightning Charging Cable,1,14.95,04/13/19 18:46,"723 Cherry St, Dallas, TX 75001" +191995,34in Ultrawide Monitor,1,379.99,04/21/19 11:34,"727 South St, Portland, OR 97035" +191996,USB-C Charging Cable,1,11.95,04/16/19 13:48,"366 Hickory St, Atlanta, GA 30301" +191996,USB-C Charging Cable,1,11.95,04/16/19 13:48,"366 Hickory St, Atlanta, GA 30301" +191997,AA Batteries (4-pack),1,3.84,04/30/19 16:46,"284 South St, San Francisco, CA 94016" +191998,Wired Headphones,1,11.99,04/24/19 09:26,"953 River St, Seattle, WA 98101" +191999,USB-C Charging Cable,1,11.95,04/17/19 12:56,"817 Maple St, San Francisco, CA 94016" +192000,Apple Airpods Headphones,1,150,04/20/19 21:42,"238 Washington St, San Francisco, CA 94016" +192001,USB-C Charging Cable,1,11.95,04/07/19 23:34,"381 Cedar St, Dallas, TX 75001" +192002,AA Batteries (4-pack),1,3.84,04/25/19 19:36,"238 West St, Atlanta, GA 30301" +192003,USB-C Charging Cable,1,11.95,04/17/19 14:20,"374 Maple St, Seattle, WA 98101" +192004,USB-C Charging Cable,1,11.95,04/29/19 14:15,"990 Pine St, New York City, NY 10001" +192005,27in FHD Monitor,1,149.99,04/12/19 19:23,"472 Hickory St, Seattle, WA 98101" +192006,AA Batteries (4-pack),1,3.84,04/27/19 22:17,"336 Washington St, New York City, NY 10001" +192007,Flatscreen TV,1,300,04/19/19 22:29,"824 Sunset St, Boston, MA 02215" +192008,Apple Airpods Headphones,1,150,04/14/19 16:39,"967 8th St, San Francisco, CA 94016" +192009,USB-C Charging Cable,2,11.95,04/21/19 11:12,"637 Lincoln St, Boston, MA 02215" +192010,Apple Airpods Headphones,1,150,04/23/19 16:56,"882 4th St, Los Angeles, CA 90001" +192011,AAA Batteries (4-pack),1,2.99,04/27/19 10:08,"620 Main St, Seattle, WA 98101" +192012,27in FHD Monitor,1,149.99,04/08/19 20:37,"473 Madison St, Dallas, TX 75001" +192013,USB-C Charging Cable,1,11.95,04/16/19 09:51,"339 Hickory St, Austin, TX 73301" +192014,Lightning Charging Cable,1,14.95,04/02/19 19:25,"576 Elm St, Atlanta, GA 30301" +192015,Lightning Charging Cable,1,14.95,04/03/19 22:29,"683 14th St, Atlanta, GA 30301" +192016,Lightning Charging Cable,1,14.95,04/07/19 11:53,"87 Dogwood St, New York City, NY 10001" +192017,AA Batteries (4-pack),1,3.84,04/04/19 22:14,"110 Ridge St, Dallas, TX 75001" +192018,Lightning Charging Cable,1,14.95,04/01/19 09:33,"262 Elm St, Atlanta, GA 30301" +192019,AA Batteries (4-pack),1,3.84,04/19/19 07:58,"388 Jefferson St, New York City, NY 10001" +192020,20in Monitor,1,109.99,04/23/19 22:00,"957 5th St, San Francisco, CA 94016" +192021,USB-C Charging Cable,1,11.95,04/04/19 20:59,"236 Lakeview St, San Francisco, CA 94016" +192022,Vareebadd Phone,1,400,04/04/19 17:19,"440 Jefferson St, Boston, MA 02215" +192022,Bose SoundSport Headphones,1,99.99,04/04/19 17:19,"440 Jefferson St, Boston, MA 02215" +192023,Bose SoundSport Headphones,1,99.99,04/21/19 15:29,"683 7th St, San Francisco, CA 94016" +192024,Bose SoundSport Headphones,1,99.99,04/08/19 22:16,"41 North St, Dallas, TX 75001" +192025,Google Phone,1,600,04/05/19 21:38,"197 Lakeview St, Boston, MA 02215" +192025,USB-C Charging Cable,1,11.95,04/05/19 21:38,"197 Lakeview St, Boston, MA 02215" +192026,Bose SoundSport Headphones,1,99.99,04/23/19 14:40,"18 Church St, Austin, TX 73301" +192027,iPhone,1,700,04/16/19 17:43,"92 13th St, San Francisco, CA 94016" +192028,Apple Airpods Headphones,1,150,04/29/19 23:10,"582 South St, New York City, NY 10001" +192029,20in Monitor,1,109.99,04/24/19 10:29,"759 Lincoln St, San Francisco, CA 94016" +192030,20in Monitor,1,109.99,04/07/19 00:07,"755 13th St, Los Angeles, CA 90001" +192031,AA Batteries (4-pack),1,3.84,04/18/19 13:34,"395 Dogwood St, San Francisco, CA 94016" +192032,Apple Airpods Headphones,1,150,04/17/19 15:08,"600 10th St, Portland, OR 97035" +192033,Apple Airpods Headphones,1,150,04/25/19 19:27,"828 Sunset St, New York City, NY 10001" +192034,Bose SoundSport Headphones,1,99.99,04/10/19 13:44,"632 Ridge St, Los Angeles, CA 90001" +192035,AA Batteries (4-pack),1,3.84,04/17/19 17:09,"934 Washington St, Los Angeles, CA 90001" +192036,Apple Airpods Headphones,1,150,04/10/19 11:50,"461 2nd St, Portland, OR 97035" +192037,Lightning Charging Cable,1,14.95,05/01/19 00:09,"656 1st St, San Francisco, CA 94016" +192038,34in Ultrawide Monitor,1,379.99,04/01/19 22:48,"809 Washington St, Boston, MA 02215" +192039,USB-C Charging Cable,1,11.95,04/27/19 10:34,"397 West St, San Francisco, CA 94016" +192040,AAA Batteries (4-pack),1,2.99,04/25/19 22:18,"530 Chestnut St, New York City, NY 10001" +192041,USB-C Charging Cable,1,11.95,04/05/19 19:29,"799 Washington St, Seattle, WA 98101" +192042,27in 4K Gaming Monitor,1,389.99,04/28/19 23:18,"756 Jefferson St, San Francisco, CA 94016" +192043,Apple Airpods Headphones,1,150,04/07/19 17:33,"968 Dogwood St, San Francisco, CA 94016" +192044,iPhone,1,700,04/19/19 20:01,"524 Lakeview St, Los Angeles, CA 90001" +192045,AAA Batteries (4-pack),3,2.99,04/30/19 00:56,"405 Cherry St, Boston, MA 02215" +192046,Vareebadd Phone,1,400,04/08/19 21:26,"704 Spruce St, San Francisco, CA 94016" +192047,Wired Headphones,1,11.99,04/12/19 12:00,"528 Main St, Boston, MA 02215" +192048,AAA Batteries (4-pack),4,2.99,04/04/19 14:26,"757 Washington St, Austin, TX 73301" +192049,AAA Batteries (4-pack),1,2.99,04/06/19 20:42,"682 Ridge St, Portland, OR 97035" +192050,Google Phone,1,600,04/12/19 12:38,"290 Cherry St, Atlanta, GA 30301" +192051,Lightning Charging Cable,1,14.95,04/04/19 18:27,"920 Walnut St, Los Angeles, CA 90001" +192052,Wired Headphones,1,11.99,04/01/19 21:35,"19 Forest St, Los Angeles, CA 90001" +192053,Lightning Charging Cable,1,14.95,04/09/19 14:49,"528 9th St, San Francisco, CA 94016" +192054,AA Batteries (4-pack),1,3.84,04/13/19 20:05,"690 North St, New York City, NY 10001" +192055,Lightning Charging Cable,1,14.95,04/10/19 17:11,"67 6th St, Dallas, TX 75001" +192056,AA Batteries (4-pack),2,3.84,04/22/19 18:56,"207 2nd St, Austin, TX 73301" +192057,AA Batteries (4-pack),1,3.84,04/27/19 00:47,"884 13th St, New York City, NY 10001" +192058,Lightning Charging Cable,1,14.95,04/19/19 20:21,"662 4th St, Seattle, WA 98101" +192059,USB-C Charging Cable,1,11.95,04/22/19 19:15,"508 10th St, San Francisco, CA 94016" +192060,AA Batteries (4-pack),1,3.84,04/20/19 20:00,"877 Walnut St, San Francisco, CA 94016" +192061,Bose SoundSport Headphones,2,99.99,04/21/19 18:55,"741 North St, San Francisco, CA 94016" +192062,USB-C Charging Cable,1,11.95,04/30/19 00:31,"903 2nd St, Atlanta, GA 30301" +192063,Wired Headphones,1,11.99,04/10/19 10:42,"859 River St, Los Angeles, CA 90001" +192064,Apple Airpods Headphones,1,150,04/17/19 08:59,"977 13th St, Seattle, WA 98101" +192065,Apple Airpods Headphones,1,150,04/16/19 20:06,"44 Ridge St, Seattle, WA 98101" +192066,AAA Batteries (4-pack),1,2.99,04/26/19 06:00,"242 6th St, New York City, NY 10001" +192066,Bose SoundSport Headphones,1,99.99,04/26/19 06:00,"242 6th St, New York City, NY 10001" +192067,USB-C Charging Cable,2,11.95,04/15/19 23:11,"144 Pine St, San Francisco, CA 94016" +192068,Lightning Charging Cable,1,14.95,04/28/19 06:28,"966 West St, Dallas, TX 75001" +192069,Lightning Charging Cable,1,14.95,04/26/19 18:08,"26 Jackson St, Los Angeles, CA 90001" +192070,ThinkPad Laptop,1,999.99,04/02/19 20:35,"611 7th St, New York City, NY 10001" +192071,Wired Headphones,1,11.99,04/19/19 18:24,"328 Adams St, San Francisco, CA 94016" +192072,Wired Headphones,1,11.99,04/18/19 09:31,"174 7th St, Portland, OR 97035" +192073,AAA Batteries (4-pack),4,2.99,04/18/19 03:16,"612 10th St, Boston, MA 02215" +192074,Lightning Charging Cable,1,14.95,04/12/19 02:18,"428 Lakeview St, Seattle, WA 98101" +192075,27in FHD Monitor,1,149.99,04/12/19 17:48,"836 Hill St, Dallas, TX 75001" +192076,Flatscreen TV,1,300,04/08/19 11:40,"565 South St, Los Angeles, CA 90001" +192077,Vareebadd Phone,1,400,04/23/19 23:53,"716 8th St, Seattle, WA 98101" +192078,Google Phone,1,600,04/12/19 14:45,"275 Spruce St, San Francisco, CA 94016" +192078,USB-C Charging Cable,1,11.95,04/12/19 14:45,"275 Spruce St, San Francisco, CA 94016" +192079,Bose SoundSport Headphones,1,99.99,04/16/19 19:44,"679 Church St, San Francisco, CA 94016" +192080,Bose SoundSport Headphones,1,99.99,04/06/19 21:39,"69 5th St, San Francisco, CA 94016" +192081,27in FHD Monitor,1,149.99,04/16/19 15:50,"245 Maple St, New York City, NY 10001" +192082,Google Phone,1,600,04/18/19 19:18,"391 Ridge St, San Francisco, CA 94016" +192083,AAA Batteries (4-pack),2,2.99,04/19/19 10:13,"180 Lakeview St, Atlanta, GA 30301" +192084,34in Ultrawide Monitor,1,379.99,04/20/19 16:51,"48 6th St, Portland, OR 97035" +192084,27in FHD Monitor,1,149.99,04/20/19 16:51,"48 6th St, Portland, OR 97035" +192085,USB-C Charging Cable,1,11.95,04/21/19 08:19,"995 Maple St, San Francisco, CA 94016" +192086,20in Monitor,1,109.99,05/01/19 01:40,"400 10th St, Los Angeles, CA 90001" +192087,Apple Airpods Headphones,1,150,04/13/19 01:12,"609 Main St, San Francisco, CA 94016" +192088,34in Ultrawide Monitor,1,379.99,04/26/19 16:19,"901 Elm St, San Francisco, CA 94016" +192089,USB-C Charging Cable,1,11.95,04/17/19 22:20,"26 Adams St, San Francisco, CA 94016" +192090,27in FHD Monitor,1,149.99,04/02/19 19:55,"312 7th St, Seattle, WA 98101" +192091,Wired Headphones,1,11.99,04/02/19 18:06,"900 Jefferson St, Boston, MA 02215" +192092,27in FHD Monitor,1,149.99,04/02/19 11:34,"256 River St, Los Angeles, CA 90001" +192093,AAA Batteries (4-pack),1,2.99,04/29/19 22:23,"180 Spruce St, Atlanta, GA 30301" +192094,Bose SoundSport Headphones,1,99.99,04/28/19 12:38,"976 Willow St, New York City, NY 10001" +192095,Bose SoundSport Headphones,1,99.99,04/19/19 21:06,"722 Walnut St, San Francisco, CA 94016" +192096,Wired Headphones,1,11.99,04/07/19 19:07,"811 Lincoln St, New York City, NY 10001" +192097,Wired Headphones,1,11.99,04/09/19 00:12,"113 Walnut St, New York City, NY 10001" +192098,Apple Airpods Headphones,1,150,04/08/19 23:04,"915 Madison St, Los Angeles, CA 90001" +192098,Macbook Pro Laptop,1,1700,04/08/19 23:04,"915 Madison St, Los Angeles, CA 90001" +192099,AA Batteries (4-pack),1,3.84,04/03/19 17:47,"11 Adams St, Atlanta, GA 30301" +192100,Lightning Charging Cable,1,14.95,04/23/19 16:14,"658 Park St, San Francisco, CA 94016" +192101,USB-C Charging Cable,1,11.95,04/15/19 10:53,"263 Meadow St, Boston, MA 02215" +192102,Apple Airpods Headphones,1,150,04/04/19 09:54,"341 Main St, New York City, NY 10001" +192103,ThinkPad Laptop,1,999.99,04/23/19 10:33,"771 12th St, San Francisco, CA 94016" +192104,USB-C Charging Cable,1,11.95,04/29/19 21:41,"538 13th St, New York City, NY 10001" +192105,AAA Batteries (4-pack),1,2.99,04/22/19 20:30,"279 Main St, Los Angeles, CA 90001" +192106,Apple Airpods Headphones,1,150,04/29/19 19:36,"720 5th St, San Francisco, CA 94016" +192107,Bose SoundSport Headphones,1,99.99,04/09/19 18:42,"377 Elm St, Austin, TX 73301" +192108,ThinkPad Laptop,1,999.99,04/21/19 13:40,"30 Dogwood St, Austin, TX 73301" +192109,Google Phone,1,600,04/09/19 03:10,"269 4th St, San Francisco, CA 94016" +192110,iPhone,1,700,04/15/19 14:19,"311 South St, Boston, MA 02215" +192111,20in Monitor,1,109.99,04/22/19 16:34,"948 2nd St, Boston, MA 02215" +192112,USB-C Charging Cable,2,11.95,04/27/19 15:34,"553 Cherry St, New York City, NY 10001" +192113,AAA Batteries (4-pack),1,2.99,04/26/19 18:50,"928 Hickory St, San Francisco, CA 94016" +192114,Wired Headphones,1,11.99,04/01/19 20:35,"418 Spruce St, Portland, ME 04101" +192115,27in FHD Monitor,1,149.99,04/17/19 12:38,"564 Hill St, San Francisco, CA 94016" +192116,27in FHD Monitor,1,149.99,04/17/19 13:43,"815 Meadow St, Dallas, TX 75001" +192117,Bose SoundSport Headphones,1,99.99,04/20/19 10:31,"561 Spruce St, Los Angeles, CA 90001" +192118,34in Ultrawide Monitor,1,379.99,04/17/19 20:50,"457 6th St, New York City, NY 10001" +192119,Vareebadd Phone,1,400,04/27/19 10:07,"272 Ridge St, San Francisco, CA 94016" +192120,Lightning Charging Cable,1,14.95,04/17/19 23:47,"655 10th St, Atlanta, GA 30301" +192121,Wired Headphones,1,11.99,04/10/19 09:06,"236 Pine St, San Francisco, CA 94016" +192122,Apple Airpods Headphones,1,150,04/12/19 20:52,"770 Ridge St, Atlanta, GA 30301" +192123,AAA Batteries (4-pack),1,2.99,04/29/19 15:13,"50 12th St, New York City, NY 10001" +192124,USB-C Charging Cable,1,11.95,04/02/19 09:21,"744 14th St, New York City, NY 10001" +192125,27in FHD Monitor,1,149.99,04/24/19 16:40,"666 South St, Los Angeles, CA 90001" +192126,27in 4K Gaming Monitor,1,389.99,04/21/19 19:45,"512 Highland St, Portland, OR 97035" +192127,Wired Headphones,1,11.99,04/27/19 11:35,"604 Johnson St, Portland, OR 97035" +192128,ThinkPad Laptop,1,999.99,04/13/19 15:08,"161 Dogwood St, New York City, NY 10001" +192129,Lightning Charging Cable,1,14.95,04/10/19 19:26,"234 7th St, Atlanta, GA 30301" +192130,Wired Headphones,2,11.99,04/12/19 14:25,"63 Willow St, Los Angeles, CA 90001" +192131,iPhone,1,700,04/12/19 22:22,"688 South St, Dallas, TX 75001" +192132,Apple Airpods Headphones,1,150,04/21/19 16:59,"183 Cherry St, San Francisco, CA 94016" +192133,AAA Batteries (4-pack),1,2.99,04/12/19 09:30,"421 13th St, Los Angeles, CA 90001" +192134,Lightning Charging Cable,1,14.95,04/02/19 18:04,"730 Dogwood St, Atlanta, GA 30301" +192135,27in FHD Monitor,1,149.99,04/25/19 11:28,"749 Cedar St, San Francisco, CA 94016" +192136,AA Batteries (4-pack),2,3.84,04/03/19 13:22,"276 Spruce St, San Francisco, CA 94016" +192137,AA Batteries (4-pack),2,3.84,04/07/19 19:40,"141 Walnut St, Los Angeles, CA 90001" +192138,AAA Batteries (4-pack),2,2.99,04/20/19 09:09,"765 Walnut St, New York City, NY 10001" +192139,AAA Batteries (4-pack),1,2.99,04/05/19 12:09,"734 Wilson St, Austin, TX 73301" +192140,AA Batteries (4-pack),1,3.84,04/17/19 20:36,"238 Hickory St, Boston, MA 02215" +192141,Apple Airpods Headphones,1,150,04/26/19 20:01,"70 14th St, New York City, NY 10001" +192142,27in 4K Gaming Monitor,1,389.99,04/21/19 18:35,"624 Pine St, San Francisco, CA 94016" +192143,Bose SoundSport Headphones,1,99.99,04/07/19 09:27,"852 Willow St, Atlanta, GA 30301" +192144,Lightning Charging Cable,1,14.95,04/11/19 18:34,"339 Church St, Los Angeles, CA 90001" +192145,AAA Batteries (4-pack),1,2.99,04/02/19 14:08,"316 Forest St, Seattle, WA 98101" +192146,USB-C Charging Cable,1,11.95,04/12/19 19:45,"340 5th St, Los Angeles, CA 90001" +192147,Wired Headphones,1,11.99,04/01/19 06:53,"580 Sunset St, Seattle, WA 98101" +192148,Apple Airpods Headphones,1,150,04/11/19 10:26,"56 12th St, Los Angeles, CA 90001" +192149,USB-C Charging Cable,1,11.95,04/27/19 11:12,"42 Park St, Seattle, WA 98101" +192150,Bose SoundSport Headphones,1,99.99,04/06/19 06:30,"386 Jackson St, Boston, MA 02215" +192151,27in 4K Gaming Monitor,1,389.99,04/25/19 16:24,"462 Walnut St, Boston, MA 02215" +192152,Vareebadd Phone,1,400,04/16/19 13:46,"648 Cherry St, Boston, MA 02215" +192153,AAA Batteries (4-pack),3,2.99,04/16/19 13:58,"582 8th St, Seattle, WA 98101" +192154,Bose SoundSport Headphones,1,99.99,04/07/19 15:07,"870 Cedar St, San Francisco, CA 94016" +192155,AAA Batteries (4-pack),1,2.99,04/14/19 08:39,"852 4th St, Portland, OR 97035" +192156,27in FHD Monitor,1,149.99,04/02/19 17:20,"113 Main St, New York City, NY 10001" +192157,USB-C Charging Cable,1,11.95,04/30/19 11:33,"434 Chestnut St, San Francisco, CA 94016" +192158,AAA Batteries (4-pack),2,2.99,04/06/19 17:17,"278 13th St, Seattle, WA 98101" +192159,Macbook Pro Laptop,1,1700,04/28/19 17:09,"172 Meadow St, San Francisco, CA 94016" +192160,27in FHD Monitor,1,149.99,04/10/19 12:21,"337 6th St, New York City, NY 10001" +192161,Bose SoundSport Headphones,1,99.99,04/20/19 04:11,"984 Lincoln St, San Francisco, CA 94016" +192162,Bose SoundSport Headphones,1,99.99,04/02/19 21:31,"640 12th St, Atlanta, GA 30301" +192163,27in FHD Monitor,1,149.99,04/12/19 13:59,"391 6th St, Boston, MA 02215" +192164,Lightning Charging Cable,1,14.95,04/08/19 18:52,"23 12th St, New York City, NY 10001" +192165,AAA Batteries (4-pack),1,2.99,04/02/19 18:18,"704 Pine St, San Francisco, CA 94016" +192166,Lightning Charging Cable,1,14.95,04/12/19 10:51,"343 Center St, Austin, TX 73301" +192167,Apple Airpods Headphones,1,150,04/02/19 15:05,"367 Park St, New York City, NY 10001" +192168,AA Batteries (4-pack),1,3.84,04/21/19 00:07,"712 North St, Los Angeles, CA 90001" +192169,AA Batteries (4-pack),1,3.84,04/08/19 12:19,"144 Dogwood St, Dallas, TX 75001" +192170,AA Batteries (4-pack),1,3.84,04/06/19 10:49,"234 Church St, New York City, NY 10001" +192171,27in 4K Gaming Monitor,1,389.99,04/18/19 12:54,"392 West St, Portland, OR 97035" +192172,27in 4K Gaming Monitor,1,389.99,04/22/19 15:50,"490 Main St, Seattle, WA 98101" +192173,AAA Batteries (4-pack),3,2.99,04/01/19 13:11,"20 Lincoln St, Los Angeles, CA 90001" +192174,AAA Batteries (4-pack),1,2.99,04/24/19 12:56,"282 6th St, New York City, NY 10001" +192175,27in 4K Gaming Monitor,1,389.99,04/27/19 10:55,"325 South St, San Francisco, CA 94016" +192176,USB-C Charging Cable,1,11.95,04/07/19 13:24,"78 7th St, San Francisco, CA 94016" +192177,Apple Airpods Headphones,1,150,04/23/19 12:50,"506 Highland St, Dallas, TX 75001" +192178,AA Batteries (4-pack),1,3.84,04/16/19 18:46,"648 Willow St, Portland, ME 04101" +192179,AAA Batteries (4-pack),1,2.99,04/12/19 19:33,"407 2nd St, Austin, TX 73301" +192180,Lightning Charging Cable,1,14.95,04/16/19 08:47,"288 Willow St, Los Angeles, CA 90001" +192181,AAA Batteries (4-pack),3,2.99,04/12/19 07:34,"331 Center St, Los Angeles, CA 90001" +192182,Lightning Charging Cable,1,14.95,04/16/19 15:38,"612 Jackson St, San Francisco, CA 94016" +192183,27in FHD Monitor,1,149.99,04/20/19 14:45,"886 Cedar St, New York City, NY 10001" +192184,USB-C Charging Cable,1,11.95,04/08/19 20:11,"91 Walnut St, Portland, OR 97035" +192185,AA Batteries (4-pack),1,3.84,04/03/19 11:19,"87 Johnson St, New York City, NY 10001" +192186,USB-C Charging Cable,1,11.95,04/18/19 22:16,"269 Elm St, Dallas, TX 75001" +192187,Wired Headphones,1,11.99,04/22/19 11:58,"807 Maple St, Los Angeles, CA 90001" +192188,USB-C Charging Cable,1,11.95,04/16/19 09:38,"546 Forest St, San Francisco, CA 94016" +192189,Wired Headphones,1,11.99,04/05/19 18:11,"845 12th St, New York City, NY 10001" +192190,USB-C Charging Cable,1,11.95,04/22/19 20:24,"427 Walnut St, San Francisco, CA 94016" +192191,USB-C Charging Cable,1,11.95,04/01/19 19:45,"631 Chestnut St, Dallas, TX 75001" +192192,iPhone,1,700,04/18/19 21:12,"952 10th St, Atlanta, GA 30301" +192193,Apple Airpods Headphones,1,150,04/03/19 20:20,"634 Johnson St, San Francisco, CA 94016" +192194,Flatscreen TV,1,300,04/28/19 10:08,"811 Spruce St, Atlanta, GA 30301" +192195,Wired Headphones,1,11.99,04/17/19 12:15,"531 Lake St, Austin, TX 73301" +192196,USB-C Charging Cable,2,11.95,04/18/19 10:15,"449 West St, San Francisco, CA 94016" +192197,34in Ultrawide Monitor,1,379.99,04/02/19 13:50,"475 Maple St, Seattle, WA 98101" +192198,Bose SoundSport Headphones,1,99.99,04/05/19 11:24,"910 Washington St, Los Angeles, CA 90001" +192199,34in Ultrawide Monitor,1,379.99,04/18/19 14:30,"412 2nd St, San Francisco, CA 94016" +192200,USB-C Charging Cable,1,11.95,04/24/19 11:16,"139 North St, San Francisco, CA 94016" +192201,USB-C Charging Cable,1,11.95,04/15/19 13:34,"147 Sunset St, Atlanta, GA 30301" +192202,34in Ultrawide Monitor,1,379.99,04/09/19 11:34,"814 Lincoln St, Boston, MA 02215" +192203,Wired Headphones,1,11.99,04/11/19 10:19,"5 Pine St, Los Angeles, CA 90001" +192204,AA Batteries (4-pack),2,3.84,04/29/19 21:32,"89 West St, San Francisco, CA 94016" +192205,Lightning Charging Cable,1,14.95,04/17/19 08:46,"309 8th St, Dallas, TX 75001" +192206,Apple Airpods Headphones,1,150,04/10/19 17:11,"687 Johnson St, Boston, MA 02215" +192207,Apple Airpods Headphones,1,150,04/30/19 20:52,"971 Ridge St, New York City, NY 10001" +192208,34in Ultrawide Monitor,1,379.99,04/11/19 22:52,"817 Washington St, New York City, NY 10001" +192209,Bose SoundSport Headphones,1,99.99,04/28/19 20:28,"887 Park St, San Francisco, CA 94016" +192210,34in Ultrawide Monitor,1,379.99,04/04/19 16:24,"150 South St, Los Angeles, CA 90001" +192211,AAA Batteries (4-pack),3,2.99,04/05/19 15:45,"804 13th St, San Francisco, CA 94016" +192212,Wired Headphones,1,11.99,04/01/19 20:02,"8 13th St, Los Angeles, CA 90001" +,,,,, +192213,USB-C Charging Cable,1,11.95,04/01/19 10:26,"892 Lincoln St, San Francisco, CA 94016" +192214,Bose SoundSport Headphones,1,99.99,04/25/19 13:01,"913 5th St, Boston, MA 02215" +192215,AAA Batteries (4-pack),1,2.99,04/20/19 06:23,"542 Johnson St, Seattle, WA 98101" +192216,ThinkPad Laptop,1,999.99,04/17/19 16:37,"460 Meadow St, Los Angeles, CA 90001" +192217,AAA Batteries (4-pack),1,2.99,04/08/19 23:42,"3 West St, New York City, NY 10001" +192218,Lightning Charging Cable,1,14.95,04/03/19 15:45,"337 5th St, New York City, NY 10001" +192218,Lightning Charging Cable,1,14.95,04/03/19 15:45,"337 5th St, New York City, NY 10001" +192219,ThinkPad Laptop,1,999.99,04/12/19 18:24,"602 Walnut St, San Francisco, CA 94016" +192220,Bose SoundSport Headphones,1,99.99,04/27/19 17:21,"546 Highland St, New York City, NY 10001" +192221,Wired Headphones,1,11.99,04/14/19 12:41,"985 5th St, San Francisco, CA 94016" +192222,27in FHD Monitor,1,149.99,04/29/19 12:00,"340 11th St, Dallas, TX 75001" +192223,Apple Airpods Headphones,1,150,04/11/19 21:43,"266 Center St, Dallas, TX 75001" +192224,Wired Headphones,1,11.99,04/11/19 19:55,"340 Cherry St, Atlanta, GA 30301" +192225,Lightning Charging Cable,1,14.95,04/28/19 07:37,"236 4th St, Portland, OR 97035" +192226,Macbook Pro Laptop,1,1700,04/03/19 14:16,"455 6th St, Boston, MA 02215" +192227,USB-C Charging Cable,1,11.95,04/23/19 11:50,"578 Hickory St, San Francisco, CA 94016" +192228,AAA Batteries (4-pack),1,2.99,04/14/19 20:09,"658 5th St, Atlanta, GA 30301" +192229,USB-C Charging Cable,1,11.95,04/23/19 11:17,"288 5th St, San Francisco, CA 94016" +192230,Wired Headphones,1,11.99,04/18/19 11:52,"542 Cherry St, San Francisco, CA 94016" +192231,USB-C Charging Cable,1,11.95,04/27/19 12:39,"998 Dogwood St, Boston, MA 02215" +192232,27in 4K Gaming Monitor,1,389.99,04/05/19 17:28,"821 12th St, Boston, MA 02215" +192233,Lightning Charging Cable,1,14.95,04/14/19 17:38,"535 14th St, Seattle, WA 98101" +192234,Wired Headphones,1,11.99,04/17/19 23:44,"638 Dogwood St, Los Angeles, CA 90001" +192235,Wired Headphones,1,11.99,04/19/19 12:07,"491 Center St, Dallas, TX 75001" +192236,34in Ultrawide Monitor,1,379.99,04/15/19 21:33,"274 River St, Dallas, TX 75001" +192237,Wired Headphones,1,11.99,04/30/19 16:51,"313 Johnson St, Austin, TX 73301" +192238,AA Batteries (4-pack),1,3.84,04/22/19 20:12,"746 8th St, Boston, MA 02215" +192239,LG Dryer,1,600.0,04/04/19 18:55,"900 River St, San Francisco, CA 94016" +192240,AAA Batteries (4-pack),5,2.99,04/28/19 11:54,"749 South St, Boston, MA 02215" +192241,Apple Airpods Headphones,1,150,04/08/19 22:20,"369 Hickory St, Austin, TX 73301" +192242,Wired Headphones,1,11.99,04/03/19 20:32,"245 Adams St, Boston, MA 02215" +192243,AA Batteries (4-pack),1,3.84,04/08/19 15:53,"639 Walnut St, San Francisco, CA 94016" +192244,Apple Airpods Headphones,1,150,04/17/19 18:33,"585 Willow St, San Francisco, CA 94016" +192245,AAA Batteries (4-pack),1,2.99,04/08/19 11:13,"740 Adams St, New York City, NY 10001" +192246,Wired Headphones,1,11.99,04/10/19 12:01,"994 10th St, Boston, MA 02215" +192247,Wired Headphones,1,11.99,04/07/19 15:53,"332 Jefferson St, Los Angeles, CA 90001" +192248,Bose SoundSport Headphones,1,99.99,04/09/19 19:56,"715 Ridge St, New York City, NY 10001" +192249,Lightning Charging Cable,1,14.95,04/14/19 23:52,"683 Meadow St, Austin, TX 73301" +192250,Apple Airpods Headphones,1,150,04/10/19 21:15,"78 Highland St, Los Angeles, CA 90001" +192251,Macbook Pro Laptop,1,1700,04/14/19 11:31,"367 14th St, Atlanta, GA 30301" +192252,Bose SoundSport Headphones,1,99.99,04/24/19 14:01,"127 South St, Atlanta, GA 30301" +192253,USB-C Charging Cable,1,11.95,04/18/19 13:01,"998 8th St, New York City, NY 10001" +192254,27in FHD Monitor,1,149.99,04/10/19 18:02,"623 Maple St, San Francisco, CA 94016" +192255,Apple Airpods Headphones,1,150,04/03/19 14:44,"811 Dogwood St, New York City, NY 10001" +192256,27in 4K Gaming Monitor,1,389.99,04/24/19 10:09,"292 Sunset St, New York City, NY 10001" +192257,Bose SoundSport Headphones,1,99.99,04/19/19 09:17,"368 Lake St, Boston, MA 02215" +192258,USB-C Charging Cable,1,11.95,04/06/19 12:01,"310 River St, Atlanta, GA 30301" +192259,ThinkPad Laptop,1,999.99,04/22/19 13:48,"106 Lincoln St, Atlanta, GA 30301" +192260,Wired Headphones,1,11.99,04/20/19 17:14,"799 Cherry St, Los Angeles, CA 90001" +192261,Lightning Charging Cable,3,14.95,04/22/19 21:33,"721 Washington St, Dallas, TX 75001" +192262,Apple Airpods Headphones,1,150,04/10/19 16:09,"24 Meadow St, New York City, NY 10001" +192263,Apple Airpods Headphones,1,150,04/08/19 14:28,"917 Walnut St, San Francisco, CA 94016" +192264,27in FHD Monitor,1,149.99,04/16/19 17:43,"808 Forest St, San Francisco, CA 94016" +192265,ThinkPad Laptop,1,999.99,04/18/19 18:00,"457 Willow St, San Francisco, CA 94016" +192266,AA Batteries (4-pack),1,3.84,04/11/19 12:07,"126 Jackson St, Atlanta, GA 30301" +192267,Wired Headphones,1,11.99,04/09/19 19:00,"636 Ridge St, San Francisco, CA 94016" +192268,Vareebadd Phone,1,400,04/15/19 04:54,"942 5th St, Atlanta, GA 30301" +192269,Lightning Charging Cable,1,14.95,04/15/19 16:07,"860 Sunset St, San Francisco, CA 94016" +192270,iPhone,1,700,04/05/19 21:04,"700 Park St, Atlanta, GA 30301" +192270,Lightning Charging Cable,1,14.95,04/05/19 21:04,"700 Park St, Atlanta, GA 30301" +192271,Bose SoundSport Headphones,1,99.99,04/03/19 11:02,"350 8th St, San Francisco, CA 94016" +192272,34in Ultrawide Monitor,1,379.99,04/22/19 11:17,"436 Hickory St, Boston, MA 02215" +192273,iPhone,1,700,04/26/19 20:35,"606 Walnut St, Portland, OR 97035" +192274,Flatscreen TV,1,300,04/11/19 11:37,"883 Highland St, Boston, MA 02215" +192275,Bose SoundSport Headphones,1,99.99,04/30/19 21:44,"581 Maple St, New York City, NY 10001" +192276,Wired Headphones,1,11.99,04/24/19 17:40,"865 Cedar St, Austin, TX 73301" +192277,Apple Airpods Headphones,1,150,04/29/19 11:23,"625 Elm St, San Francisco, CA 94016" +192278,Macbook Pro Laptop,1,1700,04/02/19 16:06,"414 Willow St, San Francisco, CA 94016" +192279,Wired Headphones,1,11.99,04/24/19 22:20,"139 13th St, Boston, MA 02215" +192280,AAA Batteries (4-pack),2,2.99,04/07/19 19:55,"503 5th St, Los Angeles, CA 90001" +192281,AA Batteries (4-pack),3,3.84,04/09/19 21:04,"556 Chestnut St, Boston, MA 02215" +192282,Bose SoundSport Headphones,1,99.99,04/06/19 09:03,"607 Forest St, San Francisco, CA 94016" +192283,Wired Headphones,1,11.99,04/17/19 16:57,"852 Madison St, Atlanta, GA 30301" +192284,27in 4K Gaming Monitor,1,389.99,04/25/19 20:54,"510 10th St, Los Angeles, CA 90001" +192285,Lightning Charging Cable,1,14.95,04/14/19 18:59,"274 Lake St, Portland, OR 97035" +192286,Bose SoundSport Headphones,1,99.99,04/11/19 02:09,"170 Park St, San Francisco, CA 94016" +192287,Apple Airpods Headphones,1,150,04/08/19 17:48,"597 Lincoln St, Atlanta, GA 30301" +192288,27in FHD Monitor,1,149.99,04/10/19 13:59,"506 Lake St, Boston, MA 02215" +192289,Google Phone,1,600,04/12/19 10:30,"360 13th St, Los Angeles, CA 90001" +192290,USB-C Charging Cable,2,11.95,04/25/19 11:32,"622 Maple St, Portland, OR 97035" +192291,USB-C Charging Cable,1,11.95,04/12/19 12:32,"532 West St, Portland, OR 97035" +192292,Apple Airpods Headphones,1,150,04/28/19 16:40,"968 9th St, Atlanta, GA 30301" +192293,34in Ultrawide Monitor,1,379.99,04/26/19 22:48,"954 River St, New York City, NY 10001" +192294,27in 4K Gaming Monitor,1,389.99,04/12/19 21:09,"175 6th St, San Francisco, CA 94016" +192295,USB-C Charging Cable,2,11.95,04/20/19 13:06,"100 12th St, Seattle, WA 98101" +192296,Lightning Charging Cable,1,14.95,04/24/19 18:43,"652 Church St, Atlanta, GA 30301" +192297,27in 4K Gaming Monitor,1,389.99,04/15/19 19:00,"274 9th St, Austin, TX 73301" +192298,AAA Batteries (4-pack),1,2.99,04/01/19 08:33,"202 River St, New York City, NY 10001" +192299,27in FHD Monitor,1,149.99,04/03/19 18:36,"790 Jackson St, Los Angeles, CA 90001" +192300,27in 4K Gaming Monitor,1,389.99,04/22/19 15:09,"646 Wilson St, Los Angeles, CA 90001" +192301,Macbook Pro Laptop,1,1700,04/09/19 16:27,"594 Johnson St, Los Angeles, CA 90001" +192302,USB-C Charging Cable,1,11.95,04/17/19 21:13,"817 Adams St, Dallas, TX 75001" +192303,Bose SoundSport Headphones,1,99.99,04/06/19 13:00,"325 Center St, Los Angeles, CA 90001" +192304,USB-C Charging Cable,1,11.95,04/28/19 22:26,"949 West St, Portland, ME 04101" +192305,AA Batteries (4-pack),1,3.84,04/25/19 07:22,"302 South St, Boston, MA 02215" +192306,Wired Headphones,1,11.99,04/03/19 18:34,"266 Walnut St, Seattle, WA 98101" +192307,AA Batteries (4-pack),1,3.84,04/25/19 18:17,"356 Dogwood St, Los Angeles, CA 90001" +192308,Lightning Charging Cable,1,14.95,04/04/19 15:58,"76 Highland St, New York City, NY 10001" +192309,Wired Headphones,2,11.99,04/27/19 00:17,"22 9th St, Los Angeles, CA 90001" +192310,Google Phone,1,600,04/25/19 17:17,"508 Jackson St, Portland, OR 97035" +192311,Lightning Charging Cable,2,14.95,04/23/19 19:15,"153 11th St, Los Angeles, CA 90001" +192312,AAA Batteries (4-pack),2,2.99,04/11/19 15:08,"802 8th St, San Francisco, CA 94016" +192313,AA Batteries (4-pack),1,3.84,04/27/19 00:44,"763 Cherry St, New York City, NY 10001" +192314,Bose SoundSport Headphones,1,99.99,04/02/19 22:05,"930 Sunset St, Los Angeles, CA 90001" +192315,Bose SoundSport Headphones,1,99.99,04/11/19 16:10,"260 Willow St, Atlanta, GA 30301" +192316,Apple Airpods Headphones,1,150,04/09/19 22:25,"118 Madison St, Seattle, WA 98101" +192317,27in FHD Monitor,1,149.99,04/27/19 21:57,"850 6th St, Seattle, WA 98101" +192318,AA Batteries (4-pack),2,3.84,04/12/19 05:09,"547 12th St, San Francisco, CA 94016" +192319,AAA Batteries (4-pack),1,2.99,04/21/19 18:28,"36 Lake St, Los Angeles, CA 90001" +192320,USB-C Charging Cable,1,11.95,04/28/19 11:44,"598 Spruce St, San Francisco, CA 94016" +192321,Macbook Pro Laptop,1,1700,04/03/19 09:28,"393 Hill St, Los Angeles, CA 90001" +192322,USB-C Charging Cable,1,11.95,04/20/19 14:32,"29 14th St, Boston, MA 02215" +192323,Lightning Charging Cable,1,14.95,04/03/19 14:40,"757 Dogwood St, Portland, OR 97035" +192324,AAA Batteries (4-pack),1,2.99,04/27/19 16:02,"251 4th St, Los Angeles, CA 90001" +192325,USB-C Charging Cable,1,11.95,04/03/19 19:04,"791 Forest St, New York City, NY 10001" +192326,AA Batteries (4-pack),2,3.84,04/03/19 19:17,"423 6th St, Austin, TX 73301" +192327,AA Batteries (4-pack),2,3.84,04/13/19 10:01,"966 Center St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +192328,Lightning Charging Cable,1,14.95,04/21/19 07:25,"687 Cherry St, San Francisco, CA 94016" +192329,Macbook Pro Laptop,1,1700,04/11/19 10:13,"66 Adams St, Seattle, WA 98101" +192330,Lightning Charging Cable,1,14.95,04/26/19 13:10,"59 Willow St, Dallas, TX 75001" +192331,Lightning Charging Cable,1,14.95,04/20/19 09:16,"949 Hill St, Los Angeles, CA 90001" +192332,USB-C Charging Cable,1,11.95,04/23/19 21:08,"599 Forest St, San Francisco, CA 94016" +192333,Wired Headphones,1,11.99,04/04/19 10:43,"450 9th St, Dallas, TX 75001" +192334,USB-C Charging Cable,1,11.95,04/23/19 09:23,"694 Adams St, San Francisco, CA 94016" +192335,Flatscreen TV,1,300,04/22/19 19:27,"657 2nd St, Los Angeles, CA 90001" +192336,34in Ultrawide Monitor,1,379.99,04/20/19 11:42,"970 Hickory St, Seattle, WA 98101" +192337,AAA Batteries (4-pack),1,2.99,04/24/19 13:18,"917 Cedar St, New York City, NY 10001" +192338,iPhone,1,700,04/28/19 10:19,"603 Johnson St, San Francisco, CA 94016" +192338,Wired Headphones,1,11.99,04/28/19 10:19,"603 Johnson St, San Francisco, CA 94016" +192339,Macbook Pro Laptop,1,1700,04/19/19 21:44,"120 13th St, Austin, TX 73301" +192340,34in Ultrawide Monitor,1,379.99,04/09/19 17:54,"301 North St, New York City, NY 10001" +192341,Lightning Charging Cable,1,14.95,04/23/19 14:07,"710 Cedar St, Atlanta, GA 30301" +192342,iPhone,1,700,04/29/19 15:19,"763 West St, New York City, NY 10001" +192342,Bose SoundSport Headphones,1,99.99,04/29/19 15:19,"763 West St, New York City, NY 10001" +192343,Bose SoundSport Headphones,1,99.99,04/18/19 17:24,"321 Cherry St, San Francisco, CA 94016" +192344,USB-C Charging Cable,1,11.95,04/08/19 18:54,"154 Park St, New York City, NY 10001" +192345,iPhone,1,700,04/10/19 20:47,"412 Lake St, Dallas, TX 75001" +192346,ThinkPad Laptop,1,999.99,04/15/19 21:00,"210 Sunset St, Boston, MA 02215" +192347,iPhone,1,700,04/13/19 13:45,"519 Chestnut St, Atlanta, GA 30301" +192347,Lightning Charging Cable,1,14.95,04/13/19 13:45,"519 Chestnut St, Atlanta, GA 30301" +192348,Macbook Pro Laptop,1,1700,04/18/19 18:35,"245 Willow St, Portland, OR 97035" +192349,Apple Airpods Headphones,1,150,04/19/19 13:05,"666 River St, Atlanta, GA 30301" +192350,Wired Headphones,1,11.99,04/29/19 19:23,"61 North St, Portland, OR 97035" +192351,Lightning Charging Cable,1,14.95,04/04/19 08:15,"326 Jackson St, Los Angeles, CA 90001" +192352,USB-C Charging Cable,1,11.95,04/12/19 17:15,"567 Forest St, Los Angeles, CA 90001" +192353,Vareebadd Phone,1,400,04/28/19 12:09,"334 Park St, Los Angeles, CA 90001" +192354,27in 4K Gaming Monitor,1,389.99,04/26/19 21:09,"658 Chestnut St, Portland, ME 04101" +192355,iPhone,1,700,04/09/19 02:53,"324 Pine St, San Francisco, CA 94016" +192355,Lightning Charging Cable,1,14.95,04/09/19 02:53,"324 Pine St, San Francisco, CA 94016" +192356,USB-C Charging Cable,1,11.95,04/02/19 10:13,"744 Meadow St, Atlanta, GA 30301" +192357,AA Batteries (4-pack),1,3.84,04/18/19 19:25,"974 River St, Austin, TX 73301" +192358,Vareebadd Phone,1,400,04/20/19 13:38,"329 7th St, Seattle, WA 98101" +192359,Wired Headphones,1,11.99,04/12/19 12:38,"847 West St, Dallas, TX 75001" +192360,AAA Batteries (4-pack),1,2.99,04/06/19 19:54,"726 Adams St, Portland, OR 97035" +192361,USB-C Charging Cable,1,11.95,04/25/19 16:53,"214 Lake St, Los Angeles, CA 90001" +192362,Macbook Pro Laptop,1,1700,04/23/19 00:47,"631 Meadow St, Seattle, WA 98101" +192363,Bose SoundSport Headphones,1,99.99,04/15/19 08:32,"424 Jefferson St, San Francisco, CA 94016" +192364,Lightning Charging Cable,1,14.95,04/24/19 08:46,"300 River St, Boston, MA 02215" +192365,iPhone,1,700,04/07/19 19:33,"879 4th St, Portland, OR 97035" +192366,Macbook Pro Laptop,1,1700,04/15/19 13:59,"874 Hickory St, San Francisco, CA 94016" +192367,Apple Airpods Headphones,1,150,04/03/19 21:06,"186 North St, New York City, NY 10001" +192368,Bose SoundSport Headphones,1,99.99,04/13/19 20:45,"329 Forest St, Los Angeles, CA 90001" +192369,AAA Batteries (4-pack),1,2.99,04/22/19 16:51,"688 North St, San Francisco, CA 94016" +192370,ThinkPad Laptop,1,999.99,04/09/19 16:29,"674 South St, Atlanta, GA 30301" +192371,Apple Airpods Headphones,1,150,04/12/19 14:11,"347 Chestnut St, Los Angeles, CA 90001" +192372,USB-C Charging Cable,1,11.95,04/10/19 18:56,"137 Chestnut St, Boston, MA 02215" +192373,USB-C Charging Cable,1,11.95,04/01/19 11:04,"453 Chestnut St, Seattle, WA 98101" +192374,27in 4K Gaming Monitor,1,389.99,04/04/19 06:50,"304 4th St, Boston, MA 02215" +192375,AAA Batteries (4-pack),1,2.99,04/14/19 17:28,"11 Spruce St, San Francisco, CA 94016" +192376,ThinkPad Laptop,1,999.99,04/20/19 15:20,"701 1st St, Los Angeles, CA 90001" +192377,Bose SoundSport Headphones,1,99.99,04/13/19 23:02,"529 Church St, San Francisco, CA 94016" +192378,Bose SoundSport Headphones,1,99.99,04/09/19 18:24,"290 Cedar St, Los Angeles, CA 90001" +192379,Macbook Pro Laptop,1,1700,04/13/19 06:21,"100 Elm St, Dallas, TX 75001" +192380,20in Monitor,1,109.99,04/28/19 09:18,"709 Johnson St, Portland, ME 04101" +192381,USB-C Charging Cable,1,11.95,04/24/19 21:31,"120 13th St, San Francisco, CA 94016" +192382,AA Batteries (4-pack),2,3.84,04/29/19 12:32,"461 Main St, Los Angeles, CA 90001" +192383,AAA Batteries (4-pack),1,2.99,04/20/19 12:26,"256 Dogwood St, San Francisco, CA 94016" +192384,Lightning Charging Cable,1,14.95,04/30/19 22:59,"718 Hickory St, New York City, NY 10001" +192385,Bose SoundSport Headphones,1,99.99,04/25/19 13:09,"195 Lincoln St, Los Angeles, CA 90001" +192386,Wired Headphones,1,11.99,04/27/19 11:38,"503 6th St, Portland, ME 04101" +192387,20in Monitor,1,109.99,04/19/19 10:06,"26 Sunset St, New York City, NY 10001" +192388,AAA Batteries (4-pack),4,2.99,04/11/19 19:18,"349 River St, Los Angeles, CA 90001" +192389,34in Ultrawide Monitor,1,379.99,04/02/19 10:48,"22 Walnut St, San Francisco, CA 94016" +192390,Wired Headphones,1,11.99,04/25/19 18:41,"84 5th St, Los Angeles, CA 90001" +192391,iPhone,1,700,04/03/19 18:05,"36 Highland St, Los Angeles, CA 90001" +192392,Apple Airpods Headphones,1,150,04/06/19 14:53,"773 Church St, Los Angeles, CA 90001" +192393,AA Batteries (4-pack),1,3.84,04/01/19 22:45,"674 12th St, San Francisco, CA 94016" +192394,20in Monitor,1,109.99,04/10/19 22:01,"142 Washington St, Boston, MA 02215" +192395,Lightning Charging Cable,1,14.95,04/28/19 13:43,"136 6th St, New York City, NY 10001" +192396,AA Batteries (4-pack),1,3.84,04/01/19 09:30,"812 4th St, New York City, NY 10001" +192397,AAA Batteries (4-pack),1,2.99,04/24/19 14:43,"884 14th St, San Francisco, CA 94016" +192398,AAA Batteries (4-pack),1,2.99,04/22/19 22:25,"484 6th St, Boston, MA 02215" +192399,27in FHD Monitor,1,149.99,04/22/19 18:26,"36 Madison St, Portland, ME 04101" +192400,27in 4K Gaming Monitor,1,389.99,04/17/19 12:21,"359 14th St, Dallas, TX 75001" +192401,Wired Headphones,1,11.99,04/22/19 15:45,"369 8th St, San Francisco, CA 94016" +192402,20in Monitor,1,109.99,04/30/19 20:27,"243 1st St, Atlanta, GA 30301" +192403,USB-C Charging Cable,1,11.95,04/28/19 11:52,"751 Johnson St, New York City, NY 10001" +192404,AA Batteries (4-pack),1,3.84,04/26/19 23:22,"145 Sunset St, San Francisco, CA 94016" +192405,AAA Batteries (4-pack),5,2.99,04/20/19 12:43,"221 Lake St, New York City, NY 10001" +192406,Wired Headphones,1,11.99,04/03/19 20:57,"40 Lake St, Los Angeles, CA 90001" +192407,iPhone,1,700,04/10/19 06:48,"770 West St, Boston, MA 02215" +192408,AAA Batteries (4-pack),2,2.99,04/27/19 20:28,"846 Forest St, Boston, MA 02215" +192409,Lightning Charging Cable,1,14.95,04/04/19 09:37,"790 Highland St, Los Angeles, CA 90001" +192410,USB-C Charging Cable,1,11.95,04/28/19 20:03,"886 West St, San Francisco, CA 94016" +192411,Apple Airpods Headphones,1,150,04/16/19 00:54,"123 Church St, Boston, MA 02215" +192412,AAA Batteries (4-pack),1,2.99,04/03/19 08:47,"262 9th St, Los Angeles, CA 90001" +192413,27in FHD Monitor,1,149.99,04/30/19 21:51,"301 Meadow St, Boston, MA 02215" +192414,ThinkPad Laptop,1,999.99,04/06/19 09:18,"909 14th St, Atlanta, GA 30301" +192415,AA Batteries (4-pack),3,3.84,04/10/19 12:32,"15 Lake St, Los Angeles, CA 90001" +192416,iPhone,1,700,04/25/19 11:25,"776 Lakeview St, San Francisco, CA 94016" +192417,Bose SoundSport Headphones,1,99.99,04/30/19 07:01,"941 Jackson St, New York City, NY 10001" +192418,Bose SoundSport Headphones,1,99.99,04/28/19 17:42,"556 Madison St, New York City, NY 10001" +192419,Lightning Charging Cable,1,14.95,04/04/19 21:57,"914 Center St, Dallas, TX 75001" +192420,Bose SoundSport Headphones,1,99.99,04/14/19 17:56,"584 Lakeview St, Portland, OR 97035" +192421,AA Batteries (4-pack),1,3.84,04/24/19 11:49,"935 1st St, Los Angeles, CA 90001" +192422,Bose SoundSport Headphones,1,99.99,04/14/19 19:46,"487 North St, New York City, NY 10001" +192423,AAA Batteries (4-pack),1,2.99,04/07/19 09:23,"785 Meadow St, Austin, TX 73301" +192424,AA Batteries (4-pack),2,3.84,04/08/19 13:13,"695 Meadow St, Dallas, TX 75001" +192425,AA Batteries (4-pack),2,3.84,04/23/19 17:15,"113 Willow St, San Francisco, CA 94016" +192426,Wired Headphones,2,11.99,04/01/19 11:09,"444 South St, San Francisco, CA 94016" +192427,AA Batteries (4-pack),1,3.84,04/13/19 15:34,"745 Lakeview St, Dallas, TX 75001" +192428,Wired Headphones,1,11.99,04/04/19 12:44,"548 Lakeview St, San Francisco, CA 94016" +192429,Lightning Charging Cable,1,14.95,04/03/19 12:28,"333 8th St, Austin, TX 73301" +192430,USB-C Charging Cable,1,11.95,04/11/19 09:15,"219 5th St, Dallas, TX 75001" +192431,Wired Headphones,2,11.99,04/07/19 18:37,"536 Jefferson St, Boston, MA 02215" +192432,27in FHD Monitor,1,149.99,04/07/19 19:26,"232 Chestnut St, Atlanta, GA 30301" +192433,AA Batteries (4-pack),1,3.84,04/22/19 12:52,"537 Church St, Boston, MA 02215" +192434,Wired Headphones,1,11.99,04/22/19 22:40,"942 Hill St, San Francisco, CA 94016" +192435,Apple Airpods Headphones,1,150,04/07/19 11:03,"160 8th St, Los Angeles, CA 90001" +192436,AAA Batteries (4-pack),3,2.99,04/09/19 18:45,"674 North St, Los Angeles, CA 90001" +192437,Apple Airpods Headphones,1,150,04/13/19 21:44,"853 12th St, Dallas, TX 75001" +192438,34in Ultrawide Monitor,1,379.99,04/23/19 22:02,"353 Willow St, San Francisco, CA 94016" +192439,AAA Batteries (4-pack),2,2.99,04/11/19 15:31,"480 Spruce St, Atlanta, GA 30301" +192440,Lightning Charging Cable,1,14.95,04/27/19 19:57,"845 5th St, Los Angeles, CA 90001" +192441,Macbook Pro Laptop,1,1700,04/13/19 14:50,"910 6th St, Austin, TX 73301" +192442,27in FHD Monitor,1,149.99,04/05/19 01:38,"310 Forest St, Seattle, WA 98101" +192443,Lightning Charging Cable,1,14.95,04/28/19 16:23,"720 Wilson St, Los Angeles, CA 90001" +192444,AAA Batteries (4-pack),1,2.99,04/29/19 14:13,"950 Sunset St, San Francisco, CA 94016" +192445,Wired Headphones,1,11.99,04/27/19 15:59,"498 6th St, Dallas, TX 75001" +192446,Apple Airpods Headphones,1,150,04/22/19 09:21,"948 Chestnut St, Seattle, WA 98101" +192447,Lightning Charging Cable,1,14.95,04/14/19 17:17,"641 Madison St, Austin, TX 73301" +192448,Lightning Charging Cable,2,14.95,04/16/19 05:11,"236 Main St, Seattle, WA 98101" +192449,AA Batteries (4-pack),1,3.84,04/11/19 14:20,"121 Chestnut St, San Francisco, CA 94016" +192450,AAA Batteries (4-pack),3,2.99,04/01/19 23:56,"331 Ridge St, San Francisco, CA 94016" +192451,USB-C Charging Cable,1,11.95,04/08/19 09:42,"532 13th St, Boston, MA 02215" +192452,Bose SoundSport Headphones,1,99.99,04/06/19 10:40,"705 Center St, Atlanta, GA 30301" +192453,34in Ultrawide Monitor,1,379.99,04/10/19 12:41,"421 Walnut St, Austin, TX 73301" +192454,Lightning Charging Cable,1,14.95,04/30/19 23:17,"113 Cherry St, Seattle, WA 98101" +192455,AAA Batteries (4-pack),2,2.99,04/05/19 22:13,"229 6th St, New York City, NY 10001" +192456,Apple Airpods Headphones,1,150,04/22/19 17:39,"251 1st St, Seattle, WA 98101" +192457,iPhone,1,700,04/23/19 22:39,"607 Lakeview St, San Francisco, CA 94016" +192457,Wired Headphones,1,11.99,04/23/19 22:39,"607 Lakeview St, San Francisco, CA 94016" +192458,27in FHD Monitor,1,149.99,04/22/19 22:48,"66 6th St, Atlanta, GA 30301" +192459,Lightning Charging Cable,1,14.95,04/29/19 20:38,"546 Hickory St, Austin, TX 73301" +192460,Lightning Charging Cable,1,14.95,04/03/19 08:25,"426 Spruce St, Los Angeles, CA 90001" +192461,27in 4K Gaming Monitor,1,389.99,04/17/19 23:41,"514 Hill St, Atlanta, GA 30301" +192462,AA Batteries (4-pack),1,3.84,04/14/19 21:20,"573 North St, Seattle, WA 98101" +192463,27in FHD Monitor,1,149.99,04/16/19 21:21,"807 Lake St, San Francisco, CA 94016" +192464,USB-C Charging Cable,1,11.95,04/01/19 13:56,"814 Hickory St, San Francisco, CA 94016" +192465,AA Batteries (4-pack),1,3.84,04/25/19 00:29,"888 11th St, Los Angeles, CA 90001" +192466,Apple Airpods Headphones,1,150,04/19/19 17:58,"923 Wilson St, Boston, MA 02215" +192467,27in 4K Gaming Monitor,1,389.99,04/07/19 23:18,"400 North St, Dallas, TX 75001" +192468,Bose SoundSport Headphones,1,99.99,04/15/19 11:08,"386 Lincoln St, Seattle, WA 98101" +192469,USB-C Charging Cable,1,11.95,04/08/19 22:12,"671 Meadow St, San Francisco, CA 94016" +192470,USB-C Charging Cable,1,11.95,04/19/19 15:16,"680 11th St, Austin, TX 73301" +192471,AA Batteries (4-pack),2,3.84,04/21/19 12:09,"600 Lakeview St, San Francisco, CA 94016" +192472,Wired Headphones,1,11.99,04/01/19 10:43,"287 Lake St, Atlanta, GA 30301" +192473,AA Batteries (4-pack),1,3.84,04/14/19 22:04,"902 Main St, Los Angeles, CA 90001" +,,,,, +192474,Bose SoundSport Headphones,1,99.99,04/24/19 16:27,"960 11th St, New York City, NY 10001" +192475,AAA Batteries (4-pack),1,2.99,04/11/19 20:15,"318 2nd St, New York City, NY 10001" +192476,USB-C Charging Cable,1,11.95,04/16/19 14:52,"641 Sunset St, Dallas, TX 75001" +192477,Wired Headphones,1,11.99,04/10/19 13:06,"413 14th St, San Francisco, CA 94016" +192477,Apple Airpods Headphones,1,150,04/10/19 13:06,"413 14th St, San Francisco, CA 94016" +192478,AAA Batteries (4-pack),1,2.99,04/27/19 20:27,"421 12th St, Portland, OR 97035" +192479,Apple Airpods Headphones,1,150,04/10/19 21:48,"707 Hickory St, Boston, MA 02215" +192480,Apple Airpods Headphones,1,150,04/02/19 22:47,"656 11th St, New York City, NY 10001" +192481,Flatscreen TV,1,300,04/10/19 17:21,"391 North St, San Francisco, CA 94016" +192482,27in FHD Monitor,1,149.99,04/26/19 11:57,"68 6th St, San Francisco, CA 94016" +192483,Wired Headphones,1,11.99,04/08/19 10:28,"4 Sunset St, San Francisco, CA 94016" +192484,iPhone,1,700,04/12/19 20:33,"35 Hickory St, New York City, NY 10001" +192485,27in FHD Monitor,1,149.99,04/22/19 19:22,"244 Walnut St, San Francisco, CA 94016" +192486,USB-C Charging Cable,1,11.95,04/05/19 21:52,"775 Cherry St, Atlanta, GA 30301" +192487,27in 4K Gaming Monitor,1,389.99,04/03/19 07:25,"920 Adams St, Los Angeles, CA 90001" +192488,AA Batteries (4-pack),3,3.84,04/20/19 10:13,"111 Wilson St, Atlanta, GA 30301" +192489,Apple Airpods Headphones,1,150,04/07/19 12:01,"524 Highland St, Los Angeles, CA 90001" +192490,AA Batteries (4-pack),2,3.84,04/25/19 22:04,"714 Chestnut St, Austin, TX 73301" +192491,AA Batteries (4-pack),2,3.84,04/10/19 22:46,"328 River St, San Francisco, CA 94016" +192492,USB-C Charging Cable,1,11.95,04/13/19 13:54,"993 Lakeview St, Los Angeles, CA 90001" +192493,AA Batteries (4-pack),1,3.84,04/03/19 23:35,"607 Park St, New York City, NY 10001" +192494,USB-C Charging Cable,2,11.95,04/05/19 10:24,"455 Church St, Los Angeles, CA 90001" +192495,27in FHD Monitor,1,149.99,04/16/19 13:55,"801 Highland St, Boston, MA 02215" +192496,USB-C Charging Cable,1,11.95,04/24/19 15:50,"866 7th St, Portland, OR 97035" +192497,Macbook Pro Laptop,1,1700,04/12/19 08:12,"577 Main St, Austin, TX 73301" +192498,Wired Headphones,1,11.99,04/29/19 17:43,"69 Center St, Los Angeles, CA 90001" +192499,Wired Headphones,1,11.99,04/07/19 15:03,"204 Dogwood St, Los Angeles, CA 90001" +192500,USB-C Charging Cable,1,11.95,04/03/19 06:57,"70 4th St, San Francisco, CA 94016" +192501,AAA Batteries (4-pack),1,2.99,04/28/19 03:12,"709 Jefferson St, New York City, NY 10001" +192502,Flatscreen TV,1,300,05/01/19 03:30,"583 Highland St, Atlanta, GA 30301" +192503,Apple Airpods Headphones,1,150,04/17/19 16:54,"478 North St, Seattle, WA 98101" +192504,Lightning Charging Cable,1,14.95,04/12/19 19:00,"783 Elm St, San Francisco, CA 94016" +192505,Wired Headphones,1,11.99,04/23/19 12:57,"860 Maple St, Seattle, WA 98101" +192506,AA Batteries (4-pack),1,3.84,04/05/19 11:09,"23 2nd St, Boston, MA 02215" +192507,Flatscreen TV,1,300,04/10/19 20:53,"117 Lincoln St, San Francisco, CA 94016" +192508,Apple Airpods Headphones,1,150,04/02/19 10:43,"740 Jackson St, Los Angeles, CA 90001" +192509,USB-C Charging Cable,1,11.95,04/20/19 20:16,"648 Maple St, Boston, MA 02215" +192510,AAA Batteries (4-pack),1,2.99,04/13/19 09:48,"822 Pine St, San Francisco, CA 94016" +192511,USB-C Charging Cable,1,11.95,04/04/19 23:28,"913 Hill St, San Francisco, CA 94016" +192512,AAA Batteries (4-pack),3,2.99,04/24/19 11:17,"209 Center St, Seattle, WA 98101" +192513,AAA Batteries (4-pack),1,2.99,04/11/19 10:55,"151 North St, San Francisco, CA 94016" +192514,AA Batteries (4-pack),1,3.84,04/23/19 20:05,"4 10th St, Atlanta, GA 30301" +192515,Bose SoundSport Headphones,1,99.99,04/26/19 09:18,"38 Highland St, Boston, MA 02215" +192516,Google Phone,1,600,04/14/19 11:34,"108 Cedar St, Dallas, TX 75001" +192516,Wired Headphones,1,11.99,04/14/19 11:34,"108 Cedar St, Dallas, TX 75001" +192517,Bose SoundSport Headphones,1,99.99,04/20/19 18:22,"439 Hickory St, Atlanta, GA 30301" +192518,Wired Headphones,1,11.99,04/05/19 08:21,"294 River St, San Francisco, CA 94016" +192519,USB-C Charging Cable,1,11.95,04/18/19 18:25,"564 Johnson St, San Francisco, CA 94016" +192520,Bose SoundSport Headphones,1,99.99,04/08/19 14:30,"335 Jefferson St, San Francisco, CA 94016" +192521,USB-C Charging Cable,1,11.95,04/20/19 20:32,"606 Adams St, Atlanta, GA 30301" +192522,Lightning Charging Cable,1,14.95,04/13/19 06:15,"635 5th St, Austin, TX 73301" +192523,Macbook Pro Laptop,1,1700,04/15/19 10:07,"663 Lincoln St, Atlanta, GA 30301" +192524,Lightning Charging Cable,2,14.95,04/05/19 23:22,"215 Cedar St, Los Angeles, CA 90001" +192525,USB-C Charging Cable,1,11.95,04/30/19 22:56,"667 Lake St, New York City, NY 10001" +192526,USB-C Charging Cable,1,11.95,04/12/19 16:45,"227 North St, Austin, TX 73301" +192527,Apple Airpods Headphones,1,150,04/08/19 08:35,"439 West St, Boston, MA 02215" +192528,Apple Airpods Headphones,1,150,04/04/19 05:04,"457 6th St, Los Angeles, CA 90001" +192529,Bose SoundSport Headphones,1,99.99,04/05/19 10:37,"187 Spruce St, New York City, NY 10001" +192530,Wired Headphones,1,11.99,04/24/19 21:00,"694 6th St, New York City, NY 10001" +192531,Vareebadd Phone,1,400,04/15/19 21:22,"765 12th St, New York City, NY 10001" +192531,USB-C Charging Cable,1,11.95,04/15/19 21:22,"765 12th St, New York City, NY 10001" +192532,Bose SoundSport Headphones,1,99.99,04/20/19 18:47,"341 1st St, Dallas, TX 75001" +192533,Lightning Charging Cable,1,14.95,04/22/19 02:38,"446 Chestnut St, Atlanta, GA 30301" +192534,34in Ultrawide Monitor,1,379.99,04/03/19 09:06,"119 1st St, New York City, NY 10001" +192535,AA Batteries (4-pack),1,3.84,04/25/19 03:16,"130 Elm St, Portland, ME 04101" +192536,Flatscreen TV,1,300,04/02/19 18:36,"989 Church St, San Francisco, CA 94016" +192537,Macbook Pro Laptop,1,1700,04/19/19 09:48,"798 Forest St, Austin, TX 73301" +192538,Apple Airpods Headphones,1,150,04/18/19 15:22,"51 South St, New York City, NY 10001" +192539,AA Batteries (4-pack),1,3.84,04/17/19 15:03,"74 South St, San Francisco, CA 94016" +192540,Lightning Charging Cable,1,14.95,04/05/19 21:09,"143 Sunset St, Seattle, WA 98101" +192541,Wired Headphones,2,11.99,04/09/19 00:55,"148 Church St, San Francisco, CA 94016" +192542,AAA Batteries (4-pack),2,2.99,04/07/19 21:27,"408 11th St, Boston, MA 02215" +192543,AAA Batteries (4-pack),1,2.99,04/05/19 17:41,"4 South St, Los Angeles, CA 90001" +192544,AAA Batteries (4-pack),1,2.99,04/28/19 13:03,"291 Johnson St, Atlanta, GA 30301" +192545,USB-C Charging Cable,1,11.95,04/23/19 23:34,"355 1st St, Atlanta, GA 30301" +192546,AA Batteries (4-pack),1,3.84,04/27/19 12:43,"536 6th St, San Francisco, CA 94016" +192547,Macbook Pro Laptop,1,1700,04/03/19 19:06,"663 Cedar St, Atlanta, GA 30301" +192548,Bose SoundSport Headphones,1,99.99,04/03/19 12:51,"421 North St, Atlanta, GA 30301" +192549,Wired Headphones,1,11.99,04/26/19 20:08,"100 Chestnut St, Dallas, TX 75001" +192550,Lightning Charging Cable,1,14.95,04/11/19 22:31,"129 5th St, Dallas, TX 75001" +192551,Apple Airpods Headphones,1,150,04/09/19 20:11,"428 Jefferson St, Los Angeles, CA 90001" +192552,USB-C Charging Cable,1,11.95,04/01/19 21:24,"37 Dogwood St, Los Angeles, CA 90001" +192553,AAA Batteries (4-pack),1,2.99,04/26/19 23:36,"753 Madison St, Los Angeles, CA 90001" +192554,AAA Batteries (4-pack),1,2.99,04/06/19 11:01,"870 Sunset St, Los Angeles, CA 90001" +192555,AAA Batteries (4-pack),1,2.99,04/08/19 14:31,"594 Chestnut St, New York City, NY 10001" +192556,Wired Headphones,1,11.99,04/14/19 12:55,"978 7th St, Atlanta, GA 30301" +192557,USB-C Charging Cable,1,11.95,04/03/19 10:59,"913 Ridge St, San Francisco, CA 94016" +192558,Lightning Charging Cable,1,14.95,04/25/19 20:14,"867 Ridge St, San Francisco, CA 94016" +192559,Bose SoundSport Headphones,1,99.99,04/12/19 18:45,"376 Highland St, San Francisco, CA 94016" +192560,Bose SoundSport Headphones,1,99.99,04/23/19 08:20,"857 Main St, Boston, MA 02215" +192561,Apple Airpods Headphones,1,150,04/26/19 22:15,"874 Sunset St, Boston, MA 02215" +192562,Wired Headphones,1,11.99,04/26/19 11:57,"908 5th St, Atlanta, GA 30301" +192563,AA Batteries (4-pack),1,3.84,04/11/19 07:52,"388 Johnson St, Atlanta, GA 30301" +192564,AA Batteries (4-pack),1,3.84,04/10/19 19:33,"703 Meadow St, San Francisco, CA 94016" +192565,Wired Headphones,1,11.99,04/05/19 23:49,"968 Pine St, Portland, OR 97035" +192566,Wired Headphones,2,11.99,04/12/19 18:48,"672 Adams St, San Francisco, CA 94016" +192567,27in FHD Monitor,1,149.99,04/11/19 11:21,"74 4th St, San Francisco, CA 94016" +192568,AA Batteries (4-pack),1,3.84,04/23/19 12:07,"408 Walnut St, Austin, TX 73301" +192569,Bose SoundSport Headphones,1,99.99,04/25/19 19:03,"802 Cedar St, Seattle, WA 98101" +192570,Lightning Charging Cable,1,14.95,04/12/19 16:25,"942 Pine St, New York City, NY 10001" +192571,AAA Batteries (4-pack),1,2.99,04/27/19 12:08,"998 4th St, San Francisco, CA 94016" +192572,Wired Headphones,1,11.99,04/20/19 21:17,"947 10th St, Boston, MA 02215" +192573,27in FHD Monitor,1,149.99,04/11/19 16:40,"349 Hickory St, San Francisco, CA 94016" +192574,Bose SoundSport Headphones,1,99.99,04/03/19 14:20,"616 Elm St, Dallas, TX 75001" +192575,Macbook Pro Laptop,1,1700,04/22/19 23:59,"890 Lincoln St, Los Angeles, CA 90001" +192576,USB-C Charging Cable,3,11.95,04/04/19 04:49,"17 Lake St, San Francisco, CA 94016" +192577,AAA Batteries (4-pack),1,2.99,04/20/19 10:44,"127 6th St, Dallas, TX 75001" +192578,Bose SoundSport Headphones,1,99.99,04/24/19 12:42,"581 Hickory St, New York City, NY 10001" +192579,USB-C Charging Cable,2,11.95,04/17/19 08:57,"712 Maple St, New York City, NY 10001" +192580,Flatscreen TV,1,300,04/05/19 14:47,"853 14th St, New York City, NY 10001" +,,,,, +192581,ThinkPad Laptop,1,999.99,04/16/19 19:31,"844 Lincoln St, Boston, MA 02215" +192582,20in Monitor,1,109.99,04/29/19 13:33,"154 4th St, New York City, NY 10001" +192583,AA Batteries (4-pack),2,3.84,04/11/19 19:19,"774 Wilson St, New York City, NY 10001" +192584,Bose SoundSport Headphones,1,99.99,04/13/19 13:32,"813 Cherry St, Seattle, WA 98101" +192585,AA Batteries (4-pack),2,3.84,04/10/19 19:03,"641 Lakeview St, Atlanta, GA 30301" +192586,Bose SoundSport Headphones,1,99.99,04/24/19 13:52,"16 14th St, Los Angeles, CA 90001" +192587,USB-C Charging Cable,2,11.95,04/11/19 16:43,"81 Wilson St, New York City, NY 10001" +192588,27in FHD Monitor,1,149.99,04/22/19 22:50,"237 South St, Seattle, WA 98101" +192589,Wired Headphones,1,11.99,04/27/19 16:32,"474 Lakeview St, Dallas, TX 75001" +192590,34in Ultrawide Monitor,1,379.99,04/15/19 20:57,"744 Lake St, Austin, TX 73301" +192591,Lightning Charging Cable,1,14.95,04/09/19 05:44,"828 7th St, San Francisco, CA 94016" +192592,iPhone,1,700,04/14/19 10:31,"562 2nd St, San Francisco, CA 94016" +192592,Lightning Charging Cable,1,14.95,04/14/19 10:31,"562 2nd St, San Francisco, CA 94016" +192592,AAA Batteries (4-pack),2,2.99,04/14/19 10:31,"562 2nd St, San Francisco, CA 94016" +192593,AAA Batteries (4-pack),1,2.99,04/17/19 00:16,"986 10th St, Seattle, WA 98101" +192594,Apple Airpods Headphones,1,150,04/03/19 22:52,"919 5th St, New York City, NY 10001" +192595,Lightning Charging Cable,1,14.95,04/30/19 18:29,"419 6th St, Los Angeles, CA 90001" +192596,Lightning Charging Cable,1,14.95,04/13/19 19:59,"559 Hill St, Boston, MA 02215" +192597,USB-C Charging Cable,1,11.95,04/14/19 16:46,"374 Willow St, Los Angeles, CA 90001" +192598,AAA Batteries (4-pack),3,2.99,04/21/19 13:25,"261 North St, Austin, TX 73301" +192599,AA Batteries (4-pack),1,3.84,04/12/19 08:10,"871 Sunset St, Los Angeles, CA 90001" +192600,Flatscreen TV,1,300,04/04/19 01:30,"110 Maple St, Austin, TX 73301" +192601,27in FHD Monitor,1,149.99,04/16/19 10:00,"560 Highland St, New York City, NY 10001" +192602,AA Batteries (4-pack),1,3.84,04/11/19 21:20,"786 Jackson St, San Francisco, CA 94016" +192603,AAA Batteries (4-pack),1,2.99,04/06/19 17:45,"135 North St, Dallas, TX 75001" +192604,Apple Airpods Headphones,1,150,04/14/19 08:10,"492 Johnson St, Portland, OR 97035" +192605,USB-C Charging Cable,1,11.95,04/30/19 07:49,"25 Willow St, New York City, NY 10001" +192606,Wired Headphones,1,11.99,04/28/19 21:28,"245 6th St, San Francisco, CA 94016" +192607,27in 4K Gaming Monitor,1,389.99,04/11/19 11:28,"500 12th St, Atlanta, GA 30301" +192608,Bose SoundSport Headphones,1,99.99,04/21/19 21:17,"83 10th St, Austin, TX 73301" +192609,USB-C Charging Cable,1,11.95,04/05/19 19:07,"595 Lake St, Atlanta, GA 30301" +192610,LG Washing Machine,1,600.0,04/15/19 13:08,"637 Adams St, Los Angeles, CA 90001" +192611,ThinkPad Laptop,1,999.99,04/27/19 15:29,"864 Meadow St, New York City, NY 10001" +192612,Lightning Charging Cable,1,14.95,04/25/19 16:33,"367 Highland St, San Francisco, CA 94016" +192613,34in Ultrawide Monitor,1,379.99,04/27/19 10:56,"275 Hickory St, New York City, NY 10001" +192614,Wired Headphones,1,11.99,04/15/19 18:35,"288 1st St, Los Angeles, CA 90001" +192615,iPhone,1,700,04/15/19 21:11,"544 1st St, Portland, OR 97035" +192616,Bose SoundSport Headphones,1,99.99,04/18/19 10:12,"898 Park St, New York City, NY 10001" +192617,AA Batteries (4-pack),1,3.84,04/14/19 18:01,"925 1st St, San Francisco, CA 94016" +192618,Google Phone,1,600,04/23/19 17:39,"436 Cherry St, Boston, MA 02215" +192619,Flatscreen TV,1,300,04/03/19 07:29,"428 Willow St, San Francisco, CA 94016" +192620,Wired Headphones,1,11.99,04/15/19 14:04,"348 Ridge St, Boston, MA 02215" +192621,Wired Headphones,1,11.99,04/20/19 10:09,"437 7th St, San Francisco, CA 94016" +192622,Lightning Charging Cable,1,14.95,04/04/19 23:22,"526 North St, San Francisco, CA 94016" +192623,27in 4K Gaming Monitor,1,389.99,04/10/19 22:05,"299 Pine St, San Francisco, CA 94016" +192624,27in 4K Gaming Monitor,1,389.99,04/09/19 16:38,"810 Sunset St, Portland, OR 97035" +192625,AA Batteries (4-pack),1,3.84,04/05/19 09:59,"751 Forest St, Seattle, WA 98101" +192626,USB-C Charging Cable,2,11.95,04/04/19 07:28,"42 River St, New York City, NY 10001" +192627,Bose SoundSport Headphones,1,99.99,04/06/19 01:36,"796 Church St, San Francisco, CA 94016" +192628,Google Phone,1,600,04/29/19 09:10,"125 Forest St, Dallas, TX 75001" +192628,Wired Headphones,1,11.99,04/29/19 09:10,"125 Forest St, Dallas, TX 75001" +192629,Bose SoundSport Headphones,1,99.99,04/18/19 14:23,"345 Hill St, Boston, MA 02215" +192630,Google Phone,1,600,04/10/19 17:00,"3 5th St, Atlanta, GA 30301" +192631,Apple Airpods Headphones,1,150,04/29/19 17:19,"445 Dogwood St, Atlanta, GA 30301" +192632,Apple Airpods Headphones,1,150,04/20/19 20:25,"391 4th St, San Francisco, CA 94016" +192633,27in FHD Monitor,1,149.99,04/14/19 19:42,"37 Ridge St, New York City, NY 10001" +192634,USB-C Charging Cable,1,11.95,04/30/19 11:15,"390 10th St, Atlanta, GA 30301" +192635,Lightning Charging Cable,1,14.95,04/25/19 14:08,"583 Main St, Los Angeles, CA 90001" +192636,AAA Batteries (4-pack),1,2.99,04/19/19 15:24,"740 Johnson St, New York City, NY 10001" +192637,AAA Batteries (4-pack),2,2.99,04/02/19 14:18,"536 Madison St, San Francisco, CA 94016" +192638,iPhone,1,700,04/29/19 00:32,"526 14th St, Boston, MA 02215" +192639,AA Batteries (4-pack),1,3.84,04/18/19 07:42,"425 Adams St, Los Angeles, CA 90001" +192640,20in Monitor,1,109.99,04/18/19 21:31,"269 Lakeview St, Atlanta, GA 30301" +192641,AAA Batteries (4-pack),1,2.99,04/26/19 10:17,"212 Madison St, Austin, TX 73301" +192642,34in Ultrawide Monitor,1,379.99,04/06/19 20:22,"11 Hill St, Boston, MA 02215" +192643,LG Dryer,1,600.0,04/01/19 14:31,"597 7th St, New York City, NY 10001" +192644,iPhone,1,700,04/25/19 23:15,"777 Forest St, Atlanta, GA 30301" +192645,27in 4K Gaming Monitor,1,389.99,04/02/19 23:00,"917 Willow St, Dallas, TX 75001" +192646,Apple Airpods Headphones,1,150,04/25/19 11:22,"653 River St, Boston, MA 02215" +192647,Apple Airpods Headphones,1,150,04/02/19 20:01,"730 Park St, Dallas, TX 75001" +192648,27in FHD Monitor,1,149.99,04/24/19 20:47,"226 River St, Boston, MA 02215" +192649,USB-C Charging Cable,1,11.95,04/04/19 21:40,"145 Meadow St, Dallas, TX 75001" +192650,Flatscreen TV,1,300,04/08/19 20:43,"167 8th St, Atlanta, GA 30301" +192651,USB-C Charging Cable,1,11.95,04/21/19 19:25,"837 Park St, San Francisco, CA 94016" +192651,Macbook Pro Laptop,1,1700,04/21/19 19:25,"837 Park St, San Francisco, CA 94016" +192652,Lightning Charging Cable,1,14.95,04/11/19 21:17,"118 Lincoln St, San Francisco, CA 94016" +192653,USB-C Charging Cable,1,11.95,04/12/19 13:05,"42 Pine St, San Francisco, CA 94016" +192654,Wired Headphones,1,11.99,04/15/19 19:39,"820 North St, Atlanta, GA 30301" +192655,USB-C Charging Cable,1,11.95,04/08/19 10:21,"749 Dogwood St, San Francisco, CA 94016" +192655,Lightning Charging Cable,1,14.95,04/08/19 10:21,"749 Dogwood St, San Francisco, CA 94016" +192656,AAA Batteries (4-pack),2,2.99,04/03/19 16:36,"841 8th St, Seattle, WA 98101" +192657,Bose SoundSport Headphones,1,99.99,04/14/19 19:54,"558 13th St, New York City, NY 10001" +192658,USB-C Charging Cable,1,11.95,04/26/19 19:17,"558 14th St, New York City, NY 10001" +192659,AAA Batteries (4-pack),1,2.99,04/27/19 09:30,"432 Pine St, Boston, MA 02215" +192660,AA Batteries (4-pack),1,3.84,04/01/19 12:35,"425 Hill St, Atlanta, GA 30301" +192661,USB-C Charging Cable,1,11.95,04/17/19 09:14,"571 Meadow St, New York City, NY 10001" +192662,Wired Headphones,1,11.99,04/08/19 20:37,"986 South St, Boston, MA 02215" +192663,AAA Batteries (4-pack),2,2.99,04/02/19 15:01,"518 Cherry St, Portland, OR 97035" +192664,AAA Batteries (4-pack),1,2.99,04/23/19 13:55,"714 Church St, San Francisco, CA 94016" +192665,Lightning Charging Cable,1,14.95,04/23/19 21:53,"31 Cedar St, New York City, NY 10001" +192666,Lightning Charging Cable,1,14.95,04/24/19 20:57,"980 Spruce St, Seattle, WA 98101" +192667,iPhone,1,700,04/18/19 12:20,"587 River St, New York City, NY 10001" +192667,Lightning Charging Cable,1,14.95,04/18/19 12:20,"587 River St, New York City, NY 10001" +192668,iPhone,1,700,04/24/19 00:51,"638 North St, San Francisco, CA 94016" +192669,USB-C Charging Cable,1,11.95,04/03/19 00:15,"931 Adams St, Boston, MA 02215" +192670,AAA Batteries (4-pack),1,2.99,04/19/19 20:46,"192 Chestnut St, San Francisco, CA 94016" +192671,Wired Headphones,1,11.99,04/13/19 16:52,"88 Lake St, Austin, TX 73301" +192672,Lightning Charging Cable,1,14.95,04/17/19 23:05,"922 Sunset St, Portland, OR 97035" +192673,iPhone,1,700,04/19/19 16:05,"776 Johnson St, Los Angeles, CA 90001" +192673,Lightning Charging Cable,1,14.95,04/19/19 16:05,"776 Johnson St, Los Angeles, CA 90001" +192673,Wired Headphones,1,11.99,04/19/19 16:05,"776 Johnson St, Los Angeles, CA 90001" +192674,Lightning Charging Cable,1,14.95,04/12/19 12:09,"346 Jackson St, San Francisco, CA 94016" +192675,USB-C Charging Cable,1,11.95,04/27/19 19:34,"694 Spruce St, San Francisco, CA 94016" +192676,AA Batteries (4-pack),1,3.84,04/19/19 19:37,"802 Wilson St, Los Angeles, CA 90001" +192677,AA Batteries (4-pack),1,3.84,04/24/19 22:05,"355 Meadow St, Boston, MA 02215" +192678,Flatscreen TV,1,300,04/27/19 00:15,"861 Pine St, Dallas, TX 75001" +192679,Macbook Pro Laptop,1,1700,04/12/19 12:51,"854 South St, Portland, OR 97035" +192680,Lightning Charging Cable,1,14.95,04/24/19 15:00,"955 Hickory St, Atlanta, GA 30301" +192681,AA Batteries (4-pack),1,3.84,04/11/19 10:40,"179 Jefferson St, Los Angeles, CA 90001" +192682,Flatscreen TV,1,300,04/04/19 19:39,"783 Highland St, Los Angeles, CA 90001" +192683,AA Batteries (4-pack),1,3.84,04/20/19 13:04,"975 14th St, Boston, MA 02215" +192684,Apple Airpods Headphones,1,150,04/18/19 14:26,"938 Madison St, San Francisco, CA 94016" +192685,USB-C Charging Cable,1,11.95,04/07/19 22:57,"293 5th St, San Francisco, CA 94016" +192686,Lightning Charging Cable,1,14.95,04/23/19 20:44,"496 Willow St, Atlanta, GA 30301" +192687,27in FHD Monitor,1,149.99,04/12/19 18:34,"245 9th St, New York City, NY 10001" +192688,Flatscreen TV,1,300,04/04/19 20:27,"243 Forest St, San Francisco, CA 94016" +192689,AAA Batteries (4-pack),1,2.99,04/16/19 06:27,"874 Jefferson St, Atlanta, GA 30301" +192690,AAA Batteries (4-pack),1,2.99,04/16/19 18:49,"233 West St, Boston, MA 02215" +192691,Wired Headphones,1,11.99,04/17/19 02:20,"198 River St, Los Angeles, CA 90001" +192692,AAA Batteries (4-pack),1,2.99,04/16/19 21:57,"680 5th St, Seattle, WA 98101" +192693,Lightning Charging Cable,1,14.95,04/09/19 23:11,"356 Park St, New York City, NY 10001" +192694,Bose SoundSport Headphones,1,99.99,04/20/19 07:12,"547 North St, Los Angeles, CA 90001" +192695,Lightning Charging Cable,1,14.95,04/03/19 10:12,"917 1st St, Atlanta, GA 30301" +192696,AAA Batteries (4-pack),1,2.99,04/09/19 00:02,"132 2nd St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +192697,Bose SoundSport Headphones,1,99.99,04/21/19 17:37,"759 South St, Boston, MA 02215" +192698,Lightning Charging Cable,1,14.95,04/03/19 11:33,"351 Chestnut St, Atlanta, GA 30301" +192699,iPhone,1,700,04/16/19 14:34,"702 Washington St, Austin, TX 73301" +192700,20in Monitor,1,109.99,04/18/19 11:00,"145 Willow St, Boston, MA 02215" +192701,Lightning Charging Cable,1,14.95,04/25/19 09:32,"358 14th St, Portland, OR 97035" +192702,USB-C Charging Cable,1,11.95,04/18/19 21:02,"310 Hill St, Boston, MA 02215" +192703,Lightning Charging Cable,1,14.95,04/15/19 20:37,"25 West St, Los Angeles, CA 90001" +192704,USB-C Charging Cable,1,11.95,04/30/19 11:30,"244 Willow St, San Francisco, CA 94016" +192705,Lightning Charging Cable,1,14.95,04/24/19 20:02,"591 North St, Los Angeles, CA 90001" +192706,Lightning Charging Cable,1,14.95,04/22/19 21:34,"369 Johnson St, San Francisco, CA 94016" +192707,Lightning Charging Cable,1,14.95,04/26/19 17:40,"571 11th St, Dallas, TX 75001" +192708,Apple Airpods Headphones,1,150,04/21/19 21:35,"240 7th St, Los Angeles, CA 90001" +192709,34in Ultrawide Monitor,1,379.99,04/04/19 01:35,"241 Highland St, San Francisco, CA 94016" +192710,Lightning Charging Cable,1,14.95,04/04/19 19:25,"596 11th St, Atlanta, GA 30301" +192711,AAA Batteries (4-pack),1,2.99,04/22/19 11:03,"126 Forest St, Seattle, WA 98101" +192712,Flatscreen TV,1,300,04/24/19 22:58,"412 Lake St, Atlanta, GA 30301" +192713,USB-C Charging Cable,1,11.95,04/24/19 00:09,"244 13th St, Dallas, TX 75001" +192714,USB-C Charging Cable,1,11.95,04/08/19 17:46,"726 10th St, New York City, NY 10001" +192715,Lightning Charging Cable,1,14.95,04/29/19 21:36,"619 Spruce St, Los Angeles, CA 90001" +192716,Apple Airpods Headphones,1,150,04/08/19 14:16,"188 Park St, Los Angeles, CA 90001" +192717,AAA Batteries (4-pack),1,2.99,04/25/19 08:12,"925 West St, New York City, NY 10001" +192718,AA Batteries (4-pack),1,3.84,04/26/19 13:14,"499 Main St, New York City, NY 10001" +192719,AAA Batteries (4-pack),1,2.99,04/22/19 18:50,"624 8th St, San Francisco, CA 94016" +192720,AAA Batteries (4-pack),1,2.99,04/05/19 23:53,"168 Church St, San Francisco, CA 94016" +192721,AA Batteries (4-pack),1,3.84,04/06/19 22:54,"114 Jefferson St, New York City, NY 10001" +192721,27in FHD Monitor,1,149.99,04/06/19 22:54,"114 Jefferson St, New York City, NY 10001" +192722,AA Batteries (4-pack),2,3.84,04/13/19 07:50,"917 Cedar St, Dallas, TX 75001" +192723,AAA Batteries (4-pack),2,2.99,04/02/19 13:25,"311 10th St, Dallas, TX 75001" +192724,USB-C Charging Cable,1,11.95,04/18/19 07:33,"729 Elm St, San Francisco, CA 94016" +192725,27in FHD Monitor,1,149.99,04/05/19 21:12,"895 Dogwood St, San Francisco, CA 94016" +192726,Apple Airpods Headphones,1,150,04/01/19 17:05,"817 2nd St, San Francisco, CA 94016" +192727,34in Ultrawide Monitor,1,379.99,04/30/19 15:25,"255 Spruce St, Dallas, TX 75001" +192728,Bose SoundSport Headphones,1,99.99,04/17/19 20:01,"807 Pine St, New York City, NY 10001" +192729,AA Batteries (4-pack),2,3.84,04/21/19 23:28,"708 Walnut St, Los Angeles, CA 90001" +192730,AA Batteries (4-pack),2,3.84,04/09/19 17:33,"635 Lake St, Boston, MA 02215" +192731,Wired Headphones,1,11.99,04/15/19 20:18,"258 Elm St, San Francisco, CA 94016" +192732,AAA Batteries (4-pack),2,2.99,04/26/19 15:24,"220 West St, New York City, NY 10001" +192733,Google Phone,1,600,04/04/19 17:42,"228 5th St, New York City, NY 10001" +192734,Lightning Charging Cable,1,14.95,04/11/19 20:13,"176 Cedar St, New York City, NY 10001" +192735,Lightning Charging Cable,1,14.95,04/29/19 20:23,"117 West St, Portland, ME 04101" +192736,Lightning Charging Cable,1,14.95,04/01/19 22:03,"33 Spruce St, Dallas, TX 75001" +192737,iPhone,1,700,04/19/19 13:51,"642 Hickory St, Boston, MA 02215" +192738,USB-C Charging Cable,1,11.95,04/15/19 10:00,"132 8th St, Atlanta, GA 30301" +192739,20in Monitor,1,109.99,04/11/19 08:01,"834 9th St, San Francisco, CA 94016" +192740,AA Batteries (4-pack),1,3.84,04/06/19 06:34,"56 Meadow St, New York City, NY 10001" +192741,Flatscreen TV,1,300,04/04/19 16:27,"402 7th St, Los Angeles, CA 90001" +192742,Wired Headphones,1,11.99,04/04/19 17:51,"398 4th St, Los Angeles, CA 90001" +192743,Lightning Charging Cable,1,14.95,04/10/19 14:45,"498 Jefferson St, Austin, TX 73301" +192744,Apple Airpods Headphones,1,150,04/06/19 23:23,"159 West St, Dallas, TX 75001" +192745,AA Batteries (4-pack),5,3.84,04/29/19 11:53,"422 2nd St, Portland, OR 97035" +192746,Lightning Charging Cable,1,14.95,04/20/19 20:33,"616 Highland St, Seattle, WA 98101" +192747,Apple Airpods Headphones,1,150,04/26/19 16:32,"708 11th St, Dallas, TX 75001" +192748,AAA Batteries (4-pack),1,2.99,04/11/19 01:28,"874 Sunset St, Los Angeles, CA 90001" +192749,Lightning Charging Cable,1,14.95,04/12/19 19:39,"738 Elm St, San Francisco, CA 94016" +192750,27in FHD Monitor,1,149.99,04/30/19 23:36,"833 Hill St, Dallas, TX 75001" +192751,USB-C Charging Cable,1,11.95,04/04/19 20:58,"847 2nd St, Los Angeles, CA 90001" +192752,AA Batteries (4-pack),1,3.84,04/26/19 07:12,"801 South St, New York City, NY 10001" +192753,USB-C Charging Cable,1,11.95,04/03/19 11:58,"247 14th St, Los Angeles, CA 90001" +192754,Bose SoundSport Headphones,1,99.99,04/02/19 16:02,"329 Cedar St, Atlanta, GA 30301" +192755,Bose SoundSport Headphones,1,99.99,04/28/19 10:07,"796 Cedar St, Los Angeles, CA 90001" +192756,USB-C Charging Cable,1,11.95,04/01/19 08:16,"40 North St, San Francisco, CA 94016" +192757,ThinkPad Laptop,1,999.99,04/21/19 09:17,"617 South St, San Francisco, CA 94016" +192758,iPhone,1,700,04/06/19 14:14,"510 12th St, Los Angeles, CA 90001" +192758,Apple Airpods Headphones,1,150,04/06/19 14:14,"510 12th St, Los Angeles, CA 90001" +192759,Apple Airpods Headphones,1,150,04/06/19 11:33,"394 4th St, Seattle, WA 98101" +192760,AAA Batteries (4-pack),1,2.99,04/04/19 19:58,"985 Meadow St, Atlanta, GA 30301" +192761,Macbook Pro Laptop,1,1700,04/17/19 12:20,"696 Jefferson St, San Francisco, CA 94016" +192762,Lightning Charging Cable,1,14.95,04/05/19 11:58,"565 Main St, New York City, NY 10001" +192763,Lightning Charging Cable,1,14.95,04/15/19 11:27,"529 Johnson St, Portland, OR 97035" +192764,27in FHD Monitor,1,149.99,04/24/19 11:40,"11 Main St, San Francisco, CA 94016" +192765,Wired Headphones,1,11.99,04/28/19 20:49,"93 Wilson St, Dallas, TX 75001" +192766,AAA Batteries (4-pack),1,2.99,04/28/19 13:38,"952 Highland St, Los Angeles, CA 90001" +192767,Macbook Pro Laptop,1,1700,04/05/19 09:18,"220 Chestnut St, Austin, TX 73301" +192768,Apple Airpods Headphones,1,150,04/06/19 11:58,"426 Ridge St, Atlanta, GA 30301" +192769,AAA Batteries (4-pack),1,2.99,04/16/19 10:13,"400 14th St, San Francisco, CA 94016" +192770,AA Batteries (4-pack),1,3.84,04/04/19 00:17,"475 4th St, Portland, ME 04101" +192771,Flatscreen TV,1,300,04/20/19 00:14,"591 Hickory St, Seattle, WA 98101" +192772,20in Monitor,1,109.99,04/09/19 07:31,"333 Adams St, San Francisco, CA 94016" +192773,USB-C Charging Cable,1,11.95,04/29/19 21:53,"182 Washington St, Boston, MA 02215" +192774,iPhone,1,700,04/23/19 18:33,"36 6th St, San Francisco, CA 94016" +192775,Bose SoundSport Headphones,1,99.99,04/21/19 16:53,"960 Sunset St, San Francisco, CA 94016" +192776,27in 4K Gaming Monitor,1,389.99,04/21/19 15:36,"199 9th St, Seattle, WA 98101" +192777,ThinkPad Laptop,1,999.99,04/14/19 12:37,"34 North St, San Francisco, CA 94016" +192778,Apple Airpods Headphones,1,150,04/27/19 12:05,"620 Madison St, Los Angeles, CA 90001" +192779,Bose SoundSport Headphones,1,99.99,04/27/19 16:44,"948 13th St, Los Angeles, CA 90001" +192780,AAA Batteries (4-pack),1,2.99,04/14/19 13:12,"533 North St, San Francisco, CA 94016" +192781,AAA Batteries (4-pack),2,2.99,04/18/19 16:30,"727 10th St, Los Angeles, CA 90001" +192782,USB-C Charging Cable,1,11.95,04/07/19 18:00,"272 Madison St, New York City, NY 10001" +192783,AAA Batteries (4-pack),1,2.99,04/06/19 14:05,"535 Elm St, Boston, MA 02215" +192784,27in 4K Gaming Monitor,1,389.99,04/03/19 22:04,"312 5th St, Atlanta, GA 30301" +192785,Wired Headphones,2,11.99,04/02/19 12:59,"221 Center St, San Francisco, CA 94016" +192786,Bose SoundSport Headphones,1,99.99,04/22/19 23:56,"45 Dogwood St, San Francisco, CA 94016" +192787,AA Batteries (4-pack),1,3.84,04/24/19 01:45,"490 Lake St, Los Angeles, CA 90001" +192788,AA Batteries (4-pack),1,3.84,04/05/19 21:31,"14 Church St, Los Angeles, CA 90001" +192789,Google Phone,1,600,04/08/19 15:07,"605 Jefferson St, Seattle, WA 98101" +192789,Bose SoundSport Headphones,1,99.99,04/08/19 15:07,"605 Jefferson St, Seattle, WA 98101" +192790,Lightning Charging Cable,1,14.95,04/27/19 18:23,"154 Center St, Portland, OR 97035" +192791,USB-C Charging Cable,1,11.95,04/11/19 22:07,"163 Spruce St, Dallas, TX 75001" +192792,27in 4K Gaming Monitor,1,389.99,04/12/19 20:50,"617 Cherry St, Los Angeles, CA 90001" +192793,Lightning Charging Cable,1,14.95,04/08/19 16:00,"555 Washington St, Dallas, TX 75001" +192794,AA Batteries (4-pack),2,3.84,04/04/19 01:52,"311 Johnson St, San Francisco, CA 94016" +192795,AAA Batteries (4-pack),3,2.99,04/05/19 20:32,"677 Lincoln St, Seattle, WA 98101" +192796,Apple Airpods Headphones,1,150,04/06/19 23:44,"212 Madison St, San Francisco, CA 94016" +192797,Wired Headphones,1,11.99,04/23/19 23:45,"541 2nd St, Los Angeles, CA 90001" +192798,27in 4K Gaming Monitor,1,389.99,04/28/19 23:11,"237 Jefferson St, Atlanta, GA 30301" +192799,USB-C Charging Cable,1,11.95,04/05/19 10:08,"545 Wilson St, Boston, MA 02215" +192800,USB-C Charging Cable,1,11.95,04/14/19 16:50,"294 Spruce St, Los Angeles, CA 90001" +192801,AAA Batteries (4-pack),2,2.99,04/08/19 01:34,"742 Adams St, Boston, MA 02215" +192802,Bose SoundSport Headphones,1,99.99,04/08/19 12:13,"831 6th St, Austin, TX 73301" +192803,AA Batteries (4-pack),1,3.84,04/12/19 12:10,"708 Hickory St, Boston, MA 02215" +192804,Apple Airpods Headphones,1,150,04/24/19 15:46,"114 1st St, San Francisco, CA 94016" +192805,ThinkPad Laptop,1,999.99,04/16/19 15:59,"295 Willow St, Boston, MA 02215" +192806,AAA Batteries (4-pack),1,2.99,04/08/19 10:05,"25 1st St, San Francisco, CA 94016" +192807,AAA Batteries (4-pack),2,2.99,04/03/19 10:19,"256 Jackson St, Portland, ME 04101" +192808,USB-C Charging Cable,1,11.95,04/28/19 11:51,"690 Jackson St, Portland, ME 04101" +192809,Apple Airpods Headphones,1,150,04/16/19 22:43,"560 1st St, Austin, TX 73301" +192810,27in FHD Monitor,1,149.99,04/20/19 15:27,"531 8th St, New York City, NY 10001" +192811,34in Ultrawide Monitor,1,379.99,04/25/19 20:10,"260 5th St, Portland, OR 97035" +192812,Wired Headphones,1,11.99,04/12/19 17:31,"51 Cedar St, San Francisco, CA 94016" +192813,Lightning Charging Cable,1,14.95,04/23/19 20:13,"593 6th St, Dallas, TX 75001" +192814,Wired Headphones,1,11.99,04/30/19 22:34,"585 1st St, Los Angeles, CA 90001" +192815,USB-C Charging Cable,1,11.95,04/15/19 00:29,"698 14th St, Dallas, TX 75001" +192815,USB-C Charging Cable,1,11.95,04/15/19 00:29,"698 14th St, Dallas, TX 75001" +192816,27in 4K Gaming Monitor,1,389.99,04/29/19 23:24,"489 11th St, Boston, MA 02215" +192817,AA Batteries (4-pack),1,3.84,04/16/19 13:18,"652 Cherry St, Dallas, TX 75001" +192818,Wired Headphones,1,11.99,04/28/19 08:19,"309 South St, New York City, NY 10001" +192819,27in FHD Monitor,1,149.99,04/13/19 16:54,"593 Park St, Boston, MA 02215" +192820,AA Batteries (4-pack),1,3.84,04/10/19 19:59,"505 9th St, Portland, OR 97035" +192821,iPhone,1,700,04/21/19 18:33,"272 4th St, Los Angeles, CA 90001" +192821,Lightning Charging Cable,1,14.95,04/21/19 18:33,"272 4th St, Los Angeles, CA 90001" +192822,20in Monitor,1,109.99,04/19/19 18:32,"12 Park St, Dallas, TX 75001" +192823,34in Ultrawide Monitor,1,379.99,04/05/19 06:57,"393 Lakeview St, San Francisco, CA 94016" +192824,Apple Airpods Headphones,1,150,04/02/19 22:25,"274 Washington St, San Francisco, CA 94016" +192825,Wired Headphones,2,11.99,04/18/19 06:33,"33 1st St, New York City, NY 10001" +192826,27in FHD Monitor,1,149.99,04/28/19 23:19,"621 10th St, San Francisco, CA 94016" +192827,iPhone,1,700,04/11/19 18:15,"851 Jackson St, San Francisco, CA 94016" +192828,Wired Headphones,1,11.99,04/14/19 18:33,"429 4th St, New York City, NY 10001" +192829,AAA Batteries (4-pack),3,2.99,04/27/19 01:42,"832 Lakeview St, San Francisco, CA 94016" +192830,AAA Batteries (4-pack),1,2.99,04/06/19 11:19,"275 Lincoln St, Atlanta, GA 30301" +192831,Wired Headphones,1,11.99,04/04/19 14:12,"109 9th St, San Francisco, CA 94016" +192832,Lightning Charging Cable,2,14.95,04/27/19 06:53,"289 Pine St, Los Angeles, CA 90001" +192833,AA Batteries (4-pack),1,3.84,04/28/19 00:44,"452 Jefferson St, Dallas, TX 75001" +192834,ThinkPad Laptop,1,999.99,04/12/19 21:38,"857 Adams St, Dallas, TX 75001" +192835,20in Monitor,1,109.99,04/17/19 20:05,"508 Lake St, San Francisco, CA 94016" +192836,Apple Airpods Headphones,1,150,04/14/19 09:08,"603 Dogwood St, Austin, TX 73301" +192837,27in 4K Gaming Monitor,1,389.99,04/15/19 13:38,"188 Adams St, New York City, NY 10001" +192838,34in Ultrawide Monitor,1,379.99,04/27/19 15:36,"482 Highland St, Austin, TX 73301" +192839,Bose SoundSport Headphones,1,99.99,04/12/19 14:17,"459 5th St, Boston, MA 02215" +192840,Lightning Charging Cable,1,14.95,04/10/19 11:18,"540 Pine St, Boston, MA 02215" +192841,Bose SoundSport Headphones,1,99.99,04/02/19 10:17,"224 Center St, Boston, MA 02215" +192842,Wired Headphones,1,11.99,04/05/19 12:16,"453 Main St, Seattle, WA 98101" +192843,27in 4K Gaming Monitor,1,389.99,04/13/19 18:27,"353 Wilson St, Seattle, WA 98101" +192844,AA Batteries (4-pack),1,3.84,04/01/19 12:08,"759 14th St, Dallas, TX 75001" +192845,Bose SoundSport Headphones,1,99.99,04/26/19 21:29,"547 Wilson St, San Francisco, CA 94016" +192846,27in 4K Gaming Monitor,1,389.99,04/19/19 15:54,"48 Meadow St, Seattle, WA 98101" +192847,27in 4K Gaming Monitor,1,389.99,04/13/19 15:31,"232 Johnson St, Los Angeles, CA 90001" +192848,Lightning Charging Cable,1,14.95,04/20/19 16:47,"9 North St, Portland, OR 97035" +192849,AAA Batteries (4-pack),1,2.99,04/25/19 21:45,"326 4th St, Boston, MA 02215" +192850,USB-C Charging Cable,1,11.95,04/30/19 13:01,"973 14th St, Seattle, WA 98101" +192851,Bose SoundSport Headphones,1,99.99,04/09/19 01:38,"314 8th St, New York City, NY 10001" +192852,27in 4K Gaming Monitor,1,389.99,04/03/19 16:38,"416 Spruce St, Seattle, WA 98101" +192853,Wired Headphones,1,11.99,04/15/19 14:29,"136 Willow St, San Francisco, CA 94016" +192854,USB-C Charging Cable,1,11.95,04/09/19 20:11,"155 Hickory St, Boston, MA 02215" +192855,AA Batteries (4-pack),2,3.84,04/02/19 18:15,"775 9th St, San Francisco, CA 94016" +192856,Wired Headphones,1,11.99,04/24/19 20:26,"451 Forest St, Seattle, WA 98101" +192857,20in Monitor,1,109.99,04/12/19 23:07,"616 12th St, Seattle, WA 98101" +192858,AA Batteries (4-pack),1,3.84,04/28/19 15:05,"49 Spruce St, Seattle, WA 98101" +192859,iPhone,1,700,04/08/19 17:40,"575 Cedar St, San Francisco, CA 94016" +192860,Lightning Charging Cable,1,14.95,04/13/19 13:43,"350 Willow St, Portland, OR 97035" +192861,Bose SoundSport Headphones,1,99.99,04/26/19 16:33,"688 Willow St, Dallas, TX 75001" +192862,USB-C Charging Cable,1,11.95,04/03/19 21:49,"550 Lincoln St, Portland, OR 97035" +192863,Macbook Pro Laptop,1,1700,04/24/19 21:55,"77 6th St, Dallas, TX 75001" +192864,USB-C Charging Cable,1,11.95,04/04/19 12:25,"266 Jackson St, Seattle, WA 98101" +192865,AAA Batteries (4-pack),2,2.99,04/26/19 07:55,"234 11th St, Seattle, WA 98101" +192866,AA Batteries (4-pack),1,3.84,04/03/19 15:55,"108 Adams St, Portland, OR 97035" +192867,iPhone,1,700,04/01/19 18:51,"772 Sunset St, Austin, TX 73301" +192867,Wired Headphones,1,11.99,04/01/19 18:51,"772 Sunset St, Austin, TX 73301" +192868,AA Batteries (4-pack),1,3.84,04/22/19 08:59,"695 Willow St, Los Angeles, CA 90001" +192869,Lightning Charging Cable,2,14.95,04/10/19 17:38,"506 Main St, Atlanta, GA 30301" +192870,Lightning Charging Cable,1,14.95,04/29/19 19:41,"682 Main St, Boston, MA 02215" +192871,Lightning Charging Cable,1,14.95,04/29/19 17:48,"302 Maple St, Boston, MA 02215" +192872,Bose SoundSport Headphones,1,99.99,04/03/19 08:13,"55 Church St, Los Angeles, CA 90001" +192873,AAA Batteries (4-pack),1,2.99,04/03/19 09:04,"666 Center St, San Francisco, CA 94016" +192874,USB-C Charging Cable,1,11.95,04/13/19 13:23,"617 Cedar St, Seattle, WA 98101" +192875,USB-C Charging Cable,1,11.95,04/14/19 10:48,"232 Chestnut St, Boston, MA 02215" +192876,Lightning Charging Cable,1,14.95,04/17/19 15:03,"568 South St, Boston, MA 02215" +192877,Lightning Charging Cable,2,14.95,04/25/19 19:01,"585 Chestnut St, Los Angeles, CA 90001" +192878,34in Ultrawide Monitor,1,379.99,04/29/19 21:46,"329 West St, San Francisco, CA 94016" +192879,34in Ultrawide Monitor,1,379.99,04/23/19 14:30,"908 Park St, San Francisco, CA 94016" +192880,Lightning Charging Cable,1,14.95,04/06/19 07:59,"52 Madison St, Austin, TX 73301" +192881,USB-C Charging Cable,1,11.95,04/09/19 19:24,"654 11th St, San Francisco, CA 94016" +192882,Bose SoundSport Headphones,1,99.99,04/09/19 00:02,"606 Cherry St, San Francisco, CA 94016" +192883,Google Phone,1,600,04/24/19 11:44,"625 Hill St, Los Angeles, CA 90001" +192883,USB-C Charging Cable,2,11.95,04/24/19 11:44,"625 Hill St, Los Angeles, CA 90001" +192883,Wired Headphones,1,11.99,04/24/19 11:44,"625 Hill St, Los Angeles, CA 90001" +192884,AA Batteries (4-pack),1,3.84,04/10/19 13:31,"70 Chestnut St, San Francisco, CA 94016" +192884,Lightning Charging Cable,1,14.95,04/10/19 13:31,"70 Chestnut St, San Francisco, CA 94016" +192885,AAA Batteries (4-pack),1,2.99,04/05/19 13:37,"280 Dogwood St, Boston, MA 02215" +192886,Apple Airpods Headphones,1,150,04/07/19 13:12,"451 10th St, Los Angeles, CA 90001" +192887,Bose SoundSport Headphones,1,99.99,04/06/19 16:32,"551 Sunset St, Dallas, TX 75001" +192888,Wired Headphones,1,11.99,04/20/19 16:32,"655 Walnut St, Seattle, WA 98101" +192889,Apple Airpods Headphones,1,150,04/17/19 20:35,"203 2nd St, Boston, MA 02215" +192890,AA Batteries (4-pack),1,3.84,04/08/19 14:40,"887 Church St, Austin, TX 73301" +192891,20in Monitor,1,109.99,04/22/19 20:51,"953 Pine St, San Francisco, CA 94016" +192892,Apple Airpods Headphones,1,150,04/11/19 11:13,"982 9th St, New York City, NY 10001" +192893,AAA Batteries (4-pack),1,2.99,04/12/19 20:43,"266 Meadow St, Austin, TX 73301" +192894,AAA Batteries (4-pack),1,2.99,04/15/19 21:20,"286 Cherry St, Los Angeles, CA 90001" +192894,Lightning Charging Cable,1,14.95,04/15/19 21:20,"286 Cherry St, Los Angeles, CA 90001" +192895,27in FHD Monitor,1,149.99,04/14/19 12:05,"27 Spruce St, Atlanta, GA 30301" +192896,AA Batteries (4-pack),2,3.84,04/04/19 17:47,"925 Park St, Los Angeles, CA 90001" +192897,27in FHD Monitor,1,149.99,04/07/19 15:05,"49 Cherry St, San Francisco, CA 94016" +192898,USB-C Charging Cable,1,11.95,04/10/19 21:36,"674 1st St, Los Angeles, CA 90001" +192899,Wired Headphones,1,11.99,04/14/19 17:35,"134 Ridge St, Dallas, TX 75001" +192900,27in 4K Gaming Monitor,1,389.99,04/10/19 18:26,"117 9th St, Los Angeles, CA 90001" +192901,Lightning Charging Cable,1,14.95,04/29/19 09:29,"645 Adams St, Los Angeles, CA 90001" +192902,USB-C Charging Cable,1,11.95,04/29/19 12:36,"602 Park St, New York City, NY 10001" +192903,USB-C Charging Cable,1,11.95,04/20/19 07:31,"570 Highland St, San Francisco, CA 94016" +192904,Bose SoundSport Headphones,1,99.99,04/21/19 20:37,"613 South St, Portland, OR 97035" +192905,AA Batteries (4-pack),1,3.84,04/07/19 17:18,"211 Meadow St, Dallas, TX 75001" +192906,Google Phone,1,600,04/04/19 22:13,"468 Madison St, San Francisco, CA 94016" +192907,Google Phone,1,600,04/10/19 20:49,"78 Lakeview St, San Francisco, CA 94016" +192907,USB-C Charging Cable,1,11.95,04/10/19 20:49,"78 Lakeview St, San Francisco, CA 94016" +192908,ThinkPad Laptop,1,999.99,04/15/19 17:20,"570 Spruce St, San Francisco, CA 94016" +192909,Lightning Charging Cable,1,14.95,04/21/19 21:37,"170 Meadow St, Los Angeles, CA 90001" +192910,Lightning Charging Cable,1,14.95,04/26/19 00:25,"967 12th St, Dallas, TX 75001" +192910,AA Batteries (4-pack),3,3.84,04/26/19 00:25,"967 12th St, Dallas, TX 75001" +192911,ThinkPad Laptop,1,999.99,04/24/19 22:08,"25 1st St, Los Angeles, CA 90001" +192912,AAA Batteries (4-pack),1,2.99,04/06/19 15:55,"712 Johnson St, New York City, NY 10001" +192913,ThinkPad Laptop,1,999.99,04/18/19 22:44,"51 Pine St, Austin, TX 73301" +192914,AA Batteries (4-pack),2,3.84,04/09/19 08:59,"971 Forest St, Atlanta, GA 30301" +192914,AAA Batteries (4-pack),1,2.99,04/09/19 08:59,"971 Forest St, Atlanta, GA 30301" +192915,Apple Airpods Headphones,1,150,04/24/19 23:17,"418 Jefferson St, Boston, MA 02215" +192916,AA Batteries (4-pack),1,3.84,04/09/19 15:51,"236 Walnut St, Los Angeles, CA 90001" +192917,Apple Airpods Headphones,1,150,04/17/19 23:10,"551 Willow St, Seattle, WA 98101" +192918,Apple Airpods Headphones,1,150,04/04/19 16:32,"980 Walnut St, Dallas, TX 75001" +192919,AAA Batteries (4-pack),1,2.99,04/30/19 22:37,"296 12th St, Los Angeles, CA 90001" +192920,Apple Airpods Headphones,1,150,04/10/19 13:23,"382 10th St, Los Angeles, CA 90001" +192921,Wired Headphones,1,11.99,04/04/19 01:41,"852 Cedar St, Boston, MA 02215" +192922,AA Batteries (4-pack),1,3.84,04/12/19 00:59,"554 South St, Austin, TX 73301" +192923,Bose SoundSport Headphones,1,99.99,04/06/19 10:32,"439 Jackson St, Dallas, TX 75001" +192924,AA Batteries (4-pack),1,3.84,04/13/19 21:25,"733 11th St, New York City, NY 10001" +192925,34in Ultrawide Monitor,1,379.99,04/17/19 19:43,"739 Spruce St, Los Angeles, CA 90001" +192926,AA Batteries (4-pack),3,3.84,04/25/19 10:04,"349 8th St, Boston, MA 02215" +192927,Flatscreen TV,1,300,04/04/19 21:51,"898 Wilson St, New York City, NY 10001" +192928,USB-C Charging Cable,2,11.95,04/29/19 14:12,"485 Jefferson St, San Francisco, CA 94016" +192929,Vareebadd Phone,1,400,04/08/19 09:32,"158 Lincoln St, San Francisco, CA 94016" +192929,USB-C Charging Cable,1,11.95,04/08/19 09:32,"158 Lincoln St, San Francisco, CA 94016" +192929,Bose SoundSport Headphones,1,99.99,04/08/19 09:32,"158 Lincoln St, San Francisco, CA 94016" +192930,iPhone,1,700,04/01/19 13:25,"762 Chestnut St, Boston, MA 02215" +192931,Flatscreen TV,1,300,04/27/19 15:01,"809 Meadow St, Boston, MA 02215" +192931,AAA Batteries (4-pack),1,2.99,04/27/19 15:01,"809 Meadow St, Boston, MA 02215" +192932,Vareebadd Phone,1,400,04/07/19 10:19,"740 Meadow St, Los Angeles, CA 90001" +192933,Wired Headphones,1,11.99,04/18/19 15:50,"67 Hill St, Atlanta, GA 30301" +192934,Apple Airpods Headphones,1,150,04/11/19 22:51,"356 South St, Seattle, WA 98101" +192935,Bose SoundSport Headphones,1,99.99,04/20/19 19:14,"973 Center St, Portland, OR 97035" +192936,Apple Airpods Headphones,1,150,04/07/19 10:39,"715 Sunset St, Dallas, TX 75001" +192937,AAA Batteries (4-pack),1,2.99,04/18/19 09:27,"556 Sunset St, San Francisco, CA 94016" +192938,iPhone,1,700,04/24/19 13:49,"77 Church St, San Francisco, CA 94016" +192939,Lightning Charging Cable,1,14.95,04/18/19 09:24,"468 Madison St, San Francisco, CA 94016" +192940,Apple Airpods Headphones,1,150,04/14/19 15:25,"173 Jefferson St, Portland, OR 97035" +192941,27in FHD Monitor,1,149.99,04/15/19 08:32,"785 Park St, Los Angeles, CA 90001" +192942,Wired Headphones,1,11.99,04/29/19 17:11,"909 6th St, San Francisco, CA 94016" +192943,Wired Headphones,1,11.99,04/18/19 16:07,"309 9th St, San Francisco, CA 94016" +192944,Lightning Charging Cable,1,14.95,04/02/19 09:52,"14 13th St, Dallas, TX 75001" +192945,27in FHD Monitor,1,149.99,04/02/19 09:18,"379 Madison St, Los Angeles, CA 90001" +192946,Wired Headphones,2,11.99,04/08/19 10:02,"997 Walnut St, San Francisco, CA 94016" +192947,Macbook Pro Laptop,1,1700,04/08/19 22:14,"491 Main St, Dallas, TX 75001" +192948,AAA Batteries (4-pack),4,2.99,04/02/19 17:03,"770 Meadow St, Boston, MA 02215" +192949,USB-C Charging Cable,1,11.95,04/12/19 15:41,"381 Dogwood St, New York City, NY 10001" +192950,Google Phone,1,600,04/05/19 13:04,"538 River St, San Francisco, CA 94016" +192950,USB-C Charging Cable,1,11.95,04/05/19 13:04,"538 River St, San Francisco, CA 94016" +192951,USB-C Charging Cable,1,11.95,04/28/19 23:28,"801 Willow St, Los Angeles, CA 90001" +192952,Lightning Charging Cable,1,14.95,04/04/19 17:40,"45 Spruce St, Los Angeles, CA 90001" +192953,USB-C Charging Cable,1,11.95,04/10/19 15:53,"516 Washington St, San Francisco, CA 94016" +192954,AAA Batteries (4-pack),2,2.99,04/16/19 17:25,"969 Park St, San Francisco, CA 94016" +192955,34in Ultrawide Monitor,1,379.99,04/22/19 18:35,"472 Maple St, Los Angeles, CA 90001" +192956,AA Batteries (4-pack),2,3.84,04/30/19 17:00,"787 10th St, San Francisco, CA 94016" +192957,USB-C Charging Cable,1,11.95,04/19/19 09:36,"838 Cedar St, Boston, MA 02215" +192958,iPhone,1,700,04/30/19 13:16,"941 5th St, Dallas, TX 75001" +192959,Lightning Charging Cable,1,14.95,04/07/19 11:04,"610 North St, New York City, NY 10001" +192960,iPhone,1,700,04/21/19 08:20,"819 Center St, Boston, MA 02215" +192961,AA Batteries (4-pack),2,3.84,04/15/19 14:53,"895 7th St, Seattle, WA 98101" +192962,AA Batteries (4-pack),1,3.84,04/03/19 21:16,"591 Church St, Portland, OR 97035" +192962,34in Ultrawide Monitor,1,379.99,04/03/19 21:16,"591 Church St, Portland, OR 97035" +192963,Apple Airpods Headphones,1,150,04/21/19 11:44,"665 Spruce St, Dallas, TX 75001" +192964,AAA Batteries (4-pack),2,2.99,04/21/19 10:45,"346 14th St, Atlanta, GA 30301" +192965,AAA Batteries (4-pack),3,2.99,04/10/19 21:32,"79 9th St, Portland, ME 04101" +192966,Google Phone,1,600,04/19/19 14:58,"968 1st St, Los Angeles, CA 90001" +192966,USB-C Charging Cable,1,11.95,04/19/19 14:58,"968 1st St, Los Angeles, CA 90001" +192967,AAA Batteries (4-pack),1,2.99,04/01/19 14:21,"879 Highland St, Atlanta, GA 30301" +192968,34in Ultrawide Monitor,1,379.99,04/20/19 11:50,"371 Wilson St, New York City, NY 10001" +192969,Apple Airpods Headphones,1,150,04/19/19 14:01,"171 9th St, New York City, NY 10001" +192970,27in FHD Monitor,1,149.99,04/14/19 18:29,"809 4th St, Seattle, WA 98101" +192971,27in 4K Gaming Monitor,1,389.99,04/24/19 20:14,"461 2nd St, Atlanta, GA 30301" +192972,Flatscreen TV,1,300,04/03/19 09:43,"103 Spruce St, Los Angeles, CA 90001" +192973,LG Dryer,1,600.0,04/19/19 05:53,"71 6th St, Los Angeles, CA 90001" +192973,AAA Batteries (4-pack),1,2.99,04/19/19 05:53,"71 6th St, Los Angeles, CA 90001" +192974,Bose SoundSport Headphones,1,99.99,04/04/19 11:22,"224 6th St, Portland, OR 97035" +192975,Bose SoundSport Headphones,1,99.99,04/23/19 22:09,"946 11th St, Boston, MA 02215" +192976,Wired Headphones,1,11.99,04/27/19 01:04,"129 13th St, New York City, NY 10001" +192977,Apple Airpods Headphones,1,150,04/28/19 17:03,"535 10th St, San Francisco, CA 94016" +192978,USB-C Charging Cable,1,11.95,04/05/19 13:22,"118 Hill St, Boston, MA 02215" +192979,AAA Batteries (4-pack),1,2.99,04/09/19 15:38,"699 Lake St, Dallas, TX 75001" +192980,USB-C Charging Cable,1,11.95,04/16/19 14:46,"392 Chestnut St, Boston, MA 02215" +192981,34in Ultrawide Monitor,1,379.99,04/26/19 12:18,"881 Maple St, Atlanta, GA 30301" +192982,Apple Airpods Headphones,2,150,04/14/19 09:59,"240 Chestnut St, New York City, NY 10001" +192983,iPhone,1,700,04/05/19 13:06,"784 12th St, Boston, MA 02215" +192984,Lightning Charging Cable,1,14.95,04/22/19 18:09,"450 Church St, New York City, NY 10001" +192985,Bose SoundSport Headphones,1,99.99,04/02/19 09:17,"402 1st St, Boston, MA 02215" +192986,iPhone,1,700,04/01/19 10:10,"53 5th St, San Francisco, CA 94016" +192987,Macbook Pro Laptop,1,1700,04/07/19 08:18,"137 Maple St, San Francisco, CA 94016" +192988,AAA Batteries (4-pack),1,2.99,04/07/19 10:15,"343 5th St, Atlanta, GA 30301" +192989,Lightning Charging Cable,1,14.95,04/01/19 11:08,"287 Main St, Los Angeles, CA 90001" +192990,Lightning Charging Cable,1,14.95,04/10/19 15:36,"357 Spruce St, San Francisco, CA 94016" +192991,Macbook Pro Laptop,1,1700,04/14/19 14:10,"380 Cherry St, New York City, NY 10001" +192992,USB-C Charging Cable,1,11.95,04/28/19 20:36,"60 Park St, Los Angeles, CA 90001" +192992,Bose SoundSport Headphones,1,99.99,04/28/19 20:36,"60 Park St, Los Angeles, CA 90001" +192993,27in FHD Monitor,1,149.99,04/10/19 18:38,"259 Jefferson St, San Francisco, CA 94016" +192994,Lightning Charging Cable,1,14.95,04/03/19 09:31,"194 West St, San Francisco, CA 94016" +192995,Bose SoundSport Headphones,1,99.99,04/17/19 14:48,"596 10th St, Boston, MA 02215" +192996,Lightning Charging Cable,1,14.95,04/03/19 01:20,"941 Lincoln St, San Francisco, CA 94016" +192997,Vareebadd Phone,1,400,04/18/19 08:08,"237 Madison St, Boston, MA 02215" +192997,Wired Headphones,1,11.99,04/18/19 08:08,"237 Madison St, Boston, MA 02215" +192998,Wired Headphones,1,11.99,04/02/19 14:00,"46 9th St, Atlanta, GA 30301" +192998,AA Batteries (4-pack),1,3.84,04/02/19 14:00,"46 9th St, Atlanta, GA 30301" +192999,AA Batteries (4-pack),2,3.84,04/30/19 12:11,"520 Willow St, New York City, NY 10001" +193000,USB-C Charging Cable,1,11.95,04/03/19 09:46,"650 Walnut St, Atlanta, GA 30301" +193001,Lightning Charging Cable,1,14.95,04/28/19 12:32,"386 Washington St, New York City, NY 10001" +193002,Macbook Pro Laptop,1,1700,04/02/19 21:24,"710 14th St, Boston, MA 02215" +193003,LG Dryer,1,600.0,04/28/19 11:40,"521 Jackson St, Portland, ME 04101" +193004,Wired Headphones,1,11.99,04/25/19 15:47,"130 13th St, Portland, OR 97035" +193005,USB-C Charging Cable,1,11.95,04/20/19 18:30,"923 Cherry St, Los Angeles, CA 90001" +193006,AA Batteries (4-pack),1,3.84,04/20/19 11:38,"447 12th St, Los Angeles, CA 90001" +193007,AAA Batteries (4-pack),1,2.99,04/29/19 23:43,"990 Johnson St, Portland, OR 97035" +193008,AAA Batteries (4-pack),1,2.99,04/13/19 12:26,"395 Jefferson St, Austin, TX 73301" +193009,Lightning Charging Cable,2,14.95,04/07/19 12:36,"231 Washington St, Boston, MA 02215" +193010,USB-C Charging Cable,2,11.95,04/11/19 13:46,"793 Chestnut St, Austin, TX 73301" +193011,USB-C Charging Cable,1,11.95,04/01/19 12:10,"35 Center St, Austin, TX 73301" +193012,Google Phone,1,600,04/02/19 18:13,"176 Church St, New York City, NY 10001" +193013,Macbook Pro Laptop,1,1700,04/10/19 23:14,"634 Cherry St, New York City, NY 10001" +193013,AAA Batteries (4-pack),1,2.99,04/10/19 23:14,"634 Cherry St, New York City, NY 10001" +193014,AA Batteries (4-pack),2,3.84,04/07/19 23:06,"348 Hill St, New York City, NY 10001" +193015,Wired Headphones,1,11.99,04/07/19 17:31,"453 5th St, Los Angeles, CA 90001" +193016,Wired Headphones,2,11.99,04/24/19 12:30,"518 8th St, San Francisco, CA 94016" +193017,Macbook Pro Laptop,1,1700,04/25/19 00:44,"342 Jefferson St, New York City, NY 10001" +193018,Wired Headphones,1,11.99,04/26/19 06:25,"387 5th St, San Francisco, CA 94016" +193019,USB-C Charging Cable,2,11.95,04/17/19 12:08,"28 Church St, Boston, MA 02215" +193020,AAA Batteries (4-pack),1,2.99,04/08/19 22:46,"314 Main St, Boston, MA 02215" +193021,AAA Batteries (4-pack),1,2.99,04/21/19 08:46,"313 9th St, Portland, ME 04101" +193022,Apple Airpods Headphones,1,150,04/24/19 03:00,"192 Maple St, San Francisco, CA 94016" +193023,ThinkPad Laptop,1,999.99,04/25/19 18:16,"649 Maple St, Boston, MA 02215" +193024,Bose SoundSport Headphones,1,99.99,04/27/19 13:55,"891 Lincoln St, Los Angeles, CA 90001" +193025,Wired Headphones,1,11.99,04/23/19 22:22,"851 Park St, San Francisco, CA 94016" +193026,27in FHD Monitor,1,149.99,04/23/19 21:57,"366 Church St, San Francisco, CA 94016" +193027,Apple Airpods Headphones,1,150,04/21/19 18:49,"302 Hickory St, Los Angeles, CA 90001" +193028,20in Monitor,1,109.99,04/01/19 17:20,"117 9th St, New York City, NY 10001" +193029,Wired Headphones,1,11.99,04/05/19 00:43,"599 1st St, San Francisco, CA 94016" +193030,USB-C Charging Cable,1,11.95,04/25/19 16:04,"763 Highland St, New York City, NY 10001" +193031,AA Batteries (4-pack),1,3.84,04/11/19 22:54,"201 Ridge St, Dallas, TX 75001" +193032,AA Batteries (4-pack),1,3.84,04/05/19 19:10,"727 Meadow St, New York City, NY 10001" +193033,AA Batteries (4-pack),1,3.84,04/29/19 20:17,"263 7th St, New York City, NY 10001" +193034,AA Batteries (4-pack),1,3.84,04/29/19 19:02,"750 1st St, San Francisco, CA 94016" +193035,Vareebadd Phone,1,400,04/24/19 23:59,"609 Jackson St, San Francisco, CA 94016" +193035,USB-C Charging Cable,1,11.95,04/24/19 23:59,"609 Jackson St, San Francisco, CA 94016" +193036,USB-C Charging Cable,1,11.95,04/23/19 09:10,"981 6th St, Seattle, WA 98101" +193037,iPhone,1,700,04/12/19 16:59,"782 Church St, New York City, NY 10001" +193038,USB-C Charging Cable,1,11.95,04/04/19 13:06,"515 Forest St, San Francisco, CA 94016" +193039,Bose SoundSport Headphones,1,99.99,04/06/19 13:23,"116 13th St, San Francisco, CA 94016" +193040,27in FHD Monitor,1,149.99,04/06/19 09:26,"277 Cherry St, Boston, MA 02215" +193041,AA Batteries (4-pack),1,3.84,04/12/19 15:28,"74 Lincoln St, New York City, NY 10001" +193041,Macbook Pro Laptop,1,1700,04/12/19 15:28,"74 Lincoln St, New York City, NY 10001" +193042,Bose SoundSport Headphones,1,99.99,04/17/19 02:16,"404 Meadow St, San Francisco, CA 94016" +193043,AAA Batteries (4-pack),1,2.99,04/30/19 20:16,"790 Spruce St, Boston, MA 02215" +193044,AA Batteries (4-pack),2,3.84,04/09/19 09:14,"799 Lakeview St, San Francisco, CA 94016" +193045,Lightning Charging Cable,1,14.95,04/09/19 20:23,"224 2nd St, Boston, MA 02215" +193046,USB-C Charging Cable,1,11.95,04/02/19 11:45,"2 Lincoln St, San Francisco, CA 94016" +193047,AAA Batteries (4-pack),1,2.99,04/11/19 08:36,"687 9th St, Los Angeles, CA 90001" +193048,27in 4K Gaming Monitor,1,389.99,04/07/19 12:43,"793 Wilson St, San Francisco, CA 94016" +193049,AA Batteries (4-pack),1,3.84,04/12/19 11:30,"503 Highland St, Seattle, WA 98101" +193050,USB-C Charging Cable,1,11.95,04/10/19 15:56,"284 10th St, Los Angeles, CA 90001" +193050,LG Dryer,1,600.0,04/10/19 15:56,"284 10th St, Los Angeles, CA 90001" +193051,ThinkPad Laptop,1,999.99,04/07/19 18:05,"696 Spruce St, Atlanta, GA 30301" +193052,Wired Headphones,1,11.99,04/10/19 12:34,"835 Sunset St, Boston, MA 02215" +193053,AA Batteries (4-pack),1,3.84,04/27/19 15:53,"845 Lincoln St, New York City, NY 10001" +193054,34in Ultrawide Monitor,1,379.99,04/10/19 19:05,"2 Lake St, San Francisco, CA 94016" +193055,Apple Airpods Headphones,1,150,04/20/19 14:40,"936 4th St, Portland, OR 97035" +193055,Lightning Charging Cable,1,14.95,04/20/19 14:40,"936 4th St, Portland, OR 97035" +193056,AAA Batteries (4-pack),1,2.99,04/04/19 22:27,"680 14th St, Seattle, WA 98101" +193057,27in FHD Monitor,1,149.99,04/14/19 21:07,"479 8th St, Seattle, WA 98101" +193058,27in 4K Gaming Monitor,1,389.99,04/22/19 07:35,"411 Elm St, San Francisco, CA 94016" +193059,AAA Batteries (4-pack),5,2.99,04/15/19 09:55,"780 9th St, Seattle, WA 98101" +193060,27in FHD Monitor,1,149.99,04/02/19 08:43,"364 Pine St, Seattle, WA 98101" +193061,AAA Batteries (4-pack),2,2.99,04/05/19 23:42,"732 Jefferson St, Los Angeles, CA 90001" +193061,Lightning Charging Cable,1,14.95,04/05/19 23:42,"732 Jefferson St, Los Angeles, CA 90001" +193062,27in FHD Monitor,1,149.99,04/09/19 13:04,"210 Main St, Dallas, TX 75001" +193063,AA Batteries (4-pack),1,3.84,04/14/19 15:52,"556 4th St, Atlanta, GA 30301" +193064,27in 4K Gaming Monitor,1,389.99,04/16/19 09:01,"329 Pine St, Los Angeles, CA 90001" +193065,Flatscreen TV,1,300,04/20/19 12:29,"62 10th St, Seattle, WA 98101" +193066,AA Batteries (4-pack),2,3.84,04/23/19 23:58,"141 Maple St, Portland, OR 97035" +193067,Lightning Charging Cable,1,14.95,04/18/19 14:50,"794 7th St, San Francisco, CA 94016" +193068,AA Batteries (4-pack),2,3.84,04/30/19 13:45,"54 Center St, Seattle, WA 98101" +193068,Google Phone,1,600,04/30/19 13:45,"54 Center St, Seattle, WA 98101" +193069,Lightning Charging Cable,1,14.95,04/02/19 12:17,"900 Ridge St, Austin, TX 73301" +193070,AAA Batteries (4-pack),1,2.99,04/07/19 01:15,"47 6th St, San Francisco, CA 94016" +193071,Bose SoundSport Headphones,1,99.99,04/04/19 11:32,"87 Lakeview St, Boston, MA 02215" +193072,Apple Airpods Headphones,1,150,04/14/19 16:21,"395 Johnson St, San Francisco, CA 94016" +193073,27in 4K Gaming Monitor,1,389.99,04/30/19 22:59,"125 Dogwood St, Los Angeles, CA 90001" +193074,AAA Batteries (4-pack),2,2.99,04/12/19 10:07,"789 4th St, Austin, TX 73301" +193075,Wired Headphones,2,11.99,04/08/19 18:53,"726 Dogwood St, Dallas, TX 75001" +193076,USB-C Charging Cable,1,11.95,04/18/19 14:53,"2 Spruce St, Los Angeles, CA 90001" +193077,Lightning Charging Cable,1,14.95,04/17/19 18:02,"826 Ridge St, Portland, OR 97035" +193078,Lightning Charging Cable,1,14.95,04/24/19 22:49,"34 River St, New York City, NY 10001" +193079,Google Phone,1,600,04/07/19 19:33,"206 Park St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +193080,USB-C Charging Cable,1,11.95,04/12/19 07:11,"150 7th St, New York City, NY 10001" +193081,Google Phone,1,600,04/21/19 14:17,"695 Cedar St, Atlanta, GA 30301" +193082,27in FHD Monitor,1,149.99,04/06/19 20:07,"16 13th St, New York City, NY 10001" +193083,Lightning Charging Cable,1,14.95,04/10/19 16:16,"822 Center St, San Francisco, CA 94016" +193084,Wired Headphones,1,11.99,04/30/19 20:07,"65 North St, Los Angeles, CA 90001" +193085,34in Ultrawide Monitor,1,379.99,04/01/19 17:04,"608 5th St, New York City, NY 10001" +193086,Wired Headphones,1,11.99,04/08/19 21:31,"865 Highland St, Seattle, WA 98101" +193087,Wired Headphones,1,11.99,04/11/19 13:41,"265 5th St, Dallas, TX 75001" +193088,ThinkPad Laptop,1,999.99,04/16/19 18:58,"130 Elm St, Los Angeles, CA 90001" +193089,USB-C Charging Cable,1,11.95,04/04/19 09:17,"251 Pine St, San Francisco, CA 94016" +193090,27in FHD Monitor,1,149.99,04/13/19 23:40,"503 Lincoln St, San Francisco, CA 94016" +193091,Macbook Pro Laptop,1,1700,04/05/19 20:02,"204 West St, San Francisco, CA 94016" +193092,Lightning Charging Cable,1,14.95,04/23/19 09:29,"885 South St, Seattle, WA 98101" +193093,Bose SoundSport Headphones,1,99.99,04/12/19 21:59,"284 Pine St, Atlanta, GA 30301" +193094,ThinkPad Laptop,1,999.99,04/11/19 12:07,"400 Lake St, Boston, MA 02215" +193095,Apple Airpods Headphones,1,150,04/05/19 22:59,"76 Spruce St, Boston, MA 02215" +193096,Wired Headphones,1,11.99,04/17/19 17:41,"425 2nd St, San Francisco, CA 94016" +193097,Wired Headphones,1,11.99,05/01/19 00:50,"50 Church St, Dallas, TX 75001" +193098,AA Batteries (4-pack),1,3.84,04/10/19 21:37,"828 8th St, Dallas, TX 75001" +193099,Bose SoundSport Headphones,1,99.99,04/28/19 07:07,"814 Walnut St, New York City, NY 10001" +193100,Lightning Charging Cable,1,14.95,04/03/19 21:14,"143 Walnut St, San Francisco, CA 94016" +193101,Lightning Charging Cable,1,14.95,04/06/19 01:55,"525 Forest St, Boston, MA 02215" +193102,Lightning Charging Cable,1,14.95,04/06/19 06:10,"459 Lake St, San Francisco, CA 94016" +193103,Wired Headphones,2,11.99,04/12/19 20:25,"849 Walnut St, Atlanta, GA 30301" +193104,USB-C Charging Cable,1,11.95,04/04/19 19:52,"169 Spruce St, Los Angeles, CA 90001" +193105,Apple Airpods Headphones,1,150,04/29/19 22:14,"867 1st St, Boston, MA 02215" +193106,ThinkPad Laptop,1,999.99,04/15/19 20:31,"318 Wilson St, San Francisco, CA 94016" +193107,20in Monitor,1,109.99,04/07/19 18:35,"251 Wilson St, Los Angeles, CA 90001" +193108,Wired Headphones,1,11.99,04/20/19 15:56,"555 5th St, Atlanta, GA 30301" +193109,27in 4K Gaming Monitor,1,389.99,04/07/19 06:56,"717 Forest St, New York City, NY 10001" +193110,Lightning Charging Cable,1,14.95,04/26/19 21:31,"269 Meadow St, San Francisco, CA 94016" +193111,Macbook Pro Laptop,1,1700,04/27/19 02:17,"691 2nd St, Boston, MA 02215" +193112,Apple Airpods Headphones,1,150,04/25/19 08:14,"758 South St, Los Angeles, CA 90001" +193113,USB-C Charging Cable,1,11.95,04/26/19 18:07,"873 South St, New York City, NY 10001" +193114,AAA Batteries (4-pack),1,2.99,04/22/19 10:48,"453 1st St, Dallas, TX 75001" +193115,AA Batteries (4-pack),1,3.84,04/05/19 14:15,"151 West St, Seattle, WA 98101" +193116,Bose SoundSport Headphones,1,99.99,04/10/19 15:46,"189 Cherry St, Atlanta, GA 30301" +193117,AAA Batteries (4-pack),3,2.99,04/09/19 22:48,"306 Washington St, Los Angeles, CA 90001" +193118,AA Batteries (4-pack),2,3.84,04/15/19 06:28,"806 Church St, San Francisco, CA 94016" +193119,Lightning Charging Cable,1,14.95,04/05/19 00:44,"139 Chestnut St, Atlanta, GA 30301" +193120,27in 4K Gaming Monitor,1,389.99,04/10/19 23:03,"314 Spruce St, Dallas, TX 75001" +193121,Lightning Charging Cable,1,14.95,04/20/19 10:25,"45 West St, San Francisco, CA 94016" +193122,AA Batteries (4-pack),1,3.84,04/05/19 16:21,"55 River St, Seattle, WA 98101" +193123,34in Ultrawide Monitor,1,379.99,04/30/19 13:45,"892 Wilson St, Boston, MA 02215" +193124,Apple Airpods Headphones,1,150,04/03/19 20:17,"151 Wilson St, San Francisco, CA 94016" +193125,AAA Batteries (4-pack),3,2.99,04/22/19 14:56,"879 8th St, Atlanta, GA 30301" +193126,iPhone,1,700,04/27/19 09:41,"997 Main St, Portland, OR 97035" +193126,Apple Airpods Headphones,1,150,04/27/19 09:41,"997 Main St, Portland, OR 97035" +193127,27in 4K Gaming Monitor,1,389.99,04/09/19 14:40,"428 Willow St, Atlanta, GA 30301" +193128,AAA Batteries (4-pack),1,2.99,04/23/19 14:51,"840 13th St, Los Angeles, CA 90001" +193129,Macbook Pro Laptop,1,1700,04/22/19 09:15,"592 Wilson St, Seattle, WA 98101" +193130,AAA Batteries (4-pack),2,2.99,04/10/19 12:42,"6 Lakeview St, San Francisco, CA 94016" +193131,AA Batteries (4-pack),1,3.84,04/28/19 17:48,"183 Park St, New York City, NY 10001" +193132,Wired Headphones,1,11.99,04/02/19 20:57,"524 Hickory St, New York City, NY 10001" +193133,ThinkPad Laptop,1,999.99,04/07/19 19:45,"484 2nd St, New York City, NY 10001" +193134,AA Batteries (4-pack),1,3.84,04/02/19 09:45,"390 Spruce St, San Francisco, CA 94016" +193135,USB-C Charging Cable,1,11.95,04/29/19 17:04,"99 Walnut St, Seattle, WA 98101" +193136,USB-C Charging Cable,1,11.95,04/16/19 21:57,"331 14th St, Atlanta, GA 30301" +193137,Lightning Charging Cable,1,14.95,04/14/19 12:15,"477 Church St, Seattle, WA 98101" +193138,AA Batteries (4-pack),1,3.84,04/20/19 12:32,"907 12th St, San Francisco, CA 94016" +193139,iPhone,1,700,04/21/19 21:15,"506 6th St, Austin, TX 73301" +193140,Bose SoundSport Headphones,1,99.99,04/23/19 00:11,"454 Dogwood St, Dallas, TX 75001" +193141,Lightning Charging Cable,1,14.95,04/13/19 17:14,"553 Lincoln St, Los Angeles, CA 90001" +193142,iPhone,1,700,04/01/19 11:10,"377 2nd St, San Francisco, CA 94016" +193143,27in 4K Gaming Monitor,1,389.99,04/27/19 18:45,"843 Cedar St, Portland, OR 97035" +193144,AA Batteries (4-pack),1,3.84,04/09/19 20:23,"778 7th St, Boston, MA 02215" +193145,20in Monitor,1,109.99,04/09/19 08:22,"96 Chestnut St, San Francisco, CA 94016" +193146,AAA Batteries (4-pack),2,2.99,04/23/19 19:28,"36 Walnut St, Seattle, WA 98101" +193147,27in FHD Monitor,1,149.99,04/12/19 10:00,"158 Hickory St, New York City, NY 10001" +193148,AA Batteries (4-pack),3,3.84,04/30/19 11:59,"888 Forest St, Portland, OR 97035" +193149,Flatscreen TV,1,300,04/02/19 22:00,"666 Washington St, Atlanta, GA 30301" +193150,Lightning Charging Cable,1,14.95,04/30/19 13:38,"650 Chestnut St, San Francisco, CA 94016" +193151,Bose SoundSport Headphones,1,99.99,04/20/19 13:17,"43 Meadow St, New York City, NY 10001" +193152,Apple Airpods Headphones,1,150,04/12/19 17:21,"731 Elm St, San Francisco, CA 94016" +193153,Apple Airpods Headphones,1,150,04/19/19 14:32,"677 Washington St, San Francisco, CA 94016" +193154,Lightning Charging Cable,1,14.95,04/10/19 22:52,"609 Chestnut St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +193155,Lightning Charging Cable,1,14.95,04/17/19 16:32,"907 Cherry St, New York City, NY 10001" +193156,Wired Headphones,1,11.99,04/27/19 16:47,"395 Main St, Boston, MA 02215" +193157,USB-C Charging Cable,1,11.95,04/10/19 21:21,"313 Pine St, Dallas, TX 75001" +193158,Wired Headphones,1,11.99,04/20/19 11:48,"301 Hickory St, Dallas, TX 75001" +193159,AA Batteries (4-pack),3,3.84,04/04/19 12:03,"188 Cedar St, Atlanta, GA 30301" +193160,AAA Batteries (4-pack),1,2.99,04/10/19 07:36,"686 Maple St, Boston, MA 02215" +193161,34in Ultrawide Monitor,1,379.99,04/28/19 21:23,"823 Pine St, Atlanta, GA 30301" +193162,Flatscreen TV,1,300,04/29/19 11:20,"113 Ridge St, Los Angeles, CA 90001" +193163,LG Washing Machine,1,600.0,04/28/19 23:08,"612 Center St, Atlanta, GA 30301" +193164,AAA Batteries (4-pack),1,2.99,04/26/19 09:10,"319 Cedar St, Los Angeles, CA 90001" +193165,Bose SoundSport Headphones,1,99.99,04/25/19 18:19,"305 Sunset St, New York City, NY 10001" +193166,Wired Headphones,2,11.99,04/22/19 17:05,"450 Chestnut St, Dallas, TX 75001" +193167,27in 4K Gaming Monitor,1,389.99,04/05/19 19:12,"908 Lincoln St, San Francisco, CA 94016" +193168,Google Phone,1,600,04/11/19 21:37,"145 12th St, San Francisco, CA 94016" +193168,USB-C Charging Cable,1,11.95,04/11/19 21:37,"145 12th St, San Francisco, CA 94016" +193169,Flatscreen TV,1,300,04/13/19 11:32,"291 Meadow St, New York City, NY 10001" +193170,iPhone,1,700,04/02/19 18:07,"766 11th St, New York City, NY 10001" +193170,Wired Headphones,1,11.99,04/02/19 18:07,"766 11th St, New York City, NY 10001" +193171,Flatscreen TV,1,300,04/21/19 20:29,"850 Adams St, Seattle, WA 98101" +193172,20in Monitor,1,109.99,04/06/19 12:04,"229 Center St, Boston, MA 02215" +193173,27in 4K Gaming Monitor,1,389.99,04/11/19 09:58,"359 5th St, San Francisco, CA 94016" +193174,AAA Batteries (4-pack),2,2.99,04/17/19 08:17,"331 Madison St, Boston, MA 02215" +193175,Bose SoundSport Headphones,1,99.99,04/30/19 19:56,"88 Park St, Boston, MA 02215" +193176,Wired Headphones,1,11.99,04/12/19 23:39,"445 14th St, San Francisco, CA 94016" +193177,Bose SoundSport Headphones,1,99.99,04/05/19 10:59,"787 Park St, New York City, NY 10001" +193178,AA Batteries (4-pack),1,3.84,04/05/19 21:10,"9 West St, San Francisco, CA 94016" +193179,20in Monitor,1,109.99,04/14/19 14:04,"562 8th St, San Francisco, CA 94016" +193180,AAA Batteries (4-pack),1,2.99,04/19/19 12:20,"510 Park St, San Francisco, CA 94016" +193181,20in Monitor,1,109.99,04/21/19 20:14,"301 Jackson St, Seattle, WA 98101" +193182,AA Batteries (4-pack),1,3.84,04/30/19 12:05,"387 North St, Boston, MA 02215" +193183,27in FHD Monitor,1,149.99,04/06/19 16:04,"564 Maple St, Austin, TX 73301" +193184,Flatscreen TV,1,300,04/25/19 15:15,"411 Maple St, San Francisco, CA 94016" +193185,Flatscreen TV,1,300,04/26/19 14:46,"98 14th St, Austin, TX 73301" +193186,34in Ultrawide Monitor,1,379.99,04/27/19 13:39,"349 North St, Los Angeles, CA 90001" +193187,Lightning Charging Cable,1,14.95,04/08/19 18:53,"193 Park St, Los Angeles, CA 90001" +193188,AAA Batteries (4-pack),1,2.99,04/27/19 06:56,"959 4th St, Boston, MA 02215" +193189,USB-C Charging Cable,1,11.95,04/02/19 11:31,"591 2nd St, Los Angeles, CA 90001" +193190,Apple Airpods Headphones,1,150,04/01/19 19:51,"154 Willow St, Boston, MA 02215" +193191,USB-C Charging Cable,1,11.95,04/26/19 12:10,"637 9th St, New York City, NY 10001" +193192,27in 4K Gaming Monitor,1,389.99,04/09/19 00:54,"929 West St, Boston, MA 02215" +193193,Apple Airpods Headphones,1,150,04/11/19 15:09,"72 West St, Seattle, WA 98101" +193194,Apple Airpods Headphones,1,150,04/07/19 19:52,"351 14th St, Los Angeles, CA 90001" +193195,AAA Batteries (4-pack),2,2.99,04/26/19 10:55,"478 West St, Los Angeles, CA 90001" +193196,USB-C Charging Cable,2,11.95,04/24/19 01:34,"521 2nd St, Portland, OR 97035" +193197,Macbook Pro Laptop,1,1700,04/21/19 09:46,"137 Wilson St, San Francisco, CA 94016" +193198,Lightning Charging Cable,1,14.95,04/28/19 17:11,"320 River St, San Francisco, CA 94016" +193199,20in Monitor,1,109.99,04/30/19 20:07,"842 Jackson St, Boston, MA 02215" +193200,Google Phone,1,600,04/25/19 11:04,"514 Willow St, Seattle, WA 98101" +193201,Lightning Charging Cable,1,14.95,04/10/19 00:09,"134 13th St, New York City, NY 10001" +193202,iPhone,1,700,04/21/19 21:12,"455 14th St, New York City, NY 10001" +193202,Lightning Charging Cable,1,14.95,04/21/19 21:12,"455 14th St, New York City, NY 10001" +193203,iPhone,1,700,04/29/19 13:02,"881 6th St, Dallas, TX 75001" +193204,Bose SoundSport Headphones,1,99.99,04/12/19 11:13,"773 9th St, Portland, OR 97035" +193205,20in Monitor,1,109.99,04/02/19 12:22,"942 Chestnut St, Atlanta, GA 30301" +193206,AA Batteries (4-pack),1,3.84,04/13/19 22:50,"794 Hickory St, New York City, NY 10001" +193207,Apple Airpods Headphones,1,150,04/30/19 12:33,"438 Sunset St, Dallas, TX 75001" +193208,Wired Headphones,1,11.99,04/08/19 12:02,"662 Washington St, San Francisco, CA 94016" +193209,20in Monitor,1,109.99,04/19/19 20:17,"460 4th St, San Francisco, CA 94016" +193210,Google Phone,1,600,04/07/19 18:33,"229 Main St, Portland, OR 97035" +193211,Lightning Charging Cable,1,14.95,04/16/19 06:50,"369 Center St, San Francisco, CA 94016" +193212,USB-C Charging Cable,1,11.95,04/24/19 21:09,"530 Ridge St, San Francisco, CA 94016" +193213,Wired Headphones,1,11.99,04/17/19 17:22,"765 Hickory St, San Francisco, CA 94016" +193214,Macbook Pro Laptop,1,1700,04/06/19 20:57,"244 Chestnut St, San Francisco, CA 94016" +193215,ThinkPad Laptop,1,999.99,04/27/19 18:39,"393 12th St, Portland, ME 04101" +193216,AA Batteries (4-pack),1,3.84,04/29/19 10:17,"486 8th St, Austin, TX 73301" +193217,Apple Airpods Headphones,1,150,04/04/19 10:43,"704 4th St, Atlanta, GA 30301" +193218,AA Batteries (4-pack),1,3.84,04/10/19 05:22,"201 Madison St, New York City, NY 10001" +193219,Vareebadd Phone,1,400,04/19/19 09:28,"143 Main St, Los Angeles, CA 90001" +193219,Wired Headphones,1,11.99,04/19/19 09:28,"143 Main St, Los Angeles, CA 90001" +193220,AA Batteries (4-pack),2,3.84,04/10/19 14:07,"796 Elm St, Boston, MA 02215" +193221,AA Batteries (4-pack),1,3.84,04/23/19 20:36,"379 Jefferson St, New York City, NY 10001" +193222,AA Batteries (4-pack),1,3.84,04/17/19 21:08,"284 Ridge St, Boston, MA 02215" +193223,27in 4K Gaming Monitor,2,389.99,04/23/19 16:12,"281 Johnson St, San Francisco, CA 94016" +193224,Bose SoundSport Headphones,1,99.99,04/06/19 12:24,"518 12th St, Atlanta, GA 30301" +193225,Bose SoundSport Headphones,1,99.99,04/26/19 19:41,"628 Walnut St, Seattle, WA 98101" +193226,Apple Airpods Headphones,1,150,04/24/19 09:09,"152 North St, Los Angeles, CA 90001" +193227,iPhone,1,700,04/01/19 23:59,"87 Washington St, Atlanta, GA 30301" +193228,AAA Batteries (4-pack),1,2.99,04/09/19 23:15,"164 Lakeview St, Seattle, WA 98101" +193229,Google Phone,1,600,04/07/19 18:19,"251 South St, New York City, NY 10001" +193229,USB-C Charging Cable,1,11.95,04/07/19 18:19,"251 South St, New York City, NY 10001" +193230,Lightning Charging Cable,1,14.95,04/16/19 21:03,"545 6th St, Portland, OR 97035" +193231,Lightning Charging Cable,1,14.95,04/04/19 15:43,"21 Highland St, San Francisco, CA 94016" +193232,Wired Headphones,1,11.99,04/07/19 12:48,"521 Park St, Los Angeles, CA 90001" +193233,Macbook Pro Laptop,1,1700,04/18/19 14:43,"26 Chestnut St, San Francisco, CA 94016" +193234,AAA Batteries (4-pack),1,2.99,04/27/19 08:25,"933 Madison St, New York City, NY 10001" +193235,Lightning Charging Cable,1,14.95,04/01/19 18:58,"479 5th St, Los Angeles, CA 90001" +193236,Wired Headphones,1,11.99,04/24/19 13:39,"196 Church St, Los Angeles, CA 90001" +193237,34in Ultrawide Monitor,1,379.99,04/30/19 22:27,"247 Spruce St, New York City, NY 10001" +193238,27in 4K Gaming Monitor,1,389.99,04/17/19 12:18,"524 Meadow St, New York City, NY 10001" +193239,Wired Headphones,1,11.99,04/14/19 05:47,"939 Spruce St, New York City, NY 10001" +193240,AAA Batteries (4-pack),2,2.99,04/03/19 10:28,"174 Center St, San Francisco, CA 94016" +193241,USB-C Charging Cable,1,11.95,04/06/19 12:14,"978 Meadow St, Los Angeles, CA 90001" +193242,27in 4K Gaming Monitor,1,389.99,04/25/19 17:27,"167 4th St, Atlanta, GA 30301" +193243,AAA Batteries (4-pack),1,2.99,04/18/19 15:14,"118 2nd St, Seattle, WA 98101" +193243,Apple Airpods Headphones,1,150,04/18/19 15:14,"118 2nd St, Seattle, WA 98101" +193244,AA Batteries (4-pack),1,3.84,05/01/19 02:11,"544 Meadow St, Los Angeles, CA 90001" +193245,iPhone,1,700,04/20/19 17:35,"639 Spruce St, Seattle, WA 98101" +193246,Macbook Pro Laptop,1,1700,04/16/19 11:45,"752 Cedar St, Boston, MA 02215" +193247,AAA Batteries (4-pack),2,2.99,04/06/19 12:05,"898 4th St, San Francisco, CA 94016" +193248,Lightning Charging Cable,1,14.95,04/26/19 21:50,"96 Forest St, Atlanta, GA 30301" +193249,27in 4K Gaming Monitor,1,389.99,04/26/19 13:26,"626 Johnson St, Boston, MA 02215" +193250,ThinkPad Laptop,1,999.99,04/23/19 12:00,"874 Cedar St, Austin, TX 73301" +193251,AA Batteries (4-pack),1,3.84,04/23/19 07:36,"354 Chestnut St, San Francisco, CA 94016" +193252,iPhone,1,700,04/17/19 13:34,"703 Center St, Portland, OR 97035" +193252,Lightning Charging Cable,2,14.95,04/17/19 13:34,"703 Center St, Portland, OR 97035" +193252,Apple Airpods Headphones,1,150,04/17/19 13:34,"703 Center St, Portland, OR 97035" +193253,ThinkPad Laptop,1,999.99,04/16/19 10:59,"65 Madison St, Atlanta, GA 30301" +193254,20in Monitor,1,109.99,04/20/19 17:41,"31 2nd St, Austin, TX 73301" +193255,AA Batteries (4-pack),1,3.84,04/21/19 09:15,"910 West St, San Francisco, CA 94016" +193256,27in FHD Monitor,1,149.99,04/20/19 23:04,"516 Jefferson St, Boston, MA 02215" +193257,Bose SoundSport Headphones,1,99.99,04/25/19 18:51,"342 Cherry St, Boston, MA 02215" +193258,Wired Headphones,1,11.99,04/15/19 10:24,"525 Wilson St, New York City, NY 10001" +193259,Macbook Pro Laptop,1,1700,04/12/19 10:25,"361 Hickory St, Seattle, WA 98101" +193260,Bose SoundSport Headphones,1,99.99,04/24/19 13:03,"618 North St, Portland, OR 97035" +193261,AAA Batteries (4-pack),2,2.99,05/01/19 00:39,"505 Lakeview St, Portland, OR 97035" +193262,Lightning Charging Cable,1,14.95,04/20/19 14:08,"367 Jefferson St, Portland, OR 97035" +193263,Google Phone,1,600,04/12/19 12:08,"565 River St, Los Angeles, CA 90001" +193264,Apple Airpods Headphones,1,150,04/17/19 18:08,"398 11th St, Dallas, TX 75001" +193265,Macbook Pro Laptop,1,1700,04/14/19 08:49,"332 Chestnut St, Boston, MA 02215" +193266,Bose SoundSport Headphones,1,99.99,04/16/19 22:17,"727 13th St, San Francisco, CA 94016" +193267,iPhone,1,700,04/02/19 22:47,"992 Center St, Dallas, TX 75001" +193268,34in Ultrawide Monitor,1,379.99,04/06/19 14:58,"402 Park St, New York City, NY 10001" +193269,AA Batteries (4-pack),1,3.84,04/21/19 10:56,"832 2nd St, Los Angeles, CA 90001" +193270,Bose SoundSport Headphones,1,99.99,04/28/19 17:51,"550 Lakeview St, New York City, NY 10001" +193271,Apple Airpods Headphones,1,150,04/21/19 09:33,"341 Wilson St, Dallas, TX 75001" +193272,USB-C Charging Cable,1,11.95,04/24/19 13:22,"235 10th St, Austin, TX 73301" +193273,Macbook Pro Laptop,1,1700,04/16/19 10:50,"904 2nd St, Seattle, WA 98101" +193274,Google Phone,1,600,04/28/19 14:12,"716 West St, Dallas, TX 75001" +193275,Vareebadd Phone,1,400,04/12/19 16:52,"485 1st St, New York City, NY 10001" +193275,Wired Headphones,1,11.99,04/12/19 16:52,"485 1st St, New York City, NY 10001" +193276,27in FHD Monitor,1,149.99,04/11/19 10:02,"376 7th St, Dallas, TX 75001" +193277,AA Batteries (4-pack),2,3.84,04/29/19 12:08,"717 Adams St, Los Angeles, CA 90001" +193278,Wired Headphones,2,11.99,04/15/19 13:43,"463 Spruce St, Dallas, TX 75001" +193279,USB-C Charging Cable,2,11.95,04/23/19 12:36,"324 North St, Seattle, WA 98101" +193280,27in FHD Monitor,1,149.99,04/12/19 16:27,"408 Maple St, Boston, MA 02215" +193281,Wired Headphones,1,11.99,04/02/19 06:53,"408 Park St, Austin, TX 73301" +193282,Flatscreen TV,1,300,04/16/19 20:12,"260 Willow St, Boston, MA 02215" +193283,34in Ultrawide Monitor,1,379.99,04/04/19 17:33,"869 7th St, New York City, NY 10001" +193283,Bose SoundSport Headphones,1,99.99,04/04/19 17:33,"869 7th St, New York City, NY 10001" +193284,AA Batteries (4-pack),1,3.84,04/26/19 06:44,"933 7th St, San Francisco, CA 94016" +193285,Wired Headphones,1,11.99,04/30/19 13:03,"465 13th St, San Francisco, CA 94016" +193286,20in Monitor,1,109.99,04/26/19 21:36,"978 Meadow St, Los Angeles, CA 90001" +193287,Wired Headphones,1,11.99,04/22/19 23:24,"717 8th St, New York City, NY 10001" +193288,USB-C Charging Cable,2,11.95,04/16/19 16:31,"4 North St, Los Angeles, CA 90001" +193289,Apple Airpods Headphones,1,150,04/20/19 19:27,"401 Lakeview St, New York City, NY 10001" +193290,AAA Batteries (4-pack),3,2.99,04/01/19 17:18,"115 Hickory St, San Francisco, CA 94016" +193291,USB-C Charging Cable,1,11.95,04/16/19 13:52,"115 12th St, Los Angeles, CA 90001" +193292,Macbook Pro Laptop,1,1700,04/05/19 13:53,"608 Elm St, Portland, OR 97035" +193293,34in Ultrawide Monitor,1,379.99,04/22/19 17:13,"431 Sunset St, San Francisco, CA 94016" +193294,AA Batteries (4-pack),2,3.84,04/02/19 15:15,"540 Park St, Los Angeles, CA 90001" +193295,Apple Airpods Headphones,1,150,04/08/19 16:10,"281 Ridge St, Los Angeles, CA 90001" +193296,Wired Headphones,1,11.99,04/12/19 11:25,"6 8th St, Boston, MA 02215" +193297,Lightning Charging Cable,1,14.95,04/20/19 10:04,"104 North St, Boston, MA 02215" +193298,Macbook Pro Laptop,1,1700,04/24/19 03:37,"494 Jackson St, Atlanta, GA 30301" +193299,AA Batteries (4-pack),1,3.84,04/30/19 12:15,"731 Madison St, Los Angeles, CA 90001" +193300,Flatscreen TV,1,300,04/01/19 21:38,"633 Lakeview St, San Francisco, CA 94016" +193301,27in 4K Gaming Monitor,1,389.99,04/13/19 18:59,"861 Maple St, Los Angeles, CA 90001" +193302,Flatscreen TV,1,300,04/15/19 18:19,"529 Pine St, Seattle, WA 98101" +193303,Bose SoundSport Headphones,2,99.99,04/18/19 00:55,"529 Cedar St, Seattle, WA 98101" +193304,Lightning Charging Cable,1,14.95,04/24/19 12:17,"639 Adams St, Seattle, WA 98101" +193305,AA Batteries (4-pack),1,3.84,04/25/19 08:02,"130 Hickory St, Atlanta, GA 30301" +193306,Lightning Charging Cable,1,14.95,04/18/19 21:55,"184 Adams St, Atlanta, GA 30301" +193307,Lightning Charging Cable,1,14.95,04/10/19 12:12,"745 North St, Seattle, WA 98101" +193308,27in 4K Gaming Monitor,1,389.99,04/04/19 12:47,"909 Hill St, San Francisco, CA 94016" +193309,Vareebadd Phone,1,400,04/28/19 18:34,"765 Hill St, Boston, MA 02215" +193309,USB-C Charging Cable,1,11.95,04/28/19 18:34,"765 Hill St, Boston, MA 02215" +193310,USB-C Charging Cable,1,11.95,04/03/19 16:53,"872 Lake St, Dallas, TX 75001" +193311,Lightning Charging Cable,1,14.95,04/10/19 07:37,"46 7th St, Boston, MA 02215" +193312,Bose SoundSport Headphones,1,99.99,04/04/19 19:48,"969 Maple St, New York City, NY 10001" +193313,Lightning Charging Cable,1,14.95,04/27/19 20:56,"326 Cherry St, Los Angeles, CA 90001" +193314,AA Batteries (4-pack),1,3.84,04/20/19 11:00,"977 Jackson St, San Francisco, CA 94016" +193315,27in 4K Gaming Monitor,1,389.99,04/11/19 07:42,"435 Sunset St, Portland, ME 04101" +193316,Wired Headphones,1,11.99,04/07/19 21:48,"538 Church St, San Francisco, CA 94016" +193317,Lightning Charging Cable,1,14.95,04/10/19 23:06,"19 Park St, San Francisco, CA 94016" +193318,Apple Airpods Headphones,1,150,04/26/19 11:18,"884 Hickory St, Dallas, TX 75001" +193319,Lightning Charging Cable,1,14.95,04/20/19 13:02,"638 Spruce St, Boston, MA 02215" +193320,Flatscreen TV,1,300,04/24/19 23:45,"464 North St, Portland, OR 97035" +193321,27in 4K Gaming Monitor,1,389.99,04/16/19 20:31,"243 Walnut St, San Francisco, CA 94016" +193322,27in 4K Gaming Monitor,1,389.99,04/08/19 17:06,"760 Meadow St, Seattle, WA 98101" +193323,Flatscreen TV,1,300,04/22/19 12:35,"559 Lake St, Boston, MA 02215" +193324,AAA Batteries (4-pack),2,2.99,04/24/19 07:49,"246 5th St, New York City, NY 10001" +193325,Bose SoundSport Headphones,1,99.99,04/29/19 11:00,"309 Chestnut St, Portland, ME 04101" +193326,USB-C Charging Cable,1,11.95,04/08/19 05:07,"338 9th St, Los Angeles, CA 90001" +193327,Google Phone,1,600,04/25/19 14:48,"861 14th St, New York City, NY 10001" +,,,,, +193328,27in 4K Gaming Monitor,1,389.99,04/14/19 22:38,"871 5th St, San Francisco, CA 94016" +193329,USB-C Charging Cable,1,11.95,04/28/19 10:55,"647 Cedar St, Los Angeles, CA 90001" +193330,27in 4K Gaming Monitor,1,389.99,04/18/19 15:46,"488 Washington St, Seattle, WA 98101" +193331,AAA Batteries (4-pack),2,2.99,04/05/19 18:43,"310 2nd St, Austin, TX 73301" +193332,USB-C Charging Cable,1,11.95,04/19/19 21:29,"4 Hickory St, Boston, MA 02215" +193333,Flatscreen TV,1,300,04/17/19 11:24,"291 North St, Los Angeles, CA 90001" +193334,34in Ultrawide Monitor,1,379.99,04/20/19 09:28,"692 Jefferson St, New York City, NY 10001" +193335,Lightning Charging Cable,1,14.95,04/13/19 21:09,"907 Jackson St, Seattle, WA 98101" +193336,Wired Headphones,1,11.99,04/08/19 13:25,"178 8th St, San Francisco, CA 94016" +193337,Apple Airpods Headphones,1,150,04/28/19 23:34,"638 Church St, New York City, NY 10001" +193338,Lightning Charging Cable,1,14.95,04/06/19 18:22,"323 6th St, New York City, NY 10001" +193339,AA Batteries (4-pack),2,3.84,04/02/19 23:41,"690 Cherry St, Los Angeles, CA 90001" +193340,Wired Headphones,1,11.99,04/05/19 14:13,"384 Forest St, Atlanta, GA 30301" +193341,Apple Airpods Headphones,1,150,04/14/19 20:12,"446 Chestnut St, San Francisco, CA 94016" +193342,AAA Batteries (4-pack),3,2.99,04/07/19 18:38,"607 Main St, Boston, MA 02215" +193342,Apple Airpods Headphones,1,150,04/07/19 18:38,"607 Main St, Boston, MA 02215" +193343,USB-C Charging Cable,1,11.95,04/20/19 11:36,"385 5th St, San Francisco, CA 94016" +193344,AA Batteries (4-pack),1,3.84,04/12/19 17:25,"302 Hickory St, Portland, OR 97035" +193345,Apple Airpods Headphones,1,150,04/06/19 14:55,"683 13th St, Boston, MA 02215" +193346,27in 4K Gaming Monitor,1,389.99,04/28/19 10:32,"813 Hill St, Portland, OR 97035" +193347,Apple Airpods Headphones,1,150,04/22/19 12:26,"405 Hill St, New York City, NY 10001" +193348,AA Batteries (4-pack),1,3.84,04/10/19 14:03,"246 Forest St, New York City, NY 10001" +193349,USB-C Charging Cable,1,11.95,04/25/19 09:24,"667 4th St, San Francisco, CA 94016" +193350,34in Ultrawide Monitor,1,379.99,04/26/19 22:35,"519 Lakeview St, San Francisco, CA 94016" +193351,AA Batteries (4-pack),1,3.84,04/20/19 16:46,"550 Dogwood St, Portland, OR 97035" +193352,Google Phone,1,600,04/27/19 22:04,"203 Jackson St, Austin, TX 73301" +193353,27in 4K Gaming Monitor,1,389.99,04/22/19 21:28,"535 8th St, Los Angeles, CA 90001" +193354,Apple Airpods Headphones,1,150,04/19/19 12:14,"87 Church St, Portland, OR 97035" +193355,27in 4K Gaming Monitor,1,389.99,04/18/19 13:52,"137 Adams St, Atlanta, GA 30301" +193356,Google Phone,1,600,04/03/19 10:15,"322 Jefferson St, San Francisco, CA 94016" +193356,USB-C Charging Cable,1,11.95,04/03/19 10:15,"322 Jefferson St, San Francisco, CA 94016" +193356,Bose SoundSport Headphones,1,99.99,04/03/19 10:15,"322 Jefferson St, San Francisco, CA 94016" +193356,Wired Headphones,1,11.99,04/03/19 10:15,"322 Jefferson St, San Francisco, CA 94016" +193357,20in Monitor,1,109.99,04/28/19 23:30,"887 Maple St, Austin, TX 73301" +193358,34in Ultrawide Monitor,1,379.99,04/28/19 21:56,"876 South St, San Francisco, CA 94016" +193359,AA Batteries (4-pack),1,3.84,04/10/19 18:36,"173 14th St, Portland, OR 97035" +193360,27in 4K Gaming Monitor,1,389.99,04/29/19 22:43,"740 Lake St, San Francisco, CA 94016" +193361,Macbook Pro Laptop,1,1700,04/24/19 07:38,"478 Spruce St, San Francisco, CA 94016" +193362,Wired Headphones,1,11.99,04/28/19 12:45,"898 9th St, Portland, ME 04101" +193363,27in 4K Gaming Monitor,1,389.99,04/24/19 20:40,"676 Dogwood St, Portland, OR 97035" +193364,AA Batteries (4-pack),2,3.84,04/05/19 02:55,"195 Willow St, Austin, TX 73301" +193365,Wired Headphones,1,11.99,04/22/19 17:55,"604 Dogwood St, Portland, OR 97035" +193366,Wired Headphones,1,11.99,04/25/19 18:57,"544 Madison St, Austin, TX 73301" +193367,Google Phone,1,600,04/07/19 13:03,"563 Lake St, Portland, OR 97035" +193368,Bose SoundSport Headphones,1,99.99,04/01/19 19:30,"294 Ridge St, Boston, MA 02215" +193369,AA Batteries (4-pack),1,3.84,04/11/19 18:43,"242 8th St, Los Angeles, CA 90001" +193370,Bose SoundSport Headphones,1,99.99,04/26/19 09:22,"493 Dogwood St, Los Angeles, CA 90001" +193371,USB-C Charging Cable,1,11.95,04/01/19 22:28,"918 6th St, Dallas, TX 75001" +193372,Wired Headphones,1,11.99,04/26/19 09:34,"135 Spruce St, San Francisco, CA 94016" +193373,AAA Batteries (4-pack),1,2.99,04/08/19 06:06,"213 Center St, San Francisco, CA 94016" +193374,Lightning Charging Cable,1,14.95,04/04/19 13:55,"156 South St, Dallas, TX 75001" +193375,AAA Batteries (4-pack),2,2.99,04/30/19 00:08,"395 Highland St, San Francisco, CA 94016" +193376,20in Monitor,1,109.99,04/17/19 19:15,"219 West St, San Francisco, CA 94016" +193377,USB-C Charging Cable,1,11.95,04/15/19 19:51,"520 River St, Boston, MA 02215" +193378,Lightning Charging Cable,1,14.95,04/29/19 09:48,"41 Forest St, San Francisco, CA 94016" +193379,Lightning Charging Cable,1,14.95,04/05/19 19:10,"797 Dogwood St, Boston, MA 02215" +193380,AA Batteries (4-pack),1,3.84,04/30/19 14:14,"494 Cherry St, Dallas, TX 75001" +193381,USB-C Charging Cable,1,11.95,04/06/19 16:08,"575 8th St, Boston, MA 02215" +193382,Apple Airpods Headphones,1,150,04/24/19 16:37,"348 River St, New York City, NY 10001" +193383,Lightning Charging Cable,1,14.95,04/11/19 09:42,"363 13th St, Boston, MA 02215" +193384,USB-C Charging Cable,2,11.95,04/08/19 13:11,"160 7th St, San Francisco, CA 94016" +193385,USB-C Charging Cable,1,11.95,04/04/19 13:46,"555 2nd St, Los Angeles, CA 90001" +193386,USB-C Charging Cable,1,11.95,04/04/19 15:36,"976 Madison St, Portland, OR 97035" +193387,AAA Batteries (4-pack),2,2.99,04/24/19 11:19,"702 11th St, Portland, OR 97035" +193388,AA Batteries (4-pack),3,3.84,04/04/19 21:19,"458 Washington St, Los Angeles, CA 90001" +193389,Wired Headphones,1,11.99,04/06/19 15:31,"412 7th St, San Francisco, CA 94016" +193390,AA Batteries (4-pack),2,3.84,04/01/19 08:46,"983 Cedar St, Los Angeles, CA 90001" +193391,Wired Headphones,1,11.99,04/11/19 21:30,"185 Spruce St, San Francisco, CA 94016" +193392,ThinkPad Laptop,1,999.99,04/18/19 20:20,"892 Highland St, Dallas, TX 75001" +193393,Apple Airpods Headphones,1,150,04/28/19 23:49,"561 Johnson St, Atlanta, GA 30301" +193394,USB-C Charging Cable,1,11.95,04/16/19 16:48,"522 Pine St, New York City, NY 10001" +193395,USB-C Charging Cable,1,11.95,04/10/19 18:42,"356 Maple St, Los Angeles, CA 90001" +193396,AAA Batteries (4-pack),1,2.99,04/18/19 19:22,"159 13th St, San Francisco, CA 94016" +193397,Wired Headphones,1,11.99,04/18/19 15:50,"724 4th St, Boston, MA 02215" +193398,iPhone,1,700,04/10/19 18:18,"516 Lincoln St, Dallas, TX 75001" +193399,34in Ultrawide Monitor,1,379.99,04/05/19 11:58,"562 5th St, New York City, NY 10001" +193400,Google Phone,1,600,04/18/19 11:30,"777 Willow St, New York City, NY 10001" +193400,Wired Headphones,1,11.99,04/18/19 11:30,"777 Willow St, New York City, NY 10001" +193401,AA Batteries (4-pack),1,3.84,04/02/19 17:24,"126 Main St, San Francisco, CA 94016" +193402,AA Batteries (4-pack),1,3.84,04/27/19 20:10,"992 Washington St, San Francisco, CA 94016" +193403,27in 4K Gaming Monitor,1,389.99,04/20/19 19:15,"433 6th St, San Francisco, CA 94016" +193404,Bose SoundSport Headphones,1,99.99,04/04/19 22:13,"441 Highland St, Los Angeles, CA 90001" +193405,AA Batteries (4-pack),1,3.84,04/13/19 08:21,"122 Forest St, San Francisco, CA 94016" +193405,20in Monitor,1,109.99,04/13/19 08:21,"122 Forest St, San Francisco, CA 94016" +193406,Apple Airpods Headphones,1,150,04/07/19 01:43,"98 Jefferson St, Portland, OR 97035" +193407,Bose SoundSport Headphones,1,99.99,04/10/19 13:09,"551 Cherry St, Boston, MA 02215" +193408,AAA Batteries (4-pack),1,2.99,04/15/19 13:55,"23 2nd St, Portland, ME 04101" +193409,USB-C Charging Cable,1,11.95,04/17/19 15:58,"803 Cedar St, Dallas, TX 75001" +193410,Wired Headphones,2,11.99,04/22/19 18:46,"292 Pine St, New York City, NY 10001" +193411,AAA Batteries (4-pack),1,2.99,04/03/19 23:51,"987 13th St, Atlanta, GA 30301" +193411,Lightning Charging Cable,1,14.95,04/03/19 23:51,"987 13th St, Atlanta, GA 30301" +193412,Lightning Charging Cable,1,14.95,04/10/19 08:33,"481 Jefferson St, Portland, ME 04101" +193413,Bose SoundSport Headphones,1,99.99,04/05/19 21:57,"427 Lakeview St, Boston, MA 02215" +193414,Lightning Charging Cable,1,14.95,04/03/19 15:14,"652 Lake St, New York City, NY 10001" +193415,USB-C Charging Cable,1,11.95,04/28/19 14:27,"949 10th St, Dallas, TX 75001" +193416,Wired Headphones,1,11.99,04/05/19 12:50,"733 Maple St, New York City, NY 10001" +193417,USB-C Charging Cable,2,11.95,04/09/19 22:00,"58 Elm St, Los Angeles, CA 90001" +193418,AA Batteries (4-pack),1,3.84,04/18/19 13:51,"269 10th St, Austin, TX 73301" +193419,Google Phone,1,600,04/01/19 10:37,"129 North St, Los Angeles, CA 90001" +193420,AAA Batteries (4-pack),1,2.99,04/05/19 16:30,"49 2nd St, Boston, MA 02215" +193421,AAA Batteries (4-pack),1,2.99,04/30/19 18:34,"354 Jackson St, San Francisco, CA 94016" +193422,Apple Airpods Headphones,1,150,04/17/19 22:01,"732 Dogwood St, New York City, NY 10001" +193423,Lightning Charging Cable,1,14.95,04/16/19 15:20,"116 Dogwood St, Seattle, WA 98101" +193424,Lightning Charging Cable,1,14.95,04/14/19 16:29,"763 West St, Portland, OR 97035" +193425,Bose SoundSport Headphones,1,99.99,04/12/19 16:01,"348 Lincoln St, San Francisco, CA 94016" +193426,Apple Airpods Headphones,1,150,04/06/19 00:01,"671 9th St, Atlanta, GA 30301" +193427,AAA Batteries (4-pack),2,2.99,04/15/19 01:06,"888 Chestnut St, Seattle, WA 98101" +193428,iPhone,1,700,04/23/19 19:37,"209 Dogwood St, Atlanta, GA 30301" +193429,Wired Headphones,1,11.99,04/01/19 21:34,"105 Hill St, Atlanta, GA 30301" +193430,Wired Headphones,1,11.99,04/29/19 16:45,"123 Lincoln St, Los Angeles, CA 90001" +193431,AA Batteries (4-pack),3,3.84,04/20/19 15:19,"657 Jackson St, Portland, OR 97035" +193432,AAA Batteries (4-pack),1,2.99,04/15/19 10:50,"881 2nd St, New York City, NY 10001" +193433,Apple Airpods Headphones,1,150,04/12/19 00:15,"344 10th St, New York City, NY 10001" +193434,USB-C Charging Cable,1,11.95,04/03/19 01:19,"18 Lake St, New York City, NY 10001" +193435,AA Batteries (4-pack),1,3.84,04/13/19 17:04,"334 Lincoln St, San Francisco, CA 94016" +193436,Wired Headphones,1,11.99,04/10/19 13:00,"86 Lakeview St, San Francisco, CA 94016" +193437,AA Batteries (4-pack),1,3.84,04/06/19 09:31,"301 Highland St, Seattle, WA 98101" +193438,AAA Batteries (4-pack),1,2.99,04/29/19 14:33,"716 Lake St, San Francisco, CA 94016" +193439,27in 4K Gaming Monitor,1,389.99,04/09/19 00:56,"741 12th St, Portland, ME 04101" +193440,Wired Headphones,1,11.99,04/11/19 11:41,"542 Maple St, San Francisco, CA 94016" +193441,Vareebadd Phone,1,400,04/19/19 13:54,"882 Jackson St, Los Angeles, CA 90001" +193441,USB-C Charging Cable,1,11.95,04/19/19 13:54,"882 Jackson St, Los Angeles, CA 90001" +193442,AAA Batteries (4-pack),3,2.99,04/20/19 12:13,"101 South St, San Francisco, CA 94016" +193443,Bose SoundSport Headphones,1,99.99,04/17/19 08:56,"744 9th St, Los Angeles, CA 90001" +193444,34in Ultrawide Monitor,1,379.99,04/24/19 15:11,"844 Cedar St, Los Angeles, CA 90001" +193445,Apple Airpods Headphones,1,150,04/10/19 20:33,"31 Chestnut St, Boston, MA 02215" +193446,USB-C Charging Cable,1,11.95,04/21/19 01:25,"619 Park St, Boston, MA 02215" +193447,USB-C Charging Cable,1,11.95,04/14/19 21:44,"460 Main St, Dallas, TX 75001" +193448,ThinkPad Laptop,1,999.99,04/25/19 17:38,"968 Jefferson St, San Francisco, CA 94016" +193449,AA Batteries (4-pack),1,3.84,04/19/19 12:55,"131 9th St, Los Angeles, CA 90001" +193450,Bose SoundSport Headphones,1,99.99,04/22/19 01:04,"755 1st St, Los Angeles, CA 90001" +193451,Bose SoundSport Headphones,1,99.99,04/24/19 18:32,"710 Ridge St, Atlanta, GA 30301" +193452,20in Monitor,1,109.99,04/07/19 18:53,"914 8th St, Austin, TX 73301" +193453,Apple Airpods Headphones,1,150,04/17/19 12:32,"917 Chestnut St, New York City, NY 10001" +193454,Google Phone,1,600,04/01/19 19:07,"359 Church St, San Francisco, CA 94016" +193455,Wired Headphones,1,11.99,04/26/19 15:47,"54 13th St, San Francisco, CA 94016" +193456,USB-C Charging Cable,1,11.95,04/13/19 00:29,"786 Pine St, Atlanta, GA 30301" +193457,27in 4K Gaming Monitor,1,389.99,04/27/19 12:54,"897 Church St, Los Angeles, CA 90001" +193458,AAA Batteries (4-pack),1,2.99,04/14/19 12:32,"651 Cedar St, Atlanta, GA 30301" +193459,LG Washing Machine,1,600.0,04/18/19 13:53,"301 Maple St, San Francisco, CA 94016" +193460,27in 4K Gaming Monitor,1,389.99,04/01/19 15:56,"855 Ridge St, Atlanta, GA 30301" +193461,Bose SoundSport Headphones,1,99.99,04/11/19 11:17,"24 9th St, New York City, NY 10001" +193462,Lightning Charging Cable,2,14.95,04/27/19 21:30,"400 Ridge St, Boston, MA 02215" +193463,Wired Headphones,1,11.99,04/19/19 18:20,"978 Dogwood St, Austin, TX 73301" +193464,27in FHD Monitor,1,149.99,04/30/19 17:39,"427 Park St, Los Angeles, CA 90001" +193465,Flatscreen TV,1,300,04/03/19 17:02,"558 9th St, Boston, MA 02215" +193466,AAA Batteries (4-pack),1,2.99,04/11/19 09:34,"761 Cherry St, Los Angeles, CA 90001" +193467,Bose SoundSport Headphones,1,99.99,04/07/19 21:14,"856 West St, New York City, NY 10001" +193468,27in 4K Gaming Monitor,1,389.99,04/09/19 15:38,"850 Lake St, Los Angeles, CA 90001" +193469,Lightning Charging Cable,1,14.95,04/21/19 15:43,"389 North St, Atlanta, GA 30301" +193470,Google Phone,1,600,04/17/19 21:15,"14 8th St, Boston, MA 02215" +193471,Apple Airpods Headphones,1,150,04/21/19 15:10,"685 Meadow St, Boston, MA 02215" +193472,USB-C Charging Cable,1,11.95,04/17/19 06:41,"64 Church St, New York City, NY 10001" +193473,AA Batteries (4-pack),1,3.84,04/02/19 19:52,"59 Pine St, Los Angeles, CA 90001" +193474,AA Batteries (4-pack),1,3.84,04/18/19 20:44,"810 Lake St, Dallas, TX 75001" +193475,AA Batteries (4-pack),1,3.84,04/05/19 21:23,"292 4th St, New York City, NY 10001" +193476,Lightning Charging Cable,1,14.95,04/07/19 13:43,"617 North St, Los Angeles, CA 90001" +193477,USB-C Charging Cable,1,11.95,04/07/19 01:31,"80 5th St, Dallas, TX 75001" +193478,Lightning Charging Cable,1,14.95,04/23/19 21:36,"943 14th St, San Francisco, CA 94016" +193479,Flatscreen TV,1,300,04/09/19 16:06,"767 Chestnut St, Los Angeles, CA 90001" +193480,USB-C Charging Cable,1,11.95,04/23/19 20:49,"280 Madison St, Boston, MA 02215" +193481,iPhone,1,700,04/23/19 23:37,"927 14th St, Dallas, TX 75001" +193481,Lightning Charging Cable,1,14.95,04/23/19 23:37,"927 14th St, Dallas, TX 75001" +193481,Wired Headphones,1,11.99,04/23/19 23:37,"927 14th St, Dallas, TX 75001" +193482,USB-C Charging Cable,2,11.95,04/18/19 21:00,"583 West St, Los Angeles, CA 90001" +193483,34in Ultrawide Monitor,1,379.99,04/11/19 21:48,"261 Cedar St, Boston, MA 02215" +193484,ThinkPad Laptop,1,999.99,04/20/19 12:55,"603 Maple St, Los Angeles, CA 90001" +193485,34in Ultrawide Monitor,1,379.99,04/20/19 12:02,"880 Walnut St, Los Angeles, CA 90001" +193486,USB-C Charging Cable,1,11.95,04/30/19 12:52,"450 2nd St, San Francisco, CA 94016" +193487,27in FHD Monitor,1,149.99,04/06/19 11:46,"632 Forest St, San Francisco, CA 94016" +193488,27in FHD Monitor,1,149.99,04/17/19 12:25,"511 Washington St, New York City, NY 10001" +193489,Wired Headphones,1,11.99,04/05/19 20:14,"199 Maple St, Seattle, WA 98101" +193490,Lightning Charging Cable,1,14.95,04/28/19 12:30,"966 Lincoln St, Austin, TX 73301" +193491,Macbook Pro Laptop,1,1700,04/08/19 12:20,"74 Highland St, Seattle, WA 98101" +193492,USB-C Charging Cable,1,11.95,04/27/19 10:50,"227 Dogwood St, Los Angeles, CA 90001" +193493,Lightning Charging Cable,1,14.95,04/07/19 17:22,"241 Lake St, Boston, MA 02215" +193494,Apple Airpods Headphones,1,150,04/03/19 13:09,"897 Elm St, Boston, MA 02215" +193494,Apple Airpods Headphones,1,150,04/03/19 13:09,"897 Elm St, Boston, MA 02215" +193495,AA Batteries (4-pack),1,3.84,04/10/19 23:41,"791 Lake St, Boston, MA 02215" +193496,Apple Airpods Headphones,1,150,04/20/19 16:59,"60 Main St, New York City, NY 10001" +193497,Flatscreen TV,1,300,04/13/19 10:11,"182 Church St, Los Angeles, CA 90001" +193497,Apple Airpods Headphones,1,150,04/13/19 10:11,"182 Church St, Los Angeles, CA 90001" +193498,AAA Batteries (4-pack),2,2.99,04/04/19 12:22,"382 13th St, San Francisco, CA 94016" +193499,Apple Airpods Headphones,1,150,04/30/19 21:01,"245 Elm St, Boston, MA 02215" +193500,AAA Batteries (4-pack),2,2.99,04/09/19 20:20,"211 Park St, Dallas, TX 75001" +193501,AAA Batteries (4-pack),1,2.99,04/26/19 14:00,"461 Maple St, New York City, NY 10001" +193502,Wired Headphones,1,11.99,04/05/19 15:43,"196 Lake St, San Francisco, CA 94016" +193503,LG Washing Machine,1,600.0,04/10/19 11:48,"703 Willow St, Los Angeles, CA 90001" +193504,Lightning Charging Cable,1,14.95,04/13/19 21:48,"425 1st St, Seattle, WA 98101" +193505,AA Batteries (4-pack),1,3.84,04/14/19 13:33,"905 Pine St, Los Angeles, CA 90001" +193506,Wired Headphones,1,11.99,04/22/19 12:52,"356 Jackson St, Dallas, TX 75001" +193507,iPhone,1,700,04/23/19 11:10,"682 Johnson St, New York City, NY 10001" +193508,Lightning Charging Cable,1,14.95,04/09/19 10:41,"792 5th St, Atlanta, GA 30301" +193509,Google Phone,1,600,04/10/19 21:05,"390 Madison St, San Francisco, CA 94016" +193510,Bose SoundSport Headphones,1,99.99,04/05/19 15:29,"913 Pine St, New York City, NY 10001" +193511,AA Batteries (4-pack),1,3.84,04/11/19 18:50,"861 Washington St, San Francisco, CA 94016" +193512,AAA Batteries (4-pack),1,2.99,04/12/19 09:58,"729 Spruce St, New York City, NY 10001" +193513,Macbook Pro Laptop,1,1700,04/12/19 18:04,"26 14th St, San Francisco, CA 94016" +193514,Macbook Pro Laptop,1,1700,04/12/19 09:51,"731 Jackson St, Seattle, WA 98101" +193515,AAA Batteries (4-pack),1,2.99,04/08/19 15:00,"984 Highland St, Los Angeles, CA 90001" +193516,Macbook Pro Laptop,1,1700,04/10/19 13:35,"163 10th St, Portland, OR 97035" +193517,Google Phone,1,600,04/22/19 17:12,"151 Jackson St, San Francisco, CA 94016" +193518,AA Batteries (4-pack),1,3.84,04/21/19 18:48,"932 Spruce St, New York City, NY 10001" +193519,ThinkPad Laptop,1,999.99,04/24/19 11:49,"249 Main St, Dallas, TX 75001" +193520,AAA Batteries (4-pack),3,2.99,04/01/19 18:09,"946 Cedar St, Dallas, TX 75001" +193521,Wired Headphones,1,11.99,04/06/19 13:15,"31 5th St, Atlanta, GA 30301" +193522,Bose SoundSport Headphones,1,99.99,04/23/19 00:04,"399 2nd St, New York City, NY 10001" +193523,Macbook Pro Laptop,1,1700,04/16/19 10:42,"69 Hill St, New York City, NY 10001" +193524,Vareebadd Phone,1,400,04/07/19 20:26,"194 Adams St, Portland, OR 97035" +193525,AA Batteries (4-pack),3,3.84,04/29/19 05:25,"707 Cherry St, San Francisco, CA 94016" +193526,Wired Headphones,2,11.99,04/14/19 19:06,"522 Hickory St, New York City, NY 10001" +193527,ThinkPad Laptop,1,999.99,04/06/19 13:48,"448 Park St, Austin, TX 73301" +193528,USB-C Charging Cable,1,11.95,04/25/19 13:13,"738 11th St, Seattle, WA 98101" +193529,Google Phone,1,600,04/05/19 07:46,"187 Meadow St, Boston, MA 02215" +193530,AAA Batteries (4-pack),1,2.99,04/10/19 23:40,"763 Sunset St, New York City, NY 10001" +193531,20in Monitor,1,109.99,04/27/19 22:20,"476 Willow St, Los Angeles, CA 90001" +193532,Lightning Charging Cable,1,14.95,04/20/19 21:46,"12 South St, Austin, TX 73301" +193533,Lightning Charging Cable,1,14.95,04/01/19 09:46,"605 Cedar St, San Francisco, CA 94016" +193534,Apple Airpods Headphones,1,150,04/13/19 11:51,"811 9th St, Portland, OR 97035" +193535,Lightning Charging Cable,1,14.95,04/09/19 18:19,"727 8th St, San Francisco, CA 94016" +193536,Flatscreen TV,1,300,04/04/19 11:56,"149 8th St, Portland, OR 97035" +193537,AA Batteries (4-pack),1,3.84,04/25/19 06:40,"947 Sunset St, Los Angeles, CA 90001" +193538,AA Batteries (4-pack),2,3.84,04/25/19 11:24,"68 Madison St, San Francisco, CA 94016" +193539,Apple Airpods Headphones,1,150,04/28/19 11:21,"904 Hickory St, San Francisco, CA 94016" +193540,AA Batteries (4-pack),1,3.84,04/29/19 20:38,"886 7th St, San Francisco, CA 94016" +193541,AA Batteries (4-pack),2,3.84,04/20/19 15:26,"876 Jackson St, New York City, NY 10001" +193542,Lightning Charging Cable,1,14.95,04/18/19 08:52,"731 Jefferson St, New York City, NY 10001" +193543,27in FHD Monitor,1,149.99,04/17/19 15:25,"75 Hickory St, New York City, NY 10001" +193544,Apple Airpods Headphones,1,150,04/29/19 14:32,"140 11th St, San Francisco, CA 94016" +193545,AA Batteries (4-pack),1,3.84,04/14/19 22:16,"182 Chestnut St, Portland, OR 97035" +193546,AAA Batteries (4-pack),1,2.99,04/23/19 16:16,"124 Willow St, Los Angeles, CA 90001" +193547,20in Monitor,1,109.99,04/03/19 22:23,"519 Sunset St, San Francisco, CA 94016" +193548,AA Batteries (4-pack),2,3.84,04/01/19 10:51,"651 Willow St, Boston, MA 02215" +193549,AAA Batteries (4-pack),2,2.99,04/02/19 15:49,"407 South St, Boston, MA 02215" +193550,USB-C Charging Cable,1,11.95,04/23/19 15:33,"438 13th St, Los Angeles, CA 90001" +193551,27in FHD Monitor,1,149.99,04/18/19 15:13,"413 Lake St, New York City, NY 10001" +193552,Wired Headphones,1,11.99,04/26/19 08:52,"335 Forest St, San Francisco, CA 94016" +193553,Google Phone,1,600,04/19/19 09:29,"517 Walnut St, San Francisco, CA 94016" +193554,34in Ultrawide Monitor,1,379.99,04/22/19 03:45,"324 Madison St, New York City, NY 10001" +193555,34in Ultrawide Monitor,1,379.99,04/01/19 16:37,"494 Lincoln St, New York City, NY 10001" +193556,Bose SoundSport Headphones,1,99.99,04/15/19 21:53,"24 1st St, Atlanta, GA 30301" +193557,ThinkPad Laptop,1,999.99,04/18/19 15:22,"277 4th St, Los Angeles, CA 90001" +193558,AAA Batteries (4-pack),2,2.99,04/21/19 12:37,"350 13th St, Seattle, WA 98101" +193559,Apple Airpods Headphones,1,150,04/18/19 05:14,"568 Cherry St, San Francisco, CA 94016" +193560,Bose SoundSport Headphones,1,99.99,04/04/19 22:07,"557 South St, San Francisco, CA 94016" +193561,AAA Batteries (4-pack),2,2.99,04/16/19 13:47,"298 Church St, Austin, TX 73301" +193562,Lightning Charging Cable,1,14.95,04/07/19 20:13,"947 Meadow St, Los Angeles, CA 90001" +193563,USB-C Charging Cable,1,11.95,04/14/19 10:13,"788 Park St, Seattle, WA 98101" +193564,27in 4K Gaming Monitor,1,389.99,04/29/19 17:12,"185 Washington St, San Francisco, CA 94016" +193565,AA Batteries (4-pack),1,3.84,04/02/19 15:06,"672 Willow St, Dallas, TX 75001" +193566,Bose SoundSport Headphones,1,99.99,04/29/19 20:36,"459 8th St, Austin, TX 73301" +193567,USB-C Charging Cable,1,11.95,04/26/19 20:21,"373 South St, Atlanta, GA 30301" +193568,Wired Headphones,1,11.99,04/17/19 18:52,"831 12th St, Seattle, WA 98101" +193569,AA Batteries (4-pack),1,3.84,04/03/19 21:32,"565 Walnut St, Portland, OR 97035" +193570,Apple Airpods Headphones,1,150,04/16/19 08:57,"827 Wilson St, San Francisco, CA 94016" +193571,AAA Batteries (4-pack),2,2.99,04/15/19 19:12,"386 North St, New York City, NY 10001" +193572,AA Batteries (4-pack),1,3.84,04/24/19 11:26,"740 Church St, Boston, MA 02215" +193573,Wired Headphones,1,11.99,04/14/19 17:03,"893 Lakeview St, Seattle, WA 98101" +193574,AAA Batteries (4-pack),1,2.99,04/07/19 13:39,"313 Jefferson St, Atlanta, GA 30301" +193575,Wired Headphones,1,11.99,04/24/19 17:09,"575 Church St, Dallas, TX 75001" +193576,Macbook Pro Laptop,1,1700,04/17/19 07:46,"935 North St, Los Angeles, CA 90001" +193577,Bose SoundSport Headphones,1,99.99,04/29/19 19:33,"375 Dogwood St, Los Angeles, CA 90001" +193578,Wired Headphones,1,11.99,04/22/19 08:46,"829 8th St, New York City, NY 10001" +193579,USB-C Charging Cable,1,11.95,04/05/19 23:39,"881 Adams St, Los Angeles, CA 90001" +193580,Wired Headphones,1,11.99,04/08/19 12:21,"139 14th St, San Francisco, CA 94016" +193581,Vareebadd Phone,1,400,04/06/19 01:16,"971 Highland St, Austin, TX 73301" +193582,Bose SoundSport Headphones,1,99.99,04/23/19 22:29,"565 Elm St, Los Angeles, CA 90001" +193583,27in FHD Monitor,1,149.99,04/29/19 20:48,"464 Sunset St, San Francisco, CA 94016" +193584,AAA Batteries (4-pack),2,2.99,04/18/19 18:07,"295 7th St, Boston, MA 02215" +193585,AA Batteries (4-pack),1,3.84,04/03/19 13:25,"226 6th St, Dallas, TX 75001" +193586,Wired Headphones,1,11.99,04/09/19 14:00,"941 Pine St, Los Angeles, CA 90001" +193587,Lightning Charging Cable,1,14.95,04/23/19 08:10,"220 4th St, San Francisco, CA 94016" +193588,Apple Airpods Headphones,1,150,04/05/19 14:28,"680 Lincoln St, Los Angeles, CA 90001" +193589,Wired Headphones,1,11.99,04/26/19 15:05,"263 Jackson St, Dallas, TX 75001" +193590,Bose SoundSport Headphones,1,99.99,04/04/19 18:13,"814 13th St, New York City, NY 10001" +193591,USB-C Charging Cable,1,11.95,04/30/19 19:31,"963 Lincoln St, Austin, TX 73301" +193592,AAA Batteries (4-pack),1,2.99,04/09/19 12:45,"604 River St, Dallas, TX 75001" +193593,20in Monitor,1,109.99,04/28/19 19:18,"231 Cedar St, New York City, NY 10001" +193594,Lightning Charging Cable,1,14.95,04/28/19 20:41,"733 Hickory St, San Francisco, CA 94016" +193595,Bose SoundSport Headphones,1,99.99,04/26/19 15:15,"386 Forest St, Seattle, WA 98101" +193596,Apple Airpods Headphones,1,150,04/23/19 22:06,"312 Johnson St, Austin, TX 73301" +193597,Wired Headphones,1,11.99,04/29/19 13:02,"728 Wilson St, Los Angeles, CA 90001" +193598,Flatscreen TV,1,300,04/26/19 18:29,"476 River St, Boston, MA 02215" +193599,27in FHD Monitor,1,149.99,04/22/19 16:24,"780 Pine St, Los Angeles, CA 90001" +193600,Lightning Charging Cable,2,14.95,04/24/19 21:16,"403 Walnut St, Dallas, TX 75001" +193601,Macbook Pro Laptop,1,1700,04/11/19 09:17,"641 Johnson St, Los Angeles, CA 90001" +193602,USB-C Charging Cable,1,11.95,04/20/19 13:40,"39 12th St, New York City, NY 10001" +193603,AAA Batteries (4-pack),2,2.99,04/13/19 15:42,"269 13th St, San Francisco, CA 94016" +193604,USB-C Charging Cable,1,11.95,04/11/19 20:16,"78 10th St, Los Angeles, CA 90001" +193605,USB-C Charging Cable,1,11.95,04/10/19 18:41,"228 Elm St, San Francisco, CA 94016" +193606,Lightning Charging Cable,1,14.95,04/02/19 20:59,"486 Lakeview St, New York City, NY 10001" +193607,20in Monitor,1,109.99,04/30/19 20:43,"405 Sunset St, New York City, NY 10001" +193608,34in Ultrawide Monitor,1,379.99,04/05/19 14:17,"186 11th St, Los Angeles, CA 90001" +193609,AAA Batteries (4-pack),3,2.99,04/20/19 18:55,"771 Pine St, Seattle, WA 98101" +193610,Wired Headphones,1,11.99,04/13/19 19:31,"858 12th St, Los Angeles, CA 90001" +193611,Apple Airpods Headphones,1,150,04/08/19 20:37,"533 Willow St, San Francisco, CA 94016" +193612,Google Phone,1,600,04/21/19 18:11,"677 10th St, Boston, MA 02215" +193613,Flatscreen TV,1,300,04/21/19 11:42,"697 2nd St, San Francisco, CA 94016" +193614,AAA Batteries (4-pack),1,2.99,04/15/19 12:24,"878 5th St, Austin, TX 73301" +193615,Wired Headphones,1,11.99,04/18/19 08:41,"580 9th St, Atlanta, GA 30301" +193616,Macbook Pro Laptop,1,1700,04/09/19 17:31,"408 Washington St, Seattle, WA 98101" +193617,Lightning Charging Cable,1,14.95,04/21/19 17:10,"823 River St, Boston, MA 02215" +193618,Apple Airpods Headphones,1,150,04/27/19 14:04,"561 Jackson St, Los Angeles, CA 90001" +193619,Bose SoundSport Headphones,1,99.99,04/19/19 15:00,"952 Willow St, San Francisco, CA 94016" +193620,Wired Headphones,2,11.99,04/12/19 20:26,"536 Maple St, Atlanta, GA 30301" +193621,Lightning Charging Cable,1,14.95,04/17/19 17:52,"652 5th St, San Francisco, CA 94016" +193622,27in FHD Monitor,1,149.99,04/20/19 05:40,"363 1st St, Atlanta, GA 30301" +193623,34in Ultrawide Monitor,1,379.99,04/16/19 13:58,"172 14th St, Portland, OR 97035" +193624,AA Batteries (4-pack),2,3.84,04/19/19 11:19,"938 8th St, Los Angeles, CA 90001" +193625,Flatscreen TV,1,300,04/23/19 11:03,"833 14th St, Austin, TX 73301" +193626,AA Batteries (4-pack),1,3.84,04/12/19 15:10,"610 Ridge St, New York City, NY 10001" +193627,Wired Headphones,1,11.99,04/25/19 11:19,"444 8th St, Dallas, TX 75001" +193628,Lightning Charging Cable,1,14.95,04/11/19 11:42,"456 Sunset St, Boston, MA 02215" +193629,Wired Headphones,1,11.99,04/26/19 08:25,"554 Lake St, Atlanta, GA 30301" +193630,AAA Batteries (4-pack),1,2.99,04/18/19 18:51,"597 Wilson St, Los Angeles, CA 90001" +193631,AAA Batteries (4-pack),2,2.99,04/24/19 17:48,"652 Ridge St, Atlanta, GA 30301" +193632,USB-C Charging Cable,1,11.95,04/16/19 10:44,"105 Cedar St, New York City, NY 10001" +193633,AA Batteries (4-pack),1,3.84,04/23/19 17:06,"989 Sunset St, San Francisco, CA 94016" +193634,AA Batteries (4-pack),1,3.84,04/20/19 09:25,"747 Washington St, Los Angeles, CA 90001" +193635,Wired Headphones,2,11.99,04/24/19 17:48,"4 Hickory St, Boston, MA 02215" +193636,Lightning Charging Cable,1,14.95,04/15/19 19:13,"818 4th St, Atlanta, GA 30301" +193637,ThinkPad Laptop,1,999.99,04/26/19 16:51,"956 Lakeview St, San Francisco, CA 94016" +193638,Apple Airpods Headphones,1,150,04/10/19 14:10,"530 7th St, Boston, MA 02215" +193639,USB-C Charging Cable,1,11.95,04/02/19 15:12,"677 Chestnut St, Los Angeles, CA 90001" +193640,iPhone,1,700,04/30/19 16:57,"266 Forest St, Portland, OR 97035" +193641,USB-C Charging Cable,1,11.95,04/25/19 19:14,"505 Jefferson St, Los Angeles, CA 90001" +193642,Wired Headphones,2,11.99,04/06/19 12:37,"372 13th St, Dallas, TX 75001" +193643,Lightning Charging Cable,1,14.95,04/04/19 12:51,"638 1st St, Dallas, TX 75001" +193644,AAA Batteries (4-pack),1,2.99,04/10/19 20:44,"775 Dogwood St, Dallas, TX 75001" +193645,ThinkPad Laptop,1,999.99,04/23/19 13:35,"344 11th St, San Francisco, CA 94016" +193646,AAA Batteries (4-pack),1,2.99,04/24/19 06:25,"278 Center St, San Francisco, CA 94016" +193647,AA Batteries (4-pack),1,3.84,04/17/19 00:02,"140 Cedar St, Boston, MA 02215" +193648,20in Monitor,1,109.99,04/22/19 19:37,"575 West St, Los Angeles, CA 90001" +193649,Apple Airpods Headphones,1,150,04/26/19 20:02,"398 Highland St, Dallas, TX 75001" +193650,Macbook Pro Laptop,1,1700,04/03/19 08:34,"889 Jefferson St, Los Angeles, CA 90001" +193651,Vareebadd Phone,1,400,04/26/19 18:39,"387 West St, Dallas, TX 75001" +193652,27in FHD Monitor,1,149.99,04/16/19 07:18,"86 Lake St, Los Angeles, CA 90001" +193653,Bose SoundSport Headphones,1,99.99,04/27/19 09:01,"889 Spruce St, Los Angeles, CA 90001" +193654,Google Phone,1,600,04/05/19 22:04,"223 Chestnut St, New York City, NY 10001" +193655,USB-C Charging Cable,1,11.95,04/29/19 23:26,"250 South St, Atlanta, GA 30301" +193656,AAA Batteries (4-pack),1,2.99,04/19/19 13:18,"442 Hill St, Los Angeles, CA 90001" +193657,27in 4K Gaming Monitor,1,389.99,04/01/19 14:27,"209 Lake St, Seattle, WA 98101" +193658,Wired Headphones,2,11.99,04/25/19 00:03,"418 Adams St, Boston, MA 02215" +193659,Google Phone,1,600,04/28/19 19:26,"633 11th St, San Francisco, CA 94016" +193660,iPhone,1,700,04/22/19 10:05,"115 West St, Los Angeles, CA 90001" +193660,Bose SoundSport Headphones,1,99.99,04/22/19 10:05,"115 West St, Los Angeles, CA 90001" +193661,AAA Batteries (4-pack),1,2.99,04/06/19 12:29,"470 Church St, New York City, NY 10001" +193662,20in Monitor,1,109.99,04/08/19 20:08,"483 8th St, Portland, ME 04101" +193663,AAA Batteries (4-pack),1,2.99,04/06/19 18:31,"108 Church St, Los Angeles, CA 90001" +193664,AAA Batteries (4-pack),1,2.99,04/14/19 11:44,"636 14th St, Austin, TX 73301" +193665,Wired Headphones,1,11.99,04/04/19 23:35,"318 Cedar St, Los Angeles, CA 90001" +193666,AAA Batteries (4-pack),1,2.99,04/25/19 12:27,"911 River St, San Francisco, CA 94016" +193667,AA Batteries (4-pack),1,3.84,04/20/19 18:33,"789 Walnut St, Los Angeles, CA 90001" +193668,ThinkPad Laptop,1,999.99,04/15/19 16:49,"917 Highland St, Los Angeles, CA 90001" +193669,Flatscreen TV,1,300,04/18/19 21:53,"130 Cherry St, Portland, ME 04101" +193670,USB-C Charging Cable,1,11.95,04/07/19 10:15,"133 Madison St, Los Angeles, CA 90001" +193671,Apple Airpods Headphones,1,150,04/15/19 13:45,"665 Hickory St, San Francisco, CA 94016" +193672,27in FHD Monitor,1,149.99,04/19/19 09:42,"682 7th St, Dallas, TX 75001" +193673,27in 4K Gaming Monitor,1,389.99,04/10/19 09:05,"293 Lakeview St, San Francisco, CA 94016" +193674,Macbook Pro Laptop,1,1700,04/27/19 10:47,"651 Maple St, Los Angeles, CA 90001" +193675,USB-C Charging Cable,2,11.95,04/20/19 15:33,"228 Chestnut St, Los Angeles, CA 90001" +193676,27in FHD Monitor,1,149.99,04/05/19 09:27,"969 Highland St, Boston, MA 02215" +193677,Lightning Charging Cable,2,14.95,04/12/19 15:44,"933 7th St, Boston, MA 02215" +193678,Lightning Charging Cable,1,14.95,04/11/19 11:47,"461 13th St, Boston, MA 02215" +193679,Flatscreen TV,1,300,04/18/19 13:16,"756 Lake St, Atlanta, GA 30301" +193680,USB-C Charging Cable,1,11.95,04/29/19 18:16,"135 4th St, San Francisco, CA 94016" +193681,AAA Batteries (4-pack),1,2.99,04/10/19 17:22,"912 1st St, New York City, NY 10001" +193682,Macbook Pro Laptop,1,1700,04/04/19 15:43,"891 Lincoln St, Boston, MA 02215" +193683,27in FHD Monitor,1,149.99,04/05/19 21:24,"919 Sunset St, Dallas, TX 75001" +193684,USB-C Charging Cable,1,11.95,04/22/19 20:23,"527 South St, Boston, MA 02215" +193685,AAA Batteries (4-pack),1,2.99,04/27/19 20:56,"906 5th St, Seattle, WA 98101" +193686,Wired Headphones,1,11.99,04/05/19 12:52,"116 South St, Atlanta, GA 30301" +193687,34in Ultrawide Monitor,1,379.99,04/04/19 00:09,"292 Church St, San Francisco, CA 94016" +193688,Lightning Charging Cable,1,14.95,04/17/19 16:44,"603 13th St, Atlanta, GA 30301" +193689,Bose SoundSport Headphones,1,99.99,04/20/19 07:49,"83 Lincoln St, Dallas, TX 75001" +193690,Wired Headphones,1,11.99,04/05/19 13:39,"347 14th St, Atlanta, GA 30301" +193691,AAA Batteries (4-pack),1,2.99,04/03/19 14:40,"976 8th St, San Francisco, CA 94016" +193692,27in 4K Gaming Monitor,1,389.99,04/22/19 21:51,"905 12th St, Dallas, TX 75001" +193693,34in Ultrawide Monitor,1,379.99,04/26/19 11:56,"438 11th St, Los Angeles, CA 90001" +193694,Lightning Charging Cable,1,14.95,04/03/19 11:51,"374 South St, San Francisco, CA 94016" +193695,iPhone,1,700,04/05/19 08:20,"685 Jefferson St, Los Angeles, CA 90001" +193696,Bose SoundSport Headphones,1,99.99,04/15/19 22:36,"571 South St, Boston, MA 02215" +193697,AA Batteries (4-pack),1,3.84,04/27/19 08:05,"487 Lake St, Atlanta, GA 30301" +193698,iPhone,1,700,04/01/19 12:15,"936 6th St, New York City, NY 10001" +193699,AA Batteries (4-pack),1,3.84,04/02/19 12:26,"936 Adams St, Dallas, TX 75001" +193700,AAA Batteries (4-pack),1,2.99,04/19/19 08:15,"741 Church St, Austin, TX 73301" +193701,Bose SoundSport Headphones,1,99.99,04/07/19 00:00,"953 14th St, New York City, NY 10001" +193702,Google Phone,1,600,04/17/19 19:46,"540 Madison St, Boston, MA 02215" +193703,Apple Airpods Headphones,1,150,04/10/19 23:32,"163 Church St, New York City, NY 10001" +193704,Wired Headphones,1,11.99,04/03/19 20:51,"47 Cherry St, San Francisco, CA 94016" +193705,AA Batteries (4-pack),1,3.84,04/11/19 18:54,"403 10th St, San Francisco, CA 94016" +193706,27in 4K Gaming Monitor,1,389.99,04/17/19 12:04,"665 Jackson St, Los Angeles, CA 90001" +193707,AAA Batteries (4-pack),2,2.99,04/08/19 14:57,"627 Madison St, Portland, OR 97035" +193708,Bose SoundSport Headphones,1,99.99,04/02/19 19:30,"369 Lakeview St, Austin, TX 73301" +193709,Apple Airpods Headphones,1,150,04/09/19 20:46,"170 Church St, San Francisco, CA 94016" +193710,Wired Headphones,1,11.99,04/29/19 15:50,"775 5th St, Dallas, TX 75001" +193711,USB-C Charging Cable,1,11.95,04/29/19 10:28,"381 Wilson St, Portland, OR 97035" +193712,AA Batteries (4-pack),2,3.84,04/22/19 16:47,"494 11th St, San Francisco, CA 94016" +193713,Macbook Pro Laptop,1,1700,04/13/19 21:49,"5 2nd St, San Francisco, CA 94016" +193714,20in Monitor,1,109.99,04/25/19 21:32,"981 Hickory St, San Francisco, CA 94016" +193714,Lightning Charging Cable,1,14.95,04/25/19 21:32,"981 Hickory St, San Francisco, CA 94016" +193715,Lightning Charging Cable,1,14.95,04/18/19 11:50,"101 Center St, New York City, NY 10001" +193716,Apple Airpods Headphones,1,150,04/15/19 19:52,"294 Lake St, Portland, OR 97035" +193717,Macbook Pro Laptop,1,1700,04/07/19 11:43,"186 Johnson St, Austin, TX 73301" +193718,Apple Airpods Headphones,1,150,04/05/19 16:48,"781 Pine St, Los Angeles, CA 90001" +193719,AAA Batteries (4-pack),1,2.99,04/28/19 10:13,"704 12th St, Boston, MA 02215" +193720,AAA Batteries (4-pack),1,2.99,04/04/19 17:09,"75 South St, New York City, NY 10001" +193721,USB-C Charging Cable,1,11.95,04/16/19 16:00,"601 Main St, Dallas, TX 75001" +193722,Lightning Charging Cable,1,14.95,04/22/19 22:32,"316 Lakeview St, Portland, OR 97035" +193723,USB-C Charging Cable,1,11.95,04/29/19 12:53,"108 Ridge St, New York City, NY 10001" +193724,27in FHD Monitor,1,149.99,04/02/19 02:09,"559 Elm St, San Francisco, CA 94016" +193725,Macbook Pro Laptop,1,1700,04/03/19 16:35,"916 Meadow St, Portland, OR 97035" +193726,AAA Batteries (4-pack),1,2.99,04/02/19 14:00,"955 Elm St, San Francisco, CA 94016" +193727,AA Batteries (4-pack),1,3.84,04/17/19 16:29,"843 5th St, Dallas, TX 75001" +193728,27in 4K Gaming Monitor,1,389.99,04/04/19 09:09,"441 Dogwood St, New York City, NY 10001" +193729,Bose SoundSport Headphones,1,99.99,04/10/19 23:36,"881 Lakeview St, San Francisco, CA 94016" +193730,AAA Batteries (4-pack),1,2.99,04/28/19 15:53,"534 11th St, Boston, MA 02215" +193731,AA Batteries (4-pack),1,3.84,04/11/19 17:05,"841 Walnut St, Austin, TX 73301" +193732,ThinkPad Laptop,1,999.99,04/08/19 02:34,"208 Highland St, Los Angeles, CA 90001" +193733,34in Ultrawide Monitor,1,379.99,04/11/19 21:54,"67 9th St, San Francisco, CA 94016" +193734,Macbook Pro Laptop,1,1700,04/02/19 20:07,"819 Main St, Los Angeles, CA 90001" +193735,iPhone,1,700,04/14/19 12:28,"416 Main St, San Francisco, CA 94016" +193736,Lightning Charging Cable,1,14.95,04/23/19 14:34,"805 Elm St, Los Angeles, CA 90001" +193737,Lightning Charging Cable,1,14.95,04/22/19 11:52,"73 8th St, New York City, NY 10001" +193738,Bose SoundSport Headphones,1,99.99,04/26/19 21:42,"333 2nd St, San Francisco, CA 94016" +193739,USB-C Charging Cable,1,11.95,04/07/19 19:53,"149 Dogwood St, San Francisco, CA 94016" +193740,USB-C Charging Cable,1,11.95,04/28/19 19:20,"48 Main St, New York City, NY 10001" +193741,Lightning Charging Cable,1,14.95,04/06/19 15:38,"181 Washington St, San Francisco, CA 94016" +193742,Wired Headphones,2,11.99,04/06/19 21:20,"409 1st St, Austin, TX 73301" +193743,Google Phone,1,600,04/29/19 20:38,"390 13th St, Austin, TX 73301" +193743,USB-C Charging Cable,1,11.95,04/29/19 20:38,"390 13th St, Austin, TX 73301" +193744,20in Monitor,1,109.99,04/26/19 16:42,"653 Spruce St, San Francisco, CA 94016" +193745,34in Ultrawide Monitor,1,379.99,04/01/19 19:46,"73 1st St, San Francisco, CA 94016" +193746,USB-C Charging Cable,2,11.95,04/25/19 17:41,"109 Forest St, San Francisco, CA 94016" +193747,Google Phone,1,600,04/24/19 09:20,"772 Willow St, Los Angeles, CA 90001" +193748,27in 4K Gaming Monitor,1,389.99,04/22/19 19:35,"684 North St, Dallas, TX 75001" +193749,AA Batteries (4-pack),1,3.84,04/15/19 15:03,"533 Hickory St, Austin, TX 73301" +193750,AA Batteries (4-pack),1,3.84,04/10/19 21:12,"443 4th St, Los Angeles, CA 90001" +193751,AAA Batteries (4-pack),2,2.99,04/28/19 21:47,"97 Maple St, Dallas, TX 75001" +193752,Apple Airpods Headphones,1,150,04/21/19 13:48,"738 11th St, Boston, MA 02215" +193753,Apple Airpods Headphones,1,150,04/05/19 09:26,"955 West St, Boston, MA 02215" +193754,20in Monitor,1,109.99,04/24/19 15:16,"577 Center St, New York City, NY 10001" +193755,AAA Batteries (4-pack),2,2.99,04/27/19 20:34,"235 4th St, San Francisco, CA 94016" +193756,Google Phone,1,600,04/28/19 14:21,"722 14th St, Boston, MA 02215" +193757,AA Batteries (4-pack),1,3.84,04/13/19 21:22,"743 Lincoln St, Portland, OR 97035" +193758,LG Washing Machine,1,600.0,04/21/19 12:24,"637 14th St, Dallas, TX 75001" +193759,AA Batteries (4-pack),1,3.84,04/23/19 18:26,"454 Walnut St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +193760,AA Batteries (4-pack),1,3.84,04/23/19 12:30,"323 8th St, Dallas, TX 75001" +193761,Apple Airpods Headphones,1,150,04/04/19 09:44,"953 Chestnut St, San Francisco, CA 94016" +193762,USB-C Charging Cable,1,11.95,04/07/19 16:17,"888 Jackson St, Boston, MA 02215" +193762,USB-C Charging Cable,1,11.95,04/07/19 16:17,"888 Jackson St, Boston, MA 02215" +193763,Wired Headphones,1,11.99,04/19/19 14:16,"991 Jackson St, San Francisco, CA 94016" +193764,Bose SoundSport Headphones,1,99.99,04/05/19 14:13,"669 12th St, Seattle, WA 98101" +193765,Wired Headphones,1,11.99,04/15/19 21:53,"302 Washington St, San Francisco, CA 94016" +193766,LG Washing Machine,1,600.0,04/23/19 11:39,"258 Main St, Los Angeles, CA 90001" +193767,Bose SoundSport Headphones,1,99.99,04/28/19 12:52,"115 1st St, Boston, MA 02215" +193768,20in Monitor,1,109.99,04/27/19 13:08,"270 Lakeview St, Los Angeles, CA 90001" +193769,Wired Headphones,1,11.99,04/07/19 10:09,"898 Main St, San Francisco, CA 94016" +193770,iPhone,1,700,04/05/19 18:24,"208 Center St, Dallas, TX 75001" +193771,ThinkPad Laptop,1,999.99,04/22/19 06:50,"809 8th St, Portland, ME 04101" +193772,Macbook Pro Laptop,1,1700,04/18/19 19:35,"305 Johnson St, Atlanta, GA 30301" +193773,AAA Batteries (4-pack),1,2.99,04/15/19 12:23,"26 Jackson St, Boston, MA 02215" +193774,AA Batteries (4-pack),1,3.84,04/30/19 00:34,"76 9th St, New York City, NY 10001" +193775,34in Ultrawide Monitor,1,379.99,04/30/19 10:29,"763 Chestnut St, San Francisco, CA 94016" +193776,Flatscreen TV,1,300,04/03/19 21:04,"78 Jefferson St, Boston, MA 02215" +193777,Lightning Charging Cable,1,14.95,04/21/19 10:38,"110 North St, Boston, MA 02215" +193778,Apple Airpods Headphones,1,150,04/26/19 19:22,"568 Jefferson St, New York City, NY 10001" +193779,AAA Batteries (4-pack),1,2.99,04/23/19 17:51,"940 11th St, San Francisco, CA 94016" +193780,USB-C Charging Cable,1,11.95,04/01/19 11:18,"213 Adams St, New York City, NY 10001" +193781,AA Batteries (4-pack),2,3.84,04/08/19 16:24,"924 Meadow St, Boston, MA 02215" +193782,ThinkPad Laptop,1,999.99,04/03/19 13:31,"566 Lakeview St, Seattle, WA 98101" +193783,AAA Batteries (4-pack),1,2.99,04/21/19 18:43,"376 Pine St, Los Angeles, CA 90001" +193784,Apple Airpods Headphones,1,150,04/17/19 22:21,"742 Wilson St, Seattle, WA 98101" +193785,USB-C Charging Cable,1,11.95,04/08/19 09:50,"929 Hill St, Atlanta, GA 30301" +193786,Macbook Pro Laptop,1,1700,04/29/19 06:43,"805 5th St, Portland, OR 97035" +193787,AA Batteries (4-pack),1,3.84,04/06/19 10:48,"83 Lincoln St, Los Angeles, CA 90001" +193788,Apple Airpods Headphones,1,150,04/10/19 09:19,"333 Main St, Dallas, TX 75001" +193789,AAA Batteries (4-pack),1,2.99,04/19/19 09:51,"212 Cherry St, San Francisco, CA 94016" +193790,AA Batteries (4-pack),2,3.84,04/18/19 09:27,"522 Adams St, Los Angeles, CA 90001" +193791,AAA Batteries (4-pack),1,2.99,04/30/19 16:24,"539 Madison St, New York City, NY 10001" +193792,AA Batteries (4-pack),1,3.84,04/19/19 10:58,"615 4th St, New York City, NY 10001" +193793,Macbook Pro Laptop,1,1700,04/28/19 09:21,"361 Forest St, Boston, MA 02215" +193794,AA Batteries (4-pack),1,3.84,04/01/19 13:12,"787 Walnut St, Portland, OR 97035" +193795,Wired Headphones,1,11.99,04/17/19 19:42,"496 Center St, Seattle, WA 98101" +193796,AA Batteries (4-pack),1,3.84,04/03/19 00:20,"921 11th St, New York City, NY 10001" +193797,AA Batteries (4-pack),2,3.84,04/30/19 08:13,"771 Willow St, Los Angeles, CA 90001" +193798,USB-C Charging Cable,1,11.95,04/28/19 00:46,"15 Cherry St, Boston, MA 02215" +193799,Wired Headphones,1,11.99,04/03/19 11:12,"178 Adams St, San Francisco, CA 94016" +193800,Apple Airpods Headphones,1,150,04/01/19 13:16,"164 Hill St, Seattle, WA 98101" +193801,20in Monitor,1,109.99,04/07/19 18:52,"802 Maple St, Seattle, WA 98101" +193802,USB-C Charging Cable,1,11.95,04/15/19 11:40,"841 Meadow St, Seattle, WA 98101" +193803,Wired Headphones,1,11.99,04/10/19 18:21,"527 Forest St, New York City, NY 10001" +193804,27in 4K Gaming Monitor,1,389.99,04/24/19 20:48,"265 10th St, Atlanta, GA 30301" +193805,Wired Headphones,2,11.99,04/06/19 09:26,"790 Lincoln St, New York City, NY 10001" +193806,AA Batteries (4-pack),1,3.84,04/17/19 20:58,"563 Lincoln St, Los Angeles, CA 90001" +193807,iPhone,1,700,04/21/19 23:05,"998 5th St, Seattle, WA 98101" +193807,Lightning Charging Cable,1,14.95,04/21/19 23:05,"998 5th St, Seattle, WA 98101" +193808,Lightning Charging Cable,1,14.95,04/06/19 21:09,"193 13th St, Atlanta, GA 30301" +193809,Google Phone,1,600,04/11/19 15:22,"268 Jefferson St, Dallas, TX 75001" +193809,USB-C Charging Cable,1,11.95,04/11/19 15:22,"268 Jefferson St, Dallas, TX 75001" +193810,USB-C Charging Cable,1,11.95,04/03/19 15:20,"297 Center St, Los Angeles, CA 90001" +193811,Wired Headphones,1,11.99,04/15/19 13:09,"690 Walnut St, Dallas, TX 75001" +193812,20in Monitor,1,109.99,04/08/19 19:22,"248 4th St, Seattle, WA 98101" +193813,Wired Headphones,1,11.99,04/14/19 11:48,"930 1st St, San Francisco, CA 94016" +193814,Lightning Charging Cable,1,14.95,04/22/19 23:17,"226 12th St, Atlanta, GA 30301" +193815,AAA Batteries (4-pack),1,2.99,04/13/19 22:12,"110 10th St, San Francisco, CA 94016" +193816,USB-C Charging Cable,1,11.95,04/14/19 21:54,"964 Center St, Atlanta, GA 30301" +193817,AA Batteries (4-pack),2,3.84,04/02/19 07:07,"330 Chestnut St, Atlanta, GA 30301" +193818,Apple Airpods Headphones,1,150,04/28/19 19:48,"558 Wilson St, Atlanta, GA 30301" +193818,ThinkPad Laptop,1,999.99,04/28/19 19:48,"558 Wilson St, Atlanta, GA 30301" +193819,Lightning Charging Cable,1,14.95,04/19/19 09:12,"803 4th St, New York City, NY 10001" +193820,USB-C Charging Cable,1,11.95,04/24/19 09:31,"499 Center St, Austin, TX 73301" +193821,iPhone,1,700,04/27/19 12:10,"771 Elm St, Austin, TX 73301" +193821,Lightning Charging Cable,1,14.95,04/27/19 12:10,"771 Elm St, Austin, TX 73301" +193822,Google Phone,1,600,04/06/19 07:53,"687 Walnut St, New York City, NY 10001" +193822,Wired Headphones,1,11.99,04/06/19 07:53,"687 Walnut St, New York City, NY 10001" +193823,AA Batteries (4-pack),1,3.84,04/12/19 20:08,"626 Wilson St, Boston, MA 02215" +193824,USB-C Charging Cable,1,11.95,04/08/19 21:47,"112 2nd St, Los Angeles, CA 90001" +193825,Apple Airpods Headphones,1,150,04/23/19 19:49,"417 Main St, Portland, OR 97035" +193826,Google Phone,1,600,04/18/19 16:56,"459 West St, Los Angeles, CA 90001" +193826,Wired Headphones,1,11.99,04/18/19 16:56,"459 West St, Los Angeles, CA 90001" +193827,USB-C Charging Cable,1,11.95,04/29/19 09:45,"607 Park St, Atlanta, GA 30301" +193828,iPhone,1,700,04/07/19 19:54,"296 Cherry St, New York City, NY 10001" +193828,Wired Headphones,1,11.99,04/07/19 19:54,"296 Cherry St, New York City, NY 10001" +193829,USB-C Charging Cable,1,11.95,04/03/19 22:56,"857 12th St, Austin, TX 73301" +193830,AAA Batteries (4-pack),4,2.99,04/05/19 21:33,"349 Highland St, New York City, NY 10001" +193831,AAA Batteries (4-pack),1,2.99,04/19/19 01:46,"251 8th St, Dallas, TX 75001" +193832,AA Batteries (4-pack),1,3.84,04/05/19 11:38,"231 12th St, Los Angeles, CA 90001" +193833,AA Batteries (4-pack),4,3.84,04/30/19 11:56,"72 Willow St, Los Angeles, CA 90001" +193834,USB-C Charging Cable,1,11.95,04/08/19 21:33,"56 Center St, Boston, MA 02215" +193835,Google Phone,1,600,04/21/19 10:41,"913 4th St, Seattle, WA 98101" +193835,USB-C Charging Cable,1,11.95,04/21/19 10:41,"913 4th St, Seattle, WA 98101" +193836,USB-C Charging Cable,1,11.95,04/08/19 10:03,"573 8th St, New York City, NY 10001" +193837,Wired Headphones,2,11.99,04/21/19 09:04,"590 Meadow St, New York City, NY 10001" +193838,AA Batteries (4-pack),2,3.84,04/01/19 20:42,"115 Main St, Boston, MA 02215" +193839,Bose SoundSport Headphones,1,99.99,04/09/19 14:26,"280 Center St, San Francisco, CA 94016" +193840,Bose SoundSport Headphones,1,99.99,04/08/19 08:04,"787 6th St, Seattle, WA 98101" +193841,27in FHD Monitor,1,149.99,04/28/19 16:39,"640 Church St, San Francisco, CA 94016" +193842,20in Monitor,1,109.99,04/29/19 21:45,"580 Pine St, Los Angeles, CA 90001" +193843,Wired Headphones,1,11.99,04/24/19 02:11,"894 9th St, Los Angeles, CA 90001" +193844,27in 4K Gaming Monitor,1,389.99,04/28/19 19:48,"32 Elm St, Los Angeles, CA 90001" +193845,Wired Headphones,1,11.99,04/05/19 11:01,"494 Walnut St, Los Angeles, CA 90001" +193846,Lightning Charging Cable,1,14.95,04/09/19 15:24,"773 8th St, New York City, NY 10001" +193847,AAA Batteries (4-pack),1,2.99,04/02/19 11:11,"904 5th St, Los Angeles, CA 90001" +193848,Flatscreen TV,1,300,04/16/19 09:13,"512 11th St, Seattle, WA 98101" +193849,27in FHD Monitor,1,149.99,04/17/19 03:13,"146 4th St, New York City, NY 10001" +193850,AAA Batteries (4-pack),1,2.99,04/19/19 05:56,"922 Washington St, San Francisco, CA 94016" +193851,AAA Batteries (4-pack),2,2.99,04/19/19 18:41,"499 7th St, San Francisco, CA 94016" +193852,Lightning Charging Cable,2,14.95,04/24/19 23:10,"472 Pine St, Portland, OR 97035" +193853,Wired Headphones,1,11.99,04/18/19 09:20,"401 Highland St, Dallas, TX 75001" +193854,Google Phone,1,600,04/27/19 07:48,"864 Sunset St, Los Angeles, CA 90001" +193854,USB-C Charging Cable,2,11.95,04/27/19 07:48,"864 Sunset St, Los Angeles, CA 90001" +193855,AA Batteries (4-pack),1,3.84,04/11/19 12:26,"746 Jefferson St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +193856,Apple Airpods Headphones,1,150,04/20/19 01:12,"572 Meadow St, Boston, MA 02215" +193857,Bose SoundSport Headphones,1,99.99,04/30/19 20:52,"621 6th St, New York City, NY 10001" +193858,27in FHD Monitor,1,149.99,04/09/19 23:36,"53 Madison St, Los Angeles, CA 90001" +193859,Wired Headphones,1,11.99,04/03/19 10:04,"481 Sunset St, San Francisco, CA 94016" +193860,Bose SoundSport Headphones,1,99.99,04/18/19 08:34,"729 Highland St, Los Angeles, CA 90001" +193860,AAA Batteries (4-pack),1,2.99,04/18/19 08:34,"729 Highland St, Los Angeles, CA 90001" +193861,34in Ultrawide Monitor,1,379.99,04/18/19 09:51,"676 Spruce St, New York City, NY 10001" +193862,USB-C Charging Cable,1,11.95,04/13/19 19:06,"843 River St, San Francisco, CA 94016" +193863,Wired Headphones,1,11.99,04/13/19 18:16,"49 6th St, Austin, TX 73301" +193864,ThinkPad Laptop,1,999.99,04/05/19 17:41,"819 Park St, Austin, TX 73301" +193865,USB-C Charging Cable,1,11.95,04/28/19 09:46,"373 Elm St, Atlanta, GA 30301" +193866,USB-C Charging Cable,1,11.95,04/19/19 21:59,"967 Madison St, New York City, NY 10001" +193867,USB-C Charging Cable,1,11.95,04/08/19 21:32,"833 Lake St, San Francisco, CA 94016" +193868,Apple Airpods Headphones,1,150,04/23/19 23:05,"358 Johnson St, Los Angeles, CA 90001" +193869,27in 4K Gaming Monitor,1,389.99,04/27/19 08:30,"867 Church St, Dallas, TX 75001" +193870,20in Monitor,1,109.99,04/16/19 08:00,"634 Johnson St, Seattle, WA 98101" +193871,USB-C Charging Cable,1,11.95,04/18/19 15:51,"905 Church St, Los Angeles, CA 90001" +193872,Lightning Charging Cable,1,14.95,04/12/19 19:17,"625 5th St, San Francisco, CA 94016" +193873,AAA Batteries (4-pack),2,2.99,04/13/19 23:09,"588 Madison St, San Francisco, CA 94016" +193874,Macbook Pro Laptop,1,1700,04/24/19 14:14,"753 10th St, Dallas, TX 75001" +193875,Lightning Charging Cable,1,14.95,04/23/19 07:41,"375 Pine St, Seattle, WA 98101" +193876,AA Batteries (4-pack),1,3.84,04/12/19 15:29,"938 Church St, Atlanta, GA 30301" +193877,Wired Headphones,1,11.99,04/13/19 12:44,"527 Lincoln St, Los Angeles, CA 90001" +193878,Apple Airpods Headphones,1,150,04/13/19 12:35,"618 Main St, Atlanta, GA 30301" +193879,Google Phone,1,600,04/12/19 18:08,"538 Washington St, Portland, OR 97035" +193879,Bose SoundSport Headphones,1,99.99,04/12/19 18:08,"538 Washington St, Portland, OR 97035" +193880,Lightning Charging Cable,1,14.95,04/08/19 13:22,"922 Wilson St, Los Angeles, CA 90001" +193881,27in FHD Monitor,1,149.99,04/29/19 08:11,"336 Lincoln St, Atlanta, GA 30301" +193882,Lightning Charging Cable,1,14.95,04/27/19 12:49,"633 6th St, Atlanta, GA 30301" +193883,Wired Headphones,1,11.99,04/25/19 11:17,"761 Cherry St, New York City, NY 10001" +193884,USB-C Charging Cable,1,11.95,04/21/19 21:24,"626 South St, Los Angeles, CA 90001" +193885,27in 4K Gaming Monitor,1,389.99,04/30/19 21:53,"272 Cherry St, Boston, MA 02215" +193886,AA Batteries (4-pack),2,3.84,04/24/19 15:40,"843 Main St, New York City, NY 10001" +193887,Wired Headphones,1,11.99,04/12/19 19:41,"697 Wilson St, New York City, NY 10001" +193888,Wired Headphones,1,11.99,04/09/19 09:33,"591 6th St, Dallas, TX 75001" +193889,AA Batteries (4-pack),2,3.84,04/29/19 21:36,"419 1st St, Dallas, TX 75001" +193890,Wired Headphones,2,11.99,04/11/19 20:35,"917 Walnut St, Dallas, TX 75001" +193890,Bose SoundSport Headphones,1,99.99,04/11/19 20:35,"917 Walnut St, Dallas, TX 75001" +193891,Apple Airpods Headphones,1,150,04/14/19 18:44,"689 Chestnut St, Dallas, TX 75001" +193892,Macbook Pro Laptop,1,1700,04/05/19 20:15,"421 13th St, Dallas, TX 75001" +193893,Lightning Charging Cable,1,14.95,04/13/19 20:18,"183 7th St, San Francisco, CA 94016" +193894,iPhone,1,700,04/03/19 19:53,"771 Lake St, New York City, NY 10001" +193895,Lightning Charging Cable,1,14.95,04/14/19 09:48,"423 Dogwood St, Portland, OR 97035" +193896,27in FHD Monitor,1,149.99,04/29/19 15:40,"729 Madison St, Los Angeles, CA 90001" +193897,27in FHD Monitor,1,149.99,04/27/19 05:41,"538 Pine St, Boston, MA 02215" +193898,Apple Airpods Headphones,1,150,04/18/19 11:58,"916 Main St, San Francisco, CA 94016" +193899,AA Batteries (4-pack),1,3.84,04/18/19 18:43,"593 Adams St, Los Angeles, CA 90001" +193900,Lightning Charging Cable,1,14.95,04/12/19 14:09,"550 Park St, Portland, OR 97035" +193901,Vareebadd Phone,1,400,04/02/19 12:11,"720 Chestnut St, New York City, NY 10001" +193901,Bose SoundSport Headphones,1,99.99,04/02/19 12:11,"720 Chestnut St, New York City, NY 10001" +193902,Wired Headphones,1,11.99,04/02/19 20:47,"953 Wilson St, Los Angeles, CA 90001" +193903,AAA Batteries (4-pack),3,2.99,04/16/19 12:08,"665 Johnson St, Los Angeles, CA 90001" +193904,USB-C Charging Cable,1,11.95,04/25/19 02:39,"853 Forest St, Boston, MA 02215" +193905,Bose SoundSport Headphones,1,99.99,04/28/19 19:18,"611 5th St, Boston, MA 02215" +193906,USB-C Charging Cable,1,11.95,04/03/19 14:36,"425 Elm St, San Francisco, CA 94016" +193907,Apple Airpods Headphones,1,150,04/03/19 12:00,"892 Wilson St, Dallas, TX 75001" +193908,USB-C Charging Cable,1,11.95,04/04/19 17:28,"598 Church St, Seattle, WA 98101" +193909,Wired Headphones,2,11.99,04/18/19 20:12,"931 2nd St, Portland, OR 97035" +193910,iPhone,1,700,04/06/19 14:36,"697 9th St, New York City, NY 10001" +193911,Apple Airpods Headphones,1,150,04/11/19 06:48,"552 Chestnut St, Austin, TX 73301" +193912,Macbook Pro Laptop,1,1700,04/28/19 19:58,"45 Ridge St, San Francisco, CA 94016" +193913,27in FHD Monitor,1,149.99,04/27/19 07:35,"329 Wilson St, San Francisco, CA 94016" +193914,Bose SoundSport Headphones,1,99.99,04/10/19 14:03,"536 Walnut St, San Francisco, CA 94016" +193915,Vareebadd Phone,1,400,04/08/19 10:05,"777 Maple St, Austin, TX 73301" +193915,USB-C Charging Cable,1,11.95,04/08/19 10:05,"777 Maple St, Austin, TX 73301" +193916,USB-C Charging Cable,1,11.95,04/05/19 01:40,"24 Lincoln St, San Francisco, CA 94016" +193917,Lightning Charging Cable,1,14.95,04/15/19 06:34,"628 Hill St, San Francisco, CA 94016" +193918,Lightning Charging Cable,2,14.95,04/03/19 15:03,"60 7th St, Dallas, TX 75001" +193919,AA Batteries (4-pack),1,3.84,04/27/19 17:41,"622 South St, Los Angeles, CA 90001" +193920,USB-C Charging Cable,1,11.95,04/27/19 19:18,"235 West St, San Francisco, CA 94016" +193921,Apple Airpods Headphones,1,150,04/08/19 19:38,"34 Main St, Los Angeles, CA 90001" +193922,27in FHD Monitor,1,149.99,04/06/19 15:34,"590 Highland St, San Francisco, CA 94016" +193923,Apple Airpods Headphones,1,150,04/24/19 11:02,"846 Spruce St, Atlanta, GA 30301" +193924,Apple Airpods Headphones,1,150,04/06/19 08:09,"947 Maple St, New York City, NY 10001" +193925,Flatscreen TV,1,300,04/08/19 13:41,"324 Elm St, San Francisco, CA 94016" +193926,AAA Batteries (4-pack),1,2.99,04/15/19 20:17,"771 River St, Dallas, TX 75001" +193927,27in FHD Monitor,1,149.99,04/08/19 23:38,"950 Elm St, New York City, NY 10001" +193928,AA Batteries (4-pack),4,3.84,04/18/19 17:45,"485 1st St, San Francisco, CA 94016" +193929,AA Batteries (4-pack),1,3.84,04/16/19 15:34,"980 Spruce St, Seattle, WA 98101" +193930,USB-C Charging Cable,1,11.95,04/27/19 17:22,"879 5th St, San Francisco, CA 94016" +193931,Bose SoundSport Headphones,1,99.99,04/02/19 10:25,"69 Spruce St, Dallas, TX 75001" +193932,Lightning Charging Cable,1,14.95,04/06/19 08:39,"775 Elm St, New York City, NY 10001" +193933,Wired Headphones,1,11.99,04/19/19 18:41,"664 River St, Dallas, TX 75001" +193934,AA Batteries (4-pack),1,3.84,04/27/19 21:05,"151 Adams St, San Francisco, CA 94016" +193935,AA Batteries (4-pack),1,3.84,04/12/19 21:53,"420 2nd St, San Francisco, CA 94016" +193936,Bose SoundSport Headphones,1,99.99,04/15/19 00:33,"398 Madison St, New York City, NY 10001" +193937,USB-C Charging Cable,1,11.95,04/24/19 09:40,"373 Lake St, Seattle, WA 98101" +193938,AAA Batteries (4-pack),2,2.99,04/05/19 01:26,"106 5th St, Portland, OR 97035" +193939,USB-C Charging Cable,1,11.95,04/02/19 08:09,"504 Center St, Boston, MA 02215" +193940,Bose SoundSport Headphones,1,99.99,04/22/19 10:30,"592 Jackson St, Los Angeles, CA 90001" +193941,Lightning Charging Cable,1,14.95,04/21/19 21:07,"129 Elm St, San Francisco, CA 94016" +193942,Apple Airpods Headphones,1,150,04/01/19 19:31,"691 Washington St, Portland, OR 97035" +193943,Flatscreen TV,1,300,04/28/19 10:39,"309 6th St, Los Angeles, CA 90001" +193944,AAA Batteries (4-pack),2,2.99,04/14/19 21:01,"632 Madison St, Dallas, TX 75001" +193945,AA Batteries (4-pack),1,3.84,04/25/19 17:44,"840 River St, San Francisco, CA 94016" +193946,20in Monitor,1,109.99,04/22/19 10:21,"998 7th St, New York City, NY 10001" +193947,AA Batteries (4-pack),1,3.84,04/03/19 17:31,"128 Spruce St, New York City, NY 10001" +193948,Flatscreen TV,1,300,04/03/19 11:39,"640 1st St, Boston, MA 02215" +193949,Bose SoundSport Headphones,1,99.99,04/17/19 19:50,"798 South St, Portland, OR 97035" +193950,Apple Airpods Headphones,1,150,04/03/19 19:28,"686 Jefferson St, New York City, NY 10001" +193951,Lightning Charging Cable,1,14.95,04/30/19 09:10,"489 Main St, San Francisco, CA 94016" +193952,USB-C Charging Cable,1,11.95,04/16/19 10:41,"359 Adams St, Dallas, TX 75001" +193953,iPhone,1,700,04/20/19 21:22,"107 Ridge St, Portland, OR 97035" +193954,Lightning Charging Cable,1,14.95,04/16/19 16:19,"337 10th St, San Francisco, CA 94016" +193955,AAA Batteries (4-pack),1,2.99,04/19/19 20:32,"349 South St, Boston, MA 02215" +193956,USB-C Charging Cable,1,11.95,04/24/19 20:13,"735 8th St, San Francisco, CA 94016" +193957,Macbook Pro Laptop,1,1700,04/26/19 09:45,"201 North St, Atlanta, GA 30301" +193958,Bose SoundSport Headphones,1,99.99,04/13/19 08:06,"27 Sunset St, San Francisco, CA 94016" +193959,Lightning Charging Cable,1,14.95,04/21/19 12:40,"370 7th St, Austin, TX 73301" +193960,Apple Airpods Headphones,1,150,04/04/19 00:09,"397 Walnut St, San Francisco, CA 94016" +193961,AA Batteries (4-pack),1,3.84,04/11/19 08:08,"66 Dogwood St, Seattle, WA 98101" +193962,AA Batteries (4-pack),1,3.84,04/19/19 23:06,"570 10th St, New York City, NY 10001" +193963,27in 4K Gaming Monitor,1,389.99,04/23/19 12:26,"640 6th St, Seattle, WA 98101" +193964,Lightning Charging Cable,1,14.95,04/24/19 07:26,"417 Forest St, New York City, NY 10001" +193965,27in 4K Gaming Monitor,1,389.99,04/22/19 12:00,"961 Lake St, San Francisco, CA 94016" +193966,Bose SoundSport Headphones,1,99.99,04/25/19 13:14,"94 5th St, Portland, OR 97035" +193967,iPhone,1,700,04/23/19 13:32,"282 Johnson St, Portland, ME 04101" +193967,Wired Headphones,1,11.99,04/23/19 13:32,"282 Johnson St, Portland, ME 04101" +193968,LG Dryer,1,600.0,04/13/19 06:38,"379 Willow St, Los Angeles, CA 90001" +193969,AAA Batteries (4-pack),1,2.99,04/10/19 11:09,"521 Spruce St, New York City, NY 10001" +193970,AAA Batteries (4-pack),1,2.99,04/04/19 23:55,"490 Wilson St, Boston, MA 02215" +193971,AA Batteries (4-pack),4,3.84,04/24/19 16:53,"600 Dogwood St, Boston, MA 02215" +193972,USB-C Charging Cable,1,11.95,04/15/19 18:53,"254 River St, Portland, OR 97035" +193973,AAA Batteries (4-pack),5,2.99,04/02/19 01:11,"745 5th St, Atlanta, GA 30301" +193974,AA Batteries (4-pack),1,3.84,04/25/19 13:02,"473 7th St, New York City, NY 10001" +193975,Lightning Charging Cable,1,14.95,04/04/19 09:51,"235 Lake St, San Francisco, CA 94016" +193976,34in Ultrawide Monitor,1,379.99,04/08/19 13:54,"381 Park St, Dallas, TX 75001" +193977,Flatscreen TV,1,300,04/20/19 17:23,"999 11th St, San Francisco, CA 94016" +193978,AAA Batteries (4-pack),1,2.99,04/06/19 17:04,"254 6th St, Los Angeles, CA 90001" +193979,34in Ultrawide Monitor,1,379.99,04/16/19 23:34,"701 Cherry St, San Francisco, CA 94016" +193980,USB-C Charging Cable,1,11.95,04/26/19 22:28,"970 12th St, Atlanta, GA 30301" +193981,Lightning Charging Cable,1,14.95,04/12/19 00:32,"81 1st St, New York City, NY 10001" +193982,AA Batteries (4-pack),1,3.84,04/26/19 17:16,"431 Hill St, San Francisco, CA 94016" +193983,27in FHD Monitor,1,149.99,04/05/19 18:59,"667 Main St, Portland, OR 97035" +193984,iPhone,1,700,04/22/19 02:01,"74 Chestnut St, Los Angeles, CA 90001" +193985,27in FHD Monitor,1,149.99,04/03/19 12:31,"837 2nd St, Atlanta, GA 30301" +193986,Bose SoundSport Headphones,1,99.99,04/11/19 17:25,"940 Main St, Los Angeles, CA 90001" +193987,ThinkPad Laptop,1,999.99,04/28/19 23:23,"23 14th St, Boston, MA 02215" +193988,AA Batteries (4-pack),2,3.84,04/09/19 05:40,"414 Forest St, San Francisco, CA 94016" +193989,Bose SoundSport Headphones,1,99.99,04/20/19 19:15,"72 Washington St, Portland, OR 97035" +193990,Lightning Charging Cable,1,14.95,04/28/19 00:08,"547 Center St, Atlanta, GA 30301" +193991,AAA Batteries (4-pack),2,2.99,04/14/19 16:19,"363 Jefferson St, Austin, TX 73301" +193991,ThinkPad Laptop,1,999.99,04/14/19 16:19,"363 Jefferson St, Austin, TX 73301" +193992,Wired Headphones,1,11.99,04/01/19 16:36,"848 Willow St, Austin, TX 73301" +193993,Lightning Charging Cable,1,14.95,04/27/19 23:52,"269 River St, Dallas, TX 75001" +193994,AAA Batteries (4-pack),1,2.99,04/18/19 20:54,"883 Hill St, Atlanta, GA 30301" +193995,Wired Headphones,1,11.99,04/15/19 10:02,"134 11th St, San Francisco, CA 94016" +193996,AAA Batteries (4-pack),1,2.99,04/02/19 13:35,"423 Sunset St, Dallas, TX 75001" +193997,Google Phone,1,600,04/24/19 15:50,"973 Lincoln St, San Francisco, CA 94016" +193997,USB-C Charging Cable,1,11.95,04/24/19 15:50,"973 Lincoln St, San Francisco, CA 94016" +193998,Bose SoundSport Headphones,1,99.99,04/04/19 21:32,"173 Church St, Seattle, WA 98101" +193999,Lightning Charging Cable,1,14.95,04/03/19 08:07,"205 Lake St, Los Angeles, CA 90001" +194000,Lightning Charging Cable,1,14.95,04/13/19 19:43,"400 Pine St, Los Angeles, CA 90001" +194001,AAA Batteries (4-pack),1,2.99,04/17/19 11:34,"252 8th St, Atlanta, GA 30301" +194002,USB-C Charging Cable,1,11.95,04/27/19 16:07,"150 14th St, Portland, ME 04101" +194003,USB-C Charging Cable,1,11.95,04/05/19 19:14,"900 Johnson St, Los Angeles, CA 90001" +194004,Apple Airpods Headphones,1,150,04/10/19 15:48,"119 6th St, Boston, MA 02215" +194005,Flatscreen TV,1,300,04/04/19 19:34,"794 South St, Austin, TX 73301" +194006,Lightning Charging Cable,2,14.95,04/10/19 17:23,"903 13th St, San Francisco, CA 94016" +194007,ThinkPad Laptop,1,999.99,04/26/19 17:33,"669 Dogwood St, San Francisco, CA 94016" +194008,LG Dryer,1,600.0,04/12/19 22:14,"659 River St, Boston, MA 02215" +194009,Macbook Pro Laptop,1,1700,04/06/19 23:57,"876 11th St, Atlanta, GA 30301" +194010,Bose SoundSport Headphones,1,99.99,04/29/19 16:42,"639 Chestnut St, Seattle, WA 98101" +194011,iPhone,1,700,04/27/19 21:11,"299 Hickory St, Los Angeles, CA 90001" +194012,Apple Airpods Headphones,1,150,04/04/19 15:50,"527 13th St, Portland, OR 97035" +194013,Wired Headphones,1,11.99,04/09/19 23:19,"267 14th St, San Francisco, CA 94016" +194014,Wired Headphones,1,11.99,04/08/19 15:55,"206 Hill St, San Francisco, CA 94016" +194015,Wired Headphones,1,11.99,04/01/19 15:44,"377 South St, New York City, NY 10001" +194016,27in 4K Gaming Monitor,1,389.99,04/21/19 08:07,"803 2nd St, Seattle, WA 98101" +194017,AAA Batteries (4-pack),1,2.99,04/05/19 12:12,"661 Cedar St, San Francisco, CA 94016" +194018,Wired Headphones,2,11.99,04/29/19 22:23,"603 Church St, Seattle, WA 98101" +194019,iPhone,1,700,04/02/19 17:36,"652 Pine St, New York City, NY 10001" +194019,Wired Headphones,1,11.99,04/02/19 17:36,"652 Pine St, New York City, NY 10001" +194020,Lightning Charging Cable,1,14.95,04/12/19 11:18,"50 11th St, New York City, NY 10001" +194021,Wired Headphones,1,11.99,04/19/19 18:02,"792 7th St, Atlanta, GA 30301" +194022,Google Phone,1,600,04/20/19 22:34,"231 Elm St, Portland, OR 97035" +194022,USB-C Charging Cable,1,11.95,04/20/19 22:34,"231 Elm St, Portland, OR 97035" +194023,Macbook Pro Laptop,1,1700,04/24/19 08:51,"57 Church St, Atlanta, GA 30301" +194024,iPhone,1,700,04/11/19 14:01,"609 Main St, Los Angeles, CA 90001" +194025,Lightning Charging Cable,1,14.95,04/03/19 12:49,"102 Washington St, Los Angeles, CA 90001" +194026,Macbook Pro Laptop,1,1700,04/12/19 12:35,"485 Wilson St, San Francisco, CA 94016" +194027,Lightning Charging Cable,1,14.95,04/28/19 13:06,"655 Ridge St, Dallas, TX 75001" +194028,USB-C Charging Cable,1,11.95,04/26/19 14:22,"355 Church St, Atlanta, GA 30301" +194029,Wired Headphones,1,11.99,04/15/19 19:03,"869 Walnut St, Los Angeles, CA 90001" +194030,AA Batteries (4-pack),1,3.84,04/20/19 17:57,"385 Washington St, San Francisco, CA 94016" +194031,34in Ultrawide Monitor,1,379.99,04/13/19 11:11,"873 Spruce St, Los Angeles, CA 90001" +194032,AAA Batteries (4-pack),2,2.99,04/07/19 22:34,"684 Jefferson St, Dallas, TX 75001" +194033,Bose SoundSport Headphones,1,99.99,04/05/19 15:33,"620 West St, New York City, NY 10001" +194034,20in Monitor,1,109.99,04/13/19 12:13,"696 Jackson St, San Francisco, CA 94016" +194035,iPhone,1,700,04/10/19 17:42,"70 Lakeview St, Los Angeles, CA 90001" +194036,AAA Batteries (4-pack),1,2.99,04/04/19 15:16,"817 Jefferson St, Austin, TX 73301" +194037,AAA Batteries (4-pack),2,2.99,04/03/19 23:36,"308 Spruce St, Dallas, TX 75001" +194038,27in 4K Gaming Monitor,1,389.99,04/28/19 10:27,"965 Willow St, New York City, NY 10001" +194039,USB-C Charging Cable,1,11.95,04/17/19 12:53,"351 7th St, Seattle, WA 98101" +194040,AAA Batteries (4-pack),2,2.99,04/09/19 17:59,"546 7th St, New York City, NY 10001" +194041,Flatscreen TV,1,300,04/04/19 23:21,"27 Lincoln St, San Francisco, CA 94016" +194042,Lightning Charging Cable,1,14.95,04/14/19 18:00,"737 Madison St, San Francisco, CA 94016" +194043,27in FHD Monitor,1,149.99,04/10/19 12:20,"67 Main St, Boston, MA 02215" +194044,Lightning Charging Cable,1,14.95,04/20/19 17:00,"699 Main St, Atlanta, GA 30301" +194045,27in FHD Monitor,1,149.99,04/25/19 07:11,"841 Pine St, Seattle, WA 98101" +194046,AAA Batteries (4-pack),1,2.99,04/28/19 10:50,"249 Jefferson St, Los Angeles, CA 90001" +194047,Google Phone,1,600,04/19/19 16:34,"695 13th St, Atlanta, GA 30301" +194047,USB-C Charging Cable,1,11.95,04/19/19 16:34,"695 13th St, Atlanta, GA 30301" +194048,Lightning Charging Cable,1,14.95,04/05/19 22:39,"344 Jackson St, Los Angeles, CA 90001" +194049,Apple Airpods Headphones,1,150,04/12/19 14:45,"204 Ridge St, Atlanta, GA 30301" +194050,Macbook Pro Laptop,1,1700,04/13/19 19:30,"79 Main St, San Francisco, CA 94016" +194051,AA Batteries (4-pack),1,3.84,04/18/19 21:57,"851 2nd St, Los Angeles, CA 90001" +194052,AAA Batteries (4-pack),1,2.99,04/23/19 23:41,"474 Dogwood St, San Francisco, CA 94016" +194053,34in Ultrawide Monitor,1,379.99,04/30/19 09:47,"590 River St, Boston, MA 02215" +194054,27in FHD Monitor,1,149.99,04/13/19 19:22,"798 Center St, San Francisco, CA 94016" +194055,27in 4K Gaming Monitor,1,389.99,04/10/19 21:43,"314 6th St, San Francisco, CA 94016" +194056,AAA Batteries (4-pack),1,2.99,04/22/19 17:58,"20 14th St, Los Angeles, CA 90001" +194057,AAA Batteries (4-pack),1,2.99,04/13/19 15:27,"937 Adams St, Los Angeles, CA 90001" +194058,Bose SoundSport Headphones,1,99.99,04/22/19 12:22,"557 6th St, Los Angeles, CA 90001" +194059,AAA Batteries (4-pack),1,2.99,04/27/19 11:29,"275 Meadow St, Portland, OR 97035" +194060,AA Batteries (4-pack),1,3.84,04/04/19 11:21,"185 Highland St, San Francisco, CA 94016" +194061,Lightning Charging Cable,1,14.95,04/26/19 17:50,"791 Ridge St, Seattle, WA 98101" +194062,Apple Airpods Headphones,1,150,04/22/19 20:01,"930 Lakeview St, Los Angeles, CA 90001" +194063,USB-C Charging Cable,1,11.95,04/05/19 02:12,"357 Sunset St, Los Angeles, CA 90001" +194064,iPhone,1,700,04/16/19 10:48,"862 Lincoln St, New York City, NY 10001" +194065,iPhone,1,700,04/08/19 12:56,"492 South St, Dallas, TX 75001" +194066,Apple Airpods Headphones,1,150,04/18/19 07:40,"846 Lincoln St, Boston, MA 02215" +194067,Bose SoundSport Headphones,1,99.99,04/30/19 18:10,"68 Madison St, Austin, TX 73301" +194068,27in 4K Gaming Monitor,1,389.99,04/26/19 13:41,"89 South St, San Francisco, CA 94016" +194069,27in FHD Monitor,1,149.99,04/21/19 15:17,"449 Highland St, Atlanta, GA 30301" +194070,Wired Headphones,1,11.99,04/08/19 20:04,"506 Forest St, Portland, OR 97035" +194071,Apple Airpods Headphones,1,150,04/11/19 08:48,"593 4th St, San Francisco, CA 94016" +194072,AA Batteries (4-pack),1,3.84,04/10/19 20:49,"234 Jackson St, San Francisco, CA 94016" +194073,AAA Batteries (4-pack),1,2.99,04/30/19 22:17,"87 8th St, Atlanta, GA 30301" +,,,,, +194074,iPhone,1,700,04/09/19 18:23,"508 8th St, New York City, NY 10001" +194074,27in FHD Monitor,1,149.99,04/09/19 18:23,"508 8th St, New York City, NY 10001" +194075,Google Phone,1,600,04/06/19 09:35,"129 1st St, Dallas, TX 75001" +194076,USB-C Charging Cable,1,11.95,04/20/19 19:35,"90 Church St, New York City, NY 10001" +194077,Apple Airpods Headphones,1,150,04/07/19 01:30,"748 South St, Dallas, TX 75001" +194078,AA Batteries (4-pack),2,3.84,04/14/19 15:19,"911 Sunset St, Portland, ME 04101" +194079,Lightning Charging Cable,1,14.95,04/16/19 12:00,"359 Dogwood St, San Francisco, CA 94016" +194080,AA Batteries (4-pack),1,3.84,04/27/19 00:51,"572 Pine St, Atlanta, GA 30301" +194081,USB-C Charging Cable,1,11.95,04/15/19 16:59,"147 Madison St, Los Angeles, CA 90001" +194082,Google Phone,1,600,04/24/19 19:23,"910 10th St, New York City, NY 10001" +194082,Wired Headphones,1,11.99,04/24/19 19:23,"910 10th St, New York City, NY 10001" +194083,20in Monitor,1,109.99,04/21/19 20:04,"595 Madison St, San Francisco, CA 94016" +194084,Wired Headphones,1,11.99,04/28/19 18:16,"856 Center St, New York City, NY 10001" +194085,Lightning Charging Cable,1,14.95,04/10/19 19:25,"299 Willow St, Los Angeles, CA 90001" +194086,Apple Airpods Headphones,1,150,04/01/19 20:16,"78 Ridge St, San Francisco, CA 94016" +194087,34in Ultrawide Monitor,1,379.99,04/22/19 05:10,"769 Maple St, Seattle, WA 98101" +194088,Bose SoundSport Headphones,1,99.99,04/22/19 09:58,"856 Jefferson St, Portland, OR 97035" +194089,Flatscreen TV,1,300,04/30/19 14:18,"965 Sunset St, Seattle, WA 98101" +194089,AAA Batteries (4-pack),1,2.99,04/30/19 14:18,"965 Sunset St, Seattle, WA 98101" +194090,Flatscreen TV,1,300,04/28/19 22:39,"214 13th St, Atlanta, GA 30301" +194091,iPhone,1,700,04/27/19 16:55,"947 Pine St, San Francisco, CA 94016" +194092,Apple Airpods Headphones,1,150,04/23/19 17:19,"732 1st St, Dallas, TX 75001" +194093,Wired Headphones,1,11.99,04/21/19 08:11,"141 Washington St, Seattle, WA 98101" +194094,Google Phone,1,600,04/10/19 10:34,"655 Elm St, San Francisco, CA 94016" +194095,Lightning Charging Cable,1,14.95,04/22/19 07:10,"312 9th St, Portland, OR 97035" +194096,Apple Airpods Headphones,1,150,04/14/19 13:40,"855 Center St, Los Angeles, CA 90001" +194097,34in Ultrawide Monitor,1,379.99,04/14/19 19:35,"91 Wilson St, Seattle, WA 98101" +194098,USB-C Charging Cable,1,11.95,04/01/19 17:02,"910 10th St, Los Angeles, CA 90001" +194099,Wired Headphones,1,11.99,04/07/19 12:29,"888 Highland St, San Francisco, CA 94016" +194100,Lightning Charging Cable,1,14.95,04/24/19 11:17,"693 11th St, San Francisco, CA 94016" +194101,Lightning Charging Cable,1,14.95,04/18/19 22:26,"331 Main St, San Francisco, CA 94016" +194102,20in Monitor,2,109.99,04/24/19 08:51,"361 Cedar St, San Francisco, CA 94016" +194103,Apple Airpods Headphones,1,150,04/09/19 15:49,"407 River St, Dallas, TX 75001" +194104,USB-C Charging Cable,1,11.95,04/07/19 03:09,"174 Ridge St, Los Angeles, CA 90001" +194105,ThinkPad Laptop,1,999.99,04/12/19 16:00,"239 Pine St, Atlanta, GA 30301" +194106,34in Ultrawide Monitor,1,379.99,04/26/19 15:46,"111 5th St, Los Angeles, CA 90001" +194107,AA Batteries (4-pack),1,3.84,04/10/19 22:07,"676 Sunset St, New York City, NY 10001" +194108,Lightning Charging Cable,2,14.95,04/07/19 17:01,"3 Sunset St, Atlanta, GA 30301" +194109,Wired Headphones,1,11.99,04/04/19 13:21,"289 Lakeview St, New York City, NY 10001" +194110,iPhone,1,700,04/20/19 00:48,"446 Adams St, Austin, TX 73301" +194111,Lightning Charging Cable,1,14.95,04/07/19 16:25,"927 Meadow St, Boston, MA 02215" +194112,AA Batteries (4-pack),1,3.84,04/28/19 20:05,"669 6th St, San Francisco, CA 94016" +194113,AAA Batteries (4-pack),1,2.99,04/18/19 20:16,"69 Church St, San Francisco, CA 94016" +194114,Lightning Charging Cable,1,14.95,04/30/19 06:47,"882 Johnson St, San Francisco, CA 94016" +194115,Vareebadd Phone,1,400,04/13/19 08:26,"419 Ridge St, Atlanta, GA 30301" +194116,Wired Headphones,1,11.99,04/03/19 13:53,"659 Jefferson St, San Francisco, CA 94016" +194117,AAA Batteries (4-pack),1,2.99,04/14/19 18:20,"890 Wilson St, San Francisco, CA 94016" +194118,Bose SoundSport Headphones,1,99.99,04/06/19 19:45,"205 Johnson St, Los Angeles, CA 90001" +194119,Lightning Charging Cable,1,14.95,04/24/19 14:25,"796 West St, San Francisco, CA 94016" +194120,Lightning Charging Cable,1,14.95,04/08/19 17:11,"68 Dogwood St, Dallas, TX 75001" +194121,USB-C Charging Cable,1,11.95,04/27/19 15:26,"363 Hill St, Boston, MA 02215" +194122,USB-C Charging Cable,1,11.95,04/01/19 19:23,"677 7th St, Los Angeles, CA 90001" +194123,Bose SoundSport Headphones,1,99.99,04/01/19 13:39,"389 Washington St, San Francisco, CA 94016" +194124,Apple Airpods Headphones,1,150,04/28/19 23:26,"972 River St, Dallas, TX 75001" +194125,AAA Batteries (4-pack),4,2.99,04/25/19 13:47,"734 Adams St, Los Angeles, CA 90001" +194126,Macbook Pro Laptop,1,1700,04/22/19 18:49,"404 Cherry St, Boston, MA 02215" +194127,27in FHD Monitor,1,149.99,04/19/19 04:57,"382 Center St, Atlanta, GA 30301" +194128,27in 4K Gaming Monitor,1,389.99,04/19/19 18:40,"848 2nd St, Seattle, WA 98101" +194129,Lightning Charging Cable,1,14.95,04/14/19 02:49,"229 14th St, New York City, NY 10001" +194130,USB-C Charging Cable,1,11.95,04/03/19 10:32,"668 Walnut St, Los Angeles, CA 90001" +194131,Wired Headphones,2,11.99,04/13/19 21:29,"913 2nd St, Austin, TX 73301" +194132,Lightning Charging Cable,1,14.95,04/21/19 12:33,"735 8th St, Dallas, TX 75001" +194133,iPhone,1,700,04/05/19 19:48,"550 11th St, Los Angeles, CA 90001" +194133,Wired Headphones,1,11.99,04/05/19 19:48,"550 11th St, Los Angeles, CA 90001" +194134,Vareebadd Phone,1,400,04/18/19 22:20,"692 Meadow St, Dallas, TX 75001" +194135,Lightning Charging Cable,2,14.95,04/22/19 18:47,"422 Church St, New York City, NY 10001" +194136,Wired Headphones,2,11.99,04/14/19 21:59,"767 11th St, Los Angeles, CA 90001" +194137,iPhone,1,700,04/23/19 19:44,"319 South St, Los Angeles, CA 90001" +194138,34in Ultrawide Monitor,1,379.99,04/19/19 19:56,"286 Main St, Dallas, TX 75001" +194139,USB-C Charging Cable,1,11.95,04/04/19 00:26,"793 Park St, Boston, MA 02215" +194140,Apple Airpods Headphones,1,150,04/16/19 13:44,"414 Spruce St, Atlanta, GA 30301" +194141,Apple Airpods Headphones,1,150,04/29/19 00:28,"774 Adams St, Boston, MA 02215" +194142,AA Batteries (4-pack),3,3.84,04/17/19 01:59,"165 Forest St, San Francisco, CA 94016" +194143,Lightning Charging Cable,1,14.95,04/20/19 13:13,"755 Madison St, San Francisco, CA 94016" +194144,27in 4K Gaming Monitor,1,389.99,04/28/19 02:23,"304 Spruce St, San Francisco, CA 94016" +194145,ThinkPad Laptop,1,999.99,04/07/19 14:03,"838 Lake St, Los Angeles, CA 90001" +194146,AAA Batteries (4-pack),1,2.99,04/09/19 13:41,"334 Jefferson St, San Francisco, CA 94016" +194146,20in Monitor,1,109.99,04/09/19 13:41,"334 Jefferson St, San Francisco, CA 94016" +194147,iPhone,1,700,04/22/19 11:25,"292 Lake St, San Francisco, CA 94016" +194147,Wired Headphones,1,11.99,04/22/19 11:25,"292 Lake St, San Francisco, CA 94016" +194148,Lightning Charging Cable,1,14.95,04/29/19 15:48,"778 Forest St, San Francisco, CA 94016" +194149,AA Batteries (4-pack),2,3.84,04/25/19 08:32,"114 Pine St, Portland, OR 97035" +194150,Lightning Charging Cable,1,14.95,04/24/19 01:49,"771 11th St, San Francisco, CA 94016" +194151,Google Phone,1,600,04/02/19 13:35,"468 Wilson St, Boston, MA 02215" +194152,Apple Airpods Headphones,1,150,04/30/19 17:04,"940 Hill St, San Francisco, CA 94016" +194153,AA Batteries (4-pack),1,3.84,04/21/19 09:01,"435 Adams St, New York City, NY 10001" +194154,Lightning Charging Cable,2,14.95,04/25/19 21:58,"585 Pine St, Los Angeles, CA 90001" +194155,Bose SoundSport Headphones,2,99.99,04/19/19 10:15,"664 Forest St, Seattle, WA 98101" +194156,Wired Headphones,1,11.99,04/25/19 13:03,"773 Park St, Atlanta, GA 30301" +194157,27in 4K Gaming Monitor,1,389.99,04/24/19 19:28,"302 2nd St, San Francisco, CA 94016" +194158,USB-C Charging Cable,1,11.95,04/28/19 14:51,"133 Church St, Dallas, TX 75001" +194159,AA Batteries (4-pack),1,3.84,05/01/19 00:47,"718 Cedar St, Boston, MA 02215" +194160,USB-C Charging Cable,1,11.95,04/30/19 13:45,"935 Sunset St, Seattle, WA 98101" +194161,Lightning Charging Cable,1,14.95,04/04/19 20:18,"417 Washington St, New York City, NY 10001" +194162,Wired Headphones,1,11.99,04/13/19 16:45,"961 14th St, San Francisco, CA 94016" +194163,Bose SoundSport Headphones,1,99.99,04/15/19 16:12,"55 Washington St, Los Angeles, CA 90001" +194164,Wired Headphones,1,11.99,04/19/19 20:00,"4 Dogwood St, Atlanta, GA 30301" +194165,Wired Headphones,1,11.99,04/13/19 09:51,"398 Highland St, Dallas, TX 75001" +194166,AA Batteries (4-pack),1,3.84,04/20/19 21:49,"798 Cedar St, Los Angeles, CA 90001" +194167,USB-C Charging Cable,1,11.95,04/30/19 13:10,"672 Highland St, New York City, NY 10001" +194168,Wired Headphones,1,11.99,04/02/19 15:11,"436 Madison St, Seattle, WA 98101" +194169,iPhone,1,700,04/04/19 21:38,"375 Ridge St, Atlanta, GA 30301" +194170,USB-C Charging Cable,1,11.95,04/10/19 13:55,"250 Adams St, San Francisco, CA 94016" +194171,Bose SoundSport Headphones,1,99.99,04/07/19 06:34,"662 Johnson St, New York City, NY 10001" +194172,AA Batteries (4-pack),3,3.84,04/27/19 23:02,"284 9th St, New York City, NY 10001" +194173,Google Phone,1,600,04/03/19 17:19,"607 10th St, Los Angeles, CA 90001" +194174,Macbook Pro Laptop,1,1700,04/07/19 19:58,"409 Cedar St, Los Angeles, CA 90001" +194175,Macbook Pro Laptop,1,1700,04/30/19 13:40,"570 Jefferson St, San Francisco, CA 94016" +194176,AAA Batteries (4-pack),1,2.99,04/10/19 14:24,"613 Cherry St, San Francisco, CA 94016" +194177,Wired Headphones,1,11.99,04/24/19 20:44,"702 River St, San Francisco, CA 94016" +194178,AAA Batteries (4-pack),1,2.99,04/12/19 10:44,"771 5th St, Los Angeles, CA 90001" +194178,Bose SoundSport Headphones,1,99.99,04/12/19 10:44,"771 5th St, Los Angeles, CA 90001" +194179,AA Batteries (4-pack),1,3.84,04/25/19 10:01,"881 9th St, Austin, TX 73301" +194180,27in 4K Gaming Monitor,1,389.99,04/23/19 19:47,"650 4th St, Los Angeles, CA 90001" +194181,34in Ultrawide Monitor,1,379.99,04/01/19 19:52,"923 Johnson St, San Francisco, CA 94016" +194182,AAA Batteries (4-pack),1,2.99,04/15/19 09:23,"310 Spruce St, Atlanta, GA 30301" +194183,27in FHD Monitor,1,149.99,04/13/19 15:29,"489 Pine St, Dallas, TX 75001" +194184,Apple Airpods Headphones,1,150,04/02/19 10:07,"765 Cedar St, New York City, NY 10001" +194185,Apple Airpods Headphones,1,150,04/11/19 16:35,"990 Dogwood St, New York City, NY 10001" +194186,Macbook Pro Laptop,1,1700,04/20/19 16:33,"138 Adams St, Boston, MA 02215" +194187,AAA Batteries (4-pack),2,2.99,04/19/19 12:09,"810 9th St, Austin, TX 73301" +194188,USB-C Charging Cable,1,11.95,04/29/19 21:50,"10 14th St, San Francisco, CA 94016" +194189,34in Ultrawide Monitor,1,379.99,04/17/19 15:16,"589 Hickory St, Atlanta, GA 30301" +194190,AAA Batteries (4-pack),1,2.99,04/07/19 22:51,"370 Lakeview St, Atlanta, GA 30301" +194191,AA Batteries (4-pack),1,3.84,04/02/19 09:06,"631 Cedar St, Portland, ME 04101" +194192,Macbook Pro Laptop,1,1700,04/02/19 10:26,"122 Dogwood St, New York City, NY 10001" +194193,Wired Headphones,1,11.99,04/05/19 15:23,"858 Ridge St, Austin, TX 73301" +194194,Wired Headphones,1,11.99,04/14/19 17:42,"335 Jefferson St, Seattle, WA 98101" +194195,Apple Airpods Headphones,1,150,04/11/19 10:03,"661 Spruce St, San Francisco, CA 94016" +194196,USB-C Charging Cable,1,11.95,04/23/19 12:54,"189 Spruce St, San Francisco, CA 94016" +194197,Google Phone,1,600,04/22/19 22:03,"290 Hickory St, San Francisco, CA 94016" +194198,AA Batteries (4-pack),1,3.84,04/09/19 10:31,"254 4th St, Portland, ME 04101" +194199,Apple Airpods Headphones,1,150,04/16/19 14:26,"905 Johnson St, Los Angeles, CA 90001" +194200,Wired Headphones,1,11.99,04/17/19 09:57,"697 Lincoln St, Los Angeles, CA 90001" +194201,27in FHD Monitor,1,149.99,04/16/19 15:26,"130 Center St, San Francisco, CA 94016" +194202,AAA Batteries (4-pack),3,2.99,04/20/19 12:50,"147 Center St, Boston, MA 02215" +194203,AA Batteries (4-pack),1,3.84,04/28/19 12:19,"720 5th St, Los Angeles, CA 90001" +194204,Wired Headphones,1,11.99,04/06/19 13:02,"867 4th St, Boston, MA 02215" +194205,Bose SoundSport Headphones,1,99.99,04/22/19 13:11,"947 4th St, Boston, MA 02215" +194206,Apple Airpods Headphones,1,150,04/06/19 15:51,"159 West St, San Francisco, CA 94016" +194207,AAA Batteries (4-pack),1,2.99,04/07/19 19:21,"613 13th St, San Francisco, CA 94016" +194208,AA Batteries (4-pack),3,3.84,04/24/19 10:15,"495 1st St, Los Angeles, CA 90001" +194208,AAA Batteries (4-pack),6,2.99,04/24/19 10:15,"495 1st St, Los Angeles, CA 90001" +194209,Lightning Charging Cable,1,14.95,04/30/19 17:00,"603 14th St, New York City, NY 10001" +194210,Flatscreen TV,1,300,04/28/19 10:18,"210 Washington St, Seattle, WA 98101" +,,,,, +194211,Wired Headphones,1,11.99,04/17/19 18:55,"368 1st St, San Francisco, CA 94016" +194212,iPhone,1,700,04/28/19 20:58,"871 10th St, New York City, NY 10001" +194213,27in 4K Gaming Monitor,1,389.99,04/23/19 18:15,"339 4th St, Dallas, TX 75001" +194214,Lightning Charging Cable,1,14.95,04/08/19 15:43,"243 River St, Dallas, TX 75001" +194215,Macbook Pro Laptop,1,1700,04/04/19 12:20,"223 14th St, New York City, NY 10001" +194216,AAA Batteries (4-pack),1,2.99,04/10/19 10:39,"632 11th St, Boston, MA 02215" +194217,34in Ultrawide Monitor,1,379.99,04/06/19 08:30,"443 Chestnut St, Los Angeles, CA 90001" +194218,USB-C Charging Cable,1,11.95,04/21/19 14:44,"446 South St, Los Angeles, CA 90001" +194219,34in Ultrawide Monitor,1,379.99,04/08/19 14:10,"468 Elm St, San Francisco, CA 94016" +194220,20in Monitor,1,109.99,04/08/19 17:49,"785 Lake St, Los Angeles, CA 90001" +194221,Wired Headphones,1,11.99,04/17/19 10:01,"31 Chestnut St, Atlanta, GA 30301" +194222,ThinkPad Laptop,1,999.99,04/13/19 18:01,"382 River St, New York City, NY 10001" +194223,Wired Headphones,1,11.99,04/01/19 14:38,"187 Wilson St, Los Angeles, CA 90001" +194224,Wired Headphones,1,11.99,04/25/19 16:47,"290 Highland St, Boston, MA 02215" +194225,20in Monitor,1,109.99,04/28/19 17:29,"29 8th St, Portland, OR 97035" +194226,27in FHD Monitor,1,149.99,04/01/19 09:24,"39 Lincoln St, New York City, NY 10001" +194227,Apple Airpods Headphones,1,150,04/30/19 20:16,"727 1st St, San Francisco, CA 94016" +194228,AAA Batteries (4-pack),3,2.99,04/14/19 21:38,"714 Jefferson St, Los Angeles, CA 90001" +194229,Bose SoundSport Headphones,2,99.99,04/28/19 18:51,"936 Walnut St, San Francisco, CA 94016" +194230,Apple Airpods Headphones,1,150,04/21/19 10:08,"84 Johnson St, Los Angeles, CA 90001" +194231,iPhone,1,700,04/01/19 20:33,"630 8th St, Boston, MA 02215" +194232,AA Batteries (4-pack),1,3.84,04/18/19 10:23,"131 Lincoln St, San Francisco, CA 94016" +194233,Wired Headphones,1,11.99,04/27/19 22:44,"806 9th St, San Francisco, CA 94016" +194234,AAA Batteries (4-pack),1,2.99,04/08/19 15:05,"580 7th St, Portland, OR 97035" +194235,AA Batteries (4-pack),2,3.84,04/21/19 10:51,"549 Church St, New York City, NY 10001" +194236,USB-C Charging Cable,1,11.95,04/08/19 17:24,"551 Forest St, Seattle, WA 98101" +194237,Apple Airpods Headphones,1,150,04/17/19 11:52,"790 Cedar St, Dallas, TX 75001" +194238,AAA Batteries (4-pack),1,2.99,04/19/19 12:45,"688 Hickory St, Seattle, WA 98101" +194239,Lightning Charging Cable,1,14.95,04/29/19 20:20,"495 2nd St, New York City, NY 10001" +194239,Wired Headphones,2,11.99,04/29/19 20:20,"495 2nd St, New York City, NY 10001" +194240,Apple Airpods Headphones,1,150,04/04/19 18:55,"94 Jackson St, New York City, NY 10001" +194241,Lightning Charging Cable,1,14.95,04/10/19 08:58,"289 9th St, Boston, MA 02215" +194242,USB-C Charging Cable,1,11.95,04/07/19 10:11,"16 Hickory St, Dallas, TX 75001" +194243,AA Batteries (4-pack),1,3.84,04/04/19 23:03,"666 Maple St, Atlanta, GA 30301" +194244,Wired Headphones,1,11.99,04/29/19 16:31,"534 Johnson St, Seattle, WA 98101" +194245,27in FHD Monitor,1,149.99,04/26/19 07:19,"762 1st St, Los Angeles, CA 90001" +194246,Macbook Pro Laptop,1,1700,04/08/19 13:45,"515 Cherry St, Portland, OR 97035" +194247,AA Batteries (4-pack),1,3.84,04/14/19 15:43,"203 14th St, Seattle, WA 98101" +194248,27in 4K Gaming Monitor,1,389.99,04/14/19 19:36,"764 Lakeview St, Seattle, WA 98101" +194249,Wired Headphones,1,11.99,04/05/19 16:55,"851 2nd St, New York City, NY 10001" +194250,AAA Batteries (4-pack),1,2.99,04/24/19 09:02,"594 North St, San Francisco, CA 94016" +194251,27in 4K Gaming Monitor,1,389.99,04/11/19 12:06,"26 River St, San Francisco, CA 94016" +194252,Flatscreen TV,1,300,04/14/19 23:24,"81 Meadow St, Los Angeles, CA 90001" +194253,Wired Headphones,1,11.99,04/10/19 12:38,"318 Sunset St, Dallas, TX 75001" +194254,Apple Airpods Headphones,1,150,04/21/19 15:11,"17 Walnut St, Boston, MA 02215" +194255,Apple Airpods Headphones,1,150,04/11/19 13:25,"120 2nd St, New York City, NY 10001" +194256,AAA Batteries (4-pack),2,2.99,04/28/19 12:41,"59 South St, Atlanta, GA 30301" +194257,Lightning Charging Cable,1,14.95,04/16/19 21:17,"711 Johnson St, Los Angeles, CA 90001" +194258,USB-C Charging Cable,1,11.95,04/07/19 20:02,"239 7th St, Portland, OR 97035" +194259,AA Batteries (4-pack),2,3.84,04/28/19 20:36,"668 7th St, New York City, NY 10001" +194260,AA Batteries (4-pack),2,3.84,04/04/19 14:39,"699 Church St, Los Angeles, CA 90001" +194261,AAA Batteries (4-pack),2,2.99,04/01/19 20:24,"265 4th St, New York City, NY 10001" +194262,AAA Batteries (4-pack),1,2.99,04/12/19 13:44,"989 Cedar St, Los Angeles, CA 90001" +194263,AA Batteries (4-pack),1,3.84,04/21/19 23:21,"229 Walnut St, New York City, NY 10001" +194263,AAA Batteries (4-pack),1,2.99,04/21/19 23:21,"229 Walnut St, New York City, NY 10001" +194264,Macbook Pro Laptop,1,1700,04/14/19 00:29,"615 Highland St, New York City, NY 10001" +194265,USB-C Charging Cable,2,11.95,04/30/19 19:27,"932 Maple St, New York City, NY 10001" +194266,AAA Batteries (4-pack),3,2.99,04/24/19 19:39,"506 South St, San Francisco, CA 94016" +,,,,, +194267,AA Batteries (4-pack),1,3.84,04/14/19 16:07,"920 Church St, Seattle, WA 98101" +194268,Apple Airpods Headphones,1,150,04/19/19 19:23,"866 Chestnut St, San Francisco, CA 94016" +194269,Google Phone,1,600,04/19/19 21:10,"415 South St, Portland, OR 97035" +194269,Wired Headphones,1,11.99,04/19/19 21:10,"415 South St, Portland, OR 97035" +194270,Wired Headphones,1,11.99,04/08/19 16:08,"69 13th St, Boston, MA 02215" +194271,AAA Batteries (4-pack),3,2.99,04/27/19 12:03,"209 Hickory St, Los Angeles, CA 90001" +194272,AAA Batteries (4-pack),1,2.99,04/30/19 00:22,"20 Meadow St, Seattle, WA 98101" +194273,34in Ultrawide Monitor,1,379.99,04/14/19 22:52,"491 South St, San Francisco, CA 94016" +194274,Apple Airpods Headphones,1,150,04/21/19 17:36,"800 Ridge St, Seattle, WA 98101" +194275,Lightning Charging Cable,1,14.95,04/10/19 16:15,"277 4th St, Seattle, WA 98101" +194276,AAA Batteries (4-pack),2,2.99,04/10/19 21:13,"128 5th St, San Francisco, CA 94016" +194276,AA Batteries (4-pack),1,3.84,04/10/19 21:13,"128 5th St, San Francisco, CA 94016" +194277,Wired Headphones,2,11.99,04/10/19 14:35,"666 Hickory St, Atlanta, GA 30301" +194278,AA Batteries (4-pack),1,3.84,04/17/19 19:19,"202 Willow St, Atlanta, GA 30301" +194279,Bose SoundSport Headphones,1,99.99,04/04/19 21:06,"521 Walnut St, Los Angeles, CA 90001" +194280,Lightning Charging Cable,1,14.95,04/23/19 18:28,"973 Jefferson St, San Francisco, CA 94016" +194281,AAA Batteries (4-pack),4,2.99,04/05/19 20:00,"68 5th St, New York City, NY 10001" +194282,27in FHD Monitor,1,149.99,04/10/19 14:17,"336 Forest St, Los Angeles, CA 90001" +194283,34in Ultrawide Monitor,1,379.99,04/26/19 20:36,"965 7th St, New York City, NY 10001" +194284,USB-C Charging Cable,2,11.95,04/01/19 18:20,"8 Center St, Dallas, TX 75001" +194285,Flatscreen TV,1,300,04/19/19 10:29,"314 River St, Boston, MA 02215" +194286,Wired Headphones,1,11.99,04/14/19 09:38,"840 West St, Los Angeles, CA 90001" +194287,ThinkPad Laptop,1,999.99,04/26/19 03:49,"479 10th St, New York City, NY 10001" +194288,Wired Headphones,1,11.99,04/03/19 02:49,"430 13th St, San Francisco, CA 94016" +194289,AAA Batteries (4-pack),2,2.99,04/26/19 08:54,"847 13th St, New York City, NY 10001" +194290,Lightning Charging Cable,1,14.95,04/29/19 15:41,"308 Lake St, Austin, TX 73301" +194291,27in FHD Monitor,1,149.99,04/01/19 10:13,"257 River St, Boston, MA 02215" +,,,,, +194292,Lightning Charging Cable,1,14.95,04/04/19 18:55,"900 Johnson St, Austin, TX 73301" +194293,Bose SoundSport Headphones,1,99.99,04/18/19 10:12,"623 Wilson St, Dallas, TX 75001" +194294,20in Monitor,1,109.99,04/04/19 08:17,"583 8th St, Seattle, WA 98101" +194295,Apple Airpods Headphones,1,150,04/12/19 15:05,"942 Hill St, Portland, OR 97035" +194296,27in 4K Gaming Monitor,1,389.99,04/22/19 18:07,"365 4th St, Boston, MA 02215" +194297,AAA Batteries (4-pack),1,2.99,04/03/19 20:55,"844 Church St, Los Angeles, CA 90001" +194298,AAA Batteries (4-pack),2,2.99,04/15/19 12:02,"553 6th St, Atlanta, GA 30301" +194299,Lightning Charging Cable,2,14.95,04/26/19 23:44,"863 River St, Seattle, WA 98101" +194300,Bose SoundSport Headphones,1,99.99,04/17/19 20:54,"31 Center St, Los Angeles, CA 90001" +194301,USB-C Charging Cable,1,11.95,04/01/19 19:05,"646 Church St, Dallas, TX 75001" +194302,27in 4K Gaming Monitor,1,389.99,04/18/19 21:44,"803 Main St, Portland, ME 04101" +194303,USB-C Charging Cable,1,11.95,04/15/19 11:34,"285 Ridge St, Seattle, WA 98101" +194303,34in Ultrawide Monitor,1,379.99,04/15/19 11:34,"285 Ridge St, Seattle, WA 98101" +194304,AA Batteries (4-pack),1,3.84,04/05/19 09:16,"48 West St, Los Angeles, CA 90001" +194305,Wired Headphones,1,11.99,04/24/19 07:06,"373 6th St, New York City, NY 10001" +194306,Lightning Charging Cable,2,14.95,04/17/19 06:48,"204 13th St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +194307,AAA Batteries (4-pack),1,2.99,04/19/19 16:32,"919 11th St, New York City, NY 10001" +194308,Apple Airpods Headphones,1,150,04/12/19 11:56,"402 14th St, Seattle, WA 98101" +194309,Flatscreen TV,1,300,04/12/19 16:32,"766 South St, San Francisco, CA 94016" +194310,AA Batteries (4-pack),1,3.84,04/14/19 20:06,"382 Lakeview St, Los Angeles, CA 90001" +194311,USB-C Charging Cable,1,11.95,04/12/19 02:04,"491 Jefferson St, San Francisco, CA 94016" +194312,Google Phone,1,600,04/29/19 11:27,"460 Lincoln St, Dallas, TX 75001" +194313,Wired Headphones,1,11.99,04/02/19 19:58,"384 13th St, San Francisco, CA 94016" +194314,Bose SoundSport Headphones,1,99.99,04/02/19 11:15,"563 Lake St, Dallas, TX 75001" +194315,Apple Airpods Headphones,1,150,04/29/19 18:29,"338 Johnson St, San Francisco, CA 94016" +194316,LG Dryer,1,600.0,04/05/19 18:33,"542 Jefferson St, Los Angeles, CA 90001" +194317,27in FHD Monitor,1,149.99,04/21/19 13:48,"234 Pine St, Los Angeles, CA 90001" +194318,Wired Headphones,1,11.99,04/17/19 02:11,"806 Walnut St, San Francisco, CA 94016" +194319,USB-C Charging Cable,1,11.95,04/19/19 22:53,"226 Chestnut St, Seattle, WA 98101" +194320,27in 4K Gaming Monitor,1,389.99,04/05/19 11:41,"991 6th St, San Francisco, CA 94016" +194321,USB-C Charging Cable,1,11.95,04/13/19 11:34,"114 Cherry St, Seattle, WA 98101" +194322,LG Dryer,1,600.0,04/06/19 01:03,"10 1st St, San Francisco, CA 94016" +194323,USB-C Charging Cable,1,11.95,04/15/19 08:27,"372 6th St, Los Angeles, CA 90001" +194324,Wired Headphones,1,11.99,04/18/19 20:28,"896 Madison St, San Francisco, CA 94016" +194325,USB-C Charging Cable,1,11.95,04/16/19 19:03,"655 Lincoln St, Los Angeles, CA 90001" +194326,Lightning Charging Cable,1,14.95,04/25/19 20:49,"594 Center St, Los Angeles, CA 90001" +194327,Bose SoundSport Headphones,1,99.99,04/09/19 07:22,"646 Chestnut St, Boston, MA 02215" +194328,Lightning Charging Cable,1,14.95,04/11/19 19:43,"879 Lakeview St, Los Angeles, CA 90001" +194329,USB-C Charging Cable,1,11.95,04/20/19 14:58,"204 Park St, Seattle, WA 98101" +194330,Wired Headphones,1,11.99,04/30/19 10:07,"567 Maple St, San Francisco, CA 94016" +194331,USB-C Charging Cable,1,11.95,04/14/19 20:16,"956 River St, New York City, NY 10001" +194332,27in FHD Monitor,1,149.99,04/13/19 22:39,"873 Pine St, San Francisco, CA 94016" +194333,Google Phone,1,600,04/13/19 12:46,"177 4th St, Los Angeles, CA 90001" +194334,AA Batteries (4-pack),1,3.84,04/06/19 08:44,"536 Center St, Los Angeles, CA 90001" +194335,34in Ultrawide Monitor,1,379.99,04/08/19 21:00,"751 Maple St, Atlanta, GA 30301" +194336,Lightning Charging Cable,1,14.95,04/09/19 13:57,"692 7th St, Los Angeles, CA 90001" +194337,Lightning Charging Cable,1,14.95,04/26/19 16:41,"924 North St, San Francisco, CA 94016" +194338,AAA Batteries (4-pack),1,2.99,04/03/19 20:12,"342 Highland St, Boston, MA 02215" +194339,27in 4K Gaming Monitor,1,389.99,04/12/19 16:11,"595 1st St, Austin, TX 73301" +194340,Google Phone,1,600,04/20/19 15:30,"969 Madison St, Seattle, WA 98101" +194341,Bose SoundSport Headphones,1,99.99,04/29/19 20:49,"574 Hickory St, Los Angeles, CA 90001" +194342,AA Batteries (4-pack),1,3.84,04/07/19 04:02,"913 Madison St, Boston, MA 02215" +194343,AA Batteries (4-pack),1,3.84,04/18/19 06:54,"332 Cherry St, San Francisco, CA 94016" +,,,,, +194344,AAA Batteries (4-pack),1,2.99,04/20/19 13:57,"256 Johnson St, Los Angeles, CA 90001" +194345,34in Ultrawide Monitor,1,379.99,04/14/19 17:57,"446 Johnson St, Dallas, TX 75001" +194346,Macbook Pro Laptop,1,1700,04/13/19 10:25,"857 Lakeview St, Boston, MA 02215" +194346,LG Dryer,1,600.0,04/13/19 10:25,"857 Lakeview St, Boston, MA 02215" +194347,27in 4K Gaming Monitor,1,389.99,04/03/19 16:53,"832 Ridge St, Boston, MA 02215" +194348,Lightning Charging Cable,1,14.95,04/02/19 15:07,"264 Jackson St, Portland, OR 97035" +194349,Apple Airpods Headphones,1,150,04/03/19 09:22,"356 Johnson St, Los Angeles, CA 90001" +194350,Google Phone,1,600,04/14/19 17:42,"574 Willow St, Los Angeles, CA 90001" +194351,iPhone,1,700,04/14/19 09:38,"643 9th St, Portland, OR 97035" +194352,AAA Batteries (4-pack),1,2.99,04/08/19 14:17,"290 14th St, Austin, TX 73301" +194353,USB-C Charging Cable,1,11.95,04/03/19 19:05,"772 South St, Los Angeles, CA 90001" +194354,27in FHD Monitor,1,149.99,04/05/19 18:22,"885 Lake St, Atlanta, GA 30301" +194355,27in FHD Monitor,1,149.99,04/27/19 19:44,"573 7th St, Dallas, TX 75001" +194356,Wired Headphones,1,11.99,04/04/19 21:23,"463 Maple St, Boston, MA 02215" +194356,AA Batteries (4-pack),1,3.84,04/04/19 21:23,"463 Maple St, Boston, MA 02215" +194357,AA Batteries (4-pack),1,3.84,04/11/19 08:50,"349 10th St, Los Angeles, CA 90001" +194358,34in Ultrawide Monitor,1,379.99,04/20/19 11:40,"772 Elm St, Los Angeles, CA 90001" +194359,Lightning Charging Cable,1,14.95,04/12/19 07:51,"154 Park St, San Francisco, CA 94016" +194359,Lightning Charging Cable,1,14.95,04/12/19 07:51,"154 Park St, San Francisco, CA 94016" +194360,USB-C Charging Cable,1,11.95,04/14/19 01:31,"660 Lincoln St, New York City, NY 10001" +194361,Bose SoundSport Headphones,1,99.99,04/17/19 18:03,"377 Cherry St, Los Angeles, CA 90001" +194362,34in Ultrawide Monitor,1,379.99,04/04/19 15:19,"481 Hickory St, San Francisco, CA 94016" +194363,AAA Batteries (4-pack),1,2.99,04/10/19 17:04,"344 14th St, New York City, NY 10001" +194364,Apple Airpods Headphones,1,150,04/22/19 17:26,"890 Center St, Dallas, TX 75001" +194365,AAA Batteries (4-pack),2,2.99,04/10/19 11:39,"911 Johnson St, San Francisco, CA 94016" +194366,AAA Batteries (4-pack),2,2.99,04/18/19 15:06,"300 Sunset St, Austin, TX 73301" +194367,iPhone,1,700,04/23/19 12:11,"998 Cherry St, Los Angeles, CA 90001" +194368,27in FHD Monitor,1,149.99,04/22/19 12:42,"115 Center St, San Francisco, CA 94016" +194369,Lightning Charging Cable,1,14.95,04/14/19 13:48,"985 Park St, Seattle, WA 98101" +194370,USB-C Charging Cable,1,11.95,04/30/19 12:36,"176 Lincoln St, Seattle, WA 98101" +194371,AA Batteries (4-pack),1,3.84,04/02/19 17:57,"431 5th St, Los Angeles, CA 90001" +194372,Apple Airpods Headphones,1,150,04/11/19 08:52,"12 8th St, Los Angeles, CA 90001" +194373,USB-C Charging Cable,1,11.95,04/02/19 11:51,"325 Madison St, San Francisco, CA 94016" +194374,20in Monitor,1,109.99,04/21/19 00:33,"789 West St, Atlanta, GA 30301" +194375,27in 4K Gaming Monitor,1,389.99,04/13/19 09:58,"124 Cedar St, Los Angeles, CA 90001" +194375,Lightning Charging Cable,1,14.95,04/13/19 09:58,"124 Cedar St, Los Angeles, CA 90001" +194376,Wired Headphones,1,11.99,04/01/19 09:01,"515 Lakeview St, Portland, ME 04101" +194377,Apple Airpods Headphones,1,150,04/25/19 10:18,"253 Lake St, Austin, TX 73301" +194378,Lightning Charging Cable,1,14.95,04/30/19 09:06,"193 Park St, Atlanta, GA 30301" +194379,iPhone,1,700,04/16/19 17:13,"89 Jackson St, Dallas, TX 75001" +194380,20in Monitor,1,109.99,04/29/19 21:02,"948 Cedar St, Atlanta, GA 30301" +194381,ThinkPad Laptop,1,999.99,04/19/19 17:43,"697 Park St, Los Angeles, CA 90001" +194382,Google Phone,1,600,04/04/19 18:05,"125 9th St, Dallas, TX 75001" +194383,AA Batteries (4-pack),1,3.84,04/14/19 10:26,"277 Church St, San Francisco, CA 94016" +194384,Apple Airpods Headphones,1,150,04/30/19 10:05,"669 Washington St, Boston, MA 02215" +194385,34in Ultrawide Monitor,1,379.99,04/04/19 23:14,"94 Cherry St, Los Angeles, CA 90001" +194386,Wired Headphones,1,11.99,04/15/19 13:20,"509 North St, Portland, OR 97035" +194387,Flatscreen TV,1,300,04/24/19 12:57,"202 Cherry St, Los Angeles, CA 90001" +194388,iPhone,1,700,04/21/19 11:01,"67 South St, New York City, NY 10001" +194389,AA Batteries (4-pack),1,3.84,04/23/19 22:50,"748 Lincoln St, Dallas, TX 75001" +194390,Lightning Charging Cable,1,14.95,04/29/19 23:04,"195 1st St, San Francisco, CA 94016" +194391,Google Phone,1,600,04/27/19 14:18,"422 Johnson St, Austin, TX 73301" +194391,USB-C Charging Cable,1,11.95,04/27/19 14:18,"422 Johnson St, Austin, TX 73301" +194392,27in FHD Monitor,1,149.99,04/28/19 11:37,"208 Madison St, Austin, TX 73301" +194393,Macbook Pro Laptop,1,1700,04/10/19 21:22,"958 6th St, Los Angeles, CA 90001" +194394,27in 4K Gaming Monitor,1,389.99,04/24/19 11:39,"140 Maple St, Atlanta, GA 30301" +194395,34in Ultrawide Monitor,1,379.99,04/16/19 12:20,"665 Madison St, Dallas, TX 75001" +194396,Apple Airpods Headphones,1,150,04/09/19 08:39,"730 14th St, Seattle, WA 98101" +194397,USB-C Charging Cable,1,11.95,04/19/19 01:39,"185 Ridge St, New York City, NY 10001" +194398,Apple Airpods Headphones,1,150,04/04/19 14:51,"646 West St, San Francisco, CA 94016" +194399,Apple Airpods Headphones,1,150,04/29/19 04:25,"810 Madison St, San Francisco, CA 94016" +194400,AA Batteries (4-pack),1,3.84,04/03/19 07:49,"839 Meadow St, Austin, TX 73301" +194401,AA Batteries (4-pack),1,3.84,04/25/19 06:16,"259 2nd St, Portland, ME 04101" +194402,USB-C Charging Cable,1,11.95,04/01/19 18:53,"612 Lake St, Atlanta, GA 30301" +194403,AA Batteries (4-pack),1,3.84,04/28/19 17:24,"69 Walnut St, Dallas, TX 75001" +194404,Google Phone,1,600,04/30/19 21:05,"415 Jefferson St, San Francisco, CA 94016" +194405,Wired Headphones,2,11.99,04/27/19 11:09,"450 Jefferson St, Dallas, TX 75001" +194406,Google Phone,1,600,04/01/19 15:48,"519 1st St, New York City, NY 10001" +194407,AAA Batteries (4-pack),1,2.99,04/30/19 05:41,"428 Meadow St, San Francisco, CA 94016" +194408,AA Batteries (4-pack),2,3.84,04/22/19 19:36,"280 Lake St, Dallas, TX 75001" +194409,Flatscreen TV,1,300,04/18/19 13:35,"312 Center St, New York City, NY 10001" +194410,iPhone,1,700,04/18/19 15:45,"540 Dogwood St, New York City, NY 10001" +194411,ThinkPad Laptop,1,999.99,04/25/19 10:11,"855 River St, San Francisco, CA 94016" +194412,AAA Batteries (4-pack),4,2.99,04/17/19 18:34,"188 River St, New York City, NY 10001" +194413,Bose SoundSport Headphones,1,99.99,04/26/19 10:21,"77 North St, San Francisco, CA 94016" +194414,USB-C Charging Cable,1,11.95,04/20/19 10:32,"343 Willow St, San Francisco, CA 94016" +194415,Bose SoundSport Headphones,1,99.99,04/30/19 15:39,"206 Dogwood St, Los Angeles, CA 90001" +194416,AAA Batteries (4-pack),1,2.99,04/02/19 13:20,"878 Forest St, Boston, MA 02215" +194417,Lightning Charging Cable,1,14.95,04/05/19 21:35,"200 13th St, Atlanta, GA 30301" +194418,Apple Airpods Headphones,1,150,04/23/19 11:51,"513 4th St, Boston, MA 02215" +194419,AAA Batteries (4-pack),1,2.99,04/13/19 18:35,"890 Washington St, San Francisco, CA 94016" +194420,USB-C Charging Cable,1,11.95,04/09/19 21:36,"888 12th St, Los Angeles, CA 90001" +194421,Apple Airpods Headphones,1,150,04/07/19 18:26,"569 9th St, San Francisco, CA 94016" +194422,Lightning Charging Cable,1,14.95,04/10/19 11:13,"641 Madison St, Atlanta, GA 30301" +194423,Lightning Charging Cable,1,14.95,04/19/19 23:49,"326 Cedar St, Dallas, TX 75001" +194424,Lightning Charging Cable,1,14.95,04/14/19 10:15,"615 Pine St, Dallas, TX 75001" +194425,USB-C Charging Cable,1,11.95,04/27/19 14:51,"311 Madison St, Austin, TX 73301" +194426,Apple Airpods Headphones,1,150,04/10/19 16:05,"910 Main St, Boston, MA 02215" +194427,iPhone,1,700,04/02/19 13:05,"534 14th St, Los Angeles, CA 90001" +194428,AAA Batteries (4-pack),1,2.99,04/12/19 09:38,"691 Cherry St, Portland, OR 97035" +194429,USB-C Charging Cable,1,11.95,04/05/19 15:10,"840 Johnson St, Atlanta, GA 30301" +194430,USB-C Charging Cable,1,11.95,04/29/19 11:20,"995 14th St, San Francisco, CA 94016" +194431,Lightning Charging Cable,1,14.95,04/12/19 11:09,"106 1st St, Dallas, TX 75001" +194432,USB-C Charging Cable,2,11.95,04/12/19 13:41,"220 Chestnut St, Boston, MA 02215" +194433,Lightning Charging Cable,1,14.95,04/24/19 23:44,"10 Park St, San Francisco, CA 94016" +194434,Wired Headphones,1,11.99,04/12/19 22:35,"841 14th St, San Francisco, CA 94016" +194435,Wired Headphones,1,11.99,04/21/19 13:41,"635 8th St, New York City, NY 10001" +194436,Bose SoundSport Headphones,1,99.99,04/09/19 16:03,"142 Highland St, New York City, NY 10001" +194437,Wired Headphones,1,11.99,04/02/19 10:52,"483 Forest St, Los Angeles, CA 90001" +194438,Apple Airpods Headphones,1,150,04/10/19 22:59,"433 Lake St, Boston, MA 02215" +194439,AA Batteries (4-pack),1,3.84,04/25/19 20:50,"458 Park St, Los Angeles, CA 90001" +194440,AA Batteries (4-pack),1,3.84,04/17/19 20:05,"645 Sunset St, Austin, TX 73301" +194441,AAA Batteries (4-pack),2,2.99,04/19/19 18:04,"7 9th St, Austin, TX 73301" +194442,ThinkPad Laptop,1,999.99,04/25/19 14:43,"634 Walnut St, San Francisco, CA 94016" +194443,27in 4K Gaming Monitor,1,389.99,04/01/19 10:32,"905 Madison St, Seattle, WA 98101" +194444,34in Ultrawide Monitor,1,379.99,04/18/19 15:24,"348 Washington St, Austin, TX 73301" +194445,34in Ultrawide Monitor,1,379.99,04/27/19 18:26,"292 Dogwood St, Boston, MA 02215" +194446,AAA Batteries (4-pack),2,2.99,04/17/19 15:27,"562 Main St, Dallas, TX 75001" +194447,Wired Headphones,1,11.99,04/13/19 12:23,"671 Washington St, San Francisco, CA 94016" +194448,Bose SoundSport Headphones,1,99.99,04/12/19 06:44,"337 Pine St, New York City, NY 10001" +194449,Wired Headphones,1,11.99,04/11/19 12:33,"726 Hill St, Los Angeles, CA 90001" +194450,AA Batteries (4-pack),1,3.84,04/08/19 15:12,"534 Lake St, New York City, NY 10001" +194451,AAA Batteries (4-pack),2,2.99,04/16/19 10:01,"926 Spruce St, Los Angeles, CA 90001" +194452,34in Ultrawide Monitor,1,379.99,04/16/19 00:35,"502 Jackson St, New York City, NY 10001" +194453,AAA Batteries (4-pack),1,2.99,04/17/19 23:36,"71 Pine St, Atlanta, GA 30301" +194454,AAA Batteries (4-pack),1,2.99,04/12/19 20:09,"488 12th St, Seattle, WA 98101" +194455,27in FHD Monitor,1,149.99,04/20/19 09:38,"557 Hill St, New York City, NY 10001" +194456,34in Ultrawide Monitor,1,379.99,04/04/19 04:14,"960 10th St, San Francisco, CA 94016" +194457,USB-C Charging Cable,1,11.95,04/21/19 08:35,"325 Park St, Portland, OR 97035" +194458,Google Phone,1,600,04/18/19 13:02,"333 2nd St, San Francisco, CA 94016" +194459,USB-C Charging Cable,1,11.95,04/06/19 13:35,"22 13th St, Boston, MA 02215" +194460,Lightning Charging Cable,1,14.95,04/01/19 14:22,"681 Cherry St, New York City, NY 10001" +194461,Wired Headphones,2,11.99,04/13/19 06:41,"844 Jefferson St, Dallas, TX 75001" +194462,AAA Batteries (4-pack),2,2.99,04/03/19 17:53,"548 Forest St, San Francisco, CA 94016" +194463,27in 4K Gaming Monitor,1,389.99,04/09/19 10:34,"66 12th St, Portland, OR 97035" +194464,Lightning Charging Cable,2,14.95,04/13/19 15:18,"363 1st St, New York City, NY 10001" +194465,Wired Headphones,1,11.99,04/15/19 13:19,"308 Elm St, San Francisco, CA 94016" +194466,Bose SoundSport Headphones,1,99.99,04/23/19 11:31,"154 Walnut St, Los Angeles, CA 90001" +194467,USB-C Charging Cable,1,11.95,04/12/19 16:09,"950 Wilson St, Dallas, TX 75001" +194468,Wired Headphones,1,11.99,04/07/19 21:44,"197 Church St, New York City, NY 10001" +194469,Google Phone,1,600,04/25/19 11:30,"195 Meadow St, Austin, TX 73301" +194469,USB-C Charging Cable,1,11.95,04/25/19 11:30,"195 Meadow St, Austin, TX 73301" +194470,34in Ultrawide Monitor,1,379.99,04/05/19 12:30,"770 Adams St, Portland, OR 97035" +194471,AA Batteries (4-pack),2,3.84,04/25/19 21:38,"424 8th St, San Francisco, CA 94016" +194472,Vareebadd Phone,1,400,04/21/19 21:18,"841 Meadow St, Seattle, WA 98101" +194472,USB-C Charging Cable,1,11.95,04/21/19 21:18,"841 Meadow St, Seattle, WA 98101" +194473,AAA Batteries (4-pack),1,2.99,04/10/19 14:58,"534 1st St, Seattle, WA 98101" +194474,AAA Batteries (4-pack),1,2.99,04/13/19 17:42,"178 Hickory St, San Francisco, CA 94016" +194475,Bose SoundSport Headphones,1,99.99,04/15/19 23:29,"865 Lincoln St, Austin, TX 73301" +194476,AA Batteries (4-pack),2,3.84,04/20/19 19:50,"935 Johnson St, Los Angeles, CA 90001" +194477,Apple Airpods Headphones,1,150,04/09/19 20:45,"766 Church St, San Francisco, CA 94016" +194478,Lightning Charging Cable,1,14.95,04/13/19 04:18,"186 7th St, Dallas, TX 75001" +194479,Flatscreen TV,1,300,04/26/19 19:51,"36 Hill St, San Francisco, CA 94016" +194480,Apple Airpods Headphones,1,150,04/30/19 14:13,"372 North St, Dallas, TX 75001" +194481,USB-C Charging Cable,1,11.95,04/16/19 22:31,"322 Lakeview St, Atlanta, GA 30301" +194482,AAA Batteries (4-pack),1,2.99,04/29/19 11:16,"793 7th St, Boston, MA 02215" +194483,iPhone,1,700,04/21/19 22:38,"865 Walnut St, Boston, MA 02215" +194484,20in Monitor,1,109.99,04/24/19 16:36,"212 Johnson St, Boston, MA 02215" +194485,Lightning Charging Cable,2,14.95,04/03/19 19:06,"983 Chestnut St, Seattle, WA 98101" +194486,AA Batteries (4-pack),2,3.84,04/04/19 16:05,"21 12th St, San Francisco, CA 94016" +194487,Macbook Pro Laptop,1,1700,04/16/19 12:25,"370 Cedar St, San Francisco, CA 94016" +194488,Wired Headphones,2,11.99,04/28/19 18:42,"819 Adams St, Los Angeles, CA 90001" +194489,AA Batteries (4-pack),1,3.84,04/28/19 13:28,"479 Forest St, New York City, NY 10001" +194490,20in Monitor,1,109.99,04/27/19 23:08,"809 Forest St, Dallas, TX 75001" +194491,Lightning Charging Cable,1,14.95,04/09/19 15:28,"425 North St, San Francisco, CA 94016" +194492,AA Batteries (4-pack),1,3.84,04/03/19 17:47,"466 Pine St, Boston, MA 02215" +194493,AA Batteries (4-pack),1,3.84,04/23/19 15:50,"31 Center St, San Francisco, CA 94016" +194494,27in FHD Monitor,1,149.99,04/13/19 18:22,"587 9th St, Boston, MA 02215" +194495,27in 4K Gaming Monitor,1,389.99,04/08/19 10:46,"497 South St, Los Angeles, CA 90001" +194496,Wired Headphones,1,11.99,04/27/19 18:45,"369 Chestnut St, Atlanta, GA 30301" +194497,AA Batteries (4-pack),1,3.84,04/23/19 23:59,"312 9th St, Atlanta, GA 30301" +194498,AA Batteries (4-pack),1,3.84,04/06/19 14:21,"216 Johnson St, Seattle, WA 98101" +194499,Bose SoundSport Headphones,1,99.99,04/05/19 15:18,"337 Ridge St, New York City, NY 10001" +194500,Lightning Charging Cable,1,14.95,04/11/19 05:19,"149 Spruce St, Portland, OR 97035" +194501,Lightning Charging Cable,1,14.95,04/03/19 20:06,"106 Sunset St, San Francisco, CA 94016" +194502,AAA Batteries (4-pack),2,2.99,04/21/19 13:29,"839 14th St, Boston, MA 02215" +194503,Apple Airpods Headphones,1,150,04/01/19 12:52,"608 Elm St, Austin, TX 73301" +194504,Wired Headphones,1,11.99,04/07/19 21:43,"22 Ridge St, San Francisco, CA 94016" +194505,USB-C Charging Cable,1,11.95,04/23/19 20:54,"548 Forest St, San Francisco, CA 94016" +194506,Apple Airpods Headphones,1,150,04/23/19 18:37,"742 4th St, San Francisco, CA 94016" +194507,AA Batteries (4-pack),1,3.84,04/23/19 21:12,"618 Hickory St, Boston, MA 02215" +194508,Lightning Charging Cable,1,14.95,04/08/19 13:56,"779 Lincoln St, San Francisco, CA 94016" +194509,Apple Airpods Headphones,1,150,04/18/19 15:45,"104 Maple St, Portland, OR 97035" +194510,Lightning Charging Cable,1,14.95,04/15/19 04:29,"3 Adams St, Boston, MA 02215" +194511,AA Batteries (4-pack),1,3.84,04/14/19 20:20,"901 Pine St, San Francisco, CA 94016" +194512,AA Batteries (4-pack),1,3.84,04/18/19 20:26,"353 Hill St, Atlanta, GA 30301" +194513,USB-C Charging Cable,1,11.95,04/24/19 14:30,"692 Washington St, Los Angeles, CA 90001" +194514,AA Batteries (4-pack),1,3.84,04/01/19 12:48,"862 Church St, Los Angeles, CA 90001" +194515,Lightning Charging Cable,1,14.95,04/08/19 15:41,"269 8th St, Los Angeles, CA 90001" +194515,34in Ultrawide Monitor,1,379.99,04/08/19 15:41,"269 8th St, Los Angeles, CA 90001" +194516,AA Batteries (4-pack),2,3.84,04/14/19 16:13,"334 Hickory St, Boston, MA 02215" +194517,Lightning Charging Cable,1,14.95,04/19/19 23:36,"308 10th St, Dallas, TX 75001" +194518,USB-C Charging Cable,1,11.95,04/28/19 15:26,"110 Meadow St, Los Angeles, CA 90001" +194519,Wired Headphones,1,11.99,04/19/19 10:46,"609 14th St, New York City, NY 10001" +194520,USB-C Charging Cable,1,11.95,04/09/19 21:59,"390 2nd St, Dallas, TX 75001" +194521,AAA Batteries (4-pack),1,2.99,04/11/19 10:19,"905 Willow St, San Francisco, CA 94016" +194522,Bose SoundSport Headphones,1,99.99,04/18/19 00:01,"382 Park St, New York City, NY 10001" +194523,Lightning Charging Cable,1,14.95,04/03/19 17:55,"199 Maple St, Atlanta, GA 30301" +194524,iPhone,1,700,04/30/19 11:02,"445 4th St, New York City, NY 10001" +194525,Macbook Pro Laptop,1,1700,04/16/19 22:32,"385 4th St, Atlanta, GA 30301" +194525,AA Batteries (4-pack),1,3.84,04/16/19 22:32,"385 4th St, Atlanta, GA 30301" +194526,Lightning Charging Cable,2,14.95,04/18/19 08:54,"386 1st St, Atlanta, GA 30301" +194527,AA Batteries (4-pack),2,3.84,04/28/19 06:03,"608 Sunset St, Portland, OR 97035" +194528,Vareebadd Phone,1,400,04/01/19 10:00,"177 2nd St, Dallas, TX 75001" +194528,Bose SoundSport Headphones,1,99.99,04/01/19 10:00,"177 2nd St, Dallas, TX 75001" +194529,Bose SoundSport Headphones,1,99.99,04/20/19 16:23,"968 11th St, San Francisco, CA 94016" +194530,Macbook Pro Laptop,1,1700,04/25/19 06:57,"547 14th St, San Francisco, CA 94016" +194531,Vareebadd Phone,1,400,04/18/19 09:40,"650 10th St, New York City, NY 10001" +194531,USB-C Charging Cable,1,11.95,04/18/19 09:40,"650 10th St, New York City, NY 10001" +194532,AAA Batteries (4-pack),1,2.99,04/25/19 12:20,"181 Walnut St, New York City, NY 10001" +194533,Macbook Pro Laptop,1,1700,04/01/19 19:54,"64 Cherry St, Atlanta, GA 30301" +194534,AA Batteries (4-pack),1,3.84,04/07/19 21:42,"69 Pine St, San Francisco, CA 94016" +194535,AA Batteries (4-pack),1,3.84,04/26/19 21:14,"358 9th St, New York City, NY 10001" +194536,Apple Airpods Headphones,1,150,04/11/19 18:57,"439 1st St, Atlanta, GA 30301" +194537,Lightning Charging Cable,1,14.95,04/06/19 13:02,"523 Adams St, Atlanta, GA 30301" +194538,iPhone,1,700,04/25/19 15:38,"366 Hickory St, Los Angeles, CA 90001" +194539,Apple Airpods Headphones,1,150,04/02/19 10:54,"795 Cherry St, San Francisco, CA 94016" +194540,Lightning Charging Cable,1,14.95,04/01/19 18:09,"443 Church St, Los Angeles, CA 90001" +194541,AA Batteries (4-pack),2,3.84,04/21/19 12:16,"681 Willow St, San Francisco, CA 94016" +194542,Apple Airpods Headphones,1,150,04/25/19 15:20,"533 Adams St, Boston, MA 02215" +194543,AA Batteries (4-pack),1,3.84,04/11/19 20:15,"387 Washington St, New York City, NY 10001" +194544,Macbook Pro Laptop,1,1700,04/22/19 21:24,"634 Elm St, Portland, OR 97035" +194545,Bose SoundSport Headphones,1,99.99,04/20/19 12:14,"729 Main St, San Francisco, CA 94016" +194546,Wired Headphones,1,11.99,04/28/19 09:57,"555 Johnson St, Austin, TX 73301" +194547,Google Phone,1,600,04/03/19 16:07,"395 9th St, Los Angeles, CA 90001" +194548,AA Batteries (4-pack),1,3.84,04/09/19 21:37,"977 Hill St, Dallas, TX 75001" +194549,Wired Headphones,1,11.99,04/17/19 14:34,"199 Hickory St, Dallas, TX 75001" +194550,27in 4K Gaming Monitor,1,389.99,04/04/19 14:28,"7 Hill St, New York City, NY 10001" +194551,Apple Airpods Headphones,1,150,04/22/19 11:44,"403 11th St, San Francisco, CA 94016" +194552,Google Phone,1,600,04/09/19 11:25,"103 Jefferson St, Seattle, WA 98101" +194553,Macbook Pro Laptop,1,1700,04/20/19 18:45,"429 Cherry St, San Francisco, CA 94016" +194554,AAA Batteries (4-pack),1,2.99,04/05/19 22:13,"609 Walnut St, San Francisco, CA 94016" +194555,AA Batteries (4-pack),1,3.84,04/22/19 10:03,"212 Jefferson St, San Francisco, CA 94016" +194556,iPhone,1,700,04/24/19 12:55,"830 11th St, Austin, TX 73301" +194557,20in Monitor,1,109.99,04/03/19 08:21,"332 Lakeview St, Seattle, WA 98101" +194558,AA Batteries (4-pack),2,3.84,04/14/19 10:15,"999 Sunset St, Los Angeles, CA 90001" +194559,Lightning Charging Cable,1,14.95,04/29/19 18:58,"506 Meadow St, San Francisco, CA 94016" +194560,Wired Headphones,1,11.99,04/23/19 21:23,"915 Lake St, Los Angeles, CA 90001" +194561,Apple Airpods Headphones,1,150,04/11/19 00:59,"302 Park St, Los Angeles, CA 90001" +194562,27in FHD Monitor,1,149.99,04/24/19 10:18,"749 Sunset St, Seattle, WA 98101" +194563,Wired Headphones,1,11.99,04/18/19 13:55,"172 Johnson St, Los Angeles, CA 90001" +194564,Lightning Charging Cable,1,14.95,04/04/19 12:28,"529 Maple St, Los Angeles, CA 90001" +194565,Lightning Charging Cable,1,14.95,04/15/19 14:55,"273 Lincoln St, Los Angeles, CA 90001" +194566,AA Batteries (4-pack),3,3.84,04/09/19 05:45,"68 Lake St, New York City, NY 10001" +194567,34in Ultrawide Monitor,1,379.99,04/05/19 18:19,"53 Park St, Portland, OR 97035" +194568,Wired Headphones,2,11.99,04/05/19 21:07,"513 6th St, Los Angeles, CA 90001" +194569,Apple Airpods Headphones,1,150,04/02/19 16:48,"876 6th St, San Francisco, CA 94016" +194570,AA Batteries (4-pack),1,3.84,04/15/19 23:54,"995 South St, New York City, NY 10001" +194571,Bose SoundSport Headphones,1,99.99,04/01/19 16:44,"162 12th St, Boston, MA 02215" +194572,Wired Headphones,1,11.99,04/22/19 14:41,"584 8th St, Los Angeles, CA 90001" +194573,Wired Headphones,1,11.99,04/27/19 12:27,"220 14th St, San Francisco, CA 94016" +194574,Lightning Charging Cable,1,14.95,04/16/19 02:15,"317 Forest St, New York City, NY 10001" +194575,Flatscreen TV,1,300,04/26/19 22:13,"444 Church St, Dallas, TX 75001" +194576,20in Monitor,1,109.99,04/21/19 18:40,"141 Forest St, San Francisco, CA 94016" +194577,Apple Airpods Headphones,1,150,04/25/19 08:31,"253 Hickory St, Seattle, WA 98101" +194578,Bose SoundSport Headphones,1,99.99,04/23/19 19:01,"677 Johnson St, Dallas, TX 75001" +194579,Bose SoundSport Headphones,1,99.99,04/24/19 18:21,"8 Wilson St, Seattle, WA 98101" +194580,USB-C Charging Cable,1,11.95,04/20/19 17:33,"896 Pine St, San Francisco, CA 94016" +194581,Lightning Charging Cable,1,14.95,04/07/19 18:17,"668 Meadow St, Los Angeles, CA 90001" +194582,27in FHD Monitor,1,149.99,04/23/19 11:21,"694 12th St, San Francisco, CA 94016" +194583,Wired Headphones,1,11.99,04/26/19 17:54,"742 Wilson St, Los Angeles, CA 90001" +194584,AA Batteries (4-pack),1,3.84,04/15/19 10:35,"286 Johnson St, San Francisco, CA 94016" +194585,Wired Headphones,1,11.99,04/02/19 13:46,"210 Lincoln St, Los Angeles, CA 90001" +194586,Bose SoundSport Headphones,1,99.99,04/17/19 18:45,"256 Wilson St, Dallas, TX 75001" +194587,AAA Batteries (4-pack),2,2.99,04/30/19 17:37,"213 Walnut St, San Francisco, CA 94016" +194588,Lightning Charging Cable,1,14.95,04/07/19 00:28,"349 Pine St, Los Angeles, CA 90001" +194589,iPhone,1,700,04/08/19 15:30,"456 Center St, Dallas, TX 75001" +194589,Wired Headphones,1,11.99,04/08/19 15:30,"456 Center St, Dallas, TX 75001" +194590,Wired Headphones,2,11.99,04/25/19 09:45,"985 Lake St, Los Angeles, CA 90001" +194591,USB-C Charging Cable,1,11.95,04/04/19 10:46,"964 Dogwood St, San Francisco, CA 94016" +194592,34in Ultrawide Monitor,1,379.99,04/26/19 16:49,"744 Park St, Boston, MA 02215" +194593,Wired Headphones,1,11.99,04/11/19 21:04,"871 Meadow St, Los Angeles, CA 90001" +194594,iPhone,1,700,04/27/19 12:55,"720 Adams St, San Francisco, CA 94016" +194594,Lightning Charging Cable,1,14.95,04/27/19 12:55,"720 Adams St, San Francisco, CA 94016" +194594,Wired Headphones,1,11.99,04/27/19 12:55,"720 Adams St, San Francisco, CA 94016" +194595,Wired Headphones,1,11.99,04/03/19 10:02,"874 Wilson St, Atlanta, GA 30301" +194596,Bose SoundSport Headphones,1,99.99,04/11/19 12:23,"123 13th St, New York City, NY 10001" +194597,AA Batteries (4-pack),2,3.84,04/01/19 21:54,"308 Dogwood St, Portland, OR 97035" +194598,Flatscreen TV,1,300,04/02/19 15:30,"553 Hill St, San Francisco, CA 94016" +194599,Lightning Charging Cable,1,14.95,04/11/19 11:19,"977 14th St, San Francisco, CA 94016" +194600,Lightning Charging Cable,1,14.95,04/12/19 21:35,"924 Washington St, Los Angeles, CA 90001" +194601,27in 4K Gaming Monitor,1,389.99,04/05/19 21:10,"717 Madison St, Los Angeles, CA 90001" +194602,AA Batteries (4-pack),1,3.84,04/24/19 02:07,"849 Highland St, Seattle, WA 98101" +194603,Lightning Charging Cable,1,14.95,04/07/19 14:43,"544 Jackson St, San Francisco, CA 94016" +194604,Lightning Charging Cable,1,14.95,04/09/19 22:37,"625 River St, Atlanta, GA 30301" +194605,Wired Headphones,1,11.99,04/26/19 22:36,"691 Wilson St, Portland, OR 97035" +194606,Apple Airpods Headphones,1,150,04/12/19 22:29,"57 West St, New York City, NY 10001" +194607,Wired Headphones,1,11.99,04/20/19 13:12,"445 8th St, New York City, NY 10001" +194608,AAA Batteries (4-pack),1,2.99,04/08/19 11:44,"307 Chestnut St, San Francisco, CA 94016" +194608,Flatscreen TV,1,300,04/08/19 11:44,"307 Chestnut St, San Francisco, CA 94016" +194609,27in 4K Gaming Monitor,1,389.99,04/15/19 20:26,"859 Adams St, San Francisco, CA 94016" +194610,AA Batteries (4-pack),2,3.84,04/03/19 20:41,"186 1st St, Austin, TX 73301" +194611,Flatscreen TV,1,300,04/09/19 11:33,"290 4th St, Dallas, TX 75001" +194612,Lightning Charging Cable,1,14.95,04/08/19 16:21,"833 Lincoln St, San Francisco, CA 94016" +194613,AA Batteries (4-pack),1,3.84,04/18/19 12:48,"457 Meadow St, Atlanta, GA 30301" +194614,20in Monitor,1,109.99,04/29/19 09:19,"62 8th St, Los Angeles, CA 90001" +194615,AA Batteries (4-pack),1,3.84,04/18/19 07:43,"784 Cedar St, San Francisco, CA 94016" +194616,Flatscreen TV,1,300,04/16/19 09:22,"895 Washington St, Los Angeles, CA 90001" +194617,Wired Headphones,1,11.99,04/27/19 12:03,"810 Wilson St, Atlanta, GA 30301" +194618,Apple Airpods Headphones,1,150,04/30/19 18:09,"37 Cedar St, Portland, ME 04101" +194619,34in Ultrawide Monitor,1,379.99,04/13/19 17:56,"638 Hill St, San Francisco, CA 94016" +194620,iPhone,1,700,04/18/19 13:49,"890 Cedar St, Boston, MA 02215" +194620,Lightning Charging Cable,1,14.95,04/18/19 13:49,"890 Cedar St, Boston, MA 02215" +194621,USB-C Charging Cable,1,11.95,04/12/19 18:20,"969 West St, San Francisco, CA 94016" +194622,USB-C Charging Cable,1,11.95,04/15/19 19:56,"929 Jefferson St, San Francisco, CA 94016" +194623,USB-C Charging Cable,1,11.95,04/07/19 22:51,"262 9th St, New York City, NY 10001" +194624,Wired Headphones,1,11.99,04/24/19 21:20,"40 4th St, Austin, TX 73301" +194625,AA Batteries (4-pack),1,3.84,04/12/19 03:47,"235 South St, Boston, MA 02215" +194626,AA Batteries (4-pack),1,3.84,04/23/19 06:38,"949 Jefferson St, Los Angeles, CA 90001" +194627,27in FHD Monitor,1,149.99,04/12/19 23:29,"668 8th St, San Francisco, CA 94016" +194628,27in FHD Monitor,1,149.99,04/28/19 11:51,"216 Lake St, Austin, TX 73301" +194629,Lightning Charging Cable,1,14.95,04/28/19 16:34,"680 4th St, New York City, NY 10001" +194630,Macbook Pro Laptop,1,1700,04/21/19 22:26,"386 Maple St, San Francisco, CA 94016" +194631,34in Ultrawide Monitor,1,379.99,04/04/19 10:50,"154 6th St, New York City, NY 10001" +194632,iPhone,1,700,04/07/19 10:38,"81 Lakeview St, San Francisco, CA 94016" +194633,Wired Headphones,1,11.99,04/03/19 15:33,"186 2nd St, Los Angeles, CA 90001" +194634,Lightning Charging Cable,1,14.95,04/19/19 13:35,"918 Spruce St, San Francisco, CA 94016" +194635,27in FHD Monitor,1,149.99,04/09/19 12:28,"868 Forest St, Los Angeles, CA 90001" +194636,USB-C Charging Cable,1,11.95,04/30/19 12:08,"845 Spruce St, Boston, MA 02215" +194637,Apple Airpods Headphones,1,150,04/30/19 12:52,"821 River St, Austin, TX 73301" +194638,Wired Headphones,1,11.99,04/02/19 11:05,"534 Pine St, Dallas, TX 75001" +194639,Lightning Charging Cable,1,14.95,04/18/19 00:40,"356 Washington St, Portland, ME 04101" +194640,Apple Airpods Headphones,1,150,04/25/19 08:38,"963 10th St, San Francisco, CA 94016" +194641,Lightning Charging Cable,1,14.95,04/30/19 17:22,"142 Hickory St, San Francisco, CA 94016" +194642,34in Ultrawide Monitor,1,379.99,04/23/19 10:47,"374 13th St, San Francisco, CA 94016" +194643,27in FHD Monitor,1,149.99,04/06/19 08:27,"292 Cedar St, Atlanta, GA 30301" +194644,Bose SoundSport Headphones,1,99.99,04/19/19 10:48,"185 5th St, San Francisco, CA 94016" +194644,27in FHD Monitor,1,149.99,04/19/19 10:48,"185 5th St, San Francisco, CA 94016" +194645,AAA Batteries (4-pack),1,2.99,04/02/19 15:26,"624 South St, Atlanta, GA 30301" +194646,AAA Batteries (4-pack),1,2.99,04/12/19 18:44,"905 8th St, Seattle, WA 98101" +194647,AA Batteries (4-pack),1,3.84,04/08/19 15:02,"137 12th St, Boston, MA 02215" +194648,Apple Airpods Headphones,1,150,04/13/19 17:24,"51 Chestnut St, Los Angeles, CA 90001" +194649,USB-C Charging Cable,1,11.95,04/01/19 18:04,"711 North St, Boston, MA 02215" +194650,USB-C Charging Cable,1,11.95,04/17/19 20:20,"407 Willow St, New York City, NY 10001" +194651,USB-C Charging Cable,1,11.95,04/25/19 20:26,"245 Washington St, San Francisco, CA 94016" +194652,Bose SoundSport Headphones,1,99.99,04/21/19 20:08,"219 West St, Dallas, TX 75001" +194653,27in 4K Gaming Monitor,1,389.99,04/15/19 12:46,"494 Adams St, New York City, NY 10001" +194654,AAA Batteries (4-pack),1,2.99,04/18/19 15:46,"70 Dogwood St, Seattle, WA 98101" +194655,Lightning Charging Cable,1,14.95,04/30/19 22:39,"90 Hickory St, Boston, MA 02215" +194656,USB-C Charging Cable,1,11.95,04/29/19 11:30,"234 13th St, Los Angeles, CA 90001" +194657,AAA Batteries (4-pack),2,2.99,04/01/19 18:30,"36 8th St, San Francisco, CA 94016" +194658,AA Batteries (4-pack),1,3.84,04/04/19 08:40,"201 4th St, Boston, MA 02215" +194659,AA Batteries (4-pack),1,3.84,04/04/19 16:44,"381 Walnut St, Dallas, TX 75001" +194660,Lightning Charging Cable,1,14.95,04/20/19 22:18,"861 9th St, Los Angeles, CA 90001" +194661,Vareebadd Phone,1,400,04/06/19 21:54,"336 West St, San Francisco, CA 94016" +194662,27in 4K Gaming Monitor,1,389.99,04/17/19 10:29,"645 Jefferson St, Austin, TX 73301" +194663,27in FHD Monitor,1,149.99,04/24/19 23:55,"127 Cedar St, New York City, NY 10001" +194664,AA Batteries (4-pack),1,3.84,04/30/19 11:25,"608 River St, Portland, OR 97035" +194665,20in Monitor,1,109.99,04/17/19 01:21,"141 Cherry St, New York City, NY 10001" +194666,Lightning Charging Cable,2,14.95,04/05/19 11:43,"173 Chestnut St, Seattle, WA 98101" +194667,USB-C Charging Cable,1,11.95,04/07/19 19:47,"126 5th St, Los Angeles, CA 90001" +194668,USB-C Charging Cable,1,11.95,04/22/19 21:01,"871 Maple St, Portland, OR 97035" +194669,Bose SoundSport Headphones,1,99.99,04/04/19 20:02,"137 7th St, Los Angeles, CA 90001" +194670,Vareebadd Phone,1,400,04/14/19 10:45,"977 Madison St, San Francisco, CA 94016" +194671,Vareebadd Phone,1,400,04/03/19 00:27,"245 1st St, Austin, TX 73301" +194671,Bose SoundSport Headphones,1,99.99,04/03/19 00:27,"245 1st St, Austin, TX 73301" +194671,Wired Headphones,1,11.99,04/03/19 00:27,"245 1st St, Austin, TX 73301" +194672,27in 4K Gaming Monitor,1,389.99,04/23/19 21:18,"388 Maple St, San Francisco, CA 94016" +194673,AAA Batteries (4-pack),1,2.99,04/27/19 22:12,"516 Church St, Dallas, TX 75001" +194673,Apple Airpods Headphones,1,150,04/27/19 22:12,"516 Church St, Dallas, TX 75001" +194674,Flatscreen TV,1,300,04/22/19 11:59,"256 Lincoln St, New York City, NY 10001" +194675,Bose SoundSport Headphones,1,99.99,04/19/19 02:11,"505 Jefferson St, Boston, MA 02215" +194676,Apple Airpods Headphones,1,150,04/17/19 23:12,"928 Highland St, Seattle, WA 98101" +194677,27in FHD Monitor,1,149.99,04/03/19 20:01,"350 12th St, Dallas, TX 75001" +194678,Google Phone,1,600,04/10/19 16:33,"768 North St, Los Angeles, CA 90001" +194679,iPhone,1,700,04/24/19 11:42,"312 Church St, Dallas, TX 75001" +194679,Lightning Charging Cable,1,14.95,04/24/19 11:42,"312 Church St, Dallas, TX 75001" +194679,Wired Headphones,1,11.99,04/24/19 11:42,"312 Church St, Dallas, TX 75001" +194680,iPhone,1,700,04/16/19 20:12,"887 West St, Dallas, TX 75001" +194681,USB-C Charging Cable,1,11.95,04/08/19 18:33,"704 Park St, New York City, NY 10001" +194682,USB-C Charging Cable,1,11.95,04/23/19 22:32,"858 Cherry St, Austin, TX 73301" +,,,,, +194683,AAA Batteries (4-pack),1,2.99,04/25/19 11:58,"468 Chestnut St, Portland, OR 97035" +194684,AAA Batteries (4-pack),1,2.99,04/19/19 16:34,"250 South St, New York City, NY 10001" +194685,Apple Airpods Headphones,1,150,04/17/19 14:02,"947 Dogwood St, Boston, MA 02215" +194686,Wired Headphones,1,11.99,04/19/19 13:52,"19 Chestnut St, San Francisco, CA 94016" +194687,Apple Airpods Headphones,1,150,04/15/19 13:27,"801 Adams St, Seattle, WA 98101" +194688,AAA Batteries (4-pack),1,2.99,04/15/19 17:19,"333 Meadow St, San Francisco, CA 94016" +194689,USB-C Charging Cable,1,11.95,04/06/19 10:15,"652 Maple St, Dallas, TX 75001" +194690,34in Ultrawide Monitor,1,379.99,04/06/19 22:07,"968 13th St, Austin, TX 73301" +194691,USB-C Charging Cable,1,11.95,04/19/19 10:01,"255 12th St, Dallas, TX 75001" +194692,AA Batteries (4-pack),1,3.84,04/24/19 16:10,"887 1st St, Austin, TX 73301" +194693,27in 4K Gaming Monitor,1,389.99,04/18/19 19:48,"321 Spruce St, Atlanta, GA 30301" +194694,Lightning Charging Cable,1,14.95,04/17/19 02:42,"764 Chestnut St, Boston, MA 02215" +194695,Apple Airpods Headphones,1,150,04/28/19 23:48,"902 Wilson St, Boston, MA 02215" +194696,Lightning Charging Cable,1,14.95,04/18/19 16:17,"423 Main St, San Francisco, CA 94016" +194697,AAA Batteries (4-pack),2,2.99,04/25/19 18:03,"311 Cherry St, New York City, NY 10001" +194698,Bose SoundSport Headphones,1,99.99,04/03/19 22:39,"593 Lake St, Los Angeles, CA 90001" +194699,AA Batteries (4-pack),2,3.84,04/29/19 00:16,"445 Sunset St, Atlanta, GA 30301" +194700,iPhone,1,700,04/06/19 15:37,"885 2nd St, Austin, TX 73301" +194701,34in Ultrawide Monitor,1,379.99,04/25/19 15:18,"971 5th St, New York City, NY 10001" +194702,27in FHD Monitor,1,149.99,04/28/19 22:07,"489 Spruce St, Dallas, TX 75001" +194703,27in FHD Monitor,1,149.99,04/27/19 16:19,"373 2nd St, Los Angeles, CA 90001" +194704,Lightning Charging Cable,1,14.95,04/03/19 00:52,"338 12th St, Austin, TX 73301" +194705,Wired Headphones,1,11.99,04/13/19 17:16,"515 8th St, Austin, TX 73301" +194706,ThinkPad Laptop,1,999.99,04/17/19 17:00,"78 Wilson St, Los Angeles, CA 90001" +194707,iPhone,1,700,04/22/19 12:36,"488 6th St, Atlanta, GA 30301" +194708,Macbook Pro Laptop,1,1700,04/04/19 19:07,"354 Ridge St, New York City, NY 10001" +194708,Wired Headphones,1,11.99,04/04/19 19:07,"354 Ridge St, New York City, NY 10001" +194709,Google Phone,1,600,04/27/19 06:49,"864 Adams St, San Francisco, CA 94016" +194710,Lightning Charging Cable,1,14.95,04/17/19 13:24,"315 Dogwood St, New York City, NY 10001" +194711,iPhone,1,700,04/27/19 23:12,"610 1st St, New York City, NY 10001" +194712,AAA Batteries (4-pack),1,2.99,04/18/19 18:03,"583 Lincoln St, Austin, TX 73301" +194713,AA Batteries (4-pack),1,3.84,04/13/19 06:42,"406 Cedar St, Seattle, WA 98101" +194714,Wired Headphones,1,11.99,04/20/19 13:05,"143 Lake St, San Francisco, CA 94016" +194715,AA Batteries (4-pack),2,3.84,04/23/19 10:53,"890 11th St, New York City, NY 10001" +194716,Wired Headphones,1,11.99,04/01/19 22:01,"491 North St, San Francisco, CA 94016" +194717,AAA Batteries (4-pack),1,2.99,04/27/19 21:07,"526 Washington St, San Francisco, CA 94016" +194718,27in FHD Monitor,1,149.99,04/23/19 08:41,"114 River St, San Francisco, CA 94016" +194719,iPhone,1,700,04/28/19 00:05,"700 Sunset St, New York City, NY 10001" +194719,Lightning Charging Cable,1,14.95,04/28/19 00:05,"700 Sunset St, New York City, NY 10001" +194720,Bose SoundSport Headphones,1,99.99,04/24/19 10:09,"665 6th St, New York City, NY 10001" +194721,Bose SoundSport Headphones,1,99.99,04/18/19 09:31,"892 7th St, Austin, TX 73301" +194722,34in Ultrawide Monitor,1,379.99,04/21/19 17:56,"625 Forest St, Los Angeles, CA 90001" +194723,34in Ultrawide Monitor,1,379.99,04/19/19 09:00,"434 Hickory St, San Francisco, CA 94016" +194724,AAA Batteries (4-pack),2,2.99,04/12/19 09:07,"889 7th St, Seattle, WA 98101" +194725,Wired Headphones,2,11.99,04/24/19 19:58,"927 River St, New York City, NY 10001" +194726,Apple Airpods Headphones,1,150,04/27/19 11:58,"891 Jackson St, San Francisco, CA 94016" +194727,Google Phone,1,600,04/03/19 14:01,"966 Pine St, Portland, OR 97035" +194728,27in FHD Monitor,1,149.99,04/21/19 13:51,"69 Center St, Dallas, TX 75001" +194729,Wired Headphones,1,11.99,04/13/19 20:51,"26 Chestnut St, New York City, NY 10001" +194730,AAA Batteries (4-pack),1,2.99,04/02/19 09:41,"277 Hill St, New York City, NY 10001" +194731,AAA Batteries (4-pack),1,2.99,04/10/19 20:24,"222 7th St, San Francisco, CA 94016" +194732,AA Batteries (4-pack),1,3.84,04/02/19 21:57,"987 Madison St, Los Angeles, CA 90001" +194733,AAA Batteries (4-pack),1,2.99,04/18/19 08:54,"953 Dogwood St, Austin, TX 73301" +194734,Bose SoundSport Headphones,1,99.99,04/02/19 01:45,"464 Elm St, Atlanta, GA 30301" +194735,Wired Headphones,1,11.99,04/20/19 20:43,"204 Washington St, Seattle, WA 98101" +194736,iPhone,1,700,04/06/19 16:42,"304 Pine St, Atlanta, GA 30301" +194737,Apple Airpods Headphones,1,150,04/13/19 22:02,"557 2nd St, Los Angeles, CA 90001" +194738,27in FHD Monitor,1,149.99,04/25/19 08:01,"584 7th St, Los Angeles, CA 90001" +194739,Wired Headphones,1,11.99,04/29/19 16:55,"48 Walnut St, Atlanta, GA 30301" +194740,AAA Batteries (4-pack),1,2.99,04/17/19 21:58,"374 2nd St, San Francisco, CA 94016" +194741,USB-C Charging Cable,1,11.95,04/01/19 14:52,"224 Washington St, San Francisco, CA 94016" +194742,AAA Batteries (4-pack),2,2.99,04/23/19 13:51,"677 Dogwood St, New York City, NY 10001" +194743,Flatscreen TV,1,300,04/27/19 09:25,"369 Dogwood St, San Francisco, CA 94016" +194744,27in FHD Monitor,1,149.99,04/18/19 17:04,"450 9th St, Seattle, WA 98101" +194745,ThinkPad Laptop,1,999.99,04/27/19 11:55,"358 Forest St, Atlanta, GA 30301" +194746,Bose SoundSport Headphones,1,99.99,04/19/19 16:20,"147 Lake St, Seattle, WA 98101" +194747,Wired Headphones,1,11.99,04/12/19 01:13,"374 Washington St, New York City, NY 10001" +194748,Apple Airpods Headphones,1,150,04/14/19 10:24,"605 2nd St, Portland, OR 97035" +194749,27in 4K Gaming Monitor,1,389.99,04/14/19 20:38,"288 Jackson St, Los Angeles, CA 90001" +194750,Vareebadd Phone,1,400,04/28/19 09:10,"771 1st St, San Francisco, CA 94016" +194750,USB-C Charging Cable,1,11.95,04/28/19 09:10,"771 1st St, San Francisco, CA 94016" +194751,AAA Batteries (4-pack),1,2.99,04/13/19 11:18,"589 Adams St, Los Angeles, CA 90001" +194752,Apple Airpods Headphones,1,150,04/17/19 19:07,"275 Jackson St, San Francisco, CA 94016" +194753,Apple Airpods Headphones,1,150,04/04/19 21:33,"292 14th St, Austin, TX 73301" +194753,AAA Batteries (4-pack),2,2.99,04/04/19 21:33,"292 14th St, Austin, TX 73301" +194754,Bose SoundSport Headphones,1,99.99,04/03/19 15:40,"885 Cherry St, Dallas, TX 75001" +194755,Wired Headphones,1,11.99,04/11/19 00:38,"357 Highland St, San Francisco, CA 94016" +194756,Vareebadd Phone,1,400,04/14/19 16:07,"68 Willow St, San Francisco, CA 94016" +194756,AA Batteries (4-pack),1,3.84,04/14/19 16:07,"68 Willow St, San Francisco, CA 94016" +194757,AA Batteries (4-pack),1,3.84,04/13/19 23:40,"748 Dogwood St, Austin, TX 73301" +194758,27in FHD Monitor,1,149.99,04/28/19 08:31,"686 Meadow St, Los Angeles, CA 90001" +194759,Macbook Pro Laptop,1,1700,04/11/19 17:35,"189 13th St, Portland, ME 04101" +194760,Lightning Charging Cable,1,14.95,04/27/19 10:50,"454 6th St, San Francisco, CA 94016" +194761,Lightning Charging Cable,1,14.95,04/07/19 15:14,"578 Spruce St, Boston, MA 02215" +194762,AA Batteries (4-pack),2,3.84,04/21/19 13:55,"938 Ridge St, Atlanta, GA 30301" +194763,AA Batteries (4-pack),2,3.84,04/30/19 18:10,"49 Lakeview St, San Francisco, CA 94016" +194764,AAA Batteries (4-pack),2,2.99,04/27/19 12:59,"741 Adams St, San Francisco, CA 94016" +194764,20in Monitor,1,109.99,04/27/19 12:59,"741 Adams St, San Francisco, CA 94016" +194765,AAA Batteries (4-pack),1,2.99,04/24/19 18:52,"881 Jackson St, Los Angeles, CA 90001" +194766,Bose SoundSport Headphones,1,99.99,04/26/19 20:43,"4 Sunset St, Dallas, TX 75001" +194767,Lightning Charging Cable,1,14.95,04/02/19 11:56,"254 Lincoln St, San Francisco, CA 94016" +194768,iPhone,1,700,04/11/19 13:42,"614 Jefferson St, Los Angeles, CA 90001" +194769,Macbook Pro Laptop,1,1700,04/07/19 17:46,"811 Park St, San Francisco, CA 94016" +194769,Flatscreen TV,1,300,04/07/19 17:46,"811 Park St, San Francisco, CA 94016" +194770,Bose SoundSport Headphones,1,99.99,04/29/19 17:19,"978 River St, Los Angeles, CA 90001" +194771,Google Phone,1,600,04/27/19 15:34,"676 Forest St, Los Angeles, CA 90001" +194772,AA Batteries (4-pack),3,3.84,04/21/19 23:45,"142 1st St, Los Angeles, CA 90001" +194773,27in 4K Gaming Monitor,1,389.99,04/26/19 12:46,"917 11th St, Los Angeles, CA 90001" +194774,Wired Headphones,1,11.99,04/26/19 10:17,"599 Washington St, Portland, OR 97035" +194775,Vareebadd Phone,1,400,04/20/19 10:21,"459 10th St, Portland, ME 04101" +194775,Wired Headphones,1,11.99,04/20/19 10:21,"459 10th St, Portland, ME 04101" +194776,Apple Airpods Headphones,1,150,04/18/19 16:04,"649 Jackson St, Boston, MA 02215" +194777,34in Ultrawide Monitor,1,379.99,04/01/19 22:37,"33 7th St, New York City, NY 10001" +194778,USB-C Charging Cable,2,11.95,04/30/19 12:26,"757 7th St, Boston, MA 02215" +194779,Wired Headphones,1,11.99,04/13/19 16:42,"795 North St, New York City, NY 10001" +194780,AA Batteries (4-pack),3,3.84,04/07/19 11:22,"389 Cedar St, Los Angeles, CA 90001" +194781,Wired Headphones,1,11.99,04/11/19 09:49,"940 7th St, Los Angeles, CA 90001" +194782,Bose SoundSport Headphones,1,99.99,04/06/19 15:11,"281 Adams St, Boston, MA 02215" +194783,USB-C Charging Cable,1,11.95,04/27/19 23:49,"457 Forest St, New York City, NY 10001" +194784,AAA Batteries (4-pack),3,2.99,04/18/19 00:09,"543 Spruce St, Dallas, TX 75001" +194785,Wired Headphones,1,11.99,04/08/19 09:15,"607 Highland St, Atlanta, GA 30301" +194786,Apple Airpods Headphones,1,150,04/22/19 14:33,"333 Wilson St, Los Angeles, CA 90001" +194787,20in Monitor,1,109.99,04/07/19 09:59,"118 Center St, San Francisco, CA 94016" +194788,Flatscreen TV,1,300,04/14/19 14:11,"180 Forest St, Atlanta, GA 30301" +194789,27in 4K Gaming Monitor,1,389.99,04/27/19 14:46,"940 Wilson St, Portland, ME 04101" +194790,Google Phone,1,600,04/04/19 13:22,"261 Highland St, Dallas, TX 75001" +194790,Bose SoundSport Headphones,1,99.99,04/04/19 13:22,"261 Highland St, Dallas, TX 75001" +194791,AA Batteries (4-pack),1,3.84,04/03/19 16:27,"386 2nd St, Seattle, WA 98101" +194792,USB-C Charging Cable,1,11.95,04/27/19 01:23,"962 Cherry St, Boston, MA 02215" +194793,USB-C Charging Cable,1,11.95,04/09/19 13:24,"383 River St, Seattle, WA 98101" +194794,AA Batteries (4-pack),1,3.84,04/16/19 14:46,"906 Hill St, Boston, MA 02215" +194795,Apple Airpods Headphones,1,150,04/09/19 17:23,"683 Elm St, Boston, MA 02215" +194796,Apple Airpods Headphones,1,150,04/06/19 14:33,"205 Hickory St, Boston, MA 02215" +194796,34in Ultrawide Monitor,1,379.99,04/06/19 14:33,"205 Hickory St, Boston, MA 02215" +194797,AAA Batteries (4-pack),1,2.99,04/05/19 14:42,"830 13th St, New York City, NY 10001" +194798,USB-C Charging Cable,1,11.95,04/02/19 19:03,"304 Ridge St, Seattle, WA 98101" +194799,Wired Headphones,1,11.99,04/26/19 17:22,"877 Willow St, Seattle, WA 98101" +194800,iPhone,1,700,04/29/19 15:24,"987 South St, Portland, OR 97035" +194801,Google Phone,1,600,04/07/19 15:53,"870 Madison St, Boston, MA 02215" +194801,USB-C Charging Cable,2,11.95,04/07/19 15:53,"870 Madison St, Boston, MA 02215" +194801,Wired Headphones,1,11.99,04/07/19 15:53,"870 Madison St, Boston, MA 02215" +194802,Apple Airpods Headphones,1,150,04/17/19 14:30,"133 Maple St, Portland, OR 97035" +194803,AAA Batteries (4-pack),1,2.99,04/11/19 18:01,"97 Meadow St, Portland, OR 97035" +194804,USB-C Charging Cable,1,11.95,04/07/19 22:34,"155 River St, Dallas, TX 75001" +194805,USB-C Charging Cable,1,11.95,04/21/19 20:09,"884 Highland St, San Francisco, CA 94016" +194806,AA Batteries (4-pack),1,3.84,04/18/19 20:20,"856 West St, Los Angeles, CA 90001" +194807,Wired Headphones,1,11.99,04/10/19 16:12,"333 9th St, Dallas, TX 75001" +194808,AA Batteries (4-pack),1,3.84,04/17/19 10:55,"256 4th St, Los Angeles, CA 90001" +194809,AA Batteries (4-pack),1,3.84,04/14/19 03:08,"321 Dogwood St, New York City, NY 10001" +194810,AAA Batteries (4-pack),1,2.99,04/03/19 18:28,"235 Meadow St, New York City, NY 10001" +194811,27in FHD Monitor,1,149.99,04/25/19 08:45,"33 Ridge St, Los Angeles, CA 90001" +194812,34in Ultrawide Monitor,1,379.99,04/01/19 17:46,"273 Lake St, Dallas, TX 75001" +194813,AA Batteries (4-pack),2,3.84,04/22/19 15:46,"597 Center St, Atlanta, GA 30301" +194814,AA Batteries (4-pack),1,3.84,04/09/19 23:41,"43 10th St, San Francisco, CA 94016" +194815,Wired Headphones,1,11.99,04/27/19 20:48,"764 5th St, San Francisco, CA 94016" +194816,27in 4K Gaming Monitor,1,389.99,04/09/19 13:47,"875 River St, Dallas, TX 75001" +194817,Apple Airpods Headphones,1,150,04/24/19 15:22,"518 Jackson St, Portland, OR 97035" +194818,Wired Headphones,1,11.99,04/04/19 15:59,"210 2nd St, Portland, OR 97035" +194819,27in FHD Monitor,1,149.99,04/04/19 12:34,"8 West St, Seattle, WA 98101" +194820,Bose SoundSport Headphones,1,99.99,04/25/19 20:50,"384 4th St, New York City, NY 10001" +194821,27in 4K Gaming Monitor,1,389.99,04/04/19 13:28,"520 Pine St, New York City, NY 10001" +194822,Bose SoundSport Headphones,1,99.99,04/08/19 00:10,"378 Washington St, San Francisco, CA 94016" +194823,USB-C Charging Cable,1,11.95,04/16/19 14:44,"204 Dogwood St, San Francisco, CA 94016" +194824,Wired Headphones,1,11.99,04/11/19 18:57,"195 Hill St, Los Angeles, CA 90001" +194825,27in 4K Gaming Monitor,1,389.99,04/15/19 20:33,"714 North St, Portland, ME 04101" +194826,Bose SoundSport Headphones,1,99.99,04/29/19 09:20,"816 Willow St, Atlanta, GA 30301" +194827,Lightning Charging Cable,1,14.95,04/20/19 00:06,"698 Ridge St, San Francisco, CA 94016" +194828,Lightning Charging Cable,1,14.95,04/22/19 23:26,"892 10th St, Dallas, TX 75001" +194829,Bose SoundSport Headphones,1,99.99,04/02/19 22:45,"884 14th St, Austin, TX 73301" +194830,Flatscreen TV,1,300,04/01/19 17:25,"921 2nd St, Austin, TX 73301" +194831,Flatscreen TV,1,300,04/04/19 21:37,"136 12th St, San Francisco, CA 94016" +194832,Wired Headphones,1,11.99,04/11/19 12:36,"586 Highland St, Los Angeles, CA 90001" +194833,AA Batteries (4-pack),1,3.84,04/14/19 17:57,"115 Jefferson St, San Francisco, CA 94016" +194834,Apple Airpods Headphones,1,150,04/09/19 16:20,"488 6th St, Austin, TX 73301" +194834,USB-C Charging Cable,1,11.95,04/09/19 16:20,"488 6th St, Austin, TX 73301" +194835,Bose SoundSport Headphones,1,99.99,04/23/19 19:57,"894 1st St, New York City, NY 10001" +194836,USB-C Charging Cable,1,11.95,04/09/19 18:47,"283 Washington St, San Francisco, CA 94016" +194837,Google Phone,1,600,04/01/19 18:25,"403 South St, San Francisco, CA 94016" +194837,Google Phone,1,600,04/01/19 18:25,"403 South St, San Francisco, CA 94016" +194838,34in Ultrawide Monitor,1,379.99,04/03/19 17:48,"965 4th St, Seattle, WA 98101" +194839,Lightning Charging Cable,1,14.95,04/19/19 12:29,"702 Lakeview St, Atlanta, GA 30301" +194840,27in FHD Monitor,1,149.99,04/15/19 20:15,"739 Adams St, Austin, TX 73301" +194841,AA Batteries (4-pack),3,3.84,04/24/19 18:55,"521 North St, New York City, NY 10001" +194842,Bose SoundSport Headphones,1,99.99,04/11/19 23:52,"142 8th St, Dallas, TX 75001" +194843,Lightning Charging Cable,2,14.95,04/12/19 23:12,"362 4th St, Los Angeles, CA 90001" +194844,20in Monitor,1,109.99,04/21/19 21:04,"360 13th St, Boston, MA 02215" +194845,27in FHD Monitor,1,149.99,04/19/19 13:22,"263 Cedar St, Dallas, TX 75001" +194846,Wired Headphones,1,11.99,04/20/19 10:40,"601 Elm St, Los Angeles, CA 90001" +194846,iPhone,1,700,04/20/19 10:40,"601 Elm St, Los Angeles, CA 90001" +194847,Google Phone,1,600,04/20/19 20:00,"129 Walnut St, Boston, MA 02215" +194847,Wired Headphones,1,11.99,04/20/19 20:00,"129 Walnut St, Boston, MA 02215" +194848,AA Batteries (4-pack),1,3.84,04/21/19 12:50,"465 8th St, Atlanta, GA 30301" +194849,AAA Batteries (4-pack),1,2.99,04/15/19 21:24,"314 10th St, San Francisco, CA 94016" +194850,USB-C Charging Cable,1,11.95,04/17/19 01:25,"15 Washington St, Boston, MA 02215" +194851,USB-C Charging Cable,1,11.95,04/10/19 23:51,"431 Lakeview St, Portland, OR 97035" +194852,Apple Airpods Headphones,1,150,04/13/19 00:48,"816 Main St, Boston, MA 02215" +194853,Apple Airpods Headphones,1,150,04/24/19 15:45,"254 Hill St, San Francisco, CA 94016" +194854,Google Phone,1,600,04/11/19 11:35,"316 West St, Boston, MA 02215" +194855,AAA Batteries (4-pack),1,2.99,04/15/19 07:34,"213 6th St, Portland, OR 97035" +194856,Wired Headphones,1,11.99,04/08/19 10:20,"177 Dogwood St, San Francisco, CA 94016" +194856,USB-C Charging Cable,1,11.95,04/08/19 10:20,"177 Dogwood St, San Francisco, CA 94016" +194857,27in FHD Monitor,1,149.99,04/12/19 16:31,"325 Maple St, Los Angeles, CA 90001" +194858,USB-C Charging Cable,1,11.95,04/04/19 20:43,"717 Dogwood St, Los Angeles, CA 90001" +194859,iPhone,1,700,04/28/19 14:45,"872 River St, Boston, MA 02215" +194860,USB-C Charging Cable,1,11.95,04/02/19 21:01,"904 Pine St, San Francisco, CA 94016" +194861,27in FHD Monitor,1,149.99,04/11/19 21:10,"199 North St, New York City, NY 10001" +194862,AAA Batteries (4-pack),4,2.99,04/27/19 19:44,"30 Wilson St, San Francisco, CA 94016" +194863,Lightning Charging Cable,1,14.95,04/17/19 10:52,"538 River St, Atlanta, GA 30301" +194864,AAA Batteries (4-pack),2,2.99,04/18/19 20:39,"458 Church St, San Francisco, CA 94016" +194865,USB-C Charging Cable,1,11.95,04/07/19 08:31,"583 Hickory St, San Francisco, CA 94016" +194866,AAA Batteries (4-pack),4,2.99,04/21/19 12:06,"402 12th St, Portland, ME 04101" +194867,iPhone,1,700,04/09/19 17:56,"961 13th St, San Francisco, CA 94016" +194868,27in FHD Monitor,1,149.99,04/04/19 12:11,"793 Willow St, San Francisco, CA 94016" +194869,ThinkPad Laptop,1,999.99,04/01/19 20:42,"704 Jackson St, New York City, NY 10001" +194870,USB-C Charging Cable,1,11.95,04/23/19 01:08,"616 Chestnut St, New York City, NY 10001" +194871,Flatscreen TV,1,300,04/21/19 18:09,"970 River St, San Francisco, CA 94016" +194872,Wired Headphones,1,11.99,04/17/19 09:51,"213 Cedar St, Los Angeles, CA 90001" +194873,AA Batteries (4-pack),1,3.84,04/16/19 16:24,"101 Hill St, Portland, OR 97035" +194874,27in FHD Monitor,1,149.99,04/25/19 07:05,"284 Johnson St, Boston, MA 02215" +194875,Lightning Charging Cable,1,14.95,04/11/19 07:17,"672 14th St, Los Angeles, CA 90001" +194876,Apple Airpods Headphones,1,150,04/17/19 20:05,"162 10th St, Boston, MA 02215" +194877,ThinkPad Laptop,1,999.99,04/19/19 19:50,"415 10th St, Portland, ME 04101" +194878,Macbook Pro Laptop,1,1700,04/01/19 09:40,"359 Hickory St, San Francisco, CA 94016" +194879,Flatscreen TV,1,300,04/22/19 13:57,"203 Johnson St, Seattle, WA 98101" +194880,USB-C Charging Cable,1,11.95,04/11/19 09:25,"667 Ridge St, Portland, ME 04101" +194881,34in Ultrawide Monitor,1,379.99,04/05/19 12:11,"622 4th St, New York City, NY 10001" +194882,Apple Airpods Headphones,1,150,04/20/19 10:54,"210 7th St, New York City, NY 10001" +194883,Wired Headphones,1,11.99,04/27/19 19:24,"929 Willow St, New York City, NY 10001" +194884,ThinkPad Laptop,1,999.99,04/07/19 02:00,"37 South St, New York City, NY 10001" +194885,27in FHD Monitor,1,149.99,04/26/19 15:29,"774 Ridge St, Atlanta, GA 30301" +194886,USB-C Charging Cable,1,11.95,04/24/19 22:06,"836 7th St, Boston, MA 02215" +194887,AA Batteries (4-pack),1,3.84,04/21/19 15:14,"179 Wilson St, Austin, TX 73301" +194888,27in 4K Gaming Monitor,1,389.99,04/13/19 15:44,"40 6th St, Boston, MA 02215" +194889,Apple Airpods Headphones,1,150,04/16/19 23:35,"153 Lincoln St, Los Angeles, CA 90001" +194890,Bose SoundSport Headphones,1,99.99,04/01/19 12:12,"584 Lincoln St, San Francisco, CA 94016" +194891,27in FHD Monitor,1,149.99,04/10/19 10:57,"155 4th St, Atlanta, GA 30301" +194892,USB-C Charging Cable,1,11.95,04/16/19 16:53,"195 West St, Portland, OR 97035" +194893,Flatscreen TV,1,300,04/25/19 13:54,"878 Church St, San Francisco, CA 94016" +194894,AAA Batteries (4-pack),3,2.99,04/15/19 15:02,"312 Dogwood St, New York City, NY 10001" +194895,AAA Batteries (4-pack),1,2.99,04/27/19 23:35,"41 4th St, Boston, MA 02215" +194896,27in FHD Monitor,1,149.99,04/03/19 15:02,"748 13th St, Los Angeles, CA 90001" +194897,Apple Airpods Headphones,1,150,04/28/19 14:24,"265 West St, Portland, OR 97035" +194898,Apple Airpods Headphones,1,150,04/30/19 11:33,"696 Maple St, Dallas, TX 75001" +194899,Bose SoundSport Headphones,1,99.99,04/13/19 13:54,"680 Highland St, Atlanta, GA 30301" +194900,USB-C Charging Cable,1,11.95,04/13/19 02:01,"76 Jefferson St, Boston, MA 02215" +194901,AAA Batteries (4-pack),1,2.99,04/21/19 10:13,"32 South St, Dallas, TX 75001" +194901,AAA Batteries (4-pack),1,2.99,04/21/19 10:13,"32 South St, Dallas, TX 75001" +194902,27in 4K Gaming Monitor,1,389.99,04/27/19 16:43,"265 Jefferson St, Austin, TX 73301" +194903,Bose SoundSport Headphones,1,99.99,04/29/19 20:37,"203 Hickory St, Los Angeles, CA 90001" +194904,Apple Airpods Headphones,1,150,04/15/19 18:55,"845 Wilson St, Boston, MA 02215" +194905,Bose SoundSport Headphones,1,99.99,04/16/19 09:17,"732 10th St, Los Angeles, CA 90001" +194906,Google Phone,1,600,04/19/19 14:15,"351 Church St, Dallas, TX 75001" +194907,AA Batteries (4-pack),1,3.84,04/04/19 13:23,"102 10th St, New York City, NY 10001" +194908,Apple Airpods Headphones,1,150,05/01/19 00:29,"346 9th St, Portland, OR 97035" +194909,AAA Batteries (4-pack),1,2.99,04/05/19 18:04,"34 5th St, Los Angeles, CA 90001" +194910,AA Batteries (4-pack),1,3.84,04/23/19 16:30,"125 Elm St, Dallas, TX 75001" +194911,USB-C Charging Cable,1,11.95,04/29/19 12:23,"731 1st St, Atlanta, GA 30301" +194912,AA Batteries (4-pack),2,3.84,04/21/19 15:42,"817 2nd St, Los Angeles, CA 90001" +194913,27in FHD Monitor,1,149.99,04/20/19 19:24,"871 Ridge St, New York City, NY 10001" +194914,Wired Headphones,1,11.99,04/06/19 05:35,"498 Adams St, New York City, NY 10001" +194915,AAA Batteries (4-pack),3,2.99,04/21/19 14:18,"25 11th St, San Francisco, CA 94016" +194916,USB-C Charging Cable,1,11.95,04/14/19 12:47,"590 Johnson St, Los Angeles, CA 90001" +194917,27in 4K Gaming Monitor,1,389.99,04/06/19 09:06,"367 9th St, Atlanta, GA 30301" +194918,AAA Batteries (4-pack),3,2.99,04/29/19 20:43,"101 South St, Boston, MA 02215" +194919,AA Batteries (4-pack),1,3.84,04/10/19 20:55,"147 5th St, Boston, MA 02215" +194920,Flatscreen TV,1,300,04/24/19 20:47,"260 8th St, Atlanta, GA 30301" +194921,AA Batteries (4-pack),2,3.84,04/11/19 15:11,"480 6th St, San Francisco, CA 94016" +194922,Wired Headphones,2,11.99,04/26/19 17:05,"303 Center St, Los Angeles, CA 90001" +194923,AAA Batteries (4-pack),1,2.99,04/07/19 07:53,"227 Willow St, Dallas, TX 75001" +194924,Lightning Charging Cable,1,14.95,04/18/19 04:54,"144 12th St, San Francisco, CA 94016" +194925,Google Phone,1,600,04/29/19 12:19,"724 5th St, Austin, TX 73301" +194925,USB-C Charging Cable,1,11.95,04/29/19 12:19,"724 5th St, Austin, TX 73301" +194926,Apple Airpods Headphones,1,150,04/24/19 22:01,"102 Adams St, Boston, MA 02215" +194927,USB-C Charging Cable,1,11.95,04/30/19 21:26,"831 Maple St, Atlanta, GA 30301" +194928,Vareebadd Phone,1,400,04/14/19 11:56,"49 12th St, San Francisco, CA 94016" +194929,AAA Batteries (4-pack),1,2.99,04/19/19 10:58,"277 2nd St, Los Angeles, CA 90001" +194930,27in 4K Gaming Monitor,1,389.99,04/01/19 16:58,"151 Forest St, Seattle, WA 98101" +194931,USB-C Charging Cable,1,11.95,04/29/19 17:06,"182 Park St, Los Angeles, CA 90001" +194932,Wired Headphones,2,11.99,04/11/19 07:40,"543 6th St, Atlanta, GA 30301" +194932,Google Phone,1,600,04/11/19 07:40,"543 6th St, Atlanta, GA 30301" +194933,Apple Airpods Headphones,1,150,04/06/19 22:51,"287 Johnson St, San Francisco, CA 94016" +194934,iPhone,1,700,04/30/19 21:19,"772 Park St, San Francisco, CA 94016" +194935,AA Batteries (4-pack),1,3.84,04/23/19 18:12,"152 North St, Los Angeles, CA 90001" +194936,AAA Batteries (4-pack),1,2.99,04/24/19 20:52,"338 Highland St, San Francisco, CA 94016" +194937,Macbook Pro Laptop,1,1700,04/11/19 18:24,"568 2nd St, Boston, MA 02215" +194938,Wired Headphones,1,11.99,04/12/19 10:36,"754 Jefferson St, San Francisco, CA 94016" +194939,Lightning Charging Cable,1,14.95,04/25/19 17:57,"956 Wilson St, San Francisco, CA 94016" +194940,Apple Airpods Headphones,1,150,04/06/19 10:59,"446 Park St, Los Angeles, CA 90001" +194941,Google Phone,1,600,04/07/19 19:05,"209 7th St, Atlanta, GA 30301" +194942,Wired Headphones,2,11.99,04/21/19 13:24,"905 River St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +194943,Apple Airpods Headphones,1,150,04/26/19 22:17,"902 Willow St, Seattle, WA 98101" +194944,AA Batteries (4-pack),1,3.84,04/15/19 09:15,"244 Church St, New York City, NY 10001" +194945,27in FHD Monitor,1,149.99,04/09/19 20:01,"628 2nd St, San Francisco, CA 94016" +194946,Lightning Charging Cable,1,14.95,04/17/19 18:32,"807 Sunset St, San Francisco, CA 94016" +194947,AAA Batteries (4-pack),1,2.99,04/19/19 15:45,"98 River St, Boston, MA 02215" +194948,27in 4K Gaming Monitor,1,389.99,04/29/19 20:00,"707 Meadow St, Seattle, WA 98101" +194949,USB-C Charging Cable,1,11.95,04/17/19 21:40,"903 Lakeview St, Seattle, WA 98101" +194950,Vareebadd Phone,1,400,04/13/19 20:35,"598 1st St, Los Angeles, CA 90001" +194950,USB-C Charging Cable,1,11.95,04/13/19 20:35,"598 1st St, Los Angeles, CA 90001" +194951,20in Monitor,1,109.99,04/11/19 11:15,"363 Maple St, Los Angeles, CA 90001" +194952,Apple Airpods Headphones,1,150,04/16/19 17:19,"995 6th St, Austin, TX 73301" +194953,Lightning Charging Cable,1,14.95,04/16/19 09:52,"761 Highland St, San Francisco, CA 94016" +194954,AAA Batteries (4-pack),2,2.99,04/21/19 23:14,"261 Adams St, New York City, NY 10001" +194955,Bose SoundSport Headphones,1,99.99,04/30/19 19:06,"74 7th St, San Francisco, CA 94016" +194956,Lightning Charging Cable,1,14.95,04/29/19 17:53,"669 Church St, New York City, NY 10001" +194957,Bose SoundSport Headphones,1,99.99,04/13/19 19:43,"72 9th St, San Francisco, CA 94016" +194958,Lightning Charging Cable,1,14.95,04/07/19 17:26,"269 13th St, Atlanta, GA 30301" +194959,27in FHD Monitor,1,149.99,04/25/19 20:17,"126 Pine St, Portland, OR 97035" +194960,Bose SoundSport Headphones,2,99.99,04/20/19 13:57,"978 Main St, San Francisco, CA 94016" +194961,ThinkPad Laptop,1,999.99,04/13/19 22:19,"795 2nd St, San Francisco, CA 94016" +194962,AA Batteries (4-pack),1,3.84,04/13/19 19:56,"716 13th St, San Francisco, CA 94016" +194963,34in Ultrawide Monitor,1,379.99,04/15/19 00:28,"2 Willow St, San Francisco, CA 94016" +194964,LG Dryer,1,600.0,04/06/19 18:06,"635 Lincoln St, San Francisco, CA 94016" +194965,Bose SoundSport Headphones,1,99.99,04/08/19 23:00,"696 5th St, New York City, NY 10001" +194966,Bose SoundSport Headphones,1,99.99,04/17/19 11:37,"896 Spruce St, Portland, ME 04101" +194967,Bose SoundSport Headphones,1,99.99,04/16/19 18:05,"983 Church St, Los Angeles, CA 90001" +194968,Apple Airpods Headphones,1,150,04/08/19 15:25,"517 Center St, Boston, MA 02215" +194969,Google Phone,1,600,04/12/19 10:45,"982 Lincoln St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +194970,Google Phone,1,600,04/04/19 23:18,"658 Cherry St, Atlanta, GA 30301" +194971,27in 4K Gaming Monitor,1,389.99,04/03/19 20:53,"548 West St, Portland, OR 97035" +194972,34in Ultrawide Monitor,1,379.99,04/16/19 11:51,"578 Wilson St, Boston, MA 02215" +194973,Lightning Charging Cable,1,14.95,04/12/19 14:12,"512 Walnut St, Seattle, WA 98101" +194974,AA Batteries (4-pack),1,3.84,04/13/19 09:36,"592 Wilson St, Boston, MA 02215" +194975,Lightning Charging Cable,1,14.95,04/03/19 06:13,"350 8th St, Atlanta, GA 30301" +194976,AA Batteries (4-pack),1,3.84,04/16/19 18:17,"315 Hickory St, Los Angeles, CA 90001" +194977,ThinkPad Laptop,1,999.99,04/23/19 08:56,"534 North St, Los Angeles, CA 90001" +194978,Lightning Charging Cable,1,14.95,04/03/19 17:43,"581 6th St, Dallas, TX 75001" +194979,USB-C Charging Cable,1,11.95,04/11/19 10:46,"570 Meadow St, Los Angeles, CA 90001" +194980,27in FHD Monitor,1,149.99,04/17/19 01:56,"239 South St, Atlanta, GA 30301" +194981,AAA Batteries (4-pack),1,2.99,04/06/19 08:35,"728 Sunset St, San Francisco, CA 94016" +194982,Apple Airpods Headphones,1,150,04/15/19 10:51,"843 Meadow St, San Francisco, CA 94016" +194983,Lightning Charging Cable,1,14.95,04/01/19 12:16,"699 Main St, Los Angeles, CA 90001" +194984,USB-C Charging Cable,1,11.95,04/20/19 17:13,"701 Church St, Atlanta, GA 30301" +194985,Wired Headphones,1,11.99,04/19/19 16:51,"221 Cedar St, New York City, NY 10001" +194986,Lightning Charging Cable,1,14.95,04/25/19 12:54,"196 Chestnut St, Atlanta, GA 30301" +194987,USB-C Charging Cable,1,11.95,04/01/19 15:06,"922 Jackson St, Austin, TX 73301" +194988,Bose SoundSport Headphones,1,99.99,04/26/19 22:24,"115 Washington St, New York City, NY 10001" +194989,Lightning Charging Cable,2,14.95,04/15/19 19:50,"524 Forest St, New York City, NY 10001" +194990,Lightning Charging Cable,1,14.95,04/05/19 03:58,"730 7th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +194991,Wired Headphones,1,11.99,04/25/19 08:58,"600 9th St, Portland, OR 97035" +194992,Wired Headphones,1,11.99,04/24/19 13:24,"991 Jackson St, Los Angeles, CA 90001" +194993,AAA Batteries (4-pack),2,2.99,04/16/19 08:37,"382 West St, Dallas, TX 75001" +194994,Apple Airpods Headphones,1,150,04/16/19 10:12,"222 13th St, San Francisco, CA 94016" +194995,USB-C Charging Cable,1,11.95,04/29/19 15:52,"845 South St, Dallas, TX 75001" +194996,Google Phone,1,600,04/01/19 22:41,"915 Ridge St, Seattle, WA 98101" +194996,USB-C Charging Cable,1,11.95,04/01/19 22:41,"915 Ridge St, Seattle, WA 98101" +194997,iPhone,1,700,04/30/19 17:11,"340 South St, New York City, NY 10001" +194998,Macbook Pro Laptop,1,1700,04/10/19 18:29,"97 8th St, Austin, TX 73301" +194999,USB-C Charging Cable,1,11.95,04/16/19 22:08,"700 Willow St, Los Angeles, CA 90001" +195000,27in 4K Gaming Monitor,1,389.99,04/18/19 17:44,"324 12th St, New York City, NY 10001" +195001,Wired Headphones,1,11.99,04/04/19 20:41,"3 10th St, New York City, NY 10001" +195002,USB-C Charging Cable,1,11.95,04/08/19 18:06,"593 2nd St, San Francisco, CA 94016" +195003,AAA Batteries (4-pack),1,2.99,04/21/19 11:43,"750 Forest St, Seattle, WA 98101" +195004,USB-C Charging Cable,1,11.95,04/15/19 10:09,"4 Jefferson St, San Francisco, CA 94016" +195005,iPhone,1,700,04/21/19 18:33,"999 Park St, San Francisco, CA 94016" +195006,USB-C Charging Cable,1,11.95,04/11/19 18:59,"451 9th St, Boston, MA 02215" +195007,USB-C Charging Cable,1,11.95,04/13/19 23:49,"475 9th St, Atlanta, GA 30301" +195008,AA Batteries (4-pack),1,3.84,04/25/19 19:42,"769 9th St, Portland, OR 97035" +195009,USB-C Charging Cable,1,11.95,04/24/19 13:33,"844 Ridge St, San Francisco, CA 94016" +195010,20in Monitor,1,109.99,04/25/19 18:37,"83 1st St, Boston, MA 02215" +195011,34in Ultrawide Monitor,1,379.99,04/02/19 14:40,"951 North St, San Francisco, CA 94016" +195012,AA Batteries (4-pack),1,3.84,04/25/19 22:05,"818 Ridge St, New York City, NY 10001" +195013,34in Ultrawide Monitor,1,379.99,04/17/19 14:32,"596 River St, New York City, NY 10001" +195014,USB-C Charging Cable,1,11.95,04/21/19 21:24,"669 Washington St, Austin, TX 73301" +195015,AA Batteries (4-pack),1,3.84,04/12/19 12:22,"692 Hickory St, New York City, NY 10001" +195016,Macbook Pro Laptop,1,1700,04/10/19 14:55,"756 Walnut St, New York City, NY 10001" +195017,Apple Airpods Headphones,1,150,04/16/19 14:56,"92 North St, Boston, MA 02215" +195018,20in Monitor,1,109.99,04/07/19 17:38,"507 Wilson St, Seattle, WA 98101" +195019,USB-C Charging Cable,1,11.95,04/06/19 21:39,"914 11th St, San Francisco, CA 94016" +195020,Apple Airpods Headphones,1,150,04/24/19 19:09,"996 River St, Boston, MA 02215" +195021,iPhone,1,700,04/04/19 18:14,"914 Pine St, San Francisco, CA 94016" +195022,USB-C Charging Cable,1,11.95,04/13/19 12:41,"15 River St, San Francisco, CA 94016" +195023,Wired Headphones,2,11.99,04/13/19 08:50,"420 Sunset St, Los Angeles, CA 90001" +195024,USB-C Charging Cable,1,11.95,04/03/19 16:45,"551 9th St, New York City, NY 10001" +195025,Bose SoundSport Headphones,1,99.99,04/09/19 21:05,"269 Forest St, Boston, MA 02215" +195026,Wired Headphones,1,11.99,04/24/19 17:05,"941 Center St, Atlanta, GA 30301" +195027,Wired Headphones,1,11.99,04/06/19 18:39,"769 Ridge St, New York City, NY 10001" +195028,27in 4K Gaming Monitor,1,389.99,04/25/19 18:16,"860 Sunset St, Boston, MA 02215" +195029,AA Batteries (4-pack),1,3.84,04/23/19 18:30,"289 Adams St, Los Angeles, CA 90001" +195030,Lightning Charging Cable,1,14.95,04/24/19 02:05,"672 Wilson St, Portland, OR 97035" +195031,USB-C Charging Cable,2,11.95,04/17/19 19:18,"769 Jefferson St, Los Angeles, CA 90001" +195032,AAA Batteries (4-pack),1,2.99,04/05/19 20:51,"394 South St, Seattle, WA 98101" +195033,Bose SoundSport Headphones,1,99.99,04/23/19 15:20,"987 Forest St, San Francisco, CA 94016" +195034,Lightning Charging Cable,1,14.95,04/26/19 10:07,"617 Main St, San Francisco, CA 94016" +195035,USB-C Charging Cable,1,11.95,04/09/19 01:48,"934 Maple St, San Francisco, CA 94016" +195036,Flatscreen TV,1,300,04/18/19 18:09,"250 Willow St, Austin, TX 73301" +195037,AAA Batteries (4-pack),3,2.99,04/09/19 10:59,"650 Washington St, San Francisco, CA 94016" +195038,USB-C Charging Cable,1,11.95,04/23/19 11:36,"736 12th St, Dallas, TX 75001" +195039,Wired Headphones,1,11.99,04/05/19 11:13,"160 4th St, San Francisco, CA 94016" +195040,USB-C Charging Cable,1,11.95,04/29/19 10:49,"357 Hickory St, New York City, NY 10001" +195041,USB-C Charging Cable,1,11.95,04/27/19 21:13,"315 Maple St, Los Angeles, CA 90001" +195042,Lightning Charging Cable,2,14.95,04/10/19 15:47,"91 6th St, New York City, NY 10001" +195043,Flatscreen TV,1,300,04/22/19 23:19,"67 Church St, Los Angeles, CA 90001" +195044,Wired Headphones,1,11.99,04/08/19 20:20,"523 14th St, Dallas, TX 75001" +195045,AA Batteries (4-pack),2,3.84,04/11/19 14:34,"332 Lincoln St, Los Angeles, CA 90001" +195046,Apple Airpods Headphones,1,150,04/01/19 10:35,"361 2nd St, San Francisco, CA 94016" +195047,Wired Headphones,1,11.99,04/10/19 08:12,"470 Cherry St, New York City, NY 10001" +195048,Lightning Charging Cable,1,14.95,04/15/19 21:34,"762 1st St, Boston, MA 02215" +195049,USB-C Charging Cable,1,11.95,04/18/19 15:46,"565 Maple St, Los Angeles, CA 90001" +195050,Lightning Charging Cable,2,14.95,04/09/19 00:40,"577 Ridge St, Austin, TX 73301" +195051,Lightning Charging Cable,1,14.95,04/29/19 19:39,"200 River St, Dallas, TX 75001" +195052,AA Batteries (4-pack),1,3.84,04/10/19 07:00,"788 9th St, San Francisco, CA 94016" +195053,ThinkPad Laptop,1,999.99,04/27/19 12:23,"335 Washington St, New York City, NY 10001" +195054,Wired Headphones,1,11.99,04/04/19 16:25,"534 5th St, Seattle, WA 98101" +195055,USB-C Charging Cable,1,11.95,04/29/19 18:36,"917 Meadow St, Los Angeles, CA 90001" +195056,Wired Headphones,1,11.99,04/17/19 20:11,"485 10th St, Seattle, WA 98101" +195057,Wired Headphones,1,11.99,04/25/19 23:11,"51 Highland St, Boston, MA 02215" +195058,USB-C Charging Cable,2,11.95,04/27/19 20:48,"165 South St, Dallas, TX 75001" +195059,Bose SoundSport Headphones,1,99.99,04/02/19 17:22,"777 South St, Austin, TX 73301" +195060,AA Batteries (4-pack),1,3.84,04/02/19 02:55,"60 Chestnut St, San Francisco, CA 94016" +195061,AAA Batteries (4-pack),1,2.99,04/27/19 16:40,"709 South St, Portland, OR 97035" +195062,27in 4K Gaming Monitor,1,389.99,04/30/19 13:44,"442 7th St, Boston, MA 02215" +195063,20in Monitor,1,109.99,04/01/19 20:43,"203 Jackson St, Seattle, WA 98101" +195064,Macbook Pro Laptop,1,1700,04/08/19 10:06,"686 Dogwood St, Los Angeles, CA 90001" +195064,Apple Airpods Headphones,1,150,04/08/19 10:06,"686 Dogwood St, Los Angeles, CA 90001" +195065,Wired Headphones,1,11.99,04/01/19 08:25,"638 Cedar St, San Francisco, CA 94016" +195066,Google Phone,1,600,04/19/19 10:15,"751 Maple St, Los Angeles, CA 90001" +195067,AA Batteries (4-pack),1,3.84,04/01/19 11:42,"366 Park St, Los Angeles, CA 90001" +195068,Bose SoundSport Headphones,1,99.99,04/26/19 10:26,"903 Wilson St, New York City, NY 10001" +195069,AAA Batteries (4-pack),2,2.99,04/23/19 14:17,"38 South St, Boston, MA 02215" +195070,Wired Headphones,1,11.99,04/28/19 00:47,"622 4th St, New York City, NY 10001" +195071,34in Ultrawide Monitor,1,379.99,04/25/19 13:34,"86 West St, Atlanta, GA 30301" +195072,Wired Headphones,1,11.99,04/26/19 11:38,"287 West St, Dallas, TX 75001" +195073,AA Batteries (4-pack),2,3.84,04/26/19 12:15,"279 14th St, Los Angeles, CA 90001" +195074,Lightning Charging Cable,1,14.95,04/29/19 20:01,"290 Ridge St, San Francisco, CA 94016" +195075,iPhone,1,700,04/17/19 23:20,"207 12th St, Los Angeles, CA 90001" +195076,27in FHD Monitor,1,149.99,04/09/19 22:16,"115 West St, Boston, MA 02215" +195077,USB-C Charging Cable,2,11.95,04/27/19 23:29,"94 Wilson St, Austin, TX 73301" +195078,AA Batteries (4-pack),1,3.84,04/16/19 11:34,"436 5th St, Dallas, TX 75001" +195079,USB-C Charging Cable,1,11.95,04/06/19 20:48,"517 Maple St, San Francisco, CA 94016" +195080,Vareebadd Phone,1,400,04/10/19 13:07,"102 Dogwood St, Austin, TX 73301" +195080,USB-C Charging Cable,1,11.95,04/10/19 13:07,"102 Dogwood St, Austin, TX 73301" +195081,Lightning Charging Cable,2,14.95,04/10/19 09:02,"352 Park St, Austin, TX 73301" +195082,Apple Airpods Headphones,1,150,04/28/19 18:56,"642 Hickory St, Boston, MA 02215" +195083,Apple Airpods Headphones,1,150,04/30/19 09:16,"591 Lakeview St, Boston, MA 02215" +195084,Bose SoundSport Headphones,1,99.99,04/17/19 15:49,"860 Meadow St, Boston, MA 02215" +195085,Apple Airpods Headphones,1,150,04/19/19 09:39,"857 13th St, Portland, OR 97035" +195086,AA Batteries (4-pack),2,3.84,04/05/19 14:15,"253 Washington St, New York City, NY 10001" +195087,Lightning Charging Cable,1,14.95,04/09/19 23:50,"463 Chestnut St, Seattle, WA 98101" +195088,Apple Airpods Headphones,1,150,04/10/19 07:39,"568 Spruce St, Los Angeles, CA 90001" +195089,AA Batteries (4-pack),1,3.84,04/10/19 03:21,"277 Dogwood St, Los Angeles, CA 90001" +195090,iPhone,1,700,04/08/19 21:28,"728 Adams St, New York City, NY 10001" +195090,Wired Headphones,2,11.99,04/08/19 21:28,"728 Adams St, New York City, NY 10001" +195091,AA Batteries (4-pack),1,3.84,04/16/19 22:55,"432 Madison St, Dallas, TX 75001" +195092,Flatscreen TV,1,300,04/10/19 07:28,"271 7th St, Boston, MA 02215" +195093,AA Batteries (4-pack),1,3.84,04/19/19 06:46,"925 Cedar St, Austin, TX 73301" +195094,AAA Batteries (4-pack),1,2.99,04/19/19 17:47,"159 Maple St, Portland, OR 97035" +195095,Bose SoundSport Headphones,1,99.99,04/07/19 18:47,"614 Church St, San Francisco, CA 94016" +195096,AAA Batteries (4-pack),1,2.99,04/05/19 13:43,"323 River St, San Francisco, CA 94016" +195097,AAA Batteries (4-pack),1,2.99,04/09/19 16:34,"565 South St, Atlanta, GA 30301" +195098,AAA Batteries (4-pack),1,2.99,04/09/19 06:02,"264 Johnson St, San Francisco, CA 94016" +195099,34in Ultrawide Monitor,1,379.99,04/02/19 12:21,"192 Walnut St, Atlanta, GA 30301" +195100,ThinkPad Laptop,1,999.99,04/02/19 23:51,"381 Walnut St, Dallas, TX 75001" +195101,USB-C Charging Cable,1,11.95,04/05/19 19:42,"422 Lake St, San Francisco, CA 94016" +195102,AA Batteries (4-pack),1,3.84,04/02/19 21:40,"692 Forest St, San Francisco, CA 94016" +195103,Lightning Charging Cable,1,14.95,04/21/19 15:14,"517 6th St, San Francisco, CA 94016" +195104,USB-C Charging Cable,1,11.95,04/09/19 20:51,"994 Wilson St, San Francisco, CA 94016" +195105,27in FHD Monitor,1,149.99,04/07/19 14:54,"767 Park St, San Francisco, CA 94016" +195106,Wired Headphones,1,11.99,04/14/19 17:44,"755 4th St, San Francisco, CA 94016" +195107,Lightning Charging Cable,1,14.95,04/25/19 21:08,"654 Hickory St, Seattle, WA 98101" +195108,USB-C Charging Cable,1,11.95,04/27/19 13:32,"339 West St, Atlanta, GA 30301" +195109,27in FHD Monitor,1,149.99,04/22/19 19:08,"702 6th St, San Francisco, CA 94016" +195110,Bose SoundSport Headphones,1,99.99,04/24/19 15:02,"476 7th St, Los Angeles, CA 90001" +195111,27in 4K Gaming Monitor,1,389.99,04/11/19 12:24,"209 North St, New York City, NY 10001" +195112,AAA Batteries (4-pack),1,2.99,04/30/19 08:55,"922 Spruce St, Seattle, WA 98101" +195113,AAA Batteries (4-pack),3,2.99,04/17/19 15:37,"496 Lakeview St, Boston, MA 02215" +195114,Bose SoundSport Headphones,1,99.99,04/17/19 16:20,"536 Lake St, San Francisco, CA 94016" +195115,USB-C Charging Cable,1,11.95,04/15/19 09:25,"430 9th St, New York City, NY 10001" +195116,AA Batteries (4-pack),1,3.84,04/07/19 09:56,"697 Cedar St, Atlanta, GA 30301" +195117,Wired Headphones,1,11.99,04/07/19 04:09,"757 13th St, San Francisco, CA 94016" +195118,Apple Airpods Headphones,1,150,04/28/19 14:41,"668 Cherry St, San Francisco, CA 94016" +195119,20in Monitor,1,109.99,04/28/19 07:28,"647 Hickory St, Los Angeles, CA 90001" +195120,Apple Airpods Headphones,1,150,04/29/19 13:11,"138 6th St, San Francisco, CA 94016" +195121,Wired Headphones,2,11.99,04/29/19 21:09,"611 Lincoln St, Boston, MA 02215" +195122,Wired Headphones,1,11.99,04/15/19 10:50,"134 7th St, San Francisco, CA 94016" +195123,Lightning Charging Cable,1,14.95,04/08/19 13:45,"748 Spruce St, San Francisco, CA 94016" +195124,Wired Headphones,1,11.99,04/02/19 15:36,"326 13th St, Dallas, TX 75001" +195125,Lightning Charging Cable,1,14.95,04/02/19 01:37,"937 Ridge St, New York City, NY 10001" +195126,AAA Batteries (4-pack),1,2.99,04/04/19 21:25,"676 Sunset St, Dallas, TX 75001" +195127,AAA Batteries (4-pack),1,2.99,04/06/19 17:06,"8 South St, Los Angeles, CA 90001" +195128,Bose SoundSport Headphones,1,99.99,04/13/19 15:13,"852 12th St, New York City, NY 10001" +195129,Flatscreen TV,1,300,04/05/19 10:05,"463 Hickory St, New York City, NY 10001" +195130,Wired Headphones,1,11.99,04/01/19 12:51,"562 5th St, Los Angeles, CA 90001" +195131,Flatscreen TV,1,300,04/25/19 05:02,"722 13th St, Portland, OR 97035" +195132,AAA Batteries (4-pack),2,2.99,04/09/19 07:06,"110 Spruce St, Dallas, TX 75001" +195133,Wired Headphones,2,11.99,04/19/19 21:27,"754 Cedar St, Boston, MA 02215" +195134,ThinkPad Laptop,1,999.99,04/07/19 21:02,"441 Madison St, San Francisco, CA 94016" +195135,Macbook Pro Laptop,1,1700,04/25/19 18:16,"695 12th St, New York City, NY 10001" +195136,USB-C Charging Cable,1,11.95,04/04/19 10:05,"94 Chestnut St, New York City, NY 10001" +195137,Lightning Charging Cable,1,14.95,04/16/19 11:46,"771 West St, Seattle, WA 98101" +195138,Apple Airpods Headphones,1,150,04/04/19 23:32,"487 Adams St, San Francisco, CA 94016" +195139,Bose SoundSport Headphones,1,99.99,04/15/19 20:36,"202 River St, Atlanta, GA 30301" +195140,Vareebadd Phone,1,400,04/19/19 13:12,"285 Spruce St, New York City, NY 10001" +195141,AA Batteries (4-pack),1,3.84,04/24/19 13:18,"24 South St, New York City, NY 10001" +195142,27in FHD Monitor,1,149.99,04/26/19 22:05,"361 11th St, San Francisco, CA 94016" +195143,Lightning Charging Cable,1,14.95,04/02/19 10:11,"701 Walnut St, Los Angeles, CA 90001" +195144,34in Ultrawide Monitor,1,379.99,04/08/19 10:56,"63 Lakeview St, San Francisco, CA 94016" +195145,AA Batteries (4-pack),1,3.84,04/22/19 21:11,"991 Pine St, New York City, NY 10001" +195146,Wired Headphones,1,11.99,04/16/19 11:51,"89 2nd St, San Francisco, CA 94016" +195147,Flatscreen TV,2,300,04/08/19 19:16,"941 Meadow St, Los Angeles, CA 90001" +195148,USB-C Charging Cable,1,11.95,04/13/19 08:33,"223 Dogwood St, San Francisco, CA 94016" +195149,Apple Airpods Headphones,1,150,04/07/19 22:54,"523 Pine St, San Francisco, CA 94016" +195150,iPhone,1,700,04/05/19 18:43,"642 13th St, Dallas, TX 75001" +195150,Wired Headphones,1,11.99,04/05/19 18:43,"642 13th St, Dallas, TX 75001" +195151,Vareebadd Phone,1,400,04/15/19 21:58,"982 Main St, Austin, TX 73301" +195152,AAA Batteries (4-pack),2,2.99,04/27/19 18:30,"728 11th St, Atlanta, GA 30301" +195153,Apple Airpods Headphones,1,150,04/08/19 17:47,"719 13th St, Seattle, WA 98101" +195154,Wired Headphones,1,11.99,04/01/19 06:31,"568 Forest St, New York City, NY 10001" +195155,AAA Batteries (4-pack),1,2.99,04/23/19 17:27,"292 12th St, Austin, TX 73301" +195156,27in 4K Gaming Monitor,1,389.99,04/08/19 18:17,"160 South St, Boston, MA 02215" +195157,AAA Batteries (4-pack),1,2.99,04/09/19 20:49,"804 12th St, Dallas, TX 75001" +195158,Lightning Charging Cable,1,14.95,04/05/19 19:40,"508 Forest St, San Francisco, CA 94016" +195159,AAA Batteries (4-pack),1,2.99,04/27/19 10:48,"911 9th St, New York City, NY 10001" +195160,AA Batteries (4-pack),1,3.84,04/03/19 20:13,"818 Pine St, New York City, NY 10001" +195161,27in 4K Gaming Monitor,1,389.99,04/03/19 20:16,"879 Cedar St, Dallas, TX 75001" +195162,Wired Headphones,1,11.99,04/24/19 05:08,"710 Park St, Atlanta, GA 30301" +195163,Apple Airpods Headphones,1,150,04/09/19 11:52,"272 River St, New York City, NY 10001" +195164,USB-C Charging Cable,1,11.95,04/26/19 17:11,"568 Johnson St, Atlanta, GA 30301" +195165,AA Batteries (4-pack),2,3.84,04/18/19 21:37,"446 South St, Seattle, WA 98101" +195166,iPhone,1,700,04/11/19 18:16,"194 Hill St, Boston, MA 02215" +195167,AAA Batteries (4-pack),1,2.99,04/16/19 15:43,"711 2nd St, Atlanta, GA 30301" +195168,LG Dryer,1,600.0,04/15/19 18:53,"143 Lincoln St, Austin, TX 73301" +195169,USB-C Charging Cable,1,11.95,04/18/19 11:33,"495 Park St, New York City, NY 10001" +195170,AA Batteries (4-pack),1,3.84,04/27/19 17:22,"758 Willow St, Austin, TX 73301" +195171,AA Batteries (4-pack),1,3.84,04/27/19 21:38,"930 River St, Atlanta, GA 30301" +195172,USB-C Charging Cable,1,11.95,04/09/19 07:29,"624 8th St, Los Angeles, CA 90001" +195173,Lightning Charging Cable,1,14.95,04/10/19 20:01,"380 Walnut St, Portland, OR 97035" +195174,Wired Headphones,1,11.99,04/08/19 15:10,"741 Cedar St, Austin, TX 73301" +195174,Wired Headphones,1,11.99,04/08/19 15:10,"741 Cedar St, Austin, TX 73301" +195175,Apple Airpods Headphones,1,150,04/13/19 21:16,"869 2nd St, Atlanta, GA 30301" +195176,Apple Airpods Headphones,1,150,04/19/19 13:11,"526 Cedar St, New York City, NY 10001" +195177,AAA Batteries (4-pack),1,2.99,04/04/19 20:03,"6 Highland St, Boston, MA 02215" +195178,USB-C Charging Cable,1,11.95,04/07/19 18:57,"704 9th St, Boston, MA 02215" +195179,AA Batteries (4-pack),2,3.84,04/16/19 14:45,"107 6th St, Seattle, WA 98101" +195180,20in Monitor,1,109.99,04/12/19 09:16,"262 4th St, Portland, ME 04101" +195181,USB-C Charging Cable,1,11.95,04/05/19 20:43,"345 Spruce St, San Francisco, CA 94016" +195182,AA Batteries (4-pack),1,3.84,04/25/19 10:00,"833 12th St, New York City, NY 10001" +195183,Lightning Charging Cable,1,14.95,04/05/19 18:22,"499 Lake St, Los Angeles, CA 90001" +195184,27in FHD Monitor,1,149.99,04/27/19 13:42,"288 Highland St, Los Angeles, CA 90001" +195185,Lightning Charging Cable,1,14.95,04/19/19 20:00,"638 Lincoln St, Boston, MA 02215" +195186,Apple Airpods Headphones,1,150,04/30/19 12:24,"498 12th St, San Francisco, CA 94016" +195187,Wired Headphones,2,11.99,04/03/19 11:45,"942 Madison St, Los Angeles, CA 90001" +195188,Bose SoundSport Headphones,2,99.99,04/06/19 17:35,"329 Washington St, Dallas, TX 75001" +195189,iPhone,1,700,04/20/19 17:13,"494 Lincoln St, Seattle, WA 98101" +195190,Wired Headphones,1,11.99,04/10/19 12:47,"664 Meadow St, Portland, OR 97035" +195190,AAA Batteries (4-pack),2,2.99,04/10/19 12:47,"664 Meadow St, Portland, OR 97035" +195191,AA Batteries (4-pack),1,3.84,04/10/19 20:17,"151 7th St, Seattle, WA 98101" +195192,iPhone,1,700,04/24/19 19:27,"230 Jackson St, San Francisco, CA 94016" +195192,Apple Airpods Headphones,1,150,04/24/19 19:27,"230 Jackson St, San Francisco, CA 94016" +195193,Flatscreen TV,1,300,04/28/19 14:21,"971 Sunset St, New York City, NY 10001" +195194,Apple Airpods Headphones,1,150,04/19/19 10:40,"568 Jefferson St, Los Angeles, CA 90001" +195195,Wired Headphones,1,11.99,04/05/19 13:14,"798 Adams St, San Francisco, CA 94016" +195196,AAA Batteries (4-pack),1,2.99,04/30/19 10:29,"625 13th St, Atlanta, GA 30301" +195197,Bose SoundSport Headphones,1,99.99,04/13/19 19:00,"357 8th St, Dallas, TX 75001" +195198,Wired Headphones,1,11.99,04/21/19 21:58,"289 Cedar St, New York City, NY 10001" +195199,Lightning Charging Cable,1,14.95,04/25/19 00:24,"255 River St, Portland, OR 97035" +195200,27in FHD Monitor,1,149.99,04/27/19 11:31,"240 West St, Austin, TX 73301" +195201,Wired Headphones,2,11.99,04/11/19 08:24,"704 Center St, Los Angeles, CA 90001" +195202,AAA Batteries (4-pack),4,2.99,04/04/19 21:15,"69 Walnut St, Dallas, TX 75001" +195203,USB-C Charging Cable,1,11.95,04/16/19 22:43,"620 Pine St, San Francisco, CA 94016" +195204,Bose SoundSport Headphones,1,99.99,04/30/19 03:38,"409 Lakeview St, Boston, MA 02215" +195205,Wired Headphones,1,11.99,04/28/19 10:40,"628 Cedar St, San Francisco, CA 94016" +195206,Macbook Pro Laptop,1,1700,04/28/19 12:06,"778 Maple St, San Francisco, CA 94016" +195207,Wired Headphones,1,11.99,04/19/19 09:18,"354 11th St, Atlanta, GA 30301" +195208,AA Batteries (4-pack),1,3.84,04/28/19 16:50,"195 Cedar St, Atlanta, GA 30301" +195209,Lightning Charging Cable,1,14.95,04/03/19 15:59,"80 Cherry St, Boston, MA 02215" +195210,AA Batteries (4-pack),1,3.84,04/23/19 11:35,"186 14th St, San Francisco, CA 94016" +195211,AA Batteries (4-pack),1,3.84,04/08/19 12:09,"916 6th St, Dallas, TX 75001" +195212,USB-C Charging Cable,1,11.95,04/07/19 00:21,"495 Meadow St, San Francisco, CA 94016" +195213,AAA Batteries (4-pack),1,2.99,04/14/19 09:42,"355 Main St, New York City, NY 10001" +195214,AAA Batteries (4-pack),1,2.99,04/18/19 15:50,"146 North St, Boston, MA 02215" +195215,27in FHD Monitor,1,149.99,04/20/19 19:35,"98 Maple St, Los Angeles, CA 90001" +195216,27in FHD Monitor,1,149.99,04/15/19 12:07,"294 4th St, Los Angeles, CA 90001" +195217,LG Dryer,1,600.0,04/03/19 21:26,"582 2nd St, San Francisco, CA 94016" +195218,AAA Batteries (4-pack),2,2.99,04/22/19 21:39,"500 10th St, Austin, TX 73301" +195219,AAA Batteries (4-pack),3,2.99,04/25/19 20:23,"133 Wilson St, Boston, MA 02215" +195220,Apple Airpods Headphones,1,150,04/01/19 13:44,"483 Washington St, Austin, TX 73301" +195221,Macbook Pro Laptop,1,1700,04/01/19 06:56,"404 10th St, San Francisco, CA 94016" +195222,Wired Headphones,1,11.99,04/18/19 15:08,"557 Madison St, Austin, TX 73301" +195223,20in Monitor,1,109.99,04/13/19 16:18,"38 Cherry St, Dallas, TX 75001" +195224,Lightning Charging Cable,1,14.95,04/26/19 15:31,"540 10th St, New York City, NY 10001" +195225,Lightning Charging Cable,1,14.95,04/14/19 15:48,"613 5th St, Los Angeles, CA 90001" +195226,Apple Airpods Headphones,1,150,04/06/19 09:30,"66 Lincoln St, Los Angeles, CA 90001" +195227,Apple Airpods Headphones,1,150,04/18/19 09:52,"150 Lake St, San Francisco, CA 94016" +195228,Wired Headphones,1,11.99,04/23/19 18:16,"725 Washington St, New York City, NY 10001" +195229,AAA Batteries (4-pack),1,2.99,04/08/19 11:13,"491 Forest St, San Francisco, CA 94016" +195230,ThinkPad Laptop,1,999.99,04/13/19 15:37,"472 Lincoln St, New York City, NY 10001" +195231,Apple Airpods Headphones,1,150,04/26/19 18:46,"699 West St, New York City, NY 10001" +195232,AA Batteries (4-pack),1,3.84,04/27/19 14:45,"822 10th St, Atlanta, GA 30301" +195233,Wired Headphones,2,11.99,04/12/19 10:33,"140 2nd St, Los Angeles, CA 90001" +195234,Bose SoundSport Headphones,1,99.99,04/18/19 22:06,"33 West St, New York City, NY 10001" +195235,AAA Batteries (4-pack),1,2.99,04/29/19 13:38,"78 9th St, Atlanta, GA 30301" +195236,AA Batteries (4-pack),3,3.84,04/16/19 17:10,"845 9th St, Dallas, TX 75001" +195237,iPhone,1,700,04/19/19 18:49,"196 Main St, Boston, MA 02215" +195238,Wired Headphones,1,11.99,04/01/19 19:39,"872 14th St, San Francisco, CA 94016" +195238,20in Monitor,1,109.99,04/01/19 19:39,"872 14th St, San Francisco, CA 94016" +195239,27in FHD Monitor,1,149.99,04/27/19 11:24,"387 River St, New York City, NY 10001" +195240,Apple Airpods Headphones,1,150,04/15/19 14:26,"750 Hill St, Austin, TX 73301" +195241,Vareebadd Phone,1,400,04/30/19 08:50,"828 12th St, Portland, OR 97035" +195242,34in Ultrawide Monitor,1,379.99,04/28/19 20:31,"717 Washington St, Portland, ME 04101" +195243,AAA Batteries (4-pack),1,2.99,04/24/19 22:37,"753 13th St, Los Angeles, CA 90001" +195244,AAA Batteries (4-pack),2,2.99,04/23/19 19:35,"721 Highland St, New York City, NY 10001" +195245,AA Batteries (4-pack),1,3.84,04/04/19 22:57,"253 Ridge St, Atlanta, GA 30301" +195246,AAA Batteries (4-pack),3,2.99,04/13/19 11:14,"839 Jackson St, Dallas, TX 75001" +195247,Flatscreen TV,1,300,04/04/19 11:16,"765 Wilson St, New York City, NY 10001" +195248,AAA Batteries (4-pack),2,2.99,04/08/19 08:59,"719 Washington St, Seattle, WA 98101" +195249,Flatscreen TV,1,300,04/16/19 08:42,"216 Elm St, Portland, OR 97035" +195250,USB-C Charging Cable,1,11.95,04/03/19 21:04,"821 Madison St, San Francisco, CA 94016" +195251,Lightning Charging Cable,1,14.95,04/28/19 11:01,"130 Ridge St, San Francisco, CA 94016" +195252,Wired Headphones,1,11.99,04/26/19 08:19,"603 Jefferson St, Atlanta, GA 30301" +195253,AA Batteries (4-pack),1,3.84,04/14/19 13:10,"819 13th St, Boston, MA 02215" +195254,Wired Headphones,1,11.99,04/28/19 20:31,"889 4th St, San Francisco, CA 94016" +195255,27in FHD Monitor,1,149.99,04/28/19 22:54,"77 13th St, Austin, TX 73301" +195256,Macbook Pro Laptop,1,1700,04/02/19 18:58,"970 1st St, San Francisco, CA 94016" +195257,Lightning Charging Cable,1,14.95,04/20/19 18:31,"138 Forest St, Boston, MA 02215" +195258,ThinkPad Laptop,1,999.99,04/08/19 18:33,"202 Forest St, San Francisco, CA 94016" +195259,Apple Airpods Headphones,1,150,04/17/19 21:00,"366 Sunset St, Los Angeles, CA 90001" +195260,AA Batteries (4-pack),3,3.84,04/20/19 20:33,"265 Park St, Portland, OR 97035" +195261,AAA Batteries (4-pack),1,2.99,04/21/19 16:30,"822 4th St, Boston, MA 02215" +195262,34in Ultrawide Monitor,1,379.99,04/08/19 15:02,"317 West St, San Francisco, CA 94016" +195263,Lightning Charging Cable,1,14.95,04/30/19 12:14,"952 Highland St, Boston, MA 02215" +195264,Wired Headphones,1,11.99,04/07/19 10:50,"325 Cedar St, Los Angeles, CA 90001" +195265,AAA Batteries (4-pack),1,2.99,04/08/19 13:29,"592 Ridge St, San Francisco, CA 94016" +195266,AAA Batteries (4-pack),1,2.99,04/15/19 16:22,"490 6th St, Portland, ME 04101" +195267,Lightning Charging Cable,1,14.95,04/16/19 12:51,"84 West St, Dallas, TX 75001" +195268,27in FHD Monitor,1,149.99,04/10/19 17:51,"504 North St, Los Angeles, CA 90001" +195269,Bose SoundSport Headphones,1,99.99,04/07/19 10:29,"337 Ridge St, San Francisco, CA 94016" +195270,AA Batteries (4-pack),2,3.84,04/13/19 19:37,"825 West St, Portland, OR 97035" +195271,Bose SoundSport Headphones,1,99.99,04/09/19 11:24,"406 Spruce St, Los Angeles, CA 90001" +195272,USB-C Charging Cable,1,11.95,04/09/19 20:26,"865 12th St, Dallas, TX 75001" +195273,USB-C Charging Cable,2,11.95,04/24/19 20:04,"522 Chestnut St, New York City, NY 10001" +195274,AAA Batteries (4-pack),1,2.99,04/04/19 17:22,"151 2nd St, Los Angeles, CA 90001" +195275,USB-C Charging Cable,1,11.95,04/29/19 14:20,"453 9th St, Los Angeles, CA 90001" +195276,Flatscreen TV,1,300,04/08/19 00:05,"281 Willow St, New York City, NY 10001" +195277,ThinkPad Laptop,1,999.99,04/19/19 21:39,"510 Spruce St, Seattle, WA 98101" +195278,Lightning Charging Cable,2,14.95,04/06/19 11:54,"701 Maple St, San Francisco, CA 94016" +195279,AA Batteries (4-pack),2,3.84,04/18/19 23:10,"347 Meadow St, Los Angeles, CA 90001" +195280,Apple Airpods Headphones,1,150,04/11/19 11:38,"256 Center St, Atlanta, GA 30301" +195281,Wired Headphones,1,11.99,04/05/19 20:48,"996 North St, Austin, TX 73301" +195282,Wired Headphones,2,11.99,04/10/19 11:28,"77 River St, Boston, MA 02215" +195283,Lightning Charging Cable,1,14.95,04/19/19 14:36,"208 11th St, San Francisco, CA 94016" +195284,20in Monitor,1,109.99,04/05/19 12:17,"43 2nd St, Boston, MA 02215" +195285,AAA Batteries (4-pack),2,2.99,04/19/19 05:46,"10 Spruce St, New York City, NY 10001" +195286,27in FHD Monitor,1,149.99,04/06/19 23:01,"355 Walnut St, Dallas, TX 75001" +195287,27in 4K Gaming Monitor,1,389.99,04/22/19 13:22,"616 6th St, Portland, OR 97035" +195288,Apple Airpods Headphones,1,150,04/25/19 07:41,"298 Jefferson St, Portland, OR 97035" +195289,AA Batteries (4-pack),1,3.84,04/17/19 12:26,"324 10th St, Los Angeles, CA 90001" +195290,iPhone,1,700,04/08/19 17:00,"499 6th St, New York City, NY 10001" +195290,Wired Headphones,1,11.99,04/08/19 17:00,"499 6th St, New York City, NY 10001" +195291,AAA Batteries (4-pack),3,2.99,04/09/19 16:18,"878 Cherry St, New York City, NY 10001" +195292,AAA Batteries (4-pack),2,2.99,04/18/19 10:12,"897 Sunset St, Dallas, TX 75001" +195293,Wired Headphones,1,11.99,04/05/19 11:33,"227 Lake St, Austin, TX 73301" +195294,Lightning Charging Cable,2,14.95,04/09/19 12:34,"122 4th St, New York City, NY 10001" +195295,AA Batteries (4-pack),1,3.84,04/10/19 17:18,"863 Ridge St, Dallas, TX 75001" +195296,Bose SoundSport Headphones,1,99.99,04/24/19 10:32,"945 Spruce St, San Francisco, CA 94016" +195297,AAA Batteries (4-pack),1,2.99,04/18/19 12:26,"475 Jefferson St, Austin, TX 73301" +195298,AA Batteries (4-pack),1,3.84,04/01/19 12:28,"260 7th St, Boston, MA 02215" +195299,Wired Headphones,1,11.99,04/23/19 00:30,"779 Cherry St, Los Angeles, CA 90001" +195300,AA Batteries (4-pack),2,3.84,04/17/19 11:28,"259 Main St, New York City, NY 10001" +195301,Vareebadd Phone,1,400,04/01/19 20:49,"655 Maple St, Boston, MA 02215" +195302,Apple Airpods Headphones,1,150,04/10/19 11:39,"668 South St, Seattle, WA 98101" +195303,AAA Batteries (4-pack),1,2.99,04/16/19 11:44,"115 West St, Dallas, TX 75001" +195304,USB-C Charging Cable,1,11.95,04/05/19 12:31,"119 13th St, New York City, NY 10001" +195305,Apple Airpods Headphones,1,150,04/09/19 23:22,"700 Spruce St, Los Angeles, CA 90001" +195306,Bose SoundSport Headphones,1,99.99,04/26/19 18:28,"696 Church St, Los Angeles, CA 90001" +195307,USB-C Charging Cable,1,11.95,04/01/19 14:02,"176 Maple St, San Francisco, CA 94016" +195308,Wired Headphones,1,11.99,04/11/19 17:29,"500 Lincoln St, San Francisco, CA 94016" +195309,USB-C Charging Cable,1,11.95,04/16/19 15:08,"969 7th St, Los Angeles, CA 90001" +195310,Google Phone,1,600,04/25/19 02:48,"231 Jackson St, San Francisco, CA 94016" +195310,USB-C Charging Cable,1,11.95,04/25/19 02:48,"231 Jackson St, San Francisco, CA 94016" +195311,Bose SoundSport Headphones,1,99.99,04/05/19 08:14,"344 Elm St, New York City, NY 10001" +195312,Lightning Charging Cable,1,14.95,04/26/19 14:10,"393 10th St, San Francisco, CA 94016" +195313,Bose SoundSport Headphones,1,99.99,04/15/19 11:00,"665 Maple St, Austin, TX 73301" +195314,AAA Batteries (4-pack),1,2.99,04/07/19 12:47,"486 River St, Los Angeles, CA 90001" +195315,Lightning Charging Cable,1,14.95,04/28/19 19:37,"678 Walnut St, San Francisco, CA 94016" +195316,Lightning Charging Cable,1,14.95,04/15/19 21:27,"727 Cedar St, Atlanta, GA 30301" +195317,AAA Batteries (4-pack),4,2.99,04/29/19 10:09,"839 6th St, Boston, MA 02215" +195318,Wired Headphones,1,11.99,04/19/19 11:25,"684 13th St, Los Angeles, CA 90001" +195319,Apple Airpods Headphones,1,150,04/15/19 13:07,"467 Willow St, New York City, NY 10001" +195320,34in Ultrawide Monitor,1,379.99,04/30/19 21:12,"322 River St, New York City, NY 10001" +195321,Google Phone,1,600,04/06/19 19:13,"309 West St, New York City, NY 10001" +195322,34in Ultrawide Monitor,1,379.99,04/14/19 15:24,"365 Adams St, Los Angeles, CA 90001" +195323,27in FHD Monitor,1,149.99,04/28/19 20:07,"532 1st St, San Francisco, CA 94016" +195324,AA Batteries (4-pack),1,3.84,04/19/19 15:29,"708 2nd St, Dallas, TX 75001" +195325,Apple Airpods Headphones,1,150,04/01/19 19:38,"321 9th St, Boston, MA 02215" +195326,Apple Airpods Headphones,1,150,04/15/19 16:37,"963 11th St, Atlanta, GA 30301" +195327,34in Ultrawide Monitor,1,379.99,04/08/19 19:00,"366 8th St, Boston, MA 02215" +195328,20in Monitor,1,109.99,04/29/19 09:05,"935 Cherry St, New York City, NY 10001" +195329,Apple Airpods Headphones,1,150,04/15/19 22:57,"5 Sunset St, Austin, TX 73301" +195330,Apple Airpods Headphones,1,150,04/29/19 03:25,"887 Walnut St, San Francisco, CA 94016" +195331,Wired Headphones,1,11.99,04/22/19 15:53,"652 Meadow St, Dallas, TX 75001" +195332,27in 4K Gaming Monitor,1,389.99,04/16/19 09:17,"272 Sunset St, Los Angeles, CA 90001" +195333,Wired Headphones,2,11.99,04/02/19 13:53,"777 Sunset St, Portland, OR 97035" +195334,Wired Headphones,2,11.99,04/06/19 17:41,"440 Cherry St, Atlanta, GA 30301" +195335,34in Ultrawide Monitor,1,379.99,04/18/19 08:58,"799 South St, Los Angeles, CA 90001" +195336,iPhone,1,700,04/28/19 23:13,"263 8th St, Portland, ME 04101" +195337,Apple Airpods Headphones,1,150,04/28/19 13:21,"763 Chestnut St, Los Angeles, CA 90001" +195338,Google Phone,1,600,04/25/19 23:23,"463 Center St, San Francisco, CA 94016" +195339,Lightning Charging Cable,1,14.95,04/15/19 18:23,"213 Lincoln St, Boston, MA 02215" +195340,AAA Batteries (4-pack),1,2.99,04/10/19 22:51,"610 Center St, New York City, NY 10001" +195341,Lightning Charging Cable,1,14.95,04/14/19 09:51,"889 Washington St, Seattle, WA 98101" +195342,AA Batteries (4-pack),1,3.84,04/01/19 14:35,"603 Wilson St, Dallas, TX 75001" +195343,27in 4K Gaming Monitor,1,389.99,04/02/19 11:44,"684 Forest St, Atlanta, GA 30301" +195344,AA Batteries (4-pack),1,3.84,04/23/19 10:17,"247 9th St, Austin, TX 73301" +195345,USB-C Charging Cable,1,11.95,04/10/19 21:19,"490 Lakeview St, New York City, NY 10001" +195346,Google Phone,1,600,04/03/19 07:36,"473 Madison St, Los Angeles, CA 90001" +195346,USB-C Charging Cable,1,11.95,04/03/19 07:36,"473 Madison St, Los Angeles, CA 90001" +195347,Apple Airpods Headphones,1,150,04/01/19 21:18,"998 4th St, San Francisco, CA 94016" +195348,AAA Batteries (4-pack),1,2.99,04/22/19 11:53,"416 Cedar St, Dallas, TX 75001" +195349,USB-C Charging Cable,1,11.95,04/27/19 12:42,"54 Jefferson St, Boston, MA 02215" +195350,iPhone,1,700,04/07/19 14:32,"409 Jackson St, Dallas, TX 75001" +195350,Wired Headphones,1,11.99,04/07/19 14:32,"409 Jackson St, Dallas, TX 75001" +195351,Wired Headphones,1,11.99,04/02/19 20:57,"584 12th St, New York City, NY 10001" +195352,34in Ultrawide Monitor,1,379.99,04/04/19 10:58,"248 Forest St, Los Angeles, CA 90001" +195353,Lightning Charging Cable,1,14.95,04/12/19 22:23,"638 River St, Dallas, TX 75001" +195354,Wired Headphones,1,11.99,04/19/19 12:40,"693 Elm St, Dallas, TX 75001" +195354,AAA Batteries (4-pack),2,2.99,04/19/19 12:40,"693 Elm St, Dallas, TX 75001" +195355,27in 4K Gaming Monitor,1,389.99,04/03/19 08:13,"86 Meadow St, Seattle, WA 98101" +195356,Apple Airpods Headphones,1,150,04/09/19 11:24,"635 Lincoln St, San Francisco, CA 94016" +195357,Bose SoundSport Headphones,1,99.99,04/07/19 18:47,"792 Dogwood St, New York City, NY 10001" +195358,AAA Batteries (4-pack),1,2.99,04/07/19 01:35,"743 Adams St, New York City, NY 10001" +195359,Flatscreen TV,1,300,04/21/19 22:03,"738 8th St, Austin, TX 73301" +195360,34in Ultrawide Monitor,1,379.99,04/15/19 22:07,"860 Sunset St, Los Angeles, CA 90001" +195361,27in 4K Gaming Monitor,1,389.99,04/22/19 11:34,"910 Main St, San Francisco, CA 94016" +195362,27in FHD Monitor,1,149.99,04/13/19 18:23,"382 12th St, Seattle, WA 98101" +195363,Apple Airpods Headphones,1,150,04/17/19 11:03,"981 Washington St, San Francisco, CA 94016" +195364,Bose SoundSport Headphones,1,99.99,04/04/19 10:41,"924 West St, San Francisco, CA 94016" +195365,Wired Headphones,1,11.99,04/17/19 09:14,"163 Ridge St, Los Angeles, CA 90001" +195366,Macbook Pro Laptop,1,1700,04/27/19 13:56,"915 Sunset St, San Francisco, CA 94016" +195367,Apple Airpods Headphones,1,150,04/19/19 10:22,"815 Forest St, Atlanta, GA 30301" +195368,Lightning Charging Cable,1,14.95,04/03/19 19:07,"660 Cherry St, New York City, NY 10001" +195369,AA Batteries (4-pack),1,3.84,04/01/19 18:37,"572 Elm St, Los Angeles, CA 90001" +195370,USB-C Charging Cable,1,11.95,04/06/19 13:05,"765 14th St, Los Angeles, CA 90001" +195371,AAA Batteries (4-pack),1,2.99,04/23/19 22:59,"162 6th St, San Francisco, CA 94016" +195371,AA Batteries (4-pack),1,3.84,04/23/19 22:59,"162 6th St, San Francisco, CA 94016" +195372,Wired Headphones,1,11.99,04/01/19 08:24,"750 12th St, Los Angeles, CA 90001" +195373,Macbook Pro Laptop,1,1700,04/09/19 10:19,"823 14th St, Los Angeles, CA 90001" +195374,27in FHD Monitor,1,149.99,04/28/19 14:38,"904 Lake St, Atlanta, GA 30301" +195375,Apple Airpods Headphones,1,150,04/07/19 11:32,"206 Highland St, Seattle, WA 98101" +195376,AA Batteries (4-pack),1,3.84,04/24/19 18:02,"974 South St, San Francisco, CA 94016" +195377,Bose SoundSport Headphones,1,99.99,04/03/19 09:09,"494 Adams St, New York City, NY 10001" +195377,Lightning Charging Cable,1,14.95,04/03/19 09:09,"494 Adams St, New York City, NY 10001" +195378,Apple Airpods Headphones,1,150,04/29/19 16:53,"788 Sunset St, San Francisco, CA 94016" +195379,AAA Batteries (4-pack),1,2.99,04/26/19 19:17,"152 Park St, Los Angeles, CA 90001" +195380,AA Batteries (4-pack),1,3.84,04/21/19 06:58,"461 Forest St, Austin, TX 73301" +195381,Bose SoundSport Headphones,1,99.99,04/16/19 13:31,"975 Meadow St, Boston, MA 02215" +195382,AA Batteries (4-pack),1,3.84,04/24/19 21:54,"94 Lakeview St, San Francisco, CA 94016" +195383,Google Phone,1,600,04/07/19 15:56,"317 Dogwood St, San Francisco, CA 94016" +195383,Wired Headphones,1,11.99,04/07/19 15:56,"317 Dogwood St, San Francisco, CA 94016" +195384,AAA Batteries (4-pack),2,2.99,04/24/19 19:58,"559 Main St, Seattle, WA 98101" +195385,Vareebadd Phone,1,400,04/30/19 14:32,"299 2nd St, Los Angeles, CA 90001" +195385,Wired Headphones,1,11.99,04/30/19 14:32,"299 2nd St, Los Angeles, CA 90001" +195386,Apple Airpods Headphones,1,150,04/28/19 14:32,"289 Center St, Dallas, TX 75001" +195387,Lightning Charging Cable,1,14.95,04/14/19 21:49,"49 Spruce St, Boston, MA 02215" +195388,34in Ultrawide Monitor,1,379.99,04/15/19 22:49,"937 Meadow St, San Francisco, CA 94016" +195389,Lightning Charging Cable,1,14.95,04/11/19 13:00,"881 Elm St, San Francisco, CA 94016" +195390,27in FHD Monitor,1,149.99,04/13/19 09:12,"158 Lakeview St, San Francisco, CA 94016" +195391,27in FHD Monitor,1,149.99,04/26/19 17:05,"209 4th St, San Francisco, CA 94016" +195392,27in FHD Monitor,1,149.99,04/11/19 23:19,"260 Jefferson St, Los Angeles, CA 90001" +195393,34in Ultrawide Monitor,1,379.99,04/17/19 17:55,"688 9th St, San Francisco, CA 94016" +195394,Lightning Charging Cable,1,14.95,04/01/19 22:19,"579 Hickory St, Boston, MA 02215" +195395,Wired Headphones,1,11.99,04/16/19 19:45,"381 Lake St, San Francisco, CA 94016" +195396,Lightning Charging Cable,1,14.95,04/23/19 16:09,"130 Park St, New York City, NY 10001" +195396,Wired Headphones,1,11.99,04/23/19 16:09,"130 Park St, New York City, NY 10001" +195397,ThinkPad Laptop,1,999.99,04/20/19 10:06,"993 South St, Boston, MA 02215" +195398,Lightning Charging Cable,1,14.95,04/25/19 08:23,"739 Forest St, New York City, NY 10001" +195399,Bose SoundSport Headphones,1,99.99,04/09/19 13:07,"604 Maple St, San Francisco, CA 94016" +195400,Lightning Charging Cable,1,14.95,04/30/19 00:50,"903 Cedar St, San Francisco, CA 94016" +195401,Macbook Pro Laptop,1,1700,04/11/19 11:41,"480 Adams St, New York City, NY 10001" +195402,AA Batteries (4-pack),1,3.84,04/22/19 17:20,"419 Jefferson St, Dallas, TX 75001" +195403,AA Batteries (4-pack),1,3.84,04/19/19 13:56,"531 Ridge St, Portland, OR 97035" +195404,Bose SoundSport Headphones,1,99.99,04/21/19 14:34,"241 Ridge St, San Francisco, CA 94016" +195405,Wired Headphones,1,11.99,04/23/19 17:18,"496 8th St, Portland, OR 97035" +195406,AA Batteries (4-pack),1,3.84,04/04/19 18:01,"833 Spruce St, Atlanta, GA 30301" +195407,Bose SoundSport Headphones,1,99.99,04/17/19 14:27,"613 Meadow St, San Francisco, CA 94016" +195408,AAA Batteries (4-pack),1,2.99,04/03/19 09:20,"94 Willow St, Seattle, WA 98101" +195409,27in FHD Monitor,1,149.99,04/27/19 18:55,"369 Pine St, Atlanta, GA 30301" +195410,AAA Batteries (4-pack),3,2.99,04/06/19 22:54,"793 13th St, Los Angeles, CA 90001" +195411,34in Ultrawide Monitor,1,379.99,04/06/19 23:33,"782 Main St, San Francisco, CA 94016" +195412,AA Batteries (4-pack),2,3.84,04/19/19 21:58,"912 Spruce St, Los Angeles, CA 90001" +195413,AAA Batteries (4-pack),1,2.99,04/29/19 19:27,"885 Spruce St, Los Angeles, CA 90001" +195414,Apple Airpods Headphones,1,150,04/20/19 18:47,"642 1st St, Los Angeles, CA 90001" +195415,Wired Headphones,1,11.99,04/28/19 11:33,"354 Pine St, Seattle, WA 98101" +195416,AA Batteries (4-pack),1,3.84,04/04/19 17:36,"352 Chestnut St, San Francisco, CA 94016" +195417,Bose SoundSport Headphones,1,99.99,04/19/19 19:37,"525 Hickory St, Boston, MA 02215" +195418,AAA Batteries (4-pack),3,2.99,04/23/19 15:34,"999 2nd St, Los Angeles, CA 90001" +195419,USB-C Charging Cable,2,11.95,04/27/19 10:14,"110 Wilson St, San Francisco, CA 94016" +195420,Google Phone,1,600,04/16/19 21:51,"203 Dogwood St, Atlanta, GA 30301" +195420,USB-C Charging Cable,1,11.95,04/16/19 21:51,"203 Dogwood St, Atlanta, GA 30301" +195421,AA Batteries (4-pack),1,3.84,04/07/19 13:29,"960 Main St, New York City, NY 10001" +195422,Lightning Charging Cable,1,14.95,04/11/19 06:44,"999 Wilson St, Boston, MA 02215" +195423,Apple Airpods Headphones,1,150,04/10/19 02:37,"556 10th St, San Francisco, CA 94016" +195424,Bose SoundSport Headphones,1,99.99,04/19/19 14:26,"223 13th St, Atlanta, GA 30301" +195425,Lightning Charging Cable,1,14.95,04/16/19 17:48,"595 Jefferson St, Seattle, WA 98101" +195426,Lightning Charging Cable,1,14.95,04/01/19 11:46,"57 Hickory St, Atlanta, GA 30301" +195427,AA Batteries (4-pack),1,3.84,04/05/19 11:32,"745 Jackson St, San Francisco, CA 94016" +195428,Bose SoundSport Headphones,1,99.99,04/07/19 12:39,"109 Jefferson St, Dallas, TX 75001" +195429,Apple Airpods Headphones,1,150,04/11/19 22:18,"935 Johnson St, New York City, NY 10001" +195430,Lightning Charging Cable,1,14.95,04/26/19 16:33,"677 Center St, Seattle, WA 98101" +195431,AA Batteries (4-pack),1,3.84,04/30/19 11:09,"68 2nd St, New York City, NY 10001" +195432,34in Ultrawide Monitor,1,379.99,04/18/19 11:11,"748 Lincoln St, Seattle, WA 98101" +195433,Bose SoundSport Headphones,1,99.99,04/10/19 14:00,"649 South St, San Francisco, CA 94016" +195434,AA Batteries (4-pack),1,3.84,04/13/19 20:31,"607 Wilson St, Austin, TX 73301" +195435,Apple Airpods Headphones,1,150,04/12/19 12:45,"512 5th St, San Francisco, CA 94016" +195436,USB-C Charging Cable,1,11.95,04/22/19 18:44,"849 Jackson St, Seattle, WA 98101" +195437,20in Monitor,1,109.99,04/28/19 08:37,"920 Church St, Boston, MA 02215" +195438,USB-C Charging Cable,1,11.95,04/27/19 20:11,"494 Ridge St, New York City, NY 10001" +195439,Lightning Charging Cable,1,14.95,04/10/19 16:18,"59 Washington St, Los Angeles, CA 90001" +195440,USB-C Charging Cable,1,11.95,04/01/19 11:04,"711 8th St, Dallas, TX 75001" +195441,AA Batteries (4-pack),1,3.84,04/03/19 14:56,"449 14th St, New York City, NY 10001" +195442,Lightning Charging Cable,1,14.95,04/16/19 09:40,"887 6th St, Portland, OR 97035" +195443,Macbook Pro Laptop,1,1700,04/24/19 11:00,"98 West St, San Francisco, CA 94016" +195444,Lightning Charging Cable,1,14.95,04/14/19 21:47,"230 10th St, San Francisco, CA 94016" +195445,34in Ultrawide Monitor,1,379.99,04/18/19 12:36,"622 Jackson St, Atlanta, GA 30301" +195446,Lightning Charging Cable,1,14.95,04/14/19 13:22,"573 9th St, San Francisco, CA 94016" +195447,USB-C Charging Cable,1,11.95,04/06/19 08:51,"572 9th St, San Francisco, CA 94016" +195448,USB-C Charging Cable,1,11.95,04/03/19 19:42,"522 6th St, Los Angeles, CA 90001" +195449,ThinkPad Laptop,1,999.99,04/12/19 17:52,"837 14th St, San Francisco, CA 94016" +195450,USB-C Charging Cable,1,11.95,04/14/19 09:40,"158 Jackson St, Los Angeles, CA 90001" +195451,Bose SoundSport Headphones,1,99.99,04/21/19 19:33,"528 Jefferson St, San Francisco, CA 94016" +195452,ThinkPad Laptop,1,999.99,04/28/19 17:45,"82 River St, San Francisco, CA 94016" +195453,Wired Headphones,1,11.99,04/27/19 20:03,"317 7th St, Los Angeles, CA 90001" +195454,USB-C Charging Cable,1,11.95,04/20/19 15:40,"210 13th St, Dallas, TX 75001" +195455,USB-C Charging Cable,1,11.95,04/04/19 11:15,"712 Johnson St, Los Angeles, CA 90001" +195456,ThinkPad Laptop,1,999.99,04/08/19 13:02,"827 14th St, Portland, OR 97035" +195457,Bose SoundSport Headphones,1,99.99,04/17/19 16:06,"974 Lakeview St, Atlanta, GA 30301" +195458,USB-C Charging Cable,1,11.95,04/16/19 22:34,"714 Main St, Los Angeles, CA 90001" +195459,Bose SoundSport Headphones,1,99.99,04/02/19 00:38,"212 5th St, Los Angeles, CA 90001" +195460,LG Dryer,1,600.0,04/08/19 16:52,"939 11th St, Boston, MA 02215" +195461,Wired Headphones,1,11.99,04/25/19 12:20,"630 4th St, New York City, NY 10001" +195462,27in 4K Gaming Monitor,1,389.99,04/09/19 05:53,"260 13th St, New York City, NY 10001" +195463,USB-C Charging Cable,1,11.95,04/07/19 21:15,"708 Willow St, Boston, MA 02215" +195464,AAA Batteries (4-pack),1,2.99,04/12/19 17:22,"739 Jefferson St, New York City, NY 10001" +195465,34in Ultrawide Monitor,1,379.99,04/18/19 18:34,"854 Washington St, San Francisco, CA 94016" +195466,Flatscreen TV,1,300,04/11/19 11:11,"716 9th St, Seattle, WA 98101" +195467,Lightning Charging Cable,1,14.95,04/02/19 19:24,"601 Wilson St, San Francisco, CA 94016" +195468,Wired Headphones,1,11.99,04/21/19 10:17,"262 Jefferson St, San Francisco, CA 94016" +195469,Wired Headphones,1,11.99,04/23/19 19:20,"728 13th St, Portland, OR 97035" +195469,AAA Batteries (4-pack),1,2.99,04/23/19 19:20,"728 13th St, Portland, OR 97035" +195470,Wired Headphones,1,11.99,04/06/19 23:15,"942 12th St, San Francisco, CA 94016" +195471,Apple Airpods Headphones,1,150,04/13/19 14:37,"165 9th St, San Francisco, CA 94016" +195472,ThinkPad Laptop,1,999.99,04/23/19 09:15,"23 Meadow St, San Francisco, CA 94016" +195473,27in 4K Gaming Monitor,1,389.99,04/12/19 16:54,"373 2nd St, New York City, NY 10001" +195474,Bose SoundSport Headphones,1,99.99,04/23/19 11:30,"298 Ridge St, New York City, NY 10001" +195475,AAA Batteries (4-pack),2,2.99,04/08/19 15:25,"465 Hickory St, San Francisco, CA 94016" +195476,Wired Headphones,1,11.99,04/23/19 13:54,"969 11th St, Los Angeles, CA 90001" +195477,20in Monitor,1,109.99,04/26/19 09:52,"110 6th St, San Francisco, CA 94016" +195478,Wired Headphones,1,11.99,04/13/19 13:08,"45 9th St, Boston, MA 02215" +195479,Lightning Charging Cable,1,14.95,04/24/19 02:45,"801 Hickory St, Atlanta, GA 30301" +195480,27in 4K Gaming Monitor,1,389.99,04/09/19 06:26,"451 Cedar St, New York City, NY 10001" +195481,Wired Headphones,1,11.99,04/17/19 20:02,"666 13th St, Los Angeles, CA 90001" +195482,AA Batteries (4-pack),1,3.84,04/17/19 13:28,"870 Cedar St, Portland, OR 97035" +195483,20in Monitor,1,109.99,04/27/19 13:33,"669 Maple St, San Francisco, CA 94016" +195484,Apple Airpods Headphones,1,150,04/30/19 21:17,"37 Park St, Portland, OR 97035" +195485,Bose SoundSport Headphones,1,99.99,04/05/19 19:04,"549 Walnut St, Seattle, WA 98101" +195486,USB-C Charging Cable,1,11.95,04/21/19 19:45,"830 Hill St, Seattle, WA 98101" +195487,Apple Airpods Headphones,1,150,04/03/19 13:00,"215 14th St, Seattle, WA 98101" +195488,34in Ultrawide Monitor,1,379.99,04/21/19 22:31,"496 1st St, Portland, OR 97035" +195489,USB-C Charging Cable,1,11.95,04/10/19 23:08,"408 Adams St, New York City, NY 10001" +195490,Lightning Charging Cable,1,14.95,04/06/19 18:30,"155 Johnson St, New York City, NY 10001" +195491,Bose SoundSport Headphones,1,99.99,04/07/19 20:15,"308 Hill St, Boston, MA 02215" +195492,Bose SoundSport Headphones,1,99.99,04/28/19 01:56,"765 South St, Boston, MA 02215" +195493,Lightning Charging Cable,1,14.95,04/11/19 10:27,"167 Hickory St, Los Angeles, CA 90001" +195494,Google Phone,1,600,04/25/19 19:14,"573 Church St, San Francisco, CA 94016" +195494,USB-C Charging Cable,1,11.95,04/25/19 19:14,"573 Church St, San Francisco, CA 94016" +195495,Lightning Charging Cable,1,14.95,04/25/19 12:26,"135 8th St, Seattle, WA 98101" +195496,Apple Airpods Headphones,1,150,04/14/19 21:54,"53 Lakeview St, Los Angeles, CA 90001" +195497,Bose SoundSport Headphones,1,99.99,04/05/19 13:38,"712 10th St, Los Angeles, CA 90001" +195498,USB-C Charging Cable,1,11.95,04/11/19 23:20,"978 Church St, San Francisco, CA 94016" +195499,20in Monitor,2,109.99,04/16/19 10:43,"394 Hickory St, San Francisco, CA 94016" +195500,Apple Airpods Headphones,1,150,04/03/19 08:45,"953 North St, San Francisco, CA 94016" +195501,ThinkPad Laptop,1,999.99,04/15/19 16:22,"769 Dogwood St, San Francisco, CA 94016" +195502,Wired Headphones,1,11.99,04/22/19 11:56,"381 Willow St, Dallas, TX 75001" +195503,USB-C Charging Cable,1,11.95,04/19/19 16:11,"721 7th St, Austin, TX 73301" +195504,USB-C Charging Cable,1,11.95,04/27/19 17:03,"781 Meadow St, San Francisco, CA 94016" +195505,Bose SoundSport Headphones,1,99.99,04/21/19 21:33,"900 Walnut St, Portland, OR 97035" +195506,Apple Airpods Headphones,1,150,04/06/19 08:14,"110 South St, New York City, NY 10001" +195507,20in Monitor,1,109.99,04/12/19 13:32,"61 7th St, Seattle, WA 98101" +195508,Lightning Charging Cable,1,14.95,04/14/19 16:19,"36 Jackson St, San Francisco, CA 94016" +195509,Wired Headphones,1,11.99,04/24/19 19:14,"179 7th St, Portland, OR 97035" +195510,Bose SoundSport Headphones,1,99.99,04/05/19 15:24,"707 Cherry St, San Francisco, CA 94016" +195511,AA Batteries (4-pack),1,3.84,04/30/19 10:02,"164 13th St, Boston, MA 02215" +195512,Apple Airpods Headphones,1,150,04/19/19 20:04,"561 Chestnut St, Atlanta, GA 30301" +195513,27in FHD Monitor,1,149.99,04/17/19 18:46,"661 Ridge St, New York City, NY 10001" +195514,Wired Headphones,1,11.99,04/23/19 08:41,"377 Sunset St, Austin, TX 73301" +195515,Macbook Pro Laptop,1,1700,04/10/19 16:59,"211 Ridge St, Austin, TX 73301" +195516,iPhone,1,700,04/10/19 23:30,"205 1st St, New York City, NY 10001" +195516,Apple Airpods Headphones,1,150,04/10/19 23:30,"205 1st St, New York City, NY 10001" +195517,AA Batteries (4-pack),1,3.84,04/04/19 12:21,"957 Cherry St, Portland, OR 97035" +195518,Lightning Charging Cable,1,14.95,04/20/19 23:26,"550 North St, Austin, TX 73301" +195519,AA Batteries (4-pack),2,3.84,04/22/19 18:23,"270 8th St, San Francisco, CA 94016" +195520,Lightning Charging Cable,1,14.95,04/17/19 16:40,"577 Main St, Los Angeles, CA 90001" +195521,AAA Batteries (4-pack),1,2.99,04/28/19 01:01,"35 River St, Seattle, WA 98101" +195522,Wired Headphones,1,11.99,04/26/19 12:44,"189 Center St, Boston, MA 02215" +195523,34in Ultrawide Monitor,1,379.99,04/03/19 15:48,"998 Washington St, San Francisco, CA 94016" +195524,AAA Batteries (4-pack),2,2.99,04/14/19 13:42,"57 7th St, Los Angeles, CA 90001" +195525,20in Monitor,1,109.99,04/16/19 10:32,"302 5th St, San Francisco, CA 94016" +195526,34in Ultrawide Monitor,1,379.99,04/26/19 14:14,"802 Lakeview St, Seattle, WA 98101" +195527,27in FHD Monitor,1,149.99,04/12/19 11:11,"673 5th St, Boston, MA 02215" +195528,Bose SoundSport Headphones,1,99.99,04/30/19 23:45,"725 Washington St, Austin, TX 73301" +195529,AA Batteries (4-pack),1,3.84,04/11/19 09:11,"695 Lincoln St, San Francisco, CA 94016" +195530,AAA Batteries (4-pack),1,2.99,04/30/19 19:30,"879 13th St, Los Angeles, CA 90001" +195531,27in FHD Monitor,1,149.99,04/11/19 17:29,"74 Meadow St, Boston, MA 02215" +195532,27in FHD Monitor,1,149.99,04/13/19 10:49,"578 5th St, Portland, OR 97035" +195533,Macbook Pro Laptop,1,1700,04/28/19 13:47,"810 Lakeview St, Los Angeles, CA 90001" +195534,AA Batteries (4-pack),1,3.84,04/29/19 21:19,"770 Cherry St, Dallas, TX 75001" +195535,Wired Headphones,1,11.99,04/19/19 03:51,"608 North St, Atlanta, GA 30301" +195536,USB-C Charging Cable,1,11.95,04/06/19 17:35,"676 Sunset St, New York City, NY 10001" +195537,USB-C Charging Cable,1,11.95,04/26/19 10:35,"17 Elm St, Dallas, TX 75001" +195538,Wired Headphones,2,11.99,04/27/19 14:24,"934 Elm St, Portland, ME 04101" +195539,Google Phone,1,600,04/26/19 14:13,"115 14th St, Los Angeles, CA 90001" +195539,Wired Headphones,1,11.99,04/26/19 14:13,"115 14th St, Los Angeles, CA 90001" +195540,USB-C Charging Cable,1,11.95,04/01/19 11:58,"644 Highland St, San Francisco, CA 94016" +195541,AAA Batteries (4-pack),1,2.99,04/09/19 19:48,"914 Chestnut St, Atlanta, GA 30301" +195542,USB-C Charging Cable,1,11.95,04/19/19 20:38,"220 Park St, Los Angeles, CA 90001" +195543,Flatscreen TV,1,300,04/23/19 21:07,"263 Church St, Los Angeles, CA 90001" +195544,USB-C Charging Cable,2,11.95,04/16/19 09:26,"922 8th St, New York City, NY 10001" +195545,USB-C Charging Cable,1,11.95,04/27/19 20:49,"243 11th St, Los Angeles, CA 90001" +195546,AAA Batteries (4-pack),1,2.99,04/25/19 18:18,"295 Ridge St, Los Angeles, CA 90001" +195547,Wired Headphones,1,11.99,04/12/19 20:56,"523 Cedar St, Atlanta, GA 30301" +195548,34in Ultrawide Monitor,1,379.99,04/06/19 19:26,"618 Cherry St, New York City, NY 10001" +195549,iPhone,1,700,04/11/19 21:30,"590 1st St, Boston, MA 02215" +195550,Wired Headphones,1,11.99,04/28/19 11:45,"560 7th St, San Francisco, CA 94016" +195551,AA Batteries (4-pack),2,3.84,04/22/19 21:57,"408 Center St, Dallas, TX 75001" +195552,AAA Batteries (4-pack),1,2.99,04/23/19 13:36,"69 12th St, Portland, OR 97035" +195553,USB-C Charging Cable,1,11.95,04/17/19 16:24,"922 11th St, San Francisco, CA 94016" +195554,USB-C Charging Cable,1,11.95,04/16/19 23:29,"804 Willow St, Boston, MA 02215" +195555,Bose SoundSport Headphones,1,99.99,04/09/19 22:23,"386 Wilson St, San Francisco, CA 94016" +195556,Bose SoundSport Headphones,1,99.99,04/10/19 08:00,"307 North St, San Francisco, CA 94016" +195557,USB-C Charging Cable,1,11.95,04/22/19 15:52,"121 North St, San Francisco, CA 94016" +195558,Lightning Charging Cable,1,14.95,04/06/19 08:02,"299 Hickory St, Los Angeles, CA 90001" +195559,AA Batteries (4-pack),1,3.84,04/06/19 17:01,"638 Park St, Los Angeles, CA 90001" +195560,Lightning Charging Cable,1,14.95,04/23/19 14:46,"641 Spruce St, New York City, NY 10001" +195561,Wired Headphones,1,11.99,04/04/19 15:21,"845 Elm St, San Francisco, CA 94016" +195562,AAA Batteries (4-pack),1,2.99,04/08/19 11:46,"692 Maple St, Dallas, TX 75001" +195563,Apple Airpods Headphones,1,150,04/01/19 16:47,"232 7th St, San Francisco, CA 94016" +195564,iPhone,1,700,04/28/19 13:09,"633 Spruce St, Los Angeles, CA 90001" +195565,Wired Headphones,1,11.99,04/27/19 00:50,"339 2nd St, Los Angeles, CA 90001" +195566,Apple Airpods Headphones,1,150,04/15/19 14:30,"215 Center St, New York City, NY 10001" +195567,34in Ultrawide Monitor,1,379.99,04/19/19 17:13,"476 13th St, San Francisco, CA 94016" +195568,USB-C Charging Cable,1,11.95,04/12/19 23:29,"546 9th St, Los Angeles, CA 90001" +195569,Lightning Charging Cable,1,14.95,04/11/19 21:53,"199 Dogwood St, Seattle, WA 98101" +195570,27in 4K Gaming Monitor,1,389.99,04/08/19 21:05,"209 Sunset St, Atlanta, GA 30301" +195571,Apple Airpods Headphones,1,150,04/11/19 20:35,"8 4th St, Dallas, TX 75001" +195572,34in Ultrawide Monitor,1,379.99,04/25/19 13:52,"495 4th St, San Francisco, CA 94016" +195573,Vareebadd Phone,1,400,04/02/19 16:39,"843 7th St, San Francisco, CA 94016" +195574,AAA Batteries (4-pack),1,2.99,04/02/19 10:22,"85 Elm St, Dallas, TX 75001" +195575,Bose SoundSport Headphones,1,99.99,04/01/19 09:10,"209 Highland St, San Francisco, CA 94016" +195576,AAA Batteries (4-pack),2,2.99,04/26/19 09:32,"106 Jackson St, Portland, OR 97035" +195577,Flatscreen TV,1,300,04/17/19 13:09,"508 Adams St, Los Angeles, CA 90001" +195578,USB-C Charging Cable,1,11.95,04/24/19 12:47,"346 Jackson St, Los Angeles, CA 90001" +195579,iPhone,1,700,04/02/19 23:34,"588 Dogwood St, San Francisco, CA 94016" +195580,Google Phone,1,600,04/20/19 19:43,"234 Forest St, Austin, TX 73301" +195581,AAA Batteries (4-pack),1,2.99,04/10/19 17:17,"626 Highland St, San Francisco, CA 94016" +195582,AA Batteries (4-pack),1,3.84,04/22/19 19:11,"77 14th St, San Francisco, CA 94016" +195583,Lightning Charging Cable,1,14.95,04/13/19 13:31,"798 11th St, Los Angeles, CA 90001" +195584,Flatscreen TV,1,300,04/29/19 18:51,"937 River St, Boston, MA 02215" +195585,AA Batteries (4-pack),1,3.84,04/24/19 08:17,"284 Lincoln St, New York City, NY 10001" +195586,27in 4K Gaming Monitor,1,389.99,04/06/19 12:29,"396 Highland St, Dallas, TX 75001" +195587,Macbook Pro Laptop,1,1700,04/17/19 14:02,"438 Hill St, San Francisco, CA 94016" +195588,27in 4K Gaming Monitor,1,389.99,04/21/19 13:19,"33 Center St, San Francisco, CA 94016" +195589,Wired Headphones,1,11.99,04/11/19 18:29,"709 Madison St, Dallas, TX 75001" +195590,Google Phone,1,600,04/02/19 18:17,"308 Lincoln St, Atlanta, GA 30301" +195590,Bose SoundSport Headphones,1,99.99,04/02/19 18:17,"308 Lincoln St, Atlanta, GA 30301" +195591,iPhone,1,700,04/03/19 19:09,"325 Lakeview St, Los Angeles, CA 90001" +195592,USB-C Charging Cable,2,11.95,04/20/19 23:50,"156 5th St, Boston, MA 02215" +195593,Flatscreen TV,1,300,04/15/19 21:23,"273 Wilson St, Boston, MA 02215" +195594,Lightning Charging Cable,1,14.95,04/02/19 18:09,"208 Lincoln St, Boston, MA 02215" +195595,Macbook Pro Laptop,1,1700,04/20/19 20:16,"364 North St, Los Angeles, CA 90001" +195596,27in FHD Monitor,1,149.99,04/17/19 18:34,"487 Cherry St, Boston, MA 02215" +195597,Flatscreen TV,1,300,04/11/19 10:23,"470 Chestnut St, Atlanta, GA 30301" +195598,20in Monitor,1,109.99,04/06/19 12:23,"118 Highland St, New York City, NY 10001" +195599,Bose SoundSport Headphones,1,99.99,04/05/19 21:35,"247 Lakeview St, Boston, MA 02215" +195600,Lightning Charging Cable,1,14.95,04/28/19 20:46,"563 Park St, Seattle, WA 98101" +195601,Apple Airpods Headphones,1,150,04/01/19 15:37,"574 Dogwood St, Boston, MA 02215" +195602,USB-C Charging Cable,1,11.95,04/10/19 14:46,"809 River St, Atlanta, GA 30301" +195603,Flatscreen TV,1,300,04/23/19 18:56,"668 Main St, Atlanta, GA 30301" +195604,Vareebadd Phone,1,400,04/23/19 00:00,"691 Hill St, Los Angeles, CA 90001" +195605,Wired Headphones,3,11.99,04/24/19 18:15,"645 Willow St, Austin, TX 73301" +195606,20in Monitor,1,109.99,04/03/19 16:52,"440 12th St, Los Angeles, CA 90001" +195607,Google Phone,1,600,04/10/19 18:54,"164 6th St, San Francisco, CA 94016" +195608,AAA Batteries (4-pack),2,2.99,04/25/19 23:01,"630 Highland St, Los Angeles, CA 90001" +195609,Lightning Charging Cable,1,14.95,04/02/19 17:25,"523 Maple St, Seattle, WA 98101" +195610,27in 4K Gaming Monitor,1,389.99,04/21/19 14:01,"754 13th St, Boston, MA 02215" +195611,27in FHD Monitor,1,149.99,04/28/19 13:46,"121 Dogwood St, San Francisco, CA 94016" +195612,Apple Airpods Headphones,1,150,04/16/19 15:40,"359 8th St, San Francisco, CA 94016" +195613,Wired Headphones,1,11.99,04/19/19 21:03,"934 Dogwood St, New York City, NY 10001" +195614,AAA Batteries (4-pack),1,2.99,04/18/19 20:50,"718 Cherry St, New York City, NY 10001" +195615,AAA Batteries (4-pack),3,2.99,04/16/19 13:32,"406 Chestnut St, Portland, OR 97035" +195616,34in Ultrawide Monitor,1,379.99,04/25/19 18:52,"852 Cherry St, Los Angeles, CA 90001" +195617,AA Batteries (4-pack),2,3.84,04/04/19 11:07,"764 Lincoln St, San Francisco, CA 94016" +195618,Wired Headphones,1,11.99,04/25/19 10:46,"862 Chestnut St, Seattle, WA 98101" +195619,Lightning Charging Cable,1,14.95,04/01/19 07:17,"574 12th St, New York City, NY 10001" +195620,Apple Airpods Headphones,1,150,04/23/19 10:28,"786 Jefferson St, Dallas, TX 75001" +195621,Macbook Pro Laptop,1,1700,04/08/19 18:41,"53 Spruce St, New York City, NY 10001" +195622,Apple Airpods Headphones,1,150,04/09/19 17:42,"669 Lakeview St, Los Angeles, CA 90001" +195623,AAA Batteries (4-pack),5,2.99,04/28/19 20:23,"788 South St, San Francisco, CA 94016" +195624,27in FHD Monitor,1,149.99,04/03/19 13:22,"574 Highland St, Seattle, WA 98101" +195625,USB-C Charging Cable,1,11.95,04/16/19 00:39,"112 5th St, Seattle, WA 98101" +195626,Apple Airpods Headphones,1,150,04/10/19 21:22,"996 6th St, Seattle, WA 98101" +195627,AAA Batteries (4-pack),1,2.99,04/22/19 11:45,"607 Ridge St, Los Angeles, CA 90001" +195628,20in Monitor,1,109.99,04/16/19 19:40,"396 Lake St, Boston, MA 02215" +195629,iPhone,1,700,04/24/19 23:51,"497 14th St, San Francisco, CA 94016" +195630,Macbook Pro Laptop,1,1700,04/01/19 11:52,"15 13th St, Los Angeles, CA 90001" +195631,Wired Headphones,1,11.99,04/04/19 22:07,"304 5th St, Los Angeles, CA 90001" +195632,Google Phone,1,600,04/03/19 22:30,"775 12th St, Boston, MA 02215" +195633,Google Phone,1,600,04/06/19 19:05,"77 Hickory St, San Francisco, CA 94016" +195634,20in Monitor,1,109.99,04/16/19 20:11,"43 13th St, Los Angeles, CA 90001" +195635,Apple Airpods Headphones,1,150,04/21/19 20:39,"145 South St, Los Angeles, CA 90001" +195636,27in FHD Monitor,1,149.99,04/28/19 18:37,"280 Meadow St, Austin, TX 73301" +195637,AA Batteries (4-pack),1,3.84,04/27/19 19:49,"191 Walnut St, New York City, NY 10001" +195638,Apple Airpods Headphones,1,150,04/24/19 04:31,"984 Wilson St, Los Angeles, CA 90001" +195639,USB-C Charging Cable,1,11.95,04/17/19 07:17,"129 8th St, Los Angeles, CA 90001" +195640,Flatscreen TV,1,300,04/10/19 17:29,"17 Ridge St, San Francisco, CA 94016" +195641,USB-C Charging Cable,1,11.95,04/05/19 14:02,"970 Madison St, Los Angeles, CA 90001" +195642,USB-C Charging Cable,1,11.95,04/23/19 16:04,"90 Spruce St, Austin, TX 73301" +195643,AAA Batteries (4-pack),2,2.99,04/20/19 18:34,"186 13th St, Atlanta, GA 30301" +195644,Flatscreen TV,1,300,04/10/19 20:53,"230 Lincoln St, Portland, OR 97035" +195645,Lightning Charging Cable,1,14.95,04/09/19 11:40,"887 Walnut St, Austin, TX 73301" +195646,Flatscreen TV,1,300,04/01/19 09:39,"258 2nd St, Los Angeles, CA 90001" +195647,AA Batteries (4-pack),1,3.84,04/23/19 08:50,"637 Center St, New York City, NY 10001" +195648,Wired Headphones,1,11.99,04/20/19 12:09,"105 5th St, Boston, MA 02215" +195649,AAA Batteries (4-pack),1,2.99,04/08/19 19:34,"622 10th St, Atlanta, GA 30301" +195650,USB-C Charging Cable,1,11.95,04/15/19 13:37,"539 Jackson St, New York City, NY 10001" +195651,AAA Batteries (4-pack),2,2.99,04/13/19 06:30,"433 Walnut St, Atlanta, GA 30301" +195652,34in Ultrawide Monitor,1,379.99,04/03/19 00:40,"808 Lincoln St, Los Angeles, CA 90001" +195653,Lightning Charging Cable,1,14.95,04/20/19 21:37,"797 13th St, San Francisco, CA 94016" +195654,ThinkPad Laptop,1,999.99,04/24/19 18:07,"324 Church St, San Francisco, CA 94016" +195655,USB-C Charging Cable,1,11.95,04/08/19 22:38,"665 9th St, San Francisco, CA 94016" +195656,Wired Headphones,1,11.99,04/22/19 18:53,"876 Walnut St, Austin, TX 73301" +195657,AAA Batteries (4-pack),1,2.99,04/15/19 18:59,"638 10th St, San Francisco, CA 94016" +195658,34in Ultrawide Monitor,1,379.99,04/28/19 23:39,"403 7th St, Dallas, TX 75001" +195659,Wired Headphones,1,11.99,04/20/19 15:41,"904 Highland St, Portland, OR 97035" +195660,27in FHD Monitor,1,149.99,04/04/19 10:14,"666 8th St, San Francisco, CA 94016" +195661,Lightning Charging Cable,1,14.95,04/20/19 09:57,"673 Hill St, San Francisco, CA 94016" +195662,AAA Batteries (4-pack),4,2.99,04/02/19 18:03,"577 Hill St, San Francisco, CA 94016" +195663,Macbook Pro Laptop,1,1700,04/26/19 09:10,"342 Meadow St, Portland, OR 97035" +195664,Bose SoundSport Headphones,1,99.99,04/13/19 19:36,"904 6th St, San Francisco, CA 94016" +195665,USB-C Charging Cable,1,11.95,04/02/19 19:41,"220 Hickory St, New York City, NY 10001" +195666,Bose SoundSport Headphones,1,99.99,04/24/19 14:58,"902 Forest St, Dallas, TX 75001" +195667,USB-C Charging Cable,1,11.95,04/16/19 13:08,"265 Jackson St, New York City, NY 10001" +195668,Lightning Charging Cable,1,14.95,04/05/19 18:44,"762 Sunset St, Dallas, TX 75001" +195669,AA Batteries (4-pack),1,3.84,04/05/19 06:26,"302 12th St, Dallas, TX 75001" +195670,AA Batteries (4-pack),1,3.84,04/03/19 17:09,"672 West St, San Francisco, CA 94016" +195671,Google Phone,1,600,04/12/19 21:21,"174 Hickory St, San Francisco, CA 94016" +195672,Google Phone,1,600,04/03/19 23:40,"895 11th St, Los Angeles, CA 90001" +195672,USB-C Charging Cable,1,11.95,04/03/19 23:40,"895 11th St, Los Angeles, CA 90001" +195672,Wired Headphones,1,11.99,04/03/19 23:40,"895 11th St, Los Angeles, CA 90001" +195673,Google Phone,1,600,04/17/19 10:11,"970 Jefferson St, Seattle, WA 98101" +195674,34in Ultrawide Monitor,1,379.99,04/03/19 19:22,"142 River St, San Francisco, CA 94016" +195675,ThinkPad Laptop,1,999.99,04/02/19 15:05,"651 Pine St, Atlanta, GA 30301" +195676,AAA Batteries (4-pack),2,2.99,04/30/19 13:45,"691 Willow St, San Francisco, CA 94016" +195677,Lightning Charging Cable,1,14.95,04/23/19 12:03,"689 Spruce St, Austin, TX 73301" +195678,AAA Batteries (4-pack),1,2.99,04/21/19 02:48,"738 Elm St, Atlanta, GA 30301" +195679,AAA Batteries (4-pack),1,2.99,04/13/19 00:30,"178 Hickory St, Seattle, WA 98101" +195680,27in FHD Monitor,1,149.99,04/26/19 11:11,"677 Madison St, San Francisco, CA 94016" +195681,27in FHD Monitor,1,149.99,04/30/19 12:56,"173 13th St, Boston, MA 02215" +195682,iPhone,1,700,04/01/19 20:13,"90 2nd St, Boston, MA 02215" +195682,Lightning Charging Cable,1,14.95,04/01/19 20:13,"90 2nd St, Boston, MA 02215" +195683,iPhone,1,700,04/09/19 20:11,"555 Park St, Los Angeles, CA 90001" +195683,Wired Headphones,1,11.99,04/09/19 20:11,"555 Park St, Los Angeles, CA 90001" +195684,Lightning Charging Cable,1,14.95,04/23/19 05:56,"781 12th St, Austin, TX 73301" +195685,Bose SoundSport Headphones,1,99.99,04/29/19 11:35,"323 Chestnut St, Seattle, WA 98101" +195686,USB-C Charging Cable,1,11.95,04/03/19 15:56,"661 Pine St, Los Angeles, CA 90001" +195687,Lightning Charging Cable,1,14.95,04/22/19 09:11,"561 2nd St, San Francisco, CA 94016" +195688,AA Batteries (4-pack),1,3.84,04/29/19 14:53,"104 Adams St, Atlanta, GA 30301" +195689,Google Phone,1,600,04/30/19 19:00,"442 4th St, Atlanta, GA 30301" +195690,AAA Batteries (4-pack),2,2.99,04/06/19 18:07,"199 North St, Dallas, TX 75001" +195691,27in 4K Gaming Monitor,1,389.99,04/17/19 08:41,"415 Spruce St, Los Angeles, CA 90001" +195692,Wired Headphones,1,11.99,04/19/19 18:37,"802 8th St, Los Angeles, CA 90001" +195693,Bose SoundSport Headphones,1,99.99,04/09/19 00:17,"840 Adams St, New York City, NY 10001" +195694,USB-C Charging Cable,1,11.95,04/16/19 12:05,"228 Washington St, San Francisco, CA 94016" +195695,27in FHD Monitor,1,149.99,04/08/19 11:39,"168 Adams St, Los Angeles, CA 90001" +195696,ThinkPad Laptop,1,999.99,04/30/19 23:47,"890 River St, Seattle, WA 98101" +195697,27in FHD Monitor,1,149.99,04/19/19 21:11,"983 Cherry St, San Francisco, CA 94016" +195698,Wired Headphones,1,11.99,04/22/19 12:13,"565 11th St, Dallas, TX 75001" +195699,27in FHD Monitor,1,149.99,04/06/19 17:24,"586 Maple St, Los Angeles, CA 90001" +195700,Lightning Charging Cable,1,14.95,04/12/19 11:04,"775 11th St, San Francisco, CA 94016" +195701,Wired Headphones,1,11.99,04/01/19 12:50,"651 Chestnut St, San Francisco, CA 94016" +195702,AA Batteries (4-pack),1,3.84,04/17/19 16:47,"216 North St, New York City, NY 10001" +195703,USB-C Charging Cable,1,11.95,04/20/19 12:55,"501 Ridge St, New York City, NY 10001" +195704,Wired Headphones,1,11.99,04/30/19 11:13,"150 Wilson St, Atlanta, GA 30301" +195705,AA Batteries (4-pack),1,3.84,04/16/19 01:18,"686 Highland St, New York City, NY 10001" +195706,AA Batteries (4-pack),1,3.84,04/13/19 07:34,"484 Lakeview St, Seattle, WA 98101" +195707,Google Phone,1,600,04/10/19 07:25,"21 Johnson St, Los Angeles, CA 90001" +195708,34in Ultrawide Monitor,1,379.99,04/14/19 10:42,"994 Elm St, Los Angeles, CA 90001" +195709,Lightning Charging Cable,1,14.95,04/29/19 13:10,"907 West St, Boston, MA 02215" +195710,USB-C Charging Cable,1,11.95,04/08/19 15:33,"86 Sunset St, Los Angeles, CA 90001" +195711,AA Batteries (4-pack),2,3.84,04/02/19 20:02,"645 West St, New York City, NY 10001" +195712,Macbook Pro Laptop,1,1700,04/06/19 12:52,"355 Meadow St, Atlanta, GA 30301" +195713,34in Ultrawide Monitor,1,379.99,04/23/19 10:27,"908 Cherry St, Dallas, TX 75001" +195714,Wired Headphones,1,11.99,04/16/19 15:25,"852 South St, New York City, NY 10001" +195715,Lightning Charging Cable,1,14.95,04/15/19 08:08,"580 5th St, Dallas, TX 75001" +195716,Wired Headphones,1,11.99,04/27/19 14:50,"634 4th St, Portland, OR 97035" +195717,AA Batteries (4-pack),2,3.84,04/10/19 13:26,"244 Park St, San Francisco, CA 94016" +195718,Bose SoundSport Headphones,1,99.99,04/25/19 21:08,"745 Sunset St, Austin, TX 73301" +195719,AAA Batteries (4-pack),3,2.99,04/05/19 13:17,"351 Jefferson St, Boston, MA 02215" +195720,AA Batteries (4-pack),1,3.84,04/12/19 01:29,"217 1st St, Seattle, WA 98101" +195721,AA Batteries (4-pack),2,3.84,04/19/19 18:26,"255 14th St, Los Angeles, CA 90001" +195722,AAA Batteries (4-pack),1,2.99,04/19/19 12:47,"481 Jackson St, Seattle, WA 98101" +195723,USB-C Charging Cable,1,11.95,04/21/19 23:00,"845 1st St, Los Angeles, CA 90001" +195724,Lightning Charging Cable,1,14.95,04/02/19 08:41,"331 7th St, New York City, NY 10001" +195725,AAA Batteries (4-pack),1,2.99,04/14/19 08:52,"577 Maple St, San Francisco, CA 94016" +195726,Flatscreen TV,1,300,04/04/19 17:38,"735 Lincoln St, Seattle, WA 98101" +195727,iPhone,1,700,04/04/19 01:39,"204 Meadow St, San Francisco, CA 94016" +195728,AAA Batteries (4-pack),3,2.99,04/19/19 14:22,"859 Ridge St, Atlanta, GA 30301" +195729,27in FHD Monitor,1,149.99,04/08/19 17:19,"344 Spruce St, San Francisco, CA 94016" +195730,Lightning Charging Cable,1,14.95,04/23/19 17:35,"237 Lakeview St, New York City, NY 10001" +195731,Lightning Charging Cable,1,14.95,04/06/19 14:05,"742 Cherry St, San Francisco, CA 94016" +195732,AAA Batteries (4-pack),1,2.99,04/26/19 12:02,"21 Sunset St, Los Angeles, CA 90001" +195733,AA Batteries (4-pack),2,3.84,04/09/19 17:12,"461 Church St, Austin, TX 73301" +195734,Google Phone,1,600,04/11/19 20:45,"221 Willow St, New York City, NY 10001" +195735,Apple Airpods Headphones,1,150,04/09/19 21:28,"410 14th St, Los Angeles, CA 90001" +195736,34in Ultrawide Monitor,1,379.99,04/10/19 22:31,"892 Walnut St, Atlanta, GA 30301" +195737,34in Ultrawide Monitor,1,379.99,04/09/19 22:43,"102 South St, San Francisco, CA 94016" +195738,20in Monitor,1,109.99,04/08/19 19:07,"65 South St, Dallas, TX 75001" +195739,Lightning Charging Cable,1,14.95,04/30/19 06:57,"839 West St, Los Angeles, CA 90001" +195740,Lightning Charging Cable,1,14.95,04/09/19 10:37,"463 Park St, Seattle, WA 98101" +195741,Flatscreen TV,1,300,04/10/19 10:40,"49 South St, Dallas, TX 75001" +195742,Lightning Charging Cable,1,14.95,04/21/19 13:06,"254 11th St, San Francisco, CA 94016" +195743,Lightning Charging Cable,2,14.95,04/29/19 19:28,"140 Lincoln St, New York City, NY 10001" +195744,USB-C Charging Cable,1,11.95,04/13/19 19:31,"316 Johnson St, New York City, NY 10001" +195745,20in Monitor,1,109.99,04/25/19 16:43,"986 Main St, Austin, TX 73301" +195746,20in Monitor,1,109.99,04/25/19 18:23,"736 Chestnut St, New York City, NY 10001" +195747,20in Monitor,1,109.99,04/18/19 17:23,"103 11th St, Dallas, TX 75001" +195748,USB-C Charging Cable,1,11.95,04/21/19 10:29,"858 9th St, San Francisco, CA 94016" +195749,Wired Headphones,1,11.99,04/10/19 08:39,"527 Willow St, San Francisco, CA 94016" +195750,Lightning Charging Cable,1,14.95,04/14/19 17:41,"249 Walnut St, New York City, NY 10001" +195751,Lightning Charging Cable,1,14.95,04/04/19 14:55,"463 Madison St, Seattle, WA 98101" +195752,AAA Batteries (4-pack),1,2.99,04/26/19 09:03,"220 Washington St, Los Angeles, CA 90001" +195753,iPhone,1,700,04/23/19 12:08,"108 Spruce St, Dallas, TX 75001" +195754,Apple Airpods Headphones,1,150,04/29/19 13:49,"405 1st St, San Francisco, CA 94016" +195755,USB-C Charging Cable,1,11.95,04/26/19 20:48,"997 Church St, Los Angeles, CA 90001" +195756,iPhone,1,700,04/10/19 09:17,"731 Forest St, Portland, OR 97035" +195757,AAA Batteries (4-pack),1,2.99,04/05/19 11:15,"282 Spruce St, Los Angeles, CA 90001" +195758,Lightning Charging Cable,1,14.95,04/15/19 19:01,"646 River St, Los Angeles, CA 90001" +195759,Apple Airpods Headphones,1,150,04/26/19 17:32,"727 12th St, San Francisco, CA 94016" +195760,Lightning Charging Cable,1,14.95,04/08/19 14:15,"620 11th St, Boston, MA 02215" +195761,Wired Headphones,1,11.99,04/16/19 09:24,"406 South St, San Francisco, CA 94016" +195762,Bose SoundSport Headphones,1,99.99,04/08/19 18:25,"179 Elm St, New York City, NY 10001" +195763,USB-C Charging Cable,1,11.95,04/05/19 19:40,"388 Jefferson St, New York City, NY 10001" +195764,AA Batteries (4-pack),1,3.84,04/17/19 15:13,"512 West St, Boston, MA 02215" +195765,AAA Batteries (4-pack),1,2.99,04/03/19 12:18,"467 1st St, New York City, NY 10001" +195766,Wired Headphones,1,11.99,04/28/19 12:08,"286 South St, New York City, NY 10001" +195767,Lightning Charging Cable,1,14.95,04/30/19 11:53,"515 Meadow St, Los Angeles, CA 90001" +195768,Google Phone,1,600,04/24/19 14:58,"759 South St, Portland, OR 97035" +195769,iPhone,1,700,04/16/19 11:34,"297 Adams St, Boston, MA 02215" +195770,Macbook Pro Laptop,1,1700,04/20/19 15:05,"137 Wilson St, Los Angeles, CA 90001" +195771,USB-C Charging Cable,1,11.95,04/10/19 15:37,"547 Maple St, Boston, MA 02215" +195772,AA Batteries (4-pack),1,3.84,04/21/19 20:56,"315 Adams St, New York City, NY 10001" +195773,AA Batteries (4-pack),1,3.84,04/22/19 19:04,"369 6th St, Boston, MA 02215" +195774,iPhone,1,700,04/28/19 09:07,"269 8th St, San Francisco, CA 94016" +195775,AA Batteries (4-pack),1,3.84,04/06/19 20:17,"460 14th St, Los Angeles, CA 90001" +195776,Bose SoundSport Headphones,1,99.99,04/12/19 21:07,"487 Lakeview St, Boston, MA 02215" +195777,AA Batteries (4-pack),2,3.84,04/16/19 13:57,"267 Meadow St, San Francisco, CA 94016" +195778,Lightning Charging Cable,1,14.95,04/26/19 09:15,"652 13th St, Los Angeles, CA 90001" +195779,Macbook Pro Laptop,1,1700,04/10/19 09:07,"558 Park St, San Francisco, CA 94016" +195780,iPhone,1,700,04/13/19 20:00,"468 2nd St, Boston, MA 02215" +195781,AA Batteries (4-pack),2,3.84,04/02/19 21:08,"548 Lakeview St, Boston, MA 02215" +195782,AAA Batteries (4-pack),1,2.99,04/01/19 06:29,"243 5th St, Atlanta, GA 30301" +195783,AA Batteries (4-pack),1,3.84,04/12/19 19:27,"54 West St, San Francisco, CA 94016" +195784,USB-C Charging Cable,1,11.95,04/06/19 13:59,"912 Meadow St, Boston, MA 02215" +195785,AAA Batteries (4-pack),1,2.99,04/08/19 06:19,"130 Lake St, New York City, NY 10001" +195786,AA Batteries (4-pack),1,3.84,04/02/19 19:45,"844 Dogwood St, Atlanta, GA 30301" +195787,Apple Airpods Headphones,1,150,04/29/19 13:25,"218 Highland St, Austin, TX 73301" +195787,34in Ultrawide Monitor,1,379.99,04/29/19 13:25,"218 Highland St, Austin, TX 73301" +195788,AAA Batteries (4-pack),1,2.99,04/25/19 11:04,"393 12th St, San Francisco, CA 94016" +195789,27in FHD Monitor,1,149.99,04/18/19 12:31,"259 14th St, Los Angeles, CA 90001" +195790,USB-C Charging Cable,1,11.95,04/23/19 14:06,"178 Ridge St, San Francisco, CA 94016" +195791,34in Ultrawide Monitor,1,379.99,04/09/19 21:07,"619 Jackson St, Atlanta, GA 30301" +195792,AAA Batteries (4-pack),3,2.99,04/30/19 18:30,"973 Elm St, Atlanta, GA 30301" +195793,Lightning Charging Cable,1,14.95,04/12/19 12:55,"443 Center St, San Francisco, CA 94016" +,,,,, +195794,AAA Batteries (4-pack),1,2.99,04/05/19 23:20,"239 Washington St, Los Angeles, CA 90001" +195795,USB-C Charging Cable,1,11.95,04/15/19 00:37,"154 Highland St, New York City, NY 10001" +195796,AA Batteries (4-pack),1,3.84,04/07/19 17:11,"680 Jefferson St, Portland, OR 97035" +195797,iPhone,1,700,04/23/19 11:29,"762 Walnut St, Portland, OR 97035" +195797,Lightning Charging Cable,1,14.95,04/23/19 11:29,"762 Walnut St, Portland, OR 97035" +195798,iPhone,1,700,04/27/19 23:03,"248 Jackson St, San Francisco, CA 94016" +195799,AA Batteries (4-pack),1,3.84,04/19/19 17:41,"29 Ridge St, San Francisco, CA 94016" +195800,Lightning Charging Cable,2,14.95,04/03/19 14:13,"372 Jefferson St, Atlanta, GA 30301" +195801,Apple Airpods Headphones,1,150,04/01/19 21:18,"96 Jefferson St, Dallas, TX 75001" +195802,Wired Headphones,1,11.99,04/19/19 10:40,"688 South St, Austin, TX 73301" +195803,Apple Airpods Headphones,1,150,04/16/19 12:19,"779 Elm St, Portland, OR 97035" +195804,Lightning Charging Cable,1,14.95,04/03/19 16:11,"81 7th St, San Francisco, CA 94016" +195805,USB-C Charging Cable,1,11.95,04/11/19 19:46,"573 Ridge St, Seattle, WA 98101" +195806,Apple Airpods Headphones,1,150,04/13/19 13:43,"761 Forest St, San Francisco, CA 94016" +195807,Macbook Pro Laptop,1,1700,04/05/19 09:32,"743 Washington St, Dallas, TX 75001" +195808,AA Batteries (4-pack),1,3.84,04/07/19 12:19,"688 12th St, Atlanta, GA 30301" +195809,AA Batteries (4-pack),1,3.84,04/01/19 19:25,"760 Chestnut St, San Francisco, CA 94016" +195810,AAA Batteries (4-pack),1,2.99,04/30/19 19:20,"349 Jackson St, Los Angeles, CA 90001" +195811,iPhone,1,700,04/02/19 22:05,"543 Madison St, Boston, MA 02215" +195812,iPhone,1,700,04/01/19 11:34,"827 Main St, Austin, TX 73301" +195813,AAA Batteries (4-pack),1,2.99,04/08/19 13:12,"237 12th St, San Francisco, CA 94016" +195814,AAA Batteries (4-pack),2,2.99,04/01/19 06:09,"682 13th St, Seattle, WA 98101" +195815,Bose SoundSport Headphones,1,99.99,04/26/19 10:15,"927 6th St, Boston, MA 02215" +195816,AA Batteries (4-pack),4,3.84,04/26/19 19:22,"265 Main St, New York City, NY 10001" +195817,Apple Airpods Headphones,1,150,04/05/19 13:39,"569 River St, New York City, NY 10001" +195818,iPhone,1,700,04/11/19 09:43,"999 Forest St, Boston, MA 02215" +195819,Wired Headphones,1,11.99,04/18/19 21:27,"707 Walnut St, Boston, MA 02215" +195820,34in Ultrawide Monitor,1,379.99,04/10/19 16:00,"883 13th St, New York City, NY 10001" +195821,Wired Headphones,1,11.99,04/24/19 18:32,"366 Spruce St, Seattle, WA 98101" +195822,Lightning Charging Cable,1,14.95,04/21/19 18:09,"695 Sunset St, New York City, NY 10001" +195823,Bose SoundSport Headphones,1,99.99,04/21/19 20:40,"667 Highland St, Seattle, WA 98101" +195824,Wired Headphones,1,11.99,05/01/19 04:03,"531 10th St, Boston, MA 02215" +195825,Wired Headphones,1,11.99,04/16/19 10:59,"484 2nd St, San Francisco, CA 94016" +195826,Apple Airpods Headphones,1,150,04/06/19 16:02,"750 Adams St, San Francisco, CA 94016" +195827,Apple Airpods Headphones,1,150,04/05/19 23:02,"962 Elm St, Seattle, WA 98101" +195828,Apple Airpods Headphones,1,150,04/08/19 11:42,"105 West St, San Francisco, CA 94016" +195829,USB-C Charging Cable,1,11.95,04/26/19 20:29,"959 Walnut St, Boston, MA 02215" +195830,Wired Headphones,1,11.99,04/11/19 16:51,"10 Spruce St, New York City, NY 10001" +195831,AAA Batteries (4-pack),1,2.99,04/21/19 12:13,"152 Madison St, New York City, NY 10001" +195832,iPhone,1,700,04/23/19 11:56,"948 Chestnut St, Atlanta, GA 30301" +195833,Bose SoundSport Headphones,1,99.99,04/09/19 16:14,"259 Dogwood St, New York City, NY 10001" +195834,Lightning Charging Cable,1,14.95,04/04/19 14:58,"325 5th St, New York City, NY 10001" +195835,Lightning Charging Cable,1,14.95,04/06/19 15:33,"641 Park St, Boston, MA 02215" +195836,Apple Airpods Headphones,1,150,04/08/19 19:09,"698 Jefferson St, New York City, NY 10001" +195837,USB-C Charging Cable,1,11.95,04/28/19 16:58,"362 11th St, San Francisco, CA 94016" +195838,AAA Batteries (4-pack),2,2.99,04/23/19 17:17,"658 Elm St, New York City, NY 10001" +195839,Wired Headphones,1,11.99,04/19/19 10:32,"549 Hickory St, Portland, ME 04101" +195840,AAA Batteries (4-pack),1,2.99,04/18/19 09:13,"666 9th St, Los Angeles, CA 90001" +195841,Macbook Pro Laptop,1,1700,04/29/19 14:10,"154 River St, Boston, MA 02215" +195842,AA Batteries (4-pack),1,3.84,04/10/19 20:54,"927 Main St, New York City, NY 10001" +195843,AAA Batteries (4-pack),1,2.99,04/16/19 21:27,"854 Cherry St, Atlanta, GA 30301" +195844,Apple Airpods Headphones,1,150,04/17/19 00:40,"72 Maple St, Portland, OR 97035" +195845,Wired Headphones,2,11.99,04/06/19 17:17,"487 Church St, New York City, NY 10001" +195846,Lightning Charging Cable,1,14.95,04/03/19 13:40,"135 13th St, San Francisco, CA 94016" +195847,Wired Headphones,1,11.99,04/01/19 08:29,"942 Johnson St, San Francisco, CA 94016" +195848,USB-C Charging Cable,1,11.95,04/14/19 15:42,"114 13th St, Los Angeles, CA 90001" +195849,AAA Batteries (4-pack),1,2.99,04/21/19 03:54,"44 Adams St, New York City, NY 10001" +195850,AA Batteries (4-pack),1,3.84,04/21/19 10:01,"711 Center St, Atlanta, GA 30301" +195851,Apple Airpods Headphones,1,150,04/05/19 13:48,"591 12th St, Austin, TX 73301" +195851,Lightning Charging Cable,1,14.95,04/05/19 13:48,"591 12th St, Austin, TX 73301" +195852,Lightning Charging Cable,1,14.95,04/30/19 15:08,"856 Madison St, Seattle, WA 98101" +195853,Wired Headphones,1,11.99,04/16/19 08:54,"756 Jefferson St, Portland, ME 04101" +195854,Google Phone,1,600,04/29/19 11:01,"856 Church St, Atlanta, GA 30301" +195855,AA Batteries (4-pack),1,3.84,04/20/19 17:27,"466 Jackson St, New York City, NY 10001" +195856,iPhone,1,700,04/29/19 19:40,"505 Sunset St, San Francisco, CA 94016" +195857,USB-C Charging Cable,1,11.95,04/22/19 07:58,"556 Jackson St, Atlanta, GA 30301" +195858,AA Batteries (4-pack),1,3.84,04/10/19 17:10,"240 West St, Los Angeles, CA 90001" +195859,34in Ultrawide Monitor,1,379.99,04/30/19 19:30,"723 5th St, Portland, OR 97035" +195860,AA Batteries (4-pack),1,3.84,04/18/19 20:36,"362 Sunset St, San Francisco, CA 94016" +195861,Macbook Pro Laptop,1,1700,04/13/19 21:04,"835 Maple St, Atlanta, GA 30301" +195862,AAA Batteries (4-pack),1,2.99,04/02/19 17:30,"378 14th St, New York City, NY 10001" +195863,Apple Airpods Headphones,1,150,04/02/19 01:37,"511 North St, San Francisco, CA 94016" +195864,AAA Batteries (4-pack),1,2.99,04/07/19 11:35,"737 Lake St, New York City, NY 10001" +195865,Wired Headphones,1,11.99,04/17/19 13:55,"232 Johnson St, Seattle, WA 98101" +195866,27in FHD Monitor,1,149.99,04/24/19 07:18,"738 Lake St, Portland, OR 97035" +195867,Macbook Pro Laptop,1,1700,04/26/19 21:50,"181 Forest St, San Francisco, CA 94016" +195868,Lightning Charging Cable,1,14.95,04/21/19 21:17,"43 13th St, San Francisco, CA 94016" +195869,ThinkPad Laptop,1,999.99,04/08/19 16:24,"126 Walnut St, San Francisco, CA 94016" +195870,Apple Airpods Headphones,1,150,04/28/19 06:55,"964 Pine St, New York City, NY 10001" +195871,27in FHD Monitor,1,149.99,04/06/19 11:30,"144 10th St, Los Angeles, CA 90001" +195872,AA Batteries (4-pack),1,3.84,04/04/19 00:59,"813 Jackson St, New York City, NY 10001" +195873,Bose SoundSport Headphones,1,99.99,04/18/19 16:42,"657 Maple St, Atlanta, GA 30301" +195874,USB-C Charging Cable,1,11.95,04/16/19 14:33,"351 8th St, Los Angeles, CA 90001" +195875,LG Dryer,1,600.0,04/07/19 22:08,"641 11th St, San Francisco, CA 94016" +195876,AAA Batteries (4-pack),3,2.99,04/27/19 16:58,"568 1st St, Seattle, WA 98101" +195877,AAA Batteries (4-pack),3,2.99,04/20/19 12:06,"169 Walnut St, San Francisco, CA 94016" +195878,27in FHD Monitor,1,149.99,04/07/19 13:54,"110 Cedar St, Los Angeles, CA 90001" +195879,USB-C Charging Cable,1,11.95,04/12/19 17:59,"229 Jackson St, Boston, MA 02215" +195879,Bose SoundSport Headphones,1,99.99,04/12/19 17:59,"229 Jackson St, Boston, MA 02215" +195880,AAA Batteries (4-pack),1,2.99,04/21/19 23:24,"865 Park St, Los Angeles, CA 90001" +195881,iPhone,1,700,04/10/19 18:55,"545 Hill St, Los Angeles, CA 90001" +195881,Lightning Charging Cable,1,14.95,04/10/19 18:55,"545 Hill St, Los Angeles, CA 90001" +195882,Wired Headphones,1,11.99,04/11/19 19:00,"167 Cherry St, Atlanta, GA 30301" +195883,AAA Batteries (4-pack),1,2.99,04/13/19 13:48,"964 Lincoln St, Portland, OR 97035" +195884,27in FHD Monitor,1,149.99,04/12/19 18:22,"572 9th St, New York City, NY 10001" +195885,AAA Batteries (4-pack),2,2.99,04/29/19 10:49,"839 Johnson St, Atlanta, GA 30301" +195886,AA Batteries (4-pack),1,3.84,04/24/19 09:15,"604 Center St, Dallas, TX 75001" +195887,Wired Headphones,1,11.99,04/23/19 22:05,"844 Highland St, Atlanta, GA 30301" +195888,Macbook Pro Laptop,1,1700,04/10/19 12:44,"361 Sunset St, Portland, OR 97035" +195889,Wired Headphones,2,11.99,04/02/19 23:11,"770 Ridge St, New York City, NY 10001" +195890,Flatscreen TV,1,300,04/14/19 17:23,"871 Dogwood St, Atlanta, GA 30301" +195891,USB-C Charging Cable,1,11.95,04/12/19 15:11,"405 11th St, Boston, MA 02215" +195892,Lightning Charging Cable,1,14.95,04/29/19 08:45,"689 Lakeview St, Dallas, TX 75001" +195893,20in Monitor,1,109.99,04/30/19 21:49,"945 Lakeview St, Atlanta, GA 30301" +195894,iPhone,1,700,04/19/19 00:55,"643 Lake St, San Francisco, CA 94016" +195894,Lightning Charging Cable,1,14.95,04/19/19 00:55,"643 Lake St, San Francisco, CA 94016" +195894,AA Batteries (4-pack),1,3.84,04/19/19 00:55,"643 Lake St, San Francisco, CA 94016" +195895,Lightning Charging Cable,1,14.95,04/04/19 21:30,"545 Ridge St, San Francisco, CA 94016" +195895,27in 4K Gaming Monitor,1,389.99,04/04/19 21:30,"545 Ridge St, San Francisco, CA 94016" +195896,AAA Batteries (4-pack),1,2.99,04/11/19 06:07,"923 11th St, Atlanta, GA 30301" +195897,20in Monitor,1,109.99,04/26/19 14:50,"1 8th St, New York City, NY 10001" +195898,20in Monitor,1,109.99,04/11/19 14:59,"169 Elm St, New York City, NY 10001" +195899,Lightning Charging Cable,1,14.95,04/06/19 12:17,"798 Meadow St, Los Angeles, CA 90001" +195900,Lightning Charging Cable,1,14.95,04/08/19 14:36,"150 13th St, San Francisco, CA 94016" +195901,Flatscreen TV,1,300,04/09/19 18:28,"722 12th St, Portland, ME 04101" +195902,Apple Airpods Headphones,1,150,04/15/19 13:48,"446 5th St, Portland, OR 97035" +195903,Lightning Charging Cable,1,14.95,04/21/19 12:00,"610 12th St, Portland, ME 04101" +195904,Lightning Charging Cable,1,14.95,04/19/19 21:31,"53 7th St, Portland, OR 97035" +195905,Lightning Charging Cable,1,14.95,04/17/19 18:59,"650 Cedar St, Austin, TX 73301" +195906,AAA Batteries (4-pack),1,2.99,04/26/19 09:08,"464 Spruce St, Atlanta, GA 30301" +195907,ThinkPad Laptop,1,999.99,04/22/19 21:50,"185 1st St, Atlanta, GA 30301" +195908,AAA Batteries (4-pack),1,2.99,04/23/19 10:06,"740 12th St, San Francisco, CA 94016" +195909,Wired Headphones,1,11.99,04/12/19 09:21,"294 5th St, San Francisco, CA 94016" +195909,Lightning Charging Cable,1,14.95,04/12/19 09:21,"294 5th St, San Francisco, CA 94016" +195910,AA Batteries (4-pack),1,3.84,04/29/19 18:06,"885 North St, New York City, NY 10001" +195911,AAA Batteries (4-pack),1,2.99,04/09/19 11:03,"209 13th St, Los Angeles, CA 90001" +195912,ThinkPad Laptop,1,999.99,04/05/19 09:31,"690 Jackson St, Atlanta, GA 30301" +195913,AA Batteries (4-pack),1,3.84,04/20/19 18:52,"925 Main St, San Francisco, CA 94016" +195914,Flatscreen TV,1,300,04/19/19 19:13,"768 Church St, Portland, ME 04101" +195915,27in FHD Monitor,1,149.99,04/24/19 10:23,"935 Hickory St, San Francisco, CA 94016" +195916,27in FHD Monitor,1,149.99,04/13/19 12:04,"669 Pine St, San Francisco, CA 94016" +195917,Google Phone,1,600,04/28/19 09:58,"532 Maple St, New York City, NY 10001" +195918,Bose SoundSport Headphones,1,99.99,04/08/19 19:08,"171 Wilson St, Atlanta, GA 30301" +195919,Bose SoundSport Headphones,1,99.99,04/03/19 17:19,"908 12th St, San Francisco, CA 94016" +195920,USB-C Charging Cable,1,11.95,04/10/19 23:37,"16 14th St, Atlanta, GA 30301" +195921,Macbook Pro Laptop,1,1700,04/30/19 09:50,"767 North St, New York City, NY 10001" +195922,27in FHD Monitor,1,149.99,04/30/19 20:15,"616 River St, Dallas, TX 75001" +195923,Apple Airpods Headphones,1,150,04/21/19 23:33,"616 14th St, San Francisco, CA 94016" +195924,Lightning Charging Cable,1,14.95,04/10/19 14:39,"935 9th St, San Francisco, CA 94016" +195925,Lightning Charging Cable,1,14.95,04/27/19 14:46,"109 Spruce St, San Francisco, CA 94016" +195926,Lightning Charging Cable,1,14.95,04/12/19 18:00,"258 Cedar St, New York City, NY 10001" +195927,Wired Headphones,1,11.99,04/04/19 20:50,"958 Dogwood St, New York City, NY 10001" +195928,Wired Headphones,1,11.99,04/08/19 13:14,"299 Johnson St, Los Angeles, CA 90001" +195929,AA Batteries (4-pack),2,3.84,04/22/19 21:15,"932 8th St, San Francisco, CA 94016" +195930,27in FHD Monitor,1,149.99,04/06/19 07:58,"921 Walnut St, Seattle, WA 98101" +195931,USB-C Charging Cable,1,11.95,04/05/19 00:49,"514 Hill St, Dallas, TX 75001" +195932,AA Batteries (4-pack),1,3.84,04/26/19 08:05,"501 Hill St, Portland, OR 97035" +195933,Wired Headphones,1,11.99,04/20/19 01:03,"255 11th St, Atlanta, GA 30301" +195934,Flatscreen TV,1,300,04/01/19 06:58,"273 Elm St, Seattle, WA 98101" +195935,AA Batteries (4-pack),2,3.84,04/08/19 15:22,"793 Hill St, Dallas, TX 75001" +195936,Lightning Charging Cable,1,14.95,04/21/19 22:00,"595 Spruce St, New York City, NY 10001" +195937,Wired Headphones,2,11.99,04/04/19 19:20,"427 Lincoln St, San Francisco, CA 94016" +195938,Google Phone,1,600,04/21/19 13:53,"971 10th St, Los Angeles, CA 90001" +195938,USB-C Charging Cable,2,11.95,04/21/19 13:53,"971 10th St, Los Angeles, CA 90001" +195939,Apple Airpods Headphones,1,150,04/10/19 12:53,"496 Meadow St, New York City, NY 10001" +195940,Apple Airpods Headphones,1,150,04/19/19 17:51,"458 5th St, San Francisco, CA 94016" +195941,AAA Batteries (4-pack),1,2.99,04/19/19 19:14,"935 Center St, Portland, OR 97035" +195942,ThinkPad Laptop,1,999.99,04/05/19 12:55,"519 Jackson St, Los Angeles, CA 90001" +195943,Wired Headphones,1,11.99,04/26/19 12:50,"564 Hickory St, San Francisco, CA 94016" +195944,AA Batteries (4-pack),1,3.84,04/21/19 10:48,"175 Jackson St, Seattle, WA 98101" +195945,27in FHD Monitor,1,149.99,04/08/19 18:44,"578 Church St, Boston, MA 02215" +195946,AA Batteries (4-pack),1,3.84,04/28/19 11:22,"20 Sunset St, Atlanta, GA 30301" +195947,Wired Headphones,1,11.99,04/07/19 09:58,"84 Cedar St, Dallas, TX 75001" +195948,27in 4K Gaming Monitor,1,389.99,04/26/19 16:47,"131 Lake St, New York City, NY 10001" +195949,27in 4K Gaming Monitor,1,389.99,04/11/19 13:56,"670 13th St, Los Angeles, CA 90001" +195950,AAA Batteries (4-pack),2,2.99,04/07/19 18:15,"608 Wilson St, San Francisco, CA 94016" +195951,AA Batteries (4-pack),1,3.84,04/02/19 15:28,"434 Lincoln St, Los Angeles, CA 90001" +195952,Lightning Charging Cable,1,14.95,04/08/19 08:54,"186 Maple St, Boston, MA 02215" +195953,ThinkPad Laptop,1,999.99,04/24/19 12:14,"53 North St, Dallas, TX 75001" +195954,27in 4K Gaming Monitor,1,389.99,04/03/19 09:51,"360 Center St, Austin, TX 73301" +195954,AAA Batteries (4-pack),1,2.99,04/03/19 09:51,"360 Center St, Austin, TX 73301" +195955,Apple Airpods Headphones,1,150,04/30/19 17:49,"1 Cherry St, Los Angeles, CA 90001" +195956,USB-C Charging Cable,1,11.95,04/26/19 11:57,"630 Main St, San Francisco, CA 94016" +195957,Lightning Charging Cable,1,14.95,04/29/19 15:50,"950 Church St, Portland, OR 97035" +195958,AA Batteries (4-pack),3,3.84,04/13/19 15:58,"106 14th St, San Francisco, CA 94016" +195959,USB-C Charging Cable,1,11.95,04/02/19 11:07,"21 Hill St, Dallas, TX 75001" +195960,Wired Headphones,1,11.99,04/20/19 17:18,"427 13th St, Portland, OR 97035" +195961,AAA Batteries (4-pack),1,2.99,04/06/19 12:48,"419 Maple St, San Francisco, CA 94016" +195962,AAA Batteries (4-pack),1,2.99,04/22/19 23:23,"609 Madison St, Seattle, WA 98101" +195963,Lightning Charging Cable,1,14.95,04/22/19 14:31,"583 Park St, Los Angeles, CA 90001" +195964,Lightning Charging Cable,1,14.95,04/30/19 16:16,"45 2nd St, New York City, NY 10001" +195965,27in 4K Gaming Monitor,1,389.99,04/01/19 15:13,"156 Ridge St, Dallas, TX 75001" +195966,USB-C Charging Cable,1,11.95,04/12/19 08:43,"97 Cherry St, San Francisco, CA 94016" +195967,USB-C Charging Cable,1,11.95,04/22/19 11:32,"463 Johnson St, Los Angeles, CA 90001" +195968,Macbook Pro Laptop,1,1700,04/11/19 17:07,"362 West St, Los Angeles, CA 90001" +195969,iPhone,1,700,04/26/19 11:48,"932 Maple St, New York City, NY 10001" +195970,Lightning Charging Cable,1,14.95,04/11/19 13:46,"881 Cherry St, Los Angeles, CA 90001" +195971,Wired Headphones,1,11.99,04/28/19 09:24,"127 4th St, Dallas, TX 75001" +195972,Wired Headphones,1,11.99,04/19/19 19:20,"681 2nd St, Portland, OR 97035" +195973,27in 4K Gaming Monitor,1,389.99,04/30/19 21:55,"28 Forest St, Boston, MA 02215" +195974,Bose SoundSport Headphones,1,99.99,04/28/19 12:43,"320 River St, New York City, NY 10001" +195975,USB-C Charging Cable,1,11.95,04/13/19 11:23,"917 Church St, San Francisco, CA 94016" +195976,Wired Headphones,1,11.99,04/19/19 11:16,"92 Washington St, New York City, NY 10001" +195977,Bose SoundSport Headphones,1,99.99,04/19/19 19:11,"475 Pine St, Los Angeles, CA 90001" +195978,USB-C Charging Cable,1,11.95,04/25/19 10:10,"417 10th St, Dallas, TX 75001" +195979,AA Batteries (4-pack),1,3.84,04/05/19 17:45,"681 Willow St, Boston, MA 02215" +195980,34in Ultrawide Monitor,1,379.99,04/02/19 16:41,"316 Lakeview St, Boston, MA 02215" +195981,AA Batteries (4-pack),1,3.84,04/28/19 11:35,"117 Hickory St, Los Angeles, CA 90001" +195982,34in Ultrawide Monitor,1,379.99,04/26/19 20:12,"991 5th St, Portland, OR 97035" +195983,AA Batteries (4-pack),1,3.84,04/08/19 23:25,"644 West St, Atlanta, GA 30301" +195984,Bose SoundSport Headphones,1,99.99,04/20/19 11:35,"667 8th St, San Francisco, CA 94016" +195985,iPhone,1,700,04/18/19 14:00,"864 Wilson St, Dallas, TX 75001" +195985,Apple Airpods Headphones,1,150,04/18/19 14:00,"864 Wilson St, Dallas, TX 75001" +195986,iPhone,1,700,04/12/19 18:47,"381 Washington St, Atlanta, GA 30301" +195986,Lightning Charging Cable,1,14.95,04/12/19 18:47,"381 Washington St, Atlanta, GA 30301" +195987,AAA Batteries (4-pack),1,2.99,04/29/19 14:39,"685 Jackson St, San Francisco, CA 94016" +195988,AAA Batteries (4-pack),1,2.99,04/02/19 07:24,"217 Park St, New York City, NY 10001" +195989,Bose SoundSport Headphones,1,99.99,04/28/19 16:31,"948 8th St, Boston, MA 02215" +195990,Apple Airpods Headphones,1,150,04/19/19 13:54,"932 7th St, San Francisco, CA 94016" +195991,34in Ultrawide Monitor,1,379.99,04/18/19 19:34,"229 Sunset St, Atlanta, GA 30301" +195992,ThinkPad Laptop,1,999.99,04/04/19 05:57,"190 Lincoln St, Los Angeles, CA 90001" +195993,LG Dryer,1,600.0,04/23/19 07:49,"706 South St, San Francisco, CA 94016" +195994,Lightning Charging Cable,1,14.95,04/29/19 12:26,"267 Johnson St, Boston, MA 02215" +195995,AAA Batteries (4-pack),1,2.99,04/26/19 12:00,"330 Cherry St, Los Angeles, CA 90001" +195996,Lightning Charging Cable,1,14.95,04/02/19 15:25,"994 Madison St, Atlanta, GA 30301" +195997,Google Phone,1,600,04/24/19 13:03,"49 10th St, San Francisco, CA 94016" +195998,AA Batteries (4-pack),1,3.84,04/05/19 10:00,"716 Dogwood St, Atlanta, GA 30301" +195998,Apple Airpods Headphones,1,150,04/05/19 10:00,"716 Dogwood St, Atlanta, GA 30301" +195999,Lightning Charging Cable,1,14.95,04/22/19 18:29,"793 Park St, Boston, MA 02215" +196000,Lightning Charging Cable,1,14.95,04/04/19 18:58,"246 5th St, San Francisco, CA 94016" +196001,27in FHD Monitor,1,149.99,04/04/19 18:51,"322 2nd St, New York City, NY 10001" +196002,Lightning Charging Cable,1,14.95,04/27/19 13:30,"675 Madison St, Los Angeles, CA 90001" +196003,Bose SoundSport Headphones,1,99.99,04/21/19 20:54,"139 Willow St, New York City, NY 10001" +196004,Google Phone,1,600,04/01/19 19:22,"50 Main St, New York City, NY 10001" +196005,Wired Headphones,1,11.99,04/13/19 12:21,"183 South St, Boston, MA 02215" +196006,Lightning Charging Cable,1,14.95,04/24/19 16:55,"697 Madison St, Boston, MA 02215" +196007,ThinkPad Laptop,1,999.99,04/28/19 19:21,"259 Hill St, Los Angeles, CA 90001" +196008,Bose SoundSport Headphones,1,99.99,04/05/19 18:31,"607 West St, Atlanta, GA 30301" +196009,Lightning Charging Cable,1,14.95,04/15/19 12:02,"683 7th St, Portland, OR 97035" +196010,AA Batteries (4-pack),1,3.84,04/09/19 01:08,"279 West St, Portland, OR 97035" +196011,Wired Headphones,1,11.99,04/19/19 19:56,"915 Highland St, Seattle, WA 98101" +196012,iPhone,1,700,04/05/19 16:35,"884 West St, Seattle, WA 98101" +196013,AAA Batteries (4-pack),1,2.99,04/20/19 21:10,"154 Lake St, Seattle, WA 98101" +196014,AA Batteries (4-pack),2,3.84,04/22/19 15:56,"16 2nd St, Atlanta, GA 30301" +196015,Google Phone,1,600,04/03/19 19:56,"269 Washington St, Seattle, WA 98101" +196016,Apple Airpods Headphones,1,150,04/06/19 09:32,"875 13th St, Atlanta, GA 30301" +196017,27in 4K Gaming Monitor,1,389.99,04/09/19 12:23,"422 Main St, New York City, NY 10001" +196018,USB-C Charging Cable,2,11.95,04/09/19 21:49,"633 Main St, Austin, TX 73301" +196019,AAA Batteries (4-pack),1,2.99,04/01/19 13:23,"584 Wilson St, Boston, MA 02215" +196020,AA Batteries (4-pack),2,3.84,04/17/19 13:03,"642 Forest St, Los Angeles, CA 90001" +196021,Flatscreen TV,1,300,04/30/19 19:29,"413 Madison St, New York City, NY 10001" +196022,Apple Airpods Headphones,1,150,04/17/19 10:03,"706 Lincoln St, New York City, NY 10001" +196023,AA Batteries (4-pack),1,3.84,04/07/19 10:58,"480 2nd St, Boston, MA 02215" +196024,USB-C Charging Cable,2,11.95,04/08/19 17:04,"856 Forest St, Dallas, TX 75001" +196025,Wired Headphones,1,11.99,04/11/19 20:19,"434 Dogwood St, Boston, MA 02215" +196026,AAA Batteries (4-pack),1,2.99,04/20/19 14:44,"622 River St, Seattle, WA 98101" +196027,Lightning Charging Cable,1,14.95,04/17/19 04:32,"68 1st St, Boston, MA 02215" +196028,Lightning Charging Cable,1,14.95,04/26/19 23:00,"829 Johnson St, Los Angeles, CA 90001" +196029,USB-C Charging Cable,1,11.95,04/20/19 17:22,"981 Lincoln St, Los Angeles, CA 90001" +196030,34in Ultrawide Monitor,1,379.99,04/19/19 12:53,"451 Pine St, Austin, TX 73301" +196031,Wired Headphones,1,11.99,04/21/19 16:52,"839 Main St, San Francisco, CA 94016" +196032,Apple Airpods Headphones,1,150,04/12/19 22:32,"145 North St, San Francisco, CA 94016" +196032,Lightning Charging Cable,1,14.95,04/12/19 22:32,"145 North St, San Francisco, CA 94016" +196033,Wired Headphones,1,11.99,04/22/19 17:57,"980 Adams St, Atlanta, GA 30301" +196034,AA Batteries (4-pack),1,3.84,04/09/19 10:46,"641 Dogwood St, Atlanta, GA 30301" +196035,20in Monitor,1,109.99,04/26/19 17:14,"549 Forest St, Austin, TX 73301" +196036,Lightning Charging Cable,1,14.95,04/28/19 12:31,"80 4th St, Los Angeles, CA 90001" +196037,ThinkPad Laptop,1,999.99,04/25/19 01:30,"830 Forest St, Boston, MA 02215" +196038,AA Batteries (4-pack),2,3.84,04/29/19 16:06,"611 Highland St, Austin, TX 73301" +196039,Lightning Charging Cable,1,14.95,04/13/19 17:39,"580 Madison St, Atlanta, GA 30301" +196040,AA Batteries (4-pack),1,3.84,04/10/19 11:44,"127 4th St, Dallas, TX 75001" +196041,34in Ultrawide Monitor,1,379.99,04/03/19 17:43,"105 12th St, Boston, MA 02215" +196042,Lightning Charging Cable,1,14.95,04/21/19 20:22,"977 12th St, Portland, ME 04101" +196043,AA Batteries (4-pack),1,3.84,04/10/19 14:16,"109 6th St, Los Angeles, CA 90001" +196044,ThinkPad Laptop,1,999.99,04/19/19 19:56,"105 Church St, San Francisco, CA 94016" +196045,iPhone,1,700,04/07/19 16:16,"346 Wilson St, Boston, MA 02215" +196046,AA Batteries (4-pack),1,3.84,04/16/19 11:45,"947 5th St, Austin, TX 73301" +196047,AA Batteries (4-pack),1,3.84,04/20/19 15:05,"289 West St, San Francisco, CA 94016" +196048,34in Ultrawide Monitor,1,379.99,04/29/19 13:56,"678 Maple St, San Francisco, CA 94016" +196049,AAA Batteries (4-pack),1,2.99,04/19/19 20:34,"607 Willow St, Seattle, WA 98101" +196050,AA Batteries (4-pack),1,3.84,04/21/19 16:42,"954 North St, Atlanta, GA 30301" +196051,Apple Airpods Headphones,1,150,04/30/19 13:44,"666 Sunset St, Los Angeles, CA 90001" +196052,AAA Batteries (4-pack),1,2.99,04/22/19 22:36,"156 9th St, Dallas, TX 75001" +196053,Macbook Pro Laptop,1,1700,04/22/19 13:54,"610 West St, Los Angeles, CA 90001" +196054,Lightning Charging Cable,1,14.95,04/01/19 11:32,"872 Elm St, Los Angeles, CA 90001" +196055,AA Batteries (4-pack),2,3.84,05/01/19 00:38,"529 Park St, Portland, OR 97035" +196056,Lightning Charging Cable,1,14.95,04/11/19 21:56,"963 Center St, Austin, TX 73301" +196057,AAA Batteries (4-pack),1,2.99,04/20/19 16:48,"720 14th St, Seattle, WA 98101" +196058,Apple Airpods Headphones,1,150,04/14/19 11:08,"342 Elm St, Portland, ME 04101" +196059,Lightning Charging Cable,2,14.95,04/22/19 15:42,"169 4th St, Atlanta, GA 30301" +196060,Google Phone,1,600,04/07/19 21:53,"909 Highland St, San Francisco, CA 94016" +196061,AAA Batteries (4-pack),2,2.99,04/21/19 13:27,"790 4th St, Dallas, TX 75001" +196062,USB-C Charging Cable,1,11.95,04/21/19 22:48,"831 Church St, Seattle, WA 98101" +196062,AA Batteries (4-pack),1,3.84,04/21/19 22:48,"831 Church St, Seattle, WA 98101" +196063,Lightning Charging Cable,1,14.95,04/18/19 18:21,"96 9th St, San Francisco, CA 94016" +196064,Wired Headphones,1,11.99,04/30/19 18:56,"725 Church St, Los Angeles, CA 90001" +196065,AA Batteries (4-pack),3,3.84,04/25/19 21:10,"138 11th St, San Francisco, CA 94016" +196066,AAA Batteries (4-pack),1,2.99,04/14/19 12:19,"134 Center St, Los Angeles, CA 90001" +196067,Google Phone,1,600,04/25/19 21:06,"847 Forest St, Los Angeles, CA 90001" +196067,USB-C Charging Cable,1,11.95,04/25/19 21:06,"847 Forest St, Los Angeles, CA 90001" +196068,27in FHD Monitor,1,149.99,04/30/19 09:57,"654 Cherry St, Los Angeles, CA 90001" +196069,USB-C Charging Cable,1,11.95,04/19/19 16:45,"643 South St, San Francisco, CA 94016" +196070,Bose SoundSport Headphones,1,99.99,04/08/19 08:19,"769 7th St, San Francisco, CA 94016" +196071,27in FHD Monitor,1,149.99,04/12/19 11:42,"829 13th St, Boston, MA 02215" +196072,AA Batteries (4-pack),2,3.84,04/12/19 12:02,"420 Sunset St, San Francisco, CA 94016" +196073,AA Batteries (4-pack),1,3.84,04/12/19 10:29,"677 Johnson St, Los Angeles, CA 90001" +196074,AA Batteries (4-pack),1,3.84,04/09/19 11:58,"391 Spruce St, Portland, OR 97035" +196075,AA Batteries (4-pack),1,3.84,04/09/19 20:43,"407 Dogwood St, Dallas, TX 75001" +196076,Google Phone,1,600,04/20/19 19:53,"381 Lincoln St, Los Angeles, CA 90001" +196076,USB-C Charging Cable,2,11.95,04/20/19 19:53,"381 Lincoln St, Los Angeles, CA 90001" +196077,AA Batteries (4-pack),1,3.84,04/06/19 21:02,"728 Cedar St, Seattle, WA 98101" +196078,34in Ultrawide Monitor,1,379.99,04/29/19 08:08,"213 13th St, Atlanta, GA 30301" +196079,27in FHD Monitor,1,149.99,04/03/19 11:59,"896 Spruce St, San Francisco, CA 94016" +196080,AAA Batteries (4-pack),1,2.99,04/26/19 13:37,"636 Walnut St, San Francisco, CA 94016" +196081,27in 4K Gaming Monitor,1,389.99,04/15/19 17:06,"572 Washington St, Los Angeles, CA 90001" +196082,AA Batteries (4-pack),1,3.84,04/25/19 22:00,"788 Hill St, San Francisco, CA 94016" +196083,Macbook Pro Laptop,1,1700,04/04/19 10:27,"17 7th St, New York City, NY 10001" +196084,Flatscreen TV,1,300,04/06/19 21:15,"630 Pine St, Los Angeles, CA 90001" +196085,USB-C Charging Cable,1,11.95,04/02/19 16:31,"48 2nd St, San Francisco, CA 94016" +,,,,, +196086,ThinkPad Laptop,1,999.99,04/04/19 09:35,"7 Madison St, Los Angeles, CA 90001" +196087,AAA Batteries (4-pack),1,2.99,04/15/19 11:43,"898 13th St, San Francisco, CA 94016" +196088,27in FHD Monitor,1,149.99,04/19/19 15:22,"886 7th St, Portland, OR 97035" +196089,34in Ultrawide Monitor,1,379.99,04/20/19 19:46,"12 Pine St, San Francisco, CA 94016" +196090,Wired Headphones,1,11.99,04/12/19 04:35,"161 Lakeview St, Austin, TX 73301" +196091,27in 4K Gaming Monitor,1,389.99,04/18/19 08:50,"238 10th St, Dallas, TX 75001" +196092,iPhone,1,700,04/27/19 11:56,"14 Chestnut St, Los Angeles, CA 90001" +196093,Bose SoundSport Headphones,1,99.99,04/27/19 12:23,"444 Lake St, San Francisco, CA 94016" +196094,27in FHD Monitor,1,149.99,04/20/19 13:23,"225 Jefferson St, New York City, NY 10001" +196095,USB-C Charging Cable,1,11.95,04/30/19 22:43,"501 Ridge St, San Francisco, CA 94016" +196096,Lightning Charging Cable,1,14.95,04/03/19 20:53,"526 7th St, Boston, MA 02215" +196097,USB-C Charging Cable,1,11.95,04/12/19 22:18,"926 West St, San Francisco, CA 94016" +196098,27in 4K Gaming Monitor,1,389.99,04/06/19 11:51,"153 Lincoln St, San Francisco, CA 94016" +196099,27in 4K Gaming Monitor,1,389.99,04/29/19 11:39,"313 1st St, Los Angeles, CA 90001" +196100,AA Batteries (4-pack),2,3.84,04/03/19 09:56,"924 Sunset St, San Francisco, CA 94016" +196101,Apple Airpods Headphones,1,150,04/12/19 21:20,"559 Jefferson St, New York City, NY 10001" +196102,Flatscreen TV,1,300,04/18/19 19:50,"628 Wilson St, Austin, TX 73301" +196103,Bose SoundSport Headphones,1,99.99,04/07/19 11:46,"226 9th St, San Francisco, CA 94016" +196104,AA Batteries (4-pack),1,3.84,04/06/19 19:37,"705 Main St, Boston, MA 02215" +196105,27in FHD Monitor,1,149.99,04/15/19 20:06,"807 West St, Seattle, WA 98101" +196106,Macbook Pro Laptop,1,1700,04/13/19 17:56,"510 8th St, Portland, OR 97035" +196107,AA Batteries (4-pack),1,3.84,04/23/19 20:05,"913 Hickory St, San Francisco, CA 94016" +196108,Flatscreen TV,1,300,04/03/19 12:10,"839 Spruce St, Los Angeles, CA 90001" +196109,AAA Batteries (4-pack),1,2.99,04/01/19 12:27,"332 5th St, San Francisco, CA 94016" +196110,Bose SoundSport Headphones,1,99.99,04/14/19 12:49,"145 2nd St, San Francisco, CA 94016" +196111,Macbook Pro Laptop,1,1700,04/01/19 23:01,"6 Hickory St, San Francisco, CA 94016" +196112,20in Monitor,1,109.99,04/11/19 08:33,"71 Pine St, Seattle, WA 98101" +196113,Wired Headphones,1,11.99,04/02/19 16:58,"762 Willow St, Seattle, WA 98101" +196114,USB-C Charging Cable,1,11.95,04/16/19 11:59,"743 Hill St, Boston, MA 02215" +196115,34in Ultrawide Monitor,1,379.99,04/27/19 18:30,"327 Hickory St, Dallas, TX 75001" +196116,ThinkPad Laptop,1,999.99,04/03/19 08:44,"983 Willow St, New York City, NY 10001" +196117,USB-C Charging Cable,1,11.95,04/21/19 19:23,"894 Madison St, San Francisco, CA 94016" +196118,iPhone,1,700,04/02/19 19:18,"948 6th St, Los Angeles, CA 90001" +196118,Wired Headphones,1,11.99,04/02/19 19:18,"948 6th St, Los Angeles, CA 90001" +196119,27in FHD Monitor,1,149.99,04/10/19 11:43,"938 14th St, New York City, NY 10001" +196120,USB-C Charging Cable,1,11.95,04/05/19 16:03,"222 Chestnut St, Los Angeles, CA 90001" +196121,Lightning Charging Cable,1,14.95,04/21/19 07:30,"826 14th St, Dallas, TX 75001" +196122,AA Batteries (4-pack),1,3.84,04/16/19 18:31,"494 Church St, Los Angeles, CA 90001" +196123,Flatscreen TV,1,300,04/23/19 23:49,"728 Walnut St, Dallas, TX 75001" +196124,USB-C Charging Cable,1,11.95,04/25/19 11:42,"965 9th St, Boston, MA 02215" +196125,34in Ultrawide Monitor,1,379.99,04/27/19 09:42,"976 12th St, San Francisco, CA 94016" +196126,27in 4K Gaming Monitor,1,389.99,04/10/19 20:29,"668 Johnson St, Atlanta, GA 30301" +196127,USB-C Charging Cable,1,11.95,04/16/19 09:58,"895 Wilson St, Boston, MA 02215" +196128,34in Ultrawide Monitor,1,379.99,04/26/19 21:57,"230 Johnson St, San Francisco, CA 94016" +196129,AAA Batteries (4-pack),3,2.99,04/21/19 10:31,"702 6th St, New York City, NY 10001" +196130,AAA Batteries (4-pack),1,2.99,04/26/19 23:19,"408 Meadow St, San Francisco, CA 94016" +196131,AAA Batteries (4-pack),1,2.99,04/15/19 12:09,"111 Forest St, San Francisco, CA 94016" +196132,AA Batteries (4-pack),1,3.84,04/04/19 12:00,"741 West St, New York City, NY 10001" +196133,Lightning Charging Cable,1,14.95,04/04/19 09:05,"805 Wilson St, Los Angeles, CA 90001" +196134,AA Batteries (4-pack),1,3.84,04/21/19 12:39,"845 Jefferson St, San Francisco, CA 94016" +196135,27in FHD Monitor,1,149.99,04/24/19 16:14,"936 4th St, San Francisco, CA 94016" +196136,AAA Batteries (4-pack),1,2.99,04/01/19 17:32,"327 Park St, Atlanta, GA 30301" +196137,AAA Batteries (4-pack),1,2.99,04/24/19 12:55,"375 4th St, Seattle, WA 98101" +196138,iPhone,1,700,04/21/19 15:04,"540 South St, New York City, NY 10001" +196139,Wired Headphones,1,11.99,04/12/19 17:31,"403 1st St, San Francisco, CA 94016" +196140,Flatscreen TV,1,300,04/10/19 18:51,"447 14th St, Dallas, TX 75001" +196141,USB-C Charging Cable,1,11.95,04/07/19 10:10,"777 5th St, San Francisco, CA 94016" +196142,34in Ultrawide Monitor,1,379.99,04/02/19 17:36,"862 Walnut St, San Francisco, CA 94016" +196143,AA Batteries (4-pack),3,3.84,04/10/19 11:20,"161 Adams St, Boston, MA 02215" +196144,AAA Batteries (4-pack),1,2.99,04/17/19 08:01,"565 9th St, Seattle, WA 98101" +196145,Google Phone,1,600,04/10/19 10:59,"157 Church St, Austin, TX 73301" +196146,Lightning Charging Cable,1,14.95,04/06/19 20:44,"168 Lake St, Seattle, WA 98101" +196147,AAA Batteries (4-pack),3,2.99,04/23/19 11:18,"278 Madison St, Boston, MA 02215" +196148,AA Batteries (4-pack),1,3.84,04/04/19 11:09,"657 Jefferson St, San Francisco, CA 94016" +196149,Flatscreen TV,1,300,04/22/19 10:52,"532 Main St, Los Angeles, CA 90001" +196150,ThinkPad Laptop,1,999.99,04/21/19 21:51,"295 South St, Los Angeles, CA 90001" +196151,AAA Batteries (4-pack),1,2.99,04/07/19 12:31,"902 7th St, Seattle, WA 98101" +196152,Apple Airpods Headphones,1,150,04/07/19 16:31,"159 7th St, Austin, TX 73301" +196153,iPhone,1,700,04/01/19 20:19,"797 Willow St, San Francisco, CA 94016" +196154,Apple Airpods Headphones,1,150,04/14/19 20:53,"632 13th St, New York City, NY 10001" +196155,Bose SoundSport Headphones,1,99.99,05/01/19 01:39,"592 5th St, San Francisco, CA 94016" +196156,Wired Headphones,1,11.99,04/29/19 04:18,"643 Forest St, New York City, NY 10001" +196157,Lightning Charging Cable,1,14.95,04/26/19 14:40,"741 River St, Seattle, WA 98101" +196158,USB-C Charging Cable,1,11.95,04/30/19 21:03,"512 Highland St, San Francisco, CA 94016" +196159,Wired Headphones,2,11.99,04/05/19 08:56,"573 10th St, San Francisco, CA 94016" +196160,Wired Headphones,1,11.99,04/16/19 22:07,"979 13th St, San Francisco, CA 94016" +196161,iPhone,1,700,04/07/19 18:31,"103 Church St, San Francisco, CA 94016" +196162,27in FHD Monitor,1,149.99,04/14/19 22:38,"491 Meadow St, Portland, OR 97035" +196163,USB-C Charging Cable,1,11.95,04/15/19 12:45,"999 Ridge St, Boston, MA 02215" +196164,Lightning Charging Cable,1,14.95,04/18/19 18:23,"234 Willow St, Seattle, WA 98101" +196165,AAA Batteries (4-pack),1,2.99,04/04/19 21:03,"184 Park St, Boston, MA 02215" +196166,Bose SoundSport Headphones,1,99.99,04/26/19 19:47,"297 Chestnut St, San Francisco, CA 94016" +196167,27in FHD Monitor,1,149.99,04/01/19 20:28,"688 Highland St, New York City, NY 10001" +196168,Apple Airpods Headphones,1,150,04/04/19 08:07,"134 10th St, Seattle, WA 98101" +196169,USB-C Charging Cable,2,11.95,04/20/19 09:42,"116 Pine St, San Francisco, CA 94016" +196170,34in Ultrawide Monitor,1,379.99,04/09/19 07:57,"556 6th St, Portland, ME 04101" +196171,Apple Airpods Headphones,1,150,04/13/19 19:00,"219 Walnut St, New York City, NY 10001" +196172,USB-C Charging Cable,1,11.95,04/10/19 17:57,"649 Cedar St, Los Angeles, CA 90001" +196173,AAA Batteries (4-pack),1,2.99,04/03/19 21:42,"805 10th St, Los Angeles, CA 90001" +196174,AAA Batteries (4-pack),1,2.99,04/01/19 17:46,"257 Church St, Atlanta, GA 30301" +196175,Apple Airpods Headphones,1,150,04/14/19 16:14,"248 Jefferson St, New York City, NY 10001" +196176,Apple Airpods Headphones,1,150,04/21/19 20:59,"100 Ridge St, Boston, MA 02215" +196177,iPhone,1,700,04/22/19 14:03,"144 Adams St, Portland, OR 97035" +196178,USB-C Charging Cable,1,11.95,04/06/19 11:17,"715 Willow St, Dallas, TX 75001" +196178,USB-C Charging Cable,1,11.95,04/06/19 11:17,"715 Willow St, Dallas, TX 75001" +196179,USB-C Charging Cable,1,11.95,04/14/19 23:30,"521 North St, Boston, MA 02215" +196180,AA Batteries (4-pack),2,3.84,04/11/19 22:47,"225 Center St, New York City, NY 10001" +196181,Wired Headphones,1,11.99,04/05/19 23:25,"815 Ridge St, New York City, NY 10001" +196182,AAA Batteries (4-pack),1,2.99,04/14/19 22:35,"412 Highland St, Boston, MA 02215" +196182,Bose SoundSport Headphones,1,99.99,04/14/19 22:35,"412 Highland St, Boston, MA 02215" +196183,USB-C Charging Cable,1,11.95,04/12/19 14:26,"426 West St, Austin, TX 73301" +196184,Macbook Pro Laptop,1,1700,04/29/19 18:36,"673 Meadow St, New York City, NY 10001" +196185,Lightning Charging Cable,1,14.95,04/29/19 20:02,"122 Spruce St, New York City, NY 10001" +196186,AA Batteries (4-pack),1,3.84,04/11/19 14:26,"440 Center St, San Francisco, CA 94016" +196187,ThinkPad Laptop,1,999.99,04/30/19 20:57,"269 Adams St, Dallas, TX 75001" +196188,AA Batteries (4-pack),2,3.84,04/23/19 16:20,"696 Willow St, Austin, TX 73301" +196189,AA Batteries (4-pack),2,3.84,04/27/19 17:04,"34 Church St, San Francisco, CA 94016" +196190,Wired Headphones,1,11.99,04/10/19 12:54,"394 4th St, Seattle, WA 98101" +196191,AA Batteries (4-pack),1,3.84,04/14/19 09:49,"12 Main St, San Francisco, CA 94016" +196192,20in Monitor,1,109.99,04/27/19 22:44,"806 Cedar St, San Francisco, CA 94016" +196193,USB-C Charging Cable,1,11.95,04/19/19 11:24,"316 Johnson St, New York City, NY 10001" +196194,USB-C Charging Cable,1,11.95,04/05/19 13:20,"216 Dogwood St, New York City, NY 10001" +196195,AAA Batteries (4-pack),5,2.99,04/30/19 12:36,"860 Walnut St, San Francisco, CA 94016" +196196,27in FHD Monitor,1,149.99,04/22/19 16:32,"381 Ridge St, Los Angeles, CA 90001" +196197,AA Batteries (4-pack),1,3.84,04/06/19 17:55,"968 Lincoln St, San Francisco, CA 94016" +196198,AAA Batteries (4-pack),1,2.99,04/01/19 13:58,"913 Highland St, San Francisco, CA 94016" +196199,Lightning Charging Cable,1,14.95,04/07/19 10:20,"68 Forest St, New York City, NY 10001" +196200,AA Batteries (4-pack),1,3.84,04/25/19 17:50,"887 9th St, San Francisco, CA 94016" +196201,Bose SoundSport Headphones,1,99.99,04/05/19 11:14,"806 Sunset St, Seattle, WA 98101" +196201,USB-C Charging Cable,1,11.95,04/05/19 11:14,"806 Sunset St, Seattle, WA 98101" +196202,Lightning Charging Cable,1,14.95,04/06/19 22:01,"731 6th St, Los Angeles, CA 90001" +196203,AAA Batteries (4-pack),1,2.99,04/04/19 20:59,"106 Johnson St, New York City, NY 10001" +196204,USB-C Charging Cable,2,11.95,04/24/19 15:32,"3 Elm St, San Francisco, CA 94016" +196205,AA Batteries (4-pack),1,3.84,04/06/19 10:56,"827 6th St, New York City, NY 10001" +196206,USB-C Charging Cable,1,11.95,04/05/19 08:31,"792 Forest St, Seattle, WA 98101" +196207,Apple Airpods Headphones,1,150,04/12/19 17:52,"725 Park St, Dallas, TX 75001" +,,,,, +196208,Lightning Charging Cable,2,14.95,04/26/19 13:20,"581 Johnson St, Dallas, TX 75001" +196209,Apple Airpods Headphones,1,150,04/21/19 14:09,"475 Dogwood St, San Francisco, CA 94016" +196210,Macbook Pro Laptop,1,1700,04/18/19 17:28,"396 Wilson St, Boston, MA 02215" +196211,USB-C Charging Cable,1,11.95,04/18/19 22:31,"402 Center St, Boston, MA 02215" +196212,AA Batteries (4-pack),1,3.84,04/13/19 08:13,"192 Ridge St, Seattle, WA 98101" +196213,Bose SoundSport Headphones,1,99.99,04/01/19 21:34,"274 Wilson St, New York City, NY 10001" +196214,Flatscreen TV,1,300,04/06/19 15:44,"866 Adams St, Austin, TX 73301" +196215,AAA Batteries (4-pack),1,2.99,04/19/19 19:34,"8 4th St, Los Angeles, CA 90001" +196216,Wired Headphones,1,11.99,04/15/19 19:10,"578 10th St, Los Angeles, CA 90001" +196217,USB-C Charging Cable,1,11.95,04/15/19 19:17,"500 Highland St, Dallas, TX 75001" +196218,AAA Batteries (4-pack),1,2.99,04/14/19 19:26,"870 North St, Atlanta, GA 30301" +196219,Lightning Charging Cable,1,14.95,04/07/19 13:49,"849 Cedar St, Dallas, TX 75001" +196220,Bose SoundSport Headphones,1,99.99,04/20/19 11:19,"85 North St, New York City, NY 10001" +196221,Lightning Charging Cable,1,14.95,04/23/19 15:48,"180 Church St, San Francisco, CA 94016" +196222,Apple Airpods Headphones,1,150,04/30/19 04:07,"779 Jackson St, San Francisco, CA 94016" +196223,34in Ultrawide Monitor,1,379.99,04/18/19 22:03,"518 Main St, Boston, MA 02215" +196224,Lightning Charging Cable,1,14.95,04/28/19 13:00,"410 Maple St, Seattle, WA 98101" +196225,20in Monitor,1,109.99,04/25/19 18:17,"498 North St, Boston, MA 02215" +196226,Apple Airpods Headphones,1,150,04/16/19 12:03,"557 13th St, Atlanta, GA 30301" +196227,20in Monitor,1,109.99,04/02/19 12:45,"60 5th St, San Francisco, CA 94016" +196228,Bose SoundSport Headphones,1,99.99,04/12/19 12:27,"346 Lake St, San Francisco, CA 94016" +196229,ThinkPad Laptop,1,999.99,04/03/19 12:57,"328 Jackson St, Boston, MA 02215" +196230,USB-C Charging Cable,1,11.95,04/05/19 10:48,"580 Cedar St, New York City, NY 10001" +196231,27in 4K Gaming Monitor,1,389.99,04/27/19 13:27,"404 Center St, Atlanta, GA 30301" +196232,27in FHD Monitor,1,149.99,04/09/19 13:54,"878 Madison St, Seattle, WA 98101" +196233,Lightning Charging Cable,1,14.95,04/13/19 11:17,"428 Center St, Austin, TX 73301" +196234,27in FHD Monitor,1,149.99,04/03/19 20:50,"63 Elm St, Atlanta, GA 30301" +196235,iPhone,1,700,04/24/19 01:15,"8 Park St, Los Angeles, CA 90001" +196236,Apple Airpods Headphones,1,150,04/09/19 11:25,"308 Adams St, Seattle, WA 98101" +196237,Lightning Charging Cable,1,14.95,04/02/19 13:12,"983 Washington St, Los Angeles, CA 90001" +196238,Macbook Pro Laptop,1,1700,04/16/19 14:16,"371 Lincoln St, Dallas, TX 75001" +196239,ThinkPad Laptop,1,999.99,04/29/19 17:48,"694 Wilson St, New York City, NY 10001" +196240,Lightning Charging Cable,1,14.95,04/10/19 15:24,"717 Johnson St, Boston, MA 02215" +196241,USB-C Charging Cable,1,11.95,04/23/19 23:41,"712 Washington St, Dallas, TX 75001" +196242,Apple Airpods Headphones,1,150,04/24/19 12:40,"300 Sunset St, San Francisco, CA 94016" +196243,27in 4K Gaming Monitor,1,389.99,04/28/19 12:11,"524 Johnson St, San Francisco, CA 94016" +196244,Bose SoundSport Headphones,1,99.99,04/03/19 15:07,"943 Hill St, Boston, MA 02215" +196245,AA Batteries (4-pack),1,3.84,04/29/19 13:29,"400 Jackson St, Los Angeles, CA 90001" +196246,Flatscreen TV,1,300,04/09/19 12:25,"853 Lake St, San Francisco, CA 94016" +196247,USB-C Charging Cable,1,11.95,04/28/19 13:46,"512 5th St, Los Angeles, CA 90001" +196248,Macbook Pro Laptop,1,1700,04/26/19 18:59,"709 Forest St, San Francisco, CA 94016" +196249,Apple Airpods Headphones,1,150,04/06/19 23:24,"547 14th St, Los Angeles, CA 90001" +196250,Wired Headphones,1,11.99,04/14/19 13:05,"343 2nd St, San Francisco, CA 94016" +196251,Vareebadd Phone,1,400,04/10/19 13:24,"866 Hill St, Boston, MA 02215" +196252,Bose SoundSport Headphones,1,99.99,04/21/19 15:16,"387 5th St, Seattle, WA 98101" +196253,Bose SoundSport Headphones,1,99.99,04/28/19 16:43,"378 Hickory St, Dallas, TX 75001" +196254,USB-C Charging Cable,1,11.95,04/18/19 20:06,"480 Dogwood St, San Francisco, CA 94016" +196255,iPhone,1,700,04/01/19 16:17,"557 Maple St, Los Angeles, CA 90001" +196256,AAA Batteries (4-pack),1,2.99,04/12/19 20:05,"909 Jackson St, Los Angeles, CA 90001" +196257,Wired Headphones,1,11.99,04/04/19 11:45,"189 Center St, Los Angeles, CA 90001" +196258,Lightning Charging Cable,1,14.95,04/01/19 11:23,"856 8th St, Los Angeles, CA 90001" +196259,Wired Headphones,1,11.99,04/23/19 22:09,"652 9th St, Los Angeles, CA 90001" +196260,iPhone,1,700,04/13/19 08:44,"925 Main St, Dallas, TX 75001" +196261,Google Phone,1,600,04/29/19 14:14,"566 West St, Seattle, WA 98101" +196261,Wired Headphones,1,11.99,04/29/19 14:14,"566 West St, Seattle, WA 98101" +196262,iPhone,1,700,04/17/19 11:44,"287 1st St, Atlanta, GA 30301" +196263,Google Phone,1,600,04/03/19 11:37,"572 Hill St, San Francisco, CA 94016" +196264,AAA Batteries (4-pack),1,2.99,04/25/19 17:26,"47 Lake St, Los Angeles, CA 90001" +196265,AAA Batteries (4-pack),3,2.99,04/08/19 22:03,"816 North St, Boston, MA 02215" +196266,Apple Airpods Headphones,1,150,04/19/19 12:37,"633 Elm St, Los Angeles, CA 90001" +196267,Lightning Charging Cable,1,14.95,04/03/19 20:41,"65 Center St, Seattle, WA 98101" +196268,Wired Headphones,1,11.99,04/20/19 17:08,"702 Meadow St, San Francisco, CA 94016" +196269,AAA Batteries (4-pack),1,2.99,04/14/19 15:44,"281 14th St, Seattle, WA 98101" +196270,34in Ultrawide Monitor,1,379.99,04/03/19 09:46,"760 Chestnut St, Boston, MA 02215" +196271,27in 4K Gaming Monitor,1,389.99,04/08/19 18:22,"500 Church St, Seattle, WA 98101" +196272,USB-C Charging Cable,1,11.95,04/04/19 22:54,"902 Meadow St, Atlanta, GA 30301" +196273,Bose SoundSport Headphones,1,99.99,04/24/19 11:14,"880 9th St, Boston, MA 02215" +196274,ThinkPad Laptop,1,999.99,04/28/19 21:55,"433 Meadow St, Boston, MA 02215" +196275,20in Monitor,1,109.99,04/13/19 12:46,"41 Meadow St, Los Angeles, CA 90001" +196276,34in Ultrawide Monitor,1,379.99,04/17/19 13:33,"849 Adams St, Dallas, TX 75001" +196277,Wired Headphones,2,11.99,04/15/19 23:16,"733 Main St, Seattle, WA 98101" +196278,Flatscreen TV,1,300,04/26/19 16:58,"374 Walnut St, San Francisco, CA 94016" +196279,Lightning Charging Cable,1,14.95,04/02/19 09:39,"789 Church St, Seattle, WA 98101" +196280,USB-C Charging Cable,1,11.95,04/24/19 10:46,"338 10th St, Atlanta, GA 30301" +196281,Bose SoundSport Headphones,1,99.99,04/09/19 21:55,"756 7th St, San Francisco, CA 94016" +196282,AA Batteries (4-pack),2,3.84,04/29/19 11:33,"140 Church St, Los Angeles, CA 90001" +196283,AA Batteries (4-pack),1,3.84,04/19/19 17:47,"40 Park St, Seattle, WA 98101" +196284,AA Batteries (4-pack),1,3.84,04/06/19 20:27,"866 Park St, San Francisco, CA 94016" +196285,Bose SoundSport Headphones,1,99.99,04/18/19 16:14,"708 Willow St, San Francisco, CA 94016" +196286,ThinkPad Laptop,1,999.99,04/19/19 00:10,"906 Chestnut St, Atlanta, GA 30301" +196287,Wired Headphones,1,11.99,04/11/19 11:36,"573 13th St, Dallas, TX 75001" +196288,20in Monitor,1,109.99,04/30/19 10:05,"876 West St, San Francisco, CA 94016" +196289,AA Batteries (4-pack),1,3.84,04/11/19 19:25,"972 Madison St, Los Angeles, CA 90001" +196290,ThinkPad Laptop,1,999.99,04/28/19 20:29,"404 10th St, Atlanta, GA 30301" +196291,Bose SoundSport Headphones,1,99.99,04/04/19 11:54,"399 Wilson St, San Francisco, CA 94016" +196292,Wired Headphones,2,11.99,04/24/19 21:06,"838 Meadow St, Boston, MA 02215" +196293,Wired Headphones,1,11.99,04/05/19 09:08,"161 Jackson St, Austin, TX 73301" +196294,USB-C Charging Cable,1,11.95,04/09/19 10:28,"871 South St, Boston, MA 02215" +196295,27in 4K Gaming Monitor,1,389.99,04/04/19 20:33,"857 Jackson St, Portland, ME 04101" +196296,ThinkPad Laptop,1,999.99,04/07/19 14:38,"356 Adams St, Los Angeles, CA 90001" +196297,AAA Batteries (4-pack),2,2.99,04/01/19 16:00,"457 Elm St, San Francisco, CA 94016" +196298,27in 4K Gaming Monitor,1,389.99,04/27/19 08:42,"621 North St, Dallas, TX 75001" +196299,USB-C Charging Cable,1,11.95,04/20/19 17:21,"84 8th St, San Francisco, CA 94016" +196300,Macbook Pro Laptop,1,1700,04/16/19 13:36,"764 Church St, San Francisco, CA 94016" +196301,Wired Headphones,1,11.99,04/11/19 15:05,"606 Meadow St, Los Angeles, CA 90001" +196302,AAA Batteries (4-pack),3,2.99,04/23/19 12:25,"418 14th St, San Francisco, CA 94016" +196302,Lightning Charging Cable,1,14.95,04/23/19 12:25,"418 14th St, San Francisco, CA 94016" +196303,Apple Airpods Headphones,1,150,04/27/19 21:18,"347 Lake St, Seattle, WA 98101" +196304,LG Dryer,1,600.0,04/06/19 14:27,"658 Hill St, Los Angeles, CA 90001" +196305,USB-C Charging Cable,1,11.95,04/02/19 12:35,"281 Jackson St, Portland, OR 97035" +196306,Wired Headphones,1,11.99,04/09/19 03:08,"670 6th St, Los Angeles, CA 90001" +196307,34in Ultrawide Monitor,1,379.99,04/22/19 12:52,"624 Ridge St, Austin, TX 73301" +196308,AA Batteries (4-pack),2,3.84,04/24/19 10:40,"65 11th St, Los Angeles, CA 90001" +196309,AAA Batteries (4-pack),1,2.99,04/23/19 19:38,"667 Washington St, Los Angeles, CA 90001" +196310,iPhone,1,700,04/14/19 20:07,"323 13th St, New York City, NY 10001" +,,,,, +196311,AAA Batteries (4-pack),3,2.99,04/25/19 12:07,"508 5th St, New York City, NY 10001" +196312,AAA Batteries (4-pack),1,2.99,04/18/19 16:04,"551 Willow St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +196313,20in Monitor,1,109.99,04/16/19 01:10,"67 Washington St, San Francisco, CA 94016" +196314,Bose SoundSport Headphones,1,99.99,04/29/19 15:19,"378 14th St, Austin, TX 73301" +196315,20in Monitor,1,109.99,04/05/19 13:10,"302 Spruce St, San Francisco, CA 94016" +196316,Apple Airpods Headphones,1,150,05/01/19 03:11,"920 8th St, Los Angeles, CA 90001" +196317,AAA Batteries (4-pack),1,2.99,04/01/19 15:08,"124 12th St, Los Angeles, CA 90001" +196318,Lightning Charging Cable,1,14.95,04/21/19 20:27,"539 Lincoln St, New York City, NY 10001" +196319,AA Batteries (4-pack),1,3.84,04/07/19 12:17,"575 7th St, Austin, TX 73301" +196320,ThinkPad Laptop,1,999.99,04/17/19 08:33,"259 9th St, Austin, TX 73301" +196321,Bose SoundSport Headphones,1,99.99,04/20/19 18:28,"888 Cedar St, New York City, NY 10001" +196322,Lightning Charging Cable,1,14.95,04/25/19 20:54,"991 North St, Boston, MA 02215" +196323,34in Ultrawide Monitor,1,379.99,04/06/19 20:22,"149 Jackson St, Boston, MA 02215" +196324,AA Batteries (4-pack),2,3.84,04/14/19 11:32,"430 Wilson St, New York City, NY 10001" +196325,AA Batteries (4-pack),1,3.84,04/13/19 18:56,"577 5th St, San Francisco, CA 94016" +196326,AA Batteries (4-pack),1,3.84,04/25/19 12:41,"850 7th St, New York City, NY 10001" +196327,Apple Airpods Headphones,1,150,04/26/19 20:19,"755 West St, Los Angeles, CA 90001" +196328,ThinkPad Laptop,1,999.99,04/05/19 08:44,"105 Lake St, San Francisco, CA 94016" +196329,Lightning Charging Cable,1,14.95,04/07/19 10:55,"670 Cherry St, Portland, OR 97035" +196330,AAA Batteries (4-pack),1,2.99,04/25/19 21:03,"659 Elm St, Seattle, WA 98101" +196331,AA Batteries (4-pack),1,3.84,04/11/19 09:07,"597 Spruce St, Portland, ME 04101" +196332,Wired Headphones,1,11.99,04/02/19 12:11,"289 Willow St, San Francisco, CA 94016" +196333,Vareebadd Phone,1,400,04/28/19 16:02,"553 Sunset St, Dallas, TX 75001" +196334,USB-C Charging Cable,1,11.95,04/27/19 11:25,"359 Lake St, Los Angeles, CA 90001" +196335,Lightning Charging Cable,1,14.95,04/25/19 12:17,"762 Maple St, Boston, MA 02215" +196336,ThinkPad Laptop,1,999.99,04/14/19 05:39,"624 Lincoln St, Portland, OR 97035" +196337,27in 4K Gaming Monitor,1,389.99,04/21/19 13:20,"996 West St, Atlanta, GA 30301" +196338,Flatscreen TV,1,300,04/10/19 11:03,"589 Chestnut St, Los Angeles, CA 90001" +196339,Wired Headphones,1,11.99,04/10/19 18:32,"443 Chestnut St, Los Angeles, CA 90001" +196340,Lightning Charging Cable,1,14.95,04/28/19 15:23,"496 5th St, New York City, NY 10001" +196341,Bose SoundSport Headphones,1,99.99,04/25/19 11:42,"622 Lincoln St, New York City, NY 10001" +196342,AAA Batteries (4-pack),1,2.99,04/16/19 20:48,"985 Chestnut St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +196343,Lightning Charging Cable,1,14.95,04/19/19 22:36,"577 Spruce St, San Francisco, CA 94016" +196344,Wired Headphones,1,11.99,04/05/19 11:56,"378 7th St, Austin, TX 73301" +196345,Bose SoundSport Headphones,1,99.99,04/25/19 11:53,"554 5th St, San Francisco, CA 94016" +196346,Lightning Charging Cable,1,14.95,04/26/19 19:33,"803 West St, Boston, MA 02215" +196347,Wired Headphones,1,11.99,04/28/19 10:15,"284 Elm St, Portland, OR 97035" +196348,AA Batteries (4-pack),2,3.84,04/24/19 12:04,"393 Jackson St, Portland, OR 97035" +196349,AA Batteries (4-pack),1,3.84,04/12/19 08:20,"974 14th St, San Francisco, CA 94016" +196350,AA Batteries (4-pack),1,3.84,04/22/19 16:11,"632 9th St, Portland, OR 97035" +196351,AA Batteries (4-pack),1,3.84,04/12/19 22:43,"494 Maple St, Los Angeles, CA 90001" +196352,iPhone,1,700,04/30/19 10:01,"816 2nd St, San Francisco, CA 94016" +196353,AA Batteries (4-pack),1,3.84,04/09/19 13:38,"545 Spruce St, San Francisco, CA 94016" +196354,USB-C Charging Cable,1,11.95,04/04/19 07:30,"691 Lakeview St, San Francisco, CA 94016" +196355,AA Batteries (4-pack),3,3.84,04/15/19 16:03,"152 South St, New York City, NY 10001" +196356,USB-C Charging Cable,1,11.95,04/25/19 22:43,"151 South St, Dallas, TX 75001" +196357,Apple Airpods Headphones,1,150,04/12/19 10:50,"326 North St, New York City, NY 10001" +196358,27in FHD Monitor,1,149.99,04/27/19 09:57,"968 Hickory St, New York City, NY 10001" +196359,Google Phone,1,600,04/20/19 09:45,"654 Lake St, San Francisco, CA 94016" +196360,iPhone,1,700,04/16/19 18:39,"919 Center St, Seattle, WA 98101" +196361,AA Batteries (4-pack),1,3.84,04/23/19 08:02,"958 Lakeview St, Seattle, WA 98101" +196362,27in FHD Monitor,1,149.99,04/19/19 15:12,"676 Chestnut St, Los Angeles, CA 90001" +196363,Lightning Charging Cable,1,14.95,04/09/19 11:18,"639 Park St, Dallas, TX 75001" +196364,34in Ultrawide Monitor,1,379.99,04/10/19 18:14,"980 12th St, Boston, MA 02215" +196365,USB-C Charging Cable,1,11.95,04/12/19 17:16,"186 Walnut St, Los Angeles, CA 90001" +196366,USB-C Charging Cable,1,11.95,04/05/19 21:26,"276 Cherry St, Boston, MA 02215" +196367,34in Ultrawide Monitor,1,379.99,04/05/19 10:22,"999 South St, Los Angeles, CA 90001" +196368,Flatscreen TV,1,300,04/27/19 16:37,"843 13th St, Boston, MA 02215" +196369,Bose SoundSport Headphones,1,99.99,04/11/19 08:05,"102 Maple St, Portland, OR 97035" +196370,Google Phone,1,600,04/05/19 19:40,"529 North St, Boston, MA 02215" +196370,USB-C Charging Cable,1,11.95,04/05/19 19:40,"529 North St, Boston, MA 02215" +196371,AAA Batteries (4-pack),1,2.99,04/08/19 18:33,"810 Meadow St, Boston, MA 02215" +196372,27in 4K Gaming Monitor,1,389.99,04/18/19 20:10,"32 West St, Atlanta, GA 30301" +196373,27in FHD Monitor,1,149.99,04/25/19 01:33,"803 Sunset St, Seattle, WA 98101" +196374,USB-C Charging Cable,1,11.95,04/06/19 15:23,"773 10th St, Boston, MA 02215" +196375,Apple Airpods Headphones,1,150,04/10/19 13:20,"710 Dogwood St, Boston, MA 02215" +196376,USB-C Charging Cable,1,11.95,04/15/19 12:14,"905 Lakeview St, San Francisco, CA 94016" +196377,Google Phone,1,600,04/13/19 23:31,"946 Forest St, Boston, MA 02215" +196378,AAA Batteries (4-pack),1,2.99,04/01/19 12:41,"978 Main St, Boston, MA 02215" +196379,34in Ultrawide Monitor,1,379.99,04/24/19 10:13,"473 Washington St, Austin, TX 73301" +196380,AAA Batteries (4-pack),2,2.99,04/08/19 16:55,"13 Lake St, Dallas, TX 75001" +196381,Apple Airpods Headphones,1,150,04/07/19 11:32,"90 Cherry St, Portland, OR 97035" +196382,Google Phone,1,600,04/28/19 14:28,"536 Hill St, New York City, NY 10001" +196383,ThinkPad Laptop,1,999.99,04/09/19 22:57,"937 Center St, San Francisco, CA 94016" +196384,AA Batteries (4-pack),1,3.84,04/03/19 19:34,"607 12th St, New York City, NY 10001" +196385,Lightning Charging Cable,1,14.95,04/27/19 13:29,"385 Lincoln St, New York City, NY 10001" +196386,Apple Airpods Headphones,1,150,04/26/19 11:43,"700 River St, Atlanta, GA 30301" +196387,USB-C Charging Cable,1,11.95,04/08/19 08:43,"485 Hickory St, Atlanta, GA 30301" +196388,Apple Airpods Headphones,1,150,04/02/19 15:20,"979 Ridge St, San Francisco, CA 94016" +196389,AAA Batteries (4-pack),1,2.99,04/20/19 20:56,"192 Adams St, San Francisco, CA 94016" +196390,Apple Airpods Headphones,1,150,04/27/19 00:00,"669 River St, Los Angeles, CA 90001" +196391,Flatscreen TV,1,300,04/13/19 11:21,"906 Walnut St, Portland, OR 97035" +196392,AAA Batteries (4-pack),1,2.99,04/01/19 06:17,"341 River St, Boston, MA 02215" +196393,Wired Headphones,1,11.99,04/27/19 07:23,"692 Park St, San Francisco, CA 94016" +196394,27in FHD Monitor,1,149.99,04/23/19 23:01,"318 12th St, San Francisco, CA 94016" +196395,27in 4K Gaming Monitor,1,389.99,04/30/19 21:34,"40 12th St, San Francisco, CA 94016" +196396,AA Batteries (4-pack),1,3.84,04/15/19 20:11,"256 5th St, San Francisco, CA 94016" +196397,Google Phone,1,600,04/12/19 22:02,"681 Jefferson St, Boston, MA 02215" +196398,AA Batteries (4-pack),1,3.84,04/10/19 12:48,"725 Sunset St, Boston, MA 02215" +196399,AAA Batteries (4-pack),1,2.99,04/21/19 11:50,"311 Park St, Austin, TX 73301" +196400,AA Batteries (4-pack),1,3.84,04/01/19 22:32,"895 Walnut St, New York City, NY 10001" +196401,iPhone,1,700,04/02/19 17:10,"38 South St, San Francisco, CA 94016" +196402,Lightning Charging Cable,1,14.95,04/06/19 07:48,"151 Main St, Los Angeles, CA 90001" +196403,Lightning Charging Cable,1,14.95,04/04/19 11:41,"445 14th St, San Francisco, CA 94016" +196403,USB-C Charging Cable,1,11.95,04/04/19 11:41,"445 14th St, San Francisco, CA 94016" +196404,Lightning Charging Cable,1,14.95,04/19/19 07:39,"292 Pine St, San Francisco, CA 94016" +196405,USB-C Charging Cable,3,11.95,04/10/19 01:53,"858 6th St, Los Angeles, CA 90001" +196406,USB-C Charging Cable,1,11.95,04/10/19 10:28,"946 South St, Boston, MA 02215" +196407,27in 4K Gaming Monitor,1,389.99,04/11/19 18:41,"852 14th St, Los Angeles, CA 90001" +196408,Apple Airpods Headphones,1,150,04/02/19 20:20,"287 8th St, Austin, TX 73301" +196409,Apple Airpods Headphones,1,150,04/15/19 01:51,"366 Meadow St, Boston, MA 02215" +196410,Lightning Charging Cable,1,14.95,04/05/19 23:00,"562 Washington St, New York City, NY 10001" +196411,ThinkPad Laptop,1,999.99,04/17/19 10:53,"77 Jackson St, Los Angeles, CA 90001" +196412,20in Monitor,1,109.99,04/04/19 13:06,"52 Dogwood St, Los Angeles, CA 90001" +196413,AAA Batteries (4-pack),1,2.99,04/21/19 18:20,"290 1st St, San Francisco, CA 94016" +196414,Apple Airpods Headphones,1,150,04/09/19 17:47,"78 9th St, New York City, NY 10001" +196415,Wired Headphones,1,11.99,04/26/19 19:42,"289 14th St, San Francisco, CA 94016" +196416,Lightning Charging Cable,1,14.95,04/06/19 19:28,"48 Willow St, Los Angeles, CA 90001" +196417,27in FHD Monitor,1,149.99,04/05/19 07:28,"249 Dogwood St, Atlanta, GA 30301" +196418,AAA Batteries (4-pack),2,2.99,04/26/19 22:26,"891 South St, Atlanta, GA 30301" +196419,Wired Headphones,1,11.99,04/05/19 10:55,"461 Washington St, San Francisco, CA 94016" +196420,AA Batteries (4-pack),1,3.84,04/13/19 20:57,"76 10th St, San Francisco, CA 94016" +196421,Lightning Charging Cable,1,14.95,04/25/19 00:03,"660 12th St, San Francisco, CA 94016" +196422,USB-C Charging Cable,1,11.95,04/04/19 14:50,"363 Jefferson St, Atlanta, GA 30301" +196423,Lightning Charging Cable,1,14.95,04/30/19 15:46,"366 7th St, Boston, MA 02215" +196424,Wired Headphones,1,11.99,04/25/19 08:02,"180 Hickory St, Atlanta, GA 30301" +196425,27in FHD Monitor,1,149.99,04/23/19 09:52,"742 2nd St, San Francisco, CA 94016" +196426,Lightning Charging Cable,1,14.95,04/07/19 21:06,"968 Johnson St, San Francisco, CA 94016" +196427,Apple Airpods Headphones,1,150,04/28/19 19:38,"480 6th St, Los Angeles, CA 90001" +196428,Apple Airpods Headphones,1,150,04/12/19 17:38,"672 Jefferson St, Dallas, TX 75001" +196429,Lightning Charging Cable,1,14.95,04/04/19 21:23,"502 Chestnut St, New York City, NY 10001" +196430,AAA Batteries (4-pack),1,2.99,04/12/19 23:58,"120 Meadow St, Seattle, WA 98101" +196431,34in Ultrawide Monitor,1,379.99,04/16/19 09:12,"441 12th St, Los Angeles, CA 90001" +196432,Bose SoundSport Headphones,1,99.99,04/22/19 12:58,"793 South St, Portland, OR 97035" +196433,Lightning Charging Cable,1,14.95,04/06/19 18:30,"336 2nd St, San Francisco, CA 94016" +196434,27in 4K Gaming Monitor,1,389.99,04/10/19 13:57,"43 11th St, Los Angeles, CA 90001" +196435,ThinkPad Laptop,1,999.99,04/04/19 19:21,"841 Cedar St, New York City, NY 10001" +196436,AA Batteries (4-pack),3,3.84,04/23/19 19:46,"271 Lake St, New York City, NY 10001" +196437,Flatscreen TV,1,300,04/19/19 15:40,"746 Madison St, New York City, NY 10001" +196438,AA Batteries (4-pack),1,3.84,04/06/19 22:08,"30 Adams St, Atlanta, GA 30301" +196439,AAA Batteries (4-pack),1,2.99,04/29/19 19:32,"29 Elm St, San Francisco, CA 94016" +196440,27in FHD Monitor,1,149.99,04/20/19 18:30,"341 1st St, San Francisco, CA 94016" +196441,AAA Batteries (4-pack),1,2.99,04/06/19 01:23,"663 6th St, New York City, NY 10001" +196442,USB-C Charging Cable,1,11.95,04/06/19 21:42,"790 Ridge St, San Francisco, CA 94016" +196443,Lightning Charging Cable,1,14.95,04/27/19 10:41,"695 Center St, Los Angeles, CA 90001" +196444,AA Batteries (4-pack),1,3.84,04/10/19 22:31,"550 Hill St, Austin, TX 73301" +196445,20in Monitor,1,109.99,04/26/19 17:36,"722 Jackson St, Los Angeles, CA 90001" +196446,USB-C Charging Cable,1,11.95,04/08/19 14:51,"299 North St, New York City, NY 10001" +196447,27in FHD Monitor,1,149.99,04/28/19 15:29,"150 5th St, San Francisco, CA 94016" +196448,Lightning Charging Cable,1,14.95,04/15/19 13:20,"329 Main St, New York City, NY 10001" +196449,20in Monitor,1,109.99,04/29/19 08:38,"438 12th St, San Francisco, CA 94016" +196450,USB-C Charging Cable,1,11.95,04/07/19 12:02,"230 Lake St, San Francisco, CA 94016" +196451,AA Batteries (4-pack),1,3.84,04/25/19 13:52,"313 Madison St, Los Angeles, CA 90001" +196452,AAA Batteries (4-pack),1,2.99,04/15/19 06:14,"885 Ridge St, San Francisco, CA 94016" +196453,AAA Batteries (4-pack),1,2.99,04/17/19 15:25,"949 Hill St, Dallas, TX 75001" +196454,AA Batteries (4-pack),1,3.84,04/08/19 23:50,"924 Elm St, Seattle, WA 98101" +196455,Lightning Charging Cable,1,14.95,04/13/19 11:47,"790 12th St, Los Angeles, CA 90001" +196456,Lightning Charging Cable,1,14.95,04/08/19 22:43,"428 Spruce St, Boston, MA 02215" +196457,20in Monitor,1,109.99,04/16/19 23:20,"129 Highland St, Los Angeles, CA 90001" +196458,USB-C Charging Cable,2,11.95,04/10/19 16:58,"6 Walnut St, Austin, TX 73301" +196459,27in FHD Monitor,1,149.99,04/03/19 13:00,"872 Ridge St, San Francisco, CA 94016" +196460,34in Ultrawide Monitor,1,379.99,04/29/19 13:02,"791 8th St, Dallas, TX 75001" +196461,20in Monitor,1,109.99,04/14/19 12:01,"775 Center St, San Francisco, CA 94016" +196462,Bose SoundSport Headphones,1,99.99,04/17/19 15:23,"598 West St, Boston, MA 02215" +196462,iPhone,1,700,04/17/19 15:23,"598 West St, Boston, MA 02215" +196463,Wired Headphones,1,11.99,04/03/19 18:43,"187 Willow St, Los Angeles, CA 90001" +196464,Apple Airpods Headphones,1,150,04/28/19 11:42,"387 13th St, Dallas, TX 75001" +196465,Flatscreen TV,1,300,04/04/19 09:26,"274 Chestnut St, New York City, NY 10001" +196466,AA Batteries (4-pack),1,3.84,04/29/19 16:28,"657 Lake St, Austin, TX 73301" +196467,Wired Headphones,1,11.99,04/26/19 14:02,"263 Highland St, San Francisco, CA 94016" +196468,Bose SoundSport Headphones,1,99.99,04/08/19 18:09,"5 Church St, Portland, OR 97035" +196469,AAA Batteries (4-pack),2,2.99,04/24/19 13:21,"545 7th St, San Francisco, CA 94016" +196470,AAA Batteries (4-pack),1,2.99,04/09/19 12:10,"139 Walnut St, Austin, TX 73301" +196471,Wired Headphones,1,11.99,04/08/19 20:25,"306 Hill St, Boston, MA 02215" +196472,AA Batteries (4-pack),2,3.84,04/03/19 11:31,"320 Maple St, Los Angeles, CA 90001" +196473,Flatscreen TV,1,300,04/22/19 10:45,"461 Adams St, Los Angeles, CA 90001" +196474,AAA Batteries (4-pack),1,2.99,04/22/19 21:23,"195 Elm St, Atlanta, GA 30301" +196475,Lightning Charging Cable,1,14.95,04/13/19 08:53,"810 12th St, Dallas, TX 75001" +196476,27in FHD Monitor,1,149.99,04/29/19 19:34,"616 10th St, Dallas, TX 75001" +196477,Lightning Charging Cable,1,14.95,04/02/19 18:01,"50 8th St, San Francisco, CA 94016" +196478,Google Phone,1,600,04/18/19 12:37,"711 Willow St, New York City, NY 10001" +196479,AA Batteries (4-pack),2,3.84,04/27/19 03:59,"381 Church St, Atlanta, GA 30301" +196480,Apple Airpods Headphones,1,150,04/27/19 10:11,"534 Forest St, Boston, MA 02215" +196481,Macbook Pro Laptop,1,1700,04/09/19 13:26,"77 Sunset St, New York City, NY 10001" +196482,27in FHD Monitor,1,149.99,04/02/19 21:13,"229 8th St, Boston, MA 02215" +196483,USB-C Charging Cable,2,11.95,04/18/19 20:33,"56 Adams St, Seattle, WA 98101" +196484,Lightning Charging Cable,1,14.95,04/10/19 00:19,"645 Lakeview St, Atlanta, GA 30301" +196485,34in Ultrawide Monitor,1,379.99,04/15/19 13:44,"694 South St, Atlanta, GA 30301" +196486,iPhone,1,700,04/26/19 08:36,"34 Jackson St, Los Angeles, CA 90001" +196487,27in FHD Monitor,1,149.99,04/27/19 23:45,"735 Main St, Seattle, WA 98101" +196488,AAA Batteries (4-pack),1,2.99,04/18/19 14:35,"326 Pine St, Los Angeles, CA 90001" +196489,AAA Batteries (4-pack),4,2.99,04/27/19 16:35,"36 Meadow St, Seattle, WA 98101" +196489,USB-C Charging Cable,1,11.95,04/27/19 16:35,"36 Meadow St, Seattle, WA 98101" +196490,AAA Batteries (4-pack),4,2.99,04/25/19 19:48,"963 8th St, Seattle, WA 98101" +196491,iPhone,1,700,04/10/19 12:32,"42 Jefferson St, Los Angeles, CA 90001" +196492,Wired Headphones,1,11.99,04/27/19 16:43,"591 Pine St, San Francisco, CA 94016" +196493,AAA Batteries (4-pack),1,2.99,04/26/19 11:09,"855 Washington St, Austin, TX 73301" +196494,Lightning Charging Cable,1,14.95,04/13/19 16:59,"910 Park St, San Francisco, CA 94016" +196495,Bose SoundSport Headphones,1,99.99,04/20/19 00:25,"452 Church St, San Francisco, CA 94016" +196496,Bose SoundSport Headphones,1,99.99,04/04/19 15:44,"811 9th St, Los Angeles, CA 90001" +196497,Macbook Pro Laptop,1,1700,04/08/19 04:44,"524 Spruce St, Los Angeles, CA 90001" +196498,Lightning Charging Cable,1,14.95,04/01/19 16:59,"624 Pine St, Los Angeles, CA 90001" +196499,Apple Airpods Headphones,1,150,04/09/19 17:29,"764 7th St, New York City, NY 10001" +196500,Apple Airpods Headphones,1,150,04/08/19 11:18,"843 Hill St, San Francisco, CA 94016" +196501,AAA Batteries (4-pack),1,2.99,04/16/19 18:16,"593 8th St, Dallas, TX 75001" +196502,AAA Batteries (4-pack),1,2.99,04/25/19 07:45,"222 West St, San Francisco, CA 94016" +196503,Apple Airpods Headphones,1,150,04/02/19 21:37,"189 West St, Los Angeles, CA 90001" +196504,AA Batteries (4-pack),1,3.84,04/17/19 09:24,"351 14th St, San Francisco, CA 94016" +196505,AAA Batteries (4-pack),2,2.99,04/16/19 21:39,"211 Lincoln St, Portland, OR 97035" +196506,Lightning Charging Cable,1,14.95,04/06/19 20:06,"475 12th St, New York City, NY 10001" +196507,Google Phone,1,600,04/23/19 06:11,"627 Adams St, Dallas, TX 75001" +196508,AAA Batteries (4-pack),1,2.99,04/05/19 20:50,"147 Johnson St, Boston, MA 02215" +196509,Lightning Charging Cable,1,14.95,04/22/19 01:25,"641 12th St, Los Angeles, CA 90001" +196510,20in Monitor,1,109.99,04/27/19 19:03,"492 Cedar St, New York City, NY 10001" +196511,USB-C Charging Cable,1,11.95,04/04/19 01:22,"150 Cedar St, New York City, NY 10001" +196512,Google Phone,1,600,04/25/19 01:10,"678 Main St, Los Angeles, CA 90001" +196513,AA Batteries (4-pack),1,3.84,04/15/19 11:23,"296 Jefferson St, New York City, NY 10001" +196514,20in Monitor,1,109.99,04/07/19 16:42,"571 13th St, Los Angeles, CA 90001" +196515,USB-C Charging Cable,1,11.95,04/29/19 13:07,"361 4th St, San Francisco, CA 94016" +196516,Flatscreen TV,1,300,04/01/19 15:16,"180 Cherry St, San Francisco, CA 94016" +196517,Lightning Charging Cable,1,14.95,04/26/19 13:49,"770 Elm St, Portland, OR 97035" +196518,Wired Headphones,3,11.99,04/28/19 13:07,"567 West St, Dallas, TX 75001" +196519,Apple Airpods Headphones,1,150,04/08/19 21:19,"233 1st St, Los Angeles, CA 90001" +196520,27in FHD Monitor,1,149.99,04/19/19 20:53,"962 1st St, New York City, NY 10001" +196521,USB-C Charging Cable,1,11.95,04/04/19 13:34,"96 Madison St, New York City, NY 10001" +196522,ThinkPad Laptop,1,999.99,04/28/19 22:46,"148 10th St, San Francisco, CA 94016" +196523,Vareebadd Phone,1,400,04/20/19 19:05,"83 Forest St, New York City, NY 10001" +196524,Bose SoundSport Headphones,1,99.99,04/25/19 10:40,"77 Chestnut St, San Francisco, CA 94016" +196525,AA Batteries (4-pack),1,3.84,04/15/19 20:30,"894 Meadow St, San Francisco, CA 94016" +196526,Bose SoundSport Headphones,1,99.99,04/19/19 13:50,"106 River St, Boston, MA 02215" +196527,Bose SoundSport Headphones,1,99.99,04/28/19 11:52,"152 2nd St, Los Angeles, CA 90001" +196528,AAA Batteries (4-pack),3,2.99,04/16/19 14:11,"356 Walnut St, San Francisco, CA 94016" +196529,AAA Batteries (4-pack),1,2.99,04/30/19 09:27,"836 Dogwood St, Portland, OR 97035" +196530,Lightning Charging Cable,1,14.95,04/12/19 21:14,"42 Cedar St, New York City, NY 10001" +196531,USB-C Charging Cable,1,11.95,04/04/19 13:01,"195 5th St, San Francisco, CA 94016" +196532,27in FHD Monitor,1,149.99,04/21/19 12:27,"502 Wilson St, Seattle, WA 98101" +196533,34in Ultrawide Monitor,1,379.99,04/25/19 13:23,"838 4th St, Boston, MA 02215" +196534,Apple Airpods Headphones,1,150,04/05/19 14:50,"558 Forest St, Los Angeles, CA 90001" +196535,USB-C Charging Cable,1,11.95,04/26/19 12:56,"54 2nd St, Portland, OR 97035" +196536,USB-C Charging Cable,1,11.95,04/10/19 16:36,"272 Lincoln St, Dallas, TX 75001" +196537,ThinkPad Laptop,1,999.99,04/20/19 10:24,"962 1st St, Atlanta, GA 30301" +196538,Lightning Charging Cable,1,14.95,04/17/19 13:58,"786 Elm St, Dallas, TX 75001" +196539,AA Batteries (4-pack),1,3.84,04/02/19 19:13,"850 Main St, Portland, ME 04101" +196540,Flatscreen TV,1,300,04/20/19 10:36,"623 5th St, San Francisco, CA 94016" +196541,AAA Batteries (4-pack),1,2.99,04/08/19 17:35,"586 Main St, Boston, MA 02215" +196542,AAA Batteries (4-pack),1,2.99,04/30/19 07:38,"855 7th St, Atlanta, GA 30301" +196543,Bose SoundSport Headphones,1,99.99,04/18/19 20:30,"726 2nd St, Atlanta, GA 30301" +196544,Wired Headphones,1,11.99,04/06/19 17:41,"62 West St, Seattle, WA 98101" +196545,USB-C Charging Cable,1,11.95,04/24/19 23:10,"688 West St, New York City, NY 10001" +196546,27in 4K Gaming Monitor,1,389.99,04/30/19 21:04,"324 Ridge St, Boston, MA 02215" +196547,AA Batteries (4-pack),1,3.84,04/28/19 16:18,"111 Meadow St, Dallas, TX 75001" +196548,Wired Headphones,1,11.99,04/20/19 20:06,"604 Cedar St, Austin, TX 73301" +196549,Wired Headphones,1,11.99,04/19/19 11:27,"242 10th St, San Francisco, CA 94016" +196550,AAA Batteries (4-pack),2,2.99,04/29/19 22:45,"945 Highland St, Austin, TX 73301" +196551,27in FHD Monitor,1,149.99,04/08/19 21:45,"685 2nd St, Austin, TX 73301" +196552,Wired Headphones,1,11.99,04/07/19 17:44,"872 Jackson St, San Francisco, CA 94016" +196553,34in Ultrawide Monitor,1,379.99,04/30/19 12:32,"493 Park St, Dallas, TX 75001" +196554,Google Phone,1,600,04/30/19 17:33,"423 9th St, San Francisco, CA 94016" +196555,AAA Batteries (4-pack),4,2.99,04/08/19 11:54,"864 Lake St, Dallas, TX 75001" +196555,Lightning Charging Cable,1,14.95,04/08/19 11:54,"864 Lake St, Dallas, TX 75001" +196556,AA Batteries (4-pack),1,3.84,04/05/19 09:01,"219 Chestnut St, Los Angeles, CA 90001" +196557,AA Batteries (4-pack),2,3.84,04/13/19 22:03,"244 9th St, San Francisco, CA 94016" +196558,34in Ultrawide Monitor,1,379.99,04/05/19 11:18,"871 Dogwood St, Atlanta, GA 30301" +196559,AA Batteries (4-pack),1,3.84,04/20/19 11:42,"155 4th St, New York City, NY 10001" +196560,AAA Batteries (4-pack),1,2.99,04/29/19 16:04,"479 Jackson St, New York City, NY 10001" +196561,ThinkPad Laptop,1,999.99,04/25/19 17:07,"686 Elm St, New York City, NY 10001" +196562,Bose SoundSport Headphones,1,99.99,04/09/19 10:43,"975 13th St, San Francisco, CA 94016" +196563,Apple Airpods Headphones,1,150,04/21/19 22:37,"436 1st St, Portland, OR 97035" +196564,Bose SoundSport Headphones,1,99.99,04/16/19 12:54,"797 Church St, San Francisco, CA 94016" +196565,USB-C Charging Cable,1,11.95,04/06/19 21:56,"965 North St, Dallas, TX 75001" +196566,Macbook Pro Laptop,1,1700,04/13/19 18:52,"940 Jackson St, New York City, NY 10001" +196567,Apple Airpods Headphones,1,150,04/23/19 16:09,"39 North St, Seattle, WA 98101" +196568,Apple Airpods Headphones,1,150,04/13/19 14:30,"919 Jefferson St, San Francisco, CA 94016" +196569,Lightning Charging Cable,1,14.95,04/03/19 18:30,"963 5th St, Dallas, TX 75001" +196570,USB-C Charging Cable,1,11.95,04/10/19 15:30,"682 Jefferson St, Boston, MA 02215" +196571,Wired Headphones,1,11.99,04/11/19 12:08,"352 Pine St, Atlanta, GA 30301" +196572,Wired Headphones,2,11.99,04/02/19 22:02,"467 Spruce St, Portland, OR 97035" +196573,Bose SoundSport Headphones,1,99.99,04/16/19 09:21,"557 12th St, San Francisco, CA 94016" +196574,Wired Headphones,1,11.99,04/09/19 21:31,"133 Maple St, Portland, OR 97035" +196575,Lightning Charging Cable,2,14.95,04/12/19 13:50,"326 Pine St, Boston, MA 02215" +196576,AAA Batteries (4-pack),1,2.99,04/02/19 17:35,"7 Lakeview St, Atlanta, GA 30301" +196577,AAA Batteries (4-pack),2,2.99,04/28/19 20:41,"305 2nd St, Dallas, TX 75001" +196578,AAA Batteries (4-pack),2,2.99,04/07/19 15:03,"787 Wilson St, Dallas, TX 75001" +196579,Google Phone,1,600,04/19/19 15:51,"909 Walnut St, New York City, NY 10001" +196580,AAA Batteries (4-pack),3,2.99,04/15/19 16:54,"167 Wilson St, New York City, NY 10001" +196581,Lightning Charging Cable,1,14.95,04/21/19 21:16,"123 Meadow St, San Francisco, CA 94016" +196582,AAA Batteries (4-pack),1,2.99,04/04/19 11:16,"653 Lake St, Los Angeles, CA 90001" +196583,USB-C Charging Cable,1,11.95,04/12/19 11:05,"899 Meadow St, Los Angeles, CA 90001" +196584,27in FHD Monitor,1,149.99,04/11/19 20:45,"560 Washington St, Los Angeles, CA 90001" +196585,AA Batteries (4-pack),4,3.84,04/04/19 20:33,"950 Ridge St, Seattle, WA 98101" +196586,Apple Airpods Headphones,1,150,04/29/19 07:24,"7 Forest St, San Francisco, CA 94016" +196587,iPhone,1,700,04/06/19 12:47,"862 5th St, Portland, OR 97035" +196587,Wired Headphones,1,11.99,04/06/19 12:47,"862 5th St, Portland, OR 97035" +196588,AA Batteries (4-pack),2,3.84,04/26/19 21:15,"382 North St, New York City, NY 10001" +196589,AAA Batteries (4-pack),2,2.99,04/03/19 16:43,"502 Sunset St, Seattle, WA 98101" +196590,USB-C Charging Cable,1,11.95,04/01/19 12:07,"192 13th St, San Francisco, CA 94016" +196591,Wired Headphones,1,11.99,04/12/19 17:40,"498 13th St, Seattle, WA 98101" +196592,Lightning Charging Cable,1,14.95,04/19/19 19:45,"32 West St, Boston, MA 02215" +196593,USB-C Charging Cable,1,11.95,04/13/19 20:08,"279 12th St, New York City, NY 10001" +196594,AA Batteries (4-pack),1,3.84,04/25/19 10:08,"500 Main St, Portland, OR 97035" +196595,iPhone,1,700,04/10/19 08:29,"523 8th St, Atlanta, GA 30301" +196595,Lightning Charging Cable,2,14.95,04/10/19 08:29,"523 8th St, Atlanta, GA 30301" +196596,USB-C Charging Cable,1,11.95,04/04/19 07:25,"827 Chestnut St, San Francisco, CA 94016" +196597,USB-C Charging Cable,1,11.95,04/06/19 17:36,"364 Walnut St, San Francisco, CA 94016" +196598,AAA Batteries (4-pack),4,2.99,04/28/19 21:22,"505 5th St, Boston, MA 02215" +196599,Bose SoundSport Headphones,1,99.99,04/23/19 16:02,"830 Spruce St, Seattle, WA 98101" +196600,AAA Batteries (4-pack),1,2.99,04/14/19 09:13,"821 2nd St, San Francisco, CA 94016" +196601,Lightning Charging Cable,1,14.95,04/25/19 11:38,"404 Jefferson St, San Francisco, CA 94016" +196602,USB-C Charging Cable,1,11.95,04/20/19 16:12,"128 11th St, Atlanta, GA 30301" +196603,AAA Batteries (4-pack),1,2.99,04/05/19 14:58,"582 9th St, New York City, NY 10001" +196604,USB-C Charging Cable,2,11.95,04/01/19 13:26,"728 Dogwood St, Seattle, WA 98101" +196605,AA Batteries (4-pack),1,3.84,04/25/19 20:29,"251 1st St, Los Angeles, CA 90001" +196606,Lightning Charging Cable,1,14.95,04/14/19 20:43,"133 Lincoln St, Dallas, TX 75001" +196607,USB-C Charging Cable,1,11.95,04/26/19 20:45,"110 Hickory St, San Francisco, CA 94016" +196608,AA Batteries (4-pack),1,3.84,04/07/19 13:22,"276 2nd St, San Francisco, CA 94016" +196609,iPhone,1,700,04/06/19 10:32,"887 North St, Seattle, WA 98101" +196610,Lightning Charging Cable,1,14.95,04/06/19 10:13,"927 Center St, San Francisco, CA 94016" +196611,Lightning Charging Cable,1,14.95,04/05/19 19:55,"355 South St, Portland, OR 97035" +196612,Lightning Charging Cable,1,14.95,04/12/19 17:22,"827 1st St, Boston, MA 02215" +196613,USB-C Charging Cable,1,11.95,04/13/19 08:11,"784 Sunset St, San Francisco, CA 94016" +,,,,, +196614,USB-C Charging Cable,1,11.95,04/28/19 09:57,"679 Pine St, Seattle, WA 98101" +196615,Bose SoundSport Headphones,1,99.99,04/13/19 01:28,"327 Meadow St, Austin, TX 73301" +196616,ThinkPad Laptop,1,999.99,04/29/19 11:01,"966 Main St, Boston, MA 02215" +196617,USB-C Charging Cable,2,11.95,04/21/19 17:23,"320 Pine St, Atlanta, GA 30301" +196618,AA Batteries (4-pack),1,3.84,04/02/19 16:11,"896 Sunset St, Boston, MA 02215" +196619,34in Ultrawide Monitor,1,379.99,04/12/19 07:25,"349 Park St, Los Angeles, CA 90001" +196620,Google Phone,1,600,04/29/19 16:58,"276 Spruce St, Boston, MA 02215" +196621,AA Batteries (4-pack),1,3.84,04/07/19 21:41,"215 Cedar St, Boston, MA 02215" +196622,Macbook Pro Laptop,1,1700,04/04/19 09:46,"749 8th St, San Francisco, CA 94016" +196623,AAA Batteries (4-pack),1,2.99,04/13/19 19:03,"830 Wilson St, San Francisco, CA 94016" +196624,USB-C Charging Cable,1,11.95,04/08/19 16:48,"130 Sunset St, Los Angeles, CA 90001" +196624,USB-C Charging Cable,1,11.95,04/08/19 16:48,"130 Sunset St, Los Angeles, CA 90001" +196625,27in FHD Monitor,1,149.99,04/02/19 10:18,"670 6th St, Los Angeles, CA 90001" +196626,Google Phone,1,600,04/21/19 10:02,"810 13th St, Austin, TX 73301" +196626,USB-C Charging Cable,1,11.95,04/21/19 10:02,"810 13th St, Austin, TX 73301" +196627,Google Phone,1,600,04/06/19 12:35,"616 Spruce St, Los Angeles, CA 90001" +196628,Apple Airpods Headphones,1,150,04/29/19 21:13,"343 11th St, Atlanta, GA 30301" +196629,27in 4K Gaming Monitor,1,389.99,04/27/19 09:51,"104 Highland St, Boston, MA 02215" +196630,USB-C Charging Cable,2,11.95,04/06/19 11:47,"936 Cherry St, Seattle, WA 98101" +196631,Macbook Pro Laptop,1,1700,04/29/19 14:22,"848 Wilson St, Boston, MA 02215" +196632,Apple Airpods Headphones,1,150,04/18/19 13:02,"652 10th St, Portland, OR 97035" +196633,USB-C Charging Cable,1,11.95,04/19/19 17:40,"416 River St, Austin, TX 73301" +196634,AAA Batteries (4-pack),1,2.99,04/25/19 13:35,"178 7th St, New York City, NY 10001" +196635,Lightning Charging Cable,1,14.95,04/11/19 07:25,"712 Hickory St, San Francisco, CA 94016" +196636,20in Monitor,1,109.99,04/07/19 22:54,"420 Lincoln St, Los Angeles, CA 90001" +196637,iPhone,1,700,04/16/19 19:12,"252 Park St, Portland, OR 97035" +196638,Macbook Pro Laptop,1,1700,04/14/19 13:16,"47 Johnson St, San Francisco, CA 94016" +196639,USB-C Charging Cable,1,11.95,04/12/19 23:40,"184 7th St, Atlanta, GA 30301" +196640,Wired Headphones,1,11.99,04/12/19 12:49,"449 North St, Seattle, WA 98101" +196641,AA Batteries (4-pack),2,3.84,04/26/19 12:42,"839 Lakeview St, Seattle, WA 98101" +196642,AAA Batteries (4-pack),3,2.99,04/04/19 18:09,"960 Willow St, Los Angeles, CA 90001" +196643,AA Batteries (4-pack),2,3.84,04/17/19 13:17,"652 12th St, Boston, MA 02215" +196644,ThinkPad Laptop,1,999.99,04/22/19 16:37,"816 West St, San Francisco, CA 94016" +196645,USB-C Charging Cable,1,11.95,04/26/19 17:13,"432 Wilson St, Portland, OR 97035" +196646,Flatscreen TV,1,300,04/09/19 10:46,"295 10th St, Dallas, TX 75001" +196647,27in 4K Gaming Monitor,1,389.99,04/19/19 17:11,"6 Jefferson St, Seattle, WA 98101" +196648,USB-C Charging Cable,1,11.95,04/29/19 18:24,"923 Cherry St, Dallas, TX 75001" +196649,USB-C Charging Cable,1,11.95,04/29/19 15:10,"169 Spruce St, Austin, TX 73301" +196649,Wired Headphones,1,11.99,04/29/19 15:10,"169 Spruce St, Austin, TX 73301" +196650,Bose SoundSport Headphones,1,99.99,04/28/19 08:41,"609 Washington St, Boston, MA 02215" +196651,Wired Headphones,1,11.99,04/04/19 11:19,"1 Chestnut St, Boston, MA 02215" +196652,USB-C Charging Cable,1,11.95,04/24/19 15:44,"679 Ridge St, Boston, MA 02215" +196653,AAA Batteries (4-pack),1,2.99,04/23/19 16:48,"995 Hill St, San Francisco, CA 94016" +196654,LG Washing Machine,1,600.0,04/02/19 21:59,"100 5th St, New York City, NY 10001" +196655,AAA Batteries (4-pack),1,2.99,04/28/19 23:28,"574 9th St, Atlanta, GA 30301" +196656,USB-C Charging Cable,1,11.95,04/21/19 13:02,"457 Hickory St, Atlanta, GA 30301" +196657,27in FHD Monitor,1,149.99,04/03/19 16:02,"545 Church St, New York City, NY 10001" +196658,34in Ultrawide Monitor,1,379.99,04/17/19 16:01,"128 4th St, Dallas, TX 75001" +196659,Lightning Charging Cable,1,14.95,04/05/19 20:24,"361 Main St, New York City, NY 10001" +196660,Lightning Charging Cable,1,14.95,04/24/19 12:36,"204 Lincoln St, Los Angeles, CA 90001" +196661,AAA Batteries (4-pack),2,2.99,04/18/19 13:23,"21 Adams St, San Francisco, CA 94016" +196662,Bose SoundSport Headphones,1,99.99,04/04/19 03:34,"420 Lincoln St, Dallas, TX 75001" +196663,USB-C Charging Cable,1,11.95,04/08/19 11:09,"431 Pine St, Dallas, TX 75001" +196664,USB-C Charging Cable,1,11.95,04/01/19 16:20,"469 13th St, New York City, NY 10001" +196665,Lightning Charging Cable,1,14.95,04/06/19 11:06,"697 Meadow St, San Francisco, CA 94016" +196666,iPhone,1,700,04/12/19 13:56,"743 Lakeview St, Boston, MA 02215" +196667,34in Ultrawide Monitor,1,379.99,04/26/19 22:41,"539 14th St, San Francisco, CA 94016" +196668,20in Monitor,1,109.99,04/20/19 12:15,"524 Walnut St, New York City, NY 10001" +196669,Apple Airpods Headphones,1,150,04/11/19 12:43,"168 Dogwood St, Atlanta, GA 30301" +196670,Google Phone,1,600,04/27/19 00:49,"501 Forest St, Los Angeles, CA 90001" +196671,USB-C Charging Cable,1,11.95,04/19/19 23:18,"36 Highland St, Los Angeles, CA 90001" +196672,Wired Headphones,1,11.99,04/03/19 17:50,"712 Lincoln St, San Francisco, CA 94016" +196672,AAA Batteries (4-pack),2,2.99,04/03/19 17:50,"712 Lincoln St, San Francisco, CA 94016" +196673,Bose SoundSport Headphones,1,99.99,04/15/19 21:54,"954 Main St, Seattle, WA 98101" +196674,AAA Batteries (4-pack),1,2.99,04/13/19 16:49,"648 7th St, Dallas, TX 75001" +196674,AA Batteries (4-pack),2,3.84,04/13/19 16:49,"648 7th St, Dallas, TX 75001" +196675,Lightning Charging Cable,1,14.95,04/19/19 22:33,"497 4th St, New York City, NY 10001" +196676,Wired Headphones,1,11.99,04/05/19 16:14,"602 Cherry St, Los Angeles, CA 90001" +196676,27in 4K Gaming Monitor,1,389.99,04/05/19 16:14,"602 Cherry St, Los Angeles, CA 90001" +196677,Wired Headphones,3,11.99,04/02/19 07:22,"716 Main St, Boston, MA 02215" +196678,USB-C Charging Cable,1,11.95,04/24/19 18:07,"418 Spruce St, Seattle, WA 98101" +196679,AA Batteries (4-pack),1,3.84,04/28/19 16:30,"274 6th St, Los Angeles, CA 90001" +196680,Apple Airpods Headphones,1,150,04/15/19 00:11,"647 Elm St, Los Angeles, CA 90001" +196681,LG Washing Machine,1,600.0,04/10/19 12:19,"27 River St, San Francisco, CA 94016" +196682,Lightning Charging Cable,1,14.95,04/09/19 13:09,"727 Sunset St, Boston, MA 02215" +196683,AAA Batteries (4-pack),1,2.99,04/19/19 20:25,"337 6th St, San Francisco, CA 94016" +196684,27in 4K Gaming Monitor,1,389.99,04/03/19 12:57,"455 10th St, Los Angeles, CA 90001" +196685,AAA Batteries (4-pack),3,2.99,04/28/19 11:01,"103 Sunset St, Boston, MA 02215" +196686,AA Batteries (4-pack),1,3.84,04/03/19 19:55,"285 Sunset St, Dallas, TX 75001" +196687,20in Monitor,1,109.99,04/27/19 11:26,"971 Lakeview St, Los Angeles, CA 90001" +196688,AA Batteries (4-pack),1,3.84,04/22/19 13:19,"176 North St, Atlanta, GA 30301" +196689,AA Batteries (4-pack),1,3.84,04/01/19 11:01,"636 Church St, Los Angeles, CA 90001" +196690,USB-C Charging Cable,1,11.95,04/14/19 11:44,"408 Johnson St, Los Angeles, CA 90001" +196691,34in Ultrawide Monitor,1,379.99,04/13/19 13:04,"543 Meadow St, Portland, ME 04101" +196692,AAA Batteries (4-pack),1,2.99,04/03/19 17:53,"954 Cherry St, Portland, OR 97035" +196693,Apple Airpods Headphones,1,150,04/11/19 10:28,"177 Park St, San Francisco, CA 94016" +196694,iPhone,1,700,04/29/19 21:22,"75 6th St, Portland, OR 97035" +196695,Google Phone,1,600,04/11/19 17:45,"95 10th St, San Francisco, CA 94016" +196696,20in Monitor,1,109.99,04/03/19 12:13,"267 Hickory St, San Francisco, CA 94016" +196697,iPhone,1,700,04/09/19 18:51,"598 6th St, San Francisco, CA 94016" +196698,Apple Airpods Headphones,1,150,04/22/19 14:28,"285 Center St, Boston, MA 02215" +196699,Lightning Charging Cable,2,14.95,04/06/19 14:04,"156 Pine St, Los Angeles, CA 90001" +196700,AA Batteries (4-pack),1,3.84,04/19/19 22:10,"417 North St, Portland, OR 97035" +196701,Google Phone,1,600,04/18/19 11:11,"440 Spruce St, Boston, MA 02215" +196702,AA Batteries (4-pack),4,3.84,04/07/19 15:00,"740 11th St, Los Angeles, CA 90001" +196703,AA Batteries (4-pack),2,3.84,04/09/19 09:11,"807 Spruce St, Boston, MA 02215" +196704,AA Batteries (4-pack),1,3.84,04/12/19 15:49,"734 Center St, San Francisco, CA 94016" +196705,AA Batteries (4-pack),2,3.84,04/15/19 00:07,"662 Lincoln St, San Francisco, CA 94016" +196706,AA Batteries (4-pack),1,3.84,04/01/19 14:14,"322 Highland St, Seattle, WA 98101" +196707,AA Batteries (4-pack),1,3.84,04/05/19 14:43,"469 North St, Los Angeles, CA 90001" +196708,27in FHD Monitor,1,149.99,04/16/19 15:28,"560 12th St, Los Angeles, CA 90001" +196709,AAA Batteries (4-pack),1,2.99,04/13/19 12:00,"858 Park St, New York City, NY 10001" +196710,Apple Airpods Headphones,1,150,04/13/19 20:07,"932 Cedar St, New York City, NY 10001" +196711,27in FHD Monitor,1,149.99,04/15/19 20:27,"928 Dogwood St, Atlanta, GA 30301" +196712,Apple Airpods Headphones,1,150,04/29/19 06:01,"499 Johnson St, New York City, NY 10001" +196713,Wired Headphones,1,11.99,04/26/19 10:54,"96 Center St, Los Angeles, CA 90001" +196714,Lightning Charging Cable,1,14.95,04/21/19 09:08,"111 Washington St, San Francisco, CA 94016" +196715,AA Batteries (4-pack),1,3.84,04/05/19 18:44,"971 10th St, Dallas, TX 75001" +196716,Lightning Charging Cable,1,14.95,04/18/19 22:37,"949 2nd St, San Francisco, CA 94016" +196717,ThinkPad Laptop,1,999.99,04/11/19 11:39,"623 Dogwood St, San Francisco, CA 94016" +196718,Macbook Pro Laptop,1,1700,04/29/19 23:17,"407 10th St, Seattle, WA 98101" +196719,Macbook Pro Laptop,1,1700,04/30/19 10:59,"847 Ridge St, Boston, MA 02215" +196720,USB-C Charging Cable,1,11.95,04/05/19 19:33,"309 8th St, Seattle, WA 98101" +196721,27in FHD Monitor,1,149.99,04/08/19 22:26,"472 West St, Austin, TX 73301" +196722,27in FHD Monitor,1,149.99,04/08/19 13:13,"901 South St, New York City, NY 10001" +196723,Flatscreen TV,1,300,04/21/19 18:18,"360 Madison St, Austin, TX 73301" +196724,Lightning Charging Cable,1,14.95,04/30/19 21:33,"643 Adams St, New York City, NY 10001" +196725,Lightning Charging Cable,1,14.95,04/18/19 14:15,"433 Cherry St, Seattle, WA 98101" +196726,Wired Headphones,1,11.99,04/02/19 15:55,"566 Dogwood St, Boston, MA 02215" +196727,Google Phone,1,600,04/23/19 22:18,"763 Center St, San Francisco, CA 94016" +196728,AA Batteries (4-pack),1,3.84,04/17/19 16:11,"419 Chestnut St, Seattle, WA 98101" +196729,AA Batteries (4-pack),2,3.84,04/18/19 13:25,"605 Highland St, San Francisco, CA 94016" +196730,USB-C Charging Cable,1,11.95,04/17/19 23:32,"235 Ridge St, Seattle, WA 98101" +196731,AA Batteries (4-pack),1,3.84,04/02/19 00:13,"146 Washington St, Seattle, WA 98101" +196732,USB-C Charging Cable,1,11.95,04/20/19 11:45,"449 2nd St, Boston, MA 02215" +196733,27in FHD Monitor,1,149.99,04/20/19 09:11,"745 13th St, Atlanta, GA 30301" +196734,Google Phone,1,600,04/07/19 09:09,"990 10th St, Boston, MA 02215" +196734,USB-C Charging Cable,2,11.95,04/07/19 09:09,"990 10th St, Boston, MA 02215" +196735,Wired Headphones,1,11.99,04/17/19 12:09,"509 Madison St, Dallas, TX 75001" +196736,Lightning Charging Cable,1,14.95,04/15/19 21:57,"977 Wilson St, Dallas, TX 75001" +196737,Bose SoundSport Headphones,1,99.99,04/02/19 22:41,"29 Cherry St, Boston, MA 02215" +196738,AA Batteries (4-pack),2,3.84,04/07/19 20:02,"739 Willow St, San Francisco, CA 94016" +196739,27in FHD Monitor,1,149.99,04/01/19 16:05,"739 13th St, Boston, MA 02215" +196740,iPhone,1,700,04/13/19 08:03,"258 4th St, New York City, NY 10001" +196740,Lightning Charging Cable,1,14.95,04/13/19 08:03,"258 4th St, New York City, NY 10001" +196741,AA Batteries (4-pack),1,3.84,04/02/19 02:01,"507 Chestnut St, Los Angeles, CA 90001" +196742,AAA Batteries (4-pack),2,2.99,04/11/19 11:42,"400 River St, Austin, TX 73301" +196743,iPhone,1,700,04/16/19 18:04,"608 Walnut St, Atlanta, GA 30301" +196744,Lightning Charging Cable,1,14.95,04/03/19 20:59,"604 Elm St, Boston, MA 02215" +196745,Apple Airpods Headphones,1,150,04/06/19 22:23,"871 Spruce St, Dallas, TX 75001" +196746,27in FHD Monitor,1,149.99,04/30/19 23:36,"492 14th St, Dallas, TX 75001" +196747,AAA Batteries (4-pack),1,2.99,04/09/19 19:13,"524 Jackson St, Seattle, WA 98101" +196748,27in FHD Monitor,1,149.99,04/16/19 16:39,"377 Hickory St, Portland, ME 04101" +196748,27in FHD Monitor,1,149.99,04/16/19 16:39,"377 Hickory St, Portland, ME 04101" +196749,AAA Batteries (4-pack),1,2.99,04/22/19 16:26,"498 Pine St, Atlanta, GA 30301" +196750,Wired Headphones,1,11.99,04/11/19 20:53,"710 Wilson St, Boston, MA 02215" +196751,27in FHD Monitor,1,149.99,04/07/19 10:53,"11 Ridge St, Dallas, TX 75001" +196751,Apple Airpods Headphones,1,150,04/07/19 10:53,"11 Ridge St, Dallas, TX 75001" +196752,Bose SoundSport Headphones,1,99.99,04/08/19 21:29,"568 13th St, San Francisco, CA 94016" +196753,Bose SoundSport Headphones,1,99.99,04/14/19 21:24,"417 West St, New York City, NY 10001" +196754,USB-C Charging Cable,1,11.95,04/04/19 16:16,"100 Dogwood St, Seattle, WA 98101" +196755,27in 4K Gaming Monitor,1,389.99,04/14/19 19:03,"511 Forest St, Dallas, TX 75001" +196756,Apple Airpods Headphones,1,150,04/25/19 11:20,"506 8th St, New York City, NY 10001" +196757,Bose SoundSport Headphones,1,99.99,04/24/19 19:01,"899 Madison St, New York City, NY 10001" +196758,Vareebadd Phone,1,400,04/19/19 23:34,"967 14th St, San Francisco, CA 94016" +196759,Wired Headphones,1,11.99,04/19/19 15:40,"87 Cedar St, Atlanta, GA 30301" +196760,AAA Batteries (4-pack),1,2.99,04/14/19 20:40,"754 Washington St, Los Angeles, CA 90001" +196761,AAA Batteries (4-pack),4,2.99,04/19/19 21:20,"872 12th St, Boston, MA 02215" +196762,Flatscreen TV,1,300,04/07/19 16:42,"504 Madison St, New York City, NY 10001" +196763,27in 4K Gaming Monitor,1,389.99,04/06/19 00:37,"231 12th St, Portland, OR 97035" +196764,AAA Batteries (4-pack),1,2.99,04/13/19 21:19,"986 West St, Atlanta, GA 30301" +196765,iPhone,1,700,04/07/19 09:08,"911 12th St, San Francisco, CA 94016" +196766,USB-C Charging Cable,1,11.95,04/24/19 13:03,"750 Johnson St, San Francisco, CA 94016" +196767,27in 4K Gaming Monitor,1,389.99,04/22/19 12:20,"702 Hickory St, Boston, MA 02215" +196768,USB-C Charging Cable,1,11.95,04/25/19 23:12,"685 Highland St, San Francisco, CA 94016" +196769,iPhone,1,700,04/12/19 10:37,"822 8th St, San Francisco, CA 94016" +196769,Wired Headphones,1,11.99,04/12/19 10:37,"822 8th St, San Francisco, CA 94016" +196770,AAA Batteries (4-pack),1,2.99,04/13/19 22:12,"540 13th St, Los Angeles, CA 90001" +196771,Macbook Pro Laptop,1,1700,04/07/19 07:59,"941 Park St, San Francisco, CA 94016" +196772,Bose SoundSport Headphones,1,99.99,04/28/19 19:25,"66 Ridge St, Dallas, TX 75001" +196773,Lightning Charging Cable,1,14.95,04/27/19 11:53,"270 4th St, Atlanta, GA 30301" +196774,AA Batteries (4-pack),1,3.84,04/25/19 06:25,"113 2nd St, Atlanta, GA 30301" +196775,Lightning Charging Cable,1,14.95,04/28/19 21:05,"963 Wilson St, San Francisco, CA 94016" +196776,Apple Airpods Headphones,1,150,04/08/19 21:44,"886 Dogwood St, Dallas, TX 75001" +196777,USB-C Charging Cable,1,11.95,04/24/19 20:39,"570 Sunset St, New York City, NY 10001" +196778,27in FHD Monitor,1,149.99,04/16/19 02:30,"432 Meadow St, Atlanta, GA 30301" +196779,AA Batteries (4-pack),1,3.84,04/05/19 22:08,"990 Jackson St, Seattle, WA 98101" +196780,Flatscreen TV,1,300,04/13/19 00:05,"708 Hill St, New York City, NY 10001" +196781,ThinkPad Laptop,1,999.99,04/06/19 13:07,"171 8th St, San Francisco, CA 94016" +196782,AA Batteries (4-pack),1,3.84,04/04/19 14:48,"555 Maple St, Dallas, TX 75001" +196783,AA Batteries (4-pack),2,3.84,04/15/19 19:26,"178 Lincoln St, Seattle, WA 98101" +196784,Lightning Charging Cable,1,14.95,04/09/19 14:45,"704 Highland St, Seattle, WA 98101" +196785,Lightning Charging Cable,1,14.95,04/15/19 19:24,"375 Willow St, Boston, MA 02215" +196786,Wired Headphones,1,11.99,04/12/19 15:48,"1 5th St, Seattle, WA 98101" +196787,27in FHD Monitor,1,149.99,04/25/19 10:29,"380 Chestnut St, Seattle, WA 98101" +196788,AAA Batteries (4-pack),3,2.99,04/17/19 22:09,"423 Park St, Portland, ME 04101" +196789,iPhone,1,700,04/01/19 16:24,"692 Maple St, Austin, TX 73301" +196790,Google Phone,1,600,04/14/19 21:33,"228 River St, Seattle, WA 98101" +196790,USB-C Charging Cable,1,11.95,04/14/19 21:33,"228 River St, Seattle, WA 98101" +196791,USB-C Charging Cable,1,11.95,04/25/19 20:56,"994 Meadow St, Seattle, WA 98101" +196792,USB-C Charging Cable,1,11.95,04/21/19 00:23,"448 Wilson St, San Francisco, CA 94016" +196793,Wired Headphones,1,11.99,04/24/19 10:21,"712 Adams St, Los Angeles, CA 90001" +196794,Apple Airpods Headphones,1,150,04/19/19 19:44,"322 Lake St, Los Angeles, CA 90001" +196795,Vareebadd Phone,1,400,04/20/19 08:15,"298 Park St, San Francisco, CA 94016" +196795,Wired Headphones,1,11.99,04/20/19 08:15,"298 Park St, San Francisco, CA 94016" +196796,Apple Airpods Headphones,1,150,04/03/19 06:52,"424 5th St, San Francisco, CA 94016" +196797,AA Batteries (4-pack),3,3.84,04/12/19 08:42,"121 Willow St, Los Angeles, CA 90001" +196798,Bose SoundSport Headphones,1,99.99,04/05/19 17:51,"336 River St, Boston, MA 02215" +,,,,, +196799,27in 4K Gaming Monitor,1,389.99,04/12/19 19:20,"131 9th St, Boston, MA 02215" +196800,34in Ultrawide Monitor,1,379.99,04/19/19 20:05,"659 Church St, Austin, TX 73301" +196801,AAA Batteries (4-pack),2,2.99,04/11/19 14:57,"5 Jefferson St, New York City, NY 10001" +196802,Lightning Charging Cable,1,14.95,04/26/19 17:08,"845 Highland St, San Francisco, CA 94016" +196803,AAA Batteries (4-pack),3,2.99,04/06/19 20:00,"241 Jackson St, Boston, MA 02215" +196804,Wired Headphones,1,11.99,04/15/19 17:08,"566 Wilson St, Seattle, WA 98101" +196805,AA Batteries (4-pack),1,3.84,04/02/19 00:14,"786 Sunset St, San Francisco, CA 94016" +196806,ThinkPad Laptop,1,999.99,04/24/19 09:18,"633 North St, San Francisco, CA 94016" +196807,Apple Airpods Headphones,1,150,04/13/19 23:36,"9 Elm St, San Francisco, CA 94016" +196808,AAA Batteries (4-pack),1,2.99,04/07/19 01:42,"602 10th St, San Francisco, CA 94016" +196809,Lightning Charging Cable,1,14.95,04/12/19 11:36,"375 7th St, Los Angeles, CA 90001" +196810,27in 4K Gaming Monitor,1,389.99,04/20/19 18:34,"413 Dogwood St, Austin, TX 73301" +196811,34in Ultrawide Monitor,1,379.99,04/19/19 09:41,"697 5th St, Los Angeles, CA 90001" +196812,USB-C Charging Cable,2,11.95,04/27/19 08:05,"854 9th St, New York City, NY 10001" +196813,Lightning Charging Cable,1,14.95,04/02/19 22:45,"205 7th St, Atlanta, GA 30301" +196814,Google Phone,1,600,04/24/19 08:21,"909 2nd St, Boston, MA 02215" +196815,Wired Headphones,1,11.99,04/06/19 12:56,"912 Jackson St, San Francisco, CA 94016" +196816,Apple Airpods Headphones,1,150,04/28/19 22:09,"656 River St, Dallas, TX 75001" +196817,iPhone,1,700,04/06/19 12:12,"53 Lincoln St, New York City, NY 10001" +196817,Lightning Charging Cable,1,14.95,04/06/19 12:12,"53 Lincoln St, New York City, NY 10001" +196818,USB-C Charging Cable,1,11.95,04/25/19 14:42,"137 Washington St, Los Angeles, CA 90001" +196819,Lightning Charging Cable,1,14.95,04/17/19 09:48,"47 River St, San Francisco, CA 94016" +196820,AA Batteries (4-pack),1,3.84,04/12/19 21:13,"506 Jackson St, San Francisco, CA 94016" +196821,AA Batteries (4-pack),2,3.84,04/24/19 17:16,"576 Hickory St, Los Angeles, CA 90001" +196822,iPhone,1,700,04/30/19 01:26,"479 Maple St, Portland, OR 97035" +196823,Google Phone,1,600,04/30/19 11:39,"284 South St, Seattle, WA 98101" +196824,Bose SoundSport Headphones,1,99.99,04/03/19 14:18,"186 Maple St, Los Angeles, CA 90001" +196825,AA Batteries (4-pack),1,3.84,04/15/19 23:28,"300 13th St, San Francisco, CA 94016" +196826,iPhone,1,700,04/07/19 15:12,"140 Hickory St, New York City, NY 10001" +196827,USB-C Charging Cable,2,11.95,04/24/19 09:59,"131 Ridge St, San Francisco, CA 94016" +196828,Macbook Pro Laptop,1,1700,04/15/19 15:50,"80 Hill St, San Francisco, CA 94016" +196829,34in Ultrawide Monitor,1,379.99,04/23/19 13:58,"57 Hickory St, Seattle, WA 98101" +196830,AAA Batteries (4-pack),1,2.99,04/03/19 12:54,"622 Wilson St, New York City, NY 10001" +196831,Wired Headphones,1,11.99,04/20/19 10:01,"778 8th St, Los Angeles, CA 90001" +196832,AA Batteries (4-pack),2,3.84,04/19/19 14:09,"354 Maple St, Los Angeles, CA 90001" +196833,AAA Batteries (4-pack),5,2.99,04/10/19 17:54,"731 7th St, Seattle, WA 98101" +196834,Wired Headphones,1,11.99,04/27/19 19:48,"748 10th St, San Francisco, CA 94016" +196834,Bose SoundSport Headphones,1,99.99,04/27/19 19:48,"748 10th St, San Francisco, CA 94016" +196835,Apple Airpods Headphones,1,150,04/15/19 12:30,"589 13th St, Dallas, TX 75001" +196836,iPhone,1,700,04/19/19 23:04,"318 10th St, San Francisco, CA 94016" +196837,USB-C Charging Cable,1,11.95,04/13/19 23:25,"218 11th St, San Francisco, CA 94016" +196838,Lightning Charging Cable,1,14.95,04/30/19 17:45,"408 Washington St, Portland, OR 97035" +196839,Flatscreen TV,1,300,04/29/19 10:05,"40 5th St, Portland, OR 97035" +196840,AAA Batteries (4-pack),1,2.99,04/23/19 18:22,"465 7th St, Los Angeles, CA 90001" +196841,Bose SoundSport Headphones,1,99.99,04/10/19 08:52,"579 7th St, San Francisco, CA 94016" +196842,27in FHD Monitor,1,149.99,04/21/19 12:19,"450 Madison St, Atlanta, GA 30301" +196843,Vareebadd Phone,1,400,04/11/19 19:08,"793 Lincoln St, Austin, TX 73301" +196843,USB-C Charging Cable,1,11.95,04/11/19 19:08,"793 Lincoln St, Austin, TX 73301" +196844,27in 4K Gaming Monitor,1,389.99,04/05/19 23:44,"963 Wilson St, Los Angeles, CA 90001" +196845,Wired Headphones,1,11.99,04/03/19 19:14,"324 North St, Los Angeles, CA 90001" +196846,AA Batteries (4-pack),4,3.84,04/05/19 23:25,"551 Park St, Portland, OR 97035" +196847,AAA Batteries (4-pack),1,2.99,04/25/19 09:22,"956 Pine St, Los Angeles, CA 90001" +196848,USB-C Charging Cable,1,11.95,04/25/19 20:28,"561 Highland St, New York City, NY 10001" +196849,iPhone,1,700,04/07/19 21:42,"408 Willow St, San Francisco, CA 94016" +196849,Apple Airpods Headphones,1,150,04/07/19 21:42,"408 Willow St, San Francisco, CA 94016" +196849,Wired Headphones,1,11.99,04/07/19 21:42,"408 Willow St, San Francisco, CA 94016" +196850,USB-C Charging Cable,1,11.95,04/28/19 11:25,"361 Hill St, Dallas, TX 75001" +196851,USB-C Charging Cable,1,11.95,04/17/19 22:43,"222 Jackson St, Boston, MA 02215" +196852,Lightning Charging Cable,2,14.95,04/11/19 15:51,"729 West St, New York City, NY 10001" +196853,Bose SoundSport Headphones,1,99.99,04/17/19 14:41,"425 Madison St, San Francisco, CA 94016" +196854,Apple Airpods Headphones,1,150,04/29/19 17:24,"950 Lake St, Austin, TX 73301" +196855,34in Ultrawide Monitor,1,379.99,04/01/19 19:27,"439 Hickory St, Boston, MA 02215" +196856,USB-C Charging Cable,1,11.95,04/25/19 23:06,"510 10th St, Boston, MA 02215" +196857,Apple Airpods Headphones,1,150,04/24/19 22:07,"26 Wilson St, New York City, NY 10001" +196858,Flatscreen TV,1,300,04/12/19 10:25,"90 Ridge St, Los Angeles, CA 90001" +196859,Apple Airpods Headphones,1,150,04/13/19 21:50,"802 13th St, Boston, MA 02215" +196860,Wired Headphones,1,11.99,04/20/19 17:39,"294 Cedar St, Atlanta, GA 30301" +196861,USB-C Charging Cable,1,11.95,04/30/19 14:23,"995 Maple St, Seattle, WA 98101" +196862,Bose SoundSport Headphones,1,99.99,04/17/19 14:32,"743 Hickory St, New York City, NY 10001" +196863,34in Ultrawide Monitor,1,379.99,04/23/19 11:34,"529 Park St, Dallas, TX 75001" +196864,Lightning Charging Cable,1,14.95,04/28/19 07:05,"884 5th St, New York City, NY 10001" +196865,ThinkPad Laptop,1,999.99,04/08/19 17:15,"172 Johnson St, Austin, TX 73301" +196866,USB-C Charging Cable,1,11.95,04/12/19 17:00,"920 Ridge St, Boston, MA 02215" +196867,Apple Airpods Headphones,1,150,04/28/19 13:25,"642 2nd St, New York City, NY 10001" +196868,27in 4K Gaming Monitor,1,389.99,04/20/19 00:30,"572 12th St, Boston, MA 02215" +196869,Bose SoundSport Headphones,1,99.99,04/18/19 10:26,"375 Jefferson St, New York City, NY 10001" +196870,USB-C Charging Cable,1,11.95,04/06/19 09:51,"596 Elm St, New York City, NY 10001" +196871,Lightning Charging Cable,1,14.95,04/17/19 16:20,"198 5th St, Austin, TX 73301" +196872,Macbook Pro Laptop,1,1700,04/04/19 15:12,"908 Lincoln St, Seattle, WA 98101" +196873,27in FHD Monitor,1,149.99,04/03/19 17:41,"709 Johnson St, Portland, OR 97035" +196874,USB-C Charging Cable,1,11.95,04/07/19 11:43,"823 8th St, Seattle, WA 98101" +196875,AAA Batteries (4-pack),2,2.99,04/16/19 09:15,"731 7th St, Los Angeles, CA 90001" +196876,Apple Airpods Headphones,1,150,04/05/19 19:22,"106 6th St, Portland, OR 97035" +196877,Vareebadd Phone,1,400,04/03/19 17:58,"665 10th St, Los Angeles, CA 90001" +196878,AA Batteries (4-pack),1,3.84,04/19/19 20:38,"779 2nd St, Austin, TX 73301" +196879,Vareebadd Phone,1,400,04/13/19 17:22,"321 12th St, Seattle, WA 98101" +,,,,, +196880,Wired Headphones,1,11.99,04/09/19 19:38,"210 Jefferson St, New York City, NY 10001" +196881,USB-C Charging Cable,1,11.95,04/13/19 20:31,"300 Lincoln St, Boston, MA 02215" +196882,Bose SoundSport Headphones,1,99.99,04/01/19 09:13,"602 Lakeview St, San Francisco, CA 94016" +196883,27in FHD Monitor,1,149.99,04/13/19 18:41,"471 8th St, San Francisco, CA 94016" +196884,Bose SoundSport Headphones,1,99.99,04/28/19 19:34,"87 Church St, San Francisco, CA 94016" +196885,Macbook Pro Laptop,1,1700,04/21/19 17:08,"467 Forest St, Atlanta, GA 30301" +196886,20in Monitor,1,109.99,04/03/19 14:41,"234 4th St, Dallas, TX 75001" +196887,27in 4K Gaming Monitor,1,389.99,04/18/19 11:20,"390 7th St, Portland, OR 97035" +196888,AA Batteries (4-pack),1,3.84,04/18/19 15:08,"170 Dogwood St, Atlanta, GA 30301" +196889,iPhone,1,700,04/11/19 22:54,"24 Park St, San Francisco, CA 94016" +196889,Lightning Charging Cable,1,14.95,04/11/19 22:54,"24 Park St, San Francisco, CA 94016" +196890,Lightning Charging Cable,1,14.95,04/02/19 19:49,"110 Center St, Seattle, WA 98101" +196891,Lightning Charging Cable,1,14.95,04/11/19 18:29,"933 11th St, San Francisco, CA 94016" +196892,Lightning Charging Cable,1,14.95,04/28/19 14:45,"9 8th St, San Francisco, CA 94016" +196893,USB-C Charging Cable,1,11.95,04/30/19 13:38,"113 8th St, San Francisco, CA 94016" +196894,Bose SoundSport Headphones,1,99.99,04/01/19 15:28,"837 11th St, New York City, NY 10001" +196895,Apple Airpods Headphones,1,150,04/07/19 11:14,"431 7th St, Los Angeles, CA 90001" +196896,AAA Batteries (4-pack),1,2.99,04/25/19 06:28,"49 Church St, Boston, MA 02215" +196897,Lightning Charging Cable,1,14.95,04/01/19 12:01,"940 Cherry St, Austin, TX 73301" +196898,USB-C Charging Cable,1,11.95,04/25/19 10:55,"263 Maple St, San Francisco, CA 94016" +196899,27in FHD Monitor,1,149.99,04/12/19 13:50,"101 14th St, Boston, MA 02215" +196900,AAA Batteries (4-pack),1,2.99,04/03/19 22:14,"306 2nd St, New York City, NY 10001" +196901,Lightning Charging Cable,1,14.95,04/28/19 15:00,"447 11th St, Los Angeles, CA 90001" +196902,AA Batteries (4-pack),1,3.84,04/05/19 08:54,"108 Hill St, Boston, MA 02215" +196903,Vareebadd Phone,1,400,04/13/19 09:25,"371 11th St, Boston, MA 02215" +196904,34in Ultrawide Monitor,1,379.99,04/20/19 21:02,"240 Center St, Boston, MA 02215" +196905,Wired Headphones,1,11.99,04/17/19 23:49,"447 Chestnut St, San Francisco, CA 94016" +196906,27in FHD Monitor,1,149.99,04/27/19 19:48,"811 South St, Los Angeles, CA 90001" +196907,AA Batteries (4-pack),1,3.84,04/02/19 07:56,"485 4th St, Los Angeles, CA 90001" +196908,Flatscreen TV,1,300,04/21/19 15:48,"253 4th St, San Francisco, CA 94016" +196909,Bose SoundSport Headphones,1,99.99,04/07/19 12:19,"620 Lincoln St, Boston, MA 02215" +196910,27in 4K Gaming Monitor,1,389.99,04/27/19 23:23,"747 Jefferson St, Atlanta, GA 30301" +196911,Wired Headphones,1,11.99,04/12/19 20:38,"550 6th St, San Francisco, CA 94016" +196912,AA Batteries (4-pack),1,3.84,04/29/19 20:22,"216 Lakeview St, New York City, NY 10001" +196913,iPhone,1,700,04/10/19 19:03,"623 Johnson St, San Francisco, CA 94016" +196913,Lightning Charging Cable,1,14.95,04/10/19 19:03,"623 Johnson St, San Francisco, CA 94016" +196913,Wired Headphones,1,11.99,04/10/19 19:03,"623 Johnson St, San Francisco, CA 94016" +196914,AAA Batteries (4-pack),2,2.99,04/06/19 17:23,"872 Madison St, New York City, NY 10001" +196915,AAA Batteries (4-pack),2,2.99,04/18/19 04:35,"37 Meadow St, Los Angeles, CA 90001" +196916,USB-C Charging Cable,1,11.95,04/19/19 10:53,"455 5th St, New York City, NY 10001" +196917,USB-C Charging Cable,1,11.95,04/23/19 23:44,"499 South St, New York City, NY 10001" +196918,Lightning Charging Cable,2,14.95,04/03/19 10:25,"971 Forest St, Boston, MA 02215" +196919,ThinkPad Laptop,1,999.99,04/16/19 20:04,"837 Jackson St, New York City, NY 10001" +196920,Lightning Charging Cable,1,14.95,04/19/19 12:32,"931 Lakeview St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +196921,Lightning Charging Cable,1,14.95,04/20/19 16:34,"937 13th St, Portland, OR 97035" +196922,Bose SoundSport Headphones,1,99.99,04/08/19 11:06,"388 Church St, San Francisco, CA 94016" +196923,AA Batteries (4-pack),1,3.84,04/15/19 05:36,"113 Hickory St, New York City, NY 10001" +196924,Wired Headphones,1,11.99,04/20/19 17:26,"375 5th St, San Francisco, CA 94016" +196925,AAA Batteries (4-pack),1,2.99,04/03/19 17:32,"311 12th St, Seattle, WA 98101" +196926,Bose SoundSport Headphones,1,99.99,04/23/19 12:07,"318 Madison St, Dallas, TX 75001" +196927,AA Batteries (4-pack),2,3.84,04/25/19 12:50,"399 1st St, San Francisco, CA 94016" +196928,34in Ultrawide Monitor,1,379.99,04/09/19 10:40,"964 Johnson St, Atlanta, GA 30301" +196929,Wired Headphones,1,11.99,04/13/19 13:01,"573 Elm St, Atlanta, GA 30301" +196930,USB-C Charging Cable,1,11.95,04/11/19 20:28,"402 West St, Atlanta, GA 30301" +196931,Bose SoundSport Headphones,1,99.99,04/30/19 12:33,"231 Willow St, Dallas, TX 75001" +196932,AAA Batteries (4-pack),1,2.99,04/11/19 15:58,"552 1st St, San Francisco, CA 94016" +196933,Bose SoundSport Headphones,1,99.99,04/27/19 11:08,"183 Washington St, Los Angeles, CA 90001" +196934,USB-C Charging Cable,1,11.95,04/11/19 00:42,"419 Park St, San Francisco, CA 94016" +196935,27in FHD Monitor,1,149.99,04/10/19 14:49,"894 14th St, San Francisco, CA 94016" +196935,Bose SoundSport Headphones,1,99.99,04/10/19 14:49,"894 14th St, San Francisco, CA 94016" +196936,Flatscreen TV,1,300,04/04/19 14:20,"144 10th St, San Francisco, CA 94016" +196937,ThinkPad Laptop,1,999.99,04/16/19 11:17,"93 Walnut St, Seattle, WA 98101" +196938,LG Dryer,1,600.0,04/14/19 15:47,"137 9th St, Seattle, WA 98101" +196939,Wired Headphones,1,11.99,04/27/19 20:20,"391 Dogwood St, New York City, NY 10001" +196940,Apple Airpods Headphones,1,150,04/25/19 14:20,"162 Jefferson St, Dallas, TX 75001" +196941,iPhone,1,700,04/14/19 18:28,"891 9th St, Los Angeles, CA 90001" +196942,USB-C Charging Cable,1,11.95,04/04/19 11:35,"699 12th St, Boston, MA 02215" +196942,AA Batteries (4-pack),1,3.84,04/04/19 11:35,"699 12th St, Boston, MA 02215" +196943,AA Batteries (4-pack),1,3.84,04/18/19 11:32,"563 1st St, San Francisco, CA 94016" +196944,27in 4K Gaming Monitor,1,389.99,04/07/19 22:27,"382 Pine St, San Francisco, CA 94016" +196945,USB-C Charging Cable,1,11.95,04/30/19 01:22,"103 10th St, Boston, MA 02215" +196946,Macbook Pro Laptop,1,1700,04/27/19 11:07,"374 Jackson St, Los Angeles, CA 90001" +196947,AA Batteries (4-pack),1,3.84,04/08/19 23:45,"830 Center St, Atlanta, GA 30301" +196948,USB-C Charging Cable,1,11.95,04/05/19 22:54,"712 Madison St, Portland, OR 97035" +196949,Google Phone,1,600,04/08/19 14:09,"247 Washington St, New York City, NY 10001" +196950,Google Phone,1,600,04/22/19 20:33,"813 Lake St, Seattle, WA 98101" +196951,27in FHD Monitor,1,149.99,04/30/19 10:35,"396 Dogwood St, Austin, TX 73301" +196952,Wired Headphones,1,11.99,04/04/19 19:33,"42 Willow St, Boston, MA 02215" +196953,34in Ultrawide Monitor,1,379.99,04/03/19 17:05,"917 Church St, Dallas, TX 75001" +196954,Wired Headphones,1,11.99,04/30/19 10:46,"708 Cherry St, New York City, NY 10001" +196955,iPhone,1,700,04/23/19 07:07,"605 4th St, Los Angeles, CA 90001" +196955,Apple Airpods Headphones,1,150,04/23/19 07:07,"605 4th St, Los Angeles, CA 90001" +196956,Lightning Charging Cable,1,14.95,04/29/19 10:57,"369 Cherry St, Los Angeles, CA 90001" +196957,USB-C Charging Cable,1,11.95,04/22/19 19:22,"560 7th St, Dallas, TX 75001" +196958,Wired Headphones,1,11.99,04/03/19 20:55,"484 Jackson St, San Francisco, CA 94016" +196959,USB-C Charging Cable,1,11.95,04/29/19 17:57,"325 Spruce St, Los Angeles, CA 90001" +196960,Bose SoundSport Headphones,1,99.99,04/13/19 05:04,"351 2nd St, Boston, MA 02215" +196961,27in FHD Monitor,1,149.99,04/12/19 20:27,"500 11th St, Boston, MA 02215" +196962,27in FHD Monitor,1,149.99,04/14/19 07:09,"954 West St, Seattle, WA 98101" +196963,AAA Batteries (4-pack),1,2.99,04/11/19 17:00,"347 Ridge St, Dallas, TX 75001" +196964,Wired Headphones,1,11.99,04/12/19 17:31,"92 West St, San Francisco, CA 94016" +196965,34in Ultrawide Monitor,1,379.99,04/28/19 19:29,"411 Meadow St, San Francisco, CA 94016" +196966,Wired Headphones,1,11.99,04/28/19 12:12,"270 Cedar St, Austin, TX 73301" +196967,USB-C Charging Cable,1,11.95,04/07/19 12:45,"35 Johnson St, Atlanta, GA 30301" +196968,27in FHD Monitor,1,149.99,04/08/19 15:00,"465 Maple St, New York City, NY 10001" +196969,AAA Batteries (4-pack),1,2.99,04/26/19 21:29,"450 10th St, Los Angeles, CA 90001" +196970,AA Batteries (4-pack),1,3.84,04/03/19 17:42,"828 Jefferson St, Austin, TX 73301" +196971,iPhone,1,700,04/07/19 18:11,"820 South St, New York City, NY 10001" +196972,AA Batteries (4-pack),1,3.84,04/23/19 13:42,"911 Lakeview St, Los Angeles, CA 90001" +196973,Apple Airpods Headphones,1,150,04/23/19 21:59,"886 Cedar St, San Francisco, CA 94016" +196974,Wired Headphones,2,11.99,04/23/19 09:47,"683 8th St, Atlanta, GA 30301" +196975,Apple Airpods Headphones,1,150,04/02/19 10:26,"319 4th St, Boston, MA 02215" +196976,Google Phone,1,600,04/12/19 12:20,"189 Hill St, Atlanta, GA 30301" +196977,AA Batteries (4-pack),1,3.84,04/12/19 11:42,"707 South St, San Francisco, CA 94016" +196978,Lightning Charging Cable,1,14.95,04/25/19 21:04,"349 West St, Portland, ME 04101" +196979,Lightning Charging Cable,1,14.95,04/21/19 18:24,"205 Main St, Portland, ME 04101" +196980,LG Dryer,1,600.0,04/05/19 09:31,"479 8th St, Boston, MA 02215" +196981,AA Batteries (4-pack),1,3.84,04/15/19 19:08,"507 12th St, New York City, NY 10001" +196982,AAA Batteries (4-pack),1,2.99,04/16/19 18:20,"757 Main St, Seattle, WA 98101" +196983,Apple Airpods Headphones,1,150,04/04/19 19:07,"688 Meadow St, Dallas, TX 75001" +196984,iPhone,1,700,04/20/19 21:41,"562 Lakeview St, Dallas, TX 75001" +196985,27in FHD Monitor,1,149.99,04/07/19 23:07,"166 Highland St, Seattle, WA 98101" +196986,Apple Airpods Headphones,1,150,04/23/19 11:49,"149 Highland St, Los Angeles, CA 90001" +196987,Wired Headphones,2,11.99,04/07/19 19:03,"351 Wilson St, Los Angeles, CA 90001" +196988,Wired Headphones,1,11.99,04/19/19 15:54,"233 Park St, Los Angeles, CA 90001" +196989,iPhone,1,700,04/12/19 13:02,"11 Chestnut St, Los Angeles, CA 90001" +196989,Lightning Charging Cable,1,14.95,04/12/19 13:02,"11 Chestnut St, Los Angeles, CA 90001" +196990,Google Phone,1,600,04/17/19 22:06,"962 Maple St, New York City, NY 10001" +196991,USB-C Charging Cable,1,11.95,04/06/19 14:54,"507 Chestnut St, San Francisco, CA 94016" +196992,Macbook Pro Laptop,1,1700,04/02/19 17:17,"451 Willow St, Dallas, TX 75001" +196993,iPhone,1,700,04/17/19 17:49,"468 River St, Los Angeles, CA 90001" +196993,Lightning Charging Cable,1,14.95,04/17/19 17:49,"468 River St, Los Angeles, CA 90001" +196994,AA Batteries (4-pack),1,3.84,04/14/19 17:25,"115 12th St, San Francisco, CA 94016" +196995,20in Monitor,1,109.99,04/06/19 20:25,"634 Adams St, Los Angeles, CA 90001" +196996,Apple Airpods Headphones,1,150,04/24/19 12:00,"448 12th St, Austin, TX 73301" +196997,Apple Airpods Headphones,1,150,04/28/19 17:24,"207 5th St, San Francisco, CA 94016" +196998,27in FHD Monitor,1,149.99,04/29/19 14:11,"864 Main St, Dallas, TX 75001" +196999,Wired Headphones,1,11.99,04/20/19 12:56,"290 4th St, Boston, MA 02215" +197000,Bose SoundSport Headphones,1,99.99,04/21/19 07:33,"716 Washington St, New York City, NY 10001" +197001,Lightning Charging Cable,1,14.95,04/07/19 20:38,"704 Adams St, San Francisco, CA 94016" +197002,Macbook Pro Laptop,1,1700,04/20/19 09:51,"42 Meadow St, Austin, TX 73301" +197003,AA Batteries (4-pack),1,3.84,04/03/19 15:24,"68 Park St, Los Angeles, CA 90001" +197004,AA Batteries (4-pack),1,3.84,04/02/19 16:42,"920 4th St, Los Angeles, CA 90001" +197005,Lightning Charging Cable,1,14.95,04/09/19 22:30,"690 4th St, Seattle, WA 98101" +197006,Google Phone,1,600,04/14/19 11:58,"136 Jefferson St, San Francisco, CA 94016" +197007,20in Monitor,1,109.99,04/03/19 08:30,"261 13th St, San Francisco, CA 94016" +197008,34in Ultrawide Monitor,1,379.99,04/11/19 17:36,"45 North St, New York City, NY 10001" +197009,34in Ultrawide Monitor,1,379.99,04/18/19 20:59,"384 South St, Los Angeles, CA 90001" +197010,Wired Headphones,1,11.99,04/17/19 19:48,"48 1st St, San Francisco, CA 94016" +197011,Apple Airpods Headphones,1,150,04/06/19 12:31,"483 Lakeview St, Los Angeles, CA 90001" +197012,Lightning Charging Cable,1,14.95,04/17/19 11:57,"192 13th St, San Francisco, CA 94016" +197013,27in 4K Gaming Monitor,1,389.99,04/26/19 12:12,"109 Chestnut St, Seattle, WA 98101" +197014,Bose SoundSport Headphones,1,99.99,04/08/19 19:38,"728 Elm St, Seattle, WA 98101" +197015,Macbook Pro Laptop,1,1700,04/25/19 21:04,"484 Jefferson St, Seattle, WA 98101" +197016,Apple Airpods Headphones,1,150,04/04/19 12:12,"768 Elm St, Portland, OR 97035" +197017,27in 4K Gaming Monitor,1,389.99,04/24/19 17:52,"137 Maple St, San Francisco, CA 94016" +197018,ThinkPad Laptop,1,999.99,04/17/19 18:28,"10 Johnson St, San Francisco, CA 94016" +197019,USB-C Charging Cable,1,11.95,04/18/19 10:43,"172 Johnson St, Austin, TX 73301" +197020,20in Monitor,1,109.99,04/26/19 11:00,"582 Center St, Seattle, WA 98101" +197021,ThinkPad Laptop,1,999.99,04/07/19 13:10,"399 Wilson St, San Francisco, CA 94016" +197022,USB-C Charging Cable,1,11.95,04/21/19 21:24,"371 Highland St, Austin, TX 73301" +197023,20in Monitor,1,109.99,04/22/19 16:24,"586 Main St, Dallas, TX 75001" +197024,Lightning Charging Cable,1,14.95,04/08/19 21:44,"237 13th St, Los Angeles, CA 90001" +197025,27in FHD Monitor,1,149.99,04/01/19 19:29,"707 Pine St, San Francisco, CA 94016" +197026,27in FHD Monitor,1,149.99,04/08/19 14:58,"59 River St, New York City, NY 10001" +197027,AA Batteries (4-pack),2,3.84,04/14/19 13:47,"45 Dogwood St, San Francisco, CA 94016" +197028,Apple Airpods Headphones,1,150,04/12/19 10:15,"273 Cherry St, Seattle, WA 98101" +197029,AA Batteries (4-pack),1,3.84,04/17/19 18:50,"481 Forest St, San Francisco, CA 94016" +197030,Lightning Charging Cable,1,14.95,04/01/19 17:09,"558 Willow St, Boston, MA 02215" +197031,AAA Batteries (4-pack),1,2.99,04/12/19 10:39,"409 7th St, Seattle, WA 98101" +197032,Flatscreen TV,1,300,04/01/19 10:02,"502 4th St, Los Angeles, CA 90001" +197033,Apple Airpods Headphones,1,150,04/18/19 10:47,"605 6th St, Boston, MA 02215" +197034,USB-C Charging Cable,1,11.95,04/01/19 20:18,"548 8th St, Seattle, WA 98101" +197035,USB-C Charging Cable,2,11.95,04/09/19 18:29,"756 Willow St, San Francisco, CA 94016" +197036,Macbook Pro Laptop,1,1700,04/19/19 16:47,"139 10th St, Austin, TX 73301" +197036,Apple Airpods Headphones,1,150,04/19/19 16:47,"139 10th St, Austin, TX 73301" +197037,iPhone,1,700,04/13/19 22:25,"862 Washington St, Seattle, WA 98101" +197037,Lightning Charging Cable,1,14.95,04/13/19 22:25,"862 Washington St, Seattle, WA 98101" +197038,Wired Headphones,1,11.99,04/09/19 07:43,"791 Jefferson St, Seattle, WA 98101" +197039,Macbook Pro Laptop,1,1700,04/19/19 22:33,"178 Chestnut St, Dallas, TX 75001" +197040,AAA Batteries (4-pack),1,2.99,04/17/19 00:52,"324 Jackson St, Seattle, WA 98101" +197041,Google Phone,1,600,04/09/19 20:01,"290 Hickory St, Los Angeles, CA 90001" +197042,Lightning Charging Cable,2,14.95,04/01/19 12:43,"711 Chestnut St, New York City, NY 10001" +197043,Wired Headphones,1,11.99,04/14/19 13:40,"248 Main St, San Francisco, CA 94016" +197044,USB-C Charging Cable,1,11.95,04/24/19 10:51,"985 Pine St, Atlanta, GA 30301" +197045,Bose SoundSport Headphones,1,99.99,04/21/19 15:02,"682 Adams St, Seattle, WA 98101" +197046,27in FHD Monitor,1,149.99,04/24/19 15:48,"809 Hill St, Dallas, TX 75001" +197047,Flatscreen TV,1,300,04/22/19 15:09,"150 Elm St, San Francisco, CA 94016" +197048,AA Batteries (4-pack),1,3.84,04/12/19 17:03,"710 Lake St, Seattle, WA 98101" +197049,Macbook Pro Laptop,1,1700,04/23/19 14:27,"494 Spruce St, Dallas, TX 75001" +197050,Apple Airpods Headphones,1,150,04/19/19 11:11,"392 North St, Austin, TX 73301" +197051,Wired Headphones,1,11.99,04/05/19 00:21,"596 Meadow St, Los Angeles, CA 90001" +197052,27in FHD Monitor,1,149.99,04/28/19 18:34,"43 Wilson St, Austin, TX 73301" +197053,Bose SoundSport Headphones,1,99.99,04/19/19 22:34,"473 Park St, Dallas, TX 75001" +197054,Wired Headphones,1,11.99,04/05/19 10:29,"110 Lake St, Los Angeles, CA 90001" +197055,27in FHD Monitor,1,149.99,04/28/19 19:29,"724 Willow St, Dallas, TX 75001" +197056,USB-C Charging Cable,1,11.95,04/07/19 11:35,"781 Highland St, Portland, ME 04101" +197057,AA Batteries (4-pack),1,3.84,04/17/19 08:21,"666 Park St, Atlanta, GA 30301" +197058,ThinkPad Laptop,1,999.99,04/29/19 14:02,"466 9th St, San Francisco, CA 94016" +197059,AA Batteries (4-pack),4,3.84,04/17/19 15:54,"70 Hill St, Los Angeles, CA 90001" +197060,AA Batteries (4-pack),1,3.84,04/18/19 08:23,"533 Washington St, Portland, OR 97035" +197061,Wired Headphones,1,11.99,04/18/19 20:09,"280 South St, Los Angeles, CA 90001" +197062,27in 4K Gaming Monitor,1,389.99,04/21/19 07:07,"48 4th St, San Francisco, CA 94016" +197063,27in 4K Gaming Monitor,1,389.99,04/19/19 15:51,"166 West St, San Francisco, CA 94016" +197064,Lightning Charging Cable,1,14.95,04/23/19 12:27,"650 Cherry St, Dallas, TX 75001" +197065,20in Monitor,1,109.99,04/12/19 20:35,"106 North St, Atlanta, GA 30301" +197066,34in Ultrawide Monitor,1,379.99,04/05/19 08:13,"90 1st St, San Francisco, CA 94016" +197067,Apple Airpods Headphones,1,150,04/20/19 18:18,"417 Ridge St, Seattle, WA 98101" +197068,27in FHD Monitor,1,149.99,04/19/19 19:30,"957 Ridge St, Los Angeles, CA 90001" +197069,Bose SoundSport Headphones,1,99.99,04/27/19 11:20,"878 8th St, Boston, MA 02215" +197070,Macbook Pro Laptop,1,1700,04/24/19 15:07,"767 Ridge St, Boston, MA 02215" +197071,iPhone,1,700,04/04/19 13:04,"271 Walnut St, Los Angeles, CA 90001" +197071,AAA Batteries (4-pack),1,2.99,04/04/19 13:04,"271 Walnut St, Los Angeles, CA 90001" +197072,20in Monitor,1,109.99,04/10/19 05:32,"3 Johnson St, New York City, NY 10001" +197073,AA Batteries (4-pack),1,3.84,04/16/19 18:33,"563 North St, Portland, OR 97035" +197074,27in FHD Monitor,1,149.99,04/05/19 13:19,"195 Walnut St, San Francisco, CA 94016" +197075,Wired Headphones,1,11.99,04/08/19 12:29,"517 Sunset St, Los Angeles, CA 90001" +197076,Wired Headphones,1,11.99,04/01/19 18:13,"15 West St, Seattle, WA 98101" +197077,AA Batteries (4-pack),1,3.84,04/24/19 14:37,"496 Forest St, New York City, NY 10001" +197078,Apple Airpods Headphones,1,150,04/23/19 22:19,"723 4th St, Los Angeles, CA 90001" +197079,27in FHD Monitor,1,149.99,04/21/19 18:41,"181 Cedar St, San Francisco, CA 94016" +197080,Apple Airpods Headphones,1,150,04/21/19 06:39,"327 Willow St, Boston, MA 02215" +197081,27in 4K Gaming Monitor,1,389.99,04/19/19 00:59,"680 Wilson St, Los Angeles, CA 90001" +197082,Wired Headphones,1,11.99,04/04/19 08:32,"485 Wilson St, San Francisco, CA 94016" +197083,27in FHD Monitor,1,149.99,04/16/19 05:29,"145 Forest St, Seattle, WA 98101" +197084,USB-C Charging Cable,1,11.95,04/07/19 01:18,"523 Spruce St, New York City, NY 10001" +197085,AAA Batteries (4-pack),1,2.99,04/21/19 00:47,"522 Lincoln St, San Francisco, CA 94016" +197086,USB-C Charging Cable,1,11.95,04/30/19 15:42,"12 Center St, New York City, NY 10001" +197087,Apple Airpods Headphones,1,150,04/23/19 20:47,"408 Wilson St, Dallas, TX 75001" +197088,Apple Airpods Headphones,1,150,04/09/19 15:24,"104 Washington St, Boston, MA 02215" +197089,Macbook Pro Laptop,1,1700,04/16/19 21:10,"537 2nd St, Boston, MA 02215" +197090,Macbook Pro Laptop,1,1700,04/21/19 16:17,"805 5th St, Boston, MA 02215" +197090,iPhone,1,700,04/21/19 16:17,"805 5th St, Boston, MA 02215" +197091,Lightning Charging Cable,1,14.95,04/13/19 18:20,"162 Main St, Los Angeles, CA 90001" +197092,27in 4K Gaming Monitor,1,389.99,04/26/19 19:28,"962 Madison St, Austin, TX 73301" +197093,USB-C Charging Cable,1,11.95,04/22/19 12:01,"47 Dogwood St, San Francisco, CA 94016" +197094,Flatscreen TV,1,300,04/06/19 10:08,"814 Meadow St, Seattle, WA 98101" +197095,Lightning Charging Cable,1,14.95,04/20/19 17:03,"987 Cedar St, Los Angeles, CA 90001" +197096,Wired Headphones,1,11.99,04/27/19 23:43,"157 West St, Austin, TX 73301" +197097,USB-C Charging Cable,1,11.95,04/30/19 19:43,"89 9th St, San Francisco, CA 94016" +197098,Google Phone,1,600,04/04/19 18:27,"657 2nd St, Atlanta, GA 30301" +197098,Wired Headphones,2,11.99,04/04/19 18:27,"657 2nd St, Atlanta, GA 30301" +197099,Wired Headphones,1,11.99,04/29/19 23:04,"269 Adams St, New York City, NY 10001" +197100,Wired Headphones,2,11.99,04/27/19 09:30,"33 Willow St, New York City, NY 10001" +197101,Lightning Charging Cable,1,14.95,04/14/19 19:10,"152 Jefferson St, Dallas, TX 75001" +197101,USB-C Charging Cable,1,11.95,04/14/19 19:10,"152 Jefferson St, Dallas, TX 75001" +197102,Apple Airpods Headphones,1,150,04/06/19 17:15,"264 Hill St, Los Angeles, CA 90001" +197103,AA Batteries (4-pack),1,3.84,04/18/19 12:09,"100 Park St, Seattle, WA 98101" +197104,USB-C Charging Cable,1,11.95,04/15/19 09:07,"978 Washington St, Los Angeles, CA 90001" +197105,USB-C Charging Cable,1,11.95,04/23/19 15:44,"810 Adams St, Boston, MA 02215" +197106,AA Batteries (4-pack),1,3.84,04/09/19 21:11,"542 Lakeview St, San Francisco, CA 94016" +197107,AA Batteries (4-pack),2,3.84,04/21/19 17:29,"565 Sunset St, Dallas, TX 75001" +197108,Flatscreen TV,1,300,04/02/19 19:01,"252 7th St, Los Angeles, CA 90001" +197109,Wired Headphones,1,11.99,04/23/19 05:10,"700 Maple St, Los Angeles, CA 90001" +197110,USB-C Charging Cable,1,11.95,04/25/19 06:35,"661 Willow St, Portland, ME 04101" +197111,34in Ultrawide Monitor,1,379.99,04/30/19 06:29,"2 7th St, Atlanta, GA 30301" +197112,AAA Batteries (4-pack),3,2.99,04/11/19 22:44,"161 Forest St, Atlanta, GA 30301" +197113,27in FHD Monitor,1,149.99,04/17/19 19:12,"402 Highland St, San Francisco, CA 94016" +197114,Lightning Charging Cable,1,14.95,04/24/19 22:00,"416 South St, Los Angeles, CA 90001" +197115,Apple Airpods Headphones,1,150,04/06/19 18:13,"541 14th St, New York City, NY 10001" +197116,Apple Airpods Headphones,1,150,04/27/19 18:22,"221 Hickory St, Los Angeles, CA 90001" +197117,Google Phone,1,600,04/24/19 00:27,"261 Lincoln St, Atlanta, GA 30301" +197118,Wired Headphones,1,11.99,04/16/19 16:48,"941 Lincoln St, Boston, MA 02215" +197119,34in Ultrawide Monitor,1,379.99,04/01/19 15:54,"892 Willow St, San Francisco, CA 94016" +197120,AA Batteries (4-pack),3,3.84,04/16/19 18:52,"800 Wilson St, Dallas, TX 75001" +197121,AAA Batteries (4-pack),3,2.99,04/12/19 12:44,"323 Ridge St, Dallas, TX 75001" +197122,AA Batteries (4-pack),1,3.84,04/06/19 15:49,"373 Cedar St, Portland, OR 97035" +197123,Lightning Charging Cable,1,14.95,04/20/19 10:51,"341 Church St, Los Angeles, CA 90001" +197124,Google Phone,1,600,04/03/19 20:14,"212 Maple St, Boston, MA 02215" +197125,Google Phone,1,600,04/20/19 22:09,"151 South St, San Francisco, CA 94016" +197126,Lightning Charging Cable,1,14.95,04/12/19 16:04,"853 7th St, San Francisco, CA 94016" +197127,Apple Airpods Headphones,1,150,04/25/19 17:59,"552 Johnson St, Boston, MA 02215" +197128,Lightning Charging Cable,1,14.95,04/18/19 23:14,"925 South St, Los Angeles, CA 90001" +197129,AAA Batteries (4-pack),1,2.99,04/20/19 20:41,"745 Walnut St, New York City, NY 10001" +197130,Apple Airpods Headphones,1,150,04/20/19 08:00,"860 Lakeview St, Los Angeles, CA 90001" +197131,Bose SoundSport Headphones,1,99.99,04/11/19 18:12,"855 Lakeview St, Los Angeles, CA 90001" +197132,USB-C Charging Cable,1,11.95,04/17/19 18:29,"893 West St, New York City, NY 10001" +197133,AA Batteries (4-pack),1,3.84,04/20/19 11:57,"172 Elm St, Portland, OR 97035" +197134,Vareebadd Phone,1,400,04/15/19 21:00,"186 2nd St, San Francisco, CA 94016" +197135,USB-C Charging Cable,1,11.95,04/10/19 23:13,"17 Adams St, Seattle, WA 98101" +197136,Apple Airpods Headphones,1,150,04/14/19 06:32,"345 Lake St, New York City, NY 10001" +197137,AA Batteries (4-pack),1,3.84,04/28/19 11:12,"225 River St, Seattle, WA 98101" +197138,27in FHD Monitor,1,149.99,04/09/19 14:50,"14 River St, New York City, NY 10001" +197139,Wired Headphones,1,11.99,04/15/19 15:42,"17 Willow St, Portland, OR 97035" +197140,Bose SoundSport Headphones,1,99.99,04/30/19 07:23,"604 Lakeview St, Seattle, WA 98101" +197141,Flatscreen TV,1,300,04/30/19 21:25,"726 Church St, Atlanta, GA 30301" +197142,USB-C Charging Cable,1,11.95,04/08/19 01:00,"263 Sunset St, New York City, NY 10001" +197143,USB-C Charging Cable,2,11.95,04/26/19 11:36,"441 Maple St, New York City, NY 10001" +197144,iPhone,1,700,04/27/19 00:35,"595 7th St, Boston, MA 02215" +197144,Lightning Charging Cable,1,14.95,04/27/19 00:35,"595 7th St, Boston, MA 02215" +197145,34in Ultrawide Monitor,1,379.99,04/02/19 19:37,"866 North St, Los Angeles, CA 90001" +197146,AA Batteries (4-pack),1,3.84,04/09/19 07:33,"477 South St, San Francisco, CA 94016" +197147,Wired Headphones,1,11.99,04/05/19 15:30,"126 Willow St, Austin, TX 73301" +197148,AA Batteries (4-pack),1,3.84,04/04/19 15:00,"437 Dogwood St, Austin, TX 73301" +197149,iPhone,1,700,04/01/19 13:38,"11 Ridge St, Austin, TX 73301" +197150,27in 4K Gaming Monitor,1,389.99,04/27/19 07:43,"625 12th St, Los Angeles, CA 90001" +197151,Google Phone,1,600,04/19/19 21:19,"26 Lake St, Los Angeles, CA 90001" +197152,Lightning Charging Cable,1,14.95,04/08/19 21:31,"937 11th St, Los Angeles, CA 90001" +197153,Google Phone,1,600,04/06/19 12:45,"292 Maple St, Los Angeles, CA 90001" +197153,Wired Headphones,1,11.99,04/06/19 12:45,"292 Maple St, Los Angeles, CA 90001" +197154,USB-C Charging Cable,1,11.95,04/16/19 12:22,"983 9th St, San Francisco, CA 94016" +197155,Wired Headphones,1,11.99,04/25/19 18:35,"560 Elm St, New York City, NY 10001" +197156,USB-C Charging Cable,1,11.95,04/07/19 17:36,"987 Jefferson St, Seattle, WA 98101" +197157,AAA Batteries (4-pack),2,2.99,04/09/19 15:44,"149 Main St, Atlanta, GA 30301" +197158,Apple Airpods Headphones,1,150,04/14/19 17:14,"834 Madison St, San Francisco, CA 94016" +197159,USB-C Charging Cable,1,11.95,04/18/19 10:28,"46 14th St, Atlanta, GA 30301" +197160,Apple Airpods Headphones,1,150,04/16/19 15:43,"203 North St, New York City, NY 10001" +197161,34in Ultrawide Monitor,1,379.99,04/20/19 20:58,"301 Park St, Los Angeles, CA 90001" +197162,AAA Batteries (4-pack),1,2.99,04/13/19 18:30,"221 Park St, Seattle, WA 98101" +197163,34in Ultrawide Monitor,1,379.99,04/09/19 22:49,"994 13th St, Los Angeles, CA 90001" +197164,27in 4K Gaming Monitor,1,389.99,04/09/19 13:33,"717 Washington St, San Francisco, CA 94016" +197165,AAA Batteries (4-pack),1,2.99,04/28/19 20:18,"277 Walnut St, Dallas, TX 75001" +197166,USB-C Charging Cable,1,11.95,04/06/19 21:44,"240 Spruce St, Los Angeles, CA 90001" +197167,Lightning Charging Cable,1,14.95,04/20/19 20:45,"646 Spruce St, San Francisco, CA 94016" +197168,USB-C Charging Cable,1,11.95,04/12/19 12:13,"425 9th St, Austin, TX 73301" +197169,Wired Headphones,1,11.99,04/07/19 11:36,"11 Lake St, Los Angeles, CA 90001" +197170,AA Batteries (4-pack),1,3.84,04/21/19 09:00,"902 Adams St, San Francisco, CA 94016" +197171,Lightning Charging Cable,1,14.95,04/20/19 17:39,"622 River St, Boston, MA 02215" +197172,Wired Headphones,1,11.99,04/17/19 11:26,"288 Dogwood St, New York City, NY 10001" +197173,Bose SoundSport Headphones,1,99.99,04/12/19 00:19,"322 Forest St, Portland, OR 97035" +197174,AA Batteries (4-pack),1,3.84,04/09/19 12:53,"895 Highland St, Boston, MA 02215" +197175,27in FHD Monitor,1,149.99,04/15/19 22:02,"591 10th St, Portland, OR 97035" +197176,Wired Headphones,2,11.99,04/26/19 18:28,"412 Adams St, Boston, MA 02215" +197177,iPhone,1,700,04/15/19 23:25,"203 6th St, Dallas, TX 75001" +197178,Google Phone,1,600,04/07/19 00:14,"284 Jefferson St, Seattle, WA 98101" +197179,LG Washing Machine,1,600.0,04/20/19 18:29,"355 Jackson St, Boston, MA 02215" +197180,Bose SoundSport Headphones,1,99.99,04/02/19 14:25,"631 Pine St, Boston, MA 02215" +197181,USB-C Charging Cable,1,11.95,04/30/19 07:50,"929 Wilson St, Atlanta, GA 30301" +197182,AAA Batteries (4-pack),1,2.99,04/11/19 20:05,"478 4th St, Austin, TX 73301" +197183,27in 4K Gaming Monitor,1,389.99,04/07/19 23:05,"21 Johnson St, Los Angeles, CA 90001" +197184,AAA Batteries (4-pack),1,2.99,04/28/19 18:49,"380 5th St, Seattle, WA 98101" +197185,Bose SoundSport Headphones,1,99.99,04/29/19 20:38,"949 Center St, Los Angeles, CA 90001" +197186,ThinkPad Laptop,1,999.99,04/09/19 20:28,"835 Meadow St, Boston, MA 02215" +197187,AA Batteries (4-pack),1,3.84,04/25/19 09:38,"126 Spruce St, New York City, NY 10001" +197188,Apple Airpods Headphones,1,150,04/13/19 20:49,"764 4th St, Austin, TX 73301" +197189,USB-C Charging Cable,1,11.95,04/22/19 12:31,"572 4th St, San Francisco, CA 94016" +197190,Apple Airpods Headphones,1,150,04/12/19 17:05,"555 Dogwood St, Dallas, TX 75001" +197191,ThinkPad Laptop,1,999.99,04/01/19 11:57,"718 Willow St, Austin, TX 73301" +197192,27in 4K Gaming Monitor,1,389.99,04/06/19 17:38,"322 9th St, New York City, NY 10001" +197193,USB-C Charging Cable,1,11.95,04/06/19 17:09,"920 Cedar St, New York City, NY 10001" +197194,AAA Batteries (4-pack),2,2.99,04/12/19 17:10,"616 Lincoln St, Los Angeles, CA 90001" +197195,Apple Airpods Headphones,1,150,04/18/19 19:06,"545 Cherry St, Austin, TX 73301" +197196,iPhone,1,700,04/02/19 14:35,"141 Sunset St, Portland, OR 97035" +197197,Apple Airpods Headphones,1,150,04/12/19 14:34,"16 8th St, Boston, MA 02215" +197198,Apple Airpods Headphones,1,150,04/07/19 15:30,"593 Lincoln St, San Francisco, CA 94016" +197199,Bose SoundSport Headphones,2,99.99,04/12/19 12:28,"727 Pine St, Seattle, WA 98101" +197200,iPhone,1,700,04/02/19 10:07,"160 10th St, Portland, ME 04101" +197200,Lightning Charging Cable,1,14.95,04/02/19 10:07,"160 10th St, Portland, ME 04101" +197201,AAA Batteries (4-pack),1,2.99,04/01/19 13:59,"237 7th St, Portland, ME 04101" +197202,ThinkPad Laptop,1,999.99,04/03/19 21:52,"327 4th St, Seattle, WA 98101" +197203,Macbook Pro Laptop,1,1700,04/11/19 23:38,"951 River St, San Francisco, CA 94016" +197204,AAA Batteries (4-pack),1,2.99,04/08/19 20:37,"230 South St, New York City, NY 10001" +197205,Bose SoundSport Headphones,1,99.99,04/30/19 22:44,"516 Park St, Los Angeles, CA 90001" +197206,Macbook Pro Laptop,1,1700,04/24/19 17:04,"322 Lakeview St, Los Angeles, CA 90001" +197207,Bose SoundSport Headphones,1,99.99,04/14/19 17:55,"813 Highland St, Boston, MA 02215" +197208,Vareebadd Phone,1,400,04/18/19 22:05,"347 2nd St, San Francisco, CA 94016" +197209,Apple Airpods Headphones,1,150,04/23/19 06:54,"138 West St, Dallas, TX 75001" +197210,AA Batteries (4-pack),1,3.84,04/07/19 11:47,"422 Maple St, San Francisco, CA 94016" +197211,Apple Airpods Headphones,1,150,04/10/19 09:50,"741 Johnson St, Seattle, WA 98101" +197212,ThinkPad Laptop,1,999.99,04/22/19 17:24,"90 Elm St, Atlanta, GA 30301" +197213,AA Batteries (4-pack),1,3.84,04/05/19 00:15,"134 1st St, Boston, MA 02215" +197214,AA Batteries (4-pack),2,3.84,04/17/19 17:45,"579 5th St, Los Angeles, CA 90001" +197215,AAA Batteries (4-pack),1,2.99,04/14/19 12:05,"936 Chestnut St, Seattle, WA 98101" +197216,USB-C Charging Cable,2,11.95,04/04/19 20:23,"173 7th St, San Francisco, CA 94016" +197216,Google Phone,1,600,04/04/19 20:23,"173 7th St, San Francisco, CA 94016" +197217,AA Batteries (4-pack),2,3.84,04/13/19 01:15,"967 Willow St, San Francisco, CA 94016" +197218,27in 4K Gaming Monitor,1,389.99,04/08/19 13:08,"161 Main St, Seattle, WA 98101" +197219,AA Batteries (4-pack),4,3.84,04/17/19 10:30,"897 Highland St, New York City, NY 10001" +197219,Wired Headphones,1,11.99,04/17/19 10:30,"897 Highland St, New York City, NY 10001" +197220,Macbook Pro Laptop,1,1700,04/15/19 18:38,"706 10th St, New York City, NY 10001" +197221,USB-C Charging Cable,1,11.95,04/08/19 11:14,"255 Church St, San Francisco, CA 94016" +197222,27in 4K Gaming Monitor,1,389.99,04/04/19 05:59,"49 Madison St, Boston, MA 02215" +197223,Lightning Charging Cable,1,14.95,04/01/19 13:16,"601 North St, San Francisco, CA 94016" +197224,USB-C Charging Cable,1,11.95,04/12/19 09:38,"393 Elm St, Austin, TX 73301" +197225,AA Batteries (4-pack),2,3.84,04/28/19 13:13,"120 Park St, San Francisco, CA 94016" +197226,Vareebadd Phone,1,400,04/25/19 01:15,"55 1st St, Los Angeles, CA 90001" +197227,Wired Headphones,1,11.99,04/09/19 23:59,"491 Maple St, Boston, MA 02215" +197228,20in Monitor,1,109.99,04/19/19 12:21,"20 Elm St, Austin, TX 73301" +197229,Apple Airpods Headphones,1,150,04/02/19 14:58,"672 Hill St, Austin, TX 73301" +197230,Apple Airpods Headphones,1,150,04/25/19 21:15,"648 Willow St, Boston, MA 02215" +197231,Apple Airpods Headphones,1,150,04/12/19 04:33,"90 Lakeview St, Seattle, WA 98101" +197232,AA Batteries (4-pack),1,3.84,04/08/19 14:29,"438 Spruce St, New York City, NY 10001" +197233,AA Batteries (4-pack),1,3.84,04/21/19 18:43,"479 Center St, Dallas, TX 75001" +197234,Wired Headphones,1,11.99,04/22/19 15:38,"339 4th St, Los Angeles, CA 90001" +197235,AA Batteries (4-pack),1,3.84,04/17/19 12:42,"810 Cherry St, Dallas, TX 75001" +197236,27in FHD Monitor,1,149.99,04/18/19 00:07,"563 North St, Dallas, TX 75001" +197237,Lightning Charging Cable,1,14.95,04/07/19 14:14,"619 Walnut St, San Francisco, CA 94016" +197238,Apple Airpods Headphones,1,150,04/26/19 08:29,"313 Jackson St, Seattle, WA 98101" +197239,ThinkPad Laptop,1,999.99,04/11/19 12:47,"227 Center St, Seattle, WA 98101" +197240,AA Batteries (4-pack),1,3.84,04/15/19 08:59,"767 West St, New York City, NY 10001" +197241,iPhone,1,700,04/28/19 12:26,"902 7th St, New York City, NY 10001" +197242,AA Batteries (4-pack),1,3.84,04/16/19 11:01,"290 10th St, San Francisco, CA 94016" +197243,Wired Headphones,1,11.99,04/11/19 16:10,"575 Wilson St, Dallas, TX 75001" +197244,ThinkPad Laptop,1,999.99,04/03/19 11:58,"969 West St, Austin, TX 73301" +197245,27in FHD Monitor,1,149.99,04/05/19 11:27,"398 Adams St, New York City, NY 10001" +197246,USB-C Charging Cable,1,11.95,04/01/19 21:23,"701 Lincoln St, Seattle, WA 98101" +197247,27in 4K Gaming Monitor,1,389.99,04/10/19 00:40,"553 Ridge St, Boston, MA 02215" +197248,AAA Batteries (4-pack),2,2.99,04/07/19 18:51,"986 14th St, Los Angeles, CA 90001" +197249,iPhone,1,700,04/05/19 15:02,"190 Lincoln St, San Francisco, CA 94016" +197250,27in 4K Gaming Monitor,1,389.99,04/27/19 11:47,"734 Spruce St, Los Angeles, CA 90001" +197251,ThinkPad Laptop,1,999.99,04/19/19 17:10,"98 Adams St, Dallas, TX 75001" +197252,Bose SoundSport Headphones,1,99.99,04/16/19 22:49,"625 6th St, Los Angeles, CA 90001" +197253,Lightning Charging Cable,1,14.95,04/27/19 17:27,"330 5th St, Los Angeles, CA 90001" +197254,Google Phone,1,600,04/30/19 13:23,"701 Walnut St, San Francisco, CA 94016" +197255,Apple Airpods Headphones,1,150,04/22/19 07:59,"194 4th St, Seattle, WA 98101" +197256,Macbook Pro Laptop,1,1700,04/05/19 19:11,"28 2nd St, Los Angeles, CA 90001" +197257,Bose SoundSport Headphones,1,99.99,04/17/19 22:00,"747 4th St, Dallas, TX 75001" +197258,27in FHD Monitor,1,149.99,04/14/19 13:10,"262 13th St, New York City, NY 10001" +197259,AAA Batteries (4-pack),2,2.99,04/05/19 12:21,"686 9th St, San Francisco, CA 94016" +197260,USB-C Charging Cable,1,11.95,04/18/19 09:16,"82 Chestnut St, Portland, OR 97035" +197261,ThinkPad Laptop,1,999.99,04/19/19 12:46,"420 River St, Atlanta, GA 30301" +197262,AA Batteries (4-pack),3,3.84,04/02/19 11:03,"283 Willow St, Dallas, TX 75001" +197263,USB-C Charging Cable,1,11.95,04/21/19 17:59,"674 Spruce St, Seattle, WA 98101" +197264,ThinkPad Laptop,1,999.99,04/21/19 09:18,"524 8th St, Atlanta, GA 30301" +197265,USB-C Charging Cable,1,11.95,04/11/19 13:52,"703 Highland St, Atlanta, GA 30301" +197266,AAA Batteries (4-pack),3,2.99,04/16/19 11:13,"354 Madison St, Dallas, TX 75001" +197267,Wired Headphones,1,11.99,04/24/19 09:40,"615 Forest St, San Francisco, CA 94016" +197268,Apple Airpods Headphones,1,150,04/28/19 18:28,"229 8th St, New York City, NY 10001" +197269,Wired Headphones,2,11.99,04/05/19 18:29,"639 Elm St, San Francisco, CA 94016" +197270,Wired Headphones,1,11.99,04/04/19 18:09,"767 12th St, Boston, MA 02215" +197271,Lightning Charging Cable,1,14.95,04/21/19 00:20,"686 Hickory St, Los Angeles, CA 90001" +197272,AA Batteries (4-pack),1,3.84,04/03/19 05:51,"268 Madison St, Los Angeles, CA 90001" +197273,Wired Headphones,1,11.99,04/04/19 08:53,"776 Chestnut St, San Francisco, CA 94016" +197274,Vareebadd Phone,1,400,04/09/19 20:05,"155 Center St, Los Angeles, CA 90001" +197275,34in Ultrawide Monitor,1,379.99,04/09/19 17:38,"389 7th St, Boston, MA 02215" +197276,Bose SoundSport Headphones,1,99.99,04/05/19 11:11,"761 West St, Boston, MA 02215" +197277,34in Ultrawide Monitor,1,379.99,04/25/19 03:18,"726 River St, Los Angeles, CA 90001" +197278,AAA Batteries (4-pack),1,2.99,04/07/19 21:51,"593 8th St, Austin, TX 73301" +197279,AA Batteries (4-pack),4,3.84,04/16/19 10:53,"400 Park St, Austin, TX 73301" +197280,Apple Airpods Headphones,1,150,04/12/19 20:54,"20 Meadow St, San Francisco, CA 94016" +197281,Lightning Charging Cable,2,14.95,04/21/19 13:58,"802 Main St, Austin, TX 73301" +197282,AAA Batteries (4-pack),5,2.99,04/04/19 17:25,"731 Jackson St, Seattle, WA 98101" +197283,Apple Airpods Headphones,1,150,04/21/19 11:59,"951 Johnson St, Los Angeles, CA 90001" +197284,Wired Headphones,1,11.99,04/13/19 13:56,"639 Highland St, New York City, NY 10001" +197285,AAA Batteries (4-pack),1,2.99,04/24/19 02:17,"792 Sunset St, Los Angeles, CA 90001" +197286,Wired Headphones,1,11.99,04/09/19 21:09,"209 Forest St, Atlanta, GA 30301" +197287,27in FHD Monitor,1,149.99,04/20/19 14:35,"428 Center St, Dallas, TX 75001" +197288,27in FHD Monitor,1,149.99,04/20/19 11:39,"651 Pine St, Los Angeles, CA 90001" +197289,27in 4K Gaming Monitor,1,389.99,04/29/19 09:34,"209 Spruce St, Atlanta, GA 30301" +197290,AA Batteries (4-pack),1,3.84,04/30/19 13:02,"617 North St, Seattle, WA 98101" +197291,Google Phone,1,600,04/08/19 08:36,"276 River St, San Francisco, CA 94016" +197292,27in 4K Gaming Monitor,1,389.99,04/20/19 16:53,"32 Walnut St, Los Angeles, CA 90001" +197293,AA Batteries (4-pack),1,3.84,04/24/19 14:13,"158 Lakeview St, Los Angeles, CA 90001" +197294,AAA Batteries (4-pack),1,2.99,04/08/19 09:09,"457 2nd St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +197295,27in FHD Monitor,1,149.99,04/28/19 08:17,"258 Lincoln St, Austin, TX 73301" +197296,AAA Batteries (4-pack),1,2.99,04/07/19 14:04,"361 Jackson St, New York City, NY 10001" +197297,AAA Batteries (4-pack),2,2.99,04/22/19 07:08,"428 Johnson St, Dallas, TX 75001" +197298,Google Phone,1,600,04/07/19 07:07,"816 12th St, Los Angeles, CA 90001" +197298,USB-C Charging Cable,1,11.95,04/07/19 07:07,"816 12th St, Los Angeles, CA 90001" +197299,USB-C Charging Cable,1,11.95,04/06/19 13:40,"409 Spruce St, Austin, TX 73301" +197300,USB-C Charging Cable,1,11.95,04/13/19 10:49,"700 Elm St, San Francisco, CA 94016" +197301,USB-C Charging Cable,1,11.95,04/14/19 02:54,"858 2nd St, Austin, TX 73301" +197302,Flatscreen TV,1,300,04/01/19 21:47,"304 10th St, Portland, OR 97035" +197303,Wired Headphones,1,11.99,04/08/19 11:24,"504 Meadow St, Austin, TX 73301" +197304,34in Ultrawide Monitor,1,379.99,04/18/19 11:58,"27 Adams St, Portland, ME 04101" +197305,AAA Batteries (4-pack),1,2.99,04/20/19 21:45,"286 9th St, Austin, TX 73301" +197306,LG Washing Machine,1,600.0,04/09/19 15:39,"798 9th St, New York City, NY 10001" +197307,Apple Airpods Headphones,1,150,04/21/19 14:41,"893 South St, Boston, MA 02215" +197308,Wired Headphones,1,11.99,04/21/19 17:56,"586 Church St, San Francisco, CA 94016" +197309,AAA Batteries (4-pack),2,2.99,04/21/19 07:26,"25 Center St, Boston, MA 02215" +197310,AAA Batteries (4-pack),1,2.99,04/16/19 20:15,"621 West St, Portland, OR 97035" +197311,AAA Batteries (4-pack),3,2.99,04/30/19 22:00,"632 Johnson St, Boston, MA 02215" +197312,Google Phone,1,600,04/20/19 14:19,"925 Sunset St, Los Angeles, CA 90001" +197313,27in 4K Gaming Monitor,1,389.99,04/15/19 09:36,"817 Cherry St, Dallas, TX 75001" +197314,USB-C Charging Cable,1,11.95,04/12/19 23:04,"859 Pine St, San Francisco, CA 94016" +,,,,, +197315,34in Ultrawide Monitor,1,379.99,04/06/19 19:32,"880 Park St, Los Angeles, CA 90001" +197316,Flatscreen TV,1,300,04/17/19 10:41,"431 South St, New York City, NY 10001" +197317,34in Ultrawide Monitor,1,379.99,04/29/19 20:38,"315 Jefferson St, New York City, NY 10001" +197318,27in FHD Monitor,1,149.99,04/04/19 21:58,"483 9th St, New York City, NY 10001" +197319,Google Phone,1,600,04/10/19 17:08,"744 1st St, Dallas, TX 75001" +197319,Wired Headphones,1,11.99,04/10/19 17:08,"744 1st St, Dallas, TX 75001" +197320,USB-C Charging Cable,1,11.95,04/19/19 15:27,"632 8th St, Los Angeles, CA 90001" +197321,AAA Batteries (4-pack),1,2.99,04/07/19 23:53,"734 Johnson St, Austin, TX 73301" +197322,USB-C Charging Cable,1,11.95,04/18/19 16:06,"706 Lincoln St, New York City, NY 10001" +197323,27in 4K Gaming Monitor,1,389.99,04/14/19 05:32,"741 Hickory St, Dallas, TX 75001" +197324,AAA Batteries (4-pack),1,2.99,04/23/19 19:49,"228 4th St, Portland, OR 97035" +197325,Wired Headphones,1,11.99,04/02/19 23:43,"525 Cherry St, Boston, MA 02215" +197326,Bose SoundSport Headphones,1,99.99,04/30/19 16:32,"846 1st St, Dallas, TX 75001" +197327,Lightning Charging Cable,1,14.95,04/04/19 10:18,"234 Park St, San Francisco, CA 94016" +197328,Lightning Charging Cable,1,14.95,04/23/19 18:35,"823 Hill St, San Francisco, CA 94016" +197329,AA Batteries (4-pack),2,3.84,04/25/19 13:17,"10 Wilson St, Austin, TX 73301" +197330,AA Batteries (4-pack),1,3.84,04/18/19 10:03,"450 13th St, San Francisco, CA 94016" +197331,USB-C Charging Cable,2,11.95,04/18/19 07:49,"468 Maple St, Dallas, TX 75001" +197331,Lightning Charging Cable,1,14.95,04/18/19 07:49,"468 Maple St, Dallas, TX 75001" +197332,27in FHD Monitor,1,149.99,04/09/19 01:22,"923 Sunset St, Portland, OR 97035" +197333,AAA Batteries (4-pack),2,2.99,04/21/19 18:58,"162 1st St, Seattle, WA 98101" +197334,USB-C Charging Cable,1,11.95,04/07/19 14:05,"795 Johnson St, Los Angeles, CA 90001" +197335,Lightning Charging Cable,1,14.95,04/02/19 16:59,"651 Dogwood St, Dallas, TX 75001" +197336,27in 4K Gaming Monitor,1,389.99,04/27/19 17:34,"607 North St, New York City, NY 10001" +197337,Apple Airpods Headphones,1,150,04/23/19 14:02,"923 Chestnut St, Dallas, TX 75001" +197338,AA Batteries (4-pack),3,3.84,04/22/19 20:44,"8 Madison St, Boston, MA 02215" +197339,Lightning Charging Cable,1,14.95,04/24/19 17:43,"423 14th St, Los Angeles, CA 90001" +197340,AAA Batteries (4-pack),1,2.99,04/06/19 17:36,"327 Sunset St, Portland, OR 97035" +197341,AA Batteries (4-pack),1,3.84,04/06/19 22:29,"164 7th St, Boston, MA 02215" +197342,iPhone,1,700,04/03/19 13:13,"481 River St, Portland, OR 97035" +197343,34in Ultrawide Monitor,1,379.99,04/25/19 13:13,"862 Willow St, Portland, OR 97035" +197344,AAA Batteries (4-pack),1,2.99,04/07/19 14:01,"751 Forest St, Seattle, WA 98101" +197345,USB-C Charging Cable,1,11.95,04/17/19 19:20,"547 11th St, Los Angeles, CA 90001" +197346,27in FHD Monitor,1,149.99,04/24/19 19:20,"938 12th St, Dallas, TX 75001" +197347,Google Phone,1,600,04/07/19 14:20,"91 Hickory St, Los Angeles, CA 90001" +197348,27in FHD Monitor,1,149.99,04/11/19 21:02,"286 Cedar St, San Francisco, CA 94016" +197349,AA Batteries (4-pack),2,3.84,04/23/19 18:53,"105 Spruce St, Los Angeles, CA 90001" +197350,Lightning Charging Cable,1,14.95,04/26/19 11:32,"190 Park St, Portland, ME 04101" +197351,AA Batteries (4-pack),2,3.84,04/27/19 17:25,"569 2nd St, Boston, MA 02215" +197352,AAA Batteries (4-pack),1,2.99,04/09/19 17:44,"13 South St, New York City, NY 10001" +197353,USB-C Charging Cable,1,11.95,04/29/19 17:39,"388 Spruce St, Los Angeles, CA 90001" +197354,USB-C Charging Cable,1,11.95,04/14/19 18:24,"616 Dogwood St, New York City, NY 10001" +197355,Wired Headphones,1,11.99,04/08/19 19:13,"911 Elm St, Los Angeles, CA 90001" +197356,27in FHD Monitor,1,149.99,04/02/19 11:42,"106 Hill St, San Francisco, CA 94016" +197357,AAA Batteries (4-pack),1,2.99,04/11/19 18:42,"877 14th St, New York City, NY 10001" +197358,ThinkPad Laptop,1,999.99,04/02/19 21:05,"196 14th St, San Francisco, CA 94016" +197359,AAA Batteries (4-pack),1,2.99,04/02/19 14:28,"484 Main St, Los Angeles, CA 90001" +197359,34in Ultrawide Monitor,1,379.99,04/02/19 14:28,"484 Main St, Los Angeles, CA 90001" +197360,27in 4K Gaming Monitor,1,389.99,04/16/19 00:27,"736 Madison St, Atlanta, GA 30301" +197361,USB-C Charging Cable,1,11.95,04/26/19 21:05,"928 12th St, Atlanta, GA 30301" +197362,Wired Headphones,1,11.99,04/23/19 18:08,"47 South St, Portland, OR 97035" +197363,Google Phone,1,600,04/14/19 11:22,"259 Cedar St, Los Angeles, CA 90001" +197363,USB-C Charging Cable,1,11.95,04/14/19 11:22,"259 Cedar St, Los Angeles, CA 90001" +197364,34in Ultrawide Monitor,1,379.99,04/29/19 00:27,"268 Main St, San Francisco, CA 94016" +197365,AA Batteries (4-pack),2,3.84,04/10/19 07:52,"325 Ridge St, Dallas, TX 75001" +197366,Lightning Charging Cable,1,14.95,04/01/19 13:55,"64 River St, Austin, TX 73301" +197367,Wired Headphones,1,11.99,04/23/19 12:45,"722 Lincoln St, Boston, MA 02215" +197368,AAA Batteries (4-pack),1,2.99,04/06/19 18:02,"835 11th St, Portland, ME 04101" +197369,Bose SoundSport Headphones,1,99.99,04/09/19 13:03,"233 Highland St, Los Angeles, CA 90001" +197370,AAA Batteries (4-pack),1,2.99,04/15/19 14:02,"565 Adams St, Dallas, TX 75001" +197371,Apple Airpods Headphones,1,150,04/08/19 18:19,"580 Main St, Seattle, WA 98101" +197372,iPhone,1,700,04/29/19 22:14,"281 1st St, Los Angeles, CA 90001" +197373,ThinkPad Laptop,1,999.99,04/27/19 22:10,"755 Spruce St, Los Angeles, CA 90001" +197374,Apple Airpods Headphones,1,150,04/26/19 08:12,"276 Willow St, Los Angeles, CA 90001" +197375,34in Ultrawide Monitor,1,379.99,04/02/19 11:46,"18 Park St, Seattle, WA 98101" +197376,27in FHD Monitor,1,149.99,04/17/19 00:57,"686 Cedar St, Los Angeles, CA 90001" +197377,34in Ultrawide Monitor,1,379.99,04/10/19 11:32,"496 10th St, Portland, OR 97035" +197378,Bose SoundSport Headphones,1,99.99,04/13/19 05:14,"553 4th St, Dallas, TX 75001" +197379,Bose SoundSport Headphones,1,99.99,04/03/19 18:12,"646 13th St, Boston, MA 02215" +197380,AAA Batteries (4-pack),2,2.99,04/08/19 21:22,"478 11th St, New York City, NY 10001" +197381,Google Phone,1,600,04/14/19 13:12,"923 Center St, Portland, ME 04101" +197381,Google Phone,1,600,04/14/19 13:12,"923 Center St, Portland, ME 04101" +197382,Flatscreen TV,1,300,04/09/19 10:45,"814 Lincoln St, Austin, TX 73301" +197383,AAA Batteries (4-pack),2,2.99,04/12/19 19:32,"14 Main St, Los Angeles, CA 90001" +197384,Lightning Charging Cable,1,14.95,04/09/19 13:14,"518 1st St, Atlanta, GA 30301" +197385,AAA Batteries (4-pack),2,2.99,04/29/19 09:23,"501 South St, Boston, MA 02215" +197386,Lightning Charging Cable,1,14.95,04/11/19 11:14,"991 Cedar St, Los Angeles, CA 90001" +197387,Lightning Charging Cable,1,14.95,04/14/19 14:11,"351 Hill St, Seattle, WA 98101" +197388,Apple Airpods Headphones,1,150,04/23/19 10:48,"568 Jackson St, Austin, TX 73301" +197389,USB-C Charging Cable,1,11.95,04/25/19 20:20,"396 Jefferson St, New York City, NY 10001" +197390,AAA Batteries (4-pack),1,2.99,04/22/19 20:17,"959 Church St, Seattle, WA 98101" +197391,27in FHD Monitor,1,149.99,04/07/19 01:31,"471 Dogwood St, Los Angeles, CA 90001" +197392,Bose SoundSport Headphones,1,99.99,04/14/19 14:21,"16 Forest St, Los Angeles, CA 90001" +197392,iPhone,1,700,04/14/19 14:21,"16 Forest St, Los Angeles, CA 90001" +197393,27in FHD Monitor,1,149.99,04/02/19 18:39,"682 12th St, Seattle, WA 98101" +197394,27in FHD Monitor,1,149.99,04/26/19 15:25,"617 Willow St, New York City, NY 10001" +197395,USB-C Charging Cable,1,11.95,04/30/19 16:25,"105 South St, New York City, NY 10001" +197396,AAA Batteries (4-pack),2,2.99,04/27/19 08:37,"438 8th St, New York City, NY 10001" +197397,Flatscreen TV,1,300,04/25/19 10:43,"646 Madison St, Seattle, WA 98101" +197398,Wired Headphones,1,11.99,04/29/19 23:08,"873 1st St, New York City, NY 10001" +197399,27in 4K Gaming Monitor,1,389.99,04/16/19 11:24,"230 Jackson St, Seattle, WA 98101" +197400,Bose SoundSport Headphones,1,99.99,04/16/19 19:09,"218 Walnut St, New York City, NY 10001" +197401,Wired Headphones,1,11.99,04/25/19 13:37,"555 Adams St, Seattle, WA 98101" +197402,27in 4K Gaming Monitor,1,389.99,04/29/19 16:01,"557 Wilson St, Boston, MA 02215" +197403,Lightning Charging Cable,1,14.95,04/10/19 23:24,"555 Hill St, New York City, NY 10001" +197404,USB-C Charging Cable,1,11.95,04/12/19 08:58,"493 West St, San Francisco, CA 94016" +197405,USB-C Charging Cable,1,11.95,04/15/19 19:09,"701 14th St, Seattle, WA 98101" +197406,USB-C Charging Cable,1,11.95,04/08/19 18:31,"719 1st St, Los Angeles, CA 90001" +197407,27in FHD Monitor,1,149.99,04/04/19 06:53,"548 Pine St, Boston, MA 02215" +197408,Lightning Charging Cable,1,14.95,04/13/19 12:01,"584 2nd St, Boston, MA 02215" +197408,34in Ultrawide Monitor,1,379.99,04/13/19 12:01,"584 2nd St, Boston, MA 02215" +197409,iPhone,1,700,04/06/19 10:28,"832 Lake St, Boston, MA 02215" +197410,iPhone,1,700,04/15/19 18:33,"886 6th St, Dallas, TX 75001" +197411,34in Ultrawide Monitor,1,379.99,04/13/19 19:12,"270 Ridge St, Los Angeles, CA 90001" +197412,USB-C Charging Cable,1,11.95,04/10/19 08:03,"292 Jefferson St, Los Angeles, CA 90001" +197413,AA Batteries (4-pack),1,3.84,04/17/19 12:58,"150 14th St, Portland, OR 97035" +197414,Lightning Charging Cable,1,14.95,04/02/19 14:10,"567 Wilson St, San Francisco, CA 94016" +197415,Bose SoundSport Headphones,1,99.99,04/15/19 18:34,"920 Johnson St, Portland, OR 97035" +197416,Apple Airpods Headphones,1,150,04/23/19 10:19,"520 Main St, San Francisco, CA 94016" +197417,Apple Airpods Headphones,1,150,04/16/19 13:47,"101 Walnut St, Boston, MA 02215" +197418,Lightning Charging Cable,1,14.95,04/30/19 11:03,"880 Adams St, San Francisco, CA 94016" +197419,AAA Batteries (4-pack),3,2.99,04/24/19 01:05,"734 River St, Los Angeles, CA 90001" +197420,Macbook Pro Laptop,1,1700,04/10/19 13:49,"122 14th St, Atlanta, GA 30301" +197421,Flatscreen TV,1,300,04/17/19 12:45,"180 Pine St, Portland, OR 97035" +197422,ThinkPad Laptop,1,999.99,04/15/19 20:47,"609 Lincoln St, Dallas, TX 75001" +197423,Bose SoundSport Headphones,1,99.99,04/16/19 16:04,"453 Madison St, Los Angeles, CA 90001" +197424,Wired Headphones,1,11.99,04/27/19 20:05,"346 10th St, Austin, TX 73301" +197425,ThinkPad Laptop,1,999.99,04/30/19 09:40,"778 Adams St, San Francisco, CA 94016" +197426,Lightning Charging Cable,1,14.95,04/20/19 23:59,"874 Center St, San Francisco, CA 94016" +197427,20in Monitor,1,109.99,04/07/19 17:09,"202 Wilson St, Seattle, WA 98101" +197428,27in 4K Gaming Monitor,1,389.99,04/04/19 11:13,"689 Highland St, San Francisco, CA 94016" +197429,27in FHD Monitor,1,149.99,04/18/19 18:34,"280 Hill St, San Francisco, CA 94016" +197430,Apple Airpods Headphones,1,150,04/20/19 17:25,"625 Jackson St, Boston, MA 02215" +197431,Apple Airpods Headphones,1,150,04/10/19 00:00,"524 Lakeview St, San Francisco, CA 94016" +197432,AA Batteries (4-pack),1,3.84,04/11/19 11:09,"652 Meadow St, Boston, MA 02215" +197433,USB-C Charging Cable,1,11.95,04/08/19 20:32,"954 Center St, Portland, ME 04101" +197434,Google Phone,1,600,04/12/19 21:53,"987 9th St, Atlanta, GA 30301" +197434,Bose SoundSport Headphones,1,99.99,04/12/19 21:53,"987 9th St, Atlanta, GA 30301" +197435,USB-C Charging Cable,1,11.95,04/27/19 21:43,"688 6th St, Boston, MA 02215" +197436,AA Batteries (4-pack),1,3.84,04/28/19 17:27,"384 12th St, Dallas, TX 75001" +197437,Bose SoundSport Headphones,1,99.99,04/16/19 12:33,"618 Johnson St, Dallas, TX 75001" +197438,AA Batteries (4-pack),2,3.84,04/13/19 21:54,"315 Willow St, New York City, NY 10001" +197439,27in FHD Monitor,1,149.99,04/19/19 23:53,"836 Maple St, Seattle, WA 98101" +197440,AA Batteries (4-pack),1,3.84,04/19/19 14:08,"135 Jackson St, San Francisco, CA 94016" +197441,Apple Airpods Headphones,1,150,04/19/19 18:20,"341 Maple St, Atlanta, GA 30301" +197442,27in FHD Monitor,1,149.99,04/27/19 12:26,"770 Park St, Dallas, TX 75001" +197443,Apple Airpods Headphones,1,150,04/08/19 22:37,"99 Walnut St, Boston, MA 02215" +197444,Apple Airpods Headphones,1,150,04/07/19 07:51,"434 Chestnut St, Boston, MA 02215" +197445,Flatscreen TV,1,300,04/16/19 23:13,"960 Highland St, San Francisco, CA 94016" +197446,Wired Headphones,1,11.99,04/10/19 18:41,"315 4th St, Seattle, WA 98101" +197447,Bose SoundSport Headphones,1,99.99,04/01/19 13:42,"434 Johnson St, New York City, NY 10001" +197448,Lightning Charging Cable,2,14.95,04/16/19 10:12,"463 Highland St, Los Angeles, CA 90001" +197449,AAA Batteries (4-pack),1,2.99,04/27/19 16:24,"794 Hickory St, Seattle, WA 98101" +197450,AA Batteries (4-pack),1,3.84,04/11/19 22:11,"539 Center St, San Francisco, CA 94016" +197451,iPhone,1,700,04/05/19 08:07,"158 River St, San Francisco, CA 94016" +197451,Apple Airpods Headphones,1,150,04/05/19 08:07,"158 River St, San Francisco, CA 94016" +197452,iPhone,1,700,04/10/19 00:22,"604 Dogwood St, Seattle, WA 98101" +197452,Lightning Charging Cable,1,14.95,04/10/19 00:22,"604 Dogwood St, Seattle, WA 98101" +197453,ThinkPad Laptop,1,999.99,04/19/19 23:20,"224 12th St, Dallas, TX 75001" +197454,AA Batteries (4-pack),2,3.84,04/09/19 21:57,"313 Spruce St, San Francisco, CA 94016" +197455,Bose SoundSport Headphones,1,99.99,04/02/19 21:42,"201 10th St, Boston, MA 02215" +197456,USB-C Charging Cable,1,11.95,04/21/19 00:55,"362 Ridge St, Boston, MA 02215" +197457,Bose SoundSport Headphones,1,99.99,04/26/19 08:13,"891 Highland St, San Francisco, CA 94016" +197458,iPhone,1,700,04/23/19 16:47,"158 Johnson St, Los Angeles, CA 90001" +197459,34in Ultrawide Monitor,1,379.99,04/22/19 19:54,"167 Wilson St, New York City, NY 10001" +197460,USB-C Charging Cable,2,11.95,04/28/19 17:58,"594 Wilson St, New York City, NY 10001" +197461,AAA Batteries (4-pack),1,2.99,04/15/19 18:32,"132 Cherry St, Austin, TX 73301" +197462,iPhone,1,700,04/10/19 19:36,"159 Willow St, Portland, ME 04101" +197463,USB-C Charging Cable,1,11.95,04/15/19 11:17,"746 Cedar St, New York City, NY 10001" +197464,USB-C Charging Cable,1,11.95,04/26/19 10:27,"658 Adams St, New York City, NY 10001" +197465,AA Batteries (4-pack),1,3.84,04/30/19 22:33,"723 12th St, Boston, MA 02215" +197466,AAA Batteries (4-pack),1,2.99,04/27/19 12:39,"340 South St, San Francisco, CA 94016" +197467,ThinkPad Laptop,1,999.99,04/20/19 19:56,"252 Ridge St, Dallas, TX 75001" +197468,Flatscreen TV,1,300,04/27/19 20:41,"503 Church St, Seattle, WA 98101" +197469,Apple Airpods Headphones,1,150,04/18/19 19:08,"456 12th St, New York City, NY 10001" +197470,Lightning Charging Cable,1,14.95,04/09/19 13:37,"691 West St, Atlanta, GA 30301" +197471,iPhone,1,700,04/15/19 23:31,"974 River St, Dallas, TX 75001" +197472,27in 4K Gaming Monitor,1,389.99,04/17/19 07:31,"392 8th St, San Francisco, CA 94016" +197473,AA Batteries (4-pack),1,3.84,04/06/19 13:21,"391 Dogwood St, Boston, MA 02215" +197474,AA Batteries (4-pack),1,3.84,04/13/19 13:27,"66 Hickory St, New York City, NY 10001" +197475,Apple Airpods Headphones,1,150,04/25/19 21:11,"54 9th St, New York City, NY 10001" +197476,Apple Airpods Headphones,1,150,04/10/19 08:30,"15 Jackson St, San Francisco, CA 94016" +197477,Flatscreen TV,1,300,04/26/19 10:05,"628 Cedar St, Atlanta, GA 30301" +197478,USB-C Charging Cable,1,11.95,04/10/19 07:04,"799 Elm St, Seattle, WA 98101" +197479,USB-C Charging Cable,1,11.95,04/08/19 06:54,"75 Washington St, Seattle, WA 98101" +197480,USB-C Charging Cable,1,11.95,04/09/19 12:17,"479 Lake St, Seattle, WA 98101" +197480,20in Monitor,1,109.99,04/09/19 12:17,"479 Lake St, Seattle, WA 98101" +197481,AAA Batteries (4-pack),1,2.99,04/13/19 16:44,"458 Church St, New York City, NY 10001" +197482,iPhone,1,700,04/19/19 13:37,"251 Park St, Boston, MA 02215" +197483,Wired Headphones,1,11.99,04/21/19 07:01,"482 6th St, New York City, NY 10001" +197484,Lightning Charging Cable,1,14.95,04/24/19 12:05,"942 Ridge St, Dallas, TX 75001" +197485,Wired Headphones,1,11.99,04/25/19 16:35,"837 7th St, San Francisco, CA 94016" +197486,Apple Airpods Headphones,1,150,04/18/19 23:47,"144 North St, San Francisco, CA 94016" +197487,Wired Headphones,1,11.99,04/24/19 17:12,"150 Cedar St, Dallas, TX 75001" +197488,Wired Headphones,1,11.99,04/03/19 14:37,"548 Sunset St, San Francisco, CA 94016" +197489,AA Batteries (4-pack),1,3.84,04/08/19 12:09,"841 Walnut St, Los Angeles, CA 90001" +197490,Lightning Charging Cable,1,14.95,04/30/19 14:35,"72 Ridge St, New York City, NY 10001" +197491,iPhone,1,700,04/25/19 18:19,"497 7th St, San Francisco, CA 94016" +197492,AA Batteries (4-pack),1,3.84,04/25/19 17:18,"517 14th St, Boston, MA 02215" +197493,AA Batteries (4-pack),1,3.84,04/25/19 09:14,"768 Meadow St, New York City, NY 10001" +197494,AAA Batteries (4-pack),1,2.99,04/07/19 06:24,"96 Maple St, New York City, NY 10001" +197495,AA Batteries (4-pack),1,3.84,04/06/19 12:28,"138 2nd St, San Francisco, CA 94016" +197496,AA Batteries (4-pack),3,3.84,04/03/19 20:33,"257 Madison St, New York City, NY 10001" +197497,Bose SoundSport Headphones,1,99.99,04/19/19 14:48,"605 Elm St, Boston, MA 02215" +197498,Google Phone,1,600,04/26/19 22:41,"160 Chestnut St, Dallas, TX 75001" +197498,Wired Headphones,1,11.99,04/26/19 22:41,"160 Chestnut St, Dallas, TX 75001" +197499,ThinkPad Laptop,1,999.99,04/20/19 11:14,"140 Elm St, San Francisco, CA 94016" +197500,Lightning Charging Cable,1,14.95,04/26/19 09:59,"708 8th St, Boston, MA 02215" +197501,Flatscreen TV,1,300,04/20/19 20:12,"962 Hickory St, Portland, OR 97035" +197502,AA Batteries (4-pack),4,3.84,04/05/19 12:15,"500 Lakeview St, Atlanta, GA 30301" +197503,27in FHD Monitor,1,149.99,04/19/19 09:20,"743 Chestnut St, Dallas, TX 75001" +197504,Apple Airpods Headphones,1,150,04/07/19 00:25,"410 1st St, New York City, NY 10001" +197505,Vareebadd Phone,1,400,04/19/19 17:47,"56 Meadow St, Dallas, TX 75001" +197505,USB-C Charging Cable,1,11.95,04/19/19 17:47,"56 Meadow St, Dallas, TX 75001" +197506,Macbook Pro Laptop,1,1700,04/30/19 10:31,"949 Jackson St, Los Angeles, CA 90001" +197507,USB-C Charging Cable,2,11.95,04/11/19 23:17,"11 Ridge St, Dallas, TX 75001" +197508,Wired Headphones,1,11.99,04/10/19 01:03,"488 Main St, Austin, TX 73301" +197509,Lightning Charging Cable,1,14.95,04/11/19 09:36,"509 Highland St, Dallas, TX 75001" +197510,Apple Airpods Headphones,1,150,04/05/19 19:27,"961 Pine St, Seattle, WA 98101" +197511,AA Batteries (4-pack),1,3.84,04/01/19 12:20,"495 12th St, San Francisco, CA 94016" +197512,AAA Batteries (4-pack),2,2.99,04/12/19 22:34,"241 Sunset St, San Francisco, CA 94016" +197513,Wired Headphones,1,11.99,04/26/19 15:04,"638 North St, Boston, MA 02215" +197514,20in Monitor,1,109.99,04/20/19 00:43,"537 Johnson St, Austin, TX 73301" +197515,Lightning Charging Cable,1,14.95,04/07/19 11:18,"331 Washington St, Los Angeles, CA 90001" +197516,Bose SoundSport Headphones,1,99.99,04/29/19 12:12,"956 Cedar St, San Francisco, CA 94016" +197517,27in 4K Gaming Monitor,1,389.99,04/29/19 10:48,"266 Pine St, Boston, MA 02215" +197518,USB-C Charging Cable,1,11.95,04/10/19 18:46,"975 Hickory St, Seattle, WA 98101" +197519,AAA Batteries (4-pack),1,2.99,04/20/19 16:02,"88 Park St, Portland, OR 97035" +197520,Lightning Charging Cable,1,14.95,04/17/19 13:44,"471 River St, Los Angeles, CA 90001" +197521,Flatscreen TV,1,300,04/10/19 10:59,"77 2nd St, Dallas, TX 75001" +197522,Flatscreen TV,1,300,04/24/19 17:58,"243 Elm St, Dallas, TX 75001" +197523,AAA Batteries (4-pack),1,2.99,04/01/19 23:17,"336 Elm St, Atlanta, GA 30301" +197524,Bose SoundSport Headphones,1,99.99,04/19/19 15:03,"266 West St, Portland, ME 04101" +197525,27in 4K Gaming Monitor,1,389.99,04/02/19 11:44,"870 7th St, San Francisco, CA 94016" +197526,AA Batteries (4-pack),1,3.84,04/05/19 20:43,"151 Washington St, Dallas, TX 75001" +197527,AAA Batteries (4-pack),2,2.99,04/16/19 14:23,"77 Jackson St, Dallas, TX 75001" +197528,Apple Airpods Headphones,1,150,04/23/19 06:39,"282 10th St, New York City, NY 10001" +197529,Apple Airpods Headphones,1,150,04/22/19 09:17,"106 Jackson St, Atlanta, GA 30301" +197530,Lightning Charging Cable,1,14.95,04/08/19 15:51,"864 River St, San Francisco, CA 94016" +197531,Lightning Charging Cable,1,14.95,04/20/19 13:23,"143 Wilson St, San Francisco, CA 94016" +197532,AAA Batteries (4-pack),1,2.99,04/30/19 19:33,"547 North St, Boston, MA 02215" +197533,AA Batteries (4-pack),2,3.84,04/17/19 17:47,"584 13th St, Boston, MA 02215" +197534,27in 4K Gaming Monitor,1,389.99,04/07/19 19:46,"103 Lincoln St, Boston, MA 02215" +197535,ThinkPad Laptop,1,999.99,04/03/19 09:22,"119 Lake St, San Francisco, CA 94016" +197536,27in FHD Monitor,1,149.99,04/30/19 15:19,"178 Forest St, San Francisco, CA 94016" +197537,Lightning Charging Cable,2,14.95,04/18/19 21:23,"497 West St, Portland, OR 97035" +197538,AAA Batteries (4-pack),1,2.99,04/28/19 17:44,"944 Hill St, San Francisco, CA 94016" +197539,AAA Batteries (4-pack),1,2.99,04/02/19 22:18,"458 Lakeview St, Boston, MA 02215" +197540,20in Monitor,1,109.99,04/10/19 19:04,"578 Walnut St, San Francisco, CA 94016" +197541,USB-C Charging Cable,1,11.95,04/06/19 20:29,"285 Church St, San Francisco, CA 94016" +197541,Wired Headphones,1,11.99,04/06/19 20:29,"285 Church St, San Francisco, CA 94016" +197542,AAA Batteries (4-pack),1,2.99,04/24/19 22:57,"18 Main St, Seattle, WA 98101" +197543,Wired Headphones,1,11.99,04/12/19 04:56,"359 River St, San Francisco, CA 94016" +197544,AAA Batteries (4-pack),1,2.99,04/12/19 18:14,"617 Lincoln St, Los Angeles, CA 90001" +197545,Flatscreen TV,1,300,04/21/19 22:49,"16 Hill St, Boston, MA 02215" +197546,AA Batteries (4-pack),2,3.84,04/06/19 15:30,"845 West St, San Francisco, CA 94016" +197547,AAA Batteries (4-pack),1,2.99,04/16/19 10:19,"582 North St, Portland, OR 97035" +197548,USB-C Charging Cable,1,11.95,04/25/19 16:37,"196 Ridge St, San Francisco, CA 94016" +197549,Wired Headphones,1,11.99,04/02/19 20:03,"46 Lakeview St, Los Angeles, CA 90001" +197550,Lightning Charging Cable,1,14.95,04/26/19 06:09,"810 North St, Dallas, TX 75001" +197551,Apple Airpods Headphones,1,150,04/06/19 20:19,"4 12th St, Los Angeles, CA 90001" +197552,Flatscreen TV,1,300,04/17/19 23:07,"274 Wilson St, Portland, OR 97035" +197553,Flatscreen TV,1,300,04/24/19 23:53,"958 Elm St, Portland, OR 97035" +197554,Lightning Charging Cable,1,14.95,04/13/19 14:59,"89 Elm St, New York City, NY 10001" +197555,27in FHD Monitor,1,149.99,04/14/19 22:28,"174 Walnut St, New York City, NY 10001" +197556,34in Ultrawide Monitor,1,379.99,04/23/19 10:54,"699 Meadow St, Los Angeles, CA 90001" +197557,27in FHD Monitor,1,149.99,04/27/19 16:39,"592 5th St, Seattle, WA 98101" +197557,Wired Headphones,1,11.99,04/27/19 16:39,"592 5th St, Seattle, WA 98101" +197558,AA Batteries (4-pack),3,3.84,04/07/19 07:31,"970 10th St, Seattle, WA 98101" +197559,AA Batteries (4-pack),1,3.84,04/28/19 15:51,"133 West St, Boston, MA 02215" +197560,AA Batteries (4-pack),1,3.84,04/28/19 18:47,"328 10th St, San Francisco, CA 94016" +197561,27in FHD Monitor,1,149.99,04/11/19 06:09,"250 Walnut St, Los Angeles, CA 90001" +197562,AAA Batteries (4-pack),1,2.99,04/17/19 21:18,"48 4th St, Los Angeles, CA 90001" +197563,ThinkPad Laptop,1,999.99,04/30/19 20:48,"528 4th St, Austin, TX 73301" +197564,AAA Batteries (4-pack),3,2.99,04/08/19 19:34,"428 Johnson St, Portland, OR 97035" +197565,Google Phone,1,600,04/09/19 11:30,"823 Jefferson St, Los Angeles, CA 90001" +197565,Bose SoundSport Headphones,1,99.99,04/09/19 11:30,"823 Jefferson St, Los Angeles, CA 90001" +197566,USB-C Charging Cable,1,11.95,04/09/19 11:32,"953 West St, Portland, OR 97035" +197567,Wired Headphones,1,11.99,04/21/19 20:16,"750 11th St, Dallas, TX 75001" +197568,Bose SoundSport Headphones,1,99.99,04/09/19 23:49,"961 Johnson St, San Francisco, CA 94016" +197569,27in 4K Gaming Monitor,1,389.99,04/15/19 18:00,"516 2nd St, San Francisco, CA 94016" +197569,Wired Headphones,1,11.99,04/15/19 18:00,"516 2nd St, San Francisco, CA 94016" +197570,Macbook Pro Laptop,1,1700,04/10/19 11:52,"13 4th St, New York City, NY 10001" +197571,ThinkPad Laptop,1,999.99,04/07/19 07:34,"71 Cedar St, Boston, MA 02215" +197572,AA Batteries (4-pack),1,3.84,04/04/19 19:17,"278 Lake St, New York City, NY 10001" +197573,Wired Headphones,1,11.99,04/16/19 12:22,"592 River St, Boston, MA 02215" +197574,Bose SoundSport Headphones,1,99.99,04/17/19 13:40,"973 River St, San Francisco, CA 94016" +197575,Apple Airpods Headphones,1,150,04/21/19 02:39,"302 Dogwood St, San Francisco, CA 94016" +197576,USB-C Charging Cable,1,11.95,04/08/19 07:08,"263 13th St, San Francisco, CA 94016" +197577,Apple Airpods Headphones,1,150,04/27/19 12:51,"885 11th St, San Francisco, CA 94016" +197578,Lightning Charging Cable,1,14.95,04/01/19 17:14,"274 4th St, Seattle, WA 98101" +197579,AA Batteries (4-pack),2,3.84,04/30/19 04:36,"296 Cedar St, Austin, TX 73301" +197580,Google Phone,1,600,04/15/19 19:27,"293 South St, New York City, NY 10001" +197580,Bose SoundSport Headphones,1,99.99,04/15/19 19:27,"293 South St, New York City, NY 10001" +197581,Wired Headphones,1,11.99,04/05/19 13:26,"724 Jackson St, Seattle, WA 98101" +197582,AAA Batteries (4-pack),1,2.99,04/06/19 17:57,"527 6th St, Portland, OR 97035" +197583,Macbook Pro Laptop,1,1700,04/07/19 17:30,"164 Highland St, Austin, TX 73301" +197584,27in 4K Gaming Monitor,1,389.99,04/30/19 16:56,"60 Cedar St, San Francisco, CA 94016" +197585,Apple Airpods Headphones,1,150,04/20/19 22:34,"356 Jefferson St, Portland, ME 04101" +197586,Apple Airpods Headphones,1,150,04/26/19 17:32,"846 Jackson St, Boston, MA 02215" +197587,Wired Headphones,1,11.99,04/10/19 10:31,"240 11th St, Los Angeles, CA 90001" +197587,AA Batteries (4-pack),3,3.84,04/10/19 10:31,"240 11th St, Los Angeles, CA 90001" +197588,Lightning Charging Cable,1,14.95,04/30/19 16:06,"846 Chestnut St, Seattle, WA 98101" +197589,AAA Batteries (4-pack),1,2.99,04/15/19 20:30,"756 4th St, Seattle, WA 98101" +197590,USB-C Charging Cable,1,11.95,04/08/19 07:34,"661 River St, San Francisco, CA 94016" +197591,Lightning Charging Cable,1,14.95,04/17/19 08:19,"689 Cedar St, Boston, MA 02215" +197592,iPhone,1,700,04/22/19 15:43,"131 Cedar St, Atlanta, GA 30301" +197593,34in Ultrawide Monitor,1,379.99,04/29/19 18:00,"32 Spruce St, Los Angeles, CA 90001" +197594,Lightning Charging Cable,1,14.95,04/16/19 19:36,"878 Lincoln St, San Francisco, CA 94016" +197595,USB-C Charging Cable,1,11.95,04/30/19 17:47,"912 Dogwood St, Portland, OR 97035" +197596,Bose SoundSport Headphones,1,99.99,04/19/19 19:47,"693 West St, Los Angeles, CA 90001" +197597,AAA Batteries (4-pack),2,2.99,04/25/19 13:33,"927 13th St, Los Angeles, CA 90001" +197598,Apple Airpods Headphones,1,150,04/13/19 10:39,"161 Elm St, San Francisco, CA 94016" +197599,USB-C Charging Cable,1,11.95,04/12/19 12:33,"695 Jefferson St, Portland, ME 04101" +197600,Apple Airpods Headphones,1,150,04/24/19 12:37,"422 2nd St, San Francisco, CA 94016" +197601,Apple Airpods Headphones,1,150,04/11/19 02:08,"418 Highland St, Los Angeles, CA 90001" +197602,AA Batteries (4-pack),1,3.84,04/15/19 23:53,"862 Highland St, Los Angeles, CA 90001" +197603,Wired Headphones,1,11.99,04/14/19 19:36,"825 Washington St, Portland, OR 97035" +197604,27in FHD Monitor,1,149.99,04/15/19 10:37,"361 5th St, Los Angeles, CA 90001" +197604,iPhone,1,700,04/15/19 10:37,"361 5th St, Los Angeles, CA 90001" +197605,Lightning Charging Cable,1,14.95,04/17/19 09:11,"803 Lincoln St, New York City, NY 10001" +197606,AAA Batteries (4-pack),1,2.99,04/28/19 09:44,"902 7th St, Los Angeles, CA 90001" +197607,Apple Airpods Headphones,1,150,04/01/19 10:23,"367 Cherry St, San Francisco, CA 94016" +197608,Macbook Pro Laptop,1,1700,04/01/19 17:18,"468 Pine St, New York City, NY 10001" +197609,ThinkPad Laptop,1,999.99,04/07/19 12:02,"292 Walnut St, Los Angeles, CA 90001" +197610,Wired Headphones,1,11.99,04/10/19 14:49,"936 South St, Los Angeles, CA 90001" +197611,AAA Batteries (4-pack),1,2.99,04/21/19 18:05,"110 South St, Atlanta, GA 30301" +197612,Lightning Charging Cable,1,14.95,04/24/19 04:49,"423 Jackson St, Austin, TX 73301" +197613,USB-C Charging Cable,1,11.95,04/12/19 15:30,"596 West St, Austin, TX 73301" +197614,USB-C Charging Cable,1,11.95,04/21/19 12:08,"860 Wilson St, Dallas, TX 75001" +197615,AA Batteries (4-pack),1,3.84,04/06/19 09:53,"556 4th St, Austin, TX 73301" +197616,Wired Headphones,1,11.99,04/05/19 16:51,"671 Chestnut St, Austin, TX 73301" +197617,Lightning Charging Cable,1,14.95,04/07/19 22:35,"237 13th St, San Francisco, CA 94016" +197618,Macbook Pro Laptop,1,1700,04/22/19 14:00,"490 Meadow St, Los Angeles, CA 90001" +197619,AAA Batteries (4-pack),3,2.99,04/15/19 22:46,"984 Center St, Los Angeles, CA 90001" +197620,USB-C Charging Cable,1,11.95,04/18/19 10:34,"189 5th St, Atlanta, GA 30301" +197621,Flatscreen TV,1,300,04/08/19 18:37,"418 Cherry St, Boston, MA 02215" +197622,AA Batteries (4-pack),1,3.84,04/23/19 00:09,"900 River St, San Francisco, CA 94016" +197623,Lightning Charging Cable,1,14.95,04/28/19 17:28,"371 South St, Boston, MA 02215" +197624,AAA Batteries (4-pack),1,2.99,04/22/19 20:05,"226 Wilson St, Los Angeles, CA 90001" +197625,AA Batteries (4-pack),1,3.84,04/23/19 09:18,"868 Highland St, Portland, OR 97035" +197626,27in FHD Monitor,1,149.99,04/19/19 11:10,"490 Lake St, Los Angeles, CA 90001" +197627,iPhone,1,700,04/29/19 14:44,"668 5th St, Boston, MA 02215" +197627,Lightning Charging Cable,1,14.95,04/29/19 14:44,"668 5th St, Boston, MA 02215" +197628,iPhone,1,700,04/09/19 21:04,"498 Adams St, San Francisco, CA 94016" +197628,Wired Headphones,1,11.99,04/09/19 21:04,"498 Adams St, San Francisco, CA 94016" +197629,Macbook Pro Laptop,1,1700,04/23/19 21:24,"487 Church St, San Francisco, CA 94016" +197630,Lightning Charging Cable,1,14.95,04/02/19 21:15,"731 South St, New York City, NY 10001" +197631,USB-C Charging Cable,1,11.95,04/30/19 09:13,"625 11th St, New York City, NY 10001" +197632,Apple Airpods Headphones,1,150,04/13/19 12:12,"590 Adams St, Atlanta, GA 30301" +197633,Lightning Charging Cable,1,14.95,04/17/19 12:18,"591 River St, Atlanta, GA 30301" +197634,Wired Headphones,1,11.99,04/18/19 17:49,"586 Highland St, Seattle, WA 98101" +197635,Apple Airpods Headphones,1,150,04/28/19 00:01,"974 Sunset St, New York City, NY 10001" +197636,USB-C Charging Cable,1,11.95,04/03/19 21:34,"281 Adams St, Atlanta, GA 30301" +197637,Lightning Charging Cable,1,14.95,04/04/19 08:45,"903 14th St, San Francisco, CA 94016" +197638,AA Batteries (4-pack),1,3.84,04/15/19 07:57,"948 Highland St, Austin, TX 73301" +197639,AA Batteries (4-pack),1,3.84,04/21/19 10:46,"36 5th St, New York City, NY 10001" +197640,USB-C Charging Cable,1,11.95,04/15/19 20:43,"106 Chestnut St, Seattle, WA 98101" +197641,Lightning Charging Cable,1,14.95,04/18/19 18:22,"27 Jefferson St, Atlanta, GA 30301" +197642,Wired Headphones,1,11.99,04/03/19 11:37,"13 Jefferson St, Dallas, TX 75001" +197643,34in Ultrawide Monitor,1,379.99,04/15/19 05:33,"21 Ridge St, Austin, TX 73301" +197644,Lightning Charging Cable,1,14.95,04/03/19 14:09,"481 Pine St, San Francisco, CA 94016" +197645,Lightning Charging Cable,1,14.95,04/13/19 09:34,"475 14th St, New York City, NY 10001" +197646,Google Phone,1,600,04/18/19 11:26,"32 Ridge St, Los Angeles, CA 90001" +197646,Wired Headphones,1,11.99,04/18/19 11:26,"32 Ridge St, Los Angeles, CA 90001" +197647,Lightning Charging Cable,1,14.95,04/09/19 13:57,"773 1st St, Portland, OR 97035" +197648,27in 4K Gaming Monitor,1,389.99,04/20/19 16:57,"111 Park St, Boston, MA 02215" +197649,USB-C Charging Cable,1,11.95,04/29/19 06:29,"621 West St, Portland, ME 04101" +197650,Lightning Charging Cable,1,14.95,04/07/19 16:30,"182 Washington St, San Francisco, CA 94016" +197651,Wired Headphones,1,11.99,04/01/19 22:59,"260 Madison St, Los Angeles, CA 90001" +197652,Bose SoundSport Headphones,1,99.99,04/26/19 22:47,"403 Johnson St, Dallas, TX 75001" +197653,iPhone,1,700,04/07/19 12:57,"950 Lake St, San Francisco, CA 94016" +197653,Apple Airpods Headphones,1,150,04/07/19 12:57,"950 Lake St, San Francisco, CA 94016" +197653,Wired Headphones,1,11.99,04/07/19 12:57,"950 Lake St, San Francisco, CA 94016" +197654,AA Batteries (4-pack),2,3.84,04/19/19 15:32,"994 12th St, San Francisco, CA 94016" +197655,AA Batteries (4-pack),1,3.84,04/28/19 16:39,"80 8th St, Los Angeles, CA 90001" +197656,USB-C Charging Cable,1,11.95,04/01/19 15:08,"728 9th St, New York City, NY 10001" +197657,Lightning Charging Cable,1,14.95,04/05/19 17:43,"952 Church St, Boston, MA 02215" +197658,Wired Headphones,1,11.99,04/20/19 18:20,"213 12th St, Los Angeles, CA 90001" +197659,Macbook Pro Laptop,1,1700,04/08/19 14:48,"494 Main St, Atlanta, GA 30301" +197660,Apple Airpods Headphones,1,150,04/09/19 16:36,"429 Cherry St, Dallas, TX 75001" +197661,Macbook Pro Laptop,1,1700,04/13/19 21:25,"179 1st St, San Francisco, CA 94016" +197662,34in Ultrawide Monitor,1,379.99,04/26/19 10:20,"971 Highland St, Los Angeles, CA 90001" +197663,Flatscreen TV,1,300,04/10/19 11:36,"588 West St, Boston, MA 02215" +197664,Lightning Charging Cable,1,14.95,04/28/19 10:31,"499 2nd St, Boston, MA 02215" +197665,Wired Headphones,1,11.99,04/23/19 18:18,"919 Chestnut St, San Francisco, CA 94016" +197666,Lightning Charging Cable,1,14.95,04/22/19 00:42,"400 Wilson St, Los Angeles, CA 90001" +197667,AAA Batteries (4-pack),3,2.99,04/16/19 21:33,"555 Jackson St, Dallas, TX 75001" +197668,Flatscreen TV,1,300,04/17/19 08:53,"457 Pine St, Los Angeles, CA 90001" +197669,AA Batteries (4-pack),2,3.84,04/08/19 20:09,"415 6th St, Los Angeles, CA 90001" +197670,AAA Batteries (4-pack),1,2.99,04/17/19 13:35,"942 River St, Portland, OR 97035" +197671,Macbook Pro Laptop,1,1700,04/21/19 09:46,"516 Maple St, Los Angeles, CA 90001" +197672,Flatscreen TV,1,300,04/24/19 10:54,"949 Meadow St, Dallas, TX 75001" +197673,Apple Airpods Headphones,1,150,04/28/19 12:40,"403 Sunset St, Los Angeles, CA 90001" +197674,AA Batteries (4-pack),1,3.84,04/30/19 16:50,"934 Cedar St, Dallas, TX 75001" +197674,Google Phone,1,600,04/30/19 16:50,"934 Cedar St, Dallas, TX 75001" +197675,AAA Batteries (4-pack),3,2.99,04/13/19 23:06,"202 Willow St, New York City, NY 10001" +197676,Bose SoundSport Headphones,1,99.99,04/29/19 13:56,"912 Dogwood St, Los Angeles, CA 90001" +197677,USB-C Charging Cable,1,11.95,04/02/19 13:06,"270 4th St, San Francisco, CA 94016" +197678,USB-C Charging Cable,1,11.95,04/24/19 11:57,"645 West St, Dallas, TX 75001" +197679,Lightning Charging Cable,1,14.95,04/09/19 14:21,"298 Main St, Dallas, TX 75001" +197680,AA Batteries (4-pack),5,3.84,04/29/19 09:00,"751 North St, San Francisco, CA 94016" +197681,Wired Headphones,1,11.99,04/22/19 08:33,"626 Center St, Dallas, TX 75001" +197682,27in FHD Monitor,1,149.99,04/24/19 18:31,"315 Dogwood St, Seattle, WA 98101" +197683,27in FHD Monitor,1,149.99,04/18/19 17:28,"758 13th St, Portland, OR 97035" +197684,Wired Headphones,1,11.99,04/06/19 02:14,"812 Sunset St, San Francisco, CA 94016" +197685,Flatscreen TV,1,300,04/06/19 16:18,"727 13th St, Atlanta, GA 30301" +197686,Google Phone,1,600,04/23/19 15:19,"320 Pine St, Atlanta, GA 30301" +197687,Lightning Charging Cable,1,14.95,04/10/19 21:57,"72 Meadow St, Boston, MA 02215" +197688,USB-C Charging Cable,1,11.95,04/07/19 13:08,"105 Cherry St, Atlanta, GA 30301" +197689,AAA Batteries (4-pack),4,2.99,04/28/19 14:13,"913 Hickory St, Boston, MA 02215" +197690,USB-C Charging Cable,1,11.95,04/23/19 12:51,"389 South St, Atlanta, GA 30301" +197691,Wired Headphones,1,11.99,04/21/19 15:17,"474 Main St, Seattle, WA 98101" +197692,34in Ultrawide Monitor,1,379.99,04/13/19 22:16,"954 North St, New York City, NY 10001" +197693,Lightning Charging Cable,1,14.95,04/29/19 16:58,"408 4th St, New York City, NY 10001" +197694,AAA Batteries (4-pack),1,2.99,04/24/19 19:08,"174 Ridge St, San Francisco, CA 94016" +197695,AAA Batteries (4-pack),3,2.99,04/26/19 13:21,"252 Lincoln St, New York City, NY 10001" +197696,AA Batteries (4-pack),1,3.84,04/19/19 21:35,"596 Willow St, New York City, NY 10001" +197697,Apple Airpods Headphones,1,150,04/29/19 10:05,"606 River St, Boston, MA 02215" +197698,USB-C Charging Cable,1,11.95,04/05/19 02:11,"655 Pine St, Austin, TX 73301" +197699,20in Monitor,1,109.99,04/21/19 09:33,"594 Maple St, Los Angeles, CA 90001" +197700,27in FHD Monitor,1,149.99,04/26/19 17:33,"430 Madison St, New York City, NY 10001" +197701,20in Monitor,1,109.99,04/25/19 20:13,"777 Forest St, Atlanta, GA 30301" +197702,Apple Airpods Headphones,1,150,04/23/19 08:27,"95 10th St, Los Angeles, CA 90001" +197703,ThinkPad Laptop,1,999.99,04/23/19 15:27,"671 11th St, San Francisco, CA 94016" +197704,27in 4K Gaming Monitor,1,389.99,04/06/19 14:42,"587 Jefferson St, Seattle, WA 98101" +197705,Bose SoundSport Headphones,1,99.99,04/09/19 13:36,"367 Highland St, San Francisco, CA 94016" +197706,27in 4K Gaming Monitor,1,389.99,04/29/19 12:22,"957 10th St, San Francisco, CA 94016" +197707,ThinkPad Laptop,1,999.99,04/16/19 21:55,"288 Jefferson St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +197708,USB-C Charging Cable,1,11.95,04/05/19 12:45,"102 Center St, San Francisco, CA 94016" +197709,Wired Headphones,1,11.99,04/09/19 20:53,"83 North St, San Francisco, CA 94016" +197710,AA Batteries (4-pack),1,3.84,04/14/19 13:42,"865 14th St, Austin, TX 73301" +197711,34in Ultrawide Monitor,1,379.99,04/04/19 12:35,"894 10th St, Los Angeles, CA 90001" +197712,34in Ultrawide Monitor,1,379.99,04/02/19 09:05,"290 Cedar St, Boston, MA 02215" +197713,Apple Airpods Headphones,1,150,04/27/19 13:51,"679 5th St, Boston, MA 02215" +197714,ThinkPad Laptop,1,999.99,04/15/19 18:45,"436 Highland St, New York City, NY 10001" +197715,ThinkPad Laptop,1,999.99,04/08/19 21:44,"330 7th St, New York City, NY 10001" +197716,34in Ultrawide Monitor,1,379.99,04/30/19 14:30,"201 Pine St, Portland, ME 04101" +197717,Wired Headphones,1,11.99,04/02/19 17:37,"197 Sunset St, San Francisco, CA 94016" +197718,AA Batteries (4-pack),4,3.84,04/02/19 02:43,"70 9th St, Seattle, WA 98101" +197719,AAA Batteries (4-pack),1,2.99,04/22/19 15:16,"7 14th St, Los Angeles, CA 90001" +197720,Lightning Charging Cable,2,14.95,04/06/19 12:01,"167 6th St, San Francisco, CA 94016" +197721,Lightning Charging Cable,1,14.95,04/08/19 12:08,"284 Church St, San Francisco, CA 94016" +197722,20in Monitor,1,109.99,04/17/19 17:55,"636 8th St, Seattle, WA 98101" +197723,AA Batteries (4-pack),1,3.84,04/11/19 15:39,"138 Elm St, San Francisco, CA 94016" +197724,Apple Airpods Headphones,1,150,04/29/19 09:21,"810 Chestnut St, San Francisco, CA 94016" +197725,AA Batteries (4-pack),1,3.84,04/04/19 09:08,"473 Jefferson St, Portland, OR 97035" +197726,Lightning Charging Cable,1,14.95,04/12/19 21:28,"147 Lakeview St, San Francisco, CA 94016" +197727,Wired Headphones,1,11.99,04/05/19 15:24,"187 Willow St, Seattle, WA 98101" +197728,Wired Headphones,2,11.99,04/04/19 20:55,"540 12th St, Los Angeles, CA 90001" +197729,Lightning Charging Cable,1,14.95,04/27/19 20:46,"114 Lakeview St, Boston, MA 02215" +197730,Google Phone,1,600,04/09/19 17:35,"616 10th St, San Francisco, CA 94016" +197731,Wired Headphones,1,11.99,04/16/19 09:01,"664 9th St, Atlanta, GA 30301" +197732,Apple Airpods Headphones,1,150,04/02/19 18:08,"196 4th St, San Francisco, CA 94016" +197733,Apple Airpods Headphones,1,150,04/13/19 21:23,"418 5th St, San Francisco, CA 94016" +197734,AAA Batteries (4-pack),2,2.99,04/12/19 10:54,"309 Wilson St, Seattle, WA 98101" +197735,Apple Airpods Headphones,1,150,04/27/19 21:02,"3 Pine St, San Francisco, CA 94016" +197736,AA Batteries (4-pack),2,3.84,04/23/19 21:47,"762 Main St, New York City, NY 10001" +197737,Apple Airpods Headphones,1,150,04/02/19 21:29,"770 5th St, Los Angeles, CA 90001" +197738,34in Ultrawide Monitor,1,379.99,04/05/19 14:29,"425 Willow St, San Francisco, CA 94016" +197739,27in 4K Gaming Monitor,1,389.99,04/14/19 08:04,"742 Lincoln St, San Francisco, CA 94016" +197740,AAA Batteries (4-pack),1,2.99,04/16/19 20:26,"259 Jackson St, New York City, NY 10001" +197741,AA Batteries (4-pack),2,3.84,04/11/19 09:45,"804 11th St, Austin, TX 73301" +197742,27in 4K Gaming Monitor,1,389.99,04/27/19 22:17,"700 Meadow St, Boston, MA 02215" +197743,USB-C Charging Cable,1,11.95,04/14/19 11:10,"62 Hill St, New York City, NY 10001" +197744,Wired Headphones,1,11.99,04/24/19 20:31,"237 4th St, Seattle, WA 98101" +197745,iPhone,1,700,04/01/19 19:39,"859 Maple St, Los Angeles, CA 90001" +197746,Lightning Charging Cable,1,14.95,04/24/19 18:35,"962 5th St, San Francisco, CA 94016" +197747,Apple Airpods Headphones,1,150,04/22/19 15:55,"141 South St, San Francisco, CA 94016" +197748,USB-C Charging Cable,1,11.95,04/24/19 10:18,"186 Lakeview St, San Francisco, CA 94016" +197749,USB-C Charging Cable,1,11.95,04/18/19 19:58,"928 Madison St, San Francisco, CA 94016" +197750,Lightning Charging Cable,1,14.95,04/23/19 10:18,"14 Maple St, New York City, NY 10001" +197751,USB-C Charging Cable,1,11.95,04/12/19 18:38,"818 West St, Los Angeles, CA 90001" +197752,AAA Batteries (4-pack),1,2.99,05/01/19 02:14,"792 Highland St, Austin, TX 73301" +197753,Apple Airpods Headphones,1,150,04/11/19 12:53,"765 5th St, San Francisco, CA 94016" +197754,Macbook Pro Laptop,1,1700,04/02/19 20:10,"236 Willow St, New York City, NY 10001" +197755,Bose SoundSport Headphones,1,99.99,04/02/19 11:27,"743 Spruce St, New York City, NY 10001" +197756,20in Monitor,1,109.99,04/01/19 22:50,"749 Hill St, Seattle, WA 98101" +197757,AAA Batteries (4-pack),1,2.99,04/02/19 10:48,"569 Walnut St, San Francisco, CA 94016" +197758,Lightning Charging Cable,1,14.95,04/28/19 15:03,"442 4th St, Portland, OR 97035" +197759,USB-C Charging Cable,1,11.95,04/19/19 05:16,"406 North St, Los Angeles, CA 90001" +197760,Lightning Charging Cable,1,14.95,04/11/19 22:55,"44 Cherry St, San Francisco, CA 94016" +197761,Apple Airpods Headphones,1,150,04/26/19 19:38,"469 Sunset St, San Francisco, CA 94016" +197762,Apple Airpods Headphones,1,150,04/01/19 21:46,"943 Sunset St, San Francisco, CA 94016" +197763,iPhone,1,700,04/18/19 10:47,"701 Main St, Dallas, TX 75001" +197764,Lightning Charging Cable,1,14.95,04/15/19 06:30,"829 Center St, San Francisco, CA 94016" +197765,USB-C Charging Cable,1,11.95,04/14/19 05:15,"981 Highland St, Los Angeles, CA 90001" +,,,,, +197766,AA Batteries (4-pack),1,3.84,04/23/19 22:33,"213 Cherry St, Portland, OR 97035" +197767,Apple Airpods Headphones,1,150,04/15/19 19:28,"343 Highland St, San Francisco, CA 94016" +197768,Lightning Charging Cable,1,14.95,04/17/19 10:38,"731 1st St, Portland, ME 04101" +197769,Apple Airpods Headphones,1,150,04/16/19 06:38,"299 Johnson St, Dallas, TX 75001" +197770,Apple Airpods Headphones,1,150,04/21/19 13:13,"950 7th St, Portland, OR 97035" +197771,USB-C Charging Cable,1,11.95,04/05/19 07:21,"153 5th St, Austin, TX 73301" +197772,AAA Batteries (4-pack),1,2.99,04/01/19 21:40,"448 South St, San Francisco, CA 94016" +197773,Bose SoundSport Headphones,1,99.99,04/08/19 01:55,"900 Pine St, Seattle, WA 98101" +197774,Bose SoundSport Headphones,1,99.99,04/03/19 17:46,"596 Cedar St, San Francisco, CA 94016" +197775,Lightning Charging Cable,1,14.95,04/04/19 06:26,"998 Washington St, Atlanta, GA 30301" +197776,ThinkPad Laptop,1,999.99,04/14/19 09:32,"573 Ridge St, Seattle, WA 98101" +197777,27in 4K Gaming Monitor,1,389.99,04/19/19 18:36,"257 8th St, New York City, NY 10001" +197778,AA Batteries (4-pack),1,3.84,04/08/19 08:59,"720 14th St, Los Angeles, CA 90001" +197779,34in Ultrawide Monitor,1,379.99,04/13/19 12:41,"428 Spruce St, New York City, NY 10001" +197780,USB-C Charging Cable,1,11.95,04/03/19 22:42,"676 Lake St, Atlanta, GA 30301" +197781,AAA Batteries (4-pack),1,2.99,04/01/19 21:36,"920 Church St, Portland, OR 97035" +197782,Lightning Charging Cable,1,14.95,04/25/19 08:28,"384 River St, Boston, MA 02215" +197783,20in Monitor,1,109.99,04/20/19 09:38,"446 Center St, Los Angeles, CA 90001" +197784,ThinkPad Laptop,1,999.99,04/09/19 11:27,"668 12th St, Seattle, WA 98101" +197785,Bose SoundSport Headphones,1,99.99,04/18/19 18:03,"16 Church St, San Francisco, CA 94016" +197786,Lightning Charging Cable,1,14.95,04/04/19 15:30,"353 Cedar St, Los Angeles, CA 90001" +197787,Wired Headphones,1,11.99,04/12/19 12:29,"13 Madison St, San Francisco, CA 94016" +197788,AA Batteries (4-pack),1,3.84,04/25/19 13:34,"285 South St, Los Angeles, CA 90001" +197789,27in FHD Monitor,2,149.99,04/15/19 12:52,"418 Elm St, Los Angeles, CA 90001" +197790,Lightning Charging Cable,2,14.95,04/15/19 11:15,"711 Elm St, San Francisco, CA 94016" +197791,AAA Batteries (4-pack),1,2.99,04/05/19 10:40,"243 4th St, Atlanta, GA 30301" +197792,USB-C Charging Cable,1,11.95,04/20/19 12:39,"296 Highland St, Los Angeles, CA 90001" +197793,Google Phone,1,600,04/09/19 15:24,"192 Highland St, New York City, NY 10001" +197794,AA Batteries (4-pack),1,3.84,04/10/19 18:45,"946 Elm St, Atlanta, GA 30301" +197795,Apple Airpods Headphones,1,150,04/07/19 09:37,"652 Sunset St, San Francisco, CA 94016" +197796,Lightning Charging Cable,1,14.95,04/03/19 22:38,"850 Hill St, New York City, NY 10001" +197797,Apple Airpods Headphones,1,150,04/23/19 14:18,"933 Johnson St, Boston, MA 02215" +197798,Macbook Pro Laptop,1,1700,04/26/19 13:14,"464 Wilson St, New York City, NY 10001" +197799,AA Batteries (4-pack),1,3.84,04/23/19 08:40,"997 Hill St, New York City, NY 10001" +197800,AA Batteries (4-pack),1,3.84,04/13/19 14:12,"651 Hill St, San Francisco, CA 94016" +197801,AAA Batteries (4-pack),1,2.99,04/02/19 09:54,"199 Pine St, Boston, MA 02215" +197802,Apple Airpods Headphones,1,150,04/29/19 18:14,"69 7th St, Dallas, TX 75001" +197803,Apple Airpods Headphones,1,150,04/30/19 00:50,"958 West St, San Francisco, CA 94016" +197804,Lightning Charging Cable,1,14.95,04/29/19 13:50,"193 Center St, Atlanta, GA 30301" +197805,Wired Headphones,1,11.99,04/17/19 10:23,"472 Hill St, Seattle, WA 98101" +197806,Flatscreen TV,1,300,04/27/19 19:02,"538 Church St, San Francisco, CA 94016" +197807,Wired Headphones,1,11.99,04/26/19 10:13,"842 Dogwood St, New York City, NY 10001" +197808,27in FHD Monitor,1,149.99,04/03/19 17:40,"767 Hickory St, Los Angeles, CA 90001" +197809,USB-C Charging Cable,2,11.95,04/25/19 20:48,"965 Washington St, Boston, MA 02215" +197810,AA Batteries (4-pack),1,3.84,04/22/19 10:44,"23 1st St, Portland, OR 97035" +197811,AA Batteries (4-pack),1,3.84,04/21/19 22:02,"48 Church St, Boston, MA 02215" +197812,iPhone,1,700,04/03/19 20:39,"602 Chestnut St, Dallas, TX 75001" +197813,Bose SoundSport Headphones,1,99.99,04/02/19 15:49,"668 Cherry St, Boston, MA 02215" +197814,Lightning Charging Cable,1,14.95,04/09/19 13:48,"519 14th St, New York City, NY 10001" +197815,AAA Batteries (4-pack),1,2.99,04/30/19 13:36,"359 13th St, San Francisco, CA 94016" +197816,Wired Headphones,1,11.99,04/16/19 15:46,"417 Chestnut St, Boston, MA 02215" +197817,USB-C Charging Cable,1,11.95,04/19/19 10:37,"739 4th St, Los Angeles, CA 90001" +197818,Vareebadd Phone,1,400,04/14/19 19:31,"140 North St, Austin, TX 73301" +197819,iPhone,1,700,04/13/19 11:56,"646 Park St, Atlanta, GA 30301" +197819,Bose SoundSport Headphones,1,99.99,04/13/19 11:56,"646 Park St, Atlanta, GA 30301" +197820,AAA Batteries (4-pack),1,2.99,04/16/19 09:19,"544 River St, San Francisco, CA 94016" +197821,Lightning Charging Cable,1,14.95,04/07/19 10:19,"42 Center St, Austin, TX 73301" +197822,USB-C Charging Cable,1,11.95,04/04/19 12:23,"537 7th St, San Francisco, CA 94016" +197823,Wired Headphones,1,11.99,04/01/19 18:14,"483 Cherry St, Portland, OR 97035" +197824,Bose SoundSport Headphones,1,99.99,04/26/19 13:01,"452 Pine St, San Francisco, CA 94016" +197825,USB-C Charging Cable,1,11.95,04/06/19 19:05,"545 Cedar St, Atlanta, GA 30301" +197826,Wired Headphones,1,11.99,04/20/19 05:51,"394 Lake St, Boston, MA 02215" +197827,Wired Headphones,1,11.99,04/02/19 22:40,"283 Wilson St, Seattle, WA 98101" +197828,34in Ultrawide Monitor,1,379.99,04/17/19 13:08,"335 Church St, Los Angeles, CA 90001" +197829,Bose SoundSport Headphones,1,99.99,04/10/19 11:30,"592 Lakeview St, San Francisco, CA 94016" +197830,USB-C Charging Cable,1,11.95,04/27/19 10:31,"238 Jackson St, Seattle, WA 98101" +197831,ThinkPad Laptop,1,999.99,04/20/19 18:40,"633 Lincoln St, New York City, NY 10001" +197832,AA Batteries (4-pack),1,3.84,04/09/19 11:41,"829 Adams St, San Francisco, CA 94016" +197833,Bose SoundSport Headphones,1,99.99,04/04/19 13:55,"139 Walnut St, Atlanta, GA 30301" +197834,Macbook Pro Laptop,1,1700,04/09/19 16:09,"901 13th St, Atlanta, GA 30301" +197835,AAA Batteries (4-pack),1,2.99,04/04/19 21:34,"533 8th St, Los Angeles, CA 90001" +197836,27in 4K Gaming Monitor,1,389.99,04/16/19 17:39,"467 Meadow St, San Francisco, CA 94016" +197837,Macbook Pro Laptop,1,1700,04/10/19 21:33,"648 9th St, San Francisco, CA 94016" +197838,Wired Headphones,1,11.99,04/16/19 08:49,"162 South St, Portland, OR 97035" +197839,USB-C Charging Cable,1,11.95,04/05/19 18:16,"41 Sunset St, Boston, MA 02215" +197840,Macbook Pro Laptop,1,1700,04/07/19 13:52,"990 Pine St, Dallas, TX 75001" +197841,Wired Headphones,1,11.99,04/30/19 20:29,"601 11th St, Portland, OR 97035" +197842,27in 4K Gaming Monitor,1,389.99,04/18/19 15:56,"685 Maple St, Los Angeles, CA 90001" +197842,Bose SoundSport Headphones,1,99.99,04/18/19 15:56,"685 Maple St, Los Angeles, CA 90001" +197843,Apple Airpods Headphones,1,150,04/17/19 21:51,"949 Hickory St, Los Angeles, CA 90001" +197844,Wired Headphones,1,11.99,04/12/19 19:45,"236 Forest St, Los Angeles, CA 90001" +197845,Lightning Charging Cable,1,14.95,04/09/19 14:12,"823 6th St, New York City, NY 10001" +197846,AA Batteries (4-pack),1,3.84,04/26/19 16:01,"254 14th St, Boston, MA 02215" +197847,Lightning Charging Cable,1,14.95,04/13/19 21:00,"395 5th St, Dallas, TX 75001" +197848,Apple Airpods Headphones,1,150,04/08/19 13:42,"406 Lakeview St, Atlanta, GA 30301" +197849,AA Batteries (4-pack),1,3.84,04/04/19 21:07,"892 Cedar St, San Francisco, CA 94016" +197850,Bose SoundSport Headphones,1,99.99,04/17/19 16:52,"340 Johnson St, Portland, ME 04101" +197851,USB-C Charging Cable,1,11.95,04/27/19 21:10,"32 13th St, Portland, ME 04101" +197852,27in 4K Gaming Monitor,1,389.99,04/18/19 12:56,"566 Elm St, Los Angeles, CA 90001" +197853,Flatscreen TV,1,300,04/26/19 12:14,"66 Jefferson St, San Francisco, CA 94016" +197854,AA Batteries (4-pack),1,3.84,04/16/19 12:56,"410 Walnut St, San Francisco, CA 94016" +197855,Lightning Charging Cable,1,14.95,04/20/19 21:21,"30 Cherry St, New York City, NY 10001" +197856,Apple Airpods Headphones,1,150,04/01/19 21:32,"670 13th St, San Francisco, CA 94016" +197857,AAA Batteries (4-pack),2,2.99,04/06/19 22:39,"406 Jefferson St, San Francisco, CA 94016" +197858,Google Phone,1,600,04/01/19 21:33,"268 Wilson St, Los Angeles, CA 90001" +197859,AAA Batteries (4-pack),1,2.99,04/16/19 23:20,"888 Highland St, Austin, TX 73301" +197860,USB-C Charging Cable,1,11.95,04/07/19 18:48,"831 West St, Dallas, TX 75001" +197861,Lightning Charging Cable,1,14.95,04/30/19 19:49,"826 Highland St, San Francisco, CA 94016" +197862,27in FHD Monitor,1,149.99,04/19/19 23:55,"406 Church St, Seattle, WA 98101" +197863,iPhone,1,700,04/17/19 22:18,"483 Johnson St, San Francisco, CA 94016" +197864,Apple Airpods Headphones,1,150,04/11/19 11:54,"706 Elm St, San Francisco, CA 94016" +197865,Bose SoundSport Headphones,1,99.99,04/07/19 17:44,"587 Meadow St, Dallas, TX 75001" +197866,AAA Batteries (4-pack),1,2.99,04/04/19 20:13,"777 Maple St, New York City, NY 10001" +197867,Wired Headphones,1,11.99,04/29/19 20:17,"415 11th St, New York City, NY 10001" +197867,iPhone,1,700,04/29/19 20:17,"415 11th St, New York City, NY 10001" +197868,Apple Airpods Headphones,1,150,04/22/19 11:21,"433 Wilson St, San Francisco, CA 94016" +197869,AAA Batteries (4-pack),1,2.99,04/26/19 13:06,"433 Wilson St, Boston, MA 02215" +197870,AA Batteries (4-pack),4,3.84,04/08/19 00:49,"121 10th St, Boston, MA 02215" +197871,Bose SoundSport Headphones,1,99.99,04/12/19 14:00,"573 Adams St, San Francisco, CA 94016" +197872,Bose SoundSport Headphones,1,99.99,04/07/19 12:53,"691 5th St, Portland, OR 97035" +197873,USB-C Charging Cable,1,11.95,04/21/19 12:38,"537 Jackson St, Boston, MA 02215" +197874,Wired Headphones,1,11.99,04/17/19 08:15,"21 Jackson St, New York City, NY 10001" +197875,AAA Batteries (4-pack),1,2.99,04/28/19 13:15,"582 8th St, San Francisco, CA 94016" +197876,Wired Headphones,1,11.99,04/16/19 21:43,"778 West St, New York City, NY 10001" +197877,AA Batteries (4-pack),1,3.84,04/02/19 15:18,"467 Sunset St, Los Angeles, CA 90001" +197878,Lightning Charging Cable,1,14.95,04/18/19 15:44,"271 Dogwood St, Los Angeles, CA 90001" +197879,ThinkPad Laptop,1,999.99,04/03/19 11:31,"438 Center St, San Francisco, CA 94016" +197880,27in FHD Monitor,1,149.99,04/01/19 20:47,"11 Highland St, Dallas, TX 75001" +197881,iPhone,1,700,04/25/19 14:11,"333 Lincoln St, Portland, OR 97035" +197882,Apple Airpods Headphones,1,150,04/20/19 21:12,"506 Main St, Los Angeles, CA 90001" +197883,Wired Headphones,1,11.99,04/25/19 18:01,"982 Ridge St, San Francisco, CA 94016" +197884,Apple Airpods Headphones,1,150,04/18/19 11:57,"540 8th St, Austin, TX 73301" +197885,27in FHD Monitor,1,149.99,04/22/19 13:52,"325 Johnson St, Los Angeles, CA 90001" +197886,iPhone,1,700,04/14/19 07:55,"714 8th St, New York City, NY 10001" +197887,Wired Headphones,1,11.99,04/05/19 12:29,"232 Lake St, Los Angeles, CA 90001" +197888,AA Batteries (4-pack),2,3.84,04/12/19 09:14,"963 West St, Atlanta, GA 30301" +197889,34in Ultrawide Monitor,1,379.99,04/01/19 10:09,"432 9th St, Atlanta, GA 30301" +197890,Apple Airpods Headphones,1,150,04/04/19 01:30,"587 Church St, San Francisco, CA 94016" +197891,USB-C Charging Cable,1,11.95,04/02/19 22:47,"299 West St, Atlanta, GA 30301" +197892,AA Batteries (4-pack),1,3.84,04/06/19 23:14,"959 Cherry St, New York City, NY 10001" +197893,Apple Airpods Headphones,1,150,04/10/19 14:45,"218 Adams St, Dallas, TX 75001" +197894,Wired Headphones,1,11.99,04/20/19 22:20,"750 6th St, Portland, ME 04101" +197895,USB-C Charging Cable,2,11.95,04/27/19 12:01,"396 Cedar St, Dallas, TX 75001" +197895,AA Batteries (4-pack),1,3.84,04/27/19 12:01,"396 Cedar St, Dallas, TX 75001" +197896,AAA Batteries (4-pack),1,2.99,04/17/19 01:59,"968 Highland St, Dallas, TX 75001" +197897,Lightning Charging Cable,1,14.95,04/02/19 09:02,"306 Walnut St, New York City, NY 10001" +197898,USB-C Charging Cable,1,11.95,04/13/19 11:21,"566 Forest St, San Francisco, CA 94016" +197899,Lightning Charging Cable,1,14.95,04/27/19 19:50,"821 Highland St, Austin, TX 73301" +197900,Lightning Charging Cable,1,14.95,04/24/19 19:15,"930 Lincoln St, Portland, OR 97035" +197901,Macbook Pro Laptop,1,1700,04/22/19 09:43,"183 Ridge St, Austin, TX 73301" +197902,AAA Batteries (4-pack),1,2.99,04/02/19 20:57,"347 Washington St, San Francisco, CA 94016" +197903,Apple Airpods Headphones,1,150,04/07/19 06:52,"207 Washington St, Boston, MA 02215" +197904,USB-C Charging Cable,1,11.95,04/03/19 10:57,"182 Meadow St, San Francisco, CA 94016" +197905,AA Batteries (4-pack),1,3.84,04/19/19 19:02,"314 Dogwood St, San Francisco, CA 94016" +197906,AAA Batteries (4-pack),2,2.99,04/14/19 20:52,"632 Maple St, Boston, MA 02215" +197907,USB-C Charging Cable,1,11.95,04/17/19 21:18,"458 5th St, Dallas, TX 75001" +197908,AA Batteries (4-pack),2,3.84,04/16/19 16:51,"731 West St, Boston, MA 02215" +197909,AAA Batteries (4-pack),3,2.99,04/28/19 13:55,"580 Center St, Los Angeles, CA 90001" +197910,AA Batteries (4-pack),1,3.84,04/12/19 17:57,"265 Forest St, Boston, MA 02215" +197911,Vareebadd Phone,1,400,04/23/19 15:07,"762 Park St, Los Angeles, CA 90001" +197911,Bose SoundSport Headphones,1,99.99,04/23/19 15:07,"762 Park St, Los Angeles, CA 90001" +197912,Wired Headphones,1,11.99,04/07/19 19:40,"553 Lakeview St, New York City, NY 10001" +197913,AAA Batteries (4-pack),3,2.99,04/13/19 08:39,"554 12th St, Los Angeles, CA 90001" +197914,Lightning Charging Cable,1,14.95,04/08/19 10:19,"596 Cherry St, Dallas, TX 75001" +197915,Lightning Charging Cable,1,14.95,04/05/19 14:40,"562 Walnut St, San Francisco, CA 94016" +197916,AA Batteries (4-pack),1,3.84,04/23/19 10:51,"100 6th St, Los Angeles, CA 90001" +197917,Wired Headphones,1,11.99,04/24/19 20:47,"74 Jackson St, New York City, NY 10001" +197918,Bose SoundSport Headphones,1,99.99,04/05/19 15:58,"890 Willow St, San Francisco, CA 94016" +197919,iPhone,1,700,04/26/19 01:09,"323 Jefferson St, San Francisco, CA 94016" +197920,AAA Batteries (4-pack),3,2.99,04/26/19 09:40,"824 12th St, Austin, TX 73301" +197921,AAA Batteries (4-pack),1,2.99,04/16/19 18:39,"551 Highland St, San Francisco, CA 94016" +197922,AAA Batteries (4-pack),1,2.99,04/23/19 07:47,"166 Main St, San Francisco, CA 94016" +197923,USB-C Charging Cable,1,11.95,04/26/19 10:26,"342 Walnut St, New York City, NY 10001" +197924,USB-C Charging Cable,1,11.95,04/25/19 14:25,"620 Lincoln St, Atlanta, GA 30301" +197925,Flatscreen TV,1,300,04/10/19 14:52,"911 7th St, Los Angeles, CA 90001" +197926,USB-C Charging Cable,1,11.95,04/23/19 11:20,"472 12th St, Seattle, WA 98101" +197927,Flatscreen TV,1,300,04/22/19 15:57,"385 Meadow St, San Francisco, CA 94016" +197928,Wired Headphones,1,11.99,04/05/19 17:51,"315 Adams St, San Francisco, CA 94016" +197929,AA Batteries (4-pack),1,3.84,04/29/19 14:28,"430 Madison St, New York City, NY 10001" +197930,27in FHD Monitor,1,149.99,04/29/19 13:07,"162 14th St, Portland, OR 97035" +197931,iPhone,1,700,04/23/19 11:48,"33 Lakeview St, Boston, MA 02215" +197932,Google Phone,1,600,04/08/19 14:10,"280 South St, San Francisco, CA 94016" +197932,Wired Headphones,1,11.99,04/08/19 14:10,"280 South St, San Francisco, CA 94016" +197933,Flatscreen TV,1,300,04/04/19 17:11,"801 6th St, Seattle, WA 98101" +197934,AA Batteries (4-pack),1,3.84,04/30/19 17:31,"501 Park St, San Francisco, CA 94016" +,,,,, +197935,Lightning Charging Cable,2,14.95,04/05/19 19:38,"22 Chestnut St, Los Angeles, CA 90001" +197936,USB-C Charging Cable,1,11.95,04/20/19 10:14,"817 11th St, Boston, MA 02215" +197937,Lightning Charging Cable,1,14.95,04/11/19 15:28,"926 Church St, San Francisco, CA 94016" +197938,27in 4K Gaming Monitor,1,389.99,04/20/19 20:34,"316 6th St, San Francisco, CA 94016" +197939,27in FHD Monitor,1,149.99,04/02/19 13:06,"214 Hickory St, Seattle, WA 98101" +197940,AA Batteries (4-pack),1,3.84,04/23/19 12:27,"78 Highland St, San Francisco, CA 94016" +197941,iPhone,1,700,04/22/19 22:43,"806 Dogwood St, San Francisco, CA 94016" +197942,Vareebadd Phone,1,400,04/28/19 11:31,"568 Washington St, Los Angeles, CA 90001" +197942,Wired Headphones,1,11.99,04/28/19 11:31,"568 Washington St, Los Angeles, CA 90001" +197943,Vareebadd Phone,1,400,04/05/19 23:19,"462 Highland St, Atlanta, GA 30301" +197943,Wired Headphones,1,11.99,04/05/19 23:19,"462 Highland St, Atlanta, GA 30301" +197944,Lightning Charging Cable,1,14.95,04/02/19 11:55,"617 Lake St, Austin, TX 73301" +197945,USB-C Charging Cable,1,11.95,04/10/19 14:15,"679 5th St, San Francisco, CA 94016" +197946,27in 4K Gaming Monitor,1,389.99,04/27/19 18:39,"580 Adams St, New York City, NY 10001" +197947,Bose SoundSport Headphones,1,99.99,04/16/19 15:46,"733 Maple St, Portland, ME 04101" +197948,34in Ultrawide Monitor,1,379.99,04/02/19 20:41,"2 Wilson St, Dallas, TX 75001" +197949,AA Batteries (4-pack),1,3.84,04/01/19 14:33,"588 14th St, San Francisco, CA 94016" +197950,27in FHD Monitor,1,149.99,04/23/19 13:41,"523 1st St, New York City, NY 10001" +197951,Bose SoundSport Headphones,1,99.99,04/29/19 11:19,"792 Cedar St, Atlanta, GA 30301" +197952,AAA Batteries (4-pack),2,2.99,04/21/19 13:19,"90 Washington St, San Francisco, CA 94016" +197953,iPhone,1,700,04/15/19 09:58,"159 Highland St, Seattle, WA 98101" +197954,Wired Headphones,1,11.99,04/24/19 01:55,"568 Hickory St, Portland, OR 97035" +197955,Lightning Charging Cable,1,14.95,04/14/19 15:51,"439 4th St, San Francisco, CA 94016" +197956,Lightning Charging Cable,1,14.95,04/15/19 06:24,"322 Madison St, New York City, NY 10001" +197957,USB-C Charging Cable,1,11.95,04/02/19 08:39,"270 Cedar St, Dallas, TX 75001" +197958,Apple Airpods Headphones,1,150,04/13/19 17:01,"210 2nd St, San Francisco, CA 94016" +197958,Lightning Charging Cable,1,14.95,04/13/19 17:01,"210 2nd St, San Francisco, CA 94016" +197959,AA Batteries (4-pack),1,3.84,04/16/19 18:17,"819 11th St, New York City, NY 10001" +197960,USB-C Charging Cable,1,11.95,04/07/19 10:57,"81 Cedar St, Los Angeles, CA 90001" +197961,27in FHD Monitor,1,149.99,04/28/19 10:15,"554 Walnut St, Los Angeles, CA 90001" +172149,AA Batteries (4-pack),1,3.84,03/15/19 08:19,"127 Lake St, Seattle, WA 98101" +172150,Wired Headphones,1,11.99,03/05/19 13:49,"81 14th St, Boston, MA 02215" +172151,34in Ultrawide Monitor,1,379.99,03/01/19 23:56,"839 Sunset St, Portland, OR 97035" +172152,AAA Batteries (4-pack),1,2.99,03/09/19 08:27,"563 1st St, Los Angeles, CA 90001" +172153,Wired Headphones,1,11.99,03/20/19 06:27,"759 Cherry St, Los Angeles, CA 90001" +172154,27in 4K Gaming Monitor,1,389.99,03/15/19 14:23,"256 Hickory St, Austin, TX 73301" +172155,Vareebadd Phone,1,400.0,03/05/19 11:47,"81 Park St, New York City, NY 10001" +172156,Bose SoundSport Headphones,1,99.99,03/20/19 13:43,"240 Meadow St, San Francisco, CA 94016" +172157,USB-C Charging Cable,1,11.95,03/10/19 15:37,"826 Dogwood St, San Francisco, CA 94016" +172158,Flatscreen TV,1,300.0,03/26/19 22:34,"367 Center St, San Francisco, CA 94016" +172159,Google Phone,1,600.0,03/14/19 13:59,"250 Lincoln St, Atlanta, GA 30301" +172160,Lightning Charging Cable,1,14.95,03/27/19 00:10,"670 Lakeview St, San Francisco, CA 94016" +172161,34in Ultrawide Monitor,1,379.99,03/19/19 10:51,"946 West St, San Francisco, CA 94016" +172162,Lightning Charging Cable,1,14.95,03/21/19 22:44,"992 Park St, Dallas, TX 75001" +172163,AA Batteries (4-pack),1,3.84,03/24/19 10:24,"324 Ridge St, Austin, TX 73301" +172164,Wired Headphones,1,11.99,03/08/19 19:47,"557 4th St, Los Angeles, CA 90001" +172165,USB-C Charging Cable,1,11.95,03/16/19 11:09,"512 13th St, Los Angeles, CA 90001" +172165,iPhone,1,700.0,03/16/19 11:09,"512 13th St, Los Angeles, CA 90001" +172166,27in FHD Monitor,1,149.99,03/17/19 21:10,"361 Cherry St, New York City, NY 10001" +172167,ThinkPad Laptop,1,999.99,03/03/19 13:12,"4 Center St, New York City, NY 10001" +172168,Google Phone,1,600.0,03/31/19 19:58,"357 Ridge St, Atlanta, GA 30301" +172168,USB-C Charging Cable,2,11.95,03/31/19 19:58,"357 Ridge St, Atlanta, GA 30301" +172169,Vareebadd Phone,1,400.0,03/31/19 11:21,"99 West St, New York City, NY 10001" +172169,Wired Headphones,1,11.99,03/31/19 11:21,"99 West St, New York City, NY 10001" +172170,USB-C Charging Cable,1,11.95,03/02/19 15:23,"914 Church St, New York City, NY 10001" +172171,Wired Headphones,1,11.99,03/10/19 15:21,"721 Pine St, Los Angeles, CA 90001" +172172,USB-C Charging Cable,1,11.95,03/06/19 16:19,"423 Washington St, San Francisco, CA 94016" +172173,USB-C Charging Cable,1,11.95,03/24/19 21:44,"559 North St, Los Angeles, CA 90001" +172174,Apple Airpods Headphones,1,150.0,03/16/19 14:57,"176 River St, New York City, NY 10001" +172175,Bose SoundSport Headphones,1,99.99,03/10/19 05:44,"995 Madison St, San Francisco, CA 94016" +172176,34in Ultrawide Monitor,1,379.99,03/25/19 22:17,"588 Main St, New York City, NY 10001" +172177,USB-C Charging Cable,1,11.95,03/22/19 19:34,"926 Dogwood St, San Francisco, CA 94016" +172178,AAA Batteries (4-pack),1,2.99,03/19/19 17:16,"381 Spruce St, Dallas, TX 75001" +172179,Bose SoundSport Headphones,1,99.99,03/13/19 20:52,"608 9th St, New York City, NY 10001" +172180,AA Batteries (4-pack),1,3.84,03/20/19 08:57,"37 Lakeview St, San Francisco, CA 94016" +172181,AAA Batteries (4-pack),1,2.99,03/15/19 17:16,"433 Lincoln St, San Francisco, CA 94016" +172182,Google Phone,1,600.0,03/03/19 09:26,"614 9th St, Dallas, TX 75001" +172183,AA Batteries (4-pack),1,3.84,03/04/19 18:34,"795 Lakeview St, San Francisco, CA 94016" +172184,Wired Headphones,1,11.99,03/29/19 15:56,"859 West St, Boston, MA 02215" +172185,Wired Headphones,1,11.99,03/21/19 17:55,"985 Johnson St, Los Angeles, CA 90001" +172186,34in Ultrawide Monitor,1,379.99,03/09/19 17:26,"559 Lake St, San Francisco, CA 94016" +172187,27in FHD Monitor,1,149.99,03/31/19 19:16,"277 Sunset St, San Francisco, CA 94016" +172188,Wired Headphones,1,11.99,03/01/19 11:03,"974 2nd St, Los Angeles, CA 90001" +172189,AA Batteries (4-pack),1,3.84,03/31/19 12:27,"409 Washington St, New York City, NY 10001" +172190,AAA Batteries (4-pack),1,2.99,03/13/19 00:55,"93 13th St, New York City, NY 10001" +172191,USB-C Charging Cable,1,11.95,03/13/19 12:27,"232 11th St, San Francisco, CA 94016" +172192,Wired Headphones,1,11.99,03/03/19 15:26,"592 11th St, Los Angeles, CA 90001" +172193,AA Batteries (4-pack),1,3.84,03/22/19 09:34,"566 Dogwood St, San Francisco, CA 94016" +172194,AA Batteries (4-pack),1,3.84,03/23/19 15:53,"550 Park St, Austin, TX 73301" +172195,Vareebadd Phone,1,400.0,03/24/19 10:53,"396 5th St, Los Angeles, CA 90001" +172196,USB-C Charging Cable,1,11.95,03/17/19 12:24,"970 West St, Dallas, TX 75001" +172197,Lightning Charging Cable,1,14.95,03/09/19 14:56,"961 1st St, Boston, MA 02215" +172198,27in 4K Gaming Monitor,1,389.99,03/07/19 13:38,"257 8th St, San Francisco, CA 94016" +172199,27in FHD Monitor,1,149.99,03/16/19 21:34,"494 Jefferson St, Austin, TX 73301" +172200,Flatscreen TV,1,300.0,03/05/19 12:15,"771 West St, Atlanta, GA 30301" +172201,Apple Airpods Headphones,1,150.0,03/10/19 13:15,"186 9th St, Atlanta, GA 30301" +172202,Vareebadd Phone,1,400.0,03/19/19 13:11,"246 1st St, San Francisco, CA 94016" +172202,USB-C Charging Cable,1,11.95,03/19/19 13:11,"246 1st St, San Francisco, CA 94016" +172203,AAA Batteries (4-pack),1,2.99,03/06/19 20:07,"848 North St, New York City, NY 10001" +172204,Apple Airpods Headphones,1,150.0,03/21/19 12:10,"952 Walnut St, Dallas, TX 75001" +172205,USB-C Charging Cable,1,11.95,03/30/19 16:27,"584 Elm St, Seattle, WA 98101" +172205,Apple Airpods Headphones,1,150.0,03/30/19 16:27,"584 Elm St, Seattle, WA 98101" +172206,AA Batteries (4-pack),2,3.84,03/30/19 19:46,"641 Elm St, San Francisco, CA 94016" +172207,Wired Headphones,1,11.99,03/20/19 09:26,"584 Walnut St, San Francisco, CA 94016" +172208,34in Ultrawide Monitor,1,379.99,03/05/19 16:31,"781 Johnson St, Los Angeles, CA 90001" +172209,AA Batteries (4-pack),1,3.84,03/10/19 17:27,"288 Chestnut St, Los Angeles, CA 90001" +172210,AA Batteries (4-pack),1,3.84,03/20/19 19:45,"301 Hill St, Boston, MA 02215" +172211,Lightning Charging Cable,1,14.95,03/30/19 13:31,"880 Lakeview St, Boston, MA 02215" +172211,Wired Headphones,1,11.99,03/30/19 13:31,"880 Lakeview St, Boston, MA 02215" +172212,Lightning Charging Cable,1,14.95,03/09/19 16:24,"247 13th St, Los Angeles, CA 90001" +172213,Apple Airpods Headphones,1,150.0,03/09/19 21:30,"269 Main St, Seattle, WA 98101" +172214,Apple Airpods Headphones,1,150.0,03/26/19 09:40,"951 9th St, Austin, TX 73301" +172215,AA Batteries (4-pack),1,3.84,03/19/19 12:22,"210 Chestnut St, Los Angeles, CA 90001" +172216,AA Batteries (4-pack),1,3.84,03/13/19 08:59,"555 Elm St, Boston, MA 02215" +172217,USB-C Charging Cable,1,11.95,03/31/19 19:03,"670 Spruce St, Los Angeles, CA 90001" +172218,Wired Headphones,1,11.99,03/05/19 19:21,"712 7th St, Los Angeles, CA 90001" +172219,27in 4K Gaming Monitor,1,389.99,03/22/19 15:02,"395 Park St, Los Angeles, CA 90001" +172220,20in Monitor,1,109.99,03/19/19 08:49,"331 Lincoln St, New York City, NY 10001" +172221,27in FHD Monitor,1,149.99,03/07/19 17:47,"648 5th St, Los Angeles, CA 90001" +172222,Apple Airpods Headphones,1,150.0,03/27/19 18:25,"343 Jackson St, New York City, NY 10001" +172223,34in Ultrawide Monitor,1,379.99,03/02/19 12:41,"635 12th St, Austin, TX 73301" +172224,Wired Headphones,1,11.99,03/14/19 16:21,"85 4th St, Portland, OR 97035" +172225,AA Batteries (4-pack),1,3.84,03/24/19 02:14,"11 Cedar St, Seattle, WA 98101" +172225,Bose SoundSport Headphones,1,99.99,03/24/19 02:14,"11 Cedar St, Seattle, WA 98101" +172226,AA Batteries (4-pack),1,3.84,03/28/19 17:15,"208 Willow St, New York City, NY 10001" +172227,AAA Batteries (4-pack),2,2.99,03/06/19 16:31,"979 Willow St, Boston, MA 02215" +172228,ThinkPad Laptop,1,999.99,03/01/19 15:28,"572 Washington St, Dallas, TX 75001" +172229,USB-C Charging Cable,1,11.95,03/05/19 11:27,"913 12th St, Austin, TX 73301" +172230,20in Monitor,1,109.99,03/29/19 21:35,"312 Elm St, Portland, ME 04101" +172231,Lightning Charging Cable,1,14.95,03/02/19 14:44,"425 4th St, Portland, ME 04101" +172232,AAA Batteries (4-pack),1,2.99,03/18/19 16:03,"928 Jackson St, Dallas, TX 75001" +172233,USB-C Charging Cable,1,11.95,03/15/19 15:57,"74 Meadow St, Portland, OR 97035" +172234,AA Batteries (4-pack),4,3.84,03/23/19 18:28,"187 Ridge St, San Francisco, CA 94016" +172235,Wired Headphones,2,11.99,03/29/19 16:26,"560 Hickory St, San Francisco, CA 94016" +172236,iPhone,1,700.0,03/24/19 12:18,"282 Cedar St, Atlanta, GA 30301" +172236,Wired Headphones,1,11.99,03/24/19 12:18,"282 Cedar St, Atlanta, GA 30301" +172237,iPhone,1,700.0,03/21/19 21:07,"375 Cherry St, San Francisco, CA 94016" +172237,Lightning Charging Cable,1,14.95,03/21/19 21:07,"375 Cherry St, San Francisco, CA 94016" +172238,LG Dryer,1,600.0,03/31/19 09:22,"310 Main St, San Francisco, CA 94016" +172239,USB-C Charging Cable,1,11.95,03/04/19 19:20,"899 Elm St, Boston, MA 02215" +172240,AA Batteries (4-pack),3,3.84,03/04/19 11:49,"877 Madison St, Austin, TX 73301" +172241,AAA Batteries (4-pack),1,2.99,03/05/19 21:19,"309 12th St, San Francisco, CA 94016" +172242,USB-C Charging Cable,1,11.95,03/14/19 23:06,"295 River St, Portland, ME 04101" +172243,USB-C Charging Cable,1,11.95,03/20/19 09:50,"352 1st St, Portland, OR 97035" +172244,Macbook Pro Laptop,1,1700.0,03/13/19 11:32,"618 12th St, Los Angeles, CA 90001" +172245,USB-C Charging Cable,1,11.95,03/19/19 08:59,"649 14th St, New York City, NY 10001" +172246,34in Ultrawide Monitor,1,379.99,03/03/19 14:12,"408 Wilson St, Austin, TX 73301" +172247,Apple Airpods Headphones,1,150.0,03/22/19 09:27,"232 1st St, Austin, TX 73301" +172248,Lightning Charging Cable,1,14.95,03/16/19 00:29,"91 North St, New York City, NY 10001" +172249,Flatscreen TV,1,300.0,03/25/19 18:51,"319 Madison St, Atlanta, GA 30301" +172250,Apple Airpods Headphones,1,150.0,03/08/19 18:48,"670 Church St, San Francisco, CA 94016" +172251,27in 4K Gaming Monitor,1,389.99,03/08/19 04:44,"350 Forest St, San Francisco, CA 94016" +172252,USB-C Charging Cable,1,11.95,03/30/19 17:39,"317 North St, Seattle, WA 98101" +172253,AAA Batteries (4-pack),2,2.99,03/09/19 10:40,"921 Madison St, San Francisco, CA 94016" +172254,Lightning Charging Cable,1,14.95,03/09/19 19:45,"830 Hill St, Atlanta, GA 30301" +172255,iPhone,1,700.0,03/04/19 16:52,"10 North St, Los Angeles, CA 90001" +172256,Google Phone,1,600.0,03/08/19 20:06,"381 Center St, Atlanta, GA 30301" +172257,Apple Airpods Headphones,1,150.0,03/07/19 15:53,"578 14th St, Boston, MA 02215" +172258,Google Phone,1,600.0,03/14/19 11:04,"382 Cedar St, Seattle, WA 98101" +172259,Bose SoundSport Headphones,1,99.99,03/06/19 15:54,"891 Cedar St, San Francisco, CA 94016" +172260,USB-C Charging Cable,1,11.95,03/22/19 07:19,"126 Park St, Boston, MA 02215" +172261,AAA Batteries (4-pack),2,2.99,03/03/19 17:37,"825 6th St, Boston, MA 02215" +172262,Lightning Charging Cable,1,14.95,03/05/19 08:32,"789 Cherry St, Dallas, TX 75001" +172263,Apple Airpods Headphones,1,150.0,03/06/19 10:59,"226 Ridge St, Boston, MA 02215" +172264,USB-C Charging Cable,1,11.95,03/04/19 16:04,"821 Spruce St, San Francisco, CA 94016" +172265,USB-C Charging Cable,1,11.95,03/17/19 16:54,"917 Forest St, Los Angeles, CA 90001" +172266,AA Batteries (4-pack),1,3.84,03/24/19 13:46,"723 Church St, San Francisco, CA 94016" +172267,AA Batteries (4-pack),4,3.84,03/19/19 17:08,"635 4th St, Los Angeles, CA 90001" +172268,Apple Airpods Headphones,1,150.0,03/21/19 16:37,"964 Spruce St, Dallas, TX 75001" +172269,iPhone,1,700.0,03/11/19 12:36,"196 4th St, Boston, MA 02215" +172269,Lightning Charging Cable,1,14.95,03/11/19 12:36,"196 4th St, Boston, MA 02215" +172270,34in Ultrawide Monitor,1,379.99,03/18/19 22:52,"251 Jefferson St, Austin, TX 73301" +172271,Macbook Pro Laptop,1,1700.0,03/13/19 21:51,"763 Adams St, Portland, OR 97035" +172272,Wired Headphones,1,11.99,03/04/19 13:38,"751 Lincoln St, Los Angeles, CA 90001" +172273,Macbook Pro Laptop,1,1700.0,03/30/19 11:25,"335 1st St, San Francisco, CA 94016" +172274,Wired Headphones,1,11.99,03/17/19 15:08,"390 1st St, Seattle, WA 98101" +172275,USB-C Charging Cable,1,11.95,03/04/19 12:17,"915 Park St, Seattle, WA 98101" +172276,Google Phone,1,600.0,03/14/19 21:54,"962 Adams St, San Francisco, CA 94016" +172276,USB-C Charging Cable,1,11.95,03/14/19 21:54,"962 Adams St, San Francisco, CA 94016" +172277,LG Dryer,1,600.0,03/20/19 11:36,"295 14th St, Los Angeles, CA 90001" +172278,AAA Batteries (4-pack),1,2.99,03/06/19 17:34,"145 West St, Los Angeles, CA 90001" +172279,Apple Airpods Headphones,1,150.0,03/16/19 19:19,"840 Lake St, Atlanta, GA 30301" +172280,AAA Batteries (4-pack),1,2.99,03/06/19 17:38,"143 Lakeview St, Boston, MA 02215" +172281,iPhone,1,700.0,03/17/19 11:43,"543 9th St, Atlanta, GA 30301" +172282,Lightning Charging Cable,1,14.95,03/10/19 10:46,"987 5th St, San Francisco, CA 94016" +172283,ThinkPad Laptop,1,999.99,03/18/19 03:05,"580 Cherry St, Boston, MA 02215" +172284,20in Monitor,1,109.99,03/10/19 09:35,"28 6th St, Los Angeles, CA 90001" +172285,AA Batteries (4-pack),1,3.84,03/21/19 13:12,"388 Meadow St, Los Angeles, CA 90001" +172286,Wired Headphones,1,11.99,03/02/19 15:28,"860 Jackson St, Austin, TX 73301" +172287,LG Washing Machine,1,600.0,03/28/19 10:11,"653 11th St, Seattle, WA 98101" +172288,AA Batteries (4-pack),1,3.84,03/13/19 22:17,"774 Maple St, New York City, NY 10001" +172289,Bose SoundSport Headphones,1,99.99,03/21/19 19:28,"345 Lake St, San Francisco, CA 94016" +172290,AA Batteries (4-pack),2,3.84,03/14/19 21:54,"117 Jefferson St, Dallas, TX 75001" +172290,27in 4K Gaming Monitor,1,389.99,03/14/19 21:54,"117 Jefferson St, Dallas, TX 75001" +172291,AAA Batteries (4-pack),1,2.99,03/06/19 12:36,"440 Meadow St, Austin, TX 73301" +172292,Bose SoundSport Headphones,1,99.99,03/14/19 09:44,"602 11th St, San Francisco, CA 94016" +172293,Wired Headphones,1,11.99,03/24/19 08:17,"114 1st St, Atlanta, GA 30301" +172294,AAA Batteries (4-pack),1,2.99,03/24/19 17:10,"465 Ridge St, San Francisco, CA 94016" +172295,Wired Headphones,1,11.99,03/31/19 09:14,"624 2nd St, Los Angeles, CA 90001" +172296,Apple Airpods Headphones,1,150.0,03/09/19 20:02,"349 Washington St, New York City, NY 10001" +172297,USB-C Charging Cable,1,11.95,03/11/19 16:56,"459 10th St, San Francisco, CA 94016" +172298,AA Batteries (4-pack),1,3.84,03/24/19 14:05,"962 Washington St, Los Angeles, CA 90001" +172299,AA Batteries (4-pack),2,3.84,03/30/19 21:56,"80 Dogwood St, New York City, NY 10001" +172300,Apple Airpods Headphones,1,150.0,03/15/19 13:46,"295 12th St, Boston, MA 02215" +172301,AAA Batteries (4-pack),1,2.99,03/19/19 12:09,"49 Main St, Los Angeles, CA 90001" +172302,Lightning Charging Cable,1,14.95,03/18/19 13:18,"857 Madison St, Boston, MA 02215" +172303,Lightning Charging Cable,1,14.95,03/26/19 19:44,"568 7th St, Seattle, WA 98101" +172304,Wired Headphones,1,11.99,03/10/19 16:10,"955 Wilson St, Dallas, TX 75001" +172305,iPhone,1,700.0,03/22/19 11:58,"667 Jackson St, Austin, TX 73301" +172306,Bose SoundSport Headphones,1,99.99,03/01/19 08:34,"6 Park St, Portland, OR 97035" +172307,Lightning Charging Cable,1,14.95,03/20/19 00:50,"976 4th St, New York City, NY 10001" +172308,AAA Batteries (4-pack),1,2.99,03/01/19 16:53,"456 Washington St, Dallas, TX 75001" +172309,Wired Headphones,1,11.99,03/30/19 10:36,"736 Wilson St, Los Angeles, CA 90001" +172310,Google Phone,1,600.0,03/11/19 16:15,"550 Pine St, Los Angeles, CA 90001" +172311,USB-C Charging Cable,1,11.95,03/12/19 10:00,"872 Lake St, Seattle, WA 98101" +172312,AA Batteries (4-pack),1,3.84,03/27/19 13:50,"935 River St, San Francisco, CA 94016" +172313,Wired Headphones,1,11.99,03/25/19 22:10,"973 Main St, Austin, TX 73301" +172313,Wired Headphones,1,11.99,03/25/19 22:10,"973 Main St, Austin, TX 73301" +172314,USB-C Charging Cable,1,11.95,03/20/19 10:26,"670 10th St, New York City, NY 10001" +172315,Macbook Pro Laptop,1,1700.0,03/04/19 19:50,"732 West St, Seattle, WA 98101" +172316,ThinkPad Laptop,1,999.99,03/17/19 10:24,"162 Park St, Seattle, WA 98101" +172317,Bose SoundSport Headphones,1,99.99,03/10/19 23:24,"684 Jackson St, Los Angeles, CA 90001" +172318,27in FHD Monitor,1,149.99,03/18/19 11:08,"108 Main St, Seattle, WA 98101" +172319,iPhone,1,700.0,03/05/19 00:26,"318 10th St, San Francisco, CA 94016" +172319,Lightning Charging Cable,1,14.95,03/05/19 00:26,"318 10th St, San Francisco, CA 94016" +172320,Lightning Charging Cable,1,14.95,03/01/19 18:30,"293 Cherry St, Austin, TX 73301" +172321,AA Batteries (4-pack),3,3.84,03/12/19 11:48,"32 Pine St, San Francisco, CA 94016" +172322,Bose SoundSport Headphones,1,99.99,03/19/19 14:41,"357 Wilson St, New York City, NY 10001" +172323,AA Batteries (4-pack),1,3.84,03/24/19 11:52,"969 13th St, New York City, NY 10001" +172324,LG Washing Machine,1,600.0,03/22/19 19:07,"917 9th St, Los Angeles, CA 90001" +172325,AA Batteries (4-pack),1,3.84,03/10/19 08:43,"236 Washington St, New York City, NY 10001" +172326,Apple Airpods Headphones,1,150.0,03/17/19 15:33,"822 Washington St, San Francisco, CA 94016" +172327,Apple Airpods Headphones,1,150.0,03/25/19 18:14,"498 5th St, Los Angeles, CA 90001" +172328,Macbook Pro Laptop,1,1700.0,03/29/19 17:12,"601 Willow St, Dallas, TX 75001" +172329,Bose SoundSport Headphones,1,99.99,03/15/19 13:47,"958 Center St, Portland, OR 97035" +172330,Lightning Charging Cable,2,14.95,03/25/19 09:58,"575 13th St, San Francisco, CA 94016" +172331,USB-C Charging Cable,1,11.95,03/18/19 19:13,"950 Cherry St, Boston, MA 02215" +172332,Flatscreen TV,1,300.0,03/17/19 12:02,"572 13th St, Seattle, WA 98101" +172333,27in FHD Monitor,1,149.99,03/02/19 20:57,"243 Elm St, Boston, MA 02215" +172334,USB-C Charging Cable,1,11.95,03/13/19 14:25,"710 Walnut St, San Francisco, CA 94016" +172335,27in 4K Gaming Monitor,1,389.99,03/25/19 23:15,"878 2nd St, San Francisco, CA 94016" +172336,AA Batteries (4-pack),1,3.84,03/01/19 23:00,"229 North St, San Francisco, CA 94016" +172337,Wired Headphones,1,11.99,03/21/19 21:11,"921 Spruce St, San Francisco, CA 94016" +172338,Vareebadd Phone,1,400.0,03/31/19 12:24,"591 Elm St, Atlanta, GA 30301" +172339,Wired Headphones,1,11.99,03/11/19 09:07,"751 South St, Boston, MA 02215" +172339,AA Batteries (4-pack),1,3.84,03/11/19 09:07,"751 South St, Boston, MA 02215" +172340,AAA Batteries (4-pack),2,2.99,03/23/19 06:57,"506 Center St, Seattle, WA 98101" +172341,Flatscreen TV,1,300.0,03/07/19 18:36,"601 Willow St, Seattle, WA 98101" +172342,AA Batteries (4-pack),2,3.84,03/11/19 11:40,"543 Jefferson St, New York City, NY 10001" +172343,34in Ultrawide Monitor,1,379.99,03/23/19 11:15,"990 5th St, New York City, NY 10001" +172344,AAA Batteries (4-pack),1,2.99,03/31/19 13:55,"660 10th St, Seattle, WA 98101" +172345,AAA Batteries (4-pack),2,2.99,03/09/19 04:14,"621 River St, Los Angeles, CA 90001" +172346,USB-C Charging Cable,1,11.95,03/11/19 20:36,"406 Ridge St, Portland, OR 97035" +172347,Macbook Pro Laptop,1,1700.0,03/27/19 21:47,"334 10th St, San Francisco, CA 94016" +172348,AA Batteries (4-pack),2,3.84,03/16/19 11:34,"204 South St, Austin, TX 73301" +172349,AA Batteries (4-pack),1,3.84,03/24/19 19:13,"338 North St, San Francisco, CA 94016" +172350,AAA Batteries (4-pack),1,2.99,03/25/19 22:56,"655 Main St, Boston, MA 02215" +172351,Bose SoundSport Headphones,1,99.99,03/11/19 19:37,"172 14th St, Boston, MA 02215" +172352,Flatscreen TV,1,300.0,03/04/19 19:52,"880 Lake St, New York City, NY 10001" +172353,27in FHD Monitor,1,149.99,03/03/19 08:06,"239 Forest St, Portland, OR 97035" +172354,USB-C Charging Cable,1,11.95,03/17/19 12:13,"862 12th St, Los Angeles, CA 90001" +172355,Google Phone,1,600.0,03/11/19 09:50,"716 11th St, New York City, NY 10001" +172356,Lightning Charging Cable,1,14.95,03/08/19 10:21,"639 4th St, Atlanta, GA 30301" +172357,USB-C Charging Cable,1,11.95,03/27/19 20:26,"928 Wilson St, San Francisco, CA 94016" +172358,USB-C Charging Cable,1,11.95,03/04/19 09:04,"903 Main St, Dallas, TX 75001" +172359,Bose SoundSport Headphones,1,99.99,03/08/19 21:21,"510 Maple St, Seattle, WA 98101" +172360,27in FHD Monitor,1,149.99,03/02/19 11:17,"33 1st St, San Francisco, CA 94016" +172361,34in Ultrawide Monitor,1,379.99,03/12/19 11:46,"166 7th St, New York City, NY 10001" +172362,Apple Airpods Headphones,1,150.0,03/23/19 18:45,"565 Ridge St, Austin, TX 73301" +172363,USB-C Charging Cable,1,11.95,03/11/19 18:36,"772 Lake St, New York City, NY 10001" +172364,AAA Batteries (4-pack),1,2.99,03/30/19 18:36,"708 Highland St, San Francisco, CA 94016" +172365,AA Batteries (4-pack),1,3.84,03/02/19 18:51,"580 1st St, Portland, OR 97035" +172366,USB-C Charging Cable,1,11.95,03/31/19 21:56,"703 Adams St, Boston, MA 02215" +172367,Wired Headphones,1,11.99,03/14/19 23:38,"482 River St, Austin, TX 73301" +172368,iPhone,1,700.0,03/27/19 13:23,"561 Hill St, Dallas, TX 75001" +172369,AA Batteries (4-pack),1,3.84,03/23/19 13:15,"152 8th St, San Francisco, CA 94016" +172370,Apple Airpods Headphones,1,150.0,03/14/19 00:49,"69 Maple St, New York City, NY 10001" +172371,Bose SoundSport Headphones,1,99.99,03/15/19 15:55,"428 9th St, Los Angeles, CA 90001" +172372,Apple Airpods Headphones,1,150.0,03/02/19 13:22,"362 Jefferson St, San Francisco, CA 94016" +172373,AAA Batteries (4-pack),2,2.99,03/29/19 20:33,"242 Washington St, New York City, NY 10001" +172374,AA Batteries (4-pack),1,3.84,03/16/19 10:53,"265 Lincoln St, Atlanta, GA 30301" +172375,AA Batteries (4-pack),3,3.84,03/08/19 15:32,"641 Church St, Austin, TX 73301" +172376,AAA Batteries (4-pack),1,2.99,03/27/19 14:58,"56 Adams St, New York City, NY 10001" +172377,27in 4K Gaming Monitor,1,389.99,03/12/19 21:19,"88 Pine St, Los Angeles, CA 90001" +172378,Macbook Pro Laptop,1,1700.0,03/21/19 10:48,"143 Lakeview St, San Francisco, CA 94016" +172379,Lightning Charging Cable,1,14.95,03/17/19 01:22,"507 Lincoln St, Los Angeles, CA 90001" +172380,USB-C Charging Cable,1,11.95,03/22/19 11:21,"132 6th St, Los Angeles, CA 90001" +172381,Lightning Charging Cable,1,14.95,03/05/19 20:46,"862 Adams St, Seattle, WA 98101" +172382,iPhone,1,700.0,03/24/19 13:36,"29 6th St, Seattle, WA 98101" +172383,AAA Batteries (4-pack),1,2.99,03/28/19 21:15,"286 Meadow St, Atlanta, GA 30301" +172384,27in FHD Monitor,1,149.99,03/02/19 19:15,"571 2nd St, Atlanta, GA 30301" +172385,20in Monitor,1,109.99,03/19/19 21:44,"707 Adams St, Atlanta, GA 30301" +172386,Macbook Pro Laptop,1,1700.0,03/19/19 20:42,"807 Elm St, San Francisco, CA 94016" +172387,USB-C Charging Cable,1,11.95,03/25/19 12:41,"9 West St, Portland, OR 97035" +172388,USB-C Charging Cable,2,11.95,03/10/19 08:48,"789 Lincoln St, San Francisco, CA 94016" +172389,27in FHD Monitor,1,149.99,03/18/19 10:37,"504 9th St, Los Angeles, CA 90001" +172390,AAA Batteries (4-pack),2,2.99,03/29/19 21:11,"660 Pine St, New York City, NY 10001" +172391,Lightning Charging Cable,1,14.95,03/26/19 22:44,"200 Dogwood St, San Francisco, CA 94016" +172392,Lightning Charging Cable,1,14.95,03/26/19 21:52,"321 Walnut St, San Francisco, CA 94016" +172393,27in 4K Gaming Monitor,1,389.99,03/02/19 22:47,"716 Cherry St, Austin, TX 73301" +172394,ThinkPad Laptop,1,999.99,03/25/19 13:06,"765 Forest St, Boston, MA 02215" +172395,Google Phone,1,600.0,03/22/19 22:25,"42 Highland St, New York City, NY 10001" +172395,USB-C Charging Cable,1,11.95,03/22/19 22:25,"42 Highland St, New York City, NY 10001" +172396,Lightning Charging Cable,1,14.95,03/16/19 14:30,"165 South St, Seattle, WA 98101" +172397,USB-C Charging Cable,1,11.95,03/03/19 10:20,"506 Cedar St, Boston, MA 02215" +172398,Wired Headphones,1,11.99,03/30/19 12:48,"729 2nd St, Austin, TX 73301" +172399,Wired Headphones,1,11.99,03/29/19 12:50,"652 Hill St, Boston, MA 02215" +172400,Wired Headphones,1,11.99,03/28/19 18:01,"786 Lake St, New York City, NY 10001" +172401,USB-C Charging Cable,1,11.95,03/01/19 10:54,"339 Ridge St, Atlanta, GA 30301" +172402,AAA Batteries (4-pack),1,2.99,03/14/19 09:37,"953 River St, New York City, NY 10001" +172403,Lightning Charging Cable,2,14.95,03/21/19 09:30,"421 River St, San Francisco, CA 94016" +172404,34in Ultrawide Monitor,1,379.99,03/18/19 18:10,"726 River St, Boston, MA 02215" +172405,Google Phone,1,600.0,03/22/19 10:41,"778 Hickory St, Atlanta, GA 30301" +172406,Lightning Charging Cable,2,14.95,03/10/19 15:48,"807 Forest St, Los Angeles, CA 90001" +172407,27in FHD Monitor,1,149.99,03/04/19 21:28,"564 10th St, Los Angeles, CA 90001" +172408,Flatscreen TV,1,300.0,03/05/19 08:14,"638 Main St, San Francisco, CA 94016" +172409,Apple Airpods Headphones,1,150.0,03/07/19 13:31,"733 4th St, Portland, OR 97035" +172410,34in Ultrawide Monitor,1,379.99,03/10/19 21:28,"449 2nd St, Atlanta, GA 30301" +172411,AA Batteries (4-pack),1,3.84,03/07/19 19:55,"619 North St, San Francisco, CA 94016" +172412,Apple Airpods Headphones,1,150.0,03/03/19 14:49,"890 Spruce St, San Francisco, CA 94016" +172413,Lightning Charging Cable,1,14.95,03/03/19 08:50,"900 Main St, Atlanta, GA 30301" +172414,AA Batteries (4-pack),1,3.84,03/16/19 06:22,"304 9th St, Portland, OR 97035" +172415,AA Batteries (4-pack),1,3.84,03/24/19 23:35,"118 Cherry St, Seattle, WA 98101" +172416,Lightning Charging Cable,1,14.95,03/09/19 22:45,"779 Ridge St, New York City, NY 10001" +172417,Bose SoundSport Headphones,1,99.99,03/17/19 15:50,"187 4th St, Dallas, TX 75001" +172418,AAA Batteries (4-pack),2,2.99,03/06/19 19:09,"267 12th St, Los Angeles, CA 90001" +172418,USB-C Charging Cable,2,11.95,03/06/19 19:09,"267 12th St, Los Angeles, CA 90001" +172419,Lightning Charging Cable,1,14.95,03/05/19 00:04,"244 Hill St, Los Angeles, CA 90001" +172420,Google Phone,1,600.0,03/17/19 08:00,"305 Dogwood St, San Francisco, CA 94016" +172421,ThinkPad Laptop,1,999.99,03/13/19 22:27,"47 14th St, Boston, MA 02215" +172422,Wired Headphones,1,11.99,03/20/19 13:12,"877 Spruce St, San Francisco, CA 94016" +172422,AAA Batteries (4-pack),2,2.99,03/20/19 13:12,"877 Spruce St, San Francisco, CA 94016" +172423,20in Monitor,1,109.99,03/03/19 20:32,"677 Ridge St, Austin, TX 73301" +172424,AA Batteries (4-pack),1,3.84,03/04/19 11:13,"140 River St, Boston, MA 02215" +172425,Apple Airpods Headphones,1,150.0,03/11/19 19:40,"88 Sunset St, Dallas, TX 75001" +172426,iPhone,1,700.0,03/26/19 19:54,"122 Ridge St, Austin, TX 73301" +172427,27in 4K Gaming Monitor,1,389.99,03/19/19 18:13,"938 Adams St, Portland, ME 04101" +172428,AAA Batteries (4-pack),4,2.99,03/24/19 10:55,"37 Forest St, Boston, MA 02215" +172429,27in 4K Gaming Monitor,1,389.99,03/31/19 12:33,"208 Lincoln St, Atlanta, GA 30301" +172430,AA Batteries (4-pack),2,3.84,03/11/19 07:50,"90 Meadow St, Los Angeles, CA 90001" +172431,AA Batteries (4-pack),1,3.84,03/19/19 18:34,"391 8th St, Atlanta, GA 30301" +172432,34in Ultrawide Monitor,1,379.99,03/02/19 22:45,"103 Lakeview St, Boston, MA 02215" +172433,34in Ultrawide Monitor,1,379.99,03/28/19 09:23,"606 West St, Portland, OR 97035" +172434,Apple Airpods Headphones,1,150.0,03/12/19 13:16,"718 Lincoln St, Seattle, WA 98101" +172435,AA Batteries (4-pack),1,3.84,03/20/19 18:00,"690 13th St, Boston, MA 02215" +172436,Apple Airpods Headphones,1,150.0,03/15/19 19:20,"170 Hill St, Dallas, TX 75001" +172437,Google Phone,1,600.0,03/16/19 13:18,"282 Lincoln St, Dallas, TX 75001" +172438,27in 4K Gaming Monitor,1,389.99,03/15/19 16:33,"541 Church St, Portland, OR 97035" +172439,Google Phone,1,600.0,03/07/19 16:40,"134 14th St, New York City, NY 10001" +172440,Google Phone,1,600.0,03/02/19 10:56,"828 Walnut St, Boston, MA 02215" +172441,Lightning Charging Cable,1,14.95,03/15/19 19:05,"204 Willow St, Atlanta, GA 30301" +172442,Lightning Charging Cable,1,14.95,03/01/19 22:24,"922 Cherry St, Atlanta, GA 30301" +172443,AA Batteries (4-pack),1,3.84,03/16/19 22:24,"898 Elm St, Los Angeles, CA 90001" +172443,27in 4K Gaming Monitor,1,389.99,03/16/19 22:24,"898 Elm St, Los Angeles, CA 90001" +172444,Wired Headphones,1,11.99,03/30/19 15:52,"182 Spruce St, Los Angeles, CA 90001" +172445,Wired Headphones,1,11.99,03/08/19 21:50,"717 7th St, Seattle, WA 98101" +172446,AA Batteries (4-pack),2,3.84,03/29/19 09:11,"179 6th St, San Francisco, CA 94016" +172447,USB-C Charging Cable,1,11.95,03/18/19 13:43,"668 Adams St, Portland, ME 04101" +172448,Lightning Charging Cable,1,14.95,03/12/19 14:33,"759 Lake St, New York City, NY 10001" +172449,AA Batteries (4-pack),1,3.84,03/16/19 11:32,"122 Center St, Atlanta, GA 30301" +172450,Flatscreen TV,1,300.0,03/18/19 15:31,"16 Hill St, Los Angeles, CA 90001" +172451,Bose SoundSport Headphones,1,99.99,03/13/19 00:50,"156 Maple St, Boston, MA 02215" +172452,AA Batteries (4-pack),1,3.84,03/07/19 18:20,"963 Lincoln St, Atlanta, GA 30301" +172453,Bose SoundSport Headphones,1,99.99,03/28/19 16:35,"571 Pine St, San Francisco, CA 94016" +172454,AA Batteries (4-pack),1,3.84,03/16/19 00:31,"523 Hickory St, San Francisco, CA 94016" +172455,USB-C Charging Cable,1,11.95,03/11/19 11:50,"839 Washington St, San Francisco, CA 94016" +172456,AAA Batteries (4-pack),2,2.99,03/11/19 11:35,"204 10th St, San Francisco, CA 94016" +172457,AAA Batteries (4-pack),1,2.99,03/17/19 04:57,"408 Lake St, New York City, NY 10001" +172458,AA Batteries (4-pack),3,3.84,03/27/19 19:32,"247 South St, Seattle, WA 98101" +172459,Apple Airpods Headphones,1,150.0,03/07/19 13:12,"149 Center St, San Francisco, CA 94016" +172460,Lightning Charging Cable,1,14.95,03/07/19 16:29,"963 Washington St, Boston, MA 02215" +172461,Lightning Charging Cable,1,14.95,03/09/19 15:58,"436 Main St, Atlanta, GA 30301" +172462,AA Batteries (4-pack),2,3.84,03/29/19 22:10,"226 Hill St, New York City, NY 10001" +172463,USB-C Charging Cable,1,11.95,03/25/19 07:38,"291 Sunset St, Los Angeles, CA 90001" +172464,27in 4K Gaming Monitor,1,389.99,03/06/19 00:31,"937 Meadow St, San Francisco, CA 94016" +172465,34in Ultrawide Monitor,1,379.99,03/18/19 00:20,"677 Church St, Boston, MA 02215" +172466,USB-C Charging Cable,1,11.95,03/13/19 20:39,"7 Maple St, San Francisco, CA 94016" +172467,Lightning Charging Cable,1,14.95,03/21/19 23:43,"847 Main St, Boston, MA 02215" +172468,Lightning Charging Cable,1,14.95,03/27/19 15:47,"44 Hill St, Portland, ME 04101" +172469,AA Batteries (4-pack),3,3.84,03/18/19 11:55,"506 Maple St, San Francisco, CA 94016" +172470,Lightning Charging Cable,1,14.95,03/09/19 13:01,"858 Park St, San Francisco, CA 94016" +172471,27in 4K Gaming Monitor,1,389.99,03/14/19 23:56,"837 River St, San Francisco, CA 94016" +172472,USB-C Charging Cable,2,11.95,03/07/19 22:56,"772 Center St, Portland, ME 04101" +172473,27in FHD Monitor,1,149.99,03/20/19 15:46,"422 Church St, Atlanta, GA 30301" +172474,AAA Batteries (4-pack),1,2.99,03/29/19 13:20,"532 Center St, Austin, TX 73301" +172474,Apple Airpods Headphones,1,150.0,03/29/19 13:20,"532 Center St, Austin, TX 73301" +172475,AAA Batteries (4-pack),2,2.99,03/02/19 01:55,"241 Willow St, San Francisco, CA 94016" +172476,AAA Batteries (4-pack),2,2.99,03/11/19 11:31,"693 Jefferson St, New York City, NY 10001" +172477,iPhone,1,700.0,03/08/19 11:53,"778 12th St, San Francisco, CA 94016" +172478,iPhone,1,700.0,03/19/19 19:16,"528 Forest St, New York City, NY 10001" +172478,Lightning Charging Cable,1,14.95,03/19/19 19:16,"528 Forest St, New York City, NY 10001" +172479,Apple Airpods Headphones,1,150.0,03/06/19 14:07,"137 Pine St, Los Angeles, CA 90001" +172480,iPhone,1,700.0,03/05/19 14:01,"807 Wilson St, Boston, MA 02215" +172481,34in Ultrawide Monitor,1,379.99,03/15/19 18:34,"568 Adams St, San Francisco, CA 94016" +172482,27in FHD Monitor,1,149.99,03/22/19 07:12,"154 13th St, San Francisco, CA 94016" +172483,Lightning Charging Cable,1,14.95,03/09/19 22:10,"293 Center St, Boston, MA 02215" +172484,USB-C Charging Cable,1,11.95,03/03/19 22:23,"850 Cherry St, New York City, NY 10001" +172485,27in 4K Gaming Monitor,1,389.99,03/27/19 14:15,"375 Willow St, San Francisco, CA 94016" +172486,Google Phone,1,600.0,03/08/19 13:41,"458 Chestnut St, Boston, MA 02215" +172486,USB-C Charging Cable,1,11.95,03/08/19 13:41,"458 Chestnut St, Boston, MA 02215" +172487,Macbook Pro Laptop,1,1700.0,03/02/19 16:45,"773 Park St, Austin, TX 73301" +172488,AA Batteries (4-pack),1,3.84,03/26/19 16:31,"199 Washington St, Seattle, WA 98101" +172489,Apple Airpods Headphones,1,150.0,03/18/19 15:05,"307 Meadow St, Atlanta, GA 30301" +172490,AA Batteries (4-pack),1,3.84,03/09/19 18:33,"740 1st St, Atlanta, GA 30301" +172491,AAA Batteries (4-pack),1,2.99,03/30/19 10:48,"240 10th St, New York City, NY 10001" +172492,Lightning Charging Cable,1,14.95,03/27/19 22:05,"164 11th St, New York City, NY 10001" +172493,AA Batteries (4-pack),1,3.84,03/15/19 20:27,"544 South St, Atlanta, GA 30301" +172494,Wired Headphones,2,11.99,03/22/19 10:13,"987 4th St, Seattle, WA 98101" +172495,Lightning Charging Cable,1,14.95,03/07/19 00:06,"805 1st St, San Francisco, CA 94016" +172496,USB-C Charging Cable,1,11.95,03/27/19 08:53,"7 Washington St, San Francisco, CA 94016" +172497,AAA Batteries (4-pack),1,2.99,03/26/19 13:45,"603 West St, Atlanta, GA 30301" +172498,27in 4K Gaming Monitor,1,389.99,03/14/19 21:41,"400 Center St, San Francisco, CA 94016" +172499,iPhone,1,700.0,03/08/19 18:59,"878 Madison St, Boston, MA 02215" +172500,34in Ultrawide Monitor,1,379.99,03/09/19 01:08,"923 7th St, San Francisco, CA 94016" +172501,Wired Headphones,1,11.99,03/21/19 15:35,"100 Dogwood St, New York City, NY 10001" +172502,AA Batteries (4-pack),1,3.84,03/06/19 12:32,"635 10th St, Seattle, WA 98101" +172503,AAA Batteries (4-pack),2,2.99,03/24/19 12:09,"472 River St, Seattle, WA 98101" +172504,AAA Batteries (4-pack),3,2.99,03/23/19 21:03,"2 Washington St, Los Angeles, CA 90001" +172505,34in Ultrawide Monitor,1,379.99,03/04/19 22:44,"847 12th St, San Francisco, CA 94016" +172506,Apple Airpods Headphones,1,150.0,03/22/19 16:24,"347 Main St, San Francisco, CA 94016" +172507,Bose SoundSport Headphones,1,99.99,03/20/19 20:28,"101 Adams St, Dallas, TX 75001" +172508,Wired Headphones,1,11.99,03/09/19 14:49,"717 Dogwood St, San Francisco, CA 94016" +172509,USB-C Charging Cable,1,11.95,03/11/19 17:48,"716 Lake St, Los Angeles, CA 90001" +172510,Apple Airpods Headphones,1,150.0,03/12/19 20:34,"38 12th St, Los Angeles, CA 90001" +172511,34in Ultrawide Monitor,1,379.99,03/25/19 23:38,"893 Meadow St, San Francisco, CA 94016" +172512,Apple Airpods Headphones,1,150.0,03/14/19 20:18,"626 Park St, Portland, OR 97035" +172513,Apple Airpods Headphones,1,150.0,03/01/19 09:33,"120 Elm St, Los Angeles, CA 90001" +172514,Lightning Charging Cable,1,14.95,03/10/19 09:05,"362 1st St, Seattle, WA 98101" +172515,Bose SoundSport Headphones,1,99.99,03/08/19 22:11,"499 Washington St, San Francisco, CA 94016" +172516,AAA Batteries (4-pack),1,2.99,03/28/19 10:37,"176 Dogwood St, San Francisco, CA 94016" +172517,AA Batteries (4-pack),2,3.84,03/01/19 17:51,"83 River St, Boston, MA 02215" +172518,Wired Headphones,1,11.99,03/27/19 22:46,"909 Pine St, San Francisco, CA 94016" +172519,USB-C Charging Cable,1,11.95,03/06/19 17:06,"542 Lincoln St, Los Angeles, CA 90001" +172520,Wired Headphones,1,11.99,03/03/19 12:31,"77 Church St, Seattle, WA 98101" +172521,USB-C Charging Cable,1,11.95,03/20/19 06:49,"720 Lincoln St, Seattle, WA 98101" +172522,Lightning Charging Cable,1,14.95,03/13/19 19:26,"300 6th St, San Francisco, CA 94016" +172523,Apple Airpods Headphones,1,150.0,03/26/19 18:27,"52 9th St, Austin, TX 73301" +172524,Apple Airpods Headphones,1,150.0,03/08/19 19:14,"4 13th St, Atlanta, GA 30301" +172525,Lightning Charging Cable,1,14.95,03/30/19 20:19,"374 Cherry St, San Francisco, CA 94016" +172526,Apple Airpods Headphones,1,150.0,03/26/19 17:02,"557 Forest St, New York City, NY 10001" +172527,Lightning Charging Cable,1,14.95,03/03/19 21:14,"372 5th St, San Francisco, CA 94016" +172528,Wired Headphones,1,11.99,03/01/19 13:17,"183 Hickory St, Dallas, TX 75001" +172529,AA Batteries (4-pack),2,3.84,03/29/19 07:53,"720 Chestnut St, Dallas, TX 75001" +172530,Wired Headphones,1,11.99,03/05/19 21:56,"319 Lake St, New York City, NY 10001" +172531,34in Ultrawide Monitor,1,379.99,03/08/19 20:26,"871 Cherry St, Boston, MA 02215" +172532,Lightning Charging Cable,1,14.95,03/11/19 10:49,"465 North St, San Francisco, CA 94016" +172533,Flatscreen TV,1,300.0,03/10/19 14:12,"143 9th St, San Francisco, CA 94016" +172534,Wired Headphones,1,11.99,03/06/19 16:46,"264 Sunset St, Atlanta, GA 30301" +172534,20in Monitor,1,109.99,03/06/19 16:46,"264 Sunset St, Atlanta, GA 30301" +172535,USB-C Charging Cable,1,11.95,03/24/19 17:02,"733 Center St, San Francisco, CA 94016" +172536,AA Batteries (4-pack),1,3.84,03/24/19 18:17,"599 South St, San Francisco, CA 94016" +172537,Google Phone,1,600.0,03/04/19 01:13,"311 2nd St, Boston, MA 02215" +172538,Macbook Pro Laptop,1,1700.0,03/17/19 16:42,"894 Hickory St, Atlanta, GA 30301" +172539,Bose SoundSport Headphones,1,99.99,03/05/19 12:30,"565 Highland St, Portland, OR 97035" +172540,Bose SoundSport Headphones,1,99.99,03/08/19 01:31,"564 Walnut St, New York City, NY 10001" +172541,AAA Batteries (4-pack),1,2.99,03/28/19 15:33,"848 1st St, San Francisco, CA 94016" +172542,AAA Batteries (4-pack),1,2.99,03/10/19 19:58,"186 5th St, Los Angeles, CA 90001" +172543,Lightning Charging Cable,1,14.95,03/14/19 17:14,"834 River St, Austin, TX 73301" +172544,AAA Batteries (4-pack),1,2.99,03/16/19 19:27,"81 Dogwood St, Los Angeles, CA 90001" +172545,27in 4K Gaming Monitor,1,389.99,03/13/19 18:55,"559 2nd St, San Francisco, CA 94016" +172546,27in FHD Monitor,1,149.99,03/28/19 18:37,"265 Lake St, San Francisco, CA 94016" +172547,USB-C Charging Cable,1,11.95,03/02/19 12:22,"12 2nd St, New York City, NY 10001" +172548,USB-C Charging Cable,1,11.95,03/07/19 20:28,"618 Jefferson St, Austin, TX 73301" +172549,AA Batteries (4-pack),1,3.84,03/21/19 22:25,"191 Park St, Seattle, WA 98101" +172550,Wired Headphones,1,11.99,03/24/19 17:31,"557 North St, New York City, NY 10001" +172551,USB-C Charging Cable,1,11.95,03/30/19 08:40,"229 Jefferson St, Boston, MA 02215" +172552,27in FHD Monitor,1,149.99,03/09/19 18:14,"854 South St, Atlanta, GA 30301" +172552,Wired Headphones,1,11.99,03/09/19 18:14,"854 South St, Atlanta, GA 30301" +172553,Wired Headphones,1,11.99,03/30/19 11:27,"775 Cedar St, Dallas, TX 75001" +172554,iPhone,1,700.0,03/06/19 01:49,"416 Madison St, New York City, NY 10001" +172555,Wired Headphones,1,11.99,03/18/19 09:05,"773 Lakeview St, Atlanta, GA 30301" +172556,AA Batteries (4-pack),1,3.84,03/11/19 23:18,"151 10th St, San Francisco, CA 94016" +172557,Bose SoundSport Headphones,1,99.99,03/29/19 20:59,"344 Jefferson St, San Francisco, CA 94016" +172558,Google Phone,1,600.0,03/22/19 16:37,"101 Lincoln St, Boston, MA 02215" +172559,27in FHD Monitor,1,149.99,03/24/19 10:27,"223 9th St, Los Angeles, CA 90001" +172560,27in FHD Monitor,1,149.99,03/01/19 13:44,"257 North St, Boston, MA 02215" +172561,Bose SoundSport Headphones,1,99.99,03/07/19 21:58,"392 Wilson St, San Francisco, CA 94016" +172562,AAA Batteries (4-pack),2,2.99,03/01/19 14:40,"767 Elm St, New York City, NY 10001" +172563,27in FHD Monitor,1,149.99,03/01/19 12:05,"812 Park St, Los Angeles, CA 90001" +172564,AAA Batteries (4-pack),1,2.99,03/14/19 20:44,"997 Forest St, Boston, MA 02215" +172565,Macbook Pro Laptop,1,1700.0,03/22/19 19:44,"510 5th St, Seattle, WA 98101" +172566,AA Batteries (4-pack),1,3.84,03/14/19 12:59,"991 Highland St, San Francisco, CA 94016" +172567,Bose SoundSport Headphones,1,99.99,03/24/19 16:30,"1 4th St, Portland, ME 04101" +172568,34in Ultrawide Monitor,1,379.99,03/20/19 14:07,"734 6th St, San Francisco, CA 94016" +172569,Wired Headphones,1,11.99,03/30/19 18:34,"182 Spruce St, New York City, NY 10001" +172570,USB-C Charging Cable,1,11.95,03/15/19 18:20,"239 Cherry St, San Francisco, CA 94016" +172571,Lightning Charging Cable,1,14.95,03/10/19 20:50,"55 North St, Atlanta, GA 30301" +172572,AAA Batteries (4-pack),1,2.99,03/22/19 20:52,"53 Jackson St, Los Angeles, CA 90001" +172573,USB-C Charging Cable,1,11.95,03/27/19 16:29,"244 Ridge St, Austin, TX 73301" +172574,Lightning Charging Cable,1,14.95,03/10/19 17:22,"971 Madison St, Los Angeles, CA 90001" +172575,USB-C Charging Cable,1,11.95,03/17/19 11:12,"439 Hill St, Los Angeles, CA 90001" +172576,Bose SoundSport Headphones,1,99.99,03/29/19 13:33,"981 Ridge St, New York City, NY 10001" +172577,Macbook Pro Laptop,1,1700.0,03/03/19 00:23,"375 2nd St, Los Angeles, CA 90001" +172578,AA Batteries (4-pack),1,3.84,03/17/19 12:19,"497 7th St, Los Angeles, CA 90001" +172579,AA Batteries (4-pack),2,3.84,03/15/19 18:25,"171 Elm St, Boston, MA 02215" +172580,Apple Airpods Headphones,1,150.0,03/05/19 14:44,"856 Hill St, San Francisco, CA 94016" +172581,USB-C Charging Cable,1,11.95,03/27/19 11:38,"915 14th St, New York City, NY 10001" +172582,USB-C Charging Cable,1,11.95,03/06/19 10:34,"854 South St, Los Angeles, CA 90001" +172583,Lightning Charging Cable,1,14.95,03/15/19 13:17,"17 Lake St, Boston, MA 02215" +172584,20in Monitor,1,109.99,03/09/19 05:51,"177 6th St, New York City, NY 10001" +172585,Bose SoundSport Headphones,1,99.99,03/11/19 14:54,"595 Sunset St, Seattle, WA 98101" +172586,Wired Headphones,1,11.99,03/31/19 14:32,"373 11th St, Portland, OR 97035" +172587,Wired Headphones,1,11.99,03/01/19 10:12,"962 Elm St, San Francisco, CA 94016" +172588,AA Batteries (4-pack),3,3.84,03/15/19 21:56,"849 Walnut St, Dallas, TX 75001" +172589,USB-C Charging Cable,1,11.95,03/03/19 19:42,"194 Church St, San Francisco, CA 94016" +172590,USB-C Charging Cable,1,11.95,03/07/19 12:11,"290 Wilson St, San Francisco, CA 94016" +172591,27in FHD Monitor,1,149.99,03/30/19 00:17,"978 5th St, New York City, NY 10001" +172592,AA Batteries (4-pack),2,3.84,03/06/19 18:05,"613 Johnson St, Seattle, WA 98101" +172593,AA Batteries (4-pack),2,3.84,03/04/19 13:17,"197 Hill St, San Francisco, CA 94016" +172594,20in Monitor,1,109.99,03/30/19 19:02,"738 4th St, Boston, MA 02215" +172595,Lightning Charging Cable,1,14.95,03/29/19 15:01,"83 9th St, Atlanta, GA 30301" +172596,USB-C Charging Cable,1,11.95,03/08/19 12:32,"963 Spruce St, Los Angeles, CA 90001" +172597,Flatscreen TV,1,300.0,03/28/19 23:55,"450 Elm St, New York City, NY 10001" +172598,USB-C Charging Cable,1,11.95,03/23/19 23:33,"838 Meadow St, New York City, NY 10001" +172599,Wired Headphones,1,11.99,03/25/19 20:39,"545 Spruce St, Los Angeles, CA 90001" +172600,USB-C Charging Cable,1,11.95,03/03/19 11:14,"704 10th St, Seattle, WA 98101" +172601,AAA Batteries (4-pack),1,2.99,03/17/19 17:20,"615 Park St, Boston, MA 02215" +172601,27in FHD Monitor,1,149.99,03/17/19 17:20,"615 Park St, Boston, MA 02215" +172602,AAA Batteries (4-pack),1,2.99,03/17/19 22:03,"297 West St, New York City, NY 10001" +172603,ThinkPad Laptop,1,999.99,03/17/19 07:00,"373 Lake St, Los Angeles, CA 90001" +172604,USB-C Charging Cable,1,11.95,03/24/19 05:32,"93 Chestnut St, Los Angeles, CA 90001" +172605,AA Batteries (4-pack),1,3.84,03/04/19 07:59,"694 7th St, Boston, MA 02215" +172606,Apple Airpods Headphones,1,150.0,03/14/19 07:07,"712 10th St, Dallas, TX 75001" +172607,Lightning Charging Cable,1,14.95,03/11/19 08:20,"462 10th St, Los Angeles, CA 90001" +172608,Bose SoundSport Headphones,1,99.99,03/02/19 13:48,"581 10th St, Los Angeles, CA 90001" +172609,Apple Airpods Headphones,1,150.0,03/16/19 15:04,"432 11th St, San Francisco, CA 94016" +172610,Flatscreen TV,1,300.0,03/27/19 23:22,"436 Madison St, Atlanta, GA 30301" +172611,Apple Airpods Headphones,1,150.0,03/31/19 19:10,"77 Hill St, San Francisco, CA 94016" +172612,20in Monitor,1,109.99,03/29/19 05:07,"100 Main St, Dallas, TX 75001" +172613,iPhone,1,700.0,03/16/19 18:29,"982 Dogwood St, Portland, OR 97035" +172613,Lightning Charging Cable,1,14.95,03/16/19 18:29,"982 Dogwood St, Portland, OR 97035" +172614,AA Batteries (4-pack),1,3.84,03/08/19 09:57,"136 Cherry St, San Francisco, CA 94016" +172615,USB-C Charging Cable,1,11.95,03/26/19 11:34,"593 10th St, Boston, MA 02215" +172616,Wired Headphones,1,11.99,03/02/19 12:12,"367 Meadow St, San Francisco, CA 94016" +172617,AA Batteries (4-pack),1,3.84,03/04/19 15:33,"922 Center St, Los Angeles, CA 90001" +172618,Lightning Charging Cable,1,14.95,03/02/19 17:33,"217 1st St, Los Angeles, CA 90001" +172619,iPhone,1,700.0,03/03/19 14:41,"91 13th St, Boston, MA 02215" +172620,iPhone,1,700.0,03/01/19 18:55,"505 Center St, Seattle, WA 98101" +172621,AAA Batteries (4-pack),2,2.99,03/17/19 17:34,"556 Center St, Austin, TX 73301" +172622,USB-C Charging Cable,1,11.95,03/13/19 16:34,"284 Cedar St, San Francisco, CA 94016" +172623,27in 4K Gaming Monitor,1,389.99,03/31/19 18:41,"748 Walnut St, Portland, OR 97035" +172624,Lightning Charging Cable,1,14.95,03/02/19 07:58,"733 South St, Los Angeles, CA 90001" +172625,34in Ultrawide Monitor,1,379.99,03/22/19 13:02,"212 Hill St, Dallas, TX 75001" +172626,Apple Airpods Headphones,1,150.0,03/23/19 15:54,"284 Walnut St, Los Angeles, CA 90001" +172627,AA Batteries (4-pack),1,3.84,03/12/19 10:29,"271 Willow St, Los Angeles, CA 90001" +172628,AA Batteries (4-pack),1,3.84,03/23/19 14:39,"244 Chestnut St, San Francisco, CA 94016" +172629,Bose SoundSport Headphones,1,99.99,03/21/19 06:47,"613 Lake St, Los Angeles, CA 90001" +172630,USB-C Charging Cable,1,11.95,03/30/19 22:11,"117 Walnut St, Los Angeles, CA 90001" +172631,AAA Batteries (4-pack),4,2.99,03/18/19 13:48,"503 Hill St, San Francisco, CA 94016" +172632,AA Batteries (4-pack),1,3.84,03/11/19 06:41,"551 Center St, Atlanta, GA 30301" +172632,ThinkPad Laptop,1,999.99,03/11/19 06:41,"551 Center St, Atlanta, GA 30301" +172633,Lightning Charging Cable,1,14.95,03/11/19 10:27,"732 14th St, Dallas, TX 75001" +172634,AA Batteries (4-pack),1,3.84,03/27/19 20:58,"95 Lake St, New York City, NY 10001" +172635,USB-C Charging Cable,1,11.95,03/16/19 13:15,"327 Jefferson St, San Francisco, CA 94016" +172636,Wired Headphones,1,11.99,03/03/19 16:43,"912 Sunset St, New York City, NY 10001" +172637,AAA Batteries (4-pack),1,2.99,03/30/19 19:29,"390 7th St, New York City, NY 10001" +172638,Bose SoundSport Headphones,1,99.99,03/09/19 20:15,"129 Maple St, Dallas, TX 75001" +172639,Bose SoundSport Headphones,1,99.99,03/09/19 11:49,"779 Johnson St, Portland, ME 04101" +172640,AAA Batteries (4-pack),1,2.99,03/25/19 14:46,"755 12th St, New York City, NY 10001" +172641,Wired Headphones,1,11.99,03/13/19 12:49,"223 Spruce St, Dallas, TX 75001" +172642,Apple Airpods Headphones,1,150.0,03/31/19 01:12,"384 Johnson St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +172643,34in Ultrawide Monitor,1,379.99,03/24/19 11:55,"512 Meadow St, Atlanta, GA 30301" +172644,27in FHD Monitor,1,149.99,03/21/19 08:47,"690 West St, Seattle, WA 98101" +172645,Lightning Charging Cable,2,14.95,03/16/19 19:11,"52 Willow St, San Francisco, CA 94016" +172646,Wired Headphones,1,11.99,03/02/19 20:27,"836 South St, Seattle, WA 98101" +172647,20in Monitor,1,109.99,03/20/19 17:18,"350 9th St, San Francisco, CA 94016" +172648,Wired Headphones,1,11.99,03/31/19 09:26,"830 5th St, San Francisco, CA 94016" +172649,Apple Airpods Headphones,1,150,03/10/19 09:14,"51 Adams St, Los Angeles, CA 90001" +172650,AA Batteries (4-pack),1,3.84,03/26/19 22:32,"363 6th St, Austin, TX 73301" +172651,AAA Batteries (4-pack),2,2.99,03/14/19 00:34,"417 6th St, Boston, MA 02215" +172652,Bose SoundSport Headphones,1,99.99,03/13/19 09:49,"96 Sunset St, Los Angeles, CA 90001" +172653,Lightning Charging Cable,1,14.95,03/26/19 06:20,"345 1st St, San Francisco, CA 94016" +172654,Wired Headphones,1,11.99,03/25/19 16:45,"760 Hickory St, San Francisco, CA 94016" +172655,Macbook Pro Laptop,1,1700,03/29/19 19:36,"649 Sunset St, San Francisco, CA 94016" +172656,AAA Batteries (4-pack),1,2.99,03/30/19 16:22,"751 Sunset St, Austin, TX 73301" +172657,AA Batteries (4-pack),1,3.84,03/19/19 20:35,"858 Johnson St, Boston, MA 02215" +172657,Lightning Charging Cable,1,14.95,03/19/19 20:35,"858 Johnson St, Boston, MA 02215" +172658,AA Batteries (4-pack),1,3.84,03/05/19 23:20,"372 Madison St, San Francisco, CA 94016" +172659,USB-C Charging Cable,1,11.95,03/01/19 10:17,"639 6th St, Portland, OR 97035" +172660,iPhone,1,700,03/03/19 23:10,"172 Wilson St, San Francisco, CA 94016" +172661,27in FHD Monitor,1,149.99,03/15/19 04:59,"666 Dogwood St, Seattle, WA 98101" +172662,AAA Batteries (4-pack),1,2.99,03/01/19 07:34,"893 Ridge St, Boston, MA 02215" +172663,27in FHD Monitor,1,149.99,03/14/19 19:10,"845 Forest St, San Francisco, CA 94016" +172664,Apple Airpods Headphones,1,150,03/20/19 19:53,"549 Lakeview St, Boston, MA 02215" +172665,20in Monitor,1,109.99,03/01/19 14:26,"754 Church St, Atlanta, GA 30301" +172666,USB-C Charging Cable,1,11.95,03/17/19 13:14,"328 1st St, San Francisco, CA 94016" +172667,Google Phone,1,600,03/27/19 12:03,"357 Elm St, Portland, ME 04101" +172668,USB-C Charging Cable,1,11.95,03/03/19 20:11,"368 Jefferson St, Los Angeles, CA 90001" +172669,Macbook Pro Laptop,1,1700,03/07/19 13:06,"581 Park St, New York City, NY 10001" +172670,AAA Batteries (4-pack),1,2.99,03/19/19 20:48,"256 2nd St, Portland, OR 97035" +172671,Bose SoundSport Headphones,1,99.99,03/18/19 23:42,"395 Pine St, Atlanta, GA 30301" +172672,ThinkPad Laptop,1,999.99,03/06/19 10:30,"315 Maple St, Atlanta, GA 30301" +172673,Wired Headphones,1,11.99,03/14/19 10:25,"569 Madison St, Portland, OR 97035" +172673,AA Batteries (4-pack),2,3.84,03/14/19 10:25,"569 Madison St, Portland, OR 97035" +172674,AAA Batteries (4-pack),5,2.99,03/29/19 10:12,"799 Chestnut St, Los Angeles, CA 90001" +172675,Lightning Charging Cable,1,14.95,03/09/19 20:31,"478 13th St, Austin, TX 73301" +172676,Lightning Charging Cable,1,14.95,03/23/19 17:58,"835 14th St, Los Angeles, CA 90001" +172677,USB-C Charging Cable,1,11.95,03/18/19 13:20,"490 11th St, Los Angeles, CA 90001" +172678,iPhone,1,700,03/18/19 13:36,"390 11th St, New York City, NY 10001" +172678,Lightning Charging Cable,1,14.95,03/18/19 13:36,"390 11th St, New York City, NY 10001" +172679,Bose SoundSport Headphones,1,99.99,03/28/19 09:36,"102 10th St, New York City, NY 10001" +172680,27in 4K Gaming Monitor,1,389.99,03/13/19 14:40,"719 Wilson St, San Francisco, CA 94016" +172681,Wired Headphones,1,11.99,03/11/19 16:56,"363 Cherry St, Dallas, TX 75001" +172682,Apple Airpods Headphones,1,150,03/16/19 17:22,"903 Lincoln St, San Francisco, CA 94016" +172683,Lightning Charging Cable,1,14.95,03/20/19 11:19,"584 Hill St, Austin, TX 73301" +172684,AA Batteries (4-pack),2,3.84,03/28/19 17:27,"261 Forest St, Dallas, TX 75001" +172685,Wired Headphones,1,11.99,03/28/19 18:51,"807 9th St, San Francisco, CA 94016" +172686,USB-C Charging Cable,1,11.95,03/27/19 11:18,"553 Chestnut St, Dallas, TX 75001" +172687,Flatscreen TV,1,300,03/17/19 21:18,"75 Highland St, New York City, NY 10001" +172688,27in FHD Monitor,1,149.99,03/25/19 09:28,"861 Pine St, Dallas, TX 75001" +172689,Apple Airpods Headphones,1,150,03/01/19 10:12,"527 Wilson St, Los Angeles, CA 90001" +172690,Lightning Charging Cable,1,14.95,03/18/19 09:44,"36 9th St, San Francisco, CA 94016" +172691,AA Batteries (4-pack),1,3.84,03/23/19 18:39,"964 Church St, Portland, OR 97035" +172692,Flatscreen TV,1,300,03/08/19 17:03,"406 Cherry St, Los Angeles, CA 90001" +172693,Lightning Charging Cable,2,14.95,03/29/19 11:42,"606 Cherry St, Portland, OR 97035" +172694,Flatscreen TV,1,300,03/10/19 16:58,"294 Hill St, New York City, NY 10001" +172695,Wired Headphones,1,11.99,03/18/19 20:36,"946 Lakeview St, San Francisco, CA 94016" +172696,Flatscreen TV,1,300,03/26/19 13:45,"204 12th St, San Francisco, CA 94016" +172697,Flatscreen TV,1,300,03/20/19 14:18,"51 5th St, Atlanta, GA 30301" +172698,AAA Batteries (4-pack),1,2.99,03/22/19 19:21,"184 Chestnut St, Los Angeles, CA 90001" +172699,iPhone,1,700,03/12/19 19:04,"562 Dogwood St, Los Angeles, CA 90001" +172700,AAA Batteries (4-pack),1,2.99,03/20/19 16:19,"435 14th St, San Francisco, CA 94016" +172701,Wired Headphones,1,11.99,03/02/19 22:42,"865 Jackson St, San Francisco, CA 94016" +172702,USB-C Charging Cable,1,11.95,03/23/19 12:25,"713 1st St, New York City, NY 10001" +172703,Wired Headphones,1,11.99,03/27/19 17:18,"554 5th St, Dallas, TX 75001" +172704,Bose SoundSport Headphones,1,99.99,03/08/19 19:53,"608 10th St, Dallas, TX 75001" +172705,34in Ultrawide Monitor,1,379.99,03/18/19 20:39,"386 Wilson St, San Francisco, CA 94016" +172706,Bose SoundSport Headphones,1,99.99,03/03/19 19:29,"893 4th St, Atlanta, GA 30301" +172707,Wired Headphones,1,11.99,03/22/19 13:44,"994 13th St, Dallas, TX 75001" +172708,AAA Batteries (4-pack),2,2.99,03/22/19 23:33,"292 Adams St, New York City, NY 10001" +172709,AAA Batteries (4-pack),2,2.99,03/10/19 17:05,"793 6th St, San Francisco, CA 94016" +172710,iPhone,1,700,03/12/19 16:38,"283 Dogwood St, Atlanta, GA 30301" +172710,Lightning Charging Cable,1,14.95,03/12/19 16:38,"283 Dogwood St, Atlanta, GA 30301" +172711,34in Ultrawide Monitor,1,379.99,03/22/19 22:35,"239 Center St, San Francisco, CA 94016" +172712,Lightning Charging Cable,1,14.95,03/24/19 13:03,"263 Washington St, San Francisco, CA 94016" +172713,Lightning Charging Cable,1,14.95,03/21/19 18:56,"107 North St, San Francisco, CA 94016" +172714,27in 4K Gaming Monitor,1,389.99,03/19/19 14:36,"823 Lake St, Los Angeles, CA 90001" +172715,AA Batteries (4-pack),1,3.84,03/13/19 19:49,"477 5th St, Dallas, TX 75001" +172716,USB-C Charging Cable,1,11.95,03/22/19 08:27,"801 North St, New York City, NY 10001" +172717,AA Batteries (4-pack),1,3.84,03/14/19 11:34,"769 Jackson St, Seattle, WA 98101" +172718,AA Batteries (4-pack),1,3.84,03/03/19 15:39,"876 4th St, Seattle, WA 98101" +172719,AAA Batteries (4-pack),1,2.99,03/23/19 13:01,"268 9th St, Atlanta, GA 30301" +172720,Wired Headphones,1,11.99,03/16/19 19:37,"711 Forest St, Atlanta, GA 30301" +,,,,, +172721,20in Monitor,1,109.99,03/08/19 13:53,"800 2nd St, New York City, NY 10001" +172722,Apple Airpods Headphones,1,150,03/13/19 10:27,"498 Adams St, Dallas, TX 75001" +172723,Bose SoundSport Headphones,1,99.99,03/25/19 12:38,"968 Sunset St, Los Angeles, CA 90001" +172724,27in FHD Monitor,1,149.99,03/18/19 21:33,"563 Hill St, Boston, MA 02215" +172725,Flatscreen TV,1,300,03/14/19 20:45,"328 Forest St, San Francisco, CA 94016" +172726,Apple Airpods Headphones,1,150,03/06/19 13:08,"141 Jefferson St, Atlanta, GA 30301" +172727,AA Batteries (4-pack),2,3.84,03/21/19 12:03,"519 Spruce St, San Francisco, CA 94016" +172728,USB-C Charging Cable,1,11.95,03/24/19 16:24,"388 Hickory St, Portland, OR 97035" +172729,USB-C Charging Cable,1,11.95,03/27/19 22:41,"81 Lincoln St, Austin, TX 73301" +172730,Flatscreen TV,1,300,03/03/19 12:22,"513 Dogwood St, Atlanta, GA 30301" +172731,USB-C Charging Cable,1,11.95,03/12/19 10:50,"328 Lakeview St, San Francisco, CA 94016" +172732,USB-C Charging Cable,1,11.95,03/19/19 08:57,"450 5th St, San Francisco, CA 94016" +172733,Bose SoundSport Headphones,1,99.99,03/14/19 19:41,"336 7th St, Atlanta, GA 30301" +172734,Lightning Charging Cable,1,14.95,03/16/19 19:29,"284 Lake St, Atlanta, GA 30301" +172735,Apple Airpods Headphones,1,150,03/11/19 13:43,"671 Walnut St, New York City, NY 10001" +172736,27in FHD Monitor,1,149.99,03/13/19 21:33,"575 Hill St, New York City, NY 10001" +172737,27in 4K Gaming Monitor,1,389.99,03/22/19 21:19,"133 Willow St, New York City, NY 10001" +172738,Wired Headphones,1,11.99,03/20/19 07:58,"36 Park St, Los Angeles, CA 90001" +172739,Lightning Charging Cable,1,14.95,03/10/19 11:25,"757 Wilson St, San Francisco, CA 94016" +172740,AAA Batteries (4-pack),2,2.99,03/08/19 15:31,"77 Cedar St, New York City, NY 10001" +172741,Apple Airpods Headphones,1,150,03/10/19 21:24,"10 12th St, San Francisco, CA 94016" +172742,Bose SoundSport Headphones,1,99.99,03/19/19 09:04,"726 Cherry St, Boston, MA 02215" +172743,20in Monitor,1,109.99,03/24/19 11:27,"610 Washington St, Seattle, WA 98101" +172744,USB-C Charging Cable,2,11.95,03/25/19 18:33,"313 Chestnut St, San Francisco, CA 94016" +172745,Bose SoundSport Headphones,1,99.99,03/23/19 14:53,"163 6th St, Seattle, WA 98101" +172746,AAA Batteries (4-pack),2,2.99,03/31/19 22:17,"101 7th St, Dallas, TX 75001" +172747,USB-C Charging Cable,1,11.95,03/05/19 19:23,"881 Lake St, New York City, NY 10001" +172748,Bose SoundSport Headphones,1,99.99,03/13/19 09:00,"867 Walnut St, Boston, MA 02215" +172749,Wired Headphones,1,11.99,03/13/19 16:50,"516 River St, San Francisco, CA 94016" +172750,AAA Batteries (4-pack),1,2.99,03/03/19 12:24,"223 River St, New York City, NY 10001" +172751,USB-C Charging Cable,1,11.95,03/01/19 09:19,"682 Wilson St, San Francisco, CA 94016" +172752,27in FHD Monitor,1,149.99,03/02/19 21:58,"34 5th St, New York City, NY 10001" +172753,iPhone,1,700,03/05/19 11:05,"397 Hill St, San Francisco, CA 94016" +172754,Google Phone,1,600,03/08/19 19:58,"149 9th St, Boston, MA 02215" +172755,AAA Batteries (4-pack),1,2.99,03/25/19 09:33,"918 1st St, Los Angeles, CA 90001" +172756,20in Monitor,1,109.99,03/19/19 10:34,"730 Main St, Boston, MA 02215" +172757,USB-C Charging Cable,1,11.95,03/27/19 19:40,"112 Main St, New York City, NY 10001" +172758,USB-C Charging Cable,1,11.95,03/07/19 09:50,"390 Cherry St, Seattle, WA 98101" +172759,AAA Batteries (4-pack),1,2.99,03/07/19 18:09,"204 Church St, Los Angeles, CA 90001" +172760,Apple Airpods Headphones,1,150,03/11/19 11:39,"196 South St, New York City, NY 10001" +172761,AAA Batteries (4-pack),1,2.99,03/23/19 10:16,"632 Willow St, San Francisco, CA 94016" +172762,AAA Batteries (4-pack),1,2.99,03/05/19 23:32,"3 River St, New York City, NY 10001" +172763,AA Batteries (4-pack),2,3.84,03/14/19 11:19,"449 Center St, Dallas, TX 75001" +172764,AA Batteries (4-pack),3,3.84,03/19/19 17:23,"707 Pine St, Boston, MA 02215" +172765,Bose SoundSport Headphones,1,99.99,03/09/19 00:39,"792 South St, Boston, MA 02215" +172766,Bose SoundSport Headphones,1,99.99,03/08/19 10:37,"658 12th St, Seattle, WA 98101" +172767,Apple Airpods Headphones,1,150,03/02/19 06:38,"43 North St, San Francisco, CA 94016" +172768,Bose SoundSport Headphones,1,99.99,03/12/19 18:38,"770 Adams St, Los Angeles, CA 90001" +172769,Lightning Charging Cable,2,14.95,03/24/19 07:20,"408 Park St, Seattle, WA 98101" +172770,Apple Airpods Headphones,1,150,03/28/19 15:07,"421 Wilson St, Atlanta, GA 30301" +172771,Wired Headphones,2,11.99,03/14/19 17:34,"992 Church St, Boston, MA 02215" +172772,Lightning Charging Cable,1,14.95,03/15/19 22:59,"513 7th St, Los Angeles, CA 90001" +172773,AAA Batteries (4-pack),1,2.99,03/21/19 16:18,"360 Hill St, Boston, MA 02215" +172774,Apple Airpods Headphones,1,150,03/03/19 12:29,"783 North St, Boston, MA 02215" +172775,Wired Headphones,1,11.99,03/06/19 15:09,"591 Washington St, San Francisco, CA 94016" +172776,AAA Batteries (4-pack),1,2.99,03/25/19 17:01,"670 8th St, San Francisco, CA 94016" +172777,Macbook Pro Laptop,1,1700,03/29/19 12:12,"197 Sunset St, Atlanta, GA 30301" +172778,AA Batteries (4-pack),1,3.84,03/29/19 05:28,"132 Elm St, San Francisco, CA 94016" +172779,Wired Headphones,1,11.99,03/02/19 09:12,"799 Jackson St, San Francisco, CA 94016" +172780,Lightning Charging Cable,1,14.95,03/02/19 17:13,"807 14th St, Los Angeles, CA 90001" +172781,iPhone,1,700,03/11/19 09:28,"10 Lakeview St, San Francisco, CA 94016" +172782,AA Batteries (4-pack),1,3.84,03/10/19 22:53,"223 9th St, New York City, NY 10001" +172783,Lightning Charging Cable,1,14.95,03/10/19 12:04,"600 Willow St, Los Angeles, CA 90001" +172784,AA Batteries (4-pack),1,3.84,03/30/19 09:08,"704 Meadow St, San Francisco, CA 94016" +172785,USB-C Charging Cable,1,11.95,03/04/19 12:58,"244 Chestnut St, New York City, NY 10001" +172786,27in 4K Gaming Monitor,1,389.99,03/08/19 22:55,"957 Hickory St, Atlanta, GA 30301" +172787,AAA Batteries (4-pack),1,2.99,03/04/19 15:52,"314 Adams St, Dallas, TX 75001" +172788,20in Monitor,1,109.99,03/03/19 12:16,"410 12th St, San Francisco, CA 94016" +172789,Bose SoundSport Headphones,1,99.99,03/21/19 19:31,"290 14th St, New York City, NY 10001" +172790,AA Batteries (4-pack),1,3.84,03/30/19 19:19,"842 Meadow St, Seattle, WA 98101" +172791,AA Batteries (4-pack),4,3.84,03/22/19 15:22,"478 Madison St, Atlanta, GA 30301" +172792,AAA Batteries (4-pack),1,2.99,03/03/19 12:43,"518 Highland St, Dallas, TX 75001" +172793,Wired Headphones,1,11.99,03/21/19 09:28,"852 12th St, San Francisco, CA 94016" +172794,Bose SoundSport Headphones,1,99.99,03/16/19 20:25,"218 Spruce St, Seattle, WA 98101" +172795,Apple Airpods Headphones,1,150,03/30/19 12:28,"775 Center St, Portland, OR 97035" +172796,Wired Headphones,1,11.99,03/04/19 18:26,"531 1st St, Boston, MA 02215" +172797,Lightning Charging Cable,1,14.95,03/11/19 14:34,"414 2nd St, Los Angeles, CA 90001" +172798,34in Ultrawide Monitor,1,379.99,03/27/19 19:42,"270 Jackson St, Atlanta, GA 30301" +172799,Lightning Charging Cable,1,14.95,03/22/19 12:04,"603 Hill St, Boston, MA 02215" +172800,AAA Batteries (4-pack),1,2.99,03/17/19 08:02,"759 Lakeview St, San Francisco, CA 94016" +172801,27in FHD Monitor,1,149.99,03/03/19 10:27,"380 13th St, Boston, MA 02215" +172802,USB-C Charging Cable,1,11.95,03/24/19 20:18,"297 Adams St, Austin, TX 73301" +172803,AA Batteries (4-pack),1,3.84,03/05/19 05:43,"100 Park St, San Francisco, CA 94016" +172804,iPhone,1,700,03/20/19 14:36,"981 Jefferson St, Boston, MA 02215" +172805,Bose SoundSport Headphones,1,99.99,03/11/19 16:57,"320 2nd St, Austin, TX 73301" +172806,AAA Batteries (4-pack),1,2.99,03/08/19 15:07,"846 Cedar St, Seattle, WA 98101" +172807,AA Batteries (4-pack),2,3.84,03/23/19 11:49,"421 12th St, San Francisco, CA 94016" +172808,Bose SoundSport Headphones,1,99.99,03/29/19 06:13,"703 Elm St, Seattle, WA 98101" +172808,Apple Airpods Headphones,1,150,03/29/19 06:13,"703 Elm St, Seattle, WA 98101" +172809,USB-C Charging Cable,2,11.95,03/13/19 01:21,"799 Adams St, Los Angeles, CA 90001" +172810,Bose SoundSport Headphones,1,99.99,03/05/19 08:04,"127 Meadow St, New York City, NY 10001" +172811,AA Batteries (4-pack),2,3.84,03/29/19 09:28,"590 Maple St, San Francisco, CA 94016" +172812,Wired Headphones,1,11.99,03/01/19 14:27,"578 4th St, San Francisco, CA 94016" +172812,Apple Airpods Headphones,1,150,03/01/19 14:27,"578 4th St, San Francisco, CA 94016" +172813,iPhone,1,700,03/07/19 17:08,"236 8th St, Atlanta, GA 30301" +172814,USB-C Charging Cable,1,11.95,03/27/19 14:10,"821 12th St, New York City, NY 10001" +172815,Apple Airpods Headphones,1,150,03/24/19 22:19,"967 12th St, Boston, MA 02215" +172816,Apple Airpods Headphones,1,150,03/13/19 13:43,"568 Ridge St, San Francisco, CA 94016" +172817,27in 4K Gaming Monitor,1,389.99,03/19/19 17:33,"767 4th St, Seattle, WA 98101" +172818,ThinkPad Laptop,1,999.99,03/01/19 17:55,"224 4th St, San Francisco, CA 94016" +172819,Bose SoundSport Headphones,1,99.99,03/07/19 04:59,"34 Park St, Atlanta, GA 30301" +172820,Wired Headphones,1,11.99,03/30/19 11:26,"556 Main St, Atlanta, GA 30301" +172821,Apple Airpods Headphones,1,150,03/05/19 13:56,"957 5th St, Los Angeles, CA 90001" +172822,34in Ultrawide Monitor,1,379.99,03/21/19 07:32,"547 7th St, Dallas, TX 75001" +172823,20in Monitor,1,109.99,03/23/19 16:03,"858 Washington St, San Francisco, CA 94016" +172824,20in Monitor,1,109.99,03/03/19 15:04,"253 Sunset St, Portland, OR 97035" +172825,Apple Airpods Headphones,1,150,03/12/19 19:03,"570 Jackson St, San Francisco, CA 94016" +172826,Lightning Charging Cable,1,14.95,03/02/19 10:21,"427 Meadow St, Los Angeles, CA 90001" +172827,USB-C Charging Cable,1,11.95,03/05/19 05:48,"78 5th St, San Francisco, CA 94016" +172828,USB-C Charging Cable,1,11.95,03/06/19 11:07,"716 Dogwood St, Portland, ME 04101" +172829,Lightning Charging Cable,2,14.95,03/01/19 12:47,"475 Hill St, San Francisco, CA 94016" +172830,Lightning Charging Cable,1,14.95,03/25/19 08:36,"719 13th St, Dallas, TX 75001" +172831,Lightning Charging Cable,1,14.95,03/13/19 12:32,"259 North St, Los Angeles, CA 90001" +172832,Apple Airpods Headphones,1,150,03/28/19 09:25,"530 North St, Los Angeles, CA 90001" +172833,Lightning Charging Cable,1,14.95,03/22/19 08:11,"728 Johnson St, Seattle, WA 98101" +172834,34in Ultrawide Monitor,1,379.99,03/24/19 17:21,"143 14th St, Atlanta, GA 30301" +172835,USB-C Charging Cable,1,11.95,03/19/19 11:02,"5 Chestnut St, Dallas, TX 75001" +172836,USB-C Charging Cable,1,11.95,03/08/19 19:32,"273 7th St, Boston, MA 02215" +172837,27in FHD Monitor,1,149.99,03/10/19 00:03,"680 Hickory St, Dallas, TX 75001" +172838,Google Phone,1,600,03/11/19 22:04,"399 9th St, Dallas, TX 75001" +172839,Lightning Charging Cable,1,14.95,03/11/19 15:19,"341 South St, Austin, TX 73301" +172840,USB-C Charging Cable,1,11.95,03/22/19 14:11,"114 2nd St, Dallas, TX 75001" +172841,USB-C Charging Cable,1,11.95,03/18/19 13:20,"693 Jefferson St, San Francisco, CA 94016" +172842,AA Batteries (4-pack),1,3.84,03/17/19 09:38,"516 Elm St, New York City, NY 10001" +172843,Macbook Pro Laptop,1,1700,03/26/19 07:39,"251 Walnut St, Portland, OR 97035" +172844,USB-C Charging Cable,1,11.95,03/18/19 13:37,"280 Highland St, Austin, TX 73301" +172845,Bose SoundSport Headphones,1,99.99,03/08/19 18:22,"701 South St, New York City, NY 10001" +172846,AA Batteries (4-pack),1,3.84,03/24/19 17:02,"757 Jefferson St, Portland, OR 97035" +172847,Lightning Charging Cable,1,14.95,03/05/19 11:06,"599 Walnut St, Los Angeles, CA 90001" +172848,27in FHD Monitor,1,149.99,03/05/19 11:10,"332 7th St, San Francisco, CA 94016" +172849,Bose SoundSport Headphones,1,99.99,03/29/19 21:37,"822 8th St, Los Angeles, CA 90001" +172850,Google Phone,1,600,03/05/19 11:28,"167 North St, Atlanta, GA 30301" +172851,AAA Batteries (4-pack),2,2.99,03/26/19 19:51,"968 Lake St, Boston, MA 02215" +172852,USB-C Charging Cable,1,11.95,03/31/19 13:47,"635 Hickory St, San Francisco, CA 94016" +172853,AAA Batteries (4-pack),1,2.99,03/26/19 15:30,"327 Jefferson St, New York City, NY 10001" +172853,AAA Batteries (4-pack),2,2.99,03/26/19 15:30,"327 Jefferson St, New York City, NY 10001" +172854,AA Batteries (4-pack),1,3.84,03/21/19 06:58,"811 Hill St, Atlanta, GA 30301" +172855,Lightning Charging Cable,1,14.95,03/29/19 15:03,"424 Hickory St, Boston, MA 02215" +172856,Wired Headphones,1,11.99,03/10/19 22:40,"459 5th St, Boston, MA 02215" +172857,Wired Headphones,1,11.99,03/31/19 12:38,"576 Pine St, Los Angeles, CA 90001" +172858,Flatscreen TV,1,300,03/08/19 10:50,"238 Lake St, San Francisco, CA 94016" +172859,AAA Batteries (4-pack),1,2.99,03/19/19 10:53,"174 South St, Portland, OR 97035" +172860,Macbook Pro Laptop,1,1700,03/10/19 17:26,"785 13th St, Los Angeles, CA 90001" +172861,AA Batteries (4-pack),1,3.84,03/24/19 06:52,"249 Cedar St, San Francisco, CA 94016" +172862,27in 4K Gaming Monitor,1,389.99,03/12/19 19:42,"250 River St, San Francisco, CA 94016" +172862,Wired Headphones,1,11.99,03/12/19 19:42,"250 River St, San Francisco, CA 94016" +172863,AAA Batteries (4-pack),1,2.99,03/29/19 10:51,"639 Hickory St, Seattle, WA 98101" +172864,34in Ultrawide Monitor,1,379.99,03/23/19 18:18,"142 Washington St, Dallas, TX 75001" +172865,Wired Headphones,1,11.99,03/13/19 14:52,"510 Church St, New York City, NY 10001" +172866,Bose SoundSport Headphones,2,99.99,03/11/19 20:24,"609 Spruce St, Los Angeles, CA 90001" +172867,USB-C Charging Cable,1,11.95,03/13/19 03:08,"610 13th St, New York City, NY 10001" +172868,Lightning Charging Cable,1,14.95,03/11/19 23:21,"881 North St, Seattle, WA 98101" +172869,Apple Airpods Headphones,1,150,03/04/19 19:54,"80 1st St, Los Angeles, CA 90001" +172870,27in FHD Monitor,1,149.99,03/06/19 20:20,"917 Walnut St, Austin, TX 73301" +172870,AA Batteries (4-pack),1,3.84,03/06/19 20:20,"917 Walnut St, Austin, TX 73301" +172871,AAA Batteries (4-pack),1,2.99,03/26/19 00:39,"210 13th St, Boston, MA 02215" +172872,AAA Batteries (4-pack),1,2.99,03/23/19 23:15,"549 Ridge St, San Francisco, CA 94016" +172873,Lightning Charging Cable,2,14.95,03/12/19 07:15,"265 Highland St, Austin, TX 73301" +172874,27in 4K Gaming Monitor,1,389.99,03/02/19 10:53,"961 Washington St, San Francisco, CA 94016" +172875,Wired Headphones,1,11.99,03/07/19 17:53,"135 Cherry St, San Francisco, CA 94016" +172876,Bose SoundSport Headphones,1,99.99,03/21/19 15:40,"921 14th St, Portland, OR 97035" +172877,iPhone,1,700,03/22/19 12:13,"441 12th St, Boston, MA 02215" +172878,USB-C Charging Cable,1,11.95,03/10/19 14:25,"817 9th St, Austin, TX 73301" +172879,Apple Airpods Headphones,1,150,03/17/19 10:14,"898 7th St, Dallas, TX 75001" +172880,iPhone,1,700,03/15/19 20:56,"900 Center St, San Francisco, CA 94016" +172881,Lightning Charging Cable,2,14.95,03/20/19 11:09,"935 11th St, Los Angeles, CA 90001" +172882,Lightning Charging Cable,1,14.95,03/06/19 18:58,"210 Lake St, Los Angeles, CA 90001" +172882,Apple Airpods Headphones,1,150,03/06/19 18:58,"210 Lake St, Los Angeles, CA 90001" +172883,AA Batteries (4-pack),2,3.84,03/21/19 09:30,"715 Hill St, Seattle, WA 98101" +172884,Flatscreen TV,1,300,03/19/19 17:34,"496 Jackson St, San Francisco, CA 94016" +172885,Bose SoundSport Headphones,1,99.99,03/28/19 21:51,"127 Hickory St, San Francisco, CA 94016" +172886,34in Ultrawide Monitor,1,379.99,03/30/19 18:33,"436 Church St, New York City, NY 10001" +172887,AAA Batteries (4-pack),1,2.99,03/13/19 06:48,"356 South St, San Francisco, CA 94016" +172888,Apple Airpods Headphones,1,150,03/24/19 12:43,"350 Walnut St, Los Angeles, CA 90001" +172889,Wired Headphones,1,11.99,03/09/19 12:23,"4 1st St, Los Angeles, CA 90001" +172890,27in 4K Gaming Monitor,1,389.99,03/08/19 20:16,"283 Ridge St, San Francisco, CA 94016" +172891,AAA Batteries (4-pack),2,2.99,03/28/19 12:24,"93 Spruce St, Boston, MA 02215" +172892,USB-C Charging Cable,1,11.95,03/22/19 14:02,"136 Jefferson St, Boston, MA 02215" +172893,20in Monitor,1,109.99,03/13/19 20:37,"511 Chestnut St, Atlanta, GA 30301" +172894,AA Batteries (4-pack),2,3.84,03/26/19 09:14,"585 11th St, Portland, OR 97035" +172895,Macbook Pro Laptop,1,1700,03/16/19 23:13,"692 Meadow St, Los Angeles, CA 90001" +172896,27in 4K Gaming Monitor,1,389.99,03/08/19 18:42,"37 Spruce St, Boston, MA 02215" +172897,iPhone,1,700,03/17/19 23:02,"616 North St, San Francisco, CA 94016" +172898,Bose SoundSport Headphones,1,99.99,03/30/19 20:55,"817 Cedar St, Los Angeles, CA 90001" +172899,AAA Batteries (4-pack),3,2.99,03/07/19 22:28,"865 Cedar St, Dallas, TX 75001" +172900,ThinkPad Laptop,1,999.99,03/26/19 21:03,"554 12th St, Los Angeles, CA 90001" +172901,Bose SoundSport Headphones,1,99.99,03/13/19 21:18,"903 Washington St, Atlanta, GA 30301" +172902,USB-C Charging Cable,1,11.95,03/30/19 17:06,"152 Walnut St, Boston, MA 02215" +172903,USB-C Charging Cable,1,11.95,03/10/19 17:51,"805 5th St, San Francisco, CA 94016" +172904,ThinkPad Laptop,1,999.99,03/15/19 14:56,"698 Pine St, San Francisco, CA 94016" +172905,Wired Headphones,1,11.99,03/11/19 12:05,"135 14th St, New York City, NY 10001" +172906,AA Batteries (4-pack),1,3.84,03/26/19 13:09,"848 6th St, San Francisco, CA 94016" +172907,Lightning Charging Cable,1,14.95,03/17/19 07:52,"772 River St, Dallas, TX 75001" +172908,ThinkPad Laptop,1,999.99,03/01/19 12:06,"609 South St, Boston, MA 02215" +172909,USB-C Charging Cable,1,11.95,03/13/19 19:14,"774 11th St, Austin, TX 73301" +172910,Lightning Charging Cable,1,14.95,03/12/19 22:13,"668 Ridge St, Portland, OR 97035" +172911,Bose SoundSport Headphones,1,99.99,03/21/19 19:27,"971 9th St, New York City, NY 10001" +172912,USB-C Charging Cable,1,11.95,03/26/19 10:25,"626 Cherry St, Atlanta, GA 30301" +172913,Lightning Charging Cable,1,14.95,03/01/19 15:55,"94 West St, San Francisco, CA 94016" +172914,USB-C Charging Cable,1,11.95,03/15/19 15:31,"910 6th St, San Francisco, CA 94016" +172915,Lightning Charging Cable,1,14.95,03/11/19 12:46,"453 14th St, Boston, MA 02215" +172916,Bose SoundSport Headphones,1,99.99,03/25/19 22:53,"979 8th St, Boston, MA 02215" +172917,Lightning Charging Cable,1,14.95,03/22/19 22:31,"854 Lakeview St, Seattle, WA 98101" +172918,Google Phone,1,600,03/11/19 19:59,"937 Lake St, Seattle, WA 98101" +172918,USB-C Charging Cable,2,11.95,03/11/19 19:59,"937 Lake St, Seattle, WA 98101" +172919,AA Batteries (4-pack),1,3.84,03/11/19 14:25,"671 2nd St, Atlanta, GA 30301" +172920,AA Batteries (4-pack),2,3.84,03/14/19 06:30,"310 Lakeview St, Boston, MA 02215" +172921,Wired Headphones,1,11.99,03/19/19 18:59,"167 Lake St, Atlanta, GA 30301" +172922,Flatscreen TV,1,300,03/18/19 21:49,"281 Highland St, San Francisco, CA 94016" +172923,Wired Headphones,1,11.99,03/09/19 10:19,"419 Wilson St, Dallas, TX 75001" +172924,Apple Airpods Headphones,1,150,03/29/19 15:55,"233 Hickory St, Dallas, TX 75001" +172925,AA Batteries (4-pack),5,3.84,03/19/19 13:28,"876 West St, Austin, TX 73301" +172926,27in FHD Monitor,1,149.99,03/21/19 14:28,"405 Main St, San Francisco, CA 94016" +172927,AAA Batteries (4-pack),2,2.99,03/07/19 17:09,"307 Cedar St, Austin, TX 73301" +172928,27in FHD Monitor,1,149.99,03/23/19 13:42,"705 Dogwood St, Boston, MA 02215" +172929,AAA Batteries (4-pack),1,2.99,03/05/19 21:19,"455 South St, Seattle, WA 98101" +172930,27in 4K Gaming Monitor,1,389.99,03/15/19 15:33,"700 Willow St, Seattle, WA 98101" +172931,27in 4K Gaming Monitor,1,389.99,03/26/19 15:56,"40 7th St, Seattle, WA 98101" +172932,27in FHD Monitor,1,149.99,03/03/19 23:03,"642 Jackson St, Atlanta, GA 30301" +172933,iPhone,1,700,03/12/19 19:48,"740 Adams St, Boston, MA 02215" +172934,USB-C Charging Cable,1,11.95,03/08/19 09:53,"229 West St, San Francisco, CA 94016" +172935,27in FHD Monitor,1,149.99,03/22/19 00:03,"447 8th St, Atlanta, GA 30301" +172936,LG Dryer,1,600.0,03/14/19 13:40,"631 6th St, San Francisco, CA 94016" +172937,34in Ultrawide Monitor,1,379.99,03/05/19 11:20,"157 River St, Los Angeles, CA 90001" +172938,AA Batteries (4-pack),1,3.84,03/16/19 19:28,"404 Pine St, Los Angeles, CA 90001" +172939,USB-C Charging Cable,1,11.95,03/08/19 11:25,"402 South St, New York City, NY 10001" +172940,USB-C Charging Cable,1,11.95,03/24/19 09:28,"120 Hill St, San Francisco, CA 94016" +172941,Lightning Charging Cable,1,14.95,03/04/19 18:40,"47 6th St, Los Angeles, CA 90001" +172942,Lightning Charging Cable,1,14.95,03/05/19 09:26,"442 Sunset St, Boston, MA 02215" +172943,iPhone,1,700,03/22/19 14:53,"200 9th St, Boston, MA 02215" +172944,USB-C Charging Cable,1,11.95,03/18/19 09:28,"204 Center St, San Francisco, CA 94016" +172945,AAA Batteries (4-pack),1,2.99,03/11/19 01:27,"230 6th St, San Francisco, CA 94016" +172946,AAA Batteries (4-pack),1,2.99,03/11/19 16:40,"742 Highland St, San Francisco, CA 94016" +172947,Lightning Charging Cable,1,14.95,03/15/19 14:05,"466 6th St, Seattle, WA 98101" +172948,Lightning Charging Cable,1,14.95,03/02/19 17:10,"990 4th St, San Francisco, CA 94016" +172949,Lightning Charging Cable,1,14.95,03/22/19 16:45,"685 Wilson St, San Francisco, CA 94016" +172950,27in 4K Gaming Monitor,1,389.99,03/08/19 20:04,"863 Madison St, San Francisco, CA 94016" +172951,Wired Headphones,2,11.99,03/03/19 19:46,"18 4th St, New York City, NY 10001" +172952,Lightning Charging Cable,1,14.95,03/03/19 16:32,"138 Adams St, Los Angeles, CA 90001" +172953,20in Monitor,1,109.99,03/15/19 14:36,"168 Cedar St, Dallas, TX 75001" +172954,Wired Headphones,1,11.99,03/01/19 19:58,"43 North St, San Francisco, CA 94016" +172955,AA Batteries (4-pack),1,3.84,03/20/19 16:36,"758 13th St, Los Angeles, CA 90001" +172956,AAA Batteries (4-pack),1,2.99,03/04/19 22:25,"435 South St, Portland, OR 97035" +172957,Lightning Charging Cable,1,14.95,03/13/19 10:23,"543 Church St, Los Angeles, CA 90001" +172958,Lightning Charging Cable,1,14.95,03/26/19 09:08,"306 Willow St, Portland, OR 97035" +172959,Google Phone,1,600,03/06/19 09:00,"142 Forest St, San Francisco, CA 94016" +172960,USB-C Charging Cable,1,11.95,03/03/19 12:12,"78 Main St, Portland, OR 97035" +172961,USB-C Charging Cable,1,11.95,03/23/19 19:45,"82 Main St, San Francisco, CA 94016" +172962,AAA Batteries (4-pack),1,2.99,03/15/19 20:46,"283 Main St, Dallas, TX 75001" +172963,AAA Batteries (4-pack),1,2.99,03/28/19 11:41,"432 8th St, San Francisco, CA 94016" +172964,Macbook Pro Laptop,1,1700,03/11/19 09:34,"336 River St, Atlanta, GA 30301" +172965,Wired Headphones,1,11.99,03/14/19 19:53,"864 7th St, San Francisco, CA 94016" +172966,USB-C Charging Cable,1,11.95,03/02/19 12:07,"353 Hill St, Los Angeles, CA 90001" +172967,iPhone,1,700,03/25/19 21:55,"197 Main St, New York City, NY 10001" +172967,Lightning Charging Cable,1,14.95,03/25/19 21:55,"197 Main St, New York City, NY 10001" +172968,Lightning Charging Cable,1,14.95,03/24/19 19:17,"295 Pine St, Los Angeles, CA 90001" +172969,20in Monitor,1,109.99,03/15/19 16:57,"764 Jackson St, Boston, MA 02215" +172970,Apple Airpods Headphones,1,150,03/19/19 03:55,"241 4th St, Austin, TX 73301" +172971,AAA Batteries (4-pack),1,2.99,03/13/19 18:38,"167 8th St, Los Angeles, CA 90001" +172972,USB-C Charging Cable,1,11.95,03/08/19 19:01,"705 Washington St, Boston, MA 02215" +172973,27in 4K Gaming Monitor,1,389.99,03/31/19 14:10,"51 12th St, Los Angeles, CA 90001" +172974,Apple Airpods Headphones,1,150,03/20/19 17:44,"593 Lakeview St, San Francisco, CA 94016" +172975,20in Monitor,1,109.99,03/12/19 10:50,"724 North St, San Francisco, CA 94016" +172976,Google Phone,1,600,03/21/19 19:21,"981 13th St, San Francisco, CA 94016" +172977,27in FHD Monitor,1,149.99,03/18/19 11:45,"115 Ridge St, San Francisco, CA 94016" +172978,Lightning Charging Cable,1,14.95,03/15/19 18:58,"662 Chestnut St, Los Angeles, CA 90001" +172979,iPhone,1,700,03/26/19 11:55,"710 Park St, Atlanta, GA 30301" +172980,Lightning Charging Cable,1,14.95,03/10/19 12:02,"457 Meadow St, Los Angeles, CA 90001" +172981,USB-C Charging Cable,1,11.95,03/08/19 18:03,"118 Jackson St, Boston, MA 02215" +172982,AA Batteries (4-pack),1,3.84,03/22/19 11:37,"765 Lincoln St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +172983,AAA Batteries (4-pack),1,2.99,03/05/19 20:50,"351 Jefferson St, New York City, NY 10001" +172984,Lightning Charging Cable,1,14.95,03/09/19 13:27,"82 6th St, Atlanta, GA 30301" +172985,Wired Headphones,1,11.99,03/11/19 20:24,"691 5th St, Seattle, WA 98101" +172986,34in Ultrawide Monitor,1,379.99,03/10/19 21:54,"301 Lakeview St, Portland, OR 97035" +172987,USB-C Charging Cable,1,11.95,03/14/19 00:30,"771 Maple St, Seattle, WA 98101" +172988,Bose SoundSport Headphones,1,99.99,03/27/19 12:16,"213 Cedar St, San Francisco, CA 94016" +172989,34in Ultrawide Monitor,1,379.99,03/04/19 20:01,"29 Elm St, Portland, OR 97035" +172990,Wired Headphones,2,11.99,03/22/19 20:47,"415 2nd St, Boston, MA 02215" +172991,AA Batteries (4-pack),1,3.84,03/10/19 18:58,"67 Meadow St, Dallas, TX 75001" +172992,27in FHD Monitor,1,149.99,03/18/19 16:48,"956 Church St, Seattle, WA 98101" +172993,27in FHD Monitor,1,149.99,03/14/19 19:00,"931 Lincoln St, Portland, ME 04101" +172994,Apple Airpods Headphones,1,150,03/15/19 19:19,"242 Pine St, Los Angeles, CA 90001" +172995,AA Batteries (4-pack),1,3.84,03/02/19 01:50,"444 2nd St, Seattle, WA 98101" +172996,Apple Airpods Headphones,1,150,03/24/19 11:36,"785 11th St, Portland, ME 04101" +172997,AA Batteries (4-pack),2,3.84,03/10/19 17:20,"3 Hickory St, Portland, OR 97035" +172998,iPhone,1,700,03/30/19 18:22,"717 11th St, San Francisco, CA 94016" +172998,Lightning Charging Cable,1,14.95,03/30/19 18:22,"717 11th St, San Francisco, CA 94016" +172999,Apple Airpods Headphones,1,150,03/01/19 10:58,"918 Chestnut St, Los Angeles, CA 90001" +173000,27in 4K Gaming Monitor,1,389.99,03/02/19 19:03,"603 Madison St, Los Angeles, CA 90001" +173001,Flatscreen TV,1,300,03/19/19 16:14,"276 7th St, San Francisco, CA 94016" +173002,Bose SoundSport Headphones,1,99.99,03/16/19 22:44,"737 Wilson St, San Francisco, CA 94016" +173003,Flatscreen TV,1,300,03/23/19 06:57,"724 Pine St, Austin, TX 73301" +173004,Flatscreen TV,1,300,03/12/19 17:59,"542 9th St, Los Angeles, CA 90001" +173005,Lightning Charging Cable,1,14.95,03/19/19 18:48,"242 Walnut St, Dallas, TX 75001" +173006,Wired Headphones,1,11.99,03/17/19 15:04,"978 Center St, Los Angeles, CA 90001" +173007,Wired Headphones,1,11.99,03/12/19 12:39,"100 Jefferson St, Portland, ME 04101" +173008,USB-C Charging Cable,1,11.95,03/24/19 22:34,"723 Madison St, San Francisco, CA 94016" +173009,Bose SoundSport Headphones,1,99.99,03/15/19 14:00,"448 Lake St, Boston, MA 02215" +173010,AA Batteries (4-pack),1,3.84,03/24/19 14:22,"724 Madison St, Dallas, TX 75001" +173011,34in Ultrawide Monitor,1,379.99,03/02/19 13:26,"242 Pine St, Boston, MA 02215" +173012,Wired Headphones,1,11.99,03/15/19 19:56,"99 1st St, New York City, NY 10001" +173013,USB-C Charging Cable,1,11.95,03/21/19 11:22,"397 Meadow St, Dallas, TX 75001" +173014,Wired Headphones,1,11.99,03/10/19 09:56,"50 Cherry St, Dallas, TX 75001" +173015,Apple Airpods Headphones,1,150,03/05/19 12:55,"955 Ridge St, Dallas, TX 75001" +173016,AA Batteries (4-pack),3,3.84,03/09/19 10:50,"98 Johnson St, Los Angeles, CA 90001" +173017,USB-C Charging Cable,1,11.95,03/06/19 09:52,"788 1st St, Boston, MA 02215" +173018,Apple Airpods Headphones,1,150,03/10/19 21:16,"971 14th St, San Francisco, CA 94016" +173019,Apple Airpods Headphones,1,150,03/17/19 23:22,"958 Madison St, San Francisco, CA 94016" +173020,34in Ultrawide Monitor,1,379.99,03/04/19 18:56,"32 Walnut St, Austin, TX 73301" +173021,AAA Batteries (4-pack),1,2.99,03/11/19 13:42,"512 Hickory St, Seattle, WA 98101" +173022,iPhone,1,700,03/04/19 19:02,"877 Forest St, Austin, TX 73301" +173022,Wired Headphones,1,11.99,03/04/19 19:02,"877 Forest St, Austin, TX 73301" +173023,27in FHD Monitor,1,149.99,03/04/19 15:28,"55 Park St, Los Angeles, CA 90001" +173024,Bose SoundSport Headphones,1,99.99,03/07/19 08:49,"236 Johnson St, Boston, MA 02215" +173025,27in FHD Monitor,1,149.99,03/04/19 12:03,"488 Maple St, Dallas, TX 75001" +173026,27in 4K Gaming Monitor,1,389.99,03/13/19 06:41,"387 Madison St, Portland, OR 97035" +173027,Wired Headphones,1,11.99,03/22/19 09:42,"50 Center St, Atlanta, GA 30301" +173028,Wired Headphones,1,11.99,03/07/19 10:09,"466 10th St, San Francisco, CA 94016" +173028,Bose SoundSport Headphones,1,99.99,03/07/19 10:09,"466 10th St, San Francisco, CA 94016" +173029,USB-C Charging Cable,1,11.95,03/10/19 01:28,"909 North St, New York City, NY 10001" +173030,AA Batteries (4-pack),1,3.84,03/21/19 18:16,"419 River St, Portland, OR 97035" +173031,Flatscreen TV,1,300,03/10/19 21:45,"596 Lincoln St, San Francisco, CA 94016" +173032,Wired Headphones,1,11.99,03/13/19 11:09,"909 Church St, Boston, MA 02215" +173033,Wired Headphones,1,11.99,03/02/19 14:12,"343 Ridge St, San Francisco, CA 94016" +173034,Apple Airpods Headphones,1,150,03/12/19 00:42,"309 Ridge St, Atlanta, GA 30301" +173035,AAA Batteries (4-pack),1,2.99,03/10/19 15:15,"930 Pine St, Dallas, TX 75001" +173036,Lightning Charging Cable,1,14.95,03/28/19 13:11,"903 2nd St, Atlanta, GA 30301" +173037,AA Batteries (4-pack),2,3.84,03/13/19 18:32,"109 North St, San Francisco, CA 94016" +173038,AAA Batteries (4-pack),1,2.99,03/17/19 20:44,"392 Pine St, Boston, MA 02215" +173039,Apple Airpods Headphones,1,150,03/20/19 17:34,"333 7th St, Los Angeles, CA 90001" +173040,Bose SoundSport Headphones,1,99.99,03/17/19 18:50,"171 Pine St, San Francisco, CA 94016" +173041,Lightning Charging Cable,1,14.95,03/01/19 21:01,"861 4th St, New York City, NY 10001" +173042,USB-C Charging Cable,1,11.95,03/15/19 19:50,"662 7th St, Dallas, TX 75001" +173043,Apple Airpods Headphones,1,150,03/23/19 22:25,"772 Madison St, Los Angeles, CA 90001" +173044,USB-C Charging Cable,1,11.95,03/04/19 20:01,"192 Meadow St, New York City, NY 10001" +173045,Wired Headphones,1,11.99,03/23/19 11:02,"463 Dogwood St, San Francisco, CA 94016" +173046,Wired Headphones,1,11.99,03/27/19 22:15,"152 Maple St, Boston, MA 02215" +173047,27in 4K Gaming Monitor,1,389.99,03/22/19 17:20,"143 Cherry St, Los Angeles, CA 90001" +173048,Vareebadd Phone,1,400,03/28/19 14:38,"43 Highland St, Los Angeles, CA 90001" +173049,27in 4K Gaming Monitor,1,389.99,03/06/19 09:11,"843 West St, Los Angeles, CA 90001" +173050,USB-C Charging Cable,1,11.95,03/30/19 12:22,"939 Meadow St, San Francisco, CA 94016" +173051,Lightning Charging Cable,1,14.95,03/30/19 14:48,"755 Sunset St, Seattle, WA 98101" +173052,Lightning Charging Cable,1,14.95,03/06/19 12:08,"80 Sunset St, San Francisco, CA 94016" +173053,Bose SoundSport Headphones,1,99.99,03/13/19 12:09,"408 Lincoln St, Atlanta, GA 30301" +173054,Lightning Charging Cable,1,14.95,03/09/19 17:22,"885 Adams St, San Francisco, CA 94016" +173055,Wired Headphones,1,11.99,03/18/19 15:36,"644 Church St, Atlanta, GA 30301" +173056,34in Ultrawide Monitor,1,379.99,03/19/19 00:19,"862 Pine St, San Francisco, CA 94016" +173057,Wired Headphones,1,11.99,03/06/19 20:32,"420 Wilson St, Los Angeles, CA 90001" +173058,iPhone,1,700,03/26/19 17:57,"201 Spruce St, San Francisco, CA 94016" +173058,Apple Airpods Headphones,1,150,03/26/19 17:57,"201 Spruce St, San Francisco, CA 94016" +173059,USB-C Charging Cable,1,11.95,03/03/19 12:17,"914 Sunset St, Portland, OR 97035" +173060,27in 4K Gaming Monitor,1,389.99,03/13/19 11:49,"588 Chestnut St, Los Angeles, CA 90001" +173061,AAA Batteries (4-pack),1,2.99,03/07/19 05:58,"758 Spruce St, Portland, OR 97035" +173062,USB-C Charging Cable,1,11.95,03/10/19 10:12,"967 Lincoln St, San Francisco, CA 94016" +173063,iPhone,1,700,03/08/19 14:09,"501 Johnson St, Atlanta, GA 30301" +173064,27in FHD Monitor,1,149.99,03/23/19 11:14,"262 Adams St, Portland, OR 97035" +173065,34in Ultrawide Monitor,1,379.99,03/15/19 20:02,"378 Church St, New York City, NY 10001" +173066,Lightning Charging Cable,1,14.95,03/05/19 12:53,"992 Highland St, New York City, NY 10001" +173067,34in Ultrawide Monitor,1,379.99,03/05/19 11:15,"713 South St, Dallas, TX 75001" +173068,Lightning Charging Cable,1,14.95,03/20/19 13:47,"212 Elm St, Atlanta, GA 30301" +173069,Lightning Charging Cable,1,14.95,03/25/19 13:31,"242 Lake St, Atlanta, GA 30301" +173070,Bose SoundSport Headphones,1,99.99,03/11/19 01:31,"425 Cedar St, Boston, MA 02215" +173071,Wired Headphones,1,11.99,03/23/19 10:27,"583 6th St, Boston, MA 02215" +173072,Lightning Charging Cable,1,14.95,03/26/19 19:40,"4 12th St, Los Angeles, CA 90001" +173073,AA Batteries (4-pack),1,3.84,03/14/19 06:30,"947 Hill St, Seattle, WA 98101" +173074,27in 4K Gaming Monitor,1,389.99,03/18/19 17:06,"957 Ridge St, Los Angeles, CA 90001" +173075,20in Monitor,1,109.99,03/21/19 15:46,"269 Sunset St, San Francisco, CA 94016" +173076,34in Ultrawide Monitor,1,379.99,03/25/19 14:46,"470 Forest St, San Francisco, CA 94016" +173077,34in Ultrawide Monitor,1,379.99,03/18/19 15:58,"365 Forest St, San Francisco, CA 94016" +173078,Lightning Charging Cable,1,14.95,03/02/19 19:53,"573 Jackson St, New York City, NY 10001" +173079,Lightning Charging Cable,1,14.95,03/11/19 19:03,"871 5th St, Seattle, WA 98101" +173080,Vareebadd Phone,1,400,03/18/19 18:41,"211 West St, Los Angeles, CA 90001" +173081,AA Batteries (4-pack),1,3.84,03/29/19 21:52,"469 13th St, Los Angeles, CA 90001" +173082,USB-C Charging Cable,1,11.95,03/29/19 00:16,"798 Elm St, Los Angeles, CA 90001" +173083,Apple Airpods Headphones,1,150,03/29/19 17:28,"461 8th St, Portland, OR 97035" +173084,USB-C Charging Cable,1,11.95,03/22/19 09:09,"896 12th St, San Francisco, CA 94016" +173085,Apple Airpods Headphones,1,150,03/21/19 10:38,"443 Lincoln St, Seattle, WA 98101" +173086,Lightning Charging Cable,1,14.95,03/28/19 12:00,"969 Walnut St, Atlanta, GA 30301" +173087,Apple Airpods Headphones,1,150,03/04/19 19:29,"558 9th St, Los Angeles, CA 90001" +173088,Wired Headphones,1,11.99,03/02/19 11:16,"508 Jackson St, Los Angeles, CA 90001" +173089,Macbook Pro Laptop,1,1700,03/27/19 12:30,"222 Main St, San Francisco, CA 94016" +173090,Lightning Charging Cable,1,14.95,03/14/19 22:56,"194 Ridge St, Seattle, WA 98101" +173091,Lightning Charging Cable,1,14.95,03/26/19 16:13,"582 5th St, San Francisco, CA 94016" +173092,USB-C Charging Cable,1,11.95,03/12/19 17:19,"105 Willow St, New York City, NY 10001" +173093,27in 4K Gaming Monitor,1,389.99,03/09/19 18:50,"295 Ridge St, Portland, OR 97035" +173094,AA Batteries (4-pack),1,3.84,03/21/19 12:31,"526 2nd St, Seattle, WA 98101" +173095,27in FHD Monitor,1,149.99,03/23/19 10:50,"508 Adams St, Los Angeles, CA 90001" +173096,AAA Batteries (4-pack),2,2.99,03/25/19 14:41,"199 2nd St, Dallas, TX 75001" +173097,Bose SoundSport Headphones,1,99.99,03/18/19 03:28,"228 Cherry St, New York City, NY 10001" +173098,Wired Headphones,2,11.99,03/01/19 07:53,"190 Ridge St, Atlanta, GA 30301" +173099,AA Batteries (4-pack),1,3.84,03/28/19 17:50,"559 Spruce St, New York City, NY 10001" +173100,Bose SoundSport Headphones,1,99.99,03/15/19 08:52,"243 Ridge St, New York City, NY 10001" +173101,Google Phone,1,600,03/12/19 21:52,"614 Walnut St, Seattle, WA 98101" +173101,USB-C Charging Cable,1,11.95,03/12/19 21:52,"614 Walnut St, Seattle, WA 98101" +173102,AA Batteries (4-pack),1,3.84,03/12/19 15:00,"582 Cherry St, San Francisco, CA 94016" +173103,AAA Batteries (4-pack),1,2.99,03/02/19 18:45,"856 Walnut St, Los Angeles, CA 90001" +173104,20in Monitor,1,109.99,03/19/19 06:26,"941 Cedar St, Dallas, TX 75001" +173105,AAA Batteries (4-pack),2,2.99,03/27/19 17:40,"999 Highland St, Boston, MA 02215" +173106,USB-C Charging Cable,1,11.95,03/30/19 17:48,"946 Ridge St, San Francisco, CA 94016" +173107,27in FHD Monitor,1,149.99,03/22/19 10:41,"128 2nd St, New York City, NY 10001" +173108,iPhone,1,700,03/13/19 22:42,"611 1st St, Los Angeles, CA 90001" +173109,Google Phone,1,600,03/12/19 14:11,"860 Cedar St, Boston, MA 02215" +173110,Wired Headphones,1,11.99,03/05/19 19:50,"702 2nd St, San Francisco, CA 94016" +173111,AA Batteries (4-pack),1,3.84,03/24/19 21:05,"313 Forest St, Los Angeles, CA 90001" +173112,Lightning Charging Cable,1,14.95,03/19/19 14:48,"168 Meadow St, Los Angeles, CA 90001" +173113,USB-C Charging Cable,1,11.95,03/23/19 18:06,"76 8th St, San Francisco, CA 94016" +173114,USB-C Charging Cable,1,11.95,03/14/19 19:01,"816 Lakeview St, Dallas, TX 75001" +173115,Lightning Charging Cable,2,14.95,03/09/19 11:43,"905 9th St, Atlanta, GA 30301" +173116,Bose SoundSport Headphones,1,99.99,03/29/19 21:08,"4 Walnut St, Atlanta, GA 30301" +173117,iPhone,1,700,03/19/19 11:44,"33 Lake St, Dallas, TX 75001" +173117,Wired Headphones,1,11.99,03/19/19 11:44,"33 Lake St, Dallas, TX 75001" +173118,USB-C Charging Cable,1,11.95,03/30/19 23:15,"391 Wilson St, New York City, NY 10001" +173119,34in Ultrawide Monitor,1,379.99,03/07/19 20:45,"2 River St, San Francisco, CA 94016" +173120,27in 4K Gaming Monitor,1,389.99,03/10/19 00:08,"494 5th St, Seattle, WA 98101" +173121,AA Batteries (4-pack),1,3.84,03/13/19 06:46,"289 14th St, New York City, NY 10001" +173122,AAA Batteries (4-pack),1,2.99,03/16/19 15:04,"632 1st St, San Francisco, CA 94016" +173123,Bose SoundSport Headphones,1,99.99,03/02/19 08:47,"756 Ridge St, New York City, NY 10001" +173124,USB-C Charging Cable,1,11.95,03/13/19 09:15,"925 Maple St, Portland, OR 97035" +173125,AAA Batteries (4-pack),5,2.99,03/11/19 13:49,"675 Madison St, San Francisco, CA 94016" +173126,Wired Headphones,1,11.99,03/13/19 01:31,"759 9th St, New York City, NY 10001" +173127,AA Batteries (4-pack),1,3.84,03/11/19 19:44,"22 14th St, San Francisco, CA 94016" +173128,USB-C Charging Cable,1,11.95,03/02/19 14:10,"916 Park St, San Francisco, CA 94016" +173129,Lightning Charging Cable,1,14.95,03/20/19 21:03,"233 Madison St, San Francisco, CA 94016" +173130,Lightning Charging Cable,1,14.95,03/14/19 13:33,"721 13th St, Austin, TX 73301" +173131,AAA Batteries (4-pack),4,2.99,03/01/19 09:34,"17 Adams St, Los Angeles, CA 90001" +173132,USB-C Charging Cable,2,11.95,03/04/19 15:26,"969 4th St, San Francisco, CA 94016" +173133,AA Batteries (4-pack),1,3.84,03/07/19 07:06,"428 South St, San Francisco, CA 94016" +173134,Bose SoundSport Headphones,1,99.99,03/09/19 17:51,"412 Jackson St, New York City, NY 10001" +173135,AAA Batteries (4-pack),2,2.99,03/21/19 16:21,"114 North St, Boston, MA 02215" +173136,AA Batteries (4-pack),1,3.84,03/10/19 22:52,"494 Wilson St, Dallas, TX 75001" +173137,Macbook Pro Laptop,1,1700,03/21/19 18:43,"565 Chestnut St, Seattle, WA 98101" +173138,AAA Batteries (4-pack),3,2.99,03/20/19 14:44,"783 Center St, Seattle, WA 98101" +173139,AAA Batteries (4-pack),1,2.99,03/30/19 14:12,"510 2nd St, Austin, TX 73301" +173140,34in Ultrawide Monitor,1,379.99,03/15/19 14:32,"912 Dogwood St, Boston, MA 02215" +173141,20in Monitor,1,109.99,03/21/19 12:42,"236 Chestnut St, Boston, MA 02215" +173142,Bose SoundSport Headphones,1,99.99,03/26/19 10:45,"574 10th St, San Francisco, CA 94016" +173143,Bose SoundSport Headphones,1,99.99,03/22/19 15:07,"108 Jackson St, San Francisco, CA 94016" +173144,Wired Headphones,1,11.99,03/14/19 15:39,"891 9th St, Los Angeles, CA 90001" +173145,AAA Batteries (4-pack),1,2.99,03/30/19 10:06,"124 Lincoln St, San Francisco, CA 94016" +173146,Lightning Charging Cable,1,14.95,03/14/19 07:08,"440 River St, San Francisco, CA 94016" +173147,Google Phone,1,600,03/13/19 12:36,"788 Forest St, New York City, NY 10001" +173148,Bose SoundSport Headphones,1,99.99,03/08/19 12:27,"678 10th St, San Francisco, CA 94016" +173149,Google Phone,1,600,03/29/19 16:27,"406 Park St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +173150,27in FHD Monitor,1,149.99,03/10/19 21:11,"98 7th St, Dallas, TX 75001" +173151,Apple Airpods Headphones,1,150,03/23/19 12:31,"289 Madison St, Boston, MA 02215" +173152,USB-C Charging Cable,1,11.95,03/26/19 11:57,"867 Cherry St, Boston, MA 02215" +173153,AA Batteries (4-pack),1,3.84,03/07/19 15:23,"994 Willow St, San Francisco, CA 94016" +173154,USB-C Charging Cable,1,11.95,03/13/19 11:56,"857 Jefferson St, Boston, MA 02215" +173155,USB-C Charging Cable,1,11.95,03/23/19 19:42,"92 10th St, Dallas, TX 75001" +173156,iPhone,1,700,03/25/19 08:55,"394 Pine St, San Francisco, CA 94016" +173157,ThinkPad Laptop,1,999.99,03/18/19 18:33,"808 Cedar St, Dallas, TX 75001" +173158,AAA Batteries (4-pack),1,2.99,03/16/19 19:22,"619 Center St, Los Angeles, CA 90001" +173159,Bose SoundSport Headphones,1,99.99,03/07/19 21:27,"546 Forest St, Boston, MA 02215" +173160,Apple Airpods Headphones,1,150,03/21/19 11:55,"733 Spruce St, Boston, MA 02215" +173161,AA Batteries (4-pack),1,3.84,03/11/19 19:00,"954 Lakeview St, San Francisco, CA 94016" +173162,27in 4K Gaming Monitor,1,389.99,03/23/19 20:44,"350 Cherry St, Portland, OR 97035" +173163,Wired Headphones,1,11.99,03/18/19 18:24,"583 Hickory St, Seattle, WA 98101" +173164,Apple Airpods Headphones,1,150,03/25/19 22:20,"556 Lakeview St, Portland, OR 97035" +173165,USB-C Charging Cable,1,11.95,03/11/19 16:15,"453 Cedar St, New York City, NY 10001" +173166,20in Monitor,1,109.99,03/06/19 10:33,"649 Jefferson St, Boston, MA 02215" +173167,USB-C Charging Cable,1,11.95,03/01/19 09:50,"739 9th St, New York City, NY 10001" +173168,Lightning Charging Cable,1,14.95,03/17/19 15:12,"969 6th St, San Francisco, CA 94016" +173169,AA Batteries (4-pack),2,3.84,03/03/19 13:19,"289 Highland St, Seattle, WA 98101" +173170,AA Batteries (4-pack),1,3.84,03/06/19 05:11,"401 8th St, Seattle, WA 98101" +173171,Wired Headphones,1,11.99,03/20/19 17:57,"522 Sunset St, Boston, MA 02215" +173172,27in FHD Monitor,1,149.99,03/26/19 16:25,"337 Park St, Portland, ME 04101" +173173,Bose SoundSport Headphones,1,99.99,03/28/19 11:27,"638 1st St, San Francisco, CA 94016" +173174,AAA Batteries (4-pack),3,2.99,03/11/19 12:53,"591 9th St, New York City, NY 10001" +173175,Wired Headphones,1,11.99,03/27/19 17:45,"990 Adams St, San Francisco, CA 94016" +173176,USB-C Charging Cable,1,11.95,03/17/19 13:25,"758 Dogwood St, Seattle, WA 98101" +173177,Wired Headphones,1,11.99,03/02/19 19:27,"428 Main St, New York City, NY 10001" +173178,USB-C Charging Cable,1,11.95,03/12/19 19:27,"591 12th St, Los Angeles, CA 90001" +173179,Lightning Charging Cable,1,14.95,03/12/19 21:30,"292 Jackson St, San Francisco, CA 94016" +173180,AAA Batteries (4-pack),1,2.99,03/29/19 08:51,"21 River St, San Francisco, CA 94016" +173181,Bose SoundSport Headphones,1,99.99,03/18/19 07:24,"406 Cherry St, Los Angeles, CA 90001" +173182,AAA Batteries (4-pack),2,2.99,03/01/19 22:51,"986 5th St, New York City, NY 10001" +173183,20in Monitor,1,109.99,03/12/19 14:06,"345 5th St, San Francisco, CA 94016" +173184,USB-C Charging Cable,1,11.95,03/08/19 16:43,"269 Lincoln St, San Francisco, CA 94016" +173185,Flatscreen TV,1,300,03/20/19 20:39,"39 Willow St, Los Angeles, CA 90001" +173186,Lightning Charging Cable,1,14.95,03/04/19 22:22,"191 4th St, Los Angeles, CA 90001" +173187,AA Batteries (4-pack),1,3.84,03/11/19 12:05,"19 8th St, San Francisco, CA 94016" +173188,Lightning Charging Cable,1,14.95,03/22/19 20:17,"51 Lincoln St, Boston, MA 02215" +173189,34in Ultrawide Monitor,1,379.99,03/27/19 13:32,"73 4th St, Los Angeles, CA 90001" +173190,Macbook Pro Laptop,1,1700,03/22/19 17:18,"161 Hill St, Austin, TX 73301" +173191,Apple Airpods Headphones,1,150,03/09/19 10:50,"290 Walnut St, Dallas, TX 75001" +173192,AA Batteries (4-pack),1,3.84,03/21/19 00:52,"873 Ridge St, San Francisco, CA 94016" +173193,Apple Airpods Headphones,1,150,03/04/19 10:23,"182 Wilson St, Los Angeles, CA 90001" +173194,Wired Headphones,1,11.99,03/04/19 20:12,"765 Elm St, San Francisco, CA 94016" +173195,USB-C Charging Cable,5,11.95,03/26/19 14:18,"670 12th St, San Francisco, CA 94016" +173196,Bose SoundSport Headphones,1,99.99,03/05/19 11:45,"643 South St, Portland, ME 04101" +173197,USB-C Charging Cable,1,11.95,03/27/19 12:23,"524 14th St, Los Angeles, CA 90001" +173198,27in FHD Monitor,1,149.99,03/15/19 20:39,"339 Elm St, Atlanta, GA 30301" +173199,AAA Batteries (4-pack),2,2.99,03/21/19 22:28,"548 Walnut St, San Francisco, CA 94016" +173200,Wired Headphones,1,11.99,03/19/19 13:27,"949 2nd St, San Francisco, CA 94016" +173201,27in FHD Monitor,1,149.99,03/13/19 11:34,"438 Ridge St, San Francisco, CA 94016" +173202,Bose SoundSport Headphones,1,99.99,03/11/19 08:53,"135 7th St, New York City, NY 10001" +173203,AA Batteries (4-pack),1,3.84,03/03/19 12:27,"573 Center St, San Francisco, CA 94016" +173204,Google Phone,1,600,03/02/19 19:30,"983 12th St, Austin, TX 73301" +173205,AA Batteries (4-pack),1,3.84,03/22/19 22:33,"3 5th St, San Francisco, CA 94016" +173206,Apple Airpods Headphones,1,150,03/22/19 19:09,"921 Wilson St, New York City, NY 10001" +173207,Lightning Charging Cable,1,14.95,03/10/19 19:30,"145 Main St, New York City, NY 10001" +173208,Lightning Charging Cable,2,14.95,03/31/19 20:57,"288 4th St, San Francisco, CA 94016" +173209,AA Batteries (4-pack),1,3.84,03/17/19 19:50,"199 Wilson St, Atlanta, GA 30301" +173210,USB-C Charging Cable,1,11.95,03/22/19 16:12,"908 14th St, Dallas, TX 75001" +173211,USB-C Charging Cable,1,11.95,03/30/19 12:28,"915 Forest St, Seattle, WA 98101" +173212,USB-C Charging Cable,1,11.95,03/31/19 12:33,"107 Dogwood St, Los Angeles, CA 90001" +173213,AA Batteries (4-pack),1,3.84,03/13/19 15:33,"458 5th St, Dallas, TX 75001" +173214,Lightning Charging Cable,1,14.95,03/18/19 11:06,"869 10th St, Portland, OR 97035" +173215,Bose SoundSport Headphones,1,99.99,03/18/19 20:07,"620 10th St, Portland, OR 97035" +173216,Apple Airpods Headphones,1,150,03/07/19 21:22,"624 Pine St, New York City, NY 10001" +173217,AA Batteries (4-pack),1,3.84,03/17/19 19:31,"566 2nd St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +173218,Wired Headphones,1,11.99,03/28/19 09:46,"650 13th St, Atlanta, GA 30301" +173219,USB-C Charging Cable,1,11.95,03/20/19 16:29,"463 Lake St, Portland, OR 97035" +173220,34in Ultrawide Monitor,1,379.99,03/14/19 13:13,"346 North St, Los Angeles, CA 90001" +173221,AA Batteries (4-pack),1,3.84,03/11/19 22:58,"344 Hill St, Boston, MA 02215" +173222,iPhone,1,700,03/22/19 17:50,"932 Highland St, San Francisco, CA 94016" +173223,Apple Airpods Headphones,1,150,03/19/19 21:46,"976 Wilson St, San Francisco, CA 94016" +173224,AA Batteries (4-pack),1,3.84,03/21/19 19:05,"54 Spruce St, Atlanta, GA 30301" +173225,Macbook Pro Laptop,1,1700,03/01/19 09:11,"131 12th St, Dallas, TX 75001" +173226,Lightning Charging Cable,1,14.95,03/11/19 15:21,"722 Main St, Los Angeles, CA 90001" +173226,Lightning Charging Cable,1,14.95,03/11/19 15:21,"722 Main St, Los Angeles, CA 90001" +173227,Bose SoundSport Headphones,1,99.99,03/11/19 05:14,"864 Lake St, San Francisco, CA 94016" +173228,Lightning Charging Cable,1,14.95,03/13/19 15:16,"30 6th St, San Francisco, CA 94016" +173229,AA Batteries (4-pack),2,3.84,03/03/19 18:13,"120 Church St, San Francisco, CA 94016" +173230,AAA Batteries (4-pack),1,2.99,03/11/19 11:02,"253 Cherry St, Los Angeles, CA 90001" +173231,AAA Batteries (4-pack),2,2.99,03/30/19 09:51,"507 South St, Boston, MA 02215" +173232,27in FHD Monitor,1,149.99,03/16/19 14:41,"638 Sunset St, San Francisco, CA 94016" +173233,USB-C Charging Cable,1,11.95,03/28/19 12:59,"363 8th St, Seattle, WA 98101" +173234,USB-C Charging Cable,1,11.95,03/09/19 13:10,"946 13th St, Los Angeles, CA 90001" +173235,AA Batteries (4-pack),1,3.84,03/07/19 19:57,"537 9th St, Los Angeles, CA 90001" +173236,AA Batteries (4-pack),1,3.84,03/19/19 09:53,"102 Chestnut St, Boston, MA 02215" +173237,34in Ultrawide Monitor,1,379.99,03/01/19 23:07,"814 Hickory St, Boston, MA 02215" +173238,AA Batteries (4-pack),2,3.84,03/04/19 04:34,"170 Lincoln St, San Francisco, CA 94016" +173239,AAA Batteries (4-pack),1,2.99,03/19/19 16:36,"719 Washington St, Seattle, WA 98101" +173240,Lightning Charging Cable,1,14.95,03/09/19 19:18,"446 Spruce St, San Francisco, CA 94016" +173241,USB-C Charging Cable,1,11.95,03/28/19 20:37,"673 Adams St, Los Angeles, CA 90001" +173242,20in Monitor,1,109.99,03/05/19 18:02,"254 Sunset St, Portland, ME 04101" +173243,Apple Airpods Headphones,1,150,03/19/19 15:56,"918 Spruce St, Boston, MA 02215" +173244,AA Batteries (4-pack),1,3.84,03/10/19 11:17,"319 Maple St, Boston, MA 02215" +173245,Apple Airpods Headphones,1,150,03/21/19 11:05,"99 14th St, San Francisco, CA 94016" +173246,AA Batteries (4-pack),1,3.84,03/12/19 00:45,"811 Main St, Seattle, WA 98101" +173247,iPhone,1,700,03/04/19 19:20,"425 9th St, Los Angeles, CA 90001" +173248,AAA Batteries (4-pack),1,2.99,03/12/19 02:39,"385 River St, Boston, MA 02215" +173249,USB-C Charging Cable,1,11.95,03/06/19 19:40,"398 West St, Dallas, TX 75001" +173250,AA Batteries (4-pack),1,3.84,03/02/19 13:05,"262 Elm St, San Francisco, CA 94016" +173251,Apple Airpods Headphones,1,150,03/12/19 15:52,"104 9th St, Austin, TX 73301" +173252,27in 4K Gaming Monitor,1,389.99,03/12/19 11:18,"890 Jackson St, Boston, MA 02215" +173253,Wired Headphones,1,11.99,03/15/19 09:27,"950 Highland St, Boston, MA 02215" +173254,Google Phone,1,600,03/24/19 07:13,"871 Center St, New York City, NY 10001" +173254,Wired Headphones,1,11.99,03/24/19 07:13,"871 Center St, New York City, NY 10001" +173255,27in FHD Monitor,1,149.99,03/12/19 19:59,"318 2nd St, Seattle, WA 98101" +173256,Lightning Charging Cable,1,14.95,03/25/19 18:54,"87 8th St, New York City, NY 10001" +173257,AAA Batteries (4-pack),2,2.99,03/15/19 13:55,"956 Main St, Dallas, TX 75001" +173258,Wired Headphones,1,11.99,03/26/19 10:55,"823 Hill St, San Francisco, CA 94016" +173259,Lightning Charging Cable,1,14.95,03/28/19 18:45,"461 Walnut St, Boston, MA 02215" +173260,USB-C Charging Cable,1,11.95,03/30/19 20:22,"237 10th St, Atlanta, GA 30301" +173261,AA Batteries (4-pack),1,3.84,03/25/19 14:17,"244 12th St, Seattle, WA 98101" +173262,27in 4K Gaming Monitor,1,389.99,03/29/19 15:49,"606 7th St, San Francisco, CA 94016" +173263,Apple Airpods Headphones,1,150,03/08/19 17:36,"149 Elm St, Los Angeles, CA 90001" +173264,AA Batteries (4-pack),1,3.84,03/03/19 10:15,"406 Cherry St, New York City, NY 10001" +173265,USB-C Charging Cable,1,11.95,03/04/19 11:32,"706 Cherry St, Seattle, WA 98101" +173266,ThinkPad Laptop,1,999.99,03/08/19 10:37,"682 4th St, Dallas, TX 75001" +173267,Bose SoundSport Headphones,1,99.99,03/31/19 18:42,"664 6th St, San Francisco, CA 94016" +173268,Bose SoundSport Headphones,1,99.99,03/15/19 20:07,"822 6th St, San Francisco, CA 94016" +173269,27in FHD Monitor,1,149.99,03/12/19 21:27,"620 Pine St, Los Angeles, CA 90001" +173270,AAA Batteries (4-pack),3,2.99,03/22/19 23:49,"822 Main St, New York City, NY 10001" +173271,AAA Batteries (4-pack),1,2.99,03/06/19 05:25,"592 Washington St, Boston, MA 02215" +,,,,, +173272,AA Batteries (4-pack),1,3.84,03/05/19 10:27,"104 6th St, New York City, NY 10001" +173273,USB-C Charging Cable,1,11.95,03/17/19 22:54,"452 Center St, Seattle, WA 98101" +173274,AA Batteries (4-pack),1,3.84,03/03/19 12:36,"621 Highland St, Austin, TX 73301" +173275,20in Monitor,1,109.99,03/25/19 18:13,"401 4th St, New York City, NY 10001" +173276,USB-C Charging Cable,1,11.95,03/28/19 22:10,"514 2nd St, Boston, MA 02215" +173277,AA Batteries (4-pack),1,3.84,03/09/19 00:10,"990 7th St, Dallas, TX 75001" +173278,AAA Batteries (4-pack),1,2.99,03/20/19 21:13,"568 Spruce St, San Francisco, CA 94016" +173279,AA Batteries (4-pack),1,3.84,03/27/19 00:29,"773 Lincoln St, Dallas, TX 75001" +173280,AA Batteries (4-pack),3,3.84,03/03/19 21:46,"111 Lincoln St, Atlanta, GA 30301" +173281,AAA Batteries (4-pack),2,2.99,03/22/19 13:41,"896 Meadow St, San Francisco, CA 94016" +173282,Wired Headphones,1,11.99,03/24/19 13:59,"156 Chestnut St, Boston, MA 02215" +173283,27in FHD Monitor,1,149.99,03/25/19 08:52,"393 14th St, Los Angeles, CA 90001" +173284,Wired Headphones,1,11.99,03/07/19 01:23,"2 Forest St, Los Angeles, CA 90001" +173285,iPhone,1,700,03/01/19 17:41,"524 Lincoln St, Atlanta, GA 30301" +173286,27in 4K Gaming Monitor,1,389.99,03/21/19 10:27,"879 12th St, Portland, OR 97035" +173287,AAA Batteries (4-pack),1,2.99,03/25/19 17:20,"649 Jefferson St, San Francisco, CA 94016" +173288,Google Phone,1,600,03/19/19 11:49,"287 13th St, San Francisco, CA 94016" +173289,USB-C Charging Cable,1,11.95,03/29/19 13:28,"240 Lincoln St, Austin, TX 73301" +173289,27in 4K Gaming Monitor,1,389.99,03/29/19 13:28,"240 Lincoln St, Austin, TX 73301" +173290,Lightning Charging Cable,1,14.95,03/17/19 18:18,"245 Spruce St, San Francisco, CA 94016" +173291,Lightning Charging Cable,1,14.95,03/11/19 12:38,"433 4th St, Boston, MA 02215" +173292,Bose SoundSport Headphones,1,99.99,03/22/19 18:09,"398 Willow St, Seattle, WA 98101" +173293,iPhone,1,700,03/08/19 00:15,"747 Maple St, San Francisco, CA 94016" +173293,Apple Airpods Headphones,1,150,03/08/19 00:15,"747 Maple St, San Francisco, CA 94016" +,,,,, +173294,AA Batteries (4-pack),1,3.84,03/29/19 14:27,"951 Lakeview St, Portland, OR 97035" +173295,AA Batteries (4-pack),1,3.84,03/30/19 18:09,"203 Church St, Austin, TX 73301" +173296,AAA Batteries (4-pack),2,2.99,03/30/19 17:14,"575 1st St, New York City, NY 10001" +173297,Macbook Pro Laptop,1,1700,03/05/19 15:18,"614 Pine St, New York City, NY 10001" +173298,AA Batteries (4-pack),1,3.84,03/28/19 14:18,"249 Main St, New York City, NY 10001" +173299,AA Batteries (4-pack),2,3.84,03/26/19 20:45,"685 7th St, Boston, MA 02215" +173300,Lightning Charging Cable,1,14.95,03/13/19 19:18,"847 6th St, Seattle, WA 98101" +173301,27in 4K Gaming Monitor,1,389.99,03/15/19 10:27,"434 Meadow St, San Francisco, CA 94016" +173302,Wired Headphones,1,11.99,03/13/19 16:07,"158 Highland St, Dallas, TX 75001" +173303,iPhone,1,700,03/13/19 12:32,"967 6th St, San Francisco, CA 94016" +173303,Lightning Charging Cable,1,14.95,03/13/19 12:32,"967 6th St, San Francisco, CA 94016" +173303,Apple Airpods Headphones,1,150,03/13/19 12:32,"967 6th St, San Francisco, CA 94016" +173304,ThinkPad Laptop,1,999.99,03/29/19 17:46,"206 1st St, San Francisco, CA 94016" +173305,27in FHD Monitor,1,149.99,03/12/19 10:57,"670 Lake St, Seattle, WA 98101" +173306,ThinkPad Laptop,1,999.99,03/18/19 10:37,"284 8th St, Atlanta, GA 30301" +173306,Apple Airpods Headphones,1,150,03/18/19 10:37,"284 8th St, Atlanta, GA 30301" +173307,27in FHD Monitor,1,149.99,03/31/19 15:51,"951 Spruce St, San Francisco, CA 94016" +173308,AA Batteries (4-pack),1,3.84,03/18/19 06:25,"451 6th St, Portland, ME 04101" +173309,AA Batteries (4-pack),1,3.84,03/30/19 11:00,"293 Elm St, New York City, NY 10001" +173310,Google Phone,1,600,03/09/19 13:01,"490 Main St, Portland, OR 97035" +173310,USB-C Charging Cable,1,11.95,03/09/19 13:01,"490 Main St, Portland, OR 97035" +173311,Lightning Charging Cable,1,14.95,03/06/19 14:29,"729 Church St, Portland, OR 97035" +173312,34in Ultrawide Monitor,1,379.99,03/14/19 22:34,"911 13th St, San Francisco, CA 94016" +173313,iPhone,1,700,03/28/19 08:26,"408 Main St, San Francisco, CA 94016" +173314,USB-C Charging Cable,1,11.95,03/14/19 22:04,"942 River St, Seattle, WA 98101" +173315,AA Batteries (4-pack),1,3.84,03/23/19 21:31,"935 North St, San Francisco, CA 94016" +173316,Lightning Charging Cable,1,14.95,03/07/19 20:18,"910 West St, San Francisco, CA 94016" +173317,34in Ultrawide Monitor,1,379.99,03/15/19 18:10,"693 11th St, Austin, TX 73301" +173318,Bose SoundSport Headphones,1,99.99,03/21/19 20:46,"947 Lakeview St, San Francisco, CA 94016" +173319,Wired Headphones,1,11.99,03/16/19 20:04,"699 Sunset St, Portland, OR 97035" +173320,Wired Headphones,1,11.99,03/30/19 11:48,"354 Hickory St, Dallas, TX 75001" +173321,Lightning Charging Cable,1,14.95,03/08/19 14:58,"632 Maple St, Austin, TX 73301" +173322,Flatscreen TV,1,300,03/04/19 18:50,"232 2nd St, San Francisco, CA 94016" +173323,USB-C Charging Cable,1,11.95,03/01/19 17:08,"623 Church St, San Francisco, CA 94016" +173324,Macbook Pro Laptop,1,1700,03/29/19 23:58,"393 Johnson St, Atlanta, GA 30301" +173325,AA Batteries (4-pack),1,3.84,03/06/19 10:37,"221 Adams St, Los Angeles, CA 90001" +173326,AA Batteries (4-pack),1,3.84,03/09/19 13:12,"295 Lake St, San Francisco, CA 94016" +173327,Apple Airpods Headphones,1,150,03/27/19 11:00,"354 Main St, Portland, OR 97035" +173328,Apple Airpods Headphones,1,150,03/14/19 06:28,"283 Willow St, Dallas, TX 75001" +173329,Wired Headphones,1,11.99,03/24/19 22:57,"976 13th St, Seattle, WA 98101" +173330,USB-C Charging Cable,1,11.95,03/13/19 08:55,"749 Church St, Dallas, TX 75001" +173331,Flatscreen TV,1,300,03/14/19 18:14,"391 Meadow St, Dallas, TX 75001" +173332,27in FHD Monitor,1,149.99,03/06/19 00:43,"489 Jefferson St, San Francisco, CA 94016" +173333,Wired Headphones,1,11.99,03/11/19 13:16,"49 Meadow St, New York City, NY 10001" +173334,Flatscreen TV,1,300,03/10/19 22:29,"244 West St, Atlanta, GA 30301" +173335,27in FHD Monitor,1,149.99,03/24/19 11:48,"94 Park St, Seattle, WA 98101" +173336,Lightning Charging Cable,1,14.95,03/24/19 16:01,"849 1st St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +173337,Macbook Pro Laptop,1,1700,03/16/19 22:44,"30 River St, San Francisco, CA 94016" +173338,Bose SoundSport Headphones,1,99.99,03/06/19 11:08,"599 Highland St, Los Angeles, CA 90001" +173339,USB-C Charging Cable,1,11.95,03/09/19 15:34,"688 Lakeview St, Atlanta, GA 30301" +173340,AA Batteries (4-pack),1,3.84,03/22/19 09:41,"825 Sunset St, Los Angeles, CA 90001" +173341,iPhone,1,700,03/07/19 20:00,"857 River St, Atlanta, GA 30301" +173342,Apple Airpods Headphones,1,150,03/04/19 20:19,"798 Willow St, Seattle, WA 98101" +173343,AA Batteries (4-pack),1,3.84,03/13/19 07:12,"212 North St, San Francisco, CA 94016" +173344,Bose SoundSport Headphones,1,99.99,03/14/19 14:46,"660 10th St, San Francisco, CA 94016" +173345,27in 4K Gaming Monitor,1,389.99,03/20/19 14:31,"991 Cherry St, Dallas, TX 75001" +173346,AA Batteries (4-pack),1,3.84,03/04/19 20:45,"791 1st St, San Francisco, CA 94016" +173347,Macbook Pro Laptop,1,1700,03/11/19 21:52,"403 11th St, San Francisco, CA 94016" +173348,AA Batteries (4-pack),1,3.84,03/14/19 00:33,"975 2nd St, Boston, MA 02215" +173349,Lightning Charging Cable,1,14.95,03/15/19 22:01,"285 5th St, Boston, MA 02215" +173350,AA Batteries (4-pack),2,3.84,03/02/19 19:56,"901 Adams St, Boston, MA 02215" +173351,20in Monitor,1,109.99,03/22/19 00:29,"728 Madison St, Portland, OR 97035" +173352,Lightning Charging Cable,1,14.95,03/05/19 18:55,"358 South St, Seattle, WA 98101" +173352,Bose SoundSport Headphones,1,99.99,03/05/19 18:55,"358 South St, Seattle, WA 98101" +173353,27in 4K Gaming Monitor,1,389.99,03/12/19 20:02,"737 5th St, Portland, OR 97035" +173354,AA Batteries (4-pack),1,3.84,03/21/19 17:42,"725 Washington St, New York City, NY 10001" +173355,AAA Batteries (4-pack),1,2.99,03/24/19 10:18,"875 Madison St, San Francisco, CA 94016" +173356,AAA Batteries (4-pack),1,2.99,03/31/19 10:18,"97 Jackson St, New York City, NY 10001" +173357,Lightning Charging Cable,1,14.95,03/30/19 08:38,"603 10th St, New York City, NY 10001" +173358,Lightning Charging Cable,1,14.95,03/02/19 17:15,"987 Church St, Los Angeles, CA 90001" +173359,USB-C Charging Cable,1,11.95,03/29/19 19:36,"640 9th St, Seattle, WA 98101" +173360,AAA Batteries (4-pack),1,2.99,03/21/19 20:24,"436 4th St, Los Angeles, CA 90001" +173361,20in Monitor,1,109.99,03/15/19 16:52,"513 Dogwood St, Boston, MA 02215" +173362,34in Ultrawide Monitor,1,379.99,03/02/19 20:56,"486 Park St, Boston, MA 02215" +173363,Apple Airpods Headphones,1,150,03/02/19 23:15,"970 Ridge St, Boston, MA 02215" +173364,Wired Headphones,1,11.99,03/24/19 12:22,"217 Wilson St, Los Angeles, CA 90001" +173365,Flatscreen TV,1,300,03/18/19 09:24,"277 Willow St, Austin, TX 73301" +173366,Wired Headphones,1,11.99,03/03/19 14:30,"541 4th St, San Francisco, CA 94016" +173367,Apple Airpods Headphones,1,150,03/14/19 17:35,"285 6th St, San Francisco, CA 94016" +173368,27in FHD Monitor,1,149.99,03/31/19 04:24,"558 River St, Los Angeles, CA 90001" +173369,27in FHD Monitor,1,149.99,03/01/19 14:39,"531 Willow St, Dallas, TX 75001" +173370,Wired Headphones,1,11.99,03/21/19 16:54,"529 Park St, Dallas, TX 75001" +173371,USB-C Charging Cable,1,11.95,03/27/19 17:04,"592 Cedar St, Boston, MA 02215" +173372,Wired Headphones,1,11.99,03/09/19 16:25,"296 North St, Portland, ME 04101" +173373,Lightning Charging Cable,2,14.95,03/15/19 00:41,"853 Lakeview St, Los Angeles, CA 90001" +173374,34in Ultrawide Monitor,1,379.99,03/20/19 06:42,"247 Hickory St, San Francisco, CA 94016" +173375,Flatscreen TV,1,300,03/09/19 17:58,"284 Willow St, Portland, OR 97035" +173376,Wired Headphones,2,11.99,03/23/19 09:08,"551 Johnson St, Los Angeles, CA 90001" +173377,AA Batteries (4-pack),2,3.84,03/05/19 23:19,"89 Wilson St, Portland, OR 97035" +173378,AA Batteries (4-pack),4,3.84,03/12/19 21:51,"241 7th St, Dallas, TX 75001" +173379,Lightning Charging Cable,1,14.95,03/16/19 13:51,"505 Wilson St, San Francisco, CA 94016" +173380,Wired Headphones,1,11.99,03/24/19 19:32,"66 Forest St, Austin, TX 73301" +173381,AA Batteries (4-pack),1,3.84,03/28/19 11:43,"737 7th St, Portland, OR 97035" +173382,Bose SoundSport Headphones,1,99.99,03/28/19 14:04,"618 11th St, Dallas, TX 75001" +173383,AA Batteries (4-pack),1,3.84,03/13/19 22:54,"787 Jefferson St, Boston, MA 02215" +173384,ThinkPad Laptop,1,999.99,03/03/19 07:42,"432 Center St, New York City, NY 10001" +173385,20in Monitor,1,109.99,03/18/19 11:28,"981 Pine St, Atlanta, GA 30301" +173386,Wired Headphones,1,11.99,03/30/19 11:38,"926 Chestnut St, San Francisco, CA 94016" +173387,USB-C Charging Cable,1,11.95,03/28/19 09:31,"456 Forest St, San Francisco, CA 94016" +173388,Lightning Charging Cable,1,14.95,03/23/19 20:03,"847 Church St, Seattle, WA 98101" +173389,AA Batteries (4-pack),1,3.84,03/01/19 14:18,"529 Park St, Dallas, TX 75001" +173390,Bose SoundSport Headphones,1,99.99,03/10/19 17:45,"456 1st St, Seattle, WA 98101" +173391,Bose SoundSport Headphones,1,99.99,03/11/19 10:47,"216 Cherry St, San Francisco, CA 94016" +173392,USB-C Charging Cable,1,11.95,03/08/19 11:22,"316 South St, Atlanta, GA 30301" +173393,Lightning Charging Cable,1,14.95,03/19/19 13:13,"295 Cedar St, Los Angeles, CA 90001" +173394,Lightning Charging Cable,1,14.95,03/18/19 15:59,"932 River St, Austin, TX 73301" +173395,27in FHD Monitor,1,149.99,03/28/19 17:01,"128 River St, Atlanta, GA 30301" +173396,iPhone,1,700,03/12/19 00:54,"597 Highland St, Dallas, TX 75001" +173396,Lightning Charging Cable,1,14.95,03/12/19 00:54,"597 Highland St, Dallas, TX 75001" +173397,Wired Headphones,1,11.99,03/11/19 15:04,"786 Maple St, Boston, MA 02215" +173398,USB-C Charging Cable,1,11.95,03/11/19 12:11,"69 Cherry St, Los Angeles, CA 90001" +173399,AAA Batteries (4-pack),5,2.99,03/31/19 19:19,"377 14th St, Austin, TX 73301" +173400,AAA Batteries (4-pack),1,2.99,03/16/19 16:16,"483 Chestnut St, Los Angeles, CA 90001" +173401,USB-C Charging Cable,1,11.95,03/13/19 11:18,"17 13th St, Atlanta, GA 30301" +173402,USB-C Charging Cable,1,11.95,03/30/19 15:48,"752 Forest St, Atlanta, GA 30301" +173403,ThinkPad Laptop,1,999.99,03/24/19 09:02,"597 Chestnut St, San Francisco, CA 94016" +173404,Lightning Charging Cable,2,14.95,03/05/19 17:14,"174 Chestnut St, Dallas, TX 75001" +173405,ThinkPad Laptop,1,999.99,03/10/19 15:16,"684 Pine St, San Francisco, CA 94016" +173406,Lightning Charging Cable,1,14.95,03/20/19 11:35,"109 8th St, Portland, OR 97035" +173407,iPhone,1,700,03/14/19 21:45,"694 Chestnut St, Los Angeles, CA 90001" +173408,USB-C Charging Cable,1,11.95,03/18/19 12:32,"228 Dogwood St, New York City, NY 10001" +173409,27in 4K Gaming Monitor,1,389.99,03/13/19 11:31,"925 Lincoln St, Los Angeles, CA 90001" +173410,Wired Headphones,1,11.99,03/28/19 20:37,"842 Main St, Los Angeles, CA 90001" +173411,Lightning Charging Cable,1,14.95,03/17/19 11:56,"501 Madison St, Atlanta, GA 30301" +173412,34in Ultrawide Monitor,1,379.99,03/28/19 20:00,"238 1st St, Seattle, WA 98101" +173413,Google Phone,1,600,03/08/19 21:35,"243 7th St, Boston, MA 02215" +173414,Apple Airpods Headphones,1,150,03/26/19 20:57,"787 South St, Atlanta, GA 30301" +173415,34in Ultrawide Monitor,1,379.99,03/11/19 22:06,"335 Johnson St, San Francisco, CA 94016" +173416,Bose SoundSport Headphones,1,99.99,03/08/19 17:36,"865 5th St, Boston, MA 02215" +173417,Apple Airpods Headphones,1,150,03/21/19 05:02,"440 Walnut St, Los Angeles, CA 90001" +173418,Lightning Charging Cable,1,14.95,03/18/19 09:21,"514 2nd St, Los Angeles, CA 90001" +173419,27in FHD Monitor,1,149.99,03/07/19 10:48,"238 6th St, Boston, MA 02215" +173420,AA Batteries (4-pack),1,3.84,03/10/19 22:14,"215 Meadow St, Atlanta, GA 30301" +173421,Google Phone,1,600,03/30/19 12:58,"819 Spruce St, Boston, MA 02215" +173421,USB-C Charging Cable,1,11.95,03/30/19 12:58,"819 Spruce St, Boston, MA 02215" +173422,Bose SoundSport Headphones,1,99.99,03/12/19 10:55,"245 Wilson St, Portland, OR 97035" +173423,Wired Headphones,1,11.99,03/08/19 12:42,"976 Willow St, New York City, NY 10001" +173424,AA Batteries (4-pack),2,3.84,03/08/19 06:43,"33 West St, Dallas, TX 75001" +173425,Bose SoundSport Headphones,1,99.99,03/30/19 13:19,"862 Forest St, San Francisco, CA 94016" +173426,27in 4K Gaming Monitor,1,389.99,03/03/19 14:21,"625 Pine St, San Francisco, CA 94016" +173427,Apple Airpods Headphones,1,150,03/31/19 14:08,"469 Hill St, Seattle, WA 98101" +173428,34in Ultrawide Monitor,1,379.99,03/02/19 08:52,"397 9th St, New York City, NY 10001" +173429,Bose SoundSport Headphones,1,99.99,03/11/19 23:29,"510 Park St, Atlanta, GA 30301" +173430,Apple Airpods Headphones,1,150,03/14/19 13:35,"659 North St, New York City, NY 10001" +173431,ThinkPad Laptop,1,999.99,03/28/19 12:22,"468 Lake St, San Francisco, CA 94016" +173432,Bose SoundSport Headphones,1,99.99,03/21/19 12:28,"417 Lake St, Atlanta, GA 30301" +173433,AAA Batteries (4-pack),2,2.99,03/18/19 20:38,"825 Cedar St, Boston, MA 02215" +173433,Wired Headphones,1,11.99,03/18/19 20:38,"825 Cedar St, Boston, MA 02215" +173434,USB-C Charging Cable,1,11.95,03/22/19 17:28,"226 Adams St, Los Angeles, CA 90001" +173435,AA Batteries (4-pack),1,3.84,03/21/19 13:33,"688 Hickory St, San Francisco, CA 94016" +173436,Macbook Pro Laptop,1,1700,03/04/19 16:31,"626 Dogwood St, Los Angeles, CA 90001" +173437,AAA Batteries (4-pack),1,2.99,03/26/19 16:41,"966 Hill St, Dallas, TX 75001" +173438,Apple Airpods Headphones,1,150,03/08/19 13:21,"50 Main St, San Francisco, CA 94016" +173439,Wired Headphones,1,11.99,03/09/19 17:11,"492 14th St, Austin, TX 73301" +173440,27in FHD Monitor,1,149.99,03/18/19 19:32,"909 Center St, San Francisco, CA 94016" +173441,Lightning Charging Cable,1,14.95,03/23/19 14:29,"217 Walnut St, Boston, MA 02215" +173442,27in 4K Gaming Monitor,1,389.99,03/08/19 13:31,"423 Meadow St, San Francisco, CA 94016" +173443,AAA Batteries (4-pack),1,2.99,03/05/19 18:59,"410 Willow St, San Francisco, CA 94016" +173444,Apple Airpods Headphones,1,150,03/29/19 09:37,"513 Cedar St, New York City, NY 10001" +173445,AA Batteries (4-pack),2,3.84,03/18/19 05:20,"150 Cedar St, Portland, OR 97035" +173446,Apple Airpods Headphones,1,150,03/15/19 18:59,"895 9th St, Portland, OR 97035" +173447,Bose SoundSport Headphones,1,99.99,03/10/19 09:41,"391 Washington St, Seattle, WA 98101" +173447,ThinkPad Laptop,1,999.99,03/10/19 09:41,"391 Washington St, Seattle, WA 98101" +173448,AA Batteries (4-pack),1,3.84,03/07/19 05:40,"14 14th St, Dallas, TX 75001" +173449,iPhone,1,700,03/12/19 17:19,"385 14th St, San Francisco, CA 94016" +173450,34in Ultrawide Monitor,1,379.99,03/28/19 20:13,"7 Walnut St, Boston, MA 02215" +173451,AA Batteries (4-pack),1,3.84,03/28/19 20:41,"778 1st St, Atlanta, GA 30301" +173452,AAA Batteries (4-pack),2,2.99,03/16/19 13:33,"749 West St, San Francisco, CA 94016" +173453,USB-C Charging Cable,1,11.95,03/29/19 19:01,"744 5th St, Dallas, TX 75001" +173454,AAA Batteries (4-pack),1,2.99,03/20/19 13:02,"44 Washington St, San Francisco, CA 94016" +173455,USB-C Charging Cable,1,11.95,03/12/19 11:36,"301 1st St, San Francisco, CA 94016" +173456,Wired Headphones,2,11.99,03/02/19 12:49,"618 Meadow St, New York City, NY 10001" +173457,Lightning Charging Cable,1,14.95,03/08/19 15:01,"560 Meadow St, Los Angeles, CA 90001" +173458,AA Batteries (4-pack),1,3.84,03/28/19 06:40,"788 2nd St, Portland, OR 97035" +173459,Google Phone,1,600,03/29/19 22:12,"318 Jefferson St, Atlanta, GA 30301" +173460,Wired Headphones,1,11.99,03/15/19 16:04,"675 River St, New York City, NY 10001" +173461,Apple Airpods Headphones,1,150,03/26/19 12:46,"886 5th St, Dallas, TX 75001" +173462,Lightning Charging Cable,1,14.95,03/10/19 20:56,"167 Madison St, Portland, OR 97035" +173463,USB-C Charging Cable,1,11.95,03/26/19 14:35,"741 Jackson St, San Francisco, CA 94016" +173464,Wired Headphones,1,11.99,03/17/19 16:04,"18 10th St, New York City, NY 10001" +173465,Lightning Charging Cable,1,14.95,03/10/19 10:33,"317 Chestnut St, Boston, MA 02215" +173466,iPhone,1,700,03/17/19 20:55,"6 Jackson St, Austin, TX 73301" +173466,Lightning Charging Cable,1,14.95,03/17/19 20:55,"6 Jackson St, Austin, TX 73301" +173467,Bose SoundSport Headphones,1,99.99,03/28/19 10:01,"289 Willow St, San Francisco, CA 94016" +173468,LG Washing Machine,1,600.0,03/22/19 19:44,"901 Park St, San Francisco, CA 94016" +173469,Apple Airpods Headphones,1,150,03/29/19 22:46,"835 Wilson St, Dallas, TX 75001" +173470,Lightning Charging Cable,1,14.95,03/11/19 20:31,"684 Madison St, San Francisco, CA 94016" +173471,Bose SoundSport Headphones,1,99.99,03/05/19 15:04,"536 13th St, New York City, NY 10001" +173472,Wired Headphones,1,11.99,03/07/19 18:42,"592 Meadow St, Los Angeles, CA 90001" +173473,USB-C Charging Cable,1,11.95,03/07/19 09:38,"578 Maple St, Austin, TX 73301" +173474,AAA Batteries (4-pack),1,2.99,03/25/19 09:18,"720 West St, Boston, MA 02215" +173475,34in Ultrawide Monitor,1,379.99,03/26/19 15:10,"511 Cherry St, Los Angeles, CA 90001" +173476,Flatscreen TV,1,300,03/26/19 18:47,"194 Jackson St, San Francisco, CA 94016" +173477,27in FHD Monitor,2,149.99,03/01/19 23:13,"88 South St, San Francisco, CA 94016" +173478,ThinkPad Laptop,1,999.99,03/27/19 18:49,"278 Cherry St, Los Angeles, CA 90001" +173479,USB-C Charging Cable,1,11.95,03/05/19 11:20,"92 Lake St, San Francisco, CA 94016" +173480,Bose SoundSport Headphones,1,99.99,03/22/19 10:09,"333 2nd St, San Francisco, CA 94016" +173480,Wired Headphones,1,11.99,03/22/19 10:09,"333 2nd St, San Francisco, CA 94016" +173481,Flatscreen TV,1,300,03/16/19 19:00,"863 14th St, Seattle, WA 98101" +173482,Flatscreen TV,1,300,03/21/19 17:00,"700 Wilson St, Los Angeles, CA 90001" +173483,USB-C Charging Cable,1,11.95,03/03/19 02:12,"562 Cedar St, San Francisco, CA 94016" +173484,Lightning Charging Cable,1,14.95,03/12/19 09:37,"471 14th St, Los Angeles, CA 90001" +173485,AA Batteries (4-pack),1,3.84,03/19/19 13:53,"177 River St, San Francisco, CA 94016" +173486,34in Ultrawide Monitor,1,379.99,03/05/19 22:00,"297 River St, Los Angeles, CA 90001" +173487,Wired Headphones,1,11.99,03/05/19 09:33,"121 Church St, Los Angeles, CA 90001" +173488,Wired Headphones,1,11.99,03/22/19 13:48,"381 Cherry St, Atlanta, GA 30301" +173489,Apple Airpods Headphones,1,150,03/21/19 13:07,"357 West St, Los Angeles, CA 90001" +173490,AAA Batteries (4-pack),3,2.99,03/17/19 15:21,"547 Washington St, San Francisco, CA 94016" +173491,Macbook Pro Laptop,1,1700,03/16/19 14:38,"522 Hill St, Seattle, WA 98101" +173492,AA Batteries (4-pack),1,3.84,03/06/19 16:38,"289 Jackson St, Atlanta, GA 30301" +173493,Lightning Charging Cable,1,14.95,03/25/19 15:12,"707 Lincoln St, Boston, MA 02215" +173494,AA Batteries (4-pack),1,3.84,03/09/19 09:15,"576 1st St, New York City, NY 10001" +173495,AAA Batteries (4-pack),2,2.99,03/14/19 18:45,"996 Sunset St, New York City, NY 10001" +173496,20in Monitor,1,109.99,03/29/19 18:54,"386 12th St, Atlanta, GA 30301" +173497,Lightning Charging Cable,1,14.95,03/27/19 10:42,"191 Forest St, Seattle, WA 98101" +173498,27in 4K Gaming Monitor,1,389.99,03/09/19 13:04,"346 Hickory St, Boston, MA 02215" +173499,AA Batteries (4-pack),2,3.84,03/06/19 22:19,"902 Pine St, Austin, TX 73301" +173500,Flatscreen TV,1,300,03/05/19 19:13,"598 Forest St, San Francisco, CA 94016" +173501,27in 4K Gaming Monitor,1,389.99,03/11/19 00:39,"261 Cedar St, Los Angeles, CA 90001" +173502,27in FHD Monitor,1,149.99,03/10/19 07:17,"411 Adams St, San Francisco, CA 94016" +173503,27in FHD Monitor,1,149.99,03/30/19 12:40,"614 Forest St, Los Angeles, CA 90001" +173504,Bose SoundSport Headphones,1,99.99,03/26/19 22:04,"532 Spruce St, San Francisco, CA 94016" +173505,Apple Airpods Headphones,1,150,03/16/19 16:01,"779 Meadow St, San Francisco, CA 94016" +173506,USB-C Charging Cable,1,11.95,03/05/19 10:58,"185 South St, San Francisco, CA 94016" +173507,Flatscreen TV,1,300,03/01/19 05:04,"429 Spruce St, Los Angeles, CA 90001" +173508,Lightning Charging Cable,1,14.95,03/31/19 10:46,"123 7th St, New York City, NY 10001" +173509,Apple Airpods Headphones,1,150,03/28/19 22:08,"571 Cherry St, Atlanta, GA 30301" +173510,iPhone,1,700,03/23/19 18:50,"420 Johnson St, San Francisco, CA 94016" +173511,AA Batteries (4-pack),1,3.84,03/09/19 11:13,"884 Madison St, San Francisco, CA 94016" +173512,AAA Batteries (4-pack),4,2.99,03/05/19 19:20,"920 Ridge St, Boston, MA 02215" +173513,Lightning Charging Cable,1,14.95,03/05/19 18:58,"419 4th St, Los Angeles, CA 90001" +173514,20in Monitor,1,109.99,03/21/19 06:38,"199 Meadow St, San Francisco, CA 94016" +173515,Flatscreen TV,1,300,03/16/19 19:06,"610 Lake St, Los Angeles, CA 90001" +173516,27in FHD Monitor,1,149.99,03/14/19 19:49,"220 West St, Austin, TX 73301" +173517,Flatscreen TV,1,300,03/03/19 09:32,"260 Dogwood St, Austin, TX 73301" +173518,Wired Headphones,1,11.99,03/02/19 19:44,"692 South St, Los Angeles, CA 90001" +173519,Macbook Pro Laptop,1,1700,03/11/19 14:00,"880 Lincoln St, Boston, MA 02215" +173520,Lightning Charging Cable,1,14.95,03/18/19 17:47,"452 Maple St, San Francisco, CA 94016" +173521,Vareebadd Phone,1,400,03/05/19 12:18,"975 Lincoln St, Boston, MA 02215" +173522,Apple Airpods Headphones,1,150,03/04/19 16:06,"355 Cedar St, San Francisco, CA 94016" +173523,AA Batteries (4-pack),1,3.84,03/15/19 01:55,"920 1st St, Austin, TX 73301" +173524,Apple Airpods Headphones,1,150,03/19/19 12:25,"608 Lincoln St, New York City, NY 10001" +173525,AA Batteries (4-pack),1,3.84,03/14/19 12:14,"165 13th St, New York City, NY 10001" +173526,Google Phone,1,600,03/06/19 17:01,"444 Main St, Los Angeles, CA 90001" +173527,34in Ultrawide Monitor,1,379.99,03/20/19 10:34,"960 Jefferson St, San Francisco, CA 94016" +173528,Apple Airpods Headphones,1,150,03/15/19 14:36,"104 Elm St, Boston, MA 02215" +173529,AAA Batteries (4-pack),1,2.99,03/03/19 20:50,"368 Chestnut St, Dallas, TX 75001" +173530,Bose SoundSport Headphones,1,99.99,03/31/19 11:38,"582 Church St, Seattle, WA 98101" +173531,Wired Headphones,1,11.99,03/20/19 07:27,"591 14th St, Seattle, WA 98101" +173532,USB-C Charging Cable,1,11.95,03/14/19 16:22,"371 Meadow St, Atlanta, GA 30301" +173533,AA Batteries (4-pack),1,3.84,03/31/19 00:40,"696 Lakeview St, Austin, TX 73301" +173534,AAA Batteries (4-pack),1,2.99,03/17/19 00:12,"280 2nd St, Los Angeles, CA 90001" +173535,Wired Headphones,2,11.99,03/22/19 09:31,"718 South St, Boston, MA 02215" +173536,AA Batteries (4-pack),1,3.84,03/24/19 22:00,"494 Washington St, Los Angeles, CA 90001" +173537,Bose SoundSport Headphones,1,99.99,03/04/19 22:46,"893 Center St, Portland, OR 97035" +173538,27in FHD Monitor,1,149.99,03/27/19 11:28,"366 10th St, Dallas, TX 75001" +173539,20in Monitor,1,109.99,03/09/19 14:44,"540 North St, Dallas, TX 75001" +173540,Bose SoundSport Headphones,1,99.99,03/30/19 14:23,"288 River St, Seattle, WA 98101" +173541,USB-C Charging Cable,1,11.95,03/12/19 03:50,"860 5th St, Los Angeles, CA 90001" +173542,AA Batteries (4-pack),1,3.84,03/07/19 14:40,"163 Willow St, New York City, NY 10001" +173543,Bose SoundSport Headphones,1,99.99,03/30/19 11:27,"537 Willow St, San Francisco, CA 94016" +173544,27in 4K Gaming Monitor,1,389.99,03/24/19 18:30,"239 14th St, San Francisco, CA 94016" +173545,AA Batteries (4-pack),1,3.84,03/12/19 19:15,"268 11th St, Dallas, TX 75001" +173546,Wired Headphones,2,11.99,03/20/19 16:11,"726 9th St, New York City, NY 10001" +173547,Google Phone,1,600,03/29/19 10:06,"4 Dogwood St, New York City, NY 10001" +173547,USB-C Charging Cable,1,11.95,03/29/19 10:06,"4 Dogwood St, New York City, NY 10001" +173548,Vareebadd Phone,1,400,03/15/19 16:54,"373 Lake St, New York City, NY 10001" +173549,Apple Airpods Headphones,1,150,03/27/19 15:10,"707 Main St, Boston, MA 02215" +173550,AA Batteries (4-pack),1,3.84,03/02/19 10:56,"825 Elm St, Boston, MA 02215" +173551,Macbook Pro Laptop,1,1700,03/25/19 17:31,"590 Lake St, Atlanta, GA 30301" +173552,27in FHD Monitor,1,149.99,03/03/19 15:40,"938 Church St, San Francisco, CA 94016" +173553,Wired Headphones,2,11.99,03/24/19 19:46,"660 Washington St, New York City, NY 10001" +173554,USB-C Charging Cable,1,11.95,03/17/19 18:00,"836 Washington St, New York City, NY 10001" +173555,AAA Batteries (4-pack),1,2.99,03/25/19 10:35,"275 Johnson St, Seattle, WA 98101" +173556,AA Batteries (4-pack),1,3.84,03/24/19 22:57,"411 Highland St, San Francisco, CA 94016" +173557,34in Ultrawide Monitor,1,379.99,03/11/19 12:00,"717 Park St, San Francisco, CA 94016" +173558,Macbook Pro Laptop,1,1700,03/03/19 14:15,"487 Lincoln St, Boston, MA 02215" +173559,Vareebadd Phone,1,400,03/22/19 10:35,"336 Jackson St, San Francisco, CA 94016" +173560,Google Phone,1,600,03/27/19 11:46,"260 Lake St, Los Angeles, CA 90001" +173561,Bose SoundSport Headphones,1,99.99,03/05/19 13:36,"853 Main St, Atlanta, GA 30301" +173562,Bose SoundSport Headphones,1,99.99,03/10/19 22:49,"356 Ridge St, New York City, NY 10001" +173563,27in 4K Gaming Monitor,1,389.99,03/31/19 19:34,"264 2nd St, Los Angeles, CA 90001" +173564,iPhone,1,700,03/25/19 20:17,"549 Pine St, Portland, OR 97035" +173565,Macbook Pro Laptop,1,1700,03/30/19 13:01,"871 Cedar St, Los Angeles, CA 90001" +173566,AA Batteries (4-pack),3,3.84,03/17/19 15:25,"424 Madison St, Atlanta, GA 30301" +173567,Bose SoundSport Headphones,1,99.99,03/10/19 11:46,"35 Center St, San Francisco, CA 94016" +173568,Lightning Charging Cable,1,14.95,03/25/19 09:34,"701 Lake St, Boston, MA 02215" +173569,Google Phone,1,600,03/16/19 12:06,"296 Lake St, Boston, MA 02215" +173570,Apple Airpods Headphones,1,150,03/02/19 14:25,"276 Center St, Portland, ME 04101" +173571,AAA Batteries (4-pack),1,2.99,03/14/19 19:07,"674 4th St, New York City, NY 10001" +173572,AAA Batteries (4-pack),2,2.99,03/29/19 07:06,"367 1st St, Seattle, WA 98101" +173573,AAA Batteries (4-pack),2,2.99,03/18/19 13:57,"623 Madison St, Dallas, TX 75001" +173574,USB-C Charging Cable,1,11.95,03/30/19 12:34,"333 2nd St, New York City, NY 10001" +173575,USB-C Charging Cable,1,11.95,03/06/19 10:22,"438 Center St, Portland, OR 97035" +173576,ThinkPad Laptop,1,999.99,03/22/19 12:43,"514 Cherry St, Los Angeles, CA 90001" +173577,AAA Batteries (4-pack),1,2.99,03/15/19 20:29,"706 Highland St, San Francisco, CA 94016" +173578,Apple Airpods Headphones,1,150,03/24/19 18:23,"895 South St, Los Angeles, CA 90001" +173579,Apple Airpods Headphones,1,150,03/19/19 13:50,"183 9th St, Portland, OR 97035" +173580,Wired Headphones,1,11.99,03/13/19 11:24,"662 Church St, San Francisco, CA 94016" +173581,AAA Batteries (4-pack),1,2.99,03/08/19 10:17,"770 Cherry St, New York City, NY 10001" +173582,AA Batteries (4-pack),1,3.84,03/28/19 10:28,"914 Dogwood St, Seattle, WA 98101" +173583,Flatscreen TV,1,300,03/31/19 07:38,"620 Lincoln St, San Francisco, CA 94016" +173584,USB-C Charging Cable,1,11.95,03/04/19 07:55,"225 Main St, Boston, MA 02215" +173585,Macbook Pro Laptop,1,1700,03/26/19 09:39,"234 Wilson St, Seattle, WA 98101" +173586,Apple Airpods Headphones,1,150,03/09/19 10:34,"983 Pine St, Seattle, WA 98101" +173587,Bose SoundSport Headphones,1,99.99,03/14/19 21:52,"974 8th St, Portland, OR 97035" +173588,Bose SoundSport Headphones,1,99.99,03/08/19 12:01,"350 Wilson St, San Francisco, CA 94016" +173589,AAA Batteries (4-pack),1,2.99,03/27/19 20:41,"196 Highland St, San Francisco, CA 94016" +173590,USB-C Charging Cable,1,11.95,03/24/19 17:46,"501 Hill St, Los Angeles, CA 90001" +173591,AAA Batteries (4-pack),2,2.99,03/31/19 09:18,"435 10th St, Austin, TX 73301" +173592,iPhone,1,700,03/17/19 14:15,"15 Adams St, San Francisco, CA 94016" +173593,20in Monitor,1,109.99,03/06/19 13:29,"293 Meadow St, San Francisco, CA 94016" +173594,Lightning Charging Cable,1,14.95,03/11/19 07:39,"625 Chestnut St, San Francisco, CA 94016" +173595,USB-C Charging Cable,1,11.95,03/28/19 19:30,"634 River St, New York City, NY 10001" +173596,iPhone,1,700,03/10/19 19:54,"942 10th St, Atlanta, GA 30301" +173596,Lightning Charging Cable,1,14.95,03/10/19 19:54,"942 10th St, Atlanta, GA 30301" +173597,27in 4K Gaming Monitor,1,389.99,03/23/19 10:00,"492 Hill St, Dallas, TX 75001" +173598,AAA Batteries (4-pack),1,2.99,03/01/19 12:03,"386 Lincoln St, Atlanta, GA 30301" +173599,27in 4K Gaming Monitor,1,389.99,03/11/19 19:53,"392 13th St, San Francisco, CA 94016" +173600,Wired Headphones,1,11.99,03/30/19 09:05,"597 Cedar St, Boston, MA 02215" +173601,Google Phone,1,600,03/26/19 20:20,"488 Highland St, San Francisco, CA 94016" +173601,Wired Headphones,1,11.99,03/26/19 20:20,"488 Highland St, San Francisco, CA 94016" +173602,20in Monitor,1,109.99,03/14/19 18:00,"231 Center St, Seattle, WA 98101" +173603,AA Batteries (4-pack),1,3.84,03/29/19 15:09,"388 Washington St, Portland, OR 97035" +173604,Apple Airpods Headphones,1,150,03/22/19 13:44,"877 4th St, New York City, NY 10001" +173605,27in 4K Gaming Monitor,1,389.99,03/23/19 16:53,"650 8th St, San Francisco, CA 94016" +173606,34in Ultrawide Monitor,1,379.99,03/19/19 09:22,"697 Spruce St, Boston, MA 02215" +173607,Lightning Charging Cable,1,14.95,03/17/19 10:40,"241 Madison St, Boston, MA 02215" +173608,Wired Headphones,1,11.99,03/08/19 21:25,"597 Jackson St, New York City, NY 10001" +173609,Apple Airpods Headphones,1,150,03/21/19 17:31,"637 10th St, New York City, NY 10001" +173610,27in 4K Gaming Monitor,1,389.99,03/19/19 19:18,"746 Jefferson St, Atlanta, GA 30301" +173611,Bose SoundSport Headphones,1,99.99,03/04/19 18:52,"290 Walnut St, New York City, NY 10001" +173612,Macbook Pro Laptop,1,1700,03/16/19 07:10,"881 Hill St, Los Angeles, CA 90001" +173613,AAA Batteries (4-pack),1,2.99,03/04/19 15:30,"914 Spruce St, Los Angeles, CA 90001" +173614,20in Monitor,1,109.99,03/06/19 10:50,"412 Chestnut St, Seattle, WA 98101" +173615,USB-C Charging Cable,1,11.95,03/25/19 22:07,"650 Maple St, Portland, OR 97035" +173616,Wired Headphones,1,11.99,03/03/19 06:29,"433 Adams St, San Francisco, CA 94016" +173617,USB-C Charging Cable,1,11.95,03/22/19 12:41,"323 Ridge St, San Francisco, CA 94016" +173618,AA Batteries (4-pack),1,3.84,03/17/19 13:42,"315 8th St, San Francisco, CA 94016" +173619,AA Batteries (4-pack),2,3.84,03/24/19 10:17,"754 11th St, San Francisco, CA 94016" +173620,Bose SoundSport Headphones,1,99.99,03/12/19 18:34,"499 Lakeview St, San Francisco, CA 94016" +173621,USB-C Charging Cable,1,11.95,03/27/19 09:37,"300 Madison St, New York City, NY 10001" +173622,AAA Batteries (4-pack),1,2.99,03/01/19 14:46,"976 Park St, Portland, OR 97035" +173623,34in Ultrawide Monitor,1,379.99,03/12/19 20:24,"95 11th St, San Francisco, CA 94016" +173624,Macbook Pro Laptop,1,1700,03/29/19 11:33,"461 Walnut St, San Francisco, CA 94016" +173625,Bose SoundSport Headphones,1,99.99,03/05/19 16:55,"574 Chestnut St, Seattle, WA 98101" +173626,Lightning Charging Cable,1,14.95,03/07/19 20:46,"925 Dogwood St, San Francisco, CA 94016" +173627,34in Ultrawide Monitor,1,379.99,03/13/19 22:57,"957 West St, San Francisco, CA 94016" +173628,Lightning Charging Cable,1,14.95,03/30/19 10:27,"604 Pine St, Portland, OR 97035" +173629,Apple Airpods Headphones,1,150,03/02/19 13:40,"627 Cherry St, Boston, MA 02215" +173630,Wired Headphones,1,11.99,03/22/19 04:38,"301 Meadow St, Boston, MA 02215" +173631,USB-C Charging Cable,1,11.95,03/08/19 18:11,"303 Cedar St, Seattle, WA 98101" +173632,Wired Headphones,1,11.99,03/18/19 07:42,"333 8th St, Boston, MA 02215" +173633,USB-C Charging Cable,1,11.95,03/18/19 00:10,"714 6th St, San Francisco, CA 94016" +173634,iPhone,1,700,03/28/19 11:57,"712 Washington St, Dallas, TX 75001" +173635,Bose SoundSport Headphones,1,99.99,03/17/19 09:28,"252 North St, San Francisco, CA 94016" +173636,AAA Batteries (4-pack),2,2.99,03/05/19 16:47,"250 Johnson St, San Francisco, CA 94016" +173637,AA Batteries (4-pack),2,3.84,03/29/19 23:50,"767 Jefferson St, Dallas, TX 75001" +173638,AAA Batteries (4-pack),1,2.99,03/11/19 11:02,"343 Lincoln St, Seattle, WA 98101" +173639,AAA Batteries (4-pack),1,2.99,03/01/19 22:54,"939 Hill St, Los Angeles, CA 90001" +173640,AA Batteries (4-pack),1,3.84,03/19/19 20:20,"467 Cherry St, Dallas, TX 75001" +173641,Lightning Charging Cable,1,14.95,03/30/19 11:54,"359 Sunset St, Boston, MA 02215" +173642,Wired Headphones,1,11.99,03/24/19 14:44,"105 Forest St, San Francisco, CA 94016" +173643,Wired Headphones,1,11.99,03/20/19 13:20,"487 Lakeview St, New York City, NY 10001" +173644,Apple Airpods Headphones,1,150,03/09/19 17:52,"454 Elm St, San Francisco, CA 94016" +173645,AA Batteries (4-pack),1,3.84,03/06/19 01:58,"584 Wilson St, New York City, NY 10001" +173646,iPhone,1,700,03/30/19 21:21,"739 6th St, New York City, NY 10001" +173646,Lightning Charging Cable,1,14.95,03/30/19 21:21,"739 6th St, New York City, NY 10001" +173647,AAA Batteries (4-pack),1,2.99,03/20/19 21:23,"737 Center St, Los Angeles, CA 90001" +173648,Lightning Charging Cable,2,14.95,03/10/19 14:19,"396 Lake St, San Francisco, CA 94016" +173649,Google Phone,1,600,03/21/19 19:10,"427 Forest St, San Francisco, CA 94016" +173650,20in Monitor,1,109.99,03/28/19 15:37,"698 14th St, Atlanta, GA 30301" +173651,Bose SoundSport Headphones,1,99.99,03/09/19 18:49,"654 Adams St, Boston, MA 02215" +173652,Lightning Charging Cable,1,14.95,03/21/19 11:23,"931 12th St, New York City, NY 10001" +173653,Lightning Charging Cable,1,14.95,03/29/19 12:37,"362 10th St, New York City, NY 10001" +173654,Wired Headphones,1,11.99,03/03/19 12:14,"693 Madison St, Los Angeles, CA 90001" +173655,AAA Batteries (4-pack),1,2.99,03/07/19 16:56,"792 Dogwood St, Dallas, TX 75001" +173656,Lightning Charging Cable,1,14.95,03/11/19 14:29,"735 4th St, New York City, NY 10001" +173657,AA Batteries (4-pack),1,3.84,03/11/19 22:29,"750 Church St, Boston, MA 02215" +173658,Flatscreen TV,1,300,03/21/19 10:19,"979 Washington St, Seattle, WA 98101" +173659,27in FHD Monitor,1,149.99,03/22/19 08:28,"963 Hill St, Atlanta, GA 30301" +173660,AA Batteries (4-pack),1,3.84,03/17/19 14:32,"831 2nd St, Austin, TX 73301" +173661,27in FHD Monitor,1,149.99,03/05/19 15:39,"468 4th St, Los Angeles, CA 90001" +173662,Lightning Charging Cable,1,14.95,03/02/19 18:01,"874 Madison St, Los Angeles, CA 90001" +173663,AAA Batteries (4-pack),1,2.99,03/15/19 17:46,"574 13th St, Seattle, WA 98101" +173664,27in FHD Monitor,1,149.99,03/08/19 16:35,"97 Lincoln St, Los Angeles, CA 90001" +173665,20in Monitor,1,109.99,03/12/19 14:52,"839 Dogwood St, Atlanta, GA 30301" +173666,27in FHD Monitor,1,149.99,03/12/19 19:01,"38 Center St, Seattle, WA 98101" +173667,20in Monitor,1,109.99,03/16/19 20:13,"367 Chestnut St, New York City, NY 10001" +173668,Macbook Pro Laptop,1,1700,03/27/19 17:59,"560 Sunset St, Austin, TX 73301" +173669,Lightning Charging Cable,1,14.95,03/20/19 03:58,"767 Lakeview St, Los Angeles, CA 90001" +173670,Bose SoundSport Headphones,1,99.99,03/10/19 23:42,"821 Walnut St, New York City, NY 10001" +173671,Lightning Charging Cable,1,14.95,03/02/19 16:35,"101 Forest St, Austin, TX 73301" +173672,Bose SoundSport Headphones,1,99.99,03/01/19 11:33,"804 Dogwood St, Los Angeles, CA 90001" +173673,Lightning Charging Cable,1,14.95,03/06/19 13:53,"839 Adams St, Austin, TX 73301" +173674,USB-C Charging Cable,1,11.95,03/17/19 13:34,"960 Elm St, Seattle, WA 98101" +173675,USB-C Charging Cable,1,11.95,03/15/19 19:14,"490 Lakeview St, Los Angeles, CA 90001" +173676,Apple Airpods Headphones,1,150,03/21/19 13:05,"271 Lake St, San Francisco, CA 94016" +173677,USB-C Charging Cable,1,11.95,03/09/19 23:42,"309 River St, Dallas, TX 75001" +173678,Flatscreen TV,1,300,03/26/19 09:09,"259 Center St, New York City, NY 10001" +173679,Lightning Charging Cable,1,14.95,03/16/19 18:34,"727 Sunset St, Boston, MA 02215" +173680,34in Ultrawide Monitor,1,379.99,03/17/19 12:35,"332 Ridge St, San Francisco, CA 94016" +173681,Lightning Charging Cable,1,14.95,03/15/19 17:47,"203 1st St, San Francisco, CA 94016" +173682,Google Phone,1,600,03/04/19 13:23,"207 6th St, San Francisco, CA 94016" +173683,Bose SoundSport Headphones,1,99.99,03/18/19 20:04,"486 11th St, Seattle, WA 98101" +173684,AAA Batteries (4-pack),1,2.99,03/22/19 23:06,"915 Park St, San Francisco, CA 94016" +173685,USB-C Charging Cable,1,11.95,03/27/19 18:14,"397 Chestnut St, New York City, NY 10001" +173686,20in Monitor,1,109.99,03/21/19 11:21,"276 Walnut St, New York City, NY 10001" +173687,AA Batteries (4-pack),2,3.84,03/24/19 13:34,"752 Cedar St, Austin, TX 73301" +173688,AA Batteries (4-pack),1,3.84,03/28/19 06:06,"146 Lakeview St, Los Angeles, CA 90001" +173689,AAA Batteries (4-pack),2,2.99,03/02/19 17:02,"845 9th St, San Francisco, CA 94016" +173690,Wired Headphones,1,11.99,03/04/19 13:53,"866 Main St, Los Angeles, CA 90001" +173691,ThinkPad Laptop,1,999.99,03/11/19 19:17,"155 Main St, Austin, TX 73301" +173692,20in Monitor,1,109.99,03/23/19 08:05,"281 4th St, Seattle, WA 98101" +173693,Wired Headphones,1,11.99,03/02/19 18:46,"525 1st St, Los Angeles, CA 90001" +173694,Wired Headphones,1,11.99,03/27/19 20:30,"17 River St, New York City, NY 10001" +173695,27in FHD Monitor,1,149.99,03/20/19 12:32,"986 Lake St, Austin, TX 73301" +173696,USB-C Charging Cable,1,11.95,03/19/19 06:34,"621 5th St, Seattle, WA 98101" +173697,Lightning Charging Cable,1,14.95,03/04/19 12:34,"524 Johnson St, San Francisco, CA 94016" +173698,Lightning Charging Cable,1,14.95,03/16/19 15:10,"186 Center St, New York City, NY 10001" +173698,Apple Airpods Headphones,1,150,03/16/19 15:10,"186 Center St, New York City, NY 10001" +173699,Bose SoundSport Headphones,1,99.99,03/22/19 19:48,"341 12th St, New York City, NY 10001" +173700,Wired Headphones,1,11.99,03/26/19 18:43,"687 Forest St, Los Angeles, CA 90001" +173701,34in Ultrawide Monitor,1,379.99,03/04/19 12:44,"803 Sunset St, Los Angeles, CA 90001" +173702,27in 4K Gaming Monitor,1,389.99,03/04/19 10:25,"719 12th St, San Francisco, CA 94016" +173703,Apple Airpods Headphones,1,150,03/28/19 18:50,"60 9th St, Dallas, TX 75001" +173704,Lightning Charging Cable,1,14.95,03/23/19 10:32,"353 Lincoln St, New York City, NY 10001" +173705,AA Batteries (4-pack),1,3.84,03/14/19 17:20,"102 Lakeview St, San Francisco, CA 94016" +173706,AA Batteries (4-pack),1,3.84,03/05/19 11:51,"710 Hill St, Boston, MA 02215" +173707,Flatscreen TV,1,300,03/15/19 17:56,"984 Forest St, Boston, MA 02215" +173708,Lightning Charging Cable,1,14.95,03/28/19 21:00,"98 1st St, New York City, NY 10001" +173709,Macbook Pro Laptop,1,1700,03/02/19 11:38,"373 Center St, Austin, TX 73301" +173710,USB-C Charging Cable,1,11.95,03/05/19 12:43,"719 Willow St, Boston, MA 02215" +173711,AAA Batteries (4-pack),1,2.99,03/15/19 13:28,"67 Hill St, Los Angeles, CA 90001" +173712,27in FHD Monitor,1,149.99,03/03/19 08:25,"208 Meadow St, Los Angeles, CA 90001" +173713,AA Batteries (4-pack),1,3.84,03/01/19 21:37,"621 Jackson St, Austin, TX 73301" +173714,Wired Headphones,1,11.99,03/18/19 11:51,"590 10th St, San Francisco, CA 94016" +173715,Apple Airpods Headphones,1,150,03/28/19 07:52,"119 Hill St, Los Angeles, CA 90001" +173716,AA Batteries (4-pack),3,3.84,03/09/19 21:35,"295 Adams St, Atlanta, GA 30301" +173717,Flatscreen TV,1,300,03/22/19 12:06,"222 Madison St, Seattle, WA 98101" +173718,USB-C Charging Cable,1,11.95,03/22/19 16:23,"126 Spruce St, Los Angeles, CA 90001" +173719,34in Ultrawide Monitor,1,379.99,03/13/19 20:04,"829 7th St, Portland, OR 97035" +173720,USB-C Charging Cable,1,11.95,03/09/19 13:24,"33 Washington St, San Francisco, CA 94016" +173721,Bose SoundSport Headphones,1,99.99,03/30/19 23:02,"740 Lakeview St, Los Angeles, CA 90001" +173722,20in Monitor,1,109.99,03/02/19 20:51,"476 Sunset St, Atlanta, GA 30301" +173723,34in Ultrawide Monitor,1,379.99,03/04/19 11:37,"600 Forest St, San Francisco, CA 94016" +173724,Apple Airpods Headphones,1,150,03/13/19 20:50,"949 Wilson St, Atlanta, GA 30301" +173725,20in Monitor,1,109.99,03/01/19 18:38,"549 Walnut St, New York City, NY 10001" +173725,Macbook Pro Laptop,1,1700,03/01/19 18:38,"549 Walnut St, New York City, NY 10001" +173726,Wired Headphones,1,11.99,03/17/19 18:27,"237 Forest St, San Francisco, CA 94016" +173727,27in 4K Gaming Monitor,1,389.99,03/17/19 14:52,"124 1st St, Los Angeles, CA 90001" +173728,AA Batteries (4-pack),1,3.84,03/18/19 12:01,"979 9th St, San Francisco, CA 94016" +173729,AAA Batteries (4-pack),1,2.99,03/12/19 21:20,"848 8th St, Seattle, WA 98101" +173730,ThinkPad Laptop,1,999.99,03/04/19 18:08,"212 Highland St, Dallas, TX 75001" +173731,Flatscreen TV,1,300,03/14/19 16:51,"957 River St, San Francisco, CA 94016" +173732,AA Batteries (4-pack),2,3.84,03/09/19 14:32,"606 Church St, San Francisco, CA 94016" +173733,AA Batteries (4-pack),2,3.84,03/01/19 12:31,"571 6th St, Seattle, WA 98101" +173734,27in 4K Gaming Monitor,1,389.99,03/24/19 23:56,"519 Jefferson St, Dallas, TX 75001" +173735,Lightning Charging Cable,1,14.95,03/04/19 06:24,"117 13th St, New York City, NY 10001" +173736,AAA Batteries (4-pack),1,2.99,03/29/19 19:03,"885 7th St, Seattle, WA 98101" +173737,Bose SoundSport Headphones,1,99.99,03/04/19 18:32,"258 Hill St, New York City, NY 10001" +173738,Flatscreen TV,1,300,03/01/19 17:16,"544 Park St, Los Angeles, CA 90001" +173739,27in FHD Monitor,1,149.99,03/03/19 13:15,"34 West St, Los Angeles, CA 90001" +173740,ThinkPad Laptop,1,999.99,03/11/19 13:35,"780 West St, Seattle, WA 98101" +173741,Google Phone,1,600,03/18/19 09:47,"824 Madison St, New York City, NY 10001" +173742,Bose SoundSport Headphones,1,99.99,03/07/19 11:41,"456 River St, Seattle, WA 98101" +173743,Apple Airpods Headphones,1,150,03/17/19 17:28,"808 South St, New York City, NY 10001" +173744,AA Batteries (4-pack),2,3.84,03/15/19 17:49,"744 Dogwood St, San Francisco, CA 94016" +173745,Wired Headphones,1,11.99,03/30/19 22:01,"530 Hill St, Seattle, WA 98101" +173745,AAA Batteries (4-pack),1,2.99,03/30/19 22:01,"530 Hill St, Seattle, WA 98101" +173746,Flatscreen TV,1,300,03/22/19 20:07,"268 Cedar St, Atlanta, GA 30301" +173747,Apple Airpods Headphones,1,150,03/29/19 00:33,"242 Dogwood St, Boston, MA 02215" +173748,USB-C Charging Cable,1,11.95,03/30/19 15:10,"981 Elm St, Boston, MA 02215" +173749,USB-C Charging Cable,1,11.95,03/08/19 09:22,"416 Washington St, Atlanta, GA 30301" +173750,USB-C Charging Cable,1,11.95,03/14/19 07:13,"131 Lake St, Los Angeles, CA 90001" +173751,Apple Airpods Headphones,1,150,03/29/19 18:16,"68 7th St, Boston, MA 02215" +173752,AAA Batteries (4-pack),1,2.99,03/04/19 21:39,"321 Lincoln St, New York City, NY 10001" +173753,AA Batteries (4-pack),4,3.84,03/02/19 14:21,"365 South St, Seattle, WA 98101" +173754,27in FHD Monitor,1,149.99,03/18/19 17:58,"435 Wilson St, Los Angeles, CA 90001" +173755,USB-C Charging Cable,1,11.95,03/04/19 20:00,"207 Madison St, San Francisco, CA 94016" +173756,Wired Headphones,1,11.99,03/26/19 20:31,"563 13th St, Los Angeles, CA 90001" +173757,Bose SoundSport Headphones,1,99.99,03/24/19 09:55,"926 Johnson St, San Francisco, CA 94016" +173758,Apple Airpods Headphones,1,150,03/28/19 15:11,"123 2nd St, New York City, NY 10001" +173759,iPhone,1,700,03/01/19 19:43,"526 Ridge St, San Francisco, CA 94016" +173760,AAA Batteries (4-pack),1,2.99,03/26/19 23:35,"526 Elm St, Seattle, WA 98101" +173761,USB-C Charging Cable,1,11.95,03/19/19 11:30,"949 Jefferson St, San Francisco, CA 94016" +173762,AAA Batteries (4-pack),2,2.99,03/08/19 05:57,"438 Main St, San Francisco, CA 94016" +173763,Bose SoundSport Headphones,1,99.99,03/12/19 22:39,"730 Maple St, Seattle, WA 98101" +173764,AAA Batteries (4-pack),2,2.99,03/07/19 14:06,"2 7th St, Los Angeles, CA 90001" +173765,USB-C Charging Cable,1,11.95,03/05/19 16:26,"635 Hill St, Boston, MA 02215" +173766,USB-C Charging Cable,1,11.95,03/09/19 18:23,"437 Adams St, San Francisco, CA 94016" +173767,27in FHD Monitor,1,149.99,03/28/19 05:54,"855 Walnut St, Portland, OR 97035" +173768,Bose SoundSport Headphones,1,99.99,03/31/19 17:08,"905 Lakeview St, New York City, NY 10001" +173769,AA Batteries (4-pack),1,3.84,03/26/19 14:22,"402 Highland St, San Francisco, CA 94016" +173770,iPhone,1,700,03/23/19 15:07,"717 Sunset St, Portland, ME 04101" +173770,Wired Headphones,1,11.99,03/23/19 15:07,"717 Sunset St, Portland, ME 04101" +173771,Apple Airpods Headphones,1,150,03/08/19 13:47,"985 Meadow St, Portland, OR 97035" +173772,Bose SoundSport Headphones,1,99.99,03/30/19 00:10,"327 9th St, Portland, OR 97035" +173773,USB-C Charging Cable,1,11.95,03/29/19 15:13,"552 Highland St, Austin, TX 73301" +173774,USB-C Charging Cable,1,11.95,03/23/19 13:18,"879 14th St, Seattle, WA 98101" +173775,Macbook Pro Laptop,1,1700,03/16/19 18:02,"710 10th St, San Francisco, CA 94016" +173776,Flatscreen TV,1,300,03/01/19 12:49,"766 2nd St, Portland, OR 97035" +173777,Apple Airpods Headphones,1,150,03/31/19 08:51,"415 4th St, Boston, MA 02215" +173778,Bose SoundSport Headphones,1,99.99,03/06/19 11:57,"132 Church St, San Francisco, CA 94016" +173779,Lightning Charging Cable,1,14.95,03/24/19 22:41,"620 Main St, Dallas, TX 75001" +173780,AA Batteries (4-pack),1,3.84,03/29/19 17:48,"987 4th St, San Francisco, CA 94016" +173781,AAA Batteries (4-pack),1,2.99,03/20/19 14:39,"950 Meadow St, San Francisco, CA 94016" +173782,Apple Airpods Headphones,1,150,03/17/19 22:59,"675 Jefferson St, San Francisco, CA 94016" +173783,AAA Batteries (4-pack),3,2.99,03/31/19 22:03,"325 Dogwood St, San Francisco, CA 94016" +173784,Bose SoundSport Headphones,1,99.99,03/19/19 23:51,"855 Lincoln St, Los Angeles, CA 90001" +173785,Flatscreen TV,1,300,03/04/19 11:40,"917 River St, Portland, OR 97035" +173786,ThinkPad Laptop,1,999.99,03/21/19 18:18,"462 Chestnut St, Dallas, TX 75001" +173787,Google Phone,1,600,03/27/19 00:37,"144 Cedar St, Seattle, WA 98101" +173787,USB-C Charging Cable,1,11.95,03/27/19 00:37,"144 Cedar St, Seattle, WA 98101" +173788,Bose SoundSport Headphones,1,99.99,03/12/19 01:18,"798 Dogwood St, Los Angeles, CA 90001" +173789,USB-C Charging Cable,1,11.95,03/18/19 10:20,"737 12th St, Seattle, WA 98101" +173790,34in Ultrawide Monitor,1,379.99,03/21/19 20:05,"365 Hickory St, New York City, NY 10001" +173791,AA Batteries (4-pack),1,3.84,03/03/19 13:27,"107 2nd St, Portland, ME 04101" +173792,27in FHD Monitor,1,149.99,03/08/19 12:14,"789 Lincoln St, Los Angeles, CA 90001" +173793,Bose SoundSport Headphones,1,99.99,03/08/19 08:00,"567 Jackson St, Boston, MA 02215" +173794,Lightning Charging Cable,2,14.95,03/12/19 20:44,"324 Jackson St, Los Angeles, CA 90001" +173795,34in Ultrawide Monitor,1,379.99,03/08/19 20:50,"584 4th St, Los Angeles, CA 90001" +173796,USB-C Charging Cable,1,11.95,03/21/19 18:05,"34 2nd St, Los Angeles, CA 90001" +173797,Wired Headphones,2,11.99,03/18/19 10:26,"450 South St, New York City, NY 10001" +173798,Apple Airpods Headphones,1,150,03/12/19 14:12,"547 5th St, Boston, MA 02215" +173799,AAA Batteries (4-pack),1,2.99,03/16/19 11:04,"145 Pine St, San Francisco, CA 94016" +173799,AA Batteries (4-pack),1,3.84,03/16/19 11:04,"145 Pine St, San Francisco, CA 94016" +173800,USB-C Charging Cable,1,11.95,03/13/19 18:36,"66 Madison St, New York City, NY 10001" +173801,27in 4K Gaming Monitor,1,389.99,03/23/19 14:09,"479 Ridge St, Los Angeles, CA 90001" +173802,Apple Airpods Headphones,2,150,03/05/19 10:50,"577 Sunset St, Dallas, TX 75001" +173803,Lightning Charging Cable,1,14.95,03/26/19 18:55,"96 Walnut St, Boston, MA 02215" +173804,AAA Batteries (4-pack),1,2.99,03/18/19 13:51,"299 Meadow St, Boston, MA 02215" +173805,Lightning Charging Cable,1,14.95,03/11/19 18:28,"987 13th St, Boston, MA 02215" +173806,Wired Headphones,1,11.99,03/15/19 09:36,"827 Park St, Atlanta, GA 30301" +173807,Bose SoundSport Headphones,1,99.99,03/19/19 18:07,"216 Walnut St, Seattle, WA 98101" +173808,AAA Batteries (4-pack),2,2.99,03/06/19 09:31,"921 Church St, San Francisco, CA 94016" +173809,27in 4K Gaming Monitor,1,389.99,03/21/19 11:32,"131 9th St, Portland, ME 04101" +173810,27in 4K Gaming Monitor,1,389.99,03/01/19 10:19,"433 10th St, Los Angeles, CA 90001" +173811,Wired Headphones,1,11.99,03/03/19 11:38,"224 14th St, Los Angeles, CA 90001" +173812,34in Ultrawide Monitor,1,379.99,03/27/19 10:14,"800 Washington St, San Francisco, CA 94016" +173813,27in FHD Monitor,1,149.99,03/25/19 15:28,"816 Adams St, Seattle, WA 98101" +173814,Lightning Charging Cable,1,14.95,03/25/19 00:37,"644 West St, New York City, NY 10001" +173815,iPhone,1,700,03/28/19 20:36,"687 West St, San Francisco, CA 94016" +173816,Macbook Pro Laptop,1,1700,03/20/19 20:29,"939 Center St, San Francisco, CA 94016" +173817,Macbook Pro Laptop,1,1700,03/14/19 23:57,"671 5th St, Boston, MA 02215" +173818,USB-C Charging Cable,1,11.95,03/08/19 20:21,"690 Adams St, New York City, NY 10001" +173819,AAA Batteries (4-pack),1,2.99,03/10/19 19:24,"657 Wilson St, New York City, NY 10001" +173820,AAA Batteries (4-pack),2,2.99,03/28/19 19:39,"919 Willow St, Seattle, WA 98101" +173821,Wired Headphones,1,11.99,03/18/19 14:59,"609 Lakeview St, New York City, NY 10001" +173822,27in FHD Monitor,1,149.99,03/09/19 15:52,"74 Jefferson St, Atlanta, GA 30301" +173823,AAA Batteries (4-pack),1,2.99,03/29/19 23:16,"335 Ridge St, New York City, NY 10001" +173824,AA Batteries (4-pack),1,3.84,03/15/19 08:29,"90 Lakeview St, Los Angeles, CA 90001" +173825,Apple Airpods Headphones,1,150,03/08/19 11:58,"21 11th St, New York City, NY 10001" +173826,Wired Headphones,1,11.99,03/03/19 21:36,"379 Main St, Los Angeles, CA 90001" +173827,Wired Headphones,3,11.99,03/24/19 13:21,"380 Washington St, San Francisco, CA 94016" +173828,20in Monitor,1,109.99,03/06/19 15:49,"428 Dogwood St, Portland, ME 04101" +173829,AAA Batteries (4-pack),2,2.99,03/06/19 07:22,"796 Chestnut St, San Francisco, CA 94016" +173830,Apple Airpods Headphones,1,150,03/16/19 18:29,"302 Madison St, San Francisco, CA 94016" +173831,Apple Airpods Headphones,1,150,03/23/19 20:29,"319 Maple St, Boston, MA 02215" +173832,AA Batteries (4-pack),1,3.84,03/23/19 15:08,"595 7th St, Los Angeles, CA 90001" +173833,USB-C Charging Cable,1,11.95,03/30/19 05:11,"782 Lakeview St, Seattle, WA 98101" +173834,Google Phone,1,600,03/09/19 12:29,"212 14th St, San Francisco, CA 94016" +173835,Lightning Charging Cable,1,14.95,03/22/19 16:32,"114 Walnut St, Boston, MA 02215" +173836,USB-C Charging Cable,1,11.95,03/14/19 14:20,"63 Maple St, San Francisco, CA 94016" +173837,AA Batteries (4-pack),1,3.84,03/17/19 11:13,"50 Ridge St, Los Angeles, CA 90001" +173838,Lightning Charging Cable,1,14.95,03/10/19 10:55,"469 Chestnut St, Seattle, WA 98101" +173839,LG Dryer,1,600.0,03/12/19 12:47,"164 Sunset St, New York City, NY 10001" +173840,Apple Airpods Headphones,1,150,03/09/19 12:57,"41 Hickory St, Seattle, WA 98101" +173841,Apple Airpods Headphones,1,150,03/09/19 17:01,"940 Jefferson St, San Francisco, CA 94016" +173842,AAA Batteries (4-pack),1,2.99,03/31/19 19:40,"349 Washington St, Portland, OR 97035" +173843,AAA Batteries (4-pack),1,2.99,03/10/19 10:29,"674 Wilson St, San Francisco, CA 94016" +173843,Bose SoundSport Headphones,1,99.99,03/10/19 10:29,"674 Wilson St, San Francisco, CA 94016" +173844,USB-C Charging Cable,1,11.95,03/04/19 06:41,"384 Maple St, Boston, MA 02215" +173845,34in Ultrawide Monitor,1,379.99,03/17/19 11:14,"853 13th St, Portland, OR 97035" +173846,34in Ultrawide Monitor,1,379.99,03/27/19 10:24,"191 12th St, Los Angeles, CA 90001" +173847,USB-C Charging Cable,4,11.95,03/05/19 17:40,"190 5th St, Los Angeles, CA 90001" +173848,Lightning Charging Cable,1,14.95,03/05/19 23:34,"719 Cedar St, Atlanta, GA 30301" +173849,AAA Batteries (4-pack),1,2.99,03/28/19 23:11,"518 Forest St, Seattle, WA 98101" +173850,ThinkPad Laptop,1,999.99,03/01/19 16:31,"780 Cherry St, Portland, OR 97035" +173851,27in FHD Monitor,1,149.99,03/07/19 12:14,"745 Center St, San Francisco, CA 94016" +173852,27in 4K Gaming Monitor,1,389.99,03/31/19 21:35,"132 Ridge St, Portland, OR 97035" +173853,Wired Headphones,1,11.99,03/23/19 06:16,"790 Washington St, Atlanta, GA 30301" +173854,Wired Headphones,1,11.99,03/03/19 01:32,"159 14th St, Portland, OR 97035" +173855,Wired Headphones,1,11.99,03/24/19 14:23,"103 Center St, New York City, NY 10001" +173856,AA Batteries (4-pack),1,3.84,03/21/19 21:47,"683 Park St, San Francisco, CA 94016" +173857,Vareebadd Phone,1,400,03/29/19 17:44,"978 Sunset St, Portland, OR 97035" +173858,34in Ultrawide Monitor,1,379.99,03/18/19 09:41,"202 Forest St, Austin, TX 73301" +173859,Wired Headphones,1,11.99,03/23/19 15:48,"815 2nd St, Boston, MA 02215" +173860,Flatscreen TV,1,300,03/09/19 21:10,"513 Dogwood St, Dallas, TX 75001" +173861,AA Batteries (4-pack),2,3.84,03/25/19 17:52,"997 Ridge St, San Francisco, CA 94016" +173862,Lightning Charging Cable,1,14.95,03/11/19 22:43,"847 Cherry St, Austin, TX 73301" +173863,27in FHD Monitor,1,149.99,03/27/19 15:41,"964 Center St, Los Angeles, CA 90001" +173864,Bose SoundSport Headphones,1,99.99,03/21/19 11:06,"685 Johnson St, San Francisco, CA 94016" +173865,USB-C Charging Cable,2,11.95,03/04/19 18:42,"10 Jackson St, Atlanta, GA 30301" +173866,Apple Airpods Headphones,1,150,03/26/19 17:00,"691 Maple St, Los Angeles, CA 90001" +173867,USB-C Charging Cable,1,11.95,03/04/19 22:13,"413 Main St, San Francisco, CA 94016" +173868,Lightning Charging Cable,1,14.95,03/22/19 19:50,"386 Jackson St, Austin, TX 73301" +173869,Apple Airpods Headphones,1,150,03/24/19 22:53,"854 Lincoln St, Atlanta, GA 30301" +173870,USB-C Charging Cable,1,11.95,03/15/19 14:40,"333 Spruce St, San Francisco, CA 94016" +173871,iPhone,1,700,03/26/19 14:19,"867 River St, Boston, MA 02215" +173872,Bose SoundSport Headphones,1,99.99,03/25/19 13:31,"777 Hickory St, Portland, ME 04101" +173873,Apple Airpods Headphones,1,150,03/02/19 12:57,"962 River St, New York City, NY 10001" +173873,Apple Airpods Headphones,1,150,03/02/19 12:57,"962 River St, New York City, NY 10001" +173874,Lightning Charging Cable,1,14.95,03/28/19 21:13,"288 Jackson St, San Francisco, CA 94016" +173875,AAA Batteries (4-pack),1,2.99,03/10/19 12:19,"338 West St, Boston, MA 02215" +173876,AA Batteries (4-pack),3,3.84,03/18/19 14:20,"230 Cedar St, Atlanta, GA 30301" +173877,27in 4K Gaming Monitor,1,389.99,03/07/19 20:15,"906 Ridge St, Dallas, TX 75001" +173878,LG Washing Machine,1,600.0,03/28/19 19:13,"996 Lake St, San Francisco, CA 94016" +173879,AAA Batteries (4-pack),2,2.99,03/31/19 10:29,"704 Hickory St, Seattle, WA 98101" +173880,AAA Batteries (4-pack),3,2.99,03/16/19 15:18,"678 Church St, Seattle, WA 98101" +173881,Lightning Charging Cable,1,14.95,03/16/19 00:24,"218 Dogwood St, New York City, NY 10001" +173882,USB-C Charging Cable,1,11.95,03/06/19 07:29,"478 Lincoln St, Boston, MA 02215" +173883,USB-C Charging Cable,1,11.95,03/20/19 20:01,"752 Wilson St, New York City, NY 10001" +173884,Apple Airpods Headphones,1,150,03/06/19 14:12,"912 2nd St, San Francisco, CA 94016" +173885,Apple Airpods Headphones,1,150,03/04/19 00:04,"400 2nd St, Los Angeles, CA 90001" +173886,Vareebadd Phone,1,400,03/30/19 16:55,"507 14th St, Portland, OR 97035" +173887,USB-C Charging Cable,1,11.95,03/16/19 19:00,"932 Wilson St, Boston, MA 02215" +173888,AA Batteries (4-pack),1,3.84,03/01/19 09:25,"658 South St, New York City, NY 10001" +173889,Lightning Charging Cable,1,14.95,03/06/19 18:07,"304 Dogwood St, Dallas, TX 75001" +173890,Bose SoundSport Headphones,1,99.99,03/16/19 12:58,"380 Sunset St, Atlanta, GA 30301" +173891,Wired Headphones,1,11.99,03/23/19 14:38,"831 13th St, Los Angeles, CA 90001" +173892,USB-C Charging Cable,1,11.95,03/08/19 03:49,"291 Spruce St, Dallas, TX 75001" +173893,Wired Headphones,2,11.99,03/24/19 12:16,"347 Lakeview St, San Francisco, CA 94016" +173894,AA Batteries (4-pack),1,3.84,03/29/19 09:34,"923 7th St, San Francisco, CA 94016" +173895,AA Batteries (4-pack),1,3.84,03/10/19 19:19,"16 Elm St, Los Angeles, CA 90001" +173896,Lightning Charging Cable,1,14.95,03/11/19 09:24,"507 Center St, Boston, MA 02215" +173897,Bose SoundSport Headphones,1,99.99,03/20/19 11:04,"971 Lakeview St, San Francisco, CA 94016" +173898,AAA Batteries (4-pack),1,2.99,03/03/19 16:47,"34 Center St, Dallas, TX 75001" +173899,USB-C Charging Cable,1,11.95,03/24/19 23:34,"196 Center St, San Francisco, CA 94016" +173900,20in Monitor,1,109.99,03/18/19 16:43,"781 Center St, Austin, TX 73301" +173901,Lightning Charging Cable,1,14.95,03/29/19 09:33,"145 14th St, Atlanta, GA 30301" +173902,27in 4K Gaming Monitor,1,389.99,03/17/19 22:48,"726 Walnut St, Atlanta, GA 30301" +173903,Apple Airpods Headphones,1,150,03/18/19 01:07,"434 Cedar St, Los Angeles, CA 90001" +173904,AAA Batteries (4-pack),1,2.99,03/10/19 20:35,"856 Maple St, Atlanta, GA 30301" +173905,Google Phone,1,600,03/22/19 22:26,"602 South St, Atlanta, GA 30301" +173906,20in Monitor,1,109.99,03/28/19 00:04,"875 9th St, Los Angeles, CA 90001" +173907,Bose SoundSport Headphones,1,99.99,03/20/19 10:21,"268 Pine St, Los Angeles, CA 90001" +173908,AA Batteries (4-pack),1,3.84,03/11/19 14:29,"769 River St, Atlanta, GA 30301" +173909,Bose SoundSport Headphones,1,99.99,03/21/19 19:36,"415 Park St, New York City, NY 10001" +173910,USB-C Charging Cable,1,11.95,03/27/19 09:27,"467 Adams St, Seattle, WA 98101" +173911,27in FHD Monitor,1,149.99,03/27/19 09:34,"647 Main St, New York City, NY 10001" +173912,Bose SoundSport Headphones,1,99.99,03/20/19 14:46,"838 11th St, Boston, MA 02215" +173913,AA Batteries (4-pack),1,3.84,03/03/19 13:09,"392 Lincoln St, Atlanta, GA 30301" +173914,Macbook Pro Laptop,1,1700,03/15/19 09:35,"716 14th St, Los Angeles, CA 90001" +173915,27in 4K Gaming Monitor,1,389.99,03/12/19 08:01,"206 Dogwood St, San Francisco, CA 94016" +173916,Google Phone,1,600,03/17/19 21:39,"326 Spruce St, New York City, NY 10001" +173916,Wired Headphones,1,11.99,03/17/19 21:39,"326 Spruce St, New York City, NY 10001" +173917,AA Batteries (4-pack),1,3.84,03/24/19 09:09,"649 Cedar St, Boston, MA 02215" +173918,AAA Batteries (4-pack),1,2.99,03/03/19 22:00,"955 10th St, San Francisco, CA 94016" +173919,27in 4K Gaming Monitor,1,389.99,03/18/19 10:38,"844 Washington St, Atlanta, GA 30301" +173920,Wired Headphones,1,11.99,03/01/19 18:52,"534 Adams St, San Francisco, CA 94016" +173921,ThinkPad Laptop,1,999.99,03/13/19 14:13,"275 Meadow St, Los Angeles, CA 90001" +173922,AA Batteries (4-pack),1,3.84,03/29/19 12:35,"450 7th St, San Francisco, CA 94016" +173923,iPhone,1,700,03/20/19 11:02,"455 12th St, Boston, MA 02215" +173924,Lightning Charging Cable,1,14.95,03/29/19 02:57,"692 Madison St, San Francisco, CA 94016" +173925,Lightning Charging Cable,1,14.95,03/29/19 16:19,"47 12th St, Los Angeles, CA 90001" +173926,Lightning Charging Cable,1,14.95,03/25/19 13:59,"872 1st St, San Francisco, CA 94016" +173927,Macbook Pro Laptop,1,1700,03/16/19 21:12,"323 Highland St, Austin, TX 73301" +173928,20in Monitor,1,109.99,03/12/19 13:32,"219 West St, New York City, NY 10001" +173929,AAA Batteries (4-pack),1,2.99,03/24/19 00:37,"12 Forest St, San Francisco, CA 94016" +173930,Lightning Charging Cable,1,14.95,03/24/19 23:30,"168 North St, New York City, NY 10001" +173931,20in Monitor,1,109.99,03/31/19 20:40,"780 Lake St, Los Angeles, CA 90001" +173932,USB-C Charging Cable,1,11.95,03/25/19 23:19,"293 Elm St, Seattle, WA 98101" +173933,Macbook Pro Laptop,1,1700,03/17/19 17:54,"324 Church St, Dallas, TX 75001" +173934,iPhone,1,700,03/26/19 09:21,"342 South St, Los Angeles, CA 90001" +173934,Lightning Charging Cable,1,14.95,03/26/19 09:21,"342 South St, Los Angeles, CA 90001" +173935,Lightning Charging Cable,1,14.95,03/02/19 16:32,"739 8th St, San Francisco, CA 94016" +173936,USB-C Charging Cable,1,11.95,03/22/19 17:29,"240 Madison St, Los Angeles, CA 90001" +173937,AA Batteries (4-pack),1,3.84,03/11/19 12:56,"68 2nd St, Los Angeles, CA 90001" +173938,Macbook Pro Laptop,1,1700,03/07/19 22:48,"105 Walnut St, New York City, NY 10001" +173939,Google Phone,1,600,03/21/19 10:43,"389 Park St, Boston, MA 02215" +173940,Lightning Charging Cable,1,14.95,03/29/19 00:05,"519 Lakeview St, New York City, NY 10001" +173941,Macbook Pro Laptop,1,1700,03/25/19 20:04,"978 Jefferson St, Los Angeles, CA 90001" +173942,Lightning Charging Cable,1,14.95,03/16/19 22:13,"309 Dogwood St, San Francisco, CA 94016" +173943,AAA Batteries (4-pack),4,2.99,03/12/19 17:25,"823 River St, Boston, MA 02215" +173944,USB-C Charging Cable,1,11.95,03/15/19 18:03,"146 6th St, Los Angeles, CA 90001" +173945,Wired Headphones,1,11.99,03/01/19 11:48,"243 Spruce St, Boston, MA 02215" +173946,USB-C Charging Cable,1,11.95,03/28/19 12:09,"906 Hickory St, Los Angeles, CA 90001" +173947,AAA Batteries (4-pack),1,2.99,03/29/19 22:45,"332 Cedar St, Los Angeles, CA 90001" +173948,AA Batteries (4-pack),1,3.84,03/19/19 09:53,"453 6th St, Los Angeles, CA 90001" +173949,Apple Airpods Headphones,1,150,03/30/19 14:36,"922 Cedar St, Boston, MA 02215" +173950,AA Batteries (4-pack),1,3.84,03/30/19 23:58,"757 Walnut St, Seattle, WA 98101" +173951,Bose SoundSport Headphones,1,99.99,03/01/19 22:54,"184 South St, New York City, NY 10001" +173952,AAA Batteries (4-pack),1,2.99,03/13/19 19:14,"218 Lincoln St, Dallas, TX 75001" +173953,Google Phone,1,600,03/15/19 19:19,"840 River St, San Francisco, CA 94016" +173954,Lightning Charging Cable,1,14.95,03/21/19 13:16,"160 Lakeview St, Atlanta, GA 30301" +173955,Macbook Pro Laptop,1,1700,03/22/19 20:08,"976 Lincoln St, Atlanta, GA 30301" +173956,USB-C Charging Cable,1,11.95,03/17/19 10:49,"889 10th St, Atlanta, GA 30301" +173956,AAA Batteries (4-pack),1,2.99,03/17/19 10:49,"889 10th St, Atlanta, GA 30301" +173957,Lightning Charging Cable,1,14.95,03/11/19 09:33,"723 River St, Los Angeles, CA 90001" +173958,Wired Headphones,1,11.99,03/12/19 18:39,"439 2nd St, New York City, NY 10001" +173959,27in 4K Gaming Monitor,1,389.99,03/30/19 08:31,"440 Jackson St, San Francisco, CA 94016" +173960,AAA Batteries (4-pack),1,2.99,03/12/19 01:45,"773 Dogwood St, New York City, NY 10001" +173961,Apple Airpods Headphones,1,150,03/23/19 16:31,"100 10th St, Los Angeles, CA 90001" +173962,iPhone,1,700,03/31/19 20:58,"574 6th St, Portland, OR 97035" +173963,iPhone,1,700,03/13/19 11:45,"977 12th St, New York City, NY 10001" +173964,USB-C Charging Cable,1,11.95,03/10/19 17:09,"1 Center St, Portland, OR 97035" +173965,Apple Airpods Headphones,1,150,03/11/19 18:43,"976 Lincoln St, San Francisco, CA 94016" +173966,Apple Airpods Headphones,1,150,03/26/19 16:30,"934 14th St, San Francisco, CA 94016" +173967,34in Ultrawide Monitor,1,379.99,03/12/19 13:12,"993 Sunset St, New York City, NY 10001" +173968,Apple Airpods Headphones,1,150,03/08/19 03:32,"966 Lakeview St, San Francisco, CA 94016" +173969,Wired Headphones,1,11.99,03/31/19 21:09,"712 14th St, New York City, NY 10001" +173970,20in Monitor,1,109.99,03/02/19 09:39,"882 River St, San Francisco, CA 94016" +173971,iPhone,1,700,03/26/19 17:47,"10 Johnson St, Boston, MA 02215" +173972,Wired Headphones,1,11.99,03/11/19 09:33,"218 4th St, New York City, NY 10001" +173973,iPhone,1,700,03/11/19 12:08,"534 Park St, Seattle, WA 98101" +173974,Wired Headphones,1,11.99,03/14/19 15:15,"988 Johnson St, Austin, TX 73301" +173975,Google Phone,1,600,03/20/19 14:43,"957 Wilson St, Dallas, TX 75001" +173975,USB-C Charging Cable,1,11.95,03/20/19 14:43,"957 Wilson St, Dallas, TX 75001" +173975,Wired Headphones,2,11.99,03/20/19 14:43,"957 Wilson St, Dallas, TX 75001" +173975,AA Batteries (4-pack),2,3.84,03/20/19 14:43,"957 Wilson St, Dallas, TX 75001" +173976,AA Batteries (4-pack),1,3.84,03/06/19 20:10,"157 Center St, Boston, MA 02215" +173977,AAA Batteries (4-pack),3,2.99,03/19/19 10:21,"74 5th St, Portland, OR 97035" +173978,Wired Headphones,1,11.99,03/31/19 12:46,"930 Highland St, Boston, MA 02215" +173979,Lightning Charging Cable,1,14.95,03/30/19 10:10,"705 2nd St, Boston, MA 02215" +173980,AAA Batteries (4-pack),2,2.99,03/29/19 08:48,"681 10th St, Austin, TX 73301" +173981,27in 4K Gaming Monitor,1,389.99,03/13/19 22:50,"487 Lake St, Seattle, WA 98101" +173982,AAA Batteries (4-pack),1,2.99,03/28/19 19:00,"203 Sunset St, San Francisco, CA 94016" +173983,Wired Headphones,1,11.99,03/05/19 10:32,"527 Madison St, New York City, NY 10001" +173984,USB-C Charging Cable,1,11.95,03/20/19 03:30,"753 Church St, Los Angeles, CA 90001" +173985,Wired Headphones,1,11.99,03/04/19 15:46,"310 Spruce St, New York City, NY 10001" +173986,Vareebadd Phone,1,400,03/30/19 22:16,"96 8th St, New York City, NY 10001" +173986,Wired Headphones,1,11.99,03/30/19 22:16,"96 8th St, New York City, NY 10001" +173987,AAA Batteries (4-pack),1,2.99,03/28/19 15:42,"703 Meadow St, San Francisco, CA 94016" +173988,USB-C Charging Cable,1,11.95,03/01/19 11:23,"179 Cedar St, Atlanta, GA 30301" +173989,AAA Batteries (4-pack),1,2.99,03/23/19 14:02,"844 8th St, Portland, OR 97035" +173990,27in 4K Gaming Monitor,1,389.99,03/27/19 13:27,"977 9th St, Los Angeles, CA 90001" +173991,LG Dryer,1,600.0,03/01/19 12:11,"407 Park St, Dallas, TX 75001" +173992,AA Batteries (4-pack),1,3.84,03/03/19 13:24,"673 Walnut St, Los Angeles, CA 90001" +173993,Apple Airpods Headphones,1,150,03/10/19 19:26,"799 Forest St, Los Angeles, CA 90001" +173994,27in 4K Gaming Monitor,1,389.99,03/05/19 16:17,"51 Forest St, Boston, MA 02215" +173995,Apple Airpods Headphones,1,150,03/08/19 19:16,"336 Hickory St, Seattle, WA 98101" +173996,Wired Headphones,2,11.99,03/30/19 14:09,"763 Center St, Dallas, TX 75001" +173997,AAA Batteries (4-pack),2,2.99,03/28/19 14:33,"454 Maple St, Seattle, WA 98101" +173998,Macbook Pro Laptop,1,1700,03/14/19 03:20,"363 8th St, Seattle, WA 98101" +173999,ThinkPad Laptop,1,999.99,03/29/19 19:24,"476 River St, Atlanta, GA 30301" +174000,USB-C Charging Cable,1,11.95,03/25/19 13:51,"851 8th St, Los Angeles, CA 90001" +174001,Bose SoundSport Headphones,1,99.99,03/03/19 12:23,"394 Cedar St, Los Angeles, CA 90001" +174002,USB-C Charging Cable,1,11.95,03/23/19 18:22,"658 River St, San Francisco, CA 94016" +174003,AA Batteries (4-pack),1,3.84,03/17/19 00:50,"11 8th St, Atlanta, GA 30301" +174004,AAA Batteries (4-pack),1,2.99,03/06/19 22:18,"572 Main St, San Francisco, CA 94016" +174005,27in FHD Monitor,1,149.99,03/26/19 10:45,"567 Jackson St, Los Angeles, CA 90001" +174006,Lightning Charging Cable,1,14.95,03/03/19 15:50,"581 Spruce St, Atlanta, GA 30301" +174007,AA Batteries (4-pack),1,3.84,03/05/19 12:28,"541 Spruce St, Austin, TX 73301" +174008,Macbook Pro Laptop,1,1700,03/03/19 19:05,"367 Pine St, New York City, NY 10001" +174009,Flatscreen TV,1,300,03/09/19 00:06,"739 5th St, Portland, OR 97035" +174010,Apple Airpods Headphones,1,150,03/04/19 11:22,"219 Lake St, Portland, OR 97035" +174011,AA Batteries (4-pack),1,3.84,03/22/19 01:19,"525 9th St, San Francisco, CA 94016" +174012,27in 4K Gaming Monitor,1,389.99,03/20/19 11:48,"822 Willow St, Los Angeles, CA 90001" +174013,AA Batteries (4-pack),1,3.84,03/22/19 12:20,"264 Main St, Boston, MA 02215" +174014,Lightning Charging Cable,2,14.95,03/12/19 11:34,"141 11th St, Seattle, WA 98101" +174015,USB-C Charging Cable,1,11.95,03/04/19 18:43,"210 Adams St, San Francisco, CA 94016" +174016,34in Ultrawide Monitor,1,379.99,03/15/19 08:33,"811 1st St, Austin, TX 73301" +174017,iPhone,1,700,03/18/19 08:24,"674 5th St, Portland, OR 97035" +174017,Lightning Charging Cable,1,14.95,03/18/19 08:24,"674 5th St, Portland, OR 97035" +174018,Lightning Charging Cable,1,14.95,03/10/19 15:57,"225 Hill St, Portland, OR 97035" +174019,USB-C Charging Cable,1,11.95,03/15/19 11:05,"139 Meadow St, New York City, NY 10001" +174020,Bose SoundSport Headphones,1,99.99,03/29/19 10:16,"829 4th St, New York City, NY 10001" +174021,AAA Batteries (4-pack),1,2.99,03/02/19 11:58,"138 Jefferson St, New York City, NY 10001" +174022,Lightning Charging Cable,1,14.95,03/02/19 20:08,"64 Madison St, San Francisco, CA 94016" +174023,Wired Headphones,1,11.99,03/06/19 14:29,"45 4th St, Los Angeles, CA 90001" +174024,Bose SoundSport Headphones,1,99.99,03/16/19 19:29,"881 Chestnut St, New York City, NY 10001" +174025,34in Ultrawide Monitor,1,379.99,03/14/19 13:32,"967 Church St, Portland, OR 97035" +174026,AAA Batteries (4-pack),1,2.99,03/15/19 21:25,"123 Ridge St, San Francisco, CA 94016" +174027,27in FHD Monitor,1,149.99,03/31/19 19:58,"188 Cedar St, Seattle, WA 98101" +174028,27in FHD Monitor,1,149.99,03/26/19 08:21,"961 Maple St, Portland, OR 97035" +174029,USB-C Charging Cable,1,11.95,03/12/19 08:11,"208 Johnson St, San Francisco, CA 94016" +174030,AA Batteries (4-pack),2,3.84,03/07/19 17:49,"34 Main St, Boston, MA 02215" +174031,Bose SoundSport Headphones,1,99.99,03/11/19 20:36,"523 Lincoln St, San Francisco, CA 94016" +174032,AAA Batteries (4-pack),1,2.99,03/12/19 17:18,"975 Willow St, Boston, MA 02215" +174033,Wired Headphones,1,11.99,03/07/19 09:22,"202 Jackson St, Los Angeles, CA 90001" +174034,27in FHD Monitor,1,149.99,03/21/19 12:07,"617 6th St, Dallas, TX 75001" +174035,AAA Batteries (4-pack),1,2.99,03/29/19 11:09,"689 Madison St, Los Angeles, CA 90001" +174036,Lightning Charging Cable,1,14.95,03/24/19 11:27,"153 Hickory St, San Francisco, CA 94016" +174037,Wired Headphones,1,11.99,03/05/19 16:59,"619 6th St, San Francisco, CA 94016" +174038,AAA Batteries (4-pack),1,2.99,03/03/19 22:09,"109 West St, San Francisco, CA 94016" +174039,Apple Airpods Headphones,1,150,03/30/19 01:30,"595 Madison St, Los Angeles, CA 90001" +174040,AA Batteries (4-pack),1,3.84,03/17/19 14:23,"777 Cherry St, San Francisco, CA 94016" +174041,Flatscreen TV,1,300,03/12/19 15:27,"313 South St, New York City, NY 10001" +174042,Lightning Charging Cable,1,14.95,03/16/19 12:55,"545 13th St, Los Angeles, CA 90001" +174043,Wired Headphones,1,11.99,03/03/19 20:33,"390 Hill St, New York City, NY 10001" +174044,20in Monitor,1,109.99,03/28/19 18:22,"910 Lakeview St, Boston, MA 02215" +174045,Lightning Charging Cable,1,14.95,03/07/19 14:13,"810 Cherry St, Seattle, WA 98101" +174046,Macbook Pro Laptop,1,1700,03/01/19 11:53,"111 12th St, San Francisco, CA 94016" +174047,Wired Headphones,1,11.99,03/05/19 16:27,"149 9th St, Seattle, WA 98101" +174048,AA Batteries (4-pack),2,3.84,03/10/19 17:27,"532 Elm St, Boston, MA 02215" +174049,iPhone,1,700,03/04/19 19:10,"223 6th St, San Francisco, CA 94016" +174050,AAA Batteries (4-pack),1,2.99,03/20/19 12:11,"139 Sunset St, New York City, NY 10001" +174051,AA Batteries (4-pack),1,3.84,03/29/19 07:46,"55 Maple St, Los Angeles, CA 90001" +174052,Lightning Charging Cable,2,14.95,03/20/19 20:08,"712 Adams St, Austin, TX 73301" +174053,Wired Headphones,1,11.99,03/22/19 15:18,"769 Hickory St, Boston, MA 02215" +174054,AA Batteries (4-pack),2,3.84,03/05/19 15:03,"94 9th St, New York City, NY 10001" +174055,iPhone,1,700,03/27/19 17:40,"393 South St, Los Angeles, CA 90001" +174056,Lightning Charging Cable,1,14.95,03/12/19 11:55,"313 South St, Portland, OR 97035" +174057,Flatscreen TV,1,300,03/31/19 08:20,"504 8th St, San Francisco, CA 94016" +174058,AAA Batteries (4-pack),3,2.99,03/02/19 10:30,"544 Madison St, Boston, MA 02215" +174059,AAA Batteries (4-pack),1,2.99,03/21/19 13:29,"184 Park St, San Francisco, CA 94016" +174060,Lightning Charging Cable,1,14.95,03/27/19 18:04,"633 Jefferson St, New York City, NY 10001" +174061,Google Phone,1,600,03/29/19 08:02,"645 Dogwood St, Boston, MA 02215" +174062,USB-C Charging Cable,1,11.95,03/13/19 15:53,"37 Ridge St, Los Angeles, CA 90001" +174063,AAA Batteries (4-pack),1,2.99,03/09/19 10:42,"533 North St, New York City, NY 10001" +174064,Lightning Charging Cable,2,14.95,03/24/19 08:15,"3 Pine St, Los Angeles, CA 90001" +174065,Wired Headphones,2,11.99,03/23/19 23:09,"231 Meadow St, Seattle, WA 98101" +174066,Lightning Charging Cable,1,14.95,03/22/19 18:29,"156 6th St, San Francisco, CA 94016" +174067,AAA Batteries (4-pack),1,2.99,03/01/19 23:12,"996 Dogwood St, New York City, NY 10001" +174068,AAA Batteries (4-pack),1,2.99,03/30/19 09:28,"145 Spruce St, San Francisco, CA 94016" +174069,Wired Headphones,1,11.99,03/05/19 01:55,"693 Hickory St, Los Angeles, CA 90001" +174070,ThinkPad Laptop,1,999.99,03/22/19 20:14,"358 Highland St, Portland, ME 04101" +174071,iPhone,1,700,03/12/19 17:52,"495 Jackson St, Los Angeles, CA 90001" +174072,Wired Headphones,1,11.99,03/10/19 09:22,"210 Willow St, Boston, MA 02215" +174073,USB-C Charging Cable,1,11.95,03/11/19 21:05,"509 Maple St, Austin, TX 73301" +174074,AA Batteries (4-pack),2,3.84,03/27/19 14:13,"316 Hill St, Austin, TX 73301" +174075,Bose SoundSport Headphones,1,99.99,03/08/19 17:25,"752 Dogwood St, New York City, NY 10001" +174076,Macbook Pro Laptop,1,1700,03/11/19 09:07,"802 Sunset St, Los Angeles, CA 90001" +174077,Apple Airpods Headphones,1,150,03/02/19 13:20,"45 Highland St, Austin, TX 73301" +174078,Lightning Charging Cable,2,14.95,03/19/19 17:25,"521 River St, Dallas, TX 75001" +174079,Lightning Charging Cable,2,14.95,03/15/19 12:59,"655 Elm St, Dallas, TX 75001" +174080,AA Batteries (4-pack),2,3.84,03/22/19 11:13,"348 9th St, New York City, NY 10001" +174081,Wired Headphones,1,11.99,03/28/19 14:34,"720 Chestnut St, Seattle, WA 98101" +174082,Lightning Charging Cable,1,14.95,03/23/19 14:38,"771 4th St, San Francisco, CA 94016" +174083,Bose SoundSport Headphones,1,99.99,03/26/19 11:23,"443 Walnut St, Portland, OR 97035" +174084,Google Phone,1,600,03/16/19 12:41,"83 Maple St, Seattle, WA 98101" +174085,Wired Headphones,1,11.99,03/20/19 10:42,"912 Main St, Los Angeles, CA 90001" +174086,Apple Airpods Headphones,1,150,03/02/19 21:46,"539 Park St, Los Angeles, CA 90001" +174087,20in Monitor,1,109.99,03/05/19 17:58,"519 Cedar St, Dallas, TX 75001" +174088,USB-C Charging Cable,1,11.95,03/30/19 17:21,"921 7th St, Los Angeles, CA 90001" +174089,Lightning Charging Cable,1,14.95,03/08/19 03:31,"232 River St, Seattle, WA 98101" +174090,AA Batteries (4-pack),1,3.84,03/21/19 19:12,"712 5th St, Portland, OR 97035" +174091,Lightning Charging Cable,1,14.95,03/23/19 12:49,"795 13th St, Portland, OR 97035" +174092,USB-C Charging Cable,1,11.95,03/01/19 09:39,"827 Pine St, San Francisco, CA 94016" +174093,iPhone,1,700,03/25/19 20:37,"261 Lincoln St, Boston, MA 02215" +174094,Wired Headphones,1,11.99,03/06/19 01:24,"832 8th St, Boston, MA 02215" +174095,27in FHD Monitor,1,149.99,03/26/19 05:36,"678 11th St, Boston, MA 02215" +174096,Vareebadd Phone,1,400,03/29/19 20:56,"959 Park St, San Francisco, CA 94016" +174097,Google Phone,1,600,03/31/19 00:57,"526 Center St, Dallas, TX 75001" +174098,Lightning Charging Cable,1,14.95,03/04/19 13:36,"810 4th St, Seattle, WA 98101" +174099,Apple Airpods Headphones,1,150,03/01/19 17:31,"500 5th St, New York City, NY 10001" +174099,Flatscreen TV,1,300,03/01/19 17:31,"500 5th St, New York City, NY 10001" +174100,Bose SoundSport Headphones,1,99.99,03/13/19 08:35,"939 11th St, Portland, ME 04101" +174101,Wired Headphones,1,11.99,03/26/19 23:32,"199 10th St, Dallas, TX 75001" +174101,Lightning Charging Cable,1,14.95,03/26/19 23:32,"199 10th St, Dallas, TX 75001" +174102,34in Ultrawide Monitor,1,379.99,03/31/19 14:40,"574 Meadow St, New York City, NY 10001" +174103,Macbook Pro Laptop,1,1700,03/13/19 23:22,"568 Main St, Atlanta, GA 30301" +174104,AA Batteries (4-pack),1,3.84,03/05/19 13:28,"620 Center St, Los Angeles, CA 90001" +174104,Apple Airpods Headphones,1,150,03/05/19 13:28,"620 Center St, Los Angeles, CA 90001" +174105,Apple Airpods Headphones,1,150,03/17/19 20:27,"847 Highland St, Los Angeles, CA 90001" +174106,Flatscreen TV,1,300,03/18/19 22:16,"549 12th St, Boston, MA 02215" +174107,USB-C Charging Cable,1,11.95,03/10/19 12:25,"203 Spruce St, San Francisco, CA 94016" +174108,Wired Headphones,1,11.99,03/22/19 22:49,"625 4th St, Dallas, TX 75001" +174109,27in FHD Monitor,1,149.99,03/30/19 07:00,"342 Maple St, Boston, MA 02215" +174110,USB-C Charging Cable,1,11.95,04/01/19 01:09,"928 Maple St, Los Angeles, CA 90001" +174111,AA Batteries (4-pack),3,3.84,03/06/19 20:52,"952 Lake St, Portland, OR 97035" +174112,AA Batteries (4-pack),2,3.84,03/03/19 20:53,"656 13th St, Boston, MA 02215" +174113,Lightning Charging Cable,1,14.95,03/05/19 07:49,"463 9th St, Los Angeles, CA 90001" +174114,20in Monitor,1,109.99,03/20/19 11:58,"70 Adams St, Dallas, TX 75001" +174115,Wired Headphones,1,11.99,03/10/19 10:11,"828 Johnson St, Dallas, TX 75001" +174116,Bose SoundSport Headphones,1,99.99,03/04/19 21:23,"11 13th St, Austin, TX 73301" +174117,Bose SoundSport Headphones,1,99.99,03/20/19 15:46,"276 Dogwood St, Los Angeles, CA 90001" +174118,USB-C Charging Cable,1,11.95,03/25/19 10:30,"812 Lincoln St, Dallas, TX 75001" +174119,Apple Airpods Headphones,1,150,03/24/19 06:05,"402 9th St, New York City, NY 10001" +174120,Flatscreen TV,1,300,03/10/19 06:47,"418 Hill St, Los Angeles, CA 90001" +174121,27in FHD Monitor,1,149.99,03/09/19 21:27,"905 Maple St, Atlanta, GA 30301" +174122,AA Batteries (4-pack),5,3.84,03/06/19 20:39,"889 Lake St, Seattle, WA 98101" +174123,AA Batteries (4-pack),1,3.84,03/08/19 00:14,"257 Hickory St, San Francisco, CA 94016" +174124,AA Batteries (4-pack),1,3.84,03/11/19 16:45,"744 Maple St, Boston, MA 02215" +174125,AA Batteries (4-pack),2,3.84,03/24/19 23:14,"456 Madison St, Atlanta, GA 30301" +174126,LG Washing Machine,1,600.0,03/15/19 15:35,"463 Spruce St, San Francisco, CA 94016" +174127,Lightning Charging Cable,1,14.95,03/31/19 19:51,"19 Madison St, San Francisco, CA 94016" +174128,Apple Airpods Headphones,1,150,03/31/19 13:37,"866 Lake St, New York City, NY 10001" +174129,ThinkPad Laptop,1,999.99,03/23/19 18:06,"493 1st St, San Francisco, CA 94016" +174130,Apple Airpods Headphones,1,150,03/06/19 06:03,"732 7th St, Dallas, TX 75001" +174131,34in Ultrawide Monitor,1,379.99,03/27/19 08:32,"188 Highland St, New York City, NY 10001" +174132,AA Batteries (4-pack),1,3.84,03/31/19 11:23,"133 6th St, Portland, ME 04101" +174133,34in Ultrawide Monitor,1,379.99,03/02/19 09:44,"14 Highland St, Portland, ME 04101" +174134,AAA Batteries (4-pack),2,2.99,03/12/19 15:26,"101 Spruce St, Atlanta, GA 30301" +174135,27in FHD Monitor,1,149.99,03/11/19 21:04,"504 Ridge St, Atlanta, GA 30301" +174136,Bose SoundSport Headphones,1,99.99,03/12/19 17:51,"700 Sunset St, Dallas, TX 75001" +174137,AA Batteries (4-pack),1,3.84,03/13/19 19:41,"268 Lincoln St, Los Angeles, CA 90001" +174138,AA Batteries (4-pack),1,3.84,03/04/19 19:52,"10 Spruce St, Atlanta, GA 30301" +174139,Apple Airpods Headphones,1,150,03/08/19 13:21,"272 Jackson St, Austin, TX 73301" +174140,Bose SoundSport Headphones,1,99.99,03/15/19 22:36,"322 Main St, San Francisco, CA 94016" +174140,Bose SoundSport Headphones,1,99.99,03/15/19 22:36,"322 Main St, San Francisco, CA 94016" +174141,34in Ultrawide Monitor,1,379.99,03/01/19 18:06,"819 9th St, San Francisco, CA 94016" +174142,iPhone,1,700,03/11/19 10:40,"479 Main St, San Francisco, CA 94016" +174143,Lightning Charging Cable,1,14.95,03/05/19 19:01,"755 River St, San Francisco, CA 94016" +174144,iPhone,1,700,03/31/19 11:54,"535 2nd St, San Francisco, CA 94016" +174145,AAA Batteries (4-pack),2,2.99,03/06/19 16:18,"422 Wilson St, San Francisco, CA 94016" +174146,Lightning Charging Cable,1,14.95,03/04/19 22:41,"39 Meadow St, Dallas, TX 75001" +174147,Google Phone,1,600,03/25/19 20:30,"159 10th St, Portland, OR 97035" +174148,USB-C Charging Cable,1,11.95,03/10/19 14:36,"465 Maple St, New York City, NY 10001" +174149,Lightning Charging Cable,1,14.95,03/20/19 17:02,"349 Elm St, Dallas, TX 75001" +174150,Apple Airpods Headphones,1,150,03/02/19 23:28,"48 Washington St, Boston, MA 02215" +174151,Vareebadd Phone,1,400,03/04/19 00:45,"538 Spruce St, Los Angeles, CA 90001" +174151,USB-C Charging Cable,1,11.95,03/04/19 00:45,"538 Spruce St, Los Angeles, CA 90001" +174152,Google Phone,1,600,03/08/19 20:57,"455 Forest St, Dallas, TX 75001" +174153,AAA Batteries (4-pack),1,2.99,03/24/19 10:04,"372 Cherry St, Austin, TX 73301" +174154,Macbook Pro Laptop,1,1700,03/18/19 11:07,"262 Lakeview St, San Francisco, CA 94016" +174155,Wired Headphones,1,11.99,03/09/19 10:21,"580 Chestnut St, New York City, NY 10001" +174156,34in Ultrawide Monitor,1,379.99,03/06/19 15:50,"699 Hickory St, Los Angeles, CA 90001" +174157,Apple Airpods Headphones,1,150,03/27/19 01:11,"237 5th St, San Francisco, CA 94016" +174158,USB-C Charging Cable,1,11.95,03/22/19 20:18,"34 Hill St, Austin, TX 73301" +174159,AA Batteries (4-pack),1,3.84,03/11/19 07:49,"441 Main St, San Francisco, CA 94016" +174160,Wired Headphones,1,11.99,03/28/19 09:32,"942 Lake St, New York City, NY 10001" +174161,Lightning Charging Cable,1,14.95,03/08/19 20:13,"417 Meadow St, Los Angeles, CA 90001" +174162,Lightning Charging Cable,1,14.95,03/01/19 18:38,"698 7th St, New York City, NY 10001" +174163,AA Batteries (4-pack),2,3.84,03/25/19 16:22,"242 Madison St, San Francisco, CA 94016" +174164,20in Monitor,1,109.99,03/18/19 17:36,"61 Lincoln St, Dallas, TX 75001" +174165,Wired Headphones,1,11.99,03/24/19 12:45,"725 Washington St, Los Angeles, CA 90001" +174166,27in 4K Gaming Monitor,1,389.99,03/04/19 15:20,"373 1st St, San Francisco, CA 94016" +174167,USB-C Charging Cable,1,11.95,03/18/19 10:45,"233 North St, Seattle, WA 98101" +174168,Apple Airpods Headphones,1,150,03/27/19 17:15,"358 Park St, Los Angeles, CA 90001" +174169,Lightning Charging Cable,1,14.95,03/02/19 19:11,"730 13th St, San Francisco, CA 94016" +174170,ThinkPad Laptop,1,999.99,03/31/19 16:19,"401 Pine St, San Francisco, CA 94016" +174171,USB-C Charging Cable,1,11.95,03/23/19 12:13,"829 West St, Seattle, WA 98101" +174172,Apple Airpods Headphones,1,150,03/20/19 03:11,"94 Elm St, Seattle, WA 98101" +174173,AA Batteries (4-pack),1,3.84,03/29/19 21:42,"491 13th St, Portland, ME 04101" +174174,Apple Airpods Headphones,1,150,03/20/19 17:05,"493 Spruce St, San Francisco, CA 94016" +174175,ThinkPad Laptop,1,999.99,03/30/19 18:15,"66 Elm St, Boston, MA 02215" +174176,Lightning Charging Cable,1,14.95,03/05/19 00:48,"654 Lakeview St, Austin, TX 73301" +174177,Flatscreen TV,1,300,03/31/19 07:53,"708 2nd St, Atlanta, GA 30301" +174178,Lightning Charging Cable,1,14.95,03/10/19 10:57,"216 7th St, Atlanta, GA 30301" +174179,Lightning Charging Cable,1,14.95,03/13/19 22:53,"864 South St, Portland, ME 04101" +174180,Flatscreen TV,1,300,03/29/19 15:14,"504 Ridge St, New York City, NY 10001" +174181,Wired Headphones,1,11.99,03/07/19 12:51,"893 4th St, Los Angeles, CA 90001" +174182,Apple Airpods Headphones,1,150,03/26/19 19:11,"773 Pine St, New York City, NY 10001" +174183,Lightning Charging Cable,1,14.95,03/28/19 23:17,"112 Elm St, Dallas, TX 75001" +174184,Lightning Charging Cable,1,14.95,03/04/19 14:39,"234 Lake St, New York City, NY 10001" +174185,27in FHD Monitor,1,149.99,03/10/19 08:24,"662 Sunset St, Boston, MA 02215" +174186,Wired Headphones,1,11.99,03/08/19 16:41,"569 Washington St, Dallas, TX 75001" +174187,AAA Batteries (4-pack),1,2.99,03/18/19 08:08,"487 Madison St, San Francisco, CA 94016" +174188,AA Batteries (4-pack),2,3.84,03/05/19 17:36,"845 11th St, Atlanta, GA 30301" +174189,ThinkPad Laptop,1,999.99,03/19/19 20:57,"614 Cedar St, San Francisco, CA 94016" +174190,Wired Headphones,1,11.99,03/08/19 09:45,"782 8th St, Boston, MA 02215" +174191,USB-C Charging Cable,1,11.95,03/25/19 11:17,"789 Hill St, New York City, NY 10001" +174192,AA Batteries (4-pack),3,3.84,03/04/19 09:58,"820 13th St, Dallas, TX 75001" +174193,iPhone,1,700,03/21/19 13:58,"674 10th St, Seattle, WA 98101" +174193,Lightning Charging Cable,1,14.95,03/21/19 13:58,"674 10th St, Seattle, WA 98101" +174194,AA Batteries (4-pack),1,3.84,03/20/19 20:30,"254 West St, San Francisco, CA 94016" +174195,Bose SoundSport Headphones,1,99.99,03/25/19 11:02,"912 Ridge St, San Francisco, CA 94016" +174196,Wired Headphones,1,11.99,03/21/19 09:37,"702 Sunset St, Austin, TX 73301" +174197,iPhone,1,700,03/13/19 22:28,"411 Elm St, San Francisco, CA 94016" +174198,AA Batteries (4-pack),1,3.84,03/25/19 16:52,"46 Maple St, Dallas, TX 75001" +174199,Lightning Charging Cable,1,14.95,03/31/19 10:46,"603 Hill St, Dallas, TX 75001" +174200,Wired Headphones,1,11.99,03/07/19 00:52,"991 7th St, Atlanta, GA 30301" +174201,AAA Batteries (4-pack),3,2.99,03/27/19 21:17,"301 Lincoln St, San Francisco, CA 94016" +174202,Wired Headphones,1,11.99,03/17/19 12:36,"459 Pine St, San Francisco, CA 94016" +174203,AAA Batteries (4-pack),2,2.99,03/17/19 17:58,"412 14th St, Seattle, WA 98101" +174204,AAA Batteries (4-pack),1,2.99,03/20/19 20:25,"157 Highland St, San Francisco, CA 94016" +174205,Lightning Charging Cable,1,14.95,03/17/19 17:10,"345 Park St, San Francisco, CA 94016" +174206,Macbook Pro Laptop,1,1700,03/22/19 12:37,"103 South St, Los Angeles, CA 90001" +174207,Apple Airpods Headphones,1,150,03/20/19 18:45,"749 Forest St, Los Angeles, CA 90001" +174208,iPhone,1,700,03/05/19 21:23,"248 Madison St, Los Angeles, CA 90001" +174208,Lightning Charging Cable,1,14.95,03/05/19 21:23,"248 Madison St, Los Angeles, CA 90001" +174209,27in FHD Monitor,1,149.99,03/19/19 23:12,"798 Adams St, Austin, TX 73301" +174210,Apple Airpods Headphones,1,150,03/17/19 11:41,"977 9th St, Los Angeles, CA 90001" +174211,Apple Airpods Headphones,1,150,03/04/19 19:17,"660 11th St, Boston, MA 02215" +174212,USB-C Charging Cable,1,11.95,03/16/19 10:22,"875 Wilson St, San Francisco, CA 94016" +174213,20in Monitor,1,109.99,03/02/19 17:36,"644 7th St, New York City, NY 10001" +174214,USB-C Charging Cable,1,11.95,03/18/19 10:22,"474 South St, San Francisco, CA 94016" +174215,Google Phone,1,600,03/19/19 13:40,"851 Main St, Los Angeles, CA 90001" +174216,27in 4K Gaming Monitor,1,389.99,03/03/19 03:34,"292 7th St, Boston, MA 02215" +174217,AAA Batteries (4-pack),1,2.99,03/05/19 06:18,"35 Jackson St, San Francisco, CA 94016" +174218,AA Batteries (4-pack),1,3.84,03/03/19 23:51,"532 Madison St, Boston, MA 02215" +174219,Bose SoundSport Headphones,1,99.99,03/15/19 15:34,"204 Pine St, Seattle, WA 98101" +174220,Lightning Charging Cable,2,14.95,03/03/19 19:14,"646 North St, Boston, MA 02215" +174221,ThinkPad Laptop,1,999.99,03/20/19 20:40,"182 Adams St, Boston, MA 02215" +174222,Apple Airpods Headphones,1,150,03/30/19 12:08,"430 5th St, San Francisco, CA 94016" +174223,20in Monitor,1,109.99,03/22/19 12:22,"895 Lakeview St, San Francisco, CA 94016" +174224,AAA Batteries (4-pack),1,2.99,03/05/19 20:30,"8 Meadow St, Seattle, WA 98101" +174225,27in FHD Monitor,1,149.99,03/01/19 20:45,"776 Jackson St, Atlanta, GA 30301" +174226,Flatscreen TV,1,300,03/26/19 20:03,"415 Pine St, New York City, NY 10001" +174227,Apple Airpods Headphones,1,150,03/09/19 22:33,"21 7th St, Dallas, TX 75001" +174228,Wired Headphones,1,11.99,03/01/19 11:06,"291 Jefferson St, Seattle, WA 98101" +174229,AAA Batteries (4-pack),1,2.99,03/11/19 20:31,"746 Pine St, Boston, MA 02215" +174230,iPhone,1,700,03/25/19 05:23,"185 Ridge St, Los Angeles, CA 90001" +174230,Wired Headphones,1,11.99,03/25/19 05:23,"185 Ridge St, Los Angeles, CA 90001" +174231,Wired Headphones,1,11.99,03/13/19 15:35,"760 2nd St, San Francisco, CA 94016" +174232,AAA Batteries (4-pack),2,2.99,03/27/19 15:02,"252 Forest St, Portland, OR 97035" +174233,27in 4K Gaming Monitor,1,389.99,03/16/19 11:34,"68 Church St, New York City, NY 10001" +174234,Lightning Charging Cable,1,14.95,03/03/19 15:17,"249 13th St, Portland, OR 97035" +174235,20in Monitor,1,109.99,03/12/19 00:11,"365 Jackson St, Los Angeles, CA 90001" +174236,USB-C Charging Cable,2,11.95,03/27/19 21:14,"518 Sunset St, Boston, MA 02215" +174237,Wired Headphones,1,11.99,03/25/19 14:32,"396 1st St, Dallas, TX 75001" +174238,20in Monitor,1,109.99,03/10/19 18:09,"53 6th St, San Francisco, CA 94016" +174239,AAA Batteries (4-pack),1,2.99,03/26/19 19:55,"811 Hickory St, Seattle, WA 98101" +174240,Flatscreen TV,1,300,03/19/19 09:38,"252 Willow St, Los Angeles, CA 90001" +174241,Lightning Charging Cable,1,14.95,03/03/19 10:03,"116 Washington St, San Francisco, CA 94016" +174242,Wired Headphones,1,11.99,03/20/19 17:53,"607 Washington St, Seattle, WA 98101" +174243,Wired Headphones,1,11.99,03/16/19 11:29,"747 6th St, Seattle, WA 98101" +174244,Wired Headphones,1,11.99,03/31/19 13:10,"169 Washington St, Seattle, WA 98101" +174245,AAA Batteries (4-pack),2,2.99,03/21/19 19:42,"442 Lake St, New York City, NY 10001" +174246,AA Batteries (4-pack),1,3.84,03/08/19 21:46,"588 4th St, Seattle, WA 98101" +174247,Bose SoundSport Headphones,1,99.99,03/01/19 13:08,"998 Jefferson St, Austin, TX 73301" +174248,Bose SoundSport Headphones,1,99.99,03/20/19 20:36,"143 14th St, Portland, ME 04101" +174249,Wired Headphones,1,11.99,03/20/19 18:29,"52 Elm St, Atlanta, GA 30301" +174250,Bose SoundSport Headphones,1,99.99,03/31/19 20:08,"117 Cedar St, New York City, NY 10001" +174251,Vareebadd Phone,1,400,03/06/19 14:44,"866 Dogwood St, Portland, OR 97035" +174252,Bose SoundSport Headphones,1,99.99,03/23/19 13:23,"367 Maple St, Los Angeles, CA 90001" +174253,Bose SoundSport Headphones,1,99.99,03/17/19 07:36,"175 Cherry St, Portland, OR 97035" +174254,USB-C Charging Cable,1,11.95,03/09/19 20:15,"211 9th St, Los Angeles, CA 90001" +174255,ThinkPad Laptop,1,999.99,03/04/19 23:18,"645 Ridge St, San Francisco, CA 94016" +174256,Bose SoundSport Headphones,1,99.99,03/03/19 09:59,"931 Cedar St, Los Angeles, CA 90001" +174257,AAA Batteries (4-pack),1,2.99,03/30/19 09:48,"707 Park St, New York City, NY 10001" +174258,iPhone,1,700,03/31/19 21:10,"337 Hill St, San Francisco, CA 94016" +174258,Wired Headphones,1,11.99,03/31/19 21:10,"337 Hill St, San Francisco, CA 94016" +174259,Lightning Charging Cable,1,14.95,03/08/19 18:29,"601 Pine St, New York City, NY 10001" +174260,27in FHD Monitor,1,149.99,03/01/19 19:48,"742 North St, Austin, TX 73301" +174261,20in Monitor,1,109.99,03/19/19 23:28,"81 12th St, New York City, NY 10001" +174262,AA Batteries (4-pack),1,3.84,03/24/19 00:43,"293 Jefferson St, New York City, NY 10001" +174263,Flatscreen TV,1,300,03/10/19 16:03,"895 9th St, New York City, NY 10001" +174264,ThinkPad Laptop,1,999.99,03/31/19 21:03,"755 Pine St, Seattle, WA 98101" +174265,AAA Batteries (4-pack),1,2.99,03/02/19 14:50,"275 2nd St, New York City, NY 10001" +174266,Wired Headphones,1,11.99,03/16/19 13:30,"822 9th St, New York City, NY 10001" +174267,27in FHD Monitor,1,149.99,03/14/19 12:35,"96 South St, Austin, TX 73301" +174268,USB-C Charging Cable,1,11.95,03/26/19 17:05,"631 South St, Los Angeles, CA 90001" +174269,Apple Airpods Headphones,1,150,03/07/19 20:24,"425 Wilson St, Los Angeles, CA 90001" +174270,27in FHD Monitor,1,149.99,03/15/19 14:57,"793 11th St, Portland, OR 97035" +,,,,, +174271,Lightning Charging Cable,1,14.95,03/05/19 16:11,"650 Lincoln St, San Francisco, CA 94016" +174272,Bose SoundSport Headphones,1,99.99,03/04/19 21:13,"394 Cedar St, Austin, TX 73301" +174272,USB-C Charging Cable,1,11.95,03/04/19 21:13,"394 Cedar St, Austin, TX 73301" +174273,34in Ultrawide Monitor,1,379.99,03/11/19 11:21,"584 12th St, Boston, MA 02215" +174274,AAA Batteries (4-pack),1,2.99,03/10/19 15:36,"792 Elm St, San Francisco, CA 94016" +174275,Lightning Charging Cable,2,14.95,03/05/19 19:16,"23 10th St, Los Angeles, CA 90001" +174276,34in Ultrawide Monitor,1,379.99,03/02/19 22:30,"813 Spruce St, Austin, TX 73301" +174277,Wired Headphones,1,11.99,03/09/19 11:40,"353 2nd St, New York City, NY 10001" +174278,Macbook Pro Laptop,1,1700,03/31/19 19:45,"17 Center St, New York City, NY 10001" +174279,Vareebadd Phone,1,400,03/12/19 12:53,"961 Park St, Austin, TX 73301" +174280,USB-C Charging Cable,1,11.95,03/27/19 18:33,"440 9th St, San Francisco, CA 94016" +174281,Lightning Charging Cable,1,14.95,03/10/19 13:47,"956 Hill St, San Francisco, CA 94016" +174282,Flatscreen TV,1,300,03/21/19 22:27,"643 Dogwood St, Boston, MA 02215" +174283,AA Batteries (4-pack),2,3.84,03/07/19 15:52,"178 Willow St, Boston, MA 02215" +174284,34in Ultrawide Monitor,1,379.99,03/06/19 18:56,"887 Spruce St, Atlanta, GA 30301" +174285,AA Batteries (4-pack),3,3.84,03/22/19 07:06,"309 Johnson St, Austin, TX 73301" +174285,USB-C Charging Cable,1,11.95,03/22/19 07:06,"309 Johnson St, Austin, TX 73301" +174286,Lightning Charging Cable,1,14.95,03/20/19 13:56,"473 7th St, New York City, NY 10001" +174287,Wired Headphones,1,11.99,03/20/19 20:50,"809 1st St, San Francisco, CA 94016" +174288,Flatscreen TV,1,300,03/27/19 18:16,"175 Chestnut St, Boston, MA 02215" +174289,Lightning Charging Cable,1,14.95,03/09/19 18:10,"691 Center St, San Francisco, CA 94016" +174290,AAA Batteries (4-pack),1,2.99,03/21/19 10:18,"934 Willow St, Los Angeles, CA 90001" +174291,AAA Batteries (4-pack),2,2.99,03/11/19 14:32,"373 Walnut St, New York City, NY 10001" +174292,Wired Headphones,1,11.99,03/08/19 22:06,"527 Forest St, New York City, NY 10001" +174293,27in FHD Monitor,1,149.99,03/16/19 10:31,"884 5th St, San Francisco, CA 94016" +174294,AAA Batteries (4-pack),1,2.99,03/31/19 19:34,"761 5th St, San Francisco, CA 94016" +174295,iPhone,1,700,03/04/19 20:57,"348 Dogwood St, Dallas, TX 75001" +174296,USB-C Charging Cable,1,11.95,03/03/19 12:13,"716 Cedar St, Los Angeles, CA 90001" +174297,USB-C Charging Cable,1,11.95,03/01/19 22:17,"802 Cherry St, Atlanta, GA 30301" +174298,AA Batteries (4-pack),1,3.84,03/01/19 20:09,"103 Church St, Dallas, TX 75001" +174299,Wired Headphones,1,11.99,03/24/19 19:48,"638 Cedar St, Boston, MA 02215" +174300,AAA Batteries (4-pack),1,2.99,03/01/19 10:13,"808 Spruce St, San Francisco, CA 94016" +174301,Bose SoundSport Headphones,1,99.99,03/30/19 19:20,"672 Madison St, Dallas, TX 75001" +174302,AAA Batteries (4-pack),1,2.99,03/13/19 20:24,"78 Cedar St, New York City, NY 10001" +174303,Wired Headphones,1,11.99,03/27/19 09:51,"992 Hill St, Seattle, WA 98101" +174304,Apple Airpods Headphones,1,150,03/05/19 13:04,"30 5th St, New York City, NY 10001" +174305,AA Batteries (4-pack),1,3.84,03/31/19 17:17,"701 Center St, Atlanta, GA 30301" +174306,Bose SoundSport Headphones,1,99.99,03/01/19 20:40,"310 Hill St, Atlanta, GA 30301" +174307,Apple Airpods Headphones,1,150,03/06/19 18:17,"223 Cherry St, San Francisco, CA 94016" +174308,Wired Headphones,1,11.99,03/18/19 09:48,"401 13th St, Portland, OR 97035" +174309,Wired Headphones,1,11.99,03/14/19 13:39,"347 Highland St, Los Angeles, CA 90001" +174310,Bose SoundSport Headphones,1,99.99,03/21/19 14:16,"147 Pine St, San Francisco, CA 94016" +174311,Lightning Charging Cable,1,14.95,03/22/19 17:26,"68 Maple St, Boston, MA 02215" +174312,USB-C Charging Cable,1,11.95,03/01/19 22:03,"299 4th St, San Francisco, CA 94016" +174313,AAA Batteries (4-pack),1,2.99,03/04/19 11:05,"713 Madison St, Austin, TX 73301" +174314,AAA Batteries (4-pack),1,2.99,03/20/19 13:56,"793 Jefferson St, Atlanta, GA 30301" +174315,Lightning Charging Cable,1,14.95,03/06/19 11:53,"666 Center St, New York City, NY 10001" +174316,USB-C Charging Cable,1,11.95,03/28/19 21:34,"256 8th St, Austin, TX 73301" +174317,AAA Batteries (4-pack),1,2.99,03/16/19 20:57,"498 Lake St, Boston, MA 02215" +174318,Lightning Charging Cable,1,14.95,03/10/19 12:39,"527 12th St, Atlanta, GA 30301" +174319,Apple Airpods Headphones,1,150,03/14/19 16:58,"753 2nd St, Seattle, WA 98101" +174320,AA Batteries (4-pack),1,3.84,03/12/19 20:52,"247 Hickory St, Atlanta, GA 30301" +174321,AAA Batteries (4-pack),1,2.99,03/22/19 21:35,"687 Church St, Boston, MA 02215" +174322,Apple Airpods Headphones,1,150,03/06/19 20:24,"899 12th St, Dallas, TX 75001" +174323,Wired Headphones,1,11.99,03/08/19 06:14,"359 Maple St, San Francisco, CA 94016" +174324,Google Phone,1,600,03/29/19 09:14,"30 Chestnut St, Atlanta, GA 30301" +174325,Bose SoundSport Headphones,1,99.99,03/14/19 23:51,"932 13th St, Dallas, TX 75001" +174326,Flatscreen TV,1,300,03/20/19 10:56,"462 Cherry St, New York City, NY 10001" +174327,27in FHD Monitor,2,149.99,03/01/19 11:15,"174 Wilson St, Austin, TX 73301" +174328,Apple Airpods Headphones,1,150,03/26/19 10:20,"813 South St, New York City, NY 10001" +174329,iPhone,1,700,03/09/19 19:16,"200 Madison St, San Francisco, CA 94016" +174330,Wired Headphones,1,11.99,03/15/19 14:40,"166 Forest St, San Francisco, CA 94016" +174331,Lightning Charging Cable,1,14.95,03/12/19 12:46,"307 Park St, Atlanta, GA 30301" +174332,Apple Airpods Headphones,1,150,03/04/19 00:56,"561 Lakeview St, New York City, NY 10001" +174333,Lightning Charging Cable,1,14.95,03/05/19 20:42,"853 Madison St, Seattle, WA 98101" +174334,27in 4K Gaming Monitor,1,389.99,03/12/19 15:40,"765 Lake St, San Francisco, CA 94016" +174335,Lightning Charging Cable,1,14.95,03/25/19 20:07,"887 Johnson St, San Francisco, CA 94016" +174336,USB-C Charging Cable,1,11.95,03/18/19 18:23,"839 Maple St, Los Angeles, CA 90001" +174337,USB-C Charging Cable,1,11.95,03/28/19 06:53,"958 Elm St, Dallas, TX 75001" +174338,USB-C Charging Cable,1,11.95,03/16/19 14:18,"790 Chestnut St, New York City, NY 10001" +174339,Wired Headphones,1,11.99,03/07/19 16:44,"353 14th St, San Francisco, CA 94016" +174340,ThinkPad Laptop,1,999.99,03/15/19 02:04,"585 9th St, Atlanta, GA 30301" +174341,AAA Batteries (4-pack),1,2.99,03/29/19 16:44,"696 Cherry St, San Francisco, CA 94016" +174342,AA Batteries (4-pack),1,3.84,03/12/19 13:05,"322 Chestnut St, New York City, NY 10001" +174343,Wired Headphones,1,11.99,03/05/19 21:11,"274 Center St, Portland, OR 97035" +174344,Macbook Pro Laptop,1,1700,03/29/19 17:44,"53 10th St, San Francisco, CA 94016" +174345,USB-C Charging Cable,1,11.95,03/21/19 10:02,"277 10th St, Atlanta, GA 30301" +174346,AA Batteries (4-pack),1,3.84,03/16/19 15:06,"878 Willow St, Boston, MA 02215" +174347,Bose SoundSport Headphones,1,99.99,03/11/19 10:35,"399 Sunset St, New York City, NY 10001" +174348,AAA Batteries (4-pack),2,2.99,03/25/19 20:16,"899 Meadow St, San Francisco, CA 94016" +174349,USB-C Charging Cable,1,11.95,03/27/19 14:12,"825 Elm St, Los Angeles, CA 90001" +174350,27in 4K Gaming Monitor,1,389.99,03/12/19 13:03,"364 10th St, New York City, NY 10001" +174351,Apple Airpods Headphones,1,150,03/22/19 12:38,"183 Elm St, San Francisco, CA 94016" +174352,Wired Headphones,1,11.99,03/06/19 17:39,"318 1st St, Los Angeles, CA 90001" +174353,Flatscreen TV,1,300,03/04/19 15:44,"888 9th St, San Francisco, CA 94016" +174354,AA Batteries (4-pack),1,3.84,03/25/19 07:31,"758 1st St, Boston, MA 02215" +174355,AAA Batteries (4-pack),1,2.99,03/28/19 19:29,"530 North St, New York City, NY 10001" +174356,AAA Batteries (4-pack),2,2.99,03/19/19 09:39,"614 Hickory St, Los Angeles, CA 90001" +174357,USB-C Charging Cable,1,11.95,03/26/19 03:36,"792 Wilson St, Portland, OR 97035" +174358,Wired Headphones,1,11.99,03/19/19 22:31,"334 6th St, San Francisco, CA 94016" +174359,AA Batteries (4-pack),1,3.84,03/18/19 16:12,"107 9th St, Portland, OR 97035" +174360,iPhone,1,700,03/24/19 19:45,"219 Jackson St, Seattle, WA 98101" +174361,Lightning Charging Cable,1,14.95,03/19/19 09:43,"731 5th St, Los Angeles, CA 90001" +174362,Google Phone,1,600,03/05/19 18:47,"440 Lincoln St, Austin, TX 73301" +174363,Bose SoundSport Headphones,1,99.99,03/22/19 05:24,"302 Hickory St, Seattle, WA 98101" +174364,ThinkPad Laptop,1,999.99,03/05/19 12:50,"311 8th St, Boston, MA 02215" +174365,AA Batteries (4-pack),3,3.84,03/29/19 18:23,"375 Main St, Dallas, TX 75001" +174366,34in Ultrawide Monitor,1,379.99,03/30/19 23:01,"893 North St, Boston, MA 02215" +174367,Wired Headphones,1,11.99,03/04/19 19:11,"87 Cedar St, Austin, TX 73301" +174368,USB-C Charging Cable,1,11.95,03/28/19 18:07,"90 14th St, Dallas, TX 75001" +174369,Wired Headphones,1,11.99,03/18/19 14:17,"823 South St, Los Angeles, CA 90001" +174370,Apple Airpods Headphones,1,150,03/30/19 09:37,"469 6th St, Los Angeles, CA 90001" +174371,Bose SoundSport Headphones,1,99.99,03/07/19 11:49,"388 Center St, San Francisco, CA 94016" +174372,AAA Batteries (4-pack),1,2.99,03/24/19 19:43,"468 Adams St, Portland, OR 97035" +174373,Lightning Charging Cable,1,14.95,03/15/19 15:25,"955 2nd St, New York City, NY 10001" +174374,27in 4K Gaming Monitor,1,389.99,03/07/19 13:36,"288 Washington St, San Francisco, CA 94016" +174375,Apple Airpods Headphones,1,150,03/21/19 14:30,"240 Walnut St, Los Angeles, CA 90001" +174376,27in 4K Gaming Monitor,1,389.99,03/22/19 08:26,"794 5th St, Seattle, WA 98101" +174377,Lightning Charging Cable,1,14.95,03/10/19 08:35,"741 Church St, San Francisco, CA 94016" +174378,AAA Batteries (4-pack),1,2.99,03/12/19 21:16,"979 Sunset St, San Francisco, CA 94016" +174379,34in Ultrawide Monitor,1,379.99,03/12/19 18:45,"286 4th St, Portland, OR 97035" +174380,Lightning Charging Cable,2,14.95,03/26/19 09:02,"409 Jefferson St, Boston, MA 02215" +174381,Wired Headphones,1,11.99,03/21/19 18:04,"794 Church St, Boston, MA 02215" +174382,Vareebadd Phone,1,400,03/08/19 19:24,"406 11th St, Portland, OR 97035" +174382,USB-C Charging Cable,1,11.95,03/08/19 19:24,"406 11th St, Portland, OR 97035" +174383,Lightning Charging Cable,1,14.95,03/04/19 13:19,"190 Adams St, Boston, MA 02215" +174384,AAA Batteries (4-pack),1,2.99,03/12/19 15:50,"285 Meadow St, Seattle, WA 98101" +174385,20in Monitor,1,109.99,03/08/19 21:16,"732 10th St, San Francisco, CA 94016" +174386,Lightning Charging Cable,1,14.95,03/26/19 16:02,"645 Jackson St, Portland, OR 97035" +174387,Lightning Charging Cable,1,14.95,03/06/19 16:32,"497 6th St, San Francisco, CA 94016" +174388,34in Ultrawide Monitor,1,379.99,03/16/19 19:36,"23 South St, San Francisco, CA 94016" +174389,ThinkPad Laptop,1,999.99,03/11/19 22:04,"626 Willow St, San Francisco, CA 94016" +174390,AAA Batteries (4-pack),1,2.99,03/27/19 10:09,"944 West St, New York City, NY 10001" +174391,Apple Airpods Headphones,1,150,03/04/19 08:55,"82 8th St, Los Angeles, CA 90001" +174392,Wired Headphones,1,11.99,03/03/19 13:05,"711 West St, Atlanta, GA 30301" +174393,20in Monitor,1,109.99,03/05/19 14:52,"975 Dogwood St, Los Angeles, CA 90001" +174394,AAA Batteries (4-pack),1,2.99,03/09/19 17:16,"336 Meadow St, Boston, MA 02215" +174395,Lightning Charging Cable,1,14.95,03/28/19 18:07,"416 Spruce St, Atlanta, GA 30301" +174396,AA Batteries (4-pack),1,3.84,03/05/19 03:12,"135 1st St, Los Angeles, CA 90001" +174397,AAA Batteries (4-pack),6,2.99,03/04/19 04:50,"777 Washington St, San Francisco, CA 94016" +174398,Lightning Charging Cable,1,14.95,03/27/19 19:46,"621 Willow St, Los Angeles, CA 90001" +174399,34in Ultrawide Monitor,1,379.99,03/24/19 14:23,"646 Church St, Boston, MA 02215" +174400,34in Ultrawide Monitor,1,379.99,03/12/19 10:40,"907 Walnut St, San Francisco, CA 94016" +174401,Apple Airpods Headphones,1,150,03/21/19 11:14,"315 Center St, San Francisco, CA 94016" +174402,AAA Batteries (4-pack),2,2.99,03/06/19 21:23,"271 Washington St, Portland, ME 04101" +174403,27in 4K Gaming Monitor,1,389.99,03/20/19 09:41,"935 11th St, New York City, NY 10001" +174404,Wired Headphones,1,11.99,03/01/19 12:36,"755 10th St, Boston, MA 02215" +174405,AAA Batteries (4-pack),1,2.99,03/22/19 20:21,"282 Wilson St, Austin, TX 73301" +174406,AAA Batteries (4-pack),2,2.99,03/10/19 17:38,"22 Church St, New York City, NY 10001" +174407,Lightning Charging Cable,1,14.95,03/04/19 21:51,"594 Lincoln St, Boston, MA 02215" +174408,USB-C Charging Cable,2,11.95,03/23/19 08:59,"78 Dogwood St, San Francisco, CA 94016" +174409,34in Ultrawide Monitor,1,379.99,03/23/19 10:04,"604 11th St, Dallas, TX 75001" +174410,Google Phone,1,600,03/25/19 12:38,"611 Walnut St, Los Angeles, CA 90001" +174411,27in FHD Monitor,1,149.99,03/05/19 13:04,"173 Cedar St, Seattle, WA 98101" +174412,Lightning Charging Cable,2,14.95,03/02/19 16:08,"881 South St, New York City, NY 10001" +174413,Bose SoundSport Headphones,1,99.99,03/04/19 08:52,"96 8th St, San Francisco, CA 94016" +174414,iPhone,1,700,03/31/19 21:26,"924 Maple St, Austin, TX 73301" +174415,AAA Batteries (4-pack),1,2.99,03/01/19 13:21,"150 Adams St, Portland, OR 97035" +174416,Wired Headphones,1,11.99,03/15/19 10:53,"892 12th St, Austin, TX 73301" +174417,AAA Batteries (4-pack),2,2.99,03/03/19 14:11,"797 Hill St, Los Angeles, CA 90001" +174418,Lightning Charging Cable,1,14.95,03/12/19 17:13,"332 7th St, San Francisco, CA 94016" +174419,AAA Batteries (4-pack),1,2.99,03/27/19 17:05,"238 Johnson St, New York City, NY 10001" +174420,Apple Airpods Headphones,1,150,03/03/19 07:40,"212 River St, Seattle, WA 98101" +174421,27in FHD Monitor,1,149.99,03/26/19 08:31,"875 1st St, Boston, MA 02215" +174422,Lightning Charging Cable,1,14.95,03/25/19 18:13,"873 Pine St, Atlanta, GA 30301" +174423,USB-C Charging Cable,1,11.95,03/21/19 22:56,"694 Adams St, New York City, NY 10001" +174424,AA Batteries (4-pack),1,3.84,03/28/19 16:33,"725 Lakeview St, San Francisco, CA 94016" +174425,AAA Batteries (4-pack),1,2.99,03/27/19 16:19,"917 Sunset St, San Francisco, CA 94016" +174426,AAA Batteries (4-pack),2,2.99,03/06/19 22:27,"871 Willow St, Dallas, TX 75001" +174427,Wired Headphones,1,11.99,03/16/19 10:29,"949 7th St, New York City, NY 10001" +174428,AAA Batteries (4-pack),1,2.99,03/17/19 16:07,"488 Johnson St, Boston, MA 02215" +174429,AAA Batteries (4-pack),1,2.99,03/27/19 09:33,"248 Walnut St, New York City, NY 10001" +174430,AA Batteries (4-pack),1,3.84,03/16/19 10:55,"458 Johnson St, San Francisco, CA 94016" +174431,Lightning Charging Cable,1,14.95,03/21/19 21:42,"24 Elm St, Atlanta, GA 30301" +174432,Flatscreen TV,1,300,03/04/19 21:44,"731 14th St, Boston, MA 02215" +174433,Wired Headphones,1,11.99,03/10/19 16:40,"348 Forest St, San Francisco, CA 94016" +174434,AAA Batteries (4-pack),1,2.99,03/30/19 20:42,"293 Cherry St, San Francisco, CA 94016" +174435,Wired Headphones,1,11.99,03/11/19 18:04,"188 South St, Los Angeles, CA 90001" +174436,Macbook Pro Laptop,1,1700,03/28/19 22:54,"751 14th St, New York City, NY 10001" +174437,Bose SoundSport Headphones,1,99.99,03/27/19 13:08,"734 Forest St, Los Angeles, CA 90001" +174438,Apple Airpods Headphones,1,150,03/16/19 11:57,"637 Lincoln St, Los Angeles, CA 90001" +174438,Wired Headphones,1,11.99,03/16/19 11:57,"637 Lincoln St, Los Angeles, CA 90001" +174439,Bose SoundSport Headphones,1,99.99,03/28/19 19:20,"927 Cedar St, Seattle, WA 98101" +174440,Lightning Charging Cable,1,14.95,03/30/19 12:46,"94 Cherry St, Seattle, WA 98101" +174441,Lightning Charging Cable,1,14.95,03/28/19 21:12,"930 Wilson St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +174442,AAA Batteries (4-pack),1,2.99,03/23/19 09:19,"390 Wilson St, San Francisco, CA 94016" +174443,Lightning Charging Cable,1,14.95,03/14/19 08:30,"620 14th St, Portland, OR 97035" +174444,USB-C Charging Cable,1,11.95,03/04/19 12:41,"981 Sunset St, Dallas, TX 75001" +174445,USB-C Charging Cable,1,11.95,03/11/19 16:38,"767 Elm St, Los Angeles, CA 90001" +174446,Wired Headphones,1,11.99,03/16/19 13:41,"955 Church St, New York City, NY 10001" +174447,AA Batteries (4-pack),2,3.84,03/09/19 14:53,"502 7th St, Seattle, WA 98101" +174448,Apple Airpods Headphones,1,150,03/27/19 21:15,"251 8th St, Seattle, WA 98101" +174449,Apple Airpods Headphones,1,150,03/08/19 17:00,"929 Center St, Los Angeles, CA 90001" +174450,Bose SoundSport Headphones,1,99.99,03/23/19 09:53,"738 10th St, New York City, NY 10001" +174451,Apple Airpods Headphones,1,150,03/13/19 20:51,"161 Lake St, San Francisco, CA 94016" +174452,USB-C Charging Cable,2,11.95,03/31/19 17:07,"710 Adams St, San Francisco, CA 94016" +174453,27in 4K Gaming Monitor,1,389.99,03/25/19 18:11,"437 Adams St, New York City, NY 10001" +174454,20in Monitor,1,109.99,03/31/19 21:51,"686 Willow St, Atlanta, GA 30301" +174455,Wired Headphones,1,11.99,03/25/19 12:13,"447 Church St, New York City, NY 10001" +174456,AAA Batteries (4-pack),2,2.99,03/17/19 12:41,"774 12th St, Atlanta, GA 30301" +174457,34in Ultrawide Monitor,1,379.99,03/07/19 20:49,"431 Center St, Dallas, TX 75001" +174458,27in 4K Gaming Monitor,1,389.99,03/26/19 03:19,"436 South St, Seattle, WA 98101" +174459,Bose SoundSport Headphones,1,99.99,03/12/19 12:24,"246 12th St, Los Angeles, CA 90001" +174460,Apple Airpods Headphones,1,150,03/01/19 11:14,"732 Forest St, Seattle, WA 98101" +174461,27in 4K Gaming Monitor,1,389.99,03/03/19 20:39,"803 Willow St, San Francisco, CA 94016" +174462,Wired Headphones,1,11.99,03/16/19 14:58,"184 2nd St, Los Angeles, CA 90001" +174463,Lightning Charging Cable,1,14.95,03/25/19 19:44,"828 Washington St, New York City, NY 10001" +174464,Macbook Pro Laptop,1,1700,03/27/19 12:22,"730 Sunset St, Austin, TX 73301" +174465,AAA Batteries (4-pack),2,2.99,03/23/19 16:18,"418 9th St, Portland, OR 97035" +174466,USB-C Charging Cable,1,11.95,03/12/19 21:18,"170 Highland St, San Francisco, CA 94016" +174467,Apple Airpods Headphones,1,150,03/15/19 20:43,"847 Meadow St, Seattle, WA 98101" +174468,Vareebadd Phone,1,400,03/15/19 15:58,"225 Johnson St, San Francisco, CA 94016" +174469,Apple Airpods Headphones,1,150,03/28/19 21:07,"380 14th St, New York City, NY 10001" +174470,AAA Batteries (4-pack),2,2.99,03/29/19 18:38,"14 Lincoln St, San Francisco, CA 94016" +174471,27in FHD Monitor,1,149.99,03/31/19 18:06,"622 Jackson St, Atlanta, GA 30301" +174472,AA Batteries (4-pack),1,3.84,03/16/19 08:36,"97 9th St, San Francisco, CA 94016" +174473,Bose SoundSport Headphones,1,99.99,03/03/19 00:25,"877 River St, San Francisco, CA 94016" +174474,Flatscreen TV,2,300,03/09/19 09:53,"522 Lakeview St, Seattle, WA 98101" +174475,20in Monitor,1,109.99,03/09/19 11:29,"296 Johnson St, Austin, TX 73301" +,,,,, +174476,AAA Batteries (4-pack),3,2.99,03/15/19 21:17,"133 2nd St, San Francisco, CA 94016" +174477,USB-C Charging Cable,1,11.95,03/31/19 16:23,"115 South St, Dallas, TX 75001" +174478,USB-C Charging Cable,1,11.95,03/20/19 08:36,"844 Sunset St, San Francisco, CA 94016" +174479,Vareebadd Phone,1,400,03/11/19 07:30,"926 14th St, Atlanta, GA 30301" +174479,USB-C Charging Cable,1,11.95,03/11/19 07:30,"926 14th St, Atlanta, GA 30301" +174480,Wired Headphones,1,11.99,03/06/19 18:46,"581 Madison St, Dallas, TX 75001" +174481,Flatscreen TV,1,300,03/13/19 14:19,"930 Cedar St, Los Angeles, CA 90001" +174482,USB-C Charging Cable,1,11.95,03/20/19 19:56,"708 West St, San Francisco, CA 94016" +174483,Bose SoundSport Headphones,1,99.99,03/24/19 09:19,"489 Lake St, San Francisco, CA 94016" +174484,Flatscreen TV,1,300,03/22/19 01:33,"149 Highland St, San Francisco, CA 94016" +174485,Wired Headphones,1,11.99,03/23/19 13:01,"615 14th St, Los Angeles, CA 90001" +174486,Wired Headphones,2,11.99,03/02/19 19:09,"953 West St, Dallas, TX 75001" +174487,USB-C Charging Cable,1,11.95,03/03/19 19:58,"274 Dogwood St, San Francisco, CA 94016" +174488,Wired Headphones,2,11.99,03/15/19 06:12,"299 Main St, Seattle, WA 98101" +174489,Apple Airpods Headphones,1,150,03/02/19 14:36,"490 Highland St, San Francisco, CA 94016" +174490,34in Ultrawide Monitor,1,379.99,03/23/19 19:23,"197 Cedar St, Seattle, WA 98101" +174491,AA Batteries (4-pack),1,3.84,03/28/19 13:08,"801 13th St, New York City, NY 10001" +174492,Lightning Charging Cable,1,14.95,03/13/19 18:48,"908 River St, Atlanta, GA 30301" +174493,Flatscreen TV,1,300,03/09/19 20:35,"700 South St, San Francisco, CA 94016" +174494,Apple Airpods Headphones,1,150,03/24/19 13:12,"86 Church St, Atlanta, GA 30301" +174495,AA Batteries (4-pack),1,3.84,03/06/19 20:22,"885 Forest St, New York City, NY 10001" +174496,Apple Airpods Headphones,1,150,03/03/19 06:24,"746 11th St, San Francisco, CA 94016" +174497,Lightning Charging Cable,1,14.95,03/18/19 11:22,"783 Washington St, Atlanta, GA 30301" +174498,USB-C Charging Cable,1,11.95,03/19/19 14:35,"963 Washington St, San Francisco, CA 94016" +174499,27in 4K Gaming Monitor,1,389.99,03/30/19 09:55,"213 West St, Seattle, WA 98101" +174500,iPhone,1,700,03/26/19 20:08,"302 Ridge St, Portland, OR 97035" +174501,AAA Batteries (4-pack),1,2.99,03/01/19 08:52,"428 10th St, Los Angeles, CA 90001" +174502,Lightning Charging Cable,1,14.95,03/08/19 22:41,"16 13th St, San Francisco, CA 94016" +174503,Wired Headphones,1,11.99,03/20/19 09:17,"876 7th St, San Francisco, CA 94016" +174504,iPhone,1,700,03/13/19 14:59,"436 Adams St, Seattle, WA 98101" +174505,20in Monitor,1,109.99,03/02/19 17:07,"503 Main St, Los Angeles, CA 90001" +174506,Apple Airpods Headphones,1,150,03/21/19 10:27,"220 Willow St, Los Angeles, CA 90001" +174507,Lightning Charging Cable,1,14.95,03/24/19 11:16,"20 Dogwood St, Boston, MA 02215" +174508,Wired Headphones,1,11.99,03/26/19 22:29,"514 4th St, Los Angeles, CA 90001" +174509,34in Ultrawide Monitor,1,379.99,03/23/19 12:21,"491 River St, Los Angeles, CA 90001" +174510,Lightning Charging Cable,1,14.95,03/27/19 13:47,"81 Chestnut St, Boston, MA 02215" +174511,34in Ultrawide Monitor,1,379.99,03/29/19 16:02,"249 Church St, Portland, ME 04101" +174512,Wired Headphones,1,11.99,03/06/19 10:06,"174 2nd St, Portland, OR 97035" +174513,Apple Airpods Headphones,1,150,03/25/19 20:19,"136 Meadow St, Atlanta, GA 30301" +174514,Lightning Charging Cable,1,14.95,03/04/19 11:06,"99 Main St, San Francisco, CA 94016" +174515,AA Batteries (4-pack),1,3.84,03/03/19 22:15,"135 West St, New York City, NY 10001" +174516,AA Batteries (4-pack),1,3.84,03/04/19 13:10,"949 Center St, Los Angeles, CA 90001" +174517,Lightning Charging Cable,1,14.95,03/04/19 09:39,"257 Highland St, San Francisco, CA 94016" +174518,Apple Airpods Headphones,1,150,03/02/19 17:52,"534 Hill St, Portland, OR 97035" +174519,ThinkPad Laptop,1,999.99,03/15/19 07:58,"458 5th St, Atlanta, GA 30301" +174520,AAA Batteries (4-pack),1,2.99,03/20/19 12:32,"114 Sunset St, Dallas, TX 75001" +174521,Bose SoundSport Headphones,1,99.99,03/22/19 03:06,"918 Lakeview St, Seattle, WA 98101" +174522,Macbook Pro Laptop,1,1700,03/11/19 09:48,"262 Madison St, Dallas, TX 75001" +174523,AA Batteries (4-pack),1,3.84,03/15/19 16:43,"212 12th St, Austin, TX 73301" +174524,27in FHD Monitor,1,149.99,03/03/19 08:59,"238 Maple St, Boston, MA 02215" +174525,Lightning Charging Cable,1,14.95,03/15/19 23:20,"602 North St, Portland, OR 97035" +174526,AA Batteries (4-pack),1,3.84,03/19/19 14:43,"57 Madison St, San Francisco, CA 94016" +174527,AAA Batteries (4-pack),2,2.99,03/12/19 05:47,"813 Johnson St, Atlanta, GA 30301" +174528,Wired Headphones,2,11.99,03/24/19 15:17,"887 Elm St, Boston, MA 02215" +174529,Wired Headphones,1,11.99,03/12/19 07:57,"905 13th St, Los Angeles, CA 90001" +174530,Bose SoundSport Headphones,1,99.99,03/20/19 17:10,"706 6th St, New York City, NY 10001" +174531,27in 4K Gaming Monitor,1,389.99,03/21/19 19:04,"142 Meadow St, Dallas, TX 75001" +174532,USB-C Charging Cable,1,11.95,03/02/19 21:54,"320 5th St, Dallas, TX 75001" +174533,USB-C Charging Cable,1,11.95,03/31/19 13:57,"562 Chestnut St, Atlanta, GA 30301" +174534,USB-C Charging Cable,1,11.95,03/30/19 19:51,"631 Lake St, Portland, OR 97035" +174535,Macbook Pro Laptop,1,1700,03/20/19 13:24,"739 Johnson St, New York City, NY 10001" +174536,Bose SoundSport Headphones,1,99.99,03/21/19 21:37,"496 Hill St, Atlanta, GA 30301" +174537,Wired Headphones,1,11.99,03/16/19 14:13,"426 9th St, Los Angeles, CA 90001" +174538,Lightning Charging Cable,1,14.95,03/04/19 10:58,"960 10th St, Los Angeles, CA 90001" +174539,LG Dryer,1,600.0,03/20/19 16:17,"552 Center St, San Francisco, CA 94016" +174540,AA Batteries (4-pack),1,3.84,03/02/19 10:16,"521 Adams St, Portland, OR 97035" +174541,AA Batteries (4-pack),1,3.84,03/28/19 17:10,"187 Hill St, Los Angeles, CA 90001" +174542,AAA Batteries (4-pack),1,2.99,03/16/19 14:00,"760 11th St, Los Angeles, CA 90001" +174543,AAA Batteries (4-pack),1,2.99,03/01/19 20:54,"70 Cedar St, San Francisco, CA 94016" +174544,27in FHD Monitor,1,149.99,03/16/19 21:35,"683 River St, New York City, NY 10001" +174545,Bose SoundSport Headphones,1,99.99,03/10/19 10:48,"257 Willow St, Los Angeles, CA 90001" +174546,AAA Batteries (4-pack),1,2.99,03/15/19 21:03,"493 11th St, Austin, TX 73301" +174547,Google Phone,1,600,03/10/19 12:12,"889 Walnut St, Austin, TX 73301" +174548,AAA Batteries (4-pack),2,2.99,03/26/19 18:11,"368 Maple St, New York City, NY 10001" +174549,Lightning Charging Cable,1,14.95,03/14/19 22:20,"160 Dogwood St, Los Angeles, CA 90001" +174550,ThinkPad Laptop,1,999.99,03/05/19 12:38,"290 9th St, Austin, TX 73301" +174551,USB-C Charging Cable,1,11.95,03/30/19 21:19,"527 4th St, Los Angeles, CA 90001" +174552,AAA Batteries (4-pack),1,2.99,03/21/19 13:27,"804 14th St, San Francisco, CA 94016" +174553,USB-C Charging Cable,1,11.95,03/02/19 11:32,"681 Spruce St, San Francisco, CA 94016" +174554,20in Monitor,1,109.99,03/21/19 19:34,"127 Sunset St, San Francisco, CA 94016" +174555,Google Phone,1,600,03/25/19 07:36,"115 North St, New York City, NY 10001" +174556,Bose SoundSport Headphones,1,99.99,03/03/19 11:44,"969 Hickory St, Dallas, TX 75001" +174557,Lightning Charging Cable,1,14.95,03/06/19 08:42,"121 8th St, Dallas, TX 75001" +174558,AAA Batteries (4-pack),2,2.99,03/30/19 16:34,"855 Highland St, San Francisco, CA 94016" +174559,USB-C Charging Cable,1,11.95,03/17/19 15:49,"913 Madison St, San Francisco, CA 94016" +174560,USB-C Charging Cable,1,11.95,03/14/19 12:48,"435 10th St, Dallas, TX 75001" +174561,Lightning Charging Cable,1,14.95,03/15/19 13:48,"234 Elm St, Los Angeles, CA 90001" +174562,AA Batteries (4-pack),1,3.84,03/28/19 15:32,"524 10th St, San Francisco, CA 94016" +174563,AA Batteries (4-pack),1,3.84,03/27/19 14:46,"780 Jackson St, San Francisco, CA 94016" +174564,34in Ultrawide Monitor,1,379.99,03/06/19 06:52,"315 Pine St, San Francisco, CA 94016" +174565,AA Batteries (4-pack),2,3.84,03/12/19 12:48,"374 4th St, Seattle, WA 98101" +174566,AAA Batteries (4-pack),3,2.99,03/21/19 17:23,"634 Maple St, Seattle, WA 98101" +174567,Apple Airpods Headphones,1,150,03/02/19 00:07,"330 Church St, New York City, NY 10001" +174568,Lightning Charging Cable,1,14.95,03/22/19 13:37,"407 10th St, Dallas, TX 75001" +174569,AA Batteries (4-pack),2,3.84,03/27/19 14:48,"448 7th St, Los Angeles, CA 90001" +174570,Lightning Charging Cable,1,14.95,03/22/19 18:42,"987 Hickory St, Los Angeles, CA 90001" +174571,AA Batteries (4-pack),1,3.84,03/05/19 12:43,"865 Madison St, Los Angeles, CA 90001" +174572,iPhone,1,700,03/18/19 21:33,"601 2nd St, Los Angeles, CA 90001" +174572,Lightning Charging Cable,2,14.95,03/18/19 21:33,"601 2nd St, Los Angeles, CA 90001" +174572,Lightning Charging Cable,1,14.95,03/18/19 21:33,"601 2nd St, Los Angeles, CA 90001" +174573,34in Ultrawide Monitor,1,379.99,03/19/19 13:40,"688 South St, Dallas, TX 75001" +174574,Bose SoundSport Headphones,1,99.99,03/09/19 16:53,"695 Johnson St, Atlanta, GA 30301" +174575,Apple Airpods Headphones,1,150,03/17/19 12:42,"145 Walnut St, San Francisco, CA 94016" +174576,Wired Headphones,1,11.99,03/27/19 06:33,"241 Chestnut St, New York City, NY 10001" +174577,AAA Batteries (4-pack),1,2.99,03/21/19 23:28,"590 South St, Los Angeles, CA 90001" +174578,Wired Headphones,1,11.99,03/15/19 07:08,"775 10th St, San Francisco, CA 94016" +174579,34in Ultrawide Monitor,1,379.99,03/04/19 18:16,"943 Sunset St, Seattle, WA 98101" +174580,iPhone,1,700,03/20/19 08:51,"547 Dogwood St, Seattle, WA 98101" +174580,Lightning Charging Cable,1,14.95,03/20/19 08:51,"547 Dogwood St, Seattle, WA 98101" +174581,20in Monitor,1,109.99,03/02/19 19:18,"934 Willow St, Austin, TX 73301" +174582,27in FHD Monitor,1,149.99,03/29/19 14:22,"727 North St, New York City, NY 10001" +174583,Bose SoundSport Headphones,1,99.99,03/20/19 00:12,"425 North St, Dallas, TX 75001" +174584,USB-C Charging Cable,1,11.95,03/19/19 09:57,"548 Pine St, New York City, NY 10001" +174585,Apple Airpods Headphones,1,150,03/21/19 19:41,"703 8th St, New York City, NY 10001" +174586,Lightning Charging Cable,1,14.95,03/14/19 14:25,"625 South St, San Francisco, CA 94016" +174587,AAA Batteries (4-pack),1,2.99,03/27/19 20:14,"159 Adams St, San Francisco, CA 94016" +174588,34in Ultrawide Monitor,1,379.99,03/11/19 10:31,"689 Walnut St, San Francisco, CA 94016" +174589,Lightning Charging Cable,1,14.95,03/25/19 11:36,"189 Lincoln St, New York City, NY 10001" +174590,USB-C Charging Cable,1,11.95,03/20/19 19:50,"934 Spruce St, San Francisco, CA 94016" +174591,USB-C Charging Cable,2,11.95,03/06/19 15:54,"636 Elm St, Dallas, TX 75001" +174592,20in Monitor,1,109.99,03/03/19 21:32,"808 South St, Atlanta, GA 30301" +174593,AAA Batteries (4-pack),2,2.99,03/14/19 14:58,"75 Meadow St, Portland, OR 97035" +174594,Wired Headphones,1,11.99,03/25/19 22:26,"31 Johnson St, Austin, TX 73301" +174595,Bose SoundSport Headphones,1,99.99,03/12/19 22:55,"563 Madison St, San Francisco, CA 94016" +174596,Apple Airpods Headphones,1,150,03/05/19 00:50,"451 Chestnut St, Atlanta, GA 30301" +174597,Bose SoundSport Headphones,1,99.99,03/14/19 19:21,"790 Elm St, Boston, MA 02215" +174598,AAA Batteries (4-pack),1,2.99,03/19/19 14:19,"756 West St, New York City, NY 10001" +174599,Wired Headphones,2,11.99,03/31/19 21:37,"395 Church St, Atlanta, GA 30301" +174600,Lightning Charging Cable,1,14.95,03/08/19 21:55,"284 Johnson St, Boston, MA 02215" +174601,Wired Headphones,1,11.99,03/24/19 10:58,"480 1st St, Boston, MA 02215" +174602,AA Batteries (4-pack),1,3.84,03/02/19 17:07,"241 Center St, San Francisco, CA 94016" +174603,AAA Batteries (4-pack),1,2.99,03/29/19 20:32,"624 Jefferson St, Atlanta, GA 30301" +174604,AAA Batteries (4-pack),2,2.99,03/09/19 21:02,"46 Maple St, San Francisco, CA 94016" +174604,Wired Headphones,2,11.99,03/09/19 21:02,"46 Maple St, San Francisco, CA 94016" +174605,20in Monitor,1,109.99,03/02/19 19:02,"825 Cherry St, San Francisco, CA 94016" +174606,Lightning Charging Cable,1,14.95,03/21/19 19:22,"42 Walnut St, New York City, NY 10001" +174607,Vareebadd Phone,1,400,03/17/19 18:31,"497 Ridge St, Seattle, WA 98101" +174608,USB-C Charging Cable,1,11.95,03/26/19 18:49,"179 Elm St, Dallas, TX 75001" +174609,Lightning Charging Cable,1,14.95,03/15/19 10:20,"708 Washington St, Dallas, TX 75001" +174610,27in FHD Monitor,1,149.99,03/08/19 23:54,"172 Chestnut St, Los Angeles, CA 90001" +174611,27in FHD Monitor,1,149.99,03/25/19 23:56,"730 10th St, New York City, NY 10001" +174612,iPhone,1,700,03/06/19 18:54,"482 13th St, New York City, NY 10001" +174612,Apple Airpods Headphones,1,150,03/06/19 18:54,"482 13th St, New York City, NY 10001" +174613,USB-C Charging Cable,1,11.95,03/27/19 12:52,"989 Hill St, Atlanta, GA 30301" +174614,USB-C Charging Cable,1,11.95,03/28/19 11:35,"936 Park St, Portland, OR 97035" +174615,Bose SoundSport Headphones,1,99.99,03/12/19 18:10,"623 River St, San Francisco, CA 94016" +174616,iPhone,1,700,03/06/19 16:34,"906 Madison St, Atlanta, GA 30301" +174617,ThinkPad Laptop,1,999.99,03/10/19 10:55,"924 Johnson St, Portland, ME 04101" +174618,AA Batteries (4-pack),3,3.84,03/30/19 12:10,"978 Jackson St, Boston, MA 02215" +174619,ThinkPad Laptop,1,999.99,03/22/19 12:48,"6 13th St, Atlanta, GA 30301" +174620,Vareebadd Phone,1,400,03/26/19 14:57,"747 Center St, New York City, NY 10001" +174621,USB-C Charging Cable,1,11.95,03/02/19 12:15,"651 Ridge St, Los Angeles, CA 90001" +174622,AAA Batteries (4-pack),1,2.99,03/10/19 19:56,"567 13th St, Atlanta, GA 30301" +174623,AA Batteries (4-pack),1,3.84,03/04/19 14:24,"285 West St, San Francisco, CA 94016" +174624,USB-C Charging Cable,1,11.95,03/22/19 18:07,"632 North St, San Francisco, CA 94016" +174625,iPhone,1,700,03/24/19 05:19,"103 North St, New York City, NY 10001" +174626,iPhone,1,700,03/01/19 15:03,"646 Spruce St, Atlanta, GA 30301" +174626,Lightning Charging Cable,2,14.95,03/01/19 15:03,"646 Spruce St, Atlanta, GA 30301" +174627,AA Batteries (4-pack),1,3.84,03/05/19 13:38,"874 Park St, Seattle, WA 98101" +174628,AA Batteries (4-pack),1,3.84,03/20/19 14:08,"177 Jackson St, Austin, TX 73301" +174629,AA Batteries (4-pack),1,3.84,03/14/19 11:54,"300 Washington St, New York City, NY 10001" +174630,Lightning Charging Cable,1,14.95,03/17/19 16:14,"799 14th St, Los Angeles, CA 90001" +174631,Wired Headphones,1,11.99,03/04/19 10:20,"736 5th St, New York City, NY 10001" +174632,AAA Batteries (4-pack),1,2.99,03/18/19 15:27,"790 South St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +174633,USB-C Charging Cable,1,11.95,03/13/19 18:26,"838 Highland St, Boston, MA 02215" +174634,Apple Airpods Headphones,1,150,04/01/19 02:06,"549 Park St, San Francisco, CA 94016" +174635,Google Phone,1,600,03/15/19 09:18,"141 6th St, Boston, MA 02215" +174635,USB-C Charging Cable,1,11.95,03/15/19 09:18,"141 6th St, Boston, MA 02215" +174636,Apple Airpods Headphones,1,150,03/07/19 16:32,"76 7th St, San Francisco, CA 94016" +174637,Macbook Pro Laptop,1,1700,03/01/19 09:15,"617 Lake St, Seattle, WA 98101" +174638,Wired Headphones,1,11.99,03/07/19 18:40,"747 North St, New York City, NY 10001" +174639,USB-C Charging Cable,1,11.95,03/04/19 22:20,"742 Lake St, Atlanta, GA 30301" +174640,Lightning Charging Cable,2,14.95,03/25/19 19:21,"212 Ridge St, San Francisco, CA 94016" +174641,Apple Airpods Headphones,1,150,03/21/19 18:32,"975 River St, Boston, MA 02215" +174642,27in FHD Monitor,1,149.99,03/20/19 20:47,"333 River St, Dallas, TX 75001" +174643,27in 4K Gaming Monitor,1,389.99,03/14/19 23:58,"911 Park St, San Francisco, CA 94016" +174644,Lightning Charging Cable,1,14.95,03/27/19 20:23,"70 North St, Dallas, TX 75001" +174645,Lightning Charging Cable,1,14.95,03/18/19 10:12,"366 13th St, San Francisco, CA 94016" +174646,Bose SoundSport Headphones,1,99.99,03/21/19 13:06,"655 Main St, Dallas, TX 75001" +174647,Bose SoundSport Headphones,1,99.99,03/08/19 16:30,"587 12th St, Portland, OR 97035" +174648,Bose SoundSport Headphones,1,99.99,03/26/19 12:58,"332 7th St, New York City, NY 10001" +174649,AA Batteries (4-pack),2,3.84,03/30/19 16:50,"371 9th St, San Francisco, CA 94016" +174650,iPhone,1,700,03/12/19 13:19,"485 Madison St, San Francisco, CA 94016" +174651,AA Batteries (4-pack),1,3.84,03/29/19 15:53,"716 Adams St, Atlanta, GA 30301" +174652,Apple Airpods Headphones,1,150,03/28/19 11:13,"383 Adams St, Portland, OR 97035" +174653,AAA Batteries (4-pack),1,2.99,03/22/19 23:41,"452 4th St, San Francisco, CA 94016" +174654,iPhone,1,700,03/29/19 15:00,"417 1st St, Los Angeles, CA 90001" +174655,Bose SoundSport Headphones,1,99.99,03/12/19 08:40,"918 11th St, Los Angeles, CA 90001" +174656,Google Phone,1,600,03/04/19 23:11,"97 Wilson St, Boston, MA 02215" +174657,Macbook Pro Laptop,1,1700,03/28/19 08:48,"854 8th St, New York City, NY 10001" +174658,USB-C Charging Cable,1,11.95,03/30/19 20:41,"304 Center St, New York City, NY 10001" +174659,Flatscreen TV,1,300,03/12/19 16:32,"790 9th St, New York City, NY 10001" +174660,iPhone,1,700,03/24/19 13:26,"860 7th St, Austin, TX 73301" +174661,Macbook Pro Laptop,1,1700,03/05/19 19:17,"694 North St, New York City, NY 10001" +174662,Vareebadd Phone,1,400,03/05/19 12:05,"571 13th St, New York City, NY 10001" +174663,20in Monitor,1,109.99,03/05/19 12:26,"739 Dogwood St, San Francisco, CA 94016" +174664,Lightning Charging Cable,1,14.95,03/26/19 15:36,"267 Madison St, Atlanta, GA 30301" +174665,Google Phone,1,600,03/25/19 12:19,"22 Lincoln St, Seattle, WA 98101" +174665,USB-C Charging Cable,1,11.95,03/25/19 12:19,"22 Lincoln St, Seattle, WA 98101" +174665,Wired Headphones,1,11.99,03/25/19 12:19,"22 Lincoln St, Seattle, WA 98101" +174666,Macbook Pro Laptop,1,1700,03/06/19 08:54,"486 9th St, Portland, OR 97035" +174667,AA Batteries (4-pack),2,3.84,03/22/19 13:47,"114 Chestnut St, San Francisco, CA 94016" +174668,USB-C Charging Cable,1,11.95,03/18/19 11:39,"376 Willow St, Dallas, TX 75001" +174669,Lightning Charging Cable,1,14.95,03/28/19 10:31,"600 Elm St, Portland, OR 97035" +174670,Wired Headphones,1,11.99,03/11/19 13:55,"46 8th St, Portland, ME 04101" +174671,Apple Airpods Headphones,1,150,03/28/19 13:53,"946 Forest St, Seattle, WA 98101" +174672,Google Phone,1,600,03/26/19 14:58,"598 Church St, Boston, MA 02215" +174673,Wired Headphones,1,11.99,03/03/19 11:38,"666 Hill St, Portland, OR 97035" +174673,34in Ultrawide Monitor,1,379.99,03/03/19 11:38,"666 Hill St, Portland, OR 97035" +174674,Wired Headphones,1,11.99,03/03/19 19:37,"43 South St, Seattle, WA 98101" +174675,Lightning Charging Cable,1,14.95,03/21/19 22:08,"962 2nd St, Atlanta, GA 30301" +174676,USB-C Charging Cable,1,11.95,03/09/19 18:28,"649 River St, New York City, NY 10001" +174677,27in 4K Gaming Monitor,1,389.99,03/23/19 16:35,"183 Walnut St, Portland, OR 97035" +174678,27in FHD Monitor,1,149.99,03/26/19 12:54,"864 7th St, New York City, NY 10001" +174679,AAA Batteries (4-pack),2,2.99,03/14/19 19:29,"476 Dogwood St, San Francisco, CA 94016" +174680,USB-C Charging Cable,1,11.95,03/05/19 08:38,"682 Cherry St, Portland, ME 04101" +174681,Lightning Charging Cable,1,14.95,03/27/19 18:55,"676 Elm St, Seattle, WA 98101" +174682,Google Phone,1,600,03/22/19 12:46,"730 Washington St, San Francisco, CA 94016" +174683,Lightning Charging Cable,1,14.95,03/12/19 18:03,"697 10th St, Dallas, TX 75001" +174684,Lightning Charging Cable,1,14.95,03/07/19 20:27,"485 Madison St, Portland, OR 97035" +174685,AA Batteries (4-pack),1,3.84,03/10/19 21:01,"55 River St, Seattle, WA 98101" +174686,Bose SoundSport Headphones,1,99.99,03/06/19 19:29,"658 Center St, Seattle, WA 98101" +174687,27in 4K Gaming Monitor,1,389.99,03/02/19 11:37,"103 Forest St, Boston, MA 02215" +174688,Macbook Pro Laptop,1,1700,03/28/19 11:48,"251 Adams St, New York City, NY 10001" +174689,Google Phone,1,600,03/21/19 01:00,"82 Hickory St, Los Angeles, CA 90001" +174690,iPhone,1,700,03/26/19 18:08,"625 Lakeview St, Seattle, WA 98101" +174691,AAA Batteries (4-pack),2,2.99,03/28/19 23:11,"140 12th St, Dallas, TX 75001" +174692,Apple Airpods Headphones,1,150,03/06/19 19:32,"595 Chestnut St, San Francisco, CA 94016" +174693,Bose SoundSport Headphones,1,99.99,03/28/19 18:07,"844 Maple St, San Francisco, CA 94016" +174694,USB-C Charging Cable,1,11.95,03/18/19 16:54,"575 Adams St, Atlanta, GA 30301" +174695,USB-C Charging Cable,1,11.95,03/14/19 19:46,"74 Pine St, San Francisco, CA 94016" +174696,USB-C Charging Cable,1,11.95,03/20/19 16:06,"103 14th St, San Francisco, CA 94016" +174697,Lightning Charging Cable,1,14.95,03/14/19 08:29,"379 Highland St, San Francisco, CA 94016" +174698,AA Batteries (4-pack),1,3.84,03/20/19 19:20,"917 7th St, Dallas, TX 75001" +174699,ThinkPad Laptop,1,999.99,03/10/19 18:43,"86 West St, Seattle, WA 98101" +174700,Apple Airpods Headphones,1,150,03/14/19 21:11,"479 Highland St, New York City, NY 10001" +174701,USB-C Charging Cable,1,11.95,03/19/19 15:01,"773 Park St, Atlanta, GA 30301" +174702,AA Batteries (4-pack),1,3.84,03/13/19 23:40,"612 Spruce St, San Francisco, CA 94016" +174703,USB-C Charging Cable,1,11.95,03/21/19 11:20,"288 2nd St, San Francisco, CA 94016" +174704,Lightning Charging Cable,2,14.95,03/21/19 16:54,"324 Highland St, Los Angeles, CA 90001" +174705,AAA Batteries (4-pack),1,2.99,03/14/19 06:47,"331 Main St, Portland, OR 97035" +174706,AA Batteries (4-pack),1,3.84,03/18/19 22:56,"826 Johnson St, San Francisco, CA 94016" +174707,20in Monitor,2,109.99,03/05/19 17:54,"755 Cedar St, Los Angeles, CA 90001" +174708,Lightning Charging Cable,1,14.95,03/08/19 21:59,"800 Lincoln St, New York City, NY 10001" +174709,USB-C Charging Cable,1,11.95,03/03/19 09:48,"601 Center St, Portland, OR 97035" +174710,Wired Headphones,1,11.99,03/22/19 12:22,"237 Elm St, San Francisco, CA 94016" +174711,27in 4K Gaming Monitor,2,389.99,03/02/19 11:59,"881 West St, Austin, TX 73301" +174712,Apple Airpods Headphones,1,150,03/08/19 21:47,"947 Pine St, Seattle, WA 98101" +174713,Apple Airpods Headphones,1,150,03/06/19 17:51,"552 Spruce St, New York City, NY 10001" +174714,Apple Airpods Headphones,1,150,03/10/19 12:06,"952 9th St, Los Angeles, CA 90001" +174715,Bose SoundSport Headphones,1,99.99,03/29/19 00:55,"335 11th St, Boston, MA 02215" +174716,USB-C Charging Cable,1,11.95,03/06/19 14:49,"534 Forest St, Atlanta, GA 30301" +174717,Bose SoundSport Headphones,1,99.99,03/21/19 14:58,"395 Center St, Los Angeles, CA 90001" +174718,AA Batteries (4-pack),1,3.84,03/02/19 08:58,"321 10th St, Dallas, TX 75001" +174719,Flatscreen TV,1,300,03/07/19 21:30,"973 North St, San Francisco, CA 94016" +174720,Apple Airpods Headphones,1,150,03/20/19 08:42,"30 Church St, New York City, NY 10001" +174721,Wired Headphones,1,11.99,03/07/19 20:48,"813 Wilson St, Los Angeles, CA 90001" +174722,20in Monitor,1,109.99,03/01/19 14:02,"515 Center St, New York City, NY 10001" +174723,USB-C Charging Cable,1,11.95,03/03/19 13:42,"854 8th St, San Francisco, CA 94016" +174724,Lightning Charging Cable,1,14.95,03/31/19 13:58,"624 Wilson St, Atlanta, GA 30301" +174725,Wired Headphones,1,11.99,03/02/19 21:06,"835 Spruce St, Atlanta, GA 30301" +174726,Google Phone,1,600,03/17/19 18:22,"141 Cedar St, Los Angeles, CA 90001" +174727,34in Ultrawide Monitor,1,379.99,03/05/19 22:35,"491 Cherry St, Los Angeles, CA 90001" +174728,AAA Batteries (4-pack),1,2.99,03/26/19 22:59,"207 North St, San Francisco, CA 94016" +174729,Apple Airpods Headphones,1,150,03/03/19 19:11,"123 Jackson St, Los Angeles, CA 90001" +174730,USB-C Charging Cable,1,11.95,03/06/19 21:23,"915 Jefferson St, Seattle, WA 98101" +174731,AA Batteries (4-pack),1,3.84,03/01/19 12:48,"238 Adams St, San Francisco, CA 94016" +174732,AAA Batteries (4-pack),1,2.99,03/02/19 21:42,"478 Spruce St, Dallas, TX 75001" +174733,AA Batteries (4-pack),1,3.84,03/28/19 21:12,"942 6th St, Dallas, TX 75001" +174734,Google Phone,1,600,03/16/19 18:03,"705 9th St, New York City, NY 10001" +174735,USB-C Charging Cable,1,11.95,03/07/19 23:01,"811 11th St, San Francisco, CA 94016" +174736,Wired Headphones,1,11.99,03/21/19 15:53,"816 Madison St, New York City, NY 10001" +174737,USB-C Charging Cable,1,11.95,03/02/19 09:44,"366 5th St, San Francisco, CA 94016" +174738,Lightning Charging Cable,1,14.95,03/16/19 08:03,"594 4th St, Austin, TX 73301" +174739,AAA Batteries (4-pack),3,2.99,03/19/19 16:01,"336 Meadow St, San Francisco, CA 94016" +174740,AAA Batteries (4-pack),1,2.99,03/05/19 18:52,"932 8th St, San Francisco, CA 94016" +174741,27in 4K Gaming Monitor,1,389.99,03/29/19 19:33,"157 Forest St, Dallas, TX 75001" +174742,34in Ultrawide Monitor,1,379.99,03/10/19 12:24,"391 Main St, Dallas, TX 75001" +174743,Wired Headphones,1,11.99,03/30/19 12:15,"646 Dogwood St, Dallas, TX 75001" +174744,Flatscreen TV,1,300,03/01/19 08:41,"804 Jefferson St, Los Angeles, CA 90001" +174745,AAA Batteries (4-pack),1,2.99,03/23/19 13:08,"742 Hickory St, San Francisco, CA 94016" +174746,AA Batteries (4-pack),2,3.84,03/04/19 16:38,"49 Cedar St, San Francisco, CA 94016" +174747,Wired Headphones,1,11.99,03/16/19 12:13,"950 Park St, Boston, MA 02215" +174748,AA Batteries (4-pack),1,3.84,03/11/19 10:40,"442 14th St, San Francisco, CA 94016" +174749,Lightning Charging Cable,1,14.95,03/19/19 13:56,"854 Jackson St, Los Angeles, CA 90001" +174750,AA Batteries (4-pack),1,3.84,03/27/19 15:09,"211 Elm St, Portland, OR 97035" +174751,iPhone,1,700,03/09/19 16:55,"871 Dogwood St, New York City, NY 10001" +174751,Apple Airpods Headphones,1,150,03/09/19 16:55,"871 Dogwood St, New York City, NY 10001" +174752,USB-C Charging Cable,1,11.95,03/05/19 11:49,"887 13th St, Atlanta, GA 30301" +174753,Wired Headphones,2,11.99,03/03/19 18:16,"356 Center St, Atlanta, GA 30301" +174754,AAA Batteries (4-pack),1,2.99,03/15/19 23:24,"761 Ridge St, Seattle, WA 98101" +174755,USB-C Charging Cable,1,11.95,03/12/19 09:52,"891 Hill St, New York City, NY 10001" +174756,Wired Headphones,1,11.99,03/07/19 11:46,"981 Cherry St, Seattle, WA 98101" +174757,iPhone,1,700,03/18/19 00:57,"562 12th St, Los Angeles, CA 90001" +174758,Apple Airpods Headphones,1,150,03/11/19 07:54,"895 Lincoln St, San Francisco, CA 94016" +174759,ThinkPad Laptop,1,999.99,03/05/19 02:29,"149 Forest St, San Francisco, CA 94016" +174760,ThinkPad Laptop,1,999.99,03/19/19 11:04,"964 10th St, Boston, MA 02215" +174761,Lightning Charging Cable,1,14.95,03/09/19 18:31,"466 River St, Portland, OR 97035" +174762,USB-C Charging Cable,1,11.95,03/11/19 22:44,"616 6th St, Seattle, WA 98101" +174763,Wired Headphones,1,11.99,03/06/19 11:29,"517 12th St, Los Angeles, CA 90001" +174764,USB-C Charging Cable,1,11.95,03/18/19 07:58,"361 Wilson St, Dallas, TX 75001" +174765,Bose SoundSport Headphones,1,99.99,03/07/19 12:52,"54 9th St, Atlanta, GA 30301" +174766,iPhone,1,700,03/22/19 18:40,"8 Washington St, San Francisco, CA 94016" +174767,Apple Airpods Headphones,1,150,03/13/19 15:47,"945 Maple St, Boston, MA 02215" +174768,Lightning Charging Cable,1,14.95,03/05/19 01:05,"449 Adams St, Dallas, TX 75001" +174769,AA Batteries (4-pack),1,3.84,03/07/19 18:31,"47 River St, San Francisco, CA 94016" +174770,USB-C Charging Cable,1,11.95,03/11/19 13:41,"7 Jackson St, San Francisco, CA 94016" +174771,Google Phone,1,600,03/14/19 23:42,"115 South St, Dallas, TX 75001" +174772,AAA Batteries (4-pack),2,2.99,03/29/19 10:43,"955 2nd St, Seattle, WA 98101" +174773,USB-C Charging Cable,3,11.95,03/14/19 19:26,"174 4th St, Los Angeles, CA 90001" +174774,LG Washing Machine,1,600.0,03/30/19 21:46,"565 Church St, San Francisco, CA 94016" +174775,Bose SoundSport Headphones,1,99.99,03/03/19 13:29,"778 Center St, Boston, MA 02215" +174776,USB-C Charging Cable,1,11.95,03/11/19 14:19,"860 Cedar St, New York City, NY 10001" +174777,Wired Headphones,1,11.99,03/07/19 00:09,"144 Hickory St, Portland, OR 97035" +174778,Wired Headphones,1,11.99,03/08/19 23:06,"916 Lincoln St, San Francisco, CA 94016" +174779,Wired Headphones,1,11.99,03/23/19 10:19,"528 Cherry St, San Francisco, CA 94016" +174780,AA Batteries (4-pack),1,3.84,03/28/19 15:55,"815 9th St, Los Angeles, CA 90001" +174781,AAA Batteries (4-pack),1,2.99,03/16/19 22:54,"831 South St, Boston, MA 02215" +174782,AAA Batteries (4-pack),2,2.99,03/31/19 01:47,"930 Adams St, Portland, OR 97035" +174783,Vareebadd Phone,1,400,03/23/19 12:22,"563 Dogwood St, San Francisco, CA 94016" +174784,Lightning Charging Cable,1,14.95,03/08/19 19:56,"161 South St, New York City, NY 10001" +174785,AA Batteries (4-pack),1,3.84,03/28/19 09:33,"415 Park St, San Francisco, CA 94016" +174786,AAA Batteries (4-pack),1,2.99,03/02/19 12:13,"720 Lakeview St, Seattle, WA 98101" +174787,AAA Batteries (4-pack),1,2.99,03/24/19 16:00,"994 Highland St, Los Angeles, CA 90001" +174788,27in FHD Monitor,1,149.99,03/22/19 08:05,"74 Chestnut St, Portland, ME 04101" +174789,Apple Airpods Headphones,1,150,03/23/19 10:36,"165 Highland St, San Francisco, CA 94016" +174790,AA Batteries (4-pack),1,3.84,03/23/19 13:46,"440 Washington St, Seattle, WA 98101" +174791,Wired Headphones,1,11.99,03/01/19 23:48,"462 Highland St, Atlanta, GA 30301" +174792,Bose SoundSport Headphones,1,99.99,03/17/19 23:22,"679 10th St, Atlanta, GA 30301" +174793,iPhone,1,700,03/26/19 06:53,"895 Chestnut St, San Francisco, CA 94016" +174794,iPhone,1,700,03/19/19 20:05,"303 9th St, Boston, MA 02215" +174795,AA Batteries (4-pack),3,3.84,03/07/19 15:58,"941 14th St, San Francisco, CA 94016" +174796,Bose SoundSport Headphones,1,99.99,03/16/19 17:56,"706 Elm St, Portland, OR 97035" +174797,Wired Headphones,1,11.99,03/05/19 11:30,"752 Dogwood St, New York City, NY 10001" +174798,AA Batteries (4-pack),3,3.84,03/07/19 12:52,"17 Cedar St, Los Angeles, CA 90001" +174798,Apple Airpods Headphones,1,150,03/07/19 12:52,"17 Cedar St, Los Angeles, CA 90001" +174799,Vareebadd Phone,1,400,03/30/19 15:39,"950 4th St, Dallas, TX 75001" +174799,USB-C Charging Cable,2,11.95,03/30/19 15:39,"950 4th St, Dallas, TX 75001" +174800,Lightning Charging Cable,1,14.95,03/15/19 14:25,"152 River St, Atlanta, GA 30301" +174801,iPhone,1,700,03/16/19 07:21,"484 Church St, Atlanta, GA 30301" +174802,Apple Airpods Headphones,1,150,03/07/19 06:40,"668 Hickory St, San Francisco, CA 94016" +174803,Wired Headphones,1,11.99,03/28/19 20:21,"244 Johnson St, Los Angeles, CA 90001" +174804,USB-C Charging Cable,1,11.95,03/12/19 22:13,"796 Wilson St, Atlanta, GA 30301" +174805,Google Phone,1,600,03/08/19 22:41,"968 Cherry St, New York City, NY 10001" +174805,USB-C Charging Cable,1,11.95,03/08/19 22:41,"968 Cherry St, New York City, NY 10001" +174806,AA Batteries (4-pack),1,3.84,03/30/19 23:16,"827 Lincoln St, Boston, MA 02215" +174807,AAA Batteries (4-pack),2,2.99,03/23/19 05:47,"889 1st St, New York City, NY 10001" +174808,34in Ultrawide Monitor,1,379.99,03/24/19 20:20,"192 7th St, New York City, NY 10001" +174809,Wired Headphones,1,11.99,03/26/19 19:35,"232 12th St, Boston, MA 02215" +174810,Wired Headphones,1,11.99,03/11/19 13:23,"790 Adams St, New York City, NY 10001" +174811,Bose SoundSport Headphones,1,99.99,03/13/19 12:31,"87 11th St, Los Angeles, CA 90001" +174812,AAA Batteries (4-pack),2,2.99,03/13/19 00:15,"982 Maple St, Portland, OR 97035" +174813,Macbook Pro Laptop,1,1700,03/26/19 08:20,"905 Lake St, Los Angeles, CA 90001" +174814,Flatscreen TV,1,300,03/11/19 00:18,"490 14th St, Boston, MA 02215" +174815,Lightning Charging Cable,1,14.95,03/23/19 18:45,"874 Adams St, San Francisco, CA 94016" +174816,AAA Batteries (4-pack),2,2.99,03/14/19 13:53,"171 Sunset St, San Francisco, CA 94016" +174817,USB-C Charging Cable,1,11.95,03/10/19 13:39,"197 Madison St, Austin, TX 73301" +174818,34in Ultrawide Monitor,1,379.99,03/04/19 21:09,"657 Washington St, Boston, MA 02215" +174819,Google Phone,1,600,03/15/19 09:42,"391 Lakeview St, Portland, OR 97035" +174820,AAA Batteries (4-pack),1,2.99,03/07/19 09:26,"883 6th St, Atlanta, GA 30301" +174821,Apple Airpods Headphones,1,150,03/27/19 11:42,"110 1st St, Boston, MA 02215" +174821,Google Phone,1,600,03/27/19 11:42,"110 1st St, Boston, MA 02215" +174822,AAA Batteries (4-pack),1,2.99,03/10/19 17:47,"430 Dogwood St, New York City, NY 10001" +174823,Macbook Pro Laptop,1,1700,03/13/19 21:39,"370 13th St, San Francisco, CA 94016" +174824,AAA Batteries (4-pack),1,2.99,03/27/19 21:40,"750 Walnut St, Seattle, WA 98101" +174825,27in 4K Gaming Monitor,1,389.99,03/13/19 23:10,"970 9th St, San Francisco, CA 94016" +174826,Wired Headphones,1,11.99,03/24/19 13:51,"725 2nd St, Austin, TX 73301" +174827,Wired Headphones,1,11.99,03/03/19 19:13,"119 Lakeview St, Atlanta, GA 30301" +174828,Wired Headphones,1,11.99,03/14/19 21:58,"474 Hickory St, Seattle, WA 98101" +174829,USB-C Charging Cable,1,11.95,03/10/19 16:10,"716 Willow St, Los Angeles, CA 90001" +174830,ThinkPad Laptop,1,999.99,03/01/19 13:26,"587 Park St, Seattle, WA 98101" +174831,AA Batteries (4-pack),1,3.84,03/24/19 12:52,"150 Hickory St, Dallas, TX 75001" +174832,USB-C Charging Cable,1,11.95,03/02/19 10:22,"209 Pine St, San Francisco, CA 94016" +174833,iPhone,1,700,03/11/19 20:34,"637 Jackson St, Los Angeles, CA 90001" +174834,AAA Batteries (4-pack),1,2.99,03/20/19 17:15,"352 Pine St, Los Angeles, CA 90001" +174835,AAA Batteries (4-pack),3,2.99,03/31/19 13:03,"983 Johnson St, Los Angeles, CA 90001" +174836,27in FHD Monitor,1,149.99,03/17/19 10:19,"631 2nd St, Dallas, TX 75001" +174837,Lightning Charging Cable,1,14.95,03/10/19 20:36,"505 Lincoln St, Boston, MA 02215" +174838,AA Batteries (4-pack),1,3.84,03/03/19 19:29,"585 Wilson St, New York City, NY 10001" +174839,Bose SoundSport Headphones,1,99.99,03/29/19 22:23,"503 11th St, San Francisco, CA 94016" +174840,Apple Airpods Headphones,1,150,03/22/19 14:15,"547 Elm St, Boston, MA 02215" +174841,Apple Airpods Headphones,1,150,03/25/19 16:11,"65 Maple St, Los Angeles, CA 90001" +174842,Wired Headphones,1,11.99,03/06/19 20:32,"93 Ridge St, San Francisco, CA 94016" +174843,USB-C Charging Cable,1,11.95,03/31/19 07:50,"62 Pine St, Los Angeles, CA 90001" +174844,AAA Batteries (4-pack),2,2.99,03/27/19 10:38,"968 Johnson St, New York City, NY 10001" +174845,AAA Batteries (4-pack),1,2.99,03/02/19 15:29,"383 Forest St, Atlanta, GA 30301" +174846,Google Phone,1,600,03/26/19 12:08,"736 4th St, Austin, TX 73301" +174846,Bose SoundSport Headphones,1,99.99,03/26/19 12:08,"736 4th St, Austin, TX 73301" +174847,Wired Headphones,1,11.99,03/13/19 17:39,"105 Lake St, Portland, OR 97035" +174848,AAA Batteries (4-pack),1,2.99,03/10/19 15:54,"61 Chestnut St, Atlanta, GA 30301" +174849,27in FHD Monitor,1,149.99,03/02/19 11:34,"910 Adams St, Seattle, WA 98101" +174850,AA Batteries (4-pack),1,3.84,03/26/19 16:27,"886 8th St, Atlanta, GA 30301" +174851,Macbook Pro Laptop,1,1700,03/23/19 19:23,"271 Cherry St, San Francisco, CA 94016" +174852,USB-C Charging Cable,1,11.95,03/02/19 15:04,"562 Walnut St, Los Angeles, CA 90001" +174853,Wired Headphones,1,11.99,03/06/19 17:24,"449 Lincoln St, Seattle, WA 98101" +174854,Lightning Charging Cable,1,14.95,03/09/19 10:19,"649 Lincoln St, San Francisco, CA 94016" +174855,AA Batteries (4-pack),1,3.84,03/20/19 21:51,"280 11th St, Boston, MA 02215" +174856,AA Batteries (4-pack),1,3.84,03/13/19 13:42,"784 Dogwood St, New York City, NY 10001" +174857,AA Batteries (4-pack),1,3.84,03/12/19 06:28,"581 Hill St, Atlanta, GA 30301" +174858,20in Monitor,1,109.99,03/17/19 07:45,"298 14th St, San Francisco, CA 94016" +174859,USB-C Charging Cable,1,11.95,03/19/19 12:00,"365 River St, New York City, NY 10001" +174860,AAA Batteries (4-pack),1,2.99,03/19/19 09:56,"961 West St, Los Angeles, CA 90001" +174861,Bose SoundSport Headphones,1,99.99,03/11/19 15:18,"158 4th St, San Francisco, CA 94016" +174862,AA Batteries (4-pack),1,3.84,03/09/19 09:04,"522 Main St, Boston, MA 02215" +174863,Bose SoundSport Headphones,1,99.99,03/16/19 04:11,"151 South St, Los Angeles, CA 90001" +174864,USB-C Charging Cable,1,11.95,03/22/19 09:58,"939 Sunset St, Portland, OR 97035" +174865,Lightning Charging Cable,1,14.95,03/14/19 11:07,"639 Center St, Los Angeles, CA 90001" +174866,Google Phone,1,600,03/31/19 21:21,"66 Pine St, Dallas, TX 75001" +174867,AAA Batteries (4-pack),1,2.99,03/17/19 10:42,"974 12th St, New York City, NY 10001" +174868,USB-C Charging Cable,2,11.95,03/28/19 23:00,"308 Highland St, Seattle, WA 98101" +174869,Lightning Charging Cable,1,14.95,03/24/19 11:14,"370 13th St, San Francisco, CA 94016" +174870,Lightning Charging Cable,1,14.95,03/12/19 20:04,"513 5th St, New York City, NY 10001" +174871,USB-C Charging Cable,1,11.95,03/14/19 13:48,"332 Park St, San Francisco, CA 94016" +174872,Lightning Charging Cable,1,14.95,03/12/19 18:13,"116 Highland St, Austin, TX 73301" +174873,Bose SoundSport Headphones,1,99.99,03/30/19 17:36,"70 Spruce St, New York City, NY 10001" +174874,Wired Headphones,1,11.99,03/01/19 12:39,"49 2nd St, San Francisco, CA 94016" +174875,Vareebadd Phone,1,400,03/23/19 11:50,"869 Adams St, Dallas, TX 75001" +174876,Apple Airpods Headphones,1,150,03/10/19 18:11,"962 Johnson St, Dallas, TX 75001" +174877,Flatscreen TV,1,300,03/16/19 11:40,"730 Highland St, Los Angeles, CA 90001" +174878,20in Monitor,1,109.99,03/01/19 23:29,"776 13th St, New York City, NY 10001" +174879,AAA Batteries (4-pack),1,2.99,03/08/19 17:46,"959 Pine St, Los Angeles, CA 90001" +174880,AAA Batteries (4-pack),2,2.99,03/29/19 21:20,"25 6th St, Seattle, WA 98101" +174881,AAA Batteries (4-pack),1,2.99,03/02/19 06:32,"381 14th St, San Francisco, CA 94016" +174882,Bose SoundSport Headphones,1,99.99,03/13/19 17:59,"250 7th St, Boston, MA 02215" +174883,Bose SoundSport Headphones,1,99.99,03/12/19 19:39,"459 14th St, San Francisco, CA 94016" +174884,iPhone,1,700,03/13/19 15:46,"912 13th St, Boston, MA 02215" +174884,Lightning Charging Cable,1,14.95,03/13/19 15:46,"912 13th St, Boston, MA 02215" +174885,Lightning Charging Cable,1,14.95,03/21/19 13:11,"100 Johnson St, Boston, MA 02215" +174886,Apple Airpods Headphones,1,150,03/22/19 13:29,"494 Center St, Los Angeles, CA 90001" +174887,27in 4K Gaming Monitor,1,389.99,03/15/19 20:26,"704 10th St, San Francisco, CA 94016" +174888,Lightning Charging Cable,1,14.95,03/10/19 16:34,"976 Elm St, Boston, MA 02215" +174889,USB-C Charging Cable,1,11.95,03/14/19 16:40,"206 8th St, San Francisco, CA 94016" +174890,Macbook Pro Laptop,1,1700,03/16/19 17:53,"910 Park St, Boston, MA 02215" +174891,27in FHD Monitor,1,149.99,03/15/19 22:14,"522 Church St, Austin, TX 73301" +174892,20in Monitor,1,109.99,03/02/19 00:53,"908 Highland St, New York City, NY 10001" +174893,iPhone,1,700,03/25/19 18:55,"40 Pine St, Dallas, TX 75001" +174894,20in Monitor,1,109.99,03/07/19 10:53,"57 Lincoln St, Los Angeles, CA 90001" +174895,Lightning Charging Cable,1,14.95,03/18/19 08:42,"688 Cherry St, Boston, MA 02215" +174896,Wired Headphones,1,11.99,03/02/19 19:51,"355 13th St, San Francisco, CA 94016" +174897,AA Batteries (4-pack),1,3.84,03/24/19 16:32,"387 Dogwood St, San Francisco, CA 94016" +174898,AA Batteries (4-pack),2,3.84,03/08/19 17:37,"224 Cherry St, San Francisco, CA 94016" +174899,AAA Batteries (4-pack),3,2.99,03/21/19 08:34,"708 North St, Boston, MA 02215" +174900,USB-C Charging Cable,1,11.95,03/14/19 10:16,"336 7th St, Boston, MA 02215" +174901,Macbook Pro Laptop,1,1700,03/24/19 13:09,"532 Walnut St, San Francisco, CA 94016" +174902,Macbook Pro Laptop,1,1700,03/19/19 20:27,"943 Lakeview St, San Francisco, CA 94016" +174903,AAA Batteries (4-pack),1,2.99,03/24/19 10:09,"745 Church St, San Francisco, CA 94016" +174904,Lightning Charging Cable,1,14.95,03/22/19 12:28,"493 Ridge St, New York City, NY 10001" +174905,ThinkPad Laptop,1,999.99,03/28/19 17:11,"652 South St, Seattle, WA 98101" +174906,Lightning Charging Cable,1,14.95,03/27/19 21:04,"385 Maple St, Los Angeles, CA 90001" +174907,Wired Headphones,1,11.99,03/19/19 16:50,"838 West St, San Francisco, CA 94016" +174908,Wired Headphones,1,11.99,03/19/19 22:36,"466 Madison St, New York City, NY 10001" +174909,Bose SoundSport Headphones,1,99.99,03/21/19 08:54,"875 5th St, Boston, MA 02215" +174910,Macbook Pro Laptop,1,1700,03/03/19 11:37,"569 Park St, Boston, MA 02215" +174911,Apple Airpods Headphones,1,150,03/12/19 10:02,"481 Adams St, Seattle, WA 98101" +174912,27in 4K Gaming Monitor,1,389.99,03/31/19 16:40,"900 Forest St, Los Angeles, CA 90001" +174913,Wired Headphones,1,11.99,03/28/19 23:11,"872 1st St, San Francisco, CA 94016" +174914,Bose SoundSport Headphones,1,99.99,03/20/19 16:58,"543 South St, Los Angeles, CA 90001" +174915,Bose SoundSport Headphones,1,99.99,03/07/19 17:08,"861 9th St, San Francisco, CA 94016" +174916,Vareebadd Phone,1,400,03/25/19 08:00,"715 Forest St, San Francisco, CA 94016" +174917,27in FHD Monitor,1,149.99,03/09/19 22:48,"81 Lake St, San Francisco, CA 94016" +174918,Wired Headphones,1,11.99,03/24/19 22:15,"637 Wilson St, Seattle, WA 98101" +174919,34in Ultrawide Monitor,1,379.99,03/03/19 08:54,"861 Lincoln St, Dallas, TX 75001" +174920,AA Batteries (4-pack),1,3.84,03/09/19 15:02,"811 4th St, Los Angeles, CA 90001" +174921,AAA Batteries (4-pack),1,2.99,03/13/19 11:57,"174 2nd St, Boston, MA 02215" +174922,Macbook Pro Laptop,1,1700,03/14/19 18:28,"137 Main St, Boston, MA 02215" +174923,Lightning Charging Cable,1,14.95,03/23/19 14:42,"459 Adams St, Boston, MA 02215" +174924,Flatscreen TV,1,300,03/30/19 14:15,"332 Washington St, San Francisco, CA 94016" +174925,Macbook Pro Laptop,1,1700,03/18/19 08:03,"628 5th St, Boston, MA 02215" +174926,ThinkPad Laptop,1,999.99,03/05/19 08:24,"122 Willow St, Atlanta, GA 30301" +174927,27in 4K Gaming Monitor,1,389.99,03/13/19 13:24,"665 Johnson St, Dallas, TX 75001" +174928,Wired Headphones,1,11.99,03/21/19 10:13,"242 11th St, Los Angeles, CA 90001" +174929,USB-C Charging Cable,1,11.95,03/04/19 19:49,"63 Johnson St, San Francisco, CA 94016" +174930,Wired Headphones,1,11.99,03/25/19 22:55,"657 Ridge St, Seattle, WA 98101" +174931,Lightning Charging Cable,1,14.95,03/14/19 20:41,"341 Ridge St, San Francisco, CA 94016" +174932,Macbook Pro Laptop,1,1700,03/01/19 16:08,"632 11th St, San Francisco, CA 94016" +174933,27in 4K Gaming Monitor,1,389.99,03/30/19 16:07,"999 Walnut St, New York City, NY 10001" +174934,USB-C Charging Cable,1,11.95,03/13/19 17:06,"295 Jackson St, Los Angeles, CA 90001" +174935,Apple Airpods Headphones,1,150,03/09/19 17:05,"693 7th St, Los Angeles, CA 90001" +174936,AAA Batteries (4-pack),2,2.99,03/15/19 17:59,"456 Park St, Seattle, WA 98101" +174937,Apple Airpods Headphones,1,150,03/10/19 21:33,"310 14th St, Los Angeles, CA 90001" +174938,20in Monitor,1,109.99,03/30/19 09:33,"750 4th St, San Francisco, CA 94016" +174939,27in FHD Monitor,1,149.99,03/06/19 18:09,"312 4th St, San Francisco, CA 94016" +174940,USB-C Charging Cable,1,11.95,03/18/19 22:49,"161 Meadow St, San Francisco, CA 94016" +174941,Wired Headphones,1,11.99,03/03/19 23:54,"971 Forest St, New York City, NY 10001" +174942,Wired Headphones,1,11.99,03/08/19 22:10,"265 West St, New York City, NY 10001" +174943,34in Ultrawide Monitor,1,379.99,03/03/19 22:37,"367 Washington St, Boston, MA 02215" +174944,USB-C Charging Cable,1,11.95,03/08/19 19:29,"321 Maple St, Austin, TX 73301" +174945,Google Phone,1,600,03/15/19 14:30,"103 6th St, Seattle, WA 98101" +174945,USB-C Charging Cable,1,11.95,03/15/19 14:30,"103 6th St, Seattle, WA 98101" +174946,Lightning Charging Cable,1,14.95,03/06/19 05:12,"871 Jackson St, Los Angeles, CA 90001" +174947,Lightning Charging Cable,1,14.95,03/14/19 00:29,"579 11th St, Los Angeles, CA 90001" +174948,Lightning Charging Cable,1,14.95,03/24/19 15:56,"699 Walnut St, Los Angeles, CA 90001" +174949,Lightning Charging Cable,1,14.95,03/23/19 06:31,"505 Sunset St, Atlanta, GA 30301" +174950,27in 4K Gaming Monitor,1,389.99,03/25/19 11:23,"238 West St, Atlanta, GA 30301" +174951,27in 4K Gaming Monitor,1,389.99,03/17/19 17:54,"728 Spruce St, New York City, NY 10001" +174952,iPhone,1,700,03/27/19 13:59,"231 10th St, San Francisco, CA 94016" +174952,Lightning Charging Cable,1,14.95,03/27/19 13:59,"231 10th St, San Francisco, CA 94016" +174953,AA Batteries (4-pack),1,3.84,03/03/19 19:42,"313 6th St, Austin, TX 73301" +174954,AA Batteries (4-pack),2,3.84,03/15/19 11:28,"927 Church St, Boston, MA 02215" +174955,Lightning Charging Cable,1,14.95,03/16/19 13:48,"382 Madison St, Atlanta, GA 30301" +174956,Lightning Charging Cable,1,14.95,03/05/19 16:16,"602 Sunset St, Los Angeles, CA 90001" +174957,34in Ultrawide Monitor,1,379.99,03/18/19 23:07,"404 9th St, San Francisco, CA 94016" +174958,27in 4K Gaming Monitor,1,389.99,03/30/19 11:44,"414 Jackson St, Portland, OR 97035" +174959,27in 4K Gaming Monitor,1,389.99,03/13/19 19:00,"321 Ridge St, Boston, MA 02215" +174960,USB-C Charging Cable,1,11.95,03/15/19 17:05,"657 Main St, San Francisco, CA 94016" +174961,27in 4K Gaming Monitor,1,389.99,03/04/19 16:53,"126 Hill St, Los Angeles, CA 90001" +174962,AAA Batteries (4-pack),2,2.99,03/17/19 12:11,"729 8th St, Austin, TX 73301" +174963,USB-C Charging Cable,1,11.95,03/11/19 12:15,"844 9th St, Dallas, TX 75001" +174964,34in Ultrawide Monitor,1,379.99,03/28/19 15:35,"450 Main St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +174965,USB-C Charging Cable,1,11.95,03/12/19 18:06,"704 9th St, Los Angeles, CA 90001" +174966,Wired Headphones,1,11.99,03/26/19 11:57,"869 River St, Boston, MA 02215" +174967,27in FHD Monitor,1,149.99,03/27/19 18:32,"229 South St, Dallas, TX 75001" +174968,Bose SoundSport Headphones,1,99.99,03/27/19 12:55,"507 10th St, San Francisco, CA 94016" +174969,20in Monitor,1,109.99,03/24/19 19:54,"937 1st St, San Francisco, CA 94016" +174970,20in Monitor,1,109.99,03/12/19 15:22,"626 Main St, Seattle, WA 98101" +174970,USB-C Charging Cable,1,11.95,03/12/19 15:22,"626 Main St, Seattle, WA 98101" +174971,USB-C Charging Cable,1,11.95,03/22/19 14:47,"336 Church St, San Francisco, CA 94016" +174972,Lightning Charging Cable,1,14.95,03/07/19 13:43,"551 13th St, Los Angeles, CA 90001" +174973,27in FHD Monitor,1,149.99,03/06/19 19:17,"979 Willow St, San Francisco, CA 94016" +174974,AA Batteries (4-pack),1,3.84,03/05/19 09:23,"856 Center St, Seattle, WA 98101" +174975,USB-C Charging Cable,1,11.95,03/06/19 09:19,"761 Walnut St, Atlanta, GA 30301" +174976,Lightning Charging Cable,1,14.95,03/30/19 17:52,"529 11th St, New York City, NY 10001" +174977,Bose SoundSport Headphones,1,99.99,03/10/19 09:43,"112 Walnut St, San Francisco, CA 94016" +174978,AA Batteries (4-pack),1,3.84,03/17/19 20:53,"50 13th St, San Francisco, CA 94016" +174979,AAA Batteries (4-pack),2,2.99,03/31/19 18:44,"146 Lincoln St, Portland, OR 97035" +174980,Lightning Charging Cable,1,14.95,03/01/19 18:30,"99 Cherry St, New York City, NY 10001" +174981,Bose SoundSport Headphones,1,99.99,03/30/19 05:48,"794 10th St, New York City, NY 10001" +174982,USB-C Charging Cable,1,11.95,03/22/19 15:16,"628 South St, San Francisco, CA 94016" +174983,Apple Airpods Headphones,1,150,03/20/19 15:47,"861 Lakeview St, Portland, ME 04101" +174984,Macbook Pro Laptop,1,1700,03/28/19 14:22,"653 Johnson St, Los Angeles, CA 90001" +174985,Bose SoundSport Headphones,1,99.99,03/28/19 06:48,"856 Washington St, Seattle, WA 98101" +174986,Wired Headphones,1,11.99,03/22/19 08:45,"797 Lakeview St, San Francisco, CA 94016" +174987,AA Batteries (4-pack),1,3.84,03/03/19 01:38,"184 Sunset St, San Francisco, CA 94016" +174988,USB-C Charging Cable,1,11.95,03/01/19 16:58,"528 Sunset St, Seattle, WA 98101" +174989,27in 4K Gaming Monitor,1,389.99,03/19/19 09:01,"891 Center St, Dallas, TX 75001" +174990,Google Phone,1,600,03/26/19 16:56,"378 Hickory St, New York City, NY 10001" +174991,Flatscreen TV,1,300,03/25/19 12:36,"951 Hickory St, Seattle, WA 98101" +174992,USB-C Charging Cable,1,11.95,03/15/19 00:54,"438 Jackson St, Seattle, WA 98101" +174993,Bose SoundSport Headphones,1,99.99,03/07/19 15:25,"231 North St, Los Angeles, CA 90001" +174994,USB-C Charging Cable,1,11.95,03/05/19 08:24,"561 12th St, San Francisco, CA 94016" +174995,iPhone,1,700,03/02/19 15:54,"393 Main St, Seattle, WA 98101" +174996,AAA Batteries (4-pack),2,2.99,03/02/19 18:39,"629 8th St, Atlanta, GA 30301" +174997,Apple Airpods Headphones,1,150,03/26/19 16:47,"181 8th St, Boston, MA 02215" +174998,AAA Batteries (4-pack),1,2.99,03/23/19 21:34,"792 2nd St, New York City, NY 10001" +174999,Lightning Charging Cable,1,14.95,03/08/19 20:17,"229 Lakeview St, San Francisco, CA 94016" +175000,USB-C Charging Cable,1,11.95,03/27/19 09:51,"987 Chestnut St, San Francisco, CA 94016" +175001,27in FHD Monitor,1,149.99,03/06/19 06:00,"164 5th St, Boston, MA 02215" +175002,27in 4K Gaming Monitor,1,389.99,03/07/19 10:27,"566 Jefferson St, Seattle, WA 98101" +175003,AAA Batteries (4-pack),1,2.99,03/31/19 20:21,"21 Walnut St, Dallas, TX 75001" +175004,Lightning Charging Cable,1,14.95,03/19/19 18:54,"352 Highland St, New York City, NY 10001" +175005,Google Phone,1,600,03/07/19 08:58,"594 Washington St, Los Angeles, CA 90001" +175006,LG Dryer,1,600.0,03/27/19 17:05,"196 1st St, New York City, NY 10001" +175007,USB-C Charging Cable,1,11.95,03/19/19 14:04,"358 Washington St, Boston, MA 02215" +175008,Wired Headphones,1,11.99,03/30/19 16:06,"530 Ridge St, Los Angeles, CA 90001" +175009,Flatscreen TV,1,300,03/14/19 15:59,"247 13th St, Dallas, TX 75001" +175009,ThinkPad Laptop,1,999.99,03/14/19 15:59,"247 13th St, Dallas, TX 75001" +175010,Bose SoundSport Headphones,1,99.99,03/16/19 19:11,"24 North St, San Francisco, CA 94016" +175011,AA Batteries (4-pack),2,3.84,03/16/19 17:37,"721 Willow St, Atlanta, GA 30301" +175012,Google Phone,1,600,03/05/19 09:17,"968 6th St, New York City, NY 10001" +175013,AA Batteries (4-pack),1,3.84,03/23/19 06:47,"139 Jackson St, Portland, OR 97035" +175014,Apple Airpods Headphones,1,150,03/16/19 15:33,"610 14th St, San Francisco, CA 94016" +175015,Wired Headphones,1,11.99,03/17/19 19:06,"924 Madison St, Boston, MA 02215" +175016,AAA Batteries (4-pack),1,2.99,03/31/19 18:49,"430 6th St, San Francisco, CA 94016" +175017,USB-C Charging Cable,1,11.95,03/05/19 23:48,"363 Wilson St, Los Angeles, CA 90001" +175018,AA Batteries (4-pack),1,3.84,03/22/19 00:06,"485 Forest St, Portland, OR 97035" +175019,AA Batteries (4-pack),1,3.84,03/27/19 18:48,"331 10th St, San Francisco, CA 94016" +175020,Apple Airpods Headphones,1,150,03/24/19 23:46,"199 Jefferson St, San Francisco, CA 94016" +175021,Google Phone,1,600,03/21/19 21:55,"131 7th St, San Francisco, CA 94016" +175022,Wired Headphones,1,11.99,03/21/19 15:59,"362 Dogwood St, San Francisco, CA 94016" +175023,AA Batteries (4-pack),2,3.84,03/28/19 18:40,"802 14th St, New York City, NY 10001" +175024,Macbook Pro Laptop,1,1700,03/10/19 11:31,"115 Jefferson St, Portland, ME 04101" +175025,Bose SoundSport Headphones,1,99.99,03/30/19 09:34,"276 Lakeview St, San Francisco, CA 94016" +175026,AA Batteries (4-pack),1,3.84,03/28/19 00:45,"910 Elm St, Boston, MA 02215" +175027,Wired Headphones,1,11.99,03/11/19 10:46,"879 Spruce St, New York City, NY 10001" +175028,AAA Batteries (4-pack),1,2.99,03/08/19 22:41,"835 North St, San Francisco, CA 94016" +175029,27in 4K Gaming Monitor,1,389.99,03/26/19 06:39,"682 Church St, Portland, OR 97035" +175030,Bose SoundSport Headphones,1,99.99,03/19/19 07:26,"514 14th St, San Francisco, CA 94016" +175031,Wired Headphones,1,11.99,03/02/19 21:58,"323 Madison St, Atlanta, GA 30301" +175032,27in FHD Monitor,1,149.99,03/24/19 23:11,"640 Main St, New York City, NY 10001" +175033,Apple Airpods Headphones,1,150,03/02/19 21:32,"433 Elm St, New York City, NY 10001" +175034,AA Batteries (4-pack),1,3.84,03/27/19 02:13,"602 Forest St, Seattle, WA 98101" +175035,USB-C Charging Cable,1,11.95,03/30/19 22:48,"764 8th St, Portland, OR 97035" +175036,Macbook Pro Laptop,1,1700,03/12/19 07:32,"676 Park St, Los Angeles, CA 90001" +175036,iPhone,1,700,03/12/19 07:32,"676 Park St, Los Angeles, CA 90001" +175037,Google Phone,1,600,03/19/19 17:54,"527 Adams St, New York City, NY 10001" +175038,20in Monitor,1,109.99,03/23/19 18:30,"195 Lakeview St, Austin, TX 73301" +175039,Lightning Charging Cable,1,14.95,03/14/19 16:19,"978 Willow St, San Francisco, CA 94016" +175040,Wired Headphones,1,11.99,03/18/19 12:42,"978 Madison St, Seattle, WA 98101" +175041,AAA Batteries (4-pack),1,2.99,03/08/19 18:07,"534 Dogwood St, New York City, NY 10001" +175042,27in FHD Monitor,1,149.99,03/20/19 13:10,"925 Forest St, San Francisco, CA 94016" +175043,AAA Batteries (4-pack),1,2.99,03/14/19 11:17,"336 Adams St, New York City, NY 10001" +175044,Flatscreen TV,1,300,03/02/19 17:37,"68 Church St, New York City, NY 10001" +175045,AAA Batteries (4-pack),1,2.99,03/31/19 16:52,"206 4th St, Boston, MA 02215" +175046,Lightning Charging Cable,1,14.95,03/30/19 17:06,"422 11th St, Boston, MA 02215" +175047,AA Batteries (4-pack),1,3.84,03/29/19 12:42,"272 Forest St, San Francisco, CA 94016" +175048,AA Batteries (4-pack),1,3.84,03/03/19 09:44,"492 Chestnut St, Boston, MA 02215" +175049,USB-C Charging Cable,1,11.95,03/11/19 22:18,"785 Cedar St, Dallas, TX 75001" +175050,Wired Headphones,1,11.99,03/05/19 07:25,"17 8th St, New York City, NY 10001" +175051,USB-C Charging Cable,1,11.95,03/17/19 06:39,"38 13th St, San Francisco, CA 94016" +175052,Lightning Charging Cable,1,14.95,03/26/19 15:17,"946 Adams St, Seattle, WA 98101" +175053,Wired Headphones,1,11.99,03/12/19 14:05,"548 Jefferson St, Dallas, TX 75001" +175054,Wired Headphones,1,11.99,03/16/19 11:19,"992 Maple St, Atlanta, GA 30301" +175055,Apple Airpods Headphones,1,150,03/03/19 14:46,"606 Madison St, Los Angeles, CA 90001" +175056,Wired Headphones,2,11.99,03/19/19 23:15,"622 Church St, Dallas, TX 75001" +175057,AAA Batteries (4-pack),2,2.99,03/07/19 07:35,"707 Main St, San Francisco, CA 94016" +175058,27in 4K Gaming Monitor,1,389.99,03/14/19 00:55,"251 Spruce St, Seattle, WA 98101" +175059,Apple Airpods Headphones,1,150,03/07/19 00:32,"669 11th St, San Francisco, CA 94016" +175060,USB-C Charging Cable,1,11.95,03/16/19 16:41,"688 1st St, Boston, MA 02215" +175061,Wired Headphones,1,11.99,03/11/19 20:39,"581 Pine St, Seattle, WA 98101" +175062,AA Batteries (4-pack),4,3.84,03/24/19 19:05,"219 12th St, San Francisco, CA 94016" +175063,Apple Airpods Headphones,1,150,03/20/19 01:45,"682 11th St, Boston, MA 02215" +175064,AA Batteries (4-pack),2,3.84,03/14/19 06:27,"30 Meadow St, New York City, NY 10001" +175065,Bose SoundSport Headphones,1,99.99,03/29/19 23:57,"21 Dogwood St, New York City, NY 10001" +175066,AAA Batteries (4-pack),2,2.99,03/22/19 17:50,"137 Highland St, Portland, OR 97035" +175067,Wired Headphones,1,11.99,03/17/19 08:32,"576 10th St, Boston, MA 02215" +175068,AAA Batteries (4-pack),1,2.99,03/23/19 14:34,"779 West St, Austin, TX 73301" +175069,Flatscreen TV,1,300,03/20/19 19:29,"877 Jefferson St, Boston, MA 02215" +175070,27in 4K Gaming Monitor,1,389.99,03/05/19 10:06,"710 Main St, San Francisco, CA 94016" +175071,27in FHD Monitor,1,149.99,03/13/19 01:13,"747 9th St, San Francisco, CA 94016" +175072,Apple Airpods Headphones,1,150,03/03/19 23:47,"825 7th St, San Francisco, CA 94016" +175073,27in FHD Monitor,1,149.99,03/22/19 10:32,"990 Wilson St, Dallas, TX 75001" +175074,34in Ultrawide Monitor,1,379.99,03/26/19 11:52,"841 Hill St, New York City, NY 10001" +175075,AA Batteries (4-pack),1,3.84,03/15/19 22:28,"953 Wilson St, San Francisco, CA 94016" +175076,34in Ultrawide Monitor,1,379.99,03/12/19 03:17,"157 Cedar St, Austin, TX 73301" +175077,Wired Headphones,1,11.99,03/01/19 20:08,"718 2nd St, New York City, NY 10001" +175078,AAA Batteries (4-pack),2,2.99,03/15/19 19:20,"613 Washington St, San Francisco, CA 94016" +175079,Bose SoundSport Headphones,1,99.99,03/15/19 21:43,"248 11th St, New York City, NY 10001" +175080,Wired Headphones,1,11.99,03/18/19 11:53,"889 Maple St, Portland, OR 97035" +175081,AA Batteries (4-pack),3,3.84,03/17/19 23:11,"426 Hickory St, San Francisco, CA 94016" +175082,AA Batteries (4-pack),1,3.84,03/18/19 20:47,"359 Madison St, New York City, NY 10001" +175083,AA Batteries (4-pack),1,3.84,03/06/19 16:26,"269 Cherry St, San Francisco, CA 94016" +175084,Google Phone,1,600,03/24/19 06:09,"921 Walnut St, Los Angeles, CA 90001" +175084,USB-C Charging Cable,1,11.95,03/24/19 06:09,"921 Walnut St, Los Angeles, CA 90001" +175085,34in Ultrawide Monitor,1,379.99,03/29/19 11:42,"720 14th St, Seattle, WA 98101" +175086,Flatscreen TV,1,300,03/11/19 13:37,"60 10th St, Boston, MA 02215" +175087,Apple Airpods Headphones,1,150,03/05/19 10:34,"883 North St, Dallas, TX 75001" +175088,Wired Headphones,1,11.99,03/07/19 20:52,"588 5th St, Los Angeles, CA 90001" +175089,AA Batteries (4-pack),1,3.84,03/02/19 13:34,"851 Spruce St, Dallas, TX 75001" +175090,Lightning Charging Cable,1,14.95,03/14/19 18:16,"530 10th St, Seattle, WA 98101" +175091,Vareebadd Phone,1,400,03/09/19 08:05,"307 Madison St, New York City, NY 10001" +175092,Wired Headphones,1,11.99,03/22/19 12:40,"30 Elm St, Los Angeles, CA 90001" +175093,Wired Headphones,1,11.99,03/02/19 15:22,"162 9th St, Seattle, WA 98101" +175094,USB-C Charging Cable,1,11.95,03/31/19 19:34,"37 9th St, New York City, NY 10001" +175095,AA Batteries (4-pack),1,3.84,03/15/19 15:55,"403 Pine St, Los Angeles, CA 90001" +175096,20in Monitor,1,109.99,03/11/19 17:00,"74 West St, San Francisco, CA 94016" +175097,AAA Batteries (4-pack),1,2.99,03/10/19 16:49,"525 West St, Los Angeles, CA 90001" +175098,USB-C Charging Cable,1,11.95,03/17/19 09:15,"327 Main St, San Francisco, CA 94016" +175099,USB-C Charging Cable,1,11.95,03/19/19 17:18,"949 River St, Boston, MA 02215" +175100,Apple Airpods Headphones,1,150,03/15/19 16:54,"348 2nd St, New York City, NY 10001" +175101,Wired Headphones,1,11.99,03/12/19 18:19,"148 Pine St, San Francisco, CA 94016" +175102,AA Batteries (4-pack),1,3.84,03/03/19 02:18,"95 4th St, New York City, NY 10001" +175103,Apple Airpods Headphones,1,150,03/02/19 18:23,"474 Meadow St, New York City, NY 10001" +175104,Bose SoundSport Headphones,1,99.99,03/11/19 00:52,"262 Elm St, Los Angeles, CA 90001" +175105,AA Batteries (4-pack),1,3.84,03/24/19 15:32,"134 2nd St, Portland, OR 97035" +175106,20in Monitor,1,109.99,03/23/19 19:20,"646 Chestnut St, New York City, NY 10001" +175107,20in Monitor,1,109.99,03/20/19 15:29,"206 Main St, San Francisco, CA 94016" +175108,Lightning Charging Cable,2,14.95,03/18/19 10:17,"974 Center St, Portland, OR 97035" +175109,iPhone,1,700,03/01/19 11:08,"427 Hickory St, San Francisco, CA 94016" +175110,Vareebadd Phone,1,400,03/05/19 13:31,"378 Ridge St, Portland, OR 97035" +175111,AA Batteries (4-pack),1,3.84,03/20/19 17:27,"446 Center St, New York City, NY 10001" +175112,Lightning Charging Cable,1,14.95,03/20/19 10:52,"776 Jackson St, Austin, TX 73301" +175113,AAA Batteries (4-pack),1,2.99,03/27/19 20:21,"418 Center St, San Francisco, CA 94016" +175113,AAA Batteries (4-pack),1,2.99,03/27/19 20:21,"418 Center St, San Francisco, CA 94016" +175114,AA Batteries (4-pack),3,3.84,03/21/19 10:18,"952 Willow St, Los Angeles, CA 90001" +175115,27in 4K Gaming Monitor,1,389.99,03/09/19 20:03,"634 Park St, Boston, MA 02215" +175116,34in Ultrawide Monitor,1,379.99,03/23/19 20:13,"45 Cedar St, San Francisco, CA 94016" +175117,Wired Headphones,1,11.99,03/04/19 20:32,"896 Jefferson St, San Francisco, CA 94016" +175118,27in 4K Gaming Monitor,1,389.99,03/17/19 08:30,"962 2nd St, San Francisco, CA 94016" +175119,Macbook Pro Laptop,1,1700,03/26/19 06:15,"553 12th St, Seattle, WA 98101" +175120,34in Ultrawide Monitor,1,379.99,03/17/19 18:39,"43 Johnson St, Dallas, TX 75001" +175121,Apple Airpods Headphones,1,150,03/17/19 15:50,"153 Jackson St, Boston, MA 02215" +175122,Bose SoundSport Headphones,1,99.99,03/20/19 11:35,"258 Spruce St, New York City, NY 10001" +175123,Google Phone,1,600,03/17/19 00:37,"705 Forest St, New York City, NY 10001" +175124,AAA Batteries (4-pack),2,2.99,03/30/19 18:31,"672 8th St, New York City, NY 10001" +175125,Flatscreen TV,1,300,03/19/19 11:51,"133 Center St, New York City, NY 10001" +175126,Wired Headphones,1,11.99,03/05/19 12:38,"314 7th St, Dallas, TX 75001" +175127,Wired Headphones,1,11.99,03/11/19 20:30,"561 Sunset St, San Francisco, CA 94016" +175128,Google Phone,1,600,03/28/19 18:37,"702 Lincoln St, New York City, NY 10001" +175129,Wired Headphones,2,11.99,03/28/19 18:42,"811 Pine St, Seattle, WA 98101" +175130,Lightning Charging Cable,1,14.95,03/27/19 09:05,"436 Center St, Dallas, TX 75001" +175131,Wired Headphones,1,11.99,03/21/19 12:45,"545 Hickory St, New York City, NY 10001" +175132,LG Washing Machine,1,600.0,03/13/19 14:55,"892 Lake St, New York City, NY 10001" +175133,Macbook Pro Laptop,1,1700,03/04/19 12:11,"502 Lake St, Portland, OR 97035" +175134,AA Batteries (4-pack),1,3.84,03/19/19 09:26,"594 Maple St, New York City, NY 10001" +175135,Google Phone,1,600,03/14/19 16:50,"345 11th St, Dallas, TX 75001" +175135,USB-C Charging Cable,1,11.95,03/14/19 16:50,"345 11th St, Dallas, TX 75001" +175136,Google Phone,1,600,03/09/19 07:58,"578 Wilson St, Los Angeles, CA 90001" +175137,Vareebadd Phone,1,400,03/20/19 20:44,"477 Dogwood St, New York City, NY 10001" +175138,Wired Headphones,1,11.99,03/10/19 19:02,"213 Park St, San Francisco, CA 94016" +175139,Wired Headphones,1,11.99,03/05/19 01:47,"473 Center St, Seattle, WA 98101" +175140,AA Batteries (4-pack),2,3.84,03/27/19 08:05,"973 Maple St, Portland, OR 97035" +175141,iPhone,1,700,03/21/19 20:54,"116 Chestnut St, San Francisco, CA 94016" +175142,Apple Airpods Headphones,1,150,03/11/19 09:30,"664 Sunset St, Los Angeles, CA 90001" +175143,Lightning Charging Cable,1,14.95,03/23/19 20:02,"735 Lakeview St, Boston, MA 02215" +175144,AA Batteries (4-pack),2,3.84,03/13/19 07:09,"334 Wilson St, Los Angeles, CA 90001" +175145,ThinkPad Laptop,1,999.99,03/03/19 14:56,"116 Walnut St, San Francisco, CA 94016" +175145,AAA Batteries (4-pack),1,2.99,03/03/19 14:56,"116 Walnut St, San Francisco, CA 94016" +175146,Wired Headphones,1,11.99,03/22/19 11:28,"925 2nd St, Atlanta, GA 30301" +175147,Apple Airpods Headphones,1,150,03/23/19 10:18,"94 10th St, Los Angeles, CA 90001" +175148,AAA Batteries (4-pack),2,2.99,03/10/19 08:54,"578 Wilson St, San Francisco, CA 94016" +175149,AAA Batteries (4-pack),3,2.99,03/05/19 08:53,"246 Spruce St, New York City, NY 10001" +175150,20in Monitor,1,109.99,03/02/19 14:29,"960 Washington St, Los Angeles, CA 90001" +175151,AA Batteries (4-pack),1,3.84,03/25/19 09:21,"476 7th St, Los Angeles, CA 90001" +175152,27in 4K Gaming Monitor,1,389.99,03/29/19 01:04,"469 Cedar St, San Francisco, CA 94016" +175153,Lightning Charging Cable,1,14.95,03/08/19 09:51,"833 Lincoln St, Dallas, TX 75001" +175154,AAA Batteries (4-pack),2,2.99,03/18/19 15:00,"955 Park St, Boston, MA 02215" +175155,Bose SoundSport Headphones,1,99.99,03/04/19 20:14,"660 Sunset St, Los Angeles, CA 90001" +175156,Wired Headphones,1,11.99,03/20/19 19:44,"832 Hill St, Dallas, TX 75001" +175157,AA Batteries (4-pack),1,3.84,03/08/19 10:40,"260 9th St, Boston, MA 02215" +175158,Wired Headphones,1,11.99,03/01/19 11:16,"764 Jackson St, Dallas, TX 75001" +175159,USB-C Charging Cable,1,11.95,03/26/19 19:22,"647 8th St, Boston, MA 02215" +175160,Macbook Pro Laptop,1,1700,03/31/19 15:48,"959 7th St, Atlanta, GA 30301" +175160,iPhone,1,700,03/31/19 15:48,"959 7th St, Atlanta, GA 30301" +175161,Lightning Charging Cable,1,14.95,03/03/19 17:41,"35 2nd St, Portland, OR 97035" +175162,USB-C Charging Cable,1,11.95,03/15/19 14:19,"441 Lincoln St, San Francisco, CA 94016" +175163,Wired Headphones,1,11.99,03/08/19 10:27,"301 Lakeview St, Dallas, TX 75001" +175164,AAA Batteries (4-pack),1,2.99,03/06/19 12:58,"687 Hill St, Los Angeles, CA 90001" +175165,27in FHD Monitor,1,149.99,03/15/19 10:53,"770 6th St, Austin, TX 73301" +175166,Flatscreen TV,1,300,03/03/19 10:44,"315 7th St, Boston, MA 02215" +175167,USB-C Charging Cable,1,11.95,03/20/19 13:49,"819 River St, San Francisco, CA 94016" +175168,27in 4K Gaming Monitor,1,389.99,03/01/19 16:28,"650 2nd St, Los Angeles, CA 90001" +175169,Bose SoundSport Headphones,1,99.99,03/22/19 18:03,"450 Sunset St, San Francisco, CA 94016" +175170,Flatscreen TV,1,300,03/21/19 00:16,"822 7th St, San Francisco, CA 94016" +175171,27in FHD Monitor,1,149.99,03/18/19 12:53,"766 Forest St, New York City, NY 10001" +175172,27in FHD Monitor,1,149.99,03/12/19 08:25,"636 Elm St, Seattle, WA 98101" +175173,AA Batteries (4-pack),1,3.84,03/08/19 20:26,"904 Lincoln St, San Francisco, CA 94016" +175174,Wired Headphones,1,11.99,03/11/19 12:32,"609 1st St, Portland, OR 97035" +175175,Lightning Charging Cable,1,14.95,03/03/19 16:19,"186 Madison St, San Francisco, CA 94016" +175176,Lightning Charging Cable,1,14.95,03/21/19 19:23,"434 Park St, New York City, NY 10001" +175177,iPhone,1,700,03/08/19 21:05,"345 11th St, Atlanta, GA 30301" +175178,iPhone,1,700,03/30/19 16:26,"95 11th St, San Francisco, CA 94016" +175178,Wired Headphones,1,11.99,03/30/19 16:26,"95 11th St, San Francisco, CA 94016" +175179,Wired Headphones,1,11.99,03/29/19 13:38,"794 9th St, San Francisco, CA 94016" +175180,Bose SoundSport Headphones,1,99.99,03/21/19 22:49,"24 Dogwood St, Boston, MA 02215" +175181,ThinkPad Laptop,1,999.99,03/08/19 21:50,"361 Cedar St, San Francisco, CA 94016" +175182,20in Monitor,1,109.99,03/03/19 09:04,"723 Lakeview St, San Francisco, CA 94016" +175183,Bose SoundSport Headphones,1,99.99,03/02/19 08:56,"552 Sunset St, Dallas, TX 75001" +175184,27in 4K Gaming Monitor,1,389.99,03/27/19 13:40,"456 Center St, Atlanta, GA 30301" +175185,AAA Batteries (4-pack),1,2.99,03/18/19 21:35,"654 Highland St, San Francisco, CA 94016" +175186,Flatscreen TV,1,300,03/01/19 19:07,"491 Maple St, Boston, MA 02215" +175187,Lightning Charging Cable,1,14.95,03/15/19 15:41,"899 13th St, New York City, NY 10001" +175188,20in Monitor,1,109.99,03/23/19 23:19,"406 5th St, Boston, MA 02215" +175189,AA Batteries (4-pack),1,3.84,03/12/19 09:46,"977 Main St, Seattle, WA 98101" +175190,Apple Airpods Headphones,1,150,03/27/19 18:36,"850 Madison St, Los Angeles, CA 90001" +175191,AA Batteries (4-pack),1,3.84,03/19/19 16:52,"948 11th St, Los Angeles, CA 90001" +175192,iPhone,1,700,03/13/19 06:55,"795 7th St, Los Angeles, CA 90001" +175193,USB-C Charging Cable,1,11.95,03/08/19 19:35,"828 9th St, Boston, MA 02215" +175194,USB-C Charging Cable,1,11.95,03/30/19 18:07,"904 Adams St, Los Angeles, CA 90001" +175195,Apple Airpods Headphones,1,150,03/30/19 17:45,"148 11th St, Boston, MA 02215" +175196,Google Phone,1,600,03/13/19 08:18,"800 Jackson St, Seattle, WA 98101" +175197,AAA Batteries (4-pack),2,2.99,03/17/19 12:26,"938 Willow St, Atlanta, GA 30301" +175198,Apple Airpods Headphones,1,150,03/11/19 00:10,"747 West St, Portland, OR 97035" +175199,AAA Batteries (4-pack),1,2.99,03/09/19 15:44,"351 Hickory St, Atlanta, GA 30301" +175200,AA Batteries (4-pack),1,3.84,03/01/19 16:17,"966 River St, New York City, NY 10001" +175201,iPhone,1,700,03/04/19 12:51,"672 Johnson St, San Francisco, CA 94016" +175201,Lightning Charging Cable,1,14.95,03/04/19 12:51,"672 Johnson St, San Francisco, CA 94016" +175202,Wired Headphones,1,11.99,03/03/19 23:52,"142 Lincoln St, Austin, TX 73301" +175203,Google Phone,1,600,03/18/19 17:19,"751 Center St, Los Angeles, CA 90001" +175203,Wired Headphones,1,11.99,03/18/19 17:19,"751 Center St, Los Angeles, CA 90001" +175204,ThinkPad Laptop,1,999.99,03/26/19 20:57,"452 Washington St, San Francisco, CA 94016" +175205,Macbook Pro Laptop,1,1700,03/24/19 12:47,"966 Ridge St, New York City, NY 10001" +175206,Apple Airpods Headphones,1,150,03/19/19 15:41,"778 12th St, San Francisco, CA 94016" +175207,AAA Batteries (4-pack),1,2.99,03/20/19 02:18,"780 Chestnut St, Atlanta, GA 30301" +175208,Apple Airpods Headphones,1,150,03/23/19 20:21,"67 Jackson St, San Francisco, CA 94016" +175209,AA Batteries (4-pack),2,3.84,03/25/19 08:56,"882 Wilson St, Boston, MA 02215" +175210,Flatscreen TV,1,300,03/26/19 12:19,"231 Jackson St, Portland, ME 04101" +175211,34in Ultrawide Monitor,1,379.99,03/17/19 16:51,"899 7th St, New York City, NY 10001" +175212,AA Batteries (4-pack),2,3.84,03/23/19 13:24,"286 5th St, Boston, MA 02215" +175212,Bose SoundSport Headphones,1,99.99,03/23/19 13:24,"286 5th St, Boston, MA 02215" +175213,AA Batteries (4-pack),1,3.84,03/19/19 10:52,"3 5th St, Atlanta, GA 30301" +175214,Wired Headphones,1,11.99,03/30/19 09:30,"91 Church St, Boston, MA 02215" +175215,Apple Airpods Headphones,1,150,03/21/19 15:07,"556 5th St, Dallas, TX 75001" +175216,Lightning Charging Cable,1,14.95,03/30/19 21:53,"167 North St, Los Angeles, CA 90001" +175217,AA Batteries (4-pack),2,3.84,03/02/19 18:51,"308 Highland St, Seattle, WA 98101" +175218,AA Batteries (4-pack),2,3.84,03/19/19 23:00,"713 River St, Austin, TX 73301" +175219,AAA Batteries (4-pack),1,2.99,03/22/19 21:18,"173 Hill St, Los Angeles, CA 90001" +175219,Bose SoundSport Headphones,1,99.99,03/22/19 21:18,"173 Hill St, Los Angeles, CA 90001" +175220,USB-C Charging Cable,1,11.95,03/21/19 11:00,"993 Cedar St, Atlanta, GA 30301" +175221,USB-C Charging Cable,1,11.95,03/16/19 22:19,"703 9th St, San Francisco, CA 94016" +175222,AA Batteries (4-pack),1,3.84,03/27/19 11:48,"155 Lake St, Austin, TX 73301" +175223,Bose SoundSport Headphones,1,99.99,03/22/19 22:41,"606 12th St, Dallas, TX 75001" +175224,Wired Headphones,1,11.99,03/23/19 14:23,"404 Highland St, Boston, MA 02215" +175225,USB-C Charging Cable,1,11.95,03/09/19 20:04,"873 Elm St, Dallas, TX 75001" +175226,AA Batteries (4-pack),1,3.84,03/21/19 18:38,"544 6th St, New York City, NY 10001" +175227,Apple Airpods Headphones,1,150,03/07/19 09:54,"408 11th St, Los Angeles, CA 90001" +175228,Wired Headphones,1,11.99,03/30/19 13:58,"865 Jefferson St, Atlanta, GA 30301" +175229,AA Batteries (4-pack),1,3.84,03/06/19 10:53,"964 14th St, Portland, OR 97035" +175230,Wired Headphones,1,11.99,03/28/19 11:55,"759 Wilson St, Atlanta, GA 30301" +175231,Bose SoundSport Headphones,1,99.99,03/31/19 21:21,"388 8th St, Dallas, TX 75001" +175232,ThinkPad Laptop,1,999.99,03/19/19 22:48,"174 Spruce St, New York City, NY 10001" +175233,Google Phone,1,600,03/09/19 02:18,"567 Spruce St, Los Angeles, CA 90001" +175234,Lightning Charging Cable,1,14.95,03/10/19 12:32,"261 Church St, Los Angeles, CA 90001" +175235,Google Phone,1,600,03/21/19 14:15,"628 Church St, Los Angeles, CA 90001" +175236,Bose SoundSport Headphones,1,99.99,03/04/19 12:26,"760 South St, Boston, MA 02215" +175237,Wired Headphones,1,11.99,03/15/19 20:40,"736 Church St, Los Angeles, CA 90001" +175238,AAA Batteries (4-pack),1,2.99,03/08/19 10:36,"303 Elm St, Boston, MA 02215" +175239,AAA Batteries (4-pack),3,2.99,03/06/19 21:21,"90 Lakeview St, Los Angeles, CA 90001" +175240,Wired Headphones,1,11.99,03/29/19 16:30,"809 Pine St, Seattle, WA 98101" +175241,Lightning Charging Cable,1,14.95,03/24/19 16:47,"49 7th St, Austin, TX 73301" +175242,USB-C Charging Cable,1,11.95,03/11/19 16:41,"781 11th St, New York City, NY 10001" +175243,27in FHD Monitor,1,149.99,03/14/19 11:03,"219 Madison St, New York City, NY 10001" +175244,Bose SoundSport Headphones,1,99.99,03/29/19 14:56,"419 Willow St, New York City, NY 10001" +175245,ThinkPad Laptop,1,999.99,03/01/19 20:32,"564 Highland St, New York City, NY 10001" +175246,Lightning Charging Cable,1,14.95,03/08/19 12:50,"61 1st St, Seattle, WA 98101" +175247,USB-C Charging Cable,1,11.95,03/03/19 16:44,"652 Willow St, Portland, OR 97035" +175248,27in 4K Gaming Monitor,1,389.99,03/21/19 15:21,"28 11th St, Atlanta, GA 30301" +175249,Apple Airpods Headphones,1,150,03/25/19 18:05,"584 Chestnut St, Dallas, TX 75001" +175250,Wired Headphones,1,11.99,03/09/19 20:59,"10 5th St, Los Angeles, CA 90001" +175251,Apple Airpods Headphones,1,150,03/26/19 18:35,"951 2nd St, Dallas, TX 75001" +175252,ThinkPad Laptop,1,999.99,03/12/19 10:53,"948 River St, San Francisco, CA 94016" +175253,Apple Airpods Headphones,1,150,03/25/19 21:40,"115 Maple St, Atlanta, GA 30301" +175254,AA Batteries (4-pack),1,3.84,03/09/19 20:56,"541 Spruce St, Portland, ME 04101" +175255,Apple Airpods Headphones,1,150,03/18/19 11:59,"904 Wilson St, Dallas, TX 75001" +175256,AA Batteries (4-pack),1,3.84,03/18/19 21:31,"81 Cherry St, Portland, OR 97035" +175257,34in Ultrawide Monitor,1,379.99,03/02/19 16:47,"40 Church St, Los Angeles, CA 90001" +175258,Lightning Charging Cable,1,14.95,03/06/19 11:16,"708 10th St, Los Angeles, CA 90001" +175259,Wired Headphones,1,11.99,03/17/19 12:22,"240 11th St, Portland, OR 97035" +175260,Wired Headphones,1,11.99,03/19/19 14:22,"265 Spruce St, Dallas, TX 75001" +175261,USB-C Charging Cable,2,11.95,03/26/19 20:04,"517 4th St, San Francisco, CA 94016" +175262,Lightning Charging Cable,1,14.95,03/19/19 15:48,"421 5th St, San Francisco, CA 94016" +175263,AAA Batteries (4-pack),1,2.99,03/11/19 08:02,"1 Hill St, San Francisco, CA 94016" +175264,Lightning Charging Cable,1,14.95,03/11/19 11:55,"535 5th St, Seattle, WA 98101" +175265,34in Ultrawide Monitor,2,379.99,03/21/19 22:48,"66 9th St, San Francisco, CA 94016" +175266,USB-C Charging Cable,1,11.95,03/31/19 21:54,"745 South St, Boston, MA 02215" +175267,20in Monitor,1,109.99,03/19/19 12:30,"265 6th St, New York City, NY 10001" +175268,Bose SoundSport Headphones,1,99.99,03/17/19 11:15,"216 Washington St, Portland, ME 04101" +175269,Bose SoundSport Headphones,1,99.99,03/27/19 14:45,"276 7th St, San Francisco, CA 94016" +175270,AAA Batteries (4-pack),2,2.99,03/17/19 10:51,"642 1st St, New York City, NY 10001" +175271,Lightning Charging Cable,1,14.95,03/30/19 18:16,"85 Cherry St, New York City, NY 10001" +175272,AAA Batteries (4-pack),1,2.99,03/07/19 10:26,"758 Dogwood St, Seattle, WA 98101" +175273,AAA Batteries (4-pack),1,2.99,03/29/19 13:10,"158 Highland St, Los Angeles, CA 90001" +175274,Bose SoundSport Headphones,1,99.99,03/02/19 14:31,"94 10th St, Portland, OR 97035" +175275,Wired Headphones,1,11.99,03/11/19 01:47,"307 Jefferson St, San Francisco, CA 94016" +175276,Lightning Charging Cable,1,14.95,03/24/19 17:49,"374 Center St, Los Angeles, CA 90001" +175277,Lightning Charging Cable,1,14.95,03/01/19 17:57,"753 Hill St, Los Angeles, CA 90001" +175278,Google Phone,1,600,03/03/19 01:44,"321 Adams St, New York City, NY 10001" +175278,Bose SoundSport Headphones,1,99.99,03/03/19 01:44,"321 Adams St, New York City, NY 10001" +175279,AA Batteries (4-pack),1,3.84,03/11/19 07:46,"767 4th St, Portland, OR 97035" +175280,20in Monitor,1,109.99,03/07/19 12:02,"172 Dogwood St, Atlanta, GA 30301" +175281,Macbook Pro Laptop,1,1700,03/15/19 15:52,"237 Hill St, Boston, MA 02215" +175282,Bose SoundSport Headphones,1,99.99,03/23/19 16:37,"186 River St, Los Angeles, CA 90001" +175283,USB-C Charging Cable,1,11.95,03/26/19 13:16,"434 Johnson St, San Francisco, CA 94016" +175284,USB-C Charging Cable,1,11.95,03/24/19 09:17,"238 13th St, Seattle, WA 98101" +175285,Wired Headphones,1,11.99,03/27/19 19:57,"87 4th St, Los Angeles, CA 90001" +175286,iPhone,1,700,03/24/19 17:40,"945 14th St, Los Angeles, CA 90001" +175287,Macbook Pro Laptop,1,1700,03/26/19 16:37,"307 Chestnut St, San Francisco, CA 94016" +175288,AA Batteries (4-pack),1,3.84,03/26/19 10:17,"219 Wilson St, Austin, TX 73301" +175289,ThinkPad Laptop,1,999.99,03/12/19 04:35,"836 Ridge St, San Francisco, CA 94016" +175290,27in 4K Gaming Monitor,1,389.99,03/10/19 21:12,"853 8th St, Dallas, TX 75001" +175291,Bose SoundSport Headphones,1,99.99,03/12/19 15:15,"969 8th St, San Francisco, CA 94016" +175292,AAA Batteries (4-pack),1,2.99,03/24/19 21:06,"131 12th St, Atlanta, GA 30301" +175293,Apple Airpods Headphones,1,150,03/07/19 21:53,"433 9th St, Dallas, TX 75001" +175294,AA Batteries (4-pack),1,3.84,03/24/19 17:11,"751 Willow St, Boston, MA 02215" +175295,USB-C Charging Cable,1,11.95,03/08/19 16:38,"134 Hickory St, New York City, NY 10001" +175296,Wired Headphones,1,11.99,03/02/19 00:10,"793 Sunset St, Los Angeles, CA 90001" +175297,Vareebadd Phone,1,400,03/06/19 22:14,"860 9th St, New York City, NY 10001" +175298,Wired Headphones,2,11.99,03/14/19 18:53,"369 North St, Los Angeles, CA 90001" +175299,Lightning Charging Cable,1,14.95,03/18/19 18:37,"553 River St, Portland, OR 97035" +175300,iPhone,1,700,03/28/19 10:28,"857 South St, Boston, MA 02215" +175301,Apple Airpods Headphones,1,150,03/25/19 18:48,"190 River St, Los Angeles, CA 90001" +175302,27in FHD Monitor,1,149.99,03/09/19 12:23,"773 Cedar St, Portland, OR 97035" +175303,Bose SoundSport Headphones,1,99.99,03/30/19 16:02,"877 Jefferson St, New York City, NY 10001" +175304,ThinkPad Laptop,1,999.99,03/18/19 16:48,"761 Cedar St, New York City, NY 10001" +175305,Bose SoundSport Headphones,1,99.99,03/31/19 18:40,"3 Sunset St, San Francisco, CA 94016" +175306,AAA Batteries (4-pack),1,2.99,03/21/19 13:25,"279 Cedar St, Boston, MA 02215" +175307,34in Ultrawide Monitor,1,379.99,03/28/19 23:42,"677 Wilson St, Boston, MA 02215" +175308,Bose SoundSport Headphones,1,99.99,03/10/19 18:23,"263 4th St, New York City, NY 10001" +175309,Wired Headphones,1,11.99,03/19/19 18:53,"277 6th St, San Francisco, CA 94016" +175310,AA Batteries (4-pack),1,3.84,03/25/19 11:12,"932 7th St, San Francisco, CA 94016" +175311,AA Batteries (4-pack),1,3.84,03/01/19 13:16,"615 Hill St, Los Angeles, CA 90001" +175312,Wired Headphones,1,11.99,03/11/19 06:33,"776 Lincoln St, San Francisco, CA 94016" +175313,Google Phone,1,600,03/18/19 17:48,"520 Elm St, Atlanta, GA 30301" +175314,AA Batteries (4-pack),2,3.84,03/08/19 21:07,"943 Jefferson St, Seattle, WA 98101" +175315,ThinkPad Laptop,1,999.99,03/28/19 05:46,"294 Chestnut St, Boston, MA 02215" +175316,AA Batteries (4-pack),1,3.84,03/15/19 20:21,"629 Washington St, Boston, MA 02215" +175317,Apple Airpods Headphones,1,150,03/28/19 18:58,"157 9th St, Boston, MA 02215" +175318,20in Monitor,1,109.99,03/07/19 19:42,"840 Meadow St, Austin, TX 73301" +175319,AA Batteries (4-pack),1,3.84,03/22/19 20:40,"989 Cedar St, San Francisco, CA 94016" +175320,27in FHD Monitor,1,149.99,03/01/19 23:09,"762 Johnson St, Boston, MA 02215" +175320,Flatscreen TV,1,300,03/01/19 23:09,"762 Johnson St, Boston, MA 02215" +175321,Lightning Charging Cable,1,14.95,03/16/19 22:28,"811 7th St, Dallas, TX 75001" +175322,AAA Batteries (4-pack),1,2.99,03/12/19 21:52,"540 6th St, San Francisco, CA 94016" +175323,AAA Batteries (4-pack),2,2.99,03/15/19 22:54,"664 Center St, San Francisco, CA 94016" +175324,AAA Batteries (4-pack),1,2.99,03/29/19 12:23,"601 Dogwood St, Los Angeles, CA 90001" +175325,Lightning Charging Cable,1,14.95,03/20/19 11:09,"157 1st St, San Francisco, CA 94016" +175326,Lightning Charging Cable,1,14.95,03/19/19 22:27,"828 10th St, San Francisco, CA 94016" +175327,iPhone,1,700,03/31/19 13:35,"295 4th St, Portland, OR 97035" +175328,AAA Batteries (4-pack),1,2.99,03/31/19 11:55,"862 Jefferson St, Los Angeles, CA 90001" +175329,Apple Airpods Headphones,1,150,03/22/19 11:54,"75 Chestnut St, Los Angeles, CA 90001" +175330,Bose SoundSport Headphones,1,99.99,03/03/19 21:21,"324 Sunset St, Seattle, WA 98101" +175331,AA Batteries (4-pack),1,3.84,03/25/19 17:49,"464 Ridge St, New York City, NY 10001" +175332,AAA Batteries (4-pack),4,2.99,03/05/19 12:20,"321 Madison St, San Francisco, CA 94016" +175333,34in Ultrawide Monitor,1,379.99,03/23/19 08:35,"313 Church St, New York City, NY 10001" +175334,Apple Airpods Headphones,1,150,03/19/19 16:04,"976 Walnut St, Austin, TX 73301" +175335,AA Batteries (4-pack),1,3.84,03/14/19 12:30,"27 Maple St, New York City, NY 10001" +175336,AAA Batteries (4-pack),1,2.99,03/02/19 00:04,"597 Walnut St, Boston, MA 02215" +175337,34in Ultrawide Monitor,1,379.99,03/21/19 17:33,"659 Lincoln St, San Francisco, CA 94016" +175338,ThinkPad Laptop,1,999.99,03/05/19 22:19,"140 Center St, Seattle, WA 98101" +175339,34in Ultrawide Monitor,1,379.99,03/21/19 20:24,"491 Jefferson St, New York City, NY 10001" +175340,AA Batteries (4-pack),2,3.84,03/06/19 14:47,"770 12th St, San Francisco, CA 94016" +175341,Apple Airpods Headphones,1,150,03/10/19 15:04,"476 North St, Los Angeles, CA 90001" +175342,Bose SoundSport Headphones,1,99.99,03/06/19 15:46,"952 Madison St, San Francisco, CA 94016" +175343,USB-C Charging Cable,1,11.95,03/26/19 10:53,"454 10th St, Portland, OR 97035" +175344,AA Batteries (4-pack),1,3.84,03/20/19 08:31,"900 Meadow St, Los Angeles, CA 90001" +175345,USB-C Charging Cable,1,11.95,03/23/19 07:58,"386 Cherry St, Portland, OR 97035" +175346,Wired Headphones,1,11.99,03/25/19 23:11,"372 Center St, San Francisco, CA 94016" +175347,AAA Batteries (4-pack),1,2.99,03/23/19 16:39,"21 Elm St, San Francisco, CA 94016" +175348,Bose SoundSport Headphones,1,99.99,03/23/19 17:46,"409 Cedar St, Portland, OR 97035" +175349,Apple Airpods Headphones,1,150,03/30/19 22:49,"954 West St, Seattle, WA 98101" +175350,Apple Airpods Headphones,1,150,03/10/19 18:50,"156 12th St, San Francisco, CA 94016" +175351,Wired Headphones,1,11.99,03/25/19 17:00,"778 Lake St, New York City, NY 10001" +175352,iPhone,1,700,03/15/19 20:53,"710 Forest St, Boston, MA 02215" +175352,Lightning Charging Cable,1,14.95,03/15/19 20:53,"710 Forest St, Boston, MA 02215" +175353,USB-C Charging Cable,1,11.95,03/04/19 16:12,"348 4th St, Boston, MA 02215" +175354,AA Batteries (4-pack),1,3.84,03/22/19 15:11,"937 8th St, San Francisco, CA 94016" +175355,Flatscreen TV,1,300,03/23/19 18:22,"202 Forest St, Dallas, TX 75001" +175356,Lightning Charging Cable,1,14.95,03/26/19 16:58,"624 Lincoln St, New York City, NY 10001" +175357,USB-C Charging Cable,1,11.95,03/22/19 16:15,"735 Meadow St, Los Angeles, CA 90001" +175358,Wired Headphones,1,11.99,03/27/19 20:30,"400 Park St, San Francisco, CA 94016" +175359,USB-C Charging Cable,1,11.95,03/15/19 13:26,"477 1st St, Boston, MA 02215" +175360,27in FHD Monitor,1,149.99,03/02/19 20:04,"878 Cedar St, New York City, NY 10001" +175361,Bose SoundSport Headphones,1,99.99,03/17/19 19:01,"947 Meadow St, San Francisco, CA 94016" +175362,Apple Airpods Headphones,1,150,03/25/19 00:12,"557 Jackson St, Portland, OR 97035" +175363,AA Batteries (4-pack),2,3.84,03/23/19 13:32,"675 Pine St, Los Angeles, CA 90001" +175364,ThinkPad Laptop,1,999.99,03/30/19 14:05,"889 14th St, New York City, NY 10001" +175365,AAA Batteries (4-pack),1,2.99,03/06/19 12:17,"181 5th St, Boston, MA 02215" +175366,34in Ultrawide Monitor,1,379.99,03/02/19 15:36,"964 Lakeview St, Boston, MA 02215" +175367,Lightning Charging Cable,2,14.95,03/27/19 13:54,"400 Madison St, San Francisco, CA 94016" +175368,AA Batteries (4-pack),1,3.84,03/03/19 23:44,"905 Church St, Seattle, WA 98101" +175369,Wired Headphones,1,11.99,03/04/19 19:40,"454 Church St, Boston, MA 02215" +175370,Lightning Charging Cable,1,14.95,03/27/19 13:31,"86 Spruce St, Austin, TX 73301" +175371,Lightning Charging Cable,1,14.95,03/17/19 09:50,"497 Walnut St, San Francisco, CA 94016" +175372,27in FHD Monitor,1,149.99,03/24/19 20:09,"982 Jefferson St, Los Angeles, CA 90001" +175373,27in 4K Gaming Monitor,1,389.99,03/18/19 13:28,"199 Hickory St, Seattle, WA 98101" +175374,Wired Headphones,1,11.99,03/04/19 15:41,"562 12th St, San Francisco, CA 94016" +175375,AAA Batteries (4-pack),1,2.99,03/24/19 18:50,"124 Wilson St, Los Angeles, CA 90001" +175376,Lightning Charging Cable,1,14.95,03/21/19 13:03,"684 North St, Los Angeles, CA 90001" +175377,Apple Airpods Headphones,1,150,03/01/19 20:21,"792 Cedar St, Los Angeles, CA 90001" +175378,AAA Batteries (4-pack),1,2.99,03/28/19 13:38,"35 Willow St, Los Angeles, CA 90001" +175379,Google Phone,1,600,03/15/19 16:09,"329 River St, Boston, MA 02215" +175380,Bose SoundSport Headphones,1,99.99,03/05/19 14:51,"887 Ridge St, Los Angeles, CA 90001" +175381,Bose SoundSport Headphones,1,99.99,03/29/19 22:00,"421 Maple St, Los Angeles, CA 90001" +175382,Wired Headphones,1,11.99,03/07/19 13:16,"11 Dogwood St, San Francisco, CA 94016" +175383,AA Batteries (4-pack),1,3.84,03/29/19 21:27,"680 Lincoln St, Atlanta, GA 30301" +175384,Wired Headphones,1,11.99,03/15/19 19:14,"210 10th St, Los Angeles, CA 90001" +175385,AAA Batteries (4-pack),1,2.99,03/23/19 14:21,"699 Sunset St, San Francisco, CA 94016" +175386,Bose SoundSport Headphones,1,99.99,03/21/19 07:52,"23 Lake St, New York City, NY 10001" +175387,USB-C Charging Cable,1,11.95,03/07/19 17:38,"922 9th St, Atlanta, GA 30301" +175388,Google Phone,1,600,03/17/19 09:15,"95 11th St, Portland, OR 97035" +175388,USB-C Charging Cable,1,11.95,03/17/19 09:15,"95 11th St, Portland, OR 97035" +175388,Wired Headphones,1,11.99,03/17/19 09:15,"95 11th St, Portland, OR 97035" +175389,Wired Headphones,2,11.99,03/01/19 10:49,"625 10th St, San Francisco, CA 94016" +175390,AAA Batteries (4-pack),1,2.99,03/06/19 09:24,"579 Highland St, San Francisco, CA 94016" +175391,AA Batteries (4-pack),1,3.84,03/03/19 07:33,"50 Adams St, Portland, OR 97035" +175392,34in Ultrawide Monitor,1,379.99,03/20/19 14:55,"599 Johnson St, Los Angeles, CA 90001" +175393,Apple Airpods Headphones,1,150,03/31/19 16:05,"862 4th St, Los Angeles, CA 90001" +175394,20in Monitor,1,109.99,03/09/19 13:36,"413 Elm St, Boston, MA 02215" +175395,AAA Batteries (4-pack),1,2.99,03/23/19 14:12,"604 2nd St, Boston, MA 02215" +175396,Bose SoundSport Headphones,1,99.99,03/31/19 22:53,"346 Forest St, Los Angeles, CA 90001" +175397,Wired Headphones,1,11.99,03/12/19 13:39,"166 Maple St, San Francisco, CA 94016" +175398,34in Ultrawide Monitor,1,379.99,03/18/19 18:25,"647 1st St, Boston, MA 02215" +175399,AA Batteries (4-pack),1,3.84,03/02/19 14:09,"707 Madison St, San Francisco, CA 94016" +175400,Apple Airpods Headphones,1,150,03/07/19 09:57,"213 10th St, Seattle, WA 98101" +175401,Bose SoundSport Headphones,1,99.99,03/01/19 11:49,"860 Chestnut St, Portland, OR 97035" +175402,AA Batteries (4-pack),1,3.84,03/24/19 20:46,"41 Jackson St, San Francisco, CA 94016" +175403,Lightning Charging Cable,1,14.95,03/08/19 20:15,"15 7th St, San Francisco, CA 94016" +175404,Macbook Pro Laptop,1,1700,03/20/19 07:20,"881 Meadow St, Los Angeles, CA 90001" +175405,AA Batteries (4-pack),1,3.84,03/25/19 15:00,"445 11th St, New York City, NY 10001" +175406,Wired Headphones,1,11.99,03/10/19 11:42,"684 North St, Dallas, TX 75001" +175407,Apple Airpods Headphones,1,150,03/13/19 08:28,"538 5th St, San Francisco, CA 94016" +175408,USB-C Charging Cable,1,11.95,03/04/19 14:35,"406 Cherry St, San Francisco, CA 94016" +175409,Flatscreen TV,1,300,03/28/19 23:20,"143 Hill St, Los Angeles, CA 90001" +175410,Google Phone,1,600,03/06/19 09:24,"124 Wilson St, Los Angeles, CA 90001" +175411,AA Batteries (4-pack),1,3.84,03/01/19 10:35,"36 Lake St, Portland, OR 97035" +175412,AAA Batteries (4-pack),3,2.99,03/13/19 21:38,"21 Madison St, San Francisco, CA 94016" +175413,iPhone,1,700,03/15/19 01:31,"191 Cherry St, San Francisco, CA 94016" +175414,Apple Airpods Headphones,1,150,03/03/19 00:13,"689 Spruce St, Los Angeles, CA 90001" +175415,AAA Batteries (4-pack),1,2.99,03/21/19 16:54,"295 Adams St, Boston, MA 02215" +175416,AA Batteries (4-pack),1,3.84,03/18/19 09:08,"274 Ridge St, New York City, NY 10001" +175417,Wired Headphones,1,11.99,03/12/19 19:16,"551 Cedar St, Los Angeles, CA 90001" +175418,AAA Batteries (4-pack),2,2.99,03/10/19 12:48,"809 Spruce St, New York City, NY 10001" +175419,Flatscreen TV,1,300,03/08/19 10:29,"633 5th St, San Francisco, CA 94016" +175420,Macbook Pro Laptop,1,1700,03/13/19 01:02,"230 Cherry St, San Francisco, CA 94016" +175421,Wired Headphones,1,11.99,03/02/19 11:03,"301 9th St, Los Angeles, CA 90001" +175422,ThinkPad Laptop,1,999.99,03/12/19 00:05,"176 1st St, Dallas, TX 75001" +175423,Wired Headphones,1,11.99,03/18/19 10:26,"546 Lincoln St, Atlanta, GA 30301" +175424,27in 4K Gaming Monitor,1,389.99,03/06/19 12:48,"620 Jefferson St, Atlanta, GA 30301" +175425,AA Batteries (4-pack),1,3.84,03/19/19 17:08,"135 Meadow St, Austin, TX 73301" +175425,Apple Airpods Headphones,1,150,03/19/19 17:08,"135 Meadow St, Austin, TX 73301" +175426,AAA Batteries (4-pack),1,2.99,03/05/19 17:21,"13 Lakeview St, San Francisco, CA 94016" +175427,AA Batteries (4-pack),1,3.84,03/09/19 22:00,"190 10th St, San Francisco, CA 94016" +175428,Wired Headphones,1,11.99,03/06/19 09:14,"813 Ridge St, Seattle, WA 98101" +175429,Macbook Pro Laptop,1,1700,03/13/19 16:57,"283 Lake St, Portland, OR 97035" +175430,Google Phone,1,600,03/05/19 14:31,"5 Cedar St, Dallas, TX 75001" +175431,USB-C Charging Cable,1,11.95,03/16/19 15:55,"220 Highland St, Los Angeles, CA 90001" +175432,Lightning Charging Cable,1,14.95,03/07/19 21:14,"809 6th St, New York City, NY 10001" +175433,Apple Airpods Headphones,1,150,03/31/19 10:38,"378 Adams St, Dallas, TX 75001" +175434,27in FHD Monitor,1,149.99,03/26/19 14:18,"850 Wilson St, New York City, NY 10001" +175435,Bose SoundSport Headphones,1,99.99,03/30/19 22:52,"644 9th St, Boston, MA 02215" +175436,20in Monitor,1,109.99,03/12/19 18:02,"926 Maple St, New York City, NY 10001" +175437,Flatscreen TV,1,300,03/26/19 20:46,"444 Spruce St, Los Angeles, CA 90001" +175438,27in 4K Gaming Monitor,1,389.99,03/27/19 12:40,"848 Meadow St, Seattle, WA 98101" +175439,USB-C Charging Cable,1,11.95,03/09/19 20:27,"611 Main St, San Francisco, CA 94016" +175440,Vareebadd Phone,1,400,03/16/19 11:24,"82 Wilson St, Los Angeles, CA 90001" +175441,Lightning Charging Cable,2,14.95,03/02/19 11:23,"945 Willow St, Los Angeles, CA 90001" +175442,USB-C Charging Cable,1,11.95,03/17/19 08:49,"306 10th St, Seattle, WA 98101" +175443,AAA Batteries (4-pack),3,2.99,03/08/19 14:32,"626 West St, Boston, MA 02215" +175444,Lightning Charging Cable,1,14.95,03/23/19 19:27,"880 Ridge St, Boston, MA 02215" +175445,USB-C Charging Cable,1,11.95,03/09/19 19:05,"19 Pine St, Dallas, TX 75001" +175446,USB-C Charging Cable,1,11.95,03/03/19 20:03,"260 Madison St, Dallas, TX 75001" +175447,AAA Batteries (4-pack),1,2.99,03/24/19 09:55,"909 Willow St, New York City, NY 10001" +175448,AA Batteries (4-pack),1,3.84,03/22/19 15:14,"640 Main St, Atlanta, GA 30301" +175449,Wired Headphones,1,11.99,03/02/19 12:26,"272 Johnson St, New York City, NY 10001" +175450,AA Batteries (4-pack),1,3.84,03/30/19 17:51,"924 5th St, Atlanta, GA 30301" +175451,Wired Headphones,1,11.99,03/31/19 18:58,"555 13th St, New York City, NY 10001" +175452,USB-C Charging Cable,1,11.95,03/29/19 22:48,"81 Adams St, New York City, NY 10001" +175453,27in FHD Monitor,1,149.99,03/16/19 11:22,"716 9th St, Los Angeles, CA 90001" +175454,AAA Batteries (4-pack),1,2.99,03/04/19 07:30,"827 West St, New York City, NY 10001" +175455,USB-C Charging Cable,2,11.95,03/09/19 19:46,"737 Cherry St, New York City, NY 10001" +175456,Bose SoundSport Headphones,1,99.99,03/03/19 16:29,"469 2nd St, Atlanta, GA 30301" +175457,Vareebadd Phone,1,400,03/15/19 11:11,"160 Main St, New York City, NY 10001" +175458,ThinkPad Laptop,1,999.99,03/09/19 14:04,"780 8th St, Dallas, TX 75001" +175459,iPhone,1,700,03/18/19 19:11,"655 Park St, San Francisco, CA 94016" +175460,27in FHD Monitor,1,149.99,03/16/19 13:45,"388 Center St, New York City, NY 10001" +175461,Wired Headphones,1,11.99,03/10/19 10:11,"6 Maple St, Dallas, TX 75001" +175462,Bose SoundSport Headphones,1,99.99,03/02/19 10:34,"186 Chestnut St, Austin, TX 73301" +175463,USB-C Charging Cable,1,11.95,03/26/19 13:24,"759 5th St, Seattle, WA 98101" +175464,AA Batteries (4-pack),1,3.84,03/30/19 14:54,"800 8th St, Seattle, WA 98101" +175465,AA Batteries (4-pack),1,3.84,03/18/19 01:52,"486 Madison St, Dallas, TX 75001" +175466,Wired Headphones,1,11.99,03/13/19 16:13,"735 South St, Boston, MA 02215" +175467,AAA Batteries (4-pack),1,2.99,03/06/19 19:18,"66 Lincoln St, Los Angeles, CA 90001" +175468,Apple Airpods Headphones,1,150,03/27/19 15:12,"277 Pine St, San Francisco, CA 94016" +175469,AAA Batteries (4-pack),2,2.99,03/25/19 22:40,"892 Cedar St, San Francisco, CA 94016" +175470,Wired Headphones,1,11.99,03/02/19 09:13,"320 2nd St, Atlanta, GA 30301" +175471,Bose SoundSport Headphones,1,99.99,03/08/19 13:34,"948 Sunset St, Boston, MA 02215" +175472,AA Batteries (4-pack),1,3.84,03/03/19 19:44,"646 14th St, Seattle, WA 98101" +175473,Google Phone,1,600,03/04/19 14:54,"549 6th St, San Francisco, CA 94016" +175474,Flatscreen TV,1,300,03/09/19 12:00,"150 Johnson St, Austin, TX 73301" +175475,USB-C Charging Cable,1,11.95,03/11/19 17:10,"737 9th St, San Francisco, CA 94016" +175476,34in Ultrawide Monitor,1,379.99,03/19/19 15:26,"473 Adams St, Austin, TX 73301" +175477,AA Batteries (4-pack),1,3.84,03/11/19 11:21,"893 Sunset St, New York City, NY 10001" +175478,AA Batteries (4-pack),1,3.84,03/05/19 10:21,"538 Center St, Los Angeles, CA 90001" +175479,27in 4K Gaming Monitor,1,389.99,03/24/19 16:19,"695 6th St, Boston, MA 02215" +175480,Lightning Charging Cable,1,14.95,03/25/19 15:07,"304 Cherry St, Boston, MA 02215" +175481,34in Ultrawide Monitor,1,379.99,03/28/19 19:32,"726 Cherry St, Portland, OR 97035" +175482,AAA Batteries (4-pack),1,2.99,03/17/19 07:47,"243 Center St, San Francisco, CA 94016" +175483,Wired Headphones,1,11.99,03/19/19 02:20,"548 West St, Atlanta, GA 30301" +175484,27in FHD Monitor,1,149.99,03/06/19 15:56,"729 Hickory St, New York City, NY 10001" +175485,27in FHD Monitor,1,149.99,03/27/19 10:01,"417 1st St, New York City, NY 10001" +175486,27in 4K Gaming Monitor,1,389.99,03/30/19 19:38,"405 Jefferson St, San Francisco, CA 94016" +175487,20in Monitor,1,109.99,03/01/19 11:34,"364 Maple St, Atlanta, GA 30301" +175488,Bose SoundSport Headphones,1,99.99,03/27/19 18:30,"594 Walnut St, Los Angeles, CA 90001" +175489,AA Batteries (4-pack),2,3.84,03/08/19 14:46,"308 Meadow St, Austin, TX 73301" +175490,Bose SoundSport Headphones,1,99.99,03/22/19 07:53,"945 Hill St, San Francisco, CA 94016" +175491,Google Phone,1,600,03/30/19 12:43,"114 Sunset St, New York City, NY 10001" +175491,Wired Headphones,1,11.99,03/30/19 12:43,"114 Sunset St, New York City, NY 10001" +175492,AA Batteries (4-pack),2,3.84,03/22/19 14:34,"731 Elm St, Seattle, WA 98101" +175493,Lightning Charging Cable,1,14.95,03/18/19 12:17,"692 Forest St, Dallas, TX 75001" +175494,Wired Headphones,1,11.99,03/24/19 21:22,"237 Elm St, San Francisco, CA 94016" +175495,AAA Batteries (4-pack),1,2.99,03/15/19 14:27,"849 Madison St, Atlanta, GA 30301" +175496,Apple Airpods Headphones,1,150,03/16/19 18:57,"96 Walnut St, Atlanta, GA 30301" +175497,Lightning Charging Cable,1,14.95,03/18/19 00:12,"108 4th St, San Francisco, CA 94016" +175498,Apple Airpods Headphones,1,150,03/19/19 20:49,"482 Hill St, Los Angeles, CA 90001" +175499,USB-C Charging Cable,1,11.95,03/26/19 12:03,"486 Elm St, San Francisco, CA 94016" +175500,Macbook Pro Laptop,1,1700,03/24/19 07:15,"83 Hill St, San Francisco, CA 94016" +175501,USB-C Charging Cable,1,11.95,03/29/19 21:07,"630 South St, San Francisco, CA 94016" +175502,27in 4K Gaming Monitor,1,389.99,03/18/19 08:37,"715 Dogwood St, Los Angeles, CA 90001" +175503,Bose SoundSport Headphones,1,99.99,03/22/19 14:20,"951 Lake St, Portland, OR 97035" +175504,Wired Headphones,1,11.99,03/25/19 12:05,"517 North St, New York City, NY 10001" +175505,Wired Headphones,1,11.99,03/25/19 22:26,"762 8th St, New York City, NY 10001" +175506,Wired Headphones,1,11.99,03/31/19 21:56,"513 Chestnut St, New York City, NY 10001" +175507,27in FHD Monitor,1,149.99,03/03/19 07:55,"479 Hickory St, Atlanta, GA 30301" +175508,Wired Headphones,1,11.99,03/05/19 23:35,"592 Main St, Boston, MA 02215" +175509,AA Batteries (4-pack),1,3.84,03/14/19 13:05,"84 Cherry St, New York City, NY 10001" +175510,AA Batteries (4-pack),1,3.84,03/06/19 12:25,"755 Forest St, Austin, TX 73301" +175511,Vareebadd Phone,1,400,03/03/19 22:10,"287 13th St, Austin, TX 73301" +175512,AAA Batteries (4-pack),3,2.99,03/22/19 22:53,"228 Dogwood St, New York City, NY 10001" +175513,AA Batteries (4-pack),2,3.84,03/09/19 07:36,"248 Lincoln St, Atlanta, GA 30301" +175513,Lightning Charging Cable,1,14.95,03/09/19 07:36,"248 Lincoln St, Atlanta, GA 30301" +175514,Wired Headphones,1,11.99,03/23/19 09:24,"580 Chestnut St, San Francisco, CA 94016" +175515,Wired Headphones,1,11.99,03/09/19 00:38,"115 Johnson St, New York City, NY 10001" +175516,Bose SoundSport Headphones,1,99.99,03/26/19 20:28,"932 Cherry St, New York City, NY 10001" +175517,AAA Batteries (4-pack),1,2.99,03/24/19 18:31,"576 13th St, Dallas, TX 75001" +175517,Apple Airpods Headphones,1,150,03/24/19 18:31,"576 13th St, Dallas, TX 75001" +175518,Flatscreen TV,1,300,03/15/19 19:39,"632 11th St, Seattle, WA 98101" +175519,AA Batteries (4-pack),2,3.84,03/22/19 21:53,"631 Highland St, Austin, TX 73301" +175520,Apple Airpods Headphones,1,150,03/04/19 16:22,"302 11th St, Los Angeles, CA 90001" +175521,USB-C Charging Cable,1,11.95,03/16/19 17:49,"399 1st St, San Francisco, CA 94016" +175522,AAA Batteries (4-pack),1,2.99,03/25/19 09:53,"553 Adams St, Portland, ME 04101" +175523,AAA Batteries (4-pack),1,2.99,03/29/19 13:38,"91 Lakeview St, Dallas, TX 75001" +175524,AA Batteries (4-pack),2,3.84,03/08/19 01:47,"129 13th St, Boston, MA 02215" +175525,Wired Headphones,1,11.99,03/21/19 13:19,"458 Main St, Boston, MA 02215" +175526,iPhone,1,700,03/16/19 06:27,"418 Center St, Atlanta, GA 30301" +175527,Wired Headphones,1,11.99,03/07/19 20:39,"227 Center St, Portland, ME 04101" +175528,Wired Headphones,2,11.99,03/15/19 19:49,"836 West St, San Francisco, CA 94016" +175528,Bose SoundSport Headphones,2,99.99,03/15/19 19:49,"836 West St, San Francisco, CA 94016" +175529,Lightning Charging Cable,1,14.95,03/24/19 09:40,"701 Jefferson St, San Francisco, CA 94016" +175530,AA Batteries (4-pack),2,3.84,03/21/19 21:13,"356 Jackson St, New York City, NY 10001" +175531,Wired Headphones,1,11.99,03/31/19 22:55,"457 Lake St, Dallas, TX 75001" +175532,AAA Batteries (4-pack),1,2.99,03/04/19 20:40,"73 Chestnut St, Boston, MA 02215" +175533,AA Batteries (4-pack),1,3.84,03/03/19 13:45,"747 Hill St, Seattle, WA 98101" +175534,Wired Headphones,1,11.99,03/13/19 22:19,"413 Madison St, San Francisco, CA 94016" +175535,27in 4K Gaming Monitor,1,389.99,03/31/19 21:53,"904 Forest St, San Francisco, CA 94016" +175536,AA Batteries (4-pack),1,3.84,03/26/19 21:40,"461 Pine St, San Francisco, CA 94016" +175537,27in 4K Gaming Monitor,1,389.99,03/18/19 15:56,"96 13th St, New York City, NY 10001" +175538,Wired Headphones,1,11.99,03/03/19 11:18,"998 Jefferson St, San Francisco, CA 94016" +175539,Apple Airpods Headphones,1,150,03/16/19 21:28,"63 4th St, San Francisco, CA 94016" +175540,Vareebadd Phone,1,400,03/22/19 19:00,"37 Maple St, Austin, TX 73301" +175541,Wired Headphones,1,11.99,03/05/19 20:39,"542 2nd St, New York City, NY 10001" +175542,AAA Batteries (4-pack),1,2.99,03/12/19 18:22,"110 Lincoln St, New York City, NY 10001" +175543,27in FHD Monitor,1,149.99,03/26/19 15:47,"432 West St, San Francisco, CA 94016" +175544,AAA Batteries (4-pack),2,2.99,03/21/19 10:12,"57 Main St, Seattle, WA 98101" +175545,Apple Airpods Headphones,1,150,03/15/19 18:25,"797 Highland St, Los Angeles, CA 90001" +175546,AAA Batteries (4-pack),3,2.99,03/08/19 16:42,"650 Sunset St, Dallas, TX 75001" +175547,Bose SoundSport Headphones,1,99.99,03/22/19 20:32,"16 1st St, Dallas, TX 75001" +175548,Flatscreen TV,1,300,03/31/19 17:10,"587 Elm St, Atlanta, GA 30301" +175549,Wired Headphones,1,11.99,03/31/19 18:37,"692 Washington St, San Francisco, CA 94016" +175550,20in Monitor,1,109.99,03/27/19 14:52,"147 River St, Seattle, WA 98101" +175551,Wired Headphones,1,11.99,03/31/19 19:05,"925 5th St, Los Angeles, CA 90001" +175552,Flatscreen TV,1,300,03/09/19 17:24,"660 5th St, Los Angeles, CA 90001" +175553,AA Batteries (4-pack),1,3.84,03/06/19 07:14,"725 Park St, Atlanta, GA 30301" +175554,Macbook Pro Laptop,1,1700,03/02/19 16:58,"740 4th St, Los Angeles, CA 90001" +175555,Lightning Charging Cable,1,14.95,03/29/19 17:10,"346 Madison St, San Francisco, CA 94016" +175556,Lightning Charging Cable,1,14.95,03/13/19 07:13,"28 8th St, New York City, NY 10001" +175557,34in Ultrawide Monitor,1,379.99,03/08/19 10:36,"674 9th St, Dallas, TX 75001" +175558,AA Batteries (4-pack),1,3.84,03/12/19 10:46,"963 Lincoln St, San Francisco, CA 94016" +175559,Apple Airpods Headphones,1,150,03/22/19 20:28,"728 Church St, Los Angeles, CA 90001" +175560,AA Batteries (4-pack),1,3.84,03/06/19 18:26,"863 7th St, Los Angeles, CA 90001" +175561,20in Monitor,1,109.99,03/24/19 20:20,"184 Wilson St, Portland, OR 97035" +175562,AA Batteries (4-pack),1,3.84,03/10/19 14:33,"78 Park St, New York City, NY 10001" +175563,27in FHD Monitor,1,149.99,03/19/19 18:01,"898 Johnson St, Boston, MA 02215" +175564,Apple Airpods Headphones,1,150,03/30/19 18:04,"746 6th St, Boston, MA 02215" +175565,Macbook Pro Laptop,1,1700,03/18/19 19:17,"314 Center St, Seattle, WA 98101" +175566,USB-C Charging Cable,1,11.95,03/02/19 23:42,"451 Meadow St, New York City, NY 10001" +175567,Lightning Charging Cable,1,14.95,03/11/19 15:57,"18 2nd St, Seattle, WA 98101" +175568,Wired Headphones,1,11.99,03/11/19 11:37,"205 8th St, Austin, TX 73301" +175569,USB-C Charging Cable,1,11.95,03/06/19 11:16,"190 Hill St, Boston, MA 02215" +175570,Wired Headphones,1,11.99,03/13/19 16:58,"647 13th St, Boston, MA 02215" +175571,Wired Headphones,5,11.99,03/18/19 18:24,"934 Wilson St, Dallas, TX 75001" +175572,AA Batteries (4-pack),1,3.84,03/12/19 01:44,"564 North St, San Francisco, CA 94016" +175573,Lightning Charging Cable,1,14.95,03/31/19 17:10,"24 Center St, San Francisco, CA 94016" +175574,Lightning Charging Cable,2,14.95,03/28/19 07:31,"689 Lakeview St, Dallas, TX 75001" +175575,AA Batteries (4-pack),1,3.84,03/03/19 14:15,"521 12th St, Los Angeles, CA 90001" +175576,Macbook Pro Laptop,1,1700,03/23/19 10:28,"475 Maple St, Los Angeles, CA 90001" +175577,Macbook Pro Laptop,1,1700,03/06/19 14:51,"868 Chestnut St, Los Angeles, CA 90001" +175578,Wired Headphones,1,11.99,03/23/19 00:16,"764 13th St, Boston, MA 02215" +175579,Apple Airpods Headphones,1,150,03/31/19 13:04,"358 1st St, San Francisco, CA 94016" +175580,Bose SoundSport Headphones,1,99.99,03/28/19 15:10,"832 Highland St, Austin, TX 73301" +175581,27in FHD Monitor,1,149.99,03/04/19 14:53,"466 Madison St, Atlanta, GA 30301" +175582,20in Monitor,1,109.99,03/11/19 20:06,"821 Cedar St, San Francisco, CA 94016" +175583,Wired Headphones,1,11.99,03/16/19 11:33,"417 Madison St, Los Angeles, CA 90001" +175584,Wired Headphones,2,11.99,03/25/19 22:33,"767 Jefferson St, San Francisco, CA 94016" +175585,27in FHD Monitor,1,149.99,03/27/19 12:39,"447 Jefferson St, New York City, NY 10001" +175586,USB-C Charging Cable,1,11.95,03/11/19 18:41,"107 Cedar St, New York City, NY 10001" +175587,ThinkPad Laptop,1,999.99,03/03/19 17:03,"30 Ridge St, Seattle, WA 98101" +175588,USB-C Charging Cable,1,11.95,03/28/19 14:47,"809 Main St, Boston, MA 02215" +175589,Flatscreen TV,1,300,03/21/19 21:40,"995 Johnson St, New York City, NY 10001" +175590,Flatscreen TV,1,300,03/16/19 14:38,"525 Forest St, Los Angeles, CA 90001" +175591,USB-C Charging Cable,1,11.95,03/12/19 21:57,"22 Ridge St, New York City, NY 10001" +175592,20in Monitor,1,109.99,03/19/19 13:19,"914 10th St, Seattle, WA 98101" +175593,Flatscreen TV,1,300,03/12/19 09:57,"326 Dogwood St, San Francisco, CA 94016" +175594,AA Batteries (4-pack),2,3.84,03/23/19 21:45,"548 Center St, Portland, ME 04101" +175595,ThinkPad Laptop,1,999.99,03/04/19 13:27,"289 Main St, New York City, NY 10001" +175596,Bose SoundSport Headphones,1,99.99,03/08/19 13:49,"504 1st St, Boston, MA 02215" +175597,AAA Batteries (4-pack),1,2.99,03/09/19 22:28,"123 8th St, San Francisco, CA 94016" +175598,Lightning Charging Cable,1,14.95,03/14/19 15:15,"924 Highland St, Boston, MA 02215" +175599,Lightning Charging Cable,1,14.95,03/31/19 14:44,"755 2nd St, Dallas, TX 75001" +175600,AA Batteries (4-pack),1,3.84,03/23/19 12:46,"667 North St, Dallas, TX 75001" +175601,AA Batteries (4-pack),1,3.84,03/30/19 18:34,"558 Sunset St, Portland, OR 97035" +175602,Lightning Charging Cable,1,14.95,03/03/19 11:01,"176 South St, Dallas, TX 75001" +175603,Lightning Charging Cable,1,14.95,03/31/19 09:10,"637 Hill St, San Francisco, CA 94016" +175604,ThinkPad Laptop,1,999.99,03/29/19 14:32,"21 7th St, Los Angeles, CA 90001" +175605,Bose SoundSport Headphones,1,99.99,03/11/19 21:45,"792 Cherry St, San Francisco, CA 94016" +175606,AAA Batteries (4-pack),1,2.99,03/02/19 05:03,"886 8th St, San Francisco, CA 94016" +175607,AA Batteries (4-pack),1,3.84,03/21/19 13:43,"439 Spruce St, Los Angeles, CA 90001" +175608,Lightning Charging Cable,1,14.95,03/30/19 14:11,"791 2nd St, Dallas, TX 75001" +175609,AA Batteries (4-pack),2,3.84,03/06/19 15:48,"336 Highland St, San Francisco, CA 94016" +175610,Wired Headphones,1,11.99,03/31/19 21:28,"7 Adams St, San Francisco, CA 94016" +175611,Apple Airpods Headphones,1,150,03/13/19 15:59,"608 Washington St, Dallas, TX 75001" +175612,Wired Headphones,1,11.99,03/03/19 11:30,"571 8th St, San Francisco, CA 94016" +175613,Apple Airpods Headphones,1,150,03/14/19 21:05,"155 Meadow St, San Francisco, CA 94016" +175614,Lightning Charging Cable,1,14.95,03/08/19 16:14,"881 Lake St, New York City, NY 10001" +175615,AA Batteries (4-pack),1,3.84,03/20/19 14:50,"648 Cherry St, San Francisco, CA 94016" +175616,20in Monitor,1,109.99,03/02/19 07:10,"130 Chestnut St, Atlanta, GA 30301" +175617,Lightning Charging Cable,1,14.95,03/29/19 20:29,"347 5th St, Los Angeles, CA 90001" +175618,USB-C Charging Cable,1,11.95,03/17/19 21:28,"702 5th St, Austin, TX 73301" +175619,Apple Airpods Headphones,1,150,03/13/19 19:36,"831 Forest St, San Francisco, CA 94016" +175620,iPhone,1,700,03/08/19 21:17,"623 Church St, Portland, ME 04101" +175621,USB-C Charging Cable,1,11.95,03/02/19 21:55,"686 7th St, Boston, MA 02215" +175622,34in Ultrawide Monitor,1,379.99,03/24/19 20:29,"387 Hickory St, Los Angeles, CA 90001" +175623,Bose SoundSport Headphones,1,99.99,03/14/19 23:33,"675 5th St, New York City, NY 10001" +175624,27in 4K Gaming Monitor,1,389.99,03/27/19 19:57,"130 Wilson St, San Francisco, CA 94016" +175625,Apple Airpods Headphones,1,150,03/23/19 20:14,"276 Madison St, Los Angeles, CA 90001" +175626,Flatscreen TV,1,300,03/17/19 19:48,"735 Elm St, New York City, NY 10001" +175627,Wired Headphones,1,11.99,03/25/19 17:08,"75 Sunset St, Atlanta, GA 30301" +175628,Google Phone,1,600,03/22/19 12:24,"847 Cherry St, Los Angeles, CA 90001" +175628,USB-C Charging Cable,1,11.95,03/22/19 12:24,"847 Cherry St, Los Angeles, CA 90001" +175629,Google Phone,1,600,03/20/19 10:06,"104 9th St, Portland, ME 04101" +175630,AAA Batteries (4-pack),3,2.99,03/23/19 19:25,"473 Lincoln St, San Francisco, CA 94016" +175631,AA Batteries (4-pack),1,3.84,03/19/19 19:13,"479 Adams St, Dallas, TX 75001" +175632,Lightning Charging Cable,1,14.95,03/12/19 16:04,"316 Meadow St, Portland, OR 97035" +175633,AA Batteries (4-pack),1,3.84,03/16/19 19:01,"982 Chestnut St, Portland, OR 97035" +175634,USB-C Charging Cable,1,11.95,03/25/19 19:18,"912 4th St, Atlanta, GA 30301" +175635,Lightning Charging Cable,1,14.95,03/17/19 16:00,"397 River St, Dallas, TX 75001" +175636,AA Batteries (4-pack),1,3.84,03/08/19 09:37,"938 Ridge St, Boston, MA 02215" +175637,AAA Batteries (4-pack),1,2.99,03/19/19 07:48,"633 Ridge St, New York City, NY 10001" +175638,AA Batteries (4-pack),1,3.84,03/31/19 18:34,"944 Main St, New York City, NY 10001" +175639,Apple Airpods Headphones,1,150,03/12/19 17:50,"342 Chestnut St, Los Angeles, CA 90001" +175640,27in FHD Monitor,1,149.99,03/28/19 16:16,"281 Spruce St, Portland, OR 97035" +175641,27in FHD Monitor,1,149.99,03/05/19 14:43,"270 Washington St, San Francisco, CA 94016" +175642,Vareebadd Phone,1,400,03/07/19 08:46,"971 8th St, Boston, MA 02215" +175642,USB-C Charging Cable,1,11.95,03/07/19 08:46,"971 8th St, Boston, MA 02215" +175643,Lightning Charging Cable,1,14.95,03/14/19 15:38,"89 Hill St, Boston, MA 02215" +175644,USB-C Charging Cable,1,11.95,03/03/19 23:34,"797 Center St, Seattle, WA 98101" +175645,AA Batteries (4-pack),1,3.84,03/19/19 05:58,"721 Church St, Dallas, TX 75001" +175646,USB-C Charging Cable,1,11.95,03/27/19 13:32,"733 Pine St, Atlanta, GA 30301" +175647,AAA Batteries (4-pack),1,2.99,03/22/19 15:54,"151 2nd St, Los Angeles, CA 90001" +175648,iPhone,1,700,03/30/19 11:14,"126 Madison St, Portland, OR 97035" +175649,iPhone,1,700,03/08/19 00:47,"322 2nd St, Los Angeles, CA 90001" +175649,AAA Batteries (4-pack),1,2.99,03/08/19 00:47,"322 2nd St, Los Angeles, CA 90001" +175650,27in 4K Gaming Monitor,1,389.99,03/09/19 20:12,"817 2nd St, Los Angeles, CA 90001" +175651,Wired Headphones,1,11.99,03/08/19 11:58,"644 12th St, Austin, TX 73301" +175652,Bose SoundSport Headphones,1,99.99,03/04/19 19:33,"667 13th St, Los Angeles, CA 90001" +175653,Flatscreen TV,1,300,03/19/19 12:34,"699 5th St, Los Angeles, CA 90001" +175654,Bose SoundSport Headphones,1,99.99,03/05/19 20:41,"450 Adams St, Seattle, WA 98101" +175655,USB-C Charging Cable,1,11.95,03/07/19 12:45,"680 West St, New York City, NY 10001" +175656,Wired Headphones,1,11.99,03/09/19 13:48,"521 Church St, New York City, NY 10001" +175657,27in 4K Gaming Monitor,1,389.99,03/08/19 15:35,"734 River St, Boston, MA 02215" +175658,Wired Headphones,1,11.99,03/07/19 13:10,"313 10th St, New York City, NY 10001" +175659,Flatscreen TV,1,300,03/14/19 20:42,"377 2nd St, Portland, OR 97035" +175660,27in 4K Gaming Monitor,1,389.99,03/10/19 08:29,"183 13th St, Atlanta, GA 30301" +175661,AAA Batteries (4-pack),1,2.99,03/03/19 14:25,"264 Cherry St, Atlanta, GA 30301" +175662,Lightning Charging Cable,1,14.95,03/13/19 06:55,"352 Spruce St, San Francisco, CA 94016" +175663,AAA Batteries (4-pack),1,2.99,03/12/19 14:13,"307 7th St, New York City, NY 10001" +175664,Wired Headphones,1,11.99,03/25/19 14:22,"671 1st St, San Francisco, CA 94016" +175665,Macbook Pro Laptop,1,1700,03/24/19 13:02,"877 9th St, San Francisco, CA 94016" +175666,USB-C Charging Cable,1,11.95,03/24/19 18:37,"638 Meadow St, Seattle, WA 98101" +175666,USB-C Charging Cable,1,11.95,03/24/19 18:37,"638 Meadow St, Seattle, WA 98101" +175667,Macbook Pro Laptop,1,1700,03/06/19 17:38,"295 Park St, San Francisco, CA 94016" +175668,Apple Airpods Headphones,1,150,03/04/19 15:19,"247 Jefferson St, San Francisco, CA 94016" +175669,Apple Airpods Headphones,1,150,03/23/19 16:37,"716 11th St, Portland, OR 97035" +175670,Apple Airpods Headphones,1,150,03/31/19 15:40,"961 Center St, Seattle, WA 98101" +175671,Lightning Charging Cable,1,14.95,03/10/19 16:52,"597 West St, San Francisco, CA 94016" +175672,Google Phone,1,600,03/26/19 17:59,"635 8th St, New York City, NY 10001" +175672,Wired Headphones,1,11.99,03/26/19 17:59,"635 8th St, New York City, NY 10001" +175673,ThinkPad Laptop,1,999.99,03/12/19 14:52,"598 Washington St, Los Angeles, CA 90001" +175674,AAA Batteries (4-pack),1,2.99,03/01/19 20:34,"614 Park St, Austin, TX 73301" +175675,Lightning Charging Cable,1,14.95,03/05/19 09:11,"171 Cedar St, Seattle, WA 98101" +175676,Lightning Charging Cable,2,14.95,03/15/19 13:12,"714 Church St, Los Angeles, CA 90001" +175677,Apple Airpods Headphones,1,150,03/09/19 08:40,"657 Meadow St, San Francisco, CA 94016" +175678,Apple Airpods Headphones,1,150,03/04/19 19:03,"59 Park St, Boston, MA 02215" +175679,27in FHD Monitor,1,149.99,03/11/19 11:48,"291 Johnson St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +175680,Apple Airpods Headphones,1,150,03/13/19 10:48,"825 Ridge St, San Francisco, CA 94016" +175681,Lightning Charging Cable,1,14.95,03/23/19 22:26,"267 14th St, San Francisco, CA 94016" +175682,27in 4K Gaming Monitor,1,389.99,03/18/19 21:31,"185 Sunset St, Portland, ME 04101" +175683,Lightning Charging Cable,1,14.95,03/23/19 04:03,"781 Jackson St, Los Angeles, CA 90001" +175684,Wired Headphones,1,11.99,03/26/19 14:28,"254 Adams St, San Francisco, CA 94016" +175685,Wired Headphones,1,11.99,03/03/19 00:44,"990 West St, Dallas, TX 75001" +175686,AAA Batteries (4-pack),1,2.99,03/29/19 13:17,"259 Elm St, San Francisco, CA 94016" +175687,20in Monitor,1,109.99,03/12/19 23:22,"931 6th St, San Francisco, CA 94016" +175688,Macbook Pro Laptop,1,1700,03/19/19 08:36,"832 Main St, Atlanta, GA 30301" +175689,Lightning Charging Cable,1,14.95,03/03/19 09:36,"706 Spruce St, San Francisco, CA 94016" +175690,Wired Headphones,1,11.99,03/29/19 04:03,"16 13th St, Boston, MA 02215" +175691,USB-C Charging Cable,1,11.95,03/21/19 06:56,"714 South St, Boston, MA 02215" +175692,USB-C Charging Cable,1,11.95,03/28/19 17:15,"103 7th St, San Francisco, CA 94016" +175693,iPhone,1,700,03/06/19 00:27,"976 Walnut St, San Francisco, CA 94016" +175694,USB-C Charging Cable,1,11.95,03/10/19 19:23,"501 Willow St, Los Angeles, CA 90001" +175695,USB-C Charging Cable,1,11.95,03/08/19 13:20,"136 6th St, Portland, ME 04101" +175696,AA Batteries (4-pack),1,3.84,03/08/19 20:22,"229 Center St, New York City, NY 10001" +175697,Flatscreen TV,1,300,03/11/19 22:34,"667 1st St, Seattle, WA 98101" +175698,AA Batteries (4-pack),2,3.84,03/15/19 23:21,"575 Lakeview St, Los Angeles, CA 90001" +175699,Lightning Charging Cable,1,14.95,03/04/19 12:15,"254 10th St, Los Angeles, CA 90001" +175700,27in FHD Monitor,1,149.99,03/13/19 12:58,"916 1st St, Boston, MA 02215" +175701,Lightning Charging Cable,1,14.95,03/07/19 20:21,"684 Church St, Dallas, TX 75001" +175702,iPhone,1,700,03/19/19 20:26,"691 Main St, Boston, MA 02215" +175703,Wired Headphones,1,11.99,03/26/19 06:43,"949 Center St, Los Angeles, CA 90001" +175704,Vareebadd Phone,1,400,03/03/19 21:02,"411 Hill St, Atlanta, GA 30301" +175705,Wired Headphones,1,11.99,03/05/19 13:43,"694 Jackson St, Austin, TX 73301" +175706,Bose SoundSport Headphones,1,99.99,03/09/19 10:36,"897 Park St, San Francisco, CA 94016" +175707,34in Ultrawide Monitor,1,379.99,03/29/19 20:56,"652 Lakeview St, Los Angeles, CA 90001" +175708,Macbook Pro Laptop,1,1700,03/31/19 19:14,"290 Dogwood St, Los Angeles, CA 90001" +175709,Google Phone,1,600,03/26/19 21:13,"173 10th St, New York City, NY 10001" +175710,ThinkPad Laptop,1,999.99,03/15/19 12:44,"522 River St, Los Angeles, CA 90001" +175711,Vareebadd Phone,1,400,03/12/19 16:05,"77 Spruce St, San Francisco, CA 94016" +175712,27in 4K Gaming Monitor,1,389.99,03/26/19 06:00,"892 7th St, Dallas, TX 75001" +175713,Bose SoundSport Headphones,1,99.99,03/23/19 13:46,"177 Hickory St, Boston, MA 02215" +175714,Lightning Charging Cable,1,14.95,03/11/19 11:47,"215 Cherry St, Los Angeles, CA 90001" +175715,27in FHD Monitor,1,149.99,03/05/19 19:19,"839 Dogwood St, Boston, MA 02215" +175716,LG Washing Machine,1,600.0,03/02/19 07:38,"292 Elm St, Dallas, TX 75001" +175717,AAA Batteries (4-pack),1,2.99,03/24/19 13:20,"115 Maple St, Boston, MA 02215" +175718,USB-C Charging Cable,1,11.95,03/10/19 10:38,"302 Washington St, San Francisco, CA 94016" +175719,20in Monitor,1,109.99,03/29/19 17:23,"307 Sunset St, Dallas, TX 75001" +175720,AAA Batteries (4-pack),1,2.99,03/14/19 06:38,"699 Walnut St, New York City, NY 10001" +175721,LG Washing Machine,1,600.0,03/15/19 10:03,"558 Park St, Seattle, WA 98101" +175722,AAA Batteries (4-pack),3,2.99,03/11/19 03:12,"249 Chestnut St, New York City, NY 10001" +175723,AAA Batteries (4-pack),1,2.99,03/07/19 19:46,"942 South St, San Francisco, CA 94016" +175724,Bose SoundSport Headphones,1,99.99,03/21/19 18:17,"835 Ridge St, San Francisco, CA 94016" +175725,Apple Airpods Headphones,1,150,03/22/19 21:19,"844 Willow St, Los Angeles, CA 90001" +175726,Bose SoundSport Headphones,1,99.99,04/01/19 00:20,"333 2nd St, Los Angeles, CA 90001" +,,,,, +175727,AA Batteries (4-pack),1,3.84,03/19/19 14:56,"768 11th St, New York City, NY 10001" +175728,USB-C Charging Cable,2,11.95,03/28/19 06:29,"426 Highland St, Boston, MA 02215" +175729,20in Monitor,1,109.99,03/13/19 00:32,"300 Ridge St, Boston, MA 02215" +175730,ThinkPad Laptop,1,999.99,03/21/19 19:33,"946 Lakeview St, Los Angeles, CA 90001" +175731,iPhone,1,700,03/10/19 11:48,"651 South St, Portland, OR 97035" +175732,Google Phone,1,600,03/22/19 18:17,"660 Dogwood St, San Francisco, CA 94016" +175733,34in Ultrawide Monitor,1,379.99,03/30/19 13:53,"343 7th St, New York City, NY 10001" +175734,USB-C Charging Cable,1,11.95,03/22/19 08:40,"191 Center St, Boston, MA 02215" +175735,Wired Headphones,1,11.99,03/03/19 20:13,"238 Dogwood St, Austin, TX 73301" +175736,AA Batteries (4-pack),1,3.84,03/15/19 22:15,"792 Forest St, Austin, TX 73301" +175737,20in Monitor,1,109.99,03/14/19 19:51,"426 Elm St, Portland, OR 97035" +175738,20in Monitor,1,109.99,03/31/19 10:47,"266 Center St, San Francisco, CA 94016" +175739,ThinkPad Laptop,1,999.99,03/01/19 22:14,"436 4th St, San Francisco, CA 94016" +175740,20in Monitor,1,109.99,03/03/19 12:57,"665 Chestnut St, San Francisco, CA 94016" +175741,Apple Airpods Headphones,1,150,03/24/19 20:48,"303 Main St, New York City, NY 10001" +175742,Google Phone,1,600,03/27/19 17:33,"510 Jefferson St, Los Angeles, CA 90001" +175742,USB-C Charging Cable,1,11.95,03/27/19 17:33,"510 Jefferson St, Los Angeles, CA 90001" +175743,Lightning Charging Cable,1,14.95,03/15/19 10:07,"394 Cedar St, New York City, NY 10001" +175744,Wired Headphones,1,11.99,03/03/19 18:51,"190 9th St, Atlanta, GA 30301" +175745,AAA Batteries (4-pack),1,2.99,03/24/19 09:26,"179 Highland St, Los Angeles, CA 90001" +175746,AAA Batteries (4-pack),3,2.99,03/17/19 15:11,"962 6th St, Boston, MA 02215" +175747,Flatscreen TV,1,300,03/05/19 19:23,"59 Dogwood St, Austin, TX 73301" +175748,20in Monitor,1,109.99,03/03/19 15:11,"584 Dogwood St, Boston, MA 02215" +175749,34in Ultrawide Monitor,2,379.99,03/24/19 12:08,"302 North St, Boston, MA 02215" +175750,Lightning Charging Cable,1,14.95,03/19/19 13:49,"354 5th St, New York City, NY 10001" +175751,USB-C Charging Cable,1,11.95,03/02/19 15:03,"986 South St, Portland, OR 97035" +175752,AA Batteries (4-pack),2,3.84,03/25/19 20:12,"291 Ridge St, Portland, OR 97035" +175753,USB-C Charging Cable,1,11.95,03/09/19 14:56,"773 Sunset St, Seattle, WA 98101" +175754,Apple Airpods Headphones,1,150,03/01/19 14:51,"6 Hickory St, Dallas, TX 75001" +175755,ThinkPad Laptop,1,999.99,03/26/19 22:31,"188 12th St, Seattle, WA 98101" +175756,Wired Headphones,1,11.99,03/15/19 05:53,"630 Forest St, San Francisco, CA 94016" +175757,Google Phone,1,600,03/21/19 09:37,"419 Church St, Los Angeles, CA 90001" +175758,Apple Airpods Headphones,1,150,03/04/19 21:58,"660 Hickory St, San Francisco, CA 94016" +175759,AAA Batteries (4-pack),1,2.99,03/09/19 14:13,"376 Spruce St, San Francisco, CA 94016" +175760,Wired Headphones,1,11.99,03/14/19 22:28,"316 Willow St, New York City, NY 10001" +175761,USB-C Charging Cable,1,11.95,03/19/19 19:55,"875 Elm St, Austin, TX 73301" +175762,AAA Batteries (4-pack),4,2.99,03/03/19 18:36,"719 Center St, San Francisco, CA 94016" +175763,Bose SoundSport Headphones,1,99.99,03/16/19 08:22,"902 Center St, Atlanta, GA 30301" +175764,USB-C Charging Cable,1,11.95,03/04/19 15:30,"325 Center St, New York City, NY 10001" +175765,AA Batteries (4-pack),1,3.84,03/17/19 20:45,"377 Center St, San Francisco, CA 94016" +175766,Bose SoundSport Headphones,1,99.99,03/02/19 11:26,"167 Dogwood St, Atlanta, GA 30301" +175767,USB-C Charging Cable,1,11.95,03/03/19 15:41,"691 Elm St, Los Angeles, CA 90001" +175768,AA Batteries (4-pack),1,3.84,03/23/19 00:56,"505 14th St, San Francisco, CA 94016" +175769,USB-C Charging Cable,1,11.95,03/02/19 17:55,"91 Washington St, Los Angeles, CA 90001" +175770,ThinkPad Laptop,1,999.99,03/13/19 07:21,"780 Lincoln St, Los Angeles, CA 90001" +175771,AA Batteries (4-pack),2,3.84,03/29/19 09:10,"534 2nd St, Portland, ME 04101" +175772,34in Ultrawide Monitor,1,379.99,03/29/19 18:53,"126 Jefferson St, Austin, TX 73301" +175773,Vareebadd Phone,1,400,03/20/19 16:41,"175 Highland St, Boston, MA 02215" +175774,Bose SoundSport Headphones,1,99.99,03/24/19 09:00,"550 River St, Boston, MA 02215" +175775,ThinkPad Laptop,1,999.99,03/29/19 22:47,"757 Dogwood St, San Francisco, CA 94016" +175776,Lightning Charging Cable,1,14.95,03/04/19 10:47,"863 Johnson St, Seattle, WA 98101" +175777,34in Ultrawide Monitor,1,379.99,03/11/19 17:20,"965 9th St, Boston, MA 02215" +175778,USB-C Charging Cable,1,11.95,03/04/19 08:30,"582 7th St, Los Angeles, CA 90001" +175779,Apple Airpods Headphones,1,150,03/05/19 19:20,"964 Cherry St, New York City, NY 10001" +175780,Apple Airpods Headphones,1,150,03/25/19 01:03,"260 8th St, Boston, MA 02215" +175781,AA Batteries (4-pack),1,3.84,03/15/19 07:40,"315 13th St, San Francisco, CA 94016" +175782,Bose SoundSport Headphones,1,99.99,03/11/19 14:43,"23 9th St, Portland, OR 97035" +175783,AA Batteries (4-pack),1,3.84,03/03/19 09:50,"233 10th St, Dallas, TX 75001" +175784,USB-C Charging Cable,1,11.95,03/03/19 21:57,"766 Adams St, San Francisco, CA 94016" +175785,Macbook Pro Laptop,1,1700,03/08/19 19:27,"590 2nd St, Los Angeles, CA 90001" +175786,AA Batteries (4-pack),4,3.84,03/24/19 20:42,"933 Meadow St, San Francisco, CA 94016" +175787,Flatscreen TV,1,300,03/14/19 17:43,"149 Hill St, Los Angeles, CA 90001" +175788,AA Batteries (4-pack),4,3.84,03/30/19 09:47,"540 6th St, San Francisco, CA 94016" +175789,LG Washing Machine,1,600.0,03/13/19 13:46,"17 1st St, Seattle, WA 98101" +175790,Macbook Pro Laptop,1,1700,03/13/19 16:03,"853 Walnut St, Seattle, WA 98101" +175791,Flatscreen TV,1,300,03/05/19 16:09,"552 Forest St, New York City, NY 10001" +175792,Bose SoundSport Headphones,1,99.99,03/21/19 16:12,"488 Jefferson St, San Francisco, CA 94016" +175793,Bose SoundSport Headphones,1,99.99,03/12/19 18:15,"417 Wilson St, San Francisco, CA 94016" +175794,USB-C Charging Cable,2,11.95,03/30/19 11:33,"605 Cherry St, Atlanta, GA 30301" +175795,Apple Airpods Headphones,2,150,03/21/19 11:47,"703 North St, San Francisco, CA 94016" +175796,Lightning Charging Cable,1,14.95,03/31/19 11:35,"443 Cedar St, Atlanta, GA 30301" +175797,Wired Headphones,1,11.99,03/15/19 13:16,"906 Sunset St, Boston, MA 02215" +175798,AA Batteries (4-pack),1,3.84,03/11/19 06:48,"89 Dogwood St, Portland, OR 97035" +175799,Lightning Charging Cable,1,14.95,03/12/19 14:45,"976 Jackson St, Seattle, WA 98101" +175800,AA Batteries (4-pack),1,3.84,03/24/19 20:11,"656 Spruce St, Portland, OR 97035" +175801,27in FHD Monitor,1,149.99,03/27/19 13:26,"642 Wilson St, Los Angeles, CA 90001" +175802,Bose SoundSport Headphones,1,99.99,03/28/19 12:06,"112 Lincoln St, Los Angeles, CA 90001" +175802,ThinkPad Laptop,1,999.99,03/28/19 12:06,"112 Lincoln St, Los Angeles, CA 90001" +175803,AA Batteries (4-pack),2,3.84,03/04/19 10:38,"511 Johnson St, San Francisco, CA 94016" +175804,27in FHD Monitor,1,149.99,03/20/19 16:40,"600 Lake St, Dallas, TX 75001" +175805,Wired Headphones,1,11.99,03/02/19 18:19,"402 West St, Seattle, WA 98101" +175806,AAA Batteries (4-pack),1,2.99,03/05/19 16:52,"325 Walnut St, Dallas, TX 75001" +175807,USB-C Charging Cable,1,11.95,03/22/19 10:48,"468 Hickory St, Boston, MA 02215" +175808,Wired Headphones,1,11.99,03/18/19 14:26,"87 13th St, Atlanta, GA 30301" +175809,Bose SoundSport Headphones,1,99.99,03/13/19 15:34,"329 Lake St, Boston, MA 02215" +175810,AAA Batteries (4-pack),1,2.99,03/31/19 22:02,"44 Ridge St, Seattle, WA 98101" +175811,34in Ultrawide Monitor,1,379.99,03/31/19 13:34,"305 Adams St, San Francisco, CA 94016" +175812,Wired Headphones,1,11.99,03/19/19 07:44,"825 Elm St, San Francisco, CA 94016" +175813,34in Ultrawide Monitor,1,379.99,03/26/19 10:01,"126 Lincoln St, New York City, NY 10001" +175814,AA Batteries (4-pack),1,3.84,03/31/19 09:39,"52 Lake St, Boston, MA 02215" +175815,Wired Headphones,1,11.99,03/28/19 14:40,"10 9th St, San Francisco, CA 94016" +175816,Lightning Charging Cable,1,14.95,03/30/19 12:56,"525 Park St, New York City, NY 10001" +175817,20in Monitor,1,109.99,03/28/19 13:16,"156 Meadow St, Austin, TX 73301" +175818,Lightning Charging Cable,1,14.95,03/14/19 08:43,"648 Lakeview St, Los Angeles, CA 90001" +175819,Lightning Charging Cable,1,14.95,03/22/19 16:48,"561 Forest St, Boston, MA 02215" +175820,Lightning Charging Cable,1,14.95,03/27/19 02:00,"504 Sunset St, Austin, TX 73301" +175821,USB-C Charging Cable,1,11.95,03/02/19 20:31,"485 4th St, Los Angeles, CA 90001" +175822,27in FHD Monitor,1,149.99,03/19/19 20:41,"330 West St, Los Angeles, CA 90001" +175823,Lightning Charging Cable,1,14.95,03/20/19 19:42,"583 Forest St, New York City, NY 10001" +175824,AAA Batteries (4-pack),1,2.99,03/15/19 10:03,"273 Willow St, Seattle, WA 98101" +175825,34in Ultrawide Monitor,1,379.99,03/18/19 15:34,"579 6th St, Los Angeles, CA 90001" +175826,Flatscreen TV,1,300,03/01/19 21:55,"682 Madison St, Boston, MA 02215" +175827,27in FHD Monitor,1,149.99,03/02/19 16:05,"444 Walnut St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +175828,Wired Headphones,1,11.99,03/29/19 02:02,"891 1st St, New York City, NY 10001" +175829,27in 4K Gaming Monitor,1,389.99,03/10/19 18:03,"958 Washington St, Atlanta, GA 30301" +175830,Wired Headphones,1,11.99,03/13/19 13:23,"69 Adams St, San Francisco, CA 94016" +175831,Lightning Charging Cable,1,14.95,03/12/19 17:59,"227 7th St, Boston, MA 02215" +175832,Lightning Charging Cable,1,14.95,03/12/19 13:31,"199 Pine St, San Francisco, CA 94016" +175833,Google Phone,1,600,03/14/19 20:54,"146 7th St, Portland, OR 97035" +175834,USB-C Charging Cable,1,11.95,03/03/19 11:04,"90 Forest St, Boston, MA 02215" +175835,Google Phone,1,600,03/11/19 19:07,"812 Forest St, New York City, NY 10001" +175836,Wired Headphones,1,11.99,03/28/19 17:28,"305 Ridge St, Dallas, TX 75001" +175837,AA Batteries (4-pack),1,3.84,03/27/19 22:45,"376 8th St, Atlanta, GA 30301" +175838,Apple Airpods Headphones,1,150,03/23/19 06:08,"115 Hickory St, Los Angeles, CA 90001" +175839,USB-C Charging Cable,1,11.95,03/21/19 13:41,"378 Church St, Los Angeles, CA 90001" +175840,USB-C Charging Cable,1,11.95,03/23/19 13:12,"189 North St, Atlanta, GA 30301" +175841,Wired Headphones,1,11.99,03/23/19 16:27,"870 Lincoln St, Los Angeles, CA 90001" +175842,Wired Headphones,1,11.99,03/19/19 16:56,"758 Hill St, Atlanta, GA 30301" +175843,USB-C Charging Cable,1,11.95,03/25/19 13:30,"737 14th St, Seattle, WA 98101" +175844,Bose SoundSport Headphones,1,99.99,03/27/19 20:27,"725 Adams St, Boston, MA 02215" +175845,Vareebadd Phone,1,400,03/30/19 01:09,"153 Maple St, Portland, ME 04101" +175846,iPhone,1,700,03/16/19 11:09,"602 12th St, New York City, NY 10001" +175847,Apple Airpods Headphones,1,150,03/13/19 18:57,"963 11th St, San Francisco, CA 94016" +175848,Wired Headphones,1,11.99,03/17/19 15:52,"980 River St, San Francisco, CA 94016" +175849,AAA Batteries (4-pack),1,2.99,03/09/19 11:53,"402 Willow St, Dallas, TX 75001" +175850,AAA Batteries (4-pack),2,2.99,03/17/19 20:37,"188 1st St, San Francisco, CA 94016" +175851,Apple Airpods Headphones,1,150,03/19/19 05:37,"701 Church St, San Francisco, CA 94016" +175852,AAA Batteries (4-pack),1,2.99,03/10/19 21:30,"166 Maple St, Los Angeles, CA 90001" +175853,Bose SoundSport Headphones,2,99.99,03/16/19 16:54,"840 9th St, Boston, MA 02215" +175854,AA Batteries (4-pack),1,3.84,03/14/19 14:14,"969 Hickory St, New York City, NY 10001" +175855,ThinkPad Laptop,1,999.99,03/26/19 00:16,"207 Jackson St, Los Angeles, CA 90001" +175856,AA Batteries (4-pack),1,3.84,03/04/19 19:22,"893 River St, Atlanta, GA 30301" +175857,iPhone,1,700,03/28/19 23:28,"694 Jackson St, Boston, MA 02215" +175858,Apple Airpods Headphones,1,150,03/28/19 11:32,"26 Cedar St, San Francisco, CA 94016" +175859,Wired Headphones,1,11.99,03/10/19 17:16,"791 Johnson St, San Francisco, CA 94016" +175860,AA Batteries (4-pack),1,3.84,03/31/19 09:58,"482 8th St, Boston, MA 02215" +175861,Flatscreen TV,1,300,03/10/19 23:22,"917 Center St, San Francisco, CA 94016" +175862,USB-C Charging Cable,1,11.95,03/03/19 10:59,"784 Center St, San Francisco, CA 94016" +175862,27in 4K Gaming Monitor,1,389.99,03/03/19 10:59,"784 Center St, San Francisco, CA 94016" +175863,27in FHD Monitor,1,149.99,03/21/19 14:04,"372 Forest St, New York City, NY 10001" +175864,Apple Airpods Headphones,1,150,03/25/19 14:25,"476 6th St, Dallas, TX 75001" +175865,Bose SoundSport Headphones,1,99.99,03/23/19 21:56,"313 Lincoln St, Dallas, TX 75001" +175866,AA Batteries (4-pack),1,3.84,03/09/19 17:10,"791 7th St, Boston, MA 02215" +175867,Google Phone,1,600,03/16/19 11:47,"614 Park St, New York City, NY 10001" +175867,USB-C Charging Cable,1,11.95,03/16/19 11:47,"614 Park St, New York City, NY 10001" +175868,AAA Batteries (4-pack),2,2.99,03/10/19 14:06,"580 Center St, San Francisco, CA 94016" +175869,AA Batteries (4-pack),1,3.84,03/30/19 17:54,"394 1st St, San Francisco, CA 94016" +175870,Lightning Charging Cable,1,14.95,03/27/19 12:12,"307 Main St, Boston, MA 02215" +175871,Apple Airpods Headphones,1,150,03/30/19 22:36,"786 Chestnut St, Portland, OR 97035" +175872,Wired Headphones,1,11.99,03/02/19 21:10,"237 Lake St, New York City, NY 10001" +175873,USB-C Charging Cable,1,11.95,03/21/19 10:43,"893 9th St, Dallas, TX 75001" +175874,USB-C Charging Cable,1,11.95,03/05/19 11:07,"433 4th St, New York City, NY 10001" +175875,Lightning Charging Cable,1,14.95,03/25/19 21:52,"344 8th St, San Francisco, CA 94016" +175876,AA Batteries (4-pack),1,3.84,03/30/19 18:40,"231 Meadow St, Atlanta, GA 30301" +175877,AA Batteries (4-pack),1,3.84,03/04/19 19:23,"361 River St, Dallas, TX 75001" +175878,ThinkPad Laptop,1,999.99,03/23/19 06:33,"691 Lincoln St, San Francisco, CA 94016" +175879,AA Batteries (4-pack),1,3.84,03/17/19 19:30,"729 Washington St, Austin, TX 73301" +175880,AA Batteries (4-pack),1,3.84,03/06/19 08:08,"179 11th St, San Francisco, CA 94016" +175881,27in 4K Gaming Monitor,1,389.99,03/26/19 10:36,"84 West St, San Francisco, CA 94016" +175882,Wired Headphones,1,11.99,03/28/19 19:55,"267 Church St, San Francisco, CA 94016" +175883,USB-C Charging Cable,1,11.95,03/22/19 08:05,"848 14th St, Dallas, TX 75001" +175884,Bose SoundSport Headphones,1,99.99,03/06/19 15:30,"151 13th St, Dallas, TX 75001" +175885,Macbook Pro Laptop,1,1700,03/07/19 12:29,"843 Lakeview St, Austin, TX 73301" +175886,Flatscreen TV,1,300,03/18/19 15:04,"132 Meadow St, Boston, MA 02215" +175887,AAA Batteries (4-pack),1,2.99,03/23/19 14:37,"365 Lincoln St, New York City, NY 10001" +175888,Macbook Pro Laptop,1,1700,03/24/19 10:10,"188 Pine St, Portland, OR 97035" +175889,Bose SoundSport Headphones,1,99.99,03/26/19 09:03,"556 Elm St, Los Angeles, CA 90001" +175890,USB-C Charging Cable,1,11.95,03/09/19 21:03,"385 Willow St, Austin, TX 73301" +175891,27in 4K Gaming Monitor,1,389.99,03/25/19 13:42,"753 1st St, Los Angeles, CA 90001" +175892,Google Phone,1,600,03/21/19 19:06,"87 Washington St, Atlanta, GA 30301" +175893,AA Batteries (4-pack),1,3.84,03/09/19 21:34,"94 Elm St, Dallas, TX 75001" +175894,Lightning Charging Cable,1,14.95,03/22/19 14:27,"950 Jackson St, Los Angeles, CA 90001" +175895,Lightning Charging Cable,1,14.95,03/27/19 23:49,"458 Main St, Los Angeles, CA 90001" +175896,Apple Airpods Headphones,1,150,03/30/19 15:50,"878 Madison St, Seattle, WA 98101" +175897,AA Batteries (4-pack),1,3.84,03/19/19 09:20,"798 Forest St, San Francisco, CA 94016" +175898,Apple Airpods Headphones,1,150,03/30/19 13:08,"522 7th St, Atlanta, GA 30301" +175899,AA Batteries (4-pack),2,3.84,03/14/19 12:43,"909 9th St, Portland, ME 04101" +175900,Lightning Charging Cable,1,14.95,03/05/19 14:23,"664 Jackson St, San Francisco, CA 94016" +175901,Macbook Pro Laptop,1,1700,03/05/19 14:14,"50 12th St, New York City, NY 10001" +175902,27in 4K Gaming Monitor,1,389.99,03/18/19 15:43,"642 Forest St, Atlanta, GA 30301" +175903,Wired Headphones,1,11.99,03/31/19 12:07,"172 2nd St, Los Angeles, CA 90001" +175904,AAA Batteries (4-pack),1,2.99,03/18/19 20:45,"912 Center St, Atlanta, GA 30301" +175905,Vareebadd Phone,1,400,03/17/19 17:58,"744 Willow St, Austin, TX 73301" +175906,AA Batteries (4-pack),2,3.84,03/17/19 10:32,"462 Wilson St, San Francisco, CA 94016" +175907,Apple Airpods Headphones,1,150,03/30/19 00:06,"863 12th St, Boston, MA 02215" +175908,27in FHD Monitor,1,149.99,03/22/19 20:25,"890 Madison St, Dallas, TX 75001" +175909,27in FHD Monitor,2,149.99,03/01/19 17:40,"198 Lake St, Los Angeles, CA 90001" +175910,ThinkPad Laptop,1,999.99,03/10/19 22:27,"729 12th St, Portland, OR 97035" +175911,Lightning Charging Cable,1,14.95,03/09/19 19:12,"160 Johnson St, Atlanta, GA 30301" +175912,Wired Headphones,1,11.99,03/03/19 12:57,"247 Maple St, San Francisco, CA 94016" +175913,AAA Batteries (4-pack),1,2.99,03/29/19 12:28,"759 1st St, San Francisco, CA 94016" +175914,Bose SoundSport Headphones,1,99.99,03/02/19 19:27,"100 Meadow St, Boston, MA 02215" +175915,34in Ultrawide Monitor,1,379.99,03/22/19 19:10,"264 Spruce St, Portland, OR 97035" +175916,AA Batteries (4-pack),1,3.84,03/31/19 22:37,"886 Chestnut St, Boston, MA 02215" +175917,Apple Airpods Headphones,1,150,03/12/19 06:27,"248 West St, Los Angeles, CA 90001" +175918,USB-C Charging Cable,1,11.95,03/22/19 22:01,"201 14th St, New York City, NY 10001" +175919,Apple Airpods Headphones,1,150,03/24/19 21:31,"252 Pine St, New York City, NY 10001" +175920,USB-C Charging Cable,1,11.95,03/31/19 17:43,"874 West St, Boston, MA 02215" +175921,34in Ultrawide Monitor,1,379.99,03/27/19 13:10,"979 4th St, Dallas, TX 75001" +175922,34in Ultrawide Monitor,1,379.99,03/30/19 18:59,"341 Madison St, Boston, MA 02215" +175923,AAA Batteries (4-pack),1,2.99,03/26/19 13:25,"930 9th St, New York City, NY 10001" +175924,Apple Airpods Headphones,1,150,03/17/19 18:10,"740 Washington St, New York City, NY 10001" +175925,Lightning Charging Cable,1,14.95,03/10/19 20:41,"15 Washington St, Atlanta, GA 30301" +175926,Lightning Charging Cable,1,14.95,03/06/19 08:59,"492 Jefferson St, San Francisco, CA 94016" +175927,AAA Batteries (4-pack),1,2.99,03/04/19 19:40,"404 Walnut St, Dallas, TX 75001" +175928,27in 4K Gaming Monitor,1,389.99,03/22/19 09:18,"235 Cherry St, Los Angeles, CA 90001" +175929,USB-C Charging Cable,1,11.95,03/26/19 23:28,"456 2nd St, Portland, OR 97035" +175930,Flatscreen TV,1,300,03/25/19 19:15,"586 4th St, Dallas, TX 75001" +175931,Lightning Charging Cable,1,14.95,03/13/19 14:45,"790 West St, Seattle, WA 98101" +175932,Apple Airpods Headphones,1,150,03/16/19 10:52,"721 Maple St, Los Angeles, CA 90001" +175933,AA Batteries (4-pack),2,3.84,03/01/19 20:49,"514 1st St, Dallas, TX 75001" +175934,20in Monitor,1,109.99,03/09/19 20:07,"889 Pine St, Los Angeles, CA 90001" +175935,ThinkPad Laptop,1,999.99,03/13/19 18:04,"249 11th St, Atlanta, GA 30301" +175936,Lightning Charging Cable,1,14.95,03/26/19 19:08,"219 Washington St, San Francisco, CA 94016" +175937,ThinkPad Laptop,1,999.99,03/13/19 14:51,"35 West St, San Francisco, CA 94016" +175938,Apple Airpods Headphones,1,150,03/23/19 11:50,"285 Walnut St, Portland, ME 04101" +175939,Wired Headphones,1,11.99,03/20/19 01:58,"465 Church St, San Francisco, CA 94016" +175940,AAA Batteries (4-pack),1,2.99,03/01/19 23:19,"176 Center St, San Francisco, CA 94016" +175941,AA Batteries (4-pack),1,3.84,03/14/19 23:11,"104 North St, Seattle, WA 98101" +175942,Vareebadd Phone,1,400,03/05/19 22:46,"162 Meadow St, San Francisco, CA 94016" +175943,Lightning Charging Cable,1,14.95,03/06/19 07:11,"2 Ridge St, Seattle, WA 98101" +175944,27in FHD Monitor,1,149.99,03/28/19 13:41,"825 Madison St, Los Angeles, CA 90001" +175945,Macbook Pro Laptop,1,1700,03/28/19 11:07,"772 South St, Los Angeles, CA 90001" +175946,Lightning Charging Cable,1,14.95,03/31/19 09:28,"981 2nd St, San Francisco, CA 94016" +175947,Bose SoundSport Headphones,1,99.99,03/03/19 12:32,"601 Maple St, Los Angeles, CA 90001" +175948,Lightning Charging Cable,1,14.95,03/22/19 17:49,"477 Cedar St, Los Angeles, CA 90001" +175949,Lightning Charging Cable,1,14.95,03/05/19 14:54,"653 Lake St, Boston, MA 02215" +175950,USB-C Charging Cable,1,11.95,03/06/19 13:04,"604 Willow St, Los Angeles, CA 90001" +175951,USB-C Charging Cable,1,11.95,03/08/19 16:31,"573 Lincoln St, New York City, NY 10001" +175952,USB-C Charging Cable,1,11.95,03/31/19 13:21,"347 Lakeview St, Boston, MA 02215" +175953,USB-C Charging Cable,1,11.95,03/18/19 11:28,"138 Dogwood St, Boston, MA 02215" +175954,AAA Batteries (4-pack),2,2.99,03/29/19 18:54,"751 4th St, New York City, NY 10001" +175955,AA Batteries (4-pack),2,3.84,03/14/19 08:58,"293 11th St, Los Angeles, CA 90001" +175956,Bose SoundSport Headphones,1,99.99,03/27/19 08:26,"279 Meadow St, New York City, NY 10001" +175957,iPhone,1,700,03/11/19 12:19,"814 South St, Austin, TX 73301" +175957,Apple Airpods Headphones,1,150,03/11/19 12:19,"814 South St, Austin, TX 73301" +175958,27in 4K Gaming Monitor,1,389.99,03/05/19 19:52,"39 4th St, Boston, MA 02215" +175959,27in 4K Gaming Monitor,1,389.99,03/28/19 14:00,"187 Wilson St, New York City, NY 10001" +175960,Apple Airpods Headphones,1,150,03/31/19 18:54,"613 Elm St, Seattle, WA 98101" +175961,Flatscreen TV,1,300,03/19/19 10:52,"149 10th St, San Francisco, CA 94016" +175962,AAA Batteries (4-pack),2,2.99,03/24/19 20:29,"13 Highland St, Seattle, WA 98101" +175963,34in Ultrawide Monitor,1,379.99,03/09/19 16:48,"925 Spruce St, Austin, TX 73301" +175964,Bose SoundSport Headphones,1,99.99,03/25/19 15:37,"380 Forest St, Los Angeles, CA 90001" +175965,Apple Airpods Headphones,1,150,03/26/19 17:34,"917 West St, New York City, NY 10001" +175966,34in Ultrawide Monitor,1,379.99,03/13/19 10:15,"457 North St, Dallas, TX 75001" +175967,Lightning Charging Cable,1,14.95,03/20/19 08:07,"307 Spruce St, Dallas, TX 75001" +175968,Bose SoundSport Headphones,1,99.99,03/26/19 15:38,"600 Pine St, New York City, NY 10001" +175969,USB-C Charging Cable,1,11.95,03/10/19 09:32,"372 Maple St, Boston, MA 02215" +175970,34in Ultrawide Monitor,1,379.99,03/23/19 18:20,"653 Church St, New York City, NY 10001" +175971,AA Batteries (4-pack),1,3.84,03/27/19 12:49,"588 Main St, New York City, NY 10001" +175972,Wired Headphones,1,11.99,03/01/19 16:57,"242 Main St, Atlanta, GA 30301" +175973,Lightning Charging Cable,1,14.95,03/16/19 11:03,"879 Madison St, San Francisco, CA 94016" +175974,Wired Headphones,1,11.99,03/09/19 07:47,"783 1st St, San Francisco, CA 94016" +175975,Apple Airpods Headphones,1,150,03/31/19 17:38,"811 Walnut St, Austin, TX 73301" +175976,34in Ultrawide Monitor,1,379.99,03/29/19 11:38,"199 Lincoln St, Los Angeles, CA 90001" +175977,Lightning Charging Cable,1,14.95,03/15/19 13:10,"576 Johnson St, Portland, OR 97035" +175978,Lightning Charging Cable,1,14.95,03/26/19 19:15,"343 River St, Dallas, TX 75001" +175979,27in 4K Gaming Monitor,1,389.99,03/11/19 15:49,"812 10th St, Austin, TX 73301" +175980,USB-C Charging Cable,1,11.95,03/14/19 22:30,"994 Park St, San Francisco, CA 94016" +175981,Lightning Charging Cable,1,14.95,03/29/19 18:03,"666 Lincoln St, Atlanta, GA 30301" +175982,AAA Batteries (4-pack),1,2.99,03/31/19 22:02,"803 Lake St, New York City, NY 10001" +175983,Bose SoundSport Headphones,1,99.99,03/18/19 19:46,"972 Forest St, Seattle, WA 98101" +175984,Bose SoundSport Headphones,1,99.99,03/31/19 18:54,"84 6th St, Portland, OR 97035" +175985,Flatscreen TV,1,300,03/01/19 13:55,"803 9th St, Boston, MA 02215" +175986,Lightning Charging Cable,1,14.95,03/18/19 10:26,"312 Sunset St, San Francisco, CA 94016" +175987,20in Monitor,1,109.99,03/23/19 17:51,"230 9th St, Seattle, WA 98101" +175988,Wired Headphones,1,11.99,03/06/19 12:37,"696 4th St, San Francisco, CA 94016" +175989,AA Batteries (4-pack),1,3.84,03/03/19 18:39,"780 12th St, Austin, TX 73301" +175990,27in 4K Gaming Monitor,1,389.99,03/12/19 09:51,"215 Chestnut St, San Francisco, CA 94016" +175991,Wired Headphones,1,11.99,03/09/19 11:20,"918 South St, Los Angeles, CA 90001" +175992,Bose SoundSport Headphones,1,99.99,03/21/19 21:48,"243 Lake St, San Francisco, CA 94016" +175993,34in Ultrawide Monitor,1,379.99,03/06/19 16:36,"60 Church St, Atlanta, GA 30301" +175994,AA Batteries (4-pack),1,3.84,03/13/19 09:23,"520 6th St, New York City, NY 10001" +175995,USB-C Charging Cable,1,11.95,03/25/19 23:24,"694 5th St, Dallas, TX 75001" +175996,Lightning Charging Cable,1,14.95,03/20/19 18:05,"482 12th St, San Francisco, CA 94016" +175997,Google Phone,1,600,03/27/19 18:46,"36 Center St, Atlanta, GA 30301" +175997,USB-C Charging Cable,1,11.95,03/27/19 18:46,"36 Center St, Atlanta, GA 30301" +175998,Bose SoundSport Headphones,1,99.99,03/29/19 12:22,"950 Meadow St, Boston, MA 02215" +175999,Lightning Charging Cable,1,14.95,03/28/19 22:38,"298 Lake St, San Francisco, CA 94016" +176000,Apple Airpods Headphones,1,150,03/20/19 02:59,"89 4th St, Los Angeles, CA 90001" +176001,USB-C Charging Cable,1,11.95,03/08/19 12:26,"50 8th St, Dallas, TX 75001" +176002,Wired Headphones,1,11.99,03/08/19 09:32,"771 Spruce St, Seattle, WA 98101" +176003,AA Batteries (4-pack),1,3.84,03/26/19 20:58,"420 11th St, Dallas, TX 75001" +176004,34in Ultrawide Monitor,1,379.99,03/27/19 21:03,"995 Cedar St, Los Angeles, CA 90001" +176005,34in Ultrawide Monitor,1,379.99,03/13/19 16:12,"416 Hill St, New York City, NY 10001" +176006,USB-C Charging Cable,1,11.95,03/01/19 19:00,"743 Spruce St, Boston, MA 02215" +176007,Wired Headphones,1,11.99,03/07/19 19:55,"939 River St, Dallas, TX 75001" +176008,AA Batteries (4-pack),3,3.84,03/01/19 13:35,"909 5th St, Los Angeles, CA 90001" +176009,AA Batteries (4-pack),2,3.84,03/11/19 01:29,"133 11th St, Dallas, TX 75001" +176010,34in Ultrawide Monitor,1,379.99,03/15/19 10:53,"481 Washington St, Los Angeles, CA 90001" +176011,Bose SoundSport Headphones,1,99.99,03/24/19 11:34,"663 5th St, San Francisco, CA 94016" +176012,AAA Batteries (4-pack),4,2.99,03/17/19 12:51,"359 Park St, Boston, MA 02215" +176013,Wired Headphones,1,11.99,03/27/19 10:59,"71 West St, San Francisco, CA 94016" +176014,Bose SoundSport Headphones,1,99.99,03/26/19 16:20,"28 Spruce St, Boston, MA 02215" +176015,Wired Headphones,1,11.99,03/01/19 10:32,"408 Hill St, San Francisco, CA 94016" +176016,Apple Airpods Headphones,1,150,03/25/19 10:58,"598 Hill St, Boston, MA 02215" +176017,Lightning Charging Cable,1,14.95,03/25/19 11:13,"488 Center St, San Francisco, CA 94016" +176018,AAA Batteries (4-pack),1,2.99,03/10/19 20:54,"791 Hill St, Austin, TX 73301" +176019,AA Batteries (4-pack),1,3.84,03/02/19 16:23,"783 Jefferson St, Los Angeles, CA 90001" +176020,Wired Headphones,1,11.99,03/19/19 10:43,"612 Madison St, Portland, OR 97035" +176021,27in FHD Monitor,1,149.99,03/28/19 09:23,"949 1st St, San Francisco, CA 94016" +176022,Lightning Charging Cable,1,14.95,03/15/19 12:20,"100 Willow St, Seattle, WA 98101" +176023,34in Ultrawide Monitor,1,379.99,03/14/19 21:17,"932 2nd St, Dallas, TX 75001" +176024,Bose SoundSport Headphones,1,99.99,03/13/19 23:50,"962 Spruce St, San Francisco, CA 94016" +176025,27in FHD Monitor,1,149.99,03/01/19 15:52,"440 Wilson St, Los Angeles, CA 90001" +176026,Flatscreen TV,1,300,03/17/19 09:05,"287 Jackson St, Los Angeles, CA 90001" +176027,Google Phone,1,600,03/31/19 18:07,"2 Washington St, Los Angeles, CA 90001" +176028,Wired Headphones,2,11.99,03/13/19 16:37,"273 4th St, Seattle, WA 98101" +176029,iPhone,1,700,03/21/19 14:34,"759 Meadow St, New York City, NY 10001" +176029,Lightning Charging Cable,1,14.95,03/21/19 14:34,"759 Meadow St, New York City, NY 10001" +176030,AA Batteries (4-pack),1,3.84,03/19/19 14:34,"605 Dogwood St, Boston, MA 02215" +176031,Wired Headphones,1,11.99,03/31/19 22:23,"728 Johnson St, Boston, MA 02215" +176032,AA Batteries (4-pack),1,3.84,03/12/19 00:18,"437 Jackson St, Los Angeles, CA 90001" +176033,Lightning Charging Cable,1,14.95,03/09/19 11:50,"348 River St, Los Angeles, CA 90001" +176034,Wired Headphones,1,11.99,03/13/19 11:09,"713 6th St, Dallas, TX 75001" +176035,AA Batteries (4-pack),1,3.84,03/28/19 21:27,"450 1st St, Los Angeles, CA 90001" +176036,AAA Batteries (4-pack),2,2.99,03/13/19 06:35,"292 Main St, Los Angeles, CA 90001" +176037,LG Dryer,1,600.0,03/02/19 13:26,"89 North St, San Francisco, CA 94016" +176038,Wired Headphones,1,11.99,03/05/19 11:03,"765 River St, New York City, NY 10001" +176039,Flatscreen TV,1,300,03/18/19 13:11,"344 Forest St, Portland, ME 04101" +176040,Apple Airpods Headphones,1,150,03/15/19 19:12,"599 Cedar St, San Francisco, CA 94016" +176041,AA Batteries (4-pack),1,3.84,03/07/19 23:45,"446 Lakeview St, Atlanta, GA 30301" +176042,AA Batteries (4-pack),1,3.84,03/11/19 18:04,"955 Sunset St, New York City, NY 10001" +176043,Wired Headphones,1,11.99,03/13/19 21:51,"733 Elm St, Dallas, TX 75001" +176044,Apple Airpods Headphones,1,150,03/30/19 17:53,"957 Park St, Dallas, TX 75001" +176045,Apple Airpods Headphones,1,150,03/19/19 20:18,"196 Chestnut St, Dallas, TX 75001" +176046,USB-C Charging Cable,1,11.95,03/06/19 23:16,"954 Main St, Dallas, TX 75001" +176047,Google Phone,1,600,03/27/19 13:16,"162 Walnut St, Atlanta, GA 30301" +176048,USB-C Charging Cable,1,11.95,03/29/19 19:44,"606 Willow St, Austin, TX 73301" +176049,34in Ultrawide Monitor,1,379.99,03/29/19 17:31,"992 Willow St, Austin, TX 73301" +176050,AAA Batteries (4-pack),1,2.99,03/11/19 17:49,"616 Main St, Los Angeles, CA 90001" +176051,Apple Airpods Headphones,1,150,03/25/19 11:48,"497 11th St, New York City, NY 10001" +176052,Wired Headphones,1,11.99,03/08/19 12:25,"111 5th St, San Francisco, CA 94016" +176053,Wired Headphones,1,11.99,03/29/19 01:49,"872 Forest St, Los Angeles, CA 90001" +176054,Wired Headphones,1,11.99,03/04/19 06:13,"847 Willow St, Boston, MA 02215" +176055,ThinkPad Laptop,1,999.99,03/12/19 11:45,"9 Washington St, San Francisco, CA 94016" +176056,Vareebadd Phone,1,400,03/04/19 19:04,"697 6th St, San Francisco, CA 94016" +176056,Bose SoundSport Headphones,1,99.99,03/04/19 19:04,"697 6th St, San Francisco, CA 94016" +176057,Flatscreen TV,1,300,03/02/19 21:09,"29 Meadow St, Atlanta, GA 30301" +176058,AAA Batteries (4-pack),1,2.99,03/30/19 12:26,"819 7th St, Dallas, TX 75001" +176059,AA Batteries (4-pack),2,3.84,03/17/19 12:05,"443 5th St, Atlanta, GA 30301" +176060,Lightning Charging Cable,1,14.95,03/24/19 20:02,"723 Park St, San Francisco, CA 94016" +176061,Apple Airpods Headphones,1,150,03/07/19 15:23,"902 Maple St, San Francisco, CA 94016" +176062,USB-C Charging Cable,1,11.95,03/05/19 17:20,"146 Madison St, Los Angeles, CA 90001" +176063,AAA Batteries (4-pack),1,2.99,03/10/19 09:24,"413 9th St, Los Angeles, CA 90001" +176064,USB-C Charging Cable,1,11.95,03/31/19 09:12,"931 Spruce St, New York City, NY 10001" +176065,Wired Headphones,1,11.99,03/24/19 15:10,"426 14th St, Atlanta, GA 30301" +176066,Wired Headphones,1,11.99,03/02/19 10:07,"54 Jefferson St, Los Angeles, CA 90001" +176067,Flatscreen TV,1,300,03/27/19 14:56,"125 Forest St, San Francisco, CA 94016" +176068,Lightning Charging Cable,1,14.95,03/11/19 16:32,"752 Jefferson St, Seattle, WA 98101" +176069,Apple Airpods Headphones,1,150,03/16/19 01:09,"896 Maple St, Portland, ME 04101" +176070,Bose SoundSport Headphones,1,99.99,03/03/19 22:40,"339 4th St, San Francisco, CA 94016" +176071,AA Batteries (4-pack),1,3.84,03/02/19 19:28,"772 8th St, San Francisco, CA 94016" +176072,Flatscreen TV,1,300,03/07/19 18:58,"557 Center St, Los Angeles, CA 90001" +176073,AAA Batteries (4-pack),1,2.99,03/26/19 11:45,"330 Pine St, San Francisco, CA 94016" +176074,34in Ultrawide Monitor,1,379.99,03/07/19 18:59,"416 Forest St, Dallas, TX 75001" +176075,AA Batteries (4-pack),4,3.84,03/26/19 23:05,"673 Park St, Atlanta, GA 30301" +176076,USB-C Charging Cable,1,11.95,03/02/19 10:47,"960 Jackson St, Los Angeles, CA 90001" +176077,Apple Airpods Headphones,1,150,03/24/19 21:21,"293 Elm St, San Francisco, CA 94016" +176078,Lightning Charging Cable,1,14.95,03/26/19 16:14,"952 Forest St, San Francisco, CA 94016" +176079,Google Phone,1,600,03/01/19 14:03,"197 Forest St, San Francisco, CA 94016" +176080,Apple Airpods Headphones,1,150,03/16/19 23:53,"302 10th St, Los Angeles, CA 90001" +176081,AAA Batteries (4-pack),2,2.99,03/25/19 12:22,"313 13th St, New York City, NY 10001" +176082,USB-C Charging Cable,1,11.95,03/31/19 21:07,"439 Sunset St, Los Angeles, CA 90001" +176083,Flatscreen TV,1,300,03/29/19 16:26,"58 Willow St, New York City, NY 10001" +176084,Wired Headphones,1,11.99,03/23/19 11:14,"851 Center St, San Francisco, CA 94016" +176085,Lightning Charging Cable,2,14.95,03/18/19 00:06,"378 Washington St, Boston, MA 02215" +176086,iPhone,1,700,03/03/19 00:30,"577 Adams St, San Francisco, CA 94016" +176087,AAA Batteries (4-pack),1,2.99,03/11/19 20:22,"234 Lincoln St, Seattle, WA 98101" +176088,USB-C Charging Cable,1,11.95,03/31/19 11:02,"296 South St, San Francisco, CA 94016" +176089,20in Monitor,1,109.99,03/01/19 10:42,"309 Lakeview St, New York City, NY 10001" +176090,Wired Headphones,3,11.99,03/31/19 15:38,"725 Hickory St, Atlanta, GA 30301" +176091,Bose SoundSport Headphones,1,99.99,03/07/19 10:38,"223 Cedar St, New York City, NY 10001" +176092,AAA Batteries (4-pack),1,2.99,03/27/19 08:43,"728 8th St, Dallas, TX 75001" +176093,Bose SoundSport Headphones,1,99.99,03/11/19 01:46,"273 Chestnut St, New York City, NY 10001" +176094,Google Phone,1,600,03/05/19 14:27,"294 5th St, Los Angeles, CA 90001" +176094,Bose SoundSport Headphones,1,99.99,03/05/19 14:27,"294 5th St, Los Angeles, CA 90001" +176095,Google Phone,1,600,03/20/19 12:53,"463 10th St, Portland, OR 97035" +176096,Bose SoundSport Headphones,1,99.99,03/15/19 13:04,"686 Hickory St, New York City, NY 10001" +176097,AAA Batteries (4-pack),2,2.99,03/02/19 23:22,"463 Willow St, Boston, MA 02215" +176098,AA Batteries (4-pack),2,3.84,03/14/19 13:18,"206 Pine St, San Francisco, CA 94016" +176099,Apple Airpods Headphones,1,150,03/22/19 13:29,"300 Meadow St, San Francisco, CA 94016" +176100,Bose SoundSport Headphones,1,99.99,03/06/19 13:59,"184 8th St, New York City, NY 10001" +176101,Wired Headphones,1,11.99,03/02/19 09:41,"904 10th St, Los Angeles, CA 90001" +176102,AAA Batteries (4-pack),1,2.99,03/13/19 21:33,"716 North St, Dallas, TX 75001" +176103,Lightning Charging Cable,2,14.95,03/07/19 18:58,"658 11th St, San Francisco, CA 94016" +176104,iPhone,1,700,03/03/19 21:44,"99 Park St, New York City, NY 10001" +176105,27in 4K Gaming Monitor,1,389.99,03/31/19 12:03,"58 4th St, San Francisco, CA 94016" +176106,Bose SoundSport Headphones,1,99.99,03/20/19 18:39,"313 Meadow St, Boston, MA 02215" +176107,Apple Airpods Headphones,1,150,03/17/19 15:27,"64 Ridge St, San Francisco, CA 94016" +176108,Wired Headphones,1,11.99,03/23/19 12:24,"630 Lakeview St, San Francisco, CA 94016" +176109,ThinkPad Laptop,1,999.99,03/27/19 23:43,"985 West St, Austin, TX 73301" +176110,USB-C Charging Cable,1,11.95,03/13/19 11:02,"459 Church St, San Francisco, CA 94016" +176111,AA Batteries (4-pack),3,3.84,03/06/19 13:44,"804 Jackson St, San Francisco, CA 94016" +176112,Lightning Charging Cable,1,14.95,03/28/19 12:50,"525 8th St, San Francisco, CA 94016" +176113,Wired Headphones,1,11.99,03/10/19 14:29,"689 Wilson St, Seattle, WA 98101" +176114,AA Batteries (4-pack),2,3.84,03/28/19 02:02,"342 Maple St, Austin, TX 73301" +176114,Lightning Charging Cable,1,14.95,03/28/19 02:02,"342 Maple St, Austin, TX 73301" +176115,Bose SoundSport Headphones,1,99.99,03/07/19 17:47,"209 River St, San Francisco, CA 94016" +176116,34in Ultrawide Monitor,1,379.99,03/14/19 19:06,"606 Madison St, Austin, TX 73301" +176117,Lightning Charging Cable,1,14.95,03/22/19 15:09,"444 Cherry St, Los Angeles, CA 90001" +176118,Flatscreen TV,1,300,03/09/19 13:39,"110 8th St, New York City, NY 10001" +176119,AAA Batteries (4-pack),1,2.99,03/05/19 01:33,"632 14th St, Los Angeles, CA 90001" +176120,Lightning Charging Cable,1,14.95,03/20/19 01:25,"235 Church St, Seattle, WA 98101" +176120,AAA Batteries (4-pack),2,2.99,03/20/19 01:25,"235 Church St, Seattle, WA 98101" +176121,Bose SoundSport Headphones,1,99.99,03/10/19 15:50,"653 Highland St, New York City, NY 10001" +176122,iPhone,1,700,03/31/19 16:35,"940 Lakeview St, Dallas, TX 75001" +176123,AAA Batteries (4-pack),2,2.99,03/01/19 14:16,"411 Meadow St, San Francisco, CA 94016" +176124,AAA Batteries (4-pack),1,2.99,03/08/19 22:30,"820 9th St, Dallas, TX 75001" +176125,Wired Headphones,1,11.99,03/02/19 11:06,"880 6th St, San Francisco, CA 94016" +176126,AAA Batteries (4-pack),1,2.99,03/09/19 18:33,"137 Maple St, Atlanta, GA 30301" +176127,Flatscreen TV,1,300,03/21/19 11:27,"601 Elm St, Boston, MA 02215" +176128,AAA Batteries (4-pack),1,2.99,03/20/19 05:11,"294 Maple St, San Francisco, CA 94016" +176129,AA Batteries (4-pack),2,3.84,03/11/19 20:08,"609 1st St, New York City, NY 10001" +176130,Bose SoundSport Headphones,1,99.99,03/13/19 21:53,"936 Chestnut St, New York City, NY 10001" +176131,USB-C Charging Cable,1,11.95,03/03/19 19:32,"277 2nd St, Los Angeles, CA 90001" +176132,USB-C Charging Cable,1,11.95,03/13/19 15:32,"637 Walnut St, San Francisco, CA 94016" +176133,Wired Headphones,1,11.99,03/27/19 20:17,"883 Jackson St, Los Angeles, CA 90001" +176134,Lightning Charging Cable,2,14.95,03/29/19 16:22,"805 Dogwood St, Los Angeles, CA 90001" +176135,Vareebadd Phone,1,400,03/08/19 17:33,"106 Cherry St, Atlanta, GA 30301" +176136,Lightning Charging Cable,1,14.95,03/03/19 15:07,"759 North St, San Francisco, CA 94016" +176137,AA Batteries (4-pack),2,3.84,03/21/19 00:28,"256 Chestnut St, Boston, MA 02215" +176138,Wired Headphones,1,11.99,03/25/19 00:22,"382 10th St, San Francisco, CA 94016" +176139,27in FHD Monitor,1,149.99,03/14/19 20:35,"837 Pine St, San Francisco, CA 94016" +176140,20in Monitor,1,109.99,03/25/19 21:15,"994 Maple St, Portland, OR 97035" +176141,Wired Headphones,1,11.99,03/26/19 12:05,"768 Meadow St, Atlanta, GA 30301" +176141,iPhone,1,700,03/26/19 12:05,"768 Meadow St, Atlanta, GA 30301" +176142,ThinkPad Laptop,1,999.99,03/15/19 21:33,"908 Madison St, Atlanta, GA 30301" +176143,AA Batteries (4-pack),1,3.84,03/30/19 08:26,"129 Lakeview St, New York City, NY 10001" +176144,Lightning Charging Cable,1,14.95,03/11/19 22:55,"938 5th St, San Francisco, CA 94016" +176145,Flatscreen TV,1,300,03/22/19 09:48,"159 11th St, Dallas, TX 75001" +176146,AA Batteries (4-pack),1,3.84,03/21/19 09:19,"662 Park St, San Francisco, CA 94016" +176147,USB-C Charging Cable,1,11.95,03/20/19 09:54,"100 Washington St, New York City, NY 10001" +176148,USB-C Charging Cable,1,11.95,03/02/19 20:40,"634 Washington St, Atlanta, GA 30301" +176149,Lightning Charging Cable,1,14.95,03/03/19 12:58,"118 North St, Boston, MA 02215" +176150,AA Batteries (4-pack),1,3.84,03/25/19 14:53,"178 Walnut St, Seattle, WA 98101" +176151,Lightning Charging Cable,1,14.95,03/19/19 05:58,"900 South St, Los Angeles, CA 90001" +176152,USB-C Charging Cable,1,11.95,03/08/19 10:06,"502 4th St, Los Angeles, CA 90001" +176153,Bose SoundSport Headphones,1,99.99,03/27/19 04:51,"576 Willow St, New York City, NY 10001" +176154,Apple Airpods Headphones,1,150,03/06/19 20:07,"369 West St, Portland, OR 97035" +176155,AAA Batteries (4-pack),1,2.99,03/22/19 03:49,"39 North St, Portland, OR 97035" +176156,AA Batteries (4-pack),1,3.84,03/21/19 14:08,"32 Cedar St, Atlanta, GA 30301" +176157,Lightning Charging Cable,1,14.95,03/21/19 07:50,"185 Washington St, Los Angeles, CA 90001" +176158,Flatscreen TV,1,300,03/13/19 12:06,"61 13th St, Boston, MA 02215" +176159,27in FHD Monitor,1,149.99,03/16/19 00:44,"518 Jefferson St, Portland, OR 97035" +176160,Wired Headphones,2,11.99,03/19/19 22:42,"201 Chestnut St, Los Angeles, CA 90001" +176161,USB-C Charging Cable,1,11.95,03/14/19 17:51,"175 Elm St, Dallas, TX 75001" +176162,USB-C Charging Cable,1,11.95,03/26/19 15:01,"782 6th St, Portland, OR 97035" +176163,AAA Batteries (4-pack),2,2.99,03/13/19 20:46,"104 Hill St, San Francisco, CA 94016" +176164,AAA Batteries (4-pack),1,2.99,03/15/19 09:22,"935 Johnson St, Atlanta, GA 30301" +176165,Apple Airpods Headphones,1,150,03/02/19 20:35,"896 5th St, Portland, OR 97035" +176166,AAA Batteries (4-pack),1,2.99,03/17/19 19:31,"898 Madison St, Seattle, WA 98101" +176167,Lightning Charging Cable,1,14.95,03/10/19 19:46,"506 Maple St, San Francisco, CA 94016" +176168,AA Batteries (4-pack),4,3.84,03/16/19 10:57,"776 2nd St, New York City, NY 10001" +176169,Lightning Charging Cable,1,14.95,03/02/19 18:44,"742 9th St, Los Angeles, CA 90001" +176170,AA Batteries (4-pack),1,3.84,03/31/19 15:24,"73 Park St, Atlanta, GA 30301" +176171,AAA Batteries (4-pack),1,2.99,03/18/19 18:40,"984 6th St, San Francisco, CA 94016" +176172,27in 4K Gaming Monitor,1,389.99,03/14/19 13:19,"437 Jackson St, Los Angeles, CA 90001" +176173,34in Ultrawide Monitor,1,379.99,03/30/19 11:57,"502 South St, San Francisco, CA 94016" +176174,Apple Airpods Headphones,1,150,03/19/19 15:45,"469 12th St, Atlanta, GA 30301" +176175,AAA Batteries (4-pack),3,2.99,03/09/19 13:17,"205 Dogwood St, Portland, ME 04101" +176176,AAA Batteries (4-pack),1,2.99,03/28/19 10:27,"207 Forest St, Los Angeles, CA 90001" +176177,Lightning Charging Cable,1,14.95,03/08/19 23:56,"292 Church St, San Francisco, CA 94016" +176178,Wired Headphones,1,11.99,03/20/19 13:58,"330 Dogwood St, San Francisco, CA 94016" +176179,AA Batteries (4-pack),1,3.84,03/19/19 15:55,"446 Dogwood St, San Francisco, CA 94016" +176180,Wired Headphones,1,11.99,03/02/19 19:31,"31 Elm St, Los Angeles, CA 90001" +176181,Lightning Charging Cable,1,14.95,03/13/19 11:42,"681 Lake St, Los Angeles, CA 90001" +176182,34in Ultrawide Monitor,1,379.99,03/31/19 15:38,"626 4th St, San Francisco, CA 94016" +176183,Macbook Pro Laptop,1,1700,03/04/19 20:21,"972 2nd St, New York City, NY 10001" +176184,AAA Batteries (4-pack),1,2.99,03/08/19 02:06,"473 Jefferson St, San Francisco, CA 94016" +176184,AAA Batteries (4-pack),1,2.99,03/08/19 02:06,"473 Jefferson St, San Francisco, CA 94016" +176185,USB-C Charging Cable,1,11.95,03/06/19 07:00,"496 Madison St, Seattle, WA 98101" +176186,Wired Headphones,1,11.99,03/15/19 12:27,"529 Church St, Atlanta, GA 30301" +176187,Wired Headphones,1,11.99,03/17/19 19:20,"615 Cherry St, New York City, NY 10001" +176188,USB-C Charging Cable,1,11.95,03/11/19 17:22,"240 North St, Seattle, WA 98101" +176189,AAA Batteries (4-pack),1,2.99,03/03/19 18:23,"778 Sunset St, New York City, NY 10001" +176190,AA Batteries (4-pack),1,3.84,03/13/19 20:35,"849 Ridge St, San Francisco, CA 94016" +176191,USB-C Charging Cable,3,11.95,03/13/19 20:06,"564 Lake St, Seattle, WA 98101" +176192,Google Phone,1,600,03/18/19 08:13,"554 Wilson St, San Francisco, CA 94016" +176193,USB-C Charging Cable,2,11.95,03/06/19 11:37,"61 Lincoln St, Atlanta, GA 30301" +176194,Wired Headphones,1,11.99,03/17/19 12:17,"116 West St, San Francisco, CA 94016" +176195,34in Ultrawide Monitor,1,379.99,03/20/19 21:00,"224 Elm St, New York City, NY 10001" +176196,Wired Headphones,1,11.99,03/01/19 13:59,"465 6th St, Dallas, TX 75001" +176197,Bose SoundSport Headphones,1,99.99,03/25/19 13:03,"36 Washington St, Atlanta, GA 30301" +176198,USB-C Charging Cable,2,11.95,03/24/19 14:07,"8 North St, Boston, MA 02215" +176199,20in Monitor,1,109.99,03/17/19 13:06,"596 Hickory St, Seattle, WA 98101" +176200,Google Phone,1,600,03/29/19 16:51,"739 Spruce St, Boston, MA 02215" +176201,AAA Batteries (4-pack),1,2.99,03/28/19 13:20,"980 West St, Los Angeles, CA 90001" +176202,ThinkPad Laptop,1,999.99,03/01/19 14:46,"968 North St, New York City, NY 10001" +176203,AAA Batteries (4-pack),1,2.99,03/17/19 17:23,"232 1st St, Portland, OR 97035" +176204,34in Ultrawide Monitor,1,379.99,03/12/19 13:00,"538 Church St, Seattle, WA 98101" +176205,AA Batteries (4-pack),1,3.84,03/20/19 10:30,"990 Forest St, Los Angeles, CA 90001" +176206,Lightning Charging Cable,1,14.95,03/23/19 12:38,"561 Washington St, San Francisco, CA 94016" +176207,Lightning Charging Cable,1,14.95,03/26/19 10:46,"753 9th St, New York City, NY 10001" +176208,27in 4K Gaming Monitor,1,389.99,03/08/19 14:35,"315 5th St, San Francisco, CA 94016" +176209,Bose SoundSport Headphones,1,99.99,03/13/19 19:02,"144 West St, Boston, MA 02215" +176210,Google Phone,1,600,03/08/19 19:10,"162 8th St, Los Angeles, CA 90001" +176211,AAA Batteries (4-pack),1,2.99,03/24/19 19:04,"836 Walnut St, Boston, MA 02215" +176212,Apple Airpods Headphones,1,150,03/18/19 22:31,"345 9th St, Portland, ME 04101" +176213,Bose SoundSport Headphones,1,99.99,03/11/19 12:27,"611 Church St, Dallas, TX 75001" +176214,Wired Headphones,1,11.99,03/06/19 10:50,"135 Elm St, Los Angeles, CA 90001" +176215,USB-C Charging Cable,1,11.95,03/19/19 16:30,"541 Main St, Seattle, WA 98101" +176216,AA Batteries (4-pack),1,3.84,03/16/19 06:50,"528 Wilson St, Dallas, TX 75001" +176217,AAA Batteries (4-pack),1,2.99,03/13/19 19:21,"525 8th St, Dallas, TX 75001" +176218,USB-C Charging Cable,1,11.95,03/23/19 00:17,"952 14th St, Dallas, TX 75001" +176219,Flatscreen TV,1,300,03/09/19 11:44,"483 11th St, Austin, TX 73301" +176220,Macbook Pro Laptop,1,1700,03/04/19 19:31,"13 12th St, Boston, MA 02215" +176221,Lightning Charging Cable,1,14.95,03/10/19 15:23,"907 South St, Seattle, WA 98101" +176222,34in Ultrawide Monitor,1,379.99,03/15/19 14:02,"397 Walnut St, Boston, MA 02215" +176223,AAA Batteries (4-pack),1,2.99,03/05/19 17:51,"722 Dogwood St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +176224,Lightning Charging Cable,2,14.95,03/09/19 17:34,"222 Johnson St, Atlanta, GA 30301" +176225,Bose SoundSport Headphones,1,99.99,03/28/19 16:55,"15 Center St, New York City, NY 10001" +176226,AA Batteries (4-pack),2,3.84,03/01/19 15:29,"469 Church St, New York City, NY 10001" +176227,Apple Airpods Headphones,1,150,03/16/19 10:04,"518 Walnut St, Los Angeles, CA 90001" +176228,Wired Headphones,1,11.99,03/10/19 20:56,"304 5th St, Boston, MA 02215" +176229,Wired Headphones,1,11.99,03/11/19 12:55,"850 Hill St, Atlanta, GA 30301" +176230,Bose SoundSport Headphones,1,99.99,03/30/19 21:16,"854 Lakeview St, New York City, NY 10001" +176231,AA Batteries (4-pack),1,3.84,03/15/19 20:36,"823 Ridge St, New York City, NY 10001" +176232,Wired Headphones,1,11.99,03/01/19 12:41,"321 Walnut St, Portland, OR 97035" +176233,Lightning Charging Cable,1,14.95,03/24/19 15:16,"23 Dogwood St, Los Angeles, CA 90001" +176234,USB-C Charging Cable,2,11.95,03/22/19 11:27,"54 Pine St, New York City, NY 10001" +176235,iPhone,1,700,03/27/19 09:10,"584 Center St, San Francisco, CA 94016" +176236,Apple Airpods Headphones,1,150,03/07/19 09:18,"583 Pine St, Dallas, TX 75001" +176237,Apple Airpods Headphones,1,150,03/02/19 08:44,"719 Ridge St, Atlanta, GA 30301" +176238,34in Ultrawide Monitor,1,379.99,03/28/19 12:39,"633 Madison St, Los Angeles, CA 90001" +176239,Bose SoundSport Headphones,1,99.99,03/27/19 14:36,"997 8th St, Seattle, WA 98101" +176240,AAA Batteries (4-pack),1,2.99,03/21/19 20:53,"44 1st St, New York City, NY 10001" +176241,Lightning Charging Cable,1,14.95,03/07/19 18:42,"483 Park St, Dallas, TX 75001" +176242,Bose SoundSport Headphones,1,99.99,03/01/19 22:08,"580 Lake St, New York City, NY 10001" +176243,Wired Headphones,1,11.99,03/11/19 18:39,"174 North St, New York City, NY 10001" +176244,Wired Headphones,1,11.99,03/30/19 11:17,"576 10th St, Los Angeles, CA 90001" +176245,Macbook Pro Laptop,1,1700,03/28/19 10:22,"936 Park St, San Francisco, CA 94016" +176246,AAA Batteries (4-pack),1,2.99,03/24/19 19:18,"269 Adams St, Dallas, TX 75001" +176247,AA Batteries (4-pack),1,3.84,03/06/19 16:14,"7 Adams St, Dallas, TX 75001" +176248,USB-C Charging Cable,1,11.95,03/07/19 10:07,"78 River St, Los Angeles, CA 90001" +176249,Flatscreen TV,1,300,03/29/19 15:59,"484 Washington St, Seattle, WA 98101" +176250,34in Ultrawide Monitor,1,379.99,03/14/19 10:24,"573 Adams St, Dallas, TX 75001" +176251,AA Batteries (4-pack),1,3.84,03/25/19 12:52,"846 Johnson St, New York City, NY 10001" +176252,AAA Batteries (4-pack),1,2.99,03/19/19 17:40,"266 1st St, New York City, NY 10001" +176253,27in FHD Monitor,1,149.99,03/16/19 18:20,"985 Sunset St, Dallas, TX 75001" +176254,Vareebadd Phone,1,400,03/31/19 13:41,"688 River St, New York City, NY 10001" +176255,Wired Headphones,1,11.99,03/31/19 19:17,"493 North St, Los Angeles, CA 90001" +176256,Flatscreen TV,1,300,03/22/19 11:44,"222 Hill St, San Francisco, CA 94016" +176257,AA Batteries (4-pack),1,3.84,03/05/19 21:27,"582 Sunset St, Atlanta, GA 30301" +176258,USB-C Charging Cable,2,11.95,03/26/19 15:11,"76 North St, San Francisco, CA 94016" +176259,Google Phone,1,600,03/03/19 20:28,"319 Chestnut St, San Francisco, CA 94016" +176260,USB-C Charging Cable,1,11.95,03/19/19 03:52,"612 Pine St, Dallas, TX 75001" +176261,20in Monitor,1,109.99,03/31/19 20:28,"285 Meadow St, San Francisco, CA 94016" +176262,AA Batteries (4-pack),1,3.84,03/23/19 09:40,"676 Center St, Los Angeles, CA 90001" +176263,USB-C Charging Cable,1,11.95,03/29/19 23:55,"573 Madison St, Austin, TX 73301" +176264,Bose SoundSport Headphones,1,99.99,03/25/19 16:21,"888 9th St, Los Angeles, CA 90001" +176265,AAA Batteries (4-pack),1,2.99,03/03/19 11:12,"370 11th St, Los Angeles, CA 90001" +176266,AA Batteries (4-pack),2,3.84,03/27/19 12:11,"842 Lakeview St, Austin, TX 73301" +176267,Flatscreen TV,1,300,03/27/19 14:31,"879 Willow St, Dallas, TX 75001" +176268,Lightning Charging Cable,1,14.95,03/13/19 10:19,"982 Washington St, San Francisco, CA 94016" +176269,Lightning Charging Cable,1,14.95,03/03/19 11:25,"737 Adams St, Los Angeles, CA 90001" +176270,Bose SoundSport Headphones,1,99.99,03/22/19 13:46,"384 Park St, Los Angeles, CA 90001" +176271,AAA Batteries (4-pack),2,2.99,03/07/19 11:47,"619 4th St, San Francisco, CA 94016" +176272,Wired Headphones,1,11.99,03/31/19 19:50,"775 12th St, San Francisco, CA 94016" +176273,Bose SoundSport Headphones,1,99.99,03/10/19 16:47,"711 Cherry St, Dallas, TX 75001" +176274,Bose SoundSport Headphones,1,99.99,03/28/19 02:15,"686 Chestnut St, Austin, TX 73301" +176275,USB-C Charging Cable,1,11.95,03/04/19 16:13,"602 River St, Boston, MA 02215" +176276,Wired Headphones,2,11.99,03/16/19 19:40,"579 Lincoln St, San Francisco, CA 94016" +176277,34in Ultrawide Monitor,1,379.99,03/31/19 07:47,"712 7th St, Portland, ME 04101" +176278,AAA Batteries (4-pack),1,2.99,03/24/19 21:59,"872 10th St, Los Angeles, CA 90001" +176279,AA Batteries (4-pack),1,3.84,03/02/19 18:32,"713 Dogwood St, San Francisco, CA 94016" +176280,USB-C Charging Cable,1,11.95,03/14/19 22:36,"513 4th St, San Francisco, CA 94016" +176281,Google Phone,1,600,03/26/19 22:23,"972 Hickory St, San Francisco, CA 94016" +176282,AA Batteries (4-pack),1,3.84,03/05/19 20:04,"922 South St, San Francisco, CA 94016" +176283,Flatscreen TV,1,300,03/24/19 19:59,"9 12th St, Boston, MA 02215" +176284,USB-C Charging Cable,1,11.95,03/16/19 19:57,"882 13th St, New York City, NY 10001" +176285,Bose SoundSport Headphones,1,99.99,03/10/19 15:37,"865 Washington St, Austin, TX 73301" +176286,Wired Headphones,1,11.99,03/30/19 16:39,"757 Willow St, Boston, MA 02215" +176287,27in 4K Gaming Monitor,1,389.99,03/02/19 09:41,"601 Main St, San Francisco, CA 94016" +176288,USB-C Charging Cable,1,11.95,03/03/19 07:04,"391 Church St, San Francisco, CA 94016" +176289,AA Batteries (4-pack),1,3.84,03/16/19 08:57,"368 Hill St, Seattle, WA 98101" +176290,USB-C Charging Cable,1,11.95,03/04/19 13:39,"989 Elm St, Los Angeles, CA 90001" +176291,AA Batteries (4-pack),2,3.84,03/05/19 12:40,"166 6th St, New York City, NY 10001" +176292,Lightning Charging Cable,1,14.95,03/14/19 14:17,"337 Forest St, Los Angeles, CA 90001" +176293,USB-C Charging Cable,1,11.95,03/30/19 10:01,"749 5th St, San Francisco, CA 94016" +176294,Bose SoundSport Headphones,1,99.99,03/24/19 18:54,"215 Madison St, New York City, NY 10001" +176295,iPhone,1,700,03/09/19 09:14,"378 South St, Boston, MA 02215" +176296,Wired Headphones,1,11.99,03/28/19 21:54,"633 Meadow St, Austin, TX 73301" +176297,Bose SoundSport Headphones,1,99.99,03/04/19 12:51,"599 Meadow St, Atlanta, GA 30301" +176298,Apple Airpods Headphones,1,150,03/05/19 22:50,"608 Lincoln St, Boston, MA 02215" +176299,USB-C Charging Cable,1,11.95,03/08/19 06:47,"571 Jackson St, San Francisco, CA 94016" +176300,Apple Airpods Headphones,1,150,03/25/19 14:09,"189 8th St, San Francisco, CA 94016" +176301,AAA Batteries (4-pack),1,2.99,03/16/19 10:14,"814 Dogwood St, New York City, NY 10001" +176302,Vareebadd Phone,1,400,03/25/19 10:50,"518 4th St, New York City, NY 10001" +176303,AAA Batteries (4-pack),2,2.99,03/01/19 16:42,"917 Hill St, New York City, NY 10001" +176304,USB-C Charging Cable,1,11.95,03/23/19 06:14,"820 Highland St, Los Angeles, CA 90001" +176305,Lightning Charging Cable,1,14.95,03/07/19 13:51,"806 Hickory St, New York City, NY 10001" +176306,27in 4K Gaming Monitor,1,389.99,03/02/19 20:18,"325 Willow St, Portland, OR 97035" +176307,Wired Headphones,1,11.99,03/09/19 17:37,"773 Dogwood St, Los Angeles, CA 90001" +176308,AA Batteries (4-pack),1,3.84,03/11/19 08:30,"761 7th St, Boston, MA 02215" +176309,AAA Batteries (4-pack),1,2.99,03/19/19 08:43,"277 8th St, Portland, OR 97035" +176310,Lightning Charging Cable,1,14.95,03/30/19 13:31,"551 Forest St, Los Angeles, CA 90001" +176311,Lightning Charging Cable,1,14.95,03/31/19 12:16,"143 Walnut St, Boston, MA 02215" +176312,USB-C Charging Cable,1,11.95,03/17/19 21:35,"977 Ridge St, Dallas, TX 75001" +176313,27in 4K Gaming Monitor,1,389.99,03/01/19 12:36,"584 12th St, Los Angeles, CA 90001" +176314,USB-C Charging Cable,1,11.95,03/31/19 11:44,"869 Hickory St, Los Angeles, CA 90001" +176315,Lightning Charging Cable,1,14.95,03/16/19 09:30,"626 North St, New York City, NY 10001" +176316,Google Phone,1,600,03/08/19 18:55,"137 Sunset St, New York City, NY 10001" +176317,Flatscreen TV,1,300,03/30/19 20:13,"67 West St, New York City, NY 10001" +176318,27in 4K Gaming Monitor,1,389.99,03/11/19 11:28,"993 Johnson St, New York City, NY 10001" +176319,AA Batteries (4-pack),1,3.84,03/21/19 19:13,"585 1st St, New York City, NY 10001" +176320,Lightning Charging Cable,1,14.95,03/18/19 12:41,"355 Jackson St, Atlanta, GA 30301" +176321,Macbook Pro Laptop,1,1700,03/19/19 09:32,"952 Main St, Boston, MA 02215" +176322,iPhone,1,700,03/25/19 19:01,"749 Main St, Los Angeles, CA 90001" +176323,AA Batteries (4-pack),1,3.84,03/20/19 14:02,"508 Main St, Boston, MA 02215" +176324,USB-C Charging Cable,1,11.95,03/02/19 10:05,"762 Park St, San Francisco, CA 94016" +176325,34in Ultrawide Monitor,1,379.99,03/05/19 18:34,"908 14th St, Atlanta, GA 30301" +176326,iPhone,1,700,03/22/19 07:48,"289 8th St, Seattle, WA 98101" +176326,Lightning Charging Cable,1,14.95,03/22/19 07:48,"289 8th St, Seattle, WA 98101" +176327,Flatscreen TV,1,300,03/13/19 17:49,"420 Pine St, San Francisco, CA 94016" +176328,Lightning Charging Cable,1,14.95,03/04/19 18:48,"649 7th St, Boston, MA 02215" +176329,Lightning Charging Cable,3,14.95,03/25/19 06:38,"483 Hickory St, Dallas, TX 75001" +176330,27in 4K Gaming Monitor,1,389.99,03/26/19 20:42,"257 West St, Austin, TX 73301" +176331,Lightning Charging Cable,1,14.95,03/13/19 18:19,"626 Adams St, Seattle, WA 98101" +176332,Apple Airpods Headphones,1,150,03/17/19 04:10,"912 9th St, Austin, TX 73301" +176333,iPhone,1,700,03/07/19 11:20,"989 Cedar St, Atlanta, GA 30301" +176333,Lightning Charging Cable,1,14.95,03/07/19 11:20,"989 Cedar St, Atlanta, GA 30301" +176334,USB-C Charging Cable,1,11.95,03/13/19 18:43,"517 West St, San Francisco, CA 94016" +176335,USB-C Charging Cable,1,11.95,03/23/19 15:45,"988 Sunset St, San Francisco, CA 94016" +176336,AAA Batteries (4-pack),1,2.99,03/05/19 08:02,"966 South St, New York City, NY 10001" +176337,USB-C Charging Cable,1,11.95,03/30/19 11:06,"832 Forest St, Portland, OR 97035" +176338,USB-C Charging Cable,1,11.95,03/15/19 12:47,"790 Park St, Boston, MA 02215" +176339,AA Batteries (4-pack),1,3.84,03/05/19 17:03,"775 Washington St, New York City, NY 10001" +176340,iPhone,1,700,03/19/19 10:21,"818 Ridge St, San Francisco, CA 94016" +176341,USB-C Charging Cable,1,11.95,03/03/19 13:48,"696 Washington St, Boston, MA 02215" +176342,iPhone,1,700,03/22/19 21:11,"148 Ridge St, Portland, OR 97035" +176343,AA Batteries (4-pack),1,3.84,03/24/19 16:38,"37 Willow St, New York City, NY 10001" +176344,Macbook Pro Laptop,1,1700,03/07/19 15:21,"381 South St, San Francisco, CA 94016" +176345,Wired Headphones,1,11.99,03/22/19 17:15,"736 Church St, Los Angeles, CA 90001" +176346,Lightning Charging Cable,1,14.95,03/04/19 16:53,"746 Washington St, Los Angeles, CA 90001" +176347,Wired Headphones,1,11.99,03/28/19 13:50,"955 Madison St, Seattle, WA 98101" +176348,AA Batteries (4-pack),1,3.84,03/23/19 20:33,"944 6th St, Los Angeles, CA 90001" +176349,USB-C Charging Cable,1,11.95,03/03/19 09:38,"567 Church St, Los Angeles, CA 90001" +176350,20in Monitor,1,109.99,03/21/19 13:25,"63 River St, Los Angeles, CA 90001" +176351,LG Dryer,1,600.0,03/11/19 19:46,"326 13th St, San Francisco, CA 94016" +176352,Lightning Charging Cable,1,14.95,03/25/19 14:06,"93 Spruce St, New York City, NY 10001" +176353,AA Batteries (4-pack),1,3.84,03/13/19 19:09,"513 Sunset St, New York City, NY 10001" +176354,Wired Headphones,1,11.99,03/28/19 13:02,"360 Maple St, Los Angeles, CA 90001" +176355,Bose SoundSport Headphones,1,99.99,03/12/19 01:32,"262 Main St, New York City, NY 10001" +176356,AA Batteries (4-pack),1,3.84,03/03/19 23:28,"16 Wilson St, Seattle, WA 98101" +176357,USB-C Charging Cable,1,11.95,03/03/19 08:58,"792 Lincoln St, New York City, NY 10001" +176357,Vareebadd Phone,1,400,03/03/19 08:58,"792 Lincoln St, New York City, NY 10001" +176358,AA Batteries (4-pack),1,3.84,03/06/19 10:18,"621 7th St, Los Angeles, CA 90001" +176359,AA Batteries (4-pack),1,3.84,03/13/19 13:00,"153 Center St, San Francisco, CA 94016" +176360,USB-C Charging Cable,1,11.95,03/31/19 19:35,"31 Dogwood St, Atlanta, GA 30301" +176361,Vareebadd Phone,1,400,03/18/19 01:21,"219 Chestnut St, Los Angeles, CA 90001" +176362,AA Batteries (4-pack),1,3.84,03/17/19 19:50,"523 Jackson St, Los Angeles, CA 90001" +176363,20in Monitor,1,109.99,03/22/19 10:54,"965 Hickory St, San Francisco, CA 94016" +176364,Apple Airpods Headphones,1,150,03/29/19 15:49,"200 Center St, San Francisco, CA 94016" +176365,Google Phone,1,600,03/26/19 22:37,"637 Park St, Austin, TX 73301" +176366,Wired Headphones,2,11.99,03/12/19 12:11,"600 River St, Portland, OR 97035" +176367,USB-C Charging Cable,1,11.95,03/24/19 23:08,"106 Jefferson St, Los Angeles, CA 90001" +176368,27in 4K Gaming Monitor,1,389.99,03/07/19 10:50,"74 Lake St, Portland, OR 97035" +176369,ThinkPad Laptop,1,999.99,03/31/19 10:14,"753 River St, Austin, TX 73301" +176370,Bose SoundSport Headphones,1,99.99,03/10/19 21:42,"160 14th St, Boston, MA 02215" +176371,Flatscreen TV,1,300,03/24/19 14:17,"156 Lakeview St, Los Angeles, CA 90001" +176372,AA Batteries (4-pack),2,3.84,03/26/19 17:17,"369 Dogwood St, Boston, MA 02215" +176373,Wired Headphones,1,11.99,03/26/19 20:05,"784 Elm St, Atlanta, GA 30301" +176374,Bose SoundSport Headphones,1,99.99,03/19/19 22:07,"740 13th St, New York City, NY 10001" +176375,Bose SoundSport Headphones,1,99.99,03/28/19 19:29,"430 11th St, New York City, NY 10001" +176376,Flatscreen TV,1,300,03/04/19 07:34,"347 4th St, Boston, MA 02215" +176377,20in Monitor,1,109.99,03/10/19 18:44,"814 6th St, Boston, MA 02215" +176378,AA Batteries (4-pack),1,3.84,03/03/19 13:45,"118 Ridge St, Atlanta, GA 30301" +176379,Wired Headphones,2,11.99,03/20/19 17:56,"467 Jefferson St, Boston, MA 02215" +176380,AA Batteries (4-pack),3,3.84,03/20/19 14:26,"799 Center St, Seattle, WA 98101" +176381,AAA Batteries (4-pack),1,2.99,03/10/19 23:40,"435 Hill St, Boston, MA 02215" +176382,Flatscreen TV,1,300,03/09/19 10:54,"591 Lakeview St, Los Angeles, CA 90001" +176383,Macbook Pro Laptop,1,1700,03/15/19 22:57,"503 7th St, San Francisco, CA 94016" +,,,,, +176384,Wired Headphones,2,11.99,03/30/19 22:41,"195 Spruce St, Atlanta, GA 30301" +176385,AAA Batteries (4-pack),1,2.99,03/23/19 03:53,"400 Hill St, Los Angeles, CA 90001" +176386,Apple Airpods Headphones,1,150,03/28/19 14:51,"253 Adams St, New York City, NY 10001" +176387,Lightning Charging Cable,1,14.95,03/14/19 10:32,"767 Ridge St, Boston, MA 02215" +176388,AA Batteries (4-pack),2,3.84,03/28/19 23:26,"891 Walnut St, Boston, MA 02215" +176389,AAA Batteries (4-pack),2,2.99,03/09/19 14:36,"696 Johnson St, Boston, MA 02215" +176390,Wired Headphones,1,11.99,03/09/19 20:38,"367 River St, Austin, TX 73301" +176391,Google Phone,1,600,03/28/19 21:05,"657 West St, San Francisco, CA 94016" +176392,27in 4K Gaming Monitor,1,389.99,03/18/19 19:51,"18 9th St, San Francisco, CA 94016" +176393,Apple Airpods Headphones,1,150,03/04/19 23:17,"607 Center St, Seattle, WA 98101" +176394,Lightning Charging Cable,1,14.95,03/19/19 13:25,"65 Forest St, Los Angeles, CA 90001" +176395,Apple Airpods Headphones,1,150,03/30/19 17:25,"391 8th St, Seattle, WA 98101" +176396,27in 4K Gaming Monitor,1,389.99,03/25/19 12:33,"364 Church St, Boston, MA 02215" +176397,USB-C Charging Cable,1,11.95,03/31/19 17:01,"635 13th St, Los Angeles, CA 90001" +176398,ThinkPad Laptop,1,999.99,03/25/19 09:49,"249 Main St, San Francisco, CA 94016" +176399,AA Batteries (4-pack),1,3.84,03/15/19 15:39,"641 Park St, San Francisco, CA 94016" +176400,Flatscreen TV,1,300,03/06/19 10:15,"262 2nd St, Los Angeles, CA 90001" +176401,AA Batteries (4-pack),1,3.84,03/10/19 12:11,"630 Lincoln St, Dallas, TX 75001" +176402,AA Batteries (4-pack),1,3.84,03/04/19 12:38,"871 Lakeview St, San Francisco, CA 94016" +176403,Flatscreen TV,1,300,03/07/19 13:28,"934 Main St, San Francisco, CA 94016" +176404,AA Batteries (4-pack),1,3.84,03/03/19 10:46,"208 12th St, Boston, MA 02215" +176405,Apple Airpods Headphones,1,150,03/14/19 14:36,"498 Lincoln St, Austin, TX 73301" +176406,Apple Airpods Headphones,1,150,03/12/19 11:16,"135 5th St, Portland, OR 97035" +176407,Lightning Charging Cable,1,14.95,03/17/19 02:01,"17 Walnut St, Austin, TX 73301" +176408,AA Batteries (4-pack),1,3.84,03/05/19 12:33,"699 Cedar St, Los Angeles, CA 90001" +176409,Google Phone,1,600,03/28/19 20:35,"597 Center St, Austin, TX 73301" +176409,USB-C Charging Cable,1,11.95,03/28/19 20:35,"597 Center St, Austin, TX 73301" +176409,Wired Headphones,1,11.99,03/28/19 20:35,"597 Center St, Austin, TX 73301" +176410,Lightning Charging Cable,1,14.95,03/01/19 15:34,"75 Park St, Boston, MA 02215" +176411,USB-C Charging Cable,1,11.95,03/11/19 21:11,"121 South St, Austin, TX 73301" +176412,20in Monitor,1,109.99,03/03/19 12:09,"631 2nd St, San Francisco, CA 94016" +176413,Bose SoundSport Headphones,1,99.99,03/28/19 18:27,"438 11th St, San Francisco, CA 94016" +176414,AAA Batteries (4-pack),1,2.99,03/22/19 17:12,"150 Wilson St, Los Angeles, CA 90001" +176415,27in FHD Monitor,1,149.99,03/07/19 07:07,"579 Willow St, Portland, OR 97035" +176416,AA Batteries (4-pack),1,3.84,03/27/19 05:24,"838 Main St, Dallas, TX 75001" +176417,27in FHD Monitor,1,149.99,03/22/19 17:20,"34 10th St, Boston, MA 02215" +176418,ThinkPad Laptop,1,999.99,03/06/19 18:35,"486 8th St, San Francisco, CA 94016" +176419,34in Ultrawide Monitor,1,379.99,03/22/19 03:24,"897 Adams St, Los Angeles, CA 90001" +176420,20in Monitor,1,109.99,03/03/19 13:48,"888 Center St, Portland, OR 97035" +176421,AAA Batteries (4-pack),1,2.99,03/09/19 22:44,"185 Cherry St, Boston, MA 02215" +176422,Lightning Charging Cable,1,14.95,03/19/19 12:34,"262 West St, Atlanta, GA 30301" +176423,Apple Airpods Headphones,1,150,03/06/19 13:28,"871 Cherry St, Boston, MA 02215" +176424,AAA Batteries (4-pack),1,2.99,03/04/19 16:10,"762 Highland St, Boston, MA 02215" +176425,Wired Headphones,1,11.99,03/18/19 10:05,"508 Lakeview St, San Francisco, CA 94016" +176426,Lightning Charging Cable,1,14.95,03/17/19 10:20,"676 Hickory St, Los Angeles, CA 90001" +176427,Lightning Charging Cable,1,14.95,03/06/19 14:29,"374 7th St, Los Angeles, CA 90001" +176428,AA Batteries (4-pack),1,3.84,03/10/19 17:04,"445 Elm St, Dallas, TX 75001" +176429,Bose SoundSport Headphones,1,99.99,03/13/19 20:14,"428 7th St, Boston, MA 02215" +176430,Vareebadd Phone,1,400,03/21/19 08:05,"55 6th St, Dallas, TX 75001" +176431,Lightning Charging Cable,1,14.95,03/18/19 19:13,"31 Wilson St, Austin, TX 73301" +176432,Bose SoundSport Headphones,1,99.99,03/05/19 11:37,"394 Center St, San Francisco, CA 94016" +176433,iPhone,1,700,03/11/19 09:02,"905 Chestnut St, Atlanta, GA 30301" +176433,Lightning Charging Cable,1,14.95,03/11/19 09:02,"905 Chestnut St, Atlanta, GA 30301" +176434,Apple Airpods Headphones,1,150,03/09/19 17:04,"828 Park St, Portland, OR 97035" +176435,AAA Batteries (4-pack),2,2.99,03/30/19 17:42,"672 Hill St, Portland, OR 97035" +176436,Lightning Charging Cable,1,14.95,03/26/19 09:32,"618 Adams St, Los Angeles, CA 90001" +176437,27in 4K Gaming Monitor,1,389.99,03/22/19 17:43,"197 7th St, Los Angeles, CA 90001" +176438,Lightning Charging Cable,1,14.95,03/26/19 14:15,"427 Cedar St, San Francisco, CA 94016" +176439,Apple Airpods Headphones,1,150,03/17/19 15:21,"744 4th St, New York City, NY 10001" +176440,34in Ultrawide Monitor,1,379.99,03/20/19 20:23,"524 13th St, Los Angeles, CA 90001" +176441,20in Monitor,1,109.99,03/24/19 12:40,"25 8th St, Seattle, WA 98101" +176442,27in FHD Monitor,1,149.99,03/30/19 19:09,"607 9th St, San Francisco, CA 94016" +176443,USB-C Charging Cable,1,11.95,03/04/19 07:30,"580 1st St, Seattle, WA 98101" +176444,Wired Headphones,1,11.99,03/05/19 19:43,"36 West St, Portland, ME 04101" +176445,AAA Batteries (4-pack),1,2.99,03/07/19 11:08,"408 7th St, Portland, OR 97035" +176446,Lightning Charging Cable,1,14.95,03/08/19 19:20,"185 Jackson St, Portland, OR 97035" +176447,Apple Airpods Headphones,1,150,03/22/19 15:30,"715 Chestnut St, New York City, NY 10001" +176448,AAA Batteries (4-pack),1,2.99,03/08/19 14:37,"850 Lincoln St, Los Angeles, CA 90001" +176449,34in Ultrawide Monitor,1,379.99,03/08/19 18:37,"346 Elm St, Boston, MA 02215" +176450,Google Phone,1,600,03/07/19 20:25,"877 Lake St, San Francisco, CA 94016" +176451,USB-C Charging Cable,1,11.95,03/16/19 05:31,"30 Adams St, New York City, NY 10001" +176452,AAA Batteries (4-pack),2,2.99,03/10/19 15:30,"928 Cedar St, Portland, OR 97035" +176453,Apple Airpods Headphones,1,150,03/26/19 17:58,"985 Wilson St, Los Angeles, CA 90001" +176454,AA Batteries (4-pack),1,3.84,03/12/19 10:41,"347 River St, Los Angeles, CA 90001" +176455,AAA Batteries (4-pack),3,2.99,03/08/19 17:28,"800 4th St, Dallas, TX 75001" +176456,AAA Batteries (4-pack),1,2.99,03/16/19 12:21,"331 Walnut St, Portland, OR 97035" +176457,Wired Headphones,2,11.99,03/29/19 20:11,"546 Willow St, Austin, TX 73301" +176458,AA Batteries (4-pack),1,3.84,03/05/19 00:16,"123 12th St, San Francisco, CA 94016" +176459,AA Batteries (4-pack),2,3.84,03/17/19 18:23,"780 Sunset St, Dallas, TX 75001" +176460,34in Ultrawide Monitor,1,379.99,03/02/19 19:24,"111 Cedar St, Dallas, TX 75001" +176461,USB-C Charging Cable,1,11.95,03/06/19 15:31,"448 Ridge St, Austin, TX 73301" +176462,Vareebadd Phone,1,400,03/01/19 14:59,"497 Center St, Boston, MA 02215" +176463,AA Batteries (4-pack),1,3.84,03/24/19 07:54,"905 Cedar St, San Francisco, CA 94016" +176464,Apple Airpods Headphones,1,150,03/03/19 09:15,"49 14th St, San Francisco, CA 94016" +176465,Bose SoundSport Headphones,1,99.99,03/02/19 20:44,"217 2nd St, Boston, MA 02215" +176466,Apple Airpods Headphones,1,150,03/08/19 12:54,"89 4th St, New York City, NY 10001" +176467,Wired Headphones,1,11.99,03/19/19 20:12,"156 Jefferson St, Austin, TX 73301" +176468,USB-C Charging Cable,1,11.95,03/20/19 11:36,"361 Maple St, Dallas, TX 75001" +176469,Wired Headphones,1,11.99,03/29/19 09:53,"14 Church St, San Francisco, CA 94016" +176470,Apple Airpods Headphones,1,150,03/21/19 11:29,"427 North St, San Francisco, CA 94016" +176471,Wired Headphones,1,11.99,03/03/19 09:10,"364 6th St, San Francisco, CA 94016" +176472,AAA Batteries (4-pack),1,2.99,03/08/19 19:06,"707 West St, Los Angeles, CA 90001" +176473,Macbook Pro Laptop,1,1700,03/19/19 10:49,"236 Walnut St, Boston, MA 02215" +176474,34in Ultrawide Monitor,1,379.99,03/25/19 15:15,"919 Church St, New York City, NY 10001" +176475,USB-C Charging Cable,1,11.95,03/21/19 20:04,"161 14th St, Los Angeles, CA 90001" +176476,Wired Headphones,1,11.99,03/26/19 09:43,"899 Meadow St, San Francisco, CA 94016" +176477,USB-C Charging Cable,1,11.95,03/01/19 10:44,"850 Johnson St, Boston, MA 02215" +176478,Lightning Charging Cable,1,14.95,03/26/19 12:00,"599 Sunset St, San Francisco, CA 94016" +176479,Wired Headphones,2,11.99,03/04/19 21:57,"317 10th St, San Francisco, CA 94016" +176480,USB-C Charging Cable,1,11.95,03/19/19 18:28,"63 7th St, Dallas, TX 75001" +176481,Lightning Charging Cable,1,14.95,03/10/19 08:50,"481 2nd St, Portland, OR 97035" +176482,Wired Headphones,1,11.99,03/12/19 12:51,"379 Lakeview St, San Francisco, CA 94016" +176483,AAA Batteries (4-pack),1,2.99,03/15/19 11:51,"465 13th St, Boston, MA 02215" +176484,AA Batteries (4-pack),1,3.84,03/02/19 16:54,"431 North St, Boston, MA 02215" +176485,USB-C Charging Cable,1,11.95,03/23/19 19:08,"667 1st St, Los Angeles, CA 90001" +176486,USB-C Charging Cable,1,11.95,03/17/19 07:56,"370 14th St, Los Angeles, CA 90001" +176487,27in 4K Gaming Monitor,1,389.99,03/17/19 15:54,"719 Highland St, Los Angeles, CA 90001" +176488,Bose SoundSport Headphones,1,99.99,03/26/19 21:56,"219 2nd St, San Francisco, CA 94016" +176489,AA Batteries (4-pack),2,3.84,03/24/19 02:24,"819 Hickory St, New York City, NY 10001" +176490,Vareebadd Phone,1,400,03/14/19 09:18,"802 13th St, Atlanta, GA 30301" +176491,Bose SoundSport Headphones,1,99.99,03/03/19 22:38,"730 Main St, San Francisco, CA 94016" +176492,Wired Headphones,1,11.99,03/05/19 12:50,"567 Dogwood St, Boston, MA 02215" +176493,AAA Batteries (4-pack),1,2.99,03/24/19 15:46,"274 South St, San Francisco, CA 94016" +176494,USB-C Charging Cable,1,11.95,03/01/19 08:54,"894 Johnson St, Los Angeles, CA 90001" +176495,Bose SoundSport Headphones,1,99.99,03/27/19 21:32,"571 Lake St, Portland, OR 97035" +176496,34in Ultrawide Monitor,1,379.99,03/06/19 21:38,"482 Pine St, San Francisco, CA 94016" +176497,AAA Batteries (4-pack),1,2.99,03/04/19 11:37,"129 Johnson St, San Francisco, CA 94016" +176498,USB-C Charging Cable,1,11.95,03/08/19 16:18,"50 Wilson St, Portland, OR 97035" +176499,Google Phone,2,600,03/14/19 14:07,"809 12th St, Los Angeles, CA 90001" +176500,Apple Airpods Headphones,1,150,03/19/19 16:45,"656 Center St, New York City, NY 10001" +176501,34in Ultrawide Monitor,1,379.99,03/01/19 13:32,"679 Jackson St, San Francisco, CA 94016" +176502,Bose SoundSport Headphones,1,99.99,03/11/19 21:26,"790 Park St, San Francisco, CA 94016" +176503,Apple Airpods Headphones,1,150,03/12/19 07:32,"700 6th St, Boston, MA 02215" +176504,AAA Batteries (4-pack),1,2.99,03/11/19 11:37,"130 11th St, Boston, MA 02215" +176505,Apple Airpods Headphones,1,150,03/14/19 09:25,"78 Ridge St, Portland, OR 97035" +176506,AAA Batteries (4-pack),1,2.99,03/28/19 11:53,"909 12th St, Seattle, WA 98101" +176507,Bose SoundSport Headphones,1,99.99,03/28/19 15:06,"19 South St, Portland, OR 97035" +176508,Apple Airpods Headphones,1,150,03/17/19 18:06,"899 South St, Boston, MA 02215" +176509,Bose SoundSport Headphones,1,99.99,03/01/19 18:55,"976 Lakeview St, Boston, MA 02215" +176510,Wired Headphones,1,11.99,03/24/19 21:20,"550 10th St, New York City, NY 10001" +176511,AA Batteries (4-pack),2,3.84,03/04/19 23:58,"20 West St, San Francisco, CA 94016" +176512,AAA Batteries (4-pack),1,2.99,03/23/19 14:39,"779 Highland St, Atlanta, GA 30301" +176513,Wired Headphones,1,11.99,03/03/19 19:50,"286 Jefferson St, New York City, NY 10001" +176514,34in Ultrawide Monitor,1,379.99,03/31/19 13:01,"819 West St, New York City, NY 10001" +176514,Wired Headphones,1,11.99,03/31/19 13:01,"819 West St, New York City, NY 10001" +176515,Macbook Pro Laptop,1,1700,03/19/19 10:45,"154 Ridge St, San Francisco, CA 94016" +176516,Lightning Charging Cable,1,14.95,03/31/19 13:24,"453 Lakeview St, Boston, MA 02215" +176517,34in Ultrawide Monitor,1,379.99,03/08/19 14:01,"351 Dogwood St, San Francisco, CA 94016" +176518,27in FHD Monitor,1,149.99,03/03/19 20:27,"486 8th St, New York City, NY 10001" +176519,AAA Batteries (4-pack),1,2.99,03/17/19 16:04,"269 12th St, New York City, NY 10001" +176520,Apple Airpods Headphones,1,150,03/30/19 18:32,"886 Spruce St, Portland, OR 97035" +176521,20in Monitor,1,109.99,03/15/19 11:07,"769 Walnut St, Boston, MA 02215" +176522,Wired Headphones,1,11.99,03/03/19 11:40,"690 Elm St, San Francisco, CA 94016" +176523,USB-C Charging Cable,1,11.95,03/15/19 18:28,"983 10th St, New York City, NY 10001" +176524,USB-C Charging Cable,1,11.95,03/20/19 18:59,"99 Johnson St, Portland, OR 97035" +176525,Apple Airpods Headphones,1,150,03/07/19 18:38,"639 6th St, Portland, OR 97035" +176526,AA Batteries (4-pack),1,3.84,03/30/19 19:25,"882 Maple St, San Francisco, CA 94016" +176527,USB-C Charging Cable,1,11.95,03/05/19 17:02,"179 6th St, New York City, NY 10001" +176528,AA Batteries (4-pack),1,3.84,03/21/19 14:49,"30 Willow St, Seattle, WA 98101" +176529,Bose SoundSport Headphones,1,99.99,03/13/19 21:39,"689 North St, Los Angeles, CA 90001" +176530,Lightning Charging Cable,1,14.95,03/08/19 15:53,"633 8th St, Atlanta, GA 30301" +176531,Google Phone,1,600,03/26/19 11:39,"96 12th St, Los Angeles, CA 90001" +176532,Lightning Charging Cable,1,14.95,03/29/19 13:45,"196 4th St, Atlanta, GA 30301" +176533,27in 4K Gaming Monitor,1,389.99,03/11/19 10:33,"29 Main St, Boston, MA 02215" +176534,Wired Headphones,1,11.99,03/07/19 14:17,"544 10th St, Los Angeles, CA 90001" +176535,AAA Batteries (4-pack),2,2.99,03/29/19 09:14,"771 Lake St, New York City, NY 10001" +176536,27in FHD Monitor,1,149.99,03/01/19 20:15,"922 Main St, Atlanta, GA 30301" +176537,ThinkPad Laptop,1,999.99,03/02/19 11:57,"967 Main St, Seattle, WA 98101" +176538,USB-C Charging Cable,1,11.95,03/23/19 14:20,"435 11th St, San Francisco, CA 94016" +176539,AA Batteries (4-pack),1,3.84,03/31/19 09:20,"441 Walnut St, Atlanta, GA 30301" +176540,USB-C Charging Cable,1,11.95,03/02/19 08:11,"672 5th St, Los Angeles, CA 90001" +176541,iPhone,1,700,03/13/19 17:16,"384 4th St, Los Angeles, CA 90001" +176542,AAA Batteries (4-pack),1,2.99,03/17/19 23:10,"540 Cedar St, Los Angeles, CA 90001" +176543,27in 4K Gaming Monitor,1,389.99,03/01/19 10:08,"865 11th St, San Francisco, CA 94016" +176544,USB-C Charging Cable,2,11.95,03/08/19 18:01,"818 Jackson St, New York City, NY 10001" +176545,AAA Batteries (4-pack),1,2.99,03/27/19 11:39,"5 Main St, Boston, MA 02215" +176546,AAA Batteries (4-pack),1,2.99,03/26/19 13:12,"39 Forest St, Dallas, TX 75001" +176547,USB-C Charging Cable,1,11.95,03/04/19 17:31,"129 Highland St, Los Angeles, CA 90001" +176548,Lightning Charging Cable,1,14.95,03/08/19 12:46,"511 Elm St, Portland, OR 97035" +176549,AAA Batteries (4-pack),1,2.99,03/09/19 10:22,"725 5th St, Austin, TX 73301" +176550,Lightning Charging Cable,1,14.95,03/19/19 19:55,"757 Cherry St, Boston, MA 02215" +176551,Lightning Charging Cable,1,14.95,03/11/19 18:10,"533 Hill St, San Francisco, CA 94016" +176552,Flatscreen TV,1,300,03/23/19 12:54,"205 2nd St, Boston, MA 02215" +176553,USB-C Charging Cable,1,11.95,03/16/19 22:28,"242 Maple St, Dallas, TX 75001" +176554,AA Batteries (4-pack),2,3.84,03/12/19 19:51,"355 4th St, New York City, NY 10001" +176555,ThinkPad Laptop,1,999.99,03/07/19 11:14,"55 Forest St, San Francisco, CA 94016" +176556,Wired Headphones,1,11.99,03/09/19 23:02,"735 Madison St, Dallas, TX 75001" +176557,Google Phone,1,600,03/02/19 19:41,"7 Sunset St, Los Angeles, CA 90001" +176557,Wired Headphones,1,11.99,03/02/19 19:41,"7 Sunset St, Los Angeles, CA 90001" +176558,USB-C Charging Cable,1,11.95,03/19/19 01:06,"105 Center St, Dallas, TX 75001" +176559,iPhone,1,700,03/22/19 15:55,"983 2nd St, New York City, NY 10001" +176560,USB-C Charging Cable,1,11.95,03/30/19 11:16,"559 9th St, Austin, TX 73301" +176561,Lightning Charging Cable,1,14.95,03/30/19 14:53,"648 Jefferson St, Atlanta, GA 30301" +176562,AAA Batteries (4-pack),3,2.99,03/11/19 23:25,"141 9th St, Seattle, WA 98101" +176563,AAA Batteries (4-pack),1,2.99,03/16/19 20:04,"411 2nd St, Austin, TX 73301" +176564,Flatscreen TV,1,300,03/22/19 14:48,"940 Spruce St, San Francisco, CA 94016" +176565,Macbook Pro Laptop,1,1700,03/24/19 16:36,"826 Dogwood St, Boston, MA 02215" +176566,Bose SoundSport Headphones,1,99.99,03/08/19 12:00,"610 Walnut St, San Francisco, CA 94016" +176567,USB-C Charging Cable,2,11.95,03/21/19 18:29,"413 Meadow St, New York City, NY 10001" +176568,USB-C Charging Cable,1,11.95,03/07/19 13:49,"151 Madison St, Dallas, TX 75001" +176569,Wired Headphones,1,11.99,03/29/19 20:28,"382 6th St, Dallas, TX 75001" +176570,Apple Airpods Headphones,1,150,03/16/19 20:14,"856 12th St, Atlanta, GA 30301" +176571,Wired Headphones,1,11.99,03/11/19 22:37,"962 Forest St, Boston, MA 02215" +176572,Bose SoundSport Headphones,1,99.99,03/24/19 18:55,"563 South St, Los Angeles, CA 90001" +176573,Apple Airpods Headphones,1,150,03/17/19 14:27,"837 Walnut St, Los Angeles, CA 90001" +176574,Lightning Charging Cable,1,14.95,03/10/19 11:11,"824 14th St, New York City, NY 10001" +176575,AA Batteries (4-pack),1,3.84,03/17/19 16:20,"650 Cedar St, San Francisco, CA 94016" +176576,34in Ultrawide Monitor,1,379.99,03/22/19 08:09,"623 11th St, Portland, OR 97035" +176577,Wired Headphones,1,11.99,03/04/19 19:53,"711 South St, Atlanta, GA 30301" +176578,AA Batteries (4-pack),1,3.84,03/12/19 16:52,"446 4th St, San Francisco, CA 94016" +176579,Wired Headphones,1,11.99,03/08/19 12:34,"746 Ridge St, San Francisco, CA 94016" +176580,34in Ultrawide Monitor,1,379.99,03/05/19 18:07,"970 Main St, Los Angeles, CA 90001" +176581,AAA Batteries (4-pack),2,2.99,03/24/19 14:10,"947 14th St, San Francisco, CA 94016" +176582,AA Batteries (4-pack),1,3.84,03/30/19 13:12,"550 5th St, Portland, ME 04101" +176583,Apple Airpods Headphones,1,150,03/27/19 13:34,"322 North St, Boston, MA 02215" +176584,27in FHD Monitor,1,149.99,03/27/19 00:08,"43 Forest St, Dallas, TX 75001" +176585,AA Batteries (4-pack),2,3.84,03/08/19 17:40,"584 Spruce St, New York City, NY 10001" +176586,AA Batteries (4-pack),2,3.84,03/23/19 16:52,"500 Ridge St, San Francisco, CA 94016" +176587,USB-C Charging Cable,1,11.95,03/30/19 22:30,"166 West St, Dallas, TX 75001" +176588,Lightning Charging Cable,1,14.95,03/08/19 11:58,"443 Madison St, Austin, TX 73301" +176589,34in Ultrawide Monitor,1,379.99,03/05/19 23:37,"107 12th St, Seattle, WA 98101" +176590,Apple Airpods Headphones,1,150,03/21/19 10:13,"268 West St, Austin, TX 73301" +176591,Lightning Charging Cable,1,14.95,03/03/19 16:32,"502 Adams St, Portland, OR 97035" +176592,Wired Headphones,1,11.99,03/19/19 20:03,"616 Main St, New York City, NY 10001" +176593,AA Batteries (4-pack),3,3.84,03/11/19 19:35,"684 Church St, Los Angeles, CA 90001" +176594,Bose SoundSport Headphones,1,99.99,03/29/19 21:22,"715 North St, Atlanta, GA 30301" +176595,AAA Batteries (4-pack),1,2.99,03/05/19 18:22,"103 Meadow St, Austin, TX 73301" +176596,27in FHD Monitor,1,149.99,03/09/19 16:04,"232 Forest St, San Francisco, CA 94016" +176597,AA Batteries (4-pack),1,3.84,03/14/19 13:19,"744 Jackson St, San Francisco, CA 94016" +176598,AAA Batteries (4-pack),2,2.99,03/29/19 13:47,"342 Church St, Atlanta, GA 30301" +176599,iPhone,1,700,03/03/19 15:34,"87 Lincoln St, Boston, MA 02215" +176600,USB-C Charging Cable,1,11.95,03/07/19 19:07,"720 West St, New York City, NY 10001" +176601,27in FHD Monitor,1,149.99,03/17/19 08:23,"403 14th St, Boston, MA 02215" +176602,27in 4K Gaming Monitor,1,389.99,03/16/19 18:14,"756 11th St, Boston, MA 02215" +176603,AA Batteries (4-pack),1,3.84,03/02/19 10:22,"789 River St, San Francisco, CA 94016" +176604,Wired Headphones,1,11.99,03/06/19 18:44,"189 9th St, Boston, MA 02215" +176605,LG Washing Machine,1,600.0,03/08/19 11:41,"943 Spruce St, Los Angeles, CA 90001" +176606,USB-C Charging Cable,1,11.95,03/16/19 20:19,"657 Ridge St, Seattle, WA 98101" +176607,AAA Batteries (4-pack),1,2.99,03/25/19 18:59,"766 Jackson St, Austin, TX 73301" +176608,27in FHD Monitor,1,149.99,03/16/19 05:44,"86 11th St, Los Angeles, CA 90001" +176609,AAA Batteries (4-pack),1,2.99,03/22/19 11:12,"988 Highland St, New York City, NY 10001" +176610,27in 4K Gaming Monitor,1,389.99,03/23/19 19:56,"241 12th St, Los Angeles, CA 90001" +176611,Wired Headphones,1,11.99,03/08/19 14:01,"843 Elm St, San Francisco, CA 94016" +176612,Apple Airpods Headphones,1,150,03/11/19 22:27,"81 8th St, Seattle, WA 98101" +176613,27in 4K Gaming Monitor,1,389.99,03/21/19 16:03,"254 Ridge St, San Francisco, CA 94016" +176614,USB-C Charging Cable,1,11.95,03/12/19 13:42,"311 Washington St, Atlanta, GA 30301" +,,,,, +176615,Bose SoundSport Headphones,1,99.99,03/12/19 01:39,"852 Lakeview St, Dallas, TX 75001" +176616,Wired Headphones,1,11.99,03/31/19 13:53,"180 South St, San Francisco, CA 94016" +176617,USB-C Charging Cable,1,11.95,03/04/19 22:17,"217 Spruce St, Portland, OR 97035" +176618,Google Phone,1,600,03/21/19 13:06,"824 2nd St, Boston, MA 02215" +176619,USB-C Charging Cable,1,11.95,03/22/19 20:22,"56 Highland St, San Francisco, CA 94016" +176620,Wired Headphones,1,11.99,03/22/19 20:06,"952 8th St, Los Angeles, CA 90001" +176621,USB-C Charging Cable,1,11.95,03/15/19 12:48,"712 Walnut St, New York City, NY 10001" +176622,Google Phone,1,600,03/06/19 23:01,"874 Highland St, San Francisco, CA 94016" +176623,Wired Headphones,1,11.99,03/27/19 07:46,"678 Wilson St, New York City, NY 10001" +176624,AAA Batteries (4-pack),1,2.99,03/31/19 10:22,"304 Cedar St, San Francisco, CA 94016" +176625,AAA Batteries (4-pack),1,2.99,03/29/19 13:14,"341 River St, San Francisco, CA 94016" +176626,Wired Headphones,1,11.99,03/19/19 21:40,"125 River St, San Francisco, CA 94016" +176627,Lightning Charging Cable,1,14.95,03/19/19 10:43,"949 Church St, San Francisco, CA 94016" +176628,Macbook Pro Laptop,1,1700,03/25/19 15:28,"401 Cherry St, New York City, NY 10001" +176629,20in Monitor,1,109.99,03/05/19 21:05,"790 14th St, Portland, OR 97035" +176630,Lightning Charging Cable,1,14.95,03/12/19 22:15,"841 7th St, San Francisco, CA 94016" +176631,USB-C Charging Cable,1,11.95,03/04/19 13:22,"20 Jackson St, Portland, OR 97035" +176632,27in FHD Monitor,1,149.99,03/15/19 13:42,"853 Pine St, New York City, NY 10001" +176633,AAA Batteries (4-pack),1,2.99,03/04/19 17:10,"658 12th St, Dallas, TX 75001" +176634,USB-C Charging Cable,1,11.95,03/12/19 16:04,"376 Dogwood St, San Francisco, CA 94016" +176635,Vareebadd Phone,1,400,03/16/19 13:35,"620 Cherry St, San Francisco, CA 94016" +176636,Lightning Charging Cable,1,14.95,03/08/19 13:16,"101 6th St, Los Angeles, CA 90001" +176637,34in Ultrawide Monitor,1,379.99,03/20/19 17:36,"909 Cedar St, San Francisco, CA 94016" +176638,Apple Airpods Headphones,1,150,03/22/19 18:56,"600 Jefferson St, Boston, MA 02215" +176639,USB-C Charging Cable,1,11.95,03/01/19 11:27,"363 South St, San Francisco, CA 94016" +176640,27in FHD Monitor,1,149.99,03/04/19 12:40,"807 Jefferson St, San Francisco, CA 94016" +176641,Macbook Pro Laptop,1,1700,03/02/19 17:18,"208 Johnson St, New York City, NY 10001" +176642,USB-C Charging Cable,1,11.95,03/29/19 10:14,"188 Sunset St, New York City, NY 10001" +176643,Bose SoundSport Headphones,1,99.99,03/18/19 00:48,"328 Church St, Atlanta, GA 30301" +176644,Google Phone,1,600,03/05/19 01:28,"303 Spruce St, Atlanta, GA 30301" +176644,USB-C Charging Cable,1,11.95,03/05/19 01:28,"303 Spruce St, Atlanta, GA 30301" +176645,USB-C Charging Cable,1,11.95,03/01/19 09:15,"659 5th St, San Francisco, CA 94016" +176646,Lightning Charging Cable,1,14.95,03/05/19 23:46,"96 6th St, Seattle, WA 98101" +176647,LG Washing Machine,1,600.0,03/28/19 22:29,"751 Elm St, San Francisco, CA 94016" +176648,34in Ultrawide Monitor,1,379.99,03/17/19 13:09,"703 Hill St, Seattle, WA 98101" +176649,Wired Headphones,2,11.99,03/31/19 10:37,"35 Park St, New York City, NY 10001" +176650,ThinkPad Laptop,1,999.99,03/16/19 11:57,"396 Johnson St, New York City, NY 10001" +,,,,, +176651,AAA Batteries (4-pack),2,2.99,03/10/19 12:12,"211 South St, Atlanta, GA 30301" +176652,Wired Headphones,1,11.99,03/21/19 10:34,"183 South St, New York City, NY 10001" +176653,Lightning Charging Cable,1,14.95,03/17/19 19:59,"522 Adams St, San Francisco, CA 94016" +176654,AA Batteries (4-pack),2,3.84,03/16/19 22:51,"650 Lakeview St, Los Angeles, CA 90001" +176655,Apple Airpods Headphones,1,150,03/05/19 19:30,"322 Forest St, Atlanta, GA 30301" +176656,ThinkPad Laptop,1,999.99,03/22/19 01:15,"760 Cherry St, Boston, MA 02215" +176657,Wired Headphones,1,11.99,03/02/19 19:46,"275 4th St, Portland, OR 97035" +176658,AAA Batteries (4-pack),2,2.99,03/08/19 16:51,"207 6th St, Boston, MA 02215" +176659,Lightning Charging Cable,1,14.95,03/22/19 18:06,"948 Wilson St, Atlanta, GA 30301" +176660,Apple Airpods Headphones,1,150,03/18/19 12:57,"886 5th St, Dallas, TX 75001" +176661,AA Batteries (4-pack),1,3.84,03/07/19 14:13,"870 Lakeview St, Boston, MA 02215" +176662,Bose SoundSport Headphones,1,99.99,03/22/19 19:56,"394 Jackson St, Los Angeles, CA 90001" +176663,Google Phone,1,600,03/04/19 16:19,"457 Wilson St, New York City, NY 10001" +176664,AA Batteries (4-pack),1,3.84,03/15/19 07:57,"218 Wilson St, Los Angeles, CA 90001" +176665,Bose SoundSport Headphones,1,99.99,03/19/19 18:52,"947 Lake St, Dallas, TX 75001" +176666,Wired Headphones,1,11.99,03/25/19 10:10,"623 13th St, Los Angeles, CA 90001" +176667,Bose SoundSport Headphones,1,99.99,03/06/19 12:57,"953 Main St, Seattle, WA 98101" +176668,AA Batteries (4-pack),1,3.84,03/07/19 12:20,"679 Center St, Boston, MA 02215" +176669,Apple Airpods Headphones,1,150,03/20/19 09:52,"592 8th St, Portland, ME 04101" +176670,Lightning Charging Cable,1,14.95,03/29/19 14:53,"239 Johnson St, Atlanta, GA 30301" +176671,34in Ultrawide Monitor,1,379.99,03/20/19 17:02,"926 1st St, San Francisco, CA 94016" +176672,27in FHD Monitor,1,149.99,03/14/19 18:41,"860 Meadow St, San Francisco, CA 94016" +176673,AA Batteries (4-pack),1,3.84,03/26/19 11:08,"447 13th St, Seattle, WA 98101" +176673,AAA Batteries (4-pack),1,2.99,03/26/19 11:08,"447 13th St, Seattle, WA 98101" +176674,27in FHD Monitor,1,149.99,03/03/19 13:14,"314 River St, Portland, OR 97035" +176675,AAA Batteries (4-pack),2,2.99,03/14/19 19:21,"914 10th St, San Francisco, CA 94016" +176676,27in 4K Gaming Monitor,1,389.99,03/05/19 14:07,"721 Lincoln St, Seattle, WA 98101" +176677,USB-C Charging Cable,1,11.95,03/17/19 09:13,"380 10th St, New York City, NY 10001" +176678,AA Batteries (4-pack),2,3.84,03/12/19 22:33,"122 Lake St, Atlanta, GA 30301" +176679,AAA Batteries (4-pack),1,2.99,03/25/19 14:28,"744 Lakeview St, Seattle, WA 98101" +176680,Apple Airpods Headphones,1,150,03/27/19 12:37,"463 Lake St, Los Angeles, CA 90001" +176681,Wired Headphones,1,11.99,03/12/19 13:53,"489 2nd St, San Francisco, CA 94016" +176682,Wired Headphones,1,11.99,03/04/19 12:54,"637 Park St, New York City, NY 10001" +176683,USB-C Charging Cable,1,11.95,03/23/19 23:19,"257 11th St, New York City, NY 10001" +176684,Google Phone,1,600,03/09/19 16:07,"633 Elm St, Austin, TX 73301" +176685,Apple Airpods Headphones,1,150,03/12/19 09:02,"589 Church St, Los Angeles, CA 90001" +176686,20in Monitor,1,109.99,03/24/19 23:14,"387 Hill St, San Francisco, CA 94016" +176687,Apple Airpods Headphones,1,150,03/22/19 20:46,"409 Pine St, Portland, ME 04101" +176688,USB-C Charging Cable,1,11.95,03/07/19 19:36,"8 Cherry St, New York City, NY 10001" +176689,27in 4K Gaming Monitor,1,389.99,03/12/19 18:07,"68 9th St, Dallas, TX 75001" +176690,27in 4K Gaming Monitor,1,389.99,03/03/19 19:23,"764 Spruce St, Boston, MA 02215" +176691,AA Batteries (4-pack),1,3.84,03/01/19 12:15,"947 Highland St, Los Angeles, CA 90001" +176692,Wired Headphones,1,11.99,03/16/19 11:55,"384 13th St, San Francisco, CA 94016" +176693,20in Monitor,1,109.99,03/18/19 21:29,"798 Meadow St, New York City, NY 10001" +176694,Bose SoundSport Headphones,1,99.99,03/20/19 10:44,"84 12th St, Atlanta, GA 30301" +176695,20in Monitor,1,109.99,03/20/19 12:22,"329 Church St, Boston, MA 02215" +176696,34in Ultrawide Monitor,1,379.99,03/26/19 08:52,"723 Spruce St, Los Angeles, CA 90001" +176697,AA Batteries (4-pack),3,3.84,03/29/19 17:10,"621 Wilson St, Portland, OR 97035" +176698,Wired Headphones,3,11.99,03/12/19 12:46,"421 Forest St, San Francisco, CA 94016" +176699,AA Batteries (4-pack),1,3.84,03/31/19 15:29,"634 North St, Los Angeles, CA 90001" +176700,20in Monitor,1,109.99,03/18/19 13:26,"982 Lake St, Atlanta, GA 30301" +176701,AA Batteries (4-pack),1,3.84,03/19/19 20:23,"440 Ridge St, New York City, NY 10001" +176702,Lightning Charging Cable,1,14.95,03/26/19 16:54,"335 12th St, Portland, OR 97035" +176703,Wired Headphones,1,11.99,03/24/19 06:47,"112 Jackson St, Atlanta, GA 30301" +176704,USB-C Charging Cable,1,11.95,03/25/19 01:39,"569 Hill St, Seattle, WA 98101" +176705,USB-C Charging Cable,1,11.95,03/10/19 23:26,"310 Cherry St, Los Angeles, CA 90001" +176706,Wired Headphones,1,11.99,03/29/19 08:15,"500 Chestnut St, Los Angeles, CA 90001" +176707,Apple Airpods Headphones,1,150,03/15/19 17:33,"178 Johnson St, San Francisco, CA 94016" +176708,AA Batteries (4-pack),1,3.84,03/22/19 14:10,"978 Lincoln St, Boston, MA 02215" +176709,34in Ultrawide Monitor,1,379.99,03/09/19 00:14,"158 Willow St, Boston, MA 02215" +176710,Lightning Charging Cable,1,14.95,03/15/19 20:30,"789 13th St, Seattle, WA 98101" +176711,AA Batteries (4-pack),2,3.84,03/14/19 20:45,"859 5th St, Boston, MA 02215" +176712,AA Batteries (4-pack),2,3.84,03/30/19 04:53,"656 Sunset St, New York City, NY 10001" +176713,AAA Batteries (4-pack),1,2.99,03/12/19 07:58,"969 10th St, New York City, NY 10001" +176714,Bose SoundSport Headphones,1,99.99,03/13/19 14:36,"618 Hill St, Atlanta, GA 30301" +176715,Wired Headphones,1,11.99,03/04/19 11:56,"226 Forest St, New York City, NY 10001" +176716,Apple Airpods Headphones,1,150,03/09/19 22:11,"12 8th St, Austin, TX 73301" +176717,iPhone,1,700,03/14/19 14:48,"630 Pine St, Dallas, TX 75001" +176718,27in FHD Monitor,1,149.99,03/15/19 09:53,"615 10th St, Atlanta, GA 30301" +176719,Lightning Charging Cable,1,14.95,03/30/19 18:26,"737 9th St, Los Angeles, CA 90001" +176720,USB-C Charging Cable,1,11.95,03/29/19 14:56,"804 12th St, New York City, NY 10001" +176721,AA Batteries (4-pack),1,3.84,03/06/19 07:59,"84 Cedar St, Seattle, WA 98101" +176722,Wired Headphones,1,11.99,03/24/19 10:09,"938 Dogwood St, San Francisco, CA 94016" +176723,Lightning Charging Cable,1,14.95,03/09/19 12:48,"237 Washington St, Portland, OR 97035" +176724,Wired Headphones,1,11.99,03/13/19 16:04,"914 14th St, Boston, MA 02215" +176725,AA Batteries (4-pack),2,3.84,03/15/19 11:06,"317 Ridge St, Los Angeles, CA 90001" +176726,27in FHD Monitor,1,149.99,03/05/19 07:58,"650 Church St, Dallas, TX 75001" +176727,USB-C Charging Cable,2,11.95,03/01/19 14:15,"809 5th St, San Francisco, CA 94016" +176728,Wired Headphones,1,11.99,03/28/19 12:18,"284 Dogwood St, Atlanta, GA 30301" +176729,Lightning Charging Cable,1,14.95,03/06/19 08:23,"89 Madison St, Atlanta, GA 30301" +176730,Bose SoundSport Headphones,1,99.99,03/21/19 06:31,"578 Lincoln St, Atlanta, GA 30301" +176731,Lightning Charging Cable,1,14.95,03/14/19 16:28,"232 Hill St, Los Angeles, CA 90001" +176732,27in 4K Gaming Monitor,1,389.99,03/21/19 23:17,"658 Adams St, Dallas, TX 75001" +176733,Apple Airpods Headphones,1,150,03/24/19 09:17,"928 Meadow St, San Francisco, CA 94016" +176734,AA Batteries (4-pack),1,3.84,03/30/19 22:41,"664 1st St, Austin, TX 73301" +176735,27in 4K Gaming Monitor,1,389.99,03/12/19 19:08,"294 Madison St, Dallas, TX 75001" +176736,Wired Headphones,1,11.99,03/22/19 17:33,"908 Wilson St, Los Angeles, CA 90001" +176737,ThinkPad Laptop,1,999.99,03/25/19 12:00,"745 11th St, Dallas, TX 75001" +176738,Macbook Pro Laptop,1,1700,03/01/19 17:43,"822 Elm St, Boston, MA 02215" +176739,AA Batteries (4-pack),1,3.84,03/18/19 14:07,"766 14th St, Atlanta, GA 30301" +176740,Wired Headphones,1,11.99,03/23/19 14:44,"328 Dogwood St, Seattle, WA 98101" +176741,Google Phone,1,600,03/03/19 16:40,"941 Forest St, Austin, TX 73301" +176742,34in Ultrawide Monitor,1,379.99,03/06/19 12:43,"208 River St, New York City, NY 10001" +176743,Apple Airpods Headphones,1,150,03/23/19 23:53,"298 Forest St, Austin, TX 73301" +176744,Lightning Charging Cable,1,14.95,03/31/19 14:09,"423 Church St, Los Angeles, CA 90001" +176745,Lightning Charging Cable,2,14.95,03/14/19 13:09,"419 South St, San Francisco, CA 94016" +176746,AAA Batteries (4-pack),1,2.99,03/01/19 19:43,"504 Chestnut St, Boston, MA 02215" +176747,USB-C Charging Cable,2,11.95,03/03/19 19:54,"284 4th St, Austin, TX 73301" +176748,Apple Airpods Headphones,1,150,03/28/19 13:04,"924 1st St, San Francisco, CA 94016" +176749,27in FHD Monitor,1,149.99,03/04/19 10:53,"149 Jefferson St, Los Angeles, CA 90001" +176750,27in FHD Monitor,1,149.99,03/22/19 18:20,"369 Hickory St, New York City, NY 10001" +176751,AA Batteries (4-pack),1,3.84,03/24/19 13:58,"663 Adams St, Dallas, TX 75001" +176752,Wired Headphones,1,11.99,03/02/19 18:27,"341 Lakeview St, Boston, MA 02215" +176753,Wired Headphones,1,11.99,03/05/19 21:39,"694 Sunset St, Boston, MA 02215" +176754,Lightning Charging Cable,1,14.95,03/03/19 16:44,"267 Lake St, Boston, MA 02215" +176755,AAA Batteries (4-pack),2,2.99,03/17/19 13:12,"698 Church St, Atlanta, GA 30301" +176756,Bose SoundSport Headphones,1,99.99,03/10/19 19:28,"479 Dogwood St, Dallas, TX 75001" +176757,iPhone,1,700,03/06/19 12:07,"783 Hickory St, Los Angeles, CA 90001" +176758,Bose SoundSport Headphones,1,99.99,03/17/19 02:18,"13 Church St, Seattle, WA 98101" +176759,Wired Headphones,1,11.99,03/11/19 15:18,"538 Jefferson St, Boston, MA 02215" +176760,Macbook Pro Laptop,1,1700,03/07/19 17:55,"805 Meadow St, New York City, NY 10001" +176761,AA Batteries (4-pack),1,3.84,03/01/19 20:44,"424 Dogwood St, Dallas, TX 75001" +176762,Google Phone,1,600,03/03/19 10:04,"153 Meadow St, Dallas, TX 75001" +176762,USB-C Charging Cable,1,11.95,03/03/19 10:04,"153 Meadow St, Dallas, TX 75001" +176763,USB-C Charging Cable,1,11.95,03/27/19 14:43,"700 4th St, Dallas, TX 75001" +176764,Flatscreen TV,1,300,03/14/19 16:02,"71 Walnut St, Atlanta, GA 30301" +176765,Lightning Charging Cable,1,14.95,03/14/19 14:15,"18 Spruce St, San Francisco, CA 94016" +176766,AAA Batteries (4-pack),1,2.99,03/16/19 18:21,"650 Elm St, San Francisco, CA 94016" +176767,27in 4K Gaming Monitor,1,389.99,03/14/19 13:40,"755 10th St, Los Angeles, CA 90001" +176768,AA Batteries (4-pack),1,3.84,03/07/19 15:48,"17 8th St, New York City, NY 10001" +176769,USB-C Charging Cable,1,11.95,03/06/19 14:07,"699 North St, Atlanta, GA 30301" +176770,USB-C Charging Cable,1,11.95,03/07/19 06:13,"669 Cedar St, New York City, NY 10001" +176771,AA Batteries (4-pack),1,3.84,03/15/19 13:00,"786 Forest St, New York City, NY 10001" +176772,Lightning Charging Cable,1,14.95,03/31/19 11:52,"635 Park St, Dallas, TX 75001" +176772,Lightning Charging Cable,1,14.95,03/31/19 11:52,"635 Park St, Dallas, TX 75001" +176773,AAA Batteries (4-pack),1,2.99,03/15/19 16:24,"168 1st St, Atlanta, GA 30301" +176774,Wired Headphones,1,11.99,03/27/19 11:44,"241 River St, San Francisco, CA 94016" +176775,AAA Batteries (4-pack),1,2.99,03/16/19 01:57,"360 7th St, New York City, NY 10001" +176776,AAA Batteries (4-pack),2,2.99,03/26/19 08:32,"980 Cherry St, Boston, MA 02215" +176777,Lightning Charging Cable,1,14.95,03/31/19 08:46,"249 Walnut St, Los Angeles, CA 90001" +176778,AAA Batteries (4-pack),1,2.99,03/28/19 13:43,"830 1st St, Dallas, TX 75001" +176779,27in FHD Monitor,1,149.99,03/02/19 15:42,"546 Dogwood St, New York City, NY 10001" +176780,iPhone,1,700,03/23/19 23:18,"667 Hickory St, Dallas, TX 75001" +176781,Flatscreen TV,1,300,03/15/19 15:07,"257 Ridge St, San Francisco, CA 94016" +176782,Lightning Charging Cable,1,14.95,03/03/19 12:36,"802 Adams St, New York City, NY 10001" +176783,AAA Batteries (4-pack),1,2.99,03/17/19 12:24,"986 Dogwood St, Atlanta, GA 30301" +176784,Apple Airpods Headphones,2,150,04/01/19 00:48,"111 Jefferson St, Atlanta, GA 30301" +176785,AAA Batteries (4-pack),1,2.99,03/10/19 19:33,"856 Hill St, New York City, NY 10001" +176786,Wired Headphones,1,11.99,03/29/19 08:57,"485 Church St, Los Angeles, CA 90001" +176787,27in 4K Gaming Monitor,1,389.99,03/13/19 11:43,"130 Park St, Portland, OR 97035" +176788,Wired Headphones,1,11.99,03/18/19 20:29,"823 5th St, Seattle, WA 98101" +176789,AAA Batteries (4-pack),1,2.99,03/15/19 18:48,"305 Lake St, Austin, TX 73301" +176790,Flatscreen TV,1,300,03/16/19 20:25,"170 8th St, San Francisco, CA 94016" +176791,Lightning Charging Cable,1,14.95,03/23/19 12:47,"529 River St, San Francisco, CA 94016" +176792,Lightning Charging Cable,1,14.95,03/26/19 11:35,"513 Chestnut St, San Francisco, CA 94016" +176793,iPhone,1,700,03/19/19 14:42,"734 Highland St, New York City, NY 10001" +176794,Bose SoundSport Headphones,1,99.99,03/04/19 09:26,"376 7th St, Los Angeles, CA 90001" +176795,Lightning Charging Cable,1,14.95,03/15/19 13:56,"480 Pine St, San Francisco, CA 94016" +176796,27in FHD Monitor,1,149.99,03/13/19 18:50,"700 Maple St, Los Angeles, CA 90001" +176797,Apple Airpods Headphones,1,150,03/30/19 14:23,"1 11th St, San Francisco, CA 94016" +176798,27in 4K Gaming Monitor,1,389.99,03/15/19 11:32,"932 Church St, New York City, NY 10001" +176799,34in Ultrawide Monitor,1,379.99,03/14/19 20:35,"38 Highland St, San Francisco, CA 94016" +176800,iPhone,1,700,03/22/19 22:32,"101 Center St, Boston, MA 02215" +176800,Lightning Charging Cable,1,14.95,03/22/19 22:32,"101 Center St, Boston, MA 02215" +,,,,, +176801,Bose SoundSport Headphones,1,99.99,03/10/19 13:30,"991 Lincoln St, New York City, NY 10001" +176802,Apple Airpods Headphones,1,150,03/20/19 20:09,"625 Jackson St, Portland, OR 97035" +176803,Bose SoundSport Headphones,1,99.99,03/20/19 14:23,"545 8th St, Los Angeles, CA 90001" +176804,34in Ultrawide Monitor,1,379.99,03/29/19 18:22,"871 River St, New York City, NY 10001" +176805,AAA Batteries (4-pack),2,2.99,03/01/19 21:39,"500 7th St, Seattle, WA 98101" +176806,Apple Airpods Headphones,1,150,03/14/19 11:21,"613 8th St, Dallas, TX 75001" +176807,27in 4K Gaming Monitor,1,389.99,03/01/19 20:11,"884 14th St, Dallas, TX 75001" +176808,ThinkPad Laptop,1,999.99,03/19/19 11:17,"305 8th St, Atlanta, GA 30301" +176809,Lightning Charging Cable,1,14.95,03/28/19 02:48,"746 Dogwood St, San Francisco, CA 94016" +176810,Lightning Charging Cable,1,14.95,03/28/19 22:08,"818 Church St, New York City, NY 10001" +176811,iPhone,1,700,03/17/19 12:47,"600 Walnut St, Boston, MA 02215" +176812,USB-C Charging Cable,1,11.95,03/18/19 21:47,"873 Wilson St, Los Angeles, CA 90001" +176813,Google Phone,1,600,03/02/19 20:39,"965 West St, Dallas, TX 75001" +176814,AAA Batteries (4-pack),3,2.99,03/17/19 13:24,"382 Church St, Austin, TX 73301" +176815,Wired Headphones,1,11.99,03/25/19 21:26,"877 Center St, Austin, TX 73301" +176816,USB-C Charging Cable,1,11.95,03/21/19 20:14,"257 Walnut St, San Francisco, CA 94016" +176817,Bose SoundSport Headphones,1,99.99,03/19/19 20:44,"999 13th St, New York City, NY 10001" +176818,27in 4K Gaming Monitor,1,389.99,03/27/19 23:47,"176 Park St, San Francisco, CA 94016" +176819,Wired Headphones,1,11.99,03/10/19 13:20,"502 Walnut St, Los Angeles, CA 90001" +176820,27in 4K Gaming Monitor,1,389.99,03/12/19 15:42,"238 Cedar St, New York City, NY 10001" +176821,Google Phone,1,600,03/11/19 13:29,"633 North St, Portland, ME 04101" +176822,34in Ultrawide Monitor,1,379.99,03/06/19 11:57,"919 Lincoln St, New York City, NY 10001" +176823,Lightning Charging Cable,1,14.95,03/06/19 10:12,"385 5th St, Portland, OR 97035" +176824,USB-C Charging Cable,1,11.95,03/20/19 00:26,"944 Willow St, Seattle, WA 98101" +176825,AAA Batteries (4-pack),1,2.99,03/05/19 20:46,"740 Walnut St, Los Angeles, CA 90001" +176826,Bose SoundSport Headphones,1,99.99,03/20/19 14:15,"191 8th St, New York City, NY 10001" +176826,Apple Airpods Headphones,1,150,03/20/19 14:15,"191 8th St, New York City, NY 10001" +176827,Macbook Pro Laptop,1,1700,03/13/19 11:48,"521 Center St, Seattle, WA 98101" +176828,27in 4K Gaming Monitor,1,389.99,03/23/19 13:03,"41 Washington St, Boston, MA 02215" +176829,Lightning Charging Cable,1,14.95,03/06/19 08:16,"413 14th St, New York City, NY 10001" +176830,Google Phone,1,600,03/09/19 15:45,"149 1st St, Boston, MA 02215" +176831,Apple Airpods Headphones,1,150,03/10/19 14:51,"983 9th St, Seattle, WA 98101" +176832,USB-C Charging Cable,1,11.95,03/07/19 11:25,"647 Maple St, Dallas, TX 75001" +176833,Vareebadd Phone,1,400,03/02/19 18:14,"361 1st St, Boston, MA 02215" +176834,Apple Airpods Headphones,1,150,03/31/19 16:14,"565 Main St, Boston, MA 02215" +176835,AA Batteries (4-pack),1,3.84,03/11/19 02:11,"556 5th St, Los Angeles, CA 90001" +176836,USB-C Charging Cable,1,11.95,03/12/19 11:55,"752 Meadow St, Seattle, WA 98101" +176837,Apple Airpods Headphones,1,150,03/05/19 21:48,"177 11th St, Boston, MA 02215" +176838,AA Batteries (4-pack),1,3.84,03/31/19 12:44,"790 1st St, Los Angeles, CA 90001" +176839,AA Batteries (4-pack),1,3.84,03/26/19 11:50,"927 Forest St, Los Angeles, CA 90001" +176840,20in Monitor,1,109.99,03/06/19 16:39,"227 1st St, New York City, NY 10001" +176841,AAA Batteries (4-pack),1,2.99,03/24/19 06:04,"421 Center St, Seattle, WA 98101" +176842,AAA Batteries (4-pack),1,2.99,03/27/19 10:23,"427 10th St, San Francisco, CA 94016" +176843,AAA Batteries (4-pack),2,2.99,03/07/19 23:01,"126 8th St, Austin, TX 73301" +176844,ThinkPad Laptop,1,999.99,03/17/19 21:31,"202 11th St, New York City, NY 10001" +176845,Wired Headphones,1,11.99,03/17/19 07:57,"188 Lake St, Los Angeles, CA 90001" +176846,Macbook Pro Laptop,1,1700,03/19/19 14:46,"471 Walnut St, Atlanta, GA 30301" +176847,Apple Airpods Headphones,1,150,03/07/19 21:22,"48 9th St, Los Angeles, CA 90001" +176848,Flatscreen TV,1,300,03/29/19 14:34,"561 4th St, Dallas, TX 75001" +176849,Lightning Charging Cable,1,14.95,03/11/19 21:10,"331 Meadow St, Dallas, TX 75001" +176850,AA Batteries (4-pack),1,3.84,03/10/19 21:57,"599 Madison St, San Francisco, CA 94016" +176851,Flatscreen TV,1,300,03/11/19 18:40,"318 Walnut St, Los Angeles, CA 90001" +176851,Apple Airpods Headphones,1,150,03/11/19 18:40,"318 Walnut St, Los Angeles, CA 90001" +176852,Bose SoundSport Headphones,1,99.99,03/26/19 15:04,"265 North St, New York City, NY 10001" +176853,AAA Batteries (4-pack),2,2.99,03/10/19 11:25,"419 Cedar St, Los Angeles, CA 90001" +176854,Lightning Charging Cable,2,14.95,03/12/19 19:39,"821 Willow St, Boston, MA 02215" +176855,AA Batteries (4-pack),1,3.84,03/13/19 21:47,"816 Ridge St, Atlanta, GA 30301" +176856,AAA Batteries (4-pack),4,2.99,03/11/19 17:33,"24 Chestnut St, San Francisco, CA 94016" +176857,USB-C Charging Cable,1,11.95,03/23/19 17:11,"820 12th St, Boston, MA 02215" +176858,iPhone,1,700,03/14/19 23:35,"888 West St, Austin, TX 73301" +176859,AAA Batteries (4-pack),1,2.99,03/18/19 12:25,"38 13th St, Portland, OR 97035" +176860,AAA Batteries (4-pack),1,2.99,03/05/19 11:30,"925 Spruce St, San Francisco, CA 94016" +176861,Apple Airpods Headphones,1,150,03/06/19 08:39,"11 Walnut St, Portland, OR 97035" +176862,Macbook Pro Laptop,1,1700,03/22/19 18:47,"871 Park St, New York City, NY 10001" +176863,34in Ultrawide Monitor,1,379.99,03/04/19 12:22,"374 Church St, Boston, MA 02215" +176864,AAA Batteries (4-pack),1,2.99,03/30/19 18:44,"85 Ridge St, Dallas, TX 75001" +176865,Apple Airpods Headphones,1,150,03/23/19 10:31,"883 6th St, New York City, NY 10001" +176866,Wired Headphones,1,11.99,03/24/19 20:31,"392 South St, Seattle, WA 98101" +176867,Flatscreen TV,1,300,03/08/19 17:27,"128 Willow St, Boston, MA 02215" +176868,iPhone,1,700,03/17/19 02:35,"500 Pine St, Los Angeles, CA 90001" +176868,Lightning Charging Cable,1,14.95,03/17/19 02:35,"500 Pine St, Los Angeles, CA 90001" +176869,Lightning Charging Cable,1,14.95,03/12/19 21:48,"931 Wilson St, Los Angeles, CA 90001" +176870,AA Batteries (4-pack),3,3.84,03/09/19 11:12,"729 4th St, San Francisco, CA 94016" +176871,Flatscreen TV,1,300,03/19/19 12:24,"468 6th St, New York City, NY 10001" +176872,34in Ultrawide Monitor,1,379.99,03/16/19 01:19,"412 9th St, Boston, MA 02215" +176873,34in Ultrawide Monitor,1,379.99,03/19/19 19:28,"272 Jefferson St, Los Angeles, CA 90001" +176874,AA Batteries (4-pack),2,3.84,03/29/19 13:55,"389 7th St, New York City, NY 10001" +176875,Macbook Pro Laptop,1,1700,03/27/19 09:30,"369 Center St, Atlanta, GA 30301" +176876,USB-C Charging Cable,1,11.95,03/28/19 14:44,"3 Ridge St, Seattle, WA 98101" +176877,Apple Airpods Headphones,1,150,03/07/19 10:45,"576 Cedar St, Seattle, WA 98101" +176878,iPhone,1,700,03/11/19 21:16,"994 Highland St, Boston, MA 02215" +176878,Lightning Charging Cable,1,14.95,03/11/19 21:16,"994 Highland St, Boston, MA 02215" +176878,Apple Airpods Headphones,1,150,03/11/19 21:16,"994 Highland St, Boston, MA 02215" +176879,AAA Batteries (4-pack),3,2.99,03/29/19 22:06,"910 Jackson St, Atlanta, GA 30301" +176880,AA Batteries (4-pack),1,3.84,03/09/19 20:32,"680 Cedar St, Dallas, TX 75001" +176881,Wired Headphones,1,11.99,03/16/19 16:01,"972 Meadow St, Dallas, TX 75001" +176882,27in 4K Gaming Monitor,1,389.99,03/09/19 08:21,"328 Johnson St, Los Angeles, CA 90001" +176883,Wired Headphones,1,11.99,03/26/19 17:04,"12 Park St, Austin, TX 73301" +176884,Wired Headphones,1,11.99,03/23/19 19:16,"262 Dogwood St, Dallas, TX 75001" +176885,Google Phone,1,600,03/20/19 15:20,"618 Dogwood St, San Francisco, CA 94016" +176886,USB-C Charging Cable,1,11.95,03/24/19 16:24,"321 14th St, Portland, ME 04101" +176887,Flatscreen TV,1,300,03/03/19 19:10,"750 Forest St, Los Angeles, CA 90001" +176888,AA Batteries (4-pack),2,3.84,03/18/19 15:41,"90 13th St, San Francisco, CA 94016" +176889,Lightning Charging Cable,1,14.95,03/15/19 21:03,"583 Lake St, San Francisco, CA 94016" +176890,Apple Airpods Headphones,1,150,03/01/19 14:10,"392 Sunset St, Seattle, WA 98101" +176891,Bose SoundSport Headphones,1,99.99,03/27/19 22:52,"859 Maple St, Los Angeles, CA 90001" +176892,AA Batteries (4-pack),2,3.84,03/08/19 00:54,"356 South St, Portland, OR 97035" +176893,AA Batteries (4-pack),1,3.84,03/03/19 18:37,"784 Forest St, Portland, OR 97035" +176894,Apple Airpods Headphones,1,150,03/17/19 21:45,"667 Washington St, New York City, NY 10001" +176895,AAA Batteries (4-pack),2,2.99,03/05/19 10:59,"160 Main St, Seattle, WA 98101" +176896,USB-C Charging Cable,1,11.95,03/13/19 15:43,"468 South St, Austin, TX 73301" +176897,AA Batteries (4-pack),2,3.84,03/11/19 19:28,"431 1st St, Seattle, WA 98101" +176898,Wired Headphones,1,11.99,03/19/19 16:53,"355 Meadow St, New York City, NY 10001" +176899,AA Batteries (4-pack),1,3.84,03/08/19 09:41,"673 Wilson St, New York City, NY 10001" +176900,AA Batteries (4-pack),1,3.84,03/06/19 11:51,"459 Willow St, New York City, NY 10001" +176901,Lightning Charging Cable,1,14.95,03/24/19 08:22,"390 Lake St, Los Angeles, CA 90001" +176902,USB-C Charging Cable,1,11.95,03/03/19 19:39,"245 Center St, Boston, MA 02215" +176903,Lightning Charging Cable,1,14.95,03/19/19 22:10,"35 Willow St, Atlanta, GA 30301" +176904,USB-C Charging Cable,1,11.95,03/06/19 00:52,"630 West St, New York City, NY 10001" +176905,Lightning Charging Cable,1,14.95,03/09/19 19:09,"110 1st St, Boston, MA 02215" +176906,Lightning Charging Cable,1,14.95,03/14/19 16:25,"13 2nd St, Atlanta, GA 30301" +176907,Lightning Charging Cable,1,14.95,03/13/19 21:27,"56 Dogwood St, Boston, MA 02215" +176908,Lightning Charging Cable,1,14.95,03/02/19 20:25,"510 South St, San Francisco, CA 94016" +176909,AAA Batteries (4-pack),1,2.99,03/26/19 23:06,"476 13th St, Atlanta, GA 30301" +176910,ThinkPad Laptop,1,999.99,03/14/19 17:33,"326 Elm St, Los Angeles, CA 90001" +176911,Wired Headphones,1,11.99,03/23/19 22:32,"413 6th St, San Francisco, CA 94016" +176912,USB-C Charging Cable,1,11.95,03/05/19 15:01,"606 Madison St, San Francisco, CA 94016" +176913,AA Batteries (4-pack),1,3.84,03/29/19 00:20,"678 Lakeview St, San Francisco, CA 94016" +176914,Apple Airpods Headphones,1,150,03/29/19 21:16,"141 5th St, Portland, OR 97035" +176915,Lightning Charging Cable,1,14.95,03/24/19 23:23,"116 12th St, Atlanta, GA 30301" +176916,AAA Batteries (4-pack),3,2.99,03/11/19 18:05,"37 2nd St, New York City, NY 10001" +176917,Wired Headphones,1,11.99,03/06/19 13:17,"175 7th St, Dallas, TX 75001" +176918,27in 4K Gaming Monitor,1,389.99,03/31/19 19:16,"519 Cherry St, Dallas, TX 75001" +176919,Google Phone,1,600,03/31/19 14:32,"430 Meadow St, Dallas, TX 75001" +176920,USB-C Charging Cable,1,11.95,03/09/19 21:30,"450 North St, New York City, NY 10001" +176921,27in FHD Monitor,1,149.99,03/29/19 13:03,"204 Johnson St, New York City, NY 10001" +176922,AA Batteries (4-pack),1,3.84,03/21/19 14:35,"444 Church St, Austin, TX 73301" +176923,Wired Headphones,1,11.99,03/01/19 20:50,"937 Madison St, San Francisco, CA 94016" +176924,Google Phone,1,600,03/05/19 07:30,"651 Wilson St, Atlanta, GA 30301" +176924,USB-C Charging Cable,1,11.95,03/05/19 07:30,"651 Wilson St, Atlanta, GA 30301" +176925,Bose SoundSport Headphones,1,99.99,03/17/19 18:13,"690 River St, Seattle, WA 98101" +176926,Lightning Charging Cable,1,14.95,03/20/19 16:56,"387 Madison St, Boston, MA 02215" +176927,Google Phone,1,600,03/28/19 15:27,"215 Jackson St, Atlanta, GA 30301" +176927,USB-C Charging Cable,1,11.95,03/28/19 15:27,"215 Jackson St, Atlanta, GA 30301" +176928,Bose SoundSport Headphones,1,99.99,03/14/19 12:34,"676 12th St, Dallas, TX 75001" +176929,Bose SoundSport Headphones,1,99.99,03/14/19 15:07,"209 Ridge St, San Francisco, CA 94016" +176930,Apple Airpods Headphones,1,150,03/13/19 12:58,"197 Forest St, Atlanta, GA 30301" +176931,Bose SoundSport Headphones,1,99.99,03/25/19 17:09,"643 9th St, Los Angeles, CA 90001" +176932,Apple Airpods Headphones,1,150,03/28/19 00:15,"705 Maple St, San Francisco, CA 94016" +176933,Apple Airpods Headphones,1,150,03/02/19 20:54,"493 Forest St, Portland, OR 97035" +176934,USB-C Charging Cable,1,11.95,03/26/19 21:23,"879 6th St, New York City, NY 10001" +176935,Macbook Pro Laptop,1,1700,03/27/19 21:06,"162 Johnson St, Dallas, TX 75001" +176936,Lightning Charging Cable,1,14.95,03/26/19 19:02,"494 5th St, Boston, MA 02215" +176937,iPhone,1,700,03/21/19 14:25,"800 Ridge St, New York City, NY 10001" +176938,Lightning Charging Cable,1,14.95,03/24/19 00:49,"787 Wilson St, Atlanta, GA 30301" +176939,Lightning Charging Cable,1,14.95,03/14/19 07:57,"456 Hickory St, San Francisco, CA 94016" +176940,Lightning Charging Cable,1,14.95,03/25/19 08:27,"410 Adams St, Los Angeles, CA 90001" +176941,34in Ultrawide Monitor,1,379.99,03/21/19 18:12,"459 Park St, San Francisco, CA 94016" +176942,ThinkPad Laptop,1,999.99,03/31/19 08:42,"783 12th St, Los Angeles, CA 90001" +176943,Bose SoundSport Headphones,1,99.99,03/20/19 10:51,"495 Main St, San Francisco, CA 94016" +176944,AA Batteries (4-pack),1,3.84,03/25/19 00:51,"445 5th St, Los Angeles, CA 90001" +176945,Wired Headphones,1,11.99,03/09/19 13:14,"23 Park St, Dallas, TX 75001" +176946,Bose SoundSport Headphones,1,99.99,03/30/19 12:35,"969 Center St, San Francisco, CA 94016" +176947,AA Batteries (4-pack),1,3.84,03/13/19 15:39,"15 Elm St, Dallas, TX 75001" +176948,27in FHD Monitor,1,149.99,03/12/19 17:21,"326 11th St, San Francisco, CA 94016" +176949,20in Monitor,1,109.99,03/31/19 17:40,"685 6th St, Portland, OR 97035" +176950,20in Monitor,1,109.99,03/30/19 01:33,"339 Lakeview St, Los Angeles, CA 90001" +176951,AAA Batteries (4-pack),2,2.99,03/16/19 17:01,"977 South St, Dallas, TX 75001" +176952,Lightning Charging Cable,1,14.95,03/07/19 14:59,"53 6th St, Atlanta, GA 30301" +176953,AA Batteries (4-pack),1,3.84,03/08/19 13:12,"435 Park St, Seattle, WA 98101" +176954,iPhone,1,700,03/20/19 18:57,"689 7th St, San Francisco, CA 94016" +176955,Google Phone,1,600,03/21/19 12:12,"992 Lakeview St, San Francisco, CA 94016" +176956,Lightning Charging Cable,1,14.95,03/23/19 13:37,"871 Elm St, Atlanta, GA 30301" +176957,AAA Batteries (4-pack),1,2.99,03/28/19 12:33,"842 1st St, Austin, TX 73301" +176958,Macbook Pro Laptop,1,1700,03/22/19 14:02,"614 West St, Los Angeles, CA 90001" +176959,Bose SoundSport Headphones,1,99.99,03/13/19 13:53,"799 Park St, Seattle, WA 98101" +176960,27in FHD Monitor,1,149.99,03/01/19 17:38,"878 Spruce St, San Francisco, CA 94016" +176961,Apple Airpods Headphones,1,150,03/18/19 10:11,"765 Lakeview St, Los Angeles, CA 90001" +176962,Apple Airpods Headphones,1,150,03/30/19 20:21,"148 Hill St, Atlanta, GA 30301" +176963,Macbook Pro Laptop,1,1700,03/04/19 15:18,"441 Johnson St, San Francisco, CA 94016" +176964,iPhone,1,700,03/08/19 12:45,"315 South St, San Francisco, CA 94016" +176965,USB-C Charging Cable,1,11.95,03/19/19 19:09,"187 Park St, New York City, NY 10001" +176966,AA Batteries (4-pack),1,3.84,03/08/19 01:35,"36 Sunset St, Seattle, WA 98101" +176967,AA Batteries (4-pack),1,3.84,03/26/19 15:11,"925 South St, New York City, NY 10001" +176968,Wired Headphones,1,11.99,03/22/19 10:37,"375 Washington St, Los Angeles, CA 90001" +176969,Lightning Charging Cable,1,14.95,03/09/19 10:31,"397 Hill St, Los Angeles, CA 90001" +176970,27in 4K Gaming Monitor,1,389.99,03/15/19 00:28,"188 Forest St, Seattle, WA 98101" +176971,Macbook Pro Laptop,1,1700,03/01/19 19:05,"300 11th St, Seattle, WA 98101" +176972,AA Batteries (4-pack),1,3.84,03/04/19 00:37,"314 Forest St, Seattle, WA 98101" +176973,Google Phone,1,600,03/03/19 08:44,"367 13th St, New York City, NY 10001" +176974,Macbook Pro Laptop,1,1700,03/14/19 16:56,"303 14th St, Atlanta, GA 30301" +176975,USB-C Charging Cable,1,11.95,03/24/19 10:45,"766 7th St, New York City, NY 10001" +176976,USB-C Charging Cable,1,11.95,03/30/19 23:03,"327 Walnut St, San Francisco, CA 94016" +176977,USB-C Charging Cable,1,11.95,03/23/19 08:57,"446 Cedar St, Los Angeles, CA 90001" +176978,USB-C Charging Cable,1,11.95,03/07/19 16:20,"719 Dogwood St, Dallas, TX 75001" +176979,AA Batteries (4-pack),1,3.84,03/26/19 07:22,"666 Lincoln St, San Francisco, CA 94016" +176980,27in FHD Monitor,1,149.99,03/23/19 17:02,"535 Lakeview St, Los Angeles, CA 90001" +176981,USB-C Charging Cable,2,11.95,03/21/19 18:34,"220 5th St, Boston, MA 02215" +176982,Lightning Charging Cable,1,14.95,03/04/19 01:15,"659 Ridge St, San Francisco, CA 94016" +176983,Apple Airpods Headphones,1,150,03/26/19 13:02,"820 1st St, Atlanta, GA 30301" +176984,Wired Headphones,1,11.99,03/19/19 12:38,"740 4th St, Portland, OR 97035" +176985,Flatscreen TV,1,300,03/23/19 11:39,"918 Dogwood St, Seattle, WA 98101" +176986,27in FHD Monitor,1,149.99,03/06/19 12:38,"925 Spruce St, Portland, ME 04101" +176987,Apple Airpods Headphones,1,150,03/29/19 21:10,"661 Jackson St, Atlanta, GA 30301" +176988,27in FHD Monitor,1,149.99,03/11/19 15:23,"333 North St, Boston, MA 02215" +176989,27in 4K Gaming Monitor,1,389.99,03/11/19 20:39,"151 Adams St, New York City, NY 10001" +176990,AAA Batteries (4-pack),1,2.99,03/31/19 08:33,"791 Dogwood St, Los Angeles, CA 90001" +176991,Wired Headphones,2,11.99,03/21/19 16:39,"152 Hickory St, Seattle, WA 98101" +176992,Lightning Charging Cable,1,14.95,03/16/19 16:19,"748 Jefferson St, Los Angeles, CA 90001" +176993,34in Ultrawide Monitor,1,379.99,03/15/19 07:47,"958 Cedar St, San Francisco, CA 94016" +176994,Wired Headphones,1,11.99,03/21/19 01:37,"497 Madison St, Dallas, TX 75001" +176995,Wired Headphones,1,11.99,03/16/19 21:00,"6 9th St, New York City, NY 10001" +176996,AAA Batteries (4-pack),1,2.99,03/31/19 23:26,"177 Madison St, Dallas, TX 75001" +176997,USB-C Charging Cable,1,11.95,03/19/19 08:06,"973 Church St, San Francisco, CA 94016" +176998,AA Batteries (4-pack),1,3.84,03/19/19 18:31,"927 Church St, Los Angeles, CA 90001" +176999,Google Phone,1,600,03/11/19 21:40,"257 13th St, Austin, TX 73301" +176999,USB-C Charging Cable,1,11.95,03/11/19 21:40,"257 13th St, Austin, TX 73301" +177000,AA Batteries (4-pack),1,3.84,03/10/19 13:06,"851 Forest St, Los Angeles, CA 90001" +177001,ThinkPad Laptop,1,999.99,03/12/19 22:01,"826 Church St, Austin, TX 73301" +177002,Flatscreen TV,1,300,03/17/19 18:39,"266 Lakeview St, Atlanta, GA 30301" +177003,Wired Headphones,1,11.99,03/21/19 08:52,"146 Hill St, Los Angeles, CA 90001" +177004,27in FHD Monitor,1,149.99,03/16/19 18:04,"315 Sunset St, New York City, NY 10001" +177005,34in Ultrawide Monitor,1,379.99,03/22/19 23:07,"576 Jefferson St, Seattle, WA 98101" +177006,Lightning Charging Cable,1,14.95,03/01/19 10:41,"839 Highland St, San Francisco, CA 94016" +177007,AAA Batteries (4-pack),1,2.99,03/17/19 23:06,"873 Hill St, New York City, NY 10001" +177008,Wired Headphones,1,11.99,03/10/19 14:26,"382 Willow St, Atlanta, GA 30301" +177009,Lightning Charging Cable,1,14.95,03/20/19 17:21,"699 Center St, Dallas, TX 75001" +177010,AA Batteries (4-pack),1,3.84,03/10/19 07:12,"42 Wilson St, Portland, OR 97035" +177011,Bose SoundSport Headphones,1,99.99,03/30/19 13:12,"658 Hill St, San Francisco, CA 94016" +177012,USB-C Charging Cable,1,11.95,03/04/19 00:08,"39 Walnut St, Los Angeles, CA 90001" +177013,AA Batteries (4-pack),1,3.84,03/21/19 13:34,"747 11th St, Atlanta, GA 30301" +177014,Apple Airpods Headphones,1,150,03/14/19 11:40,"598 Johnson St, Boston, MA 02215" +177015,20in Monitor,1,109.99,03/02/19 15:44,"676 6th St, Dallas, TX 75001" +177016,34in Ultrawide Monitor,1,379.99,03/15/19 12:13,"510 9th St, Los Angeles, CA 90001" +177017,Vareebadd Phone,1,400,03/28/19 13:51,"2 7th St, Austin, TX 73301" +177018,iPhone,1,700,03/10/19 14:48,"413 14th St, Atlanta, GA 30301" +177019,iPhone,1,700,03/21/19 07:59,"303 Spruce St, New York City, NY 10001" +177020,AA Batteries (4-pack),1,3.84,03/21/19 11:38,"152 West St, Los Angeles, CA 90001" +177021,Macbook Pro Laptop,1,1700,03/12/19 22:07,"147 River St, Los Angeles, CA 90001" +177022,AA Batteries (4-pack),2,3.84,03/13/19 02:31,"747 Pine St, Austin, TX 73301" +177023,Apple Airpods Headphones,1,150,03/27/19 13:49,"949 5th St, Seattle, WA 98101" +177024,Apple Airpods Headphones,1,150,03/31/19 18:21,"433 Jackson St, Dallas, TX 75001" +177025,Wired Headphones,1,11.99,03/11/19 01:13,"586 Highland St, Portland, ME 04101" +177026,20in Monitor,1,109.99,03/31/19 11:53,"816 Elm St, New York City, NY 10001" +177027,AAA Batteries (4-pack),1,2.99,03/29/19 05:52,"225 Chestnut St, San Francisco, CA 94016" +177028,Bose SoundSport Headphones,1,99.99,03/16/19 15:22,"344 Highland St, San Francisco, CA 94016" +177029,iPhone,1,700,03/29/19 20:19,"642 Madison St, Los Angeles, CA 90001" +177029,Wired Headphones,1,11.99,03/29/19 20:19,"642 Madison St, Los Angeles, CA 90001" +177030,34in Ultrawide Monitor,1,379.99,03/07/19 20:41,"150 Chestnut St, Boston, MA 02215" +177031,Bose SoundSport Headphones,1,99.99,03/31/19 19:21,"408 7th St, Seattle, WA 98101" +177032,iPhone,1,700,03/20/19 22:03,"542 Meadow St, Los Angeles, CA 90001" +177033,Macbook Pro Laptop,1,1700,03/13/19 13:35,"152 12th St, San Francisco, CA 94016" +177034,Lightning Charging Cable,1,14.95,03/18/19 01:07,"58 13th St, Los Angeles, CA 90001" +177035,Wired Headphones,1,11.99,03/27/19 11:06,"913 4th St, New York City, NY 10001" +177036,USB-C Charging Cable,1,11.95,03/30/19 15:23,"598 1st St, Portland, ME 04101" +177037,Google Phone,1,600,03/07/19 15:29,"420 1st St, New York City, NY 10001" +177038,USB-C Charging Cable,1,11.95,03/16/19 21:13,"690 12th St, Boston, MA 02215" +177039,Bose SoundSport Headphones,1,99.99,03/26/19 20:02,"407 Park St, Portland, OR 97035" +177040,27in 4K Gaming Monitor,1,389.99,03/15/19 16:09,"829 Lakeview St, Seattle, WA 98101" +177041,Lightning Charging Cable,1,14.95,03/24/19 12:55,"617 2nd St, Los Angeles, CA 90001" +177041,Wired Headphones,1,11.99,03/24/19 12:55,"617 2nd St, Los Angeles, CA 90001" +177042,Macbook Pro Laptop,1,1700,03/09/19 13:15,"97 Spruce St, San Francisco, CA 94016" +177043,USB-C Charging Cable,1,11.95,03/08/19 20:10,"78 Cherry St, Austin, TX 73301" +177044,USB-C Charging Cable,1,11.95,03/07/19 16:25,"937 Madison St, New York City, NY 10001" +177045,AA Batteries (4-pack),1,3.84,03/18/19 14:05,"43 River St, Boston, MA 02215" +177046,AAA Batteries (4-pack),1,2.99,03/29/19 08:38,"963 Lincoln St, Boston, MA 02215" +177047,Lightning Charging Cable,1,14.95,03/27/19 10:34,"365 4th St, San Francisco, CA 94016" +177048,iPhone,1,700,03/24/19 23:37,"890 Elm St, San Francisco, CA 94016" +177048,Apple Airpods Headphones,1,150,03/24/19 23:37,"890 Elm St, San Francisco, CA 94016" +177048,Wired Headphones,1,11.99,03/24/19 23:37,"890 Elm St, San Francisco, CA 94016" +177049,34in Ultrawide Monitor,1,379.99,03/29/19 17:57,"560 Cherry St, San Francisco, CA 94016" +177050,AA Batteries (4-pack),1,3.84,03/08/19 11:43,"910 West St, Dallas, TX 75001" +177051,27in 4K Gaming Monitor,1,389.99,03/29/19 12:51,"181 North St, Los Angeles, CA 90001" +177052,USB-C Charging Cable,1,11.95,03/30/19 17:47,"411 Main St, Atlanta, GA 30301" +177053,Lightning Charging Cable,1,14.95,03/12/19 07:46,"548 13th St, Austin, TX 73301" +177054,AAA Batteries (4-pack),3,2.99,03/09/19 16:53,"700 6th St, Seattle, WA 98101" +177055,Vareebadd Phone,1,400,03/08/19 13:52,"762 North St, Los Angeles, CA 90001" +177055,Bose SoundSport Headphones,1,99.99,03/08/19 13:52,"762 North St, Los Angeles, CA 90001" +177056,ThinkPad Laptop,1,999.99,03/31/19 10:36,"917 Hill St, San Francisco, CA 94016" +177057,USB-C Charging Cable,1,11.95,03/24/19 01:28,"841 Lincoln St, Portland, OR 97035" +177058,USB-C Charging Cable,1,11.95,03/17/19 22:29,"316 Sunset St, Los Angeles, CA 90001" +177059,AAA Batteries (4-pack),4,2.99,03/06/19 10:56,"638 Cedar St, Boston, MA 02215" +177060,USB-C Charging Cable,1,11.95,03/29/19 09:38,"231 2nd St, San Francisco, CA 94016" +177061,Macbook Pro Laptop,1,1700,03/11/19 10:14,"204 Center St, San Francisco, CA 94016" +177062,20in Monitor,1,109.99,03/21/19 11:06,"873 Washington St, Atlanta, GA 30301" +177063,Bose SoundSport Headphones,1,99.99,03/01/19 11:34,"455 Church St, Dallas, TX 75001" +177064,Bose SoundSport Headphones,1,99.99,03/24/19 21:56,"648 River St, New York City, NY 10001" +177065,AAA Batteries (4-pack),1,2.99,03/16/19 17:40,"472 Ridge St, Atlanta, GA 30301" +177066,Apple Airpods Headphones,1,150,03/01/19 19:18,"416 Ridge St, Dallas, TX 75001" +177067,Macbook Pro Laptop,1,1700,03/03/19 14:09,"669 Adams St, Atlanta, GA 30301" +177068,Apple Airpods Headphones,1,150,03/21/19 18:33,"481 1st St, Dallas, TX 75001" +177069,Bose SoundSport Headphones,1,99.99,03/26/19 14:14,"858 Center St, Los Angeles, CA 90001" +177070,Wired Headphones,1,11.99,03/08/19 12:49,"717 Park St, Portland, OR 97035" +177071,Lightning Charging Cable,1,14.95,03/22/19 09:15,"648 Adams St, Portland, OR 97035" +177072,AAA Batteries (4-pack),3,2.99,03/28/19 10:59,"415 West St, San Francisco, CA 94016" +177073,34in Ultrawide Monitor,1,379.99,03/07/19 08:46,"38 9th St, Boston, MA 02215" +177074,iPhone,1,700,03/31/19 13:55,"809 Pine St, Austin, TX 73301" +177075,ThinkPad Laptop,1,999.99,03/04/19 21:35,"635 Park St, San Francisco, CA 94016" +177076,USB-C Charging Cable,1,11.95,03/28/19 17:38,"137 Cherry St, Dallas, TX 75001" +177077,Lightning Charging Cable,1,14.95,03/04/19 00:35,"687 Sunset St, Atlanta, GA 30301" +177078,ThinkPad Laptop,1,999.99,03/25/19 16:43,"273 Forest St, Atlanta, GA 30301" +177079,AA Batteries (4-pack),1,3.84,03/27/19 11:08,"640 Forest St, Atlanta, GA 30301" +177080,20in Monitor,1,109.99,03/24/19 20:51,"147 9th St, Atlanta, GA 30301" +177081,AAA Batteries (4-pack),2,2.99,03/31/19 14:39,"419 Johnson St, San Francisco, CA 94016" +177082,Lightning Charging Cable,1,14.95,03/07/19 06:27,"853 Forest St, San Francisco, CA 94016" +177083,AA Batteries (4-pack),1,3.84,03/17/19 09:57,"584 South St, San Francisco, CA 94016" +177084,Apple Airpods Headphones,1,150,03/15/19 21:47,"480 11th St, New York City, NY 10001" +177085,AA Batteries (4-pack),1,3.84,03/18/19 14:26,"252 4th St, Boston, MA 02215" +177086,AAA Batteries (4-pack),1,2.99,03/27/19 21:09,"557 North St, Atlanta, GA 30301" +177087,AA Batteries (4-pack),2,3.84,03/31/19 23:15,"532 Jefferson St, Boston, MA 02215" +177088,27in FHD Monitor,1,149.99,03/24/19 13:27,"448 2nd St, Boston, MA 02215" +177089,27in FHD Monitor,1,149.99,03/10/19 14:20,"413 4th St, Boston, MA 02215" +177090,USB-C Charging Cable,1,11.95,03/31/19 12:17,"804 Johnson St, Dallas, TX 75001" +177091,Bose SoundSport Headphones,1,99.99,03/03/19 22:25,"121 2nd St, San Francisco, CA 94016" +177092,Apple Airpods Headphones,1,150,03/25/19 10:27,"666 Center St, New York City, NY 10001" +177093,AAA Batteries (4-pack),2,2.99,03/07/19 06:52,"272 8th St, Portland, OR 97035" +177094,Apple Airpods Headphones,1,150,03/08/19 12:05,"803 Center St, Los Angeles, CA 90001" +177095,USB-C Charging Cable,1,11.95,03/30/19 22:35,"393 Park St, New York City, NY 10001" +177096,iPhone,1,700,03/31/19 14:44,"542 Cedar St, Los Angeles, CA 90001" +177097,ThinkPad Laptop,1,999.99,03/30/19 22:19,"359 10th St, Portland, OR 97035" +177098,Macbook Pro Laptop,1,1700,03/18/19 11:33,"811 Jackson St, New York City, NY 10001" +177099,27in FHD Monitor,1,149.99,03/03/19 07:39,"841 Elm St, Seattle, WA 98101" +177100,AAA Batteries (4-pack),1,2.99,03/27/19 13:32,"965 Highland St, Atlanta, GA 30301" +177101,Lightning Charging Cable,1,14.95,03/31/19 14:00,"894 Spruce St, Seattle, WA 98101" +177102,Wired Headphones,1,11.99,03/31/19 18:26,"543 Hickory St, Los Angeles, CA 90001" +177103,AAA Batteries (4-pack),1,2.99,03/26/19 09:20,"860 Ridge St, Portland, OR 97035" +177104,Google Phone,1,600,03/01/19 08:22,"825 2nd St, Los Angeles, CA 90001" +177105,AA Batteries (4-pack),1,3.84,03/05/19 19:29,"965 Jackson St, Atlanta, GA 30301" +177106,27in FHD Monitor,1,149.99,03/25/19 13:22,"982 North St, Los Angeles, CA 90001" +177107,Bose SoundSport Headphones,1,99.99,03/11/19 20:48,"781 Chestnut St, New York City, NY 10001" +177108,USB-C Charging Cable,1,11.95,03/18/19 08:32,"552 Pine St, Seattle, WA 98101" +177109,USB-C Charging Cable,1,11.95,03/14/19 17:21,"863 13th St, San Francisco, CA 94016" +177110,AA Batteries (4-pack),1,3.84,03/23/19 23:44,"264 4th St, Austin, TX 73301" +177111,27in 4K Gaming Monitor,1,389.99,03/28/19 19:09,"401 Lake St, Dallas, TX 75001" +177112,Macbook Pro Laptop,1,1700,03/09/19 10:56,"150 Sunset St, Los Angeles, CA 90001" +177113,Lightning Charging Cable,1,14.95,03/27/19 22:31,"815 Adams St, Dallas, TX 75001" +177114,USB-C Charging Cable,1,11.95,03/09/19 19:24,"238 Maple St, New York City, NY 10001" +177115,Lightning Charging Cable,1,14.95,03/25/19 05:49,"495 Jackson St, Boston, MA 02215" +177116,AAA Batteries (4-pack),1,2.99,03/16/19 00:56,"482 Washington St, Austin, TX 73301" +177117,Wired Headphones,1,11.99,03/15/19 16:58,"714 South St, New York City, NY 10001" +177118,Bose SoundSport Headphones,1,99.99,03/16/19 20:51,"295 Meadow St, Atlanta, GA 30301" +177119,Apple Airpods Headphones,1,150,03/24/19 17:55,"949 Ridge St, New York City, NY 10001" +177120,AA Batteries (4-pack),1,3.84,03/26/19 23:43,"669 1st St, Austin, TX 73301" +177121,Wired Headphones,2,11.99,03/26/19 18:23,"133 10th St, Boston, MA 02215" +177121,AAA Batteries (4-pack),1,2.99,03/26/19 18:23,"133 10th St, Boston, MA 02215" +177122,USB-C Charging Cable,1,11.95,03/31/19 04:08,"698 Hickory St, New York City, NY 10001" +177123,Lightning Charging Cable,1,14.95,03/29/19 12:01,"269 Meadow St, San Francisco, CA 94016" +177124,USB-C Charging Cable,1,11.95,03/17/19 19:40,"314 4th St, San Francisco, CA 94016" +177125,Apple Airpods Headphones,1,150,03/30/19 14:06,"442 Sunset St, New York City, NY 10001" +177126,USB-C Charging Cable,1,11.95,03/29/19 18:16,"758 4th St, Los Angeles, CA 90001" +177127,Lightning Charging Cable,1,14.95,03/06/19 13:53,"99 Washington St, Dallas, TX 75001" +177128,AAA Batteries (4-pack),1,2.99,03/01/19 13:12,"524 Madison St, New York City, NY 10001" +177129,AAA Batteries (4-pack),1,2.99,03/24/19 14:25,"234 6th St, New York City, NY 10001" +177130,AA Batteries (4-pack),1,3.84,03/27/19 10:55,"546 Willow St, Los Angeles, CA 90001" +177131,AAA Batteries (4-pack),1,2.99,03/12/19 13:27,"890 North St, Boston, MA 02215" +177132,USB-C Charging Cable,1,11.95,03/10/19 12:51,"974 Ridge St, San Francisco, CA 94016" +177133,Bose SoundSport Headphones,1,99.99,03/24/19 14:19,"698 5th St, Los Angeles, CA 90001" +177134,Wired Headphones,1,11.99,03/08/19 21:50,"997 1st St, Los Angeles, CA 90001" +177135,Google Phone,1,600,03/15/19 17:26,"690 Wilson St, San Francisco, CA 94016" +177135,USB-C Charging Cable,1,11.95,03/15/19 17:26,"690 Wilson St, San Francisco, CA 94016" +177136,USB-C Charging Cable,1,11.95,03/14/19 21:45,"905 Lakeview St, New York City, NY 10001" +177137,iPhone,1,700,03/20/19 20:24,"868 Madison St, Boston, MA 02215" +177138,Wired Headphones,1,11.99,03/30/19 14:48,"972 9th St, New York City, NY 10001" +177139,USB-C Charging Cable,1,11.95,03/11/19 12:11,"941 Cherry St, Portland, OR 97035" +177140,Wired Headphones,2,11.99,03/05/19 13:51,"694 11th St, Seattle, WA 98101" +177141,Flatscreen TV,1,300,03/26/19 12:35,"524 Dogwood St, Boston, MA 02215" +177142,Lightning Charging Cable,1,14.95,03/12/19 21:29,"575 12th St, Boston, MA 02215" +177143,USB-C Charging Cable,1,11.95,03/10/19 02:46,"629 2nd St, San Francisco, CA 94016" +177144,Lightning Charging Cable,1,14.95,03/24/19 22:04,"636 Johnson St, San Francisco, CA 94016" +177145,27in FHD Monitor,1,149.99,03/03/19 12:04,"376 Hickory St, Boston, MA 02215" +177146,Macbook Pro Laptop,1,1700,03/18/19 06:25,"362 Willow St, San Francisco, CA 94016" +177147,Bose SoundSport Headphones,1,99.99,03/07/19 21:17,"70 Elm St, Los Angeles, CA 90001" +177148,Apple Airpods Headphones,1,150,03/14/19 12:12,"606 8th St, Seattle, WA 98101" +177149,20in Monitor,1,109.99,03/12/19 21:44,"429 Main St, Portland, OR 97035" +177150,USB-C Charging Cable,1,11.95,03/12/19 22:45,"960 Highland St, San Francisco, CA 94016" +177151,27in 4K Gaming Monitor,1,389.99,03/11/19 12:22,"281 Meadow St, San Francisco, CA 94016" +177152,Apple Airpods Headphones,1,150,03/31/19 17:24,"91 Dogwood St, Boston, MA 02215" +177153,Bose SoundSport Headphones,2,99.99,03/17/19 21:17,"488 7th St, Boston, MA 02215" +177154,AA Batteries (4-pack),1,3.84,03/18/19 09:36,"799 Forest St, San Francisco, CA 94016" +177155,Wired Headphones,1,11.99,03/17/19 14:11,"54 Hickory St, Portland, OR 97035" +177156,Wired Headphones,1,11.99,03/24/19 15:07,"583 4th St, Boston, MA 02215" +177157,LG Dryer,1,600.0,03/04/19 19:46,"619 10th St, San Francisco, CA 94016" +177158,20in Monitor,1,109.99,03/08/19 09:59,"771 Hickory St, Dallas, TX 75001" +177159,Lightning Charging Cable,1,14.95,03/12/19 14:59,"887 11th St, Austin, TX 73301" +177160,AAA Batteries (4-pack),1,2.99,03/17/19 18:32,"169 Meadow St, Atlanta, GA 30301" +177161,Apple Airpods Headphones,1,150,03/18/19 21:11,"716 River St, New York City, NY 10001" +177162,USB-C Charging Cable,2,11.95,03/25/19 12:39,"527 South St, San Francisco, CA 94016" +177163,Bose SoundSport Headphones,1,99.99,03/25/19 14:13,"7 Meadow St, San Francisco, CA 94016" +177164,Google Phone,1,600,03/21/19 08:59,"782 Spruce St, San Francisco, CA 94016" +177165,Macbook Pro Laptop,1,1700,03/04/19 07:32,"593 Forest St, Boston, MA 02215" +177166,Google Phone,1,600,03/06/19 00:19,"85 Cherry St, San Francisco, CA 94016" +177167,AA Batteries (4-pack),2,3.84,03/26/19 11:25,"113 Elm St, Los Angeles, CA 90001" +177168,Bose SoundSport Headphones,1,99.99,03/25/19 14:27,"577 11th St, Los Angeles, CA 90001" +177169,34in Ultrawide Monitor,1,379.99,03/25/19 19:27,"855 Sunset St, Atlanta, GA 30301" +177170,USB-C Charging Cable,1,11.95,03/24/19 15:08,"333 West St, Los Angeles, CA 90001" +177171,Wired Headphones,1,11.99,03/11/19 09:46,"907 Spruce St, Los Angeles, CA 90001" +177172,AAA Batteries (4-pack),1,2.99,03/26/19 00:41,"321 Willow St, San Francisco, CA 94016" +177173,34in Ultrawide Monitor,1,379.99,03/03/19 22:07,"608 Lincoln St, New York City, NY 10001" +177174,Wired Headphones,1,11.99,03/15/19 13:59,"579 Dogwood St, Seattle, WA 98101" +177175,Wired Headphones,1,11.99,03/16/19 22:51,"541 8th St, New York City, NY 10001" +177176,Apple Airpods Headphones,2,150,03/05/19 23:10,"160 13th St, San Francisco, CA 94016" +177177,Google Phone,1,600,03/16/19 12:40,"277 Wilson St, San Francisco, CA 94016" +177177,USB-C Charging Cable,1,11.95,03/16/19 12:40,"277 Wilson St, San Francisco, CA 94016" +177178,Wired Headphones,1,11.99,03/06/19 13:41,"851 Willow St, Boston, MA 02215" +177179,27in FHD Monitor,1,149.99,03/10/19 20:08,"107 Dogwood St, San Francisco, CA 94016" +177180,iPhone,1,700,03/14/19 19:41,"400 Adams St, Austin, TX 73301" +177181,Lightning Charging Cable,1,14.95,03/01/19 17:24,"955 Spruce St, Atlanta, GA 30301" +177182,AAA Batteries (4-pack),2,2.99,03/16/19 09:07,"613 10th St, Atlanta, GA 30301" +177183,iPhone,1,700,03/31/19 22:12,"484 Ridge St, San Francisco, CA 94016" +177183,Apple Airpods Headphones,1,150,03/31/19 22:12,"484 Ridge St, San Francisco, CA 94016" +177184,AA Batteries (4-pack),1,3.84,03/04/19 12:01,"190 Hickory St, Seattle, WA 98101" +177184,Google Phone,1,600,03/04/19 12:01,"190 Hickory St, Seattle, WA 98101" +177185,Wired Headphones,1,11.99,03/19/19 10:42,"868 5th St, Austin, TX 73301" +177186,Apple Airpods Headphones,1,150,03/15/19 19:22,"126 North St, Dallas, TX 75001" +177187,LG Dryer,1,600.0,03/05/19 12:00,"850 13th St, Dallas, TX 75001" +177188,Apple Airpods Headphones,1,150,03/26/19 12:18,"161 Hickory St, San Francisco, CA 94016" +177189,Wired Headphones,1,11.99,03/25/19 20:53,"871 North St, Boston, MA 02215" +177190,Lightning Charging Cable,1,14.95,03/01/19 21:59,"593 Park St, Portland, OR 97035" +177191,Vareebadd Phone,1,400,03/09/19 10:44,"261 Cedar St, Boston, MA 02215" +177192,AA Batteries (4-pack),1,3.84,03/06/19 17:29,"838 Hickory St, Dallas, TX 75001" +177193,AA Batteries (4-pack),3,3.84,03/29/19 19:47,"23 13th St, San Francisco, CA 94016" +177194,iPhone,1,700,03/14/19 23:28,"115 Maple St, San Francisco, CA 94016" +177195,Wired Headphones,1,11.99,03/03/19 21:01,"584 Church St, San Francisco, CA 94016" +177196,Apple Airpods Headphones,1,150,03/05/19 18:30,"964 4th St, Boston, MA 02215" +177197,AA Batteries (4-pack),1,3.84,03/04/19 20:19,"115 River St, Atlanta, GA 30301" +177198,AA Batteries (4-pack),2,3.84,03/19/19 21:09,"11 Willow St, New York City, NY 10001" +177199,USB-C Charging Cable,1,11.95,03/02/19 15:07,"953 Adams St, Portland, OR 97035" +177200,AAA Batteries (4-pack),1,2.99,03/26/19 12:23,"121 Adams St, Seattle, WA 98101" +177201,27in FHD Monitor,1,149.99,03/04/19 13:13,"972 Spruce St, San Francisco, CA 94016" +177202,34in Ultrawide Monitor,1,379.99,03/27/19 15:30,"856 Chestnut St, Portland, ME 04101" +177203,AA Batteries (4-pack),1,3.84,03/23/19 20:28,"786 8th St, Boston, MA 02215" +177204,34in Ultrawide Monitor,1,379.99,03/10/19 18:23,"112 Willow St, Los Angeles, CA 90001" +177205,ThinkPad Laptop,1,999.99,03/19/19 13:34,"591 Meadow St, Atlanta, GA 30301" +177206,USB-C Charging Cable,1,11.95,03/30/19 17:47,"786 12th St, San Francisco, CA 94016" +177207,Macbook Pro Laptop,1,1700,03/20/19 20:54,"976 10th St, Boston, MA 02215" +177208,Apple Airpods Headphones,1,150,03/08/19 00:08,"316 Lakeview St, Austin, TX 73301" +177209,Macbook Pro Laptop,1,1700,03/18/19 10:55,"539 Lincoln St, New York City, NY 10001" +177210,27in 4K Gaming Monitor,1,389.99,03/05/19 14:10,"251 5th St, Seattle, WA 98101" +177211,Flatscreen TV,1,300,03/29/19 21:08,"979 Jackson St, San Francisco, CA 94016" +177212,Bose SoundSport Headphones,1,99.99,03/22/19 20:41,"821 Hickory St, Atlanta, GA 30301" +177213,Lightning Charging Cable,1,14.95,03/30/19 11:17,"454 Johnson St, Atlanta, GA 30301" +177214,LG Washing Machine,1,600.0,03/06/19 14:38,"876 Church St, Los Angeles, CA 90001" +177215,Apple Airpods Headphones,1,150,03/23/19 09:33,"501 Lincoln St, Seattle, WA 98101" +177216,27in FHD Monitor,1,149.99,03/13/19 15:35,"460 5th St, San Francisco, CA 94016" +177217,USB-C Charging Cable,1,11.95,03/26/19 15:16,"564 6th St, Atlanta, GA 30301" +177218,Lightning Charging Cable,1,14.95,03/02/19 20:15,"297 South St, Boston, MA 02215" +177219,AA Batteries (4-pack),2,3.84,03/22/19 19:16,"653 Sunset St, San Francisco, CA 94016" +177220,AAA Batteries (4-pack),4,2.99,03/23/19 23:36,"763 Madison St, San Francisco, CA 94016" +177221,Lightning Charging Cable,1,14.95,03/12/19 11:10,"835 Lincoln St, San Francisco, CA 94016" +177222,AA Batteries (4-pack),2,3.84,03/10/19 20:58,"589 Highland St, New York City, NY 10001" +177223,Google Phone,1,600,03/13/19 17:39,"834 Main St, New York City, NY 10001" +177224,AA Batteries (4-pack),1,3.84,03/11/19 11:09,"632 Washington St, San Francisco, CA 94016" +177225,34in Ultrawide Monitor,1,379.99,03/09/19 13:18,"50 Lake St, San Francisco, CA 94016" +177226,Bose SoundSport Headphones,1,99.99,03/08/19 21:41,"71 Sunset St, Dallas, TX 75001" +177227,USB-C Charging Cable,1,11.95,03/19/19 03:33,"825 Wilson St, San Francisco, CA 94016" +177228,AAA Batteries (4-pack),2,2.99,03/11/19 10:27,"47 Meadow St, Boston, MA 02215" +177229,Wired Headphones,1,11.99,03/03/19 13:00,"125 Johnson St, Dallas, TX 75001" +177230,Flatscreen TV,1,300,03/12/19 21:17,"514 Hickory St, Los Angeles, CA 90001" +177231,Wired Headphones,1,11.99,03/20/19 07:55,"7 9th St, New York City, NY 10001" +177232,Apple Airpods Headphones,1,150,03/18/19 23:05,"941 7th St, Los Angeles, CA 90001" +177233,AAA Batteries (4-pack),2,2.99,03/07/19 09:24,"966 Pine St, Seattle, WA 98101" +177234,iPhone,1,700,03/04/19 19:29,"59 Johnson St, Portland, OR 97035" +177235,Bose SoundSport Headphones,1,99.99,03/16/19 06:59,"916 Forest St, Seattle, WA 98101" +177236,USB-C Charging Cable,1,11.95,03/10/19 13:30,"236 Elm St, San Francisco, CA 94016" +177237,Lightning Charging Cable,1,14.95,03/20/19 20:21,"418 Dogwood St, Los Angeles, CA 90001" +177238,iPhone,1,700,03/02/19 18:39,"48 Cedar St, Los Angeles, CA 90001" +177239,Bose SoundSport Headphones,1,99.99,03/07/19 08:53,"183 9th St, New York City, NY 10001" +177240,USB-C Charging Cable,1,11.95,03/16/19 14:03,"359 Johnson St, Los Angeles, CA 90001" +177241,USB-C Charging Cable,1,11.95,03/24/19 06:56,"711 West St, Atlanta, GA 30301" +177242,Bose SoundSport Headphones,1,99.99,03/02/19 12:45,"126 Hill St, Boston, MA 02215" +177243,AAA Batteries (4-pack),1,2.99,03/27/19 18:03,"393 Cedar St, San Francisco, CA 94016" +177244,Google Phone,1,600,03/21/19 09:37,"12 Lakeview St, San Francisco, CA 94016" +177245,Apple Airpods Headphones,1,150,03/03/19 11:29,"21 10th St, San Francisco, CA 94016" +177246,Lightning Charging Cable,1,14.95,03/11/19 11:47,"364 1st St, New York City, NY 10001" +177247,USB-C Charging Cable,1,11.95,03/25/19 18:36,"555 7th St, New York City, NY 10001" +177248,AA Batteries (4-pack),1,3.84,03/22/19 19:02,"405 West St, New York City, NY 10001" +177249,AAA Batteries (4-pack),1,2.99,03/25/19 19:59,"70 Cedar St, San Francisco, CA 94016" +177250,34in Ultrawide Monitor,1,379.99,03/17/19 14:52,"297 6th St, Dallas, TX 75001" +177251,Lightning Charging Cable,1,14.95,03/23/19 11:31,"64 Lake St, Seattle, WA 98101" +177252,AA Batteries (4-pack),1,3.84,03/25/19 16:48,"586 Dogwood St, San Francisco, CA 94016" +177253,AA Batteries (4-pack),1,3.84,03/15/19 18:25,"991 10th St, New York City, NY 10001" +177254,Wired Headphones,1,11.99,03/10/19 19:01,"802 14th St, San Francisco, CA 94016" +177255,Bose SoundSport Headphones,1,99.99,03/13/19 15:34,"811 Elm St, New York City, NY 10001" +177256,USB-C Charging Cable,1,11.95,03/30/19 21:52,"620 Jackson St, San Francisco, CA 94016" +177257,Wired Headphones,1,11.99,03/27/19 19:52,"331 Sunset St, Dallas, TX 75001" +177258,Apple Airpods Headphones,1,150,03/21/19 23:02,"378 Jackson St, San Francisco, CA 94016" +177259,Apple Airpods Headphones,1,150,03/14/19 16:04,"665 Lake St, Dallas, TX 75001" +177260,Macbook Pro Laptop,1,1700,03/11/19 18:35,"659 Lakeview St, Atlanta, GA 30301" +177261,AAA Batteries (4-pack),1,2.99,03/19/19 13:50,"32 Cherry St, Dallas, TX 75001" +177262,AA Batteries (4-pack),1,3.84,03/26/19 07:07,"58 5th St, Boston, MA 02215" +177263,Lightning Charging Cable,1,14.95,03/21/19 22:19,"164 River St, Los Angeles, CA 90001" +177264,AA Batteries (4-pack),1,3.84,03/02/19 11:26,"509 West St, New York City, NY 10001" +177265,27in FHD Monitor,1,149.99,03/20/19 19:10,"784 Walnut St, Atlanta, GA 30301" +177266,AAA Batteries (4-pack),2,2.99,03/14/19 00:34,"725 Maple St, Los Angeles, CA 90001" +177267,Apple Airpods Headphones,1,150,03/02/19 17:10,"412 7th St, San Francisco, CA 94016" +177268,AA Batteries (4-pack),2,3.84,03/19/19 23:47,"997 Cedar St, Los Angeles, CA 90001" +177269,AAA Batteries (4-pack),1,2.99,03/29/19 22:00,"120 Forest St, San Francisco, CA 94016" +177270,Bose SoundSport Headphones,1,99.99,03/17/19 07:32,"747 Lake St, New York City, NY 10001" +177271,AA Batteries (4-pack),4,3.84,03/20/19 10:22,"604 4th St, San Francisco, CA 94016" +177272,AAA Batteries (4-pack),2,2.99,03/16/19 07:09,"294 Lakeview St, Portland, ME 04101" +177273,Lightning Charging Cable,1,14.95,03/24/19 21:23,"273 4th St, Los Angeles, CA 90001" +177274,iPhone,1,700,03/24/19 10:12,"920 Lake St, Los Angeles, CA 90001" +177275,Wired Headphones,1,11.99,03/07/19 16:14,"93 Park St, San Francisco, CA 94016" +177276,Bose SoundSport Headphones,1,99.99,03/13/19 18:47,"801 Walnut St, Boston, MA 02215" +177277,Wired Headphones,1,11.99,03/01/19 22:07,"36 Lakeview St, Austin, TX 73301" +177278,Google Phone,1,600,03/04/19 07:14,"714 Johnson St, Los Angeles, CA 90001" +177279,AAA Batteries (4-pack),2,2.99,03/04/19 15:06,"257 12th St, Boston, MA 02215" +177280,Wired Headphones,1,11.99,03/26/19 12:28,"835 Forest St, Seattle, WA 98101" +177281,Apple Airpods Headphones,1,150,03/27/19 20:31,"903 Church St, Atlanta, GA 30301" +177282,Google Phone,1,600,03/11/19 08:43,"850 South St, Los Angeles, CA 90001" +177283,USB-C Charging Cable,1,11.95,03/03/19 17:02,"579 13th St, Los Angeles, CA 90001" +177284,USB-C Charging Cable,1,11.95,03/03/19 12:09,"951 Walnut St, San Francisco, CA 94016" +177285,USB-C Charging Cable,1,11.95,03/26/19 17:58,"740 Jackson St, Atlanta, GA 30301" +177286,ThinkPad Laptop,1,999.99,03/16/19 18:37,"427 Lakeview St, Dallas, TX 75001" +177287,AAA Batteries (4-pack),1,2.99,03/30/19 12:41,"532 Madison St, Seattle, WA 98101" +177288,AA Batteries (4-pack),1,3.84,03/09/19 08:04,"641 5th St, San Francisco, CA 94016" +177289,Flatscreen TV,1,300,03/07/19 15:56,"489 West St, San Francisco, CA 94016" +177290,Wired Headphones,1,11.99,03/06/19 15:28,"138 West St, San Francisco, CA 94016" +177290,Vareebadd Phone,1,400,03/06/19 15:28,"138 West St, San Francisco, CA 94016" +177291,Lightning Charging Cable,1,14.95,03/05/19 20:54,"67 Center St, Seattle, WA 98101" +177292,Lightning Charging Cable,2,14.95,03/11/19 16:59,"120 8th St, Boston, MA 02215" +177293,27in 4K Gaming Monitor,1,389.99,03/07/19 19:30,"290 Chestnut St, San Francisco, CA 94016" +177294,ThinkPad Laptop,1,999.99,03/03/19 10:39,"938 Willow St, Los Angeles, CA 90001" +177295,AAA Batteries (4-pack),2,2.99,03/01/19 22:32,"89 2nd St, Los Angeles, CA 90001" +177296,iPhone,1,700,03/26/19 14:46,"645 Pine St, Seattle, WA 98101" +177296,Lightning Charging Cable,1,14.95,03/26/19 14:46,"645 Pine St, Seattle, WA 98101" +177297,Wired Headphones,1,11.99,03/20/19 17:32,"443 Johnson St, Boston, MA 02215" +177298,USB-C Charging Cable,1,11.95,03/07/19 17:32,"232 Meadow St, Dallas, TX 75001" +177299,Bose SoundSport Headphones,1,99.99,03/17/19 22:26,"27 Highland St, New York City, NY 10001" +177300,USB-C Charging Cable,1,11.95,03/08/19 09:17,"125 Hickory St, Portland, OR 97035" +177301,USB-C Charging Cable,1,11.95,03/21/19 21:45,"655 10th St, Portland, OR 97035" +177302,AAA Batteries (4-pack),1,2.99,03/24/19 18:03,"927 Maple St, Boston, MA 02215" +177303,ThinkPad Laptop,1,999.99,03/29/19 12:31,"459 14th St, Boston, MA 02215" +177304,Flatscreen TV,1,300,03/01/19 09:21,"996 6th St, Boston, MA 02215" +177305,USB-C Charging Cable,1,11.95,03/23/19 15:06,"439 Ridge St, San Francisco, CA 94016" +177306,AAA Batteries (4-pack),1,2.99,03/18/19 20:33,"691 Adams St, San Francisco, CA 94016" +177307,Wired Headphones,1,11.99,03/21/19 22:20,"847 Adams St, San Francisco, CA 94016" +177308,AA Batteries (4-pack),1,3.84,03/23/19 18:01,"860 Center St, San Francisco, CA 94016" +177309,USB-C Charging Cable,1,11.95,03/20/19 12:22,"316 Willow St, New York City, NY 10001" +177310,Apple Airpods Headphones,1,150,03/04/19 07:24,"38 Dogwood St, New York City, NY 10001" +177311,Wired Headphones,1,11.99,03/29/19 10:18,"591 1st St, San Francisco, CA 94016" +177312,AAA Batteries (4-pack),2,2.99,03/19/19 03:34,"852 Dogwood St, Dallas, TX 75001" +177313,Apple Airpods Headphones,1,150,03/09/19 22:28,"705 Center St, Atlanta, GA 30301" +177314,AA Batteries (4-pack),1,3.84,03/25/19 13:22,"445 8th St, Austin, TX 73301" +177315,iPhone,1,700,03/28/19 10:25,"907 South St, San Francisco, CA 94016" +177316,Wired Headphones,1,11.99,03/13/19 19:27,"236 Lincoln St, Seattle, WA 98101" +177317,Lightning Charging Cable,1,14.95,03/02/19 00:28,"354 Maple St, Portland, OR 97035" +177317,Apple Airpods Headphones,1,150,03/02/19 00:28,"354 Maple St, Portland, OR 97035" +177318,Lightning Charging Cable,1,14.95,03/03/19 13:41,"488 Jackson St, Boston, MA 02215" +177319,AAA Batteries (4-pack),1,2.99,03/11/19 21:07,"908 1st St, San Francisco, CA 94016" +177320,Lightning Charging Cable,1,14.95,03/25/19 10:44,"523 Forest St, Dallas, TX 75001" +177321,Apple Airpods Headphones,1,150,03/29/19 12:23,"508 Willow St, San Francisco, CA 94016" +177322,Apple Airpods Headphones,1,150,03/20/19 18:19,"494 Johnson St, Portland, OR 97035" +177323,USB-C Charging Cable,1,11.95,03/27/19 15:23,"842 Washington St, San Francisco, CA 94016" +177324,Lightning Charging Cable,2,14.95,03/20/19 16:29,"830 1st St, Dallas, TX 75001" +177325,Apple Airpods Headphones,1,150,03/19/19 19:34,"969 13th St, San Francisco, CA 94016" +177326,iPhone,1,700,03/30/19 23:00,"535 Park St, New York City, NY 10001" +177327,iPhone,1,700,03/10/19 19:11,"896 Chestnut St, New York City, NY 10001" +177328,USB-C Charging Cable,1,11.95,03/03/19 18:14,"217 7th St, Dallas, TX 75001" +177329,Lightning Charging Cable,1,14.95,03/05/19 18:35,"599 Chestnut St, Los Angeles, CA 90001" +177330,Google Phone,1,600,03/16/19 21:26,"169 Lake St, Los Angeles, CA 90001" +177331,iPhone,1,700,03/12/19 00:42,"384 Spruce St, Boston, MA 02215" +177332,iPhone,1,700,03/27/19 07:28,"314 5th St, Los Angeles, CA 90001" +177333,AAA Batteries (4-pack),2,2.99,03/17/19 12:56,"420 13th St, Dallas, TX 75001" +177334,AA Batteries (4-pack),1,3.84,03/25/19 22:22,"74 West St, Los Angeles, CA 90001" +177335,AA Batteries (4-pack),1,3.84,03/13/19 20:57,"966 Jackson St, New York City, NY 10001" +177336,AA Batteries (4-pack),1,3.84,03/08/19 11:58,"744 Wilson St, Boston, MA 02215" +177337,Bose SoundSport Headphones,1,99.99,03/14/19 13:03,"172 2nd St, San Francisco, CA 94016" +177338,USB-C Charging Cable,1,11.95,03/02/19 19:36,"832 North St, Los Angeles, CA 90001" +177339,Apple Airpods Headphones,1,150,03/24/19 00:34,"892 13th St, San Francisco, CA 94016" +177340,34in Ultrawide Monitor,1,379.99,03/25/19 11:35,"771 Park St, Seattle, WA 98101" +177341,27in FHD Monitor,1,149.99,03/01/19 07:38,"724 Washington St, Austin, TX 73301" +177342,AAA Batteries (4-pack),1,2.99,03/28/19 17:49,"133 Cedar St, Dallas, TX 75001" +177343,iPhone,1,700,03/28/19 12:37,"276 North St, Boston, MA 02215" +177344,Flatscreen TV,1,300,03/18/19 21:41,"390 Maple St, San Francisco, CA 94016" +177345,AA Batteries (4-pack),1,3.84,03/30/19 20:19,"539 Elm St, San Francisco, CA 94016" +177346,Wired Headphones,1,11.99,03/26/19 14:18,"110 Jefferson St, Boston, MA 02215" +177347,Apple Airpods Headphones,1,150,03/05/19 22:05,"299 West St, Portland, ME 04101" +177348,20in Monitor,1,109.99,03/13/19 13:53,"602 11th St, Los Angeles, CA 90001" +177349,27in 4K Gaming Monitor,1,389.99,03/25/19 20:50,"151 River St, Boston, MA 02215" +177350,iPhone,1,700,03/18/19 14:51,"647 Lincoln St, Atlanta, GA 30301" +177351,Apple Airpods Headphones,1,150,03/19/19 11:36,"606 Meadow St, Atlanta, GA 30301" +177352,Google Phone,1,600,03/28/19 11:04,"381 Walnut St, Dallas, TX 75001" +177353,Wired Headphones,1,11.99,03/15/19 11:12,"362 Cedar St, Seattle, WA 98101" +177354,iPhone,1,700,03/30/19 19:47,"175 Ridge St, Atlanta, GA 30301" +177354,Apple Airpods Headphones,1,150,03/30/19 19:47,"175 Ridge St, Atlanta, GA 30301" +177355,AAA Batteries (4-pack),1,2.99,03/27/19 23:47,"570 Lincoln St, Dallas, TX 75001" +177356,20in Monitor,1,109.99,03/16/19 20:37,"972 Center St, Boston, MA 02215" +177357,Flatscreen TV,1,300,03/14/19 09:05,"735 7th St, San Francisco, CA 94016" +177358,USB-C Charging Cable,1,11.95,03/18/19 10:39,"928 Wilson St, Austin, TX 73301" +177359,Google Phone,1,600,03/19/19 15:28,"353 Pine St, New York City, NY 10001" +177360,Apple Airpods Headphones,1,150,03/15/19 11:46,"936 Lincoln St, Los Angeles, CA 90001" +177361,Lightning Charging Cable,1,14.95,03/09/19 10:42,"363 9th St, Austin, TX 73301" +177362,AAA Batteries (4-pack),1,2.99,03/18/19 14:38,"962 Meadow St, New York City, NY 10001" +177363,Lightning Charging Cable,1,14.95,03/31/19 20:17,"19 Highland St, New York City, NY 10001" +177364,Apple Airpods Headphones,1,150,03/12/19 17:16,"509 Spruce St, Boston, MA 02215" +177365,USB-C Charging Cable,1,11.95,03/14/19 12:59,"11 Madison St, Dallas, TX 75001" +177366,AAA Batteries (4-pack),3,2.99,03/29/19 11:07,"708 5th St, Los Angeles, CA 90001" +177367,Google Phone,1,600,03/05/19 18:14,"998 Madison St, Dallas, TX 75001" +177368,Lightning Charging Cable,1,14.95,03/05/19 11:56,"704 Adams St, San Francisco, CA 94016" +177369,Apple Airpods Headphones,1,150,03/02/19 17:11,"107 Wilson St, Dallas, TX 75001" +177370,AAA Batteries (4-pack),1,2.99,03/11/19 15:30,"933 Ridge St, Atlanta, GA 30301" +177371,AA Batteries (4-pack),1,3.84,03/25/19 15:52,"23 Forest St, New York City, NY 10001" +177372,Lightning Charging Cable,1,14.95,03/23/19 02:22,"136 13th St, San Francisco, CA 94016" +177373,Lightning Charging Cable,1,14.95,03/06/19 15:15,"51 West St, San Francisco, CA 94016" +177374,Wired Headphones,1,11.99,03/28/19 01:00,"715 Pine St, New York City, NY 10001" +177375,AA Batteries (4-pack),1,3.84,03/24/19 12:12,"316 Park St, New York City, NY 10001" +177376,USB-C Charging Cable,1,11.95,03/29/19 20:20,"365 12th St, New York City, NY 10001" +177377,AAA Batteries (4-pack),1,2.99,03/03/19 16:11,"821 River St, San Francisco, CA 94016" +177378,AAA Batteries (4-pack),1,2.99,03/21/19 08:50,"959 Meadow St, Portland, OR 97035" +177379,Lightning Charging Cable,1,14.95,03/26/19 22:10,"314 6th St, Seattle, WA 98101" +177380,AAA Batteries (4-pack),3,2.99,03/30/19 11:39,"823 10th St, San Francisco, CA 94016" +177381,AA Batteries (4-pack),1,3.84,03/28/19 12:22,"18 Jefferson St, Los Angeles, CA 90001" +177382,Bose SoundSport Headphones,1,99.99,03/02/19 13:47,"646 Walnut St, Seattle, WA 98101" +177383,AAA Batteries (4-pack),1,2.99,03/17/19 14:35,"655 Adams St, San Francisco, CA 94016" +177384,AAA Batteries (4-pack),2,2.99,03/30/19 19:32,"613 Highland St, San Francisco, CA 94016" +177385,Macbook Pro Laptop,1,1700,03/10/19 17:38,"629 Lincoln St, Portland, OR 97035" +177386,Wired Headphones,1,11.99,03/25/19 17:28,"120 Cherry St, Dallas, TX 75001" +177387,AA Batteries (4-pack),1,3.84,03/28/19 21:09,"588 1st St, Los Angeles, CA 90001" +177388,20in Monitor,1,109.99,03/14/19 12:58,"839 Forest St, New York City, NY 10001" +177389,AA Batteries (4-pack),1,3.84,03/06/19 08:04,"245 Maple St, Seattle, WA 98101" +177390,Apple Airpods Headphones,1,150,03/05/19 12:38,"902 Jefferson St, Atlanta, GA 30301" +177391,Wired Headphones,1,11.99,03/27/19 09:28,"100 Church St, San Francisco, CA 94016" +177392,27in 4K Gaming Monitor,1,389.99,03/20/19 08:32,"805 Lakeview St, San Francisco, CA 94016" +177393,USB-C Charging Cable,1,11.95,03/06/19 13:51,"391 12th St, Los Angeles, CA 90001" +177394,Lightning Charging Cable,1,14.95,03/22/19 19:50,"104 Johnson St, San Francisco, CA 94016" +177395,USB-C Charging Cable,1,11.95,03/11/19 12:05,"436 Hill St, San Francisco, CA 94016" +177396,Wired Headphones,1,11.99,03/25/19 13:35,"775 2nd St, San Francisco, CA 94016" +177397,Flatscreen TV,1,300,03/31/19 19:15,"529 Jackson St, New York City, NY 10001" +177398,Wired Headphones,1,11.99,03/29/19 09:05,"644 Adams St, San Francisco, CA 94016" +177399,AAA Batteries (4-pack),1,2.99,03/02/19 19:06,"440 West St, Los Angeles, CA 90001" +177400,27in FHD Monitor,1,149.99,03/11/19 19:33,"540 Jefferson St, Seattle, WA 98101" +177401,AAA Batteries (4-pack),2,2.99,03/01/19 21:27,"377 7th St, San Francisco, CA 94016" +177402,Apple Airpods Headphones,1,150,03/30/19 13:30,"908 River St, Dallas, TX 75001" +177403,Wired Headphones,1,11.99,03/26/19 10:28,"175 6th St, Boston, MA 02215" +177404,Google Phone,1,600,03/23/19 20:07,"692 12th St, San Francisco, CA 94016" +177405,iPhone,1,700,03/02/19 19:37,"62 Willow St, San Francisco, CA 94016" +177406,Wired Headphones,1,11.99,03/01/19 09:31,"82 Willow St, New York City, NY 10001" +177407,AA Batteries (4-pack),2,3.84,03/25/19 16:16,"451 Walnut St, Dallas, TX 75001" +177408,Vareebadd Phone,1,400,03/19/19 14:56,"323 14th St, Los Angeles, CA 90001" +177409,AA Batteries (4-pack),1,3.84,03/28/19 16:38,"302 Adams St, Seattle, WA 98101" +177410,27in FHD Monitor,1,149.99,03/17/19 12:24,"666 Dogwood St, Atlanta, GA 30301" +177411,Lightning Charging Cable,2,14.95,03/18/19 19:29,"643 Cherry St, Los Angeles, CA 90001" +177412,Apple Airpods Headphones,1,150,03/01/19 19:47,"544 Madison St, San Francisco, CA 94016" +177413,AAA Batteries (4-pack),2,2.99,03/10/19 17:40,"820 2nd St, Portland, OR 97035" +177414,AAA Batteries (4-pack),1,2.99,03/16/19 23:44,"40 Center St, Los Angeles, CA 90001" +177414,USB-C Charging Cable,1,11.95,03/16/19 23:44,"40 Center St, Los Angeles, CA 90001" +177415,Bose SoundSport Headphones,1,99.99,03/08/19 09:41,"282 Elm St, San Francisco, CA 94016" +177416,AA Batteries (4-pack),1,3.84,03/29/19 21:25,"891 Adams St, Dallas, TX 75001" +177417,Wired Headphones,1,11.99,03/09/19 04:38,"844 4th St, San Francisco, CA 94016" +177418,AAA Batteries (4-pack),1,2.99,03/12/19 10:13,"918 6th St, Seattle, WA 98101" +177419,Lightning Charging Cable,1,14.95,03/19/19 13:29,"225 Chestnut St, Los Angeles, CA 90001" +177420,Vareebadd Phone,1,400,03/06/19 19:01,"274 Forest St, Atlanta, GA 30301" +177420,USB-C Charging Cable,1,11.95,03/06/19 19:01,"274 Forest St, Atlanta, GA 30301" +177421,Google Phone,1,600,03/24/19 12:56,"773 11th St, Atlanta, GA 30301" +177422,Apple Airpods Headphones,1,150,03/15/19 07:51,"17 4th St, Los Angeles, CA 90001" +177423,Apple Airpods Headphones,1,150,03/29/19 06:13,"486 1st St, Austin, TX 73301" +177424,AAA Batteries (4-pack),3,2.99,03/01/19 12:51,"699 Lincoln St, Boston, MA 02215" +177425,Wired Headphones,1,11.99,03/23/19 16:52,"593 9th St, Boston, MA 02215" +177426,Bose SoundSport Headphones,1,99.99,03/20/19 16:04,"491 Pine St, Portland, OR 97035" +177427,Wired Headphones,1,11.99,03/29/19 20:24,"817 Walnut St, Seattle, WA 98101" +177428,Apple Airpods Headphones,1,150,03/21/19 01:17,"164 Jackson St, San Francisco, CA 94016" +177429,ThinkPad Laptop,1,999.99,03/29/19 08:13,"299 Hickory St, Dallas, TX 75001" +177430,AAA Batteries (4-pack),1,2.99,03/05/19 06:48,"785 South St, Boston, MA 02215" +177431,AAA Batteries (4-pack),1,2.99,03/16/19 23:13,"754 Main St, San Francisco, CA 94016" +177432,27in FHD Monitor,1,149.99,03/14/19 22:48,"101 Wilson St, New York City, NY 10001" +177433,Google Phone,1,600,03/16/19 23:27,"21 Park St, Dallas, TX 75001" +177433,USB-C Charging Cable,1,11.95,03/16/19 23:27,"21 Park St, Dallas, TX 75001" +177434,Wired Headphones,1,11.99,03/23/19 21:20,"210 Main St, Seattle, WA 98101" +177435,AA Batteries (4-pack),1,3.84,03/13/19 12:44,"451 Forest St, Seattle, WA 98101" +177436,Lightning Charging Cable,1,14.95,03/07/19 21:38,"254 Jackson St, Seattle, WA 98101" +177437,Lightning Charging Cable,1,14.95,03/09/19 14:52,"631 Cedar St, New York City, NY 10001" +177438,Apple Airpods Headphones,1,150,03/21/19 14:39,"639 Madison St, Dallas, TX 75001" +177439,iPhone,1,700,03/27/19 06:52,"27 Willow St, Boston, MA 02215" +177440,34in Ultrawide Monitor,1,379.99,03/11/19 08:32,"440 Washington St, New York City, NY 10001" +177441,AAA Batteries (4-pack),1,2.99,03/16/19 12:48,"784 Adams St, Seattle, WA 98101" +177442,AAA Batteries (4-pack),2,2.99,03/14/19 17:38,"686 Cherry St, Seattle, WA 98101" +,,,,, +177443,AA Batteries (4-pack),1,3.84,03/12/19 17:29,"562 8th St, New York City, NY 10001" +177444,AA Batteries (4-pack),4,3.84,03/22/19 06:42,"100 2nd St, Seattle, WA 98101" +177445,Lightning Charging Cable,1,14.95,03/17/19 09:07,"751 Spruce St, Portland, OR 97035" +177446,Bose SoundSport Headphones,1,99.99,03/29/19 18:38,"715 9th St, Los Angeles, CA 90001" +177447,Bose SoundSport Headphones,1,99.99,03/08/19 23:06,"137 Lake St, San Francisco, CA 94016" +177448,USB-C Charging Cable,1,11.95,03/18/19 08:27,"325 13th St, Seattle, WA 98101" +177449,Apple Airpods Headphones,1,150,03/15/19 22:07,"658 Willow St, Dallas, TX 75001" +177450,AA Batteries (4-pack),2,3.84,03/16/19 15:48,"305 Maple St, Atlanta, GA 30301" +177451,Apple Airpods Headphones,1,150,03/28/19 03:07,"214 River St, Seattle, WA 98101" +177452,Bose SoundSport Headphones,1,99.99,03/16/19 22:24,"545 Adams St, New York City, NY 10001" +177452,USB-C Charging Cable,1,11.95,03/16/19 22:24,"545 Adams St, New York City, NY 10001" +177453,27in 4K Gaming Monitor,1,389.99,03/30/19 09:14,"692 Highland St, New York City, NY 10001" +177454,USB-C Charging Cable,1,11.95,03/07/19 12:50,"753 Willow St, New York City, NY 10001" +177455,Lightning Charging Cable,1,14.95,03/17/19 20:08,"208 Madison St, Seattle, WA 98101" +177456,Lightning Charging Cable,2,14.95,03/18/19 21:15,"631 13th St, San Francisco, CA 94016" +177457,AA Batteries (4-pack),1,3.84,03/01/19 12:53,"125 11th St, Atlanta, GA 30301" +177458,27in FHD Monitor,1,149.99,03/22/19 08:15,"995 Meadow St, Los Angeles, CA 90001" +177459,Wired Headphones,1,11.99,03/26/19 13:48,"260 4th St, New York City, NY 10001" +177460,AA Batteries (4-pack),1,3.84,03/31/19 19:06,"654 Hickory St, Dallas, TX 75001" +177461,AA Batteries (4-pack),1,3.84,03/02/19 06:22,"879 Adams St, Los Angeles, CA 90001" +177462,34in Ultrawide Monitor,1,379.99,03/27/19 00:01,"182 9th St, Los Angeles, CA 90001" +177463,Bose SoundSport Headphones,1,99.99,03/06/19 15:49,"784 Hill St, Boston, MA 02215" +177464,Flatscreen TV,1,300,03/26/19 20:31,"954 Madison St, Atlanta, GA 30301" +177465,AA Batteries (4-pack),4,3.84,03/31/19 13:31,"381 Forest St, Portland, ME 04101" +177466,AA Batteries (4-pack),1,3.84,03/27/19 08:57,"542 Chestnut St, Seattle, WA 98101" +177466,Apple Airpods Headphones,1,150,03/27/19 08:57,"542 Chestnut St, Seattle, WA 98101" +177467,Lightning Charging Cable,1,14.95,03/17/19 13:17,"38 4th St, New York City, NY 10001" +177468,USB-C Charging Cable,1,11.95,03/04/19 15:42,"417 5th St, Seattle, WA 98101" +177469,AAA Batteries (4-pack),1,2.99,03/18/19 15:59,"240 4th St, Los Angeles, CA 90001" +177470,34in Ultrawide Monitor,1,379.99,03/29/19 19:21,"49 Ridge St, Boston, MA 02215" +177471,Bose SoundSport Headphones,1,99.99,03/17/19 18:56,"476 Meadow St, Los Angeles, CA 90001" +177472,Lightning Charging Cable,1,14.95,03/28/19 11:36,"297 6th St, Seattle, WA 98101" +177473,Vareebadd Phone,1,400,03/05/19 11:49,"775 Maple St, New York City, NY 10001" +177474,ThinkPad Laptop,1,999.99,03/10/19 08:44,"299 7th St, San Francisco, CA 94016" +177475,USB-C Charging Cable,1,11.95,03/20/19 00:44,"860 10th St, Portland, ME 04101" +177476,iPhone,1,700,03/14/19 16:30,"55 2nd St, Dallas, TX 75001" +177477,Lightning Charging Cable,1,14.95,03/02/19 23:07,"214 Elm St, Los Angeles, CA 90001" +177478,27in 4K Gaming Monitor,1,389.99,03/05/19 19:30,"42 13th St, Portland, OR 97035" +177479,27in FHD Monitor,1,149.99,03/20/19 09:09,"893 13th St, Portland, OR 97035" +177480,Apple Airpods Headphones,1,150,03/16/19 10:10,"231 Cedar St, New York City, NY 10001" +177481,Bose SoundSport Headphones,1,99.99,03/12/19 16:48,"843 Lake St, Boston, MA 02215" +177482,27in FHD Monitor,1,149.99,03/15/19 10:45,"557 Washington St, Austin, TX 73301" +177483,AA Batteries (4-pack),1,3.84,03/06/19 08:32,"851 9th St, San Francisco, CA 94016" +177484,USB-C Charging Cable,1,11.95,03/11/19 09:26,"940 5th St, Atlanta, GA 30301" +177485,27in FHD Monitor,1,149.99,03/25/19 23:54,"793 Center St, Portland, OR 97035" +177486,Wired Headphones,1,11.99,03/13/19 11:52,"879 Dogwood St, New York City, NY 10001" +177487,Apple Airpods Headphones,1,150,03/12/19 21:30,"515 Jefferson St, Atlanta, GA 30301" +177488,AAA Batteries (4-pack),1,2.99,03/25/19 12:32,"951 11th St, Dallas, TX 75001" +177489,AA Batteries (4-pack),1,3.84,03/20/19 11:53,"590 14th St, New York City, NY 10001" +177490,27in 4K Gaming Monitor,1,389.99,03/03/19 20:21,"893 10th St, Portland, OR 97035" +177491,AAA Batteries (4-pack),1,2.99,03/21/19 20:53,"1 Ridge St, New York City, NY 10001" +177492,USB-C Charging Cable,1,11.95,03/03/19 17:47,"477 5th St, San Francisco, CA 94016" +177493,AA Batteries (4-pack),3,3.84,03/03/19 10:13,"586 Madison St, Atlanta, GA 30301" +177494,USB-C Charging Cable,1,11.95,03/26/19 01:29,"278 Dogwood St, San Francisco, CA 94016" +177495,Bose SoundSport Headphones,1,99.99,03/16/19 15:24,"800 Pine St, Dallas, TX 75001" +177496,27in FHD Monitor,1,149.99,03/20/19 13:33,"892 Washington St, San Francisco, CA 94016" +177497,27in FHD Monitor,2,149.99,03/17/19 21:27,"731 River St, Los Angeles, CA 90001" +177498,Bose SoundSport Headphones,1,99.99,03/03/19 21:26,"523 Willow St, San Francisco, CA 94016" +177499,20in Monitor,1,109.99,03/22/19 03:30,"982 5th St, San Francisco, CA 94016" +177500,Apple Airpods Headphones,1,150,03/25/19 15:55,"563 9th St, Austin, TX 73301" +177501,Bose SoundSport Headphones,1,99.99,03/09/19 21:22,"952 Hickory St, Boston, MA 02215" +177502,AAA Batteries (4-pack),2,2.99,03/27/19 23:14,"533 Church St, Los Angeles, CA 90001" +177503,Bose SoundSport Headphones,1,99.99,03/23/19 21:15,"760 Wilson St, San Francisco, CA 94016" +177504,AA Batteries (4-pack),1,3.84,03/01/19 19:42,"316 Center St, San Francisco, CA 94016" +177505,USB-C Charging Cable,1,11.95,03/13/19 12:30,"331 11th St, San Francisco, CA 94016" +177506,USB-C Charging Cable,1,11.95,03/16/19 17:17,"698 5th St, Portland, OR 97035" +177507,Apple Airpods Headphones,1,150,03/26/19 13:02,"225 Church St, San Francisco, CA 94016" +177508,ThinkPad Laptop,1,999.99,03/25/19 10:11,"948 Church St, Atlanta, GA 30301" +177509,Wired Headphones,1,11.99,03/12/19 11:08,"521 Cedar St, San Francisco, CA 94016" +177510,27in 4K Gaming Monitor,1,389.99,03/07/19 19:26,"686 Lincoln St, New York City, NY 10001" +177511,USB-C Charging Cable,1,11.95,03/15/19 07:57,"850 14th St, San Francisco, CA 94016" +177512,Flatscreen TV,1,300,03/19/19 16:51,"134 5th St, Los Angeles, CA 90001" +177513,iPhone,1,700,03/27/19 21:27,"640 Center St, Los Angeles, CA 90001" +177514,USB-C Charging Cable,1,11.95,03/14/19 03:18,"533 Ridge St, Los Angeles, CA 90001" +177515,Wired Headphones,1,11.99,03/21/19 16:48,"565 Cedar St, Atlanta, GA 30301" +177516,Apple Airpods Headphones,1,150,03/18/19 11:10,"176 South St, New York City, NY 10001" +177517,Apple Airpods Headphones,1,150,03/08/19 17:20,"477 14th St, Atlanta, GA 30301" +177518,AAA Batteries (4-pack),1,2.99,03/05/19 19:18,"104 Chestnut St, Atlanta, GA 30301" +177519,USB-C Charging Cable,2,11.95,03/03/19 20:45,"637 Forest St, New York City, NY 10001" +177520,USB-C Charging Cable,1,11.95,03/05/19 16:11,"100 Lake St, Austin, TX 73301" +177521,Wired Headphones,1,11.99,03/10/19 16:28,"282 Hill St, San Francisco, CA 94016" +177522,Lightning Charging Cable,1,14.95,03/05/19 22:00,"774 7th St, Portland, ME 04101" +177523,Lightning Charging Cable,1,14.95,03/29/19 07:00,"515 13th St, Dallas, TX 75001" +177524,Wired Headphones,1,11.99,03/22/19 20:49,"220 Dogwood St, Los Angeles, CA 90001" +177525,AA Batteries (4-pack),1,3.84,03/18/19 18:17,"73 Spruce St, Boston, MA 02215" +177526,Bose SoundSport Headphones,1,99.99,03/12/19 19:34,"669 North St, San Francisco, CA 94016" +177527,AA Batteries (4-pack),3,3.84,03/19/19 23:40,"299 Johnson St, Los Angeles, CA 90001" +177528,27in FHD Monitor,1,149.99,03/01/19 12:28,"40 Lincoln St, Seattle, WA 98101" +177528,34in Ultrawide Monitor,1,379.99,03/01/19 12:28,"40 Lincoln St, Seattle, WA 98101" +177529,Google Phone,1,600,03/09/19 19:46,"777 Highland St, Los Angeles, CA 90001" +177529,Bose SoundSport Headphones,1,99.99,03/09/19 19:46,"777 Highland St, Los Angeles, CA 90001" +177530,Vareebadd Phone,1,400,03/28/19 14:55,"964 Ridge St, San Francisco, CA 94016" +177530,Wired Headphones,1,11.99,03/28/19 14:55,"964 Ridge St, San Francisco, CA 94016" +177531,Lightning Charging Cable,1,14.95,03/01/19 08:57,"961 5th St, San Francisco, CA 94016" +177532,27in 4K Gaming Monitor,1,389.99,03/23/19 10:25,"264 11th St, Boston, MA 02215" +177533,AA Batteries (4-pack),1,3.84,03/24/19 06:51,"943 Park St, San Francisco, CA 94016" +177534,27in FHD Monitor,1,149.99,03/15/19 23:57,"91 Madison St, Portland, OR 97035" +177535,Google Phone,1,600,03/19/19 19:09,"844 11th St, Portland, OR 97035" +177535,USB-C Charging Cable,2,11.95,03/19/19 19:09,"844 11th St, Portland, OR 97035" +177536,Wired Headphones,1,11.99,03/07/19 10:00,"547 1st St, New York City, NY 10001" +177537,34in Ultrawide Monitor,1,379.99,03/21/19 09:34,"927 Hickory St, San Francisco, CA 94016" +177538,ThinkPad Laptop,1,999.99,03/05/19 19:02,"180 13th St, Seattle, WA 98101" +177539,iPhone,1,700,03/15/19 18:33,"570 Ridge St, Dallas, TX 75001" +177540,Apple Airpods Headphones,1,150,03/27/19 10:07,"495 Forest St, Los Angeles, CA 90001" +177541,Lightning Charging Cable,1,14.95,03/20/19 20:02,"951 Wilson St, New York City, NY 10001" +177542,Apple Airpods Headphones,1,150,03/09/19 12:51,"700 Adams St, Seattle, WA 98101" +177543,Vareebadd Phone,1,400,03/16/19 17:13,"671 Main St, Boston, MA 02215" +177544,iPhone,1,700,03/23/19 05:49,"469 Meadow St, San Francisco, CA 94016" +177545,Lightning Charging Cable,1,14.95,04/01/19 01:04,"534 Meadow St, San Francisco, CA 94016" +177546,Apple Airpods Headphones,1,150,03/25/19 19:18,"412 14th St, New York City, NY 10001" +177547,Wired Headphones,1,11.99,03/09/19 11:17,"304 12th St, Austin, TX 73301" +177548,Apple Airpods Headphones,1,150,03/11/19 15:38,"88 2nd St, Atlanta, GA 30301" +177549,34in Ultrawide Monitor,1,379.99,03/28/19 19:15,"72 Ridge St, San Francisco, CA 94016" +177550,AAA Batteries (4-pack),1,2.99,03/03/19 07:12,"582 Sunset St, New York City, NY 10001" +177551,Lightning Charging Cable,1,14.95,03/24/19 10:50,"21 Center St, Los Angeles, CA 90001" +177552,Wired Headphones,1,11.99,03/21/19 10:53,"681 Ridge St, Dallas, TX 75001" +177553,Google Phone,1,600,03/04/19 10:57,"612 2nd St, Seattle, WA 98101" +177554,Flatscreen TV,1,300,03/14/19 09:48,"476 4th St, San Francisco, CA 94016" +177555,Lightning Charging Cable,1,14.95,03/02/19 17:57,"12 Hill St, San Francisco, CA 94016" +177556,Bose SoundSport Headphones,1,99.99,03/27/19 18:09,"210 Pine St, Seattle, WA 98101" +177557,27in FHD Monitor,1,149.99,03/27/19 22:54,"98 South St, San Francisco, CA 94016" +177558,Lightning Charging Cable,1,14.95,03/16/19 22:54,"601 6th St, New York City, NY 10001" +177559,Flatscreen TV,1,300,03/05/19 01:34,"26 North St, Los Angeles, CA 90001" +177560,Flatscreen TV,1,300,03/28/19 19:38,"740 Church St, San Francisco, CA 94016" +177561,Wired Headphones,1,11.99,03/10/19 21:05,"192 Pine St, San Francisco, CA 94016" +177562,34in Ultrawide Monitor,1,379.99,03/31/19 12:15,"275 7th St, San Francisco, CA 94016" +177563,Apple Airpods Headphones,1,150,03/31/19 15:35,"774 Lincoln St, Boston, MA 02215" +177564,Google Phone,1,600,03/01/19 14:55,"165 8th St, Austin, TX 73301" +177565,Bose SoundSport Headphones,1,99.99,03/08/19 21:47,"128 Cedar St, San Francisco, CA 94016" +177566,iPhone,1,700,03/24/19 00:05,"751 Wilson St, Austin, TX 73301" +177567,AA Batteries (4-pack),2,3.84,03/16/19 20:56,"776 Elm St, Austin, TX 73301" +177568,USB-C Charging Cable,1,11.95,03/22/19 17:05,"841 9th St, Boston, MA 02215" +177569,Bose SoundSport Headphones,1,99.99,03/04/19 21:36,"109 North St, Los Angeles, CA 90001" +177570,Bose SoundSport Headphones,1,99.99,03/29/19 18:01,"643 Cherry St, Dallas, TX 75001" +177571,AA Batteries (4-pack),2,3.84,03/16/19 22:10,"693 Lake St, Boston, MA 02215" +177572,Lightning Charging Cable,1,14.95,03/17/19 20:25,"426 Lincoln St, Austin, TX 73301" +177573,Apple Airpods Headphones,1,150,03/11/19 11:17,"562 Spruce St, San Francisco, CA 94016" +177574,Apple Airpods Headphones,1,150,03/12/19 12:22,"104 4th St, New York City, NY 10001" +177575,AA Batteries (4-pack),1,3.84,03/29/19 07:54,"865 South St, San Francisco, CA 94016" +177576,AAA Batteries (4-pack),1,2.99,03/27/19 18:30,"403 Lake St, Los Angeles, CA 90001" +177577,Wired Headphones,1,11.99,03/18/19 05:37,"41 Maple St, San Francisco, CA 94016" +177578,Bose SoundSport Headphones,1,99.99,03/29/19 14:54,"555 5th St, Los Angeles, CA 90001" +177579,27in FHD Monitor,1,149.99,03/23/19 21:35,"233 Forest St, New York City, NY 10001" +177580,Apple Airpods Headphones,1,150,03/12/19 12:45,"516 Cedar St, Los Angeles, CA 90001" +177581,Google Phone,1,600,03/12/19 19:47,"999 12th St, Seattle, WA 98101" +177581,USB-C Charging Cable,1,11.95,03/12/19 19:47,"999 12th St, Seattle, WA 98101" +177582,Lightning Charging Cable,1,14.95,03/04/19 17:13,"835 Jackson St, Boston, MA 02215" +177583,USB-C Charging Cable,1,11.95,03/15/19 05:21,"505 River St, Seattle, WA 98101" +177584,Bose SoundSport Headphones,1,99.99,03/02/19 19:30,"963 Meadow St, Atlanta, GA 30301" +177585,34in Ultrawide Monitor,1,379.99,03/30/19 18:54,"89 Chestnut St, Boston, MA 02215" +177586,AAA Batteries (4-pack),3,2.99,03/30/19 13:03,"183 Meadow St, New York City, NY 10001" +177587,Apple Airpods Headphones,1,150,03/16/19 13:24,"57 Church St, San Francisco, CA 94016" +177588,AA Batteries (4-pack),1,3.84,03/05/19 11:28,"323 Hickory St, San Francisco, CA 94016" +177589,Wired Headphones,1,11.99,03/22/19 13:16,"756 Lake St, Seattle, WA 98101" +177590,AAA Batteries (4-pack),1,2.99,03/10/19 14:10,"812 Meadow St, Los Angeles, CA 90001" +177591,USB-C Charging Cable,1,11.95,03/31/19 06:37,"522 Cedar St, Los Angeles, CA 90001" +177592,Bose SoundSport Headphones,1,99.99,03/14/19 23:17,"422 Park St, San Francisco, CA 94016" +177593,Lightning Charging Cable,1,14.95,03/12/19 14:57,"21 Forest St, Los Angeles, CA 90001" +177594,Wired Headphones,1,11.99,03/31/19 00:42,"772 Wilson St, Atlanta, GA 30301" +177595,Google Phone,1,600,03/24/19 10:59,"307 Cedar St, San Francisco, CA 94016" +177596,Apple Airpods Headphones,1,150,03/17/19 08:38,"240 2nd St, San Francisco, CA 94016" +177597,Macbook Pro Laptop,1,1700,03/26/19 14:37,"377 Sunset St, Austin, TX 73301" +177598,AAA Batteries (4-pack),2,2.99,03/17/19 17:34,"140 Park St, New York City, NY 10001" +177599,Lightning Charging Cable,1,14.95,03/25/19 19:40,"445 Hickory St, Portland, OR 97035" +177600,Vareebadd Phone,1,400,03/29/19 23:53,"588 Wilson St, Boston, MA 02215" +177600,USB-C Charging Cable,1,11.95,03/29/19 23:53,"588 Wilson St, Boston, MA 02215" +177601,AA Batteries (4-pack),2,3.84,03/08/19 23:39,"665 Church St, Los Angeles, CA 90001" +177602,Bose SoundSport Headphones,1,99.99,03/30/19 10:07,"762 Jefferson St, San Francisco, CA 94016" +177603,Lightning Charging Cable,1,14.95,03/04/19 19:45,"416 Park St, Atlanta, GA 30301" +177604,AAA Batteries (4-pack),3,2.99,03/08/19 14:44,"210 Washington St, Los Angeles, CA 90001" +177605,Wired Headphones,1,11.99,03/31/19 10:08,"624 7th St, San Francisco, CA 94016" +177606,Apple Airpods Headphones,1,150,03/29/19 14:03,"598 7th St, San Francisco, CA 94016" +177607,Apple Airpods Headphones,1,150,03/26/19 21:54,"975 Elm St, Portland, OR 97035" +177608,34in Ultrawide Monitor,1,379.99,03/27/19 00:15,"17 4th St, New York City, NY 10001" +177609,Apple Airpods Headphones,1,150,03/28/19 12:17,"473 Forest St, Austin, TX 73301" +177610,AA Batteries (4-pack),2,3.84,03/24/19 14:46,"236 2nd St, Los Angeles, CA 90001" +177611,USB-C Charging Cable,1,11.95,03/07/19 17:16,"49 Lake St, San Francisco, CA 94016" +177612,AA Batteries (4-pack),2,3.84,03/16/19 16:45,"176 4th St, Los Angeles, CA 90001" +177613,Bose SoundSport Headphones,1,99.99,03/05/19 16:08,"452 12th St, Los Angeles, CA 90001" +177614,AA Batteries (4-pack),1,3.84,03/27/19 18:51,"383 Willow St, Los Angeles, CA 90001" +177615,Wired Headphones,1,11.99,03/29/19 12:30,"384 Pine St, Los Angeles, CA 90001" +177616,USB-C Charging Cable,1,11.95,03/02/19 21:55,"151 Jefferson St, San Francisco, CA 94016" +177617,Apple Airpods Headphones,1,150,03/17/19 16:07,"257 Forest St, San Francisco, CA 94016" +177618,27in FHD Monitor,1,149.99,03/03/19 11:13,"598 6th St, San Francisco, CA 94016" +177619,AA Batteries (4-pack),1,3.84,03/13/19 15:10,"310 Forest St, Dallas, TX 75001" +177620,AAA Batteries (4-pack),1,2.99,03/27/19 06:36,"824 Adams St, San Francisco, CA 94016" +177621,Apple Airpods Headphones,1,150,03/27/19 22:32,"874 Main St, New York City, NY 10001" +177622,iPhone,1,700,03/31/19 23:17,"435 Hill St, Boston, MA 02215" +177622,Lightning Charging Cable,1,14.95,03/31/19 23:17,"435 Hill St, Boston, MA 02215" +177623,Apple Airpods Headphones,1,150,03/17/19 12:33,"542 4th St, San Francisco, CA 94016" +177624,LG Washing Machine,1,600.0,03/12/19 19:30,"48 8th St, Austin, TX 73301" +177625,Lightning Charging Cable,1,14.95,03/15/19 09:56,"676 Elm St, Atlanta, GA 30301" +177626,USB-C Charging Cable,1,11.95,03/26/19 20:07,"924 Lakeview St, Los Angeles, CA 90001" +177627,Bose SoundSport Headphones,1,99.99,03/18/19 09:16,"97 2nd St, Dallas, TX 75001" +177627,27in FHD Monitor,1,149.99,03/18/19 09:16,"97 2nd St, Dallas, TX 75001" +177628,AAA Batteries (4-pack),1,2.99,03/15/19 11:56,"964 Pine St, Los Angeles, CA 90001" +177629,USB-C Charging Cable,1,11.95,03/25/19 18:27,"443 7th St, Austin, TX 73301" +177630,Macbook Pro Laptop,1,1700,03/10/19 10:06,"668 Ridge St, San Francisco, CA 94016" +177631,Wired Headphones,1,11.99,03/13/19 11:10,"123 Hill St, Boston, MA 02215" +177632,27in 4K Gaming Monitor,1,389.99,03/07/19 10:48,"806 Hickory St, San Francisco, CA 94016" +177633,iPhone,1,700,03/26/19 19:57,"284 Washington St, Los Angeles, CA 90001" +177634,Wired Headphones,1,11.99,03/29/19 21:34,"938 Willow St, Los Angeles, CA 90001" +177635,Wired Headphones,1,11.99,03/07/19 06:34,"891 Adams St, Los Angeles, CA 90001" +177636,Lightning Charging Cable,1,14.95,03/28/19 20:35,"197 12th St, San Francisco, CA 94016" +177637,Bose SoundSport Headphones,1,99.99,03/11/19 20:31,"199 West St, Seattle, WA 98101" +177638,iPhone,1,700,03/11/19 22:10,"262 Hill St, Atlanta, GA 30301" +177638,Lightning Charging Cable,1,14.95,03/11/19 22:10,"262 Hill St, Atlanta, GA 30301" +177639,AA Batteries (4-pack),1,3.84,03/22/19 10:03,"638 1st St, Portland, OR 97035" +177640,Lightning Charging Cable,2,14.95,03/01/19 22:13,"867 1st St, New York City, NY 10001" +177641,ThinkPad Laptop,1,999.99,03/03/19 22:31,"925 1st St, Dallas, TX 75001" +177642,Vareebadd Phone,1,400,03/09/19 21:07,"689 6th St, New York City, NY 10001" +177643,Lightning Charging Cable,1,14.95,03/18/19 11:26,"370 Main St, Austin, TX 73301" +177644,USB-C Charging Cable,1,11.95,03/15/19 18:03,"349 13th St, San Francisco, CA 94016" +177645,27in FHD Monitor,1,149.99,03/04/19 19:15,"914 South St, Portland, ME 04101" +177646,Wired Headphones,1,11.99,03/12/19 13:52,"53 14th St, Austin, TX 73301" +177647,Lightning Charging Cable,1,14.95,03/24/19 19:19,"631 13th St, San Francisco, CA 94016" +177648,AAA Batteries (4-pack),1,2.99,03/02/19 20:03,"905 Center St, Austin, TX 73301" +177649,AA Batteries (4-pack),1,3.84,03/04/19 08:15,"21 2nd St, Seattle, WA 98101" +177650,iPhone,1,700,03/19/19 09:47,"430 Meadow St, Portland, ME 04101" +177650,Apple Airpods Headphones,1,150,03/19/19 09:47,"430 Meadow St, Portland, ME 04101" +177651,Google Phone,1,600,03/12/19 21:14,"183 Ridge St, Seattle, WA 98101" +177652,AA Batteries (4-pack),2,3.84,03/29/19 20:46,"727 Meadow St, Austin, TX 73301" +177653,Bose SoundSport Headphones,1,99.99,03/27/19 19:02,"314 8th St, New York City, NY 10001" +177654,Wired Headphones,1,11.99,03/18/19 08:53,"901 Pine St, Boston, MA 02215" +177655,27in FHD Monitor,1,149.99,03/20/19 12:38,"294 1st St, Seattle, WA 98101" +177656,Flatscreen TV,1,300,03/07/19 13:02,"332 14th St, San Francisco, CA 94016" +177657,USB-C Charging Cable,1,11.95,03/26/19 20:54,"123 6th St, Dallas, TX 75001" +177658,Flatscreen TV,1,300,03/12/19 16:34,"9 Meadow St, New York City, NY 10001" +177659,ThinkPad Laptop,1,999.99,03/16/19 14:20,"263 Forest St, San Francisco, CA 94016" +177660,Macbook Pro Laptop,1,1700,03/02/19 18:19,"752 North St, Atlanta, GA 30301" +177661,Apple Airpods Headphones,1,150,03/18/19 11:57,"808 Hickory St, San Francisco, CA 94016" +177662,AAA Batteries (4-pack),1,2.99,03/28/19 20:58,"717 West St, Los Angeles, CA 90001" +177663,AA Batteries (4-pack),2,3.84,03/20/19 15:45,"935 Sunset St, New York City, NY 10001" +177664,AAA Batteries (4-pack),1,2.99,03/20/19 12:03,"64 12th St, San Francisco, CA 94016" +177665,iPhone,1,700,03/16/19 18:55,"888 Meadow St, Boston, MA 02215" +177666,AA Batteries (4-pack),1,3.84,03/10/19 08:03,"588 Pine St, Boston, MA 02215" +177667,Bose SoundSport Headphones,1,99.99,03/21/19 18:23,"942 10th St, Austin, TX 73301" +177668,Bose SoundSport Headphones,1,99.99,03/02/19 15:41,"273 9th St, New York City, NY 10001" +177669,AA Batteries (4-pack),1,3.84,03/04/19 18:02,"145 14th St, Atlanta, GA 30301" +177670,27in FHD Monitor,1,149.99,03/08/19 19:05,"575 4th St, Boston, MA 02215" +177671,AA Batteries (4-pack),1,3.84,03/25/19 08:16,"861 Maple St, Seattle, WA 98101" +177672,34in Ultrawide Monitor,1,379.99,03/19/19 19:37,"110 Jackson St, Los Angeles, CA 90001" +177673,Wired Headphones,1,11.99,03/24/19 11:19,"825 Maple St, New York City, NY 10001" +177674,Google Phone,1,600,03/25/19 19:01,"666 13th St, Dallas, TX 75001" +177675,Wired Headphones,1,11.99,03/04/19 22:07,"799 7th St, Seattle, WA 98101" +177676,Lightning Charging Cable,1,14.95,03/20/19 16:14,"190 Washington St, Austin, TX 73301" +177677,Wired Headphones,1,11.99,03/26/19 11:05,"857 Lincoln St, Dallas, TX 75001" +177678,Vareebadd Phone,1,400,03/17/19 01:49,"957 Hickory St, Atlanta, GA 30301" +177679,Apple Airpods Headphones,1,150,03/31/19 14:40,"984 6th St, Boston, MA 02215" +177680,27in 4K Gaming Monitor,1,389.99,03/17/19 15:17,"736 Jackson St, Portland, OR 97035" +177681,USB-C Charging Cable,2,11.95,03/18/19 23:13,"728 Meadow St, San Francisco, CA 94016" +177682,AA Batteries (4-pack),1,3.84,03/04/19 15:51,"114 9th St, Portland, OR 97035" +177683,Google Phone,1,600,03/05/19 21:13,"860 2nd St, Dallas, TX 75001" +177684,27in FHD Monitor,1,149.99,03/15/19 03:29,"137 Lakeview St, Portland, OR 97035" +177685,Wired Headphones,1,11.99,03/18/19 12:38,"770 2nd St, Los Angeles, CA 90001" +177686,Apple Airpods Headphones,1,150,03/01/19 18:00,"528 Dogwood St, Boston, MA 02215" +177687,Bose SoundSport Headphones,1,99.99,03/16/19 19:29,"947 Pine St, San Francisco, CA 94016" +177688,Lightning Charging Cable,1,14.95,03/21/19 17:01,"742 9th St, Seattle, WA 98101" +177689,Lightning Charging Cable,1,14.95,03/26/19 21:30,"35 11th St, Los Angeles, CA 90001" +177690,USB-C Charging Cable,1,11.95,03/19/19 12:03,"237 Spruce St, Seattle, WA 98101" +177691,Lightning Charging Cable,1,14.95,03/25/19 19:48,"461 Lakeview St, San Francisco, CA 94016" +177692,Bose SoundSport Headphones,1,99.99,03/08/19 14:47,"207 North St, Seattle, WA 98101" +177693,AA Batteries (4-pack),2,3.84,03/16/19 23:24,"420 10th St, Boston, MA 02215" +177694,Macbook Pro Laptop,1,1700,03/10/19 08:30,"455 Elm St, Portland, OR 97035" +177695,Flatscreen TV,1,300,03/31/19 06:54,"608 Adams St, Los Angeles, CA 90001" +177696,Wired Headphones,1,11.99,03/06/19 19:35,"238 River St, Seattle, WA 98101" +177697,USB-C Charging Cable,1,11.95,03/15/19 20:13,"377 9th St, San Francisco, CA 94016" +177698,Google Phone,1,600,03/15/19 00:20,"343 Adams St, Atlanta, GA 30301" +177699,USB-C Charging Cable,1,11.95,03/27/19 18:44,"810 Lake St, New York City, NY 10001" +177700,Bose SoundSport Headphones,1,99.99,03/06/19 03:12,"129 Park St, Boston, MA 02215" +177701,USB-C Charging Cable,1,11.95,03/24/19 08:05,"443 Cedar St, Los Angeles, CA 90001" +177702,AAA Batteries (4-pack),1,2.99,03/20/19 12:16,"920 Lakeview St, San Francisco, CA 94016" +177703,Apple Airpods Headphones,1,150,03/20/19 09:23,"198 Lincoln St, Portland, OR 97035" +177704,Flatscreen TV,1,300,03/03/19 09:34,"23 Madison St, Los Angeles, CA 90001" +177705,AAA Batteries (4-pack),1,2.99,03/25/19 00:21,"83 Washington St, Dallas, TX 75001" +177706,Google Phone,1,600,03/14/19 12:26,"819 Chestnut St, San Francisco, CA 94016" +177707,USB-C Charging Cable,1,11.95,03/30/19 19:37,"479 North St, Austin, TX 73301" +177708,AAA Batteries (4-pack),1,2.99,03/23/19 19:39,"415 Hickory St, San Francisco, CA 94016" +177709,Bose SoundSport Headphones,1,99.99,03/12/19 16:26,"493 10th St, Dallas, TX 75001" +177710,LG Dryer,1,600.0,03/31/19 17:45,"989 Lake St, San Francisco, CA 94016" +177711,Google Phone,1,600,03/29/19 13:04,"872 Main St, San Francisco, CA 94016" +177712,27in FHD Monitor,1,149.99,03/12/19 20:25,"914 2nd St, Austin, TX 73301" +177713,AA Batteries (4-pack),2,3.84,03/23/19 15:43,"907 Willow St, Boston, MA 02215" +177714,Vareebadd Phone,1,400,03/11/19 12:48,"134 Forest St, Dallas, TX 75001" +177714,USB-C Charging Cable,1,11.95,03/11/19 12:48,"134 Forest St, Dallas, TX 75001" +177715,ThinkPad Laptop,1,999.99,03/16/19 08:01,"465 5th St, San Francisco, CA 94016" +177716,Bose SoundSport Headphones,1,99.99,03/29/19 18:38,"161 11th St, San Francisco, CA 94016" +177716,USB-C Charging Cable,1,11.95,03/29/19 18:38,"161 11th St, San Francisco, CA 94016" +177717,Lightning Charging Cable,1,14.95,03/14/19 18:39,"492 11th St, New York City, NY 10001" +177718,Lightning Charging Cable,1,14.95,03/25/19 15:36,"314 9th St, Portland, OR 97035" +177719,AAA Batteries (4-pack),1,2.99,03/20/19 19:52,"877 Hill St, San Francisco, CA 94016" +177720,USB-C Charging Cable,1,11.95,03/22/19 21:01,"588 Church St, Dallas, TX 75001" +177721,Lightning Charging Cable,1,14.95,03/03/19 19:42,"685 10th St, New York City, NY 10001" +177722,Lightning Charging Cable,1,14.95,03/11/19 18:04,"429 Highland St, Austin, TX 73301" +177723,Macbook Pro Laptop,1,1700,03/18/19 11:04,"407 Johnson St, Atlanta, GA 30301" +177724,Lightning Charging Cable,1,14.95,03/09/19 18:36,"342 Center St, San Francisco, CA 94016" +177725,Bose SoundSport Headphones,1,99.99,03/18/19 22:17,"20 West St, San Francisco, CA 94016" +177726,AAA Batteries (4-pack),4,2.99,03/31/19 14:41,"34 Hickory St, Los Angeles, CA 90001" +177727,AAA Batteries (4-pack),1,2.99,03/14/19 15:28,"260 Lake St, Boston, MA 02215" +177728,Lightning Charging Cable,1,14.95,03/15/19 21:43,"533 Meadow St, Portland, OR 97035" +177729,Wired Headphones,2,11.99,03/28/19 19:24,"892 Church St, Dallas, TX 75001" +177730,Apple Airpods Headphones,1,150,03/02/19 09:27,"333 11th St, Los Angeles, CA 90001" +177731,AAA Batteries (4-pack),1,2.99,03/14/19 21:16,"132 Forest St, Dallas, TX 75001" +177732,27in 4K Gaming Monitor,1,389.99,03/13/19 08:28,"391 7th St, San Francisco, CA 94016" +177733,27in FHD Monitor,1,149.99,03/14/19 20:43,"612 Meadow St, Los Angeles, CA 90001" +177734,27in FHD Monitor,1,149.99,03/10/19 21:11,"906 River St, Los Angeles, CA 90001" +177735,Wired Headphones,1,11.99,03/28/19 09:41,"923 Adams St, San Francisco, CA 94016" +177736,AAA Batteries (4-pack),2,2.99,03/05/19 15:02,"306 7th St, Los Angeles, CA 90001" +177737,Wired Headphones,1,11.99,03/04/19 21:20,"789 14th St, San Francisco, CA 94016" +177737,27in FHD Monitor,1,149.99,03/04/19 21:20,"789 14th St, San Francisco, CA 94016" +177738,AAA Batteries (4-pack),2,2.99,03/28/19 07:16,"237 12th St, San Francisco, CA 94016" +177739,AAA Batteries (4-pack),2,2.99,03/11/19 23:13,"868 Adams St, New York City, NY 10001" +177740,Apple Airpods Headphones,1,150,03/05/19 22:51,"824 Jackson St, Los Angeles, CA 90001" +177741,USB-C Charging Cable,1,11.95,03/04/19 05:49,"999 Highland St, New York City, NY 10001" +177742,USB-C Charging Cable,1,11.95,03/02/19 10:42,"650 1st St, Seattle, WA 98101" +177743,Lightning Charging Cable,1,14.95,03/12/19 20:29,"470 Highland St, Dallas, TX 75001" +177744,Apple Airpods Headphones,1,150,03/23/19 21:10,"531 Church St, San Francisco, CA 94016" +177745,Flatscreen TV,1,300,03/03/19 14:30,"398 Meadow St, Los Angeles, CA 90001" +177746,Wired Headphones,1,11.99,03/28/19 14:27,"210 8th St, Portland, OR 97035" +177747,Lightning Charging Cable,1,14.95,03/21/19 04:57,"190 Wilson St, Atlanta, GA 30301" +177748,Lightning Charging Cable,1,14.95,03/19/19 18:27,"17 7th St, New York City, NY 10001" +177749,AAA Batteries (4-pack),1,2.99,03/08/19 18:48,"623 Cedar St, San Francisco, CA 94016" +177750,Bose SoundSport Headphones,1,99.99,03/17/19 21:26,"557 1st St, Boston, MA 02215" +177751,AA Batteries (4-pack),1,3.84,03/28/19 22:53,"852 6th St, Dallas, TX 75001" +177752,Bose SoundSport Headphones,1,99.99,03/14/19 18:14,"604 South St, Boston, MA 02215" +177753,iPhone,1,700,03/17/19 19:45,"741 6th St, Seattle, WA 98101" +177754,Wired Headphones,2,11.99,03/02/19 13:06,"931 Johnson St, San Francisco, CA 94016" +177755,27in 4K Gaming Monitor,1,389.99,03/22/19 17:13,"79 Cherry St, New York City, NY 10001" +177756,Apple Airpods Headphones,1,150,03/17/19 11:10,"767 Main St, Atlanta, GA 30301" +177757,USB-C Charging Cable,2,11.95,03/26/19 08:46,"155 Lake St, New York City, NY 10001" +177758,Vareebadd Phone,1,400,03/24/19 06:27,"724 Ridge St, Seattle, WA 98101" +177759,27in 4K Gaming Monitor,1,389.99,03/27/19 13:32,"787 Center St, Portland, OR 97035" +177760,AA Batteries (4-pack),1,3.84,03/08/19 17:42,"355 Highland St, New York City, NY 10001" +177761,27in 4K Gaming Monitor,1,389.99,03/18/19 12:55,"282 Johnson St, Atlanta, GA 30301" +177762,27in FHD Monitor,1,149.99,03/30/19 13:46,"420 11th St, Los Angeles, CA 90001" +177763,AA Batteries (4-pack),2,3.84,03/23/19 18:17,"156 12th St, San Francisco, CA 94016" +177764,USB-C Charging Cable,1,11.95,03/25/19 23:40,"352 Sunset St, Boston, MA 02215" +177765,Bose SoundSport Headphones,1,99.99,03/19/19 07:07,"32 9th St, New York City, NY 10001" +177766,USB-C Charging Cable,1,11.95,03/29/19 22:35,"142 Cedar St, San Francisco, CA 94016" +177767,iPhone,1,700,03/22/19 13:25,"791 Hickory St, Boston, MA 02215" +177768,USB-C Charging Cable,1,11.95,03/01/19 16:51,"567 Lakeview St, New York City, NY 10001" +177769,AAA Batteries (4-pack),1,2.99,03/19/19 18:54,"459 Madison St, New York City, NY 10001" +177770,ThinkPad Laptop,1,999.99,03/17/19 00:08,"317 Madison St, San Francisco, CA 94016" +177771,ThinkPad Laptop,1,999.99,03/20/19 23:31,"575 Lakeview St, Dallas, TX 75001" +177772,Apple Airpods Headphones,1,150,03/20/19 11:24,"470 Hill St, New York City, NY 10001" +177773,Wired Headphones,1,11.99,03/07/19 19:02,"838 Johnson St, Los Angeles, CA 90001" +177774,Apple Airpods Headphones,1,150,03/08/19 00:12,"793 9th St, Portland, OR 97035" +177775,Vareebadd Phone,1,400,03/30/19 12:45,"470 1st St, New York City, NY 10001" +177776,Bose SoundSport Headphones,1,99.99,03/17/19 18:48,"72 Willow St, Portland, ME 04101" +177777,USB-C Charging Cable,1,11.95,03/21/19 06:49,"886 Elm St, San Francisco, CA 94016" +177778,34in Ultrawide Monitor,1,379.99,03/14/19 18:41,"285 4th St, Austin, TX 73301" +177779,Wired Headphones,1,11.99,03/07/19 12:26,"440 Adams St, San Francisco, CA 94016" +177779,Apple Airpods Headphones,1,150,03/07/19 12:26,"440 Adams St, San Francisco, CA 94016" +177780,USB-C Charging Cable,1,11.95,03/03/19 16:57,"250 Church St, San Francisco, CA 94016" +177781,Lightning Charging Cable,1,14.95,03/31/19 15:39,"288 Wilson St, Los Angeles, CA 90001" +177782,34in Ultrawide Monitor,1,379.99,03/24/19 18:34,"616 Pine St, Dallas, TX 75001" +177783,AA Batteries (4-pack),1,3.84,03/06/19 18:32,"579 Sunset St, New York City, NY 10001" +177784,Bose SoundSport Headphones,1,99.99,03/28/19 23:30,"87 11th St, San Francisco, CA 94016" +177785,iPhone,1,700,03/13/19 22:45,"709 12th St, Portland, OR 97035" +177786,AA Batteries (4-pack),1,3.84,03/15/19 11:39,"208 Cherry St, San Francisco, CA 94016" +177787,iPhone,1,700,03/19/19 09:39,"194 Maple St, Atlanta, GA 30301" +177788,Bose SoundSport Headphones,1,99.99,03/01/19 11:02,"429 Jefferson St, Los Angeles, CA 90001" +177789,AA Batteries (4-pack),1,3.84,03/22/19 10:26,"314 Madison St, San Francisco, CA 94016" +177790,27in FHD Monitor,1,149.99,03/06/19 10:03,"507 Main St, Atlanta, GA 30301" +177791,Bose SoundSport Headphones,1,99.99,03/04/19 20:27,"53 6th St, Los Angeles, CA 90001" +177792,Apple Airpods Headphones,1,150,03/27/19 01:35,"339 Main St, San Francisco, CA 94016" +177793,Bose SoundSport Headphones,1,99.99,03/31/19 11:33,"548 11th St, New York City, NY 10001" +177794,USB-C Charging Cable,1,11.95,03/03/19 20:22,"870 Chestnut St, Austin, TX 73301" +177795,LG Dryer,1,600.0,03/20/19 17:41,"645 Chestnut St, Boston, MA 02215" +177796,Lightning Charging Cable,1,14.95,03/21/19 21:38,"623 9th St, Los Angeles, CA 90001" +177797,AA Batteries (4-pack),1,3.84,03/18/19 01:25,"496 Cedar St, Austin, TX 73301" +177798,AA Batteries (4-pack),1,3.84,03/08/19 20:40,"307 Hill St, Los Angeles, CA 90001" +177799,AAA Batteries (4-pack),1,2.99,03/25/19 16:43,"431 Forest St, Los Angeles, CA 90001" +177800,Wired Headphones,1,11.99,03/23/19 20:36,"369 11th St, Los Angeles, CA 90001" +177801,Bose SoundSport Headphones,1,99.99,03/18/19 11:20,"385 Hill St, Portland, OR 97035" +177802,27in FHD Monitor,1,149.99,03/16/19 17:39,"442 West St, Portland, OR 97035" +177803,USB-C Charging Cable,2,11.95,03/01/19 18:03,"622 11th St, Seattle, WA 98101" +177803,AAA Batteries (4-pack),2,2.99,03/01/19 18:03,"622 11th St, Seattle, WA 98101" +177804,USB-C Charging Cable,1,11.95,03/10/19 11:31,"395 13th St, New York City, NY 10001" +177805,AA Batteries (4-pack),2,3.84,03/03/19 14:17,"842 Cedar St, San Francisco, CA 94016" +177806,Apple Airpods Headphones,1,150,03/02/19 13:49,"187 10th St, Los Angeles, CA 90001" +177807,USB-C Charging Cable,2,11.95,03/02/19 13:53,"735 2nd St, Dallas, TX 75001" +177808,34in Ultrawide Monitor,1,379.99,03/14/19 15:34,"480 River St, Seattle, WA 98101" +177809,Flatscreen TV,1,300,03/30/19 09:02,"526 Cherry St, Seattle, WA 98101" +177810,Flatscreen TV,1,300,03/16/19 14:27,"604 Maple St, Seattle, WA 98101" +177811,27in FHD Monitor,1,149.99,03/08/19 09:48,"491 10th St, New York City, NY 10001" +177812,AAA Batteries (4-pack),1,2.99,03/08/19 16:57,"313 Sunset St, San Francisco, CA 94016" +177813,Apple Airpods Headphones,1,150,03/18/19 14:57,"791 Spruce St, New York City, NY 10001" +177814,AAA Batteries (4-pack),1,2.99,03/03/19 18:48,"178 Jefferson St, Dallas, TX 75001" +177815,Wired Headphones,1,11.99,03/29/19 10:53,"264 Spruce St, Atlanta, GA 30301" +177816,Wired Headphones,1,11.99,03/16/19 13:57,"444 Meadow St, San Francisco, CA 94016" +177817,Wired Headphones,1,11.99,03/25/19 21:15,"362 South St, Portland, OR 97035" +177818,ThinkPad Laptop,1,999.99,03/22/19 22:50,"169 2nd St, Boston, MA 02215" +177819,Lightning Charging Cable,1,14.95,03/06/19 17:32,"709 South St, Portland, OR 97035" +177820,Wired Headphones,1,11.99,03/18/19 23:31,"615 West St, Los Angeles, CA 90001" +177821,Lightning Charging Cable,1,14.95,03/31/19 22:04,"313 13th St, Seattle, WA 98101" +177822,Flatscreen TV,1,300,03/14/19 11:07,"172 Walnut St, Austin, TX 73301" +177823,Lightning Charging Cable,1,14.95,03/21/19 16:03,"232 Madison St, San Francisco, CA 94016" +177824,USB-C Charging Cable,1,11.95,03/07/19 16:47,"42 Willow St, San Francisco, CA 94016" +177825,iPhone,1,700,03/16/19 18:23,"972 Spruce St, Portland, OR 97035" +177826,Lightning Charging Cable,1,14.95,03/09/19 10:53,"622 Church St, Boston, MA 02215" +177827,Vareebadd Phone,1,400,03/13/19 00:05,"523 Madison St, Austin, TX 73301" +177827,USB-C Charging Cable,1,11.95,03/13/19 00:05,"523 Madison St, Austin, TX 73301" +177828,AA Batteries (4-pack),1,3.84,03/11/19 13:08,"563 Jackson St, Boston, MA 02215" +177829,Apple Airpods Headphones,1,150,03/05/19 18:51,"691 Elm St, Dallas, TX 75001" +177830,27in 4K Gaming Monitor,1,389.99,03/08/19 12:34,"902 Park St, San Francisco, CA 94016" +177831,iPhone,1,700,03/18/19 05:31,"979 Cedar St, San Francisco, CA 94016" +177831,Wired Headphones,1,11.99,03/18/19 05:31,"979 Cedar St, San Francisco, CA 94016" +177832,AAA Batteries (4-pack),1,2.99,03/07/19 23:42,"30 4th St, San Francisco, CA 94016" +177833,USB-C Charging Cable,1,11.95,03/07/19 22:41,"313 11th St, Austin, TX 73301" +177834,USB-C Charging Cable,2,11.95,03/20/19 09:10,"48 1st St, Los Angeles, CA 90001" +177835,20in Monitor,1,109.99,03/23/19 15:48,"695 Forest St, Atlanta, GA 30301" +177836,20in Monitor,1,109.99,03/16/19 18:28,"168 Adams St, Atlanta, GA 30301" +177837,Apple Airpods Headphones,1,150,03/13/19 14:35,"783 2nd St, New York City, NY 10001" +177838,AAA Batteries (4-pack),1,2.99,03/19/19 18:48,"590 Cedar St, Los Angeles, CA 90001" +177839,Google Phone,1,600,03/22/19 19:45,"389 Jackson St, Seattle, WA 98101" +177840,Wired Headphones,1,11.99,03/14/19 18:44,"851 Lake St, Seattle, WA 98101" +177841,Wired Headphones,1,11.99,03/04/19 10:54,"156 11th St, Los Angeles, CA 90001" +177842,AAA Batteries (4-pack),1,2.99,03/01/19 12:00,"903 River St, Los Angeles, CA 90001" +177843,AAA Batteries (4-pack),1,2.99,03/08/19 20:24,"25 Lincoln St, Atlanta, GA 30301" +177843,Wired Headphones,1,11.99,03/08/19 20:24,"25 Lincoln St, Atlanta, GA 30301" +177844,Apple Airpods Headphones,1,150,03/29/19 18:17,"933 2nd St, Portland, ME 04101" +177845,AA Batteries (4-pack),2,3.84,03/21/19 11:36,"940 River St, San Francisco, CA 94016" +177846,Apple Airpods Headphones,1,150,03/08/19 01:30,"822 2nd St, Portland, OR 97035" +177846,34in Ultrawide Monitor,1,379.99,03/08/19 01:30,"822 2nd St, Portland, OR 97035" +177847,Apple Airpods Headphones,1,150,03/27/19 22:20,"226 Maple St, Los Angeles, CA 90001" +177848,USB-C Charging Cable,1,11.95,03/23/19 11:32,"432 9th St, Los Angeles, CA 90001" +177849,Vareebadd Phone,1,400,03/15/19 14:14,"439 Cherry St, Seattle, WA 98101" +177850,Wired Headphones,1,11.99,03/25/19 17:44,"447 Ridge St, Atlanta, GA 30301" +177851,27in FHD Monitor,1,149.99,03/29/19 20:23,"224 Hickory St, Boston, MA 02215" +177852,Apple Airpods Headphones,1,150,03/15/19 19:10,"648 Willow St, New York City, NY 10001" +177853,AAA Batteries (4-pack),2,2.99,03/16/19 16:55,"937 Jackson St, Los Angeles, CA 90001" +177854,Flatscreen TV,1,300,03/27/19 21:11,"374 South St, New York City, NY 10001" +177855,Macbook Pro Laptop,1,1700,03/08/19 11:23,"458 Lincoln St, Boston, MA 02215" +177856,Wired Headphones,1,11.99,03/31/19 22:37,"306 Dogwood St, Portland, OR 97035" +177857,Google Phone,1,600,03/26/19 08:27,"211 2nd St, Seattle, WA 98101" +177858,AA Batteries (4-pack),1,3.84,03/26/19 11:53,"493 Chestnut St, Dallas, TX 75001" +177859,Macbook Pro Laptop,1,1700,03/01/19 22:37,"289 Lincoln St, Dallas, TX 75001" +177860,Bose SoundSport Headphones,1,99.99,03/18/19 21:54,"197 Sunset St, Atlanta, GA 30301" +177861,Bose SoundSport Headphones,1,99.99,03/16/19 14:35,"363 Highland St, Dallas, TX 75001" +177862,AAA Batteries (4-pack),2,2.99,03/18/19 22:09,"663 Johnson St, Portland, OR 97035" +177863,Lightning Charging Cable,1,14.95,03/28/19 19:37,"614 Lincoln St, Los Angeles, CA 90001" +177863,USB-C Charging Cable,1,11.95,03/28/19 19:37,"614 Lincoln St, Los Angeles, CA 90001" +177864,AAA Batteries (4-pack),1,2.99,03/02/19 11:35,"201 Center St, Portland, ME 04101" +177865,AA Batteries (4-pack),2,3.84,03/03/19 18:03,"16 Jackson St, San Francisco, CA 94016" +177866,Lightning Charging Cable,1,14.95,03/20/19 10:36,"431 Washington St, Los Angeles, CA 90001" +177867,AA Batteries (4-pack),1,3.84,03/10/19 12:47,"204 Spruce St, Seattle, WA 98101" +177868,USB-C Charging Cable,1,11.95,03/05/19 17:58,"114 10th St, Los Angeles, CA 90001" +177869,Lightning Charging Cable,1,14.95,03/27/19 22:08,"109 Church St, New York City, NY 10001" +177870,USB-C Charging Cable,2,11.95,03/24/19 18:36,"459 Highland St, San Francisco, CA 94016" +177871,34in Ultrawide Monitor,1,379.99,03/27/19 13:56,"846 12th St, San Francisco, CA 94016" +177872,Bose SoundSport Headphones,1,99.99,03/03/19 21:34,"298 Jefferson St, New York City, NY 10001" +177873,USB-C Charging Cable,2,11.95,03/08/19 16:28,"466 1st St, Los Angeles, CA 90001" +177874,iPhone,1,700,03/25/19 02:39,"215 Elm St, Boston, MA 02215" +177875,34in Ultrawide Monitor,1,379.99,03/10/19 17:13,"445 Wilson St, New York City, NY 10001" +177876,Macbook Pro Laptop,1,1700,03/24/19 08:27,"811 13th St, New York City, NY 10001" +177877,USB-C Charging Cable,1,11.95,03/26/19 11:53,"337 Hill St, San Francisco, CA 94016" +177878,AAA Batteries (4-pack),1,2.99,03/09/19 09:19,"505 2nd St, Los Angeles, CA 90001" +177879,AAA Batteries (4-pack),3,2.99,03/19/19 16:01,"155 11th St, Austin, TX 73301" +177880,Wired Headphones,2,11.99,03/12/19 21:58,"133 Spruce St, Los Angeles, CA 90001" +177881,Wired Headphones,1,11.99,03/26/19 04:28,"416 2nd St, Atlanta, GA 30301" +177882,Apple Airpods Headphones,1,150,03/08/19 10:53,"813 Walnut St, Boston, MA 02215" +177883,USB-C Charging Cable,1,11.95,03/09/19 12:56,"765 Pine St, Los Angeles, CA 90001" +177884,USB-C Charging Cable,1,11.95,03/04/19 21:22,"392 Chestnut St, Dallas, TX 75001" +177885,Wired Headphones,1,11.99,03/10/19 07:51,"300 Wilson St, Portland, OR 97035" +177886,AA Batteries (4-pack),2,3.84,03/19/19 10:08,"338 Maple St, New York City, NY 10001" +177887,Wired Headphones,1,11.99,03/14/19 08:16,"259 Maple St, Atlanta, GA 30301" +177888,AAA Batteries (4-pack),2,2.99,03/29/19 09:18,"34 Elm St, San Francisco, CA 94016" +177889,USB-C Charging Cable,1,11.95,03/25/19 14:02,"295 11th St, San Francisco, CA 94016" +177890,ThinkPad Laptop,1,999.99,03/11/19 13:55,"795 1st St, Atlanta, GA 30301" +177891,USB-C Charging Cable,1,11.95,03/08/19 11:16,"510 South St, Austin, TX 73301" +177892,AAA Batteries (4-pack),3,2.99,03/29/19 20:31,"262 Forest St, Los Angeles, CA 90001" +177892,AAA Batteries (4-pack),1,2.99,03/29/19 20:31,"262 Forest St, Los Angeles, CA 90001" +177893,20in Monitor,1,109.99,03/30/19 19:16,"993 Ridge St, Los Angeles, CA 90001" +177894,Bose SoundSport Headphones,1,99.99,03/30/19 19:39,"962 Highland St, Portland, OR 97035" +177895,Bose SoundSport Headphones,1,99.99,03/30/19 22:56,"477 14th St, Austin, TX 73301" +177896,USB-C Charging Cable,1,11.95,03/12/19 11:11,"909 Pine St, Los Angeles, CA 90001" +177897,Apple Airpods Headphones,1,150,03/12/19 14:53,"779 7th St, Los Angeles, CA 90001" +177898,27in FHD Monitor,1,149.99,03/23/19 22:41,"748 Jefferson St, New York City, NY 10001" +177899,Apple Airpods Headphones,1,150,03/27/19 10:26,"596 Jackson St, New York City, NY 10001" +177900,AAA Batteries (4-pack),2,2.99,03/28/19 23:47,"761 Willow St, Dallas, TX 75001" +177901,27in 4K Gaming Monitor,1,389.99,03/21/19 20:08,"763 6th St, Los Angeles, CA 90001" +177902,Wired Headphones,1,11.99,03/16/19 19:46,"760 North St, Los Angeles, CA 90001" +177903,Lightning Charging Cable,1,14.95,03/21/19 23:47,"257 Pine St, San Francisco, CA 94016" +177904,AA Batteries (4-pack),1,3.84,03/19/19 12:44,"166 Sunset St, Austin, TX 73301" +177905,27in 4K Gaming Monitor,1,389.99,03/05/19 11:08,"990 Walnut St, Seattle, WA 98101" +177906,27in FHD Monitor,1,149.99,03/01/19 19:19,"583 Forest St, San Francisco, CA 94016" +177907,Lightning Charging Cable,2,14.95,03/21/19 10:03,"114 Jackson St, New York City, NY 10001" +177907,AA Batteries (4-pack),1,3.84,03/21/19 10:03,"114 Jackson St, New York City, NY 10001" +177908,Bose SoundSport Headphones,1,99.99,03/12/19 17:19,"178 Washington St, New York City, NY 10001" +177909,AAA Batteries (4-pack),2,2.99,03/19/19 15:18,"391 5th St, Seattle, WA 98101" +177910,27in FHD Monitor,1,149.99,03/20/19 13:42,"491 14th St, Boston, MA 02215" +177911,ThinkPad Laptop,1,999.99,03/29/19 11:07,"389 Meadow St, Atlanta, GA 30301" +177912,ThinkPad Laptop,1,999.99,03/30/19 18:48,"513 7th St, Los Angeles, CA 90001" +177913,AA Batteries (4-pack),2,3.84,03/01/19 11:50,"256 South St, New York City, NY 10001" +177914,AAA Batteries (4-pack),1,2.99,03/14/19 18:04,"712 Lakeview St, San Francisco, CA 94016" +177915,AA Batteries (4-pack),1,3.84,03/16/19 14:55,"436 Madison St, New York City, NY 10001" +177916,USB-C Charging Cable,1,11.95,03/23/19 13:17,"320 Cedar St, Los Angeles, CA 90001" +177917,AA Batteries (4-pack),2,3.84,03/23/19 11:47,"650 Madison St, San Francisco, CA 94016" +177918,Lightning Charging Cable,1,14.95,03/08/19 11:05,"540 Jackson St, Seattle, WA 98101" +177919,Bose SoundSport Headphones,1,99.99,03/22/19 20:26,"70 7th St, Dallas, TX 75001" +177920,AAA Batteries (4-pack),2,2.99,03/09/19 16:44,"779 Wilson St, Boston, MA 02215" +177921,20in Monitor,1,109.99,03/20/19 18:22,"689 West St, San Francisco, CA 94016" +177922,Lightning Charging Cable,1,14.95,03/01/19 21:10,"258 10th St, Los Angeles, CA 90001" +177923,27in FHD Monitor,1,149.99,03/04/19 16:43,"171 12th St, Los Angeles, CA 90001" +177924,AAA Batteries (4-pack),1,2.99,03/26/19 10:43,"383 Elm St, Atlanta, GA 30301" +177925,AAA Batteries (4-pack),1,2.99,03/11/19 00:06,"542 1st St, New York City, NY 10001" +177926,Lightning Charging Cable,1,14.95,03/07/19 13:43,"16 1st St, Dallas, TX 75001" +177927,AA Batteries (4-pack),1,3.84,03/07/19 22:11,"586 Jefferson St, San Francisco, CA 94016" +177928,Lightning Charging Cable,1,14.95,03/08/19 13:41,"50 Meadow St, Los Angeles, CA 90001" +177928,Lightning Charging Cable,1,14.95,03/08/19 13:41,"50 Meadow St, Los Angeles, CA 90001" +177929,27in 4K Gaming Monitor,1,389.99,03/04/19 15:52,"859 South St, New York City, NY 10001" +177930,27in 4K Gaming Monitor,1,389.99,03/13/19 03:24,"873 South St, New York City, NY 10001" +177931,AAA Batteries (4-pack),1,2.99,03/18/19 08:19,"455 Elm St, Portland, OR 97035" +177932,AA Batteries (4-pack),6,3.84,03/04/19 20:05,"294 Madison St, San Francisco, CA 94016" +177933,Apple Airpods Headphones,1,150,03/20/19 21:09,"623 Meadow St, San Francisco, CA 94016" +177934,Macbook Pro Laptop,1,1700,03/22/19 10:13,"890 Sunset St, New York City, NY 10001" +177935,Lightning Charging Cable,1,14.95,03/31/19 09:59,"799 Pine St, New York City, NY 10001" +177936,AAA Batteries (4-pack),1,2.99,03/26/19 09:26,"885 Wilson St, Seattle, WA 98101" +177937,Vareebadd Phone,1,400,03/21/19 08:49,"562 West St, Portland, OR 97035" +177937,Bose SoundSport Headphones,1,99.99,03/21/19 08:49,"562 West St, Portland, OR 97035" +177938,AA Batteries (4-pack),1,3.84,03/08/19 10:32,"362 Church St, New York City, NY 10001" +177939,AA Batteries (4-pack),1,3.84,03/31/19 01:20,"900 Lake St, Los Angeles, CA 90001" +177940,Bose SoundSport Headphones,1,99.99,03/03/19 12:39,"875 Spruce St, Atlanta, GA 30301" +177941,AAA Batteries (4-pack),3,2.99,03/22/19 23:15,"523 West St, Los Angeles, CA 90001" +177942,Lightning Charging Cable,2,14.95,03/30/19 10:37,"650 Pine St, San Francisco, CA 94016" +177943,Google Phone,1,600,03/20/19 20:23,"320 11th St, San Francisco, CA 94016" +177944,Wired Headphones,1,11.99,03/22/19 20:15,"408 West St, San Francisco, CA 94016" +177945,USB-C Charging Cable,1,11.95,03/25/19 10:27,"477 Washington St, San Francisco, CA 94016" +177946,USB-C Charging Cable,1,11.95,03/12/19 20:27,"244 Center St, Los Angeles, CA 90001" +177947,AAA Batteries (4-pack),3,2.99,03/05/19 15:25,"4 Madison St, Los Angeles, CA 90001" +177948,Wired Headphones,1,11.99,03/16/19 18:58,"516 5th St, Seattle, WA 98101" +177949,Apple Airpods Headphones,1,150,03/27/19 00:58,"370 Cherry St, Seattle, WA 98101" +177950,Wired Headphones,1,11.99,03/18/19 19:51,"622 Church St, Portland, OR 97035" +177951,iPhone,1,700,03/30/19 11:28,"731 Chestnut St, San Francisco, CA 94016" +177952,Wired Headphones,2,11.99,03/20/19 13:42,"398 11th St, Atlanta, GA 30301" +177953,AA Batteries (4-pack),2,3.84,03/09/19 21:48,"304 1st St, New York City, NY 10001" +177954,27in FHD Monitor,1,149.99,03/31/19 22:17,"555 Main St, San Francisco, CA 94016" +177955,Apple Airpods Headphones,1,150,03/04/19 13:38,"839 14th St, Austin, TX 73301" +177956,Macbook Pro Laptop,1,1700,03/04/19 18:24,"405 11th St, New York City, NY 10001" +177957,Apple Airpods Headphones,1,150,03/27/19 16:31,"890 6th St, Dallas, TX 75001" +177958,AA Batteries (4-pack),1,3.84,03/13/19 08:45,"913 South St, Austin, TX 73301" +177959,USB-C Charging Cable,1,11.95,03/30/19 19:11,"60 Hill St, New York City, NY 10001" +177960,20in Monitor,1,109.99,03/11/19 18:06,"928 Elm St, Atlanta, GA 30301" +177961,Lightning Charging Cable,1,14.95,03/25/19 20:01,"717 Washington St, New York City, NY 10001" +177962,AA Batteries (4-pack),1,3.84,03/04/19 10:55,"228 Spruce St, Boston, MA 02215" +177963,Lightning Charging Cable,1,14.95,03/14/19 12:54,"928 Wilson St, Portland, ME 04101" +177964,AAA Batteries (4-pack),1,2.99,03/10/19 00:01,"629 14th St, Boston, MA 02215" +177965,Bose SoundSport Headphones,1,99.99,03/15/19 18:48,"123 2nd St, Seattle, WA 98101" +177966,AAA Batteries (4-pack),2,2.99,03/20/19 13:11,"58 12th St, Austin, TX 73301" +177967,Wired Headphones,1,11.99,03/04/19 18:44,"395 10th St, Austin, TX 73301" +177968,Bose SoundSport Headphones,1,99.99,03/18/19 20:32,"527 5th St, Dallas, TX 75001" +177969,Lightning Charging Cable,1,14.95,03/17/19 07:20,"910 5th St, Austin, TX 73301" +177970,Lightning Charging Cable,1,14.95,03/26/19 09:40,"494 Lake St, Atlanta, GA 30301" +177971,USB-C Charging Cable,1,11.95,03/27/19 07:14,"626 Church St, Los Angeles, CA 90001" +177972,Wired Headphones,1,11.99,03/27/19 12:54,"592 6th St, San Francisco, CA 94016" +177973,34in Ultrawide Monitor,1,379.99,03/23/19 13:56,"618 Sunset St, Los Angeles, CA 90001" +177974,Bose SoundSport Headphones,1,99.99,03/11/19 21:58,"885 Elm St, New York City, NY 10001" +177975,Wired Headphones,1,11.99,03/12/19 01:05,"339 8th St, San Francisco, CA 94016" +177976,AAA Batteries (4-pack),1,2.99,03/12/19 11:01,"690 Sunset St, Los Angeles, CA 90001" +177977,USB-C Charging Cable,1,11.95,03/30/19 14:21,"291 Highland St, Portland, OR 97035" +177978,27in FHD Monitor,1,149.99,03/02/19 17:05,"992 9th St, Atlanta, GA 30301" +177979,Macbook Pro Laptop,1,1700,03/25/19 13:05,"92 2nd St, San Francisco, CA 94016" +177980,Apple Airpods Headphones,1,150,03/04/19 16:00,"580 Jackson St, Los Angeles, CA 90001" +177981,USB-C Charging Cable,1,11.95,03/02/19 13:46,"107 1st St, Los Angeles, CA 90001" +177982,Bose SoundSport Headphones,1,99.99,03/01/19 16:41,"665 8th St, Austin, TX 73301" +177983,27in FHD Monitor,1,149.99,03/29/19 13:19,"233 6th St, Portland, OR 97035" +177984,iPhone,1,700,03/24/19 16:11,"547 7th St, San Francisco, CA 94016" +177985,Wired Headphones,1,11.99,03/23/19 00:15,"74 Spruce St, Seattle, WA 98101" +177986,USB-C Charging Cable,1,11.95,03/20/19 23:16,"173 Jackson St, Atlanta, GA 30301" +177987,USB-C Charging Cable,1,11.95,03/20/19 04:18,"613 13th St, New York City, NY 10001" +177988,Wired Headphones,1,11.99,03/31/19 01:50,"988 Pine St, Los Angeles, CA 90001" +177989,Lightning Charging Cable,1,14.95,03/18/19 09:15,"79 Ridge St, Austin, TX 73301" +177990,Wired Headphones,1,11.99,03/20/19 16:21,"697 West St, San Francisco, CA 94016" +177991,Lightning Charging Cable,1,14.95,03/14/19 18:47,"51 7th St, Los Angeles, CA 90001" +177992,34in Ultrawide Monitor,1,379.99,03/13/19 20:54,"454 Lakeview St, Los Angeles, CA 90001" +177993,AA Batteries (4-pack),2,3.84,03/01/19 07:55,"560 North St, San Francisco, CA 94016" +177994,AA Batteries (4-pack),1,3.84,03/24/19 14:44,"133 8th St, San Francisco, CA 94016" +177995,Lightning Charging Cable,1,14.95,03/08/19 00:09,"90 11th St, Boston, MA 02215" +177996,27in 4K Gaming Monitor,1,389.99,03/25/19 01:35,"977 Washington St, New York City, NY 10001" +177997,Apple Airpods Headphones,1,150,03/01/19 12:06,"222 Dogwood St, New York City, NY 10001" +177998,Lightning Charging Cable,1,14.95,03/04/19 11:16,"320 10th St, New York City, NY 10001" +177999,27in FHD Monitor,1,149.99,03/21/19 21:36,"973 Maple St, Los Angeles, CA 90001" +178000,Wired Headphones,1,11.99,03/03/19 19:41,"465 Pine St, Los Angeles, CA 90001" +178001,Lightning Charging Cable,1,14.95,03/30/19 00:07,"244 Forest St, San Francisco, CA 94016" +178002,Apple Airpods Headphones,1,150,03/14/19 14:53,"478 12th St, San Francisco, CA 94016" +178003,Wired Headphones,1,11.99,03/20/19 10:31,"236 7th St, Dallas, TX 75001" +178004,Apple Airpods Headphones,1,150,03/06/19 13:29,"361 Church St, San Francisco, CA 94016" +178005,AAA Batteries (4-pack),1,2.99,03/02/19 14:39,"220 9th St, San Francisco, CA 94016" +178006,AA Batteries (4-pack),1,3.84,03/06/19 18:32,"708 Walnut St, Seattle, WA 98101" +178007,AA Batteries (4-pack),3,3.84,03/28/19 13:53,"486 Walnut St, Los Angeles, CA 90001" +178008,USB-C Charging Cable,1,11.95,03/24/19 19:58,"293 Walnut St, Boston, MA 02215" +178009,Wired Headphones,1,11.99,03/10/19 15:03,"23 Jackson St, Dallas, TX 75001" +178010,USB-C Charging Cable,1,11.95,03/15/19 13:30,"805 Lake St, Boston, MA 02215" +178011,Bose SoundSport Headphones,1,99.99,03/24/19 18:00,"173 Meadow St, San Francisco, CA 94016" +178012,Macbook Pro Laptop,1,1700,03/21/19 11:34,"23 14th St, San Francisco, CA 94016" +178013,27in FHD Monitor,1,149.99,03/09/19 16:42,"250 14th St, Dallas, TX 75001" +178014,Bose SoundSport Headphones,1,99.99,03/12/19 12:05,"288 Highland St, San Francisco, CA 94016" +178015,AAA Batteries (4-pack),2,2.99,03/08/19 14:51,"657 Park St, New York City, NY 10001" +178016,27in 4K Gaming Monitor,1,389.99,03/12/19 14:06,"773 Chestnut St, Portland, OR 97035" +178017,Google Phone,1,600,03/30/19 14:40,"23 Johnson St, Atlanta, GA 30301" +178018,USB-C Charging Cable,1,11.95,03/08/19 14:04,"593 9th St, Portland, OR 97035" +178019,AA Batteries (4-pack),1,3.84,03/19/19 22:16,"502 10th St, New York City, NY 10001" +178020,USB-C Charging Cable,1,11.95,03/27/19 20:26,"592 Jefferson St, San Francisco, CA 94016" +178021,Wired Headphones,1,11.99,03/12/19 23:03,"23 Jefferson St, Austin, TX 73301" +178022,Wired Headphones,1,11.99,03/09/19 21:15,"310 10th St, Dallas, TX 75001" +178023,Lightning Charging Cable,1,14.95,03/04/19 14:35,"627 Willow St, Boston, MA 02215" +178024,Macbook Pro Laptop,1,1700,03/15/19 01:23,"341 Lake St, New York City, NY 10001" +178025,Wired Headphones,1,11.99,03/08/19 20:29,"510 Hill St, Atlanta, GA 30301" +178026,AA Batteries (4-pack),1,3.84,03/03/19 13:50,"73 Main St, Atlanta, GA 30301" +178027,ThinkPad Laptop,1,999.99,03/11/19 21:18,"651 Highland St, San Francisco, CA 94016" +178028,Google Phone,1,600,03/15/19 15:00,"752 7th St, New York City, NY 10001" +178029,34in Ultrawide Monitor,1,379.99,03/28/19 01:33,"577 Wilson St, Dallas, TX 75001" +178030,27in FHD Monitor,1,149.99,03/14/19 00:02,"697 5th St, Seattle, WA 98101" +178031,Apple Airpods Headphones,1,150,03/30/19 21:03,"109 Jackson St, New York City, NY 10001" +178032,AA Batteries (4-pack),1,3.84,03/26/19 09:32,"150 Meadow St, Los Angeles, CA 90001" +178033,USB-C Charging Cable,2,11.95,03/15/19 13:01,"212 Lakeview St, Atlanta, GA 30301" +178034,Wired Headphones,1,11.99,03/24/19 12:52,"696 4th St, Portland, ME 04101" +178035,AA Batteries (4-pack),1,3.84,03/31/19 12:38,"484 Church St, Boston, MA 02215" +178036,AA Batteries (4-pack),2,3.84,03/30/19 11:20,"745 4th St, New York City, NY 10001" +178037,AA Batteries (4-pack),1,3.84,03/15/19 20:16,"551 5th St, Boston, MA 02215" +178038,AA Batteries (4-pack),6,3.84,03/22/19 14:10,"763 7th St, Los Angeles, CA 90001" +178039,AAA Batteries (4-pack),1,2.99,03/08/19 19:42,"29 Center St, Atlanta, GA 30301" +178040,Wired Headphones,1,11.99,03/30/19 10:13,"927 Highland St, San Francisco, CA 94016" +178041,Lightning Charging Cable,1,14.95,03/23/19 00:44,"78 Wilson St, New York City, NY 10001" +178042,Wired Headphones,1,11.99,03/12/19 18:39,"69 Jefferson St, Atlanta, GA 30301" +178043,27in 4K Gaming Monitor,1,389.99,03/13/19 11:59,"677 11th St, Seattle, WA 98101" +178044,Bose SoundSport Headphones,1,99.99,03/11/19 10:31,"850 13th St, Boston, MA 02215" +178045,Lightning Charging Cable,1,14.95,03/25/19 06:47,"844 9th St, Dallas, TX 75001" +178046,27in 4K Gaming Monitor,1,389.99,03/01/19 19:57,"2 Lakeview St, New York City, NY 10001" +178047,Flatscreen TV,1,300,03/20/19 17:41,"353 Center St, San Francisco, CA 94016" +178048,AA Batteries (4-pack),1,3.84,03/03/19 12:17,"705 Jackson St, San Francisco, CA 94016" +178049,USB-C Charging Cable,1,11.95,03/18/19 09:41,"186 Dogwood St, Portland, OR 97035" +178049,AA Batteries (4-pack),1,3.84,03/18/19 09:41,"186 Dogwood St, Portland, OR 97035" +178050,Bose SoundSport Headphones,1,99.99,03/05/19 18:54,"687 Lake St, Seattle, WA 98101" +178051,AA Batteries (4-pack),1,3.84,03/27/19 13:09,"69 Hill St, San Francisco, CA 94016" +178052,USB-C Charging Cable,1,11.95,03/20/19 11:03,"179 Main St, New York City, NY 10001" +178053,20in Monitor,1,109.99,03/03/19 20:58,"832 8th St, New York City, NY 10001" +178054,AAA Batteries (4-pack),3,2.99,03/19/19 10:53,"352 Center St, Boston, MA 02215" +178055,Lightning Charging Cable,1,14.95,03/21/19 11:25,"436 10th St, San Francisco, CA 94016" +178056,AA Batteries (4-pack),2,3.84,03/30/19 13:13,"953 Jefferson St, Dallas, TX 75001" +178057,Wired Headphones,1,11.99,03/10/19 01:25,"946 Jackson St, Seattle, WA 98101" +178058,AA Batteries (4-pack),1,3.84,03/23/19 09:28,"232 Ridge St, Portland, ME 04101" +178059,AAA Batteries (4-pack),1,2.99,03/12/19 19:23,"710 Meadow St, Los Angeles, CA 90001" +178060,27in 4K Gaming Monitor,1,389.99,03/11/19 19:21,"520 Park St, Los Angeles, CA 90001" +178061,AA Batteries (4-pack),2,3.84,03/26/19 12:11,"321 Forest St, New York City, NY 10001" +178062,ThinkPad Laptop,1,999.99,03/19/19 20:13,"4 Sunset St, Boston, MA 02215" +178063,Wired Headphones,1,11.99,03/09/19 22:10,"945 1st St, San Francisco, CA 94016" +178064,27in 4K Gaming Monitor,1,389.99,03/28/19 17:36,"675 North St, Seattle, WA 98101" +178065,iPhone,1,700,03/24/19 18:12,"884 8th St, Boston, MA 02215" +178065,Apple Airpods Headphones,1,150,03/24/19 18:12,"884 8th St, Boston, MA 02215" +178066,Lightning Charging Cable,1,14.95,03/10/19 18:49,"19 West St, New York City, NY 10001" +178067,Lightning Charging Cable,1,14.95,03/15/19 21:56,"810 Washington St, Austin, TX 73301" +178068,Macbook Pro Laptop,1,1700,03/02/19 11:03,"913 11th St, Atlanta, GA 30301" +178069,AA Batteries (4-pack),1,3.84,03/02/19 15:27,"646 Meadow St, San Francisco, CA 94016" +178070,USB-C Charging Cable,1,11.95,03/05/19 01:20,"275 Cherry St, San Francisco, CA 94016" +178071,Apple Airpods Headphones,1,150,03/07/19 12:06,"838 South St, Dallas, TX 75001" +178072,AA Batteries (4-pack),1,3.84,03/10/19 10:53,"50 11th St, Portland, ME 04101" +178073,Apple Airpods Headphones,1,150,03/14/19 11:57,"988 Maple St, Portland, OR 97035" +178074,USB-C Charging Cable,1,11.95,03/23/19 12:45,"450 13th St, Dallas, TX 75001" +178075,34in Ultrawide Monitor,1,379.99,03/21/19 09:58,"502 Elm St, Austin, TX 73301" +178076,Bose SoundSport Headphones,1,99.99,03/27/19 08:41,"229 South St, San Francisco, CA 94016" +178077,Macbook Pro Laptop,1,1700,03/26/19 11:23,"660 10th St, Dallas, TX 75001" +178078,Wired Headphones,1,11.99,03/02/19 15:43,"106 2nd St, Los Angeles, CA 90001" +178079,AA Batteries (4-pack),1,3.84,03/06/19 20:13,"125 8th St, San Francisco, CA 94016" +178080,20in Monitor,1,109.99,03/18/19 23:15,"24 7th St, Boston, MA 02215" +178081,Apple Airpods Headphones,1,150,03/11/19 17:43,"296 Cedar St, Seattle, WA 98101" +178082,27in 4K Gaming Monitor,1,389.99,03/31/19 12:25,"933 Madison St, Los Angeles, CA 90001" +178083,34in Ultrawide Monitor,1,379.99,03/26/19 15:09,"527 Walnut St, San Francisco, CA 94016" +178083,Flatscreen TV,1,300,03/26/19 15:09,"527 Walnut St, San Francisco, CA 94016" +178084,Apple Airpods Headphones,1,150,03/09/19 20:05,"667 Chestnut St, San Francisco, CA 94016" +178085,Wired Headphones,2,11.99,03/28/19 09:56,"117 Jackson St, San Francisco, CA 94016" +178086,20in Monitor,1,109.99,03/02/19 09:47,"656 4th St, Los Angeles, CA 90001" +178087,USB-C Charging Cable,2,11.95,03/20/19 11:14,"62 12th St, Dallas, TX 75001" +178088,AA Batteries (4-pack),3,3.84,03/24/19 15:18,"922 Center St, Los Angeles, CA 90001" +178089,Lightning Charging Cable,1,14.95,03/12/19 12:00,"231 12th St, Seattle, WA 98101" +178090,Macbook Pro Laptop,1,1700,03/12/19 18:39,"73 11th St, San Francisco, CA 94016" +178091,AA Batteries (4-pack),2,3.84,03/09/19 09:45,"403 11th St, Los Angeles, CA 90001" +178092,AAA Batteries (4-pack),1,2.99,03/11/19 16:00,"686 Washington St, Boston, MA 02215" +178093,Wired Headphones,1,11.99,03/30/19 15:42,"679 Hill St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +178094,Apple Airpods Headphones,1,150,03/15/19 06:07,"563 North St, New York City, NY 10001" +178095,Bose SoundSport Headphones,1,99.99,03/13/19 14:46,"486 Pine St, Seattle, WA 98101" +178096,Apple Airpods Headphones,1,150,03/14/19 11:57,"241 Jefferson St, Los Angeles, CA 90001" +178097,Flatscreen TV,1,300,03/31/19 10:50,"102 Church St, San Francisco, CA 94016" +178098,iPhone,1,700,03/31/19 15:25,"897 Adams St, Seattle, WA 98101" +178098,Lightning Charging Cable,1,14.95,03/31/19 15:25,"897 Adams St, Seattle, WA 98101" +178098,Apple Airpods Headphones,1,150,03/31/19 15:25,"897 Adams St, Seattle, WA 98101" +178099,20in Monitor,1,109.99,03/03/19 19:19,"222 North St, Seattle, WA 98101" +178100,AA Batteries (4-pack),1,3.84,03/24/19 19:02,"880 7th St, San Francisco, CA 94016" +178101,Apple Airpods Headphones,1,150,03/16/19 14:39,"295 Hill St, San Francisco, CA 94016" +178102,Apple Airpods Headphones,1,150,03/11/19 12:24,"343 Wilson St, New York City, NY 10001" +178103,Bose SoundSport Headphones,1,99.99,03/30/19 18:49,"573 Lakeview St, Boston, MA 02215" +178104,AA Batteries (4-pack),2,3.84,03/31/19 23:28,"472 Center St, San Francisco, CA 94016" +178105,USB-C Charging Cable,1,11.95,03/11/19 20:53,"783 Sunset St, New York City, NY 10001" +178106,AA Batteries (4-pack),1,3.84,03/11/19 15:32,"458 8th St, Los Angeles, CA 90001" +178107,Wired Headphones,1,11.99,03/15/19 12:26,"915 Cedar St, New York City, NY 10001" +178108,Bose SoundSport Headphones,1,99.99,03/30/19 22:52,"58 Center St, Los Angeles, CA 90001" +178109,AA Batteries (4-pack),2,3.84,03/10/19 17:37,"691 Jackson St, Austin, TX 73301" +178110,Apple Airpods Headphones,1,150,03/11/19 08:15,"509 7th St, Atlanta, GA 30301" +178111,USB-C Charging Cable,1,11.95,03/01/19 19:48,"387 Church St, Seattle, WA 98101" +178112,iPhone,1,700,03/11/19 09:16,"450 11th St, San Francisco, CA 94016" +178113,Lightning Charging Cable,1,14.95,03/03/19 21:57,"813 11th St, Los Angeles, CA 90001" +178114,27in FHD Monitor,1,149.99,03/14/19 18:40,"899 Cedar St, San Francisco, CA 94016" +178115,Lightning Charging Cable,1,14.95,03/10/19 12:36,"164 West St, New York City, NY 10001" +178116,Bose SoundSport Headphones,1,99.99,03/02/19 07:34,"694 Meadow St, San Francisco, CA 94016" +178117,USB-C Charging Cable,1,11.95,03/24/19 10:36,"260 Walnut St, Dallas, TX 75001" +178118,Vareebadd Phone,1,400,03/31/19 09:09,"34 Elm St, San Francisco, CA 94016" +178119,Google Phone,1,600,03/14/19 11:13,"462 Jackson St, Atlanta, GA 30301" +178120,Lightning Charging Cable,1,14.95,03/07/19 15:12,"544 Forest St, San Francisco, CA 94016" +178121,AAA Batteries (4-pack),2,2.99,03/17/19 15:08,"168 Wilson St, San Francisco, CA 94016" +178122,iPhone,1,700,03/31/19 13:01,"669 13th St, San Francisco, CA 94016" +178122,Wired Headphones,1,11.99,03/31/19 13:01,"669 13th St, San Francisco, CA 94016" +178123,Wired Headphones,1,11.99,03/04/19 18:27,"440 Lakeview St, Boston, MA 02215" +178124,iPhone,1,700,03/22/19 16:42,"396 Jackson St, San Francisco, CA 94016" +178125,AA Batteries (4-pack),1,3.84,03/21/19 08:25,"438 6th St, Boston, MA 02215" +178126,Apple Airpods Headphones,1,150,03/15/19 14:55,"902 North St, Portland, ME 04101" +178127,27in FHD Monitor,1,149.99,03/30/19 02:20,"835 8th St, Los Angeles, CA 90001" +178128,Bose SoundSport Headphones,1,99.99,03/29/19 20:38,"375 6th St, Atlanta, GA 30301" +178129,Wired Headphones,1,11.99,03/24/19 14:34,"366 North St, San Francisco, CA 94016" +178130,Flatscreen TV,1,300,03/29/19 16:58,"682 River St, New York City, NY 10001" +178131,iPhone,1,700,03/23/19 12:58,"867 Jefferson St, Dallas, TX 75001" +178132,Lightning Charging Cable,1,14.95,03/16/19 16:06,"302 4th St, San Francisco, CA 94016" +178133,Wired Headphones,1,11.99,03/17/19 18:06,"599 North St, Los Angeles, CA 90001" +178134,AAA Batteries (4-pack),3,2.99,03/30/19 17:09,"362 Forest St, Dallas, TX 75001" +178135,Apple Airpods Headphones,1,150,03/30/19 13:10,"275 5th St, San Francisco, CA 94016" +178136,34in Ultrawide Monitor,1,379.99,03/25/19 11:38,"370 Adams St, San Francisco, CA 94016" +178137,Lightning Charging Cable,1,14.95,03/07/19 21:05,"896 Washington St, Austin, TX 73301" +178138,USB-C Charging Cable,1,11.95,03/12/19 21:43,"902 Pine St, New York City, NY 10001" +178139,Apple Airpods Headphones,1,150,03/20/19 16:38,"248 13th St, Dallas, TX 75001" +178140,Bose SoundSport Headphones,1,99.99,03/06/19 21:49,"299 Jackson St, New York City, NY 10001" +178141,AAA Batteries (4-pack),1,2.99,03/25/19 19:07,"517 Lincoln St, Portland, OR 97035" +178142,iPhone,1,700,03/12/19 13:57,"246 Forest St, Austin, TX 73301" +178143,USB-C Charging Cable,1,11.95,03/29/19 13:27,"322 Hill St, San Francisco, CA 94016" +178144,Vareebadd Phone,1,400,03/25/19 10:59,"420 14th St, Atlanta, GA 30301" +178144,Wired Headphones,1,11.99,03/25/19 10:59,"420 14th St, Atlanta, GA 30301" +178145,Wired Headphones,2,11.99,03/31/19 09:16,"21 Lake St, New York City, NY 10001" +178146,Bose SoundSport Headphones,1,99.99,03/06/19 13:15,"824 2nd St, Boston, MA 02215" +178147,20in Monitor,1,109.99,03/12/19 12:50,"61 9th St, Los Angeles, CA 90001" +178148,Lightning Charging Cable,1,14.95,03/08/19 14:16,"14 Washington St, New York City, NY 10001" +178149,20in Monitor,1,109.99,03/10/19 09:09,"944 Cedar St, Atlanta, GA 30301" +178150,Flatscreen TV,1,300,03/22/19 17:27,"527 Forest St, San Francisco, CA 94016" +178151,Lightning Charging Cable,1,14.95,03/17/19 13:08,"678 12th St, New York City, NY 10001" +178152,Lightning Charging Cable,1,14.95,03/17/19 18:09,"130 North St, New York City, NY 10001" +178153,Macbook Pro Laptop,1,1700,03/27/19 15:37,"986 5th St, Dallas, TX 75001" +178154,Flatscreen TV,1,300,03/17/19 21:29,"897 Church St, New York City, NY 10001" +178155,AAA Batteries (4-pack),1,2.99,03/11/19 21:19,"956 Johnson St, Los Angeles, CA 90001" +178156,AAA Batteries (4-pack),1,2.99,03/24/19 16:52,"541 Walnut St, Los Angeles, CA 90001" +178157,Bose SoundSport Headphones,1,99.99,03/23/19 18:35,"776 Highland St, Los Angeles, CA 90001" +178158,Flatscreen TV,1,300,03/18/19 08:34,"815 Cedar St, Los Angeles, CA 90001" +178159,Bose SoundSport Headphones,1,99.99,03/21/19 12:59,"312 Hill St, Boston, MA 02215" +178160,AAA Batteries (4-pack),1,2.99,03/17/19 13:17,"364 Highland St, New York City, NY 10001" +178161,27in FHD Monitor,1,149.99,03/04/19 18:35,"985 6th St, San Francisco, CA 94016" +178162,Lightning Charging Cable,1,14.95,03/17/19 21:39,"429 Lakeview St, San Francisco, CA 94016" +178163,AA Batteries (4-pack),3,3.84,03/01/19 20:24,"613 Highland St, San Francisco, CA 94016" +178164,ThinkPad Laptop,1,999.99,03/23/19 12:30,"246 Ridge St, Seattle, WA 98101" +178165,27in 4K Gaming Monitor,1,389.99,03/21/19 12:51,"736 10th St, Boston, MA 02215" +178166,Apple Airpods Headphones,1,150,03/09/19 07:39,"298 Lakeview St, Los Angeles, CA 90001" +178167,Flatscreen TV,1,300,03/11/19 08:25,"262 Park St, San Francisco, CA 94016" +178168,USB-C Charging Cable,1,11.95,03/07/19 14:11,"185 Highland St, Austin, TX 73301" +178169,Apple Airpods Headphones,1,150,03/22/19 19:58,"437 Ridge St, San Francisco, CA 94016" +178170,Lightning Charging Cable,1,14.95,03/12/19 18:37,"817 Hickory St, Boston, MA 02215" +178171,Wired Headphones,1,11.99,03/15/19 11:21,"540 1st St, New York City, NY 10001" +178172,Wired Headphones,1,11.99,03/25/19 11:43,"873 Church St, San Francisco, CA 94016" +178173,Apple Airpods Headphones,1,150,03/14/19 22:07,"68 South St, Dallas, TX 75001" +178174,AA Batteries (4-pack),3,3.84,03/06/19 23:33,"165 Pine St, Los Angeles, CA 90001" +178174,Apple Airpods Headphones,1,150,03/06/19 23:33,"165 Pine St, Los Angeles, CA 90001" +178175,Lightning Charging Cable,1,14.95,03/18/19 20:46,"794 11th St, Austin, TX 73301" +178176,ThinkPad Laptop,1,999.99,03/23/19 16:49,"878 Cedar St, San Francisco, CA 94016" +178177,AA Batteries (4-pack),1,3.84,03/18/19 22:08,"155 Church St, Boston, MA 02215" +178178,AA Batteries (4-pack),1,3.84,03/11/19 10:28,"792 Cedar St, New York City, NY 10001" +178179,Lightning Charging Cable,1,14.95,03/22/19 10:25,"676 9th St, Los Angeles, CA 90001" +178180,Lightning Charging Cable,1,14.95,03/29/19 12:54,"216 Maple St, Seattle, WA 98101" +178181,ThinkPad Laptop,1,999.99,03/21/19 11:32,"786 Ridge St, Los Angeles, CA 90001" +178182,Wired Headphones,1,11.99,03/15/19 20:49,"243 11th St, San Francisco, CA 94016" +178183,20in Monitor,1,109.99,03/09/19 07:36,"811 4th St, San Francisco, CA 94016" +178184,Flatscreen TV,1,300,03/06/19 12:16,"973 Jefferson St, New York City, NY 10001" +178185,Lightning Charging Cable,2,14.95,03/02/19 20:07,"530 6th St, Los Angeles, CA 90001" +178186,Bose SoundSport Headphones,1,99.99,03/31/19 14:50,"410 South St, Los Angeles, CA 90001" +178187,Wired Headphones,1,11.99,03/27/19 10:14,"266 Park St, Los Angeles, CA 90001" +,,,,, +178188,AA Batteries (4-pack),3,3.84,03/07/19 16:47,"558 Chestnut St, Los Angeles, CA 90001" +178189,Lightning Charging Cable,1,14.95,03/05/19 08:26,"629 Maple St, Los Angeles, CA 90001" +178189,AAA Batteries (4-pack),2,2.99,03/05/19 08:26,"629 Maple St, Los Angeles, CA 90001" +178190,Bose SoundSport Headphones,1,99.99,03/17/19 19:15,"63 Wilson St, Los Angeles, CA 90001" +178191,AA Batteries (4-pack),2,3.84,03/07/19 11:09,"32 Elm St, Atlanta, GA 30301" +178192,Wired Headphones,1,11.99,03/02/19 17:06,"849 Elm St, Atlanta, GA 30301" +178193,Wired Headphones,1,11.99,03/16/19 17:27,"934 8th St, Boston, MA 02215" +178194,Macbook Pro Laptop,1,1700,03/01/19 15:36,"288 Ridge St, Los Angeles, CA 90001" +178195,34in Ultrawide Monitor,1,379.99,03/29/19 17:25,"439 Meadow St, Boston, MA 02215" +178196,AAA Batteries (4-pack),1,2.99,03/30/19 19:26,"837 5th St, Atlanta, GA 30301" +178197,AA Batteries (4-pack),5,3.84,03/07/19 21:24,"706 Madison St, San Francisco, CA 94016" +178198,Lightning Charging Cable,1,14.95,03/11/19 14:18,"230 Cherry St, New York City, NY 10001" +178199,Flatscreen TV,1,300,03/02/19 17:28,"876 Jefferson St, Boston, MA 02215" +178200,USB-C Charging Cable,1,11.95,03/26/19 09:05,"206 Madison St, San Francisco, CA 94016" +178201,Bose SoundSport Headphones,1,99.99,03/07/19 20:02,"867 2nd St, Boston, MA 02215" +178202,Flatscreen TV,1,300,03/19/19 16:44,"738 Ridge St, San Francisco, CA 94016" +178203,ThinkPad Laptop,1,999.99,03/06/19 20:16,"756 Park St, San Francisco, CA 94016" +178204,Google Phone,1,600,03/08/19 07:19,"339 Hill St, San Francisco, CA 94016" +178204,USB-C Charging Cable,1,11.95,03/08/19 07:19,"339 Hill St, San Francisco, CA 94016" +178205,Macbook Pro Laptop,1,1700,03/13/19 11:39,"238 Jackson St, Los Angeles, CA 90001" +178206,AAA Batteries (4-pack),1,2.99,03/21/19 09:13,"787 12th St, Los Angeles, CA 90001" +178207,iPhone,1,700,03/20/19 18:21,"787 West St, Atlanta, GA 30301" +178208,27in FHD Monitor,2,149.99,03/25/19 20:53,"905 Elm St, New York City, NY 10001" +178209,20in Monitor,1,109.99,03/17/19 11:55,"329 Washington St, New York City, NY 10001" +178210,USB-C Charging Cable,1,11.95,03/27/19 22:51,"383 Sunset St, Boston, MA 02215" +178211,Apple Airpods Headphones,1,150,03/25/19 20:19,"672 Cedar St, Austin, TX 73301" +178212,AAA Batteries (4-pack),3,2.99,03/20/19 11:34,"384 Jackson St, Boston, MA 02215" +178213,AA Batteries (4-pack),1,3.84,03/24/19 00:10,"268 6th St, Seattle, WA 98101" +178214,AAA Batteries (4-pack),1,2.99,03/28/19 16:48,"701 Cherry St, Los Angeles, CA 90001" +178215,34in Ultrawide Monitor,1,379.99,03/10/19 12:48,"628 Meadow St, New York City, NY 10001" +178216,Lightning Charging Cable,1,14.95,03/09/19 20:52,"30 Center St, Atlanta, GA 30301" +178216,Lightning Charging Cable,1,14.95,03/09/19 20:52,"30 Center St, Atlanta, GA 30301" +178217,Apple Airpods Headphones,1,150,03/17/19 13:22,"339 North St, Atlanta, GA 30301" +178218,AA Batteries (4-pack),1,3.84,03/11/19 06:53,"973 South St, Los Angeles, CA 90001" +178219,Lightning Charging Cable,1,14.95,03/26/19 22:37,"984 Chestnut St, Portland, OR 97035" +178220,AAA Batteries (4-pack),2,2.99,03/20/19 12:42,"482 14th St, Los Angeles, CA 90001" +178221,LG Dryer,1,600.0,03/13/19 13:06,"798 7th St, Los Angeles, CA 90001" +178222,Apple Airpods Headphones,1,150,03/07/19 14:15,"836 6th St, San Francisco, CA 94016" +178223,Apple Airpods Headphones,1,150,03/03/19 23:33,"609 Sunset St, San Francisco, CA 94016" +178224,Bose SoundSport Headphones,1,99.99,03/29/19 21:31,"281 Jefferson St, New York City, NY 10001" +178225,AA Batteries (4-pack),1,3.84,03/10/19 10:40,"221 Johnson St, New York City, NY 10001" +178226,34in Ultrawide Monitor,1,379.99,03/07/19 01:58,"526 Walnut St, San Francisco, CA 94016" +178227,Vareebadd Phone,1,400,03/16/19 20:46,"622 Lake St, San Francisco, CA 94016" +178228,27in FHD Monitor,1,149.99,03/26/19 12:27,"143 Jefferson St, Los Angeles, CA 90001" +178229,Lightning Charging Cable,2,14.95,03/24/19 08:53,"845 Elm St, San Francisco, CA 94016" +178230,USB-C Charging Cable,1,11.95,03/18/19 14:01,"567 Lake St, San Francisco, CA 94016" +178231,USB-C Charging Cable,1,11.95,03/07/19 08:06,"248 Lake St, San Francisco, CA 94016" +178232,27in 4K Gaming Monitor,1,389.99,03/20/19 05:30,"586 Lakeview St, Seattle, WA 98101" +178233,Flatscreen TV,1,300,03/02/19 15:00,"647 South St, New York City, NY 10001" +178234,USB-C Charging Cable,1,11.95,03/19/19 14:09,"608 Washington St, Dallas, TX 75001" +178235,Apple Airpods Headphones,1,150,03/16/19 16:58,"812 2nd St, Los Angeles, CA 90001" +178236,AA Batteries (4-pack),1,3.84,03/31/19 00:46,"810 Jackson St, Seattle, WA 98101" +178237,27in FHD Monitor,1,149.99,03/23/19 22:37,"290 Cherry St, San Francisco, CA 94016" +178238,Wired Headphones,2,11.99,03/09/19 10:24,"881 West St, San Francisco, CA 94016" +178239,AAA Batteries (4-pack),2,2.99,03/11/19 14:31,"715 Jefferson St, San Francisco, CA 94016" +178240,ThinkPad Laptop,1,999.99,03/11/19 09:11,"270 Dogwood St, San Francisco, CA 94016" +178241,Apple Airpods Headphones,2,150,03/04/19 15:02,"565 14th St, Austin, TX 73301" +178242,Wired Headphones,1,11.99,03/07/19 22:41,"423 Maple St, San Francisco, CA 94016" +178243,Google Phone,1,600,03/03/19 21:17,"294 Maple St, Portland, OR 97035" +178244,AA Batteries (4-pack),1,3.84,03/18/19 20:37,"756 West St, Los Angeles, CA 90001" +178245,Lightning Charging Cable,1,14.95,03/30/19 08:35,"298 1st St, Atlanta, GA 30301" +178246,Macbook Pro Laptop,1,1700,03/22/19 22:04,"19 1st St, Portland, OR 97035" +178247,AAA Batteries (4-pack),1,2.99,03/13/19 17:28,"515 Johnson St, San Francisco, CA 94016" +178248,Lightning Charging Cable,1,14.95,03/01/19 17:17,"64 Lincoln St, Boston, MA 02215" +178249,AAA Batteries (4-pack),3,2.99,03/07/19 20:24,"538 Lake St, Los Angeles, CA 90001" +178250,Wired Headphones,1,11.99,03/20/19 20:52,"426 Hill St, San Francisco, CA 94016" +178251,Lightning Charging Cable,1,14.95,03/09/19 13:49,"260 Park St, Los Angeles, CA 90001" +178252,USB-C Charging Cable,1,11.95,03/04/19 06:31,"531 South St, San Francisco, CA 94016" +178253,Bose SoundSport Headphones,1,99.99,03/23/19 14:55,"467 Ridge St, Portland, OR 97035" +178254,Bose SoundSport Headphones,1,99.99,03/21/19 19:50,"408 8th St, New York City, NY 10001" +178255,34in Ultrawide Monitor,1,379.99,03/20/19 20:56,"795 Hickory St, New York City, NY 10001" +178256,Lightning Charging Cable,1,14.95,03/06/19 20:19,"630 Hill St, Los Angeles, CA 90001" +178257,Apple Airpods Headphones,1,150,03/15/19 12:31,"193 4th St, San Francisco, CA 94016" +178258,USB-C Charging Cable,1,11.95,03/22/19 20:26,"120 Cherry St, Boston, MA 02215" +178259,AAA Batteries (4-pack),1,2.99,03/16/19 18:42,"171 Jefferson St, Austin, TX 73301" +178260,Macbook Pro Laptop,1,1700,03/29/19 09:54,"564 Lincoln St, Los Angeles, CA 90001" +178261,Wired Headphones,1,11.99,03/27/19 16:16,"119 Willow St, Portland, OR 97035" +178262,Macbook Pro Laptop,1,1700,03/15/19 05:33,"497 River St, New York City, NY 10001" +178263,Lightning Charging Cable,1,14.95,03/15/19 17:01,"775 Dogwood St, San Francisco, CA 94016" +178264,AA Batteries (4-pack),1,3.84,03/20/19 18:47,"481 South St, Los Angeles, CA 90001" +178265,iPhone,1,700,03/21/19 16:35,"675 Lake St, Los Angeles, CA 90001" +178266,Apple Airpods Headphones,1,150,03/05/19 11:35,"863 6th St, Atlanta, GA 30301" +178267,Bose SoundSport Headphones,1,99.99,03/09/19 12:12,"570 14th St, Austin, TX 73301" +178268,AAA Batteries (4-pack),4,2.99,03/24/19 19:45,"863 7th St, Austin, TX 73301" +178269,Lightning Charging Cable,1,14.95,03/07/19 18:02,"65 9th St, San Francisco, CA 94016" +178270,Wired Headphones,1,11.99,03/18/19 20:38,"784 9th St, San Francisco, CA 94016" +178271,AAA Batteries (4-pack),1,2.99,03/29/19 14:47,"132 South St, Los Angeles, CA 90001" +178272,20in Monitor,1,109.99,03/25/19 22:14,"776 1st St, Los Angeles, CA 90001" +178273,Macbook Pro Laptop,1,1700,03/24/19 10:33,"968 Wilson St, Boston, MA 02215" +178274,Lightning Charging Cable,1,14.95,03/15/19 19:24,"713 River St, San Francisco, CA 94016" +,,,,, +178275,Wired Headphones,1,11.99,03/07/19 15:15,"455 Jefferson St, Los Angeles, CA 90001" +178276,27in 4K Gaming Monitor,1,389.99,03/29/19 22:54,"625 Chestnut St, Seattle, WA 98101" +178277,AA Batteries (4-pack),1,3.84,03/06/19 10:26,"604 Adams St, Los Angeles, CA 90001" +178278,Lightning Charging Cable,1,14.95,03/01/19 12:35,"199 Main St, Boston, MA 02215" +178279,Lightning Charging Cable,1,14.95,03/31/19 09:31,"219 Elm St, Boston, MA 02215" +178280,Bose SoundSport Headphones,1,99.99,03/09/19 16:23,"136 Jackson St, New York City, NY 10001" +178281,USB-C Charging Cable,1,11.95,03/11/19 09:24,"913 Chestnut St, Atlanta, GA 30301" +178282,AA Batteries (4-pack),2,3.84,03/07/19 09:46,"281 6th St, Portland, ME 04101" +178283,AAA Batteries (4-pack),2,2.99,03/17/19 14:32,"331 Spruce St, Boston, MA 02215" +178284,27in FHD Monitor,1,149.99,03/23/19 20:38,"401 1st St, Atlanta, GA 30301" +178285,USB-C Charging Cable,2,11.95,03/30/19 21:39,"831 Hickory St, San Francisco, CA 94016" +178286,Apple Airpods Headphones,1,150,03/31/19 18:05,"405 River St, San Francisco, CA 94016" +178287,Bose SoundSport Headphones,1,99.99,03/28/19 14:41,"265 Pine St, San Francisco, CA 94016" +178288,USB-C Charging Cable,1,11.95,03/09/19 17:27,"171 Lakeview St, San Francisco, CA 94016" +178289,Wired Headphones,1,11.99,03/15/19 10:49,"857 Dogwood St, San Francisco, CA 94016" +178290,AA Batteries (4-pack),2,3.84,03/06/19 19:41,"334 Highland St, Boston, MA 02215" +178291,Google Phone,1,600,03/06/19 21:40,"283 River St, Dallas, TX 75001" +178292,27in 4K Gaming Monitor,1,389.99,03/08/19 20:20,"381 Washington St, New York City, NY 10001" +178293,34in Ultrawide Monitor,1,379.99,03/08/19 21:14,"635 Cherry St, Atlanta, GA 30301" +178294,Lightning Charging Cable,1,14.95,03/16/19 20:38,"972 Spruce St, Seattle, WA 98101" +178295,Wired Headphones,2,11.99,03/16/19 11:28,"101 Park St, New York City, NY 10001" +178296,USB-C Charging Cable,1,11.95,03/06/19 19:04,"852 Johnson St, Los Angeles, CA 90001" +178297,Apple Airpods Headphones,1,150,03/14/19 12:57,"869 1st St, Dallas, TX 75001" +178298,Bose SoundSport Headphones,1,99.99,03/19/19 20:48,"339 Lakeview St, Seattle, WA 98101" +178299,AAA Batteries (4-pack),2,2.99,03/11/19 10:38,"547 Adams St, San Francisco, CA 94016" +178300,Bose SoundSport Headphones,1,99.99,03/16/19 08:49,"423 Center St, Seattle, WA 98101" +178301,AA Batteries (4-pack),1,3.84,03/22/19 08:07,"430 Hickory St, Boston, MA 02215" +178302,Lightning Charging Cable,1,14.95,03/20/19 16:07,"439 Cedar St, Seattle, WA 98101" +178303,Lightning Charging Cable,1,14.95,03/12/19 18:41,"376 Hickory St, San Francisco, CA 94016" +178304,Google Phone,1,600,03/16/19 14:21,"286 10th St, Seattle, WA 98101" +178305,AAA Batteries (4-pack),3,2.99,03/25/19 23:34,"457 Highland St, New York City, NY 10001" +178306,Wired Headphones,1,11.99,03/12/19 21:41,"93 Hill St, Austin, TX 73301" +178307,27in 4K Gaming Monitor,1,389.99,03/07/19 17:02,"856 5th St, Dallas, TX 75001" +178308,AAA Batteries (4-pack),1,2.99,03/17/19 14:17,"214 12th St, New York City, NY 10001" +178309,AA Batteries (4-pack),2,3.84,03/22/19 20:24,"629 Spruce St, San Francisco, CA 94016" +178310,USB-C Charging Cable,1,11.95,03/02/19 14:24,"887 West St, San Francisco, CA 94016" +178311,USB-C Charging Cable,1,11.95,03/17/19 17:42,"736 Johnson St, Portland, OR 97035" +178312,iPhone,1,700,03/22/19 08:38,"414 2nd St, San Francisco, CA 94016" +178313,ThinkPad Laptop,1,999.99,03/28/19 18:42,"308 Main St, Austin, TX 73301" +178314,AA Batteries (4-pack),1,3.84,03/02/19 11:19,"235 Sunset St, San Francisco, CA 94016" +178315,Lightning Charging Cable,2,14.95,03/24/19 22:00,"166 12th St, San Francisco, CA 94016" +178316,Wired Headphones,2,11.99,03/07/19 17:15,"350 5th St, Austin, TX 73301" +178317,Wired Headphones,3,11.99,03/17/19 10:40,"116 Lakeview St, Los Angeles, CA 90001" +178317,Lightning Charging Cable,1,14.95,03/17/19 10:40,"116 Lakeview St, Los Angeles, CA 90001" +178318,Lightning Charging Cable,1,14.95,03/29/19 20:57,"617 River St, Seattle, WA 98101" +178319,34in Ultrawide Monitor,1,379.99,03/12/19 20:24,"138 7th St, Atlanta, GA 30301" +178320,20in Monitor,1,109.99,03/12/19 07:40,"856 Meadow St, Austin, TX 73301" +178321,ThinkPad Laptop,1,999.99,03/18/19 18:40,"950 Jackson St, San Francisco, CA 94016" +178322,AA Batteries (4-pack),1,3.84,03/30/19 12:54,"396 Park St, Seattle, WA 98101" +178323,27in 4K Gaming Monitor,1,389.99,03/06/19 12:18,"768 14th St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +178324,AA Batteries (4-pack),2,3.84,03/22/19 16:17,"110 6th St, Portland, OR 97035" +178325,ThinkPad Laptop,1,999.99,03/16/19 15:06,"306 Center St, Dallas, TX 75001" +178326,AAA Batteries (4-pack),1,2.99,03/26/19 08:31,"309 10th St, New York City, NY 10001" +178327,27in 4K Gaming Monitor,1,389.99,03/02/19 11:58,"288 Jackson St, Atlanta, GA 30301" +178328,Wired Headphones,1,11.99,03/08/19 16:46,"816 Maple St, Seattle, WA 98101" +178329,Flatscreen TV,1,300,03/10/19 21:40,"227 2nd St, New York City, NY 10001" +178330,Apple Airpods Headphones,1,150,03/10/19 08:29,"934 13th St, Dallas, TX 75001" +178331,USB-C Charging Cable,1,11.95,03/17/19 07:34,"312 North St, Boston, MA 02215" +178332,AAA Batteries (4-pack),1,2.99,03/28/19 14:25,"316 Park St, Los Angeles, CA 90001" +178333,Wired Headphones,1,11.99,03/31/19 12:39,"470 1st St, Portland, OR 97035" +178334,AAA Batteries (4-pack),2,2.99,03/19/19 20:30,"380 14th St, New York City, NY 10001" +178335,34in Ultrawide Monitor,1,379.99,03/08/19 22:52,"729 River St, Los Angeles, CA 90001" +178336,USB-C Charging Cable,1,11.95,03/16/19 17:07,"911 12th St, Portland, OR 97035" +178337,Lightning Charging Cable,1,14.95,03/24/19 18:38,"192 2nd St, Dallas, TX 75001" +178338,iPhone,1,700,03/21/19 21:07,"258 Jackson St, Dallas, TX 75001" +178339,ThinkPad Laptop,1,999.99,03/15/19 08:01,"510 13th St, New York City, NY 10001" +178340,USB-C Charging Cable,1,11.95,03/14/19 15:17,"877 1st St, New York City, NY 10001" +178340,USB-C Charging Cable,1,11.95,03/14/19 15:17,"877 1st St, New York City, NY 10001" +178341,AAA Batteries (4-pack),3,2.99,03/03/19 20:07,"792 Ridge St, New York City, NY 10001" +178342,AAA Batteries (4-pack),6,2.99,03/08/19 17:09,"994 1st St, Atlanta, GA 30301" +178343,Bose SoundSport Headphones,1,99.99,03/16/19 09:18,"168 Hickory St, San Francisco, CA 94016" +178344,Lightning Charging Cable,1,14.95,03/05/19 17:58,"460 Forest St, Atlanta, GA 30301" +178345,Apple Airpods Headphones,1,150,03/02/19 21:54,"615 Forest St, New York City, NY 10001" +178346,Macbook Pro Laptop,1,1700,03/25/19 22:55,"337 6th St, San Francisco, CA 94016" +178347,Apple Airpods Headphones,1,150,03/23/19 20:01,"402 Park St, Los Angeles, CA 90001" +178348,USB-C Charging Cable,1,11.95,03/30/19 14:37,"837 Hill St, New York City, NY 10001" +178349,Apple Airpods Headphones,1,150,03/05/19 19:18,"489 14th St, San Francisco, CA 94016" +178350,iPhone,1,700,03/20/19 14:06,"273 Spruce St, Boston, MA 02215" +178351,AA Batteries (4-pack),1,3.84,03/15/19 02:46,"698 Dogwood St, Los Angeles, CA 90001" +178352,Wired Headphones,1,11.99,03/24/19 08:44,"551 River St, New York City, NY 10001" +178353,Lightning Charging Cable,2,14.95,03/04/19 10:27,"118 1st St, New York City, NY 10001" +178354,Google Phone,1,600,03/03/19 13:27,"439 Madison St, Portland, ME 04101" +178355,34in Ultrawide Monitor,1,379.99,03/07/19 21:11,"667 Hickory St, Boston, MA 02215" +178356,AAA Batteries (4-pack),1,2.99,03/12/19 18:52,"829 Spruce St, Boston, MA 02215" +178357,Wired Headphones,1,11.99,03/18/19 21:11,"846 River St, Los Angeles, CA 90001" +178358,iPhone,1,700,03/02/19 06:05,"489 Highland St, San Francisco, CA 94016" +178358,Lightning Charging Cable,1,14.95,03/02/19 06:05,"489 Highland St, San Francisco, CA 94016" +178359,34in Ultrawide Monitor,1,379.99,03/30/19 21:26,"794 Spruce St, Los Angeles, CA 90001" +178360,USB-C Charging Cable,1,11.95,03/15/19 15:31,"449 Chestnut St, San Francisco, CA 94016" +178361,Google Phone,1,600,03/20/19 15:46,"963 2nd St, Los Angeles, CA 90001" +178361,USB-C Charging Cable,1,11.95,03/20/19 15:46,"963 2nd St, Los Angeles, CA 90001" +178362,27in FHD Monitor,1,149.99,03/26/19 12:09,"834 Maple St, Portland, OR 97035" +178363,27in FHD Monitor,1,149.99,03/04/19 19:42,"500 Elm St, Los Angeles, CA 90001" +178364,Apple Airpods Headphones,1,150,03/31/19 16:43,"980 Main St, Dallas, TX 75001" +178365,USB-C Charging Cable,2,11.95,03/05/19 14:19,"897 Jackson St, Los Angeles, CA 90001" +178366,Wired Headphones,1,11.99,03/28/19 18:52,"86 12th St, San Francisco, CA 94016" +178367,ThinkPad Laptop,1,999.99,03/22/19 15:44,"32 1st St, Los Angeles, CA 90001" +178368,27in 4K Gaming Monitor,1,389.99,03/11/19 13:21,"147 Main St, Atlanta, GA 30301" +178369,Flatscreen TV,1,300,03/01/19 09:27,"408 Maple St, New York City, NY 10001" +178370,AA Batteries (4-pack),1,3.84,03/14/19 05:41,"158 Dogwood St, Boston, MA 02215" +178371,USB-C Charging Cable,1,11.95,03/20/19 21:49,"976 Pine St, San Francisco, CA 94016" +178372,USB-C Charging Cable,2,11.95,03/06/19 17:19,"267 Washington St, Los Angeles, CA 90001" +178373,Wired Headphones,1,11.99,03/31/19 18:40,"363 9th St, San Francisco, CA 94016" +178374,Wired Headphones,1,11.99,03/12/19 06:39,"674 Cherry St, Austin, TX 73301" +178375,USB-C Charging Cable,1,11.95,03/08/19 22:24,"310 7th St, San Francisco, CA 94016" +178376,Lightning Charging Cable,1,14.95,03/18/19 20:23,"78 Church St, Atlanta, GA 30301" +178377,Wired Headphones,1,11.99,03/12/19 17:03,"771 Cherry St, Seattle, WA 98101" +178378,Lightning Charging Cable,1,14.95,03/23/19 16:46,"102 2nd St, Portland, OR 97035" +178379,USB-C Charging Cable,1,11.95,03/19/19 14:07,"204 Dogwood St, San Francisco, CA 94016" +178380,Bose SoundSport Headphones,1,99.99,03/05/19 22:22,"875 Adams St, New York City, NY 10001" +178381,Wired Headphones,2,11.99,03/20/19 20:29,"815 12th St, San Francisco, CA 94016" +178382,Lightning Charging Cable,1,14.95,03/10/19 17:17,"363 Sunset St, San Francisco, CA 94016" +178383,Apple Airpods Headphones,1,150,03/28/19 22:21,"783 12th St, New York City, NY 10001" +178384,Bose SoundSport Headphones,1,99.99,03/18/19 10:35,"938 1st St, San Francisco, CA 94016" +178385,Bose SoundSport Headphones,1,99.99,03/11/19 18:18,"83 Cherry St, Atlanta, GA 30301" +178386,27in FHD Monitor,1,149.99,03/21/19 16:17,"56 River St, Portland, OR 97035" +178387,USB-C Charging Cable,1,11.95,03/29/19 12:36,"208 Spruce St, San Francisco, CA 94016" +178388,Lightning Charging Cable,1,14.95,03/01/19 21:57,"115 Chestnut St, Seattle, WA 98101" +178389,Lightning Charging Cable,1,14.95,03/25/19 00:26,"132 5th St, San Francisco, CA 94016" +178390,AAA Batteries (4-pack),1,2.99,04/01/19 02:48,"854 9th St, Portland, OR 97035" +178391,Lightning Charging Cable,1,14.95,03/30/19 18:26,"401 Lake St, San Francisco, CA 94016" +178392,Wired Headphones,1,11.99,03/08/19 18:08,"293 Jackson St, Boston, MA 02215" +178393,AA Batteries (4-pack),1,3.84,03/15/19 08:43,"258 10th St, Seattle, WA 98101" +178394,AA Batteries (4-pack),1,3.84,03/10/19 11:34,"210 Forest St, New York City, NY 10001" +178395,Apple Airpods Headphones,1,150,03/08/19 21:54,"418 Forest St, New York City, NY 10001" +178396,Apple Airpods Headphones,1,150,03/15/19 12:38,"121 5th St, Austin, TX 73301" +178397,Lightning Charging Cable,1,14.95,03/14/19 22:33,"443 Hill St, Seattle, WA 98101" +178398,AA Batteries (4-pack),1,3.84,03/06/19 19:27,"26 9th St, Los Angeles, CA 90001" +178399,AAA Batteries (4-pack),1,2.99,03/25/19 20:35,"301 Lakeview St, Boston, MA 02215" +178400,AA Batteries (4-pack),1,3.84,03/16/19 09:58,"441 Jackson St, Portland, OR 97035" +178401,AA Batteries (4-pack),1,3.84,03/04/19 06:36,"610 Walnut St, New York City, NY 10001" +178402,Apple Airpods Headphones,1,150,03/30/19 01:45,"328 Lincoln St, Dallas, TX 75001" +178402,27in FHD Monitor,1,149.99,03/30/19 01:45,"328 Lincoln St, Dallas, TX 75001" +178403,Wired Headphones,1,11.99,03/21/19 20:46,"122 Park St, San Francisco, CA 94016" +178404,Apple Airpods Headphones,1,150,03/03/19 12:11,"651 Adams St, New York City, NY 10001" +178405,Apple Airpods Headphones,1,150,03/02/19 17:34,"417 9th St, Los Angeles, CA 90001" +178406,AAA Batteries (4-pack),1,2.99,03/30/19 09:55,"515 Center St, New York City, NY 10001" +178407,USB-C Charging Cable,1,11.95,03/18/19 08:42,"426 Meadow St, Los Angeles, CA 90001" +178408,Wired Headphones,1,11.99,03/27/19 19:01,"187 Meadow St, Seattle, WA 98101" +178409,AA Batteries (4-pack),1,3.84,03/26/19 21:30,"905 Main St, Portland, OR 97035" +178409,Wired Headphones,2,11.99,03/26/19 21:30,"905 Main St, Portland, OR 97035" +178410,Wired Headphones,1,11.99,03/21/19 20:59,"85 Chestnut St, New York City, NY 10001" +178411,Bose SoundSport Headphones,2,99.99,03/14/19 13:23,"603 4th St, San Francisco, CA 94016" +178412,AAA Batteries (4-pack),1,2.99,03/23/19 00:31,"699 Cherry St, Boston, MA 02215" +178413,Lightning Charging Cable,1,14.95,03/15/19 17:03,"13 9th St, Los Angeles, CA 90001" +178414,Flatscreen TV,1,300,03/08/19 14:24,"560 Washington St, San Francisco, CA 94016" +178415,Vareebadd Phone,1,400,03/18/19 01:48,"847 11th St, Boston, MA 02215" +178416,iPhone,1,700,03/15/19 18:27,"530 Forest St, Atlanta, GA 30301" +178416,Apple Airpods Headphones,1,150,03/15/19 18:27,"530 Forest St, Atlanta, GA 30301" +178417,USB-C Charging Cable,1,11.95,03/24/19 11:11,"295 West St, Seattle, WA 98101" +178418,Lightning Charging Cable,1,14.95,03/13/19 16:45,"674 South St, Dallas, TX 75001" +178419,Apple Airpods Headphones,1,150,03/31/19 12:10,"600 10th St, New York City, NY 10001" +178419,Bose SoundSport Headphones,1,99.99,03/31/19 12:10,"600 10th St, New York City, NY 10001" +178420,Lightning Charging Cable,1,14.95,03/04/19 10:35,"819 Cherry St, San Francisco, CA 94016" +178421,34in Ultrawide Monitor,1,379.99,03/12/19 16:55,"110 2nd St, Dallas, TX 75001" +178422,AAA Batteries (4-pack),3,2.99,03/22/19 19:33,"963 10th St, San Francisco, CA 94016" +178423,Apple Airpods Headphones,1,150,03/26/19 21:27,"224 8th St, New York City, NY 10001" +178424,AA Batteries (4-pack),1,3.84,03/14/19 16:32,"443 Dogwood St, Austin, TX 73301" +178425,Macbook Pro Laptop,1,1700,03/09/19 23:52,"300 Park St, Los Angeles, CA 90001" +178426,AAA Batteries (4-pack),1,2.99,03/11/19 20:45,"161 14th St, San Francisco, CA 94016" +178427,Lightning Charging Cable,1,14.95,03/31/19 15:08,"651 7th St, Boston, MA 02215" +178428,ThinkPad Laptop,1,999.99,03/20/19 23:37,"963 Pine St, San Francisco, CA 94016" +178429,Apple Airpods Headphones,1,150,03/08/19 13:52,"453 14th St, Los Angeles, CA 90001" +178430,AAA Batteries (4-pack),1,2.99,03/29/19 09:41,"882 12th St, San Francisco, CA 94016" +178431,AA Batteries (4-pack),1,3.84,03/16/19 22:56,"627 Lakeview St, New York City, NY 10001" +178432,34in Ultrawide Monitor,1,379.99,03/10/19 18:35,"413 Spruce St, Boston, MA 02215" +178433,34in Ultrawide Monitor,1,379.99,03/29/19 08:22,"282 Cherry St, Los Angeles, CA 90001" +178434,20in Monitor,1,109.99,03/20/19 21:02,"905 Meadow St, San Francisco, CA 94016" +178435,Apple Airpods Headphones,1,150,03/20/19 08:54,"919 Adams St, Boston, MA 02215" +178436,Wired Headphones,1,11.99,03/13/19 06:48,"37 Center St, Boston, MA 02215" +178437,AAA Batteries (4-pack),2,2.99,03/19/19 23:57,"654 9th St, Boston, MA 02215" +178438,LG Washing Machine,1,600.0,03/15/19 17:48,"538 Chestnut St, New York City, NY 10001" +178439,Bose SoundSport Headphones,1,99.99,03/13/19 11:22,"793 Sunset St, San Francisco, CA 94016" +178440,34in Ultrawide Monitor,1,379.99,03/23/19 21:58,"12 Elm St, Los Angeles, CA 90001" +178441,Bose SoundSport Headphones,1,99.99,03/17/19 13:31,"823 Center St, New York City, NY 10001" +178442,USB-C Charging Cable,1,11.95,03/17/19 10:44,"361 Chestnut St, Dallas, TX 75001" +178443,20in Monitor,1,109.99,03/24/19 10:47,"999 Sunset St, Los Angeles, CA 90001" +178444,USB-C Charging Cable,2,11.95,03/01/19 21:30,"221 Lincoln St, Seattle, WA 98101" +178445,iPhone,1,700,03/26/19 09:39,"345 14th St, Los Angeles, CA 90001" +178446,iPhone,1,700,03/23/19 20:10,"193 Hill St, Seattle, WA 98101" +178447,USB-C Charging Cable,1,11.95,03/07/19 07:58,"653 Walnut St, San Francisco, CA 94016" +178448,Apple Airpods Headphones,1,150,03/14/19 23:24,"671 Center St, Boston, MA 02215" +178449,Bose SoundSport Headphones,1,99.99,03/24/19 22:08,"313 Hill St, Los Angeles, CA 90001" +178450,USB-C Charging Cable,1,11.95,03/14/19 16:26,"603 Highland St, Austin, TX 73301" +178451,AA Batteries (4-pack),1,3.84,03/21/19 09:26,"590 Jefferson St, Dallas, TX 75001" +178452,AA Batteries (4-pack),1,3.84,03/08/19 20:47,"758 7th St, Seattle, WA 98101" +178453,AA Batteries (4-pack),1,3.84,03/25/19 12:31,"872 Ridge St, Seattle, WA 98101" +178454,27in FHD Monitor,1,149.99,03/16/19 12:13,"371 South St, Los Angeles, CA 90001" +178455,AAA Batteries (4-pack),1,2.99,03/02/19 21:19,"744 Willow St, Seattle, WA 98101" +178456,USB-C Charging Cable,1,11.95,03/25/19 18:36,"25 1st St, New York City, NY 10001" +178457,AA Batteries (4-pack),3,3.84,03/08/19 12:45,"411 Pine St, San Francisco, CA 94016" +178458,AA Batteries (4-pack),1,3.84,03/04/19 19:13,"529 8th St, Atlanta, GA 30301" +178459,Apple Airpods Headphones,1,150,03/24/19 22:08,"394 Cedar St, Boston, MA 02215" +178460,Lightning Charging Cable,1,14.95,03/21/19 10:55,"455 1st St, New York City, NY 10001" +178461,27in FHD Monitor,1,149.99,03/25/19 10:25,"38 Cherry St, San Francisco, CA 94016" +178462,AAA Batteries (4-pack),1,2.99,03/17/19 01:04,"998 Pine St, Seattle, WA 98101" +178463,USB-C Charging Cable,1,11.95,03/10/19 20:26,"497 Center St, Atlanta, GA 30301" +178464,AAA Batteries (4-pack),1,2.99,03/04/19 15:28,"796 Cherry St, Boston, MA 02215" +178465,Macbook Pro Laptop,1,1700,03/13/19 19:29,"595 7th St, Seattle, WA 98101" +178466,Lightning Charging Cable,1,14.95,03/16/19 16:44,"57 12th St, Atlanta, GA 30301" +178467,Bose SoundSport Headphones,1,99.99,03/28/19 17:35,"626 Spruce St, New York City, NY 10001" +178468,Google Phone,1,600,03/09/19 12:43,"415 4th St, San Francisco, CA 94016" +178469,Wired Headphones,1,11.99,03/08/19 16:53,"627 Hill St, Los Angeles, CA 90001" +178470,Wired Headphones,1,11.99,03/27/19 10:45,"709 Lakeview St, Los Angeles, CA 90001" +178471,Bose SoundSport Headphones,1,99.99,03/18/19 21:40,"735 Center St, Los Angeles, CA 90001" +178472,USB-C Charging Cable,1,11.95,04/01/19 00:45,"753 Madison St, San Francisco, CA 94016" +178473,Apple Airpods Headphones,1,150,03/27/19 16:30,"636 1st St, Seattle, WA 98101" +178474,Apple Airpods Headphones,1,150,03/10/19 15:21,"128 Forest St, Seattle, WA 98101" +178475,Lightning Charging Cable,1,14.95,03/22/19 07:14,"184 Adams St, Seattle, WA 98101" +178476,Vareebadd Phone,1,400,03/07/19 17:24,"157 Dogwood St, New York City, NY 10001" +178477,AA Batteries (4-pack),1,3.84,03/27/19 20:29,"928 Lakeview St, Dallas, TX 75001" +178478,Apple Airpods Headphones,1,150,03/25/19 22:47,"404 Highland St, Portland, OR 97035" +178479,27in FHD Monitor,1,149.99,03/21/19 19:32,"454 Dogwood St, Dallas, TX 75001" +178480,Lightning Charging Cable,1,14.95,03/20/19 15:31,"977 13th St, New York City, NY 10001" +178481,AA Batteries (4-pack),1,3.84,03/24/19 12:14,"129 4th St, San Francisco, CA 94016" +178482,AAA Batteries (4-pack),2,2.99,03/23/19 18:51,"43 Pine St, Portland, OR 97035" +178483,Lightning Charging Cable,1,14.95,03/26/19 11:17,"410 5th St, Los Angeles, CA 90001" +178484,ThinkPad Laptop,1,999.99,03/16/19 14:41,"983 Hill St, New York City, NY 10001" +178485,Flatscreen TV,1,300,03/23/19 10:30,"938 Jefferson St, New York City, NY 10001" +178486,Google Phone,1,600,03/02/19 10:43,"151 Pine St, San Francisco, CA 94016" +178486,Wired Headphones,1,11.99,03/02/19 10:43,"151 Pine St, San Francisco, CA 94016" +178487,Lightning Charging Cable,1,14.95,03/08/19 19:56,"694 10th St, Portland, OR 97035" +178488,USB-C Charging Cable,1,11.95,03/27/19 22:18,"912 Sunset St, Austin, TX 73301" +178489,USB-C Charging Cable,1,11.95,03/04/19 19:48,"2 Walnut St, San Francisco, CA 94016" +178490,27in 4K Gaming Monitor,1,389.99,03/30/19 10:20,"629 Hickory St, Atlanta, GA 30301" +178491,Google Phone,1,600,03/02/19 11:44,"349 Lakeview St, Atlanta, GA 30301" +178492,iPhone,1,700,03/30/19 09:56,"10 Park St, New York City, NY 10001" +178492,Lightning Charging Cable,1,14.95,03/30/19 09:56,"10 Park St, New York City, NY 10001" +178493,AAA Batteries (4-pack),1,2.99,03/01/19 13:03,"394 Elm St, Austin, TX 73301" +178494,Bose SoundSport Headphones,1,99.99,03/27/19 12:17,"104 Dogwood St, Portland, ME 04101" +178495,Bose SoundSport Headphones,1,99.99,03/22/19 14:04,"356 Church St, Atlanta, GA 30301" +178496,AA Batteries (4-pack),1,3.84,03/14/19 15:04,"442 Walnut St, San Francisco, CA 94016" +178497,Apple Airpods Headphones,1,150,03/23/19 18:37,"950 Lakeview St, Boston, MA 02215" +178498,Wired Headphones,1,11.99,03/01/19 18:17,"299 West St, San Francisco, CA 94016" +178499,AAA Batteries (4-pack),1,2.99,03/13/19 11:05,"310 Jackson St, New York City, NY 10001" +178500,Lightning Charging Cable,1,14.95,03/16/19 12:03,"826 Wilson St, New York City, NY 10001" +178501,USB-C Charging Cable,1,11.95,03/05/19 13:09,"660 Lincoln St, New York City, NY 10001" +178502,Bose SoundSport Headphones,1,99.99,03/13/19 17:18,"248 8th St, New York City, NY 10001" +178503,AA Batteries (4-pack),1,3.84,03/26/19 15:35,"485 Park St, New York City, NY 10001" +178504,27in FHD Monitor,1,149.99,03/09/19 05:33,"48 Walnut St, San Francisco, CA 94016" +178505,Apple Airpods Headphones,1,150,03/21/19 15:47,"300 13th St, Los Angeles, CA 90001" +178506,Macbook Pro Laptop,1,1700,03/22/19 13:20,"872 Pine St, New York City, NY 10001" +178507,Apple Airpods Headphones,1,150,03/14/19 07:05,"875 Cedar St, Los Angeles, CA 90001" +178508,USB-C Charging Cable,1,11.95,03/05/19 14:58,"926 Johnson St, Los Angeles, CA 90001" +178509,AAA Batteries (4-pack),1,2.99,03/10/19 21:42,"742 Wilson St, Seattle, WA 98101" +178510,AAA Batteries (4-pack),1,2.99,03/02/19 10:00,"38 5th St, Atlanta, GA 30301" +178511,Apple Airpods Headphones,1,150,03/25/19 17:59,"535 Cherry St, Atlanta, GA 30301" +178512,AA Batteries (4-pack),1,3.84,03/18/19 13:22,"811 Johnson St, New York City, NY 10001" +178513,USB-C Charging Cable,1,11.95,03/08/19 22:11,"375 Hill St, New York City, NY 10001" +178514,AA Batteries (4-pack),1,3.84,03/18/19 11:20,"43 Center St, New York City, NY 10001" +178515,27in FHD Monitor,1,149.99,03/20/19 14:20,"939 Park St, New York City, NY 10001" +178516,AAA Batteries (4-pack),2,2.99,03/14/19 11:00,"534 Highland St, Austin, TX 73301" +178517,USB-C Charging Cable,1,11.95,03/31/19 15:27,"868 Ridge St, San Francisco, CA 94016" +178518,Lightning Charging Cable,2,14.95,03/16/19 16:50,"834 Sunset St, Atlanta, GA 30301" +178519,Apple Airpods Headphones,1,150,03/13/19 00:38,"909 10th St, New York City, NY 10001" +178520,Macbook Pro Laptop,1,1700,03/26/19 19:37,"510 Cherry St, Austin, TX 73301" +178521,ThinkPad Laptop,1,999.99,03/06/19 16:09,"141 5th St, Portland, ME 04101" +178522,AAA Batteries (4-pack),1,2.99,03/11/19 21:26,"251 Walnut St, Seattle, WA 98101" +178523,Apple Airpods Headphones,1,150,03/30/19 18:47,"466 14th St, San Francisco, CA 94016" +178524,ThinkPad Laptop,1,999.99,03/09/19 06:15,"282 Lakeview St, San Francisco, CA 94016" +178525,USB-C Charging Cable,1,11.95,03/17/19 13:45,"192 Lincoln St, Portland, ME 04101" +178526,Apple Airpods Headphones,1,150,03/02/19 21:44,"830 Highland St, Los Angeles, CA 90001" +178527,Bose SoundSport Headphones,1,99.99,03/18/19 18:14,"10 Lincoln St, New York City, NY 10001" +178528,20in Monitor,1,109.99,03/21/19 10:45,"327 Church St, Los Angeles, CA 90001" +178529,ThinkPad Laptop,1,999.99,03/10/19 21:50,"175 14th St, San Francisco, CA 94016" +178530,Flatscreen TV,1,300,03/22/19 00:12,"3 12th St, Atlanta, GA 30301" +178531,USB-C Charging Cable,1,11.95,03/15/19 19:24,"95 Ridge St, Dallas, TX 75001" +178532,34in Ultrawide Monitor,1,379.99,03/03/19 21:10,"912 Sunset St, San Francisco, CA 94016" +178533,27in FHD Monitor,1,149.99,03/11/19 21:25,"699 Spruce St, Los Angeles, CA 90001" +178534,AA Batteries (4-pack),1,3.84,03/11/19 13:23,"410 Cherry St, Dallas, TX 75001" +178535,Apple Airpods Headphones,1,150,03/14/19 20:29,"191 Wilson St, Portland, OR 97035" +178536,Lightning Charging Cable,1,14.95,03/11/19 10:15,"285 Cedar St, New York City, NY 10001" +178537,27in 4K Gaming Monitor,1,389.99,03/11/19 09:18,"763 Highland St, Boston, MA 02215" +178538,27in FHD Monitor,1,149.99,03/16/19 12:27,"664 South St, Austin, TX 73301" +178539,Lightning Charging Cable,2,14.95,03/04/19 16:58,"471 11th St, San Francisco, CA 94016" +178540,AA Batteries (4-pack),1,3.84,03/11/19 12:20,"880 7th St, Atlanta, GA 30301" +178541,34in Ultrawide Monitor,1,379.99,03/28/19 20:04,"794 Adams St, Seattle, WA 98101" +178542,Lightning Charging Cable,1,14.95,03/05/19 11:10,"903 5th St, Seattle, WA 98101" +178543,Bose SoundSport Headphones,1,99.99,03/22/19 14:42,"830 5th St, Los Angeles, CA 90001" +178544,Google Phone,1,600,03/25/19 21:47,"809 Madison St, Seattle, WA 98101" +178544,USB-C Charging Cable,2,11.95,03/25/19 21:47,"809 Madison St, Seattle, WA 98101" +178545,Vareebadd Phone,1,400,03/05/19 15:47,"288 10th St, New York City, NY 10001" +178545,USB-C Charging Cable,1,11.95,03/05/19 15:47,"288 10th St, New York City, NY 10001" +178546,AA Batteries (4-pack),2,3.84,03/28/19 12:52,"46 1st St, New York City, NY 10001" +178547,iPhone,1,700,03/16/19 14:41,"681 Meadow St, Los Angeles, CA 90001" +178547,Lightning Charging Cable,2,14.95,03/16/19 14:41,"681 Meadow St, Los Angeles, CA 90001" +178547,Wired Headphones,1,11.99,03/16/19 14:41,"681 Meadow St, Los Angeles, CA 90001" +178548,AAA Batteries (4-pack),1,2.99,03/01/19 20:48,"767 Elm St, Los Angeles, CA 90001" +178549,Lightning Charging Cable,1,14.95,03/17/19 21:41,"585 Cherry St, Boston, MA 02215" +178550,USB-C Charging Cable,1,11.95,03/12/19 21:06,"463 Dogwood St, San Francisco, CA 94016" +178551,AA Batteries (4-pack),3,3.84,03/28/19 18:08,"761 Meadow St, Portland, OR 97035" +178552,Vareebadd Phone,1,400,03/10/19 12:39,"501 West St, San Francisco, CA 94016" +178553,AA Batteries (4-pack),1,3.84,03/22/19 15:48,"407 Park St, Los Angeles, CA 90001" +178554,27in FHD Monitor,1,149.99,03/05/19 21:02,"525 Adams St, Seattle, WA 98101" +178555,AAA Batteries (4-pack),1,2.99,03/24/19 10:52,"533 Pine St, Atlanta, GA 30301" +178556,AA Batteries (4-pack),3,3.84,03/20/19 20:15,"576 8th St, San Francisco, CA 94016" +178556,Apple Airpods Headphones,1,150,03/20/19 20:15,"576 8th St, San Francisco, CA 94016" +178557,Flatscreen TV,1,300,03/12/19 21:33,"572 Maple St, Boston, MA 02215" +178558,AA Batteries (4-pack),1,3.84,03/22/19 09:10,"83 Washington St, New York City, NY 10001" +178559,Wired Headphones,1,11.99,03/06/19 12:23,"303 Forest St, San Francisco, CA 94016" +178560,Flatscreen TV,1,300,03/13/19 13:27,"613 4th St, San Francisco, CA 94016" +178561,Apple Airpods Headphones,1,150,03/06/19 15:23,"797 Lake St, Portland, OR 97035" +178562,Wired Headphones,1,11.99,03/10/19 14:18,"403 Johnson St, San Francisco, CA 94016" +178563,AAA Batteries (4-pack),1,2.99,03/31/19 12:13,"333 7th St, Dallas, TX 75001" +178564,Vareebadd Phone,1,400,03/17/19 07:58,"901 10th St, San Francisco, CA 94016" +178565,Bose SoundSport Headphones,1,99.99,03/12/19 22:17,"582 West St, New York City, NY 10001" +178566,USB-C Charging Cable,1,11.95,03/08/19 16:16,"502 9th St, Boston, MA 02215" +178567,Lightning Charging Cable,1,14.95,03/15/19 12:13,"656 5th St, Seattle, WA 98101" +178568,27in 4K Gaming Monitor,1,389.99,03/05/19 22:52,"802 Cedar St, Seattle, WA 98101" +178569,Lightning Charging Cable,1,14.95,03/25/19 12:45,"85 7th St, Dallas, TX 75001" +,,,,, +178570,Wired Headphones,1,11.99,03/10/19 08:11,"121 Maple St, Portland, OR 97035" +178571,iPhone,1,700,03/05/19 13:25,"353 14th St, San Francisco, CA 94016" +178572,AAA Batteries (4-pack),2,2.99,03/07/19 23:53,"337 Dogwood St, San Francisco, CA 94016" +178573,Wired Headphones,1,11.99,03/24/19 12:34,"340 2nd St, San Francisco, CA 94016" +178574,Apple Airpods Headphones,1,150,03/23/19 05:10,"957 Meadow St, San Francisco, CA 94016" +178575,USB-C Charging Cable,1,11.95,03/06/19 20:42,"425 Meadow St, Boston, MA 02215" +178576,Wired Headphones,1,11.99,03/26/19 07:00,"244 Meadow St, San Francisco, CA 94016" +178577,ThinkPad Laptop,1,999.99,03/29/19 14:25,"657 13th St, San Francisco, CA 94016" +178578,27in 4K Gaming Monitor,1,389.99,03/30/19 14:13,"221 Cedar St, Los Angeles, CA 90001" +178579,27in FHD Monitor,1,149.99,03/07/19 16:40,"119 Jackson St, New York City, NY 10001" +178580,AAA Batteries (4-pack),1,2.99,03/29/19 10:19,"15 Lakeview St, Boston, MA 02215" +178581,iPhone,1,700,03/04/19 19:26,"206 River St, New York City, NY 10001" +178581,Lightning Charging Cable,1,14.95,03/04/19 19:26,"206 River St, New York City, NY 10001" +178582,Bose SoundSport Headphones,1,99.99,03/08/19 08:53,"40 South St, San Francisco, CA 94016" +178583,AAA Batteries (4-pack),1,2.99,03/07/19 11:18,"600 10th St, Los Angeles, CA 90001" +178584,Bose SoundSport Headphones,1,99.99,03/17/19 11:59,"154 Lake St, Austin, TX 73301" +178585,Wired Headphones,1,11.99,03/24/19 04:46,"402 Ridge St, Dallas, TX 75001" +178586,AAA Batteries (4-pack),2,2.99,03/19/19 23:15,"876 Washington St, San Francisco, CA 94016" +178587,Bose SoundSport Headphones,1,99.99,03/11/19 13:07,"875 Park St, Boston, MA 02215" +178588,Flatscreen TV,1,300,03/31/19 16:04,"736 11th St, Los Angeles, CA 90001" +178589,AA Batteries (4-pack),1,3.84,03/02/19 21:58,"541 Ridge St, San Francisco, CA 94016" +178590,Lightning Charging Cable,1,14.95,03/17/19 10:42,"260 Spruce St, San Francisco, CA 94016" +178591,iPhone,1,700,03/06/19 17:41,"956 Willow St, Portland, OR 97035" +178592,AA Batteries (4-pack),1,3.84,03/17/19 16:46,"693 Hill St, San Francisco, CA 94016" +178593,AAA Batteries (4-pack),2,2.99,03/30/19 19:50,"14 Walnut St, San Francisco, CA 94016" +178594,USB-C Charging Cable,1,11.95,03/29/19 17:00,"657 Cherry St, Portland, OR 97035" +178595,27in FHD Monitor,1,149.99,03/03/19 09:13,"949 14th St, San Francisco, CA 94016" +178596,AAA Batteries (4-pack),4,2.99,03/09/19 15:21,"919 Walnut St, New York City, NY 10001" +178597,27in FHD Monitor,1,149.99,03/02/19 19:04,"761 7th St, Austin, TX 73301" +178598,AAA Batteries (4-pack),1,2.99,03/05/19 23:58,"316 Sunset St, New York City, NY 10001" +178599,USB-C Charging Cable,4,11.95,03/14/19 22:19,"909 South St, Austin, TX 73301" +178600,Lightning Charging Cable,1,14.95,03/16/19 23:11,"172 Washington St, Seattle, WA 98101" +178601,Bose SoundSport Headphones,1,99.99,03/15/19 16:47,"11 Forest St, New York City, NY 10001" +178602,AAA Batteries (4-pack),1,2.99,03/17/19 12:16,"460 West St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +178603,Flatscreen TV,1,300,03/21/19 19:54,"46 Cedar St, Portland, OR 97035" +178604,AAA Batteries (4-pack),1,2.99,03/18/19 19:17,"15 9th St, Austin, TX 73301" +178605,AAA Batteries (4-pack),2,2.99,03/18/19 10:18,"473 11th St, Boston, MA 02215" +178606,Lightning Charging Cable,1,14.95,03/09/19 23:20,"665 Highland St, New York City, NY 10001" +178607,Flatscreen TV,1,300,03/18/19 12:32,"53 Lake St, Dallas, TX 75001" +178608,Flatscreen TV,1,300,03/10/19 23:07,"982 11th St, Austin, TX 73301" +178609,Bose SoundSport Headphones,1,99.99,03/08/19 18:41,"631 Elm St, Seattle, WA 98101" +178610,AA Batteries (4-pack),1,3.84,03/04/19 10:12,"441 Spruce St, San Francisco, CA 94016" +178611,Wired Headphones,1,11.99,03/19/19 00:20,"603 Church St, New York City, NY 10001" +178612,Macbook Pro Laptop,1,1700,03/09/19 21:53,"416 Adams St, Boston, MA 02215" +178613,USB-C Charging Cable,2,11.95,03/10/19 17:06,"666 6th St, New York City, NY 10001" +178614,Flatscreen TV,1,300,03/07/19 10:11,"936 Wilson St, Boston, MA 02215" +178615,Lightning Charging Cable,1,14.95,03/19/19 20:04,"41 Chestnut St, Seattle, WA 98101" +178616,Apple Airpods Headphones,1,150,03/16/19 13:59,"691 Ridge St, Boston, MA 02215" +178617,Apple Airpods Headphones,1,150,03/23/19 09:30,"80 Johnson St, Atlanta, GA 30301" +178618,Lightning Charging Cable,1,14.95,03/16/19 15:45,"226 4th St, San Francisco, CA 94016" +178619,ThinkPad Laptop,1,999.99,03/24/19 20:00,"742 Sunset St, San Francisco, CA 94016" +178620,27in 4K Gaming Monitor,1,389.99,03/09/19 16:08,"929 Sunset St, Boston, MA 02215" +178621,AAA Batteries (4-pack),1,2.99,03/25/19 12:59,"583 Church St, Dallas, TX 75001" +178622,Apple Airpods Headphones,1,150,03/28/19 17:09,"309 Washington St, Boston, MA 02215" +178623,iPhone,1,700,03/30/19 17:30,"729 10th St, Boston, MA 02215" +178624,AAA Batteries (4-pack),3,2.99,03/18/19 23:09,"555 Park St, New York City, NY 10001" +178625,34in Ultrawide Monitor,1,379.99,03/10/19 23:49,"981 Hill St, Seattle, WA 98101" +178626,Wired Headphones,1,11.99,03/08/19 14:50,"445 Madison St, New York City, NY 10001" +178627,Apple Airpods Headphones,1,150,03/13/19 15:12,"697 Cedar St, Boston, MA 02215" +178628,Apple Airpods Headphones,1,150,03/08/19 18:26,"415 River St, Boston, MA 02215" +178629,AAA Batteries (4-pack),1,2.99,03/13/19 20:21,"538 Dogwood St, Dallas, TX 75001" +178630,27in FHD Monitor,1,149.99,03/28/19 22:45,"338 Lakeview St, Boston, MA 02215" +178631,Lightning Charging Cable,2,14.95,03/25/19 11:29,"202 Church St, Portland, OR 97035" +178632,Bose SoundSport Headphones,1,99.99,03/05/19 22:14,"887 1st St, San Francisco, CA 94016" +178633,Google Phone,1,600,03/30/19 21:26,"208 Hill St, Boston, MA 02215" +178634,LG Washing Machine,1,600.0,03/27/19 10:11,"102 Lincoln St, Portland, ME 04101" +178635,Bose SoundSport Headphones,1,99.99,03/23/19 00:21,"671 North St, San Francisco, CA 94016" +178636,USB-C Charging Cable,1,11.95,03/28/19 16:53,"270 Hickory St, New York City, NY 10001" +178637,Apple Airpods Headphones,1,150,03/20/19 22:24,"838 13th St, Atlanta, GA 30301" +178638,AA Batteries (4-pack),1,3.84,03/19/19 12:39,"690 Pine St, Los Angeles, CA 90001" +178639,34in Ultrawide Monitor,1,379.99,03/28/19 03:18,"76 Walnut St, Austin, TX 73301" +178640,Apple Airpods Headphones,1,150,03/21/19 12:06,"776 Center St, San Francisco, CA 94016" +178641,Macbook Pro Laptop,1,1700,03/29/19 15:42,"345 Chestnut St, Portland, OR 97035" +178642,Google Phone,1,600,03/02/19 15:09,"858 Lakeview St, San Francisco, CA 94016" +178643,AA Batteries (4-pack),1,3.84,03/22/19 23:57,"708 Main St, San Francisco, CA 94016" +178644,AAA Batteries (4-pack),1,2.99,03/25/19 19:59,"13 11th St, Los Angeles, CA 90001" +178645,Lightning Charging Cable,1,14.95,03/10/19 15:16,"313 Jackson St, Boston, MA 02215" +178646,34in Ultrawide Monitor,1,379.99,03/04/19 18:43,"527 North St, Los Angeles, CA 90001" +178647,Apple Airpods Headphones,1,150,03/10/19 18:30,"650 Lincoln St, Boston, MA 02215" +178648,34in Ultrawide Monitor,1,379.99,03/04/19 11:32,"537 10th St, San Francisco, CA 94016" +178649,AAA Batteries (4-pack),1,2.99,03/21/19 05:34,"494 Forest St, Los Angeles, CA 90001" +178650,AA Batteries (4-pack),1,3.84,03/08/19 15:39,"582 1st St, San Francisco, CA 94016" +178651,Flatscreen TV,1,300,03/22/19 23:16,"370 Spruce St, Seattle, WA 98101" +178652,USB-C Charging Cable,1,11.95,03/04/19 17:01,"657 Elm St, Los Angeles, CA 90001" +178653,Wired Headphones,1,11.99,03/07/19 17:13,"567 Willow St, San Francisco, CA 94016" +178654,Google Phone,1,600,03/23/19 16:34,"71 4th St, Portland, OR 97035" +178654,USB-C Charging Cable,1,11.95,03/23/19 16:34,"71 4th St, Portland, OR 97035" +178655,USB-C Charging Cable,1,11.95,03/30/19 19:09,"266 Center St, Los Angeles, CA 90001" +178656,USB-C Charging Cable,1,11.95,03/26/19 10:25,"231 Elm St, Dallas, TX 75001" +178657,34in Ultrawide Monitor,1,379.99,03/15/19 23:36,"358 West St, San Francisco, CA 94016" +178657,27in 4K Gaming Monitor,1,389.99,03/15/19 23:36,"358 West St, San Francisco, CA 94016" +178658,34in Ultrawide Monitor,1,379.99,03/13/19 19:41,"742 Main St, New York City, NY 10001" +178659,AAA Batteries (4-pack),1,2.99,03/23/19 20:34,"18 Cedar St, San Francisco, CA 94016" +178660,Bose SoundSport Headphones,1,99.99,03/25/19 17:40,"180 Johnson St, Los Angeles, CA 90001" +178661,27in 4K Gaming Monitor,1,389.99,03/23/19 13:50,"268 4th St, Los Angeles, CA 90001" +178662,Lightning Charging Cable,1,14.95,03/15/19 13:55,"164 12th St, Boston, MA 02215" +178663,iPhone,1,700,03/28/19 21:08,"816 Lake St, Seattle, WA 98101" +178663,Apple Airpods Headphones,1,150,03/28/19 21:08,"816 Lake St, Seattle, WA 98101" +178664,Flatscreen TV,1,300,03/13/19 10:44,"348 6th St, Seattle, WA 98101" +178665,AAA Batteries (4-pack),2,2.99,03/23/19 09:03,"197 Johnson St, Los Angeles, CA 90001" +178666,USB-C Charging Cable,1,11.95,03/22/19 22:19,"474 Pine St, Portland, OR 97035" +178667,20in Monitor,1,109.99,03/04/19 10:35,"545 Church St, Los Angeles, CA 90001" +178668,AA Batteries (4-pack),1,3.84,03/13/19 20:25,"475 Elm St, Boston, MA 02215" +178669,USB-C Charging Cable,1,11.95,03/04/19 18:45,"724 River St, San Francisco, CA 94016" +178670,Vareebadd Phone,1,400,03/29/19 20:30,"796 Jackson St, San Francisco, CA 94016" +178670,USB-C Charging Cable,1,11.95,03/29/19 20:30,"796 Jackson St, San Francisco, CA 94016" +178671,AA Batteries (4-pack),1,3.84,03/10/19 23:33,"888 Wilson St, San Francisco, CA 94016" +178672,Apple Airpods Headphones,1,150,03/09/19 19:33,"594 Maple St, New York City, NY 10001" +178673,USB-C Charging Cable,1,11.95,03/11/19 15:35,"272 Walnut St, Los Angeles, CA 90001" +178674,Bose SoundSport Headphones,1,99.99,03/28/19 17:10,"384 Hill St, Los Angeles, CA 90001" +178675,Apple Airpods Headphones,1,150,03/25/19 13:51,"183 Willow St, Los Angeles, CA 90001" +178676,Wired Headphones,1,11.99,03/04/19 21:32,"828 Washington St, Austin, TX 73301" +178677,Lightning Charging Cable,1,14.95,03/25/19 10:52,"96 Lake St, Los Angeles, CA 90001" +178678,AAA Batteries (4-pack),1,2.99,03/12/19 13:10,"131 Wilson St, Los Angeles, CA 90001" +178679,Wired Headphones,1,11.99,03/05/19 18:47,"858 Jackson St, Dallas, TX 75001" +178680,Google Phone,1,600,03/20/19 21:38,"921 West St, San Francisco, CA 94016" +178680,USB-C Charging Cable,1,11.95,03/20/19 21:38,"921 West St, San Francisco, CA 94016" +178681,USB-C Charging Cable,1,11.95,03/18/19 18:50,"986 West St, Atlanta, GA 30301" +178682,27in 4K Gaming Monitor,1,389.99,03/31/19 19:26,"294 Maple St, Los Angeles, CA 90001" +178683,20in Monitor,1,109.99,03/31/19 07:06,"411 Highland St, Austin, TX 73301" +178684,27in 4K Gaming Monitor,1,389.99,03/20/19 11:45,"26 West St, Los Angeles, CA 90001" +178685,34in Ultrawide Monitor,1,379.99,03/21/19 21:52,"384 West St, San Francisco, CA 94016" +178686,AA Batteries (4-pack),1,3.84,03/31/19 14:23,"130 Madison St, Seattle, WA 98101" +178687,Bose SoundSport Headphones,1,99.99,03/11/19 08:52,"844 Spruce St, New York City, NY 10001" +178688,AA Batteries (4-pack),1,3.84,03/04/19 07:43,"947 Main St, San Francisco, CA 94016" +178689,AA Batteries (4-pack),1,3.84,03/10/19 16:40,"405 Chestnut St, Boston, MA 02215" +178690,Bose SoundSport Headphones,1,99.99,03/10/19 15:15,"434 North St, Boston, MA 02215" +178691,AA Batteries (4-pack),1,3.84,03/31/19 14:25,"763 Sunset St, New York City, NY 10001" +178692,Apple Airpods Headphones,1,150,03/25/19 22:19,"194 5th St, San Francisco, CA 94016" +178693,USB-C Charging Cable,1,11.95,03/20/19 17:17,"148 7th St, New York City, NY 10001" +178694,Bose SoundSport Headphones,1,99.99,03/29/19 12:18,"764 Main St, New York City, NY 10001" +178695,Apple Airpods Headphones,1,150,03/04/19 10:35,"396 South St, Los Angeles, CA 90001" +178696,USB-C Charging Cable,1,11.95,03/21/19 18:24,"419 11th St, Portland, OR 97035" +178697,AA Batteries (4-pack),1,3.84,03/10/19 13:12,"5 13th St, Dallas, TX 75001" +178698,Apple Airpods Headphones,1,150,03/26/19 11:25,"317 Jefferson St, Dallas, TX 75001" +178699,Lightning Charging Cable,1,14.95,03/26/19 23:03,"188 Washington St, Austin, TX 73301" +178700,34in Ultrawide Monitor,1,379.99,03/02/19 15:02,"683 Willow St, San Francisco, CA 94016" +178701,Bose SoundSport Headphones,1,99.99,03/15/19 08:25,"247 Wilson St, San Francisco, CA 94016" +178702,Bose SoundSport Headphones,1,99.99,03/07/19 11:20,"383 Walnut St, Boston, MA 02215" +178703,Wired Headphones,1,11.99,03/27/19 06:57,"313 Forest St, Los Angeles, CA 90001" +178704,AA Batteries (4-pack),1,3.84,03/03/19 14:21,"505 Cedar St, Seattle, WA 98101" +178705,AAA Batteries (4-pack),1,2.99,03/27/19 09:49,"604 Sunset St, Atlanta, GA 30301" +178706,Wired Headphones,1,11.99,03/28/19 09:36,"920 Pine St, Los Angeles, CA 90001" +178707,iPhone,1,700,03/27/19 20:15,"405 River St, San Francisco, CA 94016" +178707,Apple Airpods Headphones,1,150,03/27/19 20:15,"405 River St, San Francisco, CA 94016" +178708,AA Batteries (4-pack),1,3.84,03/28/19 17:17,"777 2nd St, Dallas, TX 75001" +178709,Flatscreen TV,1,300,03/04/19 09:15,"596 5th St, San Francisco, CA 94016" +178710,AAA Batteries (4-pack),2,2.99,03/22/19 22:38,"661 Jackson St, San Francisco, CA 94016" +178711,Lightning Charging Cable,1,14.95,03/11/19 16:00,"808 River St, Portland, OR 97035" +178712,20in Monitor,1,109.99,03/20/19 20:38,"513 11th St, Los Angeles, CA 90001" +178713,LG Washing Machine,1,600.0,03/10/19 09:28,"201 Lakeview St, Austin, TX 73301" +178714,AA Batteries (4-pack),1,3.84,03/31/19 10:59,"235 Lake St, New York City, NY 10001" +178715,Bose SoundSport Headphones,1,99.99,03/22/19 20:42,"398 11th St, Los Angeles, CA 90001" +178716,Google Phone,1,600,03/28/19 13:39,"286 Forest St, Atlanta, GA 30301" +178716,USB-C Charging Cable,1,11.95,03/28/19 13:39,"286 Forest St, Atlanta, GA 30301" +178716,Bose SoundSport Headphones,1,99.99,03/28/19 13:39,"286 Forest St, Atlanta, GA 30301" +178717,Lightning Charging Cable,1,14.95,03/30/19 14:55,"74 Main St, New York City, NY 10001" +178718,27in FHD Monitor,1,149.99,03/02/19 10:59,"169 Highland St, Los Angeles, CA 90001" +178719,AA Batteries (4-pack),1,3.84,03/09/19 21:46,"132 Maple St, Boston, MA 02215" +178720,AAA Batteries (4-pack),1,2.99,03/24/19 16:31,"858 Main St, Portland, OR 97035" +178721,iPhone,1,700,03/23/19 18:08,"670 Hickory St, San Francisco, CA 94016" +178721,Wired Headphones,1,11.99,03/23/19 18:08,"670 Hickory St, San Francisco, CA 94016" +178722,Apple Airpods Headphones,1,150,03/27/19 13:00,"136 Jefferson St, New York City, NY 10001" +178723,USB-C Charging Cable,1,11.95,03/22/19 11:20,"892 Elm St, Seattle, WA 98101" +178724,Bose SoundSport Headphones,1,99.99,03/01/19 11:58,"737 10th St, Seattle, WA 98101" +178725,AAA Batteries (4-pack),1,2.99,03/28/19 00:23,"594 5th St, San Francisco, CA 94016" +178726,Vareebadd Phone,1,400,03/04/19 16:17,"677 4th St, San Francisco, CA 94016" +178727,AA Batteries (4-pack),1,3.84,03/27/19 14:04,"220 Church St, San Francisco, CA 94016" +178728,Wired Headphones,1,11.99,03/03/19 17:48,"228 Spruce St, San Francisco, CA 94016" +178729,Apple Airpods Headphones,1,150,03/17/19 10:18,"355 Jefferson St, Boston, MA 02215" +178730,USB-C Charging Cable,1,11.95,03/04/19 11:58,"182 2nd St, Boston, MA 02215" +178731,27in FHD Monitor,1,149.99,03/07/19 15:04,"268 6th St, Portland, OR 97035" +178732,USB-C Charging Cable,1,11.95,03/06/19 18:13,"383 2nd St, Dallas, TX 75001" +178733,Apple Airpods Headphones,1,150,03/14/19 16:34,"659 Dogwood St, Boston, MA 02215" +178734,27in 4K Gaming Monitor,1,389.99,03/06/19 13:48,"50 Meadow St, Dallas, TX 75001" +178735,Apple Airpods Headphones,1,150,03/25/19 21:16,"783 Main St, New York City, NY 10001" +178736,AA Batteries (4-pack),1,3.84,03/15/19 17:03,"516 Lakeview St, Portland, ME 04101" +178737,27in 4K Gaming Monitor,1,389.99,03/30/19 21:34,"651 Forest St, Atlanta, GA 30301" +178738,USB-C Charging Cable,1,11.95,03/21/19 09:54,"508 Chestnut St, San Francisco, CA 94016" +178739,27in 4K Gaming Monitor,1,389.99,03/11/19 20:47,"75 South St, Seattle, WA 98101" +178739,Apple Airpods Headphones,1,150,03/11/19 20:47,"75 South St, Seattle, WA 98101" +178740,iPhone,1,700,03/12/19 09:42,"541 7th St, Los Angeles, CA 90001" +178740,Wired Headphones,1,11.99,03/12/19 09:42,"541 7th St, Los Angeles, CA 90001" +178741,27in FHD Monitor,1,149.99,03/06/19 16:47,"279 Adams St, Seattle, WA 98101" +178742,Wired Headphones,1,11.99,03/19/19 11:07,"856 Maple St, Boston, MA 02215" +178743,AAA Batteries (4-pack),1,2.99,03/10/19 11:26,"99 4th St, Atlanta, GA 30301" +178744,USB-C Charging Cable,1,11.95,03/25/19 14:14,"307 Jefferson St, Los Angeles, CA 90001" +178745,Macbook Pro Laptop,1,1700,03/25/19 15:32,"59 1st St, Boston, MA 02215" +178746,AA Batteries (4-pack),1,3.84,03/28/19 18:55,"200 Walnut St, San Francisco, CA 94016" +178747,AAA Batteries (4-pack),3,2.99,03/06/19 23:13,"812 Sunset St, Los Angeles, CA 90001" +178748,Wired Headphones,2,11.99,03/26/19 19:16,"848 Park St, Boston, MA 02215" +178749,AAA Batteries (4-pack),3,2.99,03/15/19 12:14,"519 West St, New York City, NY 10001" +178750,USB-C Charging Cable,1,11.95,03/12/19 09:42,"89 Chestnut St, Los Angeles, CA 90001" +178751,AAA Batteries (4-pack),3,2.99,03/03/19 19:53,"258 Center St, Boston, MA 02215" +178752,Macbook Pro Laptop,1,1700,03/13/19 20:46,"203 Jefferson St, Boston, MA 02215" +178753,Google Phone,1,600,03/03/19 14:07,"927 Park St, San Francisco, CA 94016" +178754,USB-C Charging Cable,1,11.95,03/27/19 18:42,"970 Center St, Atlanta, GA 30301" +178755,Lightning Charging Cable,1,14.95,03/15/19 14:36,"357 8th St, San Francisco, CA 94016" +178756,Wired Headphones,1,11.99,03/29/19 15:36,"424 Willow St, San Francisco, CA 94016" +178757,Wired Headphones,1,11.99,03/01/19 14:05,"985 Sunset St, San Francisco, CA 94016" +178758,Wired Headphones,2,11.99,03/13/19 21:49,"388 11th St, Atlanta, GA 30301" +178759,iPhone,1,700,03/18/19 22:15,"948 Washington St, Los Angeles, CA 90001" +178760,Wired Headphones,1,11.99,03/10/19 11:15,"887 Chestnut St, San Francisco, CA 94016" +178761,Lightning Charging Cable,1,14.95,03/08/19 12:33,"18 Madison St, Austin, TX 73301" +178762,Lightning Charging Cable,1,14.95,03/12/19 15:25,"507 Hill St, San Francisco, CA 94016" +178763,iPhone,1,700,03/21/19 22:05,"484 Park St, San Francisco, CA 94016" +178764,Apple Airpods Headphones,1,150,03/05/19 14:32,"535 Center St, Dallas, TX 75001" +178765,Lightning Charging Cable,1,14.95,03/05/19 19:13,"849 4th St, San Francisco, CA 94016" +178766,Wired Headphones,1,11.99,03/28/19 19:24,"758 Lakeview St, Austin, TX 73301" +178767,27in 4K Gaming Monitor,1,389.99,03/22/19 16:37,"317 4th St, Boston, MA 02215" +178768,ThinkPad Laptop,1,999.99,03/20/19 11:58,"768 2nd St, Los Angeles, CA 90001" +178769,Wired Headphones,1,11.99,03/13/19 23:00,"877 4th St, Seattle, WA 98101" +178770,27in FHD Monitor,1,149.99,03/29/19 22:34,"906 Main St, Portland, ME 04101" +178771,USB-C Charging Cable,1,11.95,03/10/19 07:57,"406 Adams St, Dallas, TX 75001" +178772,USB-C Charging Cable,1,11.95,03/23/19 17:41,"658 Madison St, Dallas, TX 75001" +178773,Google Phone,1,600,03/25/19 21:20,"256 Adams St, Dallas, TX 75001" +178773,Bose SoundSport Headphones,1,99.99,03/25/19 21:20,"256 Adams St, Dallas, TX 75001" +178774,Flatscreen TV,1,300,03/04/19 18:15,"344 Adams St, Los Angeles, CA 90001" +178775,AA Batteries (4-pack),1,3.84,03/03/19 16:19,"800 Park St, Atlanta, GA 30301" +178776,Lightning Charging Cable,1,14.95,03/30/19 18:15,"133 Sunset St, New York City, NY 10001" +178777,USB-C Charging Cable,3,11.95,03/09/19 07:48,"953 Jackson St, Dallas, TX 75001" +178778,AA Batteries (4-pack),1,3.84,03/05/19 09:13,"412 2nd St, Portland, ME 04101" +178779,Bose SoundSport Headphones,1,99.99,03/25/19 18:50,"719 Forest St, Portland, OR 97035" +178780,AAA Batteries (4-pack),2,2.99,03/14/19 23:34,"44 Lake St, San Francisco, CA 94016" +178781,USB-C Charging Cable,1,11.95,03/14/19 08:19,"635 Hickory St, Portland, OR 97035" +178782,27in 4K Gaming Monitor,1,389.99,03/18/19 10:43,"665 11th St, Atlanta, GA 30301" +178783,ThinkPad Laptop,1,999.99,03/23/19 08:59,"621 Hickory St, San Francisco, CA 94016" +178784,Apple Airpods Headphones,1,150,03/04/19 15:22,"433 Highland St, New York City, NY 10001" +178785,27in 4K Gaming Monitor,1,389.99,03/21/19 20:36,"923 2nd St, New York City, NY 10001" +178786,USB-C Charging Cable,1,11.95,03/04/19 10:17,"711 Hickory St, New York City, NY 10001" +178787,Lightning Charging Cable,1,14.95,03/26/19 22:20,"570 Walnut St, Austin, TX 73301" +178788,AAA Batteries (4-pack),1,2.99,03/24/19 14:40,"398 Cherry St, Los Angeles, CA 90001" +178789,ThinkPad Laptop,1,999.99,03/08/19 14:02,"910 Wilson St, Atlanta, GA 30301" +178790,Lightning Charging Cable,1,14.95,03/22/19 15:34,"634 7th St, San Francisco, CA 94016" +178791,AAA Batteries (4-pack),1,2.99,03/20/19 17:50,"261 Lakeview St, Seattle, WA 98101" +178792,AA Batteries (4-pack),1,3.84,03/27/19 12:19,"795 11th St, Los Angeles, CA 90001" +178793,LG Dryer,1,600.0,03/08/19 22:22,"557 Lake St, Portland, OR 97035" +178794,Bose SoundSport Headphones,1,99.99,03/06/19 17:17,"57 Walnut St, Atlanta, GA 30301" +178795,Wired Headphones,1,11.99,03/22/19 09:20,"860 Center St, Atlanta, GA 30301" +178796,Wired Headphones,1,11.99,03/22/19 14:05,"269 9th St, San Francisco, CA 94016" +178797,Macbook Pro Laptop,1,1700,03/18/19 17:35,"359 Ridge St, Austin, TX 73301" +178798,Bose SoundSport Headphones,1,99.99,03/30/19 12:22,"555 Maple St, San Francisco, CA 94016" +178799,Apple Airpods Headphones,1,150,03/22/19 01:03,"36 Main St, Los Angeles, CA 90001" +178799,AAA Batteries (4-pack),1,2.99,03/22/19 01:03,"36 Main St, Los Angeles, CA 90001" +178800,Bose SoundSport Headphones,1,99.99,03/25/19 17:02,"364 River St, San Francisco, CA 94016" +178801,AAA Batteries (4-pack),2,2.99,03/04/19 17:11,"65 6th St, New York City, NY 10001" +178802,27in 4K Gaming Monitor,1,389.99,03/04/19 20:23,"700 Lake St, Austin, TX 73301" +178803,AAA Batteries (4-pack),2,2.99,03/18/19 16:31,"269 7th St, Atlanta, GA 30301" +178804,AAA Batteries (4-pack),1,2.99,03/05/19 15:08,"317 Cherry St, Dallas, TX 75001" +178805,Wired Headphones,1,11.99,03/09/19 11:59,"308 Forest St, Atlanta, GA 30301" +178806,20in Monitor,1,109.99,03/30/19 12:08,"303 Walnut St, Boston, MA 02215" +178807,Lightning Charging Cable,1,14.95,03/22/19 19:05,"278 Cherry St, Dallas, TX 75001" +178808,Wired Headphones,1,11.99,03/05/19 15:25,"90 7th St, Seattle, WA 98101" +178809,Apple Airpods Headphones,1,150,03/30/19 13:44,"718 West St, New York City, NY 10001" +178810,Wired Headphones,1,11.99,03/21/19 17:51,"379 Church St, Boston, MA 02215" +178811,Lightning Charging Cable,1,14.95,03/19/19 18:38,"775 Lakeview St, Portland, OR 97035" +178812,Lightning Charging Cable,1,14.95,03/19/19 22:22,"473 Johnson St, San Francisco, CA 94016" +178813,27in 4K Gaming Monitor,1,389.99,03/23/19 20:57,"966 13th St, Los Angeles, CA 90001" +178814,ThinkPad Laptop,1,999.99,03/19/19 11:36,"889 Cedar St, Seattle, WA 98101" +178815,Wired Headphones,1,11.99,03/11/19 17:49,"292 9th St, New York City, NY 10001" +178816,AA Batteries (4-pack),1,3.84,03/24/19 14:40,"523 Willow St, Boston, MA 02215" +178817,AA Batteries (4-pack),2,3.84,03/28/19 19:49,"441 Willow St, Los Angeles, CA 90001" +178818,AA Batteries (4-pack),1,3.84,03/30/19 06:57,"883 Jackson St, Los Angeles, CA 90001" +178819,Wired Headphones,1,11.99,03/14/19 11:27,"502 Adams St, Portland, OR 97035" +178820,Lightning Charging Cable,1,14.95,03/08/19 14:52,"723 Elm St, Los Angeles, CA 90001" +178821,AA Batteries (4-pack),2,3.84,03/08/19 10:08,"942 Walnut St, New York City, NY 10001" +178822,USB-C Charging Cable,1,11.95,03/03/19 18:42,"233 Washington St, Dallas, TX 75001" +178823,AA Batteries (4-pack),3,3.84,03/01/19 12:11,"136 6th St, Los Angeles, CA 90001" +178824,Vareebadd Phone,1,400,03/22/19 09:34,"259 Cedar St, San Francisco, CA 94016" +178825,AA Batteries (4-pack),1,3.84,03/28/19 17:41,"321 Pine St, Austin, TX 73301" +178826,USB-C Charging Cable,1,11.95,03/04/19 21:48,"965 10th St, Los Angeles, CA 90001" +178827,Bose SoundSport Headphones,1,99.99,03/03/19 16:37,"635 Madison St, San Francisco, CA 94016" +178828,27in 4K Gaming Monitor,1,389.99,03/26/19 20:25,"892 South St, San Francisco, CA 94016" +178829,Wired Headphones,1,11.99,03/21/19 11:24,"46 Hill St, New York City, NY 10001" +178830,27in FHD Monitor,1,149.99,03/27/19 17:57,"10 12th St, New York City, NY 10001" +178831,34in Ultrawide Monitor,1,379.99,03/17/19 21:12,"656 13th St, Austin, TX 73301" +178832,AA Batteries (4-pack),2,3.84,03/10/19 17:16,"59 4th St, Los Angeles, CA 90001" +178833,USB-C Charging Cable,1,11.95,03/07/19 17:10,"350 14th St, New York City, NY 10001" +178834,Wired Headphones,1,11.99,03/07/19 12:08,"692 13th St, Los Angeles, CA 90001" +178835,AA Batteries (4-pack),1,3.84,03/20/19 12:04,"143 Lincoln St, San Francisco, CA 94016" +178836,iPhone,1,700,03/07/19 13:06,"735 Wilson St, Atlanta, GA 30301" +178837,AAA Batteries (4-pack),1,2.99,03/22/19 00:33,"161 Wilson St, New York City, NY 10001" +178838,Wired Headphones,1,11.99,03/09/19 14:03,"990 11th St, New York City, NY 10001" +178839,Wired Headphones,1,11.99,03/20/19 15:21,"971 Jackson St, New York City, NY 10001" +178840,iPhone,1,700,03/28/19 11:42,"150 10th St, Boston, MA 02215" +178840,Apple Airpods Headphones,1,150,03/28/19 11:42,"150 10th St, Boston, MA 02215" +178841,USB-C Charging Cable,2,11.95,03/29/19 06:57,"910 10th St, San Francisco, CA 94016" +178842,Apple Airpods Headphones,1,150,03/28/19 07:56,"832 Washington St, San Francisco, CA 94016" +178843,Lightning Charging Cable,1,14.95,03/16/19 01:33,"460 1st St, Boston, MA 02215" +178844,iPhone,1,700,03/12/19 13:33,"664 Chestnut St, Los Angeles, CA 90001" +178845,AA Batteries (4-pack),1,3.84,03/10/19 22:27,"20 1st St, Dallas, TX 75001" +178846,Flatscreen TV,1,300,03/13/19 23:52,"261 10th St, New York City, NY 10001" +178847,34in Ultrawide Monitor,1,379.99,03/31/19 23:13,"964 Johnson St, New York City, NY 10001" +178848,Bose SoundSport Headphones,1,99.99,03/26/19 01:24,"209 6th St, Atlanta, GA 30301" +178849,Wired Headphones,1,11.99,03/31/19 14:44,"704 Main St, San Francisco, CA 94016" +178850,AAA Batteries (4-pack),2,2.99,03/31/19 07:00,"773 Forest St, Los Angeles, CA 90001" +178851,AAA Batteries (4-pack),2,2.99,03/08/19 15:17,"757 Lincoln St, Dallas, TX 75001" +178852,Lightning Charging Cable,1,14.95,03/30/19 14:25,"836 14th St, San Francisco, CA 94016" +178853,Wired Headphones,1,11.99,03/01/19 12:08,"369 Sunset St, New York City, NY 10001" +178854,Lightning Charging Cable,2,14.95,03/12/19 14:13,"5 Hickory St, San Francisco, CA 94016" +178855,LG Dryer,1,600.0,03/17/19 09:59,"374 Hickory St, New York City, NY 10001" +178856,Apple Airpods Headphones,1,150,03/11/19 21:03,"875 Ridge St, Seattle, WA 98101" +178857,Bose SoundSport Headphones,1,99.99,03/10/19 15:32,"530 Pine St, Seattle, WA 98101" +178858,AA Batteries (4-pack),1,3.84,03/14/19 10:07,"738 6th St, Boston, MA 02215" +178859,USB-C Charging Cable,1,11.95,03/25/19 22:15,"608 12th St, Dallas, TX 75001" +178860,USB-C Charging Cable,1,11.95,03/03/19 05:22,"898 5th St, Dallas, TX 75001" +178861,Wired Headphones,1,11.99,03/05/19 17:01,"621 11th St, Seattle, WA 98101" +178862,20in Monitor,1,109.99,03/13/19 19:48,"101 Park St, San Francisco, CA 94016" +178863,Apple Airpods Headphones,1,150,03/17/19 19:50,"541 River St, San Francisco, CA 94016" +178864,AA Batteries (4-pack),1,3.84,03/28/19 19:02,"556 West St, Boston, MA 02215" +178865,AA Batteries (4-pack),1,3.84,03/06/19 14:11,"84 Cedar St, San Francisco, CA 94016" +178866,Lightning Charging Cable,1,14.95,03/08/19 14:15,"576 Jefferson St, Dallas, TX 75001" +178867,Apple Airpods Headphones,1,150,03/21/19 22:25,"998 Hickory St, San Francisco, CA 94016" +178868,Wired Headphones,1,11.99,03/19/19 20:57,"6 West St, Los Angeles, CA 90001" +178869,iPhone,1,700,03/02/19 13:18,"734 Dogwood St, New York City, NY 10001" +178870,AAA Batteries (4-pack),2,2.99,03/31/19 20:56,"99 2nd St, Dallas, TX 75001" +178871,Bose SoundSport Headphones,1,99.99,03/17/19 19:05,"755 Forest St, Portland, OR 97035" +178872,USB-C Charging Cable,1,11.95,03/12/19 21:35,"486 Johnson St, Los Angeles, CA 90001" +178873,Bose SoundSport Headphones,1,99.99,03/06/19 14:35,"855 Dogwood St, Boston, MA 02215" +178874,ThinkPad Laptop,1,999.99,03/06/19 00:23,"96 Cedar St, San Francisco, CA 94016" +178875,USB-C Charging Cable,1,11.95,03/08/19 19:44,"339 South St, New York City, NY 10001" +178876,Bose SoundSport Headphones,1,99.99,03/13/19 13:06,"725 West St, Boston, MA 02215" +178877,USB-C Charging Cable,1,11.95,03/07/19 02:15,"735 Hill St, Austin, TX 73301" +178878,Wired Headphones,1,11.99,03/21/19 10:25,"735 Wilson St, New York City, NY 10001" +178879,AAA Batteries (4-pack),1,2.99,03/08/19 23:31,"698 Hill St, San Francisco, CA 94016" +178880,AA Batteries (4-pack),1,3.84,03/27/19 04:54,"549 Maple St, Atlanta, GA 30301" +178881,Lightning Charging Cable,1,14.95,03/08/19 12:05,"554 Adams St, Dallas, TX 75001" +,,,,, +178882,Wired Headphones,1,11.99,03/12/19 14:57,"530 5th St, Los Angeles, CA 90001" +178883,Vareebadd Phone,1,400,03/06/19 10:59,"544 Park St, Austin, TX 73301" +178884,USB-C Charging Cable,1,11.95,03/01/19 19:01,"800 West St, San Francisco, CA 94016" +178885,Apple Airpods Headphones,1,150,03/15/19 20:53,"678 Sunset St, New York City, NY 10001" +178886,27in 4K Gaming Monitor,1,389.99,03/27/19 00:52,"98 Cherry St, Los Angeles, CA 90001" +178887,Bose SoundSport Headphones,1,99.99,03/10/19 21:33,"395 Spruce St, San Francisco, CA 94016" +178888,AA Batteries (4-pack),1,3.84,03/29/19 20:51,"720 Forest St, Boston, MA 02215" +178889,USB-C Charging Cable,1,11.95,03/26/19 19:35,"484 Cherry St, New York City, NY 10001" +178890,USB-C Charging Cable,2,11.95,03/21/19 15:06,"904 Spruce St, New York City, NY 10001" +178891,34in Ultrawide Monitor,1,379.99,03/14/19 15:16,"675 Wilson St, San Francisco, CA 94016" +178892,AAA Batteries (4-pack),2,2.99,03/22/19 19:03,"760 Hickory St, Los Angeles, CA 90001" +178893,Lightning Charging Cable,1,14.95,03/15/19 21:52,"863 Park St, Los Angeles, CA 90001" +178894,Wired Headphones,1,11.99,03/20/19 22:06,"286 West St, Boston, MA 02215" +178895,LG Washing Machine,1,600.0,03/23/19 12:58,"839 Park St, Portland, ME 04101" +178896,27in 4K Gaming Monitor,1,389.99,03/31/19 00:33,"983 Meadow St, Portland, OR 97035" +178897,Wired Headphones,1,11.99,03/05/19 22:43,"45 Church St, Portland, OR 97035" +178898,Apple Airpods Headphones,1,150,03/19/19 10:23,"820 Lake St, Dallas, TX 75001" +178899,Bose SoundSport Headphones,1,99.99,03/14/19 23:03,"854 Jefferson St, Seattle, WA 98101" +178900,27in FHD Monitor,1,149.99,03/17/19 12:02,"111 Hill St, Los Angeles, CA 90001" +178901,AAA Batteries (4-pack),2,2.99,03/07/19 00:15,"592 Walnut St, New York City, NY 10001" +178902,Google Phone,1,600,03/11/19 22:18,"414 Forest St, San Francisco, CA 94016" +178903,Wired Headphones,1,11.99,03/01/19 07:23,"619 10th St, Portland, OR 97035" +178904,34in Ultrawide Monitor,1,379.99,03/19/19 06:39,"136 Pine St, Seattle, WA 98101" +178905,Google Phone,1,600,03/07/19 13:04,"312 2nd St, Los Angeles, CA 90001" +178905,Wired Headphones,1,11.99,03/07/19 13:04,"312 2nd St, Los Angeles, CA 90001" +178905,Wired Headphones,1,11.99,03/07/19 13:04,"312 2nd St, Los Angeles, CA 90001" +178906,Bose SoundSport Headphones,1,99.99,03/27/19 11:07,"939 Highland St, Dallas, TX 75001" +178907,Bose SoundSport Headphones,1,99.99,03/30/19 21:12,"106 Lincoln St, New York City, NY 10001" +178908,Wired Headphones,1,11.99,03/11/19 13:03,"266 12th St, Seattle, WA 98101" +178909,Flatscreen TV,1,300,03/03/19 18:46,"12 Hickory St, Los Angeles, CA 90001" +178910,AAA Batteries (4-pack),2,2.99,03/07/19 09:47,"242 Meadow St, San Francisco, CA 94016" +178911,Bose SoundSport Headphones,1,99.99,03/25/19 12:08,"340 5th St, Atlanta, GA 30301" +178912,AAA Batteries (4-pack),1,2.99,03/17/19 21:21,"708 Jefferson St, Portland, OR 97035" +178913,Lightning Charging Cable,1,14.95,03/26/19 17:33,"147 Lake St, San Francisco, CA 94016" +178913,Vareebadd Phone,1,400,03/26/19 17:33,"147 Lake St, San Francisco, CA 94016" +178914,USB-C Charging Cable,1,11.95,03/16/19 08:33,"131 Lakeview St, Portland, OR 97035" +178915,iPhone,1,700,03/30/19 19:30,"789 Highland St, New York City, NY 10001" +178916,USB-C Charging Cable,1,11.95,03/19/19 19:00,"788 2nd St, New York City, NY 10001" +178917,27in FHD Monitor,1,149.99,03/28/19 19:35,"989 Cherry St, Atlanta, GA 30301" +178918,Lightning Charging Cable,1,14.95,03/13/19 17:18,"656 Center St, Austin, TX 73301" +178919,iPhone,1,700,03/28/19 19:30,"964 Ridge St, San Francisco, CA 94016" +178920,USB-C Charging Cable,1,11.95,03/01/19 17:53,"624 Cherry St, New York City, NY 10001" +178921,AA Batteries (4-pack),3,3.84,03/02/19 19:00,"802 Willow St, San Francisco, CA 94016" +178922,iPhone,1,700,03/19/19 19:20,"444 Maple St, Los Angeles, CA 90001" +178923,LG Washing Machine,1,600.0,03/16/19 12:18,"277 Jackson St, Dallas, TX 75001" +178924,Google Phone,1,600,03/22/19 09:02,"438 Hickory St, Dallas, TX 75001" +178925,Lightning Charging Cable,1,14.95,03/06/19 14:48,"867 Main St, New York City, NY 10001" +178926,Lightning Charging Cable,1,14.95,03/28/19 22:39,"909 Walnut St, San Francisco, CA 94016" +178927,27in 4K Gaming Monitor,1,389.99,03/31/19 19:45,"847 Sunset St, Los Angeles, CA 90001" +178928,USB-C Charging Cable,1,11.95,03/28/19 11:11,"122 Ridge St, Los Angeles, CA 90001" +178929,USB-C Charging Cable,1,11.95,03/28/19 14:18,"880 Hickory St, San Francisco, CA 94016" +178930,AA Batteries (4-pack),2,3.84,03/11/19 12:29,"839 6th St, Portland, ME 04101" +178931,Wired Headphones,1,11.99,03/19/19 17:26,"701 South St, San Francisco, CA 94016" +178932,Lightning Charging Cable,1,14.95,03/17/19 11:47,"852 West St, Atlanta, GA 30301" +,,,,, +178933,34in Ultrawide Monitor,1,379.99,03/09/19 09:14,"375 River St, Dallas, TX 75001" +178934,Wired Headphones,1,11.99,03/09/19 18:01,"360 Pine St, Seattle, WA 98101" +178935,AAA Batteries (4-pack),1,2.99,03/09/19 21:29,"219 Highland St, Atlanta, GA 30301" +178936,Flatscreen TV,1,300,03/02/19 11:46,"402 Chestnut St, San Francisco, CA 94016" +178937,ThinkPad Laptop,1,999.99,03/31/19 12:10,"524 Cedar St, Portland, OR 97035" +178938,20in Monitor,1,109.99,03/03/19 23:42,"550 Forest St, New York City, NY 10001" +178939,27in 4K Gaming Monitor,1,389.99,03/30/19 21:07,"774 12th St, Boston, MA 02215" +178940,USB-C Charging Cable,2,11.95,03/04/19 20:56,"517 10th St, Los Angeles, CA 90001" +178941,34in Ultrawide Monitor,1,379.99,03/02/19 18:26,"284 Sunset St, Boston, MA 02215" +178942,Lightning Charging Cable,1,14.95,03/19/19 13:49,"103 Willow St, Seattle, WA 98101" +178942,AA Batteries (4-pack),2,3.84,03/19/19 13:49,"103 Willow St, Seattle, WA 98101" +178943,AAA Batteries (4-pack),3,2.99,03/26/19 02:34,"510 14th St, Los Angeles, CA 90001" +178944,AAA Batteries (4-pack),1,2.99,03/02/19 11:31,"469 13th St, Boston, MA 02215" +178945,Wired Headphones,1,11.99,03/11/19 22:27,"884 Meadow St, New York City, NY 10001" +178946,Apple Airpods Headphones,1,150,03/16/19 04:12,"131 12th St, San Francisco, CA 94016" +178947,Lightning Charging Cable,1,14.95,03/02/19 15:39,"782 Hill St, Atlanta, GA 30301" +178948,27in FHD Monitor,1,149.99,03/12/19 12:28,"691 West St, San Francisco, CA 94016" +178949,27in 4K Gaming Monitor,1,389.99,03/26/19 17:16,"793 Pine St, Boston, MA 02215" +178950,Macbook Pro Laptop,1,1700,03/04/19 10:59,"393 Lakeview St, Los Angeles, CA 90001" +178951,27in FHD Monitor,1,149.99,03/26/19 12:24,"467 Main St, San Francisco, CA 94016" +178952,AA Batteries (4-pack),1,3.84,03/12/19 18:00,"596 Meadow St, New York City, NY 10001" +178953,LG Dryer,1,600.0,03/14/19 13:13,"575 13th St, Los Angeles, CA 90001" +178953,AA Batteries (4-pack),1,3.84,03/14/19 13:13,"575 13th St, Los Angeles, CA 90001" +178954,USB-C Charging Cable,1,11.95,03/19/19 13:19,"362 Hill St, San Francisco, CA 94016" +178955,AA Batteries (4-pack),2,3.84,03/07/19 21:45,"365 Dogwood St, Boston, MA 02215" +178956,iPhone,1,700,03/21/19 12:30,"291 Main St, Los Angeles, CA 90001" +178956,Wired Headphones,1,11.99,03/21/19 12:30,"291 Main St, Los Angeles, CA 90001" +178957,27in FHD Monitor,1,149.99,03/12/19 19:53,"702 Walnut St, San Francisco, CA 94016" +178958,AA Batteries (4-pack),3,3.84,03/21/19 15:08,"916 Cherry St, New York City, NY 10001" +178959,Lightning Charging Cable,1,14.95,03/11/19 21:00,"388 Pine St, Boston, MA 02215" +178960,Apple Airpods Headphones,1,150,03/12/19 17:08,"310 Spruce St, New York City, NY 10001" +178961,27in FHD Monitor,1,149.99,03/25/19 18:14,"123 Forest St, Austin, TX 73301" +178962,Lightning Charging Cable,1,14.95,03/26/19 06:10,"308 Pine St, Dallas, TX 75001" +178963,Bose SoundSport Headphones,1,99.99,03/26/19 21:01,"819 13th St, Seattle, WA 98101" +178964,Google Phone,1,600,03/04/19 19:05,"864 Lake St, Austin, TX 73301" +178965,Bose SoundSport Headphones,1,99.99,03/27/19 19:46,"434 Lakeview St, Austin, TX 73301" +178966,iPhone,1,700,03/14/19 14:33,"34 5th St, San Francisco, CA 94016" +178966,Lightning Charging Cable,1,14.95,03/14/19 14:33,"34 5th St, San Francisco, CA 94016" +178966,Apple Airpods Headphones,1,150,03/14/19 14:33,"34 5th St, San Francisco, CA 94016" +178967,27in FHD Monitor,1,149.99,03/31/19 01:44,"735 Lincoln St, San Francisco, CA 94016" +178968,27in 4K Gaming Monitor,1,389.99,03/31/19 01:29,"706 West St, San Francisco, CA 94016" +178969,USB-C Charging Cable,1,11.95,03/13/19 10:47,"929 West St, San Francisco, CA 94016" +178970,USB-C Charging Cable,1,11.95,03/12/19 19:12,"979 Cherry St, Los Angeles, CA 90001" +178971,AA Batteries (4-pack),1,3.84,03/24/19 06:33,"969 Cherry St, New York City, NY 10001" +178972,AAA Batteries (4-pack),1,2.99,03/15/19 12:28,"920 10th St, Dallas, TX 75001" +178973,Flatscreen TV,1,300,03/07/19 00:38,"228 7th St, San Francisco, CA 94016" +178974,Apple Airpods Headphones,1,150,03/03/19 15:18,"840 Meadow St, San Francisco, CA 94016" +178975,iPhone,1,700,03/27/19 12:40,"541 Lakeview St, Boston, MA 02215" +178975,Lightning Charging Cable,1,14.95,03/27/19 12:40,"541 Lakeview St, Boston, MA 02215" +178976,Apple Airpods Headphones,1,150,03/09/19 16:25,"351 Walnut St, San Francisco, CA 94016" +178977,Lightning Charging Cable,1,14.95,03/15/19 12:25,"155 11th St, San Francisco, CA 94016" +178978,AA Batteries (4-pack),2,3.84,03/25/19 13:01,"909 4th St, Portland, ME 04101" +178979,Bose SoundSport Headphones,1,99.99,03/31/19 00:58,"934 10th St, Los Angeles, CA 90001" +178980,27in FHD Monitor,1,149.99,03/08/19 18:16,"997 12th St, New York City, NY 10001" +178981,USB-C Charging Cable,1,11.95,03/09/19 16:21,"923 Lincoln St, Atlanta, GA 30301" +178982,ThinkPad Laptop,1,999.99,03/22/19 20:00,"167 Willow St, Seattle, WA 98101" +178983,Lightning Charging Cable,1,14.95,03/07/19 09:05,"257 14th St, Los Angeles, CA 90001" +178984,Bose SoundSport Headphones,1,99.99,03/19/19 12:50,"615 Lakeview St, Seattle, WA 98101" +178985,27in FHD Monitor,1,149.99,03/11/19 18:07,"266 14th St, Los Angeles, CA 90001" +178986,Lightning Charging Cable,1,14.95,03/21/19 14:39,"577 Spruce St, San Francisco, CA 94016" +178987,AA Batteries (4-pack),1,3.84,03/18/19 19:56,"778 Maple St, New York City, NY 10001" +178988,Apple Airpods Headphones,1,150,03/19/19 19:37,"533 Dogwood St, Dallas, TX 75001" +178989,Lightning Charging Cable,1,14.95,03/15/19 12:33,"279 Pine St, Portland, OR 97035" +178990,ThinkPad Laptop,1,999.99,03/07/19 15:47,"746 1st St, New York City, NY 10001" +178991,Bose SoundSport Headphones,1,99.99,03/30/19 15:30,"314 South St, Los Angeles, CA 90001" +178992,iPhone,1,700,03/03/19 11:31,"745 Spruce St, Dallas, TX 75001" +178993,Wired Headphones,1,11.99,03/31/19 21:17,"301 West St, Boston, MA 02215" +178994,Lightning Charging Cable,1,14.95,03/26/19 13:57,"840 Cedar St, Dallas, TX 75001" +178995,iPhone,1,700,03/02/19 23:26,"215 Ridge St, Austin, TX 73301" +178996,USB-C Charging Cable,1,11.95,03/10/19 14:40,"811 Center St, San Francisco, CA 94016" +178997,Apple Airpods Headphones,1,150,03/23/19 09:25,"733 12th St, San Francisco, CA 94016" +178998,AA Batteries (4-pack),1,3.84,03/01/19 13:58,"516 Jackson St, Atlanta, GA 30301" +178999,Flatscreen TV,1,300,03/25/19 21:13,"401 Church St, Seattle, WA 98101" +179000,Apple Airpods Headphones,1,150,03/11/19 10:04,"531 11th St, New York City, NY 10001" +179001,Lightning Charging Cable,1,14.95,03/19/19 20:18,"654 West St, Atlanta, GA 30301" +179002,Wired Headphones,1,11.99,03/25/19 15:10,"239 Maple St, San Francisco, CA 94016" +179003,Macbook Pro Laptop,1,1700,03/29/19 10:22,"469 Park St, Austin, TX 73301" +179004,Wired Headphones,1,11.99,03/03/19 18:25,"403 Hill St, New York City, NY 10001" +179005,Lightning Charging Cable,1,14.95,03/09/19 19:21,"240 Main St, San Francisco, CA 94016" +179006,27in FHD Monitor,1,149.99,03/13/19 16:04,"744 Cedar St, San Francisco, CA 94016" +179007,ThinkPad Laptop,1,999.99,03/14/19 17:25,"315 Cedar St, San Francisco, CA 94016" +179008,Bose SoundSport Headphones,1,99.99,03/07/19 21:30,"688 Main St, Los Angeles, CA 90001" +179009,Apple Airpods Headphones,1,150,03/09/19 06:44,"540 11th St, New York City, NY 10001" +179010,iPhone,1,700,03/25/19 08:17,"94 8th St, San Francisco, CA 94016" +179011,AAA Batteries (4-pack),3,2.99,03/19/19 22:36,"843 Hickory St, Boston, MA 02215" +179012,AA Batteries (4-pack),1,3.84,03/28/19 11:39,"973 Adams St, Los Angeles, CA 90001" +179013,Lightning Charging Cable,1,14.95,03/08/19 22:19,"4 Meadow St, Austin, TX 73301" +179014,20in Monitor,1,109.99,03/08/19 21:26,"395 Chestnut St, Atlanta, GA 30301" +179015,Apple Airpods Headphones,1,150,03/25/19 22:05,"923 Highland St, Austin, TX 73301" +179016,Macbook Pro Laptop,1,1700,03/25/19 11:08,"457 11th St, Los Angeles, CA 90001" +179017,Bose SoundSport Headphones,1,99.99,03/03/19 23:07,"895 River St, San Francisco, CA 94016" +179018,USB-C Charging Cable,1,11.95,03/26/19 16:47,"168 8th St, Boston, MA 02215" +179019,34in Ultrawide Monitor,1,379.99,03/17/19 23:11,"293 Jackson St, Portland, OR 97035" +179020,Macbook Pro Laptop,1,1700,03/19/19 15:49,"373 Hickory St, Seattle, WA 98101" +179021,Lightning Charging Cable,1,14.95,03/06/19 08:20,"115 10th St, Portland, ME 04101" +179022,Apple Airpods Headphones,2,150,03/25/19 12:33,"530 Dogwood St, Atlanta, GA 30301" +179023,AAA Batteries (4-pack),1,2.99,03/07/19 16:29,"202 Forest St, Los Angeles, CA 90001" +179024,Wired Headphones,1,11.99,03/03/19 12:31,"681 Cedar St, San Francisco, CA 94016" +179025,Google Phone,1,600,03/08/19 02:36,"589 2nd St, San Francisco, CA 94016" +179026,Lightning Charging Cable,1,14.95,03/28/19 09:29,"229 Adams St, Boston, MA 02215" +179027,ThinkPad Laptop,1,999.99,03/28/19 20:28,"259 Lincoln St, San Francisco, CA 94016" +179028,LG Washing Machine,1,600.0,03/24/19 13:43,"52 Church St, Portland, OR 97035" +179029,27in 4K Gaming Monitor,1,389.99,03/29/19 06:59,"882 2nd St, New York City, NY 10001" +179030,USB-C Charging Cable,1,11.95,03/10/19 21:43,"752 Lake St, Dallas, TX 75001" +179031,AAA Batteries (4-pack),1,2.99,03/11/19 16:54,"466 Madison St, San Francisco, CA 94016" +179032,USB-C Charging Cable,1,11.95,03/26/19 23:38,"119 Lake St, Dallas, TX 75001" +179033,AAA Batteries (4-pack),2,2.99,03/22/19 07:48,"979 11th St, San Francisco, CA 94016" +179034,Wired Headphones,1,11.99,03/01/19 09:19,"293 11th St, San Francisco, CA 94016" +179035,27in FHD Monitor,1,149.99,03/06/19 06:54,"98 7th St, San Francisco, CA 94016" +179036,AAA Batteries (4-pack),2,2.99,03/13/19 22:34,"635 Dogwood St, San Francisco, CA 94016" +179037,AA Batteries (4-pack),2,3.84,03/10/19 16:50,"387 Cherry St, Portland, OR 97035" +179038,Bose SoundSport Headphones,1,99.99,03/22/19 21:39,"304 Jefferson St, San Francisco, CA 94016" +179039,iPhone,1,700,03/16/19 18:47,"782 10th St, New York City, NY 10001" +179040,27in 4K Gaming Monitor,1,389.99,03/18/19 16:39,"472 Jefferson St, San Francisco, CA 94016" +179041,Wired Headphones,1,11.99,03/18/19 18:06,"644 Washington St, New York City, NY 10001" +179042,USB-C Charging Cable,1,11.95,03/01/19 08:00,"661 Hickory St, New York City, NY 10001" +179043,USB-C Charging Cable,1,11.95,03/19/19 14:46,"510 Willow St, Austin, TX 73301" +179044,Wired Headphones,1,11.99,03/14/19 17:39,"872 Main St, Atlanta, GA 30301" +179045,Wired Headphones,1,11.99,03/16/19 17:00,"63 12th St, Los Angeles, CA 90001" +179046,Lightning Charging Cable,1,14.95,03/03/19 10:39,"208 Wilson St, Seattle, WA 98101" +179047,AAA Batteries (4-pack),2,2.99,03/19/19 15:49,"31 Wilson St, Portland, OR 97035" +179048,Wired Headphones,1,11.99,03/15/19 05:29,"275 13th St, San Francisco, CA 94016" +179049,Google Phone,1,600,03/10/19 18:30,"351 Jefferson St, Austin, TX 73301" +179050,AA Batteries (4-pack),1,3.84,03/30/19 18:28,"629 12th St, Portland, OR 97035" +179051,Lightning Charging Cable,1,14.95,03/30/19 13:38,"820 Center St, Austin, TX 73301" +179052,Apple Airpods Headphones,1,150,03/01/19 19:16,"882 Center St, Dallas, TX 75001" +179053,USB-C Charging Cable,1,11.95,03/05/19 00:33,"634 Maple St, New York City, NY 10001" +179054,ThinkPad Laptop,1,999.99,03/06/19 18:53,"732 Madison St, Portland, ME 04101" +179055,27in FHD Monitor,1,149.99,03/20/19 21:47,"628 Meadow St, Los Angeles, CA 90001" +179056,USB-C Charging Cable,1,11.95,03/28/19 11:48,"327 13th St, New York City, NY 10001" +179057,AA Batteries (4-pack),2,3.84,03/12/19 09:31,"672 12th St, Dallas, TX 75001" +179058,ThinkPad Laptop,1,999.99,03/13/19 14:38,"792 North St, Dallas, TX 75001" +179059,27in 4K Gaming Monitor,1,389.99,03/11/19 11:46,"107 13th St, Atlanta, GA 30301" +179060,27in FHD Monitor,1,149.99,03/07/19 13:24,"112 Cherry St, Los Angeles, CA 90001" +179061,AA Batteries (4-pack),1,3.84,03/13/19 12:49,"976 Maple St, San Francisco, CA 94016" +179062,20in Monitor,1,109.99,03/29/19 18:02,"989 11th St, San Francisco, CA 94016" +179063,USB-C Charging Cable,1,11.95,03/31/19 17:02,"869 8th St, Dallas, TX 75001" +179064,Bose SoundSport Headphones,1,99.99,03/08/19 14:03,"821 Lincoln St, Atlanta, GA 30301" +179065,Apple Airpods Headphones,1,150,03/04/19 19:52,"697 Park St, Boston, MA 02215" +179066,AA Batteries (4-pack),1,3.84,03/11/19 11:55,"730 South St, Seattle, WA 98101" +179067,Apple Airpods Headphones,1,150,03/25/19 18:05,"620 5th St, San Francisco, CA 94016" +179068,USB-C Charging Cable,1,11.95,03/06/19 23:39,"669 12th St, Boston, MA 02215" +179069,AA Batteries (4-pack),1,3.84,03/28/19 19:38,"513 5th St, Boston, MA 02215" +179070,Lightning Charging Cable,1,14.95,03/11/19 15:10,"391 9th St, Portland, OR 97035" +179071,Macbook Pro Laptop,1,1700,03/09/19 18:56,"897 Main St, New York City, NY 10001" +179072,Flatscreen TV,1,300,03/27/19 17:24,"245 River St, Portland, OR 97035" +179073,Wired Headphones,1,11.99,03/21/19 17:59,"652 Lake St, Los Angeles, CA 90001" +179074,AAA Batteries (4-pack),1,2.99,03/14/19 13:29,"360 Dogwood St, Los Angeles, CA 90001" +179075,AAA Batteries (4-pack),1,2.99,03/18/19 05:03,"342 Pine St, New York City, NY 10001" +179076,27in 4K Gaming Monitor,1,389.99,03/11/19 19:48,"201 Pine St, Seattle, WA 98101" +179077,USB-C Charging Cable,1,11.95,03/24/19 12:44,"486 Ridge St, Boston, MA 02215" +179078,34in Ultrawide Monitor,1,379.99,03/18/19 16:31,"730 4th St, San Francisco, CA 94016" +179079,Wired Headphones,1,11.99,03/30/19 11:10,"303 14th St, San Francisco, CA 94016" +179080,Lightning Charging Cable,1,14.95,03/15/19 15:08,"23 River St, Atlanta, GA 30301" +179081,34in Ultrawide Monitor,1,379.99,03/15/19 20:26,"1 Elm St, San Francisco, CA 94016" +179082,Wired Headphones,1,11.99,03/20/19 21:20,"144 Church St, Los Angeles, CA 90001" +179083,AA Batteries (4-pack),1,3.84,03/01/19 20:09,"908 Sunset St, Seattle, WA 98101" +179084,Bose SoundSport Headphones,1,99.99,03/11/19 09:47,"602 Lake St, Boston, MA 02215" +179085,27in 4K Gaming Monitor,1,389.99,03/23/19 22:05,"354 7th St, New York City, NY 10001" +179086,Apple Airpods Headphones,1,150,03/24/19 18:30,"618 6th St, Los Angeles, CA 90001" +179087,AAA Batteries (4-pack),3,2.99,03/26/19 14:44,"469 Willow St, Seattle, WA 98101" +179088,iPhone,1,700,03/31/19 15:11,"97 Jefferson St, San Francisco, CA 94016" +179088,Lightning Charging Cable,1,14.95,03/31/19 15:11,"97 Jefferson St, San Francisco, CA 94016" +179089,34in Ultrawide Monitor,1,379.99,03/22/19 12:08,"387 North St, Seattle, WA 98101" +179090,Lightning Charging Cable,1,14.95,03/08/19 11:01,"7 South St, Atlanta, GA 30301" +179091,Lightning Charging Cable,1,14.95,03/10/19 17:54,"375 Hickory St, San Francisco, CA 94016" +179092,iPhone,1,700,03/25/19 13:12,"962 Washington St, Seattle, WA 98101" +179093,USB-C Charging Cable,1,11.95,03/28/19 17:45,"706 Highland St, Portland, ME 04101" +179094,Lightning Charging Cable,1,14.95,03/23/19 13:23,"409 Cedar St, Seattle, WA 98101" +179095,Bose SoundSport Headphones,1,99.99,03/31/19 20:47,"767 North St, Austin, TX 73301" +179096,AAA Batteries (4-pack),2,2.99,03/05/19 17:12,"842 Jackson St, New York City, NY 10001" +179097,Bose SoundSport Headphones,1,99.99,03/31/19 18:04,"415 South St, New York City, NY 10001" +179098,AAA Batteries (4-pack),2,2.99,03/20/19 12:24,"349 North St, Portland, OR 97035" +179099,Google Phone,1,600,03/02/19 08:27,"560 13th St, New York City, NY 10001" +179100,USB-C Charging Cable,2,11.95,03/16/19 09:35,"481 Cedar St, San Francisco, CA 94016" +179101,Wired Headphones,1,11.99,03/05/19 11:35,"284 River St, Atlanta, GA 30301" +179102,34in Ultrawide Monitor,1,379.99,03/21/19 12:57,"270 Highland St, San Francisco, CA 94016" +179103,27in FHD Monitor,1,149.99,03/28/19 22:26,"474 5th St, Boston, MA 02215" +179104,Vareebadd Phone,1,400,03/24/19 14:49,"684 Walnut St, Los Angeles, CA 90001" +179105,AAA Batteries (4-pack),1,2.99,03/13/19 20:35,"250 14th St, Austin, TX 73301" +179106,Wired Headphones,1,11.99,03/30/19 21:39,"790 7th St, Dallas, TX 75001" +179107,USB-C Charging Cable,1,11.95,03/04/19 19:39,"152 Chestnut St, Los Angeles, CA 90001" +179108,Apple Airpods Headphones,1,150,03/27/19 20:54,"845 Hill St, Atlanta, GA 30301" +179109,Vareebadd Phone,1,400,03/11/19 16:08,"44 Jackson St, Los Angeles, CA 90001" +179110,AA Batteries (4-pack),1,3.84,03/06/19 09:42,"727 Meadow St, Boston, MA 02215" +179111,USB-C Charging Cable,1,11.95,03/30/19 22:32,"333 8th St, San Francisco, CA 94016" +179112,AAA Batteries (4-pack),1,2.99,03/03/19 09:13,"899 1st St, Los Angeles, CA 90001" +179113,Wired Headphones,1,11.99,03/16/19 08:21,"955 4th St, Los Angeles, CA 90001" +179114,20in Monitor,1,109.99,03/24/19 22:49,"884 Lincoln St, Boston, MA 02215" +179115,Wired Headphones,1,11.99,03/03/19 12:14,"947 Willow St, New York City, NY 10001" +179116,ThinkPad Laptop,1,999.99,03/26/19 19:07,"122 Ridge St, Los Angeles, CA 90001" +179117,USB-C Charging Cable,1,11.95,03/16/19 20:59,"170 12th St, Dallas, TX 75001" +179118,Vareebadd Phone,1,400,03/25/19 11:33,"917 10th St, Los Angeles, CA 90001" +179119,Flatscreen TV,1,300,03/20/19 22:08,"363 11th St, Atlanta, GA 30301" +179120,USB-C Charging Cable,1,11.95,03/10/19 17:14,"942 Maple St, San Francisco, CA 94016" +179121,USB-C Charging Cable,1,11.95,03/01/19 22:50,"185 Pine St, Seattle, WA 98101" +179122,34in Ultrawide Monitor,1,379.99,03/11/19 19:05,"260 Willow St, San Francisco, CA 94016" +179123,Flatscreen TV,1,300,03/23/19 16:11,"603 Lakeview St, Seattle, WA 98101" +179124,AA Batteries (4-pack),2,3.84,03/18/19 14:01,"2 2nd St, Los Angeles, CA 90001" +179125,Apple Airpods Headphones,1,150,03/18/19 12:28,"627 Adams St, Portland, OR 97035" +179126,Vareebadd Phone,1,400,03/16/19 18:51,"506 Washington St, Los Angeles, CA 90001" +179127,AA Batteries (4-pack),3,3.84,03/31/19 18:28,"11 14th St, Austin, TX 73301" +179128,Bose SoundSport Headphones,1,99.99,03/03/19 17:42,"389 Pine St, Portland, ME 04101" +179129,Lightning Charging Cable,1,14.95,03/22/19 18:36,"761 7th St, New York City, NY 10001" +179130,iPhone,1,700,03/11/19 23:01,"547 4th St, San Francisco, CA 94016" +179131,Wired Headphones,1,11.99,03/05/19 12:04,"494 Main St, New York City, NY 10001" +179132,Lightning Charging Cable,1,14.95,03/31/19 15:27,"655 Lakeview St, Dallas, TX 75001" +179133,Bose SoundSport Headphones,1,99.99,03/14/19 13:28,"168 5th St, Los Angeles, CA 90001" +179134,AA Batteries (4-pack),1,3.84,03/01/19 20:26,"286 Forest St, Atlanta, GA 30301" +179135,AA Batteries (4-pack),2,3.84,03/18/19 12:45,"624 Meadow St, San Francisco, CA 94016" +179136,Lightning Charging Cable,1,14.95,03/18/19 02:09,"568 West St, New York City, NY 10001" +179137,27in 4K Gaming Monitor,1,389.99,03/15/19 18:43,"553 13th St, Austin, TX 73301" +179138,AA Batteries (4-pack),1,3.84,03/05/19 18:24,"875 Adams St, Portland, OR 97035" +179139,LG Washing Machine,1,600.0,03/10/19 16:50,"301 Jackson St, Boston, MA 02215" +179140,Wired Headphones,1,11.99,03/18/19 12:22,"122 Washington St, Dallas, TX 75001" +179141,27in FHD Monitor,1,149.99,03/04/19 08:47,"988 4th St, Portland, OR 97035" +179142,Bose SoundSport Headphones,1,99.99,03/10/19 10:57,"586 Wilson St, New York City, NY 10001" +179143,Apple Airpods Headphones,1,150,03/31/19 12:09,"444 Maple St, Dallas, TX 75001" +179144,USB-C Charging Cable,1,11.95,03/13/19 18:19,"403 Church St, Los Angeles, CA 90001" +179145,Apple Airpods Headphones,1,150,03/02/19 09:45,"717 Church St, San Francisco, CA 94016" +179146,ThinkPad Laptop,1,999.99,03/18/19 10:54,"551 Washington St, New York City, NY 10001" +179147,AAA Batteries (4-pack),1,2.99,03/07/19 13:47,"716 Ridge St, Portland, OR 97035" +179148,AA Batteries (4-pack),2,3.84,03/02/19 22:55,"841 Sunset St, Los Angeles, CA 90001" +179149,AA Batteries (4-pack),1,3.84,03/09/19 17:53,"556 Pine St, Seattle, WA 98101" +179150,AAA Batteries (4-pack),1,2.99,03/03/19 15:38,"978 Lakeview St, New York City, NY 10001" +179151,USB-C Charging Cable,1,11.95,03/26/19 07:56,"772 North St, San Francisco, CA 94016" +179152,AAA Batteries (4-pack),1,2.99,03/05/19 21:34,"422 Hill St, Portland, OR 97035" +179153,34in Ultrawide Monitor,1,379.99,03/27/19 19:35,"294 Maple St, Portland, OR 97035" +179154,Flatscreen TV,2,300,03/28/19 10:09,"851 Dogwood St, San Francisco, CA 94016" +179155,AA Batteries (4-pack),1,3.84,03/15/19 23:52,"800 Center St, Austin, TX 73301" +179156,27in FHD Monitor,1,149.99,03/25/19 01:55,"831 10th St, Boston, MA 02215" +179157,ThinkPad Laptop,1,999.99,03/07/19 22:20,"591 Walnut St, Boston, MA 02215" +179158,USB-C Charging Cable,1,11.95,03/30/19 12:16,"605 Highland St, Boston, MA 02215" +179159,Flatscreen TV,1,300,03/09/19 02:19,"770 8th St, San Francisco, CA 94016" +179160,Bose SoundSport Headphones,1,99.99,03/16/19 17:59,"740 Park St, Dallas, TX 75001" +179161,27in FHD Monitor,1,149.99,03/25/19 21:40,"397 Johnson St, Seattle, WA 98101" +179162,Lightning Charging Cable,1,14.95,03/01/19 18:38,"619 7th St, Atlanta, GA 30301" +179163,AAA Batteries (4-pack),2,2.99,03/16/19 07:16,"628 4th St, New York City, NY 10001" +179164,AAA Batteries (4-pack),1,2.99,03/04/19 18:45,"502 Forest St, Los Angeles, CA 90001" +179165,Lightning Charging Cable,1,14.95,03/26/19 20:11,"565 Washington St, Austin, TX 73301" +179166,AAA Batteries (4-pack),1,2.99,03/18/19 01:24,"84 Chestnut St, Los Angeles, CA 90001" +179167,Apple Airpods Headphones,1,150,03/10/19 12:12,"678 Spruce St, San Francisco, CA 94016" +179168,Lightning Charging Cable,1,14.95,03/24/19 16:41,"740 Willow St, San Francisco, CA 94016" +179169,Apple Airpods Headphones,1,150,03/17/19 20:07,"14 Johnson St, San Francisco, CA 94016" +179170,LG Dryer,1,600.0,03/19/19 15:38,"416 Lake St, San Francisco, CA 94016" +179171,AAA Batteries (4-pack),1,2.99,03/23/19 18:28,"432 Park St, Los Angeles, CA 90001" +179172,Apple Airpods Headphones,1,150,03/28/19 00:59,"501 South St, San Francisco, CA 94016" +179173,Lightning Charging Cable,1,14.95,03/28/19 13:30,"352 Lakeview St, Dallas, TX 75001" +179174,Google Phone,1,600,03/25/19 14:58,"582 Ridge St, Los Angeles, CA 90001" +179174,Wired Headphones,1,11.99,03/25/19 14:58,"582 Ridge St, Los Angeles, CA 90001" +179175,LG Washing Machine,1,600.0,03/12/19 11:28,"94 Hill St, New York City, NY 10001" +179176,AAA Batteries (4-pack),1,2.99,03/30/19 17:46,"379 5th St, San Francisco, CA 94016" +179177,Apple Airpods Headphones,1,150,03/04/19 12:31,"780 Hickory St, San Francisco, CA 94016" +179178,iPhone,1,700,03/04/19 22:04,"273 Dogwood St, San Francisco, CA 94016" +179179,USB-C Charging Cable,1,11.95,03/31/19 22:39,"351 7th St, San Francisco, CA 94016" +179179,AA Batteries (4-pack),5,3.84,03/31/19 22:39,"351 7th St, San Francisco, CA 94016" +179180,AA Batteries (4-pack),2,3.84,03/10/19 20:42,"458 Forest St, Atlanta, GA 30301" +179181,Lightning Charging Cable,1,14.95,03/11/19 12:09,"831 Park St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +179182,AAA Batteries (4-pack),1,2.99,03/13/19 12:02,"734 South St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +179183,USB-C Charging Cable,1,11.95,03/10/19 13:17,"794 10th St, Boston, MA 02215" +179184,Lightning Charging Cable,1,14.95,03/11/19 10:39,"901 Willow St, Austin, TX 73301" +179185,Apple Airpods Headphones,1,150,03/08/19 11:55,"307 12th St, Los Angeles, CA 90001" +179186,Wired Headphones,1,11.99,03/20/19 08:11,"142 Cherry St, New York City, NY 10001" +179187,Lightning Charging Cable,1,14.95,03/09/19 08:33,"206 Lake St, Boston, MA 02215" +179188,Bose SoundSport Headphones,1,99.99,03/15/19 20:22,"258 5th St, Portland, OR 97035" +179189,Lightning Charging Cable,1,14.95,03/26/19 00:24,"558 Elm St, New York City, NY 10001" +179190,AA Batteries (4-pack),1,3.84,03/17/19 11:03,"309 Lincoln St, Seattle, WA 98101" +179191,34in Ultrawide Monitor,1,379.99,03/09/19 15:30,"697 West St, Los Angeles, CA 90001" +179192,Lightning Charging Cable,1,14.95,03/29/19 20:50,"263 Elm St, New York City, NY 10001" +179193,27in FHD Monitor,1,149.99,03/14/19 18:47,"804 Cherry St, Seattle, WA 98101" +179194,ThinkPad Laptop,1,999.99,03/20/19 13:46,"161 Ridge St, Austin, TX 73301" +179195,AAA Batteries (4-pack),1,2.99,03/28/19 15:17,"176 2nd St, Dallas, TX 75001" +179196,27in 4K Gaming Monitor,1,389.99,03/18/19 11:53,"389 Cherry St, San Francisco, CA 94016" +179197,iPhone,1,700,03/28/19 18:31,"27 Chestnut St, Los Angeles, CA 90001" +179197,Lightning Charging Cable,1,14.95,03/28/19 18:31,"27 Chestnut St, Los Angeles, CA 90001" +179198,34in Ultrawide Monitor,1,379.99,03/25/19 17:21,"724 Cedar St, San Francisco, CA 94016" +179199,Wired Headphones,1,11.99,03/16/19 10:28,"488 4th St, Los Angeles, CA 90001" +179200,iPhone,1,700,03/05/19 20:09,"534 Johnson St, San Francisco, CA 94016" +179201,Lightning Charging Cable,1,14.95,03/20/19 14:28,"603 Maple St, Los Angeles, CA 90001" +179202,Lightning Charging Cable,1,14.95,03/07/19 20:37,"711 West St, San Francisco, CA 94016" +179203,Bose SoundSport Headphones,1,99.99,03/06/19 05:12,"651 Sunset St, San Francisco, CA 94016" +179204,AAA Batteries (4-pack),1,2.99,03/24/19 14:22,"42 Cherry St, Los Angeles, CA 90001" +179205,Apple Airpods Headphones,1,150,03/11/19 21:21,"128 South St, Boston, MA 02215" +179206,AA Batteries (4-pack),3,3.84,03/05/19 15:51,"724 South St, New York City, NY 10001" +179207,ThinkPad Laptop,1,999.99,03/09/19 21:38,"124 9th St, New York City, NY 10001" +179208,Apple Airpods Headphones,1,150,03/15/19 09:56,"525 Johnson St, San Francisco, CA 94016" +179209,AAA Batteries (4-pack),1,2.99,03/19/19 11:39,"820 9th St, Los Angeles, CA 90001" +179210,Apple Airpods Headphones,1,150,03/09/19 14:56,"53 Ridge St, San Francisco, CA 94016" +179211,20in Monitor,1,109.99,03/13/19 17:01,"555 14th St, Austin, TX 73301" +179212,20in Monitor,1,109.99,03/15/19 20:38,"111 Hill St, Boston, MA 02215" +179213,Wired Headphones,1,11.99,03/19/19 10:23,"207 Adams St, Atlanta, GA 30301" +179214,Apple Airpods Headphones,1,150,03/16/19 14:59,"373 Adams St, New York City, NY 10001" +179215,USB-C Charging Cable,1,11.95,03/28/19 08:49,"148 North St, Portland, ME 04101" +179216,USB-C Charging Cable,1,11.95,03/21/19 17:51,"548 5th St, New York City, NY 10001" +179217,AAA Batteries (4-pack),2,2.99,03/26/19 19:50,"87 Wilson St, Los Angeles, CA 90001" +179218,Wired Headphones,1,11.99,03/20/19 18:35,"197 1st St, San Francisco, CA 94016" +179219,Vareebadd Phone,1,400,03/31/19 08:39,"560 14th St, San Francisco, CA 94016" +179220,Bose SoundSport Headphones,1,99.99,03/27/19 22:28,"967 Cedar St, New York City, NY 10001" +179221,Wired Headphones,1,11.99,03/24/19 21:52,"719 8th St, New York City, NY 10001" +179222,AA Batteries (4-pack),1,3.84,03/24/19 20:07,"167 5th St, Boston, MA 02215" +179223,Wired Headphones,1,11.99,03/19/19 10:20,"103 Meadow St, New York City, NY 10001" +179224,AA Batteries (4-pack),2,3.84,03/21/19 10:06,"952 Spruce St, Dallas, TX 75001" +179225,AA Batteries (4-pack),1,3.84,03/01/19 22:42,"186 Cherry St, New York City, NY 10001" +179226,Lightning Charging Cable,1,14.95,03/01/19 14:57,"148 Jefferson St, Los Angeles, CA 90001" +179227,Apple Airpods Headphones,1,150,03/24/19 17:26,"902 9th St, New York City, NY 10001" +179228,AA Batteries (4-pack),1,3.84,03/17/19 14:16,"812 Cherry St, New York City, NY 10001" +179229,AAA Batteries (4-pack),1,2.99,03/25/19 08:08,"245 Maple St, Atlanta, GA 30301" +179230,iPhone,1,700,03/23/19 15:05,"376 8th St, San Francisco, CA 94016" +179230,Wired Headphones,1,11.99,03/23/19 15:05,"376 8th St, San Francisco, CA 94016" +179231,Lightning Charging Cable,1,14.95,03/11/19 15:10,"554 Johnson St, New York City, NY 10001" +179232,iPhone,1,700,03/20/19 16:39,"235 Washington St, Atlanta, GA 30301" +179233,Wired Headphones,1,11.99,03/10/19 20:19,"772 West St, New York City, NY 10001" +179234,USB-C Charging Cable,1,11.95,03/24/19 17:15,"178 5th St, Dallas, TX 75001" +179235,34in Ultrawide Monitor,1,379.99,03/23/19 17:45,"718 10th St, Seattle, WA 98101" +179236,AAA Batteries (4-pack),1,2.99,03/29/19 17:15,"173 Spruce St, Los Angeles, CA 90001" +179237,Wired Headphones,1,11.99,03/25/19 16:34,"170 7th St, Boston, MA 02215" +179238,ThinkPad Laptop,1,999.99,03/12/19 15:50,"540 Cherry St, San Francisco, CA 94016" +179239,USB-C Charging Cable,1,11.95,03/02/19 05:50,"81 Wilson St, Austin, TX 73301" +179240,Bose SoundSport Headphones,1,99.99,03/02/19 12:45,"154 Elm St, Portland, OR 97035" +179241,Apple Airpods Headphones,1,150,03/13/19 14:44,"232 Main St, Los Angeles, CA 90001" +179242,Lightning Charging Cable,1,14.95,03/21/19 00:46,"620 Dogwood St, Seattle, WA 98101" +179243,Apple Airpods Headphones,1,150,03/30/19 19:51,"794 West St, Atlanta, GA 30301" +179244,Google Phone,1,600,03/30/19 11:21,"385 14th St, Atlanta, GA 30301" +179245,Bose SoundSport Headphones,1,99.99,03/10/19 17:15,"722 Forest St, San Francisco, CA 94016" +179246,Apple Airpods Headphones,1,150,03/07/19 13:32,"475 12th St, Atlanta, GA 30301" +179247,Flatscreen TV,1,300,03/08/19 00:04,"255 2nd St, San Francisco, CA 94016" +179248,Wired Headphones,1,11.99,03/23/19 18:17,"504 Cherry St, New York City, NY 10001" +179249,Lightning Charging Cable,1,14.95,03/11/19 00:42,"121 11th St, San Francisco, CA 94016" +179250,34in Ultrawide Monitor,1,379.99,03/03/19 18:22,"290 Jackson St, New York City, NY 10001" +179251,Bose SoundSport Headphones,1,99.99,03/03/19 09:06,"940 Lincoln St, San Francisco, CA 94016" +179252,AA Batteries (4-pack),1,3.84,03/18/19 12:03,"89 13th St, Los Angeles, CA 90001" +179253,27in FHD Monitor,1,149.99,03/06/19 15:09,"630 12th St, San Francisco, CA 94016" +179254,Bose SoundSport Headphones,1,99.99,03/29/19 10:08,"831 Jefferson St, New York City, NY 10001" +179255,AA Batteries (4-pack),1,3.84,03/25/19 20:03,"330 West St, New York City, NY 10001" +179256,27in 4K Gaming Monitor,2,389.99,03/21/19 21:27,"444 Main St, Portland, OR 97035" +179257,Apple Airpods Headphones,1,150,03/12/19 19:15,"875 Willow St, Los Angeles, CA 90001" +179258,USB-C Charging Cable,1,11.95,03/14/19 08:49,"207 West St, Boston, MA 02215" +179259,Apple Airpods Headphones,1,150,03/21/19 23:09,"924 Hickory St, San Francisco, CA 94016" +179260,AA Batteries (4-pack),1,3.84,03/29/19 22:04,"939 13th St, San Francisco, CA 94016" +179261,iPhone,1,700,03/10/19 20:45,"857 Lincoln St, San Francisco, CA 94016" +179262,ThinkPad Laptop,1,999.99,03/04/19 18:43,"257 Center St, Dallas, TX 75001" +179263,Bose SoundSport Headphones,1,99.99,03/11/19 19:23,"467 Jackson St, New York City, NY 10001" +179264,20in Monitor,1,109.99,03/14/19 09:23,"317 Ridge St, Seattle, WA 98101" +179265,ThinkPad Laptop,1,999.99,03/15/19 14:51,"913 Cherry St, San Francisco, CA 94016" +179266,USB-C Charging Cable,1,11.95,03/24/19 13:50,"324 Lake St, San Francisco, CA 94016" +179267,AAA Batteries (4-pack),3,2.99,03/09/19 17:54,"994 North St, Dallas, TX 75001" +179268,Lightning Charging Cable,1,14.95,03/30/19 16:08,"969 8th St, San Francisco, CA 94016" +179269,AAA Batteries (4-pack),1,2.99,03/13/19 10:54,"321 Sunset St, Los Angeles, CA 90001" +179270,USB-C Charging Cable,1,11.95,03/15/19 15:52,"206 North St, San Francisco, CA 94016" +179271,Macbook Pro Laptop,1,1700,03/28/19 21:57,"437 7th St, San Francisco, CA 94016" +179272,20in Monitor,1,109.99,03/14/19 19:22,"477 4th St, San Francisco, CA 94016" +179273,27in FHD Monitor,1,149.99,03/24/19 11:36,"825 Johnson St, Austin, TX 73301" +179274,Wired Headphones,1,11.99,03/07/19 16:09,"894 Johnson St, San Francisco, CA 94016" +179275,Wired Headphones,1,11.99,03/16/19 22:42,"467 9th St, Boston, MA 02215" +179276,27in FHD Monitor,1,149.99,03/20/19 09:51,"542 10th St, San Francisco, CA 94016" +179277,Apple Airpods Headphones,1,150,03/16/19 23:46,"67 Chestnut St, Dallas, TX 75001" +179278,Flatscreen TV,1,300,03/15/19 22:55,"825 6th St, Dallas, TX 75001" +179279,Lightning Charging Cable,1,14.95,03/19/19 09:57,"798 Johnson St, Portland, OR 97035" +179280,Lightning Charging Cable,1,14.95,03/26/19 12:25,"360 Forest St, San Francisco, CA 94016" +179281,USB-C Charging Cable,1,11.95,03/11/19 12:51,"706 Hickory St, San Francisco, CA 94016" +179282,Bose SoundSport Headphones,1,99.99,03/07/19 10:32,"19 9th St, Los Angeles, CA 90001" +179283,AAA Batteries (4-pack),1,2.99,03/19/19 05:48,"26 Madison St, New York City, NY 10001" +179284,Bose SoundSport Headphones,1,99.99,03/17/19 15:27,"150 Johnson St, Boston, MA 02215" +179285,27in FHD Monitor,2,149.99,03/10/19 08:49,"184 2nd St, Los Angeles, CA 90001" +179286,27in FHD Monitor,1,149.99,03/29/19 17:32,"514 North St, San Francisco, CA 94016" +179287,Lightning Charging Cable,1,14.95,03/28/19 15:25,"974 Hickory St, San Francisco, CA 94016" +179288,Lightning Charging Cable,1,14.95,03/22/19 19:34,"529 Lakeview St, San Francisco, CA 94016" +179289,ThinkPad Laptop,1,999.99,03/11/19 20:32,"786 South St, San Francisco, CA 94016" +179290,AA Batteries (4-pack),1,3.84,03/07/19 02:16,"992 Cherry St, Boston, MA 02215" +179291,Bose SoundSport Headphones,1,99.99,03/26/19 18:27,"973 Hill St, Los Angeles, CA 90001" +179292,Wired Headphones,1,11.99,03/03/19 10:09,"204 Walnut St, Austin, TX 73301" +179293,USB-C Charging Cable,1,11.95,03/10/19 12:23,"34 13th St, Los Angeles, CA 90001" +179294,USB-C Charging Cable,2,11.95,03/21/19 13:02,"251 2nd St, Los Angeles, CA 90001" +179295,Bose SoundSport Headphones,1,99.99,03/17/19 15:50,"958 Dogwood St, Seattle, WA 98101" +179296,Wired Headphones,1,11.99,03/15/19 12:44,"129 Wilson St, Los Angeles, CA 90001" +179297,USB-C Charging Cable,2,11.95,03/13/19 23:47,"930 4th St, Los Angeles, CA 90001" +179298,Wired Headphones,1,11.99,03/28/19 14:38,"534 Hill St, San Francisco, CA 94016" +179299,Apple Airpods Headphones,1,150,03/22/19 21:59,"93 Madison St, Dallas, TX 75001" +179300,Lightning Charging Cable,1,14.95,03/03/19 21:19,"213 Forest St, Los Angeles, CA 90001" +179301,Wired Headphones,1,11.99,03/03/19 00:55,"826 North St, New York City, NY 10001" +179302,AA Batteries (4-pack),1,3.84,03/08/19 00:07,"458 6th St, New York City, NY 10001" +179303,Google Phone,1,600,03/30/19 21:38,"882 West St, Seattle, WA 98101" +179304,Flatscreen TV,1,300,03/31/19 21:31,"329 South St, San Francisco, CA 94016" +179305,27in 4K Gaming Monitor,1,389.99,03/19/19 09:59,"449 Maple St, New York City, NY 10001" +179306,Bose SoundSport Headphones,1,99.99,03/09/19 20:27,"855 South St, Seattle, WA 98101" +179307,Bose SoundSport Headphones,1,99.99,03/06/19 17:21,"326 Main St, San Francisco, CA 94016" +179308,Apple Airpods Headphones,1,150,03/07/19 11:23,"483 Chestnut St, San Francisco, CA 94016" +179309,AA Batteries (4-pack),1,3.84,03/22/19 06:31,"178 12th St, New York City, NY 10001" +179310,Wired Headphones,1,11.99,03/09/19 10:54,"80 8th St, Boston, MA 02215" +179311,AAA Batteries (4-pack),1,2.99,03/20/19 16:04,"932 13th St, Los Angeles, CA 90001" +179312,USB-C Charging Cable,1,11.95,03/05/19 18:06,"257 Jackson St, Los Angeles, CA 90001" +179313,27in 4K Gaming Monitor,1,389.99,03/17/19 08:00,"879 6th St, San Francisco, CA 94016" +179314,Google Phone,1,600,03/25/19 18:48,"778 Elm St, Los Angeles, CA 90001" +179314,Wired Headphones,1,11.99,03/25/19 18:48,"778 Elm St, Los Angeles, CA 90001" +179315,Wired Headphones,1,11.99,03/04/19 09:24,"63 Jackson St, San Francisco, CA 94016" +179316,USB-C Charging Cable,1,11.95,03/18/19 15:10,"739 Jackson St, San Francisco, CA 94016" +179316,USB-C Charging Cable,1,11.95,03/18/19 15:10,"739 Jackson St, San Francisco, CA 94016" +179317,Lightning Charging Cable,1,14.95,03/19/19 17:56,"138 River St, Portland, OR 97035" +179318,AAA Batteries (4-pack),1,2.99,03/26/19 13:07,"240 2nd St, New York City, NY 10001" +179319,Wired Headphones,1,11.99,03/15/19 16:59,"940 Willow St, San Francisco, CA 94016" +179320,Apple Airpods Headphones,1,150,03/04/19 17:13,"274 Spruce St, Atlanta, GA 30301" +179321,AA Batteries (4-pack),3,3.84,03/19/19 03:18,"805 North St, Boston, MA 02215" +179322,Google Phone,1,600,03/11/19 18:27,"688 North St, Dallas, TX 75001" +179323,AA Batteries (4-pack),1,3.84,03/05/19 15:19,"939 Jefferson St, San Francisco, CA 94016" +179324,Apple Airpods Headphones,1,150,03/20/19 08:34,"316 Sunset St, San Francisco, CA 94016" +179325,Apple Airpods Headphones,1,150,03/03/19 13:00,"43 10th St, San Francisco, CA 94016" +179326,AAA Batteries (4-pack),1,2.99,03/12/19 16:53,"433 Lincoln St, Los Angeles, CA 90001" +179327,USB-C Charging Cable,1,11.95,03/18/19 09:18,"223 Hickory St, Boston, MA 02215" +179328,AA Batteries (4-pack),2,3.84,03/23/19 23:56,"220 Washington St, Austin, TX 73301" +179329,Apple Airpods Headphones,1,150,03/06/19 22:54,"174 Washington St, San Francisco, CA 94016" +179330,Bose SoundSport Headphones,1,99.99,03/10/19 20:16,"450 Lakeview St, Atlanta, GA 30301" +179331,AAA Batteries (4-pack),1,2.99,03/02/19 12:09,"924 Chestnut St, New York City, NY 10001" +179332,27in 4K Gaming Monitor,1,389.99,03/05/19 07:53,"826 Ridge St, San Francisco, CA 94016" +,,,,, +179333,Google Phone,1,600,03/02/19 14:40,"308 Forest St, San Francisco, CA 94016" +179334,AA Batteries (4-pack),2,3.84,03/04/19 11:21,"869 Jefferson St, Seattle, WA 98101" +179335,Macbook Pro Laptop,1,1700,03/18/19 10:08,"729 Sunset St, San Francisco, CA 94016" +179336,USB-C Charging Cable,1,11.95,03/29/19 05:32,"559 Adams St, New York City, NY 10001" +179337,Bose SoundSport Headphones,1,99.99,03/29/19 21:22,"876 Dogwood St, Seattle, WA 98101" +179338,AAA Batteries (4-pack),1,2.99,03/01/19 18:52,"319 Meadow St, Seattle, WA 98101" +179339,Apple Airpods Headphones,1,150,03/28/19 12:33,"995 South St, Dallas, TX 75001" +179340,27in FHD Monitor,1,149.99,03/23/19 18:50,"406 Sunset St, Portland, OR 97035" +179341,LG Washing Machine,1,600.0,03/20/19 22:07,"445 Spruce St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +,,,,, +179342,Bose SoundSport Headphones,1,99.99,03/08/19 00:29,"834 8th St, Los Angeles, CA 90001" +179343,27in FHD Monitor,1,149.99,03/09/19 19:58,"619 Maple St, New York City, NY 10001" +179344,AAA Batteries (4-pack),1,2.99,03/07/19 15:59,"730 Meadow St, San Francisco, CA 94016" +179345,AA Batteries (4-pack),1,3.84,03/13/19 13:09,"780 10th St, San Francisco, CA 94016" +179345,AA Batteries (4-pack),2,3.84,03/13/19 13:09,"780 10th St, San Francisco, CA 94016" +179346,Lightning Charging Cable,1,14.95,03/22/19 10:41,"783 Maple St, Portland, OR 97035" +179347,USB-C Charging Cable,1,11.95,03/06/19 22:56,"134 Meadow St, Dallas, TX 75001" +179348,USB-C Charging Cable,1,11.95,03/29/19 21:06,"231 Main St, San Francisco, CA 94016" +179349,LG Washing Machine,1,600.0,03/25/19 08:10,"442 Adams St, Seattle, WA 98101" +179350,Bose SoundSport Headphones,1,99.99,03/30/19 22:19,"462 Jefferson St, Dallas, TX 75001" +179351,Google Phone,1,600,03/01/19 20:19,"12 Highland St, San Francisco, CA 94016" +179351,USB-C Charging Cable,1,11.95,03/01/19 20:19,"12 Highland St, San Francisco, CA 94016" +179352,Wired Headphones,1,11.99,03/18/19 15:36,"661 1st St, Portland, OR 97035" +179353,20in Monitor,1,109.99,03/10/19 18:54,"799 4th St, New York City, NY 10001" +179354,ThinkPad Laptop,1,999.99,03/24/19 09:02,"370 Lakeview St, Boston, MA 02215" +179355,Wired Headphones,1,11.99,03/29/19 23:55,"673 Lake St, Los Angeles, CA 90001" +179356,Apple Airpods Headphones,1,150,03/15/19 14:03,"438 West St, Los Angeles, CA 90001" +179357,Bose SoundSport Headphones,1,99.99,03/04/19 10:06,"954 Pine St, Seattle, WA 98101" +179357,Lightning Charging Cable,1,14.95,03/04/19 10:06,"954 Pine St, Seattle, WA 98101" +179358,AAA Batteries (4-pack),1,2.99,03/08/19 23:39,"641 2nd St, Dallas, TX 75001" +179359,AA Batteries (4-pack),3,3.84,03/28/19 10:33,"74 Dogwood St, Boston, MA 02215" +179360,ThinkPad Laptop,1,999.99,03/07/19 01:39,"56 Main St, New York City, NY 10001" +179361,AA Batteries (4-pack),2,3.84,03/31/19 18:08,"911 7th St, Portland, OR 97035" +179362,AAA Batteries (4-pack),2,2.99,03/17/19 12:08,"19 South St, New York City, NY 10001" +179363,AAA Batteries (4-pack),2,2.99,03/04/19 14:03,"697 8th St, New York City, NY 10001" +179364,Bose SoundSport Headphones,1,99.99,03/22/19 19:56,"547 8th St, Boston, MA 02215" +179365,AAA Batteries (4-pack),1,2.99,03/27/19 10:33,"656 Chestnut St, Boston, MA 02215" +179366,Vareebadd Phone,1,400,03/07/19 09:15,"421 Highland St, San Francisco, CA 94016" +179367,Lightning Charging Cable,1,14.95,03/12/19 21:10,"558 Meadow St, Dallas, TX 75001" +179368,Wired Headphones,1,11.99,03/26/19 18:27,"341 11th St, Dallas, TX 75001" +179369,AAA Batteries (4-pack),2,2.99,03/28/19 21:18,"474 Ridge St, New York City, NY 10001" +179370,Flatscreen TV,1,300,03/08/19 01:47,"305 10th St, Atlanta, GA 30301" +179371,Apple Airpods Headphones,1,150,03/29/19 19:53,"722 Hickory St, San Francisco, CA 94016" +179372,USB-C Charging Cable,1,11.95,03/14/19 10:56,"279 Sunset St, Atlanta, GA 30301" +179373,AAA Batteries (4-pack),2,2.99,03/18/19 11:03,"249 Park St, Atlanta, GA 30301" +179374,USB-C Charging Cable,1,11.95,03/30/19 17:45,"129 Hickory St, Seattle, WA 98101" +179375,Lightning Charging Cable,1,14.95,03/20/19 20:28,"907 6th St, Boston, MA 02215" +179376,Lightning Charging Cable,1,14.95,03/26/19 21:42,"773 Cherry St, Boston, MA 02215" +179377,AA Batteries (4-pack),2,3.84,03/16/19 22:18,"663 Johnson St, Atlanta, GA 30301" +179378,20in Monitor,1,109.99,03/29/19 18:59,"183 Madison St, Boston, MA 02215" +179379,Apple Airpods Headphones,1,150,03/18/19 23:00,"927 Pine St, San Francisco, CA 94016" +179380,Bose SoundSport Headphones,1,99.99,03/23/19 20:55,"837 8th St, Los Angeles, CA 90001" +179381,AAA Batteries (4-pack),1,2.99,03/13/19 06:39,"234 Hickory St, Atlanta, GA 30301" +179382,USB-C Charging Cable,1,11.95,03/18/19 07:49,"170 Hickory St, San Francisco, CA 94016" +179383,27in 4K Gaming Monitor,1,389.99,03/11/19 22:52,"821 Maple St, New York City, NY 10001" +179384,27in FHD Monitor,1,149.99,03/24/19 13:27,"223 Washington St, New York City, NY 10001" +179385,27in FHD Monitor,1,149.99,03/19/19 21:08,"715 Adams St, Austin, TX 73301" +179386,AA Batteries (4-pack),2,3.84,03/20/19 17:21,"523 Spruce St, New York City, NY 10001" +179387,Lightning Charging Cable,1,14.95,03/27/19 15:27,"32 Lincoln St, Atlanta, GA 30301" +179388,AA Batteries (4-pack),1,3.84,03/04/19 22:08,"354 Spruce St, New York City, NY 10001" +179389,Google Phone,1,600,03/07/19 10:33,"104 Spruce St, Portland, OR 97035" +179390,USB-C Charging Cable,1,11.95,03/19/19 16:45,"642 6th St, San Francisco, CA 94016" +179391,USB-C Charging Cable,1,11.95,03/03/19 21:20,"532 Johnson St, San Francisco, CA 94016" +179392,Apple Airpods Headphones,1,150,03/05/19 11:08,"454 7th St, New York City, NY 10001" +179393,Lightning Charging Cable,1,14.95,03/09/19 15:39,"686 2nd St, San Francisco, CA 94016" +179394,Google Phone,1,600,03/29/19 22:08,"686 8th St, Atlanta, GA 30301" +179395,34in Ultrawide Monitor,1,379.99,03/16/19 15:13,"656 Church St, Los Angeles, CA 90001" +179396,20in Monitor,1,109.99,03/10/19 00:02,"909 1st St, San Francisco, CA 94016" +179397,Wired Headphones,1,11.99,03/19/19 14:46,"184 Jackson St, San Francisco, CA 94016" +179398,Wired Headphones,1,11.99,03/03/19 13:30,"575 Wilson St, Seattle, WA 98101" +179399,Bose SoundSport Headphones,1,99.99,03/27/19 09:13,"42 1st St, Los Angeles, CA 90001" +179400,AAA Batteries (4-pack),1,2.99,03/13/19 17:44,"294 Highland St, Atlanta, GA 30301" +179401,AAA Batteries (4-pack),3,2.99,03/07/19 23:43,"117 10th St, San Francisco, CA 94016" +179402,Wired Headphones,1,11.99,03/14/19 15:55,"574 9th St, Portland, OR 97035" +179403,Wired Headphones,1,11.99,03/17/19 10:17,"165 Park St, Boston, MA 02215" +179404,Lightning Charging Cable,1,14.95,03/06/19 17:59,"954 Lake St, New York City, NY 10001" +179405,AAA Batteries (4-pack),1,2.99,03/01/19 12:56,"609 Park St, Boston, MA 02215" +179406,34in Ultrawide Monitor,1,379.99,03/05/19 16:34,"873 Jackson St, New York City, NY 10001" +179407,AA Batteries (4-pack),3,3.84,03/22/19 18:39,"268 Madison St, San Francisco, CA 94016" +179408,USB-C Charging Cable,1,11.95,03/09/19 09:18,"979 Church St, Seattle, WA 98101" +179409,20in Monitor,1,109.99,03/23/19 17:37,"849 Adams St, Seattle, WA 98101" +179410,Macbook Pro Laptop,1,1700,03/14/19 22:09,"249 13th St, San Francisco, CA 94016" +179411,Bose SoundSport Headphones,1,99.99,03/26/19 17:01,"814 Meadow St, Los Angeles, CA 90001" +179412,Lightning Charging Cable,1,14.95,03/17/19 17:58,"373 2nd St, Los Angeles, CA 90001" +179413,34in Ultrawide Monitor,1,379.99,03/19/19 17:42,"626 12th St, Seattle, WA 98101" +179414,Lightning Charging Cable,1,14.95,03/10/19 07:20,"632 12th St, Boston, MA 02215" +179415,Apple Airpods Headphones,1,150,03/14/19 15:16,"476 14th St, Los Angeles, CA 90001" +179416,AA Batteries (4-pack),1,3.84,03/20/19 10:21,"971 6th St, San Francisco, CA 94016" +179417,20in Monitor,1,109.99,03/11/19 21:20,"951 Chestnut St, San Francisco, CA 94016" +179418,Wired Headphones,1,11.99,03/21/19 18:57,"512 14th St, Boston, MA 02215" +179419,Apple Airpods Headphones,1,150,03/10/19 04:30,"148 2nd St, Los Angeles, CA 90001" +179420,Wired Headphones,1,11.99,03/18/19 19:30,"166 Adams St, New York City, NY 10001" +179421,AA Batteries (4-pack),2,3.84,03/23/19 19:04,"516 Willow St, Boston, MA 02215" +179422,Wired Headphones,1,11.99,03/27/19 12:59,"490 Highland St, Seattle, WA 98101" +179423,20in Monitor,1,109.99,03/19/19 00:21,"312 1st St, San Francisco, CA 94016" +179424,AAA Batteries (4-pack),1,2.99,03/13/19 19:53,"840 River St, Boston, MA 02215" +179425,34in Ultrawide Monitor,1,379.99,03/03/19 19:12,"906 Elm St, Los Angeles, CA 90001" +179426,34in Ultrawide Monitor,1,379.99,03/06/19 12:32,"892 2nd St, Austin, TX 73301" +179427,iPhone,1,700,03/05/19 12:34,"501 Pine St, New York City, NY 10001" +179427,Wired Headphones,1,11.99,03/05/19 12:34,"501 Pine St, New York City, NY 10001" +179428,Wired Headphones,1,11.99,03/20/19 12:17,"782 Cherry St, Seattle, WA 98101" +179429,AA Batteries (4-pack),1,3.84,03/04/19 11:18,"291 South St, Seattle, WA 98101" +179430,Apple Airpods Headphones,1,150,03/13/19 17:43,"688 Jefferson St, Portland, ME 04101" +179431,Wired Headphones,1,11.99,03/30/19 18:55,"785 Meadow St, San Francisco, CA 94016" +179432,Apple Airpods Headphones,1,150,03/26/19 15:50,"113 Willow St, New York City, NY 10001" +179433,Apple Airpods Headphones,1,150,03/29/19 16:17,"98 Lakeview St, San Francisco, CA 94016" +179434,USB-C Charging Cable,1,11.95,03/10/19 19:04,"375 12th St, Los Angeles, CA 90001" +179435,Wired Headphones,1,11.99,03/09/19 14:01,"751 South St, New York City, NY 10001" +179436,AA Batteries (4-pack),2,3.84,03/03/19 04:10,"439 Dogwood St, New York City, NY 10001" +179437,AA Batteries (4-pack),1,3.84,03/09/19 05:43,"462 Maple St, Boston, MA 02215" +179438,Apple Airpods Headphones,1,150,03/26/19 16:50,"145 Meadow St, Boston, MA 02215" +179439,Apple Airpods Headphones,1,150,03/31/19 18:42,"137 11th St, San Francisco, CA 94016" +179440,Lightning Charging Cable,1,14.95,03/30/19 17:17,"24 Madison St, Los Angeles, CA 90001" +179441,Wired Headphones,1,11.99,03/16/19 17:10,"744 River St, San Francisco, CA 94016" +179442,AA Batteries (4-pack),1,3.84,03/06/19 07:53,"659 Pine St, New York City, NY 10001" +179443,Apple Airpods Headphones,1,150,03/23/19 10:51,"213 Church St, Los Angeles, CA 90001" +179444,Apple Airpods Headphones,1,150,03/24/19 14:14,"426 Cedar St, Boston, MA 02215" +179445,ThinkPad Laptop,1,999.99,03/07/19 07:52,"259 Church St, Portland, ME 04101" +179446,USB-C Charging Cable,1,11.95,03/03/19 06:44,"407 Park St, Los Angeles, CA 90001" +179447,Lightning Charging Cable,1,14.95,03/17/19 22:06,"560 Park St, New York City, NY 10001" +179448,AA Batteries (4-pack),1,3.84,03/10/19 09:12,"308 11th St, New York City, NY 10001" +179449,AA Batteries (4-pack),1,3.84,03/21/19 18:35,"586 South St, San Francisco, CA 94016" +179450,iPhone,1,700,03/08/19 22:18,"855 Washington St, San Francisco, CA 94016" +179451,AAA Batteries (4-pack),1,2.99,03/17/19 12:22,"265 Washington St, Dallas, TX 75001" +179452,AAA Batteries (4-pack),1,2.99,03/16/19 21:02,"777 Main St, Los Angeles, CA 90001" +179453,20in Monitor,1,109.99,03/31/19 07:05,"704 West St, New York City, NY 10001" +179454,USB-C Charging Cable,1,11.95,03/13/19 09:16,"265 Park St, Portland, OR 97035" +179455,USB-C Charging Cable,1,11.95,03/02/19 20:19,"552 4th St, San Francisco, CA 94016" +179456,USB-C Charging Cable,1,11.95,03/27/19 11:48,"280 Meadow St, San Francisco, CA 94016" +179457,Flatscreen TV,1,300,03/09/19 18:02,"461 North St, Austin, TX 73301" +179458,Apple Airpods Headphones,1,150,03/05/19 14:40,"741 Church St, San Francisco, CA 94016" +179459,AA Batteries (4-pack),1,3.84,03/29/19 13:44,"323 13th St, New York City, NY 10001" +179460,Wired Headphones,1,11.99,03/21/19 16:01,"702 6th St, Portland, OR 97035" +179461,AAA Batteries (4-pack),2,2.99,03/08/19 09:11,"711 Hill St, San Francisco, CA 94016" +179462,Wired Headphones,1,11.99,03/08/19 12:29,"761 Cherry St, San Francisco, CA 94016" +179463,USB-C Charging Cable,1,11.95,03/02/19 14:12,"559 Center St, Los Angeles, CA 90001" +179464,USB-C Charging Cable,1,11.95,03/25/19 10:33,"616 5th St, Portland, OR 97035" +179465,27in FHD Monitor,1,149.99,03/02/19 21:28,"985 River St, Dallas, TX 75001" +179466,Wired Headphones,1,11.99,03/12/19 01:20,"790 Pine St, San Francisco, CA 94016" +179467,AAA Batteries (4-pack),2,2.99,03/11/19 20:24,"579 Cedar St, Los Angeles, CA 90001" +179468,AA Batteries (4-pack),2,3.84,03/04/19 11:18,"100 Washington St, San Francisco, CA 94016" +179469,AAA Batteries (4-pack),1,2.99,03/11/19 22:29,"143 Meadow St, Seattle, WA 98101" +179470,Apple Airpods Headphones,1,150,03/06/19 15:09,"131 Washington St, San Francisco, CA 94016" +179471,Lightning Charging Cable,1,14.95,03/03/19 09:40,"999 8th St, Dallas, TX 75001" +179471,AA Batteries (4-pack),2,3.84,03/03/19 09:40,"999 8th St, Dallas, TX 75001" +179472,Apple Airpods Headphones,1,150,03/12/19 14:43,"989 Elm St, Portland, OR 97035" +179473,AAA Batteries (4-pack),1,2.99,03/05/19 00:27,"509 Forest St, Atlanta, GA 30301" +179474,27in 4K Gaming Monitor,1,389.99,03/24/19 19:33,"547 Ridge St, Boston, MA 02215" +179475,AAA Batteries (4-pack),1,2.99,03/14/19 12:07,"850 Sunset St, New York City, NY 10001" +179476,AA Batteries (4-pack),1,3.84,03/01/19 20:44,"480 West St, Los Angeles, CA 90001" +179477,27in 4K Gaming Monitor,1,389.99,03/30/19 19:57,"913 South St, San Francisco, CA 94016" +179478,AAA Batteries (4-pack),2,2.99,03/03/19 16:18,"15 9th St, San Francisco, CA 94016" +179479,Lightning Charging Cable,1,14.95,03/11/19 23:46,"131 10th St, New York City, NY 10001" +179480,iPhone,1,700,03/16/19 13:35,"125 Forest St, San Francisco, CA 94016" +179480,Apple Airpods Headphones,1,150,03/16/19 13:35,"125 Forest St, San Francisco, CA 94016" +179481,Lightning Charging Cable,1,14.95,03/27/19 17:16,"827 Lincoln St, Los Angeles, CA 90001" +179482,Wired Headphones,1,11.99,03/27/19 13:44,"909 Johnson St, Los Angeles, CA 90001" +179483,Wired Headphones,1,11.99,03/03/19 14:49,"718 Johnson St, Boston, MA 02215" +,,,,, +179484,ThinkPad Laptop,1,999.99,03/17/19 23:42,"921 13th St, San Francisco, CA 94016" +179485,AAA Batteries (4-pack),3,2.99,03/02/19 19:56,"583 Hickory St, Los Angeles, CA 90001" +179486,Lightning Charging Cable,1,14.95,03/31/19 19:33,"574 12th St, Los Angeles, CA 90001" +179487,Bose SoundSport Headphones,1,99.99,03/20/19 17:19,"174 Lincoln St, Boston, MA 02215" +179488,USB-C Charging Cable,1,11.95,03/24/19 11:43,"991 Dogwood St, Austin, TX 73301" +179489,Lightning Charging Cable,2,14.95,03/13/19 18:58,"898 1st St, Los Angeles, CA 90001" +179490,AA Batteries (4-pack),1,3.84,03/06/19 19:20,"808 8th St, Portland, OR 97035" +179491,Lightning Charging Cable,1,14.95,03/09/19 12:56,"27 River St, Austin, TX 73301" +179492,Lightning Charging Cable,1,14.95,03/18/19 15:04,"927 13th St, Seattle, WA 98101" +179493,USB-C Charging Cable,1,11.95,03/28/19 20:28,"868 Cherry St, Dallas, TX 75001" +179494,Bose SoundSport Headphones,1,99.99,03/07/19 11:59,"528 Willow St, Dallas, TX 75001" +179495,Lightning Charging Cable,1,14.95,03/10/19 21:26,"161 Pine St, Dallas, TX 75001" +179496,Lightning Charging Cable,1,14.95,03/05/19 12:58,"573 Center St, Dallas, TX 75001" +179497,USB-C Charging Cable,2,11.95,03/05/19 11:50,"506 Lake St, Los Angeles, CA 90001" +179498,Apple Airpods Headphones,1,150,03/21/19 20:10,"225 West St, Seattle, WA 98101" +179499,Google Phone,1,600,03/08/19 21:07,"121 5th St, Portland, OR 97035" +179499,USB-C Charging Cable,1,11.95,03/08/19 21:07,"121 5th St, Portland, OR 97035" +179500,Google Phone,1,600,03/22/19 07:04,"629 11th St, San Francisco, CA 94016" +179501,AAA Batteries (4-pack),2,2.99,03/08/19 00:28,"707 6th St, Atlanta, GA 30301" +179502,Google Phone,1,600,03/21/19 20:56,"767 Lincoln St, Boston, MA 02215" +179503,34in Ultrawide Monitor,1,379.99,03/31/19 12:57,"832 Main St, Seattle, WA 98101" +179504,AA Batteries (4-pack),2,3.84,03/11/19 11:00,"533 Lake St, San Francisco, CA 94016" +179505,ThinkPad Laptop,1,999.99,03/28/19 13:44,"765 Ridge St, New York City, NY 10001" +179506,USB-C Charging Cable,1,11.95,03/30/19 04:16,"979 Highland St, Los Angeles, CA 90001" +179507,Lightning Charging Cable,1,14.95,03/11/19 12:34,"664 Center St, Dallas, TX 75001" +179508,Google Phone,1,600,03/12/19 18:17,"795 Cherry St, Los Angeles, CA 90001" +179509,AA Batteries (4-pack),2,3.84,03/01/19 14:55,"396 Pine St, Portland, OR 97035" +179510,AAA Batteries (4-pack),1,2.99,03/13/19 19:05,"781 Ridge St, Portland, OR 97035" +179511,USB-C Charging Cable,1,11.95,03/03/19 22:09,"458 Hickory St, New York City, NY 10001" +179512,AA Batteries (4-pack),2,3.84,03/06/19 14:11,"958 Meadow St, Dallas, TX 75001" +179513,AAA Batteries (4-pack),1,2.99,03/30/19 10:03,"398 12th St, New York City, NY 10001" +179514,ThinkPad Laptop,1,999.99,03/06/19 13:28,"596 Pine St, Los Angeles, CA 90001" +179515,USB-C Charging Cable,1,11.95,03/15/19 23:26,"632 Main St, New York City, NY 10001" +179516,iPhone,1,700,03/11/19 22:48,"105 2nd St, San Francisco, CA 94016" +179517,Flatscreen TV,1,300,03/03/19 23:54,"407 Meadow St, Atlanta, GA 30301" +179518,Flatscreen TV,1,300,03/03/19 18:31,"565 Maple St, New York City, NY 10001" +179519,Bose SoundSport Headphones,1,99.99,03/26/19 07:55,"858 Sunset St, Seattle, WA 98101" +179520,AAA Batteries (4-pack),1,2.99,03/20/19 14:47,"233 Cedar St, San Francisco, CA 94016" +179521,ThinkPad Laptop,1,999.99,03/04/19 18:48,"606 South St, Austin, TX 73301" +179522,27in FHD Monitor,1,149.99,03/21/19 11:49,"782 Park St, Los Angeles, CA 90001" +179523,Bose SoundSport Headphones,1,99.99,03/30/19 15:30,"27 River St, Los Angeles, CA 90001" +179524,34in Ultrawide Monitor,1,379.99,03/02/19 19:06,"570 13th St, Seattle, WA 98101" +179525,AAA Batteries (4-pack),1,2.99,03/13/19 14:41,"63 Sunset St, Seattle, WA 98101" +179526,iPhone,1,700,03/05/19 18:16,"75 Highland St, Portland, ME 04101" +179527,27in FHD Monitor,1,149.99,03/09/19 16:37,"432 12th St, Los Angeles, CA 90001" +179528,USB-C Charging Cable,1,11.95,03/27/19 16:11,"94 Lincoln St, San Francisco, CA 94016" +179529,Lightning Charging Cable,1,14.95,03/31/19 13:07,"349 5th St, Portland, OR 97035" +179530,AA Batteries (4-pack),2,3.84,03/10/19 15:46,"988 Cedar St, Dallas, TX 75001" +179531,Apple Airpods Headphones,1,150,03/29/19 15:55,"125 2nd St, New York City, NY 10001" +179532,Wired Headphones,1,11.99,03/02/19 20:14,"992 Washington St, San Francisco, CA 94016" +179533,AAA Batteries (4-pack),2,2.99,03/31/19 19:43,"417 Dogwood St, San Francisco, CA 94016" +179534,Bose SoundSport Headphones,1,99.99,03/22/19 12:12,"35 4th St, New York City, NY 10001" +179535,34in Ultrawide Monitor,1,379.99,03/07/19 10:22,"84 Dogwood St, Dallas, TX 75001" +179536,Google Phone,1,600,03/10/19 10:42,"930 9th St, Boston, MA 02215" +179537,AAA Batteries (4-pack),1,2.99,03/03/19 22:40,"807 Church St, Los Angeles, CA 90001" +179538,27in 4K Gaming Monitor,1,389.99,03/23/19 17:15,"291 Hickory St, Dallas, TX 75001" +179539,Flatscreen TV,1,300,03/02/19 12:11,"325 1st St, Boston, MA 02215" +179540,AAA Batteries (4-pack),1,2.99,03/16/19 19:38,"221 Washington St, San Francisco, CA 94016" +179541,Apple Airpods Headphones,1,150,03/17/19 21:07,"156 2nd St, Boston, MA 02215" +179542,20in Monitor,1,109.99,03/12/19 11:53,"871 Highland St, Boston, MA 02215" +179543,Lightning Charging Cable,2,14.95,03/09/19 18:49,"626 South St, Portland, ME 04101" +179543,USB-C Charging Cable,1,11.95,03/09/19 18:49,"626 South St, Portland, ME 04101" +179544,AA Batteries (4-pack),1,3.84,03/29/19 11:37,"372 Jackson St, San Francisco, CA 94016" +179545,27in FHD Monitor,1,149.99,03/11/19 14:19,"620 6th St, Los Angeles, CA 90001" +179546,Wired Headphones,1,11.99,03/12/19 09:42,"202 12th St, San Francisco, CA 94016" +179547,AAA Batteries (4-pack),1,2.99,03/14/19 07:28,"558 Cedar St, San Francisco, CA 94016" +179548,AAA Batteries (4-pack),2,2.99,03/13/19 14:35,"441 Park St, Boston, MA 02215" +179549,Bose SoundSport Headphones,1,99.99,03/07/19 18:02,"238 Ridge St, Dallas, TX 75001" +179550,AA Batteries (4-pack),3,3.84,03/10/19 19:51,"319 Cherry St, New York City, NY 10001" +179551,Bose SoundSport Headphones,1,99.99,03/20/19 19:34,"180 Center St, New York City, NY 10001" +179552,Bose SoundSport Headphones,1,99.99,03/22/19 10:30,"255 Washington St, Atlanta, GA 30301" +179553,Vareebadd Phone,1,400,03/08/19 11:23,"134 Highland St, Portland, OR 97035" +179554,AAA Batteries (4-pack),1,2.99,03/26/19 17:41,"517 12th St, San Francisco, CA 94016" +179555,AAA Batteries (4-pack),1,2.99,03/25/19 09:29,"662 Johnson St, Atlanta, GA 30301" +179556,AA Batteries (4-pack),1,3.84,03/06/19 10:53,"682 1st St, Dallas, TX 75001" +179557,Google Phone,1,600,03/15/19 12:36,"697 Hill St, Dallas, TX 75001" +179558,34in Ultrawide Monitor,1,379.99,03/10/19 14:14,"712 Chestnut St, San Francisco, CA 94016" +179559,Lightning Charging Cable,1,14.95,03/28/19 14:05,"771 Cherry St, Los Angeles, CA 90001" +179560,Lightning Charging Cable,1,14.95,03/16/19 15:03,"763 Chestnut St, Portland, OR 97035" +179561,Vareebadd Phone,1,400,03/22/19 14:32,"968 South St, San Francisco, CA 94016" +179562,Lightning Charging Cable,1,14.95,03/25/19 10:32,"107 Walnut St, San Francisco, CA 94016" +179563,AA Batteries (4-pack),1,3.84,03/08/19 23:43,"718 Jefferson St, New York City, NY 10001" +179564,AA Batteries (4-pack),1,3.84,03/01/19 09:32,"207 Lincoln St, Atlanta, GA 30301" +179565,AAA Batteries (4-pack),6,2.99,03/27/19 08:21,"255 Park St, New York City, NY 10001" +179566,AAA Batteries (4-pack),1,2.99,03/22/19 14:43,"78 Lake St, San Francisco, CA 94016" +179567,USB-C Charging Cable,1,11.95,03/27/19 14:20,"264 6th St, San Francisco, CA 94016" +179568,Google Phone,1,600,03/04/19 18:58,"852 6th St, New York City, NY 10001" +179568,Wired Headphones,1,11.99,03/04/19 18:58,"852 6th St, New York City, NY 10001" +179569,27in FHD Monitor,1,149.99,03/20/19 20:54,"434 Meadow St, New York City, NY 10001" +179570,Flatscreen TV,1,300,03/17/19 23:32,"514 Lakeview St, New York City, NY 10001" +179571,AAA Batteries (4-pack),3,2.99,03/16/19 14:47,"604 Hickory St, San Francisco, CA 94016" +179572,Flatscreen TV,2,300,03/16/19 18:00,"175 Jefferson St, Boston, MA 02215" +179573,27in FHD Monitor,1,149.99,03/17/19 12:43,"750 Lincoln St, Atlanta, GA 30301" +179574,Wired Headphones,1,11.99,03/23/19 19:06,"33 12th St, Los Angeles, CA 90001" +179575,AA Batteries (4-pack),1,3.84,03/25/19 15:33,"995 6th St, Austin, TX 73301" +179576,Google Phone,1,600,03/20/19 19:54,"616 Meadow St, Los Angeles, CA 90001" +179577,USB-C Charging Cable,1,11.95,03/19/19 18:46,"883 10th St, Los Angeles, CA 90001" +179578,Lightning Charging Cable,1,14.95,03/04/19 22:29,"17 Pine St, New York City, NY 10001" +179579,Google Phone,1,600,03/25/19 16:41,"79 Highland St, Seattle, WA 98101" +179580,Wired Headphones,1,11.99,03/12/19 13:49,"597 Forest St, Atlanta, GA 30301" +179581,Lightning Charging Cable,1,14.95,03/07/19 18:11,"505 Main St, Los Angeles, CA 90001" +179582,AAA Batteries (4-pack),1,2.99,03/14/19 19:49,"295 Hill St, Los Angeles, CA 90001" +179583,AAA Batteries (4-pack),3,2.99,03/15/19 22:18,"948 10th St, San Francisco, CA 94016" +179584,AA Batteries (4-pack),1,3.84,03/21/19 13:29,"105 Lakeview St, New York City, NY 10001" +179585,Lightning Charging Cable,1,14.95,03/30/19 22:02,"626 Lake St, Los Angeles, CA 90001" +179586,Bose SoundSport Headphones,1,99.99,03/04/19 19:55,"234 7th St, Boston, MA 02215" +179587,Wired Headphones,1,11.99,03/06/19 13:15,"261 Jefferson St, Seattle, WA 98101" +179588,Macbook Pro Laptop,1,1700,03/01/19 20:24,"995 10th St, Los Angeles, CA 90001" +179589,USB-C Charging Cable,1,11.95,03/13/19 19:59,"828 Church St, Atlanta, GA 30301" +179590,AAA Batteries (4-pack),2,2.99,03/12/19 17:10,"192 Cedar St, San Francisco, CA 94016" +179591,ThinkPad Laptop,1,999.99,03/10/19 14:15,"339 Park St, Atlanta, GA 30301" +179592,AA Batteries (4-pack),2,3.84,03/28/19 09:38,"589 4th St, Seattle, WA 98101" +179593,Lightning Charging Cable,1,14.95,03/17/19 19:16,"160 4th St, Los Angeles, CA 90001" +179594,AAA Batteries (4-pack),2,2.99,03/20/19 17:04,"557 Washington St, Los Angeles, CA 90001" +179595,USB-C Charging Cable,1,11.95,03/10/19 09:58,"707 Pine St, Seattle, WA 98101" +179596,AAA Batteries (4-pack),1,2.99,03/29/19 16:24,"384 Lakeview St, Los Angeles, CA 90001" +179597,iPhone,1,700,03/02/19 08:34,"241 Maple St, San Francisco, CA 94016" +179598,AAA Batteries (4-pack),1,2.99,03/06/19 15:43,"672 Meadow St, San Francisco, CA 94016" +179599,AA Batteries (4-pack),2,3.84,03/05/19 09:19,"828 West St, Los Angeles, CA 90001" +179600,Bose SoundSport Headphones,1,99.99,03/31/19 10:30,"951 Madison St, Boston, MA 02215" +179601,20in Monitor,1,109.99,03/02/19 20:43,"545 1st St, Seattle, WA 98101" +179602,Bose SoundSport Headphones,1,99.99,03/01/19 18:24,"946 9th St, Atlanta, GA 30301" +179603,AAA Batteries (4-pack),1,2.99,03/05/19 16:47,"640 West St, Dallas, TX 75001" +179603,AA Batteries (4-pack),1,3.84,03/05/19 16:47,"640 West St, Dallas, TX 75001" +179604,Lightning Charging Cable,1,14.95,03/15/19 13:39,"195 Hill St, Boston, MA 02215" +179605,USB-C Charging Cable,1,11.95,03/26/19 10:09,"116 Meadow St, San Francisco, CA 94016" +179606,Apple Airpods Headphones,1,150,03/30/19 23:58,"50 Adams St, Seattle, WA 98101" +179607,Lightning Charging Cable,1,14.95,03/21/19 23:16,"650 12th St, San Francisco, CA 94016" +179608,Apple Airpods Headphones,1,150,03/22/19 16:34,"756 Highland St, New York City, NY 10001" +179609,AA Batteries (4-pack),1,3.84,03/06/19 22:50,"30 Jackson St, Seattle, WA 98101" +179610,USB-C Charging Cable,1,11.95,03/08/19 19:46,"950 5th St, San Francisco, CA 94016" +179611,Wired Headphones,1,11.99,03/29/19 21:25,"226 Church St, Boston, MA 02215" +179612,34in Ultrawide Monitor,1,379.99,03/08/19 17:28,"377 Highland St, Atlanta, GA 30301" +179613,iPhone,1,700,03/29/19 16:55,"598 5th St, Los Angeles, CA 90001" +179613,Wired Headphones,1,11.99,03/29/19 16:55,"598 5th St, Los Angeles, CA 90001" +179614,Apple Airpods Headphones,1,150,03/18/19 17:06,"878 West St, Boston, MA 02215" +179615,34in Ultrawide Monitor,1,379.99,03/19/19 21:44,"697 Lakeview St, New York City, NY 10001" +179616,Bose SoundSport Headphones,1,99.99,03/25/19 12:05,"375 Johnson St, Dallas, TX 75001" +179617,AAA Batteries (4-pack),2,2.99,03/04/19 12:07,"525 Center St, New York City, NY 10001" +179618,Wired Headphones,1,11.99,03/06/19 21:47,"876 River St, Seattle, WA 98101" +179619,AAA Batteries (4-pack),2,2.99,03/20/19 20:07,"948 Lakeview St, Dallas, TX 75001" +179620,Apple Airpods Headphones,1,150,03/11/19 16:10,"569 6th St, New York City, NY 10001" +179621,ThinkPad Laptop,1,999.99,03/13/19 10:08,"71 Chestnut St, Los Angeles, CA 90001" +179622,USB-C Charging Cable,1,11.95,03/29/19 17:37,"823 Dogwood St, Los Angeles, CA 90001" +179623,AAA Batteries (4-pack),1,2.99,03/04/19 20:25,"568 13th St, San Francisco, CA 94016" +179624,Macbook Pro Laptop,1,1700,03/18/19 09:59,"603 Willow St, Dallas, TX 75001" +179625,USB-C Charging Cable,2,11.95,03/06/19 17:49,"845 Church St, Austin, TX 73301" +179626,Lightning Charging Cable,1,14.95,03/12/19 17:57,"368 Washington St, New York City, NY 10001" +179627,USB-C Charging Cable,1,11.95,03/05/19 12:25,"153 Pine St, Seattle, WA 98101" +179628,27in 4K Gaming Monitor,1,389.99,03/19/19 23:37,"302 Park St, San Francisco, CA 94016" +179629,AAA Batteries (4-pack),1,2.99,03/26/19 00:11,"913 12th St, Los Angeles, CA 90001" +179630,AA Batteries (4-pack),4,3.84,03/25/19 16:46,"544 Dogwood St, Los Angeles, CA 90001" +179631,Lightning Charging Cable,1,14.95,03/02/19 11:09,"286 Elm St, Atlanta, GA 30301" +179632,27in 4K Gaming Monitor,1,389.99,03/13/19 09:29,"725 Jefferson St, New York City, NY 10001" +179633,Wired Headphones,1,11.99,03/02/19 21:50,"538 Lakeview St, Portland, OR 97035" +179634,Wired Headphones,1,11.99,03/15/19 14:21,"67 Lake St, San Francisco, CA 94016" +179635,34in Ultrawide Monitor,1,379.99,03/26/19 13:33,"810 Wilson St, San Francisco, CA 94016" +179636,USB-C Charging Cable,1,11.95,03/07/19 07:25,"565 10th St, New York City, NY 10001" +179637,USB-C Charging Cable,1,11.95,03/27/19 20:18,"836 Chestnut St, San Francisco, CA 94016" +179638,Vareebadd Phone,1,400,03/25/19 17:00,"210 South St, Atlanta, GA 30301" +179639,AAA Batteries (4-pack),2,2.99,03/24/19 21:32,"128 Lake St, New York City, NY 10001" +179640,AAA Batteries (4-pack),1,2.99,03/11/19 19:15,"829 Hill St, Austin, TX 73301" +179641,AA Batteries (4-pack),2,3.84,03/19/19 09:59,"547 12th St, New York City, NY 10001" +179642,Lightning Charging Cable,1,14.95,03/20/19 19:30,"874 Park St, Los Angeles, CA 90001" +179643,27in FHD Monitor,1,149.99,03/24/19 20:07,"266 14th St, New York City, NY 10001" +179644,AA Batteries (4-pack),2,3.84,03/10/19 13:35,"943 Ridge St, San Francisco, CA 94016" +179645,Bose SoundSport Headphones,1,99.99,03/05/19 05:58,"13 Lincoln St, Los Angeles, CA 90001" +179646,Bose SoundSport Headphones,1,99.99,03/19/19 00:47,"981 Sunset St, Atlanta, GA 30301" +179647,USB-C Charging Cable,1,11.95,03/22/19 10:07,"146 Forest St, San Francisco, CA 94016" +179648,AA Batteries (4-pack),1,3.84,03/04/19 12:03,"32 Lake St, New York City, NY 10001" +179649,USB-C Charging Cable,1,11.95,03/09/19 08:27,"603 Main St, New York City, NY 10001" +179650,Bose SoundSport Headphones,1,99.99,03/22/19 21:35,"419 Main St, Atlanta, GA 30301" +179651,20in Monitor,1,109.99,03/23/19 12:51,"19 Ridge St, Seattle, WA 98101" +179652,Wired Headphones,1,11.99,03/10/19 13:15,"985 Hickory St, Atlanta, GA 30301" +179653,USB-C Charging Cable,1,11.95,03/15/19 09:44,"112 Walnut St, Atlanta, GA 30301" +179654,USB-C Charging Cable,2,11.95,03/05/19 18:14,"367 11th St, Dallas, TX 75001" +179654,AA Batteries (4-pack),2,3.84,03/05/19 18:14,"367 11th St, Dallas, TX 75001" +179655,AAA Batteries (4-pack),1,2.99,03/13/19 09:18,"929 9th St, Atlanta, GA 30301" +179656,AA Batteries (4-pack),2,3.84,03/02/19 23:58,"521 8th St, Boston, MA 02215" +179657,iPhone,1,700,03/05/19 21:40,"361 Washington St, Boston, MA 02215" +179658,20in Monitor,1,109.99,03/26/19 14:06,"344 Sunset St, Austin, TX 73301" +179659,Wired Headphones,1,11.99,03/26/19 00:34,"249 Cedar St, Seattle, WA 98101" +179660,20in Monitor,1,109.99,03/01/19 15:17,"401 Adams St, Dallas, TX 75001" +179661,Lightning Charging Cable,1,14.95,03/25/19 17:21,"142 Cherry St, Los Angeles, CA 90001" +179662,AA Batteries (4-pack),1,3.84,03/12/19 18:00,"512 10th St, New York City, NY 10001" +179663,AA Batteries (4-pack),2,3.84,03/25/19 22:47,"447 Church St, Los Angeles, CA 90001" +179664,Google Phone,1,600,03/26/19 20:45,"508 Cedar St, San Francisco, CA 94016" +179665,USB-C Charging Cable,1,11.95,03/03/19 01:04,"962 Park St, Austin, TX 73301" +179666,USB-C Charging Cable,1,11.95,03/29/19 22:13,"236 12th St, San Francisco, CA 94016" +179667,Apple Airpods Headphones,1,150,03/21/19 11:59,"945 Park St, Los Angeles, CA 90001" +179668,USB-C Charging Cable,1,11.95,03/03/19 17:04,"278 Lakeview St, Los Angeles, CA 90001" +179669,34in Ultrawide Monitor,1,379.99,03/23/19 15:59,"584 Meadow St, Dallas, TX 75001" +179670,AAA Batteries (4-pack),1,2.99,03/09/19 15:51,"772 Pine St, Atlanta, GA 30301" +179671,AAA Batteries (4-pack),1,2.99,03/03/19 11:08,"57 Willow St, Atlanta, GA 30301" +179672,20in Monitor,1,109.99,03/14/19 19:58,"488 7th St, New York City, NY 10001" +179673,AAA Batteries (4-pack),2,2.99,03/17/19 21:34,"864 South St, New York City, NY 10001" +179674,AA Batteries (4-pack),1,3.84,03/27/19 11:35,"482 Lakeview St, Los Angeles, CA 90001" +179675,34in Ultrawide Monitor,1,379.99,03/09/19 19:38,"213 Spruce St, Los Angeles, CA 90001" +179676,Flatscreen TV,1,300,03/11/19 21:28,"361 Pine St, Portland, OR 97035" +179677,Wired Headphones,1,11.99,03/13/19 20:55,"984 Cedar St, Los Angeles, CA 90001" +179678,USB-C Charging Cable,2,11.95,03/02/19 19:48,"422 5th St, Dallas, TX 75001" +179679,Apple Airpods Headphones,1,150,03/15/19 09:50,"102 10th St, New York City, NY 10001" +179680,20in Monitor,1,109.99,03/04/19 13:55,"997 11th St, San Francisco, CA 94016" +179681,AAA Batteries (4-pack),1,2.99,03/25/19 18:57,"880 Ridge St, New York City, NY 10001" +179682,Bose SoundSport Headphones,1,99.99,03/02/19 10:57,"107 West St, Los Angeles, CA 90001" +179683,Bose SoundSport Headphones,1,99.99,03/12/19 23:17,"97 Pine St, Dallas, TX 75001" +179684,Macbook Pro Laptop,1,1700,03/08/19 13:38,"644 13th St, San Francisco, CA 94016" +179685,Apple Airpods Headphones,1,150,03/02/19 14:46,"765 Church St, New York City, NY 10001" +179686,Wired Headphones,1,11.99,03/18/19 11:27,"14 Chestnut St, San Francisco, CA 94016" +179687,Wired Headphones,1,11.99,03/29/19 11:18,"713 Elm St, San Francisco, CA 94016" +179688,Apple Airpods Headphones,1,150,03/21/19 00:30,"793 Center St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +179689,20in Monitor,1,109.99,03/27/19 13:04,"775 Ridge St, Atlanta, GA 30301" +179690,Google Phone,1,600,03/31/19 06:42,"851 Elm St, San Francisco, CA 94016" +179691,27in 4K Gaming Monitor,1,389.99,03/14/19 15:12,"705 Madison St, Atlanta, GA 30301" +179692,Vareebadd Phone,1,400,03/07/19 14:23,"698 Madison St, Atlanta, GA 30301" +179693,iPhone,1,700,03/14/19 07:10,"772 Meadow St, Atlanta, GA 30301" +179694,USB-C Charging Cable,1,11.95,03/04/19 20:37,"378 7th St, Dallas, TX 75001" +179695,AAA Batteries (4-pack),1,2.99,03/27/19 16:28,"210 Lake St, Atlanta, GA 30301" +179696,Flatscreen TV,1,300,03/30/19 11:39,"516 Elm St, Austin, TX 73301" +179697,Lightning Charging Cable,1,14.95,03/16/19 00:27,"372 7th St, Seattle, WA 98101" +179698,20in Monitor,1,109.99,03/12/19 19:55,"211 Lincoln St, San Francisco, CA 94016" +179699,Bose SoundSport Headphones,1,99.99,03/15/19 14:27,"112 4th St, New York City, NY 10001" +179700,34in Ultrawide Monitor,1,379.99,03/12/19 20:26,"75 2nd St, Dallas, TX 75001" +179701,LG Dryer,1,600.0,03/28/19 13:19,"268 Wilson St, San Francisco, CA 94016" +179702,Bose SoundSport Headphones,1,99.99,03/22/19 11:46,"850 Ridge St, Los Angeles, CA 90001" +179703,Flatscreen TV,1,300,03/27/19 16:17,"864 Cherry St, Los Angeles, CA 90001" +179704,Bose SoundSport Headphones,1,99.99,03/22/19 18:01,"538 Forest St, Austin, TX 73301" +179705,AA Batteries (4-pack),1,3.84,03/10/19 14:37,"211 12th St, New York City, NY 10001" +179706,34in Ultrawide Monitor,1,379.99,03/06/19 11:17,"297 Willow St, Los Angeles, CA 90001" +179707,27in 4K Gaming Monitor,1,389.99,03/11/19 13:11,"708 2nd St, Dallas, TX 75001" +179708,AA Batteries (4-pack),1,3.84,03/28/19 12:40,"637 Cherry St, Dallas, TX 75001" +179709,Apple Airpods Headphones,1,150,03/18/19 14:04,"838 13th St, San Francisco, CA 94016" +179710,USB-C Charging Cable,1,11.95,03/07/19 01:55,"213 2nd St, Seattle, WA 98101" +179711,Apple Airpods Headphones,1,150,03/06/19 23:34,"949 4th St, Boston, MA 02215" +179712,USB-C Charging Cable,1,11.95,03/08/19 14:19,"421 Jefferson St, San Francisco, CA 94016" +179713,USB-C Charging Cable,1,11.95,03/06/19 18:57,"387 Willow St, Los Angeles, CA 90001" +179714,Lightning Charging Cable,1,14.95,03/29/19 11:12,"770 1st St, San Francisco, CA 94016" +179715,Bose SoundSport Headphones,1,99.99,03/30/19 11:11,"221 North St, Los Angeles, CA 90001" +179716,LG Washing Machine,1,600.0,03/07/19 22:20,"584 Dogwood St, Portland, OR 97035" +179717,Wired Headphones,1,11.99,03/01/19 14:03,"769 11th St, Boston, MA 02215" +179718,34in Ultrawide Monitor,1,379.99,03/28/19 13:50,"88 Hickory St, Atlanta, GA 30301" +179719,Lightning Charging Cable,1,14.95,03/28/19 00:52,"289 Jackson St, Dallas, TX 75001" +179720,27in 4K Gaming Monitor,1,389.99,03/02/19 11:33,"241 Walnut St, San Francisco, CA 94016" +179721,Bose SoundSport Headphones,1,99.99,03/17/19 20:50,"343 Jackson St, Los Angeles, CA 90001" +179722,Macbook Pro Laptop,1,1700,03/17/19 21:45,"221 Willow St, Dallas, TX 75001" +179722,USB-C Charging Cable,1,11.95,03/17/19 21:45,"221 Willow St, Dallas, TX 75001" +179723,27in 4K Gaming Monitor,1,389.99,03/09/19 19:11,"30 North St, Portland, OR 97035" +179724,Apple Airpods Headphones,1,150,03/29/19 12:07,"881 14th St, San Francisco, CA 94016" +179725,Wired Headphones,1,11.99,03/16/19 10:26,"481 Center St, Dallas, TX 75001" +179726,USB-C Charging Cable,1,11.95,03/05/19 15:29,"570 Johnson St, Seattle, WA 98101" +179727,34in Ultrawide Monitor,1,379.99,03/10/19 23:14,"916 Elm St, Boston, MA 02215" +179728,AA Batteries (4-pack),2,3.84,03/20/19 10:31,"545 Walnut St, San Francisco, CA 94016" +179729,Flatscreen TV,1,300,03/29/19 19:53,"568 Jackson St, San Francisco, CA 94016" +179730,AAA Batteries (4-pack),1,2.99,03/29/19 14:41,"213 Maple St, San Francisco, CA 94016" +179731,AAA Batteries (4-pack),2,2.99,03/25/19 09:24,"555 North St, San Francisco, CA 94016" +179732,Lightning Charging Cable,1,14.95,03/05/19 09:13,"582 14th St, San Francisco, CA 94016" +179733,Lightning Charging Cable,1,14.95,03/07/19 09:44,"826 Lincoln St, Atlanta, GA 30301" +179734,Apple Airpods Headphones,1,150,03/01/19 09:07,"379 West St, San Francisco, CA 94016" +179735,AAA Batteries (4-pack),1,2.99,03/10/19 18:12,"979 Lakeview St, Los Angeles, CA 90001" +179736,AAA Batteries (4-pack),1,2.99,03/24/19 21:28,"938 Hill St, Portland, OR 97035" +179737,Apple Airpods Headphones,1,150,03/09/19 21:50,"715 Wilson St, San Francisco, CA 94016" +179738,iPhone,1,700,03/04/19 08:05,"243 12th St, Portland, OR 97035" +179739,Apple Airpods Headphones,1,150,03/07/19 16:18,"182 7th St, San Francisco, CA 94016" +179740,Lightning Charging Cable,1,14.95,03/22/19 09:07,"306 Wilson St, San Francisco, CA 94016" +179741,USB-C Charging Cable,1,11.95,03/06/19 17:15,"414 12th St, Austin, TX 73301" +179742,Lightning Charging Cable,1,14.95,03/04/19 01:10,"309 Spruce St, Boston, MA 02215" +179743,Wired Headphones,1,11.99,03/29/19 17:22,"756 7th St, Dallas, TX 75001" +179744,USB-C Charging Cable,2,11.95,03/24/19 09:19,"238 Madison St, San Francisco, CA 94016" +179745,Apple Airpods Headphones,1,150,03/13/19 21:20,"550 West St, Atlanta, GA 30301" +179746,AAA Batteries (4-pack),1,2.99,03/02/19 11:25,"109 2nd St, New York City, NY 10001" +179747,Apple Airpods Headphones,1,150,03/21/19 08:33,"479 Ridge St, San Francisco, CA 94016" +179748,USB-C Charging Cable,1,11.95,03/19/19 15:04,"910 14th St, San Francisco, CA 94016" +179749,AAA Batteries (4-pack),2,2.99,03/13/19 13:43,"169 Lakeview St, San Francisco, CA 94016" +179750,Wired Headphones,1,11.99,03/14/19 22:06,"887 Lakeview St, Boston, MA 02215" +179751,Apple Airpods Headphones,1,150,03/28/19 11:05,"327 Cedar St, San Francisco, CA 94016" +179752,Wired Headphones,1,11.99,03/16/19 16:38,"932 Pine St, San Francisco, CA 94016" +179753,27in 4K Gaming Monitor,1,389.99,03/02/19 20:20,"471 Lake St, Los Angeles, CA 90001" +179754,Vareebadd Phone,1,400,03/26/19 20:10,"682 5th St, San Francisco, CA 94016" +179755,iPhone,1,700,03/28/19 21:34,"342 Maple St, Seattle, WA 98101" +179755,Lightning Charging Cable,1,14.95,03/28/19 21:34,"342 Maple St, Seattle, WA 98101" +179756,34in Ultrawide Monitor,1,379.99,03/25/19 21:20,"229 Dogwood St, San Francisco, CA 94016" +179757,AAA Batteries (4-pack),2,2.99,03/07/19 22:12,"360 West St, Portland, OR 97035" +179758,Wired Headphones,1,11.99,03/08/19 15:26,"23 Willow St, New York City, NY 10001" +,,,,, +179759,Lightning Charging Cable,1,14.95,03/07/19 00:53,"101 Forest St, Los Angeles, CA 90001" +179760,Wired Headphones,1,11.99,03/21/19 21:57,"533 Hickory St, Los Angeles, CA 90001" +179761,AA Batteries (4-pack),1,3.84,03/13/19 22:53,"178 Lincoln St, San Francisco, CA 94016" +179762,USB-C Charging Cable,1,11.95,03/31/19 16:25,"637 Hill St, New York City, NY 10001" +179763,AAA Batteries (4-pack),1,2.99,03/25/19 09:05,"253 Spruce St, Portland, OR 97035" +179764,AA Batteries (4-pack),2,3.84,03/03/19 19:04,"32 Lincoln St, Los Angeles, CA 90001" +179764,Google Phone,1,600,03/03/19 19:04,"32 Lincoln St, Los Angeles, CA 90001" +179765,Vareebadd Phone,1,400,03/10/19 12:59,"512 Park St, Atlanta, GA 30301" +179765,USB-C Charging Cable,1,11.95,03/10/19 12:59,"512 Park St, Atlanta, GA 30301" +179766,27in FHD Monitor,1,149.99,03/05/19 15:18,"278 Jefferson St, New York City, NY 10001" +179767,USB-C Charging Cable,1,11.95,03/17/19 17:41,"601 Main St, Boston, MA 02215" +179768,27in 4K Gaming Monitor,1,389.99,03/14/19 17:07,"691 Cedar St, Austin, TX 73301" +179769,ThinkPad Laptop,1,999.99,03/10/19 13:52,"367 5th St, Portland, ME 04101" +179770,AA Batteries (4-pack),1,3.84,03/23/19 12:19,"26 Center St, San Francisco, CA 94016" +179771,34in Ultrawide Monitor,1,379.99,03/02/19 09:05,"688 Meadow St, San Francisco, CA 94016" +179772,27in 4K Gaming Monitor,1,389.99,03/22/19 21:51,"794 Meadow St, Portland, OR 97035" +179773,Apple Airpods Headphones,1,150,03/06/19 19:43,"551 Hill St, Atlanta, GA 30301" +179774,AA Batteries (4-pack),2,3.84,03/12/19 16:41,"865 Pine St, San Francisco, CA 94016" +179775,Lightning Charging Cable,1,14.95,03/04/19 17:27,"945 Main St, San Francisco, CA 94016" +179776,Apple Airpods Headphones,1,150,03/07/19 23:38,"360 Park St, Boston, MA 02215" +179777,USB-C Charging Cable,1,11.95,03/22/19 21:47,"719 1st St, San Francisco, CA 94016" +179778,Bose SoundSport Headphones,1,99.99,03/26/19 20:49,"545 10th St, Boston, MA 02215" +179779,USB-C Charging Cable,1,11.95,03/18/19 01:23,"284 Wilson St, San Francisco, CA 94016" +179780,Lightning Charging Cable,1,14.95,03/01/19 21:09,"240 7th St, San Francisco, CA 94016" +179781,Wired Headphones,1,11.99,03/13/19 22:47,"274 Church St, New York City, NY 10001" +179781,27in FHD Monitor,1,149.99,03/13/19 22:47,"274 Church St, New York City, NY 10001" +179782,Wired Headphones,1,11.99,03/21/19 13:26,"409 12th St, San Francisco, CA 94016" +179783,34in Ultrawide Monitor,1,379.99,03/30/19 09:13,"559 Forest St, Portland, OR 97035" +179784,Apple Airpods Headphones,1,150,03/18/19 07:10,"460 North St, Los Angeles, CA 90001" +179785,27in FHD Monitor,1,149.99,03/16/19 16:31,"575 8th St, Boston, MA 02215" +179786,ThinkPad Laptop,1,999.99,03/30/19 14:18,"934 Wilson St, Boston, MA 02215" +179787,Wired Headphones,1,11.99,03/01/19 12:34,"845 9th St, Austin, TX 73301" +179788,USB-C Charging Cable,1,11.95,03/07/19 18:47,"5 Main St, San Francisco, CA 94016" +179789,Wired Headphones,1,11.99,03/21/19 13:01,"993 Hickory St, Los Angeles, CA 90001" +179790,Bose SoundSport Headphones,1,99.99,03/07/19 15:20,"313 North St, San Francisco, CA 94016" +179791,Bose SoundSport Headphones,2,99.99,03/17/19 12:28,"301 Dogwood St, New York City, NY 10001" +179792,USB-C Charging Cable,1,11.95,03/07/19 06:20,"234 Center St, Boston, MA 02215" +179793,AAA Batteries (4-pack),2,2.99,03/02/19 16:39,"797 13th St, New York City, NY 10001" +179794,Wired Headphones,1,11.99,03/05/19 22:59,"421 Church St, San Francisco, CA 94016" +179795,AAA Batteries (4-pack),2,2.99,03/24/19 13:50,"978 Maple St, New York City, NY 10001" +179796,ThinkPad Laptop,1,999.99,03/18/19 15:16,"171 Lincoln St, San Francisco, CA 94016" +179797,iPhone,1,700,03/01/19 13:52,"640 Jefferson St, Boston, MA 02215" +179798,Wired Headphones,2,11.99,03/12/19 17:51,"335 7th St, Los Angeles, CA 90001" +179799,USB-C Charging Cable,2,11.95,03/18/19 10:03,"306 South St, Atlanta, GA 30301" +179800,27in FHD Monitor,1,149.99,03/13/19 17:54,"318 Hickory St, Portland, OR 97035" +179801,Flatscreen TV,1,300,03/24/19 15:00,"380 Wilson St, New York City, NY 10001" +179802,ThinkPad Laptop,1,999.99,03/15/19 10:50,"407 Sunset St, San Francisco, CA 94016" +179803,27in FHD Monitor,1,149.99,03/23/19 10:50,"740 Madison St, New York City, NY 10001" +179804,27in 4K Gaming Monitor,1,389.99,03/16/19 19:35,"195 Jackson St, San Francisco, CA 94016" +179805,27in FHD Monitor,1,149.99,03/13/19 20:45,"909 Chestnut St, San Francisco, CA 94016" +179806,Lightning Charging Cable,1,14.95,03/06/19 11:08,"795 West St, Boston, MA 02215" +179807,Lightning Charging Cable,1,14.95,03/25/19 20:09,"603 Hickory St, New York City, NY 10001" +179808,USB-C Charging Cable,1,11.95,03/08/19 15:09,"205 River St, San Francisco, CA 94016" +179809,Apple Airpods Headphones,1,150,03/08/19 10:12,"746 Jackson St, Atlanta, GA 30301" +179810,Wired Headphones,1,11.99,03/05/19 22:05,"909 Elm St, New York City, NY 10001" +179811,Bose SoundSport Headphones,1,99.99,03/26/19 21:25,"537 2nd St, Seattle, WA 98101" +179812,AA Batteries (4-pack),2,3.84,03/22/19 14:13,"456 2nd St, Los Angeles, CA 90001" +179813,AAA Batteries (4-pack),1,2.99,03/08/19 11:34,"514 Walnut St, Los Angeles, CA 90001" +179814,USB-C Charging Cable,1,11.95,03/16/19 19:13,"56 Elm St, San Francisco, CA 94016" +179815,34in Ultrawide Monitor,1,379.99,03/02/19 22:18,"145 Forest St, Portland, ME 04101" +179816,iPhone,1,700,03/09/19 17:42,"57 6th St, Dallas, TX 75001" +179816,Apple Airpods Headphones,1,150,03/09/19 17:42,"57 6th St, Dallas, TX 75001" +179817,AAA Batteries (4-pack),1,2.99,03/11/19 13:48,"358 Jefferson St, Boston, MA 02215" +179818,Bose SoundSport Headphones,1,99.99,03/12/19 01:42,"855 Hickory St, Boston, MA 02215" +179819,iPhone,1,700,03/14/19 23:06,"422 Park St, San Francisco, CA 94016" +179820,AA Batteries (4-pack),1,3.84,03/16/19 09:58,"673 7th St, Dallas, TX 75001" +179821,Apple Airpods Headphones,1,150,03/24/19 14:49,"233 Sunset St, New York City, NY 10001" +179822,Lightning Charging Cable,1,14.95,03/24/19 13:14,"595 Main St, Los Angeles, CA 90001" +179823,Lightning Charging Cable,1,14.95,03/27/19 20:07,"982 Park St, Portland, ME 04101" +179824,AA Batteries (4-pack),1,3.84,03/22/19 22:48,"261 10th St, Portland, OR 97035" +179825,iPhone,1,700,03/10/19 22:26,"5 Walnut St, Boston, MA 02215" +179826,Wired Headphones,2,11.99,03/20/19 17:04,"976 South St, New York City, NY 10001" +179827,27in 4K Gaming Monitor,1,389.99,03/27/19 17:18,"228 12th St, New York City, NY 10001" +179828,AA Batteries (4-pack),1,3.84,03/21/19 12:18,"923 10th St, Los Angeles, CA 90001" +179829,Bose SoundSport Headphones,1,99.99,03/20/19 21:51,"356 Cedar St, New York City, NY 10001" +179830,Lightning Charging Cable,1,14.95,03/15/19 21:24,"612 River St, Dallas, TX 75001" +179831,Apple Airpods Headphones,1,150,03/02/19 15:27,"928 Maple St, San Francisco, CA 94016" +179832,USB-C Charging Cable,1,11.95,03/15/19 15:09,"990 River St, Boston, MA 02215" +179833,AAA Batteries (4-pack),1,2.99,03/28/19 16:04,"272 Washington St, San Francisco, CA 94016" +179834,AA Batteries (4-pack),1,3.84,03/25/19 13:42,"467 Cedar St, Los Angeles, CA 90001" +179835,USB-C Charging Cable,1,11.95,03/15/19 23:27,"613 Chestnut St, New York City, NY 10001" +179836,27in 4K Gaming Monitor,1,389.99,03/28/19 06:19,"848 Jackson St, Atlanta, GA 30301" +179837,iPhone,1,700,03/05/19 13:04,"801 Jefferson St, Boston, MA 02215" +179838,Google Phone,1,600,03/28/19 15:04,"86 Cherry St, Dallas, TX 75001" +179839,Bose SoundSport Headphones,1,99.99,03/18/19 16:33,"410 Hickory St, Seattle, WA 98101" +179840,27in FHD Monitor,1,149.99,03/26/19 16:40,"119 Wilson St, Los Angeles, CA 90001" +179841,Flatscreen TV,1,300,03/07/19 06:37,"667 Hill St, Los Angeles, CA 90001" +179842,Apple Airpods Headphones,1,150,03/14/19 08:34,"344 Willow St, San Francisco, CA 94016" +179843,Bose SoundSport Headphones,1,99.99,03/04/19 17:15,"847 Lakeview St, New York City, NY 10001" +179844,27in FHD Monitor,1,149.99,03/02/19 07:55,"430 West St, Atlanta, GA 30301" +179845,Bose SoundSport Headphones,1,99.99,03/09/19 16:42,"487 Lakeview St, New York City, NY 10001" +179846,USB-C Charging Cable,1,11.95,03/12/19 22:10,"598 North St, Portland, OR 97035" +179847,USB-C Charging Cable,1,11.95,03/24/19 22:51,"971 Maple St, Portland, OR 97035" +179848,Google Phone,1,600,03/13/19 19:09,"917 Meadow St, Austin, TX 73301" +179849,USB-C Charging Cable,1,11.95,03/18/19 13:59,"744 Park St, Atlanta, GA 30301" +179850,Flatscreen TV,1,300,03/17/19 09:03,"277 Dogwood St, Los Angeles, CA 90001" +179851,Wired Headphones,1,11.99,03/02/19 21:24,"663 Elm St, New York City, NY 10001" +179852,Wired Headphones,1,11.99,03/27/19 14:27,"861 14th St, Los Angeles, CA 90001" +179853,Wired Headphones,1,11.99,03/22/19 00:49,"866 Cherry St, Los Angeles, CA 90001" +179854,Lightning Charging Cable,1,14.95,03/09/19 15:06,"725 Wilson St, Portland, OR 97035" +179855,AAA Batteries (4-pack),1,2.99,03/07/19 09:58,"923 8th St, Austin, TX 73301" +179856,AAA Batteries (4-pack),2,2.99,03/20/19 23:40,"637 Ridge St, San Francisco, CA 94016" +179857,Bose SoundSport Headphones,1,99.99,03/16/19 17:43,"552 Willow St, Atlanta, GA 30301" +179858,Lightning Charging Cable,1,14.95,03/11/19 13:26,"619 14th St, San Francisco, CA 94016" +179859,Apple Airpods Headphones,1,150,03/15/19 12:59,"162 12th St, Atlanta, GA 30301" +179860,AA Batteries (4-pack),1,3.84,03/20/19 12:16,"555 Cedar St, Boston, MA 02215" +179861,AAA Batteries (4-pack),1,2.99,03/30/19 20:35,"57 6th St, Dallas, TX 75001" +179862,AAA Batteries (4-pack),1,2.99,03/18/19 13:16,"819 South St, Boston, MA 02215" +179863,AAA Batteries (4-pack),3,2.99,03/14/19 09:10,"437 Spruce St, San Francisco, CA 94016" +179864,Vareebadd Phone,1,400,03/19/19 09:35,"320 North St, Seattle, WA 98101" +179865,27in 4K Gaming Monitor,1,389.99,03/14/19 22:57,"310 Walnut St, Los Angeles, CA 90001" +179866,27in FHD Monitor,1,149.99,03/05/19 16:08,"234 West St, San Francisco, CA 94016" +179867,AAA Batteries (4-pack),2,2.99,03/06/19 10:59,"131 Hill St, New York City, NY 10001" +179868,Wired Headphones,1,11.99,03/31/19 13:29,"904 Cherry St, Dallas, TX 75001" +179869,USB-C Charging Cable,1,11.95,03/10/19 11:45,"350 Maple St, Atlanta, GA 30301" +179870,Bose SoundSport Headphones,1,99.99,03/15/19 08:20,"89 13th St, San Francisco, CA 94016" +179871,AAA Batteries (4-pack),1,2.99,03/11/19 12:53,"886 Jackson St, Seattle, WA 98101" +179872,USB-C Charging Cable,1,11.95,03/31/19 11:34,"298 Elm St, Los Angeles, CA 90001" +179873,Wired Headphones,1,11.99,03/04/19 14:41,"454 7th St, Austin, TX 73301" +179874,USB-C Charging Cable,1,11.95,03/25/19 11:02,"128 Lincoln St, Los Angeles, CA 90001" +179875,AAA Batteries (4-pack),2,2.99,03/16/19 23:01,"779 Hill St, Atlanta, GA 30301" +179876,AAA Batteries (4-pack),1,2.99,03/18/19 15:27,"765 Elm St, New York City, NY 10001" +179877,Bose SoundSport Headphones,1,99.99,03/05/19 22:32,"130 Highland St, San Francisco, CA 94016" +179878,AAA Batteries (4-pack),2,2.99,03/21/19 09:06,"625 Lakeview St, Austin, TX 73301" +179879,34in Ultrawide Monitor,1,379.99,03/03/19 07:08,"439 Chestnut St, New York City, NY 10001" +179880,Lightning Charging Cable,1,14.95,03/31/19 08:57,"20 9th St, San Francisco, CA 94016" +179881,Lightning Charging Cable,1,14.95,03/26/19 19:56,"168 6th St, Dallas, TX 75001" +179882,20in Monitor,1,109.99,03/19/19 21:47,"20 Hill St, San Francisco, CA 94016" +179883,20in Monitor,1,109.99,03/05/19 22:11,"75 Church St, San Francisco, CA 94016" +179884,Lightning Charging Cable,1,14.95,03/27/19 07:48,"955 Washington St, San Francisco, CA 94016" +179885,Lightning Charging Cable,1,14.95,03/25/19 12:24,"510 Wilson St, Dallas, TX 75001" +179886,20in Monitor,2,109.99,03/24/19 23:18,"270 Elm St, Boston, MA 02215" +179887,Lightning Charging Cable,1,14.95,03/22/19 16:50,"460 Pine St, Los Angeles, CA 90001" +179888,AA Batteries (4-pack),1,3.84,03/16/19 09:50,"290 Jefferson St, Seattle, WA 98101" +179889,Apple Airpods Headphones,1,150,03/20/19 06:35,"689 11th St, San Francisco, CA 94016" +179890,USB-C Charging Cable,1,11.95,03/07/19 13:26,"216 Spruce St, Boston, MA 02215" +179891,USB-C Charging Cable,1,11.95,03/16/19 15:30,"553 5th St, Dallas, TX 75001" +179892,Apple Airpods Headphones,1,150,03/25/19 22:04,"109 Dogwood St, San Francisco, CA 94016" +179893,Lightning Charging Cable,1,14.95,03/26/19 08:32,"816 5th St, San Francisco, CA 94016" +179894,Apple Airpods Headphones,1,150,03/20/19 17:30,"107 Jefferson St, Seattle, WA 98101" +179895,Wired Headphones,1,11.99,03/17/19 12:16,"908 Ridge St, Seattle, WA 98101" +179895,Apple Airpods Headphones,1,150,03/17/19 12:16,"908 Ridge St, Seattle, WA 98101" +179896,34in Ultrawide Monitor,1,379.99,03/27/19 21:50,"494 Maple St, Los Angeles, CA 90001" +179897,AA Batteries (4-pack),1,3.84,03/09/19 18:46,"271 South St, Seattle, WA 98101" +179898,AAA Batteries (4-pack),1,2.99,03/06/19 11:44,"216 Cedar St, Los Angeles, CA 90001" +179899,USB-C Charging Cable,1,11.95,03/22/19 15:06,"609 1st St, Seattle, WA 98101" +179900,Vareebadd Phone,1,400,03/01/19 16:07,"593 13th St, San Francisco, CA 94016" +179901,iPhone,1,700,03/10/19 13:35,"455 Hill St, Atlanta, GA 30301" +179902,Google Phone,1,600,03/14/19 17:30,"287 7th St, San Francisco, CA 94016" +179903,Lightning Charging Cable,1,14.95,03/13/19 18:56,"391 10th St, San Francisco, CA 94016" +179904,AAA Batteries (4-pack),1,2.99,03/13/19 19:53,"722 West St, New York City, NY 10001" +179905,Flatscreen TV,1,300,03/11/19 21:17,"577 Cherry St, San Francisco, CA 94016" +179906,USB-C Charging Cable,1,11.95,03/30/19 14:19,"940 Meadow St, New York City, NY 10001" +179907,27in FHD Monitor,1,149.99,03/23/19 21:15,"594 Meadow St, Atlanta, GA 30301" +179908,AAA Batteries (4-pack),1,2.99,03/10/19 09:50,"87 12th St, Portland, OR 97035" +179909,AA Batteries (4-pack),1,3.84,03/19/19 04:17,"853 Forest St, Los Angeles, CA 90001" +179910,USB-C Charging Cable,1,11.95,03/17/19 07:26,"536 Lakeview St, New York City, NY 10001" +179911,Lightning Charging Cable,1,14.95,03/29/19 12:34,"161 Jefferson St, Seattle, WA 98101" +179912,Lightning Charging Cable,1,14.95,03/20/19 14:11,"332 Highland St, Portland, OR 97035" +179913,27in FHD Monitor,1,149.99,03/28/19 10:56,"154 10th St, Atlanta, GA 30301" +179914,iPhone,1,700,03/05/19 22:27,"317 Cedar St, Boston, MA 02215" +179915,Lightning Charging Cable,1,14.95,03/06/19 12:05,"540 Johnson St, Portland, OR 97035" +179916,AAA Batteries (4-pack),1,2.99,03/11/19 20:35,"123 Jefferson St, Austin, TX 73301" +179917,Wired Headphones,1,11.99,03/14/19 21:46,"572 Cherry St, San Francisco, CA 94016" +179918,AAA Batteries (4-pack),1,2.99,03/08/19 19:10,"321 Adams St, Los Angeles, CA 90001" +179919,Wired Headphones,1,11.99,03/15/19 12:02,"131 14th St, New York City, NY 10001" +179920,Lightning Charging Cable,2,14.95,03/24/19 10:11,"894 Lake St, New York City, NY 10001" +179921,AA Batteries (4-pack),1,3.84,03/26/19 15:39,"911 Spruce St, Boston, MA 02215" +179922,Lightning Charging Cable,1,14.95,03/19/19 14:05,"727 Willow St, New York City, NY 10001" +179923,Lightning Charging Cable,1,14.95,03/05/19 11:03,"471 6th St, New York City, NY 10001" +179924,27in 4K Gaming Monitor,1,389.99,03/20/19 07:54,"793 11th St, Los Angeles, CA 90001" +179925,Lightning Charging Cable,3,14.95,03/12/19 10:26,"558 7th St, Los Angeles, CA 90001" +179926,USB-C Charging Cable,1,11.95,03/24/19 21:51,"715 8th St, San Francisco, CA 94016" +179927,Bose SoundSport Headphones,1,99.99,03/20/19 15:45,"293 Dogwood St, San Francisco, CA 94016" +179928,iPhone,1,700,03/06/19 09:16,"45 5th St, San Francisco, CA 94016" +179928,Lightning Charging Cable,1,14.95,03/06/19 09:16,"45 5th St, San Francisco, CA 94016" +179929,AAA Batteries (4-pack),4,2.99,03/13/19 11:54,"942 Pine St, Los Angeles, CA 90001" +179930,Flatscreen TV,1,300,03/28/19 08:03,"726 Lakeview St, New York City, NY 10001" +179931,Lightning Charging Cable,1,14.95,03/09/19 20:26,"454 Center St, San Francisco, CA 94016" +179932,USB-C Charging Cable,1,11.95,03/12/19 23:03,"462 14th St, Los Angeles, CA 90001" +179933,Lightning Charging Cable,1,14.95,03/20/19 23:22,"5 Dogwood St, Austin, TX 73301" +179934,27in FHD Monitor,1,149.99,03/11/19 08:25,"43 4th St, San Francisco, CA 94016" +179935,Lightning Charging Cable,1,14.95,03/11/19 13:11,"70 Cherry St, Austin, TX 73301" +179936,AAA Batteries (4-pack),1,2.99,03/18/19 09:35,"158 Johnson St, San Francisco, CA 94016" +179936,USB-C Charging Cable,1,11.95,03/18/19 09:35,"158 Johnson St, San Francisco, CA 94016" +179937,Lightning Charging Cable,1,14.95,03/30/19 21:14,"357 12th St, New York City, NY 10001" +179938,Lightning Charging Cable,1,14.95,03/21/19 10:19,"304 7th St, Boston, MA 02215" +179939,AA Batteries (4-pack),2,3.84,03/09/19 23:27,"746 Lakeview St, New York City, NY 10001" +179940,USB-C Charging Cable,1,11.95,03/26/19 09:13,"559 Walnut St, New York City, NY 10001" +179941,USB-C Charging Cable,1,11.95,03/26/19 12:26,"844 9th St, San Francisco, CA 94016" +179942,20in Monitor,1,109.99,03/02/19 15:15,"101 Cherry St, San Francisco, CA 94016" +179943,27in FHD Monitor,1,149.99,03/19/19 12:41,"992 Meadow St, Boston, MA 02215" +179944,AAA Batteries (4-pack),1,2.99,03/24/19 09:51,"324 Walnut St, San Francisco, CA 94016" +179945,AAA Batteries (4-pack),4,2.99,03/22/19 16:30,"10 Cedar St, San Francisco, CA 94016" +179946,Bose SoundSport Headphones,1,99.99,03/17/19 17:58,"180 Chestnut St, San Francisco, CA 94016" +179947,20in Monitor,1,109.99,03/20/19 10:42,"204 11th St, Austin, TX 73301" +179948,Lightning Charging Cable,1,14.95,03/11/19 21:07,"617 10th St, San Francisco, CA 94016" +179949,Apple Airpods Headphones,1,150,03/02/19 12:06,"583 Jackson St, Los Angeles, CA 90001" +179950,ThinkPad Laptop,1,999.99,03/29/19 17:15,"771 Madison St, Seattle, WA 98101" +179951,USB-C Charging Cable,1,11.95,03/17/19 11:35,"595 Center St, Portland, OR 97035" +179952,Macbook Pro Laptop,1,1700,03/01/19 17:50,"729 Hickory St, Los Angeles, CA 90001" +179953,Google Phone,1,600,03/19/19 13:06,"788 Chestnut St, Atlanta, GA 30301" +179954,USB-C Charging Cable,1,11.95,03/07/19 20:14,"816 5th St, San Francisco, CA 94016" +179955,Apple Airpods Headphones,1,150,03/30/19 20:42,"397 1st St, Portland, OR 97035" +179956,AAA Batteries (4-pack),1,2.99,03/26/19 11:14,"287 9th St, Seattle, WA 98101" +179957,AA Batteries (4-pack),1,3.84,03/21/19 03:08,"356 Pine St, Los Angeles, CA 90001" +179958,Wired Headphones,1,11.99,03/11/19 18:12,"200 Elm St, San Francisco, CA 94016" +179959,iPhone,1,700,03/02/19 21:50,"554 4th St, San Francisco, CA 94016" +179960,Apple Airpods Headphones,1,150,03/16/19 22:49,"394 North St, San Francisco, CA 94016" +179961,AA Batteries (4-pack),1,3.84,03/27/19 15:09,"810 Maple St, New York City, NY 10001" +179962,27in FHD Monitor,1,149.99,03/30/19 22:10,"887 West St, San Francisco, CA 94016" +179963,AA Batteries (4-pack),1,3.84,03/31/19 14:24,"406 Jackson St, San Francisco, CA 94016" +179964,27in FHD Monitor,1,149.99,03/28/19 20:17,"545 River St, San Francisco, CA 94016" +179965,Lightning Charging Cable,1,14.95,03/25/19 08:41,"68 Walnut St, Los Angeles, CA 90001" +179966,AA Batteries (4-pack),1,3.84,03/29/19 00:21,"277 Highland St, Dallas, TX 75001" +179967,iPhone,1,700,03/23/19 16:26,"93 9th St, Atlanta, GA 30301" +179968,Bose SoundSport Headphones,1,99.99,03/20/19 16:04,"413 Lincoln St, Boston, MA 02215" +179969,Bose SoundSport Headphones,1,99.99,03/08/19 21:37,"956 River St, New York City, NY 10001" +179970,USB-C Charging Cable,1,11.95,03/18/19 15:42,"355 Lakeview St, Los Angeles, CA 90001" +179971,AAA Batteries (4-pack),4,2.99,03/01/19 14:17,"243 Park St, New York City, NY 10001" +179972,Google Phone,1,600,03/15/19 09:29,"560 5th St, Los Angeles, CA 90001" +179973,USB-C Charging Cable,1,11.95,03/23/19 08:52,"303 Lincoln St, Seattle, WA 98101" +179974,Bose SoundSport Headphones,1,99.99,03/03/19 15:33,"571 Maple St, New York City, NY 10001" +179975,AAA Batteries (4-pack),3,2.99,03/12/19 17:39,"612 Church St, Los Angeles, CA 90001" +179976,AA Batteries (4-pack),2,3.84,03/07/19 17:41,"201 North St, Portland, OR 97035" +179977,27in FHD Monitor,1,149.99,03/15/19 18:22,"452 4th St, Los Angeles, CA 90001" +179978,iPhone,1,700,03/04/19 20:24,"988 11th St, Los Angeles, CA 90001" +179979,AAA Batteries (4-pack),1,2.99,03/06/19 17:18,"361 14th St, Los Angeles, CA 90001" +179980,Apple Airpods Headphones,1,150,03/29/19 21:41,"655 7th St, New York City, NY 10001" +179981,Lightning Charging Cable,1,14.95,03/11/19 18:22,"616 Elm St, Seattle, WA 98101" +179982,Google Phone,1,600,03/13/19 11:11,"191 Adams St, San Francisco, CA 94016" +179983,USB-C Charging Cable,1,11.95,03/13/19 22:10,"689 Highland St, San Francisco, CA 94016" +179984,AA Batteries (4-pack),2,3.84,03/09/19 14:16,"130 12th St, New York City, NY 10001" +179985,Macbook Pro Laptop,1,1700,03/13/19 07:53,"627 Spruce St, Austin, TX 73301" +179986,Bose SoundSport Headphones,1,99.99,03/31/19 00:04,"298 Cherry St, San Francisco, CA 94016" +179987,Lightning Charging Cable,1,14.95,03/16/19 02:16,"129 Adams St, Atlanta, GA 30301" +179988,AAA Batteries (4-pack),1,2.99,03/30/19 09:32,"668 Washington St, Atlanta, GA 30301" +179989,Lightning Charging Cable,1,14.95,03/21/19 18:01,"67 4th St, San Francisco, CA 94016" +179990,AA Batteries (4-pack),1,3.84,03/27/19 09:51,"824 Jackson St, Atlanta, GA 30301" +179991,USB-C Charging Cable,1,11.95,03/01/19 09:41,"856 Elm St, San Francisco, CA 94016" +179992,iPhone,1,700,03/13/19 17:41,"35 10th St, San Francisco, CA 94016" +179992,Lightning Charging Cable,1,14.95,03/13/19 17:41,"35 10th St, San Francisco, CA 94016" +179993,AAA Batteries (4-pack),2,2.99,03/05/19 18:44,"593 Hill St, San Francisco, CA 94016" +179994,Flatscreen TV,1,300,03/07/19 19:16,"606 Walnut St, Boston, MA 02215" +179995,AAA Batteries (4-pack),2,2.99,03/12/19 22:26,"864 Elm St, Dallas, TX 75001" +179996,Wired Headphones,1,11.99,03/26/19 16:50,"633 Lakeview St, Boston, MA 02215" +179997,27in 4K Gaming Monitor,1,389.99,03/20/19 01:52,"99 Willow St, San Francisco, CA 94016" +179998,27in FHD Monitor,1,149.99,03/09/19 20:53,"454 Willow St, New York City, NY 10001" +179999,Macbook Pro Laptop,1,1700,03/28/19 19:30,"657 Chestnut St, Seattle, WA 98101" +180000,34in Ultrawide Monitor,1,379.99,03/22/19 19:43,"423 6th St, Los Angeles, CA 90001" +180001,AA Batteries (4-pack),1,3.84,03/14/19 05:47,"637 Lakeview St, Boston, MA 02215" +180002,Bose SoundSport Headphones,1,99.99,03/04/19 22:00,"854 9th St, Austin, TX 73301" +180003,27in 4K Gaming Monitor,1,389.99,03/30/19 16:56,"305 Dogwood St, Atlanta, GA 30301" +180004,AAA Batteries (4-pack),1,2.99,03/11/19 17:54,"713 Main St, Seattle, WA 98101" +180005,AAA Batteries (4-pack),2,2.99,03/06/19 15:45,"680 Elm St, San Francisco, CA 94016" +180006,AAA Batteries (4-pack),1,2.99,03/09/19 13:46,"977 Jackson St, Dallas, TX 75001" +180007,Macbook Pro Laptop,1,1700,03/19/19 16:24,"117 11th St, New York City, NY 10001" +180008,AAA Batteries (4-pack),1,2.99,03/15/19 21:55,"114 North St, New York City, NY 10001" +180009,Wired Headphones,1,11.99,03/15/19 19:59,"213 Lake St, New York City, NY 10001" +180010,Bose SoundSport Headphones,2,99.99,03/27/19 00:18,"643 Chestnut St, New York City, NY 10001" +180011,Apple Airpods Headphones,1,150,03/06/19 20:20,"984 Walnut St, San Francisco, CA 94016" +180011,iPhone,1,700,03/06/19 20:20,"984 Walnut St, San Francisco, CA 94016" +180012,Lightning Charging Cable,1,14.95,03/15/19 11:04,"401 River St, Los Angeles, CA 90001" +180013,USB-C Charging Cable,1,11.95,03/17/19 19:08,"214 Sunset St, San Francisco, CA 94016" +180014,Macbook Pro Laptop,1,1700,03/20/19 18:42,"587 Forest St, Portland, OR 97035" +180015,Bose SoundSport Headphones,1,99.99,03/15/19 15:50,"382 Hickory St, San Francisco, CA 94016" +180016,ThinkPad Laptop,1,999.99,03/08/19 10:54,"701 9th St, Seattle, WA 98101" +180017,iPhone,1,700,03/31/19 21:35,"906 Cedar St, San Francisco, CA 94016" +180017,Lightning Charging Cable,1,14.95,03/31/19 21:35,"906 Cedar St, San Francisco, CA 94016" +180018,Wired Headphones,1,11.99,03/03/19 19:20,"618 Jackson St, Portland, OR 97035" +180019,Bose SoundSport Headphones,1,99.99,03/21/19 12:31,"239 Park St, San Francisco, CA 94016" +180020,Vareebadd Phone,1,400,03/28/19 12:29,"769 Dogwood St, San Francisco, CA 94016" +180021,Google Phone,1,600,03/02/19 11:07,"401 Willow St, New York City, NY 10001" +180022,Google Phone,1,600,03/15/19 05:21,"300 Chestnut St, Seattle, WA 98101" +180023,AA Batteries (4-pack),1,3.84,03/31/19 01:59,"258 Walnut St, San Francisco, CA 94016" +180023,Bose SoundSport Headphones,1,99.99,03/31/19 01:59,"258 Walnut St, San Francisco, CA 94016" +180024,LG Dryer,1,600.0,03/29/19 16:04,"903 Hickory St, Los Angeles, CA 90001" +180025,34in Ultrawide Monitor,1,379.99,03/11/19 16:39,"849 Madison St, Dallas, TX 75001" +180026,USB-C Charging Cable,1,11.95,03/23/19 10:19,"803 Hill St, Portland, OR 97035" +180027,Google Phone,1,600,03/14/19 19:59,"602 4th St, Boston, MA 02215" +180028,Google Phone,1,600,03/15/19 00:59,"76 Johnson St, San Francisco, CA 94016" +180029,Bose SoundSport Headphones,2,99.99,03/07/19 09:15,"338 Chestnut St, San Francisco, CA 94016" +180030,USB-C Charging Cable,2,11.95,03/23/19 18:58,"440 Wilson St, San Francisco, CA 94016" +180031,34in Ultrawide Monitor,1,379.99,03/07/19 20:08,"453 Ridge St, Seattle, WA 98101" +180032,27in FHD Monitor,1,149.99,03/08/19 19:38,"188 Chestnut St, Boston, MA 02215" +180033,Wired Headphones,1,11.99,03/16/19 16:10,"347 Park St, San Francisco, CA 94016" +180034,Google Phone,1,600,03/28/19 11:56,"559 9th St, Portland, ME 04101" +180035,AAA Batteries (4-pack),1,2.99,03/26/19 09:09,"453 10th St, Los Angeles, CA 90001" +180036,Bose SoundSport Headphones,1,99.99,03/11/19 20:46,"763 Highland St, Dallas, TX 75001" +180037,AA Batteries (4-pack),1,3.84,03/26/19 19:15,"785 Walnut St, San Francisco, CA 94016" +180038,USB-C Charging Cable,1,11.95,03/05/19 12:21,"680 Park St, Los Angeles, CA 90001" +180039,AA Batteries (4-pack),1,3.84,03/03/19 20:14,"331 Chestnut St, Seattle, WA 98101" +180040,Macbook Pro Laptop,1,1700,03/22/19 11:36,"122 Jefferson St, Los Angeles, CA 90001" +180041,20in Monitor,1,109.99,03/10/19 15:54,"662 2nd St, San Francisco, CA 94016" +180042,Vareebadd Phone,1,400,04/01/19 04:04,"214 Walnut St, Los Angeles, CA 90001" +180043,Google Phone,1,600,03/17/19 12:54,"879 Park St, Atlanta, GA 30301" +180044,27in FHD Monitor,1,149.99,03/10/19 06:58,"150 Jefferson St, New York City, NY 10001" +180045,USB-C Charging Cable,1,11.95,03/19/19 11:19,"72 11th St, San Francisco, CA 94016" +180046,Vareebadd Phone,1,400,03/21/19 13:43,"970 Jackson St, San Francisco, CA 94016" +180046,Bose SoundSport Headphones,1,99.99,03/21/19 13:43,"970 Jackson St, San Francisco, CA 94016" +180047,AA Batteries (4-pack),1,3.84,03/28/19 16:02,"94 9th St, Dallas, TX 75001" +180048,Bose SoundSport Headphones,1,99.99,03/21/19 15:05,"146 Forest St, Atlanta, GA 30301" +180048,Wired Headphones,1,11.99,03/21/19 15:05,"146 Forest St, Atlanta, GA 30301" +180049,USB-C Charging Cable,1,11.95,03/26/19 08:35,"651 5th St, San Francisco, CA 94016" +180050,27in 4K Gaming Monitor,1,389.99,03/22/19 21:40,"327 5th St, Portland, OR 97035" +180051,34in Ultrawide Monitor,1,379.99,03/26/19 09:00,"157 Lake St, Seattle, WA 98101" +180052,20in Monitor,1,109.99,03/31/19 20:42,"992 Dogwood St, San Francisco, CA 94016" +180053,AAA Batteries (4-pack),1,2.99,03/12/19 16:51,"980 Highland St, Portland, OR 97035" +180054,Google Phone,1,600,03/12/19 17:02,"701 West St, Boston, MA 02215" +180055,Bose SoundSport Headphones,1,99.99,03/11/19 16:24,"991 4th St, Portland, OR 97035" +180056,USB-C Charging Cable,2,11.95,03/18/19 13:06,"111 Madison St, San Francisco, CA 94016" +180057,27in FHD Monitor,1,149.99,03/05/19 22:05,"861 Church St, Austin, TX 73301" +180058,USB-C Charging Cable,1,11.95,03/21/19 22:42,"448 8th St, San Francisco, CA 94016" +180059,USB-C Charging Cable,1,11.95,03/17/19 20:27,"864 Center St, Dallas, TX 75001" +180060,Lightning Charging Cable,2,14.95,03/08/19 22:42,"50 Wilson St, Portland, OR 97035" +180061,Lightning Charging Cable,1,14.95,03/02/19 18:25,"493 2nd St, Atlanta, GA 30301" +180062,AA Batteries (4-pack),1,3.84,03/23/19 20:00,"360 12th St, Los Angeles, CA 90001" +180063,AA Batteries (4-pack),2,3.84,03/22/19 11:13,"680 Cherry St, San Francisco, CA 94016" +180064,Bose SoundSport Headphones,1,99.99,03/07/19 08:37,"105 Center St, Los Angeles, CA 90001" +180065,AAA Batteries (4-pack),1,2.99,03/21/19 23:11,"422 Adams St, Dallas, TX 75001" +180066,AA Batteries (4-pack),1,3.84,03/18/19 21:22,"821 2nd St, San Francisco, CA 94016" +180067,Wired Headphones,1,11.99,03/01/19 15:15,"685 Hill St, Los Angeles, CA 90001" +180068,27in FHD Monitor,1,149.99,03/28/19 09:39,"265 11th St, San Francisco, CA 94016" +180069,27in FHD Monitor,1,149.99,03/10/19 20:21,"99 13th St, San Francisco, CA 94016" +180070,iPhone,1,700,03/22/19 21:57,"279 Hickory St, San Francisco, CA 94016" +180071,AAA Batteries (4-pack),1,2.99,03/11/19 22:52,"681 Maple St, Dallas, TX 75001" +180072,Wired Headphones,1,11.99,03/27/19 06:30,"275 Cedar St, New York City, NY 10001" +180073,ThinkPad Laptop,1,999.99,03/09/19 15:04,"996 Main St, Atlanta, GA 30301" +180074,AA Batteries (4-pack),1,3.84,03/19/19 23:53,"473 4th St, Portland, OR 97035" +180075,Wired Headphones,1,11.99,03/18/19 14:03,"301 Willow St, Dallas, TX 75001" +180076,Lightning Charging Cable,1,14.95,03/16/19 17:35,"230 4th St, Los Angeles, CA 90001" +180077,Wired Headphones,1,11.99,03/25/19 12:42,"42 Pine St, Los Angeles, CA 90001" +180078,AA Batteries (4-pack),2,3.84,03/06/19 17:44,"680 Hickory St, New York City, NY 10001" +180079,Wired Headphones,1,11.99,03/14/19 00:41,"341 Forest St, Dallas, TX 75001" +180080,Wired Headphones,1,11.99,03/02/19 03:56,"116 South St, Atlanta, GA 30301" +180081,ThinkPad Laptop,1,999.99,03/25/19 05:33,"993 Lincoln St, Portland, ME 04101" +180082,AA Batteries (4-pack),1,3.84,03/11/19 21:40,"840 Johnson St, New York City, NY 10001" +180083,Macbook Pro Laptop,1,1700,03/08/19 20:19,"901 10th St, Boston, MA 02215" +180084,Bose SoundSport Headphones,1,99.99,03/03/19 19:22,"512 4th St, Boston, MA 02215" +180085,Wired Headphones,1,11.99,03/24/19 17:52,"219 Main St, New York City, NY 10001" +180086,Bose SoundSport Headphones,1,99.99,03/03/19 16:54,"568 9th St, New York City, NY 10001" +180087,27in FHD Monitor,1,149.99,03/26/19 12:41,"308 1st St, New York City, NY 10001" +180088,iPhone,1,700,03/16/19 17:27,"850 6th St, New York City, NY 10001" +180088,Wired Headphones,1,11.99,03/16/19 17:27,"850 6th St, New York City, NY 10001" +180089,AAA Batteries (4-pack),2,2.99,03/21/19 00:41,"270 Madison St, Los Angeles, CA 90001" +180090,AA Batteries (4-pack),2,3.84,03/24/19 10:50,"245 14th St, San Francisco, CA 94016" +180091,iPhone,1,700,03/29/19 20:15,"283 Johnson St, New York City, NY 10001" +180092,AA Batteries (4-pack),2,3.84,03/03/19 18:27,"631 Ridge St, San Francisco, CA 94016" +180093,Apple Airpods Headphones,1,150,03/27/19 19:06,"632 Sunset St, San Francisco, CA 94016" +180094,Google Phone,1,600,03/22/19 01:24,"342 Ridge St, San Francisco, CA 94016" +180095,Wired Headphones,1,11.99,03/26/19 20:28,"323 11th St, Los Angeles, CA 90001" +180096,Bose SoundSport Headphones,1,99.99,03/25/19 00:35,"354 14th St, Austin, TX 73301" +180097,Wired Headphones,1,11.99,03/02/19 12:31,"131 12th St, San Francisco, CA 94016" +180098,Lightning Charging Cable,1,14.95,03/20/19 12:40,"499 South St, Los Angeles, CA 90001" +180099,AA Batteries (4-pack),4,3.84,03/12/19 08:18,"636 Cedar St, San Francisco, CA 94016" +180100,AAA Batteries (4-pack),1,2.99,03/15/19 16:37,"594 5th St, San Francisco, CA 94016" +180101,LG Dryer,1,600.0,03/11/19 11:25,"799 8th St, Dallas, TX 75001" +180102,USB-C Charging Cable,1,11.95,03/24/19 10:29,"643 9th St, Atlanta, GA 30301" +180103,USB-C Charging Cable,2,11.95,04/01/19 00:02,"886 Spruce St, Austin, TX 73301" +180104,Google Phone,1,600,03/02/19 11:00,"45 13th St, San Francisco, CA 94016" +180105,AAA Batteries (4-pack),1,2.99,03/21/19 10:13,"185 12th St, San Francisco, CA 94016" +180106,Bose SoundSport Headphones,1,99.99,03/01/19 10:10,"439 Chestnut St, Dallas, TX 75001" +180107,34in Ultrawide Monitor,1,379.99,03/26/19 21:18,"272 2nd St, Los Angeles, CA 90001" +180108,Lightning Charging Cable,1,14.95,03/07/19 12:28,"317 Pine St, Atlanta, GA 30301" +180109,USB-C Charging Cable,1,11.95,03/24/19 14:01,"784 Chestnut St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +180110,34in Ultrawide Monitor,1,379.99,03/07/19 12:05,"400 13th St, San Francisco, CA 94016" +180111,Vareebadd Phone,1,400,03/22/19 09:10,"314 South St, San Francisco, CA 94016" +180112,AA Batteries (4-pack),1,3.84,03/23/19 17:11,"769 Highland St, San Francisco, CA 94016" +180113,27in FHD Monitor,1,149.99,03/05/19 18:20,"600 13th St, New York City, NY 10001" +180114,Macbook Pro Laptop,1,1700,03/04/19 19:37,"763 Spruce St, Boston, MA 02215" +180115,Lightning Charging Cable,1,14.95,03/12/19 18:06,"420 Park St, Atlanta, GA 30301" +180116,Lightning Charging Cable,1,14.95,03/08/19 10:18,"858 Dogwood St, Atlanta, GA 30301" +180117,AA Batteries (4-pack),1,3.84,03/17/19 10:05,"874 7th St, San Francisco, CA 94016" +180118,34in Ultrawide Monitor,1,379.99,03/11/19 09:40,"918 River St, San Francisco, CA 94016" +180119,34in Ultrawide Monitor,1,379.99,03/07/19 11:33,"650 Pine St, Los Angeles, CA 90001" +180120,Lightning Charging Cable,2,14.95,03/06/19 17:16,"991 12th St, New York City, NY 10001" +180121,Lightning Charging Cable,1,14.95,03/02/19 15:08,"344 12th St, San Francisco, CA 94016" +180122,AA Batteries (4-pack),2,3.84,03/14/19 18:42,"823 Ridge St, New York City, NY 10001" +180123,Wired Headphones,1,11.99,03/15/19 19:31,"917 11th St, New York City, NY 10001" +180124,Apple Airpods Headphones,1,150,03/14/19 10:53,"288 6th St, Los Angeles, CA 90001" +180125,20in Monitor,1,109.99,03/24/19 14:14,"155 8th St, Dallas, TX 75001" +180126,AA Batteries (4-pack),1,3.84,03/30/19 07:05,"931 Main St, San Francisco, CA 94016" +180127,AA Batteries (4-pack),1,3.84,03/31/19 00:30,"712 Lincoln St, Los Angeles, CA 90001" +180128,Vareebadd Phone,1,400,03/09/19 13:44,"796 1st St, San Francisco, CA 94016" +180129,USB-C Charging Cable,1,11.95,03/22/19 13:40,"626 10th St, Portland, OR 97035" +180130,34in Ultrawide Monitor,1,379.99,03/27/19 20:23,"680 Church St, Boston, MA 02215" +180131,Flatscreen TV,1,300,03/07/19 21:16,"946 11th St, Dallas, TX 75001" +180132,Wired Headphones,1,11.99,03/02/19 09:47,"850 Chestnut St, Boston, MA 02215" +180133,Wired Headphones,1,11.99,03/06/19 20:24,"987 13th St, Los Angeles, CA 90001" +180134,AA Batteries (4-pack),1,3.84,03/21/19 19:08,"375 Spruce St, San Francisco, CA 94016" +180135,Apple Airpods Headphones,1,150,03/28/19 09:22,"115 Park St, Boston, MA 02215" +180136,Macbook Pro Laptop,1,1700,03/27/19 16:44,"994 Jefferson St, Dallas, TX 75001" +180137,Flatscreen TV,1,300,03/05/19 08:07,"519 Main St, San Francisco, CA 94016" +180138,Wired Headphones,1,11.99,03/11/19 19:21,"862 Hill St, New York City, NY 10001" +180139,AAA Batteries (4-pack),2,2.99,03/24/19 19:57,"103 Walnut St, Portland, OR 97035" +180140,Apple Airpods Headphones,1,150,03/03/19 18:45,"826 5th St, Boston, MA 02215" +180141,USB-C Charging Cable,1,11.95,03/05/19 23:44,"639 2nd St, San Francisco, CA 94016" +180142,Lightning Charging Cable,1,14.95,03/27/19 16:20,"460 Pine St, Dallas, TX 75001" +180143,AAA Batteries (4-pack),2,2.99,03/27/19 09:49,"238 West St, San Francisco, CA 94016" +180144,USB-C Charging Cable,1,11.95,03/25/19 13:33,"682 North St, Los Angeles, CA 90001" +180145,AA Batteries (4-pack),2,3.84,03/31/19 05:04,"18 Washington St, Austin, TX 73301" +180146,Apple Airpods Headphones,1,150,03/14/19 16:31,"750 Meadow St, San Francisco, CA 94016" +180147,Wired Headphones,1,11.99,03/23/19 13:04,"840 14th St, Los Angeles, CA 90001" +180148,Wired Headphones,1,11.99,03/01/19 15:49,"287 Cedar St, Portland, OR 97035" +180149,USB-C Charging Cable,1,11.95,03/28/19 14:45,"687 Walnut St, Dallas, TX 75001" +180150,Wired Headphones,1,11.99,03/10/19 17:29,"197 Center St, San Francisco, CA 94016" +180151,USB-C Charging Cable,1,11.95,03/14/19 06:14,"176 Park St, Portland, OR 97035" +180152,AAA Batteries (4-pack),1,2.99,03/22/19 14:33,"994 Hickory St, New York City, NY 10001" +180153,AAA Batteries (4-pack),1,2.99,03/09/19 10:57,"764 2nd St, Los Angeles, CA 90001" +180154,20in Monitor,1,109.99,03/18/19 10:59,"342 Sunset St, Atlanta, GA 30301" +180155,Wired Headphones,1,11.99,03/06/19 10:30,"922 Ridge St, Dallas, TX 75001" +180156,iPhone,1,700,03/25/19 14:20,"911 North St, Portland, ME 04101" +180157,USB-C Charging Cable,1,11.95,03/05/19 23:12,"388 North St, Portland, OR 97035" +180158,Apple Airpods Headphones,1,150,03/19/19 15:20,"466 Lake St, San Francisco, CA 94016" +180159,iPhone,1,700,03/23/19 12:06,"329 North St, San Francisco, CA 94016" +180160,Wired Headphones,1,11.99,03/05/19 11:13,"844 Madison St, San Francisco, CA 94016" +180161,AAA Batteries (4-pack),1,2.99,03/31/19 20:31,"429 Johnson St, San Francisco, CA 94016" +180162,ThinkPad Laptop,1,999.99,03/18/19 20:40,"34 Center St, Portland, OR 97035" +180163,Wired Headphones,1,11.99,03/01/19 17:57,"989 Hill St, San Francisco, CA 94016" +180164,Lightning Charging Cable,1,14.95,03/14/19 21:19,"474 Forest St, Austin, TX 73301" +180165,Apple Airpods Headphones,1,150,03/13/19 17:29,"37 7th St, Seattle, WA 98101" +180166,27in 4K Gaming Monitor,1,389.99,03/26/19 12:59,"582 1st St, San Francisco, CA 94016" +180167,Flatscreen TV,1,300,03/20/19 17:38,"77 Lincoln St, New York City, NY 10001" +180168,Wired Headphones,1,11.99,03/24/19 11:40,"445 1st St, Boston, MA 02215" +180169,ThinkPad Laptop,1,999.99,03/11/19 16:35,"576 Cherry St, Los Angeles, CA 90001" +180170,Lightning Charging Cable,1,14.95,03/15/19 11:22,"362 Madison St, Atlanta, GA 30301" +180171,Apple Airpods Headphones,1,150,03/31/19 20:07,"580 Ridge St, San Francisco, CA 94016" +180172,ThinkPad Laptop,1,999.99,03/30/19 21:10,"48 Madison St, New York City, NY 10001" +180173,AA Batteries (4-pack),1,3.84,03/31/19 07:02,"576 Hickory St, Dallas, TX 75001" +180174,USB-C Charging Cable,1,11.95,03/03/19 20:02,"224 Washington St, Los Angeles, CA 90001" +180175,USB-C Charging Cable,1,11.95,03/07/19 20:18,"44 Forest St, San Francisco, CA 94016" +180176,Wired Headphones,1,11.99,03/25/19 20:46,"726 Washington St, Dallas, TX 75001" +180177,AA Batteries (4-pack),1,3.84,03/02/19 12:46,"624 12th St, New York City, NY 10001" +180178,USB-C Charging Cable,1,11.95,03/19/19 05:03,"37 Willow St, Austin, TX 73301" +180179,Wired Headphones,1,11.99,03/06/19 23:06,"957 Cherry St, New York City, NY 10001" +180180,iPhone,1,700,03/31/19 18:15,"474 West St, San Francisco, CA 94016" +180181,Lightning Charging Cable,1,14.95,03/15/19 13:31,"426 Center St, San Francisco, CA 94016" +180182,Bose SoundSport Headphones,1,99.99,03/06/19 17:10,"521 Lakeview St, New York City, NY 10001" +180183,27in FHD Monitor,1,149.99,03/08/19 20:46,"179 5th St, San Francisco, CA 94016" +180184,27in FHD Monitor,1,149.99,03/21/19 21:58,"293 Adams St, Portland, OR 97035" +180185,Lightning Charging Cable,1,14.95,03/24/19 12:25,"640 10th St, San Francisco, CA 94016" +180186,Bose SoundSport Headphones,1,99.99,03/25/19 21:29,"116 Park St, Los Angeles, CA 90001" +180187,USB-C Charging Cable,1,11.95,03/24/19 14:23,"751 Lake St, Boston, MA 02215" +180188,AAA Batteries (4-pack),2,2.99,03/27/19 21:15,"467 1st St, San Francisco, CA 94016" +180189,20in Monitor,1,109.99,03/03/19 10:49,"45 Pine St, Austin, TX 73301" +180190,USB-C Charging Cable,1,11.95,03/05/19 14:26,"469 Center St, New York City, NY 10001" +180191,Flatscreen TV,1,300,03/04/19 23:17,"496 11th St, Boston, MA 02215" +180192,Bose SoundSport Headphones,1,99.99,03/27/19 21:49,"947 Lake St, New York City, NY 10001" +180193,USB-C Charging Cable,1,11.95,03/16/19 11:48,"204 14th St, Portland, OR 97035" +180194,Wired Headphones,1,11.99,03/09/19 11:22,"600 West St, Boston, MA 02215" +180195,AA Batteries (4-pack),2,3.84,03/22/19 13:12,"456 North St, San Francisco, CA 94016" +180196,AA Batteries (4-pack),1,3.84,03/02/19 02:10,"242 Wilson St, Los Angeles, CA 90001" +180197,Lightning Charging Cable,1,14.95,03/07/19 21:49,"362 13th St, New York City, NY 10001" +180198,Flatscreen TV,1,300,03/03/19 07:57,"835 Ridge St, San Francisco, CA 94016" +180199,Lightning Charging Cable,2,14.95,03/26/19 13:49,"721 Lincoln St, San Francisco, CA 94016" +180200,AAA Batteries (4-pack),1,2.99,03/30/19 10:55,"195 River St, Los Angeles, CA 90001" +180201,USB-C Charging Cable,1,11.95,03/09/19 18:44,"150 Elm St, Seattle, WA 98101" +180202,27in 4K Gaming Monitor,1,389.99,03/25/19 13:23,"726 Hill St, San Francisco, CA 94016" +180203,AAA Batteries (4-pack),2,2.99,03/19/19 17:05,"177 Lincoln St, Portland, ME 04101" +180203,Bose SoundSport Headphones,1,99.99,03/19/19 17:05,"177 Lincoln St, Portland, ME 04101" +180204,Wired Headphones,1,11.99,03/03/19 01:10,"366 Jefferson St, Atlanta, GA 30301" +180205,Bose SoundSport Headphones,1,99.99,03/03/19 10:26,"834 Lincoln St, New York City, NY 10001" +180206,iPhone,1,700,03/13/19 21:55,"27 7th St, Dallas, TX 75001" +180207,Bose SoundSport Headphones,1,99.99,03/13/19 07:20,"441 2nd St, Seattle, WA 98101" +180208,USB-C Charging Cable,1,11.95,03/08/19 16:40,"687 Cherry St, Los Angeles, CA 90001" +180209,USB-C Charging Cable,1,11.95,03/03/19 23:10,"336 Elm St, Los Angeles, CA 90001" +180210,Lightning Charging Cable,1,14.95,03/15/19 15:40,"105 Park St, Austin, TX 73301" +180211,AA Batteries (4-pack),2,3.84,03/14/19 14:23,"703 West St, New York City, NY 10001" +180212,AA Batteries (4-pack),1,3.84,03/08/19 08:46,"624 7th St, Austin, TX 73301" +180213,Apple Airpods Headphones,1,150,03/26/19 23:54,"773 Chestnut St, Los Angeles, CA 90001" +180214,AAA Batteries (4-pack),1,2.99,03/20/19 11:19,"802 12th St, San Francisco, CA 94016" +180215,34in Ultrawide Monitor,1,379.99,03/18/19 16:47,"936 5th St, Dallas, TX 75001" +180216,Lightning Charging Cable,1,14.95,03/14/19 18:24,"985 6th St, San Francisco, CA 94016" +180217,Bose SoundSport Headphones,1,99.99,03/05/19 13:13,"513 Forest St, Boston, MA 02215" +180218,Flatscreen TV,1,300,03/16/19 12:31,"612 13th St, Boston, MA 02215" +180219,27in FHD Monitor,1,149.99,03/05/19 06:33,"944 Highland St, San Francisco, CA 94016" +180220,Bose SoundSport Headphones,1,99.99,03/12/19 17:47,"524 Jefferson St, Portland, OR 97035" +180221,AA Batteries (4-pack),1,3.84,03/03/19 23:25,"308 Wilson St, San Francisco, CA 94016" +180222,Wired Headphones,1,11.99,03/22/19 22:48,"14 Church St, Seattle, WA 98101" +180223,27in FHD Monitor,1,149.99,03/09/19 15:43,"876 Main St, New York City, NY 10001" +180224,USB-C Charging Cable,1,11.95,03/02/19 14:29,"859 Main St, Portland, ME 04101" +180225,USB-C Charging Cable,1,11.95,03/26/19 17:06,"780 10th St, San Francisco, CA 94016" +180226,Lightning Charging Cable,2,14.95,03/15/19 13:59,"943 Forest St, New York City, NY 10001" +180227,AA Batteries (4-pack),4,3.84,03/01/19 11:41,"953 10th St, Portland, OR 97035" +180228,Bose SoundSport Headphones,1,99.99,03/10/19 08:06,"882 11th St, New York City, NY 10001" +180229,Macbook Pro Laptop,1,1700,03/19/19 17:50,"381 Center St, San Francisco, CA 94016" +180230,iPhone,1,700,03/07/19 08:28,"583 Walnut St, New York City, NY 10001" +180231,iPhone,1,700,03/23/19 02:57,"759 Hill St, New York City, NY 10001" +180231,Wired Headphones,1,11.99,03/23/19 02:57,"759 Hill St, New York City, NY 10001" +180232,AA Batteries (4-pack),1,3.84,03/07/19 20:43,"375 Wilson St, Seattle, WA 98101" +180233,AAA Batteries (4-pack),1,2.99,03/30/19 19:57,"407 12th St, Austin, TX 73301" +180234,LG Washing Machine,1,600.0,03/27/19 08:57,"357 South St, Seattle, WA 98101" +180235,Wired Headphones,1,11.99,03/20/19 06:51,"121 Sunset St, Seattle, WA 98101" +180236,20in Monitor,1,109.99,03/05/19 17:59,"499 1st St, Seattle, WA 98101" +,,,,, +180237,Apple Airpods Headphones,1,150,03/25/19 16:08,"192 Maple St, New York City, NY 10001" +180238,34in Ultrawide Monitor,1,379.99,03/11/19 17:33,"161 Highland St, New York City, NY 10001" +180239,34in Ultrawide Monitor,1,379.99,03/03/19 08:30,"680 Willow St, Los Angeles, CA 90001" +180240,27in 4K Gaming Monitor,1,389.99,03/29/19 23:35,"81 Willow St, New York City, NY 10001" +180241,34in Ultrawide Monitor,1,379.99,03/10/19 15:07,"929 Cedar St, Los Angeles, CA 90001" +180242,AA Batteries (4-pack),2,3.84,03/06/19 12:46,"357 7th St, Los Angeles, CA 90001" +180243,USB-C Charging Cable,1,11.95,03/07/19 09:45,"937 Johnson St, Boston, MA 02215" +180244,34in Ultrawide Monitor,1,379.99,03/15/19 21:35,"320 West St, San Francisco, CA 94016" +180245,27in FHD Monitor,1,149.99,03/26/19 11:39,"296 Chestnut St, Boston, MA 02215" +180246,AA Batteries (4-pack),3,3.84,03/01/19 14:53,"968 Jefferson St, New York City, NY 10001" +180247,Lightning Charging Cable,1,14.95,03/14/19 13:04,"446 7th St, Seattle, WA 98101" +180248,27in 4K Gaming Monitor,1,389.99,03/05/19 15:47,"497 Main St, Austin, TX 73301" +180249,Lightning Charging Cable,1,14.95,03/06/19 12:22,"538 Hickory St, Seattle, WA 98101" +180250,Bose SoundSport Headphones,1,99.99,03/24/19 08:21,"916 Washington St, Atlanta, GA 30301" +180251,Apple Airpods Headphones,1,150,03/25/19 13:36,"886 Johnson St, San Francisco, CA 94016" +180252,AAA Batteries (4-pack),1,2.99,03/24/19 16:49,"986 Johnson St, New York City, NY 10001" +180253,Apple Airpods Headphones,1,150,03/11/19 11:09,"875 Johnson St, Los Angeles, CA 90001" +180254,Wired Headphones,1,11.99,03/24/19 12:51,"753 North St, San Francisco, CA 94016" +180255,Apple Airpods Headphones,1,150,03/05/19 10:03,"699 8th St, Boston, MA 02215" +180256,USB-C Charging Cable,1,11.95,03/06/19 09:41,"939 West St, Portland, OR 97035" +180257,AAA Batteries (4-pack),1,2.99,03/19/19 09:11,"620 Spruce St, Atlanta, GA 30301" +180258,27in FHD Monitor,1,149.99,03/10/19 17:10,"395 Madison St, San Francisco, CA 94016" +180259,Wired Headphones,1,11.99,03/12/19 13:16,"79 Lincoln St, New York City, NY 10001" +180260,Apple Airpods Headphones,1,150,03/18/19 12:55,"633 River St, Seattle, WA 98101" +180261,27in FHD Monitor,1,149.99,03/08/19 19:04,"670 Pine St, San Francisco, CA 94016" +180262,AAA Batteries (4-pack),1,2.99,03/24/19 22:37,"464 North St, Boston, MA 02215" +180263,AA Batteries (4-pack),1,3.84,03/26/19 13:26,"188 Jackson St, New York City, NY 10001" +180264,ThinkPad Laptop,1,999.99,03/31/19 05:29,"314 Johnson St, Austin, TX 73301" +180265,Apple Airpods Headphones,1,150,03/18/19 20:17,"229 Jefferson St, New York City, NY 10001" +180266,Wired Headphones,1,11.99,03/05/19 12:13,"691 Hill St, New York City, NY 10001" +180266,AAA Batteries (4-pack),1,2.99,03/05/19 12:13,"691 Hill St, New York City, NY 10001" +180267,Google Phone,1,600,03/30/19 20:20,"695 6th St, Atlanta, GA 30301" +180268,Apple Airpods Headphones,1,150,03/11/19 17:52,"822 Park St, Seattle, WA 98101" +180269,AAA Batteries (4-pack),3,2.99,03/31/19 17:11,"919 Washington St, Dallas, TX 75001" +180270,USB-C Charging Cable,1,11.95,03/07/19 17:40,"412 Walnut St, San Francisco, CA 94016" +180271,AAA Batteries (4-pack),1,2.99,03/03/19 21:10,"445 10th St, Los Angeles, CA 90001" +180272,Flatscreen TV,1,300,03/01/19 08:04,"80 Park St, New York City, NY 10001" +180273,Wired Headphones,1,11.99,03/29/19 21:28,"799 Spruce St, San Francisco, CA 94016" +180274,Lightning Charging Cable,1,14.95,03/10/19 13:53,"120 Sunset St, San Francisco, CA 94016" +180275,USB-C Charging Cable,1,11.95,03/18/19 12:28,"183 Park St, Austin, TX 73301" +180276,Wired Headphones,1,11.99,03/31/19 19:25,"207 Church St, Atlanta, GA 30301" +180277,Wired Headphones,1,11.99,03/31/19 21:18,"436 West St, New York City, NY 10001" +180278,Wired Headphones,1,11.99,03/23/19 13:21,"897 9th St, Dallas, TX 75001" +180279,Wired Headphones,1,11.99,03/06/19 13:36,"508 Lake St, Seattle, WA 98101" +180280,34in Ultrawide Monitor,1,379.99,03/14/19 08:14,"72 Hickory St, Portland, OR 97035" +180281,Flatscreen TV,1,300,03/30/19 12:46,"207 Center St, Portland, OR 97035" +180282,Lightning Charging Cable,1,14.95,03/04/19 15:27,"627 Walnut St, New York City, NY 10001" +180283,Bose SoundSport Headphones,1,99.99,03/07/19 21:31,"183 Willow St, San Francisco, CA 94016" +180284,USB-C Charging Cable,1,11.95,03/29/19 14:56,"902 Park St, Atlanta, GA 30301" +180285,Lightning Charging Cable,1,14.95,03/13/19 22:13,"582 Park St, Austin, TX 73301" +180286,Google Phone,1,600,03/17/19 15:34,"741 4th St, Los Angeles, CA 90001" +180286,USB-C Charging Cable,1,11.95,03/17/19 15:34,"741 4th St, Los Angeles, CA 90001" +180287,USB-C Charging Cable,1,11.95,03/01/19 10:44,"855 Johnson St, Portland, ME 04101" +180288,Wired Headphones,1,11.99,03/03/19 19:55,"491 Jackson St, Dallas, TX 75001" +180289,20in Monitor,1,109.99,03/28/19 17:41,"570 South St, Seattle, WA 98101" +180290,USB-C Charging Cable,1,11.95,03/26/19 15:06,"159 Meadow St, Atlanta, GA 30301" +180291,AAA Batteries (4-pack),1,2.99,03/03/19 11:45,"556 4th St, San Francisco, CA 94016" +180292,34in Ultrawide Monitor,1,379.99,03/25/19 11:08,"337 Meadow St, San Francisco, CA 94016" +180293,Lightning Charging Cable,1,14.95,03/22/19 19:55,"316 Center St, Los Angeles, CA 90001" +180294,34in Ultrawide Monitor,1,379.99,03/18/19 04:52,"83 Dogwood St, Boston, MA 02215" +180295,AA Batteries (4-pack),1,3.84,03/16/19 21:38,"465 Cherry St, New York City, NY 10001" +180296,34in Ultrawide Monitor,1,379.99,03/18/19 21:38,"469 1st St, Portland, OR 97035" +180297,AAA Batteries (4-pack),1,2.99,03/20/19 17:00,"997 Park St, Los Angeles, CA 90001" +180298,AA Batteries (4-pack),2,3.84,03/12/19 13:17,"445 5th St, Atlanta, GA 30301" +180299,AA Batteries (4-pack),1,3.84,03/01/19 20:12,"714 Center St, Los Angeles, CA 90001" +180300,34in Ultrawide Monitor,1,379.99,03/19/19 22:08,"357 Spruce St, New York City, NY 10001" +180301,AAA Batteries (4-pack),1,2.99,03/31/19 17:19,"954 12th St, San Francisco, CA 94016" +180302,ThinkPad Laptop,1,999.99,03/31/19 13:48,"58 Cedar St, New York City, NY 10001" +180303,27in FHD Monitor,1,149.99,03/17/19 12:13,"230 10th St, Atlanta, GA 30301" +180304,Lightning Charging Cable,1,14.95,03/12/19 18:05,"392 Johnson St, Boston, MA 02215" +180305,AAA Batteries (4-pack),2,2.99,03/13/19 11:55,"41 6th St, Atlanta, GA 30301" +180306,27in 4K Gaming Monitor,1,389.99,03/30/19 13:14,"788 Park St, Portland, ME 04101" +180307,iPhone,1,700,03/15/19 11:25,"710 Spruce St, San Francisco, CA 94016" +180308,Macbook Pro Laptop,1,1700,03/20/19 19:55,"599 North St, Dallas, TX 75001" +180309,AA Batteries (4-pack),1,3.84,03/16/19 17:48,"912 1st St, San Francisco, CA 94016" +180310,AA Batteries (4-pack),1,3.84,03/21/19 06:41,"751 Dogwood St, San Francisco, CA 94016" +180311,27in 4K Gaming Monitor,1,389.99,03/11/19 12:11,"227 Park St, Portland, OR 97035" +180312,Lightning Charging Cable,1,14.95,03/08/19 06:31,"232 Wilson St, New York City, NY 10001" +180312,34in Ultrawide Monitor,1,379.99,03/08/19 06:31,"232 Wilson St, New York City, NY 10001" +180313,Lightning Charging Cable,1,14.95,03/14/19 12:56,"177 Elm St, Boston, MA 02215" +180314,Google Phone,1,600,03/27/19 07:38,"162 Elm St, Atlanta, GA 30301" +180314,USB-C Charging Cable,1,11.95,03/27/19 07:38,"162 Elm St, Atlanta, GA 30301" +180315,AA Batteries (4-pack),1,3.84,03/15/19 10:20,"630 Park St, San Francisco, CA 94016" +180316,27in FHD Monitor,1,149.99,03/15/19 21:01,"464 Jefferson St, Austin, TX 73301" +180317,AAA Batteries (4-pack),1,2.99,03/04/19 08:54,"603 Willow St, San Francisco, CA 94016" +180318,27in 4K Gaming Monitor,1,389.99,03/20/19 20:07,"506 4th St, San Francisco, CA 94016" +180319,AA Batteries (4-pack),2,3.84,03/04/19 10:02,"692 Pine St, Los Angeles, CA 90001" +180320,AA Batteries (4-pack),1,3.84,03/20/19 10:31,"251 12th St, Dallas, TX 75001" +180321,Apple Airpods Headphones,1,150,03/25/19 11:27,"792 Johnson St, Seattle, WA 98101" +180322,iPhone,1,700,03/14/19 12:18,"535 9th St, Atlanta, GA 30301" +180323,USB-C Charging Cable,2,11.95,03/14/19 10:43,"313 Center St, Boston, MA 02215" +180324,AAA Batteries (4-pack),1,2.99,03/15/19 15:01,"846 2nd St, Boston, MA 02215" +180325,Apple Airpods Headphones,1,150,03/24/19 16:21,"32 Lincoln St, Atlanta, GA 30301" +180326,AAA Batteries (4-pack),2,2.99,03/16/19 16:23,"826 Lakeview St, Los Angeles, CA 90001" +180327,Lightning Charging Cable,1,14.95,03/29/19 12:33,"444 Wilson St, Atlanta, GA 30301" +180328,USB-C Charging Cable,1,11.95,03/13/19 19:18,"60 Hickory St, Seattle, WA 98101" +180329,34in Ultrawide Monitor,1,379.99,03/25/19 12:28,"918 Lake St, Los Angeles, CA 90001" +180330,AA Batteries (4-pack),1,3.84,03/12/19 10:44,"771 Walnut St, Boston, MA 02215" +180331,AAA Batteries (4-pack),2,2.99,03/13/19 09:34,"45 Forest St, San Francisco, CA 94016" +180332,Bose SoundSport Headphones,1,99.99,03/04/19 15:15,"568 2nd St, Los Angeles, CA 90001" +180333,Bose SoundSport Headphones,1,99.99,03/19/19 09:51,"378 Park St, Los Angeles, CA 90001" +180334,USB-C Charging Cable,1,11.95,03/26/19 19:43,"442 Cherry St, Seattle, WA 98101" +180335,Lightning Charging Cable,1,14.95,03/09/19 22:26,"989 Lincoln St, Los Angeles, CA 90001" +180336,iPhone,1,700,03/24/19 16:13,"197 12th St, New York City, NY 10001" +180337,Vareebadd Phone,1,400,03/15/19 17:55,"677 West St, San Francisco, CA 94016" +180338,AA Batteries (4-pack),1,3.84,03/31/19 12:32,"35 10th St, Austin, TX 73301" +180339,AAA Batteries (4-pack),2,2.99,03/12/19 20:00,"793 Adams St, San Francisco, CA 94016" +180340,Google Phone,1,600,03/27/19 21:56,"505 Hill St, Los Angeles, CA 90001" +180340,USB-C Charging Cable,1,11.95,03/27/19 21:56,"505 Hill St, Los Angeles, CA 90001" +180340,Bose SoundSport Headphones,1,99.99,03/27/19 21:56,"505 Hill St, Los Angeles, CA 90001" +180341,20in Monitor,1,109.99,03/27/19 23:45,"735 Lincoln St, Boston, MA 02215" +180342,AA Batteries (4-pack),1,3.84,03/20/19 09:51,"608 Johnson St, San Francisco, CA 94016" +180343,Apple Airpods Headphones,1,150,03/12/19 12:40,"918 Park St, San Francisco, CA 94016" +180344,Bose SoundSport Headphones,1,99.99,03/20/19 18:02,"784 5th St, San Francisco, CA 94016" +180345,USB-C Charging Cable,1,11.95,03/23/19 14:14,"767 11th St, San Francisco, CA 94016" +180346,Google Phone,1,600,03/17/19 14:28,"959 Willow St, San Francisco, CA 94016" +180347,AAA Batteries (4-pack),1,2.99,03/09/19 22:36,"805 11th St, Los Angeles, CA 90001" +180348,AAA Batteries (4-pack),1,2.99,03/04/19 14:38,"772 Lincoln St, Boston, MA 02215" +180349,Apple Airpods Headphones,1,150,03/25/19 21:44,"984 10th St, Los Angeles, CA 90001" +180350,27in FHD Monitor,1,149.99,03/26/19 20:15,"790 Lake St, Seattle, WA 98101" +180351,Wired Headphones,1,11.99,03/20/19 09:48,"96 4th St, Los Angeles, CA 90001" +180352,Wired Headphones,1,11.99,03/13/19 14:37,"928 Spruce St, Dallas, TX 75001" +180353,27in 4K Gaming Monitor,1,389.99,03/12/19 17:20,"58 9th St, Boston, MA 02215" +180354,Macbook Pro Laptop,1,1700,03/21/19 12:18,"465 Park St, Dallas, TX 75001" +180355,ThinkPad Laptop,1,999.99,03/19/19 16:08,"951 Lincoln St, Los Angeles, CA 90001" +180356,Lightning Charging Cable,1,14.95,03/27/19 12:57,"58 North St, Atlanta, GA 30301" +180357,Bose SoundSport Headphones,1,99.99,03/17/19 09:56,"216 Adams St, San Francisco, CA 94016" +180358,Apple Airpods Headphones,1,150,03/13/19 16:53,"192 Wilson St, New York City, NY 10001" +180359,Wired Headphones,1,11.99,03/20/19 01:36,"606 Washington St, Dallas, TX 75001" +180360,AAA Batteries (4-pack),1,2.99,03/09/19 23:59,"512 Madison St, Atlanta, GA 30301" +180361,27in FHD Monitor,1,149.99,03/21/19 12:08,"88 Ridge St, Dallas, TX 75001" +180362,Bose SoundSport Headphones,1,99.99,03/24/19 21:39,"570 Forest St, Atlanta, GA 30301" +180363,USB-C Charging Cable,1,11.95,03/28/19 10:43,"762 Lakeview St, Boston, MA 02215" +180364,Macbook Pro Laptop,1,1700,03/26/19 22:49,"190 Willow St, New York City, NY 10001" +180365,Wired Headphones,1,11.99,03/30/19 14:26,"152 Cherry St, Los Angeles, CA 90001" +180366,Apple Airpods Headphones,1,150,03/03/19 21:39,"469 4th St, Boston, MA 02215" +180367,AA Batteries (4-pack),1,3.84,03/25/19 13:53,"206 Willow St, San Francisco, CA 94016" +180368,AA Batteries (4-pack),2,3.84,03/16/19 11:25,"221 South St, San Francisco, CA 94016" +180369,iPhone,1,700,03/02/19 20:14,"541 Cedar St, Portland, ME 04101" +180369,Lightning Charging Cable,1,14.95,03/02/19 20:14,"541 Cedar St, Portland, ME 04101" +180370,USB-C Charging Cable,1,11.95,03/14/19 23:52,"104 8th St, Los Angeles, CA 90001" +180371,27in FHD Monitor,1,149.99,03/27/19 21:50,"726 Church St, Portland, OR 97035" +180372,USB-C Charging Cable,1,11.95,03/21/19 01:11,"365 Madison St, New York City, NY 10001" +180373,34in Ultrawide Monitor,1,379.99,03/20/19 22:52,"257 7th St, Boston, MA 02215" +180374,20in Monitor,1,109.99,03/22/19 13:08,"205 Center St, New York City, NY 10001" +180375,Wired Headphones,1,11.99,03/13/19 23:53,"950 13th St, Seattle, WA 98101" +180376,AA Batteries (4-pack),1,3.84,03/15/19 22:29,"592 Johnson St, San Francisco, CA 94016" +180377,AAA Batteries (4-pack),1,2.99,03/23/19 17:38,"318 Highland St, Dallas, TX 75001" +180378,AA Batteries (4-pack),1,3.84,03/25/19 17:35,"332 Ridge St, Seattle, WA 98101" +180379,Wired Headphones,1,11.99,03/25/19 09:23,"25 Jackson St, Boston, MA 02215" +180380,Lightning Charging Cable,1,14.95,03/23/19 19:22,"256 Park St, Los Angeles, CA 90001" +180381,27in FHD Monitor,1,149.99,03/13/19 12:25,"190 Lake St, Boston, MA 02215" +180382,AA Batteries (4-pack),1,3.84,03/31/19 09:20,"220 Ridge St, Dallas, TX 75001" +180383,USB-C Charging Cable,1,11.95,03/27/19 10:49,"372 13th St, Los Angeles, CA 90001" +180384,34in Ultrawide Monitor,1,379.99,03/18/19 15:42,"185 Forest St, Dallas, TX 75001" +180385,Apple Airpods Headphones,1,150,03/12/19 16:11,"855 North St, San Francisco, CA 94016" +180386,Lightning Charging Cable,1,14.95,03/31/19 16:51,"717 Maple St, San Francisco, CA 94016" +180387,Apple Airpods Headphones,1,150,03/09/19 07:41,"739 Meadow St, Boston, MA 02215" +180388,USB-C Charging Cable,1,11.95,03/09/19 17:58,"12 Madison St, San Francisco, CA 94016" +180389,AA Batteries (4-pack),1,3.84,03/20/19 14:05,"119 Madison St, Los Angeles, CA 90001" +180390,AAA Batteries (4-pack),1,2.99,03/22/19 10:52,"799 North St, Austin, TX 73301" +180391,27in FHD Monitor,1,149.99,03/10/19 23:54,"901 5th St, New York City, NY 10001" +180392,iPhone,1,700,03/16/19 11:29,"515 Ridge St, Seattle, WA 98101" +180392,Apple Airpods Headphones,1,150,03/16/19 11:29,"515 Ridge St, Seattle, WA 98101" +180392,Wired Headphones,1,11.99,03/16/19 11:29,"515 Ridge St, Seattle, WA 98101" +180393,Bose SoundSport Headphones,1,99.99,03/12/19 12:42,"762 Ridge St, San Francisco, CA 94016" +180394,USB-C Charging Cable,1,11.95,03/24/19 20:28,"740 North St, San Francisco, CA 94016" +180395,LG Washing Machine,1,600.0,03/06/19 23:10,"34 Main St, Austin, TX 73301" +180396,27in FHD Monitor,1,149.99,03/11/19 02:56,"597 8th St, Los Angeles, CA 90001" +180397,AA Batteries (4-pack),2,3.84,03/20/19 13:09,"506 Wilson St, San Francisco, CA 94016" +180398,AA Batteries (4-pack),1,3.84,03/20/19 10:46,"491 Chestnut St, Los Angeles, CA 90001" +180399,Wired Headphones,1,11.99,03/26/19 09:40,"912 Meadow St, Los Angeles, CA 90001" +180400,Flatscreen TV,1,300,03/19/19 00:10,"773 Maple St, San Francisco, CA 94016" +180401,AA Batteries (4-pack),1,3.84,03/09/19 11:55,"449 7th St, Portland, OR 97035" +180402,USB-C Charging Cable,1,11.95,03/07/19 09:15,"236 Hill St, San Francisco, CA 94016" +180403,Apple Airpods Headphones,1,150,03/17/19 15:05,"709 North St, Los Angeles, CA 90001" +180404,27in 4K Gaming Monitor,1,389.99,03/15/19 21:44,"638 9th St, Boston, MA 02215" +180405,27in FHD Monitor,1,149.99,03/17/19 13:21,"235 Chestnut St, Los Angeles, CA 90001" +180406,AA Batteries (4-pack),1,3.84,03/25/19 16:02,"813 2nd St, Boston, MA 02215" +180407,Apple Airpods Headphones,1,150,03/20/19 16:07,"81 2nd St, Austin, TX 73301" +180408,Wired Headphones,1,11.99,03/09/19 12:21,"848 Ridge St, Atlanta, GA 30301" +180409,USB-C Charging Cable,1,11.95,03/13/19 15:41,"332 12th St, Boston, MA 02215" +180410,ThinkPad Laptop,1,999.99,03/04/19 18:59,"666 Church St, Dallas, TX 75001" +180411,USB-C Charging Cable,1,11.95,03/27/19 12:26,"901 North St, New York City, NY 10001" +180412,AAA Batteries (4-pack),2,2.99,03/01/19 22:00,"930 6th St, Seattle, WA 98101" +180413,AA Batteries (4-pack),1,3.84,03/22/19 21:48,"560 Lake St, Boston, MA 02215" +180414,34in Ultrawide Monitor,1,379.99,03/21/19 14:54,"80 12th St, New York City, NY 10001" +180414,27in 4K Gaming Monitor,1,389.99,03/21/19 14:54,"80 12th St, New York City, NY 10001" +180415,27in FHD Monitor,1,149.99,03/22/19 19:36,"642 Maple St, Boston, MA 02215" +180416,Bose SoundSport Headphones,1,99.99,03/06/19 21:34,"658 Pine St, San Francisco, CA 94016" +180417,AA Batteries (4-pack),1,3.84,03/18/19 11:55,"554 Washington St, San Francisco, CA 94016" +180418,Lightning Charging Cable,1,14.95,03/22/19 11:45,"46 Madison St, Seattle, WA 98101" +180419,USB-C Charging Cable,1,11.95,03/23/19 19:05,"526 West St, Dallas, TX 75001" +180420,AAA Batteries (4-pack),2,2.99,03/13/19 13:46,"781 6th St, San Francisco, CA 94016" +180421,34in Ultrawide Monitor,1,379.99,03/29/19 21:31,"75 Sunset St, San Francisco, CA 94016" +180422,Bose SoundSport Headphones,1,99.99,03/14/19 22:50,"369 10th St, Boston, MA 02215" +180423,Bose SoundSport Headphones,1,99.99,03/11/19 18:11,"797 Elm St, Boston, MA 02215" +180424,Vareebadd Phone,1,400,03/19/19 21:01,"888 Lake St, Los Angeles, CA 90001" +180424,USB-C Charging Cable,1,11.95,03/19/19 21:01,"888 Lake St, Los Angeles, CA 90001" +180425,AA Batteries (4-pack),1,3.84,03/31/19 13:38,"181 Lake St, San Francisco, CA 94016" +180426,USB-C Charging Cable,1,11.95,03/13/19 15:13,"284 Jefferson St, San Francisco, CA 94016" +180427,iPhone,1,700,03/17/19 09:58,"451 Wilson St, New York City, NY 10001" +180428,Wired Headphones,1,11.99,03/13/19 11:19,"502 Park St, San Francisco, CA 94016" +180429,Lightning Charging Cable,1,14.95,03/12/19 11:09,"496 Lake St, New York City, NY 10001" +180430,Wired Headphones,1,11.99,03/26/19 18:07,"92 South St, Dallas, TX 75001" +180431,AAA Batteries (4-pack),1,2.99,03/19/19 06:50,"532 Madison St, San Francisco, CA 94016" +180432,20in Monitor,2,109.99,03/21/19 23:46,"215 4th St, Boston, MA 02215" +180433,AAA Batteries (4-pack),1,2.99,03/27/19 21:30,"854 Center St, Dallas, TX 75001" +180434,Wired Headphones,1,11.99,03/10/19 13:14,"782 Meadow St, Los Angeles, CA 90001" +180435,Macbook Pro Laptop,1,1700,03/17/19 14:02,"241 7th St, Los Angeles, CA 90001" +180436,Wired Headphones,1,11.99,03/08/19 11:00,"907 Spruce St, New York City, NY 10001" +180437,27in 4K Gaming Monitor,1,389.99,03/31/19 13:25,"477 12th St, New York City, NY 10001" +180438,Lightning Charging Cable,1,14.95,03/15/19 10:18,"24 13th St, Seattle, WA 98101" +180439,iPhone,1,700,03/01/19 16:42,"3 Forest St, New York City, NY 10001" +180439,Lightning Charging Cable,1,14.95,03/01/19 16:42,"3 Forest St, New York City, NY 10001" +180440,Lightning Charging Cable,1,14.95,03/07/19 16:45,"326 10th St, San Francisco, CA 94016" +180441,USB-C Charging Cable,1,11.95,03/26/19 20:08,"262 Lincoln St, Portland, OR 97035" +180442,iPhone,1,700,03/16/19 11:13,"180 Highland St, Boston, MA 02215" +180443,34in Ultrawide Monitor,1,379.99,03/12/19 20:02,"528 Wilson St, Austin, TX 73301" +180444,USB-C Charging Cable,1,11.95,03/13/19 14:47,"611 Walnut St, Seattle, WA 98101" +180445,USB-C Charging Cable,1,11.95,03/03/19 06:40,"498 14th St, San Francisco, CA 94016" +180446,34in Ultrawide Monitor,1,379.99,03/06/19 20:17,"495 North St, Los Angeles, CA 90001" +180447,Bose SoundSport Headphones,1,99.99,03/21/19 11:46,"135 11th St, San Francisco, CA 94016" +,,,,, +180448,USB-C Charging Cable,1,11.95,03/20/19 08:35,"298 13th St, San Francisco, CA 94016" +180449,Bose SoundSport Headphones,1,99.99,03/30/19 14:38,"845 Spruce St, Los Angeles, CA 90001" +180450,Vareebadd Phone,1,400,03/08/19 21:42,"135 Ridge St, New York City, NY 10001" +180451,Lightning Charging Cable,1,14.95,03/04/19 13:46,"16 10th St, Boston, MA 02215" +180452,Bose SoundSport Headphones,1,99.99,03/07/19 10:41,"621 Jefferson St, San Francisco, CA 94016" +180453,Bose SoundSport Headphones,2,99.99,03/13/19 17:02,"23 Willow St, Dallas, TX 75001" +180454,Lightning Charging Cable,1,14.95,03/02/19 12:13,"987 Lakeview St, Seattle, WA 98101" +180455,Lightning Charging Cable,1,14.95,03/05/19 14:33,"20 8th St, Seattle, WA 98101" +180456,AA Batteries (4-pack),1,3.84,03/14/19 17:49,"329 1st St, San Francisco, CA 94016" +180457,Google Phone,1,600,03/09/19 19:42,"620 Johnson St, New York City, NY 10001" +,,,,, +180458,AA Batteries (4-pack),1,3.84,03/05/19 15:02,"241 4th St, Atlanta, GA 30301" +180458,Apple Airpods Headphones,1,150,03/05/19 15:02,"241 4th St, Atlanta, GA 30301" +180459,Flatscreen TV,1,300,03/15/19 18:57,"502 Church St, New York City, NY 10001" +180460,AAA Batteries (4-pack),4,2.99,03/29/19 19:05,"842 Pine St, Atlanta, GA 30301" +180460,Macbook Pro Laptop,1,1700,03/29/19 19:05,"842 Pine St, Atlanta, GA 30301" +180461,iPhone,1,700,03/14/19 14:50,"330 Maple St, Atlanta, GA 30301" +180462,AA Batteries (4-pack),2,3.84,03/04/19 09:05,"392 Jackson St, Portland, OR 97035" +180462,Wired Headphones,1,11.99,03/04/19 09:05,"392 Jackson St, Portland, OR 97035" +180463,USB-C Charging Cable,1,11.95,03/08/19 22:54,"349 12th St, San Francisco, CA 94016" +180464,Macbook Pro Laptop,1,1700,03/25/19 21:16,"888 11th St, San Francisco, CA 94016" +180465,USB-C Charging Cable,1,11.95,03/03/19 10:40,"913 6th St, San Francisco, CA 94016" +180466,Wired Headphones,1,11.99,03/03/19 21:43,"879 Lake St, New York City, NY 10001" +180467,Lightning Charging Cable,1,14.95,03/03/19 19:01,"595 Lake St, Dallas, TX 75001" +180468,Apple Airpods Headphones,1,150,03/17/19 18:50,"52 Jackson St, San Francisco, CA 94016" +180469,34in Ultrawide Monitor,1,379.99,03/06/19 09:20,"405 Center St, Portland, ME 04101" +180470,USB-C Charging Cable,1,11.95,03/01/19 20:45,"530 South St, Austin, TX 73301" +180471,USB-C Charging Cable,1,11.95,03/31/19 12:11,"473 14th St, New York City, NY 10001" +180472,iPhone,1,700,03/06/19 19:04,"50 7th St, San Francisco, CA 94016" +180473,Apple Airpods Headphones,1,150,03/05/19 18:53,"948 2nd St, Los Angeles, CA 90001" +180474,27in FHD Monitor,1,149.99,03/05/19 19:10,"397 Cherry St, San Francisco, CA 94016" +180475,27in 4K Gaming Monitor,1,389.99,03/12/19 13:08,"55 River St, San Francisco, CA 94016" +180476,Wired Headphones,1,11.99,03/21/19 11:46,"699 Pine St, Seattle, WA 98101" +180477,AA Batteries (4-pack),1,3.84,03/25/19 17:47,"705 8th St, Seattle, WA 98101" +180478,AA Batteries (4-pack),1,3.84,03/31/19 20:17,"603 14th St, Boston, MA 02215" +180479,AA Batteries (4-pack),1,3.84,03/01/19 17:10,"280 1st St, Austin, TX 73301" +180480,34in Ultrawide Monitor,1,379.99,03/30/19 21:33,"665 Ridge St, Los Angeles, CA 90001" +180481,Apple Airpods Headphones,1,150,03/28/19 21:10,"648 Elm St, San Francisco, CA 94016" +180482,AA Batteries (4-pack),1,3.84,03/10/19 18:30,"282 14th St, San Francisco, CA 94016" +180483,Wired Headphones,1,11.99,03/22/19 08:30,"740 10th St, Portland, OR 97035" +180484,USB-C Charging Cable,1,11.95,03/16/19 16:16,"308 River St, Seattle, WA 98101" +180485,Lightning Charging Cable,1,14.95,03/29/19 16:07,"78 Cherry St, Portland, OR 97035" +180486,Lightning Charging Cable,1,14.95,03/23/19 22:41,"882 Park St, New York City, NY 10001" +180487,Bose SoundSport Headphones,1,99.99,03/06/19 14:53,"68 1st St, New York City, NY 10001" +180488,USB-C Charging Cable,1,11.95,03/10/19 17:51,"712 Cherry St, Dallas, TX 75001" +180489,Bose SoundSport Headphones,1,99.99,03/15/19 09:57,"56 Willow St, Los Angeles, CA 90001" +180490,USB-C Charging Cable,2,11.95,03/08/19 19:38,"294 11th St, Boston, MA 02215" +180491,27in 4K Gaming Monitor,1,389.99,03/30/19 11:50,"747 Washington St, New York City, NY 10001" +180492,Apple Airpods Headphones,1,150,03/14/19 22:05,"766 13th St, Los Angeles, CA 90001" +180493,27in FHD Monitor,1,149.99,03/11/19 10:15,"174 Washington St, San Francisco, CA 94016" +180494,AAA Batteries (4-pack),1,2.99,03/01/19 08:29,"990 Center St, San Francisco, CA 94016" +180495,Wired Headphones,2,11.99,03/28/19 15:33,"209 2nd St, Portland, OR 97035" +180496,Apple Airpods Headphones,1,150,03/29/19 21:17,"854 Cedar St, Los Angeles, CA 90001" +180497,Apple Airpods Headphones,1,150,03/25/19 17:46,"258 Meadow St, New York City, NY 10001" +180498,Google Phone,1,600,03/15/19 12:35,"329 Sunset St, New York City, NY 10001" +180499,Lightning Charging Cable,1,14.95,03/13/19 16:58,"378 Pine St, Dallas, TX 75001" +180500,20in Monitor,1,109.99,03/26/19 18:49,"428 Wilson St, Seattle, WA 98101" +180501,AAA Batteries (4-pack),1,2.99,03/28/19 19:20,"177 Pine St, Seattle, WA 98101" +180502,AAA Batteries (4-pack),2,2.99,03/03/19 17:51,"607 Lake St, Los Angeles, CA 90001" +180503,Lightning Charging Cable,1,14.95,03/07/19 18:45,"952 Washington St, Austin, TX 73301" +180504,Apple Airpods Headphones,1,150,03/12/19 20:52,"531 Maple St, San Francisco, CA 94016" +180505,27in FHD Monitor,1,149.99,03/28/19 14:14,"121 Elm St, Atlanta, GA 30301" +180506,AA Batteries (4-pack),2,3.84,03/04/19 10:37,"327 12th St, Boston, MA 02215" +180507,Apple Airpods Headphones,1,150,03/02/19 10:18,"705 8th St, Portland, OR 97035" +180508,34in Ultrawide Monitor,1,379.99,03/11/19 17:20,"547 Hickory St, San Francisco, CA 94016" +180509,Flatscreen TV,1,300,03/22/19 14:08,"288 Adams St, San Francisco, CA 94016" +180510,34in Ultrawide Monitor,1,379.99,03/25/19 07:30,"841 Lincoln St, Los Angeles, CA 90001" +180511,Lightning Charging Cable,1,14.95,03/28/19 18:56,"832 Forest St, Los Angeles, CA 90001" +180512,Bose SoundSport Headphones,1,99.99,03/30/19 16:55,"609 9th St, Austin, TX 73301" +180513,27in FHD Monitor,1,149.99,03/23/19 13:56,"727 Forest St, San Francisco, CA 94016" +180514,AA Batteries (4-pack),2,3.84,03/17/19 14:57,"698 Main St, Los Angeles, CA 90001" +180515,Macbook Pro Laptop,1,1700,03/06/19 14:54,"696 Lake St, Los Angeles, CA 90001" +180516,Macbook Pro Laptop,1,1700,03/10/19 16:57,"699 12th St, Atlanta, GA 30301" +180517,Lightning Charging Cable,1,14.95,03/06/19 08:27,"196 Forest St, New York City, NY 10001" +180518,AA Batteries (4-pack),2,3.84,03/07/19 13:38,"6 Lakeview St, Atlanta, GA 30301" +180519,Wired Headphones,1,11.99,03/17/19 16:22,"840 7th St, Los Angeles, CA 90001" +180520,Wired Headphones,1,11.99,03/13/19 22:20,"390 Willow St, Seattle, WA 98101" +180521,Apple Airpods Headphones,1,150,03/05/19 20:09,"634 Ridge St, San Francisco, CA 94016" +180522,27in 4K Gaming Monitor,1,389.99,03/28/19 18:43,"866 Washington St, New York City, NY 10001" +180523,ThinkPad Laptop,1,999.99,03/08/19 11:09,"787 Ridge St, San Francisco, CA 94016" +180524,Bose SoundSport Headphones,1,99.99,03/06/19 11:50,"592 Spruce St, San Francisco, CA 94016" +180525,Google Phone,1,600,03/31/19 15:27,"277 8th St, Seattle, WA 98101" +180525,USB-C Charging Cable,1,11.95,03/31/19 15:27,"277 8th St, Seattle, WA 98101" +180526,USB-C Charging Cable,1,11.95,03/25/19 20:51,"252 Chestnut St, Dallas, TX 75001" +180527,Wired Headphones,1,11.99,03/30/19 13:07,"486 11th St, Seattle, WA 98101" +180528,Apple Airpods Headphones,1,150,03/03/19 22:07,"596 River St, Austin, TX 73301" +180529,20in Monitor,1,109.99,03/02/19 02:42,"309 Ridge St, New York City, NY 10001" +180530,Lightning Charging Cable,1,14.95,03/15/19 19:52,"186 Main St, Los Angeles, CA 90001" +180531,Wired Headphones,1,11.99,03/13/19 08:12,"54 Forest St, Boston, MA 02215" +180532,USB-C Charging Cable,1,11.95,03/23/19 16:38,"335 Adams St, Los Angeles, CA 90001" +180533,USB-C Charging Cable,1,11.95,03/06/19 10:00,"174 Park St, Seattle, WA 98101" +180534,AAA Batteries (4-pack),1,2.99,03/24/19 19:51,"546 Pine St, San Francisco, CA 94016" +180535,Google Phone,1,600,03/09/19 13:09,"886 Center St, Portland, OR 97035" +180536,ThinkPad Laptop,1,999.99,03/28/19 01:08,"244 Johnson St, San Francisco, CA 94016" +180537,Bose SoundSport Headphones,1,99.99,03/01/19 11:34,"904 12th St, Los Angeles, CA 90001" +180538,20in Monitor,1,109.99,03/08/19 12:59,"453 1st St, San Francisco, CA 94016" +180539,Apple Airpods Headphones,1,150,03/10/19 18:53,"761 Lakeview St, Seattle, WA 98101" +180540,Lightning Charging Cable,1,14.95,03/11/19 17:40,"399 Washington St, New York City, NY 10001" +180541,27in 4K Gaming Monitor,1,389.99,03/12/19 18:22,"109 12th St, San Francisco, CA 94016" +180542,AA Batteries (4-pack),1,3.84,03/11/19 20:38,"822 South St, Los Angeles, CA 90001" +180543,Apple Airpods Headphones,1,150,03/21/19 12:34,"923 Main St, San Francisco, CA 94016" +180544,AAA Batteries (4-pack),1,2.99,03/10/19 18:31,"611 Maple St, Dallas, TX 75001" +180545,AA Batteries (4-pack),1,3.84,03/07/19 07:39,"292 7th St, New York City, NY 10001" +180546,USB-C Charging Cable,1,11.95,03/23/19 09:22,"702 4th St, San Francisco, CA 94016" +180547,USB-C Charging Cable,1,11.95,03/05/19 11:27,"802 Meadow St, Los Angeles, CA 90001" +180548,Apple Airpods Headphones,1,150,03/10/19 17:54,"27 Lakeview St, San Francisco, CA 94016" +180549,Google Phone,1,600,03/10/19 18:59,"997 South St, Los Angeles, CA 90001" +180550,AAA Batteries (4-pack),1,2.99,03/16/19 15:29,"904 Maple St, Los Angeles, CA 90001" +180551,20in Monitor,1,109.99,03/22/19 12:07,"720 1st St, San Francisco, CA 94016" +180552,20in Monitor,1,109.99,03/25/19 06:06,"945 Walnut St, Atlanta, GA 30301" +180552,AAA Batteries (4-pack),1,2.99,03/25/19 06:06,"945 Walnut St, Atlanta, GA 30301" +180553,Wired Headphones,1,11.99,03/14/19 20:17,"737 Pine St, Atlanta, GA 30301" +180554,ThinkPad Laptop,1,999.99,03/10/19 10:26,"990 5th St, San Francisco, CA 94016" +180555,Bose SoundSport Headphones,1,99.99,03/23/19 19:30,"821 Church St, Los Angeles, CA 90001" +180556,USB-C Charging Cable,1,11.95,03/08/19 12:28,"145 West St, Portland, OR 97035" +180557,Macbook Pro Laptop,1,1700,03/01/19 08:59,"791 Washington St, San Francisco, CA 94016" +180558,Bose SoundSport Headphones,1,99.99,03/24/19 14:42,"455 South St, Los Angeles, CA 90001" +180559,Wired Headphones,1,11.99,03/26/19 18:25,"183 Lake St, San Francisco, CA 94016" +180560,USB-C Charging Cable,1,11.95,03/15/19 10:53,"21 5th St, Seattle, WA 98101" +180561,USB-C Charging Cable,1,11.95,03/19/19 00:49,"310 Johnson St, New York City, NY 10001" +180562,27in 4K Gaming Monitor,1,389.99,03/11/19 20:09,"282 11th St, Seattle, WA 98101" +180563,AA Batteries (4-pack),2,3.84,03/08/19 12:15,"818 Wilson St, Los Angeles, CA 90001" +180564,27in 4K Gaming Monitor,1,389.99,03/17/19 09:20,"133 9th St, Los Angeles, CA 90001" +180565,Google Phone,1,600,03/21/19 13:44,"394 8th St, Atlanta, GA 30301" +180566,USB-C Charging Cable,2,11.95,03/27/19 12:59,"267 Lincoln St, Los Angeles, CA 90001" +180567,27in 4K Gaming Monitor,1,389.99,03/19/19 15:27,"53 9th St, Boston, MA 02215" +180568,Apple Airpods Headphones,1,150,03/21/19 18:18,"613 10th St, Los Angeles, CA 90001" +180569,Lightning Charging Cable,1,14.95,03/16/19 21:02,"454 7th St, Boston, MA 02215" +180570,AA Batteries (4-pack),2,3.84,03/07/19 23:32,"536 Willow St, New York City, NY 10001" +180571,34in Ultrawide Monitor,1,379.99,03/01/19 07:15,"975 1st St, New York City, NY 10001" +180572,AA Batteries (4-pack),1,3.84,03/08/19 08:54,"856 Sunset St, Dallas, TX 75001" +180573,USB-C Charging Cable,3,11.95,03/08/19 12:52,"798 Lake St, Portland, OR 97035" +180574,AA Batteries (4-pack),1,3.84,03/06/19 12:52,"700 West St, Los Angeles, CA 90001" +180575,Google Phone,1,600,03/24/19 10:23,"501 Maple St, Los Angeles, CA 90001" +180576,AAA Batteries (4-pack),1,2.99,03/21/19 17:28,"305 Pine St, Boston, MA 02215" +180577,Wired Headphones,1,11.99,03/26/19 23:35,"319 Cherry St, San Francisco, CA 94016" +180578,27in FHD Monitor,1,149.99,03/16/19 16:28,"851 Chestnut St, San Francisco, CA 94016" +180579,AA Batteries (4-pack),2,3.84,03/27/19 18:49,"18 Sunset St, Atlanta, GA 30301" +180580,AA Batteries (4-pack),3,3.84,03/26/19 12:36,"594 10th St, San Francisco, CA 94016" +180581,Lightning Charging Cable,1,14.95,03/08/19 10:25,"239 4th St, Los Angeles, CA 90001" +180582,Google Phone,1,600,03/21/19 19:36,"641 Willow St, San Francisco, CA 94016" +180582,USB-C Charging Cable,1,11.95,03/21/19 19:36,"641 Willow St, San Francisco, CA 94016" +180583,Wired Headphones,1,11.99,03/16/19 17:35,"571 1st St, New York City, NY 10001" +180584,Lightning Charging Cable,1,14.95,03/30/19 14:21,"584 Johnson St, San Francisco, CA 94016" +180585,Wired Headphones,2,11.99,03/18/19 11:25,"998 1st St, San Francisco, CA 94016" +180586,27in 4K Gaming Monitor,1,389.99,03/19/19 08:41,"4 Elm St, Dallas, TX 75001" +180587,AAA Batteries (4-pack),1,2.99,03/21/19 22:37,"670 Center St, Atlanta, GA 30301" +180588,LG Washing Machine,1,600.0,03/10/19 19:09,"63 Hickory St, Seattle, WA 98101" +180589,AA Batteries (4-pack),1,3.84,03/31/19 11:22,"847 Cedar St, Atlanta, GA 30301" +180590,Lightning Charging Cable,1,14.95,03/31/19 06:28,"252 Jackson St, Los Angeles, CA 90001" +180591,27in FHD Monitor,1,149.99,03/16/19 00:56,"283 Lake St, San Francisco, CA 94016" +180592,Wired Headphones,1,11.99,03/03/19 21:43,"971 West St, San Francisco, CA 94016" +180593,Wired Headphones,1,11.99,03/31/19 10:24,"117 Cherry St, Seattle, WA 98101" +180594,27in FHD Monitor,1,149.99,03/16/19 12:09,"561 Ridge St, San Francisco, CA 94016" +180594,Bose SoundSport Headphones,1,99.99,03/16/19 12:09,"561 Ridge St, San Francisco, CA 94016" +180595,iPhone,1,700,03/25/19 07:07,"597 Main St, Austin, TX 73301" +180596,Bose SoundSport Headphones,1,99.99,03/29/19 19:47,"783 Elm St, San Francisco, CA 94016" +180597,Apple Airpods Headphones,1,150,03/18/19 02:32,"552 Meadow St, Los Angeles, CA 90001" +180598,USB-C Charging Cable,1,11.95,03/07/19 09:34,"846 Cherry St, New York City, NY 10001" +180599,Wired Headphones,1,11.99,03/16/19 14:37,"632 Lincoln St, San Francisco, CA 94016" +180600,Vareebadd Phone,1,400,03/24/19 08:53,"180 Maple St, Portland, OR 97035" +180601,27in FHD Monitor,1,149.99,03/29/19 13:23,"694 Forest St, New York City, NY 10001" +180602,Wired Headphones,1,11.99,03/21/19 16:11,"388 Elm St, San Francisco, CA 94016" +180603,Bose SoundSport Headphones,1,99.99,03/29/19 00:15,"361 6th St, New York City, NY 10001" +180604,Flatscreen TV,1,300,03/15/19 14:36,"192 1st St, Dallas, TX 75001" +180605,AAA Batteries (4-pack),1,2.99,03/18/19 16:14,"27 Jefferson St, Portland, OR 97035" +180606,AAA Batteries (4-pack),3,2.99,03/23/19 21:22,"698 Forest St, Dallas, TX 75001" +180607,Lightning Charging Cable,1,14.95,03/27/19 18:41,"725 11th St, Dallas, TX 75001" +180608,USB-C Charging Cable,1,11.95,03/18/19 00:01,"87 Jefferson St, Austin, TX 73301" +180609,AAA Batteries (4-pack),1,2.99,03/09/19 17:16,"843 7th St, San Francisco, CA 94016" +180610,34in Ultrawide Monitor,1,379.99,03/13/19 09:13,"398 Hickory St, San Francisco, CA 94016" +180611,USB-C Charging Cable,1,11.95,03/28/19 20:19,"409 Ridge St, Dallas, TX 75001" +180612,AA Batteries (4-pack),1,3.84,03/14/19 21:33,"541 Wilson St, San Francisco, CA 94016" +180613,Lightning Charging Cable,1,14.95,03/16/19 17:35,"356 10th St, Seattle, WA 98101" +180614,Flatscreen TV,1,300,03/19/19 20:51,"301 Sunset St, Los Angeles, CA 90001" +180615,Lightning Charging Cable,1,14.95,03/31/19 12:45,"224 Lake St, San Francisco, CA 94016" +180616,USB-C Charging Cable,1,11.95,03/30/19 21:39,"419 River St, Portland, ME 04101" +180617,34in Ultrawide Monitor,1,379.99,03/06/19 20:40,"615 Johnson St, Portland, OR 97035" +180618,USB-C Charging Cable,1,11.95,03/02/19 20:04,"527 Ridge St, Boston, MA 02215" +180619,Flatscreen TV,1,300,03/19/19 11:52,"639 Spruce St, Boston, MA 02215" +180620,AAA Batteries (4-pack),3,2.99,03/16/19 19:05,"898 1st St, Boston, MA 02215" +180621,Lightning Charging Cable,1,14.95,03/23/19 06:09,"217 Sunset St, San Francisco, CA 94016" +180622,USB-C Charging Cable,1,11.95,03/12/19 05:50,"176 11th St, San Francisco, CA 94016" +180623,Lightning Charging Cable,1,14.95,03/27/19 19:39,"960 Ridge St, Boston, MA 02215" +180624,AAA Batteries (4-pack),1,2.99,03/04/19 10:47,"400 Hickory St, Dallas, TX 75001" +180625,Google Phone,1,600,03/11/19 07:28,"931 Forest St, Atlanta, GA 30301" +180625,Macbook Pro Laptop,1,1700,03/11/19 07:28,"931 Forest St, Atlanta, GA 30301" +180626,34in Ultrawide Monitor,1,379.99,03/08/19 15:25,"177 Forest St, Seattle, WA 98101" +180627,Macbook Pro Laptop,1,1700,03/15/19 08:36,"515 Hill St, Dallas, TX 75001" +180628,Lightning Charging Cable,1,14.95,03/02/19 23:53,"202 Meadow St, Atlanta, GA 30301" +180629,27in FHD Monitor,1,149.99,03/31/19 16:25,"818 Cedar St, Atlanta, GA 30301" +180630,Flatscreen TV,1,300,03/08/19 20:12,"106 Pine St, Boston, MA 02215" +180631,Lightning Charging Cable,1,14.95,03/10/19 20:50,"729 Hickory St, New York City, NY 10001" +180632,USB-C Charging Cable,1,11.95,03/26/19 19:43,"210 Johnson St, Boston, MA 02215" +180633,Bose SoundSport Headphones,1,99.99,03/23/19 15:14,"155 11th St, Seattle, WA 98101" +180634,Lightning Charging Cable,1,14.95,03/07/19 07:49,"700 Lakeview St, Dallas, TX 75001" +180635,AAA Batteries (4-pack),2,2.99,03/23/19 09:08,"116 Wilson St, New York City, NY 10001" +180636,Lightning Charging Cable,1,14.95,03/11/19 08:10,"28 Main St, Atlanta, GA 30301" +180637,27in 4K Gaming Monitor,1,389.99,03/27/19 22:08,"189 Spruce St, New York City, NY 10001" +180638,27in 4K Gaming Monitor,1,389.99,03/26/19 23:39,"131 Cedar St, Portland, OR 97035" +180639,Google Phone,1,600,03/14/19 10:42,"525 Elm St, Los Angeles, CA 90001" +180640,USB-C Charging Cable,1,11.95,03/25/19 00:26,"790 Main St, Austin, TX 73301" +180641,Lightning Charging Cable,1,14.95,03/16/19 18:42,"168 South St, New York City, NY 10001" +180642,Wired Headphones,1,11.99,03/07/19 12:37,"234 13th St, Boston, MA 02215" +180643,Bose SoundSport Headphones,1,99.99,03/06/19 13:12,"828 Wilson St, Austin, TX 73301" +180644,Lightning Charging Cable,1,14.95,03/09/19 21:56,"498 Hickory St, Seattle, WA 98101" +180645,AAA Batteries (4-pack),1,2.99,03/14/19 08:26,"817 Hickory St, Atlanta, GA 30301" +180646,Wired Headphones,1,11.99,03/23/19 15:50,"996 Wilson St, New York City, NY 10001" +180647,iPhone,1,700,03/30/19 12:12,"790 5th St, Los Angeles, CA 90001" +180648,Google Phone,1,600,03/09/19 23:19,"254 Forest St, San Francisco, CA 94016" +180649,AA Batteries (4-pack),1,3.84,03/13/19 17:32,"17 11th St, New York City, NY 10001" +180650,AA Batteries (4-pack),1,3.84,03/22/19 21:41,"603 1st St, New York City, NY 10001" +180651,AAA Batteries (4-pack),1,2.99,03/14/19 14:27,"278 Chestnut St, San Francisco, CA 94016" +180652,Bose SoundSport Headphones,1,99.99,03/24/19 11:40,"581 Adams St, Portland, OR 97035" +180653,Google Phone,1,600,03/22/19 00:33,"850 Madison St, Dallas, TX 75001" +180654,Apple Airpods Headphones,1,150,03/26/19 21:00,"547 Spruce St, San Francisco, CA 94016" +180655,USB-C Charging Cable,1,11.95,03/04/19 17:28,"6 Center St, New York City, NY 10001" +180656,Wired Headphones,1,11.99,03/10/19 12:02,"735 Hickory St, New York City, NY 10001" +180657,AA Batteries (4-pack),1,3.84,03/23/19 20:57,"684 Cherry St, Dallas, TX 75001" +180658,Lightning Charging Cable,1,14.95,03/21/19 18:12,"81 Forest St, Austin, TX 73301" +180659,AAA Batteries (4-pack),1,2.99,03/18/19 07:43,"965 Church St, San Francisco, CA 94016" +180660,Lightning Charging Cable,1,14.95,03/06/19 20:26,"214 12th St, Los Angeles, CA 90001" +180661,AAA Batteries (4-pack),1,2.99,03/09/19 07:45,"125 Main St, Dallas, TX 75001" +180662,27in 4K Gaming Monitor,1,389.99,03/18/19 20:27,"841 South St, Boston, MA 02215" +180663,USB-C Charging Cable,1,11.95,03/08/19 23:40,"222 Hickory St, Seattle, WA 98101" +180664,USB-C Charging Cable,1,11.95,03/31/19 18:51,"974 Chestnut St, San Francisco, CA 94016" +180665,ThinkPad Laptop,1,999.99,03/04/19 07:41,"193 1st St, New York City, NY 10001" +180666,USB-C Charging Cable,1,11.95,03/30/19 13:30,"751 5th St, Atlanta, GA 30301" +180667,USB-C Charging Cable,1,11.95,03/29/19 09:53,"32 8th St, San Francisco, CA 94016" +180668,Lightning Charging Cable,1,14.95,03/27/19 15:43,"7 8th St, Los Angeles, CA 90001" +180669,Flatscreen TV,1,300,03/10/19 19:12,"522 West St, Los Angeles, CA 90001" +180670,iPhone,1,700,03/09/19 13:22,"536 Center St, New York City, NY 10001" +180671,Apple Airpods Headphones,1,150,03/07/19 20:20,"736 Wilson St, San Francisco, CA 94016" +180672,Wired Headphones,1,11.99,03/09/19 15:56,"846 8th St, New York City, NY 10001" +180673,USB-C Charging Cable,1,11.95,03/24/19 07:27,"395 6th St, New York City, NY 10001" +180674,Bose SoundSport Headphones,1,99.99,03/29/19 12:16,"65 Pine St, Dallas, TX 75001" +180675,Bose SoundSport Headphones,1,99.99,03/05/19 18:00,"91 West St, New York City, NY 10001" +180676,AA Batteries (4-pack),1,3.84,03/25/19 21:26,"495 Lakeview St, Austin, TX 73301" +180677,AAA Batteries (4-pack),1,2.99,03/09/19 12:54,"64 Madison St, Boston, MA 02215" +180678,AA Batteries (4-pack),1,3.84,03/17/19 11:05,"495 Hickory St, San Francisco, CA 94016" +180679,AA Batteries (4-pack),1,3.84,03/27/19 16:44,"872 Maple St, Boston, MA 02215" +180680,USB-C Charging Cable,2,11.95,03/27/19 11:00,"141 West St, Los Angeles, CA 90001" +180681,AA Batteries (4-pack),1,3.84,03/14/19 10:41,"870 Church St, Seattle, WA 98101" +180682,Bose SoundSport Headphones,1,99.99,03/03/19 17:10,"388 Cherry St, Los Angeles, CA 90001" +180683,USB-C Charging Cable,1,11.95,03/24/19 20:51,"844 Park St, Portland, ME 04101" +180684,Wired Headphones,1,11.99,03/15/19 16:49,"454 Washington St, Portland, OR 97035" +180685,Bose SoundSport Headphones,1,99.99,03/22/19 14:13,"623 4th St, Atlanta, GA 30301" +180686,Lightning Charging Cable,1,14.95,03/10/19 15:09,"704 2nd St, San Francisco, CA 94016" +180687,27in FHD Monitor,1,149.99,03/20/19 14:19,"609 14th St, Dallas, TX 75001" +180688,AAA Batteries (4-pack),1,2.99,03/25/19 03:18,"483 Main St, Boston, MA 02215" +180689,Lightning Charging Cable,1,14.95,03/27/19 19:58,"661 5th St, San Francisco, CA 94016" +180690,20in Monitor,1,109.99,03/18/19 10:27,"730 Lakeview St, San Francisco, CA 94016" +180690,USB-C Charging Cable,2,11.95,03/18/19 10:27,"730 Lakeview St, San Francisco, CA 94016" +180691,AAA Batteries (4-pack),1,2.99,03/12/19 08:22,"494 Center St, Atlanta, GA 30301" +180691,Lightning Charging Cable,1,14.95,03/12/19 08:22,"494 Center St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +180692,USB-C Charging Cable,1,11.95,03/26/19 14:36,"244 Forest St, Los Angeles, CA 90001" +180693,Apple Airpods Headphones,1,150,03/14/19 22:47,"701 Sunset St, Los Angeles, CA 90001" +180694,Wired Headphones,1,11.99,03/13/19 09:14,"354 North St, San Francisco, CA 94016" +180695,Lightning Charging Cable,1,14.95,03/12/19 20:53,"23 Maple St, Los Angeles, CA 90001" +180696,AAA Batteries (4-pack),1,2.99,03/02/19 19:08,"261 North St, San Francisco, CA 94016" +180697,20in Monitor,1,109.99,03/04/19 01:37,"55 Ridge St, Los Angeles, CA 90001" +180698,USB-C Charging Cable,1,11.95,03/01/19 10:12,"641 North St, San Francisco, CA 94016" +180699,iPhone,1,700,03/24/19 19:39,"619 Johnson St, Boston, MA 02215" +180700,Apple Airpods Headphones,1,150,03/02/19 15:46,"843 Spruce St, New York City, NY 10001" +180701,Lightning Charging Cable,1,14.95,03/06/19 18:33,"238 9th St, Los Angeles, CA 90001" +180702,27in FHD Monitor,1,149.99,03/12/19 21:16,"433 12th St, Atlanta, GA 30301" +180703,AA Batteries (4-pack),1,3.84,03/07/19 21:49,"162 14th St, Los Angeles, CA 90001" +180704,Macbook Pro Laptop,1,1700,03/14/19 06:21,"393 2nd St, New York City, NY 10001" +180704,AA Batteries (4-pack),2,3.84,03/14/19 06:21,"393 2nd St, New York City, NY 10001" +180705,34in Ultrawide Monitor,1,379.99,03/07/19 17:56,"659 6th St, New York City, NY 10001" +180706,Flatscreen TV,1,300,03/13/19 15:39,"67 Church St, Los Angeles, CA 90001" +180707,AAA Batteries (4-pack),1,2.99,03/14/19 08:12,"22 Pine St, San Francisco, CA 94016" +180708,AA Batteries (4-pack),1,3.84,03/02/19 17:23,"843 Lakeview St, San Francisco, CA 94016" +180709,Wired Headphones,1,11.99,03/06/19 18:25,"190 Chestnut St, Dallas, TX 75001" +180710,20in Monitor,1,109.99,03/21/19 13:31,"617 Adams St, Seattle, WA 98101" +180711,Bose SoundSport Headphones,1,99.99,03/16/19 18:43,"492 Wilson St, Boston, MA 02215" +180712,AA Batteries (4-pack),1,3.84,03/03/19 18:27,"358 Elm St, Atlanta, GA 30301" +180713,iPhone,1,700,03/20/19 08:59,"502 North St, Dallas, TX 75001" +180714,27in FHD Monitor,1,149.99,03/17/19 13:54,"181 1st St, Seattle, WA 98101" +180715,ThinkPad Laptop,1,999.99,03/27/19 14:36,"136 North St, Dallas, TX 75001" +180716,iPhone,1,700,03/07/19 11:14,"372 4th St, Los Angeles, CA 90001" +180716,Wired Headphones,2,11.99,03/07/19 11:14,"372 4th St, Los Angeles, CA 90001" +180717,LG Washing Machine,1,600.0,03/10/19 20:55,"736 Lake St, Los Angeles, CA 90001" +180718,Lightning Charging Cable,1,14.95,03/01/19 19:39,"453 Dogwood St, Austin, TX 73301" +180719,ThinkPad Laptop,1,999.99,03/28/19 10:32,"127 Lake St, San Francisco, CA 94016" +180720,Lightning Charging Cable,1,14.95,03/24/19 15:43,"277 Meadow St, San Francisco, CA 94016" +180721,Apple Airpods Headphones,1,150,03/14/19 17:47,"231 Ridge St, New York City, NY 10001" +180722,Bose SoundSport Headphones,1,99.99,03/14/19 10:43,"144 Lincoln St, Los Angeles, CA 90001" +180723,Google Phone,1,600,03/04/19 18:58,"302 9th St, Los Angeles, CA 90001" +180723,USB-C Charging Cable,1,11.95,03/04/19 18:58,"302 9th St, Los Angeles, CA 90001" +180724,USB-C Charging Cable,1,11.95,03/19/19 09:50,"394 Ridge St, San Francisco, CA 94016" +180725,AA Batteries (4-pack),4,3.84,03/07/19 22:47,"359 7th St, Atlanta, GA 30301" +180726,AAA Batteries (4-pack),3,2.99,03/19/19 11:34,"897 Chestnut St, Atlanta, GA 30301" +180727,USB-C Charging Cable,1,11.95,03/04/19 15:12,"433 Park St, San Francisco, CA 94016" +180728,34in Ultrawide Monitor,1,379.99,03/27/19 19:33,"86 Main St, Boston, MA 02215" +180729,AAA Batteries (4-pack),5,2.99,03/22/19 16:07,"820 South St, New York City, NY 10001" +180730,Apple Airpods Headphones,1,150,03/16/19 19:25,"997 Center St, Los Angeles, CA 90001" +180731,Bose SoundSport Headphones,1,99.99,03/02/19 08:59,"434 5th St, Los Angeles, CA 90001" +180732,AA Batteries (4-pack),1,3.84,03/07/19 06:01,"425 Washington St, Atlanta, GA 30301" +180733,Lightning Charging Cable,1,14.95,03/10/19 08:20,"158 Adams St, San Francisco, CA 94016" +180734,27in 4K Gaming Monitor,1,389.99,03/04/19 20:44,"515 Elm St, New York City, NY 10001" +180735,AA Batteries (4-pack),1,3.84,03/13/19 21:47,"701 Dogwood St, Atlanta, GA 30301" +180736,AAA Batteries (4-pack),3,2.99,03/22/19 21:34,"650 1st St, Seattle, WA 98101" +180737,Lightning Charging Cable,1,14.95,03/09/19 16:51,"802 Maple St, Seattle, WA 98101" +180738,Flatscreen TV,1,300,03/19/19 22:42,"261 Adams St, Dallas, TX 75001" +180739,Wired Headphones,1,11.99,03/09/19 13:46,"136 Chestnut St, Los Angeles, CA 90001" +180740,AA Batteries (4-pack),2,3.84,03/30/19 17:22,"141 10th St, San Francisco, CA 94016" +180741,Wired Headphones,1,11.99,03/23/19 05:26,"629 Chestnut St, Boston, MA 02215" +180742,USB-C Charging Cable,1,11.95,03/29/19 18:39,"482 Cedar St, Los Angeles, CA 90001" +180743,AA Batteries (4-pack),1,3.84,03/26/19 14:58,"223 Highland St, Seattle, WA 98101" +180744,iPhone,1,700,03/02/19 14:17,"983 14th St, San Francisco, CA 94016" +180745,USB-C Charging Cable,1,11.95,03/14/19 21:52,"91 Dogwood St, Boston, MA 02215" +180746,AAA Batteries (4-pack),1,2.99,03/28/19 16:43,"616 Lincoln St, Los Angeles, CA 90001" +180747,AA Batteries (4-pack),1,3.84,03/05/19 08:15,"779 Willow St, New York City, NY 10001" +180748,AA Batteries (4-pack),1,3.84,03/03/19 15:25,"542 Dogwood St, Seattle, WA 98101" +180749,Wired Headphones,1,11.99,03/27/19 14:43,"285 River St, Boston, MA 02215" +180750,Flatscreen TV,1,300,03/24/19 10:52,"827 Jackson St, San Francisco, CA 94016" +180751,Apple Airpods Headphones,1,150,03/27/19 19:53,"407 Dogwood St, San Francisco, CA 94016" +180752,27in FHD Monitor,1,149.99,03/29/19 16:55,"32 Meadow St, San Francisco, CA 94016" +180753,iPhone,1,700,03/04/19 13:56,"84 Chestnut St, San Francisco, CA 94016" +180754,USB-C Charging Cable,1,11.95,03/16/19 20:27,"556 Dogwood St, Boston, MA 02215" +180755,Lightning Charging Cable,1,14.95,03/05/19 23:40,"924 14th St, Portland, ME 04101" +180756,Apple Airpods Headphones,1,150,03/15/19 15:55,"496 Cedar St, Portland, OR 97035" +180757,AA Batteries (4-pack),1,3.84,03/26/19 16:09,"755 9th St, San Francisco, CA 94016" +180758,Macbook Pro Laptop,1,1700,03/12/19 17:57,"694 Washington St, New York City, NY 10001" +180759,USB-C Charging Cable,1,11.95,03/09/19 00:38,"838 North St, San Francisco, CA 94016" +180760,Bose SoundSport Headphones,1,99.99,03/30/19 17:32,"81 Johnson St, New York City, NY 10001" +180761,27in FHD Monitor,1,149.99,03/13/19 22:35,"386 6th St, Austin, TX 73301" +180762,Apple Airpods Headphones,1,150,03/15/19 14:09,"923 Elm St, San Francisco, CA 94016" +180763,Macbook Pro Laptop,1,1700,03/18/19 20:54,"854 12th St, Boston, MA 02215" +180764,27in 4K Gaming Monitor,1,389.99,03/08/19 16:36,"831 Ridge St, Seattle, WA 98101" +180765,Flatscreen TV,1,300,03/15/19 19:57,"349 Chestnut St, San Francisco, CA 94016" +180766,Apple Airpods Headphones,1,150,03/26/19 18:39,"123 Church St, Austin, TX 73301" +180767,Lightning Charging Cable,1,14.95,03/06/19 03:15,"380 Maple St, Los Angeles, CA 90001" +180768,Wired Headphones,2,11.99,03/09/19 14:30,"276 Pine St, New York City, NY 10001" +180769,27in 4K Gaming Monitor,1,389.99,03/02/19 05:29,"911 South St, Seattle, WA 98101" +180769,Bose SoundSport Headphones,1,99.99,03/02/19 05:29,"911 South St, Seattle, WA 98101" +180770,Apple Airpods Headphones,1,150,03/17/19 14:06,"889 Ridge St, Portland, OR 97035" +180771,Lightning Charging Cable,1,14.95,03/26/19 11:32,"460 Madison St, San Francisco, CA 94016" +180772,AAA Batteries (4-pack),2,2.99,03/20/19 17:48,"429 8th St, San Francisco, CA 94016" +180773,AAA Batteries (4-pack),1,2.99,03/04/19 18:28,"486 Dogwood St, San Francisco, CA 94016" +180774,Wired Headphones,1,11.99,03/17/19 13:49,"239 Johnson St, Portland, OR 97035" +180775,AA Batteries (4-pack),1,3.84,03/24/19 13:56,"364 Washington St, Boston, MA 02215" +180776,AAA Batteries (4-pack),1,2.99,03/06/19 13:42,"353 Meadow St, Austin, TX 73301" +180777,USB-C Charging Cable,1,11.95,03/28/19 20:35,"956 12th St, Los Angeles, CA 90001" +180778,27in FHD Monitor,1,149.99,03/30/19 13:28,"600 Ridge St, Dallas, TX 75001" +180779,Google Phone,1,600,03/14/19 11:05,"367 14th St, San Francisco, CA 94016" +180780,AAA Batteries (4-pack),2,2.99,03/15/19 11:08,"321 10th St, Los Angeles, CA 90001" +180781,Lightning Charging Cable,1,14.95,03/17/19 12:57,"637 2nd St, San Francisco, CA 94016" +180782,Wired Headphones,1,11.99,03/01/19 10:01,"569 13th St, San Francisco, CA 94016" +180783,AAA Batteries (4-pack),1,2.99,03/05/19 17:15,"828 Johnson St, Atlanta, GA 30301" +180784,Lightning Charging Cable,1,14.95,03/05/19 20:40,"194 11th St, Los Angeles, CA 90001" +180785,Lightning Charging Cable,1,14.95,03/27/19 07:26,"50 Johnson St, New York City, NY 10001" +180786,Wired Headphones,1,11.99,03/25/19 20:26,"863 8th St, San Francisco, CA 94016" +180787,Apple Airpods Headphones,1,150,03/04/19 19:12,"104 Johnson St, San Francisco, CA 94016" +180788,iPhone,1,700,03/30/19 10:06,"508 10th St, Dallas, TX 75001" +180789,USB-C Charging Cable,2,11.95,03/15/19 14:00,"61 Forest St, New York City, NY 10001" +180790,Apple Airpods Headphones,2,150,03/08/19 12:59,"17 Adams St, San Francisco, CA 94016" +180791,USB-C Charging Cable,1,11.95,03/05/19 14:36,"632 South St, New York City, NY 10001" +180792,27in 4K Gaming Monitor,1,389.99,03/14/19 18:45,"957 9th St, San Francisco, CA 94016" +180793,Bose SoundSport Headphones,1,99.99,03/07/19 18:16,"766 Meadow St, Atlanta, GA 30301" +180794,Lightning Charging Cable,1,14.95,03/03/19 09:43,"468 Lincoln St, Los Angeles, CA 90001" +180795,Bose SoundSport Headphones,1,99.99,03/31/19 23:03,"748 Cedar St, New York City, NY 10001" +180796,Bose SoundSport Headphones,1,99.99,03/11/19 17:29,"615 Johnson St, New York City, NY 10001" +180797,USB-C Charging Cable,1,11.95,03/06/19 22:18,"8 Lake St, San Francisco, CA 94016" +180798,Vareebadd Phone,1,400,03/18/19 19:17,"504 Cherry St, San Francisco, CA 94016" +180799,Apple Airpods Headphones,1,150,03/04/19 16:25,"815 Dogwood St, Austin, TX 73301" +180800,iPhone,1,700,03/26/19 21:44,"339 11th St, Dallas, TX 75001" +180801,Apple Airpods Headphones,1,150,03/29/19 21:11,"693 Willow St, Los Angeles, CA 90001" +180802,USB-C Charging Cable,1,11.95,03/07/19 18:32,"561 Spruce St, New York City, NY 10001" +180803,AA Batteries (4-pack),2,3.84,03/09/19 18:32,"978 Hickory St, Portland, OR 97035" +180804,AAA Batteries (4-pack),3,2.99,03/13/19 20:35,"364 Highland St, San Francisco, CA 94016" +180805,USB-C Charging Cable,1,11.95,03/06/19 22:32,"144 4th St, Seattle, WA 98101" +180806,Wired Headphones,1,11.99,03/05/19 14:12,"512 West St, Atlanta, GA 30301" +180807,27in FHD Monitor,1,149.99,03/26/19 08:01,"834 West St, Portland, OR 97035" +180808,AA Batteries (4-pack),1,3.84,03/09/19 14:28,"148 Willow St, Portland, OR 97035" +180809,Apple Airpods Headphones,1,150,03/02/19 16:47,"583 Madison St, Austin, TX 73301" +180810,Wired Headphones,1,11.99,03/09/19 13:47,"21 Walnut St, San Francisco, CA 94016" +180811,USB-C Charging Cable,2,11.95,03/21/19 12:12,"119 Jackson St, Los Angeles, CA 90001" +180812,Bose SoundSport Headphones,1,99.99,03/08/19 11:40,"697 Church St, Seattle, WA 98101" +180813,AA Batteries (4-pack),1,3.84,03/04/19 10:39,"748 Adams St, Portland, OR 97035" +180814,iPhone,1,700,03/02/19 20:30,"906 Wilson St, San Francisco, CA 94016" +180815,USB-C Charging Cable,2,11.95,03/26/19 20:55,"511 River St, New York City, NY 10001" +180816,Bose SoundSport Headphones,1,99.99,03/13/19 11:52,"353 South St, Los Angeles, CA 90001" +180817,Apple Airpods Headphones,1,150,03/09/19 05:27,"852 Park St, San Francisco, CA 94016" +180818,27in 4K Gaming Monitor,1,389.99,03/21/19 16:13,"722 8th St, Los Angeles, CA 90001" +180819,AA Batteries (4-pack),2,3.84,03/08/19 18:44,"998 Park St, Los Angeles, CA 90001" +180820,USB-C Charging Cable,1,11.95,03/03/19 21:44,"23 Forest St, Dallas, TX 75001" +180821,USB-C Charging Cable,1,11.95,03/29/19 11:16,"693 South St, San Francisco, CA 94016" +180822,iPhone,1,700,03/18/19 16:13,"50 Cedar St, San Francisco, CA 94016" +180823,27in FHD Monitor,1,149.99,03/20/19 04:05,"594 Spruce St, Boston, MA 02215" +180824,AA Batteries (4-pack),1,3.84,03/07/19 13:47,"14 West St, Boston, MA 02215" +180825,Lightning Charging Cable,1,14.95,03/06/19 18:40,"836 Madison St, Portland, OR 97035" +180826,Bose SoundSport Headphones,1,99.99,03/21/19 17:40,"103 Church St, Boston, MA 02215" +180827,27in 4K Gaming Monitor,1,389.99,03/29/19 18:16,"931 River St, Los Angeles, CA 90001" +180828,34in Ultrawide Monitor,1,379.99,03/10/19 18:04,"567 1st St, San Francisco, CA 94016" +180829,iPhone,1,700,03/25/19 11:17,"80 South St, San Francisco, CA 94016" +180830,Wired Headphones,1,11.99,03/29/19 16:15,"444 4th St, Los Angeles, CA 90001" +180830,iPhone,1,700,03/29/19 16:15,"444 4th St, Los Angeles, CA 90001" +180831,Wired Headphones,1,11.99,03/06/19 13:01,"618 Sunset St, Dallas, TX 75001" +180832,USB-C Charging Cable,1,11.95,03/18/19 20:30,"353 Forest St, Atlanta, GA 30301" +180833,Lightning Charging Cable,1,14.95,03/18/19 16:48,"223 Madison St, Portland, OR 97035" +180834,AA Batteries (4-pack),1,3.84,03/21/19 12:18,"798 10th St, New York City, NY 10001" +180835,Lightning Charging Cable,1,14.95,03/15/19 21:25,"82 Cherry St, New York City, NY 10001" +180836,34in Ultrawide Monitor,1,379.99,03/10/19 20:54,"792 North St, San Francisco, CA 94016" +180837,Apple Airpods Headphones,1,150,03/01/19 17:45,"629 4th St, San Francisco, CA 94016" +180838,Macbook Pro Laptop,1,1700,03/06/19 10:03,"331 Lake St, San Francisco, CA 94016" +180839,27in FHD Monitor,1,149.99,03/06/19 18:26,"544 Lincoln St, Seattle, WA 98101" +180840,Bose SoundSport Headphones,1,99.99,03/13/19 15:58,"966 Spruce St, Atlanta, GA 30301" +180841,USB-C Charging Cable,1,11.95,03/31/19 16:43,"8 Dogwood St, Atlanta, GA 30301" +180842,USB-C Charging Cable,1,11.95,03/20/19 16:58,"465 Chestnut St, Los Angeles, CA 90001" +180843,AAA Batteries (4-pack),1,2.99,03/18/19 21:45,"116 Johnson St, Atlanta, GA 30301" +180844,Lightning Charging Cable,1,14.95,03/28/19 01:07,"835 Cherry St, Atlanta, GA 30301" +180845,AA Batteries (4-pack),1,3.84,03/12/19 20:31,"20 Adams St, Dallas, TX 75001" +180846,AA Batteries (4-pack),3,3.84,03/30/19 18:23,"220 Center St, San Francisco, CA 94016" +180847,Flatscreen TV,1,300,03/27/19 12:48,"410 Maple St, Atlanta, GA 30301" +180848,Bose SoundSport Headphones,1,99.99,03/27/19 17:59,"857 Chestnut St, Los Angeles, CA 90001" +180849,Macbook Pro Laptop,1,1700,03/25/19 19:26,"813 Wilson St, San Francisco, CA 94016" +180850,27in FHD Monitor,1,149.99,03/24/19 18:49,"236 South St, Seattle, WA 98101" +180851,Lightning Charging Cable,1,14.95,03/23/19 18:01,"214 Lakeview St, San Francisco, CA 94016" +180852,Wired Headphones,1,11.99,03/10/19 07:30,"685 South St, Austin, TX 73301" +180853,AA Batteries (4-pack),1,3.84,03/22/19 08:15,"739 Dogwood St, San Francisco, CA 94016" +180854,Apple Airpods Headphones,1,150,03/05/19 14:50,"255 Hickory St, Boston, MA 02215" +180855,20in Monitor,1,109.99,03/29/19 10:15,"869 Cherry St, Boston, MA 02215" +180856,Apple Airpods Headphones,1,150,03/06/19 22:25,"386 13th St, San Francisco, CA 94016" +180857,Bose SoundSport Headphones,1,99.99,03/03/19 17:32,"321 Ridge St, New York City, NY 10001" +180858,AA Batteries (4-pack),1,3.84,03/03/19 22:43,"559 8th St, Boston, MA 02215" +180859,USB-C Charging Cable,1,11.95,03/05/19 22:12,"68 10th St, Boston, MA 02215" +180860,USB-C Charging Cable,2,11.95,03/06/19 12:33,"239 Highland St, New York City, NY 10001" +180861,Apple Airpods Headphones,1,150,03/06/19 13:41,"547 Center St, San Francisco, CA 94016" +180862,Wired Headphones,1,11.99,03/26/19 15:19,"825 Jackson St, Boston, MA 02215" +180863,27in FHD Monitor,1,149.99,03/07/19 10:00,"989 Wilson St, Dallas, TX 75001" +180864,Wired Headphones,1,11.99,03/16/19 18:23,"389 9th St, Boston, MA 02215" +180865,Bose SoundSport Headphones,1,99.99,03/21/19 22:46,"394 10th St, Los Angeles, CA 90001" +180865,Lightning Charging Cable,1,14.95,03/21/19 22:46,"394 10th St, Los Angeles, CA 90001" +180866,34in Ultrawide Monitor,1,379.99,03/26/19 18:49,"530 Highland St, San Francisco, CA 94016" +180867,ThinkPad Laptop,1,999.99,03/30/19 16:56,"81 Hill St, Atlanta, GA 30301" +180868,20in Monitor,1,109.99,03/04/19 18:48,"691 10th St, Atlanta, GA 30301" +180869,AAA Batteries (4-pack),4,2.99,03/03/19 23:36,"986 Hickory St, San Francisco, CA 94016" +180870,34in Ultrawide Monitor,1,379.99,03/17/19 10:43,"136 Forest St, Seattle, WA 98101" +180871,Apple Airpods Headphones,1,150,03/02/19 19:51,"967 Main St, San Francisco, CA 94016" +180871,USB-C Charging Cable,1,11.95,03/02/19 19:51,"967 Main St, San Francisco, CA 94016" +180872,Wired Headphones,1,11.99,03/11/19 01:34,"710 Pine St, Portland, OR 97035" +180873,iPhone,1,700,03/14/19 20:14,"947 Johnson St, Boston, MA 02215" +180874,Apple Airpods Headphones,1,150,03/19/19 10:42,"107 14th St, San Francisco, CA 94016" +180875,ThinkPad Laptop,1,999.99,03/27/19 21:17,"453 Lincoln St, Seattle, WA 98101" +180876,USB-C Charging Cable,1,11.95,03/15/19 17:31,"795 North St, San Francisco, CA 94016" +180877,AAA Batteries (4-pack),1,2.99,03/11/19 17:59,"289 Spruce St, Boston, MA 02215" +180878,USB-C Charging Cable,1,11.95,03/12/19 01:11,"815 Ridge St, Los Angeles, CA 90001" +180879,Apple Airpods Headphones,1,150,03/31/19 21:07,"627 Main St, Seattle, WA 98101" +180880,AA Batteries (4-pack),2,3.84,03/26/19 16:00,"210 Chestnut St, San Francisco, CA 94016" +180881,34in Ultrawide Monitor,1,379.99,03/27/19 18:35,"300 6th St, New York City, NY 10001" +180882,AAA Batteries (4-pack),3,2.99,03/21/19 21:43,"469 Jackson St, Seattle, WA 98101" +180883,Wired Headphones,1,11.99,03/04/19 09:31,"454 11th St, San Francisco, CA 94016" +180884,Wired Headphones,1,11.99,03/09/19 16:36,"772 Lakeview St, Portland, OR 97035" +180885,Wired Headphones,2,11.99,03/14/19 11:04,"476 Spruce St, Dallas, TX 75001" +180886,Apple Airpods Headphones,1,150,03/18/19 22:54,"82 River St, New York City, NY 10001" +180887,AAA Batteries (4-pack),1,2.99,03/11/19 21:48,"593 Willow St, Seattle, WA 98101" +180888,AAA Batteries (4-pack),1,2.99,03/09/19 23:49,"991 13th St, New York City, NY 10001" +180889,AA Batteries (4-pack),1,3.84,03/02/19 10:20,"873 Main St, Atlanta, GA 30301" +180890,AA Batteries (4-pack),1,3.84,03/19/19 11:59,"979 9th St, New York City, NY 10001" +180891,AAA Batteries (4-pack),1,2.99,03/06/19 09:10,"336 6th St, Boston, MA 02215" +180892,27in FHD Monitor,1,149.99,03/03/19 09:04,"411 Johnson St, Boston, MA 02215" +180893,34in Ultrawide Monitor,1,379.99,03/23/19 14:42,"755 Lincoln St, New York City, NY 10001" +180894,Bose SoundSport Headphones,1,99.99,03/02/19 23:22,"883 South St, Los Angeles, CA 90001" +180895,iPhone,1,700,03/06/19 21:44,"949 Hickory St, Los Angeles, CA 90001" +180896,Flatscreen TV,1,300,03/25/19 11:37,"689 Lakeview St, Los Angeles, CA 90001" +180897,AAA Batteries (4-pack),1,2.99,03/02/19 20:19,"724 1st St, San Francisco, CA 94016" +180898,Macbook Pro Laptop,1,1700,03/16/19 13:50,"685 5th St, Los Angeles, CA 90001" +180899,USB-C Charging Cable,2,11.95,03/10/19 11:01,"860 8th St, Atlanta, GA 30301" +180900,Apple Airpods Headphones,1,150,03/17/19 12:30,"185 Chestnut St, San Francisco, CA 94016" +180901,Apple Airpods Headphones,1,150,03/12/19 21:21,"984 7th St, Boston, MA 02215" +180902,Wired Headphones,1,11.99,03/13/19 18:20,"308 4th St, Portland, OR 97035" +180903,Macbook Pro Laptop,1,1700,03/02/19 18:19,"865 Johnson St, Dallas, TX 75001" +180904,Lightning Charging Cable,1,14.95,03/26/19 09:23,"422 River St, Los Angeles, CA 90001" +180905,AA Batteries (4-pack),1,3.84,03/22/19 09:20,"568 Willow St, Portland, OR 97035" +180906,Wired Headphones,1,11.99,03/25/19 16:26,"68 Chestnut St, Los Angeles, CA 90001" +180907,USB-C Charging Cable,1,11.95,03/27/19 11:13,"205 Chestnut St, New York City, NY 10001" +180908,AAA Batteries (4-pack),2,2.99,03/15/19 09:00,"432 West St, Los Angeles, CA 90001" +180909,Lightning Charging Cable,1,14.95,03/30/19 23:23,"282 9th St, Seattle, WA 98101" +180910,Wired Headphones,1,11.99,03/29/19 19:15,"620 Cedar St, Los Angeles, CA 90001" +180911,Wired Headphones,1,11.99,03/24/19 15:57,"460 Spruce St, Los Angeles, CA 90001" +180912,20in Monitor,1,109.99,03/30/19 16:01,"232 5th St, New York City, NY 10001" +180913,Apple Airpods Headphones,1,150,03/29/19 13:58,"835 Highland St, San Francisco, CA 94016" +180914,Lightning Charging Cable,1,14.95,03/31/19 16:05,"534 8th St, Dallas, TX 75001" +180915,Apple Airpods Headphones,1,150,03/06/19 20:23,"123 Ridge St, Boston, MA 02215" +180916,27in 4K Gaming Monitor,1,389.99,03/18/19 00:26,"581 Jackson St, San Francisco, CA 94016" +180917,Wired Headphones,1,11.99,03/17/19 14:20,"82 10th St, New York City, NY 10001" +180918,USB-C Charging Cable,1,11.95,03/07/19 10:50,"388 4th St, Los Angeles, CA 90001" +180919,USB-C Charging Cable,1,11.95,03/21/19 18:13,"323 Jackson St, San Francisco, CA 94016" +180920,iPhone,1,700,03/17/19 21:55,"546 4th St, Seattle, WA 98101" +180920,Apple Airpods Headphones,1,150,03/17/19 21:55,"546 4th St, Seattle, WA 98101" +180920,Wired Headphones,1,11.99,03/17/19 21:55,"546 4th St, Seattle, WA 98101" +180921,Wired Headphones,1,11.99,03/28/19 18:21,"871 Center St, Atlanta, GA 30301" +180922,iPhone,1,700,03/26/19 19:06,"375 Johnson St, Los Angeles, CA 90001" +180923,Apple Airpods Headphones,1,150,03/24/19 14:19,"981 Cedar St, Atlanta, GA 30301" +180924,Wired Headphones,1,11.99,03/31/19 18:54,"376 Meadow St, Austin, TX 73301" +180925,USB-C Charging Cable,3,11.95,03/21/19 16:46,"290 Johnson St, Dallas, TX 75001" +180926,AA Batteries (4-pack),1,3.84,03/23/19 00:53,"422 Dogwood St, Los Angeles, CA 90001" +180927,Apple Airpods Headphones,1,150,03/10/19 10:05,"642 Johnson St, Los Angeles, CA 90001" +180928,AAA Batteries (4-pack),2,2.99,03/11/19 12:21,"772 Wilson St, San Francisco, CA 94016" +180929,Lightning Charging Cable,1,14.95,03/13/19 19:52,"589 8th St, Boston, MA 02215" +180930,iPhone,1,700,03/19/19 09:39,"114 Meadow St, San Francisco, CA 94016" +180931,AA Batteries (4-pack),1,3.84,03/02/19 08:38,"252 Ridge St, San Francisco, CA 94016" +180932,27in FHD Monitor,1,149.99,03/21/19 14:01,"167 Lake St, Seattle, WA 98101" +180933,Google Phone,1,600,03/26/19 23:34,"670 5th St, Los Angeles, CA 90001" +180933,Bose SoundSport Headphones,1,99.99,03/26/19 23:34,"670 5th St, Los Angeles, CA 90001" +180934,Wired Headphones,1,11.99,03/13/19 11:13,"245 6th St, Dallas, TX 75001" +180935,Bose SoundSport Headphones,1,99.99,03/27/19 00:02,"945 Highland St, Atlanta, GA 30301" +180936,Wired Headphones,1,11.99,03/23/19 19:26,"567 5th St, Los Angeles, CA 90001" +180937,USB-C Charging Cable,1,11.95,03/04/19 09:29,"179 Maple St, Dallas, TX 75001" +180938,Vareebadd Phone,1,400,03/03/19 18:23,"169 Church St, San Francisco, CA 94016" +180939,Apple Airpods Headphones,1,150,03/14/19 22:14,"702 Dogwood St, Los Angeles, CA 90001" +180940,AAA Batteries (4-pack),1,2.99,03/30/19 20:21,"659 Washington St, Atlanta, GA 30301" +180941,27in FHD Monitor,1,149.99,03/13/19 19:02,"740 Ridge St, Atlanta, GA 30301" +180942,AA Batteries (4-pack),1,3.84,03/20/19 03:48,"663 Cedar St, Dallas, TX 75001" +180943,Lightning Charging Cable,1,14.95,03/15/19 15:08,"361 2nd St, San Francisco, CA 94016" +180944,Flatscreen TV,1,300,03/17/19 15:22,"619 Dogwood St, Austin, TX 73301" +180945,AAA Batteries (4-pack),1,2.99,03/15/19 14:48,"340 9th St, Los Angeles, CA 90001" +180946,Wired Headphones,1,11.99,03/22/19 04:36,"879 Wilson St, Los Angeles, CA 90001" +180946,Apple Airpods Headphones,1,150,03/22/19 04:36,"879 Wilson St, Los Angeles, CA 90001" +180947,Apple Airpods Headphones,1,150,03/02/19 12:01,"712 Park St, Los Angeles, CA 90001" +180948,Bose SoundSport Headphones,1,99.99,03/02/19 14:52,"689 Willow St, Los Angeles, CA 90001" +180949,AA Batteries (4-pack),1,3.84,03/15/19 16:55,"177 Willow St, Portland, OR 97035" +180949,AA Batteries (4-pack),1,3.84,03/15/19 16:55,"177 Willow St, Portland, OR 97035" +180950,Apple Airpods Headphones,1,150,03/23/19 13:43,"975 Spruce St, Atlanta, GA 30301" +180951,Bose SoundSport Headphones,1,99.99,03/27/19 21:18,"285 Lincoln St, Seattle, WA 98101" +180952,USB-C Charging Cable,1,11.95,03/16/19 18:56,"238 South St, Austin, TX 73301" +180953,iPhone,1,700,03/13/19 17:07,"999 Cherry St, Dallas, TX 75001" +180954,Wired Headphones,1,11.99,03/27/19 23:20,"477 1st St, New York City, NY 10001" +180955,AAA Batteries (4-pack),1,2.99,03/02/19 15:23,"518 9th St, Seattle, WA 98101" +180956,Bose SoundSport Headphones,1,99.99,03/29/19 01:34,"582 Hill St, Boston, MA 02215" +180957,Lightning Charging Cable,1,14.95,03/25/19 19:05,"416 South St, Seattle, WA 98101" +180958,AAA Batteries (4-pack),3,2.99,03/29/19 19:24,"887 Madison St, Dallas, TX 75001" +180959,AAA Batteries (4-pack),2,2.99,03/30/19 10:31,"800 River St, San Francisco, CA 94016" +180960,34in Ultrawide Monitor,1,379.99,03/21/19 19:53,"589 1st St, Boston, MA 02215" +180961,Macbook Pro Laptop,1,1700,03/29/19 13:35,"29 Spruce St, Boston, MA 02215" +180962,AA Batteries (4-pack),1,3.84,03/11/19 12:12,"600 Park St, New York City, NY 10001" +180963,Google Phone,1,600,03/04/19 21:24,"588 6th St, New York City, NY 10001" +180964,AA Batteries (4-pack),1,3.84,03/30/19 06:41,"79 Hickory St, San Francisco, CA 94016" +180965,Macbook Pro Laptop,1,1700,03/05/19 12:54,"217 Adams St, Atlanta, GA 30301" +180966,Bose SoundSport Headphones,1,99.99,03/17/19 10:36,"872 Dogwood St, San Francisco, CA 94016" +180967,AA Batteries (4-pack),1,3.84,03/03/19 14:07,"171 Meadow St, Los Angeles, CA 90001" +180968,Flatscreen TV,1,300,03/28/19 10:42,"254 Lakeview St, San Francisco, CA 94016" +180969,Bose SoundSport Headphones,1,99.99,03/11/19 19:09,"660 Lakeview St, Los Angeles, CA 90001" +180970,Bose SoundSport Headphones,1,99.99,03/17/19 14:42,"876 1st St, Dallas, TX 75001" +180971,27in FHD Monitor,1,149.99,03/29/19 20:40,"494 Hill St, Los Angeles, CA 90001" +180972,Wired Headphones,1,11.99,03/29/19 12:02,"158 10th St, Los Angeles, CA 90001" +180973,USB-C Charging Cable,1,11.95,03/02/19 15:50,"814 Chestnut St, San Francisco, CA 94016" +180974,AAA Batteries (4-pack),1,2.99,03/22/19 13:05,"310 1st St, Portland, ME 04101" +180975,AA Batteries (4-pack),3,3.84,03/25/19 09:50,"189 Meadow St, San Francisco, CA 94016" +180976,Vareebadd Phone,1,400,03/09/19 08:51,"512 Highland St, San Francisco, CA 94016" +180976,USB-C Charging Cable,1,11.95,03/09/19 08:51,"512 Highland St, San Francisco, CA 94016" +180977,Google Phone,1,600,03/01/19 16:54,"436 Adams St, Seattle, WA 98101" +180978,34in Ultrawide Monitor,1,379.99,03/12/19 11:18,"370 West St, Dallas, TX 75001" +180979,USB-C Charging Cable,1,11.95,03/07/19 07:19,"193 7th St, New York City, NY 10001" +180980,Lightning Charging Cable,1,14.95,03/02/19 23:10,"275 Meadow St, Austin, TX 73301" +180981,Wired Headphones,1,11.99,03/29/19 12:52,"47 12th St, New York City, NY 10001" +180982,27in FHD Monitor,1,149.99,03/13/19 11:14,"126 Main St, Boston, MA 02215" +180983,AAA Batteries (4-pack),1,2.99,03/04/19 17:22,"805 Madison St, San Francisco, CA 94016" +180984,AA Batteries (4-pack),3,3.84,03/14/19 00:16,"430 7th St, San Francisco, CA 94016" +180985,ThinkPad Laptop,1,999.99,03/04/19 13:35,"275 8th St, Atlanta, GA 30301" +180986,20in Monitor,1,109.99,03/12/19 12:33,"875 Church St, Dallas, TX 75001" +180987,USB-C Charging Cable,1,11.95,03/26/19 15:33,"335 River St, Dallas, TX 75001" +180988,AAA Batteries (4-pack),1,2.99,03/20/19 09:19,"871 River St, Atlanta, GA 30301" +180989,27in FHD Monitor,1,149.99,03/27/19 11:43,"119 Ridge St, Seattle, WA 98101" +180990,USB-C Charging Cable,1,11.95,03/08/19 20:39,"760 Adams St, New York City, NY 10001" +180991,34in Ultrawide Monitor,1,379.99,03/20/19 14:20,"254 10th St, New York City, NY 10001" +180992,AAA Batteries (4-pack),2,2.99,03/02/19 14:59,"440 Hickory St, New York City, NY 10001" +180993,Bose SoundSport Headphones,1,99.99,03/06/19 12:12,"416 12th St, Seattle, WA 98101" +180994,Wired Headphones,1,11.99,03/17/19 21:21,"843 Elm St, New York City, NY 10001" +180995,Apple Airpods Headphones,1,150,03/05/19 17:21,"715 Dogwood St, Atlanta, GA 30301" +180996,iPhone,1,700,03/23/19 18:46,"800 5th St, Boston, MA 02215" +180997,AA Batteries (4-pack),1,3.84,03/31/19 23:34,"541 13th St, New York City, NY 10001" +180998,20in Monitor,1,109.99,03/15/19 20:26,"374 Walnut St, San Francisco, CA 94016" +180999,Wired Headphones,1,11.99,03/16/19 20:04,"814 Adams St, Portland, OR 97035" +181000,Apple Airpods Headphones,1,150,03/02/19 13:09,"59 South St, Dallas, TX 75001" +181001,Lightning Charging Cable,1,14.95,03/16/19 19:04,"496 Hill St, Los Angeles, CA 90001" +181002,Lightning Charging Cable,1,14.95,03/03/19 10:51,"170 Main St, Los Angeles, CA 90001" +181003,Wired Headphones,1,11.99,03/15/19 12:13,"715 Center St, New York City, NY 10001" +181004,USB-C Charging Cable,1,11.95,03/23/19 12:03,"771 River St, New York City, NY 10001" +181005,AA Batteries (4-pack),1,3.84,03/25/19 19:01,"618 8th St, Seattle, WA 98101" +181006,Lightning Charging Cable,1,14.95,03/14/19 17:42,"92 Dogwood St, Austin, TX 73301" +181007,27in FHD Monitor,1,149.99,03/06/19 13:04,"475 Elm St, San Francisco, CA 94016" +181008,LG Washing Machine,1,600.0,03/31/19 22:24,"623 Forest St, Los Angeles, CA 90001" +181009,27in 4K Gaming Monitor,1,389.99,03/22/19 08:01,"277 Meadow St, Austin, TX 73301" +181010,USB-C Charging Cable,1,11.95,03/30/19 09:29,"281 Jackson St, San Francisco, CA 94016" +181011,Lightning Charging Cable,3,14.95,03/25/19 18:28,"160 9th St, Dallas, TX 75001" +181012,AA Batteries (4-pack),1,3.84,03/29/19 20:52,"340 Ridge St, New York City, NY 10001" +181013,Bose SoundSport Headphones,1,99.99,03/11/19 20:03,"273 Meadow St, San Francisco, CA 94016" +181014,USB-C Charging Cable,1,11.95,03/21/19 00:15,"89 Pine St, New York City, NY 10001" +181015,Flatscreen TV,1,300,03/18/19 09:56,"349 Jackson St, Boston, MA 02215" +181016,AAA Batteries (4-pack),1,2.99,03/16/19 11:38,"152 North St, Boston, MA 02215" +181017,AA Batteries (4-pack),1,3.84,03/04/19 19:45,"13 Jefferson St, Atlanta, GA 30301" +181018,iPhone,1,700,03/19/19 21:50,"271 Cedar St, Dallas, TX 75001" +181018,Lightning Charging Cable,2,14.95,03/19/19 21:50,"271 Cedar St, Dallas, TX 75001" +181019,Google Phone,1,600,03/04/19 12:13,"6 Church St, San Francisco, CA 94016" +181020,Flatscreen TV,1,300,03/15/19 21:20,"868 5th St, Portland, OR 97035" +181021,USB-C Charging Cable,1,11.95,03/28/19 16:58,"194 10th St, San Francisco, CA 94016" +181022,20in Monitor,1,109.99,03/17/19 11:05,"224 Hill St, New York City, NY 10001" +181023,Flatscreen TV,1,300,03/21/19 14:38,"198 Sunset St, San Francisco, CA 94016" +181024,Lightning Charging Cable,1,14.95,03/22/19 19:28,"522 Spruce St, Austin, TX 73301" +181025,Bose SoundSport Headphones,1,99.99,03/05/19 05:35,"208 8th St, Boston, MA 02215" +181026,Wired Headphones,1,11.99,03/14/19 13:40,"121 2nd St, Los Angeles, CA 90001" +181027,AAA Batteries (4-pack),2,2.99,03/17/19 15:13,"295 Adams St, San Francisco, CA 94016" +181028,Wired Headphones,1,11.99,03/27/19 13:15,"443 Forest St, San Francisco, CA 94016" +181029,LG Washing Machine,1,600.0,03/07/19 13:36,"727 Elm St, New York City, NY 10001" +181030,Lightning Charging Cable,1,14.95,03/26/19 19:09,"447 Pine St, Portland, OR 97035" +181031,AA Batteries (4-pack),1,3.84,03/14/19 16:40,"922 9th St, San Francisco, CA 94016" +181032,Bose SoundSport Headphones,1,99.99,03/01/19 19:09,"447 5th St, Los Angeles, CA 90001" +181033,USB-C Charging Cable,1,11.95,03/03/19 19:04,"216 1st St, Los Angeles, CA 90001" +181034,USB-C Charging Cable,1,11.95,03/25/19 21:12,"678 2nd St, New York City, NY 10001" +181035,ThinkPad Laptop,1,999.99,03/13/19 15:55,"382 Sunset St, New York City, NY 10001" +181036,AAA Batteries (4-pack),2,2.99,03/19/19 09:06,"872 4th St, Atlanta, GA 30301" +181037,USB-C Charging Cable,1,11.95,03/04/19 23:09,"317 Pine St, Boston, MA 02215" +181038,27in FHD Monitor,1,149.99,03/30/19 02:06,"357 South St, Portland, OR 97035" +181039,Lightning Charging Cable,1,14.95,03/02/19 18:09,"575 11th St, Los Angeles, CA 90001" +181040,iPhone,1,700,03/02/19 21:56,"852 Spruce St, San Francisco, CA 94016" +181041,Macbook Pro Laptop,1,1700,03/12/19 17:19,"799 Wilson St, Los Angeles, CA 90001" +181042,USB-C Charging Cable,1,11.95,03/08/19 12:37,"401 Spruce St, San Francisco, CA 94016" +181043,Apple Airpods Headphones,1,150,03/22/19 08:07,"53 8th St, Boston, MA 02215" +181044,Lightning Charging Cable,1,14.95,03/08/19 23:02,"590 6th St, Los Angeles, CA 90001" +181045,20in Monitor,1,109.99,03/24/19 14:36,"422 Walnut St, New York City, NY 10001" +181046,AA Batteries (4-pack),1,3.84,03/30/19 23:56,"441 10th St, Boston, MA 02215" +181047,Wired Headphones,1,11.99,03/15/19 17:03,"901 Lake St, Boston, MA 02215" +181048,Lightning Charging Cable,1,14.95,03/07/19 15:00,"386 Willow St, San Francisco, CA 94016" +181049,Wired Headphones,1,11.99,03/30/19 13:38,"534 Willow St, New York City, NY 10001" +181050,Lightning Charging Cable,1,14.95,03/01/19 18:15,"974 Johnson St, Seattle, WA 98101" +181051,Wired Headphones,1,11.99,03/11/19 17:57,"651 Spruce St, New York City, NY 10001" +181052,USB-C Charging Cable,1,11.95,03/01/19 20:07,"100 Lake St, Boston, MA 02215" +181053,Apple Airpods Headphones,1,150,03/07/19 11:02,"770 Park St, Atlanta, GA 30301" +181054,AA Batteries (4-pack),1,3.84,03/18/19 19:01,"614 Lake St, Boston, MA 02215" +181055,Google Phone,1,600,03/12/19 17:02,"852 River St, Atlanta, GA 30301" +181056,USB-C Charging Cable,1,11.95,03/08/19 18:38,"488 4th St, Seattle, WA 98101" +181057,Apple Airpods Headphones,1,150,03/09/19 17:36,"669 Jackson St, Los Angeles, CA 90001" +181058,Lightning Charging Cable,1,14.95,03/15/19 10:31,"127 Dogwood St, Portland, OR 97035" +181059,Wired Headphones,1,11.99,03/04/19 08:16,"850 Jefferson St, Dallas, TX 75001" +181060,Apple Airpods Headphones,1,150,03/07/19 11:53,"536 Chestnut St, Boston, MA 02215" +181061,34in Ultrawide Monitor,1,379.99,03/20/19 10:17,"380 Johnson St, Atlanta, GA 30301" +181062,Bose SoundSport Headphones,1,99.99,03/16/19 10:22,"337 13th St, San Francisco, CA 94016" +181063,AAA Batteries (4-pack),2,2.99,03/13/19 14:34,"35 North St, New York City, NY 10001" +181064,Wired Headphones,1,11.99,03/21/19 17:13,"819 Willow St, Los Angeles, CA 90001" +181065,27in FHD Monitor,1,149.99,03/20/19 12:51,"695 Maple St, Seattle, WA 98101" +181066,Lightning Charging Cable,1,14.95,03/22/19 17:01,"396 Cherry St, San Francisco, CA 94016" +181067,iPhone,1,700,03/17/19 12:28,"534 Sunset St, Austin, TX 73301" +181068,27in 4K Gaming Monitor,1,389.99,03/21/19 15:56,"962 9th St, Portland, OR 97035" +181069,AA Batteries (4-pack),1,3.84,03/31/19 12:01,"541 Lincoln St, San Francisco, CA 94016" +181070,AAA Batteries (4-pack),1,2.99,03/18/19 15:14,"81 8th St, Austin, TX 73301" +181071,Apple Airpods Headphones,1,150,03/05/19 20:18,"840 Center St, Dallas, TX 75001" +181072,AAA Batteries (4-pack),1,2.99,03/30/19 18:43,"172 Pine St, Los Angeles, CA 90001" +181073,Lightning Charging Cable,1,14.95,03/31/19 11:13,"719 Jefferson St, San Francisco, CA 94016" +181074,34in Ultrawide Monitor,1,379.99,03/11/19 21:47,"843 South St, New York City, NY 10001" +181075,AA Batteries (4-pack),2,3.84,03/29/19 12:55,"440 Johnson St, New York City, NY 10001" +181076,USB-C Charging Cable,1,11.95,03/09/19 08:38,"841 Washington St, San Francisco, CA 94016" +181077,iPhone,1,700,03/03/19 15:08,"490 Washington St, Boston, MA 02215" +,,,,, +181078,USB-C Charging Cable,1,11.95,03/06/19 17:36,"74 12th St, Boston, MA 02215" +181079,USB-C Charging Cable,1,11.95,03/01/19 08:21,"498 5th St, Atlanta, GA 30301" +181080,LG Washing Machine,1,600.0,03/04/19 20:46,"930 South St, New York City, NY 10001" +181081,Lightning Charging Cable,1,14.95,03/02/19 19:34,"126 Washington St, San Francisco, CA 94016" +181082,27in 4K Gaming Monitor,1,389.99,03/13/19 23:38,"53 Walnut St, Portland, ME 04101" +181083,AA Batteries (4-pack),2,3.84,03/27/19 21:46,"136 Spruce St, Los Angeles, CA 90001" +181084,AA Batteries (4-pack),2,3.84,03/07/19 19:20,"484 Ridge St, San Francisco, CA 94016" +181085,ThinkPad Laptop,1,999.99,03/29/19 18:59,"770 Church St, San Francisco, CA 94016" +181086,Lightning Charging Cable,1,14.95,03/30/19 13:38,"780 Ridge St, Los Angeles, CA 90001" +181087,Bose SoundSport Headphones,1,99.99,03/16/19 16:59,"376 Maple St, San Francisco, CA 94016" +181088,Apple Airpods Headphones,1,150,03/17/19 18:58,"745 Adams St, Boston, MA 02215" +181089,27in 4K Gaming Monitor,1,389.99,03/01/19 19:46,"895 Lake St, Los Angeles, CA 90001" +181090,Macbook Pro Laptop,1,1700,03/02/19 18:32,"991 Dogwood St, New York City, NY 10001" +181091,Flatscreen TV,1,300,03/30/19 09:38,"62 Church St, Seattle, WA 98101" +181092,LG Washing Machine,1,600.0,03/07/19 15:03,"412 Meadow St, San Francisco, CA 94016" +181093,27in FHD Monitor,1,149.99,03/16/19 13:43,"745 Madison St, New York City, NY 10001" +181094,Macbook Pro Laptop,1,1700,03/02/19 21:14,"527 Pine St, Atlanta, GA 30301" +181094,27in FHD Monitor,1,149.99,03/02/19 21:14,"527 Pine St, Atlanta, GA 30301" +181095,USB-C Charging Cable,1,11.95,03/22/19 13:14,"287 River St, San Francisco, CA 94016" +181096,USB-C Charging Cable,1,11.95,03/04/19 21:35,"484 Willow St, Dallas, TX 75001" +181097,Lightning Charging Cable,1,14.95,03/21/19 15:32,"485 Sunset St, San Francisco, CA 94016" +181098,Apple Airpods Headphones,1,150,03/17/19 09:51,"522 Highland St, San Francisco, CA 94016" +181099,AA Batteries (4-pack),1,3.84,03/02/19 23:52,"597 Main St, San Francisco, CA 94016" +181100,27in FHD Monitor,1,149.99,03/30/19 20:13,"455 Cherry St, San Francisco, CA 94016" +181101,USB-C Charging Cable,1,11.95,03/02/19 15:46,"466 4th St, Los Angeles, CA 90001" +181102,Lightning Charging Cable,1,14.95,03/30/19 06:20,"658 Willow St, Atlanta, GA 30301" +181103,Wired Headphones,2,11.99,03/16/19 10:00,"55 Johnson St, San Francisco, CA 94016" +181104,Wired Headphones,1,11.99,03/29/19 14:19,"825 11th St, Los Angeles, CA 90001" +181105,Wired Headphones,1,11.99,03/30/19 18:05,"881 South St, San Francisco, CA 94016" +181106,iPhone,1,700,03/10/19 07:46,"418 Forest St, San Francisco, CA 94016" +181107,iPhone,1,700,03/21/19 16:37,"998 Center St, Atlanta, GA 30301" +181107,Wired Headphones,1,11.99,03/21/19 16:37,"998 Center St, Atlanta, GA 30301" +181108,Bose SoundSport Headphones,1,99.99,03/28/19 17:57,"988 Washington St, New York City, NY 10001" +181109,Bose SoundSport Headphones,1,99.99,03/16/19 21:09,"164 Walnut St, Austin, TX 73301" +181110,Lightning Charging Cable,1,14.95,03/26/19 22:23,"351 11th St, San Francisco, CA 94016" +181111,Lightning Charging Cable,1,14.95,03/20/19 18:18,"855 Sunset St, Austin, TX 73301" +181112,Google Phone,1,600,03/05/19 20:35,"633 Cherry St, San Francisco, CA 94016" +181113,AAA Batteries (4-pack),1,2.99,03/05/19 10:53,"387 13th St, New York City, NY 10001" +181114,Lightning Charging Cable,1,14.95,03/20/19 13:30,"487 Cedar St, Atlanta, GA 30301" +181115,USB-C Charging Cable,1,11.95,03/19/19 18:44,"158 4th St, Seattle, WA 98101" +181116,Wired Headphones,1,11.99,03/12/19 17:32,"111 River St, New York City, NY 10001" +181117,Macbook Pro Laptop,1,1700,03/29/19 14:48,"267 Dogwood St, Los Angeles, CA 90001" +181118,AAA Batteries (4-pack),6,2.99,03/22/19 16:56,"878 Church St, Boston, MA 02215" +181119,Flatscreen TV,1,300,03/30/19 19:13,"158 Church St, Boston, MA 02215" +181120,Lightning Charging Cable,2,14.95,03/17/19 12:34,"3 Lakeview St, Boston, MA 02215" +181121,USB-C Charging Cable,1,11.95,03/30/19 13:43,"562 9th St, Seattle, WA 98101" +181122,27in 4K Gaming Monitor,1,389.99,03/14/19 21:36,"611 8th St, San Francisco, CA 94016" +181123,Bose SoundSport Headphones,1,99.99,03/16/19 08:40,"324 Madison St, San Francisco, CA 94016" +181124,Apple Airpods Headphones,1,150,03/18/19 11:58,"777 Center St, New York City, NY 10001" +181125,AAA Batteries (4-pack),1,2.99,03/08/19 22:49,"362 13th St, New York City, NY 10001" +181126,Lightning Charging Cable,1,14.95,03/18/19 00:46,"9 Sunset St, Seattle, WA 98101" +181127,USB-C Charging Cable,1,11.95,03/02/19 19:16,"301 13th St, New York City, NY 10001" +181128,27in 4K Gaming Monitor,1,389.99,03/12/19 09:55,"247 South St, New York City, NY 10001" +181129,Lightning Charging Cable,1,14.95,03/31/19 22:29,"443 10th St, Dallas, TX 75001" +181130,USB-C Charging Cable,1,11.95,03/08/19 18:24,"649 Pine St, San Francisco, CA 94016" +181131,Apple Airpods Headphones,1,150,03/11/19 10:53,"513 Cedar St, San Francisco, CA 94016" +181132,Bose SoundSport Headphones,1,99.99,03/27/19 17:46,"65 7th St, Boston, MA 02215" +181133,AAA Batteries (4-pack),1,2.99,03/21/19 20:52,"677 Madison St, New York City, NY 10001" +181134,ThinkPad Laptop,1,999.99,03/10/19 13:47,"576 Church St, San Francisco, CA 94016" +181135,USB-C Charging Cable,1,11.95,03/03/19 11:16,"600 13th St, New York City, NY 10001" +181136,AAA Batteries (4-pack),1,2.99,03/18/19 08:18,"861 Cedar St, San Francisco, CA 94016" +181137,AAA Batteries (4-pack),1,2.99,03/03/19 23:35,"263 14th St, Los Angeles, CA 90001" +181138,Flatscreen TV,1,300,03/13/19 09:39,"653 13th St, Boston, MA 02215" +181139,AAA Batteries (4-pack),1,2.99,03/19/19 10:57,"868 12th St, Atlanta, GA 30301" +181140,AAA Batteries (4-pack),1,2.99,03/28/19 02:12,"317 Lakeview St, Boston, MA 02215" +181141,Macbook Pro Laptop,1,1700,03/29/19 20:32,"536 6th St, Seattle, WA 98101" +181142,27in FHD Monitor,1,149.99,03/24/19 17:09,"360 7th St, Portland, OR 97035" +181143,AAA Batteries (4-pack),1,2.99,03/08/19 13:32,"638 12th St, Los Angeles, CA 90001" +181144,Wired Headphones,2,11.99,03/05/19 18:47,"302 Johnson St, Boston, MA 02215" +181145,Bose SoundSport Headphones,1,99.99,03/31/19 08:11,"43 5th St, Seattle, WA 98101" +181146,27in FHD Monitor,1,149.99,03/31/19 16:17,"705 8th St, New York City, NY 10001" +181147,Lightning Charging Cable,1,14.95,03/04/19 22:07,"693 Park St, New York City, NY 10001" +181148,Lightning Charging Cable,1,14.95,03/22/19 21:29,"943 Main St, Los Angeles, CA 90001" +181149,Wired Headphones,1,11.99,03/29/19 14:19,"563 Jackson St, Boston, MA 02215" +181150,USB-C Charging Cable,1,11.95,03/31/19 11:52,"695 Lakeview St, New York City, NY 10001" +181151,Bose SoundSport Headphones,1,99.99,03/18/19 08:46,"542 North St, New York City, NY 10001" +181152,USB-C Charging Cable,1,11.95,03/09/19 12:13,"926 8th St, Portland, OR 97035" +181153,27in 4K Gaming Monitor,1,389.99,03/20/19 22:29,"82 7th St, New York City, NY 10001" +181154,USB-C Charging Cable,1,11.95,03/21/19 10:49,"802 Walnut St, Seattle, WA 98101" +181155,Macbook Pro Laptop,1,1700,03/09/19 17:35,"101 Ridge St, Los Angeles, CA 90001" +181156,AA Batteries (4-pack),4,3.84,03/11/19 21:58,"564 Center St, San Francisco, CA 94016" +181157,Lightning Charging Cable,1,14.95,03/11/19 14:38,"320 Lakeview St, Seattle, WA 98101" +181158,34in Ultrawide Monitor,1,379.99,03/19/19 12:04,"928 9th St, Los Angeles, CA 90001" +181159,USB-C Charging Cable,1,11.95,03/09/19 04:44,"34 7th St, San Francisco, CA 94016" +181160,USB-C Charging Cable,1,11.95,03/06/19 14:55,"857 Jefferson St, Portland, OR 97035" +181161,USB-C Charging Cable,2,11.95,03/01/19 19:12,"144 6th St, Austin, TX 73301" +181162,27in 4K Gaming Monitor,1,389.99,03/24/19 03:07,"768 Willow St, San Francisco, CA 94016" +181163,Macbook Pro Laptop,1,1700,03/22/19 07:51,"72 7th St, Atlanta, GA 30301" +181164,AAA Batteries (4-pack),1,2.99,03/08/19 10:01,"169 Cherry St, Los Angeles, CA 90001" +181165,AA Batteries (4-pack),2,3.84,03/26/19 17:08,"881 10th St, Austin, TX 73301" +181166,27in 4K Gaming Monitor,1,389.99,03/06/19 18:28,"815 Maple St, Boston, MA 02215" +181167,Bose SoundSport Headphones,1,99.99,03/19/19 10:57,"884 7th St, Los Angeles, CA 90001" +181168,20in Monitor,1,109.99,03/26/19 14:33,"519 Cherry St, New York City, NY 10001" +181169,AAA Batteries (4-pack),1,2.99,03/12/19 12:07,"647 Hill St, San Francisco, CA 94016" +181170,Wired Headphones,1,11.99,03/08/19 21:07,"203 Hickory St, Austin, TX 73301" +181171,iPhone,1,700,03/23/19 20:33,"56 Highland St, New York City, NY 10001" +181172,ThinkPad Laptop,1,999.99,03/06/19 15:53,"851 Cedar St, Atlanta, GA 30301" +181173,iPhone,1,700,03/09/19 18:27,"207 Hickory St, New York City, NY 10001" +181174,Lightning Charging Cable,2,14.95,03/20/19 01:28,"692 11th St, Seattle, WA 98101" +181175,USB-C Charging Cable,1,11.95,03/24/19 13:14,"725 Maple St, San Francisco, CA 94016" +181176,Apple Airpods Headphones,1,150,03/25/19 11:23,"458 West St, Los Angeles, CA 90001" +181177,AAA Batteries (4-pack),1,2.99,03/16/19 13:28,"754 Wilson St, Los Angeles, CA 90001" +181178,USB-C Charging Cable,2,11.95,03/24/19 19:22,"124 Hickory St, San Francisco, CA 94016" +181179,Apple Airpods Headphones,1,150,03/04/19 01:14,"632 11th St, Los Angeles, CA 90001" +181180,Lightning Charging Cable,1,14.95,03/26/19 19:45,"427 Washington St, Boston, MA 02215" +181181,20in Monitor,1,109.99,03/15/19 11:57,"748 Wilson St, San Francisco, CA 94016" +181182,Apple Airpods Headphones,1,150,03/29/19 23:00,"857 Pine St, San Francisco, CA 94016" +181183,Bose SoundSport Headphones,1,99.99,03/07/19 18:54,"369 Main St, New York City, NY 10001" +181184,Macbook Pro Laptop,1,1700,03/10/19 04:55,"880 Lakeview St, Seattle, WA 98101" +181185,AAA Batteries (4-pack),1,2.99,03/15/19 07:29,"895 South St, Boston, MA 02215" +181186,Bose SoundSport Headphones,1,99.99,03/28/19 12:42,"231 Hill St, Seattle, WA 98101" +181187,AAA Batteries (4-pack),3,2.99,03/13/19 01:48,"470 Wilson St, Atlanta, GA 30301" +181188,AA Batteries (4-pack),2,3.84,03/24/19 16:50,"740 Church St, San Francisco, CA 94016" +181189,AAA Batteries (4-pack),4,2.99,03/27/19 20:24,"392 Sunset St, New York City, NY 10001" +181190,Wired Headphones,1,11.99,03/28/19 19:38,"470 Washington St, San Francisco, CA 94016" +181191,Lightning Charging Cable,1,14.95,03/11/19 19:31,"605 Adams St, San Francisco, CA 94016" +181192,USB-C Charging Cable,1,11.95,03/02/19 12:04,"317 Washington St, San Francisco, CA 94016" +,,,,, +181193,Lightning Charging Cable,1,14.95,03/25/19 13:56,"268 Willow St, Los Angeles, CA 90001" +181194,AAA Batteries (4-pack),2,2.99,03/28/19 11:32,"542 Adams St, New York City, NY 10001" +181195,AAA Batteries (4-pack),4,2.99,03/04/19 09:43,"790 Hill St, Atlanta, GA 30301" +181196,Wired Headphones,1,11.99,03/23/19 19:28,"233 1st St, New York City, NY 10001" +181197,AAA Batteries (4-pack),1,2.99,03/29/19 19:43,"152 Washington St, San Francisco, CA 94016" +181198,Lightning Charging Cable,1,14.95,03/20/19 00:28,"11 North St, San Francisco, CA 94016" +181199,Lightning Charging Cable,1,14.95,03/05/19 12:07,"164 10th St, Austin, TX 73301" +181200,Lightning Charging Cable,1,14.95,03/15/19 11:28,"976 Forest St, San Francisco, CA 94016" +181201,Lightning Charging Cable,1,14.95,03/20/19 14:33,"176 Madison St, New York City, NY 10001" +181202,USB-C Charging Cable,1,11.95,03/08/19 18:08,"430 Lakeview St, Austin, TX 73301" +181203,Macbook Pro Laptop,1,1700,03/11/19 19:43,"384 Dogwood St, Los Angeles, CA 90001" +181203,27in FHD Monitor,1,149.99,03/11/19 19:43,"384 Dogwood St, Los Angeles, CA 90001" +181204,Flatscreen TV,1,300,03/04/19 07:35,"751 Hickory St, San Francisco, CA 94016" +181205,LG Washing Machine,1,600.0,03/12/19 08:55,"533 Chestnut St, San Francisco, CA 94016" +181206,AA Batteries (4-pack),2,3.84,03/21/19 12:31,"677 Forest St, San Francisco, CA 94016" +181207,Vareebadd Phone,1,400,03/18/19 19:57,"518 Adams St, San Francisco, CA 94016" +181208,AA Batteries (4-pack),2,3.84,03/02/19 11:50,"55 Cherry St, Portland, OR 97035" +181209,Apple Airpods Headphones,1,150,03/10/19 15:51,"188 Chestnut St, Austin, TX 73301" +181210,Bose SoundSport Headphones,1,99.99,03/30/19 17:26,"355 Park St, New York City, NY 10001" +181211,AAA Batteries (4-pack),1,2.99,03/02/19 10:40,"165 Lake St, Portland, OR 97035" +181212,Bose SoundSport Headphones,1,99.99,03/22/19 11:24,"74 Main St, Boston, MA 02215" +181213,Bose SoundSport Headphones,1,99.99,03/22/19 20:50,"528 12th St, Dallas, TX 75001" +181214,Bose SoundSport Headphones,1,99.99,03/14/19 22:05,"907 9th St, New York City, NY 10001" +181215,20in Monitor,1,109.99,03/06/19 05:17,"279 Main St, San Francisco, CA 94016" +181216,Lightning Charging Cable,1,14.95,03/15/19 18:08,"119 Spruce St, Atlanta, GA 30301" +181217,iPhone,1,700,03/31/19 12:38,"214 Madison St, San Francisco, CA 94016" +181218,USB-C Charging Cable,1,11.95,03/26/19 21:01,"200 1st St, Portland, ME 04101" +181219,iPhone,1,700,03/08/19 22:08,"564 Hickory St, New York City, NY 10001" +181219,Lightning Charging Cable,1,14.95,03/08/19 22:08,"564 Hickory St, New York City, NY 10001" +181220,AAA Batteries (4-pack),3,2.99,03/03/19 19:17,"875 Forest St, Los Angeles, CA 90001" +181221,27in FHD Monitor,1,149.99,03/14/19 15:38,"467 Wilson St, Los Angeles, CA 90001" +181222,AAA Batteries (4-pack),1,2.99,03/09/19 23:10,"383 Jefferson St, Austin, TX 73301" +181223,AAA Batteries (4-pack),1,2.99,03/02/19 15:23,"725 Lincoln St, San Francisco, CA 94016" +181224,AA Batteries (4-pack),2,3.84,03/01/19 19:46,"183 Church St, Portland, OR 97035" +181225,AAA Batteries (4-pack),3,2.99,03/12/19 14:10,"200 Cedar St, Boston, MA 02215" +181226,Apple Airpods Headphones,1,150,03/24/19 06:56,"942 South St, Boston, MA 02215" +181227,Lightning Charging Cable,1,14.95,03/28/19 08:26,"441 Dogwood St, San Francisco, CA 94016" +181228,AA Batteries (4-pack),1,3.84,03/25/19 18:07,"351 Maple St, New York City, NY 10001" +181229,20in Monitor,1,109.99,03/21/19 19:35,"192 4th St, Portland, OR 97035" +181230,Wired Headphones,1,11.99,03/21/19 00:24,"617 1st St, Los Angeles, CA 90001" +181231,AAA Batteries (4-pack),1,2.99,03/16/19 14:14,"864 8th St, Portland, OR 97035" +181232,Vareebadd Phone,1,400,03/02/19 17:56,"570 13th St, Los Angeles, CA 90001" +181233,20in Monitor,1,109.99,03/20/19 05:47,"780 Meadow St, San Francisco, CA 94016" +181234,Apple Airpods Headphones,1,150,03/18/19 12:31,"469 Wilson St, Los Angeles, CA 90001" +181235,Apple Airpods Headphones,1,150,03/21/19 15:55,"684 Sunset St, San Francisco, CA 94016" +181236,Lightning Charging Cable,1,14.95,03/25/19 22:40,"871 Walnut St, New York City, NY 10001" +181237,34in Ultrawide Monitor,1,379.99,03/14/19 19:31,"785 Hill St, Atlanta, GA 30301" +181238,27in 4K Gaming Monitor,1,389.99,03/23/19 05:28,"260 Lake St, New York City, NY 10001" +181239,Bose SoundSport Headphones,1,99.99,03/27/19 10:18,"590 Johnson St, Boston, MA 02215" +181240,ThinkPad Laptop,1,999.99,03/25/19 20:48,"957 Madison St, Los Angeles, CA 90001" +181241,34in Ultrawide Monitor,1,379.99,03/12/19 22:44,"279 Center St, Atlanta, GA 30301" +181242,Lightning Charging Cable,1,14.95,03/28/19 15:15,"664 10th St, New York City, NY 10001" +181243,Wired Headphones,1,11.99,03/18/19 23:41,"710 Elm St, Los Angeles, CA 90001" +181244,Wired Headphones,1,11.99,03/27/19 14:47,"716 6th St, Atlanta, GA 30301" +181245,Bose SoundSport Headphones,1,99.99,03/01/19 22:40,"254 8th St, Portland, OR 97035" +181246,27in FHD Monitor,1,149.99,03/17/19 13:14,"844 Main St, San Francisco, CA 94016" +181247,ThinkPad Laptop,1,999.99,03/04/19 12:42,"652 Jackson St, Austin, TX 73301" +181248,AAA Batteries (4-pack),2,2.99,03/01/19 21:40,"777 Madison St, New York City, NY 10001" +181249,Bose SoundSport Headphones,1,99.99,03/31/19 19:20,"136 Main St, San Francisco, CA 94016" +181249,AAA Batteries (4-pack),1,2.99,03/31/19 19:20,"136 Main St, San Francisco, CA 94016" +181250,20in Monitor,1,109.99,03/26/19 22:26,"629 Lake St, Seattle, WA 98101" +181251,20in Monitor,1,109.99,03/20/19 00:42,"304 Cedar St, San Francisco, CA 94016" +181252,Wired Headphones,1,11.99,03/15/19 20:07,"911 West St, Dallas, TX 75001" +181253,AAA Batteries (4-pack),2,2.99,03/12/19 13:18,"937 1st St, Atlanta, GA 30301" +181254,Lightning Charging Cable,1,14.95,03/10/19 12:50,"260 Church St, San Francisco, CA 94016" +181255,Macbook Pro Laptop,1,1700,03/15/19 23:10,"791 Lincoln St, San Francisco, CA 94016" +181256,Bose SoundSport Headphones,1,99.99,03/02/19 20:06,"514 4th St, Dallas, TX 75001" +181257,27in 4K Gaming Monitor,1,389.99,03/01/19 22:04,"397 Hill St, San Francisco, CA 94016" +181258,iPhone,1,700,03/22/19 05:51,"351 Johnson St, San Francisco, CA 94016" +181259,Wired Headphones,1,11.99,03/18/19 05:03,"457 Cherry St, Portland, OR 97035" +181260,USB-C Charging Cable,1,11.95,03/09/19 15:45,"39 Forest St, New York City, NY 10001" +181261,Google Phone,1,600,03/28/19 08:07,"481 Highland St, Dallas, TX 75001" +181261,Bose SoundSport Headphones,1,99.99,03/28/19 08:07,"481 Highland St, Dallas, TX 75001" +181262,Lightning Charging Cable,1,14.95,03/06/19 12:03,"924 13th St, Seattle, WA 98101" +181263,iPhone,1,700,03/22/19 10:39,"307 Lakeview St, Austin, TX 73301" +181264,Wired Headphones,1,11.99,03/29/19 10:16,"112 River St, Dallas, TX 75001" +181265,USB-C Charging Cable,1,11.95,03/30/19 17:29,"838 Dogwood St, Los Angeles, CA 90001" +181266,Flatscreen TV,1,300,03/04/19 07:47,"365 Lincoln St, San Francisco, CA 94016" +181267,34in Ultrawide Monitor,1,379.99,03/19/19 15:35,"597 12th St, Austin, TX 73301" +181268,Lightning Charging Cable,1,14.95,03/02/19 18:20,"50 6th St, Boston, MA 02215" +181269,AA Batteries (4-pack),1,3.84,03/16/19 20:52,"283 Chestnut St, San Francisco, CA 94016" +181269,Bose SoundSport Headphones,1,99.99,03/16/19 20:52,"283 Chestnut St, San Francisco, CA 94016" +181270,ThinkPad Laptop,1,999.99,03/11/19 23:55,"418 Walnut St, Los Angeles, CA 90001" +181271,34in Ultrawide Monitor,1,379.99,03/22/19 13:38,"943 Hickory St, Atlanta, GA 30301" +181272,Apple Airpods Headphones,1,150,03/18/19 17:24,"789 Lincoln St, Seattle, WA 98101" +181273,Lightning Charging Cable,1,14.95,03/01/19 23:35,"682 Lincoln St, New York City, NY 10001" +181274,Macbook Pro Laptop,1,1700,03/12/19 18:39,"65 Madison St, Boston, MA 02215" +181275,34in Ultrawide Monitor,1,379.99,03/16/19 10:40,"49 Ridge St, Boston, MA 02215" +181276,AAA Batteries (4-pack),1,2.99,03/14/19 14:26,"844 Forest St, San Francisco, CA 94016" +181277,Bose SoundSport Headphones,1,99.99,04/01/19 00:27,"134 Park St, Seattle, WA 98101" +181278,Lightning Charging Cable,3,14.95,03/07/19 23:08,"609 8th St, Dallas, TX 75001" +181279,Wired Headphones,1,11.99,03/09/19 12:19,"380 Washington St, Portland, OR 97035" +181280,USB-C Charging Cable,1,11.95,03/11/19 10:51,"492 Meadow St, New York City, NY 10001" +181281,USB-C Charging Cable,1,11.95,03/04/19 16:53,"245 Lincoln St, Portland, OR 97035" +181282,Macbook Pro Laptop,1,1700,03/08/19 22:32,"383 Chestnut St, Dallas, TX 75001" +181283,USB-C Charging Cable,1,11.95,03/22/19 09:51,"837 Cedar St, Atlanta, GA 30301" +181284,Bose SoundSport Headphones,2,99.99,03/04/19 16:09,"79 Lincoln St, Portland, ME 04101" +181285,Macbook Pro Laptop,1,1700,03/20/19 18:50,"605 Chestnut St, San Francisco, CA 94016" +181286,Wired Headphones,1,11.99,03/18/19 11:03,"494 South St, Boston, MA 02215" +181287,Lightning Charging Cable,1,14.95,03/21/19 15:04,"518 Adams St, Los Angeles, CA 90001" +181288,USB-C Charging Cable,1,11.95,03/27/19 01:04,"477 Wilson St, Portland, ME 04101" +181289,AAA Batteries (4-pack),1,2.99,03/24/19 00:14,"943 Madison St, Los Angeles, CA 90001" +181290,27in 4K Gaming Monitor,1,389.99,03/15/19 17:56,"867 Spruce St, New York City, NY 10001" +181291,USB-C Charging Cable,1,11.95,03/10/19 19:21,"63 Pine St, Atlanta, GA 30301" +181292,20in Monitor,1,109.99,03/30/19 19:19,"580 Cherry St, Seattle, WA 98101" +181293,34in Ultrawide Monitor,1,379.99,03/13/19 11:30,"113 Hickory St, San Francisco, CA 94016" +181294,USB-C Charging Cable,1,11.95,03/16/19 13:21,"739 Spruce St, Los Angeles, CA 90001" +181295,AAA Batteries (4-pack),1,2.99,03/20/19 15:46,"403 12th St, Dallas, TX 75001" +181296,Bose SoundSport Headphones,1,99.99,03/01/19 08:51,"249 Cedar St, Los Angeles, CA 90001" +181297,Lightning Charging Cable,1,14.95,03/12/19 11:15,"960 Center St, Boston, MA 02215" +181298,Lightning Charging Cable,1,14.95,03/28/19 18:10,"156 Lakeview St, New York City, NY 10001" +181299,Apple Airpods Headphones,1,150,03/22/19 10:31,"417 Hickory St, New York City, NY 10001" +181300,AA Batteries (4-pack),2,3.84,03/04/19 15:08,"564 Church St, San Francisco, CA 94016" +181301,34in Ultrawide Monitor,1,379.99,03/02/19 20:28,"167 Lincoln St, Atlanta, GA 30301" +181301,AAA Batteries (4-pack),1,2.99,03/02/19 20:28,"167 Lincoln St, Atlanta, GA 30301" +181302,AAA Batteries (4-pack),1,2.99,04/01/19 00:42,"819 Park St, New York City, NY 10001" +181303,27in FHD Monitor,1,149.99,03/01/19 17:11,"625 Park St, Los Angeles, CA 90001" +181304,Lightning Charging Cable,1,14.95,03/02/19 21:11,"809 12th St, Portland, OR 97035" +181305,Lightning Charging Cable,1,14.95,03/14/19 14:19,"478 Cherry St, San Francisco, CA 94016" +181306,ThinkPad Laptop,1,999.99,03/02/19 12:05,"376 Willow St, New York City, NY 10001" +181307,AA Batteries (4-pack),1,3.84,03/06/19 09:39,"305 2nd St, Los Angeles, CA 90001" +181308,Wired Headphones,1,11.99,03/16/19 15:45,"510 Lakeview St, Los Angeles, CA 90001" +181309,Macbook Pro Laptop,1,1700,03/07/19 21:36,"891 Walnut St, Seattle, WA 98101" +181310,LG Dryer,1,600.0,03/28/19 18:55,"631 Pine St, Dallas, TX 75001" +181311,Macbook Pro Laptop,1,1700,03/09/19 00:46,"959 Cherry St, Austin, TX 73301" +181312,Macbook Pro Laptop,1,1700,03/03/19 16:07,"478 Park St, Boston, MA 02215" +181313,USB-C Charging Cable,1,11.95,03/25/19 07:42,"756 Meadow St, Boston, MA 02215" +181314,Apple Airpods Headphones,1,150,03/20/19 23:33,"346 Church St, Boston, MA 02215" +181315,LG Dryer,1,600.0,03/27/19 20:08,"733 Lakeview St, New York City, NY 10001" +181316,USB-C Charging Cable,1,11.95,03/11/19 14:08,"370 5th St, San Francisco, CA 94016" +181317,27in 4K Gaming Monitor,1,389.99,03/20/19 10:37,"980 Highland St, Atlanta, GA 30301" +181318,Lightning Charging Cable,1,14.95,03/06/19 16:37,"199 River St, Seattle, WA 98101" +181319,AA Batteries (4-pack),2,3.84,03/24/19 08:06,"542 9th St, Los Angeles, CA 90001" +181320,Wired Headphones,1,11.99,03/22/19 23:45,"994 13th St, Seattle, WA 98101" +181321,Wired Headphones,1,11.99,03/23/19 20:06,"272 Elm St, Atlanta, GA 30301" +181322,20in Monitor,1,109.99,03/12/19 14:55,"513 2nd St, Dallas, TX 75001" +181323,Lightning Charging Cable,1,14.95,03/11/19 13:18,"776 West St, Los Angeles, CA 90001" +181324,ThinkPad Laptop,1,999.99,03/02/19 10:22,"339 Meadow St, Seattle, WA 98101" +181325,Lightning Charging Cable,1,14.95,03/18/19 12:13,"961 Jackson St, Dallas, TX 75001" +181326,Bose SoundSport Headphones,1,99.99,03/06/19 14:33,"789 Main St, San Francisco, CA 94016" +181326,Bose SoundSport Headphones,1,99.99,03/06/19 14:33,"789 Main St, San Francisco, CA 94016" +181327,Lightning Charging Cable,1,14.95,03/18/19 12:42,"488 Sunset St, Seattle, WA 98101" +181328,27in FHD Monitor,1,149.99,03/11/19 18:13,"343 Main St, Boston, MA 02215" +181329,AA Batteries (4-pack),1,3.84,03/14/19 16:24,"913 Church St, Portland, OR 97035" +181330,AA Batteries (4-pack),2,3.84,03/02/19 12:33,"974 7th St, Seattle, WA 98101" +181331,Bose SoundSport Headphones,1,99.99,03/25/19 14:16,"199 Lake St, San Francisco, CA 94016" +181332,20in Monitor,1,109.99,03/09/19 21:55,"416 Center St, Boston, MA 02215" +181333,AA Batteries (4-pack),1,3.84,03/05/19 14:24,"373 Lakeview St, Austin, TX 73301" +181334,Google Phone,1,600,03/19/19 08:53,"87 Spruce St, Boston, MA 02215" +181335,Apple Airpods Headphones,1,150,03/04/19 13:00,"738 Spruce St, Los Angeles, CA 90001" +181336,Bose SoundSport Headphones,1,99.99,03/12/19 21:36,"71 North St, Atlanta, GA 30301" +181337,Wired Headphones,1,11.99,03/16/19 20:02,"728 Meadow St, New York City, NY 10001" +181338,Lightning Charging Cable,1,14.95,03/12/19 17:40,"127 4th St, Dallas, TX 75001" +181339,iPhone,1,700,03/05/19 18:04,"498 2nd St, San Francisco, CA 94016" +181339,Wired Headphones,1,11.99,03/05/19 18:04,"498 2nd St, San Francisco, CA 94016" +181340,Wired Headphones,1,11.99,03/27/19 00:52,"800 Park St, Seattle, WA 98101" +181341,Google Phone,1,600,03/15/19 18:13,"614 Center St, Atlanta, GA 30301" +181341,USB-C Charging Cable,1,11.95,03/15/19 18:13,"614 Center St, Atlanta, GA 30301" +181341,Wired Headphones,1,11.99,03/15/19 18:13,"614 Center St, Atlanta, GA 30301" +181342,AAA Batteries (4-pack),1,2.99,03/31/19 19:28,"4 Walnut St, Dallas, TX 75001" +181343,27in FHD Monitor,1,149.99,03/14/19 12:33,"524 Chestnut St, Atlanta, GA 30301" +181344,AAA Batteries (4-pack),2,2.99,03/09/19 10:17,"324 Hill St, Austin, TX 73301" +181345,Apple Airpods Headphones,1,150,03/22/19 06:24,"193 Park St, Austin, TX 73301" +181346,AAA Batteries (4-pack),1,2.99,03/03/19 11:24,"522 South St, Los Angeles, CA 90001" +181346,Apple Airpods Headphones,1,150,03/03/19 11:24,"522 South St, Los Angeles, CA 90001" +181347,AA Batteries (4-pack),2,3.84,03/17/19 03:24,"371 Madison St, San Francisco, CA 94016" +181347,Wired Headphones,1,11.99,03/17/19 03:24,"371 Madison St, San Francisco, CA 94016" +181348,USB-C Charging Cable,1,11.95,03/02/19 00:40,"199 13th St, Atlanta, GA 30301" +181349,AA Batteries (4-pack),1,3.84,03/06/19 23:55,"923 1st St, Portland, OR 97035" +181350,Apple Airpods Headphones,1,150,03/24/19 14:17,"201 Hickory St, Los Angeles, CA 90001" +181351,20in Monitor,1,109.99,03/09/19 14:24,"304 Sunset St, Los Angeles, CA 90001" +181352,Wired Headphones,1,11.99,03/28/19 15:32,"660 Cherry St, Boston, MA 02215" +181353,AA Batteries (4-pack),1,3.84,03/10/19 13:29,"156 Church St, Dallas, TX 75001" +181354,AAA Batteries (4-pack),2,2.99,03/19/19 22:55,"660 9th St, New York City, NY 10001" +181355,AAA Batteries (4-pack),2,2.99,03/09/19 11:59,"296 12th St, New York City, NY 10001" +181356,27in FHD Monitor,1,149.99,03/03/19 01:40,"443 11th St, New York City, NY 10001" +181357,Macbook Pro Laptop,1,1700,03/29/19 16:40,"899 13th St, New York City, NY 10001" +181358,ThinkPad Laptop,1,999.99,03/05/19 22:56,"947 Meadow St, San Francisco, CA 94016" +181359,Wired Headphones,1,11.99,03/25/19 23:36,"655 7th St, San Francisco, CA 94016" +181359,Apple Airpods Headphones,1,150,03/25/19 23:36,"655 7th St, San Francisco, CA 94016" +181360,Flatscreen TV,1,300,03/09/19 21:28,"448 Dogwood St, Seattle, WA 98101" +181361,AA Batteries (4-pack),2,3.84,03/13/19 18:58,"545 Sunset St, Los Angeles, CA 90001" +181362,27in 4K Gaming Monitor,1,389.99,03/08/19 14:09,"204 Pine St, Los Angeles, CA 90001" +181363,USB-C Charging Cable,1,11.95,03/26/19 19:29,"490 Lakeview St, New York City, NY 10001" +181364,Flatscreen TV,1,300,03/17/19 17:41,"291 Adams St, Los Angeles, CA 90001" +181365,AA Batteries (4-pack),1,3.84,03/12/19 20:59,"733 7th St, Atlanta, GA 30301" +181366,Apple Airpods Headphones,1,150,03/24/19 10:26,"340 Walnut St, Boston, MA 02215" +181367,AAA Batteries (4-pack),1,2.99,03/25/19 22:25,"428 Spruce St, San Francisco, CA 94016" +181368,Apple Airpods Headphones,1,150,03/20/19 14:10,"864 Jefferson St, San Francisco, CA 94016" +181369,27in FHD Monitor,1,149.99,03/12/19 08:30,"495 Washington St, New York City, NY 10001" +181370,USB-C Charging Cable,1,11.95,03/26/19 06:24,"33 8th St, Atlanta, GA 30301" +181371,Macbook Pro Laptop,1,1700,03/27/19 07:56,"559 12th St, Atlanta, GA 30301" +181372,AAA Batteries (4-pack),3,2.99,03/04/19 22:38,"24 Hickory St, San Francisco, CA 94016" +181373,Wired Headphones,2,11.99,03/05/19 17:22,"579 Maple St, Los Angeles, CA 90001" +181374,Bose SoundSport Headphones,1,99.99,03/07/19 14:13,"539 7th St, Los Angeles, CA 90001" +181375,Wired Headphones,1,11.99,03/20/19 06:46,"486 Jackson St, New York City, NY 10001" +181376,AAA Batteries (4-pack),1,2.99,03/20/19 18:59,"770 5th St, Austin, TX 73301" +181377,AA Batteries (4-pack),2,3.84,03/01/19 15:59,"955 Ridge St, Dallas, TX 75001" +181378,27in 4K Gaming Monitor,1,389.99,03/15/19 21:27,"401 8th St, Dallas, TX 75001" +181379,27in 4K Gaming Monitor,1,389.99,03/05/19 22:25,"393 Cedar St, San Francisco, CA 94016" +181380,Wired Headphones,1,11.99,03/10/19 22:13,"219 Hickory St, Dallas, TX 75001" +181381,Wired Headphones,1,11.99,03/20/19 14:13,"191 Elm St, San Francisco, CA 94016" +181382,AA Batteries (4-pack),1,3.84,03/16/19 17:49,"721 Lake St, Dallas, TX 75001" +181383,USB-C Charging Cable,1,11.95,03/26/19 13:32,"377 5th St, Los Angeles, CA 90001" +181384,AAA Batteries (4-pack),1,2.99,03/16/19 10:42,"534 Spruce St, Austin, TX 73301" +181385,AAA Batteries (4-pack),1,2.99,03/27/19 10:41,"671 Washington St, San Francisco, CA 94016" +181386,Apple Airpods Headphones,1,150,03/17/19 16:36,"418 Cherry St, Portland, OR 97035" +181387,AAA Batteries (4-pack),1,2.99,03/07/19 04:09,"91 5th St, Los Angeles, CA 90001" +181388,Apple Airpods Headphones,1,150,03/25/19 20:07,"657 11th St, Austin, TX 73301" +181389,iPhone,1,700,03/07/19 20:31,"86 South St, Los Angeles, CA 90001" +181390,Apple Airpods Headphones,1,150,03/08/19 12:27,"656 Maple St, Boston, MA 02215" +181391,USB-C Charging Cable,1,11.95,03/24/19 21:53,"924 Washington St, Austin, TX 73301" +181392,AA Batteries (4-pack),1,3.84,03/09/19 00:49,"610 14th St, Los Angeles, CA 90001" +181393,Wired Headphones,1,11.99,03/27/19 22:23,"23 Pine St, Boston, MA 02215" +181394,AA Batteries (4-pack),1,3.84,03/08/19 23:59,"705 9th St, San Francisco, CA 94016" +181395,iPhone,1,700,03/30/19 23:42,"251 7th St, New York City, NY 10001" +181396,Lightning Charging Cable,1,14.95,03/23/19 07:40,"202 Washington St, San Francisco, CA 94016" +181397,AAA Batteries (4-pack),1,2.99,03/11/19 21:07,"653 Hill St, Los Angeles, CA 90001" +181398,AAA Batteries (4-pack),1,2.99,03/31/19 13:08,"980 Jefferson St, New York City, NY 10001" +181399,Macbook Pro Laptop,1,1700,03/04/19 14:32,"376 Sunset St, Los Angeles, CA 90001" +181400,27in 4K Gaming Monitor,1,389.99,03/05/19 00:49,"176 Highland St, Seattle, WA 98101" +181401,USB-C Charging Cable,1,11.95,03/17/19 17:43,"752 9th St, Portland, OR 97035" +181402,AAA Batteries (4-pack),1,2.99,03/08/19 18:01,"292 Center St, Seattle, WA 98101" +181403,AA Batteries (4-pack),3,3.84,03/11/19 21:31,"510 River St, Los Angeles, CA 90001" +181404,AAA Batteries (4-pack),1,2.99,03/14/19 11:49,"868 Park St, Los Angeles, CA 90001" +181405,34in Ultrawide Monitor,1,379.99,03/19/19 20:15,"96 Willow St, Los Angeles, CA 90001" +181406,AA Batteries (4-pack),1,3.84,03/21/19 13:16,"264 10th St, San Francisco, CA 94016" +181407,USB-C Charging Cable,1,11.95,03/19/19 22:34,"131 North St, San Francisco, CA 94016" +181408,27in 4K Gaming Monitor,1,389.99,03/03/19 09:15,"657 Dogwood St, Atlanta, GA 30301" +181408,ThinkPad Laptop,1,999.99,03/03/19 09:15,"657 Dogwood St, Atlanta, GA 30301" +181409,AAA Batteries (4-pack),3,2.99,03/04/19 03:43,"130 14th St, Austin, TX 73301" +181410,ThinkPad Laptop,1,999.99,03/03/19 20:56,"741 South St, Seattle, WA 98101" +181411,Apple Airpods Headphones,1,150,03/29/19 13:25,"166 7th St, Los Angeles, CA 90001" +181412,27in 4K Gaming Monitor,1,389.99,03/17/19 16:56,"631 Park St, San Francisco, CA 94016" +181413,AAA Batteries (4-pack),1,2.99,03/05/19 17:51,"59 Johnson St, Portland, OR 97035" +181414,USB-C Charging Cable,1,11.95,03/22/19 14:28,"914 4th St, New York City, NY 10001" +181414,Lightning Charging Cable,1,14.95,03/22/19 14:28,"914 4th St, New York City, NY 10001" +181415,AAA Batteries (4-pack),1,2.99,03/26/19 09:52,"340 Main St, Los Angeles, CA 90001" +181416,Wired Headphones,2,11.99,03/13/19 05:49,"580 Walnut St, Dallas, TX 75001" +181417,Lightning Charging Cable,1,14.95,03/26/19 13:07,"970 Johnson St, San Francisco, CA 94016" +181418,iPhone,1,700,03/15/19 20:04,"986 Center St, Seattle, WA 98101" +181419,ThinkPad Laptop,1,999.99,03/10/19 11:26,"915 Walnut St, Los Angeles, CA 90001" +181420,Flatscreen TV,1,300,03/07/19 14:43,"688 Church St, Boston, MA 02215" +181421,27in 4K Gaming Monitor,1,389.99,03/27/19 13:09,"316 Lakeview St, Seattle, WA 98101" +181422,Lightning Charging Cable,1,14.95,03/07/19 21:02,"581 9th St, Boston, MA 02215" +181423,AAA Batteries (4-pack),1,2.99,03/15/19 15:33,"802 Cherry St, New York City, NY 10001" +181424,Macbook Pro Laptop,1,1700,03/06/19 21:10,"727 Jackson St, Los Angeles, CA 90001" +181425,Lightning Charging Cable,2,14.95,03/01/19 19:27,"398 8th St, New York City, NY 10001" +181426,USB-C Charging Cable,1,11.95,03/26/19 13:42,"233 5th St, Dallas, TX 75001" +181427,USB-C Charging Cable,1,11.95,03/28/19 15:07,"710 11th St, Portland, OR 97035" +181428,34in Ultrawide Monitor,1,379.99,03/03/19 05:02,"205 West St, San Francisco, CA 94016" +181429,27in FHD Monitor,1,149.99,03/24/19 10:21,"484 West St, New York City, NY 10001" +181430,Vareebadd Phone,1,400,03/26/19 15:37,"346 13th St, San Francisco, CA 94016" +181431,27in 4K Gaming Monitor,1,389.99,03/25/19 20:37,"707 Pine St, Seattle, WA 98101" +181432,USB-C Charging Cable,1,11.95,03/11/19 22:30,"264 Washington St, New York City, NY 10001" +181433,Flatscreen TV,1,300,03/22/19 21:14,"874 Sunset St, Atlanta, GA 30301" +181434,Lightning Charging Cable,1,14.95,03/27/19 12:35,"14 River St, Los Angeles, CA 90001" +181435,Apple Airpods Headphones,1,150,03/25/19 06:25,"264 9th St, San Francisco, CA 94016" +181435,AA Batteries (4-pack),1,3.84,03/25/19 06:25,"264 9th St, San Francisco, CA 94016" +181436,Flatscreen TV,1,300,03/29/19 23:21,"313 6th St, Atlanta, GA 30301" +181437,iPhone,1,700,03/28/19 12:56,"348 Cedar St, Boston, MA 02215" +181438,USB-C Charging Cable,1,11.95,03/18/19 13:02,"812 Forest St, Atlanta, GA 30301" +181439,27in 4K Gaming Monitor,1,389.99,03/12/19 00:31,"116 Chestnut St, New York City, NY 10001" +181440,Lightning Charging Cable,1,14.95,03/15/19 12:44,"196 1st St, San Francisco, CA 94016" +181441,Flatscreen TV,1,300,03/03/19 21:23,"6 Chestnut St, San Francisco, CA 94016" +181442,USB-C Charging Cable,1,11.95,03/04/19 11:55,"80 Park St, San Francisco, CA 94016" +181443,Wired Headphones,1,11.99,03/06/19 23:13,"196 West St, Boston, MA 02215" +181444,Lightning Charging Cable,2,14.95,03/02/19 18:52,"382 Johnson St, Los Angeles, CA 90001" +181445,ThinkPad Laptop,1,999.99,03/30/19 13:34,"611 Cherry St, Boston, MA 02215" +181446,AAA Batteries (4-pack),1,2.99,03/28/19 12:35,"570 5th St, San Francisco, CA 94016" +181447,AA Batteries (4-pack),1,3.84,03/18/19 13:48,"349 13th St, Portland, ME 04101" +181448,Lightning Charging Cable,2,14.95,03/23/19 15:16,"230 Center St, San Francisco, CA 94016" +181449,Lightning Charging Cable,1,14.95,03/01/19 13:13,"720 Willow St, Boston, MA 02215" +181450,Lightning Charging Cable,1,14.95,03/09/19 00:25,"926 Center St, Los Angeles, CA 90001" +181451,27in FHD Monitor,1,149.99,03/14/19 00:22,"208 11th St, Atlanta, GA 30301" +181452,Lightning Charging Cable,1,14.95,03/23/19 01:57,"629 11th St, Los Angeles, CA 90001" +181453,AA Batteries (4-pack),5,3.84,03/20/19 17:08,"209 Elm St, Boston, MA 02215" +181454,AA Batteries (4-pack),1,3.84,03/11/19 12:31,"111 West St, New York City, NY 10001" +181455,AA Batteries (4-pack),1,3.84,03/18/19 14:01,"590 Maple St, Seattle, WA 98101" +181456,Lightning Charging Cable,1,14.95,03/20/19 12:08,"471 1st St, New York City, NY 10001" +181457,Apple Airpods Headphones,1,150,03/24/19 13:21,"15 Willow St, New York City, NY 10001" +181458,Bose SoundSport Headphones,1,99.99,03/13/19 13:03,"117 Wilson St, Boston, MA 02215" +181459,AAA Batteries (4-pack),1,2.99,03/27/19 14:59,"839 5th St, Los Angeles, CA 90001" +181460,AA Batteries (4-pack),1,3.84,03/08/19 21:29,"26 Lakeview St, Boston, MA 02215" +181461,AAA Batteries (4-pack),1,2.99,03/20/19 11:09,"436 Chestnut St, Los Angeles, CA 90001" +181462,LG Washing Machine,1,600.0,03/16/19 18:23,"902 Wilson St, San Francisco, CA 94016" +181463,USB-C Charging Cable,1,11.95,03/09/19 15:58,"494 Johnson St, Dallas, TX 75001" +181464,Flatscreen TV,1,300,03/31/19 17:01,"775 Wilson St, Austin, TX 73301" +181465,27in 4K Gaming Monitor,1,389.99,03/27/19 23:41,"629 11th St, Los Angeles, CA 90001" +181466,AAA Batteries (4-pack),1,2.99,03/16/19 12:54,"516 Adams St, Los Angeles, CA 90001" +181467,AAA Batteries (4-pack),2,2.99,03/10/19 14:24,"192 Forest St, New York City, NY 10001" +181468,AAA Batteries (4-pack),1,2.99,03/20/19 23:08,"644 Church St, Seattle, WA 98101" +181469,Google Phone,1,600,03/25/19 11:45,"932 Washington St, Boston, MA 02215" +181470,AA Batteries (4-pack),2,3.84,03/29/19 11:05,"384 Johnson St, Seattle, WA 98101" +181471,Apple Airpods Headphones,1,150,03/17/19 13:52,"317 Pine St, Dallas, TX 75001" +181472,Wired Headphones,1,11.99,03/30/19 12:19,"959 Willow St, San Francisco, CA 94016" +181473,iPhone,1,700,03/12/19 17:08,"382 Jefferson St, San Francisco, CA 94016" +181474,34in Ultrawide Monitor,1,379.99,03/03/19 14:52,"759 South St, Portland, OR 97035" +181475,Apple Airpods Headphones,1,150,03/14/19 10:32,"33 Wilson St, San Francisco, CA 94016" +181476,Apple Airpods Headphones,1,150,03/18/19 10:58,"101 Hill St, Dallas, TX 75001" +181477,iPhone,1,700,03/18/19 16:00,"366 Jefferson St, New York City, NY 10001" +181477,Lightning Charging Cable,1,14.95,03/18/19 16:00,"366 Jefferson St, New York City, NY 10001" +181478,Wired Headphones,1,11.99,03/05/19 20:14,"427 Hickory St, Los Angeles, CA 90001" +181479,Macbook Pro Laptop,1,1700,03/11/19 15:46,"837 Maple St, Boston, MA 02215" +181480,USB-C Charging Cable,1,11.95,03/27/19 14:23,"792 Hickory St, Los Angeles, CA 90001" +181481,AA Batteries (4-pack),2,3.84,03/06/19 23:34,"454 Lake St, Atlanta, GA 30301" +181482,Wired Headphones,1,11.99,03/30/19 20:59,"565 4th St, Dallas, TX 75001" +181483,Wired Headphones,1,11.99,03/08/19 21:21,"486 4th St, Seattle, WA 98101" +181484,Flatscreen TV,1,300,03/06/19 15:12,"237 Dogwood St, Boston, MA 02215" +181485,LG Washing Machine,1,600.0,03/19/19 17:20,"206 Main St, Los Angeles, CA 90001" +181486,Macbook Pro Laptop,1,1700,03/10/19 15:06,"325 Cedar St, Seattle, WA 98101" +181487,AA Batteries (4-pack),1,3.84,03/08/19 11:57,"732 4th St, Dallas, TX 75001" +181488,Wired Headphones,1,11.99,03/02/19 10:09,"45 Hill St, New York City, NY 10001" +181489,AAA Batteries (4-pack),1,2.99,03/10/19 21:14,"407 Jackson St, New York City, NY 10001" +181490,Google Phone,1,600,03/09/19 15:22,"825 Cedar St, San Francisco, CA 94016" +181491,AAA Batteries (4-pack),2,2.99,03/11/19 20:27,"136 Park St, San Francisco, CA 94016" +181492,Apple Airpods Headphones,1,150,03/04/19 16:20,"564 Hickory St, Los Angeles, CA 90001" +181493,Google Phone,1,600,03/19/19 11:04,"147 Spruce St, San Francisco, CA 94016" +181494,AA Batteries (4-pack),1,3.84,03/11/19 10:40,"323 8th St, Seattle, WA 98101" +181495,ThinkPad Laptop,1,999.99,03/22/19 22:41,"713 South St, Boston, MA 02215" +181496,Bose SoundSport Headphones,1,99.99,03/13/19 18:09,"829 2nd St, Portland, OR 97035" +181497,34in Ultrawide Monitor,1,379.99,03/24/19 15:18,"483 Jackson St, Seattle, WA 98101" +181498,iPhone,1,700,03/30/19 00:03,"859 Elm St, San Francisco, CA 94016" +181499,20in Monitor,1,109.99,03/29/19 13:21,"606 Madison St, San Francisco, CA 94016" +181500,27in 4K Gaming Monitor,1,389.99,03/20/19 15:20,"30 Main St, Austin, TX 73301" +181501,Bose SoundSport Headphones,1,99.99,03/02/19 20:30,"507 14th St, San Francisco, CA 94016" +181502,iPhone,1,700,03/06/19 17:33,"77 4th St, Dallas, TX 75001" +181503,ThinkPad Laptop,1,999.99,03/26/19 19:29,"428 Park St, Los Angeles, CA 90001" +181504,Apple Airpods Headphones,1,150,03/26/19 16:12,"262 Sunset St, Dallas, TX 75001" +181505,USB-C Charging Cable,1,11.95,03/02/19 19:39,"261 Cedar St, San Francisco, CA 94016" +181506,USB-C Charging Cable,1,11.95,03/11/19 20:04,"104 River St, San Francisco, CA 94016" +181507,AA Batteries (4-pack),3,3.84,03/09/19 10:14,"588 12th St, Los Angeles, CA 90001" +181508,Lightning Charging Cable,1,14.95,03/16/19 22:43,"778 8th St, Dallas, TX 75001" +181509,AA Batteries (4-pack),1,3.84,03/01/19 11:44,"63 Lake St, Portland, OR 97035" +181510,AA Batteries (4-pack),1,3.84,03/31/19 13:01,"542 Hickory St, Dallas, TX 75001" +181511,34in Ultrawide Monitor,1,379.99,03/08/19 15:09,"215 Chestnut St, Los Angeles, CA 90001" +181512,AAA Batteries (4-pack),3,2.99,03/22/19 03:00,"897 10th St, San Francisco, CA 94016" +181513,AAA Batteries (4-pack),1,2.99,03/30/19 10:53,"862 South St, San Francisco, CA 94016" +181514,Wired Headphones,1,11.99,03/17/19 12:14,"599 9th St, Dallas, TX 75001" +181515,27in FHD Monitor,1,149.99,03/26/19 12:23,"864 Jefferson St, Los Angeles, CA 90001" +181516,20in Monitor,1,109.99,03/07/19 19:40,"259 Elm St, New York City, NY 10001" +181516,Vareebadd Phone,1,400,03/07/19 19:40,"259 Elm St, New York City, NY 10001" +181517,Apple Airpods Headphones,1,150,03/04/19 13:09,"143 Lakeview St, Seattle, WA 98101" +181518,Flatscreen TV,1,300,03/05/19 11:26,"208 Jefferson St, Boston, MA 02215" +181519,Lightning Charging Cable,1,14.95,03/17/19 14:25,"131 8th St, San Francisco, CA 94016" +181519,Lightning Charging Cable,1,14.95,03/17/19 14:25,"131 8th St, San Francisco, CA 94016" +181520,AA Batteries (4-pack),1,3.84,03/10/19 11:01,"168 Jackson St, Austin, TX 73301" +181521,Vareebadd Phone,1,400,03/27/19 16:45,"596 Park St, Los Angeles, CA 90001" +181522,AA Batteries (4-pack),1,3.84,03/19/19 17:26,"677 Jackson St, Boston, MA 02215" +181523,AAA Batteries (4-pack),2,2.99,03/09/19 15:57,"646 Wilson St, Los Angeles, CA 90001" +181524,Lightning Charging Cable,1,14.95,03/14/19 16:32,"833 Jackson St, Boston, MA 02215" +181525,iPhone,1,700,03/23/19 13:02,"589 Cherry St, Los Angeles, CA 90001" +181526,LG Dryer,1,600.0,03/02/19 11:04,"837 Church St, New York City, NY 10001" +181527,Macbook Pro Laptop,1,1700,03/30/19 15:04,"377 Lake St, Seattle, WA 98101" +181528,USB-C Charging Cable,2,11.95,03/19/19 20:47,"816 West St, Austin, TX 73301" +181529,AA Batteries (4-pack),1,3.84,03/03/19 14:36,"241 Lake St, Los Angeles, CA 90001" +181530,Lightning Charging Cable,1,14.95,03/11/19 11:06,"125 Church St, Los Angeles, CA 90001" +181531,Lightning Charging Cable,1,14.95,03/20/19 10:50,"148 7th St, Atlanta, GA 30301" +181532,Apple Airpods Headphones,1,150,03/31/19 13:05,"598 Dogwood St, New York City, NY 10001" +181533,34in Ultrawide Monitor,1,379.99,03/03/19 11:30,"381 Jackson St, Los Angeles, CA 90001" +181534,Apple Airpods Headphones,1,150,03/28/19 21:31,"744 Jefferson St, San Francisco, CA 94016" +181535,AAA Batteries (4-pack),2,2.99,03/24/19 10:32,"928 Center St, San Francisco, CA 94016" +181536,USB-C Charging Cable,1,11.95,03/06/19 21:45,"774 Cedar St, Boston, MA 02215" +181537,27in 4K Gaming Monitor,1,389.99,03/03/19 20:45,"264 River St, San Francisco, CA 94016" +181538,AAA Batteries (4-pack),1,2.99,03/28/19 11:45,"70 Johnson St, Dallas, TX 75001" +181539,Lightning Charging Cable,1,14.95,03/29/19 09:10,"361 Cedar St, San Francisco, CA 94016" +181540,20in Monitor,1,109.99,03/18/19 20:47,"423 North St, San Francisco, CA 94016" +181541,AA Batteries (4-pack),1,3.84,03/06/19 12:25,"614 Hickory St, Los Angeles, CA 90001" +181542,Wired Headphones,1,11.99,03/20/19 20:44,"440 1st St, Dallas, TX 75001" +181543,Apple Airpods Headphones,1,150,03/07/19 15:07,"179 14th St, San Francisco, CA 94016" +181544,USB-C Charging Cable,1,11.95,03/17/19 20:49,"920 1st St, Portland, OR 97035" +181545,iPhone,1,700,03/04/19 16:15,"14 North St, Dallas, TX 75001" +181546,Wired Headphones,1,11.99,03/07/19 10:28,"712 6th St, San Francisco, CA 94016" +181547,Wired Headphones,1,11.99,03/13/19 13:25,"373 Wilson St, Los Angeles, CA 90001" +181548,Lightning Charging Cable,1,14.95,03/11/19 21:41,"421 Elm St, Atlanta, GA 30301" +181549,27in FHD Monitor,1,149.99,03/31/19 17:10,"695 North St, Dallas, TX 75001" +181550,USB-C Charging Cable,1,11.95,03/22/19 20:08,"815 Lake St, Seattle, WA 98101" +181551,34in Ultrawide Monitor,1,379.99,03/12/19 04:43,"528 Cherry St, Los Angeles, CA 90001" +181552,Macbook Pro Laptop,1,1700,03/03/19 18:54,"569 Madison St, Dallas, TX 75001" +181553,USB-C Charging Cable,1,11.95,03/17/19 09:32,"623 10th St, Los Angeles, CA 90001" +181554,Lightning Charging Cable,1,14.95,03/05/19 17:06,"179 Lincoln St, Atlanta, GA 30301" +181555,AA Batteries (4-pack),1,3.84,03/08/19 13:10,"345 7th St, Portland, OR 97035" +181556,Lightning Charging Cable,1,14.95,03/16/19 10:07,"340 Park St, San Francisco, CA 94016" +181556,AAA Batteries (4-pack),2,2.99,03/16/19 10:07,"340 Park St, San Francisco, CA 94016" +181557,Lightning Charging Cable,1,14.95,03/25/19 19:11,"742 Forest St, Seattle, WA 98101" +181558,27in 4K Gaming Monitor,1,389.99,03/26/19 18:07,"302 7th St, Los Angeles, CA 90001" +181559,Lightning Charging Cable,1,14.95,03/29/19 18:52,"340 Dogwood St, San Francisco, CA 94016" +181560,27in FHD Monitor,1,149.99,03/16/19 20:42,"391 Sunset St, New York City, NY 10001" +181561,Bose SoundSport Headphones,1,99.99,03/26/19 19:50,"281 Lake St, Seattle, WA 98101" +181562,AAA Batteries (4-pack),1,2.99,03/02/19 12:27,"772 6th St, San Francisco, CA 94016" +,,,,, +181563,AAA Batteries (4-pack),4,2.99,03/30/19 13:13,"383 Dogwood St, Boston, MA 02215" +181564,AAA Batteries (4-pack),2,2.99,03/30/19 19:07,"688 Forest St, Portland, OR 97035" +181565,Bose SoundSport Headphones,1,99.99,03/18/19 14:20,"936 West St, Atlanta, GA 30301" +181566,USB-C Charging Cable,1,11.95,03/20/19 12:22,"869 Center St, Dallas, TX 75001" +181567,27in 4K Gaming Monitor,1,389.99,03/05/19 19:57,"315 Adams St, Seattle, WA 98101" +181568,USB-C Charging Cable,1,11.95,03/07/19 18:11,"603 8th St, San Francisco, CA 94016" +181569,ThinkPad Laptop,1,999.99,03/28/19 16:17,"215 11th St, New York City, NY 10001" +181570,Wired Headphones,1,11.99,03/01/19 21:53,"114 Chestnut St, Portland, OR 97035" +181571,AA Batteries (4-pack),2,3.84,03/08/19 11:15,"570 Jackson St, New York City, NY 10001" +181572,AAA Batteries (4-pack),1,2.99,03/21/19 14:30,"435 South St, San Francisco, CA 94016" +181573,iPhone,1,700,03/02/19 11:52,"10 14th St, Los Angeles, CA 90001" +181574,27in 4K Gaming Monitor,1,389.99,03/04/19 22:56,"843 Cedar St, Los Angeles, CA 90001" +181575,Apple Airpods Headphones,1,150,03/09/19 09:05,"274 Cherry St, Los Angeles, CA 90001" +181576,USB-C Charging Cable,1,11.95,03/14/19 14:04,"105 Washington St, Dallas, TX 75001" +181577,Bose SoundSport Headphones,1,99.99,03/03/19 17:57,"29 Park St, Los Angeles, CA 90001" +181578,Lightning Charging Cable,1,14.95,03/17/19 18:49,"850 Meadow St, Boston, MA 02215" +181579,ThinkPad Laptop,1,999.99,03/16/19 11:53,"493 Adams St, San Francisco, CA 94016" +181580,USB-C Charging Cable,1,11.95,03/29/19 08:52,"314 Lake St, Los Angeles, CA 90001" +181581,Lightning Charging Cable,1,14.95,03/29/19 22:41,"140 9th St, Seattle, WA 98101" +181582,Macbook Pro Laptop,1,1700,03/14/19 18:58,"49 South St, Seattle, WA 98101" +181583,Bose SoundSport Headphones,1,99.99,03/20/19 13:51,"591 Meadow St, New York City, NY 10001" +181584,Lightning Charging Cable,1,14.95,03/08/19 21:19,"69 Sunset St, Austin, TX 73301" +181585,Vareebadd Phone,1,400,03/18/19 14:07,"253 1st St, San Francisco, CA 94016" +181586,USB-C Charging Cable,1,11.95,03/20/19 17:30,"897 Forest St, Atlanta, GA 30301" +181587,AA Batteries (4-pack),1,3.84,03/12/19 21:03,"238 Jefferson St, Atlanta, GA 30301" +181588,AA Batteries (4-pack),1,3.84,03/03/19 16:01,"435 1st St, Los Angeles, CA 90001" +181589,Google Phone,1,600,03/29/19 02:07,"32 Lake St, New York City, NY 10001" +181590,AA Batteries (4-pack),1,3.84,03/17/19 10:45,"806 4th St, Los Angeles, CA 90001" +181591,AAA Batteries (4-pack),1,2.99,03/20/19 08:37,"745 Center St, Los Angeles, CA 90001" +181592,Lightning Charging Cable,1,14.95,03/06/19 11:12,"409 North St, New York City, NY 10001" +181593,USB-C Charging Cable,1,11.95,03/31/19 06:47,"652 Madison St, New York City, NY 10001" +181594,Apple Airpods Headphones,1,150,03/01/19 08:21,"320 South St, Portland, OR 97035" +181595,USB-C Charging Cable,1,11.95,03/13/19 01:05,"142 Cedar St, San Francisco, CA 94016" +181596,34in Ultrawide Monitor,1,379.99,03/01/19 21:28,"613 Cedar St, San Francisco, CA 94016" +181597,Bose SoundSport Headphones,1,99.99,03/26/19 10:45,"522 Sunset St, Boston, MA 02215" +181598,Apple Airpods Headphones,1,150,03/14/19 11:52,"462 Adams St, Dallas, TX 75001" +181599,Wired Headphones,1,11.99,03/20/19 13:17,"437 14th St, New York City, NY 10001" +181600,Apple Airpods Headphones,1,150,03/08/19 22:09,"644 Adams St, Dallas, TX 75001" +181601,AAA Batteries (4-pack),2,2.99,03/07/19 23:35,"659 13th St, Los Angeles, CA 90001" +181602,20in Monitor,1,109.99,03/24/19 21:17,"237 5th St, Los Angeles, CA 90001" +181603,Apple Airpods Headphones,1,150,03/11/19 18:41,"99 Cedar St, Austin, TX 73301" +181604,iPhone,1,700,03/11/19 21:27,"951 12th St, Dallas, TX 75001" +181605,AA Batteries (4-pack),1,3.84,03/22/19 11:58,"440 Hickory St, Portland, ME 04101" +181606,Wired Headphones,1,11.99,03/01/19 10:32,"729 Pine St, Boston, MA 02215" +181607,USB-C Charging Cable,1,11.95,03/14/19 07:54,"295 Sunset St, New York City, NY 10001" +181608,Flatscreen TV,1,300,03/30/19 20:28,"483 Sunset St, New York City, NY 10001" +181609,34in Ultrawide Monitor,1,379.99,03/05/19 15:59,"762 Park St, Atlanta, GA 30301" +181610,Wired Headphones,1,11.99,03/13/19 20:17,"689 Maple St, New York City, NY 10001" +181611,USB-C Charging Cable,1,11.95,03/29/19 10:04,"240 8th St, Los Angeles, CA 90001" +181612,AA Batteries (4-pack),1,3.84,03/13/19 06:49,"256 Lake St, Los Angeles, CA 90001" +181613,AAA Batteries (4-pack),1,2.99,03/14/19 15:24,"115 Maple St, San Francisco, CA 94016" +181614,Lightning Charging Cable,3,14.95,03/21/19 12:25,"308 Chestnut St, Portland, OR 97035" +181615,ThinkPad Laptop,1,999.99,03/30/19 13:02,"8 Hill St, San Francisco, CA 94016" +181616,ThinkPad Laptop,1,999.99,03/13/19 12:02,"372 Hill St, San Francisco, CA 94016" +181617,USB-C Charging Cable,1,11.95,03/02/19 13:31,"806 Sunset St, Portland, ME 04101" +181618,Lightning Charging Cable,2,14.95,03/19/19 22:16,"974 5th St, San Francisco, CA 94016" +181619,Macbook Pro Laptop,1,1700,03/17/19 05:45,"754 Dogwood St, Boston, MA 02215" +181620,Lightning Charging Cable,1,14.95,03/19/19 11:00,"24 Maple St, San Francisco, CA 94016" +181621,iPhone,1,700,03/10/19 14:28,"670 7th St, San Francisco, CA 94016" +181622,Google Phone,1,600,03/07/19 10:25,"986 Maple St, Boston, MA 02215" +181623,Lightning Charging Cable,1,14.95,03/07/19 02:58,"645 Center St, New York City, NY 10001" +181624,Flatscreen TV,1,300,03/08/19 21:58,"174 14th St, Portland, OR 97035" +181625,AAA Batteries (4-pack),2,2.99,03/04/19 10:00,"480 Willow St, Seattle, WA 98101" +181626,AA Batteries (4-pack),1,3.84,03/23/19 12:27,"522 Maple St, Boston, MA 02215" +181627,Macbook Pro Laptop,1,1700,03/06/19 17:32,"142 Ridge St, Seattle, WA 98101" +181628,USB-C Charging Cable,1,11.95,03/23/19 13:43,"832 Main St, San Francisco, CA 94016" +,,,,, +181629,Apple Airpods Headphones,1,150,03/14/19 17:18,"814 Jackson St, Boston, MA 02215" +181630,Wired Headphones,1,11.99,03/07/19 14:29,"832 Church St, Los Angeles, CA 90001" +181631,27in 4K Gaming Monitor,1,389.99,03/14/19 18:04,"596 Meadow St, Dallas, TX 75001" +181632,USB-C Charging Cable,1,11.95,03/23/19 23:23,"84 South St, Dallas, TX 75001" +181633,27in FHD Monitor,1,149.99,03/14/19 14:06,"487 Johnson St, Seattle, WA 98101" +181634,Lightning Charging Cable,1,14.95,03/18/19 19:27,"815 River St, Atlanta, GA 30301" +181635,AAA Batteries (4-pack),1,2.99,03/05/19 19:16,"752 2nd St, Atlanta, GA 30301" +181636,Wired Headphones,2,11.99,03/25/19 10:39,"60 13th St, Los Angeles, CA 90001" +181637,Lightning Charging Cable,1,14.95,03/25/19 17:22,"36 Johnson St, Boston, MA 02215" +181638,Lightning Charging Cable,1,14.95,03/02/19 22:18,"261 Elm St, Boston, MA 02215" +181639,27in FHD Monitor,1,149.99,03/28/19 05:27,"157 1st St, Boston, MA 02215" +181640,AA Batteries (4-pack),1,3.84,03/08/19 12:25,"209 Main St, New York City, NY 10001" +181641,Apple Airpods Headphones,1,150,03/24/19 18:25,"155 11th St, San Francisco, CA 94016" +181642,Wired Headphones,1,11.99,03/29/19 05:33,"396 Wilson St, Seattle, WA 98101" +181643,iPhone,1,700,03/24/19 20:47,"954 Main St, Atlanta, GA 30301" +181643,Lightning Charging Cable,1,14.95,03/24/19 20:47,"954 Main St, Atlanta, GA 30301" +181643,Wired Headphones,1,11.99,03/24/19 20:47,"954 Main St, Atlanta, GA 30301" +181644,27in FHD Monitor,1,149.99,03/18/19 21:54,"833 Hickory St, San Francisco, CA 94016" +181645,AA Batteries (4-pack),2,3.84,03/29/19 20:39,"934 1st St, San Francisco, CA 94016" +181646,Bose SoundSport Headphones,1,99.99,03/25/19 02:30,"64 1st St, Portland, OR 97035" +181647,Bose SoundSport Headphones,1,99.99,03/30/19 07:55,"437 Dogwood St, New York City, NY 10001" +181648,Bose SoundSport Headphones,1,99.99,03/08/19 11:18,"634 Maple St, Boston, MA 02215" +181649,Wired Headphones,1,11.99,03/03/19 18:30,"917 Dogwood St, Dallas, TX 75001" +181650,iPhone,1,700,03/13/19 01:50,"19 4th St, San Francisco, CA 94016" +181651,iPhone,1,700,03/21/19 12:23,"254 West St, Los Angeles, CA 90001" +181652,Apple Airpods Headphones,1,150,03/16/19 13:19,"172 Washington St, San Francisco, CA 94016" +181653,Bose SoundSport Headphones,1,99.99,03/23/19 08:38,"8 4th St, Seattle, WA 98101" +181654,AA Batteries (4-pack),1,3.84,03/14/19 21:59,"811 Pine St, San Francisco, CA 94016" +181655,27in 4K Gaming Monitor,1,389.99,03/30/19 14:43,"257 7th St, San Francisco, CA 94016" +181656,Wired Headphones,1,11.99,03/07/19 09:28,"575 Lake St, San Francisco, CA 94016" +181657,AA Batteries (4-pack),1,3.84,03/31/19 10:07,"627 12th St, New York City, NY 10001" +181658,AAA Batteries (4-pack),2,2.99,04/01/19 00:05,"132 Washington St, Boston, MA 02215" +181659,Bose SoundSport Headphones,1,99.99,03/26/19 16:12,"781 Cherry St, New York City, NY 10001" +181660,ThinkPad Laptop,1,999.99,03/21/19 16:49,"837 2nd St, San Francisco, CA 94016" +181661,Lightning Charging Cable,1,14.95,03/14/19 17:26,"566 Highland St, Los Angeles, CA 90001" +181661,AAA Batteries (4-pack),1,2.99,03/14/19 17:26,"566 Highland St, Los Angeles, CA 90001" +181662,Wired Headphones,1,11.99,03/14/19 18:24,"562 14th St, San Francisco, CA 94016" +181663,AAA Batteries (4-pack),1,2.99,03/24/19 11:09,"723 Washington St, Los Angeles, CA 90001" +181664,Wired Headphones,1,11.99,03/13/19 13:17,"670 Pine St, San Francisco, CA 94016" +181665,USB-C Charging Cable,1,11.95,03/09/19 06:51,"33 Lake St, San Francisco, CA 94016" +181666,Wired Headphones,1,11.99,03/20/19 12:28,"13 Center St, San Francisco, CA 94016" +181667,AAA Batteries (4-pack),1,2.99,03/11/19 11:43,"340 7th St, Dallas, TX 75001" +181668,34in Ultrawide Monitor,1,379.99,03/02/19 23:00,"516 14th St, San Francisco, CA 94016" +181669,20in Monitor,1,109.99,03/11/19 11:05,"727 Maple St, San Francisco, CA 94016" +181670,Wired Headphones,1,11.99,03/03/19 12:12,"601 Pine St, New York City, NY 10001" +181671,AAA Batteries (4-pack),2,2.99,03/21/19 09:48,"539 Lake St, Los Angeles, CA 90001" +181672,AA Batteries (4-pack),1,3.84,03/21/19 21:49,"15 Highland St, New York City, NY 10001" +181673,Lightning Charging Cable,1,14.95,03/12/19 13:55,"179 South St, Los Angeles, CA 90001" +181674,Bose SoundSport Headphones,1,99.99,03/25/19 19:20,"758 5th St, San Francisco, CA 94016" +181675,Wired Headphones,1,11.99,03/03/19 01:14,"116 Lincoln St, Austin, TX 73301" +181676,Apple Airpods Headphones,1,150,03/25/19 09:11,"827 South St, New York City, NY 10001" +181677,AA Batteries (4-pack),2,3.84,03/25/19 06:46,"384 Chestnut St, New York City, NY 10001" +181678,Flatscreen TV,1,300,03/10/19 11:30,"673 Chestnut St, Atlanta, GA 30301" +181679,Wired Headphones,1,11.99,03/28/19 10:44,"270 Sunset St, San Francisco, CA 94016" +181680,USB-C Charging Cable,1,11.95,03/26/19 18:06,"544 2nd St, San Francisco, CA 94016" +181681,Apple Airpods Headphones,1,150,03/13/19 21:10,"799 Church St, New York City, NY 10001" +181682,Apple Airpods Headphones,1,150,03/08/19 17:19,"150 Lakeview St, New York City, NY 10001" +181683,AA Batteries (4-pack),1,3.84,03/10/19 11:28,"258 River St, San Francisco, CA 94016" +181684,Macbook Pro Laptop,1,1700,03/04/19 07:39,"255 Maple St, Seattle, WA 98101" +181685,USB-C Charging Cable,1,11.95,03/10/19 08:13,"329 Highland St, Portland, ME 04101" +181686,AAA Batteries (4-pack),1,2.99,03/11/19 21:59,"636 Johnson St, Atlanta, GA 30301" +181687,iPhone,1,700,03/11/19 22:21,"821 Dogwood St, San Francisco, CA 94016" +181688,Macbook Pro Laptop,1,1700,03/06/19 12:22,"101 Hickory St, Boston, MA 02215" +181689,27in FHD Monitor,1,149.99,03/24/19 15:00,"925 13th St, Portland, OR 97035" +181690,Lightning Charging Cable,1,14.95,03/28/19 11:28,"897 Main St, Los Angeles, CA 90001" +181691,Wired Headphones,1,11.99,03/15/19 17:29,"766 Lakeview St, Seattle, WA 98101" +181692,AA Batteries (4-pack),1,3.84,03/13/19 17:46,"709 10th St, New York City, NY 10001" +181693,AA Batteries (4-pack),1,3.84,03/27/19 21:35,"396 Jackson St, Seattle, WA 98101" +181694,Bose SoundSport Headphones,1,99.99,03/03/19 14:10,"888 Cherry St, New York City, NY 10001" +181695,USB-C Charging Cable,1,11.95,03/10/19 10:33,"294 5th St, Boston, MA 02215" +181696,ThinkPad Laptop,1,999.99,03/27/19 17:16,"230 Ridge St, San Francisco, CA 94016" +181697,Lightning Charging Cable,1,14.95,03/29/19 07:09,"143 Church St, Los Angeles, CA 90001" +181698,Flatscreen TV,1,300,03/30/19 17:04,"459 Walnut St, Austin, TX 73301" +181699,27in 4K Gaming Monitor,1,389.99,03/31/19 12:53,"151 7th St, San Francisco, CA 94016" +181700,Bose SoundSport Headphones,1,99.99,03/10/19 06:57,"584 6th St, Los Angeles, CA 90001" +181701,Macbook Pro Laptop,1,1700,03/21/19 09:22,"961 Hill St, San Francisco, CA 94016" +181702,Lightning Charging Cable,1,14.95,03/06/19 09:46,"854 Hickory St, New York City, NY 10001" +181703,AA Batteries (4-pack),1,3.84,03/27/19 01:40,"738 Willow St, Los Angeles, CA 90001" +181704,Google Phone,1,600,03/11/19 21:51,"773 Lake St, Boston, MA 02215" +181705,AAA Batteries (4-pack),3,2.99,03/31/19 16:38,"219 Lakeview St, Los Angeles, CA 90001" +181706,Lightning Charging Cable,1,14.95,03/07/19 17:42,"804 Jackson St, New York City, NY 10001" +181707,Macbook Pro Laptop,1,1700,03/02/19 15:57,"334 Church St, Austin, TX 73301" +181708,AA Batteries (4-pack),2,3.84,03/13/19 15:44,"617 Forest St, San Francisco, CA 94016" +181709,Lightning Charging Cable,1,14.95,03/10/19 12:35,"293 Church St, San Francisco, CA 94016" +181710,Lightning Charging Cable,1,14.95,03/03/19 17:02,"326 Jefferson St, Portland, OR 97035" +181711,Bose SoundSport Headphones,1,99.99,03/18/19 23:05,"647 Park St, Seattle, WA 98101" +181712,USB-C Charging Cable,1,11.95,03/01/19 12:12,"819 10th St, Los Angeles, CA 90001" +181713,Bose SoundSport Headphones,1,99.99,03/05/19 23:56,"800 12th St, Atlanta, GA 30301" +181714,AA Batteries (4-pack),1,3.84,03/02/19 16:18,"356 14th St, Portland, OR 97035" +181715,27in FHD Monitor,1,149.99,03/17/19 16:35,"795 Washington St, New York City, NY 10001" +181716,27in FHD Monitor,1,149.99,03/22/19 22:16,"244 Adams St, Austin, TX 73301" +181717,Lightning Charging Cable,1,14.95,03/08/19 21:25,"392 Cherry St, San Francisco, CA 94016" +181718,Apple Airpods Headphones,1,150,03/31/19 13:10,"382 11th St, San Francisco, CA 94016" +181719,34in Ultrawide Monitor,1,379.99,03/29/19 22:05,"244 Lakeview St, Dallas, TX 75001" +181720,Apple Airpods Headphones,1,150,03/28/19 20:18,"396 11th St, Boston, MA 02215" +181721,USB-C Charging Cable,1,11.95,03/09/19 08:39,"565 Forest St, San Francisco, CA 94016" +181722,Lightning Charging Cable,1,14.95,03/14/19 21:57,"957 South St, San Francisco, CA 94016" +181723,USB-C Charging Cable,1,11.95,03/05/19 00:10,"895 Maple St, Los Angeles, CA 90001" +181724,27in FHD Monitor,1,149.99,03/07/19 19:55,"954 Pine St, San Francisco, CA 94016" +181725,34in Ultrawide Monitor,1,379.99,03/14/19 13:19,"376 8th St, Boston, MA 02215" +181726,34in Ultrawide Monitor,1,379.99,03/23/19 13:59,"917 Dogwood St, San Francisco, CA 94016" +181727,Macbook Pro Laptop,1,1700,03/10/19 11:12,"64 Adams St, San Francisco, CA 94016" +181728,Wired Headphones,1,11.99,03/27/19 11:13,"788 Jefferson St, San Francisco, CA 94016" +181729,USB-C Charging Cable,2,11.95,04/01/19 00:11,"460 Elm St, Seattle, WA 98101" +181730,Wired Headphones,1,11.99,03/25/19 09:32,"386 Chestnut St, New York City, NY 10001" +181731,Apple Airpods Headphones,1,150,03/03/19 22:58,"702 Willow St, Boston, MA 02215" +181732,34in Ultrawide Monitor,1,379.99,03/27/19 14:59,"929 Lincoln St, San Francisco, CA 94016" +181733,AA Batteries (4-pack),1,3.84,03/18/19 20:06,"129 Johnson St, Los Angeles, CA 90001" +181734,AA Batteries (4-pack),2,3.84,03/05/19 08:20,"994 Ridge St, Dallas, TX 75001" +181735,USB-C Charging Cable,1,11.95,03/21/19 14:17,"832 Highland St, Dallas, TX 75001" +181736,Apple Airpods Headphones,1,150,03/19/19 08:17,"652 Jefferson St, Los Angeles, CA 90001" +181736,Macbook Pro Laptop,1,1700,03/19/19 08:17,"652 Jefferson St, Los Angeles, CA 90001" +181737,USB-C Charging Cable,1,11.95,03/19/19 14:58,"416 7th St, Los Angeles, CA 90001" +181738,27in FHD Monitor,2,149.99,03/03/19 12:38,"226 Chestnut St, Austin, TX 73301" +181739,USB-C Charging Cable,2,11.95,03/25/19 16:43,"742 Hill St, San Francisco, CA 94016" +181740,Bose SoundSport Headphones,1,99.99,03/22/19 13:45,"715 Center St, Dallas, TX 75001" +181741,Wired Headphones,1,11.99,03/30/19 00:41,"360 Maple St, Dallas, TX 75001" +181742,Flatscreen TV,1,300,03/05/19 01:54,"999 Hill St, Seattle, WA 98101" +181743,27in FHD Monitor,1,149.99,03/31/19 07:37,"780 Ridge St, San Francisco, CA 94016" +181744,AAA Batteries (4-pack),1,2.99,03/29/19 07:06,"507 Main St, Dallas, TX 75001" +181745,Apple Airpods Headphones,1,150,03/17/19 10:56,"973 Park St, Atlanta, GA 30301" +181746,USB-C Charging Cable,1,11.95,03/27/19 18:54,"301 7th St, New York City, NY 10001" +181747,USB-C Charging Cable,1,11.95,03/22/19 19:35,"947 Hickory St, Los Angeles, CA 90001" +181748,20in Monitor,1,109.99,03/15/19 07:55,"328 Highland St, San Francisco, CA 94016" +181749,27in 4K Gaming Monitor,1,389.99,03/14/19 18:38,"914 13th St, Seattle, WA 98101" +181750,AAA Batteries (4-pack),1,2.99,03/09/19 19:40,"118 Church St, Boston, MA 02215" +181751,Bose SoundSport Headphones,1,99.99,03/25/19 23:22,"479 Cedar St, San Francisco, CA 94016" +181752,Bose SoundSport Headphones,1,99.99,03/21/19 10:11,"412 11th St, San Francisco, CA 94016" +181753,Google Phone,1,600,03/25/19 13:58,"437 Willow St, Los Angeles, CA 90001" +181754,AA Batteries (4-pack),1,3.84,03/28/19 19:53,"243 9th St, Austin, TX 73301" +,,,,, +181755,27in 4K Gaming Monitor,1,389.99,03/03/19 16:03,"478 Pine St, Atlanta, GA 30301" +181756,USB-C Charging Cable,1,11.95,03/11/19 14:42,"129 Sunset St, Dallas, TX 75001" +181757,Vareebadd Phone,1,400,03/26/19 18:40,"239 Chestnut St, Dallas, TX 75001" +181757,USB-C Charging Cable,1,11.95,03/26/19 18:40,"239 Chestnut St, Dallas, TX 75001" +181758,Google Phone,1,600,03/10/19 08:36,"324 Cedar St, Austin, TX 73301" +181759,AA Batteries (4-pack),1,3.84,03/03/19 20:22,"370 Pine St, Los Angeles, CA 90001" +181760,Apple Airpods Headphones,1,150,03/14/19 09:47,"642 Jackson St, Seattle, WA 98101" +181761,USB-C Charging Cable,1,11.95,03/08/19 01:15,"408 Washington St, San Francisco, CA 94016" +181762,27in 4K Gaming Monitor,1,389.99,03/24/19 23:21,"536 Elm St, New York City, NY 10001" +181763,20in Monitor,1,109.99,03/29/19 18:17,"38 Ridge St, Austin, TX 73301" +181764,Macbook Pro Laptop,1,1700,03/11/19 12:48,"334 Maple St, Los Angeles, CA 90001" +181765,AAA Batteries (4-pack),1,2.99,03/15/19 04:17,"771 Lake St, Los Angeles, CA 90001" +181766,Apple Airpods Headphones,1,150,03/10/19 11:21,"365 Dogwood St, Boston, MA 02215" +181767,Lightning Charging Cable,1,14.95,03/22/19 20:47,"395 Hickory St, Seattle, WA 98101" +181768,Lightning Charging Cable,1,14.95,03/18/19 15:14,"693 2nd St, San Francisco, CA 94016" +181769,AA Batteries (4-pack),3,3.84,03/08/19 16:53,"121 Cherry St, Los Angeles, CA 90001" +181770,iPhone,1,700,03/05/19 21:35,"291 Adams St, Dallas, TX 75001" +181771,Wired Headphones,1,11.99,03/21/19 08:12,"931 Pine St, Boston, MA 02215" +181772,Wired Headphones,1,11.99,03/14/19 19:22,"174 River St, Boston, MA 02215" +181773,USB-C Charging Cable,1,11.95,03/21/19 22:39,"564 Ridge St, New York City, NY 10001" +181774,USB-C Charging Cable,1,11.95,03/29/19 13:43,"543 Jackson St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +181775,Lightning Charging Cable,1,14.95,03/29/19 22:11,"981 Dogwood St, San Francisco, CA 94016" +181776,Lightning Charging Cable,1,14.95,03/21/19 18:44,"519 Ridge St, Seattle, WA 98101" +181777,Apple Airpods Headphones,1,150,03/25/19 08:13,"349 Chestnut St, New York City, NY 10001" +181778,Wired Headphones,1,11.99,03/01/19 20:33,"751 Meadow St, Los Angeles, CA 90001" +181779,20in Monitor,1,109.99,03/06/19 14:27,"289 Ridge St, Atlanta, GA 30301" +181780,ThinkPad Laptop,1,999.99,03/05/19 14:24,"492 Meadow St, Seattle, WA 98101" +181781,20in Monitor,1,109.99,03/18/19 07:47,"5 Hill St, Boston, MA 02215" +181782,27in FHD Monitor,1,149.99,03/09/19 14:16,"123 14th St, San Francisco, CA 94016" +181783,ThinkPad Laptop,1,999.99,03/09/19 17:01,"822 Meadow St, Dallas, TX 75001" +181784,iPhone,1,700,03/17/19 16:13,"136 8th St, Los Angeles, CA 90001" +181785,Apple Airpods Headphones,3,150,03/30/19 16:33,"833 Wilson St, Seattle, WA 98101" +181786,USB-C Charging Cable,1,11.95,03/27/19 20:02,"58 2nd St, Los Angeles, CA 90001" +181787,Wired Headphones,1,11.99,03/09/19 18:33,"550 North St, Seattle, WA 98101" +181788,Bose SoundSport Headphones,1,99.99,03/27/19 13:46,"910 Jefferson St, San Francisco, CA 94016" +181789,USB-C Charging Cable,1,11.95,03/09/19 13:51,"900 12th St, San Francisco, CA 94016" +181790,AAA Batteries (4-pack),1,2.99,03/08/19 08:15,"746 Highland St, New York City, NY 10001" +181791,Macbook Pro Laptop,1,1700,03/09/19 17:03,"207 Elm St, San Francisco, CA 94016" +181792,AA Batteries (4-pack),1,3.84,03/04/19 20:23,"444 Hickory St, Portland, OR 97035" +181793,AA Batteries (4-pack),2,3.84,03/19/19 22:39,"920 Sunset St, Dallas, TX 75001" +181794,AA Batteries (4-pack),1,3.84,03/20/19 17:15,"899 Meadow St, New York City, NY 10001" +181795,Lightning Charging Cable,1,14.95,03/30/19 10:30,"20 Dogwood St, San Francisco, CA 94016" +181796,iPhone,1,700,03/31/19 21:30,"457 Pine St, San Francisco, CA 94016" +181797,27in FHD Monitor,1,149.99,03/16/19 10:47,"827 Highland St, Atlanta, GA 30301" +181798,27in 4K Gaming Monitor,1,389.99,03/07/19 21:14,"61 8th St, San Francisco, CA 94016" +181799,AAA Batteries (4-pack),2,2.99,03/14/19 21:40,"749 Washington St, Los Angeles, CA 90001" +181800,Lightning Charging Cable,2,14.95,03/20/19 21:20,"659 Walnut St, Los Angeles, CA 90001" +181801,Flatscreen TV,1,300,03/02/19 11:02,"835 Jefferson St, Portland, OR 97035" +181802,Bose SoundSport Headphones,1,99.99,03/19/19 19:49,"675 Main St, Los Angeles, CA 90001" +181803,iPhone,1,700,03/10/19 20:52,"58 7th St, San Francisco, CA 94016" +181803,Lightning Charging Cable,1,14.95,03/10/19 20:52,"58 7th St, San Francisco, CA 94016" +181804,Wired Headphones,1,11.99,03/03/19 20:48,"458 River St, New York City, NY 10001" +181805,Lightning Charging Cable,1,14.95,03/29/19 01:58,"529 Adams St, Boston, MA 02215" +181806,AA Batteries (4-pack),1,3.84,03/20/19 16:04,"121 Adams St, Portland, ME 04101" +181807,iPhone,1,700,03/11/19 10:49,"237 Meadow St, Dallas, TX 75001" +181808,Macbook Pro Laptop,1,1700,03/15/19 17:47,"94 13th St, Seattle, WA 98101" +181809,27in FHD Monitor,1,149.99,03/11/19 05:58,"116 Walnut St, San Francisco, CA 94016" +181810,Google Phone,1,600,03/31/19 22:57,"876 Lakeview St, Portland, OR 97035" +181811,Bose SoundSport Headphones,1,99.99,03/30/19 16:14,"753 Jefferson St, Los Angeles, CA 90001" +181812,USB-C Charging Cable,1,11.95,03/29/19 19:51,"888 Park St, Los Angeles, CA 90001" +181813,Apple Airpods Headphones,1,150,03/31/19 16:28,"392 14th St, Atlanta, GA 30301" +181814,Lightning Charging Cable,1,14.95,03/21/19 15:04,"229 Sunset St, Los Angeles, CA 90001" +181815,Bose SoundSport Headphones,1,99.99,03/26/19 15:07,"539 Washington St, Boston, MA 02215" +181816,AA Batteries (4-pack),1,3.84,03/12/19 18:59,"588 Ridge St, New York City, NY 10001" +181816,Wired Headphones,1,11.99,03/12/19 18:59,"588 Ridge St, New York City, NY 10001" +181817,AA Batteries (4-pack),1,3.84,03/13/19 13:57,"282 Johnson St, San Francisco, CA 94016" +181818,Lightning Charging Cable,1,14.95,03/23/19 16:09,"135 Pine St, San Francisco, CA 94016" +181819,USB-C Charging Cable,1,11.95,03/23/19 21:36,"499 Forest St, Dallas, TX 75001" +181820,27in FHD Monitor,1,149.99,03/12/19 23:11,"254 Hill St, Portland, OR 97035" +181821,27in 4K Gaming Monitor,1,389.99,03/04/19 02:00,"795 Meadow St, San Francisco, CA 94016" +181822,27in FHD Monitor,1,149.99,03/21/19 11:13,"369 Willow St, San Francisco, CA 94016" +181823,Lightning Charging Cable,1,14.95,03/06/19 10:20,"827 North St, Boston, MA 02215" +181824,AAA Batteries (4-pack),1,2.99,03/16/19 11:54,"110 7th St, Dallas, TX 75001" +181825,Bose SoundSport Headphones,1,99.99,03/15/19 14:41,"560 River St, San Francisco, CA 94016" +181826,LG Dryer,1,600.0,03/21/19 16:51,"882 Lake St, San Francisco, CA 94016" +181827,Lightning Charging Cable,1,14.95,03/12/19 09:51,"433 Park St, Seattle, WA 98101" +181828,Macbook Pro Laptop,1,1700,03/14/19 12:05,"569 Main St, Los Angeles, CA 90001" +181829,Apple Airpods Headphones,1,150,03/19/19 23:35,"487 Elm St, Seattle, WA 98101" +181830,Google Phone,1,600,03/19/19 12:27,"610 10th St, Boston, MA 02215" +181831,USB-C Charging Cable,1,11.95,03/14/19 12:01,"317 9th St, New York City, NY 10001" +181832,Wired Headphones,1,11.99,03/30/19 13:42,"266 Spruce St, Portland, ME 04101" +181833,USB-C Charging Cable,1,11.95,03/31/19 01:43,"534 West St, New York City, NY 10001" +181834,AA Batteries (4-pack),3,3.84,03/07/19 16:17,"857 Dogwood St, San Francisco, CA 94016" +181835,AAA Batteries (4-pack),4,2.99,03/29/19 08:57,"278 Lake St, San Francisco, CA 94016" +181836,27in 4K Gaming Monitor,1,389.99,03/18/19 12:49,"545 Highland St, San Francisco, CA 94016" +181837,iPhone,1,700,03/21/19 23:45,"60 Forest St, Atlanta, GA 30301" +181838,AA Batteries (4-pack),1,3.84,03/27/19 13:05,"603 Jackson St, Los Angeles, CA 90001" +181839,AA Batteries (4-pack),1,3.84,03/25/19 09:44,"745 4th St, Dallas, TX 75001" +181840,Lightning Charging Cable,1,14.95,03/15/19 12:59,"379 2nd St, San Francisco, CA 94016" +181841,Apple Airpods Headphones,1,150,03/22/19 09:34,"678 Sunset St, New York City, NY 10001" +181842,Flatscreen TV,1,300,03/12/19 23:05,"429 River St, Boston, MA 02215" +181843,Apple Airpods Headphones,1,150,03/21/19 19:33,"209 Park St, San Francisco, CA 94016" +181844,27in 4K Gaming Monitor,1,389.99,03/16/19 00:05,"279 Pine St, Los Angeles, CA 90001" +181845,USB-C Charging Cable,1,11.95,03/13/19 20:47,"352 Center St, Boston, MA 02215" +181846,20in Monitor,1,109.99,03/10/19 10:31,"873 1st St, Austin, TX 73301" +181847,Bose SoundSport Headphones,1,99.99,03/17/19 18:15,"645 Johnson St, Austin, TX 73301" +181848,Lightning Charging Cable,1,14.95,03/31/19 22:25,"235 Park St, Dallas, TX 75001" +181849,Lightning Charging Cable,1,14.95,03/20/19 16:43,"328 Cherry St, Seattle, WA 98101" +181850,Wired Headphones,2,11.99,03/13/19 17:40,"633 6th St, Austin, TX 73301" +181851,Google Phone,1,600,03/15/19 12:12,"586 Hill St, Atlanta, GA 30301" +181852,Flatscreen TV,1,300,03/11/19 11:03,"204 10th St, San Francisco, CA 94016" +181853,Macbook Pro Laptop,1,1700,03/14/19 01:21,"634 6th St, New York City, NY 10001" +181854,34in Ultrawide Monitor,1,379.99,03/16/19 10:01,"929 Jackson St, Seattle, WA 98101" +181855,AA Batteries (4-pack),5,3.84,03/11/19 21:00,"958 Lincoln St, Atlanta, GA 30301" +181856,Bose SoundSport Headphones,1,99.99,03/04/19 16:41,"801 Church St, New York City, NY 10001" +181856,AA Batteries (4-pack),1,3.84,03/04/19 16:41,"801 Church St, New York City, NY 10001" +181857,Lightning Charging Cable,1,14.95,03/12/19 13:00,"878 Dogwood St, Portland, ME 04101" +181858,Macbook Pro Laptop,1,1700,03/15/19 10:55,"57 2nd St, Dallas, TX 75001" +181859,27in 4K Gaming Monitor,1,389.99,03/30/19 19:59,"282 Meadow St, San Francisco, CA 94016" +181860,Wired Headphones,1,11.99,03/31/19 13:27,"408 Cedar St, New York City, NY 10001" +181861,AAA Batteries (4-pack),1,2.99,03/02/19 15:48,"610 Willow St, Atlanta, GA 30301" +181862,AA Batteries (4-pack),1,3.84,03/29/19 21:29,"725 Jefferson St, Los Angeles, CA 90001" +181863,Bose SoundSport Headphones,1,99.99,03/09/19 17:14,"471 Adams St, Dallas, TX 75001" +181864,USB-C Charging Cable,1,11.95,03/22/19 15:36,"757 5th St, Seattle, WA 98101" +181865,Wired Headphones,1,11.99,03/31/19 15:03,"76 Spruce St, Portland, OR 97035" +181866,AA Batteries (4-pack),1,3.84,03/06/19 19:18,"253 West St, Dallas, TX 75001" +181867,AA Batteries (4-pack),1,3.84,03/27/19 16:32,"505 Spruce St, Dallas, TX 75001" +181868,USB-C Charging Cable,1,11.95,03/16/19 13:55,"352 5th St, Portland, OR 97035" +181869,Apple Airpods Headphones,1,150,03/20/19 23:53,"666 1st St, Los Angeles, CA 90001" +181870,USB-C Charging Cable,1,11.95,03/30/19 09:36,"778 Sunset St, New York City, NY 10001" +181871,Bose SoundSport Headphones,1,99.99,03/05/19 04:45,"922 6th St, New York City, NY 10001" +181872,Lightning Charging Cable,1,14.95,03/15/19 21:22,"963 Church St, Los Angeles, CA 90001" +181873,Wired Headphones,1,11.99,03/10/19 18:50,"548 2nd St, Los Angeles, CA 90001" +181874,Flatscreen TV,1,300,03/29/19 12:09,"314 Maple St, New York City, NY 10001" +181875,ThinkPad Laptop,1,999.99,03/22/19 21:05,"897 Lake St, Los Angeles, CA 90001" +181876,Wired Headphones,1,11.99,03/06/19 13:02,"178 Ridge St, Atlanta, GA 30301" +181877,Wired Headphones,1,11.99,03/06/19 17:59,"607 8th St, Los Angeles, CA 90001" +181878,34in Ultrawide Monitor,1,379.99,03/14/19 15:44,"196 Church St, New York City, NY 10001" +181879,Wired Headphones,1,11.99,03/02/19 18:28,"205 Walnut St, Los Angeles, CA 90001" +181880,AA Batteries (4-pack),4,3.84,03/15/19 15:41,"853 Cedar St, Los Angeles, CA 90001" +181881,iPhone,1,700,03/08/19 20:37,"164 Lincoln St, Atlanta, GA 30301" +181882,Lightning Charging Cable,1,14.95,03/16/19 09:03,"819 11th St, Boston, MA 02215" +181883,AAA Batteries (4-pack),1,2.99,03/22/19 11:01,"662 Maple St, Atlanta, GA 30301" +181884,27in 4K Gaming Monitor,1,389.99,03/15/19 22:38,"109 Cherry St, Boston, MA 02215" +181885,Flatscreen TV,1,300,03/10/19 12:31,"358 8th St, Austin, TX 73301" +181886,Apple Airpods Headphones,1,150,03/27/19 11:23,"923 Cherry St, San Francisco, CA 94016" +181887,AA Batteries (4-pack),1,3.84,03/05/19 18:59,"601 North St, San Francisco, CA 94016" +181888,USB-C Charging Cable,1,11.95,03/19/19 16:52,"157 Lincoln St, Seattle, WA 98101" +181889,Macbook Pro Laptop,1,1700,03/05/19 14:10,"147 Ridge St, New York City, NY 10001" +181890,Bose SoundSport Headphones,2,99.99,03/15/19 11:46,"433 South St, San Francisco, CA 94016" +181891,USB-C Charging Cable,2,11.95,03/28/19 08:05,"14 Sunset St, San Francisco, CA 94016" +181892,AA Batteries (4-pack),1,3.84,03/29/19 17:33,"78 8th St, Los Angeles, CA 90001" +181893,Bose SoundSport Headphones,1,99.99,03/08/19 14:32,"715 Highland St, San Francisco, CA 94016" +181894,AAA Batteries (4-pack),1,2.99,03/11/19 20:28,"663 Sunset St, Dallas, TX 75001" +181895,iPhone,1,700,03/12/19 20:18,"365 Dogwood St, Los Angeles, CA 90001" +181896,AAA Batteries (4-pack),2,2.99,03/02/19 06:56,"191 Dogwood St, Boston, MA 02215" +181897,LG Dryer,1,600.0,03/14/19 17:54,"577 Center St, Austin, TX 73301" +181898,34in Ultrawide Monitor,1,379.99,03/26/19 22:28,"153 2nd St, Seattle, WA 98101" +181899,Lightning Charging Cable,2,14.95,03/22/19 19:20,"648 6th St, San Francisco, CA 94016" +181900,iPhone,1,700,03/14/19 01:26,"691 Church St, Portland, ME 04101" +181901,Apple Airpods Headphones,1,150,03/07/19 19:31,"810 Adams St, San Francisco, CA 94016" +181902,Lightning Charging Cable,1,14.95,03/06/19 15:07,"510 Park St, New York City, NY 10001" +181903,Vareebadd Phone,1,400,03/25/19 21:01,"196 Sunset St, Boston, MA 02215" +181903,USB-C Charging Cable,1,11.95,03/25/19 21:01,"196 Sunset St, Boston, MA 02215" +181904,34in Ultrawide Monitor,1,379.99,03/08/19 21:27,"167 Johnson St, Portland, ME 04101" +181905,iPhone,1,700,03/11/19 02:29,"37 Jefferson St, Austin, TX 73301" +181906,Wired Headphones,1,11.99,03/14/19 08:19,"906 Wilson St, Portland, OR 97035" +181907,AA Batteries (4-pack),1,3.84,03/12/19 14:57,"195 Ridge St, Atlanta, GA 30301" +181908,Wired Headphones,1,11.99,03/15/19 19:43,"503 10th St, New York City, NY 10001" +181909,AAA Batteries (4-pack),1,2.99,03/29/19 17:44,"992 1st St, Portland, OR 97035" +181910,Apple Airpods Headphones,1,150,03/30/19 11:44,"425 1st St, Austin, TX 73301" +181911,AA Batteries (4-pack),1,3.84,03/31/19 22:26,"462 Walnut St, Dallas, TX 75001" +181912,27in FHD Monitor,1,149.99,03/22/19 15:01,"340 13th St, Los Angeles, CA 90001" +181913,AAA Batteries (4-pack),1,2.99,03/02/19 17:22,"950 Lincoln St, Portland, OR 97035" +181914,Flatscreen TV,1,300,03/21/19 00:07,"969 14th St, Los Angeles, CA 90001" +181915,Wired Headphones,1,11.99,03/12/19 21:30,"469 10th St, Los Angeles, CA 90001" +181916,27in FHD Monitor,1,149.99,03/31/19 20:44,"587 Hickory St, Boston, MA 02215" +181917,Bose SoundSport Headphones,1,99.99,03/31/19 14:17,"503 Forest St, Los Angeles, CA 90001" +181918,Macbook Pro Laptop,1,1700,03/01/19 15:02,"826 Wilson St, San Francisco, CA 94016" +181919,iPhone,1,700,03/30/19 11:41,"661 11th St, Los Angeles, CA 90001" +181920,Apple Airpods Headphones,1,150,03/02/19 20:58,"240 Center St, New York City, NY 10001" +181921,Lightning Charging Cable,1,14.95,03/17/19 21:16,"380 7th St, New York City, NY 10001" +181922,Lightning Charging Cable,1,14.95,03/10/19 14:33,"466 7th St, Los Angeles, CA 90001" +181923,Lightning Charging Cable,1,14.95,03/10/19 17:37,"300 Cedar St, Seattle, WA 98101" +181924,Lightning Charging Cable,1,14.95,03/08/19 21:03,"817 Washington St, Atlanta, GA 30301" +181925,AA Batteries (4-pack),2,3.84,03/16/19 20:35,"914 Chestnut St, New York City, NY 10001" +181926,USB-C Charging Cable,1,11.95,03/23/19 10:36,"293 Walnut St, Los Angeles, CA 90001" +181927,iPhone,1,700,03/27/19 14:58,"29 9th St, Boston, MA 02215" +181927,Lightning Charging Cable,1,14.95,03/27/19 14:58,"29 9th St, Boston, MA 02215" +181928,AAA Batteries (4-pack),3,2.99,03/23/19 21:56,"970 Jackson St, Atlanta, GA 30301" +181929,USB-C Charging Cable,1,11.95,03/11/19 12:19,"919 Washington St, Boston, MA 02215" +181930,Lightning Charging Cable,1,14.95,03/17/19 09:29,"696 River St, Atlanta, GA 30301" +181931,USB-C Charging Cable,1,11.95,03/15/19 23:42,"940 Center St, Boston, MA 02215" +181932,Bose SoundSport Headphones,1,99.99,03/31/19 13:08,"135 Church St, Boston, MA 02215" +181933,AAA Batteries (4-pack),3,2.99,03/08/19 16:03,"175 West St, San Francisco, CA 94016" +181934,Lightning Charging Cable,1,14.95,03/22/19 13:16,"810 Cedar St, New York City, NY 10001" +181935,Lightning Charging Cable,1,14.95,03/02/19 19:11,"220 10th St, San Francisco, CA 94016" +181936,Apple Airpods Headphones,1,150,03/03/19 09:52,"725 9th St, Atlanta, GA 30301" +181937,Wired Headphones,1,11.99,03/30/19 19:26,"648 Adams St, San Francisco, CA 94016" +181938,AAA Batteries (4-pack),1,2.99,03/26/19 15:06,"969 7th St, Dallas, TX 75001" +181938,27in 4K Gaming Monitor,1,389.99,03/26/19 15:06,"969 7th St, Dallas, TX 75001" +181939,Apple Airpods Headphones,1,150,03/15/19 10:08,"523 Spruce St, New York City, NY 10001" +181940,USB-C Charging Cable,1,11.95,03/24/19 20:53,"565 12th St, Seattle, WA 98101" +181941,USB-C Charging Cable,1,11.95,03/20/19 08:46,"853 North St, Austin, TX 73301" +181942,AA Batteries (4-pack),1,3.84,03/25/19 02:24,"185 Jackson St, Atlanta, GA 30301" +181943,Apple Airpods Headphones,1,150,03/13/19 17:02,"456 South St, Dallas, TX 75001" +181944,Wired Headphones,1,11.99,03/27/19 17:51,"416 Ridge St, Atlanta, GA 30301" +181945,AAA Batteries (4-pack),1,2.99,03/30/19 15:46,"304 Jackson St, San Francisco, CA 94016" +181946,Wired Headphones,1,11.99,03/27/19 09:41,"566 North St, New York City, NY 10001" +181947,Wired Headphones,2,11.99,03/14/19 06:57,"559 Chestnut St, Los Angeles, CA 90001" +181948,AA Batteries (4-pack),1,3.84,03/27/19 05:16,"978 Dogwood St, New York City, NY 10001" +181949,27in FHD Monitor,1,149.99,03/24/19 13:49,"851 5th St, New York City, NY 10001" +181950,Apple Airpods Headphones,1,150,03/23/19 17:06,"411 14th St, San Francisco, CA 94016" +181951,Lightning Charging Cable,1,14.95,03/18/19 20:37,"204 7th St, Los Angeles, CA 90001" +181952,AAA Batteries (4-pack),2,2.99,03/05/19 10:41,"768 2nd St, Los Angeles, CA 90001" +181953,iPhone,1,700,03/03/19 19:15,"779 2nd St, San Francisco, CA 94016" +181954,Google Phone,1,600,03/14/19 18:48,"584 Lakeview St, Seattle, WA 98101" +181954,Wired Headphones,1,11.99,03/14/19 18:48,"584 Lakeview St, Seattle, WA 98101" +181955,Wired Headphones,1,11.99,03/25/19 23:26,"346 Johnson St, New York City, NY 10001" +181956,USB-C Charging Cable,1,11.95,03/12/19 11:42,"256 North St, Portland, OR 97035" +181957,Flatscreen TV,1,300,03/01/19 13:02,"472 Ridge St, Los Angeles, CA 90001" +181958,USB-C Charging Cable,2,11.95,03/06/19 20:47,"96 Church St, Seattle, WA 98101" +181959,Wired Headphones,2,11.99,03/28/19 14:35,"792 Madison St, Portland, OR 97035" +181960,Google Phone,1,600,03/12/19 00:21,"71 Main St, Los Angeles, CA 90001" +181961,USB-C Charging Cable,2,11.95,03/17/19 13:16,"513 6th St, Los Angeles, CA 90001" +181962,Wired Headphones,1,11.99,03/09/19 14:49,"8 Cherry St, New York City, NY 10001" +181963,27in FHD Monitor,1,149.99,03/02/19 19:31,"980 Dogwood St, New York City, NY 10001" +181964,Apple Airpods Headphones,1,150,03/09/19 01:59,"803 Sunset St, Los Angeles, CA 90001" +181964,27in 4K Gaming Monitor,1,389.99,03/09/19 01:59,"803 Sunset St, Los Angeles, CA 90001" +181965,AA Batteries (4-pack),2,3.84,03/15/19 17:08,"758 Park St, Los Angeles, CA 90001" +181966,Apple Airpods Headphones,1,150,03/22/19 10:34,"69 Lincoln St, Dallas, TX 75001" +181967,Macbook Pro Laptop,1,1700,03/08/19 14:21,"495 Hill St, San Francisco, CA 94016" +181968,Apple Airpods Headphones,1,150,03/18/19 13:38,"771 Elm St, Seattle, WA 98101" +181969,USB-C Charging Cable,1,11.95,03/21/19 20:46,"616 13th St, New York City, NY 10001" +181970,Bose SoundSport Headphones,1,99.99,03/11/19 18:08,"273 Main St, San Francisco, CA 94016" +181971,27in FHD Monitor,1,149.99,03/17/19 06:14,"616 Lincoln St, Los Angeles, CA 90001" +181972,Wired Headphones,2,11.99,03/23/19 13:15,"595 Walnut St, New York City, NY 10001" +181973,Bose SoundSport Headphones,1,99.99,03/08/19 10:59,"765 Cherry St, Boston, MA 02215" +181974,Macbook Pro Laptop,1,1700,03/12/19 17:34,"512 14th St, San Francisco, CA 94016" +181975,Lightning Charging Cable,1,14.95,03/21/19 10:50,"565 Highland St, Austin, TX 73301" +181976,Bose SoundSport Headphones,1,99.99,03/04/19 10:45,"875 7th St, Los Angeles, CA 90001" +181977,Wired Headphones,1,11.99,03/20/19 16:52,"70 Lincoln St, Boston, MA 02215" +181978,Lightning Charging Cable,1,14.95,03/07/19 09:58,"732 Dogwood St, Los Angeles, CA 90001" +181979,AA Batteries (4-pack),3,3.84,03/05/19 23:44,"544 7th St, San Francisco, CA 94016" +181980,Apple Airpods Headphones,1,150,03/29/19 19:52,"43 9th St, Los Angeles, CA 90001" +181981,27in FHD Monitor,1,149.99,03/03/19 20:49,"362 Ridge St, Austin, TX 73301" +181982,Apple Airpods Headphones,1,150,03/20/19 15:13,"942 Church St, San Francisco, CA 94016" +181983,27in 4K Gaming Monitor,1,389.99,03/06/19 13:08,"619 Johnson St, Atlanta, GA 30301" +181984,Bose SoundSport Headphones,1,99.99,03/12/19 15:36,"753 Johnson St, Atlanta, GA 30301" +181985,20in Monitor,1,109.99,03/16/19 12:32,"515 Jefferson St, San Francisco, CA 94016" +181986,Wired Headphones,1,11.99,03/01/19 22:38,"411 River St, New York City, NY 10001" +181987,Bose SoundSport Headphones,1,99.99,03/24/19 19:29,"557 Cedar St, San Francisco, CA 94016" +181988,27in 4K Gaming Monitor,1,389.99,03/09/19 16:00,"200 14th St, San Francisco, CA 94016" +181989,AAA Batteries (4-pack),1,2.99,03/27/19 14:37,"219 Forest St, Seattle, WA 98101" +181990,Wired Headphones,1,11.99,03/22/19 08:36,"351 Madison St, Portland, OR 97035" +181991,AA Batteries (4-pack),2,3.84,03/22/19 21:46,"614 Highland St, Portland, OR 97035" +181992,Wired Headphones,1,11.99,03/03/19 06:27,"904 14th St, Seattle, WA 98101" +181993,AA Batteries (4-pack),1,3.84,03/13/19 23:02,"14 Hill St, Los Angeles, CA 90001" +181994,Lightning Charging Cable,1,14.95,03/26/19 22:23,"589 Ridge St, New York City, NY 10001" +181995,Flatscreen TV,1,300,03/12/19 22:11,"112 Pine St, New York City, NY 10001" +181996,Lightning Charging Cable,1,14.95,03/08/19 20:36,"602 7th St, San Francisco, CA 94016" +181997,Lightning Charging Cable,1,14.95,03/16/19 12:33,"11 Dogwood St, Austin, TX 73301" +181998,USB-C Charging Cable,1,11.95,03/24/19 16:17,"44 Cherry St, Austin, TX 73301" +181999,AA Batteries (4-pack),1,3.84,03/31/19 09:14,"234 Church St, Boston, MA 02215" +182000,AAA Batteries (4-pack),1,2.99,03/24/19 19:42,"780 5th St, Los Angeles, CA 90001" +182001,Wired Headphones,1,11.99,03/29/19 17:15,"616 River St, Los Angeles, CA 90001" +182002,Lightning Charging Cable,1,14.95,03/14/19 16:29,"316 South St, Seattle, WA 98101" +182003,Google Phone,1,600,03/10/19 09:44,"758 Park St, Dallas, TX 75001" +182004,AA Batteries (4-pack),2,3.84,03/16/19 13:12,"378 Hickory St, San Francisco, CA 94016" +182005,Vareebadd Phone,1,400,03/01/19 09:04,"652 Cedar St, Boston, MA 02215" +182006,20in Monitor,1,109.99,03/22/19 23:25,"899 North St, San Francisco, CA 94016" +182007,Apple Airpods Headphones,1,150,03/14/19 21:43,"449 Center St, Boston, MA 02215" +182008,Apple Airpods Headphones,1,150,03/26/19 09:03,"800 Cedar St, New York City, NY 10001" +182009,Wired Headphones,1,11.99,03/31/19 20:50,"933 Main St, Seattle, WA 98101" +182010,AAA Batteries (4-pack),1,2.99,03/12/19 07:00,"629 Elm St, New York City, NY 10001" +182011,Lightning Charging Cable,1,14.95,03/03/19 12:38,"219 8th St, Seattle, WA 98101" +182012,27in 4K Gaming Monitor,1,389.99,03/20/19 23:15,"46 Walnut St, New York City, NY 10001" +182013,34in Ultrawide Monitor,1,379.99,03/11/19 09:59,"541 Walnut St, New York City, NY 10001" +182014,27in FHD Monitor,1,149.99,03/18/19 13:33,"385 Park St, Dallas, TX 75001" +182015,AAA Batteries (4-pack),2,2.99,03/27/19 17:46,"725 Hill St, Los Angeles, CA 90001" +182016,Bose SoundSport Headphones,1,99.99,03/11/19 20:29,"140 Pine St, Portland, ME 04101" +182017,Lightning Charging Cable,1,14.95,03/25/19 08:28,"985 Forest St, Boston, MA 02215" +182018,AA Batteries (4-pack),2,3.84,03/04/19 07:08,"989 Spruce St, Portland, OR 97035" +182019,Apple Airpods Headphones,1,150,03/14/19 20:37,"102 Center St, Portland, OR 97035" +182020,iPhone,1,700,03/22/19 15:04,"513 Wilson St, New York City, NY 10001" +182021,34in Ultrawide Monitor,1,379.99,03/19/19 15:06,"545 Lake St, Seattle, WA 98101" +182022,Wired Headphones,1,11.99,03/04/19 08:02,"233 Hickory St, Austin, TX 73301" +182023,20in Monitor,1,109.99,03/24/19 09:47,"999 Highland St, Dallas, TX 75001" +182024,Bose SoundSport Headphones,1,99.99,03/23/19 09:39,"350 7th St, Portland, OR 97035" +182025,AAA Batteries (4-pack),1,2.99,03/11/19 20:20,"179 Ridge St, Atlanta, GA 30301" +182026,Wired Headphones,1,11.99,03/24/19 21:38,"675 Hickory St, New York City, NY 10001" +182027,Flatscreen TV,1,300,03/09/19 13:05,"981 River St, Boston, MA 02215" +182028,ThinkPad Laptop,1,999.99,03/20/19 16:04,"47 Lakeview St, San Francisco, CA 94016" +182029,Lightning Charging Cable,1,14.95,03/28/19 21:30,"330 7th St, San Francisco, CA 94016" +182030,AAA Batteries (4-pack),1,2.99,03/05/19 00:04,"474 8th St, Atlanta, GA 30301" +182031,Apple Airpods Headphones,1,150,03/04/19 08:26,"607 Park St, Austin, TX 73301" +182032,AAA Batteries (4-pack),2,2.99,03/27/19 11:31,"998 Adams St, Portland, OR 97035" +182033,Apple Airpods Headphones,1,150,03/16/19 14:49,"257 Hill St, Seattle, WA 98101" +182034,Google Phone,1,600,03/02/19 11:07,"238 Hill St, New York City, NY 10001" +182035,Lightning Charging Cable,1,14.95,03/25/19 13:55,"72 12th St, New York City, NY 10001" +182035,USB-C Charging Cable,1,11.95,03/25/19 13:55,"72 12th St, New York City, NY 10001" +182036,Apple Airpods Headphones,1,150,03/20/19 11:40,"358 Adams St, Los Angeles, CA 90001" +182037,Flatscreen TV,1,300,03/02/19 11:46,"913 Sunset St, Los Angeles, CA 90001" +182038,Wired Headphones,1,11.99,03/14/19 11:35,"447 Hickory St, San Francisco, CA 94016" +182039,Flatscreen TV,1,300,03/12/19 00:17,"812 Jackson St, New York City, NY 10001" +182040,Wired Headphones,1,11.99,03/15/19 22:06,"821 Church St, San Francisco, CA 94016" +182041,iPhone,1,700,03/03/19 12:14,"602 6th St, Los Angeles, CA 90001" +182041,Lightning Charging Cable,1,14.95,03/03/19 12:14,"602 6th St, Los Angeles, CA 90001" +182042,Apple Airpods Headphones,1,150,03/17/19 10:16,"705 Lakeview St, Boston, MA 02215" +182043,27in FHD Monitor,1,149.99,03/13/19 23:08,"141 Church St, Los Angeles, CA 90001" +182044,Wired Headphones,1,11.99,03/12/19 10:57,"928 Johnson St, Portland, OR 97035" +182045,LG Dryer,1,600.0,03/06/19 17:47,"900 Main St, Seattle, WA 98101" +182046,Wired Headphones,1,11.99,03/18/19 13:06,"999 13th St, San Francisco, CA 94016" +182047,Wired Headphones,1,11.99,03/23/19 12:29,"726 10th St, San Francisco, CA 94016" +182048,Wired Headphones,1,11.99,03/26/19 07:28,"833 9th St, Seattle, WA 98101" +182049,Flatscreen TV,1,300,03/31/19 21:52,"752 Center St, San Francisco, CA 94016" +182050,AAA Batteries (4-pack),1,2.99,03/10/19 07:08,"850 7th St, San Francisco, CA 94016" +182051,Apple Airpods Headphones,1,150,03/14/19 11:16,"948 Madison St, Boston, MA 02215" +182052,AAA Batteries (4-pack),2,2.99,03/03/19 13:31,"739 Madison St, San Francisco, CA 94016" +182053,Apple Airpods Headphones,1,150,03/12/19 15:27,"292 Adams St, Atlanta, GA 30301" +182053,Macbook Pro Laptop,1,1700,03/12/19 15:27,"292 Adams St, Atlanta, GA 30301" +182054,USB-C Charging Cable,3,11.95,03/01/19 13:53,"343 Dogwood St, San Francisco, CA 94016" +182055,Google Phone,1,600,03/12/19 18:38,"791 Main St, Boston, MA 02215" +182056,27in 4K Gaming Monitor,1,389.99,03/01/19 23:03,"514 Sunset St, Los Angeles, CA 90001" +182057,AA Batteries (4-pack),2,3.84,03/19/19 23:42,"177 14th St, Los Angeles, CA 90001" +182058,20in Monitor,1,109.99,03/22/19 19:25,"417 Hickory St, Boston, MA 02215" +182059,AA Batteries (4-pack),1,3.84,03/03/19 21:52,"401 Washington St, New York City, NY 10001" +182060,34in Ultrawide Monitor,1,379.99,03/29/19 07:27,"233 Madison St, San Francisco, CA 94016" +182061,Flatscreen TV,1,300,03/23/19 12:33,"575 Adams St, Los Angeles, CA 90001" +182061,Lightning Charging Cable,1,14.95,03/23/19 12:33,"575 Adams St, Los Angeles, CA 90001" +182062,AA Batteries (4-pack),2,3.84,03/19/19 20:52,"132 Johnson St, Atlanta, GA 30301" +182063,20in Monitor,1,109.99,03/15/19 12:07,"361 Washington St, Boston, MA 02215" +182064,AAA Batteries (4-pack),1,2.99,03/03/19 18:33,"977 Elm St, Los Angeles, CA 90001" +182065,iPhone,1,700,03/19/19 20:07,"857 Maple St, Portland, OR 97035" +182066,Apple Airpods Headphones,1,150,03/29/19 20:39,"451 Jefferson St, Austin, TX 73301" +182067,Lightning Charging Cable,1,14.95,03/19/19 02:39,"809 Center St, Atlanta, GA 30301" +182068,Bose SoundSport Headphones,1,99.99,03/16/19 23:55,"539 11th St, Seattle, WA 98101" +182069,Bose SoundSport Headphones,1,99.99,03/20/19 08:50,"54 Elm St, Los Angeles, CA 90001" +182070,AAA Batteries (4-pack),3,2.99,03/10/19 14:17,"611 Ridge St, Austin, TX 73301" +182071,Lightning Charging Cable,1,14.95,03/24/19 12:37,"923 Sunset St, San Francisco, CA 94016" +182072,Wired Headphones,1,11.99,03/15/19 19:25,"725 6th St, San Francisco, CA 94016" +182073,AA Batteries (4-pack),1,3.84,03/19/19 10:21,"801 Cherry St, Boston, MA 02215" +182074,Wired Headphones,1,11.99,03/28/19 19:41,"363 7th St, San Francisco, CA 94016" +182075,iPhone,1,700,03/10/19 01:06,"289 Hickory St, San Francisco, CA 94016" +182076,Apple Airpods Headphones,1,150,03/22/19 19:04,"333 1st St, Los Angeles, CA 90001" +182077,Apple Airpods Headphones,1,150,03/11/19 11:13,"393 Hill St, Dallas, TX 75001" +182078,AA Batteries (4-pack),1,3.84,03/14/19 17:15,"732 2nd St, Dallas, TX 75001" +182079,AAA Batteries (4-pack),1,2.99,03/15/19 11:16,"701 Madison St, Atlanta, GA 30301" +182080,Bose SoundSport Headphones,1,99.99,03/18/19 15:34,"967 Madison St, San Francisco, CA 94016" +182081,Wired Headphones,1,11.99,03/24/19 06:16,"331 Adams St, Dallas, TX 75001" +182082,Lightning Charging Cable,1,14.95,03/08/19 07:37,"227 Lakeview St, Los Angeles, CA 90001" +182083,Apple Airpods Headphones,1,150,03/01/19 10:36,"168 North St, Atlanta, GA 30301" +182084,AA Batteries (4-pack),2,3.84,03/28/19 18:47,"554 Cherry St, Dallas, TX 75001" +182085,27in FHD Monitor,1,149.99,03/09/19 07:20,"126 14th St, Seattle, WA 98101" +182086,AA Batteries (4-pack),1,3.84,03/31/19 09:30,"911 Elm St, Los Angeles, CA 90001" +182087,Macbook Pro Laptop,1,1700,03/05/19 18:09,"25 Jackson St, Los Angeles, CA 90001" +182088,27in FHD Monitor,1,149.99,03/02/19 14:41,"821 Willow St, Atlanta, GA 30301" +182089,Macbook Pro Laptop,1,1700,03/11/19 01:21,"815 South St, San Francisco, CA 94016" +182090,Apple Airpods Headphones,1,150,03/24/19 07:35,"697 Dogwood St, New York City, NY 10001" +182091,34in Ultrawide Monitor,1,379.99,03/12/19 08:12,"967 Chestnut St, New York City, NY 10001" +182092,Bose SoundSport Headphones,1,99.99,03/11/19 16:03,"760 Park St, Austin, TX 73301" +182093,USB-C Charging Cable,1,11.95,03/30/19 17:52,"654 Cherry St, San Francisco, CA 94016" +182094,Lightning Charging Cable,1,14.95,03/27/19 18:09,"532 Pine St, San Francisco, CA 94016" +182095,Bose SoundSport Headphones,1,99.99,03/01/19 19:10,"213 Meadow St, Atlanta, GA 30301" +182096,AAA Batteries (4-pack),5,2.99,03/31/19 11:36,"991 Adams St, Seattle, WA 98101" +182097,AAA Batteries (4-pack),2,2.99,03/17/19 16:42,"570 Main St, San Francisco, CA 94016" +182098,Bose SoundSport Headphones,1,99.99,03/18/19 18:03,"602 Adams St, San Francisco, CA 94016" +182099,Wired Headphones,1,11.99,03/25/19 08:48,"493 Cedar St, Portland, ME 04101" +182099,Wired Headphones,1,11.99,03/25/19 08:48,"493 Cedar St, Portland, ME 04101" +182100,USB-C Charging Cable,1,11.95,03/11/19 13:38,"497 Maple St, San Francisco, CA 94016" +182101,AA Batteries (4-pack),1,3.84,03/27/19 19:23,"760 Adams St, Atlanta, GA 30301" +182102,Apple Airpods Headphones,1,150,03/03/19 11:17,"621 Walnut St, New York City, NY 10001" +182103,Apple Airpods Headphones,1,150,03/24/19 19:23,"538 Sunset St, Dallas, TX 75001" +182104,ThinkPad Laptop,1,999.99,03/31/19 20:31,"920 South St, Dallas, TX 75001" +182105,Bose SoundSport Headphones,1,99.99,03/30/19 20:07,"967 4th St, Los Angeles, CA 90001" +182106,Lightning Charging Cable,1,14.95,03/16/19 09:31,"240 Lakeview St, Seattle, WA 98101" +182107,AA Batteries (4-pack),2,3.84,03/14/19 12:18,"311 North St, Atlanta, GA 30301" +182108,Bose SoundSport Headphones,1,99.99,03/30/19 10:01,"334 1st St, New York City, NY 10001" +182109,USB-C Charging Cable,1,11.95,03/21/19 08:22,"911 Jackson St, Boston, MA 02215" +182110,Macbook Pro Laptop,1,1700,03/29/19 15:15,"622 Church St, Los Angeles, CA 90001" +182111,AAA Batteries (4-pack),2,2.99,03/01/19 21:38,"151 5th St, San Francisco, CA 94016" +182112,Google Phone,1,600,03/06/19 11:50,"400 8th St, Los Angeles, CA 90001" +182113,Macbook Pro Laptop,1,1700,03/04/19 14:11,"697 Lincoln St, San Francisco, CA 94016" +182114,Wired Headphones,1,11.99,03/15/19 14:40,"563 Johnson St, Los Angeles, CA 90001" +182115,Lightning Charging Cable,1,14.95,03/02/19 18:27,"118 Maple St, New York City, NY 10001" +182116,AAA Batteries (4-pack),1,2.99,03/29/19 05:50,"525 Hill St, San Francisco, CA 94016" +182117,Wired Headphones,1,11.99,03/24/19 08:42,"227 Lake St, Boston, MA 02215" +182118,Lightning Charging Cable,1,14.95,03/01/19 13:23,"3 Main St, Portland, OR 97035" +182119,Apple Airpods Headphones,1,150,03/23/19 17:07,"808 Jefferson St, San Francisco, CA 94016" +182120,AAA Batteries (4-pack),1,2.99,03/13/19 14:21,"367 Highland St, San Francisco, CA 94016" +182121,AA Batteries (4-pack),1,3.84,03/13/19 19:32,"837 Madison St, Los Angeles, CA 90001" +182122,ThinkPad Laptop,1,999.99,03/16/19 19:08,"34 4th St, San Francisco, CA 94016" +182123,27in FHD Monitor,1,149.99,03/15/19 11:44,"697 Lincoln St, Dallas, TX 75001" +182124,Lightning Charging Cable,1,14.95,03/30/19 17:34,"596 Hill St, Portland, OR 97035" +182125,Lightning Charging Cable,1,14.95,03/14/19 10:12,"50 Park St, New York City, NY 10001" +182126,Lightning Charging Cable,1,14.95,03/30/19 11:13,"672 Jefferson St, Atlanta, GA 30301" +182127,AA Batteries (4-pack),1,3.84,03/12/19 18:48,"526 Main St, San Francisco, CA 94016" +182128,Wired Headphones,1,11.99,03/15/19 10:23,"554 6th St, San Francisco, CA 94016" +182129,AA Batteries (4-pack),2,3.84,03/28/19 12:56,"320 Walnut St, San Francisco, CA 94016" +182130,AAA Batteries (4-pack),2,2.99,03/20/19 14:44,"230 Cedar St, Los Angeles, CA 90001" +182131,Wired Headphones,1,11.99,03/09/19 14:34,"148 6th St, San Francisco, CA 94016" +182132,AA Batteries (4-pack),2,3.84,03/08/19 19:00,"427 West St, San Francisco, CA 94016" +182133,AAA Batteries (4-pack),3,2.99,03/12/19 23:18,"456 Highland St, Seattle, WA 98101" +182134,AAA Batteries (4-pack),1,2.99,03/07/19 12:17,"93 2nd St, Seattle, WA 98101" +182135,27in FHD Monitor,1,149.99,03/08/19 20:21,"597 Sunset St, Dallas, TX 75001" +182136,AAA Batteries (4-pack),1,2.99,03/25/19 13:42,"452 South St, Dallas, TX 75001" +182137,Google Phone,1,600,03/05/19 18:09,"582 Cedar St, Austin, TX 73301" +182137,USB-C Charging Cable,1,11.95,03/05/19 18:09,"582 Cedar St, Austin, TX 73301" +182138,Wired Headphones,2,11.99,03/03/19 10:51,"400 Forest St, Los Angeles, CA 90001" +182139,ThinkPad Laptop,1,999.99,03/07/19 04:54,"666 Meadow St, San Francisco, CA 94016" +182140,Vareebadd Phone,1,400,03/24/19 13:04,"867 Dogwood St, Dallas, TX 75001" +182140,USB-C Charging Cable,1,11.95,03/24/19 13:04,"867 Dogwood St, Dallas, TX 75001" +182141,Wired Headphones,1,11.99,03/09/19 13:17,"153 Ridge St, New York City, NY 10001" +182142,34in Ultrawide Monitor,1,379.99,03/01/19 15:14,"178 Cedar St, New York City, NY 10001" +182143,20in Monitor,1,109.99,03/25/19 19:58,"396 9th St, Los Angeles, CA 90001" +182144,Apple Airpods Headphones,1,150,03/31/19 18:33,"678 Church St, Atlanta, GA 30301" +182145,Vareebadd Phone,1,400,03/16/19 22:56,"732 Church St, San Francisco, CA 94016" +182146,USB-C Charging Cable,1,11.95,03/08/19 10:16,"799 11th St, Portland, ME 04101" +182147,AA Batteries (4-pack),1,3.84,03/11/19 17:41,"266 South St, Atlanta, GA 30301" +182148,Wired Headphones,1,11.99,03/02/19 08:23,"392 Washington St, Atlanta, GA 30301" +182149,iPhone,1,700,03/30/19 13:36,"631 South St, Dallas, TX 75001" +182150,34in Ultrawide Monitor,1,379.99,03/04/19 11:50,"940 Meadow St, San Francisco, CA 94016" +182151,Apple Airpods Headphones,1,150,03/14/19 14:32,"373 Jackson St, Atlanta, GA 30301" +182152,Wired Headphones,1,11.99,03/27/19 15:10,"239 9th St, Portland, ME 04101" +182153,AAA Batteries (4-pack),1,2.99,03/02/19 16:20,"83 7th St, New York City, NY 10001" +182154,AAA Batteries (4-pack),1,2.99,03/04/19 20:30,"660 Walnut St, Los Angeles, CA 90001" +182155,Wired Headphones,1,11.99,03/08/19 21:32,"214 Forest St, Portland, OR 97035" +182156,Lightning Charging Cable,2,14.95,03/12/19 14:20,"129 Park St, San Francisco, CA 94016" +182157,AAA Batteries (4-pack),1,2.99,03/02/19 16:27,"404 Jackson St, San Francisco, CA 94016" +182158,Wired Headphones,1,11.99,03/02/19 15:47,"516 9th St, New York City, NY 10001" +182159,Wired Headphones,1,11.99,03/08/19 20:52,"106 Hill St, San Francisco, CA 94016" +182160,AA Batteries (4-pack),1,3.84,03/23/19 23:36,"666 Ridge St, Los Angeles, CA 90001" +182161,Lightning Charging Cable,1,14.95,03/28/19 20:31,"865 Lakeview St, Los Angeles, CA 90001" +182162,20in Monitor,1,109.99,03/29/19 15:48,"307 Cedar St, San Francisco, CA 94016" +182163,Wired Headphones,1,11.99,03/27/19 16:18,"158 2nd St, New York City, NY 10001" +182164,AA Batteries (4-pack),1,3.84,03/01/19 09:30,"324 Park St, Boston, MA 02215" +182165,Lightning Charging Cable,1,14.95,03/27/19 17:05,"248 12th St, Seattle, WA 98101" +182166,AA Batteries (4-pack),2,3.84,03/02/19 14:12,"104 Ridge St, Seattle, WA 98101" +182167,27in FHD Monitor,1,149.99,03/29/19 07:29,"985 Walnut St, Portland, OR 97035" +182168,AAA Batteries (4-pack),1,2.99,03/15/19 19:13,"999 Church St, Los Angeles, CA 90001" +182169,Wired Headphones,1,11.99,03/22/19 15:23,"324 Chestnut St, San Francisco, CA 94016" +182170,Wired Headphones,1,11.99,03/16/19 22:13,"215 Hill St, Boston, MA 02215" +182171,Lightning Charging Cable,1,14.95,03/23/19 13:44,"234 12th St, Atlanta, GA 30301" +182172,Wired Headphones,1,11.99,03/08/19 12:24,"945 6th St, Los Angeles, CA 90001" +182173,AAA Batteries (4-pack),1,2.99,03/26/19 20:50,"689 Adams St, Los Angeles, CA 90001" +182174,Macbook Pro Laptop,1,1700,03/01/19 16:21,"479 Jackson St, New York City, NY 10001" +182175,Bose SoundSport Headphones,1,99.99,03/18/19 14:07,"250 Washington St, Dallas, TX 75001" +182176,Macbook Pro Laptop,1,1700,03/02/19 07:04,"781 Park St, Atlanta, GA 30301" +182177,Apple Airpods Headphones,1,150,03/05/19 10:20,"297 Jefferson St, Los Angeles, CA 90001" +182178,AA Batteries (4-pack),1,3.84,03/18/19 12:08,"194 North St, Los Angeles, CA 90001" +182179,Lightning Charging Cable,1,14.95,03/04/19 13:43,"175 Elm St, Atlanta, GA 30301" +182180,27in 4K Gaming Monitor,1,389.99,03/06/19 17:29,"108 Maple St, Boston, MA 02215" +182181,iPhone,1,700,03/24/19 14:36,"621 Ridge St, Los Angeles, CA 90001" +182181,Lightning Charging Cable,1,14.95,03/24/19 14:36,"621 Ridge St, Los Angeles, CA 90001" +182181,Wired Headphones,1,11.99,03/24/19 14:36,"621 Ridge St, Los Angeles, CA 90001" +182182,20in Monitor,1,109.99,03/15/19 02:04,"563 Jefferson St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +182183,AAA Batteries (4-pack),1,2.99,03/09/19 10:09,"93 Sunset St, Los Angeles, CA 90001" +182184,Wired Headphones,1,11.99,03/12/19 22:36,"345 Walnut St, Portland, OR 97035" +182185,AA Batteries (4-pack),1,3.84,03/17/19 18:09,"318 Church St, Los Angeles, CA 90001" +182185,Apple Airpods Headphones,1,150,03/17/19 18:09,"318 Church St, Los Angeles, CA 90001" +182186,AAA Batteries (4-pack),3,2.99,03/10/19 08:25,"585 13th St, San Francisco, CA 94016" +182186,27in 4K Gaming Monitor,1,389.99,03/10/19 08:25,"585 13th St, San Francisco, CA 94016" +182187,20in Monitor,1,109.99,03/12/19 12:20,"835 Dogwood St, Los Angeles, CA 90001" +182188,AA Batteries (4-pack),1,3.84,03/06/19 17:58,"356 Meadow St, Portland, OR 97035" +182189,LG Washing Machine,1,600.0,03/21/19 18:15,"107 Park St, Dallas, TX 75001" +182190,USB-C Charging Cable,1,11.95,03/24/19 05:14,"505 Dogwood St, New York City, NY 10001" +182191,Macbook Pro Laptop,1,1700,03/19/19 21:58,"745 9th St, Austin, TX 73301" +182192,Apple Airpods Headphones,1,150,03/03/19 00:43,"810 South St, Los Angeles, CA 90001" +182193,iPhone,1,700,03/31/19 11:04,"246 13th St, New York City, NY 10001" +182193,Lightning Charging Cable,1,14.95,03/31/19 11:04,"246 13th St, New York City, NY 10001" +182194,27in 4K Gaming Monitor,1,389.99,03/14/19 07:08,"810 2nd St, Los Angeles, CA 90001" +182195,20in Monitor,1,109.99,03/10/19 18:45,"464 Pine St, Los Angeles, CA 90001" +182196,Google Phone,1,600,03/16/19 09:18,"82 Jefferson St, New York City, NY 10001" +182196,AAA Batteries (4-pack),1,2.99,03/16/19 09:18,"82 Jefferson St, New York City, NY 10001" +182197,AAA Batteries (4-pack),1,2.99,03/29/19 18:48,"76 4th St, Portland, OR 97035" +182198,Google Phone,1,600,03/01/19 15:48,"200 Dogwood St, New York City, NY 10001" +182199,USB-C Charging Cable,1,11.95,03/22/19 19:12,"366 Chestnut St, Boston, MA 02215" +182200,AA Batteries (4-pack),1,3.84,03/01/19 07:35,"591 Jefferson St, New York City, NY 10001" +182201,27in 4K Gaming Monitor,1,389.99,03/02/19 22:21,"628 11th St, Los Angeles, CA 90001" +182202,34in Ultrawide Monitor,1,379.99,03/17/19 08:06,"891 Park St, Boston, MA 02215" +182203,Apple Airpods Headphones,1,150,03/22/19 12:01,"714 Johnson St, Austin, TX 73301" +182204,Bose SoundSport Headphones,1,99.99,03/03/19 12:33,"211 Wilson St, Dallas, TX 75001" +182205,Google Phone,1,600,03/18/19 22:01,"485 Highland St, Atlanta, GA 30301" +182206,Wired Headphones,2,11.99,03/17/19 11:05,"664 Jackson St, Atlanta, GA 30301" +182207,Macbook Pro Laptop,1,1700,03/14/19 10:41,"192 Madison St, New York City, NY 10001" +182208,20in Monitor,1,109.99,03/29/19 10:12,"463 Cedar St, Dallas, TX 75001" +182209,LG Washing Machine,1,600.0,03/08/19 16:44,"611 4th St, Atlanta, GA 30301" +182210,AA Batteries (4-pack),1,3.84,03/25/19 19:23,"776 Hill St, San Francisco, CA 94016" +182211,Flatscreen TV,1,300,03/02/19 12:54,"442 Dogwood St, Boston, MA 02215" +182212,Wired Headphones,2,11.99,03/05/19 11:32,"844 Spruce St, New York City, NY 10001" +182213,AAA Batteries (4-pack),4,2.99,03/25/19 23:34,"806 10th St, New York City, NY 10001" +182214,USB-C Charging Cable,1,11.95,03/04/19 13:47,"126 Sunset St, San Francisco, CA 94016" +182215,iPhone,1,700,03/11/19 10:59,"956 Johnson St, Seattle, WA 98101" +182216,AAA Batteries (4-pack),1,2.99,03/18/19 19:15,"511 10th St, Dallas, TX 75001" +182217,USB-C Charging Cable,1,11.95,03/11/19 11:51,"471 River St, San Francisco, CA 94016" +182218,27in 4K Gaming Monitor,1,389.99,03/31/19 11:37,"310 Dogwood St, Boston, MA 02215" +182219,USB-C Charging Cable,1,11.95,03/04/19 21:18,"102 8th St, Boston, MA 02215" +182220,AAA Batteries (4-pack),2,2.99,03/22/19 09:27,"826 Jefferson St, San Francisco, CA 94016" +182221,AAA Batteries (4-pack),1,2.99,03/31/19 22:35,"972 Elm St, Los Angeles, CA 90001" +182222,Bose SoundSport Headphones,1,99.99,03/08/19 13:44,"704 Dogwood St, San Francisco, CA 94016" +182223,iPhone,1,700,03/13/19 01:51,"341 Walnut St, San Francisco, CA 94016" +182224,AA Batteries (4-pack),1,3.84,03/31/19 18:05,"686 Jackson St, Dallas, TX 75001" +182225,AA Batteries (4-pack),2,3.84,03/17/19 16:58,"192 Meadow St, New York City, NY 10001" +182226,Apple Airpods Headphones,1,150,03/27/19 20:24,"23 11th St, San Francisco, CA 94016" +182227,Macbook Pro Laptop,1,1700,03/27/19 21:19,"88 14th St, New York City, NY 10001" +182228,27in 4K Gaming Monitor,1,389.99,03/27/19 16:09,"241 River St, Atlanta, GA 30301" +182229,Bose SoundSport Headphones,1,99.99,03/18/19 11:24,"609 Lincoln St, Seattle, WA 98101" +182230,iPhone,1,700,03/10/19 18:45,"410 4th St, San Francisco, CA 94016" +182230,Lightning Charging Cable,1,14.95,03/10/19 18:45,"410 4th St, San Francisco, CA 94016" +182231,Flatscreen TV,1,300,03/19/19 13:59,"773 Spruce St, Dallas, TX 75001" +182232,AAA Batteries (4-pack),1,2.99,03/05/19 19:53,"284 Maple St, San Francisco, CA 94016" +182233,Apple Airpods Headphones,1,150,03/03/19 09:49,"467 Jackson St, Los Angeles, CA 90001" +182234,Lightning Charging Cable,1,14.95,03/02/19 12:40,"731 Walnut St, Atlanta, GA 30301" +182235,AA Batteries (4-pack),2,3.84,03/12/19 16:27,"158 Johnson St, Seattle, WA 98101" +182236,Google Phone,1,600,03/05/19 11:26,"696 1st St, Boston, MA 02215" +182237,USB-C Charging Cable,1,11.95,03/14/19 10:19,"630 Jackson St, Dallas, TX 75001" +182238,20in Monitor,1,109.99,03/01/19 16:32,"422 Washington St, Dallas, TX 75001" +,,,,, +182239,AAA Batteries (4-pack),2,2.99,03/21/19 11:07,"518 Dogwood St, New York City, NY 10001" +182240,iPhone,1,700,03/15/19 09:31,"859 2nd St, San Francisco, CA 94016" +182240,Apple Airpods Headphones,1,150,03/15/19 09:31,"859 2nd St, San Francisco, CA 94016" +182241,34in Ultrawide Monitor,1,379.99,03/29/19 13:59,"217 Lincoln St, Los Angeles, CA 90001" +182242,AAA Batteries (4-pack),1,2.99,03/29/19 09:47,"947 Spruce St, Los Angeles, CA 90001" +182243,AA Batteries (4-pack),1,3.84,03/30/19 09:06,"886 River St, San Francisco, CA 94016" +182244,AAA Batteries (4-pack),1,2.99,03/08/19 22:32,"318 Meadow St, Los Angeles, CA 90001" +182245,Wired Headphones,1,11.99,03/02/19 18:28,"115 Chestnut St, San Francisco, CA 94016" +182246,Apple Airpods Headphones,1,150,03/02/19 20:45,"302 Church St, Seattle, WA 98101" +182247,AAA Batteries (4-pack),1,2.99,03/18/19 00:07,"732 Elm St, New York City, NY 10001" +182248,iPhone,1,700,03/06/19 22:54,"356 13th St, Seattle, WA 98101" +182249,Wired Headphones,1,11.99,03/24/19 20:50,"256 Jackson St, San Francisco, CA 94016" +182250,Macbook Pro Laptop,1,1700,03/09/19 14:53,"929 Elm St, Dallas, TX 75001" +182251,Flatscreen TV,1,300,03/01/19 06:11,"220 Cherry St, Los Angeles, CA 90001" +182252,Lightning Charging Cable,1,14.95,03/07/19 08:54,"554 Cherry St, San Francisco, CA 94016" +182253,27in FHD Monitor,1,149.99,03/22/19 23:53,"843 Dogwood St, San Francisco, CA 94016" +182254,AA Batteries (4-pack),1,3.84,03/07/19 19:42,"776 Main St, San Francisco, CA 94016" +182255,AAA Batteries (4-pack),1,2.99,03/04/19 10:43,"786 Madison St, New York City, NY 10001" +182256,AA Batteries (4-pack),1,3.84,03/26/19 16:55,"365 Spruce St, Boston, MA 02215" +182257,AA Batteries (4-pack),1,3.84,03/14/19 15:09,"644 4th St, Atlanta, GA 30301" +182258,34in Ultrawide Monitor,1,379.99,03/27/19 18:08,"350 11th St, Seattle, WA 98101" +182259,AAA Batteries (4-pack),1,2.99,03/12/19 19:16,"608 12th St, San Francisco, CA 94016" +182260,AA Batteries (4-pack),1,3.84,03/26/19 13:05,"892 North St, Austin, TX 73301" +182261,AA Batteries (4-pack),1,3.84,03/07/19 17:12,"757 Church St, Boston, MA 02215" +182262,AA Batteries (4-pack),1,3.84,03/27/19 00:03,"78 Highland St, Los Angeles, CA 90001" +182263,Lightning Charging Cable,1,14.95,03/10/19 14:35,"289 Jackson St, Dallas, TX 75001" +182264,34in Ultrawide Monitor,1,379.99,03/29/19 21:27,"578 Madison St, New York City, NY 10001" +182265,AA Batteries (4-pack),4,3.84,03/07/19 11:37,"666 4th St, Portland, ME 04101" +182266,AAA Batteries (4-pack),1,2.99,03/21/19 16:09,"42 Spruce St, Los Angeles, CA 90001" +182267,Bose SoundSport Headphones,1,99.99,03/10/19 14:25,"307 6th St, San Francisco, CA 94016" +182268,iPhone,1,700,03/05/19 21:33,"977 12th St, San Francisco, CA 94016" +182268,Wired Headphones,1,11.99,03/05/19 21:33,"977 12th St, San Francisco, CA 94016" +182269,AA Batteries (4-pack),1,3.84,03/01/19 21:08,"728 Chestnut St, Los Angeles, CA 90001" +182270,AAA Batteries (4-pack),1,2.99,03/14/19 18:58,"235 Madison St, Los Angeles, CA 90001" +182271,Vareebadd Phone,1,400,03/05/19 17:38,"531 Lakeview St, San Francisco, CA 94016" +182272,AAA Batteries (4-pack),1,2.99,03/13/19 16:23,"418 Chestnut St, Seattle, WA 98101" +182273,Wired Headphones,2,11.99,03/03/19 17:29,"273 Hill St, New York City, NY 10001" +182274,ThinkPad Laptop,1,999.99,03/24/19 00:22,"579 Lakeview St, Austin, TX 73301" +182275,Flatscreen TV,1,300,03/21/19 10:57,"98 11th St, Boston, MA 02215" +182276,27in FHD Monitor,1,149.99,03/03/19 08:59,"773 Madison St, San Francisco, CA 94016" +182277,Bose SoundSport Headphones,1,99.99,03/05/19 21:17,"911 West St, Atlanta, GA 30301" +182278,ThinkPad Laptop,1,999.99,03/07/19 11:48,"611 Center St, Los Angeles, CA 90001" +182279,AAA Batteries (4-pack),1,2.99,03/17/19 17:03,"654 River St, San Francisco, CA 94016" +182280,AAA Batteries (4-pack),1,2.99,03/30/19 23:36,"381 6th St, Seattle, WA 98101" +182281,AAA Batteries (4-pack),1,2.99,03/06/19 22:21,"515 10th St, Portland, OR 97035" +182282,USB-C Charging Cable,2,11.95,03/29/19 23:47,"943 River St, New York City, NY 10001" +182283,AA Batteries (4-pack),1,3.84,03/23/19 16:40,"215 Lakeview St, San Francisco, CA 94016" +182284,Apple Airpods Headphones,1,150,03/06/19 12:51,"869 Hill St, New York City, NY 10001" +182284,Flatscreen TV,1,300,03/06/19 12:51,"869 Hill St, New York City, NY 10001" +182285,AAA Batteries (4-pack),3,2.99,03/01/19 22:16,"795 14th St, Boston, MA 02215" +182286,Lightning Charging Cable,1,14.95,03/29/19 23:13,"270 Jackson St, Dallas, TX 75001" +182287,iPhone,1,700,03/20/19 13:40,"854 Jackson St, New York City, NY 10001" +182288,Apple Airpods Headphones,1,150,03/04/19 18:49,"479 Church St, San Francisco, CA 94016" +182289,Lightning Charging Cable,1,14.95,03/10/19 18:41,"801 Elm St, Dallas, TX 75001" +182290,Lightning Charging Cable,1,14.95,03/24/19 10:15,"288 Adams St, Dallas, TX 75001" +182291,Bose SoundSport Headphones,1,99.99,03/18/19 16:29,"104 Jackson St, Seattle, WA 98101" +182292,Lightning Charging Cable,1,14.95,03/08/19 13:30,"38 7th St, New York City, NY 10001" +182293,USB-C Charging Cable,1,11.95,03/13/19 07:34,"237 2nd St, San Francisco, CA 94016" +182294,Apple Airpods Headphones,1,150,03/15/19 01:28,"281 Wilson St, San Francisco, CA 94016" +182295,27in FHD Monitor,1,149.99,03/06/19 11:41,"803 Sunset St, Seattle, WA 98101" +182296,USB-C Charging Cable,1,11.95,03/31/19 11:12,"156 Church St, Dallas, TX 75001" +182297,Flatscreen TV,1,300,03/01/19 13:00,"502 14th St, Los Angeles, CA 90001" +182298,Apple Airpods Headphones,1,150,03/07/19 10:05,"751 Forest St, Los Angeles, CA 90001" +182299,AA Batteries (4-pack),1,3.84,03/25/19 16:05,"914 Highland St, Austin, TX 73301" +182300,27in FHD Monitor,1,149.99,03/21/19 21:17,"682 5th St, Boston, MA 02215" +182300,Lightning Charging Cable,1,14.95,03/21/19 21:17,"682 5th St, Boston, MA 02215" +182301,ThinkPad Laptop,1,999.99,03/18/19 23:33,"161 7th St, Atlanta, GA 30301" +182302,Wired Headphones,1,11.99,03/10/19 15:01,"356 Center St, Boston, MA 02215" +182303,AA Batteries (4-pack),1,3.84,03/11/19 20:13,"949 Center St, Los Angeles, CA 90001" +182304,USB-C Charging Cable,1,11.95,03/23/19 18:12,"459 Center St, New York City, NY 10001" +182305,AA Batteries (4-pack),1,3.84,03/29/19 23:57,"344 Washington St, Los Angeles, CA 90001" +182306,20in Monitor,1,109.99,03/02/19 18:55,"996 Elm St, Boston, MA 02215" +182307,Macbook Pro Laptop,1,1700,03/26/19 13:33,"544 8th St, San Francisco, CA 94016" +182308,AA Batteries (4-pack),1,3.84,03/16/19 21:25,"193 Park St, Seattle, WA 98101" +182309,27in FHD Monitor,1,149.99,03/08/19 23:45,"912 River St, San Francisco, CA 94016" +182310,Wired Headphones,1,11.99,03/12/19 22:00,"684 Main St, Portland, OR 97035" +182311,20in Monitor,1,109.99,03/14/19 21:40,"493 Dogwood St, Los Angeles, CA 90001" +182312,Wired Headphones,1,11.99,03/31/19 03:43,"869 Park St, New York City, NY 10001" +182313,USB-C Charging Cable,1,11.95,03/18/19 15:15,"257 Cedar St, New York City, NY 10001" +182314,34in Ultrawide Monitor,1,379.99,03/06/19 17:18,"919 Pine St, San Francisco, CA 94016" +182315,AAA Batteries (4-pack),2,2.99,03/09/19 19:56,"543 Highland St, New York City, NY 10001" +182316,Wired Headphones,1,11.99,03/16/19 19:33,"641 Willow St, Portland, OR 97035" +182317,Wired Headphones,1,11.99,03/19/19 22:43,"753 Lake St, San Francisco, CA 94016" +182317,Google Phone,1,600,03/19/19 22:43,"753 Lake St, San Francisco, CA 94016" +182318,Macbook Pro Laptop,1,1700,03/11/19 14:13,"966 11th St, San Francisco, CA 94016" +182319,20in Monitor,1,109.99,03/08/19 13:54,"475 Wilson St, Austin, TX 73301" +182320,ThinkPad Laptop,1,999.99,03/05/19 09:29,"348 6th St, New York City, NY 10001" +182321,Macbook Pro Laptop,1,1700,03/09/19 11:06,"104 Spruce St, Portland, OR 97035" +182322,AA Batteries (4-pack),1,3.84,03/27/19 22:50,"907 Cedar St, San Francisco, CA 94016" +182323,Bose SoundSport Headphones,1,99.99,03/14/19 09:16,"990 Cherry St, Atlanta, GA 30301" +182324,AAA Batteries (4-pack),2,2.99,03/03/19 04:39,"48 5th St, New York City, NY 10001" +182325,20in Monitor,1,109.99,03/31/19 08:11,"570 Main St, San Francisco, CA 94016" +182326,AAA Batteries (4-pack),2,2.99,03/17/19 20:01,"923 Meadow St, Los Angeles, CA 90001" +182327,USB-C Charging Cable,1,11.95,03/10/19 11:30,"92 9th St, San Francisco, CA 94016" +182328,AAA Batteries (4-pack),2,2.99,03/24/19 16:43,"783 Center St, Los Angeles, CA 90001" +182329,USB-C Charging Cable,1,11.95,03/26/19 09:14,"890 West St, Los Angeles, CA 90001" +182330,Google Phone,1,600,03/11/19 11:17,"261 Hickory St, Portland, OR 97035" +182330,USB-C Charging Cable,1,11.95,03/11/19 11:17,"261 Hickory St, Portland, OR 97035" +182331,Lightning Charging Cable,1,14.95,03/15/19 21:27,"836 12th St, Boston, MA 02215" +182332,Lightning Charging Cable,1,14.95,03/26/19 10:28,"566 8th St, San Francisco, CA 94016" +182333,Google Phone,1,600,03/16/19 09:55,"189 South St, New York City, NY 10001" +182334,USB-C Charging Cable,1,11.95,03/27/19 19:06,"646 Forest St, San Francisco, CA 94016" +182335,Wired Headphones,1,11.99,03/28/19 11:42,"530 Sunset St, Austin, TX 73301" +182336,AA Batteries (4-pack),1,3.84,03/04/19 14:14,"647 Madison St, New York City, NY 10001" +182337,Lightning Charging Cable,1,14.95,03/02/19 09:04,"749 Highland St, Los Angeles, CA 90001" +182338,USB-C Charging Cable,1,11.95,03/26/19 07:39,"17 14th St, San Francisco, CA 94016" +182339,27in FHD Monitor,1,149.99,03/20/19 18:07,"402 13th St, San Francisco, CA 94016" +182340,AA Batteries (4-pack),1,3.84,03/19/19 21:03,"418 Cedar St, Boston, MA 02215" +182341,AA Batteries (4-pack),1,3.84,03/18/19 10:48,"983 4th St, Austin, TX 73301" +182342,Bose SoundSport Headphones,1,99.99,03/01/19 11:47,"849 Dogwood St, Seattle, WA 98101" +182343,AAA Batteries (4-pack),1,2.99,03/28/19 12:26,"347 Cherry St, Boston, MA 02215" +182344,AAA Batteries (4-pack),2,2.99,03/31/19 16:52,"810 Willow St, San Francisco, CA 94016" +182345,AAA Batteries (4-pack),3,2.99,03/05/19 08:37,"211 South St, Los Angeles, CA 90001" +182346,Lightning Charging Cable,1,14.95,03/07/19 21:15,"339 2nd St, Los Angeles, CA 90001" +182347,AA Batteries (4-pack),1,3.84,03/21/19 12:44,"101 2nd St, Portland, OR 97035" +182348,Flatscreen TV,1,300,03/24/19 18:55,"835 Wilson St, New York City, NY 10001" +182349,27in FHD Monitor,1,149.99,03/13/19 20:01,"844 11th St, Portland, OR 97035" +182350,AA Batteries (4-pack),1,3.84,03/05/19 08:48,"929 Meadow St, Portland, OR 97035" +182351,AAA Batteries (4-pack),1,2.99,03/11/19 12:06,"636 13th St, Boston, MA 02215" +182351,USB-C Charging Cable,1,11.95,03/11/19 12:06,"636 13th St, Boston, MA 02215" +182352,20in Monitor,1,109.99,03/05/19 12:50,"330 Pine St, Portland, OR 97035" +182353,Macbook Pro Laptop,1,1700,03/30/19 23:01,"289 South St, Atlanta, GA 30301" +182354,Bose SoundSport Headphones,1,99.99,03/16/19 19:17,"235 Center St, Boston, MA 02215" +182355,USB-C Charging Cable,1,11.95,03/20/19 01:07,"905 Jefferson St, Boston, MA 02215" +182356,AAA Batteries (4-pack),1,2.99,03/26/19 12:05,"23 Maple St, New York City, NY 10001" +182357,34in Ultrawide Monitor,1,379.99,03/08/19 22:08,"991 Spruce St, New York City, NY 10001" +182358,Macbook Pro Laptop,1,1700,03/05/19 12:04,"724 10th St, Los Angeles, CA 90001" +182359,Bose SoundSport Headphones,1,99.99,03/05/19 10:17,"281 5th St, New York City, NY 10001" +182360,USB-C Charging Cable,1,11.95,03/22/19 10:46,"913 Maple St, San Francisco, CA 94016" +182361,AAA Batteries (4-pack),1,2.99,03/12/19 10:30,"253 Cherry St, Dallas, TX 75001" +182362,Lightning Charging Cable,1,14.95,03/15/19 10:06,"51 5th St, Boston, MA 02215" +182363,Wired Headphones,1,11.99,03/20/19 23:25,"888 Washington St, Los Angeles, CA 90001" +182364,Lightning Charging Cable,1,14.95,03/19/19 18:29,"369 Hickory St, Dallas, TX 75001" +182365,AAA Batteries (4-pack),2,2.99,03/13/19 19:52,"394 Chestnut St, Seattle, WA 98101" +182366,27in FHD Monitor,1,149.99,03/14/19 20:39,"129 4th St, San Francisco, CA 94016" +182367,AAA Batteries (4-pack),2,2.99,03/03/19 18:09,"419 Madison St, Dallas, TX 75001" +182368,Apple Airpods Headphones,1,150,03/18/19 22:46,"983 14th St, Boston, MA 02215" +182369,iPhone,1,700,03/20/19 12:20,"367 Johnson St, Portland, ME 04101" +182370,AA Batteries (4-pack),1,3.84,03/06/19 09:39,"830 Highland St, Atlanta, GA 30301" +182371,27in FHD Monitor,1,149.99,03/04/19 07:14,"419 Jefferson St, Los Angeles, CA 90001" +182372,Wired Headphones,1,11.99,03/15/19 19:09,"461 Walnut St, San Francisco, CA 94016" +182373,Bose SoundSport Headphones,1,99.99,03/01/19 22:29,"578 14th St, Austin, TX 73301" +182374,Vareebadd Phone,1,400,03/02/19 21:13,"276 Forest St, San Francisco, CA 94016" +182375,AAA Batteries (4-pack),1,2.99,03/17/19 19:05,"296 8th St, New York City, NY 10001" +182376,AA Batteries (4-pack),4,3.84,03/19/19 19:25,"38 14th St, Los Angeles, CA 90001" +182377,USB-C Charging Cable,1,11.95,03/23/19 11:12,"330 Sunset St, San Francisco, CA 94016" +182378,20in Monitor,1,109.99,03/27/19 18:59,"436 Church St, New York City, NY 10001" +182379,Lightning Charging Cable,1,14.95,03/09/19 17:37,"629 Ridge St, Los Angeles, CA 90001" +182380,Lightning Charging Cable,1,14.95,03/21/19 20:01,"732 12th St, Dallas, TX 75001" +182381,Google Phone,1,600,03/23/19 09:07,"497 Adams St, Portland, ME 04101" +182382,USB-C Charging Cable,1,11.95,03/26/19 19:27,"48 Forest St, Boston, MA 02215" +182383,USB-C Charging Cable,3,11.95,03/07/19 21:53,"929 Wilson St, Los Angeles, CA 90001" +182384,Wired Headphones,1,11.99,03/04/19 08:57,"168 Jackson St, Seattle, WA 98101" +182385,ThinkPad Laptop,1,999.99,03/10/19 19:43,"928 Willow St, San Francisco, CA 94016" +182386,27in 4K Gaming Monitor,1,389.99,03/20/19 16:20,"499 Lake St, Dallas, TX 75001" +182387,AA Batteries (4-pack),1,3.84,03/02/19 14:56,"587 13th St, Los Angeles, CA 90001" +182388,USB-C Charging Cable,1,11.95,03/11/19 10:36,"818 Willow St, Portland, OR 97035" +182389,Lightning Charging Cable,1,14.95,03/09/19 15:23,"689 Ridge St, Los Angeles, CA 90001" +182390,Wired Headphones,1,11.99,03/10/19 21:06,"279 Ridge St, Boston, MA 02215" +182391,Flatscreen TV,1,300,03/01/19 20:55,"93 Meadow St, Seattle, WA 98101" +182392,AA Batteries (4-pack),1,3.84,03/06/19 21:46,"325 Hill St, Portland, OR 97035" +182393,AA Batteries (4-pack),2,3.84,03/09/19 10:46,"744 North St, Los Angeles, CA 90001" +182394,USB-C Charging Cable,1,11.95,03/11/19 15:30,"590 Forest St, Austin, TX 73301" +182395,AAA Batteries (4-pack),1,2.99,03/15/19 12:49,"336 9th St, New York City, NY 10001" +182396,USB-C Charging Cable,1,11.95,03/06/19 07:58,"372 14th St, Atlanta, GA 30301" +182397,Wired Headphones,1,11.99,03/09/19 21:49,"890 Center St, Portland, OR 97035" +182398,Apple Airpods Headphones,1,150,03/10/19 06:42,"408 Washington St, Los Angeles, CA 90001" +182399,Wired Headphones,1,11.99,03/08/19 09:51,"766 Lake St, Los Angeles, CA 90001" +182400,AAA Batteries (4-pack),1,2.99,03/11/19 12:17,"391 South St, San Francisco, CA 94016" +182400,AAA Batteries (4-pack),1,2.99,03/11/19 12:17,"391 South St, San Francisco, CA 94016" +182401,Google Phone,1,600,03/25/19 18:25,"909 Ridge St, Los Angeles, CA 90001" +182401,USB-C Charging Cable,2,11.95,03/25/19 18:25,"909 Ridge St, Los Angeles, CA 90001" +182401,Wired Headphones,2,11.99,03/25/19 18:25,"909 Ridge St, Los Angeles, CA 90001" +182402,USB-C Charging Cable,1,11.95,03/27/19 14:51,"638 Ridge St, Los Angeles, CA 90001" +182403,USB-C Charging Cable,1,11.95,03/12/19 14:42,"771 Lake St, Portland, OR 97035" +182404,Google Phone,1,600,03/24/19 10:36,"211 1st St, San Francisco, CA 94016" +182404,USB-C Charging Cable,1,11.95,03/24/19 10:36,"211 1st St, San Francisco, CA 94016" +182405,AAA Batteries (4-pack),1,2.99,03/06/19 16:24,"271 Church St, Boston, MA 02215" +182406,20in Monitor,1,109.99,03/13/19 10:53,"946 Dogwood St, Los Angeles, CA 90001" +182407,Lightning Charging Cable,1,14.95,03/11/19 01:37,"331 Willow St, Dallas, TX 75001" +182408,AA Batteries (4-pack),1,3.84,03/10/19 19:55,"94 6th St, Los Angeles, CA 90001" +182409,USB-C Charging Cable,2,11.95,03/05/19 21:39,"560 2nd St, New York City, NY 10001" +182410,iPhone,1,700,03/18/19 20:53,"286 Meadow St, San Francisco, CA 94016" +182410,Lightning Charging Cable,1,14.95,03/18/19 20:53,"286 Meadow St, San Francisco, CA 94016" +182411,Macbook Pro Laptop,1,1700,03/18/19 12:57,"237 Madison St, San Francisco, CA 94016" +182412,AAA Batteries (4-pack),1,2.99,03/21/19 21:10,"152 11th St, Dallas, TX 75001" +182413,20in Monitor,1,109.99,03/12/19 21:26,"990 Highland St, Boston, MA 02215" +182414,Wired Headphones,1,11.99,03/12/19 07:41,"841 Main St, Seattle, WA 98101" +182415,ThinkPad Laptop,1,999.99,03/27/19 15:46,"333 Forest St, Atlanta, GA 30301" +182416,Lightning Charging Cable,1,14.95,03/02/19 15:52,"417 2nd St, Los Angeles, CA 90001" +182417,Apple Airpods Headphones,1,150,03/08/19 08:57,"56 6th St, San Francisco, CA 94016" +182418,AA Batteries (4-pack),2,3.84,03/13/19 22:14,"46 6th St, San Francisco, CA 94016" +182419,Macbook Pro Laptop,1,1700,03/07/19 09:27,"829 Main St, Seattle, WA 98101" +182420,Flatscreen TV,1,300,03/09/19 10:27,"222 River St, Portland, OR 97035" +182421,Apple Airpods Headphones,1,150,03/29/19 14:07,"221 Lakeview St, Dallas, TX 75001" +182422,Bose SoundSport Headphones,1,99.99,03/02/19 12:28,"183 9th St, New York City, NY 10001" +182423,AA Batteries (4-pack),3,3.84,03/05/19 14:06,"610 Willow St, Atlanta, GA 30301" +182424,Google Phone,1,600,03/29/19 10:22,"82 Johnson St, Seattle, WA 98101" +182425,iPhone,1,700,03/16/19 22:18,"333 Lincoln St, Boston, MA 02215" +182425,Lightning Charging Cable,1,14.95,03/16/19 22:18,"333 Lincoln St, Boston, MA 02215" +182426,Google Phone,1,600,03/14/19 09:47,"63 Park St, Dallas, TX 75001" +182427,Macbook Pro Laptop,1,1700,03/04/19 11:34,"931 Adams St, Los Angeles, CA 90001" +182428,Wired Headphones,1,11.99,04/01/19 00:11,"350 Pine St, New York City, NY 10001" +182429,Apple Airpods Headphones,1,150,03/22/19 22:38,"768 Center St, San Francisco, CA 94016" +182430,Apple Airpods Headphones,1,150,03/23/19 16:55,"894 Jackson St, Boston, MA 02215" +182431,AA Batteries (4-pack),1,3.84,03/31/19 20:27,"429 Highland St, Boston, MA 02215" +182432,Bose SoundSport Headphones,1,99.99,03/23/19 08:48,"677 Sunset St, New York City, NY 10001" +182433,Flatscreen TV,1,300,03/08/19 09:38,"355 Spruce St, New York City, NY 10001" +182434,27in FHD Monitor,1,149.99,03/22/19 09:15,"20 Forest St, Boston, MA 02215" +182435,Bose SoundSport Headphones,1,99.99,03/20/19 12:22,"304 Wilson St, Portland, OR 97035" +182436,Wired Headphones,1,11.99,03/05/19 21:52,"54 1st St, Los Angeles, CA 90001" +182437,AAA Batteries (4-pack),2,2.99,03/02/19 19:12,"752 Johnson St, San Francisco, CA 94016" +182438,Apple Airpods Headphones,1,150,03/23/19 22:46,"553 Walnut St, Dallas, TX 75001" +182439,AAA Batteries (4-pack),1,2.99,03/29/19 09:18,"688 5th St, San Francisco, CA 94016" +182440,USB-C Charging Cable,1,11.95,03/12/19 13:22,"216 Forest St, San Francisco, CA 94016" +182441,Apple Airpods Headphones,1,150,03/12/19 21:13,"256 Elm St, San Francisco, CA 94016" +182442,AAA Batteries (4-pack),1,2.99,03/26/19 19:44,"919 13th St, San Francisco, CA 94016" +182443,AA Batteries (4-pack),1,3.84,03/13/19 11:42,"581 6th St, Seattle, WA 98101" +182444,AA Batteries (4-pack),2,3.84,03/17/19 20:23,"846 Meadow St, San Francisco, CA 94016" +182445,Wired Headphones,1,11.99,03/13/19 15:13,"607 Center St, Los Angeles, CA 90001" +182446,LG Washing Machine,1,600.0,03/27/19 00:59,"51 7th St, Portland, OR 97035" +182447,27in FHD Monitor,1,149.99,03/03/19 19:07,"760 Elm St, Boston, MA 02215" +182448,Macbook Pro Laptop,1,1700,03/02/19 11:35,"542 North St, Atlanta, GA 30301" +182449,iPhone,1,700,03/01/19 10:16,"316 Jefferson St, Los Angeles, CA 90001" +182450,AA Batteries (4-pack),2,3.84,03/17/19 17:49,"800 Wilson St, Dallas, TX 75001" +182451,Lightning Charging Cable,1,14.95,03/12/19 14:16,"207 4th St, Boston, MA 02215" +182452,Bose SoundSport Headphones,1,99.99,03/15/19 09:51,"772 11th St, Los Angeles, CA 90001" +182453,Vareebadd Phone,1,400,03/30/19 21:37,"518 Cedar St, Seattle, WA 98101" +182454,AA Batteries (4-pack),1,3.84,03/07/19 21:42,"569 5th St, Los Angeles, CA 90001" +182455,20in Monitor,1,109.99,03/24/19 02:45,"493 13th St, New York City, NY 10001" +,,,,, +182456,27in FHD Monitor,1,149.99,03/11/19 23:52,"335 Cherry St, San Francisco, CA 94016" +182457,Lightning Charging Cable,1,14.95,03/27/19 19:00,"325 Elm St, New York City, NY 10001" +182458,AAA Batteries (4-pack),2,2.99,03/30/19 19:50,"673 Spruce St, Los Angeles, CA 90001" +182459,Apple Airpods Headphones,1,150,03/22/19 10:51,"51 Ridge St, New York City, NY 10001" +182460,27in 4K Gaming Monitor,1,389.99,03/01/19 13:38,"870 Sunset St, Los Angeles, CA 90001" +182461,Apple Airpods Headphones,1,150,03/23/19 17:57,"329 Center St, New York City, NY 10001" +182461,Lightning Charging Cable,1,14.95,03/23/19 17:57,"329 Center St, New York City, NY 10001" +182462,AA Batteries (4-pack),1,3.84,03/06/19 10:30,"982 Main St, Seattle, WA 98101" +182463,Apple Airpods Headphones,1,150,03/26/19 02:06,"341 Meadow St, Seattle, WA 98101" +182464,27in 4K Gaming Monitor,1,389.99,03/23/19 15:57,"816 Spruce St, Seattle, WA 98101" +182465,AA Batteries (4-pack),1,3.84,03/11/19 15:23,"870 Cedar St, Austin, TX 73301" +182466,USB-C Charging Cable,2,11.95,03/05/19 15:24,"193 North St, Boston, MA 02215" +182467,USB-C Charging Cable,1,11.95,03/31/19 17:14,"511 Madison St, San Francisco, CA 94016" +182468,AAA Batteries (4-pack),1,2.99,03/25/19 13:32,"373 Lake St, San Francisco, CA 94016" +182469,USB-C Charging Cable,1,11.95,03/06/19 08:35,"95 Washington St, San Francisco, CA 94016" +182470,27in FHD Monitor,1,149.99,03/15/19 05:18,"213 Maple St, Portland, OR 97035" +182471,AAA Batteries (4-pack),3,2.99,03/09/19 23:20,"713 West St, New York City, NY 10001" +182472,Wired Headphones,1,11.99,03/11/19 00:07,"900 Highland St, San Francisco, CA 94016" +182473,ThinkPad Laptop,1,999.99,03/07/19 19:08,"418 Chestnut St, Seattle, WA 98101" +182474,AAA Batteries (4-pack),2,2.99,03/13/19 11:00,"372 North St, Boston, MA 02215" +182475,Wired Headphones,1,11.99,03/03/19 18:23,"591 4th St, Boston, MA 02215" +182476,iPhone,1,700,03/24/19 17:30,"803 12th St, New York City, NY 10001" +182476,Apple Airpods Headphones,1,150,03/24/19 17:30,"803 12th St, New York City, NY 10001" +182477,27in 4K Gaming Monitor,1,389.99,03/14/19 09:51,"947 Wilson St, Los Angeles, CA 90001" +182478,AA Batteries (4-pack),1,3.84,03/23/19 11:13,"105 Washington St, Los Angeles, CA 90001" +182479,Wired Headphones,1,11.99,03/27/19 17:17,"655 Jackson St, San Francisco, CA 94016" +182479,Wired Headphones,2,11.99,03/27/19 17:17,"655 Jackson St, San Francisco, CA 94016" +182480,Bose SoundSport Headphones,1,99.99,03/12/19 22:39,"205 Jefferson St, Los Angeles, CA 90001" +182481,Apple Airpods Headphones,1,150,03/18/19 11:02,"360 Meadow St, San Francisco, CA 94016" +182482,iPhone,1,700,03/31/19 22:38,"100 11th St, San Francisco, CA 94016" +182483,AA Batteries (4-pack),4,3.84,03/18/19 17:45,"389 5th St, Atlanta, GA 30301" +182484,AA Batteries (4-pack),1,3.84,03/15/19 08:06,"780 Park St, Los Angeles, CA 90001" +182485,27in FHD Monitor,1,149.99,03/05/19 13:27,"820 Jefferson St, Dallas, TX 75001" +182486,Flatscreen TV,1,300,03/02/19 12:19,"121 Jackson St, Dallas, TX 75001" +182487,Wired Headphones,2,11.99,03/26/19 17:07,"224 Pine St, Boston, MA 02215" +182488,Apple Airpods Headphones,1,150,03/19/19 22:03,"203 12th St, San Francisco, CA 94016" +182489,Macbook Pro Laptop,1,1700,03/01/19 19:40,"413 Center St, Seattle, WA 98101" +182490,AAA Batteries (4-pack),2,2.99,03/19/19 10:03,"577 Center St, Dallas, TX 75001" +182491,ThinkPad Laptop,1,999.99,03/11/19 22:13,"198 2nd St, Portland, OR 97035" +182492,USB-C Charging Cable,1,11.95,03/10/19 20:11,"682 14th St, San Francisco, CA 94016" +182493,27in 4K Gaming Monitor,1,389.99,03/03/19 16:29,"585 South St, Los Angeles, CA 90001" +182494,USB-C Charging Cable,1,11.95,03/13/19 21:00,"875 Willow St, San Francisco, CA 94016" +182495,AAA Batteries (4-pack),3,2.99,03/19/19 08:51,"807 8th St, Boston, MA 02215" +182496,ThinkPad Laptop,1,999.99,03/22/19 22:02,"788 2nd St, Los Angeles, CA 90001" +182497,USB-C Charging Cable,1,11.95,03/28/19 18:52,"20 Park St, Atlanta, GA 30301" +182498,34in Ultrawide Monitor,1,379.99,03/13/19 17:37,"359 Washington St, Dallas, TX 75001" +182499,USB-C Charging Cable,1,11.95,03/02/19 09:53,"596 1st St, San Francisco, CA 94016" +182500,AAA Batteries (4-pack),1,2.99,03/19/19 08:01,"493 Spruce St, Boston, MA 02215" +182501,AA Batteries (4-pack),1,3.84,03/24/19 09:14,"623 Adams St, Boston, MA 02215" +182502,USB-C Charging Cable,1,11.95,03/19/19 13:30,"138 Sunset St, Boston, MA 02215" +182503,Apple Airpods Headphones,1,150,03/17/19 07:52,"63 14th St, San Francisco, CA 94016" +182504,Flatscreen TV,1,300,03/14/19 14:04,"909 Washington St, Atlanta, GA 30301" +182505,AA Batteries (4-pack),1,3.84,03/13/19 20:15,"247 Elm St, Los Angeles, CA 90001" +182506,AA Batteries (4-pack),1,3.84,03/30/19 12:47,"817 Lake St, Los Angeles, CA 90001" +182507,USB-C Charging Cable,1,11.95,03/16/19 21:53,"373 Willow St, Dallas, TX 75001" +182508,USB-C Charging Cable,1,11.95,03/18/19 10:11,"242 Cedar St, San Francisco, CA 94016" +182509,Bose SoundSport Headphones,1,99.99,03/22/19 14:18,"555 Main St, San Francisco, CA 94016" +182510,Apple Airpods Headphones,1,150,03/03/19 08:36,"584 Spruce St, Los Angeles, CA 90001" +182511,USB-C Charging Cable,1,11.95,03/21/19 18:38,"105 Madison St, Seattle, WA 98101" +182512,Wired Headphones,1,11.99,03/22/19 15:23,"857 Dogwood St, Dallas, TX 75001" +182513,AAA Batteries (4-pack),1,2.99,03/25/19 20:28,"205 River St, Portland, OR 97035" +182514,AA Batteries (4-pack),1,3.84,03/09/19 10:31,"182 Hickory St, Atlanta, GA 30301" +182515,Lightning Charging Cable,1,14.95,03/21/19 10:42,"299 7th St, Los Angeles, CA 90001" +182516,AA Batteries (4-pack),3,3.84,03/28/19 21:11,"274 Walnut St, Los Angeles, CA 90001" +182517,AAA Batteries (4-pack),3,2.99,03/06/19 21:07,"379 Cedar St, Los Angeles, CA 90001" +182518,34in Ultrawide Monitor,1,379.99,03/28/19 13:16,"746 Lincoln St, San Francisco, CA 94016" +182519,Apple Airpods Headphones,1,150,03/03/19 23:51,"42 West St, San Francisco, CA 94016" +182520,Bose SoundSport Headphones,1,99.99,03/27/19 09:44,"585 7th St, Los Angeles, CA 90001" +182521,Apple Airpods Headphones,1,150,03/09/19 07:42,"646 Church St, Los Angeles, CA 90001" +182522,Bose SoundSport Headphones,1,99.99,03/03/19 11:37,"370 14th St, Los Angeles, CA 90001" +182523,AA Batteries (4-pack),1,3.84,03/20/19 15:26,"328 14th St, Portland, OR 97035" +182524,Lightning Charging Cable,1,14.95,03/03/19 07:40,"734 Sunset St, New York City, NY 10001" +182525,AAA Batteries (4-pack),1,2.99,03/25/19 20:16,"919 South St, Los Angeles, CA 90001" +182526,USB-C Charging Cable,1,11.95,03/22/19 22:37,"604 Hickory St, Seattle, WA 98101" +182527,Bose SoundSport Headphones,1,99.99,03/18/19 21:03,"858 Center St, Los Angeles, CA 90001" +182528,AAA Batteries (4-pack),1,2.99,03/02/19 07:48,"104 6th St, Boston, MA 02215" +182529,27in FHD Monitor,2,149.99,03/16/19 00:19,"323 9th St, Austin, TX 73301" +182530,AA Batteries (4-pack),2,3.84,03/13/19 18:18,"901 Sunset St, Los Angeles, CA 90001" +182531,Wired Headphones,1,11.99,03/11/19 18:38,"74 2nd St, San Francisco, CA 94016" +182532,Lightning Charging Cable,1,14.95,03/22/19 12:20,"106 North St, Portland, OR 97035" +182533,Apple Airpods Headphones,1,150,03/30/19 13:09,"654 Hickory St, Portland, OR 97035" +182534,27in FHD Monitor,1,149.99,03/09/19 18:21,"463 Dogwood St, Los Angeles, CA 90001" +182535,Lightning Charging Cable,1,14.95,03/21/19 19:49,"946 2nd St, New York City, NY 10001" +182536,AAA Batteries (4-pack),2,2.99,03/05/19 15:33,"784 Lincoln St, Dallas, TX 75001" +182537,AA Batteries (4-pack),2,3.84,03/15/19 13:46,"478 Jefferson St, Dallas, TX 75001" +182538,USB-C Charging Cable,1,11.95,03/09/19 10:19,"127 Sunset St, Atlanta, GA 30301" +182539,27in FHD Monitor,1,149.99,03/20/19 13:16,"230 Madison St, New York City, NY 10001" +182540,USB-C Charging Cable,1,11.95,03/21/19 09:35,"69 Maple St, Seattle, WA 98101" +182541,Macbook Pro Laptop,1,1700,03/11/19 13:34,"733 Johnson St, New York City, NY 10001" +182542,AA Batteries (4-pack),1,3.84,03/22/19 12:43,"18 Spruce St, Los Angeles, CA 90001" +182543,Apple Airpods Headphones,1,150,03/02/19 18:02,"623 Lakeview St, New York City, NY 10001" +182544,Bose SoundSport Headphones,1,99.99,03/01/19 13:29,"94 Ridge St, Dallas, TX 75001" +182545,AAA Batteries (4-pack),2,2.99,03/13/19 17:50,"109 Madison St, Boston, MA 02215" +182546,34in Ultrawide Monitor,1,379.99,03/20/19 11:50,"314 Washington St, Boston, MA 02215" +182547,AAA Batteries (4-pack),1,2.99,03/06/19 11:50,"967 13th St, Los Angeles, CA 90001" +182548,USB-C Charging Cable,2,11.95,03/21/19 17:19,"255 Cedar St, Seattle, WA 98101" +182549,Wired Headphones,1,11.99,03/03/19 14:44,"30 Church St, Portland, OR 97035" +182550,Lightning Charging Cable,1,14.95,03/30/19 17:41,"511 1st St, Seattle, WA 98101" +182551,USB-C Charging Cable,1,11.95,03/23/19 21:19,"999 Hill St, Los Angeles, CA 90001" +182552,Wired Headphones,1,11.99,03/21/19 20:38,"307 Jefferson St, Austin, TX 73301" +182553,USB-C Charging Cable,1,11.95,03/16/19 15:34,"76 Dogwood St, New York City, NY 10001" +182554,Macbook Pro Laptop,1,1700,03/04/19 15:01,"677 Church St, Boston, MA 02215" +182555,ThinkPad Laptop,1,999.99,03/09/19 18:45,"444 Cedar St, Portland, ME 04101" +182556,Bose SoundSport Headphones,1,99.99,03/27/19 19:52,"715 Johnson St, Portland, OR 97035" +182557,iPhone,1,700,03/15/19 13:47,"614 12th St, Los Angeles, CA 90001" +182558,Bose SoundSport Headphones,1,99.99,03/27/19 20:10,"661 Hill St, Boston, MA 02215" +182559,AA Batteries (4-pack),1,3.84,03/09/19 00:48,"331 Ridge St, Los Angeles, CA 90001" +182560,USB-C Charging Cable,1,11.95,03/18/19 23:47,"112 Sunset St, Portland, OR 97035" +182561,27in 4K Gaming Monitor,1,389.99,03/04/19 14:15,"926 North St, Portland, ME 04101" +182562,Lightning Charging Cable,1,14.95,03/23/19 10:53,"130 6th St, Dallas, TX 75001" +182563,Apple Airpods Headphones,1,150,03/31/19 23:03,"328 Sunset St, Austin, TX 73301" +182564,Lightning Charging Cable,1,14.95,03/26/19 15:11,"834 North St, Los Angeles, CA 90001" +182565,Wired Headphones,1,11.99,03/08/19 16:50,"454 Johnson St, Portland, OR 97035" +182566,Apple Airpods Headphones,1,150,03/20/19 14:10,"383 West St, Atlanta, GA 30301" +182567,AAA Batteries (4-pack),1,2.99,03/12/19 07:24,"492 Ridge St, New York City, NY 10001" +182568,Vareebadd Phone,1,400,03/03/19 21:51,"227 Forest St, Austin, TX 73301" +182569,AA Batteries (4-pack),1,3.84,03/31/19 18:42,"986 13th St, Boston, MA 02215" +182570,AA Batteries (4-pack),2,3.84,03/09/19 07:12,"297 North St, San Francisco, CA 94016" +182571,USB-C Charging Cable,1,11.95,03/11/19 23:02,"549 Meadow St, New York City, NY 10001" +182572,Apple Airpods Headphones,1,150,03/16/19 18:44,"702 Chestnut St, New York City, NY 10001" +182573,27in FHD Monitor,1,149.99,03/16/19 01:10,"101 12th St, Dallas, TX 75001" +182574,USB-C Charging Cable,1,11.95,03/19/19 07:33,"656 Washington St, Portland, OR 97035" +182575,Wired Headphones,1,11.99,03/25/19 20:15,"358 Willow St, New York City, NY 10001" +182576,Bose SoundSport Headphones,1,99.99,03/30/19 11:29,"153 River St, Los Angeles, CA 90001" +182577,AA Batteries (4-pack),1,3.84,03/06/19 04:05,"724 Ridge St, Los Angeles, CA 90001" +182578,Wired Headphones,2,11.99,03/15/19 16:40,"605 1st St, Portland, OR 97035" +182579,AAA Batteries (4-pack),1,2.99,03/18/19 10:56,"687 7th St, New York City, NY 10001" +182580,USB-C Charging Cable,2,11.95,03/26/19 21:11,"181 Madison St, Boston, MA 02215" +182581,34in Ultrawide Monitor,1,379.99,03/03/19 17:23,"67 5th St, Austin, TX 73301" +182582,USB-C Charging Cable,1,11.95,03/06/19 12:38,"821 Maple St, San Francisco, CA 94016" +182583,AAA Batteries (4-pack),2,2.99,03/09/19 17:30,"84 Elm St, San Francisco, CA 94016" +182584,iPhone,1,700,03/17/19 19:58,"420 Hickory St, San Francisco, CA 94016" +182585,Apple Airpods Headphones,1,150,03/11/19 10:40,"694 Pine St, Los Angeles, CA 90001" +182586,AAA Batteries (4-pack),2,2.99,03/19/19 11:36,"458 Meadow St, Boston, MA 02215" +,,,,, +182587,USB-C Charging Cable,1,11.95,03/14/19 19:48,"6 2nd St, Dallas, TX 75001" +182588,34in Ultrawide Monitor,1,379.99,03/24/19 15:50,"530 Chestnut St, San Francisco, CA 94016" +182589,27in FHD Monitor,1,149.99,03/17/19 23:11,"20 Main St, Los Angeles, CA 90001" +182590,Wired Headphones,1,11.99,03/01/19 17:43,"20 Lincoln St, Atlanta, GA 30301" +182591,AAA Batteries (4-pack),2,2.99,03/06/19 17:30,"940 Sunset St, Boston, MA 02215" +182592,27in FHD Monitor,1,149.99,03/03/19 09:37,"924 8th St, San Francisco, CA 94016" +182593,USB-C Charging Cable,1,11.95,03/17/19 14:09,"759 South St, San Francisco, CA 94016" +182594,27in 4K Gaming Monitor,1,389.99,03/28/19 21:29,"852 Pine St, Boston, MA 02215" +182595,AAA Batteries (4-pack),2,2.99,03/09/19 14:52,"521 Main St, Austin, TX 73301" +182596,AA Batteries (4-pack),1,3.84,03/22/19 12:30,"509 Lake St, Los Angeles, CA 90001" +182597,USB-C Charging Cable,1,11.95,03/10/19 18:40,"760 Church St, New York City, NY 10001" +182598,ThinkPad Laptop,1,999.99,03/10/19 20:57,"986 7th St, San Francisco, CA 94016" +182599,AA Batteries (4-pack),1,3.84,03/19/19 17:06,"421 Jefferson St, San Francisco, CA 94016" +182600,AAA Batteries (4-pack),1,2.99,03/04/19 09:27,"776 Wilson St, New York City, NY 10001" +182601,Apple Airpods Headphones,1,150,03/15/19 10:30,"719 Walnut St, Dallas, TX 75001" +182602,Bose SoundSport Headphones,1,99.99,03/28/19 22:50,"351 1st St, Los Angeles, CA 90001" +182603,27in 4K Gaming Monitor,1,389.99,03/31/19 21:23,"267 Chestnut St, Los Angeles, CA 90001" +182604,Macbook Pro Laptop,1,1700,03/05/19 16:08,"62 Jackson St, Boston, MA 02215" +182605,AA Batteries (4-pack),1,3.84,03/16/19 15:52,"47 Forest St, San Francisco, CA 94016" +182606,AA Batteries (4-pack),1,3.84,03/13/19 15:16,"28 West St, Dallas, TX 75001" +182607,Wired Headphones,1,11.99,03/27/19 19:15,"716 Meadow St, Austin, TX 73301" +182608,Wired Headphones,1,11.99,03/11/19 20:49,"334 Meadow St, San Francisco, CA 94016" +182609,20in Monitor,1,109.99,03/04/19 07:59,"36 4th St, Portland, OR 97035" +182610,Apple Airpods Headphones,1,150,03/17/19 22:50,"644 Maple St, Portland, OR 97035" +182611,Apple Airpods Headphones,1,150,03/05/19 21:42,"655 Lake St, Boston, MA 02215" +182612,Wired Headphones,1,11.99,03/14/19 21:53,"766 Meadow St, Seattle, WA 98101" +182613,Wired Headphones,1,11.99,03/05/19 17:05,"594 River St, San Francisco, CA 94016" +182614,Lightning Charging Cable,1,14.95,03/15/19 17:52,"233 West St, San Francisco, CA 94016" +182615,27in FHD Monitor,1,149.99,03/24/19 13:50,"171 8th St, Austin, TX 73301" +182616,Wired Headphones,1,11.99,03/09/19 16:41,"918 11th St, San Francisco, CA 94016" +182617,AA Batteries (4-pack),1,3.84,03/09/19 11:40,"112 6th St, Boston, MA 02215" +182618,Apple Airpods Headphones,1,150,03/15/19 17:23,"194 Pine St, New York City, NY 10001" +182619,Google Phone,1,600,03/07/19 09:20,"490 Meadow St, New York City, NY 10001" +182619,USB-C Charging Cable,2,11.95,03/07/19 09:20,"490 Meadow St, New York City, NY 10001" +182620,Lightning Charging Cable,1,14.95,03/17/19 16:45,"402 Adams St, San Francisco, CA 94016" +182621,AAA Batteries (4-pack),3,2.99,03/26/19 18:55,"680 Spruce St, New York City, NY 10001" +182622,AAA Batteries (4-pack),2,2.99,03/07/19 13:22,"313 Park St, Boston, MA 02215" +182623,AA Batteries (4-pack),1,3.84,03/23/19 15:45,"438 West St, Boston, MA 02215" +182624,USB-C Charging Cable,1,11.95,03/02/19 16:09,"559 River St, Boston, MA 02215" +182625,AA Batteries (4-pack),2,3.84,03/29/19 18:12,"569 7th St, Atlanta, GA 30301" +182626,Lightning Charging Cable,1,14.95,03/04/19 10:51,"412 Washington St, Portland, OR 97035" +182627,Apple Airpods Headphones,1,150,03/04/19 11:16,"198 10th St, Boston, MA 02215" +182628,Apple Airpods Headphones,1,150,03/23/19 21:56,"410 13th St, New York City, NY 10001" +182629,Wired Headphones,1,11.99,03/17/19 11:13,"894 North St, Portland, OR 97035" +182630,AA Batteries (4-pack),2,3.84,03/23/19 12:52,"713 Johnson St, Los Angeles, CA 90001" +182631,34in Ultrawide Monitor,1,379.99,03/23/19 21:06,"148 10th St, New York City, NY 10001" +182632,AA Batteries (4-pack),1,3.84,03/09/19 00:32,"121 Hill St, San Francisco, CA 94016" +182633,Bose SoundSport Headphones,1,99.99,03/27/19 21:22,"60 Washington St, Atlanta, GA 30301" +182634,Flatscreen TV,1,300,03/15/19 08:48,"15 11th St, Austin, TX 73301" +182635,Wired Headphones,1,11.99,03/30/19 20:41,"117 River St, Austin, TX 73301" +182636,AAA Batteries (4-pack),1,2.99,03/07/19 16:13,"79 7th St, New York City, NY 10001" +182637,Apple Airpods Headphones,1,150,03/12/19 18:44,"364 Meadow St, Boston, MA 02215" +182638,27in 4K Gaming Monitor,1,389.99,03/04/19 23:46,"485 Jackson St, New York City, NY 10001" +182639,Lightning Charging Cable,1,14.95,03/17/19 18:06,"644 5th St, Portland, OR 97035" +182640,iPhone,1,700,03/10/19 10:49,"325 Washington St, San Francisco, CA 94016" +182640,Wired Headphones,1,11.99,03/10/19 10:49,"325 Washington St, San Francisco, CA 94016" +182641,Apple Airpods Headphones,1,150,03/29/19 15:19,"352 Spruce St, Los Angeles, CA 90001" +182642,iPhone,1,700,03/24/19 19:44,"866 Sunset St, Atlanta, GA 30301" +182643,Wired Headphones,1,11.99,03/15/19 15:20,"705 South St, Los Angeles, CA 90001" +182644,ThinkPad Laptop,1,999.99,03/16/19 22:02,"288 Park St, New York City, NY 10001" +182645,Lightning Charging Cable,1,14.95,03/09/19 18:26,"605 Lincoln St, Los Angeles, CA 90001" +182646,AAA Batteries (4-pack),1,2.99,03/09/19 19:07,"837 9th St, Atlanta, GA 30301" +182647,Bose SoundSport Headphones,1,99.99,03/29/19 07:47,"403 Walnut St, Atlanta, GA 30301" +182648,AA Batteries (4-pack),3,3.84,03/29/19 17:22,"300 Madison St, San Francisco, CA 94016" +182649,Lightning Charging Cable,1,14.95,03/05/19 11:08,"118 Jefferson St, Boston, MA 02215" +182650,AA Batteries (4-pack),1,3.84,03/17/19 06:57,"17 Highland St, Los Angeles, CA 90001" +182650,USB-C Charging Cable,2,11.95,03/17/19 06:57,"17 Highland St, Los Angeles, CA 90001" +182651,Lightning Charging Cable,1,14.95,03/05/19 16:39,"102 Lake St, Boston, MA 02215" +182652,AAA Batteries (4-pack),1,2.99,03/01/19 16:39,"273 9th St, New York City, NY 10001" +182653,AAA Batteries (4-pack),1,2.99,03/25/19 10:10,"291 Main St, New York City, NY 10001" +182654,Bose SoundSport Headphones,1,99.99,03/05/19 11:24,"392 Willow St, Los Angeles, CA 90001" +182655,AAA Batteries (4-pack),2,2.99,03/28/19 18:02,"194 Walnut St, New York City, NY 10001" +182656,Lightning Charging Cable,1,14.95,03/29/19 13:48,"619 Chestnut St, Portland, OR 97035" +182657,AA Batteries (4-pack),2,3.84,03/28/19 11:24,"56 Jefferson St, Portland, OR 97035" +182658,Apple Airpods Headphones,1,150,03/14/19 22:16,"104 Maple St, San Francisco, CA 94016" +182659,AAA Batteries (4-pack),1,2.99,03/26/19 14:33,"190 2nd St, Portland, OR 97035" +182660,AA Batteries (4-pack),1,3.84,03/04/19 21:29,"440 South St, San Francisco, CA 94016" +182661,AA Batteries (4-pack),2,3.84,03/28/19 13:26,"963 4th St, San Francisco, CA 94016" +182662,20in Monitor,1,109.99,03/18/19 19:13,"128 Hill St, New York City, NY 10001" +182663,USB-C Charging Cable,1,11.95,03/07/19 17:25,"862 West St, San Francisco, CA 94016" +182664,AA Batteries (4-pack),1,3.84,03/09/19 13:13,"696 Main St, New York City, NY 10001" +182665,Flatscreen TV,1,300,03/05/19 13:34,"30 14th St, San Francisco, CA 94016" +182666,AAA Batteries (4-pack),2,2.99,03/06/19 11:57,"513 1st St, San Francisco, CA 94016" +182667,AA Batteries (4-pack),3,3.84,03/25/19 19:53,"301 Lakeview St, Seattle, WA 98101" +182668,27in 4K Gaming Monitor,1,389.99,03/04/19 16:25,"465 Church St, New York City, NY 10001" +182669,USB-C Charging Cable,1,11.95,03/24/19 08:16,"955 Pine St, Los Angeles, CA 90001" +182670,Wired Headphones,1,11.99,03/15/19 15:15,"320 13th St, San Francisco, CA 94016" +182671,Bose SoundSport Headphones,1,99.99,03/31/19 18:27,"821 5th St, Los Angeles, CA 90001" +182672,AAA Batteries (4-pack),1,2.99,03/23/19 23:24,"697 Lincoln St, Portland, OR 97035" +182673,Bose SoundSport Headphones,1,99.99,03/30/19 14:04,"222 1st St, Seattle, WA 98101" +182674,27in 4K Gaming Monitor,1,389.99,03/27/19 19:22,"408 River St, Dallas, TX 75001" +182675,Lightning Charging Cable,1,14.95,03/14/19 07:14,"500 North St, Boston, MA 02215" +182676,Lightning Charging Cable,1,14.95,03/15/19 05:33,"627 Johnson St, Portland, OR 97035" +182677,iPhone,1,700,03/09/19 14:27,"186 Cedar St, New York City, NY 10001" +182678,34in Ultrawide Monitor,1,379.99,03/30/19 11:58,"569 Cedar St, Seattle, WA 98101" +182679,Apple Airpods Headphones,1,150,03/15/19 08:05,"945 Sunset St, San Francisco, CA 94016" +182680,Lightning Charging Cable,1,14.95,03/28/19 11:39,"926 Adams St, New York City, NY 10001" +182681,Bose SoundSport Headphones,1,99.99,03/25/19 00:38,"859 4th St, Austin, TX 73301" +182682,27in FHD Monitor,1,149.99,03/07/19 17:19,"441 Ridge St, Boston, MA 02215" +182683,LG Washing Machine,1,600.0,03/23/19 22:02,"403 Chestnut St, Boston, MA 02215" +182684,27in FHD Monitor,1,149.99,03/23/19 11:28,"67 Park St, Los Angeles, CA 90001" +182685,Apple Airpods Headphones,1,150,03/02/19 08:54,"358 14th St, Los Angeles, CA 90001" +182686,Macbook Pro Laptop,1,1700,03/23/19 20:24,"281 6th St, New York City, NY 10001" +182687,Apple Airpods Headphones,1,150,03/06/19 13:17,"928 Maple St, Portland, OR 97035" +182688,Bose SoundSport Headphones,1,99.99,03/15/19 14:17,"639 Meadow St, New York City, NY 10001" +182689,20in Monitor,1,109.99,03/03/19 08:21,"24 13th St, Boston, MA 02215" +182690,USB-C Charging Cable,1,11.95,03/12/19 00:22,"55 River St, Seattle, WA 98101" +182691,Lightning Charging Cable,1,14.95,03/29/19 13:09,"136 2nd St, San Francisco, CA 94016" +182692,AA Batteries (4-pack),1,3.84,03/22/19 12:33,"584 Sunset St, Los Angeles, CA 90001" +182693,Bose SoundSport Headphones,1,99.99,03/08/19 13:51,"869 Walnut St, Los Angeles, CA 90001" +182694,Lightning Charging Cable,1,14.95,03/18/19 10:17,"343 Lake St, Dallas, TX 75001" +182695,34in Ultrawide Monitor,1,379.99,03/21/19 17:25,"368 5th St, Atlanta, GA 30301" +182696,USB-C Charging Cable,1,11.95,03/20/19 14:47,"944 Washington St, San Francisco, CA 94016" +182697,Vareebadd Phone,1,400,03/01/19 07:54,"281 7th St, Portland, OR 97035" +182697,USB-C Charging Cable,1,11.95,03/01/19 07:54,"281 7th St, Portland, OR 97035" +182697,Bose SoundSport Headphones,1,99.99,03/01/19 07:54,"281 7th St, Portland, OR 97035" +182698,Macbook Pro Laptop,1,1700,03/11/19 15:30,"293 9th St, New York City, NY 10001" +182699,ThinkPad Laptop,1,999.99,03/27/19 11:23,"461 Spruce St, New York City, NY 10001" +182700,USB-C Charging Cable,1,11.95,03/29/19 22:07,"530 Jefferson St, Los Angeles, CA 90001" +182701,Lightning Charging Cable,1,14.95,03/21/19 08:56,"730 1st St, Dallas, TX 75001" +182702,USB-C Charging Cable,1,11.95,03/04/19 17:18,"369 2nd St, Boston, MA 02215" +182703,Google Phone,1,600,03/14/19 17:05,"76 9th St, Seattle, WA 98101" +182704,ThinkPad Laptop,1,999.99,03/29/19 09:12,"694 Hill St, Boston, MA 02215" +182705,Lightning Charging Cable,1,14.95,03/06/19 21:49,"334 7th St, Atlanta, GA 30301" +182706,Wired Headphones,1,11.99,03/31/19 18:56,"309 10th St, Boston, MA 02215" +182707,Bose SoundSport Headphones,1,99.99,03/07/19 19:43,"181 Madison St, San Francisco, CA 94016" +182708,Bose SoundSport Headphones,1,99.99,03/18/19 10:22,"681 Center St, Boston, MA 02215" +182709,27in 4K Gaming Monitor,1,389.99,03/10/19 23:54,"546 North St, New York City, NY 10001" +182710,iPhone,1,700,03/23/19 00:17,"339 River St, Atlanta, GA 30301" +182711,USB-C Charging Cable,1,11.95,03/21/19 19:21,"603 10th St, New York City, NY 10001" +182712,AA Batteries (4-pack),1,3.84,03/15/19 22:49,"390 Forest St, New York City, NY 10001" +182713,Apple Airpods Headphones,1,150,03/26/19 17:29,"97 Sunset St, San Francisco, CA 94016" +182714,AAA Batteries (4-pack),1,2.99,03/23/19 19:10,"932 10th St, Seattle, WA 98101" +182715,Apple Airpods Headphones,1,150,03/15/19 11:49,"604 Meadow St, Atlanta, GA 30301" +182716,USB-C Charging Cable,1,11.95,03/11/19 22:25,"993 Meadow St, New York City, NY 10001" +182717,20in Monitor,1,109.99,03/27/19 23:00,"260 7th St, New York City, NY 10001" +182718,Bose SoundSport Headphones,1,99.99,03/31/19 16:27,"84 14th St, San Francisco, CA 94016" +182719,Macbook Pro Laptop,1,1700,03/18/19 09:58,"960 Lakeview St, San Francisco, CA 94016" +182720,Google Phone,1,600,03/23/19 00:58,"394 Church St, Los Angeles, CA 90001" +182720,Wired Headphones,1,11.99,03/23/19 00:58,"394 Church St, Los Angeles, CA 90001" +182721,Wired Headphones,1,11.99,03/08/19 19:59,"93 Hill St, Los Angeles, CA 90001" +182722,27in FHD Monitor,1,149.99,03/30/19 16:58,"997 Center St, New York City, NY 10001" +182723,Apple Airpods Headphones,1,150,03/31/19 07:25,"577 11th St, New York City, NY 10001" +182724,AAA Batteries (4-pack),3,2.99,03/08/19 10:54,"423 Sunset St, San Francisco, CA 94016" +182725,Lightning Charging Cable,1,14.95,03/03/19 17:35,"40 South St, Los Angeles, CA 90001" +182726,AAA Batteries (4-pack),1,2.99,03/20/19 23:03,"819 Forest St, San Francisco, CA 94016" +182727,AA Batteries (4-pack),1,3.84,03/09/19 00:31,"290 North St, Atlanta, GA 30301" +182728,Lightning Charging Cable,1,14.95,03/29/19 17:44,"873 Cherry St, San Francisco, CA 94016" +182729,AA Batteries (4-pack),1,3.84,03/11/19 11:40,"436 Jefferson St, Austin, TX 73301" +182730,27in FHD Monitor,1,149.99,03/07/19 05:53,"443 Washington St, Atlanta, GA 30301" +182731,Lightning Charging Cable,1,14.95,03/22/19 12:35,"495 Ridge St, Los Angeles, CA 90001" +182732,Apple Airpods Headphones,1,150,03/06/19 22:41,"679 Willow St, Dallas, TX 75001" +182733,USB-C Charging Cable,1,11.95,03/27/19 11:23,"882 7th St, New York City, NY 10001" +182734,USB-C Charging Cable,1,11.95,03/08/19 17:21,"159 11th St, Dallas, TX 75001" +182735,USB-C Charging Cable,1,11.95,03/07/19 19:43,"772 Johnson St, San Francisco, CA 94016" +182736,Vareebadd Phone,1,400,03/04/19 12:23,"866 Wilson St, Los Angeles, CA 90001" +182736,Wired Headphones,1,11.99,03/04/19 12:23,"866 Wilson St, Los Angeles, CA 90001" +182737,USB-C Charging Cable,2,11.95,03/30/19 08:42,"192 Madison St, Dallas, TX 75001" +182738,Lightning Charging Cable,1,14.95,03/20/19 23:44,"78 Hill St, San Francisco, CA 94016" +182739,AAA Batteries (4-pack),1,2.99,03/19/19 15:22,"116 Highland St, Dallas, TX 75001" +182740,Lightning Charging Cable,1,14.95,03/27/19 11:30,"835 8th St, Los Angeles, CA 90001" +182741,27in 4K Gaming Monitor,1,389.99,03/20/19 23:30,"394 4th St, San Francisco, CA 94016" +182742,AA Batteries (4-pack),1,3.84,03/02/19 15:45,"618 Washington St, New York City, NY 10001" +182743,Apple Airpods Headphones,1,150,03/28/19 09:09,"317 Maple St, Los Angeles, CA 90001" +182744,34in Ultrawide Monitor,1,379.99,03/19/19 23:05,"264 Walnut St, Los Angeles, CA 90001" +182745,20in Monitor,1,109.99,03/06/19 02:50,"312 Cherry St, Seattle, WA 98101" +182746,AAA Batteries (4-pack),1,2.99,03/27/19 21:07,"183 South St, Boston, MA 02215" +182747,AA Batteries (4-pack),1,3.84,03/21/19 17:23,"226 14th St, Boston, MA 02215" +182748,USB-C Charging Cable,1,11.95,03/11/19 22:02,"486 1st St, Portland, OR 97035" +182749,USB-C Charging Cable,2,11.95,03/27/19 14:57,"581 8th St, San Francisco, CA 94016" +182749,LG Washing Machine,1,600.0,03/27/19 14:57,"581 8th St, San Francisco, CA 94016" +182750,AAA Batteries (4-pack),1,2.99,03/18/19 06:19,"795 Hill St, Boston, MA 02215" +182751,Wired Headphones,1,11.99,03/02/19 11:31,"650 Main St, Dallas, TX 75001" +182752,27in FHD Monitor,1,149.99,03/27/19 13:06,"576 Meadow St, Los Angeles, CA 90001" +182753,Flatscreen TV,1,300,03/28/19 05:19,"427 Johnson St, Boston, MA 02215" +182754,Lightning Charging Cable,1,14.95,03/23/19 01:38,"955 Center St, Portland, OR 97035" +182755,Macbook Pro Laptop,1,1700,03/25/19 00:47,"520 Willow St, Boston, MA 02215" +182756,Wired Headphones,1,11.99,03/27/19 09:57,"818 9th St, Los Angeles, CA 90001" +182757,USB-C Charging Cable,1,11.95,03/28/19 12:43,"973 Washington St, New York City, NY 10001" +182758,Apple Airpods Headphones,1,150,03/19/19 18:28,"712 Lincoln St, New York City, NY 10001" +182759,USB-C Charging Cable,1,11.95,03/15/19 12:51,"6 Hickory St, Atlanta, GA 30301" +182760,27in FHD Monitor,1,149.99,03/08/19 05:05,"233 12th St, Los Angeles, CA 90001" +182761,Wired Headphones,1,11.99,03/11/19 13:43,"698 Hickory St, Atlanta, GA 30301" +182762,Wired Headphones,1,11.99,03/01/19 11:17,"885 Johnson St, Dallas, TX 75001" +182763,AA Batteries (4-pack),2,3.84,03/19/19 16:12,"754 Wilson St, Dallas, TX 75001" +182764,AAA Batteries (4-pack),1,2.99,03/10/19 16:25,"866 Lake St, Los Angeles, CA 90001" +182765,Vareebadd Phone,1,400,03/11/19 18:10,"313 Washington St, San Francisco, CA 94016" +182766,Flatscreen TV,1,300,03/26/19 08:47,"914 Washington St, New York City, NY 10001" +182767,Bose SoundSport Headphones,1,99.99,03/12/19 15:11,"340 8th St, Boston, MA 02215" +182768,AAA Batteries (4-pack),1,2.99,03/09/19 10:34,"839 12th St, Portland, OR 97035" +182769,USB-C Charging Cable,1,11.95,03/12/19 19:56,"721 Center St, San Francisco, CA 94016" +182770,Wired Headphones,1,11.99,03/01/19 10:54,"556 North St, Austin, TX 73301" +182771,Lightning Charging Cable,1,14.95,03/03/19 21:55,"756 Park St, Portland, OR 97035" +182772,Apple Airpods Headphones,1,150,03/20/19 19:51,"787 Lake St, Atlanta, GA 30301" +182773,ThinkPad Laptop,1,999.99,03/09/19 19:49,"245 Spruce St, New York City, NY 10001" +182774,iPhone,1,700,03/22/19 06:25,"524 Maple St, San Francisco, CA 94016" +182774,Lightning Charging Cable,1,14.95,03/22/19 06:25,"524 Maple St, San Francisco, CA 94016" +182775,USB-C Charging Cable,2,11.95,03/24/19 10:01,"518 River St, San Francisco, CA 94016" +182776,27in FHD Monitor,1,149.99,03/28/19 20:37,"978 2nd St, New York City, NY 10001" +182777,Flatscreen TV,1,300,03/31/19 23:56,"773 14th St, San Francisco, CA 94016" +182778,Lightning Charging Cable,1,14.95,03/28/19 21:54,"488 Washington St, Boston, MA 02215" +182779,Bose SoundSport Headphones,1,99.99,03/12/19 17:15,"333 Dogwood St, Los Angeles, CA 90001" +182780,Wired Headphones,1,11.99,03/02/19 21:32,"137 Hickory St, Boston, MA 02215" +182781,20in Monitor,1,109.99,03/22/19 18:40,"722 8th St, San Francisco, CA 94016" +182782,ThinkPad Laptop,1,999.99,03/12/19 11:21,"803 Center St, Los Angeles, CA 90001" +182783,Bose SoundSport Headphones,1,99.99,03/17/19 09:00,"860 Hickory St, Seattle, WA 98101" +182784,AA Batteries (4-pack),2,3.84,03/06/19 17:18,"620 South St, Los Angeles, CA 90001" +182785,20in Monitor,1,109.99,03/31/19 19:48,"76 North St, Portland, OR 97035" +182786,AAA Batteries (4-pack),1,2.99,03/05/19 11:35,"262 Meadow St, Boston, MA 02215" +182787,Apple Airpods Headphones,1,150,03/11/19 09:29,"162 Lake St, San Francisco, CA 94016" +182788,AAA Batteries (4-pack),2,2.99,03/12/19 19:13,"993 6th St, Portland, OR 97035" +182789,Bose SoundSport Headphones,1,99.99,03/31/19 20:35,"429 Sunset St, Portland, OR 97035" +182790,Lightning Charging Cable,1,14.95,03/03/19 13:07,"417 Dogwood St, Seattle, WA 98101" +182791,AAA Batteries (4-pack),1,2.99,03/24/19 21:28,"580 South St, Austin, TX 73301" +182792,USB-C Charging Cable,1,11.95,03/03/19 16:41,"401 14th St, New York City, NY 10001" +182793,Flatscreen TV,1,300,03/07/19 19:27,"14 Willow St, New York City, NY 10001" +182794,Vareebadd Phone,1,400,03/12/19 07:51,"987 2nd St, Portland, OR 97035" +182794,USB-C Charging Cable,1,11.95,03/12/19 07:51,"987 2nd St, Portland, OR 97035" +182795,AA Batteries (4-pack),1,3.84,03/23/19 15:19,"14 Maple St, Portland, OR 97035" +182796,USB-C Charging Cable,1,11.95,03/05/19 20:42,"946 Park St, Los Angeles, CA 90001" +182797,Bose SoundSport Headphones,1,99.99,03/30/19 19:07,"863 North St, Los Angeles, CA 90001" +182798,Wired Headphones,1,11.99,03/24/19 20:55,"758 Johnson St, San Francisco, CA 94016" +182799,Macbook Pro Laptop,1,1700,03/27/19 23:04,"769 Walnut St, Boston, MA 02215" +182800,iPhone,1,700,03/29/19 23:14,"187 Lincoln St, New York City, NY 10001" +182800,Lightning Charging Cable,1,14.95,03/29/19 23:14,"187 Lincoln St, New York City, NY 10001" +182801,AAA Batteries (4-pack),3,2.99,03/13/19 10:42,"106 6th St, New York City, NY 10001" +182802,Lightning Charging Cable,1,14.95,03/10/19 22:11,"452 5th St, Seattle, WA 98101" +182803,AA Batteries (4-pack),1,3.84,03/24/19 09:10,"195 Jefferson St, Austin, TX 73301" +182804,AA Batteries (4-pack),2,3.84,03/17/19 08:37,"773 Forest St, Boston, MA 02215" +182805,USB-C Charging Cable,1,11.95,03/02/19 21:50,"834 Jefferson St, San Francisco, CA 94016" +182806,AAA Batteries (4-pack),1,2.99,03/21/19 11:29,"889 Johnson St, Boston, MA 02215" +182807,AA Batteries (4-pack),1,3.84,03/21/19 06:32,"540 River St, New York City, NY 10001" +182808,Apple Airpods Headphones,1,150,03/21/19 18:05,"15 10th St, Los Angeles, CA 90001" +182809,Wired Headphones,2,11.99,03/05/19 22:00,"674 8th St, Seattle, WA 98101" +182810,AA Batteries (4-pack),1,3.84,03/16/19 20:45,"156 7th St, Austin, TX 73301" +182811,27in FHD Monitor,1,149.99,03/15/19 17:15,"36 Willow St, San Francisco, CA 94016" +182812,AA Batteries (4-pack),1,3.84,03/31/19 20:48,"549 Ridge St, Atlanta, GA 30301" +182813,AAA Batteries (4-pack),1,2.99,03/07/19 10:40,"457 Sunset St, Atlanta, GA 30301" +182814,AA Batteries (4-pack),1,3.84,03/01/19 15:38,"322 13th St, New York City, NY 10001" +182815,USB-C Charging Cable,1,11.95,03/15/19 18:39,"369 13th St, San Francisco, CA 94016" +182816,27in FHD Monitor,1,149.99,03/31/19 19:34,"536 Johnson St, New York City, NY 10001" +182817,Apple Airpods Headphones,1,150,03/21/19 15:12,"294 Chestnut St, New York City, NY 10001" +182818,AA Batteries (4-pack),1,3.84,03/21/19 11:54,"686 Walnut St, Seattle, WA 98101" +182819,Lightning Charging Cable,1,14.95,03/23/19 14:37,"77 North St, Boston, MA 02215" +182820,27in 4K Gaming Monitor,1,389.99,03/02/19 18:06,"601 Cherry St, Austin, TX 73301" +182821,27in 4K Gaming Monitor,1,389.99,03/19/19 08:28,"528 11th St, San Francisco, CA 94016" +182822,Apple Airpods Headphones,1,150,03/02/19 12:01,"525 Johnson St, Dallas, TX 75001" +182823,34in Ultrawide Monitor,1,379.99,03/04/19 12:30,"499 Spruce St, Seattle, WA 98101" +182824,Wired Headphones,1,11.99,03/26/19 09:28,"342 South St, San Francisco, CA 94016" +182825,USB-C Charging Cable,1,11.95,03/22/19 15:09,"26 Maple St, Boston, MA 02215" +182826,AA Batteries (4-pack),1,3.84,03/13/19 08:29,"185 Lakeview St, New York City, NY 10001" +182827,AAA Batteries (4-pack),1,2.99,03/08/19 10:58,"31 Walnut St, Austin, TX 73301" +182828,AA Batteries (4-pack),2,3.84,03/09/19 07:23,"49 Lincoln St, Boston, MA 02215" +182829,34in Ultrawide Monitor,1,379.99,03/23/19 19:21,"946 West St, Los Angeles, CA 90001" +182830,Lightning Charging Cable,1,14.95,03/03/19 15:40,"592 Elm St, San Francisco, CA 94016" +182831,AAA Batteries (4-pack),1,2.99,03/06/19 13:26,"716 12th St, Seattle, WA 98101" +182832,Apple Airpods Headphones,1,150,03/23/19 14:14,"176 Walnut St, Atlanta, GA 30301" +182833,AA Batteries (4-pack),1,3.84,03/28/19 12:04,"838 Pine St, Atlanta, GA 30301" +182834,Lightning Charging Cable,1,14.95,03/07/19 11:42,"78 4th St, Los Angeles, CA 90001" +182835,Apple Airpods Headphones,1,150,03/28/19 12:23,"475 Maple St, Austin, TX 73301" +182836,AA Batteries (4-pack),1,3.84,03/22/19 15:44,"192 Cherry St, Seattle, WA 98101" +182837,Bose SoundSport Headphones,1,99.99,03/02/19 18:59,"538 Madison St, San Francisco, CA 94016" +182838,27in 4K Gaming Monitor,1,389.99,03/20/19 18:49,"993 Meadow St, San Francisco, CA 94016" +182839,Flatscreen TV,1,300,03/09/19 11:04,"171 Hickory St, San Francisco, CA 94016" +182840,AAA Batteries (4-pack),2,2.99,03/11/19 20:18,"407 Maple St, Los Angeles, CA 90001" +182841,Lightning Charging Cable,1,14.95,03/07/19 12:30,"976 Dogwood St, New York City, NY 10001" +182842,USB-C Charging Cable,1,11.95,03/16/19 18:03,"3 Willow St, New York City, NY 10001" +182843,USB-C Charging Cable,1,11.95,03/02/19 19:11,"928 Hill St, New York City, NY 10001" +182844,Lightning Charging Cable,1,14.95,03/05/19 16:51,"567 Forest St, Los Angeles, CA 90001" +182845,20in Monitor,1,109.99,03/02/19 19:53,"373 Park St, San Francisco, CA 94016" +182846,Bose SoundSport Headphones,1,99.99,03/27/19 11:40,"355 5th St, Dallas, TX 75001" +182847,AAA Batteries (4-pack),1,2.99,03/29/19 22:29,"205 Spruce St, Los Angeles, CA 90001" +182848,USB-C Charging Cable,1,11.95,03/12/19 12:26,"856 Meadow St, San Francisco, CA 94016" +182849,USB-C Charging Cable,1,11.95,03/27/19 11:54,"481 Jackson St, New York City, NY 10001" +182850,27in FHD Monitor,1,149.99,03/01/19 21:04,"845 13th St, New York City, NY 10001" +182851,Lightning Charging Cable,2,14.95,03/23/19 17:49,"557 12th St, Portland, OR 97035" +182852,Apple Airpods Headphones,1,150,03/18/19 18:09,"571 5th St, Los Angeles, CA 90001" +182853,Lightning Charging Cable,1,14.95,03/11/19 11:19,"754 Wilson St, New York City, NY 10001" +182854,AA Batteries (4-pack),1,3.84,03/07/19 00:06,"31 Wilson St, Los Angeles, CA 90001" +182855,Lightning Charging Cable,1,14.95,03/03/19 21:14,"20 11th St, Boston, MA 02215" +182856,AAA Batteries (4-pack),1,2.99,03/21/19 17:44,"999 Dogwood St, San Francisco, CA 94016" +182857,AAA Batteries (4-pack),1,2.99,03/19/19 15:55,"377 Johnson St, Los Angeles, CA 90001" +182858,27in FHD Monitor,1,149.99,03/03/19 03:36,"380 Chestnut St, Seattle, WA 98101" +182859,AAA Batteries (4-pack),1,2.99,03/26/19 20:13,"124 North St, Los Angeles, CA 90001" +182860,Vareebadd Phone,1,400,03/14/19 21:09,"881 Pine St, San Francisco, CA 94016" +182861,Wired Headphones,1,11.99,03/19/19 18:45,"755 Church St, Dallas, TX 75001" +182862,AAA Batteries (4-pack),1,2.99,03/25/19 13:32,"883 Spruce St, New York City, NY 10001" +182863,Wired Headphones,1,11.99,03/18/19 19:45,"579 Hickory St, Portland, OR 97035" +182864,Wired Headphones,1,11.99,03/23/19 19:21,"196 Madison St, Los Angeles, CA 90001" +182865,AA Batteries (4-pack),4,3.84,03/19/19 02:13,"471 Chestnut St, Los Angeles, CA 90001" +182866,ThinkPad Laptop,1,999.99,03/04/19 11:14,"144 Cedar St, Atlanta, GA 30301" +182866,Bose SoundSport Headphones,1,99.99,03/04/19 11:14,"144 Cedar St, Atlanta, GA 30301" +182867,ThinkPad Laptop,1,999.99,03/22/19 02:17,"334 Lincoln St, Los Angeles, CA 90001" +182868,AAA Batteries (4-pack),1,2.99,03/05/19 22:23,"656 Spruce St, San Francisco, CA 94016" +182869,Lightning Charging Cable,1,14.95,03/29/19 13:58,"578 River St, New York City, NY 10001" +182870,Wired Headphones,1,11.99,03/14/19 12:46,"963 Dogwood St, San Francisco, CA 94016" +182871,Macbook Pro Laptop,1,1700,03/27/19 15:21,"508 Dogwood St, Austin, TX 73301" +182872,AA Batteries (4-pack),1,3.84,03/04/19 22:20,"867 Washington St, Atlanta, GA 30301" +182873,USB-C Charging Cable,1,11.95,03/21/19 09:39,"779 Church St, Seattle, WA 98101" +182874,Lightning Charging Cable,1,14.95,03/21/19 14:54,"175 North St, San Francisco, CA 94016" +182875,Apple Airpods Headphones,1,150,03/17/19 19:00,"966 Adams St, Boston, MA 02215" +182876,USB-C Charging Cable,2,11.95,03/25/19 23:06,"276 2nd St, New York City, NY 10001" +,,,,, +182877,Lightning Charging Cable,1,14.95,03/04/19 01:05,"375 Dogwood St, Portland, ME 04101" +182878,USB-C Charging Cable,1,11.95,03/08/19 21:30,"216 Spruce St, Atlanta, GA 30301" +182879,Lightning Charging Cable,1,14.95,03/14/19 22:35,"957 Johnson St, Atlanta, GA 30301" +182880,USB-C Charging Cable,1,11.95,03/17/19 13:23,"387 2nd St, Los Angeles, CA 90001" +182881,Macbook Pro Laptop,1,1700,03/23/19 14:45,"650 4th St, Atlanta, GA 30301" +182882,USB-C Charging Cable,1,11.95,03/25/19 10:59,"843 12th St, Los Angeles, CA 90001" +182883,Wired Headphones,1,11.99,03/16/19 10:08,"871 Elm St, San Francisco, CA 94016" +182884,34in Ultrawide Monitor,1,379.99,03/16/19 00:20,"341 Willow St, Dallas, TX 75001" +182885,Bose SoundSport Headphones,1,99.99,03/04/19 22:35,"770 Lakeview St, Los Angeles, CA 90001" +182886,AA Batteries (4-pack),1,3.84,03/10/19 11:48,"429 Dogwood St, Atlanta, GA 30301" +182887,27in 4K Gaming Monitor,1,389.99,03/31/19 21:45,"256 14th St, New York City, NY 10001" +182888,LG Washing Machine,1,600.0,03/24/19 15:28,"911 Willow St, Boston, MA 02215" +182889,AA Batteries (4-pack),1,3.84,03/08/19 10:22,"16 12th St, Boston, MA 02215" +182890,Macbook Pro Laptop,1,1700,03/07/19 12:57,"141 Jefferson St, San Francisco, CA 94016" +182891,Macbook Pro Laptop,1,1700,03/08/19 12:57,"124 Ridge St, Los Angeles, CA 90001" +182892,AA Batteries (4-pack),2,3.84,03/13/19 22:57,"80 4th St, Seattle, WA 98101" +182893,Wired Headphones,2,11.99,03/21/19 13:16,"33 North St, Seattle, WA 98101" +182894,Wired Headphones,1,11.99,03/21/19 11:00,"511 Jefferson St, Boston, MA 02215" +182895,AAA Batteries (4-pack),2,2.99,03/19/19 14:08,"191 Church St, Los Angeles, CA 90001" +182896,Flatscreen TV,1,300,03/11/19 08:56,"862 5th St, Austin, TX 73301" +182897,AAA Batteries (4-pack),1,2.99,03/28/19 17:19,"8 Willow St, Atlanta, GA 30301" +182898,Vareebadd Phone,1,400,03/16/19 20:35,"95 5th St, New York City, NY 10001" +182899,AA Batteries (4-pack),1,3.84,03/06/19 07:28,"190 13th St, San Francisco, CA 94016" +182900,Bose SoundSport Headphones,1,99.99,03/04/19 16:36,"513 Washington St, Seattle, WA 98101" +182901,Google Phone,1,600,03/18/19 00:14,"195 Sunset St, New York City, NY 10001" +182901,USB-C Charging Cable,1,11.95,03/18/19 00:14,"195 Sunset St, New York City, NY 10001" +182902,27in FHD Monitor,1,149.99,03/30/19 12:26,"6 West St, New York City, NY 10001" +182903,Lightning Charging Cable,1,14.95,03/04/19 18:45,"590 Cedar St, Los Angeles, CA 90001" +182904,Wired Headphones,2,11.99,03/06/19 13:48,"958 South St, Boston, MA 02215" +182905,Lightning Charging Cable,1,14.95,03/10/19 10:36,"61 14th St, San Francisco, CA 94016" +182905,34in Ultrawide Monitor,1,379.99,03/10/19 10:36,"61 14th St, San Francisco, CA 94016" +182906,Wired Headphones,2,11.99,03/01/19 17:14,"918 10th St, Austin, TX 73301" +182907,USB-C Charging Cable,1,11.95,03/05/19 22:16,"878 Maple St, San Francisco, CA 94016" +182908,Flatscreen TV,1,300,03/21/19 18:53,"317 6th St, Atlanta, GA 30301" +182909,27in 4K Gaming Monitor,1,389.99,03/24/19 13:39,"936 Madison St, San Francisco, CA 94016" +182910,AAA Batteries (4-pack),2,2.99,03/31/19 21:50,"111 9th St, Boston, MA 02215" +182911,Lightning Charging Cable,1,14.95,03/14/19 23:16,"323 Cedar St, New York City, NY 10001" +182912,27in FHD Monitor,1,149.99,03/09/19 13:35,"579 South St, Los Angeles, CA 90001" +182913,USB-C Charging Cable,2,11.95,03/29/19 10:01,"831 Jackson St, Boston, MA 02215" +182914,AAA Batteries (4-pack),1,2.99,03/09/19 18:06,"800 Johnson St, Portland, OR 97035" +182915,27in FHD Monitor,1,149.99,03/08/19 09:29,"618 Chestnut St, San Francisco, CA 94016" +182916,AA Batteries (4-pack),1,3.84,03/07/19 13:59,"921 Park St, Seattle, WA 98101" +182917,27in FHD Monitor,1,149.99,03/14/19 21:58,"244 North St, New York City, NY 10001" +182918,Lightning Charging Cable,1,14.95,03/11/19 18:30,"495 Cherry St, San Francisco, CA 94016" +182919,Bose SoundSport Headphones,1,99.99,03/06/19 23:06,"84 Church St, Portland, OR 97035" +182920,Apple Airpods Headphones,1,150,03/05/19 18:22,"474 Church St, Seattle, WA 98101" +182921,AAA Batteries (4-pack),1,2.99,03/19/19 12:53,"388 Lake St, New York City, NY 10001" +182922,Lightning Charging Cable,1,14.95,03/14/19 19:19,"491 Madison St, San Francisco, CA 94016" +182923,20in Monitor,1,109.99,03/11/19 21:16,"220 13th St, Portland, OR 97035" +182924,USB-C Charging Cable,1,11.95,03/23/19 08:02,"650 14th St, Portland, OR 97035" +182925,AAA Batteries (4-pack),3,2.99,03/21/19 19:24,"268 Wilson St, Portland, ME 04101" +182926,AAA Batteries (4-pack),1,2.99,03/28/19 00:52,"551 12th St, New York City, NY 10001" +182927,Google Phone,1,600,03/25/19 21:08,"986 Cedar St, Austin, TX 73301" +182928,USB-C Charging Cable,1,11.95,03/08/19 20:10,"720 Church St, Atlanta, GA 30301" +182929,AAA Batteries (4-pack),1,2.99,03/15/19 23:11,"601 Hickory St, Boston, MA 02215" +182930,AA Batteries (4-pack),1,3.84,03/31/19 16:56,"353 5th St, San Francisco, CA 94016" +182931,AA Batteries (4-pack),1,3.84,03/06/19 19:36,"111 11th St, Boston, MA 02215" +182932,Apple Airpods Headphones,1,150,03/28/19 09:03,"498 South St, Dallas, TX 75001" +182933,Wired Headphones,2,11.99,03/09/19 12:48,"133 Jackson St, Seattle, WA 98101" +182934,Flatscreen TV,1,300,03/18/19 14:10,"637 West St, New York City, NY 10001" +182935,LG Washing Machine,1,600.0,03/20/19 14:22,"723 Walnut St, Seattle, WA 98101" +182936,Apple Airpods Headphones,1,150,03/22/19 14:04,"345 Lake St, New York City, NY 10001" +182937,AA Batteries (4-pack),1,3.84,03/05/19 05:39,"633 Elm St, New York City, NY 10001" +182938,USB-C Charging Cable,1,11.95,03/16/19 19:24,"582 7th St, Seattle, WA 98101" +182939,Apple Airpods Headphones,1,150,03/22/19 14:44,"708 5th St, San Francisco, CA 94016" +182940,LG Dryer,1,600.0,03/12/19 11:14,"269 Lakeview St, Boston, MA 02215" +182941,ThinkPad Laptop,1,999.99,03/26/19 09:00,"412 Spruce St, Los Angeles, CA 90001" +182942,AA Batteries (4-pack),1,3.84,03/11/19 11:12,"289 North St, Atlanta, GA 30301" +182943,Bose SoundSport Headphones,1,99.99,03/10/19 08:47,"760 Sunset St, Dallas, TX 75001" +182944,AA Batteries (4-pack),1,3.84,03/16/19 17:57,"949 Willow St, Dallas, TX 75001" +182945,Google Phone,1,600,03/25/19 15:07,"747 Jefferson St, Los Angeles, CA 90001" +182945,Bose SoundSport Headphones,1,99.99,03/25/19 15:07,"747 Jefferson St, Los Angeles, CA 90001" +182946,USB-C Charging Cable,1,11.95,03/23/19 13:22,"620 Willow St, Atlanta, GA 30301" +182947,27in FHD Monitor,1,149.99,03/08/19 19:52,"932 Park St, Portland, OR 97035" +182948,Wired Headphones,1,11.99,03/14/19 21:32,"798 Maple St, San Francisco, CA 94016" +182949,Lightning Charging Cable,1,14.95,03/05/19 10:31,"891 Forest St, Dallas, TX 75001" +182950,AAA Batteries (4-pack),1,2.99,03/12/19 17:55,"638 Washington St, Austin, TX 73301" +182951,27in 4K Gaming Monitor,1,389.99,03/21/19 12:22,"524 Jefferson St, San Francisco, CA 94016" +182952,27in 4K Gaming Monitor,1,389.99,03/05/19 17:41,"600 Meadow St, Los Angeles, CA 90001" +182953,Bose SoundSport Headphones,1,99.99,03/08/19 20:21,"537 14th St, Atlanta, GA 30301" +182954,USB-C Charging Cable,1,11.95,03/20/19 20:30,"843 West St, New York City, NY 10001" +182955,27in FHD Monitor,1,149.99,03/07/19 12:37,"615 Willow St, Los Angeles, CA 90001" +182956,Lightning Charging Cable,1,14.95,03/14/19 08:35,"372 Dogwood St, Los Angeles, CA 90001" +182957,Wired Headphones,2,11.99,03/23/19 20:08,"128 1st St, Boston, MA 02215" +182958,Wired Headphones,1,11.99,03/23/19 22:15,"199 Wilson St, San Francisco, CA 94016" +182959,27in FHD Monitor,1,149.99,03/11/19 20:31,"422 Chestnut St, Dallas, TX 75001" +182960,Wired Headphones,1,11.99,03/19/19 12:23,"28 River St, San Francisco, CA 94016" +182961,Bose SoundSport Headphones,1,99.99,03/05/19 13:52,"477 Pine St, Dallas, TX 75001" +182962,Wired Headphones,1,11.99,03/08/19 22:24,"55 10th St, San Francisco, CA 94016" +182963,ThinkPad Laptop,1,999.99,03/27/19 12:29,"573 Cherry St, Seattle, WA 98101" +182964,AAA Batteries (4-pack),3,2.99,03/09/19 23:18,"376 Johnson St, Austin, TX 73301" +182965,Vareebadd Phone,1,400,03/13/19 22:50,"13 Johnson St, Austin, TX 73301" +182966,Lightning Charging Cable,1,14.95,03/17/19 23:14,"567 Highland St, Dallas, TX 75001" +182967,AAA Batteries (4-pack),2,2.99,03/03/19 18:07,"60 Jackson St, Boston, MA 02215" +182968,USB-C Charging Cable,1,11.95,03/29/19 19:08,"377 Chestnut St, Austin, TX 73301" +182969,34in Ultrawide Monitor,1,379.99,03/09/19 12:25,"432 Hickory St, Portland, OR 97035" +182970,iPhone,1,700,03/22/19 15:09,"690 Spruce St, San Francisco, CA 94016" +182971,iPhone,1,700,03/25/19 12:21,"668 Willow St, Los Angeles, CA 90001" +182972,LG Washing Machine,1,600.0,03/16/19 19:04,"863 11th St, Austin, TX 73301" +182973,Flatscreen TV,1,300,03/08/19 13:00,"875 North St, Boston, MA 02215" +182974,Apple Airpods Headphones,1,150,03/29/19 19:56,"403 Cedar St, Atlanta, GA 30301" +182975,AA Batteries (4-pack),2,3.84,03/23/19 10:47,"638 12th St, Boston, MA 02215" +182976,27in FHD Monitor,1,149.99,03/22/19 19:22,"728 6th St, Austin, TX 73301" +182977,ThinkPad Laptop,1,999.99,03/16/19 16:49,"42 Park St, Los Angeles, CA 90001" +182978,AAA Batteries (4-pack),2,2.99,03/15/19 17:12,"411 Dogwood St, San Francisco, CA 94016" +182979,AAA Batteries (4-pack),4,2.99,03/28/19 18:03,"829 Hickory St, Boston, MA 02215" +182980,Lightning Charging Cable,1,14.95,03/07/19 10:25,"59 Adams St, San Francisco, CA 94016" +182981,Lightning Charging Cable,1,14.95,03/15/19 12:40,"223 Johnson St, New York City, NY 10001" +182982,AA Batteries (4-pack),1,3.84,03/16/19 21:59,"427 Lake St, Atlanta, GA 30301" +182983,iPhone,1,700,03/02/19 11:26,"197 7th St, Austin, TX 73301" +182984,iPhone,1,700,03/29/19 18:35,"733 Cherry St, San Francisco, CA 94016" +182985,Apple Airpods Headphones,1,150,03/14/19 13:23,"470 9th St, Los Angeles, CA 90001" +182986,27in 4K Gaming Monitor,1,389.99,03/05/19 00:30,"644 Johnson St, Austin, TX 73301" +182987,Apple Airpods Headphones,1,150,03/02/19 14:21,"875 Forest St, New York City, NY 10001" +182988,Bose SoundSport Headphones,1,99.99,03/07/19 21:54,"300 Walnut St, Los Angeles, CA 90001" +182989,Bose SoundSport Headphones,1,99.99,03/09/19 19:20,"568 Wilson St, Austin, TX 73301" +182990,ThinkPad Laptop,1,999.99,03/12/19 15:31,"30 Willow St, San Francisco, CA 94016" +182991,USB-C Charging Cable,1,11.95,03/15/19 09:54,"291 Lakeview St, Austin, TX 73301" +182992,Apple Airpods Headphones,1,150,03/21/19 01:28,"582 Lincoln St, Austin, TX 73301" +182993,Wired Headphones,1,11.99,03/05/19 13:28,"294 Cedar St, San Francisco, CA 94016" +182994,34in Ultrawide Monitor,1,379.99,03/22/19 09:17,"615 Jefferson St, Los Angeles, CA 90001" +182995,27in 4K Gaming Monitor,1,389.99,03/25/19 10:50,"358 Spruce St, Los Angeles, CA 90001" +182996,AAA Batteries (4-pack),1,2.99,03/27/19 20:09,"650 South St, San Francisco, CA 94016" +182997,Bose SoundSport Headphones,1,99.99,03/22/19 09:27,"397 Chestnut St, San Francisco, CA 94016" +182998,USB-C Charging Cable,1,11.95,03/22/19 19:16,"230 Walnut St, San Francisco, CA 94016" +182999,USB-C Charging Cable,1,11.95,03/14/19 10:20,"863 Willow St, Boston, MA 02215" +183000,USB-C Charging Cable,1,11.95,03/28/19 06:40,"31 Church St, Austin, TX 73301" +183001,Google Phone,1,600,03/18/19 18:31,"626 Adams St, San Francisco, CA 94016" +183002,Wired Headphones,1,11.99,03/06/19 17:44,"813 Hill St, Los Angeles, CA 90001" +183003,27in FHD Monitor,1,149.99,03/29/19 15:01,"494 Washington St, Boston, MA 02215" +183004,AAA Batteries (4-pack),1,2.99,03/26/19 09:47,"966 Main St, Austin, TX 73301" +183005,27in 4K Gaming Monitor,1,389.99,03/13/19 08:50,"800 Madison St, Los Angeles, CA 90001" +183006,Lightning Charging Cable,1,14.95,03/14/19 02:11,"976 Forest St, San Francisco, CA 94016" +183007,Bose SoundSport Headphones,1,99.99,03/05/19 11:56,"853 Pine St, New York City, NY 10001" +183008,iPhone,1,700,03/15/19 14:29,"411 Hickory St, Los Angeles, CA 90001" +183009,AA Batteries (4-pack),1,3.84,03/30/19 22:15,"68 2nd St, San Francisco, CA 94016" +183010,AA Batteries (4-pack),1,3.84,03/03/19 12:07,"779 Sunset St, Dallas, TX 75001" +183011,AA Batteries (4-pack),1,3.84,03/08/19 09:48,"518 4th St, San Francisco, CA 94016" +183012,20in Monitor,1,109.99,03/06/19 09:20,"242 Elm St, New York City, NY 10001" +183013,ThinkPad Laptop,1,999.99,03/09/19 09:14,"489 Spruce St, Boston, MA 02215" +183014,Wired Headphones,1,11.99,03/12/19 14:43,"937 Spruce St, San Francisco, CA 94016" +183015,Bose SoundSport Headphones,1,99.99,03/28/19 10:52,"967 Dogwood St, Portland, OR 97035" +183016,Bose SoundSport Headphones,1,99.99,03/23/19 16:14,"639 Hill St, Atlanta, GA 30301" +183017,AA Batteries (4-pack),1,3.84,03/29/19 01:21,"458 Chestnut St, Los Angeles, CA 90001" +183018,Apple Airpods Headphones,1,150,03/04/19 23:11,"128 Jefferson St, San Francisco, CA 94016" +183019,Lightning Charging Cable,1,14.95,03/31/19 22:32,"797 Pine St, Atlanta, GA 30301" +183020,AA Batteries (4-pack),3,3.84,03/05/19 20:28,"234 Chestnut St, Los Angeles, CA 90001" +183021,ThinkPad Laptop,1,999.99,03/19/19 00:09,"417 12th St, Dallas, TX 75001" +183022,Google Phone,1,600,03/17/19 14:42,"144 Cherry St, Portland, OR 97035" +183023,Apple Airpods Headphones,1,150,03/23/19 20:14,"924 6th St, San Francisco, CA 94016" +183024,AA Batteries (4-pack),1,3.84,03/10/19 20:35,"851 Elm St, San Francisco, CA 94016" +183025,USB-C Charging Cable,1,11.95,03/22/19 11:20,"699 12th St, New York City, NY 10001" +183026,Wired Headphones,1,11.99,03/20/19 10:42,"304 Lake St, Los Angeles, CA 90001" +183027,AAA Batteries (4-pack),3,2.99,03/07/19 23:24,"310 2nd St, Boston, MA 02215" +183028,Bose SoundSport Headphones,1,99.99,03/12/19 12:52,"248 Chestnut St, Portland, OR 97035" +183029,34in Ultrawide Monitor,1,379.99,03/17/19 19:19,"354 Cherry St, Boston, MA 02215" +183030,iPhone,1,700,03/19/19 13:46,"834 Adams St, Los Angeles, CA 90001" +183031,USB-C Charging Cable,1,11.95,03/25/19 18:36,"688 9th St, San Francisco, CA 94016" +183032,USB-C Charging Cable,1,11.95,03/16/19 11:16,"715 Main St, Portland, OR 97035" +183033,AA Batteries (4-pack),5,3.84,03/01/19 15:47,"482 2nd St, San Francisco, CA 94016" +183034,34in Ultrawide Monitor,1,379.99,03/24/19 21:03,"895 Washington St, Los Angeles, CA 90001" +183035,Wired Headphones,2,11.99,03/07/19 13:31,"625 Spruce St, San Francisco, CA 94016" +183036,Wired Headphones,1,11.99,03/14/19 22:18,"281 Sunset St, San Francisco, CA 94016" +183037,27in 4K Gaming Monitor,1,389.99,03/25/19 17:19,"248 Chestnut St, Boston, MA 02215" +183038,27in 4K Gaming Monitor,1,389.99,03/17/19 12:55,"754 Pine St, San Francisco, CA 94016" +183039,27in FHD Monitor,1,149.99,03/08/19 20:14,"398 South St, Los Angeles, CA 90001" +183040,Bose SoundSport Headphones,1,99.99,03/31/19 07:51,"416 North St, Seattle, WA 98101" +183041,Apple Airpods Headphones,1,150,03/09/19 19:27,"325 6th St, Los Angeles, CA 90001" +183042,Wired Headphones,1,11.99,03/22/19 19:38,"72 Chestnut St, Boston, MA 02215" +183043,20in Monitor,1,109.99,03/08/19 21:28,"647 Hill St, Portland, OR 97035" +183044,Bose SoundSport Headphones,1,99.99,03/22/19 13:51,"402 Madison St, Portland, OR 97035" +183045,27in FHD Monitor,1,149.99,03/07/19 02:26,"795 Cedar St, Seattle, WA 98101" +183046,Lightning Charging Cable,1,14.95,03/18/19 15:33,"133 Chestnut St, Dallas, TX 75001" +183047,27in FHD Monitor,1,149.99,03/16/19 22:01,"146 Forest St, San Francisco, CA 94016" +183048,27in 4K Gaming Monitor,1,389.99,03/23/19 12:52,"715 Church St, Portland, OR 97035" +183049,USB-C Charging Cable,1,11.95,03/19/19 11:59,"719 West St, New York City, NY 10001" +183050,USB-C Charging Cable,1,11.95,03/13/19 23:39,"28 Jackson St, New York City, NY 10001" +183051,Lightning Charging Cable,1,14.95,03/22/19 18:56,"6 Washington St, Atlanta, GA 30301" +183052,Wired Headphones,1,11.99,03/12/19 15:22,"534 Jackson St, Austin, TX 73301" +183053,Apple Airpods Headphones,1,150,03/28/19 20:09,"651 12th St, Austin, TX 73301" +183054,Lightning Charging Cable,1,14.95,03/27/19 21:32,"670 Pine St, Los Angeles, CA 90001" +183055,AA Batteries (4-pack),1,3.84,03/03/19 10:28,"521 Meadow St, Boston, MA 02215" +183056,Wired Headphones,1,11.99,03/07/19 19:09,"140 Wilson St, Dallas, TX 75001" +183057,Wired Headphones,1,11.99,03/01/19 21:21,"764 Jefferson St, Atlanta, GA 30301" +183058,AA Batteries (4-pack),1,3.84,03/23/19 00:30,"2 Jackson St, Los Angeles, CA 90001" +183059,Google Phone,1,600,03/08/19 12:49,"152 Pine St, Seattle, WA 98101" +183059,USB-C Charging Cable,1,11.95,03/08/19 12:49,"152 Pine St, Seattle, WA 98101" +183060,AAA Batteries (4-pack),2,2.99,03/26/19 18:16,"573 South St, San Francisco, CA 94016" +183061,iPhone,1,700,03/29/19 10:44,"172 11th St, New York City, NY 10001" +183062,AA Batteries (4-pack),1,3.84,03/06/19 17:31,"20 Willow St, Atlanta, GA 30301" +183063,Wired Headphones,1,11.99,03/17/19 19:02,"145 Johnson St, Austin, TX 73301" +183064,Lightning Charging Cable,1,14.95,03/13/19 08:40,"213 9th St, Los Angeles, CA 90001" +183065,iPhone,1,700,03/07/19 15:32,"940 Dogwood St, New York City, NY 10001" +183065,Wired Headphones,1,11.99,03/07/19 15:32,"940 Dogwood St, New York City, NY 10001" +183066,USB-C Charging Cable,1,11.95,03/04/19 09:37,"478 Church St, Boston, MA 02215" +183067,Flatscreen TV,1,300,03/15/19 11:24,"894 Chestnut St, Boston, MA 02215" +183067,34in Ultrawide Monitor,1,379.99,03/15/19 11:24,"894 Chestnut St, Boston, MA 02215" +183068,USB-C Charging Cable,1,11.95,03/22/19 10:41,"953 Meadow St, Los Angeles, CA 90001" +183069,Bose SoundSport Headphones,1,99.99,03/26/19 19:05,"963 Willow St, Atlanta, GA 30301" +183070,27in FHD Monitor,2,149.99,03/15/19 01:05,"665 2nd St, Seattle, WA 98101" +183071,Bose SoundSport Headphones,1,99.99,03/06/19 17:09,"971 Lincoln St, Los Angeles, CA 90001" +183072,Bose SoundSport Headphones,1,99.99,03/14/19 17:13,"6 Cedar St, Atlanta, GA 30301" +183073,20in Monitor,1,109.99,03/17/19 06:04,"546 Pine St, Dallas, TX 75001" +183074,34in Ultrawide Monitor,1,379.99,03/17/19 14:17,"328 14th St, San Francisco, CA 94016" +183075,AAA Batteries (4-pack),1,2.99,03/26/19 10:12,"841 Meadow St, Boston, MA 02215" +183076,27in FHD Monitor,1,149.99,03/23/19 21:04,"89 7th St, San Francisco, CA 94016" +,,,,, +183077,Wired Headphones,1,11.99,03/30/19 13:51,"834 Meadow St, Portland, OR 97035" +183078,AA Batteries (4-pack),1,3.84,03/20/19 15:27,"579 Jackson St, Dallas, TX 75001" +183079,USB-C Charging Cable,1,11.95,03/05/19 09:19,"458 Adams St, Atlanta, GA 30301" +183080,USB-C Charging Cable,1,11.95,03/01/19 08:19,"96 6th St, Boston, MA 02215" +183081,Lightning Charging Cable,1,14.95,03/07/19 20:35,"527 Jackson St, New York City, NY 10001" +183082,USB-C Charging Cable,1,11.95,03/02/19 12:50,"250 Elm St, Portland, OR 97035" +183082,Apple Airpods Headphones,1,150,03/02/19 12:50,"250 Elm St, Portland, OR 97035" +183083,AAA Batteries (4-pack),1,2.99,03/17/19 20:37,"834 Cherry St, San Francisco, CA 94016" +183084,Flatscreen TV,1,300,03/31/19 09:01,"233 Johnson St, New York City, NY 10001" +183085,Wired Headphones,1,11.99,03/29/19 16:03,"478 Meadow St, Los Angeles, CA 90001" +183086,Wired Headphones,1,11.99,03/18/19 15:51,"257 Walnut St, San Francisco, CA 94016" +183087,USB-C Charging Cable,1,11.95,03/05/19 19:47,"462 11th St, Los Angeles, CA 90001" +183088,Apple Airpods Headphones,1,150,03/03/19 07:45,"444 Adams St, San Francisco, CA 94016" +183089,AAA Batteries (4-pack),2,2.99,03/22/19 12:00,"254 North St, Dallas, TX 75001" +183090,AAA Batteries (4-pack),1,2.99,03/24/19 13:23,"469 Madison St, Los Angeles, CA 90001" +183091,Lightning Charging Cable,1,14.95,03/17/19 14:04,"409 Church St, New York City, NY 10001" +183092,USB-C Charging Cable,1,11.95,03/23/19 11:47,"683 Main St, Atlanta, GA 30301" +183093,AA Batteries (4-pack),1,3.84,03/31/19 21:21,"899 Elm St, San Francisco, CA 94016" +183094,Bose SoundSport Headphones,1,99.99,03/10/19 11:07,"618 Walnut St, Portland, OR 97035" +183095,AA Batteries (4-pack),2,3.84,03/12/19 08:40,"251 Johnson St, New York City, NY 10001" +183096,Macbook Pro Laptop,1,1700,03/23/19 19:23,"17 River St, San Francisco, CA 94016" +183097,Flatscreen TV,1,300,03/09/19 11:39,"264 Meadow St, San Francisco, CA 94016" +183098,27in 4K Gaming Monitor,1,389.99,03/26/19 15:27,"303 South St, Atlanta, GA 30301" +183099,AAA Batteries (4-pack),5,2.99,03/22/19 05:22,"187 Hickory St, New York City, NY 10001" +183100,AAA Batteries (4-pack),1,2.99,03/05/19 16:11,"94 Madison St, New York City, NY 10001" +183101,20in Monitor,1,109.99,03/12/19 15:23,"768 Sunset St, Portland, OR 97035" +183102,34in Ultrawide Monitor,1,379.99,03/17/19 12:00,"83 Forest St, San Francisco, CA 94016" +183103,Wired Headphones,2,11.99,03/16/19 12:00,"888 Ridge St, New York City, NY 10001" +183104,Wired Headphones,1,11.99,03/11/19 08:31,"643 Sunset St, San Francisco, CA 94016" +183105,Lightning Charging Cable,1,14.95,03/13/19 11:18,"264 Main St, Boston, MA 02215" +183106,USB-C Charging Cable,1,11.95,03/15/19 13:04,"994 5th St, Dallas, TX 75001" +183107,Bose SoundSport Headphones,1,99.99,03/26/19 16:37,"758 Jackson St, Boston, MA 02215" +183108,Macbook Pro Laptop,1,1700,03/06/19 12:47,"58 Church St, Seattle, WA 98101" +183109,USB-C Charging Cable,1,11.95,03/20/19 15:53,"63 11th St, San Francisco, CA 94016" +183110,Bose SoundSport Headphones,1,99.99,03/07/19 15:15,"584 Adams St, Boston, MA 02215" +183111,Lightning Charging Cable,1,14.95,03/06/19 18:22,"59 West St, Portland, OR 97035" +183112,Bose SoundSport Headphones,1,99.99,03/24/19 08:08,"942 Church St, Seattle, WA 98101" +183113,Wired Headphones,1,11.99,03/25/19 10:27,"675 North St, San Francisco, CA 94016" +183114,AA Batteries (4-pack),1,3.84,03/08/19 13:23,"819 Wilson St, New York City, NY 10001" +183115,AA Batteries (4-pack),1,3.84,03/06/19 15:35,"766 8th St, San Francisco, CA 94016" +183116,Bose SoundSport Headphones,1,99.99,03/28/19 13:14,"839 North St, San Francisco, CA 94016" +183116,Flatscreen TV,1,300,03/28/19 13:14,"839 North St, San Francisco, CA 94016" +183117,Wired Headphones,1,11.99,03/19/19 20:30,"781 Walnut St, Portland, OR 97035" +183118,AA Batteries (4-pack),1,3.84,03/13/19 20:22,"134 Center St, Atlanta, GA 30301" +183119,34in Ultrawide Monitor,1,379.99,03/06/19 05:55,"819 9th St, Dallas, TX 75001" +183120,iPhone,1,700,03/12/19 21:06,"652 Johnson St, Seattle, WA 98101" +183121,Lightning Charging Cable,1,14.95,03/27/19 14:01,"321 Maple St, Los Angeles, CA 90001" +183122,27in FHD Monitor,1,149.99,03/19/19 13:02,"239 River St, Dallas, TX 75001" +183123,Lightning Charging Cable,2,14.95,03/24/19 05:51,"28 Elm St, Seattle, WA 98101" +183124,34in Ultrawide Monitor,1,379.99,03/22/19 11:47,"368 Ridge St, Los Angeles, CA 90001" +183125,27in 4K Gaming Monitor,1,389.99,03/07/19 21:31,"915 Pine St, Boston, MA 02215" +183126,AAA Batteries (4-pack),1,2.99,03/11/19 08:46,"996 2nd St, Seattle, WA 98101" +183127,Wired Headphones,1,11.99,03/05/19 05:38,"627 Hill St, Austin, TX 73301" +183128,USB-C Charging Cable,1,11.95,03/18/19 20:57,"49 Wilson St, San Francisco, CA 94016" +183129,USB-C Charging Cable,1,11.95,03/06/19 14:43,"304 West St, San Francisco, CA 94016" +183130,Wired Headphones,1,11.99,03/18/19 15:20,"294 9th St, New York City, NY 10001" +183131,iPhone,1,700,03/22/19 12:51,"806 Washington St, Los Angeles, CA 90001" +183132,Bose SoundSport Headphones,1,99.99,03/14/19 18:45,"120 North St, New York City, NY 10001" +183133,Wired Headphones,1,11.99,03/18/19 13:24,"413 Ridge St, San Francisco, CA 94016" +183134,Apple Airpods Headphones,1,150,03/19/19 06:37,"228 Park St, Los Angeles, CA 90001" +183135,Apple Airpods Headphones,1,150,03/15/19 14:50,"100 North St, Dallas, TX 75001" +183136,AA Batteries (4-pack),1,3.84,03/17/19 21:21,"839 Lincoln St, Boston, MA 02215" +183137,ThinkPad Laptop,1,999.99,03/13/19 14:09,"935 1st St, Atlanta, GA 30301" +183138,Bose SoundSport Headphones,1,99.99,03/11/19 20:20,"104 River St, Los Angeles, CA 90001" +183139,Bose SoundSport Headphones,1,99.99,03/31/19 11:12,"738 Lincoln St, Atlanta, GA 30301" +183140,AAA Batteries (4-pack),1,2.99,03/05/19 19:09,"777 9th St, San Francisco, CA 94016" +183141,USB-C Charging Cable,1,11.95,03/12/19 19:43,"397 Lakeview St, Boston, MA 02215" +183142,AAA Batteries (4-pack),2,2.99,03/31/19 19:42,"51 Ridge St, New York City, NY 10001" +183143,Google Phone,1,600,03/04/19 15:53,"549 South St, Atlanta, GA 30301" +183143,USB-C Charging Cable,4,11.95,03/04/19 15:53,"549 South St, Atlanta, GA 30301" +183144,iPhone,1,700,03/17/19 17:56,"986 10th St, Austin, TX 73301" +183145,AAA Batteries (4-pack),2,2.99,03/15/19 20:53,"784 9th St, New York City, NY 10001" +183146,AAA Batteries (4-pack),1,2.99,03/02/19 18:41,"241 Adams St, Atlanta, GA 30301" +183147,Apple Airpods Headphones,1,150,03/18/19 17:20,"995 Maple St, San Francisco, CA 94016" +183148,Wired Headphones,1,11.99,03/16/19 10:17,"955 Highland St, Boston, MA 02215" +183149,Lightning Charging Cable,1,14.95,03/04/19 14:17,"669 West St, Dallas, TX 75001" +183150,27in FHD Monitor,1,149.99,03/22/19 14:05,"402 13th St, Portland, OR 97035" +183151,27in 4K Gaming Monitor,1,389.99,03/04/19 20:00,"244 River St, Portland, OR 97035" +183152,AA Batteries (4-pack),1,3.84,03/18/19 11:16,"468 Lakeview St, Dallas, TX 75001" +183153,Lightning Charging Cable,1,14.95,03/31/19 22:57,"457 Hill St, Austin, TX 73301" +183154,20in Monitor,1,109.99,03/17/19 12:49,"278 Willow St, Portland, ME 04101" +183155,Macbook Pro Laptop,1,1700,03/14/19 18:42,"816 Hill St, Seattle, WA 98101" +183156,AA Batteries (4-pack),1,3.84,03/02/19 20:02,"644 14th St, San Francisco, CA 94016" +183157,27in FHD Monitor,1,149.99,03/07/19 20:08,"597 Johnson St, Portland, OR 97035" +183158,Wired Headphones,1,11.99,03/26/19 11:49,"638 Adams St, Boston, MA 02215" +183159,Macbook Pro Laptop,1,1700,03/26/19 09:19,"87 12th St, Portland, ME 04101" +183160,AAA Batteries (4-pack),1,2.99,03/27/19 17:35,"767 Sunset St, Austin, TX 73301" +183161,Bose SoundSport Headphones,1,99.99,03/27/19 12:11,"864 Sunset St, Dallas, TX 75001" +183162,USB-C Charging Cable,2,11.95,03/24/19 13:42,"503 Madison St, Los Angeles, CA 90001" +183163,Bose SoundSport Headphones,1,99.99,03/28/19 17:46,"261 Lakeview St, Boston, MA 02215" +183163,AAA Batteries (4-pack),1,2.99,03/28/19 17:46,"261 Lakeview St, Boston, MA 02215" +183164,Lightning Charging Cable,2,14.95,03/02/19 22:30,"384 Church St, San Francisco, CA 94016" +183165,Bose SoundSport Headphones,1,99.99,03/06/19 22:34,"941 Spruce St, Atlanta, GA 30301" +183166,USB-C Charging Cable,1,11.95,03/08/19 20:51,"395 9th St, Portland, ME 04101" +183167,Apple Airpods Headphones,1,150,03/06/19 01:14,"216 Chestnut St, Dallas, TX 75001" +183168,Apple Airpods Headphones,1,150,03/01/19 23:11,"920 11th St, San Francisco, CA 94016" +183169,Wired Headphones,1,11.99,03/07/19 22:35,"548 13th St, Los Angeles, CA 90001" +183170,Bose SoundSport Headphones,1,99.99,03/29/19 12:15,"307 Washington St, Los Angeles, CA 90001" +183171,Bose SoundSport Headphones,1,99.99,03/29/19 00:35,"389 Lincoln St, Portland, OR 97035" +183172,Lightning Charging Cable,1,14.95,03/21/19 08:06,"181 Madison St, Dallas, TX 75001" +183173,USB-C Charging Cable,1,11.95,03/16/19 18:39,"42 Meadow St, Los Angeles, CA 90001" +183174,AA Batteries (4-pack),1,3.84,03/01/19 12:25,"855 Highland St, Portland, OR 97035" +183175,Wired Headphones,1,11.99,03/02/19 16:29,"273 Elm St, Los Angeles, CA 90001" +183176,AA Batteries (4-pack),1,3.84,03/30/19 09:07,"3 4th St, Atlanta, GA 30301" +183177,27in 4K Gaming Monitor,1,389.99,03/18/19 15:06,"616 5th St, Los Angeles, CA 90001" +183178,Flatscreen TV,1,300,03/21/19 14:25,"139 Washington St, Dallas, TX 75001" +183179,AAA Batteries (4-pack),1,2.99,03/04/19 13:43,"113 Ridge St, San Francisco, CA 94016" +183180,USB-C Charging Cable,1,11.95,03/10/19 20:24,"249 Maple St, New York City, NY 10001" +183181,AA Batteries (4-pack),1,3.84,03/17/19 17:00,"695 8th St, San Francisco, CA 94016" +183182,Bose SoundSport Headphones,1,99.99,03/22/19 21:06,"781 Forest St, San Francisco, CA 94016" +183183,AAA Batteries (4-pack),1,2.99,03/22/19 10:35,"148 Center St, San Francisco, CA 94016" +183184,USB-C Charging Cable,1,11.95,04/01/19 00:29,"154 10th St, Boston, MA 02215" +183185,Apple Airpods Headphones,1,150,03/13/19 01:12,"536 12th St, Los Angeles, CA 90001" +183186,Lightning Charging Cable,1,14.95,03/26/19 21:12,"304 Johnson St, Dallas, TX 75001" +183186,Bose SoundSport Headphones,1,99.99,03/26/19 21:12,"304 Johnson St, Dallas, TX 75001" +183187,AAA Batteries (4-pack),3,2.99,03/16/19 12:29,"123 10th St, San Francisco, CA 94016" +183188,AA Batteries (4-pack),2,3.84,03/20/19 08:09,"385 Lake St, Dallas, TX 75001" +183189,Wired Headphones,1,11.99,03/07/19 09:14,"513 Dogwood St, San Francisco, CA 94016" +183190,Wired Headphones,1,11.99,03/15/19 14:53,"638 Walnut St, Los Angeles, CA 90001" +183191,Macbook Pro Laptop,1,1700,03/11/19 09:12,"712 Hickory St, Boston, MA 02215" +183192,Bose SoundSport Headphones,1,99.99,03/10/19 10:12,"438 Highland St, New York City, NY 10001" +183193,Apple Airpods Headphones,1,150,03/09/19 20:30,"247 2nd St, San Francisco, CA 94016" +183194,AAA Batteries (4-pack),1,2.99,03/23/19 14:10,"70 Elm St, Los Angeles, CA 90001" +183195,AA Batteries (4-pack),2,3.84,03/21/19 17:29,"898 Main St, Boston, MA 02215" +183196,Wired Headphones,1,11.99,03/05/19 18:56,"602 6th St, San Francisco, CA 94016" +183197,AAA Batteries (4-pack),1,2.99,03/04/19 20:45,"477 Wilson St, New York City, NY 10001" +183198,27in FHD Monitor,1,149.99,03/13/19 06:47,"471 4th St, San Francisco, CA 94016" +183199,AA Batteries (4-pack),1,3.84,03/04/19 16:30,"543 Cedar St, San Francisco, CA 94016" +183200,iPhone,1,700,03/28/19 11:37,"342 9th St, Los Angeles, CA 90001" +183201,Bose SoundSport Headphones,1,99.99,03/14/19 11:24,"223 12th St, Seattle, WA 98101" +183202,iPhone,1,700,03/22/19 20:27,"699 Elm St, San Francisco, CA 94016" +183203,Vareebadd Phone,1,400,03/11/19 15:26,"241 Park St, Los Angeles, CA 90001" +183204,USB-C Charging Cable,1,11.95,03/08/19 18:10,"122 10th St, Dallas, TX 75001" +183205,AA Batteries (4-pack),1,3.84,03/27/19 23:27,"333 Elm St, Seattle, WA 98101" +183206,Wired Headphones,1,11.99,03/07/19 08:16,"749 Madison St, Austin, TX 73301" +183207,Lightning Charging Cable,1,14.95,03/31/19 16:32,"411 Pine St, Boston, MA 02215" +183208,Wired Headphones,1,11.99,03/29/19 08:55,"225 Lakeview St, Atlanta, GA 30301" +183209,Wired Headphones,1,11.99,03/14/19 16:30,"734 2nd St, Austin, TX 73301" +183210,AAA Batteries (4-pack),3,2.99,03/09/19 23:52,"704 11th St, Seattle, WA 98101" +183211,AA Batteries (4-pack),1,3.84,03/06/19 06:04,"82 Lake St, Los Angeles, CA 90001" +183212,Lightning Charging Cable,2,14.95,03/09/19 19:54,"146 Cedar St, San Francisco, CA 94016" +183213,Wired Headphones,1,11.99,03/06/19 15:16,"98 Jefferson St, San Francisco, CA 94016" +183214,34in Ultrawide Monitor,1,379.99,03/10/19 21:58,"468 Jackson St, Los Angeles, CA 90001" +183215,Bose SoundSport Headphones,1,99.99,03/08/19 21:49,"100 Lake St, Austin, TX 73301" +183216,AAA Batteries (4-pack),1,2.99,03/28/19 11:05,"326 Church St, New York City, NY 10001" +183217,USB-C Charging Cable,1,11.95,03/17/19 22:20,"535 Walnut St, Los Angeles, CA 90001" +183218,Bose SoundSport Headphones,1,99.99,03/27/19 16:32,"748 South St, Dallas, TX 75001" +183219,Lightning Charging Cable,1,14.95,03/30/19 00:41,"823 13th St, Austin, TX 73301" +183220,Lightning Charging Cable,1,14.95,03/20/19 20:18,"25 1st St, San Francisco, CA 94016" +183221,Google Phone,1,600,03/12/19 15:04,"68 Hill St, San Francisco, CA 94016" +183222,USB-C Charging Cable,1,11.95,03/12/19 15:30,"992 Lakeview St, Austin, TX 73301" +183223,AA Batteries (4-pack),1,3.84,03/29/19 18:47,"184 Park St, New York City, NY 10001" +183224,Bose SoundSport Headphones,1,99.99,03/10/19 15:57,"681 Meadow St, San Francisco, CA 94016" +183225,ThinkPad Laptop,1,999.99,03/14/19 20:48,"115 Madison St, Los Angeles, CA 90001" +183226,AAA Batteries (4-pack),1,2.99,03/07/19 00:35,"88 Center St, Los Angeles, CA 90001" +183227,34in Ultrawide Monitor,1,379.99,03/29/19 23:51,"747 5th St, Austin, TX 73301" +183228,AA Batteries (4-pack),3,3.84,03/31/19 20:25,"939 14th St, San Francisco, CA 94016" +183229,USB-C Charging Cable,1,11.95,03/22/19 18:48,"351 Main St, Boston, MA 02215" +183230,20in Monitor,1,109.99,03/20/19 11:34,"222 Church St, Los Angeles, CA 90001" +183231,34in Ultrawide Monitor,1,379.99,03/18/19 23:31,"2 Cherry St, Austin, TX 73301" +183232,AAA Batteries (4-pack),1,2.99,03/09/19 13:02,"608 Park St, Los Angeles, CA 90001" +183233,34in Ultrawide Monitor,1,379.99,03/11/19 18:57,"399 4th St, Dallas, TX 75001" +183234,27in FHD Monitor,1,149.99,03/07/19 06:41,"524 Forest St, Seattle, WA 98101" +183235,20in Monitor,1,109.99,03/23/19 21:20,"507 Cedar St, San Francisco, CA 94016" +183236,Flatscreen TV,1,300,03/01/19 12:48,"572 1st St, Los Angeles, CA 90001" +183237,Wired Headphones,1,11.99,03/30/19 15:33,"256 10th St, Atlanta, GA 30301" +183238,Wired Headphones,1,11.99,03/25/19 05:57,"352 Dogwood St, New York City, NY 10001" +183239,Lightning Charging Cable,1,14.95,03/19/19 14:34,"727 Spruce St, Seattle, WA 98101" +183240,AA Batteries (4-pack),1,3.84,03/12/19 13:08,"61 12th St, Boston, MA 02215" +183241,Bose SoundSport Headphones,1,99.99,03/12/19 15:36,"234 8th St, Los Angeles, CA 90001" +183242,Macbook Pro Laptop,1,1700,03/19/19 12:24,"845 Center St, Seattle, WA 98101" +183243,USB-C Charging Cable,1,11.95,03/14/19 17:55,"280 4th St, New York City, NY 10001" +183244,Lightning Charging Cable,1,14.95,03/10/19 13:13,"79 Johnson St, Boston, MA 02215" +183245,Apple Airpods Headphones,1,150,03/18/19 20:22,"659 4th St, New York City, NY 10001" +183246,USB-C Charging Cable,1,11.95,03/25/19 15:46,"99 Ridge St, Dallas, TX 75001" +183247,AA Batteries (4-pack),1,3.84,03/19/19 13:02,"61 Wilson St, Portland, OR 97035" +183248,AA Batteries (4-pack),1,3.84,03/14/19 23:51,"1 Cherry St, Los Angeles, CA 90001" +183249,Apple Airpods Headphones,1,150,03/28/19 14:18,"117 Walnut St, San Francisco, CA 94016" +183250,20in Monitor,1,109.99,03/21/19 10:20,"339 11th St, Portland, ME 04101" +183251,20in Monitor,1,109.99,03/20/19 10:55,"165 2nd St, Los Angeles, CA 90001" +183252,AAA Batteries (4-pack),2,2.99,03/31/19 18:48,"638 Cedar St, Los Angeles, CA 90001" +183253,Apple Airpods Headphones,1,150,03/02/19 20:59,"273 North St, Atlanta, GA 30301" +183254,Apple Airpods Headphones,1,150,03/02/19 13:15,"978 Elm St, Seattle, WA 98101" +183255,iPhone,1,700,03/30/19 14:51,"816 9th St, Boston, MA 02215" +183255,Lightning Charging Cable,1,14.95,03/30/19 14:51,"816 9th St, Boston, MA 02215" +183256,ThinkPad Laptop,1,999.99,03/09/19 21:30,"256 Highland St, Los Angeles, CA 90001" +183257,Apple Airpods Headphones,1,150,03/23/19 15:51,"419 Pine St, San Francisco, CA 94016" +183258,Wired Headphones,1,11.99,03/01/19 14:09,"330 Forest St, Los Angeles, CA 90001" +183259,Apple Airpods Headphones,1,150,03/11/19 14:00,"607 Lincoln St, San Francisco, CA 94016" +183260,iPhone,1,700,03/07/19 13:24,"13 Cherry St, New York City, NY 10001" +183261,AAA Batteries (4-pack),1,2.99,03/11/19 07:30,"829 Chestnut St, Boston, MA 02215" +183262,27in 4K Gaming Monitor,1,389.99,03/16/19 23:41,"427 Spruce St, Los Angeles, CA 90001" +183263,Flatscreen TV,1,300,03/09/19 11:05,"962 Cedar St, New York City, NY 10001" +183264,USB-C Charging Cable,1,11.95,03/07/19 06:06,"993 West St, Portland, OR 97035" +183265,Wired Headphones,1,11.99,03/29/19 10:21,"890 2nd St, Portland, OR 97035" +183266,ThinkPad Laptop,1,999.99,03/11/19 10:40,"70 14th St, Boston, MA 02215" +183267,iPhone,1,700,03/09/19 14:08,"532 Center St, Atlanta, GA 30301" +183268,AAA Batteries (4-pack),1,2.99,03/04/19 21:53,"598 Willow St, San Francisco, CA 94016" +183269,Apple Airpods Headphones,1,150,03/01/19 22:23,"319 Lakeview St, New York City, NY 10001" +183270,iPhone,1,700,03/04/19 14:52,"433 13th St, Los Angeles, CA 90001" +183270,Lightning Charging Cable,1,14.95,03/04/19 14:52,"433 13th St, Los Angeles, CA 90001" +183271,iPhone,1,700,03/01/19 21:14,"32 4th St, New York City, NY 10001" +183272,Lightning Charging Cable,1,14.95,03/05/19 07:46,"577 Dogwood St, San Francisco, CA 94016" +183273,27in FHD Monitor,1,149.99,03/02/19 20:48,"47 Sunset St, Portland, OR 97035" +183274,iPhone,1,700,03/07/19 11:38,"968 South St, Los Angeles, CA 90001" +183275,AA Batteries (4-pack),2,3.84,03/09/19 09:14,"65 2nd St, Los Angeles, CA 90001" +183276,AA Batteries (4-pack),1,3.84,03/04/19 16:38,"87 Madison St, San Francisco, CA 94016" +183277,Vareebadd Phone,1,400,03/03/19 23:57,"866 1st St, Portland, OR 97035" +183277,USB-C Charging Cable,1,11.95,03/03/19 23:57,"866 1st St, Portland, OR 97035" +183278,Macbook Pro Laptop,1,1700,03/18/19 16:49,"920 Chestnut St, Seattle, WA 98101" +183279,AA Batteries (4-pack),1,3.84,03/01/19 07:44,"86 Ridge St, Los Angeles, CA 90001" +183280,Bose SoundSport Headphones,1,99.99,03/08/19 15:01,"857 Dogwood St, San Francisco, CA 94016" +183281,USB-C Charging Cable,1,11.95,03/18/19 08:17,"440 Jefferson St, San Francisco, CA 94016" +183282,34in Ultrawide Monitor,1,379.99,03/13/19 19:41,"225 Park St, Los Angeles, CA 90001" +183283,Lightning Charging Cable,1,14.95,03/26/19 18:24,"727 Dogwood St, Boston, MA 02215" +183284,27in FHD Monitor,1,149.99,03/10/19 22:03,"828 5th St, New York City, NY 10001" +183285,Wired Headphones,1,11.99,03/27/19 21:13,"601 2nd St, Atlanta, GA 30301" +183286,AA Batteries (4-pack),2,3.84,03/12/19 22:02,"745 4th St, San Francisco, CA 94016" +183287,Flatscreen TV,1,300,03/19/19 14:26,"714 Spruce St, San Francisco, CA 94016" +183288,Wired Headphones,1,11.99,03/14/19 07:53,"5 Washington St, Los Angeles, CA 90001" +183289,AA Batteries (4-pack),1,3.84,03/12/19 18:16,"947 Forest St, Seattle, WA 98101" +183290,USB-C Charging Cable,1,11.95,03/08/19 16:57,"807 Maple St, Boston, MA 02215" +183291,Lightning Charging Cable,1,14.95,03/13/19 07:16,"183 Center St, New York City, NY 10001" +183292,AA Batteries (4-pack),1,3.84,03/07/19 10:56,"377 Sunset St, San Francisco, CA 94016" +183293,AAA Batteries (4-pack),1,2.99,03/05/19 11:06,"171 Dogwood St, Seattle, WA 98101" +183294,Apple Airpods Headphones,1,150,03/24/19 19:57,"205 Meadow St, Atlanta, GA 30301" +183295,USB-C Charging Cable,1,11.95,03/11/19 11:52,"474 Forest St, San Francisco, CA 94016" +183296,Lightning Charging Cable,1,14.95,03/13/19 10:13,"947 Adams St, Boston, MA 02215" +183297,AA Batteries (4-pack),2,3.84,03/01/19 15:18,"982 Maple St, Dallas, TX 75001" +183298,Apple Airpods Headphones,1,150,03/18/19 11:13,"204 Forest St, San Francisco, CA 94016" +183299,AA Batteries (4-pack),1,3.84,03/06/19 11:22,"86 Center St, San Francisco, CA 94016" +183300,Lightning Charging Cable,1,14.95,03/26/19 18:06,"231 Willow St, Dallas, TX 75001" +183301,Bose SoundSport Headphones,1,99.99,03/01/19 14:18,"5 Lake St, Austin, TX 73301" +183302,Apple Airpods Headphones,1,150,03/06/19 09:32,"910 North St, New York City, NY 10001" +183303,Flatscreen TV,1,300,03/14/19 10:12,"858 6th St, San Francisco, CA 94016" +183304,AA Batteries (4-pack),1,3.84,03/03/19 20:11,"470 Willow St, Seattle, WA 98101" +183305,Bose SoundSport Headphones,1,99.99,03/09/19 08:33,"95 13th St, Austin, TX 73301" +183306,AAA Batteries (4-pack),1,2.99,03/11/19 18:17,"580 Lakeview St, Los Angeles, CA 90001" +183307,Lightning Charging Cable,1,14.95,03/07/19 19:09,"807 Sunset St, Atlanta, GA 30301" +183308,Wired Headphones,1,11.99,03/06/19 19:57,"978 Jackson St, Dallas, TX 75001" +183309,LG Dryer,1,600.0,03/04/19 16:22,"674 Dogwood St, San Francisco, CA 94016" +183310,Wired Headphones,1,11.99,03/08/19 17:14,"286 Adams St, Los Angeles, CA 90001" +183311,Google Phone,1,600,03/15/19 00:10,"327 12th St, Los Angeles, CA 90001" +183312,AAA Batteries (4-pack),2,2.99,03/28/19 07:04,"819 8th St, Atlanta, GA 30301" +183313,Apple Airpods Headphones,1,150,03/13/19 22:07,"275 Walnut St, Atlanta, GA 30301" +183314,AA Batteries (4-pack),1,3.84,03/12/19 23:30,"133 Cedar St, Atlanta, GA 30301" +183315,Lightning Charging Cable,1,14.95,03/12/19 12:14,"536 Lake St, New York City, NY 10001" +183316,34in Ultrawide Monitor,1,379.99,03/14/19 19:09,"444 Sunset St, Boston, MA 02215" +183317,Wired Headphones,1,11.99,03/16/19 12:08,"743 Park St, Los Angeles, CA 90001" +183318,Flatscreen TV,1,300,03/16/19 19:50,"21 Walnut St, Atlanta, GA 30301" +183319,AAA Batteries (4-pack),1,2.99,03/10/19 14:31,"848 Dogwood St, Austin, TX 73301" +183320,USB-C Charging Cable,1,11.95,03/20/19 03:50,"639 Willow St, San Francisco, CA 94016" +183321,Flatscreen TV,1,300,03/08/19 14:40,"655 North St, Los Angeles, CA 90001" +183322,iPhone,1,700,03/27/19 09:58,"800 Spruce St, San Francisco, CA 94016" +183323,Bose SoundSport Headphones,1,99.99,03/23/19 18:58,"116 Spruce St, Seattle, WA 98101" +183324,AAA Batteries (4-pack),1,2.99,03/18/19 09:52,"619 Johnson St, New York City, NY 10001" +183325,Wired Headphones,1,11.99,03/06/19 21:54,"260 Wilson St, Seattle, WA 98101" +183326,iPhone,1,700,03/17/19 00:57,"183 13th St, Boston, MA 02215" +183327,Wired Headphones,1,11.99,03/26/19 14:18,"26 Pine St, Austin, TX 73301" +183328,AA Batteries (4-pack),2,3.84,03/27/19 21:00,"551 Ridge St, San Francisco, CA 94016" +183329,USB-C Charging Cable,1,11.95,03/14/19 11:34,"528 North St, Boston, MA 02215" +183330,Lightning Charging Cable,1,14.95,03/29/19 15:17,"483 Forest St, New York City, NY 10001" +183331,AAA Batteries (4-pack),1,2.99,03/31/19 09:33,"320 Cedar St, San Francisco, CA 94016" +183332,AAA Batteries (4-pack),1,2.99,03/12/19 19:33,"253 Maple St, San Francisco, CA 94016" +183333,AAA Batteries (4-pack),1,2.99,03/29/19 13:41,"860 Jefferson St, San Francisco, CA 94016" +183334,Lightning Charging Cable,1,14.95,03/05/19 02:54,"830 River St, Dallas, TX 75001" +183335,AAA Batteries (4-pack),1,2.99,03/05/19 08:23,"695 Maple St, New York City, NY 10001" +183336,AA Batteries (4-pack),1,3.84,03/10/19 12:02,"31 West St, Dallas, TX 75001" +183337,Lightning Charging Cable,1,14.95,03/27/19 11:27,"971 Main St, Los Angeles, CA 90001" +183338,USB-C Charging Cable,1,11.95,03/01/19 19:13,"264 Hill St, Los Angeles, CA 90001" +183339,34in Ultrawide Monitor,1,379.99,03/30/19 09:09,"924 Park St, Los Angeles, CA 90001" +183340,AA Batteries (4-pack),1,3.84,03/17/19 17:28,"380 Cherry St, Atlanta, GA 30301" +183341,Flatscreen TV,1,300,03/21/19 12:36,"286 Jackson St, Atlanta, GA 30301" +183342,USB-C Charging Cable,1,11.95,03/27/19 18:31,"2 Hill St, San Francisco, CA 94016" +183343,Bose SoundSport Headphones,1,99.99,03/01/19 13:35,"948 7th St, San Francisco, CA 94016" +183344,AAA Batteries (4-pack),1,2.99,03/11/19 18:57,"653 Cedar St, New York City, NY 10001" +183345,Bose SoundSport Headphones,1,99.99,03/06/19 12:43,"569 9th St, Atlanta, GA 30301" +183346,AAA Batteries (4-pack),1,2.99,03/23/19 15:10,"639 Jefferson St, Boston, MA 02215" +183347,Wired Headphones,1,11.99,03/29/19 18:05,"985 14th St, Los Angeles, CA 90001" +183348,iPhone,1,700,03/19/19 19:32,"909 Pine St, Seattle, WA 98101" +183349,AA Batteries (4-pack),1,3.84,03/27/19 16:00,"404 River St, San Francisco, CA 94016" +183350,27in FHD Monitor,1,149.99,03/30/19 20:41,"254 Lake St, Austin, TX 73301" +183351,Flatscreen TV,1,300,03/27/19 10:57,"893 9th St, Boston, MA 02215" +183352,AAA Batteries (4-pack),1,2.99,03/19/19 13:42,"69 5th St, San Francisco, CA 94016" +183353,27in FHD Monitor,1,149.99,03/11/19 19:26,"572 Hickory St, New York City, NY 10001" +183354,AA Batteries (4-pack),1,3.84,03/13/19 08:32,"126 10th St, Atlanta, GA 30301" +183355,AA Batteries (4-pack),1,3.84,03/19/19 16:33,"267 4th St, San Francisco, CA 94016" +183356,AA Batteries (4-pack),1,3.84,03/28/19 09:36,"8 Meadow St, Boston, MA 02215" +183357,Wired Headphones,1,11.99,03/09/19 20:35,"604 Park St, Atlanta, GA 30301" +183358,USB-C Charging Cable,1,11.95,03/27/19 10:01,"328 Lincoln St, San Francisco, CA 94016" +183359,USB-C Charging Cable,2,11.95,03/09/19 16:37,"719 Lakeview St, Boston, MA 02215" +183360,AA Batteries (4-pack),1,3.84,03/12/19 15:16,"195 Jackson St, New York City, NY 10001" +183361,Apple Airpods Headphones,1,150,03/02/19 10:23,"730 Hill St, Boston, MA 02215" +183362,ThinkPad Laptop,1,999.99,03/02/19 20:41,"808 Church St, San Francisco, CA 94016" +183363,27in 4K Gaming Monitor,1,389.99,03/11/19 19:52,"937 13th St, Boston, MA 02215" +183364,AAA Batteries (4-pack),1,2.99,03/20/19 16:47,"85 South St, Boston, MA 02215" +183365,AA Batteries (4-pack),1,3.84,03/04/19 09:08,"195 Forest St, Dallas, TX 75001" +183366,AA Batteries (4-pack),1,3.84,03/08/19 21:25,"318 Cedar St, Atlanta, GA 30301" +183367,Lightning Charging Cable,1,14.95,03/01/19 11:42,"938 Hickory St, San Francisco, CA 94016" +183368,34in Ultrawide Monitor,1,379.99,04/01/19 00:07,"728 13th St, San Francisco, CA 94016" +183369,20in Monitor,1,109.99,03/15/19 17:06,"223 10th St, New York City, NY 10001" +183370,27in 4K Gaming Monitor,1,389.99,03/18/19 10:47,"658 14th St, Atlanta, GA 30301" +183371,USB-C Charging Cable,1,11.95,03/19/19 14:22,"611 4th St, New York City, NY 10001" +183372,LG Dryer,1,600.0,03/09/19 13:55,"563 2nd St, San Francisco, CA 94016" +183373,Flatscreen TV,1,300,03/12/19 02:29,"580 2nd St, Portland, OR 97035" +183374,Wired Headphones,1,11.99,03/17/19 11:53,"648 Forest St, Portland, OR 97035" +183375,USB-C Charging Cable,1,11.95,03/29/19 13:33,"623 Pine St, Los Angeles, CA 90001" +183376,Lightning Charging Cable,3,14.95,03/07/19 18:30,"793 Washington St, Seattle, WA 98101" +183377,Apple Airpods Headphones,1,150,03/17/19 08:14,"975 5th St, Dallas, TX 75001" +183378,Lightning Charging Cable,1,14.95,03/03/19 22:43,"337 Sunset St, San Francisco, CA 94016" +183379,27in 4K Gaming Monitor,1,389.99,03/22/19 17:12,"888 Madison St, Dallas, TX 75001" +183380,Lightning Charging Cable,1,14.95,03/21/19 02:26,"461 10th St, Boston, MA 02215" +183381,Lightning Charging Cable,1,14.95,03/02/19 12:53,"225 Spruce St, Portland, OR 97035" +183382,AAA Batteries (4-pack),1,2.99,03/02/19 19:36,"951 10th St, Los Angeles, CA 90001" +183383,Wired Headphones,1,11.99,03/21/19 12:00,"188 4th St, Boston, MA 02215" +183384,Wired Headphones,1,11.99,03/29/19 18:19,"401 Park St, Los Angeles, CA 90001" +183385,AAA Batteries (4-pack),1,2.99,03/04/19 09:23,"957 12th St, New York City, NY 10001" +183386,AAA Batteries (4-pack),1,2.99,03/18/19 18:30,"221 12th St, San Francisco, CA 94016" +183387,Wired Headphones,1,11.99,03/07/19 21:43,"501 11th St, San Francisco, CA 94016" +183388,AA Batteries (4-pack),1,3.84,03/25/19 15:04,"490 Highland St, Los Angeles, CA 90001" +183389,Wired Headphones,1,11.99,03/15/19 09:12,"244 Elm St, New York City, NY 10001" +183390,27in 4K Gaming Monitor,1,389.99,03/25/19 19:15,"240 Church St, Los Angeles, CA 90001" +183391,AA Batteries (4-pack),1,3.84,03/31/19 09:52,"353 6th St, New York City, NY 10001" +183391,27in 4K Gaming Monitor,1,389.99,03/31/19 09:52,"353 6th St, New York City, NY 10001" +183392,27in FHD Monitor,1,149.99,03/28/19 19:30,"450 11th St, New York City, NY 10001" +183393,USB-C Charging Cable,1,11.95,03/31/19 10:25,"469 Spruce St, Dallas, TX 75001" +183394,AA Batteries (4-pack),1,3.84,03/31/19 19:45,"964 River St, Atlanta, GA 30301" +183395,Bose SoundSport Headphones,1,99.99,03/09/19 08:19,"811 10th St, San Francisco, CA 94016" +183396,Flatscreen TV,1,300,03/09/19 23:38,"886 14th St, Seattle, WA 98101" +183397,34in Ultrawide Monitor,1,379.99,03/22/19 10:02,"295 Hill St, Austin, TX 73301" +183398,AA Batteries (4-pack),2,3.84,03/27/19 08:16,"597 Hickory St, Austin, TX 73301" +183399,Apple Airpods Headphones,1,150,03/01/19 19:18,"535 Elm St, Los Angeles, CA 90001" +183400,27in FHD Monitor,1,149.99,03/27/19 19:37,"350 Center St, Atlanta, GA 30301" +183401,27in 4K Gaming Monitor,1,389.99,03/04/19 20:00,"967 Spruce St, Los Angeles, CA 90001" +183402,AAA Batteries (4-pack),2,2.99,03/23/19 16:25,"449 Highland St, Boston, MA 02215" +183403,AA Batteries (4-pack),2,3.84,03/20/19 21:21,"80 Wilson St, San Francisco, CA 94016" +183404,AA Batteries (4-pack),2,3.84,03/02/19 21:23,"486 Spruce St, Dallas, TX 75001" +183405,27in 4K Gaming Monitor,1,389.99,03/13/19 17:26,"481 2nd St, Los Angeles, CA 90001" +183406,USB-C Charging Cable,1,11.95,03/05/19 21:54,"538 Hill St, San Francisco, CA 94016" +183407,27in 4K Gaming Monitor,1,389.99,03/31/19 18:01,"372 Spruce St, San Francisco, CA 94016" +183408,LG Washing Machine,1,600.0,03/21/19 00:34,"211 Lakeview St, Boston, MA 02215" +183409,iPhone,1,700,03/09/19 08:56,"137 Hickory St, Los Angeles, CA 90001" +183409,ThinkPad Laptop,1,999.99,03/09/19 08:56,"137 Hickory St, Los Angeles, CA 90001" +183410,AA Batteries (4-pack),2,3.84,03/30/19 20:01,"871 2nd St, Los Angeles, CA 90001" +183411,34in Ultrawide Monitor,1,379.99,03/17/19 07:04,"203 Willow St, Los Angeles, CA 90001" +183412,27in 4K Gaming Monitor,1,389.99,03/31/19 13:00,"836 7th St, San Francisco, CA 94016" +183413,Bose SoundSport Headphones,1,99.99,03/29/19 19:00,"622 Willow St, San Francisco, CA 94016" +183414,Lightning Charging Cable,1,14.95,03/12/19 23:15,"932 4th St, San Francisco, CA 94016" +183415,USB-C Charging Cable,1,11.95,03/28/19 20:30,"713 Elm St, Seattle, WA 98101" +183416,Wired Headphones,1,11.99,03/04/19 15:23,"372 Elm St, Portland, ME 04101" +183417,Apple Airpods Headphones,1,150,03/28/19 20:29,"291 Center St, San Francisco, CA 94016" +183418,Bose SoundSport Headphones,1,99.99,03/31/19 13:45,"56 5th St, Portland, ME 04101" +183419,AA Batteries (4-pack),3,3.84,03/04/19 10:49,"443 Elm St, Austin, TX 73301" +183420,AAA Batteries (4-pack),3,2.99,03/30/19 21:55,"74 1st St, San Francisco, CA 94016" +183421,AA Batteries (4-pack),2,3.84,03/27/19 15:41,"593 River St, Dallas, TX 75001" +183422,Google Phone,1,600,03/30/19 09:47,"175 Adams St, Los Angeles, CA 90001" +183422,USB-C Charging Cable,1,11.95,03/30/19 09:47,"175 Adams St, Los Angeles, CA 90001" +183422,Lightning Charging Cable,1,14.95,03/30/19 09:47,"175 Adams St, Los Angeles, CA 90001" +183423,Macbook Pro Laptop,1,1700,03/15/19 15:29,"327 Forest St, San Francisco, CA 94016" +183424,Bose SoundSport Headphones,1,99.99,03/26/19 07:59,"518 10th St, New York City, NY 10001" +183425,Bose SoundSport Headphones,1,99.99,03/24/19 10:57,"513 Wilson St, San Francisco, CA 94016" +183426,AAA Batteries (4-pack),1,2.99,03/16/19 10:43,"311 11th St, New York City, NY 10001" +183427,AAA Batteries (4-pack),1,2.99,03/10/19 13:14,"452 Cedar St, Boston, MA 02215" +183428,27in 4K Gaming Monitor,1,389.99,03/01/19 21:28,"727 14th St, Atlanta, GA 30301" +183429,AAA Batteries (4-pack),1,2.99,03/05/19 10:26,"412 Madison St, San Francisco, CA 94016" +183430,34in Ultrawide Monitor,1,379.99,03/27/19 15:39,"158 Park St, Boston, MA 02215" +183431,Wired Headphones,1,11.99,03/17/19 20:29,"588 8th St, Austin, TX 73301" +183432,Wired Headphones,1,11.99,03/14/19 21:13,"231 8th St, Boston, MA 02215" +183433,27in FHD Monitor,1,149.99,03/27/19 10:27,"424 9th St, Atlanta, GA 30301" +183434,20in Monitor,1,109.99,03/23/19 00:00,"452 Jefferson St, San Francisco, CA 94016" +183435,AAA Batteries (4-pack),1,2.99,03/27/19 10:48,"936 West St, Boston, MA 02215" +183436,34in Ultrawide Monitor,1,379.99,03/04/19 22:02,"792 Wilson St, Boston, MA 02215" +183437,AA Batteries (4-pack),1,3.84,03/22/19 15:57,"273 River St, Atlanta, GA 30301" +183437,iPhone,1,700,03/22/19 15:57,"273 River St, Atlanta, GA 30301" +183438,Wired Headphones,1,11.99,03/14/19 12:13,"94 10th St, Los Angeles, CA 90001" +183439,Bose SoundSport Headphones,1,99.99,03/24/19 19:12,"627 Willow St, Atlanta, GA 30301" +183440,AA Batteries (4-pack),1,3.84,03/12/19 18:44,"400 Hill St, San Francisco, CA 94016" +183441,Apple Airpods Headphones,1,150,03/15/19 09:00,"84 Maple St, San Francisco, CA 94016" +183442,AAA Batteries (4-pack),1,2.99,03/29/19 21:37,"275 8th St, San Francisco, CA 94016" +183443,Lightning Charging Cable,1,14.95,03/19/19 21:12,"98 Madison St, Boston, MA 02215" +183444,iPhone,1,700,03/16/19 06:44,"394 6th St, Boston, MA 02215" +183445,USB-C Charging Cable,1,11.95,03/01/19 18:54,"611 Sunset St, Dallas, TX 75001" +183446,USB-C Charging Cable,1,11.95,03/24/19 19:41,"167 14th St, Boston, MA 02215" +183447,Apple Airpods Headphones,1,150,03/15/19 08:49,"580 Lakeview St, Portland, OR 97035" +183448,USB-C Charging Cable,1,11.95,03/24/19 19:27,"272 Spruce St, Boston, MA 02215" +183449,Apple Airpods Headphones,1,150,03/31/19 12:53,"668 Sunset St, Boston, MA 02215" +183450,Vareebadd Phone,1,400,03/18/19 00:27,"377 4th St, Boston, MA 02215" +183450,Wired Headphones,1,11.99,03/18/19 00:27,"377 4th St, Boston, MA 02215" +183451,Bose SoundSport Headphones,1,99.99,03/31/19 17:47,"344 Adams St, Atlanta, GA 30301" +183452,Apple Airpods Headphones,1,150,03/06/19 07:08,"270 Spruce St, New York City, NY 10001" +183453,34in Ultrawide Monitor,1,379.99,03/23/19 17:24,"282 Hill St, Portland, OR 97035" +183454,Vareebadd Phone,1,400,03/28/19 04:07,"650 Walnut St, Portland, OR 97035" +183455,Wired Headphones,1,11.99,03/30/19 15:30,"517 Lakeview St, New York City, NY 10001" +183456,20in Monitor,1,109.99,03/06/19 23:58,"757 5th St, Boston, MA 02215" +183457,Wired Headphones,1,11.99,03/11/19 07:28,"150 Church St, San Francisco, CA 94016" +183458,Bose SoundSport Headphones,1,99.99,03/24/19 09:42,"891 2nd St, San Francisco, CA 94016" +183459,Bose SoundSport Headphones,1,99.99,03/13/19 18:23,"799 North St, Seattle, WA 98101" +183460,Vareebadd Phone,1,400,03/02/19 23:13,"770 Forest St, Boston, MA 02215" +183461,Bose SoundSport Headphones,1,99.99,03/28/19 18:29,"835 Ridge St, San Francisco, CA 94016" +183462,Wired Headphones,1,11.99,03/19/19 11:24,"399 Forest St, Boston, MA 02215" +183463,AA Batteries (4-pack),2,3.84,03/10/19 05:08,"509 Pine St, San Francisco, CA 94016" +183464,Google Phone,1,600,03/13/19 17:02,"793 Cherry St, Boston, MA 02215" +183464,USB-C Charging Cable,1,11.95,03/13/19 17:02,"793 Cherry St, Boston, MA 02215" +183465,Google Phone,1,600,03/14/19 01:57,"223 Park St, Los Angeles, CA 90001" +183466,Wired Headphones,1,11.99,03/23/19 19:30,"170 Walnut St, Los Angeles, CA 90001" +183467,27in 4K Gaming Monitor,1,389.99,03/28/19 12:41,"409 1st St, Boston, MA 02215" +183468,USB-C Charging Cable,1,11.95,03/13/19 19:37,"902 Maple St, Austin, TX 73301" +183469,AA Batteries (4-pack),1,3.84,03/09/19 21:18,"500 Lincoln St, Portland, OR 97035" +183470,27in FHD Monitor,1,149.99,03/23/19 17:45,"464 Willow St, San Francisco, CA 94016" +183471,AA Batteries (4-pack),1,3.84,03/20/19 15:47,"114 2nd St, San Francisco, CA 94016" +183472,Bose SoundSport Headphones,1,99.99,03/07/19 18:55,"61 Hickory St, Atlanta, GA 30301" +183473,Lightning Charging Cable,1,14.95,03/31/19 15:32,"3 South St, Atlanta, GA 30301" +183474,LG Dryer,1,600.0,03/15/19 15:56,"122 Jackson St, Austin, TX 73301" +183475,Apple Airpods Headphones,1,150,03/24/19 12:29,"326 Dogwood St, New York City, NY 10001" +183476,34in Ultrawide Monitor,1,379.99,03/20/19 04:30,"982 11th St, Austin, TX 73301" +183477,Wired Headphones,1,11.99,03/19/19 21:21,"751 Chestnut St, San Francisco, CA 94016" +183478,Lightning Charging Cable,1,14.95,03/10/19 15:29,"612 12th St, Seattle, WA 98101" +183479,20in Monitor,1,109.99,03/04/19 10:16,"306 Church St, New York City, NY 10001" +183480,AAA Batteries (4-pack),1,2.99,03/30/19 13:16,"202 Maple St, Atlanta, GA 30301" +183481,Flatscreen TV,1,300,03/16/19 21:08,"134 Lincoln St, Austin, TX 73301" +183482,27in FHD Monitor,1,149.99,03/25/19 07:00,"446 Wilson St, Los Angeles, CA 90001" +183483,AA Batteries (4-pack),1,3.84,03/10/19 21:59,"277 1st St, Austin, TX 73301" +183484,20in Monitor,1,109.99,03/14/19 21:23,"155 Center St, San Francisco, CA 94016" +183484,USB-C Charging Cable,1,11.95,03/14/19 21:23,"155 Center St, San Francisco, CA 94016" +183485,iPhone,1,700,03/05/19 14:49,"557 Cherry St, New York City, NY 10001" +183486,USB-C Charging Cable,1,11.95,03/25/19 06:21,"595 Cedar St, San Francisco, CA 94016" +183487,Lightning Charging Cable,1,14.95,03/11/19 08:10,"38 Cedar St, Austin, TX 73301" +183488,Apple Airpods Headphones,1,150,03/19/19 17:16,"777 Hill St, San Francisco, CA 94016" +183489,Apple Airpods Headphones,1,150,03/17/19 18:11,"800 Madison St, Dallas, TX 75001" +183490,AAA Batteries (4-pack),1,2.99,03/06/19 13:27,"405 Pine St, San Francisco, CA 94016" +183491,Apple Airpods Headphones,1,150,03/20/19 11:11,"565 Jefferson St, Seattle, WA 98101" +183492,Flatscreen TV,1,300,03/10/19 13:03,"196 Cherry St, San Francisco, CA 94016" +183493,AAA Batteries (4-pack),1,2.99,03/21/19 21:02,"575 Pine St, San Francisco, CA 94016" +183494,AA Batteries (4-pack),3,3.84,03/02/19 20:14,"627 North St, New York City, NY 10001" +183495,Lightning Charging Cable,1,14.95,03/02/19 12:30,"3 Elm St, San Francisco, CA 94016" +183496,AAA Batteries (4-pack),1,2.99,03/23/19 22:11,"299 Main St, New York City, NY 10001" +183497,iPhone,1,700,03/28/19 12:33,"871 Forest St, Seattle, WA 98101" +183498,AAA Batteries (4-pack),1,2.99,03/07/19 14:55,"431 11th St, Boston, MA 02215" +183499,Wired Headphones,1,11.99,03/07/19 13:07,"849 Sunset St, Boston, MA 02215" +183500,USB-C Charging Cable,1,11.95,03/17/19 09:37,"154 Center St, Dallas, TX 75001" +183501,34in Ultrawide Monitor,1,379.99,03/14/19 16:37,"110 Hill St, Los Angeles, CA 90001" +183502,Apple Airpods Headphones,1,150,03/29/19 16:29,"744 Washington St, Los Angeles, CA 90001" +183503,Apple Airpods Headphones,1,150,03/31/19 23:55,"491 Lakeview St, San Francisco, CA 94016" +183504,27in 4K Gaming Monitor,1,389.99,03/01/19 13:41,"456 West St, San Francisco, CA 94016" +183505,Lightning Charging Cable,1,14.95,03/04/19 10:24,"975 Main St, Dallas, TX 75001" +183506,AAA Batteries (4-pack),1,2.99,03/17/19 13:19,"190 Sunset St, New York City, NY 10001" +183507,USB-C Charging Cable,1,11.95,03/28/19 23:41,"616 13th St, San Francisco, CA 94016" +183508,USB-C Charging Cable,1,11.95,03/29/19 09:28,"571 9th St, Portland, OR 97035" +183509,Macbook Pro Laptop,1,1700,03/23/19 20:29,"366 Highland St, Los Angeles, CA 90001" +183510,Lightning Charging Cable,2,14.95,03/20/19 14:31,"819 South St, New York City, NY 10001" +183510,ThinkPad Laptop,1,999.99,03/20/19 14:31,"819 South St, New York City, NY 10001" +183511,20in Monitor,1,109.99,03/12/19 23:36,"57 South St, Austin, TX 73301" +183512,USB-C Charging Cable,1,11.95,03/04/19 18:32,"864 South St, San Francisco, CA 94016" +183513,Bose SoundSport Headphones,1,99.99,03/16/19 16:48,"372 Meadow St, Portland, ME 04101" +183514,27in FHD Monitor,1,149.99,03/14/19 12:43,"752 Spruce St, New York City, NY 10001" +183515,Bose SoundSport Headphones,1,99.99,03/01/19 13:10,"516 Hill St, New York City, NY 10001" +183516,AA Batteries (4-pack),1,3.84,03/01/19 11:17,"776 Chestnut St, Los Angeles, CA 90001" +183517,Lightning Charging Cable,1,14.95,03/01/19 14:59,"279 Center St, Atlanta, GA 30301" +183518,Lightning Charging Cable,1,14.95,03/12/19 10:18,"387 North St, Seattle, WA 98101" +183519,USB-C Charging Cable,1,11.95,04/01/19 02:23,"213 Cedar St, New York City, NY 10001" +183520,AA Batteries (4-pack),1,3.84,03/02/19 22:09,"815 Spruce St, San Francisco, CA 94016" +183521,AA Batteries (4-pack),1,3.84,03/01/19 07:53,"536 14th St, New York City, NY 10001" +183522,AA Batteries (4-pack),1,3.84,03/28/19 12:32,"539 Cedar St, Dallas, TX 75001" +183523,USB-C Charging Cable,1,11.95,03/30/19 19:26,"771 Johnson St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +183524,Apple Airpods Headphones,1,150,03/19/19 14:18,"548 4th St, Seattle, WA 98101" +183525,27in FHD Monitor,1,149.99,03/12/19 20:19,"400 13th St, Boston, MA 02215" +183526,Apple Airpods Headphones,1,150,03/29/19 19:53,"982 Ridge St, San Francisco, CA 94016" +183527,34in Ultrawide Monitor,1,379.99,03/12/19 23:47,"613 Elm St, San Francisco, CA 94016" +183528,Bose SoundSport Headphones,1,99.99,03/06/19 11:23,"478 5th St, San Francisco, CA 94016" +183528,AA Batteries (4-pack),1,3.84,03/06/19 11:23,"478 5th St, San Francisco, CA 94016" +183529,Wired Headphones,1,11.99,03/20/19 20:53,"624 Spruce St, San Francisco, CA 94016" +183530,iPhone,1,700,03/28/19 12:34,"687 12th St, San Francisco, CA 94016" +183530,Lightning Charging Cable,1,14.95,03/28/19 12:34,"687 12th St, San Francisco, CA 94016" +183531,AA Batteries (4-pack),3,3.84,03/31/19 21:53,"263 Center St, Los Angeles, CA 90001" +183532,20in Monitor,1,109.99,03/20/19 23:53,"699 Jefferson St, Atlanta, GA 30301" +183533,Lightning Charging Cable,1,14.95,03/28/19 12:29,"516 Lincoln St, Atlanta, GA 30301" +183534,AAA Batteries (4-pack),1,2.99,03/13/19 01:12,"581 7th St, Boston, MA 02215" +183535,USB-C Charging Cable,2,11.95,03/15/19 20:19,"492 Park St, San Francisco, CA 94016" +183536,Wired Headphones,1,11.99,03/04/19 15:08,"927 Meadow St, Austin, TX 73301" +183537,Apple Airpods Headphones,1,150,03/26/19 17:28,"228 14th St, Boston, MA 02215" +183538,USB-C Charging Cable,2,11.95,03/17/19 11:44,"63 Adams St, Austin, TX 73301" +183539,34in Ultrawide Monitor,1,379.99,03/02/19 16:48,"363 10th St, New York City, NY 10001" +183540,Apple Airpods Headphones,1,150,03/26/19 01:09,"327 Meadow St, Dallas, TX 75001" +183541,AAA Batteries (4-pack),1,2.99,03/12/19 11:14,"233 River St, Atlanta, GA 30301" +183542,Flatscreen TV,1,300,03/29/19 22:23,"2 Cherry St, San Francisco, CA 94016" +183543,AA Batteries (4-pack),1,3.84,03/06/19 22:45,"907 North St, Los Angeles, CA 90001" +183544,Flatscreen TV,1,300,03/08/19 17:22,"117 14th St, Seattle, WA 98101" +183545,iPhone,1,700,03/06/19 19:17,"945 Cherry St, Los Angeles, CA 90001" +183546,Apple Airpods Headphones,1,150,03/13/19 09:21,"474 Center St, Boston, MA 02215" +183547,Bose SoundSport Headphones,1,99.99,03/11/19 19:57,"193 8th St, San Francisco, CA 94016" +183548,AAA Batteries (4-pack),3,2.99,03/11/19 00:28,"148 Sunset St, Los Angeles, CA 90001" +183549,AA Batteries (4-pack),2,3.84,03/17/19 17:00,"431 Hill St, Atlanta, GA 30301" +,,,,, +183550,USB-C Charging Cable,1,11.95,03/06/19 08:25,"824 13th St, Seattle, WA 98101" +183550,AAA Batteries (4-pack),1,2.99,03/06/19 08:25,"824 13th St, Seattle, WA 98101" +183551,AA Batteries (4-pack),1,3.84,03/28/19 19:15,"887 6th St, San Francisco, CA 94016" +183552,Apple Airpods Headphones,1,150,03/02/19 18:58,"268 13th St, San Francisco, CA 94016" +183553,Apple Airpods Headphones,1,150,03/23/19 14:18,"616 South St, Atlanta, GA 30301" +183554,AAA Batteries (4-pack),2,2.99,03/11/19 13:29,"694 1st St, San Francisco, CA 94016" +183555,AA Batteries (4-pack),1,3.84,03/09/19 18:50,"767 Walnut St, Atlanta, GA 30301" +183556,LG Dryer,1,600.0,03/19/19 22:47,"272 Lakeview St, Dallas, TX 75001" +183557,27in 4K Gaming Monitor,1,389.99,03/30/19 15:58,"516 1st St, Portland, OR 97035" +183558,Bose SoundSport Headphones,1,99.99,03/14/19 06:47,"390 North St, Los Angeles, CA 90001" +183559,Bose SoundSport Headphones,1,99.99,03/01/19 11:29,"767 Hickory St, San Francisco, CA 94016" +183560,Flatscreen TV,1,300,03/08/19 13:07,"739 Hickory St, Los Angeles, CA 90001" +183561,Wired Headphones,1,11.99,03/15/19 15:10,"932 Highland St, Los Angeles, CA 90001" +183562,Bose SoundSport Headphones,1,99.99,03/24/19 23:37,"982 Willow St, San Francisco, CA 94016" +183563,Wired Headphones,1,11.99,03/09/19 22:06,"254 South St, Boston, MA 02215" +183564,Apple Airpods Headphones,1,150,03/29/19 21:45,"390 Lakeview St, New York City, NY 10001" +183565,Bose SoundSport Headphones,1,99.99,03/11/19 19:22,"728 Lakeview St, Seattle, WA 98101" +183566,USB-C Charging Cable,1,11.95,03/26/19 17:29,"570 Highland St, San Francisco, CA 94016" +183567,Lightning Charging Cable,1,14.95,03/08/19 09:26,"82 Meadow St, San Francisco, CA 94016" +183568,34in Ultrawide Monitor,1,379.99,03/24/19 19:49,"729 12th St, Dallas, TX 75001" +183569,Macbook Pro Laptop,1,1700,03/25/19 18:37,"881 Spruce St, Dallas, TX 75001" +183570,AAA Batteries (4-pack),1,2.99,03/24/19 09:23,"209 1st St, San Francisco, CA 94016" +183571,34in Ultrawide Monitor,1,379.99,03/12/19 19:51,"720 Madison St, Boston, MA 02215" +183572,Wired Headphones,1,11.99,03/03/19 15:27,"746 7th St, Los Angeles, CA 90001" +183573,Wired Headphones,1,11.99,03/01/19 16:25,"572 Hill St, Atlanta, GA 30301" +183574,20in Monitor,1,109.99,03/16/19 11:53,"995 Jefferson St, San Francisco, CA 94016" +183575,AAA Batteries (4-pack),2,2.99,03/21/19 20:41,"977 Cherry St, San Francisco, CA 94016" +183576,Lightning Charging Cable,1,14.95,03/08/19 11:55,"582 South St, New York City, NY 10001" +183577,Lightning Charging Cable,1,14.95,03/29/19 10:55,"352 Adams St, Seattle, WA 98101" +183578,AAA Batteries (4-pack),1,2.99,03/30/19 16:32,"912 River St, Atlanta, GA 30301" +183579,USB-C Charging Cable,1,11.95,03/02/19 15:50,"16 Johnson St, San Francisco, CA 94016" +183580,AA Batteries (4-pack),1,3.84,03/18/19 17:27,"115 Hickory St, Atlanta, GA 30301" +183580,AAA Batteries (4-pack),1,2.99,03/18/19 17:27,"115 Hickory St, Atlanta, GA 30301" +183581,USB-C Charging Cable,1,11.95,03/08/19 18:06,"415 West St, Boston, MA 02215" +183582,USB-C Charging Cable,1,11.95,03/04/19 11:59,"404 4th St, Seattle, WA 98101" +183583,Google Phone,1,600,03/08/19 20:02,"676 River St, New York City, NY 10001" +183584,AAA Batteries (4-pack),1,2.99,03/06/19 14:57,"130 Cherry St, Los Angeles, CA 90001" +183585,USB-C Charging Cable,2,11.95,03/16/19 07:06,"594 Spruce St, Dallas, TX 75001" +183586,Wired Headphones,1,11.99,03/14/19 13:22,"467 Lake St, San Francisco, CA 94016" +183587,Lightning Charging Cable,1,14.95,03/04/19 18:53,"146 7th St, New York City, NY 10001" +183588,27in FHD Monitor,1,149.99,03/02/19 12:41,"336 Wilson St, New York City, NY 10001" +183589,iPhone,1,700,03/30/19 09:50,"678 Hickory St, New York City, NY 10001" +183590,AA Batteries (4-pack),1,3.84,03/30/19 22:03,"620 Park St, Los Angeles, CA 90001" +183591,AAA Batteries (4-pack),2,2.99,03/25/19 09:33,"843 Elm St, Dallas, TX 75001" +183592,iPhone,1,700,03/23/19 11:34,"424 Jefferson St, New York City, NY 10001" +183593,AA Batteries (4-pack),1,3.84,03/10/19 10:41,"415 10th St, Seattle, WA 98101" +183594,iPhone,1,700,03/09/19 15:44,"961 Lincoln St, Seattle, WA 98101" +183595,AA Batteries (4-pack),1,3.84,03/04/19 23:14,"890 8th St, Los Angeles, CA 90001" +183596,iPhone,1,700,03/17/19 13:50,"886 Dogwood St, San Francisco, CA 94016" +183596,Lightning Charging Cable,1,14.95,03/17/19 13:50,"886 Dogwood St, San Francisco, CA 94016" +183597,AAA Batteries (4-pack),3,2.99,03/10/19 15:45,"929 Center St, Los Angeles, CA 90001" +183598,Bose SoundSport Headphones,1,99.99,03/16/19 23:25,"706 Cedar St, Portland, ME 04101" +183599,ThinkPad Laptop,1,999.99,03/28/19 17:27,"357 4th St, Seattle, WA 98101" +183600,Wired Headphones,1,11.99,03/15/19 20:52,"818 12th St, Los Angeles, CA 90001" +183601,Apple Airpods Headphones,1,150,03/14/19 19:53,"695 Madison St, Los Angeles, CA 90001" +183602,Apple Airpods Headphones,1,150,03/05/19 17:28,"34 Church St, Austin, TX 73301" +183603,AA Batteries (4-pack),2,3.84,03/13/19 19:22,"158 9th St, Austin, TX 73301" +183604,AA Batteries (4-pack),1,3.84,03/07/19 13:48,"548 11th St, Los Angeles, CA 90001" +183605,Apple Airpods Headphones,1,150,03/27/19 01:22,"324 Sunset St, Los Angeles, CA 90001" +183606,iPhone,1,700,03/21/19 13:37,"889 Hickory St, Los Angeles, CA 90001" +183607,AAA Batteries (4-pack),1,2.99,03/15/19 21:35,"827 Dogwood St, Seattle, WA 98101" +183608,iPhone,1,700,03/18/19 13:55,"106 2nd St, Boston, MA 02215" +183609,AAA Batteries (4-pack),1,2.99,03/05/19 08:29,"246 Highland St, Los Angeles, CA 90001" +183610,Vareebadd Phone,1,400,03/31/19 22:51,"550 Lakeview St, San Francisco, CA 94016" +183610,USB-C Charging Cable,1,11.95,03/31/19 22:51,"550 Lakeview St, San Francisco, CA 94016" +183611,Apple Airpods Headphones,1,150,03/03/19 18:29,"941 10th St, Portland, ME 04101" +183612,27in 4K Gaming Monitor,1,389.99,03/05/19 21:58,"735 Highland St, New York City, NY 10001" +183613,Wired Headphones,1,11.99,03/16/19 18:23,"603 Maple St, Boston, MA 02215" +183614,AAA Batteries (4-pack),1,2.99,03/24/19 20:12,"804 South St, Atlanta, GA 30301" +183615,34in Ultrawide Monitor,1,379.99,03/18/19 11:00,"816 Adams St, San Francisco, CA 94016" +183616,Lightning Charging Cable,1,14.95,03/06/19 12:59,"447 11th St, New York City, NY 10001" +183617,Wired Headphones,1,11.99,03/02/19 13:11,"471 Madison St, New York City, NY 10001" +183618,Wired Headphones,1,11.99,03/24/19 14:05,"635 1st St, New York City, NY 10001" +183619,Apple Airpods Headphones,1,150,03/09/19 18:06,"880 Park St, New York City, NY 10001" +183620,AAA Batteries (4-pack),1,2.99,03/30/19 11:42,"240 Pine St, Dallas, TX 75001" +183621,Bose SoundSport Headphones,1,99.99,03/15/19 22:38,"727 Pine St, Austin, TX 73301" +183622,AAA Batteries (4-pack),1,2.99,03/19/19 03:33,"685 North St, Los Angeles, CA 90001" +183623,34in Ultrawide Monitor,1,379.99,03/29/19 18:42,"343 Dogwood St, Boston, MA 02215" +183624,Bose SoundSport Headphones,1,99.99,03/29/19 13:24,"884 Jackson St, Atlanta, GA 30301" +183625,Flatscreen TV,1,300,03/31/19 09:47,"838 12th St, San Francisco, CA 94016" +183626,Bose SoundSport Headphones,1,99.99,03/01/19 21:41,"180 Center St, Dallas, TX 75001" +183627,Lightning Charging Cable,1,14.95,03/23/19 17:36,"328 Lakeview St, New York City, NY 10001" +183628,Lightning Charging Cable,2,14.95,03/30/19 19:16,"99 Elm St, Atlanta, GA 30301" +183629,AAA Batteries (4-pack),1,2.99,03/09/19 20:41,"557 Wilson St, Austin, TX 73301" +183630,USB-C Charging Cable,1,11.95,03/18/19 11:35,"1 9th St, New York City, NY 10001" +183631,34in Ultrawide Monitor,1,379.99,03/12/19 10:03,"316 River St, Seattle, WA 98101" +183632,AA Batteries (4-pack),2,3.84,03/05/19 00:45,"815 8th St, Seattle, WA 98101" +183633,AAA Batteries (4-pack),2,2.99,03/28/19 07:52,"345 Center St, Portland, OR 97035" +183634,Apple Airpods Headphones,1,150,03/19/19 15:33,"529 1st St, Seattle, WA 98101" +183635,Bose SoundSport Headphones,1,99.99,03/29/19 10:11,"70 Hickory St, Los Angeles, CA 90001" +183636,iPhone,1,700,03/21/19 00:41,"282 Wilson St, Atlanta, GA 30301" +183636,Wired Headphones,2,11.99,03/21/19 00:41,"282 Wilson St, Atlanta, GA 30301" +183637,AA Batteries (4-pack),1,3.84,03/05/19 14:04,"886 Lakeview St, San Francisco, CA 94016" +,,,,, +183638,AAA Batteries (4-pack),1,2.99,03/05/19 23:28,"570 Pine St, Portland, OR 97035" +183639,Apple Airpods Headphones,1,150,03/13/19 20:07,"43 12th St, Austin, TX 73301" +183640,Google Phone,1,600,03/11/19 16:34,"931 Pine St, New York City, NY 10001" +183641,Macbook Pro Laptop,1,1700,03/01/19 23:26,"131 Sunset St, Atlanta, GA 30301" +183642,Lightning Charging Cable,1,14.95,03/07/19 06:41,"938 Wilson St, Atlanta, GA 30301" +183643,AAA Batteries (4-pack),1,2.99,03/31/19 09:05,"298 Hickory St, New York City, NY 10001" +183644,Vareebadd Phone,1,400,03/19/19 20:23,"533 Cherry St, Boston, MA 02215" +183645,AAA Batteries (4-pack),1,2.99,03/21/19 11:50,"237 Washington St, San Francisco, CA 94016" +183646,Wired Headphones,1,11.99,03/27/19 16:31,"629 8th St, Seattle, WA 98101" +183647,USB-C Charging Cable,1,11.95,03/07/19 22:23,"722 Chestnut St, Seattle, WA 98101" +183648,27in 4K Gaming Monitor,1,389.99,03/07/19 14:42,"318 6th St, Austin, TX 73301" +183649,34in Ultrawide Monitor,1,379.99,03/27/19 08:25,"115 Lake St, Boston, MA 02215" +183650,Apple Airpods Headphones,1,150,03/18/19 19:48,"447 Lakeview St, Dallas, TX 75001" +183651,AA Batteries (4-pack),2,3.84,03/09/19 18:07,"335 Washington St, New York City, NY 10001" +183652,Flatscreen TV,1,300,03/14/19 12:50,"339 Johnson St, San Francisco, CA 94016" +183653,Bose SoundSport Headphones,1,99.99,03/14/19 07:57,"524 6th St, Dallas, TX 75001" +183654,Lightning Charging Cable,1,14.95,03/27/19 21:33,"964 Walnut St, Los Angeles, CA 90001" +183655,AA Batteries (4-pack),1,3.84,03/12/19 17:26,"296 Cedar St, New York City, NY 10001" +183656,iPhone,1,700,03/19/19 13:06,"991 Cedar St, San Francisco, CA 94016" +183657,AAA Batteries (4-pack),2,2.99,03/08/19 09:46,"377 12th St, Boston, MA 02215" +183658,AA Batteries (4-pack),1,3.84,03/29/19 16:47,"784 Washington St, San Francisco, CA 94016" +183659,Google Phone,1,600,03/15/19 01:22,"284 Maple St, Seattle, WA 98101" +183660,27in 4K Gaming Monitor,1,389.99,03/03/19 01:36,"946 Church St, New York City, NY 10001" +183661,AA Batteries (4-pack),2,3.84,03/12/19 09:57,"59 4th St, Los Angeles, CA 90001" +183662,Bose SoundSport Headphones,1,99.99,03/19/19 15:26,"472 Willow St, San Francisco, CA 94016" +183663,AAA Batteries (4-pack),3,2.99,03/14/19 20:54,"22 Lincoln St, Austin, TX 73301" +183664,27in FHD Monitor,1,149.99,03/08/19 18:50,"772 11th St, Dallas, TX 75001" +183665,Lightning Charging Cable,1,14.95,03/08/19 18:09,"671 12th St, Dallas, TX 75001" +183666,Macbook Pro Laptop,1,1700,03/28/19 02:17,"452 Cedar St, San Francisco, CA 94016" +183667,Lightning Charging Cable,1,14.95,03/15/19 07:50,"657 Hickory St, San Francisco, CA 94016" +183668,USB-C Charging Cable,1,11.95,03/13/19 14:30,"169 Forest St, Los Angeles, CA 90001" +183669,USB-C Charging Cable,1,11.95,03/16/19 22:37,"273 14th St, New York City, NY 10001" +183670,AAA Batteries (4-pack),2,2.99,03/25/19 06:12,"595 14th St, Los Angeles, CA 90001" +183671,Lightning Charging Cable,1,14.95,03/13/19 20:15,"605 12th St, Los Angeles, CA 90001" +183672,Wired Headphones,1,11.99,03/04/19 08:47,"810 Maple St, New York City, NY 10001" +183673,34in Ultrawide Monitor,1,379.99,03/03/19 13:01,"494 Adams St, Atlanta, GA 30301" +183674,Wired Headphones,1,11.99,03/26/19 22:27,"421 Wilson St, Dallas, TX 75001" +183675,AAA Batteries (4-pack),2,2.99,03/08/19 09:20,"617 8th St, San Francisco, CA 94016" +183676,AA Batteries (4-pack),2,3.84,03/19/19 09:02,"613 2nd St, Austin, TX 73301" +183677,Apple Airpods Headphones,1,150,03/30/19 22:36,"808 Hill St, Los Angeles, CA 90001" +183678,Wired Headphones,1,11.99,03/08/19 08:20,"886 12th St, Los Angeles, CA 90001" +183679,Wired Headphones,1,11.99,03/16/19 14:59,"920 Cherry St, Austin, TX 73301" +183680,Wired Headphones,1,11.99,03/31/19 10:39,"748 Johnson St, Portland, OR 97035" +183681,Bose SoundSport Headphones,1,99.99,03/07/19 09:38,"297 Wilson St, San Francisco, CA 94016" +183682,AA Batteries (4-pack),3,3.84,03/16/19 20:16,"897 Jackson St, Atlanta, GA 30301" +183683,iPhone,1,700,03/29/19 01:40,"873 Jackson St, Boston, MA 02215" +183683,Lightning Charging Cable,1,14.95,03/29/19 01:40,"873 Jackson St, Boston, MA 02215" +183684,Apple Airpods Headphones,1,150,03/31/19 20:23,"76 Jackson St, Los Angeles, CA 90001" +183685,Wired Headphones,1,11.99,03/11/19 17:18,"280 Spruce St, Austin, TX 73301" +183686,AAA Batteries (4-pack),1,2.99,03/07/19 19:32,"876 Dogwood St, Los Angeles, CA 90001" +183687,Flatscreen TV,1,300,03/29/19 17:44,"866 Main St, Portland, OR 97035" +183688,Vareebadd Phone,1,400,03/09/19 20:52,"149 Maple St, San Francisco, CA 94016" +183688,USB-C Charging Cable,1,11.95,03/09/19 20:52,"149 Maple St, San Francisco, CA 94016" +183689,AA Batteries (4-pack),1,3.84,03/21/19 08:01,"315 Park St, San Francisco, CA 94016" +183690,Google Phone,1,600,03/09/19 08:52,"869 Center St, San Francisco, CA 94016" +183690,USB-C Charging Cable,1,11.95,03/09/19 08:52,"869 Center St, San Francisco, CA 94016" +183691,Bose SoundSport Headphones,1,99.99,03/08/19 21:09,"351 6th St, New York City, NY 10001" +183692,AAA Batteries (4-pack),2,2.99,03/19/19 11:11,"538 West St, Boston, MA 02215" +183693,Wired Headphones,1,11.99,03/13/19 09:23,"541 1st St, Seattle, WA 98101" +183694,Bose SoundSport Headphones,1,99.99,03/16/19 22:13,"150 8th St, Atlanta, GA 30301" +183694,Wired Headphones,1,11.99,03/16/19 22:13,"150 8th St, Atlanta, GA 30301" +183695,Apple Airpods Headphones,1,150,03/29/19 10:23,"663 Cedar St, San Francisco, CA 94016" +183696,AA Batteries (4-pack),1,3.84,03/09/19 12:10,"206 Jackson St, Los Angeles, CA 90001" +183697,Apple Airpods Headphones,1,150,03/17/19 12:19,"862 Wilson St, Seattle, WA 98101" +183698,Apple Airpods Headphones,1,150,03/02/19 18:28,"285 13th St, Los Angeles, CA 90001" +183699,Bose SoundSport Headphones,1,99.99,03/14/19 13:34,"528 12th St, Boston, MA 02215" +183700,27in FHD Monitor,1,149.99,03/18/19 21:11,"719 Hickory St, Atlanta, GA 30301" +183701,Bose SoundSport Headphones,1,99.99,03/12/19 23:10,"432 Center St, New York City, NY 10001" +183702,Bose SoundSport Headphones,1,99.99,03/28/19 08:58,"26 West St, Boston, MA 02215" +183703,AAA Batteries (4-pack),2,2.99,03/14/19 10:43,"165 Lake St, New York City, NY 10001" +183704,27in FHD Monitor,1,149.99,03/20/19 15:00,"285 Meadow St, Seattle, WA 98101" +183705,AA Batteries (4-pack),3,3.84,03/13/19 08:01,"866 11th St, Portland, OR 97035" +183706,Bose SoundSport Headphones,1,99.99,03/31/19 22:28,"473 Ridge St, Boston, MA 02215" +183707,Apple Airpods Headphones,1,150,03/18/19 20:20,"980 Washington St, San Francisco, CA 94016" +183708,Bose SoundSport Headphones,1,99.99,03/06/19 19:04,"130 Cedar St, New York City, NY 10001" +183709,Lightning Charging Cable,1,14.95,03/06/19 11:42,"592 Jefferson St, San Francisco, CA 94016" +183710,Wired Headphones,1,11.99,03/16/19 17:39,"29 Willow St, Dallas, TX 75001" +183711,AA Batteries (4-pack),3,3.84,03/09/19 18:24,"489 Madison St, New York City, NY 10001" +183712,AA Batteries (4-pack),1,3.84,03/29/19 15:40,"84 2nd St, New York City, NY 10001" +183713,AA Batteries (4-pack),1,3.84,03/17/19 10:38,"541 Forest St, Austin, TX 73301" +183714,27in FHD Monitor,1,149.99,03/11/19 14:15,"446 Center St, San Francisco, CA 94016" +183715,Bose SoundSport Headphones,1,99.99,03/14/19 21:52,"871 8th St, Boston, MA 02215" +183716,AAA Batteries (4-pack),2,2.99,03/28/19 12:44,"84 Hill St, Los Angeles, CA 90001" +183717,Apple Airpods Headphones,1,150,03/08/19 20:05,"31 South St, San Francisco, CA 94016" +183718,Apple Airpods Headphones,1,150,03/06/19 23:39,"190 Wilson St, Los Angeles, CA 90001" +183719,Bose SoundSport Headphones,1,99.99,03/20/19 12:44,"155 Madison St, Seattle, WA 98101" +183720,LG Washing Machine,1,600.0,03/24/19 13:02,"548 2nd St, Los Angeles, CA 90001" +183721,AAA Batteries (4-pack),3,2.99,03/21/19 16:25,"315 Dogwood St, Austin, TX 73301" +183722,Lightning Charging Cable,1,14.95,03/05/19 13:46,"972 Church St, Atlanta, GA 30301" +183723,AAA Batteries (4-pack),1,2.99,03/07/19 01:46,"707 Lakeview St, San Francisco, CA 94016" +183724,Macbook Pro Laptop,1,1700,03/18/19 12:19,"934 12th St, Austin, TX 73301" +183725,USB-C Charging Cable,1,11.95,03/15/19 22:38,"301 Johnson St, Los Angeles, CA 90001" +183726,Lightning Charging Cable,1,14.95,03/19/19 22:16,"990 Elm St, San Francisco, CA 94016" +183727,AA Batteries (4-pack),1,3.84,03/23/19 12:06,"211 Ridge St, Boston, MA 02215" +183728,AAA Batteries (4-pack),1,2.99,03/12/19 12:20,"277 13th St, Boston, MA 02215" +183729,AA Batteries (4-pack),1,3.84,03/01/19 22:01,"575 5th St, New York City, NY 10001" +183730,Apple Airpods Headphones,1,150,03/16/19 21:45,"157 Forest St, New York City, NY 10001" +183731,Wired Headphones,1,11.99,03/10/19 20:58,"297 Willow St, Dallas, TX 75001" +183732,Macbook Pro Laptop,1,1700,03/21/19 15:04,"614 1st St, Boston, MA 02215" +183733,Bose SoundSport Headphones,1,99.99,03/05/19 15:40,"542 Ridge St, San Francisco, CA 94016" +183734,Apple Airpods Headphones,1,150,03/06/19 14:54,"453 Park St, Boston, MA 02215" +183735,Bose SoundSport Headphones,1,99.99,03/23/19 20:22,"10 8th St, Boston, MA 02215" +183736,USB-C Charging Cable,2,11.95,03/16/19 10:59,"146 12th St, Seattle, WA 98101" +183737,Bose SoundSport Headphones,1,99.99,03/03/19 09:56,"163 Meadow St, New York City, NY 10001" +183738,20in Monitor,1,109.99,03/17/19 18:29,"900 River St, San Francisco, CA 94016" +183739,USB-C Charging Cable,2,11.95,03/25/19 07:33,"545 Park St, Los Angeles, CA 90001" +183740,AAA Batteries (4-pack),1,2.99,03/19/19 19:12,"646 Walnut St, Seattle, WA 98101" +183741,20in Monitor,1,109.99,03/06/19 19:44,"443 Jackson St, Dallas, TX 75001" +183742,Lightning Charging Cable,1,14.95,03/22/19 21:49,"163 6th St, San Francisco, CA 94016" +183743,iPhone,1,700,03/13/19 10:02,"46 Dogwood St, New York City, NY 10001" +183744,Vareebadd Phone,1,400,03/05/19 11:15,"57 10th St, Boston, MA 02215" +183744,Bose SoundSport Headphones,1,99.99,03/05/19 11:15,"57 10th St, Boston, MA 02215" +183745,Bose SoundSport Headphones,1,99.99,03/07/19 12:28,"246 Adams St, Seattle, WA 98101" +183746,Lightning Charging Cable,1,14.95,03/29/19 18:43,"608 Dogwood St, San Francisco, CA 94016" +183747,ThinkPad Laptop,1,999.99,03/09/19 10:24,"236 Adams St, Seattle, WA 98101" +183748,AA Batteries (4-pack),1,3.84,03/26/19 14:23,"169 River St, San Francisco, CA 94016" +183749,27in FHD Monitor,1,149.99,03/12/19 10:55,"489 Church St, San Francisco, CA 94016" +183750,Wired Headphones,1,11.99,03/20/19 21:08,"39 Maple St, New York City, NY 10001" +183751,Flatscreen TV,1,300,03/16/19 00:43,"31 Cherry St, New York City, NY 10001" +183752,iPhone,1,700,03/10/19 15:51,"58 Lincoln St, New York City, NY 10001" +183753,Bose SoundSport Headphones,1,99.99,03/07/19 09:26,"462 Lakeview St, Los Angeles, CA 90001" +183754,Apple Airpods Headphones,1,150,03/27/19 23:40,"990 Hickory St, Austin, TX 73301" +183755,ThinkPad Laptop,1,999.99,03/05/19 18:39,"824 Cedar St, Portland, OR 97035" +183756,Bose SoundSport Headphones,1,99.99,03/08/19 18:43,"745 Chestnut St, Atlanta, GA 30301" +183757,AAA Batteries (4-pack),1,2.99,03/24/19 08:31,"785 5th St, San Francisco, CA 94016" +183758,Wired Headphones,1,11.99,03/12/19 13:21,"229 Willow St, San Francisco, CA 94016" +183759,AA Batteries (4-pack),1,3.84,03/05/19 12:34,"323 Park St, Portland, OR 97035" +183759,Google Phone,1,600,03/05/19 12:34,"323 Park St, Portland, OR 97035" +183760,Apple Airpods Headphones,1,150,03/05/19 18:01,"432 Cherry St, Seattle, WA 98101" +183761,AA Batteries (4-pack),1,3.84,03/05/19 20:44,"491 Church St, Boston, MA 02215" +183762,Wired Headphones,1,11.99,03/06/19 23:06,"169 Madison St, Austin, TX 73301" +183763,AA Batteries (4-pack),1,3.84,03/18/19 08:48,"104 6th St, Atlanta, GA 30301" +183764,Apple Airpods Headphones,1,150,03/31/19 10:13,"197 Hickory St, Portland, OR 97035" +183765,27in FHD Monitor,1,149.99,03/15/19 15:41,"680 9th St, New York City, NY 10001" +183766,27in 4K Gaming Monitor,1,389.99,03/12/19 22:29,"718 North St, Los Angeles, CA 90001" +183767,27in FHD Monitor,1,149.99,03/05/19 19:35,"174 11th St, Boston, MA 02215" +183767,Wired Headphones,1,11.99,03/05/19 19:35,"174 11th St, Boston, MA 02215" +183768,Bose SoundSport Headphones,1,99.99,03/02/19 21:43,"562 Pine St, Los Angeles, CA 90001" +183769,Apple Airpods Headphones,1,150,03/26/19 20:52,"369 13th St, San Francisco, CA 94016" +183770,Lightning Charging Cable,1,14.95,03/30/19 20:06,"947 Hill St, Dallas, TX 75001" +183771,27in 4K Gaming Monitor,1,389.99,03/13/19 17:59,"104 8th St, Los Angeles, CA 90001" +183772,USB-C Charging Cable,1,11.95,03/14/19 11:52,"639 River St, San Francisco, CA 94016" +183773,Wired Headphones,1,11.99,03/21/19 00:13,"666 Wilson St, Los Angeles, CA 90001" +183774,27in FHD Monitor,1,149.99,03/16/19 13:10,"702 Walnut St, Austin, TX 73301" +183775,USB-C Charging Cable,1,11.95,03/18/19 17:28,"392 Main St, San Francisco, CA 94016" +183776,AA Batteries (4-pack),1,3.84,03/21/19 01:02,"955 7th St, Los Angeles, CA 90001" +183777,27in FHD Monitor,1,149.99,03/13/19 10:35,"92 Lake St, Portland, OR 97035" +183778,34in Ultrawide Monitor,1,379.99,03/13/19 12:53,"143 Walnut St, Boston, MA 02215" +183779,USB-C Charging Cable,1,11.95,03/03/19 02:22,"323 9th St, Portland, OR 97035" +183780,34in Ultrawide Monitor,1,379.99,03/08/19 19:36,"127 Church St, San Francisco, CA 94016" +183780,27in 4K Gaming Monitor,1,389.99,03/08/19 19:36,"127 Church St, San Francisco, CA 94016" +183781,Lightning Charging Cable,1,14.95,03/21/19 18:12,"54 Spruce St, Los Angeles, CA 90001" +183782,Apple Airpods Headphones,1,150,03/23/19 08:43,"763 Cedar St, Atlanta, GA 30301" +183783,USB-C Charging Cable,1,11.95,03/16/19 20:14,"984 14th St, San Francisco, CA 94016" +183784,Apple Airpods Headphones,1,150,03/05/19 19:44,"175 11th St, Austin, TX 73301" +183785,Bose SoundSport Headphones,1,99.99,03/12/19 11:55,"45 Willow St, New York City, NY 10001" +183786,Google Phone,1,600,03/28/19 20:12,"918 Madison St, New York City, NY 10001" +183787,AA Batteries (4-pack),2,3.84,03/05/19 21:44,"476 Forest St, Dallas, TX 75001" +183788,27in 4K Gaming Monitor,1,389.99,03/01/19 15:31,"379 Jefferson St, San Francisco, CA 94016" +183789,Google Phone,1,600,03/05/19 12:55,"849 Center St, Boston, MA 02215" +183790,Bose SoundSport Headphones,1,99.99,03/09/19 10:34,"101 River St, San Francisco, CA 94016" +183791,Lightning Charging Cable,1,14.95,03/23/19 13:46,"264 Cherry St, San Francisco, CA 94016" +183792,Lightning Charging Cable,1,14.95,03/09/19 17:11,"823 Forest St, San Francisco, CA 94016" +183793,Wired Headphones,1,11.99,03/29/19 10:47,"685 Park St, New York City, NY 10001" +183794,ThinkPad Laptop,1,999.99,03/01/19 15:17,"991 Main St, Seattle, WA 98101" +183795,USB-C Charging Cable,1,11.95,03/15/19 07:38,"506 Hill St, Portland, ME 04101" +183796,Lightning Charging Cable,1,14.95,03/02/19 08:57,"480 Cherry St, San Francisco, CA 94016" +183797,USB-C Charging Cable,1,11.95,03/18/19 00:42,"584 Lakeview St, Portland, OR 97035" +183798,34in Ultrawide Monitor,1,379.99,03/10/19 09:47,"363 Cherry St, Austin, TX 73301" +183799,Wired Headphones,1,11.99,03/01/19 18:10,"619 8th St, Seattle, WA 98101" +183800,USB-C Charging Cable,1,11.95,03/19/19 20:17,"131 Main St, Boston, MA 02215" +183801,USB-C Charging Cable,1,11.95,03/03/19 17:29,"306 Lincoln St, Atlanta, GA 30301" +183802,27in 4K Gaming Monitor,1,389.99,03/07/19 22:02,"115 Johnson St, San Francisco, CA 94016" +183803,Google Phone,1,600,03/22/19 09:03,"28 Ridge St, Portland, ME 04101" +183804,Lightning Charging Cable,1,14.95,03/16/19 05:32,"736 8th St, Austin, TX 73301" +183804,Macbook Pro Laptop,1,1700,03/16/19 05:32,"736 8th St, Austin, TX 73301" +183805,27in 4K Gaming Monitor,1,389.99,03/18/19 21:15,"872 Jefferson St, Los Angeles, CA 90001" +183806,Wired Headphones,1,11.99,03/11/19 11:36,"881 Dogwood St, Portland, ME 04101" +183807,Lightning Charging Cable,2,14.95,03/10/19 23:52,"937 River St, Boston, MA 02215" +183808,Bose SoundSport Headphones,1,99.99,03/24/19 19:32,"299 13th St, San Francisco, CA 94016" +183809,Lightning Charging Cable,1,14.95,03/20/19 11:03,"333 Johnson St, Portland, OR 97035" +183810,USB-C Charging Cable,1,11.95,03/15/19 10:16,"955 Cedar St, San Francisco, CA 94016" +183811,USB-C Charging Cable,1,11.95,03/29/19 13:12,"760 2nd St, Seattle, WA 98101" +183812,USB-C Charging Cable,1,11.95,03/07/19 16:55,"384 Cedar St, San Francisco, CA 94016" +183813,AAA Batteries (4-pack),2,2.99,03/15/19 05:05,"803 Madison St, San Francisco, CA 94016" +183814,AAA Batteries (4-pack),1,2.99,03/01/19 09:02,"732 2nd St, San Francisco, CA 94016" +183815,Lightning Charging Cable,1,14.95,03/31/19 11:12,"291 Washington St, Los Angeles, CA 90001" +183816,AA Batteries (4-pack),1,3.84,03/18/19 20:38,"214 Highland St, Atlanta, GA 30301" +183817,AA Batteries (4-pack),1,3.84,03/02/19 16:18,"851 Walnut St, Boston, MA 02215" +183818,USB-C Charging Cable,1,11.95,03/09/19 17:09,"82 Hill St, New York City, NY 10001" +183819,AAA Batteries (4-pack),1,2.99,03/18/19 09:13,"846 2nd St, Boston, MA 02215" +183820,27in FHD Monitor,1,149.99,03/19/19 00:38,"62 Hill St, Boston, MA 02215" +183821,ThinkPad Laptop,1,999.99,03/05/19 21:52,"676 6th St, San Francisco, CA 94016" +183822,Apple Airpods Headphones,1,150,03/16/19 09:35,"893 8th St, San Francisco, CA 94016" +183823,Apple Airpods Headphones,1,150,03/20/19 16:23,"209 14th St, Los Angeles, CA 90001" +183824,34in Ultrawide Monitor,1,379.99,03/24/19 09:09,"777 North St, San Francisco, CA 94016" +183825,AA Batteries (4-pack),3,3.84,03/19/19 19:04,"606 Johnson St, Seattle, WA 98101" +183826,Lightning Charging Cable,1,14.95,03/26/19 14:48,"551 Maple St, New York City, NY 10001" +183827,USB-C Charging Cable,1,11.95,03/14/19 09:19,"875 1st St, Boston, MA 02215" +183828,AA Batteries (4-pack),1,3.84,03/07/19 13:28,"988 Lincoln St, San Francisco, CA 94016" +183829,Bose SoundSport Headphones,1,99.99,03/09/19 08:13,"3 13th St, New York City, NY 10001" +183830,Wired Headphones,1,11.99,03/12/19 11:33,"479 Lakeview St, Boston, MA 02215" +183831,34in Ultrawide Monitor,1,379.99,03/17/19 17:04,"519 Meadow St, Austin, TX 73301" +183832,ThinkPad Laptop,1,999.99,03/13/19 18:58,"400 11th St, New York City, NY 10001" +183833,Apple Airpods Headphones,1,150,03/09/19 15:18,"405 Cherry St, New York City, NY 10001" +183833,27in 4K Gaming Monitor,1,389.99,03/09/19 15:18,"405 Cherry St, New York City, NY 10001" +183834,Vareebadd Phone,1,400,03/16/19 22:09,"386 Lake St, San Francisco, CA 94016" +183835,Bose SoundSport Headphones,1,99.99,03/18/19 18:51,"595 4th St, Los Angeles, CA 90001" +183836,Apple Airpods Headphones,1,150,03/27/19 18:59,"761 Dogwood St, Boston, MA 02215" +183837,Bose SoundSport Headphones,1,99.99,03/28/19 13:27,"804 Church St, Boston, MA 02215" +183838,AAA Batteries (4-pack),2,2.99,03/31/19 18:58,"658 Jefferson St, Dallas, TX 75001" +183839,AAA Batteries (4-pack),2,2.99,03/30/19 11:28,"163 11th St, Austin, TX 73301" +183840,Wired Headphones,1,11.99,03/14/19 10:07,"903 Cedar St, San Francisco, CA 94016" +183841,USB-C Charging Cable,1,11.95,03/16/19 12:31,"136 Meadow St, Seattle, WA 98101" +183842,ThinkPad Laptop,1,999.99,03/29/19 11:48,"98 Chestnut St, Los Angeles, CA 90001" +183843,Lightning Charging Cable,2,14.95,03/05/19 20:38,"865 Chestnut St, Dallas, TX 75001" +183844,iPhone,1,700,03/21/19 09:22,"572 6th St, Boston, MA 02215" +183844,Lightning Charging Cable,1,14.95,03/21/19 09:22,"572 6th St, Boston, MA 02215" +183845,Apple Airpods Headphones,1,150,03/27/19 19:29,"735 North St, Dallas, TX 75001" +183846,USB-C Charging Cable,1,11.95,03/06/19 16:26,"541 Sunset St, New York City, NY 10001" +183847,Bose SoundSport Headphones,1,99.99,03/10/19 16:43,"609 Walnut St, Boston, MA 02215" +183848,Wired Headphones,1,11.99,03/21/19 14:16,"105 Forest St, Los Angeles, CA 90001" +183849,Bose SoundSport Headphones,1,99.99,03/06/19 14:02,"795 6th St, Portland, OR 97035" +183850,AAA Batteries (4-pack),2,2.99,03/04/19 13:54,"294 4th St, San Francisco, CA 94016" +183851,Lightning Charging Cable,1,14.95,03/31/19 11:08,"167 Forest St, New York City, NY 10001" +183852,USB-C Charging Cable,1,11.95,03/09/19 18:57,"400 Sunset St, Austin, TX 73301" +183853,Lightning Charging Cable,1,14.95,03/02/19 15:57,"554 Church St, Atlanta, GA 30301" +183854,USB-C Charging Cable,1,11.95,03/31/19 23:13,"601 Lincoln St, Portland, OR 97035" +183855,Lightning Charging Cable,1,14.95,03/09/19 16:20,"161 River St, San Francisco, CA 94016" +183856,AAA Batteries (4-pack),1,2.99,03/21/19 17:51,"523 Pine St, Atlanta, GA 30301" +183857,Lightning Charging Cable,2,14.95,03/25/19 14:23,"988 4th St, Boston, MA 02215" +183858,34in Ultrawide Monitor,1,379.99,03/27/19 00:32,"992 North St, San Francisco, CA 94016" +183859,USB-C Charging Cable,1,11.95,03/25/19 12:03,"28 Washington St, Los Angeles, CA 90001" +183860,AAA Batteries (4-pack),1,2.99,03/24/19 23:21,"170 7th St, Los Angeles, CA 90001" +183861,Macbook Pro Laptop,1,1700,03/02/19 05:11,"248 Lakeview St, San Francisco, CA 94016" +183862,USB-C Charging Cable,2,11.95,03/12/19 16:40,"960 7th St, New York City, NY 10001" +183863,27in FHD Monitor,1,149.99,03/26/19 13:50,"123 10th St, Seattle, WA 98101" +183864,AAA Batteries (4-pack),5,2.99,03/29/19 21:57,"758 Dogwood St, New York City, NY 10001" +183865,Vareebadd Phone,1,400,03/31/19 17:33,"258 Meadow St, Seattle, WA 98101" +183866,AAA Batteries (4-pack),1,2.99,03/21/19 21:02,"97 Meadow St, San Francisco, CA 94016" +183867,Bose SoundSport Headphones,1,99.99,03/24/19 23:46,"119 1st St, San Francisco, CA 94016" +183868,Google Phone,1,600,03/26/19 14:12,"635 Pine St, Boston, MA 02215" +183869,AA Batteries (4-pack),1,3.84,03/29/19 11:06,"283 Cherry St, Boston, MA 02215" +183870,Wired Headphones,1,11.99,03/29/19 19:34,"755 Madison St, Dallas, TX 75001" +183871,iPhone,1,700,03/12/19 15:40,"643 Hill St, New York City, NY 10001" +183872,AA Batteries (4-pack),1,3.84,03/04/19 15:19,"936 Forest St, Boston, MA 02215" +183873,Apple Airpods Headphones,1,150,03/02/19 10:30,"548 Spruce St, Boston, MA 02215" +183874,Bose SoundSport Headphones,1,99.99,03/09/19 22:29,"339 West St, Portland, OR 97035" +183875,iPhone,1,700,03/27/19 10:02,"520 Lakeview St, Los Angeles, CA 90001" +183876,AAA Batteries (4-pack),2,2.99,03/18/19 17:49,"308 Pine St, Boston, MA 02215" +183877,USB-C Charging Cable,1,11.95,03/31/19 11:08,"657 Forest St, San Francisco, CA 94016" +183878,Lightning Charging Cable,1,14.95,03/10/19 08:42,"846 12th St, Austin, TX 73301" +183879,Bose SoundSport Headphones,1,99.99,03/06/19 07:44,"166 6th St, Los Angeles, CA 90001" +183880,Wired Headphones,1,11.99,03/05/19 15:30,"528 North St, Atlanta, GA 30301" +183881,Bose SoundSport Headphones,1,99.99,03/23/19 04:36,"987 Park St, Portland, ME 04101" +183882,Bose SoundSport Headphones,1,99.99,03/15/19 09:43,"773 Walnut St, Dallas, TX 75001" +183883,27in 4K Gaming Monitor,1,389.99,03/08/19 16:13,"906 1st St, San Francisco, CA 94016" +183884,Wired Headphones,1,11.99,03/20/19 11:02,"727 Lake St, Atlanta, GA 30301" +183885,34in Ultrawide Monitor,1,379.99,03/05/19 17:50,"412 Spruce St, Atlanta, GA 30301" +183886,Lightning Charging Cable,1,14.95,03/24/19 16:00,"641 Jackson St, Los Angeles, CA 90001" +183887,USB-C Charging Cable,1,11.95,03/28/19 19:49,"1 Jefferson St, New York City, NY 10001" +183888,AAA Batteries (4-pack),1,2.99,03/31/19 21:08,"377 Lake St, Austin, TX 73301" +183889,AA Batteries (4-pack),2,3.84,03/30/19 21:08,"412 2nd St, Dallas, TX 75001" +183890,Wired Headphones,1,11.99,03/25/19 23:30,"275 Lincoln St, Austin, TX 73301" +183891,27in FHD Monitor,1,149.99,03/28/19 22:26,"336 Willow St, San Francisco, CA 94016" +183892,Bose SoundSport Headphones,1,99.99,03/30/19 18:25,"302 6th St, Seattle, WA 98101" +183893,AA Batteries (4-pack),1,3.84,03/10/19 16:19,"399 8th St, San Francisco, CA 94016" +183894,USB-C Charging Cable,1,11.95,03/29/19 22:54,"560 Walnut St, San Francisco, CA 94016" +183895,27in 4K Gaming Monitor,1,389.99,03/06/19 18:50,"322 Church St, Austin, TX 73301" +183896,AAA Batteries (4-pack),3,2.99,03/02/19 11:40,"298 Meadow St, New York City, NY 10001" +183897,Google Phone,1,600,03/19/19 13:54,"371 1st St, Dallas, TX 75001" +183898,AA Batteries (4-pack),1,3.84,03/27/19 14:08,"245 Center St, Dallas, TX 75001" +183899,27in FHD Monitor,1,149.99,03/25/19 09:10,"526 5th St, Los Angeles, CA 90001" +183900,Macbook Pro Laptop,1,1700,03/25/19 16:42,"805 Sunset St, San Francisco, CA 94016" +183901,Google Phone,1,600,03/28/19 22:00,"205 Maple St, San Francisco, CA 94016" +183902,Lightning Charging Cable,1,14.95,03/08/19 22:38,"616 Willow St, Boston, MA 02215" +183902,Apple Airpods Headphones,1,150,03/08/19 22:38,"616 Willow St, Boston, MA 02215" +183903,AA Batteries (4-pack),1,3.84,03/06/19 13:12,"658 Cherry St, San Francisco, CA 94016" +183904,AAA Batteries (4-pack),2,2.99,03/10/19 09:16,"248 Elm St, Seattle, WA 98101" +183905,Lightning Charging Cable,1,14.95,03/11/19 16:32,"20 North St, New York City, NY 10001" +183906,27in FHD Monitor,1,149.99,03/29/19 12:32,"484 14th St, Los Angeles, CA 90001" +183907,Apple Airpods Headphones,1,150,03/29/19 20:38,"248 Maple St, New York City, NY 10001" +183908,27in FHD Monitor,1,149.99,03/31/19 04:33,"317 13th St, San Francisco, CA 94016" +183909,USB-C Charging Cable,1,11.95,03/20/19 12:26,"921 Washington St, Los Angeles, CA 90001" +183910,AAA Batteries (4-pack),3,2.99,03/18/19 19:07,"142 Forest St, San Francisco, CA 94016" +183911,USB-C Charging Cable,1,11.95,03/21/19 17:53,"985 Lake St, New York City, NY 10001" +183912,27in FHD Monitor,1,149.99,03/19/19 09:37,"11 Spruce St, Los Angeles, CA 90001" +183913,Wired Headphones,1,11.99,03/12/19 17:20,"659 4th St, San Francisco, CA 94016" +183914,Apple Airpods Headphones,1,150,03/23/19 20:39,"121 Spruce St, San Francisco, CA 94016" +183915,AAA Batteries (4-pack),2,2.99,03/29/19 19:24,"655 Main St, San Francisco, CA 94016" +183916,Lightning Charging Cable,1,14.95,03/05/19 11:00,"196 Dogwood St, Dallas, TX 75001" +183917,Wired Headphones,1,11.99,03/17/19 12:21,"13 6th St, Boston, MA 02215" +183918,AA Batteries (4-pack),2,3.84,03/31/19 08:47,"945 5th St, Portland, OR 97035" +183919,Wired Headphones,1,11.99,03/26/19 11:13,"343 South St, San Francisco, CA 94016" +183920,AAA Batteries (4-pack),3,2.99,03/12/19 16:34,"687 11th St, San Francisco, CA 94016" +183921,iPhone,1,700,03/21/19 02:30,"335 South St, Seattle, WA 98101" +183921,Lightning Charging Cable,1,14.95,03/21/19 02:30,"335 South St, Seattle, WA 98101" +183921,Wired Headphones,2,11.99,03/21/19 02:30,"335 South St, Seattle, WA 98101" +183922,Apple Airpods Headphones,1,150,03/27/19 17:33,"256 Wilson St, Atlanta, GA 30301" +183923,AAA Batteries (4-pack),2,2.99,03/21/19 18:17,"337 Park St, Dallas, TX 75001" +183924,USB-C Charging Cable,1,11.95,03/08/19 10:45,"486 Maple St, Boston, MA 02215" +183925,Bose SoundSport Headphones,1,99.99,03/11/19 09:55,"395 13th St, San Francisco, CA 94016" +183925,Bose SoundSport Headphones,1,99.99,03/11/19 09:55,"395 13th St, San Francisco, CA 94016" +183926,Apple Airpods Headphones,1,150,03/22/19 21:23,"360 Johnson St, San Francisco, CA 94016" +183927,20in Monitor,1,109.99,03/14/19 18:34,"185 Forest St, Los Angeles, CA 90001" +183928,iPhone,1,700,03/29/19 18:49,"177 Chestnut St, Seattle, WA 98101" +183928,Apple Airpods Headphones,1,150,03/29/19 18:49,"177 Chestnut St, Seattle, WA 98101" +183929,USB-C Charging Cable,1,11.95,03/29/19 22:00,"129 Madison St, San Francisco, CA 94016" +183930,USB-C Charging Cable,1,11.95,03/05/19 16:55,"827 9th St, San Francisco, CA 94016" +183931,Apple Airpods Headphones,1,150,03/26/19 10:25,"644 12th St, Atlanta, GA 30301" +183932,USB-C Charging Cable,1,11.95,03/24/19 10:55,"305 13th St, San Francisco, CA 94016" +183933,ThinkPad Laptop,1,999.99,03/23/19 04:17,"133 12th St, Seattle, WA 98101" +183934,AAA Batteries (4-pack),1,2.99,03/09/19 11:01,"703 Elm St, Dallas, TX 75001" +183935,Lightning Charging Cable,2,14.95,03/08/19 22:58,"199 Willow St, Boston, MA 02215" +183936,AA Batteries (4-pack),1,3.84,03/20/19 20:41,"592 2nd St, Boston, MA 02215" +183937,27in FHD Monitor,1,149.99,03/18/19 10:55,"171 Center St, Los Angeles, CA 90001" +183938,Bose SoundSport Headphones,1,99.99,03/21/19 11:16,"418 Madison St, Atlanta, GA 30301" +183939,Bose SoundSport Headphones,1,99.99,03/06/19 13:24,"672 Wilson St, San Francisco, CA 94016" +183940,27in 4K Gaming Monitor,1,389.99,03/03/19 13:10,"272 River St, Boston, MA 02215" +183941,27in FHD Monitor,1,149.99,03/18/19 17:50,"416 Cedar St, Dallas, TX 75001" +183942,AA Batteries (4-pack),1,3.84,03/24/19 12:06,"196 Jackson St, Seattle, WA 98101" +183943,Macbook Pro Laptop,1,1700,03/11/19 21:07,"390 Meadow St, New York City, NY 10001" +183944,Wired Headphones,1,11.99,03/28/19 22:12,"677 Jefferson St, Los Angeles, CA 90001" +183945,Flatscreen TV,1,300,03/07/19 08:12,"507 West St, Los Angeles, CA 90001" +183946,iPhone,1,700,03/26/19 17:39,"406 Main St, Los Angeles, CA 90001" +183947,Bose SoundSport Headphones,1,99.99,03/30/19 20:25,"5 2nd St, Dallas, TX 75001" +183948,Wired Headphones,1,11.99,03/23/19 14:15,"317 4th St, New York City, NY 10001" +183949,27in FHD Monitor,1,149.99,03/08/19 11:44,"577 Cedar St, Boston, MA 02215" +183950,Apple Airpods Headphones,1,150,03/23/19 10:51,"525 Main St, Austin, TX 73301" +183951,27in 4K Gaming Monitor,1,389.99,03/07/19 18:32,"2 Johnson St, Dallas, TX 75001" +183952,Bose SoundSport Headphones,1,99.99,03/10/19 19:04,"937 Walnut St, Portland, OR 97035" +183953,Lightning Charging Cable,1,14.95,03/21/19 18:00,"193 Highland St, Dallas, TX 75001" +183954,Wired Headphones,1,11.99,03/29/19 23:14,"521 River St, San Francisco, CA 94016" +183955,AAA Batteries (4-pack),4,2.99,03/21/19 21:09,"824 Jefferson St, Seattle, WA 98101" +183956,AAA Batteries (4-pack),2,2.99,03/07/19 11:51,"485 Meadow St, San Francisco, CA 94016" +183957,AA Batteries (4-pack),2,3.84,03/25/19 14:11,"954 Meadow St, Portland, OR 97035" +183958,Lightning Charging Cable,1,14.95,03/30/19 15:37,"36 Meadow St, Boston, MA 02215" +183959,AAA Batteries (4-pack),1,2.99,03/20/19 18:08,"280 Madison St, Seattle, WA 98101" +183960,AAA Batteries (4-pack),1,2.99,03/14/19 13:24,"676 Washington St, Boston, MA 02215" +183961,USB-C Charging Cable,1,11.95,03/28/19 11:22,"290 Meadow St, San Francisco, CA 94016" +183962,AA Batteries (4-pack),1,3.84,03/29/19 03:16,"248 Maple St, Boston, MA 02215" +183963,AAA Batteries (4-pack),1,2.99,03/27/19 13:15,"67 Washington St, Dallas, TX 75001" +183964,Vareebadd Phone,1,400,03/23/19 20:50,"388 Willow St, San Francisco, CA 94016" +183965,Lightning Charging Cable,1,14.95,03/13/19 17:24,"348 Maple St, Los Angeles, CA 90001" +183965,20in Monitor,1,109.99,03/13/19 17:24,"348 Maple St, Los Angeles, CA 90001" +183966,Apple Airpods Headphones,1,150,03/04/19 21:55,"393 West St, Los Angeles, CA 90001" +183967,AAA Batteries (4-pack),2,2.99,03/28/19 23:17,"550 Walnut St, San Francisco, CA 94016" +183968,Bose SoundSport Headphones,1,99.99,03/02/19 14:24,"751 12th St, Los Angeles, CA 90001" +183969,Lightning Charging Cable,1,14.95,03/03/19 17:47,"221 Willow St, San Francisco, CA 94016" +183970,Macbook Pro Laptop,1,1700,03/18/19 11:54,"382 Main St, Atlanta, GA 30301" +183971,AA Batteries (4-pack),1,3.84,03/26/19 14:27,"951 Lakeview St, San Francisco, CA 94016" +183972,Lightning Charging Cable,1,14.95,03/22/19 10:59,"998 Main St, Los Angeles, CA 90001" +183973,USB-C Charging Cable,1,11.95,03/31/19 17:08,"470 South St, Los Angeles, CA 90001" +183974,AA Batteries (4-pack),2,3.84,03/22/19 06:23,"998 10th St, Seattle, WA 98101" +183975,AAA Batteries (4-pack),1,2.99,03/03/19 12:22,"529 Sunset St, Dallas, TX 75001" +183975,20in Monitor,1,109.99,03/03/19 12:22,"529 Sunset St, Dallas, TX 75001" +183976,Macbook Pro Laptop,1,1700,03/26/19 08:32,"190 Cherry St, Los Angeles, CA 90001" +183977,Lightning Charging Cable,1,14.95,03/27/19 09:14,"914 Madison St, San Francisco, CA 94016" +183978,Google Phone,1,600,03/04/19 22:52,"54 6th St, San Francisco, CA 94016" +183978,USB-C Charging Cable,1,11.95,03/04/19 22:52,"54 6th St, San Francisco, CA 94016" +183979,AAA Batteries (4-pack),1,2.99,03/31/19 21:56,"683 Adams St, Dallas, TX 75001" +183980,Lightning Charging Cable,1,14.95,03/02/19 12:34,"927 12th St, Atlanta, GA 30301" +183981,Wired Headphones,1,11.99,03/26/19 09:34,"124 10th St, Dallas, TX 75001" +183982,34in Ultrawide Monitor,1,379.99,03/10/19 19:22,"713 Madison St, Portland, ME 04101" +183983,iPhone,1,700,03/09/19 18:27,"315 4th St, San Francisco, CA 94016" +183983,Lightning Charging Cable,1,14.95,03/09/19 18:27,"315 4th St, San Francisco, CA 94016" +183984,Lightning Charging Cable,1,14.95,03/14/19 12:58,"848 Elm St, Los Angeles, CA 90001" +183985,27in FHD Monitor,1,149.99,03/17/19 20:41,"52 Pine St, Seattle, WA 98101" +183986,27in FHD Monitor,1,149.99,03/14/19 19:51,"854 14th St, Boston, MA 02215" +183987,Bose SoundSport Headphones,1,99.99,03/01/19 11:04,"74 12th St, Portland, OR 97035" +183988,USB-C Charging Cable,2,11.95,03/14/19 20:26,"624 Elm St, Dallas, TX 75001" +183989,USB-C Charging Cable,1,11.95,03/11/19 07:09,"135 Meadow St, Atlanta, GA 30301" +183990,Bose SoundSport Headphones,1,99.99,03/05/19 10:02,"938 Willow St, Portland, OR 97035" +183991,Lightning Charging Cable,1,14.95,03/14/19 07:52,"416 10th St, Austin, TX 73301" +183992,iPhone,1,700,03/20/19 10:34,"677 Willow St, New York City, NY 10001" +183993,AAA Batteries (4-pack),1,2.99,03/01/19 21:08,"872 Center St, Austin, TX 73301" +,,,,, +183994,34in Ultrawide Monitor,1,379.99,03/26/19 21:04,"579 Willow St, Portland, OR 97035" +183995,27in 4K Gaming Monitor,1,389.99,03/27/19 10:54,"233 1st St, San Francisco, CA 94016" +183996,AAA Batteries (4-pack),1,2.99,03/21/19 05:56,"792 Hill St, Austin, TX 73301" +183997,iPhone,1,700,03/03/19 14:42,"506 7th St, San Francisco, CA 94016" +183998,Lightning Charging Cable,1,14.95,03/31/19 07:56,"441 14th St, Portland, ME 04101" +183999,ThinkPad Laptop,1,999.99,03/20/19 19:21,"569 Walnut St, Los Angeles, CA 90001" +184000,Wired Headphones,1,11.99,03/02/19 17:24,"131 9th St, Seattle, WA 98101" +184001,27in 4K Gaming Monitor,1,389.99,03/07/19 18:17,"701 Lakeview St, Los Angeles, CA 90001" +184002,USB-C Charging Cable,1,11.95,03/21/19 22:53,"287 Center St, New York City, NY 10001" +184003,Lightning Charging Cable,1,14.95,03/05/19 18:21,"942 Elm St, Atlanta, GA 30301" +184004,iPhone,1,700,03/13/19 22:16,"22 13th St, Boston, MA 02215" +184005,Wired Headphones,1,11.99,03/04/19 21:21,"695 Maple St, Seattle, WA 98101" +184006,Vareebadd Phone,1,400,03/08/19 14:15,"852 1st St, San Francisco, CA 94016" +184007,AA Batteries (4-pack),1,3.84,03/19/19 14:13,"784 Jefferson St, Portland, ME 04101" +184008,AA Batteries (4-pack),1,3.84,03/09/19 11:16,"585 Center St, Boston, MA 02215" +184009,Lightning Charging Cable,1,14.95,03/12/19 18:42,"458 Lakeview St, Boston, MA 02215" +184010,AA Batteries (4-pack),2,3.84,03/29/19 13:58,"745 Cherry St, Boston, MA 02215" +184011,27in FHD Monitor,1,149.99,03/02/19 21:06,"299 2nd St, Dallas, TX 75001" +184012,34in Ultrawide Monitor,1,379.99,03/07/19 11:45,"205 South St, Portland, OR 97035" +184013,AA Batteries (4-pack),1,3.84,03/31/19 14:23,"665 11th St, Seattle, WA 98101" +184014,Flatscreen TV,1,300,03/23/19 12:17,"518 Johnson St, Austin, TX 73301" +184015,Wired Headphones,1,11.99,03/31/19 17:31,"155 Jefferson St, San Francisco, CA 94016" +184016,27in 4K Gaming Monitor,1,389.99,03/10/19 21:01,"205 Ridge St, San Francisco, CA 94016" +184017,AA Batteries (4-pack),1,3.84,03/01/19 21:25,"353 5th St, Los Angeles, CA 90001" +184018,ThinkPad Laptop,1,999.99,03/04/19 21:17,"965 Cherry St, San Francisco, CA 94016" +184019,Lightning Charging Cable,1,14.95,03/29/19 16:46,"777 South St, Los Angeles, CA 90001" +184020,34in Ultrawide Monitor,1,379.99,03/13/19 17:30,"582 Dogwood St, Los Angeles, CA 90001" +184021,AAA Batteries (4-pack),2,2.99,03/16/19 19:14,"288 Adams St, Boston, MA 02215" +184022,USB-C Charging Cable,1,11.95,03/16/19 20:21,"87 North St, Seattle, WA 98101" +184023,AAA Batteries (4-pack),1,2.99,03/30/19 13:22,"800 4th St, New York City, NY 10001" +184024,Wired Headphones,1,11.99,03/22/19 13:39,"350 Washington St, Los Angeles, CA 90001" +184025,AA Batteries (4-pack),2,3.84,03/10/19 16:45,"681 Chestnut St, New York City, NY 10001" +184026,Wired Headphones,1,11.99,03/24/19 19:04,"657 1st St, Los Angeles, CA 90001" +184027,Lightning Charging Cable,1,14.95,03/09/19 16:16,"518 Church St, Seattle, WA 98101" +184028,Flatscreen TV,1,300,03/18/19 23:56,"710 Forest St, Atlanta, GA 30301" +184029,Apple Airpods Headphones,1,150,03/18/19 17:02,"553 Dogwood St, Seattle, WA 98101" +184030,34in Ultrawide Monitor,1,379.99,03/04/19 17:44,"105 Johnson St, New York City, NY 10001" +184031,Bose SoundSport Headphones,1,99.99,03/06/19 23:50,"525 Forest St, San Francisco, CA 94016" +184032,27in 4K Gaming Monitor,1,389.99,03/13/19 00:57,"181 Adams St, Los Angeles, CA 90001" +184033,Bose SoundSport Headphones,1,99.99,03/24/19 20:43,"28 1st St, New York City, NY 10001" +184034,20in Monitor,1,109.99,03/30/19 19:31,"633 West St, Boston, MA 02215" +184035,Lightning Charging Cable,1,14.95,03/31/19 19:40,"209 Chestnut St, Seattle, WA 98101" +184036,34in Ultrawide Monitor,1,379.99,03/07/19 18:29,"365 14th St, San Francisco, CA 94016" +184037,Apple Airpods Headphones,1,150,03/10/19 17:28,"611 2nd St, Boston, MA 02215" +184038,AAA Batteries (4-pack),2,2.99,03/17/19 21:05,"729 Chestnut St, Austin, TX 73301" +184039,USB-C Charging Cable,1,11.95,03/07/19 11:37,"107 Forest St, New York City, NY 10001" +184040,Wired Headphones,1,11.99,03/21/19 21:02,"744 Johnson St, Dallas, TX 75001" +184041,Wired Headphones,1,11.99,03/14/19 15:57,"831 Lincoln St, Seattle, WA 98101" +184042,Apple Airpods Headphones,1,150,03/28/19 13:11,"702 8th St, Boston, MA 02215" +184042,USB-C Charging Cable,1,11.95,03/28/19 13:11,"702 8th St, Boston, MA 02215" +184043,AA Batteries (4-pack),3,3.84,03/07/19 22:05,"164 Johnson St, New York City, NY 10001" +184044,iPhone,1,700,03/26/19 17:46,"223 Washington St, New York City, NY 10001" +184045,20in Monitor,1,109.99,03/01/19 14:29,"955 1st St, San Francisco, CA 94016" +184046,Apple Airpods Headphones,1,150,03/31/19 16:02,"272 North St, San Francisco, CA 94016" +184047,Apple Airpods Headphones,1,150,03/29/19 20:42,"744 Madison St, New York City, NY 10001" +184048,Lightning Charging Cable,1,14.95,03/14/19 11:20,"863 11th St, Austin, TX 73301" +184049,AAA Batteries (4-pack),2,2.99,03/22/19 11:05,"529 9th St, Boston, MA 02215" +184050,USB-C Charging Cable,1,11.95,03/07/19 12:42,"831 2nd St, Dallas, TX 75001" +184051,USB-C Charging Cable,1,11.95,03/07/19 23:09,"388 Lakeview St, Seattle, WA 98101" +184052,Bose SoundSport Headphones,1,99.99,03/19/19 16:59,"277 14th St, New York City, NY 10001" +184053,Wired Headphones,1,11.99,03/13/19 14:23,"464 Johnson St, San Francisco, CA 94016" +184054,Macbook Pro Laptop,1,1700,03/06/19 10:53,"219 Jefferson St, Seattle, WA 98101" +184055,Macbook Pro Laptop,1,1700,03/24/19 18:16,"186 13th St, New York City, NY 10001" +184056,Lightning Charging Cable,1,14.95,03/14/19 18:43,"781 Center St, New York City, NY 10001" +184057,Wired Headphones,1,11.99,03/31/19 01:08,"602 Center St, San Francisco, CA 94016" +184058,AA Batteries (4-pack),1,3.84,03/14/19 15:36,"178 Spruce St, San Francisco, CA 94016" +184059,27in FHD Monitor,1,149.99,03/10/19 21:57,"99 Highland St, Dallas, TX 75001" +184060,Wired Headphones,1,11.99,03/30/19 15:09,"451 Willow St, Los Angeles, CA 90001" +184061,Flatscreen TV,1,300,03/27/19 11:01,"171 Park St, Atlanta, GA 30301" +184062,Macbook Pro Laptop,1,1700,03/17/19 19:50,"981 Madison St, Dallas, TX 75001" +184063,Wired Headphones,1,11.99,03/24/19 20:08,"285 Pine St, San Francisco, CA 94016" +184064,AAA Batteries (4-pack),1,2.99,03/15/19 19:48,"978 Church St, Portland, OR 97035" +184065,Wired Headphones,1,11.99,03/04/19 07:34,"239 Ridge St, San Francisco, CA 94016" +184066,USB-C Charging Cable,1,11.95,03/20/19 15:13,"768 10th St, New York City, NY 10001" +184067,USB-C Charging Cable,1,11.95,03/28/19 10:02,"815 Lakeview St, Boston, MA 02215" +184068,iPhone,1,700,03/14/19 13:21,"808 West St, Boston, MA 02215" +184069,AA Batteries (4-pack),1,3.84,03/22/19 00:38,"544 Lincoln St, Los Angeles, CA 90001" +184070,USB-C Charging Cable,2,11.95,03/14/19 13:55,"329 Spruce St, Atlanta, GA 30301" +184071,AA Batteries (4-pack),1,3.84,03/27/19 09:44,"838 9th St, Dallas, TX 75001" +184072,AA Batteries (4-pack),2,3.84,03/16/19 22:53,"106 Wilson St, Atlanta, GA 30301" +184073,LG Dryer,1,600.0,03/30/19 01:19,"561 Center St, San Francisco, CA 94016" +184074,Wired Headphones,2,11.99,03/04/19 18:06,"974 Highland St, Los Angeles, CA 90001" +184075,27in FHD Monitor,1,149.99,03/09/19 21:15,"623 Maple St, Boston, MA 02215" +184076,27in FHD Monitor,1,149.99,03/02/19 15:03,"686 River St, Dallas, TX 75001" +184077,AA Batteries (4-pack),2,3.84,03/22/19 16:25,"175 Center St, San Francisco, CA 94016" +184078,27in FHD Monitor,1,149.99,03/26/19 14:07,"279 Elm St, Atlanta, GA 30301" +184079,Wired Headphones,1,11.99,03/23/19 16:20,"339 Main St, Portland, OR 97035" +184080,USB-C Charging Cable,1,11.95,03/28/19 20:36,"694 Jefferson St, Seattle, WA 98101" +184081,iPhone,1,700,03/27/19 20:03,"131 10th St, Portland, OR 97035" +184082,Google Phone,1,600,03/29/19 16:08,"677 7th St, Boston, MA 02215" +184083,Wired Headphones,1,11.99,03/13/19 11:23,"526 Willow St, San Francisco, CA 94016" +184084,AAA Batteries (4-pack),1,2.99,03/21/19 12:38,"426 Elm St, Dallas, TX 75001" +184085,34in Ultrawide Monitor,1,379.99,03/17/19 16:02,"406 River St, Los Angeles, CA 90001" +184085,Lightning Charging Cable,1,14.95,03/17/19 16:02,"406 River St, Los Angeles, CA 90001" +184086,Apple Airpods Headphones,1,150,03/09/19 10:38,"730 12th St, Boston, MA 02215" +184087,Apple Airpods Headphones,1,150,03/30/19 18:28,"54 Hickory St, Los Angeles, CA 90001" +184088,Lightning Charging Cable,1,14.95,03/03/19 09:54,"437 Main St, New York City, NY 10001" +184089,USB-C Charging Cable,1,11.95,03/27/19 10:50,"797 Spruce St, San Francisco, CA 94016" +184090,Flatscreen TV,1,300,03/22/19 11:03,"768 Lakeview St, Dallas, TX 75001" +184091,27in FHD Monitor,1,149.99,03/23/19 19:46,"73 West St, Seattle, WA 98101" +184092,USB-C Charging Cable,1,11.95,03/09/19 12:02,"140 West St, New York City, NY 10001" +184093,Lightning Charging Cable,1,14.95,03/31/19 18:39,"791 8th St, Atlanta, GA 30301" +184094,Lightning Charging Cable,1,14.95,03/11/19 23:27,"557 Washington St, Los Angeles, CA 90001" +184095,Apple Airpods Headphones,1,150,03/15/19 05:09,"10 Johnson St, Portland, ME 04101" +184096,Bose SoundSport Headphones,1,99.99,03/28/19 19:43,"484 Cherry St, Austin, TX 73301" +184097,Bose SoundSport Headphones,1,99.99,03/10/19 21:33,"380 1st St, Austin, TX 73301" +184098,27in FHD Monitor,1,149.99,03/16/19 11:07,"436 Hill St, Boston, MA 02215" +184099,USB-C Charging Cable,2,11.95,03/21/19 14:56,"278 12th St, Los Angeles, CA 90001" +184100,USB-C Charging Cable,1,11.95,03/25/19 16:49,"273 Jackson St, Los Angeles, CA 90001" +184101,Wired Headphones,1,11.99,03/21/19 13:01,"965 Chestnut St, San Francisco, CA 94016" +184102,USB-C Charging Cable,1,11.95,03/06/19 11:12,"821 12th St, Dallas, TX 75001" +184103,USB-C Charging Cable,1,11.95,03/11/19 13:37,"757 Wilson St, Seattle, WA 98101" +184104,Google Phone,1,600,03/03/19 10:39,"391 Jackson St, Atlanta, GA 30301" +184105,Apple Airpods Headphones,1,150,03/25/19 13:19,"610 Adams St, Atlanta, GA 30301" +184106,AA Batteries (4-pack),1,3.84,03/15/19 16:09,"85 10th St, San Francisco, CA 94016" +184107,Wired Headphones,1,11.99,03/05/19 22:30,"276 Hickory St, Dallas, TX 75001" +184108,27in FHD Monitor,1,149.99,03/27/19 04:56,"408 Madison St, Los Angeles, CA 90001" +184109,USB-C Charging Cable,1,11.95,03/07/19 19:34,"445 Chestnut St, Los Angeles, CA 90001" +184110,Lightning Charging Cable,1,14.95,03/03/19 21:43,"522 Church St, Dallas, TX 75001" +184111,ThinkPad Laptop,1,999.99,03/29/19 13:49,"657 7th St, San Francisco, CA 94016" +184112,AAA Batteries (4-pack),1,2.99,03/01/19 20:00,"165 Cherry St, Dallas, TX 75001" +184113,AA Batteries (4-pack),1,3.84,03/26/19 16:10,"657 5th St, San Francisco, CA 94016" +184114,AA Batteries (4-pack),1,3.84,03/30/19 16:29,"115 Johnson St, San Francisco, CA 94016" +184115,Flatscreen TV,1,300,03/24/19 15:17,"540 South St, Portland, OR 97035" +184116,Macbook Pro Laptop,1,1700,03/28/19 23:03,"529 Main St, Portland, OR 97035" +184117,Wired Headphones,2,11.99,03/03/19 00:36,"917 2nd St, Austin, TX 73301" +184118,Macbook Pro Laptop,1,1700,03/25/19 16:07,"19 Elm St, Seattle, WA 98101" +184119,Macbook Pro Laptop,1,1700,03/27/19 20:00,"936 13th St, San Francisco, CA 94016" +184120,AAA Batteries (4-pack),1,2.99,03/16/19 17:08,"664 12th St, Atlanta, GA 30301" +184121,Google Phone,1,600,03/23/19 02:54,"189 Madison St, New York City, NY 10001" +184122,Apple Airpods Headphones,1,150,03/21/19 11:01,"585 South St, New York City, NY 10001" +184123,USB-C Charging Cable,1,11.95,03/01/19 10:58,"545 12th St, Los Angeles, CA 90001" +184124,AA Batteries (4-pack),2,3.84,03/09/19 16:38,"696 6th St, San Francisco, CA 94016" +184125,AAA Batteries (4-pack),1,2.99,03/22/19 20:41,"137 Highland St, San Francisco, CA 94016" +184126,AA Batteries (4-pack),3,3.84,03/20/19 20:06,"174 2nd St, Los Angeles, CA 90001" +184127,USB-C Charging Cable,1,11.95,03/25/19 19:24,"768 Center St, Austin, TX 73301" +184128,AA Batteries (4-pack),1,3.84,03/04/19 09:25,"66 Washington St, Dallas, TX 75001" +184129,USB-C Charging Cable,1,11.95,03/10/19 21:26,"702 Church St, San Francisco, CA 94016" +184130,Google Phone,1,600,03/31/19 19:45,"173 West St, San Francisco, CA 94016" +184130,Bose SoundSport Headphones,1,99.99,03/31/19 19:45,"173 West St, San Francisco, CA 94016" +184131,27in 4K Gaming Monitor,1,389.99,03/17/19 11:00,"196 Willow St, San Francisco, CA 94016" +184132,USB-C Charging Cable,1,11.95,03/02/19 23:23,"262 Jackson St, Dallas, TX 75001" +184133,AA Batteries (4-pack),1,3.84,03/13/19 22:07,"240 Main St, New York City, NY 10001" +184134,Apple Airpods Headphones,1,150,03/04/19 12:48,"746 9th St, Dallas, TX 75001" +184135,Apple Airpods Headphones,1,150,03/29/19 09:31,"163 Dogwood St, Los Angeles, CA 90001" +184136,Lightning Charging Cable,1,14.95,03/08/19 18:22,"836 1st St, Los Angeles, CA 90001" +184137,Wired Headphones,1,11.99,03/24/19 21:29,"161 Washington St, New York City, NY 10001" +184138,iPhone,1,700,03/01/19 12:08,"331 14th St, San Francisco, CA 94016" +184138,Lightning Charging Cable,1,14.95,03/01/19 12:08,"331 14th St, San Francisco, CA 94016" +184139,Lightning Charging Cable,1,14.95,03/04/19 20:10,"648 Meadow St, New York City, NY 10001" +184140,Wired Headphones,1,11.99,03/13/19 22:29,"516 Spruce St, San Francisco, CA 94016" +184141,Lightning Charging Cable,1,14.95,03/16/19 01:05,"195 Pine St, Dallas, TX 75001" +184142,AA Batteries (4-pack),2,3.84,03/05/19 16:35,"869 South St, New York City, NY 10001" +184143,Wired Headphones,1,11.99,03/12/19 08:22,"326 5th St, Dallas, TX 75001" +184144,USB-C Charging Cable,1,11.95,03/18/19 20:02,"999 Main St, New York City, NY 10001" +184145,Apple Airpods Headphones,1,150,03/26/19 01:12,"951 11th St, San Francisco, CA 94016" +184146,AA Batteries (4-pack),1,3.84,03/05/19 15:12,"472 Walnut St, Boston, MA 02215" +184147,Apple Airpods Headphones,1,150,03/16/19 18:58,"328 4th St, Portland, OR 97035" +184148,20in Monitor,1,109.99,03/22/19 11:08,"965 Madison St, San Francisco, CA 94016" +184149,AAA Batteries (4-pack),2,2.99,03/01/19 14:21,"286 Sunset St, Atlanta, GA 30301" +184150,27in 4K Gaming Monitor,1,389.99,03/08/19 20:19,"198 Walnut St, Portland, OR 97035" +184151,27in FHD Monitor,2,149.99,03/10/19 11:10,"851 4th St, Atlanta, GA 30301" +184152,AA Batteries (4-pack),1,3.84,03/20/19 16:29,"431 Jefferson St, Atlanta, GA 30301" +184153,27in FHD Monitor,1,149.99,03/29/19 09:55,"113 12th St, Los Angeles, CA 90001" +184154,AA Batteries (4-pack),2,3.84,03/21/19 11:55,"53 Church St, Los Angeles, CA 90001" +184155,Bose SoundSport Headphones,1,99.99,03/27/19 12:10,"125 Sunset St, Seattle, WA 98101" +184156,AA Batteries (4-pack),2,3.84,03/14/19 17:39,"423 Wilson St, Austin, TX 73301" +184157,USB-C Charging Cable,1,11.95,03/11/19 17:03,"553 2nd St, Los Angeles, CA 90001" +184158,AA Batteries (4-pack),1,3.84,03/14/19 18:56,"388 4th St, Dallas, TX 75001" +184159,Google Phone,1,600,03/12/19 10:15,"721 8th St, San Francisco, CA 94016" +184159,USB-C Charging Cable,1,11.95,03/12/19 10:15,"721 8th St, San Francisco, CA 94016" +184160,AA Batteries (4-pack),3,3.84,03/05/19 20:48,"233 Cherry St, Seattle, WA 98101" +184161,Wired Headphones,1,11.99,03/14/19 07:31,"332 South St, Seattle, WA 98101" +184162,AAA Batteries (4-pack),2,2.99,03/17/19 10:41,"211 Madison St, New York City, NY 10001" +184163,Lightning Charging Cable,1,14.95,03/13/19 19:03,"381 13th St, San Francisco, CA 94016" +184164,iPhone,1,700,03/20/19 19:55,"258 13th St, Los Angeles, CA 90001" +184165,USB-C Charging Cable,1,11.95,03/27/19 09:15,"891 Forest St, Seattle, WA 98101" +184166,Lightning Charging Cable,1,14.95,03/12/19 20:26,"221 Pine St, Atlanta, GA 30301" +184167,iPhone,1,700,03/02/19 19:06,"151 Main St, New York City, NY 10001" +184167,Lightning Charging Cable,1,14.95,03/02/19 19:06,"151 Main St, New York City, NY 10001" +184168,ThinkPad Laptop,1,999.99,03/25/19 22:57,"798 Elm St, San Francisco, CA 94016" +184169,Apple Airpods Headphones,1,150,03/17/19 09:14,"368 2nd St, New York City, NY 10001" +184170,Google Phone,1,600,03/02/19 16:22,"662 Church St, Boston, MA 02215" +184171,AAA Batteries (4-pack),1,2.99,03/18/19 22:07,"310 12th St, Atlanta, GA 30301" +184172,AAA Batteries (4-pack),2,2.99,03/18/19 18:39,"283 1st St, Los Angeles, CA 90001" +184173,Apple Airpods Headphones,1,150,03/13/19 10:17,"627 Willow St, New York City, NY 10001" +184174,Bose SoundSport Headphones,1,99.99,03/07/19 22:20,"53 Washington St, Boston, MA 02215" +184175,Wired Headphones,1,11.99,03/09/19 13:08,"154 Sunset St, Los Angeles, CA 90001" +184176,Vareebadd Phone,1,400,03/08/19 10:01,"342 Jackson St, San Francisco, CA 94016" +184177,Lightning Charging Cable,2,14.95,03/31/19 17:27,"593 Chestnut St, Boston, MA 02215" +184178,27in FHD Monitor,1,149.99,03/04/19 14:04,"620 1st St, Los Angeles, CA 90001" +184179,Vareebadd Phone,1,400,03/02/19 17:33,"511 River St, Los Angeles, CA 90001" +184180,USB-C Charging Cable,2,11.95,03/28/19 10:34,"20 8th St, San Francisco, CA 94016" +184181,AAA Batteries (4-pack),1,2.99,03/14/19 16:00,"180 8th St, Boston, MA 02215" +184181,Vareebadd Phone,1,400,03/14/19 16:00,"180 8th St, Boston, MA 02215" +184182,Google Phone,1,600,03/14/19 18:21,"87 Lake St, San Francisco, CA 94016" +184183,AAA Batteries (4-pack),1,2.99,03/27/19 17:22,"248 Lincoln St, Boston, MA 02215" +184184,Flatscreen TV,1,300,03/09/19 17:30,"864 Forest St, San Francisco, CA 94016" +184185,Flatscreen TV,1,300,03/01/19 10:06,"449 4th St, Portland, OR 97035" +184186,Bose SoundSport Headphones,1,99.99,03/10/19 11:53,"686 River St, San Francisco, CA 94016" +184187,27in 4K Gaming Monitor,1,389.99,03/12/19 19:52,"979 Johnson St, New York City, NY 10001" +184188,Bose SoundSport Headphones,1,99.99,03/05/19 15:01,"162 Johnson St, Dallas, TX 75001" +184189,Wired Headphones,1,11.99,03/06/19 07:25,"69 Center St, Seattle, WA 98101" +184190,AA Batteries (4-pack),1,3.84,03/27/19 19:04,"398 Dogwood St, Los Angeles, CA 90001" +184191,Bose SoundSport Headphones,1,99.99,03/23/19 12:41,"960 Church St, San Francisco, CA 94016" +184192,USB-C Charging Cable,1,11.95,03/03/19 21:04,"416 Forest St, San Francisco, CA 94016" +184193,34in Ultrawide Monitor,1,379.99,03/26/19 15:24,"892 Dogwood St, San Francisco, CA 94016" +184194,AA Batteries (4-pack),1,3.84,03/22/19 15:17,"507 Pine St, Austin, TX 73301" +184195,AA Batteries (4-pack),1,3.84,03/23/19 21:00,"480 Lincoln St, Portland, ME 04101" +184196,27in FHD Monitor,1,149.99,03/17/19 12:40,"286 Meadow St, San Francisco, CA 94016" +184197,27in FHD Monitor,1,149.99,03/09/19 18:31,"275 Spruce St, Dallas, TX 75001" +184198,USB-C Charging Cable,1,11.95,03/06/19 12:15,"415 Walnut St, Dallas, TX 75001" +184199,Bose SoundSport Headphones,1,99.99,03/07/19 11:30,"597 South St, San Francisco, CA 94016" +184200,Macbook Pro Laptop,1,1700,03/18/19 22:07,"696 Chestnut St, Austin, TX 73301" +184201,AA Batteries (4-pack),1,3.84,03/03/19 23:45,"724 Willow St, Portland, ME 04101" +184202,Wired Headphones,1,11.99,03/16/19 18:25,"479 5th St, New York City, NY 10001" +184203,Apple Airpods Headphones,1,150,03/21/19 20:00,"11 Elm St, Seattle, WA 98101" +184204,Flatscreen TV,1,300,03/19/19 19:47,"472 4th St, Dallas, TX 75001" +184205,USB-C Charging Cable,1,11.95,03/27/19 11:17,"911 North St, San Francisco, CA 94016" +184206,Macbook Pro Laptop,1,1700,03/25/19 15:18,"495 9th St, San Francisco, CA 94016" +184207,AAA Batteries (4-pack),1,2.99,03/03/19 19:55,"469 Washington St, Portland, OR 97035" +184208,27in FHD Monitor,1,149.99,03/24/19 14:10,"323 Lakeview St, Austin, TX 73301" +184209,Apple Airpods Headphones,1,150,03/19/19 09:03,"794 Cedar St, Boston, MA 02215" +184210,Lightning Charging Cable,1,14.95,03/28/19 10:28,"958 7th St, Portland, OR 97035" +184211,Lightning Charging Cable,1,14.95,03/02/19 23:21,"649 Ridge St, Seattle, WA 98101" +184212,Apple Airpods Headphones,1,150,03/27/19 00:40,"155 4th St, Atlanta, GA 30301" +184213,Lightning Charging Cable,1,14.95,03/23/19 16:17,"132 13th St, San Francisco, CA 94016" +184214,AAA Batteries (4-pack),1,2.99,03/31/19 06:34,"81 Pine St, New York City, NY 10001" +184215,USB-C Charging Cable,1,11.95,03/06/19 12:39,"146 Jackson St, Portland, OR 97035" +184216,AAA Batteries (4-pack),2,2.99,03/25/19 19:50,"70 Park St, Austin, TX 73301" +184217,Lightning Charging Cable,1,14.95,03/26/19 18:21,"749 1st St, New York City, NY 10001" +184218,Bose SoundSport Headphones,1,99.99,03/07/19 18:47,"249 Ridge St, Los Angeles, CA 90001" +184219,AAA Batteries (4-pack),4,2.99,03/03/19 17:09,"806 7th St, Seattle, WA 98101" +184220,Lightning Charging Cable,1,14.95,03/29/19 11:59,"124 Highland St, Portland, ME 04101" +184221,Wired Headphones,1,11.99,03/25/19 21:06,"104 13th St, Dallas, TX 75001" +184222,Google Phone,1,600,03/21/19 07:28,"422 Forest St, Los Angeles, CA 90001" +184222,USB-C Charging Cable,1,11.95,03/21/19 07:28,"422 Forest St, Los Angeles, CA 90001" +184223,AAA Batteries (4-pack),2,2.99,03/07/19 08:34,"515 Maple St, Dallas, TX 75001" +184224,Lightning Charging Cable,1,14.95,03/29/19 08:09,"515 Main St, San Francisco, CA 94016" +184225,Lightning Charging Cable,1,14.95,03/13/19 21:56,"643 Pine St, Dallas, TX 75001" +184226,AA Batteries (4-pack),1,3.84,03/23/19 09:10,"163 Church St, Dallas, TX 75001" +184227,27in FHD Monitor,1,149.99,03/26/19 19:06,"404 14th St, Seattle, WA 98101" +184228,Apple Airpods Headphones,1,150,03/30/19 23:54,"919 11th St, San Francisco, CA 94016" +184229,AA Batteries (4-pack),1,3.84,03/04/19 12:13,"976 12th St, Dallas, TX 75001" +184230,AA Batteries (4-pack),1,3.84,03/12/19 18:26,"993 Washington St, San Francisco, CA 94016" +184231,USB-C Charging Cable,2,11.95,03/26/19 09:23,"271 Church St, Los Angeles, CA 90001" +184232,27in FHD Monitor,1,149.99,03/01/19 13:33,"720 River St, San Francisco, CA 94016" +184233,27in 4K Gaming Monitor,1,389.99,03/25/19 13:26,"580 7th St, New York City, NY 10001" +184234,AAA Batteries (4-pack),4,2.99,03/04/19 16:03,"508 2nd St, San Francisco, CA 94016" +184235,20in Monitor,1,109.99,03/14/19 08:13,"145 1st St, Los Angeles, CA 90001" +184236,USB-C Charging Cable,1,11.95,03/23/19 10:53,"723 4th St, Boston, MA 02215" +184237,Bose SoundSport Headphones,1,99.99,03/08/19 09:10,"954 Highland St, Dallas, TX 75001" +184238,Apple Airpods Headphones,1,150,03/21/19 18:18,"814 Sunset St, Boston, MA 02215" +184239,Bose SoundSport Headphones,1,99.99,03/09/19 14:06,"32 Adams St, Seattle, WA 98101" +184240,AAA Batteries (4-pack),1,2.99,03/25/19 14:46,"664 Adams St, New York City, NY 10001" +184241,AA Batteries (4-pack),2,3.84,03/02/19 12:22,"959 Maple St, San Francisco, CA 94016" +184242,34in Ultrawide Monitor,1,379.99,03/25/19 14:57,"5 Jackson St, Portland, OR 97035" +184243,USB-C Charging Cable,1,11.95,03/09/19 09:50,"693 Madison St, Austin, TX 73301" +184244,34in Ultrawide Monitor,2,379.99,03/18/19 22:19,"672 13th St, Los Angeles, CA 90001" +184245,iPhone,1,700,03/28/19 19:57,"855 Maple St, Portland, OR 97035" +184245,Wired Headphones,1,11.99,03/28/19 19:57,"855 Maple St, Portland, OR 97035" +184246,AAA Batteries (4-pack),1,2.99,03/24/19 13:27,"355 Dogwood St, Austin, TX 73301" +184246,Wired Headphones,1,11.99,03/24/19 13:27,"355 Dogwood St, Austin, TX 73301" +184247,AA Batteries (4-pack),1,3.84,03/31/19 15:44,"721 River St, Portland, ME 04101" +184248,Apple Airpods Headphones,1,150,03/16/19 13:07,"640 Johnson St, Los Angeles, CA 90001" +184249,Wired Headphones,1,11.99,03/06/19 14:10,"149 Jackson St, San Francisco, CA 94016" +184250,iPhone,1,700,03/27/19 10:30,"621 Meadow St, San Francisco, CA 94016" +184251,Apple Airpods Headphones,1,150,03/27/19 06:43,"698 Sunset St, San Francisco, CA 94016" +184252,AA Batteries (4-pack),1,3.84,03/28/19 22:56,"255 Maple St, San Francisco, CA 94016" +184253,Flatscreen TV,1,300,03/08/19 14:00,"56 Cedar St, Dallas, TX 75001" +184254,Google Phone,1,600,03/12/19 09:47,"722 Highland St, Seattle, WA 98101" +184255,34in Ultrawide Monitor,1,379.99,03/04/19 18:29,"818 Park St, Portland, OR 97035" +184256,AAA Batteries (4-pack),1,2.99,03/21/19 11:12,"111 Center St, Boston, MA 02215" +184257,34in Ultrawide Monitor,1,379.99,03/18/19 16:20,"145 Washington St, Austin, TX 73301" +184258,iPhone,1,700,03/22/19 11:02,"407 Sunset St, New York City, NY 10001" +184259,27in FHD Monitor,1,149.99,03/08/19 10:07,"701 Meadow St, Dallas, TX 75001" +184260,Wired Headphones,1,11.99,03/22/19 01:11,"62 6th St, Los Angeles, CA 90001" +184261,USB-C Charging Cable,1,11.95,03/31/19 12:32,"712 5th St, Portland, OR 97035" +,,,,, +184262,Bose SoundSport Headphones,1,99.99,03/22/19 16:22,"171 Madison St, Dallas, TX 75001" +184263,Bose SoundSport Headphones,1,99.99,03/20/19 01:02,"685 North St, Portland, OR 97035" +184264,AA Batteries (4-pack),1,3.84,03/12/19 13:37,"884 4th St, New York City, NY 10001" +184265,AAA Batteries (4-pack),3,2.99,03/06/19 20:55,"689 Lincoln St, San Francisco, CA 94016" +184266,AA Batteries (4-pack),1,3.84,03/13/19 09:56,"455 11th St, Austin, TX 73301" +184267,Lightning Charging Cable,1,14.95,03/17/19 01:18,"764 4th St, Dallas, TX 75001" +184268,AAA Batteries (4-pack),1,2.99,03/22/19 11:03,"593 West St, Boston, MA 02215" +184269,Lightning Charging Cable,1,14.95,03/11/19 11:43,"793 Elm St, Dallas, TX 75001" +184270,27in FHD Monitor,1,149.99,03/12/19 10:27,"290 West St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +184271,Lightning Charging Cable,1,14.95,03/23/19 17:46,"364 Forest St, Boston, MA 02215" +184272,AA Batteries (4-pack),1,3.84,03/31/19 22:35,"609 Maple St, San Francisco, CA 94016" +184273,Bose SoundSport Headphones,1,99.99,03/03/19 22:43,"328 Elm St, Los Angeles, CA 90001" +184274,USB-C Charging Cable,1,11.95,03/07/19 10:41,"568 Jackson St, Dallas, TX 75001" +184275,Lightning Charging Cable,1,14.95,03/24/19 17:02,"540 River St, Boston, MA 02215" +184276,USB-C Charging Cable,1,11.95,03/14/19 16:20,"165 2nd St, Boston, MA 02215" +184277,Flatscreen TV,1,300,03/11/19 20:38,"186 Church St, Portland, OR 97035" +184278,AA Batteries (4-pack),1,3.84,03/03/19 20:09,"440 Washington St, Los Angeles, CA 90001" +184279,27in 4K Gaming Monitor,1,389.99,03/05/19 00:40,"626 Lincoln St, New York City, NY 10001" +184280,USB-C Charging Cable,1,11.95,03/06/19 12:04,"420 Lincoln St, New York City, NY 10001" +184281,iPhone,1,700,03/07/19 07:08,"622 9th St, Portland, OR 97035" +184282,34in Ultrawide Monitor,1,379.99,03/05/19 19:05,"424 Park St, Austin, TX 73301" +184283,Apple Airpods Headphones,1,150,03/06/19 18:27,"155 Adams St, San Francisco, CA 94016" +184284,AAA Batteries (4-pack),1,2.99,03/05/19 21:57,"133 Ridge St, Austin, TX 73301" +184285,Lightning Charging Cable,1,14.95,03/09/19 16:56,"336 4th St, Atlanta, GA 30301" +184286,AAA Batteries (4-pack),1,2.99,03/04/19 18:52,"110 Center St, Austin, TX 73301" +184287,AA Batteries (4-pack),3,3.84,03/01/19 18:07,"299 Washington St, San Francisco, CA 94016" +184288,Lightning Charging Cable,1,14.95,03/24/19 15:56,"765 Meadow St, Los Angeles, CA 90001" +184289,Bose SoundSport Headphones,1,99.99,03/13/19 22:28,"865 North St, San Francisco, CA 94016" +184290,Google Phone,1,600,03/14/19 14:06,"778 North St, New York City, NY 10001" +184291,34in Ultrawide Monitor,1,379.99,03/29/19 12:06,"482 Cedar St, Austin, TX 73301" +184292,Apple Airpods Headphones,1,150,03/18/19 17:10,"340 Hill St, Boston, MA 02215" +184293,Macbook Pro Laptop,1,1700,03/12/19 22:07,"752 Sunset St, San Francisco, CA 94016" +184294,Vareebadd Phone,1,400,03/23/19 10:41,"259 Willow St, Boston, MA 02215" +184295,USB-C Charging Cable,1,11.95,03/14/19 11:55,"327 Spruce St, San Francisco, CA 94016" +184296,27in 4K Gaming Monitor,1,389.99,03/13/19 10:53,"204 Meadow St, Los Angeles, CA 90001" +184297,AA Batteries (4-pack),4,3.84,03/01/19 16:55,"565 8th St, Atlanta, GA 30301" +184298,USB-C Charging Cable,1,11.95,03/28/19 00:03,"939 Park St, San Francisco, CA 94016" +184299,USB-C Charging Cable,1,11.95,03/01/19 23:31,"733 Highland St, Los Angeles, CA 90001" +184300,AAA Batteries (4-pack),2,2.99,03/26/19 09:55,"831 12th St, Los Angeles, CA 90001" +184301,AAA Batteries (4-pack),2,2.99,03/07/19 15:36,"557 Spruce St, New York City, NY 10001" +184302,iPhone,1,700,03/22/19 17:09,"494 Spruce St, Dallas, TX 75001" +184303,iPhone,1,700,03/15/19 08:55,"21 Washington St, Atlanta, GA 30301" +184304,Apple Airpods Headphones,1,150,03/18/19 10:24,"243 Chestnut St, Dallas, TX 75001" +184305,Wired Headphones,1,11.99,03/11/19 14:37,"359 13th St, Portland, OR 97035" +184306,iPhone,1,700,03/11/19 08:23,"209 10th St, Austin, TX 73301" +184307,27in FHD Monitor,1,149.99,03/07/19 14:06,"907 11th St, San Francisco, CA 94016" +184308,Apple Airpods Headphones,1,150,03/04/19 13:41,"152 Cherry St, Portland, OR 97035" +184309,Apple Airpods Headphones,1,150,03/20/19 11:44,"487 13th St, Los Angeles, CA 90001" +184310,20in Monitor,1,109.99,03/31/19 23:48,"965 12th St, New York City, NY 10001" +184311,20in Monitor,1,109.99,03/11/19 19:57,"250 Forest St, Boston, MA 02215" +184312,Wired Headphones,2,11.99,03/16/19 23:04,"65 Church St, Los Angeles, CA 90001" +184313,AA Batteries (4-pack),1,3.84,03/19/19 14:17,"653 Elm St, New York City, NY 10001" +184314,Wired Headphones,1,11.99,03/08/19 16:17,"965 6th St, New York City, NY 10001" +184315,USB-C Charging Cable,1,11.95,03/09/19 14:36,"625 4th St, Los Angeles, CA 90001" +184316,AAA Batteries (4-pack),2,2.99,03/01/19 23:45,"866 Highland St, Seattle, WA 98101" +184317,AA Batteries (4-pack),1,3.84,03/14/19 21:48,"397 Cherry St, New York City, NY 10001" +184318,Lightning Charging Cable,1,14.95,03/12/19 19:19,"895 12th St, Boston, MA 02215" +184319,27in 4K Gaming Monitor,1,389.99,03/11/19 15:31,"376 Cedar St, Austin, TX 73301" +184320,USB-C Charging Cable,1,11.95,03/29/19 14:19,"910 13th St, Dallas, TX 75001" +184321,USB-C Charging Cable,1,11.95,03/17/19 17:58,"645 Main St, Boston, MA 02215" +184322,Macbook Pro Laptop,1,1700,03/20/19 14:21,"250 Lakeview St, San Francisco, CA 94016" +184323,AAA Batteries (4-pack),1,2.99,03/23/19 23:43,"89 4th St, San Francisco, CA 94016" +184324,AAA Batteries (4-pack),1,2.99,03/01/19 08:12,"403 River St, New York City, NY 10001" +184325,Bose SoundSport Headphones,1,99.99,03/19/19 13:29,"470 13th St, Portland, OR 97035" +184326,Wired Headphones,2,11.99,03/09/19 18:41,"485 10th St, Seattle, WA 98101" +184327,Lightning Charging Cable,1,14.95,03/25/19 23:31,"556 13th St, Los Angeles, CA 90001" +184328,Wired Headphones,1,11.99,03/16/19 03:31,"457 Walnut St, Los Angeles, CA 90001" +184329,AAA Batteries (4-pack),1,2.99,03/29/19 10:38,"560 7th St, Los Angeles, CA 90001" +184330,Bose SoundSport Headphones,2,99.99,03/05/19 10:05,"531 1st St, Atlanta, GA 30301" +184331,AAA Batteries (4-pack),1,2.99,03/25/19 13:18,"627 Maple St, Los Angeles, CA 90001" +184332,27in 4K Gaming Monitor,1,389.99,03/20/19 14:28,"210 West St, New York City, NY 10001" +184333,AA Batteries (4-pack),1,3.84,03/17/19 16:05,"489 5th St, San Francisco, CA 94016" +184334,27in FHD Monitor,1,149.99,03/19/19 10:57,"290 Dogwood St, Portland, OR 97035" +184335,Macbook Pro Laptop,1,1700,03/21/19 21:36,"961 Madison St, Dallas, TX 75001" +184336,Vareebadd Phone,1,400,03/07/19 07:53,"989 Meadow St, San Francisco, CA 94016" +184337,AA Batteries (4-pack),1,3.84,03/29/19 00:49,"566 Dogwood St, San Francisco, CA 94016" +184338,AAA Batteries (4-pack),1,2.99,03/12/19 15:56,"875 Spruce St, Dallas, TX 75001" +184339,AAA Batteries (4-pack),1,2.99,03/07/19 19:00,"869 Walnut St, Seattle, WA 98101" +184340,27in 4K Gaming Monitor,1,389.99,03/07/19 20:41,"192 Cherry St, Portland, OR 97035" +184341,Vareebadd Phone,1,400,03/01/19 09:45,"520 7th St, Boston, MA 02215" +184342,Bose SoundSport Headphones,1,99.99,03/17/19 11:06,"155 Adams St, San Francisco, CA 94016" +184343,USB-C Charging Cable,1,11.95,03/29/19 22:03,"139 2nd St, Los Angeles, CA 90001" +184344,Bose SoundSport Headphones,1,99.99,03/29/19 20:10,"236 Hickory St, New York City, NY 10001" +184345,Google Phone,1,600,03/18/19 09:31,"317 Hill St, Austin, TX 73301" +184345,Wired Headphones,1,11.99,03/18/19 09:31,"317 Hill St, Austin, TX 73301" +184346,USB-C Charging Cable,2,11.95,03/25/19 21:00,"331 14th St, San Francisco, CA 94016" +184347,USB-C Charging Cable,1,11.95,03/20/19 15:59,"404 7th St, San Francisco, CA 94016" +184348,34in Ultrawide Monitor,1,379.99,03/27/19 09:25,"916 Walnut St, Los Angeles, CA 90001" +184349,AAA Batteries (4-pack),1,2.99,03/27/19 13:48,"956 Madison St, New York City, NY 10001" +184350,27in FHD Monitor,1,149.99,03/01/19 12:18,"544 Hill St, Los Angeles, CA 90001" +184351,Google Phone,1,600,03/21/19 13:56,"232 7th St, Dallas, TX 75001" +184351,Wired Headphones,1,11.99,03/21/19 13:56,"232 7th St, Dallas, TX 75001" +184352,Bose SoundSport Headphones,1,99.99,03/08/19 12:53,"799 Main St, Boston, MA 02215" +184353,Lightning Charging Cable,1,14.95,03/02/19 11:45,"772 Adams St, Portland, ME 04101" +184354,27in 4K Gaming Monitor,1,389.99,03/21/19 13:42,"954 5th St, San Francisco, CA 94016" +184355,Lightning Charging Cable,1,14.95,03/18/19 00:21,"147 Ridge St, Los Angeles, CA 90001" +184356,20in Monitor,1,109.99,03/10/19 11:03,"654 Johnson St, Seattle, WA 98101" +184357,AAA Batteries (4-pack),1,2.99,03/06/19 10:58,"393 Johnson St, Los Angeles, CA 90001" +184358,Google Phone,1,600,03/04/19 15:24,"304 Willow St, San Francisco, CA 94016" +184358,USB-C Charging Cable,2,11.95,03/04/19 15:24,"304 Willow St, San Francisco, CA 94016" +184359,USB-C Charging Cable,1,11.95,03/24/19 11:09,"81 4th St, Los Angeles, CA 90001" +184360,Vareebadd Phone,1,400,03/26/19 17:08,"721 Meadow St, Atlanta, GA 30301" +184361,20in Monitor,1,109.99,03/30/19 08:31,"673 Forest St, New York City, NY 10001" +184362,USB-C Charging Cable,1,11.95,03/07/19 17:59,"718 Sunset St, San Francisco, CA 94016" +184363,AA Batteries (4-pack),1,3.84,03/14/19 18:45,"360 6th St, Los Angeles, CA 90001" +184364,Bose SoundSport Headphones,1,99.99,03/13/19 17:44,"876 7th St, Seattle, WA 98101" +184365,USB-C Charging Cable,1,11.95,03/27/19 19:06,"530 11th St, Dallas, TX 75001" +184366,USB-C Charging Cable,1,11.95,03/10/19 11:01,"954 North St, San Francisco, CA 94016" +184367,AAA Batteries (4-pack),1,2.99,03/13/19 15:34,"501 Meadow St, San Francisco, CA 94016" +184368,Apple Airpods Headphones,1,150,03/07/19 14:04,"601 Lakeview St, San Francisco, CA 94016" +184369,Apple Airpods Headphones,1,150,03/10/19 23:22,"870 Hill St, New York City, NY 10001" +184370,Lightning Charging Cable,1,14.95,03/21/19 09:32,"952 7th St, Atlanta, GA 30301" +184371,AA Batteries (4-pack),1,3.84,03/09/19 21:29,"525 6th St, Boston, MA 02215" +184372,Lightning Charging Cable,1,14.95,03/18/19 14:33,"590 5th St, Seattle, WA 98101" +184373,Lightning Charging Cable,1,14.95,03/24/19 14:31,"331 13th St, Los Angeles, CA 90001" +184374,Bose SoundSport Headphones,1,99.99,03/09/19 10:29,"694 Willow St, San Francisco, CA 94016" +184375,Google Phone,1,600,03/09/19 15:55,"914 North St, Dallas, TX 75001" +184376,Wired Headphones,1,11.99,03/12/19 08:35,"168 Pine St, Dallas, TX 75001" +184377,LG Washing Machine,1,600.0,03/05/19 13:43,"250 Spruce St, Dallas, TX 75001" +184378,27in FHD Monitor,1,149.99,03/24/19 19:28,"699 1st St, San Francisco, CA 94016" +184379,AAA Batteries (4-pack),1,2.99,03/20/19 13:14,"647 11th St, Austin, TX 73301" +184380,Lightning Charging Cable,1,14.95,03/03/19 11:40,"965 West St, Boston, MA 02215" +184381,USB-C Charging Cable,1,11.95,03/21/19 09:32,"128 Lake St, San Francisco, CA 94016" +184382,Apple Airpods Headphones,1,150,03/06/19 14:25,"253 Hill St, New York City, NY 10001" +184383,Bose SoundSport Headphones,1,99.99,03/20/19 17:23,"322 Center St, New York City, NY 10001" +184384,AAA Batteries (4-pack),1,2.99,03/18/19 17:42,"637 Forest St, Seattle, WA 98101" +184385,Wired Headphones,1,11.99,03/21/19 19:02,"364 Lincoln St, Dallas, TX 75001" +184386,AAA Batteries (4-pack),1,2.99,03/22/19 12:01,"313 River St, Boston, MA 02215" +184387,AAA Batteries (4-pack),3,2.99,03/23/19 11:47,"463 Main St, Seattle, WA 98101" +184388,USB-C Charging Cable,1,11.95,03/11/19 21:13,"965 Spruce St, San Francisco, CA 94016" +184389,AA Batteries (4-pack),1,3.84,03/18/19 15:34,"3 Dogwood St, Los Angeles, CA 90001" +184390,iPhone,1,700,03/30/19 23:11,"860 9th St, Seattle, WA 98101" +184391,27in 4K Gaming Monitor,1,389.99,03/31/19 21:58,"617 River St, Los Angeles, CA 90001" +184392,USB-C Charging Cable,1,11.95,03/20/19 15:00,"949 Main St, Austin, TX 73301" +184393,34in Ultrawide Monitor,1,379.99,03/23/19 20:26,"417 Willow St, Los Angeles, CA 90001" +184394,AAA Batteries (4-pack),1,2.99,03/30/19 20:19,"351 Meadow St, Boston, MA 02215" +184395,Flatscreen TV,1,300,03/27/19 18:54,"636 2nd St, Portland, OR 97035" +184396,Bose SoundSport Headphones,1,99.99,03/26/19 15:29,"466 8th St, Seattle, WA 98101" +184397,27in FHD Monitor,1,149.99,03/09/19 17:49,"624 Adams St, Boston, MA 02215" +184398,20in Monitor,1,109.99,03/28/19 23:20,"431 Pine St, San Francisco, CA 94016" +184399,Google Phone,1,600,03/07/19 15:46,"942 13th St, Los Angeles, CA 90001" +184400,AA Batteries (4-pack),1,3.84,03/01/19 13:20,"99 Lincoln St, Los Angeles, CA 90001" +184401,AAA Batteries (4-pack),1,2.99,03/28/19 12:33,"614 Madison St, San Francisco, CA 94016" +184402,27in 4K Gaming Monitor,1,389.99,03/24/19 08:50,"160 2nd St, Los Angeles, CA 90001" +184403,Bose SoundSport Headphones,1,99.99,03/31/19 08:48,"741 7th St, San Francisco, CA 94016" +184404,Wired Headphones,1,11.99,03/02/19 01:17,"146 Church St, San Francisco, CA 94016" +184405,iPhone,1,700,03/19/19 06:44,"223 Forest St, Boston, MA 02215" +184406,AA Batteries (4-pack),1,3.84,03/04/19 11:13,"492 Washington St, San Francisco, CA 94016" +184407,AA Batteries (4-pack),1,3.84,03/04/19 15:56,"97 Church St, Boston, MA 02215" +184408,Macbook Pro Laptop,1,1700,03/08/19 18:37,"625 River St, Seattle, WA 98101" +184409,34in Ultrawide Monitor,1,379.99,03/30/19 09:01,"315 Center St, San Francisco, CA 94016" +184410,27in FHD Monitor,1,149.99,03/06/19 20:03,"91 Elm St, Los Angeles, CA 90001" +184411,Apple Airpods Headphones,2,150,03/03/19 11:45,"718 Highland St, Seattle, WA 98101" +184412,AA Batteries (4-pack),1,3.84,03/28/19 05:18,"991 Jefferson St, Seattle, WA 98101" +184413,Bose SoundSport Headphones,1,99.99,03/21/19 22:24,"541 Lincoln St, San Francisco, CA 94016" +184414,Apple Airpods Headphones,1,150,03/17/19 20:41,"493 11th St, San Francisco, CA 94016" +184415,iPhone,1,700,03/11/19 19:15,"283 Adams St, Boston, MA 02215" +184415,Apple Airpods Headphones,1,150,03/11/19 19:15,"283 Adams St, Boston, MA 02215" +184416,USB-C Charging Cable,1,11.95,03/12/19 13:18,"624 Chestnut St, San Francisco, CA 94016" +184417,Flatscreen TV,1,300,03/30/19 10:27,"620 1st St, Austin, TX 73301" +184418,Wired Headphones,1,11.99,03/30/19 15:13,"471 5th St, Seattle, WA 98101" +184419,Apple Airpods Headphones,1,150,03/09/19 16:34,"345 13th St, Boston, MA 02215" +184420,Wired Headphones,1,11.99,03/31/19 21:41,"528 Cedar St, Portland, OR 97035" +184421,Bose SoundSport Headphones,1,99.99,03/08/19 17:42,"759 Madison St, Dallas, TX 75001" +184422,Lightning Charging Cable,1,14.95,03/28/19 08:19,"591 West St, San Francisco, CA 94016" +184423,27in FHD Monitor,1,149.99,03/01/19 12:49,"512 Jackson St, New York City, NY 10001" +184424,AAA Batteries (4-pack),1,2.99,03/31/19 13:54,"568 Cherry St, Los Angeles, CA 90001" +184425,Wired Headphones,1,11.99,03/01/19 20:03,"32 Spruce St, San Francisco, CA 94016" +184426,20in Monitor,1,109.99,03/20/19 14:53,"502 Forest St, San Francisco, CA 94016" +184427,Vareebadd Phone,1,400,03/18/19 22:55,"55 West St, Atlanta, GA 30301" +184427,AAA Batteries (4-pack),3,2.99,03/18/19 22:55,"55 West St, Atlanta, GA 30301" +184428,AAA Batteries (4-pack),1,2.99,03/26/19 18:40,"782 7th St, Seattle, WA 98101" +184429,Flatscreen TV,1,300,03/04/19 08:34,"46 Main St, Portland, OR 97035" +184430,Bose SoundSport Headphones,1,99.99,03/27/19 20:06,"33 9th St, Boston, MA 02215" +184431,ThinkPad Laptop,1,999.99,03/11/19 09:00,"550 14th St, San Francisco, CA 94016" +184432,AA Batteries (4-pack),1,3.84,03/07/19 20:41,"879 River St, San Francisco, CA 94016" +184433,AAA Batteries (4-pack),1,2.99,03/16/19 19:08,"158 Lakeview St, San Francisco, CA 94016" +184434,Apple Airpods Headphones,1,150,03/23/19 16:38,"201 Madison St, Dallas, TX 75001" +184435,Vareebadd Phone,1,400,03/10/19 10:21,"960 Willow St, Boston, MA 02215" +184436,Apple Airpods Headphones,1,150,03/21/19 16:54,"633 14th St, Boston, MA 02215" +184437,27in 4K Gaming Monitor,1,389.99,03/08/19 18:40,"908 Lake St, Los Angeles, CA 90001" +184438,AA Batteries (4-pack),1,3.84,03/19/19 08:03,"131 13th St, Los Angeles, CA 90001" +184439,AAA Batteries (4-pack),1,2.99,03/20/19 11:48,"963 River St, Boston, MA 02215" +184440,AA Batteries (4-pack),1,3.84,03/26/19 15:29,"46 Jackson St, Atlanta, GA 30301" +184441,Lightning Charging Cable,1,14.95,03/23/19 20:36,"465 Spruce St, Atlanta, GA 30301" +184442,20in Monitor,1,109.99,03/30/19 20:53,"351 Maple St, San Francisco, CA 94016" +184443,AA Batteries (4-pack),1,3.84,03/24/19 21:54,"986 4th St, San Francisco, CA 94016" +184444,34in Ultrawide Monitor,1,379.99,03/06/19 22:07,"706 Lake St, Los Angeles, CA 90001" +184445,Apple Airpods Headphones,1,150,03/22/19 22:28,"439 10th St, Seattle, WA 98101" +184446,Flatscreen TV,1,300,03/31/19 10:39,"208 Jefferson St, San Francisco, CA 94016" +184447,Google Phone,1,600,03/10/19 16:12,"93 Cedar St, San Francisco, CA 94016" +184448,AAA Batteries (4-pack),2,2.99,03/06/19 23:56,"519 Meadow St, San Francisco, CA 94016" +184449,AAA Batteries (4-pack),1,2.99,03/28/19 22:20,"790 11th St, Boston, MA 02215" +184450,Lightning Charging Cable,1,14.95,03/08/19 10:40,"514 Elm St, Boston, MA 02215" +184451,Apple Airpods Headphones,1,150,03/02/19 22:13,"815 South St, Dallas, TX 75001" +184452,iPhone,1,700,03/31/19 19:51,"325 Dogwood St, Austin, TX 73301" +184453,20in Monitor,1,109.99,03/07/19 14:44,"42 Pine St, Portland, OR 97035" +184454,20in Monitor,1,109.99,03/11/19 00:52,"149 Hickory St, Seattle, WA 98101" +184455,Google Phone,1,600,03/28/19 09:57,"881 Park St, Los Angeles, CA 90001" +184455,Bose SoundSport Headphones,1,99.99,03/28/19 09:57,"881 Park St, Los Angeles, CA 90001" +184456,Google Phone,1,600,03/22/19 08:57,"156 Lakeview St, Atlanta, GA 30301" +184457,27in FHD Monitor,1,149.99,03/05/19 08:07,"608 Meadow St, New York City, NY 10001" +184458,Wired Headphones,1,11.99,03/17/19 02:43,"523 13th St, Seattle, WA 98101" +184459,Wired Headphones,1,11.99,03/21/19 21:49,"325 Jefferson St, Atlanta, GA 30301" +184460,Bose SoundSport Headphones,1,99.99,03/22/19 21:30,"355 Walnut St, New York City, NY 10001" +184461,Lightning Charging Cable,1,14.95,03/06/19 23:44,"57 North St, San Francisco, CA 94016" +184462,USB-C Charging Cable,1,11.95,03/03/19 19:56,"244 River St, Los Angeles, CA 90001" +184463,34in Ultrawide Monitor,1,379.99,03/26/19 20:41,"368 Sunset St, San Francisco, CA 94016" +,,,,, +184464,27in 4K Gaming Monitor,1,389.99,03/27/19 19:36,"240 Lake St, San Francisco, CA 94016" +184465,27in FHD Monitor,1,149.99,03/22/19 12:19,"701 Walnut St, San Francisco, CA 94016" +184466,27in FHD Monitor,1,149.99,03/20/19 19:08,"156 Adams St, Boston, MA 02215" +184467,Bose SoundSport Headphones,1,99.99,03/01/19 22:07,"703 Jefferson St, Los Angeles, CA 90001" +184468,AA Batteries (4-pack),1,3.84,03/30/19 19:39,"319 2nd St, New York City, NY 10001" +184469,Lightning Charging Cable,1,14.95,03/12/19 21:57,"704 Pine St, Boston, MA 02215" +184470,USB-C Charging Cable,1,11.95,03/31/19 20:09,"994 Center St, Seattle, WA 98101" +184471,Bose SoundSport Headphones,1,99.99,03/18/19 11:45,"651 13th St, Portland, OR 97035" +184472,AAA Batteries (4-pack),1,2.99,03/27/19 15:02,"772 Park St, Los Angeles, CA 90001" +184473,27in 4K Gaming Monitor,1,389.99,03/16/19 14:59,"694 Lake St, San Francisco, CA 94016" +184474,Lightning Charging Cable,1,14.95,03/11/19 17:28,"106 Jefferson St, New York City, NY 10001" +184475,USB-C Charging Cable,1,11.95,03/31/19 10:15,"533 Lakeview St, Austin, TX 73301" +184476,USB-C Charging Cable,1,11.95,03/20/19 16:20,"552 2nd St, New York City, NY 10001" +184477,USB-C Charging Cable,1,11.95,03/01/19 20:43,"319 Adams St, Boston, MA 02215" +184478,Wired Headphones,1,11.99,03/10/19 00:04,"541 7th St, Boston, MA 02215" +184479,AA Batteries (4-pack),1,3.84,03/05/19 23:34,"708 9th St, Boston, MA 02215" +184480,AA Batteries (4-pack),1,3.84,03/29/19 21:29,"717 12th St, Seattle, WA 98101" +184481,Wired Headphones,1,11.99,03/15/19 18:45,"730 Park St, Dallas, TX 75001" +184482,Apple Airpods Headphones,1,150,03/15/19 15:22,"639 Main St, Atlanta, GA 30301" +184483,Bose SoundSport Headphones,1,99.99,03/11/19 18:45,"901 Sunset St, Boston, MA 02215" +184484,27in FHD Monitor,1,149.99,03/31/19 21:04,"919 11th St, San Francisco, CA 94016" +184485,AA Batteries (4-pack),1,3.84,03/26/19 14:17,"8 North St, San Francisco, CA 94016" +184486,AA Batteries (4-pack),1,3.84,03/15/19 13:21,"977 4th St, Seattle, WA 98101" +184487,27in FHD Monitor,1,149.99,03/19/19 10:27,"90 Pine St, San Francisco, CA 94016" +184488,Wired Headphones,1,11.99,03/20/19 01:07,"616 Highland St, New York City, NY 10001" +184489,AAA Batteries (4-pack),2,2.99,03/02/19 16:38,"394 North St, Dallas, TX 75001" +184490,27in 4K Gaming Monitor,1,389.99,03/16/19 01:40,"923 Spruce St, Los Angeles, CA 90001" +184491,Lightning Charging Cable,1,14.95,03/12/19 15:31,"990 2nd St, Boston, MA 02215" +184492,27in 4K Gaming Monitor,1,389.99,03/31/19 10:10,"543 Madison St, Austin, TX 73301" +184493,AAA Batteries (4-pack),1,2.99,03/16/19 20:47,"816 Walnut St, Atlanta, GA 30301" +184494,AA Batteries (4-pack),3,3.84,03/06/19 21:36,"322 Johnson St, Dallas, TX 75001" +184495,AA Batteries (4-pack),1,3.84,03/11/19 19:33,"394 River St, New York City, NY 10001" +184496,Flatscreen TV,1,300,03/16/19 07:43,"974 Walnut St, Dallas, TX 75001" +184497,Google Phone,1,600,03/03/19 06:06,"943 Chestnut St, Atlanta, GA 30301" +184498,27in FHD Monitor,1,149.99,03/18/19 23:15,"814 Church St, San Francisco, CA 94016" +184499,Bose SoundSport Headphones,1,99.99,03/07/19 07:52,"882 Dogwood St, San Francisco, CA 94016" +184500,Wired Headphones,1,11.99,03/06/19 21:24,"808 Sunset St, New York City, NY 10001" +184501,27in FHD Monitor,1,149.99,03/25/19 17:21,"291 Adams St, Dallas, TX 75001" +184502,AA Batteries (4-pack),2,3.84,03/03/19 18:14,"705 Pine St, Los Angeles, CA 90001" +184503,27in 4K Gaming Monitor,1,389.99,03/13/19 19:40,"393 Adams St, Seattle, WA 98101" +184504,Bose SoundSport Headphones,1,99.99,03/18/19 22:11,"544 14th St, Atlanta, GA 30301" +184505,AAA Batteries (4-pack),1,2.99,03/08/19 11:56,"808 Ridge St, Austin, TX 73301" +184506,Google Phone,1,600,03/31/19 11:34,"756 11th St, New York City, NY 10001" +184507,iPhone,1,700,03/04/19 12:27,"154 Willow St, New York City, NY 10001" +184508,Apple Airpods Headphones,1,150,03/20/19 09:54,"177 11th St, Dallas, TX 75001" +184509,Wired Headphones,1,11.99,03/05/19 11:06,"690 Spruce St, Portland, OR 97035" +184510,27in 4K Gaming Monitor,1,389.99,03/04/19 00:43,"610 Sunset St, San Francisco, CA 94016" +184511,Apple Airpods Headphones,1,150,03/04/19 12:15,"870 1st St, Austin, TX 73301" +184512,AA Batteries (4-pack),1,3.84,03/30/19 17:51,"843 Madison St, San Francisco, CA 94016" +184513,AAA Batteries (4-pack),1,2.99,03/31/19 11:42,"618 Spruce St, San Francisco, CA 94016" +184513,Lightning Charging Cable,2,14.95,03/31/19 11:42,"618 Spruce St, San Francisco, CA 94016" +184514,Lightning Charging Cable,1,14.95,03/03/19 10:00,"999 Center St, Boston, MA 02215" +184515,AAA Batteries (4-pack),2,2.99,03/30/19 11:53,"601 North St, Seattle, WA 98101" +184516,Lightning Charging Cable,1,14.95,03/22/19 11:16,"85 Spruce St, Dallas, TX 75001" +184517,Lightning Charging Cable,1,14.95,03/10/19 19:39,"829 Meadow St, New York City, NY 10001" +184518,AA Batteries (4-pack),1,3.84,03/26/19 08:21,"181 Main St, New York City, NY 10001" +184519,Flatscreen TV,1,300,03/13/19 09:32,"544 North St, San Francisco, CA 94016" +184520,Wired Headphones,1,11.99,03/10/19 20:28,"566 North St, New York City, NY 10001" +184521,Lightning Charging Cable,1,14.95,03/21/19 10:20,"529 Main St, Boston, MA 02215" +184522,AA Batteries (4-pack),1,3.84,03/02/19 23:11,"236 Highland St, Los Angeles, CA 90001" +184523,34in Ultrawide Monitor,1,379.99,03/12/19 02:25,"366 Adams St, San Francisco, CA 94016" +184524,AA Batteries (4-pack),2,3.84,03/16/19 20:07,"945 Spruce St, San Francisco, CA 94016" +184525,Wired Headphones,2,11.99,03/14/19 15:01,"31 Wilson St, Los Angeles, CA 90001" +184526,Wired Headphones,1,11.99,03/05/19 23:27,"285 Cherry St, Atlanta, GA 30301" +184527,27in 4K Gaming Monitor,1,389.99,03/11/19 15:30,"243 Center St, Atlanta, GA 30301" +184528,AAA Batteries (4-pack),2,2.99,03/15/19 07:56,"973 Johnson St, San Francisco, CA 94016" +184529,Vareebadd Phone,1,400,03/24/19 00:21,"562 Johnson St, Boston, MA 02215" +184530,USB-C Charging Cable,1,11.95,03/11/19 17:35,"933 Park St, Los Angeles, CA 90001" +184531,Flatscreen TV,1,300,03/17/19 23:16,"466 9th St, Atlanta, GA 30301" +184532,Wired Headphones,1,11.99,03/24/19 12:46,"943 Chestnut St, Dallas, TX 75001" +184533,27in FHD Monitor,1,149.99,03/04/19 06:58,"87 River St, New York City, NY 10001" +184534,Macbook Pro Laptop,1,1700,03/24/19 12:08,"828 14th St, San Francisco, CA 94016" +184535,Bose SoundSport Headphones,1,99.99,03/05/19 02:04,"235 Pine St, New York City, NY 10001" +184536,ThinkPad Laptop,1,999.99,03/23/19 17:04,"982 Pine St, Portland, OR 97035" +184537,Bose SoundSport Headphones,1,99.99,03/01/19 14:49,"138 Highland St, Austin, TX 73301" +184538,AAA Batteries (4-pack),4,2.99,03/31/19 12:56,"200 Forest St, Los Angeles, CA 90001" +184539,AAA Batteries (4-pack),1,2.99,03/09/19 13:26,"254 Highland St, Dallas, TX 75001" +184540,Lightning Charging Cable,1,14.95,03/22/19 20:14,"705 12th St, Los Angeles, CA 90001" +184541,AA Batteries (4-pack),1,3.84,03/18/19 00:38,"271 Ridge St, Portland, OR 97035" +184542,Wired Headphones,1,11.99,03/23/19 16:37,"362 5th St, Portland, OR 97035" +184543,Lightning Charging Cable,1,14.95,03/21/19 23:46,"903 Ridge St, New York City, NY 10001" +184544,Apple Airpods Headphones,1,150,03/16/19 19:30,"941 Cherry St, Dallas, TX 75001" +184545,USB-C Charging Cable,1,11.95,03/07/19 18:47,"207 Highland St, San Francisco, CA 94016" +184546,20in Monitor,1,109.99,03/04/19 20:15,"149 7th St, Boston, MA 02215" +184547,20in Monitor,1,109.99,03/08/19 20:24,"143 Walnut St, Portland, OR 97035" +184548,ThinkPad Laptop,1,999.99,03/10/19 21:14,"461 Jackson St, San Francisco, CA 94016" +184549,ThinkPad Laptop,1,999.99,03/09/19 08:19,"355 9th St, Los Angeles, CA 90001" +184550,USB-C Charging Cable,1,11.95,03/31/19 22:31,"417 Johnson St, Dallas, TX 75001" +184551,Google Phone,1,600,03/06/19 10:41,"795 Adams St, Atlanta, GA 30301" +184552,27in 4K Gaming Monitor,1,389.99,03/29/19 00:44,"143 River St, San Francisco, CA 94016" +184553,Lightning Charging Cable,1,14.95,03/08/19 14:40,"393 Willow St, San Francisco, CA 94016" +184554,USB-C Charging Cable,1,11.95,03/27/19 16:19,"542 11th St, Seattle, WA 98101" +184554,AAA Batteries (4-pack),1,2.99,03/27/19 16:19,"542 11th St, Seattle, WA 98101" +184555,AAA Batteries (4-pack),2,2.99,03/09/19 15:49,"483 Hickory St, Boston, MA 02215" +184556,USB-C Charging Cable,1,11.95,03/08/19 09:05,"55 Johnson St, Los Angeles, CA 90001" +184557,Lightning Charging Cable,1,14.95,03/30/19 22:37,"67 Madison St, Dallas, TX 75001" +184558,Wired Headphones,1,11.99,03/14/19 01:36,"600 Cedar St, Atlanta, GA 30301" +184559,USB-C Charging Cable,1,11.95,03/11/19 02:37,"271 Sunset St, Atlanta, GA 30301" +184560,Lightning Charging Cable,1,14.95,03/26/19 17:32,"554 Wilson St, Atlanta, GA 30301" +184561,USB-C Charging Cable,1,11.95,03/28/19 15:30,"258 Sunset St, Portland, OR 97035" +184562,Macbook Pro Laptop,1,1700,03/05/19 01:52,"175 Lincoln St, New York City, NY 10001" +184563,Wired Headphones,1,11.99,03/27/19 10:19,"750 Walnut St, Dallas, TX 75001" +184563,Apple Airpods Headphones,1,150,03/27/19 10:19,"750 Walnut St, Dallas, TX 75001" +184564,iPhone,1,700,03/05/19 11:16,"320 Jefferson St, Los Angeles, CA 90001" +184565,20in Monitor,1,109.99,03/11/19 22:19,"980 7th St, Portland, OR 97035" +184566,AAA Batteries (4-pack),1,2.99,03/14/19 21:31,"663 2nd St, San Francisco, CA 94016" +184567,Wired Headphones,1,11.99,03/07/19 08:10,"231 Hill St, New York City, NY 10001" +184568,Google Phone,1,600,03/14/19 10:19,"665 Willow St, Los Angeles, CA 90001" +184568,USB-C Charging Cable,1,11.95,03/14/19 10:19,"665 Willow St, Los Angeles, CA 90001" +184569,Apple Airpods Headphones,1,150,03/01/19 20:23,"205 Hill St, New York City, NY 10001" +184570,Macbook Pro Laptop,1,1700,03/23/19 19:26,"837 Cherry St, Seattle, WA 98101" +184571,20in Monitor,1,109.99,03/03/19 16:34,"274 Elm St, Los Angeles, CA 90001" +184572,AA Batteries (4-pack),1,3.84,03/30/19 03:02,"240 2nd St, San Francisco, CA 94016" +184573,AA Batteries (4-pack),2,3.84,03/26/19 10:41,"25 6th St, San Francisco, CA 94016" +184574,AAA Batteries (4-pack),1,2.99,03/18/19 15:07,"28 Sunset St, Los Angeles, CA 90001" +184575,iPhone,1,700,03/11/19 18:16,"58 Maple St, San Francisco, CA 94016" +184575,Lightning Charging Cable,1,14.95,03/11/19 18:16,"58 Maple St, San Francisco, CA 94016" +184576,Apple Airpods Headphones,1,150,04/01/19 00:51,"619 River St, San Francisco, CA 94016" +184577,Apple Airpods Headphones,2,150,03/28/19 18:47,"749 9th St, San Francisco, CA 94016" +184578,27in FHD Monitor,1,149.99,03/08/19 18:45,"503 Center St, San Francisco, CA 94016" +184579,Bose SoundSport Headphones,1,99.99,03/05/19 21:27,"484 Church St, Los Angeles, CA 90001" +184580,Bose SoundSport Headphones,1,99.99,03/13/19 09:20,"52 Meadow St, Los Angeles, CA 90001" +184581,Wired Headphones,1,11.99,03/04/19 18:20,"802 Jefferson St, Seattle, WA 98101" +184582,USB-C Charging Cable,1,11.95,03/15/19 21:37,"611 Sunset St, San Francisco, CA 94016" +184583,27in FHD Monitor,1,149.99,03/15/19 11:18,"618 5th St, San Francisco, CA 94016" +184584,AAA Batteries (4-pack),1,2.99,03/19/19 17:13,"729 River St, Los Angeles, CA 90001" +184585,Lightning Charging Cable,1,14.95,03/19/19 12:51,"260 South St, Los Angeles, CA 90001" +184586,iPhone,1,700,03/14/19 21:59,"616 Hickory St, Austin, TX 73301" +184587,AA Batteries (4-pack),2,3.84,03/25/19 16:45,"452 Jackson St, Atlanta, GA 30301" +184588,AAA Batteries (4-pack),1,2.99,03/04/19 22:36,"341 Ridge St, San Francisco, CA 94016" +184589,AA Batteries (4-pack),3,3.84,03/17/19 19:53,"46 Hickory St, New York City, NY 10001" +184590,27in FHD Monitor,1,149.99,03/06/19 10:23,"472 Madison St, Austin, TX 73301" +184591,34in Ultrawide Monitor,1,379.99,03/21/19 11:13,"8 Cedar St, Boston, MA 02215" +184592,Apple Airpods Headphones,1,150,03/01/19 17:16,"771 11th St, San Francisco, CA 94016" +184593,Apple Airpods Headphones,1,150,03/21/19 19:35,"379 Church St, Boston, MA 02215" +184594,Apple Airpods Headphones,1,150,03/25/19 11:19,"36 4th St, New York City, NY 10001" +184595,USB-C Charging Cable,1,11.95,03/15/19 21:32,"556 Cedar St, New York City, NY 10001" +184596,20in Monitor,1,109.99,03/02/19 19:36,"973 Main St, New York City, NY 10001" +184597,USB-C Charging Cable,1,11.95,03/30/19 18:20,"151 Maple St, Dallas, TX 75001" +184598,AAA Batteries (4-pack),1,2.99,03/15/19 12:29,"933 Forest St, San Francisco, CA 94016" +184599,Lightning Charging Cable,1,14.95,03/25/19 17:28,"866 Jefferson St, San Francisco, CA 94016" +184600,20in Monitor,1,109.99,03/09/19 13:32,"511 Hill St, Boston, MA 02215" +184601,Lightning Charging Cable,1,14.95,03/01/19 06:39,"417 River St, Austin, TX 73301" +184602,27in FHD Monitor,1,149.99,03/09/19 10:57,"389 Park St, New York City, NY 10001" +184603,Bose SoundSport Headphones,1,99.99,03/22/19 22:27,"54 4th St, New York City, NY 10001" +184604,ThinkPad Laptop,1,999.99,03/08/19 21:01,"299 North St, San Francisco, CA 94016" +184605,iPhone,1,700,03/01/19 07:50,"512 Sunset St, San Francisco, CA 94016" +184605,Wired Headphones,1,11.99,03/01/19 07:50,"512 Sunset St, San Francisco, CA 94016" +184606,iPhone,1,700,03/09/19 17:06,"204 West St, Los Angeles, CA 90001" +184607,AAA Batteries (4-pack),1,2.99,03/11/19 22:23,"702 7th St, New York City, NY 10001" +184608,27in 4K Gaming Monitor,1,389.99,03/08/19 20:59,"618 Highland St, Atlanta, GA 30301" +184609,Wired Headphones,1,11.99,03/23/19 21:50,"504 North St, San Francisco, CA 94016" +184610,AA Batteries (4-pack),2,3.84,03/14/19 08:49,"170 South St, San Francisco, CA 94016" +184611,Wired Headphones,1,11.99,03/29/19 11:34,"163 Lakeview St, San Francisco, CA 94016" +184612,Lightning Charging Cable,1,14.95,03/08/19 09:51,"146 West St, Seattle, WA 98101" +184613,AA Batteries (4-pack),1,3.84,03/09/19 08:58,"359 Sunset St, Atlanta, GA 30301" +184614,USB-C Charging Cable,1,11.95,03/01/19 21:45,"564 14th St, San Francisco, CA 94016" +184615,AA Batteries (4-pack),1,3.84,03/21/19 12:10,"908 2nd St, Portland, ME 04101" +184616,Lightning Charging Cable,2,14.95,03/18/19 00:12,"277 Main St, San Francisco, CA 94016" +184617,AA Batteries (4-pack),1,3.84,03/15/19 11:16,"946 1st St, Dallas, TX 75001" +184618,AAA Batteries (4-pack),1,2.99,03/20/19 19:53,"466 West St, Boston, MA 02215" +184619,27in FHD Monitor,1,149.99,03/04/19 20:50,"414 Lake St, Seattle, WA 98101" +184620,34in Ultrawide Monitor,1,379.99,03/22/19 07:59,"653 Cherry St, San Francisco, CA 94016" +184621,Lightning Charging Cable,1,14.95,03/29/19 10:46,"695 Cedar St, Seattle, WA 98101" +184622,27in FHD Monitor,1,149.99,03/10/19 16:02,"693 Ridge St, Dallas, TX 75001" +184623,Wired Headphones,1,11.99,03/09/19 19:05,"658 4th St, San Francisco, CA 94016" +184624,Apple Airpods Headphones,1,150,03/03/19 20:06,"339 Johnson St, New York City, NY 10001" +184625,Wired Headphones,1,11.99,03/19/19 10:33,"394 Chestnut St, Atlanta, GA 30301" +184626,AAA Batteries (4-pack),1,2.99,03/10/19 10:55,"297 Sunset St, Los Angeles, CA 90001" +184627,AAA Batteries (4-pack),6,2.99,03/06/19 13:42,"618 7th St, Austin, TX 73301" +184628,AA Batteries (4-pack),1,3.84,03/14/19 17:59,"565 13th St, Atlanta, GA 30301" +184629,Wired Headphones,1,11.99,03/20/19 11:12,"186 Lake St, San Francisco, CA 94016" +184630,AA Batteries (4-pack),1,3.84,03/29/19 14:36,"272 Cherry St, Atlanta, GA 30301" +184631,Lightning Charging Cable,1,14.95,03/05/19 18:05,"472 Jackson St, San Francisco, CA 94016" +184632,USB-C Charging Cable,1,11.95,03/27/19 08:33,"288 Highland St, Austin, TX 73301" +184633,Apple Airpods Headphones,1,150,03/10/19 22:23,"547 14th St, Portland, OR 97035" +184634,Bose SoundSport Headphones,1,99.99,03/27/19 13:16,"777 Lakeview St, San Francisco, CA 94016" +184635,Lightning Charging Cable,1,14.95,03/12/19 19:17,"200 Highland St, San Francisco, CA 94016" +184636,USB-C Charging Cable,2,11.95,03/15/19 20:05,"242 West St, Los Angeles, CA 90001" +184637,Macbook Pro Laptop,1,1700,03/15/19 16:50,"334 8th St, New York City, NY 10001" +184638,Lightning Charging Cable,1,14.95,03/13/19 10:19,"292 Walnut St, San Francisco, CA 94016" +,,,,, +184639,AA Batteries (4-pack),2,3.84,03/11/19 22:54,"616 Madison St, New York City, NY 10001" +184640,AA Batteries (4-pack),1,3.84,03/01/19 09:25,"471 12th St, Dallas, TX 75001" +184641,Flatscreen TV,1,300,03/02/19 19:39,"70 Washington St, Atlanta, GA 30301" +184642,Wired Headphones,1,11.99,03/11/19 23:28,"317 River St, Atlanta, GA 30301" +184643,Flatscreen TV,1,300,03/18/19 10:10,"892 Hickory St, San Francisco, CA 94016" +184644,AAA Batteries (4-pack),1,2.99,03/08/19 16:05,"670 12th St, New York City, NY 10001" +184645,20in Monitor,1,109.99,03/12/19 18:25,"426 Wilson St, Boston, MA 02215" +184646,USB-C Charging Cable,1,11.95,03/02/19 20:12,"498 Highland St, Los Angeles, CA 90001" +184647,Lightning Charging Cable,1,14.95,03/23/19 15:52,"554 4th St, Atlanta, GA 30301" +184648,Lightning Charging Cable,1,14.95,03/21/19 16:29,"868 Hickory St, Seattle, WA 98101" +184649,Wired Headphones,2,11.99,03/31/19 22:01,"406 Willow St, Seattle, WA 98101" +184650,USB-C Charging Cable,1,11.95,03/06/19 12:48,"743 4th St, San Francisco, CA 94016" +184651,Vareebadd Phone,1,400,03/02/19 11:35,"847 8th St, Los Angeles, CA 90001" +184652,27in 4K Gaming Monitor,1,389.99,03/31/19 20:29,"687 Cherry St, Los Angeles, CA 90001" +184653,Apple Airpods Headphones,1,150,03/30/19 18:08,"30 Cedar St, Boston, MA 02215" +184654,Lightning Charging Cable,1,14.95,03/21/19 18:22,"851 Church St, San Francisco, CA 94016" +184655,Lightning Charging Cable,1,14.95,03/23/19 20:19,"294 Hickory St, Los Angeles, CA 90001" +184656,Bose SoundSport Headphones,1,99.99,03/12/19 18:41,"718 7th St, Los Angeles, CA 90001" +184657,Bose SoundSport Headphones,1,99.99,03/15/19 18:42,"356 Hickory St, Los Angeles, CA 90001" +184658,AA Batteries (4-pack),1,3.84,03/06/19 19:42,"356 Madison St, San Francisco, CA 94016" +184659,AA Batteries (4-pack),1,3.84,03/05/19 17:13,"820 10th St, Seattle, WA 98101" +184660,Lightning Charging Cable,1,14.95,03/10/19 02:48,"471 Dogwood St, Dallas, TX 75001" +184661,34in Ultrawide Monitor,1,379.99,03/03/19 15:33,"954 Willow St, San Francisco, CA 94016" +184662,Bose SoundSport Headphones,1,99.99,03/25/19 17:56,"978 Adams St, Boston, MA 02215" +184663,USB-C Charging Cable,1,11.95,03/17/19 20:09,"113 10th St, San Francisco, CA 94016" +184664,Bose SoundSport Headphones,1,99.99,03/23/19 14:09,"279 Maple St, Portland, OR 97035" +184665,AA Batteries (4-pack),3,3.84,03/15/19 02:15,"155 West St, Austin, TX 73301" +184666,Google Phone,1,600,03/01/19 15:00,"767 Dogwood St, San Francisco, CA 94016" +184666,USB-C Charging Cable,1,11.95,03/01/19 15:00,"767 Dogwood St, San Francisco, CA 94016" +184666,Wired Headphones,1,11.99,03/01/19 15:00,"767 Dogwood St, San Francisco, CA 94016" +184667,Wired Headphones,1,11.99,03/27/19 19:13,"470 Pine St, San Francisco, CA 94016" +184668,Lightning Charging Cable,1,14.95,03/12/19 16:29,"510 Madison St, Austin, TX 73301" +184669,Lightning Charging Cable,1,14.95,03/18/19 18:12,"548 West St, Dallas, TX 75001" +184670,Google Phone,1,600,03/31/19 12:37,"400 Walnut St, Austin, TX 73301" +184670,USB-C Charging Cable,1,11.95,03/31/19 12:37,"400 Walnut St, Austin, TX 73301" +184671,Macbook Pro Laptop,1,1700,03/22/19 23:30,"900 9th St, New York City, NY 10001" +184672,27in 4K Gaming Monitor,1,389.99,03/18/19 11:49,"860 Jackson St, Los Angeles, CA 90001" +184673,Macbook Pro Laptop,1,1700,03/03/19 14:57,"922 Main St, New York City, NY 10001" +184674,Wired Headphones,1,11.99,03/20/19 18:41,"275 1st St, Los Angeles, CA 90001" +184675,Wired Headphones,1,11.99,03/13/19 18:18,"846 Washington St, New York City, NY 10001" +184676,Google Phone,1,600,03/06/19 16:21,"26 Jackson St, San Francisco, CA 94016" +184677,Lightning Charging Cable,1,14.95,03/20/19 20:06,"369 12th St, Los Angeles, CA 90001" +184678,AAA Batteries (4-pack),2,2.99,03/06/19 08:06,"89 Ridge St, Boston, MA 02215" +184679,AA Batteries (4-pack),2,3.84,03/22/19 22:53,"375 6th St, Los Angeles, CA 90001" +184680,27in 4K Gaming Monitor,1,389.99,03/05/19 05:27,"235 13th St, Seattle, WA 98101" +184681,Lightning Charging Cable,1,14.95,03/11/19 17:43,"646 Jefferson St, San Francisco, CA 94016" +184682,USB-C Charging Cable,1,11.95,03/11/19 21:31,"846 13th St, Los Angeles, CA 90001" +184682,Lightning Charging Cable,1,14.95,03/11/19 21:31,"846 13th St, Los Angeles, CA 90001" +184683,Macbook Pro Laptop,1,1700,03/14/19 19:23,"701 Pine St, Seattle, WA 98101" +184684,27in FHD Monitor,1,149.99,03/26/19 20:54,"701 Johnson St, Seattle, WA 98101" +184685,AA Batteries (4-pack),1,3.84,03/03/19 14:07,"859 8th St, New York City, NY 10001" +184686,USB-C Charging Cable,1,11.95,03/30/19 19:18,"95 4th St, Portland, OR 97035" +184687,Apple Airpods Headphones,1,150,03/04/19 08:46,"97 10th St, Boston, MA 02215" +184688,Lightning Charging Cable,1,14.95,03/03/19 16:39,"391 Lakeview St, Portland, OR 97035" +184689,27in FHD Monitor,1,149.99,03/22/19 17:07,"565 Cedar St, Los Angeles, CA 90001" +184690,Wired Headphones,1,11.99,03/17/19 22:21,"42 River St, Austin, TX 73301" +184691,Lightning Charging Cable,1,14.95,03/17/19 09:18,"918 Washington St, Austin, TX 73301" +184692,AA Batteries (4-pack),1,3.84,03/26/19 17:19,"835 Cherry St, Austin, TX 73301" +184693,AA Batteries (4-pack),1,3.84,03/11/19 19:47,"215 Spruce St, Los Angeles, CA 90001" +184694,Bose SoundSport Headphones,1,99.99,03/13/19 05:45,"569 Sunset St, Atlanta, GA 30301" +184695,Lightning Charging Cable,1,14.95,03/26/19 12:36,"13 Jefferson St, Boston, MA 02215" +184696,Bose SoundSport Headphones,1,99.99,03/18/19 16:57,"853 Johnson St, Boston, MA 02215" +184697,AAA Batteries (4-pack),2,2.99,03/27/19 11:28,"801 Jackson St, San Francisco, CA 94016" +184698,Lightning Charging Cable,1,14.95,03/05/19 20:57,"979 13th St, New York City, NY 10001" +184699,34in Ultrawide Monitor,1,379.99,03/16/19 17:49,"229 Forest St, Boston, MA 02215" +184700,Wired Headphones,1,11.99,03/01/19 13:15,"794 Jefferson St, Austin, TX 73301" +184701,Wired Headphones,1,11.99,03/29/19 12:37,"618 14th St, San Francisco, CA 94016" +184702,Lightning Charging Cable,1,14.95,03/11/19 12:13,"529 Sunset St, San Francisco, CA 94016" +184703,20in Monitor,1,109.99,03/16/19 20:54,"286 Center St, Dallas, TX 75001" +184704,27in FHD Monitor,1,149.99,03/13/19 10:44,"532 West St, Atlanta, GA 30301" +184705,27in FHD Monitor,1,149.99,03/06/19 21:08,"566 West St, New York City, NY 10001" +184706,USB-C Charging Cable,1,11.95,03/28/19 13:14,"869 North St, Portland, OR 97035" +184707,USB-C Charging Cable,1,11.95,03/09/19 05:56,"591 Jefferson St, Seattle, WA 98101" +184708,Wired Headphones,1,11.99,03/20/19 13:38,"119 13th St, Boston, MA 02215" +184709,Google Phone,1,600,03/10/19 13:44,"173 Wilson St, Los Angeles, CA 90001" +184709,USB-C Charging Cable,1,11.95,03/10/19 13:44,"173 Wilson St, Los Angeles, CA 90001" +184710,Bose SoundSport Headphones,1,99.99,03/10/19 11:05,"926 8th St, Los Angeles, CA 90001" +184711,Flatscreen TV,1,300,03/24/19 17:04,"869 Hill St, Los Angeles, CA 90001" +184712,Google Phone,1,600,03/25/19 19:40,"288 Wilson St, Dallas, TX 75001" +184713,USB-C Charging Cable,1,11.95,03/17/19 15:01,"564 Meadow St, Seattle, WA 98101" +184714,USB-C Charging Cable,1,11.95,03/11/19 12:55,"297 Forest St, Los Angeles, CA 90001" +184715,Wired Headphones,1,11.99,03/15/19 12:27,"592 North St, San Francisco, CA 94016" +184716,Lightning Charging Cable,1,14.95,03/30/19 09:33,"529 7th St, Atlanta, GA 30301" +184717,27in FHD Monitor,1,149.99,03/24/19 13:27,"699 Adams St, San Francisco, CA 94016" +184718,AAA Batteries (4-pack),1,2.99,03/12/19 22:23,"718 5th St, Los Angeles, CA 90001" +184719,AAA Batteries (4-pack),1,2.99,03/06/19 20:55,"81 River St, Dallas, TX 75001" +184720,Vareebadd Phone,1,400,03/29/19 17:57,"556 Sunset St, Portland, ME 04101" +184721,AAA Batteries (4-pack),1,2.99,03/20/19 06:08,"715 1st St, Boston, MA 02215" +184722,USB-C Charging Cable,1,11.95,03/02/19 11:47,"435 Church St, San Francisco, CA 94016" +184723,AA Batteries (4-pack),1,3.84,03/08/19 13:17,"473 Elm St, New York City, NY 10001" +184724,AA Batteries (4-pack),1,3.84,03/20/19 10:33,"858 1st St, Atlanta, GA 30301" +184725,Macbook Pro Laptop,1,1700,03/04/19 13:46,"405 8th St, Los Angeles, CA 90001" +184726,iPhone,1,700,03/16/19 07:54,"494 Forest St, Boston, MA 02215" +184727,Google Phone,1,600,03/06/19 08:33,"803 Elm St, Boston, MA 02215" +184727,Wired Headphones,1,11.99,03/06/19 08:33,"803 Elm St, Boston, MA 02215" +184728,Apple Airpods Headphones,1,150,03/12/19 19:07,"673 4th St, San Francisco, CA 94016" +184729,Wired Headphones,1,11.99,03/07/19 22:26,"292 1st St, Seattle, WA 98101" +184730,iPhone,1,700,03/10/19 12:46,"994 Forest St, Los Angeles, CA 90001" +184731,Bose SoundSport Headphones,1,99.99,03/26/19 13:03,"670 Hickory St, Los Angeles, CA 90001" +184732,AAA Batteries (4-pack),2,2.99,03/26/19 18:59,"471 Maple St, Austin, TX 73301" +184733,iPhone,1,700,03/30/19 17:24,"660 Cedar St, Portland, OR 97035" +184734,Bose SoundSport Headphones,1,99.99,03/12/19 22:49,"374 Ridge St, Atlanta, GA 30301" +184735,20in Monitor,1,109.99,03/06/19 10:08,"991 Johnson St, Los Angeles, CA 90001" +184736,Lightning Charging Cable,1,14.95,03/04/19 20:16,"658 Maple St, Atlanta, GA 30301" +184737,Wired Headphones,1,11.99,03/15/19 23:30,"658 Ridge St, Seattle, WA 98101" +184738,ThinkPad Laptop,1,999.99,03/25/19 07:58,"416 Chestnut St, New York City, NY 10001" +184738,iPhone,1,700,03/25/19 07:58,"416 Chestnut St, New York City, NY 10001" +184739,AAA Batteries (4-pack),2,2.99,03/29/19 21:21,"711 Cherry St, Boston, MA 02215" +184740,AAA Batteries (4-pack),3,2.99,03/30/19 16:59,"146 Center St, San Francisco, CA 94016" +184741,AA Batteries (4-pack),1,3.84,03/11/19 16:31,"860 Lake St, Austin, TX 73301" +184742,Wired Headphones,1,11.99,03/05/19 18:05,"523 11th St, Boston, MA 02215" +184743,34in Ultrawide Monitor,1,379.99,03/30/19 18:08,"542 Lakeview St, San Francisco, CA 94016" +184744,USB-C Charging Cable,2,11.95,03/07/19 13:59,"518 South St, New York City, NY 10001" +184745,AAA Batteries (4-pack),1,2.99,03/09/19 15:45,"589 Johnson St, New York City, NY 10001" +184746,USB-C Charging Cable,1,11.95,03/21/19 23:06,"451 Lincoln St, New York City, NY 10001" +184747,Lightning Charging Cable,1,14.95,03/27/19 20:30,"345 West St, Los Angeles, CA 90001" +184748,Lightning Charging Cable,1,14.95,03/07/19 18:58,"640 South St, San Francisco, CA 94016" +184749,34in Ultrawide Monitor,1,379.99,03/24/19 07:05,"688 Lincoln St, Boston, MA 02215" +184750,AAA Batteries (4-pack),1,2.99,03/26/19 14:56,"171 Main St, Atlanta, GA 30301" +184751,USB-C Charging Cable,1,11.95,03/28/19 04:46,"330 South St, San Francisco, CA 94016" +184752,Lightning Charging Cable,1,14.95,03/19/19 19:57,"607 Pine St, Los Angeles, CA 90001" +184753,Wired Headphones,1,11.99,03/26/19 20:47,"489 7th St, Dallas, TX 75001" +184754,AA Batteries (4-pack),2,3.84,03/13/19 11:03,"314 Willow St, Atlanta, GA 30301" +184755,AA Batteries (4-pack),1,3.84,03/31/19 14:09,"778 10th St, Portland, OR 97035" +184756,27in FHD Monitor,1,149.99,03/24/19 15:54,"701 8th St, Los Angeles, CA 90001" +184757,27in FHD Monitor,1,149.99,03/12/19 23:41,"466 Maple St, Los Angeles, CA 90001" +184758,Apple Airpods Headphones,1,150,03/13/19 16:25,"216 River St, Austin, TX 73301" +184758,AAA Batteries (4-pack),2,2.99,03/13/19 16:25,"216 River St, Austin, TX 73301" +184759,USB-C Charging Cable,1,11.95,03/25/19 17:16,"305 Cedar St, Boston, MA 02215" +184760,AAA Batteries (4-pack),1,2.99,03/02/19 10:24,"677 Meadow St, New York City, NY 10001" +184761,AAA Batteries (4-pack),1,2.99,03/24/19 14:44,"347 4th St, San Francisco, CA 94016" +184762,Apple Airpods Headphones,1,150,03/20/19 09:55,"87 2nd St, Los Angeles, CA 90001" +184763,34in Ultrawide Monitor,1,379.99,03/12/19 19:05,"74 Cherry St, Los Angeles, CA 90001" +184764,Lightning Charging Cable,1,14.95,03/29/19 08:39,"901 Highland St, Austin, TX 73301" +184765,AAA Batteries (4-pack),1,2.99,03/29/19 02:58,"444 South St, Portland, OR 97035" +184766,27in FHD Monitor,1,149.99,03/06/19 14:00,"297 Cedar St, Boston, MA 02215" +184767,ThinkPad Laptop,1,999.99,03/07/19 09:19,"680 Sunset St, Portland, OR 97035" +184768,USB-C Charging Cable,1,11.95,03/31/19 13:20,"260 Forest St, Atlanta, GA 30301" +184769,Apple Airpods Headphones,1,150,03/19/19 13:51,"67 5th St, Los Angeles, CA 90001" +184770,AA Batteries (4-pack),1,3.84,03/11/19 14:12,"627 Elm St, San Francisco, CA 94016" +184771,AA Batteries (4-pack),2,3.84,03/24/19 14:27,"442 1st St, Portland, OR 97035" +184772,Apple Airpods Headphones,1,150,03/09/19 00:51,"953 1st St, Austin, TX 73301" +184773,Wired Headphones,2,11.99,03/17/19 15:59,"328 Chestnut St, San Francisco, CA 94016" +184774,Apple Airpods Headphones,1,150,03/09/19 14:00,"680 Pine St, San Francisco, CA 94016" +184775,AA Batteries (4-pack),1,3.84,03/18/19 18:47,"281 Adams St, San Francisco, CA 94016" +184776,27in FHD Monitor,1,149.99,03/19/19 21:24,"137 1st St, Austin, TX 73301" +184777,ThinkPad Laptop,1,999.99,03/10/19 20:31,"83 Adams St, Seattle, WA 98101" +184778,AAA Batteries (4-pack),1,2.99,03/21/19 11:35,"645 Center St, Boston, MA 02215" +184779,USB-C Charging Cable,1,11.95,03/05/19 09:37,"864 Willow St, Dallas, TX 75001" +184780,Lightning Charging Cable,1,14.95,03/31/19 15:09,"302 Chestnut St, Boston, MA 02215" +184781,Apple Airpods Headphones,1,150,03/02/19 17:31,"315 Spruce St, New York City, NY 10001" +184782,27in 4K Gaming Monitor,1,389.99,03/09/19 09:51,"204 Church St, Los Angeles, CA 90001" +184783,AAA Batteries (4-pack),1,2.99,03/26/19 12:54,"390 Cedar St, Portland, OR 97035" +184784,Bose SoundSport Headphones,1,99.99,03/26/19 14:02,"20 Johnson St, Los Angeles, CA 90001" +184785,Lightning Charging Cable,1,14.95,03/28/19 09:03,"123 Ridge St, New York City, NY 10001" +184786,AA Batteries (4-pack),1,3.84,03/01/19 07:31,"66 Hickory St, Boston, MA 02215" +184787,Flatscreen TV,1,300,03/31/19 10:01,"172 Dogwood St, New York City, NY 10001" +184788,Lightning Charging Cable,1,14.95,03/04/19 20:30,"903 Park St, Boston, MA 02215" +184789,Wired Headphones,1,11.99,03/09/19 19:24,"756 8th St, Seattle, WA 98101" +184790,AAA Batteries (4-pack),1,2.99,03/15/19 16:29,"314 4th St, Seattle, WA 98101" +184791,Flatscreen TV,1,300,03/14/19 19:32,"565 Adams St, Los Angeles, CA 90001" +184792,USB-C Charging Cable,1,11.95,03/19/19 20:44,"582 7th St, Los Angeles, CA 90001" +184793,USB-C Charging Cable,1,11.95,03/26/19 11:15,"666 Hill St, Seattle, WA 98101" +184794,Lightning Charging Cable,1,14.95,03/12/19 19:25,"801 Hill St, Los Angeles, CA 90001" +184795,Bose SoundSport Headphones,1,99.99,03/03/19 19:08,"915 North St, San Francisco, CA 94016" +184796,USB-C Charging Cable,1,11.95,03/20/19 12:03,"732 13th St, Los Angeles, CA 90001" +184797,Wired Headphones,1,11.99,03/24/19 09:55,"415 Ridge St, Atlanta, GA 30301" +184798,27in FHD Monitor,1,149.99,03/09/19 15:40,"517 Lake St, Boston, MA 02215" +184799,USB-C Charging Cable,1,11.95,03/15/19 22:16,"61 9th St, San Francisco, CA 94016" +184800,Bose SoundSport Headphones,1,99.99,03/31/19 23:04,"210 Cedar St, Atlanta, GA 30301" +184801,Apple Airpods Headphones,1,150,03/01/19 15:40,"980 9th St, San Francisco, CA 94016" +184802,AAA Batteries (4-pack),2,2.99,03/14/19 14:16,"666 River St, New York City, NY 10001" +184803,Wired Headphones,1,11.99,03/28/19 17:32,"928 Main St, Los Angeles, CA 90001" +184804,Bose SoundSport Headphones,1,99.99,03/13/19 13:44,"815 North St, Boston, MA 02215" +184805,AA Batteries (4-pack),1,3.84,03/10/19 10:02,"562 Sunset St, New York City, NY 10001" +184806,ThinkPad Laptop,1,999.99,03/03/19 18:19,"948 Sunset St, Atlanta, GA 30301" +184807,Bose SoundSport Headphones,1,99.99,03/20/19 13:16,"217 13th St, New York City, NY 10001" +184808,Lightning Charging Cable,1,14.95,03/17/19 00:02,"544 6th St, Boston, MA 02215" +184809,Wired Headphones,1,11.99,03/27/19 13:06,"199 Church St, Portland, OR 97035" +184810,AA Batteries (4-pack),1,3.84,03/24/19 19:05,"503 Highland St, Portland, OR 97035" +184811,Bose SoundSport Headphones,1,99.99,03/03/19 00:20,"117 Cedar St, New York City, NY 10001" +184812,27in 4K Gaming Monitor,1,389.99,03/14/19 08:40,"533 Lake St, Boston, MA 02215" +184813,ThinkPad Laptop,1,999.99,03/09/19 21:05,"99 Jackson St, San Francisco, CA 94016" +184814,Wired Headphones,1,11.99,03/23/19 16:53,"337 Chestnut St, Los Angeles, CA 90001" +184815,iPhone,1,700,03/08/19 17:54,"298 Wilson St, Los Angeles, CA 90001" +184816,USB-C Charging Cable,1,11.95,03/15/19 09:08,"337 Jefferson St, Atlanta, GA 30301" +184817,USB-C Charging Cable,1,11.95,03/24/19 09:05,"90 Cedar St, Portland, ME 04101" +184818,27in 4K Gaming Monitor,1,389.99,03/20/19 13:42,"145 Johnson St, Seattle, WA 98101" +184819,Lightning Charging Cable,1,14.95,03/19/19 22:02,"300 Walnut St, San Francisco, CA 94016" +184820,27in FHD Monitor,1,149.99,03/10/19 22:56,"279 Johnson St, Los Angeles, CA 90001" +184821,Apple Airpods Headphones,1,150,03/31/19 21:05,"418 Willow St, San Francisco, CA 94016" +184822,27in FHD Monitor,1,149.99,03/28/19 14:03,"152 8th St, San Francisco, CA 94016" +184823,AAA Batteries (4-pack),2,2.99,03/28/19 22:06,"704 Park St, Seattle, WA 98101" +184824,AAA Batteries (4-pack),1,2.99,03/22/19 15:26,"362 2nd St, San Francisco, CA 94016" +184825,Macbook Pro Laptop,1,1700,03/07/19 07:38,"518 Wilson St, New York City, NY 10001" +184826,Bose SoundSport Headphones,1,99.99,03/30/19 18:43,"86 2nd St, Atlanta, GA 30301" +184827,USB-C Charging Cable,1,11.95,03/20/19 07:00,"632 5th St, Portland, OR 97035" +184828,USB-C Charging Cable,1,11.95,03/04/19 13:44,"69 Pine St, San Francisco, CA 94016" +184829,Bose SoundSport Headphones,1,99.99,03/21/19 20:54,"70 Cherry St, Los Angeles, CA 90001" +184830,USB-C Charging Cable,1,11.95,03/16/19 15:33,"1 Walnut St, San Francisco, CA 94016" +184831,34in Ultrawide Monitor,1,379.99,03/02/19 22:31,"586 Johnson St, Boston, MA 02215" +184832,Bose SoundSport Headphones,1,99.99,03/03/19 11:08,"376 9th St, Los Angeles, CA 90001" +184833,Lightning Charging Cable,1,14.95,03/28/19 18:24,"399 Hickory St, Boston, MA 02215" +184834,27in 4K Gaming Monitor,1,389.99,03/01/19 10:19,"316 Spruce St, New York City, NY 10001" +184835,AAA Batteries (4-pack),2,2.99,03/31/19 22:20,"32 Wilson St, San Francisco, CA 94016" +184836,Lightning Charging Cable,1,14.95,03/14/19 11:40,"770 Lake St, Atlanta, GA 30301" +184837,27in 4K Gaming Monitor,1,389.99,03/02/19 19:22,"211 North St, New York City, NY 10001" +184838,AAA Batteries (4-pack),1,2.99,03/03/19 09:53,"904 Chestnut St, Los Angeles, CA 90001" +184839,Flatscreen TV,1,300,03/13/19 07:24,"666 Hickory St, Los Angeles, CA 90001" +184840,Apple Airpods Headphones,1,150,03/11/19 11:03,"708 Chestnut St, Portland, ME 04101" +184841,Lightning Charging Cable,1,14.95,03/27/19 22:18,"41 9th St, Boston, MA 02215" +184842,34in Ultrawide Monitor,1,379.99,03/15/19 21:54,"351 Adams St, San Francisco, CA 94016" +184843,USB-C Charging Cable,1,11.95,03/25/19 14:22,"764 Chestnut St, New York City, NY 10001" +184844,USB-C Charging Cable,1,11.95,03/09/19 16:01,"847 7th St, Seattle, WA 98101" +184845,Apple Airpods Headphones,1,150,03/14/19 14:44,"658 Maple St, Los Angeles, CA 90001" +184846,AA Batteries (4-pack),2,3.84,03/27/19 17:39,"785 Madison St, Portland, OR 97035" +184847,Wired Headphones,1,11.99,03/20/19 03:50,"293 Meadow St, San Francisco, CA 94016" +184848,27in FHD Monitor,1,149.99,03/08/19 18:02,"648 Pine St, San Francisco, CA 94016" +184849,34in Ultrawide Monitor,1,379.99,03/11/19 15:40,"286 Hickory St, New York City, NY 10001" +184850,USB-C Charging Cable,1,11.95,03/15/19 20:16,"537 Jefferson St, San Francisco, CA 94016" +184851,USB-C Charging Cable,1,11.95,03/19/19 21:20,"635 7th St, San Francisco, CA 94016" +184852,AA Batteries (4-pack),1,3.84,03/17/19 22:42,"525 11th St, Los Angeles, CA 90001" +184853,USB-C Charging Cable,1,11.95,03/07/19 18:52,"907 Cedar St, Los Angeles, CA 90001" +184854,27in FHD Monitor,1,149.99,03/03/19 11:19,"401 Ridge St, San Francisco, CA 94016" +184855,Lightning Charging Cable,1,14.95,03/24/19 15:16,"193 14th St, Los Angeles, CA 90001" +184856,AAA Batteries (4-pack),1,2.99,03/27/19 11:41,"496 14th St, Portland, OR 97035" +184857,Lightning Charging Cable,1,14.95,03/22/19 09:54,"297 11th St, Austin, TX 73301" +184858,Apple Airpods Headphones,2,150,03/06/19 00:33,"346 Park St, Dallas, TX 75001" +184859,AA Batteries (4-pack),1,3.84,03/21/19 10:34,"598 5th St, San Francisco, CA 94016" +184860,Bose SoundSport Headphones,1,99.99,03/19/19 18:46,"514 Washington St, Seattle, WA 98101" +184861,27in FHD Monitor,1,149.99,03/20/19 22:30,"247 8th St, San Francisco, CA 94016" +184862,27in 4K Gaming Monitor,1,389.99,03/27/19 12:41,"1 14th St, Atlanta, GA 30301" +184863,USB-C Charging Cable,1,11.95,03/17/19 19:33,"471 Willow St, Boston, MA 02215" +184864,34in Ultrawide Monitor,1,379.99,03/07/19 10:57,"69 Madison St, Los Angeles, CA 90001" +184865,27in FHD Monitor,1,149.99,03/16/19 11:26,"236 West St, San Francisco, CA 94016" +184866,34in Ultrawide Monitor,1,379.99,03/03/19 10:38,"221 Maple St, Los Angeles, CA 90001" +184867,34in Ultrawide Monitor,1,379.99,03/06/19 14:31,"463 Jefferson St, Portland, ME 04101" +184868,Lightning Charging Cable,1,14.95,03/18/19 11:45,"136 Cedar St, Boston, MA 02215" +184869,Lightning Charging Cable,1,14.95,03/30/19 11:13,"108 Madison St, Seattle, WA 98101" +184870,AAA Batteries (4-pack),4,2.99,03/02/19 09:28,"720 Maple St, Los Angeles, CA 90001" +184871,Google Phone,1,600,03/22/19 07:40,"504 Walnut St, Dallas, TX 75001" +184872,AA Batteries (4-pack),2,3.84,03/10/19 21:05,"749 Jefferson St, San Francisco, CA 94016" +184873,Apple Airpods Headphones,1,150,03/15/19 20:58,"814 Jefferson St, Seattle, WA 98101" +184874,Lightning Charging Cable,1,14.95,03/13/19 22:05,"170 Lincoln St, San Francisco, CA 94016" +184875,USB-C Charging Cable,1,11.95,03/07/19 10:18,"379 2nd St, Boston, MA 02215" +184876,USB-C Charging Cable,1,11.95,03/16/19 01:17,"243 9th St, Portland, OR 97035" +184877,Google Phone,1,600,03/07/19 20:45,"909 Johnson St, Boston, MA 02215" +184878,27in FHD Monitor,1,149.99,03/15/19 12:29,"261 1st St, New York City, NY 10001" +184879,27in 4K Gaming Monitor,1,389.99,03/18/19 12:57,"226 Willow St, Los Angeles, CA 90001" +184880,USB-C Charging Cable,1,11.95,03/15/19 20:50,"720 Sunset St, San Francisco, CA 94016" +184881,Lightning Charging Cable,1,14.95,03/10/19 10:23,"254 Hill St, San Francisco, CA 94016" +184882,Lightning Charging Cable,1,14.95,03/01/19 16:04,"561 Church St, Boston, MA 02215" +184883,AA Batteries (4-pack),1,3.84,03/15/19 20:09,"563 Jackson St, New York City, NY 10001" +184884,Lightning Charging Cable,1,14.95,03/17/19 22:05,"191 Lincoln St, San Francisco, CA 94016" +184885,iPhone,1,700,03/06/19 21:39,"269 Highland St, New York City, NY 10001" +184885,Lightning Charging Cable,3,14.95,03/06/19 21:39,"269 Highland St, New York City, NY 10001" +184886,Wired Headphones,1,11.99,03/13/19 16:03,"584 Jackson St, Atlanta, GA 30301" +184887,Bose SoundSport Headphones,1,99.99,03/05/19 16:07,"912 2nd St, Boston, MA 02215" +184888,Lightning Charging Cable,1,14.95,03/19/19 22:36,"279 Washington St, New York City, NY 10001" +184889,AAA Batteries (4-pack),1,2.99,03/27/19 12:27,"486 Madison St, Dallas, TX 75001" +184890,AA Batteries (4-pack),2,3.84,03/25/19 16:17,"816 5th St, Los Angeles, CA 90001" +184891,27in FHD Monitor,1,149.99,03/29/19 12:52,"414 5th St, San Francisco, CA 94016" +184892,Apple Airpods Headphones,1,150,03/06/19 19:36,"264 River St, Los Angeles, CA 90001" +184893,Wired Headphones,1,11.99,03/11/19 21:50,"977 West St, Austin, TX 73301" +184894,Wired Headphones,1,11.99,03/15/19 15:52,"387 Madison St, San Francisco, CA 94016" +184895,AA Batteries (4-pack),1,3.84,03/18/19 10:25,"987 Pine St, Los Angeles, CA 90001" +184896,Macbook Pro Laptop,1,1700,03/12/19 16:13,"836 Highland St, Seattle, WA 98101" +184897,iPhone,1,700,03/21/19 17:49,"268 9th St, New York City, NY 10001" +184897,Wired Headphones,1,11.99,03/21/19 17:49,"268 9th St, New York City, NY 10001" +184898,Apple Airpods Headphones,1,150,03/17/19 12:03,"540 2nd St, Atlanta, GA 30301" +184899,Flatscreen TV,1,300,03/23/19 12:33,"522 Hickory St, Atlanta, GA 30301" +184900,Google Phone,1,600,03/02/19 13:37,"85 Cedar St, San Francisco, CA 94016" +184900,USB-C Charging Cable,2,11.95,03/02/19 13:37,"85 Cedar St, San Francisco, CA 94016" +184901,ThinkPad Laptop,1,999.99,03/20/19 23:35,"739 10th St, San Francisco, CA 94016" +184902,AA Batteries (4-pack),2,3.84,03/06/19 21:44,"595 Cherry St, San Francisco, CA 94016" +184903,Lightning Charging Cable,1,14.95,03/23/19 11:14,"463 Spruce St, Los Angeles, CA 90001" +184904,Apple Airpods Headphones,1,150,03/20/19 17:11,"600 8th St, Austin, TX 73301" +184905,27in FHD Monitor,1,149.99,03/01/19 19:07,"395 9th St, Seattle, WA 98101" +184906,ThinkPad Laptop,1,999.99,03/10/19 09:33,"669 Spruce St, Dallas, TX 75001" +184907,Vareebadd Phone,1,400,03/20/19 10:22,"327 Lake St, Dallas, TX 75001" +184908,Wired Headphones,1,11.99,03/30/19 19:42,"869 River St, New York City, NY 10001" +184909,Wired Headphones,1,11.99,03/22/19 23:18,"445 Adams St, Austin, TX 73301" +184910,Apple Airpods Headphones,1,150,03/01/19 18:37,"87 13th St, New York City, NY 10001" +184911,27in FHD Monitor,1,149.99,03/31/19 20:21,"849 Forest St, Los Angeles, CA 90001" +184912,USB-C Charging Cable,1,11.95,03/22/19 09:38,"985 Wilson St, New York City, NY 10001" +184913,Bose SoundSport Headphones,1,99.99,03/25/19 14:50,"463 Jackson St, San Francisco, CA 94016" +184914,Lightning Charging Cable,1,14.95,03/26/19 10:12,"283 11th St, San Francisco, CA 94016" +184915,Wired Headphones,1,11.99,03/25/19 11:39,"350 Highland St, Boston, MA 02215" +184916,Wired Headphones,1,11.99,03/20/19 14:04,"312 Walnut St, Los Angeles, CA 90001" +184917,USB-C Charging Cable,1,11.95,03/09/19 11:47,"671 River St, San Francisco, CA 94016" +184918,AAA Batteries (4-pack),1,2.99,03/02/19 12:22,"475 Hill St, Portland, OR 97035" +184919,iPhone,1,700,03/10/19 18:10,"367 Church St, San Francisco, CA 94016" +184920,AA Batteries (4-pack),1,3.84,03/06/19 12:50,"866 7th St, Portland, ME 04101" +184921,Bose SoundSport Headphones,1,99.99,03/19/19 09:46,"14 South St, Los Angeles, CA 90001" +184922,Lightning Charging Cable,2,14.95,03/03/19 13:34,"5 Wilson St, San Francisco, CA 94016" +184923,Wired Headphones,1,11.99,03/23/19 19:22,"51 Willow St, New York City, NY 10001" +184924,Macbook Pro Laptop,1,1700,03/24/19 08:53,"325 Main St, San Francisco, CA 94016" +184925,27in 4K Gaming Monitor,1,389.99,03/16/19 20:58,"381 Forest St, Boston, MA 02215" +184926,AAA Batteries (4-pack),1,2.99,03/02/19 20:55,"247 13th St, Boston, MA 02215" +184927,34in Ultrawide Monitor,1,379.99,03/08/19 13:08,"768 5th St, San Francisco, CA 94016" +184928,Wired Headphones,1,11.99,03/30/19 11:57,"632 7th St, Dallas, TX 75001" +184929,AAA Batteries (4-pack),1,2.99,03/07/19 17:33,"766 South St, Atlanta, GA 30301" +184930,34in Ultrawide Monitor,1,379.99,03/05/19 08:57,"7 Willow St, Los Angeles, CA 90001" +184931,AAA Batteries (4-pack),3,2.99,03/31/19 13:55,"320 7th St, Portland, OR 97035" +184932,Bose SoundSport Headphones,1,99.99,03/23/19 15:03,"591 Chestnut St, Atlanta, GA 30301" +184933,AA Batteries (4-pack),2,3.84,03/28/19 15:07,"15 Dogwood St, Los Angeles, CA 90001" +184934,Bose SoundSport Headphones,1,99.99,03/02/19 10:31,"228 Main St, Los Angeles, CA 90001" +184935,Bose SoundSport Headphones,1,99.99,03/18/19 00:04,"663 13th St, Los Angeles, CA 90001" +184936,27in FHD Monitor,1,149.99,03/27/19 13:01,"344 Wilson St, Los Angeles, CA 90001" +184937,AAA Batteries (4-pack),1,2.99,03/24/19 13:13,"348 Willow St, Austin, TX 73301" +184938,Google Phone,1,600,03/02/19 22:09,"249 12th St, Boston, MA 02215" +184939,Bose SoundSport Headphones,1,99.99,03/21/19 13:30,"528 Jefferson St, Seattle, WA 98101" +184940,USB-C Charging Cable,1,11.95,03/23/19 21:08,"36 Maple St, Los Angeles, CA 90001" +184941,Lightning Charging Cable,1,14.95,03/20/19 13:02,"326 West St, New York City, NY 10001" +184942,34in Ultrawide Monitor,1,379.99,03/13/19 17:51,"149 Maple St, Seattle, WA 98101" +184943,Bose SoundSport Headphones,1,99.99,03/30/19 12:52,"381 Ridge St, Atlanta, GA 30301" +184944,Wired Headphones,1,11.99,03/08/19 18:24,"683 Johnson St, Seattle, WA 98101" +184945,AA Batteries (4-pack),1,3.84,03/12/19 14:32,"617 Lakeview St, Boston, MA 02215" +184946,27in FHD Monitor,1,149.99,03/18/19 21:56,"328 4th St, Portland, ME 04101" +184947,Google Phone,1,600,03/23/19 14:38,"278 13th St, Austin, TX 73301" +184948,27in FHD Monitor,1,149.99,03/14/19 14:18,"50 4th St, New York City, NY 10001" +184949,Apple Airpods Headphones,1,150,03/10/19 00:09,"991 Pine St, Portland, OR 97035" +184950,Google Phone,1,600,03/13/19 19:08,"511 Johnson St, Boston, MA 02215" +184950,USB-C Charging Cable,1,11.95,03/13/19 19:08,"511 Johnson St, Boston, MA 02215" +184951,Wired Headphones,1,11.99,03/13/19 13:22,"660 West St, Austin, TX 73301" +184952,USB-C Charging Cable,1,11.95,03/01/19 09:20,"332 11th St, San Francisco, CA 94016" +184953,iPhone,1,700,03/18/19 09:27,"873 2nd St, Seattle, WA 98101" +184954,Apple Airpods Headphones,1,150,03/14/19 20:51,"638 Jefferson St, Boston, MA 02215" +184955,USB-C Charging Cable,2,11.95,03/16/19 16:14,"514 8th St, San Francisco, CA 94016" +184956,AAA Batteries (4-pack),1,2.99,03/01/19 22:18,"444 13th St, New York City, NY 10001" +184957,Lightning Charging Cable,1,14.95,03/18/19 17:36,"75 2nd St, Atlanta, GA 30301" +184958,27in 4K Gaming Monitor,1,389.99,03/19/19 10:45,"545 10th St, Austin, TX 73301" +184958,AAA Batteries (4-pack),1,2.99,03/19/19 10:45,"545 10th St, Austin, TX 73301" +184959,AA Batteries (4-pack),1,3.84,03/08/19 06:39,"690 Ridge St, Atlanta, GA 30301" +184960,20in Monitor,1,109.99,03/20/19 22:09,"829 Cedar St, Los Angeles, CA 90001" +184961,34in Ultrawide Monitor,1,379.99,03/12/19 12:30,"398 Elm St, San Francisco, CA 94016" +184962,AA Batteries (4-pack),1,3.84,03/25/19 09:54,"25 River St, Portland, OR 97035" +184963,USB-C Charging Cable,1,11.95,03/30/19 10:29,"315 Cherry St, Atlanta, GA 30301" +184964,Apple Airpods Headphones,1,150,03/11/19 15:50,"252 Wilson St, Boston, MA 02215" +184965,Lightning Charging Cable,1,14.95,03/09/19 19:31,"816 Adams St, Los Angeles, CA 90001" +184966,Bose SoundSport Headphones,1,99.99,03/04/19 20:04,"136 River St, Portland, OR 97035" +184967,27in 4K Gaming Monitor,1,389.99,03/28/19 17:13,"296 10th St, Boston, MA 02215" +184968,Macbook Pro Laptop,1,1700,03/21/19 15:08,"293 4th St, Austin, TX 73301" +184969,AA Batteries (4-pack),2,3.84,03/11/19 11:13,"133 14th St, Dallas, TX 75001" +184970,AAA Batteries (4-pack),2,2.99,03/14/19 10:55,"462 Jefferson St, Los Angeles, CA 90001" +184971,Wired Headphones,1,11.99,03/24/19 04:46,"750 Chestnut St, San Francisco, CA 94016" +184972,AA Batteries (4-pack),1,3.84,03/21/19 15:20,"670 Hickory St, San Francisco, CA 94016" +184973,AA Batteries (4-pack),1,3.84,03/05/19 18:16,"716 Walnut St, New York City, NY 10001" +184974,AA Batteries (4-pack),1,3.84,03/31/19 22:59,"113 Madison St, Boston, MA 02215" +184975,LG Dryer,1,600.0,03/17/19 05:56,"384 Willow St, Seattle, WA 98101" +184976,USB-C Charging Cable,1,11.95,03/05/19 12:47,"714 4th St, San Francisco, CA 94016" +184977,Flatscreen TV,1,300,03/19/19 06:22,"649 Pine St, New York City, NY 10001" +184978,27in 4K Gaming Monitor,1,389.99,03/03/19 20:53,"898 Chestnut St, Boston, MA 02215" +184979,LG Dryer,1,600.0,03/28/19 10:04,"606 Lake St, San Francisco, CA 94016" +184980,Bose SoundSport Headphones,1,99.99,03/02/19 17:32,"751 8th St, New York City, NY 10001" +184981,USB-C Charging Cable,1,11.95,03/23/19 21:01,"98 Ridge St, Austin, TX 73301" +184982,Apple Airpods Headphones,1,150,03/09/19 16:56,"264 14th St, New York City, NY 10001" +184983,AAA Batteries (4-pack),1,2.99,03/18/19 15:27,"65 Spruce St, Austin, TX 73301" +184984,iPhone,1,700,03/24/19 22:43,"669 9th St, Seattle, WA 98101" +184984,Wired Headphones,1,11.99,03/24/19 22:43,"669 9th St, Seattle, WA 98101" +184985,Apple Airpods Headphones,1,150,03/22/19 13:28,"419 11th St, San Francisco, CA 94016" +184986,Apple Airpods Headphones,1,150,03/27/19 22:52,"23 Walnut St, Atlanta, GA 30301" +184987,Google Phone,1,600,03/12/19 16:15,"536 5th St, Seattle, WA 98101" +184988,iPhone,1,700,03/17/19 13:31,"802 13th St, San Francisco, CA 94016" +184989,27in FHD Monitor,1,149.99,03/29/19 19:19,"409 Jackson St, San Francisco, CA 94016" +184990,Flatscreen TV,1,300,03/06/19 13:42,"194 12th St, Los Angeles, CA 90001" +184991,Lightning Charging Cable,1,14.95,03/21/19 11:59,"207 10th St, Seattle, WA 98101" +184992,Lightning Charging Cable,1,14.95,03/16/19 06:35,"106 Park St, San Francisco, CA 94016" +184993,AA Batteries (4-pack),1,3.84,03/29/19 12:10,"622 West St, Los Angeles, CA 90001" +184994,Apple Airpods Headphones,1,150,03/03/19 16:47,"12 Hickory St, New York City, NY 10001" +184995,iPhone,1,700,03/29/19 21:39,"429 Cedar St, Atlanta, GA 30301" +184996,USB-C Charging Cable,1,11.95,03/26/19 21:24,"960 West St, San Francisco, CA 94016" +184996,Lightning Charging Cable,1,14.95,03/26/19 21:24,"960 West St, San Francisco, CA 94016" +184997,AAA Batteries (4-pack),1,2.99,03/14/19 21:40,"998 Lake St, Portland, ME 04101" +184998,AAA Batteries (4-pack),1,2.99,03/21/19 16:44,"640 Ridge St, Los Angeles, CA 90001" +184999,USB-C Charging Cable,1,11.95,03/10/19 22:24,"766 Madison St, Dallas, TX 75001" +185000,AAA Batteries (4-pack),2,2.99,03/16/19 17:47,"223 14th St, Dallas, TX 75001" +185001,34in Ultrawide Monitor,1,379.99,03/16/19 21:01,"675 Lake St, San Francisco, CA 94016" +185002,ThinkPad Laptop,1,999.99,03/08/19 21:40,"22 Spruce St, San Francisco, CA 94016" +185003,USB-C Charging Cable,1,11.95,03/02/19 12:20,"515 Adams St, Boston, MA 02215" +185004,USB-C Charging Cable,1,11.95,03/19/19 19:32,"699 12th St, New York City, NY 10001" +185005,Macbook Pro Laptop,1,1700,03/14/19 20:59,"628 Willow St, Seattle, WA 98101" +185006,Lightning Charging Cable,1,14.95,03/29/19 19:15,"759 Hickory St, Austin, TX 73301" +185007,USB-C Charging Cable,1,11.95,03/17/19 15:45,"587 Center St, Los Angeles, CA 90001" +185008,Flatscreen TV,1,300,03/15/19 21:09,"367 8th St, Austin, TX 73301" +185009,27in FHD Monitor,1,149.99,03/09/19 12:18,"565 12th St, Boston, MA 02215" +185010,AAA Batteries (4-pack),1,2.99,03/14/19 20:09,"906 Madison St, San Francisco, CA 94016" +185011,34in Ultrawide Monitor,1,379.99,03/18/19 00:30,"118 Elm St, Austin, TX 73301" +185012,AA Batteries (4-pack),1,3.84,03/16/19 13:15,"883 Jefferson St, Los Angeles, CA 90001" +185013,27in 4K Gaming Monitor,1,389.99,03/28/19 16:30,"994 14th St, Los Angeles, CA 90001" +185014,Bose SoundSport Headphones,1,99.99,03/26/19 14:01,"432 Lincoln St, Boston, MA 02215" +185015,Wired Headphones,1,11.99,03/30/19 18:53,"756 Center St, Dallas, TX 75001" +185016,AAA Batteries (4-pack),2,2.99,03/04/19 15:00,"560 7th St, San Francisco, CA 94016" +185017,Wired Headphones,1,11.99,03/08/19 20:08,"790 8th St, Austin, TX 73301" +185018,Google Phone,1,600,03/31/19 20:20,"12 Cedar St, Los Angeles, CA 90001" +185019,Wired Headphones,1,11.99,03/30/19 14:07,"837 Dogwood St, Los Angeles, CA 90001" +185020,AA Batteries (4-pack),3,3.84,03/10/19 10:17,"611 Adams St, San Francisco, CA 94016" +185021,USB-C Charging Cable,1,11.95,04/01/19 01:41,"410 Meadow St, San Francisco, CA 94016" +185022,34in Ultrawide Monitor,1,379.99,03/17/19 23:08,"942 Johnson St, Atlanta, GA 30301" +185023,USB-C Charging Cable,1,11.95,03/03/19 19:45,"96 14th St, Atlanta, GA 30301" +185024,Wired Headphones,1,11.99,03/27/19 23:20,"51 1st St, Boston, MA 02215" +185025,Lightning Charging Cable,1,14.95,03/28/19 15:51,"716 Cherry St, Austin, TX 73301" +185026,iPhone,1,700,03/09/19 18:55,"760 Highland St, San Francisco, CA 94016" +185026,Lightning Charging Cable,1,14.95,03/09/19 18:55,"760 Highland St, San Francisco, CA 94016" +185027,Apple Airpods Headphones,1,150,03/07/19 09:16,"897 5th St, Seattle, WA 98101" +185028,Bose SoundSport Headphones,1,99.99,03/18/19 12:15,"105 Hickory St, Dallas, TX 75001" +185029,34in Ultrawide Monitor,1,379.99,03/17/19 13:17,"171 Ridge St, Boston, MA 02215" +185030,AA Batteries (4-pack),1,3.84,03/08/19 14:28,"295 Highland St, Portland, OR 97035" +185031,AA Batteries (4-pack),1,3.84,03/09/19 22:15,"207 Elm St, Los Angeles, CA 90001" +185032,34in Ultrawide Monitor,1,379.99,03/14/19 19:49,"318 West St, New York City, NY 10001" +185033,Macbook Pro Laptop,1,1700,03/17/19 15:47,"461 Center St, San Francisco, CA 94016" +185034,USB-C Charging Cable,1,11.95,03/21/19 16:18,"572 Elm St, New York City, NY 10001" +185035,AA Batteries (4-pack),1,3.84,03/31/19 19:34,"829 Wilson St, Los Angeles, CA 90001" +185036,AA Batteries (4-pack),2,3.84,03/29/19 12:48,"857 12th St, San Francisco, CA 94016" +185037,AAA Batteries (4-pack),1,2.99,03/02/19 02:36,"842 Park St, Austin, TX 73301" +185038,Flatscreen TV,1,300,03/23/19 23:49,"276 13th St, Los Angeles, CA 90001" +185039,27in FHD Monitor,1,149.99,03/12/19 09:34,"421 Hickory St, Boston, MA 02215" +185040,AA Batteries (4-pack),2,3.84,03/31/19 14:12,"894 Pine St, Boston, MA 02215" +185041,AA Batteries (4-pack),1,3.84,03/24/19 09:08,"965 Center St, New York City, NY 10001" +185042,USB-C Charging Cable,1,11.95,03/30/19 13:32,"373 Maple St, New York City, NY 10001" +185043,USB-C Charging Cable,1,11.95,03/08/19 16:41,"845 1st St, Boston, MA 02215" +185044,AAA Batteries (4-pack),2,2.99,03/23/19 15:49,"430 Lincoln St, Portland, OR 97035" +185045,Lightning Charging Cable,1,14.95,03/15/19 10:57,"425 Sunset St, Los Angeles, CA 90001" +185046,27in 4K Gaming Monitor,1,389.99,03/29/19 10:07,"743 2nd St, Boston, MA 02215" +185047,AA Batteries (4-pack),1,3.84,03/09/19 15:38,"415 9th St, Atlanta, GA 30301" +185048,Wired Headphones,1,11.99,03/26/19 15:28,"967 West St, Austin, TX 73301" +185049,Apple Airpods Headphones,1,150,03/04/19 08:36,"195 North St, San Francisco, CA 94016" +185050,Wired Headphones,1,11.99,03/02/19 18:24,"551 11th St, San Francisco, CA 94016" +185051,Apple Airpods Headphones,1,150,03/12/19 18:37,"736 Park St, Dallas, TX 75001" +185052,Google Phone,1,600,03/25/19 21:17,"585 Lakeview St, San Francisco, CA 94016" +185053,AAA Batteries (4-pack),1,2.99,03/13/19 14:27,"713 Hill St, New York City, NY 10001" +185054,iPhone,1,700,03/11/19 16:41,"526 Washington St, Seattle, WA 98101" +185055,AAA Batteries (4-pack),2,2.99,03/19/19 10:11,"703 4th St, Atlanta, GA 30301" +185055,Lightning Charging Cable,1,14.95,03/19/19 10:11,"703 4th St, Atlanta, GA 30301" +185056,AAA Batteries (4-pack),2,2.99,03/20/19 20:23,"531 14th St, San Francisco, CA 94016" +185057,USB-C Charging Cable,1,11.95,03/14/19 12:40,"228 Church St, San Francisco, CA 94016" +185058,AA Batteries (4-pack),1,3.84,03/08/19 18:22,"508 Johnson St, Seattle, WA 98101" +185059,AA Batteries (4-pack),1,3.84,03/09/19 22:38,"479 Lincoln St, New York City, NY 10001" +185060,USB-C Charging Cable,1,11.95,03/31/19 23:50,"130 13th St, San Francisco, CA 94016" +185060,iPhone,1,700,03/31/19 23:50,"130 13th St, San Francisco, CA 94016" +185061,Apple Airpods Headphones,1,150,03/10/19 18:17,"228 Center St, Boston, MA 02215" +185062,Lightning Charging Cable,1,14.95,03/24/19 12:28,"293 Lakeview St, Los Angeles, CA 90001" +185063,USB-C Charging Cable,1,11.95,03/21/19 22:13,"907 Lakeview St, San Francisco, CA 94016" +185064,34in Ultrawide Monitor,1,379.99,03/26/19 14:09,"250 Walnut St, Atlanta, GA 30301" +185065,Lightning Charging Cable,2,14.95,03/06/19 18:23,"13 Spruce St, New York City, NY 10001" +185066,Wired Headphones,1,11.99,03/09/19 12:50,"820 River St, San Francisco, CA 94016" +185067,AA Batteries (4-pack),1,3.84,03/16/19 09:54,"16 Park St, Dallas, TX 75001" +185068,Lightning Charging Cable,1,14.95,03/30/19 23:06,"879 Johnson St, Seattle, WA 98101" +185069,Lightning Charging Cable,1,14.95,03/01/19 16:32,"35 Chestnut St, Atlanta, GA 30301" +185070,Macbook Pro Laptop,1,1700,03/03/19 09:28,"549 Hickory St, Boston, MA 02215" +185071,USB-C Charging Cable,1,11.95,03/06/19 23:06,"572 10th St, Los Angeles, CA 90001" +185072,AAA Batteries (4-pack),1,2.99,03/28/19 08:59,"790 Dogwood St, New York City, NY 10001" +185073,Lightning Charging Cable,1,14.95,03/20/19 19:23,"495 Hickory St, San Francisco, CA 94016" +185074,27in FHD Monitor,1,149.99,03/18/19 09:33,"471 Wilson St, San Francisco, CA 94016" +185075,27in FHD Monitor,1,149.99,03/13/19 18:16,"138 North St, Boston, MA 02215" +185076,AAA Batteries (4-pack),2,2.99,03/04/19 09:09,"395 Main St, Dallas, TX 75001" +185077,Wired Headphones,3,11.99,03/13/19 18:31,"751 Madison St, San Francisco, CA 94016" +185078,iPhone,1,700,03/29/19 16:50,"827 11th St, San Francisco, CA 94016" +185079,Apple Airpods Headphones,1,150,03/02/19 22:39,"291 Maple St, Atlanta, GA 30301" +185080,Lightning Charging Cable,1,14.95,03/01/19 11:50,"159 Lincoln St, New York City, NY 10001" +185081,USB-C Charging Cable,1,11.95,03/06/19 19:16,"936 Dogwood St, Los Angeles, CA 90001" +185082,Lightning Charging Cable,2,14.95,03/17/19 07:01,"301 10th St, New York City, NY 10001" +185083,USB-C Charging Cable,1,11.95,03/15/19 16:36,"729 Madison St, Portland, OR 97035" +185084,USB-C Charging Cable,1,11.95,03/12/19 11:53,"167 Park St, New York City, NY 10001" +185085,Apple Airpods Headphones,1,150,03/14/19 03:53,"674 Main St, Boston, MA 02215" +185086,27in 4K Gaming Monitor,1,389.99,03/20/19 19:47,"614 River St, San Francisco, CA 94016" +185087,AAA Batteries (4-pack),2,2.99,03/04/19 21:11,"298 West St, Portland, OR 97035" +185088,AAA Batteries (4-pack),1,2.99,03/11/19 12:33,"729 6th St, Portland, OR 97035" +185089,Wired Headphones,1,11.99,03/02/19 00:52,"23 14th St, Dallas, TX 75001" +185090,AA Batteries (4-pack),1,3.84,03/08/19 05:43,"681 Adams St, San Francisco, CA 94016" +185091,Bose SoundSport Headphones,1,99.99,03/28/19 22:42,"206 Cedar St, New York City, NY 10001" +185092,AA Batteries (4-pack),1,3.84,03/07/19 10:54,"923 Hill St, San Francisco, CA 94016" +185093,USB-C Charging Cable,1,11.95,03/01/19 09:38,"537 Dogwood St, New York City, NY 10001" +185094,iPhone,1,700,03/14/19 22:14,"723 12th St, Boston, MA 02215" +185094,Apple Airpods Headphones,1,150,03/14/19 22:14,"723 12th St, Boston, MA 02215" +185095,USB-C Charging Cable,2,11.95,03/27/19 13:26,"362 Willow St, Los Angeles, CA 90001" +185096,Apple Airpods Headphones,1,150,03/12/19 10:03,"971 Highland St, Atlanta, GA 30301" +185097,AA Batteries (4-pack),1,3.84,03/12/19 10:29,"264 6th St, San Francisco, CA 94016" +185097,USB-C Charging Cable,1,11.95,03/12/19 10:29,"264 6th St, San Francisco, CA 94016" +185098,Bose SoundSport Headphones,1,99.99,03/06/19 16:13,"158 Jackson St, Portland, OR 97035" +185099,Apple Airpods Headphones,1,150,03/15/19 16:53,"987 South St, Seattle, WA 98101" +185100,Lightning Charging Cable,3,14.95,03/01/19 12:56,"138 12th St, Los Angeles, CA 90001" +185101,Bose SoundSport Headphones,1,99.99,03/11/19 20:10,"177 10th St, Austin, TX 73301" +185101,AAA Batteries (4-pack),1,2.99,03/11/19 20:10,"177 10th St, Austin, TX 73301" +185102,34in Ultrawide Monitor,1,379.99,03/20/19 18:55,"299 Adams St, Boston, MA 02215" +185103,Bose SoundSport Headphones,1,99.99,03/25/19 15:01,"808 Cherry St, Los Angeles, CA 90001" +185104,Bose SoundSport Headphones,1,99.99,03/11/19 11:53,"947 Elm St, Seattle, WA 98101" +185105,Lightning Charging Cable,1,14.95,03/01/19 09:50,"980 West St, New York City, NY 10001" +185106,AAA Batteries (4-pack),3,2.99,03/25/19 16:42,"825 Park St, San Francisco, CA 94016" +185107,AAA Batteries (4-pack),1,2.99,03/23/19 03:21,"419 Johnson St, San Francisco, CA 94016" +185108,Apple Airpods Headphones,1,150,03/08/19 09:01,"490 Center St, San Francisco, CA 94016" +185109,Lightning Charging Cable,1,14.95,03/05/19 00:11,"890 Lincoln St, Atlanta, GA 30301" +185110,AA Batteries (4-pack),2,3.84,03/10/19 17:26,"664 Dogwood St, San Francisco, CA 94016" +185111,34in Ultrawide Monitor,1,379.99,03/14/19 09:18,"928 Cedar St, New York City, NY 10001" +185112,USB-C Charging Cable,1,11.95,03/24/19 08:58,"52 13th St, Seattle, WA 98101" +185113,27in 4K Gaming Monitor,1,389.99,03/17/19 10:42,"485 Lincoln St, Atlanta, GA 30301" +185114,AAA Batteries (4-pack),1,2.99,03/09/19 17:36,"256 Jackson St, San Francisco, CA 94016" +185115,AA Batteries (4-pack),3,3.84,03/20/19 17:27,"901 14th St, Atlanta, GA 30301" +185116,27in 4K Gaming Monitor,1,389.99,03/22/19 11:43,"930 South St, Boston, MA 02215" +185117,Wired Headphones,1,11.99,03/29/19 15:22,"430 Washington St, San Francisco, CA 94016" +185118,34in Ultrawide Monitor,1,379.99,03/19/19 17:19,"78 Ridge St, San Francisco, CA 94016" +185119,Apple Airpods Headphones,1,150,03/12/19 13:15,"440 Cherry St, Boston, MA 02215" +185120,AA Batteries (4-pack),1,3.84,03/21/19 19:35,"172 Spruce St, New York City, NY 10001" +185121,USB-C Charging Cable,1,11.95,03/05/19 17:43,"260 Adams St, San Francisco, CA 94016" +185122,Wired Headphones,1,11.99,03/23/19 17:31,"8 Highland St, Los Angeles, CA 90001" +185123,Wired Headphones,1,11.99,03/13/19 09:50,"926 6th St, San Francisco, CA 94016" +185124,LG Dryer,1,600.0,03/23/19 10:21,"491 12th St, New York City, NY 10001" +185125,Wired Headphones,2,11.99,03/01/19 12:30,"322 Maple St, San Francisco, CA 94016" +185126,AAA Batteries (4-pack),1,2.99,03/05/19 14:40,"794 Spruce St, New York City, NY 10001" +185127,Apple Airpods Headphones,1,150,03/07/19 15:43,"164 11th St, Portland, OR 97035" +185128,Bose SoundSport Headphones,1,99.99,03/24/19 00:11,"749 River St, Dallas, TX 75001" +185129,AAA Batteries (4-pack),3,2.99,03/19/19 17:54,"937 Center St, San Francisco, CA 94016" +185130,34in Ultrawide Monitor,1,379.99,03/06/19 08:51,"169 Maple St, Dallas, TX 75001" +185131,Google Phone,1,600,03/29/19 22:52,"688 Sunset St, San Francisco, CA 94016" +185132,27in 4K Gaming Monitor,1,389.99,03/08/19 23:34,"444 Jefferson St, Seattle, WA 98101" +185133,Wired Headphones,1,11.99,03/11/19 19:39,"897 6th St, Los Angeles, CA 90001" +185134,Wired Headphones,1,11.99,03/25/19 11:28,"673 Wilson St, Austin, TX 73301" +185135,27in FHD Monitor,1,149.99,03/08/19 19:08,"179 Hill St, San Francisco, CA 94016" +185136,AAA Batteries (4-pack),1,2.99,03/04/19 18:00,"604 Adams St, Los Angeles, CA 90001" +185137,AA Batteries (4-pack),1,3.84,03/31/19 13:56,"739 10th St, Boston, MA 02215" +185138,27in 4K Gaming Monitor,1,389.99,03/08/19 14:55,"491 Highland St, Boston, MA 02215" +185139,Wired Headphones,1,11.99,03/20/19 10:42,"805 13th St, Portland, OR 97035" +185140,27in FHD Monitor,1,149.99,03/06/19 21:28,"866 Lincoln St, Los Angeles, CA 90001" +185141,LG Washing Machine,1,600.0,03/05/19 15:35,"922 Lakeview St, New York City, NY 10001" +185142,Lightning Charging Cable,1,14.95,03/14/19 08:01,"353 Washington St, San Francisco, CA 94016" +185143,Wired Headphones,2,11.99,03/11/19 14:14,"288 Maple St, Portland, ME 04101" +185144,AA Batteries (4-pack),1,3.84,03/26/19 16:45,"913 Cherry St, Portland, OR 97035" +185145,Wired Headphones,1,11.99,03/19/19 16:44,"748 Spruce St, San Francisco, CA 94016" +185146,27in 4K Gaming Monitor,1,389.99,03/24/19 17:57,"710 Sunset St, Los Angeles, CA 90001" +185147,Google Phone,1,600,03/19/19 11:16,"89 Cherry St, San Francisco, CA 94016" +185147,USB-C Charging Cable,1,11.95,03/19/19 11:16,"89 Cherry St, San Francisco, CA 94016" +185147,USB-C Charging Cable,1,11.95,03/19/19 11:16,"89 Cherry St, San Francisco, CA 94016" +185148,AAA Batteries (4-pack),1,2.99,03/22/19 00:26,"136 Highland St, San Francisco, CA 94016" +185149,iPhone,1,700,03/05/19 22:14,"947 Highland St, Boston, MA 02215" +185149,Lightning Charging Cable,1,14.95,03/05/19 22:14,"947 Highland St, Boston, MA 02215" +185149,Wired Headphones,1,11.99,03/05/19 22:14,"947 Highland St, Boston, MA 02215" +185150,AA Batteries (4-pack),1,3.84,03/04/19 17:05,"973 Meadow St, Seattle, WA 98101" +185151,27in 4K Gaming Monitor,1,389.99,03/30/19 18:21,"181 Spruce St, New York City, NY 10001" +185152,Wired Headphones,1,11.99,03/02/19 16:34,"733 Adams St, Atlanta, GA 30301" +185153,Apple Airpods Headphones,1,150,03/21/19 15:21,"813 River St, San Francisco, CA 94016" +185154,USB-C Charging Cable,1,11.95,03/27/19 15:04,"909 Forest St, Portland, OR 97035" +185155,Lightning Charging Cable,1,14.95,03/16/19 21:49,"981 Park St, New York City, NY 10001" +185156,AA Batteries (4-pack),3,3.84,03/25/19 11:19,"476 12th St, Seattle, WA 98101" +185157,Flatscreen TV,1,300,03/06/19 10:07,"109 Cherry St, New York City, NY 10001" +185158,AAA Batteries (4-pack),1,2.99,03/20/19 13:43,"307 Cherry St, Dallas, TX 75001" +185159,Lightning Charging Cable,1,14.95,03/09/19 13:40,"709 13th St, Atlanta, GA 30301" +185160,Apple Airpods Headphones,1,150,03/26/19 06:07,"134 7th St, San Francisco, CA 94016" +185161,Flatscreen TV,1,300,03/13/19 08:36,"385 Main St, New York City, NY 10001" +185162,Apple Airpods Headphones,1,150,03/18/19 18:51,"571 Lake St, Los Angeles, CA 90001" +185163,27in 4K Gaming Monitor,1,389.99,03/24/19 17:03,"275 Hill St, New York City, NY 10001" +185164,AAA Batteries (4-pack),1,2.99,03/10/19 12:13,"617 Madison St, Boston, MA 02215" +185165,AA Batteries (4-pack),1,3.84,03/26/19 13:15,"68 Pine St, Los Angeles, CA 90001" +185166,ThinkPad Laptop,1,999.99,03/25/19 17:04,"399 Main St, Portland, OR 97035" +185167,Apple Airpods Headphones,1,150,03/09/19 08:37,"371 Dogwood St, Portland, OR 97035" +185168,Wired Headphones,1,11.99,03/03/19 11:40,"651 13th St, Los Angeles, CA 90001" +185169,ThinkPad Laptop,1,999.99,03/28/19 21:53,"902 Willow St, Portland, ME 04101" +185170,Bose SoundSport Headphones,1,99.99,03/01/19 18:47,"22 North St, San Francisco, CA 94016" +185171,34in Ultrawide Monitor,1,379.99,03/16/19 09:37,"295 Dogwood St, Dallas, TX 75001" +185172,USB-C Charging Cable,1,11.95,03/11/19 15:29,"14 South St, Atlanta, GA 30301" +185173,AA Batteries (4-pack),1,3.84,03/17/19 11:49,"406 Lincoln St, San Francisco, CA 94016" +185174,34in Ultrawide Monitor,1,379.99,03/29/19 17:47,"220 Dogwood St, Portland, OR 97035" +185175,Bose SoundSport Headphones,1,99.99,03/18/19 20:20,"512 Cherry St, San Francisco, CA 94016" +185176,Wired Headphones,1,11.99,03/05/19 00:31,"701 South St, Los Angeles, CA 90001" +185177,27in FHD Monitor,1,149.99,03/18/19 13:57,"383 Cherry St, Seattle, WA 98101" +185178,USB-C Charging Cable,1,11.95,03/19/19 23:22,"277 Walnut St, San Francisco, CA 94016" +185179,iPhone,1,700,03/31/19 00:56,"240 8th St, New York City, NY 10001" +185180,20in Monitor,1,109.99,03/29/19 22:50,"817 Jackson St, New York City, NY 10001" +185181,AA Batteries (4-pack),4,3.84,03/15/19 19:11,"554 River St, Los Angeles, CA 90001" +185182,AAA Batteries (4-pack),2,2.99,03/18/19 19:53,"884 Meadow St, Portland, OR 97035" +185183,Apple Airpods Headphones,1,150,03/17/19 11:23,"367 12th St, Boston, MA 02215" +185184,Flatscreen TV,1,300,03/18/19 15:24,"174 Park St, San Francisco, CA 94016" +185185,Bose SoundSport Headphones,1,99.99,03/07/19 19:17,"170 Sunset St, Los Angeles, CA 90001" +185186,Lightning Charging Cable,1,14.95,03/14/19 14:46,"960 6th St, San Francisco, CA 94016" +185187,AAA Batteries (4-pack),1,2.99,03/31/19 23:12,"887 Walnut St, San Francisco, CA 94016" +185188,AAA Batteries (4-pack),2,2.99,03/02/19 09:54,"668 14th St, New York City, NY 10001" +185189,Bose SoundSport Headphones,1,99.99,03/04/19 12:18,"434 Walnut St, New York City, NY 10001" +185190,AA Batteries (4-pack),1,3.84,03/13/19 10:26,"514 8th St, Dallas, TX 75001" +185191,Wired Headphones,1,11.99,03/22/19 21:43,"985 Meadow St, Seattle, WA 98101" +185192,AAA Batteries (4-pack),1,2.99,03/01/19 14:35,"603 11th St, San Francisco, CA 94016" +185193,27in FHD Monitor,1,149.99,03/29/19 20:12,"420 5th St, Los Angeles, CA 90001" +185194,Wired Headphones,1,11.99,03/28/19 01:29,"617 Forest St, New York City, NY 10001" +185195,USB-C Charging Cable,1,11.95,03/24/19 15:00,"64 Elm St, Atlanta, GA 30301" +185196,Bose SoundSport Headphones,1,99.99,03/29/19 08:29,"821 Lakeview St, San Francisco, CA 94016" +185197,Flatscreen TV,1,300,03/18/19 00:33,"657 Elm St, Austin, TX 73301" +185198,Vareebadd Phone,1,400,03/09/19 08:37,"22 2nd St, San Francisco, CA 94016" +185198,USB-C Charging Cable,1,11.95,03/09/19 08:37,"22 2nd St, San Francisco, CA 94016" +185199,Bose SoundSport Headphones,1,99.99,03/14/19 14:19,"553 Jefferson St, Dallas, TX 75001" +185200,USB-C Charging Cable,2,11.95,03/31/19 18:21,"302 14th St, Boston, MA 02215" +185201,USB-C Charging Cable,1,11.95,03/02/19 18:33,"463 South St, San Francisco, CA 94016" +185202,AAA Batteries (4-pack),1,2.99,03/15/19 02:07,"296 Meadow St, Los Angeles, CA 90001" +185203,Wired Headphones,1,11.99,03/22/19 20:44,"337 Cedar St, Atlanta, GA 30301" +185204,Apple Airpods Headphones,1,150,03/08/19 15:56,"939 5th St, Atlanta, GA 30301" +185204,Bose SoundSport Headphones,1,99.99,03/08/19 15:56,"939 5th St, Atlanta, GA 30301" +185205,USB-C Charging Cable,1,11.95,03/14/19 23:25,"22 13th St, Los Angeles, CA 90001" +185206,Lightning Charging Cable,1,14.95,03/25/19 08:47,"127 6th St, Portland, OR 97035" +185207,Wired Headphones,2,11.99,03/12/19 17:57,"587 1st St, Boston, MA 02215" +185208,USB-C Charging Cable,2,11.95,03/22/19 09:07,"300 Elm St, Austin, TX 73301" +185209,Apple Airpods Headphones,1,150,03/13/19 14:24,"952 2nd St, Seattle, WA 98101" +185210,Lightning Charging Cable,1,14.95,03/03/19 13:48,"136 Cherry St, Los Angeles, CA 90001" +185211,USB-C Charging Cable,1,11.95,03/06/19 12:21,"23 Elm St, Los Angeles, CA 90001" +185212,Wired Headphones,1,11.99,03/28/19 14:22,"263 Sunset St, San Francisco, CA 94016" +185213,Lightning Charging Cable,1,14.95,03/22/19 19:06,"123 North St, San Francisco, CA 94016" +185214,AA Batteries (4-pack),1,3.84,03/23/19 13:41,"579 Hill St, New York City, NY 10001" +185215,27in 4K Gaming Monitor,1,389.99,03/04/19 16:03,"631 Church St, Seattle, WA 98101" +185216,Bose SoundSport Headphones,1,99.99,03/07/19 01:11,"869 Madison St, Atlanta, GA 30301" +185217,AAA Batteries (4-pack),5,2.99,03/13/19 00:27,"809 2nd St, Portland, OR 97035" +185218,USB-C Charging Cable,1,11.95,03/17/19 18:20,"74 Center St, Seattle, WA 98101" +185219,27in 4K Gaming Monitor,1,389.99,03/17/19 14:49,"583 Elm St, New York City, NY 10001" +185220,Lightning Charging Cable,1,14.95,03/12/19 04:31,"98 12th St, New York City, NY 10001" +185221,Wired Headphones,1,11.99,03/31/19 09:20,"771 5th St, Atlanta, GA 30301" +185222,AA Batteries (4-pack),1,3.84,03/28/19 00:48,"10 Sunset St, Boston, MA 02215" +185223,Wired Headphones,1,11.99,03/29/19 15:42,"910 Elm St, San Francisco, CA 94016" +185224,AAA Batteries (4-pack),1,2.99,03/06/19 19:07,"625 Jackson St, Los Angeles, CA 90001" +185225,Apple Airpods Headphones,1,150,03/03/19 14:56,"50 Forest St, San Francisco, CA 94016" +185226,AA Batteries (4-pack),1,3.84,03/05/19 21:40,"919 14th St, Los Angeles, CA 90001" +185226,Lightning Charging Cable,1,14.95,03/05/19 21:40,"919 14th St, Los Angeles, CA 90001" +185227,Apple Airpods Headphones,1,150,03/26/19 11:54,"225 Main St, San Francisco, CA 94016" +185228,AA Batteries (4-pack),2,3.84,03/13/19 17:12,"741 Highland St, Seattle, WA 98101" +185229,Wired Headphones,1,11.99,03/10/19 13:25,"344 Washington St, Los Angeles, CA 90001" +185230,AAA Batteries (4-pack),1,2.99,03/16/19 02:10,"686 Sunset St, Dallas, TX 75001" +185231,iPhone,1,700,03/16/19 22:03,"852 Center St, Atlanta, GA 30301" +185232,27in FHD Monitor,1,149.99,03/09/19 15:38,"406 Maple St, Dallas, TX 75001" +185233,Apple Airpods Headphones,1,150,03/04/19 12:00,"120 Jefferson St, Los Angeles, CA 90001" +185234,Lightning Charging Cable,1,14.95,03/16/19 13:09,"294 14th St, Atlanta, GA 30301" +185235,Flatscreen TV,1,300,03/30/19 00:24,"225 South St, Portland, ME 04101" +185236,Macbook Pro Laptop,1,1700,03/13/19 20:15,"967 Madison St, Los Angeles, CA 90001" +185237,27in FHD Monitor,1,149.99,03/08/19 15:38,"441 Hill St, Atlanta, GA 30301" +185238,AA Batteries (4-pack),2,3.84,03/15/19 15:37,"900 Hickory St, Portland, OR 97035" +185239,AAA Batteries (4-pack),1,2.99,03/26/19 15:57,"983 Hickory St, Los Angeles, CA 90001" +185240,20in Monitor,1,109.99,03/12/19 10:34,"239 South St, Los Angeles, CA 90001" +185241,AA Batteries (4-pack),1,3.84,03/27/19 21:24,"228 South St, Seattle, WA 98101" +185242,AAA Batteries (4-pack),1,2.99,03/30/19 18:49,"407 7th St, Los Angeles, CA 90001" +185243,iPhone,1,700,03/02/19 21:13,"381 Ridge St, San Francisco, CA 94016" +185244,iPhone,1,700,03/14/19 02:28,"90 Willow St, Atlanta, GA 30301" +185245,USB-C Charging Cable,1,11.95,03/21/19 13:55,"279 6th St, San Francisco, CA 94016" +185246,AA Batteries (4-pack),2,3.84,03/03/19 12:24,"236 Lincoln St, Atlanta, GA 30301" +185247,Google Phone,1,600,03/12/19 20:12,"694 Cedar St, Austin, TX 73301" +185248,Apple Airpods Headphones,1,150,03/09/19 18:37,"35 Forest St, Boston, MA 02215" +185249,27in 4K Gaming Monitor,1,389.99,03/07/19 22:24,"157 Madison St, Boston, MA 02215" +185250,USB-C Charging Cable,1,11.95,03/15/19 11:46,"376 Cherry St, San Francisco, CA 94016" +185251,34in Ultrawide Monitor,1,379.99,03/10/19 20:37,"255 Adams St, Atlanta, GA 30301" +185252,Flatscreen TV,1,300,03/05/19 09:38,"280 Lakeview St, Portland, OR 97035" +185253,AAA Batteries (4-pack),2,2.99,03/07/19 19:57,"653 Adams St, Atlanta, GA 30301" +185254,34in Ultrawide Monitor,1,379.99,03/09/19 09:14,"311 Sunset St, Seattle, WA 98101" +185255,ThinkPad Laptop,1,999.99,03/14/19 11:41,"442 Ridge St, Atlanta, GA 30301" +185256,Lightning Charging Cable,1,14.95,03/11/19 09:16,"326 13th St, Los Angeles, CA 90001" +185257,Apple Airpods Headphones,1,150,03/30/19 19:18,"547 Church St, Boston, MA 02215" +185257,20in Monitor,1,109.99,03/30/19 19:18,"547 Church St, Boston, MA 02215" +185258,Lightning Charging Cable,1,14.95,03/15/19 18:28,"866 9th St, Boston, MA 02215" +185259,iPhone,1,700,03/05/19 13:34,"222 Sunset St, Portland, OR 97035" +185259,Lightning Charging Cable,1,14.95,03/05/19 13:34,"222 Sunset St, Portland, OR 97035" +185260,AA Batteries (4-pack),2,3.84,03/13/19 11:02,"676 Wilson St, Portland, ME 04101" +185260,Wired Headphones,1,11.99,03/13/19 11:02,"676 Wilson St, Portland, ME 04101" +185261,Apple Airpods Headphones,1,150,03/14/19 19:46,"955 Highland St, Los Angeles, CA 90001" +185262,AAA Batteries (4-pack),1,2.99,03/26/19 17:04,"919 12th St, Atlanta, GA 30301" +185263,Lightning Charging Cable,1,14.95,03/22/19 18:26,"601 Forest St, Los Angeles, CA 90001" +185264,20in Monitor,1,109.99,03/07/19 18:19,"184 Church St, Los Angeles, CA 90001" +185265,Lightning Charging Cable,1,14.95,03/16/19 23:20,"155 Center St, San Francisco, CA 94016" +185266,Google Phone,1,600,03/24/19 02:45,"165 Jackson St, Los Angeles, CA 90001" +185267,ThinkPad Laptop,1,999.99,03/30/19 18:33,"168 1st St, Dallas, TX 75001" +185268,Wired Headphones,1,11.99,03/11/19 20:36,"914 Chestnut St, Portland, ME 04101" +185269,Apple Airpods Headphones,1,150,03/15/19 18:30,"533 Jackson St, Los Angeles, CA 90001" +185270,Lightning Charging Cable,1,14.95,03/15/19 00:35,"856 8th St, Austin, TX 73301" +185271,USB-C Charging Cable,1,11.95,03/28/19 00:11,"242 Church St, Austin, TX 73301" +185272,AAA Batteries (4-pack),1,2.99,03/14/19 05:52,"243 Sunset St, New York City, NY 10001" +185273,Flatscreen TV,1,300,03/25/19 20:27,"653 8th St, San Francisco, CA 94016" +185274,USB-C Charging Cable,1,11.95,03/13/19 13:31,"183 Cherry St, San Francisco, CA 94016" +185275,AA Batteries (4-pack),1,3.84,03/13/19 08:30,"224 14th St, Los Angeles, CA 90001" +185276,Wired Headphones,1,11.99,03/07/19 15:55,"539 Lake St, Atlanta, GA 30301" +185277,USB-C Charging Cable,2,11.95,03/31/19 13:31,"251 10th St, Los Angeles, CA 90001" +185278,Bose SoundSport Headphones,1,99.99,03/06/19 12:30,"392 Hickory St, San Francisco, CA 94016" +185279,Lightning Charging Cable,1,14.95,03/14/19 10:58,"347 14th St, Boston, MA 02215" +185280,27in FHD Monitor,1,149.99,03/02/19 10:18,"86 North St, Portland, OR 97035" +185281,iPhone,1,700,03/02/19 16:41,"82 13th St, San Francisco, CA 94016" +185282,AAA Batteries (4-pack),1,2.99,03/09/19 11:55,"914 North St, San Francisco, CA 94016" +185283,Google Phone,1,600,03/05/19 20:06,"788 9th St, San Francisco, CA 94016" +185283,USB-C Charging Cable,1,11.95,03/05/19 20:06,"788 9th St, San Francisco, CA 94016" +185284,27in 4K Gaming Monitor,1,389.99,03/29/19 14:37,"579 11th St, New York City, NY 10001" +185285,Apple Airpods Headphones,1,150,03/19/19 18:37,"971 10th St, San Francisco, CA 94016" +185286,AAA Batteries (4-pack),1,2.99,03/11/19 17:18,"123 Adams St, Los Angeles, CA 90001" +185287,Flatscreen TV,1,300,03/19/19 22:34,"81 Sunset St, New York City, NY 10001" +185288,Bose SoundSport Headphones,1,99.99,03/01/19 08:06,"369 4th St, New York City, NY 10001" +185289,Bose SoundSport Headphones,1,99.99,03/30/19 21:10,"846 Cedar St, Dallas, TX 75001" +185290,Bose SoundSport Headphones,1,99.99,03/14/19 13:03,"143 Lake St, Austin, TX 73301" +185291,Wired Headphones,1,11.99,03/25/19 11:14,"556 1st St, Austin, TX 73301" +185292,USB-C Charging Cable,1,11.95,03/15/19 06:56,"618 11th St, San Francisco, CA 94016" +185293,Google Phone,1,600,03/17/19 19:18,"945 Center St, San Francisco, CA 94016" +185294,AAA Batteries (4-pack),4,2.99,03/18/19 16:00,"583 2nd St, Boston, MA 02215" +185295,AA Batteries (4-pack),1,3.84,03/03/19 00:31,"811 Pine St, Portland, ME 04101" +185296,Lightning Charging Cable,1,14.95,03/31/19 15:42,"444 7th St, Portland, OR 97035" +185297,Apple Airpods Headphones,1,150,03/13/19 10:39,"649 11th St, Austin, TX 73301" +185298,AAA Batteries (4-pack),1,2.99,03/05/19 11:40,"36 4th St, Seattle, WA 98101" +185299,AAA Batteries (4-pack),1,2.99,03/29/19 16:20,"124 Pine St, Austin, TX 73301" +185300,USB-C Charging Cable,1,11.95,03/01/19 09:29,"758 Walnut St, Boston, MA 02215" +185301,AA Batteries (4-pack),1,3.84,03/25/19 22:03,"870 Hickory St, San Francisco, CA 94016" +185302,AA Batteries (4-pack),3,3.84,03/13/19 07:00,"683 Washington St, Los Angeles, CA 90001" +185303,Macbook Pro Laptop,1,1700,03/23/19 11:01,"379 Park St, New York City, NY 10001" +185304,Lightning Charging Cable,1,14.95,03/31/19 01:35,"721 Hill St, Austin, TX 73301" +185305,Vareebadd Phone,1,400,03/27/19 06:06,"237 Sunset St, New York City, NY 10001" +185306,Flatscreen TV,1,300,03/23/19 12:22,"148 4th St, Austin, TX 73301" +185307,34in Ultrawide Monitor,1,379.99,03/09/19 12:17,"195 9th St, Los Angeles, CA 90001" +185308,Lightning Charging Cable,1,14.95,03/04/19 11:07,"120 Meadow St, Boston, MA 02215" +185309,AAA Batteries (4-pack),1,2.99,03/29/19 08:53,"933 Adams St, Portland, ME 04101" +185310,AA Batteries (4-pack),1,3.84,03/02/19 14:04,"702 Johnson St, Austin, TX 73301" +185311,Wired Headphones,1,11.99,03/29/19 09:04,"786 4th St, Dallas, TX 75001" +185312,ThinkPad Laptop,1,999.99,03/01/19 10:25,"679 Madison St, San Francisco, CA 94016" +185313,Wired Headphones,1,11.99,03/29/19 21:50,"462 Dogwood St, Dallas, TX 75001" +185314,AAA Batteries (4-pack),1,2.99,03/10/19 09:34,"371 Jefferson St, San Francisco, CA 94016" +185315,Wired Headphones,1,11.99,03/10/19 23:23,"836 North St, Los Angeles, CA 90001" +185316,Lightning Charging Cable,1,14.95,03/02/19 09:54,"344 Church St, Boston, MA 02215" +185317,AAA Batteries (4-pack),3,2.99,03/25/19 13:28,"911 Meadow St, Los Angeles, CA 90001" +185318,Lightning Charging Cable,1,14.95,03/31/19 15:59,"851 10th St, Austin, TX 73301" +185319,AAA Batteries (4-pack),1,2.99,03/03/19 13:16,"816 Lakeview St, Portland, OR 97035" +185320,Wired Headphones,1,11.99,03/20/19 20:29,"59 Hickory St, Los Angeles, CA 90001" +185321,Apple Airpods Headphones,1,150,03/13/19 21:28,"876 Meadow St, Dallas, TX 75001" +185322,Macbook Pro Laptop,1,1700,03/27/19 00:38,"906 2nd St, Los Angeles, CA 90001" +185323,27in FHD Monitor,1,149.99,03/11/19 18:45,"500 2nd St, Atlanta, GA 30301" +185324,AAA Batteries (4-pack),2,2.99,03/12/19 11:27,"133 1st St, New York City, NY 10001" +185325,ThinkPad Laptop,1,999.99,03/09/19 11:51,"805 Highland St, San Francisco, CA 94016" +185326,Lightning Charging Cable,1,14.95,03/18/19 20:40,"210 North St, New York City, NY 10001" +185327,Bose SoundSport Headphones,1,99.99,03/14/19 21:34,"399 River St, Dallas, TX 75001" +185328,AA Batteries (4-pack),1,3.84,03/13/19 17:11,"261 Spruce St, San Francisco, CA 94016" +185329,USB-C Charging Cable,1,11.95,03/06/19 17:40,"857 Highland St, Seattle, WA 98101" +185330,20in Monitor,1,109.99,03/08/19 18:18,"811 Chestnut St, Portland, OR 97035" +185331,Wired Headphones,1,11.99,03/14/19 11:33,"126 Johnson St, San Francisco, CA 94016" +185332,Bose SoundSport Headphones,1,99.99,03/03/19 10:35,"786 Lincoln St, San Francisco, CA 94016" +185333,27in 4K Gaming Monitor,1,389.99,03/06/19 23:15,"970 8th St, San Francisco, CA 94016" +185334,USB-C Charging Cable,1,11.95,03/02/19 14:11,"319 8th St, Los Angeles, CA 90001" +185335,Bose SoundSport Headphones,1,99.99,03/13/19 18:43,"770 1st St, Seattle, WA 98101" +185336,USB-C Charging Cable,1,11.95,03/31/19 09:38,"331 Jefferson St, San Francisco, CA 94016" +,,,,, +185337,Bose SoundSport Headphones,1,99.99,03/02/19 23:26,"83 Spruce St, New York City, NY 10001" +185338,Flatscreen TV,1,300,03/07/19 13:06,"399 Sunset St, Portland, ME 04101" +185339,AAA Batteries (4-pack),1,2.99,03/10/19 23:26,"184 Ridge St, San Francisco, CA 94016" +185339,AA Batteries (4-pack),1,3.84,03/10/19 23:26,"184 Ridge St, San Francisco, CA 94016" +185340,Apple Airpods Headphones,1,150,03/10/19 20:37,"754 14th St, San Francisco, CA 94016" +185341,Bose SoundSport Headphones,1,99.99,03/01/19 12:35,"602 Church St, San Francisco, CA 94016" +185341,AA Batteries (4-pack),2,3.84,03/01/19 12:35,"602 Church St, San Francisco, CA 94016" +185342,Wired Headphones,2,11.99,03/20/19 08:29,"259 West St, Los Angeles, CA 90001" +185343,AA Batteries (4-pack),1,3.84,03/26/19 13:57,"688 Cherry St, Atlanta, GA 30301" +185344,Vareebadd Phone,1,400,03/15/19 23:49,"940 Hickory St, Boston, MA 02215" +185345,iPhone,1,700,03/27/19 17:12,"944 Forest St, Seattle, WA 98101" +185346,AA Batteries (4-pack),1,3.84,03/28/19 20:35,"996 1st St, Portland, OR 97035" +185347,ThinkPad Laptop,1,999.99,03/04/19 11:26,"60 Willow St, Portland, ME 04101" +185348,ThinkPad Laptop,1,999.99,03/09/19 22:14,"529 Forest St, Dallas, TX 75001" +185349,AAA Batteries (4-pack),1,2.99,03/29/19 17:41,"179 1st St, Dallas, TX 75001" +185350,Bose SoundSport Headphones,1,99.99,03/04/19 17:16,"835 Sunset St, San Francisco, CA 94016" +185351,Google Phone,1,600,03/31/19 09:09,"261 7th St, San Francisco, CA 94016" +185352,USB-C Charging Cable,1,11.95,03/28/19 10:11,"948 Lakeview St, Seattle, WA 98101" +185352,Apple Airpods Headphones,1,150,03/28/19 10:11,"948 Lakeview St, Seattle, WA 98101" +185353,AAA Batteries (4-pack),2,2.99,03/15/19 17:40,"296 Lakeview St, San Francisco, CA 94016" +185354,Apple Airpods Headphones,1,150,03/04/19 18:51,"261 Lakeview St, Boston, MA 02215" +185355,AA Batteries (4-pack),3,3.84,03/06/19 00:31,"846 Church St, Boston, MA 02215" +185356,Flatscreen TV,1,300,03/09/19 08:40,"91 2nd St, Los Angeles, CA 90001" +185357,AA Batteries (4-pack),1,3.84,03/09/19 17:45,"192 Jefferson St, Seattle, WA 98101" +185358,AA Batteries (4-pack),2,3.84,03/27/19 17:31,"129 Walnut St, Seattle, WA 98101" +185359,USB-C Charging Cable,1,11.95,03/01/19 19:53,"785 Chestnut St, Boston, MA 02215" +185360,27in FHD Monitor,1,149.99,03/08/19 17:55,"182 Meadow St, Atlanta, GA 30301" +185361,AA Batteries (4-pack),2,3.84,03/26/19 09:21,"598 Sunset St, San Francisco, CA 94016" +185362,Apple Airpods Headphones,1,150,03/10/19 19:55,"701 Church St, New York City, NY 10001" +185363,Wired Headphones,1,11.99,03/19/19 14:56,"797 Washington St, San Francisco, CA 94016" +185364,USB-C Charging Cable,2,11.95,03/28/19 22:44,"462 Willow St, Boston, MA 02215" +185365,AAA Batteries (4-pack),3,2.99,03/05/19 18:23,"6 Madison St, Los Angeles, CA 90001" +185366,AAA Batteries (4-pack),1,2.99,03/08/19 14:14,"53 2nd St, San Francisco, CA 94016" +185367,34in Ultrawide Monitor,1,379.99,03/23/19 16:35,"200 Highland St, San Francisco, CA 94016" +185368,Bose SoundSport Headphones,1,99.99,03/28/19 09:27,"150 Cherry St, Los Angeles, CA 90001" +185369,AAA Batteries (4-pack),1,2.99,03/07/19 20:29,"45 Washington St, Los Angeles, CA 90001" +185370,Macbook Pro Laptop,1,1700,03/18/19 10:13,"249 Maple St, San Francisco, CA 94016" +185371,AAA Batteries (4-pack),2,2.99,03/13/19 05:54,"929 Ridge St, San Francisco, CA 94016" +185372,USB-C Charging Cable,2,11.95,03/28/19 21:11,"722 11th St, Los Angeles, CA 90001" +185373,USB-C Charging Cable,1,11.95,03/08/19 10:55,"4 Lakeview St, New York City, NY 10001" +185374,USB-C Charging Cable,1,11.95,03/23/19 01:08,"299 Elm St, Atlanta, GA 30301" +185375,Apple Airpods Headphones,1,150,03/14/19 13:44,"171 Walnut St, Boston, MA 02215" +185376,Apple Airpods Headphones,1,150,03/06/19 11:25,"596 Willow St, Los Angeles, CA 90001" +185377,Apple Airpods Headphones,1,150,03/28/19 22:10,"950 Lake St, Los Angeles, CA 90001" +185378,AAA Batteries (4-pack),1,2.99,03/09/19 18:43,"702 Lincoln St, San Francisco, CA 94016" +185378,USB-C Charging Cable,1,11.95,03/09/19 18:43,"702 Lincoln St, San Francisco, CA 94016" +185379,AAA Batteries (4-pack),1,2.99,03/06/19 22:51,"750 Pine St, Los Angeles, CA 90001" +185380,34in Ultrawide Monitor,1,379.99,03/03/19 18:32,"741 Lincoln St, New York City, NY 10001" +185381,USB-C Charging Cable,1,11.95,03/21/19 22:21,"72 Maple St, Dallas, TX 75001" +185382,34in Ultrawide Monitor,1,379.99,03/01/19 16:32,"615 Meadow St, Dallas, TX 75001" +185383,Bose SoundSport Headphones,1,99.99,03/13/19 22:20,"678 Park St, San Francisco, CA 94016" +185384,Bose SoundSport Headphones,1,99.99,03/07/19 10:52,"28 4th St, Portland, OR 97035" +185385,20in Monitor,1,109.99,03/10/19 14:37,"91 Jackson St, New York City, NY 10001" +185386,27in FHD Monitor,1,149.99,03/20/19 11:13,"562 Willow St, Los Angeles, CA 90001" +185387,USB-C Charging Cable,1,11.95,03/15/19 07:38,"267 Ridge St, San Francisco, CA 94016" +185388,iPhone,1,700,03/08/19 02:12,"404 Walnut St, New York City, NY 10001" +185389,Bose SoundSport Headphones,1,99.99,03/09/19 05:47,"800 Lincoln St, Seattle, WA 98101" +185390,Macbook Pro Laptop,1,1700,03/31/19 09:57,"675 Elm St, Atlanta, GA 30301" +185391,USB-C Charging Cable,1,11.95,03/21/19 15:34,"886 North St, Seattle, WA 98101" +185391,34in Ultrawide Monitor,1,379.99,03/21/19 15:34,"886 North St, Seattle, WA 98101" +185392,Wired Headphones,1,11.99,03/11/19 15:01,"360 West St, Los Angeles, CA 90001" +185392,20in Monitor,1,109.99,03/11/19 15:01,"360 West St, Los Angeles, CA 90001" +185393,iPhone,1,700,03/15/19 01:56,"421 2nd St, Boston, MA 02215" +185394,USB-C Charging Cable,1,11.95,03/13/19 10:36,"417 Pine St, Atlanta, GA 30301" +185395,USB-C Charging Cable,2,11.95,03/15/19 01:01,"551 Cherry St, Austin, TX 73301" +185396,Lightning Charging Cable,1,14.95,03/28/19 10:23,"764 Pine St, New York City, NY 10001" +185397,Lightning Charging Cable,1,14.95,03/09/19 12:40,"861 9th St, Dallas, TX 75001" +185398,AAA Batteries (4-pack),1,2.99,03/24/19 19:57,"87 Washington St, New York City, NY 10001" +185399,AA Batteries (4-pack),1,3.84,03/31/19 21:42,"533 Maple St, San Francisco, CA 94016" +185400,iPhone,1,700,03/21/19 23:44,"734 Ridge St, Seattle, WA 98101" +185401,AAA Batteries (4-pack),1,2.99,03/30/19 21:06,"500 Maple St, Atlanta, GA 30301" +185402,Wired Headphones,1,11.99,03/24/19 11:32,"32 Park St, San Francisco, CA 94016" +185403,iPhone,1,700,03/15/19 08:11,"145 Hill St, Atlanta, GA 30301" +185403,Lightning Charging Cable,1,14.95,03/15/19 08:11,"145 Hill St, Atlanta, GA 30301" +185403,Wired Headphones,1,11.99,03/15/19 08:11,"145 Hill St, Atlanta, GA 30301" +185404,USB-C Charging Cable,1,11.95,03/24/19 19:02,"839 River St, Dallas, TX 75001" +185405,USB-C Charging Cable,1,11.95,03/27/19 16:41,"797 Madison St, San Francisco, CA 94016" +185406,Lightning Charging Cable,1,14.95,03/27/19 20:45,"799 Wilson St, Los Angeles, CA 90001" +185407,AA Batteries (4-pack),1,3.84,03/30/19 07:35,"601 Main St, New York City, NY 10001" +185408,Lightning Charging Cable,1,14.95,03/31/19 12:59,"185 2nd St, Los Angeles, CA 90001" +185409,Lightning Charging Cable,1,14.95,03/01/19 17:08,"212 Elm St, Seattle, WA 98101" +185410,USB-C Charging Cable,1,11.95,03/21/19 23:44,"636 Washington St, Los Angeles, CA 90001" +185411,20in Monitor,1,109.99,03/23/19 14:26,"746 Lincoln St, San Francisco, CA 94016" +185412,USB-C Charging Cable,1,11.95,03/19/19 11:50,"951 12th St, San Francisco, CA 94016" +185413,Bose SoundSport Headphones,1,99.99,03/05/19 16:39,"554 Dogwood St, Los Angeles, CA 90001" +185414,AA Batteries (4-pack),2,3.84,03/08/19 15:13,"878 Spruce St, San Francisco, CA 94016" +185415,AA Batteries (4-pack),1,3.84,03/29/19 12:09,"438 8th St, Atlanta, GA 30301" +185416,Macbook Pro Laptop,1,1700,03/21/19 20:48,"682 Lake St, New York City, NY 10001" +185417,Bose SoundSport Headphones,1,99.99,03/18/19 22:48,"705 Ridge St, San Francisco, CA 94016" +185418,Lightning Charging Cable,2,14.95,03/11/19 22:33,"334 5th St, Portland, OR 97035" +185419,27in 4K Gaming Monitor,1,389.99,03/14/19 21:31,"579 Chestnut St, Los Angeles, CA 90001" +185420,Flatscreen TV,1,300,03/20/19 21:07,"798 11th St, San Francisco, CA 94016" +185421,AAA Batteries (4-pack),2,2.99,03/10/19 12:41,"514 Dogwood St, San Francisco, CA 94016" +185422,Wired Headphones,1,11.99,03/18/19 20:32,"320 6th St, Los Angeles, CA 90001" +185423,AA Batteries (4-pack),1,3.84,03/18/19 23:02,"683 Highland St, San Francisco, CA 94016" +185424,27in FHD Monitor,1,149.99,03/27/19 13:45,"820 Wilson St, Austin, TX 73301" +185425,AA Batteries (4-pack),1,3.84,03/30/19 11:59,"321 Washington St, Los Angeles, CA 90001" +185426,AA Batteries (4-pack),1,3.84,03/10/19 14:27,"916 Ridge St, Boston, MA 02215" +185427,27in FHD Monitor,1,149.99,03/02/19 21:20,"20 Forest St, Boston, MA 02215" +185428,Bose SoundSport Headphones,1,99.99,03/05/19 15:07,"140 Dogwood St, San Francisco, CA 94016" +185429,Apple Airpods Headphones,1,150,03/06/19 23:14,"685 Washington St, Seattle, WA 98101" +185430,34in Ultrawide Monitor,1,379.99,03/11/19 11:00,"594 Jackson St, Atlanta, GA 30301" +185431,USB-C Charging Cable,1,11.95,03/22/19 07:38,"721 Wilson St, Boston, MA 02215" +185432,Lightning Charging Cable,3,14.95,03/13/19 21:39,"986 Wilson St, San Francisco, CA 94016" +185433,AAA Batteries (4-pack),1,2.99,03/29/19 07:21,"698 2nd St, Los Angeles, CA 90001" +185433,Apple Airpods Headphones,1,150,03/29/19 07:21,"698 2nd St, Los Angeles, CA 90001" +185434,27in 4K Gaming Monitor,1,389.99,03/13/19 15:43,"486 7th St, Los Angeles, CA 90001" +185435,AAA Batteries (4-pack),1,2.99,03/29/19 22:17,"493 Church St, Los Angeles, CA 90001" +185436,20in Monitor,1,109.99,03/19/19 10:33,"566 5th St, Seattle, WA 98101" +185437,AAA Batteries (4-pack),1,2.99,03/30/19 17:39,"234 11th St, Seattle, WA 98101" +185438,iPhone,1,700,03/03/19 08:27,"89 Jackson St, Boston, MA 02215" +185439,USB-C Charging Cable,1,11.95,03/03/19 19:29,"587 5th St, San Francisco, CA 94016" +185440,Google Phone,1,600,03/01/19 07:27,"563 West St, Los Angeles, CA 90001" +185441,AAA Batteries (4-pack),1,2.99,03/28/19 11:43,"769 Cherry St, Dallas, TX 75001" +185442,Apple Airpods Headphones,1,150,03/09/19 11:04,"19 Pine St, San Francisco, CA 94016" +185443,USB-C Charging Cable,1,11.95,03/12/19 09:18,"264 Highland St, Los Angeles, CA 90001" +185444,Google Phone,1,600,03/08/19 18:09,"305 10th St, New York City, NY 10001" +185444,USB-C Charging Cable,1,11.95,03/08/19 18:09,"305 10th St, New York City, NY 10001" +185445,20in Monitor,1,109.99,03/04/19 22:00,"604 Center St, Austin, TX 73301" +185446,USB-C Charging Cable,1,11.95,03/01/19 09:56,"751 5th St, Los Angeles, CA 90001" +185447,iPhone,1,700,03/11/19 12:06,"308 6th St, Boston, MA 02215" +185448,27in FHD Monitor,1,149.99,03/16/19 19:48,"875 South St, Portland, OR 97035" +185449,Bose SoundSport Headphones,1,99.99,03/05/19 09:49,"421 Elm St, Los Angeles, CA 90001" +185450,Lightning Charging Cable,1,14.95,03/23/19 21:18,"47 9th St, Boston, MA 02215" +185451,AA Batteries (4-pack),2,3.84,03/08/19 18:41,"978 4th St, Atlanta, GA 30301" +185452,Wired Headphones,1,11.99,03/02/19 22:43,"340 1st St, Dallas, TX 75001" +185453,27in 4K Gaming Monitor,1,389.99,03/03/19 11:55,"644 Pine St, Portland, OR 97035" +185454,AAA Batteries (4-pack),1,2.99,03/31/19 22:28,"969 Hickory St, New York City, NY 10001" +185455,AAA Batteries (4-pack),1,2.99,03/10/19 11:29,"603 Spruce St, San Francisco, CA 94016" +185456,AAA Batteries (4-pack),1,2.99,03/14/19 19:07,"384 Park St, Portland, OR 97035" +185457,Lightning Charging Cable,1,14.95,03/11/19 20:16,"719 1st St, Los Angeles, CA 90001" +185458,Wired Headphones,1,11.99,03/12/19 18:14,"634 12th St, New York City, NY 10001" +185459,Wired Headphones,1,11.99,03/21/19 00:18,"325 Hill St, Los Angeles, CA 90001" +185460,Wired Headphones,1,11.99,03/25/19 18:37,"996 Hill St, Portland, OR 97035" +185461,Wired Headphones,1,11.99,03/28/19 18:34,"907 Lake St, Austin, TX 73301" +185462,Wired Headphones,1,11.99,03/25/19 00:15,"72 Ridge St, Austin, TX 73301" +185463,AA Batteries (4-pack),1,3.84,03/28/19 20:46,"830 Lakeview St, Boston, MA 02215" +185464,AA Batteries (4-pack),1,3.84,03/18/19 16:53,"950 Johnson St, Portland, OR 97035" +185465,iPhone,1,700,03/26/19 11:01,"196 Cedar St, Los Angeles, CA 90001" +185466,Lightning Charging Cable,1,14.95,03/31/19 12:29,"467 7th St, Atlanta, GA 30301" +185467,Bose SoundSport Headphones,1,99.99,03/12/19 17:23,"100 Lakeview St, Austin, TX 73301" +185468,Lightning Charging Cable,1,14.95,03/04/19 22:35,"530 Willow St, San Francisco, CA 94016" +185469,USB-C Charging Cable,1,11.95,03/29/19 14:39,"752 4th St, San Francisco, CA 94016" +185470,USB-C Charging Cable,1,11.95,03/28/19 09:06,"566 Johnson St, San Francisco, CA 94016" +185471,AAA Batteries (4-pack),1,2.99,03/15/19 11:08,"660 9th St, Dallas, TX 75001" +185472,Apple Airpods Headphones,1,150,03/22/19 19:33,"450 14th St, New York City, NY 10001" +185473,Apple Airpods Headphones,1,150,03/15/19 17:48,"281 Elm St, Portland, OR 97035" +185474,USB-C Charging Cable,1,11.95,03/06/19 00:27,"409 Cherry St, San Francisco, CA 94016" +185475,USB-C Charging Cable,1,11.95,03/28/19 19:03,"725 Elm St, Dallas, TX 75001" +185476,AA Batteries (4-pack),1,3.84,03/14/19 13:58,"210 Highland St, Boston, MA 02215" +185477,Lightning Charging Cable,1,14.95,03/29/19 09:55,"892 Lakeview St, San Francisco, CA 94016" +185478,USB-C Charging Cable,1,11.95,03/10/19 19:34,"943 Church St, San Francisco, CA 94016" +185479,AAA Batteries (4-pack),1,2.99,03/23/19 09:56,"785 South St, Atlanta, GA 30301" +185480,USB-C Charging Cable,1,11.95,03/13/19 23:23,"419 5th St, San Francisco, CA 94016" +185481,Flatscreen TV,1,300,03/30/19 12:36,"895 Center St, San Francisco, CA 94016" +185482,Wired Headphones,1,11.99,03/26/19 22:23,"734 Sunset St, New York City, NY 10001" +185483,iPhone,1,700,03/16/19 19:51,"361 Lake St, Los Angeles, CA 90001" +185484,AAA Batteries (4-pack),1,2.99,03/24/19 10:22,"685 14th St, San Francisco, CA 94016" +185485,USB-C Charging Cable,2,11.95,03/29/19 13:17,"114 Sunset St, New York City, NY 10001" +185486,AA Batteries (4-pack),1,3.84,03/25/19 20:38,"910 Lincoln St, Los Angeles, CA 90001" +185487,27in FHD Monitor,1,149.99,03/30/19 14:01,"374 14th St, Atlanta, GA 30301" +185488,Wired Headphones,1,11.99,03/04/19 19:40,"148 Meadow St, Los Angeles, CA 90001" +185489,LG Washing Machine,1,600.0,03/13/19 14:44,"819 Dogwood St, Los Angeles, CA 90001" +185490,34in Ultrawide Monitor,1,379.99,03/12/19 22:16,"305 7th St, New York City, NY 10001" +185491,iPhone,1,700,03/04/19 06:05,"639 Elm St, Atlanta, GA 30301" +185491,Lightning Charging Cable,1,14.95,03/04/19 06:05,"639 Elm St, Atlanta, GA 30301" +185491,Apple Airpods Headphones,1,150,03/04/19 06:05,"639 Elm St, Atlanta, GA 30301" +185491,USB-C Charging Cable,1,11.95,03/04/19 06:05,"639 Elm St, Atlanta, GA 30301" +185492,Apple Airpods Headphones,1,150,03/23/19 06:51,"824 8th St, San Francisco, CA 94016" +185493,AAA Batteries (4-pack),2,2.99,03/24/19 18:17,"401 Cedar St, Seattle, WA 98101" +185494,Wired Headphones,1,11.99,03/30/19 12:31,"791 8th St, San Francisco, CA 94016" +185495,Apple Airpods Headphones,1,150,03/01/19 20:43,"900 Ridge St, Boston, MA 02215" +185496,USB-C Charging Cable,1,11.95,03/30/19 12:24,"522 Cedar St, Los Angeles, CA 90001" +185497,Bose SoundSport Headphones,1,99.99,03/10/19 15:21,"412 Madison St, Dallas, TX 75001" +185498,Apple Airpods Headphones,1,150,03/21/19 19:21,"102 Elm St, Los Angeles, CA 90001" +185499,27in FHD Monitor,1,149.99,03/20/19 23:52,"862 Church St, Dallas, TX 75001" +185500,Lightning Charging Cable,1,14.95,03/19/19 12:07,"125 Spruce St, Dallas, TX 75001" +185501,AAA Batteries (4-pack),1,2.99,03/05/19 15:55,"4 Main St, New York City, NY 10001" +185502,AA Batteries (4-pack),3,3.84,03/09/19 08:59,"247 Maple St, San Francisco, CA 94016" +185503,iPhone,1,700,03/17/19 13:57,"334 10th St, Seattle, WA 98101" +185504,USB-C Charging Cable,1,11.95,03/23/19 09:35,"470 Cedar St, Boston, MA 02215" +185505,20in Monitor,1,109.99,03/21/19 18:58,"652 Dogwood St, San Francisco, CA 94016" +185506,Wired Headphones,1,11.99,03/15/19 18:25,"60 10th St, Atlanta, GA 30301" +185507,Apple Airpods Headphones,1,150,03/30/19 21:24,"839 Hickory St, New York City, NY 10001" +185508,AA Batteries (4-pack),1,3.84,03/25/19 20:05,"749 Forest St, Seattle, WA 98101" +185509,Lightning Charging Cable,1,14.95,03/13/19 11:27,"568 9th St, San Francisco, CA 94016" +185510,Wired Headphones,1,11.99,03/11/19 15:40,"465 Johnson St, San Francisco, CA 94016" +185511,LG Washing Machine,1,600.0,03/27/19 16:17,"565 13th St, Boston, MA 02215" +185512,USB-C Charging Cable,1,11.95,03/19/19 20:19,"881 Elm St, Atlanta, GA 30301" +185513,34in Ultrawide Monitor,1,379.99,03/09/19 19:49,"313 10th St, Boston, MA 02215" +185514,AA Batteries (4-pack),1,3.84,03/06/19 22:50,"414 North St, Los Angeles, CA 90001" +185515,Lightning Charging Cable,1,14.95,03/27/19 19:46,"107 4th St, Los Angeles, CA 90001" +185516,Apple Airpods Headphones,1,150,03/08/19 11:26,"593 Chestnut St, Atlanta, GA 30301" +185517,27in 4K Gaming Monitor,1,389.99,03/11/19 23:34,"792 Park St, Dallas, TX 75001" +185518,AAA Batteries (4-pack),1,2.99,03/07/19 21:47,"27 Willow St, Atlanta, GA 30301" +185519,AAA Batteries (4-pack),1,2.99,03/22/19 20:10,"458 Lincoln St, New York City, NY 10001" +185520,AA Batteries (4-pack),3,3.84,03/11/19 21:32,"35 Cedar St, Seattle, WA 98101" +185521,USB-C Charging Cable,1,11.95,03/05/19 10:38,"14 2nd St, Boston, MA 02215" +185522,Apple Airpods Headphones,1,150,03/20/19 00:32,"331 Highland St, New York City, NY 10001" +185523,AAA Batteries (4-pack),1,2.99,03/23/19 14:20,"509 Jefferson St, Boston, MA 02215" +185524,20in Monitor,1,109.99,03/17/19 08:46,"771 4th St, New York City, NY 10001" +185525,Lightning Charging Cable,1,14.95,03/15/19 06:59,"861 Hickory St, Austin, TX 73301" +185526,USB-C Charging Cable,1,11.95,03/24/19 08:55,"523 1st St, Atlanta, GA 30301" +185527,34in Ultrawide Monitor,1,379.99,03/18/19 08:39,"607 Walnut St, New York City, NY 10001" +185528,Apple Airpods Headphones,1,150,03/28/19 13:24,"30 Highland St, San Francisco, CA 94016" +185529,27in 4K Gaming Monitor,1,389.99,03/07/19 12:59,"98 Washington St, Seattle, WA 98101" +185530,AA Batteries (4-pack),2,3.84,03/30/19 18:45,"61 2nd St, Austin, TX 73301" +185531,AA Batteries (4-pack),1,3.84,03/08/19 17:43,"973 Willow St, San Francisco, CA 94016" +185532,34in Ultrawide Monitor,1,379.99,03/28/19 17:08,"94 Center St, Boston, MA 02215" +185533,AA Batteries (4-pack),2,3.84,03/02/19 19:36,"701 Meadow St, Boston, MA 02215" +185534,USB-C Charging Cable,1,11.95,03/20/19 16:24,"524 Church St, New York City, NY 10001" +185535,Lightning Charging Cable,1,14.95,03/12/19 14:39,"743 Cedar St, Boston, MA 02215" +185536,USB-C Charging Cable,1,11.95,03/01/19 12:12,"452 Park St, San Francisco, CA 94016" +185537,AA Batteries (4-pack),1,3.84,03/10/19 21:41,"275 4th St, Los Angeles, CA 90001" +185538,AAA Batteries (4-pack),1,2.99,03/17/19 20:37,"665 Wilson St, Atlanta, GA 30301" +185539,27in FHD Monitor,1,149.99,03/08/19 23:57,"737 4th St, Seattle, WA 98101" +185540,iPhone,1,700,03/09/19 06:40,"655 West St, Portland, ME 04101" +185541,Lightning Charging Cable,2,14.95,03/19/19 12:09,"750 Cherry St, San Francisco, CA 94016" +185542,AA Batteries (4-pack),1,3.84,03/06/19 18:47,"803 Willow St, New York City, NY 10001" +185543,AA Batteries (4-pack),1,3.84,03/16/19 09:59,"157 9th St, San Francisco, CA 94016" +185544,Lightning Charging Cable,2,14.95,03/16/19 16:54,"439 Cherry St, Portland, OR 97035" +185545,27in FHD Monitor,1,149.99,03/16/19 21:11,"606 Walnut St, San Francisco, CA 94016" +185546,Lightning Charging Cable,1,14.95,03/09/19 14:32,"627 Elm St, Los Angeles, CA 90001" +185547,iPhone,1,700,03/02/19 14:09,"231 Elm St, Los Angeles, CA 90001" +185547,Lightning Charging Cable,1,14.95,03/02/19 14:09,"231 Elm St, Los Angeles, CA 90001" +185548,Lightning Charging Cable,1,14.95,03/26/19 13:48,"856 Sunset St, Los Angeles, CA 90001" +185549,Apple Airpods Headphones,1,150,03/12/19 18:37,"275 Maple St, Dallas, TX 75001" +185550,Bose SoundSport Headphones,1,99.99,03/19/19 12:14,"308 Spruce St, Los Angeles, CA 90001" +185551,Wired Headphones,1,11.99,03/13/19 13:56,"85 Hickory St, Seattle, WA 98101" +185552,Lightning Charging Cable,1,14.95,03/11/19 09:12,"129 River St, Seattle, WA 98101" +185553,Lightning Charging Cable,1,14.95,03/18/19 22:00,"668 Cedar St, Boston, MA 02215" +185554,ThinkPad Laptop,1,999.99,03/25/19 21:33,"293 Cherry St, New York City, NY 10001" +185555,LG Dryer,1,600.0,03/06/19 10:41,"235 5th St, Boston, MA 02215" +185556,Wired Headphones,1,11.99,03/05/19 14:15,"262 Cedar St, New York City, NY 10001" +185557,Wired Headphones,1,11.99,03/06/19 07:26,"799 Sunset St, San Francisco, CA 94016" +185558,Wired Headphones,1,11.99,03/13/19 21:22,"467 Pine St, San Francisco, CA 94016" +185559,Wired Headphones,1,11.99,03/17/19 10:49,"448 Center St, Boston, MA 02215" +185560,iPhone,1,700,03/16/19 13:06,"379 9th St, Los Angeles, CA 90001" +185561,34in Ultrawide Monitor,1,379.99,03/11/19 17:44,"450 Highland St, Boston, MA 02215" +185562,ThinkPad Laptop,1,999.99,03/10/19 20:20,"958 13th St, New York City, NY 10001" +185563,Bose SoundSport Headphones,1,99.99,03/09/19 11:50,"203 River St, New York City, NY 10001" +185564,27in 4K Gaming Monitor,1,389.99,03/28/19 21:31,"144 Washington St, Los Angeles, CA 90001" +185565,iPhone,1,700,03/20/19 10:59,"683 Johnson St, Austin, TX 73301" +185566,27in FHD Monitor,1,149.99,03/09/19 19:10,"38 River St, Atlanta, GA 30301" +185567,Lightning Charging Cable,3,14.95,03/25/19 21:27,"582 Sunset St, Atlanta, GA 30301" +185568,27in FHD Monitor,1,149.99,03/08/19 07:08,"621 14th St, Boston, MA 02215" +185569,Lightning Charging Cable,1,14.95,03/01/19 10:33,"398 7th St, New York City, NY 10001" +185570,Macbook Pro Laptop,1,1700,03/30/19 08:42,"813 Washington St, San Francisco, CA 94016" +185571,AA Batteries (4-pack),5,3.84,03/08/19 20:13,"545 Pine St, Atlanta, GA 30301" +185572,27in FHD Monitor,1,149.99,03/24/19 09:05,"639 Dogwood St, Dallas, TX 75001" +185573,AAA Batteries (4-pack),3,2.99,03/15/19 17:48,"195 Elm St, Atlanta, GA 30301" +185574,Flatscreen TV,1,300,03/17/19 13:16,"590 Jefferson St, Los Angeles, CA 90001" +185575,Wired Headphones,1,11.99,03/08/19 13:12,"110 Cedar St, Los Angeles, CA 90001" +185576,AA Batteries (4-pack),1,3.84,03/25/19 15:22,"757 Spruce St, New York City, NY 10001" +185577,AA Batteries (4-pack),2,3.84,03/12/19 18:00,"958 Wilson St, Dallas, TX 75001" +185578,AA Batteries (4-pack),1,3.84,03/04/19 20:58,"297 Pine St, Boston, MA 02215" +185579,Apple Airpods Headphones,1,150,03/13/19 21:10,"694 South St, Portland, OR 97035" +185580,Wired Headphones,1,11.99,03/29/19 12:25,"951 Highland St, Atlanta, GA 30301" +185581,Bose SoundSport Headphones,1,99.99,03/22/19 11:54,"535 Johnson St, Los Angeles, CA 90001" +185582,Bose SoundSport Headphones,1,99.99,03/22/19 19:26,"149 1st St, Boston, MA 02215" +185583,Lightning Charging Cable,1,14.95,03/03/19 10:16,"34 Lake St, San Francisco, CA 94016" +185584,Apple Airpods Headphones,1,150,03/13/19 18:26,"543 Hickory St, Atlanta, GA 30301" +185585,Apple Airpods Headphones,1,150,03/12/19 13:50,"227 Hill St, Atlanta, GA 30301" +185586,Macbook Pro Laptop,1,1700,03/17/19 09:29,"22 9th St, Boston, MA 02215" +185586,Bose SoundSport Headphones,1,99.99,03/17/19 09:29,"22 9th St, Boston, MA 02215" +185587,34in Ultrawide Monitor,1,379.99,03/23/19 19:28,"293 Sunset St, New York City, NY 10001" +185588,Bose SoundSport Headphones,1,99.99,03/03/19 02:14,"296 12th St, San Francisco, CA 94016" +185589,27in FHD Monitor,1,149.99,03/20/19 17:44,"383 Forest St, Seattle, WA 98101" +185589,27in 4K Gaming Monitor,1,389.99,03/20/19 17:44,"383 Forest St, Seattle, WA 98101" +185590,27in 4K Gaming Monitor,1,389.99,03/23/19 10:56,"361 Lincoln St, San Francisco, CA 94016" +185591,27in FHD Monitor,1,149.99,03/02/19 10:44,"138 11th St, Los Angeles, CA 90001" +185592,AA Batteries (4-pack),3,3.84,03/28/19 20:47,"158 12th St, New York City, NY 10001" +185593,Lightning Charging Cable,1,14.95,03/01/19 14:50,"413 13th St, Los Angeles, CA 90001" +185594,Google Phone,1,600,03/24/19 17:47,"518 Lakeview St, Seattle, WA 98101" +185594,Wired Headphones,1,11.99,03/24/19 17:47,"518 Lakeview St, Seattle, WA 98101" +185595,AAA Batteries (4-pack),1,2.99,03/21/19 16:33,"554 Jackson St, Dallas, TX 75001" +185596,Google Phone,1,600,03/27/19 11:45,"881 7th St, New York City, NY 10001" +185596,USB-C Charging Cable,1,11.95,03/27/19 11:45,"881 7th St, New York City, NY 10001" +185597,Google Phone,1,600,03/17/19 18:13,"336 Madison St, Dallas, TX 75001" +185597,USB-C Charging Cable,1,11.95,03/17/19 18:13,"336 Madison St, Dallas, TX 75001" +185598,AA Batteries (4-pack),1,3.84,03/11/19 18:49,"300 Lakeview St, Atlanta, GA 30301" +185599,Bose SoundSport Headphones,1,99.99,03/22/19 17:23,"221 Spruce St, Austin, TX 73301" +185600,Macbook Pro Laptop,1,1700,03/23/19 14:23,"165 Walnut St, Dallas, TX 75001" +185601,Apple Airpods Headphones,1,150,03/29/19 20:07,"39 River St, New York City, NY 10001" +185602,AA Batteries (4-pack),1,3.84,03/03/19 14:36,"424 Ridge St, Portland, OR 97035" +185603,Lightning Charging Cable,1,14.95,03/03/19 13:15,"58 Forest St, Portland, OR 97035" +185604,AAA Batteries (4-pack),1,2.99,03/18/19 16:21,"516 10th St, Seattle, WA 98101" +185605,AAA Batteries (4-pack),1,2.99,03/20/19 11:02,"324 Main St, Boston, MA 02215" +185606,USB-C Charging Cable,1,11.95,03/07/19 00:09,"303 Lakeview St, Atlanta, GA 30301" +185607,Apple Airpods Headphones,1,150,03/05/19 20:13,"53 4th St, Seattle, WA 98101" +185608,Lightning Charging Cable,1,14.95,03/24/19 23:15,"737 7th St, Boston, MA 02215" +185609,Wired Headphones,1,11.99,03/22/19 18:20,"650 Elm St, Los Angeles, CA 90001" +185610,Lightning Charging Cable,1,14.95,03/05/19 12:05,"86 Meadow St, Portland, OR 97035" +185611,AA Batteries (4-pack),2,3.84,03/09/19 20:05,"783 Highland St, Seattle, WA 98101" +185612,AA Batteries (4-pack),1,3.84,03/29/19 23:21,"678 Spruce St, New York City, NY 10001" +185613,20in Monitor,1,109.99,03/22/19 23:26,"762 Park St, Dallas, TX 75001" +185614,Lightning Charging Cable,1,14.95,03/04/19 13:15,"87 Jackson St, New York City, NY 10001" +185614,iPhone,1,700,03/04/19 13:15,"87 Jackson St, New York City, NY 10001" +185615,27in FHD Monitor,1,149.99,03/18/19 23:19,"100 River St, Los Angeles, CA 90001" +185616,Wired Headphones,1,11.99,03/20/19 10:39,"588 Forest St, Seattle, WA 98101" +185617,USB-C Charging Cable,1,11.95,03/04/19 20:09,"195 2nd St, Dallas, TX 75001" +185618,AAA Batteries (4-pack),2,2.99,03/02/19 20:41,"884 Park St, Dallas, TX 75001" +185619,AAA Batteries (4-pack),1,2.99,03/06/19 17:35,"914 Elm St, San Francisco, CA 94016" +185620,Lightning Charging Cable,1,14.95,03/18/19 21:23,"644 Jefferson St, San Francisco, CA 94016" +185621,Wired Headphones,1,11.99,03/24/19 07:42,"68 Forest St, Austin, TX 73301" +185622,Apple Airpods Headphones,1,150,03/31/19 20:17,"638 Maple St, Seattle, WA 98101" +185623,AAA Batteries (4-pack),2,2.99,03/21/19 16:04,"134 Cedar St, Los Angeles, CA 90001" +185624,Apple Airpods Headphones,1,150,03/30/19 08:23,"147 11th St, Dallas, TX 75001" +185625,27in FHD Monitor,1,149.99,03/07/19 20:05,"611 Lake St, Boston, MA 02215" +185626,AAA Batteries (4-pack),1,2.99,03/04/19 13:40,"819 4th St, New York City, NY 10001" +185627,Macbook Pro Laptop,1,1700,03/16/19 09:56,"981 6th St, San Francisco, CA 94016" +185628,AA Batteries (4-pack),1,3.84,03/24/19 19:39,"818 5th St, Seattle, WA 98101" +185629,Bose SoundSport Headphones,1,99.99,03/05/19 16:30,"285 Sunset St, San Francisco, CA 94016" +185630,Macbook Pro Laptop,1,1700,03/24/19 00:23,"100 South St, New York City, NY 10001" +185631,USB-C Charging Cable,1,11.95,03/29/19 22:11,"909 Adams St, New York City, NY 10001" +185632,Apple Airpods Headphones,1,150,03/06/19 23:06,"184 Pine St, Dallas, TX 75001" +185633,Wired Headphones,1,11.99,03/13/19 06:14,"692 Jefferson St, Seattle, WA 98101" +185634,USB-C Charging Cable,1,11.95,03/26/19 05:22,"488 9th St, Seattle, WA 98101" +185635,Lightning Charging Cable,2,14.95,03/04/19 08:46,"151 Madison St, Dallas, TX 75001" +185636,AA Batteries (4-pack),1,3.84,03/08/19 03:40,"311 2nd St, Portland, OR 97035" +185637,27in FHD Monitor,1,149.99,03/17/19 12:19,"317 Ridge St, Portland, OR 97035" +185638,AA Batteries (4-pack),2,3.84,03/29/19 18:07,"123 Wilson St, New York City, NY 10001" +185639,AA Batteries (4-pack),1,3.84,03/29/19 19:20,"424 8th St, New York City, NY 10001" +185640,AAA Batteries (4-pack),1,2.99,03/21/19 22:03,"771 Wilson St, San Francisco, CA 94016" +185641,AA Batteries (4-pack),3,3.84,03/20/19 22:00,"277 7th St, Boston, MA 02215" +185642,Lightning Charging Cable,1,14.95,03/30/19 11:51,"577 12th St, Atlanta, GA 30301" +185643,ThinkPad Laptop,1,999.99,03/27/19 12:32,"925 Meadow St, Portland, OR 97035" +185644,Lightning Charging Cable,1,14.95,03/11/19 23:56,"289 Forest St, New York City, NY 10001" +185645,Macbook Pro Laptop,1,1700,03/21/19 15:17,"892 Forest St, San Francisco, CA 94016" +185646,Wired Headphones,1,11.99,03/16/19 22:12,"372 5th St, Boston, MA 02215" +185647,AA Batteries (4-pack),1,3.84,03/24/19 18:00,"942 Maple St, New York City, NY 10001" +185648,USB-C Charging Cable,2,11.95,03/26/19 06:57,"188 Johnson St, Los Angeles, CA 90001" +185649,34in Ultrawide Monitor,1,379.99,03/05/19 21:05,"92 Forest St, Atlanta, GA 30301" +185650,AA Batteries (4-pack),1,3.84,03/02/19 10:31,"109 11th St, Atlanta, GA 30301" +185651,AAA Batteries (4-pack),1,2.99,03/17/19 23:37,"366 1st St, Boston, MA 02215" +185652,27in FHD Monitor,1,149.99,03/09/19 17:02,"890 12th St, Austin, TX 73301" +185653,34in Ultrawide Monitor,1,379.99,03/13/19 10:42,"655 South St, Seattle, WA 98101" +,,,,, +185654,Apple Airpods Headphones,1,150,03/30/19 22:53,"865 Hill St, San Francisco, CA 94016" +185655,AAA Batteries (4-pack),1,2.99,03/01/19 10:27,"123 Adams St, San Francisco, CA 94016" +185656,Wired Headphones,1,11.99,03/31/19 15:35,"770 11th St, Boston, MA 02215" +185657,Lightning Charging Cable,1,14.95,03/08/19 19:54,"598 7th St, New York City, NY 10001" +185658,LG Dryer,1,600.0,03/29/19 14:56,"498 Lakeview St, Atlanta, GA 30301" +185659,AA Batteries (4-pack),1,3.84,03/29/19 17:42,"778 Elm St, Austin, TX 73301" +185660,Wired Headphones,1,11.99,03/08/19 16:23,"393 North St, San Francisco, CA 94016" +185661,iPhone,1,700,03/16/19 22:40,"350 8th St, Austin, TX 73301" +185662,20in Monitor,1,109.99,03/26/19 11:14,"853 Park St, San Francisco, CA 94016" +185663,Macbook Pro Laptop,1,1700,03/14/19 13:55,"774 Walnut St, Portland, OR 97035" +185664,USB-C Charging Cable,1,11.95,03/26/19 16:34,"639 Adams St, Los Angeles, CA 90001" +185665,Wired Headphones,1,11.99,03/19/19 08:17,"392 Park St, San Francisco, CA 94016" +185666,AAA Batteries (4-pack),2,2.99,03/15/19 13:28,"892 Main St, Los Angeles, CA 90001" +185667,Wired Headphones,1,11.99,03/06/19 12:26,"352 7th St, San Francisco, CA 94016" +185668,Wired Headphones,1,11.99,03/11/19 07:32,"593 Center St, Portland, OR 97035" +185669,ThinkPad Laptop,1,999.99,03/25/19 13:32,"659 8th St, Portland, ME 04101" +185670,Apple Airpods Headphones,1,150,03/25/19 13:08,"705 1st St, San Francisco, CA 94016" +185671,AAA Batteries (4-pack),1,2.99,03/14/19 22:35,"1 North St, San Francisco, CA 94016" +185672,Apple Airpods Headphones,1,150,03/19/19 10:58,"468 Johnson St, Dallas, TX 75001" +185673,USB-C Charging Cable,1,11.95,03/26/19 19:59,"65 7th St, Portland, OR 97035" +185674,Lightning Charging Cable,1,14.95,03/25/19 15:48,"917 Maple St, San Francisco, CA 94016" +185675,34in Ultrawide Monitor,1,379.99,03/18/19 18:42,"955 Forest St, San Francisco, CA 94016" +185676,Wired Headphones,1,11.99,03/08/19 14:49,"37 Center St, Austin, TX 73301" +185677,Lightning Charging Cable,1,14.95,03/09/19 23:20,"384 Wilson St, Austin, TX 73301" +185678,AA Batteries (4-pack),1,3.84,03/06/19 19:59,"880 Willow St, San Francisco, CA 94016" +185679,Lightning Charging Cable,1,14.95,03/25/19 20:28,"476 Madison St, Los Angeles, CA 90001" +185680,USB-C Charging Cable,2,11.95,03/06/19 08:21,"182 Center St, New York City, NY 10001" +185681,AAA Batteries (4-pack),2,2.99,03/27/19 20:15,"972 10th St, Atlanta, GA 30301" +185682,Wired Headphones,1,11.99,03/13/19 18:45,"579 Pine St, San Francisco, CA 94016" +185683,Apple Airpods Headphones,1,150,03/27/19 11:45,"367 5th St, Dallas, TX 75001" +185684,AA Batteries (4-pack),1,3.84,03/08/19 00:32,"513 North St, Portland, ME 04101" +185685,Wired Headphones,1,11.99,03/03/19 15:37,"469 14th St, San Francisco, CA 94016" +185686,Bose SoundSport Headphones,1,99.99,03/08/19 13:49,"552 Johnson St, San Francisco, CA 94016" +185687,Lightning Charging Cable,1,14.95,03/06/19 07:53,"981 North St, Boston, MA 02215" +185688,27in FHD Monitor,1,149.99,03/18/19 17:06,"746 Walnut St, Dallas, TX 75001" +185689,Bose SoundSport Headphones,1,99.99,03/04/19 19:17,"106 1st St, Boston, MA 02215" +185690,Wired Headphones,1,11.99,03/12/19 06:56,"497 Maple St, Los Angeles, CA 90001" +185691,Wired Headphones,1,11.99,03/07/19 20:32,"128 Washington St, Dallas, TX 75001" +185692,Lightning Charging Cable,1,14.95,03/11/19 04:56,"690 12th St, San Francisco, CA 94016" +185693,Macbook Pro Laptop,1,1700,03/07/19 12:31,"643 Walnut St, New York City, NY 10001" +185694,Flatscreen TV,1,300,03/15/19 19:53,"937 8th St, Los Angeles, CA 90001" +185695,Wired Headphones,1,11.99,03/19/19 17:48,"107 2nd St, Los Angeles, CA 90001" +185696,27in FHD Monitor,1,149.99,03/15/19 21:44,"553 14th St, Portland, ME 04101" +185697,Macbook Pro Laptop,1,1700,03/01/19 15:10,"904 13th St, Seattle, WA 98101" +185698,Flatscreen TV,1,300,03/25/19 08:18,"437 Lakeview St, San Francisco, CA 94016" +185699,34in Ultrawide Monitor,1,379.99,03/14/19 13:00,"270 South St, San Francisco, CA 94016" +185700,Google Phone,1,600,03/14/19 11:57,"256 12th St, Los Angeles, CA 90001" +185701,Lightning Charging Cable,1,14.95,03/05/19 21:02,"547 Sunset St, Portland, OR 97035" +185702,USB-C Charging Cable,1,11.95,03/28/19 14:50,"425 1st St, Portland, OR 97035" +185703,AA Batteries (4-pack),1,3.84,03/09/19 22:44,"130 4th St, San Francisco, CA 94016" +185704,AA Batteries (4-pack),1,3.84,03/18/19 17:36,"322 Center St, Boston, MA 02215" +185705,iPhone,1,700,03/26/19 19:55,"229 Forest St, New York City, NY 10001" +185705,Lightning Charging Cable,1,14.95,03/26/19 19:55,"229 Forest St, New York City, NY 10001" +185706,AA Batteries (4-pack),1,3.84,03/17/19 17:30,"599 Lakeview St, San Francisco, CA 94016" +185706,iPhone,1,700,03/17/19 17:30,"599 Lakeview St, San Francisco, CA 94016" +185707,34in Ultrawide Monitor,1,379.99,03/13/19 08:50,"889 Forest St, Los Angeles, CA 90001" +185708,AA Batteries (4-pack),1,3.84,03/19/19 14:40,"235 Cherry St, Atlanta, GA 30301" +185709,Bose SoundSport Headphones,1,99.99,03/12/19 00:47,"911 Spruce St, Los Angeles, CA 90001" +185710,USB-C Charging Cable,1,11.95,03/05/19 21:41,"309 8th St, Seattle, WA 98101" +185711,Macbook Pro Laptop,1,1700,03/21/19 08:59,"610 Chestnut St, Austin, TX 73301" +185712,AAA Batteries (4-pack),1,2.99,03/11/19 14:50,"521 Johnson St, New York City, NY 10001" +185713,Apple Airpods Headphones,1,150,03/15/19 09:41,"356 Willow St, Dallas, TX 75001" +185714,Apple Airpods Headphones,1,150,03/19/19 19:06,"529 Lincoln St, San Francisco, CA 94016" +185715,Apple Airpods Headphones,1,150,03/11/19 18:55,"593 Forest St, San Francisco, CA 94016" +185716,Wired Headphones,1,11.99,03/31/19 01:35,"465 South St, San Francisco, CA 94016" +185717,AAA Batteries (4-pack),3,2.99,03/04/19 13:56,"905 Hill St, New York City, NY 10001" +185718,27in FHD Monitor,1,149.99,03/31/19 00:21,"45 7th St, Boston, MA 02215" +185719,USB-C Charging Cable,1,11.95,03/27/19 18:39,"753 8th St, New York City, NY 10001" +185720,27in FHD Monitor,1,149.99,03/15/19 12:13,"377 North St, San Francisco, CA 94016" +185721,AA Batteries (4-pack),2,3.84,03/24/19 20:57,"548 North St, Los Angeles, CA 90001" +185722,iPhone,1,700,03/08/19 08:24,"84 Hickory St, San Francisco, CA 94016" +185723,Flatscreen TV,1,300,03/02/19 14:35,"984 Highland St, Atlanta, GA 30301" +185724,AAA Batteries (4-pack),3,2.99,03/30/19 16:55,"963 Wilson St, Dallas, TX 75001" +185725,34in Ultrawide Monitor,1,379.99,03/10/19 11:37,"425 Church St, Boston, MA 02215" +185726,AA Batteries (4-pack),1,3.84,03/05/19 16:45,"496 Madison St, Seattle, WA 98101" +185727,Lightning Charging Cable,1,14.95,03/07/19 08:29,"80 Spruce St, San Francisco, CA 94016" +185728,AA Batteries (4-pack),3,3.84,03/10/19 19:39,"906 River St, Los Angeles, CA 90001" +185729,AA Batteries (4-pack),2,3.84,03/18/19 09:05,"919 Adams St, Atlanta, GA 30301" +185730,AAA Batteries (4-pack),2,2.99,03/09/19 18:01,"834 13th St, Austin, TX 73301" +185731,iPhone,1,700,03/22/19 10:54,"482 Washington St, Los Angeles, CA 90001" +185732,AAA Batteries (4-pack),3,2.99,03/02/19 09:56,"844 Adams St, Boston, MA 02215" +185733,Vareebadd Phone,1,400,03/04/19 18:06,"588 Hickory St, New York City, NY 10001" +185733,USB-C Charging Cable,1,11.95,03/04/19 18:06,"588 Hickory St, New York City, NY 10001" +185734,Google Phone,1,600,03/17/19 07:22,"45 2nd St, Dallas, TX 75001" +185735,AAA Batteries (4-pack),1,2.99,03/25/19 15:17,"98 Adams St, San Francisco, CA 94016" +185736,AA Batteries (4-pack),2,3.84,03/27/19 14:31,"648 Lincoln St, New York City, NY 10001" +185737,AAA Batteries (4-pack),1,2.99,03/18/19 00:08,"404 Forest St, Atlanta, GA 30301" +185738,27in 4K Gaming Monitor,1,389.99,03/04/19 14:28,"403 Jackson St, Austin, TX 73301" +185739,Lightning Charging Cable,1,14.95,03/30/19 08:31,"358 Forest St, New York City, NY 10001" +185740,Bose SoundSport Headphones,1,99.99,03/09/19 15:19,"232 7th St, Los Angeles, CA 90001" +185741,27in FHD Monitor,1,149.99,03/22/19 14:13,"932 Pine St, Portland, OR 97035" +185742,AA Batteries (4-pack),1,3.84,03/31/19 19:43,"490 4th St, Los Angeles, CA 90001" +185743,Flatscreen TV,1,300,03/28/19 11:10,"22 Park St, Austin, TX 73301" +185744,Wired Headphones,1,11.99,03/24/19 23:18,"507 West St, San Francisco, CA 94016" +185745,Wired Headphones,2,11.99,03/17/19 16:41,"76 Main St, Atlanta, GA 30301" +185746,Lightning Charging Cable,1,14.95,03/22/19 21:01,"14 Cherry St, Boston, MA 02215" +185747,AA Batteries (4-pack),3,3.84,03/24/19 16:58,"121 Forest St, San Francisco, CA 94016" +185748,USB-C Charging Cable,2,11.95,03/07/19 09:45,"304 South St, Austin, TX 73301" +185749,Vareebadd Phone,1,400,03/22/19 22:41,"940 Hickory St, Los Angeles, CA 90001" +185750,ThinkPad Laptop,1,999.99,03/05/19 19:13,"226 Pine St, Dallas, TX 75001" +185751,Wired Headphones,1,11.99,03/06/19 11:59,"640 Adams St, Boston, MA 02215" +185752,Lightning Charging Cable,1,14.95,03/29/19 10:18,"943 Cherry St, Boston, MA 02215" +185753,Macbook Pro Laptop,1,1700,03/31/19 19:48,"119 Ridge St, New York City, NY 10001" +185753,34in Ultrawide Monitor,1,379.99,03/31/19 19:48,"119 Ridge St, New York City, NY 10001" +185754,27in FHD Monitor,1,149.99,03/02/19 12:33,"921 Hill St, Los Angeles, CA 90001" +185755,Lightning Charging Cable,1,14.95,03/20/19 16:59,"502 Meadow St, Boston, MA 02215" +185756,Apple Airpods Headphones,1,150,03/03/19 08:44,"107 Johnson St, San Francisco, CA 94016" +185757,AAA Batteries (4-pack),1,2.99,03/26/19 11:38,"876 5th St, Boston, MA 02215" +185758,Apple Airpods Headphones,1,150,03/14/19 22:14,"90 5th St, San Francisco, CA 94016" +185759,Apple Airpods Headphones,1,150,03/10/19 13:47,"501 Jefferson St, Seattle, WA 98101" +185760,AA Batteries (4-pack),1,3.84,03/21/19 20:45,"239 2nd St, New York City, NY 10001" +185761,Apple Airpods Headphones,1,150,03/27/19 20:28,"543 West St, Boston, MA 02215" +185762,Flatscreen TV,1,300,03/19/19 18:42,"658 West St, San Francisco, CA 94016" +185763,Apple Airpods Headphones,1,150,03/03/19 19:21,"173 12th St, Los Angeles, CA 90001" +185764,Google Phone,1,600,03/22/19 13:33,"18 6th St, San Francisco, CA 94016" +185765,Apple Airpods Headphones,1,150,03/14/19 11:06,"646 Lakeview St, Los Angeles, CA 90001" +185766,Wired Headphones,1,11.99,03/05/19 15:41,"235 Ridge St, Austin, TX 73301" +185767,Wired Headphones,2,11.99,03/16/19 11:47,"60 2nd St, New York City, NY 10001" +185768,iPhone,1,700,03/11/19 22:53,"362 Highland St, Austin, TX 73301" +185768,Lightning Charging Cable,1,14.95,03/11/19 22:53,"362 Highland St, Austin, TX 73301" +185769,AA Batteries (4-pack),1,3.84,03/20/19 16:51,"473 Sunset St, Seattle, WA 98101" +185770,Lightning Charging Cable,1,14.95,03/05/19 20:44,"916 Cedar St, San Francisco, CA 94016" +185771,AA Batteries (4-pack),1,3.84,03/15/19 12:57,"438 12th St, Los Angeles, CA 90001" +185772,Bose SoundSport Headphones,1,99.99,03/18/19 23:06,"452 Cedar St, Portland, OR 97035" +185773,Lightning Charging Cable,1,14.95,03/26/19 20:06,"8 Lakeview St, Seattle, WA 98101" +185774,Bose SoundSport Headphones,1,99.99,03/16/19 15:43,"975 Cedar St, San Francisco, CA 94016" +185775,iPhone,1,700,03/24/19 17:43,"215 Main St, Portland, OR 97035" +185776,USB-C Charging Cable,1,11.95,03/06/19 01:06,"551 West St, Los Angeles, CA 90001" +185777,USB-C Charging Cable,3,11.95,03/04/19 16:18,"938 Hickory St, Boston, MA 02215" +185778,34in Ultrawide Monitor,1,379.99,03/05/19 20:45,"261 Dogwood St, New York City, NY 10001" +185778,USB-C Charging Cable,1,11.95,03/05/19 20:45,"261 Dogwood St, New York City, NY 10001" +185779,Apple Airpods Headphones,1,150,03/08/19 18:54,"698 West St, Los Angeles, CA 90001" +185780,AA Batteries (4-pack),1,3.84,03/24/19 09:26,"69 Lake St, Portland, OR 97035" +185781,34in Ultrawide Monitor,1,379.99,03/15/19 14:56,"195 South St, Austin, TX 73301" +185782,AA Batteries (4-pack),1,3.84,03/15/19 18:11,"425 Lakeview St, Boston, MA 02215" +185783,Google Phone,1,600,03/27/19 20:35,"942 Madison St, San Francisco, CA 94016" +185783,USB-C Charging Cable,1,11.95,03/27/19 20:35,"942 Madison St, San Francisco, CA 94016" +185784,Apple Airpods Headphones,1,150,03/18/19 12:05,"752 Meadow St, Seattle, WA 98101" +185785,AA Batteries (4-pack),1,3.84,03/17/19 13:42,"255 Highland St, Austin, TX 73301" +185786,Bose SoundSport Headphones,1,99.99,03/27/19 11:16,"246 4th St, Los Angeles, CA 90001" +185787,USB-C Charging Cable,2,11.95,03/08/19 14:24,"476 Park St, San Francisco, CA 94016" +185788,USB-C Charging Cable,1,11.95,03/10/19 23:00,"53 Pine St, Los Angeles, CA 90001" +185789,Lightning Charging Cable,1,14.95,03/16/19 13:36,"616 14th St, Portland, ME 04101" +185790,AA Batteries (4-pack),1,3.84,03/04/19 09:25,"844 2nd St, Boston, MA 02215" +185791,USB-C Charging Cable,1,11.95,03/19/19 19:20,"65 Cherry St, New York City, NY 10001" +185792,Wired Headphones,1,11.99,03/03/19 17:06,"329 8th St, Atlanta, GA 30301" +185793,Lightning Charging Cable,1,14.95,03/29/19 22:17,"659 South St, San Francisco, CA 94016" +185794,USB-C Charging Cable,1,11.95,03/21/19 20:08,"892 Washington St, Boston, MA 02215" +185795,34in Ultrawide Monitor,1,379.99,03/31/19 13:04,"484 Johnson St, Boston, MA 02215" +185796,Apple Airpods Headphones,1,150,03/30/19 14:23,"821 6th St, Portland, OR 97035" +185797,27in 4K Gaming Monitor,1,389.99,03/28/19 09:16,"844 Hickory St, Los Angeles, CA 90001" +185798,Google Phone,1,600,03/05/19 14:48,"481 6th St, Atlanta, GA 30301" +185799,Wired Headphones,1,11.99,03/02/19 19:42,"704 Center St, Los Angeles, CA 90001" +185800,Lightning Charging Cable,1,14.95,03/03/19 07:45,"644 Lake St, Los Angeles, CA 90001" +185801,Bose SoundSport Headphones,1,99.99,03/16/19 07:14,"989 14th St, Seattle, WA 98101" +185802,Wired Headphones,1,11.99,03/04/19 18:52,"166 11th St, San Francisco, CA 94016" +185803,20in Monitor,1,109.99,03/21/19 09:38,"987 Wilson St, Seattle, WA 98101" +185804,Lightning Charging Cable,1,14.95,03/05/19 11:11,"117 Madison St, Seattle, WA 98101" +185805,27in FHD Monitor,1,149.99,03/20/19 17:56,"248 West St, New York City, NY 10001" +185806,ThinkPad Laptop,1,999.99,03/21/19 19:45,"588 Center St, Seattle, WA 98101" +185807,AAA Batteries (4-pack),1,2.99,03/06/19 18:20,"721 West St, San Francisco, CA 94016" +185808,Apple Airpods Headphones,1,150,03/25/19 17:05,"510 Lakeview St, Dallas, TX 75001" +185809,27in FHD Monitor,1,149.99,03/02/19 15:31,"750 Cherry St, San Francisco, CA 94016" +185810,Bose SoundSport Headphones,1,99.99,03/18/19 13:43,"153 Walnut St, Dallas, TX 75001" +185811,AA Batteries (4-pack),2,3.84,03/06/19 11:53,"693 13th St, Boston, MA 02215" +185812,USB-C Charging Cable,1,11.95,03/14/19 11:54,"217 River St, Boston, MA 02215" +185813,20in Monitor,1,109.99,03/15/19 15:22,"296 Jackson St, San Francisco, CA 94016" +185814,Bose SoundSport Headphones,1,99.99,03/31/19 20:42,"878 Jackson St, Atlanta, GA 30301" +185815,Flatscreen TV,1,300,03/21/19 11:08,"475 Cedar St, San Francisco, CA 94016" +185816,USB-C Charging Cable,1,11.95,03/23/19 08:52,"249 9th St, Seattle, WA 98101" +185817,Wired Headphones,1,11.99,03/28/19 16:00,"581 Main St, Boston, MA 02215" +185818,AA Batteries (4-pack),1,3.84,03/23/19 19:13,"943 Hill St, New York City, NY 10001" +185819,27in FHD Monitor,1,149.99,03/27/19 21:36,"597 Elm St, Los Angeles, CA 90001" +185820,Bose SoundSport Headphones,1,99.99,03/09/19 11:20,"904 6th St, San Francisco, CA 94016" +185821,Macbook Pro Laptop,1,1700,03/19/19 00:41,"556 6th St, San Francisco, CA 94016" +185822,34in Ultrawide Monitor,1,379.99,03/25/19 22:18,"781 1st St, Austin, TX 73301" +185823,iPhone,1,700,03/13/19 12:16,"801 Cherry St, Dallas, TX 75001" +185823,Lightning Charging Cable,1,14.95,03/13/19 12:16,"801 Cherry St, Dallas, TX 75001" +185824,Lightning Charging Cable,1,14.95,03/27/19 13:07,"409 Hickory St, Los Angeles, CA 90001" +185825,AA Batteries (4-pack),2,3.84,03/22/19 06:04,"463 7th St, Boston, MA 02215" +185826,Lightning Charging Cable,1,14.95,03/24/19 22:00,"749 Church St, San Francisco, CA 94016" +185827,Apple Airpods Headphones,1,150,03/10/19 18:14,"249 7th St, San Francisco, CA 94016" +185828,27in FHD Monitor,1,149.99,03/10/19 13:48,"830 Lake St, Austin, TX 73301" +185829,Apple Airpods Headphones,1,150,03/09/19 14:16,"856 Pine St, Portland, ME 04101" +185830,USB-C Charging Cable,1,11.95,03/21/19 19:03,"413 8th St, Los Angeles, CA 90001" +185831,iPhone,1,700,03/14/19 10:03,"453 Madison St, Atlanta, GA 30301" +185832,Wired Headphones,1,11.99,03/16/19 12:55,"793 11th St, New York City, NY 10001" +185833,Lightning Charging Cable,1,14.95,03/03/19 09:16,"126 Meadow St, Atlanta, GA 30301" +185834,Apple Airpods Headphones,1,150,03/01/19 15:46,"248 Park St, Los Angeles, CA 90001" +185835,Bose SoundSport Headphones,1,99.99,03/02/19 08:26,"521 Elm St, New York City, NY 10001" +185836,Wired Headphones,2,11.99,03/13/19 10:31,"993 6th St, Boston, MA 02215" +185837,Apple Airpods Headphones,1,150,03/31/19 18:49,"236 13th St, San Francisco, CA 94016" +185838,Lightning Charging Cable,1,14.95,03/06/19 17:23,"971 Forest St, Seattle, WA 98101" +185839,AAA Batteries (4-pack),2,2.99,03/14/19 13:07,"439 Wilson St, San Francisco, CA 94016" +185840,Apple Airpods Headphones,1,150,03/05/19 20:46,"972 Jefferson St, Boston, MA 02215" +185841,AA Batteries (4-pack),2,3.84,03/14/19 00:40,"967 5th St, Atlanta, GA 30301" +185842,27in FHD Monitor,1,149.99,03/25/19 18:46,"364 5th St, San Francisco, CA 94016" +185843,Lightning Charging Cable,1,14.95,03/29/19 23:02,"582 9th St, San Francisco, CA 94016" +185844,Bose SoundSport Headphones,1,99.99,03/10/19 21:12,"754 13th St, Portland, ME 04101" +185845,AAA Batteries (4-pack),1,2.99,03/17/19 12:34,"487 Walnut St, New York City, NY 10001" +185846,Lightning Charging Cable,1,14.95,03/07/19 10:43,"694 Center St, Dallas, TX 75001" +185847,Wired Headphones,1,11.99,03/23/19 20:54,"182 13th St, Boston, MA 02215" +185848,USB-C Charging Cable,1,11.95,03/29/19 08:53,"159 13th St, New York City, NY 10001" +185849,AAA Batteries (4-pack),3,2.99,03/14/19 19:00,"230 Lincoln St, Austin, TX 73301" +185850,AAA Batteries (4-pack),1,2.99,03/15/19 21:22,"92 7th St, San Francisco, CA 94016" +185851,AA Batteries (4-pack),1,3.84,03/23/19 08:30,"503 6th St, Atlanta, GA 30301" +185852,Lightning Charging Cable,2,14.95,03/17/19 22:37,"529 9th St, Portland, OR 97035" +185853,34in Ultrawide Monitor,1,379.99,03/31/19 17:32,"973 Park St, Los Angeles, CA 90001" +185854,Lightning Charging Cable,1,14.95,03/13/19 16:59,"501 Willow St, San Francisco, CA 94016" +185855,27in FHD Monitor,1,149.99,03/12/19 18:16,"374 1st St, San Francisco, CA 94016" +185856,Lightning Charging Cable,1,14.95,03/12/19 21:15,"420 10th St, New York City, NY 10001" +185857,Wired Headphones,1,11.99,03/23/19 14:36,"301 2nd St, Boston, MA 02215" +185858,Bose SoundSport Headphones,1,99.99,03/09/19 20:17,"147 Wilson St, Boston, MA 02215" +185859,Google Phone,1,600,03/31/19 09:05,"849 Spruce St, Atlanta, GA 30301" +185859,Bose SoundSport Headphones,1,99.99,03/31/19 09:05,"849 Spruce St, Atlanta, GA 30301" +185860,iPhone,1,700,03/25/19 21:52,"130 8th St, San Francisco, CA 94016" +185861,27in FHD Monitor,1,149.99,03/06/19 14:27,"187 Hill St, Seattle, WA 98101" +185862,Bose SoundSport Headphones,1,99.99,03/21/19 16:12,"512 12th St, San Francisco, CA 94016" +185863,Lightning Charging Cable,1,14.95,03/16/19 13:45,"964 Church St, Dallas, TX 75001" +185864,Apple Airpods Headphones,1,150,03/05/19 21:40,"246 Lake St, Boston, MA 02215" +185865,AA Batteries (4-pack),1,3.84,03/30/19 14:09,"420 Maple St, Seattle, WA 98101" +185866,AA Batteries (4-pack),1,3.84,03/14/19 16:51,"835 Main St, Portland, OR 97035" +185867,Bose SoundSport Headphones,1,99.99,03/17/19 19:11,"495 Sunset St, San Francisco, CA 94016" +185868,ThinkPad Laptop,1,999.99,03/19/19 17:59,"777 Adams St, Austin, TX 73301" +185869,AAA Batteries (4-pack),1,2.99,03/20/19 09:15,"634 Elm St, Dallas, TX 75001" +185870,27in FHD Monitor,1,149.99,03/18/19 03:58,"258 Sunset St, Boston, MA 02215" +185871,USB-C Charging Cable,1,11.95,03/20/19 10:09,"571 Hill St, San Francisco, CA 94016" +185872,AA Batteries (4-pack),2,3.84,03/30/19 11:47,"345 Wilson St, Atlanta, GA 30301" +185873,Google Phone,1,600,03/14/19 09:01,"100 4th St, San Francisco, CA 94016" +185873,Bose SoundSport Headphones,1,99.99,03/14/19 09:01,"100 4th St, San Francisco, CA 94016" +185874,Wired Headphones,1,11.99,03/18/19 21:56,"735 14th St, Los Angeles, CA 90001" +185875,Bose SoundSport Headphones,1,99.99,03/11/19 12:24,"518 Meadow St, Atlanta, GA 30301" +185876,USB-C Charging Cable,1,11.95,03/16/19 22:04,"546 2nd St, Dallas, TX 75001" +185877,iPhone,1,700,03/24/19 20:46,"181 Hickory St, Portland, OR 97035" +185878,Google Phone,1,600,03/14/19 08:55,"771 Dogwood St, Los Angeles, CA 90001" +185879,AA Batteries (4-pack),1,3.84,03/06/19 18:41,"398 Hickory St, Austin, TX 73301" +185880,Flatscreen TV,1,300,03/13/19 05:45,"561 Park St, Boston, MA 02215" +185881,USB-C Charging Cable,1,11.95,03/31/19 08:02,"854 Willow St, Los Angeles, CA 90001" +185882,34in Ultrawide Monitor,1,379.99,03/07/19 14:50,"983 Madison St, Atlanta, GA 30301" +185883,Google Phone,1,600,03/26/19 09:17,"644 11th St, Portland, OR 97035" +185884,34in Ultrawide Monitor,1,379.99,03/05/19 11:37,"229 Highland St, Portland, ME 04101" +185885,Flatscreen TV,1,300,03/27/19 02:35,"575 Elm St, Portland, OR 97035" +185886,Bose SoundSport Headphones,1,99.99,03/23/19 15:01,"847 Church St, San Francisco, CA 94016" +185887,34in Ultrawide Monitor,2,379.99,03/04/19 14:09,"212 Willow St, Dallas, TX 75001" +185888,AA Batteries (4-pack),1,3.84,03/02/19 23:16,"943 Jefferson St, Los Angeles, CA 90001" +185889,AA Batteries (4-pack),1,3.84,03/30/19 19:19,"704 Willow St, Portland, OR 97035" +185890,USB-C Charging Cable,1,11.95,03/06/19 17:02,"226 Meadow St, Los Angeles, CA 90001" +185891,AAA Batteries (4-pack),1,2.99,03/20/19 23:41,"304 North St, San Francisco, CA 94016" +185892,Apple Airpods Headphones,1,150,03/28/19 17:56,"652 Pine St, New York City, NY 10001" +185893,27in FHD Monitor,1,149.99,03/30/19 11:35,"218 Center St, San Francisco, CA 94016" +185894,USB-C Charging Cable,1,11.95,03/31/19 12:54,"842 2nd St, Dallas, TX 75001" +185895,AA Batteries (4-pack),1,3.84,03/29/19 11:51,"83 14th St, Dallas, TX 75001" +185896,Wired Headphones,2,11.99,03/24/19 17:40,"533 Hill St, Los Angeles, CA 90001" +185897,Apple Airpods Headphones,1,150,03/24/19 09:56,"784 13th St, San Francisco, CA 94016" +185898,USB-C Charging Cable,1,11.95,03/25/19 19:03,"436 Willow St, Atlanta, GA 30301" +185899,AAA Batteries (4-pack),2,2.99,03/23/19 08:39,"205 Lakeview St, San Francisco, CA 94016" +185900,AA Batteries (4-pack),4,3.84,03/06/19 11:03,"60 Madison St, Seattle, WA 98101" +185901,Wired Headphones,1,11.99,03/08/19 11:04,"239 North St, Dallas, TX 75001" +185902,Wired Headphones,1,11.99,03/27/19 13:56,"215 11th St, Los Angeles, CA 90001" +185903,USB-C Charging Cable,1,11.95,03/13/19 07:49,"664 14th St, Seattle, WA 98101" +185904,27in 4K Gaming Monitor,1,389.99,03/23/19 17:53,"1 Forest St, San Francisco, CA 94016" +185905,34in Ultrawide Monitor,1,379.99,03/06/19 14:14,"739 Cedar St, San Francisco, CA 94016" +185906,USB-C Charging Cable,1,11.95,03/06/19 19:01,"240 River St, San Francisco, CA 94016" +185907,Lightning Charging Cable,1,14.95,03/21/19 06:41,"617 Sunset St, Los Angeles, CA 90001" +185908,iPhone,1,700,03/08/19 12:42,"75 Wilson St, Los Angeles, CA 90001" +185908,Lightning Charging Cable,1,14.95,03/08/19 12:42,"75 Wilson St, Los Angeles, CA 90001" +185909,ThinkPad Laptop,1,999.99,03/26/19 13:31,"956 Johnson St, Seattle, WA 98101" +185910,AA Batteries (4-pack),2,3.84,03/17/19 20:14,"936 4th St, New York City, NY 10001" +185911,USB-C Charging Cable,1,11.95,03/30/19 14:48,"279 Maple St, San Francisco, CA 94016" +185912,AAA Batteries (4-pack),2,2.99,03/28/19 20:52,"831 8th St, San Francisco, CA 94016" +185913,Lightning Charging Cable,1,14.95,03/07/19 23:37,"353 Church St, Dallas, TX 75001" +185913,AA Batteries (4-pack),1,3.84,03/07/19 23:37,"353 Church St, Dallas, TX 75001" +185914,27in FHD Monitor,1,149.99,03/30/19 09:42,"149 Madison St, Atlanta, GA 30301" +185915,34in Ultrawide Monitor,1,379.99,03/18/19 14:42,"705 Walnut St, New York City, NY 10001" +185916,ThinkPad Laptop,1,999.99,03/07/19 11:30,"604 5th St, Austin, TX 73301" +185916,Bose SoundSport Headphones,1,99.99,03/07/19 11:30,"604 5th St, Austin, TX 73301" +185917,Flatscreen TV,1,300,03/10/19 13:33,"106 Highland St, San Francisco, CA 94016" +185918,USB-C Charging Cable,1,11.95,03/06/19 18:34,"824 Cedar St, Los Angeles, CA 90001" +185919,27in FHD Monitor,1,149.99,03/21/19 15:18,"257 2nd St, Seattle, WA 98101" +185920,Wired Headphones,1,11.99,03/18/19 15:29,"2 Maple St, Portland, OR 97035" +185921,Bose SoundSport Headphones,1,99.99,03/25/19 19:01,"735 Adams St, San Francisco, CA 94016" +185922,Wired Headphones,1,11.99,03/07/19 19:08,"300 Willow St, Portland, OR 97035" +185923,USB-C Charging Cable,1,11.95,03/08/19 21:44,"542 Hill St, San Francisco, CA 94016" +185924,20in Monitor,1,109.99,03/24/19 18:39,"969 12th St, San Francisco, CA 94016" +185925,AAA Batteries (4-pack),2,2.99,03/03/19 15:48,"721 South St, Atlanta, GA 30301" +185926,Lightning Charging Cable,1,14.95,03/16/19 12:38,"777 Spruce St, San Francisco, CA 94016" +185927,Lightning Charging Cable,1,14.95,03/20/19 13:07,"318 Lakeview St, Boston, MA 02215" +185928,27in 4K Gaming Monitor,1,389.99,03/30/19 23:43,"708 Park St, Los Angeles, CA 90001" +185929,AAA Batteries (4-pack),2,2.99,03/03/19 02:41,"857 Highland St, Boston, MA 02215" +185930,AA Batteries (4-pack),1,3.84,03/23/19 17:07,"632 Lakeview St, Boston, MA 02215" +185931,AAA Batteries (4-pack),3,2.99,03/28/19 17:36,"186 Pine St, Boston, MA 02215" +185932,AA Batteries (4-pack),1,3.84,03/27/19 10:40,"936 4th St, Los Angeles, CA 90001" +185933,USB-C Charging Cable,1,11.95,03/16/19 15:05,"829 Ridge St, Seattle, WA 98101" +185934,LG Washing Machine,1,600.0,03/31/19 12:09,"11 1st St, Los Angeles, CA 90001" +185935,27in FHD Monitor,1,149.99,03/07/19 09:10,"110 Walnut St, Seattle, WA 98101" +185936,AAA Batteries (4-pack),2,2.99,03/26/19 04:55,"848 Elm St, Portland, OR 97035" +185937,Google Phone,1,600,03/16/19 15:53,"855 Sunset St, Portland, OR 97035" +185938,AAA Batteries (4-pack),3,2.99,03/20/19 06:53,"149 7th St, Seattle, WA 98101" +185939,Macbook Pro Laptop,1,1700,03/28/19 17:59,"382 North St, Portland, OR 97035" +185940,Flatscreen TV,1,300,03/18/19 15:06,"890 1st St, Boston, MA 02215" +185941,Bose SoundSport Headphones,1,99.99,03/17/19 09:19,"862 9th St, Los Angeles, CA 90001" +185942,Lightning Charging Cable,1,14.95,03/27/19 09:42,"307 Maple St, New York City, NY 10001" +185943,Google Phone,1,600,03/06/19 18:15,"634 Church St, Los Angeles, CA 90001" +185944,Flatscreen TV,1,300,03/22/19 16:19,"783 7th St, San Francisco, CA 94016" +185945,Lightning Charging Cable,1,14.95,03/14/19 07:22,"542 4th St, New York City, NY 10001" +185946,USB-C Charging Cable,1,11.95,03/24/19 22:23,"667 Jefferson St, Atlanta, GA 30301" +185947,USB-C Charging Cable,2,11.95,03/23/19 07:31,"730 Lakeview St, Dallas, TX 75001" +185948,Apple Airpods Headphones,1,150,03/22/19 00:34,"191 Jefferson St, Los Angeles, CA 90001" +185949,34in Ultrawide Monitor,1,379.99,03/17/19 15:42,"952 Park St, Portland, ME 04101" +185950,Lightning Charging Cable,1,14.95,03/15/19 10:54,"999 Spruce St, Portland, ME 04101" +185951,AA Batteries (4-pack),2,3.84,03/26/19 14:59,"849 Chestnut St, San Francisco, CA 94016" +185952,AAA Batteries (4-pack),1,2.99,03/14/19 21:18,"907 Cedar St, Portland, OR 97035" +185953,27in FHD Monitor,1,149.99,03/27/19 10:00,"234 North St, San Francisco, CA 94016" +185954,Lightning Charging Cable,1,14.95,03/19/19 22:39,"418 10th St, Los Angeles, CA 90001" +185955,Lightning Charging Cable,1,14.95,03/05/19 13:50,"156 Adams St, New York City, NY 10001" +185956,AA Batteries (4-pack),1,3.84,03/03/19 17:23,"846 Church St, Los Angeles, CA 90001" +185957,Google Phone,1,600,03/08/19 13:44,"40 Adams St, Atlanta, GA 30301" +185958,34in Ultrawide Monitor,1,379.99,03/05/19 19:01,"49 Johnson St, Portland, OR 97035" +185959,Lightning Charging Cable,1,14.95,03/24/19 22:39,"728 Spruce St, San Francisco, CA 94016" +185960,USB-C Charging Cable,1,11.95,03/08/19 23:56,"677 South St, Los Angeles, CA 90001" +185961,AAA Batteries (4-pack),1,2.99,03/30/19 20:52,"661 Center St, Dallas, TX 75001" +185962,ThinkPad Laptop,1,999.99,03/29/19 15:52,"636 6th St, Atlanta, GA 30301" +185963,iPhone,1,700,03/27/19 18:59,"724 Adams St, New York City, NY 10001" +185964,Lightning Charging Cable,1,14.95,03/12/19 07:59,"138 Forest St, San Francisco, CA 94016" +185965,AAA Batteries (4-pack),1,2.99,03/13/19 11:36,"4 6th St, San Francisco, CA 94016" +185966,Apple Airpods Headphones,1,150,03/10/19 17:56,"576 Spruce St, New York City, NY 10001" +185967,Macbook Pro Laptop,1,1700,03/10/19 15:13,"14 Church St, New York City, NY 10001" +185968,USB-C Charging Cable,1,11.95,03/13/19 19:06,"849 Hill St, Los Angeles, CA 90001" +185969,Google Phone,1,600,03/01/19 16:28,"570 Park St, Seattle, WA 98101" +185970,Bose SoundSport Headphones,1,99.99,03/08/19 21:00,"160 Wilson St, San Francisco, CA 94016" +185971,Apple Airpods Headphones,1,150,03/13/19 12:14,"842 1st St, Los Angeles, CA 90001" +185972,Apple Airpods Headphones,1,150,03/25/19 20:19,"176 Sunset St, New York City, NY 10001" +185973,USB-C Charging Cable,1,11.95,03/22/19 17:56,"632 Jackson St, Boston, MA 02215" +185974,20in Monitor,1,109.99,03/23/19 20:24,"248 River St, San Francisco, CA 94016" +185975,Wired Headphones,1,11.99,03/31/19 18:40,"419 Lake St, San Francisco, CA 94016" +185976,34in Ultrawide Monitor,1,379.99,03/05/19 10:14,"986 Church St, San Francisco, CA 94016" +185977,27in FHD Monitor,1,149.99,03/28/19 14:18,"576 Church St, Los Angeles, CA 90001" +185978,AAA Batteries (4-pack),2,2.99,03/23/19 21:58,"761 Lakeview St, San Francisco, CA 94016" +185979,iPhone,1,700,03/25/19 15:42,"369 Main St, New York City, NY 10001" +185980,Wired Headphones,1,11.99,03/12/19 10:40,"259 North St, Austin, TX 73301" +185981,iPhone,1,700,03/21/19 22:07,"504 10th St, Boston, MA 02215" +185981,Lightning Charging Cable,1,14.95,03/21/19 22:07,"504 10th St, Boston, MA 02215" +185982,USB-C Charging Cable,1,11.95,03/22/19 20:04,"519 West St, Los Angeles, CA 90001" +185983,Lightning Charging Cable,1,14.95,03/05/19 18:44,"141 Jackson St, New York City, NY 10001" +185984,Apple Airpods Headphones,1,150,03/16/19 18:54,"496 5th St, Boston, MA 02215" +185985,27in 4K Gaming Monitor,1,389.99,03/04/19 08:35,"727 Maple St, Seattle, WA 98101" +185986,27in 4K Gaming Monitor,1,389.99,03/22/19 14:53,"85 10th St, Los Angeles, CA 90001" +185987,AAA Batteries (4-pack),1,2.99,03/09/19 08:29,"827 Cherry St, Atlanta, GA 30301" +185988,USB-C Charging Cable,1,11.95,03/16/19 18:07,"181 8th St, San Francisco, CA 94016" +185989,AAA Batteries (4-pack),1,2.99,03/27/19 14:07,"802 Main St, Austin, TX 73301" +185990,Wired Headphones,1,11.99,03/13/19 17:03,"228 Lakeview St, Los Angeles, CA 90001" +185991,AAA Batteries (4-pack),1,2.99,03/03/19 14:39,"874 Chestnut St, New York City, NY 10001" +185992,Google Phone,1,600,03/13/19 21:35,"97 Maple St, San Francisco, CA 94016" +185993,USB-C Charging Cable,1,11.95,03/01/19 14:49,"930 Jefferson St, San Francisco, CA 94016" +185994,AAA Batteries (4-pack),1,2.99,03/13/19 04:21,"635 Willow St, New York City, NY 10001" +185995,Bose SoundSport Headphones,1,99.99,03/15/19 09:51,"254 Elm St, Atlanta, GA 30301" +185996,34in Ultrawide Monitor,1,379.99,03/19/19 00:40,"27 Church St, Dallas, TX 75001" +185997,Google Phone,1,600,03/24/19 09:16,"502 12th St, Portland, OR 97035" +185998,Bose SoundSport Headphones,1,99.99,03/06/19 14:43,"829 9th St, Seattle, WA 98101" +185999,AAA Batteries (4-pack),3,2.99,03/21/19 12:20,"58 13th St, New York City, NY 10001" +186000,Apple Airpods Headphones,1,150,03/18/19 11:39,"293 Wilson St, San Francisco, CA 94016" +186001,Bose SoundSport Headphones,1,99.99,03/02/19 09:48,"862 Lakeview St, Los Angeles, CA 90001" +186002,AA Batteries (4-pack),2,3.84,03/23/19 13:51,"732 5th St, San Francisco, CA 94016" +186003,34in Ultrawide Monitor,1,379.99,03/06/19 06:13,"970 Lakeview St, New York City, NY 10001" +186004,Lightning Charging Cable,1,14.95,03/09/19 22:07,"599 Lake St, Austin, TX 73301" +186005,Wired Headphones,1,11.99,03/08/19 20:04,"10 Meadow St, Portland, OR 97035" +186006,AA Batteries (4-pack),1,3.84,03/17/19 12:37,"207 North St, Boston, MA 02215" +186007,AA Batteries (4-pack),1,3.84,03/11/19 19:05,"477 River St, Dallas, TX 75001" +186008,USB-C Charging Cable,1,11.95,03/12/19 17:00,"670 Willow St, Portland, OR 97035" +186009,USB-C Charging Cable,1,11.95,03/19/19 07:12,"548 Hill St, Austin, TX 73301" +186010,USB-C Charging Cable,1,11.95,03/21/19 20:33,"929 13th St, New York City, NY 10001" +186011,Apple Airpods Headphones,1,150,03/25/19 18:40,"325 1st St, Seattle, WA 98101" +186012,USB-C Charging Cable,1,11.95,03/24/19 07:56,"124 Chestnut St, Dallas, TX 75001" +186013,Google Phone,1,600,03/30/19 12:14,"546 8th St, New York City, NY 10001" +186014,Macbook Pro Laptop,1,1700,03/29/19 20:19,"365 Meadow St, Dallas, TX 75001" +186015,AAA Batteries (4-pack),2,2.99,03/11/19 20:14,"156 Meadow St, Portland, OR 97035" +186015,Apple Airpods Headphones,1,150,03/11/19 20:14,"156 Meadow St, Portland, OR 97035" +186016,Wired Headphones,1,11.99,03/08/19 10:36,"997 Maple St, San Francisco, CA 94016" +186017,AA Batteries (4-pack),2,3.84,03/26/19 17:23,"303 Sunset St, Boston, MA 02215" +186018,AA Batteries (4-pack),1,3.84,03/02/19 19:43,"403 Walnut St, San Francisco, CA 94016" +186019,AAA Batteries (4-pack),1,2.99,03/06/19 23:19,"166 South St, Atlanta, GA 30301" +186020,Wired Headphones,1,11.99,03/16/19 12:55,"746 11th St, Portland, OR 97035" +186020,iPhone,1,700,03/16/19 12:55,"746 11th St, Portland, OR 97035" +186021,Wired Headphones,1,11.99,03/24/19 22:33,"304 14th St, Portland, OR 97035" +186022,34in Ultrawide Monitor,1,379.99,03/10/19 10:24,"867 8th St, New York City, NY 10001" +186023,Flatscreen TV,1,300,03/25/19 15:52,"730 Cherry St, Seattle, WA 98101" +186024,Flatscreen TV,1,300,03/15/19 15:32,"128 Center St, Portland, OR 97035" +186025,Lightning Charging Cable,1,14.95,03/06/19 22:41,"296 Walnut St, San Francisco, CA 94016" +186026,Bose SoundSport Headphones,1,99.99,03/06/19 10:43,"502 Jackson St, Dallas, TX 75001" +186027,AA Batteries (4-pack),1,3.84,03/04/19 10:03,"572 Highland St, Atlanta, GA 30301" +186028,Apple Airpods Headphones,1,150,03/21/19 11:34,"248 Spruce St, Los Angeles, CA 90001" +186029,Google Phone,1,600,03/01/19 14:48,"829 14th St, Austin, TX 73301" +186030,34in Ultrawide Monitor,1,379.99,03/11/19 15:52,"145 Cherry St, Seattle, WA 98101" +186031,AA Batteries (4-pack),1,3.84,03/23/19 11:30,"863 Lincoln St, Seattle, WA 98101" +186032,USB-C Charging Cable,1,11.95,03/18/19 22:46,"105 South St, Portland, OR 97035" +186033,AA Batteries (4-pack),1,3.84,03/17/19 16:07,"585 Sunset St, San Francisco, CA 94016" +186034,Lightning Charging Cable,1,14.95,03/27/19 14:47,"30 Wilson St, Atlanta, GA 30301" +186035,iPhone,1,700,03/02/19 12:16,"706 Park St, Boston, MA 02215" +186035,USB-C Charging Cable,1,11.95,03/02/19 12:16,"706 Park St, Boston, MA 02215" +186036,Wired Headphones,1,11.99,03/07/19 12:05,"380 Center St, San Francisco, CA 94016" +186037,AA Batteries (4-pack),1,3.84,03/07/19 21:08,"762 10th St, Boston, MA 02215" +186038,20in Monitor,1,109.99,03/29/19 17:28,"575 2nd St, Boston, MA 02215" +186039,Apple Airpods Headphones,1,150,03/09/19 10:15,"157 7th St, San Francisco, CA 94016" +186040,AA Batteries (4-pack),1,3.84,03/14/19 11:33,"3 Adams St, New York City, NY 10001" +186041,Lightning Charging Cable,1,14.95,03/25/19 15:48,"286 Forest St, New York City, NY 10001" +186042,AA Batteries (4-pack),1,3.84,03/12/19 21:12,"602 Meadow St, San Francisco, CA 94016" +186043,Macbook Pro Laptop,1,1700,03/27/19 21:12,"705 Ridge St, Portland, OR 97035" +186043,Apple Airpods Headphones,1,150,03/27/19 21:12,"705 Ridge St, Portland, OR 97035" +186044,20in Monitor,1,109.99,03/09/19 13:33,"602 Lake St, New York City, NY 10001" +186045,Flatscreen TV,1,300,03/07/19 23:35,"779 Church St, Los Angeles, CA 90001" +186046,27in 4K Gaming Monitor,1,389.99,03/21/19 17:09,"800 River St, San Francisco, CA 94016" +186046,27in 4K Gaming Monitor,1,389.99,03/21/19 17:09,"800 River St, San Francisco, CA 94016" +186047,Bose SoundSport Headphones,1,99.99,03/13/19 19:39,"961 Dogwood St, San Francisco, CA 94016" +186048,Flatscreen TV,1,300,03/13/19 13:32,"446 Cedar St, Austin, TX 73301" +186049,20in Monitor,1,109.99,03/01/19 12:20,"84 12th St, Los Angeles, CA 90001" +186050,Wired Headphones,1,11.99,03/16/19 20:18,"624 11th St, Atlanta, GA 30301" +186051,Bose SoundSport Headphones,1,99.99,03/15/19 10:18,"347 Meadow St, San Francisco, CA 94016" +186052,34in Ultrawide Monitor,1,379.99,03/04/19 09:46,"328 Johnson St, Seattle, WA 98101" +186053,AAA Batteries (4-pack),2,2.99,03/04/19 15:59,"723 10th St, New York City, NY 10001" +186054,Lightning Charging Cable,1,14.95,03/29/19 09:50,"957 Spruce St, Dallas, TX 75001" +186055,AA Batteries (4-pack),1,3.84,03/07/19 14:49,"254 9th St, Dallas, TX 75001" +186056,Apple Airpods Headphones,1,150,03/08/19 17:08,"943 Cherry St, Los Angeles, CA 90001" +186057,27in 4K Gaming Monitor,1,389.99,03/09/19 14:53,"487 Madison St, Atlanta, GA 30301" +186058,27in FHD Monitor,1,149.99,03/05/19 14:40,"718 4th St, San Francisco, CA 94016" +186059,27in 4K Gaming Monitor,1,389.99,03/17/19 19:31,"915 Hill St, Los Angeles, CA 90001" +186060,Macbook Pro Laptop,1,1700,03/25/19 12:14,"862 West St, New York City, NY 10001" +186061,AA Batteries (4-pack),1,3.84,03/07/19 08:02,"880 13th St, Boston, MA 02215" +186062,AAA Batteries (4-pack),1,2.99,03/07/19 22:47,"150 Pine St, San Francisco, CA 94016" +186063,Lightning Charging Cable,1,14.95,03/10/19 11:07,"689 Jackson St, Los Angeles, CA 90001" +186064,iPhone,1,700,03/20/19 23:34,"748 Wilson St, San Francisco, CA 94016" +186065,AA Batteries (4-pack),1,3.84,03/11/19 11:11,"74 Elm St, San Francisco, CA 94016" +186066,Apple Airpods Headphones,1,150,03/13/19 19:17,"941 Chestnut St, Dallas, TX 75001" +186067,USB-C Charging Cable,1,11.95,03/08/19 16:21,"657 14th St, Dallas, TX 75001" +186068,Google Phone,1,600,03/24/19 18:28,"650 Dogwood St, San Francisco, CA 94016" +186069,Apple Airpods Headphones,1,150,03/16/19 11:55,"135 Church St, Dallas, TX 75001" +186070,USB-C Charging Cable,1,11.95,03/19/19 21:51,"691 8th St, San Francisco, CA 94016" +186071,Lightning Charging Cable,1,14.95,03/15/19 13:15,"37 Lakeview St, Atlanta, GA 30301" +186072,Wired Headphones,1,11.99,03/08/19 18:24,"760 Maple St, Boston, MA 02215" +186073,USB-C Charging Cable,1,11.95,03/02/19 20:54,"676 Wilson St, San Francisco, CA 94016" +186074,Flatscreen TV,1,300,03/28/19 19:37,"306 West St, Dallas, TX 75001" +186075,AA Batteries (4-pack),2,3.84,03/18/19 06:10,"257 Chestnut St, New York City, NY 10001" +186076,iPhone,1,700,03/31/19 22:35,"678 Madison St, Dallas, TX 75001" +186077,Lightning Charging Cable,1,14.95,03/20/19 18:03,"182 Jefferson St, New York City, NY 10001" +186078,Wired Headphones,1,11.99,03/23/19 12:30,"368 12th St, Los Angeles, CA 90001" +186079,Apple Airpods Headphones,1,150,03/15/19 15:26,"544 Hill St, Boston, MA 02215" +186080,Google Phone,1,600,03/15/19 09:02,"388 1st St, Los Angeles, CA 90001" +186080,USB-C Charging Cable,1,11.95,03/15/19 09:02,"388 1st St, Los Angeles, CA 90001" +186081,AA Batteries (4-pack),1,3.84,03/28/19 13:31,"60 Pine St, Los Angeles, CA 90001" +186082,AAA Batteries (4-pack),1,2.99,03/09/19 00:52,"627 4th St, Boston, MA 02215" +186083,USB-C Charging Cable,1,11.95,03/13/19 14:42,"877 Wilson St, San Francisco, CA 94016" +186084,USB-C Charging Cable,1,11.95,03/16/19 21:19,"428 Washington St, Dallas, TX 75001" +186085,Lightning Charging Cable,1,14.95,03/16/19 17:26,"671 11th St, San Francisco, CA 94016" +186086,AAA Batteries (4-pack),1,2.99,03/27/19 22:19,"936 Wilson St, Boston, MA 02215" +186087,AAA Batteries (4-pack),1,2.99,03/31/19 11:53,"418 Hill St, San Francisco, CA 94016" +186088,Flatscreen TV,1,300,04/01/19 00:17,"769 Highland St, New York City, NY 10001" +186089,Lightning Charging Cable,1,14.95,03/16/19 19:41,"250 Highland St, Seattle, WA 98101" +186090,AAA Batteries (4-pack),1,2.99,03/13/19 12:13,"702 Forest St, Portland, OR 97035" +186091,Apple Airpods Headphones,1,150,03/25/19 13:43,"438 Walnut St, San Francisco, CA 94016" +186092,27in FHD Monitor,1,149.99,03/11/19 16:07,"145 Adams St, Seattle, WA 98101" +186093,AAA Batteries (4-pack),1,2.99,03/13/19 17:38,"272 5th St, Dallas, TX 75001" +186094,AAA Batteries (4-pack),1,2.99,03/18/19 11:13,"683 Maple St, Atlanta, GA 30301" +186095,Lightning Charging Cable,1,14.95,03/07/19 17:45,"525 Cherry St, Portland, OR 97035" +186096,AAA Batteries (4-pack),1,2.99,03/27/19 21:51,"4 North St, Seattle, WA 98101" +186097,USB-C Charging Cable,1,11.95,03/25/19 06:12,"242 Dogwood St, Seattle, WA 98101" +186098,USB-C Charging Cable,1,11.95,03/03/19 20:10,"691 10th St, Austin, TX 73301" +186099,Apple Airpods Headphones,1,150,03/16/19 17:17,"961 Lakeview St, Atlanta, GA 30301" +186100,Lightning Charging Cable,1,14.95,03/25/19 16:34,"657 Church St, San Francisco, CA 94016" +186101,Bose SoundSport Headphones,1,99.99,03/24/19 13:13,"458 Park St, Atlanta, GA 30301" +186102,Wired Headphones,1,11.99,03/07/19 22:13,"325 Johnson St, San Francisco, CA 94016" +186103,Lightning Charging Cable,1,14.95,03/22/19 11:05,"636 Walnut St, Los Angeles, CA 90001" +186104,USB-C Charging Cable,1,11.95,03/21/19 23:10,"311 North St, Atlanta, GA 30301" +186105,27in FHD Monitor,1,149.99,03/31/19 21:53,"787 Hickory St, Los Angeles, CA 90001" +186106,27in 4K Gaming Monitor,1,389.99,03/19/19 16:35,"133 Washington St, Los Angeles, CA 90001" +186107,Apple Airpods Headphones,1,150,03/02/19 12:27,"953 12th St, Austin, TX 73301" +186108,USB-C Charging Cable,1,11.95,03/12/19 20:31,"943 Hickory St, Los Angeles, CA 90001" +186109,AA Batteries (4-pack),1,3.84,03/25/19 20:49,"293 12th St, New York City, NY 10001" +186110,Vareebadd Phone,1,400,03/04/19 19:33,"286 6th St, San Francisco, CA 94016" +186111,Lightning Charging Cable,1,14.95,03/20/19 17:53,"988 Jefferson St, San Francisco, CA 94016" +186112,Apple Airpods Headphones,1,150,03/22/19 09:17,"64 Jackson St, Seattle, WA 98101" +186113,Wired Headphones,1,11.99,03/07/19 15:29,"667 Maple St, New York City, NY 10001" +186114,AAA Batteries (4-pack),1,2.99,03/29/19 10:26,"849 Cherry St, New York City, NY 10001" +186115,iPhone,1,700,03/26/19 13:47,"118 Chestnut St, Los Angeles, CA 90001" +186115,Lightning Charging Cable,1,14.95,03/26/19 13:47,"118 Chestnut St, Los Angeles, CA 90001" +186116,iPhone,1,700,03/26/19 20:06,"720 Highland St, Boston, MA 02215" +186117,USB-C Charging Cable,1,11.95,03/25/19 22:22,"865 Maple St, New York City, NY 10001" +186118,Google Phone,1,600,03/31/19 00:34,"121 Main St, Atlanta, GA 30301" +186118,Macbook Pro Laptop,1,1700,03/31/19 00:34,"121 Main St, Atlanta, GA 30301" +186119,Wired Headphones,1,11.99,03/02/19 15:22,"690 Church St, San Francisco, CA 94016" +186120,Google Phone,1,600,03/05/19 18:59,"614 Elm St, Atlanta, GA 30301" +186121,USB-C Charging Cable,1,11.95,03/24/19 14:14,"803 Cedar St, San Francisco, CA 94016" +186122,USB-C Charging Cable,1,11.95,03/05/19 20:11,"754 Highland St, Los Angeles, CA 90001" +186123,Wired Headphones,1,11.99,03/14/19 12:21,"279 Hickory St, Portland, ME 04101" +186124,AA Batteries (4-pack),1,3.84,03/12/19 16:46,"343 Lincoln St, Portland, OR 97035" +186125,AAA Batteries (4-pack),1,2.99,03/14/19 07:58,"251 South St, Los Angeles, CA 90001" +186126,27in FHD Monitor,1,149.99,03/26/19 12:00,"584 Hickory St, San Francisco, CA 94016" +186127,Flatscreen TV,1,300,03/04/19 09:45,"14 9th St, San Francisco, CA 94016" +186128,27in 4K Gaming Monitor,1,389.99,03/03/19 12:05,"38 Forest St, San Francisco, CA 94016" +186129,20in Monitor,1,109.99,03/29/19 08:27,"973 14th St, New York City, NY 10001" +186130,Lightning Charging Cable,1,14.95,03/16/19 07:39,"65 Dogwood St, Seattle, WA 98101" +186131,ThinkPad Laptop,1,999.99,03/28/19 13:45,"171 Lincoln St, Boston, MA 02215" +186132,USB-C Charging Cable,1,11.95,03/30/19 13:42,"495 Spruce St, Boston, MA 02215" +186133,Wired Headphones,1,11.99,03/31/19 15:10,"650 Chestnut St, San Francisco, CA 94016" +186133,AA Batteries (4-pack),1,3.84,03/31/19 15:10,"650 Chestnut St, San Francisco, CA 94016" +186134,Lightning Charging Cable,1,14.95,03/17/19 18:53,"486 Walnut St, Los Angeles, CA 90001" +186135,USB-C Charging Cable,1,11.95,03/16/19 09:09,"179 13th St, Dallas, TX 75001" +186136,Wired Headphones,1,11.99,03/15/19 02:01,"340 Jackson St, San Francisco, CA 94016" +186137,AA Batteries (4-pack),1,3.84,03/22/19 21:08,"28 Walnut St, Dallas, TX 75001" +186138,Lightning Charging Cable,1,14.95,03/15/19 08:25,"964 South St, Dallas, TX 75001" +186139,AA Batteries (4-pack),1,3.84,03/23/19 23:13,"873 Ridge St, New York City, NY 10001" +186140,ThinkPad Laptop,1,999.99,03/20/19 22:12,"127 Center St, Boston, MA 02215" +186141,AAA Batteries (4-pack),2,2.99,03/21/19 23:51,"585 Park St, Atlanta, GA 30301" +186142,USB-C Charging Cable,1,11.95,03/10/19 00:28,"470 Park St, Atlanta, GA 30301" +186143,AAA Batteries (4-pack),1,2.99,03/02/19 21:37,"585 Lincoln St, Portland, OR 97035" +186144,USB-C Charging Cable,1,11.95,03/13/19 12:05,"276 11th St, New York City, NY 10001" +186145,Vareebadd Phone,1,400,03/09/19 22:26,"269 Jefferson St, Austin, TX 73301" +186146,34in Ultrawide Monitor,1,379.99,03/14/19 18:17,"279 4th St, Boston, MA 02215" +186147,Lightning Charging Cable,1,14.95,03/22/19 21:28,"536 North St, Boston, MA 02215" +186148,USB-C Charging Cable,2,11.95,03/18/19 23:36,"743 Spruce St, Seattle, WA 98101" +186149,Lightning Charging Cable,1,14.95,03/15/19 21:50,"62 Spruce St, San Francisco, CA 94016" +186150,Lightning Charging Cable,1,14.95,03/30/19 06:32,"154 Highland St, Los Angeles, CA 90001" +186151,Flatscreen TV,1,300,03/23/19 20:17,"948 Spruce St, Seattle, WA 98101" +186152,Lightning Charging Cable,1,14.95,03/17/19 13:05,"114 11th St, San Francisco, CA 94016" +186153,Lightning Charging Cable,2,14.95,03/02/19 16:12,"434 Park St, Seattle, WA 98101" +186154,AA Batteries (4-pack),1,3.84,03/11/19 12:55,"455 13th St, Seattle, WA 98101" +186155,AAA Batteries (4-pack),1,2.99,03/14/19 05:06,"75 Pine St, Boston, MA 02215" +186156,Vareebadd Phone,1,400,03/11/19 20:14,"994 7th St, Dallas, TX 75001" +186157,Bose SoundSport Headphones,1,99.99,03/03/19 14:21,"218 Maple St, Dallas, TX 75001" +186158,USB-C Charging Cable,2,11.95,03/08/19 13:40,"663 9th St, Los Angeles, CA 90001" +186159,AAA Batteries (4-pack),1,2.99,03/27/19 17:27,"57 4th St, San Francisco, CA 94016" +186160,Flatscreen TV,1,300,03/25/19 13:06,"328 River St, Atlanta, GA 30301" +186161,AA Batteries (4-pack),1,3.84,03/15/19 20:03,"761 13th St, New York City, NY 10001" +186162,USB-C Charging Cable,1,11.95,03/20/19 17:59,"98 Meadow St, Los Angeles, CA 90001" +186163,Bose SoundSport Headphones,1,99.99,03/28/19 13:31,"563 Madison St, Boston, MA 02215" +186164,27in 4K Gaming Monitor,1,389.99,03/12/19 08:59,"80 Dogwood St, Los Angeles, CA 90001" +186165,LG Washing Machine,1,600.0,03/10/19 14:16,"422 Church St, Seattle, WA 98101" +186166,Lightning Charging Cable,1,14.95,03/20/19 22:19,"105 14th St, San Francisco, CA 94016" +186167,Apple Airpods Headphones,1,150,03/23/19 19:09,"214 9th St, Austin, TX 73301" +186168,USB-C Charging Cable,1,11.95,03/23/19 13:30,"972 North St, Dallas, TX 75001" +186169,AAA Batteries (4-pack),4,2.99,03/09/19 15:29,"65 Dogwood St, Los Angeles, CA 90001" +186170,Google Phone,1,600,03/03/19 11:34,"459 2nd St, Boston, MA 02215" +186170,Wired Headphones,2,11.99,03/03/19 11:34,"459 2nd St, Boston, MA 02215" +186171,AA Batteries (4-pack),1,3.84,03/16/19 23:06,"606 Sunset St, San Francisco, CA 94016" +186172,USB-C Charging Cable,2,11.95,03/20/19 13:29,"599 Elm St, Atlanta, GA 30301" +186173,Vareebadd Phone,1,400,03/21/19 07:56,"581 Pine St, San Francisco, CA 94016" +186174,Wired Headphones,1,11.99,03/23/19 17:06,"323 Lakeview St, Los Angeles, CA 90001" +186175,Bose SoundSport Headphones,1,99.99,03/05/19 12:59,"944 10th St, Dallas, TX 75001" +186176,Apple Airpods Headphones,1,150,03/19/19 08:17,"19 Jefferson St, San Francisco, CA 94016" +186177,AA Batteries (4-pack),1,3.84,03/30/19 18:34,"763 Hill St, Boston, MA 02215" +186178,Apple Airpods Headphones,1,150,03/28/19 07:06,"879 Maple St, Los Angeles, CA 90001" +186179,Flatscreen TV,1,300,03/06/19 18:55,"891 7th St, Boston, MA 02215" +186180,Bose SoundSport Headphones,1,99.99,03/22/19 23:26,"930 1st St, San Francisco, CA 94016" +186181,Lightning Charging Cable,2,14.95,03/25/19 18:43,"141 Wilson St, Los Angeles, CA 90001" +186182,Wired Headphones,1,11.99,03/06/19 14:08,"255 12th St, Los Angeles, CA 90001" +186183,Apple Airpods Headphones,1,150,03/21/19 13:11,"886 Adams St, Portland, OR 97035" +186184,AA Batteries (4-pack),1,3.84,03/11/19 08:53,"208 Hickory St, Boston, MA 02215" +186185,27in 4K Gaming Monitor,1,389.99,03/10/19 17:42,"584 2nd St, Seattle, WA 98101" +186186,Lightning Charging Cable,1,14.95,03/11/19 22:59,"371 Hickory St, Los Angeles, CA 90001" +186187,27in 4K Gaming Monitor,1,389.99,03/08/19 08:22,"124 North St, San Francisco, CA 94016" +186188,Apple Airpods Headphones,1,150,03/16/19 12:37,"514 5th St, San Francisco, CA 94016" +186189,27in 4K Gaming Monitor,1,389.99,03/20/19 17:45,"892 9th St, New York City, NY 10001" +186190,27in FHD Monitor,1,149.99,03/06/19 14:22,"697 Elm St, San Francisco, CA 94016" +186191,USB-C Charging Cable,1,11.95,03/03/19 20:23,"30 6th St, Los Angeles, CA 90001" +186192,LG Washing Machine,1,600.0,03/15/19 10:18,"467 Sunset St, San Francisco, CA 94016" +186193,Apple Airpods Headphones,1,150,03/18/19 14:34,"672 Elm St, Dallas, TX 75001" +186194,Apple Airpods Headphones,1,150,03/10/19 11:49,"566 South St, San Francisco, CA 94016" +186195,USB-C Charging Cable,1,11.95,03/04/19 15:25,"611 7th St, San Francisco, CA 94016" +186196,Vareebadd Phone,1,400,03/26/19 16:35,"762 North St, Atlanta, GA 30301" +186196,Bose SoundSport Headphones,1,99.99,03/26/19 16:35,"762 North St, Atlanta, GA 30301" +186197,20in Monitor,1,109.99,03/27/19 21:00,"375 Ridge St, New York City, NY 10001" +186198,Macbook Pro Laptop,1,1700,03/08/19 09:07,"643 Cedar St, Atlanta, GA 30301" +186199,Wired Headphones,1,11.99,03/10/19 13:13,"758 Lakeview St, Atlanta, GA 30301" +186200,Lightning Charging Cable,1,14.95,03/09/19 12:39,"977 Center St, San Francisco, CA 94016" +186201,Lightning Charging Cable,1,14.95,03/20/19 22:45,"212 11th St, Austin, TX 73301" +186202,AA Batteries (4-pack),2,3.84,03/09/19 18:11,"979 Elm St, Los Angeles, CA 90001" +186203,Bose SoundSport Headphones,1,99.99,03/15/19 17:52,"999 9th St, Los Angeles, CA 90001" +186204,AAA Batteries (4-pack),3,2.99,03/18/19 22:51,"521 13th St, San Francisco, CA 94016" +186205,Apple Airpods Headphones,1,150,03/23/19 18:08,"172 Main St, Boston, MA 02215" +186206,Wired Headphones,1,11.99,03/29/19 13:02,"834 Church St, Portland, OR 97035" +186207,Bose SoundSport Headphones,1,99.99,03/24/19 12:00,"415 Maple St, Dallas, TX 75001" +186208,AA Batteries (4-pack),1,3.84,03/28/19 11:02,"945 13th St, New York City, NY 10001" +186209,Bose SoundSport Headphones,1,99.99,03/25/19 11:40,"333 Pine St, San Francisco, CA 94016" +186210,Vareebadd Phone,1,400,03/02/19 10:23,"558 12th St, Seattle, WA 98101" +186211,Apple Airpods Headphones,1,150,03/28/19 18:01,"365 Forest St, Austin, TX 73301" +186212,AAA Batteries (4-pack),2,2.99,03/11/19 02:42,"674 4th St, Seattle, WA 98101" +186213,USB-C Charging Cable,1,11.95,03/18/19 11:13,"588 Sunset St, Boston, MA 02215" +186214,Apple Airpods Headphones,1,150,03/10/19 10:27,"704 Spruce St, Dallas, TX 75001" +186215,Wired Headphones,1,11.99,03/31/19 06:11,"749 River St, New York City, NY 10001" +186216,USB-C Charging Cable,1,11.95,03/26/19 21:04,"539 Forest St, San Francisco, CA 94016" +186217,27in 4K Gaming Monitor,1,389.99,03/30/19 17:16,"675 Park St, Los Angeles, CA 90001" +186218,Wired Headphones,1,11.99,03/27/19 21:56,"932 Highland St, San Francisco, CA 94016" +186219,USB-C Charging Cable,1,11.95,03/10/19 15:07,"599 Willow St, Boston, MA 02215" +186220,AA Batteries (4-pack),2,3.84,03/30/19 09:42,"333 Meadow St, Seattle, WA 98101" +186221,20in Monitor,1,109.99,03/06/19 15:16,"525 Madison St, San Francisco, CA 94016" +186222,Wired Headphones,1,11.99,03/30/19 09:57,"46 Washington St, Seattle, WA 98101" +186223,AA Batteries (4-pack),1,3.84,03/08/19 11:00,"511 River St, Los Angeles, CA 90001" +186224,34in Ultrawide Monitor,1,379.99,03/25/19 23:37,"510 Maple St, Seattle, WA 98101" +186225,AAA Batteries (4-pack),2,2.99,03/27/19 19:32,"811 Cedar St, Seattle, WA 98101" +186226,AA Batteries (4-pack),1,3.84,03/24/19 13:56,"879 Dogwood St, Austin, TX 73301" +186227,Wired Headphones,1,11.99,03/25/19 06:33,"385 River St, Seattle, WA 98101" +186228,AAA Batteries (4-pack),1,2.99,03/16/19 17:37,"214 Jefferson St, Boston, MA 02215" +186229,AA Batteries (4-pack),1,3.84,03/09/19 13:37,"391 10th St, Seattle, WA 98101" +186230,Google Phone,1,600,03/21/19 10:41,"889 13th St, Seattle, WA 98101" +186231,Apple Airpods Headphones,1,150,03/14/19 11:28,"657 Cherry St, Dallas, TX 75001" +186232,Lightning Charging Cable,1,14.95,03/10/19 17:48,"700 2nd St, San Francisco, CA 94016" +186233,USB-C Charging Cable,1,11.95,03/04/19 22:56,"641 Center St, Portland, OR 97035" +186234,AAA Batteries (4-pack),3,2.99,03/25/19 16:46,"321 Washington St, Los Angeles, CA 90001" +186235,Bose SoundSport Headphones,1,99.99,03/15/19 18:05,"413 Pine St, Los Angeles, CA 90001" +186236,Bose SoundSport Headphones,1,99.99,03/07/19 13:46,"514 Spruce St, Dallas, TX 75001" +186237,34in Ultrawide Monitor,1,379.99,03/16/19 00:09,"731 Willow St, Portland, OR 97035" +186238,Lightning Charging Cable,1,14.95,03/25/19 10:42,"241 9th St, San Francisco, CA 94016" +186239,27in FHD Monitor,1,149.99,03/20/19 16:32,"597 Maple St, Atlanta, GA 30301" +186240,USB-C Charging Cable,1,11.95,03/16/19 17:46,"886 2nd St, Seattle, WA 98101" +186240,AA Batteries (4-pack),3,3.84,03/16/19 17:46,"886 2nd St, Seattle, WA 98101" +186241,AAA Batteries (4-pack),1,2.99,03/21/19 10:36,"882 Lincoln St, Portland, OR 97035" +186241,USB-C Charging Cable,1,11.95,03/21/19 10:36,"882 Lincoln St, Portland, OR 97035" +186242,Macbook Pro Laptop,1,1700,03/05/19 22:24,"614 Center St, New York City, NY 10001" +186243,20in Monitor,1,109.99,03/21/19 11:59,"691 North St, Boston, MA 02215" +186244,Google Phone,1,600,03/31/19 16:49,"330 Ridge St, Austin, TX 73301" +186245,20in Monitor,1,109.99,03/14/19 19:07,"785 Highland St, Dallas, TX 75001" +186246,20in Monitor,1,109.99,03/10/19 00:36,"338 Main St, Los Angeles, CA 90001" +186247,Lightning Charging Cable,1,14.95,03/16/19 23:02,"249 Lake St, Seattle, WA 98101" +186248,AAA Batteries (4-pack),1,2.99,03/23/19 23:53,"642 River St, Dallas, TX 75001" +186249,AAA Batteries (4-pack),1,2.99,03/10/19 10:40,"246 Lincoln St, New York City, NY 10001" +186249,USB-C Charging Cable,1,11.95,03/10/19 10:40,"246 Lincoln St, New York City, NY 10001" +186250,AA Batteries (4-pack),4,3.84,03/08/19 18:36,"110 Highland St, San Francisco, CA 94016" +186251,USB-C Charging Cable,1,11.95,03/15/19 14:21,"248 Park St, Portland, OR 97035" +186252,USB-C Charging Cable,1,11.95,03/16/19 08:51,"143 River St, Atlanta, GA 30301" +186253,Lightning Charging Cable,1,14.95,03/17/19 16:14,"306 Lake St, San Francisco, CA 94016" +186254,Bose SoundSport Headphones,1,99.99,03/25/19 18:08,"383 11th St, Los Angeles, CA 90001" +186255,AAA Batteries (4-pack),2,2.99,03/19/19 08:27,"173 Park St, Austin, TX 73301" +186256,Apple Airpods Headphones,1,150,03/19/19 19:03,"985 Dogwood St, San Francisco, CA 94016" +186257,AAA Batteries (4-pack),1,2.99,03/08/19 16:39,"183 Maple St, Dallas, TX 75001" +186258,20in Monitor,1,109.99,03/25/19 01:56,"224 Park St, San Francisco, CA 94016" +186259,Macbook Pro Laptop,1,1700,03/18/19 18:22,"954 10th St, Dallas, TX 75001" +186260,Vareebadd Phone,1,400,03/26/19 20:40,"682 River St, Austin, TX 73301" +186261,27in 4K Gaming Monitor,1,389.99,03/09/19 17:11,"6 Meadow St, Dallas, TX 75001" +186262,27in FHD Monitor,1,149.99,03/04/19 13:10,"746 2nd St, Atlanta, GA 30301" +186263,Apple Airpods Headphones,1,150,03/22/19 12:28,"315 Walnut St, New York City, NY 10001" +186264,AA Batteries (4-pack),1,3.84,03/30/19 11:53,"498 2nd St, Seattle, WA 98101" +186265,Lightning Charging Cable,1,14.95,03/12/19 09:37,"389 Sunset St, Los Angeles, CA 90001" +186266,ThinkPad Laptop,1,999.99,03/23/19 14:37,"46 Washington St, San Francisco, CA 94016" +186267,AA Batteries (4-pack),1,3.84,03/09/19 23:10,"378 Chestnut St, Atlanta, GA 30301" +186268,Lightning Charging Cable,1,14.95,03/04/19 15:34,"432 Willow St, San Francisco, CA 94016" +186269,Flatscreen TV,1,300,03/16/19 12:46,"788 Chestnut St, Los Angeles, CA 90001" +186270,AA Batteries (4-pack),1,3.84,03/18/19 17:23,"369 Ridge St, San Francisco, CA 94016" +186271,AAA Batteries (4-pack),1,2.99,03/31/19 15:25,"888 12th St, Los Angeles, CA 90001" +186272,Vareebadd Phone,1,400,03/03/19 16:55,"477 Hickory St, Los Angeles, CA 90001" +186272,USB-C Charging Cable,1,11.95,03/03/19 16:55,"477 Hickory St, Los Angeles, CA 90001" +186273,Lightning Charging Cable,1,14.95,03/24/19 17:01,"396 Jackson St, Atlanta, GA 30301" +186274,AA Batteries (4-pack),1,3.84,03/06/19 20:31,"630 4th St, San Francisco, CA 94016" +186275,USB-C Charging Cable,1,11.95,03/01/19 17:00,"256 4th St, San Francisco, CA 94016" +186276,34in Ultrawide Monitor,1,379.99,03/30/19 10:33,"300 Willow St, Portland, OR 97035" +186277,AAA Batteries (4-pack),1,2.99,03/24/19 03:21,"546 Meadow St, Dallas, TX 75001" +186278,27in FHD Monitor,1,149.99,03/07/19 08:09,"733 Willow St, Dallas, TX 75001" +186279,USB-C Charging Cable,1,11.95,03/16/19 11:00,"99 Cedar St, San Francisco, CA 94016" +186280,Apple Airpods Headphones,1,150,03/15/19 19:39,"889 Highland St, San Francisco, CA 94016" +186281,Apple Airpods Headphones,1,150,03/14/19 10:41,"230 Church St, San Francisco, CA 94016" +186282,Lightning Charging Cable,1,14.95,03/19/19 08:11,"422 8th St, San Francisco, CA 94016" +186283,Wired Headphones,1,11.99,03/22/19 17:54,"553 North St, Seattle, WA 98101" +186284,Lightning Charging Cable,1,14.95,03/27/19 18:19,"740 Center St, San Francisco, CA 94016" +186285,Lightning Charging Cable,1,14.95,03/13/19 12:04,"76 10th St, Seattle, WA 98101" +186286,AA Batteries (4-pack),1,3.84,03/09/19 12:33,"703 Pine St, Boston, MA 02215" +186287,USB-C Charging Cable,2,11.95,03/06/19 17:50,"415 12th St, San Francisco, CA 94016" +186288,Macbook Pro Laptop,1,1700,03/30/19 21:40,"986 Johnson St, Atlanta, GA 30301" +186289,34in Ultrawide Monitor,1,379.99,03/18/19 15:08,"16 South St, Seattle, WA 98101" +186290,27in FHD Monitor,1,149.99,03/25/19 23:01,"168 Jackson St, Los Angeles, CA 90001" +186291,Apple Airpods Headphones,1,150,03/15/19 20:17,"965 Willow St, Los Angeles, CA 90001" +186292,Wired Headphones,1,11.99,03/05/19 21:01,"722 South St, New York City, NY 10001" +186293,USB-C Charging Cable,1,11.95,03/13/19 20:24,"192 Ridge St, Dallas, TX 75001" +186294,AA Batteries (4-pack),1,3.84,03/01/19 16:05,"768 Pine St, New York City, NY 10001" +186295,AAA Batteries (4-pack),1,2.99,03/01/19 10:53,"487 Johnson St, New York City, NY 10001" +186296,34in Ultrawide Monitor,1,379.99,03/25/19 16:34,"590 Johnson St, San Francisco, CA 94016" +186297,27in 4K Gaming Monitor,1,389.99,03/05/19 11:58,"53 Maple St, Atlanta, GA 30301" +186298,iPhone,1,700,03/05/19 19:25,"212 14th St, Boston, MA 02215" +186298,Wired Headphones,1,11.99,03/05/19 19:25,"212 14th St, Boston, MA 02215" +186299,27in 4K Gaming Monitor,1,389.99,03/22/19 19:33,"292 Washington St, Los Angeles, CA 90001" +186300,Wired Headphones,1,11.99,03/30/19 12:27,"673 Pine St, Los Angeles, CA 90001" +186301,AAA Batteries (4-pack),1,2.99,03/15/19 08:22,"634 9th St, Seattle, WA 98101" +186302,27in 4K Gaming Monitor,1,389.99,03/12/19 22:14,"121 Elm St, Atlanta, GA 30301" +186303,Wired Headphones,2,11.99,03/05/19 18:59,"15 6th St, New York City, NY 10001" +186304,USB-C Charging Cable,1,11.95,03/19/19 13:56,"9 Lincoln St, Los Angeles, CA 90001" +186305,20in Monitor,1,109.99,03/09/19 07:35,"566 13th St, San Francisco, CA 94016" +186306,Lightning Charging Cable,1,14.95,03/15/19 11:56,"100 Cherry St, Boston, MA 02215" +186307,Apple Airpods Headphones,1,150,03/22/19 10:18,"536 Willow St, Los Angeles, CA 90001" +186308,USB-C Charging Cable,1,11.95,03/23/19 11:00,"237 Chestnut St, Dallas, TX 75001" +186309,iPhone,1,700,03/14/19 16:41,"496 Maple St, Dallas, TX 75001" +186310,AA Batteries (4-pack),1,3.84,03/02/19 15:45,"749 Main St, Portland, OR 97035" +186311,Apple Airpods Headphones,1,150,03/12/19 13:17,"479 Lakeview St, Atlanta, GA 30301" +186312,Apple Airpods Headphones,1,150,03/23/19 12:30,"977 Church St, Dallas, TX 75001" +186313,Lightning Charging Cable,1,14.95,03/31/19 17:01,"65 Madison St, Boston, MA 02215" +186314,USB-C Charging Cable,1,11.95,03/08/19 19:37,"541 Lincoln St, Los Angeles, CA 90001" +186315,Flatscreen TV,1,300,03/29/19 18:29,"679 Chestnut St, Los Angeles, CA 90001" +186316,AA Batteries (4-pack),3,3.84,03/30/19 20:05,"405 Madison St, Seattle, WA 98101" +186317,Apple Airpods Headphones,1,150,03/06/19 10:23,"877 2nd St, Dallas, TX 75001" +186318,AA Batteries (4-pack),1,3.84,03/16/19 09:33,"697 14th St, San Francisco, CA 94016" +186319,USB-C Charging Cable,1,11.95,03/13/19 16:29,"632 Church St, Portland, OR 97035" +186320,Apple Airpods Headphones,1,150,03/26/19 12:03,"698 6th St, San Francisco, CA 94016" +186321,34in Ultrawide Monitor,1,379.99,03/28/19 21:49,"541 7th St, Los Angeles, CA 90001" +186322,34in Ultrawide Monitor,1,379.99,03/05/19 12:49,"17 10th St, Los Angeles, CA 90001" +186323,Apple Airpods Headphones,1,150,03/13/19 08:20,"118 Lakeview St, Boston, MA 02215" +186324,Apple Airpods Headphones,1,150,03/13/19 21:39,"382 Johnson St, Austin, TX 73301" +186325,Lightning Charging Cable,1,14.95,03/29/19 22:14,"652 11th St, Dallas, TX 75001" +186326,Lightning Charging Cable,1,14.95,03/16/19 21:39,"89 Sunset St, Atlanta, GA 30301" +186327,USB-C Charging Cable,1,11.95,03/08/19 16:29,"308 Meadow St, Boston, MA 02215" +186328,Lightning Charging Cable,1,14.95,03/31/19 11:13,"907 6th St, New York City, NY 10001" +186329,USB-C Charging Cable,1,11.95,03/22/19 20:58,"263 Cedar St, Boston, MA 02215" +186330,USB-C Charging Cable,1,11.95,03/01/19 19:03,"582 Lake St, San Francisco, CA 94016" +186331,USB-C Charging Cable,1,11.95,03/19/19 12:12,"686 13th St, New York City, NY 10001" +186332,27in FHD Monitor,1,149.99,03/09/19 19:12,"633 Lakeview St, Atlanta, GA 30301" +186333,USB-C Charging Cable,1,11.95,03/15/19 16:40,"442 10th St, Seattle, WA 98101" +186334,ThinkPad Laptop,1,999.99,03/08/19 15:14,"716 9th St, Los Angeles, CA 90001" +186335,Bose SoundSport Headphones,1,99.99,03/25/19 07:34,"647 Dogwood St, Boston, MA 02215" +186336,27in 4K Gaming Monitor,1,389.99,03/20/19 11:35,"555 Hill St, San Francisco, CA 94016" +186337,Wired Headphones,1,11.99,03/22/19 00:42,"148 Willow St, Los Angeles, CA 90001" +186338,Bose SoundSport Headphones,1,99.99,03/28/19 13:47,"671 9th St, Boston, MA 02215" +186338,AAA Batteries (4-pack),1,2.99,03/28/19 13:47,"671 9th St, Boston, MA 02215" +186339,AA Batteries (4-pack),1,3.84,04/01/19 00:03,"901 Lake St, Los Angeles, CA 90001" +186340,AA Batteries (4-pack),1,3.84,03/17/19 09:55,"508 Center St, Dallas, TX 75001" +186341,Lightning Charging Cable,1,14.95,03/23/19 06:32,"548 4th St, Los Angeles, CA 90001" +186342,AA Batteries (4-pack),1,3.84,03/24/19 11:31,"169 Cherry St, New York City, NY 10001" +186343,USB-C Charging Cable,1,11.95,03/01/19 13:29,"675 Park St, San Francisco, CA 94016" +186344,Flatscreen TV,1,300,03/21/19 16:19,"998 14th St, New York City, NY 10001" +186345,Apple Airpods Headphones,1,150,03/17/19 18:21,"872 Chestnut St, Atlanta, GA 30301" +186346,USB-C Charging Cable,1,11.95,03/11/19 18:10,"560 Jefferson St, Atlanta, GA 30301" +186347,iPhone,1,700,03/19/19 11:29,"500 Hickory St, New York City, NY 10001" +186348,Google Phone,1,600,03/23/19 16:00,"231 Wilson St, Atlanta, GA 30301" +186348,Wired Headphones,1,11.99,03/23/19 16:00,"231 Wilson St, Atlanta, GA 30301" +186349,AAA Batteries (4-pack),1,2.99,03/19/19 07:01,"8 Church St, Atlanta, GA 30301" +186350,Apple Airpods Headphones,1,150,03/29/19 19:31,"433 Pine St, Portland, OR 97035" +186351,Wired Headphones,1,11.99,03/17/19 13:35,"543 Walnut St, New York City, NY 10001" +186352,AA Batteries (4-pack),1,3.84,03/14/19 21:11,"338 Hickory St, San Francisco, CA 94016" +186353,27in FHD Monitor,1,149.99,03/08/19 07:04,"654 Dogwood St, Austin, TX 73301" +186354,USB-C Charging Cable,1,11.95,03/04/19 15:26,"899 River St, New York City, NY 10001" +186355,AAA Batteries (4-pack),1,2.99,03/05/19 19:29,"663 Cedar St, Los Angeles, CA 90001" +186356,27in 4K Gaming Monitor,1,389.99,03/26/19 18:02,"467 1st St, San Francisco, CA 94016" +186357,34in Ultrawide Monitor,1,379.99,03/08/19 20:27,"89 11th St, New York City, NY 10001" +186358,Wired Headphones,1,11.99,03/27/19 15:19,"171 8th St, Austin, TX 73301" +186359,Macbook Pro Laptop,1,1700,03/08/19 19:27,"6 River St, Atlanta, GA 30301" +186360,USB-C Charging Cable,1,11.95,03/14/19 18:27,"17 Meadow St, Boston, MA 02215" +186361,USB-C Charging Cable,1,11.95,03/12/19 18:06,"585 Church St, San Francisco, CA 94016" +186362,iPhone,1,700,03/07/19 10:02,"621 Wilson St, San Francisco, CA 94016" +186363,Vareebadd Phone,1,400,03/23/19 07:54,"635 Washington St, Atlanta, GA 30301" +186364,20in Monitor,1,109.99,03/11/19 21:03,"454 9th St, Dallas, TX 75001" +186365,AA Batteries (4-pack),2,3.84,03/29/19 16:11,"369 Park St, Atlanta, GA 30301" +186366,Lightning Charging Cable,1,14.95,03/23/19 19:59,"761 Lincoln St, San Francisco, CA 94016" +186367,Bose SoundSport Headphones,1,99.99,03/23/19 06:32,"238 Meadow St, Atlanta, GA 30301" +186368,AAA Batteries (4-pack),1,2.99,03/21/19 21:28,"339 Highland St, New York City, NY 10001" +186369,AA Batteries (4-pack),1,3.84,03/06/19 20:17,"396 Cherry St, San Francisco, CA 94016" +186370,Wired Headphones,1,11.99,03/29/19 15:34,"305 Jefferson St, New York City, NY 10001" +186371,27in FHD Monitor,1,149.99,03/24/19 11:30,"313 12th St, Los Angeles, CA 90001" +186372,34in Ultrawide Monitor,1,379.99,03/02/19 21:31,"505 Church St, Dallas, TX 75001" +186373,Bose SoundSport Headphones,1,99.99,03/16/19 21:00,"766 Washington St, San Francisco, CA 94016" +186374,Macbook Pro Laptop,1,1700,03/30/19 20:40,"549 8th St, Portland, OR 97035" +186375,Flatscreen TV,1,300,03/07/19 18:12,"606 Walnut St, San Francisco, CA 94016" +186376,34in Ultrawide Monitor,1,379.99,03/21/19 21:33,"669 Church St, Boston, MA 02215" +186377,20in Monitor,1,109.99,03/27/19 23:43,"349 Johnson St, San Francisco, CA 94016" +186378,Google Phone,1,600,03/26/19 11:14,"156 Cherry St, Los Angeles, CA 90001" +186379,USB-C Charging Cable,1,11.95,03/30/19 05:40,"699 14th St, San Francisco, CA 94016" +186380,27in FHD Monitor,1,149.99,03/23/19 15:13,"306 Lake St, San Francisco, CA 94016" +186381,27in FHD Monitor,1,149.99,03/26/19 22:41,"663 North St, San Francisco, CA 94016" +186382,Bose SoundSport Headphones,1,99.99,03/22/19 22:10,"878 12th St, Portland, OR 97035" +186383,Apple Airpods Headphones,1,150,03/04/19 21:10,"336 4th St, Austin, TX 73301" +186384,ThinkPad Laptop,1,999.99,03/04/19 09:41,"973 12th St, Portland, OR 97035" +186385,Google Phone,1,600,03/17/19 10:39,"652 11th St, Atlanta, GA 30301" +186386,AAA Batteries (4-pack),1,2.99,03/22/19 11:08,"288 Spruce St, San Francisco, CA 94016" +186387,20in Monitor,1,109.99,03/30/19 16:23,"845 River St, Dallas, TX 75001" +186388,Lightning Charging Cable,1,14.95,03/08/19 20:07,"789 Walnut St, Seattle, WA 98101" +186389,USB-C Charging Cable,1,11.95,03/22/19 16:43,"872 5th St, San Francisco, CA 94016" +186390,Bose SoundSport Headphones,1,99.99,03/04/19 13:21,"255 Washington St, New York City, NY 10001" +186391,AA Batteries (4-pack),1,3.84,03/06/19 00:04,"629 Maple St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +186392,AA Batteries (4-pack),1,3.84,03/01/19 15:43,"725 Spruce St, San Francisco, CA 94016" +186393,Apple Airpods Headphones,1,150,03/30/19 08:24,"322 Ridge St, San Francisco, CA 94016" +186394,Vareebadd Phone,1,400,04/01/19 03:14,"49 Main St, New York City, NY 10001" +186395,Apple Airpods Headphones,1,150,03/31/19 11:09,"939 Lincoln St, Portland, ME 04101" +186396,Lightning Charging Cable,1,14.95,03/08/19 16:03,"501 Lake St, New York City, NY 10001" +186397,Wired Headphones,1,11.99,03/23/19 12:14,"771 Lakeview St, Los Angeles, CA 90001" +186398,34in Ultrawide Monitor,1,379.99,03/04/19 17:38,"953 Spruce St, Portland, OR 97035" +186399,Google Phone,1,600,03/26/19 21:04,"932 9th St, Los Angeles, CA 90001" +186399,USB-C Charging Cable,1,11.95,03/26/19 21:04,"932 9th St, Los Angeles, CA 90001" +186400,USB-C Charging Cable,1,11.95,03/14/19 10:35,"601 14th St, New York City, NY 10001" +186401,Apple Airpods Headphones,1,150,03/18/19 15:38,"342 4th St, New York City, NY 10001" +186402,AAA Batteries (4-pack),1,2.99,03/11/19 15:52,"127 River St, San Francisco, CA 94016" +186403,USB-C Charging Cable,1,11.95,03/03/19 11:58,"988 Pine St, Austin, TX 73301" +186404,AA Batteries (4-pack),1,3.84,03/18/19 20:15,"529 Elm St, Boston, MA 02215" +186405,Apple Airpods Headphones,1,150,03/17/19 10:22,"370 7th St, San Francisco, CA 94016" +186406,Apple Airpods Headphones,1,150,03/17/19 19:07,"19 8th St, Los Angeles, CA 90001" +186407,USB-C Charging Cable,1,11.95,03/16/19 20:59,"273 6th St, Boston, MA 02215" +186408,AAA Batteries (4-pack),1,2.99,03/30/19 22:35,"637 Madison St, San Francisco, CA 94016" +186409,USB-C Charging Cable,1,11.95,03/22/19 14:40,"507 Lakeview St, Dallas, TX 75001" +186410,34in Ultrawide Monitor,1,379.99,03/31/19 11:27,"744 Washington St, San Francisco, CA 94016" +186411,Lightning Charging Cable,1,14.95,03/11/19 12:30,"246 Chestnut St, San Francisco, CA 94016" +186412,Vareebadd Phone,1,400,03/15/19 11:08,"970 2nd St, San Francisco, CA 94016" +186413,Bose SoundSport Headphones,1,99.99,03/12/19 17:15,"695 Lakeview St, San Francisco, CA 94016" +186414,34in Ultrawide Monitor,1,379.99,03/26/19 22:45,"957 Sunset St, Boston, MA 02215" +186415,USB-C Charging Cable,2,11.95,03/24/19 01:13,"289 Adams St, San Francisco, CA 94016" +186416,AA Batteries (4-pack),1,3.84,03/09/19 21:07,"180 Highland St, Boston, MA 02215" +186417,Macbook Pro Laptop,1,1700,03/07/19 21:17,"645 Walnut St, Atlanta, GA 30301" +186418,AAA Batteries (4-pack),1,2.99,03/05/19 21:44,"485 Wilson St, Los Angeles, CA 90001" +186419,27in FHD Monitor,1,149.99,03/02/19 22:04,"390 Forest St, Dallas, TX 75001" +186420,AA Batteries (4-pack),1,3.84,03/04/19 17:26,"37 Lincoln St, Boston, MA 02215" +186420,Lightning Charging Cable,1,14.95,03/04/19 17:26,"37 Lincoln St, Boston, MA 02215" +186421,AAA Batteries (4-pack),1,2.99,03/15/19 09:31,"221 5th St, Boston, MA 02215" +186422,Apple Airpods Headphones,1,150,03/29/19 12:46,"961 Center St, Boston, MA 02215" +186423,Wired Headphones,1,11.99,03/29/19 12:44,"293 7th St, Atlanta, GA 30301" +186424,USB-C Charging Cable,1,11.95,03/05/19 11:51,"780 Dogwood St, San Francisco, CA 94016" +186425,Macbook Pro Laptop,1,1700,03/25/19 17:41,"561 Maple St, San Francisco, CA 94016" +186426,Macbook Pro Laptop,1,1700,03/14/19 12:49,"424 Walnut St, San Francisco, CA 94016" +186427,ThinkPad Laptop,1,999.99,03/12/19 19:58,"88 9th St, Los Angeles, CA 90001" +186428,USB-C Charging Cable,1,11.95,03/25/19 10:09,"634 Walnut St, Boston, MA 02215" +186429,27in 4K Gaming Monitor,1,389.99,03/21/19 19:07,"234 1st St, Austin, TX 73301" +186430,USB-C Charging Cable,1,11.95,03/29/19 11:30,"641 10th St, Seattle, WA 98101" +186431,Wired Headphones,1,11.99,03/06/19 19:30,"812 Spruce St, Dallas, TX 75001" +186432,Google Phone,1,600,03/05/19 13:37,"8 Washington St, San Francisco, CA 94016" +186432,Bose SoundSport Headphones,1,99.99,03/05/19 13:37,"8 Washington St, San Francisco, CA 94016" +186433,USB-C Charging Cable,1,11.95,03/14/19 12:50,"799 5th St, Atlanta, GA 30301" +186434,AA Batteries (4-pack),2,3.84,03/16/19 20:11,"456 5th St, Los Angeles, CA 90001" +186435,Wired Headphones,1,11.99,03/17/19 17:32,"39 North St, San Francisco, CA 94016" +186436,Bose SoundSport Headphones,1,99.99,03/28/19 15:52,"109 Forest St, San Francisco, CA 94016" +186437,Wired Headphones,1,11.99,03/04/19 19:02,"948 Willow St, Los Angeles, CA 90001" +186438,Lightning Charging Cable,1,14.95,03/31/19 19:30,"672 Walnut St, New York City, NY 10001" +186439,AAA Batteries (4-pack),1,2.99,03/27/19 15:07,"566 Center St, San Francisco, CA 94016" +186440,Wired Headphones,1,11.99,03/27/19 21:44,"865 North St, Atlanta, GA 30301" +186441,AAA Batteries (4-pack),1,2.99,03/01/19 12:07,"687 Spruce St, San Francisco, CA 94016" +186442,Wired Headphones,1,11.99,03/03/19 23:48,"710 Dogwood St, Los Angeles, CA 90001" +186443,Wired Headphones,1,11.99,03/31/19 16:38,"935 Highland St, Los Angeles, CA 90001" +186444,Bose SoundSport Headphones,1,99.99,03/08/19 16:06,"495 12th St, New York City, NY 10001" +186445,27in 4K Gaming Monitor,1,389.99,03/23/19 21:33,"762 Cedar St, Portland, OR 97035" +186446,27in 4K Gaming Monitor,1,389.99,03/04/19 15:47,"405 Meadow St, Boston, MA 02215" +186447,USB-C Charging Cable,1,11.95,03/17/19 21:07,"172 Church St, Dallas, TX 75001" +186448,USB-C Charging Cable,1,11.95,03/21/19 14:00,"269 14th St, New York City, NY 10001" +186449,Bose SoundSport Headphones,1,99.99,03/03/19 23:31,"704 Lake St, Boston, MA 02215" +186450,Lightning Charging Cable,1,14.95,03/25/19 16:40,"540 1st St, Los Angeles, CA 90001" +186451,Apple Airpods Headphones,1,150,03/02/19 20:38,"732 Walnut St, San Francisco, CA 94016" +186452,Bose SoundSport Headphones,1,99.99,03/28/19 15:04,"477 Madison St, Austin, TX 73301" +186453,Wired Headphones,1,11.99,03/23/19 22:41,"220 North St, Seattle, WA 98101" +186454,AAA Batteries (4-pack),1,2.99,03/25/19 20:50,"372 6th St, Seattle, WA 98101" +186455,Lightning Charging Cable,1,14.95,03/28/19 07:16,"926 Johnson St, New York City, NY 10001" +186456,AA Batteries (4-pack),2,3.84,03/24/19 14:31,"588 Meadow St, Seattle, WA 98101" +186457,AA Batteries (4-pack),1,3.84,03/16/19 04:41,"12 Center St, San Francisco, CA 94016" +186458,USB-C Charging Cable,1,11.95,03/31/19 11:40,"370 12th St, New York City, NY 10001" +186459,Lightning Charging Cable,1,14.95,03/15/19 23:14,"34 Cedar St, Los Angeles, CA 90001" +186460,Flatscreen TV,1,300,03/22/19 18:37,"96 Walnut St, Los Angeles, CA 90001" +186461,AAA Batteries (4-pack),1,2.99,03/20/19 23:16,"523 Jackson St, San Francisco, CA 94016" +186462,Bose SoundSport Headphones,1,99.99,03/03/19 18:03,"802 Hickory St, Atlanta, GA 30301" +186463,USB-C Charging Cable,1,11.95,03/17/19 09:40,"607 Elm St, New York City, NY 10001" +186464,AA Batteries (4-pack),1,3.84,03/03/19 11:42,"223 Madison St, Boston, MA 02215" +186465,USB-C Charging Cable,1,11.95,03/27/19 16:29,"6 Willow St, Boston, MA 02215" +186466,AA Batteries (4-pack),2,3.84,03/09/19 06:55,"391 Park St, Los Angeles, CA 90001" +186467,USB-C Charging Cable,1,11.95,03/09/19 21:19,"109 12th St, Boston, MA 02215" +186468,AA Batteries (4-pack),1,3.84,03/17/19 16:54,"739 Meadow St, Seattle, WA 98101" +186469,AA Batteries (4-pack),1,3.84,03/27/19 21:20,"476 Lake St, Boston, MA 02215" +186470,Apple Airpods Headphones,1,150,03/06/19 07:53,"883 Meadow St, San Francisco, CA 94016" +186471,Wired Headphones,1,11.99,03/05/19 12:24,"476 Spruce St, Atlanta, GA 30301" +186472,AA Batteries (4-pack),1,3.84,03/08/19 16:24,"577 Dogwood St, San Francisco, CA 94016" +186473,34in Ultrawide Monitor,1,379.99,03/26/19 05:46,"813 Hill St, San Francisco, CA 94016" +186474,Bose SoundSport Headphones,1,99.99,03/22/19 21:32,"952 Lakeview St, Portland, OR 97035" +186475,AA Batteries (4-pack),1,3.84,03/01/19 11:17,"779 Chestnut St, Seattle, WA 98101" +186476,Wired Headphones,1,11.99,03/24/19 11:35,"145 West St, New York City, NY 10001" +186477,27in 4K Gaming Monitor,1,389.99,03/01/19 08:35,"751 10th St, Los Angeles, CA 90001" +186478,Wired Headphones,1,11.99,03/30/19 17:40,"961 Center St, Austin, TX 73301" +186479,Lightning Charging Cable,1,14.95,03/31/19 09:26,"209 Church St, Los Angeles, CA 90001" +186480,Macbook Pro Laptop,1,1700,03/29/19 11:39,"137 5th St, Los Angeles, CA 90001" +186481,USB-C Charging Cable,1,11.95,03/13/19 09:32,"706 Dogwood St, San Francisco, CA 94016" +186482,20in Monitor,1,109.99,03/10/19 15:17,"628 Walnut St, San Francisco, CA 94016" +186483,Wired Headphones,1,11.99,03/30/19 12:45,"390 Adams St, San Francisco, CA 94016" +186484,USB-C Charging Cable,1,11.95,03/16/19 12:32,"565 Cedar St, San Francisco, CA 94016" +186485,Bose SoundSport Headphones,1,99.99,03/12/19 23:47,"606 Washington St, Dallas, TX 75001" +186486,Macbook Pro Laptop,1,1700,03/23/19 06:37,"287 Elm St, Boston, MA 02215" +186487,27in FHD Monitor,1,149.99,03/18/19 21:05,"835 Dogwood St, Dallas, TX 75001" +186488,Lightning Charging Cable,1,14.95,03/03/19 20:30,"162 Dogwood St, Atlanta, GA 30301" +186489,Lightning Charging Cable,1,14.95,03/26/19 17:18,"596 Park St, Boston, MA 02215" +186490,Wired Headphones,1,11.99,03/31/19 17:44,"8 Center St, Atlanta, GA 30301" +186491,Google Phone,1,600,03/18/19 13:56,"181 West St, San Francisco, CA 94016" +186492,AAA Batteries (4-pack),1,2.99,03/23/19 15:26,"375 2nd St, Atlanta, GA 30301" +186493,iPhone,1,700,03/21/19 12:00,"834 Chestnut St, Boston, MA 02215" +186494,ThinkPad Laptop,1,999.99,03/12/19 20:15,"58 Park St, Los Angeles, CA 90001" +186495,Lightning Charging Cable,1,14.95,03/25/19 13:13,"135 Lakeview St, New York City, NY 10001" +186496,27in 4K Gaming Monitor,1,389.99,03/12/19 07:08,"112 South St, San Francisco, CA 94016" +186497,34in Ultrawide Monitor,1,379.99,03/07/19 08:07,"850 6th St, San Francisco, CA 94016" +186498,20in Monitor,1,109.99,03/20/19 14:42,"146 Willow St, Seattle, WA 98101" +186499,27in FHD Monitor,1,149.99,03/30/19 20:37,"622 Jackson St, San Francisco, CA 94016" +186500,USB-C Charging Cable,2,11.95,03/16/19 20:06,"992 Elm St, Los Angeles, CA 90001" +186501,Flatscreen TV,1,300,03/21/19 14:31,"842 Dogwood St, San Francisco, CA 94016" +186502,Apple Airpods Headphones,1,150,03/05/19 09:44,"225 West St, San Francisco, CA 94016" +186503,USB-C Charging Cable,1,11.95,03/12/19 17:39,"184 10th St, Boston, MA 02215" +186504,27in FHD Monitor,1,149.99,03/05/19 18:21,"236 Hill St, Atlanta, GA 30301" +186505,Macbook Pro Laptop,1,1700,03/05/19 12:19,"735 Willow St, New York City, NY 10001" +186506,Wired Headphones,1,11.99,03/22/19 14:14,"202 Spruce St, Dallas, TX 75001" +186507,Macbook Pro Laptop,1,1700,03/05/19 10:44,"671 Johnson St, Portland, ME 04101" +186508,Lightning Charging Cable,1,14.95,03/26/19 00:37,"48 Highland St, Los Angeles, CA 90001" +186509,Apple Airpods Headphones,1,150,03/15/19 15:59,"860 Forest St, Los Angeles, CA 90001" +186510,AAA Batteries (4-pack),1,2.99,03/10/19 20:23,"764 4th St, Atlanta, GA 30301" +186511,Macbook Pro Laptop,1,1700,03/23/19 23:23,"731 7th St, San Francisco, CA 94016" +186512,Wired Headphones,1,11.99,03/18/19 21:27,"113 Johnson St, Dallas, TX 75001" +186513,20in Monitor,1,109.99,03/01/19 11:57,"981 North St, San Francisco, CA 94016" +186514,Apple Airpods Headphones,1,150,03/28/19 21:05,"18 Center St, Los Angeles, CA 90001" +186515,USB-C Charging Cable,1,11.95,03/08/19 20:56,"218 Jefferson St, Los Angeles, CA 90001" +186516,34in Ultrawide Monitor,1,379.99,03/10/19 19:45,"566 Lakeview St, San Francisco, CA 94016" +186517,34in Ultrawide Monitor,1,379.99,03/20/19 06:44,"975 Hill St, New York City, NY 10001" +186518,AAA Batteries (4-pack),1,2.99,03/16/19 22:01,"711 Lincoln St, Los Angeles, CA 90001" +186519,Bose SoundSport Headphones,1,99.99,03/03/19 09:34,"69 Jefferson St, New York City, NY 10001" +186520,Wired Headphones,1,11.99,03/15/19 21:54,"117 Walnut St, New York City, NY 10001" +186521,Lightning Charging Cable,1,14.95,03/02/19 17:56,"775 13th St, San Francisco, CA 94016" +186522,27in 4K Gaming Monitor,1,389.99,03/07/19 13:09,"815 6th St, Los Angeles, CA 90001" +186523,34in Ultrawide Monitor,1,379.99,03/16/19 11:14,"299 Jackson St, San Francisco, CA 94016" +186524,AAA Batteries (4-pack),2,2.99,03/28/19 10:29,"18 Willow St, San Francisco, CA 94016" +186524,Google Phone,1,600,03/28/19 10:29,"18 Willow St, San Francisco, CA 94016" +186525,Bose SoundSport Headphones,1,99.99,03/25/19 07:18,"976 11th St, San Francisco, CA 94016" +186526,AA Batteries (4-pack),2,3.84,03/25/19 19:05,"274 6th St, Seattle, WA 98101" +186527,Bose SoundSport Headphones,1,99.99,03/13/19 07:16,"588 Forest St, Boston, MA 02215" +186528,27in FHD Monitor,1,149.99,03/23/19 10:47,"993 4th St, Dallas, TX 75001" +186529,Apple Airpods Headphones,1,150,03/25/19 19:01,"419 West St, New York City, NY 10001" +186530,USB-C Charging Cable,1,11.95,03/14/19 23:35,"835 Wilson St, Austin, TX 73301" +186531,Lightning Charging Cable,1,14.95,03/30/19 17:58,"970 Ridge St, New York City, NY 10001" +186531,Bose SoundSport Headphones,1,99.99,03/30/19 17:58,"970 Ridge St, New York City, NY 10001" +186532,20in Monitor,1,109.99,03/09/19 11:26,"555 Meadow St, Atlanta, GA 30301" +186533,USB-C Charging Cable,1,11.95,03/14/19 06:09,"452 2nd St, San Francisco, CA 94016" +186534,USB-C Charging Cable,1,11.95,03/14/19 04:33,"467 6th St, New York City, NY 10001" +186535,AA Batteries (4-pack),1,3.84,03/19/19 14:55,"912 14th St, Dallas, TX 75001" +186536,Wired Headphones,1,11.99,03/09/19 23:23,"195 Lake St, Boston, MA 02215" +186537,34in Ultrawide Monitor,1,379.99,03/10/19 08:48,"774 Washington St, Seattle, WA 98101" +186538,USB-C Charging Cable,2,11.95,03/31/19 11:39,"289 Lakeview St, New York City, NY 10001" +186539,AAA Batteries (4-pack),2,2.99,03/28/19 19:50,"890 Lakeview St, New York City, NY 10001" +186540,Bose SoundSport Headphones,1,99.99,03/18/19 20:10,"884 5th St, New York City, NY 10001" +186541,Lightning Charging Cable,1,14.95,03/06/19 16:31,"470 Pine St, Dallas, TX 75001" +186542,AA Batteries (4-pack),1,3.84,03/03/19 15:47,"788 River St, San Francisco, CA 94016" +186543,USB-C Charging Cable,1,11.95,03/18/19 17:22,"106 12th St, Boston, MA 02215" +186544,Bose SoundSport Headphones,1,99.99,03/09/19 02:50,"370 Church St, San Francisco, CA 94016" +186545,USB-C Charging Cable,1,11.95,03/17/19 19:11,"610 Lincoln St, Los Angeles, CA 90001" +186546,Bose SoundSport Headphones,1,99.99,03/07/19 16:35,"844 Walnut St, San Francisco, CA 94016" +186547,Wired Headphones,1,11.99,03/17/19 00:27,"143 4th St, Austin, TX 73301" +186548,AA Batteries (4-pack),2,3.84,03/03/19 19:54,"367 Chestnut St, Los Angeles, CA 90001" +186549,iPhone,1,700,03/29/19 21:38,"936 Lakeview St, New York City, NY 10001" +186550,AAA Batteries (4-pack),1,2.99,03/08/19 09:27,"919 2nd St, San Francisco, CA 94016" +186551,27in FHD Monitor,1,149.99,03/11/19 22:19,"796 Spruce St, Boston, MA 02215" +186552,AA Batteries (4-pack),1,3.84,03/18/19 15:48,"85 4th St, Atlanta, GA 30301" +186553,USB-C Charging Cable,1,11.95,03/06/19 10:28,"702 Center St, Austin, TX 73301" +186554,iPhone,1,700,03/12/19 17:22,"121 Spruce St, New York City, NY 10001" +186555,USB-C Charging Cable,1,11.95,03/27/19 14:12,"846 13th St, Los Angeles, CA 90001" +186556,27in FHD Monitor,1,149.99,03/08/19 11:18,"500 Spruce St, Los Angeles, CA 90001" +186557,27in 4K Gaming Monitor,1,389.99,03/21/19 10:35,"564 Wilson St, New York City, NY 10001" +186557,AA Batteries (4-pack),1,3.84,03/21/19 10:35,"564 Wilson St, New York City, NY 10001" +186558,Bose SoundSport Headphones,1,99.99,03/31/19 19:34,"583 Washington St, Seattle, WA 98101" +186559,Google Phone,1,600,03/10/19 15:43,"116 4th St, San Francisco, CA 94016" +186560,Wired Headphones,1,11.99,03/02/19 22:59,"405 1st St, Portland, OR 97035" +186561,Bose SoundSport Headphones,1,99.99,03/13/19 18:00,"423 Center St, San Francisco, CA 94016" +186562,Lightning Charging Cable,1,14.95,03/14/19 09:05,"876 10th St, New York City, NY 10001" +186563,AAA Batteries (4-pack),1,2.99,03/19/19 14:32,"781 Sunset St, New York City, NY 10001" +186564,20in Monitor,1,109.99,03/13/19 12:09,"805 2nd St, Boston, MA 02215" +186565,AAA Batteries (4-pack),1,2.99,03/16/19 19:58,"922 Forest St, New York City, NY 10001" +186566,Google Phone,1,600,03/13/19 13:00,"673 Church St, Boston, MA 02215" +186567,AAA Batteries (4-pack),1,2.99,03/12/19 21:00,"576 Hickory St, Los Angeles, CA 90001" +186568,20in Monitor,1,109.99,03/31/19 15:46,"361 Spruce St, San Francisco, CA 94016" +186569,Lightning Charging Cable,1,14.95,03/28/19 19:12,"424 Spruce St, San Francisco, CA 94016" +186570,Bose SoundSport Headphones,1,99.99,03/01/19 16:06,"685 4th St, San Francisco, CA 94016" +186571,Google Phone,1,600,03/27/19 14:22,"155 Forest St, Los Angeles, CA 90001" +186572,Apple Airpods Headphones,1,150,03/14/19 01:10,"441 4th St, Boston, MA 02215" +186573,Apple Airpods Headphones,1,150,03/10/19 16:02,"574 6th St, Seattle, WA 98101" +186574,34in Ultrawide Monitor,1,379.99,03/10/19 16:16,"666 North St, San Francisco, CA 94016" +186575,Lightning Charging Cable,1,14.95,03/30/19 12:24,"43 Madison St, San Francisco, CA 94016" +186576,34in Ultrawide Monitor,1,379.99,03/09/19 17:52,"689 Main St, Portland, OR 97035" +186577,AA Batteries (4-pack),1,3.84,03/26/19 01:38,"602 Lakeview St, Boston, MA 02215" +186578,iPhone,1,700,03/05/19 21:02,"69 Wilson St, Atlanta, GA 30301" +186578,Lightning Charging Cable,1,14.95,03/05/19 21:02,"69 Wilson St, Atlanta, GA 30301" +186579,Lightning Charging Cable,1,14.95,03/30/19 00:37,"354 6th St, Los Angeles, CA 90001" +186580,Google Phone,1,600,03/18/19 18:49,"559 Walnut St, Dallas, TX 75001" +186581,27in 4K Gaming Monitor,1,389.99,03/07/19 11:58,"149 Forest St, Boston, MA 02215" +186582,Bose SoundSport Headphones,1,99.99,03/30/19 17:08,"704 Sunset St, Boston, MA 02215" +186583,Wired Headphones,1,11.99,03/29/19 16:41,"77 Elm St, Boston, MA 02215" +186584,Bose SoundSport Headphones,1,99.99,03/27/19 10:08,"767 Walnut St, San Francisco, CA 94016" +186585,Wired Headphones,1,11.99,03/03/19 18:12,"731 Elm St, Los Angeles, CA 90001" +186586,Wired Headphones,1,11.99,03/02/19 09:37,"455 9th St, Los Angeles, CA 90001" +186587,AA Batteries (4-pack),2,3.84,03/13/19 16:34,"511 13th St, San Francisco, CA 94016" +186588,Lightning Charging Cable,1,14.95,03/03/19 14:25,"809 Ridge St, Boston, MA 02215" +186589,AAA Batteries (4-pack),1,2.99,03/07/19 09:58,"58 West St, Los Angeles, CA 90001" +186590,AA Batteries (4-pack),1,3.84,03/11/19 17:17,"71 5th St, New York City, NY 10001" +186591,Lightning Charging Cable,1,14.95,03/01/19 15:46,"275 Adams St, New York City, NY 10001" +186592,AAA Batteries (4-pack),1,2.99,03/03/19 06:51,"472 1st St, Los Angeles, CA 90001" +186593,27in 4K Gaming Monitor,1,389.99,03/21/19 16:54,"144 9th St, Seattle, WA 98101" +186594,AAA Batteries (4-pack),1,2.99,03/13/19 09:31,"484 Center St, Seattle, WA 98101" +186595,Macbook Pro Laptop,1,1700,03/11/19 21:06,"578 Hickory St, San Francisco, CA 94016" +186596,Apple Airpods Headphones,1,150,03/12/19 10:10,"373 Lake St, Los Angeles, CA 90001" +186597,Lightning Charging Cable,1,14.95,03/16/19 12:21,"548 Lake St, San Francisco, CA 94016" +186598,USB-C Charging Cable,1,11.95,03/03/19 10:38,"661 Spruce St, Portland, OR 97035" +186599,AA Batteries (4-pack),1,3.84,03/15/19 08:11,"735 Walnut St, Boston, MA 02215" +186600,AA Batteries (4-pack),2,3.84,03/25/19 00:51,"751 Forest St, New York City, NY 10001" +186601,iPhone,1,700,03/02/19 19:27,"449 8th St, Austin, TX 73301" +186602,USB-C Charging Cable,1,11.95,03/23/19 14:02,"203 River St, Atlanta, GA 30301" +186603,USB-C Charging Cable,1,11.95,03/03/19 02:31,"83 Adams St, Seattle, WA 98101" +186604,Apple Airpods Headphones,1,150,03/05/19 03:50,"562 Hill St, New York City, NY 10001" +186605,Lightning Charging Cable,1,14.95,03/19/19 15:35,"608 5th St, Portland, OR 97035" +186606,27in 4K Gaming Monitor,1,389.99,03/04/19 00:24,"601 River St, San Francisco, CA 94016" +186607,Apple Airpods Headphones,1,150,03/01/19 16:38,"516 6th St, Portland, ME 04101" +186608,Vareebadd Phone,1,400,03/22/19 21:51,"707 North St, Boston, MA 02215" +186609,34in Ultrawide Monitor,1,379.99,03/30/19 00:53,"624 Johnson St, San Francisco, CA 94016" +186610,Apple Airpods Headphones,1,150,03/19/19 11:07,"421 South St, San Francisco, CA 94016" +186611,Google Phone,1,600,03/14/19 19:16,"730 4th St, New York City, NY 10001" +186612,Bose SoundSport Headphones,1,99.99,03/12/19 21:44,"703 5th St, San Francisco, CA 94016" +186613,AAA Batteries (4-pack),1,2.99,03/17/19 16:28,"992 Pine St, San Francisco, CA 94016" +186614,Lightning Charging Cable,1,14.95,03/18/19 17:37,"618 Washington St, Seattle, WA 98101" +186615,Lightning Charging Cable,1,14.95,03/27/19 15:28,"236 Adams St, Portland, OR 97035" +186616,AA Batteries (4-pack),3,3.84,03/31/19 20:42,"509 Dogwood St, Dallas, TX 75001" +186617,Wired Headphones,1,11.99,03/25/19 15:11,"713 Walnut St, San Francisco, CA 94016" +186618,Apple Airpods Headphones,1,150,03/31/19 19:45,"562 Willow St, Los Angeles, CA 90001" +186619,AA Batteries (4-pack),1,3.84,03/19/19 20:06,"770 Hill St, New York City, NY 10001" +186620,Wired Headphones,1,11.99,03/23/19 16:08,"994 Adams St, Los Angeles, CA 90001" +186621,USB-C Charging Cable,1,11.95,03/05/19 11:45,"631 River St, Boston, MA 02215" +186622,Bose SoundSport Headphones,1,99.99,03/27/19 22:43,"598 Lakeview St, Los Angeles, CA 90001" +186623,27in FHD Monitor,1,149.99,03/22/19 00:40,"107 Lake St, San Francisco, CA 94016" +186624,AAA Batteries (4-pack),1,2.99,03/18/19 12:29,"352 6th St, Austin, TX 73301" +186625,Wired Headphones,1,11.99,03/24/19 16:49,"673 Madison St, Portland, OR 97035" +186626,Wired Headphones,2,11.99,03/18/19 10:32,"877 Hill St, San Francisco, CA 94016" +186627,AA Batteries (4-pack),1,3.84,03/12/19 17:08,"521 Walnut St, Portland, OR 97035" +186628,Apple Airpods Headphones,1,150,03/12/19 09:30,"283 Washington St, San Francisco, CA 94016" +186629,AA Batteries (4-pack),1,3.84,03/23/19 13:39,"261 Hill St, Dallas, TX 75001" +186630,Vareebadd Phone,1,400,03/15/19 20:01,"135 13th St, Los Angeles, CA 90001" +186631,Apple Airpods Headphones,1,150,03/03/19 10:47,"975 Lakeview St, New York City, NY 10001" +186632,Wired Headphones,1,11.99,03/29/19 23:30,"501 7th St, San Francisco, CA 94016" +186633,27in 4K Gaming Monitor,1,389.99,03/12/19 14:39,"78 Lakeview St, New York City, NY 10001" +186634,USB-C Charging Cable,1,11.95,03/11/19 21:08,"770 Elm St, San Francisco, CA 94016" +186635,AAA Batteries (4-pack),1,2.99,03/27/19 16:13,"751 Spruce St, San Francisco, CA 94016" +186636,Lightning Charging Cable,1,14.95,03/19/19 12:44,"756 Walnut St, San Francisco, CA 94016" +186637,Macbook Pro Laptop,1,1700,03/10/19 10:55,"317 West St, New York City, NY 10001" +186638,Wired Headphones,1,11.99,03/24/19 23:13,"19 Hill St, Los Angeles, CA 90001" +186639,ThinkPad Laptop,1,999.99,03/13/19 15:33,"324 Cherry St, Boston, MA 02215" +186640,Lightning Charging Cable,1,14.95,03/08/19 14:04,"485 9th St, Boston, MA 02215" +186641,AAA Batteries (4-pack),1,2.99,03/04/19 20:56,"927 West St, San Francisco, CA 94016" +186642,Google Phone,1,600,03/05/19 17:41,"988 Hickory St, Los Angeles, CA 90001" +186643,Wired Headphones,1,11.99,03/11/19 05:26,"514 7th St, San Francisco, CA 94016" +186644,Google Phone,1,600,03/22/19 18:02,"953 5th St, Los Angeles, CA 90001" +186645,USB-C Charging Cable,1,11.95,03/23/19 15:55,"417 13th St, Boston, MA 02215" +186646,AAA Batteries (4-pack),1,2.99,03/05/19 22:18,"615 Highland St, San Francisco, CA 94016" +186646,USB-C Charging Cable,1,11.95,03/05/19 22:18,"615 Highland St, San Francisco, CA 94016" +186647,20in Monitor,1,109.99,03/13/19 13:11,"603 Hickory St, Los Angeles, CA 90001" +186648,AA Batteries (4-pack),3,3.84,03/16/19 21:51,"830 Park St, Boston, MA 02215" +186649,AAA Batteries (4-pack),1,2.99,03/19/19 12:00,"1 Pine St, Los Angeles, CA 90001" +186650,34in Ultrawide Monitor,1,379.99,03/24/19 16:30,"416 Meadow St, San Francisco, CA 94016" +186651,Bose SoundSport Headphones,1,99.99,03/11/19 21:41,"552 8th St, New York City, NY 10001" +186652,AAA Batteries (4-pack),4,2.99,03/27/19 18:55,"537 11th St, New York City, NY 10001" +186653,Apple Airpods Headphones,1,150,03/06/19 11:14,"512 Sunset St, San Francisco, CA 94016" +186654,Wired Headphones,1,11.99,03/04/19 09:52,"936 9th St, Los Angeles, CA 90001" +186655,Bose SoundSport Headphones,1,99.99,03/06/19 21:50,"836 Washington St, San Francisco, CA 94016" +186656,Google Phone,1,600,03/16/19 18:36,"410 Johnson St, Austin, TX 73301" +186657,AA Batteries (4-pack),1,3.84,03/13/19 23:12,"634 North St, Austin, TX 73301" +186658,Lightning Charging Cable,1,14.95,03/26/19 15:15,"622 North St, Atlanta, GA 30301" +186659,AA Batteries (4-pack),1,3.84,03/16/19 17:40,"93 Lakeview St, Seattle, WA 98101" +186660,Wired Headphones,1,11.99,03/26/19 13:14,"257 Hill St, Portland, OR 97035" +186661,AAA Batteries (4-pack),1,2.99,03/26/19 23:50,"912 Sunset St, Seattle, WA 98101" +186662,Wired Headphones,1,11.99,03/13/19 08:40,"729 Spruce St, Dallas, TX 75001" +186663,Flatscreen TV,1,300,03/05/19 20:42,"339 Cherry St, San Francisco, CA 94016" +186664,20in Monitor,1,109.99,03/28/19 21:49,"422 West St, San Francisco, CA 94016" +186665,Wired Headphones,1,11.99,03/31/19 22:18,"964 Center St, San Francisco, CA 94016" +186666,USB-C Charging Cable,1,11.95,03/11/19 19:40,"942 Cherry St, Atlanta, GA 30301" +186667,Apple Airpods Headphones,1,150,03/24/19 15:08,"311 7th St, New York City, NY 10001" +186668,AA Batteries (4-pack),1,3.84,03/04/19 21:49,"999 12th St, Los Angeles, CA 90001" +186669,AAA Batteries (4-pack),1,2.99,03/04/19 14:53,"299 Highland St, San Francisco, CA 94016" +186670,Apple Airpods Headphones,1,150,03/11/19 14:28,"351 Lakeview St, San Francisco, CA 94016" +186671,Lightning Charging Cable,1,14.95,03/09/19 10:13,"836 13th St, New York City, NY 10001" +186672,Lightning Charging Cable,1,14.95,03/07/19 17:00,"49 Johnson St, Portland, OR 97035" +186673,iPhone,1,700,03/15/19 13:01,"710 Chestnut St, Boston, MA 02215" +186673,27in 4K Gaming Monitor,1,389.99,03/15/19 13:01,"710 Chestnut St, Boston, MA 02215" +186674,27in 4K Gaming Monitor,1,389.99,03/21/19 18:29,"696 Spruce St, Boston, MA 02215" +186675,Bose SoundSport Headphones,1,99.99,03/25/19 21:04,"458 Washington St, Dallas, TX 75001" +186676,AAA Batteries (4-pack),1,2.99,03/07/19 23:01,"81 11th St, Los Angeles, CA 90001" +186677,AA Batteries (4-pack),1,3.84,03/02/19 19:12,"842 South St, Boston, MA 02215" +186678,Bose SoundSport Headphones,1,99.99,03/21/19 11:06,"568 Lake St, San Francisco, CA 94016" +186679,Apple Airpods Headphones,1,150,03/12/19 12:54,"927 5th St, New York City, NY 10001" +186680,Lightning Charging Cable,1,14.95,03/23/19 18:33,"677 Walnut St, Boston, MA 02215" +186681,USB-C Charging Cable,1,11.95,03/31/19 13:01,"935 10th St, Atlanta, GA 30301" +186682,USB-C Charging Cable,1,11.95,03/19/19 23:29,"338 North St, San Francisco, CA 94016" +186683,Flatscreen TV,1,300,03/14/19 20:19,"729 Adams St, Los Angeles, CA 90001" +186684,AA Batteries (4-pack),2,3.84,03/04/19 11:17,"840 5th St, San Francisco, CA 94016" +186685,AA Batteries (4-pack),3,3.84,03/29/19 19:58,"317 14th St, San Francisco, CA 94016" +186686,Lightning Charging Cable,1,14.95,03/05/19 21:42,"261 Johnson St, New York City, NY 10001" +186687,Google Phone,1,600,03/25/19 15:16,"226 Elm St, Seattle, WA 98101" +186688,Apple Airpods Headphones,1,150,03/02/19 12:26,"926 Sunset St, San Francisco, CA 94016" +186689,USB-C Charging Cable,1,11.95,03/20/19 11:30,"808 Maple St, New York City, NY 10001" +186690,AAA Batteries (4-pack),1,2.99,03/02/19 20:04,"660 Lake St, Atlanta, GA 30301" +186691,AAA Batteries (4-pack),2,2.99,03/08/19 00:54,"472 Willow St, Dallas, TX 75001" +186692,34in Ultrawide Monitor,1,379.99,03/24/19 00:17,"150 Jefferson St, San Francisco, CA 94016" +186693,AAA Batteries (4-pack),2,2.99,03/10/19 11:50,"356 Maple St, New York City, NY 10001" +186694,Apple Airpods Headphones,1,150,03/01/19 18:00,"889 Cherry St, San Francisco, CA 94016" +186695,Google Phone,1,600,03/07/19 13:10,"766 Center St, San Francisco, CA 94016" +186696,34in Ultrawide Monitor,1,379.99,03/31/19 12:51,"915 14th St, Boston, MA 02215" +186697,Wired Headphones,2,11.99,03/06/19 22:57,"615 9th St, Boston, MA 02215" +186698,AA Batteries (4-pack),1,3.84,03/28/19 11:39,"169 Willow St, Los Angeles, CA 90001" +186699,AA Batteries (4-pack),1,3.84,03/07/19 12:50,"905 10th St, Austin, TX 73301" +186700,AA Batteries (4-pack),1,3.84,03/31/19 01:20,"961 5th St, New York City, NY 10001" +186701,Wired Headphones,1,11.99,03/02/19 19:38,"405 Highland St, Austin, TX 73301" +186702,USB-C Charging Cable,1,11.95,03/11/19 06:57,"585 6th St, Boston, MA 02215" +186703,Lightning Charging Cable,1,14.95,03/22/19 09:18,"522 Jefferson St, Dallas, TX 75001" +186704,Apple Airpods Headphones,1,150,03/09/19 19:24,"656 Madison St, Seattle, WA 98101" +186705,AA Batteries (4-pack),1,3.84,03/25/19 12:08,"255 Maple St, Seattle, WA 98101" +186706,Google Phone,1,600,03/20/19 00:27,"285 Jackson St, Seattle, WA 98101" +186706,USB-C Charging Cable,1,11.95,03/20/19 00:27,"285 Jackson St, Seattle, WA 98101" +186706,Wired Headphones,1,11.99,03/20/19 00:27,"285 Jackson St, Seattle, WA 98101" +186707,ThinkPad Laptop,1,999.99,03/19/19 22:15,"764 Forest St, Los Angeles, CA 90001" +186708,iPhone,1,700,03/02/19 12:18,"761 Washington St, New York City, NY 10001" +186709,Macbook Pro Laptop,1,1700,03/19/19 11:09,"502 Hill St, New York City, NY 10001" +186710,Lightning Charging Cable,1,14.95,03/03/19 05:33,"284 Washington St, New York City, NY 10001" +186711,Flatscreen TV,1,300,03/01/19 15:29,"305 Wilson St, Dallas, TX 75001" +186712,Flatscreen TV,1,300,03/01/19 19:41,"155 11th St, Dallas, TX 75001" +186713,Lightning Charging Cable,1,14.95,03/29/19 13:52,"496 River St, San Francisco, CA 94016" +186714,Vareebadd Phone,1,400,03/13/19 13:29,"632 Pine St, Portland, OR 97035" +186714,27in 4K Gaming Monitor,1,389.99,03/13/19 13:29,"632 Pine St, Portland, OR 97035" +186715,27in 4K Gaming Monitor,1,389.99,03/25/19 21:56,"633 Pine St, San Francisco, CA 94016" +186716,USB-C Charging Cable,1,11.95,03/04/19 06:02,"176 2nd St, New York City, NY 10001" +186717,Lightning Charging Cable,1,14.95,03/04/19 13:43,"823 Lincoln St, Atlanta, GA 30301" +186718,USB-C Charging Cable,1,11.95,03/05/19 17:03,"837 5th St, Boston, MA 02215" +186719,Lightning Charging Cable,1,14.95,03/27/19 12:08,"771 Adams St, Portland, OR 97035" +186720,iPhone,1,700,03/01/19 15:39,"734 Lake St, San Francisco, CA 94016" +186721,Google Phone,1,600,03/22/19 22:20,"722 10th St, Los Angeles, CA 90001" +186722,Lightning Charging Cable,1,14.95,03/13/19 21:50,"726 6th St, San Francisco, CA 94016" +186723,AA Batteries (4-pack),2,3.84,03/21/19 20:41,"588 Willow St, Boston, MA 02215" +186724,27in FHD Monitor,1,149.99,03/09/19 22:15,"952 Chestnut St, Atlanta, GA 30301" +186725,Lightning Charging Cable,1,14.95,03/11/19 09:54,"851 Sunset St, Los Angeles, CA 90001" +186726,AA Batteries (4-pack),1,3.84,03/04/19 10:33,"456 9th St, Portland, OR 97035" +186727,Apple Airpods Headphones,1,150,03/11/19 13:44,"473 Willow St, San Francisco, CA 94016" +186728,Flatscreen TV,1,300,03/31/19 12:36,"224 Sunset St, Atlanta, GA 30301" +186729,USB-C Charging Cable,1,11.95,03/27/19 10:05,"271 North St, Seattle, WA 98101" +186730,Bose SoundSport Headphones,1,99.99,03/01/19 14:46,"251 4th St, Dallas, TX 75001" +186731,Google Phone,1,600,03/05/19 09:05,"306 2nd St, New York City, NY 10001" +186731,Wired Headphones,1,11.99,03/05/19 09:05,"306 2nd St, New York City, NY 10001" +186732,AA Batteries (4-pack),1,3.84,03/18/19 20:44,"997 Church St, San Francisco, CA 94016" +186733,AA Batteries (4-pack),4,3.84,03/25/19 19:35,"245 5th St, Boston, MA 02215" +186734,Bose SoundSport Headphones,1,99.99,03/27/19 17:07,"552 Highland St, Dallas, TX 75001" +186735,Wired Headphones,1,11.99,03/05/19 17:39,"525 9th St, Seattle, WA 98101" +186736,AA Batteries (4-pack),1,3.84,03/04/19 14:30,"472 Maple St, Boston, MA 02215" +186737,27in 4K Gaming Monitor,1,389.99,03/16/19 22:54,"188 Lincoln St, San Francisco, CA 94016" +186738,AAA Batteries (4-pack),1,2.99,03/23/19 18:18,"579 Wilson St, Boston, MA 02215" +186739,USB-C Charging Cable,1,11.95,03/22/19 15:28,"911 7th St, San Francisco, CA 94016" +186740,Bose SoundSport Headphones,1,99.99,03/29/19 03:09,"28 Hill St, Atlanta, GA 30301" +186741,AA Batteries (4-pack),1,3.84,03/07/19 21:56,"631 North St, New York City, NY 10001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +186742,AA Batteries (4-pack),1,3.84,03/13/19 10:33,"650 2nd St, Atlanta, GA 30301" +186743,USB-C Charging Cable,1,11.95,03/28/19 20:14,"563 7th St, Atlanta, GA 30301" +186744,Bose SoundSport Headphones,1,99.99,03/11/19 11:07,"141 Hill St, Austin, TX 73301" +186745,AA Batteries (4-pack),1,3.84,03/25/19 18:27,"894 Walnut St, Boston, MA 02215" +186746,iPhone,1,700,03/23/19 12:52,"455 Ridge St, Portland, OR 97035" +186746,Macbook Pro Laptop,1,1700,03/23/19 12:52,"455 Ridge St, Portland, OR 97035" +186747,Lightning Charging Cable,1,14.95,03/23/19 11:53,"345 Jefferson St, San Francisco, CA 94016" +186748,Apple Airpods Headphones,1,150,03/29/19 17:24,"552 Jefferson St, Dallas, TX 75001" +186749,Wired Headphones,1,11.99,03/29/19 02:11,"167 13th St, Atlanta, GA 30301" +186750,27in 4K Gaming Monitor,1,389.99,03/22/19 16:01,"823 River St, Boston, MA 02215" +186751,Wired Headphones,2,11.99,03/12/19 10:48,"18 Hickory St, San Francisco, CA 94016" +186752,Lightning Charging Cable,1,14.95,03/10/19 17:36,"739 8th St, San Francisco, CA 94016" +186753,AAA Batteries (4-pack),2,2.99,03/02/19 23:03,"209 14th St, Boston, MA 02215" +186754,AA Batteries (4-pack),1,3.84,03/20/19 19:24,"893 Spruce St, Portland, ME 04101" +186755,Lightning Charging Cable,1,14.95,03/18/19 13:56,"98 Center St, Seattle, WA 98101" +186756,iPhone,1,700,03/09/19 18:39,"607 Center St, Atlanta, GA 30301" +186757,Bose SoundSport Headphones,1,99.99,03/14/19 20:27,"382 Pine St, Boston, MA 02215" +186758,AAA Batteries (4-pack),1,2.99,03/28/19 15:05,"745 Elm St, Dallas, TX 75001" +186759,Bose SoundSport Headphones,1,99.99,03/18/19 00:58,"40 Lake St, Los Angeles, CA 90001" +186760,Lightning Charging Cable,1,14.95,03/01/19 16:46,"770 11th St, Boston, MA 02215" +186760,AA Batteries (4-pack),1,3.84,03/01/19 16:46,"770 11th St, Boston, MA 02215" +186761,AAA Batteries (4-pack),1,2.99,03/08/19 08:44,"811 Sunset St, San Francisco, CA 94016" +186762,Wired Headphones,1,11.99,03/11/19 14:05,"416 8th St, Portland, ME 04101" +186763,Bose SoundSport Headphones,1,99.99,03/16/19 16:47,"375 Lincoln St, Los Angeles, CA 90001" +186764,AA Batteries (4-pack),2,3.84,03/07/19 17:16,"329 1st St, Portland, ME 04101" +186765,AAA Batteries (4-pack),1,2.99,03/21/19 20:51,"837 Lincoln St, San Francisco, CA 94016" +186766,Lightning Charging Cable,3,14.95,03/30/19 23:35,"767 Park St, Dallas, TX 75001" +186767,Google Phone,1,600,03/06/19 09:54,"721 West St, New York City, NY 10001" +186768,Apple Airpods Headphones,1,150,03/04/19 07:41,"443 Lake St, San Francisco, CA 94016" +186769,27in 4K Gaming Monitor,1,389.99,03/15/19 19:18,"891 Jackson St, Los Angeles, CA 90001" +186770,Wired Headphones,1,11.99,03/22/19 21:48,"922 Adams St, Portland, OR 97035" +186771,Lightning Charging Cable,1,14.95,03/22/19 10:44,"418 Walnut St, San Francisco, CA 94016" +186771,34in Ultrawide Monitor,1,379.99,03/22/19 10:44,"418 Walnut St, San Francisco, CA 94016" +186772,Apple Airpods Headphones,1,150,03/21/19 20:39,"604 Hill St, New York City, NY 10001" +186773,27in 4K Gaming Monitor,1,389.99,03/12/19 09:23,"684 5th St, San Francisco, CA 94016" +186774,AAA Batteries (4-pack),1,2.99,03/10/19 19:05,"188 Pine St, Dallas, TX 75001" +186775,27in 4K Gaming Monitor,1,389.99,03/28/19 13:12,"781 Church St, San Francisco, CA 94016" +186776,Lightning Charging Cable,1,14.95,03/23/19 13:44,"176 9th St, Los Angeles, CA 90001" +186777,AAA Batteries (4-pack),2,2.99,03/23/19 12:05,"515 West St, Dallas, TX 75001" +186778,27in FHD Monitor,1,149.99,03/13/19 12:05,"168 Center St, Portland, ME 04101" +186779,Bose SoundSport Headphones,1,99.99,03/21/19 21:03,"108 Maple St, San Francisco, CA 94016" +186780,Lightning Charging Cable,1,14.95,03/05/19 07:25,"869 12th St, Austin, TX 73301" +186781,Lightning Charging Cable,1,14.95,03/15/19 17:41,"782 Cherry St, San Francisco, CA 94016" +186782,Flatscreen TV,1,300,03/30/19 17:11,"755 Adams St, Dallas, TX 75001" +186783,AA Batteries (4-pack),1,3.84,03/31/19 11:14,"308 7th St, San Francisco, CA 94016" +186783,Wired Headphones,1,11.99,03/31/19 11:14,"308 7th St, San Francisco, CA 94016" +186784,27in FHD Monitor,1,149.99,03/15/19 12:53,"466 Ridge St, San Francisco, CA 94016" +186785,AAA Batteries (4-pack),2,2.99,03/16/19 16:06,"47 14th St, Seattle, WA 98101" +186786,ThinkPad Laptop,1,999.99,03/21/19 10:02,"925 Wilson St, Austin, TX 73301" +186787,34in Ultrawide Monitor,1,379.99,03/13/19 13:01,"885 14th St, Seattle, WA 98101" +186788,AA Batteries (4-pack),1,3.84,03/11/19 12:06,"994 14th St, Los Angeles, CA 90001" +186789,Wired Headphones,1,11.99,03/15/19 19:59,"699 4th St, San Francisco, CA 94016" +186790,Apple Airpods Headphones,1,150,03/20/19 13:54,"60 Meadow St, Portland, OR 97035" +186791,AAA Batteries (4-pack),1,2.99,03/31/19 15:42,"197 4th St, Boston, MA 02215" +186792,Wired Headphones,1,11.99,03/22/19 19:11,"863 Cedar St, Portland, OR 97035" +186793,Bose SoundSport Headphones,1,99.99,03/14/19 08:02,"526 9th St, Seattle, WA 98101" +186794,34in Ultrawide Monitor,1,379.99,03/02/19 20:33,"159 Pine St, Boston, MA 02215" +186795,Apple Airpods Headphones,1,150,03/05/19 05:59,"380 River St, New York City, NY 10001" +186796,USB-C Charging Cable,1,11.95,03/15/19 16:47,"856 Dogwood St, San Francisco, CA 94016" +186797,AAA Batteries (4-pack),1,2.99,03/05/19 23:01,"443 Jackson St, San Francisco, CA 94016" +186798,Lightning Charging Cable,1,14.95,03/07/19 17:26,"423 Lakeview St, Portland, ME 04101" +186799,AAA Batteries (4-pack),1,2.99,03/23/19 14:50,"440 Highland St, San Francisco, CA 94016" +186800,AAA Batteries (4-pack),1,2.99,03/08/19 16:36,"552 Lakeview St, San Francisco, CA 94016" +186801,AA Batteries (4-pack),1,3.84,03/27/19 15:06,"111 Highland St, Boston, MA 02215" +186802,Apple Airpods Headphones,1,150,03/15/19 10:03,"644 Maple St, Dallas, TX 75001" +186803,Flatscreen TV,1,300,03/27/19 12:41,"887 12th St, Los Angeles, CA 90001" +186804,Bose SoundSport Headphones,1,99.99,03/04/19 10:46,"434 9th St, San Francisco, CA 94016" +186805,Wired Headphones,1,11.99,03/04/19 13:19,"575 7th St, Los Angeles, CA 90001" +186806,Wired Headphones,1,11.99,03/04/19 19:37,"117 Cherry St, New York City, NY 10001" +186807,AA Batteries (4-pack),1,3.84,03/03/19 10:32,"396 Dogwood St, San Francisco, CA 94016" +186808,27in FHD Monitor,1,149.99,03/18/19 20:14,"262 South St, Seattle, WA 98101" +186809,Wired Headphones,1,11.99,03/04/19 22:42,"485 Hickory St, Austin, TX 73301" +186810,Macbook Pro Laptop,1,1700,03/12/19 05:48,"161 Elm St, Los Angeles, CA 90001" +186811,Lightning Charging Cable,1,14.95,03/13/19 13:46,"801 2nd St, Los Angeles, CA 90001" +186812,Wired Headphones,1,11.99,03/25/19 16:03,"967 Hickory St, Boston, MA 02215" +186813,Macbook Pro Laptop,1,1700,03/06/19 15:09,"646 West St, Boston, MA 02215" +186814,AA Batteries (4-pack),1,3.84,03/15/19 18:52,"150 5th St, Dallas, TX 75001" +186815,34in Ultrawide Monitor,1,379.99,03/02/19 10:59,"164 1st St, Seattle, WA 98101" +186816,Bose SoundSport Headphones,1,99.99,03/11/19 15:39,"608 Main St, Portland, OR 97035" +186817,Lightning Charging Cable,1,14.95,03/24/19 13:59,"591 14th St, Dallas, TX 75001" +186818,Google Phone,1,600,03/28/19 00:57,"39 Hill St, San Francisco, CA 94016" +186819,USB-C Charging Cable,3,11.95,03/21/19 21:43,"235 4th St, Boston, MA 02215" +186820,27in 4K Gaming Monitor,1,389.99,03/28/19 03:00,"847 Sunset St, Seattle, WA 98101" +186821,USB-C Charging Cable,1,11.95,03/18/19 21:55,"180 Lake St, Atlanta, GA 30301" +186822,Apple Airpods Headphones,1,150,03/22/19 14:58,"574 Highland St, Dallas, TX 75001" +186823,Lightning Charging Cable,1,14.95,03/21/19 21:38,"473 Lincoln St, Dallas, TX 75001" +186824,Apple Airpods Headphones,1,150,03/03/19 22:31,"544 2nd St, Seattle, WA 98101" +186825,34in Ultrawide Monitor,1,379.99,03/11/19 17:25,"475 Cedar St, San Francisco, CA 94016" +186826,Lightning Charging Cable,2,14.95,03/17/19 15:08,"286 Church St, San Francisco, CA 94016" +186827,USB-C Charging Cable,2,11.95,03/22/19 12:09,"996 14th St, Atlanta, GA 30301" +186828,USB-C Charging Cable,1,11.95,03/02/19 23:04,"822 Meadow St, New York City, NY 10001" +186829,AA Batteries (4-pack),1,3.84,03/14/19 19:40,"597 7th St, San Francisco, CA 94016" +186830,AAA Batteries (4-pack),1,2.99,03/15/19 15:46,"264 Jackson St, San Francisco, CA 94016" +186831,20in Monitor,1,109.99,03/13/19 08:05,"665 1st St, Portland, OR 97035" +186832,27in 4K Gaming Monitor,1,389.99,03/31/19 09:43,"22 5th St, San Francisco, CA 94016" +186833,Bose SoundSport Headphones,1,99.99,03/06/19 11:15,"249 10th St, Los Angeles, CA 90001" +186834,Wired Headphones,1,11.99,03/23/19 09:31,"606 Lake St, San Francisco, CA 94016" +186835,AAA Batteries (4-pack),1,2.99,03/01/19 18:19,"226 Main St, Atlanta, GA 30301" +186836,Apple Airpods Headphones,1,150,03/30/19 22:27,"9 12th St, San Francisco, CA 94016" +186837,Apple Airpods Headphones,1,150,03/12/19 14:05,"262 2nd St, Boston, MA 02215" +186838,AA Batteries (4-pack),3,3.84,03/02/19 10:30,"410 Lincoln St, San Francisco, CA 94016" +186839,iPhone,1,700,03/03/19 19:29,"686 Adams St, Dallas, TX 75001" +186840,Wired Headphones,1,11.99,03/03/19 23:43,"509 Jefferson St, New York City, NY 10001" +186841,Wired Headphones,1,11.99,03/01/19 13:36,"492 Meadow St, San Francisco, CA 94016" +186842,Apple Airpods Headphones,1,150,03/18/19 20:21,"577 Elm St, Seattle, WA 98101" +186843,27in FHD Monitor,1,149.99,03/18/19 19:17,"266 Center St, Atlanta, GA 30301" +186844,34in Ultrawide Monitor,1,379.99,03/26/19 11:56,"127 North St, Portland, ME 04101" +186845,Wired Headphones,1,11.99,03/15/19 18:53,"416 Madison St, San Francisco, CA 94016" +186846,34in Ultrawide Monitor,1,379.99,03/22/19 20:16,"957 5th St, Los Angeles, CA 90001" +186847,Lightning Charging Cable,1,14.95,03/25/19 00:41,"829 1st St, Los Angeles, CA 90001" +186848,Wired Headphones,1,11.99,03/25/19 07:42,"274 Church St, San Francisco, CA 94016" +186849,27in 4K Gaming Monitor,1,389.99,03/10/19 19:41,"695 6th St, New York City, NY 10001" +186850,Google Phone,1,600,03/22/19 08:53,"470 River St, Seattle, WA 98101" +186851,Wired Headphones,2,11.99,03/25/19 09:55,"2 6th St, Seattle, WA 98101" +186852,34in Ultrawide Monitor,1,379.99,03/15/19 20:47,"84 Jefferson St, Los Angeles, CA 90001" +186853,27in FHD Monitor,1,149.99,03/13/19 00:32,"556 Park St, Los Angeles, CA 90001" +186854,34in Ultrawide Monitor,1,379.99,03/05/19 20:52,"608 Madison St, Boston, MA 02215" +186855,Wired Headphones,1,11.99,03/15/19 17:59,"228 Dogwood St, Atlanta, GA 30301" +186856,Macbook Pro Laptop,1,1700,03/09/19 15:10,"462 North St, San Francisco, CA 94016" +186857,Bose SoundSport Headphones,1,99.99,03/30/19 20:13,"525 Adams St, Seattle, WA 98101" +186858,Lightning Charging Cable,1,14.95,03/13/19 11:57,"322 Forest St, Portland, OR 97035" +186859,Flatscreen TV,1,300,03/14/19 18:21,"482 Willow St, Seattle, WA 98101" +186860,Macbook Pro Laptop,1,1700,03/14/19 01:27,"627 Washington St, Atlanta, GA 30301" +186861,20in Monitor,1,109.99,03/04/19 03:19,"339 Madison St, Boston, MA 02215" +186862,27in FHD Monitor,1,149.99,03/27/19 11:37,"671 11th St, Portland, OR 97035" +186863,iPhone,1,700,03/22/19 12:48,"589 Jefferson St, Atlanta, GA 30301" +186864,ThinkPad Laptop,1,999.99,03/26/19 14:25,"68 12th St, San Francisco, CA 94016" +186865,AAA Batteries (4-pack),1,2.99,03/26/19 14:02,"382 Lakeview St, New York City, NY 10001" +186866,USB-C Charging Cable,1,11.95,03/16/19 20:51,"199 6th St, Los Angeles, CA 90001" +186867,Apple Airpods Headphones,1,150,03/29/19 14:21,"186 Madison St, Atlanta, GA 30301" +186868,AAA Batteries (4-pack),2,2.99,03/17/19 08:57,"856 Willow St, Boston, MA 02215" +186868,USB-C Charging Cable,1,11.95,03/17/19 08:57,"856 Willow St, Boston, MA 02215" +186869,27in 4K Gaming Monitor,1,389.99,03/20/19 15:21,"679 5th St, San Francisco, CA 94016" +186870,Bose SoundSport Headphones,1,99.99,03/09/19 14:46,"533 9th St, San Francisco, CA 94016" +186871,USB-C Charging Cable,1,11.95,03/29/19 22:08,"380 River St, Atlanta, GA 30301" +186872,34in Ultrawide Monitor,1,379.99,03/16/19 17:57,"776 Ridge St, Dallas, TX 75001" +186873,AA Batteries (4-pack),2,3.84,03/28/19 08:58,"708 Washington St, Seattle, WA 98101" +186874,Bose SoundSport Headphones,1,99.99,03/18/19 20:32,"203 Jefferson St, Los Angeles, CA 90001" +186875,34in Ultrawide Monitor,1,379.99,03/23/19 21:13,"407 Ridge St, Portland, OR 97035" +186876,Wired Headphones,1,11.99,03/22/19 08:27,"243 Jefferson St, New York City, NY 10001" +186877,Lightning Charging Cable,1,14.95,03/19/19 08:24,"641 4th St, New York City, NY 10001" +186878,Bose SoundSport Headphones,1,99.99,03/08/19 22:20,"402 Spruce St, Portland, OR 97035" +249230,Macbook Pro Laptop,1,1700.0,09/09/19 10:17,"877 Lakeview St, Los Angeles, CA 90001" +249231,AA Batteries (4-pack),2,3.84,09/12/19 09:57,"406 Forest St, New York City, NY 10001" +249232,Wired Headphones,1,11.99,09/19/19 17:04,"45 Johnson St, Boston, MA 02215" +249233,USB-C Charging Cable,1,11.95,09/23/19 15:05,"229 Cherry St, San Francisco, CA 94016" +249234,USB-C Charging Cable,1,11.95,09/10/19 14:58,"598 South St, New York City, NY 10001" +249235,USB-C Charging Cable,1,11.95,09/09/19 15:18,"482 Chestnut St, Atlanta, GA 30301" +249236,27in 4K Gaming Monitor,1,389.99,09/25/19 18:55,"176 Main St, Atlanta, GA 30301" +249237,Macbook Pro Laptop,1,1700.0,09/04/19 19:07,"537 Pine St, Los Angeles, CA 90001" +249238,USB-C Charging Cable,1,11.95,09/08/19 21:37,"159 Forest St, Portland, ME 04101" +249239,Wired Headphones,1,11.99,09/11/19 09:45,"705 Meadow St, San Francisco, CA 94016" +249240,Apple Airpods Headphones,1,150.0,09/04/19 06:59,"65 Lake St, San Francisco, CA 94016" +249241,AA Batteries (4-pack),3,3.84,09/09/19 23:53,"571 Forest St, San Francisco, CA 94016" +249242,Macbook Pro Laptop,1,1700.0,09/24/19 05:18,"29 4th St, Seattle, WA 98101" +249243,AA Batteries (4-pack),1,3.84,09/25/19 13:53,"839 Walnut St, Los Angeles, CA 90001" +249244,27in 4K Gaming Monitor,1,389.99,09/22/19 10:59,"934 Sunset St, Atlanta, GA 30301" +249245,AAA Batteries (4-pack),1,2.99,09/22/19 13:37,"819 Park St, San Francisco, CA 94016" +249246,Bose SoundSport Headphones,1,99.99,09/10/19 09:16,"553 14th St, Dallas, TX 75001" +249247,iPhone,1,700.0,09/22/19 07:59,"915 Spruce St, New York City, NY 10001" +249247,Wired Headphones,1,11.99,09/22/19 07:59,"915 Spruce St, New York City, NY 10001" +,,,,, +249248,20in Monitor,1,109.99,09/07/19 15:55,"433 Spruce St, Boston, MA 02215" +249249,AAA Batteries (4-pack),1,2.99,09/17/19 19:03,"783 Hill St, New York City, NY 10001" +249250,Wired Headphones,1,11.99,09/30/19 11:57,"196 10th St, Boston, MA 02215" +249251,Wired Headphones,2,11.99,09/16/19 19:19,"204 4th St, New York City, NY 10001" +249252,AAA Batteries (4-pack),2,2.99,09/03/19 14:33,"164 Madison St, Atlanta, GA 30301" +249253,AAA Batteries (4-pack),2,2.99,09/08/19 10:41,"337 12th St, San Francisco, CA 94016" +249254,AAA Batteries (4-pack),2,2.99,09/18/19 09:01,"275 Main St, Portland, OR 97035" +249255,USB-C Charging Cable,1,11.95,09/04/19 17:02,"572 Meadow St, San Francisco, CA 94016" +249256,27in 4K Gaming Monitor,1,389.99,09/07/19 20:56,"832 Madison St, Boston, MA 02215" +249257,USB-C Charging Cable,1,11.95,09/07/19 20:42,"392 Cedar St, Atlanta, GA 30301" +249258,27in FHD Monitor,1,149.99,09/19/19 11:57,"403 Meadow St, Los Angeles, CA 90001" +249259,USB-C Charging Cable,1,11.95,09/12/19 16:00,"41 9th St, Austin, TX 73301" +249260,USB-C Charging Cable,1,11.95,09/24/19 14:35,"779 Wilson St, San Francisco, CA 94016" +249261,AAA Batteries (4-pack),2,2.99,09/22/19 14:23,"425 Center St, New York City, NY 10001" +249262,USB-C Charging Cable,1,11.95,09/05/19 23:12,"739 Hickory St, Boston, MA 02215" +249263,USB-C Charging Cable,1,11.95,09/14/19 23:35,"66 5th St, Boston, MA 02215" +249264,Google Phone,1,600,09/15/19 21:01,"545 Forest St, Seattle, WA 98101" +249264,USB-C Charging Cable,1,11.95,09/15/19 21:01,"545 Forest St, Seattle, WA 98101" +249265,Lightning Charging Cable,1,14.95,09/05/19 18:01,"953 Hickory St, Los Angeles, CA 90001" +249266,Flatscreen TV,1,300,09/17/19 21:57,"885 1st St, New York City, NY 10001" +249267,AAA Batteries (4-pack),3,2.99,09/06/19 02:06,"968 Washington St, Seattle, WA 98101" +249268,AA Batteries (4-pack),1,3.84,09/26/19 18:34,"435 2nd St, Boston, MA 02215" +249269,iPhone,1,700,09/23/19 14:22,"818 Adams St, Dallas, TX 75001" +249270,AA Batteries (4-pack),1,3.84,09/17/19 06:32,"856 12th St, Austin, TX 73301" +249271,AA Batteries (4-pack),1,3.84,09/26/19 12:55,"915 Chestnut St, Austin, TX 73301" +249272,USB-C Charging Cable,1,11.95,09/12/19 22:28,"116 Spruce St, Los Angeles, CA 90001" +249273,AAA Batteries (4-pack),2,2.99,09/30/19 17:21,"891 Jackson St, New York City, NY 10001" +249274,Bose SoundSport Headphones,1,99.99,09/18/19 12:40,"762 12th St, Portland, ME 04101" +249275,AAA Batteries (4-pack),1,2.99,09/09/19 16:32,"405 10th St, Austin, TX 73301" +249276,27in 4K Gaming Monitor,1,389.99,09/04/19 18:27,"465 Sunset St, Seattle, WA 98101" +249277,USB-C Charging Cable,1,11.95,09/27/19 12:57,"392 Spruce St, San Francisco, CA 94016" +249278,Wired Headphones,1,11.99,09/29/19 18:58,"201 Hill St, Dallas, TX 75001" +249279,Flatscreen TV,1,300,09/12/19 13:01,"966 Main St, Portland, ME 04101" +249280,ThinkPad Laptop,1,999.99,09/17/19 12:36,"712 Lincoln St, New York City, NY 10001" +249281,Apple Airpods Headphones,1,150,09/17/19 17:25,"321 7th St, Dallas, TX 75001" +249282,Lightning Charging Cable,1,14.95,09/12/19 21:07,"97 Pine St, Portland, ME 04101" +249283,Vareebadd Phone,1,400,09/14/19 10:22,"52 14th St, San Francisco, CA 94016" +249283,USB-C Charging Cable,1,11.95,09/14/19 10:22,"52 14th St, San Francisco, CA 94016" +249284,Lightning Charging Cable,1,14.95,09/04/19 12:38,"191 South St, Dallas, TX 75001" +249285,USB-C Charging Cable,1,11.95,09/28/19 00:22,"863 Dogwood St, Boston, MA 02215" +249286,Wired Headphones,1,11.99,09/10/19 19:28,"345 Park St, Los Angeles, CA 90001" +249287,USB-C Charging Cable,1,11.95,09/06/19 14:38,"69 Wilson St, Atlanta, GA 30301" +249288,AA Batteries (4-pack),1,3.84,09/13/19 21:25,"614 Cherry St, Atlanta, GA 30301" +249289,USB-C Charging Cable,1,11.95,09/22/19 13:11,"506 2nd St, Seattle, WA 98101" +249290,Google Phone,1,600,09/06/19 01:03,"694 Madison St, Seattle, WA 98101" +249291,USB-C Charging Cable,1,11.95,09/30/19 05:54,"591 Elm St, San Francisco, CA 94016" +249292,Google Phone,1,600,09/04/19 06:01,"130 5th St, San Francisco, CA 94016" +249293,27in 4K Gaming Monitor,1,389.99,09/25/19 13:49,"36 Wilson St, Atlanta, GA 30301" +249294,20in Monitor,1,109.99,09/30/19 15:55,"730 Ridge St, Seattle, WA 98101" +249295,Lightning Charging Cable,1,14.95,09/09/19 16:01,"639 6th St, Dallas, TX 75001" +249296,Apple Airpods Headphones,1,150,09/01/19 12:45,"829 1st St, New York City, NY 10001" +249297,Wired Headphones,1,11.99,09/27/19 13:47,"332 Chestnut St, San Francisco, CA 94016" +249298,USB-C Charging Cable,1,11.95,09/20/19 14:21,"882 Hill St, Los Angeles, CA 90001" +249299,Bose SoundSport Headphones,1,99.99,09/20/19 18:24,"720 14th St, San Francisco, CA 94016" +249300,Apple Airpods Headphones,1,150,09/10/19 21:12,"697 Forest St, Los Angeles, CA 90001" +249301,AA Batteries (4-pack),1,3.84,09/07/19 09:56,"553 Center St, Boston, MA 02215" +249302,AAA Batteries (4-pack),1,2.99,09/22/19 12:16,"919 Center St, Los Angeles, CA 90001" +249303,iPhone,1,700,09/29/19 22:26,"217 Dogwood St, Los Angeles, CA 90001" +249303,Lightning Charging Cable,1,14.95,09/29/19 22:26,"217 Dogwood St, Los Angeles, CA 90001" +249304,Lightning Charging Cable,1,14.95,09/10/19 07:12,"557 11th St, New York City, NY 10001" +249305,AAA Batteries (4-pack),1,2.99,09/06/19 13:05,"10 South St, San Francisco, CA 94016" +249306,Wired Headphones,1,11.99,09/01/19 22:09,"294 West St, Dallas, TX 75001" +249307,AA Batteries (4-pack),2,3.84,09/24/19 16:00,"42 Chestnut St, Boston, MA 02215" +249308,AA Batteries (4-pack),1,3.84,09/29/19 17:30,"629 Dogwood St, San Francisco, CA 94016" +249309,Bose SoundSport Headphones,1,99.99,09/28/19 19:01,"569 Hill St, Seattle, WA 98101" +249310,Bose SoundSport Headphones,1,99.99,09/05/19 13:24,"350 Cherry St, New York City, NY 10001" +249311,USB-C Charging Cable,2,11.95,09/23/19 10:23,"874 4th St, New York City, NY 10001" +249312,Bose SoundSport Headphones,1,99.99,09/13/19 22:15,"427 Ridge St, Atlanta, GA 30301" +249313,USB-C Charging Cable,1,11.95,09/12/19 08:01,"971 2nd St, Los Angeles, CA 90001" +249314,Lightning Charging Cable,1,14.95,09/19/19 03:28,"701 Jackson St, Atlanta, GA 30301" +249315,Wired Headphones,1,11.99,09/02/19 15:52,"883 West St, Los Angeles, CA 90001" +249316,iPhone,1,700,09/01/19 12:42,"561 Church St, Boston, MA 02215" +249317,Lightning Charging Cable,1,14.95,09/08/19 12:39,"140 4th St, Portland, ME 04101" +249318,AAA Batteries (4-pack),2,2.99,09/28/19 20:10,"558 12th St, Dallas, TX 75001" +249319,AA Batteries (4-pack),1,3.84,09/23/19 02:23,"947 Cedar St, Portland, OR 97035" +249320,Apple Airpods Headphones,1,150,09/03/19 18:39,"138 Pine St, Boston, MA 02215" +249321,Lightning Charging Cable,2,14.95,09/16/19 19:50,"203 Washington St, San Francisco, CA 94016" +249322,Wired Headphones,1,11.99,09/07/19 13:10,"468 Adams St, San Francisco, CA 94016" +249323,iPhone,1,700,09/30/19 13:13,"178 Main St, Austin, TX 73301" +249324,AA Batteries (4-pack),1,3.84,09/04/19 10:02,"507 Elm St, Atlanta, GA 30301" +249325,20in Monitor,1,109.99,09/19/19 10:40,"852 1st St, Boston, MA 02215" +249326,Bose SoundSport Headphones,1,99.99,09/03/19 21:55,"437 Cherry St, Los Angeles, CA 90001" +249327,Wired Headphones,1,11.99,09/09/19 14:09,"115 14th St, Austin, TX 73301" +249328,Lightning Charging Cable,1,14.95,09/10/19 22:02,"610 Church St, Los Angeles, CA 90001" +249329,iPhone,1,700,09/09/19 10:56,"848 Jackson St, Atlanta, GA 30301" +249329,Lightning Charging Cable,1,14.95,09/09/19 10:56,"848 Jackson St, Atlanta, GA 30301" +249330,Lightning Charging Cable,1,14.95,09/29/19 11:11,"788 Meadow St, San Francisco, CA 94016" +249331,Bose SoundSport Headphones,1,99.99,09/01/19 14:05,"185 11th St, Los Angeles, CA 90001" +249332,USB-C Charging Cable,1,11.95,09/10/19 10:39,"89 Walnut St, Los Angeles, CA 90001" +249333,AA Batteries (4-pack),1,3.84,09/28/19 13:27,"589 5th St, San Francisco, CA 94016" +249334,Wired Headphones,1,11.99,09/24/19 17:26,"194 North St, New York City, NY 10001" +249335,USB-C Charging Cable,1,11.95,09/08/19 04:06,"434 Hickory St, Los Angeles, CA 90001" +249336,27in 4K Gaming Monitor,1,389.99,09/08/19 11:10,"734 6th St, Portland, OR 97035" +249337,iPhone,1,700,09/02/19 05:25,"643 4th St, Atlanta, GA 30301" +249338,AAA Batteries (4-pack),1,2.99,09/06/19 15:51,"281 Church St, New York City, NY 10001" +249339,AA Batteries (4-pack),2,3.84,09/09/19 10:33,"936 5th St, San Francisco, CA 94016" +249340,USB-C Charging Cable,1,11.95,09/18/19 11:03,"109 Lake St, Portland, ME 04101" +249341,Macbook Pro Laptop,1,1700,09/29/19 21:08,"147 Wilson St, Boston, MA 02215" +249342,Apple Airpods Headphones,1,150,09/10/19 15:16,"247 Center St, Boston, MA 02215" +249343,Lightning Charging Cable,1,14.95,09/20/19 22:14,"847 7th St, Austin, TX 73301" +249344,27in FHD Monitor,1,149.99,09/05/19 19:57,"885 Johnson St, New York City, NY 10001" +249345,Lightning Charging Cable,1,14.95,09/21/19 20:52,"946 11th St, Atlanta, GA 30301" +249346,AA Batteries (4-pack),1,3.84,09/05/19 17:10,"25 4th St, Boston, MA 02215" +249347,Lightning Charging Cable,1,14.95,09/19/19 18:22,"284 Cedar St, San Francisco, CA 94016" +249348,AA Batteries (4-pack),1,3.84,09/15/19 21:50,"398 Highland St, Portland, OR 97035" +249349,AA Batteries (4-pack),2,3.84,09/16/19 21:12,"444 Adams St, Dallas, TX 75001" +249350,Wired Headphones,1,11.99,09/29/19 15:46,"658 Adams St, San Francisco, CA 94016" +249351,Lightning Charging Cable,1,14.95,09/09/19 20:05,"764 Johnson St, New York City, NY 10001" +249352,Bose SoundSport Headphones,1,99.99,09/15/19 15:07,"535 Church St, New York City, NY 10001" +249353,USB-C Charging Cable,1,11.95,09/26/19 18:58,"175 Ridge St, New York City, NY 10001" +249354,Apple Airpods Headphones,1,150,09/04/19 20:56,"883 4th St, Seattle, WA 98101" +249355,Wired Headphones,1,11.99,09/04/19 19:53,"245 4th St, Boston, MA 02215" +249356,27in 4K Gaming Monitor,1,389.99,09/10/19 11:20,"613 Hill St, Seattle, WA 98101" +249357,Apple Airpods Headphones,1,150,09/25/19 12:47,"532 4th St, San Francisco, CA 94016" +249358,AAA Batteries (4-pack),1,2.99,09/14/19 16:25,"60 Cedar St, San Francisco, CA 94016" +249359,Wired Headphones,1,11.99,09/12/19 01:30,"98 6th St, Boston, MA 02215" +249360,USB-C Charging Cable,1,11.95,09/18/19 14:16,"824 Cherry St, Dallas, TX 75001" +249361,27in FHD Monitor,1,149.99,09/17/19 17:42,"615 Wilson St, San Francisco, CA 94016" +249362,Bose SoundSport Headphones,1,99.99,09/24/19 10:30,"989 Cedar St, Boston, MA 02215" +249363,27in FHD Monitor,1,149.99,09/09/19 20:15,"766 Lakeview St, Los Angeles, CA 90001" +249364,Bose SoundSport Headphones,1,99.99,09/07/19 10:45,"534 Wilson St, Los Angeles, CA 90001" +249365,Google Phone,1,600,09/22/19 20:42,"884 Madison St, Los Angeles, CA 90001" +249365,Apple Airpods Headphones,1,150,09/22/19 20:42,"884 Madison St, Los Angeles, CA 90001" +249366,Wired Headphones,1,11.99,09/04/19 22:12,"412 River St, New York City, NY 10001" +249367,Bose SoundSport Headphones,1,99.99,09/26/19 14:56,"461 Pine St, San Francisco, CA 94016" +249368,AA Batteries (4-pack),1,3.84,09/20/19 17:43,"465 Willow St, New York City, NY 10001" +249369,Bose SoundSport Headphones,1,99.99,09/02/19 16:11,"290 9th St, New York City, NY 10001" +249370,AA Batteries (4-pack),1,3.84,09/05/19 22:07,"122 Cedar St, Seattle, WA 98101" +249371,USB-C Charging Cable,1,11.95,09/17/19 15:30,"661 Meadow St, New York City, NY 10001" +249372,Google Phone,1,600,09/08/19 11:02,"637 Lake St, San Francisco, CA 94016" +249372,USB-C Charging Cable,1,11.95,09/08/19 11:02,"637 Lake St, San Francisco, CA 94016" +249373,USB-C Charging Cable,1,11.95,09/01/19 08:26,"266 Madison St, New York City, NY 10001" +249374,Lightning Charging Cable,1,14.95,09/28/19 14:56,"222 Highland St, Atlanta, GA 30301" +249375,AAA Batteries (4-pack),1,2.99,09/29/19 08:39,"60 Lake St, Portland, OR 97035" +249376,USB-C Charging Cable,1,11.95,09/13/19 16:10,"736 Hill St, Dallas, TX 75001" +249377,AAA Batteries (4-pack),1,2.99,09/25/19 21:05,"987 Cherry St, San Francisco, CA 94016" +249378,Google Phone,1,600,09/13/19 12:17,"446 Spruce St, Dallas, TX 75001" +249379,USB-C Charging Cable,1,11.95,09/11/19 08:54,"803 14th St, New York City, NY 10001" +249380,AA Batteries (4-pack),2,3.84,09/20/19 08:18,"846 2nd St, New York City, NY 10001" +249381,AA Batteries (4-pack),1,3.84,09/25/19 20:53,"615 6th St, Austin, TX 73301" +249382,Lightning Charging Cable,1,14.95,09/13/19 09:23,"747 Ridge St, Los Angeles, CA 90001" +249383,Macbook Pro Laptop,1,1700,09/02/19 20:41,"759 Church St, Atlanta, GA 30301" +249384,Macbook Pro Laptop,1,1700,09/20/19 16:41,"810 Church St, Austin, TX 73301" +249385,Bose SoundSport Headphones,1,99.99,09/09/19 09:44,"376 7th St, Portland, ME 04101" +249386,ThinkPad Laptop,1,999.99,09/05/19 13:19,"143 Pine St, Dallas, TX 75001" +249387,34in Ultrawide Monitor,1,379.99,09/26/19 17:40,"601 14th St, Boston, MA 02215" +249388,AAA Batteries (4-pack),1,2.99,09/22/19 23:50,"610 2nd St, Los Angeles, CA 90001" +249389,USB-C Charging Cable,1,11.95,09/02/19 16:02,"776 11th St, Los Angeles, CA 90001" +249390,Bose SoundSport Headphones,1,99.99,09/20/19 18:21,"498 Cherry St, San Francisco, CA 94016" +249390,AA Batteries (4-pack),3,3.84,09/20/19 18:21,"498 Cherry St, San Francisco, CA 94016" +249391,Lightning Charging Cable,1,14.95,09/14/19 18:47,"211 Spruce St, Boston, MA 02215" +249392,Macbook Pro Laptop,1,1700,09/22/19 10:04,"218 1st St, San Francisco, CA 94016" +249393,AAA Batteries (4-pack),2,2.99,09/17/19 12:43,"616 Dogwood St, San Francisco, CA 94016" +249394,Apple Airpods Headphones,1,150,09/15/19 19:19,"350 6th St, Dallas, TX 75001" +249394,Bose SoundSport Headphones,1,99.99,09/15/19 19:19,"350 6th St, Dallas, TX 75001" +249395,Flatscreen TV,1,300,09/23/19 18:18,"641 Church St, Seattle, WA 98101" +249396,USB-C Charging Cable,1,11.95,09/07/19 15:31,"722 Hill St, Atlanta, GA 30301" +249397,Bose SoundSport Headphones,1,99.99,09/12/19 10:09,"72 Lakeview St, San Francisco, CA 94016" +249398,USB-C Charging Cable,1,11.95,09/24/19 18:22,"380 Chestnut St, San Francisco, CA 94016" +249399,Lightning Charging Cable,1,14.95,09/22/19 15:08,"905 12th St, San Francisco, CA 94016" +249400,AA Batteries (4-pack),1,3.84,09/29/19 00:18,"426 11th St, San Francisco, CA 94016" +249401,Lightning Charging Cable,1,14.95,09/02/19 13:01,"380 Center St, Portland, OR 97035" +249402,iPhone,1,700,09/14/19 22:26,"900 Lakeview St, Atlanta, GA 30301" +249403,27in FHD Monitor,1,149.99,09/13/19 05:15,"1 11th St, San Francisco, CA 94016" +249404,Lightning Charging Cable,1,14.95,09/12/19 18:24,"771 Sunset St, Boston, MA 02215" +249405,Wired Headphones,1,11.99,09/10/19 10:04,"559 9th St, San Francisco, CA 94016" +249406,Wired Headphones,1,11.99,09/08/19 09:27,"7 Highland St, San Francisco, CA 94016" +249407,Apple Airpods Headphones,1,150,09/28/19 09:41,"39 Jackson St, New York City, NY 10001" +249408,iPhone,1,700,09/06/19 17:56,"13 9th St, Atlanta, GA 30301" +249408,Apple Airpods Headphones,1,150,09/06/19 17:56,"13 9th St, Atlanta, GA 30301" +249409,27in FHD Monitor,1,149.99,09/20/19 20:35,"864 9th St, Portland, OR 97035" +249410,27in 4K Gaming Monitor,1,389.99,09/22/19 11:27,"176 Hickory St, Atlanta, GA 30301" +249411,AAA Batteries (4-pack),1,2.99,10/01/19 00:39,"969 Center St, San Francisco, CA 94016" +249412,USB-C Charging Cable,1,11.95,09/28/19 18:58,"421 Meadow St, New York City, NY 10001" +249413,Apple Airpods Headphones,1,150,09/12/19 20:51,"898 4th St, New York City, NY 10001" +249414,AAA Batteries (4-pack),3,2.99,09/27/19 11:48,"697 Spruce St, Boston, MA 02215" +249415,AA Batteries (4-pack),1,3.84,09/15/19 11:43,"318 8th St, Boston, MA 02215" +249416,USB-C Charging Cable,1,11.95,09/24/19 16:14,"626 North St, New York City, NY 10001" +249417,Lightning Charging Cable,1,14.95,09/08/19 13:42,"337 Cherry St, Boston, MA 02215" +249418,AA Batteries (4-pack),1,3.84,09/13/19 09:50,"773 Pine St, Los Angeles, CA 90001" +249419,iPhone,1,700,09/08/19 00:03,"192 North St, Los Angeles, CA 90001" +249420,27in 4K Gaming Monitor,1,389.99,09/03/19 18:06,"478 8th St, Seattle, WA 98101" +249421,AAA Batteries (4-pack),1,2.99,09/18/19 22:48,"694 Cherry St, Boston, MA 02215" +249422,Macbook Pro Laptop,1,1700,09/14/19 18:37,"274 Lakeview St, San Francisco, CA 94016" +249423,Apple Airpods Headphones,1,150,09/18/19 11:58,"36 Lake St, New York City, NY 10001" +249424,AAA Batteries (4-pack),1,2.99,09/05/19 15:06,"453 14th St, Seattle, WA 98101" +249425,AAA Batteries (4-pack),1,2.99,09/02/19 00:11,"961 Lincoln St, Austin, TX 73301" +249426,LG Dryer,1,600.0,09/17/19 20:56,"9 Hill St, San Francisco, CA 94016" +249427,USB-C Charging Cable,1,11.95,09/05/19 19:51,"510 Ridge St, Los Angeles, CA 90001" +249428,AA Batteries (4-pack),3,3.84,09/20/19 13:00,"329 West St, Atlanta, GA 30301" +249429,Bose SoundSport Headphones,1,99.99,09/01/19 08:13,"855 Chestnut St, Boston, MA 02215" +249430,Bose SoundSport Headphones,1,99.99,09/28/19 15:37,"13 2nd St, Austin, TX 73301" +249431,AAA Batteries (4-pack),2,2.99,09/07/19 11:19,"239 Center St, New York City, NY 10001" +249432,Google Phone,1,600,09/16/19 00:30,"524 River St, San Francisco, CA 94016" +249433,Lightning Charging Cable,1,14.95,09/10/19 20:42,"36 13th St, Dallas, TX 75001" +249434,Wired Headphones,1,11.99,09/09/19 23:32,"203 Park St, Atlanta, GA 30301" +249435,Lightning Charging Cable,1,14.95,09/21/19 08:14,"31 Madison St, Los Angeles, CA 90001" +249436,AA Batteries (4-pack),1,3.84,09/24/19 08:36,"804 Madison St, Atlanta, GA 30301" +249437,Lightning Charging Cable,1,14.95,09/22/19 10:33,"607 North St, Portland, OR 97035" +249438,USB-C Charging Cable,1,11.95,09/10/19 21:40,"585 4th St, San Francisco, CA 94016" +249439,AA Batteries (4-pack),1,3.84,09/17/19 11:56,"734 Johnson St, New York City, NY 10001" +249440,27in FHD Monitor,1,149.99,09/24/19 21:24,"899 Walnut St, San Francisco, CA 94016" +249441,20in Monitor,1,109.99,09/22/19 23:01,"146 11th St, San Francisco, CA 94016" +249442,Bose SoundSport Headphones,1,99.99,09/29/19 18:24,"604 River St, Boston, MA 02215" +249443,Lightning Charging Cable,1,14.95,09/21/19 11:17,"810 8th St, Dallas, TX 75001" +249444,Flatscreen TV,1,300,09/01/19 21:59,"405 12th St, New York City, NY 10001" +249445,Lightning Charging Cable,1,14.95,09/09/19 12:34,"180 Ridge St, Los Angeles, CA 90001" +249446,Macbook Pro Laptop,1,1700,09/14/19 22:29,"721 1st St, Los Angeles, CA 90001" +249447,Vareebadd Phone,1,400,09/17/19 13:19,"112 Lake St, Boston, MA 02215" +249448,Apple Airpods Headphones,1,150,09/10/19 09:00,"293 Main St, Boston, MA 02215" +249449,Google Phone,1,600,09/29/19 22:28,"593 Elm St, San Francisco, CA 94016" +249450,AAA Batteries (4-pack),2,2.99,09/16/19 19:46,"400 Highland St, Portland, OR 97035" +249451,Bose SoundSport Headphones,1,99.99,09/11/19 19:04,"734 Forest St, Austin, TX 73301" +249452,Wired Headphones,1,11.99,09/07/19 20:38,"308 Cherry St, Dallas, TX 75001" +249453,Wired Headphones,1,11.99,09/04/19 20:02,"876 Forest St, Los Angeles, CA 90001" +249454,AA Batteries (4-pack),1,3.84,09/06/19 09:24,"845 Ridge St, Austin, TX 73301" +249455,Lightning Charging Cable,1,14.95,09/30/19 13:01,"435 Maple St, Los Angeles, CA 90001" +249456,iPhone,1,700,09/03/19 06:54,"344 Sunset St, Austin, TX 73301" +249457,Lightning Charging Cable,1,14.95,09/27/19 21:03,"981 Main St, Atlanta, GA 30301" +249458,Apple Airpods Headphones,1,150,09/08/19 21:55,"608 Ridge St, San Francisco, CA 94016" +249459,Apple Airpods Headphones,1,150,09/08/19 20:18,"913 2nd St, Seattle, WA 98101" +249460,Wired Headphones,1,11.99,09/23/19 13:33,"824 Washington St, Dallas, TX 75001" +249461,USB-C Charging Cable,1,11.95,09/03/19 20:16,"36 10th St, Atlanta, GA 30301" +249462,Flatscreen TV,1,300,09/27/19 16:30,"261 Johnson St, San Francisco, CA 94016" +249463,34in Ultrawide Monitor,1,379.99,09/26/19 22:21,"487 10th St, Los Angeles, CA 90001" +249463,34in Ultrawide Monitor,1,379.99,09/26/19 22:21,"487 10th St, Los Angeles, CA 90001" +249464,USB-C Charging Cable,1,11.95,09/29/19 12:22,"316 Willow St, Atlanta, GA 30301" +249465,Wired Headphones,1,11.99,09/17/19 07:17,"940 River St, Boston, MA 02215" +249466,USB-C Charging Cable,2,11.95,09/15/19 14:25,"556 Center St, San Francisco, CA 94016" +249467,34in Ultrawide Monitor,1,379.99,09/13/19 20:44,"947 Hill St, Los Angeles, CA 90001" +249468,27in FHD Monitor,1,149.99,09/04/19 12:50,"961 4th St, Dallas, TX 75001" +249469,AA Batteries (4-pack),3,3.84,09/15/19 14:15,"110 Lakeview St, Boston, MA 02215" +249470,27in FHD Monitor,1,149.99,09/08/19 10:07,"556 Jackson St, San Francisco, CA 94016" +249471,Lightning Charging Cable,1,14.95,09/02/19 11:18,"275 Hickory St, Seattle, WA 98101" +249472,Apple Airpods Headphones,1,150,09/10/19 12:19,"163 Maple St, New York City, NY 10001" +249473,27in FHD Monitor,1,149.99,09/07/19 11:45,"795 River St, Dallas, TX 75001" +249474,AA Batteries (4-pack),1,3.84,09/08/19 00:35,"317 6th St, Dallas, TX 75001" +249475,USB-C Charging Cable,1,11.95,09/01/19 13:39,"925 2nd St, Dallas, TX 75001" +249476,USB-C Charging Cable,1,11.95,09/05/19 12:35,"486 14th St, Portland, OR 97035" +249477,27in FHD Monitor,1,149.99,09/09/19 15:02,"867 Sunset St, New York City, NY 10001" +249478,USB-C Charging Cable,1,11.95,09/01/19 19:31,"338 Adams St, Dallas, TX 75001" +249479,Bose SoundSport Headphones,1,99.99,09/14/19 16:35,"884 Hickory St, Los Angeles, CA 90001" +249480,27in FHD Monitor,1,149.99,09/10/19 08:13,"738 Madison St, Boston, MA 02215" +249481,27in FHD Monitor,1,149.99,09/11/19 22:25,"207 Ridge St, San Francisco, CA 94016" +249482,Lightning Charging Cable,1,14.95,09/02/19 11:31,"8 Lincoln St, San Francisco, CA 94016" +249483,Apple Airpods Headphones,1,150,09/02/19 21:03,"570 Wilson St, Portland, ME 04101" +249484,Macbook Pro Laptop,1,1700,09/13/19 11:46,"307 Highland St, San Francisco, CA 94016" +249485,Bose SoundSport Headphones,1,99.99,09/29/19 21:00,"472 Center St, San Francisco, CA 94016" +249486,USB-C Charging Cable,1,11.95,09/04/19 04:11,"927 Spruce St, Atlanta, GA 30301" +249487,AAA Batteries (4-pack),1,2.99,09/04/19 08:16,"529 Church St, Atlanta, GA 30301" +249488,Apple Airpods Headphones,1,150,09/30/19 20:45,"875 7th St, New York City, NY 10001" +249489,AA Batteries (4-pack),1,3.84,09/01/19 21:46,"41 South St, Portland, OR 97035" +249490,AAA Batteries (4-pack),1,2.99,09/16/19 14:01,"668 9th St, San Francisco, CA 94016" +249491,Bose SoundSport Headphones,1,99.99,09/11/19 03:36,"456 Lakeview St, New York City, NY 10001" +249492,Apple Airpods Headphones,1,150,09/06/19 01:52,"933 Maple St, Boston, MA 02215" +249493,27in FHD Monitor,1,149.99,09/09/19 10:08,"523 Wilson St, Atlanta, GA 30301" +249494,Wired Headphones,1,11.99,09/11/19 16:47,"74 6th St, New York City, NY 10001" +249495,Lightning Charging Cable,1,14.95,09/13/19 15:21,"132 Lake St, Seattle, WA 98101" +249496,Lightning Charging Cable,1,14.95,09/21/19 14:39,"36 Wilson St, New York City, NY 10001" +249497,Lightning Charging Cable,1,14.95,09/06/19 20:12,"40 Jefferson St, Dallas, TX 75001" +249498,Apple Airpods Headphones,1,150,09/19/19 19:21,"948 6th St, Boston, MA 02215" +249499,Bose SoundSport Headphones,1,99.99,09/21/19 10:42,"666 4th St, Seattle, WA 98101" +249500,iPhone,1,700,09/19/19 21:03,"194 Park St, Los Angeles, CA 90001" +249501,ThinkPad Laptop,1,999.99,09/25/19 17:51,"728 Walnut St, Atlanta, GA 30301" +249502,Bose SoundSport Headphones,1,99.99,09/06/19 00:58,"782 River St, Los Angeles, CA 90001" +249503,Bose SoundSport Headphones,1,99.99,09/12/19 18:27,"499 Jackson St, Portland, OR 97035" +249504,Lightning Charging Cable,1,14.95,09/03/19 14:13,"672 Jackson St, Dallas, TX 75001" +249505,Bose SoundSport Headphones,1,99.99,09/15/19 18:32,"163 Hill St, Boston, MA 02215" +249506,Wired Headphones,1,11.99,09/24/19 21:18,"355 Church St, San Francisco, CA 94016" +249507,AAA Batteries (4-pack),1,2.99,09/29/19 09:58,"1 Pine St, Seattle, WA 98101" +249508,AA Batteries (4-pack),1,3.84,09/17/19 17:03,"443 1st St, Dallas, TX 75001" +249509,AA Batteries (4-pack),2,3.84,09/08/19 14:46,"735 Pine St, Los Angeles, CA 90001" +249510,34in Ultrawide Monitor,1,379.99,09/17/19 08:15,"964 Chestnut St, San Francisco, CA 94016" +249511,AA Batteries (4-pack),1,3.84,09/02/19 12:11,"290 1st St, Los Angeles, CA 90001" +249512,Lightning Charging Cable,1,14.95,09/08/19 22:24,"242 Lincoln St, Boston, MA 02215" +249513,AAA Batteries (4-pack),1,2.99,09/21/19 13:57,"494 Lincoln St, Austin, TX 73301" +249514,Macbook Pro Laptop,1,1700,09/24/19 23:21,"3 Maple St, San Francisco, CA 94016" +249515,27in FHD Monitor,1,149.99,09/02/19 20:45,"107 Forest St, Seattle, WA 98101" +249515,Wired Headphones,1,11.99,09/02/19 20:45,"107 Forest St, Seattle, WA 98101" +249516,27in FHD Monitor,1,149.99,09/11/19 11:38,"260 River St, Boston, MA 02215" +249517,LG Washing Machine,1,600.0,09/13/19 21:31,"129 Center St, Portland, OR 97035" +249518,Bose SoundSport Headphones,1,99.99,09/12/19 00:21,"785 Walnut St, San Francisco, CA 94016" +249519,AAA Batteries (4-pack),1,2.99,09/09/19 10:23,"58 9th St, New York City, NY 10001" +249520,Lightning Charging Cable,1,14.95,09/03/19 21:22,"565 South St, Boston, MA 02215" +249521,Apple Airpods Headphones,1,150,09/06/19 12:44,"278 2nd St, Atlanta, GA 30301" +249522,Wired Headphones,2,11.99,09/20/19 20:42,"334 Cherry St, San Francisco, CA 94016" +249522,AAA Batteries (4-pack),1,2.99,09/20/19 20:42,"334 Cherry St, San Francisco, CA 94016" +249523,Wired Headphones,1,11.99,09/08/19 23:03,"873 Jefferson St, Atlanta, GA 30301" +249524,AA Batteries (4-pack),3,3.84,09/30/19 23:22,"451 River St, San Francisco, CA 94016" +249525,Lightning Charging Cable,1,14.95,09/20/19 20:36,"68 Park St, San Francisco, CA 94016" +249526,Bose SoundSport Headphones,1,99.99,09/28/19 09:06,"731 Highland St, Seattle, WA 98101" +249527,AA Batteries (4-pack),1,3.84,09/09/19 06:56,"912 Chestnut St, New York City, NY 10001" +249528,Apple Airpods Headphones,1,150,09/10/19 21:45,"817 12th St, Los Angeles, CA 90001" +249529,Apple Airpods Headphones,1,150,09/09/19 11:25,"747 Jackson St, San Francisco, CA 94016" +249530,USB-C Charging Cable,1,11.95,09/02/19 21:08,"638 8th St, Los Angeles, CA 90001" +249531,Bose SoundSport Headphones,1,99.99,09/13/19 22:04,"209 14th St, New York City, NY 10001" +249532,AA Batteries (4-pack),1,3.84,09/26/19 07:51,"447 12th St, Atlanta, GA 30301" +249533,AA Batteries (4-pack),1,3.84,09/10/19 13:05,"396 Meadow St, Boston, MA 02215" +249534,Apple Airpods Headphones,1,150,09/30/19 14:15,"735 9th St, Atlanta, GA 30301" +249535,AA Batteries (4-pack),1,3.84,09/27/19 12:11,"970 Lakeview St, Dallas, TX 75001" +249536,AAA Batteries (4-pack),1,2.99,09/16/19 17:25,"113 Lake St, New York City, NY 10001" +249536,27in 4K Gaming Monitor,1,389.99,09/16/19 17:25,"113 Lake St, New York City, NY 10001" +249537,Macbook Pro Laptop,1,1700,09/02/19 15:48,"923 11th St, New York City, NY 10001" +249538,USB-C Charging Cable,1,11.95,09/07/19 14:30,"102 Forest St, Los Angeles, CA 90001" +249539,Lightning Charging Cable,1,14.95,09/14/19 08:35,"412 9th St, Los Angeles, CA 90001" +249540,27in FHD Monitor,1,149.99,09/23/19 12:51,"273 Lakeview St, Dallas, TX 75001" +249541,USB-C Charging Cable,2,11.95,09/24/19 08:15,"163 River St, Atlanta, GA 30301" +249542,Macbook Pro Laptop,1,1700,09/29/19 13:36,"334 Walnut St, New York City, NY 10001" +249543,LG Washing Machine,1,600.0,09/21/19 14:08,"480 Maple St, Seattle, WA 98101" +249544,Apple Airpods Headphones,1,150,09/30/19 12:28,"352 Main St, Los Angeles, CA 90001" +249545,Apple Airpods Headphones,1,150,09/28/19 23:08,"197 Church St, New York City, NY 10001" +249546,USB-C Charging Cable,1,11.95,09/20/19 08:56,"690 9th St, Seattle, WA 98101" +249547,Lightning Charging Cable,1,14.95,09/10/19 15:58,"502 Highland St, Los Angeles, CA 90001" +249548,USB-C Charging Cable,1,11.95,09/21/19 12:47,"540 Johnson St, New York City, NY 10001" +249549,AA Batteries (4-pack),1,3.84,09/27/19 11:24,"993 Park St, San Francisco, CA 94016" +249550,Bose SoundSport Headphones,1,99.99,09/25/19 00:33,"832 Jackson St, Dallas, TX 75001" +249551,ThinkPad Laptop,1,999.99,09/22/19 13:13,"875 Elm St, New York City, NY 10001" +249552,Bose SoundSport Headphones,1,99.99,09/18/19 11:27,"49 River St, San Francisco, CA 94016" +249553,AAA Batteries (4-pack),1,2.99,09/21/19 21:52,"303 11th St, Los Angeles, CA 90001" +249554,Lightning Charging Cable,1,14.95,09/04/19 09:12,"671 Main St, New York City, NY 10001" +249555,Lightning Charging Cable,1,14.95,09/01/19 11:44,"600 Church St, Portland, OR 97035" +249556,Lightning Charging Cable,1,14.95,09/29/19 15:56,"127 8th St, Portland, ME 04101" +249557,Apple Airpods Headphones,1,150,09/29/19 17:44,"738 Cherry St, Los Angeles, CA 90001" +249558,Wired Headphones,1,11.99,09/05/19 20:26,"970 Highland St, Los Angeles, CA 90001" +249559,Vareebadd Phone,1,400,09/25/19 14:42,"155 Center St, San Francisco, CA 94016" +249559,USB-C Charging Cable,1,11.95,09/25/19 14:42,"155 Center St, San Francisco, CA 94016" +249560,34in Ultrawide Monitor,1,379.99,09/28/19 18:36,"658 Hill St, San Francisco, CA 94016" +249561,Flatscreen TV,1,300,09/06/19 09:00,"881 1st St, Boston, MA 02215" +249562,AAA Batteries (4-pack),1,2.99,09/03/19 21:03,"879 Chestnut St, Los Angeles, CA 90001" +249563,Apple Airpods Headphones,1,150,09/23/19 07:21,"549 Madison St, Austin, TX 73301" +249564,Wired Headphones,1,11.99,09/15/19 10:34,"554 Center St, Seattle, WA 98101" +249565,AAA Batteries (4-pack),1,2.99,09/06/19 19:35,"624 Main St, Los Angeles, CA 90001" +249566,Wired Headphones,1,11.99,09/16/19 13:33,"500 10th St, New York City, NY 10001" +249567,34in Ultrawide Monitor,1,379.99,09/05/19 16:09,"697 2nd St, San Francisco, CA 94016" +249568,27in FHD Monitor,1,149.99,09/24/19 09:06,"457 Hill St, Austin, TX 73301" +249569,iPhone,1,700,09/20/19 17:21,"290 Lakeview St, San Francisco, CA 94016" +249570,ThinkPad Laptop,1,999.99,09/25/19 17:09,"506 Cherry St, Portland, OR 97035" +249571,34in Ultrawide Monitor,1,379.99,09/27/19 11:02,"276 Jefferson St, San Francisco, CA 94016" +249572,Apple Airpods Headphones,1,150,09/25/19 18:34,"339 Lincoln St, Los Angeles, CA 90001" +249573,Flatscreen TV,1,300,09/28/19 15:08,"702 Cedar St, Boston, MA 02215" +249574,USB-C Charging Cable,1,11.95,09/15/19 11:05,"205 Lincoln St, Seattle, WA 98101" +249575,AA Batteries (4-pack),1,3.84,09/28/19 06:55,"745 Chestnut St, Boston, MA 02215" +249576,AAA Batteries (4-pack),1,2.99,09/25/19 20:04,"802 10th St, Austin, TX 73301" +249577,Lightning Charging Cable,1,14.95,09/30/19 09:05,"166 Highland St, Austin, TX 73301" +249578,AAA Batteries (4-pack),2,2.99,09/23/19 22:25,"29 Spruce St, Los Angeles, CA 90001" +249579,34in Ultrawide Monitor,1,379.99,09/10/19 19:35,"412 Hickory St, Austin, TX 73301" +249580,AA Batteries (4-pack),1,3.84,09/21/19 19:54,"327 Walnut St, New York City, NY 10001" +249581,USB-C Charging Cable,1,11.95,09/21/19 12:15,"232 Maple St, Seattle, WA 98101" +249582,Macbook Pro Laptop,1,1700,09/05/19 13:29,"697 Walnut St, New York City, NY 10001" +249583,iPhone,1,700,09/06/19 18:04,"854 14th St, Portland, ME 04101" +249583,Lightning Charging Cable,1,14.95,09/06/19 18:04,"854 14th St, Portland, ME 04101" +249584,iPhone,1,700,09/08/19 05:55,"959 Johnson St, Austin, TX 73301" +249585,USB-C Charging Cable,1,11.95,09/01/19 09:55,"543 5th St, Boston, MA 02215" +249586,Flatscreen TV,1,300,09/30/19 13:02,"33 10th St, Seattle, WA 98101" +249587,27in 4K Gaming Monitor,1,389.99,09/29/19 11:14,"997 Sunset St, New York City, NY 10001" +249588,Apple Airpods Headphones,1,150,09/03/19 21:16,"665 1st St, Seattle, WA 98101" +249589,AA Batteries (4-pack),1,3.84,09/04/19 00:21,"988 Pine St, Los Angeles, CA 90001" +249590,Lightning Charging Cable,1,14.95,09/28/19 23:06,"196 7th St, Dallas, TX 75001" +249591,Apple Airpods Headphones,1,150,09/18/19 09:51,"376 9th St, Dallas, TX 75001" +249592,Macbook Pro Laptop,1,1700,09/27/19 16:01,"949 South St, Seattle, WA 98101" +249593,AAA Batteries (4-pack),1,2.99,09/19/19 09:58,"480 2nd St, Los Angeles, CA 90001" +249594,Apple Airpods Headphones,1,150,09/11/19 21:17,"230 6th St, New York City, NY 10001" +249595,Bose SoundSport Headphones,1,99.99,09/12/19 12:41,"478 Hickory St, Boston, MA 02215" +249596,20in Monitor,1,109.99,09/06/19 11:38,"886 Cedar St, Austin, TX 73301" +249597,Lightning Charging Cable,1,14.95,09/07/19 07:47,"763 10th St, San Francisco, CA 94016" +249598,Lightning Charging Cable,1,14.95,09/18/19 23:33,"80 5th St, San Francisco, CA 94016" +249599,Macbook Pro Laptop,1,1700,09/13/19 22:07,"570 Madison St, Boston, MA 02215" +249600,USB-C Charging Cable,1,11.95,09/11/19 11:23,"999 Church St, San Francisco, CA 94016" +249601,Apple Airpods Headphones,1,150,09/12/19 16:26,"55 Forest St, San Francisco, CA 94016" +249602,iPhone,1,700,09/10/19 21:22,"563 Forest St, San Francisco, CA 94016" +249602,Wired Headphones,1,11.99,09/10/19 21:22,"563 Forest St, San Francisco, CA 94016" +249603,Apple Airpods Headphones,1,150,09/04/19 10:41,"442 Willow St, Los Angeles, CA 90001" +249604,AA Batteries (4-pack),2,3.84,09/05/19 09:57,"374 4th St, San Francisco, CA 94016" +249605,Lightning Charging Cable,1,14.95,09/30/19 20:26,"389 8th St, Portland, OR 97035" +249606,Lightning Charging Cable,1,14.95,09/23/19 11:58,"198 Pine St, New York City, NY 10001" +249607,AA Batteries (4-pack),1,3.84,09/30/19 14:06,"470 Cedar St, San Francisco, CA 94016" +249608,Vareebadd Phone,1,400,09/09/19 08:19,"46 North St, Los Angeles, CA 90001" +249609,iPhone,1,700,09/14/19 17:55,"820 9th St, New York City, NY 10001" +249610,iPhone,1,700,09/22/19 10:35,"189 Walnut St, New York City, NY 10001" +249611,USB-C Charging Cable,1,11.95,09/16/19 18:32,"988 Cherry St, Dallas, TX 75001" +249611,ThinkPad Laptop,1,999.99,09/16/19 18:32,"988 Cherry St, Dallas, TX 75001" +249612,34in Ultrawide Monitor,1,379.99,09/22/19 12:09,"405 12th St, San Francisco, CA 94016" +249613,AA Batteries (4-pack),1,3.84,09/23/19 14:21,"335 Main St, Portland, ME 04101" +249614,AAA Batteries (4-pack),1,2.99,09/15/19 19:02,"201 Adams St, San Francisco, CA 94016" +249615,USB-C Charging Cable,1,11.95,09/26/19 23:54,"142 River St, San Francisco, CA 94016" +249616,USB-C Charging Cable,1,11.95,09/04/19 07:08,"824 14th St, New York City, NY 10001" +249617,USB-C Charging Cable,1,11.95,09/19/19 10:59,"639 Jackson St, San Francisco, CA 94016" +249618,USB-C Charging Cable,1,11.95,09/13/19 14:26,"896 Madison St, San Francisco, CA 94016" +249619,27in 4K Gaming Monitor,1,389.99,09/19/19 11:15,"587 10th St, Los Angeles, CA 90001" +249620,iPhone,1,700,09/23/19 20:00,"190 Center St, San Francisco, CA 94016" +249621,Apple Airpods Headphones,1,150,09/26/19 07:26,"456 Elm St, San Francisco, CA 94016" +249622,27in FHD Monitor,1,149.99,09/28/19 17:19,"494 Hickory St, New York City, NY 10001" +249623,AA Batteries (4-pack),1,3.84,09/16/19 18:28,"358 Meadow St, San Francisco, CA 94016" +249624,Apple Airpods Headphones,1,150,09/13/19 18:03,"649 Meadow St, Atlanta, GA 30301" +249625,Lightning Charging Cable,1,14.95,09/18/19 12:19,"726 Spruce St, Portland, ME 04101" +249626,iPhone,1,700,09/06/19 20:21,"942 Dogwood St, Los Angeles, CA 90001" +249627,27in 4K Gaming Monitor,1,389.99,09/17/19 09:07,"117 North St, San Francisco, CA 94016" +249628,Apple Airpods Headphones,1,150,09/03/19 09:25,"144 10th St, New York City, NY 10001" +249629,34in Ultrawide Monitor,1,379.99,09/27/19 18:10,"790 Spruce St, Los Angeles, CA 90001" +249630,AA Batteries (4-pack),1,3.84,09/23/19 14:59,"816 11th St, Portland, OR 97035" +249631,Apple Airpods Headphones,1,150,09/16/19 22:26,"398 Main St, Atlanta, GA 30301" +249632,Vareebadd Phone,1,400,09/16/19 21:36,"734 Church St, Los Angeles, CA 90001" +249633,Lightning Charging Cable,2,14.95,09/08/19 04:09,"701 South St, Los Angeles, CA 90001" +249634,Macbook Pro Laptop,1,1700,09/27/19 11:17,"591 Cedar St, San Francisco, CA 94016" +249635,USB-C Charging Cable,1,11.95,09/12/19 12:01,"210 2nd St, Seattle, WA 98101" +249636,AAA Batteries (4-pack),2,2.99,09/22/19 18:48,"266 River St, San Francisco, CA 94016" +249637,Wired Headphones,2,11.99,09/05/19 13:58,"626 Cherry St, Atlanta, GA 30301" +249638,20in Monitor,1,109.99,09/14/19 10:40,"588 14th St, Seattle, WA 98101" +249639,27in 4K Gaming Monitor,1,389.99,09/25/19 09:10,"140 Dogwood St, Dallas, TX 75001" +249640,Google Phone,1,600,09/13/19 10:29,"550 13th St, Boston, MA 02215" +249641,USB-C Charging Cable,1,11.95,09/12/19 14:34,"905 2nd St, San Francisco, CA 94016" +249642,Apple Airpods Headphones,1,150,09/01/19 13:02,"152 Cherry St, Dallas, TX 75001" +249643,Apple Airpods Headphones,1,150,09/24/19 02:48,"204 West St, San Francisco, CA 94016" +249644,AAA Batteries (4-pack),1,2.99,09/09/19 13:13,"60 8th St, New York City, NY 10001" +249645,Macbook Pro Laptop,1,1700,09/01/19 19:36,"582 West St, Seattle, WA 98101" +249646,34in Ultrawide Monitor,1,379.99,09/07/19 10:49,"989 Main St, Portland, OR 97035" +249647,Apple Airpods Headphones,1,150,09/04/19 09:25,"924 Lakeview St, Boston, MA 02215" +249648,USB-C Charging Cable,1,11.95,09/05/19 00:23,"873 Hickory St, Seattle, WA 98101" +249649,34in Ultrawide Monitor,1,379.99,09/03/19 10:08,"71 Cedar St, Atlanta, GA 30301" +249650,Apple Airpods Headphones,1,150,09/04/19 11:36,"906 Lincoln St, San Francisco, CA 94016" +249651,Bose SoundSport Headphones,1,99.99,09/20/19 15:33,"755 13th St, Seattle, WA 98101" +249652,AA Batteries (4-pack),1,3.84,09/11/19 10:53,"611 Center St, Los Angeles, CA 90001" +249653,Flatscreen TV,1,300,09/27/19 06:23,"916 Lincoln St, Austin, TX 73301" +249654,Bose SoundSport Headphones,1,99.99,09/23/19 16:36,"427 Willow St, Los Angeles, CA 90001" +249655,Lightning Charging Cable,1,14.95,09/10/19 14:01,"336 Walnut St, Austin, TX 73301" +249656,Flatscreen TV,1,300,09/25/19 13:04,"280 Church St, Portland, OR 97035" +249657,27in FHD Monitor,1,149.99,09/30/19 22:38,"674 Cherry St, Seattle, WA 98101" +249658,Wired Headphones,2,11.99,09/14/19 12:52,"712 Dogwood St, New York City, NY 10001" +249659,USB-C Charging Cable,1,11.95,09/17/19 15:33,"671 Ridge St, New York City, NY 10001" +249660,AA Batteries (4-pack),2,3.84,09/24/19 16:08,"602 Madison St, Boston, MA 02215" +249661,Wired Headphones,1,11.99,09/27/19 14:38,"945 Walnut St, San Francisco, CA 94016" +249662,AA Batteries (4-pack),2,3.84,09/07/19 19:11,"464 Chestnut St, Atlanta, GA 30301" +249663,Wired Headphones,1,11.99,09/17/19 05:55,"82 2nd St, Dallas, TX 75001" +249664,iPhone,1,700,09/03/19 19:27,"936 2nd St, Atlanta, GA 30301" +249665,Bose SoundSport Headphones,1,99.99,09/14/19 09:49,"944 Washington St, Seattle, WA 98101" +249666,Lightning Charging Cable,1,14.95,09/17/19 18:11,"212 Ridge St, San Francisco, CA 94016" +249667,27in FHD Monitor,1,149.99,09/03/19 12:27,"422 Cherry St, San Francisco, CA 94016" +249668,27in FHD Monitor,1,149.99,09/21/19 20:24,"176 River St, Dallas, TX 75001" +249669,USB-C Charging Cable,1,11.95,09/24/19 01:19,"623 Hickory St, Austin, TX 73301" +249670,Wired Headphones,1,11.99,09/16/19 09:17,"844 Meadow St, San Francisco, CA 94016" +249671,USB-C Charging Cable,1,11.95,09/05/19 18:00,"750 Jackson St, San Francisco, CA 94016" +249672,iPhone,1,700,09/09/19 07:37,"474 Maple St, Portland, ME 04101" +249673,Wired Headphones,1,11.99,09/07/19 09:15,"143 Pine St, Los Angeles, CA 90001" +249674,Wired Headphones,1,11.99,09/16/19 17:28,"805 Lincoln St, New York City, NY 10001" +249675,AA Batteries (4-pack),1,3.84,09/20/19 16:49,"803 Jefferson St, Los Angeles, CA 90001" +249676,Lightning Charging Cable,1,14.95,09/22/19 10:03,"947 9th St, San Francisco, CA 94016" +249677,Apple Airpods Headphones,1,150,09/27/19 08:56,"289 Johnson St, San Francisco, CA 94016" +249678,AAA Batteries (4-pack),1,2.99,09/23/19 22:08,"961 Hickory St, Seattle, WA 98101" +249679,27in FHD Monitor,1,149.99,09/27/19 09:27,"787 West St, New York City, NY 10001" +249680,Apple Airpods Headphones,1,150,09/11/19 21:48,"45 Elm St, Seattle, WA 98101" +249681,AAA Batteries (4-pack),1,2.99,09/26/19 01:03,"222 Meadow St, New York City, NY 10001" +249682,Apple Airpods Headphones,1,150,09/05/19 23:28,"499 1st St, Portland, ME 04101" +249683,Wired Headphones,1,11.99,09/18/19 15:05,"318 14th St, Dallas, TX 75001" +249684,Google Phone,1,600,09/06/19 18:48,"328 Hickory St, New York City, NY 10001" +249684,USB-C Charging Cable,1,11.95,09/06/19 18:48,"328 Hickory St, New York City, NY 10001" +249685,Apple Airpods Headphones,1,150,09/07/19 14:24,"710 Chestnut St, Los Angeles, CA 90001" +249686,AA Batteries (4-pack),3,3.84,09/14/19 10:02,"478 Dogwood St, New York City, NY 10001" +249687,20in Monitor,1,109.99,09/08/19 18:53,"492 North St, Austin, TX 73301" +249688,Lightning Charging Cable,1,14.95,09/26/19 10:18,"242 Elm St, Los Angeles, CA 90001" +249689,AAA Batteries (4-pack),1,2.99,09/05/19 20:55,"433 Jackson St, San Francisco, CA 94016" +249690,27in 4K Gaming Monitor,1,389.99,09/08/19 11:04,"488 Adams St, San Francisco, CA 94016" +249691,Flatscreen TV,1,300,09/06/19 21:33,"906 12th St, San Francisco, CA 94016" +249692,Bose SoundSport Headphones,1,99.99,09/02/19 16:29,"419 Meadow St, Los Angeles, CA 90001" +249693,27in 4K Gaming Monitor,1,389.99,09/05/19 07:26,"226 Chestnut St, San Francisco, CA 94016" +249694,27in FHD Monitor,1,149.99,09/16/19 12:45,"714 Meadow St, Austin, TX 73301" +249695,Apple Airpods Headphones,1,150,09/04/19 20:00,"784 Maple St, New York City, NY 10001" +249696,USB-C Charging Cable,1,11.95,09/29/19 12:39,"130 Johnson St, San Francisco, CA 94016" +249697,USB-C Charging Cable,1,11.95,09/25/19 03:26,"997 14th St, Dallas, TX 75001" +249698,AA Batteries (4-pack),1,3.84,09/02/19 12:35,"228 Madison St, New York City, NY 10001" +249699,iPhone,1,700,09/19/19 18:50,"11 Meadow St, San Francisco, CA 94016" +249700,AAA Batteries (4-pack),1,2.99,09/30/19 19:04,"960 Pine St, San Francisco, CA 94016" +249701,Bose SoundSport Headphones,1,99.99,09/18/19 09:38,"15 Church St, Portland, OR 97035" +249702,Lightning Charging Cable,1,14.95,09/09/19 13:34,"414 6th St, Dallas, TX 75001" +249703,Flatscreen TV,1,300,09/23/19 11:19,"248 Church St, Seattle, WA 98101" +249704,Apple Airpods Headphones,1,150,09/19/19 14:53,"774 Cherry St, Seattle, WA 98101" +249705,AA Batteries (4-pack),1,3.84,09/25/19 17:46,"58 Wilson St, Los Angeles, CA 90001" +249706,AAA Batteries (4-pack),1,2.99,09/16/19 16:01,"401 River St, San Francisco, CA 94016" +249707,AA Batteries (4-pack),2,3.84,09/11/19 19:47,"660 Center St, Austin, TX 73301" +249708,AAA Batteries (4-pack),3,2.99,09/20/19 23:55,"868 River St, Boston, MA 02215" +249709,Apple Airpods Headphones,1,150,09/18/19 10:16,"737 Sunset St, Boston, MA 02215" +249710,Lightning Charging Cable,1,14.95,09/03/19 19:59,"904 Elm St, San Francisco, CA 94016" +249711,USB-C Charging Cable,1,11.95,09/26/19 21:00,"814 9th St, New York City, NY 10001" +249712,AA Batteries (4-pack),1,3.84,09/25/19 22:24,"131 South St, New York City, NY 10001" +249713,USB-C Charging Cable,1,11.95,09/18/19 12:37,"197 Pine St, Los Angeles, CA 90001" +249714,Google Phone,1,600,09/08/19 07:08,"560 4th St, Dallas, TX 75001" +249715,Apple Airpods Headphones,1,150,09/11/19 20:46,"825 Jackson St, Austin, TX 73301" +249716,Vareebadd Phone,1,400,09/18/19 12:05,"586 Walnut St, Los Angeles, CA 90001" +249716,USB-C Charging Cable,1,11.95,09/18/19 12:05,"586 Walnut St, Los Angeles, CA 90001" +249717,Lightning Charging Cable,1,14.95,09/23/19 22:39,"951 Adams St, Los Angeles, CA 90001" +249718,Wired Headphones,1,11.99,09/25/19 00:54,"159 Sunset St, New York City, NY 10001" +249719,AAA Batteries (4-pack),2,2.99,09/14/19 16:24,"62 North St, New York City, NY 10001" +249720,Wired Headphones,1,11.99,09/02/19 19:09,"367 Highland St, San Francisco, CA 94016" +249721,Google Phone,1,600,09/20/19 08:57,"150 Highland St, San Francisco, CA 94016" +249721,Bose SoundSport Headphones,1,99.99,09/20/19 08:57,"150 Highland St, San Francisco, CA 94016" +249722,Bose SoundSport Headphones,1,99.99,09/18/19 08:16,"247 Willow St, San Francisco, CA 94016" +249723,Macbook Pro Laptop,1,1700,09/03/19 18:09,"761 Jackson St, San Francisco, CA 94016" +249724,34in Ultrawide Monitor,1,379.99,09/24/19 20:35,"924 14th St, Seattle, WA 98101" +249725,AAA Batteries (4-pack),4,2.99,09/13/19 13:43,"973 North St, New York City, NY 10001" +249726,LG Washing Machine,1,600.0,09/28/19 18:08,"500 Lakeview St, Austin, TX 73301" +249727,27in 4K Gaming Monitor,1,389.99,09/06/19 17:12,"255 Spruce St, San Francisco, CA 94016" +249728,AA Batteries (4-pack),1,3.84,09/07/19 19:10,"628 North St, Seattle, WA 98101" +249729,Wired Headphones,1,11.99,09/17/19 11:19,"867 Cherry St, Portland, ME 04101" +249730,Apple Airpods Headphones,1,150,09/29/19 19:11,"47 Maple St, Los Angeles, CA 90001" +249731,AA Batteries (4-pack),3,3.84,09/28/19 15:26,"542 Church St, San Francisco, CA 94016" +249732,LG Dryer,1,600.0,09/20/19 13:03,"850 Ridge St, Atlanta, GA 30301" +249733,Google Phone,1,600,09/04/19 12:21,"673 1st St, San Francisco, CA 94016" +249734,Apple Airpods Headphones,1,150,09/18/19 18:06,"762 Lake St, Atlanta, GA 30301" +249735,iPhone,1,700,09/06/19 15:32,"384 Washington St, Boston, MA 02215" +249736,20in Monitor,1,109.99,09/26/19 12:36,"950 North St, Los Angeles, CA 90001" +249737,Lightning Charging Cable,1,14.95,09/21/19 19:23,"550 6th St, New York City, NY 10001" +249738,Wired Headphones,1,11.99,09/25/19 15:44,"195 Highland St, Austin, TX 73301" +249739,Lightning Charging Cable,1,14.95,09/26/19 10:07,"76 Center St, Atlanta, GA 30301" +249740,Lightning Charging Cable,1,14.95,09/24/19 21:04,"795 Park St, San Francisco, CA 94016" +249741,Vareebadd Phone,1,400,09/26/19 19:41,"571 Hill St, San Francisco, CA 94016" +249742,Lightning Charging Cable,1,14.95,09/05/19 05:54,"122 13th St, Portland, OR 97035" +249742,USB-C Charging Cable,1,11.95,09/05/19 05:54,"122 13th St, Portland, OR 97035" +249743,AA Batteries (4-pack),1,3.84,09/01/19 15:46,"339 4th St, Seattle, WA 98101" +249744,Bose SoundSport Headphones,1,99.99,09/20/19 21:56,"360 Washington St, Atlanta, GA 30301" +249745,USB-C Charging Cable,1,11.95,09/21/19 08:42,"856 Church St, Austin, TX 73301" +249746,USB-C Charging Cable,1,11.95,09/04/19 09:57,"172 Meadow St, Los Angeles, CA 90001" +249747,Lightning Charging Cable,1,14.95,09/04/19 16:20,"115 Spruce St, Boston, MA 02215" +249748,Vareebadd Phone,1,400,09/01/19 20:41,"824 Ridge St, Seattle, WA 98101" +249748,Bose SoundSport Headphones,1,99.99,09/01/19 20:41,"824 Ridge St, Seattle, WA 98101" +249749,USB-C Charging Cable,1,11.95,09/01/19 16:18,"125 Lake St, Seattle, WA 98101" +249750,USB-C Charging Cable,1,11.95,09/17/19 12:52,"244 Center St, Los Angeles, CA 90001" +249751,AA Batteries (4-pack),1,3.84,09/18/19 14:51,"376 Cherry St, San Francisco, CA 94016" +249752,Macbook Pro Laptop,1,1700,09/22/19 10:26,"768 6th St, Los Angeles, CA 90001" +249753,Lightning Charging Cable,1,14.95,09/19/19 19:08,"925 Elm St, New York City, NY 10001" +249754,Lightning Charging Cable,1,14.95,09/01/19 08:39,"574 Willow St, Los Angeles, CA 90001" +249755,AAA Batteries (4-pack),1,2.99,09/12/19 07:24,"272 10th St, Los Angeles, CA 90001" +249756,Wired Headphones,2,11.99,09/26/19 09:56,"613 Lake St, New York City, NY 10001" +249757,AA Batteries (4-pack),1,3.84,09/11/19 13:32,"562 Wilson St, Portland, OR 97035" +249758,USB-C Charging Cable,2,11.95,09/27/19 13:32,"899 Cherry St, Seattle, WA 98101" +249759,USB-C Charging Cable,1,11.95,09/08/19 20:55,"789 8th St, Los Angeles, CA 90001" +249760,USB-C Charging Cable,1,11.95,09/28/19 18:36,"741 Cherry St, Portland, OR 97035" +249761,AA Batteries (4-pack),2,3.84,09/14/19 21:58,"490 Wilson St, Los Angeles, CA 90001" +249762,AA Batteries (4-pack),1,3.84,09/01/19 10:24,"670 11th St, Atlanta, GA 30301" +249763,AA Batteries (4-pack),2,3.84,09/09/19 10:23,"900 Highland St, Atlanta, GA 30301" +249764,Macbook Pro Laptop,1,1700,09/05/19 16:24,"589 11th St, Los Angeles, CA 90001" +249765,USB-C Charging Cable,1,11.95,09/24/19 16:51,"863 Sunset St, San Francisco, CA 94016" +249766,Lightning Charging Cable,1,14.95,09/05/19 15:03,"585 Maple St, Seattle, WA 98101" +249767,20in Monitor,1,109.99,09/17/19 13:14,"737 Adams St, San Francisco, CA 94016" +249768,Apple Airpods Headphones,1,150,09/07/19 10:00,"380 Sunset St, New York City, NY 10001" +249769,Wired Headphones,2,11.99,09/04/19 06:35,"626 Hickory St, Los Angeles, CA 90001" +249770,Lightning Charging Cable,1,14.95,09/24/19 17:39,"681 Jefferson St, San Francisco, CA 94016" +249771,Lightning Charging Cable,1,14.95,09/02/19 12:00,"254 8th St, Los Angeles, CA 90001" +249772,Lightning Charging Cable,1,14.95,09/25/19 06:35,"507 10th St, San Francisco, CA 94016" +249773,iPhone,1,700,09/24/19 18:46,"903 West St, New York City, NY 10001" +249774,USB-C Charging Cable,1,11.95,09/02/19 16:57,"199 West St, San Francisco, CA 94016" +249775,AAA Batteries (4-pack),1,2.99,09/01/19 13:08,"801 Elm St, San Francisco, CA 94016" +249776,AA Batteries (4-pack),1,3.84,09/11/19 09:50,"619 Cedar St, San Francisco, CA 94016" +249777,AA Batteries (4-pack),2,3.84,09/17/19 14:53,"144 Cedar St, Boston, MA 02215" +249778,AAA Batteries (4-pack),3,2.99,09/27/19 11:15,"765 Lakeview St, Dallas, TX 75001" +249779,Wired Headphones,1,11.99,09/18/19 16:41,"19 Sunset St, Seattle, WA 98101" +249780,Apple Airpods Headphones,1,150,09/06/19 17:23,"309 7th St, San Francisco, CA 94016" +249781,Apple Airpods Headphones,1,150,09/12/19 07:29,"704 North St, Seattle, WA 98101" +249782,Apple Airpods Headphones,1,150,09/29/19 12:49,"116 Elm St, New York City, NY 10001" +249783,iPhone,1,700,09/25/19 14:28,"266 North St, Los Angeles, CA 90001" +249784,AAA Batteries (4-pack),1,2.99,09/17/19 13:16,"39 Hill St, New York City, NY 10001" +249785,27in 4K Gaming Monitor,1,389.99,09/24/19 01:21,"458 Meadow St, Boston, MA 02215" +249786,27in FHD Monitor,1,149.99,09/12/19 18:02,"19 4th St, Boston, MA 02215" +249787,20in Monitor,1,109.99,09/19/19 19:14,"946 Center St, San Francisco, CA 94016" +249788,Wired Headphones,1,11.99,09/02/19 13:35,"136 Madison St, Austin, TX 73301" +249789,AAA Batteries (4-pack),1,2.99,09/30/19 16:58,"149 12th St, San Francisco, CA 94016" +249790,USB-C Charging Cable,1,11.95,09/18/19 22:27,"556 14th St, New York City, NY 10001" +249791,USB-C Charging Cable,1,11.95,09/20/19 22:40,"475 4th St, Seattle, WA 98101" +249792,USB-C Charging Cable,1,11.95,09/10/19 20:51,"767 Willow St, Boston, MA 02215" +249793,Bose SoundSport Headphones,1,99.99,09/06/19 19:40,"333 Lincoln St, Seattle, WA 98101" +249794,AAA Batteries (4-pack),1,2.99,09/08/19 17:09,"176 5th St, New York City, NY 10001" +249795,Lightning Charging Cable,1,14.95,09/04/19 11:35,"339 4th St, New York City, NY 10001" +249796,USB-C Charging Cable,1,11.95,09/10/19 22:33,"930 Forest St, Atlanta, GA 30301" +249797,Google Phone,1,600,09/23/19 22:42,"630 Johnson St, Portland, OR 97035" +249797,USB-C Charging Cable,1,11.95,09/23/19 22:42,"630 Johnson St, Portland, OR 97035" +249798,AA Batteries (4-pack),1,3.84,09/21/19 22:14,"957 Chestnut St, Austin, TX 73301" +249799,Wired Headphones,1,11.99,09/12/19 10:36,"720 Jackson St, New York City, NY 10001" +249800,Google Phone,1,600,09/16/19 16:31,"329 8th St, Portland, OR 97035" +249801,Google Phone,1,600,09/17/19 13:50,"583 Wilson St, Los Angeles, CA 90001" +249802,USB-C Charging Cable,1,11.95,09/30/19 22:45,"396 Cherry St, New York City, NY 10001" +249803,USB-C Charging Cable,1,11.95,09/30/19 20:28,"650 8th St, San Francisco, CA 94016" +249804,AAA Batteries (4-pack),1,2.99,09/27/19 21:18,"589 Jefferson St, Boston, MA 02215" +249805,AAA Batteries (4-pack),1,2.99,09/22/19 16:51,"634 Hill St, Dallas, TX 75001" +249806,iPhone,1,700,09/17/19 21:08,"147 Lincoln St, Boston, MA 02215" +249807,iPhone,1,700,09/08/19 20:00,"782 2nd St, Dallas, TX 75001" +249807,Lightning Charging Cable,1,14.95,09/08/19 20:00,"782 2nd St, Dallas, TX 75001" +249808,34in Ultrawide Monitor,1,379.99,09/13/19 19:08,"851 Elm St, Dallas, TX 75001" +249809,Bose SoundSport Headphones,1,99.99,09/26/19 14:35,"425 11th St, Atlanta, GA 30301" +249810,USB-C Charging Cable,1,11.95,09/01/19 11:22,"952 Spruce St, New York City, NY 10001" +249811,AAA Batteries (4-pack),3,2.99,09/13/19 17:12,"95 Pine St, Seattle, WA 98101" +249811,AA Batteries (4-pack),1,3.84,09/13/19 17:12,"95 Pine St, Seattle, WA 98101" +249812,AAA Batteries (4-pack),1,2.99,09/29/19 12:16,"651 10th St, Seattle, WA 98101" +249813,Wired Headphones,1,11.99,09/26/19 17:33,"861 Highland St, Portland, OR 97035" +249814,Apple Airpods Headphones,1,150,09/19/19 09:34,"513 Jackson St, Seattle, WA 98101" +249815,Wired Headphones,1,11.99,09/29/19 08:31,"614 2nd St, San Francisco, CA 94016" +249816,AAA Batteries (4-pack),2,2.99,09/09/19 12:00,"242 Walnut St, San Francisco, CA 94016" +249817,AAA Batteries (4-pack),1,2.99,09/09/19 14:03,"239 Cherry St, Los Angeles, CA 90001" +249818,Bose SoundSport Headphones,1,99.99,09/19/19 12:12,"854 12th St, San Francisco, CA 94016" +249819,Macbook Pro Laptop,1,1700,09/13/19 16:55,"759 Elm St, Seattle, WA 98101" +249820,AAA Batteries (4-pack),2,2.99,09/06/19 19:38,"371 Washington St, San Francisco, CA 94016" +249821,Bose SoundSport Headphones,1,99.99,09/21/19 00:13,"201 12th St, Seattle, WA 98101" +249822,AAA Batteries (4-pack),1,2.99,09/19/19 13:24,"528 Willow St, Boston, MA 02215" +249823,Lightning Charging Cable,1,14.95,09/29/19 06:17,"524 Elm St, Dallas, TX 75001" +249824,Lightning Charging Cable,1,14.95,09/07/19 18:47,"718 River St, San Francisco, CA 94016" +249825,USB-C Charging Cable,1,11.95,09/04/19 23:21,"180 West St, Boston, MA 02215" +249826,USB-C Charging Cable,1,11.95,09/14/19 15:15,"859 Highland St, Boston, MA 02215" +249827,27in FHD Monitor,1,149.99,09/26/19 19:49,"996 8th St, Los Angeles, CA 90001" +249828,AAA Batteries (4-pack),1,2.99,09/09/19 23:41,"267 Madison St, San Francisco, CA 94016" +249829,AAA Batteries (4-pack),1,2.99,09/29/19 07:41,"158 Sunset St, Seattle, WA 98101" +249830,Lightning Charging Cable,1,14.95,09/10/19 19:57,"887 Hickory St, Portland, OR 97035" +249831,Wired Headphones,1,11.99,09/01/19 12:39,"304 Johnson St, Atlanta, GA 30301" +249832,Lightning Charging Cable,1,14.95,09/25/19 12:02,"629 Sunset St, Los Angeles, CA 90001" +249833,Bose SoundSport Headphones,1,99.99,09/17/19 11:38,"376 Washington St, Portland, OR 97035" +249834,AAA Batteries (4-pack),1,2.99,09/17/19 12:22,"63 Jefferson St, New York City, NY 10001" +249835,Lightning Charging Cable,2,14.95,09/09/19 13:14,"41 Pine St, Boston, MA 02215" +249836,USB-C Charging Cable,1,11.95,09/23/19 19:09,"963 Johnson St, Atlanta, GA 30301" +249837,27in FHD Monitor,1,149.99,09/30/19 17:57,"787 10th St, Boston, MA 02215" +249838,USB-C Charging Cable,1,11.95,09/29/19 08:35,"141 Madison St, Seattle, WA 98101" +249839,Apple Airpods Headphones,1,150,09/05/19 21:39,"658 Ridge St, San Francisco, CA 94016" +249840,Flatscreen TV,1,300,09/08/19 18:53,"477 West St, San Francisco, CA 94016" +249841,iPhone,1,700,09/27/19 19:33,"502 Church St, Boston, MA 02215" +249841,Lightning Charging Cable,1,14.95,09/27/19 19:33,"502 Church St, Boston, MA 02215" +249841,Wired Headphones,1,11.99,09/27/19 19:33,"502 Church St, Boston, MA 02215" +249842,USB-C Charging Cable,1,11.95,09/29/19 13:21,"924 11th St, Los Angeles, CA 90001" +249843,Lightning Charging Cable,1,14.95,09/14/19 22:46,"620 2nd St, San Francisco, CA 94016" +249844,iPhone,1,700,09/02/19 14:07,"631 Hill St, San Francisco, CA 94016" +249845,USB-C Charging Cable,1,11.95,09/15/19 10:58,"418 4th St, San Francisco, CA 94016" +249846,ThinkPad Laptop,1,999.99,09/23/19 20:45,"649 Lake St, Los Angeles, CA 90001" +249847,34in Ultrawide Monitor,1,379.99,09/06/19 13:29,"111 Walnut St, New York City, NY 10001" +249848,AAA Batteries (4-pack),2,2.99,09/07/19 11:14,"264 Pine St, Dallas, TX 75001" +249849,20in Monitor,1,109.99,09/24/19 16:12,"260 South St, San Francisco, CA 94016" +249850,ThinkPad Laptop,1,999.99,09/05/19 11:47,"446 Hill St, Los Angeles, CA 90001" +249851,Lightning Charging Cable,1,14.95,09/05/19 09:34,"708 Church St, Austin, TX 73301" +249852,AAA Batteries (4-pack),1,2.99,09/11/19 19:08,"733 10th St, Boston, MA 02215" +249853,iPhone,1,700,09/19/19 10:48,"806 Center St, Los Angeles, CA 90001" +249854,Apple Airpods Headphones,1,150,09/16/19 19:42,"216 Ridge St, Atlanta, GA 30301" +249855,ThinkPad Laptop,1,999.99,09/28/19 18:57,"379 Church St, Dallas, TX 75001" +249856,USB-C Charging Cable,1,11.95,09/10/19 16:06,"536 South St, Los Angeles, CA 90001" +249857,Lightning Charging Cable,1,14.95,09/07/19 16:31,"460 Johnson St, New York City, NY 10001" +249858,Bose SoundSport Headphones,1,99.99,09/21/19 10:47,"343 Hill St, New York City, NY 10001" +249859,Wired Headphones,1,11.99,09/20/19 10:20,"37 Sunset St, Austin, TX 73301" +249860,USB-C Charging Cable,1,11.95,09/11/19 06:41,"447 Washington St, New York City, NY 10001" +249861,iPhone,1,700,09/11/19 10:09,"977 Adams St, Los Angeles, CA 90001" +249862,USB-C Charging Cable,1,11.95,09/06/19 12:01,"24 West St, New York City, NY 10001" +249863,34in Ultrawide Monitor,1,379.99,09/20/19 02:26,"905 Lincoln St, Atlanta, GA 30301" +249864,Bose SoundSport Headphones,2,99.99,09/27/19 13:29,"28 9th St, Atlanta, GA 30301" +249865,Apple Airpods Headphones,1,150,09/19/19 18:57,"238 14th St, San Francisco, CA 94016" +249866,USB-C Charging Cable,1,11.95,09/08/19 18:32,"826 Sunset St, San Francisco, CA 94016" +249867,AAA Batteries (4-pack),1,2.99,09/14/19 12:00,"535 Highland St, Los Angeles, CA 90001" +249868,34in Ultrawide Monitor,1,379.99,09/07/19 04:55,"401 North St, Atlanta, GA 30301" +249869,Flatscreen TV,1,300,09/07/19 09:08,"173 Madison St, Los Angeles, CA 90001" +249870,AA Batteries (4-pack),2,3.84,09/02/19 10:31,"789 5th St, San Francisco, CA 94016" +249871,Macbook Pro Laptop,1,1700,09/16/19 13:22,"778 Willow St, San Francisco, CA 94016" +249872,Wired Headphones,1,11.99,09/30/19 13:50,"641 Church St, Dallas, TX 75001" +249873,27in FHD Monitor,1,149.99,09/09/19 02:29,"847 Jefferson St, Los Angeles, CA 90001" +249874,AAA Batteries (4-pack),2,2.99,09/10/19 13:44,"583 11th St, Los Angeles, CA 90001" +249875,AA Batteries (4-pack),1,3.84,09/10/19 13:57,"551 Highland St, Boston, MA 02215" +249876,Apple Airpods Headphones,1,150,09/19/19 14:43,"585 4th St, Boston, MA 02215" +249877,34in Ultrawide Monitor,1,379.99,09/14/19 12:40,"867 Meadow St, San Francisco, CA 94016" +249878,AAA Batteries (4-pack),1,2.99,09/03/19 20:20,"741 Washington St, Dallas, TX 75001" +249879,Lightning Charging Cable,1,14.95,09/23/19 00:48,"277 13th St, Los Angeles, CA 90001" +249880,34in Ultrawide Monitor,1,379.99,09/18/19 15:44,"669 Forest St, Los Angeles, CA 90001" +249881,USB-C Charging Cable,1,11.95,09/23/19 01:52,"267 5th St, Seattle, WA 98101" +249882,AAA Batteries (4-pack),2,2.99,09/24/19 17:12,"580 Pine St, San Francisco, CA 94016" +249883,USB-C Charging Cable,1,11.95,09/04/19 10:28,"321 Hill St, Seattle, WA 98101" +249884,Wired Headphones,1,11.99,09/04/19 08:39,"800 Hill St, San Francisco, CA 94016" +249885,AA Batteries (4-pack),1,3.84,09/08/19 16:03,"400 Cedar St, San Francisco, CA 94016" +249886,USB-C Charging Cable,1,11.95,09/21/19 19:48,"993 Main St, San Francisco, CA 94016" +249887,USB-C Charging Cable,1,11.95,09/14/19 21:45,"598 Lakeview St, Atlanta, GA 30301" +249888,Apple Airpods Headphones,1,150,09/10/19 17:31,"360 Forest St, Portland, OR 97035" +249889,AA Batteries (4-pack),1,3.84,09/05/19 07:11,"731 Hickory St, Boston, MA 02215" +249890,AA Batteries (4-pack),1,3.84,09/17/19 15:53,"407 Elm St, San Francisco, CA 94016" +249891,Bose SoundSport Headphones,1,99.99,09/23/19 02:09,"759 12th St, Los Angeles, CA 90001" +249892,AA Batteries (4-pack),1,3.84,09/20/19 22:02,"182 Madison St, New York City, NY 10001" +249893,Bose SoundSport Headphones,1,99.99,09/28/19 20:59,"637 Willow St, Seattle, WA 98101" +249894,Google Phone,1,600,09/25/19 07:33,"508 Jackson St, New York City, NY 10001" +249894,Wired Headphones,1,11.99,09/25/19 07:33,"508 Jackson St, New York City, NY 10001" +249895,USB-C Charging Cable,1,11.95,09/22/19 21:47,"717 Church St, San Francisco, CA 94016" +249896,AA Batteries (4-pack),1,3.84,09/21/19 11:00,"497 Madison St, San Francisco, CA 94016" +249897,Wired Headphones,1,11.99,09/29/19 12:32,"601 2nd St, New York City, NY 10001" +249898,Lightning Charging Cable,1,14.95,09/04/19 12:10,"432 Jackson St, Seattle, WA 98101" +249899,USB-C Charging Cable,1,11.95,09/22/19 03:35,"643 Sunset St, San Francisco, CA 94016" +249900,iPhone,1,700,09/09/19 19:17,"752 Forest St, New York City, NY 10001" +249900,Lightning Charging Cable,1,14.95,09/09/19 19:17,"752 Forest St, New York City, NY 10001" +249901,iPhone,1,700,09/21/19 16:18,"823 Jackson St, Dallas, TX 75001" +249902,AA Batteries (4-pack),1,3.84,09/28/19 16:53,"577 Spruce St, Los Angeles, CA 90001" +249903,34in Ultrawide Monitor,1,379.99,09/13/19 20:32,"135 Jefferson St, San Francisco, CA 94016" +249904,Flatscreen TV,1,300,09/26/19 12:11,"347 1st St, Boston, MA 02215" +249905,USB-C Charging Cable,2,11.95,09/30/19 11:59,"67 Hickory St, San Francisco, CA 94016" +249906,USB-C Charging Cable,1,11.95,09/09/19 17:24,"254 5th St, Atlanta, GA 30301" +249907,Google Phone,1,600,09/06/19 15:32,"22 Adams St, San Francisco, CA 94016" +249908,34in Ultrawide Monitor,1,379.99,09/08/19 12:57,"503 Lincoln St, Seattle, WA 98101" +249909,Bose SoundSport Headphones,1,99.99,09/14/19 13:02,"743 South St, Los Angeles, CA 90001" +249910,27in FHD Monitor,2,149.99,09/25/19 20:55,"926 2nd St, Los Angeles, CA 90001" +249911,Apple Airpods Headphones,1,150,09/27/19 12:11,"433 10th St, Los Angeles, CA 90001" +249912,Apple Airpods Headphones,1,150,09/08/19 05:35,"21 Jefferson St, Austin, TX 73301" +249913,AA Batteries (4-pack),2,3.84,09/12/19 00:30,"354 Meadow St, Atlanta, GA 30301" +249914,Apple Airpods Headphones,1,150,09/02/19 14:05,"288 Forest St, Portland, OR 97035" +249915,LG Dryer,1,600.0,09/01/19 12:32,"709 10th St, San Francisco, CA 94016" +249916,Bose SoundSport Headphones,1,99.99,09/16/19 09:58,"322 12th St, San Francisco, CA 94016" +249917,27in FHD Monitor,1,149.99,09/15/19 18:45,"312 Lincoln St, Los Angeles, CA 90001" +249918,Apple Airpods Headphones,1,150,09/06/19 15:44,"979 6th St, New York City, NY 10001" +249919,AA Batteries (4-pack),1,3.84,09/11/19 09:37,"839 Willow St, Los Angeles, CA 90001" +249920,Lightning Charging Cable,1,14.95,09/21/19 17:42,"410 Spruce St, Dallas, TX 75001" +249921,AAA Batteries (4-pack),1,2.99,09/21/19 23:15,"638 Sunset St, Seattle, WA 98101" +249922,Google Phone,1,600,09/04/19 16:37,"896 4th St, Dallas, TX 75001" +249923,LG Dryer,1,600.0,09/05/19 09:24,"97 Lincoln St, Seattle, WA 98101" +249924,Lightning Charging Cable,1,14.95,09/07/19 12:27,"926 Johnson St, Seattle, WA 98101" +249925,Wired Headphones,1,11.99,09/17/19 19:26,"205 Center St, Dallas, TX 75001" +249926,ThinkPad Laptop,1,999.99,09/29/19 12:49,"453 West St, Seattle, WA 98101" +249927,Lightning Charging Cable,1,14.95,09/02/19 18:00,"258 Park St, Portland, OR 97035" +249928,AA Batteries (4-pack),1,3.84,09/28/19 09:17,"27 Adams St, Los Angeles, CA 90001" +249929,AAA Batteries (4-pack),1,2.99,09/20/19 09:14,"350 Cedar St, New York City, NY 10001" +249930,Lightning Charging Cable,1,14.95,09/27/19 08:27,"265 Elm St, San Francisco, CA 94016" +249931,USB-C Charging Cable,1,11.95,09/11/19 12:01,"335 Walnut St, San Francisco, CA 94016" +249932,Lightning Charging Cable,1,14.95,09/08/19 11:06,"60 Chestnut St, Boston, MA 02215" +249933,20in Monitor,1,109.99,09/02/19 18:29,"874 Center St, San Francisco, CA 94016" +249934,Bose SoundSport Headphones,1,99.99,09/24/19 13:55,"910 River St, Portland, OR 97035" +249935,USB-C Charging Cable,1,11.95,09/28/19 10:03,"456 2nd St, New York City, NY 10001" +249936,AA Batteries (4-pack),1,3.84,09/11/19 15:00,"811 West St, San Francisco, CA 94016" +249937,AA Batteries (4-pack),1,3.84,09/17/19 11:55,"109 Ridge St, Austin, TX 73301" +249938,Lightning Charging Cable,1,14.95,09/01/19 20:38,"519 Jackson St, New York City, NY 10001" +249939,USB-C Charging Cable,1,11.95,09/15/19 17:05,"680 Johnson St, Portland, OR 97035" +249940,USB-C Charging Cable,1,11.95,09/07/19 21:04,"395 Madison St, Seattle, WA 98101" +249941,AAA Batteries (4-pack),1,2.99,09/28/19 13:57,"244 Forest St, New York City, NY 10001" +249942,AA Batteries (4-pack),1,3.84,09/06/19 10:13,"237 12th St, New York City, NY 10001" +249943,USB-C Charging Cable,2,11.95,09/18/19 04:44,"267 12th St, New York City, NY 10001" +249944,Apple Airpods Headphones,1,150,09/03/19 14:37,"341 Sunset St, Dallas, TX 75001" +249945,Wired Headphones,1,11.99,09/17/19 11:36,"960 Hill St, Dallas, TX 75001" +249946,AAA Batteries (4-pack),2,2.99,09/16/19 13:13,"850 Hickory St, Boston, MA 02215" +249947,Wired Headphones,1,11.99,09/04/19 21:50,"8 Madison St, Seattle, WA 98101" +249948,Flatscreen TV,1,300,09/16/19 23:41,"289 River St, Los Angeles, CA 90001" +249949,27in FHD Monitor,1,149.99,09/07/19 18:12,"10 13th St, San Francisco, CA 94016" +249950,Apple Airpods Headphones,1,150,09/02/19 07:51,"994 10th St, Los Angeles, CA 90001" +249951,Lightning Charging Cable,1,14.95,09/23/19 19:58,"171 Maple St, Boston, MA 02215" +249952,Wired Headphones,1,11.99,09/22/19 11:57,"20 Hickory St, Seattle, WA 98101" +249953,Apple Airpods Headphones,1,150,09/25/19 18:25,"965 Adams St, Atlanta, GA 30301" +249954,Apple Airpods Headphones,1,150,09/29/19 09:49,"792 Meadow St, New York City, NY 10001" +249955,Wired Headphones,1,11.99,09/05/19 20:05,"416 Dogwood St, Los Angeles, CA 90001" +249956,20in Monitor,1,109.99,09/17/19 09:41,"969 6th St, Portland, ME 04101" +249957,USB-C Charging Cable,1,11.95,09/29/19 08:49,"680 1st St, San Francisco, CA 94016" +249958,Flatscreen TV,1,300,09/13/19 21:50,"394 Adams St, San Francisco, CA 94016" +249959,Wired Headphones,1,11.99,09/21/19 14:36,"21 Forest St, Los Angeles, CA 90001" +249960,AAA Batteries (4-pack),1,2.99,09/08/19 18:08,"622 Elm St, Dallas, TX 75001" +249961,Lightning Charging Cable,1,14.95,09/27/19 23:17,"348 Center St, San Francisco, CA 94016" +249962,Wired Headphones,1,11.99,09/28/19 17:48,"197 Chestnut St, Portland, OR 97035" +249963,Macbook Pro Laptop,1,1700,09/17/19 07:58,"691 Wilson St, Los Angeles, CA 90001" +249964,Google Phone,1,600,09/30/19 16:33,"290 Washington St, Boston, MA 02215" +249965,27in 4K Gaming Monitor,1,389.99,09/05/19 11:25,"991 10th St, San Francisco, CA 94016" +249966,Bose SoundSport Headphones,1,99.99,09/10/19 23:06,"774 Meadow St, San Francisco, CA 94016" +249967,Wired Headphones,1,11.99,09/05/19 09:10,"559 Lakeview St, Los Angeles, CA 90001" +249968,AA Batteries (4-pack),1,3.84,09/30/19 19:36,"67 4th St, San Francisco, CA 94016" +249969,AAA Batteries (4-pack),1,2.99,09/28/19 22:05,"291 9th St, Boston, MA 02215" +249970,AAA Batteries (4-pack),1,2.99,09/29/19 13:11,"524 Dogwood St, Los Angeles, CA 90001" +249971,Bose SoundSport Headphones,1,99.99,09/28/19 22:29,"796 North St, Los Angeles, CA 90001" +249972,AAA Batteries (4-pack),2,2.99,09/16/19 09:32,"447 Cherry St, San Francisco, CA 94016" +249973,AAA Batteries (4-pack),3,2.99,09/09/19 15:44,"939 Jackson St, New York City, NY 10001" +249974,Wired Headphones,1,11.99,09/03/19 19:37,"478 Chestnut St, San Francisco, CA 94016" +249975,USB-C Charging Cable,1,11.95,09/30/19 07:35,"219 Center St, Dallas, TX 75001" +249976,Apple Airpods Headphones,1,150,09/27/19 07:37,"722 Lakeview St, Boston, MA 02215" +249977,Wired Headphones,1,11.99,09/29/19 09:48,"170 West St, Los Angeles, CA 90001" +249978,Macbook Pro Laptop,1,1700,09/24/19 20:01,"54 1st St, Seattle, WA 98101" +249979,AAA Batteries (4-pack),1,2.99,09/14/19 20:04,"260 Willow St, Austin, TX 73301" +249980,Bose SoundSport Headphones,1,99.99,09/03/19 22:50,"868 Highland St, Los Angeles, CA 90001" +249981,Lightning Charging Cable,1,14.95,09/26/19 07:41,"339 Hill St, Portland, OR 97035" +249981,Wired Headphones,1,11.99,09/26/19 07:41,"339 Hill St, Portland, OR 97035" +249982,iPhone,1,700,09/07/19 14:27,"651 Meadow St, New York City, NY 10001" +249982,Wired Headphones,1,11.99,09/07/19 14:27,"651 Meadow St, New York City, NY 10001" +249983,Bose SoundSport Headphones,1,99.99,09/15/19 08:31,"38 Maple St, San Francisco, CA 94016" +249984,27in FHD Monitor,1,149.99,09/14/19 06:15,"159 Jackson St, Seattle, WA 98101" +249985,Google Phone,1,600,09/04/19 20:48,"224 Dogwood St, San Francisco, CA 94016" +249986,AAA Batteries (4-pack),1,2.99,09/06/19 12:53,"976 Madison St, New York City, NY 10001" +249987,27in FHD Monitor,1,149.99,09/11/19 10:00,"316 7th St, San Francisco, CA 94016" +249988,Lightning Charging Cable,1,14.95,09/05/19 18:18,"855 14th St, Dallas, TX 75001" +249989,Bose SoundSport Headphones,1,99.99,09/30/19 15:10,"754 11th St, San Francisco, CA 94016" +249990,ThinkPad Laptop,1,999.99,09/21/19 18:58,"890 Lakeview St, Dallas, TX 75001" +249991,AA Batteries (4-pack),2,3.84,09/16/19 23:48,"665 Lincoln St, San Francisco, CA 94016" +249992,Bose SoundSport Headphones,1,99.99,09/18/19 21:07,"279 Meadow St, Seattle, WA 98101" +249993,20in Monitor,1,109.99,09/18/19 22:34,"608 6th St, New York City, NY 10001" +249994,Wired Headphones,1,11.99,09/25/19 11:30,"155 1st St, New York City, NY 10001" +249995,27in FHD Monitor,1,149.99,09/17/19 20:11,"800 5th St, Seattle, WA 98101" +249996,Wired Headphones,1,11.99,09/07/19 22:20,"326 6th St, Dallas, TX 75001" +249997,Apple Airpods Headphones,1,150,09/26/19 22:07,"121 Dogwood St, Los Angeles, CA 90001" +249998,Apple Airpods Headphones,1,150,09/20/19 18:03,"296 Jackson St, Boston, MA 02215" +249999,ThinkPad Laptop,1,999.99,09/14/19 14:23,"789 Chestnut St, Atlanta, GA 30301" +250000,Apple Airpods Headphones,1,150,09/19/19 21:39,"53 Pine St, Boston, MA 02215" +250001,AA Batteries (4-pack),1,3.84,09/13/19 20:03,"706 Main St, Seattle, WA 98101" +250002,Flatscreen TV,1,300,09/09/19 15:18,"754 2nd St, San Francisco, CA 94016" +250003,Apple Airpods Headphones,1,150,09/13/19 00:31,"210 Willow St, Portland, ME 04101" +250004,AA Batteries (4-pack),1,3.84,09/02/19 08:38,"76 Walnut St, Dallas, TX 75001" +250005,Flatscreen TV,1,300,09/13/19 14:56,"546 5th St, San Francisco, CA 94016" +250006,iPhone,1,700,09/25/19 12:25,"197 6th St, San Francisco, CA 94016" +250006,Lightning Charging Cable,1,14.95,09/25/19 12:25,"197 6th St, San Francisco, CA 94016" +250007,AA Batteries (4-pack),2,3.84,09/26/19 11:40,"433 6th St, New York City, NY 10001" +250008,AA Batteries (4-pack),1,3.84,09/27/19 09:56,"588 Main St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +250009,AA Batteries (4-pack),1,3.84,09/28/19 21:10,"652 Lake St, Seattle, WA 98101" +250010,USB-C Charging Cable,1,11.95,09/12/19 17:46,"644 Hickory St, San Francisco, CA 94016" +250011,Lightning Charging Cable,1,14.95,09/18/19 21:33,"769 Hill St, Los Angeles, CA 90001" +250012,USB-C Charging Cable,1,11.95,09/19/19 18:44,"70 Jefferson St, Dallas, TX 75001" +250013,AA Batteries (4-pack),3,3.84,09/11/19 23:13,"262 Spruce St, San Francisco, CA 94016" +250014,34in Ultrawide Monitor,1,379.99,09/24/19 11:58,"300 Madison St, Dallas, TX 75001" +250015,Apple Airpods Headphones,1,150,09/02/19 10:14,"296 Lakeview St, Los Angeles, CA 90001" +250016,AA Batteries (4-pack),1,3.84,09/26/19 17:50,"664 Lake St, Los Angeles, CA 90001" +250017,34in Ultrawide Monitor,1,379.99,09/03/19 13:38,"619 2nd St, Los Angeles, CA 90001" +250018,AA Batteries (4-pack),1,3.84,09/29/19 10:09,"349 Dogwood St, Los Angeles, CA 90001" +250019,34in Ultrawide Monitor,1,379.99,09/01/19 17:09,"671 Johnson St, Atlanta, GA 30301" +250020,27in FHD Monitor,1,149.99,09/17/19 20:19,"6 13th St, San Francisco, CA 94016" +250021,AAA Batteries (4-pack),1,2.99,09/17/19 18:28,"905 Dogwood St, San Francisco, CA 94016" +250022,Macbook Pro Laptop,1,1700,09/12/19 19:34,"922 Willow St, San Francisco, CA 94016" +250023,20in Monitor,1,109.99,09/22/19 14:37,"877 Washington St, Los Angeles, CA 90001" +250024,AA Batteries (4-pack),1,3.84,09/04/19 00:52,"426 River St, Los Angeles, CA 90001" +250025,20in Monitor,1,109.99,09/10/19 14:16,"15 River St, Atlanta, GA 30301" +250026,iPhone,1,700,09/21/19 10:59,"437 Cedar St, Los Angeles, CA 90001" +250027,AA Batteries (4-pack),1,3.84,09/07/19 07:58,"362 South St, Boston, MA 02215" +250028,AA Batteries (4-pack),1,3.84,09/26/19 18:55,"931 2nd St, San Francisco, CA 94016" +250029,Google Phone,1,600,09/07/19 19:42,"944 Spruce St, Los Angeles, CA 90001" +250030,27in FHD Monitor,1,149.99,09/24/19 22:01,"499 Ridge St, Los Angeles, CA 90001" +250031,Lightning Charging Cable,1,14.95,09/02/19 20:51,"722 Hill St, Seattle, WA 98101" +250032,Apple Airpods Headphones,1,150,09/16/19 20:13,"611 Madison St, Atlanta, GA 30301" +250033,Apple Airpods Headphones,1,150,09/11/19 16:00,"399 Adams St, Boston, MA 02215" +250034,Bose SoundSport Headphones,1,99.99,09/25/19 20:15,"322 12th St, San Francisco, CA 94016" +250035,AAA Batteries (4-pack),1,2.99,09/16/19 19:59,"62 Adams St, New York City, NY 10001" +250036,AA Batteries (4-pack),1,3.84,09/16/19 21:06,"315 West St, Seattle, WA 98101" +250037,Flatscreen TV,1,300,09/25/19 11:53,"721 Chestnut St, San Francisco, CA 94016" +250038,AA Batteries (4-pack),1,3.84,09/18/19 13:06,"446 Lakeview St, Los Angeles, CA 90001" +250039,Bose SoundSport Headphones,2,99.99,09/11/19 17:47,"705 West St, San Francisco, CA 94016" +250040,27in 4K Gaming Monitor,1,389.99,09/15/19 18:51,"724 Park St, Atlanta, GA 30301" +250041,Bose SoundSport Headphones,1,99.99,09/13/19 23:34,"83 Johnson St, Austin, TX 73301" +250042,Bose SoundSport Headphones,1,99.99,09/24/19 04:03,"674 Dogwood St, San Francisco, CA 94016" +250043,AA Batteries (4-pack),3,3.84,09/14/19 16:12,"309 Madison St, Austin, TX 73301" +250044,27in FHD Monitor,1,149.99,09/17/19 14:31,"754 Jefferson St, Dallas, TX 75001" +250045,USB-C Charging Cable,1,11.95,09/14/19 10:04,"196 7th St, Los Angeles, CA 90001" +250046,AAA Batteries (4-pack),1,2.99,09/27/19 18:46,"397 Lincoln St, Atlanta, GA 30301" +250047,Macbook Pro Laptop,1,1700,09/10/19 14:19,"498 Elm St, Portland, OR 97035" +250048,Lightning Charging Cable,1,14.95,09/07/19 03:08,"606 Cedar St, Dallas, TX 75001" +250049,USB-C Charging Cable,1,11.95,09/21/19 17:50,"567 Elm St, New York City, NY 10001" +250050,27in 4K Gaming Monitor,1,389.99,09/17/19 14:37,"761 Walnut St, San Francisco, CA 94016" +250051,AAA Batteries (4-pack),1,2.99,09/03/19 11:14,"340 Dogwood St, San Francisco, CA 94016" +250052,Apple Airpods Headphones,1,150,09/27/19 21:48,"880 Spruce St, San Francisco, CA 94016" +250053,Flatscreen TV,1,300,09/21/19 21:00,"389 Ridge St, Atlanta, GA 30301" +250054,Vareebadd Phone,1,400,09/18/19 10:22,"53 Jefferson St, Boston, MA 02215" +250055,20in Monitor,1,109.99,09/28/19 13:56,"309 Lake St, San Francisco, CA 94016" +250056,Wired Headphones,1,11.99,09/14/19 12:48,"264 Walnut St, New York City, NY 10001" +250057,ThinkPad Laptop,1,999.99,09/03/19 18:33,"175 12th St, Portland, OR 97035" +250058,Bose SoundSport Headphones,1,99.99,09/12/19 12:27,"918 Forest St, San Francisco, CA 94016" +250059,Apple Airpods Headphones,1,150,09/05/19 12:08,"505 South St, New York City, NY 10001" +250060,Wired Headphones,1,11.99,09/23/19 16:15,"826 13th St, Austin, TX 73301" +250061,Wired Headphones,1,11.99,09/07/19 12:01,"179 7th St, Seattle, WA 98101" +250062,Wired Headphones,1,11.99,09/10/19 13:31,"802 10th St, San Francisco, CA 94016" +250063,Apple Airpods Headphones,1,150,09/27/19 23:12,"677 8th St, Portland, ME 04101" +250064,Google Phone,1,600,09/28/19 23:43,"927 South St, Los Angeles, CA 90001" +250065,AA Batteries (4-pack),1,3.84,09/02/19 10:13,"523 4th St, Seattle, WA 98101" +250066,AAA Batteries (4-pack),1,2.99,09/04/19 12:21,"658 Lake St, San Francisco, CA 94016" +250066,USB-C Charging Cable,1,11.95,09/04/19 12:21,"658 Lake St, San Francisco, CA 94016" +250067,ThinkPad Laptop,1,999.99,09/25/19 20:35,"833 Maple St, San Francisco, CA 94016" +250068,USB-C Charging Cable,1,11.95,09/01/19 09:16,"57 Hill St, Austin, TX 73301" +250069,Apple Airpods Headphones,1,150,09/09/19 07:57,"605 West St, Boston, MA 02215" +250070,Apple Airpods Headphones,1,150,09/16/19 16:39,"423 7th St, Austin, TX 73301" +250071,AA Batteries (4-pack),2,3.84,09/27/19 18:00,"520 6th St, Los Angeles, CA 90001" +250072,Wired Headphones,1,11.99,09/15/19 12:40,"288 Pine St, Boston, MA 02215" +250073,Wired Headphones,1,11.99,09/08/19 15:00,"113 8th St, Portland, OR 97035" +250074,20in Monitor,1,109.99,09/02/19 16:29,"506 Washington St, Boston, MA 02215" +250075,Bose SoundSport Headphones,1,99.99,09/19/19 22:48,"335 Pine St, Seattle, WA 98101" +250076,AAA Batteries (4-pack),1,2.99,09/27/19 10:33,"78 Washington St, New York City, NY 10001" +250077,USB-C Charging Cable,1,11.95,09/12/19 13:21,"432 Lincoln St, San Francisco, CA 94016" +250078,Lightning Charging Cable,1,14.95,09/06/19 16:22,"50 Jefferson St, Portland, OR 97035" +250079,AAA Batteries (4-pack),1,2.99,09/02/19 18:33,"474 8th St, Boston, MA 02215" +250080,Lightning Charging Cable,1,14.95,09/23/19 08:34,"16 Center St, Austin, TX 73301" +250080,USB-C Charging Cable,1,11.95,09/23/19 08:34,"16 Center St, Austin, TX 73301" +250081,Apple Airpods Headphones,1,150,09/28/19 12:19,"807 Forest St, San Francisco, CA 94016" +250082,Bose SoundSport Headphones,1,99.99,09/23/19 13:35,"56 1st St, Los Angeles, CA 90001" +250083,AAA Batteries (4-pack),1,2.99,09/14/19 16:08,"217 Dogwood St, Austin, TX 73301" +250084,AA Batteries (4-pack),2,3.84,09/12/19 15:43,"427 Johnson St, New York City, NY 10001" +250085,Lightning Charging Cable,1,14.95,09/23/19 21:26,"715 Willow St, New York City, NY 10001" +250086,Wired Headphones,1,11.99,09/09/19 09:58,"523 9th St, New York City, NY 10001" +250087,Lightning Charging Cable,1,14.95,09/06/19 14:16,"19 Dogwood St, Portland, OR 97035" +250088,AA Batteries (4-pack),1,3.84,09/17/19 07:02,"853 Cedar St, Los Angeles, CA 90001" +250089,Apple Airpods Headphones,1,150,09/05/19 19:01,"912 Lincoln St, Los Angeles, CA 90001" +250090,USB-C Charging Cable,1,11.95,09/03/19 21:36,"600 Main St, Los Angeles, CA 90001" +250091,Bose SoundSport Headphones,1,99.99,09/11/19 17:43,"379 River St, Atlanta, GA 30301" +250092,AA Batteries (4-pack),2,3.84,09/27/19 18:12,"303 Hickory St, New York City, NY 10001" +250092,Apple Airpods Headphones,1,150,09/27/19 18:12,"303 Hickory St, New York City, NY 10001" +250093,AA Batteries (4-pack),1,3.84,09/18/19 17:58,"979 6th St, Portland, ME 04101" +250094,AA Batteries (4-pack),1,3.84,09/10/19 15:24,"2 Willow St, Boston, MA 02215" +250095,27in FHD Monitor,1,149.99,09/06/19 20:06,"571 Madison St, Portland, OR 97035" +250096,AAA Batteries (4-pack),2,2.99,09/05/19 21:26,"953 Highland St, Boston, MA 02215" +250097,Wired Headphones,1,11.99,09/07/19 10:19,"790 10th St, Boston, MA 02215" +250098,Flatscreen TV,1,300,09/27/19 12:09,"893 5th St, Portland, OR 97035" +250099,USB-C Charging Cable,1,11.95,09/19/19 20:59,"561 Maple St, Portland, OR 97035" +250100,AA Batteries (4-pack),4,3.84,09/20/19 18:45,"942 5th St, Atlanta, GA 30301" +250101,Lightning Charging Cable,2,14.95,09/09/19 21:34,"349 Pine St, Boston, MA 02215" +250102,Apple Airpods Headphones,1,150,09/27/19 08:26,"265 Washington St, New York City, NY 10001" +250103,Wired Headphones,1,11.99,09/27/19 11:53,"328 14th St, Boston, MA 02215" +250104,Wired Headphones,1,11.99,09/26/19 11:05,"166 7th St, Portland, OR 97035" +250105,iPhone,1,700,09/11/19 12:53,"915 Hickory St, Dallas, TX 75001" +250105,Apple Airpods Headphones,1,150,09/11/19 12:53,"915 Hickory St, Dallas, TX 75001" +250106,iPhone,1,700,09/29/19 15:23,"851 Meadow St, Seattle, WA 98101" +250107,AAA Batteries (4-pack),1,2.99,09/01/19 20:15,"899 Sunset St, Los Angeles, CA 90001" +250108,Lightning Charging Cable,1,14.95,09/11/19 10:34,"484 14th St, New York City, NY 10001" +250109,Bose SoundSport Headphones,1,99.99,09/09/19 20:56,"226 8th St, Seattle, WA 98101" +250110,Apple Airpods Headphones,1,150,09/05/19 14:46,"250 2nd St, San Francisco, CA 94016" +250111,Bose SoundSport Headphones,1,99.99,09/08/19 07:14,"48 Cherry St, Seattle, WA 98101" +250112,Macbook Pro Laptop,1,1700,09/04/19 13:33,"675 Walnut St, San Francisco, CA 94016" +250112,Lightning Charging Cable,1,14.95,09/04/19 13:33,"675 Walnut St, San Francisco, CA 94016" +250113,Apple Airpods Headphones,1,150,09/19/19 09:00,"111 Dogwood St, New York City, NY 10001" +250114,LG Washing Machine,1,600.0,09/25/19 22:12,"481 Lake St, Portland, OR 97035" +250115,AA Batteries (4-pack),1,3.84,09/02/19 10:53,"48 Dogwood St, Boston, MA 02215" +250116,27in 4K Gaming Monitor,1,389.99,09/19/19 10:30,"620 Willow St, Boston, MA 02215" +250117,Lightning Charging Cable,1,14.95,09/07/19 17:18,"304 Church St, New York City, NY 10001" +250118,Apple Airpods Headphones,1,150,09/15/19 22:40,"445 Hill St, New York City, NY 10001" +250119,Macbook Pro Laptop,1,1700,09/03/19 10:46,"648 12th St, New York City, NY 10001" +250120,Lightning Charging Cable,1,14.95,09/09/19 10:47,"554 Meadow St, Boston, MA 02215" +250121,20in Monitor,1,109.99,09/28/19 10:25,"199 Jefferson St, Los Angeles, CA 90001" +250122,Flatscreen TV,1,300,09/03/19 17:54,"22 Johnson St, Los Angeles, CA 90001" +250123,Bose SoundSport Headphones,1,99.99,09/08/19 06:47,"921 13th St, Austin, TX 73301" +250124,27in FHD Monitor,1,149.99,09/12/19 18:13,"970 Madison St, Los Angeles, CA 90001" +250125,27in FHD Monitor,1,149.99,09/13/19 15:34,"367 Meadow St, Los Angeles, CA 90001" +250126,27in 4K Gaming Monitor,1,389.99,09/06/19 19:14,"56 Church St, Boston, MA 02215" +250127,AA Batteries (4-pack),1,3.84,09/10/19 21:48,"4 Ridge St, Los Angeles, CA 90001" +250128,iPhone,1,700,09/26/19 18:50,"404 Lakeview St, Los Angeles, CA 90001" +250129,Bose SoundSport Headphones,1,99.99,09/29/19 16:58,"651 River St, San Francisco, CA 94016" +250130,iPhone,1,700,09/26/19 11:44,"222 6th St, New York City, NY 10001" +250130,Apple Airpods Headphones,1,150,09/26/19 11:44,"222 6th St, New York City, NY 10001" +250131,Apple Airpods Headphones,1,150,09/30/19 21:02,"830 Johnson St, Portland, OR 97035" +250132,27in 4K Gaming Monitor,1,389.99,09/27/19 12:07,"407 Wilson St, San Francisco, CA 94016" +250133,iPhone,1,700,09/22/19 12:44,"451 Lincoln St, Los Angeles, CA 90001" +250134,Apple Airpods Headphones,1,150,09/09/19 21:20,"263 Wilson St, Dallas, TX 75001" +250135,AAA Batteries (4-pack),2,2.99,09/17/19 05:22,"388 Cherry St, Atlanta, GA 30301" +250136,USB-C Charging Cable,1,11.95,09/16/19 17:59,"66 1st St, Boston, MA 02215" +250137,34in Ultrawide Monitor,1,379.99,09/22/19 09:52,"917 Lake St, Boston, MA 02215" +250138,Lightning Charging Cable,1,14.95,09/04/19 16:55,"856 2nd St, Austin, TX 73301" +250139,AAA Batteries (4-pack),1,2.99,09/16/19 20:51,"936 5th St, New York City, NY 10001" +250140,Flatscreen TV,1,300,09/18/19 16:25,"521 Lake St, Los Angeles, CA 90001" +250141,Apple Airpods Headphones,1,150,09/15/19 19:27,"759 Meadow St, San Francisco, CA 94016" +250142,20in Monitor,1,109.99,09/21/19 10:21,"507 Lincoln St, San Francisco, CA 94016" +250143,34in Ultrawide Monitor,1,379.99,09/12/19 18:48,"81 Walnut St, Boston, MA 02215" +250144,USB-C Charging Cable,1,11.95,09/02/19 12:57,"250 Johnson St, San Francisco, CA 94016" +250145,Wired Headphones,1,11.99,09/16/19 00:45,"238 Hill St, Boston, MA 02215" +250146,AAA Batteries (4-pack),1,2.99,09/09/19 11:43,"837 6th St, Seattle, WA 98101" +250147,Apple Airpods Headphones,1,150,09/21/19 22:51,"595 Jefferson St, San Francisco, CA 94016" +250148,AA Batteries (4-pack),1,3.84,09/18/19 10:42,"363 Lakeview St, San Francisco, CA 94016" +250149,Lightning Charging Cable,1,14.95,09/25/19 18:13,"960 Hickory St, Atlanta, GA 30301" +250150,AAA Batteries (4-pack),3,2.99,09/08/19 13:42,"1 Pine St, Austin, TX 73301" +250151,AAA Batteries (4-pack),1,2.99,09/19/19 12:59,"799 Jackson St, Seattle, WA 98101" +250152,Wired Headphones,1,11.99,09/26/19 09:09,"908 4th St, San Francisco, CA 94016" +250153,Lightning Charging Cable,1,14.95,09/30/19 00:43,"804 Madison St, Austin, TX 73301" +250154,Lightning Charging Cable,1,14.95,09/02/19 07:06,"236 West St, San Francisco, CA 94016" +250155,AAA Batteries (4-pack),1,2.99,09/02/19 02:37,"322 Lake St, New York City, NY 10001" +250156,Wired Headphones,1,11.99,09/06/19 09:59,"1 Washington St, Los Angeles, CA 90001" +250157,Lightning Charging Cable,1,14.95,09/06/19 14:14,"514 Jackson St, San Francisco, CA 94016" +250158,Bose SoundSport Headphones,1,99.99,09/29/19 15:30,"749 Center St, Dallas, TX 75001" +250159,Wired Headphones,1,11.99,09/30/19 19:33,"532 Center St, San Francisco, CA 94016" +250160,AA Batteries (4-pack),1,3.84,09/22/19 11:11,"838 Dogwood St, Portland, OR 97035" +250161,Wired Headphones,1,11.99,09/17/19 03:56,"785 Jefferson St, San Francisco, CA 94016" +250162,27in FHD Monitor,1,149.99,09/08/19 18:28,"673 River St, Los Angeles, CA 90001" +250163,Wired Headphones,1,11.99,09/03/19 18:25,"363 North St, Los Angeles, CA 90001" +250164,Lightning Charging Cable,1,14.95,09/18/19 17:31,"310 10th St, San Francisco, CA 94016" +250165,Wired Headphones,1,11.99,09/10/19 12:45,"998 Spruce St, Atlanta, GA 30301" +250166,AAA Batteries (4-pack),1,2.99,09/20/19 09:28,"463 Wilson St, Seattle, WA 98101" +250167,USB-C Charging Cable,1,11.95,09/13/19 19:55,"436 Highland St, Boston, MA 02215" +250168,AAA Batteries (4-pack),1,2.99,09/09/19 08:06,"641 Jefferson St, Dallas, TX 75001" +250169,Apple Airpods Headphones,1,150,09/01/19 15:09,"911 Sunset St, Boston, MA 02215" +250170,USB-C Charging Cable,1,11.95,09/16/19 12:33,"451 North St, New York City, NY 10001" +250171,AAA Batteries (4-pack),1,2.99,09/14/19 14:31,"279 8th St, New York City, NY 10001" +250172,Wired Headphones,1,11.99,09/04/19 15:58,"183 Center St, New York City, NY 10001" +250172,34in Ultrawide Monitor,1,379.99,09/04/19 15:58,"183 Center St, New York City, NY 10001" +250173,34in Ultrawide Monitor,1,379.99,09/30/19 18:28,"233 Elm St, New York City, NY 10001" +250174,34in Ultrawide Monitor,1,379.99,09/14/19 13:37,"636 Church St, Los Angeles, CA 90001" +250175,AAA Batteries (4-pack),1,2.99,09/11/19 18:16,"187 Lincoln St, New York City, NY 10001" +250176,iPhone,1,700,09/08/19 17:15,"264 Chestnut St, Los Angeles, CA 90001" +250177,Wired Headphones,1,11.99,09/05/19 06:18,"227 11th St, San Francisco, CA 94016" +250178,USB-C Charging Cable,1,11.95,09/24/19 00:49,"607 8th St, San Francisco, CA 94016" +250179,ThinkPad Laptop,1,999.99,09/30/19 23:13,"155 Center St, Dallas, TX 75001" +250180,Wired Headphones,1,11.99,09/27/19 12:29,"79 Pine St, Boston, MA 02215" +250181,20in Monitor,1,109.99,09/20/19 12:49,"535 Jackson St, Boston, MA 02215" +250182,AA Batteries (4-pack),1,3.84,09/01/19 18:19,"492 Center St, San Francisco, CA 94016" +250183,20in Monitor,1,109.99,09/29/19 08:50,"718 10th St, Los Angeles, CA 90001" +250184,Lightning Charging Cable,1,14.95,09/24/19 15:15,"116 8th St, Boston, MA 02215" +250185,Google Phone,1,600,09/11/19 15:34,"744 14th St, Los Angeles, CA 90001" +250185,Bose SoundSport Headphones,1,99.99,09/11/19 15:34,"744 14th St, Los Angeles, CA 90001" +250186,Bose SoundSport Headphones,1,99.99,09/25/19 21:42,"578 Ridge St, Boston, MA 02215" +250187,USB-C Charging Cable,1,11.95,09/07/19 17:38,"243 Jefferson St, Austin, TX 73301" +250188,Lightning Charging Cable,1,14.95,09/23/19 12:34,"693 Jackson St, Seattle, WA 98101" +250189,Apple Airpods Headphones,1,150,09/14/19 17:52,"921 4th St, Seattle, WA 98101" +250190,Google Phone,1,600,09/08/19 11:31,"289 Park St, Atlanta, GA 30301" +250190,USB-C Charging Cable,1,11.95,09/08/19 11:31,"289 Park St, Atlanta, GA 30301" +250191,AAA Batteries (4-pack),1,2.99,09/07/19 01:04,"312 Jackson St, Atlanta, GA 30301" +250192,Wired Headphones,1,11.99,09/03/19 14:57,"722 11th St, Los Angeles, CA 90001" +250193,Lightning Charging Cable,1,14.95,09/17/19 13:04,"251 10th St, Atlanta, GA 30301" +250194,27in 4K Gaming Monitor,1,389.99,09/09/19 09:13,"360 Hill St, Austin, TX 73301" +250195,20in Monitor,1,109.99,09/22/19 18:18,"386 Adams St, San Francisco, CA 94016" +250196,20in Monitor,1,109.99,09/24/19 08:35,"511 5th St, New York City, NY 10001" +250197,Apple Airpods Headphones,1,150,09/20/19 19:40,"479 Ridge St, San Francisco, CA 94016" +250198,Google Phone,1,600,09/23/19 19:15,"546 Lakeview St, Boston, MA 02215" +250198,USB-C Charging Cable,1,11.95,09/23/19 19:15,"546 Lakeview St, Boston, MA 02215" +250199,Bose SoundSport Headphones,1,99.99,09/04/19 20:27,"293 Highland St, New York City, NY 10001" +250200,27in FHD Monitor,1,149.99,09/11/19 05:41,"601 1st St, San Francisco, CA 94016" +250201,27in 4K Gaming Monitor,1,389.99,09/28/19 21:22,"129 Adams St, Los Angeles, CA 90001" +250202,Apple Airpods Headphones,1,150,09/23/19 15:16,"870 11th St, Seattle, WA 98101" +250203,Lightning Charging Cable,1,14.95,09/16/19 20:22,"392 1st St, Seattle, WA 98101" +250204,iPhone,1,700,09/24/19 21:45,"571 Spruce St, Los Angeles, CA 90001" +250205,Macbook Pro Laptop,1,1700,09/08/19 17:31,"744 Highland St, San Francisco, CA 94016" +250206,27in 4K Gaming Monitor,1,389.99,09/16/19 10:51,"629 Jefferson St, Boston, MA 02215" +250207,AAA Batteries (4-pack),2,2.99,09/04/19 17:41,"189 Washington St, Seattle, WA 98101" +250208,AAA Batteries (4-pack),1,2.99,09/24/19 14:17,"765 10th St, Los Angeles, CA 90001" +250209,Lightning Charging Cable,1,14.95,09/30/19 13:41,"17 Cherry St, New York City, NY 10001" +250210,Apple Airpods Headphones,1,150,09/27/19 21:42,"483 8th St, Portland, OR 97035" +250211,34in Ultrawide Monitor,1,379.99,09/10/19 15:59,"67 North St, Dallas, TX 75001" +250212,iPhone,1,700,09/11/19 19:28,"280 Meadow St, Dallas, TX 75001" +250213,Wired Headphones,1,11.99,09/30/19 19:34,"146 9th St, Los Angeles, CA 90001" +250214,AA Batteries (4-pack),1,3.84,09/12/19 22:07,"922 Walnut St, New York City, NY 10001" +250215,Wired Headphones,1,11.99,09/15/19 12:01,"344 Meadow St, New York City, NY 10001" +250216,AA Batteries (4-pack),2,3.84,09/06/19 21:28,"638 Cedar St, San Francisco, CA 94016" +250217,Lightning Charging Cable,1,14.95,09/11/19 14:05,"975 Sunset St, Atlanta, GA 30301" +250218,iPhone,1,700,09/07/19 17:44,"724 Forest St, San Francisco, CA 94016" +250219,ThinkPad Laptop,1,999.99,09/15/19 10:24,"449 Lakeview St, Boston, MA 02215" +250220,AAA Batteries (4-pack),1,2.99,09/29/19 18:29,"288 7th St, San Francisco, CA 94016" +250221,AAA Batteries (4-pack),5,2.99,09/03/19 17:43,"331 Park St, Portland, OR 97035" +250222,Macbook Pro Laptop,1,1700,09/07/19 21:43,"41 Ridge St, Seattle, WA 98101" +250223,LG Washing Machine,1,600.0,09/06/19 15:36,"602 8th St, Los Angeles, CA 90001" +250224,Lightning Charging Cable,1,14.95,09/07/19 09:50,"219 Willow St, Los Angeles, CA 90001" +250225,AAA Batteries (4-pack),1,2.99,09/09/19 08:31,"614 10th St, San Francisco, CA 94016" +250226,Google Phone,1,600,09/08/19 15:26,"34 Center St, Boston, MA 02215" +250227,Wired Headphones,2,11.99,09/25/19 22:14,"428 Pine St, San Francisco, CA 94016" +250228,AA Batteries (4-pack),2,3.84,09/08/19 12:08,"644 South St, Seattle, WA 98101" +250229,27in FHD Monitor,1,149.99,09/02/19 19:51,"13 Dogwood St, San Francisco, CA 94016" +250230,Wired Headphones,1,11.99,09/01/19 09:33,"7 Willow St, San Francisco, CA 94016" +250231,27in FHD Monitor,1,149.99,09/04/19 10:45,"197 Hickory St, Portland, OR 97035" +250232,USB-C Charging Cable,1,11.95,09/28/19 22:06,"798 West St, San Francisco, CA 94016" +250233,27in FHD Monitor,1,149.99,09/03/19 16:13,"497 Washington St, Austin, TX 73301" +250234,USB-C Charging Cable,1,11.95,09/11/19 08:52,"836 Chestnut St, New York City, NY 10001" +250235,Wired Headphones,1,11.99,09/29/19 10:48,"536 Adams St, Boston, MA 02215" +250236,AAA Batteries (4-pack),1,2.99,09/08/19 22:41,"249 Lake St, Austin, TX 73301" +250237,USB-C Charging Cable,1,11.95,09/25/19 12:07,"228 Hickory St, Boston, MA 02215" +250238,USB-C Charging Cable,1,11.95,09/25/19 00:26,"314 12th St, Seattle, WA 98101" +250239,Bose SoundSport Headphones,1,99.99,09/28/19 07:37,"428 9th St, New York City, NY 10001" +250240,Apple Airpods Headphones,1,150,09/11/19 17:18,"595 6th St, Austin, TX 73301" +250241,USB-C Charging Cable,1,11.95,09/17/19 07:36,"76 Dogwood St, San Francisco, CA 94016" +250242,LG Dryer,1,600.0,09/03/19 20:40,"970 Walnut St, San Francisco, CA 94016" +250243,Apple Airpods Headphones,1,150,09/18/19 20:11,"818 Chestnut St, Boston, MA 02215" +250244,Apple Airpods Headphones,1,150,09/09/19 23:47,"717 Willow St, Seattle, WA 98101" +250245,AA Batteries (4-pack),2,3.84,09/07/19 19:36,"171 Lake St, San Francisco, CA 94016" +250246,ThinkPad Laptop,1,999.99,09/28/19 17:21,"974 South St, Seattle, WA 98101" +250247,AAA Batteries (4-pack),1,2.99,09/12/19 16:11,"215 Lake St, Los Angeles, CA 90001" +250248,27in FHD Monitor,1,149.99,09/28/19 17:45,"597 2nd St, Los Angeles, CA 90001" +250249,Wired Headphones,1,11.99,09/16/19 00:20,"236 Meadow St, Los Angeles, CA 90001" +250250,34in Ultrawide Monitor,1,379.99,09/23/19 20:14,"915 Sunset St, San Francisco, CA 94016" +250251,27in FHD Monitor,1,149.99,09/08/19 11:55,"181 13th St, San Francisco, CA 94016" +250252,AAA Batteries (4-pack),2,2.99,09/13/19 18:11,"216 Washington St, Dallas, TX 75001" +250253,Vareebadd Phone,1,400,09/22/19 15:42,"26 5th St, Los Angeles, CA 90001" +250253,AA Batteries (4-pack),1,3.84,09/22/19 15:42,"26 5th St, Los Angeles, CA 90001" +250254,AAA Batteries (4-pack),1,2.99,09/05/19 14:49,"740 8th St, Dallas, TX 75001" +250255,Lightning Charging Cable,1,14.95,09/17/19 12:47,"106 Lake St, Dallas, TX 75001" +250256,Apple Airpods Headphones,1,150,09/02/19 11:56,"292 Lakeview St, Dallas, TX 75001" +250257,Google Phone,1,600,09/17/19 19:33,"447 Highland St, Boston, MA 02215" +250258,AAA Batteries (4-pack),1,2.99,09/14/19 15:56,"910 14th St, New York City, NY 10001" +250259,34in Ultrawide Monitor,1,379.99,09/30/19 16:33,"420 Lakeview St, Austin, TX 73301" +250260,USB-C Charging Cable,1,11.95,09/26/19 11:48,"991 Church St, New York City, NY 10001" +250260,Apple Airpods Headphones,1,150,09/26/19 11:48,"991 Church St, New York City, NY 10001" +250261,AAA Batteries (4-pack),1,2.99,09/12/19 15:03,"478 5th St, Portland, OR 97035" +,,,,, +250262,AAA Batteries (4-pack),3,2.99,09/16/19 14:26,"878 Meadow St, Austin, TX 73301" +250263,AA Batteries (4-pack),5,3.84,09/16/19 17:16,"276 Wilson St, Boston, MA 02215" +250264,Bose SoundSport Headphones,1,99.99,09/11/19 12:40,"354 2nd St, Boston, MA 02215" +250265,Bose SoundSport Headphones,1,99.99,09/19/19 17:19,"920 North St, Atlanta, GA 30301" +250266,Wired Headphones,1,11.99,09/23/19 11:32,"188 North St, Portland, OR 97035" +250266,iPhone,1,700,09/23/19 11:32,"188 North St, Portland, OR 97035" +250267,27in FHD Monitor,1,149.99,09/24/19 08:24,"715 5th St, Austin, TX 73301" +250268,AAA Batteries (4-pack),2,2.99,09/14/19 18:54,"266 Center St, Los Angeles, CA 90001" +250269,AA Batteries (4-pack),1,3.84,09/21/19 17:20,"561 River St, Boston, MA 02215" +250270,27in 4K Gaming Monitor,1,389.99,09/13/19 19:48,"196 Lake St, San Francisco, CA 94016" +250271,AAA Batteries (4-pack),1,2.99,09/15/19 19:10,"35 Jackson St, Los Angeles, CA 90001" +250272,Wired Headphones,1,11.99,09/13/19 13:47,"969 North St, Atlanta, GA 30301" +250273,USB-C Charging Cable,1,11.95,09/28/19 18:52,"823 Madison St, New York City, NY 10001" +250274,Bose SoundSport Headphones,1,99.99,09/27/19 12:51,"778 12th St, Dallas, TX 75001" +250275,AAA Batteries (4-pack),1,2.99,09/22/19 16:22,"320 South St, San Francisco, CA 94016" +250276,Lightning Charging Cable,1,14.95,09/11/19 18:27,"213 Center St, Portland, OR 97035" +250277,Bose SoundSport Headphones,1,99.99,09/28/19 12:57,"791 Washington St, Seattle, WA 98101" +250277,AA Batteries (4-pack),1,3.84,09/28/19 12:57,"791 Washington St, Seattle, WA 98101" +250278,Wired Headphones,1,11.99,09/06/19 12:13,"776 North St, Los Angeles, CA 90001" +250279,Bose SoundSport Headphones,1,99.99,09/24/19 16:12,"480 4th St, Austin, TX 73301" +250280,iPhone,1,700,09/17/19 10:47,"287 10th St, San Francisco, CA 94016" +250280,Lightning Charging Cable,1,14.95,09/17/19 10:47,"287 10th St, San Francisco, CA 94016" +250281,iPhone,1,700,09/13/19 23:46,"897 1st St, Seattle, WA 98101" +250282,AA Batteries (4-pack),2,3.84,09/08/19 19:07,"350 Johnson St, Boston, MA 02215" +250283,Google Phone,1,600,09/13/19 07:13,"748 9th St, Seattle, WA 98101" +250284,Wired Headphones,1,11.99,09/04/19 12:07,"871 Pine St, San Francisco, CA 94016" +250285,Wired Headphones,2,11.99,09/27/19 16:58,"483 Walnut St, San Francisco, CA 94016" +250286,27in FHD Monitor,1,149.99,09/30/19 18:34,"111 5th St, Dallas, TX 75001" +250287,27in FHD Monitor,1,149.99,09/23/19 00:55,"964 12th St, New York City, NY 10001" +250288,34in Ultrawide Monitor,1,379.99,09/27/19 15:10,"227 Cedar St, Los Angeles, CA 90001" +250289,27in 4K Gaming Monitor,1,389.99,09/02/19 15:46,"175 10th St, San Francisco, CA 94016" +250290,Wired Headphones,1,11.99,09/06/19 16:18,"41 Elm St, Seattle, WA 98101" +250291,Bose SoundSport Headphones,1,99.99,09/14/19 12:48,"415 2nd St, San Francisco, CA 94016" +250292,USB-C Charging Cable,1,11.95,09/16/19 17:21,"670 9th St, Los Angeles, CA 90001" +250293,34in Ultrawide Monitor,1,379.99,09/01/19 08:59,"857 Adams St, New York City, NY 10001" +250294,AAA Batteries (4-pack),1,2.99,09/14/19 12:55,"591 River St, San Francisco, CA 94016" +250295,USB-C Charging Cable,2,11.95,09/22/19 06:16,"435 Lake St, San Francisco, CA 94016" +250296,20in Monitor,1,109.99,09/01/19 12:52,"815 Pine St, Portland, ME 04101" +250297,Macbook Pro Laptop,1,1700,09/10/19 19:16,"262 Willow St, Portland, OR 97035" +250298,27in FHD Monitor,1,149.99,09/19/19 14:34,"768 Church St, New York City, NY 10001" +250299,USB-C Charging Cable,1,11.95,09/14/19 14:36,"203 1st St, Seattle, WA 98101" +250300,34in Ultrawide Monitor,1,379.99,09/24/19 19:05,"661 Madison St, New York City, NY 10001" +250301,Lightning Charging Cable,2,14.95,09/25/19 19:49,"409 Hickory St, New York City, NY 10001" +250302,USB-C Charging Cable,1,11.95,09/08/19 09:37,"358 13th St, Portland, OR 97035" +250303,Lightning Charging Cable,1,14.95,09/19/19 20:57,"479 West St, Boston, MA 02215" +250304,USB-C Charging Cable,1,11.95,09/04/19 18:36,"195 Madison St, San Francisco, CA 94016" +250305,AA Batteries (4-pack),1,3.84,09/30/19 13:41,"901 Spruce St, San Francisco, CA 94016" +250306,AAA Batteries (4-pack),2,2.99,09/15/19 08:29,"189 Lakeview St, Austin, TX 73301" +250307,AAA Batteries (4-pack),2,2.99,09/15/19 13:47,"660 7th St, New York City, NY 10001" +250308,ThinkPad Laptop,1,999.99,09/22/19 10:35,"732 Willow St, San Francisco, CA 94016" +250309,34in Ultrawide Monitor,1,379.99,09/03/19 23:11,"782 Main St, Los Angeles, CA 90001" +250310,USB-C Charging Cable,1,11.95,09/24/19 08:53,"346 Main St, New York City, NY 10001" +250311,Bose SoundSport Headphones,1,99.99,09/08/19 12:23,"649 Lake St, Los Angeles, CA 90001" +250312,Flatscreen TV,1,300,09/09/19 00:32,"534 Washington St, Austin, TX 73301" +250313,AA Batteries (4-pack),1,3.84,09/14/19 11:23,"929 5th St, Portland, OR 97035" +250314,Lightning Charging Cable,1,14.95,09/24/19 12:13,"438 10th St, Seattle, WA 98101" +250315,AA Batteries (4-pack),1,3.84,09/30/19 16:19,"534 13th St, Atlanta, GA 30301" +250316,27in 4K Gaming Monitor,1,389.99,09/07/19 13:44,"677 Church St, Seattle, WA 98101" +250317,Flatscreen TV,1,300,09/24/19 19:30,"392 Lake St, Atlanta, GA 30301" +250318,AA Batteries (4-pack),1,3.84,09/28/19 21:13,"446 Forest St, Los Angeles, CA 90001" +250319,Apple Airpods Headphones,1,150,09/11/19 19:17,"510 Wilson St, Seattle, WA 98101" +250320,34in Ultrawide Monitor,1,379.99,09/12/19 17:14,"297 5th St, Portland, OR 97035" +250321,Flatscreen TV,1,300,09/26/19 21:00,"895 Church St, New York City, NY 10001" +250322,27in 4K Gaming Monitor,1,389.99,09/08/19 00:24,"236 Madison St, San Francisco, CA 94016" +250323,34in Ultrawide Monitor,1,379.99,09/11/19 20:18,"309 13th St, Boston, MA 02215" +250324,27in 4K Gaming Monitor,1,389.99,09/29/19 10:37,"190 Johnson St, Boston, MA 02215" +250325,Lightning Charging Cable,1,14.95,09/19/19 15:45,"19 Meadow St, Boston, MA 02215" +250326,Wired Headphones,1,11.99,09/23/19 21:22,"257 Adams St, San Francisco, CA 94016" +250327,LG Dryer,1,600.0,09/12/19 13:06,"666 Spruce St, Boston, MA 02215" +250328,AA Batteries (4-pack),2,3.84,09/30/19 22:36,"926 Chestnut St, San Francisco, CA 94016" +250328,27in 4K Gaming Monitor,1,389.99,09/30/19 22:36,"926 Chestnut St, San Francisco, CA 94016" +250329,AA Batteries (4-pack),1,3.84,09/22/19 20:09,"187 2nd St, San Francisco, CA 94016" +250330,Apple Airpods Headphones,1,150,09/21/19 23:33,"608 Maple St, Los Angeles, CA 90001" +250331,Bose SoundSport Headphones,1,99.99,09/02/19 23:16,"2 5th St, Boston, MA 02215" +250332,iPhone,1,700,09/21/19 20:59,"165 Spruce St, Seattle, WA 98101" +250333,27in FHD Monitor,1,149.99,09/01/19 09:19,"142 Cherry St, Portland, ME 04101" +250334,Lightning Charging Cable,1,14.95,09/16/19 18:17,"241 Jefferson St, Boston, MA 02215" +250335,Flatscreen TV,1,300,09/25/19 14:47,"510 11th St, Atlanta, GA 30301" +250336,20in Monitor,1,109.99,09/07/19 22:14,"636 13th St, San Francisco, CA 94016" +250337,34in Ultrawide Monitor,1,379.99,09/27/19 22:49,"748 Willow St, Portland, OR 97035" +250338,USB-C Charging Cable,1,11.95,09/22/19 09:59,"938 Willow St, Boston, MA 02215" +250339,iPhone,1,700,09/29/19 22:51,"559 Johnson St, San Francisco, CA 94016" +250340,Bose SoundSport Headphones,1,99.99,09/11/19 12:36,"293 Highland St, New York City, NY 10001" +250341,27in 4K Gaming Monitor,1,389.99,09/07/19 21:08,"267 13th St, Boston, MA 02215" +250342,34in Ultrawide Monitor,1,379.99,09/17/19 18:33,"215 7th St, San Francisco, CA 94016" +250343,ThinkPad Laptop,1,999.99,09/23/19 11:14,"699 Cherry St, Atlanta, GA 30301" +250344,Lightning Charging Cable,1,14.95,09/25/19 17:59,"476 Jackson St, Seattle, WA 98101" +250345,Bose SoundSport Headphones,1,99.99,09/01/19 14:44,"96 Jackson St, Dallas, TX 75001" +250346,USB-C Charging Cable,1,11.95,09/25/19 22:30,"41 7th St, Atlanta, GA 30301" +250347,Wired Headphones,1,11.99,09/20/19 17:17,"301 Hickory St, Portland, OR 97035" +250348,Lightning Charging Cable,1,14.95,09/04/19 08:55,"85 Maple St, Dallas, TX 75001" +250349,AA Batteries (4-pack),1,3.84,09/16/19 12:28,"204 6th St, Dallas, TX 75001" +250350,34in Ultrawide Monitor,1,379.99,09/26/19 19:38,"228 9th St, Atlanta, GA 30301" +250351,Wired Headphones,1,11.99,09/28/19 20:01,"24 Center St, Los Angeles, CA 90001" +250352,Apple Airpods Headphones,1,150,09/27/19 21:38,"987 8th St, Seattle, WA 98101" +250352,Wired Headphones,1,11.99,09/27/19 21:38,"987 8th St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +250353,Apple Airpods Headphones,1,150,09/26/19 15:59,"726 Center St, Boston, MA 02215" +250354,AAA Batteries (4-pack),1,2.99,09/04/19 02:17,"907 South St, San Francisco, CA 94016" +250355,AAA Batteries (4-pack),1,2.99,09/26/19 20:49,"822 Hickory St, Atlanta, GA 30301" +250356,Apple Airpods Headphones,1,150,09/26/19 13:22,"223 Walnut St, Portland, OR 97035" +,,,,, +250357,USB-C Charging Cable,1,11.95,09/25/19 11:33,"879 Sunset St, Boston, MA 02215" +250357,AA Batteries (4-pack),1,3.84,09/25/19 11:33,"879 Sunset St, Boston, MA 02215" +250358,Google Phone,1,600,09/03/19 21:12,"404 Elm St, Boston, MA 02215" +250359,USB-C Charging Cable,1,11.95,09/22/19 04:49,"443 Washington St, New York City, NY 10001" +250360,AAA Batteries (4-pack),1,2.99,09/07/19 19:35,"483 Cherry St, San Francisco, CA 94016" +250361,AAA Batteries (4-pack),1,2.99,09/28/19 19:37,"108 River St, Boston, MA 02215" +250362,LG Dryer,1,600.0,09/28/19 14:59,"833 Jackson St, Los Angeles, CA 90001" +250363,Bose SoundSport Headphones,1,99.99,09/27/19 17:08,"998 1st St, San Francisco, CA 94016" +250364,Apple Airpods Headphones,1,150,09/10/19 12:50,"787 Walnut St, Boston, MA 02215" +250365,Bose SoundSport Headphones,1,99.99,09/10/19 12:05,"586 Hill St, New York City, NY 10001" +250366,Bose SoundSport Headphones,1,99.99,09/09/19 13:05,"569 North St, Austin, TX 73301" +250367,Bose SoundSport Headphones,1,99.99,09/16/19 08:58,"169 14th St, Austin, TX 73301" +250368,Apple Airpods Headphones,2,150,09/20/19 12:45,"804 Hickory St, Los Angeles, CA 90001" +250369,AA Batteries (4-pack),1,3.84,09/06/19 14:54,"240 Lake St, Los Angeles, CA 90001" +250370,AA Batteries (4-pack),1,3.84,09/03/19 15:29,"754 Johnson St, Atlanta, GA 30301" +250371,Bose SoundSport Headphones,1,99.99,09/06/19 09:34,"898 Spruce St, Atlanta, GA 30301" +250372,20in Monitor,1,109.99,09/28/19 23:26,"857 Highland St, Dallas, TX 75001" +250373,Bose SoundSport Headphones,1,99.99,09/26/19 11:36,"813 13th St, Los Angeles, CA 90001" +250374,Bose SoundSport Headphones,1,99.99,09/28/19 17:04,"999 Johnson St, Boston, MA 02215" +250375,Apple Airpods Headphones,1,150,09/21/19 17:48,"126 Adams St, New York City, NY 10001" +250376,Vareebadd Phone,1,400,09/28/19 17:15,"913 1st St, Los Angeles, CA 90001" +250377,USB-C Charging Cable,1,11.95,09/30/19 11:37,"917 9th St, Dallas, TX 75001" +250378,USB-C Charging Cable,1,11.95,09/05/19 09:45,"599 Hill St, San Francisco, CA 94016" +250379,27in 4K Gaming Monitor,1,389.99,09/21/19 16:52,"607 West St, San Francisco, CA 94016" +250380,Apple Airpods Headphones,1,150,09/23/19 12:34,"578 6th St, San Francisco, CA 94016" +250381,Apple Airpods Headphones,1,150,09/05/19 18:52,"802 North St, New York City, NY 10001" +250382,Lightning Charging Cable,1,14.95,09/21/19 06:01,"895 Cherry St, Los Angeles, CA 90001" +250383,27in 4K Gaming Monitor,1,389.99,09/18/19 18:01,"851 Center St, Seattle, WA 98101" +250384,AAA Batteries (4-pack),3,2.99,09/29/19 12:51,"465 South St, Los Angeles, CA 90001" +250385,Bose SoundSport Headphones,1,99.99,09/02/19 11:58,"975 Cedar St, Dallas, TX 75001" +250386,Apple Airpods Headphones,1,150,09/01/19 10:20,"87 West St, Boston, MA 02215" +250387,Google Phone,1,600,09/24/19 21:16,"24 Highland St, San Francisco, CA 94016" +250387,Bose SoundSport Headphones,1,99.99,09/24/19 21:16,"24 Highland St, San Francisco, CA 94016" +250388,AAA Batteries (4-pack),8,2.99,09/14/19 20:33,"109 9th St, Portland, OR 97035" +250389,AAA Batteries (4-pack),1,2.99,09/19/19 23:53,"487 Meadow St, San Francisco, CA 94016" +250390,Apple Airpods Headphones,1,150,09/04/19 12:15,"896 South St, Portland, OR 97035" +250391,AAA Batteries (4-pack),1,2.99,09/04/19 19:13,"663 7th St, San Francisco, CA 94016" +250392,Lightning Charging Cable,2,14.95,09/15/19 11:50,"649 Lincoln St, Dallas, TX 75001" +250393,Bose SoundSport Headphones,1,99.99,09/01/19 19:49,"233 Dogwood St, Dallas, TX 75001" +250394,Wired Headphones,1,11.99,09/28/19 06:07,"186 2nd St, San Francisco, CA 94016" +250395,Lightning Charging Cable,1,14.95,09/22/19 07:40,"333 Church St, San Francisco, CA 94016" +250396,Bose SoundSport Headphones,1,99.99,09/27/19 08:53,"572 Lincoln St, San Francisco, CA 94016" +250397,USB-C Charging Cable,1,11.95,09/22/19 13:51,"445 Jackson St, Atlanta, GA 30301" +250398,Bose SoundSport Headphones,1,99.99,09/17/19 20:13,"245 Pine St, Los Angeles, CA 90001" +250399,AAA Batteries (4-pack),1,2.99,09/30/19 21:19,"698 North St, Boston, MA 02215" +250400,AA Batteries (4-pack),1,3.84,09/15/19 07:37,"858 Hickory St, Seattle, WA 98101" +250401,Vareebadd Phone,1,400,09/24/19 17:10,"114 Johnson St, Seattle, WA 98101" +250402,Apple Airpods Headphones,1,150,09/26/19 02:55,"183 1st St, Austin, TX 73301" +250403,USB-C Charging Cable,1,11.95,09/19/19 15:34,"536 Hill St, New York City, NY 10001" +250404,Wired Headphones,1,11.99,09/27/19 18:10,"147 Cherry St, Boston, MA 02215" +250405,Lightning Charging Cable,1,14.95,09/20/19 18:17,"201 8th St, New York City, NY 10001" +250406,AA Batteries (4-pack),1,3.84,09/12/19 17:28,"620 2nd St, Austin, TX 73301" +250407,Wired Headphones,1,11.99,09/11/19 19:08,"17 5th St, Atlanta, GA 30301" +250408,Apple Airpods Headphones,1,150,09/28/19 08:02,"737 Ridge St, Los Angeles, CA 90001" +250409,iPhone,1,700,09/27/19 19:39,"130 Spruce St, Los Angeles, CA 90001" +250410,AAA Batteries (4-pack),2,2.99,09/05/19 20:59,"292 Sunset St, Seattle, WA 98101" +250411,Apple Airpods Headphones,1,150,09/12/19 11:04,"792 9th St, Seattle, WA 98101" +250412,27in 4K Gaming Monitor,1,389.99,09/12/19 05:35,"45 5th St, Seattle, WA 98101" +250413,USB-C Charging Cable,1,11.95,09/12/19 21:05,"537 Lincoln St, Portland, OR 97035" +250414,AAA Batteries (4-pack),1,2.99,09/04/19 19:49,"468 South St, New York City, NY 10001" +250415,AA Batteries (4-pack),2,3.84,09/27/19 19:40,"528 13th St, Dallas, TX 75001" +250416,USB-C Charging Cable,1,11.95,09/26/19 16:57,"109 4th St, San Francisco, CA 94016" +250417,AA Batteries (4-pack),1,3.84,09/24/19 17:52,"373 Church St, New York City, NY 10001" +250418,Lightning Charging Cable,2,14.95,09/26/19 22:40,"434 9th St, Seattle, WA 98101" +250419,Wired Headphones,1,11.99,09/21/19 10:04,"964 Wilson St, New York City, NY 10001" +250420,20in Monitor,1,109.99,09/04/19 21:07,"831 Washington St, San Francisco, CA 94016" +250421,Flatscreen TV,1,300,09/02/19 22:55,"697 Ridge St, Dallas, TX 75001" +250422,Apple Airpods Headphones,1,150,09/03/19 10:13,"799 1st St, Portland, ME 04101" +250423,USB-C Charging Cable,1,11.95,09/27/19 19:03,"934 Chestnut St, Austin, TX 73301" +250424,AA Batteries (4-pack),2,3.84,09/07/19 10:55,"319 Maple St, San Francisco, CA 94016" +250425,AAA Batteries (4-pack),1,2.99,09/18/19 17:52,"197 Forest St, San Francisco, CA 94016" +250426,Google Phone,1,600,09/11/19 10:34,"719 Johnson St, Atlanta, GA 30301" +250427,27in FHD Monitor,1,149.99,09/10/19 18:24,"430 Cherry St, Boston, MA 02215" +250428,AA Batteries (4-pack),2,3.84,09/23/19 08:55,"781 13th St, Portland, OR 97035" +250429,AAA Batteries (4-pack),1,2.99,09/29/19 19:57,"634 Jackson St, Portland, OR 97035" +250429,AAA Batteries (4-pack),3,2.99,09/29/19 19:57,"634 Jackson St, Portland, OR 97035" +250430,USB-C Charging Cable,1,11.95,09/21/19 13:12,"252 6th St, Boston, MA 02215" +250431,Bose SoundSport Headphones,1,99.99,09/13/19 19:21,"839 North St, Seattle, WA 98101" +250432,AA Batteries (4-pack),1,3.84,09/17/19 18:21,"15 Lincoln St, San Francisco, CA 94016" +250433,Wired Headphones,1,11.99,09/19/19 23:45,"401 Cedar St, New York City, NY 10001" +250434,Lightning Charging Cable,1,14.95,09/17/19 21:56,"708 Walnut St, Atlanta, GA 30301" +250435,Lightning Charging Cable,1,14.95,09/17/19 18:58,"729 12th St, San Francisco, CA 94016" +250436,27in 4K Gaming Monitor,1,389.99,09/20/19 19:39,"353 River St, San Francisco, CA 94016" +250437,USB-C Charging Cable,1,11.95,09/22/19 19:48,"296 12th St, New York City, NY 10001" +250438,ThinkPad Laptop,1,999.99,09/29/19 21:28,"920 1st St, Seattle, WA 98101" +250439,AA Batteries (4-pack),1,3.84,09/14/19 17:24,"52 2nd St, Seattle, WA 98101" +250440,iPhone,1,700,09/20/19 19:50,"76 Madison St, San Francisco, CA 94016" +250440,Lightning Charging Cable,1,14.95,09/20/19 19:50,"76 Madison St, San Francisco, CA 94016" +250441,27in FHD Monitor,1,149.99,09/26/19 13:49,"327 5th St, Atlanta, GA 30301" +250442,AA Batteries (4-pack),1,3.84,09/03/19 22:14,"249 1st St, San Francisco, CA 94016" +250443,Bose SoundSport Headphones,1,99.99,09/13/19 10:34,"782 Highland St, Boston, MA 02215" +250444,AAA Batteries (4-pack),1,2.99,09/01/19 20:52,"616 Johnson St, Portland, OR 97035" +250445,Google Phone,1,600,09/27/19 11:55,"659 Main St, San Francisco, CA 94016" +250446,Wired Headphones,1,11.99,09/18/19 22:37,"334 Maple St, San Francisco, CA 94016" +250447,Wired Headphones,1,11.99,09/15/19 09:59,"82 Willow St, Atlanta, GA 30301" +250448,USB-C Charging Cable,1,11.95,09/03/19 15:09,"525 South St, Portland, OR 97035" +250449,USB-C Charging Cable,1,11.95,09/03/19 12:07,"875 2nd St, Seattle, WA 98101" +250450,USB-C Charging Cable,1,11.95,09/13/19 14:30,"275 11th St, Dallas, TX 75001" +250451,Bose SoundSport Headphones,1,99.99,09/04/19 16:26,"650 Main St, Atlanta, GA 30301" +250452,Lightning Charging Cable,1,14.95,09/20/19 14:25,"273 Johnson St, New York City, NY 10001" +250453,USB-C Charging Cable,1,11.95,09/05/19 18:28,"490 Pine St, Atlanta, GA 30301" +250454,AAA Batteries (4-pack),2,2.99,09/11/19 20:07,"601 Forest St, Boston, MA 02215" +250455,Lightning Charging Cable,1,14.95,09/11/19 08:29,"764 Pine St, San Francisco, CA 94016" +250456,AAA Batteries (4-pack),1,2.99,09/19/19 20:13,"489 Forest St, Portland, OR 97035" +250457,AA Batteries (4-pack),2,3.84,09/29/19 21:49,"364 Pine St, New York City, NY 10001" +250458,Lightning Charging Cable,1,14.95,09/22/19 14:06,"603 5th St, Dallas, TX 75001" +250459,AAA Batteries (4-pack),1,2.99,09/04/19 16:40,"776 Adams St, Seattle, WA 98101" +250460,USB-C Charging Cable,1,11.95,09/10/19 20:54,"661 Adams St, New York City, NY 10001" +250461,USB-C Charging Cable,1,11.95,09/16/19 16:30,"313 River St, Boston, MA 02215" +250462,AA Batteries (4-pack),2,3.84,09/13/19 00:34,"983 Highland St, Boston, MA 02215" +250463,AA Batteries (4-pack),1,3.84,09/17/19 11:33,"182 South St, Boston, MA 02215" +250464,Apple Airpods Headphones,1,150,09/08/19 19:15,"788 Spruce St, Seattle, WA 98101" +250465,AA Batteries (4-pack),1,3.84,09/02/19 22:37,"191 Meadow St, Los Angeles, CA 90001" +250466,Lightning Charging Cable,1,14.95,09/12/19 13:48,"224 8th St, Seattle, WA 98101" +250467,Wired Headphones,1,11.99,09/16/19 21:24,"488 Park St, Portland, ME 04101" +250468,AA Batteries (4-pack),1,3.84,09/03/19 22:44,"283 Jefferson St, Dallas, TX 75001" +250469,Bose SoundSport Headphones,1,99.99,09/10/19 22:37,"653 Cherry St, New York City, NY 10001" +250470,27in 4K Gaming Monitor,1,389.99,09/13/19 23:01,"54 Willow St, Boston, MA 02215" +250471,Google Phone,1,600,09/27/19 13:56,"703 Lincoln St, Boston, MA 02215" +250472,AA Batteries (4-pack),1,3.84,09/14/19 13:23,"312 Forest St, Atlanta, GA 30301" +250473,Vareebadd Phone,1,400,09/17/19 11:47,"264 5th St, Atlanta, GA 30301" +250474,Macbook Pro Laptop,1,1700,09/08/19 13:11,"195 Cherry St, San Francisco, CA 94016" +250475,AA Batteries (4-pack),1,3.84,09/10/19 19:33,"680 Lakeview St, Los Angeles, CA 90001" +250476,Apple Airpods Headphones,1,150,09/01/19 14:30,"224 7th St, Los Angeles, CA 90001" +250477,Macbook Pro Laptop,1,1700,09/30/19 21:03,"280 Spruce St, Los Angeles, CA 90001" +250478,Lightning Charging Cable,1,14.95,09/02/19 14:17,"18 8th St, New York City, NY 10001" +250479,Bose SoundSport Headphones,1,99.99,09/20/19 14:47,"421 Highland St, Los Angeles, CA 90001" +250480,Apple Airpods Headphones,1,150,09/21/19 19:33,"488 Johnson St, Dallas, TX 75001" +250481,AAA Batteries (4-pack),1,2.99,09/11/19 23:14,"863 Church St, Boston, MA 02215" +250482,USB-C Charging Cable,1,11.95,09/13/19 10:55,"26 Main St, Seattle, WA 98101" +250483,Macbook Pro Laptop,1,1700,09/14/19 17:43,"877 Main St, Austin, TX 73301" +250484,Flatscreen TV,1,300,09/04/19 17:19,"162 4th St, Seattle, WA 98101" +250485,20in Monitor,1,109.99,09/07/19 18:23,"123 13th St, New York City, NY 10001" +250486,34in Ultrawide Monitor,1,379.99,09/27/19 19:06,"255 Lake St, New York City, NY 10001" +250487,Vareebadd Phone,1,400,09/06/19 23:39,"777 Walnut St, San Francisco, CA 94016" +250487,USB-C Charging Cable,2,11.95,09/06/19 23:39,"777 Walnut St, San Francisco, CA 94016" +250488,AAA Batteries (4-pack),1,2.99,09/19/19 03:34,"240 Jefferson St, San Francisco, CA 94016" +250489,Apple Airpods Headphones,1,150,09/28/19 11:20,"21 7th St, New York City, NY 10001" +250490,AA Batteries (4-pack),1,3.84,09/10/19 16:54,"563 Maple St, Atlanta, GA 30301" +250491,ThinkPad Laptop,1,999.99,09/14/19 17:31,"110 Church St, Portland, OR 97035" +250492,Lightning Charging Cable,1,14.95,09/16/19 13:33,"988 Adams St, Atlanta, GA 30301" +250493,USB-C Charging Cable,2,11.95,09/15/19 19:35,"825 6th St, Atlanta, GA 30301" +250494,AA Batteries (4-pack),1,3.84,09/12/19 23:48,"747 4th St, Boston, MA 02215" +250495,Lightning Charging Cable,1,14.95,09/17/19 15:36,"114 Cedar St, Los Angeles, CA 90001" +250496,34in Ultrawide Monitor,1,379.99,09/12/19 06:41,"393 Madison St, San Francisco, CA 94016" +250497,USB-C Charging Cable,1,11.95,09/11/19 10:22,"349 Maple St, New York City, NY 10001" +250498,Lightning Charging Cable,1,14.95,09/10/19 08:34,"237 Highland St, Los Angeles, CA 90001" +250499,27in 4K Gaming Monitor,1,389.99,09/14/19 18:46,"593 Meadow St, Boston, MA 02215" +250500,Lightning Charging Cable,1,14.95,09/23/19 01:16,"267 North St, New York City, NY 10001" +250501,Lightning Charging Cable,1,14.95,09/05/19 09:29,"344 8th St, New York City, NY 10001" +250502,AA Batteries (4-pack),1,3.84,09/20/19 13:59,"676 Madison St, San Francisco, CA 94016" +250503,AAA Batteries (4-pack),1,2.99,09/16/19 21:16,"838 10th St, San Francisco, CA 94016" +250504,Wired Headphones,1,11.99,09/26/19 00:20,"202 Adams St, Los Angeles, CA 90001" +250505,iPhone,1,700,09/06/19 15:19,"604 River St, New York City, NY 10001" +250506,Wired Headphones,1,11.99,09/04/19 14:45,"932 Johnson St, Los Angeles, CA 90001" +250507,Apple Airpods Headphones,1,150,09/19/19 03:16,"714 Willow St, Los Angeles, CA 90001" +250508,Bose SoundSport Headphones,1,99.99,09/20/19 11:28,"949 Willow St, San Francisco, CA 94016" +250509,USB-C Charging Cable,1,11.95,09/19/19 08:49,"493 Spruce St, Boston, MA 02215" +250510,27in FHD Monitor,1,149.99,09/26/19 20:41,"588 7th St, Boston, MA 02215" +250511,Lightning Charging Cable,1,14.95,09/05/19 18:21,"638 Elm St, San Francisco, CA 94016" +250512,AAA Batteries (4-pack),1,2.99,09/06/19 20:00,"948 7th St, New York City, NY 10001" +250513,Lightning Charging Cable,1,14.95,09/11/19 14:42,"898 Lincoln St, Seattle, WA 98101" +250514,Apple Airpods Headphones,1,150,09/25/19 22:30,"659 Hickory St, Boston, MA 02215" +250515,27in FHD Monitor,1,149.99,09/29/19 18:35,"714 Washington St, New York City, NY 10001" +250516,Macbook Pro Laptop,1,1700,09/22/19 13:48,"139 Pine St, San Francisco, CA 94016" +250517,AAA Batteries (4-pack),1,2.99,09/09/19 20:41,"5 Madison St, Seattle, WA 98101" +250518,Wired Headphones,1,11.99,09/05/19 13:32,"164 Walnut St, San Francisco, CA 94016" +250519,USB-C Charging Cable,1,11.95,09/12/19 11:08,"808 South St, San Francisco, CA 94016" +250520,27in FHD Monitor,1,149.99,09/13/19 12:10,"167 Highland St, Dallas, TX 75001" +250520,27in FHD Monitor,1,149.99,09/13/19 12:10,"167 Highland St, Dallas, TX 75001" +250521,27in FHD Monitor,1,149.99,09/16/19 09:16,"274 10th St, Portland, OR 97035" +250522,Bose SoundSport Headphones,1,99.99,09/12/19 16:15,"66 13th St, San Francisco, CA 94016" +250523,Wired Headphones,1,11.99,09/05/19 22:50,"22 Chestnut St, Dallas, TX 75001" +250524,AAA Batteries (4-pack),5,2.99,09/12/19 00:13,"501 Center St, New York City, NY 10001" +250525,USB-C Charging Cable,1,11.95,09/30/19 18:57,"664 9th St, Dallas, TX 75001" +250526,Lightning Charging Cable,1,14.95,09/16/19 20:27,"59 Lincoln St, Portland, ME 04101" +250526,Bose SoundSport Headphones,1,99.99,09/16/19 20:27,"59 Lincoln St, Portland, ME 04101" +250527,27in 4K Gaming Monitor,1,389.99,09/08/19 11:18,"755 Sunset St, Portland, OR 97035" +250528,Flatscreen TV,1,300,09/10/19 22:59,"106 10th St, New York City, NY 10001" +250529,AAA Batteries (4-pack),1,2.99,09/07/19 18:45,"510 Willow St, Boston, MA 02215" +250530,AA Batteries (4-pack),4,3.84,09/13/19 11:25,"214 10th St, San Francisco, CA 94016" +250531,Flatscreen TV,1,300,09/22/19 19:25,"366 Jefferson St, San Francisco, CA 94016" +250532,AA Batteries (4-pack),3,3.84,09/11/19 10:56,"369 West St, Dallas, TX 75001" +250533,34in Ultrawide Monitor,1,379.99,09/25/19 18:11,"602 Johnson St, Atlanta, GA 30301" +250534,USB-C Charging Cable,1,11.95,09/14/19 23:05,"606 Adams St, Atlanta, GA 30301" +250535,Wired Headphones,1,11.99,09/08/19 14:12,"722 6th St, San Francisco, CA 94016" +250536,Apple Airpods Headphones,1,150,09/02/19 19:43,"109 Spruce St, Atlanta, GA 30301" +250537,AA Batteries (4-pack),1,3.84,09/27/19 17:12,"615 Spruce St, San Francisco, CA 94016" +250538,AAA Batteries (4-pack),1,2.99,09/27/19 19:30,"725 Dogwood St, Dallas, TX 75001" +250539,Wired Headphones,1,11.99,09/30/19 20:03,"484 Spruce St, San Francisco, CA 94016" +250540,AA Batteries (4-pack),2,3.84,09/04/19 13:21,"307 Main St, Boston, MA 02215" +250541,AAA Batteries (4-pack),1,2.99,09/27/19 08:28,"412 Jackson St, San Francisco, CA 94016" +250542,Wired Headphones,1,11.99,09/13/19 19:33,"668 1st St, New York City, NY 10001" +250543,Apple Airpods Headphones,1,150,09/03/19 15:53,"441 Church St, Seattle, WA 98101" +250544,Lightning Charging Cable,1,14.95,09/30/19 21:10,"168 Cherry St, Austin, TX 73301" +250545,Lightning Charging Cable,1,14.95,09/07/19 11:06,"699 Church St, Dallas, TX 75001" +250546,AA Batteries (4-pack),4,3.84,09/01/19 12:31,"650 Adams St, Dallas, TX 75001" +250547,AA Batteries (4-pack),1,3.84,09/20/19 11:26,"284 Jefferson St, San Francisco, CA 94016" +250548,Macbook Pro Laptop,1,1700,09/07/19 13:45,"593 Meadow St, Los Angeles, CA 90001" +250549,AAA Batteries (4-pack),2,2.99,09/19/19 16:43,"532 14th St, New York City, NY 10001" +250550,Wired Headphones,1,11.99,09/11/19 11:43,"951 Meadow St, San Francisco, CA 94016" +250551,Bose SoundSport Headphones,1,99.99,09/24/19 19:29,"489 6th St, San Francisco, CA 94016" +250552,AA Batteries (4-pack),1,3.84,09/20/19 20:12,"26 Adams St, Boston, MA 02215" +250553,iPhone,1,700,09/07/19 20:07,"259 1st St, Los Angeles, CA 90001" +250554,AAA Batteries (4-pack),1,2.99,09/23/19 18:32,"366 Lakeview St, Portland, ME 04101" +250555,Wired Headphones,2,11.99,09/06/19 12:54,"437 Sunset St, Los Angeles, CA 90001" +250556,Wired Headphones,1,11.99,09/05/19 20:28,"373 Chestnut St, San Francisco, CA 94016" +250557,AAA Batteries (4-pack),1,2.99,09/26/19 17:42,"327 Pine St, Dallas, TX 75001" +250558,AA Batteries (4-pack),1,3.84,09/30/19 15:09,"981 West St, Dallas, TX 75001" +250559,Lightning Charging Cable,1,14.95,09/15/19 16:13,"589 Highland St, San Francisco, CA 94016" +250560,Bose SoundSport Headphones,1,99.99,09/16/19 20:04,"780 5th St, Atlanta, GA 30301" +250561,34in Ultrawide Monitor,1,379.99,09/11/19 22:30,"696 Walnut St, San Francisco, CA 94016" +250562,20in Monitor,1,109.99,09/14/19 09:22,"506 8th St, San Francisco, CA 94016" +250563,USB-C Charging Cable,1,11.95,09/22/19 09:56,"923 South St, Seattle, WA 98101" +250564,USB-C Charging Cable,1,11.95,09/08/19 10:51,"105 8th St, Portland, OR 97035" +250565,USB-C Charging Cable,1,11.95,09/05/19 19:30,"555 Hill St, San Francisco, CA 94016" +250566,20in Monitor,1,109.99,09/18/19 19:41,"138 14th St, Los Angeles, CA 90001" +250567,Google Phone,1,600,09/27/19 22:41,"69 Lake St, Boston, MA 02215" +250568,Lightning Charging Cable,1,14.95,09/12/19 21:16,"954 Lakeview St, Atlanta, GA 30301" +250569,27in FHD Monitor,1,149.99,09/03/19 09:49,"971 Chestnut St, San Francisco, CA 94016" +250570,Bose SoundSport Headphones,1,99.99,09/26/19 21:16,"38 11th St, Seattle, WA 98101" +250571,Lightning Charging Cable,1,14.95,09/07/19 22:30,"733 10th St, Austin, TX 73301" +250572,Wired Headphones,1,11.99,09/21/19 11:37,"835 5th St, Los Angeles, CA 90001" +250573,AAA Batteries (4-pack),1,2.99,09/15/19 19:53,"328 Spruce St, Dallas, TX 75001" +250574,Lightning Charging Cable,1,14.95,09/23/19 17:11,"300 Meadow St, San Francisco, CA 94016" +250575,Flatscreen TV,1,300,09/29/19 22:31,"620 Ridge St, Los Angeles, CA 90001" +250576,AA Batteries (4-pack),1,3.84,09/08/19 18:54,"355 1st St, Seattle, WA 98101" +250577,AA Batteries (4-pack),1,3.84,09/11/19 13:44,"764 4th St, Atlanta, GA 30301" +250578,iPhone,1,700,09/04/19 12:30,"794 Cedar St, New York City, NY 10001" +250578,Apple Airpods Headphones,1,150,09/04/19 12:30,"794 Cedar St, New York City, NY 10001" +250579,27in FHD Monitor,1,149.99,09/21/19 22:10,"592 Lake St, Atlanta, GA 30301" +250580,USB-C Charging Cable,1,11.95,09/18/19 13:52,"313 Spruce St, Seattle, WA 98101" +250581,27in FHD Monitor,1,149.99,09/18/19 17:19,"249 Cherry St, Seattle, WA 98101" +250582,Apple Airpods Headphones,1,150,09/07/19 12:17,"638 Spruce St, Atlanta, GA 30301" +250583,AA Batteries (4-pack),1,3.84,09/19/19 23:28,"784 Highland St, New York City, NY 10001" +250584,AAA Batteries (4-pack),1,2.99,09/03/19 00:03,"958 Johnson St, New York City, NY 10001" +250585,Wired Headphones,1,11.99,09/11/19 09:29,"676 Ridge St, New York City, NY 10001" +250586,Bose SoundSport Headphones,1,99.99,09/30/19 08:46,"709 West St, Boston, MA 02215" +250587,20in Monitor,1,109.99,09/30/19 10:07,"931 2nd St, San Francisco, CA 94016" +250588,AA Batteries (4-pack),2,3.84,09/20/19 12:09,"946 Pine St, Los Angeles, CA 90001" +250589,iPhone,1,700,09/11/19 07:43,"916 13th St, Los Angeles, CA 90001" +250590,AAA Batteries (4-pack),1,2.99,09/26/19 17:33,"252 13th St, Boston, MA 02215" +250591,Wired Headphones,1,11.99,09/08/19 12:42,"113 Chestnut St, Los Angeles, CA 90001" +250592,Bose SoundSport Headphones,1,99.99,09/22/19 00:23,"997 Madison St, Dallas, TX 75001" +250592,Wired Headphones,1,11.99,09/22/19 00:23,"997 Madison St, Dallas, TX 75001" +250593,AAA Batteries (4-pack),1,2.99,09/08/19 21:03,"168 Willow St, San Francisco, CA 94016" +250594,USB-C Charging Cable,1,11.95,09/29/19 19:07,"862 Hill St, New York City, NY 10001" +250595,Lightning Charging Cable,1,14.95,09/27/19 13:51,"517 Washington St, New York City, NY 10001" +250596,AA Batteries (4-pack),2,3.84,09/14/19 00:09,"548 8th St, San Francisco, CA 94016" +250597,Apple Airpods Headphones,1,150,09/05/19 23:13,"353 Hickory St, Los Angeles, CA 90001" +250598,ThinkPad Laptop,1,999.99,09/04/19 16:31,"916 Chestnut St, New York City, NY 10001" +250599,Lightning Charging Cable,1,14.95,09/21/19 12:40,"55 9th St, San Francisco, CA 94016" +250600,Wired Headphones,1,11.99,09/18/19 18:04,"143 Hill St, New York City, NY 10001" +250600,27in FHD Monitor,1,149.99,09/18/19 18:04,"143 Hill St, New York City, NY 10001" +250601,Lightning Charging Cable,2,14.95,09/05/19 18:15,"20 Meadow St, San Francisco, CA 94016" +250602,iPhone,1,700,09/16/19 19:56,"816 South St, Boston, MA 02215" +250603,Lightning Charging Cable,1,14.95,09/30/19 13:49,"508 Center St, New York City, NY 10001" +250604,27in FHD Monitor,1,149.99,09/25/19 09:22,"321 West St, San Francisco, CA 94016" +250605,Bose SoundSport Headphones,1,99.99,09/22/19 15:07,"63 2nd St, Atlanta, GA 30301" +250606,ThinkPad Laptop,1,999.99,09/10/19 15:26,"425 Jackson St, New York City, NY 10001" +250607,Apple Airpods Headphones,2,150,09/10/19 14:19,"55 Park St, Seattle, WA 98101" +250608,Bose SoundSport Headphones,1,99.99,09/02/19 16:59,"138 Jefferson St, Dallas, TX 75001" +250608,Wired Headphones,1,11.99,09/02/19 16:59,"138 Jefferson St, Dallas, TX 75001" +250609,20in Monitor,1,109.99,09/26/19 02:17,"71 Lincoln St, Dallas, TX 75001" +250610,Lightning Charging Cable,1,14.95,09/17/19 21:13,"806 Lake St, New York City, NY 10001" +250611,Lightning Charging Cable,1,14.95,09/01/19 09:04,"242 Church St, San Francisco, CA 94016" +250612,AA Batteries (4-pack),1,3.84,09/08/19 15:48,"526 12th St, Boston, MA 02215" +250613,Apple Airpods Headphones,1,150,09/26/19 11:25,"517 12th St, New York City, NY 10001" +250614,20in Monitor,1,109.99,09/18/19 18:01,"67 Lakeview St, San Francisco, CA 94016" +250615,27in 4K Gaming Monitor,1,389.99,09/02/19 12:26,"394 River St, Los Angeles, CA 90001" +250616,USB-C Charging Cable,1,11.95,09/12/19 15:17,"820 5th St, Portland, OR 97035" +250617,iPhone,1,700,09/15/19 22:00,"833 Lake St, Seattle, WA 98101" +250618,Macbook Pro Laptop,1,1700,09/09/19 19:12,"894 Main St, Atlanta, GA 30301" +250619,Google Phone,1,600,09/06/19 10:48,"654 14th St, New York City, NY 10001" +250619,Wired Headphones,1,11.99,09/06/19 10:48,"654 14th St, New York City, NY 10001" +250620,USB-C Charging Cable,1,11.95,09/02/19 12:56,"505 Highland St, San Francisco, CA 94016" +250621,AA Batteries (4-pack),1,3.84,09/06/19 13:29,"518 Jackson St, Atlanta, GA 30301" +250622,AA Batteries (4-pack),1,3.84,09/04/19 14:16,"903 Sunset St, Austin, TX 73301" +250623,Google Phone,1,600,09/05/19 15:09,"147 South St, Los Angeles, CA 90001" +250624,Wired Headphones,1,11.99,09/08/19 11:35,"531 9th St, Seattle, WA 98101" +250625,AA Batteries (4-pack),1,3.84,09/18/19 10:13,"900 Church St, Seattle, WA 98101" +250626,USB-C Charging Cable,1,11.95,09/08/19 20:30,"653 10th St, Dallas, TX 75001" +250627,iPhone,1,700,09/07/19 16:46,"389 5th St, Atlanta, GA 30301" +250628,USB-C Charging Cable,1,11.95,09/12/19 12:39,"741 1st St, Los Angeles, CA 90001" +250629,USB-C Charging Cable,1,11.95,09/09/19 20:16,"894 9th St, Austin, TX 73301" +250630,34in Ultrawide Monitor,1,379.99,09/10/19 12:25,"432 Willow St, Dallas, TX 75001" +250631,27in 4K Gaming Monitor,1,389.99,09/24/19 10:56,"304 Ridge St, San Francisco, CA 94016" +250632,Wired Headphones,1,11.99,09/02/19 15:38,"921 Wilson St, Los Angeles, CA 90001" +250633,Macbook Pro Laptop,1,1700,09/20/19 18:16,"433 Lake St, Atlanta, GA 30301" +250634,Vareebadd Phone,1,400,09/18/19 14:25,"36 Maple St, Dallas, TX 75001" +250634,Apple Airpods Headphones,1,150,09/18/19 14:25,"36 Maple St, Dallas, TX 75001" +250635,Apple Airpods Headphones,1,150,09/09/19 11:54,"678 Lakeview St, San Francisco, CA 94016" +250636,AA Batteries (4-pack),1,3.84,09/08/19 22:19,"298 7th St, San Francisco, CA 94016" +250637,20in Monitor,1,109.99,09/13/19 18:10,"585 7th St, Boston, MA 02215" +250638,USB-C Charging Cable,1,11.95,09/05/19 20:07,"893 10th St, New York City, NY 10001" +250639,AA Batteries (4-pack),1,3.84,09/13/19 04:38,"539 Johnson St, Boston, MA 02215" +250640,20in Monitor,1,109.99,09/29/19 23:10,"609 5th St, San Francisco, CA 94016" +250641,AAA Batteries (4-pack),1,2.99,09/09/19 08:09,"69 Chestnut St, Boston, MA 02215" +250642,Apple Airpods Headphones,1,150,09/20/19 20:47,"169 1st St, Los Angeles, CA 90001" +250643,AA Batteries (4-pack),1,3.84,09/27/19 23:10,"771 10th St, Los Angeles, CA 90001" +250644,AA Batteries (4-pack),4,3.84,09/06/19 10:03,"682 Hill St, San Francisco, CA 94016" +250645,AA Batteries (4-pack),1,3.84,09/14/19 15:06,"798 8th St, San Francisco, CA 94016" +250646,AAA Batteries (4-pack),5,2.99,09/17/19 16:06,"121 North St, San Francisco, CA 94016" +250647,USB-C Charging Cable,1,11.95,09/25/19 00:38,"68 8th St, Seattle, WA 98101" +250648,AA Batteries (4-pack),1,3.84,09/29/19 23:27,"395 Main St, San Francisco, CA 94016" +250649,AA Batteries (4-pack),3,3.84,09/01/19 12:23,"659 13th St, Los Angeles, CA 90001" +250650,Bose SoundSport Headphones,1,99.99,09/19/19 19:26,"998 Elm St, Los Angeles, CA 90001" +250651,AAA Batteries (4-pack),1,2.99,09/06/19 16:17,"914 Center St, Seattle, WA 98101" +250652,Lightning Charging Cable,1,14.95,09/04/19 16:01,"408 12th St, Dallas, TX 75001" +250653,iPhone,1,700,09/04/19 19:19,"806 1st St, Dallas, TX 75001" +250653,Lightning Charging Cable,1,14.95,09/04/19 19:19,"806 1st St, Dallas, TX 75001" +250654,AAA Batteries (4-pack),1,2.99,09/26/19 10:03,"690 Chestnut St, Atlanta, GA 30301" +250655,Wired Headphones,1,11.99,09/21/19 20:58,"528 West St, Dallas, TX 75001" +250656,Lightning Charging Cable,1,14.95,09/29/19 15:53,"694 Lake St, Boston, MA 02215" +250657,27in FHD Monitor,1,149.99,09/13/19 15:18,"134 Cherry St, San Francisco, CA 94016" +250658,27in FHD Monitor,1,149.99,09/27/19 22:19,"119 Elm St, Los Angeles, CA 90001" +250659,Apple Airpods Headphones,1,150,09/17/19 13:02,"725 11th St, Seattle, WA 98101" +250660,27in 4K Gaming Monitor,1,389.99,09/22/19 15:50,"773 13th St, Dallas, TX 75001" +250661,USB-C Charging Cable,1,11.95,09/07/19 13:45,"3 12th St, Boston, MA 02215" +250662,Lightning Charging Cable,1,14.95,09/30/19 21:29,"371 Sunset St, New York City, NY 10001" +250663,Bose SoundSport Headphones,1,99.99,09/19/19 17:29,"482 11th St, Los Angeles, CA 90001" +250664,AA Batteries (4-pack),2,3.84,09/22/19 12:01,"832 Spruce St, San Francisco, CA 94016" +250665,AAA Batteries (4-pack),1,2.99,09/21/19 22:30,"434 8th St, Dallas, TX 75001" +250666,USB-C Charging Cable,1,11.95,09/08/19 18:28,"862 12th St, Portland, OR 97035" +250667,USB-C Charging Cable,1,11.95,09/01/19 14:07,"216 Meadow St, Boston, MA 02215" +250668,Bose SoundSport Headphones,1,99.99,09/22/19 10:24,"838 Center St, San Francisco, CA 94016" +250669,Lightning Charging Cable,1,14.95,09/19/19 21:42,"770 4th St, Portland, OR 97035" +250670,Flatscreen TV,1,300,09/22/19 12:23,"444 Madison St, Boston, MA 02215" +250671,USB-C Charging Cable,1,11.95,09/06/19 13:06,"462 Ridge St, Atlanta, GA 30301" +250672,Wired Headphones,1,11.99,09/22/19 15:18,"644 Jackson St, Portland, ME 04101" +250673,Google Phone,1,600,09/30/19 17:11,"510 Meadow St, San Francisco, CA 94016" +250673,USB-C Charging Cable,1,11.95,09/30/19 17:11,"510 Meadow St, San Francisco, CA 94016" +250674,Wired Headphones,1,11.99,09/25/19 22:47,"270 Hickory St, New York City, NY 10001" +250675,AAA Batteries (4-pack),2,2.99,09/29/19 00:41,"5 Sunset St, San Francisco, CA 94016" +250676,Wired Headphones,1,11.99,09/03/19 01:58,"328 Cedar St, Portland, OR 97035" +250677,AAA Batteries (4-pack),3,2.99,09/12/19 22:46,"288 Madison St, Seattle, WA 98101" +250678,Lightning Charging Cable,1,14.95,09/24/19 11:44,"629 Dogwood St, Austin, TX 73301" +250679,Macbook Pro Laptop,1,1700,09/29/19 16:17,"813 Willow St, Los Angeles, CA 90001" +250680,ThinkPad Laptop,1,999.99,09/15/19 13:30,"821 Sunset St, New York City, NY 10001" +250681,Lightning Charging Cable,1,14.95,09/28/19 20:42,"391 Ridge St, Los Angeles, CA 90001" +250682,Apple Airpods Headphones,1,150,09/05/19 11:24,"396 Lakeview St, Los Angeles, CA 90001" +250683,Wired Headphones,2,11.99,09/06/19 08:59,"744 Jackson St, Los Angeles, CA 90001" +250684,iPhone,1,700,09/26/19 18:26,"403 Park St, Dallas, TX 75001" +250685,iPhone,1,700,09/30/19 21:57,"879 7th St, Dallas, TX 75001" +250686,Flatscreen TV,1,300,09/11/19 17:18,"346 Cherry St, New York City, NY 10001" +250687,34in Ultrawide Monitor,1,379.99,09/27/19 15:09,"974 Lake St, Dallas, TX 75001" +250688,Apple Airpods Headphones,1,150,09/05/19 18:50,"217 Hickory St, Seattle, WA 98101" +250689,AA Batteries (4-pack),1,3.84,09/05/19 00:31,"687 4th St, Los Angeles, CA 90001" +250690,iPhone,1,700,09/28/19 08:39,"449 Elm St, Portland, OR 97035" +250691,Bose SoundSport Headphones,1,99.99,09/27/19 12:42,"406 Madison St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +250692,Flatscreen TV,1,300,09/15/19 23:17,"404 1st St, Atlanta, GA 30301" +250693,Apple Airpods Headphones,1,150,09/27/19 20:41,"885 6th St, New York City, NY 10001" +250694,34in Ultrawide Monitor,1,379.99,09/21/19 19:32,"624 Main St, Los Angeles, CA 90001" +250695,Lightning Charging Cable,1,14.95,09/24/19 09:07,"941 7th St, Seattle, WA 98101" +250696,Apple Airpods Headphones,1,150,09/29/19 19:40,"47 12th St, Seattle, WA 98101" +250697,20in Monitor,1,109.99,09/29/19 16:37,"576 Madison St, San Francisco, CA 94016" +250698,AAA Batteries (4-pack),1,2.99,09/02/19 21:37,"332 Church St, San Francisco, CA 94016" +250699,Wired Headphones,1,11.99,09/15/19 11:57,"195 Madison St, New York City, NY 10001" +250700,USB-C Charging Cable,1,11.95,09/05/19 10:50,"320 11th St, Boston, MA 02215" +250701,iPhone,1,700,09/01/19 22:26,"692 Johnson St, New York City, NY 10001" +250702,Apple Airpods Headphones,1,150,09/13/19 18:55,"720 Spruce St, Seattle, WA 98101" +250703,USB-C Charging Cable,1,11.95,09/09/19 08:38,"622 West St, San Francisco, CA 94016" +250704,27in 4K Gaming Monitor,1,389.99,09/16/19 21:23,"352 Highland St, San Francisco, CA 94016" +250705,USB-C Charging Cable,1,11.95,09/13/19 13:58,"130 Walnut St, Boston, MA 02215" +250706,Wired Headphones,1,11.99,09/20/19 23:32,"501 14th St, Boston, MA 02215" +250707,AA Batteries (4-pack),1,3.84,09/19/19 13:08,"941 Wilson St, Austin, TX 73301" +250708,Bose SoundSport Headphones,1,99.99,09/07/19 12:36,"756 13th St, Portland, OR 97035" +250709,Vareebadd Phone,1,400,09/03/19 11:52,"943 10th St, Dallas, TX 75001" +250710,iPhone,1,700,09/21/19 13:05,"585 Jefferson St, San Francisco, CA 94016" +250711,Flatscreen TV,1,300,09/01/19 10:21,"990 Adams St, Atlanta, GA 30301" +250712,Apple Airpods Headphones,1,150,09/04/19 10:05,"986 Center St, Austin, TX 73301" +250713,ThinkPad Laptop,1,999.99,09/23/19 18:49,"876 1st St, Los Angeles, CA 90001" +250714,Wired Headphones,1,11.99,09/04/19 12:16,"580 Park St, Boston, MA 02215" +250715,AAA Batteries (4-pack),2,2.99,09/01/19 13:34,"795 Lakeview St, San Francisco, CA 94016" +250716,Apple Airpods Headphones,1,150,09/25/19 13:20,"278 6th St, Boston, MA 02215" +250717,iPhone,1,700,09/24/19 15:30,"367 Lake St, Atlanta, GA 30301" +250718,USB-C Charging Cable,1,11.95,09/20/19 16:38,"436 Forest St, Austin, TX 73301" +250719,Flatscreen TV,1,300,09/05/19 20:14,"248 Adams St, San Francisco, CA 94016" +250720,Flatscreen TV,1,300,09/26/19 17:55,"429 Main St, Seattle, WA 98101" +250721,AA Batteries (4-pack),1,3.84,09/24/19 16:37,"169 10th St, Atlanta, GA 30301" +250722,Wired Headphones,1,11.99,09/04/19 09:30,"136 Jackson St, Portland, OR 97035" +250723,USB-C Charging Cable,1,11.95,09/18/19 18:08,"96 Cherry St, Dallas, TX 75001" +250724,27in FHD Monitor,1,149.99,09/24/19 16:49,"261 Elm St, San Francisco, CA 94016" +250725,Lightning Charging Cable,1,14.95,09/16/19 14:20,"921 14th St, San Francisco, CA 94016" +250726,AA Batteries (4-pack),1,3.84,09/28/19 10:27,"733 5th St, San Francisco, CA 94016" +250727,34in Ultrawide Monitor,1,379.99,09/04/19 21:55,"240 Hill St, New York City, NY 10001" +250728,Wired Headphones,1,11.99,09/18/19 07:24,"836 6th St, New York City, NY 10001" +250729,AA Batteries (4-pack),1,3.84,09/08/19 22:33,"669 Lakeview St, Seattle, WA 98101" +250730,AAA Batteries (4-pack),1,2.99,09/28/19 20:52,"545 South St, San Francisco, CA 94016" +250731,20in Monitor,1,109.99,09/03/19 17:57,"397 12th St, Seattle, WA 98101" +250732,Bose SoundSport Headphones,1,99.99,09/28/19 10:54,"909 Lake St, Atlanta, GA 30301" +250733,AAA Batteries (4-pack),2,2.99,09/27/19 20:50,"713 Ridge St, Seattle, WA 98101" +250734,ThinkPad Laptop,1,999.99,09/04/19 10:28,"84 Sunset St, Los Angeles, CA 90001" +250735,Apple Airpods Headphones,1,150,09/30/19 18:41,"405 4th St, New York City, NY 10001" +250736,USB-C Charging Cable,1,11.95,09/01/19 20:22,"561 Cherry St, Atlanta, GA 30301" +250737,ThinkPad Laptop,1,999.99,09/18/19 14:09,"609 14th St, San Francisco, CA 94016" +250738,Apple Airpods Headphones,1,150,09/21/19 09:37,"996 11th St, Atlanta, GA 30301" +250739,AAA Batteries (4-pack),5,2.99,09/16/19 07:33,"170 Elm St, San Francisco, CA 94016" +250740,Flatscreen TV,1,300,09/05/19 21:04,"32 Sunset St, Los Angeles, CA 90001" +250740,34in Ultrawide Monitor,1,379.99,09/05/19 21:04,"32 Sunset St, Los Angeles, CA 90001" +250741,27in 4K Gaming Monitor,1,389.99,09/10/19 19:31,"207 Center St, San Francisco, CA 94016" +250742,AAA Batteries (4-pack),1,2.99,09/24/19 20:50,"237 2nd St, Atlanta, GA 30301" +250743,Lightning Charging Cable,1,14.95,09/10/19 09:31,"285 Lincoln St, San Francisco, CA 94016" +250744,AAA Batteries (4-pack),1,2.99,09/29/19 08:44,"691 Main St, San Francisco, CA 94016" +250745,Bose SoundSport Headphones,1,99.99,09/08/19 12:27,"911 Lincoln St, New York City, NY 10001" +250746,ThinkPad Laptop,1,999.99,09/02/19 20:18,"814 Hickory St, Boston, MA 02215" +250747,Wired Headphones,1,11.99,09/25/19 02:17,"513 Highland St, Boston, MA 02215" +250748,Apple Airpods Headphones,1,150,09/15/19 19:02,"514 Highland St, San Francisco, CA 94016" +250749,Google Phone,1,600,09/09/19 16:30,"542 9th St, New York City, NY 10001" +250750,USB-C Charging Cable,1,11.95,09/26/19 10:14,"401 Washington St, New York City, NY 10001" +250751,20in Monitor,1,109.99,09/10/19 13:14,"279 Spruce St, Boston, MA 02215" +250752,20in Monitor,1,109.99,09/24/19 21:00,"248 2nd St, Portland, OR 97035" +250753,Apple Airpods Headphones,1,150,09/10/19 11:27,"436 Lakeview St, Seattle, WA 98101" +250754,20in Monitor,1,109.99,09/10/19 13:54,"595 Church St, Los Angeles, CA 90001" +250755,Lightning Charging Cable,1,14.95,09/21/19 16:46,"909 Maple St, New York City, NY 10001" +250756,AAA Batteries (4-pack),1,2.99,09/09/19 19:16,"783 5th St, Los Angeles, CA 90001" +250757,AAA Batteries (4-pack),2,2.99,09/29/19 13:47,"221 Cedar St, Los Angeles, CA 90001" +250758,USB-C Charging Cable,1,11.95,09/06/19 11:22,"149 Chestnut St, San Francisco, CA 94016" +250759,Flatscreen TV,1,300,09/03/19 19:50,"33 Center St, Atlanta, GA 30301" +250760,Lightning Charging Cable,1,14.95,09/07/19 22:22,"202 Hill St, New York City, NY 10001" +250761,AAA Batteries (4-pack),2,2.99,09/10/19 10:52,"497 9th St, Boston, MA 02215" +250762,20in Monitor,1,109.99,09/29/19 11:07,"613 Adams St, Austin, TX 73301" +250763,Wired Headphones,1,11.99,09/30/19 17:15,"431 Center St, Los Angeles, CA 90001" +250764,USB-C Charging Cable,1,11.95,09/07/19 18:29,"283 4th St, Los Angeles, CA 90001" +250765,Lightning Charging Cable,1,14.95,09/12/19 18:10,"732 Meadow St, San Francisco, CA 94016" +250766,AAA Batteries (4-pack),1,2.99,09/02/19 19:22,"366 Madison St, Los Angeles, CA 90001" +250767,Flatscreen TV,1,300,09/20/19 19:29,"218 Pine St, New York City, NY 10001" +250768,USB-C Charging Cable,1,11.95,09/13/19 20:24,"410 Main St, Los Angeles, CA 90001" +250769,iPhone,1,700,09/09/19 18:59,"563 South St, San Francisco, CA 94016" +250770,ThinkPad Laptop,1,999.99,09/03/19 12:10,"33 Main St, Austin, TX 73301" +250771,Lightning Charging Cable,1,14.95,09/07/19 21:11,"124 Forest St, San Francisco, CA 94016" +250772,Apple Airpods Headphones,1,150,09/13/19 16:43,"19 Spruce St, Boston, MA 02215" +250773,Lightning Charging Cable,1,14.95,09/07/19 12:53,"284 Washington St, Boston, MA 02215" +250774,Wired Headphones,1,11.99,09/30/19 00:12,"712 Wilson St, New York City, NY 10001" +250775,ThinkPad Laptop,1,999.99,09/10/19 18:49,"726 Jackson St, San Francisco, CA 94016" +250776,20in Monitor,1,109.99,09/25/19 14:42,"496 Park St, Los Angeles, CA 90001" +250777,Lightning Charging Cable,1,14.95,09/18/19 12:58,"30 Washington St, Boston, MA 02215" +250778,Apple Airpods Headphones,1,150,09/18/19 19:35,"427 10th St, New York City, NY 10001" +250779,AA Batteries (4-pack),1,3.84,09/04/19 17:44,"896 North St, San Francisco, CA 94016" +250780,USB-C Charging Cable,2,11.95,09/05/19 17:40,"953 12th St, Atlanta, GA 30301" +250781,AA Batteries (4-pack),1,3.84,09/08/19 20:11,"987 Spruce St, San Francisco, CA 94016" +250782,AA Batteries (4-pack),1,3.84,09/13/19 17:05,"835 Center St, Boston, MA 02215" +250783,Vareebadd Phone,1,400,09/08/19 09:07,"765 6th St, Atlanta, GA 30301" +250783,Wired Headphones,1,11.99,09/08/19 09:07,"765 6th St, Atlanta, GA 30301" +250784,AA Batteries (4-pack),1,3.84,09/03/19 06:46,"321 Hickory St, San Francisco, CA 94016" +250785,ThinkPad Laptop,1,999.99,09/13/19 21:19,"692 14th St, New York City, NY 10001" +250786,USB-C Charging Cable,1,11.95,09/01/19 18:30,"517 Chestnut St, San Francisco, CA 94016" +250787,Apple Airpods Headphones,1,150,09/07/19 16:15,"943 Lake St, Los Angeles, CA 90001" +250788,AAA Batteries (4-pack),2,2.99,09/30/19 01:42,"524 Forest St, San Francisco, CA 94016" +250789,27in 4K Gaming Monitor,1,389.99,09/21/19 14:33,"875 Willow St, Los Angeles, CA 90001" +250790,AAA Batteries (4-pack),2,2.99,09/24/19 19:57,"869 South St, Atlanta, GA 30301" +250791,Lightning Charging Cable,1,14.95,09/09/19 20:26,"967 Church St, San Francisco, CA 94016" +250792,20in Monitor,1,109.99,09/08/19 09:53,"665 Jefferson St, San Francisco, CA 94016" +250793,20in Monitor,1,109.99,09/12/19 10:28,"986 Wilson St, San Francisco, CA 94016" +250794,Apple Airpods Headphones,1,150,09/13/19 17:06,"86 Hickory St, New York City, NY 10001" +250795,27in FHD Monitor,1,149.99,09/29/19 18:44,"465 Walnut St, San Francisco, CA 94016" +250796,Google Phone,1,600,09/22/19 01:47,"463 14th St, Los Angeles, CA 90001" +250796,Wired Headphones,1,11.99,09/22/19 01:47,"463 14th St, Los Angeles, CA 90001" +250797,Wired Headphones,1,11.99,09/24/19 09:24,"515 11th St, New York City, NY 10001" +250798,Wired Headphones,1,11.99,09/15/19 17:55,"440 Jefferson St, Dallas, TX 75001" +250799,Macbook Pro Laptop,1,1700,09/23/19 17:07,"239 2nd St, Portland, OR 97035" +250800,Macbook Pro Laptop,1,1700,09/02/19 17:44,"356 11th St, Seattle, WA 98101" +250801,27in FHD Monitor,1,149.99,09/03/19 10:58,"65 Jackson St, Seattle, WA 98101" +250802,AA Batteries (4-pack),1,3.84,09/13/19 20:49,"766 Walnut St, San Francisco, CA 94016" +250803,Macbook Pro Laptop,1,1700,09/17/19 10:55,"803 Elm St, Atlanta, GA 30301" +250804,USB-C Charging Cable,1,11.95,09/15/19 16:35,"124 14th St, Portland, OR 97035" +250805,34in Ultrawide Monitor,1,379.99,09/09/19 08:03,"421 Forest St, San Francisco, CA 94016" +250806,Lightning Charging Cable,1,14.95,09/25/19 07:37,"303 Chestnut St, Los Angeles, CA 90001" +250806,Apple Airpods Headphones,1,150,09/25/19 07:37,"303 Chestnut St, Los Angeles, CA 90001" +250807,iPhone,1,700,09/05/19 12:21,"118 12th St, San Francisco, CA 94016" +250808,Lightning Charging Cable,1,14.95,09/21/19 19:32,"447 Adams St, Seattle, WA 98101" +250809,27in 4K Gaming Monitor,1,389.99,09/26/19 19:49,"168 7th St, Dallas, TX 75001" +250810,AAA Batteries (4-pack),2,2.99,09/29/19 23:48,"103 Maple St, San Francisco, CA 94016" +250811,USB-C Charging Cable,1,11.95,09/23/19 14:17,"386 Church St, Los Angeles, CA 90001" +250812,Wired Headphones,1,11.99,09/02/19 13:43,"138 Cherry St, New York City, NY 10001" +250813,Lightning Charging Cable,1,14.95,09/20/19 20:59,"525 Washington St, New York City, NY 10001" +250814,USB-C Charging Cable,1,11.95,09/21/19 23:38,"611 7th St, San Francisco, CA 94016" +250815,Bose SoundSport Headphones,1,99.99,09/27/19 13:16,"597 Maple St, New York City, NY 10001" +250816,Google Phone,1,600,09/27/19 08:10,"69 5th St, Boston, MA 02215" +250817,Lightning Charging Cable,1,14.95,09/04/19 13:44,"208 5th St, Dallas, TX 75001" +250818,Wired Headphones,1,11.99,09/02/19 21:16,"46 9th St, Portland, OR 97035" +250819,AA Batteries (4-pack),1,3.84,09/16/19 20:55,"454 10th St, Boston, MA 02215" +250820,Vareebadd Phone,1,400,09/07/19 19:42,"644 Lakeview St, San Francisco, CA 94016" +250820,USB-C Charging Cable,2,11.95,09/07/19 19:42,"644 Lakeview St, San Francisco, CA 94016" +250821,AAA Batteries (4-pack),1,2.99,09/03/19 22:29,"174 2nd St, Seattle, WA 98101" +250822,iPhone,1,700,09/17/19 09:16,"645 Lake St, Boston, MA 02215" +250823,ThinkPad Laptop,1,999.99,09/26/19 12:56,"987 Ridge St, New York City, NY 10001" +250824,AAA Batteries (4-pack),1,2.99,09/18/19 10:03,"272 Wilson St, Dallas, TX 75001" +250825,Macbook Pro Laptop,1,1700,09/01/19 20:13,"686 South St, Austin, TX 73301" +250826,Bose SoundSport Headphones,1,99.99,09/06/19 15:19,"247 10th St, Los Angeles, CA 90001" +250827,Lightning Charging Cable,1,14.95,09/25/19 20:46,"685 9th St, San Francisco, CA 94016" +250828,AA Batteries (4-pack),1,3.84,09/15/19 01:28,"594 Cedar St, Seattle, WA 98101" +250829,AAA Batteries (4-pack),1,2.99,09/22/19 08:52,"455 5th St, San Francisco, CA 94016" +250830,Apple Airpods Headphones,1,150,09/07/19 19:41,"323 Adams St, San Francisco, CA 94016" +250831,Wired Headphones,1,11.99,09/18/19 19:48,"793 North St, Los Angeles, CA 90001" +250832,AA Batteries (4-pack),1,3.84,09/23/19 12:24,"100 Madison St, Portland, OR 97035" +250833,AA Batteries (4-pack),1,3.84,09/02/19 10:13,"185 Lincoln St, Los Angeles, CA 90001" +250834,Wired Headphones,1,11.99,09/18/19 14:02,"486 13th St, Dallas, TX 75001" +250835,AAA Batteries (4-pack),6,2.99,09/29/19 08:55,"762 Chestnut St, Los Angeles, CA 90001" +250836,LG Washing Machine,1,600.0,09/20/19 21:46,"238 6th St, San Francisco, CA 94016" +250837,USB-C Charging Cable,1,11.95,09/16/19 11:13,"888 South St, Boston, MA 02215" +250838,Wired Headphones,1,11.99,09/13/19 10:37,"849 Dogwood St, Austin, TX 73301" +250839,Bose SoundSport Headphones,1,99.99,09/30/19 15:21,"984 Jefferson St, Los Angeles, CA 90001" +250840,Wired Headphones,1,11.99,09/22/19 11:33,"593 Wilson St, San Francisco, CA 94016" +250841,Bose SoundSport Headphones,1,99.99,09/24/19 11:05,"450 Cherry St, New York City, NY 10001" +250842,AA Batteries (4-pack),1,3.84,09/27/19 23:23,"247 Lakeview St, San Francisco, CA 94016" +250843,Lightning Charging Cable,1,14.95,09/15/19 14:33,"293 5th St, Portland, OR 97035" +250844,Apple Airpods Headphones,1,150,09/19/19 22:52,"340 4th St, New York City, NY 10001" +250845,USB-C Charging Cable,1,11.95,09/27/19 11:50,"341 11th St, Atlanta, GA 30301" +250846,20in Monitor,1,109.99,09/07/19 09:15,"12 Pine St, Boston, MA 02215" +250847,Macbook Pro Laptop,1,1700,09/24/19 23:08,"626 8th St, San Francisco, CA 94016" +250848,Lightning Charging Cable,1,14.95,09/02/19 19:09,"483 North St, Los Angeles, CA 90001" +250849,USB-C Charging Cable,1,11.95,09/16/19 11:32,"97 Jefferson St, San Francisco, CA 94016" +250850,Lightning Charging Cable,1,14.95,09/29/19 19:35,"515 Hickory St, San Francisco, CA 94016" +250851,USB-C Charging Cable,1,11.95,09/10/19 17:48,"272 River St, San Francisco, CA 94016" +250852,Flatscreen TV,1,300,09/25/19 21:54,"688 River St, Portland, OR 97035" +250853,AA Batteries (4-pack),1,3.84,09/11/19 16:07,"319 10th St, Portland, OR 97035" +250854,Bose SoundSport Headphones,1,99.99,09/10/19 22:57,"508 Lakeview St, Boston, MA 02215" +250855,Vareebadd Phone,1,400,09/02/19 13:28,"976 10th St, Seattle, WA 98101" +250856,AAA Batteries (4-pack),1,2.99,09/17/19 21:45,"920 9th St, Atlanta, GA 30301" +250857,Lightning Charging Cable,1,14.95,09/16/19 19:19,"470 10th St, Portland, OR 97035" +250858,USB-C Charging Cable,1,11.95,09/21/19 22:05,"997 North St, San Francisco, CA 94016" +250859,27in 4K Gaming Monitor,1,389.99,09/09/19 19:35,"565 Hickory St, San Francisco, CA 94016" +250860,AAA Batteries (4-pack),1,2.99,09/15/19 16:40,"604 1st St, Seattle, WA 98101" +250861,iPhone,1,700,09/29/19 22:10,"69 Washington St, Dallas, TX 75001" +250862,AA Batteries (4-pack),1,3.84,09/09/19 16:21,"424 Dogwood St, San Francisco, CA 94016" +250863,Bose SoundSport Headphones,1,99.99,09/28/19 21:41,"221 13th St, Seattle, WA 98101" +250864,iPhone,1,700,09/20/19 08:28,"7 Lincoln St, San Francisco, CA 94016" +250864,Lightning Charging Cable,1,14.95,09/20/19 08:28,"7 Lincoln St, San Francisco, CA 94016" +250864,Wired Headphones,1,11.99,09/20/19 08:28,"7 Lincoln St, San Francisco, CA 94016" +250865,USB-C Charging Cable,1,11.95,09/17/19 22:54,"854 1st St, Atlanta, GA 30301" +250866,27in FHD Monitor,1,149.99,09/04/19 15:23,"99 12th St, San Francisco, CA 94016" +250867,USB-C Charging Cable,1,11.95,09/04/19 19:54,"433 11th St, Boston, MA 02215" +250868,Lightning Charging Cable,1,14.95,09/17/19 00:13,"457 Wilson St, New York City, NY 10001" +250869,iPhone,1,700,09/17/19 12:41,"549 4th St, New York City, NY 10001" +250870,USB-C Charging Cable,1,11.95,09/01/19 15:04,"402 Highland St, Austin, TX 73301" +250871,ThinkPad Laptop,1,999.99,09/29/19 20:00,"947 Madison St, Dallas, TX 75001" +250872,AAA Batteries (4-pack),1,2.99,09/20/19 18:34,"35 Dogwood St, Boston, MA 02215" +250873,AAA Batteries (4-pack),2,2.99,09/15/19 00:06,"684 Lincoln St, San Francisco, CA 94016" +250874,27in 4K Gaming Monitor,1,389.99,09/17/19 09:21,"706 Highland St, New York City, NY 10001" +250875,Apple Airpods Headphones,1,150,09/30/19 21:18,"458 11th St, Seattle, WA 98101" +250876,Apple Airpods Headphones,1,150,09/04/19 05:21,"3 9th St, New York City, NY 10001" +250877,Bose SoundSport Headphones,1,99.99,09/05/19 22:38,"665 Highland St, Seattle, WA 98101" +250878,USB-C Charging Cable,1,11.95,09/07/19 12:42,"591 4th St, San Francisco, CA 94016" +250879,iPhone,1,700,09/23/19 12:33,"839 4th St, New York City, NY 10001" +250880,Wired Headphones,1,11.99,09/17/19 00:05,"241 Wilson St, San Francisco, CA 94016" +250881,Macbook Pro Laptop,1,1700,09/10/19 09:44,"713 Maple St, San Francisco, CA 94016" +250882,USB-C Charging Cable,1,11.95,09/05/19 22:46,"197 Church St, San Francisco, CA 94016" +250883,AA Batteries (4-pack),1,3.84,09/16/19 07:39,"302 Cedar St, Los Angeles, CA 90001" +250884,Bose SoundSport Headphones,1,99.99,09/01/19 09:40,"490 Meadow St, Los Angeles, CA 90001" +250885,Google Phone,1,600,09/12/19 18:43,"838 Chestnut St, San Francisco, CA 94016" +250886,Lightning Charging Cable,1,14.95,09/16/19 07:45,"661 Spruce St, Dallas, TX 75001" +250887,USB-C Charging Cable,1,11.95,09/25/19 19:46,"656 Maple St, Boston, MA 02215" +250888,20in Monitor,1,109.99,09/30/19 21:50,"360 14th St, New York City, NY 10001" +250889,ThinkPad Laptop,1,999.99,09/18/19 20:58,"884 Highland St, Boston, MA 02215" +250890,27in FHD Monitor,1,149.99,09/01/19 19:42,"359 Washington St, San Francisco, CA 94016" +250891,Vareebadd Phone,1,400,09/25/19 16:08,"496 1st St, Dallas, TX 75001" +250891,Wired Headphones,1,11.99,09/25/19 16:08,"496 1st St, Dallas, TX 75001" +250892,AAA Batteries (4-pack),1,2.99,09/13/19 09:29,"690 Dogwood St, San Francisco, CA 94016" +250893,Apple Airpods Headphones,1,150,09/04/19 14:12,"391 Jefferson St, Portland, OR 97035" +250894,AA Batteries (4-pack),1,3.84,09/09/19 10:17,"107 Highland St, San Francisco, CA 94016" +250895,Apple Airpods Headphones,1,150,09/30/19 00:56,"573 Maple St, Dallas, TX 75001" +250896,AA Batteries (4-pack),1,3.84,09/27/19 17:04,"354 Lakeview St, San Francisco, CA 94016" +250897,Lightning Charging Cable,1,14.95,09/16/19 09:51,"145 Dogwood St, San Francisco, CA 94016" +250898,iPhone,1,700,09/03/19 07:54,"654 Cedar St, Seattle, WA 98101" +250899,USB-C Charging Cable,1,11.95,09/11/19 07:47,"131 Cedar St, Portland, ME 04101" +250900,ThinkPad Laptop,1,999.99,09/06/19 18:31,"582 Lake St, Seattle, WA 98101" +250901,USB-C Charging Cable,1,11.95,09/07/19 08:49,"182 Cherry St, Boston, MA 02215" +250902,Apple Airpods Headphones,1,150,09/07/19 11:50,"33 1st St, Los Angeles, CA 90001" +250903,Lightning Charging Cable,1,14.95,09/24/19 05:08,"369 Willow St, New York City, NY 10001" +250904,AAA Batteries (4-pack),1,2.99,09/07/19 10:24,"25 1st St, Los Angeles, CA 90001" +250905,Apple Airpods Headphones,1,150,09/19/19 13:05,"937 10th St, Seattle, WA 98101" +250906,Apple Airpods Headphones,1,150,09/11/19 21:34,"302 Elm St, New York City, NY 10001" +250907,Google Phone,1,600,09/23/19 08:06,"573 14th St, Seattle, WA 98101" +250908,AAA Batteries (4-pack),1,2.99,09/09/19 21:20,"548 5th St, Los Angeles, CA 90001" +250909,Google Phone,1,600,09/28/19 16:31,"623 Center St, Los Angeles, CA 90001" +250910,Lightning Charging Cable,1,14.95,09/27/19 10:54,"626 8th St, Seattle, WA 98101" +250911,Wired Headphones,2,11.99,09/19/19 12:16,"106 Lake St, San Francisco, CA 94016" +250912,AA Batteries (4-pack),1,3.84,09/30/19 15:41,"103 5th St, San Francisco, CA 94016" +250913,iPhone,1,700,09/08/19 20:05,"906 12th St, Los Angeles, CA 90001" +250914,Wired Headphones,1,11.99,09/15/19 13:39,"122 12th St, New York City, NY 10001" +250915,Lightning Charging Cable,1,14.95,09/12/19 23:26,"70 Main St, Boston, MA 02215" +250916,USB-C Charging Cable,1,11.95,09/11/19 23:13,"64 8th St, Los Angeles, CA 90001" +250917,Apple Airpods Headphones,1,150,09/29/19 08:19,"606 Lakeview St, Los Angeles, CA 90001" +250918,Wired Headphones,1,11.99,09/19/19 22:05,"930 Washington St, Atlanta, GA 30301" +250919,AA Batteries (4-pack),1,3.84,09/19/19 15:54,"575 Center St, Seattle, WA 98101" +250920,Lightning Charging Cable,1,14.95,09/04/19 19:35,"296 5th St, Portland, OR 97035" +250921,AA Batteries (4-pack),1,3.84,09/08/19 13:58,"821 Sunset St, Dallas, TX 75001" +250921,AAA Batteries (4-pack),2,2.99,09/08/19 13:58,"821 Sunset St, Dallas, TX 75001" +250922,Wired Headphones,1,11.99,09/24/19 17:35,"883 Pine St, Portland, OR 97035" +250923,AAA Batteries (4-pack),4,2.99,09/26/19 03:44,"886 Park St, Atlanta, GA 30301" +250924,USB-C Charging Cable,1,11.95,09/20/19 08:07,"694 Highland St, Atlanta, GA 30301" +250925,Apple Airpods Headphones,1,150,09/30/19 20:25,"832 Chestnut St, Atlanta, GA 30301" +250926,AA Batteries (4-pack),1,3.84,09/23/19 04:46,"148 8th St, Portland, OR 97035" +250927,Macbook Pro Laptop,1,1700,09/30/19 10:49,"836 Johnson St, Boston, MA 02215" +250928,AA Batteries (4-pack),1,3.84,09/06/19 09:08,"916 Dogwood St, San Francisco, CA 94016" +250929,Flatscreen TV,1,300,09/02/19 23:06,"863 8th St, Los Angeles, CA 90001" +250930,Lightning Charging Cable,1,14.95,09/13/19 15:56,"797 Dogwood St, San Francisco, CA 94016" +250931,USB-C Charging Cable,1,11.95,09/26/19 20:33,"262 Cherry St, San Francisco, CA 94016" +250932,Macbook Pro Laptop,1,1700,09/08/19 17:21,"852 12th St, San Francisco, CA 94016" +250933,AA Batteries (4-pack),1,3.84,09/05/19 13:35,"210 Dogwood St, Seattle, WA 98101" +250934,AAA Batteries (4-pack),1,2.99,09/07/19 05:40,"242 6th St, Austin, TX 73301" +250935,USB-C Charging Cable,1,11.95,09/08/19 13:57,"967 13th St, Dallas, TX 75001" +250936,LG Dryer,1,600.0,09/05/19 13:48,"486 Johnson St, San Francisco, CA 94016" +250937,USB-C Charging Cable,1,11.95,09/11/19 09:53,"923 Cedar St, San Francisco, CA 94016" +250938,Lightning Charging Cable,1,14.95,09/27/19 23:21,"775 6th St, San Francisco, CA 94016" +250939,Bose SoundSport Headphones,1,99.99,09/25/19 18:27,"881 Pine St, Los Angeles, CA 90001" +250940,Lightning Charging Cable,1,14.95,09/30/19 17:26,"855 12th St, New York City, NY 10001" +250941,Bose SoundSport Headphones,1,99.99,09/08/19 09:21,"428 Church St, San Francisco, CA 94016" +250942,Wired Headphones,1,11.99,09/13/19 03:48,"71 River St, New York City, NY 10001" +250943,Macbook Pro Laptop,1,1700,09/21/19 19:26,"526 River St, New York City, NY 10001" +250944,Lightning Charging Cable,1,14.95,09/04/19 16:08,"659 Highland St, New York City, NY 10001" +250945,AA Batteries (4-pack),2,3.84,09/24/19 15:56,"771 Center St, Boston, MA 02215" +250946,34in Ultrawide Monitor,1,379.99,09/27/19 16:09,"567 Cedar St, Boston, MA 02215" +250947,Wired Headphones,1,11.99,09/18/19 19:02,"550 Cedar St, San Francisco, CA 94016" +250948,20in Monitor,1,109.99,09/22/19 00:09,"540 1st St, Atlanta, GA 30301" +250949,AA Batteries (4-pack),1,3.84,09/25/19 19:17,"903 7th St, New York City, NY 10001" +250950,LG Dryer,1,600.0,09/12/19 01:00,"464 Church St, San Francisco, CA 94016" +250951,Lightning Charging Cable,1,14.95,09/30/19 02:00,"289 Lincoln St, Austin, TX 73301" +250952,USB-C Charging Cable,1,11.95,09/22/19 11:46,"386 Maple St, Seattle, WA 98101" +250953,27in FHD Monitor,1,149.99,09/28/19 14:49,"413 1st St, San Francisco, CA 94016" +250954,20in Monitor,1,109.99,09/23/19 13:04,"881 Ridge St, Los Angeles, CA 90001" +250955,USB-C Charging Cable,1,11.95,09/14/19 07:47,"642 2nd St, Boston, MA 02215" +250956,AAA Batteries (4-pack),1,2.99,09/04/19 18:11,"810 Lakeview St, Dallas, TX 75001" +250957,Wired Headphones,1,11.99,09/30/19 14:09,"626 Ridge St, Dallas, TX 75001" +250958,Wired Headphones,1,11.99,09/08/19 20:07,"116 Dogwood St, Boston, MA 02215" +250959,Apple Airpods Headphones,1,150,09/29/19 16:53,"256 Pine St, San Francisco, CA 94016" +250960,20in Monitor,1,109.99,09/28/19 11:25,"216 Walnut St, Seattle, WA 98101" +250961,AAA Batteries (4-pack),1,2.99,09/21/19 14:57,"514 Cedar St, San Francisco, CA 94016" +250962,Apple Airpods Headphones,1,150,09/25/19 13:01,"234 Adams St, San Francisco, CA 94016" +250963,AAA Batteries (4-pack),1,2.99,09/18/19 18:37,"629 Ridge St, Seattle, WA 98101" +250964,AA Batteries (4-pack),1,3.84,09/27/19 22:39,"757 1st St, San Francisco, CA 94016" +250965,Bose SoundSport Headphones,1,99.99,09/30/19 15:16,"703 Meadow St, San Francisco, CA 94016" +250966,ThinkPad Laptop,1,999.99,09/10/19 10:22,"519 14th St, San Francisco, CA 94016" +250967,AA Batteries (4-pack),3,3.84,09/29/19 09:02,"230 Forest St, San Francisco, CA 94016" +250968,USB-C Charging Cable,1,11.95,09/23/19 13:31,"546 Spruce St, San Francisco, CA 94016" +250969,Bose SoundSport Headphones,1,99.99,09/29/19 20:58,"685 River St, New York City, NY 10001" +250970,AA Batteries (4-pack),1,3.84,09/16/19 06:48,"426 5th St, San Francisco, CA 94016" +250971,Lightning Charging Cable,1,14.95,09/09/19 12:32,"700 Cedar St, New York City, NY 10001" +250972,AA Batteries (4-pack),1,3.84,09/19/19 22:35,"117 Ridge St, New York City, NY 10001" +250973,Bose SoundSport Headphones,1,99.99,09/03/19 22:34,"396 Main St, Los Angeles, CA 90001" +250974,Bose SoundSport Headphones,1,99.99,09/11/19 22:13,"738 Highland St, Los Angeles, CA 90001" +250975,AAA Batteries (4-pack),1,2.99,09/18/19 18:16,"613 12th St, Seattle, WA 98101" +250976,USB-C Charging Cable,2,11.95,09/25/19 11:06,"712 9th St, Portland, OR 97035" +250977,Wired Headphones,1,11.99,09/10/19 17:41,"36 Forest St, New York City, NY 10001" +250978,USB-C Charging Cable,1,11.95,09/26/19 19:55,"19 4th St, San Francisco, CA 94016" +250979,AAA Batteries (4-pack),2,2.99,09/27/19 12:20,"280 Lakeview St, San Francisco, CA 94016" +250980,27in FHD Monitor,1,149.99,09/25/19 09:03,"209 Willow St, Portland, OR 97035" +250981,iPhone,1,700,09/24/19 12:21,"968 Johnson St, San Francisco, CA 94016" +250982,Flatscreen TV,1,300,09/22/19 20:47,"958 Cherry St, Boston, MA 02215" +250983,AA Batteries (4-pack),1,3.84,09/25/19 14:34,"499 Washington St, Seattle, WA 98101" +250984,34in Ultrawide Monitor,1,379.99,09/19/19 10:42,"544 Lake St, San Francisco, CA 94016" +250985,AAA Batteries (4-pack),1,2.99,09/06/19 19:27,"304 5th St, San Francisco, CA 94016" +250986,USB-C Charging Cable,1,11.95,09/26/19 15:35,"899 Washington St, Los Angeles, CA 90001" +250987,AAA Batteries (4-pack),1,2.99,09/01/19 22:45,"767 Adams St, San Francisco, CA 94016" +250988,AAA Batteries (4-pack),2,2.99,09/26/19 16:33,"65 7th St, Austin, TX 73301" +250989,AA Batteries (4-pack),1,3.84,09/18/19 08:31,"869 6th St, New York City, NY 10001" +250990,Wired Headphones,1,11.99,09/11/19 10:21,"83 River St, Dallas, TX 75001" +250991,27in FHD Monitor,1,149.99,09/10/19 08:27,"979 Jefferson St, San Francisco, CA 94016" +250992,AAA Batteries (4-pack),5,2.99,09/20/19 09:59,"851 4th St, San Francisco, CA 94016" +250993,Apple Airpods Headphones,1,150,09/19/19 09:05,"544 Spruce St, San Francisco, CA 94016" +250994,Apple Airpods Headphones,1,150,09/03/19 18:15,"981 4th St, Dallas, TX 75001" +250995,AAA Batteries (4-pack),1,2.99,09/02/19 19:50,"919 Cedar St, Los Angeles, CA 90001" +250996,AA Batteries (4-pack),1,3.84,09/11/19 14:13,"439 Adams St, Seattle, WA 98101" +250997,34in Ultrawide Monitor,1,379.99,09/08/19 14:05,"264 Lincoln St, Austin, TX 73301" +250997,AA Batteries (4-pack),1,3.84,09/08/19 14:05,"264 Lincoln St, Austin, TX 73301" +250998,AAA Batteries (4-pack),1,2.99,09/02/19 15:48,"869 Meadow St, Atlanta, GA 30301" +250999,AAA Batteries (4-pack),1,2.99,09/02/19 12:18,"353 Spruce St, New York City, NY 10001" +251000,USB-C Charging Cable,1,11.95,09/16/19 10:48,"834 Walnut St, Atlanta, GA 30301" +251001,Bose SoundSport Headphones,1,99.99,09/26/19 10:58,"713 Cherry St, Dallas, TX 75001" +251002,Wired Headphones,1,11.99,09/28/19 23:17,"172 Elm St, Austin, TX 73301" +251003,Lightning Charging Cable,1,14.95,09/09/19 22:33,"105 Elm St, New York City, NY 10001" +251004,Macbook Pro Laptop,1,1700,09/26/19 11:37,"449 10th St, New York City, NY 10001" +251005,AAA Batteries (4-pack),3,2.99,09/14/19 21:50,"908 Spruce St, Los Angeles, CA 90001" +251006,Lightning Charging Cable,1,14.95,09/11/19 20:46,"940 South St, Seattle, WA 98101" +251007,Apple Airpods Headphones,1,150,09/21/19 13:26,"290 Highland St, San Francisco, CA 94016" +251007,Apple Airpods Headphones,1,150,09/21/19 13:26,"290 Highland St, San Francisco, CA 94016" +251008,Wired Headphones,2,11.99,09/17/19 14:07,"531 Church St, San Francisco, CA 94016" +251009,USB-C Charging Cable,1,11.95,09/21/19 16:32,"564 River St, Portland, OR 97035" +251010,AA Batteries (4-pack),1,3.84,09/26/19 17:41,"37 Chestnut St, Boston, MA 02215" +251011,Lightning Charging Cable,1,14.95,09/29/19 18:58,"743 Park St, San Francisco, CA 94016" +251012,AAA Batteries (4-pack),2,2.99,09/11/19 13:52,"234 Maple St, Boston, MA 02215" +251013,AAA Batteries (4-pack),3,2.99,09/19/19 11:45,"834 8th St, Los Angeles, CA 90001" +251014,AAA Batteries (4-pack),1,2.99,09/28/19 13:17,"5 14th St, Atlanta, GA 30301" +251015,Bose SoundSport Headphones,1,99.99,09/13/19 13:32,"262 Church St, New York City, NY 10001" +251016,AA Batteries (4-pack),1,3.84,09/25/19 12:20,"32 12th St, Los Angeles, CA 90001" +251017,Lightning Charging Cable,1,14.95,09/25/19 17:03,"234 Chestnut St, Seattle, WA 98101" +251018,iPhone,1,700,09/19/19 21:12,"113 Adams St, Dallas, TX 75001" +251019,Apple Airpods Headphones,1,150,09/13/19 11:53,"446 9th St, Atlanta, GA 30301" +251020,Bose SoundSport Headphones,1,99.99,09/15/19 12:58,"193 Center St, New York City, NY 10001" +251021,Wired Headphones,1,11.99,09/27/19 11:29,"255 Chestnut St, San Francisco, CA 94016" +251022,iPhone,1,700,09/28/19 18:14,"807 Chestnut St, New York City, NY 10001" +251023,Lightning Charging Cable,1,14.95,09/06/19 13:43,"295 10th St, Austin, TX 73301" +251024,Macbook Pro Laptop,1,1700,09/24/19 10:30,"542 12th St, Los Angeles, CA 90001" +251025,Flatscreen TV,1,300,09/14/19 14:32,"605 Walnut St, Los Angeles, CA 90001" +251026,Lightning Charging Cable,1,14.95,09/03/19 20:28,"493 13th St, San Francisco, CA 94016" +251027,Google Phone,1,600,09/25/19 16:19,"321 4th St, San Francisco, CA 94016" +251028,Apple Airpods Headphones,1,150,09/16/19 18:14,"105 Cedar St, Boston, MA 02215" +251029,Wired Headphones,1,11.99,09/26/19 16:35,"875 Wilson St, Los Angeles, CA 90001" +251030,USB-C Charging Cable,1,11.95,09/06/19 15:26,"164 Church St, New York City, NY 10001" +251031,Apple Airpods Headphones,1,150,09/22/19 19:21,"634 Jackson St, San Francisco, CA 94016" +251032,AA Batteries (4-pack),1,3.84,09/12/19 18:21,"246 South St, New York City, NY 10001" +251033,AAA Batteries (4-pack),1,2.99,09/10/19 11:20,"737 Hill St, San Francisco, CA 94016" +251034,AAA Batteries (4-pack),1,2.99,09/11/19 11:38,"15 Wilson St, San Francisco, CA 94016" +251035,Apple Airpods Headphones,1,150,09/02/19 20:41,"331 4th St, Atlanta, GA 30301" +251036,AAA Batteries (4-pack),3,2.99,09/01/19 09:43,"722 Madison St, San Francisco, CA 94016" +251037,Apple Airpods Headphones,1,150,09/17/19 18:09,"680 West St, Los Angeles, CA 90001" +251038,Wired Headphones,1,11.99,09/10/19 02:11,"148 Spruce St, Atlanta, GA 30301" +251039,Wired Headphones,1,11.99,09/22/19 10:34,"698 2nd St, Boston, MA 02215" +251040,Bose SoundSport Headphones,1,99.99,09/04/19 22:36,"929 Lake St, New York City, NY 10001" +251041,iPhone,1,700,09/20/19 17:26,"660 South St, Dallas, TX 75001" +251042,Wired Headphones,2,11.99,09/23/19 12:08,"526 North St, Portland, ME 04101" +251043,Vareebadd Phone,1,400,09/02/19 18:14,"163 Lake St, San Francisco, CA 94016" +251043,USB-C Charging Cable,1,11.95,09/02/19 18:14,"163 Lake St, San Francisco, CA 94016" +251044,AAA Batteries (4-pack),1,2.99,09/13/19 18:39,"162 Washington St, Portland, OR 97035" +251045,27in 4K Gaming Monitor,1,389.99,09/24/19 14:22,"715 Lake St, Seattle, WA 98101" +251046,AAA Batteries (4-pack),2,2.99,09/27/19 05:43,"675 Cherry St, Dallas, TX 75001" +251047,Macbook Pro Laptop,1,1700,09/04/19 13:48,"552 Lakeview St, Portland, OR 97035" +251048,USB-C Charging Cable,1,11.95,09/13/19 18:50,"916 Washington St, Seattle, WA 98101" +251048,Wired Headphones,1,11.99,09/13/19 18:50,"916 Washington St, Seattle, WA 98101" +251049,27in 4K Gaming Monitor,1,389.99,09/15/19 10:00,"455 Ridge St, New York City, NY 10001" +251050,27in FHD Monitor,1,149.99,09/13/19 09:47,"14 Forest St, Austin, TX 73301" +251051,ThinkPad Laptop,1,999.99,09/15/19 22:14,"564 Johnson St, Los Angeles, CA 90001" +251052,Apple Airpods Headphones,1,150,09/21/19 19:49,"685 Hickory St, Dallas, TX 75001" +251053,AAA Batteries (4-pack),1,2.99,09/09/19 20:38,"829 Maple St, San Francisco, CA 94016" +251054,Lightning Charging Cable,1,14.95,09/13/19 11:22,"853 6th St, Boston, MA 02215" +251055,Apple Airpods Headphones,1,150,09/08/19 09:33,"541 Johnson St, New York City, NY 10001" +251056,USB-C Charging Cable,1,11.95,09/04/19 13:47,"967 Johnson St, San Francisco, CA 94016" +251057,iPhone,1,700,09/05/19 20:40,"858 Ridge St, Boston, MA 02215" +251058,Google Phone,1,600,09/02/19 11:54,"69 Cherry St, Seattle, WA 98101" +251059,Bose SoundSport Headphones,1,99.99,09/13/19 07:14,"18 Forest St, New York City, NY 10001" +251060,Google Phone,1,600,09/14/19 09:53,"315 Walnut St, Austin, TX 73301" +251061,Apple Airpods Headphones,1,150,09/21/19 12:01,"307 Hickory St, New York City, NY 10001" +251062,27in FHD Monitor,1,149.99,09/11/19 22:19,"600 12th St, Boston, MA 02215" +251063,Wired Headphones,1,11.99,09/20/19 18:30,"955 Main St, San Francisco, CA 94016" +251064,USB-C Charging Cable,1,11.95,09/20/19 19:56,"360 Adams St, Austin, TX 73301" +251065,Bose SoundSport Headphones,1,99.99,09/02/19 20:17,"442 9th St, San Francisco, CA 94016" +251066,27in FHD Monitor,1,149.99,09/01/19 11:48,"198 Ridge St, San Francisco, CA 94016" +251067,USB-C Charging Cable,1,11.95,09/28/19 19:23,"781 Park St, Los Angeles, CA 90001" +251068,Lightning Charging Cable,1,14.95,09/25/19 18:14,"219 Elm St, San Francisco, CA 94016" +251069,AA Batteries (4-pack),1,3.84,09/20/19 00:30,"905 North St, Seattle, WA 98101" +251070,Lightning Charging Cable,1,14.95,09/25/19 07:25,"283 Lakeview St, Atlanta, GA 30301" +251071,Bose SoundSport Headphones,1,99.99,09/01/19 13:33,"824 8th St, Boston, MA 02215" +251072,Apple Airpods Headphones,1,150,09/11/19 08:41,"787 Cherry St, Atlanta, GA 30301" +251073,AAA Batteries (4-pack),1,2.99,09/20/19 10:31,"979 North St, Atlanta, GA 30301" +251074,AAA Batteries (4-pack),1,2.99,09/12/19 20:16,"456 Lake St, San Francisco, CA 94016" +251075,Lightning Charging Cable,1,14.95,09/05/19 10:36,"638 Washington St, San Francisco, CA 94016" +251076,iPhone,1,700,09/25/19 11:42,"375 Lake St, Los Angeles, CA 90001" +251076,Lightning Charging Cable,1,14.95,09/25/19 11:42,"375 Lake St, Los Angeles, CA 90001" +251077,Flatscreen TV,1,300,09/16/19 15:21,"488 Walnut St, Boston, MA 02215" +251078,Apple Airpods Headphones,1,150,09/23/19 14:22,"143 Madison St, Los Angeles, CA 90001" +251079,27in FHD Monitor,1,149.99,09/08/19 18:34,"781 Madison St, San Francisco, CA 94016" +251080,34in Ultrawide Monitor,1,379.99,09/13/19 02:07,"366 5th St, Atlanta, GA 30301" +251081,Lightning Charging Cable,1,14.95,09/12/19 21:07,"515 Washington St, San Francisco, CA 94016" +251082,34in Ultrawide Monitor,1,379.99,09/04/19 22:03,"310 South St, Seattle, WA 98101" +251083,Bose SoundSport Headphones,1,99.99,09/09/19 23:45,"336 West St, Seattle, WA 98101" +251084,27in FHD Monitor,1,149.99,09/20/19 09:51,"908 10th St, San Francisco, CA 94016" +251085,Lightning Charging Cable,1,14.95,09/06/19 19:11,"508 West St, San Francisco, CA 94016" +251086,Lightning Charging Cable,1,14.95,09/10/19 18:24,"930 Walnut St, Los Angeles, CA 90001" +251087,27in FHD Monitor,1,149.99,09/22/19 18:56,"799 Maple St, San Francisco, CA 94016" +251088,USB-C Charging Cable,1,11.95,09/12/19 12:24,"821 13th St, New York City, NY 10001" +251089,Vareebadd Phone,1,400,09/08/19 23:44,"746 13th St, San Francisco, CA 94016" +251090,Bose SoundSport Headphones,1,99.99,09/04/19 17:54,"594 Johnson St, Seattle, WA 98101" +251091,Wired Headphones,1,11.99,09/01/19 22:00,"467 South St, Portland, OR 97035" +251092,AAA Batteries (4-pack),1,2.99,09/21/19 22:57,"822 South St, Los Angeles, CA 90001" +251093,Wired Headphones,1,11.99,09/14/19 14:22,"798 Dogwood St, Los Angeles, CA 90001" +251094,Lightning Charging Cable,1,14.95,09/25/19 19:18,"517 10th St, Atlanta, GA 30301" +251094,AAA Batteries (4-pack),1,2.99,09/25/19 19:18,"517 10th St, Atlanta, GA 30301" +251095,Apple Airpods Headphones,1,150,09/14/19 10:17,"468 Madison St, Dallas, TX 75001" +251096,AAA Batteries (4-pack),3,2.99,09/16/19 12:58,"408 Cedar St, San Francisco, CA 94016" +251097,AAA Batteries (4-pack),3,2.99,09/02/19 10:42,"855 Johnson St, San Francisco, CA 94016" +251098,Wired Headphones,1,11.99,09/02/19 18:29,"481 Center St, San Francisco, CA 94016" +251099,AAA Batteries (4-pack),4,2.99,09/10/19 03:08,"297 Chestnut St, Boston, MA 02215" +251100,Google Phone,1,600,09/24/19 11:37,"278 5th St, San Francisco, CA 94016" +251100,Wired Headphones,1,11.99,09/24/19 11:37,"278 5th St, San Francisco, CA 94016" +251101,AAA Batteries (4-pack),2,2.99,09/11/19 16:00,"649 Dogwood St, San Francisco, CA 94016" +251102,Apple Airpods Headphones,1,150,09/22/19 17:49,"766 Main St, San Francisco, CA 94016" +251103,AAA Batteries (4-pack),2,2.99,09/29/19 15:38,"459 14th St, Atlanta, GA 30301" +251104,AAA Batteries (4-pack),1,2.99,09/03/19 11:17,"459 Park St, San Francisco, CA 94016" +251105,Wired Headphones,1,11.99,09/29/19 11:49,"298 Cherry St, Los Angeles, CA 90001" +251106,Lightning Charging Cable,1,14.95,09/26/19 16:46,"813 1st St, New York City, NY 10001" +251107,Wired Headphones,1,11.99,09/05/19 12:51,"688 Walnut St, New York City, NY 10001" +251108,Lightning Charging Cable,1,14.95,09/03/19 03:05,"594 Walnut St, Seattle, WA 98101" +251109,Wired Headphones,1,11.99,09/23/19 16:40,"906 Lake St, Dallas, TX 75001" +251110,Google Phone,1,600,09/04/19 13:07,"432 4th St, New York City, NY 10001" +251110,Bose SoundSport Headphones,1,99.99,09/04/19 13:07,"432 4th St, New York City, NY 10001" +251111,AA Batteries (4-pack),2,3.84,09/25/19 08:19,"822 14th St, San Francisco, CA 94016" +251112,Wired Headphones,1,11.99,09/20/19 14:27,"903 Highland St, San Francisco, CA 94016" +251113,iPhone,1,700,09/21/19 22:37,"581 Jefferson St, San Francisco, CA 94016" +251114,USB-C Charging Cable,1,11.95,09/12/19 11:47,"151 Lincoln St, San Francisco, CA 94016" +251115,Wired Headphones,1,11.99,09/05/19 13:43,"650 11th St, San Francisco, CA 94016" +251116,ThinkPad Laptop,1,999.99,09/26/19 19:51,"606 Cedar St, Portland, ME 04101" +251117,Flatscreen TV,1,300,09/28/19 17:59,"269 Meadow St, Seattle, WA 98101" +251118,AA Batteries (4-pack),2,3.84,09/13/19 23:09,"13 2nd St, Atlanta, GA 30301" +251119,34in Ultrawide Monitor,1,379.99,09/29/19 11:34,"639 Dogwood St, Los Angeles, CA 90001" +251120,Wired Headphones,1,11.99,09/10/19 19:33,"2 Forest St, Boston, MA 02215" +251121,Lightning Charging Cable,1,14.95,09/08/19 12:30,"338 Johnson St, New York City, NY 10001" +251122,AA Batteries (4-pack),1,3.84,09/11/19 10:09,"148 5th St, San Francisco, CA 94016" +251123,Apple Airpods Headphones,1,150,09/19/19 08:49,"404 8th St, San Francisco, CA 94016" +251124,Google Phone,1,600,09/14/19 21:01,"818 Washington St, New York City, NY 10001" +251125,AAA Batteries (4-pack),1,2.99,09/18/19 19:30,"419 13th St, Atlanta, GA 30301" +251126,USB-C Charging Cable,1,11.95,09/15/19 09:40,"38 Spruce St, San Francisco, CA 94016" +251127,USB-C Charging Cable,1,11.95,09/07/19 22:57,"987 8th St, Dallas, TX 75001" +251128,USB-C Charging Cable,1,11.95,09/02/19 17:43,"940 Spruce St, Los Angeles, CA 90001" +251129,AAA Batteries (4-pack),1,2.99,09/22/19 11:10,"628 Cedar St, San Francisco, CA 94016" +251130,iPhone,1,700,09/02/19 10:09,"670 11th St, Dallas, TX 75001" +251131,Apple Airpods Headphones,1,150,09/28/19 15:47,"397 Washington St, Seattle, WA 98101" +251132,Bose SoundSport Headphones,1,99.99,09/21/19 21:02,"211 4th St, Seattle, WA 98101" +251133,ThinkPad Laptop,1,999.99,09/26/19 01:53,"220 Washington St, Dallas, TX 75001" +251134,Lightning Charging Cable,1,14.95,09/09/19 09:46,"731 Maple St, Austin, TX 73301" +251135,USB-C Charging Cable,1,11.95,09/06/19 18:59,"274 Willow St, Boston, MA 02215" +251136,ThinkPad Laptop,1,999.99,09/28/19 19:20,"965 10th St, New York City, NY 10001" +251137,Bose SoundSport Headphones,1,99.99,09/11/19 11:17,"781 Cherry St, New York City, NY 10001" +251138,AA Batteries (4-pack),2,3.84,09/06/19 16:22,"818 6th St, Los Angeles, CA 90001" +251139,34in Ultrawide Monitor,1,379.99,09/28/19 20:41,"17 Jackson St, Dallas, TX 75001" +251140,27in FHD Monitor,1,149.99,09/22/19 19:03,"529 Cherry St, Portland, OR 97035" +251141,34in Ultrawide Monitor,1,379.99,09/17/19 10:06,"360 Lake St, Dallas, TX 75001" +251142,27in 4K Gaming Monitor,1,389.99,09/04/19 12:54,"237 Adams St, Los Angeles, CA 90001" +251143,Apple Airpods Headphones,1,150,09/27/19 11:58,"584 11th St, Boston, MA 02215" +251144,USB-C Charging Cable,1,11.95,09/14/19 18:47,"276 South St, Los Angeles, CA 90001" +251145,Bose SoundSport Headphones,1,99.99,09/25/19 22:54,"82 7th St, Los Angeles, CA 90001" +251146,34in Ultrawide Monitor,1,379.99,09/09/19 20:19,"858 Chestnut St, Boston, MA 02215" +,,,,, +251147,USB-C Charging Cable,1,11.95,09/30/19 21:52,"498 Willow St, San Francisco, CA 94016" +251148,20in Monitor,1,109.99,09/20/19 17:11,"874 Highland St, Atlanta, GA 30301" +251149,AAA Batteries (4-pack),1,2.99,09/02/19 19:13,"372 Washington St, New York City, NY 10001" +251150,Macbook Pro Laptop,1,1700,09/16/19 23:10,"415 9th St, Los Angeles, CA 90001" +251151,Google Phone,1,600,09/07/19 09:38,"974 Cedar St, San Francisco, CA 94016" +251152,Bose SoundSport Headphones,1,99.99,09/09/19 12:35,"448 Forest St, San Francisco, CA 94016" +251153,27in 4K Gaming Monitor,1,389.99,09/18/19 14:18,"904 6th St, Dallas, TX 75001" +251154,Apple Airpods Headphones,1,150,09/29/19 13:18,"586 West St, San Francisco, CA 94016" +251155,Apple Airpods Headphones,1,150,09/07/19 13:16,"213 Johnson St, Los Angeles, CA 90001" +251156,AAA Batteries (4-pack),2,2.99,09/26/19 22:43,"252 Center St, Los Angeles, CA 90001" +251157,USB-C Charging Cable,1,11.95,09/18/19 10:56,"793 Lakeview St, Austin, TX 73301" +251158,AA Batteries (4-pack),2,3.84,09/26/19 19:13,"1 South St, Los Angeles, CA 90001" +251159,AAA Batteries (4-pack),1,2.99,09/01/19 16:31,"134 South St, Boston, MA 02215" +251160,Bose SoundSport Headphones,1,99.99,09/25/19 19:50,"529 Wilson St, Boston, MA 02215" +251161,Google Phone,1,600,09/17/19 17:13,"616 West St, Atlanta, GA 30301" +251162,USB-C Charging Cable,1,11.95,09/07/19 11:57,"818 North St, Los Angeles, CA 90001" +251163,Apple Airpods Headphones,1,150,09/23/19 22:49,"140 Wilson St, Los Angeles, CA 90001" +251164,AAA Batteries (4-pack),1,2.99,09/11/19 19:47,"613 14th St, San Francisco, CA 94016" +251165,Wired Headphones,1,11.99,09/06/19 12:21,"930 Elm St, San Francisco, CA 94016" +251166,Apple Airpods Headphones,1,150,09/13/19 10:46,"831 8th St, Portland, OR 97035" +251167,iPhone,1,700,09/18/19 17:13,"507 Adams St, Dallas, TX 75001" +251167,Lightning Charging Cable,1,14.95,09/18/19 17:13,"507 Adams St, Dallas, TX 75001" +251168,Wired Headphones,1,11.99,09/08/19 00:37,"854 11th St, Seattle, WA 98101" +251169,27in FHD Monitor,1,149.99,09/30/19 15:51,"505 Forest St, San Francisco, CA 94016" +251170,ThinkPad Laptop,1,999.99,09/16/19 19:16,"849 Spruce St, Los Angeles, CA 90001" +251171,Google Phone,1,600,09/20/19 20:32,"910 North St, Atlanta, GA 30301" +251171,USB-C Charging Cable,1,11.95,09/20/19 20:32,"910 North St, Atlanta, GA 30301" +251172,Apple Airpods Headphones,1,150,09/01/19 12:33,"243 Adams St, Los Angeles, CA 90001" +251173,USB-C Charging Cable,1,11.95,09/25/19 12:54,"691 River St, San Francisco, CA 94016" +251174,AAA Batteries (4-pack),2,2.99,09/05/19 23:28,"682 Hill St, Atlanta, GA 30301" +251175,Apple Airpods Headphones,1,150,09/09/19 12:03,"704 10th St, Atlanta, GA 30301" +251176,27in 4K Gaming Monitor,1,389.99,09/09/19 21:26,"735 5th St, New York City, NY 10001" +251177,AA Batteries (4-pack),1,3.84,09/16/19 11:35,"277 14th St, San Francisco, CA 94016" +251178,Wired Headphones,1,11.99,09/22/19 12:27,"15 Washington St, Dallas, TX 75001" +251179,Apple Airpods Headphones,1,150,09/06/19 18:55,"440 14th St, Austin, TX 73301" +251180,Flatscreen TV,1,300,09/09/19 19:52,"475 13th St, Austin, TX 73301" +251181,AAA Batteries (4-pack),1,2.99,09/04/19 01:37,"285 13th St, Los Angeles, CA 90001" +251182,AA Batteries (4-pack),1,3.84,09/18/19 21:25,"980 Center St, Portland, OR 97035" +251183,27in 4K Gaming Monitor,1,389.99,09/23/19 23:36,"273 11th St, New York City, NY 10001" +251184,Lightning Charging Cable,1,14.95,09/11/19 12:41,"998 5th St, San Francisco, CA 94016" +251185,USB-C Charging Cable,1,11.95,09/11/19 19:23,"418 11th St, San Francisco, CA 94016" +251186,Lightning Charging Cable,1,14.95,09/24/19 16:08,"885 10th St, San Francisco, CA 94016" +251187,34in Ultrawide Monitor,1,379.99,09/02/19 18:22,"760 Madison St, Los Angeles, CA 90001" +251188,iPhone,1,700,09/08/19 12:23,"165 Ridge St, Austin, TX 73301" +251189,iPhone,1,700,09/07/19 12:48,"16 Lakeview St, Los Angeles, CA 90001" +251190,iPhone,1,700,09/23/19 20:55,"576 Church St, Dallas, TX 75001" +251190,Lightning Charging Cable,1,14.95,09/23/19 20:55,"576 Church St, Dallas, TX 75001" +251190,Wired Headphones,1,11.99,09/23/19 20:55,"576 Church St, Dallas, TX 75001" +251191,AA Batteries (4-pack),1,3.84,09/21/19 19:45,"622 13th St, Atlanta, GA 30301" +251192,Wired Headphones,1,11.99,09/18/19 21:18,"424 12th St, San Francisco, CA 94016" +251193,LG Dryer,1,600.0,09/28/19 16:56,"240 6th St, New York City, NY 10001" +251194,20in Monitor,1,109.99,09/06/19 22:33,"839 West St, San Francisco, CA 94016" +251195,Bose SoundSport Headphones,1,99.99,09/19/19 20:37,"641 11th St, Seattle, WA 98101" +251196,Bose SoundSport Headphones,1,99.99,09/11/19 15:42,"905 Main St, Los Angeles, CA 90001" +251197,AA Batteries (4-pack),2,3.84,09/24/19 22:28,"351 Walnut St, San Francisco, CA 94016" +251198,AAA Batteries (4-pack),1,2.99,09/27/19 22:56,"659 2nd St, New York City, NY 10001" +251199,Google Phone,1,600,09/21/19 10:38,"60 9th St, Los Angeles, CA 90001" +251199,USB-C Charging Cable,1,11.95,09/21/19 10:38,"60 9th St, Los Angeles, CA 90001" +251200,USB-C Charging Cable,1,11.95,09/09/19 12:10,"929 Main St, San Francisco, CA 94016" +251201,USB-C Charging Cable,1,11.95,09/24/19 08:04,"254 Hill St, Boston, MA 02215" +251202,ThinkPad Laptop,1,999.99,09/11/19 19:15,"864 8th St, Los Angeles, CA 90001" +251203,ThinkPad Laptop,1,999.99,09/16/19 12:47,"238 Pine St, Boston, MA 02215" +251204,AAA Batteries (4-pack),1,2.99,09/22/19 16:00,"869 8th St, New York City, NY 10001" +251205,Apple Airpods Headphones,1,150,09/15/19 19:39,"345 West St, Austin, TX 73301" +251206,Wired Headphones,1,11.99,09/25/19 11:53,"533 Sunset St, Los Angeles, CA 90001" +251207,Bose SoundSport Headphones,1,99.99,09/07/19 18:15,"241 Johnson St, San Francisco, CA 94016" +251208,Apple Airpods Headphones,1,150,09/21/19 11:29,"87 Chestnut St, Los Angeles, CA 90001" +251209,27in 4K Gaming Monitor,1,389.99,09/18/19 19:10,"993 Jefferson St, San Francisco, CA 94016" +251210,Apple Airpods Headphones,1,150,09/05/19 16:57,"750 11th St, Boston, MA 02215" +251211,Apple Airpods Headphones,1,150,09/13/19 23:03,"508 Adams St, Seattle, WA 98101" +251212,Wired Headphones,1,11.99,09/09/19 22:18,"447 1st St, Dallas, TX 75001" +251213,34in Ultrawide Monitor,1,379.99,09/26/19 23:25,"616 Spruce St, Atlanta, GA 30301" +251214,AAA Batteries (4-pack),2,2.99,09/06/19 16:59,"79 5th St, Dallas, TX 75001" +251215,Bose SoundSport Headphones,1,99.99,09/28/19 10:28,"370 Sunset St, Austin, TX 73301" +251216,Wired Headphones,1,11.99,09/21/19 09:53,"785 Cherry St, San Francisco, CA 94016" +251217,Bose SoundSport Headphones,1,99.99,09/21/19 18:12,"28 Lakeview St, San Francisco, CA 94016" +251218,AA Batteries (4-pack),1,3.84,09/13/19 21:12,"855 Adams St, San Francisco, CA 94016" +251219,AAA Batteries (4-pack),1,2.99,09/12/19 02:07,"193 11th St, San Francisco, CA 94016" +251220,Lightning Charging Cable,1,14.95,09/06/19 11:07,"723 Willow St, Boston, MA 02215" +251221,Bose SoundSport Headphones,1,99.99,09/25/19 20:46,"639 14th St, Boston, MA 02215" +251222,AA Batteries (4-pack),2,3.84,09/22/19 20:05,"299 4th St, Los Angeles, CA 90001" +251223,USB-C Charging Cable,1,11.95,09/12/19 14:54,"520 13th St, Austin, TX 73301" +251224,AA Batteries (4-pack),1,3.84,09/11/19 08:57,"274 Jefferson St, Atlanta, GA 30301" +251225,Macbook Pro Laptop,1,1700,09/25/19 13:14,"21 River St, San Francisco, CA 94016" +251226,Bose SoundSport Headphones,1,99.99,09/10/19 13:01,"998 Walnut St, Boston, MA 02215" +251227,AA Batteries (4-pack),1,3.84,09/30/19 13:02,"671 Hill St, Seattle, WA 98101" +251228,Wired Headphones,1,11.99,09/13/19 19:41,"172 Meadow St, Austin, TX 73301" +251229,ThinkPad Laptop,1,999.99,09/27/19 19:40,"871 Park St, Boston, MA 02215" +251229,34in Ultrawide Monitor,1,379.99,09/27/19 19:40,"871 Park St, Boston, MA 02215" +251230,34in Ultrawide Monitor,1,379.99,09/18/19 13:04,"557 Washington St, New York City, NY 10001" +251231,iPhone,1,700,09/14/19 13:03,"70 Washington St, San Francisco, CA 94016" +251231,Apple Airpods Headphones,1,150,09/14/19 13:03,"70 Washington St, San Francisco, CA 94016" +251232,Apple Airpods Headphones,1,150,09/09/19 13:57,"727 Cedar St, San Francisco, CA 94016" +251233,AA Batteries (4-pack),1,3.84,09/16/19 19:04,"555 6th St, New York City, NY 10001" +251234,Bose SoundSport Headphones,1,99.99,09/14/19 10:22,"110 Meadow St, Boston, MA 02215" +251235,USB-C Charging Cable,1,11.95,09/08/19 10:37,"182 4th St, Atlanta, GA 30301" +251236,AAA Batteries (4-pack),1,2.99,09/22/19 11:47,"733 Adams St, Portland, OR 97035" +251237,AA Batteries (4-pack),1,3.84,09/20/19 22:07,"625 Dogwood St, Seattle, WA 98101" +251238,34in Ultrawide Monitor,1,379.99,09/27/19 06:40,"553 Jefferson St, Boston, MA 02215" +251239,AA Batteries (4-pack),1,3.84,09/27/19 17:40,"138 Hickory St, Los Angeles, CA 90001" +251240,20in Monitor,1,109.99,09/13/19 20:17,"171 West St, Austin, TX 73301" +251241,Lightning Charging Cable,1,14.95,09/06/19 16:51,"572 South St, Atlanta, GA 30301" +251242,Lightning Charging Cable,1,14.95,09/25/19 16:55,"499 11th St, Austin, TX 73301" +251243,AAA Batteries (4-pack),1,2.99,09/01/19 11:40,"976 Lakeview St, San Francisco, CA 94016" +251244,20in Monitor,1,109.99,09/06/19 11:17,"277 12th St, Los Angeles, CA 90001" +251245,20in Monitor,1,109.99,09/28/19 19:24,"549 Adams St, San Francisco, CA 94016" +251246,Lightning Charging Cable,1,14.95,09/28/19 20:19,"868 Sunset St, Seattle, WA 98101" +251247,AAA Batteries (4-pack),1,2.99,09/11/19 11:01,"157 7th St, Dallas, TX 75001" +251248,USB-C Charging Cable,1,11.95,09/19/19 20:36,"658 West St, Los Angeles, CA 90001" +251249,USB-C Charging Cable,1,11.95,09/24/19 12:11,"530 Cedar St, San Francisco, CA 94016" +251250,AA Batteries (4-pack),2,3.84,09/04/19 10:58,"957 Wilson St, Dallas, TX 75001" +251251,AA Batteries (4-pack),1,3.84,09/22/19 08:21,"476 8th St, San Francisco, CA 94016" +251252,ThinkPad Laptop,1,999.99,09/26/19 20:38,"220 14th St, New York City, NY 10001" +251253,AA Batteries (4-pack),1,3.84,09/17/19 11:04,"376 Lakeview St, Atlanta, GA 30301" +251254,USB-C Charging Cable,1,11.95,09/25/19 21:48,"528 2nd St, New York City, NY 10001" +251255,Lightning Charging Cable,1,14.95,09/19/19 12:14,"834 9th St, San Francisco, CA 94016" +251256,20in Monitor,1,109.99,09/22/19 21:22,"359 Jackson St, New York City, NY 10001" +251257,iPhone,1,700,09/05/19 15:25,"800 Pine St, San Francisco, CA 94016" +251258,AA Batteries (4-pack),1,3.84,09/12/19 11:18,"878 North St, New York City, NY 10001" +251259,Lightning Charging Cable,1,14.95,09/22/19 12:01,"777 Pine St, San Francisco, CA 94016" +251260,Apple Airpods Headphones,1,150,09/03/19 16:35,"864 2nd St, San Francisco, CA 94016" +251261,AAA Batteries (4-pack),1,2.99,09/09/19 09:34,"58 4th St, Dallas, TX 75001" +251262,USB-C Charging Cable,1,11.95,09/30/19 20:34,"982 Pine St, Seattle, WA 98101" +251263,Bose SoundSport Headphones,1,99.99,09/28/19 14:23,"628 Center St, Los Angeles, CA 90001" +251264,Apple Airpods Headphones,1,150,09/12/19 20:17,"672 South St, San Francisco, CA 94016" +251265,Lightning Charging Cable,1,14.95,09/12/19 07:12,"552 Sunset St, Seattle, WA 98101" +251266,Lightning Charging Cable,1,14.95,09/05/19 13:47,"383 1st St, San Francisco, CA 94016" +251267,20in Monitor,1,109.99,09/21/19 22:12,"390 Lake St, New York City, NY 10001" +251268,iPhone,1,700,09/28/19 17:34,"465 Pine St, San Francisco, CA 94016" +251268,Lightning Charging Cable,1,14.95,09/28/19 17:34,"465 Pine St, San Francisco, CA 94016" +251269,AAA Batteries (4-pack),1,2.99,09/05/19 20:33,"792 Dogwood St, San Francisco, CA 94016" +251270,USB-C Charging Cable,2,11.95,09/03/19 12:49,"573 South St, Boston, MA 02215" +251271,Bose SoundSport Headphones,1,99.99,09/25/19 17:48,"17 Walnut St, Seattle, WA 98101" +251272,Apple Airpods Headphones,1,150,09/16/19 09:13,"256 West St, Boston, MA 02215" +251273,Vareebadd Phone,1,400,09/13/19 13:45,"974 Main St, Los Angeles, CA 90001" +251273,USB-C Charging Cable,1,11.95,09/13/19 13:45,"974 Main St, Los Angeles, CA 90001" +251274,AA Batteries (4-pack),3,3.84,09/28/19 21:31,"148 12th St, Portland, OR 97035" +251275,AA Batteries (4-pack),2,3.84,09/20/19 21:38,"77 Jefferson St, Los Angeles, CA 90001" +251276,USB-C Charging Cable,1,11.95,09/19/19 15:24,"935 Elm St, Seattle, WA 98101" +251277,AAA Batteries (4-pack),2,2.99,09/08/19 11:17,"201 Main St, Boston, MA 02215" +251277,Lightning Charging Cable,1,14.95,09/08/19 11:17,"201 Main St, Boston, MA 02215" +251278,Apple Airpods Headphones,1,150,09/18/19 15:25,"149 11th St, Los Angeles, CA 90001" +251279,Lightning Charging Cable,1,14.95,09/09/19 15:14,"581 Lincoln St, San Francisco, CA 94016" +251280,USB-C Charging Cable,2,11.95,09/06/19 09:57,"199 Hickory St, San Francisco, CA 94016" +251281,USB-C Charging Cable,1,11.95,09/01/19 10:56,"786 8th St, San Francisco, CA 94016" +251282,iPhone,1,700,09/01/19 03:35,"894 Jefferson St, Boston, MA 02215" +251282,Lightning Charging Cable,1,14.95,09/01/19 03:35,"894 Jefferson St, Boston, MA 02215" +251283,AAA Batteries (4-pack),2,2.99,09/27/19 11:45,"615 Forest St, Dallas, TX 75001" +251284,Bose SoundSport Headphones,1,99.99,09/24/19 23:58,"667 Adams St, New York City, NY 10001" +251285,Flatscreen TV,1,300,09/13/19 08:34,"792 Jackson St, Austin, TX 73301" +251286,Wired Headphones,1,11.99,09/27/19 08:47,"100 Maple St, Austin, TX 73301" +251287,Apple Airpods Headphones,1,150,09/01/19 13:29,"573 14th St, Los Angeles, CA 90001" +251288,Macbook Pro Laptop,1,1700,09/27/19 20:17,"228 5th St, New York City, NY 10001" +251289,USB-C Charging Cable,1,11.95,09/12/19 14:19,"113 Hill St, Dallas, TX 75001" +251290,Apple Airpods Headphones,1,150,09/16/19 20:54,"510 Center St, Los Angeles, CA 90001" +251291,27in FHD Monitor,1,149.99,09/11/19 20:51,"658 Church St, Austin, TX 73301" +251292,AAA Batteries (4-pack),2,2.99,09/25/19 07:21,"741 Wilson St, Dallas, TX 75001" +251293,Apple Airpods Headphones,1,150,09/23/19 20:34,"326 Lincoln St, Austin, TX 73301" +251294,AA Batteries (4-pack),1,3.84,09/29/19 00:53,"104 Willow St, Dallas, TX 75001" +251295,USB-C Charging Cable,1,11.95,09/24/19 23:05,"128 Madison St, Boston, MA 02215" +251296,USB-C Charging Cable,1,11.95,09/06/19 17:56,"66 Lake St, Los Angeles, CA 90001" +251297,AAA Batteries (4-pack),1,2.99,09/17/19 12:46,"691 Main St, Los Angeles, CA 90001" +251298,Wired Headphones,2,11.99,09/13/19 19:03,"742 Madison St, Los Angeles, CA 90001" +251299,AAA Batteries (4-pack),1,2.99,09/08/19 13:19,"369 North St, Boston, MA 02215" +251299,Lightning Charging Cable,1,14.95,09/08/19 13:19,"369 North St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +251300,USB-C Charging Cable,1,11.95,09/27/19 23:35,"958 Willow St, Austin, TX 73301" +251301,AA Batteries (4-pack),1,3.84,09/18/19 16:11,"838 Center St, San Francisco, CA 94016" +251302,27in FHD Monitor,1,149.99,09/14/19 16:31,"167 West St, San Francisco, CA 94016" +251303,Lightning Charging Cable,1,14.95,09/21/19 00:50,"964 Madison St, New York City, NY 10001" +251304,AAA Batteries (4-pack),2,2.99,09/04/19 18:00,"630 Elm St, San Francisco, CA 94016" +251305,AAA Batteries (4-pack),2,2.99,09/11/19 15:01,"852 4th St, Los Angeles, CA 90001" +251306,Wired Headphones,1,11.99,09/03/19 12:50,"739 Sunset St, San Francisco, CA 94016" +251307,Wired Headphones,1,11.99,09/04/19 07:24,"747 Pine St, San Francisco, CA 94016" +251308,AA Batteries (4-pack),1,3.84,09/01/19 04:34,"17 7th St, San Francisco, CA 94016" +251309,USB-C Charging Cable,1,11.95,09/06/19 13:22,"999 Park St, San Francisco, CA 94016" +251310,USB-C Charging Cable,1,11.95,09/20/19 22:29,"257 Forest St, San Francisco, CA 94016" +251311,AAA Batteries (4-pack),3,2.99,09/27/19 13:45,"527 Maple St, Portland, OR 97035" +251312,Wired Headphones,1,11.99,09/08/19 22:15,"712 6th St, San Francisco, CA 94016" +251313,Apple Airpods Headphones,1,150,09/23/19 19:36,"120 14th St, New York City, NY 10001" +251314,AAA Batteries (4-pack),2,2.99,09/14/19 11:23,"844 Lakeview St, Atlanta, GA 30301" +251315,Lightning Charging Cable,1,14.95,09/09/19 17:34,"494 Elm St, Dallas, TX 75001" +251316,Lightning Charging Cable,1,14.95,09/06/19 12:33,"39 North St, Portland, OR 97035" +251317,Apple Airpods Headphones,1,150,09/18/19 18:46,"441 Forest St, Austin, TX 73301" +251318,27in FHD Monitor,1,149.99,09/11/19 12:59,"31 Main St, Seattle, WA 98101" +251319,27in 4K Gaming Monitor,1,389.99,09/06/19 16:43,"748 Lake St, San Francisco, CA 94016" +251320,USB-C Charging Cable,1,11.95,09/28/19 13:28,"655 Madison St, Atlanta, GA 30301" +251321,iPhone,1,700,09/19/19 06:26,"935 Center St, Los Angeles, CA 90001" +251322,AA Batteries (4-pack),2,3.84,09/29/19 19:22,"883 Jackson St, San Francisco, CA 94016" +251323,Flatscreen TV,1,300,09/12/19 12:30,"758 9th St, Austin, TX 73301" +251323,Lightning Charging Cable,1,14.95,09/12/19 12:30,"758 9th St, Austin, TX 73301" +251324,AA Batteries (4-pack),1,3.84,09/18/19 18:37,"797 11th St, Los Angeles, CA 90001" +251325,ThinkPad Laptop,1,999.99,09/10/19 15:08,"957 Washington St, Los Angeles, CA 90001" +251326,USB-C Charging Cable,1,11.95,09/30/19 17:15,"981 Jefferson St, Boston, MA 02215" +251327,Flatscreen TV,1,300,09/19/19 12:30,"829 Walnut St, Los Angeles, CA 90001" +251328,ThinkPad Laptop,1,999.99,09/03/19 02:28,"842 5th St, Dallas, TX 75001" +251329,Lightning Charging Cable,1,14.95,09/14/19 19:53,"500 West St, Los Angeles, CA 90001" +251330,USB-C Charging Cable,2,11.95,09/03/19 02:18,"556 8th St, San Francisco, CA 94016" +251331,Lightning Charging Cable,1,14.95,09/28/19 09:35,"668 Chestnut St, Atlanta, GA 30301" +251332,USB-C Charging Cable,1,11.95,09/23/19 19:22,"906 Willow St, Dallas, TX 75001" +251333,Apple Airpods Headphones,1,150,09/23/19 18:22,"920 Madison St, San Francisco, CA 94016" +251334,27in FHD Monitor,1,149.99,09/24/19 12:16,"113 11th St, Los Angeles, CA 90001" +251335,Lightning Charging Cable,1,14.95,09/23/19 19:36,"701 South St, Portland, OR 97035" +251336,AA Batteries (4-pack),3,3.84,09/15/19 09:53,"110 South St, San Francisco, CA 94016" +251337,Lightning Charging Cable,1,14.95,09/15/19 14:51,"859 West St, San Francisco, CA 94016" +251338,ThinkPad Laptop,1,999.99,09/08/19 10:21,"892 Lake St, San Francisco, CA 94016" +251339,Wired Headphones,2,11.99,09/15/19 11:45,"112 North St, San Francisco, CA 94016" +251340,AA Batteries (4-pack),1,3.84,09/17/19 09:01,"315 Ridge St, Austin, TX 73301" +251341,34in Ultrawide Monitor,1,379.99,09/09/19 07:21,"326 South St, Seattle, WA 98101" +251342,Lightning Charging Cable,1,14.95,09/14/19 12:10,"587 Cherry St, San Francisco, CA 94016" +251343,AA Batteries (4-pack),1,3.84,09/28/19 12:42,"120 7th St, Los Angeles, CA 90001" +251344,USB-C Charging Cable,2,11.95,09/17/19 17:21,"476 River St, Los Angeles, CA 90001" +251345,USB-C Charging Cable,1,11.95,09/15/19 11:50,"969 Sunset St, Portland, OR 97035" +251346,USB-C Charging Cable,1,11.95,09/21/19 14:40,"273 9th St, San Francisco, CA 94016" +251347,Wired Headphones,1,11.99,09/17/19 15:42,"325 5th St, New York City, NY 10001" +251348,Flatscreen TV,1,300,09/09/19 11:22,"462 Meadow St, Los Angeles, CA 90001" +251349,USB-C Charging Cable,1,11.95,09/05/19 08:49,"796 South St, Portland, OR 97035" +251350,Wired Headphones,1,11.99,09/21/19 14:07,"167 Washington St, Los Angeles, CA 90001" +251351,Bose SoundSport Headphones,1,99.99,09/07/19 23:31,"779 1st St, Portland, OR 97035" +251352,Wired Headphones,1,11.99,09/07/19 12:44,"329 Chestnut St, New York City, NY 10001" +251353,iPhone,1,700,09/30/19 19:37,"644 Main St, New York City, NY 10001" +251354,20in Monitor,1,109.99,09/17/19 16:27,"767 River St, New York City, NY 10001" +251355,AAA Batteries (4-pack),1,2.99,09/09/19 23:30,"126 Cherry St, San Francisco, CA 94016" +251356,USB-C Charging Cable,1,11.95,09/23/19 13:07,"940 Lakeview St, New York City, NY 10001" +251357,Wired Headphones,1,11.99,09/29/19 16:04,"516 Lincoln St, Los Angeles, CA 90001" +251358,USB-C Charging Cable,1,11.95,09/17/19 20:05,"190 Willow St, Boston, MA 02215" +251359,iPhone,1,700,09/12/19 10:43,"240 Johnson St, San Francisco, CA 94016" +251360,iPhone,1,700,09/17/19 15:13,"337 Lincoln St, Boston, MA 02215" +251361,Wired Headphones,1,11.99,09/29/19 15:45,"418 Madison St, New York City, NY 10001" +251362,Wired Headphones,1,11.99,09/19/19 22:43,"574 Willow St, San Francisco, CA 94016" +251363,Apple Airpods Headphones,1,150,09/06/19 18:22,"924 Adams St, San Francisco, CA 94016" +251364,AAA Batteries (4-pack),5,2.99,09/02/19 19:56,"678 12th St, Los Angeles, CA 90001" +251365,Apple Airpods Headphones,1,150,09/05/19 09:15,"661 Lakeview St, Los Angeles, CA 90001" +251366,AAA Batteries (4-pack),1,2.99,09/06/19 14:50,"805 Madison St, San Francisco, CA 94016" +251367,USB-C Charging Cable,1,11.95,09/09/19 18:34,"212 5th St, Portland, OR 97035" +251368,Lightning Charging Cable,1,14.95,09/04/19 11:16,"929 South St, Los Angeles, CA 90001" +251369,Apple Airpods Headphones,1,150,09/29/19 09:33,"583 Pine St, Austin, TX 73301" +251370,27in FHD Monitor,1,149.99,09/23/19 00:09,"888 8th St, San Francisco, CA 94016" +251371,27in FHD Monitor,1,149.99,09/04/19 08:39,"738 Park St, Dallas, TX 75001" +251372,AAA Batteries (4-pack),1,2.99,09/16/19 19:53,"565 Sunset St, New York City, NY 10001" +251373,Lightning Charging Cable,2,14.95,09/04/19 12:18,"497 Jackson St, Atlanta, GA 30301" +251374,Lightning Charging Cable,1,14.95,09/03/19 05:54,"925 Lakeview St, San Francisco, CA 94016" +251375,Lightning Charging Cable,1,14.95,09/03/19 17:50,"289 Cedar St, Seattle, WA 98101" +251376,27in FHD Monitor,1,149.99,09/03/19 15:36,"128 Highland St, New York City, NY 10001" +251377,AA Batteries (4-pack),1,3.84,09/18/19 10:20,"909 1st St, Boston, MA 02215" +251378,27in FHD Monitor,1,149.99,09/12/19 11:43,"110 Church St, New York City, NY 10001" +251379,Lightning Charging Cable,2,14.95,09/20/19 14:54,"389 Church St, San Francisco, CA 94016" +251380,Flatscreen TV,1,300,09/02/19 12:03,"231 Elm St, Dallas, TX 75001" +251381,Lightning Charging Cable,1,14.95,09/12/19 18:56,"819 Park St, Los Angeles, CA 90001" +251382,Macbook Pro Laptop,1,1700,09/13/19 00:41,"897 North St, New York City, NY 10001" +251383,Bose SoundSport Headphones,2,99.99,09/01/19 16:19,"91 Forest St, Austin, TX 73301" +251384,iPhone,1,700,09/08/19 09:57,"755 Elm St, New York City, NY 10001" +251385,Wired Headphones,1,11.99,09/01/19 07:03,"526 River St, Boston, MA 02215" +251386,iPhone,1,700,09/25/19 18:02,"560 Willow St, Seattle, WA 98101" +251387,AAA Batteries (4-pack),4,2.99,09/18/19 07:44,"57 West St, Portland, OR 97035" +251388,Wired Headphones,1,11.99,09/12/19 16:00,"191 6th St, Dallas, TX 75001" +251389,Wired Headphones,1,11.99,09/14/19 00:57,"837 Forest St, Los Angeles, CA 90001" +251390,USB-C Charging Cable,2,11.95,09/16/19 23:48,"742 Center St, Los Angeles, CA 90001" +251391,Bose SoundSport Headphones,1,99.99,09/09/19 17:33,"740 Maple St, Los Angeles, CA 90001" +251392,34in Ultrawide Monitor,1,379.99,09/08/19 20:32,"37 Sunset St, Portland, ME 04101" +251393,AA Batteries (4-pack),1,3.84,09/21/19 23:13,"701 Chestnut St, San Francisco, CA 94016" +251393,AAA Batteries (4-pack),2,2.99,09/21/19 23:13,"701 Chestnut St, San Francisco, CA 94016" +251394,USB-C Charging Cable,1,11.95,09/20/19 02:34,"488 Willow St, Los Angeles, CA 90001" +251395,AA Batteries (4-pack),1,3.84,09/21/19 14:14,"962 Washington St, Boston, MA 02215" +251396,USB-C Charging Cable,1,11.95,09/15/19 08:42,"178 Dogwood St, Boston, MA 02215" +251397,20in Monitor,1,109.99,09/07/19 09:47,"798 Washington St, San Francisco, CA 94016" +251398,Google Phone,1,600,09/09/19 13:54,"655 Wilson St, New York City, NY 10001" +251399,AAA Batteries (4-pack),1,2.99,09/10/19 01:01,"217 4th St, San Francisco, CA 94016" +251400,AAA Batteries (4-pack),1,2.99,09/04/19 12:34,"88 Ridge St, Austin, TX 73301" +251401,Google Phone,1,600,09/15/19 18:38,"987 Hill St, New York City, NY 10001" +251402,Apple Airpods Headphones,1,150,09/15/19 14:59,"381 Chestnut St, San Francisco, CA 94016" +251403,USB-C Charging Cable,1,11.95,09/14/19 11:36,"774 Elm St, Los Angeles, CA 90001" +251404,Lightning Charging Cable,1,14.95,09/24/19 09:40,"347 11th St, San Francisco, CA 94016" +251405,27in 4K Gaming Monitor,1,389.99,09/20/19 11:58,"749 Madison St, San Francisco, CA 94016" +251406,AAA Batteries (4-pack),1,2.99,09/16/19 12:38,"438 Pine St, San Francisco, CA 94016" +251407,Google Phone,1,600,09/16/19 11:45,"725 9th St, Dallas, TX 75001" +251408,AA Batteries (4-pack),1,3.84,09/11/19 11:42,"133 South St, Seattle, WA 98101" +251409,USB-C Charging Cable,1,11.95,09/28/19 11:58,"946 Lakeview St, Los Angeles, CA 90001" +251410,27in FHD Monitor,1,149.99,09/08/19 08:08,"835 Cherry St, Boston, MA 02215" +251411,Bose SoundSport Headphones,1,99.99,09/07/19 10:21,"577 Jackson St, New York City, NY 10001" +251412,Google Phone,1,600,09/26/19 10:00,"64 Church St, New York City, NY 10001" +251412,USB-C Charging Cable,2,11.95,09/26/19 10:00,"64 Church St, New York City, NY 10001" +251413,Apple Airpods Headphones,1,150,09/13/19 23:08,"720 11th St, Portland, OR 97035" +251414,Wired Headphones,2,11.99,09/17/19 13:33,"925 Highland St, Dallas, TX 75001" +251415,Lightning Charging Cable,1,14.95,09/24/19 13:46,"854 Lake St, San Francisco, CA 94016" +251416,AAA Batteries (4-pack),3,2.99,09/10/19 20:13,"367 North St, New York City, NY 10001" +251417,AAA Batteries (4-pack),1,2.99,09/26/19 12:48,"782 Meadow St, San Francisco, CA 94016" +251418,34in Ultrawide Monitor,1,379.99,09/15/19 11:52,"736 Dogwood St, New York City, NY 10001" +251419,20in Monitor,1,109.99,09/03/19 08:12,"875 9th St, San Francisco, CA 94016" +251420,Lightning Charging Cable,1,14.95,09/26/19 09:07,"845 5th St, Austin, TX 73301" +251421,AAA Batteries (4-pack),1,2.99,09/10/19 20:14,"141 Maple St, Austin, TX 73301" +251422,34in Ultrawide Monitor,1,379.99,09/22/19 18:41,"558 9th St, San Francisco, CA 94016" +251423,USB-C Charging Cable,1,11.95,09/27/19 15:52,"717 Dogwood St, San Francisco, CA 94016" +251424,Lightning Charging Cable,1,14.95,09/27/19 20:08,"187 Main St, New York City, NY 10001" +251425,USB-C Charging Cable,1,11.95,09/20/19 18:53,"246 8th St, Boston, MA 02215" +251426,AAA Batteries (4-pack),1,2.99,09/01/19 15:06,"851 Forest St, San Francisco, CA 94016" +251427,USB-C Charging Cable,1,11.95,09/23/19 14:09,"94 Washington St, Boston, MA 02215" +251428,27in FHD Monitor,1,149.99,09/27/19 15:53,"817 Hill St, Los Angeles, CA 90001" +251429,AAA Batteries (4-pack),1,2.99,09/02/19 08:14,"90 Pine St, Dallas, TX 75001" +251430,USB-C Charging Cable,2,11.95,09/28/19 18:34,"386 Hill St, San Francisco, CA 94016" +251431,34in Ultrawide Monitor,1,379.99,09/14/19 04:56,"46 Washington St, New York City, NY 10001" +251432,Apple Airpods Headphones,1,150,09/10/19 16:02,"677 Meadow St, Boston, MA 02215" +251433,AAA Batteries (4-pack),1,2.99,09/26/19 16:02,"874 Jefferson St, New York City, NY 10001" +251434,27in FHD Monitor,1,149.99,09/25/19 10:36,"579 12th St, Austin, TX 73301" +251435,27in 4K Gaming Monitor,1,389.99,09/22/19 08:24,"909 Hill St, Boston, MA 02215" +251436,Apple Airpods Headphones,1,150,09/13/19 02:18,"780 12th St, Los Angeles, CA 90001" +251437,Apple Airpods Headphones,1,150,09/03/19 10:53,"561 Walnut St, Los Angeles, CA 90001" +251438,LG Dryer,1,600.0,09/06/19 14:59,"370 Lake St, Portland, ME 04101" +251439,USB-C Charging Cable,1,11.95,09/01/19 19:27,"455 Madison St, New York City, NY 10001" +251440,ThinkPad Laptop,1,999.99,09/08/19 12:51,"363 Lakeview St, Boston, MA 02215" +251441,USB-C Charging Cable,1,11.95,09/05/19 03:17,"436 13th St, Dallas, TX 75001" +251442,Lightning Charging Cable,2,14.95,09/14/19 14:15,"629 Johnson St, New York City, NY 10001" +251443,AA Batteries (4-pack),1,3.84,09/08/19 18:30,"902 North St, Dallas, TX 75001" +251444,Lightning Charging Cable,1,14.95,09/29/19 21:58,"346 Madison St, Dallas, TX 75001" +251445,AA Batteries (4-pack),3,3.84,09/17/19 20:58,"242 Adams St, Los Angeles, CA 90001" +251446,USB-C Charging Cable,1,11.95,09/29/19 19:29,"230 Walnut St, San Francisco, CA 94016" +251447,LG Dryer,1,600.0,09/18/19 22:48,"443 Spruce St, San Francisco, CA 94016" +251448,AAA Batteries (4-pack),1,2.99,09/29/19 20:39,"430 Jackson St, San Francisco, CA 94016" +251449,20in Monitor,1,109.99,09/12/19 14:39,"338 10th St, Boston, MA 02215" +251450,Macbook Pro Laptop,1,1700,09/21/19 08:17,"457 Lake St, San Francisco, CA 94016" +251451,Google Phone,1,600,09/21/19 18:31,"435 Main St, Dallas, TX 75001" +251452,Lightning Charging Cable,1,14.95,09/30/19 16:36,"929 2nd St, San Francisco, CA 94016" +251453,Lightning Charging Cable,1,14.95,09/02/19 14:10,"997 7th St, Atlanta, GA 30301" +251454,Apple Airpods Headphones,1,150,09/14/19 17:59,"884 Washington St, Boston, MA 02215" +251455,Google Phone,1,600,09/29/19 10:33,"154 Dogwood St, San Francisco, CA 94016" +251456,AAA Batteries (4-pack),1,2.99,09/21/19 14:45,"80 Wilson St, Dallas, TX 75001" +251457,AA Batteries (4-pack),1,3.84,09/13/19 05:04,"585 Maple St, Portland, OR 97035" +251458,Wired Headphones,1,11.99,09/12/19 15:11,"838 Center St, New York City, NY 10001" +251459,Lightning Charging Cable,2,14.95,09/19/19 17:57,"449 West St, Austin, TX 73301" +251460,USB-C Charging Cable,1,11.95,09/21/19 16:21,"503 Cedar St, Portland, ME 04101" +251461,Lightning Charging Cable,1,14.95,09/21/19 11:55,"971 North St, Boston, MA 02215" +251462,USB-C Charging Cable,1,11.95,09/12/19 23:21,"785 Forest St, Austin, TX 73301" +251463,34in Ultrawide Monitor,1,379.99,09/20/19 20:14,"643 Church St, Seattle, WA 98101" +251464,USB-C Charging Cable,1,11.95,09/06/19 15:22,"618 South St, San Francisco, CA 94016" +251465,iPhone,1,700,09/24/19 13:11,"446 Chestnut St, New York City, NY 10001" +251465,Wired Headphones,1,11.99,09/24/19 13:11,"446 Chestnut St, New York City, NY 10001" +251466,20in Monitor,1,109.99,09/25/19 16:08,"297 10th St, Boston, MA 02215" +251467,34in Ultrawide Monitor,1,379.99,09/24/19 16:18,"452 North St, Dallas, TX 75001" +251468,27in FHD Monitor,1,149.99,09/04/19 10:36,"332 Washington St, San Francisco, CA 94016" +251469,AA Batteries (4-pack),1,3.84,09/06/19 21:37,"364 Dogwood St, Portland, OR 97035" +251470,Bose SoundSport Headphones,1,99.99,09/27/19 21:36,"16 Hill St, Seattle, WA 98101" +251471,Lightning Charging Cable,1,14.95,09/29/19 09:17,"555 Dogwood St, San Francisco, CA 94016" +251472,USB-C Charging Cable,1,11.95,09/19/19 13:59,"784 Hickory St, Portland, OR 97035" +251473,27in 4K Gaming Monitor,1,389.99,09/10/19 09:25,"193 10th St, San Francisco, CA 94016" +251474,AA Batteries (4-pack),1,3.84,09/01/19 11:25,"546 Hickory St, San Francisco, CA 94016" +251475,iPhone,1,700,09/10/19 14:25,"289 2nd St, New York City, NY 10001" +251476,Lightning Charging Cable,1,14.95,09/28/19 18:59,"154 5th St, Atlanta, GA 30301" +251477,AA Batteries (4-pack),1,3.84,09/05/19 20:24,"984 Park St, San Francisco, CA 94016" +251478,AA Batteries (4-pack),1,3.84,09/12/19 19:46,"376 2nd St, Los Angeles, CA 90001" +251479,Bose SoundSport Headphones,1,99.99,09/24/19 17:15,"27 Jackson St, New York City, NY 10001" +251480,34in Ultrawide Monitor,1,379.99,09/05/19 17:38,"320 West St, Boston, MA 02215" +251481,27in FHD Monitor,1,149.99,09/26/19 20:11,"768 Johnson St, Boston, MA 02215" +251482,Wired Headphones,1,11.99,09/05/19 04:24,"687 Forest St, Atlanta, GA 30301" +251483,27in FHD Monitor,1,149.99,09/02/19 10:34,"172 8th St, Seattle, WA 98101" +251484,Flatscreen TV,1,300,09/29/19 15:11,"610 Jefferson St, San Francisco, CA 94016" +251485,Bose SoundSport Headphones,1,99.99,09/05/19 07:35,"100 1st St, Boston, MA 02215" +251486,Lightning Charging Cable,1,14.95,09/13/19 22:50,"564 Jefferson St, San Francisco, CA 94016" +251487,27in FHD Monitor,1,149.99,09/06/19 20:22,"539 Walnut St, Los Angeles, CA 90001" +251488,USB-C Charging Cable,1,11.95,09/13/19 08:40,"140 Chestnut St, Los Angeles, CA 90001" +251489,Macbook Pro Laptop,1,1700,09/24/19 20:23,"675 Lake St, San Francisco, CA 94016" +251490,27in FHD Monitor,1,149.99,09/26/19 11:37,"800 2nd St, Atlanta, GA 30301" +251491,27in 4K Gaming Monitor,1,389.99,09/16/19 07:04,"481 2nd St, Dallas, TX 75001" +251492,ThinkPad Laptop,1,999.99,09/05/19 17:15,"829 Madison St, San Francisco, CA 94016" +251493,USB-C Charging Cable,1,11.95,09/03/19 10:54,"532 River St, San Francisco, CA 94016" +251494,Wired Headphones,1,11.99,09/23/19 22:00,"817 13th St, San Francisco, CA 94016" +251495,Macbook Pro Laptop,1,1700,09/19/19 07:01,"444 Lincoln St, Boston, MA 02215" +251496,Bose SoundSport Headphones,1,99.99,09/08/19 18:11,"108 5th St, San Francisco, CA 94016" +251497,AA Batteries (4-pack),1,3.84,09/09/19 19:15,"88 Church St, Los Angeles, CA 90001" +251498,Apple Airpods Headphones,1,150,09/20/19 16:44,"599 4th St, Dallas, TX 75001" +251499,Lightning Charging Cable,1,14.95,09/08/19 09:38,"882 Meadow St, Dallas, TX 75001" +251500,Apple Airpods Headphones,1,150,09/22/19 21:56,"864 Lakeview St, Portland, ME 04101" +251501,Google Phone,1,600,09/24/19 18:59,"533 Lakeview St, Atlanta, GA 30301" +251502,Bose SoundSport Headphones,1,99.99,09/01/19 14:15,"961 Willow St, Atlanta, GA 30301" +251503,20in Monitor,1,109.99,09/09/19 13:13,"811 10th St, New York City, NY 10001" +251503,Wired Headphones,1,11.99,09/09/19 13:13,"811 10th St, New York City, NY 10001" +251504,AAA Batteries (4-pack),1,2.99,09/26/19 19:17,"657 11th St, San Francisco, CA 94016" +251505,USB-C Charging Cable,1,11.95,09/03/19 17:15,"101 Walnut St, Dallas, TX 75001" +251506,Google Phone,1,600,09/20/19 18:05,"985 Lake St, New York City, NY 10001" +251507,AA Batteries (4-pack),1,3.84,09/13/19 19:33,"4 Forest St, Boston, MA 02215" +251508,Vareebadd Phone,1,400,09/18/19 00:14,"803 Jackson St, San Francisco, CA 94016" +251509,AA Batteries (4-pack),1,3.84,09/18/19 22:50,"60 10th St, San Francisco, CA 94016" +251510,Google Phone,1,600,09/27/19 20:31,"139 1st St, Los Angeles, CA 90001" +251511,USB-C Charging Cable,1,11.95,09/07/19 20:01,"233 West St, Dallas, TX 75001" +251512,Bose SoundSport Headphones,1,99.99,09/21/19 00:22,"662 1st St, San Francisco, CA 94016" +251513,27in 4K Gaming Monitor,1,389.99,09/17/19 10:00,"851 Jackson St, Dallas, TX 75001" +251514,34in Ultrawide Monitor,1,379.99,09/24/19 20:41,"557 Walnut St, San Francisco, CA 94016" +251515,AA Batteries (4-pack),1,3.84,09/02/19 12:37,"201 Main St, San Francisco, CA 94016" +251516,Flatscreen TV,1,300,09/05/19 20:26,"256 Church St, New York City, NY 10001" +251517,27in FHD Monitor,1,149.99,09/13/19 11:45,"634 Park St, Dallas, TX 75001" +251518,AA Batteries (4-pack),4,3.84,09/06/19 11:00,"921 Madison St, Dallas, TX 75001" +251519,Apple Airpods Headphones,1,150,09/09/19 14:39,"658 Wilson St, Atlanta, GA 30301" +251520,AA Batteries (4-pack),1,3.84,09/21/19 06:09,"107 8th St, Los Angeles, CA 90001" +251521,Bose SoundSport Headphones,1,99.99,09/22/19 18:15,"597 Jefferson St, Seattle, WA 98101" +251521,USB-C Charging Cable,1,11.95,09/22/19 18:15,"597 Jefferson St, Seattle, WA 98101" +251522,USB-C Charging Cable,1,11.95,09/18/19 18:33,"842 North St, San Francisco, CA 94016" +251523,Bose SoundSport Headphones,1,99.99,09/28/19 11:41,"437 Ridge St, San Francisco, CA 94016" +251524,Lightning Charging Cable,2,14.95,09/06/19 21:54,"730 Cedar St, Portland, ME 04101" +251525,27in 4K Gaming Monitor,1,389.99,09/23/19 06:28,"304 Adams St, San Francisco, CA 94016" +251526,27in FHD Monitor,1,149.99,09/25/19 12:27,"633 Forest St, Boston, MA 02215" +251527,AA Batteries (4-pack),2,3.84,09/08/19 22:23,"79 West St, New York City, NY 10001" +251528,Lightning Charging Cable,1,14.95,09/30/19 21:50,"235 Dogwood St, Seattle, WA 98101" +251529,Lightning Charging Cable,1,14.95,09/24/19 09:20,"409 1st St, San Francisco, CA 94016" +251530,iPhone,1,700,09/21/19 18:12,"664 Washington St, New York City, NY 10001" +251530,Lightning Charging Cable,1,14.95,09/21/19 18:12,"664 Washington St, New York City, NY 10001" +251530,Apple Airpods Headphones,1,150,09/21/19 18:12,"664 Washington St, New York City, NY 10001" +251531,USB-C Charging Cable,1,11.95,09/15/19 22:38,"570 Willow St, San Francisco, CA 94016" +251532,ThinkPad Laptop,1,999.99,09/03/19 02:09,"51 Hill St, Dallas, TX 75001" +251533,AA Batteries (4-pack),1,3.84,09/23/19 12:03,"481 7th St, Los Angeles, CA 90001" +251534,USB-C Charging Cable,1,11.95,09/19/19 15:28,"353 Spruce St, Boston, MA 02215" +251535,AA Batteries (4-pack),2,3.84,09/22/19 20:07,"427 10th St, Austin, TX 73301" +251536,AA Batteries (4-pack),1,3.84,09/17/19 16:59,"635 Cedar St, Boston, MA 02215" +251537,27in 4K Gaming Monitor,1,389.99,09/08/19 15:45,"423 Forest St, New York City, NY 10001" +251538,Google Phone,1,600,09/04/19 13:04,"862 Lake St, Los Angeles, CA 90001" +251539,34in Ultrawide Monitor,1,379.99,09/02/19 15:21,"485 6th St, New York City, NY 10001" +251540,AAA Batteries (4-pack),1,2.99,09/14/19 11:33,"604 2nd St, Los Angeles, CA 90001" +251541,34in Ultrawide Monitor,1,379.99,09/06/19 19:45,"690 Hill St, Dallas, TX 75001" +251542,34in Ultrawide Monitor,1,379.99,09/23/19 16:40,"800 11th St, San Francisco, CA 94016" +251543,Wired Headphones,1,11.99,09/02/19 17:57,"796 Ridge St, Portland, ME 04101" +251544,Apple Airpods Headphones,1,150,09/08/19 09:20,"108 Chestnut St, San Francisco, CA 94016" +251544,Wired Headphones,1,11.99,09/08/19 09:20,"108 Chestnut St, San Francisco, CA 94016" +251545,Apple Airpods Headphones,1,150,09/25/19 09:49,"586 Spruce St, San Francisco, CA 94016" +251546,USB-C Charging Cable,1,11.95,09/29/19 11:21,"761 Church St, Los Angeles, CA 90001" +251547,Wired Headphones,1,11.99,09/30/19 21:52,"201 Pine St, New York City, NY 10001" +251548,Lightning Charging Cable,1,14.95,09/02/19 15:24,"528 Jefferson St, Los Angeles, CA 90001" +251549,iPhone,1,700,09/05/19 20:29,"483 Hickory St, New York City, NY 10001" +251549,Apple Airpods Headphones,1,150,09/05/19 20:29,"483 Hickory St, New York City, NY 10001" +251550,34in Ultrawide Monitor,1,379.99,09/26/19 12:49,"635 2nd St, Seattle, WA 98101" +251551,Macbook Pro Laptop,1,1700,09/13/19 23:02,"492 Lincoln St, Boston, MA 02215" +251552,USB-C Charging Cable,3,11.95,09/07/19 12:32,"848 13th St, San Francisco, CA 94016" +251553,AA Batteries (4-pack),1,3.84,09/01/19 13:13,"189 4th St, San Francisco, CA 94016" +251554,Apple Airpods Headphones,1,150,09/07/19 15:48,"200 North St, San Francisco, CA 94016" +251555,AA Batteries (4-pack),1,3.84,09/19/19 14:00,"438 8th St, San Francisco, CA 94016" +251556,AA Batteries (4-pack),1,3.84,09/21/19 19:45,"848 River St, Los Angeles, CA 90001" +251557,AAA Batteries (4-pack),1,2.99,09/12/19 15:49,"669 Maple St, Seattle, WA 98101" +251558,iPhone,1,700,09/07/19 18:19,"48 Lakeview St, Los Angeles, CA 90001" +251559,USB-C Charging Cable,1,11.95,09/23/19 14:05,"788 Pine St, Atlanta, GA 30301" +251560,Bose SoundSport Headphones,1,99.99,09/12/19 21:28,"884 6th St, San Francisco, CA 94016" +251561,Lightning Charging Cable,1,14.95,09/16/19 18:11,"615 Adams St, Atlanta, GA 30301" +251562,Wired Headphones,1,11.99,09/17/19 11:41,"514 Hill St, Seattle, WA 98101" +251563,AAA Batteries (4-pack),3,2.99,09/25/19 02:27,"699 Cherry St, Portland, ME 04101" +251564,AA Batteries (4-pack),1,3.84,09/28/19 14:53,"442 Cedar St, Seattle, WA 98101" +251565,Apple Airpods Headphones,1,150,09/13/19 20:15,"325 Pine St, Seattle, WA 98101" +251566,Apple Airpods Headphones,1,150,09/14/19 16:52,"240 Hill St, Boston, MA 02215" +251567,Lightning Charging Cable,1,14.95,09/07/19 14:31,"270 Jackson St, Atlanta, GA 30301" +251568,AAA Batteries (4-pack),1,2.99,09/06/19 08:32,"961 Cherry St, New York City, NY 10001" +251569,Bose SoundSport Headphones,1,99.99,09/12/19 02:33,"513 Cedar St, Seattle, WA 98101" +251570,ThinkPad Laptop,1,999.99,09/02/19 09:39,"795 Willow St, Portland, ME 04101" +251571,Wired Headphones,2,11.99,09/22/19 10:01,"875 Meadow St, New York City, NY 10001" +251572,Google Phone,1,600,09/08/19 19:40,"83 Jackson St, New York City, NY 10001" +251573,USB-C Charging Cable,1,11.95,09/17/19 14:40,"44 Lake St, Seattle, WA 98101" +251574,Bose SoundSport Headphones,1,99.99,09/10/19 20:09,"431 Church St, Los Angeles, CA 90001" +251575,Apple Airpods Headphones,1,150,09/04/19 20:14,"562 Madison St, Dallas, TX 75001" +251576,Macbook Pro Laptop,1,1700,09/16/19 21:33,"110 Spruce St, Dallas, TX 75001" +251577,USB-C Charging Cable,1,11.95,09/19/19 20:55,"167 6th St, Seattle, WA 98101" +251578,27in FHD Monitor,1,149.99,09/21/19 17:30,"397 4th St, Los Angeles, CA 90001" +251579,Flatscreen TV,1,300,09/18/19 22:44,"389 9th St, San Francisco, CA 94016" +251580,27in 4K Gaming Monitor,1,389.99,09/02/19 19:00,"45 6th St, San Francisco, CA 94016" +251581,ThinkPad Laptop,1,999.99,09/10/19 08:31,"273 7th St, San Francisco, CA 94016" +251582,Apple Airpods Headphones,1,150,09/08/19 17:41,"415 Pine St, New York City, NY 10001" +251583,AAA Batteries (4-pack),1,2.99,09/28/19 09:38,"204 2nd St, San Francisco, CA 94016" +251584,Lightning Charging Cable,1,14.95,09/20/19 12:45,"175 Lincoln St, New York City, NY 10001" +251585,Apple Airpods Headphones,1,150,09/04/19 17:10,"472 Maple St, Atlanta, GA 30301" +251586,Google Phone,1,600,09/04/19 11:57,"125 12th St, New York City, NY 10001" +251587,Lightning Charging Cable,1,14.95,09/20/19 18:49,"754 12th St, Los Angeles, CA 90001" +251588,Bose SoundSport Headphones,1,99.99,09/12/19 12:48,"127 10th St, Portland, OR 97035" +251589,USB-C Charging Cable,1,11.95,09/04/19 11:08,"801 Lakeview St, New York City, NY 10001" +251590,Apple Airpods Headphones,1,150,09/20/19 12:11,"733 1st St, Seattle, WA 98101" +251591,Wired Headphones,1,11.99,09/25/19 19:10,"921 Walnut St, San Francisco, CA 94016" +251592,ThinkPad Laptop,1,999.99,09/19/19 07:28,"317 11th St, Dallas, TX 75001" +251593,Apple Airpods Headphones,1,150,09/24/19 18:17,"200 Wilson St, Los Angeles, CA 90001" +251594,AA Batteries (4-pack),1,3.84,09/08/19 20:56,"968 11th St, Atlanta, GA 30301" +251594,USB-C Charging Cable,1,11.95,09/08/19 20:56,"968 11th St, Atlanta, GA 30301" +251595,Macbook Pro Laptop,1,1700,09/05/19 20:08,"669 Maple St, New York City, NY 10001" +251596,AAA Batteries (4-pack),3,2.99,09/25/19 14:01,"783 South St, Seattle, WA 98101" +251597,Flatscreen TV,1,300,09/15/19 06:36,"322 1st St, Boston, MA 02215" +251597,AA Batteries (4-pack),1,3.84,09/15/19 06:36,"322 1st St, Boston, MA 02215" +251598,Lightning Charging Cable,1,14.95,09/07/19 09:07,"935 Walnut St, Boston, MA 02215" +251599,AA Batteries (4-pack),2,3.84,09/10/19 11:45,"186 Cedar St, Boston, MA 02215" +251600,Macbook Pro Laptop,1,1700,09/10/19 22:30,"36 North St, San Francisco, CA 94016" +251601,Google Phone,1,600,09/08/19 12:46,"659 Main St, New York City, NY 10001" +251602,Apple Airpods Headphones,1,150,09/10/19 21:27,"359 Sunset St, Los Angeles, CA 90001" +251603,USB-C Charging Cable,1,11.95,09/08/19 11:08,"712 Hill St, New York City, NY 10001" +251604,USB-C Charging Cable,1,11.95,09/24/19 17:24,"160 Washington St, Seattle, WA 98101" +251605,AAA Batteries (4-pack),1,2.99,09/29/19 18:15,"470 Johnson St, San Francisco, CA 94016" +251606,Wired Headphones,1,11.99,09/29/19 22:06,"142 South St, Dallas, TX 75001" +251607,Bose SoundSport Headphones,1,99.99,09/01/19 10:25,"886 West St, Boston, MA 02215" +251608,AA Batteries (4-pack),1,3.84,09/25/19 10:54,"732 9th St, Atlanta, GA 30301" +251609,Vareebadd Phone,1,400,09/03/19 19:28,"763 Highland St, Seattle, WA 98101" +251610,USB-C Charging Cable,2,11.95,09/28/19 21:38,"844 Meadow St, Portland, OR 97035" +251611,Lightning Charging Cable,1,14.95,09/27/19 12:30,"349 River St, Atlanta, GA 30301" +251612,AAA Batteries (4-pack),1,2.99,09/21/19 13:00,"891 Ridge St, Los Angeles, CA 90001" +251613,iPhone,1,700,09/21/19 20:19,"438 Main St, Dallas, TX 75001" +251614,Bose SoundSport Headphones,1,99.99,09/19/19 16:59,"236 West St, New York City, NY 10001" +251615,USB-C Charging Cable,1,11.95,09/26/19 04:59,"974 1st St, Boston, MA 02215" +251616,Wired Headphones,1,11.99,09/23/19 07:05,"82 4th St, New York City, NY 10001" +251617,Google Phone,1,600,09/08/19 11:25,"556 Pine St, Los Angeles, CA 90001" +251618,Google Phone,1,600,09/01/19 12:55,"799 South St, Portland, OR 97035" +251619,Bose SoundSport Headphones,1,99.99,09/10/19 09:06,"662 Spruce St, Los Angeles, CA 90001" +251620,Apple Airpods Headphones,1,150,09/06/19 03:06,"252 Main St, Portland, OR 97035" +251621,Apple Airpods Headphones,1,150,09/26/19 16:14,"703 Jackson St, Portland, OR 97035" +251622,27in FHD Monitor,1,149.99,09/28/19 11:21,"87 Ridge St, San Francisco, CA 94016" +251623,Lightning Charging Cable,1,14.95,09/06/19 15:36,"250 Jefferson St, New York City, NY 10001" +251624,Bose SoundSport Headphones,1,99.99,09/30/19 19:04,"605 West St, Seattle, WA 98101" +251625,Lightning Charging Cable,3,14.95,09/01/19 11:29,"567 Highland St, San Francisco, CA 94016" +251626,AA Batteries (4-pack),3,3.84,09/25/19 05:35,"887 Lake St, San Francisco, CA 94016" +251627,Wired Headphones,1,11.99,09/21/19 12:17,"900 12th St, Boston, MA 02215" +251628,27in FHD Monitor,1,149.99,09/19/19 09:08,"646 Meadow St, New York City, NY 10001" +251629,27in 4K Gaming Monitor,1,389.99,09/30/19 15:52,"258 Center St, San Francisco, CA 94016" +251630,USB-C Charging Cable,1,11.95,09/25/19 19:03,"649 Ridge St, Los Angeles, CA 90001" +251631,Bose SoundSport Headphones,1,99.99,09/16/19 00:10,"918 River St, Dallas, TX 75001" +251632,Macbook Pro Laptop,1,1700,09/05/19 23:09,"661 9th St, San Francisco, CA 94016" +251633,AA Batteries (4-pack),1,3.84,09/30/19 19:29,"302 Forest St, San Francisco, CA 94016" +251634,Lightning Charging Cable,1,14.95,09/23/19 11:13,"685 10th St, San Francisco, CA 94016" +251635,AA Batteries (4-pack),1,3.84,09/07/19 14:22,"51 Jackson St, Los Angeles, CA 90001" +251636,AAA Batteries (4-pack),1,2.99,09/15/19 20:01,"672 Meadow St, Los Angeles, CA 90001" +251637,USB-C Charging Cable,1,11.95,09/27/19 13:13,"59 10th St, New York City, NY 10001" +251638,AA Batteries (4-pack),1,3.84,09/14/19 12:40,"787 Jackson St, New York City, NY 10001" +251638,AA Batteries (4-pack),2,3.84,09/14/19 12:40,"787 Jackson St, New York City, NY 10001" +251639,AAA Batteries (4-pack),1,2.99,09/11/19 15:41,"698 Center St, San Francisco, CA 94016" +251640,Bose SoundSport Headphones,1,99.99,09/11/19 14:50,"416 8th St, Seattle, WA 98101" +251641,iPhone,1,700,09/29/19 09:42,"356 Willow St, Los Angeles, CA 90001" +251642,Lightning Charging Cable,1,14.95,09/04/19 14:05,"647 Jefferson St, Atlanta, GA 30301" +251643,AAA Batteries (4-pack),4,2.99,09/30/19 10:23,"19 2nd St, Los Angeles, CA 90001" +251644,Lightning Charging Cable,1,14.95,09/05/19 13:51,"580 Lake St, San Francisco, CA 94016" +251645,Lightning Charging Cable,1,14.95,09/15/19 09:43,"243 2nd St, San Francisco, CA 94016" +251645,Wired Headphones,1,11.99,09/15/19 09:43,"243 2nd St, San Francisco, CA 94016" +251646,34in Ultrawide Monitor,1,379.99,09/20/19 12:37,"934 Center St, Dallas, TX 75001" +251647,Wired Headphones,1,11.99,09/12/19 18:29,"126 1st St, San Francisco, CA 94016" +251648,27in FHD Monitor,1,149.99,09/10/19 23:40,"421 Center St, Seattle, WA 98101" +251649,Lightning Charging Cable,1,14.95,09/14/19 19:18,"575 Elm St, Dallas, TX 75001" +251650,27in FHD Monitor,1,149.99,09/15/19 18:35,"692 8th St, Dallas, TX 75001" +251651,ThinkPad Laptop,1,999.99,09/10/19 15:33,"362 West St, San Francisco, CA 94016" +251652,AA Batteries (4-pack),1,3.84,09/26/19 20:26,"679 1st St, Atlanta, GA 30301" +251653,USB-C Charging Cable,2,11.95,09/11/19 08:47,"689 Jefferson St, Atlanta, GA 30301" +251654,Apple Airpods Headphones,1,150,09/22/19 20:01,"544 South St, Atlanta, GA 30301" +251655,Lightning Charging Cable,1,14.95,09/07/19 17:29,"731 Lincoln St, Portland, OR 97035" +251656,Flatscreen TV,1,300,09/29/19 19:35,"508 2nd St, Los Angeles, CA 90001" +251657,AAA Batteries (4-pack),1,2.99,09/24/19 13:24,"523 West St, San Francisco, CA 94016" +251658,Lightning Charging Cable,1,14.95,09/10/19 06:29,"965 Highland St, Boston, MA 02215" +251659,Bose SoundSport Headphones,1,99.99,09/22/19 18:13,"131 2nd St, Austin, TX 73301" +251660,27in FHD Monitor,1,149.99,09/11/19 11:53,"875 Hickory St, Atlanta, GA 30301" +251661,Macbook Pro Laptop,1,1700,09/22/19 17:57,"573 Washington St, New York City, NY 10001" +251662,Bose SoundSport Headphones,1,99.99,09/23/19 20:58,"386 5th St, New York City, NY 10001" +251663,AA Batteries (4-pack),2,3.84,09/07/19 14:25,"734 1st St, San Francisco, CA 94016" +251664,AAA Batteries (4-pack),1,2.99,09/24/19 12:15,"328 Lincoln St, Boston, MA 02215" +251665,Bose SoundSport Headphones,1,99.99,09/11/19 11:41,"930 Elm St, Boston, MA 02215" +251666,USB-C Charging Cable,1,11.95,09/07/19 16:29,"39 Pine St, New York City, NY 10001" +251667,AAA Batteries (4-pack),1,2.99,09/29/19 14:58,"2 14th St, Los Angeles, CA 90001" +251668,Wired Headphones,1,11.99,09/09/19 19:31,"197 North St, Portland, OR 97035" +251669,LG Dryer,1,600.0,09/22/19 08:06,"795 Hickory St, San Francisco, CA 94016" +251670,Bose SoundSport Headphones,1,99.99,09/29/19 12:28,"629 Hill St, Atlanta, GA 30301" +251671,27in FHD Monitor,1,149.99,09/26/19 21:58,"999 Jackson St, Dallas, TX 75001" +251672,AA Batteries (4-pack),1,3.84,09/03/19 16:35,"989 Jackson St, Austin, TX 73301" +251673,Wired Headphones,1,11.99,09/16/19 16:12,"842 Cedar St, Dallas, TX 75001" +251673,USB-C Charging Cable,1,11.95,09/16/19 16:12,"842 Cedar St, Dallas, TX 75001" +251674,Wired Headphones,1,11.99,09/26/19 16:02,"327 Adams St, Boston, MA 02215" +251675,Vareebadd Phone,1,400,09/17/19 17:11,"773 Lincoln St, Los Angeles, CA 90001" +251675,USB-C Charging Cable,1,11.95,09/17/19 17:11,"773 Lincoln St, Los Angeles, CA 90001" +251676,iPhone,1,700,09/05/19 21:18,"538 Main St, San Francisco, CA 94016" +251676,Lightning Charging Cable,1,14.95,09/05/19 21:18,"538 Main St, San Francisco, CA 94016" +251677,USB-C Charging Cable,2,11.95,09/27/19 22:03,"999 10th St, Boston, MA 02215" +251678,27in FHD Monitor,1,149.99,09/09/19 09:05,"219 Ridge St, Dallas, TX 75001" +251678,Apple Airpods Headphones,1,150,09/09/19 09:05,"219 Ridge St, Dallas, TX 75001" +251679,Flatscreen TV,1,300,09/14/19 21:40,"59 Washington St, Seattle, WA 98101" +251680,AA Batteries (4-pack),2,3.84,09/01/19 17:15,"750 8th St, Atlanta, GA 30301" +251681,Lightning Charging Cable,1,14.95,09/01/19 22:19,"970 North St, Boston, MA 02215" +251682,27in 4K Gaming Monitor,1,389.99,09/17/19 14:29,"831 10th St, San Francisco, CA 94016" +251683,iPhone,1,700,09/03/19 11:49,"932 South St, Dallas, TX 75001" +251683,Lightning Charging Cable,1,14.95,09/03/19 11:49,"932 South St, Dallas, TX 75001" +251684,27in FHD Monitor,1,149.99,09/19/19 17:26,"925 2nd St, San Francisco, CA 94016" +251685,AA Batteries (4-pack),1,3.84,09/06/19 18:45,"70 Jefferson St, Austin, TX 73301" +251686,AAA Batteries (4-pack),1,2.99,09/28/19 18:12,"346 Johnson St, Seattle, WA 98101" +251687,Lightning Charging Cable,1,14.95,09/03/19 15:55,"280 4th St, Dallas, TX 75001" +251688,Wired Headphones,1,11.99,09/05/19 02:25,"352 Dogwood St, Boston, MA 02215" +251689,USB-C Charging Cable,1,11.95,09/10/19 23:53,"882 Lake St, San Francisco, CA 94016" +251690,Apple Airpods Headphones,1,150,09/21/19 12:31,"243 5th St, Los Angeles, CA 90001" +251691,USB-C Charging Cable,1,11.95,09/20/19 00:08,"440 Hill St, Seattle, WA 98101" +251692,Macbook Pro Laptop,1,1700,09/27/19 07:40,"998 6th St, Seattle, WA 98101" +251693,Macbook Pro Laptop,1,1700,09/09/19 14:13,"893 North St, Boston, MA 02215" +251694,Flatscreen TV,1,300,09/27/19 10:04,"294 Meadow St, Los Angeles, CA 90001" +251695,USB-C Charging Cable,1,11.95,09/14/19 16:56,"533 8th St, Portland, OR 97035" +251696,Vareebadd Phone,1,400,09/13/19 18:28,"596 Hickory St, New York City, NY 10001" +251697,27in FHD Monitor,1,149.99,09/05/19 20:05,"784 Forest St, San Francisco, CA 94016" +251697,AAA Batteries (4-pack),3,2.99,09/05/19 20:05,"784 Forest St, San Francisco, CA 94016" +251698,USB-C Charging Cable,1,11.95,09/12/19 11:21,"588 12th St, Atlanta, GA 30301" +251699,AAA Batteries (4-pack),1,2.99,09/01/19 07:06,"331 10th St, Los Angeles, CA 90001" +251700,AA Batteries (4-pack),2,3.84,09/17/19 11:10,"207 8th St, San Francisco, CA 94016" +251701,Lightning Charging Cable,1,14.95,09/17/19 20:08,"294 Forest St, Atlanta, GA 30301" +251702,Lightning Charging Cable,1,14.95,09/24/19 16:56,"387 4th St, Portland, OR 97035" +251703,AA Batteries (4-pack),1,3.84,09/19/19 20:33,"154 Elm St, Dallas, TX 75001" +251704,Apple Airpods Headphones,1,150,09/03/19 12:13,"105 Hickory St, San Francisco, CA 94016" +251705,AA Batteries (4-pack),1,3.84,09/03/19 16:00,"933 8th St, Boston, MA 02215" +251706,Google Phone,1,600,09/13/19 19:40,"948 Park St, San Francisco, CA 94016" +251707,20in Monitor,1,109.99,09/27/19 11:40,"800 Church St, Dallas, TX 75001" +251708,Bose SoundSport Headphones,1,99.99,09/04/19 14:03,"495 1st St, Seattle, WA 98101" +251709,USB-C Charging Cable,1,11.95,09/26/19 17:29,"175 1st St, San Francisco, CA 94016" +251710,Lightning Charging Cable,1,14.95,09/14/19 09:14,"714 5th St, Dallas, TX 75001" +251711,Apple Airpods Headphones,1,150,09/08/19 21:26,"59 Park St, Dallas, TX 75001" +251712,Vareebadd Phone,1,400,09/16/19 18:08,"181 8th St, Portland, OR 97035" +251713,AAA Batteries (4-pack),1,2.99,09/11/19 15:22,"306 8th St, Los Angeles, CA 90001" +251714,AA Batteries (4-pack),1,3.84,09/27/19 08:55,"897 11th St, San Francisco, CA 94016" +251715,Bose SoundSport Headphones,1,99.99,09/20/19 18:53,"865 Adams St, Atlanta, GA 30301" +251716,Bose SoundSport Headphones,1,99.99,09/18/19 20:16,"799 Meadow St, Austin, TX 73301" +251717,27in 4K Gaming Monitor,1,389.99,09/05/19 18:55,"745 West St, Austin, TX 73301" +251718,Apple Airpods Headphones,1,150,09/29/19 17:58,"529 North St, Atlanta, GA 30301" +251719,Lightning Charging Cable,1,14.95,09/05/19 09:22,"163 Lake St, San Francisco, CA 94016" +251720,Lightning Charging Cable,2,14.95,09/16/19 20:54,"634 2nd St, San Francisco, CA 94016" +251721,Wired Headphones,1,11.99,09/22/19 15:38,"976 Hickory St, San Francisco, CA 94016" +251722,27in FHD Monitor,1,149.99,09/08/19 18:23,"53 South St, Los Angeles, CA 90001" +251723,Bose SoundSport Headphones,1,99.99,09/22/19 11:04,"652 8th St, Boston, MA 02215" +251723,USB-C Charging Cable,1,11.95,09/22/19 11:04,"652 8th St, Boston, MA 02215" +251724,Macbook Pro Laptop,1,1700,09/03/19 17:23,"612 Walnut St, New York City, NY 10001" +251725,AA Batteries (4-pack),2,3.84,09/12/19 12:38,"428 Forest St, Los Angeles, CA 90001" +251726,27in FHD Monitor,1,149.99,09/28/19 22:31,"91 Washington St, New York City, NY 10001" +251727,ThinkPad Laptop,1,999.99,09/14/19 01:23,"969 Elm St, New York City, NY 10001" +251728,Lightning Charging Cable,1,14.95,09/30/19 10:14,"41 1st St, Los Angeles, CA 90001" +251729,27in 4K Gaming Monitor,1,389.99,09/04/19 09:24,"243 Hickory St, Boston, MA 02215" +251730,AA Batteries (4-pack),1,3.84,09/23/19 06:00,"866 Cherry St, Los Angeles, CA 90001" +251731,Bose SoundSport Headphones,1,99.99,09/22/19 01:10,"933 West St, Los Angeles, CA 90001" +251732,Lightning Charging Cable,1,14.95,09/06/19 13:52,"788 Walnut St, Atlanta, GA 30301" +251733,Wired Headphones,1,11.99,09/08/19 19:52,"184 8th St, Boston, MA 02215" +251734,AAA Batteries (4-pack),1,2.99,09/02/19 10:09,"592 Adams St, Atlanta, GA 30301" +251735,AAA Batteries (4-pack),1,2.99,09/25/19 12:29,"942 Church St, Dallas, TX 75001" +251735,Apple Airpods Headphones,1,150,09/25/19 12:29,"942 Church St, Dallas, TX 75001" +251736,USB-C Charging Cable,1,11.95,09/13/19 11:16,"805 Jackson St, Boston, MA 02215" +251737,AA Batteries (4-pack),2,3.84,09/13/19 11:59,"428 Sunset St, San Francisco, CA 94016" +,,,,, +251738,Wired Headphones,1,11.99,09/24/19 16:48,"233 11th St, New York City, NY 10001" +251739,USB-C Charging Cable,1,11.95,09/22/19 19:30,"755 Lincoln St, San Francisco, CA 94016" +251740,AAA Batteries (4-pack),1,2.99,09/05/19 09:25,"920 Cherry St, New York City, NY 10001" +251741,Bose SoundSport Headphones,1,99.99,09/15/19 09:33,"251 Wilson St, New York City, NY 10001" +251742,AA Batteries (4-pack),2,3.84,09/06/19 13:48,"448 Dogwood St, Atlanta, GA 30301" +251743,Wired Headphones,1,11.99,09/09/19 17:54,"78 Highland St, Dallas, TX 75001" +251744,Wired Headphones,2,11.99,09/06/19 16:36,"449 Wilson St, San Francisco, CA 94016" +251745,27in 4K Gaming Monitor,1,389.99,09/25/19 17:22,"605 2nd St, Los Angeles, CA 90001" +251746,Lightning Charging Cable,1,14.95,09/06/19 23:35,"165 South St, San Francisco, CA 94016" +251747,Apple Airpods Headphones,1,150,09/10/19 15:11,"962 Maple St, Los Angeles, CA 90001" +251748,Wired Headphones,1,11.99,09/12/19 09:48,"835 6th St, San Francisco, CA 94016" +251749,Wired Headphones,2,11.99,09/25/19 10:09,"898 2nd St, New York City, NY 10001" +251750,Google Phone,1,600,09/19/19 23:15,"314 12th St, Seattle, WA 98101" +251750,USB-C Charging Cable,1,11.95,09/19/19 23:15,"314 12th St, Seattle, WA 98101" +251750,Wired Headphones,2,11.99,09/19/19 23:15,"314 12th St, Seattle, WA 98101" +251751,Lightning Charging Cable,1,14.95,09/10/19 15:35,"516 Highland St, San Francisco, CA 94016" +251752,AAA Batteries (4-pack),2,2.99,09/25/19 18:42,"579 Church St, Los Angeles, CA 90001" +251753,Flatscreen TV,1,300,09/05/19 17:49,"264 Pine St, Los Angeles, CA 90001" +251754,Wired Headphones,1,11.99,09/20/19 18:18,"447 Highland St, San Francisco, CA 94016" +251755,AAA Batteries (4-pack),3,2.99,09/10/19 12:11,"936 Pine St, Seattle, WA 98101" +251756,AA Batteries (4-pack),1,3.84,09/02/19 14:13,"422 Willow St, Los Angeles, CA 90001" +251757,AAA Batteries (4-pack),1,2.99,09/11/19 08:51,"196 Johnson St, Atlanta, GA 30301" +251757,Apple Airpods Headphones,1,150,09/11/19 08:51,"196 Johnson St, Atlanta, GA 30301" +251758,Bose SoundSport Headphones,1,99.99,09/10/19 19:44,"375 Main St, San Francisco, CA 94016" +251759,AAA Batteries (4-pack),2,2.99,09/27/19 14:43,"193 13th St, San Francisco, CA 94016" +251760,Google Phone,1,600,09/16/19 09:41,"49 Sunset St, San Francisco, CA 94016" +251760,USB-C Charging Cable,1,11.95,09/16/19 09:41,"49 Sunset St, San Francisco, CA 94016" +251761,AA Batteries (4-pack),1,3.84,09/21/19 23:02,"239 Cherry St, New York City, NY 10001" +251762,Apple Airpods Headphones,1,150,09/19/19 08:03,"668 2nd St, Seattle, WA 98101" +251763,Apple Airpods Headphones,1,150,09/13/19 12:56,"874 Adams St, Boston, MA 02215" +251764,Google Phone,1,600,09/08/19 14:34,"955 Park St, Los Angeles, CA 90001" +251764,Bose SoundSport Headphones,1,99.99,09/08/19 14:34,"955 Park St, Los Angeles, CA 90001" +251765,Lightning Charging Cable,1,14.95,09/25/19 21:42,"73 9th St, San Francisco, CA 94016" +251766,Bose SoundSport Headphones,1,99.99,09/26/19 13:15,"824 Meadow St, Boston, MA 02215" +251767,Flatscreen TV,1,300,09/26/19 23:21,"614 Johnson St, Los Angeles, CA 90001" +251768,USB-C Charging Cable,1,11.95,09/22/19 14:57,"724 Walnut St, Los Angeles, CA 90001" +251769,USB-C Charging Cable,1,11.95,09/28/19 18:10,"582 Highland St, Seattle, WA 98101" +251770,AA Batteries (4-pack),1,3.84,09/28/19 09:54,"222 Wilson St, Portland, OR 97035" +251771,AAA Batteries (4-pack),1,2.99,09/27/19 14:44,"867 South St, San Francisco, CA 94016" +251772,Bose SoundSport Headphones,1,99.99,09/12/19 20:15,"282 Cherry St, Atlanta, GA 30301" +251773,AAA Batteries (4-pack),1,2.99,09/22/19 13:45,"917 Jackson St, Atlanta, GA 30301" +251774,AA Batteries (4-pack),1,3.84,09/28/19 15:43,"837 Sunset St, Dallas, TX 75001" +251775,AAA Batteries (4-pack),2,2.99,09/20/19 21:41,"314 Hill St, Los Angeles, CA 90001" +251776,Bose SoundSport Headphones,1,99.99,09/04/19 10:22,"708 14th St, Los Angeles, CA 90001" +251777,AAA Batteries (4-pack),2,2.99,09/19/19 20:43,"827 Wilson St, Seattle, WA 98101" +251778,AA Batteries (4-pack),2,3.84,09/10/19 13:21,"767 11th St, Portland, OR 97035" +251779,Flatscreen TV,1,300,09/22/19 19:00,"858 8th St, Boston, MA 02215" +251780,iPhone,1,700,09/20/19 21:37,"349 North St, San Francisco, CA 94016" +251781,Bose SoundSport Headphones,1,99.99,09/02/19 00:22,"343 Willow St, Atlanta, GA 30301" +251782,Macbook Pro Laptop,1,1700,09/13/19 13:26,"947 4th St, New York City, NY 10001" +251783,USB-C Charging Cable,1,11.95,09/22/19 21:15,"796 Maple St, San Francisco, CA 94016" +251784,20in Monitor,1,109.99,09/15/19 20:23,"93 Walnut St, Seattle, WA 98101" +251785,USB-C Charging Cable,1,11.95,09/01/19 22:08,"998 Ridge St, Seattle, WA 98101" +251786,iPhone,1,700,09/21/19 13:59,"227 Main St, Atlanta, GA 30301" +251787,Flatscreen TV,1,300,09/20/19 18:38,"264 9th St, Austin, TX 73301" +251788,AAA Batteries (4-pack),1,2.99,09/19/19 16:51,"529 North St, Boston, MA 02215" +251789,AAA Batteries (4-pack),1,2.99,09/28/19 09:37,"417 Center St, Boston, MA 02215" +251790,Google Phone,1,600,09/15/19 19:36,"322 9th St, Austin, TX 73301" +251790,Bose SoundSport Headphones,1,99.99,09/15/19 19:36,"322 9th St, Austin, TX 73301" +251791,AA Batteries (4-pack),1,3.84,09/08/19 07:44,"15 7th St, Los Angeles, CA 90001" +251792,Lightning Charging Cable,1,14.95,09/09/19 14:51,"486 7th St, San Francisco, CA 94016" +251793,AAA Batteries (4-pack),1,2.99,09/08/19 17:25,"840 Meadow St, San Francisco, CA 94016" +251794,AA Batteries (4-pack),1,3.84,09/24/19 18:24,"76 Willow St, New York City, NY 10001" +251795,AA Batteries (4-pack),1,3.84,09/30/19 15:52,"18 Lake St, Los Angeles, CA 90001" +251796,Google Phone,1,600,09/27/19 10:12,"743 14th St, Los Angeles, CA 90001" +251797,Bose SoundSport Headphones,1,99.99,09/30/19 17:11,"160 Jackson St, Los Angeles, CA 90001" +251798,Apple Airpods Headphones,1,150,09/12/19 09:52,"660 North St, Boston, MA 02215" +251799,AAA Batteries (4-pack),8,2.99,09/17/19 20:13,"323 Spruce St, Seattle, WA 98101" +251800,27in FHD Monitor,1,149.99,09/09/19 18:35,"138 Lake St, Dallas, TX 75001" +251801,Lightning Charging Cable,1,14.95,09/22/19 15:08,"664 14th St, New York City, NY 10001" +251802,USB-C Charging Cable,1,11.95,09/16/19 18:41,"136 North St, Atlanta, GA 30301" +251803,20in Monitor,1,109.99,09/02/19 09:56,"548 Cherry St, Los Angeles, CA 90001" +251804,AAA Batteries (4-pack),1,2.99,09/16/19 05:16,"458 Highland St, Atlanta, GA 30301" +251805,Bose SoundSport Headphones,1,99.99,09/07/19 21:20,"510 8th St, Los Angeles, CA 90001" +251806,iPhone,1,700,09/09/19 14:22,"241 Lakeview St, San Francisco, CA 94016" +251807,AAA Batteries (4-pack),2,2.99,09/25/19 19:29,"720 Lincoln St, Los Angeles, CA 90001" +251808,34in Ultrawide Monitor,1,379.99,09/03/19 15:04,"292 1st St, Seattle, WA 98101" +251809,AA Batteries (4-pack),1,3.84,09/12/19 20:06,"670 Hill St, Portland, OR 97035" +251810,Macbook Pro Laptop,1,1700,09/28/19 19:11,"568 North St, Los Angeles, CA 90001" +251811,USB-C Charging Cable,1,11.95,09/17/19 02:44,"754 9th St, New York City, NY 10001" +251812,Google Phone,1,600,09/14/19 15:52,"47 Wilson St, Los Angeles, CA 90001" +251812,Wired Headphones,1,11.99,09/14/19 15:52,"47 Wilson St, Los Angeles, CA 90001" +251813,ThinkPad Laptop,1,999.99,09/01/19 23:00,"676 North St, Boston, MA 02215" +251814,Lightning Charging Cable,1,14.95,09/10/19 01:17,"22 Center St, San Francisco, CA 94016" +251815,AA Batteries (4-pack),1,3.84,09/12/19 12:33,"235 Ridge St, San Francisco, CA 94016" +251816,Flatscreen TV,1,300,09/21/19 06:06,"237 5th St, San Francisco, CA 94016" +251817,AA Batteries (4-pack),1,3.84,09/06/19 17:13,"937 Lake St, Austin, TX 73301" +251818,USB-C Charging Cable,1,11.95,09/09/19 02:29,"299 Cedar St, Dallas, TX 75001" +251819,iPhone,1,700,09/19/19 12:06,"85 Center St, San Francisco, CA 94016" +251819,Lightning Charging Cable,1,14.95,09/19/19 12:06,"85 Center St, San Francisco, CA 94016" +251819,Apple Airpods Headphones,1,150,09/19/19 12:06,"85 Center St, San Francisco, CA 94016" +251820,Wired Headphones,1,11.99,09/19/19 11:58,"532 Ridge St, Los Angeles, CA 90001" +251821,AAA Batteries (4-pack),1,2.99,09/17/19 21:51,"63 13th St, Los Angeles, CA 90001" +251822,Lightning Charging Cable,1,14.95,09/21/19 00:27,"35 Sunset St, Portland, ME 04101" +251823,Apple Airpods Headphones,1,150,09/05/19 19:52,"176 Hickory St, Portland, OR 97035" +251824,AAA Batteries (4-pack),1,2.99,09/11/19 18:09,"76 Hickory St, New York City, NY 10001" +251825,USB-C Charging Cable,1,11.95,09/28/19 18:24,"989 Cedar St, New York City, NY 10001" +251826,iPhone,1,700,09/20/19 00:29,"475 Ridge St, Dallas, TX 75001" +251826,Lightning Charging Cable,1,14.95,09/20/19 00:29,"475 Ridge St, Dallas, TX 75001" +251827,Wired Headphones,1,11.99,09/25/19 12:14,"443 10th St, Atlanta, GA 30301" +251828,Wired Headphones,1,11.99,09/12/19 11:50,"561 Chestnut St, Austin, TX 73301" +251829,AA Batteries (4-pack),3,3.84,09/07/19 19:18,"561 4th St, San Francisco, CA 94016" +251830,27in FHD Monitor,1,149.99,09/11/19 21:41,"248 Meadow St, Los Angeles, CA 90001" +251831,USB-C Charging Cable,1,11.95,09/07/19 12:06,"849 4th St, Los Angeles, CA 90001" +251832,AAA Batteries (4-pack),1,2.99,09/04/19 07:34,"364 West St, San Francisco, CA 94016" +251833,AA Batteries (4-pack),1,3.84,09/15/19 13:33,"106 Adams St, San Francisco, CA 94016" +251834,Lightning Charging Cable,1,14.95,09/03/19 10:04,"696 Maple St, Los Angeles, CA 90001" +251835,Bose SoundSport Headphones,1,99.99,09/20/19 14:18,"295 Cedar St, San Francisco, CA 94016" +251836,27in 4K Gaming Monitor,1,389.99,09/01/19 11:40,"702 Lakeview St, Seattle, WA 98101" +251837,AAA Batteries (4-pack),6,2.99,09/10/19 10:02,"325 Wilson St, Boston, MA 02215" +251838,Lightning Charging Cable,1,14.95,09/25/19 16:19,"436 9th St, San Francisco, CA 94016" +251839,Lightning Charging Cable,2,14.95,09/17/19 20:01,"36 Park St, Portland, ME 04101" +251840,Apple Airpods Headphones,1,150,09/05/19 13:33,"400 River St, Atlanta, GA 30301" +251841,27in FHD Monitor,1,149.99,09/23/19 19:55,"685 11th St, Atlanta, GA 30301" +251842,USB-C Charging Cable,1,11.95,09/18/19 21:39,"718 Elm St, San Francisco, CA 94016" +251843,AAA Batteries (4-pack),1,2.99,09/23/19 11:41,"971 5th St, Seattle, WA 98101" +251844,USB-C Charging Cable,1,11.95,09/30/19 23:01,"646 Madison St, Dallas, TX 75001" +251845,Wired Headphones,1,11.99,09/07/19 10:37,"855 Chestnut St, Dallas, TX 75001" +251846,Bose SoundSport Headphones,1,99.99,09/26/19 16:11,"384 5th St, Portland, OR 97035" +251847,Bose SoundSport Headphones,1,99.99,09/16/19 14:53,"978 Lake St, Los Angeles, CA 90001" +251848,Lightning Charging Cable,1,14.95,09/08/19 17:42,"511 West St, Boston, MA 02215" +251849,AAA Batteries (4-pack),1,2.99,09/23/19 03:29,"866 Lincoln St, New York City, NY 10001" +251850,AA Batteries (4-pack),3,3.84,09/07/19 10:35,"776 Hickory St, Dallas, TX 75001" +251851,USB-C Charging Cable,1,11.95,09/26/19 09:24,"196 South St, New York City, NY 10001" +251852,AAA Batteries (4-pack),2,2.99,09/05/19 07:31,"653 Johnson St, Los Angeles, CA 90001" +251853,USB-C Charging Cable,1,11.95,09/09/19 11:47,"206 Willow St, New York City, NY 10001" +251854,AA Batteries (4-pack),3,3.84,09/08/19 17:48,"315 Main St, Atlanta, GA 30301" +251855,Wired Headphones,1,11.99,09/01/19 15:04,"67 Walnut St, Seattle, WA 98101" +251856,ThinkPad Laptop,1,999.99,09/29/19 22:51,"671 Lakeview St, Portland, OR 97035" +251857,AA Batteries (4-pack),1,3.84,09/17/19 15:36,"190 Washington St, Dallas, TX 75001" +251858,Wired Headphones,1,11.99,09/19/19 23:16,"550 Park St, Los Angeles, CA 90001" +251859,Apple Airpods Headphones,1,150,09/28/19 17:31,"425 Willow St, Portland, OR 97035" +251860,27in FHD Monitor,1,149.99,09/18/19 15:21,"904 8th St, Boston, MA 02215" +251861,LG Dryer,1,600.0,09/05/19 09:13,"177 8th St, Portland, OR 97035" +251862,AA Batteries (4-pack),2,3.84,09/16/19 15:35,"766 12th St, San Francisco, CA 94016" +251863,Apple Airpods Headphones,1,150,09/03/19 18:22,"869 Walnut St, San Francisco, CA 94016" +251864,Apple Airpods Headphones,1,150,09/11/19 16:07,"696 7th St, New York City, NY 10001" +251865,27in FHD Monitor,1,149.99,09/04/19 20:25,"687 Dogwood St, San Francisco, CA 94016" +251866,AA Batteries (4-pack),2,3.84,09/15/19 22:27,"723 Johnson St, Boston, MA 02215" +251867,34in Ultrawide Monitor,1,379.99,09/19/19 17:55,"838 Ridge St, New York City, NY 10001" +251868,Wired Headphones,1,11.99,09/20/19 10:49,"361 Forest St, San Francisco, CA 94016" +251869,USB-C Charging Cable,1,11.95,09/24/19 14:42,"369 Lincoln St, Los Angeles, CA 90001" +251870,AAA Batteries (4-pack),2,2.99,09/05/19 16:20,"901 5th St, Dallas, TX 75001" +251871,34in Ultrawide Monitor,1,379.99,09/07/19 08:15,"153 Meadow St, Portland, ME 04101" +251872,AAA Batteries (4-pack),1,2.99,09/09/19 14:13,"378 Hill St, Boston, MA 02215" +251873,Lightning Charging Cable,2,14.95,09/03/19 11:00,"282 5th St, San Francisco, CA 94016" +251874,Wired Headphones,1,11.99,09/22/19 11:48,"491 Hill St, Los Angeles, CA 90001" +251875,Lightning Charging Cable,1,14.95,09/24/19 13:16,"435 Lake St, Portland, OR 97035" +251876,34in Ultrawide Monitor,1,379.99,09/07/19 14:29,"403 Washington St, Seattle, WA 98101" +251877,AAA Batteries (4-pack),1,2.99,09/13/19 13:46,"630 Wilson St, San Francisco, CA 94016" +251878,Google Phone,1,600,09/07/19 10:23,"415 2nd St, Dallas, TX 75001" +251879,Bose SoundSport Headphones,1,99.99,09/25/19 01:05,"466 South St, Boston, MA 02215" +251880,27in 4K Gaming Monitor,1,389.99,09/02/19 11:38,"109 Cedar St, Seattle, WA 98101" +251881,ThinkPad Laptop,1,999.99,09/28/19 11:36,"961 Johnson St, San Francisco, CA 94016" +251882,20in Monitor,1,109.99,09/05/19 17:52,"613 Lake St, Boston, MA 02215" +251883,Google Phone,1,600,09/06/19 21:31,"918 12th St, Seattle, WA 98101" +251884,iPhone,1,700,09/17/19 18:37,"329 Madison St, Portland, OR 97035" +251885,27in FHD Monitor,1,149.99,09/19/19 06:48,"708 Center St, New York City, NY 10001" +251886,Google Phone,1,600,09/21/19 15:09,"409 1st St, Boston, MA 02215" +251887,20in Monitor,1,109.99,09/21/19 10:42,"55 Jackson St, Seattle, WA 98101" +251888,Apple Airpods Headphones,1,150,09/07/19 12:47,"934 Lakeview St, Atlanta, GA 30301" +,,,,, +251889,Lightning Charging Cable,2,14.95,09/04/19 15:51,"77 4th St, San Francisco, CA 94016" +251890,Lightning Charging Cable,1,14.95,09/27/19 12:07,"725 1st St, San Francisco, CA 94016" +251891,AAA Batteries (4-pack),1,2.99,09/29/19 22:02,"501 Cherry St, New York City, NY 10001" +251892,AA Batteries (4-pack),1,3.84,09/12/19 19:55,"639 Dogwood St, Portland, OR 97035" +251893,34in Ultrawide Monitor,1,379.99,09/27/19 12:17,"954 Hill St, Portland, OR 97035" +251894,Google Phone,1,600,09/23/19 19:30,"168 West St, Boston, MA 02215" +251894,USB-C Charging Cable,1,11.95,09/23/19 19:30,"168 West St, Boston, MA 02215" +251894,Wired Headphones,2,11.99,09/23/19 19:30,"168 West St, Boston, MA 02215" +251895,Vareebadd Phone,1,400,09/16/19 20:26,"818 Center St, San Francisco, CA 94016" +251896,Lightning Charging Cable,1,14.95,09/12/19 11:41,"261 Park St, Portland, OR 97035" +251897,ThinkPad Laptop,1,999.99,09/13/19 06:22,"494 Jackson St, Los Angeles, CA 90001" +251898,USB-C Charging Cable,1,11.95,09/06/19 08:08,"301 Chestnut St, Los Angeles, CA 90001" +251899,Apple Airpods Headphones,1,150,09/05/19 14:15,"677 Highland St, Portland, OR 97035" +251900,Lightning Charging Cable,1,14.95,09/20/19 11:10,"481 Chestnut St, New York City, NY 10001" +251901,34in Ultrawide Monitor,1,379.99,09/16/19 15:40,"784 Adams St, Los Angeles, CA 90001" +251902,Wired Headphones,1,11.99,09/28/19 13:29,"524 7th St, Seattle, WA 98101" +251903,Vareebadd Phone,1,400,09/20/19 07:26,"550 Dogwood St, Los Angeles, CA 90001" +251904,AA Batteries (4-pack),1,3.84,09/19/19 17:29,"533 Cedar St, Portland, OR 97035" +251905,Bose SoundSport Headphones,1,99.99,09/04/19 20:19,"569 Hickory St, Seattle, WA 98101" +251906,Wired Headphones,1,11.99,09/24/19 12:47,"612 Chestnut St, Los Angeles, CA 90001" +251907,Lightning Charging Cable,2,14.95,09/08/19 15:13,"79 5th St, Seattle, WA 98101" +251908,Bose SoundSport Headphones,1,99.99,09/02/19 13:26,"584 Hickory St, Boston, MA 02215" +251909,Macbook Pro Laptop,1,1700,09/28/19 17:11,"900 West St, Boston, MA 02215" +251910,Bose SoundSport Headphones,1,99.99,09/06/19 17:49,"142 Sunset St, Dallas, TX 75001" +251911,Bose SoundSport Headphones,1,99.99,09/14/19 10:28,"363 Elm St, Seattle, WA 98101" +251912,Apple Airpods Headphones,1,150,09/11/19 15:22,"567 4th St, Los Angeles, CA 90001" +251913,Wired Headphones,1,11.99,09/30/19 21:41,"530 8th St, Boston, MA 02215" +251914,Lightning Charging Cable,1,14.95,09/18/19 16:33,"834 12th St, Dallas, TX 75001" +251915,AAA Batteries (4-pack),1,2.99,09/12/19 16:58,"567 11th St, San Francisco, CA 94016" +251916,27in 4K Gaming Monitor,1,389.99,09/09/19 12:34,"133 Church St, Seattle, WA 98101" +251917,Apple Airpods Headphones,1,150,09/12/19 20:58,"751 11th St, Atlanta, GA 30301" +251918,Lightning Charging Cable,1,14.95,09/18/19 20:48,"145 14th St, Boston, MA 02215" +251919,AA Batteries (4-pack),1,3.84,09/15/19 15:35,"644 Cherry St, Portland, OR 97035" +251920,AAA Batteries (4-pack),1,2.99,09/28/19 20:11,"369 Lake St, Los Angeles, CA 90001" +251921,Bose SoundSport Headphones,1,99.99,09/13/19 09:51,"959 8th St, Boston, MA 02215" +251922,Bose SoundSport Headphones,1,99.99,09/24/19 00:16,"271 North St, San Francisco, CA 94016" +251923,Apple Airpods Headphones,1,150,09/09/19 20:56,"615 Pine St, San Francisco, CA 94016" +251924,AA Batteries (4-pack),1,3.84,09/22/19 09:26,"698 Pine St, Atlanta, GA 30301" +251925,AA Batteries (4-pack),1,3.84,09/06/19 15:46,"783 Wilson St, San Francisco, CA 94016" +251926,Wired Headphones,1,11.99,09/18/19 21:37,"780 West St, Portland, ME 04101" +251927,USB-C Charging Cable,1,11.95,09/30/19 08:11,"536 Forest St, Atlanta, GA 30301" +251928,Wired Headphones,1,11.99,09/22/19 04:43,"574 Wilson St, San Francisco, CA 94016" +251929,Lightning Charging Cable,1,14.95,09/16/19 21:58,"907 Wilson St, San Francisco, CA 94016" +251930,AA Batteries (4-pack),1,3.84,09/26/19 17:57,"558 13th St, Seattle, WA 98101" +251931,AAA Batteries (4-pack),2,2.99,09/29/19 15:59,"561 Sunset St, Boston, MA 02215" +251932,USB-C Charging Cable,1,11.95,09/10/19 14:59,"667 1st St, San Francisco, CA 94016" +251933,AA Batteries (4-pack),1,3.84,09/14/19 15:09,"407 Washington St, New York City, NY 10001" +251934,27in 4K Gaming Monitor,1,389.99,09/14/19 18:36,"417 12th St, San Francisco, CA 94016" +251935,ThinkPad Laptop,1,999.99,09/30/19 10:15,"380 6th St, Dallas, TX 75001" +251936,Apple Airpods Headphones,1,150,09/03/19 18:00,"22 Maple St, San Francisco, CA 94016" +251937,Lightning Charging Cable,1,14.95,09/01/19 16:28,"765 9th St, San Francisco, CA 94016" +251938,AA Batteries (4-pack),1,3.84,09/22/19 23:59,"138 Cherry St, San Francisco, CA 94016" +251939,Lightning Charging Cable,1,14.95,09/17/19 19:51,"265 Maple St, Austin, TX 73301" +251940,USB-C Charging Cable,1,11.95,09/14/19 05:23,"306 Adams St, Portland, OR 97035" +251941,27in 4K Gaming Monitor,1,389.99,09/24/19 06:53,"401 7th St, San Francisco, CA 94016" +251942,AAA Batteries (4-pack),1,2.99,09/07/19 12:00,"545 4th St, Dallas, TX 75001" +251943,Bose SoundSport Headphones,1,99.99,09/14/19 18:21,"524 Ridge St, Portland, OR 97035" +251944,20in Monitor,1,109.99,09/10/19 19:44,"912 River St, Portland, OR 97035" +251945,AA Batteries (4-pack),1,3.84,09/25/19 12:21,"554 Walnut St, New York City, NY 10001" +251946,Flatscreen TV,1,300,09/21/19 02:02,"787 1st St, Atlanta, GA 30301" +251947,20in Monitor,1,109.99,09/19/19 18:02,"592 Spruce St, Los Angeles, CA 90001" +251948,Flatscreen TV,1,300,09/23/19 10:02,"441 Jackson St, Los Angeles, CA 90001" +251949,34in Ultrawide Monitor,1,379.99,09/19/19 15:27,"290 7th St, Portland, ME 04101" +251950,Macbook Pro Laptop,1,1700,09/06/19 18:46,"103 Lakeview St, San Francisco, CA 94016" +251951,Apple Airpods Headphones,1,150,09/10/19 21:44,"653 River St, Los Angeles, CA 90001" +251952,27in 4K Gaming Monitor,1,389.99,09/02/19 11:09,"29 Cherry St, New York City, NY 10001" +251953,AAA Batteries (4-pack),1,2.99,09/21/19 18:43,"818 9th St, New York City, NY 10001" +251954,iPhone,1,700,09/17/19 18:17,"731 10th St, San Francisco, CA 94016" +251955,27in 4K Gaming Monitor,1,389.99,09/17/19 16:42,"599 Jackson St, Boston, MA 02215" +251956,AA Batteries (4-pack),1,3.84,09/30/19 15:40,"753 Park St, Seattle, WA 98101" +251957,AAA Batteries (4-pack),1,2.99,09/09/19 13:08,"876 Walnut St, Los Angeles, CA 90001" +251958,Flatscreen TV,1,300,09/20/19 15:17,"625 Spruce St, Dallas, TX 75001" +251959,AAA Batteries (4-pack),1,2.99,09/12/19 19:45,"359 Walnut St, Boston, MA 02215" +251960,USB-C Charging Cable,1,11.95,09/17/19 10:14,"767 Willow St, Boston, MA 02215" +251961,AA Batteries (4-pack),1,3.84,09/30/19 20:38,"62 Hickory St, Atlanta, GA 30301" +251962,Lightning Charging Cable,1,14.95,09/02/19 20:20,"479 Walnut St, Seattle, WA 98101" +251963,AA Batteries (4-pack),1,3.84,09/19/19 15:10,"154 Dogwood St, Boston, MA 02215" +251964,Apple Airpods Headphones,1,150,09/30/19 18:45,"474 Chestnut St, Dallas, TX 75001" +251965,Apple Airpods Headphones,1,150,09/29/19 09:05,"362 6th St, Portland, OR 97035" +251966,AAA Batteries (4-pack),1,2.99,09/22/19 12:40,"712 13th St, San Francisco, CA 94016" +251967,27in 4K Gaming Monitor,1,389.99,09/04/19 20:20,"408 Lake St, San Francisco, CA 94016" +251968,AA Batteries (4-pack),1,3.84,09/25/19 21:56,"433 River St, Dallas, TX 75001" +251969,Bose SoundSport Headphones,1,99.99,09/23/19 17:21,"487 Jefferson St, New York City, NY 10001" +251970,Apple Airpods Headphones,1,150,09/17/19 08:08,"216 Madison St, San Francisco, CA 94016" +251971,AA Batteries (4-pack),1,3.84,09/20/19 19:19,"174 Elm St, Seattle, WA 98101" +251972,AAA Batteries (4-pack),1,2.99,09/25/19 13:16,"104 Lakeview St, Los Angeles, CA 90001" +251973,Bose SoundSport Headphones,1,99.99,09/26/19 18:54,"540 North St, Dallas, TX 75001" +251974,AAA Batteries (4-pack),1,2.99,09/23/19 12:20,"788 Sunset St, Dallas, TX 75001" +251975,Apple Airpods Headphones,2,150,09/28/19 19:57,"449 Lake St, Dallas, TX 75001" +251976,Lightning Charging Cable,1,14.95,09/20/19 17:25,"728 Cedar St, New York City, NY 10001" +251977,Bose SoundSport Headphones,1,99.99,09/24/19 18:48,"541 Willow St, San Francisco, CA 94016" +251978,Lightning Charging Cable,1,14.95,09/17/19 13:39,"523 12th St, San Francisco, CA 94016" +251979,USB-C Charging Cable,1,11.95,09/07/19 16:55,"985 Hill St, Seattle, WA 98101" +251980,27in 4K Gaming Monitor,1,389.99,09/22/19 19:31,"909 Adams St, Boston, MA 02215" +251981,USB-C Charging Cable,1,11.95,09/21/19 09:16,"968 10th St, Atlanta, GA 30301" +251982,Apple Airpods Headphones,1,150,09/11/19 09:43,"199 South St, Boston, MA 02215" +251983,Apple Airpods Headphones,1,150,09/18/19 20:57,"806 Willow St, Los Angeles, CA 90001" +251984,Google Phone,1,600,09/10/19 11:51,"693 Elm St, San Francisco, CA 94016" +251985,USB-C Charging Cable,1,11.95,09/22/19 20:15,"803 Willow St, San Francisco, CA 94016" +251986,Google Phone,1,600,09/24/19 19:58,"745 Ridge St, Los Angeles, CA 90001" +251987,Lightning Charging Cable,1,14.95,09/18/19 11:42,"340 13th St, New York City, NY 10001" +251988,AA Batteries (4-pack),1,3.84,09/28/19 16:52,"639 Adams St, Boston, MA 02215" +251989,AA Batteries (4-pack),1,3.84,09/03/19 22:23,"602 1st St, Portland, OR 97035" +251990,AA Batteries (4-pack),4,3.84,09/15/19 07:40,"582 9th St, San Francisco, CA 94016" +251991,Bose SoundSport Headphones,1,99.99,09/02/19 11:24,"101 11th St, Atlanta, GA 30301" +251992,USB-C Charging Cable,1,11.95,09/17/19 09:56,"727 Hickory St, New York City, NY 10001" +251993,Wired Headphones,1,11.99,09/15/19 09:12,"464 Madison St, Portland, OR 97035" +251994,Lightning Charging Cable,1,14.95,09/23/19 20:39,"975 Jackson St, San Francisco, CA 94016" +251995,Bose SoundSport Headphones,1,99.99,09/01/19 09:36,"900 Wilson St, New York City, NY 10001" +251996,Bose SoundSport Headphones,1,99.99,09/27/19 14:03,"907 Elm St, San Francisco, CA 94016" +251997,27in FHD Monitor,1,149.99,09/11/19 21:13,"385 Walnut St, San Francisco, CA 94016" +251998,Wired Headphones,1,11.99,09/05/19 13:00,"942 Dogwood St, Seattle, WA 98101" +251999,Wired Headphones,1,11.99,09/30/19 18:12,"350 Johnson St, Los Angeles, CA 90001" +252000,Apple Airpods Headphones,1,150,09/02/19 21:16,"458 South St, Los Angeles, CA 90001" +252001,Vareebadd Phone,1,400,09/30/19 18:03,"226 Dogwood St, San Francisco, CA 94016" +252001,Bose SoundSport Headphones,1,99.99,09/30/19 18:03,"226 Dogwood St, San Francisco, CA 94016" +252002,Lightning Charging Cable,1,14.95,09/09/19 19:01,"166 9th St, Los Angeles, CA 90001" +252003,ThinkPad Laptop,1,999.99,09/26/19 15:46,"868 Jackson St, Portland, OR 97035" +252004,Apple Airpods Headphones,1,150,09/20/19 20:20,"75 North St, Atlanta, GA 30301" +252005,Apple Airpods Headphones,1,150,09/17/19 15:53,"719 Jefferson St, New York City, NY 10001" +252006,AAA Batteries (4-pack),1,2.99,09/20/19 18:01,"382 6th St, Seattle, WA 98101" +252007,AA Batteries (4-pack),1,3.84,09/24/19 20:03,"11 Walnut St, Portland, OR 97035" +252008,Lightning Charging Cable,2,14.95,09/10/19 18:52,"92 Jefferson St, Los Angeles, CA 90001" +252009,iPhone,1,700,09/22/19 22:52,"242 7th St, San Francisco, CA 94016" +252010,Lightning Charging Cable,1,14.95,09/14/19 09:04,"990 Lake St, Atlanta, GA 30301" +252011,Google Phone,1,600,09/16/19 09:45,"493 Jackson St, Boston, MA 02215" +252012,AA Batteries (4-pack),1,3.84,09/13/19 21:03,"31 Walnut St, Los Angeles, CA 90001" +252013,USB-C Charging Cable,1,11.95,09/11/19 11:16,"144 Meadow St, Atlanta, GA 30301" +252014,ThinkPad Laptop,1,999.99,09/05/19 16:04,"6 Ridge St, Los Angeles, CA 90001" +252015,27in FHD Monitor,1,149.99,09/12/19 15:49,"932 Cedar St, San Francisco, CA 94016" +252016,Apple Airpods Headphones,1,150,09/28/19 15:57,"260 Washington St, Los Angeles, CA 90001" +252017,Lightning Charging Cable,1,14.95,09/06/19 21:04,"744 South St, San Francisco, CA 94016" +252018,Lightning Charging Cable,1,14.95,09/30/19 05:40,"268 2nd St, San Francisco, CA 94016" +252019,Bose SoundSport Headphones,1,99.99,09/11/19 19:59,"378 Adams St, San Francisco, CA 94016" +252020,AA Batteries (4-pack),1,3.84,09/21/19 15:56,"460 Madison St, Seattle, WA 98101" +252021,iPhone,1,700,09/26/19 22:40,"983 Sunset St, Dallas, TX 75001" +252022,Apple Airpods Headphones,1,150,09/22/19 12:34,"747 12th St, Atlanta, GA 30301" +252023,34in Ultrawide Monitor,1,379.99,09/21/19 00:50,"534 7th St, Atlanta, GA 30301" +252024,Apple Airpods Headphones,1,150,09/08/19 21:14,"504 Wilson St, Boston, MA 02215" +252025,USB-C Charging Cable,1,11.95,09/17/19 15:42,"233 Maple St, Los Angeles, CA 90001" +252026,Bose SoundSport Headphones,1,99.99,09/25/19 12:37,"43 Center St, San Francisco, CA 94016" +252027,USB-C Charging Cable,1,11.95,09/01/19 08:04,"875 5th St, New York City, NY 10001" +252028,Apple Airpods Headphones,1,150,09/28/19 10:43,"511 Meadow St, San Francisco, CA 94016" +252029,Bose SoundSport Headphones,1,99.99,09/20/19 11:23,"925 River St, New York City, NY 10001" +252030,Bose SoundSport Headphones,1,99.99,09/03/19 13:12,"829 7th St, New York City, NY 10001" +252031,20in Monitor,1,109.99,09/30/19 13:01,"807 Hickory St, Atlanta, GA 30301" +252032,USB-C Charging Cable,1,11.95,09/25/19 14:19,"549 8th St, Los Angeles, CA 90001" +252033,ThinkPad Laptop,1,999.99,09/30/19 08:49,"574 South St, Atlanta, GA 30301" +252034,AAA Batteries (4-pack),1,2.99,09/20/19 14:27,"265 12th St, Boston, MA 02215" +252035,27in FHD Monitor,1,149.99,09/22/19 09:28,"674 Elm St, New York City, NY 10001" +252036,Lightning Charging Cable,1,14.95,09/27/19 21:10,"409 North St, Dallas, TX 75001" +252037,27in FHD Monitor,1,149.99,09/19/19 14:11,"618 Ridge St, New York City, NY 10001" +252038,Apple Airpods Headphones,1,150,09/07/19 19:02,"318 10th St, New York City, NY 10001" +252038,Wired Headphones,1,11.99,09/07/19 19:02,"318 10th St, New York City, NY 10001" +252039,USB-C Charging Cable,1,11.95,09/25/19 21:28,"984 Highland St, Dallas, TX 75001" +252040,Wired Headphones,2,11.99,09/27/19 18:48,"695 Cedar St, Austin, TX 73301" +252041,34in Ultrawide Monitor,1,379.99,09/05/19 23:44,"673 Lakeview St, Seattle, WA 98101" +252042,Google Phone,1,600,09/01/19 13:35,"807 10th St, San Francisco, CA 94016" +252043,LG Washing Machine,1,600.0,09/19/19 00:59,"481 Lakeview St, Atlanta, GA 30301" +252044,USB-C Charging Cable,1,11.95,09/22/19 18:10,"724 Lakeview St, Atlanta, GA 30301" +252045,Wired Headphones,1,11.99,09/15/19 20:12,"677 Cherry St, San Francisco, CA 94016" +252046,Lightning Charging Cable,1,14.95,09/06/19 21:30,"293 Hickory St, Portland, OR 97035" +252047,AA Batteries (4-pack),1,3.84,09/22/19 04:27,"191 North St, Seattle, WA 98101" +252048,AAA Batteries (4-pack),2,2.99,09/28/19 17:06,"110 14th St, Los Angeles, CA 90001" +252049,ThinkPad Laptop,1,999.99,09/09/19 13:32,"929 Lincoln St, San Francisco, CA 94016" +252050,Bose SoundSport Headphones,1,99.99,09/03/19 14:52,"757 1st St, Atlanta, GA 30301" +252051,27in 4K Gaming Monitor,1,389.99,09/30/19 19:34,"566 Johnson St, San Francisco, CA 94016" +252052,Apple Airpods Headphones,1,150,09/26/19 20:34,"527 Spruce St, New York City, NY 10001" +252053,27in 4K Gaming Monitor,1,389.99,09/19/19 22:45,"307 7th St, Seattle, WA 98101" +252054,Vareebadd Phone,1,400,09/21/19 18:21,"750 11th St, New York City, NY 10001" +252054,Wired Headphones,1,11.99,09/21/19 18:21,"750 11th St, New York City, NY 10001" +252055,Macbook Pro Laptop,1,1700,09/08/19 17:33,"372 South St, New York City, NY 10001" +252056,27in FHD Monitor,1,149.99,09/30/19 18:22,"776 7th St, Los Angeles, CA 90001" +252057,27in FHD Monitor,1,149.99,09/15/19 16:02,"2 Cedar St, Dallas, TX 75001" +252058,Lightning Charging Cable,1,14.95,09/04/19 15:59,"90 4th St, Dallas, TX 75001" +252059,AA Batteries (4-pack),1,3.84,09/26/19 17:03,"867 Meadow St, Dallas, TX 75001" +252060,Wired Headphones,2,11.99,09/09/19 18:18,"582 Lake St, Atlanta, GA 30301" +252061,27in FHD Monitor,1,149.99,09/03/19 12:53,"574 Elm St, San Francisco, CA 94016" +252062,Apple Airpods Headphones,1,150,09/21/19 21:49,"217 4th St, Portland, OR 97035" +252063,ThinkPad Laptop,1,999.99,09/04/19 08:15,"750 Lake St, Portland, OR 97035" +252064,USB-C Charging Cable,1,11.95,09/30/19 13:22,"636 Lakeview St, Dallas, TX 75001" +252065,Vareebadd Phone,1,400,09/15/19 12:30,"611 Forest St, Los Angeles, CA 90001" +252066,Flatscreen TV,1,300,09/29/19 22:09,"408 4th St, New York City, NY 10001" +252067,Lightning Charging Cable,1,14.95,09/03/19 00:27,"980 Cedar St, New York City, NY 10001" +252068,AA Batteries (4-pack),1,3.84,09/18/19 15:47,"843 Church St, Austin, TX 73301" +252069,Flatscreen TV,1,300,09/10/19 11:37,"870 8th St, Seattle, WA 98101" +252070,Lightning Charging Cable,1,14.95,09/17/19 20:33,"506 12th St, Portland, OR 97035" +252071,27in 4K Gaming Monitor,1,389.99,09/17/19 13:06,"958 8th St, Seattle, WA 98101" +252072,Macbook Pro Laptop,1,1700,09/11/19 10:57,"854 Meadow St, Boston, MA 02215" +252073,34in Ultrawide Monitor,1,379.99,09/28/19 22:30,"435 Maple St, Boston, MA 02215" +252074,Bose SoundSport Headphones,1,99.99,09/24/19 12:56,"770 Church St, Los Angeles, CA 90001" +252075,27in 4K Gaming Monitor,1,389.99,09/30/19 11:05,"232 Willow St, Los Angeles, CA 90001" +252076,Wired Headphones,1,11.99,09/11/19 08:03,"743 Jefferson St, Boston, MA 02215" +252077,Lightning Charging Cable,1,14.95,09/29/19 12:50,"657 Lincoln St, Los Angeles, CA 90001" +252078,AAA Batteries (4-pack),2,2.99,09/07/19 08:51,"595 Church St, Los Angeles, CA 90001" +252079,AAA Batteries (4-pack),1,2.99,09/26/19 19:40,"185 Highland St, Seattle, WA 98101" +252080,Apple Airpods Headphones,1,150,09/10/19 17:51,"108 12th St, San Francisco, CA 94016" +252081,USB-C Charging Cable,1,11.95,09/07/19 08:14,"47 Washington St, Boston, MA 02215" +252082,Flatscreen TV,1,300,09/05/19 15:47,"367 Lake St, Los Angeles, CA 90001" +252083,Vareebadd Phone,1,400,09/09/19 14:18,"381 9th St, New York City, NY 10001" +252084,Google Phone,1,600,09/09/19 15:03,"182 South St, Seattle, WA 98101" +252085,AAA Batteries (4-pack),1,2.99,09/06/19 14:27,"590 Chestnut St, Atlanta, GA 30301" +252086,USB-C Charging Cable,1,11.95,09/12/19 23:23,"895 Washington St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +252087,AA Batteries (4-pack),3,3.84,09/07/19 20:32,"332 4th St, Boston, MA 02215" +252088,AAA Batteries (4-pack),1,2.99,09/20/19 11:24,"414 Madison St, Los Angeles, CA 90001" +252089,Lightning Charging Cable,1,14.95,09/01/19 14:19,"421 7th St, San Francisco, CA 94016" +252090,27in 4K Gaming Monitor,1,389.99,09/06/19 10:24,"256 Maple St, Boston, MA 02215" +252090,Wired Headphones,1,11.99,09/06/19 10:24,"256 Maple St, Boston, MA 02215" +252091,Flatscreen TV,1,300,09/24/19 20:57,"737 Walnut St, San Francisco, CA 94016" +252092,AAA Batteries (4-pack),1,2.99,09/05/19 03:36,"444 Lincoln St, Austin, TX 73301" +252093,Macbook Pro Laptop,1,1700,09/18/19 00:30,"56 7th St, San Francisco, CA 94016" +252094,ThinkPad Laptop,1,999.99,09/27/19 12:12,"837 Park St, Boston, MA 02215" +252095,USB-C Charging Cable,1,11.95,09/20/19 14:41,"450 Cherry St, New York City, NY 10001" +252096,AAA Batteries (4-pack),1,2.99,09/12/19 07:45,"137 Maple St, Boston, MA 02215" +252097,27in FHD Monitor,1,149.99,09/26/19 20:11,"253 5th St, Atlanta, GA 30301" +252098,AA Batteries (4-pack),1,3.84,09/22/19 22:03,"989 Highland St, San Francisco, CA 94016" +252099,27in FHD Monitor,1,149.99,09/03/19 20:38,"552 2nd St, Dallas, TX 75001" +252100,Lightning Charging Cable,1,14.95,09/02/19 20:08,"371 Meadow St, Seattle, WA 98101" +252101,iPhone,1,700,09/22/19 11:02,"909 13th St, San Francisco, CA 94016" +252102,Apple Airpods Headphones,1,150,09/22/19 17:24,"138 Walnut St, Los Angeles, CA 90001" +252103,27in 4K Gaming Monitor,1,389.99,09/24/19 19:54,"568 Lakeview St, Dallas, TX 75001" +252104,USB-C Charging Cable,1,11.95,09/19/19 08:53,"125 Adams St, Dallas, TX 75001" +252105,AA Batteries (4-pack),2,3.84,09/16/19 17:00,"707 1st St, New York City, NY 10001" +252106,Wired Headphones,1,11.99,09/18/19 11:47,"653 14th St, New York City, NY 10001" +252107,USB-C Charging Cable,1,11.95,09/15/19 21:11,"595 10th St, San Francisco, CA 94016" +252108,USB-C Charging Cable,1,11.95,09/21/19 17:22,"908 Wilson St, Portland, OR 97035" +252109,Macbook Pro Laptop,1,1700,09/17/19 14:26,"592 South St, New York City, NY 10001" +252110,AA Batteries (4-pack),1,3.84,09/08/19 18:56,"35 Highland St, San Francisco, CA 94016" +,,,,, +252111,Lightning Charging Cable,1,14.95,09/27/19 15:10,"441 Church St, San Francisco, CA 94016" +252112,Wired Headphones,1,11.99,09/21/19 11:46,"401 Park St, New York City, NY 10001" +252113,Wired Headphones,1,11.99,09/20/19 19:10,"634 6th St, San Francisco, CA 94016" +252114,iPhone,1,700,09/29/19 19:15,"920 Ridge St, San Francisco, CA 94016" +252114,Wired Headphones,1,11.99,09/29/19 19:15,"920 Ridge St, San Francisco, CA 94016" +252115,Google Phone,1,600,09/15/19 11:55,"587 Cedar St, New York City, NY 10001" +252115,USB-C Charging Cable,1,11.95,09/15/19 11:55,"587 Cedar St, New York City, NY 10001" +252116,AA Batteries (4-pack),1,3.84,09/27/19 13:16,"109 Lincoln St, New York City, NY 10001" +252117,iPhone,1,700,09/05/19 20:35,"359 12th St, Portland, OR 97035" +252118,Flatscreen TV,1,300,09/22/19 17:02,"659 9th St, Los Angeles, CA 90001" +252119,iPhone,1,700,09/23/19 14:12,"109 Main St, Seattle, WA 98101" +252119,Lightning Charging Cable,1,14.95,09/23/19 14:12,"109 Main St, Seattle, WA 98101" +252119,Wired Headphones,1,11.99,09/23/19 14:12,"109 Main St, Seattle, WA 98101" +252120,Apple Airpods Headphones,1,150,09/16/19 09:54,"248 Wilson St, Portland, OR 97035" +252121,AA Batteries (4-pack),1,3.84,09/02/19 19:37,"753 South St, Austin, TX 73301" +252122,AA Batteries (4-pack),1,3.84,09/14/19 08:39,"329 Lakeview St, San Francisco, CA 94016" +252123,Apple Airpods Headphones,1,150,09/23/19 19:42,"556 12th St, Atlanta, GA 30301" +252124,USB-C Charging Cable,1,11.95,09/22/19 11:33,"416 14th St, Seattle, WA 98101" +252125,Wired Headphones,1,11.99,09/07/19 16:51,"849 Hill St, San Francisco, CA 94016" +252126,Lightning Charging Cable,1,14.95,09/13/19 08:01,"994 1st St, Atlanta, GA 30301" +252127,AA Batteries (4-pack),2,3.84,09/29/19 17:54,"127 7th St, New York City, NY 10001" +252128,27in FHD Monitor,1,149.99,09/22/19 21:49,"929 6th St, San Francisco, CA 94016" +,,,,, +252129,AA Batteries (4-pack),2,3.84,09/05/19 09:56,"733 Lakeview St, San Francisco, CA 94016" +252130,Bose SoundSport Headphones,1,99.99,09/03/19 19:27,"925 Church St, Boston, MA 02215" +252131,AA Batteries (4-pack),1,3.84,09/09/19 18:16,"837 Highland St, Dallas, TX 75001" +252132,Google Phone,1,600,09/30/19 13:33,"506 Walnut St, Boston, MA 02215" +252133,Wired Headphones,1,11.99,09/10/19 08:35,"11 4th St, Los Angeles, CA 90001" +252134,Lightning Charging Cable,1,14.95,09/30/19 23:22,"363 Center St, New York City, NY 10001" +252135,iPhone,1,700,09/09/19 14:59,"171 Lakeview St, San Francisco, CA 94016" +252136,AA Batteries (4-pack),1,3.84,09/19/19 00:27,"55 Pine St, New York City, NY 10001" +252137,Flatscreen TV,1,300,09/01/19 15:55,"147 Main St, Boston, MA 02215" +252138,AA Batteries (4-pack),1,3.84,09/25/19 22:20,"370 Madison St, Los Angeles, CA 90001" +252139,Bose SoundSport Headphones,1,99.99,09/16/19 17:29,"201 13th St, New York City, NY 10001" +252140,ThinkPad Laptop,1,999.99,09/17/19 22:21,"214 Cherry St, Boston, MA 02215" +252141,AAA Batteries (4-pack),1,2.99,09/01/19 18:08,"738 2nd St, San Francisco, CA 94016" +252142,AA Batteries (4-pack),1,3.84,09/30/19 17:13,"229 Hickory St, Boston, MA 02215" +252143,34in Ultrawide Monitor,1,379.99,09/09/19 12:44,"351 10th St, Atlanta, GA 30301" +252144,Lightning Charging Cable,1,14.95,09/12/19 20:22,"881 Pine St, Dallas, TX 75001" +252145,iPhone,1,700,09/08/19 07:57,"695 7th St, Los Angeles, CA 90001" +252146,Flatscreen TV,1,300,09/26/19 12:23,"51 Chestnut St, Atlanta, GA 30301" +252147,27in 4K Gaming Monitor,1,389.99,09/17/19 15:15,"492 River St, San Francisco, CA 94016" +252148,Bose SoundSport Headphones,1,99.99,09/14/19 12:57,"507 Maple St, San Francisco, CA 94016" +252149,Lightning Charging Cable,1,14.95,09/26/19 14:24,"584 Park St, New York City, NY 10001" +252150,iPhone,1,700,09/17/19 08:55,"829 Lake St, Dallas, TX 75001" +252151,USB-C Charging Cable,3,11.95,09/18/19 10:41,"725 Ridge St, Dallas, TX 75001" +252152,Apple Airpods Headphones,1,150,09/30/19 11:35,"933 Washington St, Seattle, WA 98101" +252153,Lightning Charging Cable,1,14.95,09/09/19 22:59,"551 12th St, Portland, OR 97035" +252154,AA Batteries (4-pack),1,3.84,09/25/19 16:35,"99 Cherry St, Los Angeles, CA 90001" +252155,34in Ultrawide Monitor,1,379.99,09/10/19 11:41,"228 Elm St, Atlanta, GA 30301" +252156,Macbook Pro Laptop,1,1700,09/01/19 11:02,"699 Cherry St, Portland, OR 97035" +252156,34in Ultrawide Monitor,1,379.99,09/01/19 11:02,"699 Cherry St, Portland, OR 97035" +252157,Flatscreen TV,1,300,09/25/19 08:18,"760 Cedar St, Los Angeles, CA 90001" +252158,AAA Batteries (4-pack),4,2.99,09/18/19 23:06,"302 4th St, Los Angeles, CA 90001" +252159,20in Monitor,1,109.99,09/01/19 15:38,"721 South St, New York City, NY 10001" +252160,Bose SoundSport Headphones,1,99.99,09/28/19 17:00,"16 South St, Dallas, TX 75001" +252161,Lightning Charging Cable,1,14.95,09/24/19 21:40,"958 Hill St, New York City, NY 10001" +252162,Flatscreen TV,1,300,09/13/19 17:03,"526 4th St, Seattle, WA 98101" +252163,USB-C Charging Cable,1,11.95,09/09/19 20:51,"677 Park St, New York City, NY 10001" +252164,Lightning Charging Cable,1,14.95,09/30/19 21:30,"201 Jefferson St, Los Angeles, CA 90001" +252164,Macbook Pro Laptop,1,1700,09/30/19 21:30,"201 Jefferson St, Los Angeles, CA 90001" +252165,27in 4K Gaming Monitor,1,389.99,09/22/19 11:53,"25 6th St, San Francisco, CA 94016" +252166,Apple Airpods Headphones,1,150,09/14/19 21:11,"800 Walnut St, San Francisco, CA 94016" +252167,iPhone,1,700,09/30/19 10:12,"350 Meadow St, San Francisco, CA 94016" +252168,ThinkPad Laptop,1,999.99,09/24/19 11:58,"400 Chestnut St, New York City, NY 10001" +252169,Lightning Charging Cable,1,14.95,09/30/19 21:34,"422 Wilson St, San Francisco, CA 94016" +252170,USB-C Charging Cable,1,11.95,09/15/19 10:34,"612 Madison St, New York City, NY 10001" +252171,27in FHD Monitor,1,149.99,09/06/19 14:12,"363 Elm St, Seattle, WA 98101" +252172,Wired Headphones,1,11.99,09/21/19 13:20,"148 Sunset St, New York City, NY 10001" +252173,Apple Airpods Headphones,1,150,09/29/19 22:29,"808 5th St, Dallas, TX 75001" +252174,AA Batteries (4-pack),1,3.84,09/16/19 05:05,"303 4th St, Los Angeles, CA 90001" +252175,Lightning Charging Cable,1,14.95,09/23/19 07:58,"963 Ridge St, San Francisco, CA 94016" +252176,AAA Batteries (4-pack),1,2.99,09/01/19 12:03,"441 Lakeview St, New York City, NY 10001" +252177,AA Batteries (4-pack),1,3.84,09/19/19 11:17,"304 Forest St, New York City, NY 10001" +252178,Flatscreen TV,1,300,09/08/19 18:34,"198 North St, Boston, MA 02215" +252179,USB-C Charging Cable,1,11.95,09/30/19 23:23,"550 Madison St, Seattle, WA 98101" +252180,Lightning Charging Cable,1,14.95,09/07/19 01:53,"663 Adams St, Portland, OR 97035" +252181,Lightning Charging Cable,1,14.95,09/17/19 22:32,"462 Jefferson St, Los Angeles, CA 90001" +252182,27in FHD Monitor,1,149.99,09/13/19 18:04,"554 Lake St, San Francisco, CA 94016" +252183,Wired Headphones,1,11.99,09/21/19 13:53,"782 Lake St, San Francisco, CA 94016" +252184,Vareebadd Phone,1,400,09/07/19 17:12,"602 Jackson St, San Francisco, CA 94016" +252185,Lightning Charging Cable,1,14.95,09/07/19 23:23,"750 Walnut St, New York City, NY 10001" +252186,Macbook Pro Laptop,1,1700,09/24/19 19:22,"173 Hickory St, Austin, TX 73301" +252187,20in Monitor,1,109.99,09/14/19 11:08,"536 Dogwood St, Boston, MA 02215" +252188,Bose SoundSport Headphones,1,99.99,09/25/19 17:10,"879 14th St, Portland, OR 97035" +252189,AA Batteries (4-pack),1,3.84,09/07/19 10:42,"981 6th St, Portland, OR 97035" +252190,AAA Batteries (4-pack),1,2.99,09/21/19 20:38,"115 Lakeview St, Seattle, WA 98101" +252191,20in Monitor,1,109.99,09/01/19 18:12,"425 Meadow St, Austin, TX 73301" +252192,Lightning Charging Cable,1,14.95,09/06/19 14:35,"651 Willow St, Los Angeles, CA 90001" +252193,Flatscreen TV,1,300,09/14/19 14:15,"222 8th St, Los Angeles, CA 90001" +252194,Lightning Charging Cable,1,14.95,09/23/19 19:34,"337 Hickory St, Portland, OR 97035" +252195,20in Monitor,1,109.99,09/29/19 20:34,"120 Ridge St, Dallas, TX 75001" +252196,Apple Airpods Headphones,1,150,09/28/19 14:35,"804 Johnson St, Austin, TX 73301" +252197,Wired Headphones,1,11.99,09/08/19 10:20,"941 2nd St, New York City, NY 10001" +252198,AA Batteries (4-pack),2,3.84,09/18/19 15:31,"583 14th St, Atlanta, GA 30301" +252199,Wired Headphones,2,11.99,09/10/19 18:09,"66 Center St, Seattle, WA 98101" +252200,Lightning Charging Cable,1,14.95,09/04/19 23:33,"98 Sunset St, Los Angeles, CA 90001" +252201,Bose SoundSport Headphones,1,99.99,09/30/19 09:56,"246 Forest St, San Francisco, CA 94016" +252202,Lightning Charging Cable,1,14.95,09/19/19 21:05,"519 Chestnut St, Boston, MA 02215" +252203,AA Batteries (4-pack),1,3.84,09/11/19 12:28,"71 8th St, Portland, OR 97035" +252204,34in Ultrawide Monitor,1,379.99,09/26/19 17:47,"146 Pine St, Boston, MA 02215" +252205,USB-C Charging Cable,1,11.95,09/06/19 12:53,"20 8th St, Los Angeles, CA 90001" +252206,Wired Headphones,1,11.99,09/04/19 11:22,"877 Pine St, New York City, NY 10001" +252207,Lightning Charging Cable,1,14.95,09/08/19 20:01,"918 River St, Los Angeles, CA 90001" +252208,20in Monitor,1,109.99,09/21/19 15:40,"381 Meadow St, Dallas, TX 75001" +252209,USB-C Charging Cable,1,11.95,09/12/19 11:49,"524 Jackson St, Austin, TX 73301" +252210,Bose SoundSport Headphones,1,99.99,09/19/19 21:52,"788 Meadow St, Seattle, WA 98101" +252211,USB-C Charging Cable,1,11.95,09/01/19 17:48,"984 2nd St, New York City, NY 10001" +252212,AAA Batteries (4-pack),1,2.99,09/09/19 18:44,"801 Johnson St, Boston, MA 02215" +252213,USB-C Charging Cable,1,11.95,09/21/19 21:07,"10 7th St, Los Angeles, CA 90001" +252214,USB-C Charging Cable,1,11.95,09/16/19 08:04,"682 Highland St, Boston, MA 02215" +252215,iPhone,1,700,09/29/19 07:44,"48 2nd St, San Francisco, CA 94016" +252216,Apple Airpods Headphones,1,150,09/28/19 22:59,"580 Hill St, Boston, MA 02215" +252217,AAA Batteries (4-pack),3,2.99,09/15/19 09:45,"530 Hill St, Boston, MA 02215" +252218,AAA Batteries (4-pack),1,2.99,09/07/19 12:55,"974 West St, Seattle, WA 98101" +252219,Macbook Pro Laptop,1,1700,09/02/19 16:34,"154 Hickory St, New York City, NY 10001" +252220,AA Batteries (4-pack),3,3.84,09/03/19 18:48,"980 14th St, Atlanta, GA 30301" +252221,AAA Batteries (4-pack),2,2.99,09/21/19 20:19,"416 Jefferson St, Los Angeles, CA 90001" +252222,ThinkPad Laptop,1,999.99,09/28/19 09:00,"766 2nd St, New York City, NY 10001" +252223,Lightning Charging Cable,1,14.95,09/06/19 15:48,"34 Chestnut St, Atlanta, GA 30301" +252224,Google Phone,1,600,09/20/19 09:44,"921 South St, New York City, NY 10001" +252225,27in 4K Gaming Monitor,1,389.99,09/20/19 16:32,"175 Spruce St, Los Angeles, CA 90001" +252226,Lightning Charging Cable,1,14.95,09/24/19 22:14,"995 Ridge St, Boston, MA 02215" +252227,Bose SoundSport Headphones,1,99.99,09/20/19 22:49,"238 Chestnut St, Seattle, WA 98101" +252228,34in Ultrawide Monitor,1,379.99,09/09/19 14:31,"905 West St, San Francisco, CA 94016" +252229,iPhone,1,700,09/17/19 11:21,"29 North St, Los Angeles, CA 90001" +252230,Google Phone,1,600,09/06/19 20:59,"161 Maple St, New York City, NY 10001" +252231,Lightning Charging Cable,2,14.95,09/09/19 09:31,"109 8th St, San Francisco, CA 94016" +252232,Apple Airpods Headphones,1,150,09/15/19 16:40,"993 13th St, New York City, NY 10001" +252233,27in FHD Monitor,1,149.99,09/21/19 13:07,"851 Ridge St, Los Angeles, CA 90001" +252234,Wired Headphones,2,11.99,09/10/19 20:58,"387 Spruce St, Austin, TX 73301" +252235,AAA Batteries (4-pack),2,2.99,09/15/19 14:42,"216 Main St, New York City, NY 10001" +252236,AAA Batteries (4-pack),3,2.99,09/27/19 17:05,"967 7th St, Seattle, WA 98101" +252237,27in 4K Gaming Monitor,1,389.99,09/13/19 12:54,"163 Spruce St, Los Angeles, CA 90001" +252238,ThinkPad Laptop,1,999.99,09/18/19 09:58,"244 Lake St, New York City, NY 10001" +252239,Wired Headphones,1,11.99,09/17/19 12:07,"867 11th St, Seattle, WA 98101" +252240,iPhone,1,700,09/03/19 18:49,"367 Willow St, New York City, NY 10001" +252240,Lightning Charging Cable,1,14.95,09/03/19 18:49,"367 Willow St, New York City, NY 10001" +252241,27in FHD Monitor,1,149.99,09/29/19 14:48,"263 Meadow St, Seattle, WA 98101" +252242,ThinkPad Laptop,1,999.99,09/22/19 12:42,"686 Walnut St, San Francisco, CA 94016" +252243,AAA Batteries (4-pack),1,2.99,09/02/19 12:20,"542 Forest St, Los Angeles, CA 90001" +252244,Apple Airpods Headphones,1,150,09/22/19 18:59,"441 Maple St, Austin, TX 73301" +252245,AA Batteries (4-pack),1,3.84,09/20/19 16:59,"266 Cedar St, Austin, TX 73301" +252246,27in FHD Monitor,1,149.99,09/26/19 12:11,"188 Madison St, Boston, MA 02215" +252247,27in FHD Monitor,1,149.99,09/23/19 18:46,"847 Johnson St, New York City, NY 10001" +252248,USB-C Charging Cable,1,11.95,09/08/19 05:01,"491 Willow St, San Francisco, CA 94016" +252249,Macbook Pro Laptop,1,1700,09/02/19 15:53,"957 West St, San Francisco, CA 94016" +252250,Apple Airpods Headphones,1,150,09/27/19 18:10,"12 Hill St, Atlanta, GA 30301" +252251,Apple Airpods Headphones,1,150,09/27/19 19:09,"278 Walnut St, San Francisco, CA 94016" +252252,USB-C Charging Cable,1,11.95,09/12/19 12:47,"387 7th St, Atlanta, GA 30301" +252253,Wired Headphones,1,11.99,09/10/19 19:09,"593 13th St, Los Angeles, CA 90001" +252254,Google Phone,1,600,09/07/19 18:04,"597 Jefferson St, New York City, NY 10001" +252255,USB-C Charging Cable,1,11.95,09/03/19 10:05,"452 11th St, San Francisco, CA 94016" +252256,AA Batteries (4-pack),1,3.84,09/24/19 19:14,"85 7th St, Boston, MA 02215" +252257,Apple Airpods Headphones,1,150,09/26/19 20:27,"349 Willow St, Seattle, WA 98101" +252258,AA Batteries (4-pack),1,3.84,09/15/19 06:55,"566 Church St, Boston, MA 02215" +252259,AA Batteries (4-pack),2,3.84,09/29/19 12:04,"637 6th St, Seattle, WA 98101" +252260,Wired Headphones,1,11.99,09/06/19 19:58,"823 1st St, Austin, TX 73301" +252261,27in 4K Gaming Monitor,1,389.99,09/28/19 13:35,"458 5th St, Atlanta, GA 30301" +252262,Bose SoundSport Headphones,2,99.99,09/20/19 17:15,"159 Meadow St, Portland, OR 97035" +252263,iPhone,1,700,09/20/19 11:57,"472 Park St, Portland, OR 97035" +252264,USB-C Charging Cable,1,11.95,09/20/19 17:17,"130 Highland St, Dallas, TX 75001" +252265,Macbook Pro Laptop,1,1700,09/02/19 18:55,"950 Adams St, New York City, NY 10001" +252266,Lightning Charging Cable,1,14.95,09/15/19 17:43,"54 Pine St, Boston, MA 02215" +252267,Apple Airpods Headphones,1,150,09/16/19 13:58,"89 9th St, Los Angeles, CA 90001" +252268,USB-C Charging Cable,1,11.95,09/06/19 13:47,"577 Spruce St, New York City, NY 10001" +252269,AAA Batteries (4-pack),1,2.99,09/18/19 10:45,"350 Elm St, Portland, ME 04101" +252270,27in 4K Gaming Monitor,1,389.99,09/09/19 21:58,"348 Meadow St, San Francisco, CA 94016" +252271,Apple Airpods Headphones,1,150,09/23/19 00:27,"111 Forest St, San Francisco, CA 94016" +252272,USB-C Charging Cable,1,11.95,09/12/19 08:07,"203 Hill St, Los Angeles, CA 90001" +252273,ThinkPad Laptop,1,999.99,09/27/19 23:27,"935 Hickory St, Atlanta, GA 30301" +252274,Google Phone,1,600,09/06/19 18:30,"238 South St, San Francisco, CA 94016" +252274,USB-C Charging Cable,1,11.95,09/06/19 18:30,"238 South St, San Francisco, CA 94016" +252275,Lightning Charging Cable,1,14.95,09/10/19 12:58,"8 11th St, Boston, MA 02215" +252276,27in 4K Gaming Monitor,1,389.99,09/06/19 08:00,"410 Ridge St, Los Angeles, CA 90001" +252277,Google Phone,1,600,09/24/19 22:00,"940 Hickory St, Atlanta, GA 30301" +252278,Bose SoundSport Headphones,1,99.99,09/18/19 10:12,"308 Adams St, Los Angeles, CA 90001" +,,,,, +252279,USB-C Charging Cable,1,11.95,09/16/19 20:29,"808 Ridge St, Seattle, WA 98101" +252280,Google Phone,1,600,09/22/19 21:23,"301 Cedar St, New York City, NY 10001" +252281,AAA Batteries (4-pack),1,2.99,09/13/19 17:25,"903 7th St, San Francisco, CA 94016" +252282,Lightning Charging Cable,1,14.95,09/07/19 18:32,"523 Park St, New York City, NY 10001" +252283,27in FHD Monitor,1,149.99,09/04/19 09:58,"651 South St, New York City, NY 10001" +252284,Apple Airpods Headphones,1,150,09/18/19 21:41,"265 10th St, Boston, MA 02215" +252285,27in FHD Monitor,1,149.99,09/29/19 20:55,"78 Pine St, Seattle, WA 98101" +252286,iPhone,1,700,09/15/19 15:14,"716 West St, San Francisco, CA 94016" +252286,Wired Headphones,1,11.99,09/15/19 15:14,"716 West St, San Francisco, CA 94016" +252287,27in FHD Monitor,1,149.99,09/24/19 13:19,"768 River St, Los Angeles, CA 90001" +252288,AAA Batteries (4-pack),1,2.99,09/24/19 05:30,"789 South St, Los Angeles, CA 90001" +252289,Bose SoundSport Headphones,1,99.99,09/20/19 17:34,"644 7th St, San Francisco, CA 94016" +252290,34in Ultrawide Monitor,1,379.99,09/26/19 18:17,"616 Forest St, San Francisco, CA 94016" +252291,Bose SoundSport Headphones,1,99.99,09/25/19 06:50,"428 5th St, Los Angeles, CA 90001" +252292,Flatscreen TV,1,300,09/15/19 11:48,"161 Adams St, Los Angeles, CA 90001" +252293,Wired Headphones,1,11.99,09/18/19 11:36,"898 Center St, Boston, MA 02215" +252294,Macbook Pro Laptop,1,1700,09/24/19 16:00,"476 7th St, San Francisco, CA 94016" +252295,AAA Batteries (4-pack),1,2.99,09/17/19 19:04,"229 13th St, Dallas, TX 75001" +252296,Apple Airpods Headphones,1,150,09/23/19 23:18,"541 Highland St, San Francisco, CA 94016" +252297,AA Batteries (4-pack),1,3.84,09/25/19 18:16,"187 Maple St, San Francisco, CA 94016" +252298,Lightning Charging Cable,1,14.95,09/02/19 10:28,"30 Washington St, Boston, MA 02215" +252299,Wired Headphones,1,11.99,09/23/19 11:35,"871 9th St, Dallas, TX 75001" +252300,Macbook Pro Laptop,1,1700,09/20/19 11:16,"233 13th St, San Francisco, CA 94016" +252301,27in FHD Monitor,1,149.99,09/30/19 09:04,"710 Maple St, Seattle, WA 98101" +252302,USB-C Charging Cable,1,11.95,09/18/19 21:25,"988 South St, Los Angeles, CA 90001" +252303,27in 4K Gaming Monitor,1,389.99,09/10/19 21:38,"481 7th St, New York City, NY 10001" +252304,Vareebadd Phone,1,400,09/07/19 15:14,"132 7th St, San Francisco, CA 94016" +252305,AA Batteries (4-pack),1,3.84,09/21/19 09:56,"517 9th St, Portland, OR 97035" +252306,Lightning Charging Cable,1,14.95,09/29/19 09:47,"969 Park St, San Francisco, CA 94016" +252307,AA Batteries (4-pack),1,3.84,09/04/19 19:16,"762 14th St, Los Angeles, CA 90001" +252308,AAA Batteries (4-pack),1,2.99,09/29/19 21:11,"799 Dogwood St, Seattle, WA 98101" +252309,iPhone,1,700,09/27/19 20:23,"704 Lincoln St, Dallas, TX 75001" +252310,Wired Headphones,1,11.99,09/17/19 13:27,"523 Center St, San Francisco, CA 94016" +252311,Wired Headphones,1,11.99,09/03/19 18:26,"144 Johnson St, Seattle, WA 98101" +252312,Wired Headphones,1,11.99,09/06/19 10:52,"589 Maple St, New York City, NY 10001" +252313,Apple Airpods Headphones,1,150,09/25/19 09:40,"833 Adams St, Boston, MA 02215" +252314,20in Monitor,1,109.99,09/05/19 16:49,"144 Dogwood St, New York City, NY 10001" +252315,Apple Airpods Headphones,1,150,09/18/19 20:53,"308 Highland St, Los Angeles, CA 90001" +252316,Wired Headphones,1,11.99,09/04/19 19:30,"106 Highland St, Dallas, TX 75001" +252317,27in 4K Gaming Monitor,1,389.99,09/30/19 00:07,"884 Willow St, Los Angeles, CA 90001" +252318,27in FHD Monitor,1,149.99,09/07/19 08:41,"853 Lincoln St, Los Angeles, CA 90001" +252319,Google Phone,1,600,09/06/19 13:30,"503 South St, New York City, NY 10001" +252320,Wired Headphones,1,11.99,09/08/19 20:06,"683 Walnut St, Los Angeles, CA 90001" +252321,AAA Batteries (4-pack),1,2.99,09/09/19 14:45,"361 1st St, Atlanta, GA 30301" +252322,Google Phone,1,600,09/13/19 21:29,"92 Cherry St, Atlanta, GA 30301" +252323,AA Batteries (4-pack),1,3.84,09/26/19 22:59,"461 Park St, Boston, MA 02215" +252323,34in Ultrawide Monitor,1,379.99,09/26/19 22:59,"461 Park St, Boston, MA 02215" +252324,USB-C Charging Cable,1,11.95,09/08/19 22:58,"567 Cedar St, Seattle, WA 98101" +252325,Google Phone,1,600,09/05/19 22:09,"707 14th St, Portland, ME 04101" +252325,Wired Headphones,1,11.99,09/05/19 22:09,"707 14th St, Portland, ME 04101" +252326,AAA Batteries (4-pack),1,2.99,09/27/19 20:58,"694 Hickory St, Atlanta, GA 30301" +252327,AAA Batteries (4-pack),1,2.99,09/26/19 01:22,"771 River St, Atlanta, GA 30301" +252328,iPhone,1,700,09/07/19 18:25,"756 Madison St, Dallas, TX 75001" +252329,Bose SoundSport Headphones,1,99.99,09/27/19 14:28,"345 Wilson St, New York City, NY 10001" +252330,USB-C Charging Cable,1,11.95,09/21/19 15:33,"135 13th St, San Francisco, CA 94016" +252331,Apple Airpods Headphones,1,150,09/26/19 08:50,"142 Ridge St, New York City, NY 10001" +252332,iPhone,1,700,09/18/19 13:21,"979 Jefferson St, Los Angeles, CA 90001" +252333,Vareebadd Phone,1,400,09/13/19 18:18,"607 North St, Austin, TX 73301" +252333,Bose SoundSport Headphones,1,99.99,09/13/19 18:18,"607 North St, Austin, TX 73301" +252334,Bose SoundSport Headphones,1,99.99,09/25/19 15:39,"75 Lincoln St, Atlanta, GA 30301" +252335,Lightning Charging Cable,1,14.95,09/18/19 16:27,"776 Hill St, New York City, NY 10001" +252336,Lightning Charging Cable,1,14.95,09/10/19 00:33,"417 Chestnut St, Boston, MA 02215" +252337,Google Phone,1,600,09/06/19 12:23,"256 Lincoln St, Los Angeles, CA 90001" +252337,USB-C Charging Cable,1,11.95,09/06/19 12:23,"256 Lincoln St, Los Angeles, CA 90001" +252338,27in FHD Monitor,1,149.99,09/06/19 14:41,"315 Jefferson St, Portland, ME 04101" +252339,Wired Headphones,1,11.99,09/12/19 18:33,"540 2nd St, Portland, OR 97035" +252340,USB-C Charging Cable,1,11.95,09/05/19 12:39,"691 Madison St, Los Angeles, CA 90001" +252341,Lightning Charging Cable,1,14.95,09/22/19 15:16,"728 2nd St, San Francisco, CA 94016" +252342,USB-C Charging Cable,1,11.95,09/13/19 08:58,"881 Spruce St, Seattle, WA 98101" +252343,Lightning Charging Cable,1,14.95,09/12/19 19:05,"523 12th St, San Francisco, CA 94016" +252344,27in 4K Gaming Monitor,1,389.99,09/29/19 15:17,"39 Madison St, Austin, TX 73301" +252345,USB-C Charging Cable,1,11.95,09/09/19 09:42,"434 Hickory St, New York City, NY 10001" +252346,Flatscreen TV,1,300,09/10/19 16:07,"566 Spruce St, Dallas, TX 75001" +252347,Apple Airpods Headphones,1,150,09/22/19 21:31,"251 Jackson St, Los Angeles, CA 90001" +252348,27in 4K Gaming Monitor,1,389.99,09/10/19 14:32,"140 Johnson St, New York City, NY 10001" +252349,AA Batteries (4-pack),1,3.84,09/13/19 12:44,"933 2nd St, Boston, MA 02215" +252350,Wired Headphones,1,11.99,09/18/19 18:48,"919 Park St, Seattle, WA 98101" +252351,USB-C Charging Cable,1,11.95,09/07/19 20:37,"196 7th St, New York City, NY 10001" +252352,20in Monitor,1,109.99,09/15/19 18:43,"261 Adams St, San Francisco, CA 94016" +252353,USB-C Charging Cable,1,11.95,09/19/19 02:13,"751 Church St, Boston, MA 02215" +252354,USB-C Charging Cable,1,11.95,09/15/19 23:42,"268 5th St, Dallas, TX 75001" +252355,Apple Airpods Headphones,1,150,09/05/19 16:27,"569 Cherry St, San Francisco, CA 94016" +252356,27in FHD Monitor,1,149.99,09/26/19 02:38,"55 Jefferson St, Portland, OR 97035" +252357,Lightning Charging Cable,1,14.95,09/20/19 11:59,"127 1st St, Atlanta, GA 30301" +252358,AAA Batteries (4-pack),2,2.99,09/18/19 08:02,"144 8th St, Austin, TX 73301" +252359,AAA Batteries (4-pack),2,2.99,09/20/19 22:33,"244 Willow St, New York City, NY 10001" +252360,Lightning Charging Cable,1,14.95,09/02/19 08:52,"682 10th St, Seattle, WA 98101" +252361,34in Ultrawide Monitor,1,379.99,09/03/19 18:07,"468 7th St, Atlanta, GA 30301" +252362,Apple Airpods Headphones,1,150,09/13/19 23:33,"125 Highland St, Los Angeles, CA 90001" +252363,Vareebadd Phone,1,400,09/21/19 21:09,"180 Hickory St, Dallas, TX 75001" +252364,iPhone,1,700,09/24/19 02:19,"202 Hickory St, Austin, TX 73301" +252364,Apple Airpods Headphones,1,150,09/24/19 02:19,"202 Hickory St, Austin, TX 73301" +252365,USB-C Charging Cable,1,11.95,09/13/19 15:46,"690 River St, San Francisco, CA 94016" +252366,ThinkPad Laptop,1,999.99,09/03/19 20:57,"998 Wilson St, New York City, NY 10001" +252367,34in Ultrawide Monitor,1,379.99,09/15/19 17:48,"132 Center St, New York City, NY 10001" +252368,AAA Batteries (4-pack),3,2.99,09/17/19 21:11,"715 5th St, Portland, OR 97035" +252369,34in Ultrawide Monitor,1,379.99,09/08/19 19:55,"495 14th St, Los Angeles, CA 90001" +252370,Bose SoundSport Headphones,1,99.99,09/16/19 17:14,"603 Park St, Los Angeles, CA 90001" +252371,AA Batteries (4-pack),1,3.84,09/11/19 20:26,"652 Madison St, Seattle, WA 98101" +252372,AA Batteries (4-pack),3,3.84,09/15/19 12:50,"596 River St, San Francisco, CA 94016" +252372,Macbook Pro Laptop,1,1700,09/15/19 12:50,"596 River St, San Francisco, CA 94016" +252373,Apple Airpods Headphones,1,150,09/05/19 11:00,"190 Cedar St, San Francisco, CA 94016" +252374,27in FHD Monitor,1,149.99,09/24/19 16:00,"868 North St, Los Angeles, CA 90001" +252375,Apple Airpods Headphones,1,150,09/05/19 19:26,"263 Chestnut St, Los Angeles, CA 90001" +252376,AAA Batteries (4-pack),1,2.99,09/27/19 08:44,"503 Center St, San Francisco, CA 94016" +252377,27in FHD Monitor,1,149.99,09/01/19 11:38,"787 Walnut St, Dallas, TX 75001" +252378,USB-C Charging Cable,1,11.95,09/03/19 11:56,"762 Lakeview St, Dallas, TX 75001" +252379,20in Monitor,1,109.99,09/30/19 19:12,"636 Adams St, Seattle, WA 98101" +252380,USB-C Charging Cable,2,11.95,09/15/19 12:12,"809 14th St, Seattle, WA 98101" +252381,27in FHD Monitor,1,149.99,09/11/19 00:11,"28 Park St, Dallas, TX 75001" +252382,Wired Headphones,1,11.99,09/26/19 12:25,"150 11th St, Austin, TX 73301" +252383,AAA Batteries (4-pack),1,2.99,09/21/19 19:49,"975 Park St, Portland, OR 97035" +252384,Apple Airpods Headphones,1,150,09/04/19 10:59,"84 Park St, San Francisco, CA 94016" +252385,34in Ultrawide Monitor,1,379.99,09/15/19 19:53,"218 Hill St, Los Angeles, CA 90001" +252386,Wired Headphones,1,11.99,09/29/19 13:04,"207 Center St, Dallas, TX 75001" +252387,20in Monitor,1,109.99,09/12/19 13:35,"980 1st St, Los Angeles, CA 90001" +252388,Apple Airpods Headphones,1,150,09/28/19 15:03,"760 West St, Boston, MA 02215" +252389,Google Phone,1,600,09/26/19 21:44,"694 5th St, Dallas, TX 75001" +252390,Flatscreen TV,1,300,09/15/19 14:10,"623 Ridge St, San Francisco, CA 94016" +252391,Lightning Charging Cable,2,14.95,09/18/19 19:48,"203 Chestnut St, San Francisco, CA 94016" +252392,34in Ultrawide Monitor,1,379.99,09/26/19 18:07,"368 River St, Boston, MA 02215" +252393,USB-C Charging Cable,1,11.95,09/04/19 10:37,"417 West St, Boston, MA 02215" +252394,USB-C Charging Cable,1,11.95,09/18/19 21:51,"940 Lake St, Boston, MA 02215" +252395,AA Batteries (4-pack),1,3.84,09/02/19 14:45,"254 Hill St, Portland, OR 97035" +252396,AAA Batteries (4-pack),2,2.99,09/22/19 13:39,"708 Meadow St, Los Angeles, CA 90001" +252397,27in FHD Monitor,1,149.99,09/02/19 15:22,"377 Forest St, Portland, OR 97035" +252398,Wired Headphones,1,11.99,09/28/19 12:03,"943 Elm St, New York City, NY 10001" +252399,27in 4K Gaming Monitor,1,389.99,09/13/19 11:42,"876 Center St, San Francisco, CA 94016" +252400,Lightning Charging Cable,1,14.95,09/02/19 19:47,"735 6th St, Seattle, WA 98101" +252401,Vareebadd Phone,1,400,09/14/19 22:36,"217 Chestnut St, San Francisco, CA 94016" +252402,27in 4K Gaming Monitor,1,389.99,09/11/19 19:49,"418 South St, Los Angeles, CA 90001" +252403,Apple Airpods Headphones,1,150,09/27/19 18:40,"207 Cherry St, Atlanta, GA 30301" +252404,Vareebadd Phone,1,400,09/21/19 23:05,"745 Hickory St, Los Angeles, CA 90001" +252405,Lightning Charging Cable,1,14.95,09/12/19 19:59,"853 Walnut St, Boston, MA 02215" +252406,27in FHD Monitor,1,149.99,09/08/19 11:07,"717 Cedar St, Seattle, WA 98101" +252407,AA Batteries (4-pack),2,3.84,09/01/19 11:20,"667 Jackson St, San Francisco, CA 94016" +252408,AA Batteries (4-pack),1,3.84,09/24/19 13:42,"78 9th St, San Francisco, CA 94016" +252409,Macbook Pro Laptop,1,1700,09/20/19 15:43,"924 Willow St, San Francisco, CA 94016" +252410,AA Batteries (4-pack),1,3.84,09/08/19 00:53,"804 Adams St, New York City, NY 10001" +252411,Apple Airpods Headphones,1,150,09/26/19 15:25,"209 Johnson St, San Francisco, CA 94016" +252412,27in 4K Gaming Monitor,1,389.99,09/11/19 16:58,"479 Wilson St, Austin, TX 73301" +252413,Lightning Charging Cable,1,14.95,09/05/19 14:32,"762 4th St, Seattle, WA 98101" +252414,Lightning Charging Cable,1,14.95,09/21/19 11:55,"113 Maple St, New York City, NY 10001" +252415,Apple Airpods Headphones,1,150,09/22/19 11:27,"366 Cherry St, San Francisco, CA 94016" +252416,Apple Airpods Headphones,1,150,09/12/19 12:24,"86 Maple St, Dallas, TX 75001" +252417,AA Batteries (4-pack),1,3.84,09/29/19 22:44,"711 Willow St, Los Angeles, CA 90001" +252418,AA Batteries (4-pack),2,3.84,09/09/19 18:15,"755 10th St, San Francisco, CA 94016" +252419,Flatscreen TV,1,300,09/23/19 19:01,"159 Meadow St, Seattle, WA 98101" +252420,Lightning Charging Cable,1,14.95,09/20/19 18:13,"904 9th St, Austin, TX 73301" +252420,AA Batteries (4-pack),2,3.84,09/20/19 18:13,"904 9th St, Austin, TX 73301" +252421,AA Batteries (4-pack),2,3.84,09/24/19 17:10,"148 Cherry St, New York City, NY 10001" +252422,Wired Headphones,1,11.99,09/12/19 20:58,"371 13th St, Los Angeles, CA 90001" +252423,USB-C Charging Cable,1,11.95,09/22/19 18:18,"883 14th St, Austin, TX 73301" +252424,Lightning Charging Cable,1,14.95,09/15/19 19:30,"81 Park St, Portland, ME 04101" +252425,27in FHD Monitor,1,149.99,09/04/19 08:47,"744 Jackson St, Seattle, WA 98101" +252426,Lightning Charging Cable,1,14.95,09/21/19 19:07,"915 Johnson St, Los Angeles, CA 90001" +252427,Bose SoundSport Headphones,1,99.99,09/10/19 13:40,"820 Highland St, Austin, TX 73301" +252428,AAA Batteries (4-pack),1,2.99,09/07/19 12:00,"33 Center St, Seattle, WA 98101" +252429,AAA Batteries (4-pack),1,2.99,09/19/19 11:07,"720 4th St, Boston, MA 02215" +252430,Lightning Charging Cable,1,14.95,09/26/19 08:59,"734 Meadow St, Los Angeles, CA 90001" +252431,iPhone,1,700,09/29/19 18:27,"322 Adams St, San Francisco, CA 94016" +252431,Wired Headphones,1,11.99,09/29/19 18:27,"322 Adams St, San Francisco, CA 94016" +252432,Lightning Charging Cable,1,14.95,09/12/19 14:59,"825 6th St, San Francisco, CA 94016" +252433,USB-C Charging Cable,1,11.95,09/17/19 07:37,"705 Jackson St, Dallas, TX 75001" +252434,Lightning Charging Cable,1,14.95,09/15/19 13:51,"596 Jackson St, New York City, NY 10001" +252435,Apple Airpods Headphones,1,150,09/10/19 22:02,"66 1st St, Atlanta, GA 30301" +252436,AA Batteries (4-pack),1,3.84,09/25/19 14:56,"999 Center St, San Francisco, CA 94016" +252437,AAA Batteries (4-pack),1,2.99,09/14/19 00:05,"123 River St, San Francisco, CA 94016" +252438,Lightning Charging Cable,1,14.95,09/08/19 20:02,"758 River St, San Francisco, CA 94016" +252439,AAA Batteries (4-pack),2,2.99,09/15/19 11:37,"615 North St, Dallas, TX 75001" +252440,ThinkPad Laptop,1,999.99,09/08/19 07:15,"565 11th St, San Francisco, CA 94016" +252441,Bose SoundSport Headphones,1,99.99,09/13/19 10:16,"458 Forest St, Portland, OR 97035" +252442,AAA Batteries (4-pack),1,2.99,09/08/19 21:44,"329 South St, Los Angeles, CA 90001" +252443,AA Batteries (4-pack),1,3.84,09/21/19 10:22,"95 Lakeview St, Boston, MA 02215" +252444,USB-C Charging Cable,2,11.95,09/28/19 14:19,"538 1st St, Seattle, WA 98101" +252445,AA Batteries (4-pack),2,3.84,09/14/19 16:49,"30 5th St, Boston, MA 02215" +252446,Lightning Charging Cable,1,14.95,09/08/19 13:24,"83 Ridge St, Atlanta, GA 30301" +252447,Flatscreen TV,1,300,09/03/19 17:27,"418 4th St, Atlanta, GA 30301" +252448,27in 4K Gaming Monitor,1,389.99,09/04/19 19:49,"525 Johnson St, New York City, NY 10001" +252449,Apple Airpods Headphones,1,150,09/27/19 22:04,"6 Cedar St, San Francisco, CA 94016" +252450,LG Washing Machine,1,600.0,09/01/19 13:50,"788 Spruce St, San Francisco, CA 94016" +252451,34in Ultrawide Monitor,1,379.99,09/07/19 14:18,"914 Park St, Portland, OR 97035" +252452,27in FHD Monitor,1,149.99,09/08/19 11:20,"658 Center St, New York City, NY 10001" +252453,AA Batteries (4-pack),2,3.84,09/20/19 23:41,"808 Lincoln St, Dallas, TX 75001" +252454,AA Batteries (4-pack),1,3.84,09/16/19 11:18,"306 8th St, Dallas, TX 75001" +252455,Apple Airpods Headphones,1,150,09/12/19 22:33,"549 14th St, Seattle, WA 98101" +252456,iPhone,1,700,09/22/19 09:55,"376 Chestnut St, Atlanta, GA 30301" +252456,AA Batteries (4-pack),1,3.84,09/22/19 09:55,"376 Chestnut St, Atlanta, GA 30301" +252457,Flatscreen TV,1,300,09/29/19 14:23,"919 10th St, New York City, NY 10001" +252458,Lightning Charging Cable,1,14.95,09/05/19 20:47,"256 Church St, Los Angeles, CA 90001" +252459,USB-C Charging Cable,1,11.95,09/23/19 08:02,"393 Hill St, San Francisco, CA 94016" +252460,AA Batteries (4-pack),2,3.84,09/07/19 17:59,"291 12th St, Atlanta, GA 30301" +252461,Wired Headphones,1,11.99,09/30/19 11:16,"571 14th St, Boston, MA 02215" +252462,AA Batteries (4-pack),1,3.84,09/09/19 18:09,"713 Forest St, Dallas, TX 75001" +252463,Apple Airpods Headphones,1,150,09/21/19 20:52,"15 Adams St, San Francisco, CA 94016" +252464,USB-C Charging Cable,1,11.95,09/27/19 18:55,"324 Sunset St, Seattle, WA 98101" +252465,ThinkPad Laptop,1,999.99,09/15/19 13:45,"800 Dogwood St, Portland, OR 97035" +252466,Wired Headphones,1,11.99,09/19/19 21:55,"612 Sunset St, New York City, NY 10001" +252467,AAA Batteries (4-pack),1,2.99,09/20/19 18:55,"659 9th St, Boston, MA 02215" +252468,USB-C Charging Cable,1,11.95,09/04/19 09:57,"968 Meadow St, Atlanta, GA 30301" +252469,AAA Batteries (4-pack),1,2.99,09/09/19 10:37,"546 Spruce St, Portland, OR 97035" +252470,AA Batteries (4-pack),1,3.84,09/23/19 13:26,"60 4th St, New York City, NY 10001" +252471,Google Phone,1,600,09/08/19 17:20,"859 13th St, Portland, OR 97035" +252472,AAA Batteries (4-pack),2,2.99,09/14/19 17:57,"255 Forest St, San Francisco, CA 94016" +252473,20in Monitor,1,109.99,09/10/19 22:23,"51 1st St, New York City, NY 10001" +252474,34in Ultrawide Monitor,1,379.99,09/08/19 13:08,"876 Ridge St, San Francisco, CA 94016" +252475,AA Batteries (4-pack),1,3.84,09/18/19 19:47,"268 11th St, Seattle, WA 98101" +252476,AAA Batteries (4-pack),2,2.99,09/15/19 08:32,"228 West St, Los Angeles, CA 90001" +252477,iPhone,1,700,09/17/19 18:37,"529 9th St, Portland, OR 97035" +252478,Google Phone,1,600,09/25/19 13:44,"23 River St, Boston, MA 02215" +252479,AA Batteries (4-pack),2,3.84,09/05/19 19:37,"342 Meadow St, Dallas, TX 75001" +252480,USB-C Charging Cable,1,11.95,09/12/19 09:45,"928 Elm St, Dallas, TX 75001" +252481,LG Washing Machine,1,600.0,09/15/19 15:14,"795 Forest St, Dallas, TX 75001" +252482,Apple Airpods Headphones,1,150,09/28/19 14:42,"25 4th St, San Francisco, CA 94016" +252483,AAA Batteries (4-pack),1,2.99,09/26/19 13:01,"943 West St, Seattle, WA 98101" +252484,27in FHD Monitor,1,149.99,09/10/19 14:29,"339 Madison St, Austin, TX 73301" +252485,34in Ultrawide Monitor,1,379.99,09/12/19 16:05,"200 Wilson St, Atlanta, GA 30301" +252486,20in Monitor,1,109.99,09/10/19 00:31,"602 Sunset St, New York City, NY 10001" +252487,USB-C Charging Cable,1,11.95,09/19/19 12:04,"116 Ridge St, Seattle, WA 98101" +252488,Flatscreen TV,1,300,09/25/19 22:47,"449 10th St, San Francisco, CA 94016" +252489,USB-C Charging Cable,1,11.95,09/08/19 14:06,"171 Spruce St, Los Angeles, CA 90001" +252490,Bose SoundSport Headphones,1,99.99,09/27/19 11:53,"867 Maple St, Los Angeles, CA 90001" +252491,Wired Headphones,1,11.99,09/07/19 05:05,"444 Johnson St, Seattle, WA 98101" +252492,34in Ultrawide Monitor,1,379.99,09/18/19 13:22,"131 Park St, San Francisco, CA 94016" +252493,ThinkPad Laptop,1,999.99,09/19/19 09:51,"545 Main St, New York City, NY 10001" +252494,USB-C Charging Cable,1,11.95,09/07/19 10:50,"694 8th St, New York City, NY 10001" +252495,Wired Headphones,1,11.99,09/08/19 09:48,"920 Cedar St, Boston, MA 02215" +252496,USB-C Charging Cable,1,11.95,09/30/19 20:03,"186 North St, Boston, MA 02215" +252497,Wired Headphones,1,11.99,09/29/19 15:03,"536 2nd St, San Francisco, CA 94016" +252498,Lightning Charging Cable,1,14.95,09/01/19 13:50,"678 2nd St, San Francisco, CA 94016" +252499,iPhone,1,700,09/02/19 13:43,"158 Jackson St, Los Angeles, CA 90001" +252500,iPhone,1,700,09/29/19 18:43,"268 Jefferson St, Portland, OR 97035" +252500,Lightning Charging Cable,1,14.95,09/29/19 18:43,"268 Jefferson St, Portland, OR 97035" +252500,Wired Headphones,1,11.99,09/29/19 18:43,"268 Jefferson St, Portland, OR 97035" +252501,AA Batteries (4-pack),1,3.84,09/06/19 13:02,"758 South St, Boston, MA 02215" +252502,Wired Headphones,1,11.99,09/30/19 13:53,"667 9th St, Portland, OR 97035" +252503,27in FHD Monitor,1,149.99,09/16/19 21:57,"831 Pine St, Boston, MA 02215" +252504,20in Monitor,1,109.99,09/07/19 10:30,"78 Washington St, Los Angeles, CA 90001" +252505,AAA Batteries (4-pack),1,2.99,09/27/19 21:58,"594 Jackson St, Austin, TX 73301" +252506,Wired Headphones,1,11.99,09/12/19 05:02,"562 8th St, New York City, NY 10001" +252507,Lightning Charging Cable,1,14.95,09/29/19 15:59,"37 Johnson St, Seattle, WA 98101" +252508,AA Batteries (4-pack),1,3.84,09/18/19 12:29,"140 Maple St, Portland, OR 97035" +252509,AA Batteries (4-pack),2,3.84,09/02/19 20:54,"416 12th St, New York City, NY 10001" +252510,AA Batteries (4-pack),1,3.84,09/08/19 17:00,"3 Pine St, Austin, TX 73301" +252511,Flatscreen TV,1,300,09/02/19 14:21,"725 Forest St, Austin, TX 73301" +252512,Apple Airpods Headphones,1,150,09/12/19 17:37,"9 8th St, New York City, NY 10001" +252513,Bose SoundSport Headphones,1,99.99,09/16/19 19:42,"845 Washington St, San Francisco, CA 94016" +252514,Macbook Pro Laptop,1,1700,09/08/19 20:05,"845 Jackson St, Dallas, TX 75001" +252515,27in 4K Gaming Monitor,1,389.99,09/12/19 18:50,"724 Elm St, Portland, OR 97035" +252516,USB-C Charging Cable,1,11.95,09/16/19 09:52,"640 Forest St, San Francisco, CA 94016" +252517,Apple Airpods Headphones,1,150,09/08/19 19:12,"58 11th St, Austin, TX 73301" +252518,USB-C Charging Cable,1,11.95,09/12/19 14:43,"314 Meadow St, San Francisco, CA 94016" +252519,AA Batteries (4-pack),1,3.84,09/09/19 16:43,"899 Dogwood St, Los Angeles, CA 90001" +252520,AA Batteries (4-pack),1,3.84,09/06/19 19:49,"128 Willow St, San Francisco, CA 94016" +252521,Bose SoundSport Headphones,1,99.99,09/21/19 09:37,"184 14th St, Los Angeles, CA 90001" +252522,AAA Batteries (4-pack),2,2.99,09/22/19 23:31,"563 Cedar St, San Francisco, CA 94016" +252523,USB-C Charging Cable,1,11.95,09/30/19 20:47,"189 South St, New York City, NY 10001" +252524,USB-C Charging Cable,1,11.95,09/07/19 14:11,"34 Spruce St, Los Angeles, CA 90001" +252525,Lightning Charging Cable,1,14.95,09/21/19 09:48,"728 Washington St, Atlanta, GA 30301" +252526,AAA Batteries (4-pack),2,2.99,09/23/19 17:09,"619 Center St, Atlanta, GA 30301" +252527,AAA Batteries (4-pack),1,2.99,09/27/19 21:50,"715 1st St, San Francisco, CA 94016" +252528,Flatscreen TV,1,300,09/21/19 08:23,"903 Walnut St, San Francisco, CA 94016" +252529,AA Batteries (4-pack),1,3.84,09/02/19 14:52,"879 Pine St, Austin, TX 73301" +252530,Apple Airpods Headphones,1,150,09/13/19 12:39,"40 Lincoln St, Dallas, TX 75001" +252531,Google Phone,1,600,09/14/19 02:35,"866 Church St, San Francisco, CA 94016" +252532,AAA Batteries (4-pack),1,2.99,09/05/19 11:05,"652 Lake St, Seattle, WA 98101" +252533,Flatscreen TV,1,300,09/04/19 19:24,"653 9th St, San Francisco, CA 94016" +252534,27in FHD Monitor,1,149.99,09/09/19 19:00,"256 9th St, Los Angeles, CA 90001" +252535,34in Ultrawide Monitor,1,379.99,09/19/19 17:29,"587 Jackson St, Austin, TX 73301" +252536,USB-C Charging Cable,1,11.95,09/01/19 07:09,"809 Meadow St, New York City, NY 10001" +252537,Bose SoundSport Headphones,1,99.99,09/06/19 18:25,"137 South St, New York City, NY 10001" +252538,27in 4K Gaming Monitor,1,389.99,09/06/19 11:12,"706 Elm St, Portland, OR 97035" +252539,27in 4K Gaming Monitor,1,389.99,09/04/19 10:28,"174 4th St, Boston, MA 02215" +252539,AAA Batteries (4-pack),4,2.99,09/04/19 10:28,"174 4th St, Boston, MA 02215" +252540,AAA Batteries (4-pack),1,2.99,09/14/19 05:31,"885 Spruce St, Portland, OR 97035" +252541,Apple Airpods Headphones,1,150,09/30/19 07:10,"727 Meadow St, Portland, OR 97035" +252542,AA Batteries (4-pack),4,3.84,09/20/19 18:22,"708 11th St, Boston, MA 02215" +252543,AAA Batteries (4-pack),1,2.99,09/10/19 17:23,"448 Church St, Boston, MA 02215" +252544,Lightning Charging Cable,1,14.95,09/29/19 13:18,"257 7th St, Portland, OR 97035" +252545,USB-C Charging Cable,1,11.95,09/16/19 18:29,"670 1st St, Portland, OR 97035" +252546,34in Ultrawide Monitor,1,379.99,09/25/19 19:57,"61 Elm St, Austin, TX 73301" +252547,27in FHD Monitor,1,149.99,09/22/19 11:46,"594 14th St, Dallas, TX 75001" +252548,AAA Batteries (4-pack),1,2.99,09/26/19 17:19,"537 Johnson St, Los Angeles, CA 90001" +,,,,, +252549,AAA Batteries (4-pack),1,2.99,09/18/19 14:21,"623 7th St, Portland, OR 97035" +252550,Lightning Charging Cable,1,14.95,09/25/19 07:48,"409 9th St, Dallas, TX 75001" +252551,Bose SoundSport Headphones,1,99.99,09/05/19 15:39,"656 11th St, Portland, OR 97035" +252552,USB-C Charging Cable,1,11.95,09/15/19 12:32,"712 Hill St, Los Angeles, CA 90001" +252553,Lightning Charging Cable,1,14.95,09/17/19 12:39,"598 Forest St, Atlanta, GA 30301" +252554,Bose SoundSport Headphones,1,99.99,09/16/19 13:25,"711 Adams St, New York City, NY 10001" +252555,34in Ultrawide Monitor,1,379.99,09/27/19 03:46,"718 Lakeview St, Los Angeles, CA 90001" +252555,27in FHD Monitor,1,149.99,09/27/19 03:46,"718 Lakeview St, Los Angeles, CA 90001" +252556,27in 4K Gaming Monitor,1,389.99,09/16/19 01:43,"896 Forest St, San Francisco, CA 94016" +252557,Wired Headphones,1,11.99,09/25/19 21:34,"339 8th St, San Francisco, CA 94016" +252558,Wired Headphones,1,11.99,09/12/19 20:44,"161 River St, New York City, NY 10001" +252559,Wired Headphones,1,11.99,09/09/19 11:50,"561 Walnut St, San Francisco, CA 94016" +252560,Flatscreen TV,1,300,09/14/19 10:32,"899 Park St, Boston, MA 02215" +252561,Apple Airpods Headphones,1,150,09/15/19 20:32,"166 River St, Seattle, WA 98101" +252562,27in FHD Monitor,1,149.99,09/29/19 09:45,"9 Washington St, San Francisco, CA 94016" +252563,27in FHD Monitor,1,149.99,09/07/19 19:26,"178 8th St, San Francisco, CA 94016" +252564,27in FHD Monitor,1,149.99,09/06/19 22:29,"49 Madison St, San Francisco, CA 94016" +252565,ThinkPad Laptop,1,999.99,09/08/19 22:20,"398 Lake St, Seattle, WA 98101" +252566,AA Batteries (4-pack),1,3.84,09/24/19 11:47,"410 West St, San Francisco, CA 94016" +252567,27in 4K Gaming Monitor,1,389.99,09/04/19 22:48,"585 Wilson St, Austin, TX 73301" +252568,AA Batteries (4-pack),2,3.84,09/07/19 21:22,"86 Wilson St, New York City, NY 10001" +252569,USB-C Charging Cable,1,11.95,09/22/19 09:29,"987 Ridge St, Austin, TX 73301" +252570,Wired Headphones,1,11.99,09/13/19 19:54,"636 Adams St, Seattle, WA 98101" +252571,Bose SoundSport Headphones,1,99.99,09/19/19 12:32,"973 River St, Boston, MA 02215" +252572,AAA Batteries (4-pack),2,2.99,09/18/19 12:21,"527 9th St, San Francisco, CA 94016" +252573,AAA Batteries (4-pack),1,2.99,09/29/19 22:17,"871 Lakeview St, New York City, NY 10001" +252574,AAA Batteries (4-pack),1,2.99,09/16/19 17:46,"791 Forest St, Boston, MA 02215" +252575,AAA Batteries (4-pack),2,2.99,09/09/19 19:02,"422 Highland St, Boston, MA 02215" +252576,Lightning Charging Cable,1,14.95,09/09/19 18:02,"131 Dogwood St, Dallas, TX 75001" +252577,AA Batteries (4-pack),1,3.84,09/01/19 18:12,"883 7th St, Los Angeles, CA 90001" +252578,Wired Headphones,1,11.99,09/11/19 14:17,"816 9th St, San Francisco, CA 94016" +252579,Lightning Charging Cable,1,14.95,09/08/19 17:44,"984 Dogwood St, San Francisco, CA 94016" +252580,USB-C Charging Cable,1,11.95,09/07/19 19:33,"709 Cherry St, San Francisco, CA 94016" +252581,Apple Airpods Headphones,1,150,09/12/19 15:36,"854 Wilson St, San Francisco, CA 94016" +252582,Wired Headphones,1,11.99,09/03/19 15:56,"27 West St, San Francisco, CA 94016" +252583,USB-C Charging Cable,1,11.95,09/16/19 10:28,"149 Willow St, Atlanta, GA 30301" +252584,AA Batteries (4-pack),1,3.84,09/15/19 17:01,"432 Washington St, Austin, TX 73301" +252585,Lightning Charging Cable,2,14.95,09/19/19 22:15,"110 River St, Boston, MA 02215" +252586,iPhone,1,700,09/30/19 15:57,"909 Jefferson St, San Francisco, CA 94016" +252586,Apple Airpods Headphones,1,150,09/30/19 15:57,"909 Jefferson St, San Francisco, CA 94016" +252587,Apple Airpods Headphones,1,150,09/29/19 15:01,"457 Pine St, San Francisco, CA 94016" +252588,Bose SoundSport Headphones,1,99.99,09/15/19 12:45,"279 Sunset St, Portland, OR 97035" +252589,AAA Batteries (4-pack),1,2.99,09/25/19 10:44,"651 8th St, Boston, MA 02215" +252590,AAA Batteries (4-pack),1,2.99,09/06/19 10:37,"630 4th St, Atlanta, GA 30301" +252591,Bose SoundSport Headphones,1,99.99,09/29/19 10:50,"101 Meadow St, Atlanta, GA 30301" +252592,AAA Batteries (4-pack),1,2.99,09/21/19 12:26,"512 Spruce St, San Francisco, CA 94016" +252593,Bose SoundSport Headphones,1,99.99,09/16/19 19:38,"502 8th St, New York City, NY 10001" +252594,AA Batteries (4-pack),1,3.84,09/28/19 13:21,"787 Jackson St, Atlanta, GA 30301" +252595,Apple Airpods Headphones,1,150,09/23/19 00:30,"16 Jefferson St, New York City, NY 10001" +252596,34in Ultrawide Monitor,1,379.99,09/20/19 14:05,"95 Park St, Dallas, TX 75001" +252597,AA Batteries (4-pack),2,3.84,09/02/19 15:36,"100 Maple St, Dallas, TX 75001" +252598,20in Monitor,1,109.99,09/18/19 22:07,"298 10th St, Dallas, TX 75001" +252599,27in 4K Gaming Monitor,1,389.99,09/16/19 10:09,"896 Washington St, San Francisco, CA 94016" +252600,34in Ultrawide Monitor,1,379.99,09/03/19 16:10,"925 12th St, Portland, OR 97035" +252601,Google Phone,1,600,09/08/19 15:03,"806 9th St, New York City, NY 10001" +252602,USB-C Charging Cable,1,11.95,09/08/19 19:54,"222 4th St, Seattle, WA 98101" +252603,ThinkPad Laptop,1,999.99,09/12/19 10:48,"300 Chestnut St, San Francisco, CA 94016" +252604,AA Batteries (4-pack),1,3.84,09/02/19 13:54,"271 Hill St, New York City, NY 10001" +252605,USB-C Charging Cable,1,11.95,09/06/19 13:01,"778 Adams St, San Francisco, CA 94016" +252606,AA Batteries (4-pack),1,3.84,09/15/19 19:18,"734 11th St, Dallas, TX 75001" +252607,USB-C Charging Cable,1,11.95,09/01/19 14:10,"296 Lake St, New York City, NY 10001" +252608,USB-C Charging Cable,1,11.95,09/17/19 11:04,"686 Meadow St, New York City, NY 10001" +252609,34in Ultrawide Monitor,1,379.99,09/14/19 12:18,"917 8th St, Boston, MA 02215" +252610,AA Batteries (4-pack),1,3.84,09/27/19 17:19,"83 Forest St, Atlanta, GA 30301" +252611,Lightning Charging Cable,1,14.95,09/13/19 19:24,"952 Lake St, Austin, TX 73301" +252612,Wired Headphones,1,11.99,09/30/19 07:38,"752 9th St, Portland, ME 04101" +252613,AAA Batteries (4-pack),1,2.99,09/09/19 16:00,"327 West St, New York City, NY 10001" +252614,Apple Airpods Headphones,1,150,09/14/19 16:49,"477 12th St, Seattle, WA 98101" +252615,27in 4K Gaming Monitor,1,389.99,09/05/19 20:02,"360 Maple St, Boston, MA 02215" +252616,Bose SoundSport Headphones,1,99.99,09/07/19 18:44,"679 South St, Atlanta, GA 30301" +252617,Wired Headphones,1,11.99,09/10/19 20:24,"910 10th St, Los Angeles, CA 90001" +252618,AAA Batteries (4-pack),1,2.99,09/11/19 09:23,"695 5th St, San Francisco, CA 94016" +252619,AAA Batteries (4-pack),1,2.99,09/17/19 13:27,"257 9th St, San Francisco, CA 94016" +252620,Macbook Pro Laptop,1,1700,09/23/19 17:59,"174 Meadow St, New York City, NY 10001" +252621,34in Ultrawide Monitor,1,379.99,09/25/19 14:36,"685 Sunset St, Los Angeles, CA 90001" +252622,Google Phone,1,600,09/10/19 22:26,"55 2nd St, San Francisco, CA 94016" +252623,Bose SoundSport Headphones,1,99.99,09/01/19 23:47,"793 Church St, Atlanta, GA 30301" +252624,AAA Batteries (4-pack),1,2.99,09/08/19 08:55,"381 Church St, Austin, TX 73301" +252625,Lightning Charging Cable,1,14.95,09/17/19 09:48,"452 4th St, Atlanta, GA 30301" +252626,USB-C Charging Cable,1,11.95,09/15/19 07:54,"329 Main St, Portland, ME 04101" +252627,27in FHD Monitor,1,149.99,09/17/19 15:37,"803 Park St, New York City, NY 10001" +252628,AAA Batteries (4-pack),2,2.99,09/15/19 15:50,"236 West St, San Francisco, CA 94016" +252629,Bose SoundSport Headphones,1,99.99,09/20/19 21:35,"614 Chestnut St, New York City, NY 10001" +252630,Lightning Charging Cable,2,14.95,09/21/19 14:12,"384 8th St, Los Angeles, CA 90001" +252631,Lightning Charging Cable,1,14.95,09/10/19 09:59,"532 Chestnut St, Boston, MA 02215" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +252632,AAA Batteries (4-pack),1,2.99,09/23/19 10:26,"515 Ridge St, New York City, NY 10001" +252633,AAA Batteries (4-pack),1,2.99,09/09/19 16:06,"239 Wilson St, San Francisco, CA 94016" +252634,Bose SoundSport Headphones,1,99.99,09/08/19 13:02,"463 Johnson St, Los Angeles, CA 90001" +252635,34in Ultrawide Monitor,1,379.99,09/30/19 07:52,"899 11th St, New York City, NY 10001" +252636,Macbook Pro Laptop,1,1700,09/24/19 18:14,"802 Meadow St, Austin, TX 73301" +252637,Wired Headphones,1,11.99,09/01/19 10:38,"160 Hickory St, Portland, ME 04101" +252638,Apple Airpods Headphones,1,150,09/25/19 17:56,"610 Wilson St, Los Angeles, CA 90001" +252639,Bose SoundSport Headphones,1,99.99,09/05/19 02:01,"339 10th St, Austin, TX 73301" +252640,27in 4K Gaming Monitor,1,389.99,09/23/19 10:37,"632 11th St, Boston, MA 02215" +252641,27in FHD Monitor,1,149.99,09/20/19 20:44,"252 1st St, Boston, MA 02215" +252642,Lightning Charging Cable,1,14.95,09/17/19 22:48,"161 Hickory St, San Francisco, CA 94016" +252643,AAA Batteries (4-pack),1,2.99,09/26/19 19:24,"273 Madison St, Portland, ME 04101" +252643,ThinkPad Laptop,1,999.99,09/26/19 19:24,"273 Madison St, Portland, ME 04101" +252644,iPhone,1,700,09/22/19 09:56,"321 5th St, San Francisco, CA 94016" +252644,Lightning Charging Cable,1,14.95,09/22/19 09:56,"321 5th St, San Francisco, CA 94016" +252645,Google Phone,1,600,09/10/19 22:35,"17 14th St, New York City, NY 10001" +252645,USB-C Charging Cable,1,11.95,09/10/19 22:35,"17 14th St, New York City, NY 10001" +252646,Lightning Charging Cable,1,14.95,09/02/19 18:45,"124 12th St, New York City, NY 10001" +252647,Lightning Charging Cable,1,14.95,09/07/19 11:30,"264 Jackson St, Seattle, WA 98101" +252648,AA Batteries (4-pack),1,3.84,09/04/19 20:47,"835 Church St, Dallas, TX 75001" +252649,AAA Batteries (4-pack),1,2.99,09/29/19 00:20,"989 Meadow St, New York City, NY 10001" +252650,Bose SoundSport Headphones,1,99.99,09/24/19 12:50,"778 West St, New York City, NY 10001" +252651,USB-C Charging Cable,1,11.95,09/11/19 13:02,"60 12th St, Los Angeles, CA 90001" +252652,Wired Headphones,1,11.99,09/01/19 21:34,"638 Main St, San Francisco, CA 94016" +,,,,, +252653,AA Batteries (4-pack),2,3.84,09/30/19 20:21,"502 Hill St, Atlanta, GA 30301" +252653,Bose SoundSport Headphones,1,99.99,09/30/19 20:21,"502 Hill St, Atlanta, GA 30301" +252654,Google Phone,1,600,09/30/19 15:22,"920 Spruce St, San Francisco, CA 94016" +,,,,, +252655,Lightning Charging Cable,1,14.95,09/25/19 03:11,"889 Lincoln St, Seattle, WA 98101" +252656,Wired Headphones,1,11.99,09/29/19 14:08,"995 Spruce St, Austin, TX 73301" +252657,Apple Airpods Headphones,1,150,09/02/19 11:58,"477 14th St, New York City, NY 10001" +252658,Bose SoundSport Headphones,1,99.99,09/20/19 04:29,"941 Walnut St, Los Angeles, CA 90001" +252659,AAA Batteries (4-pack),1,2.99,09/13/19 00:23,"814 12th St, Boston, MA 02215" +252660,USB-C Charging Cable,1,11.95,09/05/19 19:28,"194 10th St, San Francisco, CA 94016" +252661,Bose SoundSport Headphones,1,99.99,09/14/19 11:56,"916 Ridge St, Portland, OR 97035" +252662,AAA Batteries (4-pack),3,2.99,09/21/19 11:36,"5 Center St, Dallas, TX 75001" +252663,Wired Headphones,1,11.99,09/05/19 05:05,"996 Highland St, San Francisco, CA 94016" +252664,AAA Batteries (4-pack),2,2.99,09/30/19 15:06,"944 North St, Dallas, TX 75001" +252665,AAA Batteries (4-pack),1,2.99,09/01/19 11:44,"688 10th St, Seattle, WA 98101" +252666,Lightning Charging Cable,1,14.95,09/11/19 14:53,"284 4th St, San Francisco, CA 94016" +252667,Wired Headphones,1,11.99,09/06/19 18:07,"478 Pine St, New York City, NY 10001" +252668,AAA Batteries (4-pack),2,2.99,09/15/19 18:12,"535 Pine St, Atlanta, GA 30301" +252669,ThinkPad Laptop,1,999.99,09/02/19 20:59,"199 8th St, Atlanta, GA 30301" +252670,27in FHD Monitor,1,149.99,09/03/19 19:28,"591 Wilson St, Los Angeles, CA 90001" +252671,Wired Headphones,1,11.99,09/29/19 22:17,"449 Washington St, Atlanta, GA 30301" +252672,27in 4K Gaming Monitor,1,389.99,09/08/19 07:30,"881 6th St, Los Angeles, CA 90001" +252673,ThinkPad Laptop,1,999.99,09/02/19 00:37,"298 Lakeview St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +252674,27in FHD Monitor,1,149.99,09/01/19 20:38,"993 11th St, Boston, MA 02215" +252675,AA Batteries (4-pack),1,3.84,09/08/19 19:20,"446 Madison St, Austin, TX 73301" +252676,AAA Batteries (4-pack),1,2.99,09/16/19 17:14,"201 6th St, San Francisco, CA 94016" +252677,USB-C Charging Cable,1,11.95,09/30/19 02:03,"480 South St, Los Angeles, CA 90001" +252678,20in Monitor,1,109.99,09/23/19 17:17,"43 2nd St, Boston, MA 02215" +252679,Wired Headphones,1,11.99,09/18/19 00:53,"703 Hill St, Los Angeles, CA 90001" +252680,Wired Headphones,1,11.99,09/25/19 17:22,"991 Main St, New York City, NY 10001" +252681,Wired Headphones,1,11.99,09/17/19 13:24,"733 Lakeview St, New York City, NY 10001" +252682,27in FHD Monitor,1,149.99,09/11/19 20:48,"111 Pine St, Atlanta, GA 30301" +252683,AAA Batteries (4-pack),1,2.99,09/29/19 22:29,"442 Walnut St, Atlanta, GA 30301" +252684,Apple Airpods Headphones,1,150,10/01/19 00:45,"111 Church St, Los Angeles, CA 90001" +252685,Lightning Charging Cable,1,14.95,09/01/19 20:40,"570 Center St, New York City, NY 10001" +252685,Apple Airpods Headphones,1,150,09/01/19 20:40,"570 Center St, New York City, NY 10001" +252686,34in Ultrawide Monitor,1,379.99,09/15/19 08:49,"625 14th St, New York City, NY 10001" +252687,AA Batteries (4-pack),2,3.84,09/12/19 12:19,"931 Johnson St, New York City, NY 10001" +252688,Bose SoundSport Headphones,1,99.99,09/05/19 22:05,"551 8th St, New York City, NY 10001" +252689,AA Batteries (4-pack),1,3.84,09/08/19 01:16,"683 2nd St, New York City, NY 10001" +252690,AA Batteries (4-pack),1,3.84,09/23/19 09:27,"182 Ridge St, San Francisco, CA 94016" +252691,Lightning Charging Cable,1,14.95,09/18/19 23:49,"267 13th St, Boston, MA 02215" +252692,ThinkPad Laptop,1,999.99,09/11/19 14:57,"599 Lincoln St, Boston, MA 02215" +252693,Apple Airpods Headphones,1,150,09/27/19 12:37,"654 Washington St, New York City, NY 10001" +252694,USB-C Charging Cable,1,11.95,09/28/19 14:06,"335 Adams St, San Francisco, CA 94016" +252695,Apple Airpods Headphones,1,150,09/13/19 18:15,"201 Lake St, San Francisco, CA 94016" +252696,34in Ultrawide Monitor,1,379.99,09/01/19 08:11,"322 11th St, Dallas, TX 75001" +252697,Bose SoundSport Headphones,1,99.99,09/16/19 00:25,"732 South St, San Francisco, CA 94016" +252698,Macbook Pro Laptop,1,1700,09/17/19 20:32,"760 Madison St, San Francisco, CA 94016" +252699,AAA Batteries (4-pack),3,2.99,09/08/19 22:30,"113 11th St, New York City, NY 10001" +252700,Macbook Pro Laptop,1,1700,09/15/19 18:57,"702 Dogwood St, Seattle, WA 98101" +252701,AAA Batteries (4-pack),1,2.99,09/04/19 17:57,"38 9th St, Los Angeles, CA 90001" +252702,Google Phone,1,600,09/29/19 10:31,"234 Park St, San Francisco, CA 94016" +252703,Bose SoundSport Headphones,1,99.99,09/07/19 12:36,"301 Cedar St, Portland, OR 97035" +252704,Flatscreen TV,1,300,09/23/19 14:44,"969 Walnut St, Portland, OR 97035" +252705,Flatscreen TV,1,300,09/10/19 22:05,"549 Lakeview St, Portland, OR 97035" +252706,27in 4K Gaming Monitor,1,389.99,09/09/19 12:25,"171 Center St, Dallas, TX 75001" +252707,AAA Batteries (4-pack),1,2.99,09/15/19 11:19,"658 Elm St, San Francisco, CA 94016" +252708,Google Phone,1,600,09/06/19 17:48,"814 Main St, San Francisco, CA 94016" +252709,AA Batteries (4-pack),1,3.84,09/29/19 19:17,"89 Adams St, Los Angeles, CA 90001" +252710,Bose SoundSport Headphones,1,99.99,09/06/19 00:59,"12 12th St, Boston, MA 02215" +252711,iPhone,1,700,09/28/19 20:29,"663 Johnson St, Boston, MA 02215" +252712,Wired Headphones,1,11.99,09/08/19 06:57,"181 Spruce St, New York City, NY 10001" +252713,Lightning Charging Cable,1,14.95,09/30/19 13:58,"184 Chestnut St, Boston, MA 02215" +252714,Bose SoundSport Headphones,1,99.99,09/18/19 21:20,"75 Church St, San Francisco, CA 94016" +252715,AAA Batteries (4-pack),2,2.99,09/24/19 19:33,"352 14th St, Dallas, TX 75001" +252716,27in 4K Gaming Monitor,1,389.99,09/26/19 15:25,"364 Jefferson St, San Francisco, CA 94016" +252717,Apple Airpods Headphones,1,150,09/30/19 09:12,"17 South St, Portland, OR 97035" +252718,Vareebadd Phone,1,400,09/07/19 18:08,"918 River St, San Francisco, CA 94016" +252719,AAA Batteries (4-pack),1,2.99,09/21/19 14:22,"3 14th St, Los Angeles, CA 90001" +252720,AA Batteries (4-pack),1,3.84,09/04/19 13:28,"836 Hickory St, Austin, TX 73301" +252721,Wired Headphones,1,11.99,09/09/19 16:03,"737 Church St, San Francisco, CA 94016" +252722,AA Batteries (4-pack),1,3.84,09/09/19 22:42,"869 Jackson St, Los Angeles, CA 90001" +252723,20in Monitor,1,109.99,09/21/19 21:53,"280 South St, Atlanta, GA 30301" +252724,Apple Airpods Headphones,1,150,09/28/19 19:25,"473 Lincoln St, Portland, ME 04101" +252725,Apple Airpods Headphones,2,150,09/08/19 17:47,"444 Church St, Atlanta, GA 30301" +252726,Lightning Charging Cable,1,14.95,09/14/19 21:42,"279 Hill St, Los Angeles, CA 90001" +252727,Apple Airpods Headphones,1,150,09/04/19 14:48,"823 Jackson St, San Francisco, CA 94016" +252728,20in Monitor,1,109.99,09/07/19 21:41,"805 Washington St, New York City, NY 10001" +252729,AA Batteries (4-pack),1,3.84,09/26/19 16:52,"50 Church St, Los Angeles, CA 90001" +252730,USB-C Charging Cable,1,11.95,09/22/19 21:03,"45 North St, New York City, NY 10001" +252731,Wired Headphones,1,11.99,09/10/19 11:18,"466 2nd St, Los Angeles, CA 90001" +252731,Lightning Charging Cable,1,14.95,09/10/19 11:18,"466 2nd St, Los Angeles, CA 90001" +252732,USB-C Charging Cable,1,11.95,09/20/19 18:33,"834 Wilson St, Austin, TX 73301" +252733,AA Batteries (4-pack),1,3.84,09/28/19 19:43,"494 Meadow St, Dallas, TX 75001" +252734,Bose SoundSport Headphones,1,99.99,09/21/19 10:54,"388 8th St, Los Angeles, CA 90001" +252735,Bose SoundSport Headphones,1,99.99,09/14/19 17:36,"55 1st St, New York City, NY 10001" +252736,ThinkPad Laptop,1,999.99,09/09/19 20:25,"585 West St, Seattle, WA 98101" +252737,Bose SoundSport Headphones,1,99.99,09/19/19 14:14,"540 5th St, Dallas, TX 75001" +252738,AAA Batteries (4-pack),1,2.99,09/05/19 18:27,"909 Wilson St, Dallas, TX 75001" +252739,USB-C Charging Cable,1,11.95,09/05/19 18:50,"961 9th St, New York City, NY 10001" +252740,Macbook Pro Laptop,1,1700,09/24/19 20:42,"557 11th St, Seattle, WA 98101" +252741,AA Batteries (4-pack),2,3.84,09/15/19 22:05,"85 Lake St, San Francisco, CA 94016" +252742,Wired Headphones,1,11.99,09/04/19 19:59,"352 Lakeview St, Boston, MA 02215" +252743,Wired Headphones,1,11.99,09/07/19 09:03,"843 8th St, Portland, ME 04101" +252744,AAA Batteries (4-pack),1,2.99,09/16/19 12:28,"924 South St, Portland, OR 97035" +252745,USB-C Charging Cable,1,11.95,09/30/19 11:58,"690 4th St, Dallas, TX 75001" +252746,AA Batteries (4-pack),1,3.84,09/01/19 22:08,"838 Church St, San Francisco, CA 94016" +252747,AA Batteries (4-pack),1,3.84,09/18/19 12:13,"640 Ridge St, New York City, NY 10001" +252748,34in Ultrawide Monitor,1,379.99,09/28/19 00:02,"771 Spruce St, Boston, MA 02215" +252749,LG Washing Machine,1,600.0,09/15/19 20:46,"63 North St, Boston, MA 02215" +252750,iPhone,1,700,09/27/19 00:19,"903 Meadow St, Boston, MA 02215" +252751,Google Phone,1,600,09/02/19 18:43,"342 Highland St, Atlanta, GA 30301" +252752,AAA Batteries (4-pack),3,2.99,09/15/19 11:59,"557 10th St, New York City, NY 10001" +252753,34in Ultrawide Monitor,1,379.99,09/01/19 15:38,"271 Cedar St, Los Angeles, CA 90001" +252754,Bose SoundSport Headphones,1,99.99,09/01/19 10:31,"991 9th St, Atlanta, GA 30301" +252755,USB-C Charging Cable,1,11.95,09/05/19 21:08,"307 Jackson St, Austin, TX 73301" +252756,27in 4K Gaming Monitor,1,389.99,09/21/19 11:59,"745 12th St, Boston, MA 02215" +252757,27in FHD Monitor,1,149.99,09/12/19 14:50,"803 Lincoln St, Los Angeles, CA 90001" +252758,AA Batteries (4-pack),4,3.84,09/18/19 19:01,"859 Cedar St, San Francisco, CA 94016" +252759,AA Batteries (4-pack),1,3.84,09/05/19 19:14,"324 12th St, New York City, NY 10001" +252760,iPhone,1,700,09/09/19 11:28,"333 Forest St, San Francisco, CA 94016" +252761,20in Monitor,1,109.99,09/05/19 16:32,"215 West St, Boston, MA 02215" +252762,Lightning Charging Cable,1,14.95,09/11/19 16:07,"579 Adams St, Los Angeles, CA 90001" +252763,Lightning Charging Cable,1,14.95,09/16/19 13:35,"355 13th St, Dallas, TX 75001" +252764,Flatscreen TV,1,300,09/23/19 12:11,"623 Washington St, Austin, TX 73301" +252765,Lightning Charging Cable,1,14.95,09/15/19 02:33,"26 Walnut St, Seattle, WA 98101" +252766,USB-C Charging Cable,1,11.95,09/18/19 11:21,"959 Main St, New York City, NY 10001" +252767,AA Batteries (4-pack),1,3.84,09/16/19 08:00,"518 Maple St, Los Angeles, CA 90001" +252768,Wired Headphones,1,11.99,09/12/19 23:51,"247 Adams St, Boston, MA 02215" +252769,Lightning Charging Cable,1,14.95,09/16/19 12:45,"294 Spruce St, Boston, MA 02215" +252770,34in Ultrawide Monitor,1,379.99,09/03/19 17:33,"713 4th St, San Francisco, CA 94016" +252771,Bose SoundSport Headphones,1,99.99,09/04/19 11:21,"993 Center St, Austin, TX 73301" +252772,20in Monitor,1,109.99,09/29/19 01:24,"232 River St, San Francisco, CA 94016" +252773,AAA Batteries (4-pack),1,2.99,09/22/19 12:55,"685 2nd St, San Francisco, CA 94016" +252774,Wired Headphones,1,11.99,09/08/19 20:18,"216 6th St, Los Angeles, CA 90001" +252775,iPhone,1,700,09/10/19 23:57,"645 Wilson St, New York City, NY 10001" +252775,Lightning Charging Cable,1,14.95,09/10/19 23:57,"645 Wilson St, New York City, NY 10001" +252776,Apple Airpods Headphones,1,150,09/30/19 23:07,"505 Lake St, Boston, MA 02215" +252777,AAA Batteries (4-pack),1,2.99,09/07/19 07:43,"325 8th St, San Francisco, CA 94016" +252778,Flatscreen TV,1,300,09/20/19 01:08,"152 River St, New York City, NY 10001" +252779,Flatscreen TV,1,300,09/23/19 10:33,"468 Chestnut St, Atlanta, GA 30301" +252780,Wired Headphones,1,11.99,09/12/19 13:28,"728 Lincoln St, Austin, TX 73301" +252781,USB-C Charging Cable,2,11.95,09/30/19 10:19,"282 5th St, Seattle, WA 98101" +252782,27in 4K Gaming Monitor,1,389.99,09/17/19 05:38,"334 South St, Dallas, TX 75001" +252783,USB-C Charging Cable,1,11.95,09/16/19 19:58,"58 Washington St, Dallas, TX 75001" +252784,USB-C Charging Cable,1,11.95,09/24/19 23:07,"62 1st St, New York City, NY 10001" +252785,Wired Headphones,1,11.99,09/10/19 16:33,"703 Jackson St, New York City, NY 10001" +252786,Google Phone,1,600,09/25/19 14:53,"92 8th St, Boston, MA 02215" +252787,AAA Batteries (4-pack),1,2.99,09/07/19 09:43,"822 14th St, San Francisco, CA 94016" +252788,Google Phone,1,600,09/05/19 17:18,"83 5th St, Atlanta, GA 30301" +252789,AA Batteries (4-pack),1,3.84,09/11/19 08:59,"324 9th St, Seattle, WA 98101" +252790,AAA Batteries (4-pack),1,2.99,09/01/19 13:07,"796 Dogwood St, San Francisco, CA 94016" +252791,Apple Airpods Headphones,1,150,09/03/19 13:42,"427 10th St, Seattle, WA 98101" +252792,Google Phone,1,600,09/29/19 18:27,"92 Cedar St, Atlanta, GA 30301" +252793,Apple Airpods Headphones,1,150,09/12/19 07:42,"377 West St, Seattle, WA 98101" +252794,Bose SoundSport Headphones,1,99.99,09/06/19 09:39,"941 9th St, Dallas, TX 75001" +252795,20in Monitor,1,109.99,09/18/19 09:03,"509 13th St, Boston, MA 02215" +252796,ThinkPad Laptop,1,999.99,09/21/19 15:08,"341 1st St, Boston, MA 02215" +252797,27in FHD Monitor,1,149.99,09/29/19 07:36,"827 Madison St, Boston, MA 02215" +252798,Macbook Pro Laptop,1,1700,09/16/19 22:04,"915 Meadow St, San Francisco, CA 94016" +252799,AAA Batteries (4-pack),2,2.99,09/01/19 20:58,"92 North St, San Francisco, CA 94016" +252800,Wired Headphones,1,11.99,09/02/19 11:06,"108 Church St, New York City, NY 10001" +252801,iPhone,1,700,09/25/19 17:11,"59 Dogwood St, New York City, NY 10001" +252802,AAA Batteries (4-pack),3,2.99,09/11/19 14:29,"60 13th St, Dallas, TX 75001" +252803,AA Batteries (4-pack),1,3.84,09/12/19 12:37,"376 River St, New York City, NY 10001" +252804,34in Ultrawide Monitor,1,379.99,09/24/19 09:02,"508 6th St, New York City, NY 10001" +252805,Wired Headphones,1,11.99,09/22/19 10:32,"779 Highland St, San Francisco, CA 94016" +252806,34in Ultrawide Monitor,1,379.99,09/10/19 15:17,"989 13th St, San Francisco, CA 94016" +252807,27in 4K Gaming Monitor,1,389.99,09/05/19 21:37,"1 Dogwood St, New York City, NY 10001" +252808,AAA Batteries (4-pack),4,2.99,09/07/19 13:54,"878 Ridge St, Atlanta, GA 30301" +252809,USB-C Charging Cable,1,11.95,09/22/19 20:57,"690 West St, San Francisco, CA 94016" +252810,Apple Airpods Headphones,1,150,09/10/19 22:51,"57 14th St, Boston, MA 02215" +252811,USB-C Charging Cable,3,11.95,09/14/19 05:27,"268 Meadow St, New York City, NY 10001" +252812,27in FHD Monitor,1,149.99,09/13/19 08:18,"661 5th St, San Francisco, CA 94016" +252813,iPhone,1,700,09/13/19 11:33,"373 12th St, New York City, NY 10001" +252814,AAA Batteries (4-pack),1,2.99,09/19/19 12:30,"15 West St, Atlanta, GA 30301" +252815,27in 4K Gaming Monitor,1,389.99,09/14/19 18:12,"874 Lincoln St, Boston, MA 02215" +252816,USB-C Charging Cable,2,11.95,09/28/19 12:42,"337 Lincoln St, Boston, MA 02215" +252817,Apple Airpods Headphones,1,150,09/04/19 11:33,"837 Ridge St, Atlanta, GA 30301" +252818,Wired Headphones,1,11.99,09/08/19 19:19,"819 Willow St, San Francisco, CA 94016" +252819,Apple Airpods Headphones,1,150,09/12/19 20:41,"945 Main St, San Francisco, CA 94016" +252820,Flatscreen TV,1,300,09/15/19 15:51,"498 11th St, New York City, NY 10001" +252821,Bose SoundSport Headphones,1,99.99,09/11/19 11:44,"173 Walnut St, Seattle, WA 98101" +252822,USB-C Charging Cable,1,11.95,09/19/19 20:41,"322 Lake St, Boston, MA 02215" +252823,Wired Headphones,1,11.99,09/18/19 18:16,"388 Sunset St, San Francisco, CA 94016" +252824,Apple Airpods Headphones,1,150,09/01/19 20:10,"698 Cedar St, San Francisco, CA 94016" +252825,Bose SoundSport Headphones,1,99.99,09/26/19 09:50,"471 Lincoln St, San Francisco, CA 94016" +252826,Wired Headphones,1,11.99,09/25/19 00:02,"167 Wilson St, Boston, MA 02215" +252827,34in Ultrawide Monitor,1,379.99,09/20/19 11:34,"367 Hill St, New York City, NY 10001" +252828,27in 4K Gaming Monitor,1,389.99,09/25/19 19:53,"956 9th St, Los Angeles, CA 90001" +252829,Lightning Charging Cable,1,14.95,09/29/19 08:37,"840 Johnson St, San Francisco, CA 94016" +252830,iPhone,1,700,09/10/19 13:44,"848 Jefferson St, Los Angeles, CA 90001" +252831,Flatscreen TV,1,300,09/03/19 16:05,"627 North St, San Francisco, CA 94016" +252832,Bose SoundSport Headphones,1,99.99,09/30/19 19:55,"867 Park St, New York City, NY 10001" +252833,Google Phone,1,600,09/23/19 21:55,"833 Park St, Atlanta, GA 30301" +252834,Apple Airpods Headphones,1,150,09/18/19 18:36,"479 11th St, San Francisco, CA 94016" +252835,AAA Batteries (4-pack),2,2.99,09/27/19 16:58,"777 Wilson St, San Francisco, CA 94016" +252836,AAA Batteries (4-pack),1,2.99,09/28/19 14:44,"205 River St, Los Angeles, CA 90001" +252837,Wired Headphones,1,11.99,09/03/19 21:34,"616 9th St, Los Angeles, CA 90001" +252838,Lightning Charging Cable,1,14.95,09/07/19 15:05,"141 4th St, San Francisco, CA 94016" +252839,AAA Batteries (4-pack),2,2.99,09/20/19 17:02,"807 Maple St, Los Angeles, CA 90001" +252840,27in 4K Gaming Monitor,1,389.99,09/09/19 07:56,"279 9th St, Atlanta, GA 30301" +252841,AAA Batteries (4-pack),1,2.99,09/02/19 22:07,"430 Lake St, Boston, MA 02215" +252842,AA Batteries (4-pack),1,3.84,09/27/19 22:32,"713 Elm St, New York City, NY 10001" +252843,Lightning Charging Cable,1,14.95,09/12/19 03:21,"363 West St, Los Angeles, CA 90001" +252844,AA Batteries (4-pack),1,3.84,09/25/19 10:44,"153 9th St, San Francisco, CA 94016" +252845,27in FHD Monitor,1,149.99,09/07/19 00:03,"923 Jefferson St, Dallas, TX 75001" +252846,iPhone,1,700,09/13/19 10:44,"917 Jefferson St, New York City, NY 10001" +252846,Flatscreen TV,1,300,09/13/19 10:44,"917 Jefferson St, New York City, NY 10001" +252847,Lightning Charging Cable,1,14.95,09/22/19 21:26,"829 1st St, Seattle, WA 98101" +252848,USB-C Charging Cable,1,11.95,09/23/19 10:48,"783 North St, Atlanta, GA 30301" +252849,27in FHD Monitor,1,149.99,09/05/19 09:32,"677 Hill St, San Francisco, CA 94016" +252850,34in Ultrawide Monitor,1,379.99,09/20/19 23:18,"794 Wilson St, San Francisco, CA 94016" +252850,AA Batteries (4-pack),2,3.84,09/20/19 23:18,"794 Wilson St, San Francisco, CA 94016" +252851,27in 4K Gaming Monitor,1,389.99,09/04/19 17:57,"32 Madison St, Dallas, TX 75001" +252852,AAA Batteries (4-pack),1,2.99,09/17/19 13:52,"839 Forest St, Boston, MA 02215" +252853,AAA Batteries (4-pack),1,2.99,09/21/19 16:06,"996 Wilson St, San Francisco, CA 94016" +252854,AA Batteries (4-pack),2,3.84,09/16/19 15:39,"407 Dogwood St, New York City, NY 10001" +252855,AA Batteries (4-pack),2,3.84,09/15/19 16:52,"157 Spruce St, Los Angeles, CA 90001" +252856,34in Ultrawide Monitor,1,379.99,09/15/19 20:13,"184 Pine St, Atlanta, GA 30301" +252857,Lightning Charging Cable,1,14.95,09/26/19 16:57,"529 Cedar St, Seattle, WA 98101" +252858,Wired Headphones,1,11.99,09/19/19 13:25,"630 9th St, Portland, ME 04101" +252859,Wired Headphones,1,11.99,09/04/19 19:38,"107 10th St, Seattle, WA 98101" +252860,Google Phone,1,600,09/17/19 16:31,"856 Forest St, Los Angeles, CA 90001" +252861,20in Monitor,1,109.99,09/30/19 12:25,"27 Walnut St, Boston, MA 02215" +252862,Apple Airpods Headphones,1,150,09/23/19 19:08,"589 13th St, San Francisco, CA 94016" +252863,AAA Batteries (4-pack),1,2.99,09/15/19 09:39,"893 Adams St, New York City, NY 10001" +252864,AAA Batteries (4-pack),1,2.99,09/26/19 12:18,"86 North St, Austin, TX 73301" +252865,USB-C Charging Cable,1,11.95,09/12/19 11:23,"181 Sunset St, Los Angeles, CA 90001" +252866,LG Dryer,1,600.0,09/22/19 12:47,"382 14th St, Los Angeles, CA 90001" +252867,27in FHD Monitor,1,149.99,09/06/19 21:35,"694 Lake St, Dallas, TX 75001" +252868,Lightning Charging Cable,1,14.95,09/30/19 11:13,"450 Washington St, Portland, OR 97035" +252869,27in FHD Monitor,1,149.99,09/19/19 20:48,"147 Highland St, Atlanta, GA 30301" +252870,Apple Airpods Headphones,1,150,09/03/19 17:32,"930 Walnut St, San Francisco, CA 94016" +252871,Wired Headphones,1,11.99,09/08/19 21:32,"223 West St, New York City, NY 10001" +252872,AA Batteries (4-pack),1,3.84,09/22/19 21:57,"310 12th St, San Francisco, CA 94016" +252873,Lightning Charging Cable,1,14.95,09/07/19 23:55,"756 North St, Boston, MA 02215" +252874,AA Batteries (4-pack),3,3.84,09/25/19 07:35,"244 Johnson St, New York City, NY 10001" +252875,AA Batteries (4-pack),2,3.84,09/11/19 11:55,"317 11th St, San Francisco, CA 94016" +252876,Wired Headphones,1,11.99,09/11/19 21:43,"328 5th St, Boston, MA 02215" +252877,Macbook Pro Laptop,1,1700,09/17/19 21:25,"789 7th St, Boston, MA 02215" +252878,Vareebadd Phone,1,400,09/02/19 09:18,"998 Sunset St, Dallas, TX 75001" +252879,AA Batteries (4-pack),1,3.84,09/23/19 19:12,"607 Johnson St, Atlanta, GA 30301" +252880,Apple Airpods Headphones,1,150,09/17/19 17:47,"837 South St, Portland, OR 97035" +252881,Apple Airpods Headphones,1,150,09/26/19 14:22,"655 Willow St, Atlanta, GA 30301" +252882,USB-C Charging Cable,1,11.95,09/09/19 11:48,"149 Hickory St, Dallas, TX 75001" +252883,Wired Headphones,1,11.99,09/12/19 21:10,"366 Lincoln St, Dallas, TX 75001" +252884,AA Batteries (4-pack),2,3.84,09/22/19 12:08,"811 Hickory St, Los Angeles, CA 90001" +252885,20in Monitor,1,109.99,09/01/19 16:24,"636 14th St, Boston, MA 02215" +252886,Wired Headphones,1,11.99,09/16/19 19:05,"187 Forest St, Los Angeles, CA 90001" +252887,AA Batteries (4-pack),2,3.84,09/06/19 23:09,"279 2nd St, Atlanta, GA 30301" +252888,Wired Headphones,1,11.99,09/20/19 04:39,"176 11th St, Portland, OR 97035" +252889,20in Monitor,1,109.99,09/25/19 14:11,"347 Hill St, Atlanta, GA 30301" +252890,Google Phone,1,600,09/11/19 11:26,"892 Lakeview St, Los Angeles, CA 90001" +252891,34in Ultrawide Monitor,1,379.99,09/10/19 18:28,"404 4th St, New York City, NY 10001" +252892,Flatscreen TV,1,300,09/26/19 00:24,"125 Sunset St, San Francisco, CA 94016" +252893,Flatscreen TV,1,300,09/05/19 19:46,"259 Walnut St, Los Angeles, CA 90001" +252894,Macbook Pro Laptop,1,1700,09/26/19 12:11,"191 Cherry St, San Francisco, CA 94016" +252895,Apple Airpods Headphones,1,150,09/05/19 13:17,"195 Park St, San Francisco, CA 94016" +252896,USB-C Charging Cable,1,11.95,09/10/19 13:32,"183 Forest St, Boston, MA 02215" +252897,Google Phone,1,600,09/07/19 16:52,"390 9th St, San Francisco, CA 94016" +252898,Bose SoundSport Headphones,1,99.99,09/02/19 16:13,"852 Cedar St, San Francisco, CA 94016" +252899,Bose SoundSport Headphones,1,99.99,09/29/19 09:42,"675 8th St, San Francisco, CA 94016" +252900,USB-C Charging Cable,1,11.95,09/02/19 07:53,"762 Cherry St, New York City, NY 10001" +252901,Vareebadd Phone,1,400,09/20/19 06:51,"837 Hickory St, Atlanta, GA 30301" +252902,Lightning Charging Cable,1,14.95,09/29/19 17:35,"768 Madison St, San Francisco, CA 94016" +252903,Wired Headphones,1,11.99,09/26/19 19:40,"123 7th St, Los Angeles, CA 90001" +252904,USB-C Charging Cable,1,11.95,09/10/19 18:34,"172 5th St, Seattle, WA 98101" +252905,AA Batteries (4-pack),1,3.84,09/13/19 09:13,"900 Cherry St, Portland, OR 97035" +252906,ThinkPad Laptop,1,999.99,09/28/19 20:16,"233 South St, New York City, NY 10001" +252907,iPhone,1,700,09/26/19 13:16,"344 Walnut St, San Francisco, CA 94016" +252907,Lightning Charging Cable,2,14.95,09/26/19 13:16,"344 Walnut St, San Francisco, CA 94016" +252908,AA Batteries (4-pack),2,3.84,09/24/19 12:36,"794 Spruce St, Boston, MA 02215" +252908,Bose SoundSport Headphones,1,99.99,09/24/19 12:36,"794 Spruce St, Boston, MA 02215" +252909,Apple Airpods Headphones,1,150,09/19/19 13:58,"198 Pine St, Los Angeles, CA 90001" +252910,Apple Airpods Headphones,1,150,09/16/19 14:08,"168 Cherry St, Boston, MA 02215" +252911,Bose SoundSport Headphones,1,99.99,09/20/19 18:51,"641 Willow St, New York City, NY 10001" +252912,Wired Headphones,1,11.99,09/27/19 20:08,"770 Hickory St, Seattle, WA 98101" +252913,AAA Batteries (4-pack),2,2.99,09/08/19 18:22,"672 Church St, Austin, TX 73301" +252914,Bose SoundSport Headphones,1,99.99,09/16/19 18:47,"923 Chestnut St, Seattle, WA 98101" +252915,Lightning Charging Cable,1,14.95,09/25/19 18:56,"379 Cherry St, Dallas, TX 75001" +252916,iPhone,1,700,09/08/19 22:23,"555 South St, Atlanta, GA 30301" +252917,27in 4K Gaming Monitor,1,389.99,09/20/19 18:01,"684 North St, Los Angeles, CA 90001" +252918,USB-C Charging Cable,2,11.95,09/21/19 16:05,"956 Ridge St, Seattle, WA 98101" +252919,Bose SoundSport Headphones,1,99.99,09/04/19 07:56,"292 Wilson St, San Francisco, CA 94016" +252920,USB-C Charging Cable,1,11.95,09/04/19 14:37,"255 Lakeview St, Los Angeles, CA 90001" +252921,Google Phone,1,600,09/26/19 13:01,"181 Cherry St, San Francisco, CA 94016" +252921,Bose SoundSport Headphones,1,99.99,09/26/19 13:01,"181 Cherry St, San Francisco, CA 94016" +252922,27in FHD Monitor,1,149.99,09/27/19 01:14,"383 Hickory St, San Francisco, CA 94016" +252923,USB-C Charging Cable,1,11.95,09/29/19 19:56,"653 5th St, Los Angeles, CA 90001" +252923,Lightning Charging Cable,1,14.95,09/29/19 19:56,"653 5th St, Los Angeles, CA 90001" +252924,34in Ultrawide Monitor,1,379.99,09/17/19 14:39,"861 South St, Dallas, TX 75001" +252925,USB-C Charging Cable,1,11.95,09/30/19 11:35,"376 South St, Los Angeles, CA 90001" +252926,Flatscreen TV,1,300,09/12/19 13:55,"821 Dogwood St, Austin, TX 73301" +252927,iPhone,1,700,09/07/19 18:46,"910 Jackson St, Atlanta, GA 30301" +252927,Lightning Charging Cable,1,14.95,09/07/19 18:46,"910 Jackson St, Atlanta, GA 30301" +252928,ThinkPad Laptop,1,999.99,09/05/19 10:30,"488 Dogwood St, San Francisco, CA 94016" +252929,AA Batteries (4-pack),1,3.84,09/27/19 17:20,"664 Sunset St, New York City, NY 10001" +252930,AAA Batteries (4-pack),1,2.99,09/30/19 18:51,"999 Jefferson St, San Francisco, CA 94016" +252931,Flatscreen TV,1,300,09/01/19 18:49,"201 Hickory St, Atlanta, GA 30301" +252932,AAA Batteries (4-pack),1,2.99,09/10/19 16:39,"610 Washington St, Austin, TX 73301" +252933,USB-C Charging Cable,1,11.95,09/13/19 11:38,"76 Walnut St, Boston, MA 02215" +252934,AA Batteries (4-pack),1,3.84,09/23/19 21:14,"924 Lake St, Dallas, TX 75001" +252934,AAA Batteries (4-pack),2,2.99,09/23/19 21:14,"924 Lake St, Dallas, TX 75001" +252935,USB-C Charging Cable,1,11.95,09/15/19 18:10,"922 Lincoln St, Los Angeles, CA 90001" +252936,20in Monitor,1,109.99,09/27/19 08:35,"970 Maple St, San Francisco, CA 94016" +252937,Bose SoundSport Headphones,1,99.99,09/29/19 22:53,"125 Jackson St, Portland, OR 97035" +252938,Wired Headphones,1,11.99,09/12/19 00:20,"759 13th St, New York City, NY 10001" +252939,AAA Batteries (4-pack),1,2.99,09/05/19 09:05,"265 2nd St, Seattle, WA 98101" +252940,AA Batteries (4-pack),1,3.84,09/14/19 21:46,"360 9th St, New York City, NY 10001" +252941,Wired Headphones,1,11.99,09/03/19 13:21,"352 Highland St, San Francisco, CA 94016" +252942,Lightning Charging Cable,1,14.95,09/22/19 19:34,"584 7th St, Austin, TX 73301" +252943,27in FHD Monitor,1,149.99,09/30/19 00:08,"346 6th St, New York City, NY 10001" +252944,Wired Headphones,1,11.99,09/02/19 20:11,"586 Hill St, Seattle, WA 98101" +252945,AA Batteries (4-pack),3,3.84,09/30/19 23:02,"727 South St, Atlanta, GA 30301" +252946,AA Batteries (4-pack),2,3.84,09/11/19 13:43,"447 10th St, Atlanta, GA 30301" +252947,Lightning Charging Cable,1,14.95,09/13/19 18:34,"783 Johnson St, New York City, NY 10001" +252948,Vareebadd Phone,1,400,09/24/19 12:54,"874 Park St, Boston, MA 02215" +252948,USB-C Charging Cable,1,11.95,09/24/19 12:54,"874 Park St, Boston, MA 02215" +252949,Wired Headphones,1,11.99,09/04/19 19:00,"924 North St, New York City, NY 10001" +252950,AA Batteries (4-pack),1,3.84,09/15/19 15:28,"352 Hickory St, Seattle, WA 98101" +252951,27in FHD Monitor,1,149.99,09/12/19 10:09,"65 Main St, Los Angeles, CA 90001" +252952,Flatscreen TV,1,300,09/27/19 14:43,"709 Madison St, San Francisco, CA 94016" +252953,Wired Headphones,1,11.99,09/08/19 16:41,"52 7th St, San Francisco, CA 94016" +252954,AA Batteries (4-pack),1,3.84,09/25/19 20:52,"343 Willow St, Boston, MA 02215" +252955,Wired Headphones,1,11.99,09/25/19 11:21,"528 Hickory St, Dallas, TX 75001" +252956,Lightning Charging Cable,1,14.95,09/12/19 07:00,"526 8th St, San Francisco, CA 94016" +252957,Apple Airpods Headphones,1,150,09/22/19 12:30,"340 Chestnut St, San Francisco, CA 94016" +252958,AAA Batteries (4-pack),1,2.99,09/14/19 20:24,"13 Spruce St, Dallas, TX 75001" +252959,USB-C Charging Cable,1,11.95,09/16/19 12:23,"281 Washington St, Austin, TX 73301" +252960,34in Ultrawide Monitor,1,379.99,09/02/19 20:05,"719 North St, Dallas, TX 75001" +252961,Apple Airpods Headphones,1,150,09/01/19 12:55,"929 Chestnut St, Los Angeles, CA 90001" +252962,Macbook Pro Laptop,1,1700,09/17/19 16:06,"497 Dogwood St, San Francisco, CA 94016" +252963,iPhone,1,700,09/03/19 16:50,"49 Elm St, San Francisco, CA 94016" +252964,AAA Batteries (4-pack),1,2.99,09/27/19 15:28,"201 North St, Dallas, TX 75001" +252965,USB-C Charging Cable,1,11.95,09/16/19 23:40,"683 Washington St, Los Angeles, CA 90001" +252966,Apple Airpods Headphones,1,150,09/29/19 19:10,"956 South St, Los Angeles, CA 90001" +252967,LG Dryer,1,600.0,09/14/19 09:40,"409 Walnut St, San Francisco, CA 94016" +252968,USB-C Charging Cable,1,11.95,09/08/19 07:22,"584 Madison St, Dallas, TX 75001" +252969,Wired Headphones,1,11.99,09/09/19 14:07,"344 Park St, New York City, NY 10001" +252970,Apple Airpods Headphones,1,150,09/14/19 18:39,"408 Spruce St, Portland, ME 04101" +252971,27in FHD Monitor,1,149.99,09/06/19 12:03,"401 Cherry St, Seattle, WA 98101" +252972,USB-C Charging Cable,1,11.95,09/27/19 17:24,"51 9th St, Los Angeles, CA 90001" +252973,AA Batteries (4-pack),1,3.84,09/24/19 15:11,"689 Main St, San Francisco, CA 94016" +252974,AA Batteries (4-pack),2,3.84,09/15/19 08:33,"846 9th St, San Francisco, CA 94016" +252975,USB-C Charging Cable,1,11.95,09/18/19 22:28,"9 Pine St, Atlanta, GA 30301" +252976,AA Batteries (4-pack),1,3.84,09/06/19 18:13,"486 Spruce St, San Francisco, CA 94016" +252977,USB-C Charging Cable,1,11.95,09/20/19 20:53,"807 Walnut St, Seattle, WA 98101" +252978,ThinkPad Laptop,1,999.99,09/20/19 10:37,"127 Willow St, Los Angeles, CA 90001" +252979,AA Batteries (4-pack),2,3.84,09/04/19 20:23,"18 Meadow St, San Francisco, CA 94016" +252980,Wired Headphones,1,11.99,09/27/19 13:07,"74 Spruce St, Los Angeles, CA 90001" +252981,AAA Batteries (4-pack),1,2.99,09/04/19 16:23,"894 Lake St, Seattle, WA 98101" +252982,Bose SoundSport Headphones,1,99.99,09/13/19 10:10,"776 Center St, New York City, NY 10001" +252983,AAA Batteries (4-pack),1,2.99,09/07/19 22:24,"177 Lakeview St, Boston, MA 02215" +252984,USB-C Charging Cable,1,11.95,09/26/19 13:28,"490 Lake St, Los Angeles, CA 90001" +252985,Lightning Charging Cable,1,14.95,09/23/19 12:39,"3 Wilson St, Los Angeles, CA 90001" +252986,AAA Batteries (4-pack),1,2.99,09/30/19 15:14,"292 Sunset St, San Francisco, CA 94016" +252987,Wired Headphones,1,11.99,09/25/19 09:43,"149 Church St, San Francisco, CA 94016" +252988,AAA Batteries (4-pack),1,2.99,09/05/19 14:56,"150 Walnut St, Los Angeles, CA 90001" +252989,27in FHD Monitor,1,149.99,09/02/19 20:41,"47 Hickory St, Portland, OR 97035" +252990,USB-C Charging Cable,1,11.95,09/03/19 00:04,"240 7th St, Portland, OR 97035" +252991,AAA Batteries (4-pack),1,2.99,09/15/19 21:17,"362 Chestnut St, New York City, NY 10001" +252992,USB-C Charging Cable,1,11.95,09/30/19 09:12,"219 Dogwood St, New York City, NY 10001" +252993,AA Batteries (4-pack),1,3.84,09/05/19 21:01,"208 South St, Los Angeles, CA 90001" +252994,34in Ultrawide Monitor,1,379.99,09/04/19 23:12,"344 5th St, Seattle, WA 98101" +252995,Apple Airpods Headphones,1,150,09/14/19 16:04,"831 7th St, Dallas, TX 75001" +252996,Macbook Pro Laptop,1,1700,09/07/19 07:41,"234 West St, Boston, MA 02215" +252997,27in 4K Gaming Monitor,1,389.99,09/24/19 14:23,"262 Elm St, Boston, MA 02215" +252998,Vareebadd Phone,1,400,09/01/19 09:53,"811 Jackson St, Portland, OR 97035" +252998,USB-C Charging Cable,1,11.95,09/01/19 09:53,"811 Jackson St, Portland, OR 97035" +252999,USB-C Charging Cable,2,11.95,09/10/19 10:02,"820 Dogwood St, San Francisco, CA 94016" +253000,USB-C Charging Cable,1,11.95,09/18/19 15:26,"327 Cedar St, Dallas, TX 75001" +253001,AAA Batteries (4-pack),1,2.99,09/10/19 12:51,"167 Lake St, San Francisco, CA 94016" +253002,20in Monitor,1,109.99,09/20/19 15:21,"441 Ridge St, San Francisco, CA 94016" +253003,iPhone,1,700,09/12/19 17:59,"588 Cherry St, Portland, OR 97035" +253004,Apple Airpods Headphones,1,150,09/10/19 14:34,"192 12th St, Dallas, TX 75001" +253005,Apple Airpods Headphones,1,150,09/11/19 15:58,"389 Hill St, Atlanta, GA 30301" +253006,Apple Airpods Headphones,1,150,09/21/19 12:49,"329 Madison St, Los Angeles, CA 90001" +253007,AAA Batteries (4-pack),1,2.99,09/22/19 20:21,"291 Washington St, Seattle, WA 98101" +253008,Wired Headphones,1,11.99,09/01/19 20:53,"843 Chestnut St, Austin, TX 73301" +253008,AA Batteries (4-pack),2,3.84,09/01/19 20:53,"843 Chestnut St, Austin, TX 73301" +253009,Flatscreen TV,1,300,09/03/19 11:06,"88 Maple St, San Francisco, CA 94016" +253010,AAA Batteries (4-pack),3,2.99,09/02/19 21:20,"604 Madison St, Dallas, TX 75001" +253011,34in Ultrawide Monitor,1,379.99,09/27/19 20:12,"281 14th St, Los Angeles, CA 90001" +253012,Lightning Charging Cable,1,14.95,09/28/19 08:34,"898 Sunset St, New York City, NY 10001" +253013,Google Phone,1,600,09/16/19 01:06,"64 River St, New York City, NY 10001" +253014,27in FHD Monitor,1,149.99,09/15/19 21:45,"58 Park St, New York City, NY 10001" +253015,Wired Headphones,1,11.99,09/22/19 11:33,"913 Walnut St, New York City, NY 10001" +253016,USB-C Charging Cable,1,11.95,09/20/19 06:57,"678 Jefferson St, Boston, MA 02215" +253017,AAA Batteries (4-pack),1,2.99,09/30/19 21:43,"953 Pine St, Boston, MA 02215" +253018,Google Phone,1,600,09/24/19 09:27,"226 Meadow St, New York City, NY 10001" +253019,20in Monitor,1,109.99,09/25/19 19:23,"950 Chestnut St, San Francisco, CA 94016" +253020,AA Batteries (4-pack),2,3.84,09/02/19 18:03,"633 2nd St, Austin, TX 73301" +253021,Bose SoundSport Headphones,1,99.99,09/30/19 07:28,"951 Cherry St, Los Angeles, CA 90001" +253022,20in Monitor,1,109.99,09/27/19 21:05,"634 14th St, Seattle, WA 98101" +253023,Lightning Charging Cable,1,14.95,09/26/19 23:10,"763 Elm St, Atlanta, GA 30301" +253024,AAA Batteries (4-pack),2,2.99,09/27/19 13:45,"481 12th St, San Francisco, CA 94016" +253025,Flatscreen TV,1,300,09/17/19 13:00,"220 Jackson St, Dallas, TX 75001" +253026,Lightning Charging Cable,1,14.95,09/19/19 18:33,"814 Highland St, Los Angeles, CA 90001" +253027,AAA Batteries (4-pack),1,2.99,09/22/19 10:52,"573 Center St, San Francisco, CA 94016" +253028,iPhone,1,700,09/27/19 19:22,"395 Hill St, San Francisco, CA 94016" +253029,27in 4K Gaming Monitor,1,389.99,09/27/19 14:24,"702 Elm St, San Francisco, CA 94016" +253029,34in Ultrawide Monitor,1,379.99,09/27/19 14:24,"702 Elm St, San Francisco, CA 94016" +253030,27in FHD Monitor,1,149.99,09/17/19 10:06,"197 Washington St, Portland, OR 97035" +253031,Wired Headphones,1,11.99,09/13/19 19:11,"561 10th St, Atlanta, GA 30301" +253032,AA Batteries (4-pack),1,3.84,09/19/19 20:23,"54 Walnut St, Los Angeles, CA 90001" +253033,20in Monitor,1,109.99,09/17/19 12:48,"116 Lakeview St, San Francisco, CA 94016" +253034,Wired Headphones,1,11.99,09/20/19 19:02,"317 Hill St, Atlanta, GA 30301" +253035,Apple Airpods Headphones,1,150,09/23/19 22:17,"124 Spruce St, Portland, OR 97035" +253036,27in 4K Gaming Monitor,1,389.99,09/12/19 14:55,"824 Cedar St, San Francisco, CA 94016" +253037,ThinkPad Laptop,1,999.99,09/14/19 19:33,"867 Johnson St, New York City, NY 10001" +253038,Lightning Charging Cable,1,14.95,09/01/19 18:33,"26 Madison St, Atlanta, GA 30301" +253039,AA Batteries (4-pack),1,3.84,09/24/19 16:42,"16 Johnson St, Austin, TX 73301" +253040,Apple Airpods Headphones,1,150,09/29/19 16:06,"796 Johnson St, San Francisco, CA 94016" +253041,Lightning Charging Cable,1,14.95,09/24/19 00:34,"48 Lake St, San Francisco, CA 94016" +253042,27in 4K Gaming Monitor,1,389.99,09/10/19 09:35,"481 Dogwood St, Seattle, WA 98101" +253043,Lightning Charging Cable,1,14.95,09/29/19 15:48,"820 Hickory St, Dallas, TX 75001" +253044,USB-C Charging Cable,1,11.95,09/30/19 22:56,"487 Johnson St, Atlanta, GA 30301" +253045,AAA Batteries (4-pack),1,2.99,09/18/19 02:11,"534 Chestnut St, Atlanta, GA 30301" +253046,Apple Airpods Headphones,1,150,09/12/19 11:56,"161 Johnson St, Atlanta, GA 30301" +253047,AAA Batteries (4-pack),2,2.99,09/05/19 07:49,"452 Cedar St, Boston, MA 02215" +253048,27in FHD Monitor,1,149.99,09/19/19 19:20,"15 Adams St, San Francisco, CA 94016" +253049,AA Batteries (4-pack),1,3.84,09/24/19 19:42,"132 Adams St, Seattle, WA 98101" +253050,iPhone,1,700,09/19/19 08:22,"151 Highland St, New York City, NY 10001" +253051,Lightning Charging Cable,1,14.95,09/06/19 15:27,"199 Main St, Portland, OR 97035" +253052,Bose SoundSport Headphones,1,99.99,09/29/19 10:23,"812 River St, Atlanta, GA 30301" +253053,AA Batteries (4-pack),1,3.84,09/01/19 14:50,"169 4th St, Los Angeles, CA 90001" +253054,Bose SoundSport Headphones,1,99.99,09/18/19 22:58,"339 Spruce St, San Francisco, CA 94016" +253055,27in 4K Gaming Monitor,1,389.99,09/02/19 07:42,"138 Madison St, Seattle, WA 98101" +253056,27in 4K Gaming Monitor,1,389.99,09/29/19 23:04,"970 Elm St, San Francisco, CA 94016" +253057,34in Ultrawide Monitor,1,379.99,09/29/19 20:34,"229 Elm St, San Francisco, CA 94016" +253058,USB-C Charging Cable,1,11.95,09/04/19 09:14,"168 Hill St, New York City, NY 10001" +253059,Bose SoundSport Headphones,1,99.99,09/30/19 14:24,"565 10th St, San Francisco, CA 94016" +253060,ThinkPad Laptop,1,999.99,09/08/19 11:23,"838 Pine St, New York City, NY 10001" +253061,27in FHD Monitor,1,149.99,09/06/19 13:20,"377 Madison St, Los Angeles, CA 90001" +253062,Bose SoundSport Headphones,1,99.99,09/08/19 14:09,"692 Walnut St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +253063,34in Ultrawide Monitor,1,379.99,09/08/19 12:48,"636 Adams St, Los Angeles, CA 90001" +253064,Wired Headphones,1,11.99,09/09/19 20:06,"242 Chestnut St, New York City, NY 10001" +253065,Lightning Charging Cable,1,14.95,09/21/19 13:47,"879 Lakeview St, Austin, TX 73301" +253066,Apple Airpods Headphones,1,150,09/30/19 18:07,"456 Lakeview St, Los Angeles, CA 90001" +253067,Macbook Pro Laptop,1,1700,09/03/19 18:19,"79 14th St, San Francisco, CA 94016" +253068,AAA Batteries (4-pack),1,2.99,09/03/19 20:30,"355 Jefferson St, Seattle, WA 98101" +253069,Wired Headphones,1,11.99,09/19/19 09:31,"983 South St, Austin, TX 73301" +253070,34in Ultrawide Monitor,1,379.99,09/03/19 23:52,"87 Chestnut St, Dallas, TX 75001" +253071,27in 4K Gaming Monitor,1,389.99,09/11/19 20:20,"345 Washington St, Los Angeles, CA 90001" +253072,AA Batteries (4-pack),1,3.84,09/07/19 14:01,"996 Maple St, San Francisco, CA 94016" +253073,Lightning Charging Cable,1,14.95,09/20/19 17:31,"754 Church St, New York City, NY 10001" +253074,Wired Headphones,1,11.99,09/08/19 21:31,"403 6th St, Boston, MA 02215" +253075,Wired Headphones,1,11.99,09/25/19 00:23,"766 Park St, New York City, NY 10001" +253076,AA Batteries (4-pack),3,3.84,09/19/19 15:05,"190 Jefferson St, San Francisco, CA 94016" +253077,27in FHD Monitor,1,149.99,09/22/19 10:48,"864 Lincoln St, Los Angeles, CA 90001" +253078,27in FHD Monitor,1,149.99,09/18/19 19:14,"161 Lake St, Boston, MA 02215" +253079,Wired Headphones,1,11.99,09/27/19 21:31,"990 5th St, New York City, NY 10001" +253080,27in 4K Gaming Monitor,1,389.99,09/22/19 16:29,"330 6th St, San Francisco, CA 94016" +253081,Flatscreen TV,1,300,09/16/19 13:21,"520 Cedar St, New York City, NY 10001" +253082,USB-C Charging Cable,2,11.95,09/24/19 17:23,"554 14th St, New York City, NY 10001" +253083,Apple Airpods Headphones,1,150,09/26/19 14:37,"345 Washington St, Los Angeles, CA 90001" +253084,Lightning Charging Cable,1,14.95,09/13/19 08:09,"501 Willow St, New York City, NY 10001" +253085,AA Batteries (4-pack),1,3.84,09/25/19 19:05,"481 1st St, Seattle, WA 98101" +253086,AA Batteries (4-pack),3,3.84,09/03/19 14:43,"127 Dogwood St, San Francisco, CA 94016" +253087,USB-C Charging Cable,1,11.95,09/28/19 08:27,"213 Washington St, San Francisco, CA 94016" +253088,LG Washing Machine,1,600.0,09/29/19 11:07,"178 Lincoln St, Portland, OR 97035" +253089,AA Batteries (4-pack),2,3.84,09/21/19 18:53,"847 Jefferson St, Seattle, WA 98101" +253090,AA Batteries (4-pack),1,3.84,09/17/19 12:16,"318 12th St, San Francisco, CA 94016" +253091,AAA Batteries (4-pack),1,2.99,09/26/19 21:18,"946 Park St, Los Angeles, CA 90001" +253092,AA Batteries (4-pack),2,3.84,09/26/19 11:35,"331 2nd St, Atlanta, GA 30301" +253093,AA Batteries (4-pack),1,3.84,09/03/19 20:21,"327 Chestnut St, Atlanta, GA 30301" +253094,Bose SoundSport Headphones,1,99.99,09/16/19 12:03,"711 North St, Atlanta, GA 30301" +253095,Lightning Charging Cable,1,14.95,09/30/19 17:05,"400 Sunset St, New York City, NY 10001" +253096,Apple Airpods Headphones,1,150,09/04/19 20:29,"350 Jefferson St, Boston, MA 02215" +253097,iPhone,1,700,09/29/19 18:56,"504 7th St, San Francisco, CA 94016" +253098,27in FHD Monitor,1,149.99,09/27/19 13:03,"596 9th St, Los Angeles, CA 90001" +253099,Apple Airpods Headphones,1,150,09/27/19 17:12,"358 9th St, Atlanta, GA 30301" +253100,AAA Batteries (4-pack),1,2.99,09/03/19 20:33,"697 14th St, Atlanta, GA 30301" +253101,Apple Airpods Headphones,1,150,09/01/19 14:31,"290 Lincoln St, San Francisco, CA 94016" +253102,Wired Headphones,1,11.99,09/27/19 13:48,"284 9th St, Los Angeles, CA 90001" +253103,AAA Batteries (4-pack),1,2.99,09/26/19 08:58,"115 Chestnut St, New York City, NY 10001" +253104,USB-C Charging Cable,1,11.95,09/12/19 19:56,"554 10th St, New York City, NY 10001" +253105,Bose SoundSport Headphones,1,99.99,09/03/19 16:19,"152 Jackson St, Seattle, WA 98101" +253106,27in 4K Gaming Monitor,1,389.99,09/12/19 21:17,"24 4th St, Austin, TX 73301" +253107,AA Batteries (4-pack),1,3.84,09/03/19 18:51,"193 Maple St, San Francisco, CA 94016" +253108,34in Ultrawide Monitor,1,379.99,09/16/19 11:16,"676 4th St, Atlanta, GA 30301" +253109,Macbook Pro Laptop,1,1700,09/29/19 11:06,"240 Church St, Los Angeles, CA 90001" +253110,USB-C Charging Cable,1,11.95,09/22/19 12:42,"987 7th St, San Francisco, CA 94016" +253111,AAA Batteries (4-pack),3,2.99,09/01/19 10:58,"811 Maple St, San Francisco, CA 94016" +253112,AA Batteries (4-pack),1,3.84,09/11/19 12:15,"539 Maple St, San Francisco, CA 94016" +253113,LG Washing Machine,1,600.0,09/25/19 18:20,"179 Willow St, Austin, TX 73301" +253114,Apple Airpods Headphones,1,150,09/27/19 13:27,"570 Wilson St, San Francisco, CA 94016" +253115,Vareebadd Phone,1,400,09/07/19 11:10,"1 Elm St, Boston, MA 02215" +253115,Wired Headphones,1,11.99,09/07/19 11:10,"1 Elm St, Boston, MA 02215" +253116,Apple Airpods Headphones,1,150,09/13/19 17:28,"996 2nd St, Boston, MA 02215" +253117,Bose SoundSport Headphones,1,99.99,09/19/19 22:07,"810 Hickory St, San Francisco, CA 94016" +253118,AAA Batteries (4-pack),1,2.99,09/06/19 21:28,"322 Hill St, Dallas, TX 75001" +253119,Lightning Charging Cable,1,14.95,09/12/19 17:23,"90 5th St, New York City, NY 10001" +253120,27in FHD Monitor,1,149.99,09/27/19 23:09,"29 Ridge St, Los Angeles, CA 90001" +253121,AA Batteries (4-pack),1,3.84,09/10/19 20:05,"396 Elm St, San Francisco, CA 94016" +253122,Wired Headphones,1,11.99,09/03/19 20:43,"165 Cherry St, Atlanta, GA 30301" +253123,Apple Airpods Headphones,1,150,09/05/19 09:06,"147 12th St, Atlanta, GA 30301" +253124,AAA Batteries (4-pack),1,2.99,09/08/19 19:29,"201 Adams St, Los Angeles, CA 90001" +253125,Wired Headphones,1,11.99,09/11/19 15:04,"268 Hickory St, New York City, NY 10001" +253126,Bose SoundSport Headphones,1,99.99,09/21/19 09:23,"262 8th St, Los Angeles, CA 90001" +253127,Vareebadd Phone,1,400,09/15/19 22:13,"945 Lincoln St, Seattle, WA 98101" +253128,Wired Headphones,1,11.99,09/02/19 14:37,"352 Pine St, Seattle, WA 98101" +253129,AA Batteries (4-pack),1,3.84,09/13/19 19:15,"987 10th St, New York City, NY 10001" +253130,iPhone,1,700,09/26/19 14:41,"535 Main St, Dallas, TX 75001" +253130,Lightning Charging Cable,2,14.95,09/26/19 14:41,"535 Main St, Dallas, TX 75001" +253131,AA Batteries (4-pack),1,3.84,09/08/19 20:53,"443 9th St, Boston, MA 02215" +253132,27in 4K Gaming Monitor,1,389.99,09/24/19 21:54,"94 Lakeview St, Dallas, TX 75001" +253133,USB-C Charging Cable,1,11.95,09/13/19 22:19,"579 North St, San Francisco, CA 94016" +253134,iPhone,1,700,09/01/19 10:14,"275 Chestnut St, Los Angeles, CA 90001" +253135,34in Ultrawide Monitor,1,379.99,09/27/19 13:33,"618 Hickory St, San Francisco, CA 94016" +253136,34in Ultrawide Monitor,1,379.99,09/28/19 14:42,"428 Meadow St, New York City, NY 10001" +253137,AA Batteries (4-pack),1,3.84,09/10/19 10:53,"83 River St, New York City, NY 10001" +253138,Apple Airpods Headphones,1,150,09/05/19 11:52,"560 Jackson St, Dallas, TX 75001" +253139,Lightning Charging Cable,1,14.95,09/16/19 21:37,"501 Hill St, Dallas, TX 75001" +253140,34in Ultrawide Monitor,1,379.99,09/26/19 16:55,"461 Wilson St, San Francisco, CA 94016" +253141,Bose SoundSport Headphones,1,99.99,09/18/19 19:38,"810 4th St, Seattle, WA 98101" +253142,Flatscreen TV,1,300,09/06/19 09:11,"99 11th St, Seattle, WA 98101" +253143,Google Phone,1,600,09/13/19 16:23,"365 13th St, Los Angeles, CA 90001" +253144,USB-C Charging Cable,1,11.95,09/06/19 22:01,"104 Forest St, San Francisco, CA 94016" +253145,Wired Headphones,1,11.99,09/13/19 11:40,"999 7th St, Seattle, WA 98101" +253146,Lightning Charging Cable,1,14.95,09/02/19 21:13,"745 Wilson St, New York City, NY 10001" +253147,Lightning Charging Cable,1,14.95,09/20/19 18:59,"159 Willow St, Atlanta, GA 30301" +253148,USB-C Charging Cable,1,11.95,09/06/19 19:37,"37 Dogwood St, Portland, ME 04101" +253149,Lightning Charging Cable,1,14.95,09/10/19 14:08,"188 Sunset St, San Francisco, CA 94016" +253150,Apple Airpods Headphones,1,150,09/30/19 16:14,"28 Meadow St, San Francisco, CA 94016" +253151,AAA Batteries (4-pack),1,2.99,09/09/19 11:04,"826 Maple St, Dallas, TX 75001" +253152,Lightning Charging Cable,1,14.95,09/05/19 19:34,"89 7th St, Seattle, WA 98101" +253153,Apple Airpods Headphones,1,150,09/02/19 17:27,"124 Jefferson St, New York City, NY 10001" +253154,Macbook Pro Laptop,1,1700,09/29/19 21:35,"113 Meadow St, Los Angeles, CA 90001" +253155,Apple Airpods Headphones,1,150,09/04/19 13:45,"242 Dogwood St, Los Angeles, CA 90001" +253156,USB-C Charging Cable,1,11.95,09/04/19 19:48,"720 Maple St, Seattle, WA 98101" +253157,iPhone,1,700,09/24/19 19:54,"2 Lakeview St, Los Angeles, CA 90001" +253158,AAA Batteries (4-pack),1,2.99,09/02/19 23:05,"895 Johnson St, Los Angeles, CA 90001" +253159,AAA Batteries (4-pack),1,2.99,09/02/19 14:50,"624 Lincoln St, Austin, TX 73301" +253160,Flatscreen TV,1,300,09/06/19 19:17,"676 4th St, San Francisco, CA 94016" +253161,AA Batteries (4-pack),2,3.84,09/16/19 21:40,"561 Johnson St, Atlanta, GA 30301" +253162,AAA Batteries (4-pack),1,2.99,09/17/19 16:39,"91 Hickory St, Los Angeles, CA 90001" +253163,USB-C Charging Cable,2,11.95,09/19/19 22:08,"228 Washington St, San Francisco, CA 94016" +253164,AAA Batteries (4-pack),1,2.99,09/30/19 11:56,"126 5th St, Boston, MA 02215" +253165,Flatscreen TV,1,300,09/08/19 00:50,"757 Spruce St, San Francisco, CA 94016" +253166,Bose SoundSport Headphones,1,99.99,09/12/19 08:52,"309 Jackson St, New York City, NY 10001" +253167,AA Batteries (4-pack),1,3.84,09/15/19 15:06,"929 14th St, Seattle, WA 98101" +253168,AAA Batteries (4-pack),1,2.99,09/28/19 17:43,"931 7th St, Los Angeles, CA 90001" +253169,Lightning Charging Cable,1,14.95,09/10/19 19:34,"656 Forest St, New York City, NY 10001" +253170,USB-C Charging Cable,1,11.95,09/12/19 20:28,"212 Ridge St, Dallas, TX 75001" +253171,USB-C Charging Cable,1,11.95,09/17/19 23:03,"281 Forest St, Austin, TX 73301" +253172,27in FHD Monitor,1,149.99,09/07/19 18:29,"618 9th St, Atlanta, GA 30301" +253173,USB-C Charging Cable,1,11.95,09/05/19 19:08,"630 Main St, New York City, NY 10001" +253174,Google Phone,1,600,09/14/19 15:55,"999 Church St, Portland, ME 04101" +253174,USB-C Charging Cable,1,11.95,09/14/19 15:55,"999 Church St, Portland, ME 04101" +253175,AA Batteries (4-pack),1,3.84,09/15/19 17:29,"874 West St, Los Angeles, CA 90001" +253176,Bose SoundSport Headphones,1,99.99,09/16/19 09:45,"406 Main St, San Francisco, CA 94016" +253177,34in Ultrawide Monitor,1,379.99,09/07/19 07:45,"339 11th St, Dallas, TX 75001" +253178,Macbook Pro Laptop,1,1700,09/24/19 18:37,"237 Willow St, Atlanta, GA 30301" +253179,Lightning Charging Cable,1,14.95,09/26/19 12:13,"637 Ridge St, San Francisco, CA 94016" +253180,AAA Batteries (4-pack),1,2.99,09/24/19 20:28,"347 14th St, Seattle, WA 98101" +253181,Apple Airpods Headphones,1,150,09/07/19 19:30,"304 Sunset St, Portland, OR 97035" +253182,27in 4K Gaming Monitor,1,389.99,09/29/19 09:56,"725 Washington St, Dallas, TX 75001" +253183,AA Batteries (4-pack),1,3.84,09/15/19 22:25,"488 Main St, San Francisco, CA 94016" +253184,iPhone,1,700,09/05/19 11:48,"304 Cedar St, Boston, MA 02215" +253185,AA Batteries (4-pack),2,3.84,09/07/19 00:50,"931 Pine St, New York City, NY 10001" +253186,AA Batteries (4-pack),3,3.84,09/07/19 20:07,"937 Center St, Seattle, WA 98101" +253187,ThinkPad Laptop,1,999.99,09/02/19 10:47,"73 13th St, New York City, NY 10001" +253188,Lightning Charging Cable,1,14.95,09/18/19 15:19,"979 8th St, Boston, MA 02215" +253189,27in 4K Gaming Monitor,1,389.99,09/12/19 09:01,"896 Willow St, Dallas, TX 75001" +253190,iPhone,1,700,09/05/19 21:51,"998 14th St, San Francisco, CA 94016" +253190,Flatscreen TV,1,300,09/05/19 21:51,"998 14th St, San Francisco, CA 94016" +253191,AA Batteries (4-pack),1,3.84,09/04/19 18:57,"742 Church St, Seattle, WA 98101" +253192,34in Ultrawide Monitor,1,379.99,09/16/19 13:36,"267 6th St, Los Angeles, CA 90001" +253193,Wired Headphones,1,11.99,09/28/19 23:31,"997 Jackson St, Los Angeles, CA 90001" +253194,27in 4K Gaming Monitor,1,389.99,09/23/19 22:32,"972 Washington St, Austin, TX 73301" +253195,AA Batteries (4-pack),3,3.84,09/16/19 18:11,"447 West St, San Francisco, CA 94016" +253196,AA Batteries (4-pack),1,3.84,09/25/19 09:49,"972 Walnut St, Los Angeles, CA 90001" +253197,AAA Batteries (4-pack),2,2.99,09/03/19 18:53,"618 North St, San Francisco, CA 94016" +253198,AAA Batteries (4-pack),1,2.99,09/02/19 15:39,"784 Willow St, Atlanta, GA 30301" +253199,AA Batteries (4-pack),1,3.84,09/17/19 07:47,"941 11th St, San Francisco, CA 94016" +253200,USB-C Charging Cable,1,11.95,09/07/19 10:38,"134 Walnut St, Boston, MA 02215" +253201,Apple Airpods Headphones,1,150,09/17/19 22:13,"167 1st St, Los Angeles, CA 90001" +253202,Flatscreen TV,1,300,09/15/19 14:51,"6 13th St, Boston, MA 02215" +253203,AAA Batteries (4-pack),1,2.99,09/15/19 09:07,"432 Church St, San Francisco, CA 94016" +253204,Lightning Charging Cable,1,14.95,09/17/19 12:54,"629 Lake St, Seattle, WA 98101" +253205,Vareebadd Phone,1,400,09/06/19 21:52,"175 4th St, Seattle, WA 98101" +253206,Lightning Charging Cable,1,14.95,09/11/19 09:41,"778 Willow St, San Francisco, CA 94016" +253207,Lightning Charging Cable,1,14.95,09/17/19 12:53,"524 8th St, Los Angeles, CA 90001" +253208,Google Phone,1,600,09/19/19 01:38,"590 Center St, San Francisco, CA 94016" +253208,USB-C Charging Cable,1,11.95,09/19/19 01:38,"590 Center St, San Francisco, CA 94016" +253208,Wired Headphones,1,11.99,09/19/19 01:38,"590 Center St, San Francisco, CA 94016" +253209,AAA Batteries (4-pack),1,2.99,09/12/19 08:19,"354 Madison St, San Francisco, CA 94016" +253210,Wired Headphones,2,11.99,09/06/19 21:33,"610 Forest St, San Francisco, CA 94016" +253211,27in FHD Monitor,1,149.99,09/16/19 09:20,"65 River St, Portland, OR 97035" +253212,27in 4K Gaming Monitor,1,389.99,09/10/19 17:23,"722 Johnson St, San Francisco, CA 94016" +253213,27in 4K Gaming Monitor,1,389.99,09/06/19 19:52,"280 14th St, New York City, NY 10001" +253214,34in Ultrawide Monitor,1,379.99,09/09/19 11:40,"519 Walnut St, San Francisco, CA 94016" +253215,AA Batteries (4-pack),2,3.84,09/13/19 09:26,"284 14th St, Seattle, WA 98101" +253216,AA Batteries (4-pack),1,3.84,09/13/19 16:49,"876 Meadow St, New York City, NY 10001" +253217,Macbook Pro Laptop,1,1700,09/18/19 07:20,"974 Main St, Los Angeles, CA 90001" +253218,AA Batteries (4-pack),1,3.84,09/22/19 14:32,"835 Maple St, Boston, MA 02215" +253219,Bose SoundSport Headphones,1,99.99,09/17/19 19:00,"256 Maple St, Dallas, TX 75001" +253220,AAA Batteries (4-pack),2,2.99,09/18/19 23:19,"273 Wilson St, Seattle, WA 98101" +253221,Lightning Charging Cable,1,14.95,09/20/19 20:17,"321 Lakeview St, Portland, OR 97035" +253222,Apple Airpods Headphones,1,150,09/14/19 22:33,"100 Main St, Atlanta, GA 30301" +253223,Wired Headphones,1,11.99,09/18/19 17:23,"269 12th St, Los Angeles, CA 90001" +253224,Vareebadd Phone,1,400,09/03/19 05:52,"528 13th St, San Francisco, CA 94016" +253225,AA Batteries (4-pack),2,3.84,09/20/19 15:33,"477 Park St, Seattle, WA 98101" +253226,34in Ultrawide Monitor,1,379.99,09/29/19 22:13,"258 2nd St, New York City, NY 10001" +253227,Wired Headphones,1,11.99,09/27/19 13:12,"782 Chestnut St, Austin, TX 73301" +253228,Flatscreen TV,1,300,09/06/19 11:28,"74 Walnut St, San Francisco, CA 94016" +253229,Apple Airpods Headphones,1,150,09/26/19 16:08,"5 7th St, New York City, NY 10001" +253230,Lightning Charging Cable,1,14.95,09/05/19 08:37,"340 5th St, Atlanta, GA 30301" +253231,27in FHD Monitor,1,149.99,09/30/19 13:50,"711 Dogwood St, Boston, MA 02215" +253232,Apple Airpods Headphones,1,150,09/28/19 18:23,"232 Dogwood St, New York City, NY 10001" +253233,AA Batteries (4-pack),1,3.84,09/01/19 13:33,"640 Lakeview St, San Francisco, CA 94016" +253234,34in Ultrawide Monitor,1,379.99,09/15/19 23:38,"446 Washington St, Portland, OR 97035" +253235,USB-C Charging Cable,1,11.95,09/03/19 02:43,"349 Spruce St, Los Angeles, CA 90001" +253236,Lightning Charging Cable,1,14.95,09/25/19 20:55,"190 Dogwood St, San Francisco, CA 94016" +,,,,, +253237,Wired Headphones,1,11.99,09/02/19 17:46,"544 Sunset St, New York City, NY 10001" +253238,Bose SoundSport Headphones,1,99.99,09/30/19 13:09,"6 1st St, Los Angeles, CA 90001" +253239,USB-C Charging Cable,1,11.95,09/19/19 12:42,"387 2nd St, Dallas, TX 75001" +253240,USB-C Charging Cable,1,11.95,09/11/19 10:46,"243 1st St, San Francisco, CA 94016" +253241,AAA Batteries (4-pack),3,2.99,09/01/19 11:36,"97 Cherry St, Atlanta, GA 30301" +253242,Macbook Pro Laptop,1,1700,09/28/19 14:15,"439 Hickory St, Boston, MA 02215" +253243,AA Batteries (4-pack),1,3.84,09/18/19 07:28,"747 2nd St, Los Angeles, CA 90001" +253244,Lightning Charging Cable,1,14.95,09/30/19 16:50,"698 Adams St, Boston, MA 02215" +253245,AAA Batteries (4-pack),1,2.99,09/15/19 12:22,"751 Dogwood St, Seattle, WA 98101" +253246,Apple Airpods Headphones,1,150,09/06/19 17:40,"541 Lake St, Atlanta, GA 30301" +253247,Bose SoundSport Headphones,1,99.99,09/06/19 16:25,"779 West St, New York City, NY 10001" +253248,AAA Batteries (4-pack),1,2.99,09/30/19 10:14,"781 Meadow St, Boston, MA 02215" +253249,AAA Batteries (4-pack),2,2.99,09/26/19 16:45,"7 Main St, Los Angeles, CA 90001" +253250,Google Phone,1,600,09/30/19 14:47,"554 Chestnut St, Atlanta, GA 30301" +253251,USB-C Charging Cable,1,11.95,09/21/19 11:06,"393 Ridge St, San Francisco, CA 94016" +253252,Lightning Charging Cable,1,14.95,09/12/19 16:55,"411 Maple St, San Francisco, CA 94016" +253253,ThinkPad Laptop,1,999.99,09/23/19 11:38,"597 Cherry St, Los Angeles, CA 90001" +253254,AA Batteries (4-pack),1,3.84,09/26/19 20:23,"438 Spruce St, San Francisco, CA 94016" +253255,USB-C Charging Cable,1,11.95,09/26/19 07:13,"79 2nd St, Portland, OR 97035" +253256,34in Ultrawide Monitor,1,379.99,09/13/19 23:07,"600 Spruce St, Austin, TX 73301" +253257,Lightning Charging Cable,1,14.95,09/06/19 16:32,"95 Wilson St, Boston, MA 02215" +253258,27in FHD Monitor,1,149.99,09/17/19 21:54,"385 9th St, New York City, NY 10001" +253259,Vareebadd Phone,1,400,09/28/19 19:00,"284 1st St, Portland, ME 04101" +253260,AA Batteries (4-pack),1,3.84,09/07/19 09:57,"391 9th St, Seattle, WA 98101" +253261,USB-C Charging Cable,1,11.95,09/19/19 14:26,"105 Walnut St, Los Angeles, CA 90001" +253262,ThinkPad Laptop,1,999.99,09/10/19 09:02,"606 Dogwood St, Atlanta, GA 30301" +253263,USB-C Charging Cable,1,11.95,09/14/19 14:53,"960 Wilson St, Los Angeles, CA 90001" +253264,USB-C Charging Cable,1,11.95,09/15/19 12:54,"44 River St, Seattle, WA 98101" +253265,iPhone,1,700,09/07/19 17:52,"10 10th St, San Francisco, CA 94016" +253266,Wired Headphones,1,11.99,09/16/19 09:17,"747 8th St, Atlanta, GA 30301" +253267,27in FHD Monitor,1,149.99,09/18/19 00:01,"17 Willow St, San Francisco, CA 94016" +253268,Wired Headphones,1,11.99,09/28/19 08:43,"283 Center St, Atlanta, GA 30301" +253269,AA Batteries (4-pack),1,3.84,09/13/19 11:05,"539 Highland St, San Francisco, CA 94016" +253270,Wired Headphones,1,11.99,09/30/19 16:28,"46 West St, Seattle, WA 98101" +253270,AAA Batteries (4-pack),2,2.99,09/30/19 16:28,"46 West St, Seattle, WA 98101" +253271,Lightning Charging Cable,1,14.95,09/12/19 18:07,"931 12th St, Austin, TX 73301" +253272,27in 4K Gaming Monitor,1,389.99,09/14/19 17:46,"665 Center St, Los Angeles, CA 90001" +253273,Wired Headphones,1,11.99,09/16/19 09:56,"865 Lakeview St, New York City, NY 10001" +253274,Lightning Charging Cable,1,14.95,09/04/19 08:41,"209 14th St, San Francisco, CA 94016" +253275,Flatscreen TV,1,300,09/03/19 21:50,"161 Jackson St, Atlanta, GA 30301" +253276,Wired Headphones,1,11.99,09/10/19 09:23,"406 6th St, Seattle, WA 98101" +253277,Flatscreen TV,1,300,09/19/19 09:26,"103 1st St, Los Angeles, CA 90001" +253278,AAA Batteries (4-pack),1,2.99,09/16/19 19:13,"934 Elm St, San Francisco, CA 94016" +253279,AAA Batteries (4-pack),1,2.99,09/12/19 17:42,"328 South St, Los Angeles, CA 90001" +253280,USB-C Charging Cable,1,11.95,09/14/19 12:44,"141 Highland St, Portland, OR 97035" +253281,USB-C Charging Cable,1,11.95,09/05/19 21:17,"834 Lincoln St, Austin, TX 73301" +253282,AAA Batteries (4-pack),1,2.99,09/13/19 21:45,"648 14th St, Portland, OR 97035" +253283,Lightning Charging Cable,1,14.95,09/01/19 12:57,"272 1st St, Los Angeles, CA 90001" +253284,USB-C Charging Cable,1,11.95,09/30/19 08:57,"474 Forest St, Seattle, WA 98101" +253285,Google Phone,1,600,09/15/19 11:39,"113 12th St, Austin, TX 73301" +253286,USB-C Charging Cable,1,11.95,09/06/19 09:44,"61 River St, Los Angeles, CA 90001" +253287,ThinkPad Laptop,1,999.99,09/09/19 20:30,"419 North St, Los Angeles, CA 90001" +253288,Apple Airpods Headphones,1,150,09/23/19 13:44,"882 Park St, San Francisco, CA 94016" +253289,20in Monitor,1,109.99,09/30/19 11:18,"711 South St, Atlanta, GA 30301" +253290,Lightning Charging Cable,1,14.95,09/17/19 00:22,"404 Adams St, New York City, NY 10001" +253291,AAA Batteries (4-pack),1,2.99,09/01/19 14:26,"341 Spruce St, New York City, NY 10001" +253292,Wired Headphones,1,11.99,09/04/19 13:53,"406 11th St, Boston, MA 02215" +253293,Bose SoundSport Headphones,1,99.99,09/12/19 19:05,"525 Adams St, Portland, OR 97035" +253294,AAA Batteries (4-pack),1,2.99,09/09/19 15:41,"424 Cherry St, San Francisco, CA 94016" +253295,ThinkPad Laptop,1,999.99,09/01/19 16:54,"596 6th St, San Francisco, CA 94016" +253296,AA Batteries (4-pack),2,3.84,09/10/19 14:44,"200 7th St, Los Angeles, CA 90001" +253297,34in Ultrawide Monitor,1,379.99,09/29/19 21:19,"897 4th St, Los Angeles, CA 90001" +253298,Bose SoundSport Headphones,1,99.99,09/11/19 23:33,"190 Jackson St, Seattle, WA 98101" +253299,Lightning Charging Cable,1,14.95,09/09/19 15:54,"395 Elm St, Austin, TX 73301" +253300,Wired Headphones,1,11.99,09/07/19 07:57,"954 11th St, Los Angeles, CA 90001" +253301,ThinkPad Laptop,1,999.99,09/04/19 15:11,"796 Jefferson St, New York City, NY 10001" +253302,Apple Airpods Headphones,1,150,09/10/19 18:56,"168 Elm St, Los Angeles, CA 90001" +253303,Vareebadd Phone,1,400,09/07/19 23:37,"102 Hickory St, New York City, NY 10001" +253304,Macbook Pro Laptop,1,1700,09/04/19 06:20,"207 10th St, San Francisco, CA 94016" +253305,Wired Headphones,1,11.99,09/06/19 01:37,"409 Spruce St, San Francisco, CA 94016" +253306,Wired Headphones,1,11.99,09/06/19 07:55,"364 7th St, Los Angeles, CA 90001" +253307,USB-C Charging Cable,1,11.95,09/11/19 19:04,"70 Spruce St, Dallas, TX 75001" +253308,Apple Airpods Headphones,1,150,09/28/19 17:29,"145 South St, Portland, OR 97035" +253309,Lightning Charging Cable,1,14.95,09/29/19 20:21,"85 Adams St, Seattle, WA 98101" +253310,AAA Batteries (4-pack),1,2.99,09/29/19 13:25,"575 Hill St, Atlanta, GA 30301" +253311,20in Monitor,1,109.99,09/14/19 12:14,"864 11th St, Los Angeles, CA 90001" +253312,USB-C Charging Cable,1,11.95,09/14/19 09:40,"500 Jackson St, Los Angeles, CA 90001" +253313,27in 4K Gaming Monitor,1,389.99,09/21/19 12:33,"152 South St, Atlanta, GA 30301" +253314,AAA Batteries (4-pack),1,2.99,09/29/19 23:40,"650 Cherry St, Los Angeles, CA 90001" +253315,Macbook Pro Laptop,1,1700,09/15/19 09:33,"11 Cherry St, San Francisco, CA 94016" +253316,27in 4K Gaming Monitor,1,389.99,09/25/19 18:45,"3 2nd St, Los Angeles, CA 90001" +253317,AA Batteries (4-pack),1,3.84,09/17/19 15:30,"147 Meadow St, San Francisco, CA 94016" +253318,iPhone,1,700,09/19/19 20:47,"971 Lincoln St, San Francisco, CA 94016" +253318,Wired Headphones,1,11.99,09/19/19 20:47,"971 Lincoln St, San Francisco, CA 94016" +253319,Flatscreen TV,1,300,09/28/19 17:56,"238 Adams St, Boston, MA 02215" +253320,USB-C Charging Cable,1,11.95,09/04/19 22:35,"348 9th St, San Francisco, CA 94016" +253321,20in Monitor,1,109.99,09/15/19 10:00,"266 North St, Dallas, TX 75001" +253322,Lightning Charging Cable,1,14.95,09/25/19 15:59,"290 North St, Boston, MA 02215" +253323,Apple Airpods Headphones,1,150,09/29/19 14:51,"324 1st St, Portland, OR 97035" +253324,AAA Batteries (4-pack),3,2.99,09/24/19 12:55,"344 Chestnut St, New York City, NY 10001" +253325,AA Batteries (4-pack),1,3.84,09/02/19 08:25,"221 9th St, New York City, NY 10001" +253326,Apple Airpods Headphones,1,150,09/20/19 13:33,"982 Spruce St, San Francisco, CA 94016" +253327,Wired Headphones,1,11.99,09/01/19 23:01,"370 South St, San Francisco, CA 94016" +253328,AAA Batteries (4-pack),4,2.99,09/01/19 11:20,"989 9th St, Boston, MA 02215" +253329,AAA Batteries (4-pack),3,2.99,09/26/19 13:23,"470 Washington St, Boston, MA 02215" +253330,USB-C Charging Cable,1,11.95,09/28/19 14:33,"298 13th St, Atlanta, GA 30301" +253331,Google Phone,1,600,09/09/19 21:07,"452 2nd St, Portland, OR 97035" +253332,Lightning Charging Cable,1,14.95,09/01/19 08:45,"428 Lakeview St, New York City, NY 10001" +253333,USB-C Charging Cable,1,11.95,09/18/19 11:49,"491 Sunset St, San Francisco, CA 94016" +253334,USB-C Charging Cable,1,11.95,09/11/19 20:00,"934 1st St, New York City, NY 10001" +253335,Google Phone,1,600,09/12/19 12:39,"263 Forest St, San Francisco, CA 94016" +253335,USB-C Charging Cable,1,11.95,09/12/19 12:39,"263 Forest St, San Francisco, CA 94016" +253336,USB-C Charging Cable,1,11.95,09/14/19 09:45,"780 Washington St, Portland, ME 04101" +253337,Apple Airpods Headphones,1,150,09/20/19 15:10,"65 Elm St, Austin, TX 73301" +253338,Apple Airpods Headphones,1,150,09/11/19 11:40,"529 5th St, Los Angeles, CA 90001" +253339,AA Batteries (4-pack),1,3.84,09/23/19 22:49,"325 7th St, San Francisco, CA 94016" +253340,AA Batteries (4-pack),1,3.84,09/17/19 16:05,"852 Cherry St, San Francisco, CA 94016" +253341,AA Batteries (4-pack),2,3.84,09/20/19 11:09,"696 Wilson St, San Francisco, CA 94016" +253342,Wired Headphones,1,11.99,09/15/19 15:29,"163 6th St, San Francisco, CA 94016" +253343,Wired Headphones,2,11.99,09/04/19 19:52,"409 Elm St, Los Angeles, CA 90001" +253344,Lightning Charging Cable,1,14.95,09/05/19 11:44,"177 4th St, Dallas, TX 75001" +253345,27in 4K Gaming Monitor,1,389.99,09/20/19 20:03,"648 Willow St, Atlanta, GA 30301" +253346,AAA Batteries (4-pack),1,2.99,09/01/19 12:55,"702 Pine St, Atlanta, GA 30301" +253347,AA Batteries (4-pack),1,3.84,09/13/19 17:37,"451 11th St, Austin, TX 73301" +253348,AAA Batteries (4-pack),2,2.99,09/02/19 11:52,"408 Spruce St, Boston, MA 02215" +253349,iPhone,1,700,09/18/19 16:48,"343 1st St, Seattle, WA 98101" +253349,Lightning Charging Cable,1,14.95,09/18/19 16:48,"343 1st St, Seattle, WA 98101" +253350,Lightning Charging Cable,1,14.95,09/23/19 12:28,"62 2nd St, San Francisco, CA 94016" +253351,Macbook Pro Laptop,1,1700,09/05/19 18:40,"431 Jefferson St, San Francisco, CA 94016" +253352,Lightning Charging Cable,1,14.95,09/15/19 17:32,"255 2nd St, New York City, NY 10001" +253353,Lightning Charging Cable,1,14.95,09/05/19 14:17,"732 Highland St, Atlanta, GA 30301" +253354,USB-C Charging Cable,3,11.95,09/27/19 11:02,"224 Ridge St, New York City, NY 10001" +253355,Bose SoundSport Headphones,1,99.99,09/29/19 21:43,"912 7th St, New York City, NY 10001" +253356,iPhone,1,700,09/12/19 12:07,"350 1st St, Portland, ME 04101" +253356,Lightning Charging Cable,1,14.95,09/12/19 12:07,"350 1st St, Portland, ME 04101" +253357,Lightning Charging Cable,1,14.95,09/21/19 20:44,"134 Adams St, Boston, MA 02215" +253358,Bose SoundSport Headphones,1,99.99,09/02/19 21:59,"637 1st St, Atlanta, GA 30301" +253359,27in FHD Monitor,1,149.99,09/22/19 19:05,"444 Jackson St, Los Angeles, CA 90001" +253360,Bose SoundSport Headphones,2,99.99,09/09/19 16:39,"912 14th St, Dallas, TX 75001" +253361,Lightning Charging Cable,1,14.95,09/30/19 21:11,"274 1st St, San Francisco, CA 94016" +253362,Bose SoundSport Headphones,1,99.99,09/13/19 21:58,"943 South St, Austin, TX 73301" +253363,iPhone,1,700,09/27/19 17:53,"248 Lake St, Boston, MA 02215" +253364,USB-C Charging Cable,1,11.95,09/12/19 11:02,"142 River St, Boston, MA 02215" +253365,Wired Headphones,1,11.99,09/15/19 07:14,"685 Pine St, New York City, NY 10001" +253366,34in Ultrawide Monitor,1,379.99,09/24/19 23:51,"919 Lakeview St, Los Angeles, CA 90001" +253367,USB-C Charging Cable,1,11.95,09/07/19 23:02,"513 8th St, New York City, NY 10001" +253368,Bose SoundSport Headphones,1,99.99,09/14/19 13:36,"676 Lake St, Los Angeles, CA 90001" +253369,LG Dryer,1,600.0,09/10/19 10:28,"855 9th St, San Francisco, CA 94016" +253370,Flatscreen TV,1,300,09/05/19 08:49,"878 Elm St, New York City, NY 10001" +253371,iPhone,1,700,09/24/19 11:17,"419 Lake St, Los Angeles, CA 90001" +253372,Apple Airpods Headphones,1,150,09/08/19 23:52,"547 Center St, Atlanta, GA 30301" +253373,Apple Airpods Headphones,1,150,09/23/19 19:28,"878 Lakeview St, Austin, TX 73301" +253374,27in 4K Gaming Monitor,1,389.99,09/11/19 09:44,"202 1st St, Los Angeles, CA 90001" +253375,Apple Airpods Headphones,1,150,09/03/19 18:26,"275 Jackson St, San Francisco, CA 94016" +253376,Apple Airpods Headphones,2,150,09/12/19 18:01,"723 North St, Atlanta, GA 30301" +253377,Lightning Charging Cable,1,14.95,09/01/19 08:27,"741 10th St, San Francisco, CA 94016" +253378,ThinkPad Laptop,1,999.99,09/23/19 16:33,"424 14th St, Dallas, TX 75001" +253379,USB-C Charging Cable,1,11.95,09/28/19 23:46,"242 Chestnut St, Boston, MA 02215" +253380,Flatscreen TV,1,300,09/20/19 18:01,"520 Spruce St, Austin, TX 73301" +253381,AA Batteries (4-pack),1,3.84,09/28/19 08:47,"347 Cedar St, Boston, MA 02215" +253382,USB-C Charging Cable,2,11.95,09/25/19 18:34,"499 Elm St, Los Angeles, CA 90001" +253383,Bose SoundSport Headphones,1,99.99,09/27/19 17:32,"342 11th St, Seattle, WA 98101" +253384,AA Batteries (4-pack),1,3.84,09/20/19 13:39,"248 Dogwood St, Boston, MA 02215" +253385,Bose SoundSport Headphones,1,99.99,09/20/19 19:23,"308 Cedar St, Seattle, WA 98101" +253386,Wired Headphones,1,11.99,09/09/19 17:11,"512 Lincoln St, San Francisco, CA 94016" +253387,USB-C Charging Cable,1,11.95,09/01/19 06:47,"952 Washington St, San Francisco, CA 94016" +253388,Bose SoundSport Headphones,1,99.99,09/06/19 22:26,"578 1st St, San Francisco, CA 94016" +253389,AA Batteries (4-pack),1,3.84,09/25/19 12:04,"617 Johnson St, Portland, OR 97035" +253390,34in Ultrawide Monitor,1,379.99,09/23/19 15:59,"789 Madison St, Dallas, TX 75001" +253391,Google Phone,1,600,09/02/19 20:30,"615 Pine St, Los Angeles, CA 90001" +253392,34in Ultrawide Monitor,1,379.99,09/28/19 12:18,"288 Main St, New York City, NY 10001" +253393,Lightning Charging Cable,1,14.95,09/30/19 09:52,"860 Hill St, San Francisco, CA 94016" +253394,27in FHD Monitor,1,149.99,09/28/19 09:05,"384 Wilson St, Austin, TX 73301" +253395,27in 4K Gaming Monitor,1,389.99,09/17/19 20:47,"787 8th St, Atlanta, GA 30301" +253396,USB-C Charging Cable,1,11.95,09/30/19 10:44,"492 River St, Austin, TX 73301" +253397,27in 4K Gaming Monitor,1,389.99,09/03/19 17:22,"472 Willow St, Boston, MA 02215" +253398,Bose SoundSport Headphones,1,99.99,09/18/19 16:00,"197 Park St, Los Angeles, CA 90001" +253399,27in 4K Gaming Monitor,1,389.99,09/03/19 12:29,"217 Hickory St, Boston, MA 02215" +253400,Bose SoundSport Headphones,1,99.99,09/20/19 19:00,"589 1st St, San Francisco, CA 94016" +253401,USB-C Charging Cable,1,11.95,09/20/19 17:50,"835 Washington St, Seattle, WA 98101" +253402,Bose SoundSport Headphones,1,99.99,09/25/19 23:05,"389 Johnson St, Los Angeles, CA 90001" +253403,AA Batteries (4-pack),2,3.84,09/02/19 00:12,"430 12th St, San Francisco, CA 94016" +253404,Apple Airpods Headphones,1,150,09/03/19 19:58,"117 Maple St, Boston, MA 02215" +253405,Wired Headphones,1,11.99,09/20/19 15:25,"91 2nd St, Atlanta, GA 30301" +253406,27in 4K Gaming Monitor,1,389.99,09/19/19 15:08,"116 5th St, Seattle, WA 98101" +253406,27in FHD Monitor,1,149.99,09/19/19 15:08,"116 5th St, Seattle, WA 98101" +253407,iPhone,1,700,09/18/19 14:08,"190 Hill St, Los Angeles, CA 90001" +253408,Google Phone,1,600,09/19/19 23:15,"611 Sunset St, Atlanta, GA 30301" +253409,Apple Airpods Headphones,1,150,09/04/19 19:02,"88 4th St, New York City, NY 10001" +253410,Bose SoundSport Headphones,1,99.99,09/14/19 18:02,"107 Jackson St, San Francisco, CA 94016" +253411,USB-C Charging Cable,1,11.95,09/02/19 19:17,"65 Johnson St, San Francisco, CA 94016" +253412,Bose SoundSport Headphones,1,99.99,09/25/19 14:57,"168 Cedar St, Boston, MA 02215" +253413,AAA Batteries (4-pack),1,2.99,09/05/19 11:27,"394 Chestnut St, Seattle, WA 98101" +253414,Apple Airpods Headphones,1,150,09/07/19 07:40,"810 Ridge St, San Francisco, CA 94016" +253415,Flatscreen TV,1,300,09/17/19 12:12,"733 Meadow St, Atlanta, GA 30301" +253416,AAA Batteries (4-pack),1,2.99,09/10/19 19:27,"521 Hill St, Boston, MA 02215" +253417,20in Monitor,1,109.99,09/17/19 13:33,"215 Cedar St, Seattle, WA 98101" +253418,Google Phone,1,600,09/15/19 11:52,"460 Lakeview St, Los Angeles, CA 90001" +253418,Bose SoundSport Headphones,1,99.99,09/15/19 11:52,"460 Lakeview St, Los Angeles, CA 90001" +253419,AAA Batteries (4-pack),1,2.99,09/22/19 15:46,"501 Park St, Los Angeles, CA 90001" +253420,Bose SoundSport Headphones,1,99.99,09/23/19 17:01,"808 Main St, San Francisco, CA 94016" +253421,AA Batteries (4-pack),2,3.84,09/29/19 12:08,"766 Center St, Boston, MA 02215" +253422,Macbook Pro Laptop,1,1700,09/22/19 19:59,"416 11th St, Austin, TX 73301" +253423,34in Ultrawide Monitor,1,379.99,09/05/19 08:47,"211 Willow St, Atlanta, GA 30301" +253424,Apple Airpods Headphones,1,150,09/06/19 11:59,"789 14th St, San Francisco, CA 94016" +253425,Lightning Charging Cable,1,14.95,09/06/19 19:33,"939 4th St, San Francisco, CA 94016" +253426,20in Monitor,1,109.99,09/01/19 15:05,"42 Jefferson St, Boston, MA 02215" +253427,Flatscreen TV,1,300,09/08/19 15:57,"832 13th St, Austin, TX 73301" +253428,AA Batteries (4-pack),1,3.84,09/17/19 18:55,"441 Sunset St, San Francisco, CA 94016" +253429,USB-C Charging Cable,1,11.95,09/17/19 19:10,"969 9th St, Los Angeles, CA 90001" +253430,AA Batteries (4-pack),1,3.84,09/05/19 15:57,"211 Meadow St, Portland, OR 97035" +253431,Wired Headphones,1,11.99,09/23/19 09:38,"92 Walnut St, San Francisco, CA 94016" +253432,iPhone,1,700,09/09/19 16:19,"641 Willow St, San Francisco, CA 94016" +253432,Apple Airpods Headphones,1,150,09/09/19 16:19,"641 Willow St, San Francisco, CA 94016" +253433,Lightning Charging Cable,1,14.95,09/27/19 15:15,"750 1st St, Atlanta, GA 30301" +253434,34in Ultrawide Monitor,1,379.99,09/04/19 22:06,"792 Walnut St, Dallas, TX 75001" +253435,34in Ultrawide Monitor,1,379.99,09/26/19 14:02,"828 Wilson St, New York City, NY 10001" +253436,ThinkPad Laptop,1,999.99,09/08/19 18:58,"625 Lakeview St, Seattle, WA 98101" +253437,Flatscreen TV,1,300,09/10/19 22:40,"286 Ridge St, Seattle, WA 98101" +253438,Wired Headphones,1,11.99,09/07/19 19:19,"230 Dogwood St, Seattle, WA 98101" +253439,Bose SoundSport Headphones,1,99.99,09/19/19 20:58,"779 Dogwood St, San Francisco, CA 94016" +253440,AA Batteries (4-pack),1,3.84,09/29/19 14:29,"700 Chestnut St, San Francisco, CA 94016" +253441,USB-C Charging Cable,1,11.95,09/27/19 08:26,"391 North St, New York City, NY 10001" +253442,Macbook Pro Laptop,1,1700,09/05/19 06:14,"39 South St, Boston, MA 02215" +253443,AA Batteries (4-pack),1,3.84,09/06/19 07:15,"405 5th St, Atlanta, GA 30301" +253444,Google Phone,1,600,09/13/19 09:32,"397 Cedar St, Los Angeles, CA 90001" +253445,Lightning Charging Cable,1,14.95,09/04/19 13:36,"60 10th St, Portland, OR 97035" +253446,Lightning Charging Cable,1,14.95,09/27/19 11:28,"532 6th St, Los Angeles, CA 90001" +253447,27in 4K Gaming Monitor,1,389.99,09/09/19 19:33,"389 7th St, Seattle, WA 98101" +253448,USB-C Charging Cable,1,11.95,09/23/19 07:55,"302 South St, Los Angeles, CA 90001" +253449,20in Monitor,1,109.99,09/21/19 17:03,"556 Maple St, Atlanta, GA 30301" +253450,Google Phone,1,600,09/09/19 23:35,"593 11th St, San Francisco, CA 94016" +253451,Google Phone,1,600,09/28/19 19:49,"614 2nd St, Portland, OR 97035" +253452,Bose SoundSport Headphones,1,99.99,09/26/19 15:22,"993 Cherry St, Dallas, TX 75001" +253453,Lightning Charging Cable,1,14.95,09/13/19 14:51,"879 Main St, New York City, NY 10001" +253454,Lightning Charging Cable,1,14.95,09/16/19 12:13,"53 10th St, Los Angeles, CA 90001" +253455,AA Batteries (4-pack),1,3.84,09/21/19 04:40,"935 Cedar St, Atlanta, GA 30301" +253456,AA Batteries (4-pack),2,3.84,09/24/19 22:17,"328 Madison St, New York City, NY 10001" +253457,AA Batteries (4-pack),1,3.84,09/29/19 15:32,"606 Meadow St, San Francisco, CA 94016" +253458,Wired Headphones,1,11.99,09/26/19 21:18,"629 1st St, New York City, NY 10001" +253459,Apple Airpods Headphones,1,150,09/08/19 14:26,"531 Hill St, New York City, NY 10001" +253460,AA Batteries (4-pack),1,3.84,09/14/19 00:54,"40 9th St, Los Angeles, CA 90001" +253461,Apple Airpods Headphones,1,150,09/05/19 12:52,"286 Elm St, Atlanta, GA 30301" +253462,34in Ultrawide Monitor,1,379.99,09/21/19 09:42,"315 Madison St, San Francisco, CA 94016" +253463,Bose SoundSport Headphones,1,99.99,09/20/19 14:54,"611 Forest St, Seattle, WA 98101" +253464,34in Ultrawide Monitor,1,379.99,09/20/19 13:14,"268 8th St, Portland, OR 97035" +253465,Lightning Charging Cable,1,14.95,09/23/19 16:42,"169 8th St, New York City, NY 10001" +253466,Wired Headphones,1,11.99,09/23/19 13:07,"343 7th St, Boston, MA 02215" +253467,34in Ultrawide Monitor,1,379.99,09/10/19 11:08,"120 Johnson St, San Francisco, CA 94016" +253468,Bose SoundSport Headphones,1,99.99,09/27/19 21:03,"364 1st St, San Francisco, CA 94016" +253469,AAA Batteries (4-pack),1,2.99,09/16/19 19:12,"463 West St, San Francisco, CA 94016" +253470,iPhone,1,700,09/29/19 23:09,"357 Highland St, Dallas, TX 75001" +253470,Apple Airpods Headphones,1,150,09/29/19 23:09,"357 Highland St, Dallas, TX 75001" +253471,LG Dryer,1,600.0,09/20/19 19:50,"990 Spruce St, Portland, OR 97035" +253472,Lightning Charging Cable,1,14.95,09/22/19 13:01,"980 Elm St, Boston, MA 02215" +253473,Apple Airpods Headphones,1,150,09/10/19 10:09,"208 West St, New York City, NY 10001" +253474,Apple Airpods Headphones,1,150,09/06/19 11:16,"209 North St, Atlanta, GA 30301" +253475,Apple Airpods Headphones,1,150,09/03/19 17:11,"64 Maple St, Atlanta, GA 30301" +253476,Lightning Charging Cable,1,14.95,09/12/19 18:57,"958 12th St, San Francisco, CA 94016" +253477,USB-C Charging Cable,1,11.95,09/23/19 19:20,"937 Jefferson St, Seattle, WA 98101" +253478,Bose SoundSport Headphones,1,99.99,09/27/19 11:33,"496 Church St, Dallas, TX 75001" +253479,AA Batteries (4-pack),1,3.84,09/24/19 18:44,"221 Hickory St, Atlanta, GA 30301" +253480,AA Batteries (4-pack),1,3.84,09/16/19 20:43,"733 Cherry St, Seattle, WA 98101" +253481,Lightning Charging Cable,1,14.95,09/13/19 18:34,"677 11th St, San Francisco, CA 94016" +253482,USB-C Charging Cable,1,11.95,09/23/19 21:06,"428 14th St, Boston, MA 02215" +253483,Wired Headphones,1,11.99,09/09/19 11:45,"875 West St, Atlanta, GA 30301" +253484,Wired Headphones,1,11.99,09/12/19 09:06,"88 Dogwood St, San Francisco, CA 94016" +253485,Apple Airpods Headphones,1,150,09/08/19 19:13,"920 Pine St, Los Angeles, CA 90001" +253486,AA Batteries (4-pack),1,3.84,09/13/19 09:49,"890 Spruce St, New York City, NY 10001" +253487,27in FHD Monitor,1,149.99,09/04/19 13:50,"268 Wilson St, Boston, MA 02215" +253488,Macbook Pro Laptop,1,1700,09/30/19 23:03,"591 Jefferson St, Seattle, WA 98101" +253489,Wired Headphones,1,11.99,09/06/19 08:07,"576 Elm St, Seattle, WA 98101" +253490,Apple Airpods Headphones,1,150,09/24/19 19:05,"846 Adams St, Austin, TX 73301" +253491,Lightning Charging Cable,1,14.95,09/22/19 06:33,"784 Church St, San Francisco, CA 94016" +253492,34in Ultrawide Monitor,1,379.99,09/08/19 17:54,"349 Hill St, Dallas, TX 75001" +253493,USB-C Charging Cable,1,11.95,09/27/19 18:32,"386 Lincoln St, Seattle, WA 98101" +253494,USB-C Charging Cable,1,11.95,09/25/19 18:04,"447 Main St, New York City, NY 10001" +253495,USB-C Charging Cable,1,11.95,09/23/19 20:25,"87 Sunset St, New York City, NY 10001" +253496,Apple Airpods Headphones,1,150,09/16/19 22:39,"359 12th St, Boston, MA 02215" +,,,,, +253497,AAA Batteries (4-pack),1,2.99,09/04/19 21:20,"677 8th St, Seattle, WA 98101" +253498,Bose SoundSport Headphones,1,99.99,09/05/19 11:34,"698 West St, Austin, TX 73301" +253499,USB-C Charging Cable,1,11.95,09/08/19 17:37,"945 5th St, New York City, NY 10001" +253500,Vareebadd Phone,1,400,09/19/19 11:56,"141 Pine St, Boston, MA 02215" +253500,USB-C Charging Cable,1,11.95,09/19/19 11:56,"141 Pine St, Boston, MA 02215" +253501,USB-C Charging Cable,1,11.95,09/04/19 03:46,"510 10th St, San Francisco, CA 94016" +253502,Bose SoundSport Headphones,1,99.99,09/13/19 09:27,"245 Meadow St, San Francisco, CA 94016" +253503,USB-C Charging Cable,1,11.95,09/06/19 18:20,"364 Dogwood St, Los Angeles, CA 90001" +253504,Google Phone,1,600,09/08/19 14:26,"986 Sunset St, Atlanta, GA 30301" +253505,27in FHD Monitor,1,149.99,09/18/19 09:30,"248 Spruce St, New York City, NY 10001" +253506,Flatscreen TV,1,300,09/12/19 22:26,"941 12th St, Portland, OR 97035" +253507,Google Phone,1,600,09/20/19 10:24,"353 Chestnut St, Dallas, TX 75001" +253508,34in Ultrawide Monitor,1,379.99,09/16/19 18:07,"350 Main St, San Francisco, CA 94016" +253509,Wired Headphones,1,11.99,09/21/19 15:59,"985 Johnson St, Austin, TX 73301" +253510,USB-C Charging Cable,1,11.95,09/03/19 17:52,"456 Maple St, Austin, TX 73301" +253511,Apple Airpods Headphones,1,150,09/13/19 12:27,"676 Madison St, New York City, NY 10001" +253512,Lightning Charging Cable,1,14.95,09/15/19 23:58,"992 Ridge St, Seattle, WA 98101" +253513,27in FHD Monitor,1,149.99,09/12/19 11:49,"253 Main St, Dallas, TX 75001" +253514,Wired Headphones,1,11.99,09/15/19 14:00,"971 Cherry St, Boston, MA 02215" +253515,Bose SoundSport Headphones,1,99.99,09/07/19 15:33,"339 Ridge St, Boston, MA 02215" +253516,27in FHD Monitor,1,149.99,09/05/19 22:23,"697 Maple St, Los Angeles, CA 90001" +253517,Bose SoundSport Headphones,1,99.99,09/19/19 06:27,"938 Lincoln St, Dallas, TX 75001" +253518,AA Batteries (4-pack),1,3.84,09/01/19 14:10,"441 Johnson St, New York City, NY 10001" +253519,Vareebadd Phone,1,400,09/17/19 09:44,"2 12th St, Austin, TX 73301" +253519,USB-C Charging Cable,1,11.95,09/17/19 09:44,"2 12th St, Austin, TX 73301" +253520,USB-C Charging Cable,1,11.95,09/06/19 11:56,"886 Willow St, San Francisco, CA 94016" +253521,AA Batteries (4-pack),1,3.84,09/30/19 08:54,"105 Forest St, Portland, ME 04101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +253522,20in Monitor,1,109.99,09/30/19 12:06,"724 Hickory St, San Francisco, CA 94016" +253523,Lightning Charging Cable,1,14.95,09/26/19 04:29,"341 Pine St, Los Angeles, CA 90001" +253524,USB-C Charging Cable,1,11.95,09/23/19 22:34,"403 Jefferson St, San Francisco, CA 94016" +253525,34in Ultrawide Monitor,1,379.99,09/07/19 19:18,"107 13th St, Dallas, TX 75001" +253526,AAA Batteries (4-pack),1,2.99,09/16/19 09:45,"174 Church St, Seattle, WA 98101" +253527,Vareebadd Phone,1,400,09/14/19 21:13,"965 Jefferson St, Atlanta, GA 30301" +253528,USB-C Charging Cable,1,11.95,09/04/19 20:52,"513 Forest St, Portland, OR 97035" +253529,Apple Airpods Headphones,1,150,09/08/19 22:56,"861 Hill St, Atlanta, GA 30301" +253530,Wired Headphones,1,11.99,09/03/19 22:59,"572 Ridge St, San Francisco, CA 94016" +253531,27in 4K Gaming Monitor,1,389.99,09/13/19 17:12,"694 Wilson St, New York City, NY 10001" +253532,Bose SoundSport Headphones,1,99.99,09/11/19 13:50,"524 Cherry St, Seattle, WA 98101" +253533,AA Batteries (4-pack),1,3.84,09/02/19 12:15,"88 Willow St, Dallas, TX 75001" +253534,AAA Batteries (4-pack),1,2.99,09/11/19 17:04,"494 Spruce St, Austin, TX 73301" +253535,iPhone,1,700,09/09/19 09:23,"228 Cedar St, Los Angeles, CA 90001" +253535,AAA Batteries (4-pack),1,2.99,09/09/19 09:23,"228 Cedar St, Los Angeles, CA 90001" +253536,AAA Batteries (4-pack),2,2.99,09/03/19 19:58,"673 Lake St, San Francisco, CA 94016" +253537,Bose SoundSport Headphones,1,99.99,09/17/19 22:02,"98 Lincoln St, Boston, MA 02215" +253538,Flatscreen TV,1,300,09/04/19 12:32,"454 North St, New York City, NY 10001" +253539,AA Batteries (4-pack),6,3.84,09/14/19 19:44,"324 Elm St, Boston, MA 02215" +253540,Apple Airpods Headphones,1,150,09/08/19 18:57,"695 8th St, Los Angeles, CA 90001" +253541,Apple Airpods Headphones,1,150,09/02/19 19:07,"429 Adams St, New York City, NY 10001" +253542,AAA Batteries (4-pack),1,2.99,09/29/19 16:16,"641 13th St, Boston, MA 02215" +253543,Macbook Pro Laptop,1,1700,09/26/19 20:54,"533 14th St, San Francisco, CA 94016" +253544,AA Batteries (4-pack),2,3.84,09/15/19 18:11,"879 West St, New York City, NY 10001" +253545,LG Dryer,1,600.0,09/13/19 06:31,"839 Main St, Los Angeles, CA 90001" +253546,34in Ultrawide Monitor,1,379.99,09/17/19 17:12,"576 Elm St, Dallas, TX 75001" +253547,AAA Batteries (4-pack),2,2.99,09/26/19 21:28,"77 Chestnut St, Austin, TX 73301" +253548,USB-C Charging Cable,1,11.95,09/28/19 09:59,"508 Spruce St, San Francisco, CA 94016" +253549,27in FHD Monitor,1,149.99,09/24/19 13:55,"145 Chestnut St, Atlanta, GA 30301" +253550,ThinkPad Laptop,1,999.99,09/13/19 20:22,"447 West St, Seattle, WA 98101" +253551,USB-C Charging Cable,1,11.95,09/04/19 23:37,"651 6th St, San Francisco, CA 94016" +253552,Wired Headphones,1,11.99,09/02/19 13:47,"72 Lincoln St, Los Angeles, CA 90001" +253553,Vareebadd Phone,1,400,09/03/19 14:34,"203 Jefferson St, Seattle, WA 98101" +253553,USB-C Charging Cable,1,11.95,09/03/19 14:34,"203 Jefferson St, Seattle, WA 98101" +253553,Bose SoundSport Headphones,1,99.99,09/03/19 14:34,"203 Jefferson St, Seattle, WA 98101" +,,,,, +253554,Lightning Charging Cable,1,14.95,09/14/19 20:54,"666 Elm St, New York City, NY 10001" +253555,USB-C Charging Cable,1,11.95,09/08/19 11:28,"82 Sunset St, Seattle, WA 98101" +253556,AAA Batteries (4-pack),1,2.99,09/20/19 00:02,"99 Dogwood St, San Francisco, CA 94016" +253557,AAA Batteries (4-pack),1,2.99,09/12/19 04:11,"851 Chestnut St, New York City, NY 10001" +253558,AA Batteries (4-pack),1,3.84,09/29/19 19:41,"876 5th St, San Francisco, CA 94016" +253558,Apple Airpods Headphones,1,150,09/29/19 19:41,"876 5th St, San Francisco, CA 94016" +253559,AAA Batteries (4-pack),1,2.99,09/03/19 20:49,"198 9th St, Atlanta, GA 30301" +253560,AAA Batteries (4-pack),1,2.99,09/08/19 18:49,"863 Center St, Portland, OR 97035" +253561,Google Phone,1,600,09/05/19 01:16,"803 11th St, San Francisco, CA 94016" +253561,USB-C Charging Cable,1,11.95,09/05/19 01:16,"803 11th St, San Francisco, CA 94016" +253562,AAA Batteries (4-pack),1,2.99,09/30/19 23:57,"984 1st St, Atlanta, GA 30301" +253563,Macbook Pro Laptop,1,1700,09/25/19 13:59,"861 Lincoln St, New York City, NY 10001" +253564,Bose SoundSport Headphones,1,99.99,09/04/19 20:02,"375 Dogwood St, San Francisco, CA 94016" +253565,20in Monitor,1,109.99,09/22/19 18:50,"406 Wilson St, New York City, NY 10001" +253566,Wired Headphones,1,11.99,09/27/19 17:46,"878 14th St, Los Angeles, CA 90001" +253567,Lightning Charging Cable,1,14.95,09/21/19 11:33,"679 Sunset St, Boston, MA 02215" +253568,AAA Batteries (4-pack),1,2.99,09/16/19 21:50,"466 Church St, New York City, NY 10001" +253569,AA Batteries (4-pack),1,3.84,09/06/19 17:56,"789 Highland St, Dallas, TX 75001" +253570,AAA Batteries (4-pack),1,2.99,09/16/19 06:03,"244 Lincoln St, San Francisco, CA 94016" +253571,USB-C Charging Cable,1,11.95,09/09/19 20:50,"868 Lake St, Dallas, TX 75001" +253572,27in FHD Monitor,1,149.99,09/15/19 10:51,"924 Lakeview St, San Francisco, CA 94016" +253573,AAA Batteries (4-pack),1,2.99,09/19/19 01:18,"689 Wilson St, Portland, OR 97035" +253574,Lightning Charging Cable,1,14.95,09/14/19 13:59,"120 Chestnut St, Austin, TX 73301" +253575,ThinkPad Laptop,1,999.99,09/18/19 18:43,"712 Jackson St, Los Angeles, CA 90001" +253576,Apple Airpods Headphones,1,150,09/10/19 13:04,"538 Sunset St, San Francisco, CA 94016" +253577,27in FHD Monitor,1,149.99,09/26/19 00:40,"21 8th St, Austin, TX 73301" +253578,AAA Batteries (4-pack),1,2.99,09/30/19 15:01,"285 6th St, Seattle, WA 98101" +253579,20in Monitor,1,109.99,09/03/19 20:54,"516 Ridge St, Portland, ME 04101" +253580,Apple Airpods Headphones,1,150,09/03/19 17:09,"487 Wilson St, New York City, NY 10001" +253581,ThinkPad Laptop,1,999.99,09/18/19 01:39,"799 Highland St, Los Angeles, CA 90001" +253582,USB-C Charging Cable,1,11.95,09/04/19 22:50,"694 12th St, San Francisco, CA 94016" +253583,Lightning Charging Cable,1,14.95,09/18/19 17:28,"143 11th St, Seattle, WA 98101" +253584,Lightning Charging Cable,1,14.95,09/29/19 20:58,"510 Main St, San Francisco, CA 94016" +253585,AAA Batteries (4-pack),1,2.99,09/03/19 22:47,"2 9th St, Boston, MA 02215" +253586,Lightning Charging Cable,1,14.95,09/08/19 16:56,"155 2nd St, Seattle, WA 98101" +253587,Lightning Charging Cable,1,14.95,09/19/19 16:23,"256 Ridge St, Atlanta, GA 30301" +253588,27in 4K Gaming Monitor,1,389.99,09/20/19 15:19,"134 Lake St, New York City, NY 10001" +253589,AA Batteries (4-pack),2,3.84,09/24/19 14:48,"870 Hickory St, New York City, NY 10001" +253590,Apple Airpods Headphones,1,150,09/17/19 20:16,"699 Adams St, Boston, MA 02215" +253591,AA Batteries (4-pack),2,3.84,09/18/19 23:32,"996 Spruce St, Los Angeles, CA 90001" +253592,AA Batteries (4-pack),2,3.84,09/10/19 20:59,"930 West St, New York City, NY 10001" +253593,AAA Batteries (4-pack),2,2.99,09/27/19 11:16,"327 11th St, New York City, NY 10001" +253594,Apple Airpods Headphones,1,150,09/15/19 10:18,"789 Hickory St, Seattle, WA 98101" +253595,AAA Batteries (4-pack),1,2.99,09/06/19 21:19,"177 Washington St, San Francisco, CA 94016" +253596,34in Ultrawide Monitor,1,379.99,09/28/19 22:11,"351 Sunset St, Portland, OR 97035" +253597,Lightning Charging Cable,1,14.95,09/20/19 13:02,"606 Elm St, San Francisco, CA 94016" +253598,Wired Headphones,1,11.99,09/13/19 17:13,"607 8th St, Los Angeles, CA 90001" +253599,USB-C Charging Cable,1,11.95,09/29/19 16:08,"906 Willow St, Dallas, TX 75001" +253600,Apple Airpods Headphones,1,150,09/10/19 19:08,"561 Lincoln St, Atlanta, GA 30301" +,,,,, +253601,AA Batteries (4-pack),1,3.84,09/04/19 15:30,"471 Adams St, San Francisco, CA 94016" +253602,USB-C Charging Cable,1,11.95,09/23/19 21:23,"135 14th St, Atlanta, GA 30301" +253603,USB-C Charging Cable,1,11.95,09/15/19 18:16,"762 Madison St, San Francisco, CA 94016" +253604,Bose SoundSport Headphones,1,99.99,09/03/19 15:00,"717 Chestnut St, Los Angeles, CA 90001" +253605,Google Phone,1,600,09/23/19 13:34,"379 Highland St, San Francisco, CA 94016" +253606,AAA Batteries (4-pack),3,2.99,09/12/19 21:06,"281 Highland St, Boston, MA 02215" +253607,Wired Headphones,1,11.99,09/28/19 12:51,"824 Walnut St, San Francisco, CA 94016" +253608,Flatscreen TV,1,300,09/13/19 11:12,"24 Maple St, Boston, MA 02215" +253609,Wired Headphones,1,11.99,09/11/19 13:35,"288 8th St, Boston, MA 02215" +253610,AA Batteries (4-pack),1,3.84,09/14/19 15:24,"464 Church St, Boston, MA 02215" +253611,AAA Batteries (4-pack),1,2.99,09/17/19 21:04,"294 10th St, Atlanta, GA 30301" +253612,Lightning Charging Cable,1,14.95,09/13/19 15:21,"496 Elm St, Boston, MA 02215" +253613,Wired Headphones,1,11.99,09/11/19 22:30,"843 Dogwood St, Austin, TX 73301" +253614,34in Ultrawide Monitor,1,379.99,09/16/19 09:46,"331 12th St, Boston, MA 02215" +253615,USB-C Charging Cable,1,11.95,09/01/19 16:27,"451 Chestnut St, Atlanta, GA 30301" +253616,Apple Airpods Headphones,1,150,09/06/19 01:22,"203 West St, Dallas, TX 75001" +253617,Bose SoundSport Headphones,1,99.99,09/23/19 19:16,"759 Pine St, Dallas, TX 75001" +253618,Lightning Charging Cable,1,14.95,09/05/19 21:46,"300 Washington St, San Francisco, CA 94016" +253619,USB-C Charging Cable,1,11.95,09/13/19 14:47,"942 9th St, New York City, NY 10001" +253620,34in Ultrawide Monitor,1,379.99,09/11/19 23:05,"547 Highland St, Los Angeles, CA 90001" +253621,Flatscreen TV,1,300,09/01/19 09:09,"79 Park St, Portland, OR 97035" +253622,AA Batteries (4-pack),1,3.84,09/08/19 13:07,"177 Walnut St, Seattle, WA 98101" +253623,Lightning Charging Cable,1,14.95,09/25/19 18:36,"274 Highland St, Portland, OR 97035" +253624,Wired Headphones,1,11.99,09/30/19 22:16,"774 Chestnut St, San Francisco, CA 94016" +253625,USB-C Charging Cable,1,11.95,09/30/19 15:11,"980 Hickory St, New York City, NY 10001" +253626,20in Monitor,1,109.99,09/11/19 19:49,"477 Madison St, New York City, NY 10001" +253627,Apple Airpods Headphones,1,150,09/19/19 01:53,"995 Dogwood St, Seattle, WA 98101" +253628,USB-C Charging Cable,1,11.95,09/01/19 03:25,"234 Forest St, Portland, OR 97035" +253629,Wired Headphones,2,11.99,09/13/19 19:33,"264 Main St, San Francisco, CA 94016" +253630,Apple Airpods Headphones,1,150,09/09/19 21:16,"953 2nd St, San Francisco, CA 94016" +253630,USB-C Charging Cable,1,11.95,09/09/19 21:16,"953 2nd St, San Francisco, CA 94016" +253631,iPhone,1,700,09/05/19 04:35,"560 Park St, San Francisco, CA 94016" +253632,27in FHD Monitor,1,149.99,09/15/19 14:27,"38 5th St, Boston, MA 02215" +253633,Lightning Charging Cable,1,14.95,09/12/19 00:22,"707 Cedar St, Seattle, WA 98101" +253634,Lightning Charging Cable,1,14.95,09/24/19 11:56,"870 Walnut St, Portland, OR 97035" +253635,AA Batteries (4-pack),1,3.84,09/28/19 14:32,"83 Lakeview St, Los Angeles, CA 90001" +253636,Bose SoundSport Headphones,1,99.99,09/26/19 19:20,"46 North St, New York City, NY 10001" +253637,27in 4K Gaming Monitor,1,389.99,09/02/19 12:59,"961 1st St, Seattle, WA 98101" +253638,Wired Headphones,1,11.99,09/30/19 12:28,"995 8th St, San Francisco, CA 94016" +253639,Bose SoundSport Headphones,1,99.99,09/24/19 16:01,"387 Maple St, Boston, MA 02215" +253640,Bose SoundSport Headphones,1,99.99,09/24/19 21:53,"267 Dogwood St, Austin, TX 73301" +253641,USB-C Charging Cable,2,11.95,09/10/19 14:57,"993 Walnut St, Boston, MA 02215" +253642,AA Batteries (4-pack),1,3.84,09/29/19 09:30,"12 North St, San Francisco, CA 94016" +253643,27in FHD Monitor,1,149.99,09/21/19 12:08,"933 13th St, Dallas, TX 75001" +253644,Lightning Charging Cable,1,14.95,09/30/19 20:12,"186 8th St, New York City, NY 10001" +253645,ThinkPad Laptop,1,999.99,09/23/19 21:06,"215 Hill St, Los Angeles, CA 90001" +253646,USB-C Charging Cable,1,11.95,09/30/19 17:21,"718 Ridge St, Los Angeles, CA 90001" +253647,Wired Headphones,1,11.99,09/19/19 18:47,"340 Ridge St, Atlanta, GA 30301" +253648,Bose SoundSport Headphones,1,99.99,09/02/19 12:58,"852 West St, Los Angeles, CA 90001" +253649,Wired Headphones,1,11.99,09/18/19 12:15,"559 Washington St, Boston, MA 02215" +253650,Lightning Charging Cable,1,14.95,09/07/19 19:10,"799 Walnut St, Atlanta, GA 30301" +253651,AAA Batteries (4-pack),3,2.99,09/04/19 18:28,"718 2nd St, Seattle, WA 98101" +253652,AA Batteries (4-pack),3,3.84,09/07/19 14:05,"183 Lake St, San Francisco, CA 94016" +253653,AAA Batteries (4-pack),4,2.99,09/15/19 21:51,"671 Ridge St, Seattle, WA 98101" +253654,34in Ultrawide Monitor,1,379.99,09/30/19 10:41,"815 Pine St, San Francisco, CA 94016" +253655,Lightning Charging Cable,1,14.95,09/16/19 21:53,"741 Madison St, San Francisco, CA 94016" +253656,Apple Airpods Headphones,1,150,09/27/19 18:36,"711 7th St, Los Angeles, CA 90001" +253657,USB-C Charging Cable,1,11.95,09/21/19 19:24,"695 Lake St, Dallas, TX 75001" +253658,USB-C Charging Cable,1,11.95,09/23/19 22:10,"976 Lincoln St, San Francisco, CA 94016" +253659,USB-C Charging Cable,1,11.95,09/26/19 22:09,"224 8th St, Boston, MA 02215" +253660,Bose SoundSport Headphones,1,99.99,09/10/19 19:44,"420 West St, New York City, NY 10001" +253661,34in Ultrawide Monitor,1,379.99,09/25/19 13:03,"135 Forest St, Los Angeles, CA 90001" +253662,27in FHD Monitor,1,149.99,09/04/19 18:43,"946 Lake St, Portland, ME 04101" +253663,AA Batteries (4-pack),1,3.84,09/08/19 06:57,"368 Meadow St, Boston, MA 02215" +253664,iPhone,1,700,09/18/19 12:59,"539 Meadow St, Boston, MA 02215" +253665,AAA Batteries (4-pack),1,2.99,09/22/19 11:54,"571 10th St, Atlanta, GA 30301" +253666,AAA Batteries (4-pack),1,2.99,09/17/19 12:56,"463 5th St, San Francisco, CA 94016" +253667,Wired Headphones,1,11.99,09/25/19 15:33,"562 Dogwood St, Los Angeles, CA 90001" +253668,AAA Batteries (4-pack),2,2.99,09/10/19 10:54,"333 Hill St, Seattle, WA 98101" +253669,20in Monitor,1,109.99,09/17/19 12:06,"531 11th St, Boston, MA 02215" +253670,Lightning Charging Cable,1,14.95,09/22/19 20:32,"418 2nd St, Los Angeles, CA 90001" +253671,AA Batteries (4-pack),1,3.84,09/20/19 18:46,"479 Highland St, San Francisco, CA 94016" +253672,Lightning Charging Cable,2,14.95,09/29/19 22:15,"954 5th St, Los Angeles, CA 90001" +253673,AAA Batteries (4-pack),1,2.99,09/27/19 21:22,"17 Chestnut St, San Francisco, CA 94016" +253674,AA Batteries (4-pack),1,3.84,09/14/19 17:39,"963 13th St, Los Angeles, CA 90001" +253675,Google Phone,1,600,09/26/19 18:03,"79 13th St, New York City, NY 10001" +253676,34in Ultrawide Monitor,1,379.99,09/28/19 16:55,"682 Hickory St, Boston, MA 02215" +253677,AA Batteries (4-pack),1,3.84,09/29/19 11:11,"680 Park St, Los Angeles, CA 90001" +253678,Lightning Charging Cable,1,14.95,09/18/19 21:53,"93 Pine St, Boston, MA 02215" +253678,USB-C Charging Cable,1,11.95,09/18/19 21:53,"93 Pine St, Boston, MA 02215" +253679,20in Monitor,1,109.99,09/29/19 21:44,"629 Church St, New York City, NY 10001" +253680,27in FHD Monitor,1,149.99,09/21/19 17:50,"303 Lincoln St, New York City, NY 10001" +253681,USB-C Charging Cable,1,11.95,09/29/19 19:12,"772 14th St, New York City, NY 10001" +253682,Apple Airpods Headphones,1,150,09/23/19 21:26,"247 2nd St, New York City, NY 10001" +253683,34in Ultrawide Monitor,1,379.99,09/22/19 19:47,"986 Elm St, Boston, MA 02215" +253684,AAA Batteries (4-pack),1,2.99,09/15/19 00:22,"284 Lake St, San Francisco, CA 94016" +253685,AAA Batteries (4-pack),1,2.99,09/26/19 18:45,"374 Johnson St, Portland, OR 97035" +253686,USB-C Charging Cable,1,11.95,09/12/19 17:27,"763 10th St, Los Angeles, CA 90001" +253686,AAA Batteries (4-pack),2,2.99,09/12/19 17:27,"763 10th St, Los Angeles, CA 90001" +253687,34in Ultrawide Monitor,1,379.99,09/14/19 14:17,"349 Jefferson St, Los Angeles, CA 90001" +253688,AAA Batteries (4-pack),1,2.99,09/04/19 14:18,"32 Dogwood St, Dallas, TX 75001" +253689,Apple Airpods Headphones,1,150,09/07/19 11:18,"728 Johnson St, New York City, NY 10001" +253690,Flatscreen TV,1,300,09/11/19 13:42,"413 Sunset St, Seattle, WA 98101" +253691,Bose SoundSport Headphones,1,99.99,09/11/19 07:51,"150 Elm St, Boston, MA 02215" +253692,Lightning Charging Cable,1,14.95,09/17/19 16:36,"792 10th St, Boston, MA 02215" +253693,Bose SoundSport Headphones,1,99.99,09/03/19 07:55,"302 Pine St, San Francisco, CA 94016" +253694,Wired Headphones,1,11.99,09/29/19 15:59,"832 Hill St, Los Angeles, CA 90001" +253695,AAA Batteries (4-pack),2,2.99,09/07/19 22:45,"191 1st St, New York City, NY 10001" +253696,Macbook Pro Laptop,1,1700,09/16/19 15:18,"492 6th St, Portland, OR 97035" +253697,USB-C Charging Cable,1,11.95,09/30/19 18:51,"447 1st St, San Francisco, CA 94016" +253698,Flatscreen TV,1,300,09/05/19 19:11,"177 Hickory St, San Francisco, CA 94016" +253699,AAA Batteries (4-pack),1,2.99,09/06/19 15:36,"222 Sunset St, Seattle, WA 98101" +253700,Lightning Charging Cable,1,14.95,09/30/19 09:54,"933 Park St, Seattle, WA 98101" +253701,Macbook Pro Laptop,1,1700,09/18/19 23:42,"976 Lincoln St, Los Angeles, CA 90001" +253702,iPhone,1,700,09/19/19 13:02,"499 North St, Portland, OR 97035" +253703,27in FHD Monitor,1,149.99,09/24/19 23:51,"197 10th St, San Francisco, CA 94016" +253704,Wired Headphones,1,11.99,09/12/19 14:33,"200 Spruce St, Boston, MA 02215" +253705,Apple Airpods Headphones,1,150,09/29/19 20:04,"447 Meadow St, Seattle, WA 98101" +253706,iPhone,1,700,09/03/19 13:31,"143 4th St, Los Angeles, CA 90001" +253707,AAA Batteries (4-pack),2,2.99,09/19/19 16:01,"750 13th St, Dallas, TX 75001" +253708,Lightning Charging Cable,1,14.95,09/14/19 10:28,"160 Jefferson St, Dallas, TX 75001" +253709,Google Phone,1,600,09/19/19 06:15,"678 9th St, Los Angeles, CA 90001" +253710,27in 4K Gaming Monitor,1,389.99,09/27/19 22:35,"269 Cedar St, San Francisco, CA 94016" +253711,Bose SoundSport Headphones,1,99.99,09/01/19 13:21,"685 4th St, New York City, NY 10001" +253712,Apple Airpods Headphones,1,150,09/13/19 14:02,"636 Johnson St, Seattle, WA 98101" +253713,Bose SoundSport Headphones,1,99.99,09/04/19 13:54,"972 12th St, San Francisco, CA 94016" +253714,AAA Batteries (4-pack),1,2.99,09/03/19 11:03,"617 Ridge St, Dallas, TX 75001" +253715,Apple Airpods Headphones,1,150,09/22/19 14:19,"886 Hickory St, New York City, NY 10001" +253716,AA Batteries (4-pack),1,3.84,09/08/19 17:05,"856 Lake St, New York City, NY 10001" +253717,AA Batteries (4-pack),1,3.84,09/23/19 12:04,"654 North St, San Francisco, CA 94016" +253718,Google Phone,1,600,09/30/19 10:57,"761 Pine St, Los Angeles, CA 90001" +253718,Wired Headphones,1,11.99,09/30/19 10:57,"761 Pine St, Los Angeles, CA 90001" +253719,Apple Airpods Headphones,1,150,09/08/19 13:31,"935 Forest St, Los Angeles, CA 90001" +253720,Vareebadd Phone,1,400,09/04/19 10:23,"209 1st St, San Francisco, CA 94016" +253721,Lightning Charging Cable,1,14.95,09/09/19 17:00,"374 Lincoln St, Boston, MA 02215" +253722,Lightning Charging Cable,1,14.95,09/07/19 11:36,"609 Lincoln St, Seattle, WA 98101" +253723,Wired Headphones,1,11.99,09/16/19 21:10,"90 Forest St, Los Angeles, CA 90001" +253724,AAA Batteries (4-pack),1,2.99,09/18/19 17:58,"462 Madison St, Seattle, WA 98101" +253725,USB-C Charging Cable,1,11.95,09/08/19 11:33,"259 Jefferson St, San Francisco, CA 94016" +253726,34in Ultrawide Monitor,1,379.99,09/11/19 13:38,"596 River St, San Francisco, CA 94016" +253727,Lightning Charging Cable,1,14.95,09/21/19 18:39,"129 7th St, Atlanta, GA 30301" +253728,USB-C Charging Cable,1,11.95,09/05/19 17:40,"228 Walnut St, San Francisco, CA 94016" +253729,Wired Headphones,1,11.99,09/15/19 05:47,"20 Washington St, San Francisco, CA 94016" +253730,Apple Airpods Headphones,1,150,09/28/19 10:12,"315 10th St, Boston, MA 02215" +253731,Wired Headphones,1,11.99,09/16/19 10:06,"120 Washington St, New York City, NY 10001" +253732,Bose SoundSport Headphones,1,99.99,09/06/19 10:29,"969 Dogwood St, New York City, NY 10001" +253733,USB-C Charging Cable,2,11.95,09/19/19 12:28,"853 4th St, Atlanta, GA 30301" +253734,Bose SoundSport Headphones,1,99.99,09/02/19 22:55,"887 14th St, San Francisco, CA 94016" +253735,Wired Headphones,1,11.99,09/05/19 21:18,"74 2nd St, San Francisco, CA 94016" +253736,AAA Batteries (4-pack),1,2.99,09/26/19 15:11,"39 Hickory St, Boston, MA 02215" +253737,AAA Batteries (4-pack),1,2.99,09/13/19 10:36,"69 Elm St, Los Angeles, CA 90001" +253738,Lightning Charging Cable,1,14.95,09/06/19 01:07,"946 11th St, Los Angeles, CA 90001" +253739,Wired Headphones,1,11.99,09/24/19 02:21,"227 Jefferson St, New York City, NY 10001" +253740,Apple Airpods Headphones,1,150,09/05/19 16:03,"8 Forest St, Los Angeles, CA 90001" +253740,20in Monitor,1,109.99,09/05/19 16:03,"8 Forest St, Los Angeles, CA 90001" +253741,AA Batteries (4-pack),1,3.84,09/06/19 06:38,"43 Park St, Austin, TX 73301" +253742,AAA Batteries (4-pack),1,2.99,09/25/19 11:45,"611 Hill St, Portland, OR 97035" +253743,27in FHD Monitor,1,149.99,09/04/19 13:46,"660 11th St, New York City, NY 10001" +253744,AA Batteries (4-pack),1,3.84,09/09/19 14:32,"153 Hill St, Dallas, TX 75001" +253745,Flatscreen TV,1,300,09/11/19 19:15,"749 6th St, Dallas, TX 75001" +253746,AAA Batteries (4-pack),2,2.99,09/05/19 01:13,"725 Lake St, San Francisco, CA 94016" +253747,Wired Headphones,1,11.99,09/28/19 10:45,"481 Adams St, Atlanta, GA 30301" +253748,USB-C Charging Cable,3,11.95,09/15/19 17:58,"204 Hill St, New York City, NY 10001" +253749,Apple Airpods Headphones,1,150,09/07/19 13:13,"828 Madison St, San Francisco, CA 94016" +253750,AA Batteries (4-pack),2,3.84,09/19/19 10:30,"609 Dogwood St, Los Angeles, CA 90001" +253751,Wired Headphones,1,11.99,09/12/19 16:06,"238 2nd St, San Francisco, CA 94016" +253752,34in Ultrawide Monitor,1,379.99,09/08/19 15:19,"131 5th St, Portland, OR 97035" +253753,34in Ultrawide Monitor,1,379.99,09/13/19 13:02,"322 Main St, Los Angeles, CA 90001" +253754,Bose SoundSport Headphones,1,99.99,09/21/19 18:41,"749 2nd St, Boston, MA 02215" +253755,Lightning Charging Cable,1,14.95,09/01/19 23:39,"162 River St, Austin, TX 73301" +253756,ThinkPad Laptop,1,999.99,09/30/19 19:24,"638 Center St, Los Angeles, CA 90001" +253757,Lightning Charging Cable,1,14.95,09/26/19 19:38,"686 Lincoln St, San Francisco, CA 94016" +253758,27in FHD Monitor,1,149.99,09/26/19 10:32,"693 Spruce St, Los Angeles, CA 90001" +253758,AAA Batteries (4-pack),1,2.99,09/26/19 10:32,"693 Spruce St, Los Angeles, CA 90001" +253759,27in 4K Gaming Monitor,1,389.99,09/16/19 20:22,"737 Hickory St, San Francisco, CA 94016" +253760,Wired Headphones,2,11.99,09/07/19 09:59,"60 West St, New York City, NY 10001" +253761,Bose SoundSport Headphones,1,99.99,09/24/19 11:44,"835 Elm St, Los Angeles, CA 90001" +253762,Bose SoundSport Headphones,1,99.99,09/28/19 09:45,"475 Spruce St, Los Angeles, CA 90001" +253763,Apple Airpods Headphones,1,150,09/10/19 21:30,"480 Madison St, Atlanta, GA 30301" +253764,iPhone,1,700,09/26/19 18:13,"679 Maple St, Los Angeles, CA 90001" +253765,Bose SoundSport Headphones,1,99.99,09/17/19 15:49,"913 Dogwood St, San Francisco, CA 94016" +253766,AAA Batteries (4-pack),1,2.99,09/07/19 00:17,"879 Lake St, Seattle, WA 98101" +253766,ThinkPad Laptop,1,999.99,09/07/19 00:17,"879 Lake St, Seattle, WA 98101" +253767,USB-C Charging Cable,1,11.95,09/21/19 18:53,"217 Jackson St, Los Angeles, CA 90001" +253768,AA Batteries (4-pack),2,3.84,09/18/19 16:07,"463 Chestnut St, Boston, MA 02215" +253769,AA Batteries (4-pack),4,3.84,09/19/19 13:44,"57 2nd St, Atlanta, GA 30301" +253770,USB-C Charging Cable,1,11.95,09/11/19 14:25,"747 Adams St, Seattle, WA 98101" +253771,Flatscreen TV,1,300,09/17/19 13:34,"529 Meadow St, New York City, NY 10001" +253772,Google Phone,1,600,09/30/19 14:51,"591 Forest St, Boston, MA 02215" +253773,Vareebadd Phone,1,400,09/06/19 17:58,"400 West St, Boston, MA 02215" +253774,Lightning Charging Cable,1,14.95,09/25/19 10:34,"365 7th St, Dallas, TX 75001" +253775,27in 4K Gaming Monitor,1,389.99,09/06/19 11:20,"638 Washington St, Los Angeles, CA 90001" +253776,Wired Headphones,1,11.99,09/23/19 16:45,"910 Wilson St, New York City, NY 10001" +253777,AAA Batteries (4-pack),1,2.99,09/23/19 14:52,"336 Church St, San Francisco, CA 94016" +253778,34in Ultrawide Monitor,1,379.99,09/21/19 18:31,"625 5th St, Dallas, TX 75001" +253779,AA Batteries (4-pack),4,3.84,09/25/19 14:00,"263 Church St, Dallas, TX 75001" +253780,Vareebadd Phone,1,400,09/21/19 14:55,"696 Washington St, Boston, MA 02215" +253781,Lightning Charging Cable,1,14.95,09/07/19 14:07,"550 9th St, San Francisco, CA 94016" +253782,Lightning Charging Cable,1,14.95,09/14/19 18:44,"76 10th St, Dallas, TX 75001" +253783,Apple Airpods Headphones,1,150,09/21/19 16:29,"348 Cedar St, New York City, NY 10001" +253784,Lightning Charging Cable,1,14.95,09/14/19 11:36,"910 Main St, San Francisco, CA 94016" +253785,Wired Headphones,1,11.99,09/13/19 09:44,"26 Pine St, Los Angeles, CA 90001" +253786,Lightning Charging Cable,1,14.95,09/23/19 22:55,"924 Center St, Los Angeles, CA 90001" +253787,Apple Airpods Headphones,1,150,09/24/19 23:36,"142 Lakeview St, San Francisco, CA 94016" +253788,AAA Batteries (4-pack),1,2.99,09/24/19 06:16,"739 Ridge St, Boston, MA 02215" +253789,34in Ultrawide Monitor,1,379.99,09/10/19 12:49,"926 Cedar St, San Francisco, CA 94016" +253790,AAA Batteries (4-pack),1,2.99,09/30/19 18:02,"70 Madison St, Portland, OR 97035" +253791,Wired Headphones,2,11.99,09/10/19 23:56,"258 7th St, New York City, NY 10001" +253792,Bose SoundSport Headphones,1,99.99,09/26/19 19:45,"502 12th St, New York City, NY 10001" +253793,USB-C Charging Cable,1,11.95,09/23/19 11:02,"797 River St, Austin, TX 73301" +253794,USB-C Charging Cable,1,11.95,09/26/19 14:31,"516 1st St, Los Angeles, CA 90001" +253795,USB-C Charging Cable,1,11.95,09/17/19 13:52,"863 South St, Dallas, TX 75001" +253796,Bose SoundSport Headphones,1,99.99,09/07/19 08:12,"286 Lake St, New York City, NY 10001" +253797,AAA Batteries (4-pack),1,2.99,09/22/19 18:50,"879 River St, Atlanta, GA 30301" +253798,Apple Airpods Headphones,1,150,09/26/19 21:06,"414 2nd St, San Francisco, CA 94016" +253799,27in FHD Monitor,1,149.99,09/17/19 18:50,"133 11th St, New York City, NY 10001" +253800,27in FHD Monitor,1,149.99,09/29/19 22:37,"736 11th St, Dallas, TX 75001" +253801,Wired Headphones,1,11.99,09/15/19 17:42,"470 Jackson St, Los Angeles, CA 90001" +253802,27in 4K Gaming Monitor,1,389.99,09/05/19 22:31,"133 Forest St, Portland, OR 97035" +253803,AAA Batteries (4-pack),1,2.99,09/08/19 08:12,"205 6th St, Austin, TX 73301" +253804,AA Batteries (4-pack),1,3.84,09/18/19 17:02,"408 Adams St, Seattle, WA 98101" +253805,Apple Airpods Headphones,1,150,09/14/19 22:13,"529 Washington St, New York City, NY 10001" +253806,27in FHD Monitor,1,149.99,09/06/19 00:42,"309 Ridge St, Dallas, TX 75001" +253807,Lightning Charging Cable,1,14.95,09/15/19 21:33,"538 Wilson St, Los Angeles, CA 90001" +253808,USB-C Charging Cable,1,11.95,09/07/19 15:46,"524 11th St, San Francisco, CA 94016" +253809,AAA Batteries (4-pack),1,2.99,09/02/19 22:05,"783 10th St, San Francisco, CA 94016" +253810,iPhone,1,700,09/05/19 13:55,"892 13th St, Los Angeles, CA 90001" +253811,Flatscreen TV,1,300,09/30/19 18:23,"217 Cedar St, Boston, MA 02215" +253812,USB-C Charging Cable,1,11.95,09/02/19 09:18,"473 Pine St, New York City, NY 10001" +253813,AA Batteries (4-pack),1,3.84,09/17/19 18:35,"793 Maple St, Boston, MA 02215" +253814,Google Phone,1,600,09/28/19 17:24,"743 10th St, Los Angeles, CA 90001" +253815,Lightning Charging Cable,1,14.95,09/18/19 20:39,"782 Sunset St, Seattle, WA 98101" +253816,Bose SoundSport Headphones,1,99.99,09/30/19 11:54,"422 7th St, Los Angeles, CA 90001" +253817,iPhone,1,700,09/20/19 14:04,"434 Cherry St, Seattle, WA 98101" +253817,Lightning Charging Cable,1,14.95,09/20/19 14:04,"434 Cherry St, Seattle, WA 98101" +253817,Wired Headphones,1,11.99,09/20/19 14:04,"434 Cherry St, Seattle, WA 98101" +253818,27in 4K Gaming Monitor,1,389.99,09/27/19 03:24,"835 Adams St, San Francisco, CA 94016" +253819,ThinkPad Laptop,1,999.99,09/04/19 01:18,"686 River St, San Francisco, CA 94016" +253820,Bose SoundSport Headphones,1,99.99,09/18/19 09:23,"250 Johnson St, San Francisco, CA 94016" +253821,USB-C Charging Cable,2,11.95,09/06/19 10:18,"379 Highland St, Portland, OR 97035" +253822,AAA Batteries (4-pack),1,2.99,09/17/19 15:26,"353 1st St, San Francisco, CA 94016" +253823,34in Ultrawide Monitor,1,379.99,09/11/19 22:30,"331 Forest St, Los Angeles, CA 90001" +253824,Wired Headphones,1,11.99,09/09/19 19:09,"809 5th St, Atlanta, GA 30301" +253825,USB-C Charging Cable,1,11.95,09/02/19 13:04,"261 Wilson St, Austin, TX 73301" +253826,AA Batteries (4-pack),1,3.84,09/24/19 21:49,"296 West St, San Francisco, CA 94016" +253827,USB-C Charging Cable,1,11.95,09/21/19 00:23,"945 4th St, Boston, MA 02215" +253828,USB-C Charging Cable,1,11.95,09/21/19 13:51,"354 9th St, Portland, OR 97035" +253829,AA Batteries (4-pack),1,3.84,09/10/19 20:34,"784 5th St, San Francisco, CA 94016" +253830,20in Monitor,1,109.99,09/17/19 10:19,"822 Dogwood St, San Francisco, CA 94016" +253831,Lightning Charging Cable,1,14.95,09/13/19 08:03,"797 Chestnut St, Atlanta, GA 30301" +253832,27in 4K Gaming Monitor,1,389.99,09/21/19 23:43,"759 7th St, Dallas, TX 75001" +253833,20in Monitor,1,109.99,09/08/19 13:04,"336 Hill St, Portland, ME 04101" +253834,AAA Batteries (4-pack),2,2.99,09/15/19 16:07,"991 Jefferson St, Los Angeles, CA 90001" +253835,AA Batteries (4-pack),1,3.84,09/28/19 19:22,"512 Lake St, Dallas, TX 75001" +253836,Vareebadd Phone,1,400,09/22/19 16:14,"880 North St, Boston, MA 02215" +253837,AAA Batteries (4-pack),3,2.99,09/08/19 16:50,"886 10th St, Los Angeles, CA 90001" +253838,Apple Airpods Headphones,1,150,09/05/19 13:57,"595 Willow St, Dallas, TX 75001" +253839,AA Batteries (4-pack),1,3.84,09/03/19 23:36,"285 Forest St, Portland, OR 97035" +253840,Bose SoundSport Headphones,1,99.99,09/15/19 22:05,"534 5th St, Dallas, TX 75001" +253841,Google Phone,1,600,09/23/19 20:37,"37 Chestnut St, Atlanta, GA 30301" +253842,Wired Headphones,1,11.99,09/10/19 13:44,"5 Cherry St, Seattle, WA 98101" +253843,USB-C Charging Cable,1,11.95,09/15/19 21:51,"865 Willow St, Los Angeles, CA 90001" +253844,Apple Airpods Headphones,1,150,09/29/19 18:38,"168 Highland St, Dallas, TX 75001" +253845,34in Ultrawide Monitor,1,379.99,09/09/19 19:56,"619 Hill St, Austin, TX 73301" +253846,USB-C Charging Cable,1,11.95,09/25/19 19:31,"158 Lake St, Los Angeles, CA 90001" +253847,iPhone,1,700,09/20/19 08:27,"12 Pine St, San Francisco, CA 94016" +253847,Apple Airpods Headphones,1,150,09/20/19 08:27,"12 Pine St, San Francisco, CA 94016" +253848,Wired Headphones,1,11.99,09/24/19 12:53,"567 Highland St, Dallas, TX 75001" +253849,Wired Headphones,1,11.99,09/01/19 21:12,"409 9th St, Boston, MA 02215" +253850,Bose SoundSport Headphones,1,99.99,09/28/19 20:36,"488 Pine St, San Francisco, CA 94016" +253851,AA Batteries (4-pack),1,3.84,09/19/19 20:41,"423 Pine St, New York City, NY 10001" +253852,AAA Batteries (4-pack),1,2.99,09/17/19 20:20,"386 Hill St, Seattle, WA 98101" +253853,Lightning Charging Cable,1,14.95,09/11/19 17:41,"167 South St, Austin, TX 73301" +253854,AA Batteries (4-pack),1,3.84,09/14/19 15:58,"86 10th St, San Francisco, CA 94016" +253855,Apple Airpods Headphones,1,150,09/14/19 02:47,"133 14th St, Boston, MA 02215" +253856,USB-C Charging Cable,2,11.95,09/06/19 22:28,"709 7th St, Los Angeles, CA 90001" +253857,AA Batteries (4-pack),1,3.84,09/30/19 08:23,"515 10th St, Los Angeles, CA 90001" +253858,Lightning Charging Cable,1,14.95,09/11/19 17:36,"287 Lake St, Portland, OR 97035" +253859,AA Batteries (4-pack),1,3.84,09/28/19 22:03,"906 Ridge St, Austin, TX 73301" +253860,USB-C Charging Cable,1,11.95,09/10/19 06:56,"80 Chestnut St, Dallas, TX 75001" +253861,Flatscreen TV,1,300,09/24/19 08:23,"270 Willow St, Boston, MA 02215" +253862,Wired Headphones,1,11.99,09/25/19 09:21,"27 11th St, Los Angeles, CA 90001" +253863,AA Batteries (4-pack),1,3.84,09/07/19 15:22,"436 Sunset St, Los Angeles, CA 90001" +253864,Wired Headphones,1,11.99,09/17/19 13:51,"812 Hill St, Portland, ME 04101" +253865,27in FHD Monitor,1,149.99,09/22/19 18:19,"360 Dogwood St, Los Angeles, CA 90001" +253866,AAA Batteries (4-pack),1,2.99,09/30/19 16:03,"231 11th St, Seattle, WA 98101" +253867,Wired Headphones,2,11.99,09/23/19 15:02,"155 River St, San Francisco, CA 94016" +253868,AAA Batteries (4-pack),1,2.99,09/20/19 09:10,"107 Hill St, Atlanta, GA 30301" +253869,USB-C Charging Cable,1,11.95,10/01/19 00:58,"440 South St, Boston, MA 02215" +253870,AAA Batteries (4-pack),1,2.99,09/17/19 19:06,"110 Center St, Los Angeles, CA 90001" +253871,Lightning Charging Cable,1,14.95,09/26/19 15:05,"119 12th St, New York City, NY 10001" +253872,Flatscreen TV,1,300,09/10/19 21:04,"372 West St, Los Angeles, CA 90001" +253873,Wired Headphones,1,11.99,09/10/19 13:07,"292 Hill St, San Francisco, CA 94016" +253874,Lightning Charging Cable,1,14.95,09/23/19 17:55,"938 Church St, New York City, NY 10001" +253875,AAA Batteries (4-pack),1,2.99,09/07/19 09:05,"887 Lake St, San Francisco, CA 94016" +253876,AAA Batteries (4-pack),1,2.99,09/19/19 08:01,"781 Spruce St, Atlanta, GA 30301" +253877,Google Phone,1,600,09/13/19 18:11,"295 Maple St, San Francisco, CA 94016" +253878,Lightning Charging Cable,1,14.95,09/27/19 09:34,"227 Johnson St, Portland, ME 04101" +253879,AAA Batteries (4-pack),3,2.99,09/26/19 19:40,"467 Jefferson St, Los Angeles, CA 90001" +253880,USB-C Charging Cable,1,11.95,09/09/19 23:57,"723 Cedar St, Los Angeles, CA 90001" +253881,USB-C Charging Cable,2,11.95,09/05/19 19:41,"560 Dogwood St, San Francisco, CA 94016" +253882,iPhone,1,700,09/30/19 23:38,"87 Lakeview St, Los Angeles, CA 90001" +253883,AAA Batteries (4-pack),1,2.99,09/14/19 19:50,"886 Johnson St, Dallas, TX 75001" +253884,USB-C Charging Cable,2,11.95,09/08/19 08:24,"598 Maple St, San Francisco, CA 94016" +253885,Apple Airpods Headphones,1,150,09/12/19 11:41,"438 Lake St, Los Angeles, CA 90001" +253886,AA Batteries (4-pack),3,3.84,09/27/19 13:39,"953 2nd St, New York City, NY 10001" +253887,AA Batteries (4-pack),1,3.84,09/20/19 02:19,"9 Johnson St, San Francisco, CA 94016" +253888,AA Batteries (4-pack),2,3.84,09/20/19 08:23,"608 Hill St, Atlanta, GA 30301" +253889,27in FHD Monitor,1,149.99,09/21/19 11:25,"214 8th St, San Francisco, CA 94016" +253890,Lightning Charging Cable,2,14.95,09/18/19 16:14,"297 Elm St, Boston, MA 02215" +253891,Google Phone,1,600,09/26/19 15:26,"65 North St, New York City, NY 10001" +253892,USB-C Charging Cable,1,11.95,09/08/19 01:19,"725 Elm St, Los Angeles, CA 90001" +253893,Bose SoundSport Headphones,1,99.99,09/20/19 21:01,"636 Adams St, San Francisco, CA 94016" +253894,20in Monitor,1,109.99,09/09/19 02:44,"542 14th St, New York City, NY 10001" +253895,Wired Headphones,1,11.99,09/17/19 09:45,"545 11th St, Los Angeles, CA 90001" +253896,Flatscreen TV,1,300,09/02/19 14:27,"181 6th St, Boston, MA 02215" +253897,Wired Headphones,1,11.99,09/08/19 11:44,"310 13th St, Portland, OR 97035" +253898,USB-C Charging Cable,1,11.95,09/22/19 17:47,"567 Pine St, Dallas, TX 75001" +253899,USB-C Charging Cable,1,11.95,09/26/19 07:38,"670 Johnson St, Atlanta, GA 30301" +253900,USB-C Charging Cable,1,11.95,09/11/19 08:26,"188 2nd St, Los Angeles, CA 90001" +253901,Bose SoundSport Headphones,1,99.99,09/15/19 00:09,"743 Ridge St, Boston, MA 02215" +253902,AAA Batteries (4-pack),1,2.99,09/28/19 10:28,"233 Center St, Dallas, TX 75001" +253903,27in 4K Gaming Monitor,1,389.99,09/27/19 22:09,"755 Wilson St, San Francisco, CA 94016" +253904,Google Phone,1,600,09/26/19 13:39,"642 Main St, San Francisco, CA 94016" +253905,27in FHD Monitor,1,149.99,09/26/19 19:41,"304 Madison St, Los Angeles, CA 90001" +253906,AA Batteries (4-pack),1,3.84,09/19/19 20:53,"752 Wilson St, Dallas, TX 75001" +253907,Wired Headphones,1,11.99,09/11/19 21:19,"533 Elm St, Austin, TX 73301" +253908,Apple Airpods Headphones,1,150,09/28/19 17:55,"633 4th St, Seattle, WA 98101" +253909,Vareebadd Phone,1,400,09/15/19 18:02,"697 12th St, New York City, NY 10001" +253910,Lightning Charging Cable,1,14.95,09/13/19 08:00,"50 Chestnut St, Los Angeles, CA 90001" +253911,Wired Headphones,1,11.99,09/06/19 20:32,"142 Jackson St, Atlanta, GA 30301" +253912,Flatscreen TV,1,300,09/06/19 14:21,"181 Johnson St, Atlanta, GA 30301" +253913,Flatscreen TV,1,300,09/02/19 13:34,"30 5th St, San Francisco, CA 94016" +253914,34in Ultrawide Monitor,1,379.99,09/19/19 16:41,"799 Hickory St, Boston, MA 02215" +253915,AAA Batteries (4-pack),1,2.99,09/21/19 14:14,"957 North St, Los Angeles, CA 90001" +253916,USB-C Charging Cable,1,11.95,09/21/19 15:42,"412 6th St, New York City, NY 10001" +253917,USB-C Charging Cable,1,11.95,09/06/19 18:46,"157 Ridge St, Boston, MA 02215" +253918,Lightning Charging Cable,1,14.95,09/29/19 13:00,"708 Walnut St, San Francisco, CA 94016" +253919,34in Ultrawide Monitor,1,379.99,09/28/19 13:26,"102 Park St, San Francisco, CA 94016" +253920,Lightning Charging Cable,2,14.95,09/11/19 23:10,"573 Cherry St, New York City, NY 10001" +253921,AA Batteries (4-pack),1,3.84,09/30/19 12:45,"892 Pine St, New York City, NY 10001" +253922,Wired Headphones,1,11.99,09/06/19 17:52,"24 8th St, Boston, MA 02215" +253923,Wired Headphones,1,11.99,09/11/19 16:04,"111 Cherry St, San Francisco, CA 94016" +253924,iPhone,1,700,09/20/19 20:00,"340 Elm St, Seattle, WA 98101" +253925,20in Monitor,1,109.99,09/01/19 07:01,"226 4th St, Seattle, WA 98101" +253926,27in FHD Monitor,1,149.99,09/16/19 12:52,"6 North St, Boston, MA 02215" +253927,iPhone,1,700,09/14/19 14:21,"370 7th St, San Francisco, CA 94016" +253928,34in Ultrawide Monitor,1,379.99,09/05/19 17:25,"756 Jefferson St, Boston, MA 02215" +253929,Lightning Charging Cable,1,14.95,09/19/19 12:17,"37 12th St, Austin, TX 73301" +253930,Lightning Charging Cable,2,14.95,09/19/19 11:02,"953 Dogwood St, Atlanta, GA 30301" +253931,AA Batteries (4-pack),2,3.84,09/18/19 11:30,"414 Adams St, Seattle, WA 98101" +253932,AA Batteries (4-pack),1,3.84,09/01/19 10:24,"834 Hickory St, Boston, MA 02215" +253933,Wired Headphones,1,11.99,09/30/19 05:13,"754 Pine St, New York City, NY 10001" +253934,Apple Airpods Headphones,1,150,09/16/19 17:37,"758 Hill St, Dallas, TX 75001" +253935,27in FHD Monitor,1,149.99,09/26/19 08:12,"417 7th St, San Francisco, CA 94016" +253936,20in Monitor,1,109.99,09/13/19 23:43,"945 North St, Seattle, WA 98101" +253937,Lightning Charging Cable,1,14.95,09/01/19 15:03,"753 5th St, Seattle, WA 98101" +253938,AAA Batteries (4-pack),3,2.99,09/13/19 10:08,"542 Maple St, San Francisco, CA 94016" +253939,Google Phone,1,600,09/23/19 17:33,"277 Cherry St, San Francisco, CA 94016" +253939,Bose SoundSport Headphones,1,99.99,09/23/19 17:33,"277 Cherry St, San Francisco, CA 94016" +253940,Apple Airpods Headphones,1,150,09/09/19 21:54,"437 Walnut St, San Francisco, CA 94016" +253941,Wired Headphones,1,11.99,09/10/19 10:32,"749 2nd St, Atlanta, GA 30301" +253942,AAA Batteries (4-pack),1,2.99,09/04/19 16:07,"683 Center St, Dallas, TX 75001" +253943,iPhone,1,700,09/08/19 19:50,"399 River St, Los Angeles, CA 90001" +253944,ThinkPad Laptop,1,999.99,09/07/19 19:44,"457 8th St, Seattle, WA 98101" +253945,27in FHD Monitor,1,149.99,09/10/19 10:22,"733 2nd St, Atlanta, GA 30301" +253946,Apple Airpods Headphones,1,150,09/01/19 16:59,"680 7th St, Los Angeles, CA 90001" +253947,Lightning Charging Cable,1,14.95,09/11/19 04:23,"104 13th St, Los Angeles, CA 90001" +253948,USB-C Charging Cable,1,11.95,09/02/19 14:54,"292 Jackson St, San Francisco, CA 94016" +253949,AA Batteries (4-pack),1,3.84,09/27/19 19:09,"181 Walnut St, San Francisco, CA 94016" +,,,,, +253950,AA Batteries (4-pack),1,3.84,09/09/19 19:24,"632 12th St, Portland, ME 04101" +253951,USB-C Charging Cable,1,11.95,09/29/19 11:40,"936 10th St, Dallas, TX 75001" +253952,Lightning Charging Cable,1,14.95,09/16/19 09:35,"503 Maple St, Dallas, TX 75001" +253953,34in Ultrawide Monitor,1,379.99,09/09/19 13:57,"29 River St, Los Angeles, CA 90001" +253954,AAA Batteries (4-pack),1,2.99,09/26/19 18:36,"305 West St, Dallas, TX 75001" +253955,Lightning Charging Cable,1,14.95,09/28/19 18:01,"577 Church St, New York City, NY 10001" +253956,27in 4K Gaming Monitor,1,389.99,09/19/19 20:14,"377 Jefferson St, Austin, TX 73301" +253957,AA Batteries (4-pack),1,3.84,09/14/19 10:54,"827 Jackson St, San Francisco, CA 94016" +253958,Lightning Charging Cable,1,14.95,09/02/19 21:47,"201 Hill St, Boston, MA 02215" +253959,AA Batteries (4-pack),1,3.84,09/24/19 09:44,"335 Washington St, Boston, MA 02215" +253960,20in Monitor,1,109.99,09/26/19 15:24,"491 Cherry St, San Francisco, CA 94016" +253961,USB-C Charging Cable,1,11.95,09/06/19 11:22,"492 Jefferson St, San Francisco, CA 94016" +253962,Flatscreen TV,1,300,09/05/19 15:15,"208 Spruce St, Los Angeles, CA 90001" +253963,Bose SoundSport Headphones,1,99.99,09/28/19 23:25,"156 West St, Atlanta, GA 30301" +253964,Google Phone,1,600,09/16/19 10:06,"429 Dogwood St, New York City, NY 10001" +253965,Google Phone,1,600,09/15/19 21:39,"400 4th St, San Francisco, CA 94016" +253966,27in FHD Monitor,1,149.99,09/08/19 10:41,"976 Johnson St, Los Angeles, CA 90001" +253967,AA Batteries (4-pack),1,3.84,09/07/19 19:17,"128 1st St, New York City, NY 10001" +253968,Apple Airpods Headphones,1,150,09/09/19 10:30,"322 Wilson St, Portland, OR 97035" +253969,27in 4K Gaming Monitor,1,389.99,09/11/19 12:59,"171 4th St, Boston, MA 02215" +253970,AAA Batteries (4-pack),3,2.99,09/01/19 19:26,"335 Wilson St, Dallas, TX 75001" +253971,27in 4K Gaming Monitor,1,389.99,09/30/19 20:43,"706 Highland St, Seattle, WA 98101" +253972,AA Batteries (4-pack),1,3.84,09/30/19 11:05,"706 Jefferson St, Los Angeles, CA 90001" +253973,27in FHD Monitor,1,149.99,09/03/19 12:14,"945 Ridge St, Dallas, TX 75001" +253974,Lightning Charging Cable,1,14.95,09/21/19 12:24,"593 5th St, San Francisco, CA 94016" +253975,AAA Batteries (4-pack),1,2.99,09/23/19 19:05,"242 6th St, Dallas, TX 75001" +253976,Lightning Charging Cable,1,14.95,09/21/19 16:13,"138 Spruce St, Atlanta, GA 30301" +253977,27in FHD Monitor,1,149.99,09/30/19 17:10,"472 Maple St, San Francisco, CA 94016" +253978,Flatscreen TV,1,300,09/22/19 13:39,"836 4th St, San Francisco, CA 94016" +253979,Bose SoundSport Headphones,1,99.99,09/07/19 17:58,"58 Washington St, San Francisco, CA 94016" +253980,Lightning Charging Cable,1,14.95,09/16/19 08:35,"432 Church St, Portland, OR 97035" +253981,USB-C Charging Cable,1,11.95,09/20/19 20:55,"376 Hill St, Los Angeles, CA 90001" +253982,Apple Airpods Headphones,1,150,09/03/19 18:37,"851 Adams St, Boston, MA 02215" +253983,AA Batteries (4-pack),1,3.84,09/10/19 09:09,"277 6th St, San Francisco, CA 94016" +253984,iPhone,1,700,09/18/19 20:04,"576 Lake St, Atlanta, GA 30301" +253984,Apple Airpods Headphones,1,150,09/18/19 20:04,"576 Lake St, Atlanta, GA 30301" +253985,27in FHD Monitor,1,149.99,09/22/19 20:55,"823 Adams St, San Francisco, CA 94016" +253986,Lightning Charging Cable,1,14.95,09/29/19 18:50,"260 8th St, Boston, MA 02215" +253987,Macbook Pro Laptop,1,1700,09/11/19 22:19,"781 5th St, Dallas, TX 75001" +253988,Lightning Charging Cable,1,14.95,09/04/19 21:28,"195 13th St, Seattle, WA 98101" +253989,AA Batteries (4-pack),1,3.84,09/13/19 16:11,"424 Forest St, Austin, TX 73301" +253990,AA Batteries (4-pack),1,3.84,09/13/19 21:16,"285 Johnson St, San Francisco, CA 94016" +253991,27in 4K Gaming Monitor,1,389.99,09/09/19 10:43,"164 Ridge St, San Francisco, CA 94016" +253992,Wired Headphones,2,11.99,09/01/19 17:41,"645 Hill St, Dallas, TX 75001" +,,,,, +253993,AAA Batteries (4-pack),2,2.99,09/13/19 15:44,"513 Johnson St, Atlanta, GA 30301" +253994,Wired Headphones,1,11.99,09/25/19 12:15,"680 Cedar St, San Francisco, CA 94016" +253995,Lightning Charging Cable,1,14.95,09/02/19 11:42,"251 9th St, San Francisco, CA 94016" +253996,AAA Batteries (4-pack),1,2.99,09/15/19 17:34,"652 14th St, Portland, OR 97035" +253997,Bose SoundSport Headphones,1,99.99,09/07/19 17:55,"886 Hill St, Los Angeles, CA 90001" +253998,iPhone,1,700,09/30/19 23:36,"532 6th St, San Francisco, CA 94016" +253999,Macbook Pro Laptop,1,1700,09/11/19 09:09,"546 6th St, New York City, NY 10001" +254000,Lightning Charging Cable,1,14.95,09/17/19 10:53,"454 11th St, San Francisco, CA 94016" +254001,AA Batteries (4-pack),1,3.84,09/29/19 14:32,"340 10th St, Austin, TX 73301" +254002,AAA Batteries (4-pack),2,2.99,09/20/19 00:04,"728 8th St, Los Angeles, CA 90001" +254003,Lightning Charging Cable,1,14.95,09/16/19 16:52,"829 9th St, Los Angeles, CA 90001" +254004,USB-C Charging Cable,4,11.95,09/29/19 16:32,"522 5th St, Austin, TX 73301" +254005,Lightning Charging Cable,1,14.95,09/17/19 16:38,"869 Ridge St, Portland, OR 97035" +254006,iPhone,1,700,09/14/19 10:56,"169 9th St, Boston, MA 02215" +254006,Wired Headphones,1,11.99,09/14/19 10:56,"169 9th St, Boston, MA 02215" +254007,AA Batteries (4-pack),1,3.84,09/25/19 12:49,"192 Maple St, Atlanta, GA 30301" +254008,34in Ultrawide Monitor,1,379.99,09/04/19 23:42,"367 13th St, San Francisco, CA 94016" +254009,Wired Headphones,1,11.99,09/24/19 16:31,"416 Walnut St, Austin, TX 73301" +254010,USB-C Charging Cable,2,11.95,09/04/19 22:23,"493 Park St, Los Angeles, CA 90001" +254011,USB-C Charging Cable,1,11.95,09/30/19 21:09,"633 Main St, San Francisco, CA 94016" +254012,Google Phone,1,600,09/27/19 23:29,"53 8th St, Portland, OR 97035" +254013,Bose SoundSport Headphones,1,99.99,09/25/19 12:34,"177 Lake St, Boston, MA 02215" +254014,USB-C Charging Cable,1,11.95,09/23/19 11:16,"357 Washington St, San Francisco, CA 94016" +254015,USB-C Charging Cable,1,11.95,09/07/19 00:35,"527 Meadow St, Portland, OR 97035" +254016,Lightning Charging Cable,1,14.95,09/18/19 10:51,"137 Willow St, Los Angeles, CA 90001" +254017,Lightning Charging Cable,1,14.95,09/21/19 17:36,"974 Johnson St, San Francisco, CA 94016" +254018,Lightning Charging Cable,1,14.95,09/27/19 17:36,"818 Jackson St, San Francisco, CA 94016" +254019,Macbook Pro Laptop,1,1700,09/25/19 01:13,"864 Pine St, San Francisco, CA 94016" +254020,USB-C Charging Cable,1,11.95,09/14/19 18:23,"314 Meadow St, Atlanta, GA 30301" +254021,ThinkPad Laptop,1,999.99,09/23/19 20:56,"214 10th St, San Francisco, CA 94016" +254022,AAA Batteries (4-pack),1,2.99,09/24/19 23:12,"610 Wilson St, Los Angeles, CA 90001" +254023,Google Phone,1,600,09/09/19 12:59,"778 Cedar St, San Francisco, CA 94016" +254023,USB-C Charging Cable,1,11.95,09/09/19 12:59,"778 Cedar St, San Francisco, CA 94016" +254024,Lightning Charging Cable,2,14.95,09/16/19 18:32,"130 10th St, Los Angeles, CA 90001" +254025,iPhone,1,700,09/07/19 21:26,"228 Lakeview St, Dallas, TX 75001" +254026,20in Monitor,1,109.99,09/13/19 10:21,"463 Jackson St, Austin, TX 73301" +254027,Wired Headphones,1,11.99,09/30/19 16:51,"112 6th St, Dallas, TX 75001" +254028,Wired Headphones,1,11.99,09/17/19 18:52,"483 Meadow St, San Francisco, CA 94016" +254029,AAA Batteries (4-pack),2,2.99,09/19/19 15:10,"123 13th St, Seattle, WA 98101" +254030,Bose SoundSport Headphones,1,99.99,09/30/19 13:07,"714 1st St, San Francisco, CA 94016" +254031,AA Batteries (4-pack),3,3.84,09/26/19 12:29,"816 Dogwood St, Atlanta, GA 30301" +254032,USB-C Charging Cable,1,11.95,09/18/19 21:25,"351 Adams St, Dallas, TX 75001" +254033,Bose SoundSport Headphones,1,99.99,09/11/19 10:07,"374 Lakeview St, New York City, NY 10001" +254034,27in 4K Gaming Monitor,1,389.99,09/03/19 11:27,"295 Willow St, Los Angeles, CA 90001" +254035,AAA Batteries (4-pack),3,2.99,09/08/19 21:15,"539 North St, Portland, OR 97035" +254036,Bose SoundSport Headphones,1,99.99,09/10/19 13:01,"20 11th St, Los Angeles, CA 90001" +254037,USB-C Charging Cable,1,11.95,09/21/19 22:19,"42 Cedar St, San Francisco, CA 94016" +254038,USB-C Charging Cable,1,11.95,09/05/19 11:35,"458 Cherry St, Boston, MA 02215" +254039,AA Batteries (4-pack),2,3.84,09/29/19 11:02,"744 Johnson St, New York City, NY 10001" +254040,Bose SoundSport Headphones,1,99.99,09/21/19 19:25,"566 9th St, New York City, NY 10001" +254041,AA Batteries (4-pack),1,3.84,09/10/19 15:08,"566 2nd St, Austin, TX 73301" +254042,iPhone,1,700,09/21/19 18:29,"471 5th St, Atlanta, GA 30301" +254042,Wired Headphones,1,11.99,09/21/19 18:29,"471 5th St, Atlanta, GA 30301" +254043,USB-C Charging Cable,1,11.95,09/26/19 14:45,"129 Pine St, Dallas, TX 75001" +254044,Wired Headphones,1,11.99,09/28/19 06:33,"180 Main St, Austin, TX 73301" +254044,AAA Batteries (4-pack),1,2.99,09/28/19 06:33,"180 Main St, Austin, TX 73301" +254045,Wired Headphones,1,11.99,09/10/19 19:18,"810 North St, Boston, MA 02215" +254046,Flatscreen TV,1,300,09/26/19 20:28,"696 Ridge St, Los Angeles, CA 90001" +254047,Lightning Charging Cable,1,14.95,09/09/19 12:20,"529 North St, San Francisco, CA 94016" +254048,Apple Airpods Headphones,1,150,09/17/19 14:32,"704 1st St, Seattle, WA 98101" +254049,Bose SoundSport Headphones,1,99.99,09/14/19 15:24,"685 Lake St, New York City, NY 10001" +254050,Apple Airpods Headphones,1,150,09/24/19 18:06,"882 6th St, Boston, MA 02215" +254051,USB-C Charging Cable,1,11.95,09/03/19 15:08,"972 Center St, San Francisco, CA 94016" +254052,AAA Batteries (4-pack),2,2.99,09/20/19 14:53,"502 Maple St, Boston, MA 02215" +254053,AA Batteries (4-pack),1,3.84,09/02/19 10:25,"943 Elm St, San Francisco, CA 94016" +254054,AAA Batteries (4-pack),1,2.99,09/17/19 21:25,"681 Center St, San Francisco, CA 94016" +254055,Flatscreen TV,1,300,09/22/19 16:58,"419 11th St, Los Angeles, CA 90001" +254056,Lightning Charging Cable,1,14.95,09/25/19 15:31,"827 River St, San Francisco, CA 94016" +254057,20in Monitor,1,109.99,09/18/19 10:36,"256 13th St, Los Angeles, CA 90001" +254058,Wired Headphones,1,11.99,09/04/19 16:23,"671 Johnson St, New York City, NY 10001" +254059,Wired Headphones,1,11.99,09/03/19 12:38,"737 Forest St, New York City, NY 10001" +254060,Lightning Charging Cable,1,14.95,09/21/19 16:16,"170 Madison St, San Francisco, CA 94016" +254061,iPhone,1,700,09/16/19 12:13,"741 Main St, San Francisco, CA 94016" +254062,Wired Headphones,1,11.99,09/27/19 06:14,"115 6th St, Portland, OR 97035" +254063,iPhone,1,700,09/19/19 10:53,"358 Forest St, Dallas, TX 75001" +254063,Lightning Charging Cable,1,14.95,09/19/19 10:53,"358 Forest St, Dallas, TX 75001" +254064,Flatscreen TV,1,300,09/28/19 10:45,"748 Madison St, Atlanta, GA 30301" +254065,Macbook Pro Laptop,1,1700,09/02/19 17:32,"932 Park St, Los Angeles, CA 90001" +254066,27in 4K Gaming Monitor,1,389.99,09/11/19 19:15,"309 Lincoln St, San Francisco, CA 94016" +254067,USB-C Charging Cable,1,11.95,09/17/19 13:59,"230 South St, San Francisco, CA 94016" +254068,27in 4K Gaming Monitor,1,389.99,09/05/19 21:02,"863 Cherry St, Seattle, WA 98101" +254069,Flatscreen TV,1,300,09/27/19 18:10,"27 Cedar St, Los Angeles, CA 90001" +254070,Lightning Charging Cable,1,14.95,09/12/19 12:59,"630 Maple St, Dallas, TX 75001" +254071,Lightning Charging Cable,1,14.95,09/10/19 19:07,"402 River St, Seattle, WA 98101" +254072,20in Monitor,1,109.99,09/12/19 01:35,"593 Maple St, San Francisco, CA 94016" +254073,Bose SoundSport Headphones,1,99.99,09/09/19 16:12,"301 Church St, San Francisco, CA 94016" +254074,AAA Batteries (4-pack),1,2.99,09/05/19 12:09,"276 13th St, New York City, NY 10001" +254075,20in Monitor,1,109.99,09/18/19 21:21,"668 Center St, San Francisco, CA 94016" +254076,USB-C Charging Cable,1,11.95,09/14/19 04:57,"350 Spruce St, Los Angeles, CA 90001" +254077,Wired Headphones,1,11.99,09/20/19 09:52,"153 Adams St, Boston, MA 02215" +254078,34in Ultrawide Monitor,1,379.99,09/24/19 05:03,"673 South St, New York City, NY 10001" +254079,27in 4K Gaming Monitor,1,389.99,09/23/19 11:42,"539 4th St, Portland, ME 04101" +254080,AA Batteries (4-pack),1,3.84,09/23/19 11:17,"104 Willow St, San Francisco, CA 94016" +254081,AAA Batteries (4-pack),2,2.99,09/19/19 09:25,"79 10th St, Los Angeles, CA 90001" +254082,Wired Headphones,1,11.99,09/15/19 11:32,"584 Lincoln St, San Francisco, CA 94016" +254083,AAA Batteries (4-pack),1,2.99,09/30/19 12:16,"682 Madison St, New York City, NY 10001" +254084,Bose SoundSport Headphones,1,99.99,09/06/19 14:41,"560 5th St, Boston, MA 02215" +254085,AAA Batteries (4-pack),3,2.99,09/28/19 13:22,"856 Wilson St, New York City, NY 10001" +254086,Wired Headphones,1,11.99,09/21/19 14:49,"371 Madison St, San Francisco, CA 94016" +254087,Flatscreen TV,1,300,09/09/19 12:37,"198 14th St, New York City, NY 10001" +254088,USB-C Charging Cable,1,11.95,09/03/19 22:43,"602 South St, San Francisco, CA 94016" +254089,Lightning Charging Cable,1,14.95,09/02/19 00:47,"673 Wilson St, Los Angeles, CA 90001" +254090,Lightning Charging Cable,1,14.95,09/07/19 08:47,"982 Walnut St, Boston, MA 02215" +254091,Bose SoundSport Headphones,1,99.99,09/11/19 11:34,"428 Adams St, Seattle, WA 98101" +254092,Apple Airpods Headphones,1,150,09/09/19 13:22,"12 Lincoln St, San Francisco, CA 94016" +254093,Wired Headphones,2,11.99,09/10/19 21:58,"760 5th St, San Francisco, CA 94016" +254094,USB-C Charging Cable,1,11.95,09/09/19 15:04,"953 Jefferson St, San Francisco, CA 94016" +254095,Macbook Pro Laptop,1,1700,09/23/19 13:41,"227 Walnut St, New York City, NY 10001" +254096,34in Ultrawide Monitor,1,379.99,09/15/19 00:07,"276 Forest St, Atlanta, GA 30301" +254097,Wired Headphones,1,11.99,09/14/19 20:24,"649 Jackson St, Portland, OR 97035" +254098,Apple Airpods Headphones,1,150,09/05/19 15:00,"676 Church St, San Francisco, CA 94016" +254099,AAA Batteries (4-pack),1,2.99,09/18/19 00:09,"951 North St, Dallas, TX 75001" +254100,27in FHD Monitor,1,149.99,09/24/19 13:40,"722 Willow St, San Francisco, CA 94016" +254101,AAA Batteries (4-pack),2,2.99,09/05/19 21:53,"695 Chestnut St, Portland, OR 97035" +254102,AAA Batteries (4-pack),1,2.99,09/09/19 11:31,"527 Willow St, San Francisco, CA 94016" +254103,AAA Batteries (4-pack),1,2.99,09/06/19 16:48,"211 14th St, Seattle, WA 98101" +254104,27in FHD Monitor,1,149.99,09/26/19 19:46,"151 Willow St, Los Angeles, CA 90001" +254105,AAA Batteries (4-pack),1,2.99,09/10/19 16:48,"342 North St, New York City, NY 10001" +254106,27in FHD Monitor,1,149.99,09/24/19 13:06,"251 1st St, San Francisco, CA 94016" +254107,Apple Airpods Headphones,1,150,09/18/19 18:49,"820 Dogwood St, Los Angeles, CA 90001" +254108,AAA Batteries (4-pack),2,2.99,09/03/19 11:38,"403 8th St, San Francisco, CA 94016" +254108,Bose SoundSport Headphones,1,99.99,09/03/19 11:38,"403 8th St, San Francisco, CA 94016" +254109,34in Ultrawide Monitor,1,379.99,09/18/19 06:18,"319 Meadow St, New York City, NY 10001" +254110,27in 4K Gaming Monitor,1,389.99,09/14/19 11:29,"624 7th St, Los Angeles, CA 90001" +254111,AA Batteries (4-pack),2,3.84,09/19/19 07:17,"205 10th St, San Francisco, CA 94016" +254112,Apple Airpods Headphones,1,150,09/02/19 10:46,"978 4th St, Boston, MA 02215" +254113,Bose SoundSport Headphones,1,99.99,09/23/19 19:06,"529 Forest St, Los Angeles, CA 90001" +254114,Apple Airpods Headphones,1,150,09/12/19 19:32,"55 Maple St, Los Angeles, CA 90001" +254115,Lightning Charging Cable,1,14.95,09/14/19 22:04,"573 14th St, Dallas, TX 75001" +254116,Wired Headphones,1,11.99,09/24/19 23:06,"849 1st St, San Francisco, CA 94016" +254117,ThinkPad Laptop,1,999.99,09/12/19 13:15,"454 Forest St, Seattle, WA 98101" +254118,34in Ultrawide Monitor,1,379.99,09/07/19 18:01,"372 12th St, Dallas, TX 75001" +254119,AA Batteries (4-pack),1,3.84,09/10/19 11:13,"816 Jackson St, San Francisco, CA 94016" +254120,AA Batteries (4-pack),2,3.84,09/10/19 12:17,"241 7th St, San Francisco, CA 94016" +254121,Wired Headphones,1,11.99,09/10/19 11:29,"279 Adams St, Atlanta, GA 30301" +254122,AAA Batteries (4-pack),1,2.99,09/18/19 13:10,"54 West St, New York City, NY 10001" +254123,Wired Headphones,1,11.99,09/12/19 20:02,"423 9th St, Portland, OR 97035" +254124,AA Batteries (4-pack),1,3.84,09/27/19 15:25,"636 Jackson St, New York City, NY 10001" +254125,USB-C Charging Cable,1,11.95,09/29/19 17:10,"696 Willow St, Austin, TX 73301" +254126,Bose SoundSport Headphones,1,99.99,09/27/19 18:02,"346 River St, Dallas, TX 75001" +254127,Wired Headphones,1,11.99,09/17/19 13:47,"395 West St, Seattle, WA 98101" +254128,Bose SoundSport Headphones,1,99.99,09/01/19 09:55,"792 Forest St, Los Angeles, CA 90001" +254129,USB-C Charging Cable,1,11.95,09/15/19 15:23,"287 Ridge St, San Francisco, CA 94016" +254130,AAA Batteries (4-pack),2,2.99,09/11/19 11:49,"553 Park St, Boston, MA 02215" +254131,Vareebadd Phone,1,400,09/30/19 12:56,"774 Walnut St, Atlanta, GA 30301" +254131,Wired Headphones,1,11.99,09/30/19 12:56,"774 Walnut St, Atlanta, GA 30301" +254132,Wired Headphones,1,11.99,09/06/19 07:32,"260 Lincoln St, San Francisco, CA 94016" +254133,Lightning Charging Cable,1,14.95,09/20/19 18:32,"486 Lake St, Los Angeles, CA 90001" +254134,iPhone,1,700,09/02/19 04:56,"588 Park St, Atlanta, GA 30301" +254135,AAA Batteries (4-pack),1,2.99,09/27/19 20:45,"113 Elm St, San Francisco, CA 94016" +254136,USB-C Charging Cable,1,11.95,09/01/19 13:20,"8 Cherry St, New York City, NY 10001" +254137,Wired Headphones,2,11.99,09/12/19 08:43,"703 Adams St, San Francisco, CA 94016" +254138,Apple Airpods Headphones,1,150,09/21/19 15:39,"901 9th St, San Francisco, CA 94016" +254139,AAA Batteries (4-pack),1,2.99,09/16/19 20:51,"373 Adams St, New York City, NY 10001" +254140,AA Batteries (4-pack),1,3.84,09/07/19 10:16,"662 Dogwood St, Atlanta, GA 30301" +254141,Bose SoundSport Headphones,1,99.99,09/08/19 22:24,"814 7th St, New York City, NY 10001" +254142,Wired Headphones,1,11.99,09/08/19 11:58,"22 River St, Dallas, TX 75001" +254143,Apple Airpods Headphones,1,150,09/18/19 18:57,"707 West St, San Francisco, CA 94016" +254144,Google Phone,1,600,09/24/19 17:07,"27 North St, San Francisco, CA 94016" +254144,Wired Headphones,1,11.99,09/24/19 17:07,"27 North St, San Francisco, CA 94016" +254145,Apple Airpods Headphones,1,150,09/02/19 09:19,"966 11th St, Portland, ME 04101" +254146,Lightning Charging Cable,1,14.95,09/15/19 20:50,"132 6th St, Los Angeles, CA 90001" +254147,iPhone,1,700,09/25/19 20:33,"853 Main St, Los Angeles, CA 90001" +254148,Wired Headphones,1,11.99,09/19/19 21:00,"359 10th St, Boston, MA 02215" +254149,AAA Batteries (4-pack),1,2.99,09/15/19 08:18,"7 River St, New York City, NY 10001" +254150,Wired Headphones,1,11.99,09/26/19 14:11,"6 Lake St, Los Angeles, CA 90001" +254151,Lightning Charging Cable,1,14.95,09/10/19 14:47,"83 Walnut St, Portland, OR 97035" +254152,USB-C Charging Cable,1,11.95,09/24/19 08:06,"314 Maple St, San Francisco, CA 94016" +254153,AA Batteries (4-pack),1,3.84,09/06/19 11:31,"725 Lakeview St, Los Angeles, CA 90001" +254154,AA Batteries (4-pack),2,3.84,09/15/19 22:45,"6 Walnut St, Atlanta, GA 30301" +254155,Bose SoundSport Headphones,1,99.99,09/07/19 23:16,"506 West St, San Francisco, CA 94016" +254156,USB-C Charging Cable,1,11.95,09/22/19 13:35,"35 River St, New York City, NY 10001" +254157,27in 4K Gaming Monitor,1,389.99,09/18/19 19:11,"141 Center St, New York City, NY 10001" +254158,AAA Batteries (4-pack),2,2.99,09/12/19 22:13,"171 Sunset St, Austin, TX 73301" +254159,Bose SoundSport Headphones,1,99.99,09/21/19 10:45,"42 Madison St, New York City, NY 10001" +254160,USB-C Charging Cable,1,11.95,09/20/19 12:33,"834 Main St, Austin, TX 73301" +254161,USB-C Charging Cable,1,11.95,09/02/19 12:06,"966 Dogwood St, Boston, MA 02215" +254161,Bose SoundSport Headphones,1,99.99,09/02/19 12:06,"966 Dogwood St, Boston, MA 02215" +254162,Google Phone,1,600,09/11/19 17:36,"446 Johnson St, Portland, OR 97035" +254162,Bose SoundSport Headphones,1,99.99,09/11/19 17:36,"446 Johnson St, Portland, OR 97035" +254163,AA Batteries (4-pack),1,3.84,09/09/19 18:07,"151 Jefferson St, San Francisco, CA 94016" +254164,USB-C Charging Cable,1,11.95,09/19/19 11:47,"234 Ridge St, San Francisco, CA 94016" +254165,USB-C Charging Cable,1,11.95,09/10/19 14:52,"822 5th St, Boston, MA 02215" +254166,Lightning Charging Cable,1,14.95,09/02/19 21:52,"815 Johnson St, Los Angeles, CA 90001" +254167,USB-C Charging Cable,1,11.95,09/21/19 11:54,"571 Wilson St, Los Angeles, CA 90001" +254168,AA Batteries (4-pack),1,3.84,09/29/19 16:36,"759 West St, San Francisco, CA 94016" +254169,Bose SoundSport Headphones,1,99.99,09/04/19 21:51,"531 7th St, Atlanta, GA 30301" +254170,AAA Batteries (4-pack),2,2.99,09/25/19 15:54,"349 Highland St, New York City, NY 10001" +254171,Apple Airpods Headphones,1,150,09/06/19 20:45,"892 Johnson St, Los Angeles, CA 90001" +254172,34in Ultrawide Monitor,1,379.99,09/16/19 14:51,"422 7th St, New York City, NY 10001" +254173,Lightning Charging Cable,1,14.95,09/10/19 21:09,"226 11th St, San Francisco, CA 94016" +254174,27in FHD Monitor,1,149.99,09/05/19 09:11,"387 Jackson St, Atlanta, GA 30301" +254175,Lightning Charging Cable,1,14.95,09/21/19 15:54,"50 Washington St, Boston, MA 02215" +254176,Vareebadd Phone,1,400,09/15/19 22:20,"28 Cedar St, New York City, NY 10001" +254177,Lightning Charging Cable,1,14.95,09/08/19 14:43,"945 Cherry St, Portland, OR 97035" +254178,Wired Headphones,1,11.99,09/27/19 19:37,"423 4th St, San Francisco, CA 94016" +254179,Apple Airpods Headphones,1,150,09/28/19 12:06,"640 Jackson St, San Francisco, CA 94016" +254180,USB-C Charging Cable,1,11.95,09/08/19 00:13,"680 Maple St, Los Angeles, CA 90001" +254181,Lightning Charging Cable,1,14.95,09/06/19 08:52,"562 11th St, Boston, MA 02215" +254182,iPhone,1,700,09/11/19 15:37,"425 14th St, Atlanta, GA 30301" +254183,AA Batteries (4-pack),1,3.84,09/27/19 09:13,"504 Lake St, San Francisco, CA 94016" +254184,Lightning Charging Cable,1,14.95,09/27/19 11:50,"570 Hickory St, New York City, NY 10001" +254185,Flatscreen TV,1,300,09/29/19 17:49,"863 Walnut St, New York City, NY 10001" +254186,USB-C Charging Cable,1,11.95,09/20/19 12:16,"767 Pine St, Los Angeles, CA 90001" +254187,27in 4K Gaming Monitor,1,389.99,09/07/19 20:22,"289 Meadow St, San Francisco, CA 94016" +254188,27in FHD Monitor,1,149.99,09/04/19 10:02,"644 Madison St, San Francisco, CA 94016" +254189,USB-C Charging Cable,1,11.95,09/01/19 15:38,"83 12th St, San Francisco, CA 94016" +254190,AA Batteries (4-pack),3,3.84,09/07/19 10:50,"132 Lakeview St, Boston, MA 02215" +254191,AA Batteries (4-pack),2,3.84,09/15/19 21:08,"924 Washington St, Dallas, TX 75001" +254192,Lightning Charging Cable,1,14.95,09/28/19 17:30,"337 Hickory St, New York City, NY 10001" +254193,27in 4K Gaming Monitor,1,389.99,09/06/19 15:20,"399 Park St, San Francisco, CA 94016" +254194,AA Batteries (4-pack),2,3.84,09/21/19 23:46,"463 4th St, Seattle, WA 98101" +254195,Lightning Charging Cable,1,14.95,09/18/19 21:01,"863 12th St, Los Angeles, CA 90001" +254196,AA Batteries (4-pack),3,3.84,09/24/19 12:23,"58 Park St, Dallas, TX 75001" +254197,Wired Headphones,1,11.99,09/20/19 19:36,"557 Lakeview St, San Francisco, CA 94016" +254198,AAA Batteries (4-pack),1,2.99,09/04/19 19:17,"570 10th St, New York City, NY 10001" +254199,27in 4K Gaming Monitor,1,389.99,09/20/19 12:18,"894 Jackson St, San Francisco, CA 94016" +254200,ThinkPad Laptop,1,999.99,09/15/19 19:29,"478 Pine St, Boston, MA 02215" +254201,34in Ultrawide Monitor,1,379.99,09/04/19 11:08,"59 Johnson St, Portland, ME 04101" +254202,Macbook Pro Laptop,1,1700,09/14/19 19:38,"37 9th St, Portland, OR 97035" +254203,Lightning Charging Cable,1,14.95,09/12/19 19:03,"788 Park St, San Francisco, CA 94016" +254204,USB-C Charging Cable,1,11.95,09/27/19 14:28,"920 Wilson St, Portland, OR 97035" +254205,AAA Batteries (4-pack),1,2.99,09/10/19 15:15,"712 Park St, Boston, MA 02215" +254206,AA Batteries (4-pack),1,3.84,09/08/19 14:53,"82 West St, Dallas, TX 75001" +254207,27in 4K Gaming Monitor,1,389.99,09/01/19 14:10,"98 Dogwood St, Los Angeles, CA 90001" +254208,Lightning Charging Cable,1,14.95,09/29/19 23:26,"302 Washington St, Seattle, WA 98101" +254209,Wired Headphones,1,11.99,09/21/19 20:19,"105 Walnut St, Los Angeles, CA 90001" +254210,Bose SoundSport Headphones,1,99.99,09/20/19 09:43,"901 Lake St, Seattle, WA 98101" +254211,Wired Headphones,1,11.99,09/23/19 09:31,"606 Wilson St, San Francisco, CA 94016" +254212,AA Batteries (4-pack),3,3.84,09/26/19 22:56,"371 10th St, Seattle, WA 98101" +254213,USB-C Charging Cable,1,11.95,09/27/19 19:44,"895 Elm St, Portland, OR 97035" +254214,27in 4K Gaming Monitor,1,389.99,09/02/19 21:03,"286 9th St, San Francisco, CA 94016" +254215,LG Washing Machine,1,600.0,09/29/19 15:59,"929 10th St, Los Angeles, CA 90001" +254216,USB-C Charging Cable,1,11.95,09/08/19 09:40,"765 2nd St, Los Angeles, CA 90001" +254217,iPhone,1,700,09/27/19 04:39,"235 Center St, New York City, NY 10001" +254218,Wired Headphones,1,11.99,09/02/19 14:51,"642 2nd St, Portland, ME 04101" +254219,AA Batteries (4-pack),2,3.84,09/05/19 00:15,"648 Ridge St, San Francisco, CA 94016" +254220,USB-C Charging Cable,1,11.95,09/03/19 12:26,"321 Sunset St, Boston, MA 02215" +254220,USB-C Charging Cable,1,11.95,09/03/19 12:26,"321 Sunset St, Boston, MA 02215" +254221,USB-C Charging Cable,1,11.95,09/12/19 14:01,"177 Lakeview St, San Francisco, CA 94016" +254222,AAA Batteries (4-pack),1,2.99,09/29/19 21:33,"239 Main St, San Francisco, CA 94016" +254223,AAA Batteries (4-pack),1,2.99,09/24/19 00:32,"15 Hill St, Dallas, TX 75001" +254224,Apple Airpods Headphones,1,150,09/02/19 12:48,"148 Willow St, Portland, OR 97035" +254225,USB-C Charging Cable,1,11.95,09/25/19 17:43,"725 Center St, Dallas, TX 75001" +254226,AA Batteries (4-pack),3,3.84,09/28/19 08:32,"531 Main St, Dallas, TX 75001" +254227,27in 4K Gaming Monitor,1,389.99,09/17/19 19:10,"65 Lakeview St, San Francisco, CA 94016" +254228,Lightning Charging Cable,1,14.95,09/19/19 22:10,"859 11th St, Dallas, TX 75001" +254229,Macbook Pro Laptop,1,1700,09/07/19 13:22,"482 Washington St, Austin, TX 73301" +254230,34in Ultrawide Monitor,1,379.99,09/26/19 21:42,"335 5th St, San Francisco, CA 94016" +254231,USB-C Charging Cable,1,11.95,09/11/19 14:06,"547 Lake St, Boston, MA 02215" +254232,AAA Batteries (4-pack),1,2.99,09/08/19 09:00,"925 Walnut St, Los Angeles, CA 90001" +254233,ThinkPad Laptop,1,999.99,09/01/19 17:43,"251 Washington St, Boston, MA 02215" +254234,Apple Airpods Headphones,1,150,09/16/19 22:39,"960 Sunset St, Los Angeles, CA 90001" +254235,AAA Batteries (4-pack),1,2.99,09/27/19 13:07,"344 Lincoln St, Boston, MA 02215" +254236,AAA Batteries (4-pack),1,2.99,09/18/19 08:25,"136 Hill St, San Francisco, CA 94016" +,,,,, +254237,Wired Headphones,1,11.99,09/02/19 15:58,"717 1st St, Portland, ME 04101" +254238,AAA Batteries (4-pack),2,2.99,09/29/19 12:52,"682 8th St, San Francisco, CA 94016" +254239,Wired Headphones,1,11.99,09/10/19 21:16,"127 Ridge St, Boston, MA 02215" +254240,Wired Headphones,1,11.99,09/10/19 14:54,"694 Dogwood St, Los Angeles, CA 90001" +254241,Flatscreen TV,1,300,09/07/19 17:42,"680 11th St, San Francisco, CA 94016" +254242,USB-C Charging Cable,2,11.95,09/27/19 13:20,"93 11th St, New York City, NY 10001" +254243,LG Dryer,1,600.0,09/03/19 20:49,"346 Pine St, San Francisco, CA 94016" +254244,AAA Batteries (4-pack),1,2.99,09/30/19 01:32,"643 10th St, New York City, NY 10001" +254245,20in Monitor,1,109.99,09/04/19 14:58,"222 1st St, Boston, MA 02215" +254246,Vareebadd Phone,1,400,09/05/19 18:17,"639 1st St, Portland, OR 97035" +254247,Apple Airpods Headphones,1,150,09/18/19 14:44,"375 4th St, Portland, OR 97035" +254248,Bose SoundSport Headphones,1,99.99,09/11/19 09:57,"183 Lake St, Seattle, WA 98101" +254249,USB-C Charging Cable,2,11.95,09/22/19 17:56,"971 Church St, New York City, NY 10001" +254250,Apple Airpods Headphones,1,150,09/03/19 18:50,"610 Elm St, Atlanta, GA 30301" +254251,AA Batteries (4-pack),3,3.84,09/05/19 15:52,"431 Elm St, Austin, TX 73301" +254252,Wired Headphones,1,11.99,09/23/19 18:00,"958 1st St, Seattle, WA 98101" +254253,Google Phone,1,600,09/10/19 21:45,"352 Ridge St, San Francisco, CA 94016" +254254,AAA Batteries (4-pack),1,2.99,09/03/19 12:34,"566 4th St, Dallas, TX 75001" +254254,ThinkPad Laptop,1,999.99,09/03/19 12:34,"566 4th St, Dallas, TX 75001" +254255,AA Batteries (4-pack),1,3.84,09/25/19 11:15,"658 Lakeview St, New York City, NY 10001" +254256,Lightning Charging Cable,1,14.95,09/10/19 16:44,"913 Wilson St, New York City, NY 10001" +254257,Macbook Pro Laptop,1,1700,09/28/19 09:43,"551 11th St, Portland, OR 97035" +254258,27in 4K Gaming Monitor,1,389.99,09/01/19 22:32,"673 Dogwood St, San Francisco, CA 94016" +254259,27in FHD Monitor,1,149.99,09/22/19 11:39,"493 Washington St, Los Angeles, CA 90001" +254260,AA Batteries (4-pack),1,3.84,09/09/19 16:57,"597 Forest St, San Francisco, CA 94016" +254260,AA Batteries (4-pack),1,3.84,09/09/19 16:57,"597 Forest St, San Francisco, CA 94016" +254261,Apple Airpods Headphones,1,150,09/02/19 11:19,"562 Ridge St, San Francisco, CA 94016" +254262,Wired Headphones,1,11.99,09/01/19 06:21,"985 Center St, San Francisco, CA 94016" +254263,Bose SoundSport Headphones,1,99.99,09/19/19 16:54,"411 Willow St, New York City, NY 10001" +254264,Bose SoundSport Headphones,1,99.99,09/23/19 19:58,"876 14th St, Portland, OR 97035" +254265,34in Ultrawide Monitor,1,379.99,09/02/19 20:22,"559 Park St, New York City, NY 10001" +254266,Wired Headphones,1,11.99,09/18/19 19:53,"831 Sunset St, New York City, NY 10001" +254267,AAA Batteries (4-pack),1,2.99,09/17/19 22:38,"404 Ridge St, Seattle, WA 98101" +254268,AAA Batteries (4-pack),1,2.99,09/16/19 18:35,"88 Lake St, Seattle, WA 98101" +254269,34in Ultrawide Monitor,1,379.99,09/01/19 14:49,"718 Main St, Atlanta, GA 30301" +254270,USB-C Charging Cable,1,11.95,09/04/19 13:52,"998 2nd St, New York City, NY 10001" +254271,AA Batteries (4-pack),1,3.84,09/12/19 20:48,"307 Dogwood St, Austin, TX 73301" +254272,AAA Batteries (4-pack),2,2.99,09/07/19 16:28,"847 Lakeview St, San Francisco, CA 94016" +254273,Bose SoundSport Headphones,1,99.99,09/14/19 17:22,"405 8th St, New York City, NY 10001" +254274,Apple Airpods Headphones,1,150,09/28/19 15:11,"161 Washington St, Dallas, TX 75001" +254275,34in Ultrawide Monitor,1,379.99,09/13/19 20:10,"970 10th St, Atlanta, GA 30301" +254276,34in Ultrawide Monitor,1,379.99,09/07/19 18:03,"373 8th St, Austin, TX 73301" +254277,Google Phone,1,600,09/23/19 13:43,"577 Wilson St, San Francisco, CA 94016" +254277,AA Batteries (4-pack),1,3.84,09/23/19 13:43,"577 Wilson St, San Francisco, CA 94016" +254278,Wired Headphones,1,11.99,09/09/19 14:39,"122 Lakeview St, New York City, NY 10001" +254279,Lightning Charging Cable,1,14.95,09/12/19 09:45,"828 River St, San Francisco, CA 94016" +254280,LG Washing Machine,1,600.0,09/03/19 09:49,"454 Church St, San Francisco, CA 94016" +254281,AA Batteries (4-pack),1,3.84,09/02/19 14:23,"703 Dogwood St, Seattle, WA 98101" +254282,AA Batteries (4-pack),1,3.84,09/18/19 13:46,"70 Walnut St, San Francisco, CA 94016" +254283,27in FHD Monitor,1,149.99,09/24/19 18:10,"637 Washington St, Seattle, WA 98101" +254284,Bose SoundSport Headphones,1,99.99,09/20/19 14:44,"743 Highland St, Dallas, TX 75001" +254285,Lightning Charging Cable,1,14.95,09/22/19 20:14,"674 Johnson St, Portland, OR 97035" +254286,AAA Batteries (4-pack),1,2.99,09/11/19 18:07,"355 4th St, San Francisco, CA 94016" +254287,Flatscreen TV,1,300,09/07/19 10:31,"332 Willow St, Portland, OR 97035" +254288,Wired Headphones,1,11.99,09/10/19 22:38,"921 Elm St, San Francisco, CA 94016" +254289,Apple Airpods Headphones,1,150,09/01/19 17:28,"466 Ridge St, Los Angeles, CA 90001" +254290,ThinkPad Laptop,1,999.99,09/18/19 17:02,"129 6th St, Boston, MA 02215" +254291,Lightning Charging Cable,2,14.95,09/22/19 17:50,"962 5th St, Portland, OR 97035" +254292,Lightning Charging Cable,1,14.95,09/09/19 06:19,"483 Church St, Austin, TX 73301" +254293,AAA Batteries (4-pack),5,2.99,09/01/19 15:35,"543 Forest St, Los Angeles, CA 90001" +254294,27in FHD Monitor,1,149.99,09/28/19 10:30,"693 10th St, Portland, OR 97035" +254295,Bose SoundSport Headphones,1,99.99,09/06/19 21:51,"65 Lincoln St, Los Angeles, CA 90001" +254296,Macbook Pro Laptop,1,1700,09/23/19 10:11,"940 13th St, Dallas, TX 75001" +254297,Lightning Charging Cable,1,14.95,09/11/19 11:18,"809 Cedar St, Portland, OR 97035" +254298,AA Batteries (4-pack),1,3.84,09/18/19 12:08,"415 1st St, Boston, MA 02215" +254299,Lightning Charging Cable,1,14.95,09/09/19 14:11,"112 Chestnut St, New York City, NY 10001" +254300,USB-C Charging Cable,1,11.95,09/26/19 19:53,"770 Cedar St, New York City, NY 10001" +254301,Macbook Pro Laptop,1,1700,09/06/19 08:18,"618 Jefferson St, Boston, MA 02215" +254302,Flatscreen TV,1,300,09/10/19 16:23,"102 Cedar St, New York City, NY 10001" +254303,Wired Headphones,1,11.99,09/15/19 10:45,"769 Walnut St, Portland, OR 97035" +254304,34in Ultrawide Monitor,1,379.99,09/27/19 08:07,"640 10th St, Dallas, TX 75001" +254305,34in Ultrawide Monitor,1,379.99,09/29/19 12:14,"110 2nd St, New York City, NY 10001" +254306,Bose SoundSport Headphones,1,99.99,09/02/19 13:09,"175 Highland St, San Francisco, CA 94016" +254307,USB-C Charging Cable,1,11.95,09/13/19 17:06,"417 Cedar St, San Francisco, CA 94016" +254308,AA Batteries (4-pack),1,3.84,09/18/19 20:18,"836 12th St, New York City, NY 10001" +254309,Vareebadd Phone,1,400,09/11/19 16:34,"66 1st St, San Francisco, CA 94016" +254309,USB-C Charging Cable,1,11.95,09/11/19 16:34,"66 1st St, San Francisco, CA 94016" +254310,AA Batteries (4-pack),1,3.84,09/18/19 12:52,"331 Lincoln St, Seattle, WA 98101" +254311,34in Ultrawide Monitor,1,379.99,09/07/19 17:44,"645 Washington St, New York City, NY 10001" +254312,AAA Batteries (4-pack),1,2.99,09/13/19 09:34,"580 Jefferson St, Austin, TX 73301" +254313,Wired Headphones,1,11.99,09/03/19 16:01,"609 Johnson St, Seattle, WA 98101" +254314,Lightning Charging Cable,1,14.95,09/30/19 21:30,"587 Jefferson St, Austin, TX 73301" +254315,Wired Headphones,1,11.99,09/18/19 14:25,"513 Walnut St, New York City, NY 10001" +254316,Wired Headphones,2,11.99,09/08/19 14:00,"251 Lake St, New York City, NY 10001" +254317,Lightning Charging Cable,1,14.95,09/19/19 11:14,"507 11th St, Atlanta, GA 30301" +254318,AA Batteries (4-pack),2,3.84,09/21/19 22:02,"517 West St, Seattle, WA 98101" +254319,iPhone,1,700,09/03/19 21:08,"198 9th St, New York City, NY 10001" +254319,Wired Headphones,1,11.99,09/03/19 21:08,"198 9th St, New York City, NY 10001" +254320,USB-C Charging Cable,1,11.95,09/13/19 22:45,"332 West St, San Francisco, CA 94016" +254321,Lightning Charging Cable,1,14.95,09/21/19 20:19,"591 4th St, Los Angeles, CA 90001" +254322,Lightning Charging Cable,1,14.95,09/28/19 22:50,"631 Church St, San Francisco, CA 94016" +254323,Flatscreen TV,1,300,09/09/19 19:49,"148 Church St, San Francisco, CA 94016" +254324,20in Monitor,1,109.99,09/10/19 17:21,"297 Pine St, Dallas, TX 75001" +254325,Lightning Charging Cable,1,14.95,09/08/19 14:51,"652 Elm St, San Francisco, CA 94016" +254326,Lightning Charging Cable,1,14.95,09/29/19 22:30,"268 Washington St, Austin, TX 73301" +254327,Google Phone,1,600,09/18/19 20:39,"958 Church St, Austin, TX 73301" +254328,Google Phone,1,600,09/03/19 02:13,"916 Spruce St, Dallas, TX 75001" +254329,AA Batteries (4-pack),2,3.84,09/17/19 12:58,"562 Walnut St, Austin, TX 73301" +254330,USB-C Charging Cable,1,11.95,09/22/19 13:26,"919 Hickory St, Dallas, TX 75001" +254331,AAA Batteries (4-pack),1,2.99,09/04/19 14:22,"690 Church St, Boston, MA 02215" +254332,AA Batteries (4-pack),1,3.84,09/07/19 13:55,"449 Forest St, Los Angeles, CA 90001" +254333,iPhone,1,700,09/05/19 17:03,"596 Willow St, Los Angeles, CA 90001" +254334,Flatscreen TV,1,300,09/12/19 11:09,"898 Lakeview St, Seattle, WA 98101" +254335,Bose SoundSport Headphones,1,99.99,09/09/19 10:06,"488 Adams St, Dallas, TX 75001" +254336,ThinkPad Laptop,1,999.99,09/25/19 13:31,"515 6th St, Portland, ME 04101" +254337,Wired Headphones,1,11.99,09/24/19 22:39,"114 Walnut St, Los Angeles, CA 90001" +254338,Bose SoundSport Headphones,1,99.99,09/10/19 10:57,"415 Elm St, Austin, TX 73301" +254339,27in FHD Monitor,1,149.99,09/27/19 23:02,"825 14th St, Los Angeles, CA 90001" +254340,AAA Batteries (4-pack),2,2.99,09/22/19 10:55,"395 Cedar St, Atlanta, GA 30301" +254341,AAA Batteries (4-pack),1,2.99,09/17/19 10:25,"328 Wilson St, Los Angeles, CA 90001" +254342,Google Phone,1,600,09/02/19 10:32,"644 Walnut St, Boston, MA 02215" +254343,USB-C Charging Cable,1,11.95,09/29/19 15:04,"256 Wilson St, Seattle, WA 98101" +254344,AA Batteries (4-pack),1,3.84,09/12/19 13:17,"293 Jefferson St, Austin, TX 73301" +254345,Apple Airpods Headphones,1,150,09/13/19 20:00,"841 11th St, Dallas, TX 75001" +254346,ThinkPad Laptop,1,999.99,09/02/19 09:47,"87 Chestnut St, Dallas, TX 75001" +254347,AA Batteries (4-pack),1,3.84,09/02/19 17:29,"873 Cedar St, Portland, ME 04101" +254348,iPhone,1,700,09/05/19 20:46,"569 Cherry St, Boston, MA 02215" +254349,34in Ultrawide Monitor,1,379.99,09/08/19 11:19,"487 Chestnut St, San Francisco, CA 94016" +254350,Wired Headphones,1,11.99,09/10/19 23:58,"9 Meadow St, San Francisco, CA 94016" +254351,Apple Airpods Headphones,2,150,09/20/19 07:57,"310 North St, Atlanta, GA 30301" +254352,AA Batteries (4-pack),3,3.84,09/21/19 11:01,"852 8th St, Los Angeles, CA 90001" +254353,Wired Headphones,1,11.99,09/08/19 20:44,"600 North St, Los Angeles, CA 90001" +254354,Wired Headphones,1,11.99,09/30/19 13:52,"290 9th St, San Francisco, CA 94016" +254355,Macbook Pro Laptop,1,1700,09/20/19 17:09,"744 Lincoln St, San Francisco, CA 94016" +254356,Macbook Pro Laptop,1,1700,09/21/19 20:28,"723 Hickory St, Portland, ME 04101" +254357,Lightning Charging Cable,1,14.95,09/27/19 14:13,"578 Hill St, San Francisco, CA 94016" +254358,Bose SoundSport Headphones,1,99.99,09/22/19 11:08,"312 9th St, Dallas, TX 75001" +254359,Apple Airpods Headphones,1,150,09/04/19 14:47,"973 North St, Boston, MA 02215" +254360,27in FHD Monitor,1,149.99,09/24/19 21:28,"777 Pine St, Atlanta, GA 30301" +254361,27in FHD Monitor,1,149.99,09/04/19 18:18,"455 Main St, Los Angeles, CA 90001" +254362,USB-C Charging Cable,1,11.95,09/02/19 18:36,"113 Main St, Portland, OR 97035" +254363,AAA Batteries (4-pack),1,2.99,09/08/19 16:24,"640 13th St, Austin, TX 73301" +254364,AAA Batteries (4-pack),1,2.99,09/29/19 14:01,"562 4th St, Los Angeles, CA 90001" +254365,AAA Batteries (4-pack),3,2.99,09/10/19 19:37,"736 Church St, San Francisco, CA 94016" +254366,Flatscreen TV,1,300,09/09/19 16:21,"313 Spruce St, San Francisco, CA 94016" +254367,Bose SoundSport Headphones,1,99.99,09/20/19 18:47,"571 Highland St, Los Angeles, CA 90001" +254368,USB-C Charging Cable,1,11.95,09/21/19 21:56,"391 Maple St, Atlanta, GA 30301" +254369,Bose SoundSport Headphones,1,99.99,09/16/19 20:28,"558 River St, Los Angeles, CA 90001" +254369,Wired Headphones,1,11.99,09/16/19 20:28,"558 River St, Los Angeles, CA 90001" +254370,27in FHD Monitor,1,149.99,09/23/19 03:26,"344 Chestnut St, Portland, OR 97035" +254371,AA Batteries (4-pack),1,3.84,09/21/19 07:03,"101 12th St, New York City, NY 10001" +254372,AA Batteries (4-pack),1,3.84,09/09/19 17:35,"114 Johnson St, Boston, MA 02215" +254373,27in 4K Gaming Monitor,1,389.99,09/01/19 14:59,"45 Madison St, San Francisco, CA 94016" +254374,20in Monitor,1,109.99,09/22/19 04:50,"411 7th St, New York City, NY 10001" +254375,Apple Airpods Headphones,1,150,09/26/19 08:18,"34 Washington St, Austin, TX 73301" +254376,Wired Headphones,1,11.99,09/19/19 20:41,"404 Spruce St, Atlanta, GA 30301" +254377,27in 4K Gaming Monitor,1,389.99,09/08/19 13:34,"638 Meadow St, Los Angeles, CA 90001" +254378,Apple Airpods Headphones,1,150,09/04/19 17:58,"145 Madison St, Dallas, TX 75001" +254379,Wired Headphones,1,11.99,09/25/19 14:34,"681 12th St, New York City, NY 10001" +254380,27in FHD Monitor,1,149.99,09/02/19 17:10,"190 Walnut St, Austin, TX 73301" +254381,AAA Batteries (4-pack),1,2.99,09/23/19 20:29,"917 10th St, San Francisco, CA 94016" +254382,Apple Airpods Headphones,1,150,09/26/19 21:48,"351 Walnut St, Atlanta, GA 30301" +254383,20in Monitor,1,109.99,09/06/19 10:41,"31 Lake St, San Francisco, CA 94016" +254384,Wired Headphones,1,11.99,09/29/19 10:51,"570 Main St, Boston, MA 02215" +254385,AAA Batteries (4-pack),2,2.99,09/04/19 00:03,"328 Walnut St, San Francisco, CA 94016" +254386,Google Phone,1,600,09/11/19 14:23,"495 Adams St, San Francisco, CA 94016" +254386,USB-C Charging Cable,1,11.95,09/11/19 14:23,"495 Adams St, San Francisco, CA 94016" +254386,Wired Headphones,1,11.99,09/11/19 14:23,"495 Adams St, San Francisco, CA 94016" +254387,Lightning Charging Cable,1,14.95,09/23/19 11:47,"546 12th St, Boston, MA 02215" +254388,Lightning Charging Cable,1,14.95,09/20/19 09:20,"337 4th St, San Francisco, CA 94016" +254389,Bose SoundSport Headphones,1,99.99,09/08/19 10:27,"646 Sunset St, Los Angeles, CA 90001" +254390,Wired Headphones,1,11.99,09/10/19 11:34,"856 Chestnut St, Los Angeles, CA 90001" +254391,Lightning Charging Cable,1,14.95,09/01/19 13:52,"980 Meadow St, Seattle, WA 98101" +254392,AAA Batteries (4-pack),2,2.99,09/27/19 16:46,"641 Elm St, Boston, MA 02215" +254393,AAA Batteries (4-pack),1,2.99,09/23/19 12:22,"596 Spruce St, Los Angeles, CA 90001" +254394,AA Batteries (4-pack),2,3.84,09/14/19 15:17,"107 Elm St, San Francisco, CA 94016" +254395,Lightning Charging Cable,1,14.95,09/03/19 00:12,"566 Sunset St, San Francisco, CA 94016" +254396,20in Monitor,1,109.99,09/19/19 16:06,"447 9th St, Los Angeles, CA 90001" +254397,Apple Airpods Headphones,1,150,09/24/19 01:17,"260 8th St, Seattle, WA 98101" +254398,Macbook Pro Laptop,1,1700,09/24/19 18:08,"953 Dogwood St, Boston, MA 02215" +254399,Lightning Charging Cable,1,14.95,09/13/19 10:39,"597 Dogwood St, San Francisco, CA 94016" +254400,USB-C Charging Cable,1,11.95,09/23/19 21:06,"448 Sunset St, Boston, MA 02215" +254401,34in Ultrawide Monitor,1,379.99,09/28/19 14:31,"406 11th St, Boston, MA 02215" +254402,Macbook Pro Laptop,1,1700,09/18/19 14:47,"975 Johnson St, San Francisco, CA 94016" +254403,iPhone,1,700,09/26/19 07:36,"239 Lakeview St, Seattle, WA 98101" +254404,Lightning Charging Cable,1,14.95,09/12/19 09:38,"312 Lincoln St, New York City, NY 10001" +254405,Wired Headphones,2,11.99,09/21/19 23:20,"960 Madison St, Portland, OR 97035" +254406,Apple Airpods Headphones,1,150,09/29/19 21:25,"394 West St, San Francisco, CA 94016" +254407,USB-C Charging Cable,1,11.95,09/11/19 14:36,"923 Main St, New York City, NY 10001" +254408,27in 4K Gaming Monitor,1,389.99,09/20/19 17:32,"931 Dogwood St, New York City, NY 10001" +254409,Wired Headphones,1,11.99,09/15/19 17:41,"762 10th St, Atlanta, GA 30301" +254410,Wired Headphones,1,11.99,09/06/19 12:14,"217 Willow St, New York City, NY 10001" +254411,USB-C Charging Cable,1,11.95,09/16/19 00:09,"160 Jefferson St, New York City, NY 10001" +254412,iPhone,1,700,09/13/19 01:09,"502 River St, New York City, NY 10001" +254413,Apple Airpods Headphones,1,150,09/25/19 14:41,"449 Chestnut St, Los Angeles, CA 90001" +254414,USB-C Charging Cable,1,11.95,09/21/19 23:06,"966 13th St, Atlanta, GA 30301" +254415,27in 4K Gaming Monitor,1,389.99,09/18/19 16:52,"171 South St, Seattle, WA 98101" +254416,34in Ultrawide Monitor,1,379.99,09/08/19 22:25,"398 Adams St, Seattle, WA 98101" +254417,USB-C Charging Cable,1,11.95,09/28/19 18:15,"825 8th St, Boston, MA 02215" +254418,AA Batteries (4-pack),1,3.84,09/03/19 12:32,"467 Hill St, Seattle, WA 98101" +254419,USB-C Charging Cable,2,11.95,09/16/19 15:30,"678 Main St, Seattle, WA 98101" +254420,AAA Batteries (4-pack),1,2.99,09/11/19 12:41,"74 5th St, Los Angeles, CA 90001" +254421,Bose SoundSport Headphones,1,99.99,09/10/19 21:58,"263 West St, Los Angeles, CA 90001" +254422,AAA Batteries (4-pack),2,2.99,09/06/19 10:12,"945 Jefferson St, New York City, NY 10001" +254423,AA Batteries (4-pack),5,3.84,09/15/19 20:39,"789 11th St, Los Angeles, CA 90001" +254424,Google Phone,1,600,09/02/19 12:01,"223 9th St, Portland, OR 97035" +254425,AA Batteries (4-pack),1,3.84,09/14/19 15:39,"898 Highland St, Portland, OR 97035" +254426,Flatscreen TV,1,300,09/19/19 09:27,"317 6th St, New York City, NY 10001" +254427,Google Phone,1,600,09/09/19 12:41,"950 Lakeview St, Los Angeles, CA 90001" +254428,iPhone,1,700,09/25/19 20:18,"88 Meadow St, Austin, TX 73301" +254428,Lightning Charging Cable,1,14.95,09/25/19 20:18,"88 Meadow St, Austin, TX 73301" +254428,Wired Headphones,3,11.99,09/25/19 20:18,"88 Meadow St, Austin, TX 73301" +254429,Macbook Pro Laptop,1,1700,09/14/19 16:01,"760 Ridge St, Seattle, WA 98101" +254430,Lightning Charging Cable,1,14.95,09/07/19 16:45,"920 Jefferson St, Atlanta, GA 30301" +254431,Apple Airpods Headphones,1,150,09/03/19 02:37,"684 Adams St, Portland, OR 97035" +254432,Lightning Charging Cable,1,14.95,09/18/19 17:11,"147 South St, San Francisco, CA 94016" +254433,Lightning Charging Cable,1,14.95,09/27/19 16:24,"973 5th St, San Francisco, CA 94016" +254434,Wired Headphones,2,11.99,09/17/19 15:28,"964 Ridge St, San Francisco, CA 94016" +254434,Google Phone,1,600,09/17/19 15:28,"964 Ridge St, San Francisco, CA 94016" +254435,AA Batteries (4-pack),1,3.84,09/13/19 22:33,"531 12th St, Los Angeles, CA 90001" +254436,Bose SoundSport Headphones,1,99.99,09/23/19 16:12,"525 14th St, New York City, NY 10001" +254437,ThinkPad Laptop,1,999.99,09/13/19 22:04,"314 Johnson St, Boston, MA 02215" +254438,AA Batteries (4-pack),1,3.84,09/04/19 11:49,"491 Hickory St, Boston, MA 02215" +254439,Wired Headphones,1,11.99,09/04/19 09:14,"500 Pine St, New York City, NY 10001" +254440,AA Batteries (4-pack),3,3.84,09/14/19 13:22,"703 Park St, San Francisco, CA 94016" +254441,Lightning Charging Cable,1,14.95,09/26/19 18:33,"441 Lakeview St, San Francisco, CA 94016" +254442,AA Batteries (4-pack),2,3.84,09/01/19 10:38,"190 8th St, Los Angeles, CA 90001" +254443,USB-C Charging Cable,1,11.95,09/03/19 09:46,"331 Park St, New York City, NY 10001" +254444,Wired Headphones,1,11.99,09/01/19 21:01,"973 Main St, Atlanta, GA 30301" +254445,Bose SoundSport Headphones,1,99.99,09/10/19 10:55,"156 Jefferson St, Los Angeles, CA 90001" +254446,AAA Batteries (4-pack),2,2.99,09/20/19 07:05,"934 10th St, New York City, NY 10001" +254447,Flatscreen TV,1,300,09/29/19 16:29,"21 North St, Atlanta, GA 30301" +254448,USB-C Charging Cable,1,11.95,09/02/19 13:44,"15 Adams St, Boston, MA 02215" +254449,AAA Batteries (4-pack),2,2.99,09/01/19 17:40,"962 Washington St, Los Angeles, CA 90001" +254450,USB-C Charging Cable,1,11.95,09/11/19 13:58,"228 Pine St, San Francisco, CA 94016" +254451,AA Batteries (4-pack),1,3.84,09/13/19 17:08,"247 13th St, New York City, NY 10001" +254452,Bose SoundSport Headphones,1,99.99,09/26/19 06:18,"701 Chestnut St, Boston, MA 02215" +254453,Apple Airpods Headphones,1,150,09/16/19 21:11,"551 Park St, San Francisco, CA 94016" +254454,AA Batteries (4-pack),1,3.84,09/12/19 08:42,"657 Pine St, Atlanta, GA 30301" +254455,Wired Headphones,1,11.99,09/19/19 21:54,"318 Park St, San Francisco, CA 94016" +254456,Apple Airpods Headphones,1,150,09/24/19 20:45,"120 Chestnut St, New York City, NY 10001" +254457,USB-C Charging Cable,1,11.95,09/25/19 01:21,"68 Main St, San Francisco, CA 94016" +254458,Flatscreen TV,1,300,09/20/19 13:05,"855 Jefferson St, San Francisco, CA 94016" +254459,Lightning Charging Cable,1,14.95,09/20/19 14:48,"807 Forest St, New York City, NY 10001" +254460,Lightning Charging Cable,1,14.95,09/18/19 22:37,"746 Lake St, Austin, TX 73301" +254461,USB-C Charging Cable,1,11.95,09/07/19 18:45,"377 Jefferson St, Los Angeles, CA 90001" +254462,AA Batteries (4-pack),2,3.84,09/24/19 21:03,"435 Lake St, Los Angeles, CA 90001" +254463,Apple Airpods Headphones,1,150,09/12/19 20:13,"890 Sunset St, San Francisco, CA 94016" +254464,20in Monitor,1,109.99,09/21/19 13:13,"257 Willow St, San Francisco, CA 94016" +254465,Wired Headphones,1,11.99,09/06/19 08:30,"58 11th St, Los Angeles, CA 90001" +254466,iPhone,1,700,09/24/19 18:10,"843 Pine St, Portland, OR 97035" +254467,Bose SoundSport Headphones,1,99.99,09/17/19 18:47,"135 Hill St, Boston, MA 02215" +254468,AAA Batteries (4-pack),1,2.99,09/08/19 12:04,"990 Meadow St, Atlanta, GA 30301" +254469,USB-C Charging Cable,1,11.95,09/14/19 01:17,"8 10th St, San Francisco, CA 94016" +254470,Wired Headphones,1,11.99,09/22/19 17:21,"511 9th St, Atlanta, GA 30301" +254471,Lightning Charging Cable,1,14.95,09/26/19 11:09,"772 Cedar St, San Francisco, CA 94016" +254472,AA Batteries (4-pack),1,3.84,09/12/19 09:20,"150 Adams St, New York City, NY 10001" +254472,Lightning Charging Cable,1,14.95,09/12/19 09:20,"150 Adams St, New York City, NY 10001" +254473,Apple Airpods Headphones,1,150,09/14/19 17:57,"7 Lincoln St, Boston, MA 02215" +254474,Bose SoundSport Headphones,1,99.99,09/04/19 21:39,"837 Washington St, Dallas, TX 75001" +254475,Google Phone,1,600,09/08/19 20:56,"29 Adams St, Boston, MA 02215" +254475,USB-C Charging Cable,2,11.95,09/08/19 20:56,"29 Adams St, Boston, MA 02215" +254476,AAA Batteries (4-pack),1,2.99,09/14/19 12:35,"457 14th St, Atlanta, GA 30301" +254477,Google Phone,1,600,09/22/19 13:03,"685 1st St, Boston, MA 02215" +254478,USB-C Charging Cable,1,11.95,09/17/19 10:38,"797 Madison St, Seattle, WA 98101" +254479,Flatscreen TV,1,300,09/15/19 16:26,"154 9th St, San Francisco, CA 94016" +254480,Lightning Charging Cable,1,14.95,09/29/19 11:06,"890 Lakeview St, Atlanta, GA 30301" +254481,27in FHD Monitor,1,149.99,09/02/19 19:22,"996 Wilson St, San Francisco, CA 94016" +254482,Lightning Charging Cable,1,14.95,09/21/19 12:46,"415 13th St, Atlanta, GA 30301" +254483,AA Batteries (4-pack),2,3.84,09/09/19 11:33,"956 Lake St, Seattle, WA 98101" +254484,Wired Headphones,1,11.99,09/27/19 14:46,"359 West St, Boston, MA 02215" +254485,AA Batteries (4-pack),1,3.84,09/27/19 08:42,"782 Sunset St, New York City, NY 10001" +254486,ThinkPad Laptop,1,999.99,09/25/19 11:44,"796 4th St, Los Angeles, CA 90001" +254487,Bose SoundSport Headphones,1,99.99,09/30/19 00:47,"258 9th St, Boston, MA 02215" +254488,Wired Headphones,1,11.99,09/18/19 13:37,"258 Spruce St, Boston, MA 02215" +254489,iPhone,1,700,09/25/19 16:00,"939 Church St, San Francisco, CA 94016" +254489,Lightning Charging Cable,1,14.95,09/25/19 16:00,"939 Church St, San Francisco, CA 94016" +254489,Bose SoundSport Headphones,1,99.99,09/25/19 16:00,"939 Church St, San Francisco, CA 94016" +254490,AAA Batteries (4-pack),2,2.99,09/12/19 09:52,"367 Adams St, Portland, ME 04101" +254491,AAA Batteries (4-pack),1,2.99,09/18/19 12:15,"503 Chestnut St, Seattle, WA 98101" +254492,Vareebadd Phone,1,400,09/12/19 14:04,"785 Maple St, San Francisco, CA 94016" +254493,Macbook Pro Laptop,1,1700,09/06/19 13:04,"495 Park St, Boston, MA 02215" +254494,Flatscreen TV,1,300,09/17/19 22:18,"499 14th St, Portland, OR 97035" +254495,27in FHD Monitor,1,149.99,09/06/19 18:29,"661 Hickory St, San Francisco, CA 94016" +254496,Google Phone,1,600,09/04/19 23:28,"957 Ridge St, San Francisco, CA 94016" +254497,Vareebadd Phone,1,400,09/05/19 10:01,"648 Spruce St, Austin, TX 73301" +254498,Flatscreen TV,1,300,09/29/19 00:50,"640 8th St, Los Angeles, CA 90001" +254499,AAA Batteries (4-pack),2,2.99,09/13/19 12:04,"367 Jackson St, San Francisco, CA 94016" +254500,Wired Headphones,1,11.99,09/15/19 13:09,"45 Hickory St, Los Angeles, CA 90001" +254501,Wired Headphones,1,11.99,09/01/19 11:29,"870 Elm St, San Francisco, CA 94016" +254502,Apple Airpods Headphones,1,150,09/22/19 12:10,"972 Dogwood St, Los Angeles, CA 90001" +254503,Wired Headphones,1,11.99,09/13/19 14:31,"625 Church St, San Francisco, CA 94016" +254504,Flatscreen TV,1,300,09/12/19 12:17,"984 1st St, San Francisco, CA 94016" +254505,Lightning Charging Cable,1,14.95,09/25/19 20:19,"346 11th St, New York City, NY 10001" +254506,Bose SoundSport Headphones,1,99.99,09/02/19 17:19,"439 14th St, Boston, MA 02215" +254507,Flatscreen TV,1,300,09/30/19 21:52,"260 Center St, Atlanta, GA 30301" +254508,Lightning Charging Cable,1,14.95,09/30/19 16:43,"951 South St, Atlanta, GA 30301" +254509,AAA Batteries (4-pack),1,2.99,09/05/19 19:25,"694 River St, Seattle, WA 98101" +254510,AA Batteries (4-pack),1,3.84,09/03/19 14:37,"25 Spruce St, Atlanta, GA 30301" +254511,Wired Headphones,1,11.99,09/14/19 00:13,"22 Elm St, Boston, MA 02215" +254512,20in Monitor,1,109.99,09/26/19 22:56,"754 Jackson St, Boston, MA 02215" +254513,AA Batteries (4-pack),1,3.84,09/19/19 09:23,"762 11th St, Seattle, WA 98101" +254514,AA Batteries (4-pack),1,3.84,09/21/19 13:04,"629 2nd St, San Francisco, CA 94016" +254515,AAA Batteries (4-pack),1,2.99,09/17/19 08:24,"232 Ridge St, San Francisco, CA 94016" +254516,Lightning Charging Cable,1,14.95,09/21/19 13:12,"504 Washington St, Boston, MA 02215" +254517,iPhone,1,700,09/10/19 17:09,"87 Johnson St, Austin, TX 73301" +254517,Lightning Charging Cable,1,14.95,09/10/19 17:09,"87 Johnson St, Austin, TX 73301" +254518,Lightning Charging Cable,1,14.95,09/24/19 16:16,"140 South St, San Francisco, CA 94016" +254519,AA Batteries (4-pack),1,3.84,09/17/19 10:15,"864 Jackson St, New York City, NY 10001" +254520,Lightning Charging Cable,1,14.95,09/08/19 15:16,"727 Highland St, New York City, NY 10001" +254521,AA Batteries (4-pack),1,3.84,09/17/19 18:24,"53 Highland St, Dallas, TX 75001" +254522,AA Batteries (4-pack),1,3.84,09/26/19 12:18,"460 Hickory St, New York City, NY 10001" +254523,AA Batteries (4-pack),1,3.84,09/19/19 22:28,"148 Spruce St, Seattle, WA 98101" +254524,AAA Batteries (4-pack),1,2.99,09/25/19 20:27,"475 13th St, Los Angeles, CA 90001" +254525,Lightning Charging Cable,1,14.95,09/21/19 10:18,"294 Adams St, San Francisco, CA 94016" +254526,iPhone,1,700,09/10/19 21:29,"17 Elm St, San Francisco, CA 94016" +254526,Lightning Charging Cable,1,14.95,09/10/19 21:29,"17 Elm St, San Francisco, CA 94016" +254527,Flatscreen TV,1,300,09/22/19 19:59,"608 10th St, New York City, NY 10001" +254528,Lightning Charging Cable,1,14.95,09/10/19 14:29,"32 Main St, Los Angeles, CA 90001" +254529,Lightning Charging Cable,1,14.95,09/14/19 18:47,"514 14th St, Seattle, WA 98101" +254530,Bose SoundSport Headphones,1,99.99,09/11/19 17:06,"72 Jefferson St, Austin, TX 73301" +254531,USB-C Charging Cable,1,11.95,09/26/19 13:22,"130 River St, Austin, TX 73301" +254532,Bose SoundSport Headphones,1,99.99,09/10/19 00:01,"62 Walnut St, Boston, MA 02215" +254533,AAA Batteries (4-pack),1,2.99,09/07/19 19:57,"374 Main St, Portland, OR 97035" +254534,20in Monitor,1,109.99,09/10/19 04:08,"158 Church St, Dallas, TX 75001" +254535,Macbook Pro Laptop,1,1700,09/23/19 12:22,"768 Walnut St, Los Angeles, CA 90001" +254536,USB-C Charging Cable,1,11.95,09/03/19 13:16,"989 8th St, Los Angeles, CA 90001" +254537,Google Phone,1,600,09/02/19 08:24,"548 Hill St, San Francisco, CA 94016" +254538,Apple Airpods Headphones,1,150,09/20/19 20:13,"93 Madison St, San Francisco, CA 94016" +254539,Wired Headphones,1,11.99,09/30/19 10:46,"832 Cherry St, Boston, MA 02215" +254540,AAA Batteries (4-pack),2,2.99,09/11/19 12:42,"957 7th St, San Francisco, CA 94016" +254541,Wired Headphones,1,11.99,09/22/19 13:00,"995 Wilson St, San Francisco, CA 94016" +254542,Flatscreen TV,1,300,09/23/19 12:59,"989 7th St, Dallas, TX 75001" +254542,27in FHD Monitor,1,149.99,09/23/19 12:59,"989 7th St, Dallas, TX 75001" +254543,USB-C Charging Cable,1,11.95,09/14/19 16:30,"530 Lincoln St, Boston, MA 02215" +254544,AAA Batteries (4-pack),3,2.99,09/15/19 14:54,"683 10th St, Los Angeles, CA 90001" +254545,Bose SoundSport Headphones,1,99.99,09/26/19 11:39,"354 Maple St, Dallas, TX 75001" +254546,AAA Batteries (4-pack),1,2.99,09/18/19 08:25,"479 Lincoln St, San Francisco, CA 94016" +254547,Apple Airpods Headphones,1,150,09/27/19 17:18,"149 Highland St, Atlanta, GA 30301" +254548,AAA Batteries (4-pack),3,2.99,09/10/19 20:14,"737 North St, Boston, MA 02215" +254549,Lightning Charging Cable,1,14.95,09/05/19 23:24,"999 Meadow St, Seattle, WA 98101" +254550,USB-C Charging Cable,1,11.95,09/19/19 11:17,"610 South St, Atlanta, GA 30301" +254551,Apple Airpods Headphones,1,150,09/09/19 12:23,"636 8th St, New York City, NY 10001" +254552,AA Batteries (4-pack),1,3.84,09/02/19 14:00,"803 Washington St, Atlanta, GA 30301" +254553,Bose SoundSport Headphones,1,99.99,09/13/19 20:45,"795 Cherry St, Austin, TX 73301" +254554,AAA Batteries (4-pack),1,2.99,09/26/19 11:14,"759 Washington St, Boston, MA 02215" +254555,AA Batteries (4-pack),1,3.84,09/16/19 02:43,"584 7th St, New York City, NY 10001" +254556,Lightning Charging Cable,1,14.95,09/02/19 21:46,"314 South St, Dallas, TX 75001" +254557,Wired Headphones,1,11.99,09/28/19 21:00,"515 Walnut St, San Francisco, CA 94016" +254558,AA Batteries (4-pack),1,3.84,09/07/19 20:04,"793 4th St, Boston, MA 02215" +254559,27in FHD Monitor,1,149.99,09/19/19 14:25,"923 Chestnut St, Los Angeles, CA 90001" +254560,Flatscreen TV,1,300,09/07/19 13:59,"885 Meadow St, Atlanta, GA 30301" +254561,20in Monitor,1,109.99,09/20/19 11:40,"37 Cedar St, San Francisco, CA 94016" +254562,USB-C Charging Cable,1,11.95,09/06/19 19:48,"594 Lakeview St, Seattle, WA 98101" +254563,Wired Headphones,1,11.99,09/17/19 23:35,"405 Chestnut St, San Francisco, CA 94016" +254564,Macbook Pro Laptop,1,1700,09/10/19 08:19,"800 Cedar St, San Francisco, CA 94016" +254565,Wired Headphones,1,11.99,09/01/19 17:03,"361 11th St, Seattle, WA 98101" +254566,Lightning Charging Cable,1,14.95,09/29/19 18:37,"614 Park St, Dallas, TX 75001" +254567,Wired Headphones,1,11.99,09/23/19 15:27,"919 13th St, Boston, MA 02215" +254568,AA Batteries (4-pack),1,3.84,09/19/19 18:20,"741 Spruce St, San Francisco, CA 94016" +254569,Bose SoundSport Headphones,1,99.99,09/20/19 09:39,"33 6th St, San Francisco, CA 94016" +254570,USB-C Charging Cable,1,11.95,09/05/19 13:36,"438 Adams St, San Francisco, CA 94016" +254571,Google Phone,1,600,09/02/19 12:24,"994 Forest St, New York City, NY 10001" +254572,Apple Airpods Headphones,1,150,09/04/19 22:08,"184 Park St, San Francisco, CA 94016" +254573,AA Batteries (4-pack),1,3.84,09/03/19 16:03,"269 Lincoln St, Seattle, WA 98101" +254574,Wired Headphones,3,11.99,09/15/19 12:47,"47 River St, Atlanta, GA 30301" +254575,Flatscreen TV,1,300,09/28/19 12:32,"684 Hickory St, San Francisco, CA 94016" +254576,Lightning Charging Cable,1,14.95,09/13/19 12:28,"194 Church St, Los Angeles, CA 90001" +254577,USB-C Charging Cable,1,11.95,09/24/19 16:11,"914 8th St, San Francisco, CA 94016" +254578,Lightning Charging Cable,1,14.95,09/23/19 14:26,"110 Washington St, Seattle, WA 98101" +254579,27in FHD Monitor,1,149.99,09/12/19 09:10,"622 12th St, Boston, MA 02215" +254580,Lightning Charging Cable,1,14.95,09/19/19 20:59,"367 2nd St, Los Angeles, CA 90001" +254581,AA Batteries (4-pack),1,3.84,09/22/19 13:00,"911 Jefferson St, Boston, MA 02215" +254582,Lightning Charging Cable,1,14.95,09/06/19 07:48,"259 Adams St, San Francisco, CA 94016" +254583,Vareebadd Phone,1,400,09/22/19 14:34,"960 8th St, New York City, NY 10001" +254583,USB-C Charging Cable,2,11.95,09/22/19 14:34,"960 8th St, New York City, NY 10001" +254584,AAA Batteries (4-pack),3,2.99,09/06/19 23:34,"773 4th St, San Francisco, CA 94016" +254585,Vareebadd Phone,1,400,09/04/19 12:34,"366 Main St, Austin, TX 73301" +254586,AAA Batteries (4-pack),2,2.99,09/29/19 20:45,"72 Jackson St, Atlanta, GA 30301" +254587,AA Batteries (4-pack),1,3.84,09/09/19 18:03,"185 Elm St, San Francisco, CA 94016" +254588,AAA Batteries (4-pack),1,2.99,09/26/19 23:54,"171 9th St, Austin, TX 73301" +254588,AA Batteries (4-pack),1,3.84,09/26/19 23:54,"171 9th St, Austin, TX 73301" +254589,Lightning Charging Cable,1,14.95,09/09/19 18:29,"194 Main St, Boston, MA 02215" +254590,AAA Batteries (4-pack),1,2.99,09/11/19 08:50,"836 Jackson St, New York City, NY 10001" +254591,iPhone,1,700,09/13/19 08:07,"495 10th St, Portland, OR 97035" +254592,Bose SoundSport Headphones,1,99.99,09/07/19 21:11,"324 4th St, Austin, TX 73301" +254593,Vareebadd Phone,1,400,09/18/19 13:43,"667 Hickory St, Atlanta, GA 30301" +254594,AA Batteries (4-pack),1,3.84,09/26/19 12:58,"939 13th St, Atlanta, GA 30301" +254595,USB-C Charging Cable,1,11.95,09/13/19 15:33,"527 Center St, San Francisco, CA 94016" +254596,AA Batteries (4-pack),1,3.84,09/15/19 11:55,"269 6th St, Seattle, WA 98101" +254597,Apple Airpods Headphones,1,150,09/29/19 20:40,"588 Ridge St, Portland, OR 97035" +254598,Bose SoundSport Headphones,1,99.99,09/16/19 10:31,"445 10th St, Austin, TX 73301" +254599,Apple Airpods Headphones,1,150,09/01/19 14:24,"991 River St, San Francisco, CA 94016" +254600,Lightning Charging Cable,1,14.95,09/05/19 14:03,"104 Wilson St, Atlanta, GA 30301" +254601,Apple Airpods Headphones,1,150,09/09/19 10:44,"487 Cedar St, San Francisco, CA 94016" +254602,AAA Batteries (4-pack),3,2.99,09/14/19 14:16,"222 Cherry St, Los Angeles, CA 90001" +254603,AA Batteries (4-pack),2,3.84,09/09/19 00:29,"259 Cherry St, Dallas, TX 75001" +254604,34in Ultrawide Monitor,1,379.99,09/15/19 12:08,"582 14th St, Boston, MA 02215" +254605,Apple Airpods Headphones,1,150,09/04/19 10:46,"285 10th St, Boston, MA 02215" +254606,Bose SoundSport Headphones,1,99.99,09/07/19 12:13,"843 Main St, Boston, MA 02215" +254607,AAA Batteries (4-pack),1,2.99,09/06/19 10:45,"982 Meadow St, San Francisco, CA 94016" +254608,Bose SoundSport Headphones,1,99.99,09/24/19 13:11,"713 Highland St, Atlanta, GA 30301" +254609,Vareebadd Phone,1,400,09/18/19 09:52,"476 Hickory St, Portland, OR 97035" +254610,AA Batteries (4-pack),4,3.84,09/20/19 18:34,"862 11th St, Atlanta, GA 30301" +254611,Wired Headphones,1,11.99,09/14/19 18:18,"818 Meadow St, Seattle, WA 98101" +254612,AAA Batteries (4-pack),1,2.99,09/22/19 10:20,"40 4th St, San Francisco, CA 94016" +254613,Apple Airpods Headphones,1,150,09/30/19 09:23,"300 Cedar St, Dallas, TX 75001" +254614,Flatscreen TV,1,300,09/13/19 18:47,"800 Park St, Portland, OR 97035" +254615,AA Batteries (4-pack),1,3.84,09/06/19 10:48,"95 2nd St, San Francisco, CA 94016" +254616,AAA Batteries (4-pack),3,2.99,09/08/19 15:37,"386 Church St, Austin, TX 73301" +254617,Bose SoundSport Headphones,1,99.99,09/14/19 11:13,"497 Church St, Austin, TX 73301" +254618,Lightning Charging Cable,1,14.95,09/08/19 17:47,"81 6th St, Los Angeles, CA 90001" +254619,20in Monitor,1,109.99,09/09/19 09:00,"28 11th St, San Francisco, CA 94016" +254620,Flatscreen TV,1,300,09/30/19 14:13,"646 Highland St, Portland, OR 97035" +254621,Google Phone,1,600,09/16/19 16:25,"693 13th St, Dallas, TX 75001" +254622,ThinkPad Laptop,1,999.99,09/12/19 07:19,"863 Lincoln St, San Francisco, CA 94016" +254623,USB-C Charging Cable,2,11.95,09/03/19 14:08,"645 Ridge St, Dallas, TX 75001" +254624,20in Monitor,1,109.99,09/23/19 12:22,"253 Park St, San Francisco, CA 94016" +254625,Flatscreen TV,1,300,09/07/19 16:37,"403 Pine St, Los Angeles, CA 90001" +254626,Wired Headphones,1,11.99,09/25/19 18:57,"679 Maple St, New York City, NY 10001" +254627,iPhone,1,700,09/07/19 22:27,"194 4th St, Dallas, TX 75001" +254628,Lightning Charging Cable,1,14.95,09/22/19 10:24,"340 North St, Los Angeles, CA 90001" +254629,AA Batteries (4-pack),2,3.84,09/23/19 10:22,"992 10th St, New York City, NY 10001" +254630,AAA Batteries (4-pack),1,2.99,09/23/19 20:37,"110 River St, Los Angeles, CA 90001" +254631,Google Phone,1,600,09/29/19 10:29,"608 South St, Los Angeles, CA 90001" +254632,Lightning Charging Cable,1,14.95,09/12/19 14:41,"803 9th St, Dallas, TX 75001" +254633,Apple Airpods Headphones,1,150,09/19/19 15:01,"290 Sunset St, San Francisco, CA 94016" +254634,27in FHD Monitor,1,149.99,09/24/19 07:41,"890 12th St, San Francisco, CA 94016" +254635,USB-C Charging Cable,1,11.95,09/13/19 12:09,"717 Ridge St, San Francisco, CA 94016" +254635,34in Ultrawide Monitor,1,379.99,09/13/19 12:09,"717 Ridge St, San Francisco, CA 94016" +254636,USB-C Charging Cable,1,11.95,09/24/19 17:57,"675 9th St, Portland, OR 97035" +254637,Wired Headphones,1,11.99,09/27/19 20:34,"30 Ridge St, Atlanta, GA 30301" +254638,USB-C Charging Cable,1,11.95,09/29/19 18:39,"866 Ridge St, Boston, MA 02215" +254639,AAA Batteries (4-pack),1,2.99,09/20/19 09:23,"522 Spruce St, Los Angeles, CA 90001" +254640,Bose SoundSport Headphones,1,99.99,09/09/19 11:10,"811 1st St, Boston, MA 02215" +254641,USB-C Charging Cable,1,11.95,09/21/19 11:48,"218 Forest St, Dallas, TX 75001" +254642,AA Batteries (4-pack),1,3.84,09/01/19 21:49,"652 Adams St, San Francisco, CA 94016" +254643,34in Ultrawide Monitor,1,379.99,09/10/19 09:06,"211 Highland St, Atlanta, GA 30301" +254644,AA Batteries (4-pack),4,3.84,09/15/19 21:53,"347 Adams St, Los Angeles, CA 90001" +254645,20in Monitor,1,109.99,09/10/19 09:39,"669 Walnut St, Dallas, TX 75001" +254646,USB-C Charging Cable,1,11.95,09/15/19 11:06,"92 1st St, Dallas, TX 75001" +254647,AA Batteries (4-pack),1,3.84,09/24/19 08:56,"693 4th St, Los Angeles, CA 90001" +254648,AAA Batteries (4-pack),2,2.99,09/05/19 08:06,"935 Willow St, Seattle, WA 98101" +254649,34in Ultrawide Monitor,1,379.99,09/06/19 15:37,"177 Walnut St, San Francisco, CA 94016" +254650,Bose SoundSport Headphones,1,99.99,09/22/19 00:41,"697 7th St, San Francisco, CA 94016" +254651,AA Batteries (4-pack),1,3.84,09/18/19 20:26,"256 7th St, Boston, MA 02215" +254652,27in FHD Monitor,1,149.99,09/04/19 11:24,"829 Lake St, New York City, NY 10001" +254653,Lightning Charging Cable,2,14.95,09/20/19 13:45,"328 Hickory St, San Francisco, CA 94016" +254654,ThinkPad Laptop,1,999.99,09/16/19 17:00,"847 Highland St, Austin, TX 73301" +254655,Lightning Charging Cable,1,14.95,09/27/19 12:36,"791 River St, New York City, NY 10001" +254655,USB-C Charging Cable,1,11.95,09/27/19 12:36,"791 River St, New York City, NY 10001" +254656,AAA Batteries (4-pack),1,2.99,09/07/19 13:41,"91 Forest St, Dallas, TX 75001" +254657,34in Ultrawide Monitor,1,379.99,09/09/19 22:28,"759 Johnson St, San Francisco, CA 94016" +254658,Apple Airpods Headphones,1,150,09/11/19 06:51,"478 Hickory St, Dallas, TX 75001" +254659,Apple Airpods Headphones,1,150,09/09/19 18:12,"373 Lake St, Portland, OR 97035" +254660,ThinkPad Laptop,1,999.99,09/28/19 11:03,"96 Adams St, Seattle, WA 98101" +254661,iPhone,1,700,09/18/19 18:12,"825 Dogwood St, Boston, MA 02215" +254662,Apple Airpods Headphones,1,150,09/07/19 12:27,"406 14th St, Portland, OR 97035" +254663,Bose SoundSport Headphones,1,99.99,09/02/19 06:28,"793 Center St, Portland, OR 97035" +254664,Macbook Pro Laptop,1,1700,09/10/19 21:31,"759 Cherry St, Boston, MA 02215" +254665,USB-C Charging Cable,1,11.95,09/15/19 15:42,"543 13th St, San Francisco, CA 94016" +254666,Wired Headphones,1,11.99,09/13/19 17:08,"353 Center St, Boston, MA 02215" +254667,AAA Batteries (4-pack),1,2.99,09/07/19 19:11,"125 9th St, San Francisco, CA 94016" +254668,AA Batteries (4-pack),1,3.84,09/30/19 15:07,"824 Park St, New York City, NY 10001" +254669,Wired Headphones,1,11.99,09/08/19 09:40,"211 Chestnut St, Boston, MA 02215" +254670,Bose SoundSport Headphones,1,99.99,09/06/19 16:51,"102 Lake St, Boston, MA 02215" +254671,27in 4K Gaming Monitor,1,389.99,09/07/19 13:34,"793 13th St, New York City, NY 10001" +254672,AA Batteries (4-pack),1,3.84,09/04/19 13:45,"171 North St, San Francisco, CA 94016" +254673,USB-C Charging Cable,1,11.95,09/12/19 09:57,"14 Dogwood St, Boston, MA 02215" +254674,Lightning Charging Cable,1,14.95,09/08/19 17:50,"534 Meadow St, Boston, MA 02215" +254675,27in FHD Monitor,1,149.99,09/24/19 15:12,"580 9th St, Boston, MA 02215" +254676,34in Ultrawide Monitor,1,379.99,09/11/19 19:29,"705 Park St, Atlanta, GA 30301" +254677,AAA Batteries (4-pack),1,2.99,09/26/19 15:48,"387 West St, Boston, MA 02215" +254678,USB-C Charging Cable,2,11.95,09/13/19 09:34,"971 Park St, San Francisco, CA 94016" +254679,Bose SoundSport Headphones,1,99.99,09/03/19 13:28,"90 5th St, Boston, MA 02215" +254680,Wired Headphones,1,11.99,09/06/19 20:40,"131 Park St, San Francisco, CA 94016" +254681,Macbook Pro Laptop,1,1700,09/20/19 18:54,"133 Hickory St, Boston, MA 02215" +254682,Wired Headphones,1,11.99,09/17/19 10:57,"185 4th St, San Francisco, CA 94016" +254683,34in Ultrawide Monitor,1,379.99,09/09/19 14:23,"827 Wilson St, Boston, MA 02215" +254684,Lightning Charging Cable,1,14.95,09/04/19 18:52,"200 Jackson St, San Francisco, CA 94016" +254685,Wired Headphones,2,11.99,09/12/19 19:11,"112 Spruce St, San Francisco, CA 94016" +254686,Apple Airpods Headphones,1,150,09/17/19 10:30,"184 Meadow St, San Francisco, CA 94016" +254687,Wired Headphones,1,11.99,09/23/19 17:23,"402 Cedar St, Boston, MA 02215" +254688,LG Washing Machine,1,600.0,09/16/19 21:37,"44 North St, Los Angeles, CA 90001" +254689,AA Batteries (4-pack),1,3.84,09/18/19 18:28,"198 Hill St, Austin, TX 73301" +254690,AAA Batteries (4-pack),1,2.99,09/06/19 19:31,"862 Park St, San Francisco, CA 94016" +254691,USB-C Charging Cable,1,11.95,09/13/19 18:16,"193 Lake St, San Francisco, CA 94016" +254692,Apple Airpods Headphones,1,150,09/09/19 22:50,"745 2nd St, San Francisco, CA 94016" +254693,34in Ultrawide Monitor,1,379.99,09/17/19 17:29,"478 Center St, Boston, MA 02215" +254694,AAA Batteries (4-pack),2,2.99,09/22/19 11:00,"452 1st St, New York City, NY 10001" +254695,AA Batteries (4-pack),1,3.84,09/27/19 15:40,"483 Forest St, San Francisco, CA 94016" +254696,USB-C Charging Cable,2,11.95,09/09/19 19:46,"446 Elm St, Portland, OR 97035" +254697,AA Batteries (4-pack),1,3.84,09/04/19 08:12,"773 West St, Los Angeles, CA 90001" +254698,iPhone,1,700,09/15/19 00:00,"579 Cedar St, San Francisco, CA 94016" +254699,AAA Batteries (4-pack),1,2.99,09/25/19 20:05,"137 Ridge St, Portland, OR 97035" +254700,Lightning Charging Cable,1,14.95,09/15/19 19:50,"928 West St, Los Angeles, CA 90001" +254701,AA Batteries (4-pack),1,3.84,09/24/19 00:00,"546 5th St, Portland, OR 97035" +254702,USB-C Charging Cable,1,11.95,09/23/19 06:48,"844 Walnut St, San Francisco, CA 94016" +254703,Wired Headphones,1,11.99,09/02/19 21:02,"404 Center St, New York City, NY 10001" +254704,Apple Airpods Headphones,1,150,09/02/19 18:23,"571 14th St, San Francisco, CA 94016" +254705,27in FHD Monitor,1,149.99,09/08/19 14:46,"784 Park St, Seattle, WA 98101" +254706,27in FHD Monitor,1,149.99,09/17/19 17:04,"628 Lincoln St, San Francisco, CA 94016" +254707,AA Batteries (4-pack),1,3.84,09/25/19 18:19,"196 Adams St, San Francisco, CA 94016" +254708,AAA Batteries (4-pack),2,2.99,09/13/19 12:38,"953 Dogwood St, Dallas, TX 75001" +254709,USB-C Charging Cable,1,11.95,09/27/19 12:10,"892 12th St, Seattle, WA 98101" +254710,Macbook Pro Laptop,1,1700,09/29/19 19:56,"917 Forest St, Austin, TX 73301" +254711,AA Batteries (4-pack),1,3.84,09/26/19 14:21,"34 South St, Los Angeles, CA 90001" +254712,Lightning Charging Cable,1,14.95,09/28/19 10:21,"148 Hickory St, New York City, NY 10001" +254713,ThinkPad Laptop,1,999.99,09/03/19 12:18,"115 Wilson St, Dallas, TX 75001" +254714,USB-C Charging Cable,1,11.95,09/02/19 23:58,"62 Elm St, San Francisco, CA 94016" +254715,Google Phone,1,600,09/01/19 17:17,"702 Hickory St, Seattle, WA 98101" +254715,Bose SoundSport Headphones,1,99.99,09/01/19 17:17,"702 Hickory St, Seattle, WA 98101" +254716,Wired Headphones,2,11.99,09/08/19 07:07,"663 West St, Atlanta, GA 30301" +254717,Apple Airpods Headphones,1,150,09/22/19 21:28,"356 Adams St, Los Angeles, CA 90001" +254718,20in Monitor,1,109.99,09/13/19 19:35,"736 Highland St, Atlanta, GA 30301" +254719,Apple Airpods Headphones,1,150,09/28/19 17:27,"833 North St, San Francisco, CA 94016" +254720,Google Phone,1,600,09/21/19 18:44,"545 Park St, San Francisco, CA 94016" +254721,Bose SoundSport Headphones,1,99.99,09/15/19 14:10,"111 5th St, San Francisco, CA 94016" +254722,Lightning Charging Cable,1,14.95,09/25/19 10:13,"848 1st St, San Francisco, CA 94016" +254723,USB-C Charging Cable,1,11.95,09/29/19 16:46,"175 Sunset St, San Francisco, CA 94016" +254724,Apple Airpods Headphones,1,150,09/08/19 16:16,"227 10th St, Los Angeles, CA 90001" +254725,Apple Airpods Headphones,1,150,09/01/19 16:49,"546 Dogwood St, San Francisco, CA 94016" +254726,USB-C Charging Cable,1,11.95,09/30/19 22:49,"684 Madison St, San Francisco, CA 94016" +254727,Bose SoundSport Headphones,1,99.99,09/18/19 18:36,"228 Highland St, Los Angeles, CA 90001" +254728,Lightning Charging Cable,1,14.95,09/14/19 22:59,"973 Meadow St, Los Angeles, CA 90001" +254729,Lightning Charging Cable,1,14.95,09/30/19 18:48,"493 12th St, San Francisco, CA 94016" +254730,Bose SoundSport Headphones,1,99.99,09/22/19 09:36,"414 14th St, Austin, TX 73301" +254731,AAA Batteries (4-pack),3,2.99,09/10/19 21:17,"936 Park St, San Francisco, CA 94016" +254732,Lightning Charging Cable,1,14.95,09/16/19 18:41,"35 Lakeview St, Dallas, TX 75001" +254733,USB-C Charging Cable,1,11.95,09/10/19 23:37,"552 Lake St, Los Angeles, CA 90001" +254734,USB-C Charging Cable,1,11.95,09/25/19 16:28,"624 Pine St, Dallas, TX 75001" +254735,AAA Batteries (4-pack),2,2.99,09/20/19 00:14,"799 South St, Seattle, WA 98101" +254736,AA Batteries (4-pack),1,3.84,09/08/19 20:51,"305 Wilson St, New York City, NY 10001" +254737,USB-C Charging Cable,1,11.95,09/07/19 13:57,"854 Church St, New York City, NY 10001" +254738,Apple Airpods Headphones,1,150,09/17/19 16:04,"732 Dogwood St, Atlanta, GA 30301" +254739,Bose SoundSport Headphones,1,99.99,09/09/19 11:17,"41 North St, Seattle, WA 98101" +254740,USB-C Charging Cable,2,11.95,09/07/19 12:31,"283 Jackson St, Los Angeles, CA 90001" +254741,Wired Headphones,3,11.99,09/29/19 08:15,"673 10th St, San Francisco, CA 94016" +254742,ThinkPad Laptop,1,999.99,09/17/19 16:06,"594 Adams St, Dallas, TX 75001" +254743,Wired Headphones,1,11.99,09/30/19 21:14,"983 Forest St, Los Angeles, CA 90001" +254744,34in Ultrawide Monitor,1,379.99,09/10/19 03:07,"289 Jackson St, Los Angeles, CA 90001" +254745,Bose SoundSport Headphones,1,99.99,09/08/19 11:48,"574 Meadow St, Seattle, WA 98101" +254746,Lightning Charging Cable,1,14.95,09/01/19 19:35,"515 Lakeview St, Boston, MA 02215" +254747,Apple Airpods Headphones,1,150,09/16/19 10:16,"362 Dogwood St, Boston, MA 02215" +254748,ThinkPad Laptop,1,999.99,09/04/19 10:09,"489 Lakeview St, New York City, NY 10001" +254749,Lightning Charging Cable,1,14.95,09/29/19 12:42,"449 2nd St, Los Angeles, CA 90001" +254750,USB-C Charging Cable,1,11.95,09/13/19 18:44,"470 Johnson St, Portland, OR 97035" +254751,iPhone,1,700,09/09/19 21:18,"607 Pine St, Dallas, TX 75001" +254752,Bose SoundSport Headphones,1,99.99,09/29/19 06:15,"704 13th St, Los Angeles, CA 90001" +254753,Apple Airpods Headphones,1,150,09/25/19 06:16,"693 Cherry St, Seattle, WA 98101" +254754,Wired Headphones,1,11.99,09/07/19 16:43,"292 Madison St, Portland, OR 97035" +254755,Lightning Charging Cable,1,14.95,09/22/19 19:00,"915 South St, Portland, OR 97035" +254756,AA Batteries (4-pack),1,3.84,09/01/19 21:50,"5 Lincoln St, Los Angeles, CA 90001" +254757,Wired Headphones,1,11.99,09/11/19 16:36,"76 Spruce St, Boston, MA 02215" +254758,Lightning Charging Cable,1,14.95,09/25/19 13:27,"902 Jackson St, Los Angeles, CA 90001" +254759,Lightning Charging Cable,1,14.95,09/29/19 03:28,"630 River St, Atlanta, GA 30301" +254760,Bose SoundSport Headphones,1,99.99,09/15/19 12:23,"229 Sunset St, Dallas, TX 75001" +254761,20in Monitor,1,109.99,09/02/19 18:03,"880 Chestnut St, San Francisco, CA 94016" +254762,AAA Batteries (4-pack),3,2.99,09/23/19 08:45,"875 Spruce St, San Francisco, CA 94016" +254763,AA Batteries (4-pack),1,3.84,09/21/19 18:10,"897 Jackson St, New York City, NY 10001" +254764,Lightning Charging Cable,1,14.95,09/19/19 11:36,"71 West St, Los Angeles, CA 90001" +254765,Google Phone,1,600,09/24/19 17:48,"426 Hill St, Los Angeles, CA 90001" +254765,USB-C Charging Cable,1,11.95,09/24/19 17:48,"426 Hill St, Los Angeles, CA 90001" +254766,USB-C Charging Cable,1,11.95,09/12/19 20:09,"753 Madison St, San Francisco, CA 94016" +254767,Flatscreen TV,1,300,09/12/19 11:52,"107 Johnson St, San Francisco, CA 94016" +254768,Lightning Charging Cable,1,14.95,09/28/19 14:13,"459 Wilson St, San Francisco, CA 94016" +254769,AA Batteries (4-pack),1,3.84,09/06/19 23:50,"605 Dogwood St, Atlanta, GA 30301" +254770,Macbook Pro Laptop,1,1700,09/25/19 09:31,"430 Main St, Boston, MA 02215" +254771,USB-C Charging Cable,2,11.95,09/23/19 20:25,"735 Ridge St, New York City, NY 10001" +254772,AA Batteries (4-pack),2,3.84,09/05/19 01:34,"74 Dogwood St, Boston, MA 02215" +254773,20in Monitor,1,109.99,09/16/19 23:06,"281 Pine St, New York City, NY 10001" +254774,AA Batteries (4-pack),1,3.84,09/23/19 15:27,"930 1st St, Seattle, WA 98101" +254775,AAA Batteries (4-pack),1,2.99,09/14/19 23:16,"452 Johnson St, Austin, TX 73301" +254776,LG Dryer,1,600.0,09/18/19 13:27,"417 Wilson St, San Francisco, CA 94016" +254777,Bose SoundSport Headphones,1,99.99,09/04/19 13:47,"979 Willow St, Los Angeles, CA 90001" +254778,Lightning Charging Cable,1,14.95,09/16/19 07:38,"703 11th St, Los Angeles, CA 90001" +254779,iPhone,1,700,09/10/19 20:54,"678 Highland St, San Francisco, CA 94016" +254780,34in Ultrawide Monitor,1,379.99,09/01/19 20:15,"674 Washington St, San Francisco, CA 94016" +254781,Apple Airpods Headphones,1,150,09/20/19 00:15,"741 Washington St, Portland, OR 97035" +254782,USB-C Charging Cable,1,11.95,09/14/19 13:49,"668 Cedar St, Portland, OR 97035" +254783,USB-C Charging Cable,1,11.95,09/15/19 23:19,"504 Lakeview St, Los Angeles, CA 90001" +254784,AAA Batteries (4-pack),2,2.99,09/24/19 10:02,"203 Spruce St, Boston, MA 02215" +254785,Apple Airpods Headphones,1,150,09/27/19 08:05,"589 Meadow St, Boston, MA 02215" +254786,USB-C Charging Cable,1,11.95,09/18/19 16:01,"253 Center St, New York City, NY 10001" +254787,Google Phone,1,600,09/17/19 14:04,"582 Walnut St, Los Angeles, CA 90001" +254788,AA Batteries (4-pack),1,3.84,09/01/19 17:43,"437 Johnson St, New York City, NY 10001" +254789,Wired Headphones,1,11.99,09/26/19 18:10,"132 2nd St, Boston, MA 02215" +254790,Wired Headphones,1,11.99,09/23/19 13:40,"754 Sunset St, San Francisco, CA 94016" +254791,Bose SoundSport Headphones,1,99.99,09/09/19 15:52,"997 River St, Los Angeles, CA 90001" +254792,Apple Airpods Headphones,1,150,09/23/19 23:25,"603 10th St, San Francisco, CA 94016" +254793,AA Batteries (4-pack),2,3.84,09/14/19 15:25,"226 Pine St, San Francisco, CA 94016" +254794,iPhone,1,700,09/24/19 14:37,"208 Cedar St, Los Angeles, CA 90001" +254795,27in FHD Monitor,1,149.99,09/07/19 18:54,"158 Pine St, San Francisco, CA 94016" +254796,AA Batteries (4-pack),2,3.84,09/05/19 17:26,"721 Highland St, Boston, MA 02215" +254797,Wired Headphones,1,11.99,09/05/19 19:16,"906 9th St, Boston, MA 02215" +254798,27in FHD Monitor,1,149.99,09/18/19 13:13,"272 Highland St, Los Angeles, CA 90001" +254799,USB-C Charging Cable,1,11.95,09/10/19 06:47,"867 Center St, Los Angeles, CA 90001" +254800,AA Batteries (4-pack),2,3.84,09/08/19 06:31,"620 5th St, Boston, MA 02215" +254801,AA Batteries (4-pack),1,3.84,09/18/19 18:20,"138 South St, New York City, NY 10001" +254802,USB-C Charging Cable,1,11.95,09/25/19 14:48,"898 Chestnut St, San Francisco, CA 94016" +254803,Bose SoundSport Headphones,1,99.99,09/17/19 18:03,"941 1st St, San Francisco, CA 94016" +254804,USB-C Charging Cable,1,11.95,09/09/19 11:44,"218 Park St, Boston, MA 02215" +254805,USB-C Charging Cable,1,11.95,09/22/19 23:43,"396 11th St, Boston, MA 02215" +254806,AA Batteries (4-pack),1,3.84,09/11/19 15:01,"796 Madison St, San Francisco, CA 94016" +254807,27in FHD Monitor,1,149.99,09/03/19 18:49,"992 8th St, Los Angeles, CA 90001" +254808,Macbook Pro Laptop,1,1700,09/26/19 12:52,"823 14th St, Los Angeles, CA 90001" +254809,USB-C Charging Cable,1,11.95,09/13/19 20:42,"368 South St, Los Angeles, CA 90001" +254810,20in Monitor,1,109.99,09/21/19 17:46,"824 Adams St, San Francisco, CA 94016" +254811,AAA Batteries (4-pack),3,2.99,09/27/19 10:29,"138 Spruce St, Atlanta, GA 30301" +254812,iPhone,1,700,09/20/19 08:48,"509 Cedar St, New York City, NY 10001" +254813,USB-C Charging Cable,1,11.95,09/20/19 22:47,"206 5th St, Los Angeles, CA 90001" +254814,34in Ultrawide Monitor,1,379.99,09/11/19 16:10,"869 Hill St, Los Angeles, CA 90001" +254815,Bose SoundSport Headphones,1,99.99,09/27/19 23:12,"64 Hill St, San Francisco, CA 94016" +254816,Flatscreen TV,1,300,09/14/19 18:09,"618 Cedar St, Boston, MA 02215" +254817,AA Batteries (4-pack),1,3.84,09/20/19 11:46,"841 Center St, New York City, NY 10001" +254818,Lightning Charging Cable,1,14.95,09/16/19 13:27,"889 North St, Portland, OR 97035" +254819,Lightning Charging Cable,2,14.95,09/07/19 02:19,"717 Elm St, New York City, NY 10001" +254820,Wired Headphones,1,11.99,09/06/19 12:24,"750 Lakeview St, Los Angeles, CA 90001" +254821,Apple Airpods Headphones,1,150,09/21/19 12:36,"97 Spruce St, Portland, OR 97035" +254822,AAA Batteries (4-pack),1,2.99,09/06/19 06:59,"873 Walnut St, Boston, MA 02215" +254823,USB-C Charging Cable,1,11.95,09/15/19 14:16,"566 Elm St, San Francisco, CA 94016" +254824,Bose SoundSport Headphones,1,99.99,09/18/19 12:12,"439 Ridge St, Austin, TX 73301" +254825,Apple Airpods Headphones,1,150,09/18/19 12:51,"983 Church St, New York City, NY 10001" +254826,USB-C Charging Cable,1,11.95,09/23/19 11:57,"16 9th St, Boston, MA 02215" +254827,AA Batteries (4-pack),1,3.84,09/27/19 09:00,"351 Washington St, San Francisco, CA 94016" +254828,20in Monitor,1,109.99,09/07/19 18:22,"322 Highland St, Los Angeles, CA 90001" +254829,20in Monitor,1,109.99,09/03/19 20:23,"515 Forest St, Atlanta, GA 30301" +254830,27in 4K Gaming Monitor,1,389.99,09/02/19 11:03,"818 Main St, Austin, TX 73301" +254831,Lightning Charging Cable,1,14.95,09/12/19 17:43,"75 Lake St, San Francisco, CA 94016" +254832,27in FHD Monitor,1,149.99,09/06/19 15:24,"886 Sunset St, Portland, OR 97035" +254833,Lightning Charging Cable,1,14.95,09/12/19 05:45,"566 Park St, San Francisco, CA 94016" +254834,Wired Headphones,1,11.99,09/21/19 07:53,"506 Ridge St, Seattle, WA 98101" +254835,Flatscreen TV,1,300,09/30/19 21:06,"657 13th St, Portland, OR 97035" +254836,Apple Airpods Headphones,1,150,09/18/19 01:00,"31 Washington St, San Francisco, CA 94016" +254837,USB-C Charging Cable,1,11.95,09/30/19 14:49,"220 North St, Los Angeles, CA 90001" +254838,ThinkPad Laptop,1,999.99,09/15/19 17:41,"815 River St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +254839,Bose SoundSport Headphones,1,99.99,09/07/19 22:14,"947 Chestnut St, Dallas, TX 75001" +254840,Google Phone,1,600,09/01/19 12:25,"179 South St, Atlanta, GA 30301" +254840,USB-C Charging Cable,1,11.95,09/01/19 12:25,"179 South St, Atlanta, GA 30301" +254841,AA Batteries (4-pack),1,3.84,09/03/19 10:26,"758 Sunset St, New York City, NY 10001" +254842,AAA Batteries (4-pack),1,2.99,09/14/19 16:38,"346 Sunset St, Portland, OR 97035" +254843,Google Phone,1,600,09/09/19 13:03,"474 North St, Dallas, TX 75001" +254844,34in Ultrawide Monitor,1,379.99,09/06/19 08:10,"12 Jackson St, Boston, MA 02215" +254845,AAA Batteries (4-pack),1,2.99,09/12/19 00:24,"375 Sunset St, New York City, NY 10001" +254846,20in Monitor,1,109.99,09/12/19 11:06,"498 Lake St, Boston, MA 02215" +254847,Wired Headphones,1,11.99,09/03/19 12:15,"48 Jefferson St, Portland, ME 04101" +254848,AAA Batteries (4-pack),5,2.99,09/27/19 18:01,"851 North St, Dallas, TX 75001" +254849,Apple Airpods Headphones,1,150,09/30/19 16:11,"828 Meadow St, Atlanta, GA 30301" +254850,Wired Headphones,1,11.99,09/30/19 11:47,"509 West St, Atlanta, GA 30301" +254851,Wired Headphones,1,11.99,09/22/19 19:09,"467 West St, Los Angeles, CA 90001" +254852,Wired Headphones,1,11.99,09/03/19 17:51,"805 West St, New York City, NY 10001" +254853,Apple Airpods Headphones,1,150,09/16/19 13:07,"688 Adams St, Dallas, TX 75001" +254854,AA Batteries (4-pack),3,3.84,09/19/19 00:15,"33 Church St, San Francisco, CA 94016" +254855,AA Batteries (4-pack),1,3.84,09/30/19 22:22,"322 North St, Boston, MA 02215" +254856,Apple Airpods Headphones,1,150,09/20/19 22:56,"996 6th St, New York City, NY 10001" +254857,Apple Airpods Headphones,1,150,09/07/19 22:26,"840 River St, Portland, OR 97035" +254858,Bose SoundSport Headphones,1,99.99,09/14/19 19:42,"853 South St, Los Angeles, CA 90001" +254859,Apple Airpods Headphones,1,150,09/17/19 11:32,"128 Johnson St, San Francisco, CA 94016" +254860,LG Dryer,1,600.0,09/30/19 10:41,"137 12th St, New York City, NY 10001" +254861,Bose SoundSport Headphones,1,99.99,09/13/19 14:36,"795 10th St, Dallas, TX 75001" +254862,iPhone,1,700,09/12/19 07:28,"66 Johnson St, Austin, TX 73301" +254862,Apple Airpods Headphones,1,150,09/12/19 07:28,"66 Johnson St, Austin, TX 73301" +254863,iPhone,1,700,09/22/19 11:37,"633 Spruce St, Los Angeles, CA 90001" +254863,Lightning Charging Cable,1,14.95,09/22/19 11:37,"633 Spruce St, Los Angeles, CA 90001" +254864,AA Batteries (4-pack),1,3.84,09/26/19 15:24,"578 Lincoln St, Boston, MA 02215" +254865,AA Batteries (4-pack),1,3.84,09/22/19 17:12,"253 Meadow St, San Francisco, CA 94016" +254866,AA Batteries (4-pack),1,3.84,09/28/19 19:47,"946 5th St, Seattle, WA 98101" +254867,Lightning Charging Cable,1,14.95,09/25/19 15:34,"628 Walnut St, San Francisco, CA 94016" +254868,AAA Batteries (4-pack),1,2.99,09/08/19 17:00,"503 Elm St, Seattle, WA 98101" +254869,Lightning Charging Cable,1,14.95,09/27/19 12:14,"527 Center St, San Francisco, CA 94016" +254870,Flatscreen TV,1,300,09/13/19 16:51,"150 Elm St, San Francisco, CA 94016" +254871,Wired Headphones,1,11.99,09/07/19 10:56,"127 14th St, San Francisco, CA 94016" +254872,Wired Headphones,1,11.99,09/15/19 10:05,"694 Spruce St, Boston, MA 02215" +254873,iPhone,1,700,09/09/19 20:06,"132 Johnson St, San Francisco, CA 94016" +254874,USB-C Charging Cable,1,11.95,09/17/19 22:17,"342 Hill St, Los Angeles, CA 90001" +254875,Bose SoundSport Headphones,1,99.99,09/02/19 09:42,"525 Highland St, Los Angeles, CA 90001" +254876,AA Batteries (4-pack),1,3.84,09/12/19 19:25,"288 Walnut St, New York City, NY 10001" +254877,Bose SoundSport Headphones,1,99.99,09/24/19 16:54,"719 Madison St, New York City, NY 10001" +254878,Lightning Charging Cable,1,14.95,09/22/19 21:14,"452 Maple St, San Francisco, CA 94016" +254879,27in 4K Gaming Monitor,1,389.99,09/09/19 12:08,"337 Johnson St, San Francisco, CA 94016" +254880,27in 4K Gaming Monitor,1,389.99,09/29/19 11:56,"613 Dogwood St, Boston, MA 02215" +254881,Bose SoundSport Headphones,1,99.99,09/30/19 14:14,"348 1st St, San Francisco, CA 94016" +254882,USB-C Charging Cable,1,11.95,09/09/19 15:56,"569 14th St, Atlanta, GA 30301" +254883,Apple Airpods Headphones,1,150,09/23/19 13:03,"542 Dogwood St, Boston, MA 02215" +254884,Flatscreen TV,1,300,09/05/19 14:30,"103 Main St, San Francisco, CA 94016" +254885,Wired Headphones,1,11.99,09/16/19 21:34,"139 Walnut St, Atlanta, GA 30301" +254886,ThinkPad Laptop,1,999.99,09/22/19 08:01,"796 Hickory St, New York City, NY 10001" +254887,Bose SoundSport Headphones,1,99.99,09/05/19 12:08,"690 Lakeview St, Los Angeles, CA 90001" +254888,Bose SoundSport Headphones,1,99.99,09/29/19 21:23,"796 Ridge St, San Francisco, CA 94016" +254889,Apple Airpods Headphones,1,150,09/30/19 14:02,"758 West St, Los Angeles, CA 90001" +254890,Lightning Charging Cable,3,14.95,09/23/19 21:18,"878 Johnson St, Austin, TX 73301" +254891,Wired Headphones,1,11.99,09/25/19 10:28,"593 2nd St, Portland, OR 97035" +254892,AAA Batteries (4-pack),2,2.99,09/06/19 15:00,"537 Spruce St, Los Angeles, CA 90001" +254893,USB-C Charging Cable,1,11.95,09/24/19 23:14,"111 Pine St, Austin, TX 73301" +254894,AAA Batteries (4-pack),2,2.99,09/22/19 01:00,"275 Church St, Boston, MA 02215" +254895,AAA Batteries (4-pack),2,2.99,09/15/19 14:16,"189 Dogwood St, Los Angeles, CA 90001" +254896,AAA Batteries (4-pack),1,2.99,09/03/19 22:06,"500 Forest St, Austin, TX 73301" +254897,AAA Batteries (4-pack),1,2.99,09/28/19 17:09,"892 Chestnut St, San Francisco, CA 94016" +254898,27in 4K Gaming Monitor,1,389.99,09/08/19 17:09,"78 Johnson St, New York City, NY 10001" +254899,27in FHD Monitor,1,149.99,09/17/19 15:52,"89 Park St, Portland, OR 97035" +254900,Vareebadd Phone,1,400,09/19/19 18:36,"903 Main St, New York City, NY 10001" +254900,USB-C Charging Cable,1,11.95,09/19/19 18:36,"903 Main St, New York City, NY 10001" +254901,Macbook Pro Laptop,1,1700,09/23/19 10:06,"743 Spruce St, New York City, NY 10001" +254902,USB-C Charging Cable,1,11.95,09/05/19 15:35,"226 13th St, Los Angeles, CA 90001" +254903,AA Batteries (4-pack),1,3.84,09/17/19 08:03,"984 Lakeview St, Austin, TX 73301" +254904,Lightning Charging Cable,1,14.95,09/22/19 18:33,"982 Center St, San Francisco, CA 94016" +254905,USB-C Charging Cable,1,11.95,09/19/19 18:20,"543 Church St, Los Angeles, CA 90001" +254906,AA Batteries (4-pack),1,3.84,09/01/19 11:31,"246 Lake St, Los Angeles, CA 90001" +254907,AAA Batteries (4-pack),1,2.99,09/11/19 03:09,"359 Main St, San Francisco, CA 94016" +254908,Flatscreen TV,1,300,09/15/19 20:31,"911 11th St, Austin, TX 73301" +254909,20in Monitor,1,109.99,09/25/19 08:21,"83 12th St, New York City, NY 10001" +254910,Wired Headphones,1,11.99,09/14/19 20:14,"527 Walnut St, Portland, OR 97035" +254911,34in Ultrawide Monitor,1,379.99,09/15/19 11:55,"684 Hickory St, San Francisco, CA 94016" +254912,20in Monitor,1,109.99,09/04/19 09:11,"429 4th St, Boston, MA 02215" +254913,27in FHD Monitor,1,149.99,09/30/19 19:43,"603 12th St, Atlanta, GA 30301" +254914,AAA Batteries (4-pack),1,2.99,09/04/19 13:56,"99 9th St, San Francisco, CA 94016" +254915,USB-C Charging Cable,1,11.95,09/08/19 20:44,"460 Hill St, Los Angeles, CA 90001" +254916,AAA Batteries (4-pack),2,2.99,09/12/19 08:22,"859 2nd St, San Francisco, CA 94016" +254917,Google Phone,1,600,09/16/19 16:03,"845 Highland St, Atlanta, GA 30301" +254918,Apple Airpods Headphones,1,150,09/20/19 23:09,"629 Lake St, San Francisco, CA 94016" +254919,Apple Airpods Headphones,1,150,09/05/19 19:09,"683 11th St, New York City, NY 10001" +254920,Bose SoundSport Headphones,1,99.99,09/20/19 14:06,"975 Main St, Dallas, TX 75001" +254921,USB-C Charging Cable,1,11.95,09/06/19 01:46,"364 Church St, San Francisco, CA 94016" +254922,USB-C Charging Cable,1,11.95,09/19/19 07:18,"403 13th St, Los Angeles, CA 90001" +254923,Lightning Charging Cable,1,14.95,09/21/19 19:36,"704 Washington St, Atlanta, GA 30301" +254924,Lightning Charging Cable,1,14.95,09/01/19 09:16,"357 Lakeview St, New York City, NY 10001" +254925,Wired Headphones,1,11.99,09/01/19 12:33,"409 6th St, Los Angeles, CA 90001" +254926,Bose SoundSport Headphones,1,99.99,09/20/19 17:42,"66 Spruce St, Los Angeles, CA 90001" +254927,Wired Headphones,1,11.99,09/23/19 20:55,"392 Meadow St, Boston, MA 02215" +254928,Bose SoundSport Headphones,1,99.99,09/26/19 10:47,"988 11th St, San Francisco, CA 94016" +254929,AA Batteries (4-pack),1,3.84,09/30/19 07:02,"13 Cherry St, Boston, MA 02215" +254930,Flatscreen TV,1,300,09/13/19 14:41,"690 11th St, Austin, TX 73301" +254931,Lightning Charging Cable,1,14.95,09/05/19 09:58,"892 Lincoln St, Austin, TX 73301" +254932,AAA Batteries (4-pack),1,2.99,09/01/19 10:21,"15 North St, New York City, NY 10001" +254933,AA Batteries (4-pack),1,3.84,09/14/19 11:49,"717 Willow St, New York City, NY 10001" +254934,AA Batteries (4-pack),4,3.84,09/13/19 09:26,"609 10th St, Los Angeles, CA 90001" +254935,Lightning Charging Cable,1,14.95,09/04/19 20:10,"511 Church St, Boston, MA 02215" +254936,AAA Batteries (4-pack),2,2.99,09/24/19 18:22,"986 Elm St, New York City, NY 10001" +254937,Wired Headphones,1,11.99,09/08/19 10:18,"314 Dogwood St, Boston, MA 02215" +254938,Lightning Charging Cable,1,14.95,09/03/19 18:51,"267 Park St, Seattle, WA 98101" +254939,27in FHD Monitor,1,149.99,09/05/19 18:23,"420 6th St, Boston, MA 02215" +254940,Macbook Pro Laptop,1,1700,09/28/19 18:44,"299 Cedar St, Boston, MA 02215" +254941,USB-C Charging Cable,1,11.95,09/09/19 21:21,"443 Cherry St, Austin, TX 73301" +254942,AAA Batteries (4-pack),1,2.99,09/06/19 13:28,"166 Wilson St, Portland, OR 97035" +254943,Wired Headphones,1,11.99,09/21/19 13:52,"888 Cherry St, San Francisco, CA 94016" +254944,Wired Headphones,1,11.99,09/05/19 09:17,"606 1st St, Los Angeles, CA 90001" +254945,27in 4K Gaming Monitor,1,389.99,09/17/19 23:51,"227 Center St, Atlanta, GA 30301" +254946,AAA Batteries (4-pack),2,2.99,09/26/19 20:11,"657 Cherry St, Dallas, TX 75001" +254947,Wired Headphones,1,11.99,09/02/19 12:09,"810 Washington St, Austin, TX 73301" +254948,Wired Headphones,1,11.99,09/26/19 10:32,"253 Madison St, Seattle, WA 98101" +254949,Apple Airpods Headphones,1,150,09/23/19 08:23,"517 Center St, Seattle, WA 98101" +254950,Wired Headphones,1,11.99,09/25/19 13:24,"16 Wilson St, Dallas, TX 75001" +254951,Wired Headphones,1,11.99,09/26/19 16:19,"624 Ridge St, Boston, MA 02215" +254952,AAA Batteries (4-pack),1,2.99,09/20/19 23:11,"88 Dogwood St, Seattle, WA 98101" +254953,27in 4K Gaming Monitor,1,389.99,09/24/19 21:22,"738 10th St, New York City, NY 10001" +254954,USB-C Charging Cable,1,11.95,09/20/19 14:30,"243 Cedar St, New York City, NY 10001" +254955,Wired Headphones,1,11.99,09/02/19 20:05,"531 Maple St, San Francisco, CA 94016" +254956,Lightning Charging Cable,1,14.95,09/01/19 21:40,"306 Ridge St, San Francisco, CA 94016" +254957,AAA Batteries (4-pack),1,2.99,09/08/19 14:29,"558 Jefferson St, Los Angeles, CA 90001" +254958,USB-C Charging Cable,1,11.95,09/18/19 10:55,"559 13th St, New York City, NY 10001" +254959,AA Batteries (4-pack),1,3.84,09/30/19 17:01,"309 Sunset St, New York City, NY 10001" +254960,AA Batteries (4-pack),1,3.84,09/30/19 12:01,"638 Pine St, San Francisco, CA 94016" +254961,AAA Batteries (4-pack),1,2.99,09/18/19 09:12,"38 Madison St, Boston, MA 02215" +254962,Wired Headphones,1,11.99,09/28/19 14:04,"392 Highland St, Los Angeles, CA 90001" +254963,ThinkPad Laptop,1,999.99,09/15/19 20:26,"154 9th St, Los Angeles, CA 90001" +254964,Vareebadd Phone,1,400,09/02/19 18:47,"938 2nd St, Portland, OR 97035" +254965,Wired Headphones,1,11.99,09/26/19 23:04,"208 9th St, Los Angeles, CA 90001" +254966,Wired Headphones,1,11.99,09/07/19 18:22,"144 Pine St, Dallas, TX 75001" +254967,Lightning Charging Cable,1,14.95,09/10/19 12:32,"493 Johnson St, San Francisco, CA 94016" +254968,ThinkPad Laptop,1,999.99,09/08/19 16:57,"800 North St, Atlanta, GA 30301" +254969,Lightning Charging Cable,1,14.95,09/23/19 19:01,"378 Walnut St, San Francisco, CA 94016" +254970,Bose SoundSport Headphones,1,99.99,09/24/19 14:41,"332 Maple St, San Francisco, CA 94016" +254971,Vareebadd Phone,1,400,09/14/19 08:12,"435 Lincoln St, Boston, MA 02215" +254972,USB-C Charging Cable,1,11.95,09/19/19 16:05,"662 Washington St, San Francisco, CA 94016" +254973,Google Phone,1,600,09/12/19 08:07,"163 Madison St, San Francisco, CA 94016" +254973,USB-C Charging Cable,1,11.95,09/12/19 08:07,"163 Madison St, San Francisco, CA 94016" +254973,Bose SoundSport Headphones,1,99.99,09/12/19 08:07,"163 Madison St, San Francisco, CA 94016" +254974,USB-C Charging Cable,1,11.95,09/09/19 13:00,"312 Dogwood St, New York City, NY 10001" +254975,USB-C Charging Cable,1,11.95,09/18/19 10:52,"111 12th St, Atlanta, GA 30301" +254976,34in Ultrawide Monitor,1,379.99,09/18/19 19:08,"234 Madison St, Austin, TX 73301" +254977,AAA Batteries (4-pack),1,2.99,09/01/19 12:18,"847 Ridge St, Boston, MA 02215" +254978,Wired Headphones,1,11.99,09/17/19 19:25,"214 8th St, Austin, TX 73301" +254979,Lightning Charging Cable,1,14.95,09/01/19 21:13,"865 Maple St, Austin, TX 73301" +254980,Bose SoundSport Headphones,1,99.99,09/24/19 08:15,"254 Hickory St, Boston, MA 02215" +254981,USB-C Charging Cable,1,11.95,09/28/19 17:11,"781 Spruce St, San Francisco, CA 94016" +254982,Apple Airpods Headphones,1,150,09/03/19 09:31,"709 Madison St, New York City, NY 10001" +254983,iPhone,1,700,09/17/19 15:32,"799 Cedar St, Dallas, TX 75001" +254983,LG Washing Machine,1,600.0,09/17/19 15:32,"799 Cedar St, Dallas, TX 75001" +254984,AAA Batteries (4-pack),1,2.99,09/24/19 19:41,"307 Wilson St, Austin, TX 73301" +254985,ThinkPad Laptop,1,999.99,09/23/19 12:06,"786 9th St, Los Angeles, CA 90001" +254986,34in Ultrawide Monitor,1,379.99,09/27/19 22:02,"827 7th St, San Francisco, CA 94016" +254987,Lightning Charging Cable,2,14.95,09/01/19 17:21,"126 South St, New York City, NY 10001" +254988,LG Dryer,1,600.0,09/12/19 00:23,"211 Lake St, Dallas, TX 75001" +254989,Apple Airpods Headphones,1,150,09/16/19 12:08,"401 10th St, Dallas, TX 75001" +254990,Lightning Charging Cable,1,14.95,09/01/19 18:22,"301 10th St, New York City, NY 10001" +254991,AAA Batteries (4-pack),1,2.99,09/22/19 11:07,"924 Adams St, San Francisco, CA 94016" +254992,Apple Airpods Headphones,1,150,09/26/19 16:02,"217 Johnson St, Atlanta, GA 30301" +254993,Apple Airpods Headphones,1,150,09/01/19 18:24,"487 Cedar St, Atlanta, GA 30301" +254994,AAA Batteries (4-pack),2,2.99,09/12/19 13:30,"413 Park St, Seattle, WA 98101" +254995,20in Monitor,1,109.99,09/14/19 17:02,"859 West St, Boston, MA 02215" +254996,27in 4K Gaming Monitor,1,389.99,09/14/19 21:59,"141 Maple St, Los Angeles, CA 90001" +254997,USB-C Charging Cable,1,11.95,09/01/19 12:44,"515 Cedar St, Portland, OR 97035" +254998,27in 4K Gaming Monitor,1,389.99,09/01/19 07:48,"504 10th St, Los Angeles, CA 90001" +254999,20in Monitor,1,109.99,09/19/19 13:40,"360 4th St, Los Angeles, CA 90001" +255000,AA Batteries (4-pack),1,3.84,09/29/19 23:57,"903 Elm St, Boston, MA 02215" +255001,Google Phone,1,600,09/29/19 20:25,"794 Meadow St, San Francisco, CA 94016" +255002,34in Ultrawide Monitor,1,379.99,09/29/19 13:08,"42 11th St, New York City, NY 10001" +255003,AAA Batteries (4-pack),2,2.99,09/17/19 20:54,"939 11th St, Boston, MA 02215" +255004,AAA Batteries (4-pack),1,2.99,09/01/19 17:12,"51 Maple St, San Francisco, CA 94016" +255004,USB-C Charging Cable,1,11.95,09/01/19 17:12,"51 Maple St, San Francisco, CA 94016" +255005,Lightning Charging Cable,1,14.95,09/04/19 12:34,"664 Lake St, Atlanta, GA 30301" +255005,Lightning Charging Cable,2,14.95,09/04/19 12:34,"664 Lake St, Atlanta, GA 30301" +255006,AA Batteries (4-pack),2,3.84,09/20/19 12:25,"148 Willow St, New York City, NY 10001" +255007,Apple Airpods Headphones,1,150,09/30/19 02:53,"466 Willow St, San Francisco, CA 94016" +255008,27in FHD Monitor,1,149.99,09/14/19 10:28,"931 11th St, San Francisco, CA 94016" +255009,USB-C Charging Cable,1,11.95,09/18/19 15:19,"441 Madison St, San Francisco, CA 94016" +255010,Lightning Charging Cable,1,14.95,09/10/19 15:43,"277 River St, San Francisco, CA 94016" +255011,USB-C Charging Cable,1,11.95,09/16/19 00:54,"303 Walnut St, New York City, NY 10001" +255012,Apple Airpods Headphones,1,150,09/11/19 20:52,"411 11th St, Seattle, WA 98101" +255013,Lightning Charging Cable,1,14.95,09/30/19 09:27,"251 Hickory St, Dallas, TX 75001" +255014,27in FHD Monitor,1,149.99,09/30/19 16:40,"697 10th St, Portland, OR 97035" +255015,Apple Airpods Headphones,1,150,09/02/19 16:32,"465 Hickory St, New York City, NY 10001" +255016,Bose SoundSport Headphones,1,99.99,09/27/19 15:10,"427 4th St, Los Angeles, CA 90001" +255016,Lightning Charging Cable,1,14.95,09/27/19 15:10,"427 4th St, Los Angeles, CA 90001" +255017,27in FHD Monitor,1,149.99,09/27/19 19:33,"183 Washington St, New York City, NY 10001" +255018,iPhone,1,700,09/15/19 13:13,"862 Highland St, New York City, NY 10001" +255019,Bose SoundSport Headphones,1,99.99,09/11/19 21:32,"392 Madison St, Portland, OR 97035" +255020,27in 4K Gaming Monitor,1,389.99,09/27/19 14:25,"1 Lake St, San Francisco, CA 94016" +255021,Wired Headphones,1,11.99,09/28/19 02:23,"833 West St, Seattle, WA 98101" +255022,USB-C Charging Cable,1,11.95,09/06/19 13:57,"328 7th St, Los Angeles, CA 90001" +255023,20in Monitor,1,109.99,09/28/19 21:21,"358 South St, Seattle, WA 98101" +255024,27in 4K Gaming Monitor,1,389.99,09/19/19 10:27,"419 Chestnut St, New York City, NY 10001" +255025,AAA Batteries (4-pack),1,2.99,09/18/19 11:31,"955 Main St, New York City, NY 10001" +255026,USB-C Charging Cable,1,11.95,09/25/19 16:20,"712 River St, San Francisco, CA 94016" +255027,Bose SoundSport Headphones,1,99.99,09/15/19 01:18,"150 Dogwood St, San Francisco, CA 94016" +255028,34in Ultrawide Monitor,1,379.99,09/29/19 09:57,"927 Spruce St, San Francisco, CA 94016" +255029,AA Batteries (4-pack),1,3.84,09/14/19 11:37,"670 9th St, Boston, MA 02215" +255030,Macbook Pro Laptop,1,1700,09/28/19 21:14,"278 Chestnut St, Dallas, TX 75001" +255031,AA Batteries (4-pack),2,3.84,09/14/19 13:42,"20 1st St, Los Angeles, CA 90001" +255032,Wired Headphones,2,11.99,09/01/19 16:26,"232 5th St, Atlanta, GA 30301" +255033,Lightning Charging Cable,1,14.95,09/12/19 12:48,"957 Jackson St, San Francisco, CA 94016" +255034,Vareebadd Phone,1,400,09/28/19 22:14,"745 Park St, Atlanta, GA 30301" +255035,Lightning Charging Cable,1,14.95,09/06/19 12:00,"145 Main St, Dallas, TX 75001" +255036,34in Ultrawide Monitor,1,379.99,09/02/19 20:14,"477 Spruce St, Los Angeles, CA 90001" +255037,Wired Headphones,1,11.99,09/04/19 00:30,"613 Lakeview St, Los Angeles, CA 90001" +255038,Bose SoundSport Headphones,1,99.99,09/10/19 18:38,"852 12th St, Los Angeles, CA 90001" +255039,AAA Batteries (4-pack),2,2.99,09/23/19 14:09,"104 West St, New York City, NY 10001" +255040,Vareebadd Phone,1,400,09/10/19 08:02,"291 5th St, Los Angeles, CA 90001" +255041,27in 4K Gaming Monitor,1,389.99,09/29/19 20:02,"199 4th St, Dallas, TX 75001" +255042,Lightning Charging Cable,1,14.95,09/17/19 10:55,"258 Elm St, San Francisco, CA 94016" +255043,Wired Headphones,1,11.99,09/26/19 09:13,"114 8th St, Los Angeles, CA 90001" +255044,Lightning Charging Cable,1,14.95,09/26/19 20:19,"36 Jefferson St, San Francisco, CA 94016" +255045,USB-C Charging Cable,1,11.95,09/13/19 20:24,"833 Dogwood St, Atlanta, GA 30301" +255046,Apple Airpods Headphones,1,150,09/27/19 16:24,"310 10th St, Los Angeles, CA 90001" +255047,USB-C Charging Cable,1,11.95,09/10/19 09:27,"494 8th St, Seattle, WA 98101" +255048,Lightning Charging Cable,1,14.95,09/01/19 12:49,"412 North St, San Francisco, CA 94016" +255048,USB-C Charging Cable,1,11.95,09/01/19 12:49,"412 North St, San Francisco, CA 94016" +255049,Lightning Charging Cable,1,14.95,09/24/19 16:44,"336 River St, Dallas, TX 75001" +255050,Wired Headphones,1,11.99,09/20/19 16:37,"307 Cedar St, San Francisco, CA 94016" +255051,Lightning Charging Cable,1,14.95,09/12/19 11:05,"441 Dogwood St, Boston, MA 02215" +255052,Google Phone,1,600,09/04/19 14:40,"400 8th St, San Francisco, CA 94016" +255053,27in FHD Monitor,1,149.99,09/14/19 12:30,"116 Highland St, Portland, OR 97035" +255054,Wired Headphones,1,11.99,09/18/19 14:01,"328 Chestnut St, Boston, MA 02215" +255055,Lightning Charging Cable,1,14.95,09/16/19 03:56,"559 Chestnut St, San Francisco, CA 94016" +255056,AA Batteries (4-pack),1,3.84,09/03/19 18:50,"249 Chestnut St, Los Angeles, CA 90001" +255057,AAA Batteries (4-pack),1,2.99,09/04/19 12:35,"940 Forest St, Dallas, TX 75001" +255058,Bose SoundSport Headphones,1,99.99,09/24/19 15:56,"307 14th St, Los Angeles, CA 90001" +255059,AAA Batteries (4-pack),2,2.99,09/15/19 12:38,"89 Church St, Austin, TX 73301" +255060,27in FHD Monitor,1,149.99,09/02/19 13:42,"249 Jefferson St, Los Angeles, CA 90001" +255061,USB-C Charging Cable,1,11.95,09/12/19 08:56,"31 Maple St, San Francisco, CA 94016" +255062,AAA Batteries (4-pack),1,2.99,09/20/19 14:43,"318 1st St, San Francisco, CA 94016" +255063,USB-C Charging Cable,1,11.95,09/10/19 19:08,"948 14th St, Los Angeles, CA 90001" +255064,Vareebadd Phone,1,400,09/13/19 11:03,"336 Hill St, Atlanta, GA 30301" +255064,Apple Airpods Headphones,1,150,09/13/19 11:03,"336 Hill St, Atlanta, GA 30301" +255065,iPhone,1,700,09/16/19 23:50,"543 Church St, Dallas, TX 75001" +255065,Lightning Charging Cable,1,14.95,09/16/19 23:50,"543 Church St, Dallas, TX 75001" +255066,AA Batteries (4-pack),1,3.84,09/11/19 16:42,"562 Dogwood St, San Francisco, CA 94016" +255067,AAA Batteries (4-pack),3,2.99,09/04/19 01:12,"850 Walnut St, Boston, MA 02215" +255068,USB-C Charging Cable,1,11.95,09/11/19 15:42,"673 River St, San Francisco, CA 94016" +255069,AAA Batteries (4-pack),2,2.99,09/26/19 08:52,"799 Ridge St, Austin, TX 73301" +255070,Apple Airpods Headphones,1,150,09/09/19 18:28,"435 Pine St, Los Angeles, CA 90001" +255071,Lightning Charging Cable,1,14.95,09/13/19 07:32,"485 Pine St, San Francisco, CA 94016" +255072,iPhone,1,700,09/22/19 23:13,"97 Cedar St, New York City, NY 10001" +255073,AAA Batteries (4-pack),1,2.99,09/07/19 22:17,"445 Cherry St, San Francisco, CA 94016" +255074,AA Batteries (4-pack),3,3.84,09/08/19 15:48,"347 Park St, San Francisco, CA 94016" +255075,27in FHD Monitor,1,149.99,09/16/19 21:13,"338 4th St, Los Angeles, CA 90001" +255076,20in Monitor,1,109.99,09/24/19 10:52,"468 8th St, Los Angeles, CA 90001" +255077,Bose SoundSport Headphones,1,99.99,09/20/19 13:35,"934 4th St, San Francisco, CA 94016" +255078,Apple Airpods Headphones,1,150,09/23/19 11:42,"614 9th St, San Francisco, CA 94016" +255079,USB-C Charging Cable,1,11.95,09/16/19 13:50,"119 14th St, New York City, NY 10001" +255080,27in FHD Monitor,1,149.99,09/29/19 19:49,"872 6th St, Seattle, WA 98101" +255081,27in 4K Gaming Monitor,1,389.99,09/15/19 13:11,"732 Hill St, Los Angeles, CA 90001" +255082,USB-C Charging Cable,1,11.95,09/07/19 12:47,"295 Church St, San Francisco, CA 94016" +255083,USB-C Charging Cable,1,11.95,09/01/19 08:44,"953 Lake St, Boston, MA 02215" +255084,Flatscreen TV,1,300,09/12/19 22:08,"136 9th St, Atlanta, GA 30301" +255085,USB-C Charging Cable,1,11.95,09/19/19 20:52,"312 13th St, San Francisco, CA 94016" +255086,Google Phone,1,600,09/24/19 21:37,"716 9th St, Boston, MA 02215" +255087,Wired Headphones,1,11.99,09/19/19 10:42,"963 Chestnut St, Seattle, WA 98101" +255088,USB-C Charging Cable,1,11.95,09/27/19 09:05,"150 10th St, Los Angeles, CA 90001" +255089,Bose SoundSport Headphones,1,99.99,09/20/19 11:02,"769 West St, Dallas, TX 75001" +255090,USB-C Charging Cable,1,11.95,09/05/19 18:59,"881 5th St, New York City, NY 10001" +255091,Lightning Charging Cable,1,14.95,09/21/19 19:41,"778 Madison St, Dallas, TX 75001" +255092,Apple Airpods Headphones,1,150,09/13/19 10:26,"575 Hill St, Boston, MA 02215" +255093,34in Ultrawide Monitor,1,379.99,09/13/19 12:53,"665 7th St, Seattle, WA 98101" +255094,AAA Batteries (4-pack),2,2.99,09/17/19 16:07,"481 Madison St, San Francisco, CA 94016" +255095,Wired Headphones,2,11.99,09/02/19 15:55,"255 Madison St, Los Angeles, CA 90001" +255096,Google Phone,1,600,09/12/19 15:19,"250 Hickory St, San Francisco, CA 94016" +255097,iPhone,1,700,09/18/19 16:33,"136 5th St, Los Angeles, CA 90001" +255097,Wired Headphones,1,11.99,09/18/19 16:33,"136 5th St, Los Angeles, CA 90001" +255098,Wired Headphones,1,11.99,09/16/19 14:01,"879 River St, Boston, MA 02215" +255099,20in Monitor,1,109.99,09/04/19 09:12,"299 Chestnut St, Los Angeles, CA 90001" +255100,iPhone,1,700,09/09/19 10:45,"913 Hill St, Los Angeles, CA 90001" +255101,AAA Batteries (4-pack),2,2.99,09/26/19 15:05,"785 Madison St, Portland, OR 97035" +255102,LG Dryer,1,600.0,09/12/19 14:22,"399 7th St, San Francisco, CA 94016" +255103,AAA Batteries (4-pack),3,2.99,09/02/19 16:03,"841 Jefferson St, Boston, MA 02215" +255104,Lightning Charging Cable,1,14.95,09/18/19 19:43,"189 Highland St, San Francisco, CA 94016" +255105,Lightning Charging Cable,1,14.95,09/25/19 13:23,"222 4th St, San Francisco, CA 94016" +255106,USB-C Charging Cable,1,11.95,09/29/19 16:16,"674 Ridge St, San Francisco, CA 94016" +255107,AA Batteries (4-pack),2,3.84,09/14/19 21:11,"733 13th St, Los Angeles, CA 90001" +255108,AAA Batteries (4-pack),1,2.99,09/10/19 17:37,"12 Sunset St, San Francisco, CA 94016" +255109,AAA Batteries (4-pack),1,2.99,09/14/19 12:18,"343 River St, Dallas, TX 75001" +255110,AA Batteries (4-pack),1,3.84,09/13/19 09:25,"725 North St, Atlanta, GA 30301" +255111,Apple Airpods Headphones,1,150,09/11/19 01:33,"740 2nd St, Portland, OR 97035" +255112,AAA Batteries (4-pack),1,2.99,09/23/19 12:41,"185 10th St, San Francisco, CA 94016" +255113,USB-C Charging Cable,1,11.95,09/23/19 21:43,"549 Johnson St, Atlanta, GA 30301" +255114,34in Ultrawide Monitor,1,379.99,09/17/19 12:02,"837 Wilson St, Los Angeles, CA 90001" +255115,AA Batteries (4-pack),1,3.84,09/18/19 01:05,"341 Church St, New York City, NY 10001" +255116,USB-C Charging Cable,1,11.95,09/18/19 17:04,"485 Johnson St, Portland, OR 97035" +255117,AAA Batteries (4-pack),2,2.99,09/28/19 08:35,"48 Hickory St, Dallas, TX 75001" +255118,AA Batteries (4-pack),1,3.84,09/10/19 13:46,"677 Park St, San Francisco, CA 94016" +255119,AA Batteries (4-pack),1,3.84,09/27/19 20:39,"33 Dogwood St, Seattle, WA 98101" +255120,27in 4K Gaming Monitor,1,389.99,09/19/19 22:00,"459 North St, Boston, MA 02215" +255120,Lightning Charging Cable,1,14.95,09/19/19 22:00,"459 North St, Boston, MA 02215" +255121,Google Phone,1,600,09/14/19 17:05,"114 10th St, Los Angeles, CA 90001" +255122,AAA Batteries (4-pack),1,2.99,09/30/19 17:21,"196 Spruce St, Los Angeles, CA 90001" +255123,USB-C Charging Cable,1,11.95,09/22/19 13:44,"955 4th St, Los Angeles, CA 90001" +255124,iPhone,1,700,09/14/19 11:35,"575 Church St, Dallas, TX 75001" +255125,Vareebadd Phone,1,400,09/22/19 19:05,"872 West St, San Francisco, CA 94016" +255125,Wired Headphones,1,11.99,09/22/19 19:05,"872 West St, San Francisco, CA 94016" +255126,USB-C Charging Cable,3,11.95,09/21/19 23:33,"72 Chestnut St, Seattle, WA 98101" +255127,27in FHD Monitor,1,149.99,09/05/19 10:06,"522 Elm St, Boston, MA 02215" +255128,Apple Airpods Headphones,1,150,09/12/19 14:47,"73 South St, New York City, NY 10001" +255129,AAA Batteries (4-pack),1,2.99,09/06/19 15:03,"807 Lincoln St, Atlanta, GA 30301" +255130,27in FHD Monitor,1,149.99,09/17/19 17:02,"289 Washington St, Los Angeles, CA 90001" +255131,27in FHD Monitor,1,149.99,09/23/19 02:17,"212 6th St, Seattle, WA 98101" +255132,USB-C Charging Cable,1,11.95,09/16/19 07:00,"148 Cherry St, Los Angeles, CA 90001" +255133,Apple Airpods Headphones,1,150,09/29/19 14:45,"675 12th St, San Francisco, CA 94016" +255134,Lightning Charging Cable,2,14.95,09/05/19 10:22,"344 5th St, San Francisco, CA 94016" +255135,Wired Headphones,1,11.99,09/21/19 13:37,"839 Elm St, San Francisco, CA 94016" +255136,USB-C Charging Cable,1,11.95,09/15/19 10:53,"360 1st St, New York City, NY 10001" +255137,Macbook Pro Laptop,1,1700,09/23/19 11:30,"170 14th St, San Francisco, CA 94016" +255138,27in FHD Monitor,1,149.99,09/05/19 14:44,"640 Lincoln St, Atlanta, GA 30301" +255139,Apple Airpods Headphones,1,150,09/09/19 22:10,"618 Adams St, New York City, NY 10001" +255140,Apple Airpods Headphones,1,150,09/10/19 07:55,"662 6th St, Dallas, TX 75001" +255141,Wired Headphones,1,11.99,09/28/19 22:40,"596 14th St, New York City, NY 10001" +255142,USB-C Charging Cable,1,11.95,09/05/19 19:14,"154 Jackson St, New York City, NY 10001" +255143,Apple Airpods Headphones,1,150,09/24/19 12:17,"222 Meadow St, Boston, MA 02215" +255144,AA Batteries (4-pack),1,3.84,09/13/19 11:24,"258 Johnson St, New York City, NY 10001" +255145,Bose SoundSport Headphones,1,99.99,09/07/19 09:25,"90 Maple St, Atlanta, GA 30301" +255146,Flatscreen TV,1,300,09/23/19 15:22,"479 Adams St, Atlanta, GA 30301" +255147,27in 4K Gaming Monitor,1,389.99,09/01/19 06:16,"164 Spruce St, Austin, TX 73301" +255148,Flatscreen TV,1,300,09/01/19 13:41,"242 Cherry St, Portland, OR 97035" +255149,34in Ultrawide Monitor,1,379.99,09/24/19 18:24,"711 Park St, Atlanta, GA 30301" +255150,Flatscreen TV,1,300,09/29/19 18:22,"191 Dogwood St, Seattle, WA 98101" +255151,27in FHD Monitor,1,149.99,09/24/19 11:09,"658 Center St, Dallas, TX 75001" +255152,Lightning Charging Cable,1,14.95,09/02/19 09:19,"45 Maple St, Los Angeles, CA 90001" +255153,AA Batteries (4-pack),1,3.84,09/03/19 13:50,"460 Lakeview St, Seattle, WA 98101" +255154,Vareebadd Phone,1,400,09/30/19 15:41,"610 9th St, Atlanta, GA 30301" +255155,USB-C Charging Cable,1,11.95,09/22/19 14:11,"115 Jefferson St, Dallas, TX 75001" +255156,Bose SoundSport Headphones,1,99.99,09/05/19 20:43,"194 Johnson St, Dallas, TX 75001" +255157,Wired Headphones,1,11.99,09/06/19 20:08,"295 Center St, Boston, MA 02215" +255158,Vareebadd Phone,1,400,09/04/19 22:54,"70 Wilson St, Austin, TX 73301" +255158,USB-C Charging Cable,1,11.95,09/04/19 22:54,"70 Wilson St, Austin, TX 73301" +255159,AAA Batteries (4-pack),1,2.99,09/24/19 13:49,"474 Main St, San Francisco, CA 94016" +255160,iPhone,1,700,09/17/19 22:38,"212 Hill St, New York City, NY 10001" +255161,Apple Airpods Headphones,1,150,09/18/19 18:13,"892 Johnson St, Boston, MA 02215" +255162,AA Batteries (4-pack),1,3.84,09/22/19 12:15,"505 Pine St, Seattle, WA 98101" +255163,Flatscreen TV,1,300,09/05/19 20:13,"81 4th St, Austin, TX 73301" +255164,Bose SoundSport Headphones,1,99.99,09/28/19 11:49,"135 Walnut St, Portland, OR 97035" +255165,27in 4K Gaming Monitor,1,389.99,09/04/19 10:22,"915 9th St, San Francisco, CA 94016" +255166,Bose SoundSport Headphones,1,99.99,09/29/19 19:21,"877 10th St, New York City, NY 10001" +255167,Apple Airpods Headphones,1,150,09/29/19 16:41,"452 Johnson St, Boston, MA 02215" +255168,27in 4K Gaming Monitor,1,389.99,09/03/19 13:01,"128 12th St, San Francisco, CA 94016" +255169,Lightning Charging Cable,1,14.95,09/28/19 17:46,"637 12th St, Los Angeles, CA 90001" +255170,27in FHD Monitor,1,149.99,09/15/19 21:06,"213 West St, San Francisco, CA 94016" +255171,AA Batteries (4-pack),2,3.84,09/03/19 20:37,"842 Madison St, San Francisco, CA 94016" +255172,AA Batteries (4-pack),1,3.84,09/06/19 11:32,"970 Wilson St, Atlanta, GA 30301" +255173,Wired Headphones,1,11.99,09/07/19 22:08,"819 Washington St, Portland, OR 97035" +255174,Macbook Pro Laptop,1,1700,09/29/19 12:56,"232 Madison St, New York City, NY 10001" +255175,Apple Airpods Headphones,1,150,09/26/19 23:07,"699 9th St, San Francisco, CA 94016" +255176,Lightning Charging Cable,1,14.95,09/21/19 16:32,"697 Forest St, New York City, NY 10001" +255177,AAA Batteries (4-pack),1,2.99,09/01/19 16:41,"128 Hill St, Boston, MA 02215" +255178,iPhone,1,700,09/15/19 21:12,"158 West St, Boston, MA 02215" +255179,Apple Airpods Headphones,1,150,09/18/19 11:31,"502 Hickory St, Seattle, WA 98101" +255180,AA Batteries (4-pack),1,3.84,09/04/19 21:45,"250 6th St, San Francisco, CA 94016" +255181,Bose SoundSport Headphones,1,99.99,09/21/19 15:29,"462 Chestnut St, Boston, MA 02215" +255182,AAA Batteries (4-pack),4,2.99,09/14/19 18:08,"400 Jackson St, Los Angeles, CA 90001" +255183,ThinkPad Laptop,1,999.99,09/18/19 23:34,"523 Forest St, San Francisco, CA 94016" +255184,Apple Airpods Headphones,1,150,09/07/19 07:05,"269 12th St, Seattle, WA 98101" +255185,34in Ultrawide Monitor,1,379.99,09/28/19 00:05,"132 Walnut St, New York City, NY 10001" +255186,USB-C Charging Cable,1,11.95,09/09/19 18:36,"141 5th St, New York City, NY 10001" +255187,Wired Headphones,1,11.99,09/03/19 14:41,"884 1st St, New York City, NY 10001" +255188,27in 4K Gaming Monitor,1,389.99,09/18/19 19:02,"858 North St, San Francisco, CA 94016" +255189,AAA Batteries (4-pack),1,2.99,09/17/19 13:19,"192 Center St, Dallas, TX 75001" +255190,AA Batteries (4-pack),1,3.84,09/13/19 19:55,"162 Adams St, Austin, TX 73301" +255191,USB-C Charging Cable,1,11.95,09/05/19 18:59,"689 Dogwood St, Austin, TX 73301" +255192,AAA Batteries (4-pack),2,2.99,09/13/19 19:57,"220 Adams St, Boston, MA 02215" +255193,AAA Batteries (4-pack),1,2.99,09/25/19 10:38,"904 Elm St, New York City, NY 10001" +255194,Apple Airpods Headphones,1,150,09/13/19 14:25,"789 Forest St, San Francisco, CA 94016" +255195,Lightning Charging Cable,1,14.95,09/13/19 10:20,"686 Lake St, San Francisco, CA 94016" +255196,iPhone,1,700,09/08/19 02:39,"882 Washington St, Atlanta, GA 30301" +255197,Apple Airpods Headphones,1,150,09/15/19 23:34,"204 Jefferson St, New York City, NY 10001" +255198,Lightning Charging Cable,2,14.95,09/30/19 12:43,"215 Ridge St, Dallas, TX 75001" +255199,34in Ultrawide Monitor,1,379.99,09/28/19 14:18,"506 4th St, New York City, NY 10001" +255200,Wired Headphones,1,11.99,09/06/19 06:45,"716 Cedar St, Seattle, WA 98101" +255201,Wired Headphones,1,11.99,09/02/19 22:46,"540 Lincoln St, New York City, NY 10001" +255202,20in Monitor,1,109.99,09/18/19 12:54,"582 River St, Portland, OR 97035" +255203,Wired Headphones,1,11.99,09/26/19 22:04,"747 Johnson St, New York City, NY 10001" +255204,27in FHD Monitor,1,149.99,09/29/19 21:45,"752 Highland St, San Francisco, CA 94016" +255205,Lightning Charging Cable,1,14.95,09/17/19 08:49,"231 Church St, Dallas, TX 75001" +255206,27in FHD Monitor,1,149.99,09/13/19 23:49,"947 Spruce St, Seattle, WA 98101" +255207,AAA Batteries (4-pack),1,2.99,09/01/19 23:19,"838 Spruce St, San Francisco, CA 94016" +255208,AA Batteries (4-pack),3,3.84,09/15/19 16:37,"285 Johnson St, Seattle, WA 98101" +255209,AAA Batteries (4-pack),2,2.99,09/14/19 10:13,"164 Lakeview St, Atlanta, GA 30301" +255210,Apple Airpods Headphones,1,150,09/25/19 06:22,"331 11th St, Seattle, WA 98101" +255211,Vareebadd Phone,1,400,09/08/19 17:10,"908 Hickory St, New York City, NY 10001" +255212,Bose SoundSport Headphones,1,99.99,09/21/19 14:22,"666 River St, San Francisco, CA 94016" +255213,Lightning Charging Cable,1,14.95,09/28/19 15:49,"214 Ridge St, Los Angeles, CA 90001" +255214,AA Batteries (4-pack),1,3.84,09/03/19 12:23,"392 Church St, Atlanta, GA 30301" +255215,Macbook Pro Laptop,1,1700,09/19/19 11:17,"346 Jefferson St, Boston, MA 02215" +255216,Lightning Charging Cable,1,14.95,10/01/19 00:26,"486 Meadow St, Los Angeles, CA 90001" +255217,iPhone,1,700,09/17/19 05:23,"422 7th St, Dallas, TX 75001" +255217,Lightning Charging Cable,1,14.95,09/17/19 05:23,"422 7th St, Dallas, TX 75001" +255218,USB-C Charging Cable,1,11.95,09/09/19 18:26,"951 Highland St, New York City, NY 10001" +255219,USB-C Charging Cable,1,11.95,09/24/19 05:18,"818 West St, Los Angeles, CA 90001" +255220,Lightning Charging Cable,1,14.95,09/12/19 02:14,"316 Wilson St, Austin, TX 73301" +255221,27in FHD Monitor,1,149.99,09/27/19 19:39,"227 10th St, Atlanta, GA 30301" +255222,27in 4K Gaming Monitor,1,389.99,09/10/19 13:30,"166 Maple St, New York City, NY 10001" +255223,Bose SoundSport Headphones,1,99.99,09/08/19 19:26,"624 9th St, Dallas, TX 75001" +255224,Wired Headphones,1,11.99,09/11/19 11:49,"314 Lincoln St, Boston, MA 02215" +255225,Wired Headphones,1,11.99,09/03/19 12:42,"230 Hill St, San Francisco, CA 94016" +255226,Vareebadd Phone,1,400,09/12/19 17:17,"182 Johnson St, Los Angeles, CA 90001" +255226,USB-C Charging Cable,1,11.95,09/12/19 17:17,"182 Johnson St, Los Angeles, CA 90001" +255227,USB-C Charging Cable,1,11.95,09/28/19 22:59,"933 13th St, Atlanta, GA 30301" +255228,ThinkPad Laptop,1,999.99,09/07/19 01:57,"332 Johnson St, San Francisco, CA 94016" +255229,Apple Airpods Headphones,1,150,09/14/19 22:52,"808 10th St, Austin, TX 73301" +255230,20in Monitor,1,109.99,09/19/19 23:05,"342 Willow St, San Francisco, CA 94016" +255231,AAA Batteries (4-pack),1,2.99,09/14/19 19:31,"904 Park St, Los Angeles, CA 90001" +255232,AA Batteries (4-pack),1,3.84,09/13/19 18:26,"200 5th St, Los Angeles, CA 90001" +255233,AAA Batteries (4-pack),3,2.99,09/03/19 02:13,"428 Jackson St, Boston, MA 02215" +255234,AAA Batteries (4-pack),1,2.99,09/06/19 14:42,"9 Center St, San Francisco, CA 94016" +255235,USB-C Charging Cable,1,11.95,09/30/19 11:44,"857 Hill St, San Francisco, CA 94016" +255236,Wired Headphones,1,11.99,09/14/19 13:10,"360 Highland St, Los Angeles, CA 90001" +255237,Google Phone,1,600,09/03/19 10:38,"420 Highland St, Seattle, WA 98101" +255238,Lightning Charging Cable,1,14.95,09/15/19 19:45,"747 River St, Portland, OR 97035" +255239,Wired Headphones,1,11.99,09/15/19 16:15,"557 South St, Los Angeles, CA 90001" +255240,Lightning Charging Cable,1,14.95,09/28/19 22:16,"497 Park St, San Francisco, CA 94016" +255241,Wired Headphones,1,11.99,09/23/19 11:23,"3 Adams St, San Francisco, CA 94016" +255242,Lightning Charging Cable,1,14.95,09/11/19 12:32,"377 7th St, San Francisco, CA 94016" +255243,AA Batteries (4-pack),1,3.84,09/30/19 11:28,"813 Park St, San Francisco, CA 94016" +255244,27in 4K Gaming Monitor,1,389.99,09/15/19 14:53,"777 Ridge St, San Francisco, CA 94016" +255245,27in FHD Monitor,1,149.99,09/21/19 00:24,"673 Hickory St, San Francisco, CA 94016" +255246,34in Ultrawide Monitor,1,379.99,09/21/19 13:31,"996 10th St, Boston, MA 02215" +255247,ThinkPad Laptop,1,999.99,09/03/19 22:38,"116 Madison St, Los Angeles, CA 90001" +255248,Vareebadd Phone,1,400,09/27/19 12:36,"490 Main St, Los Angeles, CA 90001" +255248,USB-C Charging Cable,1,11.95,09/27/19 12:36,"490 Main St, Los Angeles, CA 90001" +255249,Wired Headphones,1,11.99,09/25/19 12:12,"338 Park St, Boston, MA 02215" +255250,Lightning Charging Cable,1,14.95,09/27/19 13:19,"116 Madison St, San Francisco, CA 94016" +255251,Lightning Charging Cable,1,14.95,09/30/19 18:52,"738 West St, Dallas, TX 75001" +255252,Lightning Charging Cable,1,14.95,09/12/19 15:14,"461 Highland St, Los Angeles, CA 90001" +255253,27in 4K Gaming Monitor,1,389.99,09/01/19 09:17,"478 West St, Portland, OR 97035" +255254,20in Monitor,1,109.99,09/01/19 09:51,"993 Madison St, New York City, NY 10001" +255255,AA Batteries (4-pack),1,3.84,09/03/19 09:15,"865 9th St, Los Angeles, CA 90001" +255256,Google Phone,1,600,09/17/19 16:49,"658 11th St, San Francisco, CA 94016" +255257,Flatscreen TV,1,300,09/14/19 18:58,"803 Madison St, Los Angeles, CA 90001" +255258,Lightning Charging Cable,1,14.95,09/01/19 20:42,"701 Johnson St, San Francisco, CA 94016" +255259,AAA Batteries (4-pack),2,2.99,09/21/19 18:20,"107 Cherry St, Los Angeles, CA 90001" +255260,34in Ultrawide Monitor,1,379.99,09/20/19 17:37,"188 Lincoln St, Atlanta, GA 30301" +255260,Wired Headphones,1,11.99,09/20/19 17:37,"188 Lincoln St, Atlanta, GA 30301" +255261,Wired Headphones,2,11.99,09/21/19 23:12,"346 Jackson St, Los Angeles, CA 90001" +255262,USB-C Charging Cable,1,11.95,09/12/19 08:46,"604 11th St, Atlanta, GA 30301" +255263,AA Batteries (4-pack),1,3.84,09/19/19 16:30,"458 Jackson St, San Francisco, CA 94016" +255264,AA Batteries (4-pack),2,3.84,09/01/19 14:05,"910 6th St, Boston, MA 02215" +255265,Lightning Charging Cable,1,14.95,09/07/19 16:12,"586 2nd St, Los Angeles, CA 90001" +255266,AAA Batteries (4-pack),1,2.99,09/18/19 20:31,"213 Lake St, San Francisco, CA 94016" +255267,Google Phone,1,600,09/14/19 19:56,"306 Jackson St, Seattle, WA 98101" +255268,Apple Airpods Headphones,1,150,09/27/19 06:57,"995 12th St, San Francisco, CA 94016" +255269,Bose SoundSport Headphones,1,99.99,09/23/19 20:51,"62 Hill St, Boston, MA 02215" +255270,AA Batteries (4-pack),1,3.84,09/11/19 18:52,"149 11th St, Atlanta, GA 30301" +255270,iPhone,1,700,09/11/19 18:52,"149 11th St, Atlanta, GA 30301" +255271,Vareebadd Phone,1,400,09/13/19 21:05,"561 7th St, New York City, NY 10001" +255271,USB-C Charging Cable,1,11.95,09/13/19 21:05,"561 7th St, New York City, NY 10001" +255272,AA Batteries (4-pack),1,3.84,09/11/19 15:14,"620 Meadow St, San Francisco, CA 94016" +255273,USB-C Charging Cable,1,11.95,09/28/19 04:47,"949 Adams St, New York City, NY 10001" +255274,Flatscreen TV,1,300,09/23/19 10:55,"131 South St, San Francisco, CA 94016" +255275,Apple Airpods Headphones,1,150,09/11/19 08:06,"913 8th St, New York City, NY 10001" +255276,Apple Airpods Headphones,1,150,09/08/19 16:32,"980 8th St, Boston, MA 02215" +255277,AA Batteries (4-pack),3,3.84,09/10/19 15:47,"716 Main St, San Francisco, CA 94016" +255278,Bose SoundSport Headphones,1,99.99,09/27/19 19:30,"500 Cedar St, Boston, MA 02215" +255279,AA Batteries (4-pack),2,3.84,09/24/19 13:24,"471 Maple St, New York City, NY 10001" +255280,AAA Batteries (4-pack),2,2.99,09/27/19 20:32,"379 Willow St, Los Angeles, CA 90001" +255281,Wired Headphones,1,11.99,09/25/19 17:40,"578 Madison St, Los Angeles, CA 90001" +255282,Apple Airpods Headphones,1,150,09/28/19 19:58,"746 South St, Los Angeles, CA 90001" +255283,20in Monitor,1,109.99,09/06/19 12:50,"665 Washington St, Dallas, TX 75001" +255284,Wired Headphones,2,11.99,09/30/19 16:43,"940 14th St, San Francisco, CA 94016" +255285,Apple Airpods Headphones,1,150,09/26/19 09:44,"395 Washington St, San Francisco, CA 94016" +255286,20in Monitor,1,109.99,09/28/19 09:20,"656 Lake St, Portland, ME 04101" +255287,AA Batteries (4-pack),1,3.84,09/25/19 22:06,"561 Cherry St, Austin, TX 73301" +255288,AA Batteries (4-pack),1,3.84,09/29/19 17:43,"293 Spruce St, Atlanta, GA 30301" +255289,Lightning Charging Cable,1,14.95,09/28/19 13:51,"72 Lakeview St, San Francisco, CA 94016" +255290,Google Phone,1,600,09/19/19 04:56,"207 River St, Boston, MA 02215" +255290,Wired Headphones,1,11.99,09/19/19 04:56,"207 River St, Boston, MA 02215" +255291,Macbook Pro Laptop,1,1700,09/12/19 21:17,"66 Johnson St, New York City, NY 10001" +255292,AAA Batteries (4-pack),1,2.99,09/30/19 01:06,"237 Jefferson St, Seattle, WA 98101" +255293,Macbook Pro Laptop,1,1700,09/24/19 14:57,"938 Meadow St, San Francisco, CA 94016" +255294,Lightning Charging Cable,1,14.95,09/22/19 17:32,"624 Elm St, San Francisco, CA 94016" +255295,AA Batteries (4-pack),1,3.84,09/06/19 21:37,"427 Jackson St, Austin, TX 73301" +255296,Macbook Pro Laptop,1,1700,09/02/19 07:21,"222 13th St, Los Angeles, CA 90001" +255297,USB-C Charging Cable,1,11.95,09/14/19 15:46,"108 Main St, Seattle, WA 98101" +255298,AAA Batteries (4-pack),2,2.99,09/29/19 08:56,"333 6th St, San Francisco, CA 94016" +255299,AA Batteries (4-pack),1,3.84,09/30/19 15:15,"483 9th St, Seattle, WA 98101" +255300,iPhone,1,700,09/17/19 21:26,"115 Jefferson St, Portland, OR 97035" +255300,Lightning Charging Cable,1,14.95,09/17/19 21:26,"115 Jefferson St, Portland, OR 97035" +255301,AA Batteries (4-pack),1,3.84,09/12/19 09:24,"738 Dogwood St, Boston, MA 02215" +255302,USB-C Charging Cable,1,11.95,09/19/19 09:53,"629 Hickory St, San Francisco, CA 94016" +255303,Lightning Charging Cable,1,14.95,09/16/19 20:45,"992 Jackson St, Dallas, TX 75001" +255304,USB-C Charging Cable,1,11.95,09/05/19 22:39,"984 Forest St, Los Angeles, CA 90001" +255305,AAA Batteries (4-pack),1,2.99,09/18/19 20:28,"556 5th St, San Francisco, CA 94016" +255306,Bose SoundSport Headphones,1,99.99,09/12/19 17:33,"12 11th St, San Francisco, CA 94016" +255307,USB-C Charging Cable,1,11.95,09/10/19 22:23,"168 10th St, Los Angeles, CA 90001" +255308,Lightning Charging Cable,1,14.95,09/09/19 21:50,"934 1st St, Los Angeles, CA 90001" +255309,Lightning Charging Cable,1,14.95,09/25/19 11:37,"663 4th St, Portland, OR 97035" +255310,USB-C Charging Cable,1,11.95,09/11/19 16:55,"140 South St, Boston, MA 02215" +255311,Macbook Pro Laptop,1,1700,09/30/19 12:11,"683 8th St, Dallas, TX 75001" +255312,Apple Airpods Headphones,1,150,09/15/19 16:09,"810 Spruce St, San Francisco, CA 94016" +255313,Lightning Charging Cable,1,14.95,09/11/19 17:30,"455 Hill St, Los Angeles, CA 90001" +255314,Macbook Pro Laptop,1,1700,09/19/19 09:16,"803 Park St, Boston, MA 02215" +255315,AA Batteries (4-pack),1,3.84,09/16/19 20:46,"745 7th St, Portland, OR 97035" +255316,27in 4K Gaming Monitor,1,389.99,09/30/19 18:52,"761 Lakeview St, Portland, ME 04101" +255317,Bose SoundSport Headphones,1,99.99,09/24/19 18:41,"265 Forest St, Boston, MA 02215" +255318,27in 4K Gaming Monitor,1,389.99,09/16/19 16:43,"106 Madison St, Los Angeles, CA 90001" +255319,AA Batteries (4-pack),1,3.84,09/04/19 11:28,"58 Jefferson St, Austin, TX 73301" +255320,USB-C Charging Cable,2,11.95,09/26/19 18:12,"820 Cherry St, Portland, OR 97035" +255321,AA Batteries (4-pack),1,3.84,09/26/19 17:02,"259 13th St, San Francisco, CA 94016" +255322,ThinkPad Laptop,1,999.99,09/14/19 10:23,"559 Jackson St, San Francisco, CA 94016" +255323,Apple Airpods Headphones,1,150,09/14/19 07:40,"179 Elm St, Austin, TX 73301" +255324,Apple Airpods Headphones,1,150,09/11/19 12:27,"536 Jackson St, Seattle, WA 98101" +255325,Wired Headphones,1,11.99,09/12/19 13:19,"780 Hickory St, Atlanta, GA 30301" +255326,AAA Batteries (4-pack),1,2.99,09/18/19 11:16,"690 River St, San Francisco, CA 94016" +255327,USB-C Charging Cable,1,11.95,09/08/19 15:29,"55 Lakeview St, Portland, ME 04101" +255328,USB-C Charging Cable,1,11.95,09/25/19 18:09,"811 1st St, Los Angeles, CA 90001" +255329,Flatscreen TV,1,300,09/02/19 16:41,"605 11th St, San Francisco, CA 94016" +255330,AAA Batteries (4-pack),1,2.99,09/30/19 13:29,"398 River St, New York City, NY 10001" +255331,iPhone,1,700,09/23/19 15:36,"489 2nd St, New York City, NY 10001" +255332,Flatscreen TV,1,300,09/21/19 20:22,"919 Jackson St, Boston, MA 02215" +255333,AAA Batteries (4-pack),1,2.99,09/29/19 16:22,"877 6th St, New York City, NY 10001" +255334,Bose SoundSport Headphones,1,99.99,09/26/19 17:40,"858 Washington St, Los Angeles, CA 90001" +255335,AA Batteries (4-pack),2,3.84,09/07/19 18:55,"685 Spruce St, Los Angeles, CA 90001" +255336,Flatscreen TV,1,300,09/04/19 17:32,"603 Lakeview St, Austin, TX 73301" +255337,Apple Airpods Headphones,1,150,09/28/19 13:36,"482 10th St, Boston, MA 02215" +255338,USB-C Charging Cable,1,11.95,09/16/19 23:57,"578 Wilson St, New York City, NY 10001" +255339,34in Ultrawide Monitor,1,379.99,09/03/19 14:30,"97 Willow St, New York City, NY 10001" +255340,Apple Airpods Headphones,1,150,09/29/19 22:39,"661 9th St, Boston, MA 02215" +255341,20in Monitor,1,109.99,09/01/19 23:19,"576 10th St, New York City, NY 10001" +255342,USB-C Charging Cable,1,11.95,09/28/19 12:31,"648 Jefferson St, New York City, NY 10001" +255343,USB-C Charging Cable,1,11.95,09/25/19 22:58,"559 Center St, New York City, NY 10001" +255344,AA Batteries (4-pack),1,3.84,09/07/19 06:41,"144 West St, Dallas, TX 75001" +255345,AA Batteries (4-pack),1,3.84,09/15/19 18:10,"938 Chestnut St, San Francisco, CA 94016" +255346,ThinkPad Laptop,1,999.99,09/11/19 20:38,"401 4th St, Seattle, WA 98101" +255347,Lightning Charging Cable,1,14.95,09/09/19 19:33,"801 Park St, Los Angeles, CA 90001" +255348,AAA Batteries (4-pack),1,2.99,09/24/19 10:12,"415 Dogwood St, San Francisco, CA 94016" +255349,Lightning Charging Cable,1,14.95,09/07/19 18:33,"265 Wilson St, San Francisco, CA 94016" +255350,AAA Batteries (4-pack),1,2.99,09/16/19 19:07,"302 Willow St, Atlanta, GA 30301" +255351,Bose SoundSport Headphones,1,99.99,09/30/19 09:30,"245 Maple St, Los Angeles, CA 90001" +255352,AA Batteries (4-pack),1,3.84,09/26/19 15:39,"90 Highland St, San Francisco, CA 94016" +255352,Macbook Pro Laptop,1,1700,09/26/19 15:39,"90 Highland St, San Francisco, CA 94016" +255353,Lightning Charging Cable,1,14.95,09/19/19 15:22,"374 9th St, Dallas, TX 75001" +255354,27in 4K Gaming Monitor,1,389.99,09/23/19 16:59,"975 12th St, Seattle, WA 98101" +255355,AA Batteries (4-pack),1,3.84,09/25/19 20:10,"854 North St, Los Angeles, CA 90001" +255356,Apple Airpods Headphones,1,150,09/22/19 12:21,"258 Lincoln St, New York City, NY 10001" +255357,Wired Headphones,1,11.99,09/13/19 10:22,"615 Lincoln St, Boston, MA 02215" +255358,27in 4K Gaming Monitor,1,389.99,09/10/19 17:55,"922 Park St, Seattle, WA 98101" +255359,Bose SoundSport Headphones,1,99.99,09/07/19 15:47,"11 Pine St, New York City, NY 10001" +255360,34in Ultrawide Monitor,1,379.99,09/26/19 21:04,"362 Main St, Boston, MA 02215" +255361,Wired Headphones,1,11.99,09/25/19 14:46,"181 Jefferson St, Seattle, WA 98101" +255362,AAA Batteries (4-pack),2,2.99,09/11/19 11:22,"41 Lincoln St, Los Angeles, CA 90001" +255363,Apple Airpods Headphones,1,150,09/14/19 21:00,"200 Hickory St, New York City, NY 10001" +255364,Google Phone,1,600,09/14/19 19:50,"620 4th St, San Francisco, CA 94016" +255365,Bose SoundSport Headphones,1,99.99,09/27/19 22:22,"542 7th St, New York City, NY 10001" +255366,Lightning Charging Cable,1,14.95,09/29/19 09:17,"787 9th St, San Francisco, CA 94016" +255367,Macbook Pro Laptop,1,1700,09/02/19 20:43,"67 Center St, Los Angeles, CA 90001" +255368,Bose SoundSport Headphones,1,99.99,09/02/19 18:49,"708 Lincoln St, New York City, NY 10001" +255369,Apple Airpods Headphones,1,150,09/05/19 21:49,"224 West St, Los Angeles, CA 90001" +255370,Lightning Charging Cable,2,14.95,09/21/19 13:21,"469 Main St, San Francisco, CA 94016" +255371,Bose SoundSport Headphones,1,99.99,09/16/19 09:58,"389 West St, New York City, NY 10001" +255372,Bose SoundSport Headphones,1,99.99,09/06/19 00:48,"336 11th St, San Francisco, CA 94016" +255372,AA Batteries (4-pack),1,3.84,09/06/19 00:48,"336 11th St, San Francisco, CA 94016" +255373,Apple Airpods Headphones,1,150,09/04/19 15:17,"412 4th St, Los Angeles, CA 90001" +255374,Lightning Charging Cable,1,14.95,09/30/19 19:24,"938 10th St, San Francisco, CA 94016" +255375,Lightning Charging Cable,1,14.95,09/03/19 14:05,"45 8th St, Los Angeles, CA 90001" +255376,Wired Headphones,2,11.99,09/26/19 19:25,"245 Chestnut St, Los Angeles, CA 90001" +255377,ThinkPad Laptop,1,999.99,09/09/19 10:22,"645 1st St, New York City, NY 10001" +255378,Apple Airpods Headphones,1,150,09/07/19 20:29,"94 6th St, Portland, OR 97035" +255379,AA Batteries (4-pack),1,3.84,09/05/19 09:13,"746 Lakeview St, Atlanta, GA 30301" +255380,USB-C Charging Cable,1,11.95,09/05/19 10:54,"750 Johnson St, San Francisco, CA 94016" +255381,ThinkPad Laptop,1,999.99,09/05/19 23:23,"187 Maple St, Portland, OR 97035" +255382,Google Phone,1,600,09/15/19 13:01,"317 Lake St, Seattle, WA 98101" +255383,Apple Airpods Headphones,1,150,09/21/19 11:25,"527 13th St, San Francisco, CA 94016" +,,,,, +255384,27in 4K Gaming Monitor,1,389.99,09/09/19 15:56,"176 Center St, Los Angeles, CA 90001" +255385,Wired Headphones,2,11.99,09/04/19 07:29,"829 12th St, Los Angeles, CA 90001" +255386,Wired Headphones,1,11.99,09/07/19 08:48,"621 8th St, Los Angeles, CA 90001" +255387,Flatscreen TV,1,300,09/26/19 18:09,"860 Spruce St, San Francisco, CA 94016" +255388,iPhone,1,700,09/13/19 08:21,"927 Wilson St, Boston, MA 02215" +255389,AAA Batteries (4-pack),1,2.99,09/13/19 11:02,"28 9th St, Boston, MA 02215" +255390,Flatscreen TV,1,300,09/12/19 11:37,"590 Lincoln St, Portland, OR 97035" +255391,20in Monitor,1,109.99,09/15/19 11:29,"888 6th St, Portland, OR 97035" +255392,Lightning Charging Cable,1,14.95,09/27/19 15:25,"746 Ridge St, Atlanta, GA 30301" +255393,27in FHD Monitor,1,149.99,09/30/19 17:54,"963 6th St, Los Angeles, CA 90001" +255394,Bose SoundSport Headphones,1,99.99,09/30/19 19:23,"938 Park St, San Francisco, CA 94016" +255395,AA Batteries (4-pack),2,3.84,09/01/19 08:52,"688 Hill St, Los Angeles, CA 90001" +255396,iPhone,1,700,09/24/19 18:53,"406 Center St, San Francisco, CA 94016" +255397,Lightning Charging Cable,1,14.95,09/14/19 20:41,"734 Jefferson St, Los Angeles, CA 90001" +255398,Wired Headphones,1,11.99,09/11/19 22:15,"919 Walnut St, San Francisco, CA 94016" +255399,AAA Batteries (4-pack),2,2.99,09/28/19 21:25,"434 13th St, Los Angeles, CA 90001" +255400,Apple Airpods Headphones,2,150,09/05/19 19:44,"680 Cherry St, San Francisco, CA 94016" +255401,AA Batteries (4-pack),1,3.84,09/13/19 21:14,"469 14th St, Atlanta, GA 30301" +255402,AA Batteries (4-pack),1,3.84,09/19/19 15:40,"181 Maple St, Boston, MA 02215" +255403,34in Ultrawide Monitor,1,379.99,09/25/19 02:03,"641 Johnson St, Portland, OR 97035" +255404,USB-C Charging Cable,1,11.95,09/24/19 19:07,"180 Sunset St, Dallas, TX 75001" +255405,Lightning Charging Cable,2,14.95,09/11/19 10:07,"704 Center St, Los Angeles, CA 90001" +255406,Apple Airpods Headphones,1,150,09/18/19 16:01,"479 2nd St, New York City, NY 10001" +255407,Lightning Charging Cable,1,14.95,09/23/19 16:07,"116 Church St, Portland, OR 97035" +255408,Bose SoundSport Headphones,1,99.99,09/01/19 19:28,"832 Willow St, San Francisco, CA 94016" +255409,27in FHD Monitor,1,149.99,09/16/19 17:38,"324 Washington St, Seattle, WA 98101" +255410,Apple Airpods Headphones,1,150,09/24/19 23:10,"618 Maple St, Dallas, TX 75001" +255411,Macbook Pro Laptop,1,1700,09/17/19 01:20,"417 Lakeview St, Boston, MA 02215" +255412,Lightning Charging Cable,1,14.95,09/19/19 00:19,"138 Madison St, Austin, TX 73301" +255413,Lightning Charging Cable,1,14.95,09/03/19 18:29,"150 Sunset St, Seattle, WA 98101" +255414,27in 4K Gaming Monitor,1,389.99,09/04/19 13:04,"558 Lake St, Los Angeles, CA 90001" +255415,Bose SoundSport Headphones,1,99.99,09/02/19 16:17,"610 8th St, Dallas, TX 75001" +255416,AAA Batteries (4-pack),3,2.99,09/26/19 22:23,"917 Elm St, Los Angeles, CA 90001" +255417,Apple Airpods Headphones,1,150,09/02/19 02:23,"550 10th St, New York City, NY 10001" +255418,Lightning Charging Cable,1,14.95,09/12/19 16:14,"452 Maple St, New York City, NY 10001" +255419,AA Batteries (4-pack),1,3.84,09/21/19 09:48,"496 Chestnut St, San Francisco, CA 94016" +255420,Apple Airpods Headphones,1,150,09/05/19 08:36,"655 Church St, Boston, MA 02215" +255421,34in Ultrawide Monitor,1,379.99,09/29/19 15:09,"434 Hill St, San Francisco, CA 94016" +255422,AA Batteries (4-pack),2,3.84,09/04/19 15:29,"205 Sunset St, San Francisco, CA 94016" +255423,Wired Headphones,1,11.99,09/27/19 22:43,"436 Hill St, New York City, NY 10001" +255424,Wired Headphones,1,11.99,09/30/19 23:19,"548 Forest St, Los Angeles, CA 90001" +255425,AAA Batteries (4-pack),2,2.99,09/28/19 00:10,"379 Adams St, Austin, TX 73301" +255426,AA Batteries (4-pack),1,3.84,09/02/19 22:16,"560 River St, Dallas, TX 75001" +255427,20in Monitor,1,109.99,09/21/19 07:55,"391 Chestnut St, Los Angeles, CA 90001" +255428,Wired Headphones,1,11.99,09/11/19 21:32,"151 Spruce St, Dallas, TX 75001" +255429,27in 4K Gaming Monitor,1,389.99,09/19/19 07:19,"52 Hill St, San Francisco, CA 94016" +255430,Lightning Charging Cable,1,14.95,09/18/19 02:06,"997 Elm St, New York City, NY 10001" +255431,Google Phone,1,600,09/24/19 20:36,"492 Adams St, Los Angeles, CA 90001" +255431,USB-C Charging Cable,1,11.95,09/24/19 20:36,"492 Adams St, Los Angeles, CA 90001" +255432,AAA Batteries (4-pack),1,2.99,09/05/19 14:10,"499 7th St, Seattle, WA 98101" +255433,Wired Headphones,1,11.99,09/15/19 12:06,"407 North St, Boston, MA 02215" +255434,AAA Batteries (4-pack),1,2.99,09/25/19 08:13,"299 Forest St, Los Angeles, CA 90001" +255435,Google Phone,1,600,09/22/19 09:43,"485 Highland St, New York City, NY 10001" +255436,34in Ultrawide Monitor,1,379.99,09/16/19 09:07,"879 14th St, Portland, OR 97035" +255437,USB-C Charging Cable,1,11.95,09/30/19 07:21,"975 Park St, New York City, NY 10001" +255438,USB-C Charging Cable,1,11.95,09/14/19 10:18,"861 Lincoln St, Seattle, WA 98101" +255439,Bose SoundSport Headphones,1,99.99,09/08/19 07:29,"910 Hill St, San Francisco, CA 94016" +255440,Apple Airpods Headphones,1,150,09/30/19 10:00,"690 Wilson St, San Francisco, CA 94016" +255441,Apple Airpods Headphones,1,150,09/10/19 23:45,"840 South St, San Francisco, CA 94016" +255442,Lightning Charging Cable,1,14.95,09/13/19 20:32,"174 Park St, Portland, OR 97035" +255443,AAA Batteries (4-pack),1,2.99,09/18/19 15:24,"257 Willow St, Austin, TX 73301" +255444,Lightning Charging Cable,1,14.95,09/27/19 21:34,"437 Madison St, Boston, MA 02215" +255444,Wired Headphones,1,11.99,09/27/19 21:34,"437 Madison St, Boston, MA 02215" +255445,27in 4K Gaming Monitor,1,389.99,09/27/19 10:31,"986 Lincoln St, Seattle, WA 98101" +255446,Bose SoundSport Headphones,1,99.99,09/21/19 12:40,"184 10th St, Dallas, TX 75001" +255447,AAA Batteries (4-pack),1,2.99,09/24/19 13:01,"348 12th St, Portland, OR 97035" +255448,Apple Airpods Headphones,1,150,09/28/19 09:50,"748 Meadow St, Boston, MA 02215" +255449,AAA Batteries (4-pack),1,2.99,09/08/19 18:31,"984 Maple St, Seattle, WA 98101" +255450,Lightning Charging Cable,1,14.95,09/23/19 20:44,"762 Church St, Portland, OR 97035" +255451,34in Ultrawide Monitor,1,379.99,09/08/19 23:33,"728 Cedar St, Boston, MA 02215" +255452,Bose SoundSport Headphones,1,99.99,09/24/19 11:55,"912 5th St, San Francisco, CA 94016" +255453,Lightning Charging Cable,1,14.95,09/21/19 13:21,"922 7th St, Boston, MA 02215" +255454,iPhone,1,700,09/04/19 13:21,"665 4th St, New York City, NY 10001" +255455,iPhone,1,700,09/22/19 08:51,"748 7th St, San Francisco, CA 94016" +255456,Flatscreen TV,1,300,09/06/19 23:07,"691 Church St, Austin, TX 73301" +255457,ThinkPad Laptop,1,999.99,09/27/19 18:14,"993 Ridge St, San Francisco, CA 94016" +255458,USB-C Charging Cable,1,11.95,09/11/19 23:25,"177 Adams St, Boston, MA 02215" +255459,Google Phone,1,600,09/14/19 21:02,"141 Madison St, Portland, OR 97035" +255460,Wired Headphones,1,11.99,09/23/19 06:08,"280 Washington St, San Francisco, CA 94016" +255461,USB-C Charging Cable,1,11.95,09/23/19 14:19,"210 Willow St, Dallas, TX 75001" +255462,Bose SoundSport Headphones,1,99.99,09/07/19 09:50,"955 Highland St, Portland, OR 97035" +255463,Lightning Charging Cable,1,14.95,09/14/19 19:58,"185 10th St, Los Angeles, CA 90001" +255464,AA Batteries (4-pack),1,3.84,09/15/19 18:31,"178 1st St, New York City, NY 10001" +255465,Wired Headphones,1,11.99,09/20/19 19:41,"949 1st St, New York City, NY 10001" +255466,Bose SoundSport Headphones,1,99.99,09/17/19 14:02,"702 2nd St, San Francisco, CA 94016" +255467,USB-C Charging Cable,2,11.95,09/06/19 15:39,"640 Cedar St, Austin, TX 73301" +255468,USB-C Charging Cable,1,11.95,09/02/19 12:37,"670 Pine St, Boston, MA 02215" +255469,USB-C Charging Cable,1,11.95,09/03/19 03:00,"586 North St, Los Angeles, CA 90001" +255470,iPhone,1,700,09/05/19 23:50,"116 Elm St, Portland, OR 97035" +255471,Lightning Charging Cable,1,14.95,09/15/19 23:11,"392 Hill St, New York City, NY 10001" +255472,Bose SoundSport Headphones,1,99.99,09/27/19 15:46,"747 8th St, San Francisco, CA 94016" +255473,27in FHD Monitor,1,149.99,09/22/19 16:16,"312 Meadow St, Portland, OR 97035" +255474,USB-C Charging Cable,1,11.95,09/19/19 17:41,"756 2nd St, New York City, NY 10001" +255475,AA Batteries (4-pack),1,3.84,09/29/19 12:11,"538 Park St, New York City, NY 10001" +255476,Wired Headphones,1,11.99,09/05/19 11:46,"454 Hill St, New York City, NY 10001" +255477,27in 4K Gaming Monitor,1,389.99,09/09/19 16:04,"811 14th St, San Francisco, CA 94016" +255478,Apple Airpods Headphones,1,150,09/21/19 15:14,"471 Forest St, Austin, TX 73301" +255479,AAA Batteries (4-pack),4,2.99,09/15/19 08:45,"222 14th St, San Francisco, CA 94016" +255480,USB-C Charging Cable,1,11.95,09/27/19 22:10,"939 Church St, Austin, TX 73301" +255481,27in FHD Monitor,1,149.99,09/12/19 21:07,"398 Jefferson St, New York City, NY 10001" +255482,Flatscreen TV,1,300,09/18/19 17:48,"609 4th St, Los Angeles, CA 90001" +255483,Wired Headphones,1,11.99,09/29/19 14:27,"439 Lake St, Atlanta, GA 30301" +255484,Bose SoundSport Headphones,1,99.99,09/27/19 21:38,"276 West St, Los Angeles, CA 90001" +255485,LG Dryer,1,600.0,09/08/19 22:16,"555 2nd St, Boston, MA 02215" +255486,USB-C Charging Cable,2,11.95,09/18/19 12:13,"276 Maple St, San Francisco, CA 94016" +255487,AAA Batteries (4-pack),3,2.99,09/10/19 13:10,"744 7th St, Boston, MA 02215" +255488,AAA Batteries (4-pack),1,2.99,09/14/19 10:42,"426 2nd St, Los Angeles, CA 90001" +255489,Apple Airpods Headphones,1,150,09/13/19 19:44,"119 10th St, Los Angeles, CA 90001" +255490,Macbook Pro Laptop,1,1700,09/26/19 18:59,"263 Center St, Los Angeles, CA 90001" +255491,AAA Batteries (4-pack),1,2.99,09/18/19 10:59,"439 Sunset St, New York City, NY 10001" +255492,Lightning Charging Cable,1,14.95,09/28/19 07:37,"551 Sunset St, Dallas, TX 75001" +255493,34in Ultrawide Monitor,1,379.99,09/18/19 13:54,"868 14th St, Seattle, WA 98101" +255494,AA Batteries (4-pack),1,3.84,09/15/19 13:36,"552 Hill St, Portland, OR 97035" +255495,Lightning Charging Cable,1,14.95,09/14/19 12:26,"562 Lake St, Atlanta, GA 30301" +255496,27in FHD Monitor,1,149.99,09/25/19 20:32,"605 North St, San Francisco, CA 94016" +255497,Macbook Pro Laptop,1,1700,09/06/19 17:39,"304 River St, San Francisco, CA 94016" +255498,USB-C Charging Cable,1,11.95,09/03/19 23:48,"242 Forest St, New York City, NY 10001" +255499,ThinkPad Laptop,1,999.99,09/18/19 11:20,"465 4th St, Los Angeles, CA 90001" +255500,Bose SoundSport Headphones,1,99.99,09/16/19 15:18,"976 Sunset St, Los Angeles, CA 90001" +255501,Bose SoundSport Headphones,1,99.99,09/26/19 13:47,"961 9th St, Boston, MA 02215" +255502,Lightning Charging Cable,1,14.95,09/24/19 13:36,"675 14th St, Atlanta, GA 30301" +255503,Apple Airpods Headphones,1,150,09/21/19 08:33,"439 Center St, Portland, OR 97035" +255504,AAA Batteries (4-pack),2,2.99,09/09/19 12:18,"686 2nd St, San Francisco, CA 94016" +255505,USB-C Charging Cable,1,11.95,09/17/19 16:06,"894 Forest St, Portland, ME 04101" +255506,Vareebadd Phone,1,400,09/19/19 09:04,"30 Dogwood St, Austin, TX 73301" +255507,AA Batteries (4-pack),1,3.84,09/02/19 08:59,"190 Wilson St, Boston, MA 02215" +255508,USB-C Charging Cable,1,11.95,09/03/19 16:34,"705 Maple St, San Francisco, CA 94016" +255509,Wired Headphones,1,11.99,09/20/19 07:58,"313 Willow St, Portland, OR 97035" +255510,Lightning Charging Cable,1,14.95,09/21/19 01:22,"93 Madison St, Austin, TX 73301" +255511,Apple Airpods Headphones,1,150,09/27/19 11:50,"704 Hill St, Seattle, WA 98101" +255512,LG Dryer,1,600.0,09/05/19 19:13,"280 1st St, Seattle, WA 98101" +255513,AA Batteries (4-pack),1,3.84,09/21/19 13:04,"588 River St, Seattle, WA 98101" +255514,iPhone,1,700,09/26/19 07:46,"445 South St, New York City, NY 10001" +255515,Lightning Charging Cable,1,14.95,09/30/19 20:47,"495 8th St, San Francisco, CA 94016" +255516,Bose SoundSport Headphones,1,99.99,09/03/19 12:50,"909 Spruce St, Dallas, TX 75001" +255517,AAA Batteries (4-pack),1,2.99,09/19/19 07:22,"497 Highland St, Dallas, TX 75001" +255518,AA Batteries (4-pack),1,3.84,09/06/19 19:13,"17 Lakeview St, Seattle, WA 98101" +255519,Google Phone,1,600,09/04/19 13:13,"858 North St, Portland, OR 97035" +255520,AA Batteries (4-pack),1,3.84,09/11/19 13:16,"538 Madison St, Atlanta, GA 30301" +255521,20in Monitor,1,109.99,09/18/19 05:14,"984 10th St, New York City, NY 10001" +255522,AA Batteries (4-pack),4,3.84,09/23/19 18:46,"311 Wilson St, New York City, NY 10001" +255523,27in 4K Gaming Monitor,1,389.99,09/08/19 08:45,"974 6th St, San Francisco, CA 94016" +255524,Lightning Charging Cable,2,14.95,09/05/19 17:13,"360 8th St, San Francisco, CA 94016" +255525,27in FHD Monitor,1,149.99,09/13/19 20:12,"318 Hill St, Los Angeles, CA 90001" +255526,34in Ultrawide Monitor,1,379.99,09/04/19 00:14,"970 Sunset St, San Francisco, CA 94016" +255526,LG Washing Machine,1,600.0,09/04/19 00:14,"970 Sunset St, San Francisco, CA 94016" +255527,Google Phone,1,600,09/17/19 17:48,"110 Walnut St, San Francisco, CA 94016" +255527,Bose SoundSport Headphones,1,99.99,09/17/19 17:48,"110 Walnut St, San Francisco, CA 94016" +255528,Flatscreen TV,1,300,09/24/19 16:42,"445 Adams St, Seattle, WA 98101" +255529,Wired Headphones,1,11.99,09/21/19 18:46,"633 Elm St, Portland, OR 97035" +255530,USB-C Charging Cable,2,11.95,09/01/19 20:47,"141 2nd St, San Francisco, CA 94016" +255531,Apple Airpods Headphones,1,150,09/07/19 22:38,"8 5th St, Boston, MA 02215" +255532,27in 4K Gaming Monitor,1,389.99,09/21/19 18:47,"476 14th St, Atlanta, GA 30301" +255533,USB-C Charging Cable,1,11.95,09/20/19 12:45,"650 Center St, New York City, NY 10001" +255534,Apple Airpods Headphones,1,150,09/28/19 21:24,"438 Dogwood St, Los Angeles, CA 90001" +255535,Lightning Charging Cable,1,14.95,09/29/19 21:16,"72 Walnut St, Austin, TX 73301" +255536,USB-C Charging Cable,1,11.95,09/16/19 23:27,"237 Willow St, San Francisco, CA 94016" +255537,AA Batteries (4-pack),1,3.84,09/19/19 17:27,"641 10th St, New York City, NY 10001" +255538,AA Batteries (4-pack),1,3.84,09/08/19 13:53,"697 Johnson St, Boston, MA 02215" +255539,Vareebadd Phone,1,400,09/03/19 17:10,"828 Meadow St, Dallas, TX 75001" +255539,Bose SoundSport Headphones,1,99.99,09/03/19 17:10,"828 Meadow St, Dallas, TX 75001" +255540,ThinkPad Laptop,1,999.99,09/22/19 14:35,"375 11th St, Seattle, WA 98101" +255541,27in 4K Gaming Monitor,1,389.99,09/11/19 22:43,"850 River St, Boston, MA 02215" +255542,USB-C Charging Cable,1,11.95,09/28/19 15:38,"440 13th St, Seattle, WA 98101" +255543,iPhone,1,700,09/20/19 15:42,"811 Johnson St, San Francisco, CA 94016" +255544,AA Batteries (4-pack),1,3.84,09/23/19 12:20,"668 Johnson St, San Francisco, CA 94016" +255545,iPhone,1,700,09/28/19 11:19,"433 Main St, San Francisco, CA 94016" +255546,AAA Batteries (4-pack),1,2.99,09/23/19 15:09,"984 Willow St, New York City, NY 10001" +255547,Bose SoundSport Headphones,1,99.99,09/13/19 22:22,"758 10th St, Portland, OR 97035" +255548,Apple Airpods Headphones,1,150,09/08/19 22:57,"617 Lakeview St, New York City, NY 10001" +255549,USB-C Charging Cable,1,11.95,09/04/19 17:56,"50 West St, New York City, NY 10001" +255550,Wired Headphones,1,11.99,09/21/19 07:20,"865 Jefferson St, San Francisco, CA 94016" +255551,Bose SoundSport Headphones,1,99.99,09/05/19 23:04,"17 Washington St, San Francisco, CA 94016" +255552,Lightning Charging Cable,1,14.95,09/25/19 15:52,"750 Washington St, New York City, NY 10001" +255553,Lightning Charging Cable,1,14.95,09/18/19 18:51,"367 7th St, San Francisco, CA 94016" +255554,AA Batteries (4-pack),1,3.84,09/25/19 18:45,"666 River St, San Francisco, CA 94016" +255555,AAA Batteries (4-pack),2,2.99,09/21/19 17:57,"183 7th St, Los Angeles, CA 90001" +255556,AA Batteries (4-pack),1,3.84,09/21/19 20:18,"256 Jackson St, San Francisco, CA 94016" +255557,Vareebadd Phone,1,400,09/09/19 10:44,"336 6th St, San Francisco, CA 94016" +255558,Bose SoundSport Headphones,1,99.99,09/04/19 22:41,"924 10th St, Boston, MA 02215" +255559,ThinkPad Laptop,1,999.99,09/04/19 21:44,"994 River St, Boston, MA 02215" +255560,Google Phone,1,600,09/08/19 20:40,"523 Main St, San Francisco, CA 94016" +255561,AAA Batteries (4-pack),1,2.99,09/18/19 15:24,"804 West St, Atlanta, GA 30301" +255562,27in 4K Gaming Monitor,1,389.99,09/28/19 09:06,"883 Cedar St, San Francisco, CA 94016" +255563,USB-C Charging Cable,1,11.95,09/24/19 00:18,"593 10th St, Austin, TX 73301" +255564,Apple Airpods Headphones,1,150,09/17/19 01:48,"212 10th St, Boston, MA 02215" +255565,Apple Airpods Headphones,1,150,09/29/19 00:14,"791 South St, San Francisco, CA 94016" +255566,Lightning Charging Cable,1,14.95,09/19/19 11:49,"59 Lake St, New York City, NY 10001" +255567,Lightning Charging Cable,1,14.95,09/23/19 18:53,"2 Maple St, Atlanta, GA 30301" +255568,Apple Airpods Headphones,1,150,09/10/19 21:47,"907 4th St, Los Angeles, CA 90001" +255569,Apple Airpods Headphones,1,150,09/30/19 01:18,"636 Jefferson St, Portland, OR 97035" +255570,AAA Batteries (4-pack),2,2.99,09/01/19 10:41,"184 9th St, New York City, NY 10001" +255571,AA Batteries (4-pack),1,3.84,09/23/19 19:26,"465 Walnut St, Portland, OR 97035" +255572,AA Batteries (4-pack),1,3.84,09/26/19 14:08,"512 4th St, Los Angeles, CA 90001" +255573,USB-C Charging Cable,1,11.95,09/22/19 21:20,"143 7th St, San Francisco, CA 94016" +255574,34in Ultrawide Monitor,1,379.99,09/06/19 19:06,"305 8th St, Dallas, TX 75001" +255575,iPhone,1,700,09/15/19 21:51,"412 Hill St, New York City, NY 10001" +255576,Google Phone,1,600,09/14/19 15:37,"543 10th St, Atlanta, GA 30301" +255577,Lightning Charging Cable,1,14.95,09/09/19 00:48,"41 Adams St, Atlanta, GA 30301" +255578,AAA Batteries (4-pack),2,2.99,09/20/19 17:24,"71 Pine St, Los Angeles, CA 90001" +255579,AA Batteries (4-pack),3,3.84,09/06/19 08:44,"889 Ridge St, Boston, MA 02215" +255580,Wired Headphones,1,11.99,09/13/19 15:46,"842 Johnson St, Atlanta, GA 30301" +255581,27in FHD Monitor,1,149.99,09/13/19 09:53,"150 Willow St, New York City, NY 10001" +255582,Apple Airpods Headphones,1,150,09/08/19 16:45,"602 11th St, San Francisco, CA 94016" +255583,iPhone,1,700,09/16/19 19:24,"977 Wilson St, Atlanta, GA 30301" +255584,Wired Headphones,1,11.99,09/27/19 13:16,"815 Willow St, Portland, OR 97035" +255585,iPhone,1,700,09/09/19 19:06,"592 4th St, Los Angeles, CA 90001" +255586,USB-C Charging Cable,1,11.95,09/20/19 18:51,"547 13th St, San Francisco, CA 94016" +255587,34in Ultrawide Monitor,1,379.99,09/26/19 00:23,"387 Cedar St, Los Angeles, CA 90001" +255588,Lightning Charging Cable,1,14.95,09/13/19 09:58,"358 10th St, Austin, TX 73301" +255589,Apple Airpods Headphones,1,150,09/20/19 01:07,"392 13th St, Boston, MA 02215" +255590,AAA Batteries (4-pack),1,2.99,09/22/19 10:45,"597 Adams St, Portland, OR 97035" +255591,27in 4K Gaming Monitor,1,389.99,09/09/19 17:19,"470 Forest St, New York City, NY 10001" +255591,Macbook Pro Laptop,1,1700,09/09/19 17:19,"470 Forest St, New York City, NY 10001" +255592,AA Batteries (4-pack),1,3.84,09/11/19 19:35,"712 Cherry St, Seattle, WA 98101" +255593,Google Phone,1,600,09/24/19 15:41,"912 Wilson St, Boston, MA 02215" +255594,Lightning Charging Cable,1,14.95,09/05/19 19:17,"569 Chestnut St, San Francisco, CA 94016" +255595,Google Phone,1,600,09/12/19 10:32,"698 Lake St, Portland, OR 97035" +255596,USB-C Charging Cable,3,11.95,09/01/19 21:58,"133 9th St, Seattle, WA 98101" +255597,Wired Headphones,1,11.99,09/02/19 10:24,"563 Lincoln St, New York City, NY 10001" +255598,AAA Batteries (4-pack),1,2.99,09/27/19 21:15,"241 Sunset St, San Francisco, CA 94016" +255599,AAA Batteries (4-pack),1,2.99,09/28/19 18:19,"452 1st St, New York City, NY 10001" +255600,iPhone,1,700,09/26/19 13:09,"184 Dogwood St, Seattle, WA 98101" +255601,Wired Headphones,2,11.99,09/23/19 16:47,"930 5th St, Los Angeles, CA 90001" +255602,AAA Batteries (4-pack),1,2.99,09/14/19 14:46,"880 Walnut St, Portland, ME 04101" +255603,Apple Airpods Headphones,1,150,09/06/19 09:37,"16 Jackson St, Los Angeles, CA 90001" +255604,Apple Airpods Headphones,1,150,09/20/19 19:50,"504 Ridge St, Atlanta, GA 30301" +255605,Lightning Charging Cable,2,14.95,09/13/19 23:00,"684 Washington St, New York City, NY 10001" +255606,20in Monitor,1,109.99,09/13/19 23:31,"675 Sunset St, Austin, TX 73301" +255607,27in 4K Gaming Monitor,1,389.99,09/07/19 12:02,"641 Church St, San Francisco, CA 94016" +255608,Flatscreen TV,1,300,09/29/19 11:33,"955 Sunset St, San Francisco, CA 94016" +255609,Lightning Charging Cable,1,14.95,09/05/19 19:58,"242 Johnson St, Los Angeles, CA 90001" +255610,Bose SoundSport Headphones,1,99.99,09/01/19 18:43,"407 Madison St, Seattle, WA 98101" +255611,Bose SoundSport Headphones,1,99.99,09/04/19 08:58,"628 11th St, San Francisco, CA 94016" +255612,Wired Headphones,1,11.99,09/10/19 17:31,"476 Spruce St, New York City, NY 10001" +255613,Wired Headphones,1,11.99,09/02/19 19:34,"55 Jefferson St, Atlanta, GA 30301" +255614,ThinkPad Laptop,1,999.99,09/03/19 15:57,"825 4th St, Boston, MA 02215" +255615,AAA Batteries (4-pack),8,2.99,09/05/19 23:25,"11 5th St, Dallas, TX 75001" +255616,USB-C Charging Cable,1,11.95,09/06/19 10:56,"615 Chestnut St, San Francisco, CA 94016" +255617,Wired Headphones,1,11.99,09/14/19 12:05,"317 Jackson St, Austin, TX 73301" +255618,AAA Batteries (4-pack),1,2.99,09/23/19 13:59,"604 Main St, San Francisco, CA 94016" +255619,AAA Batteries (4-pack),3,2.99,09/03/19 12:14,"195 12th St, Atlanta, GA 30301" +255620,Wired Headphones,1,11.99,09/29/19 07:16,"825 Hickory St, New York City, NY 10001" +255621,AA Batteries (4-pack),1,3.84,09/02/19 20:43,"319 4th St, Los Angeles, CA 90001" +255622,Wired Headphones,1,11.99,09/29/19 21:42,"725 9th St, Austin, TX 73301" +255623,AA Batteries (4-pack),2,3.84,09/27/19 07:37,"589 Walnut St, New York City, NY 10001" +255624,USB-C Charging Cable,1,11.95,09/21/19 14:45,"385 Meadow St, Dallas, TX 75001" +255625,AA Batteries (4-pack),1,3.84,09/23/19 17:42,"414 1st St, Portland, OR 97035" +255626,USB-C Charging Cable,1,11.95,09/05/19 08:10,"987 7th St, Los Angeles, CA 90001" +255627,AA Batteries (4-pack),1,3.84,09/14/19 13:14,"28 Meadow St, San Francisco, CA 94016" +255628,Bose SoundSport Headphones,1,99.99,09/22/19 11:59,"10 Elm St, Atlanta, GA 30301" +255629,AA Batteries (4-pack),1,3.84,09/10/19 00:35,"427 2nd St, Atlanta, GA 30301" +255630,USB-C Charging Cable,1,11.95,09/16/19 10:00,"655 Wilson St, Austin, TX 73301" +255631,AA Batteries (4-pack),1,3.84,09/21/19 18:25,"827 6th St, Dallas, TX 75001" +255632,Wired Headphones,1,11.99,09/05/19 18:49,"567 Hill St, San Francisco, CA 94016" +255633,27in 4K Gaming Monitor,1,389.99,09/16/19 19:47,"746 14th St, Portland, OR 97035" +255634,Lightning Charging Cable,1,14.95,09/26/19 09:30,"42 6th St, Los Angeles, CA 90001" +255635,Apple Airpods Headphones,1,150,09/06/19 12:02,"563 Hickory St, New York City, NY 10001" +255636,Flatscreen TV,1,300,09/02/19 14:15,"576 Walnut St, San Francisco, CA 94016" +255637,Apple Airpods Headphones,1,150,09/09/19 00:28,"280 Maple St, Dallas, TX 75001" +255638,Lightning Charging Cable,1,14.95,09/19/19 09:36,"320 6th St, Seattle, WA 98101" +255639,Lightning Charging Cable,1,14.95,09/10/19 16:21,"549 Willow St, Los Angeles, CA 90001" +255640,AAA Batteries (4-pack),1,2.99,09/08/19 14:33,"682 Cedar St, New York City, NY 10001" +255641,AA Batteries (4-pack),1,3.84,09/22/19 15:34,"113 9th St, San Francisco, CA 94016" +255642,Bose SoundSport Headphones,1,99.99,09/06/19 06:59,"858 Pine St, Los Angeles, CA 90001" +255643,ThinkPad Laptop,1,999.99,09/08/19 22:23,"425 Hickory St, Austin, TX 73301" +255644,Wired Headphones,1,11.99,09/30/19 14:37,"309 5th St, Los Angeles, CA 90001" +255645,iPhone,1,700,09/04/19 07:46,"985 Ridge St, Los Angeles, CA 90001" +255646,AAA Batteries (4-pack),1,2.99,09/13/19 12:03,"678 Jefferson St, Los Angeles, CA 90001" +255647,Lightning Charging Cable,1,14.95,09/12/19 07:23,"8 River St, Los Angeles, CA 90001" +255648,Wired Headphones,1,11.99,09/04/19 19:41,"50 Cedar St, San Francisco, CA 94016" +255649,Wired Headphones,1,11.99,09/04/19 19:30,"946 North St, Boston, MA 02215" +255650,USB-C Charging Cable,2,11.95,09/22/19 22:19,"190 Church St, Los Angeles, CA 90001" +255651,27in 4K Gaming Monitor,1,389.99,09/01/19 20:11,"508 7th St, Atlanta, GA 30301" +255652,iPhone,1,700,09/09/19 22:38,"134 Elm St, Seattle, WA 98101" +255653,AAA Batteries (4-pack),1,2.99,09/03/19 09:43,"350 1st St, Seattle, WA 98101" +255654,Lightning Charging Cable,1,14.95,09/07/19 18:39,"269 Hickory St, Los Angeles, CA 90001" +255655,34in Ultrawide Monitor,1,379.99,09/08/19 11:22,"929 2nd St, New York City, NY 10001" +255656,Flatscreen TV,1,300,09/25/19 10:46,"584 Dogwood St, Boston, MA 02215" +255657,20in Monitor,1,109.99,09/10/19 19:16,"927 11th St, San Francisco, CA 94016" +255658,Lightning Charging Cable,1,14.95,09/19/19 15:10,"432 Lakeview St, Dallas, TX 75001" +255659,AA Batteries (4-pack),1,3.84,09/21/19 15:19,"228 4th St, San Francisco, CA 94016" +255660,iPhone,1,700,09/18/19 08:47,"750 Forest St, New York City, NY 10001" +255661,Apple Airpods Headphones,1,150,09/11/19 12:22,"9 12th St, Atlanta, GA 30301" +255662,AAA Batteries (4-pack),2,2.99,09/10/19 16:53,"275 Jackson St, Los Angeles, CA 90001" +255663,USB-C Charging Cable,1,11.95,09/06/19 18:07,"345 Park St, Dallas, TX 75001" +255664,Wired Headphones,1,11.99,09/14/19 20:49,"175 5th St, Austin, TX 73301" +255665,USB-C Charging Cable,1,11.95,09/19/19 07:09,"577 Madison St, Atlanta, GA 30301" +255666,Bose SoundSport Headphones,1,99.99,09/26/19 10:21,"304 Maple St, Los Angeles, CA 90001" +255667,USB-C Charging Cable,1,11.95,09/23/19 18:39,"462 9th St, Los Angeles, CA 90001" +255668,AA Batteries (4-pack),1,3.84,09/02/19 12:04,"540 14th St, Los Angeles, CA 90001" +255669,20in Monitor,1,109.99,09/11/19 15:11,"534 Elm St, San Francisco, CA 94016" +255670,Wired Headphones,2,11.99,09/22/19 09:57,"798 Jefferson St, Portland, OR 97035" +255671,20in Monitor,1,109.99,09/20/19 17:50,"949 9th St, New York City, NY 10001" +255672,AAA Batteries (4-pack),1,2.99,09/26/19 17:36,"41 7th St, New York City, NY 10001" +255673,34in Ultrawide Monitor,1,379.99,09/14/19 15:12,"796 Jackson St, San Francisco, CA 94016" +255674,34in Ultrawide Monitor,1,379.99,09/08/19 19:44,"307 Madison St, Boston, MA 02215" +255675,AA Batteries (4-pack),1,3.84,09/26/19 17:53,"561 West St, Los Angeles, CA 90001" +255676,ThinkPad Laptop,1,999.99,09/17/19 05:26,"873 8th St, San Francisco, CA 94016" +255677,34in Ultrawide Monitor,2,379.99,09/23/19 12:02,"870 Main St, Los Angeles, CA 90001" +255678,Lightning Charging Cable,2,14.95,09/25/19 16:35,"698 River St, Los Angeles, CA 90001" +255679,AAA Batteries (4-pack),2,2.99,09/03/19 14:57,"911 Cedar St, Los Angeles, CA 90001" +255680,AAA Batteries (4-pack),4,2.99,09/30/19 20:25,"45 Wilson St, Atlanta, GA 30301" +255681,Wired Headphones,1,11.99,09/03/19 14:59,"443 Lincoln St, Boston, MA 02215" +255682,27in FHD Monitor,1,149.99,09/18/19 22:42,"475 Meadow St, Portland, OR 97035" +255683,20in Monitor,1,109.99,09/25/19 13:42,"143 13th St, Seattle, WA 98101" +255684,Lightning Charging Cable,1,14.95,09/14/19 12:01,"935 11th St, New York City, NY 10001" +255685,Wired Headphones,1,11.99,09/17/19 17:45,"253 Lake St, Dallas, TX 75001" +255686,Bose SoundSport Headphones,1,99.99,09/18/19 05:18,"420 2nd St, Seattle, WA 98101" +255687,Apple Airpods Headphones,1,150,09/26/19 09:29,"911 Hill St, San Francisco, CA 94016" +255688,AAA Batteries (4-pack),1,2.99,09/06/19 12:26,"129 7th St, San Francisco, CA 94016" +255689,Macbook Pro Laptop,1,1700,09/04/19 11:03,"84 Meadow St, Los Angeles, CA 90001" +255690,USB-C Charging Cable,1,11.95,09/18/19 11:30,"444 4th St, New York City, NY 10001" +255691,27in FHD Monitor,1,149.99,09/04/19 02:11,"842 Jackson St, San Francisco, CA 94016" +255692,34in Ultrawide Monitor,1,379.99,09/28/19 11:28,"763 8th St, Los Angeles, CA 90001" +255693,27in FHD Monitor,1,149.99,09/23/19 09:13,"468 Jackson St, Austin, TX 73301" +255694,Wired Headphones,1,11.99,09/19/19 22:29,"254 8th St, Los Angeles, CA 90001" +255695,Macbook Pro Laptop,1,1700,09/25/19 22:36,"117 Spruce St, Los Angeles, CA 90001" +255695,27in 4K Gaming Monitor,1,389.99,09/25/19 22:36,"117 Spruce St, Los Angeles, CA 90001" +255696,Wired Headphones,1,11.99,09/09/19 07:40,"733 Elm St, Boston, MA 02215" +255697,AA Batteries (4-pack),1,3.84,09/20/19 17:49,"31 Adams St, Portland, OR 97035" +255698,USB-C Charging Cable,1,11.95,09/28/19 19:46,"428 Adams St, Atlanta, GA 30301" +255699,Lightning Charging Cable,1,14.95,09/21/19 23:31,"96 Hill St, Austin, TX 73301" +255700,USB-C Charging Cable,1,11.95,09/29/19 22:29,"932 Chestnut St, Boston, MA 02215" +255701,Wired Headphones,1,11.99,09/01/19 12:11,"90 Main St, San Francisco, CA 94016" +255702,27in 4K Gaming Monitor,1,389.99,09/10/19 12:57,"922 1st St, Boston, MA 02215" +255703,Wired Headphones,1,11.99,09/16/19 19:55,"445 Willow St, Los Angeles, CA 90001" +255704,USB-C Charging Cable,1,11.95,09/20/19 15:04,"9 Meadow St, San Francisco, CA 94016" +255705,Lightning Charging Cable,1,14.95,09/12/19 23:14,"858 Forest St, Boston, MA 02215" +255706,Bose SoundSport Headphones,1,99.99,09/01/19 22:40,"828 Church St, Dallas, TX 75001" +255707,AAA Batteries (4-pack),1,2.99,09/26/19 13:08,"783 12th St, Dallas, TX 75001" +255708,Flatscreen TV,1,300,09/30/19 18:27,"847 South St, Portland, OR 97035" +255709,iPhone,1,700,09/02/19 15:29,"503 5th St, Los Angeles, CA 90001" +255710,Wired Headphones,1,11.99,09/22/19 19:46,"252 Ridge St, San Francisco, CA 94016" +255711,LG Dryer,1,600.0,09/16/19 23:43,"776 Jackson St, Seattle, WA 98101" +255712,USB-C Charging Cable,1,11.95,09/19/19 13:34,"368 Madison St, Seattle, WA 98101" +255713,Wired Headphones,1,11.99,09/26/19 11:39,"490 Chestnut St, New York City, NY 10001" +255714,USB-C Charging Cable,1,11.95,09/13/19 08:39,"746 Cedar St, Los Angeles, CA 90001" +255715,AAA Batteries (4-pack),1,2.99,09/27/19 16:49,"195 6th St, Los Angeles, CA 90001" +255716,AAA Batteries (4-pack),1,2.99,09/08/19 08:26,"438 Chestnut St, Los Angeles, CA 90001" +255717,USB-C Charging Cable,2,11.95,09/07/19 16:46,"632 Cherry St, Dallas, TX 75001" +255718,USB-C Charging Cable,1,11.95,09/27/19 18:56,"249 Meadow St, Los Angeles, CA 90001" +255719,iPhone,1,700,09/22/19 16:48,"575 Lake St, New York City, NY 10001" +255719,Lightning Charging Cable,1,14.95,09/22/19 16:48,"575 Lake St, New York City, NY 10001" +255720,LG Washing Machine,1,600.0,09/02/19 12:10,"8 12th St, Dallas, TX 75001" +255721,Lightning Charging Cable,1,14.95,09/06/19 11:43,"570 5th St, Boston, MA 02215" +255722,AAA Batteries (4-pack),2,2.99,09/07/19 11:54,"911 8th St, San Francisco, CA 94016" +255723,iPhone,1,700,09/20/19 11:32,"780 Park St, Seattle, WA 98101" +255724,AA Batteries (4-pack),1,3.84,09/08/19 16:45,"294 River St, Austin, TX 73301" +255725,Wired Headphones,1,11.99,09/02/19 11:24,"949 Dogwood St, Boston, MA 02215" +255726,34in Ultrawide Monitor,1,379.99,09/10/19 18:41,"413 Park St, New York City, NY 10001" +255727,Apple Airpods Headphones,1,150,09/06/19 19:40,"872 Center St, Austin, TX 73301" +255728,20in Monitor,1,109.99,09/02/19 22:23,"573 Lake St, New York City, NY 10001" +255729,Bose SoundSport Headphones,1,99.99,09/16/19 11:20,"382 2nd St, San Francisco, CA 94016" +255730,Wired Headphones,1,11.99,09/09/19 21:24,"305 South St, Portland, ME 04101" +255731,LG Washing Machine,1,600.0,09/06/19 14:22,"388 Wilson St, Atlanta, GA 30301" +255732,AAA Batteries (4-pack),2,2.99,09/15/19 13:08,"869 West St, Los Angeles, CA 90001" +255733,AAA Batteries (4-pack),1,2.99,09/12/19 11:48,"724 1st St, New York City, NY 10001" +255734,USB-C Charging Cable,1,11.95,09/20/19 16:17,"100 South St, New York City, NY 10001" +255735,Wired Headphones,1,11.99,09/17/19 15:59,"755 Lake St, San Francisco, CA 94016" +255736,Apple Airpods Headphones,1,150,09/12/19 09:53,"673 Church St, Los Angeles, CA 90001" +255737,Apple Airpods Headphones,1,150,09/10/19 17:43,"564 North St, Los Angeles, CA 90001" +255738,Lightning Charging Cable,1,14.95,09/03/19 06:11,"850 12th St, San Francisco, CA 94016" +255739,USB-C Charging Cable,1,11.95,09/15/19 00:22,"164 6th St, San Francisco, CA 94016" +255740,Google Phone,1,600,09/18/19 11:29,"382 Center St, Dallas, TX 75001" +255740,AA Batteries (4-pack),1,3.84,09/18/19 11:29,"382 Center St, Dallas, TX 75001" +255741,Bose SoundSport Headphones,1,99.99,09/26/19 15:37,"392 Cherry St, San Francisco, CA 94016" +255742,Google Phone,1,600,09/09/19 00:07,"812 Chestnut St, San Francisco, CA 94016" +255743,AAA Batteries (4-pack),1,2.99,09/30/19 12:41,"897 Meadow St, Los Angeles, CA 90001" +255744,iPhone,1,700,09/06/19 19:04,"811 Ridge St, Los Angeles, CA 90001" +255745,AA Batteries (4-pack),1,3.84,09/25/19 13:37,"30 Meadow St, Portland, OR 97035" +255746,Lightning Charging Cable,1,14.95,09/11/19 01:38,"944 1st St, Los Angeles, CA 90001" +255747,34in Ultrawide Monitor,1,379.99,09/16/19 12:26,"234 Chestnut St, New York City, NY 10001" +255748,Apple Airpods Headphones,1,150,09/15/19 17:55,"685 Cedar St, Boston, MA 02215" +255749,USB-C Charging Cable,1,11.95,09/23/19 11:23,"783 Lakeview St, New York City, NY 10001" +255750,AA Batteries (4-pack),2,3.84,09/08/19 16:00,"91 12th St, San Francisco, CA 94016" +255751,Google Phone,1,600,09/01/19 16:53,"921 14th St, San Francisco, CA 94016" +255752,Wired Headphones,1,11.99,09/05/19 11:09,"147 6th St, Dallas, TX 75001" +255753,Flatscreen TV,1,300,09/03/19 10:36,"350 Cherry St, San Francisco, CA 94016" +255754,AAA Batteries (4-pack),1,2.99,09/01/19 15:24,"126 10th St, San Francisco, CA 94016" +255755,Flatscreen TV,1,300,09/13/19 18:45,"891 Chestnut St, New York City, NY 10001" +255756,Macbook Pro Laptop,1,1700,09/29/19 17:11,"812 Main St, Seattle, WA 98101" +255757,USB-C Charging Cable,1,11.95,09/18/19 15:03,"844 Adams St, Los Angeles, CA 90001" +255758,iPhone,1,700,09/03/19 12:09,"48 Meadow St, Los Angeles, CA 90001" +255758,Wired Headphones,1,11.99,09/03/19 12:09,"48 Meadow St, Los Angeles, CA 90001" +255759,AAA Batteries (4-pack),3,2.99,09/28/19 09:37,"259 Pine St, Atlanta, GA 30301" +255760,Bose SoundSport Headphones,1,99.99,09/30/19 11:48,"716 Madison St, Portland, OR 97035" +255760,USB-C Charging Cable,1,11.95,09/30/19 11:48,"716 Madison St, Portland, OR 97035" +255761,Wired Headphones,1,11.99,09/01/19 15:49,"359 2nd St, Seattle, WA 98101" +255762,Apple Airpods Headphones,1,150,09/27/19 07:44,"956 5th St, San Francisco, CA 94016" +255762,Lightning Charging Cable,1,14.95,09/27/19 07:44,"956 5th St, San Francisco, CA 94016" +255763,Wired Headphones,1,11.99,09/30/19 08:48,"646 River St, San Francisco, CA 94016" +255764,AA Batteries (4-pack),1,3.84,09/23/19 19:56,"289 Main St, Austin, TX 73301" +255765,iPhone,1,700,09/30/19 09:38,"876 9th St, New York City, NY 10001" +255765,Wired Headphones,1,11.99,09/30/19 09:38,"876 9th St, New York City, NY 10001" +255766,27in FHD Monitor,1,149.99,09/23/19 19:22,"672 Lakeview St, Atlanta, GA 30301" +255767,iPhone,1,700,09/20/19 20:29,"220 Madison St, Los Angeles, CA 90001" +255768,Bose SoundSport Headphones,1,99.99,09/03/19 15:47,"887 Sunset St, Dallas, TX 75001" +255769,Lightning Charging Cable,1,14.95,09/13/19 22:16,"686 Lincoln St, Los Angeles, CA 90001" +255770,AAA Batteries (4-pack),2,2.99,09/03/19 11:35,"93 Cedar St, Los Angeles, CA 90001" +255771,AA Batteries (4-pack),1,3.84,09/17/19 23:59,"829 Church St, San Francisco, CA 94016" +255772,Lightning Charging Cable,1,14.95,09/08/19 17:31,"8 Washington St, San Francisco, CA 94016" +255773,Wired Headphones,1,11.99,09/28/19 03:08,"627 13th St, Boston, MA 02215" +255774,AA Batteries (4-pack),1,3.84,09/30/19 12:23,"178 Lake St, San Francisco, CA 94016" +255775,AAA Batteries (4-pack),1,2.99,09/30/19 10:07,"380 1st St, Seattle, WA 98101" +255776,USB-C Charging Cable,1,11.95,09/13/19 04:12,"671 Pine St, San Francisco, CA 94016" +255777,Lightning Charging Cable,1,14.95,09/06/19 23:29,"84 9th St, Dallas, TX 75001" +255778,Google Phone,1,600,09/30/19 20:16,"968 Main St, New York City, NY 10001" +255779,AAA Batteries (4-pack),1,2.99,09/20/19 14:35,"935 West St, Seattle, WA 98101" +255780,Lightning Charging Cable,1,14.95,09/01/19 16:18,"698 10th St, Boston, MA 02215" +255781,Lightning Charging Cable,1,14.95,09/11/19 22:21,"248 Hickory St, Portland, ME 04101" +255782,Apple Airpods Headphones,1,150,09/20/19 20:25,"723 Meadow St, Seattle, WA 98101" +255783,Wired Headphones,1,11.99,09/16/19 09:03,"711 Church St, Atlanta, GA 30301" +255784,20in Monitor,1,109.99,09/04/19 12:31,"398 Elm St, Austin, TX 73301" +255785,Lightning Charging Cable,1,14.95,09/15/19 14:26,"384 Maple St, San Francisco, CA 94016" +255786,34in Ultrawide Monitor,1,379.99,09/13/19 16:10,"353 Jefferson St, New York City, NY 10001" +255787,Bose SoundSport Headphones,1,99.99,09/25/19 18:32,"713 5th St, San Francisco, CA 94016" +255788,Lightning Charging Cable,1,14.95,09/30/19 18:34,"73 Meadow St, San Francisco, CA 94016" +255789,Wired Headphones,1,11.99,09/23/19 12:00,"51 2nd St, Boston, MA 02215" +255790,Flatscreen TV,1,300,09/05/19 14:52,"549 West St, Atlanta, GA 30301" +255791,20in Monitor,1,109.99,09/23/19 09:23,"982 4th St, Portland, ME 04101" +255792,AA Batteries (4-pack),1,3.84,09/01/19 10:56,"771 North St, Seattle, WA 98101" +255793,USB-C Charging Cable,1,11.95,09/22/19 10:41,"891 Chestnut St, New York City, NY 10001" +255794,Wired Headphones,1,11.99,09/29/19 20:18,"767 Lincoln St, Portland, OR 97035" +255795,Bose SoundSport Headphones,1,99.99,09/16/19 14:56,"381 Adams St, Seattle, WA 98101" +255796,Bose SoundSport Headphones,1,99.99,09/15/19 09:27,"523 7th St, Portland, OR 97035" +255797,USB-C Charging Cable,1,11.95,09/20/19 13:07,"567 Ridge St, Boston, MA 02215" +255798,Apple Airpods Headphones,1,150,09/09/19 22:50,"489 Church St, Boston, MA 02215" +255799,Wired Headphones,1,11.99,09/09/19 17:06,"203 West St, Los Angeles, CA 90001" +255800,Google Phone,1,600,09/14/19 08:24,"527 13th St, New York City, NY 10001" +255801,AA Batteries (4-pack),1,3.84,09/02/19 21:41,"124 North St, Seattle, WA 98101" +255802,27in 4K Gaming Monitor,1,389.99,09/22/19 18:21,"766 Lake St, Los Angeles, CA 90001" +255803,iPhone,1,700,09/16/19 23:58,"595 Meadow St, Los Angeles, CA 90001" +255804,Macbook Pro Laptop,1,1700,09/23/19 06:45,"843 Lake St, San Francisco, CA 94016" +255805,Apple Airpods Headphones,1,150,09/19/19 12:43,"852 Pine St, Boston, MA 02215" +255806,Apple Airpods Headphones,1,150,09/21/19 18:50,"398 13th St, San Francisco, CA 94016" +255807,AAA Batteries (4-pack),1,2.99,09/10/19 21:49,"151 Lakeview St, Atlanta, GA 30301" +255808,AA Batteries (4-pack),1,3.84,09/18/19 23:05,"17 North St, San Francisco, CA 94016" +,,,,, +255809,Apple Airpods Headphones,1,150,09/04/19 08:40,"961 10th St, New York City, NY 10001" +255810,Bose SoundSport Headphones,1,99.99,09/29/19 18:38,"139 River St, Portland, ME 04101" +255811,34in Ultrawide Monitor,1,379.99,09/23/19 13:44,"762 Spruce St, Boston, MA 02215" +255812,27in FHD Monitor,1,149.99,09/14/19 12:03,"465 Jackson St, San Francisco, CA 94016" +255813,Apple Airpods Headphones,1,150,09/22/19 16:42,"48 Walnut St, San Francisco, CA 94016" +255814,USB-C Charging Cable,3,11.95,09/07/19 19:36,"441 Jefferson St, Seattle, WA 98101" +255815,34in Ultrawide Monitor,1,379.99,09/20/19 18:34,"311 13th St, Los Angeles, CA 90001" +255816,USB-C Charging Cable,1,11.95,09/24/19 16:49,"450 Park St, Atlanta, GA 30301" +255817,Wired Headphones,1,11.99,09/19/19 12:26,"711 Madison St, San Francisco, CA 94016" +255818,27in FHD Monitor,1,149.99,09/18/19 17:40,"190 Highland St, Atlanta, GA 30301" +255819,Wired Headphones,1,11.99,09/13/19 01:23,"26 Center St, Seattle, WA 98101" +255820,AA Batteries (4-pack),1,3.84,09/15/19 16:22,"881 Jefferson St, New York City, NY 10001" +255821,27in FHD Monitor,1,149.99,09/04/19 15:51,"855 14th St, Boston, MA 02215" +255822,Bose SoundSport Headphones,1,99.99,09/23/19 21:03,"415 2nd St, Atlanta, GA 30301" +255823,Wired Headphones,1,11.99,09/27/19 22:22,"458 Jackson St, Boston, MA 02215" +255824,AAA Batteries (4-pack),1,2.99,09/08/19 09:42,"995 Washington St, Austin, TX 73301" +255825,iPhone,1,700,09/25/19 23:22,"200 Spruce St, Los Angeles, CA 90001" +255826,AAA Batteries (4-pack),1,2.99,09/30/19 13:22,"634 Walnut St, Los Angeles, CA 90001" +255827,Lightning Charging Cable,1,14.95,09/30/19 22:24,"529 Meadow St, Boston, MA 02215" +255828,iPhone,1,700,09/07/19 13:38,"948 Cherry St, Boston, MA 02215" +255828,Lightning Charging Cable,1,14.95,09/07/19 13:38,"948 Cherry St, Boston, MA 02215" +255829,AAA Batteries (4-pack),1,2.99,09/14/19 22:45,"135 Hill St, Seattle, WA 98101" +255830,Bose SoundSport Headphones,1,99.99,09/25/19 22:37,"188 Maple St, San Francisco, CA 94016" +255831,AA Batteries (4-pack),1,3.84,09/22/19 15:58,"879 8th St, New York City, NY 10001" +255832,Lightning Charging Cable,1,14.95,09/24/19 19:29,"526 1st St, New York City, NY 10001" +255833,Flatscreen TV,1,300,09/23/19 22:37,"593 Adams St, San Francisco, CA 94016" +255834,AA Batteries (4-pack),1,3.84,09/29/19 18:26,"74 Elm St, San Francisco, CA 94016" +255835,Lightning Charging Cable,1,14.95,09/12/19 09:44,"200 Church St, Boston, MA 02215" +255836,Vareebadd Phone,1,400,09/26/19 16:59,"972 Pine St, Los Angeles, CA 90001" +255837,Bose SoundSport Headphones,1,99.99,09/05/19 07:03,"716 Lincoln St, Austin, TX 73301" +255838,USB-C Charging Cable,1,11.95,09/27/19 05:52,"415 Dogwood St, Dallas, TX 75001" +255839,USB-C Charging Cable,1,11.95,09/01/19 14:01,"213 Willow St, Boston, MA 02215" +255840,Lightning Charging Cable,1,14.95,09/22/19 15:59,"506 10th St, Portland, OR 97035" +255841,AAA Batteries (4-pack),1,2.99,09/29/19 17:12,"675 North St, New York City, NY 10001" +255842,AAA Batteries (4-pack),1,2.99,09/20/19 16:57,"988 Maple St, New York City, NY 10001" +255843,Lightning Charging Cable,1,14.95,09/28/19 18:40,"886 Forest St, Los Angeles, CA 90001" +255844,AA Batteries (4-pack),3,3.84,09/24/19 17:03,"468 10th St, Seattle, WA 98101" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +255845,iPhone,1,700,09/04/19 23:53,"469 Maple St, San Francisco, CA 94016" +255845,Lightning Charging Cable,1,14.95,09/04/19 23:53,"469 Maple St, San Francisco, CA 94016" +255846,ThinkPad Laptop,1,999.99,09/07/19 16:10,"395 7th St, Boston, MA 02215" +255847,AAA Batteries (4-pack),1,2.99,09/11/19 13:13,"991 Cedar St, Los Angeles, CA 90001" +255848,Wired Headphones,1,11.99,09/08/19 13:57,"404 4th St, Portland, OR 97035" +255849,Wired Headphones,1,11.99,09/25/19 19:17,"159 Elm St, Austin, TX 73301" +255850,Lightning Charging Cable,1,14.95,09/25/19 11:14,"689 Main St, New York City, NY 10001" +255851,Bose SoundSport Headphones,1,99.99,09/24/19 16:36,"597 4th St, San Francisco, CA 94016" +255852,Bose SoundSport Headphones,1,99.99,09/30/19 10:45,"851 2nd St, San Francisco, CA 94016" +255853,AA Batteries (4-pack),1,3.84,09/27/19 19:56,"772 7th St, Dallas, TX 75001" +255854,AAA Batteries (4-pack),1,2.99,09/28/19 14:12,"907 Lake St, Los Angeles, CA 90001" +255855,ThinkPad Laptop,1,999.99,09/12/19 08:49,"709 Main St, Seattle, WA 98101" +255856,27in 4K Gaming Monitor,1,389.99,09/07/19 19:32,"276 5th St, Boston, MA 02215" +255857,Macbook Pro Laptop,1,1700,09/16/19 06:50,"228 Maple St, Boston, MA 02215" +255858,USB-C Charging Cable,1,11.95,09/19/19 17:20,"689 Willow St, Austin, TX 73301" +255859,AA Batteries (4-pack),1,3.84,09/16/19 22:33,"453 River St, Boston, MA 02215" +255860,USB-C Charging Cable,1,11.95,09/24/19 13:07,"247 Church St, Atlanta, GA 30301" +255861,Apple Airpods Headphones,1,150,09/09/19 14:16,"178 North St, Atlanta, GA 30301" +255862,Lightning Charging Cable,1,14.95,09/05/19 16:05,"940 6th St, New York City, NY 10001" +255863,27in FHD Monitor,1,149.99,09/23/19 18:30,"407 Willow St, New York City, NY 10001" +255864,27in 4K Gaming Monitor,1,389.99,09/05/19 07:18,"622 Wilson St, Los Angeles, CA 90001" +255865,Lightning Charging Cable,1,14.95,09/09/19 19:11,"944 Park St, Atlanta, GA 30301" +255866,Lightning Charging Cable,1,14.95,09/26/19 23:21,"753 Center St, Portland, OR 97035" +255867,AAA Batteries (4-pack),2,2.99,09/26/19 12:37,"36 Sunset St, Seattle, WA 98101" +255868,Bose SoundSport Headphones,1,99.99,09/14/19 15:13,"425 Adams St, Seattle, WA 98101" +255869,Bose SoundSport Headphones,1,99.99,09/04/19 12:27,"753 Willow St, Atlanta, GA 30301" +255870,Lightning Charging Cable,1,14.95,09/06/19 10:21,"715 Ridge St, Austin, TX 73301" +255871,Bose SoundSport Headphones,1,99.99,09/04/19 13:23,"844 1st St, Los Angeles, CA 90001" +255872,AA Batteries (4-pack),1,3.84,09/23/19 10:09,"498 7th St, Portland, OR 97035" +255873,Lightning Charging Cable,1,14.95,09/25/19 13:55,"125 11th St, San Francisco, CA 94016" +255874,Wired Headphones,1,11.99,09/27/19 17:03,"374 West St, Los Angeles, CA 90001" +255875,Apple Airpods Headphones,1,150,09/04/19 20:49,"349 Pine St, Boston, MA 02215" +255876,Lightning Charging Cable,1,14.95,09/04/19 14:57,"642 Jefferson St, San Francisco, CA 94016" +255877,27in FHD Monitor,1,149.99,09/30/19 10:41,"862 Adams St, Seattle, WA 98101" +255878,Bose SoundSport Headphones,1,99.99,09/30/19 14:31,"24 Jackson St, Los Angeles, CA 90001" +255879,Wired Headphones,2,11.99,09/11/19 14:47,"863 Ridge St, San Francisco, CA 94016" +255880,ThinkPad Laptop,1,999.99,09/08/19 15:39,"357 2nd St, San Francisco, CA 94016" +255881,34in Ultrawide Monitor,1,379.99,09/28/19 22:33,"432 Hickory St, Los Angeles, CA 90001" +255882,Apple Airpods Headphones,1,150,09/06/19 21:18,"157 Madison St, Los Angeles, CA 90001" +255883,USB-C Charging Cable,1,11.95,09/28/19 03:37,"755 Johnson St, New York City, NY 10001" +255884,Lightning Charging Cable,1,14.95,09/24/19 00:48,"625 Dogwood St, Seattle, WA 98101" +255884,AAA Batteries (4-pack),2,2.99,09/24/19 00:48,"625 Dogwood St, Seattle, WA 98101" +255885,27in FHD Monitor,1,149.99,09/04/19 14:30,"180 Main St, Atlanta, GA 30301" +255886,27in FHD Monitor,1,149.99,09/30/19 21:48,"191 4th St, San Francisco, CA 94016" +255887,AA Batteries (4-pack),1,3.84,09/15/19 21:28,"765 North St, Boston, MA 02215" +255888,20in Monitor,1,109.99,09/19/19 15:32,"72 Adams St, Atlanta, GA 30301" +255889,34in Ultrawide Monitor,1,379.99,09/28/19 14:38,"645 Meadow St, San Francisco, CA 94016" +255890,Lightning Charging Cable,1,14.95,09/25/19 21:25,"6 Spruce St, Los Angeles, CA 90001" +255891,USB-C Charging Cable,1,11.95,09/15/19 10:40,"842 Willow St, Atlanta, GA 30301" +255892,Lightning Charging Cable,1,14.95,09/18/19 15:02,"815 Jackson St, Los Angeles, CA 90001" +255893,Wired Headphones,1,11.99,09/04/19 00:02,"122 11th St, Los Angeles, CA 90001" +255894,Google Phone,1,600,09/07/19 18:36,"560 Lake St, San Francisco, CA 94016" +255895,AAA Batteries (4-pack),1,2.99,09/15/19 11:41,"450 6th St, Seattle, WA 98101" +255896,20in Monitor,1,109.99,09/29/19 10:52,"592 Cherry St, Boston, MA 02215" +255897,Lightning Charging Cable,1,14.95,09/08/19 21:03,"844 Dogwood St, San Francisco, CA 94016" +255898,AA Batteries (4-pack),2,3.84,09/09/19 14:18,"987 Chestnut St, Boston, MA 02215" +255899,AAA Batteries (4-pack),1,2.99,09/06/19 23:43,"979 14th St, Seattle, WA 98101" +255900,Google Phone,1,600,09/28/19 19:47,"229 Maple St, Boston, MA 02215" +255901,Bose SoundSport Headphones,1,99.99,09/20/19 15:33,"98 Jackson St, New York City, NY 10001" +255902,Apple Airpods Headphones,1,150,09/11/19 20:28,"579 14th St, Los Angeles, CA 90001" +255903,AAA Batteries (4-pack),1,2.99,09/13/19 06:16,"501 Jackson St, San Francisco, CA 94016" +255904,Lightning Charging Cable,1,14.95,09/23/19 21:01,"898 Spruce St, New York City, NY 10001" +255905,USB-C Charging Cable,1,11.95,09/23/19 12:43,"480 2nd St, Los Angeles, CA 90001" +255906,Apple Airpods Headphones,1,150,09/17/19 09:19,"323 11th St, Dallas, TX 75001" +255907,Bose SoundSport Headphones,1,99.99,09/16/19 10:12,"714 Jackson St, Seattle, WA 98101" +255908,Apple Airpods Headphones,1,150,10/01/19 01:53,"506 Willow St, San Francisco, CA 94016" +255909,Apple Airpods Headphones,1,150,09/18/19 17:24,"938 Spruce St, San Francisco, CA 94016" +255910,Wired Headphones,1,11.99,09/12/19 16:25,"863 Lincoln St, Portland, ME 04101" +255911,Macbook Pro Laptop,1,1700,09/06/19 17:56,"678 Lakeview St, Boston, MA 02215" +255912,USB-C Charging Cable,1,11.95,09/28/19 08:27,"929 Main St, New York City, NY 10001" +255913,34in Ultrawide Monitor,1,379.99,09/24/19 08:49,"558 Meadow St, Boston, MA 02215" +255914,AAA Batteries (4-pack),3,2.99,09/01/19 16:54,"669 Hill St, San Francisco, CA 94016" +255915,Wired Headphones,1,11.99,09/12/19 20:24,"897 Adams St, Portland, OR 97035" +255916,Wired Headphones,1,11.99,09/07/19 16:02,"698 13th St, Seattle, WA 98101" +255917,USB-C Charging Cable,1,11.95,09/16/19 20:11,"176 9th St, New York City, NY 10001" +255918,LG Washing Machine,1,600.0,09/17/19 13:53,"684 Elm St, Los Angeles, CA 90001" +255919,AAA Batteries (4-pack),3,2.99,09/12/19 13:07,"726 12th St, New York City, NY 10001" +255920,27in 4K Gaming Monitor,1,389.99,09/23/19 10:48,"228 Johnson St, San Francisco, CA 94016" +255921,Lightning Charging Cable,1,14.95,09/14/19 01:42,"675 7th St, Los Angeles, CA 90001" +255922,27in 4K Gaming Monitor,1,389.99,09/23/19 20:07,"278 Maple St, Los Angeles, CA 90001" +255923,Google Phone,1,600,09/21/19 12:03,"483 Jackson St, Seattle, WA 98101" +255924,Lightning Charging Cable,1,14.95,09/26/19 13:09,"469 Adams St, Boston, MA 02215" +255925,27in 4K Gaming Monitor,1,389.99,09/16/19 20:05,"933 Jefferson St, Boston, MA 02215" +255926,Lightning Charging Cable,1,14.95,09/23/19 21:51,"632 13th St, Seattle, WA 98101" +255927,AAA Batteries (4-pack),4,2.99,09/14/19 20:39,"11 10th St, Boston, MA 02215" +255928,Bose SoundSport Headphones,1,99.99,09/09/19 09:07,"997 9th St, Boston, MA 02215" +255929,AA Batteries (4-pack),1,3.84,09/03/19 14:32,"952 2nd St, Dallas, TX 75001" +255930,AA Batteries (4-pack),1,3.84,09/28/19 18:26,"267 North St, New York City, NY 10001" +255931,Apple Airpods Headphones,1,150,09/18/19 23:32,"216 Main St, Boston, MA 02215" +255932,AA Batteries (4-pack),1,3.84,09/19/19 09:24,"138 Hill St, Boston, MA 02215" +255933,AAA Batteries (4-pack),1,2.99,09/25/19 09:22,"514 Cherry St, Boston, MA 02215" +255934,Vareebadd Phone,1,400,09/26/19 15:00,"40 Meadow St, San Francisco, CA 94016" +255935,Lightning Charging Cable,1,14.95,09/18/19 19:07,"70 Walnut St, San Francisco, CA 94016" +255936,Bose SoundSport Headphones,1,99.99,09/24/19 11:31,"302 1st St, San Francisco, CA 94016" +255937,AA Batteries (4-pack),1,3.84,09/11/19 02:41,"913 Center St, Los Angeles, CA 90001" +255938,AAA Batteries (4-pack),1,2.99,09/13/19 22:55,"428 Jackson St, San Francisco, CA 94016" +255939,Wired Headphones,1,11.99,09/28/19 10:28,"993 12th St, San Francisco, CA 94016" +255940,USB-C Charging Cable,1,11.95,09/26/19 12:21,"213 Cedar St, Seattle, WA 98101" +255941,27in FHD Monitor,1,149.99,09/10/19 19:18,"975 Washington St, Austin, TX 73301" +255942,AA Batteries (4-pack),1,3.84,09/27/19 20:54,"204 9th St, San Francisco, CA 94016" +255943,AA Batteries (4-pack),1,3.84,09/14/19 22:05,"40 Johnson St, Austin, TX 73301" +255944,AA Batteries (4-pack),1,3.84,09/05/19 20:22,"113 Highland St, San Francisco, CA 94016" +255945,AA Batteries (4-pack),1,3.84,09/24/19 11:47,"937 11th St, San Francisco, CA 94016" +255946,27in FHD Monitor,1,149.99,09/27/19 16:16,"612 Cedar St, Atlanta, GA 30301" +255947,AAA Batteries (4-pack),1,2.99,09/12/19 09:43,"442 6th St, Los Angeles, CA 90001" +255948,Macbook Pro Laptop,1,1700,09/17/19 09:02,"625 Lake St, Los Angeles, CA 90001" +255949,Google Phone,1,600,09/25/19 19:31,"121 Hickory St, Dallas, TX 75001" +255950,USB-C Charging Cable,1,11.95,09/11/19 17:17,"105 Dogwood St, Los Angeles, CA 90001" +255951,AAA Batteries (4-pack),1,2.99,09/10/19 12:46,"230 Willow St, Boston, MA 02215" +255952,AA Batteries (4-pack),1,3.84,09/23/19 20:22,"804 Willow St, New York City, NY 10001" +255953,Wired Headphones,1,11.99,09/09/19 09:25,"635 River St, San Francisco, CA 94016" +255954,USB-C Charging Cable,1,11.95,09/11/19 18:56,"223 1st St, San Francisco, CA 94016" +255955,Macbook Pro Laptop,1,1700,09/16/19 09:00,"416 Chestnut St, New York City, NY 10001" +255956,USB-C Charging Cable,1,11.95,09/22/19 11:48,"64 Wilson St, San Francisco, CA 94016" +255957,AAA Batteries (4-pack),1,2.99,09/26/19 11:06,"167 South St, San Francisco, CA 94016" +255958,Lightning Charging Cable,1,14.95,09/29/19 08:13,"442 Ridge St, New York City, NY 10001" +255959,Bose SoundSport Headphones,1,99.99,09/11/19 15:08,"214 Elm St, New York City, NY 10001" +255960,AA Batteries (4-pack),2,3.84,09/20/19 21:02,"567 7th St, Portland, ME 04101" +255961,AA Batteries (4-pack),1,3.84,09/15/19 14:57,"337 8th St, Seattle, WA 98101" +255962,USB-C Charging Cable,2,11.95,09/04/19 18:33,"652 Hill St, Dallas, TX 75001" +255963,AAA Batteries (4-pack),2,2.99,09/25/19 16:09,"281 1st St, Los Angeles, CA 90001" +255964,iPhone,1,700,09/02/19 08:32,"592 Main St, Portland, OR 97035" +255965,AA Batteries (4-pack),1,3.84,09/14/19 01:00,"254 Elm St, New York City, NY 10001" +255966,34in Ultrawide Monitor,1,379.99,09/04/19 17:36,"964 1st St, San Francisco, CA 94016" +255967,USB-C Charging Cable,1,11.95,09/12/19 14:15,"686 14th St, Seattle, WA 98101" +255968,AA Batteries (4-pack),1,3.84,09/12/19 17:48,"554 Lakeview St, Portland, OR 97035" +255969,Bose SoundSport Headphones,1,99.99,09/05/19 13:46,"700 Chestnut St, Los Angeles, CA 90001" +255970,Bose SoundSport Headphones,1,99.99,09/13/19 10:42,"932 Johnson St, New York City, NY 10001" +255971,Wired Headphones,1,11.99,09/19/19 18:09,"401 Main St, Dallas, TX 75001" +255972,Bose SoundSport Headphones,1,99.99,09/27/19 14:22,"980 Highland St, Atlanta, GA 30301" +255973,LG Washing Machine,1,600.0,09/20/19 19:05,"420 5th St, Dallas, TX 75001" +255974,AAA Batteries (4-pack),2,2.99,09/07/19 13:01,"245 Forest St, Seattle, WA 98101" +255975,USB-C Charging Cable,1,11.95,09/17/19 10:35,"654 Willow St, New York City, NY 10001" +255976,AAA Batteries (4-pack),1,2.99,09/15/19 15:51,"55 Willow St, San Francisco, CA 94016" +255977,AA Batteries (4-pack),2,3.84,09/24/19 00:35,"350 North St, Austin, TX 73301" +255978,Bose SoundSport Headphones,1,99.99,09/01/19 20:56,"752 11th St, Boston, MA 02215" +255979,27in FHD Monitor,1,149.99,09/09/19 17:32,"852 11th St, Los Angeles, CA 90001" +255980,Lightning Charging Cable,1,14.95,09/29/19 13:59,"836 Spruce St, Austin, TX 73301" +255981,AA Batteries (4-pack),1,3.84,09/06/19 07:39,"345 5th St, San Francisco, CA 94016" +255982,Apple Airpods Headphones,1,150,09/15/19 00:21,"837 Cherry St, Los Angeles, CA 90001" +255983,34in Ultrawide Monitor,1,379.99,09/09/19 12:42,"720 Ridge St, Boston, MA 02215" +255984,Apple Airpods Headphones,1,150,09/25/19 20:43,"738 14th St, San Francisco, CA 94016" +255985,Lightning Charging Cable,1,14.95,09/02/19 20:11,"10 Chestnut St, San Francisco, CA 94016" +255986,USB-C Charging Cable,2,11.95,09/02/19 18:48,"333 11th St, New York City, NY 10001" +255987,USB-C Charging Cable,1,11.95,09/03/19 01:49,"895 4th St, New York City, NY 10001" +255988,Flatscreen TV,1,300,09/11/19 14:08,"929 2nd St, Austin, TX 73301" +255989,iPhone,1,700,09/04/19 11:53,"632 7th St, New York City, NY 10001" +255990,Bose SoundSport Headphones,1,99.99,09/24/19 16:51,"510 7th St, San Francisco, CA 94016" +255991,AA Batteries (4-pack),1,3.84,09/11/19 16:38,"685 Forest St, Los Angeles, CA 90001" +255992,Macbook Pro Laptop,1,1700,09/06/19 01:47,"402 Hickory St, San Francisco, CA 94016" +255993,AAA Batteries (4-pack),1,2.99,09/10/19 23:01,"773 Cherry St, Austin, TX 73301" +255994,Apple Airpods Headphones,1,150,09/26/19 09:45,"151 13th St, Atlanta, GA 30301" +255995,27in FHD Monitor,1,149.99,09/30/19 10:54,"548 Sunset St, New York City, NY 10001" +255996,Apple Airpods Headphones,1,150,09/09/19 10:18,"913 Park St, San Francisco, CA 94016" +255997,Bose SoundSport Headphones,1,99.99,09/25/19 13:07,"40 Cedar St, Portland, OR 97035" +255998,USB-C Charging Cable,1,11.95,09/03/19 09:15,"332 Forest St, San Francisco, CA 94016" +255999,Lightning Charging Cable,1,14.95,09/23/19 18:30,"823 Adams St, San Francisco, CA 94016" +256000,AAA Batteries (4-pack),1,2.99,09/08/19 16:52,"255 South St, Boston, MA 02215" +256001,Flatscreen TV,1,300,09/27/19 20:34,"644 7th St, Los Angeles, CA 90001" +256002,Macbook Pro Laptop,1,1700,09/15/19 16:21,"33 Cedar St, Seattle, WA 98101" +256003,Macbook Pro Laptop,1,1700,09/28/19 11:01,"383 West St, Los Angeles, CA 90001" +256004,27in 4K Gaming Monitor,1,389.99,09/07/19 19:54,"374 Lincoln St, Los Angeles, CA 90001" +256005,27in FHD Monitor,1,149.99,09/23/19 21:44,"391 Chestnut St, Dallas, TX 75001" +256006,AA Batteries (4-pack),1,3.84,09/02/19 14:11,"804 Highland St, Los Angeles, CA 90001" +256007,Flatscreen TV,1,300,09/01/19 23:40,"957 Madison St, Dallas, TX 75001" +256008,USB-C Charging Cable,1,11.95,09/16/19 15:44,"274 Park St, San Francisco, CA 94016" +256009,27in 4K Gaming Monitor,1,389.99,09/23/19 23:15,"163 7th St, Los Angeles, CA 90001" +256010,27in FHD Monitor,1,149.99,09/18/19 13:38,"808 Pine St, New York City, NY 10001" +256011,AA Batteries (4-pack),1,3.84,09/17/19 22:48,"769 Walnut St, New York City, NY 10001" +256012,Macbook Pro Laptop,1,1700,09/09/19 11:41,"870 Church St, San Francisco, CA 94016" +256013,USB-C Charging Cable,1,11.95,09/22/19 17:05,"941 8th St, Seattle, WA 98101" +256014,Apple Airpods Headphones,1,150,09/08/19 15:53,"395 5th St, Boston, MA 02215" +256015,AAA Batteries (4-pack),1,2.99,09/05/19 21:44,"368 Johnson St, New York City, NY 10001" +256016,AA Batteries (4-pack),1,3.84,09/30/19 12:38,"887 Lake St, Los Angeles, CA 90001" +256017,AA Batteries (4-pack),1,3.84,09/06/19 23:36,"808 Meadow St, Portland, OR 97035" +256018,USB-C Charging Cable,2,11.95,09/11/19 17:19,"968 South St, Dallas, TX 75001" +256019,Wired Headphones,1,11.99,09/19/19 06:55,"695 Jefferson St, San Francisco, CA 94016" +256020,Bose SoundSport Headphones,1,99.99,09/06/19 16:16,"314 Maple St, Boston, MA 02215" +256021,Google Phone,1,600,09/15/19 22:40,"229 River St, New York City, NY 10001" +256022,Google Phone,1,600,09/10/19 17:49,"445 Pine St, Los Angeles, CA 90001" +256023,Bose SoundSport Headphones,1,99.99,09/30/19 10:39,"300 2nd St, Portland, OR 97035" +256024,27in 4K Gaming Monitor,1,389.99,09/15/19 16:24,"251 North St, Portland, OR 97035" +256025,Apple Airpods Headphones,1,150,09/23/19 22:47,"983 10th St, San Francisco, CA 94016" +256026,27in FHD Monitor,1,149.99,09/29/19 13:22,"142 Park St, San Francisco, CA 94016" +256027,AAA Batteries (4-pack),2,2.99,09/28/19 16:16,"929 Meadow St, Atlanta, GA 30301" +256028,iPhone,1,700,09/20/19 21:43,"539 Pine St, Seattle, WA 98101" +256028,Apple Airpods Headphones,1,150,09/20/19 21:43,"539 Pine St, Seattle, WA 98101" +256029,20in Monitor,1,109.99,09/26/19 15:54,"5 Johnson St, Atlanta, GA 30301" +256030,Apple Airpods Headphones,1,150,09/16/19 15:41,"170 Dogwood St, Portland, OR 97035" +256031,Wired Headphones,1,11.99,09/30/19 20:35,"60 Pine St, New York City, NY 10001" +256032,Wired Headphones,1,11.99,09/21/19 08:34,"998 13th St, San Francisco, CA 94016" +256033,Google Phone,1,600,09/09/19 12:33,"856 Elm St, Boston, MA 02215" +256033,USB-C Charging Cable,1,11.95,09/09/19 12:33,"856 Elm St, Boston, MA 02215" +256034,iPhone,1,700,09/25/19 13:38,"467 Spruce St, Austin, TX 73301" +256034,Lightning Charging Cable,1,14.95,09/25/19 13:38,"467 Spruce St, Austin, TX 73301" +256035,AA Batteries (4-pack),1,3.84,09/19/19 14:07,"902 Johnson St, New York City, NY 10001" +256036,27in 4K Gaming Monitor,1,389.99,09/16/19 19:39,"271 Hill St, Dallas, TX 75001" +256037,AA Batteries (4-pack),1,3.84,09/26/19 12:02,"220 6th St, Los Angeles, CA 90001" +256038,Apple Airpods Headphones,1,150,09/24/19 15:09,"66 7th St, New York City, NY 10001" +256039,27in FHD Monitor,1,149.99,09/27/19 16:23,"828 Adams St, San Francisco, CA 94016" +256040,Lightning Charging Cable,1,14.95,09/11/19 19:12,"544 1st St, Austin, TX 73301" +256041,AAA Batteries (4-pack),2,2.99,09/26/19 08:52,"328 Church St, San Francisco, CA 94016" +256042,Apple Airpods Headphones,1,150,09/05/19 11:49,"912 Park St, Austin, TX 73301" +256043,Wired Headphones,1,11.99,09/26/19 09:52,"970 River St, New York City, NY 10001" +256044,20in Monitor,1,109.99,09/20/19 19:19,"990 Center St, Boston, MA 02215" +256045,27in FHD Monitor,1,149.99,09/11/19 21:31,"617 10th St, San Francisco, CA 94016" +256046,Flatscreen TV,2,300,09/27/19 13:39,"650 Pine St, New York City, NY 10001" +256047,ThinkPad Laptop,1,999.99,09/11/19 12:51,"798 Meadow St, Atlanta, GA 30301" +256048,Wired Headphones,1,11.99,09/03/19 14:03,"339 Ridge St, Portland, ME 04101" +256049,AA Batteries (4-pack),1,3.84,09/02/19 19:29,"85 Maple St, San Francisco, CA 94016" +256050,Apple Airpods Headphones,1,150,09/30/19 09:20,"829 Maple St, San Francisco, CA 94016" +256051,Lightning Charging Cable,1,14.95,09/10/19 16:41,"143 6th St, Boston, MA 02215" +256052,USB-C Charging Cable,1,11.95,09/10/19 19:51,"789 River St, Los Angeles, CA 90001" +256052,27in FHD Monitor,1,149.99,09/10/19 19:51,"789 River St, Los Angeles, CA 90001" +256053,iPhone,1,700,09/06/19 21:51,"708 Elm St, New York City, NY 10001" +256054,Lightning Charging Cable,2,14.95,09/25/19 12:59,"131 14th St, Atlanta, GA 30301" +256055,Lightning Charging Cable,1,14.95,09/23/19 23:02,"135 9th St, Seattle, WA 98101" +256056,Flatscreen TV,1,300,09/05/19 16:22,"785 Meadow St, San Francisco, CA 94016" +256057,Apple Airpods Headphones,1,150,09/03/19 06:04,"373 Forest St, San Francisco, CA 94016" +256058,USB-C Charging Cable,1,11.95,09/04/19 10:51,"844 Johnson St, San Francisco, CA 94016" +256059,Lightning Charging Cable,2,14.95,09/05/19 09:29,"302 13th St, New York City, NY 10001" +256060,USB-C Charging Cable,1,11.95,09/24/19 02:30,"782 Cedar St, San Francisco, CA 94016" +256061,Google Phone,1,600,09/22/19 11:16,"376 River St, Los Angeles, CA 90001" +,,,,, +256062,ThinkPad Laptop,1,999.99,09/17/19 14:52,"707 River St, New York City, NY 10001" +256063,27in 4K Gaming Monitor,1,389.99,09/23/19 17:37,"2 Lincoln St, Portland, OR 97035" +256064,AAA Batteries (4-pack),2,2.99,09/15/19 20:59,"842 9th St, San Francisco, CA 94016" +256065,Apple Airpods Headphones,1,150,09/01/19 21:48,"967 Church St, Dallas, TX 75001" +256066,Wired Headphones,1,11.99,09/10/19 14:53,"906 Jackson St, San Francisco, CA 94016" +256067,Flatscreen TV,1,300,09/25/19 00:01,"102 8th St, Dallas, TX 75001" +256068,Apple Airpods Headphones,1,150,09/03/19 16:27,"422 Elm St, Los Angeles, CA 90001" +256069,Bose SoundSport Headphones,1,99.99,09/04/19 01:49,"449 Forest St, San Francisco, CA 94016" +256070,Bose SoundSport Headphones,1,99.99,09/20/19 13:14,"233 14th St, Atlanta, GA 30301" +256071,27in 4K Gaming Monitor,1,389.99,09/19/19 09:50,"473 Maple St, Portland, ME 04101" +256072,Wired Headphones,1,11.99,09/07/19 13:43,"659 13th St, Los Angeles, CA 90001" +256073,Bose SoundSport Headphones,1,99.99,09/14/19 23:43,"106 Cherry St, Seattle, WA 98101" +256074,Bose SoundSport Headphones,1,99.99,09/18/19 19:00,"129 Meadow St, New York City, NY 10001" +256075,Flatscreen TV,1,300,09/27/19 16:03,"448 Walnut St, Seattle, WA 98101" +256076,Wired Headphones,1,11.99,09/24/19 18:19,"536 2nd St, San Francisco, CA 94016" +256077,AAA Batteries (4-pack),1,2.99,09/27/19 09:01,"261 14th St, Boston, MA 02215" +256078,AA Batteries (4-pack),1,3.84,09/25/19 12:15,"19 7th St, Atlanta, GA 30301" +256079,USB-C Charging Cable,1,11.95,09/22/19 16:25,"995 Highland St, Los Angeles, CA 90001" +256080,Lightning Charging Cable,1,14.95,09/12/19 18:46,"17 13th St, Los Angeles, CA 90001" +256081,AAA Batteries (4-pack),1,2.99,10/01/19 01:14,"434 Hickory St, San Francisco, CA 94016" +256082,Flatscreen TV,1,300,09/28/19 17:32,"146 Cherry St, Los Angeles, CA 90001" +256083,Macbook Pro Laptop,1,1700,09/19/19 16:26,"202 Hickory St, New York City, NY 10001" +256084,iPhone,1,700,09/24/19 16:34,"307 Maple St, Los Angeles, CA 90001" +256085,Lightning Charging Cable,1,14.95,09/02/19 14:48,"181 Elm St, Atlanta, GA 30301" +256086,AAA Batteries (4-pack),3,2.99,09/13/19 16:46,"574 Elm St, Portland, OR 97035" +256087,Apple Airpods Headphones,1,150,09/17/19 23:16,"52 4th St, San Francisco, CA 94016" +256088,Wired Headphones,1,11.99,09/06/19 19:38,"855 Hickory St, San Francisco, CA 94016" +256089,Vareebadd Phone,1,400,09/18/19 18:14,"541 Meadow St, Boston, MA 02215" +256090,AA Batteries (4-pack),1,3.84,09/21/19 19:59,"452 12th St, San Francisco, CA 94016" +256091,USB-C Charging Cable,1,11.95,09/09/19 23:18,"669 Washington St, Boston, MA 02215" +256092,Bose SoundSport Headphones,1,99.99,09/13/19 09:50,"6 Willow St, Dallas, TX 75001" +256093,AAA Batteries (4-pack),1,2.99,09/03/19 14:55,"583 13th St, Atlanta, GA 30301" +256094,20in Monitor,1,109.99,09/02/19 07:46,"197 Spruce St, San Francisco, CA 94016" +256095,34in Ultrawide Monitor,1,379.99,09/17/19 09:22,"823 Hickory St, Los Angeles, CA 90001" +256096,34in Ultrawide Monitor,1,379.99,09/11/19 13:40,"564 Cedar St, Portland, ME 04101" +256097,Wired Headphones,1,11.99,09/07/19 10:46,"342 Sunset St, Boston, MA 02215" +256098,Apple Airpods Headphones,1,150,09/25/19 17:56,"956 12th St, San Francisco, CA 94016" +256099,Apple Airpods Headphones,1,150,09/22/19 19:57,"892 14th St, Seattle, WA 98101" +256100,Bose SoundSport Headphones,1,99.99,09/09/19 06:35,"95 Walnut St, San Francisco, CA 94016" +256101,AA Batteries (4-pack),2,3.84,09/16/19 06:57,"340 Lakeview St, Portland, OR 97035" +256102,Flatscreen TV,1,300,09/11/19 05:58,"215 South St, San Francisco, CA 94016" +256103,Bose SoundSport Headphones,1,99.99,09/24/19 07:52,"777 Madison St, San Francisco, CA 94016" +256104,AAA Batteries (4-pack),2,2.99,09/10/19 11:52,"43 9th St, San Francisco, CA 94016" +256105,Wired Headphones,1,11.99,09/14/19 22:53,"584 Walnut St, Los Angeles, CA 90001" +256106,Bose SoundSport Headphones,1,99.99,09/07/19 14:28,"972 14th St, Portland, ME 04101" +256107,USB-C Charging Cable,1,11.95,09/04/19 13:18,"395 Jackson St, New York City, NY 10001" +256108,iPhone,1,700,09/11/19 17:46,"125 Adams St, Atlanta, GA 30301" +256109,Wired Headphones,1,11.99,09/01/19 11:47,"932 Hill St, San Francisco, CA 94016" +256110,USB-C Charging Cable,1,11.95,09/04/19 13:09,"29 Washington St, New York City, NY 10001" +256111,ThinkPad Laptop,1,999.99,09/01/19 17:53,"737 Meadow St, New York City, NY 10001" +256112,AA Batteries (4-pack),1,3.84,09/10/19 17:54,"812 Hickory St, San Francisco, CA 94016" +256113,AAA Batteries (4-pack),5,2.99,09/28/19 14:54,"987 Walnut St, New York City, NY 10001" +256114,Lightning Charging Cable,1,14.95,09/20/19 23:56,"809 Cherry St, San Francisco, CA 94016" +256115,AA Batteries (4-pack),1,3.84,09/27/19 11:17,"217 Lakeview St, Los Angeles, CA 90001" +256116,LG Washing Machine,1,600.0,09/16/19 23:58,"75 Highland St, Atlanta, GA 30301" +256117,USB-C Charging Cable,1,11.95,09/30/19 22:11,"245 Hill St, Los Angeles, CA 90001" +256118,AAA Batteries (4-pack),1,2.99,09/04/19 18:03,"457 10th St, Boston, MA 02215" +256119,AAA Batteries (4-pack),2,2.99,09/12/19 10:35,"806 Hill St, New York City, NY 10001" +256120,27in 4K Gaming Monitor,1,389.99,09/23/19 20:00,"906 Elm St, San Francisco, CA 94016" +256121,34in Ultrawide Monitor,1,379.99,09/03/19 20:16,"130 Forest St, San Francisco, CA 94016" +256122,Bose SoundSport Headphones,1,99.99,09/26/19 12:29,"702 Lake St, Dallas, TX 75001" +256123,Lightning Charging Cable,1,14.95,09/10/19 19:24,"867 Lincoln St, San Francisco, CA 94016" +256124,Apple Airpods Headphones,1,150,09/29/19 20:54,"700 2nd St, Los Angeles, CA 90001" +256125,Google Phone,1,600,09/22/19 15:16,"100 5th St, San Francisco, CA 94016" +256126,Lightning Charging Cable,1,14.95,09/09/19 16:54,"596 5th St, Portland, OR 97035" +256127,Lightning Charging Cable,1,14.95,09/02/19 12:01,"288 Hickory St, Los Angeles, CA 90001" +256128,ThinkPad Laptop,1,999.99,09/24/19 17:53,"424 11th St, Los Angeles, CA 90001" +256128,AAA Batteries (4-pack),1,2.99,09/24/19 17:53,"424 11th St, Los Angeles, CA 90001" +256129,Apple Airpods Headphones,1,150,09/30/19 21:19,"605 Maple St, San Francisco, CA 94016" +256130,Lightning Charging Cable,1,14.95,09/22/19 08:47,"89 River St, New York City, NY 10001" +256131,iPhone,1,700,09/08/19 21:51,"97 2nd St, San Francisco, CA 94016" +256132,AAA Batteries (4-pack),1,2.99,09/23/19 15:49,"523 Cedar St, Los Angeles, CA 90001" +256133,Bose SoundSport Headphones,1,99.99,09/28/19 14:40,"138 4th St, Austin, TX 73301" +256134,LG Washing Machine,1,600.0,09/03/19 20:59,"396 Highland St, Portland, OR 97035" +256135,USB-C Charging Cable,1,11.95,09/22/19 12:29,"403 9th St, Los Angeles, CA 90001" +256136,27in FHD Monitor,1,149.99,09/11/19 08:19,"518 Center St, San Francisco, CA 94016" +256137,AAA Batteries (4-pack),1,2.99,09/08/19 18:29,"279 Meadow St, Portland, OR 97035" +256138,AA Batteries (4-pack),1,3.84,09/02/19 22:19,"610 Adams St, New York City, NY 10001" +256139,iPhone,1,700,09/29/19 16:54,"860 Pine St, Atlanta, GA 30301" +256140,AAA Batteries (4-pack),3,2.99,09/15/19 14:10,"724 5th St, San Francisco, CA 94016" +256141,Bose SoundSport Headphones,1,99.99,09/08/19 12:16,"749 9th St, San Francisco, CA 94016" +256142,USB-C Charging Cable,2,11.95,09/06/19 11:22,"983 Walnut St, Atlanta, GA 30301" +256143,USB-C Charging Cable,1,11.95,09/14/19 16:53,"478 1st St, Los Angeles, CA 90001" +256144,iPhone,1,700,09/12/19 18:19,"711 Jackson St, Atlanta, GA 30301" +256144,Lightning Charging Cable,1,14.95,09/12/19 18:19,"711 Jackson St, Atlanta, GA 30301" +256145,USB-C Charging Cable,1,11.95,09/25/19 22:39,"306 Highland St, San Francisco, CA 94016" +256146,Bose SoundSport Headphones,1,99.99,09/07/19 16:52,"941 6th St, Atlanta, GA 30301" +256147,34in Ultrawide Monitor,1,379.99,09/15/19 16:05,"714 River St, San Francisco, CA 94016" +256148,AA Batteries (4-pack),1,3.84,09/28/19 20:17,"889 Lake St, Portland, OR 97035" +256149,Lightning Charging Cable,1,14.95,09/05/19 15:35,"820 Main St, San Francisco, CA 94016" +256150,Apple Airpods Headphones,1,150,09/05/19 21:20,"331 Jefferson St, San Francisco, CA 94016" +256151,Apple Airpods Headphones,1,150,09/28/19 19:49,"299 4th St, Portland, OR 97035" +256152,AA Batteries (4-pack),1,3.84,09/01/19 11:46,"420 11th St, Los Angeles, CA 90001" +256153,27in FHD Monitor,1,149.99,09/02/19 19:46,"871 Willow St, New York City, NY 10001" +256154,Flatscreen TV,1,300,09/26/19 23:29,"130 Sunset St, Portland, OR 97035" +256155,LG Dryer,1,600.0,09/25/19 23:17,"109 9th St, Boston, MA 02215" +256156,LG Washing Machine,1,600.0,09/16/19 18:26,"861 13th St, San Francisco, CA 94016" +256157,Wired Headphones,1,11.99,09/02/19 17:12,"938 1st St, Boston, MA 02215" +256158,Macbook Pro Laptop,1,1700,09/25/19 23:17,"577 West St, Boston, MA 02215" +256159,AA Batteries (4-pack),1,3.84,09/26/19 11:24,"433 Adams St, Los Angeles, CA 90001" +256160,AAA Batteries (4-pack),2,2.99,09/11/19 11:00,"448 Highland St, Atlanta, GA 30301" +256161,27in FHD Monitor,1,149.99,09/29/19 12:09,"375 Washington St, New York City, NY 10001" +256162,34in Ultrawide Monitor,1,379.99,09/19/19 13:26,"560 Lincoln St, Los Angeles, CA 90001" +256163,20in Monitor,1,109.99,09/26/19 19:18,"67 Walnut St, San Francisco, CA 94016" +256164,USB-C Charging Cable,1,11.95,09/04/19 14:56,"717 13th St, San Francisco, CA 94016" +256165,ThinkPad Laptop,1,999.99,09/05/19 18:58,"442 Dogwood St, Seattle, WA 98101" +256166,Flatscreen TV,1,300,09/07/19 19:35,"882 Park St, Boston, MA 02215" +256167,34in Ultrawide Monitor,1,379.99,09/17/19 09:19,"569 Wilson St, Seattle, WA 98101" +256168,Apple Airpods Headphones,1,150,09/23/19 21:23,"842 Center St, Austin, TX 73301" +256169,Wired Headphones,1,11.99,09/13/19 12:09,"180 Lincoln St, Dallas, TX 75001" +256170,Apple Airpods Headphones,1,150,09/14/19 21:57,"578 Sunset St, New York City, NY 10001" +256171,USB-C Charging Cable,1,11.95,09/13/19 15:44,"925 8th St, Atlanta, GA 30301" +256171,Wired Headphones,1,11.99,09/13/19 15:44,"925 8th St, Atlanta, GA 30301" +256172,20in Monitor,1,109.99,09/10/19 19:43,"390 Willow St, Boston, MA 02215" +256173,AA Batteries (4-pack),1,3.84,09/27/19 15:07,"661 Spruce St, Los Angeles, CA 90001" +256174,USB-C Charging Cable,1,11.95,09/21/19 22:03,"895 Center St, Los Angeles, CA 90001" +256175,AA Batteries (4-pack),1,3.84,09/25/19 18:11,"990 Willow St, San Francisco, CA 94016" +256176,Macbook Pro Laptop,1,1700,09/22/19 17:21,"724 13th St, San Francisco, CA 94016" +256177,Google Phone,1,600,09/23/19 09:07,"972 1st St, Boston, MA 02215" +256178,AA Batteries (4-pack),3,3.84,09/01/19 17:06,"871 Jefferson St, New York City, NY 10001" +256179,USB-C Charging Cable,1,11.95,09/12/19 21:05,"855 Jefferson St, Seattle, WA 98101" +256180,20in Monitor,1,109.99,09/03/19 16:21,"176 14th St, Atlanta, GA 30301" +256181,Macbook Pro Laptop,1,1700,09/27/19 21:47,"189 Ridge St, San Francisco, CA 94016" +256182,Bose SoundSport Headphones,2,99.99,09/27/19 18:33,"59 Dogwood St, Los Angeles, CA 90001" +256183,34in Ultrawide Monitor,1,379.99,09/04/19 14:28,"328 Elm St, Dallas, TX 75001" +256184,iPhone,1,700,09/21/19 08:45,"752 12th St, New York City, NY 10001" +256185,Bose SoundSport Headphones,1,99.99,09/02/19 21:40,"504 Lakeview St, Portland, ME 04101" +256186,LG Washing Machine,1,600.0,09/03/19 13:03,"910 Chestnut St, Boston, MA 02215" +256187,Lightning Charging Cable,1,14.95,09/24/19 17:31,"994 Lakeview St, Boston, MA 02215" +256188,AAA Batteries (4-pack),1,2.99,09/25/19 23:32,"650 Lake St, Dallas, TX 75001" +256189,iPhone,1,700,09/05/19 10:09,"857 Wilson St, Seattle, WA 98101" +256190,Google Phone,1,600,09/30/19 19:49,"734 9th St, Portland, OR 97035" +256191,Google Phone,1,600,09/08/19 23:50,"234 Highland St, Boston, MA 02215" +256192,Lightning Charging Cable,1,14.95,09/14/19 15:03,"725 Center St, Los Angeles, CA 90001" +256193,Bose SoundSport Headphones,1,99.99,09/14/19 14:36,"508 Jefferson St, New York City, NY 10001" +256194,AAA Batteries (4-pack),1,2.99,09/03/19 23:19,"48 Jackson St, New York City, NY 10001" +256195,USB-C Charging Cable,1,11.95,09/02/19 20:28,"184 Lakeview St, Dallas, TX 75001" +256196,AAA Batteries (4-pack),1,2.99,09/09/19 17:46,"347 8th St, Seattle, WA 98101" +256197,AA Batteries (4-pack),1,3.84,09/24/19 13:16,"332 11th St, Los Angeles, CA 90001" +256198,27in 4K Gaming Monitor,1,389.99,09/01/19 09:49,"552 13th St, New York City, NY 10001" +256199,Wired Headphones,1,11.99,09/23/19 17:50,"727 Wilson St, Los Angeles, CA 90001" +256200,AAA Batteries (4-pack),1,2.99,09/24/19 17:16,"263 Jefferson St, Dallas, TX 75001" +256201,27in 4K Gaming Monitor,1,389.99,09/02/19 01:06,"792 West St, San Francisco, CA 94016" +256202,AAA Batteries (4-pack),1,2.99,09/19/19 18:33,"819 9th St, Seattle, WA 98101" +256203,AAA Batteries (4-pack),1,2.99,09/25/19 08:06,"958 Maple St, Boston, MA 02215" +256204,Google Phone,1,600,09/17/19 19:18,"208 Spruce St, Dallas, TX 75001" +256204,Wired Headphones,1,11.99,09/17/19 19:18,"208 Spruce St, Dallas, TX 75001" +256205,AA Batteries (4-pack),1,3.84,09/10/19 10:41,"316 Adams St, San Francisco, CA 94016" +256206,AA Batteries (4-pack),1,3.84,09/17/19 02:32,"671 Lincoln St, San Francisco, CA 94016" +256207,USB-C Charging Cable,1,11.95,09/30/19 19:39,"353 4th St, Boston, MA 02215" +256208,AA Batteries (4-pack),1,3.84,09/07/19 23:25,"59 Washington St, San Francisco, CA 94016" +256209,27in 4K Gaming Monitor,1,389.99,09/26/19 23:07,"814 Willow St, Atlanta, GA 30301" +256210,Apple Airpods Headphones,1,150,09/18/19 18:45,"205 Lake St, Dallas, TX 75001" +256211,AAA Batteries (4-pack),1,2.99,09/09/19 14:42,"328 13th St, Los Angeles, CA 90001" +256212,Wired Headphones,1,11.99,09/30/19 07:12,"702 Walnut St, Austin, TX 73301" +256213,Flatscreen TV,1,300,09/22/19 18:00,"149 Washington St, San Francisco, CA 94016" +256214,AA Batteries (4-pack),1,3.84,09/23/19 09:58,"698 Elm St, Boston, MA 02215" +256215,Lightning Charging Cable,1,14.95,09/16/19 15:52,"911 10th St, Seattle, WA 98101" +256216,Bose SoundSport Headphones,1,99.99,09/08/19 10:22,"278 Main St, Atlanta, GA 30301" +256217,Flatscreen TV,1,300,09/13/19 17:20,"171 Willow St, Seattle, WA 98101" +256218,AAA Batteries (4-pack),2,2.99,09/05/19 15:05,"777 Hickory St, Boston, MA 02215" +256219,Bose SoundSport Headphones,1,99.99,09/10/19 20:57,"688 Forest St, San Francisco, CA 94016" +256220,AAA Batteries (4-pack),3,2.99,09/27/19 19:23,"15 8th St, Dallas, TX 75001" +256221,AAA Batteries (4-pack),1,2.99,09/12/19 13:46,"884 13th St, Atlanta, GA 30301" +256222,Wired Headphones,1,11.99,09/19/19 16:51,"62 13th St, Los Angeles, CA 90001" +256223,Lightning Charging Cable,1,14.95,09/08/19 20:18,"780 Johnson St, New York City, NY 10001" +256224,Apple Airpods Headphones,1,150,09/06/19 15:30,"512 5th St, San Francisco, CA 94016" +256224,Flatscreen TV,1,300,09/06/19 15:30,"512 5th St, San Francisco, CA 94016" +256225,AA Batteries (4-pack),1,3.84,09/05/19 21:56,"401 West St, Atlanta, GA 30301" +256226,34in Ultrawide Monitor,1,379.99,09/01/19 13:40,"745 River St, Seattle, WA 98101" +256227,Lightning Charging Cable,1,14.95,09/29/19 12:54,"693 Jackson St, Seattle, WA 98101" +256228,AA Batteries (4-pack),1,3.84,09/22/19 13:06,"185 6th St, Los Angeles, CA 90001" +256229,USB-C Charging Cable,1,11.95,09/02/19 13:17,"367 Ridge St, Seattle, WA 98101" +256230,Macbook Pro Laptop,1,1700,09/22/19 19:20,"363 Washington St, Boston, MA 02215" +256231,34in Ultrawide Monitor,1,379.99,09/02/19 10:56,"191 9th St, San Francisco, CA 94016" +256232,Bose SoundSport Headphones,1,99.99,09/16/19 10:40,"12 Church St, Atlanta, GA 30301" +256233,AAA Batteries (4-pack),1,2.99,09/14/19 22:45,"802 Washington St, San Francisco, CA 94016" +256234,iPhone,1,700,09/07/19 21:10,"880 Highland St, Boston, MA 02215" +256235,Bose SoundSport Headphones,1,99.99,09/09/19 18:59,"83 Ridge St, San Francisco, CA 94016" +256236,27in 4K Gaming Monitor,1,389.99,09/04/19 18:57,"342 4th St, Los Angeles, CA 90001" +256237,Lightning Charging Cable,1,14.95,09/09/19 12:15,"625 Highland St, Los Angeles, CA 90001" +256238,AA Batteries (4-pack),1,3.84,09/28/19 12:06,"590 12th St, Dallas, TX 75001" +256239,AAA Batteries (4-pack),1,2.99,09/03/19 12:43,"574 Elm St, San Francisco, CA 94016" +256240,AA Batteries (4-pack),1,3.84,09/30/19 21:05,"363 Elm St, San Francisco, CA 94016" +256241,ThinkPad Laptop,1,999.99,09/26/19 12:54,"680 Chestnut St, Seattle, WA 98101" +256242,USB-C Charging Cable,1,11.95,09/23/19 18:52,"330 Sunset St, Portland, OR 97035" +256243,34in Ultrawide Monitor,1,379.99,09/02/19 09:52,"513 4th St, Dallas, TX 75001" +256244,AA Batteries (4-pack),2,3.84,09/20/19 13:58,"532 10th St, New York City, NY 10001" +256245,Apple Airpods Headphones,1,150,09/28/19 16:30,"29 8th St, Austin, TX 73301" +256246,ThinkPad Laptop,1,999.99,09/19/19 18:41,"184 Adams St, Los Angeles, CA 90001" +256247,Bose SoundSport Headphones,1,99.99,09/08/19 16:27,"496 North St, Seattle, WA 98101" +256248,USB-C Charging Cable,1,11.95,09/29/19 08:24,"861 Pine St, Atlanta, GA 30301" +256249,Google Phone,1,600,09/30/19 04:48,"881 Wilson St, San Francisco, CA 94016" +256250,Lightning Charging Cable,1,14.95,09/29/19 13:01,"183 River St, Los Angeles, CA 90001" +256251,Vareebadd Phone,1,400,09/01/19 22:13,"756 12th St, Boston, MA 02215" +256251,Bose SoundSport Headphones,1,99.99,09/01/19 22:13,"756 12th St, Boston, MA 02215" +256252,Bose SoundSport Headphones,1,99.99,09/21/19 09:11,"9 Washington St, Atlanta, GA 30301" +256253,Lightning Charging Cable,1,14.95,09/27/19 19:01,"453 4th St, Seattle, WA 98101" +256254,Bose SoundSport Headphones,1,99.99,09/10/19 14:15,"114 Lakeview St, Los Angeles, CA 90001" +256255,AAA Batteries (4-pack),2,2.99,09/20/19 12:58,"19 Forest St, Los Angeles, CA 90001" +256256,Lightning Charging Cable,1,14.95,09/30/19 19:33,"639 4th St, New York City, NY 10001" +256257,ThinkPad Laptop,1,999.99,09/27/19 22:02,"469 Forest St, Portland, ME 04101" +256258,27in FHD Monitor,1,149.99,09/26/19 00:02,"582 Wilson St, Boston, MA 02215" +256259,Wired Headphones,1,11.99,09/04/19 13:25,"720 Jefferson St, Boston, MA 02215" +256260,AA Batteries (4-pack),1,3.84,09/15/19 16:33,"549 Hill St, Los Angeles, CA 90001" +256261,Macbook Pro Laptop,1,1700,09/16/19 10:58,"598 5th St, Los Angeles, CA 90001" +256262,iPhone,1,700,09/16/19 14:56,"588 Johnson St, Portland, OR 97035" +256263,27in 4K Gaming Monitor,1,389.99,09/07/19 19:15,"125 Washington St, Los Angeles, CA 90001" +256264,34in Ultrawide Monitor,1,379.99,09/11/19 22:04,"968 8th St, Boston, MA 02215" +256265,Lightning Charging Cable,1,14.95,09/29/19 21:09,"214 Adams St, Los Angeles, CA 90001" +256266,Apple Airpods Headphones,1,150,09/22/19 09:59,"350 River St, San Francisco, CA 94016" +256266,AA Batteries (4-pack),1,3.84,09/22/19 09:59,"350 River St, San Francisco, CA 94016" +256267,AAA Batteries (4-pack),2,2.99,09/02/19 01:24,"612 1st St, Los Angeles, CA 90001" +256268,Lightning Charging Cable,1,14.95,09/16/19 12:21,"742 Forest St, Austin, TX 73301" +256269,Apple Airpods Headphones,1,150,09/09/19 10:34,"370 5th St, Austin, TX 73301" +256270,27in FHD Monitor,1,149.99,09/26/19 12:21,"195 8th St, Portland, OR 97035" +256271,AAA Batteries (4-pack),1,2.99,09/29/19 11:24,"985 6th St, Dallas, TX 75001" +256272,USB-C Charging Cable,1,11.95,09/26/19 22:29,"423 12th St, Portland, OR 97035" +256273,Wired Headphones,1,11.99,09/21/19 20:12,"419 Jefferson St, Los Angeles, CA 90001" +256274,AAA Batteries (4-pack),1,2.99,09/19/19 10:45,"925 1st St, Los Angeles, CA 90001" +256275,Apple Airpods Headphones,1,150,09/17/19 15:42,"542 Main St, San Francisco, CA 94016" +256276,AA Batteries (4-pack),1,3.84,09/14/19 17:52,"187 Highland St, Los Angeles, CA 90001" +256277,27in FHD Monitor,1,149.99,09/21/19 11:50,"141 Highland St, New York City, NY 10001" +256278,AAA Batteries (4-pack),2,2.99,09/08/19 11:25,"68 Wilson St, Los Angeles, CA 90001" +256279,AAA Batteries (4-pack),1,2.99,09/17/19 17:57,"144 Highland St, New York City, NY 10001" +256280,AAA Batteries (4-pack),2,2.99,09/17/19 10:00,"484 14th St, Boston, MA 02215" +256281,Bose SoundSport Headphones,1,99.99,09/16/19 23:05,"254 13th St, San Francisco, CA 94016" +256281,AAA Batteries (4-pack),1,2.99,09/16/19 23:05,"254 13th St, San Francisco, CA 94016" +256282,27in FHD Monitor,1,149.99,09/17/19 20:46,"965 Sunset St, New York City, NY 10001" +256283,AAA Batteries (4-pack),2,2.99,09/10/19 13:23,"230 North St, Seattle, WA 98101" +256284,AAA Batteries (4-pack),2,2.99,09/01/19 18:52,"583 Adams St, San Francisco, CA 94016" +256285,Flatscreen TV,1,300,09/10/19 19:12,"308 2nd St, Portland, OR 97035" +256286,USB-C Charging Cable,1,11.95,09/19/19 18:25,"628 Lake St, Los Angeles, CA 90001" +256287,Apple Airpods Headphones,1,150,09/30/19 17:19,"486 Dogwood St, New York City, NY 10001" +256288,Wired Headphones,2,11.99,09/21/19 14:47,"231 Lakeview St, San Francisco, CA 94016" +256289,USB-C Charging Cable,1,11.95,09/04/19 13:31,"566 Lake St, San Francisco, CA 94016" +256290,Apple Airpods Headphones,1,150,09/18/19 20:13,"204 Jackson St, Seattle, WA 98101" +256291,ThinkPad Laptop,1,999.99,09/27/19 23:47,"151 River St, San Francisco, CA 94016" +256292,AAA Batteries (4-pack),1,2.99,09/22/19 17:22,"296 Maple St, Austin, TX 73301" +256293,USB-C Charging Cable,1,11.95,09/22/19 17:54,"556 River St, New York City, NY 10001" +256294,Wired Headphones,1,11.99,09/26/19 18:21,"28 Meadow St, Dallas, TX 75001" +256295,Apple Airpods Headphones,1,150,09/07/19 23:03,"517 Elm St, Boston, MA 02215" +256296,Bose SoundSport Headphones,1,99.99,09/12/19 11:59,"516 Sunset St, Seattle, WA 98101" +256297,Lightning Charging Cable,1,14.95,09/06/19 11:26,"784 Maple St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +256298,Apple Airpods Headphones,1,150,09/11/19 01:55,"700 Chestnut St, San Francisco, CA 94016" +256299,Apple Airpods Headphones,1,150,09/23/19 10:01,"710 9th St, Atlanta, GA 30301" +256300,USB-C Charging Cable,2,11.95,09/10/19 07:10,"523 Dogwood St, San Francisco, CA 94016" +256300,AAA Batteries (4-pack),2,2.99,09/10/19 07:10,"523 Dogwood St, San Francisco, CA 94016" +256301,USB-C Charging Cable,1,11.95,09/27/19 21:25,"327 Meadow St, Portland, ME 04101" +256302,27in FHD Monitor,1,149.99,09/16/19 18:46,"808 Cedar St, Los Angeles, CA 90001" +256303,USB-C Charging Cable,1,11.95,09/13/19 19:55,"447 7th St, Boston, MA 02215" +256304,Apple Airpods Headphones,1,150,09/03/19 06:12,"908 Adams St, Los Angeles, CA 90001" +256305,Lightning Charging Cable,1,14.95,09/04/19 14:59,"689 Dogwood St, Atlanta, GA 30301" +256306,Lightning Charging Cable,1,14.95,09/25/19 20:19,"786 Spruce St, Boston, MA 02215" +256307,AA Batteries (4-pack),3,3.84,09/14/19 11:20,"482 14th St, Boston, MA 02215" +256308,Wired Headphones,1,11.99,09/07/19 12:27,"365 Center St, Boston, MA 02215" +256309,Flatscreen TV,1,300,09/09/19 15:53,"965 12th St, San Francisco, CA 94016" +256310,USB-C Charging Cable,1,11.95,09/04/19 23:36,"698 Elm St, San Francisco, CA 94016" +256311,AA Batteries (4-pack),1,3.84,09/19/19 08:53,"580 14th St, Seattle, WA 98101" +256312,Lightning Charging Cable,1,14.95,09/04/19 22:32,"340 Dogwood St, New York City, NY 10001" +256313,AAA Batteries (4-pack),1,2.99,09/12/19 08:16,"425 Cedar St, Atlanta, GA 30301" +256314,AAA Batteries (4-pack),5,2.99,09/01/19 15:38,"393 Park St, Dallas, TX 75001" +256315,USB-C Charging Cable,1,11.95,09/20/19 17:41,"95 River St, Atlanta, GA 30301" +256316,Lightning Charging Cable,1,14.95,09/26/19 18:11,"875 12th St, San Francisco, CA 94016" +256317,Bose SoundSport Headphones,1,99.99,09/25/19 11:06,"340 6th St, San Francisco, CA 94016" +256318,AAA Batteries (4-pack),1,2.99,09/23/19 19:32,"800 5th St, Los Angeles, CA 90001" +256319,27in 4K Gaming Monitor,1,389.99,09/30/19 17:15,"875 North St, San Francisco, CA 94016" +256320,Macbook Pro Laptop,1,1700,09/05/19 13:47,"605 Willow St, San Francisco, CA 94016" +256321,Lightning Charging Cable,1,14.95,09/02/19 18:21,"803 6th St, Atlanta, GA 30301" +256322,Apple Airpods Headphones,1,150,09/17/19 18:32,"678 Cherry St, Boston, MA 02215" +256323,34in Ultrawide Monitor,1,379.99,09/15/19 18:05,"708 Madison St, Los Angeles, CA 90001" +256324,Lightning Charging Cable,1,14.95,09/23/19 23:50,"407 9th St, New York City, NY 10001" +256325,USB-C Charging Cable,1,11.95,09/22/19 22:29,"503 12th St, Austin, TX 73301" +256326,27in FHD Monitor,1,149.99,09/23/19 02:17,"130 7th St, Austin, TX 73301" +256327,AAA Batteries (4-pack),1,2.99,09/06/19 13:56,"196 Church St, Dallas, TX 75001" +256328,Flatscreen TV,1,300,09/15/19 12:35,"853 Cherry St, Boston, MA 02215" +256329,USB-C Charging Cable,1,11.95,09/25/19 09:04,"497 6th St, San Francisco, CA 94016" +256330,Wired Headphones,1,11.99,09/23/19 21:44,"700 Jackson St, Dallas, TX 75001" +256331,ThinkPad Laptop,1,999.99,09/04/19 09:28,"543 Maple St, Los Angeles, CA 90001" +256332,AAA Batteries (4-pack),2,2.99,09/23/19 23:54,"282 4th St, Los Angeles, CA 90001" +256333,AAA Batteries (4-pack),1,2.99,09/26/19 11:36,"73 Cedar St, Boston, MA 02215" +256333,27in 4K Gaming Monitor,1,389.99,09/26/19 11:36,"73 Cedar St, Boston, MA 02215" +256334,USB-C Charging Cable,2,11.95,09/28/19 19:46,"100 Hickory St, Boston, MA 02215" +256335,27in 4K Gaming Monitor,1,389.99,09/20/19 16:46,"618 West St, New York City, NY 10001" +256336,Lightning Charging Cable,1,14.95,09/15/19 18:52,"248 Highland St, Dallas, TX 75001" +256337,Bose SoundSport Headphones,1,99.99,09/13/19 18:31,"918 Forest St, New York City, NY 10001" +256338,Lightning Charging Cable,1,14.95,09/19/19 08:47,"725 Jefferson St, New York City, NY 10001" +256339,27in FHD Monitor,1,149.99,09/04/19 13:40,"756 1st St, Portland, OR 97035" +256340,AAA Batteries (4-pack),2,2.99,09/08/19 08:14,"714 9th St, Los Angeles, CA 90001" +256341,27in 4K Gaming Monitor,1,389.99,09/08/19 19:09,"824 Elm St, Dallas, TX 75001" +256342,27in 4K Gaming Monitor,1,389.99,09/02/19 10:21,"846 9th St, San Francisco, CA 94016" +256343,AA Batteries (4-pack),3,3.84,09/27/19 15:02,"734 West St, Seattle, WA 98101" +256344,34in Ultrawide Monitor,1,379.99,09/20/19 19:33,"836 Elm St, Seattle, WA 98101" +256345,Wired Headphones,1,11.99,09/23/19 11:48,"74 1st St, Seattle, WA 98101" +256346,Macbook Pro Laptop,1,1700,09/20/19 14:53,"722 Highland St, San Francisco, CA 94016" +256347,USB-C Charging Cable,2,11.95,09/16/19 19:05,"209 10th St, San Francisco, CA 94016" +256348,27in FHD Monitor,1,149.99,09/02/19 10:14,"142 Main St, San Francisco, CA 94016" +256349,Bose SoundSport Headphones,1,99.99,09/16/19 12:49,"659 Pine St, New York City, NY 10001" +256350,Vareebadd Phone,1,400,09/29/19 15:43,"306 Lakeview St, Austin, TX 73301" +256351,AA Batteries (4-pack),1,3.84,09/08/19 09:42,"736 7th St, Portland, OR 97035" +256352,Macbook Pro Laptop,1,1700,09/25/19 23:58,"316 Park St, New York City, NY 10001" +256353,Macbook Pro Laptop,1,1700,09/23/19 12:44,"687 Meadow St, New York City, NY 10001" +256354,Lightning Charging Cable,1,14.95,09/23/19 22:34,"653 Walnut St, Boston, MA 02215" +256355,Wired Headphones,1,11.99,09/14/19 14:53,"451 Pine St, New York City, NY 10001" +256356,Apple Airpods Headphones,1,150,09/09/19 18:29,"180 Johnson St, San Francisco, CA 94016" +256357,27in FHD Monitor,1,149.99,09/29/19 19:44,"250 Forest St, Boston, MA 02215" +256358,AA Batteries (4-pack),1,3.84,09/13/19 12:46,"762 Madison St, San Francisco, CA 94016" +256359,27in FHD Monitor,1,149.99,09/05/19 16:42,"280 Highland St, San Francisco, CA 94016" +256360,Lightning Charging Cable,1,14.95,09/01/19 19:00,"515 1st St, San Francisco, CA 94016" +256361,Lightning Charging Cable,1,14.95,09/08/19 18:23,"162 Washington St, San Francisco, CA 94016" +256361,AA Batteries (4-pack),1,3.84,09/08/19 18:23,"162 Washington St, San Francisco, CA 94016" +256362,LG Dryer,1,600.0,09/25/19 19:36,"917 Spruce St, San Francisco, CA 94016" +256363,iPhone,1,700,09/10/19 21:45,"35 1st St, Atlanta, GA 30301" +256364,Wired Headphones,1,11.99,09/28/19 21:19,"611 Jackson St, Los Angeles, CA 90001" +256365,USB-C Charging Cable,1,11.95,09/16/19 10:30,"414 Pine St, Los Angeles, CA 90001" +256366,Wired Headphones,1,11.99,09/07/19 14:33,"712 Cedar St, Los Angeles, CA 90001" +256367,USB-C Charging Cable,2,11.95,09/20/19 13:30,"8 Meadow St, Atlanta, GA 30301" +256368,AA Batteries (4-pack),2,3.84,09/07/19 14:45,"288 Adams St, Los Angeles, CA 90001" +256369,Wired Headphones,1,11.99,09/28/19 18:38,"880 Lakeview St, San Francisco, CA 94016" +256370,USB-C Charging Cable,1,11.95,09/28/19 15:28,"904 9th St, San Francisco, CA 94016" +256371,AA Batteries (4-pack),1,3.84,09/15/19 14:55,"827 Forest St, San Francisco, CA 94016" +256372,AA Batteries (4-pack),1,3.84,09/21/19 19:49,"17 Meadow St, San Francisco, CA 94016" +256373,USB-C Charging Cable,1,11.95,09/03/19 13:12,"157 Hickory St, San Francisco, CA 94016" +256374,Flatscreen TV,1,300,09/04/19 13:58,"124 Elm St, Seattle, WA 98101" +256375,27in 4K Gaming Monitor,1,389.99,09/24/19 00:50,"177 Jefferson St, New York City, NY 10001" +256376,AA Batteries (4-pack),1,3.84,09/02/19 13:55,"394 Elm St, Austin, TX 73301" +256377,AAA Batteries (4-pack),1,2.99,09/30/19 21:14,"284 Lake St, New York City, NY 10001" +256378,Bose SoundSport Headphones,1,99.99,09/19/19 22:16,"54 Hickory St, New York City, NY 10001" +256379,27in FHD Monitor,1,149.99,09/16/19 16:07,"715 4th St, San Francisco, CA 94016" +256380,iPhone,1,700,09/10/19 21:23,"501 4th St, New York City, NY 10001" +256380,Lightning Charging Cable,1,14.95,09/10/19 21:23,"501 4th St, New York City, NY 10001" +256381,AAA Batteries (4-pack),1,2.99,09/16/19 12:26,"473 Cedar St, San Francisco, CA 94016" +256382,20in Monitor,1,109.99,09/11/19 13:57,"841 River St, Atlanta, GA 30301" +256383,AA Batteries (4-pack),1,3.84,09/08/19 14:47,"719 13th St, Boston, MA 02215" +256384,AA Batteries (4-pack),1,3.84,09/04/19 17:20,"738 Walnut St, Atlanta, GA 30301" +256385,AA Batteries (4-pack),1,3.84,09/01/19 22:12,"866 Adams St, Atlanta, GA 30301" +256386,20in Monitor,1,109.99,09/29/19 08:29,"798 2nd St, Los Angeles, CA 90001" +256387,Wired Headphones,1,11.99,09/07/19 00:10,"875 Main St, Seattle, WA 98101" +256388,Flatscreen TV,1,300,09/30/19 10:13,"123 2nd St, San Francisco, CA 94016" +256389,AA Batteries (4-pack),1,3.84,09/22/19 17:10,"927 Meadow St, Boston, MA 02215" +256390,AA Batteries (4-pack),1,3.84,09/04/19 08:19,"685 12th St, Atlanta, GA 30301" +256391,AAA Batteries (4-pack),4,2.99,09/02/19 07:46,"382 South St, Atlanta, GA 30301" +256392,Wired Headphones,1,11.99,09/04/19 14:35,"623 Madison St, Boston, MA 02215" +256393,AAA Batteries (4-pack),1,2.99,09/11/19 13:57,"892 11th St, Portland, OR 97035" +256394,ThinkPad Laptop,1,999.99,09/23/19 18:28,"471 Sunset St, Boston, MA 02215" +256395,Lightning Charging Cable,1,14.95,09/13/19 19:33,"740 Meadow St, Dallas, TX 75001" +256396,USB-C Charging Cable,1,11.95,09/23/19 14:49,"771 Forest St, Dallas, TX 75001" +256397,Lightning Charging Cable,1,14.95,09/10/19 16:48,"324 Chestnut St, Atlanta, GA 30301" +256398,USB-C Charging Cable,1,11.95,09/23/19 13:36,"462 Dogwood St, San Francisco, CA 94016" +256399,Google Phone,1,600,09/17/19 21:56,"951 13th St, New York City, NY 10001" +256399,Wired Headphones,1,11.99,09/17/19 21:56,"951 13th St, New York City, NY 10001" +256400,iPhone,1,700,09/05/19 20:36,"225 Center St, Atlanta, GA 30301" +256400,Lightning Charging Cable,1,14.95,09/05/19 20:36,"225 Center St, Atlanta, GA 30301" +256401,AAA Batteries (4-pack),1,2.99,09/14/19 18:31,"288 Madison St, San Francisco, CA 94016" +256402,Apple Airpods Headphones,1,150,09/02/19 13:12,"334 2nd St, San Francisco, CA 94016" +256403,Wired Headphones,1,11.99,09/06/19 11:45,"108 River St, Boston, MA 02215" +256404,AA Batteries (4-pack),3,3.84,09/01/19 11:02,"185 12th St, New York City, NY 10001" +256405,Bose SoundSport Headphones,1,99.99,09/24/19 20:05,"266 Lakeview St, San Francisco, CA 94016" +256406,Lightning Charging Cable,1,14.95,09/18/19 22:24,"568 Sunset St, Atlanta, GA 30301" +256407,Flatscreen TV,1,300,09/14/19 19:36,"213 Hill St, New York City, NY 10001" +256408,34in Ultrawide Monitor,1,379.99,09/19/19 10:18,"934 River St, Boston, MA 02215" +256409,27in 4K Gaming Monitor,1,389.99,09/23/19 08:56,"232 Lake St, Dallas, TX 75001" +256410,Bose SoundSport Headphones,1,99.99,09/20/19 17:27,"710 Adams St, New York City, NY 10001" +256411,Lightning Charging Cable,1,14.95,09/04/19 18:53,"649 Chestnut St, Los Angeles, CA 90001" +256412,Flatscreen TV,1,300,09/13/19 13:52,"309 Park St, San Francisco, CA 94016" +256413,27in 4K Gaming Monitor,1,389.99,09/11/19 00:38,"254 Chestnut St, New York City, NY 10001" +256414,Lightning Charging Cable,1,14.95,09/17/19 13:16,"658 Park St, San Francisco, CA 94016" +256415,Wired Headphones,1,11.99,09/26/19 14:51,"884 River St, San Francisco, CA 94016" +256416,Lightning Charging Cable,1,14.95,09/18/19 10:46,"402 Jefferson St, San Francisco, CA 94016" +256417,Google Phone,1,600,09/09/19 20:37,"422 West St, Boston, MA 02215" +256418,Apple Airpods Headphones,1,150,09/09/19 20:54,"686 Ridge St, Portland, OR 97035" +256419,USB-C Charging Cable,1,11.95,09/21/19 14:49,"568 Meadow St, New York City, NY 10001" +256420,iPhone,1,700,09/29/19 17:48,"839 Jefferson St, Los Angeles, CA 90001" +256421,Wired Headphones,1,11.99,09/25/19 20:22,"268 4th St, Dallas, TX 75001" +256422,AAA Batteries (4-pack),1,2.99,09/30/19 12:40,"568 Hill St, Seattle, WA 98101" +256423,Lightning Charging Cable,1,14.95,09/22/19 15:43,"637 11th St, Atlanta, GA 30301" +256424,20in Monitor,1,109.99,09/30/19 19:59,"22 Spruce St, Dallas, TX 75001" +256425,Apple Airpods Headphones,1,150,09/29/19 13:23,"303 Elm St, Dallas, TX 75001" +256426,AA Batteries (4-pack),1,3.84,09/28/19 01:18,"581 Center St, Seattle, WA 98101" +256427,27in 4K Gaming Monitor,1,389.99,09/18/19 14:36,"154 12th St, New York City, NY 10001" +256428,Lightning Charging Cable,1,14.95,09/17/19 13:11,"48 Meadow St, Boston, MA 02215" +256429,Vareebadd Phone,1,400,09/19/19 19:03,"687 Spruce St, Dallas, TX 75001" +256430,Apple Airpods Headphones,1,150,09/24/19 17:57,"331 8th St, Boston, MA 02215" +256431,USB-C Charging Cable,1,11.95,09/28/19 11:27,"773 River St, Portland, OR 97035" +256432,AA Batteries (4-pack),3,3.84,09/04/19 01:15,"17 Highland St, New York City, NY 10001" +256433,AA Batteries (4-pack),4,3.84,09/25/19 17:25,"739 Hill St, Los Angeles, CA 90001" +256434,20in Monitor,1,109.99,09/17/19 13:22,"436 1st St, San Francisco, CA 94016" +256435,Bose SoundSport Headphones,1,99.99,09/02/19 16:03,"490 Hill St, Seattle, WA 98101" +256436,Wired Headphones,1,11.99,09/02/19 10:47,"573 Sunset St, New York City, NY 10001" +256437,USB-C Charging Cable,1,11.95,09/23/19 15:16,"261 Walnut St, Seattle, WA 98101" +256438,Flatscreen TV,1,300,09/14/19 20:46,"375 Ridge St, Los Angeles, CA 90001" +256439,27in 4K Gaming Monitor,1,389.99,09/28/19 12:01,"714 Cedar St, Austin, TX 73301" +256440,Bose SoundSport Headphones,1,99.99,09/20/19 19:22,"950 Spruce St, Los Angeles, CA 90001" +256441,AA Batteries (4-pack),1,3.84,09/11/19 11:35,"524 Main St, Boston, MA 02215" +256442,Google Phone,1,600,09/25/19 09:37,"197 Lake St, Dallas, TX 75001" +256443,AA Batteries (4-pack),1,3.84,09/28/19 10:56,"603 13th St, San Francisco, CA 94016" +256444,Apple Airpods Headphones,1,150,09/01/19 19:22,"789 Walnut St, San Francisco, CA 94016" +256445,AAA Batteries (4-pack),1,2.99,09/16/19 21:23,"445 6th St, Boston, MA 02215" +256446,USB-C Charging Cable,1,11.95,09/12/19 13:14,"840 9th St, San Francisco, CA 94016" +256447,34in Ultrawide Monitor,1,379.99,09/03/19 21:22,"138 Center St, Atlanta, GA 30301" +256448,Wired Headphones,1,11.99,09/12/19 01:13,"153 Dogwood St, San Francisco, CA 94016" +256449,Lightning Charging Cable,1,14.95,09/29/19 13:40,"505 Highland St, Seattle, WA 98101" +256450,34in Ultrawide Monitor,1,379.99,09/16/19 12:28,"295 Hickory St, Atlanta, GA 30301" +256451,Wired Headphones,1,11.99,09/10/19 20:56,"176 Ridge St, New York City, NY 10001" +256452,AA Batteries (4-pack),1,3.84,09/02/19 04:50,"873 Jackson St, San Francisco, CA 94016" +256453,Lightning Charging Cable,1,14.95,09/07/19 11:29,"322 Spruce St, Portland, OR 97035" +256454,AAA Batteries (4-pack),1,2.99,09/17/19 19:49,"365 Walnut St, Boston, MA 02215" +256455,Wired Headphones,1,11.99,09/26/19 20:25,"603 Pine St, Los Angeles, CA 90001" +256456,AAA Batteries (4-pack),1,2.99,09/17/19 23:49,"620 Pine St, Dallas, TX 75001" +256457,Flatscreen TV,1,300,09/09/19 12:31,"674 Pine St, New York City, NY 10001" +256458,AAA Batteries (4-pack),2,2.99,09/02/19 16:01,"112 7th St, New York City, NY 10001" +256458,27in 4K Gaming Monitor,1,389.99,09/02/19 16:01,"112 7th St, New York City, NY 10001" +256459,Lightning Charging Cable,1,14.95,09/04/19 19:04,"991 Sunset St, Portland, OR 97035" +256460,AAA Batteries (4-pack),1,2.99,09/22/19 16:16,"741 Sunset St, Austin, TX 73301" +256461,USB-C Charging Cable,1,11.95,09/24/19 15:26,"899 4th St, Portland, OR 97035" +256462,34in Ultrawide Monitor,1,379.99,09/20/19 21:02,"67 Lake St, Portland, ME 04101" +256463,Lightning Charging Cable,1,14.95,09/16/19 19:32,"637 South St, Boston, MA 02215" +256464,Lightning Charging Cable,1,14.95,09/17/19 14:56,"879 Walnut St, Seattle, WA 98101" +256465,Apple Airpods Headphones,1,150,09/14/19 15:58,"405 Forest St, San Francisco, CA 94016" +256466,Lightning Charging Cable,1,14.95,09/23/19 00:08,"246 Hickory St, San Francisco, CA 94016" +256467,AAA Batteries (4-pack),3,2.99,09/04/19 18:42,"672 Lakeview St, New York City, NY 10001" +256468,34in Ultrawide Monitor,1,379.99,09/03/19 10:03,"579 11th St, Boston, MA 02215" +256469,Apple Airpods Headphones,1,150,09/09/19 14:48,"62 8th St, San Francisco, CA 94016" +256470,Wired Headphones,1,11.99,09/10/19 10:44,"944 Johnson St, Seattle, WA 98101" +256471,AAA Batteries (4-pack),1,2.99,09/07/19 00:46,"405 Elm St, Los Angeles, CA 90001" +256472,Lightning Charging Cable,1,14.95,09/10/19 07:31,"490 South St, Boston, MA 02215" +256473,AA Batteries (4-pack),1,3.84,09/29/19 09:20,"840 Lincoln St, Boston, MA 02215" +256474,AAA Batteries (4-pack),1,2.99,09/15/19 14:40,"331 8th St, Seattle, WA 98101" +256475,Wired Headphones,1,11.99,09/02/19 18:04,"586 1st St, San Francisco, CA 94016" +256476,USB-C Charging Cable,1,11.95,09/28/19 12:28,"321 Lake St, Boston, MA 02215" +256477,iPhone,1,700,09/30/19 23:17,"668 13th St, Boston, MA 02215" +256477,Lightning Charging Cable,1,14.95,09/30/19 23:17,"668 13th St, Boston, MA 02215" +256478,Apple Airpods Headphones,1,150,09/03/19 13:18,"829 Lakeview St, Los Angeles, CA 90001" +256479,AA Batteries (4-pack),1,3.84,09/12/19 18:45,"938 1st St, New York City, NY 10001" +256480,Wired Headphones,1,11.99,09/18/19 16:50,"4 Main St, Dallas, TX 75001" +256481,Google Phone,1,600,09/03/19 00:35,"497 Spruce St, Seattle, WA 98101" +256482,Bose SoundSport Headphones,1,99.99,09/03/19 20:02,"421 Cherry St, Atlanta, GA 30301" +256483,Bose SoundSport Headphones,1,99.99,09/22/19 14:30,"381 11th St, Seattle, WA 98101" +256484,AAA Batteries (4-pack),1,2.99,09/09/19 09:47,"408 Washington St, Boston, MA 02215" +256485,Lightning Charging Cable,1,14.95,09/13/19 17:29,"973 11th St, New York City, NY 10001" +256486,USB-C Charging Cable,1,11.95,09/30/19 19:40,"208 Dogwood St, Los Angeles, CA 90001" +256487,Macbook Pro Laptop,1,1700,09/28/19 10:32,"115 1st St, San Francisco, CA 94016" +256488,Wired Headphones,1,11.99,09/01/19 09:43,"460 Washington St, New York City, NY 10001" +256489,AA Batteries (4-pack),1,3.84,09/04/19 19:42,"512 Jefferson St, Atlanta, GA 30301" +256490,Lightning Charging Cable,1,14.95,09/28/19 14:03,"428 9th St, San Francisco, CA 94016" +256491,USB-C Charging Cable,1,11.95,09/17/19 19:36,"541 12th St, Austin, TX 73301" +256492,Apple Airpods Headphones,1,150,09/17/19 14:44,"581 Walnut St, Boston, MA 02215" +256493,AA Batteries (4-pack),2,3.84,09/01/19 16:21,"448 Center St, San Francisco, CA 94016" +256494,Google Phone,1,600,09/05/19 16:57,"535 8th St, Boston, MA 02215" +256495,Lightning Charging Cable,2,14.95,09/27/19 10:55,"63 7th St, San Francisco, CA 94016" +256496,Bose SoundSport Headphones,1,99.99,09/05/19 19:53,"389 1st St, Seattle, WA 98101" +256497,Apple Airpods Headphones,1,150,09/04/19 19:37,"425 Cedar St, Boston, MA 02215" +256498,Wired Headphones,1,11.99,09/12/19 10:41,"60 Dogwood St, Los Angeles, CA 90001" +256499,Flatscreen TV,1,300,09/06/19 02:16,"963 14th St, Seattle, WA 98101" +256500,Macbook Pro Laptop,1,1700,09/27/19 01:44,"891 Maple St, Dallas, TX 75001" +256501,AA Batteries (4-pack),1,3.84,09/15/19 20:02,"899 West St, Portland, ME 04101" +256502,USB-C Charging Cable,1,11.95,09/07/19 18:57,"252 Pine St, Seattle, WA 98101" +256503,iPhone,1,700,09/26/19 11:38,"950 Jackson St, Boston, MA 02215" +256504,AA Batteries (4-pack),2,3.84,09/22/19 20:04,"601 10th St, Los Angeles, CA 90001" +256505,AAA Batteries (4-pack),2,2.99,09/30/19 14:10,"206 5th St, Boston, MA 02215" +256506,Apple Airpods Headphones,1,150,09/29/19 09:35,"378 7th St, Los Angeles, CA 90001" +256507,AAA Batteries (4-pack),1,2.99,09/13/19 08:24,"822 8th St, Los Angeles, CA 90001" +256508,Google Phone,1,600,09/09/19 08:24,"534 North St, Los Angeles, CA 90001" +256509,27in FHD Monitor,1,149.99,09/27/19 13:02,"266 Maple St, New York City, NY 10001" +256510,Bose SoundSport Headphones,1,99.99,09/17/19 13:07,"212 2nd St, Atlanta, GA 30301" +256511,AA Batteries (4-pack),1,3.84,09/08/19 21:29,"87 Meadow St, Seattle, WA 98101" +256511,Bose SoundSport Headphones,1,99.99,09/08/19 21:29,"87 Meadow St, Seattle, WA 98101" +256512,Google Phone,1,600,09/03/19 21:32,"463 Wilson St, Los Angeles, CA 90001" +256512,USB-C Charging Cable,1,11.95,09/03/19 21:32,"463 Wilson St, Los Angeles, CA 90001" +256513,AA Batteries (4-pack),1,3.84,09/27/19 22:36,"309 4th St, San Francisco, CA 94016" +256514,USB-C Charging Cable,1,11.95,09/24/19 18:45,"168 Wilson St, Los Angeles, CA 90001" +256515,USB-C Charging Cable,1,11.95,09/15/19 08:45,"63 Sunset St, San Francisco, CA 94016" +256516,Apple Airpods Headphones,1,150,09/24/19 17:05,"840 11th St, Atlanta, GA 30301" +256517,Bose SoundSport Headphones,1,99.99,09/29/19 13:53,"962 Hill St, Los Angeles, CA 90001" +256518,iPhone,1,700,09/29/19 17:49,"783 Maple St, San Francisco, CA 94016" +256519,Lightning Charging Cable,1,14.95,09/21/19 01:39,"728 Church St, Seattle, WA 98101" +256520,34in Ultrawide Monitor,1,379.99,09/01/19 11:18,"504 North St, New York City, NY 10001" +256521,Google Phone,1,600,09/15/19 13:53,"582 Maple St, San Francisco, CA 94016" +256521,Wired Headphones,1,11.99,09/15/19 13:53,"582 Maple St, San Francisco, CA 94016" +256522,AA Batteries (4-pack),2,3.84,09/29/19 12:37,"516 Washington St, Los Angeles, CA 90001" +256523,USB-C Charging Cable,1,11.95,09/28/19 01:34,"615 Adams St, Boston, MA 02215" +256524,Lightning Charging Cable,1,14.95,09/19/19 06:33,"552 10th St, Atlanta, GA 30301" +256525,USB-C Charging Cable,1,11.95,09/29/19 09:16,"945 12th St, Portland, OR 97035" +256526,Bose SoundSport Headphones,1,99.99,09/21/19 20:40,"382 10th St, Seattle, WA 98101" +256527,27in FHD Monitor,1,149.99,09/13/19 22:34,"580 Jefferson St, Seattle, WA 98101" +256528,ThinkPad Laptop,1,999.99,09/25/19 16:36,"634 8th St, New York City, NY 10001" +256529,Wired Headphones,1,11.99,09/18/19 22:49,"249 Main St, San Francisco, CA 94016" +256530,ThinkPad Laptop,1,999.99,09/26/19 12:56,"769 Center St, San Francisco, CA 94016" +256531,USB-C Charging Cable,2,11.95,09/01/19 13:33,"152 5th St, Boston, MA 02215" +256532,AAA Batteries (4-pack),1,2.99,09/18/19 20:05,"235 Jackson St, New York City, NY 10001" +256533,AAA Batteries (4-pack),1,2.99,09/30/19 20:04,"567 5th St, Portland, OR 97035" +256534,Apple Airpods Headphones,1,150,09/30/19 14:50,"201 Wilson St, Seattle, WA 98101" +256535,Apple Airpods Headphones,1,150,09/08/19 09:18,"407 Sunset St, San Francisco, CA 94016" +256536,Wired Headphones,2,11.99,09/18/19 18:00,"847 Lake St, Boston, MA 02215" +256537,Wired Headphones,1,11.99,09/05/19 14:51,"60 Lincoln St, Austin, TX 73301" +256538,Lightning Charging Cable,1,14.95,09/19/19 17:47,"300 12th St, Dallas, TX 75001" +256539,iPhone,1,700,09/30/19 15:40,"702 Cedar St, San Francisco, CA 94016" +256540,USB-C Charging Cable,1,11.95,09/20/19 00:25,"852 Park St, Portland, OR 97035" +256541,iPhone,1,700,09/08/19 09:56,"759 Lincoln St, Boston, MA 02215" +256542,AAA Batteries (4-pack),1,2.99,09/03/19 18:28,"922 Hill St, San Francisco, CA 94016" +256543,Bose SoundSport Headphones,1,99.99,09/24/19 12:46,"364 Forest St, New York City, NY 10001" +256544,LG Dryer,1,600.0,09/24/19 15:23,"329 6th St, Austin, TX 73301" +256545,20in Monitor,1,109.99,09/05/19 17:50,"995 8th St, Boston, MA 02215" +256546,Lightning Charging Cable,1,14.95,09/14/19 16:49,"857 Lake St, San Francisco, CA 94016" +256547,AA Batteries (4-pack),1,3.84,09/02/19 11:24,"72 10th St, New York City, NY 10001" +256548,AA Batteries (4-pack),1,3.84,09/03/19 10:03,"341 Ridge St, Seattle, WA 98101" +256549,Lightning Charging Cable,1,14.95,10/01/19 00:35,"560 Cedar St, New York City, NY 10001" +256550,Bose SoundSport Headphones,1,99.99,09/13/19 10:45,"632 Adams St, New York City, NY 10001" +256551,Flatscreen TV,1,300,09/05/19 20:33,"351 Sunset St, San Francisco, CA 94016" +256552,Apple Airpods Headphones,1,150,09/16/19 08:32,"40 5th St, San Francisco, CA 94016" +256553,Wired Headphones,1,11.99,09/01/19 10:48,"911 Lake St, Portland, OR 97035" +256554,AAA Batteries (4-pack),2,2.99,09/24/19 01:55,"181 Jefferson St, Seattle, WA 98101" +256555,Lightning Charging Cable,2,14.95,09/02/19 12:41,"665 Hickory St, Austin, TX 73301" +256556,Lightning Charging Cable,1,14.95,09/03/19 16:24,"111 Elm St, Portland, OR 97035" +256557,Flatscreen TV,1,300,09/12/19 14:48,"330 11th St, Los Angeles, CA 90001" +256558,AAA Batteries (4-pack),1,2.99,09/04/19 15:05,"578 1st St, Dallas, TX 75001" +256559,Wired Headphones,1,11.99,09/22/19 00:13,"491 Lake St, San Francisco, CA 94016" +256560,iPhone,1,700,09/23/19 15:55,"993 Park St, Boston, MA 02215" +256561,Wired Headphones,1,11.99,09/04/19 14:31,"949 Wilson St, Los Angeles, CA 90001" +256562,Wired Headphones,1,11.99,09/28/19 18:50,"9 10th St, Seattle, WA 98101" +256563,iPhone,1,700,09/05/19 22:47,"804 Forest St, New York City, NY 10001" +256563,Apple Airpods Headphones,1,150,09/05/19 22:47,"804 Forest St, New York City, NY 10001" +256564,Bose SoundSport Headphones,1,99.99,09/08/19 14:48,"175 Lake St, Portland, OR 97035" +256565,Flatscreen TV,1,300,09/18/19 22:19,"382 10th St, San Francisco, CA 94016" +256566,AA Batteries (4-pack),1,3.84,09/15/19 16:33,"402 West St, New York City, NY 10001" +256567,USB-C Charging Cable,1,11.95,09/27/19 16:53,"105 8th St, New York City, NY 10001" +256568,USB-C Charging Cable,1,11.95,09/02/19 14:26,"922 North St, Portland, ME 04101" +256569,AA Batteries (4-pack),1,3.84,09/29/19 05:40,"682 Highland St, Atlanta, GA 30301" +256570,Wired Headphones,1,11.99,09/01/19 06:14,"291 1st St, Los Angeles, CA 90001" +256571,34in Ultrawide Monitor,1,379.99,09/27/19 13:51,"799 5th St, Dallas, TX 75001" +256572,Lightning Charging Cable,1,14.95,09/29/19 07:21,"115 Meadow St, Austin, TX 73301" +256573,Apple Airpods Headphones,1,150,09/09/19 20:58,"170 Wilson St, Seattle, WA 98101" +256574,iPhone,1,700,09/17/19 15:09,"230 Main St, Boston, MA 02215" +256575,Lightning Charging Cable,2,14.95,09/08/19 07:20,"117 10th St, Portland, OR 97035" +256576,AAA Batteries (4-pack),1,2.99,09/16/19 23:39,"785 13th St, Austin, TX 73301" +256577,AAA Batteries (4-pack),1,2.99,09/17/19 23:10,"760 Hill St, Boston, MA 02215" +256578,Apple Airpods Headphones,1,150,09/04/19 16:49,"988 River St, New York City, NY 10001" +256579,USB-C Charging Cable,1,11.95,09/17/19 11:33,"282 Jefferson St, Atlanta, GA 30301" +256580,34in Ultrawide Monitor,1,379.99,09/21/19 14:01,"687 Meadow St, Dallas, TX 75001" +256581,USB-C Charging Cable,1,11.95,09/19/19 00:08,"457 9th St, New York City, NY 10001" +256582,USB-C Charging Cable,1,11.95,09/17/19 15:25,"888 Hill St, Los Angeles, CA 90001" +256583,AA Batteries (4-pack),2,3.84,09/11/19 20:15,"500 Maple St, Dallas, TX 75001" +256584,USB-C Charging Cable,1,11.95,09/17/19 12:09,"485 Lake St, New York City, NY 10001" +256585,Google Phone,1,600,09/03/19 16:59,"548 14th St, Dallas, TX 75001" +256586,20in Monitor,1,109.99,09/22/19 20:42,"81 Elm St, Portland, OR 97035" +256587,Google Phone,1,600,09/17/19 11:19,"237 Spruce St, Boston, MA 02215" +256588,USB-C Charging Cable,1,11.95,09/25/19 13:06,"599 Hickory St, New York City, NY 10001" +256589,USB-C Charging Cable,1,11.95,09/28/19 00:31,"826 Maple St, San Francisco, CA 94016" +256590,iPhone,1,700,09/18/19 23:21,"851 Hill St, Austin, TX 73301" +256591,AAA Batteries (4-pack),1,2.99,09/23/19 07:35,"136 Highland St, Dallas, TX 75001" +256592,ThinkPad Laptop,1,999.99,09/13/19 09:52,"494 6th St, San Francisco, CA 94016" +256593,AA Batteries (4-pack),2,3.84,09/12/19 10:49,"952 Wilson St, Boston, MA 02215" +256593,AAA Batteries (4-pack),1,2.99,09/12/19 10:49,"952 Wilson St, Boston, MA 02215" +256594,Lightning Charging Cable,1,14.95,09/18/19 11:30,"426 4th St, Atlanta, GA 30301" +256595,27in FHD Monitor,1,149.99,09/11/19 20:31,"144 13th St, Seattle, WA 98101" +256596,27in 4K Gaming Monitor,1,389.99,09/20/19 09:06,"80 Main St, New York City, NY 10001" +256597,USB-C Charging Cable,1,11.95,09/11/19 14:23,"995 Chestnut St, Los Angeles, CA 90001" +256598,Wired Headphones,1,11.99,09/24/19 14:23,"427 Forest St, San Francisco, CA 94016" +256599,Apple Airpods Headphones,1,150,09/10/19 21:54,"347 6th St, San Francisco, CA 94016" +256600,iPhone,1,700,09/05/19 20:08,"818 Cherry St, Seattle, WA 98101" +256601,Bose SoundSport Headphones,1,99.99,09/29/19 09:02,"560 Dogwood St, Boston, MA 02215" +256602,AA Batteries (4-pack),1,3.84,09/01/19 13:05,"761 Highland St, Austin, TX 73301" +256603,34in Ultrawide Monitor,1,379.99,09/14/19 22:28,"561 Willow St, San Francisco, CA 94016" +256604,AA Batteries (4-pack),1,3.84,09/26/19 10:18,"815 Chestnut St, Atlanta, GA 30301" +256605,iPhone,1,700,09/03/19 12:30,"259 10th St, San Francisco, CA 94016" +256605,Apple Airpods Headphones,1,150,09/03/19 12:30,"259 10th St, San Francisco, CA 94016" +256606,AA Batteries (4-pack),1,3.84,09/22/19 07:43,"752 Cedar St, Los Angeles, CA 90001" +256607,34in Ultrawide Monitor,1,379.99,09/21/19 04:31,"412 5th St, Boston, MA 02215" +256608,27in 4K Gaming Monitor,1,389.99,09/15/19 20:39,"993 Meadow St, Boston, MA 02215" +256609,27in 4K Gaming Monitor,1,389.99,09/17/19 12:46,"338 Johnson St, Los Angeles, CA 90001" +256610,Bose SoundSport Headphones,1,99.99,09/14/19 11:28,"259 12th St, Los Angeles, CA 90001" +256611,USB-C Charging Cable,2,11.95,09/10/19 09:22,"899 Maple St, New York City, NY 10001" +256612,AA Batteries (4-pack),1,3.84,09/06/19 17:44,"10 South St, San Francisco, CA 94016" +256613,Wired Headphones,1,11.99,09/04/19 21:50,"255 River St, San Francisco, CA 94016" +256614,AAA Batteries (4-pack),1,2.99,09/10/19 19:17,"370 Jackson St, New York City, NY 10001" +256615,AA Batteries (4-pack),1,3.84,09/26/19 20:51,"681 Center St, Dallas, TX 75001" +256616,ThinkPad Laptop,1,999.99,09/29/19 18:54,"716 Elm St, San Francisco, CA 94016" +256617,USB-C Charging Cable,1,11.95,09/04/19 10:03,"633 North St, Boston, MA 02215" +256618,USB-C Charging Cable,1,11.95,09/06/19 14:26,"910 Lakeview St, San Francisco, CA 94016" +256619,34in Ultrawide Monitor,1,379.99,09/19/19 19:48,"53 Cedar St, Dallas, TX 75001" +256620,27in FHD Monitor,1,149.99,09/09/19 09:20,"941 Highland St, San Francisco, CA 94016" +256621,AA Batteries (4-pack),1,3.84,09/07/19 15:49,"337 11th St, Seattle, WA 98101" +256622,Lightning Charging Cable,1,14.95,09/29/19 12:18,"310 North St, Seattle, WA 98101" +256623,AA Batteries (4-pack),1,3.84,09/13/19 20:19,"846 7th St, San Francisco, CA 94016" +256624,LG Washing Machine,1,600.0,09/25/19 16:43,"921 Willow St, New York City, NY 10001" +256625,27in 4K Gaming Monitor,1,389.99,09/29/19 08:19,"207 Dogwood St, Los Angeles, CA 90001" +256626,Lightning Charging Cable,1,14.95,09/26/19 15:28,"967 11th St, San Francisco, CA 94016" +256626,Bose SoundSport Headphones,1,99.99,09/26/19 15:28,"967 11th St, San Francisco, CA 94016" +256627,iPhone,1,700,09/10/19 11:54,"762 Cherry St, Boston, MA 02215" +256628,34in Ultrawide Monitor,1,379.99,09/27/19 09:43,"564 West St, Los Angeles, CA 90001" +256629,34in Ultrawide Monitor,1,379.99,09/21/19 21:20,"152 South St, Austin, TX 73301" +256630,Lightning Charging Cable,2,14.95,09/28/19 18:23,"895 8th St, Los Angeles, CA 90001" +256631,Lightning Charging Cable,1,14.95,09/05/19 18:15,"200 River St, New York City, NY 10001" +256632,Apple Airpods Headphones,1,150,09/06/19 14:35,"673 4th St, San Francisco, CA 94016" +256633,Bose SoundSport Headphones,1,99.99,09/28/19 13:36,"986 Park St, San Francisco, CA 94016" +256634,Apple Airpods Headphones,1,150,09/09/19 09:22,"547 Center St, San Francisco, CA 94016" +256635,Wired Headphones,1,11.99,09/26/19 02:16,"757 Johnson St, New York City, NY 10001" +256636,AAA Batteries (4-pack),1,2.99,09/09/19 14:22,"575 Elm St, Atlanta, GA 30301" +256637,USB-C Charging Cable,1,11.95,09/08/19 18:20,"660 2nd St, New York City, NY 10001" +256638,Macbook Pro Laptop,1,1700,09/30/19 08:49,"58 Johnson St, San Francisco, CA 94016" +256639,20in Monitor,1,109.99,09/03/19 19:59,"884 Center St, New York City, NY 10001" +256640,ThinkPad Laptop,1,999.99,09/21/19 20:39,"678 10th St, New York City, NY 10001" +256641,27in 4K Gaming Monitor,1,389.99,09/12/19 22:56,"941 9th St, Los Angeles, CA 90001" +256642,Wired Headphones,1,11.99,09/16/19 16:57,"67 2nd St, Los Angeles, CA 90001" +256643,27in 4K Gaming Monitor,1,389.99,09/17/19 14:49,"771 4th St, Austin, TX 73301" +256644,20in Monitor,1,109.99,09/19/19 20:23,"570 10th St, Portland, OR 97035" +256645,AAA Batteries (4-pack),1,2.99,09/10/19 18:17,"56 Cedar St, New York City, NY 10001" +256646,AA Batteries (4-pack),2,3.84,09/14/19 09:52,"983 11th St, San Francisco, CA 94016" +256647,Wired Headphones,1,11.99,09/24/19 19:14,"706 Forest St, Los Angeles, CA 90001" +256648,Macbook Pro Laptop,1,1700,09/21/19 22:33,"168 Lincoln St, San Francisco, CA 94016" +256649,34in Ultrawide Monitor,1,379.99,09/05/19 11:28,"248 Church St, San Francisco, CA 94016" +256650,USB-C Charging Cable,1,11.95,09/19/19 17:45,"220 Hill St, New York City, NY 10001" +256651,Bose SoundSport Headphones,1,99.99,09/22/19 17:52,"211 Maple St, New York City, NY 10001" +256652,20in Monitor,1,109.99,09/02/19 17:29,"483 Forest St, Austin, TX 73301" +256653,USB-C Charging Cable,1,11.95,09/22/19 21:42,"378 13th St, Atlanta, GA 30301" +256654,Macbook Pro Laptop,1,1700,09/15/19 14:39,"115 Walnut St, San Francisco, CA 94016" +256655,Wired Headphones,1,11.99,09/04/19 14:49,"116 Walnut St, Austin, TX 73301" +256656,Bose SoundSport Headphones,1,99.99,09/12/19 21:25,"138 Madison St, Los Angeles, CA 90001" +256656,Bose SoundSport Headphones,1,99.99,09/12/19 21:25,"138 Madison St, Los Angeles, CA 90001" +256657,Lightning Charging Cable,1,14.95,09/22/19 17:20,"515 Church St, Boston, MA 02215" +256658,Wired Headphones,1,11.99,09/15/19 10:56,"115 Adams St, San Francisco, CA 94016" +256659,27in 4K Gaming Monitor,1,389.99,09/18/19 18:36,"430 Lake St, New York City, NY 10001" +256660,Macbook Pro Laptop,1,1700,09/20/19 22:54,"825 Park St, San Francisco, CA 94016" +256661,27in 4K Gaming Monitor,1,389.99,09/06/19 18:38,"199 Adams St, Seattle, WA 98101" +256662,ThinkPad Laptop,1,999.99,09/21/19 23:42,"822 Jackson St, Atlanta, GA 30301" +256663,Bose SoundSport Headphones,1,99.99,09/04/19 18:35,"868 4th St, Los Angeles, CA 90001" +256664,27in 4K Gaming Monitor,1,389.99,09/26/19 15:37,"565 West St, Los Angeles, CA 90001" +256665,27in 4K Gaming Monitor,1,389.99,09/18/19 20:45,"127 Spruce St, Los Angeles, CA 90001" +256666,AAA Batteries (4-pack),1,2.99,09/12/19 18:39,"17 Pine St, Atlanta, GA 30301" +256667,USB-C Charging Cable,1,11.95,09/02/19 11:03,"191 Ridge St, Portland, OR 97035" +256668,Google Phone,1,600,09/07/19 11:00,"686 Lincoln St, Los Angeles, CA 90001" +256669,Apple Airpods Headphones,1,150,09/13/19 19:02,"469 Jefferson St, San Francisco, CA 94016" +256670,USB-C Charging Cable,1,11.95,09/24/19 10:52,"930 2nd St, Boston, MA 02215" +256671,Wired Headphones,1,11.99,09/27/19 23:11,"562 Sunset St, Los Angeles, CA 90001" +256672,34in Ultrawide Monitor,1,379.99,09/10/19 22:27,"868 Dogwood St, Atlanta, GA 30301" +256673,Macbook Pro Laptop,1,1700,09/14/19 06:20,"956 9th St, Dallas, TX 75001" +256674,USB-C Charging Cable,1,11.95,09/12/19 00:27,"527 Dogwood St, San Francisco, CA 94016" +256675,Lightning Charging Cable,1,14.95,09/04/19 17:32,"97 5th St, Seattle, WA 98101" +256676,27in 4K Gaming Monitor,1,389.99,09/10/19 07:19,"63 Adams St, New York City, NY 10001" +256677,20in Monitor,1,109.99,09/28/19 14:20,"852 9th St, Dallas, TX 75001" +256678,AA Batteries (4-pack),3,3.84,09/13/19 10:29,"947 7th St, San Francisco, CA 94016" +256679,Macbook Pro Laptop,1,1700,09/03/19 13:50,"802 Cherry St, San Francisco, CA 94016" +256680,USB-C Charging Cable,1,11.95,09/05/19 12:52,"489 Madison St, Portland, OR 97035" +256681,AA Batteries (4-pack),3,3.84,09/03/19 15:03,"965 Wilson St, Atlanta, GA 30301" +256682,Google Phone,1,600,09/01/19 14:02,"391 Lincoln St, Seattle, WA 98101" +256683,Vareebadd Phone,1,400,09/03/19 20:24,"190 1st St, San Francisco, CA 94016" +256683,USB-C Charging Cable,1,11.95,09/03/19 20:24,"190 1st St, San Francisco, CA 94016" +256684,AA Batteries (4-pack),1,3.84,09/29/19 20:19,"746 4th St, Boston, MA 02215" +256685,Vareebadd Phone,1,400,09/27/19 00:11,"599 North St, San Francisco, CA 94016" +256686,AA Batteries (4-pack),1,3.84,09/08/19 10:06,"285 Hill St, Atlanta, GA 30301" +256687,AAA Batteries (4-pack),4,2.99,09/21/19 13:32,"278 13th St, Los Angeles, CA 90001" +256688,USB-C Charging Cable,1,11.95,09/19/19 11:35,"141 10th St, Los Angeles, CA 90001" +256689,iPhone,1,700,09/27/19 13:12,"812 Maple St, New York City, NY 10001" +256690,AAA Batteries (4-pack),3,2.99,09/12/19 19:55,"818 Lincoln St, Los Angeles, CA 90001" +256691,Vareebadd Phone,1,400,09/22/19 14:29,"863 Forest St, Boston, MA 02215" +256692,Lightning Charging Cable,2,14.95,09/08/19 22:32,"944 4th St, New York City, NY 10001" +256693,27in FHD Monitor,1,149.99,09/09/19 13:53,"124 14th St, Los Angeles, CA 90001" +256694,Bose SoundSport Headphones,1,99.99,09/26/19 08:14,"272 Center St, Los Angeles, CA 90001" +256695,Bose SoundSport Headphones,1,99.99,09/14/19 20:47,"658 4th St, New York City, NY 10001" +256696,USB-C Charging Cable,2,11.95,09/16/19 00:19,"55 Walnut St, Los Angeles, CA 90001" +256697,Macbook Pro Laptop,1,1700,09/30/19 12:29,"850 Spruce St, Los Angeles, CA 90001" +256698,USB-C Charging Cable,1,11.95,09/28/19 11:15,"636 Elm St, San Francisco, CA 94016" +256699,34in Ultrawide Monitor,1,379.99,09/24/19 13:40,"780 Hickory St, San Francisco, CA 94016" +256700,AA Batteries (4-pack),1,3.84,09/29/19 22:30,"708 Lincoln St, Los Angeles, CA 90001" +256701,AAA Batteries (4-pack),2,2.99,09/24/19 14:31,"549 14th St, Portland, OR 97035" +256702,Bose SoundSport Headphones,1,99.99,09/02/19 18:51,"738 Washington St, Los Angeles, CA 90001" +256703,AA Batteries (4-pack),1,3.84,09/04/19 06:06,"478 Park St, New York City, NY 10001" +256704,Vareebadd Phone,1,400,09/30/19 12:40,"566 Madison St, Dallas, TX 75001" +256704,USB-C Charging Cable,1,11.95,09/30/19 12:40,"566 Madison St, Dallas, TX 75001" +256705,AA Batteries (4-pack),1,3.84,09/11/19 21:28,"47 Jefferson St, Seattle, WA 98101" +256706,Bose SoundSport Headphones,1,99.99,09/04/19 10:00,"56 4th St, Dallas, TX 75001" +256707,Lightning Charging Cable,1,14.95,09/24/19 00:45,"922 Hill St, Los Angeles, CA 90001" +256708,Vareebadd Phone,1,400,09/18/19 20:32,"685 Lincoln St, Portland, ME 04101" +256709,Google Phone,1,600,09/21/19 13:05,"456 Main St, Atlanta, GA 30301" +256710,27in 4K Gaming Monitor,1,389.99,09/29/19 13:10,"783 Lake St, Los Angeles, CA 90001" +256711,Wired Headphones,3,11.99,09/17/19 17:23,"978 Park St, Austin, TX 73301" +256712,20in Monitor,1,109.99,09/22/19 23:19,"474 Meadow St, San Francisco, CA 94016" +256713,Apple Airpods Headphones,1,150,09/20/19 19:27,"262 Spruce St, New York City, NY 10001" +256714,AA Batteries (4-pack),1,3.84,09/18/19 10:19,"150 Dogwood St, Los Angeles, CA 90001" +256715,27in 4K Gaming Monitor,1,389.99,09/19/19 14:35,"907 Lake St, Atlanta, GA 30301" +256716,34in Ultrawide Monitor,1,379.99,09/29/19 20:42,"216 Jefferson St, Los Angeles, CA 90001" +256717,34in Ultrawide Monitor,1,379.99,09/15/19 15:53,"334 Lake St, Los Angeles, CA 90001" +256718,34in Ultrawide Monitor,1,379.99,09/17/19 16:16,"570 Sunset St, San Francisco, CA 94016" +256719,27in 4K Gaming Monitor,1,389.99,09/05/19 08:59,"864 9th St, Los Angeles, CA 90001" +256720,USB-C Charging Cable,1,11.95,09/07/19 17:12,"983 Jefferson St, Dallas, TX 75001" +256721,AA Batteries (4-pack),2,3.84,09/06/19 14:13,"515 9th St, New York City, NY 10001" +256722,AAA Batteries (4-pack),1,2.99,09/10/19 08:35,"25 Center St, San Francisco, CA 94016" +256723,AAA Batteries (4-pack),3,2.99,09/30/19 14:24,"737 Ridge St, Los Angeles, CA 90001" +256724,34in Ultrawide Monitor,1,379.99,09/28/19 12:24,"324 North St, San Francisco, CA 94016" +256725,USB-C Charging Cable,1,11.95,09/26/19 08:01,"550 Lakeview St, Atlanta, GA 30301" +256726,Wired Headphones,1,11.99,09/01/19 23:20,"578 1st St, Portland, ME 04101" +256727,ThinkPad Laptop,1,999.99,09/02/19 00:03,"517 1st St, Los Angeles, CA 90001" +256728,Wired Headphones,1,11.99,09/08/19 10:32,"311 South St, New York City, NY 10001" +256729,Wired Headphones,1,11.99,09/14/19 21:31,"738 Center St, New York City, NY 10001" +256730,27in 4K Gaming Monitor,1,389.99,09/23/19 19:34,"648 11th St, New York City, NY 10001" +256731,iPhone,1,700,09/07/19 09:45,"837 Meadow St, Seattle, WA 98101" +256732,Macbook Pro Laptop,1,1700,09/06/19 15:13,"28 Jefferson St, Austin, TX 73301" +256733,ThinkPad Laptop,1,999.99,09/05/19 17:18,"608 Center St, San Francisco, CA 94016" +256734,Apple Airpods Headphones,1,150,09/27/19 10:07,"986 Cedar St, Los Angeles, CA 90001" +256735,AA Batteries (4-pack),1,3.84,09/22/19 19:04,"357 Highland St, San Francisco, CA 94016" +256736,Macbook Pro Laptop,1,1700,09/13/19 10:41,"651 Washington St, Portland, OR 97035" +256737,iPhone,1,700,09/18/19 21:45,"617 9th St, Portland, OR 97035" +256738,iPhone,1,700,09/29/19 15:55,"254 Jefferson St, New York City, NY 10001" +256739,Apple Airpods Headphones,1,150,09/19/19 19:35,"979 9th St, San Francisco, CA 94016" +256740,20in Monitor,1,109.99,09/02/19 15:09,"138 10th St, San Francisco, CA 94016" +256741,Lightning Charging Cable,1,14.95,09/19/19 21:07,"563 Hill St, Los Angeles, CA 90001" +256742,iPhone,1,700,09/15/19 19:38,"109 14th St, Seattle, WA 98101" +256743,Wired Headphones,1,11.99,09/07/19 18:28,"395 Walnut St, Dallas, TX 75001" +256744,Lightning Charging Cable,1,14.95,09/12/19 11:38,"700 Forest St, Portland, OR 97035" +256745,Apple Airpods Headphones,1,150,09/25/19 13:01,"185 Cherry St, Austin, TX 73301" +256746,27in FHD Monitor,1,149.99,09/12/19 00:11,"830 Walnut St, New York City, NY 10001" +256747,USB-C Charging Cable,1,11.95,09/14/19 19:47,"459 Hickory St, San Francisco, CA 94016" +256748,ThinkPad Laptop,1,999.99,09/03/19 11:38,"590 Sunset St, San Francisco, CA 94016" +256749,Lightning Charging Cable,1,14.95,09/25/19 00:31,"705 13th St, New York City, NY 10001" +256750,AA Batteries (4-pack),1,3.84,09/13/19 07:58,"134 Cherry St, San Francisco, CA 94016" +256751,iPhone,1,700,09/23/19 08:31,"261 1st St, Portland, OR 97035" +256752,AAA Batteries (4-pack),1,2.99,09/09/19 17:59,"403 Lakeview St, New York City, NY 10001" +256753,Wired Headphones,1,11.99,09/16/19 23:25,"598 Cherry St, San Francisco, CA 94016" +256754,Apple Airpods Headphones,1,150,09/24/19 16:45,"947 4th St, Los Angeles, CA 90001" +256755,Bose SoundSport Headphones,1,99.99,09/03/19 11:06,"181 Hill St, Portland, OR 97035" +,,,,, +256756,Bose SoundSport Headphones,1,99.99,09/28/19 08:51,"849 5th St, Boston, MA 02215" +256757,Bose SoundSport Headphones,1,99.99,09/19/19 13:36,"46 Willow St, Dallas, TX 75001" +256758,Wired Headphones,1,11.99,09/24/19 18:28,"915 9th St, Portland, OR 97035" +256759,Apple Airpods Headphones,1,150,09/24/19 20:45,"963 Forest St, Portland, ME 04101" +256760,Wired Headphones,2,11.99,09/29/19 18:36,"268 Hickory St, Boston, MA 02215" +256761,Wired Headphones,1,11.99,09/10/19 10:57,"434 7th St, Boston, MA 02215" +256762,27in FHD Monitor,1,149.99,09/03/19 19:10,"514 Main St, Portland, ME 04101" +256763,Lightning Charging Cable,1,14.95,09/22/19 13:36,"121 Meadow St, New York City, NY 10001" +256764,Bose SoundSport Headphones,1,99.99,09/06/19 16:58,"393 11th St, New York City, NY 10001" +256765,27in FHD Monitor,1,149.99,09/12/19 12:54,"836 Sunset St, Los Angeles, CA 90001" +256766,AA Batteries (4-pack),1,3.84,09/12/19 06:20,"983 Cherry St, Portland, OR 97035" +256767,27in 4K Gaming Monitor,1,389.99,09/29/19 14:59,"917 Spruce St, Portland, OR 97035" +256768,Macbook Pro Laptop,1,1700,09/01/19 17:20,"242 Church St, San Francisco, CA 94016" +256769,Lightning Charging Cable,1,14.95,09/12/19 21:55,"1 Main St, New York City, NY 10001" +256770,Macbook Pro Laptop,1,1700,09/25/19 10:14,"298 Hickory St, Austin, TX 73301" +256771,USB-C Charging Cable,1,11.95,09/22/19 19:16,"50 South St, Los Angeles, CA 90001" +256772,Wired Headphones,1,11.99,09/23/19 12:38,"821 Madison St, Seattle, WA 98101" +256773,Lightning Charging Cable,1,14.95,09/19/19 10:05,"671 12th St, Atlanta, GA 30301" +256774,Vareebadd Phone,1,400,09/16/19 00:36,"257 Chestnut St, Portland, OR 97035" +256774,USB-C Charging Cable,1,11.95,09/16/19 00:36,"257 Chestnut St, Portland, OR 97035" +256775,USB-C Charging Cable,1,11.95,09/14/19 23:16,"955 River St, New York City, NY 10001" +256776,27in FHD Monitor,1,149.99,09/01/19 20:51,"239 Center St, Boston, MA 02215" +256777,AA Batteries (4-pack),2,3.84,09/13/19 19:16,"503 Highland St, Boston, MA 02215" +256778,USB-C Charging Cable,1,11.95,09/23/19 12:33,"878 River St, San Francisco, CA 94016" +256779,AA Batteries (4-pack),1,3.84,09/22/19 13:15,"20 Cherry St, San Francisco, CA 94016" +256780,Lightning Charging Cable,2,14.95,09/16/19 17:21,"36 Walnut St, Dallas, TX 75001" +256781,Apple Airpods Headphones,1,150,09/22/19 16:48,"55 West St, San Francisco, CA 94016" +256782,34in Ultrawide Monitor,1,379.99,09/17/19 21:54,"386 Lake St, Los Angeles, CA 90001" +256783,Apple Airpods Headphones,1,150,09/16/19 17:05,"704 Washington St, Los Angeles, CA 90001" +256784,Google Phone,1,600,09/06/19 15:27,"531 Madison St, San Francisco, CA 94016" +256785,Lightning Charging Cable,1,14.95,09/25/19 10:54,"792 Lincoln St, San Francisco, CA 94016" +256786,Apple Airpods Headphones,1,150,09/28/19 20:45,"27 Adams St, New York City, NY 10001" +256787,USB-C Charging Cable,1,11.95,09/18/19 21:43,"985 Pine St, San Francisco, CA 94016" +256788,USB-C Charging Cable,1,11.95,09/14/19 17:10,"413 Washington St, Seattle, WA 98101" +256789,AAA Batteries (4-pack),4,2.99,09/28/19 08:30,"309 Jefferson St, San Francisco, CA 94016" +256790,iPhone,1,700,09/01/19 20:23,"439 Washington St, San Francisco, CA 94016" +256791,ThinkPad Laptop,1,999.99,09/11/19 11:19,"167 Park St, New York City, NY 10001" +256792,AA Batteries (4-pack),1,3.84,09/20/19 10:46,"174 5th St, Dallas, TX 75001" +256792,USB-C Charging Cable,1,11.95,09/20/19 10:46,"174 5th St, Dallas, TX 75001" +256793,Apple Airpods Headphones,1,150,09/30/19 11:37,"837 Maple St, Seattle, WA 98101" +256794,USB-C Charging Cable,1,11.95,09/19/19 19:13,"633 Hickory St, San Francisco, CA 94016" +256795,34in Ultrawide Monitor,1,379.99,09/25/19 12:04,"587 Madison St, Atlanta, GA 30301" +256796,Bose SoundSport Headphones,1,99.99,09/15/19 15:33,"191 Center St, Los Angeles, CA 90001" +256797,Bose SoundSport Headphones,1,99.99,09/02/19 17:06,"977 Forest St, New York City, NY 10001" +256798,AAA Batteries (4-pack),2,2.99,09/11/19 19:20,"29 8th St, Boston, MA 02215" +256799,USB-C Charging Cable,1,11.95,09/28/19 14:57,"780 Jackson St, Atlanta, GA 30301" +256800,USB-C Charging Cable,1,11.95,09/28/19 18:03,"406 2nd St, Dallas, TX 75001" +256801,iPhone,1,700,09/18/19 18:07,"490 11th St, Atlanta, GA 30301" +256802,Flatscreen TV,1,300,09/19/19 11:18,"329 Ridge St, Los Angeles, CA 90001" +256803,Apple Airpods Headphones,1,150,09/09/19 16:03,"213 4th St, Dallas, TX 75001" +256804,iPhone,1,700,09/05/19 12:31,"817 Maple St, New York City, NY 10001" +256805,Lightning Charging Cable,1,14.95,09/17/19 16:24,"663 2nd St, Los Angeles, CA 90001" +256806,USB-C Charging Cable,2,11.95,09/07/19 01:37,"646 Forest St, San Francisco, CA 94016" +256807,Wired Headphones,1,11.99,09/13/19 00:30,"621 12th St, Los Angeles, CA 90001" +256808,AA Batteries (4-pack),1,3.84,09/10/19 09:55,"168 Adams St, Boston, MA 02215" +256809,Wired Headphones,1,11.99,09/05/19 18:49,"56 Walnut St, Los Angeles, CA 90001" +256810,USB-C Charging Cable,1,11.95,09/20/19 16:54,"627 8th St, Boston, MA 02215" +256811,AAA Batteries (4-pack),2,2.99,09/05/19 11:25,"568 Wilson St, Boston, MA 02215" +256812,Bose SoundSport Headphones,1,99.99,09/13/19 11:45,"929 Church St, Dallas, TX 75001" +256813,AAA Batteries (4-pack),1,2.99,09/15/19 14:03,"844 Dogwood St, New York City, NY 10001" +256814,Apple Airpods Headphones,1,150,09/11/19 00:27,"707 River St, Los Angeles, CA 90001" +256815,Lightning Charging Cable,1,14.95,09/17/19 12:42,"501 Highland St, San Francisco, CA 94016" +256816,iPhone,1,700,09/16/19 22:18,"913 Hickory St, Atlanta, GA 30301" +256817,ThinkPad Laptop,1,999.99,09/19/19 07:46,"66 7th St, Austin, TX 73301" +256818,Bose SoundSport Headphones,1,99.99,09/03/19 15:07,"764 Cherry St, San Francisco, CA 94016" +256819,USB-C Charging Cable,1,11.95,09/05/19 10:19,"541 11th St, Austin, TX 73301" +256820,27in FHD Monitor,1,149.99,09/05/19 20:21,"650 Hickory St, Boston, MA 02215" +256821,Bose SoundSport Headphones,1,99.99,09/28/19 14:12,"85 Main St, Los Angeles, CA 90001" +256822,Wired Headphones,1,11.99,09/09/19 01:45,"447 Park St, Atlanta, GA 30301" +256823,Lightning Charging Cable,1,14.95,09/07/19 00:07,"201 Lincoln St, Dallas, TX 75001" +256824,AA Batteries (4-pack),1,3.84,09/13/19 21:53,"689 5th St, New York City, NY 10001" +256825,AAA Batteries (4-pack),1,2.99,09/03/19 16:18,"479 Jefferson St, San Francisco, CA 94016" +256826,27in FHD Monitor,1,149.99,09/10/19 11:58,"574 Maple St, Atlanta, GA 30301" +256827,Macbook Pro Laptop,1,1700,09/17/19 19:18,"259 Hill St, San Francisco, CA 94016" +256828,27in 4K Gaming Monitor,1,389.99,09/02/19 00:46,"166 Main St, Atlanta, GA 30301" +256829,ThinkPad Laptop,1,999.99,09/27/19 13:49,"992 Chestnut St, Portland, OR 97035" +256830,Macbook Pro Laptop,1,1700,09/25/19 21:01,"936 Wilson St, New York City, NY 10001" +256831,AA Batteries (4-pack),1,3.84,09/08/19 14:03,"942 Pine St, Los Angeles, CA 90001" +256832,Bose SoundSport Headphones,2,99.99,09/02/19 10:38,"538 8th St, Dallas, TX 75001" +256833,34in Ultrawide Monitor,1,379.99,09/26/19 21:46,"694 Willow St, San Francisco, CA 94016" +256834,Wired Headphones,1,11.99,09/21/19 10:19,"556 1st St, New York City, NY 10001" +256835,34in Ultrawide Monitor,1,379.99,09/17/19 18:30,"117 South St, Boston, MA 02215" +256836,Google Phone,1,600,09/17/19 14:11,"842 6th St, New York City, NY 10001" +256837,Lightning Charging Cable,1,14.95,09/23/19 13:09,"372 Ridge St, San Francisco, CA 94016" +256838,AAA Batteries (4-pack),1,2.99,09/10/19 15:15,"531 9th St, New York City, NY 10001" +256839,Apple Airpods Headphones,1,150,09/02/19 16:51,"680 1st St, Atlanta, GA 30301" +256840,Apple Airpods Headphones,1,150,09/16/19 23:44,"200 Ridge St, Los Angeles, CA 90001" +256841,AA Batteries (4-pack),1,3.84,09/20/19 10:51,"358 Madison St, Austin, TX 73301" +256842,AAA Batteries (4-pack),1,2.99,09/11/19 10:28,"348 12th St, San Francisco, CA 94016" +256843,AAA Batteries (4-pack),1,2.99,09/18/19 13:51,"190 7th St, San Francisco, CA 94016" +256844,Wired Headphones,1,11.99,09/23/19 21:25,"260 Forest St, San Francisco, CA 94016" +256845,Bose SoundSport Headphones,1,99.99,09/15/19 21:35,"405 Johnson St, Atlanta, GA 30301" +256846,AAA Batteries (4-pack),1,2.99,09/24/19 16:15,"184 Dogwood St, Dallas, TX 75001" +256847,Google Phone,1,600,09/16/19 21:23,"242 Maple St, Portland, OR 97035" +256848,27in FHD Monitor,1,149.99,09/25/19 16:31,"353 Lakeview St, Austin, TX 73301" +256849,LG Dryer,1,600.0,09/13/19 10:06,"305 Lincoln St, San Francisco, CA 94016" +256850,Apple Airpods Headphones,1,150,09/11/19 12:26,"453 Johnson St, Los Angeles, CA 90001" +256851,Lightning Charging Cable,1,14.95,09/17/19 22:14,"297 Park St, San Francisco, CA 94016" +256851,AA Batteries (4-pack),3,3.84,09/17/19 22:14,"297 Park St, San Francisco, CA 94016" +256852,Macbook Pro Laptop,1,1700,09/27/19 05:59,"160 Spruce St, Dallas, TX 75001" +256853,Wired Headphones,1,11.99,09/25/19 12:11,"484 Church St, New York City, NY 10001" +256854,AA Batteries (4-pack),1,3.84,09/12/19 21:18,"710 Dogwood St, Austin, TX 73301" +256855,Lightning Charging Cable,1,14.95,09/13/19 16:14,"307 Sunset St, New York City, NY 10001" +256856,ThinkPad Laptop,1,999.99,09/03/19 10:42,"327 Willow St, New York City, NY 10001" +256857,Apple Airpods Headphones,1,150,09/23/19 19:56,"212 2nd St, Portland, OR 97035" +256858,34in Ultrawide Monitor,1,379.99,09/13/19 00:47,"765 Willow St, San Francisco, CA 94016" +256859,Bose SoundSport Headphones,1,99.99,09/16/19 18:20,"305 Jefferson St, New York City, NY 10001" +256860,Flatscreen TV,1,300,09/06/19 00:43,"920 13th St, New York City, NY 10001" +256861,Apple Airpods Headphones,1,150,09/17/19 18:53,"693 1st St, Seattle, WA 98101" +256862,Apple Airpods Headphones,1,150,09/20/19 10:35,"985 6th St, Austin, TX 73301" +256863,Macbook Pro Laptop,1,1700,09/13/19 21:16,"295 Elm St, San Francisco, CA 94016" +256864,20in Monitor,1,109.99,09/13/19 06:32,"191 11th St, Los Angeles, CA 90001" +256865,20in Monitor,1,109.99,09/13/19 15:05,"85 6th St, Boston, MA 02215" +256866,Google Phone,1,600,09/22/19 12:21,"386 Church St, New York City, NY 10001" +256867,AA Batteries (4-pack),1,3.84,09/28/19 19:20,"337 Center St, San Francisco, CA 94016" +256868,Apple Airpods Headphones,1,150,09/12/19 17:33,"189 Park St, Dallas, TX 75001" +256869,27in FHD Monitor,1,149.99,09/09/19 08:38,"139 Highland St, Seattle, WA 98101" +256870,AAA Batteries (4-pack),1,2.99,09/20/19 16:12,"241 14th St, San Francisco, CA 94016" +256871,AA Batteries (4-pack),3,3.84,09/02/19 19:05,"737 Madison St, San Francisco, CA 94016" +256872,20in Monitor,1,109.99,09/23/19 17:49,"98 13th St, New York City, NY 10001" +256873,USB-C Charging Cable,1,11.95,09/12/19 18:04,"43 Pine St, Los Angeles, CA 90001" +256874,Bose SoundSport Headphones,1,99.99,09/07/19 17:47,"268 4th St, San Francisco, CA 94016" +256875,Lightning Charging Cable,1,14.95,09/23/19 13:26,"849 Sunset St, Los Angeles, CA 90001" +256876,Bose SoundSport Headphones,1,99.99,09/02/19 22:34,"334 Lake St, Los Angeles, CA 90001" +256877,20in Monitor,1,109.99,09/28/19 00:17,"433 Hill St, San Francisco, CA 94016" +256877,Bose SoundSport Headphones,1,99.99,09/28/19 00:17,"433 Hill St, San Francisco, CA 94016" +256878,Lightning Charging Cable,1,14.95,09/04/19 04:49,"9 Hickory St, Dallas, TX 75001" +256879,Wired Headphones,1,11.99,09/11/19 16:45,"254 12th St, Dallas, TX 75001" +256880,AAA Batteries (4-pack),1,2.99,09/13/19 12:17,"64 11th St, Boston, MA 02215" +256881,AA Batteries (4-pack),2,3.84,09/19/19 10:32,"933 Church St, New York City, NY 10001" +256882,ThinkPad Laptop,1,999.99,09/04/19 06:32,"62 Main St, Seattle, WA 98101" +256883,27in 4K Gaming Monitor,1,389.99,09/04/19 17:38,"655 13th St, New York City, NY 10001" +256884,20in Monitor,1,109.99,09/06/19 13:43,"280 South St, Los Angeles, CA 90001" +256885,20in Monitor,1,109.99,09/30/19 20:23,"971 4th St, San Francisco, CA 94016" +256886,27in 4K Gaming Monitor,1,389.99,09/25/19 23:41,"398 West St, Dallas, TX 75001" +256887,Wired Headphones,1,11.99,09/06/19 01:24,"915 10th St, Portland, OR 97035" +256888,Apple Airpods Headphones,1,150,09/07/19 21:10,"337 Wilson St, Los Angeles, CA 90001" +256889,USB-C Charging Cable,1,11.95,09/12/19 10:10,"231 Jefferson St, New York City, NY 10001" +256890,AA Batteries (4-pack),2,3.84,09/04/19 06:15,"134 Jackson St, Dallas, TX 75001" +256891,AAA Batteries (4-pack),2,2.99,09/25/19 14:08,"516 Maple St, San Francisco, CA 94016" +256892,AA Batteries (4-pack),1,3.84,09/27/19 14:02,"830 9th St, Boston, MA 02215" +256893,Flatscreen TV,1,300,09/16/19 18:18,"821 Willow St, Portland, ME 04101" +256894,AAA Batteries (4-pack),1,2.99,09/05/19 17:42,"58 Ridge St, Dallas, TX 75001" +256895,27in FHD Monitor,1,149.99,09/27/19 22:55,"934 Walnut St, Portland, OR 97035" +256896,Apple Airpods Headphones,1,150,09/14/19 19:12,"418 Jefferson St, San Francisco, CA 94016" +256897,Wired Headphones,1,11.99,09/14/19 10:39,"158 10th St, San Francisco, CA 94016" +256898,iPhone,1,700,09/18/19 08:40,"552 4th St, Los Angeles, CA 90001" +256899,Lightning Charging Cable,1,14.95,09/15/19 14:28,"91 Highland St, Portland, ME 04101" +256900,27in 4K Gaming Monitor,1,389.99,09/19/19 18:32,"329 Cherry St, Austin, TX 73301" +256901,ThinkPad Laptop,1,999.99,09/08/19 22:17,"744 Jefferson St, New York City, NY 10001" +256902,iPhone,1,700,09/18/19 18:58,"976 6th St, New York City, NY 10001" +256903,Wired Headphones,1,11.99,09/07/19 17:34,"46 Forest St, Portland, OR 97035" +256904,Bose SoundSport Headphones,1,99.99,09/03/19 17:01,"898 Hickory St, San Francisco, CA 94016" +256905,Bose SoundSport Headphones,1,99.99,09/11/19 21:46,"517 South St, San Francisco, CA 94016" +256906,Bose SoundSport Headphones,1,99.99,09/22/19 06:25,"627 13th St, Dallas, TX 75001" +256907,Apple Airpods Headphones,1,150,09/20/19 00:57,"90 7th St, Seattle, WA 98101" +256908,20in Monitor,1,109.99,09/16/19 11:58,"836 Lakeview St, Atlanta, GA 30301" +256908,Flatscreen TV,1,300,09/16/19 11:58,"836 Lakeview St, Atlanta, GA 30301" +256909,AAA Batteries (4-pack),2,2.99,09/26/19 13:09,"503 2nd St, Portland, OR 97035" +256910,Vareebadd Phone,1,400,09/25/19 19:17,"706 Chestnut St, New York City, NY 10001" +256911,AA Batteries (4-pack),1,3.84,09/20/19 09:26,"766 South St, New York City, NY 10001" +256912,USB-C Charging Cable,1,11.95,09/05/19 21:23,"282 1st St, San Francisco, CA 94016" +256913,AAA Batteries (4-pack),1,2.99,09/15/19 16:46,"616 Hickory St, Dallas, TX 75001" +256914,Apple Airpods Headphones,1,150,09/17/19 10:28,"155 Pine St, Austin, TX 73301" +256915,Bose SoundSport Headphones,1,99.99,09/09/19 09:36,"51 14th St, Seattle, WA 98101" +256916,Lightning Charging Cable,1,14.95,09/09/19 20:02,"783 Meadow St, San Francisco, CA 94016" +256917,Lightning Charging Cable,1,14.95,09/11/19 17:02,"159 Main St, San Francisco, CA 94016" +256918,AA Batteries (4-pack),1,3.84,09/17/19 23:05,"168 Lakeview St, New York City, NY 10001" +256919,iPhone,1,700,09/15/19 18:12,"813 4th St, Boston, MA 02215" +256920,USB-C Charging Cable,1,11.95,09/17/19 12:03,"272 Hill St, San Francisco, CA 94016" +256921,USB-C Charging Cable,1,11.95,09/15/19 20:04,"892 7th St, Los Angeles, CA 90001" +256922,AA Batteries (4-pack),3,3.84,09/16/19 09:40,"446 Dogwood St, Seattle, WA 98101" +256923,Bose SoundSport Headphones,2,99.99,09/22/19 20:47,"685 Center St, New York City, NY 10001" +256924,USB-C Charging Cable,1,11.95,09/15/19 17:48,"23 Elm St, Boston, MA 02215" +256925,AAA Batteries (4-pack),2,2.99,09/26/19 18:52,"859 Hickory St, Los Angeles, CA 90001" +256926,Lightning Charging Cable,1,14.95,09/10/19 23:16,"513 North St, San Francisco, CA 94016" +256927,20in Monitor,1,109.99,09/18/19 12:34,"535 Highland St, San Francisco, CA 94016" +256928,USB-C Charging Cable,1,11.95,09/30/19 17:15,"816 1st St, Seattle, WA 98101" +256929,Flatscreen TV,1,300,09/07/19 13:10,"508 Adams St, San Francisco, CA 94016" +256930,Lightning Charging Cable,1,14.95,09/04/19 16:30,"703 Spruce St, Los Angeles, CA 90001" +256931,27in FHD Monitor,1,149.99,09/03/19 13:57,"342 Main St, Boston, MA 02215" +256932,AA Batteries (4-pack),1,3.84,09/18/19 08:48,"764 North St, Seattle, WA 98101" +256933,USB-C Charging Cable,1,11.95,09/18/19 05:30,"180 2nd St, Boston, MA 02215" +256934,Bose SoundSport Headphones,1,99.99,09/28/19 21:38,"476 Hickory St, New York City, NY 10001" +256935,Bose SoundSport Headphones,1,99.99,09/18/19 14:57,"724 Highland St, Austin, TX 73301" +256936,Bose SoundSport Headphones,1,99.99,09/05/19 06:36,"600 Forest St, San Francisco, CA 94016" +256937,AAA Batteries (4-pack),2,2.99,09/11/19 16:55,"655 Church St, Atlanta, GA 30301" +256938,Apple Airpods Headphones,1,150,09/01/19 18:29,"923 4th St, Seattle, WA 98101" +256939,20in Monitor,1,109.99,09/11/19 19:36,"284 Hill St, San Francisco, CA 94016" +256940,Apple Airpods Headphones,1,150,09/13/19 13:07,"229 12th St, Los Angeles, CA 90001" +256941,Macbook Pro Laptop,1,1700,09/22/19 17:49,"464 Hickory St, Austin, TX 73301" +256942,Wired Headphones,1,11.99,09/28/19 00:11,"350 13th St, New York City, NY 10001" +256943,27in 4K Gaming Monitor,1,389.99,09/07/19 10:15,"393 11th St, Portland, ME 04101" +256944,20in Monitor,1,109.99,09/19/19 16:58,"758 4th St, Austin, TX 73301" +256945,Bose SoundSport Headphones,1,99.99,09/26/19 09:20,"903 Cedar St, Portland, ME 04101" +256946,USB-C Charging Cable,1,11.95,09/11/19 12:50,"299 Adams St, Austin, TX 73301" +256947,AAA Batteries (4-pack),1,2.99,09/11/19 10:04,"628 Pine St, Boston, MA 02215" +256948,AAA Batteries (4-pack),2,2.99,09/16/19 12:13,"54 Johnson St, Atlanta, GA 30301" +256949,Lightning Charging Cable,1,14.95,09/09/19 10:11,"566 Pine St, Austin, TX 73301" +256949,Apple Airpods Headphones,1,150,09/09/19 10:11,"566 Pine St, Austin, TX 73301" +256950,Bose SoundSport Headphones,1,99.99,09/01/19 11:27,"759 Wilson St, Atlanta, GA 30301" +256951,AAA Batteries (4-pack),1,2.99,09/24/19 06:46,"298 8th St, San Francisco, CA 94016" +256952,iPhone,1,700,09/08/19 08:34,"124 Lakeview St, San Francisco, CA 94016" +256952,Apple Airpods Headphones,1,150,09/08/19 08:34,"124 Lakeview St, San Francisco, CA 94016" +256953,Apple Airpods Headphones,1,150,09/09/19 15:24,"224 Walnut St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +256954,AA Batteries (4-pack),1,3.84,09/26/19 23:55,"28 Main St, New York City, NY 10001" +256955,Apple Airpods Headphones,1,150,09/04/19 23:20,"541 6th St, Austin, TX 73301" +256956,20in Monitor,1,109.99,09/17/19 08:41,"926 River St, Seattle, WA 98101" +256956,USB-C Charging Cable,1,11.95,09/17/19 08:41,"926 River St, Seattle, WA 98101" +256957,AA Batteries (4-pack),4,3.84,09/10/19 23:52,"897 Washington St, San Francisco, CA 94016" +256958,AAA Batteries (4-pack),1,2.99,09/01/19 09:35,"10 Jackson St, New York City, NY 10001" +256959,Wired Headphones,2,11.99,09/02/19 10:56,"853 Johnson St, Los Angeles, CA 90001" +256960,Wired Headphones,1,11.99,09/04/19 13:48,"43 7th St, Austin, TX 73301" +256961,Lightning Charging Cable,1,14.95,09/05/19 19:20,"830 12th St, Dallas, TX 75001" +256962,Wired Headphones,1,11.99,09/25/19 15:08,"916 Madison St, San Francisco, CA 94016" +256963,Apple Airpods Headphones,1,150,09/04/19 01:09,"804 Elm St, Los Angeles, CA 90001" +256964,AAA Batteries (4-pack),2,2.99,09/13/19 12:32,"845 Dogwood St, Dallas, TX 75001" +256965,AA Batteries (4-pack),1,3.84,09/26/19 18:30,"486 2nd St, Los Angeles, CA 90001" +256966,AAA Batteries (4-pack),1,2.99,09/20/19 11:04,"374 Ridge St, Los Angeles, CA 90001" +256967,27in 4K Gaming Monitor,1,389.99,09/21/19 13:30,"646 Jefferson St, San Francisco, CA 94016" +256968,27in 4K Gaming Monitor,1,389.99,09/25/19 18:39,"181 11th St, San Francisco, CA 94016" +256969,USB-C Charging Cable,1,11.95,09/24/19 20:48,"761 Sunset St, San Francisco, CA 94016" +256970,iPhone,1,700,09/02/19 20:36,"900 Sunset St, Los Angeles, CA 90001" +256971,iPhone,1,700,09/02/19 11:30,"373 Sunset St, Portland, OR 97035" +256972,Flatscreen TV,1,300,09/29/19 15:33,"390 Pine St, Atlanta, GA 30301" +256973,AAA Batteries (4-pack),1,2.99,09/12/19 19:11,"83 11th St, New York City, NY 10001" +256974,27in 4K Gaming Monitor,1,389.99,09/16/19 20:32,"400 11th St, Dallas, TX 75001" +256975,LG Dryer,1,600.0,09/06/19 11:44,"775 Washington St, Dallas, TX 75001" +256976,USB-C Charging Cable,1,11.95,09/01/19 18:25,"958 1st St, Seattle, WA 98101" +256977,20in Monitor,1,109.99,09/25/19 15:05,"704 8th St, San Francisco, CA 94016" +256978,USB-C Charging Cable,1,11.95,09/25/19 11:30,"751 Washington St, San Francisco, CA 94016" +256979,Lightning Charging Cable,1,14.95,09/14/19 12:30,"98 11th St, San Francisco, CA 94016" +256980,Lightning Charging Cable,1,14.95,09/02/19 13:53,"835 5th St, San Francisco, CA 94016" +256981,AAA Batteries (4-pack),2,2.99,09/10/19 09:21,"783 5th St, San Francisco, CA 94016" +256982,ThinkPad Laptop,1,999.99,09/23/19 12:08,"916 Highland St, Dallas, TX 75001" +256983,Apple Airpods Headphones,1,150,09/23/19 05:56,"357 Park St, San Francisco, CA 94016" +256984,AA Batteries (4-pack),1,3.84,09/02/19 13:43,"52 13th St, San Francisco, CA 94016" +256985,AA Batteries (4-pack),3,3.84,09/16/19 22:29,"197 Cedar St, Los Angeles, CA 90001" +256986,Bose SoundSport Headphones,1,99.99,09/18/19 22:35,"471 Jackson St, New York City, NY 10001" +256987,AAA Batteries (4-pack),1,2.99,09/30/19 13:47,"319 Cherry St, San Francisco, CA 94016" +256988,Wired Headphones,1,11.99,09/13/19 01:46,"655 5th St, San Francisco, CA 94016" +256989,USB-C Charging Cable,1,11.95,09/30/19 11:44,"309 Cherry St, Seattle, WA 98101" +256990,AA Batteries (4-pack),1,3.84,09/05/19 18:09,"919 2nd St, New York City, NY 10001" +256991,Macbook Pro Laptop,1,1700,09/18/19 10:47,"126 5th St, San Francisco, CA 94016" +256992,27in FHD Monitor,1,149.99,09/28/19 19:39,"573 6th St, San Francisco, CA 94016" +256993,27in FHD Monitor,1,149.99,09/13/19 08:18,"31 Main St, Los Angeles, CA 90001" +256994,iPhone,1,700,09/30/19 21:40,"609 Maple St, Los Angeles, CA 90001" +256994,Lightning Charging Cable,1,14.95,09/30/19 21:40,"609 Maple St, Los Angeles, CA 90001" +256995,Bose SoundSport Headphones,1,99.99,09/07/19 19:15,"616 Cherry St, San Francisco, CA 94016" +256996,AAA Batteries (4-pack),2,2.99,09/04/19 14:01,"352 Maple St, Boston, MA 02215" +256997,Lightning Charging Cable,1,14.95,09/20/19 18:53,"746 Hill St, Austin, TX 73301" +256998,27in 4K Gaming Monitor,1,389.99,09/09/19 18:45,"830 Ridge St, Los Angeles, CA 90001" +256999,20in Monitor,1,109.99,09/03/19 19:14,"176 Hickory St, San Francisco, CA 94016" +257000,AA Batteries (4-pack),1,3.84,09/12/19 16:28,"327 Lake St, Portland, OR 97035" +257001,27in FHD Monitor,1,149.99,09/26/19 10:03,"247 Highland St, Austin, TX 73301" +257002,AA Batteries (4-pack),1,3.84,09/05/19 22:18,"442 Chestnut St, Portland, OR 97035" +257003,Wired Headphones,1,11.99,09/05/19 23:41,"857 Main St, Atlanta, GA 30301" +257004,AA Batteries (4-pack),1,3.84,09/26/19 10:53,"849 Hill St, San Francisco, CA 94016" +257005,27in FHD Monitor,1,149.99,09/24/19 22:55,"308 North St, San Francisco, CA 94016" +257006,AAA Batteries (4-pack),2,2.99,09/05/19 00:56,"674 Main St, Los Angeles, CA 90001" +257007,Wired Headphones,1,11.99,09/20/19 12:42,"430 6th St, Boston, MA 02215" +257008,Flatscreen TV,1,300,09/16/19 19:09,"349 South St, Austin, TX 73301" +257009,iPhone,1,700,09/01/19 11:13,"80 Sunset St, San Francisco, CA 94016" +257010,Wired Headphones,1,11.99,09/20/19 17:18,"387 Washington St, Dallas, TX 75001" +257011,Apple Airpods Headphones,1,150,09/13/19 22:06,"712 Spruce St, New York City, NY 10001" +257012,Google Phone,1,600,09/02/19 19:19,"747 14th St, Atlanta, GA 30301" +257013,34in Ultrawide Monitor,1,379.99,09/23/19 18:36,"440 Park St, Atlanta, GA 30301" +257014,Lightning Charging Cable,1,14.95,09/16/19 02:08,"690 Center St, Atlanta, GA 30301" +257015,20in Monitor,1,109.99,09/26/19 16:48,"443 Church St, Boston, MA 02215" +257016,Flatscreen TV,1,300,09/01/19 15:00,"341 11th St, New York City, NY 10001" +257017,Google Phone,1,600,09/24/19 22:19,"929 Main St, Boston, MA 02215" +257018,AAA Batteries (4-pack),1,2.99,09/16/19 10:58,"207 Main St, Seattle, WA 98101" +257019,Lightning Charging Cable,1,14.95,09/16/19 22:40,"203 South St, San Francisco, CA 94016" +257020,USB-C Charging Cable,1,11.95,09/15/19 07:18,"300 Park St, San Francisco, CA 94016" +257021,Lightning Charging Cable,1,14.95,09/25/19 08:59,"86 Jefferson St, Boston, MA 02215" +257022,iPhone,1,700,09/18/19 14:23,"638 Park St, San Francisco, CA 94016" +257023,USB-C Charging Cable,1,11.95,09/11/19 22:00,"691 Pine St, New York City, NY 10001" +257024,Apple Airpods Headphones,1,150,09/01/19 22:27,"434 13th St, New York City, NY 10001" +257025,USB-C Charging Cable,1,11.95,09/30/19 18:50,"396 Madison St, San Francisco, CA 94016" +257026,Bose SoundSport Headphones,1,99.99,09/01/19 15:40,"696 7th St, San Francisco, CA 94016" +257027,27in 4K Gaming Monitor,1,389.99,09/12/19 20:28,"388 Johnson St, San Francisco, CA 94016" +257028,Google Phone,1,600,09/08/19 16:22,"288 Church St, Boston, MA 02215" +257029,AAA Batteries (4-pack),1,2.99,09/10/19 09:12,"765 Hill St, Atlanta, GA 30301" +257030,Wired Headphones,1,11.99,09/23/19 11:54,"973 12th St, Los Angeles, CA 90001" +257031,AA Batteries (4-pack),1,3.84,09/27/19 08:17,"652 Jefferson St, Seattle, WA 98101" +257032,AAA Batteries (4-pack),1,2.99,09/18/19 22:24,"88 7th St, Seattle, WA 98101" +257033,Apple Airpods Headphones,1,150,09/16/19 20:50,"896 Maple St, San Francisco, CA 94016" +257034,Flatscreen TV,1,300,09/23/19 10:53,"66 Lakeview St, Austin, TX 73301" +257035,Wired Headphones,1,11.99,09/08/19 18:14,"182 Elm St, Atlanta, GA 30301" +257036,34in Ultrawide Monitor,1,379.99,09/08/19 22:40,"997 13th St, Dallas, TX 75001" +257037,AA Batteries (4-pack),1,3.84,09/28/19 01:28,"937 Maple St, San Francisco, CA 94016" +257038,USB-C Charging Cable,2,11.95,09/14/19 04:04,"525 Adams St, San Francisco, CA 94016" +257039,iPhone,1,700,09/07/19 08:02,"964 Maple St, San Francisco, CA 94016" +257039,Lightning Charging Cable,1,14.95,09/07/19 08:02,"964 Maple St, San Francisco, CA 94016" +257040,Wired Headphones,1,11.99,09/07/19 18:52,"870 Park St, Portland, ME 04101" +257041,AAA Batteries (4-pack),1,2.99,09/01/19 14:58,"599 South St, New York City, NY 10001" +257042,34in Ultrawide Monitor,1,379.99,09/07/19 17:56,"757 West St, San Francisco, CA 94016" +257043,Lightning Charging Cable,1,14.95,09/16/19 11:33,"419 9th St, Atlanta, GA 30301" +257044,Wired Headphones,1,11.99,09/11/19 12:30,"608 Park St, San Francisco, CA 94016" +257045,USB-C Charging Cable,1,11.95,09/28/19 13:39,"252 Forest St, Dallas, TX 75001" +257046,Bose SoundSport Headphones,1,99.99,09/11/19 22:04,"389 4th St, Los Angeles, CA 90001" +257047,Lightning Charging Cable,1,14.95,09/19/19 09:58,"577 Maple St, Los Angeles, CA 90001" +257048,AA Batteries (4-pack),1,3.84,09/28/19 07:53,"817 Walnut St, San Francisco, CA 94016" +257049,Apple Airpods Headphones,1,150,09/12/19 10:21,"226 Meadow St, San Francisco, CA 94016" +257050,AA Batteries (4-pack),1,3.84,09/02/19 21:04,"543 9th St, Dallas, TX 75001" +257051,Lightning Charging Cable,1,14.95,09/25/19 09:35,"731 9th St, Atlanta, GA 30301" +257052,Flatscreen TV,1,300,09/22/19 10:05,"904 12th St, Atlanta, GA 30301" +257053,AAA Batteries (4-pack),1,2.99,09/09/19 20:24,"319 Lincoln St, San Francisco, CA 94016" +257054,Bose SoundSport Headphones,1,99.99,09/30/19 11:57,"294 Madison St, Austin, TX 73301" +257055,iPhone,1,700,09/25/19 14:52,"32 13th St, Los Angeles, CA 90001" +257056,ThinkPad Laptop,1,999.99,09/10/19 17:07,"911 1st St, Portland, OR 97035" +257057,ThinkPad Laptop,1,999.99,09/23/19 14:34,"27 Meadow St, San Francisco, CA 94016" +257058,Lightning Charging Cable,2,14.95,09/08/19 09:50,"303 Forest St, New York City, NY 10001" +257058,Macbook Pro Laptop,1,1700,09/08/19 09:50,"303 Forest St, New York City, NY 10001" +257059,Google Phone,2,600,09/29/19 12:26,"796 13th St, San Francisco, CA 94016" +257060,AAA Batteries (4-pack),1,2.99,09/19/19 12:06,"499 4th St, New York City, NY 10001" +257061,27in FHD Monitor,1,149.99,09/16/19 12:34,"8 14th St, Portland, ME 04101" +257062,Bose SoundSport Headphones,1,99.99,09/22/19 17:57,"819 Cedar St, San Francisco, CA 94016" +257062,Bose SoundSport Headphones,1,99.99,09/22/19 17:57,"819 Cedar St, San Francisco, CA 94016" +257063,iPhone,1,700,09/12/19 13:44,"829 Spruce St, Los Angeles, CA 90001" +257064,AAA Batteries (4-pack),2,2.99,09/11/19 23:23,"398 Willow St, Dallas, TX 75001" +257065,Macbook Pro Laptop,1,1700,09/02/19 10:27,"985 2nd St, Atlanta, GA 30301" +257066,USB-C Charging Cable,1,11.95,09/10/19 21:34,"835 14th St, Los Angeles, CA 90001" +257067,AAA Batteries (4-pack),3,2.99,09/29/19 21:45,"219 Meadow St, San Francisco, CA 94016" +257068,AAA Batteries (4-pack),2,2.99,09/26/19 12:59,"880 West St, New York City, NY 10001" +257069,Macbook Pro Laptop,1,1700,09/03/19 09:38,"261 Lincoln St, New York City, NY 10001" +257070,AA Batteries (4-pack),1,3.84,09/29/19 10:52,"795 Center St, San Francisco, CA 94016" +257071,34in Ultrawide Monitor,1,379.99,09/04/19 14:53,"758 Washington St, Los Angeles, CA 90001" +257072,Bose SoundSport Headphones,1,99.99,09/25/19 11:09,"369 Washington St, Atlanta, GA 30301" +257073,Lightning Charging Cable,1,14.95,09/01/19 21:13,"362 River St, San Francisco, CA 94016" +257074,AA Batteries (4-pack),1,3.84,09/29/19 10:38,"745 Lakeview St, Austin, TX 73301" +257075,AAA Batteries (4-pack),1,2.99,09/30/19 19:12,"190 Adams St, New York City, NY 10001" +257076,27in FHD Monitor,1,149.99,09/12/19 16:55,"782 Center St, San Francisco, CA 94016" +257077,AA Batteries (4-pack),1,3.84,09/02/19 08:19,"847 Spruce St, San Francisco, CA 94016" +257078,Apple Airpods Headphones,1,150,09/12/19 17:36,"429 Ridge St, San Francisco, CA 94016" +257079,Lightning Charging Cable,1,14.95,09/23/19 20:56,"418 Sunset St, San Francisco, CA 94016" +257080,AA Batteries (4-pack),2,3.84,09/25/19 22:20,"672 South St, Austin, TX 73301" +257081,Wired Headphones,1,11.99,09/18/19 10:44,"603 Main St, San Francisco, CA 94016" +257082,Google Phone,1,600,09/20/19 23:24,"681 Lake St, Dallas, TX 75001" +257082,USB-C Charging Cable,1,11.95,09/20/19 23:24,"681 Lake St, Dallas, TX 75001" +257083,Flatscreen TV,1,300,09/17/19 15:44,"348 Madison St, San Francisco, CA 94016" +257084,AA Batteries (4-pack),1,3.84,09/15/19 22:40,"308 1st St, San Francisco, CA 94016" +257085,AAA Batteries (4-pack),1,2.99,09/22/19 07:58,"679 Sunset St, San Francisco, CA 94016" +257086,Wired Headphones,1,11.99,09/21/19 21:15,"267 Lake St, Boston, MA 02215" +257087,Bose SoundSport Headphones,1,99.99,09/08/19 13:13,"336 Hill St, San Francisco, CA 94016" +257087,34in Ultrawide Monitor,1,379.99,09/08/19 13:13,"336 Hill St, San Francisco, CA 94016" +257088,AAA Batteries (4-pack),1,2.99,09/22/19 10:33,"610 Ridge St, New York City, NY 10001" +257089,27in 4K Gaming Monitor,1,389.99,09/18/19 18:03,"839 13th St, Los Angeles, CA 90001" +257090,ThinkPad Laptop,1,999.99,09/06/19 10:07,"918 Lincoln St, Seattle, WA 98101" +257091,USB-C Charging Cable,1,11.95,09/07/19 16:37,"938 Wilson St, Boston, MA 02215" +257092,USB-C Charging Cable,1,11.95,09/16/19 22:14,"769 Hickory St, Seattle, WA 98101" +257093,Wired Headphones,1,11.99,09/12/19 01:28,"680 South St, San Francisco, CA 94016" +257094,AAA Batteries (4-pack),3,2.99,09/05/19 09:52,"226 2nd St, Dallas, TX 75001" +257095,AA Batteries (4-pack),1,3.84,09/04/19 00:18,"690 Main St, Atlanta, GA 30301" +257096,ThinkPad Laptop,1,999.99,09/29/19 12:21,"321 Meadow St, San Francisco, CA 94016" +257097,AA Batteries (4-pack),1,3.84,09/19/19 14:25,"18 12th St, Los Angeles, CA 90001" +257098,20in Monitor,1,109.99,09/13/19 21:32,"292 Jackson St, Austin, TX 73301" +257099,Wired Headphones,1,11.99,09/23/19 12:10,"48 5th St, Dallas, TX 75001" +257100,Apple Airpods Headphones,1,150,09/13/19 20:44,"797 Willow St, San Francisco, CA 94016" +257101,Flatscreen TV,1,300,09/03/19 08:53,"983 Sunset St, Boston, MA 02215" +257102,Apple Airpods Headphones,1,150,09/25/19 13:06,"829 Ridge St, New York City, NY 10001" +257103,Lightning Charging Cable,1,14.95,09/10/19 18:20,"410 Lakeview St, New York City, NY 10001" +257104,iPhone,1,700,09/22/19 11:18,"89 Main St, Boston, MA 02215" +257105,Wired Headphones,1,11.99,09/11/19 11:21,"514 6th St, Los Angeles, CA 90001" +257106,USB-C Charging Cable,2,11.95,09/22/19 15:43,"626 Lincoln St, Boston, MA 02215" +257107,USB-C Charging Cable,1,11.95,09/05/19 11:26,"320 7th St, San Francisco, CA 94016" +257108,AA Batteries (4-pack),1,3.84,09/25/19 22:33,"654 11th St, San Francisco, CA 94016" +257109,USB-C Charging Cable,1,11.95,09/27/19 16:15,"840 Elm St, Boston, MA 02215" +257110,Bose SoundSport Headphones,1,99.99,09/06/19 13:11,"900 Chestnut St, Atlanta, GA 30301" +257111,Bose SoundSport Headphones,1,99.99,09/01/19 12:11,"603 Center St, Atlanta, GA 30301" +257112,USB-C Charging Cable,1,11.95,09/18/19 22:57,"23 Elm St, Boston, MA 02215" +257113,Apple Airpods Headphones,1,150,09/04/19 15:59,"848 5th St, Atlanta, GA 30301" +257114,Lightning Charging Cable,1,14.95,09/17/19 15:33,"722 Adams St, San Francisco, CA 94016" +257115,Macbook Pro Laptop,1,1700,09/04/19 18:38,"394 Highland St, Los Angeles, CA 90001" +257116,Wired Headphones,1,11.99,09/15/19 21:23,"350 Washington St, Dallas, TX 75001" +257117,Wired Headphones,2,11.99,09/10/19 03:25,"147 Dogwood St, Los Angeles, CA 90001" +257117,Wired Headphones,1,11.99,09/10/19 03:25,"147 Dogwood St, Los Angeles, CA 90001" +257118,Apple Airpods Headphones,1,150,09/30/19 21:38,"377 2nd St, Los Angeles, CA 90001" +257119,Bose SoundSport Headphones,1,99.99,09/16/19 16:17,"629 Hill St, Los Angeles, CA 90001" +257120,Lightning Charging Cable,1,14.95,09/16/19 15:59,"971 Johnson St, Los Angeles, CA 90001" +257121,34in Ultrawide Monitor,1,379.99,09/06/19 20:57,"31 Sunset St, Boston, MA 02215" +257122,AA Batteries (4-pack),1,3.84,09/15/19 00:47,"695 Park St, Boston, MA 02215" +257123,AAA Batteries (4-pack),1,2.99,09/13/19 20:44,"529 Washington St, Seattle, WA 98101" +257124,AA Batteries (4-pack),1,3.84,09/12/19 17:51,"136 Wilson St, Seattle, WA 98101" +257125,Lightning Charging Cable,1,14.95,09/16/19 19:42,"301 West St, Dallas, TX 75001" +257126,Bose SoundSport Headphones,1,99.99,09/24/19 11:00,"907 Cherry St, Austin, TX 73301" +257127,ThinkPad Laptop,1,999.99,09/13/19 14:52,"545 9th St, Boston, MA 02215" +257128,AA Batteries (4-pack),1,3.84,09/17/19 20:14,"761 8th St, San Francisco, CA 94016" +257129,27in 4K Gaming Monitor,1,389.99,09/08/19 16:52,"267 4th St, Los Angeles, CA 90001" +257130,USB-C Charging Cable,1,11.95,09/02/19 17:00,"206 7th St, Austin, TX 73301" +257131,Apple Airpods Headphones,1,150,09/09/19 14:26,"205 7th St, Austin, TX 73301" +257132,AAA Batteries (4-pack),1,2.99,09/18/19 07:22,"157 Highland St, San Francisco, CA 94016" +257133,Macbook Pro Laptop,1,1700,09/22/19 13:48,"683 Highland St, Atlanta, GA 30301" +257134,Apple Airpods Headphones,1,150,09/30/19 11:13,"354 9th St, San Francisco, CA 94016" +257135,20in Monitor,1,109.99,09/02/19 11:32,"181 Forest St, Portland, OR 97035" +257136,Wired Headphones,2,11.99,09/09/19 23:34,"585 Church St, San Francisco, CA 94016" +257137,USB-C Charging Cable,1,11.95,09/10/19 16:21,"104 11th St, San Francisco, CA 94016" +257138,20in Monitor,1,109.99,09/11/19 19:05,"646 Main St, San Francisco, CA 94016" +257139,Apple Airpods Headphones,1,150,09/13/19 19:16,"187 Wilson St, Portland, OR 97035" +257139,USB-C Charging Cable,1,11.95,09/13/19 19:16,"187 Wilson St, Portland, OR 97035" +257140,Bose SoundSport Headphones,1,99.99,09/15/19 12:34,"151 Jackson St, Boston, MA 02215" +257141,AAA Batteries (4-pack),1,2.99,09/07/19 08:01,"741 11th St, Austin, TX 73301" +257142,Google Phone,1,600,09/29/19 21:37,"806 Walnut St, New York City, NY 10001" +257142,Wired Headphones,1,11.99,09/29/19 21:37,"806 Walnut St, New York City, NY 10001" +257143,Lightning Charging Cable,1,14.95,09/20/19 09:17,"663 Washington St, New York City, NY 10001" +257144,ThinkPad Laptop,1,999.99,09/07/19 02:24,"115 Chestnut St, Atlanta, GA 30301" +257145,27in FHD Monitor,1,149.99,09/29/19 11:54,"446 West St, Los Angeles, CA 90001" +257146,USB-C Charging Cable,1,11.95,09/11/19 08:18,"441 Pine St, San Francisco, CA 94016" +257147,27in FHD Monitor,1,149.99,09/13/19 17:25,"813 West St, New York City, NY 10001" +257148,Apple Airpods Headphones,1,150,09/03/19 13:47,"678 Lake St, San Francisco, CA 94016" +257149,Bose SoundSport Headphones,1,99.99,09/13/19 22:26,"240 11th St, New York City, NY 10001" +257150,Lightning Charging Cable,1,14.95,09/21/19 08:01,"305 Sunset St, Portland, OR 97035" +257151,27in FHD Monitor,1,149.99,09/15/19 20:15,"763 1st St, Los Angeles, CA 90001" +257152,AA Batteries (4-pack),1,3.84,09/19/19 13:15,"92 Madison St, San Francisco, CA 94016" +257153,AAA Batteries (4-pack),1,2.99,09/18/19 12:54,"669 Forest St, San Francisco, CA 94016" +257154,USB-C Charging Cable,1,11.95,09/08/19 21:50,"528 Spruce St, Dallas, TX 75001" +257155,Wired Headphones,1,11.99,09/04/19 17:32,"57 Johnson St, Portland, OR 97035" +257156,Wired Headphones,1,11.99,09/21/19 09:14,"718 Church St, Atlanta, GA 30301" +257157,AAA Batteries (4-pack),2,2.99,09/21/19 14:34,"340 9th St, Portland, OR 97035" +257158,Apple Airpods Headphones,1,150,09/12/19 19:44,"922 4th St, Boston, MA 02215" +257159,Lightning Charging Cable,1,14.95,09/11/19 17:09,"143 12th St, San Francisco, CA 94016" +257160,USB-C Charging Cable,1,11.95,09/14/19 08:40,"540 Madison St, New York City, NY 10001" +257161,AA Batteries (4-pack),2,3.84,09/06/19 06:58,"160 5th St, Atlanta, GA 30301" +257162,USB-C Charging Cable,1,11.95,09/18/19 22:18,"852 12th St, San Francisco, CA 94016" +257163,iPhone,1,700,09/11/19 13:23,"690 10th St, Los Angeles, CA 90001" +257163,Wired Headphones,1,11.99,09/11/19 13:23,"690 10th St, Los Angeles, CA 90001" +257164,34in Ultrawide Monitor,1,379.99,09/06/19 14:41,"294 Elm St, San Francisco, CA 94016" +257165,AA Batteries (4-pack),2,3.84,09/15/19 13:38,"546 Hill St, San Francisco, CA 94016" +257166,AAA Batteries (4-pack),1,2.99,09/13/19 11:06,"575 Cedar St, Seattle, WA 98101" +257167,Bose SoundSport Headphones,1,99.99,09/09/19 21:54,"480 Cherry St, San Francisco, CA 94016" +257168,AAA Batteries (4-pack),1,2.99,09/05/19 13:40,"982 4th St, San Francisco, CA 94016" +257169,Apple Airpods Headphones,1,150,09/13/19 14:57,"525 7th St, San Francisco, CA 94016" +257170,27in 4K Gaming Monitor,1,389.99,09/25/19 17:21,"355 Sunset St, San Francisco, CA 94016" +257171,20in Monitor,1,109.99,09/28/19 13:32,"508 Willow St, Boston, MA 02215" +257172,iPhone,1,700,09/27/19 11:50,"956 West St, Los Angeles, CA 90001" +257173,Wired Headphones,1,11.99,09/15/19 22:53,"146 Pine St, Seattle, WA 98101" +257174,Lightning Charging Cable,1,14.95,09/03/19 12:25,"275 Cherry St, New York City, NY 10001" +257175,AAA Batteries (4-pack),1,2.99,09/09/19 22:30,"20 4th St, Los Angeles, CA 90001" +257176,Macbook Pro Laptop,1,1700,09/08/19 19:01,"257 Ridge St, Atlanta, GA 30301" +257177,AA Batteries (4-pack),1,3.84,09/04/19 13:51,"739 Pine St, San Francisco, CA 94016" +,,,,, +257178,27in 4K Gaming Monitor,1,389.99,09/26/19 18:11,"251 12th St, Los Angeles, CA 90001" +257179,AA Batteries (4-pack),1,3.84,09/12/19 11:31,"881 Walnut St, Seattle, WA 98101" +257180,27in FHD Monitor,1,149.99,09/24/19 11:07,"606 Forest St, Portland, ME 04101" +257181,Wired Headphones,1,11.99,09/15/19 23:57,"18 Elm St, Los Angeles, CA 90001" +257182,LG Dryer,1,600.0,09/03/19 09:11,"956 Hickory St, Los Angeles, CA 90001" +257183,AAA Batteries (4-pack),1,2.99,09/03/19 12:13,"203 Hill St, San Francisco, CA 94016" +257184,USB-C Charging Cable,1,11.95,09/14/19 15:46,"43 Hill St, New York City, NY 10001" +257185,USB-C Charging Cable,1,11.95,09/11/19 18:39,"547 Jackson St, New York City, NY 10001" +257186,27in 4K Gaming Monitor,1,389.99,09/09/19 08:41,"791 14th St, San Francisco, CA 94016" +257187,20in Monitor,1,109.99,09/09/19 16:11,"456 Cedar St, San Francisco, CA 94016" +257188,AAA Batteries (4-pack),1,2.99,09/28/19 16:29,"297 10th St, Los Angeles, CA 90001" +257189,AAA Batteries (4-pack),1,2.99,09/07/19 20:50,"533 Cherry St, Los Angeles, CA 90001" +257190,Lightning Charging Cable,2,14.95,09/28/19 12:32,"705 Church St, Dallas, TX 75001" +257191,USB-C Charging Cable,1,11.95,09/08/19 20:21,"598 7th St, Seattle, WA 98101" +257192,Bose SoundSport Headphones,1,99.99,09/07/19 14:46,"408 Dogwood St, Austin, TX 73301" +257193,AA Batteries (4-pack),1,3.84,09/01/19 08:56,"490 Willow St, San Francisco, CA 94016" +257194,AAA Batteries (4-pack),1,2.99,09/26/19 19:11,"865 10th St, Dallas, TX 75001" +257195,iPhone,1,700,09/06/19 17:06,"672 Highland St, New York City, NY 10001" +257196,USB-C Charging Cable,1,11.95,09/09/19 11:46,"611 Ridge St, Boston, MA 02215" +257197,Lightning Charging Cable,1,14.95,09/19/19 08:48,"131 Meadow St, New York City, NY 10001" +257198,Lightning Charging Cable,1,14.95,09/16/19 19:25,"91 10th St, Austin, TX 73301" +257199,Lightning Charging Cable,1,14.95,09/24/19 12:12,"117 Ridge St, Boston, MA 02215" +257200,20in Monitor,1,109.99,09/10/19 20:31,"949 Lincoln St, Seattle, WA 98101" +257201,AA Batteries (4-pack),1,3.84,09/04/19 14:27,"77 Wilson St, Seattle, WA 98101" +257202,Flatscreen TV,1,300,09/03/19 23:07,"210 Lakeview St, Seattle, WA 98101" +257203,ThinkPad Laptop,1,999.99,09/25/19 15:46,"595 Jefferson St, Dallas, TX 75001" +257204,Google Phone,1,600,09/28/19 00:04,"324 Hickory St, Seattle, WA 98101" +257204,AA Batteries (4-pack),1,3.84,09/28/19 00:04,"324 Hickory St, Seattle, WA 98101" +257205,AAA Batteries (4-pack),1,2.99,09/02/19 12:24,"39 9th St, Seattle, WA 98101" +257206,34in Ultrawide Monitor,1,379.99,09/14/19 13:33,"597 Chestnut St, Austin, TX 73301" +257207,Lightning Charging Cable,1,14.95,09/27/19 10:08,"28 6th St, Los Angeles, CA 90001" +257208,AA Batteries (4-pack),2,3.84,09/21/19 13:32,"100 Hill St, San Francisco, CA 94016" +257209,Wired Headphones,1,11.99,09/22/19 10:33,"253 Lake St, Los Angeles, CA 90001" +257210,iPhone,1,700,09/28/19 17:07,"205 Jefferson St, Los Angeles, CA 90001" +257211,Apple Airpods Headphones,1,150,09/13/19 21:51,"163 13th St, Dallas, TX 75001" +257212,Wired Headphones,1,11.99,09/08/19 11:28,"175 Cherry St, San Francisco, CA 94016" +257213,Bose SoundSport Headphones,1,99.99,09/28/19 12:01,"483 Ridge St, Seattle, WA 98101" +257214,ThinkPad Laptop,1,999.99,09/03/19 17:42,"475 14th St, Dallas, TX 75001" +257215,Bose SoundSport Headphones,1,99.99,09/13/19 19:31,"622 5th St, Los Angeles, CA 90001" +257216,USB-C Charging Cable,1,11.95,09/14/19 15:33,"662 7th St, San Francisco, CA 94016" +257217,Macbook Pro Laptop,1,1700,09/07/19 08:00,"629 Wilson St, Los Angeles, CA 90001" +257218,Lightning Charging Cable,1,14.95,09/02/19 11:23,"221 Jackson St, Los Angeles, CA 90001" +257219,USB-C Charging Cable,1,11.95,09/15/19 16:55,"246 West St, San Francisco, CA 94016" +257220,34in Ultrawide Monitor,1,379.99,09/24/19 17:06,"618 Jefferson St, Atlanta, GA 30301" +257221,Wired Headphones,1,11.99,09/11/19 12:26,"71 13th St, Atlanta, GA 30301" +257222,USB-C Charging Cable,1,11.95,09/17/19 06:34,"841 Jackson St, New York City, NY 10001" +257223,Lightning Charging Cable,1,14.95,09/08/19 20:47,"757 14th St, Los Angeles, CA 90001" +257224,AA Batteries (4-pack),1,3.84,09/25/19 11:09,"749 Ridge St, Atlanta, GA 30301" +257225,AA Batteries (4-pack),2,3.84,09/10/19 13:26,"43 River St, San Francisco, CA 94016" +257226,Lightning Charging Cable,1,14.95,09/29/19 18:14,"366 Walnut St, San Francisco, CA 94016" +257227,USB-C Charging Cable,1,11.95,09/05/19 13:58,"238 Park St, Los Angeles, CA 90001" +257228,Lightning Charging Cable,1,14.95,09/25/19 17:45,"113 Jefferson St, Boston, MA 02215" +257229,Google Phone,1,600,09/18/19 19:48,"393 Lincoln St, San Francisco, CA 94016" +257230,27in FHD Monitor,1,149.99,09/09/19 23:11,"5 4th St, Dallas, TX 75001" +257231,Flatscreen TV,1,300,09/15/19 20:17,"884 Highland St, San Francisco, CA 94016" +257232,Google Phone,1,600,09/22/19 13:32,"550 Jackson St, San Francisco, CA 94016" +257233,Lightning Charging Cable,1,14.95,09/04/19 12:32,"893 Highland St, Dallas, TX 75001" +257234,AAA Batteries (4-pack),1,2.99,09/01/19 21:48,"116 Jackson St, Portland, OR 97035" +257235,AAA Batteries (4-pack),1,2.99,09/01/19 17:58,"277 6th St, Portland, OR 97035" +,,,,, +257236,Apple Airpods Headphones,1,150,09/15/19 15:27,"590 Lake St, San Francisco, CA 94016" +257237,Lightning Charging Cable,1,14.95,09/17/19 18:21,"789 Meadow St, San Francisco, CA 94016" +257238,Bose SoundSport Headphones,1,99.99,09/18/19 19:45,"702 Ridge St, Atlanta, GA 30301" +257239,27in FHD Monitor,1,149.99,09/21/19 10:38,"810 Cedar St, Dallas, TX 75001" +257240,AAA Batteries (4-pack),1,2.99,09/10/19 22:30,"504 Lincoln St, New York City, NY 10001" +257241,27in FHD Monitor,1,149.99,09/28/19 10:00,"76 Hill St, San Francisco, CA 94016" +257242,27in 4K Gaming Monitor,1,389.99,09/14/19 14:09,"980 2nd St, Seattle, WA 98101" +257243,27in 4K Gaming Monitor,1,389.99,09/02/19 09:11,"138 Willow St, Portland, OR 97035" +257244,AA Batteries (4-pack),4,3.84,09/13/19 22:38,"271 Maple St, New York City, NY 10001" +257245,Wired Headphones,1,11.99,09/12/19 10:41,"993 Jackson St, New York City, NY 10001" +257246,Wired Headphones,1,11.99,09/21/19 12:57,"483 Willow St, Seattle, WA 98101" +257247,Bose SoundSport Headphones,1,99.99,09/24/19 21:16,"591 13th St, Atlanta, GA 30301" +257248,AAA Batteries (4-pack),1,2.99,09/21/19 10:08,"133 1st St, Portland, OR 97035" +257249,ThinkPad Laptop,1,999.99,09/05/19 11:48,"604 Park St, Austin, TX 73301" +257250,27in FHD Monitor,1,149.99,09/06/19 15:06,"810 Cedar St, Dallas, TX 75001" +257251,Apple Airpods Headphones,1,150,09/19/19 23:46,"61 Madison St, Boston, MA 02215" +257252,AAA Batteries (4-pack),1,2.99,09/01/19 13:26,"904 Forest St, Seattle, WA 98101" +257253,Apple Airpods Headphones,1,150,09/28/19 20:00,"617 2nd St, Boston, MA 02215" +257254,27in FHD Monitor,1,149.99,09/06/19 10:25,"780 13th St, San Francisco, CA 94016" +257255,Wired Headphones,1,11.99,09/24/19 14:54,"203 Center St, San Francisco, CA 94016" +257256,USB-C Charging Cable,1,11.95,09/21/19 18:30,"806 Lakeview St, Austin, TX 73301" +257257,Google Phone,1,600,09/10/19 11:44,"771 12th St, Los Angeles, CA 90001" +257258,Wired Headphones,1,11.99,09/21/19 17:21,"761 11th St, Dallas, TX 75001" +257259,Bose SoundSport Headphones,1,99.99,09/12/19 15:41,"254 Johnson St, Austin, TX 73301" +257260,AA Batteries (4-pack),2,3.84,09/02/19 19:55,"445 6th St, San Francisco, CA 94016" +257261,ThinkPad Laptop,1,999.99,09/23/19 10:13,"46 Hickory St, San Francisco, CA 94016" +257262,Macbook Pro Laptop,1,1700,09/30/19 16:55,"312 5th St, Boston, MA 02215" +257263,AA Batteries (4-pack),2,3.84,09/25/19 13:45,"941 2nd St, San Francisco, CA 94016" +257264,Google Phone,1,600,09/19/19 03:04,"75 Dogwood St, Atlanta, GA 30301" +257265,27in 4K Gaming Monitor,1,389.99,09/18/19 16:51,"497 Cedar St, Los Angeles, CA 90001" +257266,Lightning Charging Cable,1,14.95,09/25/19 14:34,"632 South St, Dallas, TX 75001" +257267,20in Monitor,1,109.99,09/17/19 11:26,"658 Johnson St, Boston, MA 02215" +257268,Lightning Charging Cable,1,14.95,09/23/19 01:13,"716 Church St, Portland, OR 97035" +257269,Wired Headphones,1,11.99,09/08/19 08:07,"712 9th St, Los Angeles, CA 90001" +257270,USB-C Charging Cable,1,11.95,09/12/19 16:24,"955 2nd St, Boston, MA 02215" +257271,Wired Headphones,2,11.99,09/05/19 09:32,"234 Jefferson St, New York City, NY 10001" +257272,Bose SoundSport Headphones,1,99.99,09/09/19 02:18,"537 Cedar St, New York City, NY 10001" +257273,USB-C Charging Cable,1,11.95,09/05/19 11:04,"472 Jackson St, San Francisco, CA 94016" +257274,Flatscreen TV,1,300,09/02/19 12:12,"915 Madison St, Seattle, WA 98101" +257275,iPhone,1,700,09/05/19 13:56,"347 Jackson St, Austin, TX 73301" +257276,ThinkPad Laptop,1,999.99,09/15/19 23:18,"181 River St, San Francisco, CA 94016" +257277,AA Batteries (4-pack),1,3.84,09/07/19 08:20,"914 Center St, Boston, MA 02215" +257278,Apple Airpods Headphones,1,150,09/11/19 09:21,"552 Lincoln St, Seattle, WA 98101" +257278,27in FHD Monitor,1,149.99,09/11/19 09:21,"552 Lincoln St, Seattle, WA 98101" +257279,Vareebadd Phone,1,400,09/19/19 21:19,"991 Madison St, Atlanta, GA 30301" +257280,Wired Headphones,1,11.99,09/07/19 23:48,"640 Park St, Seattle, WA 98101" +257281,Wired Headphones,1,11.99,09/14/19 07:52,"562 Johnson St, Austin, TX 73301" +257282,Lightning Charging Cable,1,14.95,09/24/19 19:31,"863 Madison St, San Francisco, CA 94016" +257283,Bose SoundSport Headphones,1,99.99,09/05/19 08:24,"968 Jefferson St, Austin, TX 73301" +257284,AA Batteries (4-pack),1,3.84,09/05/19 13:50,"201 Willow St, Seattle, WA 98101" +257285,AA Batteries (4-pack),1,3.84,09/04/19 18:51,"74 12th St, Seattle, WA 98101" +257286,Bose SoundSport Headphones,1,99.99,09/03/19 18:22,"2 Walnut St, Boston, MA 02215" +257287,Macbook Pro Laptop,1,1700,09/01/19 08:30,"662 Walnut St, Portland, OR 97035" +257288,Lightning Charging Cable,1,14.95,09/07/19 12:56,"530 Meadow St, San Francisco, CA 94016" +257289,AA Batteries (4-pack),2,3.84,09/14/19 19:23,"376 11th St, Los Angeles, CA 90001" +257290,AAA Batteries (4-pack),2,2.99,09/21/19 10:26,"992 Adams St, San Francisco, CA 94016" +257291,Google Phone,1,600,09/20/19 15:30,"411 Washington St, New York City, NY 10001" +257292,20in Monitor,1,109.99,09/26/19 10:19,"411 Willow St, New York City, NY 10001" +257293,Vareebadd Phone,1,400,09/24/19 13:38,"227 13th St, Boston, MA 02215" +257293,USB-C Charging Cable,1,11.95,09/24/19 13:38,"227 13th St, Boston, MA 02215" +257294,Bose SoundSport Headphones,1,99.99,09/13/19 19:23,"874 Main St, Seattle, WA 98101" +257295,Lightning Charging Cable,1,14.95,09/11/19 19:14,"110 Lakeview St, Seattle, WA 98101" +257296,Wired Headphones,1,11.99,09/12/19 02:55,"219 Madison St, San Francisco, CA 94016" +257296,27in FHD Monitor,1,149.99,09/12/19 02:55,"219 Madison St, San Francisco, CA 94016" +257297,Bose SoundSport Headphones,1,99.99,09/03/19 12:07,"553 9th St, Seattle, WA 98101" +257298,27in FHD Monitor,1,149.99,09/20/19 20:26,"160 13th St, Dallas, TX 75001" +257299,USB-C Charging Cable,1,11.95,09/11/19 10:48,"171 River St, Atlanta, GA 30301" +257300,Google Phone,1,600,09/20/19 14:47,"754 Cherry St, New York City, NY 10001" +257301,Wired Headphones,1,11.99,09/20/19 21:34,"370 Dogwood St, Austin, TX 73301" +257302,Lightning Charging Cable,1,14.95,09/13/19 12:42,"826 Center St, Portland, OR 97035" +257303,AAA Batteries (4-pack),2,2.99,09/07/19 02:44,"941 Walnut St, San Francisco, CA 94016" +257304,20in Monitor,1,109.99,09/24/19 10:42,"48 Walnut St, New York City, NY 10001" +257305,Lightning Charging Cable,1,14.95,09/24/19 22:49,"367 11th St, San Francisco, CA 94016" +257306,Google Phone,1,600,09/26/19 10:34,"640 12th St, Los Angeles, CA 90001" +257307,Wired Headphones,1,11.99,09/18/19 08:22,"563 Jackson St, San Francisco, CA 94016" +257308,USB-C Charging Cable,1,11.95,09/08/19 08:02,"240 Adams St, Los Angeles, CA 90001" +257309,USB-C Charging Cable,1,11.95,09/09/19 12:47,"83 Center St, Portland, OR 97035" +257310,27in FHD Monitor,1,149.99,09/22/19 19:10,"820 Sunset St, Boston, MA 02215" +257311,AAA Batteries (4-pack),2,2.99,09/27/19 11:33,"494 Ridge St, Atlanta, GA 30301" +257312,USB-C Charging Cable,1,11.95,09/06/19 18:46,"139 Cherry St, Boston, MA 02215" +257313,AA Batteries (4-pack),1,3.84,09/01/19 15:11,"86 8th St, New York City, NY 10001" +257314,Apple Airpods Headphones,1,150,09/13/19 22:15,"45 Cedar St, San Francisco, CA 94016" +257315,34in Ultrawide Monitor,1,379.99,09/25/19 11:12,"367 Sunset St, Dallas, TX 75001" +257316,27in 4K Gaming Monitor,1,389.99,09/27/19 11:57,"81 Spruce St, Los Angeles, CA 90001" +257317,Wired Headphones,1,11.99,09/24/19 14:34,"177 11th St, San Francisco, CA 94016" +257318,Bose SoundSport Headphones,1,99.99,09/22/19 08:48,"786 6th St, Seattle, WA 98101" +257319,27in FHD Monitor,1,149.99,09/02/19 16:56,"868 Walnut St, Los Angeles, CA 90001" +257320,USB-C Charging Cable,1,11.95,09/03/19 12:23,"648 Chestnut St, Boston, MA 02215" +257321,USB-C Charging Cable,1,11.95,09/20/19 03:59,"674 Wilson St, New York City, NY 10001" +257322,Bose SoundSport Headphones,1,99.99,09/03/19 16:52,"576 Chestnut St, San Francisco, CA 94016" +257323,iPhone,1,700,09/10/19 18:45,"239 Dogwood St, New York City, NY 10001" +257324,27in 4K Gaming Monitor,1,389.99,09/06/19 21:31,"942 Hickory St, New York City, NY 10001" +257325,AAA Batteries (4-pack),2,2.99,09/14/19 11:22,"484 Park St, Boston, MA 02215" +257326,AA Batteries (4-pack),1,3.84,09/01/19 11:32,"242 10th St, Atlanta, GA 30301" +257327,AAA Batteries (4-pack),2,2.99,09/29/19 09:47,"939 Lincoln St, Boston, MA 02215" +257328,Google Phone,1,600,09/01/19 12:41,"803 Cedar St, Dallas, TX 75001" +257329,Lightning Charging Cable,1,14.95,09/26/19 11:35,"998 North St, Dallas, TX 75001" +257330,AAA Batteries (4-pack),1,2.99,09/29/19 22:48,"1 1st St, New York City, NY 10001" +257331,AAA Batteries (4-pack),1,2.99,09/06/19 14:29,"279 Chestnut St, Los Angeles, CA 90001" +257332,AA Batteries (4-pack),1,3.84,09/21/19 06:18,"340 Lincoln St, Atlanta, GA 30301" +257333,USB-C Charging Cable,1,11.95,09/19/19 19:49,"797 Pine St, Atlanta, GA 30301" +257333,AA Batteries (4-pack),1,3.84,09/19/19 19:49,"797 Pine St, Atlanta, GA 30301" +257334,USB-C Charging Cable,1,11.95,09/22/19 09:46,"978 Madison St, Los Angeles, CA 90001" +257335,Macbook Pro Laptop,1,1700,09/27/19 10:28,"701 Hickory St, Boston, MA 02215" +257336,Bose SoundSport Headphones,1,99.99,09/12/19 17:32,"929 Pine St, Los Angeles, CA 90001" +257337,27in 4K Gaming Monitor,1,389.99,09/01/19 11:00,"730 Wilson St, San Francisco, CA 94016" +257338,AA Batteries (4-pack),1,3.84,09/01/19 07:43,"372 Main St, New York City, NY 10001" +257339,AA Batteries (4-pack),2,3.84,09/28/19 21:02,"535 Madison St, Atlanta, GA 30301" +257340,Lightning Charging Cable,1,14.95,09/21/19 18:45,"704 5th St, Austin, TX 73301" +257341,Google Phone,1,600,09/14/19 00:34,"86 Hickory St, Dallas, TX 75001" +257341,USB-C Charging Cable,1,11.95,09/14/19 00:34,"86 Hickory St, Dallas, TX 75001" +257342,AAA Batteries (4-pack),3,2.99,09/28/19 17:29,"683 Forest St, Dallas, TX 75001" +257343,AAA Batteries (4-pack),1,2.99,09/24/19 18:17,"798 South St, Boston, MA 02215" +257344,Wired Headphones,1,11.99,09/22/19 23:58,"992 Madison St, Atlanta, GA 30301" +257345,27in FHD Monitor,1,149.99,09/03/19 07:01,"724 5th St, Austin, TX 73301" +257346,AA Batteries (4-pack),3,3.84,09/08/19 20:21,"656 Chestnut St, Boston, MA 02215" +257347,Google Phone,1,600,09/07/19 01:28,"730 Willow St, Seattle, WA 98101" +257348,Apple Airpods Headphones,1,150,09/02/19 15:07,"430 6th St, Portland, OR 97035" +257349,Wired Headphones,1,11.99,09/12/19 06:39,"960 Sunset St, Seattle, WA 98101" +257350,Lightning Charging Cable,1,14.95,09/02/19 18:52,"755 Spruce St, Boston, MA 02215" +257351,Bose SoundSport Headphones,1,99.99,09/26/19 22:09,"827 8th St, Atlanta, GA 30301" +257352,27in 4K Gaming Monitor,1,389.99,09/17/19 11:43,"777 Hill St, Los Angeles, CA 90001" +257353,Apple Airpods Headphones,1,150,09/30/19 15:11,"122 Chestnut St, Seattle, WA 98101" +257354,USB-C Charging Cable,1,11.95,09/11/19 12:05,"533 Jackson St, San Francisco, CA 94016" +257355,AAA Batteries (4-pack),1,2.99,09/08/19 19:39,"831 5th St, Portland, ME 04101" +257356,Bose SoundSport Headphones,1,99.99,09/04/19 17:01,"680 11th St, New York City, NY 10001" +257357,AAA Batteries (4-pack),1,2.99,09/18/19 14:22,"114 Main St, San Francisco, CA 94016" +257358,Flatscreen TV,1,300,09/21/19 03:45,"596 13th St, San Francisco, CA 94016" +257359,27in FHD Monitor,1,149.99,09/21/19 21:32,"216 Forest St, Portland, OR 97035" +257360,Bose SoundSport Headphones,1,99.99,09/09/19 21:06,"345 Hill St, Los Angeles, CA 90001" +257361,AA Batteries (4-pack),1,3.84,09/01/19 20:43,"46 8th St, Dallas, TX 75001" +257362,AAA Batteries (4-pack),1,2.99,09/30/19 12:02,"519 Park St, Los Angeles, CA 90001" +257363,USB-C Charging Cable,1,11.95,09/23/19 11:59,"420 River St, New York City, NY 10001" +257364,USB-C Charging Cable,1,11.95,09/17/19 16:20,"860 14th St, San Francisco, CA 94016" +257365,Flatscreen TV,1,300,09/01/19 19:19,"152 Spruce St, Seattle, WA 98101" +257366,AAA Batteries (4-pack),1,2.99,09/11/19 10:01,"636 Cherry St, San Francisco, CA 94016" +257367,27in FHD Monitor,1,149.99,09/08/19 14:28,"409 Walnut St, Boston, MA 02215" +257368,Wired Headphones,1,11.99,09/08/19 09:55,"717 Meadow St, New York City, NY 10001" +257369,Flatscreen TV,1,300,09/19/19 01:09,"409 Lincoln St, Los Angeles, CA 90001" +257370,Wired Headphones,2,11.99,09/19/19 16:31,"830 Park St, Seattle, WA 98101" +257371,Wired Headphones,1,11.99,09/13/19 17:12,"82 Highland St, Boston, MA 02215" +257372,USB-C Charging Cable,1,11.95,09/04/19 12:34,"429 Maple St, Boston, MA 02215" +257373,Lightning Charging Cable,1,14.95,09/29/19 11:31,"59 Pine St, Boston, MA 02215" +257374,Apple Airpods Headphones,1,150,09/16/19 16:30,"886 Madison St, Austin, TX 73301" +257375,USB-C Charging Cable,1,11.95,09/07/19 12:40,"51 Washington St, Los Angeles, CA 90001" +257376,USB-C Charging Cable,1,11.95,09/29/19 16:54,"674 Chestnut St, San Francisco, CA 94016" +257377,AAA Batteries (4-pack),1,2.99,09/18/19 19:45,"677 River St, Dallas, TX 75001" +257378,Lightning Charging Cable,1,14.95,09/27/19 00:56,"696 Center St, Dallas, TX 75001" +257379,Google Phone,1,600,09/23/19 07:37,"842 14th St, Atlanta, GA 30301" +257380,AAA Batteries (4-pack),2,2.99,09/17/19 13:25,"575 9th St, Portland, OR 97035" +257381,AA Batteries (4-pack),2,3.84,09/17/19 08:54,"255 Lincoln St, Portland, OR 97035" +257382,AAA Batteries (4-pack),2,2.99,09/27/19 19:20,"851 1st St, Los Angeles, CA 90001" +257383,Bose SoundSport Headphones,1,99.99,09/08/19 20:56,"495 Madison St, Los Angeles, CA 90001" +257384,Vareebadd Phone,1,400,09/26/19 12:51,"716 North St, Seattle, WA 98101" +257385,AA Batteries (4-pack),1,3.84,09/10/19 13:05,"396 10th St, New York City, NY 10001" +257386,Lightning Charging Cable,1,14.95,09/18/19 10:07,"412 Lincoln St, Dallas, TX 75001" +,,,,, +257387,Lightning Charging Cable,1,14.95,09/03/19 15:33,"857 Lake St, Austin, TX 73301" +257388,AAA Batteries (4-pack),1,2.99,09/15/19 00:14,"243 9th St, Austin, TX 73301" +257389,iPhone,1,700,09/25/19 19:31,"383 Main St, New York City, NY 10001" +257390,AAA Batteries (4-pack),1,2.99,09/28/19 00:08,"208 Cedar St, San Francisco, CA 94016" +257391,Google Phone,1,600,09/08/19 15:50,"152 11th St, Austin, TX 73301" +257392,USB-C Charging Cable,1,11.95,09/13/19 12:31,"870 4th St, San Francisco, CA 94016" +257393,AA Batteries (4-pack),1,3.84,09/08/19 12:05,"212 4th St, Seattle, WA 98101" +257394,Lightning Charging Cable,1,14.95,09/10/19 14:52,"32 Pine St, San Francisco, CA 94016" +257395,USB-C Charging Cable,1,11.95,09/24/19 06:13,"532 South St, Portland, OR 97035" +257396,AA Batteries (4-pack),2,3.84,09/03/19 21:19,"38 5th St, New York City, NY 10001" +257397,Wired Headphones,1,11.99,09/09/19 19:41,"316 12th St, Portland, OR 97035" +257398,Apple Airpods Headphones,1,150,09/01/19 17:41,"602 Washington St, San Francisco, CA 94016" +257399,AAA Batteries (4-pack),1,2.99,09/30/19 15:18,"84 9th St, Dallas, TX 75001" +257400,USB-C Charging Cable,1,11.95,09/27/19 12:14,"503 River St, Seattle, WA 98101" +257401,AA Batteries (4-pack),1,3.84,09/06/19 18:30,"906 Highland St, Dallas, TX 75001" +257402,Wired Headphones,1,11.99,09/08/19 15:46,"72 7th St, Boston, MA 02215" +257403,AA Batteries (4-pack),1,3.84,09/29/19 21:25,"211 Center St, Los Angeles, CA 90001" +257404,Wired Headphones,1,11.99,09/06/19 21:26,"368 West St, Los Angeles, CA 90001" +257405,Lightning Charging Cable,1,14.95,09/30/19 18:19,"4 Spruce St, San Francisco, CA 94016" +257406,Lightning Charging Cable,1,14.95,09/17/19 10:41,"32 Walnut St, New York City, NY 10001" +257407,AA Batteries (4-pack),1,3.84,09/18/19 14:39,"167 Cherry St, Atlanta, GA 30301" +257408,AAA Batteries (4-pack),1,2.99,09/29/19 17:46,"857 North St, San Francisco, CA 94016" +257409,Google Phone,1,600,09/22/19 20:58,"657 West St, San Francisco, CA 94016" +257409,USB-C Charging Cable,1,11.95,09/22/19 20:58,"657 West St, San Francisco, CA 94016" +257410,Lightning Charging Cable,1,14.95,09/17/19 06:01,"102 2nd St, New York City, NY 10001" +257411,Google Phone,1,600,09/04/19 04:18,"673 Jackson St, San Francisco, CA 94016" +257412,Apple Airpods Headphones,1,150,09/15/19 13:08,"711 Willow St, San Francisco, CA 94016" +257413,Wired Headphones,1,11.99,09/06/19 16:25,"280 Church St, San Francisco, CA 94016" +257414,Apple Airpods Headphones,1,150,09/25/19 13:39,"172 Spruce St, Dallas, TX 75001" +257415,Apple Airpods Headphones,1,150,09/13/19 07:36,"370 Madison St, Austin, TX 73301" +257416,Bose SoundSport Headphones,1,99.99,09/20/19 14:18,"516 13th St, Seattle, WA 98101" +257417,Lightning Charging Cable,1,14.95,09/29/19 11:05,"506 Cedar St, Austin, TX 73301" +257418,AA Batteries (4-pack),1,3.84,09/12/19 13:21,"496 Willow St, Portland, OR 97035" +257419,Lightning Charging Cable,1,14.95,09/15/19 18:56,"344 Jefferson St, San Francisco, CA 94016" +257420,Apple Airpods Headphones,1,150,09/28/19 11:44,"606 Center St, Los Angeles, CA 90001" +257421,34in Ultrawide Monitor,1,379.99,09/02/19 13:37,"2 14th St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +257422,Wired Headphones,1,11.99,09/20/19 17:59,"488 Willow St, San Francisco, CA 94016" +257423,27in FHD Monitor,1,149.99,09/23/19 19:16,"801 11th St, Boston, MA 02215" +257424,Lightning Charging Cable,1,14.95,09/25/19 13:47,"677 Highland St, New York City, NY 10001" +257425,Flatscreen TV,1,300,09/03/19 21:22,"834 7th St, San Francisco, CA 94016" +257426,Bose SoundSport Headphones,1,99.99,09/12/19 11:49,"41 Center St, Atlanta, GA 30301" +257427,Lightning Charging Cable,1,14.95,09/10/19 11:21,"741 Church St, New York City, NY 10001" +257428,Bose SoundSport Headphones,1,99.99,09/30/19 15:40,"486 Cedar St, Los Angeles, CA 90001" +257429,AAA Batteries (4-pack),1,2.99,09/14/19 21:37,"14 Forest St, Boston, MA 02215" +257430,20in Monitor,1,109.99,09/05/19 19:48,"465 Maple St, San Francisco, CA 94016" +257431,Lightning Charging Cable,1,14.95,09/05/19 21:13,"357 Chestnut St, San Francisco, CA 94016" +257432,Google Phone,1,600,09/19/19 18:33,"380 Church St, Atlanta, GA 30301" +257433,27in 4K Gaming Monitor,1,389.99,09/12/19 23:51,"639 Jackson St, Atlanta, GA 30301" +257434,AAA Batteries (4-pack),2,2.99,09/28/19 20:58,"129 5th St, Los Angeles, CA 90001" +257435,Flatscreen TV,1,300,09/25/19 12:33,"870 Meadow St, Boston, MA 02215" +257436,27in 4K Gaming Monitor,1,389.99,09/09/19 14:36,"371 7th St, Dallas, TX 75001" +257437,27in 4K Gaming Monitor,1,389.99,09/09/19 19:11,"73 12th St, Portland, OR 97035" +257438,AA Batteries (4-pack),1,3.84,09/07/19 18:22,"35 Main St, Los Angeles, CA 90001" +257439,USB-C Charging Cable,1,11.95,09/14/19 14:41,"80 Dogwood St, Seattle, WA 98101" +257440,iPhone,1,700,09/15/19 17:29,"446 Elm St, Dallas, TX 75001" +257441,20in Monitor,1,109.99,09/02/19 19:04,"190 Adams St, Boston, MA 02215" +257442,Lightning Charging Cable,2,14.95,09/09/19 19:41,"859 Washington St, San Francisco, CA 94016" +257443,Apple Airpods Headphones,1,150,09/07/19 09:12,"991 Sunset St, San Francisco, CA 94016" +257444,34in Ultrawide Monitor,1,379.99,09/23/19 13:21,"409 Wilson St, Portland, OR 97035" +257445,Macbook Pro Laptop,1,1700,09/03/19 00:29,"907 8th St, Atlanta, GA 30301" +257446,Bose SoundSport Headphones,1,99.99,09/14/19 13:05,"330 West St, San Francisco, CA 94016" +257447,USB-C Charging Cable,1,11.95,09/26/19 00:15,"161 8th St, San Francisco, CA 94016" +257448,AA Batteries (4-pack),1,3.84,09/25/19 14:13,"778 1st St, San Francisco, CA 94016" +257449,Bose SoundSport Headphones,1,99.99,09/14/19 13:24,"677 Lake St, Los Angeles, CA 90001" +257449,USB-C Charging Cable,1,11.95,09/14/19 13:24,"677 Lake St, Los Angeles, CA 90001" +257450,Lightning Charging Cable,1,14.95,09/01/19 14:59,"144 Jefferson St, Seattle, WA 98101" +257451,Bose SoundSport Headphones,1,99.99,09/20/19 07:44,"682 River St, New York City, NY 10001" +257452,Apple Airpods Headphones,1,150,09/18/19 13:40,"137 Elm St, Atlanta, GA 30301" +257453,AA Batteries (4-pack),2,3.84,09/18/19 20:24,"719 7th St, New York City, NY 10001" +257454,Lightning Charging Cable,1,14.95,09/11/19 07:15,"610 Cherry St, San Francisco, CA 94016" +257455,Google Phone,1,600,09/10/19 20:10,"144 Sunset St, Dallas, TX 75001" +,,,,, +257456,iPhone,1,700,09/24/19 21:09,"827 4th St, New York City, NY 10001" +257456,Lightning Charging Cable,1,14.95,09/24/19 21:09,"827 4th St, New York City, NY 10001" +257457,AAA Batteries (4-pack),1,2.99,09/30/19 19:57,"705 Church St, Los Angeles, CA 90001" +257458,20in Monitor,1,109.99,09/06/19 16:07,"72 Lincoln St, San Francisco, CA 94016" +257459,LG Dryer,1,600.0,09/03/19 08:58,"805 Maple St, Seattle, WA 98101" +257460,AA Batteries (4-pack),2,3.84,09/21/19 09:38,"461 Center St, New York City, NY 10001" +257461,Wired Headphones,1,11.99,09/16/19 11:18,"512 Main St, New York City, NY 10001" +257462,Lightning Charging Cable,1,14.95,09/07/19 17:06,"501 Spruce St, Seattle, WA 98101" +257463,Lightning Charging Cable,1,14.95,09/29/19 07:48,"216 South St, San Francisco, CA 94016" +257464,27in 4K Gaming Monitor,1,389.99,09/23/19 10:21,"97 Pine St, Seattle, WA 98101" +257465,Wired Headphones,1,11.99,09/14/19 13:10,"814 Lincoln St, Los Angeles, CA 90001" +257466,Lightning Charging Cable,1,14.95,09/21/19 05:02,"955 South St, Atlanta, GA 30301" +257467,AAA Batteries (4-pack),2,2.99,09/05/19 22:52,"655 Lakeview St, San Francisco, CA 94016" +257468,Lightning Charging Cable,1,14.95,09/12/19 12:19,"457 Forest St, Seattle, WA 98101" +257469,Wired Headphones,1,11.99,09/03/19 19:41,"272 5th St, Portland, OR 97035" +257470,LG Washing Machine,1,600.0,09/06/19 10:53,"201 Hill St, San Francisco, CA 94016" +257471,Apple Airpods Headphones,1,150,09/11/19 16:27,"242 Maple St, Los Angeles, CA 90001" +257472,ThinkPad Laptop,1,999.99,09/06/19 12:41,"532 Lakeview St, Los Angeles, CA 90001" +257473,Bose SoundSport Headphones,1,99.99,09/06/19 22:48,"913 9th St, Los Angeles, CA 90001" +257474,USB-C Charging Cable,1,11.95,09/24/19 22:42,"808 Forest St, Boston, MA 02215" +257475,Apple Airpods Headphones,1,150,09/14/19 22:42,"559 Jefferson St, New York City, NY 10001" +257476,Bose SoundSport Headphones,1,99.99,09/08/19 11:26,"15 7th St, New York City, NY 10001" +257477,Apple Airpods Headphones,1,150,09/25/19 12:16,"374 8th St, San Francisco, CA 94016" +257478,AA Batteries (4-pack),1,3.84,09/10/19 22:33,"716 Wilson St, San Francisco, CA 94016" +257479,27in FHD Monitor,1,149.99,09/05/19 18:53,"607 North St, San Francisco, CA 94016" +257480,Bose SoundSport Headphones,1,99.99,09/14/19 15:14,"39 Elm St, Dallas, TX 75001" +257481,AAA Batteries (4-pack),1,2.99,09/11/19 09:34,"804 Highland St, Atlanta, GA 30301" +257482,AA Batteries (4-pack),1,3.84,09/09/19 22:23,"9 8th St, San Francisco, CA 94016" +257483,Macbook Pro Laptop,1,1700,09/04/19 05:57,"745 Pine St, Los Angeles, CA 90001" +257484,Apple Airpods Headphones,1,150,09/08/19 13:12,"651 Spruce St, Boston, MA 02215" +257485,27in FHD Monitor,1,149.99,09/21/19 21:13,"852 Sunset St, Los Angeles, CA 90001" +257486,AAA Batteries (4-pack),1,2.99,09/18/19 11:08,"333 11th St, San Francisco, CA 94016" +257487,iPhone,1,700,09/28/19 14:47,"644 Maple St, Seattle, WA 98101" +257488,Lightning Charging Cable,1,14.95,09/13/19 01:36,"958 Sunset St, Los Angeles, CA 90001" +257489,AA Batteries (4-pack),2,3.84,09/15/19 15:12,"178 Adams St, Austin, TX 73301" +257490,AAA Batteries (4-pack),1,2.99,09/23/19 00:01,"379 Forest St, San Francisco, CA 94016" +257491,34in Ultrawide Monitor,1,379.99,09/30/19 20:13,"124 Sunset St, New York City, NY 10001" +257492,Apple Airpods Headphones,1,150,09/28/19 12:27,"367 Lakeview St, Austin, TX 73301" +257493,Apple Airpods Headphones,1,150,09/10/19 11:01,"83 South St, Boston, MA 02215" +257494,20in Monitor,1,109.99,09/01/19 13:00,"527 Wilson St, San Francisco, CA 94016" +257495,Google Phone,1,600,09/01/19 17:25,"892 Madison St, Seattle, WA 98101" +257496,Flatscreen TV,1,300,09/03/19 00:41,"802 Jackson St, San Francisco, CA 94016" +257497,USB-C Charging Cable,1,11.95,09/30/19 20:02,"461 Pine St, Los Angeles, CA 90001" +257498,AA Batteries (4-pack),1,3.84,09/12/19 16:46,"837 11th St, Austin, TX 73301" +257499,Wired Headphones,1,11.99,09/23/19 17:56,"153 River St, Boston, MA 02215" +257500,27in FHD Monitor,1,149.99,09/20/19 11:50,"466 Highland St, San Francisco, CA 94016" +257501,27in 4K Gaming Monitor,1,389.99,09/04/19 13:49,"854 Ridge St, Los Angeles, CA 90001" +257502,27in 4K Gaming Monitor,1,389.99,09/18/19 15:01,"918 12th St, San Francisco, CA 94016" +257503,Google Phone,1,600,09/23/19 19:40,"982 11th St, Los Angeles, CA 90001" +257504,Macbook Pro Laptop,1,1700,09/14/19 18:02,"554 North St, Los Angeles, CA 90001" +257505,Bose SoundSport Headphones,1,99.99,09/24/19 21:47,"846 North St, Boston, MA 02215" +257506,AAA Batteries (4-pack),2,2.99,09/19/19 10:25,"418 Pine St, San Francisco, CA 94016" +257507,Lightning Charging Cable,1,14.95,09/04/19 10:57,"420 Sunset St, San Francisco, CA 94016" +257508,Lightning Charging Cable,1,14.95,09/19/19 06:22,"160 9th St, Los Angeles, CA 90001" +257509,AAA Batteries (4-pack),3,2.99,09/01/19 11:32,"833 6th St, Dallas, TX 75001" +257510,27in 4K Gaming Monitor,1,389.99,09/20/19 15:50,"452 West St, Seattle, WA 98101" +257511,Vareebadd Phone,1,400,09/28/19 20:23,"691 11th St, San Francisco, CA 94016" +257512,AAA Batteries (4-pack),1,2.99,09/21/19 16:45,"616 Elm St, San Francisco, CA 94016" +257513,Lightning Charging Cable,1,14.95,09/15/19 19:36,"722 4th St, San Francisco, CA 94016" +257514,Apple Airpods Headphones,1,150,09/16/19 21:03,"999 Washington St, Seattle, WA 98101" +257515,Wired Headphones,1,11.99,09/07/19 16:24,"505 11th St, Los Angeles, CA 90001" +257516,AA Batteries (4-pack),1,3.84,09/22/19 18:08,"900 Chestnut St, San Francisco, CA 94016" +257517,Flatscreen TV,1,300,09/14/19 10:17,"104 Cherry St, Los Angeles, CA 90001" +257518,27in FHD Monitor,1,149.99,09/24/19 12:00,"460 Lakeview St, Los Angeles, CA 90001" +257519,34in Ultrawide Monitor,1,379.99,09/02/19 22:29,"633 Jackson St, Portland, OR 97035" +257520,Lightning Charging Cable,1,14.95,09/22/19 22:39,"80 Forest St, Atlanta, GA 30301" +257521,AAA Batteries (4-pack),1,2.99,09/06/19 16:03,"586 12th St, San Francisco, CA 94016" +257522,34in Ultrawide Monitor,1,379.99,09/14/19 12:35,"158 Ridge St, San Francisco, CA 94016" +257523,Macbook Pro Laptop,1,1700,09/19/19 10:50,"165 4th St, New York City, NY 10001" +257524,AA Batteries (4-pack),1,3.84,09/07/19 09:13,"683 Jefferson St, New York City, NY 10001" +257525,Lightning Charging Cable,1,14.95,09/22/19 11:06,"858 12th St, Boston, MA 02215" +257526,AAA Batteries (4-pack),1,2.99,09/08/19 22:21,"158 6th St, New York City, NY 10001" +257527,USB-C Charging Cable,1,11.95,09/07/19 14:03,"918 Highland St, Los Angeles, CA 90001" +257528,AAA Batteries (4-pack),3,2.99,09/12/19 13:09,"617 Park St, Seattle, WA 98101" +257529,27in FHD Monitor,1,149.99,09/30/19 12:38,"524 Main St, Atlanta, GA 30301" +257530,Macbook Pro Laptop,1,1700,09/02/19 21:35,"299 Willow St, Dallas, TX 75001" +257531,AA Batteries (4-pack),1,3.84,09/14/19 14:23,"761 Forest St, Boston, MA 02215" +257532,20in Monitor,1,109.99,09/16/19 11:36,"502 Madison St, Austin, TX 73301" +257533,USB-C Charging Cable,1,11.95,09/05/19 19:17,"67 Madison St, San Francisco, CA 94016" +257534,27in FHD Monitor,1,149.99,09/22/19 17:07,"742 Jefferson St, Seattle, WA 98101" +257535,Apple Airpods Headphones,1,150,09/24/19 15:46,"623 Meadow St, Portland, ME 04101" +257536,iPhone,1,700,09/25/19 07:20,"263 Ridge St, New York City, NY 10001" +257537,USB-C Charging Cable,1,11.95,09/24/19 17:49,"470 1st St, Los Angeles, CA 90001" +257538,Lightning Charging Cable,1,14.95,09/27/19 21:03,"662 5th St, Portland, OR 97035" +257539,USB-C Charging Cable,1,11.95,09/24/19 13:41,"197 River St, San Francisco, CA 94016" +257540,Apple Airpods Headphones,1,150,09/01/19 16:36,"952 Spruce St, Atlanta, GA 30301" +257541,Google Phone,1,600,09/01/19 09:53,"334 Cedar St, San Francisco, CA 94016" +257542,Flatscreen TV,1,300,09/09/19 13:44,"384 Washington St, Atlanta, GA 30301" +257543,34in Ultrawide Monitor,1,379.99,09/29/19 19:08,"608 Madison St, Austin, TX 73301" +257544,Wired Headphones,1,11.99,09/20/19 20:26,"171 Hill St, Portland, OR 97035" +257545,Vareebadd Phone,1,400,09/24/19 10:41,"694 Wilson St, San Francisco, CA 94016" +257545,Bose SoundSport Headphones,1,99.99,09/24/19 10:41,"694 Wilson St, San Francisco, CA 94016" +257546,Lightning Charging Cable,1,14.95,09/19/19 03:43,"436 Lakeview St, San Francisco, CA 94016" +257547,34in Ultrawide Monitor,1,379.99,09/18/19 10:34,"920 Main St, Boston, MA 02215" +257548,27in 4K Gaming Monitor,1,389.99,09/16/19 22:16,"627 Walnut St, Los Angeles, CA 90001" +257549,AA Batteries (4-pack),1,3.84,09/15/19 15:40,"536 10th St, Dallas, TX 75001" +257550,USB-C Charging Cable,1,11.95,09/06/19 21:49,"837 Cedar St, Seattle, WA 98101" +257551,Macbook Pro Laptop,1,1700,09/30/19 19:47,"825 Park St, Los Angeles, CA 90001" +257552,Wired Headphones,1,11.99,09/02/19 18:08,"506 West St, Los Angeles, CA 90001" +257553,iPhone,1,700,09/19/19 10:05,"392 West St, Los Angeles, CA 90001" +257553,Lightning Charging Cable,1,14.95,09/19/19 10:05,"392 West St, Los Angeles, CA 90001" +257554,27in FHD Monitor,1,149.99,09/21/19 14:05,"399 Church St, Atlanta, GA 30301" +257555,Apple Airpods Headphones,1,150,09/14/19 13:41,"298 River St, Los Angeles, CA 90001" +257556,USB-C Charging Cable,1,11.95,09/19/19 14:22,"848 Jefferson St, Dallas, TX 75001" +257557,Wired Headphones,2,11.99,09/08/19 15:17,"819 Ridge St, Seattle, WA 98101" +257558,AAA Batteries (4-pack),1,2.99,09/17/19 13:47,"234 Lincoln St, New York City, NY 10001" +257559,AAA Batteries (4-pack),1,2.99,09/30/19 20:17,"579 Lincoln St, Atlanta, GA 30301" +257560,Bose SoundSport Headphones,1,99.99,09/02/19 21:54,"165 6th St, Dallas, TX 75001" +257561,Wired Headphones,1,11.99,09/30/19 12:40,"4 14th St, San Francisco, CA 94016" +257562,AAA Batteries (4-pack),1,2.99,09/03/19 20:48,"807 9th St, San Francisco, CA 94016" +257563,Lightning Charging Cable,1,14.95,09/29/19 10:18,"546 Dogwood St, Atlanta, GA 30301" +257564,AA Batteries (4-pack),1,3.84,09/20/19 12:02,"826 12th St, Atlanta, GA 30301" +257565,AAA Batteries (4-pack),1,2.99,09/09/19 09:45,"182 10th St, Seattle, WA 98101" +257566,Lightning Charging Cable,1,14.95,09/06/19 11:16,"964 Jefferson St, Portland, OR 97035" +257567,Lightning Charging Cable,2,14.95,09/09/19 18:33,"181 7th St, Boston, MA 02215" +257568,Bose SoundSport Headphones,1,99.99,09/26/19 10:08,"532 Cherry St, Boston, MA 02215" +257569,Lightning Charging Cable,1,14.95,09/27/19 10:18,"834 Meadow St, Austin, TX 73301" +257570,USB-C Charging Cable,1,11.95,09/16/19 09:04,"524 Sunset St, San Francisco, CA 94016" +257571,Apple Airpods Headphones,1,150,09/06/19 13:44,"762 Forest St, Seattle, WA 98101" +257572,Flatscreen TV,1,300,09/20/19 01:10,"938 Lincoln St, Atlanta, GA 30301" +257573,AA Batteries (4-pack),1,3.84,09/30/19 19:23,"350 West St, New York City, NY 10001" +257574,USB-C Charging Cable,1,11.95,09/20/19 23:46,"30 Park St, Portland, OR 97035" +257575,Lightning Charging Cable,1,14.95,09/07/19 00:13,"146 Jefferson St, Dallas, TX 75001" +257576,AA Batteries (4-pack),1,3.84,09/30/19 12:08,"11 Walnut St, Los Angeles, CA 90001" +257577,Bose SoundSport Headphones,1,99.99,09/08/19 07:31,"632 Sunset St, Atlanta, GA 30301" +257578,ThinkPad Laptop,1,999.99,09/14/19 11:02,"334 8th St, New York City, NY 10001" +257579,34in Ultrawide Monitor,1,379.99,09/07/19 23:41,"882 8th St, New York City, NY 10001" +257580,Apple Airpods Headphones,1,150,09/04/19 16:19,"800 River St, Dallas, TX 75001" +257581,AA Batteries (4-pack),3,3.84,09/16/19 07:20,"946 Cedar St, San Francisco, CA 94016" +257582,AA Batteries (4-pack),1,3.84,09/24/19 20:42,"260 Park St, Austin, TX 73301" +257583,iPhone,1,700,09/08/19 10:34,"850 12th St, Los Angeles, CA 90001" +257584,20in Monitor,1,109.99,09/21/19 11:06,"917 Lakeview St, Austin, TX 73301" +257585,Apple Airpods Headphones,1,150,09/06/19 13:28,"27 Main St, Atlanta, GA 30301" +257586,Lightning Charging Cable,1,14.95,09/17/19 03:04,"933 South St, San Francisco, CA 94016" +257587,27in 4K Gaming Monitor,1,389.99,09/27/19 14:52,"701 Madison St, Los Angeles, CA 90001" +257588,27in 4K Gaming Monitor,1,389.99,09/30/19 16:19,"650 Madison St, San Francisco, CA 94016" +257589,27in 4K Gaming Monitor,1,389.99,09/14/19 12:24,"834 Lincoln St, Portland, ME 04101" +257590,Google Phone,1,600,09/11/19 12:22,"222 Ridge St, New York City, NY 10001" +257591,USB-C Charging Cable,1,11.95,09/21/19 10:01,"575 Maple St, Seattle, WA 98101" +257592,Wired Headphones,1,11.99,09/23/19 11:12,"4 10th St, Austin, TX 73301" +257593,AA Batteries (4-pack),1,3.84,09/11/19 10:43,"944 Ridge St, Portland, OR 97035" +257594,ThinkPad Laptop,1,999.99,09/06/19 23:58,"593 Meadow St, San Francisco, CA 94016" +257595,USB-C Charging Cable,1,11.95,09/02/19 20:07,"25 Maple St, Los Angeles, CA 90001" +257596,USB-C Charging Cable,1,11.95,09/28/19 00:53,"432 2nd St, Boston, MA 02215" +257597,AAA Batteries (4-pack),2,2.99,09/07/19 14:45,"22 4th St, New York City, NY 10001" +257598,Lightning Charging Cable,1,14.95,09/03/19 20:33,"581 Willow St, Dallas, TX 75001" +257599,34in Ultrawide Monitor,1,379.99,09/01/19 12:44,"768 11th St, Dallas, TX 75001" +257600,USB-C Charging Cable,1,11.95,09/07/19 11:19,"324 Forest St, New York City, NY 10001" +257601,Lightning Charging Cable,1,14.95,09/01/19 08:01,"793 Wilson St, Boston, MA 02215" +257602,27in 4K Gaming Monitor,1,389.99,09/11/19 18:28,"306 Sunset St, Boston, MA 02215" +257603,iPhone,1,700,09/15/19 00:27,"49 Forest St, San Francisco, CA 94016" +257604,27in FHD Monitor,1,149.99,09/26/19 17:24,"593 Chestnut St, Dallas, TX 75001" +257605,AA Batteries (4-pack),1,3.84,09/10/19 22:11,"736 Meadow St, Dallas, TX 75001" +257606,AAA Batteries (4-pack),3,2.99,09/18/19 23:14,"565 Sunset St, San Francisco, CA 94016" +257607,AA Batteries (4-pack),1,3.84,09/16/19 17:20,"161 13th St, San Francisco, CA 94016" +257608,20in Monitor,1,109.99,09/01/19 15:13,"338 Spruce St, San Francisco, CA 94016" +257609,USB-C Charging Cable,1,11.95,09/17/19 23:34,"13 Elm St, San Francisco, CA 94016" +257610,iPhone,1,700,09/29/19 14:53,"583 Lake St, Portland, OR 97035" +257611,Wired Headphones,1,11.99,09/12/19 07:29,"938 River St, Los Angeles, CA 90001" +257612,USB-C Charging Cable,1,11.95,09/10/19 07:48,"229 2nd St, San Francisco, CA 94016" +257613,AAA Batteries (4-pack),1,2.99,09/12/19 13:12,"572 Adams St, Boston, MA 02215" +257614,Apple Airpods Headphones,1,150,09/26/19 21:03,"166 11th St, Boston, MA 02215" +257615,USB-C Charging Cable,1,11.95,09/03/19 15:32,"30 Pine St, San Francisco, CA 94016" +257616,27in FHD Monitor,1,149.99,09/14/19 06:05,"628 5th St, New York City, NY 10001" +257617,Bose SoundSport Headphones,1,99.99,09/16/19 19:59,"524 13th St, Los Angeles, CA 90001" +257618,Wired Headphones,1,11.99,09/20/19 16:23,"502 Cherry St, San Francisco, CA 94016" +257619,27in FHD Monitor,1,149.99,09/23/19 18:35,"84 13th St, Boston, MA 02215" +257620,AAA Batteries (4-pack),1,2.99,09/23/19 22:45,"602 14th St, New York City, NY 10001" +257621,AAA Batteries (4-pack),1,2.99,09/29/19 13:17,"934 2nd St, San Francisco, CA 94016" +257622,Wired Headphones,1,11.99,09/16/19 14:15,"3 11th St, San Francisco, CA 94016" +257623,Wired Headphones,1,11.99,09/17/19 10:00,"351 8th St, San Francisco, CA 94016" +257624,AA Batteries (4-pack),2,3.84,09/03/19 11:08,"465 North St, Seattle, WA 98101" +257625,AA Batteries (4-pack),1,3.84,09/03/19 20:57,"677 5th St, New York City, NY 10001" +257626,Apple Airpods Headphones,1,150,09/29/19 09:30,"221 13th St, Portland, OR 97035" +257627,Lightning Charging Cable,1,14.95,09/16/19 09:54,"762 Park St, Seattle, WA 98101" +257628,AAA Batteries (4-pack),1,2.99,09/18/19 12:25,"297 7th St, San Francisco, CA 94016" +257629,27in 4K Gaming Monitor,1,389.99,09/27/19 22:16,"186 River St, Dallas, TX 75001" +257630,Lightning Charging Cable,1,14.95,09/30/19 17:33,"316 Maple St, Boston, MA 02215" +257631,AAA Batteries (4-pack),1,2.99,09/28/19 14:52,"910 West St, Los Angeles, CA 90001" +257632,Wired Headphones,1,11.99,09/26/19 04:35,"172 Walnut St, Los Angeles, CA 90001" +257633,AAA Batteries (4-pack),1,2.99,09/08/19 11:27,"377 10th St, Portland, OR 97035" +257634,Wired Headphones,1,11.99,09/21/19 20:10,"758 Maple St, Los Angeles, CA 90001" +257635,USB-C Charging Cable,1,11.95,09/16/19 22:06,"895 Dogwood St, Atlanta, GA 30301" +257635,Apple Airpods Headphones,1,150,09/16/19 22:06,"895 Dogwood St, Atlanta, GA 30301" +257636,ThinkPad Laptop,1,999.99,09/30/19 22:26,"430 Maple St, Austin, TX 73301" +257637,27in 4K Gaming Monitor,1,389.99,09/07/19 15:40,"173 Forest St, Atlanta, GA 30301" +257638,AA Batteries (4-pack),1,3.84,09/24/19 16:48,"516 2nd St, Dallas, TX 75001" +257639,Bose SoundSport Headphones,1,99.99,09/07/19 13:58,"221 14th St, Los Angeles, CA 90001" +257640,Lightning Charging Cable,1,14.95,09/26/19 23:22,"403 5th St, Seattle, WA 98101" +257641,Apple Airpods Headphones,1,150,09/29/19 08:29,"516 Maple St, Dallas, TX 75001" +257642,ThinkPad Laptop,1,999.99,09/24/19 15:24,"825 10th St, San Francisco, CA 94016" +257643,AA Batteries (4-pack),1,3.84,09/08/19 00:00,"607 Lake St, Los Angeles, CA 90001" +257644,AA Batteries (4-pack),2,3.84,09/16/19 16:56,"906 South St, San Francisco, CA 94016" +257644,Flatscreen TV,1,300,09/16/19 16:56,"906 South St, San Francisco, CA 94016" +257645,20in Monitor,1,109.99,09/23/19 20:10,"924 Pine St, Portland, OR 97035" +257646,Wired Headphones,1,11.99,09/23/19 02:39,"605 Adams St, Boston, MA 02215" +257647,Flatscreen TV,1,300,09/17/19 21:56,"92 13th St, San Francisco, CA 94016" +257648,iPhone,1,700,09/15/19 19:05,"589 11th St, Austin, TX 73301" +257649,USB-C Charging Cable,1,11.95,09/21/19 08:22,"840 14th St, San Francisco, CA 94016" +257650,Apple Airpods Headphones,1,150,09/13/19 23:47,"619 1st St, San Francisco, CA 94016" +257651,Lightning Charging Cable,1,14.95,09/02/19 16:34,"159 11th St, Atlanta, GA 30301" +257652,34in Ultrawide Monitor,1,379.99,09/06/19 20:53,"523 Madison St, Seattle, WA 98101" +257653,Google Phone,1,600,09/11/19 18:41,"839 Main St, San Francisco, CA 94016" +257653,Wired Headphones,1,11.99,09/11/19 18:41,"839 Main St, San Francisco, CA 94016" +257654,34in Ultrawide Monitor,1,379.99,09/17/19 23:16,"437 2nd St, Atlanta, GA 30301" +257655,Lightning Charging Cable,1,14.95,09/06/19 17:40,"353 South St, San Francisco, CA 94016" +257656,Apple Airpods Headphones,1,150,09/23/19 09:19,"572 North St, Los Angeles, CA 90001" +257657,AAA Batteries (4-pack),1,2.99,09/27/19 14:14,"429 Hickory St, Portland, OR 97035" +257658,AA Batteries (4-pack),3,3.84,09/11/19 15:21,"189 10th St, Atlanta, GA 30301" +257659,USB-C Charging Cable,1,11.95,09/06/19 18:40,"496 Ridge St, San Francisco, CA 94016" +257660,Bose SoundSport Headphones,1,99.99,09/03/19 12:55,"725 Cedar St, New York City, NY 10001" +257661,Flatscreen TV,1,300,09/30/19 11:41,"204 12th St, Dallas, TX 75001" +257662,27in FHD Monitor,1,149.99,09/02/19 08:38,"329 Wilson St, Atlanta, GA 30301" +257663,Wired Headphones,1,11.99,09/06/19 21:00,"722 Wilson St, San Francisco, CA 94016" +257664,Apple Airpods Headphones,1,150,09/09/19 16:58,"63 Washington St, Portland, OR 97035" +257665,USB-C Charging Cable,1,11.95,09/03/19 21:19,"538 Hickory St, San Francisco, CA 94016" +257666,Wired Headphones,1,11.99,09/12/19 19:43,"521 12th St, San Francisco, CA 94016" +257667,USB-C Charging Cable,1,11.95,09/06/19 08:19,"237 Center St, Los Angeles, CA 90001" +257668,AA Batteries (4-pack),1,3.84,09/25/19 21:14,"497 West St, Seattle, WA 98101" +257669,Flatscreen TV,1,300,09/16/19 16:10,"476 Walnut St, Boston, MA 02215" +257670,Apple Airpods Headphones,1,150,09/09/19 19:53,"80 Main St, Atlanta, GA 30301" +257671,20in Monitor,1,109.99,09/18/19 11:55,"45 Adams St, Los Angeles, CA 90001" +257672,AA Batteries (4-pack),2,3.84,09/29/19 14:25,"680 Madison St, Los Angeles, CA 90001" +257673,Wired Headphones,1,11.99,09/18/19 15:31,"762 Ridge St, New York City, NY 10001" +257674,Apple Airpods Headphones,1,150,09/06/19 11:04,"546 6th St, Austin, TX 73301" +257675,Bose SoundSport Headphones,1,99.99,09/19/19 05:11,"891 Walnut St, New York City, NY 10001" +257676,Wired Headphones,1,11.99,09/14/19 09:23,"616 Lake St, Los Angeles, CA 90001" +257677,Wired Headphones,1,11.99,09/20/19 13:21,"406 Lake St, San Francisco, CA 94016" +257678,ThinkPad Laptop,1,999.99,09/19/19 09:46,"309 7th St, Seattle, WA 98101" +257679,Flatscreen TV,1,300,09/11/19 19:36,"990 River St, San Francisco, CA 94016" +257680,27in FHD Monitor,1,149.99,09/03/19 07:44,"777 River St, New York City, NY 10001" +257681,USB-C Charging Cable,1,11.95,09/15/19 16:16,"538 Highland St, Los Angeles, CA 90001" +257682,Apple Airpods Headphones,1,150,09/06/19 14:27,"102 Park St, San Francisco, CA 94016" +257683,Wired Headphones,1,11.99,09/22/19 20:59,"33 River St, Atlanta, GA 30301" +257684,Apple Airpods Headphones,1,150,09/05/19 17:35,"876 Willow St, San Francisco, CA 94016" +257685,AA Batteries (4-pack),2,3.84,09/07/19 12:38,"64 River St, Boston, MA 02215" +257686,USB-C Charging Cable,1,11.95,09/09/19 01:45,"900 Ridge St, San Francisco, CA 94016" +257687,USB-C Charging Cable,1,11.95,09/04/19 07:18,"189 Lake St, New York City, NY 10001" +257688,iPhone,1,700,09/06/19 13:08,"432 West St, San Francisco, CA 94016" +257689,27in 4K Gaming Monitor,1,389.99,09/06/19 19:23,"629 Hill St, New York City, NY 10001" +257690,Lightning Charging Cable,1,14.95,09/24/19 09:10,"327 River St, Dallas, TX 75001" +257691,AA Batteries (4-pack),3,3.84,09/10/19 09:21,"156 Johnson St, Los Angeles, CA 90001" +257692,Bose SoundSport Headphones,1,99.99,09/11/19 19:33,"225 Willow St, Portland, ME 04101" +257693,USB-C Charging Cable,1,11.95,09/07/19 10:01,"355 Center St, San Francisco, CA 94016" +257694,AA Batteries (4-pack),1,3.84,09/30/19 17:30,"626 5th St, Los Angeles, CA 90001" +257695,AA Batteries (4-pack),1,3.84,09/15/19 21:08,"50 Pine St, San Francisco, CA 94016" +257696,ThinkPad Laptop,1,999.99,09/17/19 13:25,"924 Adams St, San Francisco, CA 94016" +257697,27in 4K Gaming Monitor,1,389.99,09/25/19 05:34,"833 8th St, Portland, OR 97035" +257698,USB-C Charging Cable,1,11.95,09/23/19 16:57,"128 5th St, Los Angeles, CA 90001" +257699,AA Batteries (4-pack),3,3.84,09/14/19 08:54,"890 7th St, New York City, NY 10001" +257699,Google Phone,1,600,09/14/19 08:54,"890 7th St, New York City, NY 10001" +257700,USB-C Charging Cable,1,11.95,09/23/19 18:19,"229 10th St, San Francisco, CA 94016" +257701,AA Batteries (4-pack),2,3.84,09/01/19 12:00,"239 Johnson St, Portland, OR 97035" +257702,AA Batteries (4-pack),1,3.84,09/26/19 12:56,"408 Elm St, Seattle, WA 98101" +257703,Lightning Charging Cable,1,14.95,09/09/19 11:12,"617 Lincoln St, San Francisco, CA 94016" +257704,Wired Headphones,1,11.99,09/26/19 13:03,"798 Sunset St, Seattle, WA 98101" +257705,AA Batteries (4-pack),1,3.84,09/09/19 20:26,"515 1st St, San Francisco, CA 94016" +257706,Wired Headphones,1,11.99,09/28/19 11:31,"478 Walnut St, Austin, TX 73301" +257706,USB-C Charging Cable,1,11.95,09/28/19 11:31,"478 Walnut St, Austin, TX 73301" +257707,20in Monitor,1,109.99,09/07/19 08:48,"895 Johnson St, New York City, NY 10001" +257708,Wired Headphones,1,11.99,09/12/19 13:14,"972 Madison St, San Francisco, CA 94016" +257709,27in 4K Gaming Monitor,1,389.99,09/10/19 23:21,"473 Willow St, Los Angeles, CA 90001" +257710,Google Phone,1,600,09/12/19 17:39,"61 Highland St, New York City, NY 10001" +257711,AAA Batteries (4-pack),1,2.99,09/30/19 17:55,"623 Hickory St, New York City, NY 10001" +257712,34in Ultrawide Monitor,1,379.99,09/26/19 08:00,"144 Madison St, New York City, NY 10001" +257713,AA Batteries (4-pack),1,3.84,09/12/19 12:50,"514 Cedar St, San Francisco, CA 94016" +257714,USB-C Charging Cable,1,11.95,09/21/19 19:42,"822 Walnut St, Seattle, WA 98101" +257715,AAA Batteries (4-pack),1,2.99,09/07/19 00:00,"215 Pine St, Seattle, WA 98101" +257716,Bose SoundSport Headphones,1,99.99,09/12/19 22:14,"795 8th St, San Francisco, CA 94016" +257717,AAA Batteries (4-pack),1,2.99,09/20/19 09:32,"2 Main St, Los Angeles, CA 90001" +257718,Lightning Charging Cable,1,14.95,09/26/19 11:54,"1 Dogwood St, Boston, MA 02215" +257719,27in 4K Gaming Monitor,1,389.99,09/30/19 00:06,"961 Walnut St, New York City, NY 10001" +,,,,, +257720,Apple Airpods Headphones,1,150,09/04/19 18:37,"133 Adams St, San Francisco, CA 94016" +257721,AA Batteries (4-pack),1,3.84,09/15/19 15:50,"546 Jefferson St, Dallas, TX 75001" +257722,AAA Batteries (4-pack),1,2.99,09/22/19 09:36,"26 11th St, San Francisco, CA 94016" +257723,Wired Headphones,1,11.99,09/29/19 19:40,"298 6th St, Dallas, TX 75001" +257724,27in FHD Monitor,1,149.99,09/18/19 07:29,"407 Johnson St, Los Angeles, CA 90001" +257725,iPhone,1,700,09/16/19 09:37,"537 South St, San Francisco, CA 94016" +257726,iPhone,1,700,09/25/19 18:08,"57 Chestnut St, Los Angeles, CA 90001" +257726,Lightning Charging Cable,1,14.95,09/25/19 18:08,"57 Chestnut St, Los Angeles, CA 90001" +257727,USB-C Charging Cable,1,11.95,09/11/19 20:07,"429 Ridge St, Portland, ME 04101" +257728,USB-C Charging Cable,1,11.95,09/15/19 23:02,"574 Elm St, Atlanta, GA 30301" +257729,27in FHD Monitor,1,149.99,09/18/19 14:43,"368 North St, Atlanta, GA 30301" +257730,AA Batteries (4-pack),1,3.84,09/08/19 21:35,"845 Hill St, Los Angeles, CA 90001" +257731,Lightning Charging Cable,1,14.95,09/07/19 06:02,"517 14th St, Los Angeles, CA 90001" +257732,27in FHD Monitor,1,149.99,09/17/19 20:57,"724 Highland St, New York City, NY 10001" +257733,Flatscreen TV,1,300,09/24/19 19:52,"54 Elm St, San Francisco, CA 94016" +257734,AA Batteries (4-pack),1,3.84,09/05/19 16:08,"401 Church St, San Francisco, CA 94016" +257735,Lightning Charging Cable,1,14.95,09/30/19 13:48,"398 Willow St, Portland, OR 97035" +257736,USB-C Charging Cable,1,11.95,09/28/19 11:34,"819 Johnson St, Seattle, WA 98101" +257737,Wired Headphones,1,11.99,09/17/19 23:59,"72 Center St, Atlanta, GA 30301" +257738,USB-C Charging Cable,1,11.95,09/29/19 10:02,"603 Sunset St, Boston, MA 02215" +257739,Lightning Charging Cable,1,14.95,09/24/19 15:35,"196 7th St, San Francisco, CA 94016" +257739,iPhone,1,700,09/24/19 15:35,"196 7th St, San Francisco, CA 94016" +257740,AAA Batteries (4-pack),4,2.99,09/27/19 09:23,"144 Forest St, Portland, OR 97035" +257741,USB-C Charging Cable,1,11.95,09/17/19 23:26,"636 Pine St, Portland, OR 97035" +257742,Lightning Charging Cable,1,14.95,09/27/19 11:52,"72 Ridge St, Dallas, TX 75001" +257743,AAA Batteries (4-pack),1,2.99,09/07/19 20:23,"592 12th St, San Francisco, CA 94016" +257744,AA Batteries (4-pack),1,3.84,09/02/19 14:53,"483 West St, Atlanta, GA 30301" +257745,Macbook Pro Laptop,1,1700,09/03/19 21:28,"897 8th St, San Francisco, CA 94016" +257746,Lightning Charging Cable,1,14.95,09/29/19 07:11,"932 Walnut St, Portland, OR 97035" +257747,Lightning Charging Cable,1,14.95,09/29/19 20:09,"527 2nd St, Los Angeles, CA 90001" +257748,Wired Headphones,1,11.99,09/01/19 22:45,"765 Madison St, San Francisco, CA 94016" +257749,AA Batteries (4-pack),1,3.84,09/26/19 18:19,"504 Dogwood St, Portland, ME 04101" +257750,Wired Headphones,1,11.99,09/27/19 18:46,"926 Lincoln St, New York City, NY 10001" +257751,34in Ultrawide Monitor,1,379.99,09/09/19 15:00,"984 Maple St, New York City, NY 10001" +257752,Wired Headphones,1,11.99,09/22/19 00:44,"501 13th St, Austin, TX 73301" +257753,AAA Batteries (4-pack),1,2.99,09/05/19 08:05,"404 Washington St, Seattle, WA 98101" +257754,Lightning Charging Cable,1,14.95,09/29/19 14:45,"202 Johnson St, San Francisco, CA 94016" +257755,AAA Batteries (4-pack),1,2.99,09/29/19 15:17,"180 5th St, Los Angeles, CA 90001" +257756,Vareebadd Phone,1,400,09/26/19 19:28,"574 6th St, Los Angeles, CA 90001" +257756,USB-C Charging Cable,1,11.95,09/26/19 19:28,"574 6th St, Los Angeles, CA 90001" +257757,ThinkPad Laptop,1,999.99,09/03/19 23:24,"143 River St, San Francisco, CA 94016" +257758,USB-C Charging Cable,1,11.95,09/25/19 22:17,"889 North St, Austin, TX 73301" +257759,27in 4K Gaming Monitor,1,389.99,09/28/19 15:23,"881 Ridge St, Seattle, WA 98101" +257760,USB-C Charging Cable,1,11.95,09/15/19 12:49,"895 Lakeview St, Portland, OR 97035" +257761,AAA Batteries (4-pack),1,2.99,09/29/19 10:33,"930 Walnut St, Los Angeles, CA 90001" +257762,Lightning Charging Cable,1,14.95,09/18/19 13:16,"675 West St, Austin, TX 73301" +257763,AAA Batteries (4-pack),2,2.99,09/01/19 04:56,"620 Ridge St, Seattle, WA 98101" +257764,AA Batteries (4-pack),1,3.84,09/20/19 10:18,"595 Madison St, Boston, MA 02215" +257765,Bose SoundSport Headphones,1,99.99,09/07/19 15:15,"407 Meadow St, Dallas, TX 75001" +257766,Bose SoundSport Headphones,1,99.99,09/01/19 08:14,"904 River St, San Francisco, CA 94016" +257767,27in FHD Monitor,1,149.99,09/16/19 12:22,"640 4th St, Seattle, WA 98101" +257768,Wired Headphones,1,11.99,09/08/19 15:21,"637 Church St, Austin, TX 73301" +257769,Lightning Charging Cable,1,14.95,09/17/19 15:55,"462 Church St, Portland, OR 97035" +257770,Flatscreen TV,1,300,09/11/19 19:26,"372 8th St, San Francisco, CA 94016" +257771,Bose SoundSport Headphones,1,99.99,09/10/19 22:09,"326 11th St, Austin, TX 73301" +257772,Apple Airpods Headphones,1,150,09/21/19 12:49,"68 2nd St, San Francisco, CA 94016" +257773,Apple Airpods Headphones,1,150,09/28/19 15:55,"939 4th St, Dallas, TX 75001" +257774,Lightning Charging Cable,1,14.95,09/16/19 19:32,"173 Jefferson St, Los Angeles, CA 90001" +257775,Macbook Pro Laptop,1,1700,09/10/19 14:31,"720 8th St, Los Angeles, CA 90001" +257776,Wired Headphones,1,11.99,09/14/19 09:53,"844 Adams St, New York City, NY 10001" +257777,Lightning Charging Cable,1,14.95,09/11/19 13:54,"413 8th St, Seattle, WA 98101" +257778,Flatscreen TV,1,300,09/19/19 16:19,"790 Adams St, San Francisco, CA 94016" +257779,27in FHD Monitor,1,149.99,09/06/19 00:25,"995 North St, Austin, TX 73301" +257780,AAA Batteries (4-pack),1,2.99,09/18/19 13:49,"221 Jackson St, Los Angeles, CA 90001" +257781,AAA Batteries (4-pack),3,2.99,09/12/19 12:26,"892 10th St, New York City, NY 10001" +257782,Lightning Charging Cable,2,14.95,09/08/19 19:43,"108 Willow St, Atlanta, GA 30301" +257783,Macbook Pro Laptop,1,1700,09/14/19 08:48,"231 7th St, Austin, TX 73301" +257784,AA Batteries (4-pack),1,3.84,09/14/19 13:00,"669 Elm St, San Francisco, CA 94016" +257785,AA Batteries (4-pack),1,3.84,09/15/19 19:57,"865 14th St, Los Angeles, CA 90001" +257786,Lightning Charging Cable,1,14.95,09/16/19 19:23,"937 Hill St, Atlanta, GA 30301" +257787,AA Batteries (4-pack),1,3.84,09/01/19 13:06,"348 Maple St, San Francisco, CA 94016" +257788,Macbook Pro Laptop,1,1700,09/21/19 09:40,"460 Hickory St, San Francisco, CA 94016" +257789,Apple Airpods Headphones,1,150,09/12/19 00:05,"871 Adams St, San Francisco, CA 94016" +257790,Google Phone,1,600,09/07/19 15:53,"50 Elm St, San Francisco, CA 94016" +257791,USB-C Charging Cable,1,11.95,09/13/19 15:59,"754 Sunset St, Dallas, TX 75001" +257792,Wired Headphones,2,11.99,09/17/19 19:40,"934 West St, Dallas, TX 75001" +257793,27in FHD Monitor,1,149.99,09/28/19 20:49,"985 River St, Boston, MA 02215" +257794,Bose SoundSport Headphones,1,99.99,09/01/19 21:23,"518 Cedar St, Austin, TX 73301" +257795,Lightning Charging Cable,1,14.95,09/09/19 12:51,"372 Willow St, San Francisco, CA 94016" +257796,27in FHD Monitor,1,149.99,09/27/19 15:08,"538 Main St, Los Angeles, CA 90001" +257797,Apple Airpods Headphones,1,150,09/12/19 20:57,"459 5th St, Dallas, TX 75001" +257798,Apple Airpods Headphones,1,150,09/23/19 12:01,"628 Ridge St, San Francisco, CA 94016" +257799,Wired Headphones,2,11.99,09/02/19 19:46,"663 Church St, Boston, MA 02215" +257799,Bose SoundSport Headphones,2,99.99,09/02/19 19:46,"663 Church St, Boston, MA 02215" +257800,27in FHD Monitor,1,149.99,09/09/19 13:03,"974 Hill St, San Francisco, CA 94016" +257801,Flatscreen TV,1,300,09/01/19 14:45,"153 5th St, Atlanta, GA 30301" +257802,Lightning Charging Cable,1,14.95,09/25/19 15:34,"364 Johnson St, San Francisco, CA 94016" +257803,27in 4K Gaming Monitor,1,389.99,09/18/19 20:01,"540 7th St, Boston, MA 02215" +257804,iPhone,1,700,09/04/19 17:16,"740 Highland St, Atlanta, GA 30301" +257805,Flatscreen TV,1,300,09/20/19 01:35,"153 Adams St, New York City, NY 10001" +257806,AAA Batteries (4-pack),1,2.99,09/11/19 02:26,"846 Center St, San Francisco, CA 94016" +257807,Apple Airpods Headphones,1,150,09/17/19 09:24,"39 13th St, San Francisco, CA 94016" +257808,Macbook Pro Laptop,1,1700,09/25/19 18:15,"110 Meadow St, Seattle, WA 98101" +257809,Lightning Charging Cable,1,14.95,09/24/19 19:37,"550 Forest St, Dallas, TX 75001" +257810,Lightning Charging Cable,2,14.95,09/13/19 09:58,"972 Washington St, New York City, NY 10001" +257811,Wired Headphones,1,11.99,09/13/19 17:48,"183 Washington St, San Francisco, CA 94016" +257812,Apple Airpods Headphones,1,150,09/22/19 09:09,"758 Meadow St, San Francisco, CA 94016" +257813,USB-C Charging Cable,1,11.95,09/02/19 12:59,"681 Hickory St, Atlanta, GA 30301" +257814,USB-C Charging Cable,1,11.95,09/28/19 06:53,"243 South St, San Francisco, CA 94016" +257815,Apple Airpods Headphones,1,150,09/17/19 19:23,"524 Hickory St, Portland, OR 97035" +257816,Apple Airpods Headphones,1,150,09/01/19 11:17,"56 14th St, Los Angeles, CA 90001" +257817,Lightning Charging Cable,1,14.95,09/12/19 08:30,"718 West St, New York City, NY 10001" +257818,Apple Airpods Headphones,1,150,09/10/19 11:37,"895 Jefferson St, Los Angeles, CA 90001" +257819,USB-C Charging Cable,1,11.95,09/30/19 12:58,"354 4th St, Seattle, WA 98101" +257820,AA Batteries (4-pack),1,3.84,09/18/19 17:37,"46 11th St, New York City, NY 10001" +257821,Lightning Charging Cable,1,14.95,09/03/19 11:51,"821 Washington St, San Francisco, CA 94016" +257822,AAA Batteries (4-pack),1,2.99,09/24/19 08:20,"720 14th St, New York City, NY 10001" +257823,AAA Batteries (4-pack),1,2.99,09/11/19 22:27,"258 Dogwood St, New York City, NY 10001" +257824,AA Batteries (4-pack),1,3.84,09/14/19 23:18,"799 River St, Boston, MA 02215" +257825,27in 4K Gaming Monitor,1,389.99,09/26/19 18:53,"750 Wilson St, Atlanta, GA 30301" +257826,ThinkPad Laptop,1,999.99,09/19/19 14:40,"627 4th St, San Francisco, CA 94016" +257827,iPhone,1,700,09/17/19 15:27,"865 Hickory St, San Francisco, CA 94016" +257828,USB-C Charging Cable,1,11.95,09/30/19 21:02,"966 Cherry St, Portland, ME 04101" +257829,Google Phone,1,600,09/30/19 08:40,"156 Washington St, Boston, MA 02215" +257830,Wired Headphones,1,11.99,09/25/19 08:29,"774 7th St, New York City, NY 10001" +257831,USB-C Charging Cable,1,11.95,09/06/19 12:00,"969 Hill St, New York City, NY 10001" +257832,AAA Batteries (4-pack),1,2.99,09/23/19 22:39,"664 Walnut St, San Francisco, CA 94016" +257833,AAA Batteries (4-pack),2,2.99,09/28/19 09:44,"679 Elm St, Portland, OR 97035" +257834,USB-C Charging Cable,1,11.95,10/01/19 00:17,"346 Maple St, Seattle, WA 98101" +257835,AAA Batteries (4-pack),2,2.99,09/20/19 18:47,"696 South St, San Francisco, CA 94016" +257836,USB-C Charging Cable,1,11.95,09/25/19 07:56,"31 6th St, Austin, TX 73301" +257837,AAA Batteries (4-pack),1,2.99,09/03/19 08:37,"201 9th St, Los Angeles, CA 90001" +257838,Lightning Charging Cable,1,14.95,09/20/19 18:01,"39 Sunset St, New York City, NY 10001" +257839,Bose SoundSport Headphones,1,99.99,09/18/19 21:35,"141 Hill St, Los Angeles, CA 90001" +257840,Apple Airpods Headphones,1,150,09/27/19 09:36,"572 Willow St, Portland, ME 04101" +257841,Lightning Charging Cable,1,14.95,09/28/19 22:17,"675 11th St, San Francisco, CA 94016" +257842,Wired Headphones,1,11.99,09/08/19 12:29,"853 9th St, Austin, TX 73301" +257843,Wired Headphones,1,11.99,09/12/19 13:32,"990 Forest St, Seattle, WA 98101" +257844,20in Monitor,1,109.99,09/30/19 17:30,"836 Park St, Portland, OR 97035" +257845,AA Batteries (4-pack),2,3.84,09/22/19 18:15,"544 9th St, Boston, MA 02215" +257846,Apple Airpods Headphones,1,150,09/16/19 21:27,"850 9th St, San Francisco, CA 94016" +257847,AA Batteries (4-pack),2,3.84,09/18/19 11:50,"470 Lakeview St, San Francisco, CA 94016" +257848,USB-C Charging Cable,1,11.95,09/24/19 10:33,"318 Main St, Los Angeles, CA 90001" +257849,USB-C Charging Cable,1,11.95,09/05/19 13:12,"118 Main St, Los Angeles, CA 90001" +257849,Flatscreen TV,1,300,09/05/19 13:12,"118 Main St, Los Angeles, CA 90001" +257850,USB-C Charging Cable,1,11.95,09/07/19 15:29,"917 6th St, New York City, NY 10001" +257851,27in 4K Gaming Monitor,1,389.99,09/21/19 21:06,"376 Lake St, New York City, NY 10001" +257852,27in 4K Gaming Monitor,1,389.99,09/24/19 14:47,"205 Sunset St, Seattle, WA 98101" +257853,Apple Airpods Headphones,1,150,09/10/19 12:58,"636 Ridge St, Dallas, TX 75001" +257854,USB-C Charging Cable,1,11.95,09/17/19 17:00,"702 14th St, Los Angeles, CA 90001" +257854,AAA Batteries (4-pack),3,2.99,09/17/19 17:00,"702 14th St, Los Angeles, CA 90001" +257855,AAA Batteries (4-pack),2,2.99,09/03/19 12:58,"82 Church St, Portland, OR 97035" +257856,Lightning Charging Cable,1,14.95,09/26/19 12:38,"100 7th St, Los Angeles, CA 90001" +257857,34in Ultrawide Monitor,1,379.99,09/06/19 13:48,"359 Center St, San Francisco, CA 94016" +257858,Wired Headphones,1,11.99,09/22/19 10:07,"263 8th St, Los Angeles, CA 90001" +257859,Apple Airpods Headphones,1,150,09/09/19 20:34,"58 Maple St, Seattle, WA 98101" +257860,AA Batteries (4-pack),1,3.84,09/17/19 20:48,"613 Willow St, San Francisco, CA 94016" +257861,Lightning Charging Cable,2,14.95,09/04/19 21:54,"83 Wilson St, Los Angeles, CA 90001" +257862,AA Batteries (4-pack),2,3.84,09/20/19 11:48,"890 Center St, New York City, NY 10001" +257863,Bose SoundSport Headphones,1,99.99,09/07/19 14:45,"998 Main St, Portland, OR 97035" +257864,ThinkPad Laptop,1,999.99,09/03/19 10:28,"546 Pine St, San Francisco, CA 94016" +257865,Wired Headphones,1,11.99,09/29/19 13:15,"684 Cedar St, New York City, NY 10001" +257866,Lightning Charging Cable,1,14.95,09/09/19 14:22,"725 Ridge St, Seattle, WA 98101" +257867,AAA Batteries (4-pack),2,2.99,09/09/19 01:51,"253 Hill St, Atlanta, GA 30301" +257868,20in Monitor,1,109.99,09/18/19 21:09,"39 14th St, Atlanta, GA 30301" +257869,27in FHD Monitor,1,149.99,09/29/19 09:48,"386 Forest St, Boston, MA 02215" +257870,Bose SoundSport Headphones,1,99.99,09/06/19 12:03,"634 Highland St, Boston, MA 02215" +257871,iPhone,1,700,09/14/19 19:50,"58 River St, Los Angeles, CA 90001" +257871,Lightning Charging Cable,1,14.95,09/14/19 19:50,"58 River St, Los Angeles, CA 90001" +257872,34in Ultrawide Monitor,1,379.99,09/18/19 18:54,"718 14th St, Boston, MA 02215" +257873,Apple Airpods Headphones,1,150,09/09/19 12:15,"15 Sunset St, New York City, NY 10001" +257874,iPhone,1,700,09/14/19 14:03,"712 Church St, San Francisco, CA 94016" +257875,AA Batteries (4-pack),1,3.84,09/20/19 21:26,"992 2nd St, San Francisco, CA 94016" +257876,AAA Batteries (4-pack),1,2.99,09/09/19 08:49,"563 4th St, San Francisco, CA 94016" +257877,Lightning Charging Cable,1,14.95,09/24/19 19:21,"294 9th St, San Francisco, CA 94016" +257878,USB-C Charging Cable,1,11.95,09/19/19 18:42,"152 Cedar St, Los Angeles, CA 90001" +257879,Google Phone,1,600,09/07/19 11:57,"551 South St, New York City, NY 10001" +257880,USB-C Charging Cable,1,11.95,09/10/19 13:09,"640 12th St, Seattle, WA 98101" +257881,ThinkPad Laptop,1,999.99,09/22/19 19:46,"673 River St, San Francisco, CA 94016" +257882,Wired Headphones,1,11.99,09/17/19 09:15,"764 Adams St, New York City, NY 10001" +257883,Google Phone,1,600,09/26/19 19:13,"113 5th St, Atlanta, GA 30301" +257884,Flatscreen TV,1,300,09/17/19 06:06,"221 Elm St, Los Angeles, CA 90001" +257885,Google Phone,1,600,09/05/19 07:52,"18 1st St, Los Angeles, CA 90001" +257886,AA Batteries (4-pack),1,3.84,09/12/19 20:24,"956 Main St, Atlanta, GA 30301" +257886,Bose SoundSport Headphones,1,99.99,09/12/19 20:24,"956 Main St, Atlanta, GA 30301" +257887,Lightning Charging Cable,1,14.95,09/25/19 19:05,"386 Johnson St, Atlanta, GA 30301" +257888,Bose SoundSport Headphones,1,99.99,09/11/19 18:07,"911 Adams St, Los Angeles, CA 90001" +257889,34in Ultrawide Monitor,1,379.99,09/11/19 20:01,"309 Center St, Dallas, TX 75001" +257890,Apple Airpods Headphones,2,150,09/10/19 14:17,"60 Madison St, Dallas, TX 75001" +257890,27in 4K Gaming Monitor,1,389.99,09/10/19 14:17,"60 Madison St, Dallas, TX 75001" +257891,34in Ultrawide Monitor,1,379.99,09/12/19 17:29,"382 Walnut St, Boston, MA 02215" +257892,Lightning Charging Cable,1,14.95,09/07/19 02:56,"122 5th St, San Francisco, CA 94016" +257893,Lightning Charging Cable,1,14.95,09/20/19 04:49,"341 River St, San Francisco, CA 94016" +257894,Lightning Charging Cable,1,14.95,09/01/19 20:06,"309 Sunset St, Los Angeles, CA 90001" +257895,Lightning Charging Cable,1,14.95,09/18/19 17:52,"543 Elm St, Los Angeles, CA 90001" +257896,Apple Airpods Headphones,1,150,09/30/19 14:24,"483 1st St, Dallas, TX 75001" +257897,27in 4K Gaming Monitor,1,389.99,09/14/19 18:30,"332 Center St, Boston, MA 02215" +257898,AA Batteries (4-pack),2,3.84,09/11/19 10:34,"820 West St, Seattle, WA 98101" +257899,AAA Batteries (4-pack),1,2.99,09/11/19 13:36,"314 11th St, Seattle, WA 98101" +257900,Wired Headphones,1,11.99,09/07/19 15:35,"718 Spruce St, Los Angeles, CA 90001" +257900,Wired Headphones,1,11.99,09/07/19 15:35,"718 Spruce St, Los Angeles, CA 90001" +257901,Bose SoundSport Headphones,1,99.99,09/25/19 11:57,"522 Lake St, Dallas, TX 75001" +257902,Wired Headphones,2,11.99,09/20/19 14:01,"783 Spruce St, Los Angeles, CA 90001" +257903,Wired Headphones,1,11.99,09/21/19 14:27,"134 Jackson St, Atlanta, GA 30301" +257904,AA Batteries (4-pack),1,3.84,09/04/19 18:52,"611 Maple St, New York City, NY 10001" +257905,ThinkPad Laptop,1,999.99,09/16/19 11:55,"312 Jefferson St, Dallas, TX 75001" +257906,USB-C Charging Cable,1,11.95,09/28/19 10:22,"71 Highland St, Seattle, WA 98101" +257907,Wired Headphones,1,11.99,09/23/19 16:20,"97 Main St, Los Angeles, CA 90001" +257908,LG Washing Machine,1,600.0,09/18/19 19:56,"543 Madison St, Atlanta, GA 30301" +257909,27in 4K Gaming Monitor,1,389.99,09/03/19 16:12,"228 6th St, Seattle, WA 98101" +257910,AAA Batteries (4-pack),1,2.99,09/07/19 08:05,"102 8th St, Los Angeles, CA 90001" +257911,AAA Batteries (4-pack),6,2.99,09/17/19 20:44,"25 Main St, Los Angeles, CA 90001" +257912,USB-C Charging Cable,1,11.95,09/20/19 20:16,"710 Walnut St, San Francisco, CA 94016" +257913,Apple Airpods Headphones,1,150,09/23/19 02:11,"498 5th St, Atlanta, GA 30301" +257914,27in FHD Monitor,1,149.99,09/08/19 16:29,"580 North St, San Francisco, CA 94016" +257915,Wired Headphones,1,11.99,09/24/19 20:32,"899 Washington St, San Francisco, CA 94016" +257916,Wired Headphones,1,11.99,09/16/19 16:20,"335 9th St, New York City, NY 10001" +257917,27in 4K Gaming Monitor,1,389.99,09/03/19 17:30,"731 Jefferson St, Los Angeles, CA 90001" +257918,Apple Airpods Headphones,1,150,09/05/19 02:04,"212 North St, Los Angeles, CA 90001" +257919,Bose SoundSport Headphones,1,99.99,09/24/19 01:45,"746 7th St, Dallas, TX 75001" +257920,AA Batteries (4-pack),2,3.84,09/30/19 20:59,"516 Forest St, San Francisco, CA 94016" +257921,AA Batteries (4-pack),2,3.84,09/12/19 23:25,"408 Hickory St, New York City, NY 10001" +257922,Apple Airpods Headphones,1,150,09/11/19 18:56,"288 Cedar St, Boston, MA 02215" +257923,Bose SoundSport Headphones,1,99.99,09/17/19 11:16,"47 Lincoln St, Atlanta, GA 30301" +257924,USB-C Charging Cable,1,11.95,09/15/19 14:47,"227 Ridge St, Boston, MA 02215" +257925,Bose SoundSport Headphones,1,99.99,09/02/19 17:02,"336 4th St, Portland, OR 97035" +257926,AAA Batteries (4-pack),1,2.99,09/08/19 13:44,"811 12th St, San Francisco, CA 94016" +257927,USB-C Charging Cable,1,11.95,09/02/19 20:46,"922 Lakeview St, San Francisco, CA 94016" +257928,Lightning Charging Cable,1,14.95,09/24/19 18:36,"64 Lakeview St, Los Angeles, CA 90001" +257929,27in 4K Gaming Monitor,1,389.99,09/20/19 23:37,"224 6th St, Boston, MA 02215" +257930,Lightning Charging Cable,1,14.95,09/04/19 09:19,"344 Jefferson St, San Francisco, CA 94016" +257931,USB-C Charging Cable,1,11.95,09/10/19 13:10,"715 Washington St, Dallas, TX 75001" +257932,Lightning Charging Cable,1,14.95,09/06/19 13:30,"39 12th St, San Francisco, CA 94016" +257933,Bose SoundSport Headphones,1,99.99,09/24/19 09:48,"103 West St, Boston, MA 02215" +257934,AA Batteries (4-pack),1,3.84,09/17/19 10:56,"405 South St, Portland, OR 97035" +257935,AA Batteries (4-pack),2,3.84,09/16/19 22:41,"834 Chestnut St, Dallas, TX 75001" +257936,Apple Airpods Headphones,1,150,09/25/19 02:54,"277 Highland St, Austin, TX 73301" +257937,34in Ultrawide Monitor,1,379.99,09/22/19 22:14,"852 West St, San Francisco, CA 94016" +257938,AAA Batteries (4-pack),1,2.99,09/29/19 13:43,"905 Meadow St, Dallas, TX 75001" +257939,Wired Headphones,1,11.99,09/18/19 12:35,"270 Lake St, Austin, TX 73301" +257940,AA Batteries (4-pack),1,3.84,09/02/19 12:11,"661 Madison St, Los Angeles, CA 90001" +257941,Lightning Charging Cable,1,14.95,09/18/19 16:49,"360 1st St, Atlanta, GA 30301" +257942,Google Phone,1,600,09/20/19 15:27,"21 1st St, Boston, MA 02215" +257942,Bose SoundSport Headphones,1,99.99,09/20/19 15:27,"21 1st St, Boston, MA 02215" +257943,27in FHD Monitor,1,149.99,09/26/19 17:33,"688 Church St, Dallas, TX 75001" +257944,Wired Headphones,1,11.99,09/13/19 16:52,"354 4th St, Boston, MA 02215" +257945,Google Phone,1,600,09/02/19 09:05,"327 Adams St, Los Angeles, CA 90001" +257946,Wired Headphones,1,11.99,09/10/19 15:22,"236 Madison St, Atlanta, GA 30301" +257947,USB-C Charging Cable,1,11.95,09/10/19 08:25,"734 9th St, Boston, MA 02215" +257948,iPhone,1,700,09/08/19 13:31,"643 5th St, New York City, NY 10001" +257948,Wired Headphones,1,11.99,09/08/19 13:31,"643 5th St, New York City, NY 10001" +257949,Apple Airpods Headphones,1,150,09/15/19 18:20,"600 Jefferson St, Dallas, TX 75001" +257950,Wired Headphones,1,11.99,09/06/19 14:40,"942 2nd St, Atlanta, GA 30301" +257951,Macbook Pro Laptop,1,1700,09/24/19 20:50,"65 South St, New York City, NY 10001" +257952,AA Batteries (4-pack),1,3.84,09/05/19 10:51,"461 8th St, Los Angeles, CA 90001" +257953,iPhone,1,700,09/27/19 14:56,"199 Walnut St, New York City, NY 10001" +257954,USB-C Charging Cable,1,11.95,09/14/19 09:25,"864 Jefferson St, New York City, NY 10001" +257955,27in FHD Monitor,1,149.99,09/29/19 17:54,"263 2nd St, New York City, NY 10001" +257956,Lightning Charging Cable,1,14.95,09/05/19 10:01,"165 Elm St, New York City, NY 10001" +257956,iPhone,1,700,09/05/19 10:01,"165 Elm St, New York City, NY 10001" +257957,Wired Headphones,1,11.99,09/10/19 20:39,"87 Sunset St, Boston, MA 02215" +257958,Bose SoundSport Headphones,1,99.99,09/27/19 16:32,"752 2nd St, Dallas, TX 75001" +257959,AAA Batteries (4-pack),1,2.99,09/01/19 14:05,"300 Cherry St, Boston, MA 02215" +257960,Wired Headphones,1,11.99,09/02/19 11:58,"421 Center St, Los Angeles, CA 90001" +257961,Wired Headphones,2,11.99,09/24/19 14:23,"269 12th St, San Francisco, CA 94016" +257962,Vareebadd Phone,1,400,09/11/19 01:23,"191 Washington St, Atlanta, GA 30301" +257963,27in FHD Monitor,1,149.99,09/25/19 07:33,"611 1st St, Portland, OR 97035" +257964,AAA Batteries (4-pack),1,2.99,09/30/19 22:09,"450 North St, Los Angeles, CA 90001" +257965,USB-C Charging Cable,1,11.95,09/02/19 22:03,"598 Jackson St, New York City, NY 10001" +257966,AA Batteries (4-pack),1,3.84,09/04/19 12:55,"703 Center St, Seattle, WA 98101" +257967,LG Washing Machine,1,600.0,09/21/19 09:58,"725 West St, Atlanta, GA 30301" +257968,34in Ultrawide Monitor,1,379.99,09/22/19 15:16,"143 Lincoln St, Los Angeles, CA 90001" +257969,iPhone,1,700,09/23/19 06:45,"270 14th St, New York City, NY 10001" +257970,34in Ultrawide Monitor,1,379.99,09/19/19 11:03,"395 North St, San Francisco, CA 94016" +257971,Lightning Charging Cable,1,14.95,09/17/19 23:33,"709 4th St, Los Angeles, CA 90001" +257972,AA Batteries (4-pack),1,3.84,09/09/19 20:21,"896 Madison St, San Francisco, CA 94016" +257973,Google Phone,1,600,09/01/19 15:38,"312 Wilson St, San Francisco, CA 94016" +257974,Macbook Pro Laptop,1,1700,09/06/19 20:11,"747 13th St, Boston, MA 02215" +257975,Wired Headphones,1,11.99,09/25/19 06:26,"653 Walnut St, Dallas, TX 75001" +257976,Wired Headphones,1,11.99,09/13/19 22:33,"183 Madison St, Portland, OR 97035" +257977,Apple Airpods Headphones,1,150,09/17/19 16:52,"215 Johnson St, New York City, NY 10001" +257978,Apple Airpods Headphones,1,150,09/26/19 16:01,"575 8th St, San Francisco, CA 94016" +257979,34in Ultrawide Monitor,1,379.99,09/24/19 13:42,"354 7th St, San Francisco, CA 94016" +257980,USB-C Charging Cable,1,11.95,09/18/19 15:26,"74 Lakeview St, San Francisco, CA 94016" +257981,27in FHD Monitor,1,149.99,09/03/19 09:58,"604 Lake St, Seattle, WA 98101" +257982,USB-C Charging Cable,1,11.95,09/23/19 19:02,"529 Cedar St, San Francisco, CA 94016" +257983,Lightning Charging Cable,1,14.95,09/28/19 20:50,"134 Jackson St, San Francisco, CA 94016" +257984,Bose SoundSport Headphones,1,99.99,09/27/19 06:28,"823 7th St, Boston, MA 02215" +257985,Macbook Pro Laptop,1,1700,09/09/19 09:11,"91 9th St, San Francisco, CA 94016" +257986,ThinkPad Laptop,1,999.99,09/20/19 04:06,"91 14th St, Los Angeles, CA 90001" +257987,ThinkPad Laptop,1,999.99,09/22/19 00:09,"118 6th St, Atlanta, GA 30301" +257988,Lightning Charging Cable,1,14.95,09/06/19 07:54,"167 Washington St, San Francisco, CA 94016" +257989,AAA Batteries (4-pack),1,2.99,09/18/19 13:41,"736 11th St, Portland, OR 97035" +257990,Bose SoundSport Headphones,1,99.99,09/05/19 18:06,"437 Lincoln St, New York City, NY 10001" +257991,20in Monitor,1,109.99,09/14/19 22:08,"286 Washington St, San Francisco, CA 94016" +257992,USB-C Charging Cable,1,11.95,09/23/19 16:34,"148 Hill St, Boston, MA 02215" +257993,USB-C Charging Cable,1,11.95,09/13/19 21:44,"904 Church St, Austin, TX 73301" +257994,Wired Headphones,1,11.99,09/03/19 09:38,"719 Cedar St, San Francisco, CA 94016" +257995,Bose SoundSport Headphones,1,99.99,09/27/19 10:48,"692 Maple St, Austin, TX 73301" +257995,Bose SoundSport Headphones,1,99.99,09/27/19 10:48,"692 Maple St, Austin, TX 73301" +257996,AA Batteries (4-pack),1,3.84,09/04/19 15:54,"267 Walnut St, New York City, NY 10001" +257997,USB-C Charging Cable,1,11.95,09/09/19 23:14,"631 Willow St, Los Angeles, CA 90001" +257998,AA Batteries (4-pack),1,3.84,09/12/19 12:17,"302 1st St, Dallas, TX 75001" +257999,AA Batteries (4-pack),1,3.84,09/22/19 11:48,"728 9th St, Atlanta, GA 30301" +258000,Wired Headphones,2,11.99,09/18/19 11:01,"56 Sunset St, Dallas, TX 75001" +258001,Lightning Charging Cable,1,14.95,09/03/19 10:37,"794 Jackson St, Los Angeles, CA 90001" +258002,USB-C Charging Cable,1,11.95,09/19/19 09:37,"3 Lincoln St, Austin, TX 73301" +258003,AAA Batteries (4-pack),1,2.99,09/26/19 21:18,"206 2nd St, San Francisco, CA 94016" +258004,Lightning Charging Cable,1,14.95,09/07/19 23:50,"926 Sunset St, New York City, NY 10001" +258005,Wired Headphones,1,11.99,09/11/19 11:13,"450 Elm St, New York City, NY 10001" +258006,AAA Batteries (4-pack),1,2.99,09/21/19 20:10,"460 6th St, San Francisco, CA 94016" +258007,AA Batteries (4-pack),2,3.84,09/03/19 17:09,"594 Cherry St, Atlanta, GA 30301" +258008,Wired Headphones,1,11.99,09/29/19 14:09,"235 Johnson St, New York City, NY 10001" +258009,34in Ultrawide Monitor,1,379.99,09/26/19 18:10,"649 Spruce St, Boston, MA 02215" +258010,USB-C Charging Cable,1,11.95,09/27/19 20:13,"782 Willow St, Boston, MA 02215" +258011,Bose SoundSport Headphones,1,99.99,09/07/19 15:51,"162 South St, Austin, TX 73301" +258012,AA Batteries (4-pack),1,3.84,09/08/19 22:20,"914 11th St, New York City, NY 10001" +258013,USB-C Charging Cable,1,11.95,09/13/19 19:46,"9 10th St, Los Angeles, CA 90001" +258014,Bose SoundSport Headphones,1,99.99,09/22/19 15:07,"183 Elm St, Los Angeles, CA 90001" +258015,USB-C Charging Cable,1,11.95,09/09/19 12:49,"732 2nd St, Boston, MA 02215" +258016,AAA Batteries (4-pack),5,2.99,09/22/19 11:28,"517 Cedar St, San Francisco, CA 94016" +258017,AA Batteries (4-pack),2,3.84,09/20/19 00:27,"414 Hill St, Los Angeles, CA 90001" +258018,AAA Batteries (4-pack),2,2.99,09/26/19 06:43,"501 Cherry St, Dallas, TX 75001" +258019,USB-C Charging Cable,1,11.95,09/26/19 12:21,"621 Sunset St, Atlanta, GA 30301" +258020,Apple Airpods Headphones,1,150,09/25/19 13:14,"35 13th St, New York City, NY 10001" +258021,AA Batteries (4-pack),1,3.84,09/22/19 10:03,"404 Park St, San Francisco, CA 94016" +258022,AA Batteries (4-pack),3,3.84,09/14/19 16:23,"99 Chestnut St, Austin, TX 73301" +258023,Wired Headphones,1,11.99,09/01/19 18:34,"990 Forest St, Seattle, WA 98101" +258024,AA Batteries (4-pack),2,3.84,09/30/19 13:46,"862 Cedar St, Dallas, TX 75001" +,,,,, +258025,USB-C Charging Cable,1,11.95,09/24/19 19:05,"358 Pine St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +258026,Lightning Charging Cable,2,14.95,09/05/19 10:33,"856 Hill St, San Francisco, CA 94016" +258027,Lightning Charging Cable,1,14.95,09/19/19 22:55,"582 Forest St, Boston, MA 02215" +258028,Wired Headphones,1,11.99,09/18/19 18:10,"546 North St, Los Angeles, CA 90001" +258029,AAA Batteries (4-pack),1,2.99,09/27/19 19:52,"432 Maple St, San Francisco, CA 94016" +258030,Wired Headphones,1,11.99,09/13/19 16:51,"896 Sunset St, Los Angeles, CA 90001" +258031,Lightning Charging Cable,2,14.95,09/18/19 13:33,"687 14th St, San Francisco, CA 94016" +258032,USB-C Charging Cable,1,11.95,09/08/19 20:57,"858 10th St, San Francisco, CA 94016" +,,,,, +258033,Wired Headphones,1,11.99,09/19/19 23:19,"662 5th St, Los Angeles, CA 90001" +258034,AAA Batteries (4-pack),1,2.99,09/19/19 11:01,"184 14th St, San Francisco, CA 94016" +258035,USB-C Charging Cable,1,11.95,09/05/19 17:17,"786 7th St, Los Angeles, CA 90001" +258036,Lightning Charging Cable,1,14.95,09/06/19 11:41,"411 Willow St, Austin, TX 73301" +258037,34in Ultrawide Monitor,1,379.99,09/09/19 10:49,"313 Cherry St, Los Angeles, CA 90001" +258038,20in Monitor,1,109.99,09/14/19 17:47,"108 Highland St, New York City, NY 10001" +258039,Wired Headphones,1,11.99,09/03/19 21:42,"726 Jackson St, Seattle, WA 98101" +258040,AAA Batteries (4-pack),1,2.99,09/17/19 12:04,"751 Park St, Los Angeles, CA 90001" +258041,USB-C Charging Cable,1,11.95,09/13/19 14:05,"760 Meadow St, San Francisco, CA 94016" +258042,USB-C Charging Cable,1,11.95,09/23/19 20:27,"138 Cherry St, San Francisco, CA 94016" +258043,LG Dryer,1,600.0,09/17/19 13:23,"904 Wilson St, Dallas, TX 75001" +258044,Lightning Charging Cable,1,14.95,09/18/19 05:42,"444 4th St, Los Angeles, CA 90001" +258045,Macbook Pro Laptop,1,1700,09/11/19 23:02,"675 Forest St, San Francisco, CA 94016" +258046,AA Batteries (4-pack),1,3.84,09/17/19 18:02,"79 Chestnut St, Seattle, WA 98101" +258047,Bose SoundSport Headphones,1,99.99,09/01/19 17:36,"906 Maple St, San Francisco, CA 94016" +258048,Bose SoundSport Headphones,1,99.99,09/04/19 23:04,"527 Washington St, Los Angeles, CA 90001" +258049,AA Batteries (4-pack),1,3.84,09/23/19 16:37,"293 West St, Boston, MA 02215" +258050,27in 4K Gaming Monitor,1,389.99,09/28/19 15:47,"311 Cedar St, Portland, OR 97035" +258051,AA Batteries (4-pack),1,3.84,09/08/19 21:47,"963 Washington St, Los Angeles, CA 90001" +258052,Bose SoundSport Headphones,1,99.99,09/11/19 16:49,"44 Sunset St, Atlanta, GA 30301" +258053,34in Ultrawide Monitor,1,379.99,09/08/19 23:13,"111 Center St, San Francisco, CA 94016" +258054,Wired Headphones,1,11.99,09/24/19 10:57,"283 Cherry St, Atlanta, GA 30301" +258055,Google Phone,1,600,09/15/19 13:53,"290 8th St, Seattle, WA 98101" +258055,Wired Headphones,2,11.99,09/15/19 13:53,"290 8th St, Seattle, WA 98101" +258056,Apple Airpods Headphones,1,150,09/09/19 19:18,"203 7th St, Los Angeles, CA 90001" +258057,Google Phone,1,600,09/13/19 12:57,"316 12th St, Los Angeles, CA 90001" +258057,Wired Headphones,1,11.99,09/13/19 12:57,"316 12th St, Los Angeles, CA 90001" +258058,Lightning Charging Cable,1,14.95,09/16/19 14:54,"53 Spruce St, New York City, NY 10001" +258059,USB-C Charging Cable,1,11.95,09/08/19 22:48,"763 Cedar St, Portland, OR 97035" +258060,Apple Airpods Headphones,1,150,09/09/19 15:04,"87 Lake St, San Francisco, CA 94016" +258061,AA Batteries (4-pack),2,3.84,09/04/19 22:06,"117 1st St, Los Angeles, CA 90001" +258062,Wired Headphones,1,11.99,09/20/19 07:55,"495 Jefferson St, San Francisco, CA 94016" +258063,AA Batteries (4-pack),1,3.84,09/10/19 17:35,"288 Park St, San Francisco, CA 94016" +258064,USB-C Charging Cable,1,11.95,09/09/19 11:43,"307 13th St, Dallas, TX 75001" +258065,AAA Batteries (4-pack),1,2.99,09/26/19 19:24,"614 5th St, Portland, OR 97035" +258066,AAA Batteries (4-pack),3,2.99,09/11/19 23:14,"97 12th St, San Francisco, CA 94016" +258067,Wired Headphones,1,11.99,09/05/19 14:17,"671 Walnut St, San Francisco, CA 94016" +258068,Apple Airpods Headphones,1,150,09/06/19 10:13,"736 Ridge St, Dallas, TX 75001" +258069,ThinkPad Laptop,1,999.99,09/26/19 11:29,"547 11th St, Seattle, WA 98101" +258070,Lightning Charging Cable,1,14.95,09/06/19 20:45,"168 12th St, Boston, MA 02215" +258071,Wired Headphones,1,11.99,09/05/19 20:04,"638 5th St, Atlanta, GA 30301" +258072,Bose SoundSport Headphones,1,99.99,09/05/19 09:35,"705 Wilson St, Los Angeles, CA 90001" +258073,Macbook Pro Laptop,1,1700,09/03/19 18:27,"751 Main St, Los Angeles, CA 90001" +258074,Wired Headphones,1,11.99,09/11/19 13:42,"481 12th St, San Francisco, CA 94016" +258075,AAA Batteries (4-pack),1,2.99,09/12/19 19:20,"725 4th St, Boston, MA 02215" +258075,ThinkPad Laptop,1,999.99,09/12/19 19:20,"725 4th St, Boston, MA 02215" +258076,Bose SoundSport Headphones,1,99.99,09/01/19 11:32,"420 West St, Austin, TX 73301" +258077,27in 4K Gaming Monitor,1,389.99,09/17/19 02:40,"569 Main St, Seattle, WA 98101" +258078,Bose SoundSport Headphones,1,99.99,09/06/19 12:16,"850 Jefferson St, New York City, NY 10001" +258079,AA Batteries (4-pack),1,3.84,09/10/19 14:40,"98 North St, San Francisco, CA 94016" +258080,Vareebadd Phone,1,400,09/27/19 15:49,"756 Madison St, San Francisco, CA 94016" +258081,AAA Batteries (4-pack),1,2.99,09/03/19 16:40,"967 Wilson St, Austin, TX 73301" +258082,34in Ultrawide Monitor,1,379.99,09/18/19 12:33,"145 Jefferson St, Los Angeles, CA 90001" +258083,USB-C Charging Cable,1,11.95,09/14/19 19:24,"695 6th St, Portland, OR 97035" +258084,USB-C Charging Cable,1,11.95,09/05/19 23:02,"219 Ridge St, New York City, NY 10001" +258085,27in FHD Monitor,1,149.99,09/20/19 09:50,"504 Main St, Dallas, TX 75001" +258086,Lightning Charging Cable,1,14.95,09/01/19 14:46,"664 Walnut St, Portland, OR 97035" +258087,Wired Headphones,1,11.99,09/20/19 18:09,"404 Dogwood St, Los Angeles, CA 90001" +258088,iPhone,1,700,09/21/19 00:26,"572 West St, San Francisco, CA 94016" +258088,Apple Airpods Headphones,1,150,09/21/19 00:26,"572 West St, San Francisco, CA 94016" +258089,AA Batteries (4-pack),2,3.84,09/25/19 11:45,"794 Cherry St, Los Angeles, CA 90001" +258090,Apple Airpods Headphones,1,150,09/20/19 21:43,"14 Main St, San Francisco, CA 94016" +258091,USB-C Charging Cable,1,11.95,09/01/19 12:09,"556 Madison St, San Francisco, CA 94016" +258092,Flatscreen TV,1,300,09/05/19 16:42,"431 Willow St, Seattle, WA 98101" +258093,AA Batteries (4-pack),2,3.84,09/10/19 18:17,"60 Pine St, San Francisco, CA 94016" +258094,Wired Headphones,1,11.99,09/28/19 13:28,"949 West St, San Francisco, CA 94016" +258095,Wired Headphones,1,11.99,09/23/19 13:54,"262 Meadow St, San Francisco, CA 94016" +258096,Vareebadd Phone,1,400,09/04/19 17:20,"685 Maple St, Los Angeles, CA 90001" +258097,Apple Airpods Headphones,1,150,09/27/19 14:56,"128 Cherry St, Los Angeles, CA 90001" +258098,iPhone,1,700,09/18/19 17:20,"264 Madison St, Atlanta, GA 30301" +258098,Wired Headphones,1,11.99,09/18/19 17:20,"264 Madison St, Atlanta, GA 30301" +258099,34in Ultrawide Monitor,1,379.99,09/14/19 21:14,"462 Hickory St, San Francisco, CA 94016" +258100,Macbook Pro Laptop,1,1700,09/07/19 21:00,"829 2nd St, Los Angeles, CA 90001" +258101,Apple Airpods Headphones,1,150,09/22/19 18:05,"241 Maple St, New York City, NY 10001" +258102,USB-C Charging Cable,1,11.95,09/08/19 21:02,"548 6th St, San Francisco, CA 94016" +258103,Macbook Pro Laptop,1,1700,09/23/19 11:02,"686 Jackson St, Los Angeles, CA 90001" +258104,iPhone,1,700,09/17/19 18:18,"934 Church St, Dallas, TX 75001" +258105,Bose SoundSport Headphones,1,99.99,09/05/19 07:34,"48 Sunset St, Austin, TX 73301" +258106,Bose SoundSport Headphones,1,99.99,09/09/19 22:29,"38 Sunset St, New York City, NY 10001" +258107,Flatscreen TV,1,300,09/11/19 22:16,"792 2nd St, Los Angeles, CA 90001" +258108,AAA Batteries (4-pack),2,2.99,09/01/19 08:27,"396 Hickory St, Austin, TX 73301" +258109,iPhone,1,700,09/04/19 22:03,"522 Chestnut St, Atlanta, GA 30301" +258109,Lightning Charging Cable,2,14.95,09/04/19 22:03,"522 Chestnut St, Atlanta, GA 30301" +258110,Wired Headphones,1,11.99,09/19/19 22:10,"330 Park St, Atlanta, GA 30301" +258111,27in FHD Monitor,1,149.99,09/04/19 20:51,"998 Madison St, San Francisco, CA 94016" +258112,Lightning Charging Cable,1,14.95,09/27/19 11:38,"25 Willow St, San Francisco, CA 94016" +258113,USB-C Charging Cable,1,11.95,09/17/19 13:24,"630 5th St, New York City, NY 10001" +258114,Google Phone,1,600,09/04/19 07:17,"895 4th St, Los Angeles, CA 90001" +258115,Google Phone,1,600,09/02/19 13:35,"55 14th St, San Francisco, CA 94016" +258116,34in Ultrawide Monitor,1,379.99,09/23/19 19:29,"704 Center St, Los Angeles, CA 90001" +258117,Vareebadd Phone,1,400,09/24/19 20:14,"321 Walnut St, San Francisco, CA 94016" +258118,AAA Batteries (4-pack),1,2.99,09/07/19 21:27,"965 Wilson St, Austin, TX 73301" +258119,AAA Batteries (4-pack),1,2.99,09/01/19 14:51,"233 Cedar St, San Francisco, CA 94016" +258120,Macbook Pro Laptop,1,1700,09/28/19 23:46,"897 North St, New York City, NY 10001" +258121,27in FHD Monitor,1,149.99,09/25/19 18:55,"410 Cherry St, Los Angeles, CA 90001" +258122,20in Monitor,1,109.99,09/27/19 22:47,"921 Maple St, San Francisco, CA 94016" +258123,AA Batteries (4-pack),2,3.84,09/20/19 11:17,"554 8th St, Atlanta, GA 30301" +258124,27in FHD Monitor,1,149.99,09/20/19 18:30,"763 7th St, Los Angeles, CA 90001" +258125,Flatscreen TV,1,300,09/14/19 22:12,"18 North St, San Francisco, CA 94016" +258126,iPhone,1,700,09/20/19 17:01,"226 West St, Dallas, TX 75001" +258127,Apple Airpods Headphones,1,150,09/13/19 11:32,"823 North St, Dallas, TX 75001" +258128,Bose SoundSport Headphones,1,99.99,09/30/19 13:37,"360 Johnson St, Seattle, WA 98101" +258128,Wired Headphones,1,11.99,09/30/19 13:37,"360 Johnson St, Seattle, WA 98101" +258129,Lightning Charging Cable,1,14.95,09/11/19 15:44,"796 Highland St, San Francisco, CA 94016" +258130,AAA Batteries (4-pack),1,2.99,09/21/19 17:05,"564 14th St, Los Angeles, CA 90001" +258131,Apple Airpods Headphones,1,150,09/06/19 15:13,"554 Hill St, Portland, OR 97035" +258132,27in FHD Monitor,1,149.99,09/12/19 18:38,"677 1st St, New York City, NY 10001" +258133,Apple Airpods Headphones,1,150,09/18/19 21:02,"492 Washington St, New York City, NY 10001" +258134,AA Batteries (4-pack),3,3.84,09/13/19 16:11,"352 West St, San Francisco, CA 94016" +258135,Bose SoundSport Headphones,1,99.99,09/03/19 13:18,"276 Lake St, Los Angeles, CA 90001" +258136,Lightning Charging Cable,1,14.95,09/17/19 20:00,"830 9th St, Dallas, TX 75001" +258137,Google Phone,1,600,09/11/19 10:18,"204 Lake St, Portland, ME 04101" +258138,Bose SoundSport Headphones,1,99.99,09/12/19 11:37,"594 Center St, San Francisco, CA 94016" +258139,27in 4K Gaming Monitor,1,389.99,09/15/19 20:38,"496 Highland St, Los Angeles, CA 90001" +258140,Wired Headphones,1,11.99,09/08/19 15:49,"7 Hickory St, Los Angeles, CA 90001" +258141,27in FHD Monitor,1,149.99,09/25/19 21:27,"307 Highland St, New York City, NY 10001" +258142,Google Phone,1,600,09/10/19 09:05,"651 Hill St, Portland, OR 97035" +258143,AAA Batteries (4-pack),1,2.99,09/20/19 23:45,"848 Lincoln St, Atlanta, GA 30301" +258144,USB-C Charging Cable,1,11.95,09/17/19 08:31,"928 Maple St, Austin, TX 73301" +258144,iPhone,1,700,09/17/19 08:31,"928 Maple St, Austin, TX 73301" +258145,27in 4K Gaming Monitor,1,389.99,09/03/19 14:06,"531 2nd St, New York City, NY 10001" +258146,iPhone,1,700,09/05/19 12:17,"937 13th St, San Francisco, CA 94016" +258146,Apple Airpods Headphones,1,150,09/05/19 12:17,"937 13th St, San Francisco, CA 94016" +258147,34in Ultrawide Monitor,1,379.99,09/11/19 16:51,"558 Spruce St, San Francisco, CA 94016" +258148,AA Batteries (4-pack),2,3.84,09/16/19 15:18,"74 Madison St, New York City, NY 10001" +258149,27in 4K Gaming Monitor,1,389.99,09/18/19 12:52,"387 Cherry St, Portland, OR 97035" +258150,AAA Batteries (4-pack),1,2.99,09/08/19 14:09,"141 Chestnut St, Boston, MA 02215" +258151,USB-C Charging Cable,1,11.95,09/15/19 00:26,"912 Lakeview St, Los Angeles, CA 90001" +258152,Wired Headphones,1,11.99,09/06/19 20:56,"208 Willow St, Boston, MA 02215" +258153,AAA Batteries (4-pack),1,2.99,09/17/19 23:04,"739 Elm St, New York City, NY 10001" +258154,AAA Batteries (4-pack),1,2.99,09/27/19 16:47,"293 6th St, San Francisco, CA 94016" +258155,Lightning Charging Cable,1,14.95,09/29/19 18:15,"888 Johnson St, San Francisco, CA 94016" +258156,USB-C Charging Cable,1,11.95,09/11/19 21:45,"97 Chestnut St, Seattle, WA 98101" +258157,Google Phone,1,600,09/06/19 15:48,"962 13th St, Dallas, TX 75001" +258158,34in Ultrawide Monitor,1,379.99,09/10/19 19:46,"666 Lakeview St, Boston, MA 02215" +258159,AAA Batteries (4-pack),2,2.99,09/01/19 10:20,"70 Meadow St, Atlanta, GA 30301" +258160,USB-C Charging Cable,1,11.95,09/16/19 20:57,"655 Spruce St, Los Angeles, CA 90001" +258161,27in 4K Gaming Monitor,1,389.99,09/29/19 13:07,"196 5th St, New York City, NY 10001" +258162,USB-C Charging Cable,1,11.95,09/06/19 21:55,"27 Wilson St, Austin, TX 73301" +258163,ThinkPad Laptop,1,999.99,09/11/19 10:07,"156 Washington St, Los Angeles, CA 90001" +258164,iPhone,1,700,09/11/19 08:37,"573 Spruce St, San Francisco, CA 94016" +258165,Lightning Charging Cable,1,14.95,09/28/19 10:43,"820 River St, Boston, MA 02215" +258166,Wired Headphones,1,11.99,09/06/19 12:02,"423 Hill St, Boston, MA 02215" +258167,USB-C Charging Cable,2,11.95,09/12/19 10:46,"414 Church St, Atlanta, GA 30301" +258168,AA Batteries (4-pack),2,3.84,09/21/19 11:37,"989 12th St, Seattle, WA 98101" +258169,AAA Batteries (4-pack),1,2.99,09/16/19 15:30,"711 Dogwood St, San Francisco, CA 94016" +258170,USB-C Charging Cable,1,11.95,09/08/19 00:50,"727 Elm St, Portland, OR 97035" +258171,Macbook Pro Laptop,1,1700,09/13/19 23:19,"194 South St, Los Angeles, CA 90001" +258172,Bose SoundSport Headphones,1,99.99,09/24/19 20:39,"541 12th St, Boston, MA 02215" +258173,34in Ultrawide Monitor,1,379.99,09/08/19 20:06,"385 Jackson St, Seattle, WA 98101" +258174,AAA Batteries (4-pack),1,2.99,09/14/19 20:27,"420 Main St, Los Angeles, CA 90001" +258175,AAA Batteries (4-pack),1,2.99,09/09/19 21:56,"704 Lincoln St, Seattle, WA 98101" +258176,Apple Airpods Headphones,1,150,09/20/19 22:37,"19 Pine St, Austin, TX 73301" +258177,Lightning Charging Cable,1,14.95,09/21/19 21:56,"418 Chestnut St, Dallas, TX 75001" +258178,Apple Airpods Headphones,1,150,09/08/19 14:07,"456 Spruce St, Portland, OR 97035" +258179,27in 4K Gaming Monitor,1,389.99,09/25/19 13:38,"698 South St, Boston, MA 02215" +258180,Lightning Charging Cable,1,14.95,09/29/19 08:56,"652 Adams St, Atlanta, GA 30301" +258181,Wired Headphones,1,11.99,09/09/19 23:16,"115 2nd St, San Francisco, CA 94016" +258182,USB-C Charging Cable,1,11.95,09/17/19 15:35,"709 Lake St, Los Angeles, CA 90001" +258183,Apple Airpods Headphones,1,150,09/27/19 19:27,"632 Madison St, New York City, NY 10001" +258184,Apple Airpods Headphones,1,150,09/15/19 21:09,"109 2nd St, San Francisco, CA 94016" +258185,27in 4K Gaming Monitor,1,389.99,09/10/19 10:20,"980 Hickory St, Portland, OR 97035" +258186,27in 4K Gaming Monitor,1,389.99,09/04/19 18:51,"275 North St, Atlanta, GA 30301" +258187,Lightning Charging Cable,1,14.95,09/20/19 20:11,"9 Lake St, New York City, NY 10001" +258188,Lightning Charging Cable,1,14.95,09/13/19 14:27,"96 Willow St, New York City, NY 10001" +258189,AAA Batteries (4-pack),1,2.99,09/01/19 11:08,"836 Cedar St, Los Angeles, CA 90001" +258190,Google Phone,1,600,09/05/19 19:44,"397 Dogwood St, Boston, MA 02215" +258191,Apple Airpods Headphones,1,150,09/09/19 12:42,"765 Jefferson St, Los Angeles, CA 90001" +258192,USB-C Charging Cable,1,11.95,09/20/19 12:06,"181 Jefferson St, Dallas, TX 75001" +258193,Bose SoundSport Headphones,1,99.99,09/06/19 23:33,"345 8th St, San Francisco, CA 94016" +258194,27in FHD Monitor,1,149.99,09/09/19 12:44,"864 Lakeview St, Los Angeles, CA 90001" +258195,Lightning Charging Cable,1,14.95,09/17/19 12:39,"487 Spruce St, Atlanta, GA 30301" +258196,Wired Headphones,1,11.99,09/02/19 10:56,"543 Willow St, Portland, OR 97035" +258197,AAA Batteries (4-pack),3,2.99,09/28/19 10:16,"233 Cedar St, San Francisco, CA 94016" +258198,Flatscreen TV,1,300,09/29/19 12:47,"902 Chestnut St, San Francisco, CA 94016" +258199,LG Washing Machine,1,600.0,09/07/19 15:40,"40 Pine St, San Francisco, CA 94016" +258200,Google Phone,1,600,09/12/19 15:48,"738 Adams St, New York City, NY 10001" +258201,USB-C Charging Cable,1,11.95,09/08/19 20:10,"365 River St, Dallas, TX 75001" +258202,Flatscreen TV,1,300,09/24/19 16:13,"357 Meadow St, Austin, TX 73301" +258203,AAA Batteries (4-pack),1,2.99,09/16/19 13:27,"156 South St, San Francisco, CA 94016" +258204,USB-C Charging Cable,2,11.95,09/21/19 17:17,"592 8th St, Atlanta, GA 30301" +258204,AAA Batteries (4-pack),1,2.99,09/21/19 17:17,"592 8th St, Atlanta, GA 30301" +258205,Wired Headphones,1,11.99,09/17/19 20:54,"24 Maple St, New York City, NY 10001" +258206,Wired Headphones,1,11.99,09/02/19 18:28,"15 Sunset St, New York City, NY 10001" +258207,Lightning Charging Cable,1,14.95,09/01/19 12:54,"679 Cedar St, Austin, TX 73301" +258208,AAA Batteries (4-pack),2,2.99,09/23/19 16:23,"905 Cherry St, San Francisco, CA 94016" +258209,AA Batteries (4-pack),1,3.84,09/15/19 11:08,"127 Lincoln St, San Francisco, CA 94016" +258210,27in 4K Gaming Monitor,1,389.99,09/18/19 12:39,"646 Washington St, Seattle, WA 98101" +258211,Apple Airpods Headphones,1,150,09/15/19 14:08,"214 Cherry St, Los Angeles, CA 90001" +258212,Wired Headphones,1,11.99,09/26/19 12:32,"230 Highland St, Los Angeles, CA 90001" +258213,27in FHD Monitor,1,149.99,09/10/19 08:31,"467 Madison St, Boston, MA 02215" +258214,34in Ultrawide Monitor,1,379.99,09/09/19 11:44,"186 Lake St, Seattle, WA 98101" +258215,Google Phone,1,600,09/21/19 07:49,"419 4th St, Dallas, TX 75001" +258216,Bose SoundSport Headphones,1,99.99,09/01/19 15:26,"527 1st St, Los Angeles, CA 90001" +258217,Bose SoundSport Headphones,1,99.99,09/01/19 16:12,"914 River St, Seattle, WA 98101" +258218,Bose SoundSport Headphones,1,99.99,09/13/19 13:24,"220 West St, San Francisco, CA 94016" +258219,USB-C Charging Cable,1,11.95,09/26/19 14:35,"345 Highland St, Atlanta, GA 30301" +258220,Lightning Charging Cable,2,14.95,09/27/19 01:02,"449 Church St, San Francisco, CA 94016" +258221,iPhone,1,700,09/12/19 21:47,"817 Church St, San Francisco, CA 94016" +258221,Lightning Charging Cable,1,14.95,09/12/19 21:47,"817 Church St, San Francisco, CA 94016" +258222,Lightning Charging Cable,1,14.95,09/18/19 01:06,"583 Church St, Boston, MA 02215" +258223,AA Batteries (4-pack),1,3.84,09/22/19 11:03,"617 Johnson St, San Francisco, CA 94016" +258224,AA Batteries (4-pack),1,3.84,09/28/19 13:53,"195 Sunset St, Los Angeles, CA 90001" +258225,LG Dryer,1,600.0,09/29/19 16:25,"985 5th St, Seattle, WA 98101" +258226,USB-C Charging Cable,1,11.95,09/24/19 09:09,"228 Cedar St, Los Angeles, CA 90001" +258227,AAA Batteries (4-pack),2,2.99,09/04/19 09:24,"85 Spruce St, Los Angeles, CA 90001" +258228,Bose SoundSport Headphones,1,99.99,09/06/19 00:09,"609 Cherry St, Atlanta, GA 30301" +258229,34in Ultrawide Monitor,1,379.99,09/03/19 15:14,"351 11th St, Los Angeles, CA 90001" +258230,27in FHD Monitor,1,149.99,09/04/19 20:26,"775 Chestnut St, Seattle, WA 98101" +258231,AAA Batteries (4-pack),1,2.99,09/16/19 01:00,"449 Hickory St, New York City, NY 10001" +258232,Apple Airpods Headphones,1,150,09/15/19 13:55,"470 Chestnut St, Boston, MA 02215" +258233,Macbook Pro Laptop,1,1700,09/12/19 13:25,"289 North St, Portland, OR 97035" +258234,Apple Airpods Headphones,1,150,09/17/19 16:04,"143 Park St, Dallas, TX 75001" +258235,Bose SoundSport Headphones,1,99.99,09/14/19 20:25,"573 7th St, New York City, NY 10001" +258236,34in Ultrawide Monitor,1,379.99,09/17/19 21:14,"966 Jefferson St, San Francisco, CA 94016" +258237,Lightning Charging Cable,2,14.95,09/27/19 00:13,"426 4th St, Los Angeles, CA 90001" +,,,,, +258238,27in FHD Monitor,1,149.99,09/17/19 11:07,"658 Adams St, Atlanta, GA 30301" +258239,Bose SoundSport Headphones,1,99.99,09/06/19 16:49,"208 5th St, San Francisco, CA 94016" +258240,27in 4K Gaming Monitor,1,389.99,09/14/19 22:16,"16 Madison St, Atlanta, GA 30301" +258241,AA Batteries (4-pack),1,3.84,09/09/19 20:23,"117 Hill St, San Francisco, CA 94016" +258242,USB-C Charging Cable,1,11.95,09/16/19 09:10,"329 Willow St, Boston, MA 02215" +258243,Lightning Charging Cable,1,14.95,09/29/19 20:11,"649 Park St, New York City, NY 10001" +258244,AA Batteries (4-pack),1,3.84,09/12/19 18:57,"668 13th St, San Francisco, CA 94016" +258245,Lightning Charging Cable,1,14.95,09/11/19 21:02,"681 Hickory St, Atlanta, GA 30301" +258246,iPhone,1,700,09/11/19 07:13,"620 Cedar St, Dallas, TX 75001" +258247,AAA Batteries (4-pack),1,2.99,09/29/19 21:14,"210 Pine St, San Francisco, CA 94016" +258248,Wired Headphones,1,11.99,09/27/19 19:32,"869 Johnson St, San Francisco, CA 94016" +258249,AA Batteries (4-pack),1,3.84,09/05/19 15:50,"355 Dogwood St, Atlanta, GA 30301" +258250,USB-C Charging Cable,1,11.95,09/06/19 18:07,"414 River St, Los Angeles, CA 90001" +258251,Apple Airpods Headphones,1,150,09/14/19 22:11,"148 Sunset St, San Francisco, CA 94016" +258252,27in 4K Gaming Monitor,1,389.99,09/02/19 18:44,"701 North St, Atlanta, GA 30301" +258253,Lightning Charging Cable,1,14.95,09/17/19 11:38,"873 14th St, Boston, MA 02215" +258254,Apple Airpods Headphones,1,150,09/18/19 12:01,"871 Elm St, Los Angeles, CA 90001" +258255,AA Batteries (4-pack),1,3.84,09/17/19 01:12,"157 Spruce St, Portland, ME 04101" +258256,USB-C Charging Cable,2,11.95,09/05/19 13:31,"610 Ridge St, New York City, NY 10001" +258257,Bose SoundSport Headphones,1,99.99,09/18/19 23:58,"744 Sunset St, Atlanta, GA 30301" +258258,Vareebadd Phone,1,400,09/11/19 13:09,"61 Madison St, San Francisco, CA 94016" +258258,USB-C Charging Cable,1,11.95,09/11/19 13:09,"61 Madison St, San Francisco, CA 94016" +258259,Lightning Charging Cable,1,14.95,09/25/19 16:45,"455 Madison St, San Francisco, CA 94016" +258260,Google Phone,1,600,09/03/19 11:38,"540 12th St, San Francisco, CA 94016" +258261,Lightning Charging Cable,1,14.95,09/18/19 13:56,"29 Johnson St, San Francisco, CA 94016" +258262,USB-C Charging Cable,1,11.95,09/20/19 19:24,"376 Ridge St, Boston, MA 02215" +258263,USB-C Charging Cable,1,11.95,09/18/19 17:00,"441 Meadow St, Seattle, WA 98101" +258264,34in Ultrawide Monitor,1,379.99,09/04/19 16:25,"749 Adams St, Boston, MA 02215" +258265,Bose SoundSport Headphones,1,99.99,09/24/19 23:06,"573 West St, Boston, MA 02215" +258266,Lightning Charging Cable,1,14.95,09/03/19 12:46,"925 North St, San Francisco, CA 94016" +258267,Apple Airpods Headphones,1,150,09/18/19 00:16,"25 7th St, Austin, TX 73301" +258268,iPhone,1,700,09/06/19 00:16,"592 4th St, Atlanta, GA 30301" +258268,Lightning Charging Cable,1,14.95,09/06/19 00:16,"592 4th St, Atlanta, GA 30301" +258269,AAA Batteries (4-pack),1,2.99,09/12/19 20:36,"12 11th St, Los Angeles, CA 90001" +258270,Lightning Charging Cable,1,14.95,09/20/19 22:12,"523 Jackson St, New York City, NY 10001" +258271,20in Monitor,1,109.99,09/06/19 17:39,"72 Maple St, Atlanta, GA 30301" +258272,AA Batteries (4-pack),1,3.84,09/28/19 20:07,"265 Meadow St, New York City, NY 10001" +258272,Apple Airpods Headphones,1,150,09/28/19 20:07,"265 Meadow St, New York City, NY 10001" +258273,Macbook Pro Laptop,1,1700,09/03/19 16:45,"10 14th St, San Francisco, CA 94016" +258274,AAA Batteries (4-pack),1,2.99,09/28/19 19:17,"845 Jackson St, Portland, ME 04101" +258275,iPhone,1,700,09/21/19 08:13,"587 Johnson St, New York City, NY 10001" +258276,Wired Headphones,1,11.99,09/23/19 10:54,"686 Spruce St, Dallas, TX 75001" +258277,Flatscreen TV,1,300,09/05/19 14:00,"551 6th St, San Francisco, CA 94016" +258278,ThinkPad Laptop,1,999.99,09/13/19 10:49,"170 Jefferson St, Boston, MA 02215" +258279,Macbook Pro Laptop,1,1700,09/26/19 11:48,"822 Ridge St, Los Angeles, CA 90001" +258280,20in Monitor,1,109.99,09/14/19 11:22,"153 Sunset St, Los Angeles, CA 90001" +258281,iPhone,1,700,09/27/19 12:29,"736 Lakeview St, Los Angeles, CA 90001" +258282,Google Phone,1,600,09/18/19 23:39,"756 Maple St, Los Angeles, CA 90001" +258283,Bose SoundSport Headphones,1,99.99,09/11/19 21:02,"966 Washington St, New York City, NY 10001" +258284,AA Batteries (4-pack),1,3.84,09/15/19 17:56,"908 Hill St, Seattle, WA 98101" +258285,iPhone,1,700,09/22/19 11:33,"955 Spruce St, Los Angeles, CA 90001" +258285,Apple Airpods Headphones,1,150,09/22/19 11:33,"955 Spruce St, Los Angeles, CA 90001" +258286,AA Batteries (4-pack),1,3.84,09/08/19 08:21,"930 Main St, New York City, NY 10001" +258287,27in FHD Monitor,1,149.99,09/04/19 10:18,"226 Hill St, Atlanta, GA 30301" +258288,20in Monitor,1,109.99,09/07/19 09:19,"622 5th St, Portland, OR 97035" +258289,AAA Batteries (4-pack),1,2.99,09/16/19 09:50,"170 Dogwood St, Atlanta, GA 30301" +258290,USB-C Charging Cable,1,11.95,09/12/19 20:27,"860 Dogwood St, Austin, TX 73301" +258291,AAA Batteries (4-pack),2,2.99,09/23/19 14:31,"392 North St, San Francisco, CA 94016" +258292,USB-C Charging Cable,1,11.95,09/10/19 10:42,"166 Cherry St, Atlanta, GA 30301" +258293,27in 4K Gaming Monitor,1,389.99,09/27/19 20:08,"713 Cedar St, New York City, NY 10001" +258294,AA Batteries (4-pack),2,3.84,09/05/19 23:02,"94 2nd St, Boston, MA 02215" +258295,LG Washing Machine,1,600.0,09/30/19 16:12,"400 1st St, Dallas, TX 75001" +258296,USB-C Charging Cable,2,11.95,09/15/19 12:33,"842 Jefferson St, New York City, NY 10001" +258297,Lightning Charging Cable,1,14.95,09/04/19 17:01,"822 4th St, New York City, NY 10001" +258298,34in Ultrawide Monitor,1,379.99,09/08/19 12:50,"259 Pine St, New York City, NY 10001" +258299,AA Batteries (4-pack),1,3.84,09/05/19 12:22,"495 Adams St, Dallas, TX 75001" +258300,27in FHD Monitor,1,149.99,09/05/19 09:36,"503 Ridge St, San Francisco, CA 94016" +258301,Lightning Charging Cable,1,14.95,09/02/19 19:42,"391 Johnson St, New York City, NY 10001" +258302,Lightning Charging Cable,1,14.95,09/15/19 19:34,"975 Dogwood St, Seattle, WA 98101" +258303,Wired Headphones,1,11.99,09/03/19 21:01,"395 Cedar St, San Francisco, CA 94016" +258304,ThinkPad Laptop,1,999.99,09/07/19 13:27,"821 10th St, Atlanta, GA 30301" +258305,Lightning Charging Cable,1,14.95,09/21/19 22:44,"309 6th St, San Francisco, CA 94016" +258306,USB-C Charging Cable,1,11.95,09/20/19 10:00,"159 Pine St, San Francisco, CA 94016" +258307,Wired Headphones,1,11.99,09/04/19 13:34,"381 Park St, San Francisco, CA 94016" +258308,20in Monitor,1,109.99,09/17/19 20:24,"315 Church St, Atlanta, GA 30301" +258309,Lightning Charging Cable,1,14.95,09/20/19 20:55,"355 Sunset St, San Francisco, CA 94016" +258310,AAA Batteries (4-pack),1,2.99,09/06/19 01:45,"600 River St, Los Angeles, CA 90001" +258311,Macbook Pro Laptop,1,1700,09/28/19 23:25,"115 Adams St, San Francisco, CA 94016" +258312,AAA Batteries (4-pack),1,2.99,09/05/19 15:21,"383 6th St, Los Angeles, CA 90001" +258313,Apple Airpods Headphones,1,150,09/29/19 10:02,"414 Cherry St, San Francisco, CA 94016" +258314,Wired Headphones,1,11.99,09/24/19 12:47,"964 Hill St, Dallas, TX 75001" +258315,Apple Airpods Headphones,1,150,09/05/19 19:20,"862 Johnson St, Atlanta, GA 30301" +258316,Apple Airpods Headphones,1,150,09/05/19 19:07,"672 Park St, Los Angeles, CA 90001" +258317,Wired Headphones,1,11.99,09/07/19 21:02,"120 Church St, Los Angeles, CA 90001" +258318,USB-C Charging Cable,1,11.95,09/02/19 19:03,"569 Sunset St, Boston, MA 02215" +258319,USB-C Charging Cable,1,11.95,09/10/19 13:10,"549 Lake St, Austin, TX 73301" +258320,USB-C Charging Cable,1,11.95,09/16/19 08:11,"294 11th St, San Francisco, CA 94016" +258321,Macbook Pro Laptop,1,1700,09/28/19 23:51,"860 14th St, New York City, NY 10001" +258322,Apple Airpods Headphones,1,150,09/26/19 15:36,"513 11th St, Dallas, TX 75001" +258323,Macbook Pro Laptop,1,1700,09/09/19 12:53,"672 Main St, Los Angeles, CA 90001" +258324,USB-C Charging Cable,1,11.95,09/28/19 16:36,"367 Walnut St, Los Angeles, CA 90001" +258325,Vareebadd Phone,1,400,09/02/19 08:54,"94 Elm St, San Francisco, CA 94016" +258326,Lightning Charging Cable,1,14.95,09/24/19 12:02,"330 2nd St, San Francisco, CA 94016" +258327,Apple Airpods Headphones,1,150,09/15/19 08:36,"229 Pine St, Los Angeles, CA 90001" +258328,Lightning Charging Cable,1,14.95,09/07/19 16:37,"80 Maple St, Portland, OR 97035" +258329,Macbook Pro Laptop,1,1700,09/21/19 09:05,"692 Hill St, New York City, NY 10001" +258330,34in Ultrawide Monitor,1,379.99,09/18/19 20:07,"634 Main St, Dallas, TX 75001" +258331,ThinkPad Laptop,1,999.99,09/19/19 00:17,"847 Hickory St, Los Angeles, CA 90001" +258332,USB-C Charging Cable,2,11.95,09/15/19 17:13,"913 Pine St, Atlanta, GA 30301" +258333,27in 4K Gaming Monitor,1,389.99,09/03/19 20:11,"797 Lake St, Los Angeles, CA 90001" +258334,USB-C Charging Cable,1,11.95,09/06/19 10:04,"221 Park St, San Francisco, CA 94016" +258335,AAA Batteries (4-pack),1,2.99,09/01/19 22:41,"622 Main St, San Francisco, CA 94016" +258336,USB-C Charging Cable,1,11.95,09/18/19 10:42,"865 Jefferson St, Los Angeles, CA 90001" +258337,iPhone,1,700,09/15/19 10:32,"849 Washington St, Boston, MA 02215" +258338,27in FHD Monitor,1,149.99,09/12/19 19:44,"351 4th St, Dallas, TX 75001" +258339,Wired Headphones,1,11.99,09/03/19 05:40,"225 Willow St, Los Angeles, CA 90001" +258340,Bose SoundSport Headphones,1,99.99,09/30/19 14:09,"342 North St, Boston, MA 02215" +258341,Lightning Charging Cable,1,14.95,09/04/19 04:30,"140 Spruce St, Austin, TX 73301" +258342,Wired Headphones,1,11.99,09/16/19 07:35,"492 Main St, Los Angeles, CA 90001" +258343,Bose SoundSport Headphones,1,99.99,09/27/19 12:42,"58 Johnson St, San Francisco, CA 94016" +258344,AAA Batteries (4-pack),1,2.99,09/29/19 19:19,"754 8th St, San Francisco, CA 94016" +258345,27in 4K Gaming Monitor,1,389.99,09/17/19 01:06,"792 Madison St, Portland, OR 97035" +258346,USB-C Charging Cable,1,11.95,09/09/19 11:03,"943 Wilson St, Atlanta, GA 30301" +258346,Lightning Charging Cable,1,14.95,09/09/19 11:03,"943 Wilson St, Atlanta, GA 30301" +258347,USB-C Charging Cable,1,11.95,09/11/19 15:57,"967 Park St, Seattle, WA 98101" +258348,27in 4K Gaming Monitor,1,389.99,09/09/19 15:56,"17 Pine St, Portland, OR 97035" +258349,iPhone,1,700,09/10/19 13:03,"155 West St, San Francisco, CA 94016" +258350,Wired Headphones,2,11.99,09/12/19 05:23,"416 Church St, Dallas, TX 75001" +258350,Bose SoundSport Headphones,1,99.99,09/12/19 05:23,"416 Church St, Dallas, TX 75001" +258351,AAA Batteries (4-pack),1,2.99,09/14/19 17:27,"345 West St, Seattle, WA 98101" +258352,Wired Headphones,1,11.99,09/03/19 13:08,"825 5th St, New York City, NY 10001" +258353,Bose SoundSport Headphones,1,99.99,09/12/19 18:04,"863 9th St, San Francisco, CA 94016" +258354,Flatscreen TV,1,300,09/23/19 12:35,"639 Wilson St, Los Angeles, CA 90001" +258355,AAA Batteries (4-pack),2,2.99,09/17/19 22:12,"832 Elm St, Portland, ME 04101" +258356,Apple Airpods Headphones,1,150,09/20/19 23:07,"314 Lakeview St, Atlanta, GA 30301" +258357,iPhone,1,700,09/30/19 10:58,"652 Wilson St, Los Angeles, CA 90001" +258358,Lightning Charging Cable,1,14.95,09/26/19 21:30,"793 Park St, Dallas, TX 75001" +258359,Flatscreen TV,1,300,09/26/19 06:45,"702 Cedar St, Atlanta, GA 30301" +258360,Apple Airpods Headphones,1,150,09/23/19 22:22,"46 Willow St, Los Angeles, CA 90001" +258361,AAA Batteries (4-pack),2,2.99,09/25/19 10:39,"69 Sunset St, New York City, NY 10001" +258362,Lightning Charging Cable,1,14.95,09/29/19 17:40,"495 Pine St, Austin, TX 73301" +258363,Google Phone,1,600,09/24/19 18:37,"52 Park St, New York City, NY 10001" +258364,AA Batteries (4-pack),1,3.84,09/25/19 12:10,"134 Maple St, Los Angeles, CA 90001" +258365,Wired Headphones,1,11.99,09/07/19 12:08,"477 5th St, Portland, ME 04101" +258366,AAA Batteries (4-pack),1,2.99,09/15/19 23:20,"374 Lake St, San Francisco, CA 94016" +258367,20in Monitor,1,109.99,09/15/19 19:23,"881 Spruce St, New York City, NY 10001" +258368,20in Monitor,1,109.99,09/12/19 10:50,"126 7th St, Boston, MA 02215" +258369,AA Batteries (4-pack),4,3.84,09/26/19 16:16,"261 Willow St, San Francisco, CA 94016" +258370,iPhone,1,700,09/29/19 19:27,"627 Hill St, San Francisco, CA 94016" +258371,27in FHD Monitor,1,149.99,09/05/19 17:01,"832 Hill St, Los Angeles, CA 90001" +258372,Bose SoundSport Headphones,1,99.99,09/29/19 18:11,"220 River St, San Francisco, CA 94016" +258373,AAA Batteries (4-pack),1,2.99,09/10/19 15:04,"726 Madison St, Atlanta, GA 30301" +258374,Lightning Charging Cable,1,14.95,09/19/19 13:51,"986 14th St, Austin, TX 73301" +258375,Apple Airpods Headphones,1,150,09/28/19 22:16,"117 6th St, San Francisco, CA 94016" +258376,Apple Airpods Headphones,1,150,09/10/19 23:13,"535 Madison St, San Francisco, CA 94016" +258377,USB-C Charging Cable,1,11.95,09/29/19 11:43,"729 1st St, Boston, MA 02215" +258378,20in Monitor,1,109.99,09/25/19 11:08,"101 9th St, San Francisco, CA 94016" +258379,Google Phone,1,600,09/23/19 23:20,"771 9th St, New York City, NY 10001" +258379,USB-C Charging Cable,1,11.95,09/23/19 23:20,"771 9th St, New York City, NY 10001" +258380,AA Batteries (4-pack),1,3.84,09/26/19 13:19,"110 5th St, Atlanta, GA 30301" +258381,27in FHD Monitor,1,149.99,09/07/19 06:42,"308 Washington St, San Francisco, CA 94016" +258382,Lightning Charging Cable,1,14.95,09/16/19 12:18,"83 River St, Dallas, TX 75001" +258383,AAA Batteries (4-pack),2,2.99,09/01/19 12:35,"159 Meadow St, Dallas, TX 75001" +258384,Apple Airpods Headphones,1,150,09/08/19 08:49,"741 Willow St, Dallas, TX 75001" +258385,AA Batteries (4-pack),2,3.84,09/05/19 13:50,"423 Main St, San Francisco, CA 94016" +258386,iPhone,1,700,09/25/19 09:17,"813 River St, Boston, MA 02215" +258387,Lightning Charging Cable,1,14.95,09/23/19 14:33,"618 4th St, Dallas, TX 75001" +258388,AA Batteries (4-pack),2,3.84,09/13/19 10:54,"658 1st St, San Francisco, CA 94016" +258389,Apple Airpods Headphones,1,150,09/07/19 18:32,"113 Park St, New York City, NY 10001" +258390,USB-C Charging Cable,1,11.95,09/12/19 20:44,"858 6th St, San Francisco, CA 94016" +258391,AA Batteries (4-pack),1,3.84,09/10/19 16:23,"217 Church St, New York City, NY 10001" +258392,Lightning Charging Cable,1,14.95,09/10/19 13:20,"335 Forest St, Dallas, TX 75001" +258393,AA Batteries (4-pack),1,3.84,09/04/19 17:33,"699 5th St, Los Angeles, CA 90001" +258394,Macbook Pro Laptop,1,1700,09/07/19 11:15,"341 8th St, Seattle, WA 98101" +258395,Apple Airpods Headphones,1,150,09/20/19 19:02,"223 Dogwood St, Los Angeles, CA 90001" +258396,Lightning Charging Cable,1,14.95,09/15/19 17:05,"739 Center St, Dallas, TX 75001" +258397,Wired Headphones,1,11.99,09/17/19 18:46,"142 Johnson St, Atlanta, GA 30301" +258398,34in Ultrawide Monitor,1,379.99,09/18/19 20:41,"705 4th St, New York City, NY 10001" +258399,AA Batteries (4-pack),1,3.84,09/28/19 13:03,"61 Center St, Los Angeles, CA 90001" +258400,iPhone,1,700,09/09/19 11:00,"154 9th St, Atlanta, GA 30301" +258401,Lightning Charging Cable,1,14.95,09/18/19 21:57,"575 Jefferson St, San Francisco, CA 94016" +258402,Flatscreen TV,1,300,09/10/19 20:53,"464 10th St, Los Angeles, CA 90001" +258403,34in Ultrawide Monitor,1,379.99,09/23/19 16:06,"914 Dogwood St, Los Angeles, CA 90001" +258404,Google Phone,1,600,09/18/19 01:50,"74 Maple St, Los Angeles, CA 90001" +258405,AAA Batteries (4-pack),1,2.99,09/06/19 00:30,"975 Hill St, New York City, NY 10001" +258406,34in Ultrawide Monitor,1,379.99,09/29/19 17:49,"930 North St, New York City, NY 10001" +258407,Wired Headphones,1,11.99,09/26/19 13:31,"906 Lakeview St, Atlanta, GA 30301" +258408,Flatscreen TV,1,300,09/04/19 13:11,"14 Chestnut St, Seattle, WA 98101" +258409,Wired Headphones,1,11.99,09/30/19 13:47,"479 12th St, New York City, NY 10001" +258410,Bose SoundSport Headphones,1,99.99,09/21/19 21:24,"873 Lake St, San Francisco, CA 94016" +258411,20in Monitor,1,109.99,09/16/19 20:09,"21 Main St, San Francisco, CA 94016" +258412,Wired Headphones,1,11.99,09/20/19 09:47,"493 Lake St, San Francisco, CA 94016" +258413,Apple Airpods Headphones,1,150,09/23/19 09:59,"862 Elm St, San Francisco, CA 94016" +258414,AAA Batteries (4-pack),4,2.99,09/07/19 06:53,"391 Pine St, Los Angeles, CA 90001" +258415,AA Batteries (4-pack),1,3.84,09/18/19 18:30,"494 Chestnut St, Boston, MA 02215" +258416,Bose SoundSport Headphones,1,99.99,09/19/19 16:58,"592 Ridge St, San Francisco, CA 94016" +258417,iPhone,1,700,09/11/19 22:51,"602 Main St, San Francisco, CA 94016" +258418,Wired Headphones,2,11.99,09/21/19 20:53,"981 South St, Seattle, WA 98101" +258419,Flatscreen TV,1,300,09/14/19 19:43,"123 South St, New York City, NY 10001" +258420,AA Batteries (4-pack),3,3.84,09/09/19 16:38,"636 North St, New York City, NY 10001" +258421,Flatscreen TV,1,300,09/29/19 10:28,"319 Pine St, New York City, NY 10001" +258422,USB-C Charging Cable,1,11.95,09/11/19 09:48,"358 Spruce St, San Francisco, CA 94016" +258423,Macbook Pro Laptop,1,1700,09/08/19 19:30,"861 13th St, Austin, TX 73301" +258424,ThinkPad Laptop,1,999.99,09/08/19 11:51,"768 2nd St, San Francisco, CA 94016" +258425,Lightning Charging Cable,1,14.95,09/22/19 16:54,"80 North St, San Francisco, CA 94016" +258426,Flatscreen TV,1,300,09/12/19 20:32,"203 Church St, Los Angeles, CA 90001" +258427,AA Batteries (4-pack),1,3.84,09/14/19 09:04,"316 Madison St, New York City, NY 10001" +258428,AAA Batteries (4-pack),2,2.99,09/08/19 14:24,"484 Cherry St, New York City, NY 10001" +258429,34in Ultrawide Monitor,1,379.99,09/25/19 23:09,"434 Adams St, San Francisco, CA 94016" +258430,Apple Airpods Headphones,1,150,09/04/19 09:21,"7 Main St, Seattle, WA 98101" +258431,AA Batteries (4-pack),1,3.84,09/18/19 17:06,"908 Madison St, Seattle, WA 98101" +258432,AA Batteries (4-pack),1,3.84,09/28/19 19:10,"614 9th St, Los Angeles, CA 90001" +258433,AA Batteries (4-pack),1,3.84,09/21/19 17:01,"696 1st St, New York City, NY 10001" +258434,AA Batteries (4-pack),1,3.84,09/05/19 17:04,"583 South St, New York City, NY 10001" +258435,Flatscreen TV,1,300,09/17/19 19:02,"9 Pine St, Boston, MA 02215" +258436,Lightning Charging Cable,1,14.95,09/25/19 20:34,"529 Cedar St, Los Angeles, CA 90001" +258437,USB-C Charging Cable,1,11.95,09/05/19 12:11,"990 Walnut St, Portland, ME 04101" +258438,AA Batteries (4-pack),2,3.84,09/13/19 10:12,"973 Lake St, San Francisco, CA 94016" +258439,AAA Batteries (4-pack),2,2.99,09/30/19 21:40,"125 12th St, Boston, MA 02215" +258440,AAA Batteries (4-pack),1,2.99,09/17/19 10:13,"432 Elm St, San Francisco, CA 94016" +258441,Google Phone,1,600,09/11/19 11:43,"947 Cherry St, Austin, TX 73301" +258442,Lightning Charging Cable,1,14.95,09/23/19 10:43,"932 Cedar St, Los Angeles, CA 90001" +258443,USB-C Charging Cable,1,11.95,09/30/19 19:52,"900 Highland St, Seattle, WA 98101" +258444,Flatscreen TV,1,300,09/13/19 11:24,"593 Elm St, Dallas, TX 75001" +258445,AA Batteries (4-pack),1,3.84,09/20/19 08:32,"485 14th St, Los Angeles, CA 90001" +258446,Lightning Charging Cable,1,14.95,09/17/19 15:59,"352 Chestnut St, Boston, MA 02215" +258447,Apple Airpods Headphones,1,150,09/30/19 19:08,"446 Dogwood St, Dallas, TX 75001" +258448,AAA Batteries (4-pack),1,2.99,09/26/19 21:59,"731 12th St, San Francisco, CA 94016" +258449,AAA Batteries (4-pack),3,2.99,09/06/19 18:05,"228 2nd St, San Francisco, CA 94016" +258450,AA Batteries (4-pack),1,3.84,09/14/19 20:56,"470 Chestnut St, Los Angeles, CA 90001" +258451,USB-C Charging Cable,2,11.95,09/23/19 20:42,"883 6th St, San Francisco, CA 94016" +258452,Lightning Charging Cable,1,14.95,09/26/19 08:28,"207 6th St, Atlanta, GA 30301" +258453,AAA Batteries (4-pack),3,2.99,09/24/19 12:40,"271 Jefferson St, New York City, NY 10001" +258454,AA Batteries (4-pack),1,3.84,09/24/19 14:28,"463 Lake St, San Francisco, CA 94016" +258455,Wired Headphones,1,11.99,09/29/19 22:09,"88 9th St, Portland, OR 97035" +258456,Bose SoundSport Headphones,1,99.99,09/09/19 17:03,"86 Washington St, Los Angeles, CA 90001" +258457,Lightning Charging Cable,1,14.95,09/28/19 16:11,"108 6th St, Atlanta, GA 30301" +258458,iPhone,1,700,09/16/19 21:05,"848 Main St, Portland, OR 97035" +258458,Apple Airpods Headphones,1,150,09/16/19 21:05,"848 Main St, Portland, OR 97035" +258459,AAA Batteries (4-pack),1,2.99,09/07/19 17:18,"353 Sunset St, Los Angeles, CA 90001" +258460,AA Batteries (4-pack),1,3.84,09/25/19 10:05,"809 Spruce St, Seattle, WA 98101" +258461,AAA Batteries (4-pack),2,2.99,09/15/19 11:57,"750 Maple St, New York City, NY 10001" +258462,AAA Batteries (4-pack),1,2.99,09/17/19 12:58,"367 South St, San Francisco, CA 94016" +258463,Lightning Charging Cable,1,14.95,09/25/19 15:44,"317 Cherry St, New York City, NY 10001" +258464,Bose SoundSport Headphones,1,99.99,09/03/19 18:38,"824 Chestnut St, San Francisco, CA 94016" +258464,AA Batteries (4-pack),1,3.84,09/03/19 18:38,"824 Chestnut St, San Francisco, CA 94016" +258465,Wired Headphones,1,11.99,09/29/19 18:36,"681 Lakeview St, Los Angeles, CA 90001" +258466,Apple Airpods Headphones,1,150,09/26/19 13:23,"944 Dogwood St, San Francisco, CA 94016" +258467,20in Monitor,1,109.99,09/25/19 12:18,"776 Hill St, Los Angeles, CA 90001" +258468,AAA Batteries (4-pack),2,2.99,09/07/19 21:10,"778 West St, New York City, NY 10001" +258469,Lightning Charging Cable,1,14.95,09/16/19 19:18,"483 Lakeview St, Atlanta, GA 30301" +258470,AA Batteries (4-pack),2,3.84,09/11/19 19:05,"117 Main St, San Francisco, CA 94016" +258471,Lightning Charging Cable,2,14.95,09/17/19 17:09,"845 Maple St, Los Angeles, CA 90001" +258472,USB-C Charging Cable,1,11.95,09/08/19 13:59,"284 2nd St, San Francisco, CA 94016" +258473,Wired Headphones,1,11.99,09/06/19 21:00,"673 South St, Boston, MA 02215" +258474,Apple Airpods Headphones,1,150,09/24/19 20:05,"834 Ridge St, San Francisco, CA 94016" +258475,27in 4K Gaming Monitor,1,389.99,09/28/19 21:35,"554 Church St, Portland, OR 97035" +258476,27in 4K Gaming Monitor,1,389.99,09/26/19 22:51,"491 Wilson St, Los Angeles, CA 90001" +258477,Bose SoundSport Headphones,1,99.99,09/15/19 20:24,"920 13th St, Seattle, WA 98101" +258478,Apple Airpods Headphones,2,150,09/28/19 07:17,"175 Sunset St, San Francisco, CA 94016" +258479,Macbook Pro Laptop,1,1700,09/13/19 14:40,"322 Chestnut St, San Francisco, CA 94016" +258480,USB-C Charging Cable,1,11.95,09/08/19 23:49,"938 10th St, Austin, TX 73301" +258481,AAA Batteries (4-pack),2,2.99,09/22/19 10:50,"4 4th St, Portland, OR 97035" +258482,AAA Batteries (4-pack),1,2.99,09/09/19 14:50,"932 4th St, New York City, NY 10001" +258483,AA Batteries (4-pack),1,3.84,09/17/19 17:26,"867 Lake St, Boston, MA 02215" +258483,Lightning Charging Cable,1,14.95,09/17/19 17:26,"867 Lake St, Boston, MA 02215" +258484,AAA Batteries (4-pack),1,2.99,09/17/19 10:28,"781 Meadow St, Atlanta, GA 30301" +258485,27in FHD Monitor,1,149.99,09/27/19 21:26,"317 Park St, Boston, MA 02215" +258486,27in FHD Monitor,1,149.99,09/02/19 21:13,"306 Sunset St, New York City, NY 10001" +258487,Lightning Charging Cable,1,14.95,09/20/19 12:37,"666 Church St, New York City, NY 10001" +258488,USB-C Charging Cable,1,11.95,09/19/19 09:39,"165 West St, Dallas, TX 75001" +258489,Macbook Pro Laptop,1,1700,09/17/19 17:22,"503 West St, Portland, ME 04101" +258490,AAA Batteries (4-pack),2,2.99,09/29/19 15:06,"628 Forest St, San Francisco, CA 94016" +258491,Flatscreen TV,1,300,09/26/19 12:14,"262 11th St, New York City, NY 10001" +258492,Bose SoundSport Headphones,1,99.99,09/25/19 19:24,"689 2nd St, Boston, MA 02215" +258493,USB-C Charging Cable,1,11.95,09/14/19 02:15,"993 Dogwood St, Atlanta, GA 30301" +258494,Wired Headphones,1,11.99,09/18/19 18:15,"177 Ridge St, Atlanta, GA 30301" +258495,AA Batteries (4-pack),1,3.84,09/10/19 12:30,"870 Cedar St, Austin, TX 73301" +258496,Lightning Charging Cable,1,14.95,09/07/19 12:46,"145 Center St, Dallas, TX 75001" +258497,Google Phone,1,600,09/07/19 16:20,"744 Forest St, San Francisco, CA 94016" +258498,34in Ultrawide Monitor,1,379.99,09/10/19 15:13,"388 7th St, Dallas, TX 75001" +258499,Lightning Charging Cable,1,14.95,09/19/19 18:01,"957 Highland St, San Francisco, CA 94016" +258500,AA Batteries (4-pack),1,3.84,09/03/19 14:44,"741 4th St, Boston, MA 02215" +258501,34in Ultrawide Monitor,1,379.99,09/30/19 09:08,"574 1st St, San Francisco, CA 94016" +258502,20in Monitor,1,109.99,09/29/19 23:07,"97 North St, Los Angeles, CA 90001" +258503,Lightning Charging Cable,2,14.95,09/15/19 10:05,"869 Madison St, New York City, NY 10001" +258504,Apple Airpods Headphones,1,150,09/09/19 22:26,"340 5th St, San Francisco, CA 94016" +258505,AAA Batteries (4-pack),1,2.99,09/29/19 10:05,"845 Sunset St, Seattle, WA 98101" +258506,Bose SoundSport Headphones,1,99.99,09/28/19 06:34,"358 Walnut St, New York City, NY 10001" +258507,27in FHD Monitor,1,149.99,09/24/19 16:08,"390 South St, Boston, MA 02215" +258508,AA Batteries (4-pack),2,3.84,09/15/19 09:53,"380 Park St, Seattle, WA 98101" +258509,AA Batteries (4-pack),1,3.84,09/11/19 06:20,"12 13th St, San Francisco, CA 94016" +258510,Google Phone,1,600,09/26/19 13:29,"435 2nd St, San Francisco, CA 94016" +258511,Lightning Charging Cable,1,14.95,09/12/19 23:05,"883 5th St, San Francisco, CA 94016" +258512,Macbook Pro Laptop,1,1700,09/06/19 15:19,"230 Pine St, Dallas, TX 75001" +258513,ThinkPad Laptop,1,999.99,09/06/19 14:01,"882 Lake St, Austin, TX 73301" +258514,Lightning Charging Cable,1,14.95,09/20/19 19:01,"196 Meadow St, New York City, NY 10001" +258515,27in FHD Monitor,1,149.99,09/25/19 19:33,"229 Wilson St, Dallas, TX 75001" +258516,Wired Headphones,2,11.99,09/10/19 17:07,"432 Wilson St, Los Angeles, CA 90001" +258517,USB-C Charging Cable,1,11.95,09/23/19 19:06,"867 Adams St, Boston, MA 02215" +258518,AAA Batteries (4-pack),2,2.99,09/20/19 14:26,"740 Center St, Los Angeles, CA 90001" +258519,Wired Headphones,1,11.99,09/20/19 15:06,"276 Washington St, Austin, TX 73301" +258520,USB-C Charging Cable,1,11.95,09/19/19 19:29,"577 Willow St, Austin, TX 73301" +258521,Flatscreen TV,1,300,09/06/19 15:52,"14 4th St, San Francisco, CA 94016" +258522,AA Batteries (4-pack),1,3.84,09/21/19 12:23,"308 Forest St, Los Angeles, CA 90001" +258523,AAA Batteries (4-pack),1,2.99,09/18/19 21:22,"952 Cherry St, San Francisco, CA 94016" +258524,20in Monitor,1,109.99,09/25/19 13:16,"705 14th St, Boston, MA 02215" +258525,USB-C Charging Cable,1,11.95,09/15/19 21:28,"992 7th St, Dallas, TX 75001" +258526,USB-C Charging Cable,1,11.95,09/03/19 06:38,"982 1st St, Atlanta, GA 30301" +258527,Lightning Charging Cable,1,14.95,09/04/19 23:25,"603 5th St, Boston, MA 02215" +258528,USB-C Charging Cable,1,11.95,09/04/19 11:17,"548 Dogwood St, San Francisco, CA 94016" +258529,USB-C Charging Cable,1,11.95,09/19/19 07:33,"301 Park St, San Francisco, CA 94016" +258530,ThinkPad Laptop,1,999.99,09/18/19 10:37,"776 Madison St, Boston, MA 02215" +258531,Vareebadd Phone,1,400,09/05/19 21:42,"838 12th St, Portland, ME 04101" +258532,27in 4K Gaming Monitor,1,389.99,09/16/19 13:16,"730 8th St, Dallas, TX 75001" +258533,34in Ultrawide Monitor,1,379.99,09/22/19 05:43,"800 Walnut St, San Francisco, CA 94016" +258534,34in Ultrawide Monitor,1,379.99,09/12/19 17:41,"774 Forest St, San Francisco, CA 94016" +258535,Bose SoundSport Headphones,1,99.99,09/04/19 22:23,"106 West St, San Francisco, CA 94016" +258535,Lightning Charging Cable,1,14.95,09/04/19 22:23,"106 West St, San Francisco, CA 94016" +258536,Apple Airpods Headphones,1,150,09/19/19 13:43,"683 River St, Seattle, WA 98101" +258537,Apple Airpods Headphones,1,150,09/06/19 17:42,"588 Jackson St, Austin, TX 73301" +258538,27in 4K Gaming Monitor,1,389.99,09/26/19 08:11,"369 6th St, Los Angeles, CA 90001" +258539,Apple Airpods Headphones,2,150,09/23/19 17:17,"186 Main St, Los Angeles, CA 90001" +258540,27in FHD Monitor,1,149.99,09/04/19 11:49,"909 Cedar St, Austin, TX 73301" +258541,USB-C Charging Cable,1,11.95,10/01/19 00:39,"263 13th St, New York City, NY 10001" +258542,27in FHD Monitor,1,149.99,09/09/19 22:29,"597 Hill St, San Francisco, CA 94016" +258543,27in FHD Monitor,1,149.99,09/25/19 20:41,"587 Lincoln St, Portland, OR 97035" +258544,34in Ultrawide Monitor,1,379.99,09/24/19 13:03,"749 1st St, San Francisco, CA 94016" +258545,USB-C Charging Cable,1,11.95,09/13/19 14:25,"97 North St, San Francisco, CA 94016" +258546,Wired Headphones,1,11.99,09/14/19 14:02,"131 Forest St, Austin, TX 73301" +258547,Lightning Charging Cable,1,14.95,09/27/19 10:28,"904 7th St, Seattle, WA 98101" +258548,Lightning Charging Cable,1,14.95,09/24/19 12:30,"947 6th St, Atlanta, GA 30301" +258549,Apple Airpods Headphones,1,150,09/30/19 14:35,"624 5th St, San Francisco, CA 94016" +258550,Wired Headphones,1,11.99,09/12/19 14:39,"825 10th St, Los Angeles, CA 90001" +258551,USB-C Charging Cable,1,11.95,09/22/19 18:23,"860 12th St, Los Angeles, CA 90001" +258552,iPhone,1,700,09/29/19 12:34,"721 Willow St, New York City, NY 10001" +258553,Wired Headphones,1,11.99,09/07/19 18:53,"928 Jackson St, Los Angeles, CA 90001" +258554,Lightning Charging Cable,1,14.95,09/22/19 18:38,"473 8th St, San Francisco, CA 94016" +258555,AAA Batteries (4-pack),1,2.99,09/23/19 17:22,"571 4th St, San Francisco, CA 94016" +258556,Google Phone,1,600,09/21/19 22:13,"769 Madison St, San Francisco, CA 94016" +258557,Wired Headphones,1,11.99,09/17/19 19:00,"698 Park St, San Francisco, CA 94016" +258558,AAA Batteries (4-pack),2,2.99,09/22/19 01:32,"508 1st St, Boston, MA 02215" +258559,Wired Headphones,1,11.99,09/09/19 10:48,"40 8th St, Seattle, WA 98101" +258560,Google Phone,1,600,09/25/19 09:23,"584 11th St, Dallas, TX 75001" +258561,AA Batteries (4-pack),1,3.84,09/24/19 18:37,"54 Forest St, Los Angeles, CA 90001" +258562,Apple Airpods Headphones,1,150,09/08/19 14:29,"177 6th St, Austin, TX 73301" +258563,USB-C Charging Cable,2,11.95,09/09/19 20:42,"946 8th St, San Francisco, CA 94016" +258564,AA Batteries (4-pack),1,3.84,09/15/19 15:19,"649 Lincoln St, New York City, NY 10001" +258565,Apple Airpods Headphones,1,150,09/18/19 21:58,"851 North St, San Francisco, CA 94016" +258566,Apple Airpods Headphones,1,150,09/04/19 21:38,"14 Madison St, Los Angeles, CA 90001" +258567,Bose SoundSport Headphones,1,99.99,09/01/19 08:42,"97 Ridge St, Portland, OR 97035" +258568,Google Phone,1,600,09/15/19 10:11,"847 12th St, New York City, NY 10001" +258569,AAA Batteries (4-pack),1,2.99,09/12/19 18:03,"184 Chestnut St, New York City, NY 10001" +258570,ThinkPad Laptop,1,999.99,09/14/19 16:52,"222 North St, New York City, NY 10001" +258571,ThinkPad Laptop,1,999.99,09/11/19 10:36,"779 9th St, New York City, NY 10001" +258572,Apple Airpods Headphones,1,150,09/15/19 18:31,"242 Maple St, New York City, NY 10001" +258573,Macbook Pro Laptop,1,1700,09/01/19 21:10,"989 7th St, San Francisco, CA 94016" +258574,27in FHD Monitor,1,149.99,09/28/19 20:02,"487 Maple St, New York City, NY 10001" +258575,USB-C Charging Cable,1,11.95,09/08/19 13:26,"739 8th St, Los Angeles, CA 90001" +258576,LG Washing Machine,1,600.0,09/12/19 11:01,"485 Lincoln St, Portland, OR 97035" +258577,USB-C Charging Cable,3,11.95,09/26/19 09:16,"648 Church St, Austin, TX 73301" +258578,AAA Batteries (4-pack),2,2.99,09/23/19 06:47,"162 Sunset St, Boston, MA 02215" +258579,Wired Headphones,1,11.99,09/28/19 11:33,"936 Highland St, Boston, MA 02215" +258580,USB-C Charging Cable,1,11.95,09/21/19 10:49,"259 Cherry St, Dallas, TX 75001" +258581,AAA Batteries (4-pack),1,2.99,09/27/19 01:33,"847 Adams St, Los Angeles, CA 90001" +258582,34in Ultrawide Monitor,1,379.99,09/12/19 08:46,"467 Cedar St, New York City, NY 10001" +258583,AAA Batteries (4-pack),1,2.99,09/27/19 11:40,"801 9th St, San Francisco, CA 94016" +258584,Bose SoundSport Headphones,1,99.99,09/16/19 18:07,"362 Hill St, Los Angeles, CA 90001" +258585,AAA Batteries (4-pack),5,2.99,09/17/19 20:24,"895 Church St, Los Angeles, CA 90001" +258586,AA Batteries (4-pack),1,3.84,09/28/19 15:38,"782 8th St, New York City, NY 10001" +258587,Lightning Charging Cable,2,14.95,09/16/19 12:33,"167 7th St, New York City, NY 10001" +258588,Wired Headphones,1,11.99,09/24/19 19:22,"861 Cherry St, San Francisco, CA 94016" +258589,USB-C Charging Cable,2,11.95,09/07/19 16:57,"181 Hickory St, New York City, NY 10001" +258590,Apple Airpods Headphones,1,150,09/18/19 10:49,"890 7th St, Seattle, WA 98101" +258591,Macbook Pro Laptop,1,1700,09/21/19 14:34,"557 North St, Atlanta, GA 30301" +258592,AAA Batteries (4-pack),2,2.99,09/14/19 19:20,"523 7th St, Los Angeles, CA 90001" +258593,AAA Batteries (4-pack),2,2.99,09/10/19 22:58,"49 Sunset St, Los Angeles, CA 90001" +258594,AA Batteries (4-pack),1,3.84,09/22/19 20:59,"319 Center St, San Francisco, CA 94016" +258595,Wired Headphones,1,11.99,09/29/19 10:34,"672 North St, Seattle, WA 98101" +258596,Wired Headphones,1,11.99,09/23/19 11:20,"789 North St, Portland, OR 97035" +258597,AA Batteries (4-pack),2,3.84,09/23/19 16:49,"471 Hill St, San Francisco, CA 94016" +258598,USB-C Charging Cable,1,11.95,09/27/19 06:42,"511 Jackson St, Boston, MA 02215" +258599,Bose SoundSport Headphones,1,99.99,09/01/19 20:47,"357 10th St, San Francisco, CA 94016" +258600,ThinkPad Laptop,1,999.99,09/06/19 13:16,"547 8th St, Seattle, WA 98101" +258601,Lightning Charging Cable,1,14.95,09/15/19 20:41,"820 10th St, Boston, MA 02215" +258602,AAA Batteries (4-pack),3,2.99,09/30/19 21:20,"292 12th St, New York City, NY 10001" +258603,AA Batteries (4-pack),1,3.84,09/22/19 19:57,"204 12th St, Seattle, WA 98101" +258604,Lightning Charging Cable,1,14.95,09/08/19 03:34,"407 Dogwood St, San Francisco, CA 94016" +258605,Bose SoundSport Headphones,1,99.99,09/13/19 18:18,"840 River St, Los Angeles, CA 90001" +258606,AAA Batteries (4-pack),1,2.99,09/19/19 07:29,"131 Chestnut St, San Francisco, CA 94016" +258607,Apple Airpods Headphones,1,150,09/18/19 08:06,"862 4th St, Portland, OR 97035" +258608,Apple Airpods Headphones,1,150,09/03/19 16:00,"104 Dogwood St, Austin, TX 73301" +258609,Bose SoundSport Headphones,1,99.99,09/14/19 15:21,"547 South St, San Francisco, CA 94016" +258609,AAA Batteries (4-pack),1,2.99,09/14/19 15:21,"547 South St, San Francisco, CA 94016" +258610,34in Ultrawide Monitor,1,379.99,09/24/19 20:29,"93 7th St, Seattle, WA 98101" +258611,USB-C Charging Cable,1,11.95,09/25/19 02:21,"870 Walnut St, Los Angeles, CA 90001" +258612,Lightning Charging Cable,1,14.95,09/17/19 17:18,"628 North St, Atlanta, GA 30301" +258613,Google Phone,1,600,09/10/19 18:43,"237 Main St, San Francisco, CA 94016" +258614,AAA Batteries (4-pack),2,2.99,09/16/19 11:14,"670 South St, Los Angeles, CA 90001" +258615,Flatscreen TV,1,300,09/09/19 12:48,"252 7th St, Austin, TX 73301" +,,,,, +258616,Apple Airpods Headphones,1,150,09/22/19 11:32,"603 4th St, Los Angeles, CA 90001" +258617,AAA Batteries (4-pack),3,2.99,09/27/19 17:00,"352 South St, Boston, MA 02215" +258618,USB-C Charging Cable,1,11.95,09/14/19 17:50,"584 Dogwood St, Seattle, WA 98101" +258619,Lightning Charging Cable,1,14.95,09/17/19 12:28,"860 Adams St, Dallas, TX 75001" +258620,Wired Headphones,1,11.99,09/17/19 16:09,"313 Jefferson St, Atlanta, GA 30301" +258621,AAA Batteries (4-pack),1,2.99,09/04/19 16:17,"738 13th St, San Francisco, CA 94016" +258622,Wired Headphones,1,11.99,09/19/19 07:29,"43 Center St, Los Angeles, CA 90001" +258623,Macbook Pro Laptop,1,1700,09/07/19 16:21,"9 2nd St, San Francisco, CA 94016" +258624,Wired Headphones,1,11.99,09/09/19 19:09,"161 Jefferson St, Los Angeles, CA 90001" +258625,AAA Batteries (4-pack),4,2.99,09/26/19 16:18,"732 Dogwood St, New York City, NY 10001" +258626,Bose SoundSport Headphones,1,99.99,09/03/19 15:48,"962 Washington St, Dallas, TX 75001" +258627,Lightning Charging Cable,1,14.95,09/09/19 07:40,"993 Spruce St, New York City, NY 10001" +258628,USB-C Charging Cable,1,11.95,09/21/19 18:42,"636 Maple St, Dallas, TX 75001" +258629,Lightning Charging Cable,1,14.95,09/06/19 12:47,"395 11th St, New York City, NY 10001" +258630,iPhone,1,700,09/02/19 18:37,"325 Sunset St, Portland, OR 97035" +258631,Lightning Charging Cable,1,14.95,09/16/19 20:24,"759 9th St, Seattle, WA 98101" +258632,AA Batteries (4-pack),1,3.84,09/13/19 16:50,"544 Maple St, Atlanta, GA 30301" +258633,AAA Batteries (4-pack),1,2.99,09/10/19 19:23,"31 Lakeview St, San Francisco, CA 94016" +258634,USB-C Charging Cable,2,11.95,09/19/19 16:59,"180 Center St, Dallas, TX 75001" +258635,Flatscreen TV,1,300,09/24/19 12:30,"544 Sunset St, San Francisco, CA 94016" +258636,USB-C Charging Cable,1,11.95,09/29/19 18:05,"380 10th St, New York City, NY 10001" +258637,Apple Airpods Headphones,1,150,09/04/19 13:08,"18 1st St, New York City, NY 10001" +258638,Wired Headphones,1,11.99,09/01/19 18:20,"355 10th St, Los Angeles, CA 90001" +258639,Lightning Charging Cable,1,14.95,09/18/19 18:45,"393 North St, Dallas, TX 75001" +258640,Bose SoundSport Headphones,1,99.99,09/16/19 13:45,"172 Meadow St, Los Angeles, CA 90001" +258641,Google Phone,1,600,09/02/19 17:30,"724 10th St, New York City, NY 10001" +258642,27in FHD Monitor,1,149.99,09/11/19 23:44,"759 South St, Dallas, TX 75001" +258643,Apple Airpods Headphones,1,150,09/05/19 20:14,"489 Hickory St, Dallas, TX 75001" +258644,ThinkPad Laptop,1,999.99,09/09/19 15:55,"915 Ridge St, New York City, NY 10001" +258645,Wired Headphones,1,11.99,09/15/19 10:15,"853 Willow St, San Francisco, CA 94016" +258646,AA Batteries (4-pack),1,3.84,09/18/19 08:41,"912 2nd St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +258647,Lightning Charging Cable,1,14.95,09/08/19 12:59,"694 Chestnut St, Seattle, WA 98101" +258648,Bose SoundSport Headphones,1,99.99,09/24/19 20:21,"117 West St, Boston, MA 02215" +258649,USB-C Charging Cable,1,11.95,09/11/19 15:07,"205 Cedar St, Portland, OR 97035" +258650,20in Monitor,1,109.99,09/23/19 13:02,"368 Dogwood St, San Francisco, CA 94016" +258651,34in Ultrawide Monitor,1,379.99,09/15/19 13:05,"905 Washington St, San Francisco, CA 94016" +258651,USB-C Charging Cable,1,11.95,09/15/19 13:05,"905 Washington St, San Francisco, CA 94016" +258652,Lightning Charging Cable,1,14.95,09/22/19 18:17,"864 Elm St, Boston, MA 02215" +258653,Bose SoundSport Headphones,1,99.99,09/01/19 13:37,"361 Jackson St, Boston, MA 02215" +258653,AAA Batteries (4-pack),2,2.99,09/01/19 13:37,"361 Jackson St, Boston, MA 02215" +258654,AA Batteries (4-pack),1,3.84,09/12/19 18:33,"549 Lakeview St, San Francisco, CA 94016" +258655,Google Phone,1,600,09/02/19 20:54,"690 10th St, Boston, MA 02215" +258656,Vareebadd Phone,1,400,09/07/19 16:38,"56 Hill St, Boston, MA 02215" +258656,Bose SoundSport Headphones,1,99.99,09/07/19 16:38,"56 Hill St, Boston, MA 02215" +258657,ThinkPad Laptop,1,999.99,09/27/19 23:50,"806 Wilson St, Dallas, TX 75001" +258658,Apple Airpods Headphones,1,150,09/26/19 10:46,"321 14th St, San Francisco, CA 94016" +258659,Flatscreen TV,1,300,09/21/19 14:10,"660 Jefferson St, New York City, NY 10001" +258660,Flatscreen TV,1,300,09/09/19 10:47,"874 Dogwood St, Los Angeles, CA 90001" +258661,Macbook Pro Laptop,1,1700,09/14/19 01:13,"539 11th St, San Francisco, CA 94016" +258662,Wired Headphones,1,11.99,09/23/19 09:51,"37 2nd St, New York City, NY 10001" +258663,Google Phone,1,600,09/21/19 15:32,"655 Hickory St, Los Angeles, CA 90001" +258663,USB-C Charging Cable,1,11.95,09/21/19 15:32,"655 Hickory St, Los Angeles, CA 90001" +258664,Wired Headphones,1,11.99,09/19/19 15:44,"79 Lincoln St, Los Angeles, CA 90001" +258665,27in FHD Monitor,1,149.99,09/09/19 14:20,"48 Pine St, New York City, NY 10001" +258666,27in FHD Monitor,1,149.99,09/27/19 17:55,"435 Cherry St, New York City, NY 10001" +258667,27in 4K Gaming Monitor,1,389.99,09/29/19 21:25,"826 Hickory St, Austin, TX 73301" +258668,Bose SoundSport Headphones,1,99.99,09/28/19 17:28,"362 8th St, Portland, OR 97035" +258669,20in Monitor,1,109.99,09/23/19 15:21,"457 Forest St, San Francisco, CA 94016" +258670,ThinkPad Laptop,1,999.99,09/20/19 13:12,"23 River St, San Francisco, CA 94016" +258671,Bose SoundSport Headphones,1,99.99,09/10/19 18:11,"256 Highland St, San Francisco, CA 94016" +258672,Vareebadd Phone,1,400,09/02/19 18:38,"970 Center St, New York City, NY 10001" +258673,Apple Airpods Headphones,1,150,09/19/19 21:51,"448 Ridge St, Seattle, WA 98101" +258674,USB-C Charging Cable,1,11.95,09/27/19 18:10,"849 North St, San Francisco, CA 94016" +258675,Wired Headphones,1,11.99,09/28/19 13:01,"264 Pine St, Dallas, TX 75001" +258676,Bose SoundSport Headphones,1,99.99,09/29/19 09:10,"88 Meadow St, Dallas, TX 75001" +258677,USB-C Charging Cable,1,11.95,09/27/19 11:40,"860 Hill St, San Francisco, CA 94016" +258678,AA Batteries (4-pack),3,3.84,09/14/19 17:09,"268 Lincoln St, Boston, MA 02215" +258679,Lightning Charging Cable,1,14.95,09/12/19 09:48,"359 12th St, San Francisco, CA 94016" +258680,USB-C Charging Cable,1,11.95,09/19/19 14:44,"630 Sunset St, Seattle, WA 98101" +258681,AAA Batteries (4-pack),1,2.99,09/12/19 18:18,"789 2nd St, Austin, TX 73301" +258682,Apple Airpods Headphones,1,150,09/06/19 08:12,"321 6th St, San Francisco, CA 94016" +258683,20in Monitor,1,109.99,09/17/19 18:27,"338 14th St, Atlanta, GA 30301" +258684,Wired Headphones,1,11.99,09/29/19 15:08,"802 West St, Atlanta, GA 30301" +258685,Lightning Charging Cable,1,14.95,09/03/19 14:03,"540 4th St, San Francisco, CA 94016" +258686,Lightning Charging Cable,1,14.95,09/13/19 18:52,"225 Maple St, Seattle, WA 98101" +258687,20in Monitor,1,109.99,09/20/19 18:43,"177 10th St, Los Angeles, CA 90001" +258688,Apple Airpods Headphones,1,150,09/17/19 11:10,"790 River St, Atlanta, GA 30301" +258689,Bose SoundSport Headphones,1,99.99,09/23/19 20:02,"429 4th St, Seattle, WA 98101" +258690,Wired Headphones,1,11.99,09/09/19 11:44,"428 Park St, Los Angeles, CA 90001" +258691,USB-C Charging Cable,2,11.95,09/06/19 21:58,"803 Lincoln St, Boston, MA 02215" +258692,AAA Batteries (4-pack),1,2.99,09/26/19 14:09,"897 Madison St, Austin, TX 73301" +258693,Lightning Charging Cable,1,14.95,09/26/19 11:37,"604 West St, Los Angeles, CA 90001" +258694,AAA Batteries (4-pack),2,2.99,09/05/19 10:25,"32 Maple St, Austin, TX 73301" +258695,Wired Headphones,1,11.99,09/06/19 13:11,"577 14th St, San Francisco, CA 94016" +258696,Lightning Charging Cable,1,14.95,09/05/19 00:01,"684 Lakeview St, Boston, MA 02215" +258697,USB-C Charging Cable,1,11.95,09/02/19 00:55,"101 Adams St, San Francisco, CA 94016" +258698,AAA Batteries (4-pack),1,2.99,09/06/19 13:49,"460 North St, Seattle, WA 98101" +258699,USB-C Charging Cable,1,11.95,09/28/19 16:49,"9 8th St, Los Angeles, CA 90001" +258700,AA Batteries (4-pack),1,3.84,09/05/19 18:17,"553 Park St, San Francisco, CA 94016" +258701,Wired Headphones,1,11.99,09/22/19 13:48,"618 10th St, San Francisco, CA 94016" +258702,Wired Headphones,2,11.99,09/25/19 17:22,"409 14th St, Portland, OR 97035" +258703,Bose SoundSport Headphones,1,99.99,09/25/19 18:44,"144 West St, Dallas, TX 75001" +258704,Apple Airpods Headphones,1,150,09/26/19 00:11,"332 2nd St, New York City, NY 10001" +258705,AA Batteries (4-pack),4,3.84,09/20/19 16:12,"705 Chestnut St, Dallas, TX 75001" +258706,AA Batteries (4-pack),1,3.84,09/30/19 01:48,"720 Meadow St, New York City, NY 10001" +258707,Apple Airpods Headphones,1,150,09/23/19 16:55,"758 Cherry St, New York City, NY 10001" +258708,Apple Airpods Headphones,1,150,09/10/19 19:04,"150 Jackson St, Boston, MA 02215" +258708,Bose SoundSport Headphones,1,99.99,09/10/19 19:04,"150 Jackson St, Boston, MA 02215" +258709,AA Batteries (4-pack),3,3.84,09/14/19 23:24,"721 South St, New York City, NY 10001" +258710,AA Batteries (4-pack),2,3.84,09/30/19 06:29,"206 9th St, Atlanta, GA 30301" +258711,Macbook Pro Laptop,1,1700,09/26/19 21:10,"2 Hickory St, San Francisco, CA 94016" +258712,iPhone,1,700,09/04/19 11:25,"733 Washington St, New York City, NY 10001" +258713,AA Batteries (4-pack),1,3.84,09/06/19 12:20,"863 Elm St, Atlanta, GA 30301" +258714,Bose SoundSport Headphones,1,99.99,09/20/19 18:02,"191 5th St, New York City, NY 10001" +258715,AAA Batteries (4-pack),3,2.99,09/23/19 06:21,"567 Highland St, Dallas, TX 75001" +258716,AAA Batteries (4-pack),1,2.99,09/04/19 17:34,"117 11th St, Portland, OR 97035" +258717,AAA Batteries (4-pack),3,2.99,09/02/19 21:14,"797 14th St, New York City, NY 10001" +258718,27in 4K Gaming Monitor,1,389.99,09/16/19 17:28,"671 7th St, San Francisco, CA 94016" +258719,AA Batteries (4-pack),1,3.84,09/10/19 10:38,"533 Church St, Portland, ME 04101" +258720,AAA Batteries (4-pack),1,2.99,09/19/19 09:11,"414 Washington St, San Francisco, CA 94016" +258721,27in 4K Gaming Monitor,1,389.99,09/11/19 11:40,"725 Main St, Los Angeles, CA 90001" +258722,Wired Headphones,1,11.99,09/22/19 10:48,"912 9th St, Los Angeles, CA 90001" +258723,Wired Headphones,1,11.99,09/25/19 21:41,"619 1st St, Los Angeles, CA 90001" +258724,Wired Headphones,1,11.99,09/29/19 21:37,"267 Cherry St, Boston, MA 02215" +258725,AAA Batteries (4-pack),1,2.99,09/29/19 00:29,"607 10th St, Boston, MA 02215" +258726,Apple Airpods Headphones,1,150,09/03/19 14:47,"305 Johnson St, Los Angeles, CA 90001" +258727,AA Batteries (4-pack),1,3.84,09/23/19 20:29,"709 2nd St, San Francisco, CA 94016" +258728,Wired Headphones,1,11.99,09/13/19 16:48,"228 Ridge St, Seattle, WA 98101" +258729,Macbook Pro Laptop,1,1700,09/22/19 16:03,"474 Church St, Austin, TX 73301" +258730,iPhone,1,700,09/21/19 19:37,"154 Hill St, New York City, NY 10001" +258731,Bose SoundSport Headphones,1,99.99,09/23/19 20:01,"779 Jackson St, Los Angeles, CA 90001" +258732,AAA Batteries (4-pack),2,2.99,09/03/19 12:09,"8 Lake St, Atlanta, GA 30301" +258733,Lightning Charging Cable,1,14.95,09/28/19 17:56,"816 Lakeview St, New York City, NY 10001" +258734,USB-C Charging Cable,1,11.95,09/07/19 09:16,"800 8th St, Los Angeles, CA 90001" +258735,27in 4K Gaming Monitor,1,389.99,09/11/19 14:46,"602 2nd St, Boston, MA 02215" +258736,Apple Airpods Headphones,1,150,09/28/19 11:17,"107 7th St, Boston, MA 02215" +258737,Lightning Charging Cable,1,14.95,09/14/19 21:50,"933 6th St, Portland, OR 97035" +258738,34in Ultrawide Monitor,1,379.99,09/10/19 11:26,"548 Jefferson St, New York City, NY 10001" +258739,AA Batteries (4-pack),1,3.84,09/10/19 20:16,"336 Meadow St, Boston, MA 02215" +258740,AA Batteries (4-pack),1,3.84,09/12/19 10:29,"211 10th St, New York City, NY 10001" +258741,Vareebadd Phone,1,400,09/25/19 20:32,"757 Elm St, New York City, NY 10001" +258742,ThinkPad Laptop,1,999.99,09/26/19 09:24,"329 Chestnut St, San Francisco, CA 94016" +258743,27in 4K Gaming Monitor,1,389.99,09/13/19 05:09,"142 Sunset St, San Francisco, CA 94016" +258744,Flatscreen TV,1,300,09/16/19 20:11,"326 Cherry St, Los Angeles, CA 90001" +258745,AAA Batteries (4-pack),3,2.99,09/19/19 17:32,"484 6th St, New York City, NY 10001" +258746,Apple Airpods Headphones,1,150,09/14/19 00:59,"141 9th St, San Francisco, CA 94016" +258747,Bose SoundSport Headphones,1,99.99,09/26/19 15:12,"378 Forest St, San Francisco, CA 94016" +258748,iPhone,1,700,09/25/19 19:56,"54 Jefferson St, Seattle, WA 98101" +258749,Macbook Pro Laptop,1,1700,09/24/19 17:51,"516 4th St, San Francisco, CA 94016" +258750,Wired Headphones,1,11.99,09/09/19 12:19,"635 Chestnut St, San Francisco, CA 94016" +258751,AA Batteries (4-pack),1,3.84,09/15/19 00:08,"586 Adams St, San Francisco, CA 94016" +258752,Wired Headphones,1,11.99,09/06/19 19:10,"426 Main St, New York City, NY 10001" +258753,Bose SoundSport Headphones,1,99.99,09/02/19 22:42,"441 Jackson St, Boston, MA 02215" +258754,ThinkPad Laptop,1,999.99,09/25/19 13:02,"144 Maple St, Seattle, WA 98101" +258755,Google Phone,1,600,09/12/19 09:00,"100 Wilson St, New York City, NY 10001" +258756,Apple Airpods Headphones,1,150,09/07/19 21:37,"560 Madison St, Los Angeles, CA 90001" +258757,Apple Airpods Headphones,1,150,09/14/19 19:48,"276 Johnson St, Boston, MA 02215" +258758,Wired Headphones,1,11.99,09/05/19 15:51,"492 Lincoln St, Atlanta, GA 30301" +258759,AAA Batteries (4-pack),1,2.99,09/18/19 18:44,"373 9th St, Dallas, TX 75001" +258760,AAA Batteries (4-pack),1,2.99,09/30/19 12:24,"737 Washington St, Boston, MA 02215" +258761,27in FHD Monitor,1,149.99,09/12/19 06:57,"206 6th St, Los Angeles, CA 90001" +258762,USB-C Charging Cable,1,11.95,09/03/19 08:31,"147 5th St, New York City, NY 10001" +258763,USB-C Charging Cable,1,11.95,09/02/19 22:32,"907 Johnson St, San Francisco, CA 94016" +258764,Vareebadd Phone,1,400,09/23/19 11:06,"894 Spruce St, Los Angeles, CA 90001" +258764,USB-C Charging Cable,1,11.95,09/23/19 11:06,"894 Spruce St, Los Angeles, CA 90001" +258764,Wired Headphones,1,11.99,09/23/19 11:06,"894 Spruce St, Los Angeles, CA 90001" +258765,Flatscreen TV,1,300,09/04/19 20:15,"850 Sunset St, Los Angeles, CA 90001" +258766,Bose SoundSport Headphones,1,99.99,09/14/19 01:43,"95 Pine St, Austin, TX 73301" +258766,USB-C Charging Cable,2,11.95,09/14/19 01:43,"95 Pine St, Austin, TX 73301" +258767,27in 4K Gaming Monitor,1,389.99,09/26/19 20:55,"497 Adams St, Portland, OR 97035" +258768,27in FHD Monitor,1,149.99,09/12/19 19:11,"215 13th St, Austin, TX 73301" +258769,27in FHD Monitor,1,149.99,09/22/19 10:17,"181 12th St, Los Angeles, CA 90001" +258770,Lightning Charging Cable,1,14.95,09/27/19 20:45,"256 North St, Los Angeles, CA 90001" +258771,Apple Airpods Headphones,1,150,09/11/19 14:27,"884 7th St, Los Angeles, CA 90001" +258772,Lightning Charging Cable,1,14.95,09/18/19 22:15,"514 Jefferson St, Boston, MA 02215" +258773,AAA Batteries (4-pack),2,2.99,09/17/19 14:25,"672 Washington St, San Francisco, CA 94016" +258774,AAA Batteries (4-pack),1,2.99,09/21/19 10:23,"646 Lincoln St, Los Angeles, CA 90001" +258775,AAA Batteries (4-pack),1,2.99,09/02/19 01:41,"652 Main St, San Francisco, CA 94016" +258776,27in FHD Monitor,1,149.99,09/08/19 22:33,"266 Cedar St, Los Angeles, CA 90001" +258777,AA Batteries (4-pack),1,3.84,09/15/19 01:14,"798 Jefferson St, Dallas, TX 75001" +258778,Wired Headphones,1,11.99,09/07/19 17:55,"381 Chestnut St, San Francisco, CA 94016" +258779,20in Monitor,1,109.99,09/09/19 17:48,"94 Lincoln St, Los Angeles, CA 90001" +258780,Wired Headphones,1,11.99,09/30/19 09:59,"601 11th St, New York City, NY 10001" +258781,AAA Batteries (4-pack),2,2.99,09/22/19 22:04,"653 South St, New York City, NY 10001" +258782,iPhone,1,700,09/05/19 12:13,"583 South St, Atlanta, GA 30301" +258782,Lightning Charging Cable,1,14.95,09/05/19 12:13,"583 South St, Atlanta, GA 30301" +258782,Wired Headphones,2,11.99,09/05/19 12:13,"583 South St, Atlanta, GA 30301" +258783,34in Ultrawide Monitor,1,379.99,09/18/19 12:08,"282 Pine St, New York City, NY 10001" +258784,Apple Airpods Headphones,1,150,09/16/19 11:52,"366 Pine St, Seattle, WA 98101" +258785,iPhone,1,700,09/20/19 12:49,"514 Adams St, Portland, OR 97035" +258786,AAA Batteries (4-pack),2,2.99,09/03/19 09:50,"411 Adams St, San Francisco, CA 94016" +258787,USB-C Charging Cable,1,11.95,09/01/19 10:19,"514 Lake St, Los Angeles, CA 90001" +258788,Macbook Pro Laptop,1,1700,09/04/19 23:16,"523 1st St, Atlanta, GA 30301" +258789,AA Batteries (4-pack),1,3.84,09/25/19 06:34,"510 Forest St, Austin, TX 73301" +258790,AAA Batteries (4-pack),1,2.99,09/24/19 17:52,"6 7th St, New York City, NY 10001" +258791,27in 4K Gaming Monitor,1,389.99,09/01/19 12:18,"19 North St, San Francisco, CA 94016" +258792,Lightning Charging Cable,1,14.95,09/15/19 17:40,"781 Church St, Seattle, WA 98101" +258793,Wired Headphones,1,11.99,09/22/19 08:22,"928 Cedar St, San Francisco, CA 94016" +258794,27in FHD Monitor,1,149.99,09/21/19 18:34,"657 North St, New York City, NY 10001" +258795,Lightning Charging Cable,1,14.95,09/10/19 18:00,"492 Wilson St, Los Angeles, CA 90001" +258796,AAA Batteries (4-pack),2,2.99,09/02/19 18:47,"289 Willow St, San Francisco, CA 94016" +258797,Bose SoundSport Headphones,1,99.99,09/30/19 17:06,"829 Lincoln St, San Francisco, CA 94016" +258798,AA Batteries (4-pack),1,3.84,09/23/19 22:11,"1 Park St, Dallas, TX 75001" +258799,iPhone,1,700,09/07/19 15:52,"742 9th St, Boston, MA 02215" +258800,USB-C Charging Cable,1,11.95,09/15/19 18:29,"323 8th St, Dallas, TX 75001" +258801,AA Batteries (4-pack),1,3.84,09/24/19 12:14,"487 14th St, Austin, TX 73301" +258802,AA Batteries (4-pack),1,3.84,09/24/19 10:38,"376 Lake St, San Francisco, CA 94016" +258803,USB-C Charging Cable,1,11.95,09/11/19 13:41,"204 Dogwood St, Boston, MA 02215" +258804,Apple Airpods Headphones,1,150,09/14/19 20:28,"908 Spruce St, Dallas, TX 75001" +258805,20in Monitor,1,109.99,09/26/19 16:55,"778 1st St, Los Angeles, CA 90001" +258806,AAA Batteries (4-pack),1,2.99,09/15/19 17:15,"507 Dogwood St, San Francisco, CA 94016" +258807,Lightning Charging Cable,1,14.95,09/24/19 10:10,"285 6th St, Seattle, WA 98101" +258808,Lightning Charging Cable,1,14.95,09/18/19 09:09,"968 8th St, New York City, NY 10001" +258809,Google Phone,1,600,09/10/19 14:55,"783 Cedar St, Dallas, TX 75001" +258810,Google Phone,1,600,09/22/19 17:35,"440 Willow St, Atlanta, GA 30301" +258811,Wired Headphones,1,11.99,09/06/19 12:58,"715 Lincoln St, Austin, TX 73301" +258812,Bose SoundSport Headphones,1,99.99,09/11/19 07:36,"808 Main St, New York City, NY 10001" +258813,Lightning Charging Cable,1,14.95,09/13/19 01:50,"556 West St, San Francisco, CA 94016" +258814,27in 4K Gaming Monitor,1,389.99,09/06/19 12:35,"54 Lakeview St, San Francisco, CA 94016" +258815,Google Phone,1,600,09/26/19 12:26,"776 Willow St, New York City, NY 10001" +258816,Bose SoundSport Headphones,1,99.99,09/29/19 10:52,"926 12th St, Portland, OR 97035" +258817,Google Phone,1,600,09/28/19 11:46,"675 South St, San Francisco, CA 94016" +258818,USB-C Charging Cable,1,11.95,09/24/19 00:30,"546 Sunset St, Boston, MA 02215" +258819,AAA Batteries (4-pack),1,2.99,09/24/19 15:41,"472 4th St, Los Angeles, CA 90001" +258820,USB-C Charging Cable,1,11.95,09/16/19 00:42,"600 2nd St, San Francisco, CA 94016" +258821,USB-C Charging Cable,1,11.95,09/15/19 00:19,"597 Meadow St, San Francisco, CA 94016" +258822,Macbook Pro Laptop,1,1700,09/22/19 20:41,"484 Jefferson St, New York City, NY 10001" +258823,Lightning Charging Cable,1,14.95,09/05/19 06:35,"466 Park St, San Francisco, CA 94016" +258824,Bose SoundSport Headphones,1,99.99,09/24/19 19:06,"17 1st St, Austin, TX 73301" +258825,27in 4K Gaming Monitor,1,389.99,09/27/19 16:36,"413 Forest St, Dallas, TX 75001" +258826,Wired Headphones,1,11.99,09/26/19 21:28,"627 Cherry St, Seattle, WA 98101" +258827,34in Ultrawide Monitor,1,379.99,09/23/19 20:27,"415 Jackson St, Los Angeles, CA 90001" +258828,Apple Airpods Headphones,1,150,09/29/19 00:47,"586 Jackson St, San Francisco, CA 94016" +258829,Bose SoundSport Headphones,1,99.99,09/20/19 22:00,"958 5th St, San Francisco, CA 94016" +258830,20in Monitor,1,109.99,09/28/19 20:58,"519 Wilson St, San Francisco, CA 94016" +258831,LG Dryer,1,600.0,09/04/19 19:38,"476 Elm St, Austin, TX 73301" +258832,AA Batteries (4-pack),1,3.84,09/23/19 11:25,"88 Willow St, Dallas, TX 75001" +258833,AAA Batteries (4-pack),1,2.99,09/26/19 10:30,"733 Highland St, Seattle, WA 98101" +258834,ThinkPad Laptop,1,999.99,09/10/19 20:30,"292 Elm St, Atlanta, GA 30301" +258835,Lightning Charging Cable,1,14.95,09/26/19 20:53,"385 Park St, Boston, MA 02215" +258836,iPhone,1,700,09/02/19 12:38,"185 Lakeview St, San Francisco, CA 94016" +258837,Bose SoundSport Headphones,1,99.99,09/12/19 10:11,"548 Church St, Los Angeles, CA 90001" +258838,Lightning Charging Cable,1,14.95,09/26/19 13:53,"57 Cherry St, San Francisco, CA 94016" +258839,USB-C Charging Cable,1,11.95,09/14/19 18:13,"60 Jefferson St, Portland, OR 97035" +258840,27in FHD Monitor,1,149.99,09/01/19 18:33,"760 Chestnut St, Dallas, TX 75001" +258841,USB-C Charging Cable,1,11.95,09/19/19 15:28,"532 Lake St, Austin, TX 73301" +258842,iPhone,1,700,09/15/19 16:54,"743 Washington St, New York City, NY 10001" +258843,27in FHD Monitor,1,149.99,09/12/19 14:54,"409 Willow St, Los Angeles, CA 90001" +258844,USB-C Charging Cable,1,11.95,09/12/19 14:31,"634 North St, San Francisco, CA 94016" +258845,Apple Airpods Headphones,1,150,09/22/19 12:44,"30 11th St, Dallas, TX 75001" +258846,AAA Batteries (4-pack),1,2.99,09/17/19 09:10,"694 Elm St, Los Angeles, CA 90001" +258847,Macbook Pro Laptop,1,1700,09/08/19 14:01,"694 West St, San Francisco, CA 94016" +258848,AA Batteries (4-pack),3,3.84,09/26/19 20:40,"110 Hickory St, Seattle, WA 98101" +258849,Lightning Charging Cable,1,14.95,09/02/19 14:02,"956 Johnson St, Seattle, WA 98101" +258850,Apple Airpods Headphones,1,150,09/02/19 15:21,"850 7th St, Seattle, WA 98101" +258851,27in FHD Monitor,1,149.99,09/26/19 00:41,"68 Spruce St, Austin, TX 73301" +258852,USB-C Charging Cable,1,11.95,09/14/19 18:40,"252 10th St, Austin, TX 73301" +258853,27in FHD Monitor,1,149.99,09/16/19 13:16,"975 Hill St, Atlanta, GA 30301" +258854,Google Phone,1,600,09/05/19 14:03,"745 9th St, Dallas, TX 75001" +258854,USB-C Charging Cable,1,11.95,09/05/19 14:03,"745 9th St, Dallas, TX 75001" +258855,USB-C Charging Cable,1,11.95,09/21/19 05:16,"220 West St, San Francisco, CA 94016" +258856,AA Batteries (4-pack),1,3.84,09/19/19 17:37,"106 1st St, Boston, MA 02215" +258857,Bose SoundSport Headphones,1,99.99,09/01/19 20:14,"662 Lakeview St, San Francisco, CA 94016" +258858,USB-C Charging Cable,1,11.95,09/10/19 16:15,"848 Washington St, Portland, ME 04101" +258859,Lightning Charging Cable,1,14.95,09/23/19 20:06,"221 6th St, San Francisco, CA 94016" +258860,Lightning Charging Cable,1,14.95,09/03/19 10:27,"660 Maple St, Los Angeles, CA 90001" +258861,AA Batteries (4-pack),1,3.84,09/28/19 09:39,"918 Meadow St, Dallas, TX 75001" +258861,27in 4K Gaming Monitor,1,389.99,09/28/19 09:39,"918 Meadow St, Dallas, TX 75001" +258862,Macbook Pro Laptop,1,1700,09/27/19 19:00,"326 11th St, San Francisco, CA 94016" +258863,USB-C Charging Cable,1,11.95,09/24/19 04:56,"975 Jefferson St, Seattle, WA 98101" +258864,USB-C Charging Cable,1,11.95,09/29/19 11:26,"553 Chestnut St, San Francisco, CA 94016" +258865,AA Batteries (4-pack),1,3.84,09/09/19 09:11,"871 Lake St, San Francisco, CA 94016" +258866,AA Batteries (4-pack),1,3.84,09/10/19 09:58,"3 4th St, San Francisco, CA 94016" +258867,20in Monitor,1,109.99,09/10/19 14:48,"337 Hill St, San Francisco, CA 94016" +258868,Apple Airpods Headphones,1,150,09/01/19 22:44,"533 8th St, Los Angeles, CA 90001" +258869,Bose SoundSport Headphones,1,99.99,09/16/19 07:44,"919 Pine St, Boston, MA 02215" +258870,iPhone,1,700,09/04/19 15:12,"224 South St, Austin, TX 73301" +258871,Lightning Charging Cable,1,14.95,09/10/19 15:14,"270 Meadow St, New York City, NY 10001" +258872,AAA Batteries (4-pack),3,2.99,09/02/19 18:55,"241 River St, San Francisco, CA 94016" +258873,Wired Headphones,1,11.99,09/16/19 11:59,"46 Forest St, San Francisco, CA 94016" +258874,Google Phone,1,600,09/25/19 15:54,"897 Cedar St, Atlanta, GA 30301" +258875,AA Batteries (4-pack),1,3.84,09/25/19 13:18,"903 Lake St, Los Angeles, CA 90001" +258876,Apple Airpods Headphones,1,150,09/02/19 11:31,"606 1st St, Dallas, TX 75001" +258877,USB-C Charging Cable,1,11.95,09/09/19 19:59,"362 Cedar St, Seattle, WA 98101" +258878,AA Batteries (4-pack),3,3.84,09/04/19 17:12,"287 Chestnut St, San Francisco, CA 94016" +258879,Wired Headphones,1,11.99,09/23/19 19:02,"544 Lake St, Austin, TX 73301" +258880,Flatscreen TV,1,300,09/27/19 11:32,"891 North St, Boston, MA 02215" +258881,iPhone,1,700,09/22/19 09:52,"694 Center St, Austin, TX 73301" +258882,AAA Batteries (4-pack),2,2.99,09/02/19 10:41,"580 8th St, Seattle, WA 98101" +258883,27in FHD Monitor,1,149.99,09/22/19 12:28,"832 Pine St, New York City, NY 10001" +258884,AA Batteries (4-pack),2,3.84,09/12/19 09:34,"969 Washington St, San Francisco, CA 94016" +258885,Apple Airpods Headphones,1,150,09/01/19 17:17,"670 Wilson St, Austin, TX 73301" +258886,Lightning Charging Cable,1,14.95,09/23/19 14:32,"273 River St, Boston, MA 02215" +258887,Wired Headphones,1,11.99,09/01/19 19:38,"826 Willow St, Atlanta, GA 30301" +258888,20in Monitor,1,109.99,09/14/19 00:23,"794 Cherry St, San Francisco, CA 94016" +258889,Flatscreen TV,1,300,09/15/19 17:47,"903 Jefferson St, Atlanta, GA 30301" +258890,Lightning Charging Cable,1,14.95,09/30/19 18:45,"664 Church St, San Francisco, CA 94016" +258891,27in FHD Monitor,1,149.99,09/16/19 19:43,"679 Madison St, Los Angeles, CA 90001" +258892,27in 4K Gaming Monitor,1,389.99,09/19/19 12:10,"296 1st St, New York City, NY 10001" +258893,AA Batteries (4-pack),1,3.84,09/14/19 15:23,"148 South St, New York City, NY 10001" +258894,AA Batteries (4-pack),1,3.84,09/12/19 23:57,"655 Jefferson St, Seattle, WA 98101" +258895,LG Washing Machine,1,600.0,09/25/19 11:36,"433 Hickory St, Dallas, TX 75001" +258896,AA Batteries (4-pack),1,3.84,09/09/19 16:04,"58 Willow St, San Francisco, CA 94016" +258897,34in Ultrawide Monitor,1,379.99,09/05/19 21:05,"867 Hill St, Dallas, TX 75001" +258897,Google Phone,1,600,09/05/19 21:05,"867 Hill St, Dallas, TX 75001" +258898,AA Batteries (4-pack),1,3.84,09/01/19 13:07,"137 River St, Los Angeles, CA 90001" +258899,AA Batteries (4-pack),1,3.84,09/17/19 18:18,"339 Center St, Austin, TX 73301" +258900,34in Ultrawide Monitor,1,379.99,09/10/19 13:34,"667 5th St, San Francisco, CA 94016" +258901,Flatscreen TV,1,300,09/24/19 13:25,"714 14th St, Los Angeles, CA 90001" +258902,ThinkPad Laptop,1,999.99,09/04/19 17:34,"686 Spruce St, New York City, NY 10001" +258903,USB-C Charging Cable,1,11.95,09/07/19 18:43,"275 West St, Atlanta, GA 30301" +258904,AA Batteries (4-pack),2,3.84,09/08/19 08:46,"648 Forest St, Atlanta, GA 30301" +258905,Bose SoundSport Headphones,1,99.99,09/16/19 18:18,"271 Meadow St, San Francisco, CA 94016" +258906,27in FHD Monitor,1,149.99,09/27/19 19:40,"483 6th St, Boston, MA 02215" +258907,USB-C Charging Cable,1,11.95,09/22/19 15:41,"963 Pine St, Los Angeles, CA 90001" +258908,ThinkPad Laptop,1,999.99,09/15/19 07:57,"381 Highland St, Portland, OR 97035" +258909,Lightning Charging Cable,1,14.95,09/23/19 18:18,"749 Lake St, Dallas, TX 75001" +258910,USB-C Charging Cable,1,11.95,09/29/19 18:49,"160 Highland St, Dallas, TX 75001" +258911,AA Batteries (4-pack),1,3.84,09/02/19 15:20,"118 13th St, Boston, MA 02215" +258912,AA Batteries (4-pack),2,3.84,09/29/19 20:49,"146 11th St, Boston, MA 02215" +258913,Wired Headphones,1,11.99,09/27/19 12:09,"193 8th St, Portland, ME 04101" +258914,Lightning Charging Cable,1,14.95,09/20/19 00:07,"498 9th St, Los Angeles, CA 90001" +258915,27in 4K Gaming Monitor,1,389.99,09/24/19 22:04,"907 Hickory St, New York City, NY 10001" +258916,Lightning Charging Cable,1,14.95,09/06/19 14:36,"778 Cherry St, Los Angeles, CA 90001" +258917,Bose SoundSport Headphones,1,99.99,09/16/19 11:45,"798 Hill St, Los Angeles, CA 90001" +258918,iPhone,1,700,09/16/19 11:07,"125 Maple St, New York City, NY 10001" +258919,27in FHD Monitor,2,149.99,09/01/19 18:46,"634 Ridge St, Dallas, TX 75001" +258920,20in Monitor,1,109.99,09/27/19 10:55,"947 Adams St, San Francisco, CA 94016" +258921,Lightning Charging Cable,1,14.95,09/08/19 17:52,"869 Highland St, San Francisco, CA 94016" +258922,Lightning Charging Cable,1,14.95,09/16/19 05:33,"687 Jackson St, San Francisco, CA 94016" +258923,Lightning Charging Cable,1,14.95,09/12/19 11:09,"969 Willow St, Los Angeles, CA 90001" +258924,Flatscreen TV,1,300,09/10/19 21:31,"185 12th St, San Francisco, CA 94016" +258925,AA Batteries (4-pack),1,3.84,09/20/19 19:39,"667 Lake St, Atlanta, GA 30301" +258926,AAA Batteries (4-pack),1,2.99,09/16/19 16:56,"364 Lakeview St, New York City, NY 10001" +258927,27in FHD Monitor,1,149.99,09/14/19 13:05,"644 Ridge St, San Francisco, CA 94016" +258927,Apple Airpods Headphones,1,150,09/14/19 13:05,"644 Ridge St, San Francisco, CA 94016" +258928,Google Phone,1,600,09/25/19 11:18,"133 Jackson St, Dallas, TX 75001" +258928,USB-C Charging Cable,1,11.95,09/25/19 11:18,"133 Jackson St, Dallas, TX 75001" +258929,Lightning Charging Cable,1,14.95,09/28/19 21:49,"471 1st St, San Francisco, CA 94016" +258930,USB-C Charging Cable,1,11.95,09/30/19 16:51,"361 Lakeview St, Dallas, TX 75001" +258931,Wired Headphones,1,11.99,09/09/19 14:54,"381 Park St, New York City, NY 10001" +258932,27in FHD Monitor,1,149.99,09/24/19 09:12,"447 Elm St, Dallas, TX 75001" +258933,Lightning Charging Cable,1,14.95,09/20/19 22:59,"440 1st St, Portland, OR 97035" +258934,iPhone,1,700,09/08/19 00:15,"204 Center St, Atlanta, GA 30301" +258934,Lightning Charging Cable,1,14.95,09/08/19 00:15,"204 Center St, Atlanta, GA 30301" +258935,Wired Headphones,1,11.99,09/03/19 19:09,"755 Cherry St, Dallas, TX 75001" +258936,27in FHD Monitor,1,149.99,09/02/19 00:00,"791 14th St, Boston, MA 02215" +258937,Apple Airpods Headphones,1,150,09/21/19 13:20,"757 8th St, San Francisco, CA 94016" +258938,Wired Headphones,1,11.99,09/21/19 16:14,"673 13th St, Portland, OR 97035" +258939,27in FHD Monitor,1,149.99,09/23/19 20:31,"612 Cherry St, Portland, OR 97035" +258940,Apple Airpods Headphones,1,150,09/20/19 23:27,"623 13th St, San Francisco, CA 94016" +258941,AA Batteries (4-pack),1,3.84,09/21/19 10:08,"377 West St, San Francisco, CA 94016" +258942,AAA Batteries (4-pack),1,2.99,09/14/19 16:57,"943 Lakeview St, New York City, NY 10001" +258943,34in Ultrawide Monitor,1,379.99,09/04/19 22:25,"119 Cherry St, New York City, NY 10001" +258944,USB-C Charging Cable,1,11.95,09/15/19 17:09,"644 Main St, New York City, NY 10001" +258945,AA Batteries (4-pack),1,3.84,09/22/19 09:50,"1 River St, Boston, MA 02215" +258946,27in FHD Monitor,1,149.99,09/29/19 15:34,"255 Madison St, Portland, ME 04101" +258947,Lightning Charging Cable,1,14.95,09/11/19 15:17,"913 11th St, Boston, MA 02215" +258948,Bose SoundSport Headphones,1,99.99,09/07/19 20:55,"252 Lakeview St, Portland, OR 97035" +258949,Bose SoundSport Headphones,1,99.99,09/10/19 17:58,"569 River St, Austin, TX 73301" +258950,Lightning Charging Cable,1,14.95,09/16/19 14:46,"68 11th St, San Francisco, CA 94016" +258951,Apple Airpods Headphones,1,150,09/04/19 21:35,"216 1st St, Portland, OR 97035" +258952,USB-C Charging Cable,2,11.95,09/07/19 10:41,"884 Spruce St, Dallas, TX 75001" +258953,AA Batteries (4-pack),1,3.84,09/09/19 15:23,"930 Meadow St, San Francisco, CA 94016" +258954,27in FHD Monitor,1,149.99,09/25/19 15:14,"879 5th St, Boston, MA 02215" +258955,27in FHD Monitor,1,149.99,09/09/19 15:23,"185 Adams St, Dallas, TX 75001" +258956,Vareebadd Phone,1,400,09/25/19 19:28,"190 Madison St, Dallas, TX 75001" +258957,AAA Batteries (4-pack),1,2.99,09/01/19 22:55,"493 8th St, Seattle, WA 98101" +258958,Apple Airpods Headphones,1,150,09/13/19 17:02,"159 Washington St, Austin, TX 73301" +258959,Lightning Charging Cable,1,14.95,09/24/19 16:53,"864 Washington St, San Francisco, CA 94016" +258960,USB-C Charging Cable,1,11.95,09/22/19 12:09,"208 Chestnut St, Dallas, TX 75001" +258961,iPhone,1,700,09/07/19 12:22,"547 9th St, Atlanta, GA 30301" +258962,AAA Batteries (4-pack),1,2.99,09/03/19 15:41,"273 Cedar St, Seattle, WA 98101" +258963,USB-C Charging Cable,1,11.95,09/06/19 18:42,"366 Hill St, San Francisco, CA 94016" +258964,Flatscreen TV,1,300,09/16/19 20:12,"282 Willow St, Boston, MA 02215" +258965,Lightning Charging Cable,1,14.95,09/01/19 19:12,"554 12th St, Boston, MA 02215" +258966,Lightning Charging Cable,1,14.95,09/11/19 13:40,"582 Church St, San Francisco, CA 94016" +258967,Lightning Charging Cable,1,14.95,09/18/19 19:16,"822 Lincoln St, New York City, NY 10001" +258968,Flatscreen TV,1,300,09/01/19 19:05,"293 2nd St, Los Angeles, CA 90001" +258969,27in 4K Gaming Monitor,1,389.99,09/30/19 19:42,"672 North St, Atlanta, GA 30301" +258970,iPhone,1,700,09/20/19 19:34,"241 Chestnut St, San Francisco, CA 94016" +258970,Lightning Charging Cable,1,14.95,09/20/19 19:34,"241 Chestnut St, San Francisco, CA 94016" +258971,Wired Headphones,1,11.99,09/28/19 01:40,"859 River St, Atlanta, GA 30301" +258972,Apple Airpods Headphones,1,150,09/28/19 18:07,"876 Center St, San Francisco, CA 94016" +258973,Lightning Charging Cable,1,14.95,09/25/19 17:54,"586 Forest St, Los Angeles, CA 90001" +258974,AAA Batteries (4-pack),3,2.99,09/23/19 21:49,"397 6th St, New York City, NY 10001" +258975,AA Batteries (4-pack),1,3.84,09/03/19 13:15,"178 South St, Los Angeles, CA 90001" +258976,AAA Batteries (4-pack),1,2.99,09/15/19 23:32,"722 Lakeview St, Boston, MA 02215" +258977,AA Batteries (4-pack),1,3.84,09/27/19 11:52,"396 Wilson St, Atlanta, GA 30301" +258978,Wired Headphones,1,11.99,09/21/19 08:27,"782 Maple St, Los Angeles, CA 90001" +258979,AA Batteries (4-pack),3,3.84,09/15/19 17:46,"801 Willow St, Boston, MA 02215" +258980,27in FHD Monitor,1,149.99,09/10/19 09:48,"344 Johnson St, Los Angeles, CA 90001" +258981,AA Batteries (4-pack),1,3.84,09/08/19 20:25,"121 South St, Los Angeles, CA 90001" +258982,Wired Headphones,1,11.99,09/01/19 13:53,"277 13th St, San Francisco, CA 94016" +258983,iPhone,1,700,09/28/19 22:40,"331 Hickory St, Seattle, WA 98101" +258984,Wired Headphones,1,11.99,09/13/19 21:33,"758 12th St, Los Angeles, CA 90001" +258985,20in Monitor,1,109.99,09/18/19 13:53,"406 Adams St, San Francisco, CA 94016" +258986,USB-C Charging Cable,1,11.95,09/28/19 14:55,"877 Willow St, Portland, OR 97035" +258987,Lightning Charging Cable,1,14.95,09/29/19 07:20,"323 13th St, San Francisco, CA 94016" +258988,34in Ultrawide Monitor,1,379.99,09/28/19 20:01,"955 Maple St, New York City, NY 10001" +258989,USB-C Charging Cable,1,11.95,09/19/19 19:50,"603 Johnson St, Dallas, TX 75001" +258989,Bose SoundSport Headphones,1,99.99,09/19/19 19:50,"603 Johnson St, Dallas, TX 75001" +258990,USB-C Charging Cable,1,11.95,09/25/19 14:12,"812 Hill St, San Francisco, CA 94016" +258991,27in 4K Gaming Monitor,1,389.99,09/29/19 12:53,"393 Ridge St, San Francisco, CA 94016" +258992,Flatscreen TV,1,300,09/10/19 12:42,"86 Dogwood St, San Francisco, CA 94016" +258993,Google Phone,1,600,09/11/19 12:07,"613 Church St, Boston, MA 02215" +258993,Wired Headphones,1,11.99,09/11/19 12:07,"613 Church St, Boston, MA 02215" +258994,Lightning Charging Cable,1,14.95,09/23/19 17:37,"687 Willow St, New York City, NY 10001" +258995,USB-C Charging Cable,1,11.95,09/23/19 14:38,"690 Willow St, Dallas, TX 75001" +258996,20in Monitor,1,109.99,09/14/19 00:17,"561 Jackson St, Boston, MA 02215" +258997,Wired Headphones,1,11.99,09/12/19 15:02,"830 11th St, Seattle, WA 98101" +258998,USB-C Charging Cable,2,11.95,09/09/19 19:25,"403 Wilson St, Boston, MA 02215" +258999,Lightning Charging Cable,1,14.95,09/18/19 11:29,"919 Wilson St, San Francisco, CA 94016" +258999,iPhone,1,700,09/18/19 11:29,"919 Wilson St, San Francisco, CA 94016" +259000,Macbook Pro Laptop,1,1700,09/04/19 13:45,"618 Chestnut St, Boston, MA 02215" +259001,AAA Batteries (4-pack),2,2.99,09/20/19 10:49,"838 9th St, Atlanta, GA 30301" +259002,Flatscreen TV,1,300,09/03/19 19:45,"733 13th St, New York City, NY 10001" +259003,20in Monitor,1,109.99,09/24/19 17:45,"384 Dogwood St, San Francisco, CA 94016" +259004,Flatscreen TV,1,300,09/09/19 11:22,"75 4th St, Boston, MA 02215" +259005,USB-C Charging Cable,1,11.95,09/28/19 08:29,"752 Johnson St, Portland, ME 04101" +259006,Lightning Charging Cable,1,14.95,09/10/19 22:31,"274 Pine St, San Francisco, CA 94016" +259007,Vareebadd Phone,1,400,09/22/19 20:24,"739 Meadow St, San Francisco, CA 94016" +259008,ThinkPad Laptop,1,999.99,09/11/19 14:58,"328 2nd St, San Francisco, CA 94016" +259009,iPhone,1,700,09/21/19 17:43,"284 8th St, Seattle, WA 98101" +259009,Lightning Charging Cable,1,14.95,09/21/19 17:43,"284 8th St, Seattle, WA 98101" +259010,AAA Batteries (4-pack),1,2.99,09/29/19 22:15,"430 West St, Portland, OR 97035" +259011,AA Batteries (4-pack),1,3.84,09/14/19 03:05,"946 Elm St, San Francisco, CA 94016" +259012,Wired Headphones,1,11.99,09/23/19 10:28,"971 North St, Seattle, WA 98101" +259013,20in Monitor,1,109.99,09/28/19 10:03,"338 8th St, Seattle, WA 98101" +259014,AAA Batteries (4-pack),1,2.99,09/08/19 23:34,"727 Hill St, Portland, ME 04101" +259015,27in FHD Monitor,1,149.99,09/04/19 09:40,"935 West St, Dallas, TX 75001" +259016,Lightning Charging Cable,1,14.95,09/15/19 21:52,"204 Johnson St, Los Angeles, CA 90001" +259017,Flatscreen TV,1,300,09/21/19 14:20,"5 Willow St, Dallas, TX 75001" +259018,USB-C Charging Cable,1,11.95,09/29/19 17:10,"134 9th St, New York City, NY 10001" +259019,AA Batteries (4-pack),1,3.84,09/24/19 09:35,"958 Lakeview St, Boston, MA 02215" +259020,Bose SoundSport Headphones,1,99.99,09/22/19 10:48,"918 Highland St, Boston, MA 02215" +259021,34in Ultrawide Monitor,1,379.99,09/01/19 23:53,"411 11th St, Seattle, WA 98101" +259022,Macbook Pro Laptop,1,1700,09/27/19 16:32,"294 9th St, New York City, NY 10001" +259023,20in Monitor,1,109.99,09/05/19 11:02,"684 Park St, Atlanta, GA 30301" +259024,Google Phone,1,600,09/24/19 13:22,"908 North St, New York City, NY 10001" +259025,Lightning Charging Cable,1,14.95,09/30/19 11:45,"971 Hickory St, Austin, TX 73301" +259026,Bose SoundSport Headphones,1,99.99,09/06/19 19:10,"76 2nd St, Atlanta, GA 30301" +259027,34in Ultrawide Monitor,1,379.99,09/03/19 22:19,"952 Willow St, New York City, NY 10001" +259028,AA Batteries (4-pack),4,3.84,09/08/19 22:49,"230 Johnson St, Los Angeles, CA 90001" +259029,Lightning Charging Cable,1,14.95,09/02/19 22:05,"38 Jackson St, New York City, NY 10001" +259030,USB-C Charging Cable,1,11.95,09/07/19 06:45,"382 Cherry St, San Francisco, CA 94016" +259031,ThinkPad Laptop,1,999.99,09/15/19 11:23,"627 Willow St, San Francisco, CA 94016" +259032,Lightning Charging Cable,1,14.95,09/01/19 14:11,"468 6th St, Dallas, TX 75001" +259033,AAA Batteries (4-pack),2,2.99,09/21/19 07:26,"881 River St, Los Angeles, CA 90001" +259034,Wired Headphones,1,11.99,09/09/19 21:04,"221 11th St, Portland, OR 97035" +259035,Lightning Charging Cable,1,14.95,09/28/19 16:14,"189 Walnut St, Seattle, WA 98101" +259036,AA Batteries (4-pack),1,3.84,09/15/19 15:19,"443 Elm St, Los Angeles, CA 90001" +259037,Wired Headphones,1,11.99,10/01/19 03:56,"822 Main St, Los Angeles, CA 90001" +259038,34in Ultrawide Monitor,1,379.99,09/23/19 10:33,"958 Willow St, Los Angeles, CA 90001" +259039,Lightning Charging Cable,2,14.95,09/18/19 18:45,"209 Forest St, New York City, NY 10001" +259040,Bose SoundSport Headphones,1,99.99,09/03/19 08:11,"501 Sunset St, New York City, NY 10001" +259041,AA Batteries (4-pack),1,3.84,09/15/19 09:56,"145 Johnson St, San Francisco, CA 94016" +259042,Wired Headphones,1,11.99,09/19/19 11:24,"293 Lake St, Seattle, WA 98101" +259043,27in FHD Monitor,1,149.99,09/14/19 09:35,"594 1st St, New York City, NY 10001" +259044,USB-C Charging Cable,1,11.95,09/09/19 12:15,"291 Lakeview St, San Francisco, CA 94016" +259045,AA Batteries (4-pack),1,3.84,09/20/19 13:55,"357 Walnut St, San Francisco, CA 94016" +259046,20in Monitor,1,109.99,09/17/19 01:39,"274 South St, Los Angeles, CA 90001" +259047,ThinkPad Laptop,1,999.99,09/23/19 11:00,"47 Highland St, San Francisco, CA 94016" +259048,AA Batteries (4-pack),1,3.84,09/19/19 19:01,"371 Main St, San Francisco, CA 94016" +259049,27in FHD Monitor,1,149.99,09/30/19 20:54,"765 North St, San Francisco, CA 94016" +259050,iPhone,1,700,09/07/19 16:56,"891 Lincoln St, Seattle, WA 98101" +259051,USB-C Charging Cable,1,11.95,09/09/19 15:50,"670 Walnut St, Los Angeles, CA 90001" +259052,USB-C Charging Cable,1,11.95,09/22/19 23:24,"68 Forest St, San Francisco, CA 94016" +259053,USB-C Charging Cable,1,11.95,09/03/19 11:29,"668 Washington St, San Francisco, CA 94016" +259054,USB-C Charging Cable,1,11.95,09/30/19 21:50,"565 River St, New York City, NY 10001" +259055,USB-C Charging Cable,1,11.95,09/27/19 18:06,"677 Lake St, Los Angeles, CA 90001" +259056,Lightning Charging Cable,1,14.95,09/03/19 11:31,"335 Forest St, Seattle, WA 98101" +259057,AAA Batteries (4-pack),1,2.99,09/29/19 00:39,"503 Center St, Atlanta, GA 30301" +259058,27in FHD Monitor,1,149.99,09/14/19 04:59,"192 Cedar St, San Francisco, CA 94016" +259059,Apple Airpods Headphones,1,150,09/05/19 08:03,"987 10th St, Atlanta, GA 30301" +259060,Google Phone,1,600,09/04/19 20:25,"962 Washington St, New York City, NY 10001" +259061,34in Ultrawide Monitor,1,379.99,09/07/19 15:07,"474 Adams St, San Francisco, CA 94016" +259062,AA Batteries (4-pack),1,3.84,09/06/19 20:34,"324 Jefferson St, Seattle, WA 98101" +259063,USB-C Charging Cable,1,11.95,09/13/19 10:38,"142 11th St, Los Angeles, CA 90001" +259064,Flatscreen TV,1,300,09/15/19 22:15,"399 Lake St, Seattle, WA 98101" +259065,27in FHD Monitor,1,149.99,09/13/19 22:17,"647 West St, Los Angeles, CA 90001" +259066,Bose SoundSport Headphones,1,99.99,09/03/19 02:17,"351 West St, San Francisco, CA 94016" +259067,AAA Batteries (4-pack),1,2.99,09/13/19 12:25,"910 Wilson St, New York City, NY 10001" +259068,AA Batteries (4-pack),1,3.84,09/25/19 15:58,"889 Elm St, Seattle, WA 98101" +259069,AAA Batteries (4-pack),1,2.99,09/09/19 14:55,"625 Forest St, Austin, TX 73301" +259070,Lightning Charging Cable,1,14.95,09/01/19 19:15,"479 Meadow St, San Francisco, CA 94016" +259071,Lightning Charging Cable,1,14.95,09/25/19 17:24,"852 Cedar St, Dallas, TX 75001" +259072,Google Phone,1,600,09/22/19 14:26,"469 7th St, Seattle, WA 98101" +259073,AAA Batteries (4-pack),1,2.99,09/09/19 18:47,"445 River St, Atlanta, GA 30301" +259074,USB-C Charging Cable,1,11.95,09/23/19 10:31,"243 Center St, Los Angeles, CA 90001" +259075,Apple Airpods Headphones,1,150,09/23/19 19:36,"699 Lakeview St, Dallas, TX 75001" +259076,27in FHD Monitor,1,149.99,09/18/19 17:51,"626 Hickory St, Los Angeles, CA 90001" +259077,Lightning Charging Cable,1,14.95,09/23/19 20:52,"72 Jackson St, Boston, MA 02215" +259078,AA Batteries (4-pack),1,3.84,09/07/19 18:36,"140 Lakeview St, Dallas, TX 75001" +259079,Apple Airpods Headphones,1,150,09/06/19 11:53,"565 Jackson St, Los Angeles, CA 90001" +259080,Apple Airpods Headphones,1,150,09/30/19 12:13,"44 5th St, New York City, NY 10001" +259081,Apple Airpods Headphones,1,150,09/24/19 00:44,"929 Willow St, New York City, NY 10001" +259082,USB-C Charging Cable,1,11.95,09/01/19 18:46,"557 West St, San Francisco, CA 94016" +259083,Apple Airpods Headphones,1,150,09/10/19 11:52,"759 Dogwood St, Boston, MA 02215" +259084,27in FHD Monitor,1,149.99,09/17/19 10:54,"105 Wilson St, San Francisco, CA 94016" +259085,USB-C Charging Cable,1,11.95,09/06/19 15:58,"221 Jackson St, New York City, NY 10001" +259086,AA Batteries (4-pack),1,3.84,09/07/19 22:48,"411 Jackson St, San Francisco, CA 94016" +259087,Apple Airpods Headphones,1,150,09/07/19 22:53,"625 Madison St, Los Angeles, CA 90001" +259088,Wired Headphones,1,11.99,09/29/19 22:00,"949 Hill St, San Francisco, CA 94016" +259089,Bose SoundSport Headphones,1,99.99,09/07/19 19:59,"196 Dogwood St, Atlanta, GA 30301" +259090,AA Batteries (4-pack),1,3.84,09/05/19 17:52,"364 14th St, Boston, MA 02215" +259091,27in 4K Gaming Monitor,1,389.99,09/28/19 16:55,"239 River St, Los Angeles, CA 90001" +259092,Apple Airpods Headphones,1,150,09/24/19 22:34,"875 14th St, Los Angeles, CA 90001" +259093,iPhone,1,700,09/12/19 14:58,"685 Hickory St, San Francisco, CA 94016" +259094,Apple Airpods Headphones,1,150,09/13/19 07:56,"342 Elm St, Portland, OR 97035" +259095,iPhone,1,700,09/23/19 00:43,"4 2nd St, Boston, MA 02215" +259095,Wired Headphones,1,11.99,09/23/19 00:43,"4 2nd St, Boston, MA 02215" +259096,Wired Headphones,1,11.99,09/04/19 10:02,"212 West St, Atlanta, GA 30301" +259097,Lightning Charging Cable,1,14.95,09/07/19 19:52,"632 Madison St, San Francisco, CA 94016" +259098,USB-C Charging Cable,1,11.95,09/26/19 11:56,"865 Cherry St, Atlanta, GA 30301" +259099,20in Monitor,1,109.99,09/08/19 15:46,"9 9th St, Los Angeles, CA 90001" +259100,27in 4K Gaming Monitor,1,389.99,09/08/19 11:17,"935 Johnson St, Dallas, TX 75001" +259101,27in 4K Gaming Monitor,1,389.99,09/02/19 13:14,"689 Meadow St, Seattle, WA 98101" +259102,Wired Headphones,1,11.99,09/09/19 21:42,"999 7th St, San Francisco, CA 94016" +259103,iPhone,1,700,09/21/19 23:34,"41 2nd St, Portland, ME 04101" +259104,Google Phone,1,600,09/27/19 08:29,"457 Center St, Los Angeles, CA 90001" +259105,AA Batteries (4-pack),1,3.84,09/09/19 09:09,"385 West St, San Francisco, CA 94016" +259106,AA Batteries (4-pack),3,3.84,09/02/19 16:14,"789 Dogwood St, Boston, MA 02215" +259107,Lightning Charging Cable,1,14.95,09/16/19 13:57,"330 Dogwood St, Austin, TX 73301" +259108,AAA Batteries (4-pack),2,2.99,09/19/19 13:29,"721 Chestnut St, Boston, MA 02215" +259109,USB-C Charging Cable,1,11.95,09/27/19 23:38,"161 Lake St, Portland, OR 97035" +259110,Wired Headphones,1,11.99,09/04/19 14:14,"5 Dogwood St, Austin, TX 73301" +259111,USB-C Charging Cable,1,11.95,09/07/19 13:07,"513 2nd St, New York City, NY 10001" +259112,Wired Headphones,1,11.99,09/05/19 16:56,"970 Sunset St, New York City, NY 10001" +259113,27in FHD Monitor,1,149.99,09/24/19 15:30,"521 Wilson St, New York City, NY 10001" +259114,Wired Headphones,1,11.99,09/06/19 13:30,"882 Wilson St, Seattle, WA 98101" +259115,Lightning Charging Cable,1,14.95,09/24/19 16:25,"747 Maple St, San Francisco, CA 94016" +259116,Wired Headphones,1,11.99,09/20/19 19:58,"728 Hickory St, New York City, NY 10001" +259117,USB-C Charging Cable,1,11.95,09/11/19 20:55,"781 6th St, San Francisco, CA 94016" +259118,Wired Headphones,1,11.99,09/19/19 09:36,"968 1st St, Atlanta, GA 30301" +259119,27in 4K Gaming Monitor,1,389.99,09/09/19 20:14,"962 12th St, Seattle, WA 98101" +259120,27in FHD Monitor,1,149.99,09/02/19 12:57,"177 Walnut St, Atlanta, GA 30301" +259121,USB-C Charging Cable,1,11.95,09/28/19 10:22,"272 Hill St, Seattle, WA 98101" +259122,Flatscreen TV,1,300,09/28/19 14:43,"768 River St, Portland, OR 97035" +259123,AAA Batteries (4-pack),1,2.99,09/24/19 17:26,"270 Church St, Atlanta, GA 30301" +259124,Flatscreen TV,1,300,09/09/19 23:27,"838 Jefferson St, New York City, NY 10001" +259125,27in FHD Monitor,1,149.99,09/13/19 21:46,"634 Hill St, San Francisco, CA 94016" +259126,Lightning Charging Cable,1,14.95,09/04/19 14:00,"406 Meadow St, San Francisco, CA 94016" +259127,iPhone,1,700,09/12/19 09:57,"597 Meadow St, Atlanta, GA 30301" +259127,Lightning Charging Cable,1,14.95,09/12/19 09:57,"597 Meadow St, Atlanta, GA 30301" +259128,AA Batteries (4-pack),1,3.84,09/20/19 18:26,"720 5th St, New York City, NY 10001" +259129,Google Phone,1,600,09/08/19 19:37,"403 Main St, Austin, TX 73301" +259130,USB-C Charging Cable,1,11.95,09/24/19 21:41,"464 4th St, Los Angeles, CA 90001" +259131,Lightning Charging Cable,2,14.95,09/10/19 20:06,"257 6th St, New York City, NY 10001" +259132,AA Batteries (4-pack),1,3.84,09/30/19 15:54,"749 Pine St, Boston, MA 02215" +259133,Apple Airpods Headphones,1,150,09/27/19 10:34,"457 8th St, Boston, MA 02215" +259134,USB-C Charging Cable,1,11.95,09/14/19 04:08,"473 8th St, Austin, TX 73301" +259135,USB-C Charging Cable,1,11.95,09/02/19 18:22,"206 Forest St, Boston, MA 02215" +259136,AA Batteries (4-pack),1,3.84,09/05/19 12:36,"777 Lakeview St, Portland, OR 97035" +259137,Lightning Charging Cable,1,14.95,09/02/19 19:31,"192 Adams St, Los Angeles, CA 90001" +259137,Lightning Charging Cable,1,14.95,09/02/19 19:31,"192 Adams St, Los Angeles, CA 90001" +259138,USB-C Charging Cable,1,11.95,09/02/19 14:10,"164 Church St, New York City, NY 10001" +259139,ThinkPad Laptop,1,999.99,09/04/19 17:40,"426 Spruce St, Dallas, TX 75001" +259140,Bose SoundSport Headphones,1,99.99,09/24/19 09:34,"356 Elm St, Los Angeles, CA 90001" +259141,USB-C Charging Cable,1,11.95,09/16/19 22:09,"584 South St, Seattle, WA 98101" +259142,iPhone,1,700,09/17/19 09:34,"676 Main St, New York City, NY 10001" +259142,Apple Airpods Headphones,1,150,09/17/19 09:34,"676 Main St, New York City, NY 10001" +259143,Apple Airpods Headphones,1,150,09/06/19 09:39,"256 13th St, Dallas, TX 75001" +259144,USB-C Charging Cable,1,11.95,09/23/19 11:11,"442 Jackson St, San Francisco, CA 94016" +259145,iPhone,1,700,09/06/19 10:51,"713 Johnson St, San Francisco, CA 94016" +259145,Lightning Charging Cable,1,14.95,09/06/19 10:51,"713 Johnson St, San Francisco, CA 94016" +259146,USB-C Charging Cable,1,11.95,09/26/19 19:00,"177 1st St, San Francisco, CA 94016" +259147,AA Batteries (4-pack),1,3.84,09/25/19 12:40,"552 Forest St, Los Angeles, CA 90001" +259148,Apple Airpods Headphones,1,150,09/27/19 23:53,"187 13th St, San Francisco, CA 94016" +259149,AAA Batteries (4-pack),3,2.99,09/06/19 16:23,"853 Maple St, Boston, MA 02215" +259150,AA Batteries (4-pack),3,3.84,09/08/19 10:48,"725 Sunset St, Dallas, TX 75001" +259151,Lightning Charging Cable,1,14.95,09/04/19 12:30,"465 Maple St, Seattle, WA 98101" +259152,AA Batteries (4-pack),2,3.84,09/20/19 06:38,"245 South St, Los Angeles, CA 90001" +259153,AA Batteries (4-pack),1,3.84,09/10/19 08:47,"506 Dogwood St, Dallas, TX 75001" +259154,Wired Headphones,1,11.99,09/30/19 15:27,"64 8th St, Boston, MA 02215" +259155,USB-C Charging Cable,1,11.95,09/15/19 07:48,"243 Ridge St, San Francisco, CA 94016" +259156,Bose SoundSport Headphones,1,99.99,09/08/19 10:29,"11 7th St, San Francisco, CA 94016" +259157,Flatscreen TV,1,300,09/23/19 19:18,"3 Church St, Seattle, WA 98101" +259158,27in FHD Monitor,1,149.99,09/16/19 10:58,"221 Jackson St, Austin, TX 73301" +259159,34in Ultrawide Monitor,1,379.99,09/10/19 17:26,"750 Hickory St, Atlanta, GA 30301" +259160,Bose SoundSport Headphones,2,99.99,09/28/19 15:02,"393 Ridge St, Los Angeles, CA 90001" +259161,Macbook Pro Laptop,1,1700,09/26/19 19:28,"802 Washington St, New York City, NY 10001" +259162,20in Monitor,1,109.99,09/01/19 11:38,"471 Park St, San Francisco, CA 94016" +259163,AA Batteries (4-pack),2,3.84,09/29/19 20:30,"69 Wilson St, Los Angeles, CA 90001" +259164,Wired Headphones,1,11.99,09/20/19 13:07,"457 North St, San Francisco, CA 94016" +259165,27in FHD Monitor,1,149.99,09/14/19 16:42,"220 8th St, New York City, NY 10001" +259166,Bose SoundSport Headphones,1,99.99,09/30/19 16:21,"102 Chestnut St, Boston, MA 02215" +259167,USB-C Charging Cable,1,11.95,09/10/19 21:14,"675 Willow St, San Francisco, CA 94016" +259168,Lightning Charging Cable,1,14.95,09/10/19 10:13,"220 Hickory St, Boston, MA 02215" +259169,Lightning Charging Cable,1,14.95,09/18/19 11:09,"256 Hickory St, Austin, TX 73301" +259170,Apple Airpods Headphones,1,150,09/07/19 20:28,"330 Meadow St, Atlanta, GA 30301" +259171,Lightning Charging Cable,1,14.95,09/12/19 19:28,"134 Hickory St, San Francisco, CA 94016" +259172,27in FHD Monitor,1,149.99,09/20/19 13:53,"293 Adams St, Dallas, TX 75001" +259173,Macbook Pro Laptop,1,1700,09/22/19 12:49,"146 Church St, San Francisco, CA 94016" +259174,ThinkPad Laptop,1,999.99,09/04/19 22:08,"970 Pine St, New York City, NY 10001" +259175,LG Dryer,1,600.0,09/23/19 14:59,"646 Dogwood St, Portland, ME 04101" +259176,AA Batteries (4-pack),1,3.84,09/24/19 19:22,"90 Ridge St, Seattle, WA 98101" +259177,27in 4K Gaming Monitor,1,389.99,09/18/19 14:04,"849 Forest St, Los Angeles, CA 90001" +259178,27in 4K Gaming Monitor,1,389.99,09/03/19 01:24,"863 6th St, San Francisco, CA 94016" +259179,34in Ultrawide Monitor,1,379.99,09/01/19 21:19,"273 7th St, New York City, NY 10001" +259180,Lightning Charging Cable,1,14.95,09/06/19 02:48,"394 South St, San Francisco, CA 94016" +259181,Apple Airpods Headphones,1,150,09/24/19 11:50,"31 Walnut St, New York City, NY 10001" +259182,Lightning Charging Cable,1,14.95,09/23/19 11:23,"123 11th St, Seattle, WA 98101" +259183,27in FHD Monitor,1,149.99,09/23/19 01:09,"660 Washington St, Boston, MA 02215" +259184,Flatscreen TV,1,300,09/17/19 19:51,"350 North St, Dallas, TX 75001" +259185,Wired Headphones,1,11.99,09/17/19 18:59,"658 Center St, San Francisco, CA 94016" +259186,Bose SoundSport Headphones,1,99.99,09/14/19 18:24,"10 Jackson St, New York City, NY 10001" +259187,USB-C Charging Cable,1,11.95,09/30/19 09:50,"543 West St, Boston, MA 02215" +259188,AA Batteries (4-pack),1,3.84,09/11/19 11:56,"87 Church St, New York City, NY 10001" +259189,Wired Headphones,1,11.99,09/07/19 21:30,"281 Hill St, Austin, TX 73301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +259190,27in 4K Gaming Monitor,1,389.99,09/18/19 11:23,"894 Willow St, San Francisco, CA 94016" +259191,iPhone,1,700,09/14/19 15:01,"318 Center St, Los Angeles, CA 90001" +259192,AAA Batteries (4-pack),1,2.99,09/30/19 21:34,"461 Lake St, San Francisco, CA 94016" +259193,Bose SoundSport Headphones,1,99.99,09/22/19 23:06,"700 4th St, San Francisco, CA 94016" +259194,Lightning Charging Cable,1,14.95,09/05/19 18:32,"818 Highland St, Boston, MA 02215" +259195,Bose SoundSport Headphones,1,99.99,09/07/19 18:50,"124 Sunset St, Atlanta, GA 30301" +259196,Flatscreen TV,1,300,09/17/19 17:32,"416 Ridge St, Atlanta, GA 30301" +259197,27in FHD Monitor,1,149.99,09/15/19 19:42,"247 Adams St, New York City, NY 10001" +259198,AA Batteries (4-pack),1,3.84,09/03/19 10:54,"614 Washington St, San Francisco, CA 94016" +259199,AAA Batteries (4-pack),3,2.99,09/19/19 11:07,"885 Pine St, San Francisco, CA 94016" +259200,AA Batteries (4-pack),1,3.84,09/11/19 17:46,"633 13th St, San Francisco, CA 94016" +259201,27in 4K Gaming Monitor,1,389.99,09/09/19 21:33,"185 13th St, New York City, NY 10001" +259202,Wired Headphones,1,11.99,09/24/19 11:42,"646 Lake St, Los Angeles, CA 90001" +259203,AA Batteries (4-pack),1,3.84,09/11/19 12:17,"824 Lincoln St, Atlanta, GA 30301" +259204,iPhone,1,700,09/17/19 18:38,"573 Lake St, San Francisco, CA 94016" +259205,Vareebadd Phone,1,400,09/15/19 16:29,"10 10th St, Boston, MA 02215" +259206,AA Batteries (4-pack),1,3.84,09/08/19 21:01,"628 Center St, San Francisco, CA 94016" +259207,USB-C Charging Cable,1,11.95,09/26/19 20:48,"640 Willow St, Portland, ME 04101" +259208,Flatscreen TV,1,300,09/16/19 08:06,"436 Adams St, Los Angeles, CA 90001" +259209,27in 4K Gaming Monitor,1,389.99,09/10/19 15:09,"178 Ridge St, Boston, MA 02215" +259210,Macbook Pro Laptop,1,1700,09/30/19 21:18,"103 Forest St, San Francisco, CA 94016" +259211,27in FHD Monitor,1,149.99,09/18/19 11:36,"380 10th St, Austin, TX 73301" +259212,AAA Batteries (4-pack),1,2.99,09/24/19 20:49,"683 Pine St, Los Angeles, CA 90001" +259213,34in Ultrawide Monitor,1,379.99,09/20/19 09:11,"448 South St, Los Angeles, CA 90001" +259214,34in Ultrawide Monitor,1,379.99,09/19/19 14:11,"944 Johnson St, San Francisco, CA 94016" +259215,AA Batteries (4-pack),2,3.84,09/09/19 10:28,"382 4th St, Boston, MA 02215" +259216,Macbook Pro Laptop,1,1700,09/09/19 14:22,"126 Hill St, Boston, MA 02215" +259217,AA Batteries (4-pack),1,3.84,09/08/19 19:16,"198 Ridge St, New York City, NY 10001" +259218,Bose SoundSport Headphones,1,99.99,09/18/19 04:40,"821 North St, New York City, NY 10001" +259219,Flatscreen TV,1,300,09/14/19 15:25,"617 Meadow St, Los Angeles, CA 90001" +259220,AAA Batteries (4-pack),1,2.99,09/05/19 10:34,"685 Cherry St, Atlanta, GA 30301" +259221,AAA Batteries (4-pack),3,2.99,09/14/19 21:49,"614 13th St, San Francisco, CA 94016" +259222,27in 4K Gaming Monitor,1,389.99,09/13/19 10:57,"219 West St, Los Angeles, CA 90001" +259223,AAA Batteries (4-pack),2,2.99,09/20/19 11:22,"139 Maple St, Dallas, TX 75001" +259224,AA Batteries (4-pack),2,3.84,09/13/19 18:04,"623 Dogwood St, Seattle, WA 98101" +259225,Apple Airpods Headphones,1,150,09/25/19 21:28,"682 5th St, Los Angeles, CA 90001" +259226,Lightning Charging Cable,1,14.95,09/24/19 20:34,"894 Adams St, San Francisco, CA 94016" +259227,Wired Headphones,1,11.99,09/04/19 13:55,"341 Wilson St, San Francisco, CA 94016" +259228,27in FHD Monitor,1,149.99,09/29/19 19:27,"269 Maple St, Atlanta, GA 30301" +259229,Lightning Charging Cable,1,14.95,09/27/19 23:52,"981 5th St, San Francisco, CA 94016" +259230,27in FHD Monitor,1,149.99,09/07/19 12:56,"906 1st St, Seattle, WA 98101" +259231,AAA Batteries (4-pack),1,2.99,09/25/19 16:36,"306 Adams St, Boston, MA 02215" +259232,34in Ultrawide Monitor,1,379.99,09/07/19 01:01,"387 9th St, New York City, NY 10001" +259233,AA Batteries (4-pack),1,3.84,09/06/19 15:51,"552 5th St, New York City, NY 10001" +259234,AAA Batteries (4-pack),2,2.99,09/13/19 00:36,"424 Washington St, Portland, ME 04101" +259235,Lightning Charging Cable,1,14.95,09/15/19 12:57,"102 Chestnut St, New York City, NY 10001" +259236,iPhone,1,700,09/15/19 21:11,"332 4th St, Boston, MA 02215" +259237,AA Batteries (4-pack),2,3.84,09/03/19 07:24,"256 Spruce St, Los Angeles, CA 90001" +259238,Lightning Charging Cable,1,14.95,09/09/19 12:44,"950 Jefferson St, Atlanta, GA 30301" +259239,Wired Headphones,2,11.99,09/06/19 19:02,"308 7th St, Boston, MA 02215" +259240,Wired Headphones,1,11.99,09/13/19 06:55,"536 Cherry St, Dallas, TX 75001" +259241,Apple Airpods Headphones,1,150,09/23/19 14:20,"891 4th St, San Francisco, CA 94016" +259242,USB-C Charging Cable,1,11.95,09/22/19 21:10,"879 Maple St, Seattle, WA 98101" +259243,27in 4K Gaming Monitor,1,389.99,09/25/19 18:38,"732 Sunset St, San Francisco, CA 94016" +259244,Lightning Charging Cable,1,14.95,09/27/19 20:43,"890 2nd St, Seattle, WA 98101" +259245,27in FHD Monitor,1,149.99,09/30/19 08:17,"477 Cherry St, New York City, NY 10001" +259246,USB-C Charging Cable,1,11.95,09/23/19 12:27,"623 Walnut St, San Francisco, CA 94016" +259247,27in 4K Gaming Monitor,1,389.99,09/21/19 11:09,"431 Wilson St, Los Angeles, CA 90001" +259248,USB-C Charging Cable,2,11.95,09/29/19 20:10,"515 13th St, Boston, MA 02215" +259249,USB-C Charging Cable,1,11.95,09/25/19 22:48,"428 Center St, New York City, NY 10001" +259250,Google Phone,1,600,09/05/19 21:53,"246 Ridge St, San Francisco, CA 94016" +259251,Google Phone,1,600,09/30/19 15:51,"98 Church St, New York City, NY 10001" +259252,Lightning Charging Cable,1,14.95,09/22/19 08:06,"165 Forest St, Dallas, TX 75001" +259253,USB-C Charging Cable,1,11.95,09/18/19 14:47,"452 Dogwood St, San Francisco, CA 94016" +259254,Wired Headphones,1,11.99,09/02/19 18:33,"206 6th St, Boston, MA 02215" +259255,Wired Headphones,1,11.99,09/04/19 18:57,"655 South St, San Francisco, CA 94016" +259256,ThinkPad Laptop,1,999.99,09/24/19 01:41,"515 Hill St, San Francisco, CA 94016" +259257,Lightning Charging Cable,1,14.95,09/15/19 00:58,"746 Main St, Seattle, WA 98101" +,,,,, +259258,AA Batteries (4-pack),1,3.84,09/25/19 13:56,"517 Maple St, San Francisco, CA 94016" +259259,Bose SoundSport Headphones,1,99.99,09/06/19 11:25,"66 Johnson St, Los Angeles, CA 90001" +259260,Apple Airpods Headphones,1,150,09/25/19 10:49,"547 Lake St, Seattle, WA 98101" +259261,Bose SoundSport Headphones,1,99.99,09/07/19 11:01,"651 Lincoln St, Portland, OR 97035" +259262,Wired Headphones,1,11.99,09/10/19 19:31,"122 North St, Portland, OR 97035" +259263,20in Monitor,1,109.99,09/15/19 18:57,"127 2nd St, Seattle, WA 98101" +259264,Lightning Charging Cable,1,14.95,09/08/19 12:35,"880 North St, San Francisco, CA 94016" +259265,AA Batteries (4-pack),2,3.84,09/04/19 13:21,"804 9th St, Seattle, WA 98101" +259266,ThinkPad Laptop,1,999.99,09/17/19 16:50,"887 Hill St, Portland, OR 97035" +259267,Macbook Pro Laptop,1,1700,09/17/19 20:39,"304 10th St, San Francisco, CA 94016" +259268,USB-C Charging Cable,1,11.95,09/28/19 17:21,"265 14th St, Dallas, TX 75001" +259269,AAA Batteries (4-pack),1,2.99,09/01/19 15:36,"885 Lincoln St, Los Angeles, CA 90001" +259270,USB-C Charging Cable,2,11.95,09/25/19 19:46,"823 14th St, San Francisco, CA 94016" +259271,Apple Airpods Headphones,1,150,09/15/19 20:33,"497 Main St, Los Angeles, CA 90001" +259272,AAA Batteries (4-pack),4,2.99,09/10/19 18:08,"98 Johnson St, San Francisco, CA 94016" +259273,USB-C Charging Cable,1,11.95,09/05/19 01:54,"468 10th St, San Francisco, CA 94016" +259274,Apple Airpods Headphones,1,150,09/08/19 21:28,"854 Ridge St, Portland, OR 97035" +259275,USB-C Charging Cable,1,11.95,09/14/19 23:07,"609 5th St, Los Angeles, CA 90001" +259276,Apple Airpods Headphones,1,150,09/02/19 15:42,"477 Meadow St, New York City, NY 10001" +259277,ThinkPad Laptop,1,999.99,09/02/19 13:03,"658 Hill St, Dallas, TX 75001" +259278,Lightning Charging Cable,1,14.95,09/04/19 22:58,"353 10th St, Dallas, TX 75001" +259279,USB-C Charging Cable,1,11.95,09/12/19 16:11,"115 Park St, San Francisco, CA 94016" +259280,Wired Headphones,1,11.99,09/28/19 15:09,"489 4th St, Portland, ME 04101" +259281,AAA Batteries (4-pack),1,2.99,09/26/19 16:15,"444 River St, Boston, MA 02215" +259282,Bose SoundSport Headphones,1,99.99,09/19/19 11:16,"122 Hill St, Los Angeles, CA 90001" +259283,Bose SoundSport Headphones,1,99.99,09/15/19 20:17,"915 River St, San Francisco, CA 94016" +259284,Lightning Charging Cable,1,14.95,09/22/19 18:08,"621 Willow St, New York City, NY 10001" +259285,USB-C Charging Cable,1,11.95,09/08/19 20:46,"198 7th St, San Francisco, CA 94016" +259286,USB-C Charging Cable,1,11.95,09/11/19 09:56,"444 Chestnut St, Atlanta, GA 30301" +259287,Apple Airpods Headphones,1,150,09/10/19 11:13,"952 Adams St, Atlanta, GA 30301" +259288,Apple Airpods Headphones,1,150,09/12/19 16:35,"649 Lincoln St, Los Angeles, CA 90001" +259289,Apple Airpods Headphones,1,150,09/18/19 09:29,"804 River St, Los Angeles, CA 90001" +259290,27in 4K Gaming Monitor,1,389.99,09/30/19 16:17,"429 Wilson St, San Francisco, CA 94016" +259291,Lightning Charging Cable,1,14.95,09/21/19 10:44,"467 7th St, Boston, MA 02215" +259292,AAA Batteries (4-pack),3,2.99,09/02/19 11:40,"133 Maple St, New York City, NY 10001" +259293,AAA Batteries (4-pack),1,2.99,09/18/19 22:13,"714 River St, Los Angeles, CA 90001" +259294,iPhone,1,700,09/27/19 13:15,"124 Elm St, Dallas, TX 75001" +259294,Wired Headphones,1,11.99,09/27/19 13:15,"124 Elm St, Dallas, TX 75001" +259295,27in FHD Monitor,1,149.99,09/06/19 22:07,"688 Ridge St, Seattle, WA 98101" +259296,27in 4K Gaming Monitor,1,389.99,09/05/19 11:09,"251 West St, Dallas, TX 75001" +259297,Bose SoundSport Headphones,1,99.99,09/01/19 19:06,"388 Park St, San Francisco, CA 94016" +259298,27in FHD Monitor,1,149.99,09/09/19 20:35,"590 6th St, San Francisco, CA 94016" +259299,AA Batteries (4-pack),1,3.84,09/21/19 21:38,"81 Chestnut St, New York City, NY 10001" +259300,AA Batteries (4-pack),1,3.84,09/11/19 11:16,"183 Hill St, San Francisco, CA 94016" +259301,34in Ultrawide Monitor,1,379.99,09/02/19 23:05,"266 Walnut St, Dallas, TX 75001" +259302,34in Ultrawide Monitor,1,379.99,09/17/19 11:24,"581 10th St, New York City, NY 10001" +259303,USB-C Charging Cable,1,11.95,09/27/19 22:17,"388 Chestnut St, Boston, MA 02215" +259304,27in FHD Monitor,1,149.99,09/06/19 14:38,"151 1st St, Atlanta, GA 30301" +259305,Flatscreen TV,1,300,09/11/19 20:30,"595 River St, Los Angeles, CA 90001" +259306,34in Ultrawide Monitor,1,379.99,09/22/19 17:31,"87 Hickory St, Los Angeles, CA 90001" +259307,27in 4K Gaming Monitor,1,389.99,09/01/19 19:00,"778 8th St, Boston, MA 02215" +259308,AAA Batteries (4-pack),1,2.99,09/07/19 08:52,"669 2nd St, Austin, TX 73301" +259309,Wired Headphones,1,11.99,09/04/19 21:06,"60 Elm St, San Francisco, CA 94016" +259310,Lightning Charging Cable,2,14.95,09/29/19 14:02,"395 2nd St, Dallas, TX 75001" +259311,AAA Batteries (4-pack),1,2.99,09/03/19 18:31,"342 Church St, Los Angeles, CA 90001" +259312,iPhone,1,700,09/24/19 21:28,"388 Main St, Los Angeles, CA 90001" +259313,Google Phone,1,600,09/22/19 12:14,"154 Adams St, Boston, MA 02215" +259313,USB-C Charging Cable,1,11.95,09/22/19 12:14,"154 Adams St, Boston, MA 02215" +259314,USB-C Charging Cable,1,11.95,09/06/19 11:14,"733 4th St, Los Angeles, CA 90001" +259315,20in Monitor,1,109.99,09/07/19 09:51,"953 Lake St, New York City, NY 10001" +259316,USB-C Charging Cable,1,11.95,09/19/19 07:44,"863 North St, Atlanta, GA 30301" +259317,AA Batteries (4-pack),1,3.84,09/17/19 06:56,"808 Wilson St, Boston, MA 02215" +259318,Lightning Charging Cable,1,14.95,09/05/19 22:37,"504 Dogwood St, Atlanta, GA 30301" +259319,27in 4K Gaming Monitor,1,389.99,09/30/19 07:55,"924 7th St, Austin, TX 73301" +259320,AAA Batteries (4-pack),1,2.99,09/21/19 17:58,"892 2nd St, Portland, OR 97035" +259321,27in FHD Monitor,1,149.99,09/29/19 11:27,"990 West St, Boston, MA 02215" +259322,Flatscreen TV,1,300,09/29/19 16:03,"503 Washington St, Atlanta, GA 30301" +259323,Wired Headphones,1,11.99,09/19/19 23:01,"587 North St, Atlanta, GA 30301" +259324,Wired Headphones,1,11.99,09/27/19 13:14,"280 12th St, Portland, OR 97035" +259325,USB-C Charging Cable,1,11.95,09/29/19 05:42,"543 Pine St, San Francisco, CA 94016" +259326,Bose SoundSport Headphones,1,99.99,09/15/19 21:00,"470 Main St, Austin, TX 73301" +259327,Lightning Charging Cable,1,14.95,09/24/19 13:07,"375 10th St, Seattle, WA 98101" +259328,Bose SoundSport Headphones,1,99.99,09/02/19 16:55,"224 Church St, Boston, MA 02215" +259329,AA Batteries (4-pack),1,3.84,09/15/19 22:12,"326 Lake St, Los Angeles, CA 90001" +259330,AA Batteries (4-pack),2,3.84,09/04/19 21:52,"455 2nd St, New York City, NY 10001" +259331,USB-C Charging Cable,1,11.95,09/21/19 20:10,"504 Lake St, Portland, ME 04101" +259332,Lightning Charging Cable,1,14.95,09/03/19 14:18,"472 10th St, Seattle, WA 98101" +259333,iPhone,1,700,09/07/19 06:28,"791 Sunset St, Los Angeles, CA 90001" +259334,Wired Headphones,1,11.99,09/14/19 16:18,"604 5th St, Atlanta, GA 30301" +259335,AAA Batteries (4-pack),1,2.99,09/02/19 15:42,"85 Dogwood St, New York City, NY 10001" +259336,AA Batteries (4-pack),1,3.84,09/22/19 12:41,"554 1st St, New York City, NY 10001" +259337,AAA Batteries (4-pack),1,2.99,09/25/19 19:45,"948 Cedar St, Boston, MA 02215" +259338,Apple Airpods Headphones,1,150,09/19/19 14:48,"815 Hill St, Boston, MA 02215" +259339,USB-C Charging Cable,1,11.95,09/15/19 18:51,"962 4th St, New York City, NY 10001" +259340,Wired Headphones,1,11.99,09/19/19 02:00,"546 10th St, Los Angeles, CA 90001" +259341,LG Washing Machine,1,600.0,09/12/19 10:34,"372 14th St, Dallas, TX 75001" +259342,AA Batteries (4-pack),2,3.84,09/20/19 11:18,"870 Ridge St, Boston, MA 02215" +259343,AAA Batteries (4-pack),1,2.99,09/22/19 12:43,"863 7th St, San Francisco, CA 94016" +259344,Wired Headphones,1,11.99,09/09/19 08:07,"338 Forest St, Los Angeles, CA 90001" +259345,Lightning Charging Cable,1,14.95,09/15/19 12:56,"89 River St, Portland, ME 04101" +259346,AAA Batteries (4-pack),1,2.99,09/03/19 16:16,"274 Cedar St, San Francisco, CA 94016" +259347,iPhone,1,700,09/02/19 12:33,"20 Hickory St, Atlanta, GA 30301" +259348,USB-C Charging Cable,1,11.95,09/17/19 20:48,"136 8th St, Seattle, WA 98101" +259349,AA Batteries (4-pack),1,3.84,09/15/19 10:46,"623 West St, Portland, OR 97035" +259350,27in 4K Gaming Monitor,1,389.99,09/22/19 17:12,"549 11th St, Portland, OR 97035" +259351,AA Batteries (4-pack),3,3.84,09/27/19 22:09,"336 River St, Dallas, TX 75001" +259352,AAA Batteries (4-pack),3,2.99,09/10/19 18:26,"712 4th St, Boston, MA 02215" +259353,AA Batteries (4-pack),2,3.84,09/02/19 21:11,"446 Forest St, San Francisco, CA 94016" +259354,Lightning Charging Cable,1,14.95,09/25/19 12:28,"917 Hill St, Dallas, TX 75001" +259355,Lightning Charging Cable,1,14.95,09/29/19 05:43,"987 Lakeview St, San Francisco, CA 94016" +259356,USB-C Charging Cable,1,11.95,09/17/19 22:56,"924 Jackson St, San Francisco, CA 94016" +259357,AAA Batteries (4-pack),1,2.99,09/17/19 00:42,"175 Walnut St, Boston, MA 02215" +259358,27in 4K Gaming Monitor,1,389.99,09/25/19 16:07,"415 Jackson St, Portland, OR 97035" +259359,AAA Batteries (4-pack),4,2.99,09/14/19 19:23,"69 Walnut St, Boston, MA 02215" +259360,USB-C Charging Cable,1,11.95,09/02/19 19:30,"579 7th St, San Francisco, CA 94016" +259361,AA Batteries (4-pack),1,3.84,09/08/19 21:47,"430 West St, Portland, OR 97035" +259362,34in Ultrawide Monitor,1,379.99,09/09/19 21:01,"279 6th St, San Francisco, CA 94016" +259363,Flatscreen TV,1,300,09/19/19 19:27,"177 West St, Los Angeles, CA 90001" +259364,Flatscreen TV,1,300,09/16/19 13:15,"243 West St, Dallas, TX 75001" +259365,34in Ultrawide Monitor,1,379.99,09/24/19 13:56,"248 North St, Seattle, WA 98101" +259366,iPhone,1,700,09/30/19 19:01,"650 Chestnut St, Boston, MA 02215" +259367,Apple Airpods Headphones,1,150,09/21/19 21:53,"328 10th St, San Francisco, CA 94016" +259368,Bose SoundSport Headphones,1,99.99,09/05/19 17:18,"718 Highland St, Los Angeles, CA 90001" +259369,Apple Airpods Headphones,1,150,09/14/19 08:02,"758 Forest St, Dallas, TX 75001" +259370,iPhone,1,700,09/10/19 08:15,"120 Sunset St, Atlanta, GA 30301" +259370,Lightning Charging Cable,1,14.95,09/10/19 08:15,"120 Sunset St, Atlanta, GA 30301" +259371,AA Batteries (4-pack),1,3.84,09/20/19 15:00,"958 Hickory St, Portland, OR 97035" +259372,Apple Airpods Headphones,1,150,09/13/19 10:25,"892 Church St, San Francisco, CA 94016" +259373,Lightning Charging Cable,1,14.95,09/29/19 20:04,"218 Elm St, New York City, NY 10001" +259374,Wired Headphones,1,11.99,09/13/19 19:14,"514 11th St, Seattle, WA 98101" +259375,Lightning Charging Cable,1,14.95,09/25/19 21:10,"641 12th St, New York City, NY 10001" +259376,Google Phone,1,600,09/18/19 18:24,"23 11th St, Los Angeles, CA 90001" +259377,27in FHD Monitor,1,149.99,09/15/19 23:12,"646 Forest St, Los Angeles, CA 90001" +259378,Google Phone,1,600,09/09/19 14:14,"577 Meadow St, San Francisco, CA 94016" +259379,ThinkPad Laptop,1,999.99,09/13/19 05:48,"7 5th St, Atlanta, GA 30301" +259380,34in Ultrawide Monitor,1,379.99,09/14/19 02:31,"325 Meadow St, San Francisco, CA 94016" +259381,Bose SoundSport Headphones,1,99.99,09/09/19 12:37,"252 7th St, New York City, NY 10001" +259382,USB-C Charging Cable,1,11.95,09/07/19 15:13,"108 Walnut St, Portland, OR 97035" +259383,USB-C Charging Cable,1,11.95,09/07/19 14:31,"741 Johnson St, New York City, NY 10001" +259384,Lightning Charging Cable,1,14.95,09/30/19 12:25,"169 6th St, San Francisco, CA 94016" +259385,Apple Airpods Headphones,1,150,09/16/19 10:24,"113 South St, Los Angeles, CA 90001" +259386,AA Batteries (4-pack),3,3.84,09/23/19 10:48,"617 Jackson St, Austin, TX 73301" +259387,AAA Batteries (4-pack),1,2.99,09/06/19 21:15,"875 Jackson St, Dallas, TX 75001" +259388,Flatscreen TV,1,300,09/10/19 16:24,"652 Adams St, Boston, MA 02215" +259389,Apple Airpods Headphones,1,150,09/25/19 16:03,"516 2nd St, San Francisco, CA 94016" +259390,Apple Airpods Headphones,1,150,09/17/19 23:47,"817 11th St, Los Angeles, CA 90001" +259391,Flatscreen TV,1,300,09/10/19 13:45,"98 Highland St, San Francisco, CA 94016" +259392,Flatscreen TV,1,300,09/19/19 07:16,"925 Lake St, Seattle, WA 98101" +259393,Wired Headphones,1,11.99,09/27/19 20:22,"522 Pine St, Seattle, WA 98101" +259394,34in Ultrawide Monitor,1,379.99,09/22/19 11:25,"351 5th St, San Francisco, CA 94016" +259395,Wired Headphones,1,11.99,09/23/19 16:27,"218 1st St, Boston, MA 02215" +259396,iPhone,1,700,09/17/19 14:53,"335 Maple St, Dallas, TX 75001" +259396,Lightning Charging Cable,1,14.95,09/17/19 14:53,"335 Maple St, Dallas, TX 75001" +259397,Google Phone,1,600,09/04/19 14:50,"422 8th St, New York City, NY 10001" +259398,Bose SoundSport Headphones,1,99.99,09/17/19 15:47,"295 Pine St, Boston, MA 02215" +259399,Wired Headphones,1,11.99,09/03/19 21:07,"724 Willow St, Boston, MA 02215" +259400,AAA Batteries (4-pack),1,2.99,09/16/19 03:01,"842 Jefferson St, Atlanta, GA 30301" +259401,USB-C Charging Cable,1,11.95,09/24/19 20:15,"450 6th St, Los Angeles, CA 90001" +259402,Lightning Charging Cable,1,14.95,09/14/19 13:19,"720 10th St, Los Angeles, CA 90001" +259403,Wired Headphones,1,11.99,09/03/19 09:33,"973 6th St, Los Angeles, CA 90001" +259404,AAA Batteries (4-pack),2,2.99,09/26/19 17:28,"486 Park St, San Francisco, CA 94016" +259405,ThinkPad Laptop,1,999.99,09/21/19 11:55,"386 Center St, San Francisco, CA 94016" +259406,USB-C Charging Cable,1,11.95,09/09/19 17:53,"562 9th St, Los Angeles, CA 90001" +259407,AAA Batteries (4-pack),1,2.99,09/07/19 01:16,"622 South St, Atlanta, GA 30301" +259408,LG Washing Machine,1,600.0,09/28/19 11:44,"511 2nd St, Austin, TX 73301" +259409,Lightning Charging Cable,1,14.95,09/08/19 11:28,"741 11th St, Austin, TX 73301" +259410,USB-C Charging Cable,1,11.95,09/04/19 10:34,"185 7th St, San Francisco, CA 94016" +259411,27in 4K Gaming Monitor,1,389.99,09/09/19 17:59,"621 Lincoln St, Portland, ME 04101" +259412,Flatscreen TV,1,300,09/26/19 20:25,"114 2nd St, Seattle, WA 98101" +259413,Wired Headphones,1,11.99,09/27/19 19:55,"528 Ridge St, Austin, TX 73301" +259414,Wired Headphones,1,11.99,09/22/19 23:34,"909 Hill St, New York City, NY 10001" +259415,AAA Batteries (4-pack),1,2.99,09/10/19 20:24,"651 9th St, Seattle, WA 98101" +259416,AA Batteries (4-pack),4,3.84,09/12/19 17:57,"476 Highland St, Atlanta, GA 30301" +259417,Apple Airpods Headphones,1,150,09/15/19 23:34,"721 Lakeview St, San Francisco, CA 94016" +259418,USB-C Charging Cable,1,11.95,09/22/19 19:55,"923 Johnson St, San Francisco, CA 94016" +259419,AAA Batteries (4-pack),1,2.99,09/16/19 17:57,"25 Dogwood St, San Francisco, CA 94016" +259420,AAA Batteries (4-pack),1,2.99,09/30/19 01:39,"930 Willow St, Boston, MA 02215" +259421,AAA Batteries (4-pack),1,2.99,09/26/19 06:07,"908 Pine St, Seattle, WA 98101" +259422,AAA Batteries (4-pack),1,2.99,09/24/19 16:29,"713 Lake St, Dallas, TX 75001" +259423,USB-C Charging Cable,1,11.95,09/02/19 09:58,"732 9th St, New York City, NY 10001" +259424,AA Batteries (4-pack),4,3.84,09/24/19 10:09,"139 Main St, Los Angeles, CA 90001" +259425,27in FHD Monitor,1,149.99,09/25/19 10:52,"75 Johnson St, New York City, NY 10001" +259426,USB-C Charging Cable,3,11.95,09/29/19 18:25,"333 West St, San Francisco, CA 94016" +259427,Apple Airpods Headphones,1,150,09/20/19 00:06,"908 Wilson St, New York City, NY 10001" +259428,Apple Airpods Headphones,1,150,09/25/19 19:38,"307 Center St, Los Angeles, CA 90001" +259429,Bose SoundSport Headphones,1,99.99,09/29/19 18:40,"746 Adams St, San Francisco, CA 94016" +259429,iPhone,1,700,09/29/19 18:40,"746 Adams St, San Francisco, CA 94016" +259430,USB-C Charging Cable,1,11.95,09/24/19 08:23,"173 North St, Los Angeles, CA 90001" +259431,20in Monitor,1,109.99,09/06/19 21:23,"147 Meadow St, New York City, NY 10001" +259432,Apple Airpods Headphones,1,150,09/13/19 21:46,"631 West St, San Francisco, CA 94016" +259433,Flatscreen TV,1,300,09/08/19 10:19,"477 Lakeview St, Dallas, TX 75001" +259434,Apple Airpods Headphones,1,150,09/17/19 15:49,"734 14th St, New York City, NY 10001" +259435,Lightning Charging Cable,1,14.95,09/29/19 23:13,"865 Cedar St, Boston, MA 02215" +259436,AA Batteries (4-pack),1,3.84,09/21/19 12:23,"112 Lincoln St, San Francisco, CA 94016" +259437,Lightning Charging Cable,1,14.95,09/01/19 14:31,"15 6th St, San Francisco, CA 94016" +259438,USB-C Charging Cable,1,11.95,09/17/19 11:36,"685 8th St, Seattle, WA 98101" +259439,AAA Batteries (4-pack),1,2.99,09/01/19 20:19,"447 Cherry St, Portland, ME 04101" +259440,AAA Batteries (4-pack),1,2.99,09/29/19 06:26,"144 Dogwood St, Seattle, WA 98101" +259441,Flatscreen TV,1,300,09/23/19 00:32,"630 Hickory St, San Francisco, CA 94016" +259442,Apple Airpods Headphones,1,150,09/13/19 19:45,"338 West St, Austin, TX 73301" +259443,AA Batteries (4-pack),1,3.84,09/15/19 20:22,"479 North St, New York City, NY 10001" +259444,Google Phone,1,600,09/14/19 21:25,"899 Spruce St, San Francisco, CA 94016" +259445,AAA Batteries (4-pack),1,2.99,09/22/19 10:11,"430 Madison St, Portland, OR 97035" +259446,USB-C Charging Cable,1,11.95,09/15/19 17:46,"519 4th St, Boston, MA 02215" +259447,Flatscreen TV,1,300,09/11/19 22:40,"510 11th St, New York City, NY 10001" +259448,Macbook Pro Laptop,1,1700,09/12/19 09:11,"913 Wilson St, Los Angeles, CA 90001" +259449,ThinkPad Laptop,1,999.99,09/17/19 23:27,"89 Jefferson St, Los Angeles, CA 90001" +259450,27in FHD Monitor,1,149.99,09/26/19 09:57,"974 Elm St, San Francisco, CA 94016" +259451,AAA Batteries (4-pack),1,2.99,09/23/19 19:22,"224 Lincoln St, Atlanta, GA 30301" +259452,Apple Airpods Headphones,1,150,09/16/19 07:20,"960 Highland St, Portland, OR 97035" +259453,Wired Headphones,1,11.99,09/03/19 15:40,"172 Elm St, Portland, ME 04101" +259454,ThinkPad Laptop,1,999.99,09/05/19 13:00,"395 Adams St, Dallas, TX 75001" +259455,27in 4K Gaming Monitor,1,389.99,09/04/19 09:22,"787 River St, Austin, TX 73301" +259456,Wired Headphones,1,11.99,09/09/19 19:20,"217 Pine St, San Francisco, CA 94016" +259457,Wired Headphones,1,11.99,09/12/19 21:16,"963 Park St, Los Angeles, CA 90001" +259458,Lightning Charging Cable,1,14.95,09/22/19 18:17,"62 West St, Dallas, TX 75001" +259459,USB-C Charging Cable,1,11.95,09/14/19 15:01,"12 Center St, New York City, NY 10001" +259460,Google Phone,1,600,09/21/19 11:51,"45 Dogwood St, Los Angeles, CA 90001" +259461,Google Phone,1,600,09/22/19 21:06,"241 Washington St, San Francisco, CA 94016" +259461,Wired Headphones,1,11.99,09/22/19 21:06,"241 Washington St, San Francisco, CA 94016" +259462,USB-C Charging Cable,1,11.95,09/18/19 11:53,"989 Church St, San Francisco, CA 94016" +259463,Vareebadd Phone,1,400,09/19/19 15:07,"195 Washington St, New York City, NY 10001" +259464,Bose SoundSport Headphones,1,99.99,09/10/19 12:14,"532 1st St, Dallas, TX 75001" +259465,Wired Headphones,1,11.99,09/01/19 22:30,"973 Walnut St, Austin, TX 73301" +259466,AAA Batteries (4-pack),1,2.99,09/30/19 12:40,"733 12th St, Los Angeles, CA 90001" +259467,Wired Headphones,2,11.99,09/01/19 08:59,"439 Ridge St, Los Angeles, CA 90001" +259468,AA Batteries (4-pack),1,3.84,09/07/19 10:33,"726 2nd St, Austin, TX 73301" +259469,34in Ultrawide Monitor,1,379.99,09/26/19 14:05,"790 Wilson St, Dallas, TX 75001" +259470,Lightning Charging Cable,1,14.95,09/24/19 16:13,"746 Walnut St, San Francisco, CA 94016" +259471,Wired Headphones,1,11.99,09/30/19 21:08,"434 Jackson St, Los Angeles, CA 90001" +259472,Lightning Charging Cable,1,14.95,09/07/19 22:10,"144 10th St, New York City, NY 10001" +259473,Bose SoundSport Headphones,1,99.99,09/30/19 12:12,"854 Cedar St, San Francisco, CA 94016" +259474,Lightning Charging Cable,1,14.95,09/02/19 09:14,"525 Willow St, New York City, NY 10001" +259475,27in FHD Monitor,1,149.99,09/05/19 21:45,"855 Ridge St, Dallas, TX 75001" +259476,USB-C Charging Cable,1,11.95,09/13/19 11:48,"36 Elm St, New York City, NY 10001" +259477,USB-C Charging Cable,1,11.95,09/25/19 22:24,"154 Sunset St, Dallas, TX 75001" +259478,AAA Batteries (4-pack),3,2.99,09/22/19 15:33,"944 Lincoln St, San Francisco, CA 94016" +259479,Macbook Pro Laptop,1,1700,09/22/19 16:48,"519 Adams St, Los Angeles, CA 90001" +259479,20in Monitor,1,109.99,09/22/19 16:48,"519 Adams St, Los Angeles, CA 90001" +259480,AAA Batteries (4-pack),2,2.99,09/20/19 19:32,"235 Johnson St, San Francisco, CA 94016" +259481,Lightning Charging Cable,1,14.95,09/20/19 02:56,"553 9th St, San Francisco, CA 94016" +259482,Lightning Charging Cable,1,14.95,09/24/19 08:19,"73 Center St, Los Angeles, CA 90001" +259483,20in Monitor,1,109.99,09/07/19 16:36,"324 Lake St, Seattle, WA 98101" +259483,USB-C Charging Cable,1,11.95,09/07/19 16:36,"324 Lake St, Seattle, WA 98101" +259484,Bose SoundSport Headphones,1,99.99,09/04/19 18:19,"341 Forest St, Los Angeles, CA 90001" +259485,27in 4K Gaming Monitor,1,389.99,09/06/19 12:02,"593 Lincoln St, New York City, NY 10001" +259486,Wired Headphones,1,11.99,09/05/19 07:05,"144 Church St, Austin, TX 73301" +259487,AA Batteries (4-pack),1,3.84,09/18/19 10:50,"626 Washington St, Dallas, TX 75001" +259488,USB-C Charging Cable,1,11.95,09/11/19 20:52,"897 2nd St, Dallas, TX 75001" +259489,AAA Batteries (4-pack),1,2.99,09/19/19 13:06,"993 Hickory St, New York City, NY 10001" +259490,USB-C Charging Cable,1,11.95,09/22/19 14:55,"291 Cedar St, Atlanta, GA 30301" +259491,AA Batteries (4-pack),1,3.84,09/08/19 15:44,"61 1st St, Los Angeles, CA 90001" +259492,AAA Batteries (4-pack),1,2.99,09/24/19 12:03,"830 Adams St, San Francisco, CA 94016" +259493,iPhone,1,700,09/12/19 09:23,"776 Dogwood St, Atlanta, GA 30301" +259494,Wired Headphones,1,11.99,09/04/19 12:52,"698 Lincoln St, New York City, NY 10001" +259495,USB-C Charging Cable,1,11.95,09/05/19 15:20,"263 Hickory St, Austin, TX 73301" +259496,AA Batteries (4-pack),1,3.84,09/23/19 08:18,"470 9th St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +259497,Wired Headphones,1,11.99,09/02/19 22:39,"706 Adams St, Dallas, TX 75001" +259498,AAA Batteries (4-pack),1,2.99,09/04/19 19:59,"45 Pine St, San Francisco, CA 94016" +259499,USB-C Charging Cable,1,11.95,09/28/19 18:54,"261 Chestnut St, San Francisco, CA 94016" +259500,AAA Batteries (4-pack),1,2.99,09/05/19 02:15,"179 10th St, Los Angeles, CA 90001" +259501,34in Ultrawide Monitor,1,379.99,09/17/19 01:25,"858 Jackson St, Austin, TX 73301" +259502,Apple Airpods Headphones,1,150,09/04/19 23:05,"93 Cedar St, San Francisco, CA 94016" +259503,USB-C Charging Cable,1,11.95,09/23/19 20:44,"481 South St, New York City, NY 10001" +259504,Wired Headphones,1,11.99,09/13/19 15:18,"391 Main St, Dallas, TX 75001" +259505,iPhone,1,700,09/07/19 23:30,"187 Jefferson St, Los Angeles, CA 90001" +259506,Apple Airpods Headphones,1,150,09/10/19 18:13,"394 Lincoln St, Atlanta, GA 30301" +259507,USB-C Charging Cable,1,11.95,09/25/19 19:05,"714 Lincoln St, Los Angeles, CA 90001" +259507,AAA Batteries (4-pack),1,2.99,09/25/19 19:05,"714 Lincoln St, Los Angeles, CA 90001" +259508,iPhone,1,700,09/27/19 02:50,"926 Lincoln St, Boston, MA 02215" +259509,Vareebadd Phone,1,400,09/04/19 10:59,"135 5th St, Los Angeles, CA 90001" +259510,AAA Batteries (4-pack),2,2.99,09/02/19 13:59,"117 14th St, San Francisco, CA 94016" +259511,AA Batteries (4-pack),2,3.84,09/05/19 19:11,"937 Elm St, Austin, TX 73301" +259512,Lightning Charging Cable,1,14.95,09/09/19 14:58,"47 Main St, Portland, ME 04101" +259513,Lightning Charging Cable,1,14.95,09/30/19 09:54,"505 Ridge St, San Francisco, CA 94016" +259514,Wired Headphones,1,11.99,09/01/19 14:38,"219 Main St, Austin, TX 73301" +259515,Lightning Charging Cable,1,14.95,09/07/19 15:36,"54 13th St, Portland, OR 97035" +259516,Apple Airpods Headphones,1,150,09/12/19 14:27,"341 South St, Los Angeles, CA 90001" +259517,AA Batteries (4-pack),1,3.84,09/19/19 14:47,"580 Elm St, Portland, OR 97035" +259518,USB-C Charging Cable,1,11.95,09/11/19 19:42,"263 Park St, Atlanta, GA 30301" +259519,Macbook Pro Laptop,1,1700,09/27/19 17:42,"911 West St, New York City, NY 10001" +259520,Apple Airpods Headphones,1,150,09/29/19 15:22,"784 Madison St, Portland, ME 04101" +259521,Wired Headphones,1,11.99,09/22/19 01:20,"165 Maple St, New York City, NY 10001" +259522,AAA Batteries (4-pack),2,2.99,09/04/19 11:56,"491 Main St, New York City, NY 10001" +259523,AAA Batteries (4-pack),1,2.99,09/06/19 14:59,"390 Madison St, Austin, TX 73301" +259524,USB-C Charging Cable,1,11.95,09/27/19 13:18,"875 14th St, Portland, OR 97035" +259525,Lightning Charging Cable,1,14.95,09/04/19 12:49,"499 9th St, Seattle, WA 98101" +259526,USB-C Charging Cable,1,11.95,09/16/19 15:19,"879 Meadow St, Austin, TX 73301" +259527,Apple Airpods Headphones,1,150,09/18/19 20:42,"104 13th St, Austin, TX 73301" +259528,AA Batteries (4-pack),1,3.84,09/09/19 22:03,"735 Willow St, Austin, TX 73301" +259529,Flatscreen TV,1,300,09/27/19 09:45,"858 Church St, Dallas, TX 75001" +259530,AA Batteries (4-pack),1,3.84,09/09/19 13:04,"523 West St, Portland, OR 97035" +259531,Lightning Charging Cable,1,14.95,09/06/19 18:05,"234 Jackson St, New York City, NY 10001" +259532,Lightning Charging Cable,1,14.95,09/21/19 05:23,"118 Hill St, Dallas, TX 75001" +259533,Lightning Charging Cable,1,14.95,09/15/19 15:03,"219 7th St, San Francisco, CA 94016" +259534,AAA Batteries (4-pack),1,2.99,09/27/19 09:45,"824 Jefferson St, Seattle, WA 98101" +259535,Wired Headphones,1,11.99,09/24/19 16:32,"554 Hill St, San Francisco, CA 94016" +259536,34in Ultrawide Monitor,1,379.99,09/11/19 12:18,"357 Forest St, San Francisco, CA 94016" +259537,Bose SoundSport Headphones,1,99.99,09/24/19 13:06,"76 1st St, Atlanta, GA 30301" +259538,AA Batteries (4-pack),1,3.84,09/29/19 06:11,"784 Johnson St, San Francisco, CA 94016" +259539,Bose SoundSport Headphones,1,99.99,09/06/19 01:07,"735 Dogwood St, New York City, NY 10001" +,,,,, +259540,Google Phone,1,600,09/18/19 07:54,"521 Sunset St, Portland, OR 97035" +259540,USB-C Charging Cable,1,11.95,09/18/19 07:54,"521 Sunset St, Portland, OR 97035" +259541,iPhone,1,700,09/21/19 08:10,"841 7th St, San Francisco, CA 94016" +259542,Apple Airpods Headphones,1,150,09/09/19 15:40,"929 Church St, Atlanta, GA 30301" +259543,LG Dryer,1,600.0,09/26/19 09:46,"743 North St, Dallas, TX 75001" +259544,Wired Headphones,1,11.99,09/17/19 01:06,"18 Sunset St, Los Angeles, CA 90001" +259545,Lightning Charging Cable,1,14.95,09/21/19 12:30,"252 7th St, Los Angeles, CA 90001" +259545,ThinkPad Laptop,1,999.99,09/21/19 12:30,"252 7th St, Los Angeles, CA 90001" +259546,AAA Batteries (4-pack),3,2.99,09/05/19 11:31,"45 Chestnut St, Atlanta, GA 30301" +259547,Apple Airpods Headphones,1,150,09/24/19 15:36,"532 Washington St, San Francisco, CA 94016" +259548,Apple Airpods Headphones,1,150,09/08/19 13:30,"30 South St, Portland, OR 97035" +259549,Apple Airpods Headphones,1,150,09/22/19 18:16,"268 Chestnut St, Seattle, WA 98101" +259550,AA Batteries (4-pack),1,3.84,09/02/19 19:50,"263 Park St, Seattle, WA 98101" +259551,AA Batteries (4-pack),2,3.84,09/30/19 23:35,"378 5th St, San Francisco, CA 94016" +259552,Lightning Charging Cable,1,14.95,09/06/19 13:03,"233 12th St, Atlanta, GA 30301" +259553,AA Batteries (4-pack),1,3.84,09/06/19 13:59,"722 South St, New York City, NY 10001" +259554,Apple Airpods Headphones,1,150,09/07/19 02:49,"798 Dogwood St, Boston, MA 02215" +259555,AA Batteries (4-pack),1,3.84,09/15/19 09:55,"865 Lake St, Atlanta, GA 30301" +259556,Wired Headphones,1,11.99,09/18/19 08:35,"11 Highland St, Portland, OR 97035" +259557,Apple Airpods Headphones,1,150,09/25/19 22:27,"147 Dogwood St, Seattle, WA 98101" +259558,AAA Batteries (4-pack),3,2.99,09/21/19 06:29,"470 Jefferson St, Seattle, WA 98101" +259559,AA Batteries (4-pack),1,3.84,09/11/19 15:41,"896 Maple St, Dallas, TX 75001" +259560,AAA Batteries (4-pack),1,2.99,09/25/19 11:07,"153 Cedar St, Los Angeles, CA 90001" +259561,AA Batteries (4-pack),1,3.84,09/04/19 11:42,"937 Lake St, Atlanta, GA 30301" +259562,ThinkPad Laptop,1,999.99,09/10/19 10:52,"279 Lakeview St, Boston, MA 02215" +259563,USB-C Charging Cable,1,11.95,09/11/19 18:07,"101 Adams St, Seattle, WA 98101" +259564,Bose SoundSport Headphones,1,99.99,09/12/19 22:09,"972 Maple St, Los Angeles, CA 90001" +259565,Bose SoundSport Headphones,1,99.99,09/01/19 21:13,"146 Pine St, San Francisco, CA 94016" +259566,27in 4K Gaming Monitor,1,389.99,09/10/19 14:27,"972 Maple St, Dallas, TX 75001" +259567,Lightning Charging Cable,1,14.95,09/15/19 11:49,"763 9th St, Atlanta, GA 30301" +259568,iPhone,1,700,09/11/19 21:08,"106 Main St, Seattle, WA 98101" +259569,Wired Headphones,1,11.99,09/14/19 11:24,"186 Wilson St, Atlanta, GA 30301" +259570,AAA Batteries (4-pack),1,2.99,09/04/19 10:42,"577 Park St, Portland, OR 97035" +259571,Vareebadd Phone,1,400,09/14/19 18:39,"155 West St, Dallas, TX 75001" +259572,AA Batteries (4-pack),2,3.84,09/27/19 20:21,"732 1st St, Atlanta, GA 30301" +259573,AA Batteries (4-pack),3,3.84,09/17/19 20:22,"104 Church St, Los Angeles, CA 90001" +259574,AA Batteries (4-pack),1,3.84,09/09/19 21:31,"481 Walnut St, Los Angeles, CA 90001" +259575,Apple Airpods Headphones,1,150,09/05/19 21:27,"883 Adams St, San Francisco, CA 94016" +,,,,, +259576,Bose SoundSport Headphones,1,99.99,09/29/19 12:42,"12 Main St, Seattle, WA 98101" +259577,AAA Batteries (4-pack),1,2.99,09/13/19 22:24,"849 12th St, San Francisco, CA 94016" +259578,Lightning Charging Cable,1,14.95,09/08/19 10:41,"797 Wilson St, Los Angeles, CA 90001" +259579,Lightning Charging Cable,1,14.95,09/15/19 17:29,"492 Madison St, New York City, NY 10001" +259580,Lightning Charging Cable,1,14.95,09/30/19 09:02,"901 Spruce St, San Francisco, CA 94016" +259581,Lightning Charging Cable,1,14.95,09/16/19 15:58,"813 Jefferson St, Portland, ME 04101" +259582,iPhone,1,700,09/19/19 22:24,"145 8th St, New York City, NY 10001" +259583,iPhone,1,700,09/21/19 10:55,"413 Washington St, New York City, NY 10001" +259584,Wired Headphones,1,11.99,09/06/19 23:05,"553 8th St, Dallas, TX 75001" +259585,Apple Airpods Headphones,1,150,09/15/19 07:55,"178 Adams St, Los Angeles, CA 90001" +259586,Bose SoundSport Headphones,1,99.99,09/02/19 19:51,"585 Church St, Atlanta, GA 30301" +259587,ThinkPad Laptop,1,999.99,09/08/19 10:05,"749 Wilson St, Atlanta, GA 30301" +259588,Lightning Charging Cable,1,14.95,09/11/19 13:27,"581 Meadow St, Boston, MA 02215" +259589,USB-C Charging Cable,1,11.95,09/19/19 13:55,"956 Forest St, Austin, TX 73301" +259590,ThinkPad Laptop,1,999.99,09/06/19 18:53,"305 13th St, Portland, OR 97035" +259591,USB-C Charging Cable,1,11.95,09/05/19 10:25,"232 Maple St, Seattle, WA 98101" +259592,LG Dryer,1,600.0,09/29/19 07:43,"497 Lakeview St, Boston, MA 02215" +259593,iPhone,1,700,09/12/19 13:15,"476 Cherry St, Boston, MA 02215" +259594,Wired Headphones,1,11.99,09/30/19 08:54,"299 10th St, Dallas, TX 75001" +259595,AAA Batteries (4-pack),1,2.99,09/13/19 11:58,"23 Johnson St, San Francisco, CA 94016" +259596,Apple Airpods Headphones,1,150,09/03/19 15:16,"163 South St, Los Angeles, CA 90001" +259597,USB-C Charging Cable,1,11.95,09/16/19 07:00,"102 Hickory St, Dallas, TX 75001" +259598,27in FHD Monitor,1,149.99,09/22/19 11:08,"558 Wilson St, Dallas, TX 75001" +259599,Apple Airpods Headphones,1,150,09/25/19 11:02,"286 Meadow St, San Francisco, CA 94016" +259600,AAA Batteries (4-pack),2,2.99,09/20/19 17:29,"241 Washington St, Atlanta, GA 30301" +259601,Google Phone,1,600,09/25/19 11:17,"776 5th St, Portland, OR 97035" +259602,Wired Headphones,1,11.99,09/27/19 07:19,"424 Sunset St, Boston, MA 02215" +259603,AAA Batteries (4-pack),1,2.99,09/10/19 23:31,"474 9th St, Los Angeles, CA 90001" +259604,LG Dryer,1,600.0,09/02/19 23:17,"762 6th St, San Francisco, CA 94016" +259605,AA Batteries (4-pack),2,3.84,09/10/19 07:48,"24 1st St, Boston, MA 02215" +259605,ThinkPad Laptop,1,999.99,09/10/19 07:48,"24 1st St, Boston, MA 02215" +259606,AAA Batteries (4-pack),2,2.99,09/27/19 10:42,"863 Center St, San Francisco, CA 94016" +259607,AAA Batteries (4-pack),4,2.99,09/14/19 12:13,"367 River St, New York City, NY 10001" +259608,Wired Headphones,1,11.99,09/26/19 23:51,"918 Lake St, Boston, MA 02215" +259609,Macbook Pro Laptop,1,1700,09/24/19 14:55,"463 Maple St, San Francisco, CA 94016" +259610,Lightning Charging Cable,1,14.95,09/28/19 18:12,"920 North St, Seattle, WA 98101" +259611,Apple Airpods Headphones,1,150,09/01/19 19:13,"535 West St, New York City, NY 10001" +259612,AA Batteries (4-pack),2,3.84,10/01/19 00:03,"58 Willow St, San Francisco, CA 94016" +259613,USB-C Charging Cable,1,11.95,09/09/19 11:24,"186 Cherry St, New York City, NY 10001" +259614,AAA Batteries (4-pack),3,2.99,09/16/19 11:36,"884 South St, Los Angeles, CA 90001" +259615,USB-C Charging Cable,1,11.95,09/28/19 13:53,"472 14th St, New York City, NY 10001" +259616,Flatscreen TV,1,300,09/30/19 14:33,"805 1st St, Seattle, WA 98101" +259617,20in Monitor,1,109.99,10/01/19 01:31,"336 Maple St, Austin, TX 73301" +259618,Wired Headphones,1,11.99,09/05/19 21:03,"316 4th St, Dallas, TX 75001" +259619,AA Batteries (4-pack),1,3.84,09/06/19 04:19,"240 Chestnut St, San Francisco, CA 94016" +259620,20in Monitor,1,109.99,09/13/19 17:24,"862 Church St, Dallas, TX 75001" +259621,AAA Batteries (4-pack),2,2.99,09/15/19 14:40,"728 Dogwood St, Atlanta, GA 30301" +259622,20in Monitor,1,109.99,09/10/19 12:37,"754 Center St, New York City, NY 10001" +259623,AA Batteries (4-pack),1,3.84,09/21/19 11:51,"68 Willow St, San Francisco, CA 94016" +259624,34in Ultrawide Monitor,1,379.99,09/17/19 09:42,"482 Park St, New York City, NY 10001" +259625,Apple Airpods Headphones,1,150,09/30/19 12:02,"738 Maple St, Seattle, WA 98101" +259626,34in Ultrawide Monitor,1,379.99,09/11/19 19:15,"200 Walnut St, Portland, OR 97035" +259627,27in 4K Gaming Monitor,1,389.99,09/12/19 11:05,"116 Jefferson St, San Francisco, CA 94016" +259628,Lightning Charging Cable,1,14.95,09/13/19 19:46,"478 Johnson St, San Francisco, CA 94016" +259629,Macbook Pro Laptop,1,1700,09/22/19 15:51,"501 West St, New York City, NY 10001" +259630,Lightning Charging Cable,1,14.95,09/07/19 09:26,"163 5th St, New York City, NY 10001" +259631,20in Monitor,1,109.99,09/01/19 16:52,"713 7th St, San Francisco, CA 94016" +259632,Bose SoundSport Headphones,1,99.99,09/11/19 09:20,"882 13th St, Los Angeles, CA 90001" +259633,Flatscreen TV,1,300,09/09/19 10:18,"939 Jefferson St, Austin, TX 73301" +259634,AA Batteries (4-pack),1,3.84,10/01/19 00:18,"842 1st St, San Francisco, CA 94016" +259635,Lightning Charging Cable,1,14.95,09/14/19 13:42,"798 Cedar St, New York City, NY 10001" +259636,Vareebadd Phone,1,400,09/09/19 14:05,"752 South St, New York City, NY 10001" +259636,USB-C Charging Cable,1,11.95,09/09/19 14:05,"752 South St, New York City, NY 10001" +259637,Apple Airpods Headphones,1,150,09/14/19 21:54,"479 Lincoln St, Boston, MA 02215" +259638,Lightning Charging Cable,1,14.95,09/08/19 10:25,"101 West St, Austin, TX 73301" +259639,AAA Batteries (4-pack),1,2.99,09/06/19 20:49,"663 Center St, San Francisco, CA 94016" +259640,Apple Airpods Headphones,1,150,09/19/19 20:40,"394 Cedar St, Austin, TX 73301" +259641,Lightning Charging Cable,2,14.95,09/12/19 16:14,"843 Adams St, Dallas, TX 75001" +259642,Lightning Charging Cable,1,14.95,09/01/19 14:50,"181 Ridge St, Los Angeles, CA 90001" +259643,USB-C Charging Cable,1,11.95,09/12/19 19:33,"876 Washington St, Seattle, WA 98101" +259644,Wired Headphones,1,11.99,09/07/19 11:17,"839 12th St, San Francisco, CA 94016" +259645,Flatscreen TV,1,300,09/04/19 09:52,"452 Highland St, Seattle, WA 98101" +259646,Bose SoundSport Headphones,1,99.99,09/18/19 19:23,"824 Wilson St, New York City, NY 10001" +259647,Lightning Charging Cable,1,14.95,09/22/19 10:34,"330 5th St, Portland, OR 97035" +259648,Lightning Charging Cable,1,14.95,09/12/19 13:39,"5 12th St, Boston, MA 02215" +259649,Apple Airpods Headphones,1,150,09/16/19 10:37,"441 11th St, New York City, NY 10001" +259650,USB-C Charging Cable,1,11.95,09/05/19 18:27,"576 Highland St, Seattle, WA 98101" +259651,Macbook Pro Laptop,1,1700,09/08/19 17:14,"72 Jackson St, New York City, NY 10001" +259652,Lightning Charging Cable,1,14.95,09/08/19 17:18,"670 Forest St, Austin, TX 73301" +259653,AAA Batteries (4-pack),2,2.99,09/30/19 15:03,"671 Johnson St, Austin, TX 73301" +259654,Apple Airpods Headphones,1,150,09/27/19 10:05,"221 Lincoln St, San Francisco, CA 94016" +259655,iPhone,1,700,09/07/19 10:30,"623 North St, Los Angeles, CA 90001" +259656,AAA Batteries (4-pack),4,2.99,09/20/19 06:35,"244 Dogwood St, Boston, MA 02215" +259657,Lightning Charging Cable,1,14.95,09/25/19 11:11,"339 2nd St, San Francisco, CA 94016" +259658,Lightning Charging Cable,1,14.95,09/03/19 19:29,"289 Madison St, Los Angeles, CA 90001" +259659,Macbook Pro Laptop,1,1700,09/19/19 11:02,"797 Spruce St, Los Angeles, CA 90001" +259660,AAA Batteries (4-pack),1,2.99,09/11/19 20:56,"832 1st St, New York City, NY 10001" +259661,Lightning Charging Cable,1,14.95,09/27/19 19:37,"614 Elm St, San Francisco, CA 94016" +259662,AA Batteries (4-pack),1,3.84,09/17/19 19:48,"639 13th St, New York City, NY 10001" +259663,AAA Batteries (4-pack),2,2.99,09/28/19 13:30,"211 Park St, New York City, NY 10001" +259664,Lightning Charging Cable,1,14.95,09/07/19 08:08,"16 Cherry St, Austin, TX 73301" +259665,USB-C Charging Cable,1,11.95,09/30/19 23:24,"22 Center St, Austin, TX 73301" +259666,Wired Headphones,1,11.99,09/05/19 13:51,"542 Walnut St, San Francisco, CA 94016" +259667,USB-C Charging Cable,1,11.95,09/30/19 16:15,"799 11th St, Los Angeles, CA 90001" +259668,AA Batteries (4-pack),1,3.84,09/19/19 08:35,"857 Dogwood St, San Francisco, CA 94016" +259669,Bose SoundSport Headphones,1,99.99,09/29/19 16:24,"34 5th St, Los Angeles, CA 90001" +259670,Apple Airpods Headphones,1,150,09/09/19 15:48,"385 7th St, New York City, NY 10001" +259671,Wired Headphones,1,11.99,09/01/19 08:05,"836 14th St, Seattle, WA 98101" +259672,USB-C Charging Cable,1,11.95,09/01/19 12:48,"565 Cedar St, Dallas, TX 75001" +259673,iPhone,1,700,09/04/19 21:56,"511 14th St, San Francisco, CA 94016" +259674,AAA Batteries (4-pack),1,2.99,09/24/19 13:15,"227 Main St, Atlanta, GA 30301" +259675,Wired Headphones,1,11.99,09/22/19 01:10,"237 Jackson St, Los Angeles, CA 90001" +259676,Google Phone,1,600,09/15/19 18:14,"248 14th St, Boston, MA 02215" +259677,20in Monitor,1,109.99,09/25/19 15:59,"649 Meadow St, Portland, OR 97035" +259678,Flatscreen TV,1,300,09/05/19 22:34,"482 Pine St, Atlanta, GA 30301" +259679,AAA Batteries (4-pack),2,2.99,09/21/19 10:10,"497 South St, Dallas, TX 75001" +259680,USB-C Charging Cable,1,11.95,09/13/19 18:34,"918 7th St, Dallas, TX 75001" +259681,27in FHD Monitor,1,149.99,09/15/19 10:18,"939 Willow St, San Francisco, CA 94016" +259682,AAA Batteries (4-pack),1,2.99,09/26/19 18:33,"790 9th St, Portland, OR 97035" +259683,USB-C Charging Cable,1,11.95,09/06/19 17:39,"591 5th St, Los Angeles, CA 90001" +259684,ThinkPad Laptop,1,999.99,09/22/19 15:52,"69 7th St, Los Angeles, CA 90001" +259685,AA Batteries (4-pack),2,3.84,09/12/19 09:58,"303 8th St, Atlanta, GA 30301" +259686,AA Batteries (4-pack),1,3.84,09/19/19 21:13,"684 Ridge St, San Francisco, CA 94016" +259687,ThinkPad Laptop,1,999.99,09/18/19 23:29,"194 River St, Portland, OR 97035" +259688,Flatscreen TV,1,300,09/08/19 12:25,"236 Willow St, San Francisco, CA 94016" +259689,Wired Headphones,1,11.99,09/30/19 15:29,"684 Hickory St, Boston, MA 02215" +259690,USB-C Charging Cable,1,11.95,09/12/19 09:26,"586 Chestnut St, Los Angeles, CA 90001" +259691,Lightning Charging Cable,1,14.95,09/25/19 12:42,"777 11th St, Seattle, WA 98101" +259692,AA Batteries (4-pack),1,3.84,09/07/19 16:16,"248 Forest St, New York City, NY 10001" +259693,AAA Batteries (4-pack),1,2.99,09/18/19 13:52,"397 14th St, New York City, NY 10001" +259694,Google Phone,1,600,09/25/19 21:47,"158 Hickory St, Seattle, WA 98101" +259695,20in Monitor,1,109.99,09/09/19 18:27,"701 South St, San Francisco, CA 94016" +259696,Wired Headphones,2,11.99,09/11/19 18:27,"811 13th St, San Francisco, CA 94016" +259697,27in FHD Monitor,1,149.99,09/25/19 19:54,"925 Cedar St, Portland, OR 97035" +259698,Apple Airpods Headphones,1,150,09/23/19 15:03,"292 Jefferson St, San Francisco, CA 94016" +259699,AA Batteries (4-pack),1,3.84,09/17/19 15:16,"887 River St, Seattle, WA 98101" +259700,AAA Batteries (4-pack),5,2.99,09/11/19 19:07,"160 11th St, San Francisco, CA 94016" +259701,USB-C Charging Cable,1,11.95,09/19/19 18:49,"29 11th St, New York City, NY 10001" +259702,Macbook Pro Laptop,1,1700,09/01/19 20:25,"757 13th St, Atlanta, GA 30301" +259703,USB-C Charging Cable,2,11.95,09/24/19 23:00,"77 West St, San Francisco, CA 94016" +259704,iPhone,1,700,09/11/19 21:20,"571 Adams St, New York City, NY 10001" +259705,27in 4K Gaming Monitor,1,389.99,09/16/19 13:08,"953 North St, Seattle, WA 98101" +259706,AAA Batteries (4-pack),1,2.99,09/28/19 22:44,"451 Park St, Los Angeles, CA 90001" +259707,iPhone,1,700,09/18/19 22:16,"167 Dogwood St, Boston, MA 02215" +259707,Lightning Charging Cable,1,14.95,09/18/19 22:16,"167 Dogwood St, Boston, MA 02215" +259708,27in FHD Monitor,1,149.99,09/25/19 22:40,"497 Willow St, Portland, OR 97035" +259709,iPhone,1,700,09/29/19 19:22,"227 Meadow St, San Francisco, CA 94016" +259710,AAA Batteries (4-pack),1,2.99,09/30/19 09:56,"907 11th St, Los Angeles, CA 90001" +259711,27in 4K Gaming Monitor,1,389.99,09/28/19 21:04,"662 Jackson St, Los Angeles, CA 90001" +259712,27in 4K Gaming Monitor,1,389.99,09/21/19 14:00,"572 Spruce St, Atlanta, GA 30301" +259713,Apple Airpods Headphones,1,150,09/20/19 12:56,"935 Church St, Atlanta, GA 30301" +259714,Apple Airpods Headphones,1,150,09/10/19 15:36,"846 Cherry St, New York City, NY 10001" +259715,AA Batteries (4-pack),2,3.84,09/08/19 10:43,"611 North St, Los Angeles, CA 90001" +259716,AA Batteries (4-pack),1,3.84,09/06/19 00:21,"979 Spruce St, Portland, OR 97035" +259717,Lightning Charging Cable,1,14.95,09/30/19 15:06,"513 Pine St, Atlanta, GA 30301" +259718,AAA Batteries (4-pack),3,2.99,09/05/19 11:55,"321 Hickory St, Los Angeles, CA 90001" +259719,Lightning Charging Cable,1,14.95,09/25/19 17:38,"657 Jefferson St, Portland, OR 97035" +259720,AAA Batteries (4-pack),2,2.99,09/23/19 19:42,"163 Meadow St, Dallas, TX 75001" +259721,Apple Airpods Headphones,1,150,09/08/19 23:58,"241 Sunset St, Portland, OR 97035" +259722,AAA Batteries (4-pack),1,2.99,09/27/19 14:52,"595 South St, New York City, NY 10001" +259723,AAA Batteries (4-pack),1,2.99,09/06/19 20:12,"567 8th St, San Francisco, CA 94016" +259724,Lightning Charging Cable,1,14.95,09/27/19 21:56,"365 Sunset St, Los Angeles, CA 90001" +259725,27in FHD Monitor,1,149.99,09/21/19 10:30,"783 Lincoln St, New York City, NY 10001" +259726,USB-C Charging Cable,1,11.95,09/06/19 14:09,"591 North St, San Francisco, CA 94016" +259727,USB-C Charging Cable,1,11.95,09/28/19 13:23,"981 West St, New York City, NY 10001" +259728,20in Monitor,1,109.99,09/22/19 18:58,"324 Cherry St, Boston, MA 02215" +259729,Wired Headphones,1,11.99,09/11/19 10:31,"679 Church St, San Francisco, CA 94016" +259730,Wired Headphones,1,11.99,09/24/19 17:27,"714 Cedar St, New York City, NY 10001" +259731,Wired Headphones,1,11.99,09/20/19 17:04,"912 Cedar St, San Francisco, CA 94016" +259732,Vareebadd Phone,1,400,09/27/19 21:33,"249 Hill St, Seattle, WA 98101" +259733,ThinkPad Laptop,1,999.99,09/08/19 11:43,"529 Dogwood St, Los Angeles, CA 90001" +259734,AAA Batteries (4-pack),1,2.99,09/16/19 14:42,"402 Hickory St, New York City, NY 10001" +259735,Bose SoundSport Headphones,1,99.99,09/12/19 12:42,"46 Park St, Austin, TX 73301" +259736,USB-C Charging Cable,1,11.95,09/22/19 17:14,"844 Hickory St, Portland, OR 97035" +259737,AAA Batteries (4-pack),2,2.99,09/16/19 15:05,"929 Forest St, San Francisco, CA 94016" +259738,AA Batteries (4-pack),2,3.84,09/02/19 12:27,"67 Meadow St, Seattle, WA 98101" +259739,27in FHD Monitor,1,149.99,09/09/19 06:30,"829 Meadow St, San Francisco, CA 94016" +259740,Apple Airpods Headphones,1,150,09/08/19 13:35,"374 Maple St, San Francisco, CA 94016" +259741,iPhone,1,700,09/24/19 13:34,"272 Park St, San Francisco, CA 94016" +259742,AA Batteries (4-pack),1,3.84,09/03/19 23:22,"877 Johnson St, Dallas, TX 75001" +259743,AA Batteries (4-pack),1,3.84,09/02/19 19:44,"335 11th St, San Francisco, CA 94016" +259744,Bose SoundSport Headphones,1,99.99,09/11/19 15:54,"824 Main St, New York City, NY 10001" +259745,USB-C Charging Cable,1,11.95,09/22/19 12:55,"765 Walnut St, San Francisco, CA 94016" +259746,USB-C Charging Cable,1,11.95,09/22/19 17:46,"818 1st St, San Francisco, CA 94016" +259747,27in 4K Gaming Monitor,1,389.99,09/25/19 10:22,"342 Willow St, Boston, MA 02215" +259748,Apple Airpods Headphones,1,150,09/08/19 18:22,"801 Lakeview St, San Francisco, CA 94016" +259749,USB-C Charging Cable,1,11.95,09/06/19 13:33,"854 12th St, New York City, NY 10001" +259750,20in Monitor,1,109.99,09/07/19 13:21,"772 Lake St, Portland, OR 97035" +259751,Lightning Charging Cable,1,14.95,09/14/19 13:56,"741 North St, Dallas, TX 75001" +259752,27in 4K Gaming Monitor,1,389.99,09/09/19 16:57,"494 Madison St, Portland, OR 97035" +259753,USB-C Charging Cable,1,11.95,09/16/19 00:42,"248 1st St, Seattle, WA 98101" +259754,Wired Headphones,1,11.99,09/06/19 01:20,"949 10th St, New York City, NY 10001" +259755,USB-C Charging Cable,1,11.95,09/11/19 17:16,"219 Highland St, Boston, MA 02215" +259756,AA Batteries (4-pack),1,3.84,09/13/19 20:46,"587 Willow St, San Francisco, CA 94016" +259757,AA Batteries (4-pack),1,3.84,09/10/19 13:55,"956 10th St, Dallas, TX 75001" +259758,Lightning Charging Cable,1,14.95,09/24/19 17:28,"364 Willow St, Los Angeles, CA 90001" +259759,Flatscreen TV,1,300,09/25/19 17:49,"774 Adams St, San Francisco, CA 94016" +259760,Bose SoundSport Headphones,1,99.99,09/07/19 13:12,"218 Johnson St, Los Angeles, CA 90001" +259761,Bose SoundSport Headphones,1,99.99,09/25/19 05:49,"988 13th St, Dallas, TX 75001" +259762,Macbook Pro Laptop,1,1700,09/26/19 13:14,"497 Center St, San Francisco, CA 94016" +259763,USB-C Charging Cable,1,11.95,09/19/19 16:01,"753 12th St, Los Angeles, CA 90001" +259764,Apple Airpods Headphones,1,150,09/17/19 02:52,"817 12th St, Austin, TX 73301" +259765,USB-C Charging Cable,1,11.95,09/26/19 21:37,"397 Chestnut St, Portland, ME 04101" +259766,27in FHD Monitor,1,149.99,09/01/19 20:35,"200 Highland St, Portland, ME 04101" +259767,USB-C Charging Cable,1,11.95,09/15/19 12:34,"120 West St, Los Angeles, CA 90001" +259768,Bose SoundSport Headphones,1,99.99,09/16/19 05:23,"814 5th St, Dallas, TX 75001" +259769,Bose SoundSport Headphones,1,99.99,09/03/19 20:58,"737 13th St, Dallas, TX 75001" +259770,Bose SoundSport Headphones,1,99.99,09/28/19 11:28,"271 Walnut St, Atlanta, GA 30301" +259771,USB-C Charging Cable,1,11.95,09/26/19 05:47,"929 9th St, San Francisco, CA 94016" +259772,Vareebadd Phone,1,400,09/04/19 16:58,"297 13th St, New York City, NY 10001" +259773,AAA Batteries (4-pack),2,2.99,09/22/19 12:49,"28 Ridge St, Portland, ME 04101" +259774,Lightning Charging Cable,1,14.95,09/14/19 17:33,"129 Church St, Boston, MA 02215" +259775,27in 4K Gaming Monitor,1,389.99,09/01/19 20:05,"709 9th St, Los Angeles, CA 90001" +259776,Wired Headphones,1,11.99,09/23/19 13:56,"643 South St, Los Angeles, CA 90001" +259777,Wired Headphones,1,11.99,09/13/19 12:36,"228 Willow St, Portland, OR 97035" +259778,USB-C Charging Cable,1,11.95,09/20/19 18:16,"600 Wilson St, Dallas, TX 75001" +259779,LG Washing Machine,1,600.0,09/16/19 10:17,"537 Center St, Boston, MA 02215" +259780,27in FHD Monitor,1,149.99,09/27/19 18:26,"719 Hill St, San Francisco, CA 94016" +259781,27in 4K Gaming Monitor,1,389.99,09/09/19 22:51,"81 6th St, San Francisco, CA 94016" +259782,Apple Airpods Headphones,1,150,09/09/19 13:01,"232 Main St, San Francisco, CA 94016" +259783,Lightning Charging Cable,1,14.95,09/04/19 13:32,"20 11th St, Dallas, TX 75001" +259784,Bose SoundSport Headphones,1,99.99,09/24/19 18:24,"974 4th St, New York City, NY 10001" +259785,USB-C Charging Cable,1,11.95,09/30/19 20:29,"174 Sunset St, Portland, ME 04101" +259786,Apple Airpods Headphones,1,150,09/16/19 18:15,"866 Highland St, San Francisco, CA 94016" +259787,20in Monitor,1,109.99,09/01/19 22:09,"579 7th St, Portland, ME 04101" +259788,27in 4K Gaming Monitor,1,389.99,09/26/19 21:33,"3 Spruce St, New York City, NY 10001" +259789,Wired Headphones,1,11.99,09/15/19 12:27,"751 4th St, New York City, NY 10001" +259790,Wired Headphones,1,11.99,09/10/19 02:09,"511 6th St, Boston, MA 02215" +259791,USB-C Charging Cable,1,11.95,09/27/19 21:02,"886 River St, Portland, OR 97035" +259792,34in Ultrawide Monitor,1,379.99,09/06/19 23:48,"566 Lincoln St, Austin, TX 73301" +259793,Bose SoundSport Headphones,1,99.99,09/11/19 17:48,"28 Walnut St, New York City, NY 10001" +259794,Wired Headphones,1,11.99,09/24/19 12:20,"217 7th St, San Francisco, CA 94016" +259794,AAA Batteries (4-pack),1,2.99,09/24/19 12:20,"217 7th St, San Francisco, CA 94016" +259795,AA Batteries (4-pack),2,3.84,09/06/19 08:47,"932 Lakeview St, San Francisco, CA 94016" +259796,Google Phone,1,600,09/25/19 09:04,"786 12th St, San Francisco, CA 94016" +259796,USB-C Charging Cable,1,11.95,09/25/19 09:04,"786 12th St, San Francisco, CA 94016" +259797,AAA Batteries (4-pack),2,2.99,09/17/19 10:32,"757 8th St, San Francisco, CA 94016" +259798,Lightning Charging Cable,1,14.95,09/23/19 08:28,"707 Hickory St, Boston, MA 02215" +259799,27in 4K Gaming Monitor,1,389.99,09/02/19 16:03,"4 Forest St, San Francisco, CA 94016" +259800,Vareebadd Phone,1,400,09/24/19 13:52,"373 5th St, Los Angeles, CA 90001" +259801,Bose SoundSport Headphones,1,99.99,09/09/19 09:58,"108 Cedar St, Boston, MA 02215" +259802,AA Batteries (4-pack),1,3.84,09/14/19 18:53,"99 14th St, Austin, TX 73301" +259803,USB-C Charging Cable,1,11.95,09/01/19 19:00,"544 9th St, Atlanta, GA 30301" +259804,Google Phone,1,600,09/18/19 19:06,"23 Meadow St, Atlanta, GA 30301" +259805,Lightning Charging Cable,1,14.95,09/27/19 01:53,"132 9th St, Atlanta, GA 30301" +259806,AAA Batteries (4-pack),1,2.99,09/21/19 21:24,"157 Ridge St, Los Angeles, CA 90001" +259807,AAA Batteries (4-pack),1,2.99,09/02/19 07:45,"987 Chestnut St, Boston, MA 02215" +259808,AA Batteries (4-pack),1,3.84,09/21/19 14:15,"283 Ridge St, San Francisco, CA 94016" +259809,Google Phone,1,600,09/22/19 18:37,"211 Chestnut St, Dallas, TX 75001" +259809,Bose SoundSport Headphones,1,99.99,09/22/19 18:37,"211 Chestnut St, Dallas, TX 75001" +259810,Wired Headphones,2,11.99,09/25/19 21:35,"744 Chestnut St, Boston, MA 02215" +259810,27in FHD Monitor,1,149.99,09/25/19 21:35,"744 Chestnut St, Boston, MA 02215" +259811,Wired Headphones,1,11.99,09/14/19 13:08,"336 11th St, San Francisco, CA 94016" +259812,Lightning Charging Cable,1,14.95,09/24/19 15:50,"111 West St, Seattle, WA 98101" +259813,USB-C Charging Cable,2,11.95,09/04/19 21:24,"287 Elm St, San Francisco, CA 94016" +259814,Flatscreen TV,1,300,09/28/19 17:53,"490 Maple St, Los Angeles, CA 90001" +259815,Apple Airpods Headphones,1,150,09/08/19 22:47,"370 Hill St, Atlanta, GA 30301" +259816,Bose SoundSport Headphones,1,99.99,09/08/19 19:16,"449 Forest St, Portland, ME 04101" +259817,Wired Headphones,2,11.99,09/06/19 13:43,"272 Forest St, San Francisco, CA 94016" +259818,27in 4K Gaming Monitor,1,389.99,09/22/19 08:22,"810 South St, San Francisco, CA 94016" +259819,27in FHD Monitor,1,149.99,09/15/19 13:57,"538 Adams St, Dallas, TX 75001" +259820,USB-C Charging Cable,1,11.95,09/30/19 21:51,"354 10th St, New York City, NY 10001" +259821,20in Monitor,1,109.99,09/19/19 21:27,"430 Sunset St, Dallas, TX 75001" +259822,AA Batteries (4-pack),1,3.84,09/24/19 09:32,"635 Lakeview St, San Francisco, CA 94016" +259823,iPhone,1,700,09/28/19 22:50,"69 Maple St, Atlanta, GA 30301" +259824,Apple Airpods Headphones,1,150,09/05/19 12:49,"502 11th St, Los Angeles, CA 90001" +259825,34in Ultrawide Monitor,1,379.99,09/11/19 19:14,"619 Johnson St, Atlanta, GA 30301" +259826,Lightning Charging Cable,2,14.95,09/24/19 19:17,"679 Ridge St, Atlanta, GA 30301" +259827,Wired Headphones,1,11.99,09/01/19 15:47,"506 Johnson St, Los Angeles, CA 90001" +259828,Wired Headphones,1,11.99,09/21/19 14:07,"264 Forest St, Los Angeles, CA 90001" +259829,Wired Headphones,1,11.99,09/11/19 07:14,"762 5th St, New York City, NY 10001" +259830,USB-C Charging Cable,1,11.95,09/28/19 11:58,"853 Washington St, Dallas, TX 75001" +259831,Macbook Pro Laptop,1,1700,09/13/19 13:45,"892 13th St, Boston, MA 02215" +259832,34in Ultrawide Monitor,1,379.99,09/16/19 00:34,"799 Chestnut St, Boston, MA 02215" +259832,Wired Headphones,1,11.99,09/16/19 00:34,"799 Chestnut St, Boston, MA 02215" +259833,AAA Batteries (4-pack),1,2.99,09/11/19 12:40,"233 Hickory St, Portland, ME 04101" +259834,Wired Headphones,1,11.99,09/13/19 20:19,"260 Forest St, Boston, MA 02215" +259835,Wired Headphones,1,11.99,09/24/19 19:13,"581 Jackson St, Los Angeles, CA 90001" +259836,USB-C Charging Cable,1,11.95,09/14/19 15:15,"815 Johnson St, San Francisco, CA 94016" +259837,Wired Headphones,1,11.99,09/06/19 09:45,"315 Forest St, Austin, TX 73301" +259838,USB-C Charging Cable,2,11.95,09/09/19 10:19,"536 Hickory St, Boston, MA 02215" +259839,AAA Batteries (4-pack),1,2.99,09/29/19 22:34,"638 Washington St, Los Angeles, CA 90001" +259840,USB-C Charging Cable,1,11.95,09/11/19 17:32,"911 Park St, Los Angeles, CA 90001" +259841,AA Batteries (4-pack),1,3.84,09/12/19 14:21,"944 6th St, Dallas, TX 75001" +259841,AA Batteries (4-pack),1,3.84,09/12/19 14:21,"944 6th St, Dallas, TX 75001" +259842,Apple Airpods Headphones,1,150,09/03/19 18:11,"176 8th St, New York City, NY 10001" +259843,iPhone,1,700,09/21/19 15:41,"526 Church St, Seattle, WA 98101" +259843,Apple Airpods Headphones,1,150,09/21/19 15:41,"526 Church St, Seattle, WA 98101" +259843,Wired Headphones,1,11.99,09/21/19 15:41,"526 Church St, Seattle, WA 98101" +259844,USB-C Charging Cable,1,11.95,09/23/19 12:50,"692 1st St, Los Angeles, CA 90001" +259845,34in Ultrawide Monitor,1,379.99,09/01/19 16:07,"982 South St, Dallas, TX 75001" +259846,27in FHD Monitor,1,149.99,09/14/19 11:50,"413 Sunset St, Los Angeles, CA 90001" +259847,Apple Airpods Headphones,1,150,09/19/19 14:09,"663 North St, Austin, TX 73301" +259848,Wired Headphones,1,11.99,09/01/19 11:14,"416 Forest St, San Francisco, CA 94016" +259849,Wired Headphones,1,11.99,09/20/19 18:46,"586 6th St, Boston, MA 02215" +259850,Lightning Charging Cable,1,14.95,09/18/19 10:54,"351 Ridge St, San Francisco, CA 94016" +259851,Bose SoundSport Headphones,1,99.99,09/26/19 13:40,"586 Cherry St, Los Angeles, CA 90001" +259852,USB-C Charging Cable,1,11.95,09/09/19 10:28,"990 Lakeview St, New York City, NY 10001" +259853,Google Phone,1,600,09/12/19 20:09,"90 Hill St, Seattle, WA 98101" +259854,Google Phone,1,600,09/26/19 19:10,"573 Sunset St, Boston, MA 02215" +259854,USB-C Charging Cable,2,11.95,09/26/19 19:10,"573 Sunset St, Boston, MA 02215" +259855,Wired Headphones,1,11.99,09/04/19 16:01,"5 Hickory St, Los Angeles, CA 90001" +259856,AAA Batteries (4-pack),1,2.99,09/22/19 09:41,"914 Church St, San Francisco, CA 94016" +259857,27in FHD Monitor,1,149.99,09/22/19 17:41,"689 Hickory St, Seattle, WA 98101" +259858,27in 4K Gaming Monitor,1,389.99,09/12/19 19:27,"34 Cherry St, San Francisco, CA 94016" +259859,AAA Batteries (4-pack),1,2.99,09/02/19 21:35,"602 12th St, New York City, NY 10001" +259860,AAA Batteries (4-pack),1,2.99,09/29/19 06:28,"528 Sunset St, San Francisco, CA 94016" +259861,34in Ultrawide Monitor,1,379.99,09/12/19 11:00,"326 Highland St, New York City, NY 10001" +259862,Lightning Charging Cable,1,14.95,09/04/19 19:26,"292 Sunset St, Austin, TX 73301" +259863,Macbook Pro Laptop,1,1700,09/22/19 23:47,"298 Ridge St, New York City, NY 10001" +259864,27in FHD Monitor,1,149.99,09/23/19 13:09,"154 Sunset St, San Francisco, CA 94016" +259865,Apple Airpods Headphones,1,150,09/21/19 22:52,"800 10th St, New York City, NY 10001" +259866,AA Batteries (4-pack),1,3.84,09/24/19 12:56,"293 Washington St, Boston, MA 02215" +259867,ThinkPad Laptop,1,999.99,09/11/19 16:43,"36 1st St, Atlanta, GA 30301" +259868,Google Phone,1,600,09/15/19 20:21,"23 Adams St, Atlanta, GA 30301" +259869,AA Batteries (4-pack),1,3.84,09/07/19 09:23,"611 1st St, Austin, TX 73301" +259870,Lightning Charging Cable,1,14.95,09/15/19 10:17,"641 Wilson St, Atlanta, GA 30301" +259871,Wired Headphones,1,11.99,09/06/19 18:41,"551 Pine St, Dallas, TX 75001" +259872,Lightning Charging Cable,1,14.95,09/28/19 18:50,"155 Wilson St, Austin, TX 73301" +259873,Wired Headphones,1,11.99,09/13/19 16:17,"723 Washington St, San Francisco, CA 94016" +259874,Lightning Charging Cable,1,14.95,09/14/19 10:25,"477 Center St, Boston, MA 02215" +259875,Apple Airpods Headphones,1,150,09/12/19 23:28,"330 Meadow St, Los Angeles, CA 90001" +259876,27in FHD Monitor,1,149.99,09/28/19 00:12,"722 Madison St, San Francisco, CA 94016" +259877,AAA Batteries (4-pack),1,2.99,09/12/19 09:10,"179 Willow St, Los Angeles, CA 90001" +259878,USB-C Charging Cable,1,11.95,09/23/19 20:32,"905 12th St, Portland, OR 97035" +259879,Wired Headphones,1,11.99,09/14/19 13:42,"653 10th St, New York City, NY 10001" +259879,AAA Batteries (4-pack),1,2.99,09/14/19 13:42,"653 10th St, New York City, NY 10001" +259880,Wired Headphones,1,11.99,09/25/19 13:12,"597 Jefferson St, Los Angeles, CA 90001" +259881,27in FHD Monitor,1,149.99,09/25/19 17:26,"485 South St, Boston, MA 02215" +259882,Apple Airpods Headphones,1,150,09/23/19 14:21,"211 Pine St, Boston, MA 02215" +259883,Wired Headphones,1,11.99,09/27/19 16:49,"577 Washington St, Austin, TX 73301" +259884,Apple Airpods Headphones,1,150,09/30/19 22:50,"88 Cedar St, San Francisco, CA 94016" +259885,Apple Airpods Headphones,1,150,09/19/19 13:26,"265 10th St, Los Angeles, CA 90001" +259886,Flatscreen TV,1,300,09/16/19 10:45,"557 Lake St, Los Angeles, CA 90001" +259887,Lightning Charging Cable,1,14.95,09/24/19 22:34,"92 Ridge St, San Francisco, CA 94016" +259888,Lightning Charging Cable,1,14.95,09/03/19 20:23,"709 2nd St, New York City, NY 10001" +259889,AAA Batteries (4-pack),1,2.99,09/17/19 15:29,"291 Dogwood St, San Francisco, CA 94016" +259890,USB-C Charging Cable,1,11.95,09/01/19 16:10,"343 Spruce St, Boston, MA 02215" +259891,Wired Headphones,2,11.99,09/30/19 18:29,"565 14th St, Los Angeles, CA 90001" +259892,USB-C Charging Cable,1,11.95,09/28/19 23:12,"371 Center St, Seattle, WA 98101" +259893,AAA Batteries (4-pack),1,2.99,09/20/19 21:36,"899 North St, Boston, MA 02215" +259894,LG Washing Machine,1,600.0,09/10/19 00:12,"26 12th St, Seattle, WA 98101" +259895,Apple Airpods Headphones,1,150,09/06/19 16:00,"883 Chestnut St, San Francisco, CA 94016" +259896,Wired Headphones,1,11.99,09/30/19 23:13,"306 Willow St, Boston, MA 02215" +259897,USB-C Charging Cable,1,11.95,09/15/19 18:26,"237 Walnut St, Austin, TX 73301" +259898,AAA Batteries (4-pack),1,2.99,09/07/19 11:41,"377 Adams St, Portland, OR 97035" +259899,Wired Headphones,1,11.99,09/15/19 21:37,"734 North St, Atlanta, GA 30301" +259900,Lightning Charging Cable,1,14.95,09/02/19 23:16,"471 Johnson St, San Francisco, CA 94016" +259901,Wired Headphones,1,11.99,09/22/19 16:31,"579 Walnut St, Los Angeles, CA 90001" +259902,Lightning Charging Cable,1,14.95,09/01/19 08:00,"648 8th St, Boston, MA 02215" +259903,Bose SoundSport Headphones,1,99.99,09/02/19 01:34,"373 Spruce St, Dallas, TX 75001" +259904,27in 4K Gaming Monitor,1,389.99,09/16/19 09:49,"571 Meadow St, Dallas, TX 75001" +259905,27in FHD Monitor,1,149.99,09/27/19 21:05,"449 Lakeview St, Los Angeles, CA 90001" +259906,Lightning Charging Cable,1,14.95,09/16/19 18:40,"83 Pine St, Dallas, TX 75001" +259907,AAA Batteries (4-pack),1,2.99,09/30/19 08:36,"633 Washington St, Portland, OR 97035" +259908,iPhone,1,700,09/18/19 18:15,"976 Madison St, New York City, NY 10001" +259908,Apple Airpods Headphones,1,150,09/18/19 18:15,"976 Madison St, New York City, NY 10001" +259909,34in Ultrawide Monitor,1,379.99,09/07/19 08:57,"359 Jackson St, Boston, MA 02215" +259910,USB-C Charging Cable,1,11.95,09/27/19 00:00,"807 6th St, Atlanta, GA 30301" +259911,Lightning Charging Cable,2,14.95,09/23/19 01:40,"437 6th St, Austin, TX 73301" +259912,USB-C Charging Cable,1,11.95,09/13/19 15:20,"87 6th St, Atlanta, GA 30301" +259913,Lightning Charging Cable,1,14.95,09/06/19 10:55,"821 4th St, New York City, NY 10001" +259914,Lightning Charging Cable,1,14.95,09/22/19 21:17,"97 1st St, Los Angeles, CA 90001" +259915,iPhone,1,700,09/17/19 22:12,"592 Elm St, Boston, MA 02215" +259915,Apple Airpods Headphones,1,150,09/17/19 22:12,"592 Elm St, Boston, MA 02215" +259916,Google Phone,1,600,09/18/19 22:13,"365 10th St, New York City, NY 10001" +259917,Apple Airpods Headphones,1,150,09/13/19 13:57,"679 Willow St, Seattle, WA 98101" +259918,Lightning Charging Cable,1,14.95,09/17/19 19:45,"498 Maple St, Boston, MA 02215" +259919,USB-C Charging Cable,1,11.95,09/29/19 17:37,"129 4th St, Boston, MA 02215" +259920,27in FHD Monitor,1,149.99,09/22/19 12:44,"644 Lake St, Boston, MA 02215" +259921,Google Phone,1,600,09/24/19 16:47,"519 Forest St, New York City, NY 10001" +259921,Bose SoundSport Headphones,1,99.99,09/24/19 16:47,"519 Forest St, New York City, NY 10001" +259921,Wired Headphones,1,11.99,09/24/19 16:47,"519 Forest St, New York City, NY 10001" +259922,Apple Airpods Headphones,1,150,09/11/19 13:40,"132 Center St, Seattle, WA 98101" +259923,20in Monitor,1,109.99,09/17/19 17:38,"676 Elm St, Atlanta, GA 30301" +259924,Wired Headphones,1,11.99,09/11/19 14:00,"835 Forest St, San Francisco, CA 94016" +259925,LG Dryer,1,600.0,09/27/19 23:52,"79 2nd St, Dallas, TX 75001" +259926,27in FHD Monitor,1,149.99,09/08/19 01:14,"610 Johnson St, New York City, NY 10001" +259927,Google Phone,1,600,09/18/19 20:10,"208 Cedar St, San Francisco, CA 94016" +259928,Apple Airpods Headphones,1,150,09/04/19 11:29,"120 10th St, Boston, MA 02215" +259929,AA Batteries (4-pack),1,3.84,09/09/19 18:33,"697 Sunset St, San Francisco, CA 94016" +259930,AA Batteries (4-pack),1,3.84,09/27/19 11:36,"41 Willow St, Dallas, TX 75001" +259931,iPhone,1,700,09/24/19 21:37,"300 6th St, San Francisco, CA 94016" +259932,Lightning Charging Cable,1,14.95,09/06/19 22:38,"334 Park St, Boston, MA 02215" +259933,AA Batteries (4-pack),1,3.84,09/03/19 12:45,"967 Maple St, Seattle, WA 98101" +259934,USB-C Charging Cable,1,11.95,09/22/19 15:38,"796 Adams St, Austin, TX 73301" +259935,AAA Batteries (4-pack),1,2.99,09/20/19 11:33,"704 Lakeview St, San Francisco, CA 94016" +259936,USB-C Charging Cable,1,11.95,09/01/19 12:27,"764 4th St, Boston, MA 02215" +259937,USB-C Charging Cable,1,11.95,09/23/19 16:09,"57 Cedar St, Los Angeles, CA 90001" +259938,USB-C Charging Cable,1,11.95,09/24/19 07:30,"89 Hickory St, San Francisco, CA 94016" +259939,Wired Headphones,1,11.99,09/02/19 13:59,"391 Park St, San Francisco, CA 94016" +259940,iPhone,1,700,09/18/19 09:24,"804 Jefferson St, Seattle, WA 98101" +259940,Lightning Charging Cable,1,14.95,09/18/19 09:24,"804 Jefferson St, Seattle, WA 98101" +259940,Wired Headphones,2,11.99,09/18/19 09:24,"804 Jefferson St, Seattle, WA 98101" +259941,AA Batteries (4-pack),2,3.84,09/20/19 13:50,"875 Lincoln St, San Francisco, CA 94016" +259942,AAA Batteries (4-pack),3,2.99,09/15/19 09:17,"797 7th St, Los Angeles, CA 90001" +259943,Lightning Charging Cable,1,14.95,09/12/19 20:15,"763 Johnson St, Boston, MA 02215" +259944,Lightning Charging Cable,2,14.95,09/11/19 14:16,"574 Sunset St, San Francisco, CA 94016" +259945,AA Batteries (4-pack),1,3.84,09/08/19 00:29,"614 14th St, Austin, TX 73301" +259946,Apple Airpods Headphones,1,150,09/06/19 17:41,"275 Church St, San Francisco, CA 94016" +259947,Google Phone,1,600,09/08/19 15:03,"907 5th St, Austin, TX 73301" +259948,AAA Batteries (4-pack),1,2.99,09/16/19 19:13,"914 Jackson St, Portland, OR 97035" +259949,USB-C Charging Cable,2,11.95,09/14/19 18:53,"736 Maple St, San Francisco, CA 94016" +259950,Bose SoundSport Headphones,1,99.99,09/18/19 19:49,"899 Walnut St, San Francisco, CA 94016" +259951,Wired Headphones,1,11.99,09/17/19 17:14,"431 Chestnut St, New York City, NY 10001" +259952,20in Monitor,1,109.99,09/06/19 14:25,"636 Wilson St, Boston, MA 02215" +259953,Apple Airpods Headphones,1,150,09/01/19 10:32,"79 Madison St, Dallas, TX 75001" +259954,iPhone,1,700,09/02/19 16:58,"226 Sunset St, Austin, TX 73301" +259954,Lightning Charging Cable,1,14.95,09/02/19 16:58,"226 Sunset St, Austin, TX 73301" +259955,AAA Batteries (4-pack),1,2.99,09/14/19 19:18,"544 South St, Portland, OR 97035" +259956,Apple Airpods Headphones,1,150,09/30/19 02:33,"322 Church St, Portland, OR 97035" +259957,iPhone,1,700,09/14/19 20:42,"522 Cedar St, Boston, MA 02215" +259958,Lightning Charging Cable,1,14.95,09/24/19 18:32,"943 Spruce St, Dallas, TX 75001" +259959,Macbook Pro Laptop,1,1700,09/22/19 16:05,"423 2nd St, New York City, NY 10001" +259960,iPhone,1,700,09/02/19 11:32,"460 9th St, Seattle, WA 98101" +259961,34in Ultrawide Monitor,1,379.99,09/04/19 23:04,"15 10th St, Boston, MA 02215" +259962,AAA Batteries (4-pack),1,2.99,09/22/19 15:39,"231 Pine St, San Francisco, CA 94016" +259963,Lightning Charging Cable,1,14.95,09/12/19 13:53,"679 Lakeview St, Boston, MA 02215" +259964,20in Monitor,1,109.99,09/02/19 09:09,"489 Meadow St, New York City, NY 10001" +259965,34in Ultrawide Monitor,1,379.99,09/09/19 23:54,"55 6th St, San Francisco, CA 94016" +259966,iPhone,1,700,09/29/19 16:05,"73 1st St, Los Angeles, CA 90001" +259967,Bose SoundSport Headphones,2,99.99,09/08/19 20:54,"755 Meadow St, San Francisco, CA 94016" +259968,Bose SoundSport Headphones,1,99.99,09/16/19 19:11,"239 Spruce St, New York City, NY 10001" +259969,27in 4K Gaming Monitor,1,389.99,09/14/19 12:34,"67 Sunset St, San Francisco, CA 94016" +259970,Apple Airpods Headphones,1,150,09/22/19 14:26,"913 Adams St, New York City, NY 10001" +259971,Bose SoundSport Headphones,1,99.99,09/13/19 19:32,"226 1st St, Atlanta, GA 30301" +259972,AA Batteries (4-pack),2,3.84,09/12/19 12:47,"143 South St, Dallas, TX 75001" +259973,AA Batteries (4-pack),1,3.84,09/19/19 18:25,"235 9th St, San Francisco, CA 94016" +259974,Bose SoundSport Headphones,1,99.99,09/24/19 19:22,"770 Highland St, Dallas, TX 75001" +259975,Apple Airpods Headphones,1,150,09/22/19 13:39,"571 South St, Los Angeles, CA 90001" +259976,Lightning Charging Cable,1,14.95,09/23/19 18:15,"816 5th St, San Francisco, CA 94016" +259977,Bose SoundSport Headphones,1,99.99,09/13/19 16:26,"717 Sunset St, San Francisco, CA 94016" +259978,AA Batteries (4-pack),1,3.84,09/24/19 08:06,"623 Highland St, Los Angeles, CA 90001" +259979,AAA Batteries (4-pack),3,2.99,09/19/19 20:03,"666 Cedar St, New York City, NY 10001" +259980,AAA Batteries (4-pack),4,2.99,09/02/19 12:12,"425 Madison St, San Francisco, CA 94016" +259981,Wired Headphones,1,11.99,09/05/19 03:54,"119 Johnson St, Los Angeles, CA 90001" +259982,20in Monitor,1,109.99,09/06/19 14:19,"939 Ridge St, San Francisco, CA 94016" +259983,AA Batteries (4-pack),1,3.84,09/24/19 21:42,"329 8th St, Seattle, WA 98101" +259984,Wired Headphones,1,11.99,09/02/19 19:15,"445 Lincoln St, San Francisco, CA 94016" +259985,Lightning Charging Cable,1,14.95,09/26/19 01:35,"278 12th St, San Francisco, CA 94016" +259986,Bose SoundSport Headphones,1,99.99,09/25/19 14:07,"923 Spruce St, New York City, NY 10001" +259987,AAA Batteries (4-pack),1,2.99,09/06/19 20:38,"382 Elm St, San Francisco, CA 94016" +259988,Lightning Charging Cable,2,14.95,09/17/19 11:03,"295 Park St, San Francisco, CA 94016" +259989,ThinkPad Laptop,1,999.99,09/04/19 22:06,"140 Johnson St, Boston, MA 02215" +259990,AAA Batteries (4-pack),2,2.99,09/07/19 11:33,"421 Lake St, Atlanta, GA 30301" +259991,USB-C Charging Cable,1,11.95,09/23/19 18:52,"718 5th St, Los Angeles, CA 90001" +259992,Bose SoundSport Headphones,1,99.99,09/20/19 16:04,"73 North St, Boston, MA 02215" +259993,Apple Airpods Headphones,1,150,09/16/19 10:24,"72 Jackson St, Los Angeles, CA 90001" +259994,USB-C Charging Cable,1,11.95,09/13/19 15:21,"75 Willow St, New York City, NY 10001" +259995,USB-C Charging Cable,1,11.95,09/28/19 16:24,"491 Dogwood St, Boston, MA 02215" +259996,Bose SoundSport Headphones,1,99.99,09/20/19 12:33,"295 Main St, Los Angeles, CA 90001" +259997,Bose SoundSport Headphones,1,99.99,09/12/19 18:50,"126 Cherry St, Dallas, TX 75001" +259998,Lightning Charging Cable,1,14.95,09/03/19 09:48,"534 Willow St, Atlanta, GA 30301" +259999,USB-C Charging Cable,1,11.95,09/06/19 00:29,"662 South St, New York City, NY 10001" +260000,Wired Headphones,1,11.99,09/15/19 20:37,"672 7th St, San Francisco, CA 94016" +260001,Wired Headphones,1,11.99,09/06/19 21:10,"745 5th St, Boston, MA 02215" +260002,20in Monitor,1,109.99,09/30/19 01:14,"910 Spruce St, Boston, MA 02215" +260003,27in 4K Gaming Monitor,1,389.99,09/05/19 11:47,"339 Jackson St, New York City, NY 10001" +260004,Flatscreen TV,1,300,09/22/19 20:21,"843 9th St, Seattle, WA 98101" +260005,Wired Headphones,1,11.99,09/10/19 19:15,"139 Johnson St, Atlanta, GA 30301" +260006,iPhone,1,700,09/30/19 04:51,"819 West St, Portland, OR 97035" +260007,27in 4K Gaming Monitor,1,389.99,09/29/19 11:05,"146 Meadow St, Boston, MA 02215" +260008,Bose SoundSport Headphones,1,99.99,09/28/19 09:23,"119 1st St, Dallas, TX 75001" +260009,AAA Batteries (4-pack),1,2.99,09/06/19 18:15,"456 Hickory St, Los Angeles, CA 90001" +260010,Lightning Charging Cable,1,14.95,09/29/19 21:10,"727 Jefferson St, Atlanta, GA 30301" +260011,Flatscreen TV,1,300,09/24/19 19:28,"504 Sunset St, Seattle, WA 98101" +260012,27in 4K Gaming Monitor,1,389.99,09/05/19 14:08,"233 Elm St, Austin, TX 73301" +260012,27in FHD Monitor,1,149.99,09/05/19 14:08,"233 Elm St, Austin, TX 73301" +260013,27in FHD Monitor,1,149.99,09/21/19 20:07,"175 Lakeview St, San Francisco, CA 94016" +260014,Lightning Charging Cable,1,14.95,09/01/19 11:32,"166 Highland St, Los Angeles, CA 90001" +260015,Lightning Charging Cable,1,14.95,09/15/19 13:50,"950 Willow St, New York City, NY 10001" +260016,Wired Headphones,1,11.99,09/23/19 19:37,"657 Church St, Los Angeles, CA 90001" +260017,34in Ultrawide Monitor,1,379.99,09/02/19 12:39,"412 Hickory St, Dallas, TX 75001" +260018,Macbook Pro Laptop,1,1700,09/11/19 09:02,"286 Hickory St, Portland, OR 97035" +260019,iPhone,1,700,09/08/19 20:23,"636 West St, San Francisco, CA 94016" +260020,20in Monitor,1,109.99,09/25/19 19:45,"249 11th St, Dallas, TX 75001" +260021,AAA Batteries (4-pack),1,2.99,09/04/19 13:49,"286 13th St, San Francisco, CA 94016" +260022,Wired Headphones,1,11.99,09/28/19 15:02,"262 8th St, Seattle, WA 98101" +260023,Wired Headphones,1,11.99,09/07/19 12:20,"184 Washington St, Los Angeles, CA 90001" +260024,AA Batteries (4-pack),1,3.84,09/05/19 14:06,"742 Cherry St, San Francisco, CA 94016" +260025,iPhone,1,700,09/30/19 09:47,"996 Lincoln St, Boston, MA 02215" +260026,ThinkPad Laptop,1,999.99,09/29/19 18:21,"749 9th St, New York City, NY 10001" +260027,AAA Batteries (4-pack),2,2.99,09/29/19 21:37,"744 Forest St, San Francisco, CA 94016" +260028,USB-C Charging Cable,2,11.95,09/09/19 11:51,"449 Cherry St, San Francisco, CA 94016" +260029,USB-C Charging Cable,1,11.95,09/17/19 11:48,"932 14th St, Portland, OR 97035" +260030,Wired Headphones,1,11.99,09/30/19 08:07,"251 Highland St, New York City, NY 10001" +260031,Apple Airpods Headphones,1,150,09/04/19 00:12,"49 Madison St, New York City, NY 10001" +260032,AA Batteries (4-pack),1,3.84,09/30/19 18:32,"617 Adams St, Portland, OR 97035" +260033,27in FHD Monitor,1,149.99,09/22/19 11:26,"882 11th St, San Francisco, CA 94016" +260034,USB-C Charging Cable,1,11.95,09/22/19 18:26,"790 Forest St, Seattle, WA 98101" +260035,Apple Airpods Headphones,1,150,09/15/19 14:16,"317 Spruce St, Dallas, TX 75001" +260036,20in Monitor,1,109.99,09/08/19 21:41,"521 South St, Boston, MA 02215" +260037,LG Washing Machine,1,600.0,09/14/19 20:15,"541 5th St, Austin, TX 73301" +260038,AA Batteries (4-pack),1,3.84,09/09/19 11:17,"341 Church St, San Francisco, CA 94016" +260039,Wired Headphones,1,11.99,09/20/19 13:25,"337 Park St, Seattle, WA 98101" +260040,34in Ultrawide Monitor,1,379.99,09/03/19 19:27,"829 Madison St, San Francisco, CA 94016" +260041,Google Phone,1,600,09/08/19 10:34,"253 Park St, San Francisco, CA 94016" +260042,AAA Batteries (4-pack),2,2.99,09/30/19 10:01,"837 11th St, Atlanta, GA 30301" +260043,34in Ultrawide Monitor,1,379.99,09/29/19 21:06,"759 13th St, San Francisco, CA 94016" +260044,USB-C Charging Cable,2,11.95,09/04/19 16:34,"887 North St, San Francisco, CA 94016" +260045,USB-C Charging Cable,1,11.95,09/14/19 12:29,"350 Sunset St, Los Angeles, CA 90001" +260046,Macbook Pro Laptop,1,1700,09/18/19 18:40,"268 8th St, San Francisco, CA 94016" +260047,Lightning Charging Cable,1,14.95,09/29/19 11:24,"62 Lincoln St, Seattle, WA 98101" +260048,Wired Headphones,1,11.99,09/15/19 18:07,"257 River St, New York City, NY 10001" +260049,Macbook Pro Laptop,1,1700,09/27/19 11:43,"906 Lake St, San Francisco, CA 94016" +260050,AA Batteries (4-pack),1,3.84,09/26/19 18:11,"149 Hickory St, Los Angeles, CA 90001" +260051,Apple Airpods Headphones,1,150,09/24/19 11:59,"193 10th St, San Francisco, CA 94016" +260052,ThinkPad Laptop,1,999.99,09/01/19 12:19,"642 Walnut St, San Francisco, CA 94016" +260053,Lightning Charging Cable,1,14.95,09/24/19 11:41,"211 Cherry St, New York City, NY 10001" +260054,Lightning Charging Cable,1,14.95,09/27/19 00:59,"578 2nd St, San Francisco, CA 94016" +260055,Bose SoundSport Headphones,2,99.99,09/25/19 11:55,"548 7th St, San Francisco, CA 94016" +260056,AAA Batteries (4-pack),1,2.99,09/16/19 18:00,"693 9th St, Los Angeles, CA 90001" +260057,LG Dryer,1,600.0,09/15/19 14:40,"523 Highland St, Los Angeles, CA 90001" +260058,Apple Airpods Headphones,1,150,09/28/19 11:56,"539 4th St, Dallas, TX 75001" +260059,27in 4K Gaming Monitor,1,389.99,09/08/19 10:29,"95 11th St, Seattle, WA 98101" +260060,iPhone,1,700,09/27/19 20:10,"781 Cedar St, Atlanta, GA 30301" +260060,Lightning Charging Cable,1,14.95,09/27/19 20:10,"781 Cedar St, Atlanta, GA 30301" +260061,iPhone,1,700,09/23/19 22:04,"264 Dogwood St, Los Angeles, CA 90001" +260062,AA Batteries (4-pack),1,3.84,09/15/19 10:19,"438 Ridge St, Seattle, WA 98101" +260063,Wired Headphones,1,11.99,09/21/19 19:24,"758 Willow St, Boston, MA 02215" +260064,27in FHD Monitor,1,149.99,09/28/19 13:24,"5 Meadow St, Los Angeles, CA 90001" +260065,Wired Headphones,1,11.99,09/17/19 10:27,"801 9th St, Seattle, WA 98101" +260066,Bose SoundSport Headphones,1,99.99,09/22/19 20:22,"344 9th St, New York City, NY 10001" +260067,Google Phone,1,600,09/21/19 14:47,"798 Chestnut St, Los Angeles, CA 90001" +260068,USB-C Charging Cable,1,11.95,09/17/19 17:09,"882 Spruce St, Boston, MA 02215" +260069,USB-C Charging Cable,1,11.95,09/20/19 09:20,"930 Dogwood St, Boston, MA 02215" +260070,LG Washing Machine,1,600.0,09/04/19 18:37,"186 Sunset St, San Francisco, CA 94016" +260071,USB-C Charging Cable,1,11.95,09/04/19 14:40,"561 Cherry St, Los Angeles, CA 90001" +260072,USB-C Charging Cable,1,11.95,09/30/19 19:53,"412 Hickory St, New York City, NY 10001" +260073,Google Phone,1,600,09/21/19 00:20,"707 Washington St, Seattle, WA 98101" +260074,USB-C Charging Cable,1,11.95,09/06/19 15:37,"985 9th St, Los Angeles, CA 90001" +260075,27in 4K Gaming Monitor,1,389.99,09/30/19 19:41,"486 Jackson St, Seattle, WA 98101" +260076,iPhone,1,700,09/02/19 10:37,"445 Lincoln St, San Francisco, CA 94016" +260077,34in Ultrawide Monitor,1,379.99,09/21/19 17:40,"965 Lakeview St, San Francisco, CA 94016" +260078,Wired Headphones,1,11.99,09/09/19 08:17,"499 12th St, Portland, ME 04101" +260079,ThinkPad Laptop,1,999.99,09/16/19 21:03,"301 8th St, San Francisco, CA 94016" +260080,USB-C Charging Cable,1,11.95,09/02/19 22:35,"103 Park St, San Francisco, CA 94016" +260081,AAA Batteries (4-pack),1,2.99,09/01/19 14:23,"672 14th St, San Francisco, CA 94016" +260082,27in 4K Gaming Monitor,1,389.99,09/17/19 00:27,"714 Church St, New York City, NY 10001" +260083,34in Ultrawide Monitor,1,379.99,09/11/19 19:55,"57 Forest St, Boston, MA 02215" +260084,AAA Batteries (4-pack),1,2.99,09/04/19 16:42,"728 8th St, San Francisco, CA 94016" +260085,20in Monitor,1,109.99,09/10/19 15:10,"836 Church St, Los Angeles, CA 90001" +260086,Macbook Pro Laptop,1,1700,09/29/19 22:02,"247 Willow St, Atlanta, GA 30301" +260087,Apple Airpods Headphones,1,150,09/14/19 20:53,"867 11th St, Atlanta, GA 30301" +260088,ThinkPad Laptop,1,999.99,09/12/19 16:36,"907 West St, Seattle, WA 98101" +260089,20in Monitor,1,109.99,09/02/19 23:42,"992 Hill St, New York City, NY 10001" +260090,27in 4K Gaming Monitor,1,389.99,09/02/19 14:03,"245 14th St, New York City, NY 10001" +260091,34in Ultrawide Monitor,1,379.99,09/29/19 20:33,"79 Madison St, Boston, MA 02215" +260092,AAA Batteries (4-pack),1,2.99,09/14/19 16:36,"8 11th St, Seattle, WA 98101" +260093,Wired Headphones,1,11.99,09/17/19 14:28,"590 Hill St, San Francisco, CA 94016" +260094,AA Batteries (4-pack),1,3.84,09/21/19 15:22,"664 7th St, Los Angeles, CA 90001" +260095,USB-C Charging Cable,1,11.95,09/11/19 18:59,"107 8th St, San Francisco, CA 94016" +260096,Google Phone,1,600,09/06/19 22:38,"834 Spruce St, San Francisco, CA 94016" +260096,USB-C Charging Cable,1,11.95,09/06/19 22:38,"834 Spruce St, San Francisco, CA 94016" +260097,Wired Headphones,1,11.99,09/04/19 20:37,"896 6th St, New York City, NY 10001" +260098,Google Phone,1,600,09/04/19 20:55,"246 7th St, Austin, TX 73301" +260098,USB-C Charging Cable,1,11.95,09/04/19 20:55,"246 7th St, Austin, TX 73301" +260098,Bose SoundSport Headphones,1,99.99,09/04/19 20:55,"246 7th St, Austin, TX 73301" +260098,Wired Headphones,1,11.99,09/04/19 20:55,"246 7th St, Austin, TX 73301" +260099,AAA Batteries (4-pack),1,2.99,09/26/19 01:55,"386 Sunset St, San Francisco, CA 94016" +260100,Flatscreen TV,1,300,09/04/19 08:12,"775 Hickory St, Boston, MA 02215" +260101,AAA Batteries (4-pack),4,2.99,09/16/19 12:56,"265 Pine St, Atlanta, GA 30301" +260102,Bose SoundSport Headphones,1,99.99,09/15/19 07:10,"76 9th St, San Francisco, CA 94016" +260103,Bose SoundSport Headphones,1,99.99,09/16/19 11:13,"848 Spruce St, Los Angeles, CA 90001" +260103,Wired Headphones,1,11.99,09/16/19 11:13,"848 Spruce St, Los Angeles, CA 90001" +260104,USB-C Charging Cable,1,11.95,09/16/19 18:12,"161 Cedar St, San Francisco, CA 94016" +260105,AA Batteries (4-pack),1,3.84,09/23/19 10:49,"404 9th St, San Francisco, CA 94016" +260106,Wired Headphones,1,11.99,09/01/19 09:24,"434 Washington St, Seattle, WA 98101" +260107,Lightning Charging Cable,1,14.95,09/15/19 13:11,"65 2nd St, San Francisco, CA 94016" +260108,AAA Batteries (4-pack),1,2.99,09/13/19 04:11,"229 7th St, Dallas, TX 75001" +260109,Bose SoundSport Headphones,1,99.99,09/02/19 09:14,"234 Cedar St, Seattle, WA 98101" +260110,Flatscreen TV,1,300,09/23/19 16:32,"477 Center St, Los Angeles, CA 90001" +260111,LG Dryer,1,600.0,09/12/19 11:41,"974 River St, Seattle, WA 98101" +260112,34in Ultrawide Monitor,1,379.99,09/11/19 23:17,"294 River St, San Francisco, CA 94016" +260113,Lightning Charging Cable,1,14.95,09/22/19 17:57,"4 Church St, New York City, NY 10001" +260114,27in FHD Monitor,1,149.99,09/15/19 00:26,"923 South St, Los Angeles, CA 90001" +260115,Wired Headphones,1,11.99,09/20/19 06:40,"561 4th St, Boston, MA 02215" +260116,Apple Airpods Headphones,1,150,09/17/19 10:39,"282 South St, Austin, TX 73301" +260117,AA Batteries (4-pack),1,3.84,09/19/19 13:55,"60 Dogwood St, Los Angeles, CA 90001" +260118,Wired Headphones,1,11.99,09/19/19 05:49,"902 Lakeview St, San Francisco, CA 94016" +260119,Apple Airpods Headphones,1,150,09/25/19 22:58,"275 Adams St, San Francisco, CA 94016" +260120,Apple Airpods Headphones,1,150,09/21/19 15:44,"477 13th St, San Francisco, CA 94016" +260121,Bose SoundSport Headphones,1,99.99,09/20/19 16:23,"140 Walnut St, San Francisco, CA 94016" +260122,Apple Airpods Headphones,1,150,09/23/19 21:05,"32 North St, Los Angeles, CA 90001" +260123,Wired Headphones,1,11.99,09/03/19 17:19,"533 Hill St, San Francisco, CA 94016" +260124,Apple Airpods Headphones,1,150,09/29/19 08:25,"373 Spruce St, Seattle, WA 98101" +260125,AA Batteries (4-pack),1,3.84,09/04/19 10:30,"921 Main St, San Francisco, CA 94016" +260126,Macbook Pro Laptop,1,1700,09/10/19 17:24,"183 14th St, San Francisco, CA 94016" +260127,USB-C Charging Cable,1,11.95,09/24/19 14:53,"937 7th St, Los Angeles, CA 90001" +260128,AA Batteries (4-pack),1,3.84,09/26/19 19:13,"133 Willow St, Portland, OR 97035" +260129,AAA Batteries (4-pack),1,2.99,09/05/19 07:07,"114 6th St, Atlanta, GA 30301" +260129,AA Batteries (4-pack),1,3.84,09/05/19 07:07,"114 6th St, Atlanta, GA 30301" +260130,Bose SoundSport Headphones,1,99.99,09/21/19 12:07,"283 Elm St, Dallas, TX 75001" +260131,AA Batteries (4-pack),1,3.84,09/18/19 20:24,"16 Hickory St, Los Angeles, CA 90001" +260132,Lightning Charging Cable,1,14.95,09/30/19 15:31,"527 2nd St, Los Angeles, CA 90001" +260133,34in Ultrawide Monitor,1,379.99,09/09/19 16:03,"51 Wilson St, Los Angeles, CA 90001" +260134,Lightning Charging Cable,1,14.95,09/25/19 16:19,"773 Cherry St, Los Angeles, CA 90001" +260135,ThinkPad Laptop,1,999.99,09/11/19 18:02,"541 9th St, New York City, NY 10001" +260136,AAA Batteries (4-pack),2,2.99,09/30/19 17:00,"661 7th St, Austin, TX 73301" +260137,Lightning Charging Cable,1,14.95,09/27/19 18:03,"32 14th St, San Francisco, CA 94016" +260138,iPhone,1,700,09/21/19 10:35,"3 North St, Boston, MA 02215" +260138,Lightning Charging Cable,1,14.95,09/21/19 10:35,"3 North St, Boston, MA 02215" +260139,Bose SoundSport Headphones,1,99.99,09/13/19 10:03,"47 2nd St, Atlanta, GA 30301" +260140,Google Phone,1,600,09/04/19 11:25,"522 10th St, Seattle, WA 98101" +260140,USB-C Charging Cable,1,11.95,09/04/19 11:25,"522 10th St, Seattle, WA 98101" +260141,Macbook Pro Laptop,1,1700,09/18/19 08:01,"82 9th St, Seattle, WA 98101" +260142,Bose SoundSport Headphones,1,99.99,09/12/19 17:02,"782 Walnut St, Los Angeles, CA 90001" +260143,Flatscreen TV,1,300,09/23/19 09:47,"494 2nd St, Boston, MA 02215" +260144,Lightning Charging Cable,1,14.95,09/09/19 10:10,"945 Wilson St, New York City, NY 10001" +260145,Lightning Charging Cable,1,14.95,09/22/19 21:08,"30 11th St, New York City, NY 10001" +260146,AAA Batteries (4-pack),4,2.99,09/30/19 19:32,"85 Madison St, Atlanta, GA 30301" +260147,Apple Airpods Headphones,1,150,09/30/19 15:29,"300 10th St, Los Angeles, CA 90001" +,,,,, +260148,ThinkPad Laptop,1,999.99,09/21/19 19:14,"201 Spruce St, Los Angeles, CA 90001" +260149,Lightning Charging Cable,1,14.95,09/09/19 22:34,"247 6th St, Seattle, WA 98101" +260150,AA Batteries (4-pack),1,3.84,09/29/19 09:47,"841 Adams St, Dallas, TX 75001" +260151,27in FHD Monitor,1,149.99,09/23/19 08:57,"999 Forest St, Los Angeles, CA 90001" +260152,USB-C Charging Cable,1,11.95,09/07/19 13:17,"269 River St, Boston, MA 02215" +260153,Apple Airpods Headphones,1,150,09/12/19 11:28,"527 6th St, Austin, TX 73301" +260154,Bose SoundSport Headphones,1,99.99,09/29/19 12:38,"519 Wilson St, Portland, OR 97035" +260155,27in FHD Monitor,1,149.99,09/03/19 19:16,"937 Cherry St, San Francisco, CA 94016" +260156,USB-C Charging Cable,1,11.95,09/16/19 13:03,"122 Sunset St, Seattle, WA 98101" +260157,Lightning Charging Cable,1,14.95,09/13/19 12:52,"555 1st St, Los Angeles, CA 90001" +260158,Lightning Charging Cable,1,14.95,09/26/19 15:27,"445 South St, New York City, NY 10001" +260159,Apple Airpods Headphones,1,150,09/09/19 11:41,"236 Ridge St, New York City, NY 10001" +260160,Lightning Charging Cable,1,14.95,09/16/19 22:13,"69 Cedar St, New York City, NY 10001" +260161,Bose SoundSport Headphones,1,99.99,09/30/19 11:35,"941 Adams St, Portland, OR 97035" +260162,Macbook Pro Laptop,1,1700,09/07/19 00:05,"113 West St, Dallas, TX 75001" +260163,ThinkPad Laptop,1,999.99,09/16/19 00:29,"991 South St, Dallas, TX 75001" +260164,Macbook Pro Laptop,1,1700,09/14/19 15:02,"382 7th St, Atlanta, GA 30301" +260165,Flatscreen TV,1,300,09/27/19 17:01,"114 Jefferson St, San Francisco, CA 94016" +260166,Lightning Charging Cable,1,14.95,09/15/19 21:23,"719 Center St, San Francisco, CA 94016" +260167,20in Monitor,1,109.99,09/01/19 21:01,"293 5th St, Los Angeles, CA 90001" +260168,Apple Airpods Headphones,1,150,09/03/19 16:33,"912 11th St, Dallas, TX 75001" +260169,Lightning Charging Cable,1,14.95,09/17/19 13:32,"283 Adams St, Portland, ME 04101" +260170,USB-C Charging Cable,1,11.95,09/19/19 06:34,"676 Cherry St, New York City, NY 10001" +260171,AAA Batteries (4-pack),1,2.99,09/05/19 19:03,"918 4th St, Los Angeles, CA 90001" +260172,USB-C Charging Cable,1,11.95,09/07/19 22:10,"470 12th St, San Francisco, CA 94016" +260173,Bose SoundSport Headphones,1,99.99,09/13/19 13:00,"516 Cherry St, Portland, OR 97035" +260174,Apple Airpods Headphones,1,150,09/09/19 10:31,"81 Ridge St, San Francisco, CA 94016" +260175,AAA Batteries (4-pack),2,2.99,09/04/19 22:45,"843 1st St, San Francisco, CA 94016" +260176,Macbook Pro Laptop,1,1700,09/14/19 09:39,"226 South St, San Francisco, CA 94016" +260177,Wired Headphones,1,11.99,09/22/19 12:40,"758 Lincoln St, Boston, MA 02215" +260178,USB-C Charging Cable,1,11.95,09/06/19 10:33,"459 Willow St, Boston, MA 02215" +260179,34in Ultrawide Monitor,1,379.99,09/13/19 17:58,"740 Main St, Seattle, WA 98101" +260180,AA Batteries (4-pack),2,3.84,09/21/19 11:31,"661 Park St, New York City, NY 10001" +260181,27in 4K Gaming Monitor,1,389.99,09/22/19 01:44,"300 Ridge St, Boston, MA 02215" +260182,iPhone,1,700,09/02/19 08:26,"94 West St, Seattle, WA 98101" +260182,Lightning Charging Cable,2,14.95,09/02/19 08:26,"94 West St, Seattle, WA 98101" +260183,AAA Batteries (4-pack),1,2.99,09/05/19 16:30,"318 Jefferson St, Los Angeles, CA 90001" +260184,Apple Airpods Headphones,1,150,09/06/19 21:15,"240 South St, Boston, MA 02215" +260185,AAA Batteries (4-pack),1,2.99,09/10/19 09:51,"981 North St, New York City, NY 10001" +260186,AA Batteries (4-pack),1,3.84,09/08/19 11:18,"938 Spruce St, Austin, TX 73301" +260187,Bose SoundSport Headphones,1,99.99,09/09/19 22:12,"266 6th St, Portland, OR 97035" +260188,AAA Batteries (4-pack),1,2.99,09/24/19 14:33,"543 10th St, Dallas, TX 75001" +260189,AA Batteries (4-pack),1,3.84,09/12/19 09:55,"267 Johnson St, Atlanta, GA 30301" +260190,AAA Batteries (4-pack),1,2.99,09/01/19 08:36,"885 Forest St, Austin, TX 73301" +260191,ThinkPad Laptop,1,999.99,09/14/19 14:58,"280 Lakeview St, Dallas, TX 75001" +260192,USB-C Charging Cable,1,11.95,09/07/19 09:11,"164 Sunset St, Atlanta, GA 30301" +260193,AAA Batteries (4-pack),2,2.99,09/07/19 02:13,"910 West St, Seattle, WA 98101" +260194,AAA Batteries (4-pack),1,2.99,09/26/19 19:47,"354 Lincoln St, San Francisco, CA 94016" +260194,Wired Headphones,1,11.99,09/26/19 19:47,"354 Lincoln St, San Francisco, CA 94016" +260195,AAA Batteries (4-pack),1,2.99,09/21/19 23:03,"122 Dogwood St, San Francisco, CA 94016" +260196,20in Monitor,1,109.99,09/20/19 12:55,"821 Park St, Boston, MA 02215" +260197,Apple Airpods Headphones,1,150,09/14/19 14:40,"492 Elm St, Los Angeles, CA 90001" +260198,AAA Batteries (4-pack),2,2.99,09/07/19 19:28,"202 9th St, New York City, NY 10001" +260199,Flatscreen TV,1,300,09/25/19 16:13,"511 14th St, Los Angeles, CA 90001" +260200,AAA Batteries (4-pack),1,2.99,09/17/19 14:20,"458 Hickory St, Atlanta, GA 30301" +260201,Bose SoundSport Headphones,1,99.99,09/16/19 21:32,"971 13th St, San Francisco, CA 94016" +260202,Apple Airpods Headphones,1,150,09/21/19 20:12,"20 Hickory St, New York City, NY 10001" +260202,AAA Batteries (4-pack),4,2.99,09/21/19 20:12,"20 Hickory St, New York City, NY 10001" +260203,AAA Batteries (4-pack),1,2.99,09/16/19 16:36,"658 Pine St, Austin, TX 73301" +260204,AA Batteries (4-pack),1,3.84,09/18/19 09:33,"530 Willow St, Atlanta, GA 30301" +260205,AA Batteries (4-pack),1,3.84,09/17/19 11:02,"382 Church St, Atlanta, GA 30301" +260206,USB-C Charging Cable,1,11.95,09/09/19 13:33,"194 1st St, Atlanta, GA 30301" +260207,AAA Batteries (4-pack),2,2.99,09/01/19 13:28,"31 Jefferson St, Los Angeles, CA 90001" +260208,Lightning Charging Cable,1,14.95,09/22/19 12:53,"842 Lincoln St, Los Angeles, CA 90001" +260209,Macbook Pro Laptop,1,1700,09/21/19 08:42,"432 Ridge St, Atlanta, GA 30301" +260210,Wired Headphones,1,11.99,09/27/19 20:19,"582 14th St, New York City, NY 10001" +260211,Wired Headphones,1,11.99,09/15/19 13:23,"516 8th St, Portland, ME 04101" +260212,Macbook Pro Laptop,1,1700,09/07/19 08:47,"806 Meadow St, Atlanta, GA 30301" +260213,27in FHD Monitor,1,149.99,09/16/19 19:06,"640 Adams St, Los Angeles, CA 90001" +260214,Lightning Charging Cable,1,14.95,09/14/19 13:25,"275 Hill St, Los Angeles, CA 90001" +260215,AAA Batteries (4-pack),1,2.99,09/24/19 06:58,"722 13th St, Seattle, WA 98101" +260216,USB-C Charging Cable,1,11.95,09/07/19 16:03,"552 Jefferson St, Boston, MA 02215" +260217,Lightning Charging Cable,1,14.95,09/26/19 16:17,"577 Willow St, Dallas, TX 75001" +260218,Wired Headphones,1,11.99,09/14/19 00:19,"173 Lake St, Boston, MA 02215" +260219,Vareebadd Phone,2,400,09/12/19 11:42,"886 Park St, Los Angeles, CA 90001" +260220,Apple Airpods Headphones,1,150,09/15/19 09:40,"850 4th St, New York City, NY 10001" +260221,AA Batteries (4-pack),1,3.84,09/27/19 10:43,"653 6th St, Austin, TX 73301" +260222,AA Batteries (4-pack),1,3.84,09/02/19 18:57,"105 Dogwood St, Austin, TX 73301" +260223,Flatscreen TV,1,300,09/26/19 15:16,"670 Maple St, San Francisco, CA 94016" +260224,USB-C Charging Cable,1,11.95,09/17/19 07:07,"947 Pine St, Los Angeles, CA 90001" +260225,AAA Batteries (4-pack),1,2.99,09/02/19 13:52,"275 Hickory St, Portland, OR 97035" +260226,Flatscreen TV,1,300,09/16/19 22:16,"45 11th St, Boston, MA 02215" +260227,27in 4K Gaming Monitor,1,389.99,09/09/19 18:54,"272 10th St, San Francisco, CA 94016" +260228,Wired Headphones,1,11.99,09/21/19 21:00,"492 Church St, Boston, MA 02215" +260229,AA Batteries (4-pack),1,3.84,09/10/19 13:16,"182 Ridge St, Dallas, TX 75001" +260230,Apple Airpods Headphones,1,150,09/13/19 12:15,"122 Jackson St, New York City, NY 10001" +260231,AAA Batteries (4-pack),2,2.99,09/07/19 12:26,"158 Park St, San Francisco, CA 94016" +260232,Macbook Pro Laptop,1,1700,09/12/19 22:22,"852 Church St, New York City, NY 10001" +260233,Apple Airpods Headphones,1,150,09/29/19 15:25,"413 Spruce St, Boston, MA 02215" +260234,Bose SoundSport Headphones,1,99.99,09/02/19 11:50,"353 Jefferson St, Dallas, TX 75001" +260235,AAA Batteries (4-pack),1,2.99,09/06/19 21:37,"831 South St, Boston, MA 02215" +260236,AA Batteries (4-pack),1,3.84,09/29/19 15:04,"816 South St, Boston, MA 02215" +260237,LG Dryer,1,600.0,09/21/19 17:13,"136 North St, Los Angeles, CA 90001" +260238,USB-C Charging Cable,1,11.95,09/15/19 13:32,"117 6th St, San Francisco, CA 94016" +260239,iPhone,1,700,09/25/19 15:15,"23 Wilson St, New York City, NY 10001" +260239,Apple Airpods Headphones,1,150,09/25/19 15:15,"23 Wilson St, New York City, NY 10001" +260240,Vareebadd Phone,1,400,09/22/19 15:10,"929 5th St, New York City, NY 10001" +260241,AAA Batteries (4-pack),1,2.99,09/17/19 23:53,"547 Ridge St, Seattle, WA 98101" +260242,20in Monitor,1,109.99,09/19/19 11:25,"645 Lincoln St, Dallas, TX 75001" +260243,AAA Batteries (4-pack),2,2.99,09/15/19 21:16,"835 River St, Seattle, WA 98101" +260244,Lightning Charging Cable,1,14.95,09/06/19 21:19,"548 North St, San Francisco, CA 94016" +260244,Lightning Charging Cable,1,14.95,09/06/19 21:19,"548 North St, San Francisco, CA 94016" +260245,Lightning Charging Cable,1,14.95,09/14/19 21:01,"294 Ridge St, Los Angeles, CA 90001" +260246,AA Batteries (4-pack),1,3.84,09/24/19 13:23,"724 Meadow St, New York City, NY 10001" +260247,USB-C Charging Cable,1,11.95,09/27/19 19:42,"11 North St, San Francisco, CA 94016" +260248,Wired Headphones,1,11.99,09/05/19 23:45,"539 10th St, San Francisco, CA 94016" +260249,27in FHD Monitor,1,149.99,09/10/19 22:34,"213 Lakeview St, San Francisco, CA 94016" +260250,Lightning Charging Cable,1,14.95,09/20/19 10:39,"366 Sunset St, Los Angeles, CA 90001" +260251,Apple Airpods Headphones,1,150,09/05/19 00:32,"780 South St, San Francisco, CA 94016" +260252,Google Phone,1,600,09/01/19 18:46,"169 Jefferson St, New York City, NY 10001" +260253,Lightning Charging Cable,1,14.95,09/05/19 20:07,"232 Park St, Atlanta, GA 30301" +260254,Google Phone,1,600,09/05/19 22:13,"729 Jackson St, Portland, OR 97035" +260254,USB-C Charging Cable,1,11.95,09/05/19 22:13,"729 Jackson St, Portland, OR 97035" +260255,AAA Batteries (4-pack),1,2.99,09/10/19 17:14,"672 Willow St, Los Angeles, CA 90001" +260256,Lightning Charging Cable,1,14.95,09/23/19 18:36,"452 Forest St, New York City, NY 10001" +260257,Wired Headphones,1,11.99,09/23/19 20:46,"2 Walnut St, San Francisco, CA 94016" +260258,AA Batteries (4-pack),2,3.84,09/05/19 19:37,"191 Walnut St, Boston, MA 02215" +260259,34in Ultrawide Monitor,1,379.99,09/01/19 11:52,"138 Hill St, San Francisco, CA 94016" +260260,Lightning Charging Cable,1,14.95,09/30/19 16:27,"769 Madison St, Boston, MA 02215" +260261,AAA Batteries (4-pack),2,2.99,09/06/19 04:40,"250 11th St, Seattle, WA 98101" +260262,AAA Batteries (4-pack),2,2.99,09/14/19 19:00,"512 6th St, Austin, TX 73301" +260263,AAA Batteries (4-pack),1,2.99,09/20/19 12:19,"755 Lake St, New York City, NY 10001" +260264,Macbook Pro Laptop,1,1700,09/10/19 22:25,"779 9th St, Austin, TX 73301" +260265,USB-C Charging Cable,1,11.95,09/19/19 07:52,"379 Hickory St, Austin, TX 73301" +260266,Lightning Charging Cable,2,14.95,09/06/19 18:29,"671 Spruce St, New York City, NY 10001" +260267,27in FHD Monitor,1,149.99,09/18/19 20:55,"123 14th St, New York City, NY 10001" +260268,Bose SoundSport Headphones,1,99.99,09/16/19 05:30,"454 Walnut St, San Francisco, CA 94016" +260269,AAA Batteries (4-pack),1,2.99,09/11/19 12:12,"7 14th St, San Francisco, CA 94016" +260270,AAA Batteries (4-pack),1,2.99,09/21/19 14:03,"831 11th St, Los Angeles, CA 90001" +260271,Wired Headphones,1,11.99,10/01/19 02:05,"687 8th St, New York City, NY 10001" +260272,USB-C Charging Cable,1,11.95,09/12/19 12:08,"779 Chestnut St, New York City, NY 10001" +260273,Lightning Charging Cable,1,14.95,09/11/19 14:43,"300 Elm St, Los Angeles, CA 90001" +260274,ThinkPad Laptop,1,999.99,09/11/19 20:24,"638 Madison St, San Francisco, CA 94016" +260275,Flatscreen TV,1,300,09/04/19 19:50,"158 1st St, Austin, TX 73301" +260275,Vareebadd Phone,1,400,09/04/19 19:50,"158 1st St, Austin, TX 73301" +260276,USB-C Charging Cable,1,11.95,09/05/19 22:12,"316 North St, New York City, NY 10001" +260277,34in Ultrawide Monitor,1,379.99,09/15/19 18:51,"280 Church St, Los Angeles, CA 90001" +260278,20in Monitor,1,109.99,09/29/19 18:52,"18 Center St, Seattle, WA 98101" +260279,LG Washing Machine,1,600.0,09/08/19 22:56,"323 9th St, Los Angeles, CA 90001" +260280,USB-C Charging Cable,1,11.95,09/26/19 12:42,"646 7th St, Boston, MA 02215" +260281,Lightning Charging Cable,1,14.95,09/20/19 16:53,"973 Highland St, San Francisco, CA 94016" +260282,AAA Batteries (4-pack),1,2.99,09/20/19 04:36,"547 Johnson St, Dallas, TX 75001" +260283,ThinkPad Laptop,1,999.99,09/24/19 19:53,"858 8th St, San Francisco, CA 94016" +260284,Lightning Charging Cable,1,14.95,09/30/19 01:15,"968 Ridge St, Seattle, WA 98101" +260285,USB-C Charging Cable,1,11.95,09/14/19 13:11,"26 Dogwood St, Seattle, WA 98101" +260286,USB-C Charging Cable,1,11.95,09/27/19 13:04,"224 Highland St, Dallas, TX 75001" +260287,Bose SoundSport Headphones,1,99.99,09/02/19 20:48,"113 Meadow St, Los Angeles, CA 90001" +260288,Lightning Charging Cable,1,14.95,09/04/19 21:03,"401 Madison St, Boston, MA 02215" +260289,34in Ultrawide Monitor,1,379.99,09/04/19 16:20,"979 North St, Dallas, TX 75001" +260290,20in Monitor,1,109.99,09/02/19 09:02,"450 West St, San Francisco, CA 94016" +260291,AAA Batteries (4-pack),1,2.99,09/07/19 09:35,"423 Dogwood St, San Francisco, CA 94016" +260292,Apple Airpods Headphones,1,150,09/08/19 12:09,"291 Hill St, Atlanta, GA 30301" +260293,Lightning Charging Cable,1,14.95,09/29/19 16:58,"995 Sunset St, San Francisco, CA 94016" +260294,27in 4K Gaming Monitor,1,389.99,09/29/19 00:31,"167 7th St, Portland, OR 97035" +260295,Apple Airpods Headphones,1,150,09/12/19 08:46,"162 Madison St, New York City, NY 10001" +260296,AAA Batteries (4-pack),2,2.99,09/09/19 11:11,"143 Center St, Boston, MA 02215" +260297,Macbook Pro Laptop,1,1700,09/24/19 05:33,"9 14th St, Atlanta, GA 30301" +260298,Bose SoundSport Headphones,1,99.99,09/02/19 21:21,"469 Washington St, San Francisco, CA 94016" +260299,USB-C Charging Cable,1,11.95,09/16/19 21:14,"517 5th St, San Francisco, CA 94016" +260300,Bose SoundSport Headphones,1,99.99,09/01/19 15:02,"810 Dogwood St, New York City, NY 10001" +260301,AAA Batteries (4-pack),2,2.99,09/17/19 23:30,"42 1st St, San Francisco, CA 94016" +260302,Flatscreen TV,1,300,09/10/19 12:57,"685 Walnut St, Atlanta, GA 30301" +,,,,, +260303,Lightning Charging Cable,1,14.95,09/17/19 12:44,"847 11th St, San Francisco, CA 94016" +260304,USB-C Charging Cable,1,11.95,09/08/19 13:13,"98 6th St, Boston, MA 02215" +260305,USB-C Charging Cable,1,11.95,09/01/19 16:19,"532 Sunset St, San Francisco, CA 94016" +260306,iPhone,1,700,09/02/19 18:42,"109 Wilson St, Portland, OR 97035" +260306,Lightning Charging Cable,1,14.95,09/02/19 18:42,"109 Wilson St, Portland, OR 97035" +260307,Lightning Charging Cable,1,14.95,09/22/19 13:12,"398 8th St, San Francisco, CA 94016" +260308,USB-C Charging Cable,1,11.95,09/05/19 17:45,"725 Meadow St, Portland, ME 04101" +260309,USB-C Charging Cable,2,11.95,09/07/19 15:54,"524 1st St, New York City, NY 10001" +260310,Lightning Charging Cable,1,14.95,09/22/19 11:39,"123 Jackson St, Austin, TX 73301" +260311,20in Monitor,1,109.99,09/11/19 20:42,"513 Main St, San Francisco, CA 94016" +260312,Apple Airpods Headphones,1,150,09/06/19 22:32,"620 North St, Seattle, WA 98101" +260313,Lightning Charging Cable,1,14.95,09/20/19 15:55,"266 Willow St, San Francisco, CA 94016" +260314,ThinkPad Laptop,1,999.99,09/10/19 17:14,"358 Jefferson St, Dallas, TX 75001" +260315,Lightning Charging Cable,1,14.95,09/02/19 14:28,"499 8th St, San Francisco, CA 94016" +260316,AAA Batteries (4-pack),1,2.99,09/19/19 11:57,"92 13th St, San Francisco, CA 94016" +260317,USB-C Charging Cable,1,11.95,09/07/19 18:12,"317 Park St, Boston, MA 02215" +260318,AAA Batteries (4-pack),2,2.99,09/23/19 21:24,"919 9th St, San Francisco, CA 94016" +260319,Lightning Charging Cable,2,14.95,09/05/19 15:20,"828 Adams St, New York City, NY 10001" +260320,AA Batteries (4-pack),1,3.84,09/01/19 13:28,"367 12th St, Portland, OR 97035" +260321,Wired Headphones,1,11.99,09/26/19 09:47,"192 Lake St, Portland, OR 97035" +260322,USB-C Charging Cable,2,11.95,09/08/19 16:05,"492 Willow St, Dallas, TX 75001" +260323,USB-C Charging Cable,1,11.95,09/09/19 18:34,"405 Lincoln St, San Francisco, CA 94016" +260324,USB-C Charging Cable,2,11.95,09/06/19 22:28,"545 Jackson St, Boston, MA 02215" +260325,Flatscreen TV,1,300,09/26/19 11:19,"500 Dogwood St, San Francisco, CA 94016" +260326,Apple Airpods Headphones,1,150,09/09/19 20:04,"367 10th St, Dallas, TX 75001" +260327,AA Batteries (4-pack),1,3.84,09/23/19 22:38,"524 14th St, New York City, NY 10001" +260328,Flatscreen TV,1,300,09/24/19 15:11,"459 Highland St, San Francisco, CA 94016" +260329,Wired Headphones,1,11.99,09/09/19 06:03,"700 Wilson St, Portland, OR 97035" +260330,Macbook Pro Laptop,1,1700,09/20/19 19:41,"259 Center St, San Francisco, CA 94016" +260331,Lightning Charging Cable,1,14.95,09/20/19 10:31,"650 13th St, Los Angeles, CA 90001" +260332,Apple Airpods Headphones,1,150,09/11/19 00:03,"605 Willow St, New York City, NY 10001" +260333,Lightning Charging Cable,2,14.95,09/05/19 19:06,"907 12th St, New York City, NY 10001" +260334,USB-C Charging Cable,1,11.95,09/23/19 13:02,"385 8th St, San Francisco, CA 94016" +260335,AA Batteries (4-pack),1,3.84,09/29/19 11:59,"915 Highland St, New York City, NY 10001" +260336,Bose SoundSport Headphones,1,99.99,09/28/19 16:59,"528 7th St, San Francisco, CA 94016" +260337,Wired Headphones,1,11.99,09/16/19 23:00,"157 5th St, San Francisco, CA 94016" +260337,AAA Batteries (4-pack),1,2.99,09/16/19 23:00,"157 5th St, San Francisco, CA 94016" +260338,Google Phone,1,600,09/27/19 00:00,"795 Wilson St, San Francisco, CA 94016" +260339,Vareebadd Phone,1,400,09/18/19 11:40,"531 Walnut St, Dallas, TX 75001" +260340,Bose SoundSport Headphones,1,99.99,09/30/19 21:02,"949 7th St, San Francisco, CA 94016" +260341,Wired Headphones,1,11.99,09/07/19 09:48,"209 Spruce St, San Francisco, CA 94016" +260342,USB-C Charging Cable,1,11.95,09/08/19 20:36,"953 7th St, New York City, NY 10001" +260343,AA Batteries (4-pack),1,3.84,09/07/19 18:34,"576 6th St, Boston, MA 02215" +260344,Apple Airpods Headphones,1,150,09/23/19 11:18,"425 Hill St, Los Angeles, CA 90001" +260345,34in Ultrawide Monitor,1,379.99,09/09/19 09:07,"271 Dogwood St, San Francisco, CA 94016" +260346,Lightning Charging Cable,1,14.95,09/22/19 19:34,"452 Washington St, Los Angeles, CA 90001" +260347,AA Batteries (4-pack),1,3.84,09/24/19 10:01,"178 Sunset St, Los Angeles, CA 90001" +260348,27in FHD Monitor,1,149.99,09/04/19 12:35,"482 Spruce St, San Francisco, CA 94016" +260349,Google Phone,1,600,09/06/19 18:56,"450 Elm St, Austin, TX 73301" +260350,34in Ultrawide Monitor,1,379.99,09/11/19 12:01,"509 Park St, New York City, NY 10001" +260351,AA Batteries (4-pack),1,3.84,09/03/19 09:47,"843 Washington St, Boston, MA 02215" +260352,AA Batteries (4-pack),1,3.84,09/10/19 17:57,"164 Hickory St, Atlanta, GA 30301" +260353,AAA Batteries (4-pack),1,2.99,09/19/19 15:02,"507 Elm St, San Francisco, CA 94016" +260354,USB-C Charging Cable,1,11.95,09/11/19 10:34,"275 Park St, San Francisco, CA 94016" +260355,Wired Headphones,1,11.99,09/10/19 15:01,"117 Center St, San Francisco, CA 94016" +260356,Lightning Charging Cable,1,14.95,09/14/19 10:44,"916 Willow St, San Francisco, CA 94016" +260357,27in 4K Gaming Monitor,1,389.99,09/05/19 20:11,"204 Maple St, Dallas, TX 75001" +260358,Apple Airpods Headphones,1,150,09/08/19 17:06,"701 Hickory St, San Francisco, CA 94016" +260359,Apple Airpods Headphones,1,150,09/05/19 18:00,"488 Wilson St, Portland, ME 04101" +260360,27in FHD Monitor,1,149.99,09/27/19 09:18,"281 Sunset St, Los Angeles, CA 90001" +260361,Wired Headphones,1,11.99,09/19/19 17:10,"409 Jackson St, Boston, MA 02215" +260362,27in FHD Monitor,1,149.99,09/28/19 16:09,"990 Hickory St, New York City, NY 10001" +260363,Apple Airpods Headphones,1,150,09/25/19 12:39,"882 Walnut St, Portland, ME 04101" +260364,Bose SoundSport Headphones,1,99.99,09/19/19 19:34,"278 Walnut St, Seattle, WA 98101" +260365,AA Batteries (4-pack),1,3.84,09/07/19 18:41,"569 5th St, New York City, NY 10001" +260366,Wired Headphones,1,11.99,09/20/19 17:34,"876 Jackson St, Dallas, TX 75001" +260367,AAA Batteries (4-pack),1,2.99,09/05/19 20:04,"380 2nd St, San Francisco, CA 94016" +260368,AA Batteries (4-pack),1,3.84,09/04/19 20:30,"237 Cedar St, Portland, OR 97035" +260369,AAA Batteries (4-pack),1,2.99,09/11/19 17:55,"355 11th St, Boston, MA 02215" +260370,AA Batteries (4-pack),1,3.84,09/03/19 18:55,"120 River St, Seattle, WA 98101" +260371,Lightning Charging Cable,1,14.95,09/22/19 10:38,"105 4th St, Portland, OR 97035" +260372,AA Batteries (4-pack),2,3.84,09/13/19 10:02,"957 Hill St, San Francisco, CA 94016" +260373,Apple Airpods Headphones,1,150,09/27/19 06:16,"983 Meadow St, Boston, MA 02215" +260374,USB-C Charging Cable,1,11.95,09/19/19 19:00,"51 14th St, Los Angeles, CA 90001" +260375,Bose SoundSport Headphones,1,99.99,09/02/19 21:55,"540 Willow St, San Francisco, CA 94016" +260376,USB-C Charging Cable,1,11.95,09/06/19 19:52,"110 North St, San Francisco, CA 94016" +260377,ThinkPad Laptop,1,999.99,09/20/19 11:55,"863 Walnut St, Boston, MA 02215" +260378,27in FHD Monitor,1,149.99,09/29/19 11:14,"511 Hill St, Atlanta, GA 30301" +260379,AA Batteries (4-pack),2,3.84,09/04/19 20:12,"346 Jackson St, New York City, NY 10001" +260380,27in 4K Gaming Monitor,1,389.99,09/04/19 09:45,"978 11th St, Atlanta, GA 30301" +260381,AA Batteries (4-pack),1,3.84,09/14/19 07:17,"990 Jefferson St, Atlanta, GA 30301" +260382,iPhone,1,700,09/11/19 22:30,"954 Elm St, Dallas, TX 75001" +260383,27in 4K Gaming Monitor,1,389.99,09/16/19 19:50,"682 Chestnut St, Los Angeles, CA 90001" +260384,Bose SoundSport Headphones,1,99.99,09/01/19 12:08,"430 Walnut St, San Francisco, CA 94016" +260385,Apple Airpods Headphones,1,150,09/22/19 18:29,"518 Elm St, Atlanta, GA 30301" +260386,Bose SoundSport Headphones,1,99.99,09/16/19 13:33,"954 Lakeview St, Atlanta, GA 30301" +260387,AA Batteries (4-pack),1,3.84,09/11/19 20:38,"829 Hill St, Dallas, TX 75001" +260387,Wired Headphones,1,11.99,09/11/19 20:38,"829 Hill St, Dallas, TX 75001" +260388,Lightning Charging Cable,1,14.95,09/03/19 02:34,"474 11th St, Dallas, TX 75001" +260389,AAA Batteries (4-pack),2,2.99,09/12/19 11:25,"673 Hill St, San Francisco, CA 94016" +260390,Lightning Charging Cable,1,14.95,09/25/19 02:57,"898 Madison St, San Francisco, CA 94016" +260391,Lightning Charging Cable,1,14.95,09/14/19 15:54,"232 Lakeview St, Los Angeles, CA 90001" +260392,AAA Batteries (4-pack),1,2.99,09/20/19 12:05,"188 2nd St, New York City, NY 10001" +260393,AAA Batteries (4-pack),1,2.99,09/10/19 06:11,"780 Hill St, Atlanta, GA 30301" +260394,Bose SoundSport Headphones,1,99.99,09/27/19 12:08,"625 Forest St, Seattle, WA 98101" +260395,Lightning Charging Cable,1,14.95,09/14/19 16:56,"632 Chestnut St, New York City, NY 10001" +260396,AAA Batteries (4-pack),1,2.99,09/14/19 13:57,"38 South St, Los Angeles, CA 90001" +260397,USB-C Charging Cable,1,11.95,09/20/19 11:20,"975 Johnson St, Portland, OR 97035" +260398,AA Batteries (4-pack),5,3.84,09/18/19 21:15,"840 14th St, Atlanta, GA 30301" +260399,USB-C Charging Cable,2,11.95,09/01/19 22:43,"105 11th St, Portland, OR 97035" +260400,AAA Batteries (4-pack),3,2.99,09/01/19 13:12,"717 10th St, New York City, NY 10001" +260401,Lightning Charging Cable,1,14.95,09/17/19 12:32,"883 14th St, San Francisco, CA 94016" +260402,Wired Headphones,1,11.99,09/21/19 05:54,"434 Dogwood St, Los Angeles, CA 90001" +,,,,, +260403,27in 4K Gaming Monitor,1,389.99,09/03/19 15:25,"731 Johnson St, Boston, MA 02215" +260404,USB-C Charging Cable,1,11.95,09/21/19 07:15,"929 Meadow St, Los Angeles, CA 90001" +260405,USB-C Charging Cable,1,11.95,09/01/19 17:33,"49 4th St, Boston, MA 02215" +260406,iPhone,1,700,09/14/19 17:28,"948 Center St, San Francisco, CA 94016" +260406,Lightning Charging Cable,1,14.95,09/14/19 17:28,"948 Center St, San Francisco, CA 94016" +260407,Lightning Charging Cable,1,14.95,09/21/19 19:38,"624 9th St, Portland, ME 04101" +260408,Google Phone,1,600,09/15/19 09:32,"59 Washington St, Dallas, TX 75001" +260409,Bose SoundSport Headphones,1,99.99,09/12/19 12:05,"34 5th St, San Francisco, CA 94016" +260410,Lightning Charging Cable,1,14.95,09/02/19 21:07,"535 8th St, Austin, TX 73301" +260411,Lightning Charging Cable,1,14.95,09/13/19 09:05,"409 Washington St, Seattle, WA 98101" +260412,Apple Airpods Headphones,1,150,09/23/19 21:05,"450 Sunset St, Portland, OR 97035" +260413,Lightning Charging Cable,1,14.95,09/11/19 23:37,"756 Pine St, New York City, NY 10001" +260414,USB-C Charging Cable,1,11.95,09/13/19 14:34,"310 Washington St, Seattle, WA 98101" +260415,Wired Headphones,1,11.99,09/01/19 07:36,"184 Lincoln St, Los Angeles, CA 90001" +260416,20in Monitor,1,109.99,09/28/19 08:24,"89 14th St, Boston, MA 02215" +260417,AA Batteries (4-pack),1,3.84,09/27/19 00:50,"103 10th St, Portland, ME 04101" +260418,AAA Batteries (4-pack),1,2.99,09/06/19 16:26,"59 5th St, Dallas, TX 75001" +260419,Wired Headphones,1,11.99,09/04/19 14:30,"635 South St, Atlanta, GA 30301" +260420,27in 4K Gaming Monitor,1,389.99,09/04/19 10:40,"641 Cedar St, San Francisco, CA 94016" +260421,USB-C Charging Cable,1,11.95,09/08/19 11:40,"595 Jefferson St, Seattle, WA 98101" +260422,AA Batteries (4-pack),1,3.84,09/14/19 20:04,"223 Park St, Atlanta, GA 30301" +260423,AA Batteries (4-pack),1,3.84,09/04/19 22:37,"624 West St, San Francisco, CA 94016" +260424,USB-C Charging Cable,1,11.95,09/10/19 07:51,"690 4th St, Los Angeles, CA 90001" +260425,Macbook Pro Laptop,1,1700,09/01/19 23:31,"697 Walnut St, Los Angeles, CA 90001" +260426,27in FHD Monitor,1,149.99,09/12/19 16:43,"644 Johnson St, San Francisco, CA 94016" +260427,20in Monitor,1,109.99,09/20/19 11:46,"757 Adams St, Atlanta, GA 30301" +260428,Bose SoundSport Headphones,1,99.99,09/02/19 17:36,"28 9th St, New York City, NY 10001" +260429,USB-C Charging Cable,2,11.95,09/13/19 12:32,"447 Johnson St, Austin, TX 73301" +260430,Bose SoundSport Headphones,1,99.99,09/06/19 15:07,"590 2nd St, New York City, NY 10001" +260431,27in FHD Monitor,1,149.99,09/24/19 11:54,"424 Pine St, Los Angeles, CA 90001" +260432,Apple Airpods Headphones,1,150,09/29/19 19:16,"80 9th St, Austin, TX 73301" +260433,Apple Airpods Headphones,1,150,09/25/19 17:04,"296 10th St, New York City, NY 10001" +260434,Apple Airpods Headphones,1,150,09/02/19 09:50,"863 Adams St, San Francisco, CA 94016" +260435,34in Ultrawide Monitor,1,379.99,09/24/19 18:57,"444 2nd St, Portland, OR 97035" +260436,Bose SoundSport Headphones,1,99.99,09/15/19 16:46,"616 Highland St, Austin, TX 73301" +260437,Vareebadd Phone,1,400,09/21/19 12:35,"772 Lincoln St, Austin, TX 73301" +260438,USB-C Charging Cable,1,11.95,09/11/19 17:09,"94 Chestnut St, Austin, TX 73301" +260439,USB-C Charging Cable,2,11.95,09/09/19 20:53,"56 Elm St, Boston, MA 02215" +260440,Apple Airpods Headphones,1,150,09/04/19 10:16,"409 Lake St, Boston, MA 02215" +260441,Google Phone,1,600,09/12/19 21:29,"798 Chestnut St, Boston, MA 02215" +260442,AAA Batteries (4-pack),1,2.99,09/19/19 18:18,"227 9th St, Los Angeles, CA 90001" +260443,Google Phone,1,600,09/29/19 21:08,"460 Cedar St, Los Angeles, CA 90001" +260444,Lightning Charging Cable,1,14.95,09/27/19 13:13,"475 Highland St, Portland, OR 97035" +260445,AAA Batteries (4-pack),1,2.99,09/30/19 18:40,"780 Spruce St, New York City, NY 10001" +260446,Lightning Charging Cable,1,14.95,09/25/19 18:18,"442 Cedar St, San Francisco, CA 94016" +260447,27in 4K Gaming Monitor,1,389.99,09/26/19 21:42,"140 12th St, Portland, OR 97035" +260448,AA Batteries (4-pack),2,3.84,09/24/19 14:35,"324 2nd St, Los Angeles, CA 90001" +260449,Lightning Charging Cable,1,14.95,09/15/19 08:56,"554 Ridge St, Los Angeles, CA 90001" +260450,AA Batteries (4-pack),1,3.84,09/16/19 14:20,"694 Madison St, New York City, NY 10001" +260451,Lightning Charging Cable,1,14.95,09/24/19 11:38,"887 2nd St, San Francisco, CA 94016" +260452,Wired Headphones,1,11.99,09/02/19 18:56,"935 8th St, New York City, NY 10001" +260453,USB-C Charging Cable,1,11.95,09/23/19 18:35,"917 Lakeview St, Atlanta, GA 30301" +260454,Lightning Charging Cable,1,14.95,09/16/19 21:14,"28 Sunset St, Atlanta, GA 30301" +260455,AAA Batteries (4-pack),1,2.99,09/10/19 18:57,"682 Chestnut St, New York City, NY 10001" +260456,iPhone,1,700,09/18/19 18:27,"127 Ridge St, Portland, OR 97035" +260456,Apple Airpods Headphones,1,150,09/18/19 18:27,"127 Ridge St, Portland, OR 97035" +260457,Flatscreen TV,1,300,09/29/19 10:09,"912 Lakeview St, Dallas, TX 75001" +260458,AAA Batteries (4-pack),2,2.99,09/27/19 13:38,"821 Church St, Los Angeles, CA 90001" +260459,Apple Airpods Headphones,1,150,09/27/19 18:08,"333 9th St, Austin, TX 73301" +260460,Bose SoundSport Headphones,1,99.99,09/28/19 23:43,"434 Willow St, Portland, OR 97035" +260461,Bose SoundSport Headphones,1,99.99,09/25/19 12:40,"334 Maple St, San Francisco, CA 94016" +260462,AAA Batteries (4-pack),1,2.99,09/13/19 16:11,"496 6th St, Austin, TX 73301" +260463,AA Batteries (4-pack),1,3.84,09/02/19 10:47,"433 River St, Austin, TX 73301" +260464,27in FHD Monitor,1,149.99,09/06/19 12:08,"369 North St, Los Angeles, CA 90001" +260465,AAA Batteries (4-pack),1,2.99,09/29/19 20:05,"14 River St, Boston, MA 02215" +260466,AAA Batteries (4-pack),1,2.99,09/11/19 12:53,"908 8th St, Seattle, WA 98101" +260467,Apple Airpods Headphones,1,150,09/04/19 09:32,"623 Maple St, New York City, NY 10001" +260468,USB-C Charging Cable,1,11.95,09/07/19 00:29,"293 13th St, Atlanta, GA 30301" +260469,AAA Batteries (4-pack),2,2.99,09/02/19 17:31,"415 14th St, San Francisco, CA 94016" +260470,Macbook Pro Laptop,1,1700,09/18/19 20:30,"996 West St, San Francisco, CA 94016" +260471,AA Batteries (4-pack),2,3.84,09/11/19 11:09,"710 Meadow St, Austin, TX 73301" +260472,Apple Airpods Headphones,1,150,09/24/19 22:24,"784 Johnson St, Atlanta, GA 30301" +260473,Macbook Pro Laptop,1,1700,09/10/19 20:29,"122 5th St, San Francisco, CA 94016" +260474,Apple Airpods Headphones,1,150,09/26/19 12:27,"717 Johnson St, Dallas, TX 75001" +260475,34in Ultrawide Monitor,1,379.99,09/01/19 13:17,"234 Center St, Boston, MA 02215" +260476,34in Ultrawide Monitor,1,379.99,09/30/19 22:11,"655 5th St, New York City, NY 10001" +260477,Wired Headphones,2,11.99,09/05/19 17:19,"784 Chestnut St, San Francisco, CA 94016" +260478,Bose SoundSport Headphones,1,99.99,09/15/19 14:16,"474 Madison St, Los Angeles, CA 90001" +260479,Lightning Charging Cable,1,14.95,09/15/19 13:06,"493 West St, Los Angeles, CA 90001" +260480,Lightning Charging Cable,1,14.95,09/03/19 14:44,"432 13th St, Portland, ME 04101" +260481,34in Ultrawide Monitor,1,379.99,09/25/19 17:35,"10 Hickory St, Boston, MA 02215" +260482,34in Ultrawide Monitor,1,379.99,09/27/19 11:40,"216 Meadow St, Dallas, TX 75001" +260483,Wired Headphones,1,11.99,09/05/19 18:53,"599 Hickory St, Los Angeles, CA 90001" +260484,Wired Headphones,1,11.99,09/29/19 16:47,"276 Meadow St, Portland, OR 97035" +260485,Vareebadd Phone,1,400,09/05/19 23:28,"843 South St, Boston, MA 02215" +260486,Bose SoundSport Headphones,1,99.99,09/27/19 14:00,"38 Dogwood St, San Francisco, CA 94016" +260487,Bose SoundSport Headphones,1,99.99,09/06/19 11:28,"794 7th St, Boston, MA 02215" +260488,AA Batteries (4-pack),1,3.84,09/22/19 15:47,"445 Main St, Portland, OR 97035" +,,,,, +260489,Wired Headphones,1,11.99,09/19/19 22:35,"459 9th St, Seattle, WA 98101" +260490,Bose SoundSport Headphones,1,99.99,09/21/19 11:44,"638 Willow St, Los Angeles, CA 90001" +260491,20in Monitor,1,109.99,09/05/19 11:37,"816 Park St, San Francisco, CA 94016" +260492,Flatscreen TV,1,300,09/08/19 04:49,"867 South St, Dallas, TX 75001" +260493,27in 4K Gaming Monitor,1,389.99,09/20/19 01:44,"988 Willow St, Los Angeles, CA 90001" +260494,AA Batteries (4-pack),1,3.84,09/17/19 16:37,"92 9th St, Los Angeles, CA 90001" +260495,Bose SoundSport Headphones,1,99.99,09/02/19 20:15,"556 Highland St, Boston, MA 02215" +260496,Apple Airpods Headphones,1,150,09/15/19 21:13,"368 10th St, Boston, MA 02215" +260497,USB-C Charging Cable,1,11.95,09/30/19 13:11,"131 Church St, Portland, ME 04101" +260498,Google Phone,1,600,09/20/19 10:27,"15 River St, San Francisco, CA 94016" +260498,USB-C Charging Cable,1,11.95,09/20/19 10:27,"15 River St, San Francisco, CA 94016" +260498,Apple Airpods Headphones,1,150,09/20/19 10:27,"15 River St, San Francisco, CA 94016" +260499,Lightning Charging Cable,1,14.95,09/17/19 11:08,"834 Adams St, San Francisco, CA 94016" +260500,AA Batteries (4-pack),1,3.84,09/28/19 00:31,"366 Hickory St, Atlanta, GA 30301" +260501,27in 4K Gaming Monitor,1,389.99,09/20/19 06:20,"76 Madison St, San Francisco, CA 94016" +260502,ThinkPad Laptop,1,999.99,09/10/19 21:52,"454 13th St, Atlanta, GA 30301" +260503,Flatscreen TV,1,300,09/03/19 20:45,"917 West St, Portland, ME 04101" +260504,Google Phone,1,600,09/28/19 13:53,"728 Jackson St, Los Angeles, CA 90001" +260505,AA Batteries (4-pack),1,3.84,09/26/19 15:09,"285 2nd St, Dallas, TX 75001" +260506,27in FHD Monitor,1,149.99,09/16/19 17:39,"587 9th St, Seattle, WA 98101" +260507,ThinkPad Laptop,1,999.99,09/02/19 20:55,"948 Hill St, San Francisco, CA 94016" +260508,AA Batteries (4-pack),1,3.84,09/01/19 21:29,"67 Forest St, Los Angeles, CA 90001" +260509,AAA Batteries (4-pack),1,2.99,09/30/19 02:02,"518 North St, New York City, NY 10001" +260510,Lightning Charging Cable,1,14.95,09/23/19 10:53,"440 South St, Seattle, WA 98101" +260511,Vareebadd Phone,1,400,09/25/19 14:48,"747 Hickory St, Boston, MA 02215" +260511,USB-C Charging Cable,1,11.95,09/25/19 14:48,"747 Hickory St, Boston, MA 02215" +260512,Apple Airpods Headphones,1,150,09/26/19 11:12,"938 River St, Dallas, TX 75001" +260513,Wired Headphones,1,11.99,09/27/19 11:36,"546 Pine St, Portland, OR 97035" +260514,AAA Batteries (4-pack),1,2.99,09/22/19 09:00,"826 Center St, Dallas, TX 75001" +260515,USB-C Charging Cable,1,11.95,09/26/19 17:23,"962 Dogwood St, Los Angeles, CA 90001" +260516,Macbook Pro Laptop,1,1700,09/23/19 19:13,"644 5th St, New York City, NY 10001" +260517,Bose SoundSport Headphones,1,99.99,09/09/19 13:26,"427 6th St, Los Angeles, CA 90001" +260518,Lightning Charging Cable,1,14.95,09/24/19 18:08,"301 14th St, Dallas, TX 75001" +260519,AAA Batteries (4-pack),1,2.99,09/23/19 22:34,"600 5th St, New York City, NY 10001" +260520,Bose SoundSport Headphones,1,99.99,09/26/19 16:36,"422 11th St, Los Angeles, CA 90001" +260521,Wired Headphones,1,11.99,09/22/19 19:36,"458 5th St, San Francisco, CA 94016" +260522,AAA Batteries (4-pack),3,2.99,09/23/19 14:16,"762 7th St, Boston, MA 02215" +260523,AA Batteries (4-pack),2,3.84,09/24/19 13:52,"878 Main St, Dallas, TX 75001" +260524,Apple Airpods Headphones,1,150,09/22/19 10:15,"587 14th St, New York City, NY 10001" +260525,Lightning Charging Cable,1,14.95,09/01/19 11:03,"175 Ridge St, New York City, NY 10001" +260526,Macbook Pro Laptop,1,1700,09/03/19 08:24,"833 Madison St, Boston, MA 02215" +260527,USB-C Charging Cable,1,11.95,09/20/19 16:42,"879 Willow St, Atlanta, GA 30301" +260528,AA Batteries (4-pack),1,3.84,09/27/19 11:53,"195 Church St, San Francisco, CA 94016" +260529,AA Batteries (4-pack),1,3.84,09/29/19 01:08,"203 Park St, Atlanta, GA 30301" +260530,Wired Headphones,1,11.99,09/01/19 22:07,"431 8th St, Boston, MA 02215" +260531,AAA Batteries (4-pack),2,2.99,09/25/19 23:15,"657 Lincoln St, Dallas, TX 75001" +260532,Lightning Charging Cable,1,14.95,09/25/19 10:48,"84 River St, Los Angeles, CA 90001" +260533,Lightning Charging Cable,2,14.95,09/22/19 17:48,"839 West St, New York City, NY 10001" +260534,Bose SoundSport Headphones,1,99.99,09/12/19 11:42,"506 Wilson St, Atlanta, GA 30301" +260535,AAA Batteries (4-pack),1,2.99,09/30/19 10:57,"133 12th St, Portland, OR 97035" +260536,AA Batteries (4-pack),1,3.84,09/30/19 13:32,"887 Ridge St, San Francisco, CA 94016" +260537,Apple Airpods Headphones,1,150,09/26/19 14:10,"585 Main St, San Francisco, CA 94016" +260538,Flatscreen TV,1,300,09/23/19 22:59,"179 1st St, San Francisco, CA 94016" +260539,27in FHD Monitor,1,149.99,09/30/19 16:12,"548 5th St, New York City, NY 10001" +260539,Bose SoundSport Headphones,1,99.99,09/30/19 16:12,"548 5th St, New York City, NY 10001" +260540,34in Ultrawide Monitor,1,379.99,09/18/19 12:23,"28 Dogwood St, San Francisco, CA 94016" +260541,Wired Headphones,3,11.99,09/06/19 23:21,"51 Church St, Seattle, WA 98101" +260542,Flatscreen TV,1,300,09/29/19 00:14,"783 Hickory St, Dallas, TX 75001" +260543,27in 4K Gaming Monitor,1,389.99,09/18/19 01:09,"195 Lakeview St, San Francisco, CA 94016" +260544,Apple Airpods Headphones,1,150,09/28/19 16:00,"426 Cedar St, Atlanta, GA 30301" +260545,Macbook Pro Laptop,1,1700,09/24/19 23:57,"491 Walnut St, Seattle, WA 98101" +260546,Macbook Pro Laptop,1,1700,09/06/19 16:49,"316 Church St, Seattle, WA 98101" +260547,27in 4K Gaming Monitor,1,389.99,09/14/19 18:55,"807 Jackson St, New York City, NY 10001" +260548,34in Ultrawide Monitor,1,379.99,09/11/19 13:13,"378 Center St, San Francisco, CA 94016" +260549,AA Batteries (4-pack),1,3.84,09/23/19 07:17,"59 Main St, Atlanta, GA 30301" +260550,AA Batteries (4-pack),1,3.84,09/07/19 07:23,"742 6th St, Atlanta, GA 30301" +260551,Wired Headphones,1,11.99,09/26/19 18:05,"577 5th St, Dallas, TX 75001" +260552,AA Batteries (4-pack),2,3.84,09/18/19 18:45,"553 Madison St, Austin, TX 73301" +260553,34in Ultrawide Monitor,1,379.99,09/13/19 12:27,"738 Willow St, San Francisco, CA 94016" +260554,AA Batteries (4-pack),1,3.84,09/19/19 20:47,"850 Johnson St, San Francisco, CA 94016" +260555,AA Batteries (4-pack),1,3.84,09/19/19 19:08,"28 Park St, Portland, ME 04101" +260556,AA Batteries (4-pack),1,3.84,09/02/19 18:25,"161 Dogwood St, Seattle, WA 98101" +260557,Wired Headphones,1,11.99,09/22/19 18:42,"725 Washington St, Boston, MA 02215" +260558,AAA Batteries (4-pack),1,2.99,09/09/19 22:50,"568 9th St, Portland, ME 04101" +260559,LG Dryer,1,600.0,09/28/19 19:56,"165 Ridge St, Los Angeles, CA 90001" +260560,iPhone,1,700,09/01/19 14:12,"69 Madison St, San Francisco, CA 94016" +260561,AA Batteries (4-pack),1,3.84,09/25/19 23:55,"767 Forest St, San Francisco, CA 94016" +260562,Wired Headphones,1,11.99,09/08/19 21:28,"719 5th St, San Francisco, CA 94016" +260563,Google Phone,1,600,09/15/19 10:57,"209 Elm St, New York City, NY 10001" +260564,Macbook Pro Laptop,1,1700,09/11/19 10:35,"148 Jefferson St, Los Angeles, CA 90001" +260565,iPhone,1,700,09/15/19 23:06,"974 Johnson St, New York City, NY 10001" +260566,AA Batteries (4-pack),1,3.84,09/30/19 14:55,"308 Sunset St, New York City, NY 10001" +260567,AAA Batteries (4-pack),1,2.99,09/05/19 13:32,"836 South St, Los Angeles, CA 90001" +260568,Macbook Pro Laptop,1,1700,09/25/19 14:24,"4 9th St, Boston, MA 02215" +260569,Bose SoundSport Headphones,1,99.99,09/24/19 12:05,"242 Chestnut St, Dallas, TX 75001" +260570,AAA Batteries (4-pack),1,2.99,09/10/19 01:11,"476 Madison St, New York City, NY 10001" +260571,27in 4K Gaming Monitor,1,389.99,09/07/19 17:56,"988 Cedar St, San Francisco, CA 94016" +260572,USB-C Charging Cable,1,11.95,09/05/19 23:14,"248 Lakeview St, Atlanta, GA 30301" +260573,Macbook Pro Laptop,1,1700,09/17/19 11:53,"797 Lincoln St, New York City, NY 10001" +260574,Bose SoundSport Headphones,1,99.99,09/14/19 15:02,"211 14th St, New York City, NY 10001" +260575,Bose SoundSport Headphones,1,99.99,09/05/19 19:00,"957 Lincoln St, Boston, MA 02215" +260576,USB-C Charging Cable,1,11.95,09/11/19 20:27,"393 Cherry St, Dallas, TX 75001" +260577,Macbook Pro Laptop,1,1700,09/09/19 08:09,"149 Lakeview St, Los Angeles, CA 90001" +260578,Lightning Charging Cable,1,14.95,09/01/19 20:11,"308 Wilson St, Portland, OR 97035" +260579,34in Ultrawide Monitor,1,379.99,09/17/19 11:39,"89 Ridge St, San Francisco, CA 94016" +260580,Lightning Charging Cable,1,14.95,09/26/19 11:18,"821 Pine St, San Francisco, CA 94016" +260581,AA Batteries (4-pack),1,3.84,09/28/19 22:35,"120 9th St, Los Angeles, CA 90001" +260582,AAA Batteries (4-pack),1,2.99,09/06/19 14:36,"917 Ridge St, Atlanta, GA 30301" +260583,Wired Headphones,1,11.99,09/06/19 23:46,"380 Jefferson St, San Francisco, CA 94016" +260584,Macbook Pro Laptop,1,1700,09/10/19 21:33,"639 Elm St, Austin, TX 73301" +260585,Google Phone,1,600,09/21/19 12:50,"63 Hickory St, Seattle, WA 98101" +260586,Bose SoundSport Headphones,1,99.99,09/14/19 21:57,"330 Chestnut St, Dallas, TX 75001" +260587,USB-C Charging Cable,1,11.95,09/02/19 08:57,"325 Church St, San Francisco, CA 94016" +260588,Bose SoundSport Headphones,1,99.99,09/02/19 00:07,"425 Meadow St, San Francisco, CA 94016" +260589,AA Batteries (4-pack),1,3.84,09/05/19 20:06,"499 13th St, Atlanta, GA 30301" +260590,Lightning Charging Cable,2,14.95,09/29/19 08:38,"918 12th St, New York City, NY 10001" +260591,USB-C Charging Cable,1,11.95,09/25/19 21:43,"668 8th St, Boston, MA 02215" +260592,AAA Batteries (4-pack),1,2.99,09/16/19 08:10,"365 Washington St, Seattle, WA 98101" +260593,Google Phone,1,600,09/30/19 18:29,"226 1st St, Portland, OR 97035" +260594,34in Ultrawide Monitor,1,379.99,09/11/19 10:02,"783 Wilson St, Dallas, TX 75001" +260595,AA Batteries (4-pack),2,3.84,09/01/19 19:13,"380 Jackson St, New York City, NY 10001" +260596,AAA Batteries (4-pack),2,2.99,09/18/19 22:03,"351 Madison St, Portland, OR 97035" +260597,27in 4K Gaming Monitor,1,389.99,09/22/19 23:15,"775 Lincoln St, Dallas, TX 75001" +260598,AAA Batteries (4-pack),2,2.99,09/10/19 12:45,"641 Lincoln St, Dallas, TX 75001" +260599,Apple Airpods Headphones,1,150,09/05/19 09:55,"178 11th St, Los Angeles, CA 90001" +260600,AAA Batteries (4-pack),1,2.99,09/02/19 09:28,"725 Jackson St, Boston, MA 02215" +260601,Apple Airpods Headphones,1,150,09/04/19 16:15,"934 Lakeview St, Los Angeles, CA 90001" +260602,AA Batteries (4-pack),1,3.84,09/19/19 17:16,"969 Meadow St, San Francisco, CA 94016" +260603,Lightning Charging Cable,1,14.95,09/13/19 12:18,"426 Lake St, San Francisco, CA 94016" +260604,AA Batteries (4-pack),1,3.84,09/08/19 12:37,"785 South St, Austin, TX 73301" +260605,Flatscreen TV,1,300,09/18/19 15:21,"60 Lincoln St, San Francisco, CA 94016" +260606,Google Phone,1,600,09/21/19 14:39,"588 Hickory St, Dallas, TX 75001" +260606,Wired Headphones,2,11.99,09/21/19 14:39,"588 Hickory St, Dallas, TX 75001" +260607,20in Monitor,1,109.99,09/22/19 19:57,"670 7th St, Los Angeles, CA 90001" +260608,27in 4K Gaming Monitor,1,389.99,09/11/19 10:38,"356 Park St, New York City, NY 10001" +260609,Google Phone,1,600,09/14/19 10:47,"315 4th St, Dallas, TX 75001" +260610,Apple Airpods Headphones,1,150,09/15/19 21:39,"863 Church St, Boston, MA 02215" +260611,Wired Headphones,1,11.99,09/22/19 07:39,"82 Lakeview St, San Francisco, CA 94016" +260612,Wired Headphones,1,11.99,09/06/19 03:56,"292 Adams St, Dallas, TX 75001" +260613,AA Batteries (4-pack),1,3.84,09/29/19 14:35,"516 Adams St, Boston, MA 02215" +260614,Wired Headphones,1,11.99,09/12/19 11:05,"527 Jefferson St, San Francisco, CA 94016" +260615,Bose SoundSport Headphones,1,99.99,09/26/19 07:01,"382 Adams St, San Francisco, CA 94016" +260616,USB-C Charging Cable,1,11.95,09/14/19 14:14,"886 Johnson St, New York City, NY 10001" +260617,iPhone,1,700,09/05/19 13:09,"631 2nd St, New York City, NY 10001" +260618,Bose SoundSport Headphones,1,99.99,09/30/19 11:26,"756 Walnut St, San Francisco, CA 94016" +260619,Bose SoundSport Headphones,1,99.99,09/04/19 08:55,"751 Center St, Seattle, WA 98101" +260620,AAA Batteries (4-pack),1,2.99,09/03/19 08:45,"292 2nd St, San Francisco, CA 94016" +260621,AAA Batteries (4-pack),2,2.99,09/05/19 14:16,"363 Meadow St, New York City, NY 10001" +260622,34in Ultrawide Monitor,1,379.99,09/03/19 09:41,"973 2nd St, Los Angeles, CA 90001" +260623,Google Phone,1,600,09/20/19 03:23,"758 Meadow St, New York City, NY 10001" +260623,Wired Headphones,1,11.99,09/20/19 03:23,"758 Meadow St, New York City, NY 10001" +260624,Apple Airpods Headphones,1,150,09/07/19 09:32,"261 Wilson St, Dallas, TX 75001" +260625,AAA Batteries (4-pack),1,2.99,09/03/19 14:30,"769 Adams St, Atlanta, GA 30301" +260626,AA Batteries (4-pack),2,3.84,09/28/19 05:02,"935 13th St, Portland, OR 97035" +260627,Apple Airpods Headphones,1,150,09/07/19 20:30,"711 Church St, Dallas, TX 75001" +260628,Lightning Charging Cable,1,14.95,09/14/19 16:44,"201 Lakeview St, Atlanta, GA 30301" +260629,Bose SoundSport Headphones,1,99.99,09/04/19 21:08,"346 River St, Austin, TX 73301" +260630,AAA Batteries (4-pack),1,2.99,09/03/19 21:54,"239 Cedar St, Boston, MA 02215" +260631,USB-C Charging Cable,1,11.95,09/11/19 19:13,"109 11th St, Los Angeles, CA 90001" +260632,Bose SoundSport Headphones,1,99.99,09/01/19 14:32,"801 Elm St, Boston, MA 02215" +260633,AAA Batteries (4-pack),1,2.99,09/03/19 11:57,"502 West St, Boston, MA 02215" +260634,Apple Airpods Headphones,1,150,09/21/19 13:15,"482 Ridge St, Dallas, TX 75001" +260635,AAA Batteries (4-pack),1,2.99,09/18/19 19:52,"862 Adams St, Boston, MA 02215" +260636,ThinkPad Laptop,1,999.99,09/27/19 10:58,"804 South St, New York City, NY 10001" +260637,Apple Airpods Headphones,1,150,09/22/19 14:06,"382 North St, San Francisco, CA 94016" +260638,AA Batteries (4-pack),3,3.84,09/24/19 00:49,"587 Washington St, Atlanta, GA 30301" +260639,AAA Batteries (4-pack),1,2.99,09/09/19 13:10,"848 Pine St, New York City, NY 10001" +260640,ThinkPad Laptop,1,999.99,09/09/19 08:38,"804 10th St, San Francisco, CA 94016" +260641,20in Monitor,1,109.99,09/28/19 20:14,"102 Pine St, San Francisco, CA 94016" +260642,27in FHD Monitor,1,149.99,09/22/19 14:20,"633 Hickory St, Portland, ME 04101" +260643,AAA Batteries (4-pack),2,2.99,09/06/19 16:52,"350 Forest St, San Francisco, CA 94016" +260644,34in Ultrawide Monitor,1,379.99,09/19/19 07:48,"934 4th St, Seattle, WA 98101" +260645,AAA Batteries (4-pack),3,2.99,09/14/19 13:39,"115 Forest St, Boston, MA 02215" +260646,AA Batteries (4-pack),1,3.84,09/11/19 11:33,"356 Spruce St, New York City, NY 10001" +260647,Bose SoundSport Headphones,1,99.99,09/03/19 14:45,"382 Adams St, Seattle, WA 98101" +260648,AAA Batteries (4-pack),1,2.99,09/17/19 09:53,"155 Lincoln St, Seattle, WA 98101" +260649,Lightning Charging Cable,1,14.95,09/30/19 13:43,"702 Cedar St, Atlanta, GA 30301" +260650,AA Batteries (4-pack),1,3.84,09/19/19 23:13,"463 Cherry St, Dallas, TX 75001" +260650,34in Ultrawide Monitor,1,379.99,09/19/19 23:13,"463 Cherry St, Dallas, TX 75001" +260651,AAA Batteries (4-pack),1,2.99,09/20/19 11:55,"430 Cherry St, Atlanta, GA 30301" +260651,Lightning Charging Cable,1,14.95,09/20/19 11:55,"430 Cherry St, Atlanta, GA 30301" +260652,AA Batteries (4-pack),2,3.84,09/29/19 19:39,"938 Church St, Los Angeles, CA 90001" +260653,Wired Headphones,2,11.99,09/14/19 16:09,"653 Main St, Los Angeles, CA 90001" +260654,USB-C Charging Cable,1,11.95,09/23/19 19:07,"8 Washington St, Dallas, TX 75001" +260655,34in Ultrawide Monitor,1,379.99,09/02/19 04:33,"799 Main St, Portland, OR 97035" +260656,Lightning Charging Cable,1,14.95,09/18/19 08:09,"859 Dogwood St, Austin, TX 73301" +260657,Wired Headphones,1,11.99,09/25/19 17:47,"439 2nd St, San Francisco, CA 94016" +260658,USB-C Charging Cable,1,11.95,09/26/19 09:34,"134 Jefferson St, Boston, MA 02215" +260659,Lightning Charging Cable,1,14.95,09/01/19 14:34,"179 Church St, New York City, NY 10001" +260660,iPhone,1,700,09/08/19 18:11,"129 Church St, San Francisco, CA 94016" +260660,Wired Headphones,2,11.99,09/08/19 18:11,"129 Church St, San Francisco, CA 94016" +260661,Lightning Charging Cable,1,14.95,09/02/19 17:39,"640 Forest St, Seattle, WA 98101" +260662,Wired Headphones,1,11.99,09/09/19 09:47,"659 North St, San Francisco, CA 94016" +260663,34in Ultrawide Monitor,1,379.99,09/14/19 11:09,"183 Main St, Los Angeles, CA 90001" +260664,Wired Headphones,1,11.99,09/02/19 21:25,"501 7th St, Los Angeles, CA 90001" +260665,Macbook Pro Laptop,1,1700,09/13/19 23:44,"568 Jefferson St, Dallas, TX 75001" +260666,Wired Headphones,1,11.99,09/27/19 08:57,"35 Lakeview St, San Francisco, CA 94016" +260667,USB-C Charging Cable,1,11.95,09/02/19 21:12,"433 5th St, San Francisco, CA 94016" +260668,34in Ultrawide Monitor,1,379.99,09/05/19 16:48,"791 10th St, Portland, ME 04101" +260669,34in Ultrawide Monitor,1,379.99,09/06/19 22:29,"749 4th St, San Francisco, CA 94016" +260670,USB-C Charging Cable,1,11.95,09/07/19 11:08,"642 6th St, Seattle, WA 98101" +260671,Lightning Charging Cable,1,14.95,09/24/19 19:33,"866 6th St, New York City, NY 10001" +260672,Lightning Charging Cable,1,14.95,09/23/19 20:31,"266 7th St, San Francisco, CA 94016" +260673,AA Batteries (4-pack),1,3.84,09/18/19 18:31,"549 Adams St, Los Angeles, CA 90001" +260674,Google Phone,1,600,09/08/19 10:29,"748 4th St, Portland, OR 97035" +260675,Google Phone,1,600,09/16/19 12:24,"310 West St, Dallas, TX 75001" +260675,Wired Headphones,1,11.99,09/16/19 12:24,"310 West St, Dallas, TX 75001" +260676,AA Batteries (4-pack),1,3.84,09/10/19 16:52,"36 Highland St, San Francisco, CA 94016" +260677,AAA Batteries (4-pack),1,2.99,09/21/19 15:25,"859 10th St, Seattle, WA 98101" +260678,USB-C Charging Cable,1,11.95,09/24/19 16:31,"186 Jackson St, Los Angeles, CA 90001" +260679,20in Monitor,1,109.99,09/07/19 13:59,"210 Meadow St, Los Angeles, CA 90001" +260680,Bose SoundSport Headphones,1,99.99,09/06/19 19:34,"972 Church St, Austin, TX 73301" +260681,AAA Batteries (4-pack),2,2.99,09/24/19 20:27,"380 Willow St, San Francisco, CA 94016" +260682,Wired Headphones,1,11.99,09/24/19 20:24,"265 Johnson St, San Francisco, CA 94016" +260683,AA Batteries (4-pack),2,3.84,09/21/19 16:31,"801 Washington St, Los Angeles, CA 90001" +260684,34in Ultrawide Monitor,1,379.99,09/24/19 17:54,"597 Pine St, Portland, ME 04101" +260685,AAA Batteries (4-pack),2,2.99,09/23/19 16:31,"881 North St, Los Angeles, CA 90001" +260686,AA Batteries (4-pack),1,3.84,09/07/19 20:53,"514 11th St, Atlanta, GA 30301" +260687,Flatscreen TV,1,300,09/01/19 22:43,"817 North St, Los Angeles, CA 90001" +260688,AAA Batteries (4-pack),1,2.99,09/01/19 11:54,"750 5th St, Dallas, TX 75001" +260689,Flatscreen TV,1,300,09/17/19 02:45,"391 Dogwood St, Portland, OR 97035" +260690,20in Monitor,1,109.99,09/04/19 01:07,"127 North St, Seattle, WA 98101" +260691,AA Batteries (4-pack),1,3.84,09/23/19 10:21,"761 Sunset St, Atlanta, GA 30301" +260692,USB-C Charging Cable,1,11.95,09/23/19 06:46,"707 Pine St, San Francisco, CA 94016" +260693,AAA Batteries (4-pack),1,2.99,09/01/19 19:47,"506 South St, Los Angeles, CA 90001" +260694,Lightning Charging Cable,1,14.95,09/02/19 18:30,"383 Center St, New York City, NY 10001" +260695,Wired Headphones,3,11.99,09/22/19 11:35,"443 14th St, Atlanta, GA 30301" +260696,Bose SoundSport Headphones,1,99.99,09/22/19 18:30,"173 Main St, Dallas, TX 75001" +260697,AA Batteries (4-pack),1,3.84,09/25/19 19:37,"44 Church St, Boston, MA 02215" +260698,AAA Batteries (4-pack),2,2.99,09/09/19 18:59,"28 Pine St, San Francisco, CA 94016" +260699,34in Ultrawide Monitor,1,379.99,09/26/19 19:09,"784 Jackson St, Portland, ME 04101" +260700,USB-C Charging Cable,1,11.95,09/22/19 21:47,"468 Willow St, Dallas, TX 75001" +260701,Wired Headphones,1,11.99,09/28/19 04:30,"722 Sunset St, Portland, ME 04101" +260702,Lightning Charging Cable,1,14.95,09/08/19 18:39,"626 Cherry St, Atlanta, GA 30301" +260703,Apple Airpods Headphones,1,150,09/12/19 17:16,"878 Walnut St, Boston, MA 02215" +260704,LG Washing Machine,1,600.0,09/06/19 13:00,"130 Cedar St, Portland, OR 97035" +260705,34in Ultrawide Monitor,1,379.99,09/13/19 11:31,"302 Jefferson St, Dallas, TX 75001" +260706,ThinkPad Laptop,1,999.99,09/21/19 20:31,"276 Hickory St, San Francisco, CA 94016" +260707,27in 4K Gaming Monitor,1,389.99,09/20/19 16:11,"218 Lake St, Boston, MA 02215" +260708,USB-C Charging Cable,1,11.95,09/05/19 16:19,"786 Lake St, Seattle, WA 98101" +260709,20in Monitor,1,109.99,09/29/19 18:26,"731 2nd St, Portland, OR 97035" +260710,AA Batteries (4-pack),1,3.84,09/24/19 10:47,"747 Willow St, Portland, OR 97035" +260711,AAA Batteries (4-pack),1,2.99,09/18/19 10:10,"375 9th St, Seattle, WA 98101" +260712,AA Batteries (4-pack),1,3.84,09/21/19 15:05,"500 Ridge St, San Francisco, CA 94016" +260713,Wired Headphones,1,11.99,09/01/19 12:12,"562 6th St, Dallas, TX 75001" +260714,Apple Airpods Headphones,1,150,09/19/19 15:17,"330 11th St, Los Angeles, CA 90001" +260715,Lightning Charging Cable,1,14.95,09/13/19 02:02,"637 Spruce St, San Francisco, CA 94016" +260716,Wired Headphones,1,11.99,09/23/19 22:37,"501 Hickory St, New York City, NY 10001" +260717,AA Batteries (4-pack),1,3.84,09/02/19 22:10,"645 Highland St, Austin, TX 73301" +260718,34in Ultrawide Monitor,1,379.99,09/27/19 13:48,"152 Lakeview St, New York City, NY 10001" +260719,Bose SoundSport Headphones,1,99.99,09/09/19 14:36,"111 Maple St, New York City, NY 10001" +260720,Bose SoundSport Headphones,1,99.99,09/05/19 08:15,"76 Jefferson St, New York City, NY 10001" +260721,USB-C Charging Cable,1,11.95,09/09/19 11:36,"930 4th St, Los Angeles, CA 90001" +260722,USB-C Charging Cable,1,11.95,09/21/19 08:23,"253 Hickory St, San Francisco, CA 94016" +260723,AA Batteries (4-pack),1,3.84,09/14/19 12:15,"822 Maple St, Seattle, WA 98101" +260724,Google Phone,1,600,09/27/19 14:52,"35 West St, New York City, NY 10001" +260725,USB-C Charging Cable,2,11.95,09/15/19 20:54,"680 5th St, Los Angeles, CA 90001" +260726,USB-C Charging Cable,1,11.95,09/27/19 17:21,"821 10th St, Atlanta, GA 30301" +260727,Lightning Charging Cable,1,14.95,09/11/19 10:24,"614 8th St, New York City, NY 10001" +260728,AA Batteries (4-pack),1,3.84,09/07/19 22:01,"658 Walnut St, Atlanta, GA 30301" +260729,Wired Headphones,1,11.99,09/17/19 13:02,"633 Willow St, Los Angeles, CA 90001" +260730,iPhone,1,700,09/14/19 15:23,"318 Madison St, Seattle, WA 98101" +260731,Lightning Charging Cable,1,14.95,09/20/19 12:44,"184 Main St, San Francisco, CA 94016" +260732,USB-C Charging Cable,1,11.95,09/23/19 17:58,"632 9th St, San Francisco, CA 94016" +260733,iPhone,1,700,09/15/19 14:06,"834 Hickory St, Austin, TX 73301" +260734,27in 4K Gaming Monitor,2,389.99,09/06/19 17:21,"726 7th St, San Francisco, CA 94016" +260735,USB-C Charging Cable,1,11.95,09/22/19 20:06,"929 South St, New York City, NY 10001" +260736,Apple Airpods Headphones,1,150,09/30/19 09:22,"136 Wilson St, Austin, TX 73301" +260737,Apple Airpods Headphones,1,150,09/17/19 08:59,"334 1st St, Boston, MA 02215" +260738,Vareebadd Phone,1,400,09/10/19 16:42,"893 4th St, Seattle, WA 98101" +260739,Lightning Charging Cable,1,14.95,09/11/19 13:04,"83 10th St, Portland, ME 04101" +260740,Lightning Charging Cable,1,14.95,09/08/19 21:15,"403 Highland St, Austin, TX 73301" +260741,iPhone,1,700,09/14/19 18:25,"122 2nd St, Los Angeles, CA 90001" +260741,Lightning Charging Cable,1,14.95,09/14/19 18:25,"122 2nd St, Los Angeles, CA 90001" +260742,Apple Airpods Headphones,1,150,09/20/19 09:32,"751 4th St, Austin, TX 73301" +260743,Bose SoundSport Headphones,1,99.99,09/23/19 11:58,"330 Hill St, New York City, NY 10001" +260744,USB-C Charging Cable,1,11.95,09/04/19 19:35,"926 Maple St, Portland, OR 97035" +260745,AA Batteries (4-pack),1,3.84,09/01/19 09:47,"647 1st St, New York City, NY 10001" +260746,Bose SoundSport Headphones,1,99.99,09/04/19 19:48,"368 Johnson St, Portland, OR 97035" +260747,USB-C Charging Cable,1,11.95,09/03/19 16:15,"871 Jefferson St, Portland, OR 97035" +260748,AAA Batteries (4-pack),2,2.99,09/07/19 14:54,"594 Washington St, New York City, NY 10001" +260749,iPhone,1,700,09/07/19 06:44,"582 Lincoln St, San Francisco, CA 94016" +260750,AAA Batteries (4-pack),1,2.99,09/18/19 00:17,"318 14th St, New York City, NY 10001" +260751,Wired Headphones,1,11.99,09/30/19 21:02,"714 Washington St, Los Angeles, CA 90001" +260752,34in Ultrawide Monitor,1,379.99,09/08/19 08:34,"791 4th St, San Francisco, CA 94016" +260753,Apple Airpods Headphones,1,150,09/21/19 23:36,"757 Lakeview St, San Francisco, CA 94016" +260754,AA Batteries (4-pack),1,3.84,09/21/19 19:03,"477 4th St, New York City, NY 10001" +260755,27in FHD Monitor,1,149.99,09/09/19 13:55,"270 Lincoln St, Atlanta, GA 30301" +260756,20in Monitor,1,109.99,09/30/19 09:52,"72 Maple St, New York City, NY 10001" +260757,Bose SoundSport Headphones,1,99.99,09/28/19 19:38,"757 13th St, Austin, TX 73301" +260758,Vareebadd Phone,1,400,09/07/19 21:28,"9 Dogwood St, San Francisco, CA 94016" +260758,Wired Headphones,1,11.99,09/07/19 21:28,"9 Dogwood St, San Francisco, CA 94016" +260759,Lightning Charging Cable,1,14.95,09/29/19 11:52,"975 Lake St, Los Angeles, CA 90001" +260760,Wired Headphones,1,11.99,09/19/19 16:00,"611 1st St, San Francisco, CA 94016" +260761,AA Batteries (4-pack),1,3.84,09/09/19 14:14,"152 6th St, Los Angeles, CA 90001" +260762,Wired Headphones,1,11.99,09/07/19 08:30,"937 8th St, Portland, OR 97035" +260763,Bose SoundSport Headphones,1,99.99,09/17/19 20:07,"618 Hickory St, San Francisco, CA 94016" +260764,AA Batteries (4-pack),1,3.84,09/25/19 15:15,"971 Willow St, Los Angeles, CA 90001" +260765,Lightning Charging Cable,1,14.95,09/05/19 09:14,"770 8th St, Los Angeles, CA 90001" +260766,USB-C Charging Cable,1,11.95,09/05/19 15:49,"66 12th St, Portland, ME 04101" +260767,AAA Batteries (4-pack),2,2.99,09/08/19 13:49,"535 Pine St, Los Angeles, CA 90001" +260768,AA Batteries (4-pack),1,3.84,09/19/19 12:01,"80 Johnson St, Atlanta, GA 30301" +260769,AA Batteries (4-pack),1,3.84,09/23/19 14:46,"95 Elm St, San Francisco, CA 94016" +260770,AAA Batteries (4-pack),1,2.99,09/08/19 09:57,"987 Spruce St, Los Angeles, CA 90001" +260771,Lightning Charging Cable,2,14.95,09/04/19 11:39,"382 Spruce St, Boston, MA 02215" +260772,Bose SoundSport Headphones,1,99.99,09/27/19 19:06,"624 Pine St, Boston, MA 02215" +260773,AA Batteries (4-pack),2,3.84,09/17/19 15:46,"263 Cherry St, Austin, TX 73301" +260774,AA Batteries (4-pack),2,3.84,09/01/19 12:24,"945 13th St, Los Angeles, CA 90001" +260775,Lightning Charging Cable,2,14.95,09/28/19 23:54,"56 5th St, Boston, MA 02215" +260776,AA Batteries (4-pack),1,3.84,09/12/19 18:05,"896 Pine St, San Francisco, CA 94016" +260777,AAA Batteries (4-pack),1,2.99,09/04/19 20:15,"17 Madison St, Boston, MA 02215" +260778,AA Batteries (4-pack),1,3.84,09/23/19 14:20,"29 9th St, Los Angeles, CA 90001" +260779,Macbook Pro Laptop,1,1700,09/08/19 16:41,"99 North St, New York City, NY 10001" +260780,iPhone,1,700,09/04/19 10:19,"635 Madison St, Portland, OR 97035" +260780,Lightning Charging Cable,1,14.95,09/04/19 10:19,"635 Madison St, Portland, OR 97035" +260781,Lightning Charging Cable,1,14.95,09/23/19 18:28,"314 Sunset St, San Francisco, CA 94016" +260782,Wired Headphones,1,11.99,09/11/19 12:15,"174 Lincoln St, Seattle, WA 98101" +260783,Google Phone,1,600,09/18/19 21:41,"989 Sunset St, Boston, MA 02215" +260783,USB-C Charging Cable,1,11.95,09/18/19 21:41,"989 Sunset St, Boston, MA 02215" +260783,Bose SoundSport Headphones,1,99.99,09/18/19 21:41,"989 Sunset St, Boston, MA 02215" +260784,iPhone,1,700,09/28/19 18:16,"548 12th St, San Francisco, CA 94016" +260785,Wired Headphones,1,11.99,09/19/19 14:01,"37 North St, Atlanta, GA 30301" +260786,AAA Batteries (4-pack),2,2.99,09/12/19 22:45,"108 Center St, Atlanta, GA 30301" +260787,AA Batteries (4-pack),1,3.84,09/08/19 20:21,"598 Jackson St, New York City, NY 10001" +260788,34in Ultrawide Monitor,1,379.99,09/30/19 08:48,"772 Elm St, San Francisco, CA 94016" +260789,iPhone,1,700,09/17/19 11:19,"353 7th St, Los Angeles, CA 90001" +260790,Flatscreen TV,1,300,09/28/19 21:57,"288 Church St, Austin, TX 73301" +260791,34in Ultrawide Monitor,2,379.99,09/06/19 18:44,"124 Madison St, San Francisco, CA 94016" +260792,Bose SoundSport Headphones,1,99.99,09/11/19 22:19,"749 Sunset St, Los Angeles, CA 90001" +260793,Lightning Charging Cable,1,14.95,09/21/19 10:35,"950 10th St, San Francisco, CA 94016" +260794,27in FHD Monitor,1,149.99,09/25/19 22:12,"644 Pine St, Seattle, WA 98101" +260795,27in FHD Monitor,1,149.99,09/22/19 14:43,"524 Jefferson St, New York City, NY 10001" +260796,27in FHD Monitor,1,149.99,09/10/19 13:44,"620 4th St, San Francisco, CA 94016" +260797,27in FHD Monitor,1,149.99,09/14/19 19:04,"720 Willow St, Boston, MA 02215" +260798,Google Phone,1,600,09/10/19 13:41,"133 11th St, San Francisco, CA 94016" +260798,USB-C Charging Cable,1,11.95,09/10/19 13:41,"133 11th St, San Francisco, CA 94016" +260799,Bose SoundSport Headphones,1,99.99,09/28/19 21:43,"364 Highland St, Los Angeles, CA 90001" +260800,AAA Batteries (4-pack),1,2.99,09/13/19 21:30,"316 Lincoln St, Los Angeles, CA 90001" +260801,Google Phone,1,600,09/16/19 18:39,"289 Highland St, New York City, NY 10001" +260801,Bose SoundSport Headphones,1,99.99,09/16/19 18:39,"289 Highland St, New York City, NY 10001" +260801,34in Ultrawide Monitor,1,379.99,09/16/19 18:39,"289 Highland St, New York City, NY 10001" +260802,USB-C Charging Cable,1,11.95,09/11/19 09:57,"740 10th St, Seattle, WA 98101" +260803,AAA Batteries (4-pack),1,2.99,09/14/19 11:46,"322 Washington St, Los Angeles, CA 90001" +260804,Wired Headphones,1,11.99,09/28/19 21:37,"743 Chestnut St, New York City, NY 10001" +260805,Bose SoundSport Headphones,1,99.99,09/01/19 09:20,"155 Willow St, Dallas, TX 75001" +260806,Macbook Pro Laptop,1,1700,09/25/19 12:29,"821 Sunset St, Portland, OR 97035" +260807,Apple Airpods Headphones,1,150,09/27/19 10:56,"527 Adams St, San Francisco, CA 94016" +260808,Apple Airpods Headphones,1,150,09/26/19 06:41,"634 Lincoln St, New York City, NY 10001" +260809,27in FHD Monitor,1,149.99,09/14/19 15:38,"983 Walnut St, New York City, NY 10001" +260810,Wired Headphones,1,11.99,09/24/19 17:12,"964 9th St, Los Angeles, CA 90001" +260811,USB-C Charging Cable,1,11.95,09/18/19 21:16,"737 Park St, Los Angeles, CA 90001" +260812,Vareebadd Phone,1,400,09/28/19 07:33,"611 14th St, San Francisco, CA 94016" +260813,Macbook Pro Laptop,1,1700,09/11/19 14:52,"224 Willow St, Dallas, TX 75001" +260814,ThinkPad Laptop,1,999.99,09/23/19 13:36,"234 Meadow St, Boston, MA 02215" +260815,Google Phone,1,600,09/15/19 15:31,"743 6th St, San Francisco, CA 94016" +260815,USB-C Charging Cable,1,11.95,09/15/19 15:31,"743 6th St, San Francisco, CA 94016" +260816,Macbook Pro Laptop,1,1700,09/30/19 13:57,"522 2nd St, San Francisco, CA 94016" +260817,Bose SoundSport Headphones,1,99.99,09/17/19 11:11,"84 5th St, Los Angeles, CA 90001" +260818,27in 4K Gaming Monitor,1,389.99,09/30/19 20:24,"232 Church St, New York City, NY 10001" +260819,Bose SoundSport Headphones,1,99.99,09/28/19 22:27,"533 13th St, New York City, NY 10001" +260820,AA Batteries (4-pack),2,3.84,09/12/19 09:37,"956 Adams St, Boston, MA 02215" +260821,Wired Headphones,1,11.99,09/18/19 12:01,"410 Meadow St, Austin, TX 73301" +260822,Wired Headphones,2,11.99,09/13/19 15:12,"111 Elm St, San Francisco, CA 94016" +260823,27in FHD Monitor,1,149.99,09/12/19 21:46,"926 Hill St, Boston, MA 02215" +260824,USB-C Charging Cable,2,11.95,09/12/19 16:50,"711 Lincoln St, New York City, NY 10001" +260825,USB-C Charging Cable,1,11.95,09/15/19 01:02,"720 River St, San Francisco, CA 94016" +260826,AA Batteries (4-pack),2,3.84,09/09/19 17:28,"203 13th St, Dallas, TX 75001" +260827,AAA Batteries (4-pack),1,2.99,09/21/19 09:52,"492 Cherry St, Austin, TX 73301" +260828,Lightning Charging Cable,1,14.95,09/17/19 11:31,"798 8th St, New York City, NY 10001" +260829,iPhone,1,700,09/22/19 14:51,"422 13th St, Atlanta, GA 30301" +260830,USB-C Charging Cable,1,11.95,09/09/19 10:36,"658 7th St, New York City, NY 10001" +260831,AAA Batteries (4-pack),1,2.99,09/01/19 17:30,"209 14th St, Dallas, TX 75001" +260831,Wired Headphones,1,11.99,09/01/19 17:30,"209 14th St, Dallas, TX 75001" +260832,AAA Batteries (4-pack),1,2.99,09/01/19 18:51,"991 13th St, San Francisco, CA 94016" +260833,AA Batteries (4-pack),2,3.84,09/22/19 11:42,"475 Spruce St, Austin, TX 73301" +260834,27in FHD Monitor,1,149.99,09/07/19 10:00,"362 Elm St, San Francisco, CA 94016" +260835,Lightning Charging Cable,1,14.95,09/13/19 11:01,"641 Meadow St, San Francisco, CA 94016" +260836,20in Monitor,1,109.99,09/01/19 10:11,"108 Spruce St, Los Angeles, CA 90001" +260837,Lightning Charging Cable,1,14.95,09/22/19 18:01,"214 9th St, New York City, NY 10001" +260838,Wired Headphones,1,11.99,09/30/19 19:38,"501 Hill St, New York City, NY 10001" +260839,iPhone,1,700,09/16/19 20:58,"957 Center St, Dallas, TX 75001" +260840,AA Batteries (4-pack),1,3.84,09/07/19 20:30,"374 Park St, Atlanta, GA 30301" +260841,USB-C Charging Cable,1,11.95,09/06/19 17:39,"926 Maple St, Seattle, WA 98101" +260842,Wired Headphones,1,11.99,09/25/19 11:21,"895 Adams St, San Francisco, CA 94016" +260843,iPhone,1,700,09/15/19 00:45,"353 Cedar St, Los Angeles, CA 90001" +260844,AA Batteries (4-pack),3,3.84,09/26/19 13:35,"225 Church St, San Francisco, CA 94016" +260845,AAA Batteries (4-pack),1,2.99,09/25/19 09:26,"505 14th St, Atlanta, GA 30301" +260846,34in Ultrawide Monitor,1,379.99,09/14/19 19:34,"554 North St, San Francisco, CA 94016" +260847,USB-C Charging Cable,1,11.95,09/29/19 13:00,"7 Lakeview St, San Francisco, CA 94016" +260848,USB-C Charging Cable,1,11.95,09/14/19 21:45,"106 Main St, San Francisco, CA 94016" +260849,AAA Batteries (4-pack),1,2.99,09/18/19 10:37,"832 West St, New York City, NY 10001" +260850,Apple Airpods Headphones,1,150,09/25/19 19:59,"440 Walnut St, New York City, NY 10001" +260851,AAA Batteries (4-pack),1,2.99,09/24/19 11:04,"528 Spruce St, Atlanta, GA 30301" +260852,27in FHD Monitor,1,149.99,09/20/19 14:09,"307 1st St, New York City, NY 10001" +260853,USB-C Charging Cable,2,11.95,09/18/19 12:38,"614 Maple St, Portland, OR 97035" +260854,Macbook Pro Laptop,1,1700,09/23/19 20:39,"397 Dogwood St, Los Angeles, CA 90001" +260855,Apple Airpods Headphones,1,150,09/03/19 12:03,"325 2nd St, Seattle, WA 98101" +260856,USB-C Charging Cable,1,11.95,09/09/19 16:59,"167 7th St, Los Angeles, CA 90001" +260857,Lightning Charging Cable,1,14.95,09/26/19 10:26,"207 Willow St, Boston, MA 02215" +260858,Apple Airpods Headphones,1,150,09/06/19 03:49,"86 Jefferson St, Portland, OR 97035" +260859,iPhone,1,700,09/02/19 10:32,"176 Elm St, Atlanta, GA 30301" +260860,Lightning Charging Cable,1,14.95,09/27/19 12:18,"739 Lake St, Atlanta, GA 30301" +260861,Apple Airpods Headphones,1,150,09/03/19 12:26,"147 North St, Seattle, WA 98101" +260862,iPhone,1,700,09/02/19 11:00,"573 Cedar St, Los Angeles, CA 90001" +260863,Google Phone,1,600,09/14/19 05:17,"127 Park St, Los Angeles, CA 90001" +260864,USB-C Charging Cable,1,11.95,09/14/19 11:02,"21 Lakeview St, Boston, MA 02215" +260865,USB-C Charging Cable,1,11.95,09/06/19 03:31,"941 Spruce St, Los Angeles, CA 90001" +260866,34in Ultrawide Monitor,1,379.99,09/21/19 13:34,"627 6th St, New York City, NY 10001" +260867,USB-C Charging Cable,1,11.95,09/06/19 11:22,"966 Adams St, Los Angeles, CA 90001" +260868,Macbook Pro Laptop,1,1700,09/09/19 17:15,"381 1st St, San Francisco, CA 94016" +260869,Apple Airpods Headphones,1,150,09/20/19 19:40,"925 5th St, Atlanta, GA 30301" +260870,AAA Batteries (4-pack),1,2.99,09/14/19 20:07,"966 South St, Los Angeles, CA 90001" +260871,20in Monitor,1,109.99,09/03/19 16:29,"243 Willow St, San Francisco, CA 94016" +260872,Lightning Charging Cable,1,14.95,09/02/19 17:16,"656 13th St, Dallas, TX 75001" +260873,iPhone,1,700,09/21/19 13:00,"578 Wilson St, Seattle, WA 98101" +260873,Lightning Charging Cable,1,14.95,09/21/19 13:00,"578 Wilson St, Seattle, WA 98101" +260874,27in FHD Monitor,1,149.99,09/03/19 21:03,"137 Chestnut St, Los Angeles, CA 90001" +260875,USB-C Charging Cable,1,11.95,09/25/19 09:21,"655 Lake St, Los Angeles, CA 90001" +260876,Bose SoundSport Headphones,1,99.99,09/14/19 23:01,"37 Jefferson St, Seattle, WA 98101" +260877,Lightning Charging Cable,2,14.95,09/10/19 15:37,"481 Main St, Los Angeles, CA 90001" +260878,Wired Headphones,1,11.99,09/23/19 12:08,"208 7th St, San Francisco, CA 94016" +260879,Flatscreen TV,1,300,09/16/19 10:43,"319 Dogwood St, New York City, NY 10001" +260880,27in FHD Monitor,1,149.99,09/09/19 01:38,"496 Washington St, Seattle, WA 98101" +260881,Bose SoundSport Headphones,1,99.99,09/06/19 17:20,"504 7th St, Dallas, TX 75001" +260882,AAA Batteries (4-pack),1,2.99,09/19/19 12:37,"542 North St, Boston, MA 02215" +260883,Google Phone,1,600,09/27/19 20:50,"998 4th St, Dallas, TX 75001" +260884,AA Batteries (4-pack),1,3.84,09/05/19 15:46,"572 Wilson St, Los Angeles, CA 90001" +260885,34in Ultrawide Monitor,1,379.99,09/01/19 13:06,"179 Park St, Los Angeles, CA 90001" +260886,AAA Batteries (4-pack),1,2.99,09/21/19 14:04,"798 9th St, San Francisco, CA 94016" +260887,Bose SoundSport Headphones,1,99.99,09/09/19 19:40,"400 Elm St, Austin, TX 73301" +260888,Bose SoundSport Headphones,1,99.99,09/14/19 12:24,"254 Cherry St, San Francisco, CA 94016" +260889,Apple Airpods Headphones,1,150,09/04/19 23:00,"392 North St, Portland, OR 97035" +260890,AAA Batteries (4-pack),2,2.99,09/29/19 19:45,"523 4th St, San Francisco, CA 94016" +260891,27in 4K Gaming Monitor,1,389.99,09/28/19 16:20,"637 5th St, Dallas, TX 75001" +260892,Google Phone,1,600,09/19/19 08:26,"587 Dogwood St, Los Angeles, CA 90001" +260893,Bose SoundSport Headphones,1,99.99,09/18/19 15:07,"760 West St, Seattle, WA 98101" +260894,iPhone,1,700,09/27/19 19:29,"309 North St, Austin, TX 73301" +260895,AA Batteries (4-pack),1,3.84,09/07/19 15:15,"179 Center St, Portland, OR 97035" +260896,Apple Airpods Headphones,1,150,09/10/19 19:22,"314 Madison St, Atlanta, GA 30301" +260897,Bose SoundSport Headphones,1,99.99,09/22/19 21:30,"320 Forest St, Seattle, WA 98101" +260898,Lightning Charging Cable,1,14.95,09/15/19 15:46,"570 Lincoln St, New York City, NY 10001" +260899,AAA Batteries (4-pack),1,2.99,09/11/19 19:14,"70 9th St, Seattle, WA 98101" +260900,USB-C Charging Cable,1,11.95,09/07/19 00:13,"467 Jackson St, New York City, NY 10001" +260901,AA Batteries (4-pack),1,3.84,09/11/19 10:21,"888 5th St, Seattle, WA 98101" +260902,AAA Batteries (4-pack),3,2.99,09/03/19 15:31,"93 Cedar St, Seattle, WA 98101" +260903,Flatscreen TV,1,300,09/28/19 21:12,"454 Elm St, Atlanta, GA 30301" +260904,Wired Headphones,1,11.99,09/21/19 09:01,"859 Wilson St, Los Angeles, CA 90001" +260905,20in Monitor,1,109.99,09/12/19 14:26,"909 Lincoln St, New York City, NY 10001" +260906,AA Batteries (4-pack),1,3.84,09/07/19 22:18,"589 5th St, New York City, NY 10001" +260907,AA Batteries (4-pack),1,3.84,09/19/19 21:02,"497 Jefferson St, Seattle, WA 98101" +260908,AAA Batteries (4-pack),1,2.99,09/23/19 10:03,"772 Cherry St, Austin, TX 73301" +260909,Lightning Charging Cable,1,14.95,09/21/19 18:32,"67 Lincoln St, New York City, NY 10001" +260910,AAA Batteries (4-pack),1,2.99,09/29/19 19:06,"197 Adams St, Seattle, WA 98101" +260911,Bose SoundSport Headphones,1,99.99,09/14/19 11:20,"861 Dogwood St, New York City, NY 10001" +260912,USB-C Charging Cable,1,11.95,09/05/19 13:20,"112 8th St, Los Angeles, CA 90001" +260913,Flatscreen TV,1,300,09/12/19 07:21,"353 6th St, San Francisco, CA 94016" +260914,Wired Headphones,1,11.99,09/19/19 12:08,"577 Dogwood St, New York City, NY 10001" +260915,AA Batteries (4-pack),1,3.84,09/04/19 12:16,"573 6th St, Los Angeles, CA 90001" +260916,iPhone,1,700,09/02/19 20:00,"311 Hickory St, Boston, MA 02215" +260917,20in Monitor,1,109.99,09/28/19 15:28,"175 River St, Boston, MA 02215" +260918,AAA Batteries (4-pack),1,2.99,09/27/19 00:22,"247 Jefferson St, New York City, NY 10001" +260919,USB-C Charging Cable,1,11.95,09/10/19 00:49,"847 Willow St, New York City, NY 10001" +260920,USB-C Charging Cable,2,11.95,09/12/19 11:18,"412 North St, Austin, TX 73301" +260921,Wired Headphones,1,11.99,09/24/19 20:10,"407 Spruce St, New York City, NY 10001" +260922,Wired Headphones,1,11.99,09/15/19 23:23,"38 Lincoln St, New York City, NY 10001" +260923,iPhone,1,700,09/03/19 15:57,"19 14th St, New York City, NY 10001" +260924,AA Batteries (4-pack),4,3.84,09/21/19 18:55,"365 9th St, Atlanta, GA 30301" +260925,AAA Batteries (4-pack),1,2.99,09/27/19 12:56,"335 Church St, San Francisco, CA 94016" +260926,Lightning Charging Cable,3,14.95,09/07/19 17:52,"923 6th St, New York City, NY 10001" +260927,Apple Airpods Headphones,1,150,09/24/19 19:12,"9 Willow St, San Francisco, CA 94016" +260928,34in Ultrawide Monitor,1,379.99,09/12/19 08:19,"591 Maple St, Dallas, TX 75001" +260929,AAA Batteries (4-pack),1,2.99,09/08/19 12:55,"780 Willow St, San Francisco, CA 94016" +260930,AAA Batteries (4-pack),1,2.99,09/18/19 18:44,"762 Ridge St, Los Angeles, CA 90001" +260931,AA Batteries (4-pack),1,3.84,09/11/19 06:35,"217 14th St, San Francisco, CA 94016" +260932,Wired Headphones,1,11.99,09/19/19 08:05,"927 Elm St, Los Angeles, CA 90001" +260933,AAA Batteries (4-pack),1,2.99,09/14/19 18:20,"899 11th St, New York City, NY 10001" +260934,Lightning Charging Cable,1,14.95,09/19/19 02:46,"16 River St, Boston, MA 02215" +260935,Macbook Pro Laptop,1,1700,09/04/19 12:33,"333 13th St, San Francisco, CA 94016" +260936,Lightning Charging Cable,1,14.95,09/08/19 13:47,"385 7th St, Portland, ME 04101" +260937,AAA Batteries (4-pack),2,2.99,09/12/19 12:28,"936 6th St, Portland, OR 97035" +260938,AA Batteries (4-pack),1,3.84,09/30/19 21:25,"504 14th St, Los Angeles, CA 90001" +260938,Lightning Charging Cable,1,14.95,09/30/19 21:25,"504 14th St, Los Angeles, CA 90001" +260939,Apple Airpods Headphones,1,150,09/02/19 16:40,"15 Highland St, Atlanta, GA 30301" +260940,AA Batteries (4-pack),1,3.84,09/27/19 06:24,"453 Park St, New York City, NY 10001" +260941,AA Batteries (4-pack),1,3.84,09/14/19 08:36,"37 Washington St, Dallas, TX 75001" +260942,27in 4K Gaming Monitor,1,389.99,09/21/19 11:49,"410 Lakeview St, Seattle, WA 98101" +260943,34in Ultrawide Monitor,1,379.99,09/15/19 01:48,"4 Maple St, New York City, NY 10001" +260944,Bose SoundSport Headphones,1,99.99,09/19/19 12:23,"112 Highland St, Seattle, WA 98101" +260945,iPhone,1,700,09/21/19 11:18,"238 River St, Dallas, TX 75001" +260946,Lightning Charging Cable,1,14.95,09/22/19 14:01,"384 Sunset St, San Francisco, CA 94016" +260947,20in Monitor,1,109.99,09/03/19 09:11,"648 Park St, Austin, TX 73301" +260948,AAA Batteries (4-pack),1,2.99,09/01/19 21:27,"322 West St, Portland, OR 97035" +260949,AA Batteries (4-pack),1,3.84,09/24/19 22:21,"643 Spruce St, Seattle, WA 98101" +260950,34in Ultrawide Monitor,1,379.99,09/23/19 00:37,"714 Church St, New York City, NY 10001" +260951,AAA Batteries (4-pack),1,2.99,09/20/19 13:34,"32 8th St, Los Angeles, CA 90001" +260952,Lightning Charging Cable,1,14.95,09/07/19 19:35,"913 Highland St, San Francisco, CA 94016" +260953,Flatscreen TV,1,300,09/26/19 14:55,"348 Cherry St, Seattle, WA 98101" +260954,AA Batteries (4-pack),3,3.84,09/10/19 01:07,"339 Church St, Seattle, WA 98101" +260955,Bose SoundSport Headphones,1,99.99,09/15/19 16:56,"497 Madison St, Boston, MA 02215" +260956,ThinkPad Laptop,1,999.99,09/24/19 21:46,"667 8th St, Seattle, WA 98101" +260957,Apple Airpods Headphones,1,150,09/23/19 11:21,"7 Adams St, Austin, TX 73301" +260958,Lightning Charging Cable,1,14.95,09/23/19 14:26,"666 South St, San Francisco, CA 94016" +260959,AA Batteries (4-pack),1,3.84,09/21/19 20:21,"829 Dogwood St, Boston, MA 02215" +260960,Apple Airpods Headphones,1,150,09/24/19 11:48,"147 Chestnut St, Seattle, WA 98101" +260961,Lightning Charging Cable,1,14.95,09/14/19 09:18,"769 Park St, Boston, MA 02215" +260962,Lightning Charging Cable,1,14.95,09/06/19 04:59,"372 Wilson St, Austin, TX 73301" +260963,AAA Batteries (4-pack),1,2.99,09/09/19 19:21,"241 10th St, Boston, MA 02215" +260964,34in Ultrawide Monitor,1,379.99,09/29/19 17:22,"152 Wilson St, Dallas, TX 75001" +260965,Wired Headphones,1,11.99,09/24/19 17:52,"27 South St, San Francisco, CA 94016" +260966,Apple Airpods Headphones,1,150,09/01/19 12:28,"88 Jefferson St, Portland, OR 97035" +260967,AA Batteries (4-pack),1,3.84,09/08/19 08:42,"311 Center St, Dallas, TX 75001" +260968,AA Batteries (4-pack),1,3.84,09/11/19 13:58,"866 South St, Los Angeles, CA 90001" +260969,USB-C Charging Cable,1,11.95,09/07/19 09:00,"810 Washington St, San Francisco, CA 94016" +260970,AA Batteries (4-pack),1,3.84,09/09/19 12:45,"195 Pine St, Dallas, TX 75001" +260971,iPhone,1,700,09/20/19 17:02,"407 Main St, Los Angeles, CA 90001" +260972,AA Batteries (4-pack),1,3.84,09/09/19 08:40,"114 6th St, Los Angeles, CA 90001" +260973,20in Monitor,1,109.99,09/12/19 15:48,"55 6th St, San Francisco, CA 94016" +260974,AA Batteries (4-pack),2,3.84,09/15/19 18:15,"744 11th St, San Francisco, CA 94016" +260975,Bose SoundSport Headphones,1,99.99,09/11/19 21:24,"129 Meadow St, Boston, MA 02215" +260976,Apple Airpods Headphones,1,150,09/18/19 18:57,"140 South St, New York City, NY 10001" +260977,AA Batteries (4-pack),1,3.84,09/18/19 12:50,"52 Forest St, New York City, NY 10001" +260978,Flatscreen TV,1,300,09/20/19 14:24,"9 Ridge St, San Francisco, CA 94016" +260979,Google Phone,1,600,09/12/19 06:55,"525 5th St, Portland, OR 97035" +260980,USB-C Charging Cable,1,11.95,09/22/19 12:44,"732 6th St, Los Angeles, CA 90001" +260981,Bose SoundSport Headphones,1,99.99,09/21/19 13:40,"900 11th St, Los Angeles, CA 90001" +260982,Apple Airpods Headphones,1,150,09/26/19 09:04,"127 13th St, New York City, NY 10001" +260983,34in Ultrawide Monitor,1,379.99,09/04/19 12:51,"127 9th St, San Francisco, CA 94016" +260984,iPhone,1,700,09/04/19 10:10,"837 10th St, Seattle, WA 98101" +260985,27in FHD Monitor,1,149.99,09/17/19 17:29,"237 Madison St, Los Angeles, CA 90001" +260986,Google Phone,1,600,09/24/19 05:27,"553 Madison St, Austin, TX 73301" +260987,AA Batteries (4-pack),1,3.84,09/18/19 14:10,"505 Main St, Dallas, TX 75001" +260988,Wired Headphones,1,11.99,09/28/19 12:36,"793 4th St, Dallas, TX 75001" +260989,AAA Batteries (4-pack),1,2.99,09/23/19 10:53,"185 Cedar St, Los Angeles, CA 90001" +260990,USB-C Charging Cable,1,11.95,09/29/19 20:58,"125 Washington St, Portland, ME 04101" +260991,Lightning Charging Cable,1,14.95,09/10/19 23:54,"466 14th St, Atlanta, GA 30301" +260992,27in FHD Monitor,1,149.99,09/05/19 10:14,"810 7th St, San Francisco, CA 94016" +260993,Google Phone,1,600,09/07/19 19:36,"597 Forest St, Atlanta, GA 30301" +260994,iPhone,1,700,09/09/19 11:04,"659 7th St, Atlanta, GA 30301" +260994,Lightning Charging Cable,1,14.95,09/09/19 11:04,"659 7th St, Atlanta, GA 30301" +260995,AAA Batteries (4-pack),1,2.99,09/02/19 09:20,"921 8th St, Los Angeles, CA 90001" +260996,27in FHD Monitor,1,149.99,09/12/19 20:32,"674 Lincoln St, Los Angeles, CA 90001" +260996,USB-C Charging Cable,3,11.95,09/12/19 20:32,"674 Lincoln St, Los Angeles, CA 90001" +260997,USB-C Charging Cable,1,11.95,09/04/19 23:39,"398 5th St, Boston, MA 02215" +260998,Wired Headphones,1,11.99,09/26/19 15:14,"240 2nd St, Los Angeles, CA 90001" +260999,Apple Airpods Headphones,1,150,09/30/19 20:52,"693 9th St, San Francisco, CA 94016" +261000,Vareebadd Phone,1,400,09/14/19 19:20,"478 Forest St, San Francisco, CA 94016" +261000,USB-C Charging Cable,2,11.95,09/14/19 19:20,"478 Forest St, San Francisco, CA 94016" +261001,Apple Airpods Headphones,1,150,09/22/19 00:26,"946 12th St, Boston, MA 02215" +261002,Google Phone,1,600,09/03/19 21:06,"593 8th St, San Francisco, CA 94016" +261002,USB-C Charging Cable,1,11.95,09/03/19 21:06,"593 8th St, San Francisco, CA 94016" +261003,iPhone,1,700,09/07/19 16:16,"723 Sunset St, San Francisco, CA 94016" +261004,USB-C Charging Cable,1,11.95,09/10/19 08:52,"543 Park St, Dallas, TX 75001" +261005,ThinkPad Laptop,1,999.99,09/16/19 16:32,"326 South St, San Francisco, CA 94016" +261006,Lightning Charging Cable,1,14.95,09/09/19 06:59,"641 West St, San Francisco, CA 94016" +261007,Wired Headphones,1,11.99,09/08/19 16:28,"58 Maple St, San Francisco, CA 94016" +261008,20in Monitor,1,109.99,09/22/19 14:20,"923 Forest St, Seattle, WA 98101" +261009,Google Phone,1,600,09/09/19 10:34,"245 Ridge St, Austin, TX 73301" +261010,27in 4K Gaming Monitor,1,389.99,09/04/19 23:54,"179 River St, Boston, MA 02215" +261011,ThinkPad Laptop,1,999.99,09/23/19 13:04,"655 Dogwood St, San Francisco, CA 94016" +261012,Bose SoundSport Headphones,1,99.99,09/08/19 18:05,"506 Jackson St, San Francisco, CA 94016" +261013,Flatscreen TV,1,300,09/23/19 12:45,"549 12th St, Dallas, TX 75001" +261014,iPhone,1,700,09/22/19 13:08,"572 14th St, Boston, MA 02215" +261014,Apple Airpods Headphones,1,150,09/22/19 13:08,"572 14th St, Boston, MA 02215" +261015,AA Batteries (4-pack),2,3.84,09/25/19 19:19,"875 2nd St, New York City, NY 10001" +261016,AA Batteries (4-pack),2,3.84,09/25/19 09:35,"722 1st St, San Francisco, CA 94016" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +261017,Apple Airpods Headphones,1,150,09/23/19 09:18,"311 Forest St, New York City, NY 10001" +261018,AA Batteries (4-pack),2,3.84,09/12/19 09:38,"303 Washington St, Los Angeles, CA 90001" +261019,ThinkPad Laptop,1,999.99,09/24/19 14:27,"705 Lakeview St, Dallas, TX 75001" +261020,20in Monitor,1,109.99,09/11/19 19:05,"940 Jefferson St, New York City, NY 10001" +261021,AAA Batteries (4-pack),2,2.99,09/22/19 20:27,"20 7th St, Atlanta, GA 30301" +261022,AA Batteries (4-pack),1,3.84,09/19/19 01:02,"77 1st St, San Francisco, CA 94016" +261023,Wired Headphones,1,11.99,09/08/19 22:33,"72 Cedar St, Los Angeles, CA 90001" +261024,27in 4K Gaming Monitor,1,389.99,09/20/19 07:42,"406 4th St, San Francisco, CA 94016" +261025,Lightning Charging Cable,1,14.95,09/08/19 14:20,"548 Johnson St, Boston, MA 02215" +261026,Wired Headphones,1,11.99,09/05/19 11:55,"66 Jackson St, Portland, OR 97035" +261027,Bose SoundSport Headphones,1,99.99,09/21/19 12:16,"830 2nd St, Dallas, TX 75001" +261028,AA Batteries (4-pack),1,3.84,09/24/19 18:30,"654 Lakeview St, Los Angeles, CA 90001" +261029,Lightning Charging Cable,1,14.95,09/21/19 19:30,"287 South St, New York City, NY 10001" +261030,AAA Batteries (4-pack),2,2.99,09/13/19 10:48,"792 6th St, San Francisco, CA 94016" +261031,Bose SoundSport Headphones,1,99.99,09/01/19 13:50,"90 Wilson St, San Francisco, CA 94016" +261032,AA Batteries (4-pack),2,3.84,09/07/19 16:32,"24 Sunset St, Los Angeles, CA 90001" +261033,34in Ultrawide Monitor,1,379.99,09/05/19 16:31,"759 Chestnut St, San Francisco, CA 94016" +261034,Bose SoundSport Headphones,1,99.99,09/10/19 21:59,"169 Adams St, San Francisco, CA 94016" +261035,USB-C Charging Cable,1,11.95,09/30/19 18:22,"922 Johnson St, San Francisco, CA 94016" +261036,Wired Headphones,1,11.99,09/23/19 21:31,"904 Lakeview St, Austin, TX 73301" +261037,Macbook Pro Laptop,1,1700,09/21/19 18:39,"784 Maple St, Los Angeles, CA 90001" +261038,Apple Airpods Headphones,1,150,09/02/19 10:47,"912 Jackson St, New York City, NY 10001" +261039,AA Batteries (4-pack),3,3.84,09/16/19 14:20,"88 Park St, Los Angeles, CA 90001" +261040,Lightning Charging Cable,2,14.95,09/28/19 07:37,"689 2nd St, New York City, NY 10001" +261041,27in FHD Monitor,1,149.99,09/04/19 14:05,"928 Chestnut St, San Francisco, CA 94016" +261042,Lightning Charging Cable,1,14.95,09/23/19 18:07,"923 8th St, Austin, TX 73301" +261043,AAA Batteries (4-pack),1,2.99,09/23/19 21:44,"635 River St, Boston, MA 02215" +261044,Bose SoundSport Headphones,1,99.99,09/22/19 20:12,"937 Sunset St, San Francisco, CA 94016" +261045,iPhone,1,700,09/26/19 14:04,"279 Lake St, Atlanta, GA 30301" +261046,Wired Headphones,1,11.99,09/22/19 08:01,"265 Lake St, San Francisco, CA 94016" +261047,ThinkPad Laptop,1,999.99,09/18/19 08:49,"59 Center St, San Francisco, CA 94016" +261048,AAA Batteries (4-pack),1,2.99,09/20/19 18:02,"495 Forest St, Boston, MA 02215" +261049,USB-C Charging Cable,2,11.95,09/29/19 21:59,"280 Lincoln St, Portland, ME 04101" +261050,Apple Airpods Headphones,1,150,09/24/19 11:10,"277 Jefferson St, Los Angeles, CA 90001" +261051,27in FHD Monitor,1,149.99,09/27/19 10:24,"828 Walnut St, Atlanta, GA 30301" +261052,Apple Airpods Headphones,1,150,09/03/19 12:58,"617 Hill St, San Francisco, CA 94016" +261053,Bose SoundSport Headphones,1,99.99,09/30/19 08:37,"967 Forest St, San Francisco, CA 94016" +261054,Lightning Charging Cable,1,14.95,09/15/19 05:05,"785 9th St, San Francisco, CA 94016" +261055,USB-C Charging Cable,2,11.95,09/13/19 11:04,"792 South St, Los Angeles, CA 90001" +261056,USB-C Charging Cable,1,11.95,09/17/19 10:21,"158 Johnson St, Dallas, TX 75001" +261057,AAA Batteries (4-pack),2,2.99,09/28/19 18:48,"342 Cherry St, New York City, NY 10001" +261058,Apple Airpods Headphones,1,150,09/21/19 19:11,"434 2nd St, Boston, MA 02215" +261059,Wired Headphones,1,11.99,09/16/19 00:51,"54 Jackson St, Los Angeles, CA 90001" +261060,Lightning Charging Cable,1,14.95,09/23/19 11:47,"408 Hickory St, San Francisco, CA 94016" +261061,AAA Batteries (4-pack),1,2.99,09/29/19 18:30,"576 Adams St, New York City, NY 10001" +261062,AAA Batteries (4-pack),1,2.99,09/13/19 11:22,"101 Church St, Los Angeles, CA 90001" +261063,Apple Airpods Headphones,1,150,09/02/19 20:12,"399 Center St, San Francisco, CA 94016" +261064,AA Batteries (4-pack),1,3.84,09/10/19 19:31,"125 10th St, Atlanta, GA 30301" +261065,AAA Batteries (4-pack),2,2.99,09/10/19 15:21,"672 8th St, Portland, OR 97035" +261066,AA Batteries (4-pack),2,3.84,09/11/19 07:57,"959 Pine St, Seattle, WA 98101" +261067,27in FHD Monitor,1,149.99,09/28/19 19:17,"641 Washington St, San Francisco, CA 94016" +261068,Lightning Charging Cable,1,14.95,09/29/19 23:12,"720 North St, Dallas, TX 75001" +261069,ThinkPad Laptop,1,999.99,09/22/19 20:29,"388 Johnson St, Seattle, WA 98101" +261070,AA Batteries (4-pack),1,3.84,09/01/19 11:02,"620 Meadow St, Seattle, WA 98101" +261071,Apple Airpods Headphones,1,150,09/20/19 18:15,"881 Jackson St, New York City, NY 10001" +261072,AAA Batteries (4-pack),1,2.99,09/12/19 20:16,"996 13th St, San Francisco, CA 94016" +261073,AA Batteries (4-pack),2,3.84,09/03/19 12:36,"159 Adams St, San Francisco, CA 94016" +261074,ThinkPad Laptop,1,999.99,09/16/19 17:20,"71 Willow St, Austin, TX 73301" +261075,Bose SoundSport Headphones,1,99.99,09/30/19 20:24,"508 Elm St, San Francisco, CA 94016" +261076,Bose SoundSport Headphones,1,99.99,09/16/19 12:43,"392 Church St, New York City, NY 10001" +261077,AA Batteries (4-pack),1,3.84,09/26/19 12:02,"689 Madison St, Los Angeles, CA 90001" +261078,Lightning Charging Cable,1,14.95,09/25/19 10:17,"513 Dogwood St, New York City, NY 10001" +261079,34in Ultrawide Monitor,1,379.99,09/24/19 06:54,"121 Walnut St, Los Angeles, CA 90001" +261080,USB-C Charging Cable,1,11.95,09/17/19 13:03,"7 6th St, Los Angeles, CA 90001" +261081,Macbook Pro Laptop,1,1700,09/12/19 12:22,"655 Wilson St, Seattle, WA 98101" +261082,Bose SoundSport Headphones,1,99.99,09/04/19 16:05,"174 Adams St, Boston, MA 02215" +261083,Lightning Charging Cable,1,14.95,09/07/19 01:53,"222 1st St, New York City, NY 10001" +261084,Apple Airpods Headphones,1,150,09/07/19 17:45,"51 12th St, New York City, NY 10001" +261085,AAA Batteries (4-pack),1,2.99,09/17/19 14:03,"781 Washington St, Austin, TX 73301" +261086,Macbook Pro Laptop,1,1700,09/21/19 11:50,"845 Washington St, Atlanta, GA 30301" +261087,27in FHD Monitor,1,149.99,09/27/19 17:53,"206 Sunset St, Boston, MA 02215" +261088,Google Phone,1,600,09/08/19 12:47,"539 Lakeview St, New York City, NY 10001" +261089,AAA Batteries (4-pack),1,2.99,09/08/19 19:45,"147 1st St, San Francisco, CA 94016" +261090,USB-C Charging Cable,1,11.95,09/10/19 08:12,"944 5th St, Boston, MA 02215" +261091,27in 4K Gaming Monitor,1,389.99,09/24/19 23:22,"463 Johnson St, Los Angeles, CA 90001" +261092,ThinkPad Laptop,1,999.99,09/22/19 18:59,"616 Cedar St, Los Angeles, CA 90001" +261093,USB-C Charging Cable,1,11.95,09/26/19 22:42,"174 North St, Atlanta, GA 30301" +261094,iPhone,1,700,09/15/19 19:35,"993 8th St, Portland, OR 97035" +261095,27in 4K Gaming Monitor,1,389.99,09/20/19 13:38,"189 1st St, Seattle, WA 98101" +261096,Macbook Pro Laptop,1,1700,09/03/19 21:32,"828 Adams St, San Francisco, CA 94016" +261097,Lightning Charging Cable,1,14.95,09/20/19 19:14,"995 2nd St, Dallas, TX 75001" +261098,AAA Batteries (4-pack),1,2.99,09/01/19 20:48,"44 9th St, Portland, OR 97035" +261098,AA Batteries (4-pack),1,3.84,09/01/19 20:48,"44 9th St, Portland, OR 97035" +261099,34in Ultrawide Monitor,1,379.99,09/15/19 20:20,"683 Willow St, New York City, NY 10001" +261100,27in FHD Monitor,1,149.99,09/30/19 14:08,"284 4th St, Atlanta, GA 30301" +261101,AAA Batteries (4-pack),1,2.99,09/23/19 20:27,"559 Hickory St, New York City, NY 10001" +261102,Apple Airpods Headphones,1,150,09/29/19 12:28,"94 4th St, San Francisco, CA 94016" +261103,27in 4K Gaming Monitor,1,389.99,09/22/19 01:03,"599 Hickory St, Boston, MA 02215" +261104,Wired Headphones,1,11.99,09/22/19 16:37,"179 1st St, Boston, MA 02215" +261105,27in FHD Monitor,1,149.99,09/20/19 15:17,"566 Park St, Portland, OR 97035" +261106,Wired Headphones,1,11.99,09/18/19 18:31,"337 South St, Boston, MA 02215" +261107,Macbook Pro Laptop,1,1700,09/25/19 02:37,"331 Walnut St, Portland, ME 04101" +261108,AAA Batteries (4-pack),1,2.99,09/02/19 18:16,"293 1st St, Atlanta, GA 30301" +261109,Lightning Charging Cable,1,14.95,09/29/19 18:10,"39 Madison St, San Francisco, CA 94016" +261110,Vareebadd Phone,1,400,09/12/19 17:16,"489 14th St, Austin, TX 73301" +261110,USB-C Charging Cable,1,11.95,09/12/19 17:16,"489 14th St, Austin, TX 73301" +261111,Lightning Charging Cable,1,14.95,09/14/19 19:21,"285 Madison St, Portland, OR 97035" +261112,Wired Headphones,2,11.99,09/06/19 12:00,"373 Madison St, Seattle, WA 98101" +261113,AA Batteries (4-pack),2,3.84,09/24/19 12:53,"782 Highland St, New York City, NY 10001" +261114,Flatscreen TV,1,300,09/21/19 16:19,"797 Hill St, San Francisco, CA 94016" +261115,27in 4K Gaming Monitor,1,389.99,09/05/19 15:10,"331 6th St, Los Angeles, CA 90001" +261116,USB-C Charging Cable,1,11.95,09/07/19 10:05,"771 4th St, Boston, MA 02215" +261117,AAA Batteries (4-pack),2,2.99,09/04/19 14:33,"825 Elm St, Dallas, TX 75001" +261118,AA Batteries (4-pack),1,3.84,09/30/19 09:14,"335 Elm St, San Francisco, CA 94016" +261119,Wired Headphones,1,11.99,09/18/19 06:18,"765 Jefferson St, Atlanta, GA 30301" +261120,Wired Headphones,3,11.99,09/03/19 14:46,"389 14th St, San Francisco, CA 94016" +261121,Wired Headphones,1,11.99,09/28/19 18:22,"507 2nd St, San Francisco, CA 94016" +261122,iPhone,1,700,09/15/19 11:47,"16 8th St, Boston, MA 02215" +261123,AAA Batteries (4-pack),1,2.99,09/28/19 22:15,"693 Center St, Los Angeles, CA 90001" +261124,Bose SoundSport Headphones,1,99.99,09/25/19 16:19,"383 Lake St, Boston, MA 02215" +261125,Apple Airpods Headphones,1,150,09/19/19 09:03,"981 Elm St, Los Angeles, CA 90001" +261126,Lightning Charging Cable,1,14.95,09/06/19 14:59,"545 Johnson St, Boston, MA 02215" +261127,34in Ultrawide Monitor,1,379.99,09/15/19 18:57,"640 12th St, San Francisco, CA 94016" +261128,Flatscreen TV,1,300,09/11/19 19:04,"264 Chestnut St, San Francisco, CA 94016" +261129,AAA Batteries (4-pack),1,2.99,09/20/19 09:17,"887 Cherry St, New York City, NY 10001" +261130,AAA Batteries (4-pack),1,2.99,09/02/19 15:23,"431 Hill St, Seattle, WA 98101" +261131,iPhone,1,700,09/28/19 12:49,"358 Madison St, Boston, MA 02215" +261132,Bose SoundSport Headphones,1,99.99,09/14/19 10:03,"478 4th St, New York City, NY 10001" +261133,Bose SoundSport Headphones,1,99.99,09/26/19 13:32,"394 4th St, Boston, MA 02215" +261134,Wired Headphones,1,11.99,09/05/19 14:47,"196 North St, Seattle, WA 98101" +261135,Wired Headphones,1,11.99,09/28/19 12:04,"304 Jackson St, Boston, MA 02215" +261136,Wired Headphones,1,11.99,09/04/19 19:39,"863 West St, Austin, TX 73301" +261137,AA Batteries (4-pack),1,3.84,09/16/19 19:28,"857 Main St, New York City, NY 10001" +261138,Google Phone,1,600,09/12/19 22:21,"234 Jefferson St, Los Angeles, CA 90001" +261139,Google Phone,1,600,09/17/19 10:31,"873 12th St, Seattle, WA 98101" +261139,Bose SoundSport Headphones,1,99.99,09/17/19 10:31,"873 12th St, Seattle, WA 98101" +261140,Lightning Charging Cable,1,14.95,09/01/19 23:36,"951 1st St, Seattle, WA 98101" +261141,Bose SoundSport Headphones,1,99.99,09/26/19 12:28,"422 Dogwood St, San Francisco, CA 94016" +261142,Macbook Pro Laptop,1,1700,09/13/19 17:29,"427 Walnut St, San Francisco, CA 94016" +261143,AA Batteries (4-pack),1,3.84,09/22/19 12:37,"726 Highland St, Atlanta, GA 30301" +261144,Bose SoundSport Headphones,1,99.99,09/19/19 11:03,"160 9th St, Atlanta, GA 30301" +261145,27in FHD Monitor,1,149.99,09/10/19 14:26,"996 2nd St, San Francisco, CA 94016" +261146,iPhone,1,700,09/02/19 12:25,"545 4th St, San Francisco, CA 94016" +261147,Lightning Charging Cable,1,14.95,09/11/19 00:35,"151 11th St, Dallas, TX 75001" +261148,Flatscreen TV,1,300,09/22/19 13:10,"696 Lakeview St, Boston, MA 02215" +261149,AA Batteries (4-pack),1,3.84,09/19/19 11:54,"881 12th St, New York City, NY 10001" +261150,Wired Headphones,1,11.99,09/03/19 20:18,"89 Lincoln St, Dallas, TX 75001" +261151,Lightning Charging Cable,1,14.95,09/08/19 16:53,"136 12th St, San Francisco, CA 94016" +261152,34in Ultrawide Monitor,1,379.99,09/18/19 11:35,"94 Elm St, Atlanta, GA 30301" +261153,iPhone,1,700,09/24/19 09:49,"297 14th St, Los Angeles, CA 90001" +261154,AAA Batteries (4-pack),1,2.99,09/06/19 21:14,"665 Dogwood St, San Francisco, CA 94016" +261155,Lightning Charging Cable,1,14.95,09/01/19 23:55,"400 South St, New York City, NY 10001" +261156,Wired Headphones,1,11.99,09/21/19 20:04,"329 South St, Austin, TX 73301" +261157,Bose SoundSport Headphones,1,99.99,09/28/19 09:15,"667 Park St, New York City, NY 10001" +261158,27in 4K Gaming Monitor,1,389.99,09/05/19 22:12,"600 10th St, Atlanta, GA 30301" +261159,Flatscreen TV,1,300,09/21/19 10:11,"138 6th St, Boston, MA 02215" +261160,USB-C Charging Cable,1,11.95,09/24/19 21:07,"676 Sunset St, Atlanta, GA 30301" +261161,27in 4K Gaming Monitor,1,389.99,09/08/19 10:16,"962 Park St, Seattle, WA 98101" +261162,AAA Batteries (4-pack),1,2.99,09/13/19 10:38,"808 Dogwood St, New York City, NY 10001" +261163,20in Monitor,1,109.99,09/13/19 14:03,"217 Dogwood St, Los Angeles, CA 90001" +261164,Lightning Charging Cable,1,14.95,09/12/19 10:28,"487 1st St, Los Angeles, CA 90001" +261165,ThinkPad Laptop,1,999.99,09/30/19 11:49,"556 11th St, Austin, TX 73301" +261166,Bose SoundSport Headphones,1,99.99,09/10/19 10:04,"305 11th St, Austin, TX 73301" +261167,Bose SoundSport Headphones,1,99.99,09/19/19 18:14,"641 Walnut St, Seattle, WA 98101" +261168,USB-C Charging Cable,1,11.95,09/07/19 12:51,"654 Forest St, Los Angeles, CA 90001" +261169,Wired Headphones,1,11.99,09/02/19 11:27,"443 Park St, New York City, NY 10001" +261170,34in Ultrawide Monitor,1,379.99,09/30/19 18:40,"794 Lincoln St, San Francisco, CA 94016" +261171,Wired Headphones,1,11.99,09/26/19 19:45,"120 Wilson St, Portland, OR 97035" +261172,Google Phone,1,600,09/12/19 20:12,"632 8th St, Dallas, TX 75001" +261173,USB-C Charging Cable,1,11.95,09/29/19 17:21,"525 South St, New York City, NY 10001" +261174,USB-C Charging Cable,1,11.95,09/17/19 12:40,"263 1st St, Portland, OR 97035" +261175,Bose SoundSport Headphones,1,99.99,09/14/19 14:38,"376 North St, Dallas, TX 75001" +261176,Flatscreen TV,2,300,09/27/19 16:30,"101 Johnson St, San Francisco, CA 94016" +261177,20in Monitor,1,109.99,09/19/19 00:50,"489 13th St, Boston, MA 02215" +261178,AAA Batteries (4-pack),1,2.99,09/20/19 01:22,"402 West St, Atlanta, GA 30301" +261179,27in FHD Monitor,1,149.99,09/30/19 18:18,"6 Lincoln St, San Francisco, CA 94016" +261180,USB-C Charging Cable,1,11.95,09/24/19 20:04,"876 Walnut St, San Francisco, CA 94016" +261181,Macbook Pro Laptop,1,1700,09/19/19 19:09,"978 Chestnut St, Atlanta, GA 30301" +261182,Wired Headphones,1,11.99,09/15/19 19:52,"152 7th St, San Francisco, CA 94016" +261183,Lightning Charging Cable,1,14.95,09/17/19 07:18,"529 North St, Boston, MA 02215" +261184,Lightning Charging Cable,1,14.95,09/10/19 18:54,"546 Pine St, Boston, MA 02215" +261185,AA Batteries (4-pack),1,3.84,09/27/19 21:30,"332 Jefferson St, Seattle, WA 98101" +261186,ThinkPad Laptop,1,999.99,09/08/19 15:31,"142 River St, Los Angeles, CA 90001" +261187,AAA Batteries (4-pack),2,2.99,09/25/19 16:06,"698 Cedar St, Los Angeles, CA 90001" +261188,Lightning Charging Cable,1,14.95,09/16/19 18:10,"119 Cedar St, Los Angeles, CA 90001" +261189,Wired Headphones,1,11.99,09/23/19 14:41,"824 13th St, Dallas, TX 75001" +261190,Vareebadd Phone,1,400,09/29/19 11:05,"249 7th St, Austin, TX 73301" +261191,AAA Batteries (4-pack),1,2.99,09/14/19 10:01,"664 Cherry St, Portland, OR 97035" +261192,Macbook Pro Laptop,1,1700,09/03/19 20:21,"151 Church St, San Francisco, CA 94016" +261193,AAA Batteries (4-pack),1,2.99,09/29/19 22:42,"254 West St, Atlanta, GA 30301" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +261194,Apple Airpods Headphones,1,150,09/26/19 15:23,"326 9th St, Los Angeles, CA 90001" +261195,AAA Batteries (4-pack),1,2.99,09/12/19 11:28,"502 Sunset St, New York City, NY 10001" +261196,27in 4K Gaming Monitor,1,389.99,09/15/19 19:05,"969 River St, Portland, OR 97035" +261197,iPhone,1,700,09/16/19 12:11,"190 Lake St, Portland, ME 04101" +261198,AAA Batteries (4-pack),1,2.99,09/20/19 18:51,"841 Dogwood St, San Francisco, CA 94016" +261199,USB-C Charging Cable,2,11.95,09/26/19 11:46,"283 14th St, Dallas, TX 75001" +261200,USB-C Charging Cable,1,11.95,09/04/19 10:09,"22 Main St, New York City, NY 10001" +261201,ThinkPad Laptop,1,999.99,09/17/19 17:33,"920 Lakeview St, Boston, MA 02215" +261202,ThinkPad Laptop,1,999.99,09/05/19 23:42,"548 Chestnut St, Los Angeles, CA 90001" +261203,AA Batteries (4-pack),1,3.84,09/23/19 14:27,"591 1st St, Portland, OR 97035" +261204,Lightning Charging Cable,1,14.95,09/11/19 19:15,"468 North St, San Francisco, CA 94016" +261205,Flatscreen TV,1,300,09/02/19 11:43,"548 Cedar St, San Francisco, CA 94016" +261206,27in 4K Gaming Monitor,1,389.99,09/21/19 22:46,"730 Cherry St, San Francisco, CA 94016" +261207,iPhone,1,700,09/04/19 12:40,"141 Forest St, New York City, NY 10001" +261208,iPhone,1,700,09/23/19 12:07,"622 Cedar St, Dallas, TX 75001" +261208,Lightning Charging Cable,1,14.95,09/23/19 12:07,"622 Cedar St, Dallas, TX 75001" +261209,USB-C Charging Cable,2,11.95,09/01/19 11:25,"570 Park St, Dallas, TX 75001" +261210,Wired Headphones,1,11.99,09/19/19 23:05,"28 12th St, Boston, MA 02215" +261211,AA Batteries (4-pack),2,3.84,09/11/19 21:19,"729 Lake St, Atlanta, GA 30301" +261212,USB-C Charging Cable,1,11.95,09/25/19 21:23,"448 Jefferson St, San Francisco, CA 94016" +261213,USB-C Charging Cable,1,11.95,09/03/19 20:31,"697 7th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +261214,USB-C Charging Cable,1,11.95,09/14/19 19:09,"252 Lincoln St, San Francisco, CA 94016" +261215,Lightning Charging Cable,1,14.95,09/24/19 14:58,"690 Hickory St, San Francisco, CA 94016" +261216,27in FHD Monitor,1,149.99,09/03/19 13:23,"159 Pine St, Boston, MA 02215" +261217,USB-C Charging Cable,1,11.95,09/02/19 12:40,"763 Meadow St, Dallas, TX 75001" +261218,Bose SoundSport Headphones,1,99.99,09/06/19 08:58,"380 Madison St, Los Angeles, CA 90001" +261219,Apple Airpods Headphones,1,150,09/19/19 08:50,"962 Dogwood St, San Francisco, CA 94016" +261220,Bose SoundSport Headphones,1,99.99,09/07/19 07:13,"816 Sunset St, San Francisco, CA 94016" +261221,Apple Airpods Headphones,1,150,09/21/19 00:37,"952 Chestnut St, San Francisco, CA 94016" +261222,Apple Airpods Headphones,1,150,09/29/19 14:57,"987 Church St, San Francisco, CA 94016" +261223,AAA Batteries (4-pack),2,2.99,09/12/19 10:04,"749 Dogwood St, Austin, TX 73301" +261224,Apple Airpods Headphones,1,150,09/27/19 20:43,"693 Elm St, San Francisco, CA 94016" +261225,Apple Airpods Headphones,1,150,09/21/19 13:07,"519 Dogwood St, Boston, MA 02215" +261226,34in Ultrawide Monitor,1,379.99,09/08/19 15:50,"482 Jefferson St, Boston, MA 02215" +261227,USB-C Charging Cable,1,11.95,09/01/19 21:24,"12 Sunset St, Seattle, WA 98101" +261228,Flatscreen TV,1,300,09/20/19 10:36,"297 Lake St, Los Angeles, CA 90001" +261229,USB-C Charging Cable,1,11.95,09/29/19 07:58,"779 Dogwood St, Los Angeles, CA 90001" +261230,iPhone,1,700,09/20/19 11:54,"160 Cedar St, New York City, NY 10001" +261231,27in FHD Monitor,1,149.99,09/18/19 08:49,"22 Johnson St, New York City, NY 10001" +261232,ThinkPad Laptop,1,999.99,09/27/19 16:31,"976 Church St, Austin, TX 73301" +261233,Wired Headphones,1,11.99,09/21/19 18:44,"321 Hill St, Seattle, WA 98101" +261234,27in 4K Gaming Monitor,1,389.99,09/15/19 11:27,"652 Church St, San Francisco, CA 94016" +261235,Bose SoundSport Headphones,1,99.99,09/15/19 09:12,"691 1st St, Portland, OR 97035" +261236,Macbook Pro Laptop,1,1700,09/16/19 07:59,"815 Elm St, Portland, OR 97035" +261237,Wired Headphones,1,11.99,09/14/19 18:43,"525 Maple St, Seattle, WA 98101" +261238,AA Batteries (4-pack),1,3.84,09/03/19 14:21,"450 Chestnut St, San Francisco, CA 94016" +261239,Bose SoundSport Headphones,1,99.99,09/13/19 20:35,"459 Hickory St, Seattle, WA 98101" +261240,AA Batteries (4-pack),1,3.84,09/24/19 15:14,"93 Meadow St, Seattle, WA 98101" +261241,Bose SoundSport Headphones,1,99.99,09/10/19 23:16,"123 Washington St, Los Angeles, CA 90001" +261242,Lightning Charging Cable,1,14.95,09/23/19 09:57,"373 Hill St, New York City, NY 10001" +261243,AAA Batteries (4-pack),1,2.99,09/09/19 21:25,"244 Park St, San Francisco, CA 94016" +261244,Lightning Charging Cable,1,14.95,09/02/19 10:04,"357 4th St, Los Angeles, CA 90001" +261245,Bose SoundSport Headphones,2,99.99,09/29/19 12:50,"461 6th St, San Francisco, CA 94016" +261246,Apple Airpods Headphones,1,150,09/02/19 14:59,"107 Washington St, Atlanta, GA 30301" +261247,Lightning Charging Cable,1,14.95,09/08/19 11:26,"690 Pine St, Austin, TX 73301" +261248,Wired Headphones,1,11.99,09/25/19 21:38,"564 Lincoln St, Austin, TX 73301" +261249,27in 4K Gaming Monitor,1,389.99,09/11/19 13:00,"256 10th St, Boston, MA 02215" +261250,Wired Headphones,1,11.99,09/13/19 19:15,"440 Spruce St, Atlanta, GA 30301" +261251,Macbook Pro Laptop,1,1700,09/05/19 16:54,"149 Pine St, New York City, NY 10001" +261252,Google Phone,1,600,09/22/19 07:56,"596 River St, Los Angeles, CA 90001" +261253,Lightning Charging Cable,1,14.95,09/26/19 12:55,"409 Walnut St, Los Angeles, CA 90001" +261254,Bose SoundSport Headphones,1,99.99,09/19/19 12:18,"855 Park St, San Francisco, CA 94016" +261255,20in Monitor,2,109.99,09/15/19 11:17,"609 Jackson St, New York City, NY 10001" +261256,Lightning Charging Cable,1,14.95,09/10/19 08:11,"134 Jefferson St, Portland, OR 97035" +261257,Wired Headphones,1,11.99,09/13/19 13:07,"757 Ridge St, New York City, NY 10001" +261258,Wired Headphones,1,11.99,09/27/19 18:16,"329 13th St, Atlanta, GA 30301" +261259,27in FHD Monitor,1,149.99,09/12/19 08:52,"943 4th St, New York City, NY 10001" +261260,Lightning Charging Cable,1,14.95,09/05/19 08:32,"517 Main St, San Francisco, CA 94016" +261261,Bose SoundSport Headphones,1,99.99,09/01/19 19:32,"424 Cherry St, Austin, TX 73301" +261262,Google Phone,1,600,09/21/19 14:02,"993 Wilson St, Atlanta, GA 30301" +261263,Apple Airpods Headphones,1,150,09/26/19 16:52,"816 8th St, Austin, TX 73301" +261264,Wired Headphones,1,11.99,09/28/19 19:31,"576 2nd St, San Francisco, CA 94016" +261265,Wired Headphones,2,11.99,09/26/19 01:32,"515 Adams St, Seattle, WA 98101" +261266,iPhone,1,700,09/08/19 14:23,"373 South St, Seattle, WA 98101" +261266,Lightning Charging Cable,1,14.95,09/08/19 14:23,"373 South St, Seattle, WA 98101" +261267,Wired Headphones,1,11.99,09/08/19 12:28,"236 Washington St, San Francisco, CA 94016" +261268,AA Batteries (4-pack),1,3.84,09/06/19 20:54,"7 Highland St, Boston, MA 02215" +261269,AAA Batteries (4-pack),1,2.99,09/19/19 09:25,"11 Meadow St, Boston, MA 02215" +261270,AA Batteries (4-pack),1,3.84,09/30/19 16:13,"994 14th St, Boston, MA 02215" +261271,Flatscreen TV,1,300,09/22/19 13:28,"974 North St, Dallas, TX 75001" +261272,Apple Airpods Headphones,1,150,09/16/19 15:39,"857 Adams St, San Francisco, CA 94016" +261273,AAA Batteries (4-pack),1,2.99,09/22/19 20:42,"500 Johnson St, Austin, TX 73301" +261274,AA Batteries (4-pack),1,3.84,09/02/19 11:59,"329 Willow St, San Francisco, CA 94016" +261275,Apple Airpods Headphones,1,150,09/20/19 11:54,"761 8th St, Los Angeles, CA 90001" +261276,AA Batteries (4-pack),2,3.84,09/24/19 17:58,"999 8th St, Los Angeles, CA 90001" +261277,Lightning Charging Cable,1,14.95,09/22/19 12:11,"524 Cedar St, Dallas, TX 75001" +261278,AA Batteries (4-pack),1,3.84,09/29/19 16:17,"240 Ridge St, Portland, OR 97035" +261279,Lightning Charging Cable,1,14.95,09/28/19 12:47,"713 Jefferson St, Los Angeles, CA 90001" +261279,Wired Headphones,1,11.99,09/28/19 12:47,"713 Jefferson St, Los Angeles, CA 90001" +261280,Bose SoundSport Headphones,1,99.99,09/07/19 19:29,"422 Wilson St, Seattle, WA 98101" +261281,AA Batteries (4-pack),2,3.84,09/11/19 17:14,"757 Church St, Atlanta, GA 30301" +261282,AAA Batteries (4-pack),1,2.99,09/24/19 05:19,"52 Highland St, Los Angeles, CA 90001" +261283,Lightning Charging Cable,1,14.95,09/28/19 10:36,"425 Madison St, Boston, MA 02215" +261284,AA Batteries (4-pack),2,3.84,09/20/19 19:36,"771 Church St, Los Angeles, CA 90001" +261285,iPhone,1,700,09/24/19 18:44,"940 10th St, Atlanta, GA 30301" +261286,Apple Airpods Headphones,1,150,09/19/19 15:44,"638 Washington St, New York City, NY 10001" +261287,AA Batteries (4-pack),2,3.84,09/16/19 01:01,"815 North St, New York City, NY 10001" +261288,USB-C Charging Cable,1,11.95,09/25/19 11:53,"667 Sunset St, Los Angeles, CA 90001" +261289,Macbook Pro Laptop,1,1700,09/18/19 16:55,"709 Hickory St, Los Angeles, CA 90001" +261290,USB-C Charging Cable,1,11.95,09/23/19 22:54,"157 Walnut St, Boston, MA 02215" +261291,Bose SoundSport Headphones,1,99.99,09/28/19 05:41,"464 Lakeview St, Los Angeles, CA 90001" +261292,Macbook Pro Laptop,1,1700,09/26/19 09:53,"40 Madison St, San Francisco, CA 94016" +261293,AA Batteries (4-pack),1,3.84,09/23/19 12:33,"106 River St, Dallas, TX 75001" +261294,Apple Airpods Headphones,1,150,09/26/19 15:29,"661 Sunset St, San Francisco, CA 94016" +261295,AAA Batteries (4-pack),1,2.99,09/27/19 08:50,"196 Spruce St, Austin, TX 73301" +261296,Bose SoundSport Headphones,1,99.99,09/05/19 12:02,"820 Hill St, San Francisco, CA 94016" +261297,Vareebadd Phone,1,400,09/10/19 19:27,"664 5th St, Los Angeles, CA 90001" +261298,USB-C Charging Cable,1,11.95,09/19/19 10:24,"363 4th St, Austin, TX 73301" +261299,LG Washing Machine,1,600.0,09/05/19 10:01,"508 Sunset St, Boston, MA 02215" +261300,Wired Headphones,1,11.99,09/13/19 17:01,"252 4th St, Los Angeles, CA 90001" +261301,Wired Headphones,1,11.99,09/07/19 20:23,"449 Ridge St, Boston, MA 02215" +261302,AA Batteries (4-pack),2,3.84,09/28/19 11:49,"486 Madison St, New York City, NY 10001" +261303,27in 4K Gaming Monitor,1,389.99,09/12/19 17:36,"304 Sunset St, New York City, NY 10001" +261304,Apple Airpods Headphones,1,150,09/24/19 16:55,"206 South St, New York City, NY 10001" +261305,iPhone,1,700,09/21/19 17:03,"491 Chestnut St, San Francisco, CA 94016" +261306,iPhone,1,700,09/21/19 15:03,"62 Elm St, New York City, NY 10001" +261307,AAA Batteries (4-pack),1,2.99,09/13/19 11:41,"773 Lakeview St, Los Angeles, CA 90001" +261308,Google Phone,1,600,09/21/19 16:16,"733 1st St, Austin, TX 73301" +261309,USB-C Charging Cable,1,11.95,09/18/19 11:07,"939 Park St, Atlanta, GA 30301" +261310,AA Batteries (4-pack),2,3.84,09/03/19 21:30,"706 2nd St, New York City, NY 10001" +261311,34in Ultrawide Monitor,1,379.99,09/07/19 03:11,"964 Spruce St, San Francisco, CA 94016" +261312,Bose SoundSport Headphones,1,99.99,09/25/19 19:16,"371 Meadow St, Boston, MA 02215" +261313,Bose SoundSport Headphones,1,99.99,09/16/19 15:30,"814 Meadow St, Los Angeles, CA 90001" +261314,AAA Batteries (4-pack),2,2.99,09/30/19 10:47,"418 West St, San Francisco, CA 94016" +261315,20in Monitor,1,109.99,09/16/19 18:01,"630 Pine St, Portland, ME 04101" +261316,AA Batteries (4-pack),1,3.84,09/24/19 14:30,"87 10th St, Boston, MA 02215" +261317,Wired Headphones,1,11.99,09/17/19 19:21,"695 South St, Boston, MA 02215" +261318,Bose SoundSport Headphones,1,99.99,09/01/19 20:50,"587 Church St, San Francisco, CA 94016" +261319,Lightning Charging Cable,1,14.95,09/17/19 21:09,"286 West St, Austin, TX 73301" +261320,iPhone,1,700,09/19/19 18:46,"730 West St, Atlanta, GA 30301" +261321,Apple Airpods Headphones,1,150,09/23/19 10:29,"349 Main St, New York City, NY 10001" +261322,AAA Batteries (4-pack),1,2.99,09/21/19 16:24,"42 Meadow St, San Francisco, CA 94016" +261323,Wired Headphones,1,11.99,09/02/19 11:19,"553 11th St, Boston, MA 02215" +261324,27in 4K Gaming Monitor,1,389.99,09/14/19 14:00,"553 Jackson St, Seattle, WA 98101" +261325,USB-C Charging Cable,1,11.95,09/18/19 11:50,"838 Center St, Dallas, TX 75001" +261326,Wired Headphones,1,11.99,09/22/19 12:46,"145 Wilson St, Dallas, TX 75001" +261327,AA Batteries (4-pack),3,3.84,09/14/19 09:43,"611 8th St, Los Angeles, CA 90001" +261328,Google Phone,1,600,09/19/19 14:06,"240 Johnson St, San Francisco, CA 94016" +261328,Wired Headphones,1,11.99,09/19/19 14:06,"240 Johnson St, San Francisco, CA 94016" +261329,Lightning Charging Cable,1,14.95,09/15/19 06:52,"617 Washington St, San Francisco, CA 94016" +261330,AA Batteries (4-pack),2,3.84,09/17/19 11:01,"941 Johnson St, Los Angeles, CA 90001" +261331,USB-C Charging Cable,1,11.95,09/17/19 08:52,"716 Main St, San Francisco, CA 94016" +261332,USB-C Charging Cable,1,11.95,09/23/19 19:42,"295 10th St, Boston, MA 02215" +261333,27in 4K Gaming Monitor,1,389.99,09/25/19 15:21,"747 Church St, Los Angeles, CA 90001" +261334,AA Batteries (4-pack),1,3.84,09/29/19 13:37,"464 Willow St, Atlanta, GA 30301" +261335,AA Batteries (4-pack),2,3.84,09/17/19 15:30,"785 Chestnut St, Atlanta, GA 30301" +261336,AAA Batteries (4-pack),3,2.99,09/23/19 07:04,"178 8th St, San Francisco, CA 94016" +261337,Apple Airpods Headphones,1,150,09/13/19 09:52,"894 Meadow St, Dallas, TX 75001" +261338,34in Ultrawide Monitor,1,379.99,09/20/19 18:19,"140 14th St, Portland, OR 97035" +261339,Google Phone,1,600,09/11/19 19:46,"986 10th St, Boston, MA 02215" +261340,Lightning Charging Cable,1,14.95,09/20/19 20:27,"37 Church St, Atlanta, GA 30301" +261341,AA Batteries (4-pack),1,3.84,09/19/19 19:38,"104 Ridge St, Atlanta, GA 30301" +261342,Wired Headphones,1,11.99,09/20/19 08:24,"846 Jackson St, San Francisco, CA 94016" +261343,AAA Batteries (4-pack),1,2.99,09/30/19 11:24,"102 Jefferson St, Atlanta, GA 30301" +261344,Macbook Pro Laptop,1,1700,09/15/19 12:48,"378 6th St, Seattle, WA 98101" +261345,Macbook Pro Laptop,1,1700,09/23/19 20:37,"368 Park St, New York City, NY 10001" +261346,Lightning Charging Cable,1,14.95,09/09/19 21:32,"553 River St, San Francisco, CA 94016" +261347,AA Batteries (4-pack),1,3.84,09/18/19 17:40,"649 4th St, San Francisco, CA 94016" +261348,Bose SoundSport Headphones,1,99.99,09/02/19 10:42,"417 Adams St, Austin, TX 73301" +261349,Wired Headphones,1,11.99,09/21/19 16:22,"430 5th St, San Francisco, CA 94016" +261350,27in 4K Gaming Monitor,1,389.99,09/05/19 22:24,"698 Washington St, Atlanta, GA 30301" +261351,Google Phone,1,600,09/03/19 23:03,"394 Washington St, Boston, MA 02215" +261351,USB-C Charging Cable,1,11.95,09/03/19 23:03,"394 Washington St, Boston, MA 02215" +261352,34in Ultrawide Monitor,1,379.99,09/29/19 14:06,"371 Pine St, Austin, TX 73301" +261353,AA Batteries (4-pack),1,3.84,09/10/19 12:49,"519 Jackson St, Boston, MA 02215" +261354,27in FHD Monitor,1,149.99,09/23/19 23:29,"823 Willow St, Seattle, WA 98101" +261355,Lightning Charging Cable,1,14.95,09/18/19 07:42,"565 Spruce St, Dallas, TX 75001" +261356,USB-C Charging Cable,1,11.95,09/01/19 05:31,"98 Park St, San Francisco, CA 94016" +261357,AA Batteries (4-pack),1,3.84,09/04/19 19:39,"602 Park St, Portland, OR 97035" +261358,27in FHD Monitor,1,149.99,09/28/19 15:23,"343 8th St, Dallas, TX 75001" +261359,34in Ultrawide Monitor,1,379.99,09/02/19 17:04,"34 Willow St, San Francisco, CA 94016" +261359,Wired Headphones,1,11.99,09/02/19 17:04,"34 Willow St, San Francisco, CA 94016" +261360,Apple Airpods Headphones,1,150,09/02/19 21:12,"64 Adams St, Los Angeles, CA 90001" +261361,27in 4K Gaming Monitor,1,389.99,09/06/19 11:04,"508 Hill St, San Francisco, CA 94016" +261362,AA Batteries (4-pack),1,3.84,09/24/19 18:02,"280 1st St, Portland, OR 97035" +261363,iPhone,1,700,09/05/19 21:21,"436 Sunset St, San Francisco, CA 94016" +261364,Macbook Pro Laptop,1,1700,09/17/19 11:24,"166 6th St, New York City, NY 10001" +261365,Apple Airpods Headphones,1,150,09/25/19 13:27,"622 Madison St, New York City, NY 10001" +261366,Lightning Charging Cable,1,14.95,09/09/19 20:12,"57 River St, San Francisco, CA 94016" +261367,AA Batteries (4-pack),1,3.84,09/14/19 15:38,"684 Forest St, San Francisco, CA 94016" +261368,AAA Batteries (4-pack),1,2.99,09/08/19 19:38,"674 8th St, New York City, NY 10001" +261368,20in Monitor,1,109.99,09/08/19 19:38,"674 8th St, New York City, NY 10001" +261369,Wired Headphones,1,11.99,09/03/19 14:07,"703 Willow St, Boston, MA 02215" +261370,AA Batteries (4-pack),1,3.84,09/11/19 12:20,"770 Walnut St, Dallas, TX 75001" +261371,Macbook Pro Laptop,1,1700,09/30/19 20:08,"443 North St, Portland, OR 97035" +261372,Google Phone,1,600,09/07/19 20:57,"788 Highland St, Los Angeles, CA 90001" +261373,Bose SoundSport Headphones,1,99.99,09/24/19 21:20,"284 10th St, Atlanta, GA 30301" +261374,Lightning Charging Cable,1,14.95,09/19/19 11:28,"243 Meadow St, Seattle, WA 98101" +261375,USB-C Charging Cable,1,11.95,09/23/19 15:43,"178 Johnson St, New York City, NY 10001" +261376,Lightning Charging Cable,1,14.95,09/01/19 21:01,"387 7th St, New York City, NY 10001" +261377,Lightning Charging Cable,1,14.95,09/09/19 18:00,"156 Center St, San Francisco, CA 94016" +261378,AAA Batteries (4-pack),3,2.99,09/02/19 19:03,"530 1st St, Los Angeles, CA 90001" +261379,Macbook Pro Laptop,1,1700,09/06/19 11:28,"192 Adams St, Atlanta, GA 30301" +261380,20in Monitor,1,109.99,09/27/19 11:10,"299 8th St, Atlanta, GA 30301" +261381,Wired Headphones,1,11.99,09/26/19 11:14,"186 7th St, Los Angeles, CA 90001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +261382,Apple Airpods Headphones,1,150,09/21/19 16:27,"157 Hickory St, Boston, MA 02215" +261383,USB-C Charging Cable,1,11.95,09/14/19 17:58,"383 Wilson St, San Francisco, CA 94016" +261384,USB-C Charging Cable,1,11.95,09/15/19 16:26,"746 Park St, New York City, NY 10001" +261385,AA Batteries (4-pack),1,3.84,09/09/19 16:17,"482 Hickory St, New York City, NY 10001" +261386,ThinkPad Laptop,1,999.99,09/21/19 06:18,"445 Jackson St, New York City, NY 10001" +261387,Macbook Pro Laptop,1,1700,09/30/19 12:23,"27 13th St, San Francisco, CA 94016" +261388,Apple Airpods Headphones,1,150,09/07/19 20:32,"511 Pine St, San Francisco, CA 94016" +261389,Apple Airpods Headphones,1,150,09/18/19 13:19,"164 Lakeview St, Seattle, WA 98101" +261390,20in Monitor,1,109.99,09/29/19 00:32,"114 Dogwood St, Seattle, WA 98101" +261391,Apple Airpods Headphones,1,150,09/04/19 09:52,"988 Center St, Austin, TX 73301" +261392,20in Monitor,1,109.99,09/01/19 14:27,"420 7th St, San Francisco, CA 94016" +261393,27in 4K Gaming Monitor,1,389.99,09/25/19 13:07,"678 Jefferson St, Los Angeles, CA 90001" +261394,USB-C Charging Cable,1,11.95,09/15/19 20:05,"837 7th St, Los Angeles, CA 90001" +261395,AA Batteries (4-pack),1,3.84,09/25/19 11:42,"177 Highland St, Atlanta, GA 30301" +261396,27in 4K Gaming Monitor,1,389.99,09/23/19 09:30,"694 Church St, New York City, NY 10001" +261397,Wired Headphones,1,11.99,09/07/19 14:33,"426 Willow St, New York City, NY 10001" +261398,USB-C Charging Cable,1,11.95,09/22/19 09:15,"450 Johnson St, San Francisco, CA 94016" +261399,USB-C Charging Cable,1,11.95,09/04/19 12:20,"928 Highland St, Atlanta, GA 30301" +261400,Apple Airpods Headphones,1,150,09/21/19 11:57,"127 Spruce St, Portland, ME 04101" +261401,Bose SoundSport Headphones,1,99.99,09/26/19 12:41,"372 Walnut St, New York City, NY 10001" +261402,27in 4K Gaming Monitor,1,389.99,09/22/19 23:29,"619 7th St, Boston, MA 02215" +261403,Apple Airpods Headphones,1,150,09/06/19 14:25,"884 Walnut St, San Francisco, CA 94016" +261404,LG Washing Machine,1,600.0,09/30/19 19:07,"187 5th St, San Francisco, CA 94016" +261405,Lightning Charging Cable,1,14.95,09/20/19 15:13,"460 North St, Boston, MA 02215" +261406,Bose SoundSport Headphones,1,99.99,09/08/19 19:49,"243 Adams St, Dallas, TX 75001" +261407,USB-C Charging Cable,1,11.95,09/11/19 16:05,"946 4th St, Seattle, WA 98101" +261408,Lightning Charging Cable,1,14.95,09/13/19 14:26,"69 Center St, Seattle, WA 98101" +261409,AAA Batteries (4-pack),4,2.99,09/13/19 16:37,"3 11th St, Portland, ME 04101" +261410,Bose SoundSport Headphones,1,99.99,09/27/19 22:24,"293 Madison St, Portland, OR 97035" +261411,27in FHD Monitor,1,149.99,09/05/19 14:12,"650 Chestnut St, Austin, TX 73301" +261412,AAA Batteries (4-pack),1,2.99,09/03/19 12:48,"234 Church St, Atlanta, GA 30301" +261413,AAA Batteries (4-pack),1,2.99,09/01/19 11:08,"632 Madison St, Portland, ME 04101" +261414,LG Dryer,1,600.0,09/19/19 16:24,"902 Lakeview St, Austin, TX 73301" +261415,AA Batteries (4-pack),1,3.84,09/23/19 09:36,"628 7th St, San Francisco, CA 94016" +261416,Lightning Charging Cable,1,14.95,09/10/19 20:28,"160 12th St, Seattle, WA 98101" +261417,Lightning Charging Cable,1,14.95,09/22/19 20:39,"397 West St, Los Angeles, CA 90001" +261418,Wired Headphones,1,11.99,09/13/19 15:25,"101 Meadow St, Boston, MA 02215" +261419,AA Batteries (4-pack),1,3.84,09/03/19 16:31,"804 North St, Boston, MA 02215" +261420,Lightning Charging Cable,1,14.95,09/19/19 17:08,"469 10th St, Atlanta, GA 30301" +261421,USB-C Charging Cable,1,11.95,09/15/19 16:27,"475 Lake St, New York City, NY 10001" +261422,27in FHD Monitor,1,149.99,09/25/19 15:46,"185 9th St, San Francisco, CA 94016" +261423,AAA Batteries (4-pack),2,2.99,09/07/19 10:42,"565 Forest St, Austin, TX 73301" +261424,27in FHD Monitor,1,149.99,09/27/19 12:23,"205 Adams St, San Francisco, CA 94016" +261425,AA Batteries (4-pack),2,3.84,09/02/19 17:07,"890 Center St, Atlanta, GA 30301" +261426,iPhone,1,700,09/10/19 19:50,"168 Jackson St, Seattle, WA 98101" +261427,Wired Headphones,1,11.99,09/14/19 11:29,"327 Ridge St, San Francisco, CA 94016" +261428,20in Monitor,1,109.99,09/29/19 07:10,"885 Lakeview St, New York City, NY 10001" +261429,Flatscreen TV,1,300,09/09/19 17:57,"430 Jackson St, New York City, NY 10001" +261430,AA Batteries (4-pack),1,3.84,09/11/19 13:01,"701 10th St, San Francisco, CA 94016" +261431,Bose SoundSport Headphones,1,99.99,09/10/19 14:30,"968 Johnson St, Boston, MA 02215" +261432,Apple Airpods Headphones,1,150,09/09/19 16:44,"402 Church St, Portland, OR 97035" +261433,Bose SoundSport Headphones,1,99.99,09/08/19 13:05,"844 Wilson St, Dallas, TX 75001" +261434,AA Batteries (4-pack),1,3.84,09/02/19 19:29,"126 Cherry St, San Francisco, CA 94016" +261435,34in Ultrawide Monitor,1,379.99,09/21/19 22:34,"810 Highland St, Austin, TX 73301" +261436,Apple Airpods Headphones,1,150,10/01/19 01:25,"652 Jackson St, Boston, MA 02215" +261437,AAA Batteries (4-pack),3,2.99,09/23/19 12:43,"589 Hill St, New York City, NY 10001" +261438,Bose SoundSport Headphones,1,99.99,09/12/19 18:52,"999 Elm St, Portland, OR 97035" +261438,Lightning Charging Cable,2,14.95,09/12/19 18:52,"999 Elm St, Portland, OR 97035" +261439,27in 4K Gaming Monitor,1,389.99,09/17/19 11:58,"889 Sunset St, Los Angeles, CA 90001" +261440,AAA Batteries (4-pack),2,2.99,09/13/19 19:11,"765 9th St, Dallas, TX 75001" +261441,iPhone,1,700,09/30/19 19:15,"146 Spruce St, New York City, NY 10001" +261442,Macbook Pro Laptop,1,1700,09/05/19 20:40,"290 Madison St, San Francisco, CA 94016" +261443,AAA Batteries (4-pack),1,2.99,09/12/19 17:40,"567 12th St, Atlanta, GA 30301" +261444,Apple Airpods Headphones,1,150,09/22/19 09:27,"608 Ridge St, New York City, NY 10001" +261445,USB-C Charging Cable,2,11.95,09/14/19 12:59,"273 Dogwood St, New York City, NY 10001" +261446,Google Phone,1,600,09/10/19 23:32,"154 Cherry St, Seattle, WA 98101" +261446,Wired Headphones,1,11.99,09/10/19 23:32,"154 Cherry St, Seattle, WA 98101" +261447,AAA Batteries (4-pack),4,2.99,09/18/19 16:38,"945 Dogwood St, Seattle, WA 98101" +261448,USB-C Charging Cable,1,11.95,09/29/19 10:59,"1 Cherry St, Atlanta, GA 30301" +261449,ThinkPad Laptop,1,999.99,09/22/19 20:35,"162 Park St, Atlanta, GA 30301" +261450,LG Dryer,1,600.0,09/13/19 11:15,"825 5th St, San Francisco, CA 94016" +261451,iPhone,1,700,09/08/19 23:44,"655 Meadow St, Los Angeles, CA 90001" +261451,Lightning Charging Cable,1,14.95,09/08/19 23:44,"655 Meadow St, Los Angeles, CA 90001" +261452,Lightning Charging Cable,1,14.95,09/26/19 08:44,"678 5th St, San Francisco, CA 94016" +261453,ThinkPad Laptop,1,999.99,09/27/19 11:54,"256 13th St, Seattle, WA 98101" +261454,AA Batteries (4-pack),1,3.84,09/11/19 15:10,"726 13th St, Dallas, TX 75001" +261455,LG Dryer,1,600.0,09/15/19 12:37,"904 Hickory St, Los Angeles, CA 90001" +261456,AA Batteries (4-pack),2,3.84,09/06/19 22:58,"605 7th St, Los Angeles, CA 90001" +261457,27in 4K Gaming Monitor,1,389.99,09/06/19 09:18,"986 14th St, Seattle, WA 98101" +261458,Lightning Charging Cable,1,14.95,09/06/19 23:25,"310 9th St, Portland, ME 04101" +261459,Lightning Charging Cable,1,14.95,09/26/19 16:38,"710 Jackson St, Los Angeles, CA 90001" +261460,AA Batteries (4-pack),4,3.84,09/14/19 09:01,"962 Lake St, Boston, MA 02215" +261461,Lightning Charging Cable,1,14.95,09/03/19 19:49,"734 Lakeview St, New York City, NY 10001" +261462,27in FHD Monitor,1,149.99,09/04/19 00:20,"870 Chestnut St, San Francisco, CA 94016" +261463,20in Monitor,1,109.99,09/13/19 22:29,"867 Wilson St, Austin, TX 73301" +261464,Macbook Pro Laptop,1,1700,09/25/19 15:44,"915 8th St, Boston, MA 02215" +261465,USB-C Charging Cable,1,11.95,09/18/19 17:51,"43 11th St, Atlanta, GA 30301" +261466,Wired Headphones,1,11.99,09/20/19 04:20,"206 Spruce St, San Francisco, CA 94016" +261467,20in Monitor,1,109.99,09/04/19 10:02,"882 5th St, Boston, MA 02215" +261468,27in 4K Gaming Monitor,1,389.99,09/14/19 15:53,"519 Elm St, Portland, OR 97035" +261469,27in 4K Gaming Monitor,1,389.99,09/18/19 16:53,"601 Park St, Los Angeles, CA 90001" +261470,Wired Headphones,2,11.99,09/30/19 20:36,"269 Cedar St, Boston, MA 02215" +261471,Macbook Pro Laptop,1,1700,09/04/19 22:09,"807 9th St, Los Angeles, CA 90001" +261472,27in 4K Gaming Monitor,1,389.99,09/14/19 12:29,"887 Chestnut St, New York City, NY 10001" +261473,34in Ultrawide Monitor,1,379.99,09/11/19 21:51,"260 Ridge St, San Francisco, CA 94016" +261474,Wired Headphones,1,11.99,09/30/19 16:19,"288 Hickory St, New York City, NY 10001" +261475,iPhone,1,700,09/18/19 16:57,"123 2nd St, Dallas, TX 75001" +261476,34in Ultrawide Monitor,1,379.99,09/24/19 11:04,"252 West St, Los Angeles, CA 90001" +261477,Wired Headphones,1,11.99,09/21/19 13:42,"918 River St, Seattle, WA 98101" +261478,20in Monitor,2,109.99,09/08/19 14:06,"304 Elm St, Los Angeles, CA 90001" +261479,Lightning Charging Cable,1,14.95,09/30/19 00:11,"700 Jackson St, San Francisco, CA 94016" +261480,Flatscreen TV,1,300,09/10/19 08:26,"466 12th St, Portland, OR 97035" +261481,20in Monitor,1,109.99,09/22/19 23:25,"979 8th St, Los Angeles, CA 90001" +261482,iPhone,1,700,09/25/19 16:59,"649 Center St, Seattle, WA 98101" +261482,Apple Airpods Headphones,1,150,09/25/19 16:59,"649 Center St, Seattle, WA 98101" +261483,Wired Headphones,1,11.99,09/05/19 11:23,"127 Forest St, New York City, NY 10001" +261484,27in FHD Monitor,1,149.99,09/03/19 20:52,"483 Highland St, New York City, NY 10001" +261485,AAA Batteries (4-pack),1,2.99,09/23/19 12:39,"476 Cedar St, Austin, TX 73301" +261486,AAA Batteries (4-pack),1,2.99,09/02/19 12:00,"877 Jackson St, Boston, MA 02215" +261487,Wired Headphones,1,11.99,09/29/19 17:50,"391 2nd St, San Francisco, CA 94016" +261488,Wired Headphones,1,11.99,09/07/19 12:59,"192 Highland St, Austin, TX 73301" +261489,Lightning Charging Cable,1,14.95,09/02/19 05:09,"743 Adams St, Dallas, TX 75001" +261490,USB-C Charging Cable,1,11.95,09/28/19 14:27,"139 14th St, Portland, ME 04101" +261491,34in Ultrawide Monitor,1,379.99,09/21/19 00:04,"309 6th St, New York City, NY 10001" +261492,USB-C Charging Cable,1,11.95,09/17/19 07:41,"748 9th St, New York City, NY 10001" +261493,34in Ultrawide Monitor,1,379.99,09/18/19 20:18,"76 8th St, Seattle, WA 98101" +261494,AAA Batteries (4-pack),2,2.99,09/08/19 18:24,"438 River St, Portland, OR 97035" +261495,Lightning Charging Cable,2,14.95,09/28/19 19:19,"412 Park St, Boston, MA 02215" +261496,27in 4K Gaming Monitor,1,389.99,09/26/19 21:13,"325 Jefferson St, San Francisco, CA 94016" +261497,Google Phone,1,600,09/23/19 01:09,"568 Wilson St, San Francisco, CA 94016" +261498,USB-C Charging Cable,1,11.95,09/01/19 22:24,"765 Hickory St, Seattle, WA 98101" +261499,Apple Airpods Headphones,1,150,09/14/19 21:43,"339 Washington St, Austin, TX 73301" +261500,Google Phone,1,600,09/10/19 08:50,"57 12th St, Boston, MA 02215" +261501,USB-C Charging Cable,1,11.95,09/22/19 07:53,"781 Highland St, Boston, MA 02215" +261502,iPhone,1,700,09/22/19 21:16,"821 5th St, San Francisco, CA 94016" +261503,ThinkPad Laptop,1,999.99,09/11/19 12:05,"222 Spruce St, New York City, NY 10001" +261504,AA Batteries (4-pack),1,3.84,09/28/19 11:33,"801 Walnut St, Los Angeles, CA 90001" +261505,Lightning Charging Cable,1,14.95,09/21/19 08:47,"867 Lake St, Los Angeles, CA 90001" +261506,USB-C Charging Cable,1,11.95,09/07/19 22:47,"673 Jackson St, Dallas, TX 75001" +261507,27in FHD Monitor,1,149.99,09/19/19 18:56,"284 11th St, New York City, NY 10001" +261508,AAA Batteries (4-pack),1,2.99,09/30/19 22:57,"621 Adams St, Dallas, TX 75001" +261509,AAA Batteries (4-pack),1,2.99,09/29/19 10:55,"93 Park St, San Francisco, CA 94016" +261510,iPhone,1,700,09/29/19 16:35,"830 Meadow St, Dallas, TX 75001" +261511,Apple Airpods Headphones,1,150,09/03/19 14:13,"262 Dogwood St, San Francisco, CA 94016" +261512,Google Phone,1,600,09/18/19 13:03,"319 Willow St, Portland, OR 97035" +261513,27in FHD Monitor,1,149.99,09/04/19 23:03,"704 River St, San Francisco, CA 94016" +261514,Wired Headphones,1,11.99,09/07/19 21:42,"107 Cedar St, Atlanta, GA 30301" +261515,AAA Batteries (4-pack),4,2.99,09/06/19 22:41,"145 Jackson St, San Francisco, CA 94016" +261516,USB-C Charging Cable,1,11.95,09/07/19 21:18,"228 Adams St, Dallas, TX 75001" +261517,USB-C Charging Cable,1,11.95,09/25/19 11:04,"479 Meadow St, Dallas, TX 75001" +261518,USB-C Charging Cable,1,11.95,09/26/19 12:12,"426 Maple St, Seattle, WA 98101" +261519,AA Batteries (4-pack),3,3.84,09/04/19 13:21,"919 Hickory St, Atlanta, GA 30301" +261520,LG Dryer,1,600.0,09/27/19 23:49,"216 8th St, Los Angeles, CA 90001" +261521,USB-C Charging Cable,1,11.95,09/04/19 18:44,"252 14th St, Boston, MA 02215" +261522,Flatscreen TV,1,300,09/28/19 21:12,"186 4th St, San Francisco, CA 94016" +261523,Apple Airpods Headphones,1,150,09/26/19 18:04,"386 1st St, Portland, OR 97035" +261524,Apple Airpods Headphones,1,150,09/07/19 21:18,"52 Walnut St, Boston, MA 02215" +261525,27in FHD Monitor,1,149.99,09/09/19 12:18,"568 Wilson St, San Francisco, CA 94016" +261526,Lightning Charging Cable,1,14.95,09/14/19 12:14,"755 Cedar St, New York City, NY 10001" +261527,AA Batteries (4-pack),1,3.84,09/14/19 11:59,"124 5th St, San Francisco, CA 94016" +261528,Macbook Pro Laptop,1,1700,09/04/19 21:40,"911 Lakeview St, Dallas, TX 75001" +261529,Lightning Charging Cable,1,14.95,09/25/19 16:40,"602 Johnson St, Los Angeles, CA 90001" +261530,Apple Airpods Headphones,1,150,09/13/19 13:35,"61 Washington St, San Francisco, CA 94016" +261531,USB-C Charging Cable,1,11.95,09/06/19 11:47,"491 Walnut St, Atlanta, GA 30301" +261532,Apple Airpods Headphones,1,150,09/04/19 17:19,"830 Elm St, Portland, OR 97035" +261533,Lightning Charging Cable,1,14.95,09/30/19 19:11,"303 1st St, Seattle, WA 98101" +261534,Apple Airpods Headphones,1,150,09/28/19 20:42,"769 Meadow St, Seattle, WA 98101" +261535,Google Phone,1,600,09/25/19 15:18,"922 Chestnut St, New York City, NY 10001" +261535,AA Batteries (4-pack),1,3.84,09/25/19 15:18,"922 Chestnut St, New York City, NY 10001" +261536,Lightning Charging Cable,1,14.95,09/11/19 20:17,"836 West St, San Francisco, CA 94016" +261536,Google Phone,1,600,09/11/19 20:17,"836 West St, San Francisco, CA 94016" +261537,34in Ultrawide Monitor,1,379.99,09/13/19 22:14,"733 Madison St, Atlanta, GA 30301" +261538,Wired Headphones,1,11.99,09/30/19 10:42,"70 Hickory St, Boston, MA 02215" +261539,Flatscreen TV,1,300,09/09/19 20:43,"997 Maple St, Portland, OR 97035" +261540,Wired Headphones,1,11.99,09/20/19 11:56,"928 10th St, Seattle, WA 98101" +261541,AA Batteries (4-pack),1,3.84,09/19/19 12:43,"431 Sunset St, Atlanta, GA 30301" +261542,AAA Batteries (4-pack),1,2.99,09/10/19 12:20,"623 10th St, Atlanta, GA 30301" +261543,iPhone,1,700,09/27/19 06:52,"980 5th St, New York City, NY 10001" +261544,AA Batteries (4-pack),2,3.84,09/04/19 12:00,"556 Forest St, New York City, NY 10001" +261544,AAA Batteries (4-pack),1,2.99,09/04/19 12:00,"556 Forest St, New York City, NY 10001" +261545,Lightning Charging Cable,1,14.95,09/09/19 23:33,"299 Madison St, San Francisco, CA 94016" +261546,Apple Airpods Headphones,1,150,09/11/19 19:50,"576 Johnson St, Boston, MA 02215" +261547,AA Batteries (4-pack),1,3.84,09/05/19 19:48,"393 Pine St, San Francisco, CA 94016" +261548,AAA Batteries (4-pack),1,2.99,09/17/19 16:07,"338 Jefferson St, Austin, TX 73301" +261549,Apple Airpods Headphones,1,150,09/01/19 06:58,"112 10th St, Los Angeles, CA 90001" +261550,Flatscreen TV,1,300,09/24/19 11:54,"338 West St, San Francisco, CA 94016" +261551,20in Monitor,1,109.99,09/26/19 20:45,"340 Pine St, Los Angeles, CA 90001" +261552,iPhone,1,700,09/22/19 15:37,"743 Forest St, Dallas, TX 75001" +261553,Apple Airpods Headphones,1,150,09/07/19 18:34,"482 Spruce St, San Francisco, CA 94016" +261554,AA Batteries (4-pack),1,3.84,09/25/19 06:27,"133 Dogwood St, Seattle, WA 98101" +261555,AA Batteries (4-pack),1,3.84,09/06/19 19:17,"438 West St, Dallas, TX 75001" +261556,Wired Headphones,1,11.99,09/08/19 17:29,"976 Chestnut St, New York City, NY 10001" +261557,AA Batteries (4-pack),1,3.84,09/07/19 17:49,"707 Jefferson St, Los Angeles, CA 90001" +261558,AA Batteries (4-pack),3,3.84,09/12/19 17:55,"417 5th St, Boston, MA 02215" +261559,iPhone,1,700,09/12/19 11:18,"443 Lakeview St, New York City, NY 10001" +261559,Lightning Charging Cable,1,14.95,09/12/19 11:18,"443 Lakeview St, New York City, NY 10001" +261560,Vareebadd Phone,1,400,09/09/19 19:49,"808 Madison St, Austin, TX 73301" +261561,Apple Airpods Headphones,1,150,09/13/19 17:53,"995 Washington St, Dallas, TX 75001" +261562,USB-C Charging Cable,1,11.95,09/04/19 14:38,"799 Cherry St, Portland, OR 97035" +261563,Lightning Charging Cable,1,14.95,09/04/19 07:34,"541 Adams St, New York City, NY 10001" +261564,ThinkPad Laptop,1,999.99,09/08/19 14:53,"844 2nd St, New York City, NY 10001" +261565,27in FHD Monitor,1,149.99,09/16/19 20:05,"214 West St, Portland, ME 04101" +261566,Lightning Charging Cable,1,14.95,09/14/19 11:41,"449 4th St, Austin, TX 73301" +261567,USB-C Charging Cable,1,11.95,09/25/19 23:17,"72 Wilson St, Seattle, WA 98101" +261568,Macbook Pro Laptop,1,1700,09/12/19 17:10,"993 Johnson St, Atlanta, GA 30301" +261569,Wired Headphones,1,11.99,09/30/19 19:45,"974 Wilson St, Dallas, TX 75001" +261570,Apple Airpods Headphones,1,150,09/22/19 15:41,"511 River St, Portland, OR 97035" +261571,Wired Headphones,1,11.99,09/13/19 00:05,"376 4th St, Seattle, WA 98101" +261572,Bose SoundSport Headphones,1,99.99,09/16/19 12:22,"8 Lakeview St, Atlanta, GA 30301" +261573,Apple Airpods Headphones,1,150,09/06/19 04:34,"751 Maple St, Atlanta, GA 30301" +261574,34in Ultrawide Monitor,1,379.99,09/17/19 19:48,"129 Meadow St, Dallas, TX 75001" +261575,AA Batteries (4-pack),2,3.84,09/04/19 21:53,"784 9th St, Atlanta, GA 30301" +261576,AAA Batteries (4-pack),3,2.99,09/05/19 00:46,"339 5th St, Los Angeles, CA 90001" +261577,34in Ultrawide Monitor,1,379.99,09/19/19 15:10,"743 Church St, Portland, OR 97035" +261578,AA Batteries (4-pack),4,3.84,09/10/19 21:15,"702 4th St, Los Angeles, CA 90001" +261579,AAA Batteries (4-pack),1,2.99,09/02/19 12:04,"79 Lake St, San Francisco, CA 94016" +261580,AA Batteries (4-pack),1,3.84,09/17/19 10:01,"491 Pine St, Dallas, TX 75001" +261581,AAA Batteries (4-pack),1,2.99,09/02/19 15:04,"673 4th St, Austin, TX 73301" +261582,iPhone,1,700,09/02/19 07:36,"1 Park St, Seattle, WA 98101" +261583,Macbook Pro Laptop,1,1700,09/15/19 20:29,"891 Sunset St, Los Angeles, CA 90001" +261584,AA Batteries (4-pack),1,3.84,09/29/19 17:58,"493 Sunset St, New York City, NY 10001" +261585,Wired Headphones,1,11.99,09/18/19 14:55,"884 Church St, Dallas, TX 75001" +261586,Lightning Charging Cable,1,14.95,09/02/19 10:03,"457 Willow St, Boston, MA 02215" +261587,AAA Batteries (4-pack),3,2.99,09/03/19 18:43,"700 Madison St, Austin, TX 73301" +261588,Apple Airpods Headphones,1,150,09/14/19 14:36,"515 Jackson St, Boston, MA 02215" +261589,Apple Airpods Headphones,1,150,09/16/19 06:28,"56 Hill St, San Francisco, CA 94016" +261590,Bose SoundSport Headphones,1,99.99,09/06/19 10:14,"578 10th St, Portland, OR 97035" +261591,Lightning Charging Cable,1,14.95,09/19/19 14:17,"87 Lakeview St, New York City, NY 10001" +261592,Bose SoundSport Headphones,1,99.99,09/06/19 20:47,"357 Meadow St, Los Angeles, CA 90001" +261593,Wired Headphones,1,11.99,09/16/19 21:25,"241 Park St, Atlanta, GA 30301" +261594,Apple Airpods Headphones,1,150,09/14/19 11:06,"820 Church St, San Francisco, CA 94016" +261595,Lightning Charging Cable,1,14.95,09/12/19 13:19,"336 1st St, Portland, ME 04101" +261596,AA Batteries (4-pack),4,3.84,09/16/19 02:48,"941 Elm St, San Francisco, CA 94016" +261597,AAA Batteries (4-pack),3,2.99,09/05/19 12:35,"31 Forest St, San Francisco, CA 94016" +261598,AAA Batteries (4-pack),3,2.99,09/13/19 14:13,"319 Walnut St, Portland, OR 97035" +261599,Lightning Charging Cable,1,14.95,09/01/19 20:46,"80 9th St, Atlanta, GA 30301" +261600,AA Batteries (4-pack),1,3.84,09/28/19 17:48,"343 Center St, San Francisco, CA 94016" +261601,Lightning Charging Cable,1,14.95,09/29/19 21:15,"220 Dogwood St, New York City, NY 10001" +261602,20in Monitor,1,109.99,09/08/19 19:33,"380 Church St, San Francisco, CA 94016" +261603,iPhone,1,700,09/10/19 10:57,"86 Johnson St, Boston, MA 02215" +261603,Lightning Charging Cable,1,14.95,09/10/19 10:57,"86 Johnson St, Boston, MA 02215" +261604,Lightning Charging Cable,1,14.95,09/25/19 00:48,"892 Adams St, Austin, TX 73301" +261605,Wired Headphones,1,11.99,09/25/19 06:08,"145 River St, Los Angeles, CA 90001" +261606,Lightning Charging Cable,1,14.95,09/26/19 11:29,"606 6th St, Boston, MA 02215" +261606,Lightning Charging Cable,1,14.95,09/26/19 11:29,"606 6th St, Boston, MA 02215" +261607,Bose SoundSport Headphones,1,99.99,09/22/19 10:41,"938 Lincoln St, Austin, TX 73301" +261608,Wired Headphones,1,11.99,09/25/19 18:18,"380 Lincoln St, Los Angeles, CA 90001" +261609,AA Batteries (4-pack),1,3.84,09/12/19 18:48,"33 Pine St, San Francisco, CA 94016" +261610,AAA Batteries (4-pack),1,2.99,09/14/19 21:00,"534 2nd St, Los Angeles, CA 90001" +261611,AAA Batteries (4-pack),1,2.99,09/08/19 19:55,"541 Adams St, Portland, OR 97035" +261612,Wired Headphones,1,11.99,09/14/19 10:10,"488 4th St, San Francisco, CA 94016" +261613,Macbook Pro Laptop,1,1700,09/27/19 20:35,"177 2nd St, San Francisco, CA 94016" +261614,iPhone,1,700,09/06/19 13:22,"110 Cedar St, Los Angeles, CA 90001" +261615,Lightning Charging Cable,2,14.95,09/29/19 23:40,"85 Maple St, San Francisco, CA 94016" +261616,AA Batteries (4-pack),1,3.84,09/25/19 22:44,"249 Chestnut St, New York City, NY 10001" +261617,Bose SoundSport Headphones,1,99.99,09/02/19 15:24,"283 12th St, Dallas, TX 75001" +,,,,, +261618,USB-C Charging Cable,2,11.95,09/27/19 18:15,"313 Hill St, Portland, OR 97035" +261619,AA Batteries (4-pack),3,3.84,09/16/19 15:30,"331 Meadow St, Seattle, WA 98101" +261620,Lightning Charging Cable,1,14.95,09/06/19 22:20,"674 12th St, New York City, NY 10001" +261621,Lightning Charging Cable,1,14.95,09/24/19 19:34,"996 Madison St, San Francisco, CA 94016" +261622,34in Ultrawide Monitor,1,379.99,09/28/19 17:26,"27 Jackson St, Dallas, TX 75001" +261623,AA Batteries (4-pack),2,3.84,09/22/19 11:36,"340 Meadow St, Portland, OR 97035" +261624,USB-C Charging Cable,1,11.95,09/13/19 12:22,"688 14th St, New York City, NY 10001" +261624,AA Batteries (4-pack),1,3.84,09/13/19 12:22,"688 14th St, New York City, NY 10001" +261625,Bose SoundSport Headphones,1,99.99,09/24/19 21:29,"614 Lincoln St, Los Angeles, CA 90001" +261626,AAA Batteries (4-pack),4,2.99,09/08/19 11:42,"866 Willow St, Los Angeles, CA 90001" +261627,AAA Batteries (4-pack),1,2.99,09/13/19 22:45,"514 14th St, New York City, NY 10001" +261628,USB-C Charging Cable,1,11.95,09/09/19 11:05,"356 2nd St, San Francisco, CA 94016" +261629,Bose SoundSport Headphones,1,99.99,09/08/19 21:24,"448 7th St, New York City, NY 10001" +261630,LG Washing Machine,1,600.0,09/05/19 22:02,"429 Spruce St, Portland, OR 97035" +261631,34in Ultrawide Monitor,1,379.99,09/16/19 15:38,"881 12th St, Austin, TX 73301" +261632,Google Phone,1,600,09/30/19 07:53,"564 Center St, Seattle, WA 98101" +261633,27in FHD Monitor,1,149.99,09/30/19 13:04,"181 Park St, New York City, NY 10001" +261634,Google Phone,1,600,09/05/19 21:42,"281 1st St, Los Angeles, CA 90001" +261635,Apple Airpods Headphones,1,150,09/26/19 15:05,"881 Spruce St, San Francisco, CA 94016" +261636,Lightning Charging Cable,1,14.95,09/06/19 08:13,"895 Highland St, Boston, MA 02215" +261637,AA Batteries (4-pack),2,3.84,09/20/19 14:05,"27 River St, Portland, OR 97035" +261638,AAA Batteries (4-pack),1,2.99,09/15/19 18:28,"580 Spruce St, San Francisco, CA 94016" +261639,iPhone,1,700,09/07/19 20:16,"64 Meadow St, San Francisco, CA 94016" +261639,Wired Headphones,1,11.99,09/07/19 20:16,"64 Meadow St, San Francisco, CA 94016" +261640,USB-C Charging Cable,1,11.95,09/23/19 19:03,"770 River St, Dallas, TX 75001" +261641,Vareebadd Phone,1,400,09/17/19 23:50,"377 Center St, Atlanta, GA 30301" +261641,USB-C Charging Cable,1,11.95,09/17/19 23:50,"377 Center St, Atlanta, GA 30301" +261642,Flatscreen TV,1,300,09/06/19 12:59,"311 Park St, San Francisco, CA 94016" +261643,AA Batteries (4-pack),1,3.84,09/20/19 15:07,"971 10th St, Austin, TX 73301" +261644,USB-C Charging Cable,1,11.95,09/17/19 20:10,"958 Sunset St, Dallas, TX 75001" +261645,Apple Airpods Headphones,1,150,09/09/19 22:38,"302 Washington St, Boston, MA 02215" +261646,AAA Batteries (4-pack),1,2.99,09/15/19 10:58,"653 Willow St, Los Angeles, CA 90001" +261647,AAA Batteries (4-pack),1,2.99,09/26/19 20:40,"536 Johnson St, San Francisco, CA 94016" +261648,Vareebadd Phone,1,400,09/28/19 08:44,"829 Washington St, San Francisco, CA 94016" +261648,Wired Headphones,1,11.99,09/28/19 08:44,"829 Washington St, San Francisco, CA 94016" +261649,Lightning Charging Cable,1,14.95,09/27/19 18:27,"574 West St, Portland, OR 97035" +261649,Lightning Charging Cable,1,14.95,09/27/19 18:27,"574 West St, Portland, OR 97035" +261650,Flatscreen TV,1,300,09/14/19 12:02,"864 Sunset St, New York City, NY 10001" +261651,USB-C Charging Cable,1,11.95,09/20/19 20:59,"434 13th St, New York City, NY 10001" +261652,Lightning Charging Cable,1,14.95,09/26/19 09:59,"190 Park St, Boston, MA 02215" +261653,USB-C Charging Cable,1,11.95,09/20/19 14:50,"505 10th St, Austin, TX 73301" +261654,Wired Headphones,1,11.99,09/08/19 14:22,"588 Spruce St, Atlanta, GA 30301" +261655,USB-C Charging Cable,1,11.95,09/23/19 20:54,"319 Pine St, Los Angeles, CA 90001" +261656,AA Batteries (4-pack),1,3.84,09/23/19 22:59,"991 8th St, Dallas, TX 75001" +261657,Lightning Charging Cable,1,14.95,09/23/19 11:39,"999 South St, Austin, TX 73301" +261658,34in Ultrawide Monitor,1,379.99,09/24/19 23:41,"940 14th St, San Francisco, CA 94016" +261659,Google Phone,1,600,09/21/19 22:26,"975 River St, Boston, MA 02215" +261660,USB-C Charging Cable,1,11.95,09/24/19 14:48,"234 13th St, Portland, OR 97035" +261661,ThinkPad Laptop,1,999.99,09/15/19 18:47,"493 Cedar St, New York City, NY 10001" +261662,Wired Headphones,1,11.99,09/12/19 00:08,"663 7th St, Boston, MA 02215" +261663,Lightning Charging Cable,1,14.95,09/03/19 11:19,"348 Chestnut St, New York City, NY 10001" +261664,Macbook Pro Laptop,1,1700,09/11/19 23:23,"751 Dogwood St, San Francisco, CA 94016" +261665,Apple Airpods Headphones,1,150,09/18/19 23:56,"603 Hickory St, San Francisco, CA 94016" +261666,AA Batteries (4-pack),1,3.84,09/15/19 14:17,"937 Jefferson St, Los Angeles, CA 90001" +261667,Wired Headphones,1,11.99,09/21/19 06:48,"647 7th St, Boston, MA 02215" +261668,AAA Batteries (4-pack),1,2.99,09/26/19 20:35,"90 12th St, San Francisco, CA 94016" +261669,USB-C Charging Cable,1,11.95,09/09/19 22:16,"828 Johnson St, New York City, NY 10001" +261670,Bose SoundSport Headphones,1,99.99,09/12/19 10:21,"760 Cherry St, New York City, NY 10001" +261671,27in 4K Gaming Monitor,1,389.99,09/25/19 22:36,"481 Forest St, Portland, OR 97035" +261672,AA Batteries (4-pack),1,3.84,09/10/19 12:10,"393 Lincoln St, New York City, NY 10001" +261673,Google Phone,1,600,09/03/19 08:29,"998 4th St, Boston, MA 02215" +261674,AAA Batteries (4-pack),1,2.99,09/16/19 19:08,"766 Cherry St, Dallas, TX 75001" +261675,AA Batteries (4-pack),2,3.84,09/25/19 07:01,"851 Highland St, San Francisco, CA 94016" +261676,AAA Batteries (4-pack),1,2.99,09/06/19 21:17,"691 Madison St, Los Angeles, CA 90001" +261677,AAA Batteries (4-pack),1,2.99,09/13/19 17:38,"786 Meadow St, San Francisco, CA 94016" +261678,AA Batteries (4-pack),1,3.84,09/30/19 19:10,"518 Church St, Austin, TX 73301" +261679,USB-C Charging Cable,1,11.95,09/03/19 09:28,"826 Spruce St, Los Angeles, CA 90001" +261680,34in Ultrawide Monitor,1,379.99,09/22/19 21:46,"687 Spruce St, Dallas, TX 75001" +261681,AAA Batteries (4-pack),5,2.99,09/03/19 21:46,"969 5th St, San Francisco, CA 94016" +261682,Bose SoundSport Headphones,1,99.99,09/30/19 11:24,"167 Maple St, Dallas, TX 75001" +261683,Lightning Charging Cable,1,14.95,09/02/19 09:32,"182 Cedar St, San Francisco, CA 94016" +261684,USB-C Charging Cable,1,11.95,09/08/19 13:01,"416 12th St, Atlanta, GA 30301" +261685,27in FHD Monitor,1,149.99,09/11/19 17:33,"95 12th St, Seattle, WA 98101" +261686,27in FHD Monitor,1,149.99,09/09/19 12:01,"138 Cherry St, Los Angeles, CA 90001" +261687,iPhone,1,700,09/01/19 12:53,"548 6th St, New York City, NY 10001" +261688,Lightning Charging Cable,1,14.95,09/28/19 09:33,"162 Main St, Los Angeles, CA 90001" +261688,27in FHD Monitor,1,149.99,09/28/19 09:33,"162 Main St, Los Angeles, CA 90001" +261689,Wired Headphones,1,11.99,09/27/19 20:44,"369 5th St, New York City, NY 10001" +261690,Apple Airpods Headphones,1,150,09/07/19 14:47,"307 Johnson St, Portland, OR 97035" +261691,Wired Headphones,1,11.99,09/24/19 17:55,"450 Highland St, Boston, MA 02215" +261692,Lightning Charging Cable,1,14.95,09/09/19 14:18,"288 Adams St, Dallas, TX 75001" +261693,Lightning Charging Cable,1,14.95,09/11/19 09:48,"74 Washington St, New York City, NY 10001" +261694,Google Phone,1,600,09/28/19 15:14,"101 Highland St, San Francisco, CA 94016" +261694,USB-C Charging Cable,1,11.95,09/28/19 15:14,"101 Highland St, San Francisco, CA 94016" +261694,Macbook Pro Laptop,1,1700,09/28/19 15:14,"101 Highland St, San Francisco, CA 94016" +261695,AA Batteries (4-pack),1,3.84,09/04/19 09:18,"858 12th St, San Francisco, CA 94016" +261696,Bose SoundSport Headphones,1,99.99,09/23/19 16:45,"663 8th St, Boston, MA 02215" +261696,27in 4K Gaming Monitor,1,389.99,09/23/19 16:45,"663 8th St, Boston, MA 02215" +261697,Vareebadd Phone,1,400,09/22/19 17:00,"491 Pine St, New York City, NY 10001" +261698,27in 4K Gaming Monitor,1,389.99,09/15/19 19:29,"123 Jackson St, New York City, NY 10001" +261699,USB-C Charging Cable,1,11.95,09/18/19 12:44,"90 4th St, New York City, NY 10001" +261700,Google Phone,1,600,09/22/19 18:02,"878 Chestnut St, San Francisco, CA 94016" +261701,AA Batteries (4-pack),1,3.84,09/26/19 17:15,"739 Madison St, San Francisco, CA 94016" +261702,Lightning Charging Cable,1,14.95,09/27/19 18:38,"318 West St, Austin, TX 73301" +261703,Lightning Charging Cable,2,14.95,09/07/19 23:38,"829 Ridge St, New York City, NY 10001" +261704,AA Batteries (4-pack),1,3.84,09/12/19 13:59,"827 Hickory St, San Francisco, CA 94016" +261705,USB-C Charging Cable,1,11.95,09/26/19 20:09,"602 Walnut St, Boston, MA 02215" +261706,Lightning Charging Cable,1,14.95,09/28/19 12:37,"942 9th St, New York City, NY 10001" +261707,Google Phone,1,600,09/28/19 16:46,"445 Lake St, Portland, OR 97035" +261708,AA Batteries (4-pack),1,3.84,09/03/19 17:35,"918 Adams St, San Francisco, CA 94016" +261709,AA Batteries (4-pack),1,3.84,09/18/19 18:55,"999 Washington St, Los Angeles, CA 90001" +261710,AA Batteries (4-pack),1,3.84,09/25/19 07:54,"316 Jefferson St, Atlanta, GA 30301" +261711,USB-C Charging Cable,1,11.95,09/26/19 10:48,"599 Walnut St, San Francisco, CA 94016" +261712,ThinkPad Laptop,1,999.99,09/19/19 11:48,"106 Jefferson St, San Francisco, CA 94016" +261713,AA Batteries (4-pack),1,3.84,09/03/19 22:23,"796 Wilson St, Seattle, WA 98101" +261713,AAA Batteries (4-pack),1,2.99,09/03/19 22:23,"796 Wilson St, Seattle, WA 98101" +261714,AA Batteries (4-pack),1,3.84,09/17/19 12:39,"281 8th St, Los Angeles, CA 90001" +261715,iPhone,1,700,09/28/19 15:31,"873 Forest St, New York City, NY 10001" +261716,Google Phone,1,600,09/24/19 12:50,"625 Pine St, Boston, MA 02215" +261717,ThinkPad Laptop,1,999.99,09/27/19 21:36,"39 12th St, Portland, OR 97035" +261718,Wired Headphones,1,11.99,09/09/19 20:32,"715 Dogwood St, San Francisco, CA 94016" +261719,Lightning Charging Cable,1,14.95,09/20/19 11:54,"720 Wilson St, Los Angeles, CA 90001" +261720,Wired Headphones,2,11.99,09/04/19 21:06,"746 5th St, San Francisco, CA 94016" +261721,Bose SoundSport Headphones,1,99.99,09/28/19 13:30,"77 Meadow St, San Francisco, CA 94016" +261722,AAA Batteries (4-pack),1,2.99,09/06/19 12:18,"284 Main St, San Francisco, CA 94016" +261722,LG Washing Machine,1,600.0,09/06/19 12:18,"284 Main St, San Francisco, CA 94016" +261723,27in FHD Monitor,1,149.99,09/06/19 09:10,"534 North St, Los Angeles, CA 90001" +261724,27in FHD Monitor,1,149.99,09/14/19 10:07,"548 Pine St, San Francisco, CA 94016" +261725,Wired Headphones,1,11.99,09/30/19 12:54,"326 Hickory St, Dallas, TX 75001" +261726,AA Batteries (4-pack),1,3.84,09/20/19 12:36,"518 12th St, Seattle, WA 98101" +261727,AA Batteries (4-pack),1,3.84,09/14/19 19:21,"386 9th St, Los Angeles, CA 90001" +261728,Lightning Charging Cable,1,14.95,09/13/19 09:22,"28 5th St, San Francisco, CA 94016" +261728,LG Washing Machine,1,600.0,09/13/19 09:22,"28 5th St, San Francisco, CA 94016" +261729,AA Batteries (4-pack),2,3.84,09/20/19 13:57,"617 Hill St, New York City, NY 10001" +261730,Google Phone,1,600,09/28/19 22:03,"830 Meadow St, Atlanta, GA 30301" +261730,Wired Headphones,1,11.99,09/28/19 22:03,"830 Meadow St, Atlanta, GA 30301" +261731,AAA Batteries (4-pack),1,2.99,09/30/19 00:59,"997 Park St, San Francisco, CA 94016" +261732,AAA Batteries (4-pack),1,2.99,09/21/19 22:18,"806 Lakeview St, San Francisco, CA 94016" +261733,Lightning Charging Cable,1,14.95,09/09/19 17:03,"96 Madison St, New York City, NY 10001" +261734,Bose SoundSport Headphones,1,99.99,09/22/19 09:02,"80 8th St, Austin, TX 73301" +261735,AA Batteries (4-pack),1,3.84,09/09/19 13:15,"717 Ridge St, San Francisco, CA 94016" +261736,Apple Airpods Headphones,1,150,09/30/19 11:41,"624 South St, Seattle, WA 98101" +261737,Macbook Pro Laptop,1,1700,09/26/19 13:14,"595 Wilson St, Atlanta, GA 30301" +261738,Lightning Charging Cable,1,14.95,09/11/19 20:59,"50 Jefferson St, San Francisco, CA 94016" +261739,Wired Headphones,1,11.99,09/07/19 08:34,"478 Maple St, Los Angeles, CA 90001" +261740,AAA Batteries (4-pack),1,2.99,09/21/19 19:50,"180 Hickory St, Los Angeles, CA 90001" +261741,AAA Batteries (4-pack),1,2.99,09/28/19 15:00,"173 North St, New York City, NY 10001" +261742,34in Ultrawide Monitor,1,379.99,09/27/19 08:57,"784 West St, San Francisco, CA 94016" +261743,Wired Headphones,1,11.99,09/29/19 09:19,"721 Wilson St, Boston, MA 02215" +261744,iPhone,1,700,09/25/19 08:05,"189 7th St, San Francisco, CA 94016" +261745,AAA Batteries (4-pack),1,2.99,09/28/19 18:52,"33 4th St, Dallas, TX 75001" +261746,AAA Batteries (4-pack),1,2.99,09/14/19 20:37,"14 4th St, New York City, NY 10001" +261747,34in Ultrawide Monitor,1,379.99,09/05/19 13:26,"211 Lincoln St, San Francisco, CA 94016" +261748,USB-C Charging Cable,1,11.95,09/24/19 15:35,"448 1st St, New York City, NY 10001" +261749,Bose SoundSport Headphones,1,99.99,09/15/19 21:47,"582 11th St, Los Angeles, CA 90001" +261750,AA Batteries (4-pack),1,3.84,09/18/19 10:25,"310 14th St, Los Angeles, CA 90001" +261751,Lightning Charging Cable,1,14.95,09/26/19 07:04,"903 Cedar St, Los Angeles, CA 90001" +261752,AA Batteries (4-pack),1,3.84,09/08/19 20:00,"103 1st St, Seattle, WA 98101" +261753,20in Monitor,1,109.99,09/04/19 20:18,"885 Dogwood St, Los Angeles, CA 90001" +261754,Vareebadd Phone,1,400,09/16/19 00:07,"983 10th St, New York City, NY 10001" +261755,USB-C Charging Cable,1,11.95,09/28/19 11:37,"914 9th St, Los Angeles, CA 90001" +261756,iPhone,1,700,09/08/19 16:40,"418 Washington St, Portland, OR 97035" +261757,Flatscreen TV,1,300,09/19/19 15:19,"646 Maple St, Atlanta, GA 30301" +261758,USB-C Charging Cable,1,11.95,09/26/19 17:55,"667 Lake St, Dallas, TX 75001" +261759,USB-C Charging Cable,1,11.95,09/07/19 23:36,"654 Park St, Dallas, TX 75001" +261760,27in 4K Gaming Monitor,1,389.99,09/25/19 09:41,"745 North St, Portland, OR 97035" +261761,Bose SoundSport Headphones,1,99.99,09/26/19 21:55,"772 1st St, Atlanta, GA 30301" +261762,Lightning Charging Cable,1,14.95,09/23/19 15:22,"345 Lakeview St, San Francisco, CA 94016" +261763,Google Phone,1,600,09/20/19 13:50,"39 Forest St, Los Angeles, CA 90001" +261763,Bose SoundSport Headphones,1,99.99,09/20/19 13:50,"39 Forest St, Los Angeles, CA 90001" +261764,Google Phone,1,600,09/25/19 15:12,"838 Hill St, Atlanta, GA 30301" +261764,USB-C Charging Cable,1,11.95,09/25/19 15:12,"838 Hill St, Atlanta, GA 30301" +261765,Flatscreen TV,1,300,09/29/19 20:42,"502 Madison St, Austin, TX 73301" +261766,AAA Batteries (4-pack),1,2.99,09/05/19 19:57,"946 14th St, Atlanta, GA 30301" +261767,ThinkPad Laptop,1,999.99,09/19/19 12:13,"814 Madison St, San Francisco, CA 94016" +261768,USB-C Charging Cable,1,11.95,09/29/19 17:23,"492 5th St, Dallas, TX 75001" +261769,Apple Airpods Headphones,1,150,09/23/19 18:46,"42 Hickory St, Austin, TX 73301" +261770,USB-C Charging Cable,1,11.95,09/05/19 07:14,"139 Main St, Boston, MA 02215" +261771,AAA Batteries (4-pack),1,2.99,09/07/19 23:53,"868 7th St, Atlanta, GA 30301" +261772,Google Phone,1,600,09/03/19 00:12,"636 North St, New York City, NY 10001" +261773,AAA Batteries (4-pack),1,2.99,09/25/19 07:11,"292 Meadow St, San Francisco, CA 94016" +261774,Bose SoundSport Headphones,1,99.99,09/29/19 06:55,"836 Lakeview St, New York City, NY 10001" +261775,AA Batteries (4-pack),1,3.84,09/20/19 14:08,"255 Chestnut St, Seattle, WA 98101" +261776,Apple Airpods Headphones,1,150,09/02/19 15:27,"886 14th St, San Francisco, CA 94016" +261777,AAA Batteries (4-pack),6,2.99,09/24/19 19:23,"350 1st St, Portland, OR 97035" +261778,USB-C Charging Cable,1,11.95,09/05/19 11:29,"191 10th St, Dallas, TX 75001" +261778,Wired Headphones,1,11.99,09/05/19 11:29,"191 10th St, Dallas, TX 75001" +261779,27in FHD Monitor,1,149.99,09/22/19 11:47,"436 Church St, San Francisco, CA 94016" +261780,Lightning Charging Cable,1,14.95,09/27/19 12:43,"753 Spruce St, Los Angeles, CA 90001" +261781,Lightning Charging Cable,1,14.95,09/26/19 03:23,"851 13th St, Atlanta, GA 30301" +261782,Wired Headphones,2,11.99,09/08/19 10:18,"455 6th St, Boston, MA 02215" +261783,Wired Headphones,1,11.99,09/07/19 10:10,"914 Forest St, New York City, NY 10001" +261784,Google Phone,1,600,09/04/19 14:50,"439 Chestnut St, San Francisco, CA 94016" +261785,27in 4K Gaming Monitor,1,389.99,09/07/19 12:22,"784 13th St, Boston, MA 02215" +261786,Apple Airpods Headphones,1,150,09/01/19 09:00,"969 Lake St, Los Angeles, CA 90001" +261787,Vareebadd Phone,1,400,09/16/19 16:02,"324 Maple St, Portland, ME 04101" +261788,AAA Batteries (4-pack),6,2.99,09/26/19 20:46,"389 Ridge St, Los Angeles, CA 90001" +261789,USB-C Charging Cable,1,11.95,09/17/19 15:56,"877 Washington St, San Francisco, CA 94016" +261790,LG Washing Machine,1,600.0,09/30/19 21:13,"717 Washington St, Austin, TX 73301" +261791,Wired Headphones,1,11.99,09/17/19 17:40,"800 Lincoln St, Portland, OR 97035" +261792,Lightning Charging Cable,1,14.95,09/04/19 12:54,"670 Meadow St, Boston, MA 02215" +261793,Apple Airpods Headphones,1,150,09/01/19 15:48,"778 Park St, New York City, NY 10001" +261794,AAA Batteries (4-pack),1,2.99,09/24/19 19:21,"507 Wilson St, New York City, NY 10001" +261795,Wired Headphones,1,11.99,09/03/19 02:27,"125 Hill St, Boston, MA 02215" +261796,AAA Batteries (4-pack),3,2.99,09/05/19 09:10,"75 11th St, San Francisco, CA 94016" +261797,LG Dryer,1,600.0,09/01/19 15:46,"774 Lakeview St, Portland, OR 97035" +261798,Wired Headphones,1,11.99,09/01/19 07:25,"469 2nd St, Boston, MA 02215" +261799,Wired Headphones,1,11.99,09/23/19 17:03,"372 Washington St, New York City, NY 10001" +261800,34in Ultrawide Monitor,1,379.99,09/28/19 19:17,"901 River St, New York City, NY 10001" +261801,Apple Airpods Headphones,1,150,09/22/19 13:34,"360 5th St, Los Angeles, CA 90001" +261802,Flatscreen TV,1,300,09/06/19 22:17,"223 South St, San Francisco, CA 94016" +261803,Lightning Charging Cable,1,14.95,09/25/19 21:01,"960 Cedar St, Dallas, TX 75001" +261804,Bose SoundSport Headphones,1,99.99,09/03/19 17:47,"350 Park St, Los Angeles, CA 90001" +261805,Apple Airpods Headphones,1,150,09/11/19 12:37,"510 12th St, Portland, OR 97035" +261806,Flatscreen TV,1,300,09/08/19 16:15,"869 10th St, Boston, MA 02215" +261807,Wired Headphones,1,11.99,09/08/19 19:14,"769 South St, Los Angeles, CA 90001" +261808,AAA Batteries (4-pack),1,2.99,09/07/19 21:53,"343 13th St, San Francisco, CA 94016" +261809,Lightning Charging Cable,1,14.95,09/19/19 16:49,"837 Cherry St, Los Angeles, CA 90001" +261810,iPhone,1,700,09/29/19 12:46,"748 Maple St, Dallas, TX 75001" +261811,AA Batteries (4-pack),1,3.84,09/08/19 07:36,"488 Jefferson St, Atlanta, GA 30301" +261812,USB-C Charging Cable,1,11.95,09/08/19 13:12,"556 Walnut St, San Francisco, CA 94016" +261813,Bose SoundSport Headphones,1,99.99,09/09/19 20:58,"953 South St, Dallas, TX 75001" +261814,Wired Headphones,1,11.99,09/20/19 11:54,"512 Ridge St, New York City, NY 10001" +261815,Apple Airpods Headphones,1,150,09/01/19 06:56,"388 Dogwood St, Atlanta, GA 30301" +261816,USB-C Charging Cable,1,11.95,09/12/19 00:38,"81 Park St, New York City, NY 10001" +261817,USB-C Charging Cable,1,11.95,09/03/19 19:59,"923 Willow St, Atlanta, GA 30301" +261818,Lightning Charging Cable,1,14.95,09/05/19 13:22,"371 Madison St, Austin, TX 73301" +261819,AA Batteries (4-pack),1,3.84,09/14/19 18:34,"26 Lake St, San Francisco, CA 94016" +261820,USB-C Charging Cable,1,11.95,09/27/19 21:31,"990 River St, Boston, MA 02215" +261821,Wired Headphones,1,11.99,09/12/19 02:47,"209 South St, Boston, MA 02215" +261822,ThinkPad Laptop,1,999.99,09/27/19 10:02,"714 Lincoln St, Boston, MA 02215" +261822,iPhone,1,700,09/27/19 10:02,"714 Lincoln St, Boston, MA 02215" +261823,Wired Headphones,1,11.99,09/21/19 11:14,"635 Center St, San Francisco, CA 94016" +261824,20in Monitor,1,109.99,09/09/19 14:21,"801 West St, Portland, ME 04101" +261825,Lightning Charging Cable,1,14.95,09/29/19 17:31,"508 Cherry St, Seattle, WA 98101" +261826,Lightning Charging Cable,1,14.95,09/15/19 19:35,"424 Maple St, Portland, OR 97035" +261827,AAA Batteries (4-pack),2,2.99,09/24/19 21:19,"418 Cherry St, New York City, NY 10001" +261827,27in FHD Monitor,1,149.99,09/24/19 21:19,"418 Cherry St, New York City, NY 10001" +261828,USB-C Charging Cable,1,11.95,09/04/19 02:07,"255 Cedar St, Los Angeles, CA 90001" +261829,Lightning Charging Cable,1,14.95,09/06/19 20:25,"420 Park St, Seattle, WA 98101" +261830,AAA Batteries (4-pack),3,2.99,09/07/19 20:30,"812 Lake St, Los Angeles, CA 90001" +261831,34in Ultrawide Monitor,1,379.99,09/08/19 23:02,"947 Chestnut St, San Francisco, CA 94016" +261832,Wired Headphones,1,11.99,09/18/19 14:27,"33 Center St, New York City, NY 10001" +261833,USB-C Charging Cable,1,11.95,09/28/19 06:35,"472 West St, Boston, MA 02215" +261834,Macbook Pro Laptop,1,1700,09/24/19 07:41,"276 Park St, Boston, MA 02215" +261835,AA Batteries (4-pack),1,3.84,09/11/19 17:51,"939 5th St, Atlanta, GA 30301" +261836,ThinkPad Laptop,1,999.99,09/10/19 07:57,"535 11th St, Atlanta, GA 30301" +261837,USB-C Charging Cable,1,11.95,09/18/19 13:29,"745 Washington St, Los Angeles, CA 90001" +261838,AAA Batteries (4-pack),1,2.99,09/11/19 12:06,"968 5th St, New York City, NY 10001" +261839,USB-C Charging Cable,2,11.95,09/02/19 20:08,"959 Willow St, Portland, OR 97035" +261840,Lightning Charging Cable,1,14.95,09/25/19 10:18,"904 Ridge St, Austin, TX 73301" +261841,Google Phone,1,600,09/20/19 18:57,"155 Cedar St, Dallas, TX 75001" +261842,Macbook Pro Laptop,1,1700,09/23/19 12:30,"824 Forest St, Los Angeles, CA 90001" +261843,Google Phone,1,600,09/05/19 23:18,"801 7th St, New York City, NY 10001" +261844,Apple Airpods Headphones,1,150,09/12/19 20:49,"531 Washington St, Dallas, TX 75001" +261845,AA Batteries (4-pack),1,3.84,09/30/19 00:45,"29 4th St, Austin, TX 73301" +261846,ThinkPad Laptop,1,999.99,09/22/19 20:27,"598 Dogwood St, Los Angeles, CA 90001" +261847,USB-C Charging Cable,1,11.95,09/27/19 22:14,"760 Washington St, San Francisco, CA 94016" +261848,34in Ultrawide Monitor,1,379.99,09/28/19 11:22,"696 Chestnut St, Austin, TX 73301" +261849,AAA Batteries (4-pack),1,2.99,09/17/19 16:37,"381 13th St, Austin, TX 73301" +261850,27in FHD Monitor,1,149.99,09/13/19 11:44,"592 Center St, Dallas, TX 75001" +261851,Macbook Pro Laptop,1,1700,09/13/19 22:40,"991 West St, San Francisco, CA 94016" +261852,27in 4K Gaming Monitor,1,389.99,09/02/19 19:43,"243 Ridge St, Atlanta, GA 30301" +261852,Wired Headphones,1,11.99,09/02/19 19:43,"243 Ridge St, Atlanta, GA 30301" +261853,Wired Headphones,1,11.99,09/08/19 14:13,"648 Jackson St, San Francisco, CA 94016" +261854,iPhone,1,700,09/18/19 19:17,"548 10th St, New York City, NY 10001" +261855,Lightning Charging Cable,1,14.95,09/27/19 15:16,"149 Johnson St, Dallas, TX 75001" +261856,Lightning Charging Cable,1,14.95,09/22/19 20:57,"366 Washington St, San Francisco, CA 94016" +261857,Google Phone,1,600,09/21/19 15:43,"551 Dogwood St, San Francisco, CA 94016" +261858,USB-C Charging Cable,1,11.95,09/26/19 14:52,"956 2nd St, San Francisco, CA 94016" +261859,Bose SoundSport Headphones,1,99.99,09/16/19 22:24,"640 Cedar St, Seattle, WA 98101" +261860,Wired Headphones,1,11.99,09/07/19 20:35,"568 Washington St, Dallas, TX 75001" +261861,USB-C Charging Cable,1,11.95,09/27/19 08:12,"956 Ridge St, Dallas, TX 75001" +261862,AA Batteries (4-pack),3,3.84,09/30/19 11:11,"809 Maple St, Dallas, TX 75001" +261863,AAA Batteries (4-pack),1,2.99,09/22/19 15:21,"269 Dogwood St, Seattle, WA 98101" +261864,34in Ultrawide Monitor,1,379.99,09/05/19 11:19,"445 Center St, Portland, ME 04101" +261865,Apple Airpods Headphones,1,150,09/10/19 00:48,"664 Cherry St, Los Angeles, CA 90001" +261866,Wired Headphones,1,11.99,09/19/19 17:14,"96 5th St, New York City, NY 10001" +261867,Apple Airpods Headphones,1,150,09/10/19 13:50,"436 Lake St, Los Angeles, CA 90001" +261868,USB-C Charging Cable,1,11.95,09/30/19 16:02,"282 Pine St, San Francisco, CA 94016" +261869,USB-C Charging Cable,2,11.95,09/23/19 14:41,"115 Center St, San Francisco, CA 94016" +261870,Bose SoundSport Headphones,1,99.99,09/19/19 08:47,"552 Cedar St, San Francisco, CA 94016" +261871,AA Batteries (4-pack),1,3.84,09/07/19 23:06,"617 Lincoln St, Los Angeles, CA 90001" +261872,Lightning Charging Cable,1,14.95,09/07/19 18:07,"319 Hill St, Atlanta, GA 30301" +261873,Lightning Charging Cable,1,14.95,09/13/19 12:00,"442 South St, Boston, MA 02215" +261874,Lightning Charging Cable,1,14.95,09/19/19 11:57,"748 5th St, Los Angeles, CA 90001" +261875,USB-C Charging Cable,1,11.95,09/10/19 00:07,"245 Cherry St, San Francisco, CA 94016" +261876,Google Phone,1,600,09/01/19 06:26,"392 Cedar St, Dallas, TX 75001" +261876,Bose SoundSport Headphones,1,99.99,09/01/19 06:26,"392 Cedar St, Dallas, TX 75001" +261877,USB-C Charging Cable,1,11.95,09/14/19 19:49,"59 Maple St, New York City, NY 10001" +261878,ThinkPad Laptop,1,999.99,09/05/19 12:07,"342 Adams St, Los Angeles, CA 90001" +261879,Lightning Charging Cable,2,14.95,09/27/19 19:10,"168 Ridge St, Seattle, WA 98101" +261880,20in Monitor,1,109.99,09/29/19 15:07,"651 South St, San Francisco, CA 94016" +261881,AA Batteries (4-pack),2,3.84,09/02/19 16:14,"996 North St, Boston, MA 02215" +261882,AAA Batteries (4-pack),1,2.99,09/27/19 00:32,"491 4th St, San Francisco, CA 94016" +261883,USB-C Charging Cable,1,11.95,09/28/19 17:23,"116 10th St, Portland, ME 04101" +261884,Apple Airpods Headphones,1,150,09/07/19 23:36,"909 West St, New York City, NY 10001" +261885,Apple Airpods Headphones,1,150,09/10/19 16:10,"180 12th St, Los Angeles, CA 90001" +261886,USB-C Charging Cable,1,11.95,09/10/19 11:29,"682 Lincoln St, Los Angeles, CA 90001" +261887,Wired Headphones,1,11.99,09/18/19 15:33,"329 2nd St, Los Angeles, CA 90001" +261888,Macbook Pro Laptop,1,1700,09/10/19 13:50,"828 West St, Seattle, WA 98101" +261889,Google Phone,1,600,09/11/19 17:40,"114 2nd St, San Francisco, CA 94016" +261890,Apple Airpods Headphones,1,150,09/27/19 20:35,"366 Meadow St, Boston, MA 02215" +261891,Apple Airpods Headphones,1,150,09/09/19 17:49,"193 Jefferson St, New York City, NY 10001" +261892,Bose SoundSport Headphones,1,99.99,09/29/19 19:11,"976 Willow St, Seattle, WA 98101" +261893,20in Monitor,1,109.99,09/10/19 08:19,"998 Wilson St, Atlanta, GA 30301" +261894,ThinkPad Laptop,1,999.99,09/11/19 10:36,"923 5th St, New York City, NY 10001" +261895,34in Ultrawide Monitor,1,379.99,09/26/19 10:46,"351 Center St, Boston, MA 02215" +261896,Wired Headphones,1,11.99,09/03/19 14:00,"991 Lincoln St, San Francisco, CA 94016" +261897,Apple Airpods Headphones,1,150,09/03/19 15:56,"550 Jefferson St, Portland, OR 97035" +261898,Wired Headphones,1,11.99,09/16/19 00:25,"561 Center St, San Francisco, CA 94016" +261899,Apple Airpods Headphones,1,150,09/03/19 15:49,"87 Walnut St, San Francisco, CA 94016" +261900,Macbook Pro Laptop,1,1700,09/26/19 21:20,"222 Hickory St, Seattle, WA 98101" +261901,USB-C Charging Cable,1,11.95,09/28/19 09:06,"644 Cherry St, Los Angeles, CA 90001" +261902,34in Ultrawide Monitor,1,379.99,09/01/19 10:03,"178 Chestnut St, Boston, MA 02215" +261903,Lightning Charging Cable,1,14.95,09/21/19 09:07,"203 12th St, Los Angeles, CA 90001" +261904,AAA Batteries (4-pack),1,2.99,09/24/19 23:57,"843 Forest St, Boston, MA 02215" +261905,AA Batteries (4-pack),1,3.84,09/24/19 14:47,"525 14th St, Boston, MA 02215" +261906,Apple Airpods Headphones,1,150,09/20/19 20:45,"957 6th St, New York City, NY 10001" +261907,Lightning Charging Cable,1,14.95,09/08/19 10:38,"363 Cedar St, Portland, OR 97035" +261908,Macbook Pro Laptop,1,1700,09/03/19 16:27,"133 Main St, New York City, NY 10001" +261909,USB-C Charging Cable,1,11.95,09/26/19 11:14,"997 Dogwood St, Portland, OR 97035" +261910,Wired Headphones,1,11.99,09/09/19 21:15,"650 14th St, New York City, NY 10001" +261911,AAA Batteries (4-pack),2,2.99,09/30/19 20:29,"434 Elm St, Austin, TX 73301" +261912,Macbook Pro Laptop,1,1700,09/10/19 19:41,"584 4th St, San Francisco, CA 94016" +261913,Wired Headphones,1,11.99,09/16/19 13:11,"590 Sunset St, San Francisco, CA 94016" +261914,AA Batteries (4-pack),1,3.84,09/23/19 11:34,"585 South St, San Francisco, CA 94016" +261915,AAA Batteries (4-pack),2,2.99,09/01/19 05:15,"503 12th St, Dallas, TX 75001" +261916,Bose SoundSport Headphones,1,99.99,09/16/19 22:11,"325 North St, Seattle, WA 98101" +261917,Wired Headphones,1,11.99,09/24/19 21:53,"331 7th St, Los Angeles, CA 90001" +261918,Macbook Pro Laptop,1,1700,09/04/19 17:40,"467 Main St, San Francisco, CA 94016" +261919,27in FHD Monitor,1,149.99,09/23/19 17:44,"892 Lakeview St, New York City, NY 10001" +261920,AAA Batteries (4-pack),2,2.99,09/19/19 10:55,"651 Washington St, New York City, NY 10001" +261921,Bose SoundSport Headphones,1,99.99,09/14/19 15:23,"311 4th St, San Francisco, CA 94016" +261922,20in Monitor,1,109.99,09/29/19 18:38,"333 Elm St, Austin, TX 73301" +261923,Lightning Charging Cable,1,14.95,09/24/19 19:47,"76 Johnson St, Seattle, WA 98101" +261923,Bose SoundSport Headphones,1,99.99,09/24/19 19:47,"76 Johnson St, Seattle, WA 98101" +261924,AAA Batteries (4-pack),1,2.99,09/25/19 14:44,"765 Forest St, San Francisco, CA 94016" +261925,Macbook Pro Laptop,1,1700,09/30/19 19:15,"889 Wilson St, Austin, TX 73301" +261926,AAA Batteries (4-pack),1,2.99,09/07/19 16:41,"660 8th St, Portland, ME 04101" +261927,Macbook Pro Laptop,1,1700,09/17/19 13:01,"213 Hickory St, Boston, MA 02215" +261928,34in Ultrawide Monitor,1,379.99,09/24/19 06:58,"686 Sunset St, San Francisco, CA 94016" +261929,Macbook Pro Laptop,1,1700,09/01/19 23:49,"557 Forest St, Austin, TX 73301" +261930,27in FHD Monitor,1,149.99,09/18/19 16:28,"601 8th St, Boston, MA 02215" +261931,Lightning Charging Cable,1,14.95,09/30/19 10:37,"710 Maple St, San Francisco, CA 94016" +261932,Apple Airpods Headphones,1,150,09/08/19 11:25,"979 Main St, Los Angeles, CA 90001" +261933,Vareebadd Phone,1,400,09/06/19 01:09,"675 Willow St, New York City, NY 10001" +261934,Lightning Charging Cable,1,14.95,09/26/19 07:40,"151 8th St, Austin, TX 73301" +261935,AAA Batteries (4-pack),1,2.99,09/22/19 21:58,"446 Church St, Los Angeles, CA 90001" +261936,USB-C Charging Cable,1,11.95,09/11/19 17:37,"282 Dogwood St, Los Angeles, CA 90001" +261937,USB-C Charging Cable,1,11.95,09/06/19 08:30,"798 Dogwood St, Boston, MA 02215" +261938,Lightning Charging Cable,1,14.95,09/12/19 14:39,"263 14th St, Seattle, WA 98101" +261939,Wired Headphones,1,11.99,09/26/19 07:21,"481 Center St, San Francisco, CA 94016" +261940,AAA Batteries (4-pack),1,2.99,09/23/19 08:41,"422 12th St, Atlanta, GA 30301" +261941,Bose SoundSport Headphones,1,99.99,09/19/19 14:04,"610 Madison St, San Francisco, CA 94016" +261942,Wired Headphones,1,11.99,09/08/19 11:20,"249 Madison St, Los Angeles, CA 90001" +261943,USB-C Charging Cable,1,11.95,09/28/19 09:54,"435 Elm St, San Francisco, CA 94016" +261943,Wired Headphones,1,11.99,09/28/19 09:54,"435 Elm St, San Francisco, CA 94016" +261944,Flatscreen TV,1,300,09/06/19 13:52,"408 Park St, Atlanta, GA 30301" +261945,iPhone,1,700,09/16/19 16:58,"183 Park St, San Francisco, CA 94016" +261946,AAA Batteries (4-pack),1,2.99,09/16/19 09:59,"749 2nd St, New York City, NY 10001" +261947,Bose SoundSport Headphones,1,99.99,09/18/19 21:35,"73 Hickory St, Los Angeles, CA 90001" +261948,AAA Batteries (4-pack),2,2.99,09/01/19 18:18,"601 Johnson St, Los Angeles, CA 90001" +261949,USB-C Charging Cable,1,11.95,09/20/19 17:26,"61 12th St, Seattle, WA 98101" +261950,34in Ultrawide Monitor,1,379.99,09/26/19 16:34,"907 Church St, Los Angeles, CA 90001" +261951,AA Batteries (4-pack),2,3.84,09/14/19 21:30,"741 10th St, Los Angeles, CA 90001" +261952,Bose SoundSport Headphones,1,99.99,09/17/19 00:57,"952 8th St, Atlanta, GA 30301" +261953,34in Ultrawide Monitor,1,379.99,09/26/19 12:12,"358 Walnut St, Los Angeles, CA 90001" +261954,Wired Headphones,1,11.99,09/02/19 20:31,"817 13th St, San Francisco, CA 94016" +261955,Flatscreen TV,1,300,09/24/19 19:31,"644 West St, Portland, OR 97035" +261956,Apple Airpods Headphones,1,150,09/14/19 20:59,"851 Cherry St, Portland, OR 97035" +261957,Lightning Charging Cable,1,14.95,09/19/19 08:30,"928 Meadow St, Seattle, WA 98101" +261958,USB-C Charging Cable,2,11.95,09/26/19 17:13,"444 9th St, Portland, OR 97035" +261959,Apple Airpods Headphones,1,150,09/26/19 08:58,"857 10th St, Atlanta, GA 30301" +261960,Bose SoundSport Headphones,1,99.99,09/05/19 14:51,"476 Ridge St, Boston, MA 02215" +261961,iPhone,1,700,09/28/19 15:50,"157 Main St, Austin, TX 73301" +261962,Bose SoundSport Headphones,1,99.99,09/21/19 16:18,"499 12th St, Boston, MA 02215" +261963,AAA Batteries (4-pack),1,2.99,09/25/19 18:38,"318 River St, Seattle, WA 98101" +261964,AAA Batteries (4-pack),2,2.99,09/24/19 21:53,"56 Ridge St, New York City, NY 10001" +261965,AA Batteries (4-pack),1,3.84,09/04/19 11:50,"495 Forest St, New York City, NY 10001" +261966,27in FHD Monitor,1,149.99,09/14/19 17:38,"1 8th St, New York City, NY 10001" +261967,USB-C Charging Cable,1,11.95,09/11/19 21:39,"371 Elm St, Boston, MA 02215" +261968,AAA Batteries (4-pack),1,2.99,09/10/19 11:52,"842 Washington St, Boston, MA 02215" +261969,Lightning Charging Cable,1,14.95,09/30/19 22:53,"369 Chestnut St, Atlanta, GA 30301" +261970,AAA Batteries (4-pack),1,2.99,09/12/19 12:09,"290 11th St, Dallas, TX 75001" +261971,iPhone,1,700,09/21/19 10:57,"932 Sunset St, Los Angeles, CA 90001" +261972,USB-C Charging Cable,1,11.95,09/12/19 17:04,"402 Hill St, San Francisco, CA 94016" +261973,AA Batteries (4-pack),1,3.84,09/01/19 22:41,"530 Jefferson St, Los Angeles, CA 90001" +261974,AAA Batteries (4-pack),2,2.99,09/18/19 20:07,"11 West St, San Francisco, CA 94016" +261975,AA Batteries (4-pack),1,3.84,09/13/19 14:11,"13 Maple St, San Francisco, CA 94016" +261976,34in Ultrawide Monitor,1,379.99,09/09/19 14:27,"719 Lincoln St, New York City, NY 10001" +261977,Lightning Charging Cable,1,14.95,09/20/19 17:14,"831 Chestnut St, Boston, MA 02215" +261978,Lightning Charging Cable,1,14.95,09/15/19 14:16,"732 Maple St, San Francisco, CA 94016" +261979,AA Batteries (4-pack),1,3.84,09/11/19 10:41,"239 Cedar St, Boston, MA 02215" +261980,Lightning Charging Cable,1,14.95,09/08/19 16:43,"765 Park St, Boston, MA 02215" +261981,AA Batteries (4-pack),2,3.84,09/05/19 19:03,"596 4th St, San Francisco, CA 94016" +261982,27in 4K Gaming Monitor,1,389.99,09/16/19 09:45,"228 River St, Seattle, WA 98101" +261983,Wired Headphones,4,11.99,09/09/19 14:50,"808 Dogwood St, Seattle, WA 98101" +261984,Apple Airpods Headphones,1,150,09/12/19 12:25,"763 Willow St, Dallas, TX 75001" +261985,USB-C Charging Cable,1,11.95,09/23/19 07:22,"854 Wilson St, San Francisco, CA 94016" +261986,Google Phone,1,600,09/28/19 22:30,"931 Maple St, New York City, NY 10001" +261987,iPhone,1,700,09/06/19 14:07,"989 5th St, Atlanta, GA 30301" +261988,USB-C Charging Cable,1,11.95,09/11/19 00:43,"283 River St, New York City, NY 10001" +261989,AAA Batteries (4-pack),1,2.99,09/14/19 23:49,"885 Jackson St, New York City, NY 10001" +261990,AA Batteries (4-pack),1,3.84,09/20/19 16:29,"71 Lake St, San Francisco, CA 94016" +261991,ThinkPad Laptop,1,999.99,09/17/19 22:46,"355 Johnson St, Austin, TX 73301" +261992,AAA Batteries (4-pack),1,2.99,09/15/19 20:06,"673 South St, Los Angeles, CA 90001" +261993,AAA Batteries (4-pack),1,2.99,09/02/19 08:26,"172 Church St, Los Angeles, CA 90001" +261994,USB-C Charging Cable,1,11.95,09/11/19 17:10,"703 Sunset St, San Francisco, CA 94016" +261995,Flatscreen TV,1,300,09/09/19 16:46,"594 Lincoln St, San Francisco, CA 94016" +261996,27in 4K Gaming Monitor,1,389.99,09/11/19 08:13,"647 6th St, San Francisco, CA 94016" +261997,34in Ultrawide Monitor,1,379.99,09/07/19 20:51,"25 Washington St, Los Angeles, CA 90001" +261998,AA Batteries (4-pack),2,3.84,09/07/19 10:02,"218 Lake St, Seattle, WA 98101" +261999,AA Batteries (4-pack),1,3.84,09/17/19 09:00,"793 Spruce St, San Francisco, CA 94016" +262000,AAA Batteries (4-pack),1,2.99,09/07/19 14:43,"745 Jefferson St, Dallas, TX 75001" +262001,iPhone,1,700,09/15/19 17:44,"500 Chestnut St, Austin, TX 73301" +262002,AA Batteries (4-pack),2,3.84,09/12/19 09:31,"873 7th St, Dallas, TX 75001" +262003,AAA Batteries (4-pack),1,2.99,09/15/19 09:57,"117 4th St, San Francisco, CA 94016" +262004,Macbook Pro Laptop,1,1700,09/15/19 11:44,"789 Main St, San Francisco, CA 94016" +262005,Macbook Pro Laptop,1,1700,09/24/19 15:19,"19 Willow St, Atlanta, GA 30301" +262006,Wired Headphones,1,11.99,09/22/19 19:20,"360 5th St, Boston, MA 02215" +262007,Wired Headphones,1,11.99,09/06/19 23:34,"937 Hickory St, Los Angeles, CA 90001" +262008,Apple Airpods Headphones,1,150,09/28/19 12:45,"217 1st St, Portland, OR 97035" +262009,Flatscreen TV,1,300,09/05/19 15:21,"305 Main St, New York City, NY 10001" +262010,Flatscreen TV,1,300,09/24/19 22:24,"164 Cherry St, San Francisco, CA 94016" +262011,Google Phone,1,600,09/21/19 19:21,"225 Meadow St, Dallas, TX 75001" +262011,USB-C Charging Cable,1,11.95,09/21/19 19:21,"225 Meadow St, Dallas, TX 75001" +262011,Wired Headphones,1,11.99,09/21/19 19:21,"225 Meadow St, Dallas, TX 75001" +262012,Wired Headphones,1,11.99,09/18/19 20:22,"80 North St, Boston, MA 02215" +262013,Bose SoundSport Headphones,1,99.99,09/22/19 09:21,"111 9th St, New York City, NY 10001" +262014,LG Washing Machine,1,600.0,09/12/19 18:55,"408 5th St, Boston, MA 02215" +262015,27in FHD Monitor,1,149.99,09/29/19 11:55,"713 Johnson St, New York City, NY 10001" +262016,USB-C Charging Cable,1,11.95,09/07/19 17:32,"67 Sunset St, Austin, TX 73301" +262017,Macbook Pro Laptop,1,1700,09/07/19 17:20,"856 Church St, New York City, NY 10001" +262018,AAA Batteries (4-pack),1,2.99,09/09/19 13:09,"557 Cedar St, Los Angeles, CA 90001" +262019,USB-C Charging Cable,1,11.95,09/19/19 22:25,"666 Lincoln St, New York City, NY 10001" +262020,Bose SoundSport Headphones,1,99.99,09/15/19 11:07,"559 Lake St, New York City, NY 10001" +262021,Lightning Charging Cable,1,14.95,09/06/19 22:19,"430 Forest St, San Francisco, CA 94016" +262022,AAA Batteries (4-pack),2,2.99,09/03/19 00:27,"347 Forest St, Los Angeles, CA 90001" +262023,AAA Batteries (4-pack),2,2.99,09/27/19 07:06,"18 North St, Los Angeles, CA 90001" +262024,Flatscreen TV,1,300,09/19/19 17:46,"455 Wilson St, Atlanta, GA 30301" +262025,AAA Batteries (4-pack),4,2.99,09/22/19 23:20,"544 Chestnut St, Los Angeles, CA 90001" +262026,iPhone,1,700,09/18/19 19:02,"261 Sunset St, Los Angeles, CA 90001" +262027,AA Batteries (4-pack),1,3.84,09/07/19 16:47,"613 Johnson St, San Francisco, CA 94016" +262028,Lightning Charging Cable,1,14.95,09/15/19 12:10,"59 Sunset St, San Francisco, CA 94016" +262029,Bose SoundSport Headphones,1,99.99,09/05/19 22:00,"887 Dogwood St, Los Angeles, CA 90001" +262030,AAA Batteries (4-pack),3,2.99,09/09/19 11:54,"592 West St, Los Angeles, CA 90001" +262031,USB-C Charging Cable,2,11.95,09/28/19 21:47,"718 Pine St, Portland, ME 04101" +262032,Wired Headphones,1,11.99,09/03/19 12:40,"470 13th St, San Francisco, CA 94016" +262033,Google Phone,1,600,09/10/19 13:57,"878 Ridge St, San Francisco, CA 94016" +262034,AA Batteries (4-pack),1,3.84,09/28/19 14:20,"678 7th St, San Francisco, CA 94016" +262035,Apple Airpods Headphones,1,150,09/08/19 16:07,"338 Washington St, New York City, NY 10001" +262036,AA Batteries (4-pack),3,3.84,09/19/19 19:35,"359 7th St, Boston, MA 02215" +262037,Wired Headphones,1,11.99,09/08/19 20:00,"488 Cherry St, San Francisco, CA 94016" +262038,iPhone,1,700,09/26/19 11:11,"979 North St, Los Angeles, CA 90001" +262039,Apple Airpods Headphones,1,150,09/02/19 18:53,"930 Pine St, San Francisco, CA 94016" +262040,AA Batteries (4-pack),1,3.84,09/05/19 00:21,"921 11th St, Boston, MA 02215" +262041,Wired Headphones,1,11.99,09/29/19 13:40,"620 12th St, Los Angeles, CA 90001" +262042,Wired Headphones,1,11.99,09/22/19 22:35,"782 River St, New York City, NY 10001" +262043,USB-C Charging Cable,1,11.95,09/23/19 12:28,"937 North St, Boston, MA 02215" +262044,USB-C Charging Cable,1,11.95,09/12/19 19:14,"83 Meadow St, Boston, MA 02215" +262045,Wired Headphones,1,11.99,09/21/19 13:02,"527 Cherry St, San Francisco, CA 94016" +262046,Wired Headphones,1,11.99,09/22/19 16:11,"318 Spruce St, San Francisco, CA 94016" +262047,Flatscreen TV,1,300,09/05/19 18:01,"223 South St, New York City, NY 10001" +262048,Apple Airpods Headphones,1,150,09/27/19 10:32,"84 North St, Portland, OR 97035" +262049,Wired Headphones,1,11.99,09/10/19 18:40,"282 Pine St, Los Angeles, CA 90001" +262050,Bose SoundSport Headphones,1,99.99,09/22/19 00:46,"557 Johnson St, Boston, MA 02215" +262051,34in Ultrawide Monitor,1,379.99,09/27/19 13:04,"259 Lake St, San Francisco, CA 94016" +262052,USB-C Charging Cable,1,11.95,09/30/19 13:23,"432 Chestnut St, San Francisco, CA 94016" +262053,USB-C Charging Cable,1,11.95,09/13/19 16:58,"231 5th St, Boston, MA 02215" +262054,Wired Headphones,1,11.99,09/29/19 11:22,"293 4th St, Boston, MA 02215" +262055,Bose SoundSport Headphones,1,99.99,09/08/19 14:09,"53 Elm St, San Francisco, CA 94016" +262056,Lightning Charging Cable,1,14.95,09/19/19 15:46,"822 14th St, Atlanta, GA 30301" +262057,Lightning Charging Cable,1,14.95,09/28/19 16:47,"783 Chestnut St, Dallas, TX 75001" +262058,USB-C Charging Cable,3,11.95,09/17/19 18:24,"542 Johnson St, San Francisco, CA 94016" +262059,Wired Headphones,1,11.99,09/07/19 18:10,"93 Jefferson St, San Francisco, CA 94016" +262060,34in Ultrawide Monitor,1,379.99,09/19/19 21:04,"222 Adams St, Atlanta, GA 30301" +262061,27in 4K Gaming Monitor,1,389.99,09/19/19 21:58,"922 Spruce St, Los Angeles, CA 90001" +262062,Lightning Charging Cable,1,14.95,09/26/19 06:49,"671 Adams St, Portland, OR 97035" +262063,Wired Headphones,1,11.99,09/18/19 18:32,"492 Ridge St, San Francisco, CA 94016" +262064,USB-C Charging Cable,1,11.95,09/03/19 14:05,"336 Highland St, Dallas, TX 75001" +262065,Lightning Charging Cable,1,14.95,09/24/19 15:52,"72 14th St, San Francisco, CA 94016" +262066,Lightning Charging Cable,1,14.95,09/15/19 17:37,"237 Lake St, Dallas, TX 75001" +262067,USB-C Charging Cable,1,11.95,09/29/19 15:25,"755 Jackson St, Portland, OR 97035" +262068,AA Batteries (4-pack),1,3.84,09/23/19 19:31,"395 Washington St, Los Angeles, CA 90001" +262069,Apple Airpods Headphones,1,150,09/12/19 15:05,"22 1st St, Atlanta, GA 30301" +262070,Lightning Charging Cable,1,14.95,09/08/19 16:41,"769 Park St, Los Angeles, CA 90001" +262071,AAA Batteries (4-pack),3,2.99,09/23/19 15:45,"994 Elm St, San Francisco, CA 94016" +262072,27in 4K Gaming Monitor,1,389.99,09/10/19 12:31,"902 13th St, Dallas, TX 75001" +262073,USB-C Charging Cable,1,11.95,09/27/19 17:59,"294 7th St, Atlanta, GA 30301" +262074,AAA Batteries (4-pack),1,2.99,09/08/19 22:00,"519 Jackson St, Dallas, TX 75001" +262075,iPhone,1,700,09/16/19 16:20,"137 Washington St, Los Angeles, CA 90001" +262076,AA Batteries (4-pack),1,3.84,09/18/19 13:29,"80 Wilson St, Los Angeles, CA 90001" +262077,LG Dryer,1,600.0,09/20/19 14:50,"793 4th St, San Francisco, CA 94016" +262078,Apple Airpods Headphones,1,150,09/26/19 14:02,"17 Elm St, Los Angeles, CA 90001" +262079,USB-C Charging Cable,1,11.95,09/16/19 20:22,"360 Adams St, San Francisco, CA 94016" +262080,USB-C Charging Cable,1,11.95,09/03/19 13:21,"789 Sunset St, Portland, OR 97035" +262081,Apple Airpods Headphones,1,150,09/12/19 12:08,"352 River St, Los Angeles, CA 90001" +262082,AA Batteries (4-pack),1,3.84,09/02/19 12:20,"15 8th St, San Francisco, CA 94016" +262083,USB-C Charging Cable,1,11.95,09/21/19 14:05,"290 West St, Dallas, TX 75001" +262084,Apple Airpods Headphones,1,150,09/04/19 13:38,"897 Park St, Dallas, TX 75001" +262085,iPhone,1,700,09/13/19 11:34,"351 4th St, Dallas, TX 75001" +262086,Wired Headphones,1,11.99,09/23/19 13:26,"274 Adams St, Atlanta, GA 30301" +262087,20in Monitor,1,109.99,09/15/19 10:21,"149 Sunset St, Seattle, WA 98101" +262088,Lightning Charging Cable,1,14.95,09/05/19 01:20,"67 West St, Austin, TX 73301" +262089,Lightning Charging Cable,1,14.95,09/22/19 18:39,"961 1st St, San Francisco, CA 94016" +262090,iPhone,1,700,09/04/19 23:52,"675 Chestnut St, Portland, OR 97035" +262090,Apple Airpods Headphones,1,150,09/04/19 23:52,"675 Chestnut St, Portland, OR 97035" +262090,Wired Headphones,1,11.99,09/04/19 23:52,"675 Chestnut St, Portland, OR 97035" +262091,AAA Batteries (4-pack),1,2.99,09/15/19 20:20,"402 Park St, San Francisco, CA 94016" +262092,34in Ultrawide Monitor,1,379.99,09/15/19 12:15,"407 4th St, Los Angeles, CA 90001" +262093,Apple Airpods Headphones,1,150,09/08/19 20:29,"581 Elm St, San Francisco, CA 94016" +262094,Lightning Charging Cable,1,14.95,09/08/19 11:17,"318 Lincoln St, San Francisco, CA 94016" +262095,Wired Headphones,1,11.99,09/16/19 10:40,"346 West St, San Francisco, CA 94016" +262096,20in Monitor,1,109.99,09/04/19 18:19,"494 Pine St, Portland, OR 97035" +262097,AA Batteries (4-pack),1,3.84,09/25/19 19:41,"728 Walnut St, Los Angeles, CA 90001" +262098,AA Batteries (4-pack),2,3.84,09/26/19 10:24,"71 Lakeview St, Portland, OR 97035" +262099,Lightning Charging Cable,1,14.95,09/01/19 14:47,"703 Hill St, Los Angeles, CA 90001" +262100,Macbook Pro Laptop,1,1700,09/02/19 03:26,"625 River St, Atlanta, GA 30301" +262101,AA Batteries (4-pack),1,3.84,09/30/19 00:20,"521 4th St, Boston, MA 02215" +262102,Flatscreen TV,1,300,09/19/19 17:17,"559 Chestnut St, San Francisco, CA 94016" +262103,Bose SoundSport Headphones,1,99.99,09/06/19 13:25,"44 Cedar St, San Francisco, CA 94016" +262104,Macbook Pro Laptop,1,1700,09/07/19 23:01,"787 10th St, New York City, NY 10001" +262105,Google Phone,1,600,09/22/19 17:29,"101 Adams St, San Francisco, CA 94016" +262105,Lightning Charging Cable,1,14.95,09/22/19 17:29,"101 Adams St, San Francisco, CA 94016" +262106,LG Washing Machine,1,600.0,09/24/19 10:43,"898 Church St, Seattle, WA 98101" +262107,Apple Airpods Headphones,1,150,09/27/19 09:58,"746 Walnut St, Austin, TX 73301" +262108,LG Dryer,1,600.0,09/28/19 11:01,"423 South St, San Francisco, CA 94016" +262109,ThinkPad Laptop,1,999.99,09/29/19 22:56,"902 Pine St, New York City, NY 10001" +262110,Wired Headphones,1,11.99,09/28/19 17:11,"759 South St, San Francisco, CA 94016" +262111,Lightning Charging Cable,1,14.95,09/09/19 11:57,"638 Jackson St, Los Angeles, CA 90001" +262112,Apple Airpods Headphones,1,150,09/19/19 19:03,"179 Park St, Atlanta, GA 30301" +262113,AA Batteries (4-pack),1,3.84,09/29/19 08:47,"242 Wilson St, Boston, MA 02215" +262114,Bose SoundSport Headphones,1,99.99,09/29/19 19:23,"387 Ridge St, Los Angeles, CA 90001" +262115,Lightning Charging Cable,1,14.95,09/28/19 12:04,"372 Pine St, New York City, NY 10001" +262116,Apple Airpods Headphones,1,150,09/26/19 13:28,"153 Hickory St, San Francisco, CA 94016" +262117,AAA Batteries (4-pack),1,2.99,09/05/19 13:34,"957 Wilson St, Los Angeles, CA 90001" +262118,Apple Airpods Headphones,1,150,09/21/19 14:25,"165 4th St, Los Angeles, CA 90001" +262119,AAA Batteries (4-pack),1,2.99,09/11/19 07:53,"870 11th St, Los Angeles, CA 90001" +262120,27in 4K Gaming Monitor,1,389.99,09/27/19 19:53,"966 Jackson St, Atlanta, GA 30301" +262121,AAA Batteries (4-pack),1,2.99,09/24/19 16:34,"61 Willow St, Los Angeles, CA 90001" +262122,USB-C Charging Cable,1,11.95,09/03/19 18:27,"473 8th St, San Francisco, CA 94016" +262123,AAA Batteries (4-pack),3,2.99,09/16/19 21:33,"440 Pine St, Boston, MA 02215" +262124,iPhone,1,700,09/19/19 10:55,"309 2nd St, Austin, TX 73301" +262125,AAA Batteries (4-pack),2,2.99,09/06/19 22:43,"624 7th St, San Francisco, CA 94016" +262126,Bose SoundSport Headphones,1,99.99,09/06/19 12:02,"338 8th St, Atlanta, GA 30301" +262127,AA Batteries (4-pack),1,3.84,09/13/19 18:29,"207 Walnut St, New York City, NY 10001" +262128,Apple Airpods Headphones,1,150,09/12/19 13:57,"490 8th St, San Francisco, CA 94016" +262129,Wired Headphones,1,11.99,09/04/19 18:39,"999 Sunset St, Los Angeles, CA 90001" +262130,AAA Batteries (4-pack),2,2.99,09/02/19 12:32,"349 8th St, Los Angeles, CA 90001" +262131,AA Batteries (4-pack),1,3.84,09/16/19 21:36,"548 Spruce St, New York City, NY 10001" +262132,Lightning Charging Cable,1,14.95,09/18/19 20:53,"471 Highland St, Boston, MA 02215" +262133,USB-C Charging Cable,1,11.95,09/18/19 15:48,"237 Sunset St, New York City, NY 10001" +262134,20in Monitor,1,109.99,09/10/19 13:04,"910 4th St, Boston, MA 02215" +262135,Lightning Charging Cable,1,14.95,09/01/19 10:28,"196 North St, Atlanta, GA 30301" +262136,Apple Airpods Headphones,1,150,09/29/19 19:00,"573 1st St, Los Angeles, CA 90001" +262137,Lightning Charging Cable,1,14.95,09/19/19 21:46,"604 Church St, Los Angeles, CA 90001" +262138,USB-C Charging Cable,1,11.95,09/18/19 18:25,"59 Willow St, San Francisco, CA 94016" +262139,AAA Batteries (4-pack),1,2.99,09/16/19 19:49,"311 Johnson St, Boston, MA 02215" +262140,Apple Airpods Headphones,1,150,09/20/19 10:24,"185 Wilson St, San Francisco, CA 94016" +262141,USB-C Charging Cable,1,11.95,09/28/19 17:10,"372 Washington St, New York City, NY 10001" +262142,34in Ultrawide Monitor,1,379.99,09/24/19 10:56,"496 5th St, Los Angeles, CA 90001" +262143,Bose SoundSport Headphones,1,99.99,09/15/19 17:16,"230 Johnson St, Atlanta, GA 30301" +262144,AA Batteries (4-pack),1,3.84,09/08/19 21:39,"168 West St, Austin, TX 73301" +262145,20in Monitor,1,109.99,09/18/19 17:45,"44 Main St, Boston, MA 02215" +262146,Apple Airpods Headphones,1,150,09/24/19 12:59,"301 Wilson St, Atlanta, GA 30301" +262147,iPhone,1,700,09/25/19 11:50,"753 Maple St, Portland, OR 97035" +262148,34in Ultrawide Monitor,1,379.99,09/22/19 22:51,"876 Johnson St, Portland, OR 97035" +262149,USB-C Charging Cable,2,11.95,09/17/19 15:17,"585 Highland St, New York City, NY 10001" +262150,Lightning Charging Cable,1,14.95,09/18/19 20:04,"336 Elm St, San Francisco, CA 94016" +262151,27in FHD Monitor,1,149.99,09/15/19 09:45,"98 Center St, Los Angeles, CA 90001" +262152,20in Monitor,1,109.99,09/30/19 14:05,"964 Highland St, Atlanta, GA 30301" +262153,Bose SoundSport Headphones,1,99.99,09/11/19 11:59,"808 Johnson St, Los Angeles, CA 90001" +262154,Wired Headphones,1,11.99,09/15/19 02:12,"114 9th St, Dallas, TX 75001" +262155,Google Phone,1,600,09/03/19 12:31,"492 North St, San Francisco, CA 94016" +262156,Wired Headphones,1,11.99,09/12/19 16:00,"329 Highland St, San Francisco, CA 94016" +262157,ThinkPad Laptop,1,999.99,09/17/19 20:52,"712 Maple St, Seattle, WA 98101" +262158,Wired Headphones,1,11.99,09/15/19 16:52,"796 Park St, Los Angeles, CA 90001" +262159,Bose SoundSport Headphones,1,99.99,09/09/19 19:51,"921 Willow St, San Francisco, CA 94016" +262160,Bose SoundSport Headphones,1,99.99,09/12/19 20:39,"99 Main St, Boston, MA 02215" +262161,27in 4K Gaming Monitor,1,389.99,09/18/19 09:56,"554 Willow St, Boston, MA 02215" +262162,Bose SoundSport Headphones,1,99.99,09/15/19 07:24,"1 Willow St, Portland, OR 97035" +262163,iPhone,1,700,09/10/19 11:45,"714 Elm St, Dallas, TX 75001" +262164,AAA Batteries (4-pack),1,2.99,09/01/19 20:09,"501 Washington St, Los Angeles, CA 90001" +262165,AA Batteries (4-pack),4,3.84,09/25/19 15:20,"144 Wilson St, Los Angeles, CA 90001" +262166,Lightning Charging Cable,1,14.95,09/20/19 16:00,"635 Pine St, San Francisco, CA 94016" +262167,AA Batteries (4-pack),1,3.84,09/29/19 14:34,"486 6th St, Dallas, TX 75001" +262168,Apple Airpods Headphones,1,150,09/19/19 14:02,"410 1st St, San Francisco, CA 94016" +262169,34in Ultrawide Monitor,1,379.99,09/13/19 20:18,"70 Willow St, San Francisco, CA 94016" +262170,Bose SoundSport Headphones,1,99.99,09/20/19 12:58,"981 Pine St, Seattle, WA 98101" +262171,27in 4K Gaming Monitor,1,389.99,09/04/19 15:38,"71 Willow St, San Francisco, CA 94016" +262172,Flatscreen TV,1,300,09/03/19 18:09,"214 1st St, Atlanta, GA 30301" +262173,Apple Airpods Headphones,1,150,09/08/19 07:46,"128 Church St, Portland, OR 97035" +262174,AA Batteries (4-pack),2,3.84,09/06/19 00:54,"327 Cedar St, Los Angeles, CA 90001" +262175,Wired Headphones,1,11.99,09/12/19 21:52,"187 8th St, San Francisco, CA 94016" +262175,Wired Headphones,1,11.99,09/12/19 21:52,"187 8th St, San Francisco, CA 94016" +262176,27in 4K Gaming Monitor,1,389.99,09/29/19 14:15,"722 South St, San Francisco, CA 94016" +262177,Flatscreen TV,1,300,09/26/19 09:40,"70 Johnson St, Seattle, WA 98101" +262178,Lightning Charging Cable,1,14.95,09/04/19 15:15,"852 8th St, Portland, OR 97035" +262179,Wired Headphones,1,11.99,09/19/19 12:20,"150 1st St, New York City, NY 10001" +262180,Wired Headphones,1,11.99,09/15/19 07:22,"236 Maple St, San Francisco, CA 94016" +262181,Wired Headphones,1,11.99,09/15/19 10:38,"128 Willow St, Austin, TX 73301" +262182,Apple Airpods Headphones,1,150,09/15/19 17:20,"56 Elm St, Los Angeles, CA 90001" +262183,Lightning Charging Cable,1,14.95,09/08/19 12:18,"409 Church St, San Francisco, CA 94016" +262184,ThinkPad Laptop,1,999.99,09/05/19 22:52,"829 Lincoln St, New York City, NY 10001" +262185,AA Batteries (4-pack),1,3.84,09/18/19 11:35,"50 Lakeview St, San Francisco, CA 94016" +262186,AAA Batteries (4-pack),1,2.99,09/17/19 23:21,"847 Johnson St, New York City, NY 10001" +262187,USB-C Charging Cable,1,11.95,09/18/19 19:33,"851 2nd St, Atlanta, GA 30301" +262188,27in FHD Monitor,1,149.99,09/05/19 18:14,"763 8th St, Dallas, TX 75001" +262189,Wired Headphones,1,11.99,09/07/19 17:02,"700 Jackson St, San Francisco, CA 94016" +262190,Lightning Charging Cable,1,14.95,09/23/19 19:45,"44 Sunset St, San Francisco, CA 94016" +262191,USB-C Charging Cable,1,11.95,09/08/19 19:31,"26 9th St, Los Angeles, CA 90001" +262192,AA Batteries (4-pack),1,3.84,09/21/19 08:15,"166 Sunset St, Boston, MA 02215" +262193,Apple Airpods Headphones,1,150,09/17/19 20:03,"282 Johnson St, New York City, NY 10001" +262194,AA Batteries (4-pack),1,3.84,09/17/19 11:17,"901 Wilson St, Los Angeles, CA 90001" +262195,AAA Batteries (4-pack),1,2.99,09/21/19 19:43,"61 Sunset St, Seattle, WA 98101" +262196,Macbook Pro Laptop,1,1700,09/09/19 16:04,"387 Lakeview St, Atlanta, GA 30301" +262197,AA Batteries (4-pack),1,3.84,09/10/19 15:31,"704 Jefferson St, New York City, NY 10001" +262198,USB-C Charging Cable,1,11.95,09/19/19 09:24,"559 13th St, Dallas, TX 75001" +262199,Lightning Charging Cable,2,14.95,09/14/19 01:30,"149 Park St, Seattle, WA 98101" +262200,USB-C Charging Cable,1,11.95,09/23/19 14:19,"830 Madison St, Austin, TX 73301" +262201,Apple Airpods Headphones,1,150,09/06/19 11:37,"633 Dogwood St, Atlanta, GA 30301" +262202,34in Ultrawide Monitor,1,379.99,09/20/19 19:03,"970 South St, Austin, TX 73301" +262203,Wired Headphones,1,11.99,09/15/19 17:59,"346 North St, San Francisco, CA 94016" +262204,Wired Headphones,1,11.99,09/05/19 14:07,"733 Hickory St, Los Angeles, CA 90001" +262205,27in FHD Monitor,1,149.99,09/24/19 08:33,"743 14th St, Boston, MA 02215" +262206,AAA Batteries (4-pack),1,2.99,09/17/19 09:57,"55 14th St, Austin, TX 73301" +262207,iPhone,1,700,09/02/19 14:46,"198 Washington St, San Francisco, CA 94016" +262208,AAA Batteries (4-pack),4,2.99,09/25/19 19:54,"838 Maple St, New York City, NY 10001" +262209,AAA Batteries (4-pack),1,2.99,09/21/19 14:25,"460 Adams St, Austin, TX 73301" +262210,Lightning Charging Cable,1,14.95,09/27/19 15:04,"533 Lake St, New York City, NY 10001" +262211,34in Ultrawide Monitor,1,379.99,09/30/19 12:07,"671 Cedar St, San Francisco, CA 94016" +262212,iPhone,1,700,09/21/19 09:24,"579 4th St, San Francisco, CA 94016" +262212,Apple Airpods Headphones,1,150,09/21/19 09:24,"579 4th St, San Francisco, CA 94016" +262212,Wired Headphones,1,11.99,09/21/19 09:24,"579 4th St, San Francisco, CA 94016" +262213,Apple Airpods Headphones,1,150,09/02/19 10:14,"736 Cedar St, New York City, NY 10001" +262214,27in 4K Gaming Monitor,1,389.99,09/10/19 22:41,"158 Cedar St, Boston, MA 02215" +262215,Apple Airpods Headphones,1,150,09/01/19 23:08,"374 Lakeview St, Atlanta, GA 30301" +262216,Bose SoundSport Headphones,1,99.99,09/29/19 20:28,"63 South St, Los Angeles, CA 90001" +262217,Google Phone,1,600,09/14/19 01:06,"449 Main St, Atlanta, GA 30301" +262217,USB-C Charging Cable,1,11.95,09/14/19 01:06,"449 Main St, Atlanta, GA 30301" +262218,Lightning Charging Cable,1,14.95,09/06/19 20:38,"593 Highland St, Portland, OR 97035" +262219,Macbook Pro Laptop,1,1700,09/20/19 08:14,"832 Elm St, San Francisco, CA 94016" +262220,AA Batteries (4-pack),1,3.84,09/10/19 03:00,"312 Ridge St, Seattle, WA 98101" +262221,LG Dryer,1,600.0,09/22/19 19:45,"33 Park St, San Francisco, CA 94016" +262222,Lightning Charging Cable,1,14.95,09/05/19 11:09,"433 Church St, New York City, NY 10001" +262223,Wired Headphones,1,11.99,09/23/19 14:35,"98 Elm St, Austin, TX 73301" +262224,Wired Headphones,1,11.99,09/16/19 06:40,"902 7th St, Boston, MA 02215" +262225,Macbook Pro Laptop,1,1700,09/19/19 23:39,"190 1st St, Los Angeles, CA 90001" +262226,Apple Airpods Headphones,1,150,09/22/19 11:40,"168 Hill St, Dallas, TX 75001" +262227,Bose SoundSport Headphones,1,99.99,09/09/19 13:34,"369 Elm St, San Francisco, CA 94016" +262228,Bose SoundSport Headphones,1,99.99,09/17/19 19:09,"553 West St, Boston, MA 02215" +262229,Apple Airpods Headphones,1,150,09/10/19 19:46,"740 4th St, San Francisco, CA 94016" +262230,Google Phone,1,600,09/21/19 07:00,"936 Willow St, Los Angeles, CA 90001" +262231,27in FHD Monitor,1,149.99,09/18/19 15:03,"108 10th St, Portland, OR 97035" +262232,USB-C Charging Cable,1,11.95,09/05/19 16:47,"466 West St, Dallas, TX 75001" +262233,AAA Batteries (4-pack),1,2.99,09/28/19 08:34,"91 6th St, Portland, OR 97035" +262234,Wired Headphones,1,11.99,09/06/19 19:12,"724 North St, Los Angeles, CA 90001" +262235,27in FHD Monitor,1,149.99,09/22/19 22:50,"126 Highland St, San Francisco, CA 94016" +262236,Apple Airpods Headphones,1,150,09/29/19 13:17,"292 Chestnut St, Portland, OR 97035" +262237,Apple Airpods Headphones,1,150,09/16/19 01:52,"151 Center St, San Francisco, CA 94016" +262238,Wired Headphones,1,11.99,09/25/19 22:09,"866 Elm St, Dallas, TX 75001" +262239,Bose SoundSport Headphones,1,99.99,09/01/19 21:26,"495 Ridge St, Dallas, TX 75001" +262240,Flatscreen TV,1,300,09/15/19 13:58,"306 Lake St, Portland, OR 97035" +262241,27in 4K Gaming Monitor,1,389.99,09/17/19 17:59,"141 9th St, New York City, NY 10001" +262241,Bose SoundSport Headphones,1,99.99,09/17/19 17:59,"141 9th St, New York City, NY 10001" +262242,Lightning Charging Cable,2,14.95,09/10/19 10:46,"961 Washington St, San Francisco, CA 94016" +262243,Apple Airpods Headphones,1,150,09/14/19 13:44,"670 Maple St, Dallas, TX 75001" +262244,AAA Batteries (4-pack),2,2.99,09/29/19 11:59,"949 Maple St, San Francisco, CA 94016" +262245,34in Ultrawide Monitor,1,379.99,09/27/19 22:26,"683 Hickory St, Los Angeles, CA 90001" +262246,USB-C Charging Cable,1,11.95,09/26/19 10:44,"994 Church St, New York City, NY 10001" +262247,27in FHD Monitor,1,149.99,09/22/19 14:52,"361 River St, Dallas, TX 75001" +262248,27in 4K Gaming Monitor,1,389.99,09/16/19 09:50,"675 9th St, San Francisco, CA 94016" +262249,AA Batteries (4-pack),1,3.84,09/24/19 08:15,"208 5th St, Atlanta, GA 30301" +262250,Google Phone,1,600,09/10/19 13:20,"584 Chestnut St, New York City, NY 10001" +262250,USB-C Charging Cable,1,11.95,09/10/19 13:20,"584 Chestnut St, New York City, NY 10001" +262251,Lightning Charging Cable,1,14.95,09/15/19 11:04,"77 Chestnut St, Los Angeles, CA 90001" +262252,Lightning Charging Cable,1,14.95,09/22/19 12:17,"755 Sunset St, Seattle, WA 98101" +262253,Vareebadd Phone,1,400,09/20/19 13:05,"456 River St, Los Angeles, CA 90001" +262254,Lightning Charging Cable,1,14.95,09/30/19 09:57,"746 13th St, San Francisco, CA 94016" +262255,AA Batteries (4-pack),1,3.84,09/12/19 06:42,"666 Main St, New York City, NY 10001" +262256,AA Batteries (4-pack),2,3.84,09/17/19 19:52,"49 Wilson St, San Francisco, CA 94016" +262257,Wired Headphones,1,11.99,09/22/19 15:55,"842 Highland St, Los Angeles, CA 90001" +262258,Wired Headphones,1,11.99,09/16/19 13:52,"46 7th St, Boston, MA 02215" +262259,Lightning Charging Cable,1,14.95,09/11/19 13:24,"299 12th St, Boston, MA 02215" +262260,Apple Airpods Headphones,1,150,09/30/19 10:29,"993 Lincoln St, San Francisco, CA 94016" +262261,27in 4K Gaming Monitor,1,389.99,09/19/19 19:19,"602 Lakeview St, Atlanta, GA 30301" +262262,USB-C Charging Cable,1,11.95,09/17/19 16:39,"380 5th St, San Francisco, CA 94016" +262263,iPhone,1,700,09/01/19 09:41,"110 14th St, San Francisco, CA 94016" +262264,AA Batteries (4-pack),1,3.84,09/20/19 15:03,"670 9th St, San Francisco, CA 94016" +262265,AA Batteries (4-pack),1,3.84,09/18/19 13:01,"732 6th St, Boston, MA 02215" +262266,ThinkPad Laptop,1,999.99,09/08/19 20:41,"609 4th St, Seattle, WA 98101" +262267,Lightning Charging Cable,1,14.95,09/26/19 03:17,"737 14th St, Boston, MA 02215" +262268,USB-C Charging Cable,1,11.95,09/15/19 21:29,"520 South St, Los Angeles, CA 90001" +262269,34in Ultrawide Monitor,1,379.99,09/02/19 17:53,"644 Park St, San Francisco, CA 94016" +262270,Wired Headphones,1,11.99,09/22/19 08:40,"123 Adams St, Boston, MA 02215" +262271,AA Batteries (4-pack),1,3.84,09/19/19 12:56,"603 River St, New York City, NY 10001" +262271,USB-C Charging Cable,1,11.95,09/19/19 12:56,"603 River St, New York City, NY 10001" +262272,Google Phone,1,600,09/02/19 09:37,"905 Walnut St, Austin, TX 73301" +262272,USB-C Charging Cable,1,11.95,09/02/19 09:37,"905 Walnut St, Austin, TX 73301" +262273,Wired Headphones,1,11.99,09/05/19 22:43,"980 South St, Austin, TX 73301" +262274,AA Batteries (4-pack),1,3.84,09/12/19 09:38,"24 Willow St, Los Angeles, CA 90001" +262275,AAA Batteries (4-pack),1,2.99,09/23/19 15:11,"25 6th St, Los Angeles, CA 90001" +262276,Vareebadd Phone,1,400,09/04/19 21:36,"727 14th St, San Francisco, CA 94016" +262277,34in Ultrawide Monitor,1,379.99,09/17/19 17:30,"369 Jackson St, Portland, OR 97035" +262278,Wired Headphones,1,11.99,09/19/19 11:18,"93 Wilson St, San Francisco, CA 94016" +262279,ThinkPad Laptop,1,999.99,09/06/19 10:23,"928 Willow St, San Francisco, CA 94016" +262280,AA Batteries (4-pack),1,3.84,09/25/19 11:08,"766 Washington St, New York City, NY 10001" +262281,Wired Headphones,1,11.99,09/18/19 23:26,"671 7th St, Seattle, WA 98101" +262282,Flatscreen TV,1,300,09/26/19 20:46,"367 Cherry St, San Francisco, CA 94016" +262283,Lightning Charging Cable,1,14.95,09/25/19 09:31,"811 Elm St, San Francisco, CA 94016" +262284,Apple Airpods Headphones,1,150,09/18/19 17:47,"719 Ridge St, Los Angeles, CA 90001" +262285,27in FHD Monitor,1,149.99,09/23/19 21:02,"901 Spruce St, San Francisco, CA 94016" +262286,AAA Batteries (4-pack),1,2.99,09/22/19 19:22,"462 Cedar St, Atlanta, GA 30301" +262287,ThinkPad Laptop,1,999.99,09/14/19 12:36,"768 8th St, Los Angeles, CA 90001" +262288,USB-C Charging Cable,1,11.95,09/03/19 13:37,"546 South St, San Francisco, CA 94016" +262289,USB-C Charging Cable,1,11.95,09/01/19 22:08,"797 Sunset St, San Francisco, CA 94016" +262290,AA Batteries (4-pack),1,3.84,09/14/19 11:39,"20 Wilson St, Atlanta, GA 30301" +262291,Lightning Charging Cable,1,14.95,09/14/19 20:17,"854 Lincoln St, New York City, NY 10001" +262292,Google Phone,1,600,09/11/19 14:29,"332 Center St, San Francisco, CA 94016" +262293,AA Batteries (4-pack),1,3.84,09/10/19 11:55,"56 Johnson St, San Francisco, CA 94016" +262294,AA Batteries (4-pack),2,3.84,09/24/19 15:11,"89 Johnson St, Dallas, TX 75001" +262295,Apple Airpods Headphones,1,150,09/19/19 22:10,"531 Willow St, Boston, MA 02215" +262296,LG Dryer,1,600.0,09/06/19 17:26,"874 Cedar St, New York City, NY 10001" +262297,AA Batteries (4-pack),1,3.84,09/20/19 20:01,"592 1st St, Boston, MA 02215" +262298,Apple Airpods Headphones,1,150,09/29/19 16:59,"508 Lakeview St, Los Angeles, CA 90001" +262299,AAA Batteries (4-pack),1,2.99,09/30/19 20:00,"619 4th St, San Francisco, CA 94016" +262300,20in Monitor,1,109.99,09/12/19 19:43,"952 Pine St, Seattle, WA 98101" +262301,Wired Headphones,1,11.99,09/10/19 12:48,"298 14th St, San Francisco, CA 94016" +262302,Wired Headphones,1,11.99,09/16/19 12:33,"793 Wilson St, San Francisco, CA 94016" +262303,27in FHD Monitor,1,149.99,09/03/19 13:18,"438 Spruce St, Austin, TX 73301" +262304,USB-C Charging Cable,1,11.95,09/04/19 11:07,"480 Chestnut St, Los Angeles, CA 90001" +262305,AAA Batteries (4-pack),1,2.99,09/23/19 14:43,"840 Forest St, Los Angeles, CA 90001" +262306,Bose SoundSport Headphones,1,99.99,09/29/19 19:58,"360 2nd St, Boston, MA 02215" +262307,USB-C Charging Cable,1,11.95,09/13/19 19:47,"155 Main St, Los Angeles, CA 90001" +262308,Google Phone,1,600,09/23/19 23:03,"969 Willow St, San Francisco, CA 94016" +262308,Wired Headphones,1,11.99,09/23/19 23:03,"969 Willow St, San Francisco, CA 94016" +262309,USB-C Charging Cable,1,11.95,09/23/19 13:46,"394 Cherry St, New York City, NY 10001" +262310,Lightning Charging Cable,1,14.95,09/10/19 12:28,"470 6th St, San Francisco, CA 94016" +262311,Macbook Pro Laptop,1,1700,09/12/19 13:08,"327 Cedar St, San Francisco, CA 94016" +262312,Wired Headphones,1,11.99,09/22/19 18:25,"683 Pine St, San Francisco, CA 94016" +262313,Lightning Charging Cable,1,14.95,09/27/19 00:36,"436 Lakeview St, San Francisco, CA 94016" +262314,AA Batteries (4-pack),1,3.84,09/29/19 20:52,"373 11th St, Dallas, TX 75001" +262315,Wired Headphones,2,11.99,09/03/19 11:06,"220 Ridge St, Portland, OR 97035" +262316,Bose SoundSport Headphones,1,99.99,09/06/19 09:26,"887 West St, Boston, MA 02215" +262317,AAA Batteries (4-pack),1,2.99,09/24/19 16:15,"143 9th St, San Francisco, CA 94016" +262318,Bose SoundSport Headphones,1,99.99,09/12/19 17:08,"17 North St, Seattle, WA 98101" +262319,Google Phone,1,600,09/19/19 21:33,"859 Madison St, Seattle, WA 98101" +262319,USB-C Charging Cable,1,11.95,09/19/19 21:33,"859 Madison St, Seattle, WA 98101" +262320,Lightning Charging Cable,2,14.95,09/23/19 08:39,"291 11th St, Atlanta, GA 30301" +262321,Bose SoundSport Headphones,1,99.99,09/25/19 02:37,"36 Cedar St, Seattle, WA 98101" +262322,Apple Airpods Headphones,1,150,09/19/19 10:53,"236 2nd St, Boston, MA 02215" +262323,Macbook Pro Laptop,1,1700,09/17/19 09:26,"385 4th St, New York City, NY 10001" +262324,Lightning Charging Cable,1,14.95,09/12/19 14:42,"93 2nd St, Los Angeles, CA 90001" +262325,Lightning Charging Cable,1,14.95,09/22/19 13:17,"990 Park St, New York City, NY 10001" +262326,Vareebadd Phone,1,400,09/21/19 18:35,"390 Maple St, San Francisco, CA 94016" +262327,ThinkPad Laptop,1,999.99,09/23/19 12:49,"406 Sunset St, Seattle, WA 98101" +262328,Apple Airpods Headphones,1,150,09/06/19 10:52,"114 6th St, Austin, TX 73301" +262328,27in 4K Gaming Monitor,1,389.99,09/06/19 10:52,"114 6th St, Austin, TX 73301" +262329,iPhone,1,700,09/03/19 18:51,"83 Cedar St, New York City, NY 10001" +262329,Lightning Charging Cable,1,14.95,09/03/19 18:51,"83 Cedar St, New York City, NY 10001" +262330,27in 4K Gaming Monitor,1,389.99,09/03/19 21:46,"308 1st St, Boston, MA 02215" +262331,Apple Airpods Headphones,1,150,09/01/19 16:06,"115 10th St, Austin, TX 73301" +262332,ThinkPad Laptop,1,999.99,09/13/19 12:21,"495 Washington St, New York City, NY 10001" +262333,Lightning Charging Cable,1,14.95,09/05/19 13:45,"661 Main St, Seattle, WA 98101" +262334,USB-C Charging Cable,1,11.95,09/11/19 16:06,"573 Sunset St, Seattle, WA 98101" +262335,Flatscreen TV,1,300,09/04/19 15:14,"168 West St, Boston, MA 02215" +262336,AAA Batteries (4-pack),1,2.99,09/08/19 20:16,"379 Elm St, Portland, OR 97035" +262337,Wired Headphones,1,11.99,09/29/19 10:51,"997 5th St, Los Angeles, CA 90001" +262338,Apple Airpods Headphones,1,150,09/25/19 01:20,"977 10th St, Portland, OR 97035" +262339,AA Batteries (4-pack),1,3.84,09/25/19 16:22,"559 Walnut St, Seattle, WA 98101" +262340,Google Phone,1,600,09/10/19 20:57,"404 West St, San Francisco, CA 94016" +262341,Flatscreen TV,1,300,09/01/19 23:13,"45 Hill St, San Francisco, CA 94016" +262342,AA Batteries (4-pack),1,3.84,09/13/19 13:38,"591 Dogwood St, Dallas, TX 75001" +262343,USB-C Charging Cable,1,11.95,09/03/19 22:10,"583 Hickory St, Los Angeles, CA 90001" +262344,iPhone,1,700,09/13/19 08:08,"982 Willow St, San Francisco, CA 94016" +262344,Lightning Charging Cable,1,14.95,09/13/19 08:08,"982 Willow St, San Francisco, CA 94016" +262345,Wired Headphones,1,11.99,09/30/19 05:55,"801 Center St, New York City, NY 10001" +262346,Wired Headphones,1,11.99,09/30/19 09:53,"961 Hill St, Los Angeles, CA 90001" +262347,USB-C Charging Cable,1,11.95,09/22/19 16:22,"311 Church St, Seattle, WA 98101" +262348,Bose SoundSport Headphones,1,99.99,09/24/19 11:29,"629 Dogwood St, Boston, MA 02215" +262349,AA Batteries (4-pack),1,3.84,09/05/19 17:44,"930 5th St, San Francisco, CA 94016" +262350,Wired Headphones,1,11.99,09/20/19 20:49,"859 Chestnut St, New York City, NY 10001" +262351,ThinkPad Laptop,1,999.99,09/20/19 17:40,"264 Sunset St, Los Angeles, CA 90001" +262352,USB-C Charging Cable,3,11.95,09/04/19 14:14,"441 Dogwood St, San Francisco, CA 94016" +262353,Lightning Charging Cable,1,14.95,09/24/19 22:44,"358 Lincoln St, Boston, MA 02215" +262354,Wired Headphones,2,11.99,09/13/19 04:49,"320 Pine St, Dallas, TX 75001" +262355,Lightning Charging Cable,1,14.95,09/08/19 19:49,"244 Ridge St, Austin, TX 73301" +262356,Lightning Charging Cable,1,14.95,09/07/19 15:55,"86 14th St, Boston, MA 02215" +262357,Apple Airpods Headphones,1,150,09/06/19 20:13,"10 Lakeview St, Los Angeles, CA 90001" +262358,ThinkPad Laptop,1,999.99,09/24/19 19:05,"473 12th St, Los Angeles, CA 90001" +262359,Apple Airpods Headphones,1,150,09/19/19 20:19,"457 Wilson St, Atlanta, GA 30301" +262360,LG Washing Machine,1,600.0,09/19/19 08:52,"234 Sunset St, New York City, NY 10001" +262361,27in FHD Monitor,1,149.99,09/14/19 12:25,"723 9th St, Atlanta, GA 30301" +262362,27in 4K Gaming Monitor,1,389.99,09/13/19 11:05,"454 Pine St, San Francisco, CA 94016" +262363,Lightning Charging Cable,1,14.95,09/08/19 13:01,"231 Walnut St, Boston, MA 02215" +262364,Lightning Charging Cable,1,14.95,09/15/19 17:35,"132 Lakeview St, New York City, NY 10001" +262365,AA Batteries (4-pack),4,3.84,09/04/19 08:55,"582 Jefferson St, Boston, MA 02215" +262366,AA Batteries (4-pack),2,3.84,09/04/19 09:16,"458 Lake St, San Francisco, CA 94016" +262367,27in FHD Monitor,1,149.99,09/08/19 07:57,"320 5th St, San Francisco, CA 94016" +262367,iPhone,1,700,09/08/19 07:57,"320 5th St, San Francisco, CA 94016" +262368,AA Batteries (4-pack),2,3.84,09/11/19 08:19,"571 Sunset St, Austin, TX 73301" +262368,34in Ultrawide Monitor,1,379.99,09/11/19 08:19,"571 Sunset St, Austin, TX 73301" +262369,Wired Headphones,1,11.99,09/14/19 14:01,"673 Sunset St, Portland, ME 04101" +262370,Apple Airpods Headphones,1,150,09/02/19 14:40,"334 Adams St, Los Angeles, CA 90001" +262371,Apple Airpods Headphones,1,150,09/02/19 20:38,"83 10th St, San Francisco, CA 94016" +262372,Apple Airpods Headphones,1,150,09/22/19 14:06,"221 South St, New York City, NY 10001" +262373,Google Phone,1,600,09/28/19 18:37,"117 West St, Boston, MA 02215" +262374,AA Batteries (4-pack),1,3.84,09/24/19 17:29,"664 Dogwood St, Los Angeles, CA 90001" +262375,Apple Airpods Headphones,1,150,09/27/19 22:12,"210 12th St, San Francisco, CA 94016" +262376,Apple Airpods Headphones,1,150,09/30/19 18:37,"750 12th St, Seattle, WA 98101" +262377,Flatscreen TV,1,300,09/15/19 17:53,"71 1st St, Boston, MA 02215" +262378,34in Ultrawide Monitor,1,379.99,09/13/19 20:00,"874 13th St, Boston, MA 02215" +262379,34in Ultrawide Monitor,1,379.99,09/05/19 14:39,"936 Dogwood St, Seattle, WA 98101" +262380,Lightning Charging Cable,1,14.95,09/27/19 12:29,"243 Willow St, Dallas, TX 75001" +262381,ThinkPad Laptop,1,999.99,09/24/19 08:58,"257 13th St, San Francisco, CA 94016" +262382,Wired Headphones,1,11.99,09/30/19 00:41,"152 6th St, New York City, NY 10001" +262383,AA Batteries (4-pack),1,3.84,09/18/19 16:00,"439 13th St, Seattle, WA 98101" +262384,27in FHD Monitor,1,149.99,09/15/19 21:02,"197 South St, Los Angeles, CA 90001" +262385,AAA Batteries (4-pack),1,2.99,09/24/19 23:09,"466 Church St, San Francisco, CA 94016" +262386,USB-C Charging Cable,1,11.95,09/26/19 19:39,"794 Washington St, Dallas, TX 75001" +262387,AA Batteries (4-pack),1,3.84,09/14/19 09:32,"991 Meadow St, San Francisco, CA 94016" +262388,AA Batteries (4-pack),2,3.84,09/26/19 14:05,"185 West St, San Francisco, CA 94016" +262389,Lightning Charging Cable,1,14.95,09/11/19 17:50,"576 Maple St, San Francisco, CA 94016" +262390,AA Batteries (4-pack),1,3.84,09/27/19 08:35,"830 12th St, New York City, NY 10001" +262391,Apple Airpods Headphones,1,150,09/13/19 07:51,"514 Church St, San Francisco, CA 94016" +262392,34in Ultrawide Monitor,1,379.99,09/23/19 13:26,"881 Park St, Portland, OR 97035" +262393,27in 4K Gaming Monitor,1,389.99,09/27/19 21:07,"597 1st St, Los Angeles, CA 90001" +262394,Apple Airpods Headphones,1,150,09/18/19 05:44,"879 Madison St, San Francisco, CA 94016" +262395,AA Batteries (4-pack),1,3.84,09/10/19 09:51,"901 Main St, Boston, MA 02215" +262396,Bose SoundSport Headphones,1,99.99,09/18/19 10:33,"455 10th St, Dallas, TX 75001" +262397,34in Ultrawide Monitor,1,379.99,09/12/19 00:32,"647 Johnson St, Los Angeles, CA 90001" +262398,AAA Batteries (4-pack),2,2.99,09/05/19 13:37,"527 9th St, San Francisco, CA 94016" +262399,Lightning Charging Cable,1,14.95,09/09/19 06:23,"612 Johnson St, San Francisco, CA 94016" +262400,Bose SoundSport Headphones,1,99.99,09/08/19 10:32,"939 Wilson St, San Francisco, CA 94016" +262401,AA Batteries (4-pack),1,3.84,09/05/19 20:20,"590 Hill St, San Francisco, CA 94016" +262402,Wired Headphones,1,11.99,09/09/19 11:36,"291 Madison St, San Francisco, CA 94016" +262403,Lightning Charging Cable,1,14.95,09/17/19 17:04,"924 14th St, Seattle, WA 98101" +262404,Apple Airpods Headphones,1,150,09/20/19 21:16,"214 West St, Portland, OR 97035" +262405,USB-C Charging Cable,1,11.95,09/06/19 16:50,"42 5th St, Dallas, TX 75001" +262406,AA Batteries (4-pack),1,3.84,09/01/19 04:24,"659 Highland St, Atlanta, GA 30301" +262407,27in FHD Monitor,1,149.99,09/19/19 05:23,"323 Lincoln St, Seattle, WA 98101" +262408,AA Batteries (4-pack),1,3.84,09/09/19 17:41,"47 Meadow St, San Francisco, CA 94016" +262409,Apple Airpods Headphones,1,150,09/14/19 18:30,"728 Dogwood St, Seattle, WA 98101" +262410,USB-C Charging Cable,1,11.95,09/25/19 19:18,"974 8th St, New York City, NY 10001" +262411,Apple Airpods Headphones,1,150,09/26/19 11:20,"452 Jackson St, San Francisco, CA 94016" +262412,iPhone,1,700,09/02/19 16:04,"611 Forest St, Dallas, TX 75001" +262413,Apple Airpods Headphones,1,150,09/04/19 20:12,"891 Cedar St, Los Angeles, CA 90001" +262414,Wired Headphones,1,11.99,09/28/19 12:05,"177 South St, Portland, OR 97035" +262415,AA Batteries (4-pack),2,3.84,09/15/19 21:14,"265 Jackson St, Atlanta, GA 30301" +262416,Wired Headphones,1,11.99,09/01/19 16:44,"738 Walnut St, Seattle, WA 98101" +262417,AAA Batteries (4-pack),1,2.99,09/23/19 14:28,"814 Hickory St, Portland, OR 97035" +262418,Vareebadd Phone,1,400,09/30/19 12:26,"499 Johnson St, San Francisco, CA 94016" +262418,USB-C Charging Cable,2,11.95,09/30/19 12:26,"499 Johnson St, San Francisco, CA 94016" +262419,USB-C Charging Cable,1,11.95,09/05/19 00:36,"997 Chestnut St, San Francisco, CA 94016" +262420,27in FHD Monitor,1,149.99,09/08/19 13:30,"57 Wilson St, Los Angeles, CA 90001" +262421,34in Ultrawide Monitor,1,379.99,09/30/19 22:39,"847 Pine St, San Francisco, CA 94016" +262422,AAA Batteries (4-pack),2,2.99,09/19/19 07:54,"175 Pine St, San Francisco, CA 94016" +262423,AA Batteries (4-pack),1,3.84,09/08/19 20:05,"313 Maple St, New York City, NY 10001" +262424,34in Ultrawide Monitor,1,379.99,09/22/19 17:51,"473 Meadow St, Los Angeles, CA 90001" +262425,AA Batteries (4-pack),1,3.84,09/13/19 19:01,"463 Cedar St, Portland, ME 04101" +262426,AAA Batteries (4-pack),1,2.99,09/12/19 16:42,"801 Lincoln St, Los Angeles, CA 90001" +262427,AAA Batteries (4-pack),3,2.99,09/15/19 15:22,"892 Elm St, San Francisco, CA 94016" +262428,Wired Headphones,2,11.99,09/29/19 11:35,"676 West St, Portland, OR 97035" +262429,Google Phone,1,600,09/22/19 11:21,"65 Johnson St, San Francisco, CA 94016" +262429,Wired Headphones,1,11.99,09/22/19 11:21,"65 Johnson St, San Francisco, CA 94016" +262430,AAA Batteries (4-pack),1,2.99,09/01/19 14:40,"319 5th St, Dallas, TX 75001" +262431,USB-C Charging Cable,2,11.95,09/10/19 18:47,"921 West St, Austin, TX 73301" +262432,Apple Airpods Headphones,1,150,09/20/19 23:00,"996 Ridge St, Boston, MA 02215" +262433,USB-C Charging Cable,1,11.95,09/10/19 00:54,"377 Jackson St, Portland, OR 97035" +262434,Apple Airpods Headphones,1,150,09/23/19 07:40,"289 South St, Portland, OR 97035" +262435,Lightning Charging Cable,1,14.95,09/30/19 19:45,"916 Dogwood St, San Francisco, CA 94016" +262436,iPhone,1,700,09/23/19 12:54,"158 North St, New York City, NY 10001" +262437,USB-C Charging Cable,1,11.95,09/17/19 13:43,"724 Lincoln St, Los Angeles, CA 90001" +262438,Macbook Pro Laptop,1,1700,09/14/19 10:06,"173 6th St, San Francisco, CA 94016" +262439,USB-C Charging Cable,1,11.95,09/21/19 12:17,"868 7th St, Seattle, WA 98101" +262440,AA Batteries (4-pack),1,3.84,09/07/19 20:59,"254 North St, San Francisco, CA 94016" +262441,AAA Batteries (4-pack),2,2.99,09/23/19 09:52,"947 Meadow St, Los Angeles, CA 90001" +262442,Lightning Charging Cable,1,14.95,09/07/19 16:07,"806 Jefferson St, Los Angeles, CA 90001" +262443,ThinkPad Laptop,1,999.99,09/13/19 01:50,"726 11th St, New York City, NY 10001" +262444,AAA Batteries (4-pack),2,2.99,09/02/19 07:48,"875 8th St, Boston, MA 02215" +262445,Apple Airpods Headphones,1,150,09/11/19 19:04,"192 8th St, Boston, MA 02215" +262446,27in FHD Monitor,1,149.99,09/06/19 21:21,"341 Lake St, Los Angeles, CA 90001" +262447,27in FHD Monitor,1,149.99,09/01/19 17:39,"952 Highland St, Seattle, WA 98101" +262448,Bose SoundSport Headphones,1,99.99,09/03/19 08:40,"757 Spruce St, Portland, OR 97035" +262449,AAA Batteries (4-pack),1,2.99,09/09/19 18:02,"945 14th St, Los Angeles, CA 90001" +262450,Apple Airpods Headphones,1,150,09/28/19 00:59,"953 7th St, Boston, MA 02215" +262451,Lightning Charging Cable,1,14.95,09/26/19 12:33,"444 Jackson St, Dallas, TX 75001" +262452,Wired Headphones,1,11.99,09/22/19 22:03,"25 4th St, New York City, NY 10001" +262453,Lightning Charging Cable,1,14.95,09/19/19 15:55,"537 Church St, Austin, TX 73301" +262454,Flatscreen TV,1,300,09/26/19 11:21,"137 North St, Atlanta, GA 30301" +262455,20in Monitor,1,109.99,09/19/19 17:58,"74 4th St, San Francisco, CA 94016" +262456,Lightning Charging Cable,1,14.95,09/02/19 21:43,"933 12th St, Los Angeles, CA 90001" +262457,USB-C Charging Cable,1,11.95,09/29/19 08:51,"676 7th St, Los Angeles, CA 90001" +262458,Wired Headphones,1,11.99,09/24/19 15:32,"400 4th St, Dallas, TX 75001" +262459,AAA Batteries (4-pack),1,2.99,09/07/19 10:06,"403 14th St, Dallas, TX 75001" +262460,Vareebadd Phone,1,400,09/04/19 14:11,"114 Sunset St, Boston, MA 02215" +262461,Bose SoundSport Headphones,1,99.99,09/08/19 16:10,"811 13th St, Austin, TX 73301" +262462,Lightning Charging Cable,1,14.95,09/19/19 00:08,"626 Madison St, Los Angeles, CA 90001" +262463,AA Batteries (4-pack),1,3.84,09/09/19 23:07,"15 Lincoln St, Austin, TX 73301" +262464,Bose SoundSport Headphones,1,99.99,09/22/19 19:37,"763 Main St, San Francisco, CA 94016" +262465,AA Batteries (4-pack),1,3.84,09/07/19 13:48,"954 13th St, Los Angeles, CA 90001" +262466,Apple Airpods Headphones,1,150,09/06/19 01:41,"643 Madison St, New York City, NY 10001" +262467,Wired Headphones,2,11.99,09/15/19 10:42,"741 Wilson St, San Francisco, CA 94016" +262468,AAA Batteries (4-pack),1,2.99,09/23/19 14:01,"197 13th St, New York City, NY 10001" +262469,iPhone,1,700,09/23/19 10:02,"402 Willow St, Dallas, TX 75001" +262470,Bose SoundSport Headphones,1,99.99,09/19/19 12:00,"615 Johnson St, Boston, MA 02215" +262471,Lightning Charging Cable,1,14.95,09/04/19 20:48,"796 Maple St, New York City, NY 10001" +262472,AAA Batteries (4-pack),1,2.99,09/14/19 17:49,"132 Cherry St, Atlanta, GA 30301" +262473,iPhone,1,700,09/08/19 21:48,"665 South St, New York City, NY 10001" +262474,Apple Airpods Headphones,1,150,09/22/19 18:42,"960 Washington St, Dallas, TX 75001" +262475,27in 4K Gaming Monitor,1,389.99,09/20/19 12:47,"814 South St, Seattle, WA 98101" +262476,AAA Batteries (4-pack),1,2.99,09/19/19 16:51,"943 Sunset St, Atlanta, GA 30301" +262477,Bose SoundSport Headphones,1,99.99,09/10/19 18:42,"522 12th St, San Francisco, CA 94016" +262478,USB-C Charging Cable,1,11.95,09/04/19 14:58,"22 2nd St, San Francisco, CA 94016" +262479,Lightning Charging Cable,1,14.95,09/20/19 15:03,"397 Hill St, Seattle, WA 98101" +262480,27in FHD Monitor,1,149.99,09/23/19 11:29,"457 2nd St, Boston, MA 02215" +262481,USB-C Charging Cable,2,11.95,09/05/19 10:34,"9 5th St, Austin, TX 73301" +262482,34in Ultrawide Monitor,1,379.99,09/18/19 20:50,"490 2nd St, Boston, MA 02215" +262483,AAA Batteries (4-pack),1,2.99,09/15/19 14:46,"903 Madison St, Portland, OR 97035" +262484,Apple Airpods Headphones,1,150,09/16/19 20:14,"130 13th St, Austin, TX 73301" +262485,iPhone,1,700,09/06/19 11:05,"36 West St, Dallas, TX 75001" +262486,AAA Batteries (4-pack),1,2.99,09/14/19 18:38,"181 Pine St, San Francisco, CA 94016" +262487,Apple Airpods Headphones,1,150,09/10/19 07:26,"598 12th St, Portland, OR 97035" +262488,AA Batteries (4-pack),1,3.84,09/28/19 21:35,"73 Church St, Los Angeles, CA 90001" +262489,Macbook Pro Laptop,1,1700,09/08/19 13:14,"429 Walnut St, Los Angeles, CA 90001" +262490,AAA Batteries (4-pack),1,2.99,09/16/19 18:41,"336 Hill St, Los Angeles, CA 90001" +262491,34in Ultrawide Monitor,1,379.99,09/11/19 12:56,"990 Washington St, San Francisco, CA 94016" +262492,Google Phone,1,600,09/18/19 20:11,"409 Johnson St, New York City, NY 10001" +262493,Wired Headphones,1,11.99,09/10/19 15:15,"285 2nd St, San Francisco, CA 94016" +262494,34in Ultrawide Monitor,1,379.99,09/29/19 23:58,"236 Washington St, Dallas, TX 75001" +262494,Lightning Charging Cable,1,14.95,09/29/19 23:58,"236 Washington St, Dallas, TX 75001" +262495,Flatscreen TV,1,300,09/17/19 18:23,"286 Jackson St, Los Angeles, CA 90001" +262496,USB-C Charging Cable,1,11.95,09/16/19 10:17,"300 Park St, New York City, NY 10001" +262497,USB-C Charging Cable,1,11.95,09/01/19 22:38,"924 Hill St, Los Angeles, CA 90001" +262498,Lightning Charging Cable,1,14.95,09/05/19 12:34,"428 9th St, San Francisco, CA 94016" +262499,Bose SoundSport Headphones,1,99.99,09/26/19 19:59,"440 Willow St, Austin, TX 73301" +262500,20in Monitor,1,109.99,09/14/19 22:04,"475 Wilson St, Portland, OR 97035" +262501,Lightning Charging Cable,1,14.95,09/19/19 09:42,"953 Spruce St, Los Angeles, CA 90001" +262502,AA Batteries (4-pack),1,3.84,09/07/19 20:36,"990 Madison St, San Francisco, CA 94016" +262503,ThinkPad Laptop,1,999.99,09/09/19 15:28,"221 South St, San Francisco, CA 94016" +262504,AAA Batteries (4-pack),1,2.99,09/03/19 13:56,"773 7th St, Seattle, WA 98101" +262504,AA Batteries (4-pack),1,3.84,09/03/19 13:56,"773 7th St, Seattle, WA 98101" +262505,Wired Headphones,1,11.99,09/10/19 13:01,"418 Willow St, Los Angeles, CA 90001" +262506,USB-C Charging Cable,1,11.95,09/20/19 13:12,"47 Madison St, Portland, OR 97035" +262507,Wired Headphones,2,11.99,09/08/19 18:35,"338 Lakeview St, Austin, TX 73301" +262508,Wired Headphones,1,11.99,09/18/19 11:18,"608 Lakeview St, Boston, MA 02215" +262509,AAA Batteries (4-pack),1,2.99,09/10/19 19:04,"997 1st St, Boston, MA 02215" +262510,AAA Batteries (4-pack),2,2.99,09/14/19 06:17,"841 1st St, Boston, MA 02215" +262511,Apple Airpods Headphones,1,150,09/06/19 21:33,"615 12th St, San Francisco, CA 94016" +262512,AAA Batteries (4-pack),1,2.99,09/14/19 12:37,"46 Highland St, San Francisco, CA 94016" +262513,AAA Batteries (4-pack),1,2.99,09/23/19 20:59,"761 9th St, New York City, NY 10001" +262514,27in 4K Gaming Monitor,1,389.99,09/29/19 11:33,"988 Walnut St, San Francisco, CA 94016" +262515,AAA Batteries (4-pack),1,2.99,09/24/19 11:23,"167 1st St, New York City, NY 10001" +262516,AA Batteries (4-pack),1,3.84,09/11/19 01:54,"501 Wilson St, New York City, NY 10001" +262517,AAA Batteries (4-pack),1,2.99,09/03/19 20:24,"587 Madison St, Atlanta, GA 30301" +262518,Bose SoundSport Headphones,1,99.99,09/15/19 13:42,"358 Johnson St, Atlanta, GA 30301" +262519,AA Batteries (4-pack),2,3.84,09/24/19 13:25,"93 7th St, Dallas, TX 75001" +262520,AAA Batteries (4-pack),1,2.99,09/02/19 14:39,"692 Highland St, San Francisco, CA 94016" +262521,27in FHD Monitor,1,149.99,09/23/19 16:37,"20 Washington St, Seattle, WA 98101" +262522,20in Monitor,1,109.99,09/16/19 20:15,"887 South St, Austin, TX 73301" +262523,Wired Headphones,1,11.99,09/10/19 16:47,"747 Lake St, Portland, OR 97035" +262524,34in Ultrawide Monitor,1,379.99,09/11/19 14:26,"610 14th St, San Francisco, CA 94016" +262525,Wired Headphones,1,11.99,09/29/19 14:31,"674 Ridge St, Los Angeles, CA 90001" +262526,20in Monitor,1,109.99,09/29/19 18:20,"545 13th St, Los Angeles, CA 90001" +262527,Apple Airpods Headphones,1,150,09/29/19 18:04,"986 Main St, San Francisco, CA 94016" +262528,Bose SoundSport Headphones,1,99.99,09/05/19 14:04,"767 Jefferson St, San Francisco, CA 94016" +262529,Macbook Pro Laptop,1,1700,09/04/19 18:36,"889 2nd St, New York City, NY 10001" +262530,Wired Headphones,1,11.99,09/18/19 18:17,"519 Jackson St, Atlanta, GA 30301" +262530,AAA Batteries (4-pack),3,2.99,09/18/19 18:17,"519 Jackson St, Atlanta, GA 30301" +262531,Bose SoundSport Headphones,1,99.99,09/26/19 21:51,"288 Main St, New York City, NY 10001" +262532,Macbook Pro Laptop,1,1700,09/27/19 08:30,"524 12th St, Atlanta, GA 30301" +262533,AAA Batteries (4-pack),3,2.99,09/02/19 20:34,"153 Dogwood St, Austin, TX 73301" +262534,27in 4K Gaming Monitor,1,389.99,09/27/19 19:28,"899 Lakeview St, New York City, NY 10001" +262535,Bose SoundSport Headphones,1,99.99,09/12/19 00:08,"729 Lincoln St, San Francisco, CA 94016" +262536,Wired Headphones,1,11.99,09/01/19 20:36,"221 Walnut St, Los Angeles, CA 90001" +262537,USB-C Charging Cable,1,11.95,09/28/19 23:33,"924 South St, Dallas, TX 75001" +262538,Wired Headphones,1,11.99,09/02/19 22:05,"678 Chestnut St, Austin, TX 73301" +262539,27in 4K Gaming Monitor,1,389.99,09/03/19 02:47,"658 1st St, San Francisco, CA 94016" +262540,Bose SoundSport Headphones,1,99.99,09/01/19 09:43,"199 11th St, Los Angeles, CA 90001" +262541,Wired Headphones,1,11.99,09/08/19 12:56,"101 Adams St, Boston, MA 02215" +262542,Bose SoundSport Headphones,1,99.99,09/16/19 10:45,"170 1st St, Atlanta, GA 30301" +,,,,, +262543,Lightning Charging Cable,1,14.95,09/26/19 12:59,"861 Chestnut St, Dallas, TX 75001" +262544,iPhone,1,700,09/07/19 09:53,"600 Hickory St, Los Angeles, CA 90001" +262545,AA Batteries (4-pack),5,3.84,09/01/19 11:34,"308 Park St, New York City, NY 10001" +262546,iPhone,1,700,09/26/19 13:24,"322 7th St, Dallas, TX 75001" +262547,20in Monitor,1,109.99,09/25/19 15:45,"315 Center St, San Francisco, CA 94016" +262548,Wired Headphones,1,11.99,09/14/19 20:28,"657 Lake St, Los Angeles, CA 90001" +262548,Macbook Pro Laptop,1,1700,09/14/19 20:28,"657 Lake St, Los Angeles, CA 90001" +262549,AAA Batteries (4-pack),2,2.99,09/07/19 11:23,"542 Spruce St, Boston, MA 02215" +262550,Wired Headphones,1,11.99,09/14/19 16:47,"534 13th St, Atlanta, GA 30301" +262551,USB-C Charging Cable,1,11.95,09/27/19 11:49,"735 Sunset St, San Francisco, CA 94016" +262552,Wired Headphones,1,11.99,09/05/19 03:32,"657 11th St, New York City, NY 10001" +262553,AAA Batteries (4-pack),2,2.99,09/10/19 16:10,"883 Lake St, New York City, NY 10001" +262554,AAA Batteries (4-pack),1,2.99,09/22/19 15:27,"739 12th St, Los Angeles, CA 90001" +262555,27in FHD Monitor,1,149.99,09/10/19 16:44,"844 1st St, Portland, OR 97035" +262556,Flatscreen TV,1,300,09/20/19 22:16,"621 Highland St, Seattle, WA 98101" +262557,Lightning Charging Cable,1,14.95,09/21/19 19:19,"590 10th St, San Francisco, CA 94016" +262558,Bose SoundSport Headphones,1,99.99,09/27/19 12:08,"298 South St, Los Angeles, CA 90001" +262559,27in FHD Monitor,1,149.99,09/19/19 23:14,"55 Dogwood St, Atlanta, GA 30301" +262560,Google Phone,1,600,09/05/19 20:31,"111 Main St, New York City, NY 10001" +262561,34in Ultrawide Monitor,1,379.99,09/11/19 18:53,"808 Walnut St, Los Angeles, CA 90001" +262562,AA Batteries (4-pack),1,3.84,09/30/19 23:38,"897 River St, Austin, TX 73301" +262563,iPhone,1,700,09/27/19 10:49,"602 12th St, San Francisco, CA 94016" +262564,iPhone,1,700,09/14/19 20:14,"483 Pine St, Atlanta, GA 30301" +262565,AA Batteries (4-pack),1,3.84,09/17/19 17:17,"535 4th St, Atlanta, GA 30301" +262566,Lightning Charging Cable,1,14.95,09/28/19 21:23,"148 Ridge St, Los Angeles, CA 90001" +262567,AA Batteries (4-pack),1,3.84,09/26/19 00:06,"829 Cedar St, Dallas, TX 75001" +262567,AAA Batteries (4-pack),2,2.99,09/26/19 00:06,"829 Cedar St, Dallas, TX 75001" +262568,27in FHD Monitor,1,149.99,09/03/19 22:00,"528 1st St, Boston, MA 02215" +262569,AA Batteries (4-pack),1,3.84,09/08/19 12:11,"250 1st St, Seattle, WA 98101" +262570,27in FHD Monitor,1,149.99,09/03/19 14:53,"633 14th St, Los Angeles, CA 90001" +262570,AA Batteries (4-pack),1,3.84,09/03/19 14:53,"633 14th St, Los Angeles, CA 90001" +262571,Bose SoundSport Headphones,1,99.99,09/04/19 12:59,"89 Johnson St, San Francisco, CA 94016" +262572,USB-C Charging Cable,1,11.95,09/14/19 20:12,"177 Cedar St, Seattle, WA 98101" +262573,USB-C Charging Cable,1,11.95,09/29/19 02:35,"793 11th St, Atlanta, GA 30301" +262574,27in FHD Monitor,1,149.99,09/17/19 11:34,"252 Johnson St, San Francisco, CA 94016" +262575,Lightning Charging Cable,1,14.95,09/20/19 19:08,"389 Lincoln St, Dallas, TX 75001" +262576,Bose SoundSport Headphones,1,99.99,09/03/19 21:18,"770 Dogwood St, Los Angeles, CA 90001" +262577,27in 4K Gaming Monitor,1,389.99,09/02/19 17:33,"709 1st St, Los Angeles, CA 90001" +262578,AA Batteries (4-pack),1,3.84,09/03/19 17:51,"743 Highland St, Boston, MA 02215" +262579,27in FHD Monitor,1,149.99,09/07/19 16:41,"263 Washington St, San Francisco, CA 94016" +262580,USB-C Charging Cable,1,11.95,09/16/19 09:33,"582 5th St, Los Angeles, CA 90001" +262581,Apple Airpods Headphones,1,150,09/16/19 21:28,"4 Chestnut St, San Francisco, CA 94016" +262582,USB-C Charging Cable,1,11.95,09/13/19 13:23,"203 River St, Boston, MA 02215" +262583,Apple Airpods Headphones,1,150,09/17/19 19:17,"568 Spruce St, Boston, MA 02215" +262584,Wired Headphones,1,11.99,09/18/19 13:15,"717 Lincoln St, San Francisco, CA 94016" +262585,Macbook Pro Laptop,1,1700,09/16/19 19:51,"669 Main St, San Francisco, CA 94016" +262586,Flatscreen TV,1,300,09/18/19 09:33,"377 Ridge St, Boston, MA 02215" +262587,USB-C Charging Cable,1,11.95,09/17/19 12:35,"305 12th St, Los Angeles, CA 90001" +262588,Lightning Charging Cable,1,14.95,09/21/19 12:02,"241 Highland St, Boston, MA 02215" +262589,iPhone,1,700,09/07/19 18:48,"906 River St, New York City, NY 10001" +262590,AA Batteries (4-pack),1,3.84,09/22/19 16:24,"502 Meadow St, San Francisco, CA 94016" +262591,USB-C Charging Cable,1,11.95,09/14/19 11:42,"695 10th St, San Francisco, CA 94016" +262592,Flatscreen TV,1,300,09/01/19 20:45,"641 Sunset St, San Francisco, CA 94016" +262593,AAA Batteries (4-pack),2,2.99,09/19/19 21:12,"973 Lake St, Boston, MA 02215" +262594,Lightning Charging Cable,1,14.95,09/17/19 22:01,"795 Dogwood St, Atlanta, GA 30301" +262595,Macbook Pro Laptop,1,1700,09/20/19 09:30,"619 Meadow St, Boston, MA 02215" +262596,AA Batteries (4-pack),1,3.84,09/03/19 19:42,"650 6th St, San Francisco, CA 94016" +262597,34in Ultrawide Monitor,1,379.99,09/03/19 21:32,"933 Meadow St, Portland, OR 97035" +262598,Lightning Charging Cable,1,14.95,09/03/19 00:39,"496 West St, Boston, MA 02215" +262599,AA Batteries (4-pack),2,3.84,09/12/19 12:07,"404 2nd St, San Francisco, CA 94016" +262600,Apple Airpods Headphones,1,150,09/26/19 00:50,"657 13th St, Portland, ME 04101" +262601,Lightning Charging Cable,1,14.95,09/28/19 14:25,"265 7th St, San Francisco, CA 94016" +262602,Apple Airpods Headphones,1,150,09/09/19 15:50,"574 Main St, Los Angeles, CA 90001" +262603,USB-C Charging Cable,2,11.95,09/07/19 00:10,"263 11th St, Seattle, WA 98101" +262604,USB-C Charging Cable,1,11.95,09/07/19 10:22,"62 Adams St, San Francisco, CA 94016" +262605,Lightning Charging Cable,1,14.95,09/30/19 18:09,"6 Pine St, Boston, MA 02215" +262606,27in FHD Monitor,1,149.99,09/08/19 11:48,"797 Cherry St, Boston, MA 02215" +262607,Bose SoundSport Headphones,1,99.99,09/03/19 10:13,"124 Hickory St, San Francisco, CA 94016" +262608,USB-C Charging Cable,1,11.95,09/15/19 14:46,"984 13th St, Los Angeles, CA 90001" +262609,Wired Headphones,1,11.99,09/06/19 20:02,"331 Washington St, Portland, OR 97035" +262610,Google Phone,1,600,09/11/19 07:24,"726 Forest St, San Francisco, CA 94016" +262610,Wired Headphones,1,11.99,09/11/19 07:24,"726 Forest St, San Francisco, CA 94016" +262611,Lightning Charging Cable,1,14.95,09/22/19 10:44,"325 South St, Portland, OR 97035" +262612,Apple Airpods Headphones,1,150,09/19/19 10:36,"80 South St, Los Angeles, CA 90001" +262613,Apple Airpods Headphones,1,150,09/20/19 10:01,"255 12th St, Atlanta, GA 30301" +262614,Google Phone,1,600,09/01/19 21:37,"232 Spruce St, San Francisco, CA 94016" +262615,ThinkPad Laptop,1,999.99,09/09/19 08:31,"391 Madison St, Atlanta, GA 30301" +262616,AAA Batteries (4-pack),1,2.99,09/10/19 23:05,"102 Center St, New York City, NY 10001" +262617,34in Ultrawide Monitor,1,379.99,09/29/19 22:45,"226 Adams St, San Francisco, CA 94016" +262618,Flatscreen TV,1,300,09/11/19 10:52,"807 Cherry St, Los Angeles, CA 90001" +262619,ThinkPad Laptop,1,999.99,09/20/19 11:23,"168 North St, New York City, NY 10001" +262620,AAA Batteries (4-pack),1,2.99,09/19/19 19:41,"936 Madison St, Boston, MA 02215" +262621,Bose SoundSport Headphones,1,99.99,09/18/19 16:27,"917 North St, Boston, MA 02215" +262622,Lightning Charging Cable,1,14.95,09/29/19 14:15,"140 7th St, Atlanta, GA 30301" +262623,AA Batteries (4-pack),1,3.84,09/30/19 20:22,"379 Jefferson St, Austin, TX 73301" +262624,Lightning Charging Cable,1,14.95,09/26/19 16:16,"10 4th St, Los Angeles, CA 90001" +262625,34in Ultrawide Monitor,1,379.99,09/16/19 11:23,"515 River St, San Francisco, CA 94016" +262626,AA Batteries (4-pack),1,3.84,09/22/19 17:11,"649 Elm St, Seattle, WA 98101" +262627,USB-C Charging Cable,1,11.95,09/08/19 20:02,"289 Cherry St, Austin, TX 73301" +262628,Lightning Charging Cable,1,14.95,09/22/19 20:44,"135 River St, Atlanta, GA 30301" +262629,Bose SoundSport Headphones,1,99.99,09/14/19 14:28,"725 9th St, Seattle, WA 98101" +262630,34in Ultrawide Monitor,1,379.99,09/22/19 16:09,"578 12th St, New York City, NY 10001" +262631,AA Batteries (4-pack),1,3.84,09/24/19 12:31,"765 Jefferson St, New York City, NY 10001" +262632,Wired Headphones,1,11.99,09/09/19 10:00,"270 7th St, New York City, NY 10001" +262633,USB-C Charging Cable,1,11.95,09/07/19 11:21,"619 Madison St, Seattle, WA 98101" +262634,27in FHD Monitor,1,149.99,09/11/19 20:18,"139 Madison St, Portland, ME 04101" +262635,27in FHD Monitor,1,149.99,09/28/19 12:58,"403 11th St, San Francisco, CA 94016" +262636,AA Batteries (4-pack),1,3.84,09/05/19 19:57,"68 Willow St, Los Angeles, CA 90001" +262637,AA Batteries (4-pack),1,3.84,09/25/19 11:22,"282 Center St, Portland, OR 97035" +262638,Lightning Charging Cable,1,14.95,09/04/19 20:24,"764 Johnson St, Dallas, TX 75001" +262639,Wired Headphones,1,11.99,09/02/19 12:02,"791 9th St, New York City, NY 10001" +262640,Lightning Charging Cable,1,14.95,09/14/19 05:59,"406 Jefferson St, San Francisco, CA 94016" +262641,AA Batteries (4-pack),2,3.84,09/22/19 01:47,"269 Ridge St, San Francisco, CA 94016" +262642,USB-C Charging Cable,1,11.95,09/24/19 13:06,"425 Jackson St, Seattle, WA 98101" +262643,Bose SoundSport Headphones,1,99.99,09/09/19 13:26,"732 6th St, New York City, NY 10001" +262644,AA Batteries (4-pack),1,3.84,09/28/19 11:14,"356 Forest St, Dallas, TX 75001" +262645,AA Batteries (4-pack),1,3.84,09/16/19 11:00,"907 Lincoln St, Los Angeles, CA 90001" +262646,Lightning Charging Cable,1,14.95,09/23/19 16:01,"659 Jackson St, San Francisco, CA 94016" +262647,Apple Airpods Headphones,1,150,09/11/19 13:28,"705 South St, Seattle, WA 98101" +262648,Lightning Charging Cable,1,14.95,09/03/19 22:39,"871 4th St, Los Angeles, CA 90001" +262649,iPhone,1,700,09/01/19 20:35,"863 Johnson St, Austin, TX 73301" +262650,AA Batteries (4-pack),1,3.84,09/07/19 18:36,"642 Dogwood St, Portland, OR 97035" +262651,AAA Batteries (4-pack),2,2.99,09/11/19 20:13,"477 7th St, San Francisco, CA 94016" +262652,AAA Batteries (4-pack),1,2.99,09/09/19 12:52,"522 Church St, Austin, TX 73301" +262653,AA Batteries (4-pack),1,3.84,09/28/19 18:04,"217 River St, Portland, OR 97035" +262654,Flatscreen TV,1,300,09/04/19 18:56,"90 North St, Dallas, TX 75001" +262655,Wired Headphones,2,11.99,09/04/19 11:06,"317 Adams St, San Francisco, CA 94016" +262656,Apple Airpods Headphones,1,150,09/21/19 13:37,"212 North St, San Francisco, CA 94016" +262657,Google Phone,1,600,09/09/19 10:06,"490 Ridge St, Seattle, WA 98101" +262657,Wired Headphones,1,11.99,09/09/19 10:06,"490 Ridge St, Seattle, WA 98101" +262658,Apple Airpods Headphones,1,150,09/24/19 15:02,"720 1st St, New York City, NY 10001" +262659,AAA Batteries (4-pack),1,2.99,09/04/19 08:52,"7 Wilson St, Dallas, TX 75001" +262660,27in FHD Monitor,1,149.99,09/11/19 12:07,"914 South St, Dallas, TX 75001" +262661,AAA Batteries (4-pack),1,2.99,09/28/19 20:03,"414 Spruce St, Los Angeles, CA 90001" +262662,34in Ultrawide Monitor,1,379.99,09/03/19 13:51,"709 West St, Seattle, WA 98101" +262663,34in Ultrawide Monitor,1,379.99,09/28/19 12:35,"401 North St, New York City, NY 10001" +262664,Lightning Charging Cable,1,14.95,09/20/19 20:16,"863 Church St, Portland, OR 97035" +262665,iPhone,1,700,09/08/19 17:17,"63 14th St, Atlanta, GA 30301" +262666,Wired Headphones,1,11.99,09/21/19 19:18,"188 Main St, Dallas, TX 75001" +262667,Vareebadd Phone,1,400,09/14/19 20:26,"506 Center St, Dallas, TX 75001" +262668,AA Batteries (4-pack),4,3.84,09/30/19 09:41,"486 Forest St, New York City, NY 10001" +262669,AAA Batteries (4-pack),3,2.99,09/27/19 11:20,"264 1st St, Seattle, WA 98101" +262670,Google Phone,1,600,09/27/19 10:39,"661 Pine St, San Francisco, CA 94016" +262671,iPhone,1,700,09/13/19 16:07,"644 6th St, Dallas, TX 75001" +262671,Lightning Charging Cable,1,14.95,09/13/19 16:07,"644 6th St, Dallas, TX 75001" +262672,AA Batteries (4-pack),2,3.84,09/03/19 16:03,"884 Jefferson St, Los Angeles, CA 90001" +262673,Google Phone,1,600,09/06/19 21:56,"880 Meadow St, Boston, MA 02215" +262673,Wired Headphones,1,11.99,09/06/19 21:56,"880 Meadow St, Boston, MA 02215" +262674,AAA Batteries (4-pack),3,2.99,09/16/19 20:02,"504 Chestnut St, Los Angeles, CA 90001" +262675,20in Monitor,1,109.99,09/28/19 12:15,"720 West St, San Francisco, CA 94016" +262676,Apple Airpods Headphones,1,150,09/19/19 18:18,"357 Madison St, Atlanta, GA 30301" +262677,Bose SoundSport Headphones,1,99.99,09/12/19 00:16,"661 Jackson St, San Francisco, CA 94016" +262678,USB-C Charging Cable,1,11.95,09/03/19 08:18,"970 Washington St, Seattle, WA 98101" +262679,Wired Headphones,1,11.99,09/29/19 11:03,"322 Cherry St, San Francisco, CA 94016" +262680,USB-C Charging Cable,1,11.95,09/02/19 19:24,"960 Wilson St, Los Angeles, CA 90001" +262681,Wired Headphones,1,11.99,09/05/19 05:00,"790 4th St, Dallas, TX 75001" +262682,Lightning Charging Cable,1,14.95,09/28/19 08:30,"281 Main St, New York City, NY 10001" +262683,Flatscreen TV,1,300,09/23/19 01:34,"671 West St, San Francisco, CA 94016" +262684,USB-C Charging Cable,1,11.95,09/22/19 08:42,"856 Chestnut St, Los Angeles, CA 90001" +262685,USB-C Charging Cable,1,11.95,09/19/19 12:20,"914 Park St, Seattle, WA 98101" +262686,Apple Airpods Headphones,1,150,09/05/19 23:23,"707 Spruce St, Boston, MA 02215" +262687,Wired Headphones,1,11.99,09/04/19 21:08,"288 5th St, Austin, TX 73301" +262688,Wired Headphones,1,11.99,09/11/19 21:31,"498 Spruce St, San Francisco, CA 94016" +262689,20in Monitor,1,109.99,09/21/19 06:46,"727 North St, Boston, MA 02215" +262690,34in Ultrawide Monitor,1,379.99,09/17/19 09:37,"775 10th St, Los Angeles, CA 90001" +262691,ThinkPad Laptop,1,999.99,09/04/19 16:15,"49 Highland St, Los Angeles, CA 90001" +262692,Wired Headphones,1,11.99,09/19/19 14:06,"47 Meadow St, Los Angeles, CA 90001" +262693,27in 4K Gaming Monitor,1,389.99,09/17/19 10:34,"958 Ridge St, Dallas, TX 75001" +262694,AA Batteries (4-pack),1,3.84,09/09/19 20:07,"153 Dogwood St, Los Angeles, CA 90001" +262695,iPhone,1,700,09/02/19 07:37,"991 5th St, Portland, OR 97035" +262695,Lightning Charging Cable,1,14.95,09/02/19 07:37,"991 5th St, Portland, OR 97035" +262696,Wired Headphones,1,11.99,09/09/19 18:07,"249 North St, San Francisco, CA 94016" +262697,Apple Airpods Headphones,1,150,09/27/19 17:17,"4 Cedar St, San Francisco, CA 94016" +262698,Apple Airpods Headphones,1,150,09/19/19 15:19,"676 River St, Seattle, WA 98101" +262699,AAA Batteries (4-pack),1,2.99,09/06/19 21:40,"984 11th St, Boston, MA 02215" +262700,Google Phone,1,600,09/11/19 11:53,"485 Jackson St, Los Angeles, CA 90001" +262701,Lightning Charging Cable,1,14.95,09/04/19 12:43,"149 Lincoln St, New York City, NY 10001" +262702,ThinkPad Laptop,1,999.99,09/22/19 08:55,"54 Forest St, Portland, OR 97035" +262703,AAA Batteries (4-pack),1,2.99,09/03/19 19:54,"830 13th St, Dallas, TX 75001" +262704,34in Ultrawide Monitor,1,379.99,09/11/19 10:58,"240 Cedar St, Atlanta, GA 30301" +262705,AA Batteries (4-pack),1,3.84,09/28/19 20:15,"462 River St, Austin, TX 73301" +262706,ThinkPad Laptop,1,999.99,09/17/19 10:05,"892 Hickory St, San Francisco, CA 94016" +262707,Macbook Pro Laptop,1,1700,09/02/19 22:34,"935 Lake St, Boston, MA 02215" +262708,AAA Batteries (4-pack),1,2.99,09/16/19 17:40,"680 11th St, San Francisco, CA 94016" +262709,iPhone,1,700,09/24/19 11:46,"119 Hickory St, San Francisco, CA 94016" +262710,USB-C Charging Cable,1,11.95,09/07/19 20:09,"731 Johnson St, Austin, TX 73301" +262711,Apple Airpods Headphones,1,150,09/01/19 20:41,"137 Adams St, Dallas, TX 75001" +262712,AA Batteries (4-pack),2,3.84,09/21/19 07:33,"451 4th St, Boston, MA 02215" +262713,AA Batteries (4-pack),1,3.84,09/19/19 13:42,"873 Madison St, Los Angeles, CA 90001" +262714,AA Batteries (4-pack),4,3.84,09/22/19 09:05,"679 Cherry St, San Francisco, CA 94016" +262715,Lightning Charging Cable,1,14.95,09/20/19 12:35,"28 Lincoln St, Dallas, TX 75001" +262716,Bose SoundSport Headphones,1,99.99,09/09/19 10:58,"151 2nd St, Austin, TX 73301" +262717,USB-C Charging Cable,1,11.95,09/30/19 17:21,"120 Elm St, San Francisco, CA 94016" +262718,AAA Batteries (4-pack),1,2.99,09/04/19 23:35,"67 Maple St, New York City, NY 10001" +262719,27in FHD Monitor,1,149.99,09/15/19 12:51,"786 Highland St, New York City, NY 10001" +262720,AAA Batteries (4-pack),1,2.99,09/16/19 14:00,"964 Dogwood St, San Francisco, CA 94016" +262721,iPhone,1,700,09/26/19 22:51,"374 South St, Los Angeles, CA 90001" +262722,Wired Headphones,1,11.99,09/28/19 09:53,"473 Sunset St, San Francisco, CA 94016" +262723,AA Batteries (4-pack),1,3.84,09/11/19 14:44,"769 Wilson St, Austin, TX 73301" +262724,iPhone,1,700,09/08/19 18:02,"428 North St, San Francisco, CA 94016" +262725,27in FHD Monitor,1,149.99,09/05/19 20:03,"906 South St, Seattle, WA 98101" +262726,Lightning Charging Cable,1,14.95,09/09/19 16:32,"17 Johnson St, San Francisco, CA 94016" +262727,LG Washing Machine,1,600.0,09/10/19 13:41,"972 Johnson St, San Francisco, CA 94016" +262728,USB-C Charging Cable,1,11.95,09/30/19 14:23,"346 Hickory St, New York City, NY 10001" +262729,Lightning Charging Cable,2,14.95,09/28/19 13:24,"683 1st St, San Francisco, CA 94016" +262730,34in Ultrawide Monitor,1,379.99,09/04/19 20:49,"584 Washington St, New York City, NY 10001" +262731,AA Batteries (4-pack),1,3.84,09/10/19 20:32,"877 Lincoln St, Portland, OR 97035" +262732,Macbook Pro Laptop,1,1700,09/17/19 00:22,"847 Lake St, Dallas, TX 75001" +262733,USB-C Charging Cable,1,11.95,09/25/19 16:04,"944 Cedar St, Atlanta, GA 30301" +262734,AAA Batteries (4-pack),3,2.99,09/08/19 04:14,"453 Sunset St, San Francisco, CA 94016" +262735,Lightning Charging Cable,1,14.95,09/02/19 00:00,"908 5th St, San Francisco, CA 94016" +262736,Google Phone,1,600,09/20/19 10:07,"640 Sunset St, Seattle, WA 98101" +262737,LG Dryer,1,600.0,09/14/19 12:07,"770 5th St, San Francisco, CA 94016" +262738,Wired Headphones,1,11.99,09/09/19 15:09,"181 Hill St, Los Angeles, CA 90001" +262739,27in 4K Gaming Monitor,1,389.99,09/03/19 18:00,"316 Washington St, Seattle, WA 98101" +262740,AAA Batteries (4-pack),1,2.99,09/20/19 20:25,"189 West St, San Francisco, CA 94016" +262741,AA Batteries (4-pack),1,3.84,09/21/19 11:59,"800 River St, Seattle, WA 98101" +262742,AA Batteries (4-pack),1,3.84,09/27/19 21:13,"902 13th St, Boston, MA 02215" +262743,34in Ultrawide Monitor,1,379.99,09/30/19 20:10,"310 River St, Seattle, WA 98101" +262744,AAA Batteries (4-pack),2,2.99,09/11/19 08:41,"318 Willow St, San Francisco, CA 94016" +262745,Lightning Charging Cable,1,14.95,09/24/19 10:14,"280 Pine St, Los Angeles, CA 90001" +262746,ThinkPad Laptop,1,999.99,09/20/19 15:57,"371 Johnson St, San Francisco, CA 94016" +262747,AA Batteries (4-pack),1,3.84,09/10/19 12:38,"493 Main St, San Francisco, CA 94016" +262748,27in FHD Monitor,1,149.99,09/24/19 15:12,"222 1st St, Boston, MA 02215" +262749,Wired Headphones,1,11.99,09/08/19 20:01,"336 Lincoln St, San Francisco, CA 94016" +262750,USB-C Charging Cable,1,11.95,09/28/19 13:30,"284 Forest St, Dallas, TX 75001" +262751,27in FHD Monitor,1,149.99,09/05/19 23:13,"16 Walnut St, New York City, NY 10001" +262752,AA Batteries (4-pack),1,3.84,09/24/19 14:01,"655 Maple St, New York City, NY 10001" +262752,USB-C Charging Cable,1,11.95,09/24/19 14:01,"655 Maple St, New York City, NY 10001" +262753,Flatscreen TV,1,300,09/23/19 15:20,"118 Hickory St, San Francisco, CA 94016" +262754,USB-C Charging Cable,1,11.95,09/19/19 12:05,"98 Pine St, Atlanta, GA 30301" +262755,AA Batteries (4-pack),1,3.84,09/04/19 10:01,"412 Cedar St, Boston, MA 02215" +262756,Apple Airpods Headphones,1,150,09/10/19 06:48,"973 West St, Los Angeles, CA 90001" +262757,Lightning Charging Cable,1,14.95,09/21/19 00:32,"116 South St, New York City, NY 10001" +262758,27in FHD Monitor,1,149.99,09/23/19 23:57,"259 4th St, Austin, TX 73301" +262759,AA Batteries (4-pack),5,3.84,09/30/19 10:28,"704 Maple St, Dallas, TX 75001" +262760,Macbook Pro Laptop,1,1700,09/26/19 11:16,"227 8th St, Los Angeles, CA 90001" +262761,34in Ultrawide Monitor,1,379.99,09/18/19 17:21,"514 West St, Portland, ME 04101" +262762,AA Batteries (4-pack),1,3.84,09/26/19 15:06,"69 Center St, New York City, NY 10001" +262762,USB-C Charging Cable,1,11.95,09/26/19 15:06,"69 Center St, New York City, NY 10001" +262763,Apple Airpods Headphones,1,150,09/01/19 14:43,"432 Center St, Los Angeles, CA 90001" +262764,ThinkPad Laptop,1,999.99,09/13/19 07:51,"408 Dogwood St, Los Angeles, CA 90001" +262765,USB-C Charging Cable,1,11.95,09/25/19 20:15,"111 Forest St, San Francisco, CA 94016" +262766,Bose SoundSport Headphones,1,99.99,09/18/19 12:09,"375 7th St, New York City, NY 10001" +262767,AAA Batteries (4-pack),1,2.99,09/28/19 12:27,"708 10th St, San Francisco, CA 94016" +262768,Lightning Charging Cable,1,14.95,09/05/19 04:31,"419 Lake St, New York City, NY 10001" +262768,AAA Batteries (4-pack),1,2.99,09/05/19 04:31,"419 Lake St, New York City, NY 10001" +262769,Bose SoundSport Headphones,1,99.99,09/20/19 16:59,"563 Park St, Los Angeles, CA 90001" +262770,Bose SoundSport Headphones,1,99.99,09/10/19 01:03,"39 Elm St, Seattle, WA 98101" +262771,AA Batteries (4-pack),3,3.84,09/30/19 01:11,"858 Cherry St, New York City, NY 10001" +262772,USB-C Charging Cable,1,11.95,09/08/19 18:12,"824 6th St, Austin, TX 73301" +262773,iPhone,1,700,09/25/19 01:21,"798 Church St, San Francisco, CA 94016" +262774,Wired Headphones,1,11.99,09/09/19 16:10,"70 11th St, Los Angeles, CA 90001" +262775,27in FHD Monitor,1,149.99,09/17/19 20:29,"254 Park St, Atlanta, GA 30301" +262776,iPhone,1,700,09/10/19 01:52,"204 Chestnut St, New York City, NY 10001" +262776,Lightning Charging Cable,1,14.95,09/10/19 01:52,"204 Chestnut St, New York City, NY 10001" +262777,20in Monitor,1,109.99,09/03/19 15:53,"513 Madison St, San Francisco, CA 94016" +262778,iPhone,1,700,09/14/19 10:36,"590 Washington St, San Francisco, CA 94016" +262778,Lightning Charging Cable,1,14.95,09/14/19 10:36,"590 Washington St, San Francisco, CA 94016" +262779,Wired Headphones,1,11.99,09/06/19 19:59,"119 Elm St, San Francisco, CA 94016" +262780,AA Batteries (4-pack),1,3.84,09/24/19 09:15,"703 Church St, San Francisco, CA 94016" +262781,USB-C Charging Cable,1,11.95,09/03/19 19:45,"642 Adams St, San Francisco, CA 94016" +262782,Wired Headphones,1,11.99,09/13/19 13:40,"883 2nd St, San Francisco, CA 94016" +262783,iPhone,1,700,09/29/19 03:11,"169 6th St, San Francisco, CA 94016" +262784,Wired Headphones,1,11.99,09/23/19 16:18,"91 Wilson St, Austin, TX 73301" +262785,Apple Airpods Headphones,1,150,09/26/19 12:05,"49 Main St, Austin, TX 73301" +262786,AAA Batteries (4-pack),1,2.99,09/24/19 20:58,"293 6th St, San Francisco, CA 94016" +262787,Apple Airpods Headphones,1,150,09/22/19 18:43,"941 Main St, San Francisco, CA 94016" +262787,Lightning Charging Cable,1,14.95,09/22/19 18:43,"941 Main St, San Francisco, CA 94016" +262788,20in Monitor,1,109.99,09/24/19 10:52,"847 Jackson St, Boston, MA 02215" +262789,Apple Airpods Headphones,1,150,09/05/19 06:50,"245 Madison St, Dallas, TX 75001" +262790,ThinkPad Laptop,1,999.99,09/11/19 11:30,"962 Pine St, New York City, NY 10001" +262791,Wired Headphones,1,11.99,09/16/19 14:18,"855 Washington St, Dallas, TX 75001" +262792,AA Batteries (4-pack),1,3.84,09/01/19 10:30,"174 Cedar St, Los Angeles, CA 90001" +262793,20in Monitor,1,109.99,09/23/19 16:59,"182 River St, Los Angeles, CA 90001" +262794,AA Batteries (4-pack),1,3.84,09/05/19 11:20,"69 12th St, Austin, TX 73301" +262795,Apple Airpods Headphones,1,150,09/26/19 21:48,"30 Park St, Dallas, TX 75001" +262796,AAA Batteries (4-pack),1,2.99,09/27/19 22:41,"752 Forest St, Atlanta, GA 30301" +262797,Apple Airpods Headphones,1,150,09/30/19 21:21,"861 10th St, New York City, NY 10001" +262798,Apple Airpods Headphones,1,150,09/29/19 08:46,"179 Center St, San Francisco, CA 94016" +262799,34in Ultrawide Monitor,1,379.99,09/20/19 13:05,"506 River St, Austin, TX 73301" +262800,34in Ultrawide Monitor,1,379.99,09/02/19 16:08,"295 6th St, Atlanta, GA 30301" +262801,34in Ultrawide Monitor,1,379.99,09/22/19 13:46,"167 Hill St, Austin, TX 73301" +262802,AAA Batteries (4-pack),2,2.99,09/17/19 16:12,"261 Meadow St, San Francisco, CA 94016" +262803,AAA Batteries (4-pack),1,2.99,09/09/19 22:25,"520 Church St, Atlanta, GA 30301" +262804,Wired Headphones,2,11.99,09/12/19 01:07,"405 1st St, Portland, OR 97035" +262805,Wired Headphones,1,11.99,09/09/19 17:53,"159 14th St, Atlanta, GA 30301" +262806,USB-C Charging Cable,1,11.95,09/16/19 14:50,"531 4th St, Boston, MA 02215" +262807,34in Ultrawide Monitor,1,379.99,09/10/19 12:43,"312 South St, Boston, MA 02215" +262808,27in FHD Monitor,1,149.99,09/03/19 15:17,"666 12th St, Atlanta, GA 30301" +262809,20in Monitor,1,109.99,09/10/19 12:04,"357 Jackson St, New York City, NY 10001" +262810,AA Batteries (4-pack),1,3.84,09/17/19 18:29,"294 South St, Dallas, TX 75001" +262811,AA Batteries (4-pack),1,3.84,09/18/19 16:03,"791 12th St, Seattle, WA 98101" +262812,Apple Airpods Headphones,1,150,09/28/19 18:24,"794 1st St, Austin, TX 73301" +262813,27in 4K Gaming Monitor,1,389.99,09/15/19 19:30,"391 River St, Los Angeles, CA 90001" +262814,Apple Airpods Headphones,1,150,09/01/19 11:49,"307 5th St, Atlanta, GA 30301" +262815,Flatscreen TV,1,300,09/03/19 21:54,"469 7th St, Seattle, WA 98101" +262816,Lightning Charging Cable,1,14.95,09/30/19 17:20,"697 11th St, San Francisco, CA 94016" +262817,20in Monitor,1,109.99,09/03/19 18:23,"700 Church St, Austin, TX 73301" +262818,Google Phone,1,600,09/03/19 13:28,"192 Ridge St, Boston, MA 02215" +262819,Lightning Charging Cable,1,14.95,09/05/19 10:15,"160 Willow St, Los Angeles, CA 90001" +262820,AA Batteries (4-pack),1,3.84,09/06/19 11:03,"983 Main St, New York City, NY 10001" +262821,USB-C Charging Cable,1,11.95,09/17/19 21:45,"68 Cedar St, Boston, MA 02215" +262822,Macbook Pro Laptop,1,1700,09/03/19 06:55,"847 Elm St, Atlanta, GA 30301" +262823,AAA Batteries (4-pack),1,2.99,09/18/19 19:07,"247 Pine St, Atlanta, GA 30301" +262824,34in Ultrawide Monitor,1,379.99,09/03/19 11:48,"410 Main St, San Francisco, CA 94016" +262825,Flatscreen TV,1,300,09/12/19 18:31,"462 Willow St, Boston, MA 02215" +262826,Bose SoundSport Headphones,1,99.99,09/21/19 18:19,"785 7th St, Los Angeles, CA 90001" +262827,Apple Airpods Headphones,1,150,09/07/19 18:04,"143 Meadow St, Atlanta, GA 30301" +262828,27in 4K Gaming Monitor,1,389.99,09/15/19 11:19,"912 Adams St, San Francisco, CA 94016" +262829,AA Batteries (4-pack),1,3.84,09/28/19 10:55,"188 Maple St, Los Angeles, CA 90001" +262830,AA Batteries (4-pack),2,3.84,09/09/19 17:23,"893 Forest St, Austin, TX 73301" +262831,USB-C Charging Cable,1,11.95,09/09/19 13:07,"769 Jefferson St, Boston, MA 02215" +262832,Google Phone,1,600,09/08/19 11:28,"575 12th St, New York City, NY 10001" +262832,USB-C Charging Cable,1,11.95,09/08/19 11:28,"575 12th St, New York City, NY 10001" +262833,AAA Batteries (4-pack),3,2.99,09/10/19 16:41,"347 Cherry St, Austin, TX 73301" +262834,Bose SoundSport Headphones,1,99.99,09/27/19 15:52,"417 Elm St, New York City, NY 10001" +262835,USB-C Charging Cable,1,11.95,09/03/19 12:54,"432 Jefferson St, New York City, NY 10001" +262836,Wired Headphones,1,11.99,09/11/19 04:21,"989 7th St, Seattle, WA 98101" +262837,27in FHD Monitor,1,149.99,09/21/19 18:59,"36 Maple St, San Francisco, CA 94016" +262838,27in 4K Gaming Monitor,1,389.99,09/27/19 23:59,"69 5th St, Seattle, WA 98101" +262839,AA Batteries (4-pack),1,3.84,09/23/19 13:05,"420 Adams St, Austin, TX 73301" +262840,USB-C Charging Cable,1,11.95,09/06/19 13:21,"676 Dogwood St, Portland, OR 97035" +262841,iPhone,1,700,09/21/19 12:03,"408 South St, San Francisco, CA 94016" +262841,Lightning Charging Cable,1,14.95,09/21/19 12:03,"408 South St, San Francisco, CA 94016" +262842,Vareebadd Phone,1,400,09/23/19 11:07,"188 2nd St, Dallas, TX 75001" +262843,Lightning Charging Cable,1,14.95,09/01/19 13:56,"165 9th St, Atlanta, GA 30301" +262844,Wired Headphones,1,11.99,09/27/19 16:32,"295 South St, Los Angeles, CA 90001" +262845,AAA Batteries (4-pack),1,2.99,09/10/19 11:35,"480 Main St, San Francisco, CA 94016" +262846,Apple Airpods Headphones,1,150,09/24/19 13:26,"797 2nd St, San Francisco, CA 94016" +262847,AAA Batteries (4-pack),1,2.99,09/14/19 20:49,"529 13th St, Los Angeles, CA 90001" +262848,USB-C Charging Cable,1,11.95,09/09/19 15:32,"248 8th St, Atlanta, GA 30301" +262849,USB-C Charging Cable,1,11.95,09/22/19 18:21,"809 4th St, New York City, NY 10001" +262850,AAA Batteries (4-pack),1,2.99,09/26/19 13:18,"143 Ridge St, Seattle, WA 98101" +262851,AA Batteries (4-pack),1,3.84,09/03/19 17:51,"271 Willow St, San Francisco, CA 94016" +262852,Wired Headphones,1,11.99,09/23/19 01:09,"711 Lake St, Seattle, WA 98101" +262853,Wired Headphones,2,11.99,09/10/19 21:22,"28 Meadow St, Boston, MA 02215" +262854,Bose SoundSport Headphones,1,99.99,09/22/19 19:05,"662 Jackson St, New York City, NY 10001" +262855,Bose SoundSport Headphones,1,99.99,09/10/19 13:12,"520 10th St, Portland, OR 97035" +262856,Macbook Pro Laptop,1,1700,09/18/19 02:07,"76 Highland St, Seattle, WA 98101" +262857,Bose SoundSport Headphones,1,99.99,09/03/19 18:25,"547 Madison St, Los Angeles, CA 90001" +262858,iPhone,1,700,09/11/19 15:29,"482 Walnut St, San Francisco, CA 94016" +262859,AA Batteries (4-pack),2,3.84,09/15/19 12:40,"363 Forest St, Seattle, WA 98101" +262860,Flatscreen TV,1,300,09/30/19 17:41,"949 River St, San Francisco, CA 94016" +262861,34in Ultrawide Monitor,1,379.99,09/30/19 20:26,"45 4th St, San Francisco, CA 94016" +262862,Lightning Charging Cable,1,14.95,09/27/19 19:53,"291 Lake St, Portland, OR 97035" +262863,27in FHD Monitor,1,149.99,09/29/19 21:11,"307 Wilson St, New York City, NY 10001" +262864,USB-C Charging Cable,1,11.95,09/16/19 23:20,"544 Dogwood St, Austin, TX 73301" +262865,Flatscreen TV,1,300,09/12/19 17:18,"833 Johnson St, Portland, ME 04101" +262866,AA Batteries (4-pack),1,3.84,09/24/19 09:34,"535 Lakeview St, New York City, NY 10001" +262867,Apple Airpods Headphones,1,150,09/14/19 04:51,"958 Dogwood St, Dallas, TX 75001" +262868,Vareebadd Phone,1,400,09/06/19 16:11,"395 Spruce St, Portland, OR 97035" +262869,20in Monitor,1,109.99,09/11/19 19:02,"280 Chestnut St, New York City, NY 10001" +262870,USB-C Charging Cable,1,11.95,09/17/19 13:25,"62 8th St, Dallas, TX 75001" +262871,Lightning Charging Cable,1,14.95,09/04/19 14:36,"783 Hickory St, Boston, MA 02215" +262872,USB-C Charging Cable,1,11.95,09/20/19 17:39,"168 Forest St, New York City, NY 10001" +262873,AAA Batteries (4-pack),1,2.99,09/28/19 21:40,"234 Meadow St, Los Angeles, CA 90001" +262874,Macbook Pro Laptop,1,1700,09/15/19 22:19,"17 7th St, San Francisco, CA 94016" +262875,AAA Batteries (4-pack),1,2.99,09/27/19 10:52,"985 Forest St, San Francisco, CA 94016" +262876,AAA Batteries (4-pack),1,2.99,09/17/19 21:55,"90 Elm St, Atlanta, GA 30301" +262877,Google Phone,1,600,09/19/19 17:49,"190 Meadow St, Dallas, TX 75001" +262877,Wired Headphones,1,11.99,09/19/19 17:49,"190 Meadow St, Dallas, TX 75001" +262878,Apple Airpods Headphones,1,150,09/16/19 10:38,"839 Forest St, San Francisco, CA 94016" +262879,AA Batteries (4-pack),2,3.84,09/05/19 21:10,"564 Madison St, Los Angeles, CA 90001" +262880,Lightning Charging Cable,1,14.95,09/03/19 11:37,"427 River St, Boston, MA 02215" +262881,Google Phone,1,600,09/05/19 08:36,"397 Sunset St, Dallas, TX 75001" +262882,Lightning Charging Cable,1,14.95,09/28/19 00:09,"77 West St, Portland, OR 97035" +262883,Macbook Pro Laptop,1,1700,09/28/19 14:50,"791 Jefferson St, Boston, MA 02215" +262884,Apple Airpods Headphones,1,150,09/27/19 22:14,"257 Ridge St, San Francisco, CA 94016" +262885,Lightning Charging Cable,1,14.95,09/12/19 15:24,"615 Forest St, Portland, OR 97035" +262886,iPhone,1,700,09/12/19 13:14,"53 Jefferson St, Atlanta, GA 30301" +262886,Apple Airpods Headphones,1,150,09/12/19 13:14,"53 Jefferson St, Atlanta, GA 30301" +262887,Flatscreen TV,1,300,09/18/19 19:26,"638 10th St, Seattle, WA 98101" +262888,AAA Batteries (4-pack),2,2.99,09/04/19 11:29,"54 Hickory St, Los Angeles, CA 90001" +262889,iPhone,1,700,09/22/19 11:50,"216 Center St, Los Angeles, CA 90001" +262890,Lightning Charging Cable,1,14.95,09/10/19 17:48,"556 Highland St, Portland, OR 97035" +262891,Lightning Charging Cable,1,14.95,09/23/19 02:13,"105 Main St, San Francisco, CA 94016" +262892,Bose SoundSport Headphones,1,99.99,09/08/19 18:29,"507 River St, New York City, NY 10001" +262893,Lightning Charging Cable,1,14.95,09/01/19 13:04,"37 Center St, New York City, NY 10001" +262894,Vareebadd Phone,1,400,09/21/19 07:54,"515 Jackson St, San Francisco, CA 94016" +262895,ThinkPad Laptop,1,999.99,09/20/19 02:00,"518 West St, San Francisco, CA 94016" +262896,Lightning Charging Cable,2,14.95,09/18/19 18:33,"126 Elm St, Seattle, WA 98101" +262897,Wired Headphones,1,11.99,09/14/19 19:42,"603 Johnson St, New York City, NY 10001" +262898,Lightning Charging Cable,1,14.95,09/02/19 09:19,"273 9th St, Portland, OR 97035" +262899,Bose SoundSport Headphones,1,99.99,09/11/19 00:52,"250 West St, San Francisco, CA 94016" +262900,Wired Headphones,1,11.99,09/04/19 20:40,"698 5th St, Los Angeles, CA 90001" +262901,iPhone,1,700,09/05/19 20:36,"288 Wilson St, Boston, MA 02215" +262902,20in Monitor,1,109.99,09/23/19 01:55,"756 Forest St, Boston, MA 02215" +262903,Apple Airpods Headphones,1,150,09/26/19 16:55,"671 6th St, Los Angeles, CA 90001" +262904,AA Batteries (4-pack),1,3.84,09/27/19 14:15,"483 Meadow St, New York City, NY 10001" +262905,Wired Headphones,1,11.99,09/04/19 12:31,"302 14th St, Los Angeles, CA 90001" +262906,USB-C Charging Cable,1,11.95,09/07/19 09:21,"246 12th St, New York City, NY 10001" +262907,Lightning Charging Cable,1,14.95,09/16/19 13:22,"50 Washington St, Seattle, WA 98101" +262908,AA Batteries (4-pack),1,3.84,09/29/19 21:08,"446 2nd St, Seattle, WA 98101" +262909,Bose SoundSport Headphones,1,99.99,09/30/19 17:02,"972 Hickory St, New York City, NY 10001" +262910,Lightning Charging Cable,1,14.95,09/11/19 12:32,"206 Center St, Portland, OR 97035" +262911,Wired Headphones,1,11.99,09/05/19 12:18,"113 Willow St, Dallas, TX 75001" +262912,USB-C Charging Cable,1,11.95,09/09/19 11:21,"697 Elm St, Los Angeles, CA 90001" +262913,27in FHD Monitor,1,149.99,09/22/19 14:10,"487 4th St, Los Angeles, CA 90001" +262914,Lightning Charging Cable,1,14.95,09/21/19 20:16,"931 Highland St, Seattle, WA 98101" +262915,Apple Airpods Headphones,1,150,09/16/19 06:06,"99 Hill St, Boston, MA 02215" +262916,Wired Headphones,1,11.99,09/07/19 16:46,"520 Jefferson St, Los Angeles, CA 90001" +262917,AAA Batteries (4-pack),2,2.99,09/03/19 12:38,"811 11th St, San Francisco, CA 94016" +262918,Flatscreen TV,1,300,09/23/19 19:48,"761 Meadow St, Boston, MA 02215" +262919,AAA Batteries (4-pack),1,2.99,09/01/19 23:43,"571 Lakeview St, Seattle, WA 98101" +262920,AAA Batteries (4-pack),1,2.99,09/28/19 10:47,"800 Main St, San Francisco, CA 94016" +262921,Google Phone,1,600,09/08/19 21:47,"568 Adams St, Dallas, TX 75001" +262922,27in FHD Monitor,1,149.99,09/19/19 11:21,"442 6th St, Seattle, WA 98101" +262923,Lightning Charging Cable,1,14.95,09/28/19 20:52,"919 North St, San Francisco, CA 94016" +262924,AA Batteries (4-pack),2,3.84,09/14/19 09:32,"944 Maple St, Portland, OR 97035" +262925,USB-C Charging Cable,1,11.95,09/09/19 06:37,"365 Willow St, Atlanta, GA 30301" +262926,AAA Batteries (4-pack),1,2.99,09/24/19 21:59,"431 Walnut St, Dallas, TX 75001" +262927,Lightning Charging Cable,1,14.95,09/27/19 11:56,"322 Washington St, Portland, OR 97035" +262928,Bose SoundSport Headphones,1,99.99,09/20/19 12:11,"445 Pine St, Boston, MA 02215" +262929,34in Ultrawide Monitor,1,379.99,09/03/19 19:54,"407 Sunset St, New York City, NY 10001" +262930,Lightning Charging Cable,1,14.95,09/04/19 13:19,"610 5th St, Los Angeles, CA 90001" +262931,AA Batteries (4-pack),1,3.84,09/27/19 21:21,"979 Madison St, Boston, MA 02215" +262932,Apple Airpods Headphones,1,150,09/24/19 13:00,"726 Elm St, Portland, ME 04101" +262933,Flatscreen TV,1,300,09/29/19 16:45,"574 Jefferson St, Austin, TX 73301" +262934,Apple Airpods Headphones,1,150,09/04/19 13:34,"596 14th St, Seattle, WA 98101" +262935,Bose SoundSport Headphones,1,99.99,09/15/19 21:46,"601 Church St, Dallas, TX 75001" +262936,USB-C Charging Cable,1,11.95,09/08/19 17:41,"691 Cherry St, New York City, NY 10001" +262937,AA Batteries (4-pack),1,3.84,09/01/19 20:17,"337 Adams St, Atlanta, GA 30301" +262938,AA Batteries (4-pack),1,3.84,09/12/19 12:25,"468 7th St, New York City, NY 10001" +262939,Google Phone,1,600,09/26/19 21:01,"119 Church St, San Francisco, CA 94016" +262940,Lightning Charging Cable,1,14.95,09/14/19 17:58,"911 Park St, Portland, ME 04101" +262941,Lightning Charging Cable,1,14.95,09/13/19 14:58,"254 9th St, San Francisco, CA 94016" +262942,LG Washing Machine,1,600.0,09/06/19 15:50,"617 Ridge St, New York City, NY 10001" +262943,Wired Headphones,1,11.99,09/20/19 19:08,"512 North St, Los Angeles, CA 90001" +262944,Apple Airpods Headphones,1,150,09/24/19 13:13,"965 Meadow St, Dallas, TX 75001" +262945,Lightning Charging Cable,1,14.95,09/23/19 20:33,"910 Sunset St, Los Angeles, CA 90001" +262946,USB-C Charging Cable,1,11.95,09/24/19 11:51,"279 Chestnut St, San Francisco, CA 94016" +262947,AA Batteries (4-pack),3,3.84,09/25/19 00:22,"824 13th St, Seattle, WA 98101" +262948,27in FHD Monitor,1,149.99,09/16/19 07:52,"902 13th St, New York City, NY 10001" +262949,Bose SoundSport Headphones,1,99.99,09/02/19 19:27,"424 Maple St, Dallas, TX 75001" +262950,34in Ultrawide Monitor,1,379.99,09/02/19 18:22,"931 Ridge St, Dallas, TX 75001" +262951,AA Batteries (4-pack),1,3.84,09/24/19 15:10,"317 Cherry St, New York City, NY 10001" +262952,Apple Airpods Headphones,1,150,09/12/19 14:45,"662 Park St, Seattle, WA 98101" +262953,34in Ultrawide Monitor,1,379.99,09/24/19 22:03,"39 Jackson St, San Francisco, CA 94016" +262954,Apple Airpods Headphones,1,150,09/08/19 21:25,"609 Wilson St, Dallas, TX 75001" +262955,20in Monitor,2,109.99,09/27/19 14:10,"96 Wilson St, Seattle, WA 98101" +262956,20in Monitor,1,109.99,09/17/19 22:13,"764 Park St, Dallas, TX 75001" +262957,AAA Batteries (4-pack),1,2.99,09/24/19 10:18,"553 Cedar St, Austin, TX 73301" +262958,Apple Airpods Headphones,1,150,09/09/19 10:57,"6 Jackson St, New York City, NY 10001" +262959,Apple Airpods Headphones,1,150,09/01/19 15:42,"179 Elm St, Dallas, TX 75001" +262960,USB-C Charging Cable,1,11.95,09/09/19 01:25,"280 Lake St, New York City, NY 10001" +262961,Apple Airpods Headphones,1,150,09/26/19 00:48,"273 Forest St, Atlanta, GA 30301" +262962,27in FHD Monitor,1,149.99,09/01/19 14:14,"81 Sunset St, San Francisco, CA 94016" +262963,Lightning Charging Cable,1,14.95,09/11/19 16:10,"978 Meadow St, Dallas, TX 75001" +262964,Apple Airpods Headphones,1,150,09/15/19 20:19,"585 Ridge St, San Francisco, CA 94016" +262965,USB-C Charging Cable,1,11.95,09/13/19 08:56,"872 Jackson St, New York City, NY 10001" +262966,27in FHD Monitor,1,149.99,09/24/19 13:35,"620 Park St, San Francisco, CA 94016" +262967,Bose SoundSport Headphones,1,99.99,09/28/19 11:25,"537 10th St, New York City, NY 10001" +262968,USB-C Charging Cable,1,11.95,09/18/19 11:35,"339 Meadow St, New York City, NY 10001" +262969,Google Phone,1,600,09/26/19 17:11,"231 Madison St, Atlanta, GA 30301" +262970,USB-C Charging Cable,1,11.95,09/21/19 13:38,"122 South St, New York City, NY 10001" +262971,USB-C Charging Cable,1,11.95,09/25/19 22:06,"60 Lake St, New York City, NY 10001" +262972,Bose SoundSport Headphones,1,99.99,09/06/19 05:03,"639 9th St, Portland, OR 97035" +262973,27in FHD Monitor,1,149.99,09/22/19 11:24,"90 River St, Austin, TX 73301" +262974,USB-C Charging Cable,1,11.95,09/11/19 20:18,"298 Ridge St, San Francisco, CA 94016" +262975,Apple Airpods Headphones,1,150,09/11/19 23:38,"326 7th St, Portland, ME 04101" +262976,20in Monitor,1,109.99,09/01/19 12:49,"799 11th St, Boston, MA 02215" +262977,Google Phone,1,600,09/30/19 18:13,"382 Washington St, Los Angeles, CA 90001" +262978,27in 4K Gaming Monitor,1,389.99,09/07/19 21:47,"822 North St, Dallas, TX 75001" +262979,USB-C Charging Cable,1,11.95,09/05/19 11:53,"729 Elm St, Dallas, TX 75001" +262980,AA Batteries (4-pack),1,3.84,09/03/19 21:23,"432 Cherry St, Dallas, TX 75001" +262981,34in Ultrawide Monitor,1,379.99,09/16/19 17:25,"636 Ridge St, Los Angeles, CA 90001" +262982,34in Ultrawide Monitor,1,379.99,09/10/19 13:39,"921 Pine St, Boston, MA 02215" +262983,iPhone,1,700,09/05/19 17:48,"666 Meadow St, Boston, MA 02215" +262984,AA Batteries (4-pack),1,3.84,09/15/19 12:15,"523 9th St, Los Angeles, CA 90001" +262985,Bose SoundSport Headphones,1,99.99,09/10/19 00:49,"843 9th St, Austin, TX 73301" +262986,20in Monitor,1,109.99,09/26/19 10:43,"884 Center St, Los Angeles, CA 90001" +262987,Lightning Charging Cable,1,14.95,09/09/19 10:42,"545 Church St, Los Angeles, CA 90001" +262988,27in FHD Monitor,1,149.99,09/24/19 09:49,"262 South St, Boston, MA 02215" +262989,AAA Batteries (4-pack),1,2.99,09/13/19 18:30,"269 Jackson St, Austin, TX 73301" +262990,Bose SoundSport Headphones,1,99.99,09/08/19 09:31,"90 Adams St, San Francisco, CA 94016" +262991,AAA Batteries (4-pack),1,2.99,09/30/19 09:56,"231 Cherry St, Los Angeles, CA 90001" +262992,USB-C Charging Cable,1,11.95,09/17/19 12:46,"33 Meadow St, New York City, NY 10001" +262993,27in FHD Monitor,1,149.99,09/16/19 16:10,"393 South St, San Francisco, CA 94016" +262994,Apple Airpods Headphones,1,150,09/03/19 16:31,"412 5th St, Los Angeles, CA 90001" +262995,iPhone,1,700,09/02/19 13:50,"84 4th St, San Francisco, CA 94016" +262996,AAA Batteries (4-pack),1,2.99,09/05/19 15:10,"869 14th St, Seattle, WA 98101" +262997,Flatscreen TV,1,300,09/01/19 20:14,"914 Sunset St, San Francisco, CA 94016" +262998,AAA Batteries (4-pack),1,2.99,09/28/19 12:36,"8 Hickory St, New York City, NY 10001" +262999,27in 4K Gaming Monitor,1,389.99,09/19/19 22:47,"671 14th St, San Francisco, CA 94016" +263000,Lightning Charging Cable,1,14.95,09/20/19 15:09,"165 Walnut St, San Francisco, CA 94016" +263001,27in 4K Gaming Monitor,1,389.99,09/05/19 16:16,"676 Maple St, New York City, NY 10001" +263002,ThinkPad Laptop,1,999.99,09/01/19 11:30,"235 14th St, New York City, NY 10001" +263002,AA Batteries (4-pack),2,3.84,09/01/19 11:30,"235 14th St, New York City, NY 10001" +263003,27in FHD Monitor,1,149.99,09/21/19 13:31,"652 Chestnut St, Austin, TX 73301" +263004,27in 4K Gaming Monitor,1,389.99,09/11/19 13:29,"894 Main St, Boston, MA 02215" +263005,AAA Batteries (4-pack),1,2.99,09/10/19 10:33,"685 Lakeview St, Portland, OR 97035" +263006,USB-C Charging Cable,1,11.95,09/30/19 14:33,"986 14th St, Austin, TX 73301" +263007,Lightning Charging Cable,1,14.95,09/27/19 13:02,"72 Lake St, New York City, NY 10001" +263008,AAA Batteries (4-pack),1,2.99,09/09/19 02:25,"760 North St, New York City, NY 10001" +263009,Google Phone,1,600,09/11/19 13:04,"208 Center St, Los Angeles, CA 90001" +263010,AA Batteries (4-pack),2,3.84,09/01/19 11:40,"589 7th St, New York City, NY 10001" +263011,USB-C Charging Cable,1,11.95,09/11/19 19:49,"911 Elm St, San Francisco, CA 94016" +263012,iPhone,1,700,09/30/19 15:26,"313 Highland St, New York City, NY 10001" +263012,Lightning Charging Cable,1,14.95,09/30/19 15:26,"313 Highland St, New York City, NY 10001" +263013,AAA Batteries (4-pack),2,2.99,09/08/19 10:26,"347 South St, Los Angeles, CA 90001" +263014,AA Batteries (4-pack),1,3.84,09/13/19 21:13,"783 4th St, Seattle, WA 98101" +263015,AA Batteries (4-pack),1,3.84,09/15/19 12:34,"493 Lake St, Seattle, WA 98101" +263016,USB-C Charging Cable,1,11.95,09/02/19 07:44,"613 Ridge St, San Francisco, CA 94016" +263017,Wired Headphones,1,11.99,09/11/19 08:59,"780 Dogwood St, Dallas, TX 75001" +263018,Bose SoundSport Headphones,1,99.99,09/24/19 11:00,"650 4th St, New York City, NY 10001" +263019,ThinkPad Laptop,1,999.99,09/12/19 10:04,"137 Jackson St, New York City, NY 10001" +263020,USB-C Charging Cable,1,11.95,09/28/19 04:44,"196 Lake St, San Francisco, CA 94016" +263021,Bose SoundSport Headphones,1,99.99,09/22/19 19:50,"703 6th St, Los Angeles, CA 90001" +263022,USB-C Charging Cable,1,11.95,09/07/19 18:57,"443 Highland St, San Francisco, CA 94016" +263023,Lightning Charging Cable,1,14.95,09/30/19 17:23,"108 Lakeview St, Los Angeles, CA 90001" +263024,Flatscreen TV,1,300,09/27/19 14:19,"289 10th St, Los Angeles, CA 90001" +263025,Macbook Pro Laptop,1,1700,09/03/19 09:14,"173 Pine St, Dallas, TX 75001" +263026,27in FHD Monitor,1,149.99,09/24/19 00:13,"438 Pine St, Portland, OR 97035" +263027,Lightning Charging Cable,1,14.95,09/16/19 23:15,"215 Hickory St, San Francisco, CA 94016" +263028,AAA Batteries (4-pack),1,2.99,09/17/19 16:26,"249 Cherry St, Atlanta, GA 30301" +263029,Flatscreen TV,1,300,09/04/19 19:06,"940 Hill St, Dallas, TX 75001" +263030,Bose SoundSport Headphones,1,99.99,09/02/19 16:04,"228 Main St, Dallas, TX 75001" +263031,Wired Headphones,1,11.99,09/13/19 23:55,"572 Cedar St, Portland, OR 97035" +263032,Lightning Charging Cable,1,14.95,09/13/19 16:17,"78 Hill St, Los Angeles, CA 90001" +263033,AAA Batteries (4-pack),5,2.99,09/10/19 15:15,"707 Sunset St, Los Angeles, CA 90001" +,,,,, +263034,Flatscreen TV,1,300,09/10/19 18:10,"177 7th St, Los Angeles, CA 90001" +263035,AA Batteries (4-pack),2,3.84,09/07/19 18:11,"132 West St, San Francisco, CA 94016" +263036,AAA Batteries (4-pack),1,2.99,09/09/19 18:12,"714 Washington St, Boston, MA 02215" +263037,AA Batteries (4-pack),1,3.84,09/12/19 13:51,"352 Madison St, Boston, MA 02215" +263038,Bose SoundSport Headphones,1,99.99,09/14/19 07:33,"463 7th St, Portland, OR 97035" +263039,AA Batteries (4-pack),1,3.84,09/25/19 09:22,"629 River St, Dallas, TX 75001" +263040,Lightning Charging Cable,1,14.95,09/26/19 15:02,"582 North St, Boston, MA 02215" +263041,LG Dryer,1,600.0,09/06/19 14:17,"535 Church St, Portland, OR 97035" +263042,USB-C Charging Cable,1,11.95,09/25/19 08:56,"375 Cherry St, Austin, TX 73301" +263043,AAA Batteries (4-pack),3,2.99,09/01/19 18:26,"957 Lake St, Atlanta, GA 30301" +263044,Lightning Charging Cable,1,14.95,09/19/19 17:27,"537 Chestnut St, San Francisco, CA 94016" +263045,Flatscreen TV,1,300,09/25/19 18:04,"260 Cedar St, Atlanta, GA 30301" +263046,Lightning Charging Cable,1,14.95,09/15/19 11:06,"969 Dogwood St, New York City, NY 10001" +263047,Apple Airpods Headphones,1,150,09/06/19 09:50,"112 1st St, Seattle, WA 98101" +263048,AA Batteries (4-pack),1,3.84,09/21/19 12:26,"448 7th St, Portland, OR 97035" +263049,AAA Batteries (4-pack),1,2.99,09/26/19 11:32,"591 13th St, Austin, TX 73301" +263050,Lightning Charging Cable,1,14.95,09/08/19 22:00,"160 Willow St, Los Angeles, CA 90001" +263051,ThinkPad Laptop,1,999.99,09/24/19 18:58,"27 Johnson St, San Francisco, CA 94016" +263052,27in 4K Gaming Monitor,1,389.99,09/25/19 08:05,"414 Ridge St, Dallas, TX 75001" +263053,AA Batteries (4-pack),3,3.84,09/20/19 20:22,"938 11th St, Los Angeles, CA 90001" +263054,34in Ultrawide Monitor,1,379.99,09/29/19 19:01,"756 Ridge St, Austin, TX 73301" +263055,Wired Headphones,1,11.99,09/11/19 11:09,"171 Hickory St, Los Angeles, CA 90001" +263056,Bose SoundSport Headphones,1,99.99,09/08/19 19:45,"262 Main St, Dallas, TX 75001" +263057,AA Batteries (4-pack),1,3.84,09/13/19 15:30,"345 Forest St, Los Angeles, CA 90001" +263058,Google Phone,1,600,09/30/19 14:49,"315 Elm St, Los Angeles, CA 90001" +263058,Bose SoundSport Headphones,1,99.99,09/30/19 14:49,"315 Elm St, Los Angeles, CA 90001" +263058,Wired Headphones,1,11.99,09/30/19 14:49,"315 Elm St, Los Angeles, CA 90001" +263059,27in FHD Monitor,1,149.99,09/04/19 17:33,"757 Church St, Boston, MA 02215" +263060,AA Batteries (4-pack),1,3.84,09/03/19 18:53,"975 10th St, Seattle, WA 98101" +263061,iPhone,1,700,09/03/19 21:12,"753 Cherry St, Seattle, WA 98101" +263061,Lightning Charging Cable,1,14.95,09/03/19 21:12,"753 Cherry St, Seattle, WA 98101" +263062,Apple Airpods Headphones,1,150,09/08/19 19:14,"547 7th St, Portland, OR 97035" +263063,Wired Headphones,1,11.99,09/07/19 13:59,"316 Pine St, New York City, NY 10001" +263064,Macbook Pro Laptop,1,1700,09/19/19 00:20,"14 Johnson St, Dallas, TX 75001" +263065,Lightning Charging Cable,1,14.95,09/01/19 16:01,"707 8th St, San Francisco, CA 94016" +263066,27in FHD Monitor,1,149.99,09/26/19 10:19,"983 Lincoln St, Los Angeles, CA 90001" +263067,Bose SoundSport Headphones,1,99.99,09/13/19 22:06,"347 Wilson St, Boston, MA 02215" +263068,Bose SoundSport Headphones,1,99.99,09/03/19 14:49,"506 10th St, New York City, NY 10001" +263069,Google Phone,1,600,09/15/19 14:25,"186 8th St, Atlanta, GA 30301" +263069,Wired Headphones,1,11.99,09/15/19 14:25,"186 8th St, Atlanta, GA 30301" +263070,AAA Batteries (4-pack),1,2.99,09/25/19 13:32,"656 Pine St, Los Angeles, CA 90001" +263071,Wired Headphones,1,11.99,09/10/19 18:02,"808 Lake St, San Francisco, CA 94016" +263072,27in 4K Gaming Monitor,1,389.99,09/21/19 12:25,"916 5th St, Los Angeles, CA 90001" +263073,Macbook Pro Laptop,1,1700,09/12/19 19:31,"704 Ridge St, Seattle, WA 98101" +263074,Google Phone,1,600,09/07/19 12:38,"67 10th St, Los Angeles, CA 90001" +263074,USB-C Charging Cable,1,11.95,09/07/19 12:38,"67 10th St, Los Angeles, CA 90001" +263075,AA Batteries (4-pack),2,3.84,09/05/19 12:23,"534 Spruce St, Los Angeles, CA 90001" +263076,LG Washing Machine,1,600.0,09/04/19 10:56,"357 4th St, Portland, ME 04101" +263077,AA Batteries (4-pack),1,3.84,09/14/19 10:33,"977 Wilson St, San Francisco, CA 94016" +263078,34in Ultrawide Monitor,1,379.99,09/14/19 21:47,"428 Spruce St, San Francisco, CA 94016" +263079,Flatscreen TV,1,300,09/07/19 20:01,"862 Johnson St, Los Angeles, CA 90001" +263080,Lightning Charging Cable,1,14.95,09/16/19 10:48,"493 Chestnut St, Boston, MA 02215" +263081,AAA Batteries (4-pack),1,2.99,09/24/19 12:19,"976 13th St, Austin, TX 73301" +263082,AAA Batteries (4-pack),1,2.99,09/29/19 19:30,"221 Jackson St, Los Angeles, CA 90001" +263083,USB-C Charging Cable,1,11.95,09/18/19 08:49,"29 Willow St, San Francisco, CA 94016" +263084,34in Ultrawide Monitor,1,379.99,09/29/19 11:51,"160 13th St, San Francisco, CA 94016" +263085,34in Ultrawide Monitor,1,379.99,09/20/19 16:17,"209 7th St, Atlanta, GA 30301" +263086,USB-C Charging Cable,1,11.95,09/11/19 12:21,"819 Wilson St, Portland, OR 97035" +263087,27in 4K Gaming Monitor,1,389.99,09/14/19 09:45,"477 8th St, Atlanta, GA 30301" +263088,AAA Batteries (4-pack),3,2.99,09/20/19 20:47,"267 Cedar St, New York City, NY 10001" +263089,Wired Headphones,1,11.99,09/21/19 22:00,"756 Highland St, New York City, NY 10001" +263090,27in FHD Monitor,1,149.99,09/04/19 15:27,"59 11th St, Portland, ME 04101" +263091,Apple Airpods Headphones,1,150,09/27/19 01:16,"28 Elm St, Seattle, WA 98101" +263092,Bose SoundSport Headphones,1,99.99,09/15/19 18:53,"822 8th St, Seattle, WA 98101" +263093,Wired Headphones,1,11.99,09/16/19 17:52,"396 Lincoln St, San Francisco, CA 94016" +263094,Apple Airpods Headphones,1,150,09/05/19 13:37,"715 5th St, Boston, MA 02215" +263095,Lightning Charging Cable,1,14.95,09/12/19 17:52,"326 Center St, New York City, NY 10001" +263096,Apple Airpods Headphones,1,150,09/29/19 14:25,"149 Church St, Boston, MA 02215" +263097,AA Batteries (4-pack),1,3.84,09/25/19 17:27,"106 Hill St, New York City, NY 10001" +263098,Wired Headphones,1,11.99,09/27/19 15:03,"134 Chestnut St, Dallas, TX 75001" +263099,AAA Batteries (4-pack),4,2.99,09/15/19 22:59,"84 Dogwood St, Portland, OR 97035" +263100,USB-C Charging Cable,1,11.95,09/22/19 19:47,"831 14th St, Atlanta, GA 30301" +263100,34in Ultrawide Monitor,1,379.99,09/22/19 19:47,"831 14th St, Atlanta, GA 30301" +263101,USB-C Charging Cable,1,11.95,09/03/19 02:57,"122 River St, Dallas, TX 75001" +263102,Apple Airpods Headphones,1,150,09/10/19 14:38,"709 North St, Los Angeles, CA 90001" +263103,20in Monitor,1,109.99,09/20/19 13:54,"404 Madison St, Portland, ME 04101" +263104,Apple Airpods Headphones,1,150,09/05/19 11:18,"836 Sunset St, San Francisco, CA 94016" +263105,Wired Headphones,1,11.99,09/26/19 22:33,"998 Lake St, Dallas, TX 75001" +263106,AA Batteries (4-pack),1,3.84,09/13/19 08:18,"97 Hickory St, Austin, TX 73301" +263107,Lightning Charging Cable,1,14.95,09/27/19 12:43,"801 Sunset St, Los Angeles, CA 90001" +263108,AA Batteries (4-pack),1,3.84,09/01/19 11:19,"488 Lake St, San Francisco, CA 94016" +263109,AAA Batteries (4-pack),3,2.99,09/25/19 20:36,"975 Willow St, Dallas, TX 75001" +263110,Bose SoundSport Headphones,1,99.99,09/16/19 19:38,"849 South St, Los Angeles, CA 90001" +263111,AA Batteries (4-pack),1,3.84,09/08/19 14:59,"779 Sunset St, Atlanta, GA 30301" +263112,20in Monitor,1,109.99,09/25/19 12:19,"386 Main St, Boston, MA 02215" +263113,Wired Headphones,1,11.99,09/09/19 19:31,"222 Cherry St, New York City, NY 10001" +263114,Bose SoundSport Headphones,1,99.99,09/21/19 18:18,"520 Lakeview St, San Francisco, CA 94016" +263115,USB-C Charging Cable,1,11.95,09/26/19 13:18,"332 8th St, Portland, OR 97035" +263116,AA Batteries (4-pack),1,3.84,09/24/19 11:53,"717 10th St, Boston, MA 02215" +263117,AA Batteries (4-pack),1,3.84,09/07/19 12:52,"320 2nd St, Seattle, WA 98101" +263118,34in Ultrawide Monitor,1,379.99,09/14/19 20:19,"607 Forest St, Boston, MA 02215" +263119,Wired Headphones,1,11.99,09/29/19 06:27,"986 Ridge St, Boston, MA 02215" +263120,iPhone,1,700,09/23/19 09:00,"114 Highland St, Boston, MA 02215" +263120,Lightning Charging Cable,1,14.95,09/23/19 09:00,"114 Highland St, Boston, MA 02215" +263121,20in Monitor,1,109.99,09/29/19 17:59,"842 1st St, Los Angeles, CA 90001" +263122,27in FHD Monitor,1,149.99,09/01/19 16:24,"623 West St, Boston, MA 02215" +263123,AA Batteries (4-pack),1,3.84,09/04/19 16:42,"951 South St, Los Angeles, CA 90001" +263124,AAA Batteries (4-pack),1,2.99,09/17/19 20:15,"91 South St, Seattle, WA 98101" +263125,27in 4K Gaming Monitor,1,389.99,09/11/19 10:34,"811 River St, Seattle, WA 98101" +263126,LG Dryer,1,600.0,09/25/19 13:40,"738 Lake St, Atlanta, GA 30301" +263127,Lightning Charging Cable,1,14.95,09/05/19 10:57,"612 River St, Boston, MA 02215" +263128,Bose SoundSport Headphones,1,99.99,09/27/19 05:36,"495 Pine St, Dallas, TX 75001" +263129,AAA Batteries (4-pack),1,2.99,09/29/19 17:34,"936 South St, San Francisco, CA 94016" +263130,USB-C Charging Cable,1,11.95,09/13/19 11:04,"671 Willow St, San Francisco, CA 94016" +263131,Flatscreen TV,1,300,09/26/19 16:59,"665 River St, New York City, NY 10001" +263132,Lightning Charging Cable,1,14.95,09/15/19 22:36,"5 7th St, San Francisco, CA 94016" +263133,AAA Batteries (4-pack),1,2.99,09/21/19 22:01,"925 Johnson St, New York City, NY 10001" +263134,Apple Airpods Headphones,1,150,09/24/19 18:13,"967 Elm St, New York City, NY 10001" +263135,Google Phone,1,600,09/26/19 08:29,"559 Dogwood St, San Francisco, CA 94016" +263136,USB-C Charging Cable,1,11.95,09/27/19 12:01,"10 12th St, Atlanta, GA 30301" +263137,27in FHD Monitor,1,149.99,09/23/19 11:00,"531 Elm St, San Francisco, CA 94016" +263138,AAA Batteries (4-pack),2,2.99,09/14/19 13:01,"788 Johnson St, Boston, MA 02215" +263139,Bose SoundSport Headphones,1,99.99,09/30/19 13:34,"302 Ridge St, San Francisco, CA 94016" +263140,Bose SoundSport Headphones,1,99.99,09/11/19 15:37,"839 Chestnut St, Boston, MA 02215" +263141,Bose SoundSport Headphones,1,99.99,09/18/19 16:48,"201 Willow St, San Francisco, CA 94016" +263142,Bose SoundSport Headphones,1,99.99,09/24/19 12:42,"893 4th St, Los Angeles, CA 90001" +263143,Macbook Pro Laptop,1,1700,09/09/19 13:52,"266 River St, New York City, NY 10001" +263144,Macbook Pro Laptop,1,1700,09/17/19 22:39,"447 Pine St, Austin, TX 73301" +263145,20in Monitor,1,109.99,09/08/19 20:52,"210 Lake St, Atlanta, GA 30301" +263146,Wired Headphones,1,11.99,09/10/19 14:02,"605 Lakeview St, San Francisco, CA 94016" +263147,Lightning Charging Cable,2,14.95,09/04/19 10:15,"550 Elm St, New York City, NY 10001" +263148,Lightning Charging Cable,1,14.95,09/06/19 07:27,"353 Jefferson St, San Francisco, CA 94016" +263149,AAA Batteries (4-pack),1,2.99,09/17/19 22:07,"787 River St, Atlanta, GA 30301" +263150,Apple Airpods Headphones,1,150,09/07/19 18:27,"678 12th St, Boston, MA 02215" +263151,Lightning Charging Cable,1,14.95,09/17/19 15:16,"25 5th St, Atlanta, GA 30301" +263152,27in FHD Monitor,1,149.99,09/29/19 14:56,"20 Highland St, San Francisco, CA 94016" +263153,34in Ultrawide Monitor,1,379.99,09/02/19 16:58,"97 Sunset St, Dallas, TX 75001" +263154,AA Batteries (4-pack),1,3.84,09/27/19 12:36,"286 10th St, New York City, NY 10001" +263155,27in FHD Monitor,1,149.99,09/30/19 18:11,"632 Pine St, Atlanta, GA 30301" +263156,AA Batteries (4-pack),1,3.84,09/23/19 13:01,"901 Johnson St, Seattle, WA 98101" +263157,Wired Headphones,1,11.99,09/09/19 12:05,"998 River St, Austin, TX 73301" +263158,Lightning Charging Cable,1,14.95,09/26/19 00:34,"848 Park St, Los Angeles, CA 90001" +263159,Lightning Charging Cable,1,14.95,09/26/19 18:04,"254 Sunset St, San Francisco, CA 94016" +263160,20in Monitor,1,109.99,09/27/19 03:03,"213 Meadow St, Dallas, TX 75001" +263161,AAA Batteries (4-pack),1,2.99,09/13/19 18:34,"892 Wilson St, Boston, MA 02215" +263162,27in FHD Monitor,1,149.99,09/12/19 18:08,"442 10th St, Los Angeles, CA 90001" +263163,Lightning Charging Cable,1,14.95,09/19/19 13:31,"65 4th St, San Francisco, CA 94016" +263164,AAA Batteries (4-pack),1,2.99,09/02/19 21:30,"534 1st St, Los Angeles, CA 90001" +263165,USB-C Charging Cable,1,11.95,09/29/19 16:17,"1 Madison St, Portland, OR 97035" +263166,27in 4K Gaming Monitor,1,389.99,09/25/19 14:53,"668 Wilson St, Atlanta, GA 30301" +263167,Bose SoundSport Headphones,1,99.99,09/13/19 16:42,"834 Elm St, Portland, OR 97035" +263168,Vareebadd Phone,1,400,09/11/19 11:01,"721 Highland St, Portland, ME 04101" +263169,Bose SoundSport Headphones,1,99.99,09/27/19 22:21,"808 4th St, Dallas, TX 75001" +263170,AA Batteries (4-pack),1,3.84,09/27/19 14:49,"344 Johnson St, Portland, ME 04101" +263171,Wired Headphones,1,11.99,09/27/19 20:19,"225 14th St, Atlanta, GA 30301" +263172,iPhone,1,700,09/04/19 00:32,"623 13th St, Los Angeles, CA 90001" +263173,Lightning Charging Cable,1,14.95,09/10/19 00:49,"608 14th St, San Francisco, CA 94016" +263174,Apple Airpods Headphones,1,150,09/24/19 06:35,"729 Chestnut St, Los Angeles, CA 90001" +263175,AAA Batteries (4-pack),3,2.99,09/03/19 22:14,"113 Main St, Portland, OR 97035" +263176,Lightning Charging Cable,1,14.95,09/02/19 20:13,"569 Jackson St, Atlanta, GA 30301" +263177,Wired Headphones,1,11.99,09/24/19 09:00,"578 South St, Dallas, TX 75001" +263178,AA Batteries (4-pack),1,3.84,09/29/19 22:49,"232 12th St, Seattle, WA 98101" +263179,34in Ultrawide Monitor,1,379.99,09/11/19 17:31,"986 Center St, San Francisco, CA 94016" +263180,iPhone,1,700,09/12/19 15:42,"30 Center St, Portland, OR 97035" +263181,Macbook Pro Laptop,1,1700,09/05/19 14:27,"871 8th St, San Francisco, CA 94016" +263182,27in FHD Monitor,1,149.99,09/23/19 20:26,"204 River St, Portland, OR 97035" +263183,USB-C Charging Cable,1,11.95,09/07/19 21:07,"749 Lincoln St, Atlanta, GA 30301" +263183,Wired Headphones,1,11.99,09/07/19 21:07,"749 Lincoln St, Atlanta, GA 30301" +263184,27in FHD Monitor,1,149.99,09/03/19 08:57,"202 Jefferson St, San Francisco, CA 94016" +263185,27in 4K Gaming Monitor,1,389.99,09/21/19 06:28,"699 Johnson St, Seattle, WA 98101" +263186,Macbook Pro Laptop,1,1700,09/26/19 16:09,"260 Washington St, Los Angeles, CA 90001" +263187,Bose SoundSport Headphones,1,99.99,09/13/19 01:19,"75 Maple St, Los Angeles, CA 90001" +263188,Lightning Charging Cable,1,14.95,09/30/19 19:03,"613 Forest St, Los Angeles, CA 90001" +263189,Apple Airpods Headphones,1,150,09/07/19 20:24,"873 North St, Boston, MA 02215" +263190,iPhone,1,700,09/30/19 16:24,"880 Center St, Dallas, TX 75001" +263190,Lightning Charging Cable,1,14.95,09/30/19 16:24,"880 Center St, Dallas, TX 75001" +263191,27in FHD Monitor,1,149.99,09/03/19 22:30,"560 Hill St, Boston, MA 02215" +263192,Wired Headphones,3,11.99,09/02/19 10:40,"783 Adams St, Atlanta, GA 30301" +263193,Wired Headphones,1,11.99,09/21/19 19:27,"277 Forest St, Boston, MA 02215" +263194,AA Batteries (4-pack),1,3.84,09/03/19 16:07,"387 6th St, San Francisco, CA 94016" +263195,Wired Headphones,1,11.99,09/28/19 10:35,"766 Spruce St, Austin, TX 73301" +263196,AAA Batteries (4-pack),1,2.99,09/28/19 16:16,"465 Hill St, Los Angeles, CA 90001" +263197,Macbook Pro Laptop,1,1700,09/02/19 17:11,"987 South St, Seattle, WA 98101" +263198,AA Batteries (4-pack),1,3.84,09/04/19 12:01,"940 Lakeview St, Los Angeles, CA 90001" +263199,Google Phone,1,600,09/01/19 19:49,"476 South St, San Francisco, CA 94016" +263199,USB-C Charging Cable,1,11.95,09/01/19 19:49,"476 South St, San Francisco, CA 94016" +263200,LG Dryer,1,600.0,09/23/19 18:00,"621 Wilson St, Dallas, TX 75001" +263201,Lightning Charging Cable,1,14.95,09/18/19 21:52,"771 Wilson St, San Francisco, CA 94016" +263202,27in FHD Monitor,1,149.99,09/14/19 11:31,"600 1st St, San Francisco, CA 94016" +263203,Wired Headphones,1,11.99,09/25/19 20:13,"23 Wilson St, Dallas, TX 75001" +263204,34in Ultrawide Monitor,1,379.99,09/15/19 16:51,"491 North St, Los Angeles, CA 90001" +263205,Bose SoundSport Headphones,1,99.99,09/30/19 20:47,"319 Lakeview St, Atlanta, GA 30301" +263206,20in Monitor,1,109.99,09/11/19 19:50,"83 Washington St, Boston, MA 02215" +263207,Wired Headphones,1,11.99,09/25/19 14:27,"840 Walnut St, San Francisco, CA 94016" +263208,iPhone,1,700,09/12/19 22:01,"224 Pine St, Dallas, TX 75001" +263209,USB-C Charging Cable,2,11.95,09/13/19 12:29,"47 Sunset St, Portland, OR 97035" +263210,USB-C Charging Cable,2,11.95,09/24/19 00:06,"251 Madison St, New York City, NY 10001" +263211,27in FHD Monitor,1,149.99,09/11/19 14:45,"817 Main St, Dallas, TX 75001" +263212,27in FHD Monitor,1,149.99,09/12/19 15:17,"934 Ridge St, New York City, NY 10001" +263213,AA Batteries (4-pack),1,3.84,09/23/19 11:39,"116 4th St, New York City, NY 10001" +263214,iPhone,1,700,09/15/19 16:10,"670 West St, Austin, TX 73301" +263215,USB-C Charging Cable,1,11.95,09/25/19 10:25,"54 12th St, San Francisco, CA 94016" +263216,34in Ultrawide Monitor,1,379.99,09/24/19 19:46,"496 Center St, Los Angeles, CA 90001" +263217,AAA Batteries (4-pack),1,2.99,09/19/19 21:35,"203 Willow St, New York City, NY 10001" +263218,Wired Headphones,1,11.99,09/29/19 11:15,"811 Wilson St, New York City, NY 10001" +263219,Macbook Pro Laptop,1,1700,09/28/19 06:06,"373 Madison St, San Francisco, CA 94016" +263220,USB-C Charging Cable,1,11.95,09/20/19 20:39,"752 Lincoln St, Atlanta, GA 30301" +263221,AA Batteries (4-pack),1,3.84,09/01/19 06:56,"692 10th St, Dallas, TX 75001" +263222,USB-C Charging Cable,1,11.95,09/18/19 22:13,"166 Hickory St, New York City, NY 10001" +263223,Wired Headphones,2,11.99,09/18/19 22:33,"414 South St, Seattle, WA 98101" +263224,20in Monitor,1,109.99,09/09/19 09:36,"717 Center St, New York City, NY 10001" +263225,Lightning Charging Cable,1,14.95,09/25/19 13:50,"655 Wilson St, New York City, NY 10001" +263226,Lightning Charging Cable,1,14.95,09/29/19 21:05,"762 Ridge St, Austin, TX 73301" +263227,Wired Headphones,2,11.99,09/26/19 12:12,"962 4th St, Boston, MA 02215" +263228,Lightning Charging Cable,1,14.95,09/12/19 19:40,"936 8th St, Atlanta, GA 30301" +263229,Google Phone,1,600,09/23/19 09:21,"174 Walnut St, Boston, MA 02215" +263229,Wired Headphones,1,11.99,09/23/19 09:21,"174 Walnut St, Boston, MA 02215" +263230,Lightning Charging Cable,1,14.95,09/29/19 11:56,"703 Elm St, Atlanta, GA 30301" +263231,27in FHD Monitor,1,149.99,09/08/19 20:02,"453 Maple St, Seattle, WA 98101" +263232,AA Batteries (4-pack),1,3.84,09/04/19 09:41,"542 North St, Dallas, TX 75001" +263233,AAA Batteries (4-pack),1,2.99,09/20/19 17:29,"118 Chestnut St, Portland, OR 97035" +263234,AA Batteries (4-pack),1,3.84,09/30/19 15:02,"752 Jefferson St, New York City, NY 10001" +263235,20in Monitor,1,109.99,09/08/19 15:22,"476 Spruce St, New York City, NY 10001" +263236,AA Batteries (4-pack),1,3.84,09/09/19 11:20,"133 11th St, Atlanta, GA 30301" +263237,Lightning Charging Cable,1,14.95,09/19/19 22:53,"723 13th St, San Francisco, CA 94016" +263237,27in 4K Gaming Monitor,1,389.99,09/19/19 22:53,"723 13th St, San Francisco, CA 94016" +263238,AA Batteries (4-pack),1,3.84,09/20/19 18:47,"707 13th St, Boston, MA 02215" +263239,USB-C Charging Cable,1,11.95,09/23/19 22:38,"853 12th St, Portland, OR 97035" +263240,AAA Batteries (4-pack),2,2.99,09/08/19 15:39,"255 12th St, Los Angeles, CA 90001" +263241,iPhone,1,700,09/15/19 13:58,"794 11th St, San Francisco, CA 94016" +263242,Wired Headphones,1,11.99,09/03/19 18:28,"201 12th St, Los Angeles, CA 90001" +263243,Vareebadd Phone,1,400,09/19/19 11:12,"656 Willow St, Dallas, TX 75001" +263243,USB-C Charging Cable,2,11.95,09/19/19 11:12,"656 Willow St, Dallas, TX 75001" +263244,Wired Headphones,1,11.99,09/30/19 16:21,"743 Walnut St, Dallas, TX 75001" +263245,AA Batteries (4-pack),3,3.84,09/29/19 09:20,"851 Maple St, New York City, NY 10001" +263246,USB-C Charging Cable,1,11.95,09/26/19 20:10,"194 Center St, Seattle, WA 98101" +263247,27in FHD Monitor,1,149.99,09/14/19 23:34,"784 Cedar St, San Francisco, CA 94016" +263248,34in Ultrawide Monitor,1,379.99,09/21/19 18:22,"604 13th St, Los Angeles, CA 90001" +263249,Apple Airpods Headphones,1,150,09/22/19 13:23,"591 1st St, San Francisco, CA 94016" +263250,Google Phone,1,600,09/30/19 01:30,"506 14th St, Dallas, TX 75001" +263251,USB-C Charging Cable,1,11.95,09/23/19 17:17,"529 Adams St, San Francisco, CA 94016" +263252,Apple Airpods Headphones,1,150,09/15/19 17:31,"647 South St, New York City, NY 10001" +263253,34in Ultrawide Monitor,1,379.99,09/14/19 09:49,"95 1st St, New York City, NY 10001" +263254,27in FHD Monitor,1,149.99,09/14/19 10:21,"893 14th St, Los Angeles, CA 90001" +263255,AAA Batteries (4-pack),1,2.99,09/23/19 17:54,"593 South St, Dallas, TX 75001" +263256,Vareebadd Phone,1,400,09/09/19 12:33,"589 Walnut St, Los Angeles, CA 90001" +263256,USB-C Charging Cable,1,11.95,09/09/19 12:33,"589 Walnut St, Los Angeles, CA 90001" +263257,Apple Airpods Headphones,1,150,09/27/19 14:38,"42 Chestnut St, Austin, TX 73301" +263258,iPhone,1,700,09/21/19 11:31,"194 South St, New York City, NY 10001" +263259,Wired Headphones,1,11.99,09/04/19 20:51,"913 4th St, Atlanta, GA 30301" +263260,Apple Airpods Headphones,1,150,09/25/19 13:59,"867 Ridge St, Dallas, TX 75001" +263261,USB-C Charging Cable,2,11.95,09/11/19 10:49,"489 4th St, Atlanta, GA 30301" +263262,27in FHD Monitor,1,149.99,09/12/19 14:49,"720 Lincoln St, Los Angeles, CA 90001" +263263,Flatscreen TV,1,300,09/03/19 21:31,"167 Wilson St, San Francisco, CA 94016" +263264,AA Batteries (4-pack),1,3.84,09/24/19 15:04,"421 Wilson St, Boston, MA 02215" +263265,Macbook Pro Laptop,1,1700,09/08/19 11:25,"485 1st St, Los Angeles, CA 90001" +263266,iPhone,1,700,09/27/19 12:06,"577 Dogwood St, New York City, NY 10001" +263267,Wired Headphones,1,11.99,09/09/19 11:41,"768 Madison St, New York City, NY 10001" +263268,Lightning Charging Cable,1,14.95,09/15/19 19:39,"83 Willow St, Portland, OR 97035" +263269,Lightning Charging Cable,1,14.95,09/07/19 18:20,"84 Lincoln St, Seattle, WA 98101" +263270,AAA Batteries (4-pack),1,2.99,09/29/19 19:58,"633 14th St, New York City, NY 10001" +263271,USB-C Charging Cable,1,11.95,09/14/19 10:52,"946 Willow St, Los Angeles, CA 90001" +263272,27in 4K Gaming Monitor,1,389.99,09/23/19 18:38,"833 10th St, Boston, MA 02215" +263273,Bose SoundSport Headphones,1,99.99,09/07/19 11:30,"993 11th St, Seattle, WA 98101" +263274,Bose SoundSport Headphones,1,99.99,09/07/19 18:20,"556 13th St, Boston, MA 02215" +263275,AAA Batteries (4-pack),1,2.99,09/30/19 10:14,"75 13th St, New York City, NY 10001" +263276,AA Batteries (4-pack),1,3.84,09/10/19 14:45,"983 Johnson St, Dallas, TX 75001" +263277,USB-C Charging Cable,2,11.95,09/12/19 22:06,"130 9th St, Atlanta, GA 30301" +263278,ThinkPad Laptop,1,999.99,09/06/19 07:39,"714 Cedar St, San Francisco, CA 94016" +263279,Lightning Charging Cable,1,14.95,09/19/19 15:49,"560 Walnut St, Los Angeles, CA 90001" +263280,Lightning Charging Cable,1,14.95,09/23/19 23:59,"745 Willow St, Los Angeles, CA 90001" +263281,34in Ultrawide Monitor,1,379.99,09/04/19 19:39,"843 Jackson St, Los Angeles, CA 90001" +263282,AAA Batteries (4-pack),1,2.99,09/09/19 11:47,"290 1st St, Atlanta, GA 30301" +263283,AA Batteries (4-pack),1,3.84,09/12/19 20:54,"964 Lakeview St, New York City, NY 10001" +263284,27in FHD Monitor,1,149.99,09/13/19 23:09,"54 13th St, Seattle, WA 98101" +263285,AA Batteries (4-pack),1,3.84,09/29/19 00:47,"553 Highland St, Portland, OR 97035" +263286,Apple Airpods Headphones,1,150,09/14/19 22:32,"65 Lake St, Austin, TX 73301" +263287,Lightning Charging Cable,1,14.95,09/05/19 21:46,"483 Madison St, San Francisco, CA 94016" +263288,Lightning Charging Cable,1,14.95,09/18/19 15:42,"121 Sunset St, Austin, TX 73301" +263289,AA Batteries (4-pack),1,3.84,09/12/19 11:47,"65 Adams St, New York City, NY 10001" +263290,20in Monitor,1,109.99,09/03/19 18:20,"916 8th St, New York City, NY 10001" +263291,USB-C Charging Cable,1,11.95,09/21/19 14:00,"476 Pine St, San Francisco, CA 94016" +263292,Wired Headphones,1,11.99,09/13/19 17:34,"116 Willow St, Seattle, WA 98101" +263293,Apple Airpods Headphones,1,150,09/03/19 14:38,"275 9th St, Seattle, WA 98101" +263294,Bose SoundSport Headphones,1,99.99,09/28/19 22:34,"869 Pine St, Seattle, WA 98101" +263295,AAA Batteries (4-pack),1,2.99,09/03/19 19:39,"845 Elm St, New York City, NY 10001" +263296,Macbook Pro Laptop,1,1700,09/07/19 13:37,"915 Center St, New York City, NY 10001" +263297,AA Batteries (4-pack),1,3.84,09/25/19 19:15,"151 8th St, Portland, OR 97035" +263298,AA Batteries (4-pack),1,3.84,09/10/19 01:58,"754 Church St, New York City, NY 10001" +263299,Bose SoundSport Headphones,1,99.99,09/15/19 10:46,"410 Walnut St, San Francisco, CA 94016" +263300,Apple Airpods Headphones,1,150,09/02/19 18:09,"110 Pine St, Atlanta, GA 30301" +263301,AA Batteries (4-pack),2,3.84,09/06/19 11:09,"744 Chestnut St, Boston, MA 02215" +263302,AA Batteries (4-pack),1,3.84,09/11/19 18:56,"824 West St, New York City, NY 10001" +263303,Wired Headphones,1,11.99,09/18/19 09:24,"496 Adams St, San Francisco, CA 94016" +263304,34in Ultrawide Monitor,1,379.99,09/02/19 00:58,"962 Hill St, Los Angeles, CA 90001" +263305,AA Batteries (4-pack),1,3.84,09/07/19 15:08,"568 8th St, Boston, MA 02215" +263306,Google Phone,1,600,09/24/19 21:20,"231 Willow St, San Francisco, CA 94016" +263307,AA Batteries (4-pack),1,3.84,09/26/19 13:53,"801 Lakeview St, San Francisco, CA 94016" +263308,Bose SoundSport Headphones,1,99.99,09/28/19 09:20,"77 Madison St, Boston, MA 02215" +263309,USB-C Charging Cable,1,11.95,09/19/19 20:21,"874 Dogwood St, San Francisco, CA 94016" +263310,Apple Airpods Headphones,1,150,09/13/19 18:04,"513 Sunset St, Portland, OR 97035" +263311,Wired Headphones,1,11.99,09/23/19 12:16,"962 Hill St, San Francisco, CA 94016" +263312,Google Phone,1,600,09/13/19 01:12,"100 Jackson St, Boston, MA 02215" +263313,Wired Headphones,1,11.99,09/26/19 12:15,"526 Cherry St, Boston, MA 02215" +263314,USB-C Charging Cable,1,11.95,09/24/19 23:03,"462 Lake St, Los Angeles, CA 90001" +263315,Apple Airpods Headphones,1,150,09/30/19 16:51,"112 4th St, San Francisco, CA 94016" +263316,Apple Airpods Headphones,1,150,09/27/19 20:28,"299 Cherry St, Los Angeles, CA 90001" +263317,USB-C Charging Cable,1,11.95,09/05/19 11:40,"879 Cedar St, Dallas, TX 75001" +263318,ThinkPad Laptop,1,999.99,09/01/19 15:15,"954 West St, San Francisco, CA 94016" +263319,Wired Headphones,1,11.99,09/07/19 21:43,"475 Willow St, Los Angeles, CA 90001" +263320,34in Ultrawide Monitor,1,379.99,09/01/19 13:49,"212 Cherry St, San Francisco, CA 94016" +263321,USB-C Charging Cable,1,11.95,09/11/19 10:50,"843 Willow St, Boston, MA 02215" +263322,Wired Headphones,1,11.99,09/03/19 18:15,"521 Lakeview St, Atlanta, GA 30301" +263323,Vareebadd Phone,1,400,09/02/19 14:24,"710 7th St, Boston, MA 02215" +263324,USB-C Charging Cable,1,11.95,09/30/19 08:41,"838 8th St, Portland, OR 97035" +263325,AAA Batteries (4-pack),2,2.99,09/23/19 10:19,"198 4th St, Dallas, TX 75001" +263326,34in Ultrawide Monitor,1,379.99,09/29/19 13:34,"777 Lake St, Los Angeles, CA 90001" +263327,USB-C Charging Cable,1,11.95,09/17/19 15:54,"639 South St, San Francisco, CA 94016" +263328,Flatscreen TV,1,300,09/27/19 14:50,"849 Jefferson St, Los Angeles, CA 90001" +263329,27in FHD Monitor,1,149.99,09/08/19 19:56,"777 Cedar St, Dallas, TX 75001" +263330,34in Ultrawide Monitor,1,379.99,09/15/19 17:22,"723 West St, Seattle, WA 98101" +263331,Apple Airpods Headphones,1,150,09/24/19 21:06,"889 Wilson St, Los Angeles, CA 90001" +263332,USB-C Charging Cable,1,11.95,09/06/19 16:39,"476 10th St, Boston, MA 02215" +263333,Macbook Pro Laptop,1,1700,09/30/19 13:17,"469 10th St, Seattle, WA 98101" +263334,Wired Headphones,1,11.99,09/16/19 08:17,"769 Wilson St, Atlanta, GA 30301" +263335,Apple Airpods Headphones,1,150,09/23/19 20:54,"597 5th St, San Francisco, CA 94016" +263336,Vareebadd Phone,1,400,09/12/19 12:20,"586 Lincoln St, San Francisco, CA 94016" +263337,USB-C Charging Cable,1,11.95,09/05/19 15:39,"269 14th St, Los Angeles, CA 90001" +263338,AA Batteries (4-pack),1,3.84,09/24/19 15:50,"989 Hickory St, Los Angeles, CA 90001" +263339,Flatscreen TV,1,300,09/01/19 18:57,"555 Hill St, Boston, MA 02215" +263340,Wired Headphones,1,11.99,09/09/19 15:56,"289 Washington St, San Francisco, CA 94016" +263341,Apple Airpods Headphones,1,150,09/15/19 11:15,"526 Meadow St, Dallas, TX 75001" +263342,27in FHD Monitor,1,149.99,09/24/19 11:59,"430 Elm St, New York City, NY 10001" +263343,AAA Batteries (4-pack),2,2.99,09/09/19 14:14,"390 Pine St, San Francisco, CA 94016" +263344,Lightning Charging Cable,1,14.95,09/19/19 15:40,"837 13th St, San Francisco, CA 94016" +263345,AA Batteries (4-pack),2,3.84,09/29/19 13:11,"30 Forest St, New York City, NY 10001" +263346,iPhone,1,700,09/28/19 15:35,"924 Jackson St, New York City, NY 10001" +263347,AAA Batteries (4-pack),1,2.99,09/12/19 19:45,"53 9th St, Los Angeles, CA 90001" +263348,AA Batteries (4-pack),1,3.84,09/13/19 20:17,"369 Church St, Los Angeles, CA 90001" +263349,Lightning Charging Cable,1,14.95,09/16/19 15:21,"734 13th St, San Francisco, CA 94016" +263350,Wired Headphones,1,11.99,09/22/19 12:16,"880 Meadow St, Seattle, WA 98101" +263351,AAA Batteries (4-pack),1,2.99,09/16/19 18:58,"649 Willow St, San Francisco, CA 94016" +263352,Bose SoundSport Headphones,1,99.99,09/26/19 14:03,"608 Ridge St, New York City, NY 10001" +263353,34in Ultrawide Monitor,1,379.99,09/01/19 09:41,"921 Walnut St, Los Angeles, CA 90001" +263354,AAA Batteries (4-pack),2,2.99,09/03/19 12:31,"529 10th St, Dallas, TX 75001" +263355,Lightning Charging Cable,1,14.95,09/03/19 19:23,"124 Ridge St, Portland, OR 97035" +263356,Lightning Charging Cable,1,14.95,09/23/19 14:53,"993 Meadow St, San Francisco, CA 94016" +263357,27in FHD Monitor,1,149.99,09/04/19 15:23,"982 Walnut St, Dallas, TX 75001" +263358,Flatscreen TV,1,300,09/18/19 21:16,"881 Lincoln St, San Francisco, CA 94016" +263359,AAA Batteries (4-pack),1,2.99,09/18/19 09:00,"748 Walnut St, San Francisco, CA 94016" +263360,20in Monitor,1,109.99,09/22/19 21:07,"698 Cherry St, Seattle, WA 98101" +263361,Apple Airpods Headphones,1,150,09/12/19 23:46,"549 Lakeview St, Los Angeles, CA 90001" +263362,27in FHD Monitor,1,149.99,09/26/19 14:49,"432 Hickory St, Atlanta, GA 30301" +263363,Wired Headphones,1,11.99,09/15/19 06:13,"573 South St, Boston, MA 02215" +263364,iPhone,1,700,09/16/19 10:25,"138 10th St, San Francisco, CA 94016" +263365,USB-C Charging Cable,1,11.95,09/22/19 23:22,"311 Lincoln St, Los Angeles, CA 90001" +263366,Apple Airpods Headphones,1,150,09/29/19 00:34,"116 West St, Austin, TX 73301" +263367,Bose SoundSport Headphones,1,99.99,09/18/19 22:23,"484 Dogwood St, Seattle, WA 98101" +263368,iPhone,1,700,09/21/19 12:49,"450 River St, Los Angeles, CA 90001" +263369,USB-C Charging Cable,1,11.95,09/26/19 14:46,"833 Dogwood St, Los Angeles, CA 90001" +263370,Google Phone,1,600,09/19/19 23:53,"741 Willow St, Dallas, TX 75001" +263371,27in 4K Gaming Monitor,1,389.99,09/16/19 20:43,"640 4th St, Boston, MA 02215" +263372,Wired Headphones,1,11.99,09/01/19 23:33,"677 Adams St, New York City, NY 10001" +263373,AA Batteries (4-pack),1,3.84,09/07/19 14:43,"248 Adams St, Los Angeles, CA 90001" +263374,AA Batteries (4-pack),2,3.84,09/22/19 10:48,"302 7th St, Atlanta, GA 30301" +263375,iPhone,1,700,09/12/19 14:53,"562 13th St, Boston, MA 02215" +263375,Apple Airpods Headphones,1,150,09/12/19 14:53,"562 13th St, Boston, MA 02215" +263376,Google Phone,1,600,09/12/19 06:46,"992 Washington St, Los Angeles, CA 90001" +263377,Macbook Pro Laptop,1,1700,09/18/19 18:12,"22 Wilson St, Dallas, TX 75001" +263378,USB-C Charging Cable,1,11.95,09/07/19 13:02,"636 Lakeview St, New York City, NY 10001" +263379,AAA Batteries (4-pack),1,2.99,09/12/19 19:30,"127 Spruce St, Seattle, WA 98101" +263380,Flatscreen TV,1,300,09/19/19 23:59,"157 Ridge St, Boston, MA 02215" +263381,AAA Batteries (4-pack),1,2.99,09/02/19 17:23,"918 Hill St, San Francisco, CA 94016" +263382,AA Batteries (4-pack),1,3.84,09/29/19 08:57,"562 11th St, Dallas, TX 75001" +263383,Flatscreen TV,1,300,09/23/19 11:12,"605 Washington St, San Francisco, CA 94016" +263384,Lightning Charging Cable,1,14.95,09/28/19 13:04,"121 13th St, Seattle, WA 98101" +263385,27in FHD Monitor,1,149.99,09/28/19 15:58,"935 Johnson St, Boston, MA 02215" +263386,iPhone,1,700,09/14/19 14:17,"954 Walnut St, Boston, MA 02215" +263387,Lightning Charging Cable,1,14.95,09/07/19 08:51,"671 4th St, Los Angeles, CA 90001" +263388,AA Batteries (4-pack),1,3.84,09/24/19 21:32,"679 Adams St, San Francisco, CA 94016" +263389,AA Batteries (4-pack),1,3.84,09/01/19 11:58,"931 Center St, Los Angeles, CA 90001" +263390,USB-C Charging Cable,1,11.95,09/05/19 10:02,"940 Walnut St, Atlanta, GA 30301" +263391,AAA Batteries (4-pack),2,2.99,09/07/19 16:06,"774 North St, Portland, ME 04101" +263392,Lightning Charging Cable,1,14.95,09/05/19 22:21,"120 Wilson St, New York City, NY 10001" +263393,USB-C Charging Cable,1,11.95,09/22/19 19:39,"746 Main St, Los Angeles, CA 90001" +263393,Wired Headphones,1,11.99,09/22/19 19:39,"746 Main St, Los Angeles, CA 90001" +263394,Macbook Pro Laptop,1,1700,09/14/19 10:16,"710 Ridge St, Atlanta, GA 30301" +263395,Apple Airpods Headphones,1,150,09/18/19 13:06,"567 5th St, New York City, NY 10001" +263396,iPhone,1,700,09/20/19 11:15,"978 Spruce St, New York City, NY 10001" +263397,AAA Batteries (4-pack),1,2.99,09/13/19 08:59,"372 Highland St, Portland, OR 97035" +263398,AAA Batteries (4-pack),2,2.99,09/02/19 11:38,"926 Hickory St, Seattle, WA 98101" +263399,Apple Airpods Headphones,1,150,09/25/19 23:53,"675 7th St, New York City, NY 10001" +263400,27in FHD Monitor,1,149.99,09/06/19 12:59,"284 4th St, Boston, MA 02215" +263401,Wired Headphones,1,11.99,09/26/19 15:42,"504 Ridge St, Dallas, TX 75001" +263402,Apple Airpods Headphones,1,150,09/14/19 19:25,"361 Church St, Portland, OR 97035" +263403,27in FHD Monitor,1,149.99,09/08/19 16:25,"98 Willow St, San Francisco, CA 94016" +263404,Apple Airpods Headphones,1,150,09/21/19 00:26,"287 South St, Atlanta, GA 30301" +263405,Bose SoundSport Headphones,1,99.99,09/18/19 16:25,"178 Church St, Los Angeles, CA 90001" +263406,AAA Batteries (4-pack),1,2.99,09/26/19 12:56,"335 10th St, Atlanta, GA 30301" +263407,Macbook Pro Laptop,1,1700,09/14/19 12:23,"623 11th St, Dallas, TX 75001" +263408,Lightning Charging Cable,1,14.95,09/19/19 19:30,"816 Main St, New York City, NY 10001" +263409,Bose SoundSport Headphones,1,99.99,09/14/19 14:36,"160 6th St, Atlanta, GA 30301" +263410,Wired Headphones,1,11.99,09/06/19 13:54,"27 West St, Boston, MA 02215" +263411,ThinkPad Laptop,1,999.99,09/06/19 15:59,"727 Johnson St, Boston, MA 02215" +263412,Lightning Charging Cable,1,14.95,09/07/19 23:32,"824 Meadow St, New York City, NY 10001" +263413,iPhone,1,700,09/16/19 18:15,"82 Adams St, Los Angeles, CA 90001" +263414,AAA Batteries (4-pack),1,2.99,09/12/19 13:33,"641 Church St, San Francisco, CA 94016" +263415,Wired Headphones,1,11.99,09/10/19 12:05,"431 Adams St, New York City, NY 10001" +263416,Wired Headphones,1,11.99,09/13/19 03:19,"852 Center St, Dallas, TX 75001" +263417,AAA Batteries (4-pack),1,2.99,09/19/19 18:39,"695 Walnut St, Atlanta, GA 30301" +263418,AAA Batteries (4-pack),4,2.99,09/18/19 21:11,"245 Dogwood St, Los Angeles, CA 90001" +263419,USB-C Charging Cable,1,11.95,09/27/19 12:56,"63 Lake St, San Francisco, CA 94016" +263420,Macbook Pro Laptop,1,1700,10/01/19 01:35,"678 7th St, Dallas, TX 75001" +263421,Vareebadd Phone,1,400,09/17/19 09:56,"998 Adams St, Atlanta, GA 30301" +263421,Wired Headphones,1,11.99,09/17/19 09:56,"998 Adams St, Atlanta, GA 30301" +263422,Apple Airpods Headphones,1,150,09/17/19 13:04,"791 4th St, Atlanta, GA 30301" +263423,Vareebadd Phone,1,400,09/20/19 08:47,"314 2nd St, New York City, NY 10001" +263424,Lightning Charging Cable,1,14.95,09/26/19 13:57,"218 14th St, Austin, TX 73301" +263425,AA Batteries (4-pack),2,3.84,09/25/19 20:19,"958 Walnut St, Austin, TX 73301" +,,,,, +263426,AA Batteries (4-pack),1,3.84,09/30/19 19:29,"93 Lincoln St, New York City, NY 10001" +263427,Google Phone,1,600,09/02/19 23:34,"500 Wilson St, Seattle, WA 98101" +263427,USB-C Charging Cable,2,11.95,09/02/19 23:34,"500 Wilson St, Seattle, WA 98101" +263428,20in Monitor,1,109.99,09/15/19 22:13,"839 7th St, New York City, NY 10001" +263429,AA Batteries (4-pack),1,3.84,09/30/19 01:50,"5 Forest St, Portland, OR 97035" +263430,USB-C Charging Cable,1,11.95,09/12/19 16:29,"440 River St, Portland, OR 97035" +263431,Vareebadd Phone,1,400,09/18/19 15:00,"94 Johnson St, San Francisco, CA 94016" +263432,27in 4K Gaming Monitor,1,389.99,09/07/19 15:58,"94 Madison St, Boston, MA 02215" +263433,27in FHD Monitor,1,149.99,09/15/19 08:31,"359 Jefferson St, Dallas, TX 75001" +263434,ThinkPad Laptop,1,999.99,09/20/19 13:29,"391 River St, New York City, NY 10001" +263435,Lightning Charging Cable,1,14.95,09/24/19 09:59,"421 Meadow St, San Francisco, CA 94016" +263436,ThinkPad Laptop,1,999.99,09/23/19 19:58,"244 Sunset St, Dallas, TX 75001" +263437,USB-C Charging Cable,1,11.95,09/01/19 15:43,"224 River St, Boston, MA 02215" +263438,Apple Airpods Headphones,1,150,09/22/19 20:58,"793 Wilson St, San Francisco, CA 94016" +263439,USB-C Charging Cable,1,11.95,09/25/19 16:23,"624 Park St, Atlanta, GA 30301" +263440,Flatscreen TV,1,300,09/13/19 08:50,"200 Chestnut St, Los Angeles, CA 90001" +263441,Google Phone,1,600,09/22/19 04:24,"492 Chestnut St, New York City, NY 10001" +263441,Wired Headphones,1,11.99,09/22/19 04:24,"492 Chestnut St, New York City, NY 10001" +263442,Apple Airpods Headphones,1,150,09/05/19 23:30,"830 5th St, New York City, NY 10001" +263443,Wired Headphones,1,11.99,09/11/19 18:47,"528 Adams St, Portland, OR 97035" +263444,Wired Headphones,1,11.99,09/26/19 12:35,"135 2nd St, San Francisco, CA 94016" +263445,AAA Batteries (4-pack),1,2.99,09/19/19 12:51,"399 Park St, Portland, OR 97035" +263446,USB-C Charging Cable,1,11.95,09/28/19 20:11,"47 9th St, New York City, NY 10001" +263447,Bose SoundSport Headphones,1,99.99,09/26/19 13:30,"94 Adams St, New York City, NY 10001" +263448,27in FHD Monitor,1,149.99,09/04/19 11:19,"151 Elm St, San Francisco, CA 94016" +263449,AA Batteries (4-pack),1,3.84,09/13/19 21:56,"823 Ridge St, Dallas, TX 75001" +263450,iPhone,1,700,09/19/19 19:38,"655 Washington St, New York City, NY 10001" +263451,iPhone,1,700,09/07/19 13:02,"225 River St, New York City, NY 10001" +263452,27in 4K Gaming Monitor,1,389.99,09/29/19 17:55,"635 14th St, Boston, MA 02215" +263453,Apple Airpods Headphones,1,150,09/13/19 17:26,"554 Adams St, San Francisco, CA 94016" +263454,Lightning Charging Cable,1,14.95,09/16/19 12:47,"946 Lakeview St, Portland, OR 97035" +263455,AA Batteries (4-pack),1,3.84,09/30/19 18:55,"12 Cedar St, New York City, NY 10001" +263456,Apple Airpods Headphones,1,150,09/27/19 15:07,"379 14th St, San Francisco, CA 94016" +263457,Apple Airpods Headphones,1,150,09/26/19 11:27,"58 Forest St, Austin, TX 73301" +263457,Lightning Charging Cable,1,14.95,09/26/19 11:27,"58 Forest St, Austin, TX 73301" +263458,Bose SoundSport Headphones,1,99.99,09/06/19 20:48,"767 North St, San Francisco, CA 94016" +263459,iPhone,1,700,09/17/19 17:39,"696 11th St, Boston, MA 02215" +263460,Wired Headphones,1,11.99,09/17/19 08:47,"972 Church St, Atlanta, GA 30301" +263461,34in Ultrawide Monitor,1,379.99,09/16/19 11:42,"397 Sunset St, Atlanta, GA 30301" +263462,34in Ultrawide Monitor,1,379.99,09/21/19 14:31,"481 Meadow St, New York City, NY 10001" +263463,AAA Batteries (4-pack),1,2.99,09/20/19 09:48,"707 9th St, San Francisco, CA 94016" +263464,Apple Airpods Headphones,1,150,09/12/19 18:37,"431 Maple St, Atlanta, GA 30301" +263465,AAA Batteries (4-pack),1,2.99,09/19/19 15:04,"395 Church St, Los Angeles, CA 90001" +263466,Wired Headphones,2,11.99,09/02/19 06:50,"220 2nd St, San Francisco, CA 94016" +263467,AAA Batteries (4-pack),1,2.99,09/22/19 10:06,"596 Spruce St, Austin, TX 73301" +263468,20in Monitor,1,109.99,09/21/19 18:56,"315 11th St, Seattle, WA 98101" +263469,AA Batteries (4-pack),1,3.84,09/29/19 00:22,"677 Church St, Atlanta, GA 30301" +263470,Wired Headphones,1,11.99,09/27/19 23:45,"585 10th St, Los Angeles, CA 90001" +263471,27in FHD Monitor,1,149.99,09/30/19 14:12,"895 Church St, New York City, NY 10001" +263472,AAA Batteries (4-pack),5,2.99,09/17/19 21:03,"986 9th St, Atlanta, GA 30301" +263473,Apple Airpods Headphones,1,150,09/13/19 10:10,"538 12th St, Portland, OR 97035" +263474,Wired Headphones,1,11.99,09/14/19 15:08,"492 Lakeview St, Austin, TX 73301" +263475,Bose SoundSport Headphones,1,99.99,09/13/19 18:25,"290 11th St, San Francisco, CA 94016" +263476,Apple Airpods Headphones,1,150,09/09/19 10:52,"650 Lincoln St, Los Angeles, CA 90001" +263477,USB-C Charging Cable,1,11.95,09/29/19 08:25,"119 Jefferson St, Dallas, TX 75001" +263478,27in 4K Gaming Monitor,1,389.99,09/28/19 16:28,"921 12th St, New York City, NY 10001" +263478,27in FHD Monitor,1,149.99,09/28/19 16:28,"921 12th St, New York City, NY 10001" +263479,27in FHD Monitor,1,149.99,09/06/19 12:27,"999 Dogwood St, San Francisco, CA 94016" +263480,Apple Airpods Headphones,1,150,09/28/19 05:32,"670 12th St, New York City, NY 10001" +263481,Bose SoundSport Headphones,1,99.99,09/27/19 04:04,"18 Lakeview St, San Francisco, CA 94016" +263482,AA Batteries (4-pack),1,3.84,09/18/19 13:24,"422 Jackson St, Los Angeles, CA 90001" +263483,27in FHD Monitor,1,149.99,09/21/19 20:55,"712 Pine St, San Francisco, CA 94016" +263484,USB-C Charging Cable,1,11.95,09/29/19 09:51,"717 North St, Los Angeles, CA 90001" +263485,ThinkPad Laptop,1,999.99,09/20/19 23:48,"345 Lincoln St, Seattle, WA 98101" +263486,27in 4K Gaming Monitor,1,389.99,09/27/19 16:37,"825 Church St, Dallas, TX 75001" +263487,AA Batteries (4-pack),1,3.84,09/23/19 18:03,"94 Madison St, Atlanta, GA 30301" +263488,Lightning Charging Cable,1,14.95,09/28/19 18:11,"833 Maple St, Dallas, TX 75001" +263489,LG Washing Machine,1,600.0,09/26/19 18:18,"129 Forest St, Portland, OR 97035" +263490,Google Phone,1,600,09/29/19 12:58,"205 Dogwood St, Dallas, TX 75001" +263490,USB-C Charging Cable,1,11.95,09/29/19 12:58,"205 Dogwood St, Dallas, TX 75001" +263491,Bose SoundSport Headphones,1,99.99,09/19/19 16:27,"696 Highland St, Los Angeles, CA 90001" +263492,Bose SoundSport Headphones,1,99.99,09/19/19 14:21,"806 North St, Atlanta, GA 30301" +263493,AA Batteries (4-pack),1,3.84,09/23/19 14:28,"272 14th St, Los Angeles, CA 90001" +263494,Wired Headphones,1,11.99,09/26/19 16:43,"517 1st St, San Francisco, CA 94016" +263495,AA Batteries (4-pack),1,3.84,09/22/19 10:18,"217 10th St, New York City, NY 10001" +263496,Flatscreen TV,1,300,09/28/19 22:59,"723 Lake St, New York City, NY 10001" +263497,27in 4K Gaming Monitor,1,389.99,09/05/19 16:16,"981 6th St, Los Angeles, CA 90001" +263498,Lightning Charging Cable,1,14.95,09/13/19 00:53,"549 Hickory St, Los Angeles, CA 90001" +263499,USB-C Charging Cable,1,11.95,09/11/19 14:35,"418 Pine St, Boston, MA 02215" +263500,Apple Airpods Headphones,1,150,09/05/19 13:59,"651 6th St, Los Angeles, CA 90001" +263501,34in Ultrawide Monitor,1,379.99,09/30/19 21:21,"343 South St, Austin, TX 73301" +263502,AA Batteries (4-pack),1,3.84,09/18/19 19:56,"897 8th St, Portland, ME 04101" +263503,Apple Airpods Headphones,1,150,09/25/19 11:04,"786 Meadow St, Portland, OR 97035" +263504,USB-C Charging Cable,1,11.95,09/13/19 05:44,"642 Meadow St, Boston, MA 02215" +263505,Apple Airpods Headphones,1,150,09/27/19 08:29,"247 Cherry St, Austin, TX 73301" +263506,AAA Batteries (4-pack),2,2.99,09/05/19 23:40,"351 Washington St, San Francisco, CA 94016" +263507,Lightning Charging Cable,1,14.95,09/22/19 16:13,"780 Cedar St, Austin, TX 73301" +263508,AAA Batteries (4-pack),1,2.99,09/24/19 22:08,"159 10th St, Boston, MA 02215" +263509,Lightning Charging Cable,1,14.95,09/20/19 06:16,"146 Pine St, San Francisco, CA 94016" +263510,27in 4K Gaming Monitor,1,389.99,09/10/19 17:58,"434 Lakeview St, Atlanta, GA 30301" +263511,AA Batteries (4-pack),1,3.84,09/19/19 14:05,"359 Dogwood St, Portland, OR 97035" +263512,iPhone,1,700,09/09/19 11:24,"564 2nd St, San Francisco, CA 94016" +263513,Lightning Charging Cable,1,14.95,09/14/19 15:50,"541 Adams St, Los Angeles, CA 90001" +,,,,, +263514,Bose SoundSport Headphones,1,99.99,09/14/19 22:07,"624 Meadow St, San Francisco, CA 94016" +263515,iPhone,1,700,09/12/19 14:30,"846 Willow St, Los Angeles, CA 90001" +263516,Macbook Pro Laptop,1,1700,09/14/19 09:41,"768 Cedar St, San Francisco, CA 94016" +263517,AA Batteries (4-pack),1,3.84,09/15/19 09:45,"212 Highland St, Dallas, TX 75001" +263518,Lightning Charging Cable,1,14.95,09/12/19 10:26,"375 West St, San Francisco, CA 94016" +263519,USB-C Charging Cable,2,11.95,09/13/19 20:02,"904 Spruce St, Atlanta, GA 30301" +263520,USB-C Charging Cable,1,11.95,09/25/19 12:55,"327 Lake St, Los Angeles, CA 90001" +263521,20in Monitor,1,109.99,09/29/19 11:42,"95 Park St, Los Angeles, CA 90001" +263522,Flatscreen TV,1,300,09/21/19 20:05,"900 River St, Atlanta, GA 30301" +263523,Apple Airpods Headphones,1,150,09/07/19 10:48,"833 Madison St, Los Angeles, CA 90001" +263524,Lightning Charging Cable,1,14.95,09/15/19 16:07,"184 Church St, New York City, NY 10001" +263525,USB-C Charging Cable,1,11.95,09/11/19 20:00,"631 Hill St, Los Angeles, CA 90001" +263526,Google Phone,1,600,09/20/19 16:05,"749 5th St, Dallas, TX 75001" +263527,Bose SoundSport Headphones,1,99.99,09/29/19 14:16,"577 Meadow St, Austin, TX 73301" +263528,Bose SoundSport Headphones,1,99.99,09/08/19 21:31,"122 Center St, Portland, OR 97035" +263529,Wired Headphones,1,11.99,09/06/19 21:17,"474 Meadow St, Atlanta, GA 30301" +263530,AA Batteries (4-pack),2,3.84,09/12/19 14:21,"143 Sunset St, New York City, NY 10001" +263531,AAA Batteries (4-pack),2,2.99,09/09/19 08:38,"362 Sunset St, San Francisco, CA 94016" +263532,AAA Batteries (4-pack),2,2.99,09/18/19 11:53,"216 Wilson St, Dallas, TX 75001" +263533,AAA Batteries (4-pack),1,2.99,09/03/19 09:55,"789 North St, San Francisco, CA 94016" +263534,Lightning Charging Cable,1,14.95,09/05/19 10:12,"842 Pine St, Portland, OR 97035" +263535,USB-C Charging Cable,1,11.95,09/21/19 15:37,"663 Forest St, Portland, OR 97035" +263536,AA Batteries (4-pack),2,3.84,09/27/19 07:30,"378 Adams St, Portland, OR 97035" +263537,Google Phone,1,600,09/06/19 22:38,"414 Forest St, New York City, NY 10001" +263537,USB-C Charging Cable,1,11.95,09/06/19 22:38,"414 Forest St, New York City, NY 10001" +263538,AA Batteries (4-pack),3,3.84,09/29/19 18:17,"846 14th St, Seattle, WA 98101" +263539,34in Ultrawide Monitor,1,379.99,09/25/19 15:23,"922 8th St, Los Angeles, CA 90001" +263540,iPhone,1,700,09/06/19 21:02,"572 7th St, San Francisco, CA 94016" +263541,Macbook Pro Laptop,1,1700,09/04/19 11:17,"696 Park St, Atlanta, GA 30301" +263542,Lightning Charging Cable,1,14.95,09/17/19 15:32,"855 Church St, Atlanta, GA 30301" +263543,AAA Batteries (4-pack),1,2.99,09/27/19 19:07,"860 Cherry St, Austin, TX 73301" +263544,AA Batteries (4-pack),4,3.84,09/06/19 11:29,"872 9th St, Seattle, WA 98101" +263545,USB-C Charging Cable,1,11.95,09/15/19 13:44,"961 Forest St, Seattle, WA 98101" +263546,AA Batteries (4-pack),1,3.84,09/03/19 21:43,"478 2nd St, Atlanta, GA 30301" +263547,AA Batteries (4-pack),3,3.84,09/06/19 16:09,"331 North St, Dallas, TX 75001" +263548,USB-C Charging Cable,1,11.95,09/09/19 17:00,"821 Forest St, Boston, MA 02215" +263549,AAA Batteries (4-pack),1,2.99,09/24/19 10:22,"652 Jefferson St, Atlanta, GA 30301" +263550,Lightning Charging Cable,1,14.95,09/17/19 08:27,"798 Lincoln St, Dallas, TX 75001" +263551,AAA Batteries (4-pack),2,2.99,09/28/19 12:24,"278 8th St, Atlanta, GA 30301" +263552,Bose SoundSport Headphones,1,99.99,09/11/19 12:06,"642 11th St, San Francisco, CA 94016" +263553,34in Ultrawide Monitor,1,379.99,09/30/19 16:50,"73 Main St, Atlanta, GA 30301" +263554,AAA Batteries (4-pack),1,2.99,09/05/19 14:39,"466 Cherry St, San Francisco, CA 94016" +263555,Lightning Charging Cable,1,14.95,09/17/19 22:38,"371 Hickory St, New York City, NY 10001" +263556,Wired Headphones,1,11.99,09/12/19 21:50,"728 8th St, San Francisco, CA 94016" +263557,27in FHD Monitor,1,149.99,09/28/19 20:04,"153 Adams St, San Francisco, CA 94016" +263558,LG Washing Machine,1,600.0,09/21/19 21:42,"829 1st St, New York City, NY 10001" +263559,20in Monitor,1,109.99,09/13/19 21:13,"492 Hill St, Seattle, WA 98101" +263560,iPhone,1,700,09/02/19 17:30,"225 Meadow St, Seattle, WA 98101" +263561,Lightning Charging Cable,1,14.95,09/02/19 07:56,"292 4th St, San Francisco, CA 94016" +263562,Apple Airpods Headphones,1,150,09/22/19 01:33,"112 Lincoln St, New York City, NY 10001" +263563,AAA Batteries (4-pack),3,2.99,09/05/19 15:13,"433 West St, Los Angeles, CA 90001" +263564,Apple Airpods Headphones,1,150,09/28/19 12:29,"564 6th St, Atlanta, GA 30301" +263565,Macbook Pro Laptop,1,1700,09/11/19 15:25,"188 Cherry St, Boston, MA 02215" +263566,Apple Airpods Headphones,1,150,09/18/19 10:36,"123 9th St, San Francisco, CA 94016" +263567,AAA Batteries (4-pack),1,2.99,09/01/19 08:01,"94 Pine St, Boston, MA 02215" +263568,Wired Headphones,1,11.99,09/01/19 11:37,"276 4th St, Los Angeles, CA 90001" +263569,34in Ultrawide Monitor,1,379.99,09/09/19 19:06,"111 Lincoln St, New York City, NY 10001" +263570,Apple Airpods Headphones,1,150,09/13/19 15:34,"22 14th St, Los Angeles, CA 90001" +263571,Bose SoundSport Headphones,1,99.99,09/27/19 10:04,"270 Willow St, San Francisco, CA 94016" +263572,Lightning Charging Cable,1,14.95,09/18/19 19:02,"691 Willow St, Los Angeles, CA 90001" +263573,Lightning Charging Cable,2,14.95,09/04/19 13:26,"537 Walnut St, San Francisco, CA 94016" +263574,Bose SoundSport Headphones,1,99.99,09/03/19 16:52,"596 Walnut St, San Francisco, CA 94016" +263575,AA Batteries (4-pack),1,3.84,09/28/19 21:17,"410 Spruce St, Seattle, WA 98101" +263576,Lightning Charging Cable,1,14.95,09/13/19 00:41,"804 Jackson St, Los Angeles, CA 90001" +263577,Wired Headphones,1,11.99,09/19/19 07:58,"140 Ridge St, Boston, MA 02215" +263578,AAA Batteries (4-pack),1,2.99,10/01/19 01:08,"432 Lake St, Atlanta, GA 30301" +263579,Bose SoundSport Headphones,1,99.99,09/27/19 21:00,"567 Park St, Boston, MA 02215" +263580,Flatscreen TV,1,300,09/07/19 22:13,"380 Walnut St, Dallas, TX 75001" +263581,Wired Headphones,1,11.99,09/01/19 09:47,"198 Ridge St, Portland, ME 04101" +263582,27in FHD Monitor,1,149.99,09/03/19 15:15,"333 North St, New York City, NY 10001" +263583,iPhone,1,700,09/02/19 14:50,"966 Jefferson St, Dallas, TX 75001" +263584,AAA Batteries (4-pack),2,2.99,09/01/19 15:26,"930 South St, Portland, OR 97035" +263584,Flatscreen TV,1,300,09/01/19 15:26,"930 South St, Portland, OR 97035" +,,,,, +263585,Apple Airpods Headphones,1,150,09/16/19 13:35,"618 Park St, Los Angeles, CA 90001" +263586,Wired Headphones,1,11.99,09/12/19 10:08,"364 Sunset St, Atlanta, GA 30301" +263587,Wired Headphones,1,11.99,09/02/19 11:26,"91 12th St, San Francisco, CA 94016" +263588,Lightning Charging Cable,1,14.95,09/13/19 22:34,"712 Lincoln St, Seattle, WA 98101" +263589,iPhone,1,700,09/13/19 08:41,"643 Jackson St, New York City, NY 10001" +263590,Wired Headphones,1,11.99,09/26/19 12:15,"159 Hickory St, Atlanta, GA 30301" +263591,34in Ultrawide Monitor,1,379.99,09/27/19 08:49,"762 8th St, New York City, NY 10001" +263592,34in Ultrawide Monitor,1,379.99,09/03/19 13:41,"855 5th St, San Francisco, CA 94016" +263593,Wired Headphones,1,11.99,09/16/19 12:34,"296 Meadow St, New York City, NY 10001" +263594,Lightning Charging Cable,1,14.95,09/05/19 15:06,"97 Jackson St, New York City, NY 10001" +263595,27in FHD Monitor,1,149.99,09/22/19 20:23,"523 Sunset St, Austin, TX 73301" +263596,AA Batteries (4-pack),1,3.84,09/04/19 20:33,"283 Meadow St, Atlanta, GA 30301" +263597,Bose SoundSport Headphones,1,99.99,09/18/19 13:07,"963 Cherry St, San Francisco, CA 94016" +263598,Lightning Charging Cable,1,14.95,09/18/19 20:23,"951 5th St, San Francisco, CA 94016" +263599,USB-C Charging Cable,1,11.95,09/06/19 22:35,"978 Hill St, San Francisco, CA 94016" +263600,20in Monitor,1,109.99,09/26/19 15:10,"479 Forest St, Austin, TX 73301" +263601,Apple Airpods Headphones,1,150,09/08/19 15:03,"860 Forest St, Boston, MA 02215" +263602,Lightning Charging Cable,1,14.95,09/25/19 18:53,"141 Meadow St, Portland, OR 97035" +263603,Bose SoundSport Headphones,1,99.99,09/13/19 07:27,"906 Church St, Los Angeles, CA 90001" +263604,USB-C Charging Cable,1,11.95,09/30/19 12:43,"707 Jackson St, Portland, OR 97035" +263605,Apple Airpods Headphones,1,150,09/09/19 16:43,"488 4th St, Atlanta, GA 30301" +263606,Apple Airpods Headphones,1,150,09/17/19 18:04,"493 12th St, Dallas, TX 75001" +263607,Bose SoundSport Headphones,1,99.99,09/21/19 15:17,"533 Washington St, Portland, OR 97035" +263608,Apple Airpods Headphones,1,150,09/16/19 21:30,"456 Spruce St, San Francisco, CA 94016" +263609,34in Ultrawide Monitor,1,379.99,09/02/19 13:51,"53 1st St, New York City, NY 10001" +263610,Wired Headphones,1,11.99,09/18/19 13:56,"969 North St, New York City, NY 10001" +263611,Bose SoundSport Headphones,1,99.99,09/27/19 16:12,"525 Jefferson St, Dallas, TX 75001" +263612,27in 4K Gaming Monitor,1,389.99,09/20/19 22:08,"594 Chestnut St, Portland, ME 04101" +263613,Apple Airpods Headphones,1,150,09/09/19 22:30,"409 10th St, Portland, OR 97035" +263614,Wired Headphones,1,11.99,09/14/19 22:25,"309 14th St, San Francisco, CA 94016" +263615,AAA Batteries (4-pack),2,2.99,09/16/19 00:04,"545 Chestnut St, Boston, MA 02215" +263616,AAA Batteries (4-pack),1,2.99,09/03/19 16:58,"284 West St, Dallas, TX 75001" +263617,34in Ultrawide Monitor,1,379.99,09/04/19 16:37,"963 Forest St, San Francisco, CA 94016" +263618,USB-C Charging Cable,1,11.95,09/15/19 13:58,"271 Pine St, San Francisco, CA 94016" +263619,20in Monitor,1,109.99,09/10/19 15:20,"291 Sunset St, Portland, OR 97035" +263620,Wired Headphones,1,11.99,09/09/19 08:55,"559 Wilson St, New York City, NY 10001" +263621,AA Batteries (4-pack),1,3.84,09/26/19 18:30,"455 West St, New York City, NY 10001" +263622,Bose SoundSport Headphones,1,99.99,09/09/19 10:22,"763 Madison St, Atlanta, GA 30301" +263623,Vareebadd Phone,1,400,09/05/19 18:17,"210 Wilson St, San Francisco, CA 94016" +263623,USB-C Charging Cable,1,11.95,09/05/19 18:17,"210 Wilson St, San Francisco, CA 94016" +263624,Lightning Charging Cable,1,14.95,09/02/19 06:25,"918 1st St, Los Angeles, CA 90001" +263625,USB-C Charging Cable,2,11.95,09/26/19 10:32,"111 Jefferson St, San Francisco, CA 94016" +263626,Vareebadd Phone,1,400,09/26/19 00:57,"408 Cherry St, San Francisco, CA 94016" +263627,Lightning Charging Cable,1,14.95,09/18/19 08:09,"304 Hickory St, Boston, MA 02215" +263628,AAA Batteries (4-pack),1,2.99,09/27/19 20:33,"901 Chestnut St, Dallas, TX 75001" +263629,Apple Airpods Headphones,1,150,09/01/19 12:02,"760 1st St, Los Angeles, CA 90001" +263630,Apple Airpods Headphones,1,150,09/02/19 00:55,"150 Lincoln St, Portland, OR 97035" +263631,AA Batteries (4-pack),1,3.84,09/30/19 12:42,"726 North St, Atlanta, GA 30301" +263632,AA Batteries (4-pack),2,3.84,09/28/19 11:06,"795 Pine St, New York City, NY 10001" +263633,Apple Airpods Headphones,1,150,09/28/19 17:29,"908 6th St, New York City, NY 10001" +263634,iPhone,1,700,09/25/19 11:25,"343 Willow St, Los Angeles, CA 90001" +263635,AAA Batteries (4-pack),4,2.99,09/08/19 00:00,"570 Washington St, San Francisco, CA 94016" +263636,AA Batteries (4-pack),2,3.84,09/23/19 18:47,"969 Dogwood St, Dallas, TX 75001" +263637,27in 4K Gaming Monitor,1,389.99,09/19/19 16:25,"899 Washington St, Dallas, TX 75001" +263638,AA Batteries (4-pack),2,3.84,09/12/19 01:07,"524 10th St, Los Angeles, CA 90001" +263639,USB-C Charging Cable,1,11.95,09/22/19 14:51,"83 North St, Atlanta, GA 30301" +263640,Macbook Pro Laptop,1,1700,09/02/19 11:23,"892 West St, Austin, TX 73301" +263641,Lightning Charging Cable,1,14.95,09/29/19 10:30,"931 South St, Los Angeles, CA 90001" +263642,Apple Airpods Headphones,1,150,09/19/19 06:51,"493 Maple St, Los Angeles, CA 90001" +263643,AAA Batteries (4-pack),1,2.99,09/17/19 21:33,"907 Elm St, Dallas, TX 75001" +263644,Lightning Charging Cable,1,14.95,09/08/19 21:10,"785 Park St, Seattle, WA 98101" +263645,Apple Airpods Headphones,1,150,09/20/19 15:49,"335 Park St, Los Angeles, CA 90001" +263646,USB-C Charging Cable,1,11.95,09/25/19 11:52,"8 8th St, Seattle, WA 98101" +263647,USB-C Charging Cable,1,11.95,09/04/19 11:00,"828 Jackson St, Dallas, TX 75001" +263648,27in 4K Gaming Monitor,1,389.99,09/14/19 18:14,"117 North St, Seattle, WA 98101" +263649,USB-C Charging Cable,1,11.95,09/28/19 12:18,"293 4th St, Portland, ME 04101" +263650,AA Batteries (4-pack),1,3.84,09/24/19 01:52,"841 Chestnut St, Boston, MA 02215" +263651,Lightning Charging Cable,1,14.95,09/01/19 12:37,"603 Jackson St, Austin, TX 73301" +263652,Apple Airpods Headphones,1,150,09/26/19 07:33,"694 Washington St, Austin, TX 73301" +263653,Google Phone,1,600,09/04/19 12:46,"870 Lakeview St, New York City, NY 10001" +263654,Google Phone,1,600,09/22/19 14:58,"702 Hill St, San Francisco, CA 94016" +263654,Wired Headphones,1,11.99,09/22/19 14:58,"702 Hill St, San Francisco, CA 94016" +263655,Lightning Charging Cable,1,14.95,09/17/19 18:43,"16 Cedar St, San Francisco, CA 94016" +263656,AAA Batteries (4-pack),1,2.99,09/19/19 14:08,"297 Walnut St, Los Angeles, CA 90001" +263657,iPhone,1,700,09/15/19 16:56,"37 Lincoln St, Atlanta, GA 30301" +263658,AA Batteries (4-pack),1,3.84,09/26/19 10:57,"982 Meadow St, Dallas, TX 75001" +263659,Bose SoundSport Headphones,1,99.99,09/02/19 05:24,"580 14th St, Dallas, TX 75001" +263660,Wired Headphones,2,11.99,09/02/19 17:46,"516 Church St, Boston, MA 02215" +263661,AA Batteries (4-pack),1,3.84,09/10/19 09:25,"681 Chestnut St, Los Angeles, CA 90001" +263662,Apple Airpods Headphones,1,150,09/03/19 22:04,"297 Adams St, Dallas, TX 75001" +263663,AA Batteries (4-pack),1,3.84,09/03/19 19:24,"704 Maple St, Atlanta, GA 30301" +263664,Wired Headphones,1,11.99,09/08/19 20:18,"177 Cedar St, Portland, OR 97035" +263665,27in FHD Monitor,1,149.99,09/23/19 11:53,"686 Chestnut St, Boston, MA 02215" +263666,USB-C Charging Cable,1,11.95,09/03/19 17:26,"833 River St, San Francisco, CA 94016" +263667,AA Batteries (4-pack),1,3.84,09/12/19 09:11,"965 Hill St, Austin, TX 73301" +263668,27in FHD Monitor,1,149.99,09/14/19 11:08,"652 2nd St, San Francisco, CA 94016" +263669,27in FHD Monitor,1,149.99,09/08/19 04:05,"631 1st St, Los Angeles, CA 90001" +263670,Apple Airpods Headphones,2,150,09/12/19 17:00,"387 Jefferson St, Los Angeles, CA 90001" +263671,AAA Batteries (4-pack),3,2.99,09/12/19 15:29,"908 6th St, San Francisco, CA 94016" +263672,Bose SoundSport Headphones,1,99.99,09/30/19 18:53,"732 Sunset St, Austin, TX 73301" +263673,AAA Batteries (4-pack),2,2.99,09/20/19 18:12,"257 Dogwood St, Los Angeles, CA 90001" +263674,AA Batteries (4-pack),3,3.84,09/19/19 15:40,"999 Johnson St, San Francisco, CA 94016" +263675,Lightning Charging Cable,1,14.95,09/03/19 20:50,"2 Cedar St, Seattle, WA 98101" +263676,Macbook Pro Laptop,1,1700,09/28/19 10:28,"400 8th St, Portland, OR 97035" +263677,Wired Headphones,1,11.99,09/13/19 08:39,"785 Ridge St, Los Angeles, CA 90001" +263678,AAA Batteries (4-pack),1,2.99,09/11/19 22:57,"585 Highland St, New York City, NY 10001" +263679,Wired Headphones,2,11.99,09/14/19 13:21,"949 Highland St, Los Angeles, CA 90001" +263680,AAA Batteries (4-pack),1,2.99,09/18/19 06:24,"116 Forest St, San Francisco, CA 94016" +263681,iPhone,1,700,09/22/19 16:38,"881 Jefferson St, Los Angeles, CA 90001" +263682,USB-C Charging Cable,1,11.95,09/25/19 18:51,"595 West St, Los Angeles, CA 90001" +263683,Lightning Charging Cable,2,14.95,09/12/19 10:24,"158 2nd St, Austin, TX 73301" +263684,Bose SoundSport Headphones,1,99.99,09/25/19 10:33,"880 Lakeview St, New York City, NY 10001" +263685,Bose SoundSport Headphones,1,99.99,09/01/19 14:58,"816 Johnson St, Boston, MA 02215" +263686,AA Batteries (4-pack),1,3.84,09/02/19 06:39,"26 14th St, Seattle, WA 98101" +263687,USB-C Charging Cable,1,11.95,09/27/19 16:08,"741 Johnson St, Dallas, TX 75001" +263688,Lightning Charging Cable,1,14.95,09/25/19 22:36,"271 Washington St, San Francisco, CA 94016" +263689,ThinkPad Laptop,1,999.99,09/13/19 11:12,"369 6th St, Los Angeles, CA 90001" +263690,AA Batteries (4-pack),1,3.84,09/16/19 21:56,"359 North St, Atlanta, GA 30301" +263691,20in Monitor,1,109.99,09/26/19 17:34,"955 8th St, Atlanta, GA 30301" +263692,iPhone,1,700,09/20/19 13:14,"258 Jefferson St, Boston, MA 02215" +263692,Lightning Charging Cable,1,14.95,09/20/19 13:14,"258 Jefferson St, Boston, MA 02215" +263693,34in Ultrawide Monitor,1,379.99,09/19/19 12:24,"257 River St, San Francisco, CA 94016" +263694,Apple Airpods Headphones,1,150,09/15/19 22:49,"554 Hickory St, Boston, MA 02215" +263695,Lightning Charging Cable,1,14.95,09/11/19 23:04,"725 11th St, Atlanta, GA 30301" +263696,Wired Headphones,1,11.99,09/15/19 07:30,"116 West St, Seattle, WA 98101" +263697,27in FHD Monitor,1,149.99,09/03/19 18:47,"50 Lake St, Los Angeles, CA 90001" +263698,AA Batteries (4-pack),1,3.84,09/18/19 14:23,"291 Cedar St, Seattle, WA 98101" +263699,Lightning Charging Cable,1,14.95,09/09/19 10:25,"626 Wilson St, Los Angeles, CA 90001" +263700,Lightning Charging Cable,1,14.95,09/24/19 13:23,"123 6th St, Austin, TX 73301" +263701,AAA Batteries (4-pack),1,2.99,09/05/19 15:10,"45 7th St, Atlanta, GA 30301" +263702,Apple Airpods Headphones,1,150,09/03/19 20:26,"934 8th St, Dallas, TX 75001" +263703,Wired Headphones,1,11.99,09/06/19 15:04,"324 11th St, Atlanta, GA 30301" +263704,Wired Headphones,1,11.99,09/01/19 17:30,"946 10th St, Boston, MA 02215" +263705,AA Batteries (4-pack),3,3.84,09/28/19 10:22,"746 Wilson St, Los Angeles, CA 90001" +263706,AA Batteries (4-pack),1,3.84,09/13/19 11:50,"86 Park St, San Francisco, CA 94016" +263707,AA Batteries (4-pack),1,3.84,09/17/19 19:47,"850 Adams St, Boston, MA 02215" +263708,USB-C Charging Cable,1,11.95,09/27/19 14:36,"730 Meadow St, Boston, MA 02215" +263709,USB-C Charging Cable,1,11.95,09/02/19 13:30,"636 Sunset St, Los Angeles, CA 90001" +263710,Google Phone,1,600,09/25/19 13:47,"488 Sunset St, Los Angeles, CA 90001" +263711,Apple Airpods Headphones,1,150,09/05/19 15:02,"310 Adams St, Los Angeles, CA 90001" +263712,Apple Airpods Headphones,1,150,09/05/19 16:03,"912 Church St, Dallas, TX 75001" +263713,AAA Batteries (4-pack),1,2.99,09/19/19 23:09,"303 West St, New York City, NY 10001" +263714,Lightning Charging Cable,1,14.95,09/27/19 19:32,"768 Pine St, San Francisco, CA 94016" +263715,27in 4K Gaming Monitor,1,389.99,09/18/19 20:50,"689 Cedar St, New York City, NY 10001" +263716,Wired Headphones,1,11.99,09/01/19 10:06,"977 Jefferson St, Boston, MA 02215" +263717,USB-C Charging Cable,1,11.95,09/01/19 14:39,"27 4th St, Atlanta, GA 30301" +263718,AAA Batteries (4-pack),1,2.99,09/21/19 11:19,"184 Church St, Portland, OR 97035" +263719,Macbook Pro Laptop,1,1700,09/24/19 08:49,"958 Elm St, Los Angeles, CA 90001" +263720,USB-C Charging Cable,1,11.95,09/02/19 14:32,"224 West St, Portland, OR 97035" +263721,AAA Batteries (4-pack),1,2.99,09/14/19 19:20,"39 West St, Portland, OR 97035" +263722,USB-C Charging Cable,1,11.95,09/14/19 13:39,"709 Hickory St, Atlanta, GA 30301" +263723,27in FHD Monitor,1,149.99,09/04/19 19:16,"493 Center St, Dallas, TX 75001" +263724,Lightning Charging Cable,1,14.95,09/18/19 17:56,"301 2nd St, Los Angeles, CA 90001" +263724,Apple Airpods Headphones,1,150,09/18/19 17:56,"301 2nd St, Los Angeles, CA 90001" +263725,27in FHD Monitor,1,149.99,09/24/19 11:22,"622 Ridge St, Los Angeles, CA 90001" +263726,iPhone,1,700,09/04/19 12:21,"846 4th St, New York City, NY 10001" +263727,ThinkPad Laptop,1,999.99,09/07/19 00:46,"709 Hill St, Austin, TX 73301" +263728,Apple Airpods Headphones,1,150,09/30/19 16:15,"523 Chestnut St, San Francisco, CA 94016" +263729,Apple Airpods Headphones,1,150,09/01/19 11:29,"499 Madison St, New York City, NY 10001" +263730,Macbook Pro Laptop,1,1700,09/13/19 17:55,"523 Madison St, Austin, TX 73301" +263731,AA Batteries (4-pack),1,3.84,09/11/19 00:40,"279 Main St, Atlanta, GA 30301" +263732,Apple Airpods Headphones,1,150,09/08/19 02:40,"253 2nd St, Dallas, TX 75001" +263733,AA Batteries (4-pack),1,3.84,09/02/19 16:46,"402 North St, San Francisco, CA 94016" +263734,Bose SoundSport Headphones,1,99.99,09/03/19 16:27,"693 Spruce St, Austin, TX 73301" +263735,USB-C Charging Cable,1,11.95,09/29/19 21:00,"733 5th St, Portland, OR 97035" +263736,Apple Airpods Headphones,1,150,09/07/19 10:51,"914 Adams St, San Francisco, CA 94016" +263737,Wired Headphones,1,11.99,09/25/19 21:42,"108 Cedar St, New York City, NY 10001" +263738,20in Monitor,1,109.99,09/03/19 20:17,"310 Willow St, San Francisco, CA 94016" +263739,ThinkPad Laptop,1,999.99,09/19/19 21:53,"146 Washington St, Boston, MA 02215" +263740,Wired Headphones,1,11.99,09/10/19 20:09,"784 Lake St, Atlanta, GA 30301" +263741,Wired Headphones,1,11.99,09/09/19 07:51,"226 Walnut St, Boston, MA 02215" +263742,Bose SoundSport Headphones,1,99.99,09/15/19 11:52,"846 Main St, San Francisco, CA 94016" +263743,20in Monitor,1,109.99,09/07/19 12:12,"915 4th St, Los Angeles, CA 90001" +263744,27in FHD Monitor,1,149.99,09/22/19 12:02,"97 West St, San Francisco, CA 94016" +263745,Google Phone,1,600,09/12/19 14:01,"190 Lincoln St, Seattle, WA 98101" +263746,Lightning Charging Cable,1,14.95,09/11/19 22:32,"249 South St, Dallas, TX 75001" +263747,iPhone,1,700,09/06/19 09:49,"367 West St, Los Angeles, CA 90001" +263748,AAA Batteries (4-pack),2,2.99,09/18/19 14:06,"829 1st St, San Francisco, CA 94016" +263749,Macbook Pro Laptop,1,1700,09/13/19 12:40,"124 Ridge St, New York City, NY 10001" +263750,Lightning Charging Cable,1,14.95,09/07/19 09:52,"571 Lincoln St, San Francisco, CA 94016" +263751,USB-C Charging Cable,1,11.95,09/05/19 10:05,"733 Spruce St, Los Angeles, CA 90001" +263752,Google Phone,1,600,09/05/19 23:11,"843 5th St, San Francisco, CA 94016" +263753,Lightning Charging Cable,1,14.95,09/17/19 19:26,"447 South St, Boston, MA 02215" +263754,AA Batteries (4-pack),1,3.84,09/07/19 16:51,"623 North St, San Francisco, CA 94016" +263755,34in Ultrawide Monitor,1,379.99,09/12/19 08:07,"273 1st St, San Francisco, CA 94016" +263756,AA Batteries (4-pack),1,3.84,09/27/19 08:42,"640 11th St, Boston, MA 02215" +263757,USB-C Charging Cable,1,11.95,09/12/19 18:30,"933 Maple St, Boston, MA 02215" +263758,USB-C Charging Cable,1,11.95,09/09/19 23:56,"49 1st St, San Francisco, CA 94016" +263759,Apple Airpods Headphones,1,150,09/15/19 11:32,"927 9th St, Seattle, WA 98101" +263760,Wired Headphones,2,11.99,09/22/19 16:56,"863 North St, San Francisco, CA 94016" +263761,USB-C Charging Cable,1,11.95,09/10/19 09:03,"573 River St, Seattle, WA 98101" +263762,AA Batteries (4-pack),1,3.84,09/14/19 05:57,"732 Willow St, Seattle, WA 98101" +263763,Macbook Pro Laptop,1,1700,09/29/19 14:35,"940 Wilson St, Los Angeles, CA 90001" +263764,Apple Airpods Headphones,1,150,09/29/19 12:55,"860 Jefferson St, Portland, OR 97035" +263765,USB-C Charging Cable,2,11.95,09/14/19 16:49,"898 Highland St, Boston, MA 02215" +263766,Lightning Charging Cable,1,14.95,09/14/19 16:19,"790 Ridge St, Atlanta, GA 30301" +263767,Apple Airpods Headphones,1,150,09/08/19 16:24,"4 Ridge St, San Francisco, CA 94016" +263768,USB-C Charging Cable,1,11.95,09/28/19 19:42,"588 Lakeview St, Portland, OR 97035" +263769,AA Batteries (4-pack),1,3.84,09/01/19 20:35,"531 5th St, Dallas, TX 75001" +263770,AA Batteries (4-pack),1,3.84,09/01/19 21:48,"249 Johnson St, San Francisco, CA 94016" +263771,USB-C Charging Cable,1,11.95,09/13/19 00:52,"229 6th St, Portland, OR 97035" +263772,Bose SoundSport Headphones,1,99.99,09/27/19 12:44,"2 River St, Atlanta, GA 30301" +263773,iPhone,1,700,09/15/19 08:59,"520 Maple St, Portland, OR 97035" +263774,Lightning Charging Cable,2,14.95,09/07/19 14:26,"534 Walnut St, New York City, NY 10001" +263775,27in FHD Monitor,1,149.99,09/18/19 08:59,"11 Forest St, New York City, NY 10001" +263776,Flatscreen TV,1,300,09/20/19 10:00,"960 9th St, Los Angeles, CA 90001" +263777,Apple Airpods Headphones,1,150,09/07/19 13:09,"483 Hill St, Austin, TX 73301" +263778,Wired Headphones,1,11.99,09/08/19 11:09,"836 13th St, Portland, OR 97035" +263779,Macbook Pro Laptop,1,1700,09/08/19 10:47,"313 Lakeview St, Boston, MA 02215" +263780,34in Ultrawide Monitor,1,379.99,09/25/19 14:58,"995 South St, New York City, NY 10001" +263781,ThinkPad Laptop,1,999.99,09/07/19 15:27,"961 6th St, San Francisco, CA 94016" +263782,20in Monitor,1,109.99,09/02/19 10:31,"76 Meadow St, San Francisco, CA 94016" +263783,Apple Airpods Headphones,1,150,09/28/19 14:10,"73 2nd St, San Francisco, CA 94016" +263784,Macbook Pro Laptop,1,1700,09/23/19 21:17,"603 7th St, Atlanta, GA 30301" +263785,Wired Headphones,1,11.99,09/02/19 20:51,"929 Lake St, San Francisco, CA 94016" +263786,Apple Airpods Headphones,1,150,09/01/19 16:44,"173 Jefferson St, New York City, NY 10001" +263787,27in 4K Gaming Monitor,1,389.99,09/30/19 15:55,"908 Hickory St, Boston, MA 02215" +263788,Lightning Charging Cable,1,14.95,09/04/19 11:28,"740 Chestnut St, Austin, TX 73301" +263789,iPhone,1,700,09/26/19 19:50,"473 12th St, San Francisco, CA 94016" +263790,AAA Batteries (4-pack),2,2.99,09/18/19 22:48,"32 9th St, Austin, TX 73301" +,,,,, +263791,27in 4K Gaming Monitor,1,389.99,09/25/19 19:33,"346 Maple St, Portland, ME 04101" +263792,USB-C Charging Cable,1,11.95,09/08/19 18:51,"202 6th St, Atlanta, GA 30301" +263793,Wired Headphones,1,11.99,09/10/19 14:18,"581 Willow St, San Francisco, CA 94016" +263794,AAA Batteries (4-pack),1,2.99,09/07/19 10:39,"321 14th St, Los Angeles, CA 90001" +263795,Vareebadd Phone,1,400,09/08/19 09:06,"5 Jefferson St, San Francisco, CA 94016" +263796,Lightning Charging Cable,1,14.95,09/02/19 20:07,"275 2nd St, San Francisco, CA 94016" +263797,AA Batteries (4-pack),1,3.84,09/19/19 16:38,"373 Forest St, New York City, NY 10001" +263798,Lightning Charging Cable,2,14.95,09/12/19 06:24,"928 Johnson St, Atlanta, GA 30301" +263799,USB-C Charging Cable,1,11.95,09/17/19 19:49,"434 Walnut St, Los Angeles, CA 90001" +263800,iPhone,1,700,09/15/19 14:28,"406 Washington St, Los Angeles, CA 90001" +263801,Google Phone,1,600,09/15/19 12:43,"161 Cedar St, Portland, OR 97035" +263801,Wired Headphones,1,11.99,09/15/19 12:43,"161 Cedar St, Portland, OR 97035" +263802,34in Ultrawide Monitor,1,379.99,09/16/19 02:59,"721 Jefferson St, San Francisco, CA 94016" +263803,Vareebadd Phone,1,400,09/02/19 19:19,"228 14th St, Los Angeles, CA 90001" +263804,AAA Batteries (4-pack),1,2.99,09/15/19 08:09,"388 Adams St, Boston, MA 02215" +263805,Wired Headphones,1,11.99,09/18/19 14:41,"341 7th St, San Francisco, CA 94016" +263806,34in Ultrawide Monitor,1,379.99,09/19/19 20:18,"240 12th St, Boston, MA 02215" +263807,Wired Headphones,2,11.99,09/11/19 20:52,"799 Church St, Seattle, WA 98101" +263808,USB-C Charging Cable,1,11.95,09/25/19 21:08,"522 Ridge St, San Francisco, CA 94016" +263809,34in Ultrawide Monitor,1,379.99,09/08/19 12:34,"677 4th St, Atlanta, GA 30301" +263810,27in FHD Monitor,1,149.99,09/28/19 20:26,"89 14th St, New York City, NY 10001" +263811,Lightning Charging Cable,1,14.95,09/17/19 18:08,"11 Center St, Portland, ME 04101" +263812,USB-C Charging Cable,2,11.95,09/16/19 17:50,"859 Adams St, Dallas, TX 75001" +263813,USB-C Charging Cable,1,11.95,09/14/19 06:30,"96 2nd St, Los Angeles, CA 90001" +263814,iPhone,1,700,09/01/19 15:00,"315 West St, Portland, OR 97035" +263815,Flatscreen TV,1,300,09/25/19 19:20,"753 Lakeview St, Los Angeles, CA 90001" +263816,Flatscreen TV,1,300,09/02/19 01:59,"378 Hill St, New York City, NY 10001" +263817,ThinkPad Laptop,1,999.99,09/23/19 15:53,"409 Jefferson St, San Francisco, CA 94016" +263818,Wired Headphones,2,11.99,09/11/19 15:05,"144 Center St, Boston, MA 02215" +263819,USB-C Charging Cable,1,11.95,09/28/19 07:27,"222 5th St, Seattle, WA 98101" +263820,AA Batteries (4-pack),1,3.84,09/14/19 23:06,"811 Highland St, Seattle, WA 98101" +263821,Apple Airpods Headphones,1,150,09/15/19 22:35,"906 Maple St, Dallas, TX 75001" +263822,USB-C Charging Cable,1,11.95,09/22/19 07:43,"2 Pine St, Boston, MA 02215" +263822,27in FHD Monitor,1,149.99,09/22/19 07:43,"2 Pine St, Boston, MA 02215" +263823,Apple Airpods Headphones,1,150,09/25/19 19:25,"699 13th St, San Francisco, CA 94016" +263824,AA Batteries (4-pack),3,3.84,09/04/19 07:40,"89 Lakeview St, Dallas, TX 75001" +263824,Macbook Pro Laptop,1,1700,09/04/19 07:40,"89 Lakeview St, Dallas, TX 75001" +263825,USB-C Charging Cable,1,11.95,09/17/19 14:51,"270 Chestnut St, San Francisco, CA 94016" +263826,AAA Batteries (4-pack),1,2.99,09/23/19 14:27,"988 7th St, Atlanta, GA 30301" +263827,Bose SoundSport Headphones,1,99.99,09/16/19 00:57,"776 Lincoln St, Boston, MA 02215" +263827,AAA Batteries (4-pack),1,2.99,09/16/19 00:57,"776 Lincoln St, Boston, MA 02215" +263828,Lightning Charging Cable,1,14.95,09/10/19 13:15,"97 7th St, New York City, NY 10001" +263829,AAA Batteries (4-pack),1,2.99,09/05/19 18:05,"650 5th St, San Francisco, CA 94016" +263830,AAA Batteries (4-pack),1,2.99,09/30/19 20:14,"867 Maple St, Dallas, TX 75001" +263831,Bose SoundSport Headphones,1,99.99,09/17/19 12:08,"961 West St, Los Angeles, CA 90001" +263832,27in FHD Monitor,1,149.99,09/19/19 20:29,"761 6th St, Boston, MA 02215" +263833,Apple Airpods Headphones,1,150,09/23/19 16:38,"214 North St, Seattle, WA 98101" +263834,27in FHD Monitor,1,149.99,09/22/19 20:48,"59 Park St, Los Angeles, CA 90001" +263835,Bose SoundSport Headphones,1,99.99,09/24/19 03:38,"479 Highland St, Los Angeles, CA 90001" +263836,iPhone,1,700,09/01/19 18:58,"227 Dogwood St, Boston, MA 02215" +263837,Lightning Charging Cable,1,14.95,09/26/19 20:27,"700 Park St, New York City, NY 10001" +263838,USB-C Charging Cable,1,11.95,09/19/19 02:22,"822 Cherry St, Dallas, TX 75001" +263839,Bose SoundSport Headphones,1,99.99,09/02/19 18:06,"165 Cedar St, San Francisco, CA 94016" +263840,AAA Batteries (4-pack),1,2.99,09/16/19 16:03,"744 Jackson St, San Francisco, CA 94016" +263841,USB-C Charging Cable,2,11.95,09/05/19 11:54,"789 6th St, New York City, NY 10001" +263842,Apple Airpods Headphones,1,150,09/21/19 17:46,"647 Walnut St, Dallas, TX 75001" +263843,AAA Batteries (4-pack),1,2.99,09/15/19 21:22,"99 Cherry St, San Francisco, CA 94016" +263844,Bose SoundSport Headphones,1,99.99,09/18/19 18:35,"123 12th St, San Francisco, CA 94016" +263845,Apple Airpods Headphones,1,150,09/18/19 20:54,"68 Park St, Seattle, WA 98101" +263846,AA Batteries (4-pack),1,3.84,09/28/19 17:48,"482 5th St, New York City, NY 10001" +263847,Bose SoundSport Headphones,1,99.99,09/20/19 11:34,"427 Walnut St, Los Angeles, CA 90001" +263848,USB-C Charging Cable,1,11.95,09/11/19 07:42,"140 Jackson St, Atlanta, GA 30301" +263849,AAA Batteries (4-pack),1,2.99,09/29/19 07:46,"905 Forest St, Portland, ME 04101" +263850,USB-C Charging Cable,1,11.95,09/13/19 12:23,"50 6th St, San Francisco, CA 94016" +263851,Lightning Charging Cable,1,14.95,09/14/19 16:38,"827 Pine St, Boston, MA 02215" +263852,Apple Airpods Headphones,1,150,09/18/19 21:45,"820 12th St, Atlanta, GA 30301" +263853,20in Monitor,1,109.99,09/14/19 15:43,"610 Cherry St, Portland, ME 04101" +263854,Wired Headphones,1,11.99,09/23/19 06:24,"412 South St, San Francisco, CA 94016" +263855,Wired Headphones,1,11.99,09/20/19 14:55,"280 8th St, San Francisco, CA 94016" +263856,AA Batteries (4-pack),2,3.84,09/13/19 10:44,"272 Washington St, Seattle, WA 98101" +263857,Wired Headphones,1,11.99,09/24/19 10:41,"70 14th St, Los Angeles, CA 90001" +263858,Bose SoundSport Headphones,1,99.99,09/18/19 08:36,"982 Maple St, San Francisco, CA 94016" +263859,Wired Headphones,1,11.99,09/16/19 12:14,"248 Ridge St, Austin, TX 73301" +263860,AA Batteries (4-pack),1,3.84,09/07/19 12:09,"461 Jefferson St, Los Angeles, CA 90001" +263861,AAA Batteries (4-pack),1,2.99,09/11/19 11:36,"977 8th St, San Francisco, CA 94016" +263862,USB-C Charging Cable,1,11.95,09/03/19 18:52,"183 Main St, Los Angeles, CA 90001" +263863,Bose SoundSport Headphones,1,99.99,09/24/19 01:21,"324 Main St, Los Angeles, CA 90001" +263864,Google Phone,1,600,09/14/19 21:22,"431 14th St, Los Angeles, CA 90001" +263865,AA Batteries (4-pack),1,3.84,09/25/19 11:42,"987 2nd St, Los Angeles, CA 90001" +263866,Wired Headphones,2,11.99,09/09/19 17:32,"358 Meadow St, Los Angeles, CA 90001" +263867,USB-C Charging Cable,1,11.95,09/30/19 13:56,"797 Meadow St, Dallas, TX 75001" +263868,Lightning Charging Cable,1,14.95,09/08/19 20:58,"915 Spruce St, San Francisco, CA 94016" +263869,Google Phone,1,600,09/19/19 08:03,"858 11th St, San Francisco, CA 94016" +263870,Flatscreen TV,1,300,09/27/19 23:40,"513 Elm St, San Francisco, CA 94016" +263871,Lightning Charging Cable,1,14.95,09/24/19 14:31,"883 West St, Los Angeles, CA 90001" +263872,AAA Batteries (4-pack),1,2.99,09/29/19 15:13,"542 Highland St, Atlanta, GA 30301" +263873,AA Batteries (4-pack),1,3.84,09/14/19 09:14,"207 North St, San Francisco, CA 94016" +263874,Apple Airpods Headphones,1,150,09/04/19 18:08,"702 11th St, Seattle, WA 98101" +263875,Lightning Charging Cable,1,14.95,09/10/19 01:19,"969 Dogwood St, Los Angeles, CA 90001" +263876,AA Batteries (4-pack),2,3.84,09/25/19 13:42,"402 South St, San Francisco, CA 94016" +263877,AA Batteries (4-pack),2,3.84,09/09/19 21:40,"442 Park St, Los Angeles, CA 90001" +263878,iPhone,1,700,09/10/19 14:22,"251 Adams St, Seattle, WA 98101" +263879,USB-C Charging Cable,2,11.95,09/12/19 17:35,"162 Lakeview St, Portland, OR 97035" +263880,34in Ultrawide Monitor,1,379.99,09/23/19 14:41,"948 Hill St, Boston, MA 02215" +263881,USB-C Charging Cable,1,11.95,09/27/19 13:10,"830 5th St, Boston, MA 02215" +263882,AA Batteries (4-pack),2,3.84,09/02/19 21:29,"568 6th St, New York City, NY 10001" +263883,AAA Batteries (4-pack),3,2.99,09/20/19 20:00,"796 North St, Los Angeles, CA 90001" +263884,Lightning Charging Cable,1,14.95,09/15/19 15:47,"998 Spruce St, San Francisco, CA 94016" +263885,iPhone,1,700,09/15/19 11:14,"271 2nd St, Los Angeles, CA 90001" +263886,AAA Batteries (4-pack),1,2.99,09/19/19 16:56,"326 Dogwood St, Los Angeles, CA 90001" +263887,Bose SoundSport Headphones,1,99.99,09/24/19 19:27,"557 South St, Austin, TX 73301" +263888,Wired Headphones,1,11.99,09/05/19 20:31,"994 2nd St, Atlanta, GA 30301" +263889,Flatscreen TV,1,300,09/14/19 00:46,"232 Maple St, San Francisco, CA 94016" +263890,27in FHD Monitor,1,149.99,09/16/19 23:06,"726 9th St, Los Angeles, CA 90001" +263891,Flatscreen TV,1,300,09/08/19 12:55,"497 Wilson St, Los Angeles, CA 90001" +263892,Google Phone,1,600,09/03/19 19:41,"95 4th St, Dallas, TX 75001" +263892,USB-C Charging Cable,1,11.95,09/03/19 19:41,"95 4th St, Dallas, TX 75001" +263893,AAA Batteries (4-pack),2,2.99,09/15/19 12:22,"298 Washington St, San Francisco, CA 94016" +263894,AAA Batteries (4-pack),2,2.99,09/10/19 16:27,"155 River St, Boston, MA 02215" +263895,Wired Headphones,1,11.99,09/22/19 19:19,"172 Willow St, Portland, OR 97035" +263896,AAA Batteries (4-pack),1,2.99,09/26/19 20:02,"355 12th St, Dallas, TX 75001" +263897,20in Monitor,1,109.99,09/23/19 16:10,"247 Washington St, Boston, MA 02215" +263898,Wired Headphones,1,11.99,09/09/19 10:36,"360 Jackson St, New York City, NY 10001" +263899,34in Ultrawide Monitor,1,379.99,09/06/19 22:15,"605 Highland St, San Francisco, CA 94016" +263900,AAA Batteries (4-pack),1,2.99,09/26/19 01:10,"211 12th St, Portland, OR 97035" +263901,Bose SoundSport Headphones,1,99.99,09/24/19 11:51,"757 Park St, Seattle, WA 98101" +263902,Apple Airpods Headphones,1,150,09/25/19 18:14,"996 Lakeview St, Atlanta, GA 30301" +263903,27in FHD Monitor,1,149.99,09/11/19 21:12,"472 Dogwood St, New York City, NY 10001" +263904,USB-C Charging Cable,1,11.95,09/21/19 16:35,"718 Washington St, Atlanta, GA 30301" +263905,Lightning Charging Cable,1,14.95,09/09/19 13:13,"942 Chestnut St, Austin, TX 73301" +263906,Lightning Charging Cable,1,14.95,09/14/19 18:31,"324 10th St, Portland, OR 97035" +263907,27in FHD Monitor,1,149.99,09/09/19 01:27,"607 Pine St, Atlanta, GA 30301" +263908,Lightning Charging Cable,1,14.95,09/17/19 20:14,"301 Jefferson St, San Francisco, CA 94016" +263909,AA Batteries (4-pack),1,3.84,09/02/19 12:01,"346 Washington St, San Francisco, CA 94016" +263910,Vareebadd Phone,1,400,09/04/19 22:15,"604 Lincoln St, Austin, TX 73301" +263910,USB-C Charging Cable,1,11.95,09/04/19 22:15,"604 Lincoln St, Austin, TX 73301" +263911,Lightning Charging Cable,1,14.95,09/02/19 17:43,"756 Johnson St, Portland, OR 97035" +263912,USB-C Charging Cable,3,11.95,09/14/19 12:48,"718 Lincoln St, Los Angeles, CA 90001" +263913,USB-C Charging Cable,1,11.95,09/02/19 21:16,"859 Willow St, Boston, MA 02215" +263914,27in 4K Gaming Monitor,1,389.99,09/01/19 21:02,"376 Willow St, Portland, ME 04101" +263915,USB-C Charging Cable,1,11.95,09/24/19 22:08,"948 Meadow St, Atlanta, GA 30301" +263916,iPhone,1,700,09/19/19 11:50,"818 10th St, Portland, ME 04101" +263917,Lightning Charging Cable,1,14.95,09/15/19 20:32,"737 Walnut St, San Francisco, CA 94016" +263918,iPhone,1,700,09/09/19 15:24,"464 Lincoln St, New York City, NY 10001" +263919,Lightning Charging Cable,1,14.95,09/04/19 14:11,"477 4th St, Austin, TX 73301" +263920,27in 4K Gaming Monitor,1,389.99,09/02/19 15:15,"814 7th St, Boston, MA 02215" +263921,Macbook Pro Laptop,1,1700,09/30/19 12:04,"758 Adams St, Austin, TX 73301" +263922,USB-C Charging Cable,1,11.95,09/08/19 16:10,"189 Main St, Austin, TX 73301" +263923,34in Ultrawide Monitor,1,379.99,09/23/19 18:19,"546 Cedar St, Dallas, TX 75001" +263924,27in 4K Gaming Monitor,1,389.99,09/23/19 16:48,"11 Chestnut St, San Francisco, CA 94016" +263925,27in 4K Gaming Monitor,1,389.99,09/06/19 10:32,"381 Spruce St, New York City, NY 10001" +263926,Lightning Charging Cable,1,14.95,09/08/19 18:16,"554 7th St, San Francisco, CA 94016" +263927,iPhone,1,700,09/11/19 20:24,"848 Sunset St, San Francisco, CA 94016" +263927,Lightning Charging Cable,1,14.95,09/11/19 20:24,"848 Sunset St, San Francisco, CA 94016" +263927,Apple Airpods Headphones,1,150,09/11/19 20:24,"848 Sunset St, San Francisco, CA 94016" +263927,Wired Headphones,1,11.99,09/11/19 20:24,"848 Sunset St, San Francisco, CA 94016" +263928,AAA Batteries (4-pack),1,2.99,09/21/19 15:42,"430 6th St, San Francisco, CA 94016" +263929,27in 4K Gaming Monitor,1,389.99,09/28/19 20:44,"864 Elm St, New York City, NY 10001" +263930,Bose SoundSport Headphones,1,99.99,09/11/19 00:30,"826 Willow St, San Francisco, CA 94016" +263931,AA Batteries (4-pack),1,3.84,09/01/19 16:56,"857 Cedar St, Los Angeles, CA 90001" +263932,USB-C Charging Cable,1,11.95,09/28/19 11:19,"700 Lincoln St, Dallas, TX 75001" +263933,Wired Headphones,1,11.99,09/16/19 12:19,"517 Willow St, Seattle, WA 98101" +263934,Wired Headphones,1,11.99,09/08/19 12:17,"44 9th St, New York City, NY 10001" +263935,Lightning Charging Cable,1,14.95,09/16/19 19:29,"512 West St, Dallas, TX 75001" +263936,27in FHD Monitor,1,149.99,09/06/19 14:05,"407 Hickory St, Atlanta, GA 30301" +263937,AAA Batteries (4-pack),1,2.99,09/02/19 08:04,"487 Lake St, Los Angeles, CA 90001" +263938,Lightning Charging Cable,1,14.95,09/10/19 11:53,"455 11th St, Atlanta, GA 30301" +263939,Bose SoundSport Headphones,1,99.99,09/13/19 20:39,"862 Wilson St, San Francisco, CA 94016" +263940,Apple Airpods Headphones,1,150,09/25/19 13:30,"723 Cedar St, New York City, NY 10001" +263941,Lightning Charging Cable,1,14.95,09/13/19 21:28,"757 Hickory St, Los Angeles, CA 90001" +263942,Bose SoundSport Headphones,1,99.99,09/13/19 15:34,"188 2nd St, San Francisco, CA 94016" +263943,34in Ultrawide Monitor,1,379.99,09/11/19 19:12,"588 Lake St, New York City, NY 10001" +263944,20in Monitor,1,109.99,09/19/19 10:14,"474 11th St, San Francisco, CA 94016" +263945,Lightning Charging Cable,1,14.95,09/22/19 12:47,"235 Ridge St, Los Angeles, CA 90001" +263946,Wired Headphones,1,11.99,09/23/19 19:12,"92 1st St, Los Angeles, CA 90001" +263947,AAA Batteries (4-pack),1,2.99,09/10/19 00:52,"473 Highland St, San Francisco, CA 94016" +263948,AA Batteries (4-pack),1,3.84,09/08/19 09:42,"839 Johnson St, San Francisco, CA 94016" +263949,27in FHD Monitor,1,149.99,09/27/19 00:15,"12 Elm St, New York City, NY 10001" +263950,AA Batteries (4-pack),1,3.84,09/18/19 14:11,"760 Church St, Los Angeles, CA 90001" +263951,AAA Batteries (4-pack),1,2.99,09/09/19 11:28,"502 Jackson St, Atlanta, GA 30301" +263952,USB-C Charging Cable,1,11.95,09/05/19 12:42,"520 Jackson St, Los Angeles, CA 90001" +263953,Wired Headphones,1,11.99,09/04/19 09:08,"140 Highland St, San Francisco, CA 94016" +263954,iPhone,1,700,09/14/19 09:50,"732 Elm St, New York City, NY 10001" +263955,USB-C Charging Cable,1,11.95,09/28/19 08:58,"716 Main St, Boston, MA 02215" +263956,AA Batteries (4-pack),1,3.84,09/05/19 18:47,"748 Sunset St, Los Angeles, CA 90001" +263957,AA Batteries (4-pack),1,3.84,09/17/19 12:47,"706 Johnson St, Austin, TX 73301" +263958,Wired Headphones,1,11.99,09/03/19 15:28,"784 8th St, Boston, MA 02215" +263959,AA Batteries (4-pack),1,3.84,09/03/19 17:56,"315 Willow St, Atlanta, GA 30301" +263960,Apple Airpods Headphones,1,150,09/02/19 21:14,"175 Church St, San Francisco, CA 94016" +263961,AA Batteries (4-pack),1,3.84,09/28/19 22:03,"442 13th St, Atlanta, GA 30301" +263962,AA Batteries (4-pack),1,3.84,09/14/19 23:18,"296 5th St, Atlanta, GA 30301" +263963,Macbook Pro Laptop,1,1700,09/30/19 18:01,"400 Park St, Portland, OR 97035" +263964,Apple Airpods Headphones,1,150,09/30/19 17:46,"338 Park St, Atlanta, GA 30301" +263965,Flatscreen TV,1,300,09/14/19 19:50,"622 Pine St, New York City, NY 10001" +263966,34in Ultrawide Monitor,1,379.99,09/14/19 12:25,"380 Main St, Seattle, WA 98101" +263967,Flatscreen TV,1,300,09/07/19 15:18,"647 Lakeview St, Portland, ME 04101" +263968,Lightning Charging Cable,1,14.95,09/22/19 22:24,"43 Jefferson St, Atlanta, GA 30301" +263969,Apple Airpods Headphones,1,150,09/11/19 19:27,"841 Wilson St, Seattle, WA 98101" +263970,Google Phone,1,600,09/03/19 18:45,"767 Center St, Boston, MA 02215" +263970,USB-C Charging Cable,1,11.95,09/03/19 18:45,"767 Center St, Boston, MA 02215" +263971,AA Batteries (4-pack),1,3.84,09/23/19 20:59,"891 Pine St, Dallas, TX 75001" +263972,34in Ultrawide Monitor,1,379.99,09/17/19 12:39,"485 Lincoln St, San Francisco, CA 94016" +263973,USB-C Charging Cable,1,11.95,09/14/19 17:28,"802 Meadow St, Seattle, WA 98101" +263974,AAA Batteries (4-pack),1,2.99,09/18/19 17:52,"998 Lake St, Boston, MA 02215" +263975,USB-C Charging Cable,1,11.95,09/20/19 15:13,"21 North St, San Francisco, CA 94016" +263976,USB-C Charging Cable,1,11.95,09/24/19 12:18,"699 10th St, Dallas, TX 75001" +263977,Wired Headphones,1,11.99,09/22/19 19:57,"954 Adams St, New York City, NY 10001" +263978,USB-C Charging Cable,1,11.95,09/29/19 09:38,"449 River St, San Francisco, CA 94016" +263979,27in FHD Monitor,1,149.99,09/08/19 07:56,"922 Johnson St, Los Angeles, CA 90001" +263980,Macbook Pro Laptop,1,1700,09/21/19 14:09,"782 4th St, San Francisco, CA 94016" +263981,USB-C Charging Cable,1,11.95,09/27/19 19:26,"642 2nd St, San Francisco, CA 94016" +263982,AA Batteries (4-pack),1,3.84,09/26/19 14:28,"457 Forest St, Los Angeles, CA 90001" +263983,LG Washing Machine,1,600.0,09/23/19 10:25,"718 2nd St, Los Angeles, CA 90001" +263984,Bose SoundSport Headphones,1,99.99,09/16/19 17:29,"377 2nd St, Los Angeles, CA 90001" +263985,USB-C Charging Cable,1,11.95,09/27/19 15:07,"226 Cedar St, San Francisco, CA 94016" +263986,iPhone,1,700,09/11/19 21:26,"613 Center St, Atlanta, GA 30301" +263987,AA Batteries (4-pack),1,3.84,09/18/19 11:37,"509 Elm St, San Francisco, CA 94016" +263988,Apple Airpods Headphones,1,150,09/14/19 01:14,"258 Highland St, New York City, NY 10001" +263989,20in Monitor,1,109.99,09/15/19 09:46,"798 South St, San Francisco, CA 94016" +263990,Lightning Charging Cable,1,14.95,09/17/19 20:28,"728 2nd St, San Francisco, CA 94016" +263991,AA Batteries (4-pack),1,3.84,09/29/19 22:16,"963 Dogwood St, Los Angeles, CA 90001" +263992,AA Batteries (4-pack),1,3.84,09/10/19 01:34,"513 7th St, Dallas, TX 75001" +263993,Apple Airpods Headphones,1,150,09/29/19 11:32,"66 1st St, Atlanta, GA 30301" +263994,USB-C Charging Cable,1,11.95,09/07/19 13:53,"448 Lakeview St, Seattle, WA 98101" +263995,AAA Batteries (4-pack),1,2.99,09/08/19 12:41,"503 Wilson St, Los Angeles, CA 90001" +263996,USB-C Charging Cable,1,11.95,09/27/19 09:37,"21 Ridge St, Austin, TX 73301" +263997,USB-C Charging Cable,1,11.95,09/14/19 08:44,"687 Dogwood St, San Francisco, CA 94016" +263998,Bose SoundSport Headphones,1,99.99,09/27/19 15:51,"987 13th St, Atlanta, GA 30301" +263999,Lightning Charging Cable,1,14.95,09/28/19 20:34,"424 9th St, Austin, TX 73301" +264000,Lightning Charging Cable,1,14.95,09/14/19 09:56,"603 River St, Los Angeles, CA 90001" +264001,Wired Headphones,1,11.99,09/08/19 16:14,"628 Spruce St, New York City, NY 10001" +264002,27in 4K Gaming Monitor,1,389.99,09/05/19 00:13,"208 11th St, New York City, NY 10001" +264003,Bose SoundSport Headphones,1,99.99,09/11/19 15:39,"600 Jackson St, Boston, MA 02215" +264004,LG Washing Machine,1,600.0,09/17/19 15:01,"595 Center St, San Francisco, CA 94016" +264005,USB-C Charging Cable,1,11.95,09/21/19 23:20,"773 10th St, New York City, NY 10001" +264006,USB-C Charging Cable,1,11.95,09/04/19 12:46,"318 Madison St, San Francisco, CA 94016" +264007,AA Batteries (4-pack),1,3.84,09/16/19 13:54,"591 Cherry St, New York City, NY 10001" +264008,AAA Batteries (4-pack),1,2.99,09/18/19 05:08,"516 North St, Dallas, TX 75001" +264009,AAA Batteries (4-pack),1,2.99,09/12/19 14:13,"909 Willow St, San Francisco, CA 94016" +264010,USB-C Charging Cable,1,11.95,09/17/19 20:25,"931 Forest St, Los Angeles, CA 90001" +264011,Wired Headphones,1,11.99,09/18/19 21:39,"518 West St, Los Angeles, CA 90001" +264012,USB-C Charging Cable,1,11.95,09/17/19 09:44,"136 Maple St, Austin, TX 73301" +264013,Apple Airpods Headphones,1,150,09/30/19 19:15,"537 Meadow St, Los Angeles, CA 90001" +264014,USB-C Charging Cable,2,11.95,09/27/19 06:30,"941 Center St, New York City, NY 10001" +264015,Apple Airpods Headphones,1,150,09/29/19 10:41,"221 River St, Seattle, WA 98101" +264016,Bose SoundSport Headphones,1,99.99,09/14/19 21:38,"851 13th St, San Francisco, CA 94016" +264017,USB-C Charging Cable,1,11.95,09/04/19 13:13,"564 Jackson St, San Francisco, CA 94016" +264018,AAA Batteries (4-pack),1,2.99,09/12/19 17:54,"374 Highland St, Dallas, TX 75001" +264019,Google Phone,1,600,09/17/19 19:19,"556 Pine St, Los Angeles, CA 90001" +264019,USB-C Charging Cable,1,11.95,09/17/19 19:19,"556 Pine St, Los Angeles, CA 90001" +264020,Apple Airpods Headphones,1,150,09/22/19 05:40,"805 Lake St, Boston, MA 02215" +264021,Lightning Charging Cable,1,14.95,09/05/19 09:37,"144 13th St, Austin, TX 73301" +264022,Lightning Charging Cable,1,14.95,09/12/19 10:24,"631 West St, San Francisco, CA 94016" +264023,AA Batteries (4-pack),1,3.84,09/22/19 10:54,"797 Park St, Portland, OR 97035" +264024,AA Batteries (4-pack),2,3.84,09/07/19 14:58,"962 2nd St, Austin, TX 73301" +264025,AA Batteries (4-pack),1,3.84,09/30/19 21:24,"391 Cedar St, Portland, OR 97035" +264026,Google Phone,1,600,09/01/19 16:50,"245 Jackson St, Dallas, TX 75001" +264027,Macbook Pro Laptop,1,1700,09/09/19 20:30,"91 12th St, Dallas, TX 75001" +264028,USB-C Charging Cable,1,11.95,09/25/19 09:30,"552 Hill St, Austin, TX 73301" +264029,iPhone,1,700,09/29/19 17:00,"666 Maple St, New York City, NY 10001" +264030,AAA Batteries (4-pack),1,2.99,09/09/19 11:33,"205 14th St, San Francisco, CA 94016" +264031,Wired Headphones,1,11.99,09/03/19 13:52,"360 South St, San Francisco, CA 94016" +264032,20in Monitor,1,109.99,09/04/19 12:02,"124 Chestnut St, Los Angeles, CA 90001" +264033,Wired Headphones,1,11.99,09/07/19 15:43,"349 Washington St, New York City, NY 10001" +264034,AAA Batteries (4-pack),1,2.99,09/25/19 21:40,"1 Sunset St, San Francisco, CA 94016" +264035,Apple Airpods Headphones,1,150,09/15/19 11:25,"526 12th St, Portland, OR 97035" +264036,Bose SoundSport Headphones,1,99.99,09/26/19 01:21,"632 11th St, San Francisco, CA 94016" +264037,Lightning Charging Cable,1,14.95,09/23/19 14:39,"242 7th St, Los Angeles, CA 90001" +264038,Macbook Pro Laptop,1,1700,09/29/19 13:37,"914 Forest St, San Francisco, CA 94016" +264039,AAA Batteries (4-pack),2,2.99,09/27/19 17:15,"849 14th St, Austin, TX 73301" +264040,USB-C Charging Cable,1,11.95,09/30/19 05:46,"648 5th St, Seattle, WA 98101" +264041,USB-C Charging Cable,1,11.95,09/19/19 13:16,"218 Park St, Boston, MA 02215" +264042,34in Ultrawide Monitor,1,379.99,09/06/19 14:14,"699 Sunset St, Austin, TX 73301" +264043,Lightning Charging Cable,1,14.95,09/12/19 01:15,"145 Washington St, Portland, OR 97035" +264044,Bose SoundSport Headphones,1,99.99,09/20/19 11:17,"551 Spruce St, San Francisco, CA 94016" +264045,Lightning Charging Cable,1,14.95,09/16/19 12:53,"687 Madison St, Portland, OR 97035" +264046,AAA Batteries (4-pack),3,2.99,09/28/19 13:16,"425 Spruce St, San Francisco, CA 94016" +264047,AA Batteries (4-pack),1,3.84,09/28/19 08:37,"543 Lakeview St, New York City, NY 10001" +264048,Bose SoundSport Headphones,1,99.99,09/26/19 11:30,"136 Lake St, Atlanta, GA 30301" +264049,Wired Headphones,1,11.99,09/02/19 12:27,"821 11th St, San Francisco, CA 94016" +264050,Bose SoundSport Headphones,2,99.99,09/19/19 13:22,"545 Park St, Dallas, TX 75001" +264051,Flatscreen TV,1,300,09/28/19 07:50,"748 Washington St, Los Angeles, CA 90001" +264052,AAA Batteries (4-pack),2,2.99,09/04/19 20:34,"503 12th St, Seattle, WA 98101" +264053,Lightning Charging Cable,1,14.95,09/21/19 22:03,"835 Dogwood St, Los Angeles, CA 90001" +264054,Apple Airpods Headphones,1,150,09/14/19 19:27,"531 Sunset St, Atlanta, GA 30301" +264055,USB-C Charging Cable,1,11.95,09/24/19 18:27,"232 Johnson St, San Francisco, CA 94016" +264056,AA Batteries (4-pack),1,3.84,09/19/19 08:58,"578 Ridge St, Boston, MA 02215" +264057,Bose SoundSport Headphones,1,99.99,09/04/19 21:57,"238 Forest St, Austin, TX 73301" +264058,USB-C Charging Cable,1,11.95,09/19/19 16:11,"519 Lincoln St, San Francisco, CA 94016" +264059,Lightning Charging Cable,1,14.95,09/27/19 00:13,"16 Ridge St, Seattle, WA 98101" +264060,USB-C Charging Cable,1,11.95,09/30/19 22:31,"789 2nd St, Los Angeles, CA 90001" +264061,27in FHD Monitor,1,149.99,09/22/19 12:24,"329 Johnson St, Seattle, WA 98101" +264062,AA Batteries (4-pack),1,3.84,09/19/19 18:41,"22 Church St, Los Angeles, CA 90001" +264063,AA Batteries (4-pack),1,3.84,09/13/19 10:38,"525 Sunset St, New York City, NY 10001" +264064,AA Batteries (4-pack),1,3.84,09/18/19 23:50,"136 Center St, San Francisco, CA 94016" +264065,AAA Batteries (4-pack),1,2.99,09/09/19 14:01,"861 8th St, San Francisco, CA 94016" +264066,Wired Headphones,1,11.99,09/17/19 12:37,"568 Maple St, Seattle, WA 98101" +264067,AA Batteries (4-pack),1,3.84,09/10/19 10:37,"174 10th St, Los Angeles, CA 90001" +264068,AAA Batteries (4-pack),2,2.99,09/17/19 01:19,"608 Maple St, San Francisco, CA 94016" +264069,Wired Headphones,1,11.99,09/17/19 13:03,"962 Jackson St, Boston, MA 02215" +264070,Google Phone,1,600,09/02/19 13:05,"373 Center St, Seattle, WA 98101" +264071,27in 4K Gaming Monitor,1,389.99,09/13/19 17:02,"358 Meadow St, Austin, TX 73301" +264071,Apple Airpods Headphones,1,150,09/13/19 17:02,"358 Meadow St, Austin, TX 73301" +264072,Bose SoundSport Headphones,1,99.99,09/06/19 15:32,"807 Sunset St, Dallas, TX 75001" +264073,Flatscreen TV,1,300,09/26/19 16:05,"750 8th St, New York City, NY 10001" +264074,Wired Headphones,1,11.99,09/25/19 20:17,"315 Elm St, Seattle, WA 98101" +264075,AA Batteries (4-pack),1,3.84,09/20/19 17:05,"627 Wilson St, San Francisco, CA 94016" +264076,Macbook Pro Laptop,1,1700,09/15/19 18:38,"985 Spruce St, New York City, NY 10001" +264077,Lightning Charging Cable,1,14.95,09/14/19 22:41,"88 Lincoln St, New York City, NY 10001" +264078,Vareebadd Phone,1,400,09/26/19 13:31,"181 Sunset St, Los Angeles, CA 90001" +264079,AAA Batteries (4-pack),1,2.99,09/28/19 10:42,"919 Jefferson St, San Francisco, CA 94016" +264080,Bose SoundSport Headphones,1,99.99,09/06/19 14:28,"911 7th St, Seattle, WA 98101" +264081,AAA Batteries (4-pack),4,2.99,09/15/19 22:31,"117 Johnson St, Dallas, TX 75001" +264082,Wired Headphones,1,11.99,09/02/19 09:18,"547 1st St, Portland, OR 97035" +264083,USB-C Charging Cable,1,11.95,09/19/19 15:01,"459 6th St, Atlanta, GA 30301" +264084,iPhone,1,700,09/09/19 09:56,"131 Spruce St, Los Angeles, CA 90001" +264085,LG Dryer,1,600.0,09/02/19 18:04,"235 Center St, Los Angeles, CA 90001" +264086,Flatscreen TV,1,300,09/01/19 19:52,"146 6th St, Los Angeles, CA 90001" +264087,34in Ultrawide Monitor,1,379.99,09/28/19 16:58,"875 River St, Boston, MA 02215" +264088,Flatscreen TV,1,300,09/30/19 11:04,"649 1st St, Boston, MA 02215" +264089,Wired Headphones,1,11.99,09/14/19 18:46,"650 River St, New York City, NY 10001" +264090,AA Batteries (4-pack),1,3.84,09/24/19 17:51,"526 Park St, Dallas, TX 75001" +264091,AA Batteries (4-pack),1,3.84,09/21/19 21:28,"135 Willow St, San Francisco, CA 94016" +264092,AAA Batteries (4-pack),3,2.99,09/18/19 19:49,"285 13th St, Dallas, TX 75001" +264093,AAA Batteries (4-pack),2,2.99,09/21/19 11:16,"74 12th St, New York City, NY 10001" +264094,Macbook Pro Laptop,1,1700,09/03/19 14:39,"861 Adams St, Portland, OR 97035" +264095,Wired Headphones,1,11.99,09/28/19 22:10,"83 Cherry St, Boston, MA 02215" +264096,AAA Batteries (4-pack),1,2.99,09/08/19 07:47,"407 Park St, San Francisco, CA 94016" +264097,Apple Airpods Headphones,1,150,09/18/19 15:18,"192 Cherry St, Dallas, TX 75001" +264098,AA Batteries (4-pack),1,3.84,09/14/19 15:12,"845 Madison St, Austin, TX 73301" +264099,iPhone,1,700,09/01/19 08:49,"802 1st St, Austin, TX 73301" +264100,AAA Batteries (4-pack),2,2.99,09/24/19 12:53,"162 West St, San Francisco, CA 94016" +264101,AAA Batteries (4-pack),1,2.99,09/01/19 23:40,"500 1st St, San Francisco, CA 94016" +264102,Google Phone,1,600,09/26/19 13:31,"803 14th St, San Francisco, CA 94016" +264103,Macbook Pro Laptop,1,1700,09/12/19 10:01,"586 Hill St, Seattle, WA 98101" +264104,USB-C Charging Cable,1,11.95,09/19/19 08:30,"165 South St, San Francisco, CA 94016" +264105,AAA Batteries (4-pack),1,2.99,09/23/19 09:35,"243 Lake St, Los Angeles, CA 90001" +264106,Bose SoundSport Headphones,1,99.99,09/17/19 09:20,"179 1st St, Dallas, TX 75001" +264107,Bose SoundSport Headphones,2,99.99,09/21/19 17:07,"724 Adams St, Seattle, WA 98101" +264108,AA Batteries (4-pack),1,3.84,09/23/19 10:38,"504 North St, San Francisco, CA 94016" +264109,ThinkPad Laptop,1,999.99,09/03/19 19:32,"31 14th St, Los Angeles, CA 90001" +264110,20in Monitor,1,109.99,09/01/19 07:36,"73 Lincoln St, Seattle, WA 98101" +264111,27in FHD Monitor,1,149.99,09/17/19 20:51,"864 8th St, San Francisco, CA 94016" +264112,Lightning Charging Cable,1,14.95,09/18/19 02:46,"105 Chestnut St, Seattle, WA 98101" +264113,Wired Headphones,1,11.99,09/11/19 10:34,"199 Highland St, Boston, MA 02215" +264114,iPhone,1,700,09/07/19 08:38,"972 River St, Portland, OR 97035" +264115,iPhone,1,700,09/26/19 22:25,"875 7th St, Dallas, TX 75001" +264115,Apple Airpods Headphones,1,150,09/26/19 22:25,"875 7th St, Dallas, TX 75001" +264116,Lightning Charging Cable,1,14.95,09/29/19 17:08,"384 Adams St, Boston, MA 02215" +264117,Flatscreen TV,1,300,09/15/19 09:06,"432 Church St, Los Angeles, CA 90001" +264118,ThinkPad Laptop,1,999.99,09/18/19 11:28,"884 River St, New York City, NY 10001" +264119,AAA Batteries (4-pack),1,2.99,09/15/19 14:43,"314 Lincoln St, New York City, NY 10001" +264120,AAA Batteries (4-pack),1,2.99,09/14/19 08:33,"461 South St, New York City, NY 10001" +264121,Macbook Pro Laptop,1,1700,09/22/19 17:08,"915 Highland St, San Francisco, CA 94016" +264122,AA Batteries (4-pack),2,3.84,09/25/19 23:17,"881 6th St, San Francisco, CA 94016" +264123,USB-C Charging Cable,2,11.95,09/25/19 18:17,"220 Maple St, San Francisco, CA 94016" +264124,AAA Batteries (4-pack),1,2.99,09/12/19 23:46,"845 Spruce St, Portland, OR 97035" +264125,34in Ultrawide Monitor,1,379.99,09/16/19 13:02,"347 Jefferson St, Los Angeles, CA 90001" +264126,AAA Batteries (4-pack),1,2.99,09/30/19 19:49,"430 Jefferson St, San Francisco, CA 94016" +264127,20in Monitor,1,109.99,09/27/19 18:16,"289 8th St, San Francisco, CA 94016" +264128,27in FHD Monitor,1,149.99,09/30/19 18:17,"706 Meadow St, Atlanta, GA 30301" +264129,AAA Batteries (4-pack),2,2.99,09/05/19 10:51,"326 Ridge St, Atlanta, GA 30301" +264130,Lightning Charging Cable,1,14.95,09/03/19 20:53,"171 Madison St, Dallas, TX 75001" +264131,27in 4K Gaming Monitor,1,389.99,09/02/19 14:15,"560 Chestnut St, Dallas, TX 75001" +264132,Google Phone,1,600,09/17/19 20:56,"554 North St, Los Angeles, CA 90001" +264133,Lightning Charging Cable,2,14.95,09/03/19 12:06,"406 Chestnut St, Los Angeles, CA 90001" +264134,Wired Headphones,2,11.99,09/10/19 18:22,"519 Forest St, New York City, NY 10001" +264135,Wired Headphones,1,11.99,09/29/19 01:46,"824 Washington St, Austin, TX 73301" +264136,USB-C Charging Cable,1,11.95,09/08/19 21:10,"528 12th St, San Francisco, CA 94016" +264137,27in FHD Monitor,1,149.99,09/25/19 18:21,"682 9th St, San Francisco, CA 94016" +264138,Wired Headphones,1,11.99,09/15/19 15:46,"907 Forest St, Los Angeles, CA 90001" +264139,USB-C Charging Cable,1,11.95,09/17/19 21:20,"417 Ridge St, New York City, NY 10001" +,,,,, +264140,Bose SoundSport Headphones,1,99.99,09/20/19 22:49,"472 River St, San Francisco, CA 94016" +264141,USB-C Charging Cable,1,11.95,09/16/19 16:35,"385 Church St, New York City, NY 10001" +264142,Flatscreen TV,1,300,09/09/19 00:37,"858 10th St, Boston, MA 02215" +264143,Lightning Charging Cable,1,14.95,09/05/19 19:52,"152 South St, San Francisco, CA 94016" +264144,Apple Airpods Headphones,1,150,09/30/19 19:56,"945 Willow St, Portland, OR 97035" +264145,ThinkPad Laptop,1,999.99,09/17/19 12:48,"406 Park St, San Francisco, CA 94016" +264146,Lightning Charging Cable,1,14.95,09/13/19 09:09,"883 4th St, San Francisco, CA 94016" +264147,USB-C Charging Cable,1,11.95,09/13/19 12:12,"999 Hickory St, San Francisco, CA 94016" +264148,Lightning Charging Cable,1,14.95,09/29/19 11:11,"410 4th St, San Francisco, CA 94016" +264149,34in Ultrawide Monitor,1,379.99,09/14/19 12:18,"30 4th St, Austin, TX 73301" +264150,Bose SoundSport Headphones,1,99.99,09/22/19 23:53,"434 9th St, Los Angeles, CA 90001" +264151,AA Batteries (4-pack),1,3.84,09/08/19 20:13,"445 North St, Boston, MA 02215" +264152,Bose SoundSport Headphones,1,99.99,09/12/19 18:42,"177 Main St, Los Angeles, CA 90001" +264153,Apple Airpods Headphones,1,150,09/20/19 13:49,"50 Lincoln St, Dallas, TX 75001" +264154,Google Phone,1,600,09/28/19 13:48,"608 12th St, Los Angeles, CA 90001" +264155,USB-C Charging Cable,1,11.95,09/01/19 21:54,"912 Pine St, Los Angeles, CA 90001" +264156,Bose SoundSport Headphones,1,99.99,09/08/19 16:58,"362 Lincoln St, San Francisco, CA 94016" +264157,USB-C Charging Cable,1,11.95,09/26/19 19:57,"529 Highland St, Boston, MA 02215" +264158,27in 4K Gaming Monitor,1,389.99,09/15/19 13:06,"265 6th St, Boston, MA 02215" +264158,Wired Headphones,2,11.99,09/15/19 13:06,"265 6th St, Boston, MA 02215" +264159,20in Monitor,1,109.99,09/19/19 12:24,"328 Adams St, San Francisco, CA 94016" +264160,27in 4K Gaming Monitor,1,389.99,09/28/19 04:24,"226 Elm St, Atlanta, GA 30301" +264161,Wired Headphones,1,11.99,09/14/19 23:26,"134 1st St, San Francisco, CA 94016" +264162,Lightning Charging Cable,1,14.95,09/23/19 23:53,"144 Lincoln St, Los Angeles, CA 90001" +264163,USB-C Charging Cable,1,11.95,09/18/19 15:05,"339 Forest St, Los Angeles, CA 90001" +264164,AA Batteries (4-pack),1,3.84,09/19/19 16:29,"916 Adams St, San Francisco, CA 94016" +264165,AA Batteries (4-pack),2,3.84,09/20/19 23:31,"974 Maple St, Atlanta, GA 30301" +264166,USB-C Charging Cable,1,11.95,09/24/19 19:20,"158 Meadow St, Portland, OR 97035" +264167,AA Batteries (4-pack),1,3.84,09/16/19 10:51,"438 9th St, New York City, NY 10001" +264168,AAA Batteries (4-pack),2,2.99,09/04/19 16:35,"703 Center St, Boston, MA 02215" +264169,USB-C Charging Cable,1,11.95,09/10/19 13:52,"905 Cedar St, Portland, ME 04101" +264170,Bose SoundSport Headphones,1,99.99,09/10/19 17:33,"972 Forest St, New York City, NY 10001" +264171,Wired Headphones,1,11.99,09/10/19 16:23,"744 Ridge St, New York City, NY 10001" +264172,Wired Headphones,1,11.99,10/01/19 04:41,"700 Center St, Austin, TX 73301" +264173,Lightning Charging Cable,1,14.95,09/25/19 05:26,"426 Lincoln St, San Francisco, CA 94016" +264174,AA Batteries (4-pack),1,3.84,09/07/19 15:54,"679 Sunset St, Atlanta, GA 30301" +264175,Bose SoundSport Headphones,1,99.99,09/05/19 14:50,"288 Ridge St, Boston, MA 02215" +264176,ThinkPad Laptop,1,999.99,09/15/19 18:38,"222 River St, New York City, NY 10001" +264177,Google Phone,1,600,09/08/19 12:40,"967 11th St, Boston, MA 02215" +264178,Apple Airpods Headphones,1,150,09/26/19 00:28,"582 Willow St, Seattle, WA 98101" +264179,Lightning Charging Cable,1,14.95,09/13/19 16:48,"58 Lincoln St, San Francisco, CA 94016" +264180,Google Phone,1,600,09/25/19 18:19,"811 5th St, San Francisco, CA 94016" +264181,Lightning Charging Cable,1,14.95,09/18/19 14:03,"521 Spruce St, Portland, OR 97035" +264182,Bose SoundSport Headphones,1,99.99,09/30/19 23:20,"35 Hill St, Dallas, TX 75001" +264183,AA Batteries (4-pack),2,3.84,09/03/19 14:31,"79 Willow St, Atlanta, GA 30301" +264184,USB-C Charging Cable,1,11.95,09/19/19 21:47,"986 Hill St, Atlanta, GA 30301" +264185,USB-C Charging Cable,1,11.95,09/11/19 21:03,"767 River St, Seattle, WA 98101" +264186,Lightning Charging Cable,1,14.95,09/14/19 12:49,"573 Jefferson St, Los Angeles, CA 90001" +264187,Flatscreen TV,1,300,09/20/19 18:24,"834 7th St, San Francisco, CA 94016" +264188,Lightning Charging Cable,1,14.95,09/24/19 22:01,"835 14th St, New York City, NY 10001" +264189,AA Batteries (4-pack),2,3.84,09/12/19 01:20,"487 12th St, Los Angeles, CA 90001" +264190,ThinkPad Laptop,1,999.99,09/15/19 21:38,"681 Main St, Los Angeles, CA 90001" +264191,20in Monitor,1,109.99,09/10/19 15:35,"502 Chestnut St, San Francisco, CA 94016" +264192,27in 4K Gaming Monitor,1,389.99,09/03/19 18:48,"978 South St, San Francisco, CA 94016" +264193,Apple Airpods Headphones,1,150,09/13/19 15:41,"482 Main St, Boston, MA 02215" +264194,AA Batteries (4-pack),2,3.84,09/14/19 12:15,"696 North St, Portland, OR 97035" +264195,USB-C Charging Cable,1,11.95,09/22/19 19:25,"908 Highland St, Austin, TX 73301" +264196,Wired Headphones,1,11.99,09/17/19 12:54,"344 8th St, San Francisco, CA 94016" +264197,AAA Batteries (4-pack),1,2.99,09/26/19 14:34,"975 West St, San Francisco, CA 94016" +264198,Wired Headphones,1,11.99,09/26/19 04:51,"408 Jackson St, San Francisco, CA 94016" +264199,27in FHD Monitor,1,149.99,09/16/19 13:10,"28 Hill St, Los Angeles, CA 90001" +264200,Lightning Charging Cable,1,14.95,09/16/19 19:00,"187 Lakeview St, San Francisco, CA 94016" +264201,AAA Batteries (4-pack),2,2.99,09/21/19 23:40,"7 West St, Los Angeles, CA 90001" +264202,27in 4K Gaming Monitor,1,389.99,09/21/19 04:18,"770 2nd St, Los Angeles, CA 90001" +264203,Lightning Charging Cable,1,14.95,09/28/19 13:10,"227 Johnson St, New York City, NY 10001" +264204,27in FHD Monitor,1,149.99,09/15/19 14:05,"778 2nd St, Los Angeles, CA 90001" +264205,AAA Batteries (4-pack),1,2.99,09/03/19 18:39,"821 Pine St, New York City, NY 10001" +264206,AAA Batteries (4-pack),2,2.99,09/11/19 12:51,"942 Park St, New York City, NY 10001" +264207,27in FHD Monitor,1,149.99,09/10/19 14:38,"992 5th St, Atlanta, GA 30301" +264208,Wired Headphones,1,11.99,09/15/19 13:30,"266 9th St, Dallas, TX 75001" +264209,USB-C Charging Cable,1,11.95,09/18/19 17:25,"430 Cedar St, Portland, ME 04101" +264210,Apple Airpods Headphones,1,150,09/15/19 15:30,"349 Madison St, Austin, TX 73301" +264211,Apple Airpods Headphones,1,150,09/19/19 20:59,"165 West St, New York City, NY 10001" +264212,Flatscreen TV,1,300,09/27/19 13:25,"478 River St, New York City, NY 10001" +264213,Lightning Charging Cable,2,14.95,09/24/19 01:44,"619 Willow St, Atlanta, GA 30301" +264214,Apple Airpods Headphones,1,150,09/15/19 11:35,"975 Meadow St, New York City, NY 10001" +264215,AA Batteries (4-pack),1,3.84,09/29/19 19:49,"71 14th St, San Francisco, CA 94016" +264216,34in Ultrawide Monitor,1,379.99,09/12/19 09:05,"60 Ridge St, New York City, NY 10001" +264217,20in Monitor,1,109.99,09/01/19 11:04,"850 Jackson St, Portland, OR 97035" +264218,AA Batteries (4-pack),1,3.84,09/27/19 19:26,"241 Adams St, Portland, OR 97035" +264219,AA Batteries (4-pack),1,3.84,09/01/19 12:52,"326 Washington St, San Francisco, CA 94016" +264220,Google Phone,1,600,09/07/19 13:24,"511 West St, San Francisco, CA 94016" +264221,AA Batteries (4-pack),1,3.84,09/11/19 12:37,"921 Forest St, Austin, TX 73301" +264222,Lightning Charging Cable,1,14.95,09/19/19 18:53,"921 Chestnut St, Seattle, WA 98101" +264223,Wired Headphones,1,11.99,09/22/19 01:17,"455 Spruce St, Boston, MA 02215" +264224,Lightning Charging Cable,2,14.95,09/22/19 12:37,"873 Center St, San Francisco, CA 94016" +264225,Apple Airpods Headphones,1,150,09/04/19 20:41,"596 14th St, San Francisco, CA 94016" +264226,Wired Headphones,1,11.99,09/24/19 12:06,"130 Adams St, Los Angeles, CA 90001" +264227,34in Ultrawide Monitor,1,379.99,09/05/19 16:05,"542 4th St, Atlanta, GA 30301" +264228,USB-C Charging Cable,1,11.95,09/06/19 15:19,"174 Forest St, New York City, NY 10001" +264229,USB-C Charging Cable,1,11.95,09/16/19 17:54,"589 Willow St, Los Angeles, CA 90001" +264230,Wired Headphones,1,11.99,09/21/19 12:22,"190 14th St, Seattle, WA 98101" +264231,Apple Airpods Headphones,1,150,09/18/19 11:52,"21 Meadow St, Atlanta, GA 30301" +264232,Apple Airpods Headphones,1,150,09/04/19 23:58,"428 Wilson St, San Francisco, CA 94016" +264233,20in Monitor,1,109.99,09/12/19 20:27,"862 7th St, New York City, NY 10001" +264234,Lightning Charging Cable,1,14.95,09/07/19 21:39,"653 Lake St, Dallas, TX 75001" +264235,Macbook Pro Laptop,1,1700,09/08/19 11:54,"731 Cherry St, Seattle, WA 98101" +264236,27in 4K Gaming Monitor,1,389.99,09/19/19 14:49,"565 Sunset St, Los Angeles, CA 90001" +264237,AA Batteries (4-pack),1,3.84,09/10/19 10:55,"864 Washington St, Austin, TX 73301" +264238,Bose SoundSport Headphones,1,99.99,09/04/19 18:43,"89 Chestnut St, Los Angeles, CA 90001" +264239,27in FHD Monitor,1,149.99,09/08/19 23:57,"240 Highland St, San Francisco, CA 94016" +264240,Macbook Pro Laptop,1,1700,09/08/19 20:50,"671 6th St, Austin, TX 73301" +264241,Macbook Pro Laptop,1,1700,09/07/19 22:12,"125 Church St, New York City, NY 10001" +264242,Lightning Charging Cable,1,14.95,09/14/19 12:53,"694 7th St, San Francisco, CA 94016" +264243,20in Monitor,1,109.99,09/30/19 09:23,"40 8th St, Boston, MA 02215" +264244,USB-C Charging Cable,1,11.95,09/24/19 17:13,"18 Hickory St, Los Angeles, CA 90001" +264245,AAA Batteries (4-pack),2,2.99,09/14/19 18:01,"401 River St, San Francisco, CA 94016" +264246,Wired Headphones,1,11.99,09/26/19 11:31,"785 Center St, Dallas, TX 75001" +264247,Wired Headphones,1,11.99,09/14/19 17:58,"488 4th St, Seattle, WA 98101" +264248,USB-C Charging Cable,2,11.95,09/25/19 17:56,"164 8th St, San Francisco, CA 94016" +264249,34in Ultrawide Monitor,1,379.99,09/26/19 11:43,"870 Church St, San Francisco, CA 94016" +264250,Apple Airpods Headphones,1,150,09/05/19 19:21,"868 Johnson St, Boston, MA 02215" +264251,Bose SoundSport Headphones,1,99.99,09/17/19 23:38,"474 5th St, New York City, NY 10001" +264252,Google Phone,1,600,09/02/19 08:16,"700 Dogwood St, San Francisco, CA 94016" +264253,34in Ultrawide Monitor,1,379.99,09/05/19 22:03,"379 5th St, Boston, MA 02215" +264254,Bose SoundSport Headphones,1,99.99,09/22/19 20:37,"857 4th St, San Francisco, CA 94016" +264254,Apple Airpods Headphones,1,150,09/22/19 20:37,"857 4th St, San Francisco, CA 94016" +264255,USB-C Charging Cable,1,11.95,09/07/19 22:03,"667 Jefferson St, Dallas, TX 75001" +264256,Bose SoundSport Headphones,1,99.99,09/12/19 22:16,"624 2nd St, Portland, ME 04101" +264257,Wired Headphones,1,11.99,09/10/19 07:15,"411 South St, Boston, MA 02215" +264258,20in Monitor,1,109.99,09/02/19 02:59,"490 Meadow St, San Francisco, CA 94016" +264259,AAA Batteries (4-pack),3,2.99,09/08/19 21:08,"980 8th St, Portland, OR 97035" +264260,USB-C Charging Cable,1,11.95,09/14/19 15:25,"334 Cedar St, San Francisco, CA 94016" +264261,27in FHD Monitor,1,149.99,09/04/19 11:53,"927 10th St, Dallas, TX 75001" +264262,Lightning Charging Cable,1,14.95,09/18/19 15:28,"340 Adams St, Seattle, WA 98101" +264263,USB-C Charging Cable,1,11.95,09/23/19 16:25,"862 Spruce St, San Francisco, CA 94016" +264264,Google Phone,1,600,09/23/19 09:57,"272 10th St, New York City, NY 10001" +264265,USB-C Charging Cable,1,11.95,09/28/19 19:58,"873 5th St, San Francisco, CA 94016" +264266,Lightning Charging Cable,1,14.95,09/29/19 10:50,"817 8th St, New York City, NY 10001" +264267,20in Monitor,1,109.99,09/24/19 12:29,"753 14th St, San Francisco, CA 94016" +264268,USB-C Charging Cable,1,11.95,09/07/19 12:25,"387 9th St, San Francisco, CA 94016" +264269,AAA Batteries (4-pack),1,2.99,09/19/19 10:26,"252 Lincoln St, Boston, MA 02215" +264270,AA Batteries (4-pack),2,3.84,09/10/19 19:00,"335 River St, Los Angeles, CA 90001" +264271,Google Phone,1,600,09/21/19 12:20,"848 Adams St, San Francisco, CA 94016" +264272,Bose SoundSport Headphones,1,99.99,09/01/19 16:03,"370 Lincoln St, San Francisco, CA 94016" +264273,Apple Airpods Headphones,1,150,09/27/19 11:53,"425 River St, Los Angeles, CA 90001" +264274,34in Ultrawide Monitor,1,379.99,09/20/19 17:55,"939 Lincoln St, Seattle, WA 98101" +264275,iPhone,1,700,09/08/19 09:41,"557 Forest St, Dallas, TX 75001" +264276,20in Monitor,1,109.99,09/24/19 18:23,"721 Hickory St, Dallas, TX 75001" +264277,27in FHD Monitor,1,149.99,09/17/19 10:30,"182 Chestnut St, Los Angeles, CA 90001" +264278,AAA Batteries (4-pack),1,2.99,09/03/19 12:17,"539 6th St, San Francisco, CA 94016" +264279,27in FHD Monitor,1,149.99,09/13/19 11:04,"46 4th St, Los Angeles, CA 90001" +264280,AAA Batteries (4-pack),1,2.99,09/15/19 21:11,"180 Hill St, Los Angeles, CA 90001" +264281,Google Phone,1,600,09/28/19 11:31,"379 12th St, Los Angeles, CA 90001" +264282,USB-C Charging Cable,1,11.95,09/17/19 18:11,"541 Adams St, San Francisco, CA 94016" +264283,iPhone,1,700,09/24/19 19:09,"144 11th St, New York City, NY 10001" +264283,Wired Headphones,1,11.99,09/24/19 19:09,"144 11th St, New York City, NY 10001" +264284,Vareebadd Phone,1,400,09/23/19 06:05,"506 Meadow St, San Francisco, CA 94016" +264285,Lightning Charging Cable,1,14.95,09/20/19 20:51,"951 Cherry St, Los Angeles, CA 90001" +264286,Wired Headphones,1,11.99,09/06/19 13:25,"447 9th St, San Francisco, CA 94016" +264287,Macbook Pro Laptop,1,1700,09/06/19 17:21,"467 Willow St, San Francisco, CA 94016" +264288,Lightning Charging Cable,1,14.95,09/06/19 16:48,"752 Dogwood St, Austin, TX 73301" +264289,Bose SoundSport Headphones,1,99.99,09/19/19 13:59,"268 13th St, San Francisco, CA 94016" +264290,USB-C Charging Cable,2,11.95,09/16/19 17:01,"774 14th St, San Francisco, CA 94016" +264291,Bose SoundSport Headphones,1,99.99,09/19/19 10:31,"934 14th St, Austin, TX 73301" +264292,Lightning Charging Cable,1,14.95,09/23/19 12:40,"75 6th St, New York City, NY 10001" +264293,Bose SoundSport Headphones,1,99.99,09/28/19 14:47,"532 Maple St, San Francisco, CA 94016" +264294,iPhone,1,700,09/17/19 22:14,"812 Walnut St, Seattle, WA 98101" +264295,34in Ultrawide Monitor,1,379.99,09/16/19 13:50,"986 4th St, New York City, NY 10001" +264296,27in 4K Gaming Monitor,1,389.99,09/21/19 23:06,"716 1st St, New York City, NY 10001" +264297,27in FHD Monitor,1,149.99,09/14/19 13:27,"100 Meadow St, New York City, NY 10001" +264298,AA Batteries (4-pack),1,3.84,09/15/19 11:28,"527 Maple St, New York City, NY 10001" +264299,Lightning Charging Cable,1,14.95,09/15/19 18:20,"464 Lake St, San Francisco, CA 94016" +264300,27in FHD Monitor,1,149.99,09/29/19 18:55,"501 7th St, Los Angeles, CA 90001" +264301,USB-C Charging Cable,1,11.95,09/07/19 17:07,"981 Center St, San Francisco, CA 94016" +264302,USB-C Charging Cable,1,11.95,09/13/19 07:29,"830 8th St, San Francisco, CA 94016" +264303,34in Ultrawide Monitor,1,379.99,09/09/19 16:56,"357 Willow St, Los Angeles, CA 90001" +264304,20in Monitor,1,109.99,09/11/19 22:01,"923 1st St, New York City, NY 10001" +264305,ThinkPad Laptop,1,999.99,09/12/19 02:09,"709 9th St, Seattle, WA 98101" +264306,Lightning Charging Cable,1,14.95,09/27/19 15:11,"995 Willow St, San Francisco, CA 94016" +264307,AA Batteries (4-pack),1,3.84,09/08/19 22:52,"447 Park St, San Francisco, CA 94016" +264308,AA Batteries (4-pack),1,3.84,09/08/19 18:24,"932 North St, Seattle, WA 98101" +264309,AA Batteries (4-pack),2,3.84,09/11/19 09:00,"260 Lake St, Boston, MA 02215" +264310,iPhone,1,700,09/02/19 19:56,"128 Hill St, San Francisco, CA 94016" +264310,Lightning Charging Cable,1,14.95,09/02/19 19:56,"128 Hill St, San Francisco, CA 94016" +264311,Apple Airpods Headphones,1,150,09/20/19 19:36,"311 Highland St, Portland, ME 04101" +264312,Apple Airpods Headphones,1,150,09/13/19 14:30,"967 1st St, Dallas, TX 75001" +264313,iPhone,1,700,09/27/19 21:30,"332 Jefferson St, New York City, NY 10001" +264314,AA Batteries (4-pack),1,3.84,09/01/19 13:36,"718 Forest St, Los Angeles, CA 90001" +264314,Bose SoundSport Headphones,1,99.99,09/01/19 13:36,"718 Forest St, Los Angeles, CA 90001" +264315,Bose SoundSport Headphones,1,99.99,09/16/19 18:20,"637 Dogwood St, Boston, MA 02215" +264316,AAA Batteries (4-pack),1,2.99,09/12/19 23:44,"769 River St, Dallas, TX 75001" +264317,Apple Airpods Headphones,1,150,09/06/19 13:28,"961 West St, San Francisco, CA 94016" +264318,Apple Airpods Headphones,1,150,09/05/19 12:47,"336 Church St, Dallas, TX 75001" +264319,27in 4K Gaming Monitor,1,389.99,09/14/19 10:01,"48 Lake St, San Francisco, CA 94016" +264320,27in 4K Gaming Monitor,1,389.99,09/28/19 09:16,"294 Maple St, San Francisco, CA 94016" +264321,AAA Batteries (4-pack),1,2.99,09/05/19 22:08,"536 Highland St, Austin, TX 73301" +264322,ThinkPad Laptop,1,999.99,09/24/19 14:51,"390 10th St, San Francisco, CA 94016" +264323,Flatscreen TV,1,300,09/19/19 20:43,"894 Highland St, Seattle, WA 98101" +264324,27in FHD Monitor,1,149.99,09/18/19 15:01,"866 Walnut St, New York City, NY 10001" +264325,Lightning Charging Cable,1,14.95,09/15/19 20:06,"314 Wilson St, San Francisco, CA 94016" +264326,Lightning Charging Cable,1,14.95,09/16/19 21:23,"347 6th St, Dallas, TX 75001" +264327,Lightning Charging Cable,1,14.95,09/18/19 19:07,"697 1st St, Los Angeles, CA 90001" +264328,USB-C Charging Cable,2,11.95,09/11/19 14:55,"142 7th St, San Francisco, CA 94016" +264329,iPhone,1,700,09/26/19 07:32,"657 River St, Austin, TX 73301" +264330,Apple Airpods Headphones,1,150,09/30/19 09:59,"302 Hickory St, Portland, ME 04101" +264331,Lightning Charging Cable,1,14.95,09/07/19 15:12,"550 Hill St, Los Angeles, CA 90001" +264332,AAA Batteries (4-pack),6,2.99,09/21/19 15:23,"887 Highland St, San Francisco, CA 94016" +264333,Bose SoundSport Headphones,1,99.99,09/22/19 12:08,"68 Ridge St, Austin, TX 73301" +264334,Apple Airpods Headphones,1,150,09/25/19 22:37,"413 13th St, Atlanta, GA 30301" +264335,27in FHD Monitor,1,149.99,09/17/19 07:51,"205 South St, Boston, MA 02215" +264336,Apple Airpods Headphones,1,150,09/09/19 10:42,"751 Cherry St, San Francisco, CA 94016" +264337,Wired Headphones,1,11.99,09/29/19 17:45,"783 Spruce St, Austin, TX 73301" +264338,Flatscreen TV,1,300,09/19/19 21:33,"867 Church St, New York City, NY 10001" +264339,Vareebadd Phone,1,400,09/06/19 12:03,"215 Adams St, Los Angeles, CA 90001" +264340,USB-C Charging Cable,1,11.95,09/07/19 08:53,"478 4th St, San Francisco, CA 94016" +264341,Bose SoundSport Headphones,1,99.99,09/22/19 22:56,"225 10th St, Seattle, WA 98101" +264342,Bose SoundSport Headphones,1,99.99,09/15/19 17:09,"506 Highland St, Portland, OR 97035" +264343,27in FHD Monitor,1,149.99,09/05/19 18:21,"487 Meadow St, San Francisco, CA 94016" +264344,AA Batteries (4-pack),1,3.84,09/03/19 21:13,"29 7th St, San Francisco, CA 94016" +264345,AAA Batteries (4-pack),1,2.99,09/13/19 12:52,"102 Cherry St, Dallas, TX 75001" +264346,Apple Airpods Headphones,1,150,09/15/19 13:17,"701 Spruce St, San Francisco, CA 94016" +264347,AAA Batteries (4-pack),1,2.99,09/25/19 22:38,"460 Cherry St, Boston, MA 02215" +264348,Wired Headphones,1,11.99,09/04/19 12:23,"498 Lincoln St, Los Angeles, CA 90001" +264349,ThinkPad Laptop,1,999.99,09/03/19 17:10,"484 Elm St, San Francisco, CA 94016" +264350,USB-C Charging Cable,1,11.95,09/17/19 20:49,"210 Johnson St, Portland, OR 97035" +264351,Lightning Charging Cable,1,14.95,09/21/19 09:17,"60 10th St, Boston, MA 02215" +264352,27in 4K Gaming Monitor,1,389.99,09/22/19 06:07,"265 Spruce St, San Francisco, CA 94016" +264353,Bose SoundSport Headphones,1,99.99,09/16/19 13:03,"702 8th St, New York City, NY 10001" +264354,iPhone,1,700,09/05/19 18:57,"542 River St, San Francisco, CA 94016" +264355,Lightning Charging Cable,1,14.95,09/26/19 18:21,"740 Meadow St, Boston, MA 02215" +264356,LG Washing Machine,1,600.0,09/19/19 19:51,"59 Lake St, Dallas, TX 75001" +264357,AAA Batteries (4-pack),3,2.99,09/07/19 15:29,"974 Center St, Dallas, TX 75001" +264358,Google Phone,1,600,09/11/19 16:11,"428 Elm St, Boston, MA 02215" +264359,Lightning Charging Cable,1,14.95,09/11/19 12:16,"224 Main St, Boston, MA 02215" +264360,USB-C Charging Cable,1,11.95,09/26/19 19:51,"553 Center St, Los Angeles, CA 90001" +264361,Apple Airpods Headphones,1,150,09/06/19 20:39,"653 Hickory St, San Francisco, CA 94016" +264362,Bose SoundSport Headphones,1,99.99,09/13/19 15:11,"207 2nd St, Seattle, WA 98101" +264363,iPhone,1,700,09/28/19 12:19,"93 River St, San Francisco, CA 94016" +264364,LG Washing Machine,1,600.0,09/23/19 06:12,"206 2nd St, Atlanta, GA 30301" +264365,LG Washing Machine,1,600.0,09/26/19 10:09,"459 Sunset St, Atlanta, GA 30301" +264366,Google Phone,1,600,09/29/19 14:16,"828 2nd St, Los Angeles, CA 90001" +264366,USB-C Charging Cable,1,11.95,09/29/19 14:16,"828 2nd St, Los Angeles, CA 90001" +264367,AAA Batteries (4-pack),1,2.99,09/25/19 12:26,"183 North St, Boston, MA 02215" +264368,USB-C Charging Cable,1,11.95,09/26/19 12:11,"376 10th St, Atlanta, GA 30301" +264369,Apple Airpods Headphones,1,150,09/18/19 09:46,"533 14th St, Atlanta, GA 30301" +264369,Lightning Charging Cable,1,14.95,09/18/19 09:46,"533 14th St, Atlanta, GA 30301" +264370,AAA Batteries (4-pack),1,2.99,09/30/19 17:06,"568 Madison St, San Francisco, CA 94016" +264371,Google Phone,1,600,09/10/19 19:48,"198 2nd St, San Francisco, CA 94016" +264372,Lightning Charging Cable,1,14.95,09/13/19 13:28,"559 1st St, Atlanta, GA 30301" +264373,USB-C Charging Cable,1,11.95,09/05/19 17:59,"246 7th St, Seattle, WA 98101" +264374,Lightning Charging Cable,1,14.95,09/28/19 16:56,"523 Church St, San Francisco, CA 94016" +264375,AAA Batteries (4-pack),2,2.99,09/11/19 23:53,"189 Meadow St, Atlanta, GA 30301" +264376,AAA Batteries (4-pack),1,2.99,09/30/19 21:47,"60 Adams St, San Francisco, CA 94016" +264377,AAA Batteries (4-pack),2,2.99,09/06/19 23:57,"621 Cherry St, New York City, NY 10001" +264378,Wired Headphones,1,11.99,09/06/19 11:48,"485 Lincoln St, Portland, OR 97035" +264379,27in 4K Gaming Monitor,1,389.99,09/09/19 12:35,"142 2nd St, Dallas, TX 75001" +264380,USB-C Charging Cable,2,11.95,09/29/19 12:44,"378 7th St, Los Angeles, CA 90001" +264381,USB-C Charging Cable,1,11.95,09/23/19 11:30,"327 14th St, San Francisco, CA 94016" +264382,Wired Headphones,1,11.99,09/01/19 09:27,"559 13th St, Seattle, WA 98101" +264383,Lightning Charging Cable,1,14.95,09/14/19 12:51,"688 Forest St, Los Angeles, CA 90001" +264384,Apple Airpods Headphones,1,150,09/08/19 15:06,"468 8th St, Dallas, TX 75001" +264385,iPhone,1,700,09/15/19 14:53,"318 Park St, Portland, OR 97035" +264386,Wired Headphones,1,11.99,09/08/19 16:58,"770 Elm St, Portland, OR 97035" +264387,USB-C Charging Cable,1,11.95,09/08/19 09:58,"32 Washington St, Portland, OR 97035" +264388,Apple Airpods Headphones,1,150,09/13/19 19:16,"716 13th St, Portland, OR 97035" +264389,Wired Headphones,1,11.99,09/16/19 17:10,"77 11th St, San Francisco, CA 94016" +264390,USB-C Charging Cable,1,11.95,09/07/19 23:11,"31 Hickory St, San Francisco, CA 94016" +264391,AAA Batteries (4-pack),1,2.99,09/16/19 18:44,"514 Maple St, San Francisco, CA 94016" +264392,27in FHD Monitor,1,149.99,09/06/19 20:34,"557 Walnut St, Seattle, WA 98101" +264392,AAA Batteries (4-pack),1,2.99,09/06/19 20:34,"557 Walnut St, Seattle, WA 98101" +264393,USB-C Charging Cable,1,11.95,09/27/19 21:57,"996 Lakeview St, San Francisco, CA 94016" +264394,AAA Batteries (4-pack),2,2.99,09/04/19 22:25,"903 4th St, Los Angeles, CA 90001" +264395,AAA Batteries (4-pack),2,2.99,09/27/19 06:52,"467 12th St, San Francisco, CA 94016" +264396,ThinkPad Laptop,1,999.99,09/01/19 13:06,"636 Forest St, Los Angeles, CA 90001" +264397,USB-C Charging Cable,1,11.95,09/13/19 18:20,"801 Chestnut St, Boston, MA 02215" +264398,Wired Headphones,1,11.99,09/29/19 12:22,"892 Lincoln St, Los Angeles, CA 90001" +264399,Lightning Charging Cable,1,14.95,09/01/19 13:10,"423 Main St, Boston, MA 02215" +264400,AA Batteries (4-pack),1,3.84,09/04/19 18:35,"970 Spruce St, Atlanta, GA 30301" +264401,AAA Batteries (4-pack),1,2.99,09/21/19 12:13,"592 1st St, Austin, TX 73301" +264401,iPhone,1,700,09/21/19 12:13,"592 1st St, Austin, TX 73301" +264402,AAA Batteries (4-pack),5,2.99,09/07/19 16:01,"751 2nd St, Seattle, WA 98101" +264403,34in Ultrawide Monitor,1,379.99,09/20/19 19:14,"631 Lakeview St, Austin, TX 73301" +264404,Bose SoundSport Headphones,1,99.99,09/27/19 10:11,"339 Chestnut St, Los Angeles, CA 90001" +264404,Bose SoundSport Headphones,1,99.99,09/27/19 10:11,"339 Chestnut St, Los Angeles, CA 90001" +264405,USB-C Charging Cable,2,11.95,09/10/19 01:23,"117 Hickory St, Los Angeles, CA 90001" +264406,Wired Headphones,2,11.99,09/13/19 11:35,"4 Main St, Los Angeles, CA 90001" +264407,ThinkPad Laptop,1,999.99,09/05/19 18:08,"127 6th St, Los Angeles, CA 90001" +264408,Vareebadd Phone,1,400,09/26/19 11:03,"30 Church St, San Francisco, CA 94016" +264409,Bose SoundSport Headphones,1,99.99,09/09/19 21:36,"856 Chestnut St, San Francisco, CA 94016" +264410,27in 4K Gaming Monitor,1,389.99,09/23/19 14:33,"166 Chestnut St, Atlanta, GA 30301" +264411,USB-C Charging Cable,1,11.95,09/09/19 08:13,"703 River St, San Francisco, CA 94016" +264412,USB-C Charging Cable,1,11.95,09/07/19 21:43,"56 Washington St, Los Angeles, CA 90001" +264413,AAA Batteries (4-pack),1,2.99,09/24/19 22:13,"226 Main St, San Francisco, CA 94016" +264414,USB-C Charging Cable,1,11.95,09/19/19 14:30,"306 Madison St, Los Angeles, CA 90001" +264415,Lightning Charging Cable,1,14.95,09/16/19 12:41,"317 Spruce St, Los Angeles, CA 90001" +264416,AA Batteries (4-pack),3,3.84,09/01/19 13:43,"256 Willow St, Portland, OR 97035" +264417,Vareebadd Phone,1,400,09/22/19 11:15,"375 Hickory St, Los Angeles, CA 90001" +264417,USB-C Charging Cable,1,11.95,09/22/19 11:15,"375 Hickory St, Los Angeles, CA 90001" +264418,Lightning Charging Cable,1,14.95,09/29/19 23:44,"491 12th St, San Francisco, CA 94016" +264419,Bose SoundSport Headphones,1,99.99,09/07/19 14:32,"385 14th St, Atlanta, GA 30301" +264420,USB-C Charging Cable,1,11.95,09/27/19 20:54,"225 Hickory St, San Francisco, CA 94016" +264421,Lightning Charging Cable,1,14.95,09/20/19 11:01,"709 Wilson St, Dallas, TX 75001" +264422,27in FHD Monitor,1,149.99,09/12/19 14:50,"202 South St, San Francisco, CA 94016" +264423,AA Batteries (4-pack),3,3.84,09/09/19 12:28,"393 Hickory St, San Francisco, CA 94016" +264424,Lightning Charging Cable,1,14.95,09/05/19 15:36,"988 Cedar St, San Francisco, CA 94016" +264425,Bose SoundSport Headphones,1,99.99,09/04/19 20:26,"435 South St, Portland, OR 97035" +264426,Bose SoundSport Headphones,1,99.99,09/08/19 01:12,"397 13th St, Seattle, WA 98101" +264427,Bose SoundSport Headphones,1,99.99,09/06/19 20:53,"18 Highland St, Boston, MA 02215" +264428,USB-C Charging Cable,1,11.95,09/03/19 12:10,"826 Sunset St, San Francisco, CA 94016" +264429,AAA Batteries (4-pack),1,2.99,09/11/19 12:13,"714 Cedar St, Seattle, WA 98101" +264429,USB-C Charging Cable,1,11.95,09/11/19 12:13,"714 Cedar St, Seattle, WA 98101" +264430,27in 4K Gaming Monitor,1,389.99,09/21/19 09:49,"419 13th St, Atlanta, GA 30301" +264431,iPhone,1,700,09/27/19 20:12,"892 Hill St, Los Angeles, CA 90001" +264432,iPhone,1,700,09/20/19 08:41,"906 Washington St, Los Angeles, CA 90001" +264432,Wired Headphones,1,11.99,09/20/19 08:41,"906 Washington St, Los Angeles, CA 90001" +264433,Lightning Charging Cable,1,14.95,09/05/19 14:38,"536 5th St, Dallas, TX 75001" +264434,AAA Batteries (4-pack),1,2.99,09/06/19 14:54,"198 9th St, Los Angeles, CA 90001" +264435,USB-C Charging Cable,2,11.95,09/28/19 17:39,"65 5th St, Austin, TX 73301" +264436,ThinkPad Laptop,1,999.99,09/21/19 13:10,"549 Lincoln St, Portland, OR 97035" +264437,Bose SoundSport Headphones,1,99.99,09/28/19 10:12,"885 5th St, Seattle, WA 98101" +264438,Lightning Charging Cable,2,14.95,09/06/19 20:23,"689 West St, Boston, MA 02215" +264439,Wired Headphones,1,11.99,09/06/19 00:09,"585 Dogwood St, Dallas, TX 75001" +264440,iPhone,1,700,09/13/19 23:38,"573 South St, Boston, MA 02215" +264441,Wired Headphones,1,11.99,09/27/19 15:54,"528 Maple St, Boston, MA 02215" +264442,Bose SoundSport Headphones,1,99.99,09/03/19 14:15,"981 13th St, San Francisco, CA 94016" +264443,Lightning Charging Cable,1,14.95,09/02/19 19:21,"927 Spruce St, Boston, MA 02215" +264444,Flatscreen TV,1,300,09/19/19 20:33,"26 Lincoln St, San Francisco, CA 94016" +264445,27in FHD Monitor,1,149.99,09/22/19 23:13,"39 13th St, Dallas, TX 75001" +264446,Wired Headphones,1,11.99,09/03/19 08:50,"269 14th St, San Francisco, CA 94016" +264447,AA Batteries (4-pack),1,3.84,09/14/19 09:18,"261 Ridge St, San Francisco, CA 94016" +264448,Apple Airpods Headphones,1,150,09/22/19 10:36,"964 Park St, San Francisco, CA 94016" +264449,Wired Headphones,1,11.99,09/30/19 20:29,"379 Chestnut St, New York City, NY 10001" +264450,AA Batteries (4-pack),2,3.84,09/19/19 13:46,"29 8th St, Seattle, WA 98101" +264451,Flatscreen TV,1,300,09/27/19 15:31,"179 Park St, San Francisco, CA 94016" +264452,ThinkPad Laptop,1,999.99,09/18/19 10:45,"889 Walnut St, Boston, MA 02215" +264453,Apple Airpods Headphones,1,150,09/09/19 11:48,"515 6th St, Atlanta, GA 30301" +264454,Apple Airpods Headphones,1,150,09/20/19 14:14,"103 Meadow St, Atlanta, GA 30301" +264455,Apple Airpods Headphones,1,150,09/06/19 09:39,"197 Lakeview St, Portland, ME 04101" +264455,27in 4K Gaming Monitor,1,389.99,09/06/19 09:39,"197 Lakeview St, Portland, ME 04101" +264456,AA Batteries (4-pack),1,3.84,09/15/19 17:59,"255 11th St, San Francisco, CA 94016" +264457,AA Batteries (4-pack),1,3.84,09/26/19 18:56,"183 10th St, Austin, TX 73301" +264458,Lightning Charging Cable,1,14.95,09/08/19 14:49,"681 5th St, Seattle, WA 98101" +264459,Lightning Charging Cable,1,14.95,09/18/19 19:03,"917 Washington St, Austin, TX 73301" +264460,Wired Headphones,1,11.99,09/22/19 14:17,"587 Chestnut St, Seattle, WA 98101" +264461,Bose SoundSport Headphones,1,99.99,09/06/19 18:05,"697 Lincoln St, Los Angeles, CA 90001" +264462,27in 4K Gaming Monitor,1,389.99,09/10/19 23:13,"55 Madison St, New York City, NY 10001" +264463,iPhone,1,700,09/17/19 08:55,"150 Cherry St, San Francisco, CA 94016" +264464,AA Batteries (4-pack),1,3.84,09/22/19 22:29,"930 10th St, Austin, TX 73301" +264465,Wired Headphones,1,11.99,09/11/19 19:09,"101 Willow St, Boston, MA 02215" +264466,AA Batteries (4-pack),2,3.84,09/11/19 20:57,"696 Hill St, San Francisco, CA 94016" +264467,Bose SoundSport Headphones,1,99.99,09/20/19 07:11,"545 11th St, San Francisco, CA 94016" +264468,Bose SoundSport Headphones,1,99.99,09/21/19 14:20,"714 Lake St, Boston, MA 02215" +264469,AA Batteries (4-pack),1,3.84,09/01/19 18:16,"621 Meadow St, Dallas, TX 75001" +264470,AA Batteries (4-pack),1,3.84,09/28/19 10:58,"888 13th St, Dallas, TX 75001" +264471,Macbook Pro Laptop,1,1700,09/22/19 13:07,"654 Ridge St, Seattle, WA 98101" +264472,USB-C Charging Cable,1,11.95,09/16/19 11:46,"630 9th St, Los Angeles, CA 90001" +264473,AAA Batteries (4-pack),2,2.99,09/29/19 21:08,"379 Madison St, Boston, MA 02215" +264474,USB-C Charging Cable,1,11.95,09/23/19 00:45,"700 Main St, New York City, NY 10001" +264475,34in Ultrawide Monitor,1,379.99,09/06/19 09:31,"449 Cedar St, Boston, MA 02215" +264476,AA Batteries (4-pack),1,3.84,09/15/19 11:25,"775 14th St, Seattle, WA 98101" +264477,iPhone,1,700,09/01/19 08:29,"256 River St, San Francisco, CA 94016" +264477,Wired Headphones,1,11.99,09/01/19 08:29,"256 River St, San Francisco, CA 94016" +264478,Wired Headphones,1,11.99,09/17/19 06:17,"719 Hill St, Los Angeles, CA 90001" +264479,AAA Batteries (4-pack),1,2.99,09/12/19 08:51,"41 South St, Austin, TX 73301" +264480,Wired Headphones,1,11.99,09/10/19 17:08,"500 Wilson St, San Francisco, CA 94016" +264481,Lightning Charging Cable,1,14.95,09/21/19 08:50,"135 River St, New York City, NY 10001" +264482,iPhone,1,700,09/20/19 11:18,"328 Center St, Portland, ME 04101" +264483,Apple Airpods Headphones,1,150,09/10/19 20:22,"312 Spruce St, New York City, NY 10001" +264484,Apple Airpods Headphones,1,150,09/15/19 20:21,"744 Johnson St, Atlanta, GA 30301" +264485,Wired Headphones,1,11.99,09/20/19 18:52,"456 14th St, Atlanta, GA 30301" +264486,AA Batteries (4-pack),2,3.84,09/14/19 17:39,"784 Cedar St, Austin, TX 73301" +264487,USB-C Charging Cable,1,11.95,09/22/19 17:52,"195 12th St, Boston, MA 02215" +264488,Bose SoundSport Headphones,1,99.99,09/16/19 12:16,"277 6th St, Boston, MA 02215" +264489,Lightning Charging Cable,1,14.95,09/11/19 10:41,"134 Adams St, New York City, NY 10001" +264490,Macbook Pro Laptop,1,1700,09/08/19 16:02,"681 Hill St, Austin, TX 73301" +264491,Apple Airpods Headphones,1,150,09/10/19 15:37,"617 Hickory St, New York City, NY 10001" +264492,Bose SoundSport Headphones,1,99.99,09/16/19 21:05,"558 Forest St, Boston, MA 02215" +264493,27in FHD Monitor,1,149.99,09/19/19 12:52,"766 Spruce St, Boston, MA 02215" +264494,Wired Headphones,1,11.99,09/19/19 18:15,"339 Cherry St, Dallas, TX 75001" +264495,USB-C Charging Cable,1,11.95,09/03/19 10:02,"438 West St, Los Angeles, CA 90001" +264496,Bose SoundSport Headphones,1,99.99,09/04/19 16:34,"765 Church St, Dallas, TX 75001" +Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address +264497,AA Batteries (4-pack),2,3.84,09/25/19 23:53,"688 7th St, San Francisco, CA 94016" +264498,Google Phone,1,600,09/02/19 07:12,"472 13th St, Boston, MA 02215" +264499,Apple Airpods Headphones,1,150,09/21/19 13:51,"544 Madison St, Boston, MA 02215" +264500,27in FHD Monitor,1,149.99,09/12/19 19:01,"468 Hickory St, New York City, NY 10001" +264501,Lightning Charging Cable,1,14.95,09/11/19 20:36,"579 Walnut St, Los Angeles, CA 90001" +264502,Apple Airpods Headphones,1,150,09/07/19 16:34,"70 Meadow St, Los Angeles, CA 90001" +264503,27in 4K Gaming Monitor,1,389.99,09/03/19 07:47,"577 Spruce St, San Francisco, CA 94016" +264504,AAA Batteries (4-pack),1,2.99,09/29/19 21:44,"125 11th St, Dallas, TX 75001" +264505,AAA Batteries (4-pack),2,2.99,09/30/19 18:50,"408 North St, New York City, NY 10001" +264506,Flatscreen TV,1,300,09/10/19 09:02,"413 Maple St, Boston, MA 02215" +264507,USB-C Charging Cable,2,11.95,09/03/19 18:43,"26 Pine St, San Francisco, CA 94016" +264508,iPhone,1,700,09/26/19 22:01,"408 Chestnut St, New York City, NY 10001" +264509,Lightning Charging Cable,1,14.95,09/01/19 07:09,"721 Church St, Los Angeles, CA 90001" +264510,AA Batteries (4-pack),1,3.84,09/30/19 17:46,"406 Walnut St, San Francisco, CA 94016" +264511,Wired Headphones,1,11.99,09/06/19 10:59,"230 11th St, San Francisco, CA 94016" +264512,iPhone,1,700,09/17/19 07:45,"923 Johnson St, Dallas, TX 75001" +264513,AA Batteries (4-pack),3,3.84,09/26/19 12:26,"309 Spruce St, San Francisco, CA 94016" +264514,AA Batteries (4-pack),1,3.84,09/27/19 16:30,"599 Willow St, Los Angeles, CA 90001" +264515,Lightning Charging Cable,1,14.95,09/28/19 17:54,"338 5th St, Portland, OR 97035" +264516,Lightning Charging Cable,1,14.95,09/24/19 19:14,"605 Washington St, San Francisco, CA 94016" +264517,AA Batteries (4-pack),3,3.84,09/08/19 18:27,"941 Jackson St, Portland, OR 97035" +264518,Wired Headphones,1,11.99,09/19/19 14:26,"211 Hickory St, Boston, MA 02215" +264519,AA Batteries (4-pack),1,3.84,09/27/19 15:03,"41 West St, New York City, NY 10001" +264520,20in Monitor,1,109.99,09/06/19 21:49,"632 Highland St, Los Angeles, CA 90001" +264521,Wired Headphones,1,11.99,09/28/19 09:46,"272 4th St, New York City, NY 10001" +264522,Bose SoundSport Headphones,2,99.99,09/15/19 13:57,"754 5th St, Dallas, TX 75001" +264523,Wired Headphones,1,11.99,09/30/19 16:00,"56 Lincoln St, San Francisco, CA 94016" +264524,27in FHD Monitor,1,149.99,09/02/19 20:45,"245 Cedar St, San Francisco, CA 94016" +264525,AA Batteries (4-pack),2,3.84,09/02/19 06:27,"934 Madison St, Boston, MA 02215" +264526,Google Phone,1,600,09/02/19 21:31,"172 Meadow St, Seattle, WA 98101" +264526,Bose SoundSport Headphones,1,99.99,09/02/19 21:31,"172 Meadow St, Seattle, WA 98101" +264527,LG Washing Machine,1,600.0,09/11/19 15:45,"129 Spruce St, Seattle, WA 98101" +264528,Apple Airpods Headphones,1,150,09/02/19 14:55,"376 Highland St, San Francisco, CA 94016" +264529,ThinkPad Laptop,1,999.99,09/19/19 06:23,"447 Lincoln St, New York City, NY 10001" +264530,USB-C Charging Cable,1,11.95,09/09/19 21:37,"632 12th St, San Francisco, CA 94016" +264531,Google Phone,1,600,09/18/19 19:28,"100 14th St, Dallas, TX 75001" +264531,USB-C Charging Cable,1,11.95,09/18/19 19:28,"100 14th St, Dallas, TX 75001" +264532,iPhone,1,700,09/17/19 20:16,"530 Lake St, Austin, TX 73301" +264532,Lightning Charging Cable,1,14.95,09/17/19 20:16,"530 Lake St, Austin, TX 73301" +264533,iPhone,1,700,09/21/19 08:06,"333 Washington St, Atlanta, GA 30301" +264533,Lightning Charging Cable,1,14.95,09/21/19 08:06,"333 Washington St, Atlanta, GA 30301" +264534,AA Batteries (4-pack),1,3.84,09/15/19 20:30,"682 9th St, San Francisco, CA 94016" +264535,AAA Batteries (4-pack),1,2.99,09/20/19 19:25,"330 11th St, New York City, NY 10001" +264536,AAA Batteries (4-pack),4,2.99,09/15/19 18:08,"842 Park St, Austin, TX 73301" +264537,Macbook Pro Laptop,1,1700,09/06/19 10:46,"606 Sunset St, Portland, OR 97035" +264538,Wired Headphones,1,11.99,09/09/19 00:11,"404 Dogwood St, San Francisco, CA 94016" +264539,Google Phone,1,600,09/23/19 19:52,"54 Main St, Los Angeles, CA 90001" +264540,USB-C Charging Cable,1,11.95,09/23/19 11:47,"102 Adams St, Portland, OR 97035" +264541,USB-C Charging Cable,1,11.95,09/02/19 23:23,"934 Ridge St, Los Angeles, CA 90001" +264542,AAA Batteries (4-pack),1,2.99,09/21/19 01:45,"504 Hill St, San Francisco, CA 94016" +264543,Vareebadd Phone,1,400,09/22/19 19:23,"184 Hill St, San Francisco, CA 94016" +264544,Bose SoundSport Headphones,1,99.99,09/09/19 17:40,"122 Washington St, New York City, NY 10001" +264545,20in Monitor,1,109.99,09/26/19 00:19,"576 Willow St, Austin, TX 73301" +264546,USB-C Charging Cable,1,11.95,09/18/19 16:23,"447 9th St, Los Angeles, CA 90001" +264547,AAA Batteries (4-pack),1,2.99,09/10/19 13:15,"295 12th St, New York City, NY 10001" +264548,20in Monitor,1,109.99,09/21/19 19:07,"484 Jefferson St, Los Angeles, CA 90001" +264549,34in Ultrawide Monitor,1,379.99,09/06/19 11:48,"27 Jackson St, New York City, NY 10001" +264550,Lightning Charging Cable,1,14.95,09/04/19 19:10,"839 7th St, Dallas, TX 75001" +264551,AAA Batteries (4-pack),1,2.99,09/11/19 21:27,"640 6th St, Los Angeles, CA 90001" +264552,Wired Headphones,1,11.99,09/02/19 09:18,"600 Willow St, Boston, MA 02215" +264553,iPhone,1,700,09/15/19 22:09,"927 Jefferson St, Boston, MA 02215" +264553,iPhone,1,700,09/15/19 22:09,"927 Jefferson St, Boston, MA 02215" +264554,Bose SoundSport Headphones,1,99.99,09/03/19 15:47,"478 Lake St, Boston, MA 02215" +264555,AA Batteries (4-pack),1,3.84,09/10/19 16:45,"418 Willow St, New York City, NY 10001" +264556,Lightning Charging Cable,1,14.95,09/05/19 15:18,"834 Spruce St, Dallas, TX 75001" +264557,27in FHD Monitor,1,149.99,09/12/19 18:04,"96 Lincoln St, Los Angeles, CA 90001" +264558,Apple Airpods Headphones,1,150,09/02/19 12:32,"4 14th St, Portland, OR 97035" +264559,Lightning Charging Cable,1,14.95,09/10/19 15:38,"924 Hickory St, San Francisco, CA 94016" +264560,Macbook Pro Laptop,1,1700,09/08/19 12:00,"987 14th St, Dallas, TX 75001" +264561,Flatscreen TV,1,300,09/25/19 15:10,"980 14th St, Los Angeles, CA 90001" +264562,27in FHD Monitor,1,149.99,09/17/19 12:25,"11 12th St, Los Angeles, CA 90001" +264563,Lightning Charging Cable,1,14.95,09/26/19 00:58,"382 6th St, San Francisco, CA 94016" +264564,Lightning Charging Cable,1,14.95,09/20/19 13:09,"400 14th St, Dallas, TX 75001" +264565,AA Batteries (4-pack),1,3.84,09/13/19 12:49,"511 Sunset St, Los Angeles, CA 90001" +264566,AAA Batteries (4-pack),1,2.99,09/15/19 15:54,"376 Meadow St, Boston, MA 02215" +264567,AA Batteries (4-pack),1,3.84,09/07/19 22:00,"306 Johnson St, Boston, MA 02215" +264568,iPhone,1,700,09/14/19 13:32,"424 7th St, San Francisco, CA 94016" +264568,Lightning Charging Cable,1,14.95,09/14/19 13:32,"424 7th St, San Francisco, CA 94016" +264569,iPhone,1,700,09/26/19 17:14,"924 Cherry St, Los Angeles, CA 90001" +264569,Lightning Charging Cable,1,14.95,09/26/19 17:14,"924 Cherry St, Los Angeles, CA 90001" +264570,Bose SoundSport Headphones,1,99.99,09/28/19 17:59,"810 Wilson St, San Francisco, CA 94016" +264571,USB-C Charging Cable,1,11.95,09/01/19 22:53,"578 6th St, Seattle, WA 98101" +264571,Lightning Charging Cable,1,14.95,09/01/19 22:53,"578 6th St, Seattle, WA 98101" +264572,AAA Batteries (4-pack),1,2.99,09/11/19 00:21,"93 Church St, Los Angeles, CA 90001" +264573,27in FHD Monitor,1,149.99,09/08/19 07:15,"557 Jackson St, Dallas, TX 75001" +264574,Bose SoundSport Headphones,1,99.99,09/06/19 19:11,"362 Church St, Dallas, TX 75001" +264575,Wired Headphones,1,11.99,09/08/19 19:40,"529 Adams St, San Francisco, CA 94016" +264576,27in 4K Gaming Monitor,1,389.99,09/05/19 13:03,"219 North St, Boston, MA 02215" +264577,Wired Headphones,1,11.99,09/09/19 08:13,"111 Lakeview St, Seattle, WA 98101" +264578,Bose SoundSport Headphones,1,99.99,09/16/19 20:29,"515 Maple St, San Francisco, CA 94016" +264579,Apple Airpods Headphones,1,150,09/14/19 14:20,"981 Ridge St, Los Angeles, CA 90001" +264580,Lightning Charging Cable,1,14.95,09/02/19 12:29,"302 Ridge St, New York City, NY 10001" +264581,Apple Airpods Headphones,1,150,09/29/19 06:33,"427 Elm St, New York City, NY 10001" +264582,Apple Airpods Headphones,1,150,09/15/19 17:23,"784 Center St, Austin, TX 73301" +264582,AAA Batteries (4-pack),1,2.99,09/15/19 17:23,"784 Center St, Austin, TX 73301" +264583,Wired Headphones,1,11.99,09/13/19 16:58,"440 10th St, Dallas, TX 75001" +264584,Flatscreen TV,1,300,09/18/19 19:29,"429 Center St, San Francisco, CA 94016" +264585,Apple Airpods Headphones,1,150,09/15/19 13:00,"382 Maple St, San Francisco, CA 94016" +264586,27in 4K Gaming Monitor,1,389.99,09/30/19 13:22,"776 Highland St, San Francisco, CA 94016" +264587,AAA Batteries (4-pack),1,2.99,09/03/19 13:08,"825 Church St, San Francisco, CA 94016" +264587,Wired Headphones,1,11.99,09/03/19 13:08,"825 Church St, San Francisco, CA 94016" +264588,27in 4K Gaming Monitor,1,389.99,09/26/19 21:11,"331 11th St, New York City, NY 10001" +264589,Lightning Charging Cable,1,14.95,09/10/19 15:42,"248 Willow St, San Francisco, CA 94016" +264590,Bose SoundSport Headphones,1,99.99,09/11/19 13:48,"659 12th St, New York City, NY 10001" +264591,USB-C Charging Cable,1,11.95,09/24/19 12:03,"912 Walnut St, San Francisco, CA 94016" +264592,Bose SoundSport Headphones,1,99.99,09/09/19 09:59,"71 4th St, San Francisco, CA 94016" +264593,Lightning Charging Cable,1,14.95,09/18/19 19:49,"939 13th St, San Francisco, CA 94016" +264594,Bose SoundSport Headphones,1,99.99,09/13/19 21:19,"471 Sunset St, Los Angeles, CA 90001" +264595,Wired Headphones,1,11.99,09/27/19 11:52,"661 1st St, San Francisco, CA 94016" +264596,27in FHD Monitor,1,149.99,09/28/19 18:29,"117 8th St, Los Angeles, CA 90001" +264597,27in 4K Gaming Monitor,1,389.99,09/08/19 11:07,"644 West St, Los Angeles, CA 90001" +264598,AA Batteries (4-pack),2,3.84,09/28/19 10:04,"35 Jackson St, Dallas, TX 75001" +264599,AAA Batteries (4-pack),2,2.99,09/10/19 16:59,"684 Pine St, New York City, NY 10001" +264600,Apple Airpods Headphones,1,150,09/29/19 13:43,"6 Pine St, New York City, NY 10001" +264601,USB-C Charging Cable,1,11.95,09/04/19 12:47,"77 Park St, Portland, ME 04101" +264602,AAA Batteries (4-pack),1,2.99,09/22/19 10:26,"619 Church St, Boston, MA 02215" +264603,AAA Batteries (4-pack),1,2.99,09/15/19 20:31,"754 Hill St, Portland, OR 97035" +264604,Google Phone,1,600,09/27/19 22:15,"127 Willow St, Boston, MA 02215" +264604,USB-C Charging Cable,1,11.95,09/27/19 22:15,"127 Willow St, Boston, MA 02215" +264605,Google Phone,1,600,09/13/19 12:12,"966 12th St, Boston, MA 02215" +264606,Flatscreen TV,1,300,09/19/19 11:08,"124 Sunset St, New York City, NY 10001" +264607,34in Ultrawide Monitor,1,379.99,09/07/19 11:14,"790 Forest St, Los Angeles, CA 90001" +264608,AA Batteries (4-pack),1,3.84,09/26/19 09:20,"264 Main St, Boston, MA 02215" +264609,Apple Airpods Headphones,1,150,09/01/19 22:11,"609 Spruce St, Los Angeles, CA 90001" +264610,ThinkPad Laptop,1,999.99,09/26/19 23:39,"693 North St, Portland, OR 97035" +264611,Macbook Pro Laptop,1,1700,09/03/19 16:18,"661 Jackson St, Los Angeles, CA 90001" +264612,AAA Batteries (4-pack),1,2.99,09/06/19 06:05,"242 Elm St, Portland, ME 04101" +264613,Wired Headphones,1,11.99,09/15/19 14:49,"623 Hill St, Portland, OR 97035" +264614,AAA Batteries (4-pack),1,2.99,09/26/19 21:26,"896 Elm St, San Francisco, CA 94016" +264615,AAA Batteries (4-pack),2,2.99,09/15/19 12:53,"569 9th St, Atlanta, GA 30301" +264616,Lightning Charging Cable,1,14.95,09/18/19 18:27,"83 Cedar St, San Francisco, CA 94016" +264617,AA Batteries (4-pack),2,3.84,09/06/19 18:42,"663 Lakeview St, Dallas, TX 75001" +264618,Bose SoundSport Headphones,1,99.99,09/20/19 08:58,"824 10th St, Boston, MA 02215" +264619,27in 4K Gaming Monitor,1,389.99,09/27/19 20:05,"29 Ridge St, Austin, TX 73301" +264620,20in Monitor,1,109.99,09/03/19 12:37,"160 4th St, Portland, OR 97035" +264620,AA Batteries (4-pack),1,3.84,09/03/19 12:37,"160 4th St, Portland, OR 97035" +264621,Apple Airpods Headphones,1,150,09/26/19 13:04,"376 Johnson St, New York City, NY 10001" +264622,Lightning Charging Cable,1,14.95,09/30/19 16:42,"17 Lakeview St, San Francisco, CA 94016" +264623,Lightning Charging Cable,1,14.95,09/12/19 13:42,"355 Jefferson St, San Francisco, CA 94016" +264624,AA Batteries (4-pack),2,3.84,09/21/19 13:52,"358 Chestnut St, Atlanta, GA 30301" +264625,Apple Airpods Headphones,1,150,09/29/19 20:24,"50 13th St, Los Angeles, CA 90001" +264626,USB-C Charging Cable,2,11.95,09/28/19 11:09,"335 Adams St, New York City, NY 10001" +264627,AAA Batteries (4-pack),1,2.99,09/05/19 12:30,"78 Forest St, Dallas, TX 75001" +264628,AA Batteries (4-pack),1,3.84,09/10/19 22:47,"350 North St, New York City, NY 10001" +264629,27in FHD Monitor,1,149.99,09/06/19 17:12,"471 River St, Dallas, TX 75001" +264630,Bose SoundSport Headphones,1,99.99,09/25/19 12:36,"110 Cedar St, Austin, TX 73301" +264631,Wired Headphones,1,11.99,09/28/19 20:28,"545 1st St, San Francisco, CA 94016" +264632,AA Batteries (4-pack),1,3.84,09/05/19 22:16,"427 4th St, New York City, NY 10001" +264633,Lightning Charging Cable,1,14.95,09/28/19 13:25,"315 Willow St, San Francisco, CA 94016" +264634,Bose SoundSport Headphones,1,99.99,09/13/19 21:51,"916 Cedar St, Dallas, TX 75001" +264635,Wired Headphones,1,11.99,09/18/19 19:53,"682 Highland St, San Francisco, CA 94016" +264636,Lightning Charging Cable,1,14.95,09/08/19 11:24,"975 South St, Boston, MA 02215" +264637,Apple Airpods Headphones,1,150,09/03/19 21:58,"907 7th St, Austin, TX 73301" +264638,20in Monitor,1,109.99,09/29/19 08:48,"810 Highland St, Portland, OR 97035" +264639,Wired Headphones,2,11.99,09/20/19 09:02,"511 Jackson St, Los Angeles, CA 90001" +264640,LG Washing Machine,1,600.0,09/25/19 17:44,"151 9th St, Boston, MA 02215" +264641,Wired Headphones,1,11.99,09/03/19 06:48,"916 West St, New York City, NY 10001" +264642,Wired Headphones,1,11.99,09/12/19 18:53,"135 Washington St, Boston, MA 02215" +264643,AAA Batteries (4-pack),3,2.99,09/15/19 21:20,"723 Jackson St, Portland, OR 97035" +264644,iPhone,1,700,09/10/19 11:45,"185 2nd St, Seattle, WA 98101" +264644,Lightning Charging Cable,1,14.95,09/10/19 11:45,"185 2nd St, Seattle, WA 98101" +264645,AA Batteries (4-pack),2,3.84,09/28/19 17:32,"10 Dogwood St, New York City, NY 10001" +264646,Apple Airpods Headphones,1,150,09/23/19 13:45,"827 Lake St, Los Angeles, CA 90001" +264647,Apple Airpods Headphones,1,150,09/06/19 16:02,"658 Highland St, Boston, MA 02215" +264648,AA Batteries (4-pack),1,3.84,09/08/19 20:08,"229 Hickory St, Atlanta, GA 30301" +264649,USB-C Charging Cable,1,11.95,09/09/19 18:02,"599 8th St, San Francisco, CA 94016" +264650,ThinkPad Laptop,1,999.99,09/23/19 20:28,"656 Walnut St, Dallas, TX 75001" +264651,Apple Airpods Headphones,1,150,09/23/19 10:42,"494 South St, San Francisco, CA 94016" +264652,LG Dryer,1,600.0,09/19/19 07:43,"373 Ridge St, Seattle, WA 98101" +264653,27in FHD Monitor,1,149.99,09/23/19 13:02,"176 River St, New York City, NY 10001" +264654,27in FHD Monitor,1,149.99,09/13/19 10:58,"594 Cedar St, Atlanta, GA 30301" +264655,AA Batteries (4-pack),1,3.84,09/05/19 14:38,"173 Elm St, Los Angeles, CA 90001" +264656,Lightning Charging Cable,1,14.95,09/01/19 08:36,"264 Dogwood St, Portland, ME 04101" +264657,USB-C Charging Cable,1,11.95,09/28/19 13:35,"791 Ridge St, New York City, NY 10001" +264658,AAA Batteries (4-pack),1,2.99,09/20/19 18:48,"166 Pine St, Seattle, WA 98101" +264659,Google Phone,1,600,09/22/19 21:44,"487 Lake St, Boston, MA 02215" +264660,ThinkPad Laptop,1,999.99,09/28/19 13:29,"135 Cedar St, New York City, NY 10001" +264661,Apple Airpods Headphones,1,150,09/03/19 11:01,"172 River St, San Francisco, CA 94016" +264662,Lightning Charging Cable,1,14.95,09/15/19 12:02,"546 Sunset St, Dallas, TX 75001" +264663,AAA Batteries (4-pack),1,2.99,09/18/19 09:23,"404 2nd St, Seattle, WA 98101" +264664,AA Batteries (4-pack),1,3.84,09/06/19 22:25,"593 West St, Los Angeles, CA 90001" +264665,Wired Headphones,1,11.99,09/26/19 18:14,"680 Hill St, Atlanta, GA 30301" +264666,Google Phone,1,600,09/08/19 09:45,"657 Forest St, Boston, MA 02215" +264667,AAA Batteries (4-pack),1,2.99,09/05/19 13:10,"340 West St, New York City, NY 10001" +264668,AA Batteries (4-pack),2,3.84,09/15/19 12:37,"995 Walnut St, Dallas, TX 75001" +264669,Apple Airpods Headphones,1,150,09/09/19 08:33,"486 Johnson St, Austin, TX 73301" +264670,Wired Headphones,1,11.99,09/25/19 14:34,"992 Ridge St, Seattle, WA 98101" +264671,USB-C Charging Cable,1,11.95,09/21/19 08:37,"552 10th St, New York City, NY 10001" +264672,Lightning Charging Cable,1,14.95,09/23/19 19:05,"891 Adams St, Portland, OR 97035" +264673,AA Batteries (4-pack),1,3.84,09/05/19 19:25,"627 Walnut St, San Francisco, CA 94016" +264674,USB-C Charging Cable,1,11.95,09/04/19 07:47,"558 Lincoln St, Atlanta, GA 30301" +264675,ThinkPad Laptop,1,999.99,09/19/19 00:01,"133 Washington St, New York City, NY 10001" +264676,Bose SoundSport Headphones,1,99.99,09/20/19 01:06,"252 Forest St, Austin, TX 73301" +264677,Apple Airpods Headphones,1,150,09/10/19 22:07,"331 Johnson St, Austin, TX 73301" +264678,Wired Headphones,1,11.99,09/15/19 10:21,"972 Highland St, Dallas, TX 75001" +264679,Apple Airpods Headphones,1,150,09/03/19 14:47,"59 Hickory St, New York City, NY 10001" +264680,iPhone,1,700,09/08/19 21:28,"768 River St, San Francisco, CA 94016" +264681,Flatscreen TV,1,300,09/21/19 07:01,"462 Center St, Austin, TX 73301" +264682,AA Batteries (4-pack),1,3.84,09/23/19 18:14,"553 Cherry St, Los Angeles, CA 90001" +264683,USB-C Charging Cable,1,11.95,09/19/19 00:34,"697 9th St, Los Angeles, CA 90001" +264684,Apple Airpods Headphones,1,150,09/23/19 19:28,"614 Washington St, Austin, TX 73301" +264685,Flatscreen TV,1,300,09/25/19 13:13,"105 Wilson St, Atlanta, GA 30301" +264686,Apple Airpods Headphones,1,150,09/27/19 08:27,"864 13th St, Atlanta, GA 30301" +264687,AAA Batteries (4-pack),2,2.99,09/18/19 09:38,"62 Madison St, San Francisco, CA 94016" +264688,Wired Headphones,1,11.99,09/23/19 08:37,"329 Pine St, New York City, NY 10001" +264689,Apple Airpods Headphones,1,150,09/16/19 10:47,"19 Washington St, San Francisco, CA 94016" +264690,USB-C Charging Cable,1,11.95,09/16/19 15:58,"457 Jackson St, Seattle, WA 98101" +264691,AA Batteries (4-pack),1,3.84,09/21/19 11:11,"594 Cherry St, Boston, MA 02215" +264692,Apple Airpods Headphones,1,150,09/05/19 22:24,"625 West St, San Francisco, CA 94016" +264693,Lightning Charging Cable,1,14.95,09/29/19 19:38,"949 5th St, San Francisco, CA 94016" +264694,AAA Batteries (4-pack),1,2.99,09/18/19 18:51,"617 Lake St, Los Angeles, CA 90001" +264695,Apple Airpods Headphones,1,150,09/07/19 17:00,"674 13th St, Dallas, TX 75001" +264696,AAA Batteries (4-pack),1,2.99,09/11/19 20:31,"701 West St, Austin, TX 73301" +264697,iPhone,1,700,09/16/19 22:53,"556 Lincoln St, Dallas, TX 75001" +264698,20in Monitor,1,109.99,09/04/19 15:10,"95 Center St, Seattle, WA 98101" +264699,LG Dryer,1,600.0,09/01/19 13:09,"180 Cedar St, Portland, OR 97035" +264700,27in 4K Gaming Monitor,1,389.99,09/08/19 22:41,"213 2nd St, Los Angeles, CA 90001" +264701,Wired Headphones,3,11.99,09/25/19 17:30,"167 Lincoln St, Dallas, TX 75001" +264702,Bose SoundSport Headphones,1,99.99,09/13/19 01:19,"136 Madison St, New York City, NY 10001" +264703,AAA Batteries (4-pack),2,2.99,09/11/19 16:19,"73 Cherry St, San Francisco, CA 94016" +264704,iPhone,1,700,09/18/19 09:16,"877 14th St, Los Angeles, CA 90001" +264705,Bose SoundSport Headphones,1,99.99,09/13/19 07:38,"614 Madison St, Seattle, WA 98101" +264706,27in FHD Monitor,1,149.99,09/20/19 23:44,"445 Madison St, San Francisco, CA 94016" +264707,Wired Headphones,1,11.99,09/03/19 15:23,"292 Spruce St, San Francisco, CA 94016" +264707,USB-C Charging Cable,1,11.95,09/03/19 15:23,"292 Spruce St, San Francisco, CA 94016" +264708,Vareebadd Phone,1,400,09/14/19 21:53,"709 North St, San Francisco, CA 94016" +264708,Wired Headphones,1,11.99,09/14/19 21:53,"709 North St, San Francisco, CA 94016" +264709,iPhone,1,700,09/16/19 16:23,"67 Meadow St, Dallas, TX 75001" +264709,Lightning Charging Cable,1,14.95,09/16/19 16:23,"67 Meadow St, Dallas, TX 75001" +264710,AAA Batteries (4-pack),1,2.99,09/03/19 15:29,"372 Washington St, Dallas, TX 75001" +264711,34in Ultrawide Monitor,1,379.99,09/14/19 14:12,"716 6th St, Los Angeles, CA 90001" +264712,27in 4K Gaming Monitor,1,389.99,09/17/19 12:56,"644 6th St, Dallas, TX 75001" +264713,Lightning Charging Cable,2,14.95,09/11/19 18:14,"553 Adams St, Austin, TX 73301" +264714,20in Monitor,1,109.99,09/30/19 12:25,"150 Hickory St, Portland, OR 97035" +264715,20in Monitor,1,109.99,09/13/19 01:44,"368 Lakeview St, Portland, OR 97035" +264716,ThinkPad Laptop,1,999.99,09/19/19 21:13,"769 14th St, San Francisco, CA 94016" +264717,USB-C Charging Cable,1,11.95,09/17/19 08:37,"55 Center St, New York City, NY 10001" +264718,Macbook Pro Laptop,1,1700,09/13/19 12:09,"103 Willow St, Seattle, WA 98101" +264719,USB-C Charging Cable,1,11.95,09/22/19 12:19,"495 1st St, San Francisco, CA 94016" +264720,27in 4K Gaming Monitor,1,389.99,09/22/19 08:11,"435 6th St, San Francisco, CA 94016" +264721,Lightning Charging Cable,1,14.95,09/29/19 16:45,"569 Madison St, Dallas, TX 75001" +264722,USB-C Charging Cable,2,11.95,09/06/19 07:59,"617 Cherry St, Los Angeles, CA 90001" +264723,Bose SoundSport Headphones,1,99.99,09/10/19 10:34,"742 Hickory St, New York City, NY 10001" +264724,27in 4K Gaming Monitor,1,389.99,09/03/19 09:05,"326 Sunset St, New York City, NY 10001" +264725,AAA Batteries (4-pack),1,2.99,09/29/19 14:41,"789 4th St, Seattle, WA 98101" +264726,AAA Batteries (4-pack),1,2.99,09/27/19 16:50,"375 4th St, Seattle, WA 98101" +264727,ThinkPad Laptop,1,999.99,09/16/19 10:56,"858 Cedar St, Atlanta, GA 30301" +264728,AA Batteries (4-pack),1,3.84,09/26/19 23:10,"720 4th St, Los Angeles, CA 90001" +264729,AA Batteries (4-pack),1,3.84,09/08/19 20:53,"760 6th St, Dallas, TX 75001" +264730,AA Batteries (4-pack),1,3.84,09/13/19 13:17,"498 Forest St, New York City, NY 10001" +264730,Lightning Charging Cable,1,14.95,09/13/19 13:17,"498 Forest St, New York City, NY 10001" +264731,27in FHD Monitor,1,149.99,09/28/19 12:06,"636 Madison St, Boston, MA 02215" +264732,USB-C Charging Cable,1,11.95,09/19/19 13:16,"685 Maple St, San Francisco, CA 94016" +264733,USB-C Charging Cable,1,11.95,09/15/19 18:22,"44 Washington St, Boston, MA 02215" +264734,Apple Airpods Headphones,1,150,09/20/19 20:08,"897 Main St, Los Angeles, CA 90001" +264735,AA Batteries (4-pack),2,3.84,09/16/19 09:46,"165 Main St, Los Angeles, CA 90001" +264736,AAA Batteries (4-pack),1,2.99,09/16/19 15:09,"33 Hickory St, Atlanta, GA 30301" +264737,34in Ultrawide Monitor,1,379.99,09/16/19 12:01,"253 North St, New York City, NY 10001" +264738,27in 4K Gaming Monitor,1,389.99,09/05/19 15:54,"717 Jackson St, Seattle, WA 98101" +264739,ThinkPad Laptop,1,999.99,09/08/19 18:11,"825 Madison St, Boston, MA 02215" +264740,Macbook Pro Laptop,1,1700,09/26/19 14:18,"434 South St, Dallas, TX 75001" +264740,Flatscreen TV,1,300,09/26/19 14:18,"434 South St, Dallas, TX 75001" +264741,20in Monitor,1,109.99,09/12/19 10:24,"449 Lake St, San Francisco, CA 94016" +264742,iPhone,1,700,09/06/19 14:55,"284 Elm St, Portland, ME 04101" +264742,Wired Headphones,1,11.99,09/06/19 14:55,"284 Elm St, Portland, ME 04101" +264743,34in Ultrawide Monitor,1,379.99,09/12/19 04:31,"347 6th St, Boston, MA 02215" +264744,27in 4K Gaming Monitor,1,389.99,09/01/19 09:54,"107 Adams St, Portland, OR 97035" +264745,Wired Headphones,1,11.99,09/18/19 17:05,"634 5th St, San Francisco, CA 94016" +264746,34in Ultrawide Monitor,1,379.99,09/06/19 20:16,"902 Walnut St, Seattle, WA 98101" +264747,Wired Headphones,1,11.99,09/15/19 17:44,"430 Cherry St, San Francisco, CA 94016" +264748,27in FHD Monitor,1,149.99,09/02/19 12:10,"503 13th St, Los Angeles, CA 90001" +264749,27in FHD Monitor,1,149.99,09/10/19 08:30,"100 5th St, Los Angeles, CA 90001" +264750,27in 4K Gaming Monitor,1,389.99,09/02/19 15:30,"737 Hickory St, Austin, TX 73301" +264751,Macbook Pro Laptop,1,1700,09/03/19 22:22,"766 Lincoln St, Boston, MA 02215" +264752,USB-C Charging Cable,1,11.95,09/25/19 03:15,"777 14th St, Los Angeles, CA 90001" +264752,AA Batteries (4-pack),1,3.84,09/25/19 03:15,"777 14th St, Los Angeles, CA 90001" +264753,Apple Airpods Headphones,1,150,09/13/19 22:57,"452 14th St, San Francisco, CA 94016" +264754,Wired Headphones,1,11.99,09/24/19 18:40,"93 14th St, Portland, OR 97035" +264755,Apple Airpods Headphones,1,150,09/22/19 09:59,"726 Maple St, Los Angeles, CA 90001" +264755,27in FHD Monitor,1,149.99,09/22/19 09:59,"726 Maple St, Los Angeles, CA 90001" +264756,Bose SoundSport Headphones,1,99.99,09/11/19 00:23,"347 8th St, New York City, NY 10001" +264757,Lightning Charging Cable,1,14.95,09/21/19 21:41,"519 Elm St, Los Angeles, CA 90001" +264758,Lightning Charging Cable,1,14.95,09/02/19 20:49,"600 13th St, Dallas, TX 75001" +264759,27in FHD Monitor,1,149.99,09/14/19 19:05,"540 6th St, Atlanta, GA 30301" +264760,Lightning Charging Cable,1,14.95,09/14/19 15:33,"707 Hill St, Atlanta, GA 30301" +264761,Lightning Charging Cable,1,14.95,09/16/19 16:47,"495 Spruce St, Portland, OR 97035" +264762,AA Batteries (4-pack),1,3.84,09/28/19 13:53,"764 Jackson St, Atlanta, GA 30301" +264763,34in Ultrawide Monitor,1,379.99,09/19/19 12:23,"253 Willow St, Seattle, WA 98101" +264764,27in FHD Monitor,1,149.99,09/23/19 19:32,"107 Jefferson St, Atlanta, GA 30301" +264765,Apple Airpods Headphones,1,150,09/25/19 22:04,"16 11th St, Dallas, TX 75001" +264766,AA Batteries (4-pack),1,3.84,09/02/19 09:17,"61 Cherry St, San Francisco, CA 94016" +264767,iPhone,1,700,09/18/19 22:58,"426 2nd St, San Francisco, CA 94016" +264767,Lightning Charging Cable,1,14.95,09/18/19 22:58,"426 2nd St, San Francisco, CA 94016" +264768,USB-C Charging Cable,1,11.95,09/21/19 21:42,"234 Highland St, Los Angeles, CA 90001" +264769,Wired Headphones,1,11.99,09/29/19 13:13,"196 8th St, San Francisco, CA 94016" +264770,USB-C Charging Cable,1,11.95,09/25/19 16:09,"642 Wilson St, Los Angeles, CA 90001" +264771,Lightning Charging Cable,1,14.95,09/16/19 14:03,"693 8th St, San Francisco, CA 94016" +264772,USB-C Charging Cable,1,11.95,09/03/19 19:56,"658 Ridge St, Los Angeles, CA 90001" +264773,27in 4K Gaming Monitor,1,389.99,09/13/19 15:57,"307 Chestnut St, New York City, NY 10001" +264774,Macbook Pro Laptop,1,1700,09/19/19 11:47,"955 Johnson St, Portland, ME 04101" +264774,AA Batteries (4-pack),1,3.84,09/19/19 11:47,"955 Johnson St, Portland, ME 04101" +264775,Wired Headphones,1,11.99,09/18/19 07:45,"633 Hickory St, Seattle, WA 98101" +264776,Bose SoundSport Headphones,1,99.99,09/19/19 00:55,"666 5th St, Dallas, TX 75001" +264777,AA Batteries (4-pack),1,3.84,09/03/19 22:05,"950 Hill St, San Francisco, CA 94016" +264778,27in FHD Monitor,1,149.99,09/11/19 19:48,"715 10th St, Portland, OR 97035" +264779,27in FHD Monitor,1,149.99,09/28/19 21:08,"906 River St, New York City, NY 10001"